From 64178d3c0c79d9ccffb3ad7977a0f0cc4ae15f9b Mon Sep 17 00:00:00 2001 From: mfonsecaOEF Date: Wed, 3 Apr 2024 15:03:33 -0600 Subject: [PATCH 01/45] docs:name changed --- .../Energy_Balances/README.md | 23 ---------- .../extraction_energy_balances.py | 42 ------------------- 2 files changed, 65 deletions(-) delete mode 100644 global-api/importer/argentinian_datasets/Energy_Balances/README.md delete mode 100644 global-api/importer/argentinian_datasets/Energy_Balances/extraction_energy_balances.py diff --git a/global-api/importer/argentinian_datasets/Energy_Balances/README.md b/global-api/importer/argentinian_datasets/Energy_Balances/README.md deleted file mode 100644 index 608c2cead..000000000 --- a/global-api/importer/argentinian_datasets/Energy_Balances/README.md +++ /dev/null @@ -1,23 +0,0 @@ -# Energy Balances Argentina Importer - -1. Extract the activity data from the source [Datos Energéticos](http://datos.energia.gob.ar/dataset/balances-energeticos): -```bash -python ./importer/argentinian_datasets/Energy_Balances/extraction_energy_balances.py --filepath [path where the extracted data will be saved] -``` -2. Transform the activity into emission data align with the Global API schema: -```bash -python ./importer/argentinian_datasets/Energy_Balances/transformation_energy_balances.py --filepath [path where the transformed data will be saved] -``` -3. Extract the activity row from the source: -```bash -psql -U ccglobal -d ccglobal -f ./importer/argentinian_datasets/Energy_Balances/load_energy_balances.py -v file_path=[path where the transformed data was saved] -``` - -### Directory tree -```sh -. -├── README.md # top level readme -├── extraction_energy_balances.py # extraction script -├── transformation_energy_balances.py # transformation script -└── load__energy_balances.py # loading script -``` diff --git a/global-api/importer/argentinian_datasets/Energy_Balances/extraction_energy_balances.py b/global-api/importer/argentinian_datasets/Energy_Balances/extraction_energy_balances.py deleted file mode 100644 index 2ed8e51cc..000000000 --- a/global-api/importer/argentinian_datasets/Energy_Balances/extraction_energy_balances.py +++ /dev/null @@ -1,42 +0,0 @@ -import requests -import argparse -import os - -links_to_download={ - '2018':'http://www.energia.gob.ar/contenidos/archivos/Reorganizacion/informacion_del_mercado/publicaciones/energia_en_gral/balances_2018/balance_2018_horizontal.xlsx', - '2019':'http://www.energia.gob.ar/contenidos/archivos/Reorganizacion/informacion_del_mercado/publicaciones/energia_en_gral/balances_energeticos/balance_2019_v0_horizontal.xlsx', - '2020':'http://www.energia.gob.ar/contenidos/archivos/Reorganizacion/informacion_del_mercado/publicaciones/energia_en_gral/balances_2020/balance_2020_V0_horizontal.xlsx', - '2021':'http://www.energia.gob.ar/contenidos/archivos/Reorganizacion/informacion_del_mercado/publicaciones/energia_en_gral/balances_2021/balance_2021_V1.xlsx', - '2022':'http://www.energia.gob.ar/contenidos/archivos/Reorganizacion/informacion_del_mercado/publicaciones/energia_en_gral/balances_2022/Balance_2022_V0_H.xlsx' -} - -if __name__ == "__main__": - parser = argparse.ArgumentParser(description='Save files in the specified location.') - parser.add_argument("--filepath", help="path to save the files", required=True) - args = parser.parse_args() - - absolute_path = os.path.abspath(args.filepath) - - def download_files(links, download_path): - full_download_path = os.path.expanduser(download_path) - os.makedirs(full_download_path, exist_ok=True) - - for year, link in links.items(): - try: - response = requests.get(link) - # Check if the request was successful (status code 200) - if response.status_code == 200: - file_name = f"{year}_raw_energy_balances_AR.xlsx" - # Construct the complete file path - file_path = os.path.join(full_download_path, file_name) - # Save the file - with open(file_path, 'wb') as file: - file.write(response.content) - print(f"Downloaded: {file_name}") - else: - print(f"Failed to download {year} data (Status code: {response.status_code})") - except Exception as e: - print(f"Error downloading {year} data: {e}") - - # Use the specified download_path - download_files(links_to_download, download_path=f"{absolute_path}") From f284d024004114231826fc1c17d528ad6b40c6f0 Mon Sep 17 00:00:00 2001 From: mfonsecaOEF Date: Wed, 3 Apr 2024 15:10:32 -0600 Subject: [PATCH 02/45] feat:integration_process --- .../BEN/2018_raw_energy_balances_AR.xlsx | Bin 0 -> 40487 bytes .../BEN/2019_raw_energy_balances_AR.xlsx | Bin 0 -> 38608 bytes .../BEN/2020_raw_energy_balances_AR.xlsx | Bin 0 -> 38431 bytes .../BEN/2021_raw_energy_balances_AR.xlsx | Bin 0 -> 38261 bytes .../argentinian_datasets/BEN/README.md | 24 ++ .../BEN/energy_EF_Argentina.xlsx | Bin 0 -> 475185 bytes .../BEN/extraction_BEN_AR.py | 42 ++++ .../BEN/loading_BEN_AR.sql | 33 +++ .../BEN/processed_BEN_AR.csv | 121 ++++++++++ .../BEN/transformation_BEN_AR.py | 215 ++++++++++++++++++ 10 files changed, 435 insertions(+) create mode 100644 global-api/importer/argentinian_datasets/BEN/2018_raw_energy_balances_AR.xlsx create mode 100644 global-api/importer/argentinian_datasets/BEN/2019_raw_energy_balances_AR.xlsx create mode 100644 global-api/importer/argentinian_datasets/BEN/2020_raw_energy_balances_AR.xlsx create mode 100644 global-api/importer/argentinian_datasets/BEN/2021_raw_energy_balances_AR.xlsx create mode 100644 global-api/importer/argentinian_datasets/BEN/README.md create mode 100644 global-api/importer/argentinian_datasets/BEN/energy_EF_Argentina.xlsx create mode 100644 global-api/importer/argentinian_datasets/BEN/extraction_BEN_AR.py create mode 100644 global-api/importer/argentinian_datasets/BEN/loading_BEN_AR.sql create mode 100644 global-api/importer/argentinian_datasets/BEN/processed_BEN_AR.csv create mode 100644 global-api/importer/argentinian_datasets/BEN/transformation_BEN_AR.py diff --git a/global-api/importer/argentinian_datasets/BEN/2018_raw_energy_balances_AR.xlsx b/global-api/importer/argentinian_datasets/BEN/2018_raw_energy_balances_AR.xlsx new file mode 100644 index 0000000000000000000000000000000000000000..9bdd8e79f4830d05a0f82407cf05d538d6b92d12 GIT binary patch literal 40487 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 TfFd036Ee^~ustag51;-8FTqEl literal 0 HcmV?d00001 diff --git a/global-api/importer/argentinian_datasets/BEN/2019_raw_energy_balances_AR.xlsx b/global-api/importer/argentinian_datasets/BEN/2019_raw_energy_balances_AR.xlsx new file mode 100644 index 0000000000000000000000000000000000000000..d8d6fdcdef0c6bed814dd7e030208703a4b4a4c8 GIT binary patch literal 38608 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
Lp!74yM(8L9`S^6v|^z`F60Bu z5qxguKq^{yBdh>X+kxt=fA#G7xc+g`lKF`SGAgn`I_~U+6NxD{6me5YZ0K_O$pV1? zZz!4(k*ZEwV|h!m78=W@NVYlr`KE#yh7|OJm)Q1oE7Mv#Hj;HkbEAGec)pkdnH6Cb zI37P%OKqx6!Gh$zLB~CK>>=};*~H0I?_Vn{3~BQ+H!Q3RL>U6~TvNV#rUO`2A1s7n zl^nP5l<2V_>h>z(QtQUQfF`qI$DPE6w;ivQh{w1~@sLf$cjV@5TBoh;B3DbO;;?NV zQrdu7yc@W%7@jG<wuX0!w!4p-vsUwe-ld_|rYVaBg zssAAI$e7JcC_LZP54!!?7u=W&$PjQcyf@GGltAn_Thn4XwbD8!BRa-d+mvfh?uzo! z79lZ6{nX%7SSk_|q^4iRUGC@Kj6rZEq$G5rz>GVQ)sAaz%CPhm*|k0~!OeY4K&Y1uA`MtDSLtgHt^FjYh(A zgwIL11-AeJ5HBY-55x)Hr+Ny@b%s>|hawLv2{nI_#@4oUW3d`mJk2xCa@&EGdP=k* z9*eJsIqeELCjU$j;mTO=sehlo9r0J##6b@~qyj=lBxJ;2r-_~Nm}BFH5rH^bFxoPURNAM18A$o8 zSZDH7rG^{&sDF)KeN&5;q)K8ccsN8dcAy=SqspBR2*(Mghw8tLRF zo2=3D<&ebF&ta*Qbwvsg866Zm6qkAmo0^iT*v_%Ez>acaj#ZzFOM(~PjPl}>_yU;cgdNVq$Ic~!mHd?nnp?@@*G+lNTn z3T3Fj)Y!lBEuAsvQAjA#a1@;GUW}6|m-1XXm7a+k4@EcC0n-NwCoE-3nt4C1es)a` zw$ihvQ5i}cyt2r&a;txj(Bn;p)|ea$={U;E$@M1q%a$7bAnP*9%_Ua&MI5)eXieIE zgQo0l<;@pqGLJNPp|IX22a-Gf96zT#kuoOgGyXfxo@U+L30(6M4mLiTTE!kr&X`Wqk1o}d9z>do z3am8#kxGCwwU+vLeG>%z`lvI^+h1qku9a| z36tf&4?MrX8pq79ODVJcL%jwp&^AJ~CGm{5R|r%@Ey*vLgrp!r4TUnxvC93UG;%&k zy*#?u5{rfj=84Tfww3IFBMD@lx|H1(YrR~7k`WD{%o8O8PRvZKntsM0c58&0IOmaL zJv-@fh#y_zbauD>5bWzNHqB#~%%VtUqna7nVX<0ZaB0u?2p*i1&!K*Z6*E7VJZrmE zcEfmDCa1knVyie+buS^ni^|D=d}H`S)B^WZ3cfV+DBlc`X~(wDebI2JU6>`Zk*RRy z+VM+Psw9vA87JFlYZxxv)930kC4>_D)j4D`6g9cDBa~+^bFie`sF*74UxoHQH61LE zZRSj?Uq8A9aAVw08NDgoT2oK2c5gd(vRQr>T`#UTr2Z^j=$aBUcx(Nj)G;r77O8;+ z;6~@?X{cH)x=H0363Aa7@cZf(LEzoLf|W2N6}yZ$1pxh)?L5_?3!VZuxVR{|w?1lSVCjI>$p8awKj2pV|Gt zj9bP{04vuxkxoEG{hzTyONF0B{u9;+9DCHp0S3W|)_cvNm$80Ua?~QC1e}u)&Vu_# zU)j{>I2K{E`YQ2CQi->udBzL+@}Zbk`k!}Fl&BSW8C>G>Wlb?;p7~1n62yvQM}!9D zhMO^HBH>Cq%-)-R{fu)zU#bHrgGC5MkxjfYi;ZO5AY}o0RFJ=E8rG~=SxK}lX9X5$ z+Iu!(9ffL2mvIzB*`sGH7pP8rG^-0S7VK1p9-M7Fxx>l~2(Pq^$rR3a$tBTJMr3&% z;q557vXqN>OhR-}H-RifH^EYhQR(%atJc(1xnE|DUMQo>3pa56(l2$IobjW$kqFDi zjJcv9M&ZqZGhYA=%jTiUT!po6&@s9#xK(ksc0-zGI-x70%Z|zWYm-*~H>yW4OuBn# zZ8_{`WCOwDo5H@M!-3hkLI6k&w8F=k-_{`ina)ej;@mY$+mfl;^NT$Eqblu#17@#( zlqN50kHjcxf3A4iU@VwQH4^?F>9k}a=8vb;w?=Yh zO3$crS%((U8T12g6(dYEoX{G-eyYZ_y}!}~dcX2_ywyDNXX8{eIj+gqGD*C$Qw#R$ z7}u=s2Ssgh&4wPmOIM2jJ&1f?Hf-w3-}mr;ha+2KSdYv?T(Su5Tx_IO`&8^rt0ACD zBjt}`Z=drLw&S18(_u}bR$BO;M8uOfzIb(`!ohPnD3Pn9qfO9SbyQ)No&j~4OYhZ! z)_8T{Xkd=zBEp>IKa}A7%jVyDy=h4oE7fEvGzU1qC{K zjC)(dJmj2H;ZZ?O3XFyi4dP`|WwIS#!1=dMz~`&fBs}hg=!ZY!9X~SU9Ip8N%D?uW zqXtCERRcxkRz=AND|LV)?>&`2m7Bu=YL)p0?t^+f#`el+M~zMJz|9}jZIqG({q^Cb zbNj(vq42NzZRf!sHl0awjrbT+LL4?t+_kESwe#RdGMGuusG&^v`J3F_#g-H%Zh~Hy zwf^7!lO6F+M)6MaQ7?p3b#z=6RLO30Y&+uj50t}Ju+o}DD&T&izUmU zWbYh2%JHajt3M!DT;PG?TYya%aCzer2W(l|YAfToKfiFsBq!Tscg}Fe1mVX=n;}n* zXGLBfpcfRlWk(+cT5%D_i`88%^$Sa3F}R(|4E)Hbu*#_?$8($zx6j3qrBaxOQw9jD zKRg)@wG|R~(B6nJNNZO&FkOeCB64?(>QtP4uB#FU5Ja044$ABQ8O-lj>Xf}>HU4UP zeOLIv6U&XvdL8%s z05eh<2l{lZogY{w2{jXvI@*013!At;A|pbySiI_SS>-0X-i;Vyxc<%4m&|7fB`*`S z2(YgYcW+W@b-R+PJtJ<6UHnn+CDs-x0~=JeB=f>duXU4lXz|(Q{fGq zj21F(7b~nuhtGmitJB))<;{PX;7G*QQa=biq!sB;cW6MlzRYwXV?DG8xlZumOXbu9F&u}t&e%(cc|A(@-fQ@8n*0jyc%wuL|X7-qwJ!WQRX7-qw?J+YmGcz-@#|+!&J9l^QuJlX) zwp5+!R##S5byil!8&71QtK~{J)@!Kc=(`6l=sQ?~^7n*G`HI#f2$)VsY|H^e+;WP7 zVLKlmAk->-X+r+_Y!%T`t_!0g=R$eAJ+ci}e&{1Six=e`5~X3UFnd`iGu2J#p3)lT z^TGNljQ1c}Kma*P57fsOCJt@?|kOf zeZzRLWwKY;T7<(t{DHh-h+mh0Zn-4U5{IwyzAz|cGRy0$z?mfA`QP7C1zZ(4{dSBX zLjYO}WQekd8U>BIL-Mam@cRErOMtA@A8T#F<&fp&gn+~zodk9D)`@asd1_nBWQv6w ztxfP!aJLw8y019VQn_KrUrcDj(JtN(un3&`o(3z}tHRmURS%9rFF80}=DjIWAW)~i z*iWW0lhW+`F%gSH91HKnN>sEN2{X=U=JJ7etpVKK9>{q3iE9+)Mmy`O#wH-R0oGeK z=M(>Ux}o?*2adtg9OuGz?hJBN#PUZ)ZU=_{FclITG-b_|QS zsF#|~U-R;lEnoRjqK-%PPTs>qynociKP0$9;)+cDWMY1q45L|9co^SWA1@?{HiEA; zp&gP_y2L%Ol3URsSR2r|5TqszPB_b|SA73HM#9$-5$lbzr;hVWE_F(1s`X>;IJ}!- z8pO6})Zow4d4pyd_<~<2m*J7e;$Ee!2Rxbt`!pqWdX=Cn$Qmrz^swr{3fSTUd~U4h z2VN;=Ylfu5xb)!7YciArTk7A#j*Nd=e{QK%ZFdx2vDUE+fXDYjW|LNV=_(R6nfGo&@;}Uk{IjHV6+k{?o%yo-I zzeDR;i$(h^$1OSBZB5P+aN!ZitAoR&D$VKyt&U3(yLyL2pA^)HyQ2V2XG&E#>`41h z(+&UA^r(mqgesMd?-caRAwV4cI?D*cAAO5`La$wrr!Nl19m5i#1o}V^&1SpQ$V^14 zGzO(3&UvVw!SbdRl@BnpQKJ>_Q0Vd^PF*zpjl8$gp8^PXeR}U`rdo~09~JN{)V2r# zgRD3hVC$wd3d_a~c23ke1{7+sx?HAgn;*ASr{L%#^|19JwQ0-4cqy;H)&csZvK?I! zq+x}6o7zB&N0pAO*OZ3l+!Z&aZSd^BP!I@5gZLq0BiLet5-^2Vu`&K+(mho)ip9Ir z8pi!eJ>B7qiFVobp{~Z&)&HUSX$Yf2>q?z!2`fYY1J%q53(G)Pkv68xiVOeCe;`H6 zsURD640>WDnVKytj;1y;elGQCaCSBaGR?9Gyy>2Xjkh=PI4SUbFFGmUO9^N|!Dc0k zWUHq=r&s;wz6Q2N>irkj0JcWytp-_j0m_7^)db3ftQ7;&hNx8q(uS;+1=@h9)dkvs zthMC;8Uw=2iEr&}UeIqVwoxU1Dzxvl+oupN%SsFqM~C59v5%BZVHdxLAd&NMFZz5~XkFDfcEKsgyJ#rc=IFoXQd|?r! z5g%eS^-XgT2O2O#H#;bW2Ud+gD&wC+cAcPgB~O)veW2k(ms%xVeaLjM=$!^o{2H+V|A?BqCqs%N&whB;A|2C78=`uY zeq0>MQGAE__9~|F=N=zbiFC_jtfy=PLgHa`Ls@iej~ZDrwc0>G7pIr_V7^Dprf~#5&8}q6{>YeNH!_ zU*Rit0f7i$Rlfx&DD%66AyED$xq``2+7oA+f=f^`q|E8_|HB_inbYOR1ULVyXlrDb z5o=@vIykH*z_;}Bc<=bup?t#XTZC4?^T{{8>|PvQ>{iv(J3NVDU=`44ma!=^FtHm22y(5UGuD!C^v*m6*pWOBJcoYPAFEts}opwbd^Rb-Hon_}nm zps)tzV#~xP4f3{U6l<7hq?=z5y9G`;J7botoL^9l*C=&QCqA$Ds%%(rxs8-{ZHGqL zfcq19qy+GJ=h_CTPtGrB#;28*J`ggE$x{gJQwwy#p!}$Rd_<8c4@i`k8_A!~&RZ3E zq3(MR34eHen{+ghB^ycvnJvgXH!|L4H z@nvGUI1(VZ@y!s>?)`4{0&v#XUw{AFKb-j=`WA_I`aHZ|BXBT$10OJDV1|td_;tT} zJUrO*l`H(2fTaqPRZNd!8`}ahkU1Uv{5$p zw7t5%AB`M8-BtLQZ%%8Rm%eBA*!g*v*U+jXe06txt0N!ze*68i^yL49;{idS|9KGs z-N8NNf^z@?{j>eo8V5Ee#umRAENp(6nK04Y+nPlv$VtG%;QX@>yp*J<5}>RCY*SEx zr4fL}wQsQj1+=}SrW0W8JU|t&sK7uOS^t3c*v?`a&dPSC&TfEZcz}eA?F>x_rT(c_ z$>f)@hr^f&FAxxWqLiqRiu?MdF0{MK(i(p{S%Wcok`y_%B-Gj}CNu9kTV{gy2XayB)do4sU4?#IyBh*4Y6*AeRSVBYQ1L zq99de8Em<94nl;wvTf(Saxr>`d*#B{9~W64oq@ zA^pz)Dn*bW9>taobYu2XZCiAqFhTDR7$wk!c(D;Vn$fP7rRCb|oM?i5L^zpeC)VBm zxo&QspM1}s`5`VTA|uJkFLKYht{Z>pzuO$Smak4?nh2*dY39J88}Wf@&F&VCSXrr- znos-Pgk_ZAVRonKUxc8q{*($Hwf+&(ujw)FT#3CoKZW=^$kc6UzhQyOcMQ`(n{t4_ z!HMrOUG{LvihEi&%yeFxM6WtI;Qvsak`oBF{sdz#$n^e23%YRpVW(<5RfEsJ+?7i9`GF0uTprvk;Wwp9J9o!IqmfDl`R^)kEAS`t92J0s0+w()dzIJL7u+em_ZoO z|LBY_QYL;Y~i(L4G^yMEL(Rt4Ho|F z*JiSH{c?8oRfs!NVwDB4vFa7W%qD+;!otkU0d8nYmVlA@Sv zFE-o%;_Eio!&e-Q2(wg2HwUiyRdG>(_v5$%{-MUn<%O4XnC8Y(RmQGH*~>@qy23Xh zZw$SaC9RP$jDokil?s}Z+FH{&42!#ajv@XR0MTc3Xo zmEpJzQ(#+C^QNt-+W3-D|GXlzDfUD^4wz13lv0?!5EeIBiVMY@Y!+f6FuO97;Q7R4 z38S@&RxSPSm7kUKY^-5+%PwRw`g-y_BI?VvNCljD>%2j9o$N3)yPtpCHtDQ%e*i`X z`d00)WoM2R*&Dth(nXE^<*@l$jW8R_>~EKTMtPA2qn_7*k~MZvRM1UVZ(oo@?~qM# zE*oBXWJhtYu`=2ovv&?^bSqH30nd-a=B^ZU18qAett0nkIqf&Hqo@dbu zN~~mcxw})K0<-0dQMa&U0d5E&Xgd(Z(JG$B!-$?UksP}@UJ78lP~Hz`+VqTrCOzhD zT>m&soV05*Zgu)FqVV0&-^-K%&Da`yhA89}yMEJSem6EQvD#)_$%}*w_cUg77Ama` zB^;Kj!B$r1#utV&DwE+#=9!ULr-!BYS@jwG&^=cog@&sBM69G)$8|DbL zK-ag?f|8y{vl}P@WIbjdz%z=1dv&c|({=fXBFllo{9pD)#bF zZz*>n93{*%J?WC)92`p=V*nb^= zfxKKi!hF|AH2SGFWIp-zW&2wytJxuI<=_Qj7Fc0L@3?yWC%m~JqG!ELF-BYAA9Crh zO)GBvn)LMO6A2l~ysIAD>ZzX#>|FOAL6`N=1Ts3-LEq;xTMmv~5zyN|BAC&1nztYe zxcKcwa=d!m9MjRiNy0FwB8Jdq2cIk-C5_Sp=po5{ZEEknvNNIR^nUX=;nrLw#>TgE6^>mpL>`@ zwDB?vQm9y&*UD{{(Jm5>H_-{8@x0zh?Wp*gF~oBO1hXXMsAyWeOW1vyWr}}ogO0r< z3T|*~Fl9kRY&6u^YfBiv{hW=S^`H4v#{6^$&;wOiPVwM0Fr8vd9xVBzd;tny9oS^X z`i9nIwK_>koFw6}zIbq}Eq|gu+-l7a-$UmocX>eR=z;ioktIZe7_a|P6uWTB>!07Z z^C5V#b(^y+*avGwo6AZbVRt>VCr!SkXQ7CuWN|GaU*^N=sfV)l?z=A2BN#c$Hd3y*E2S?dwh39cHsVG4&xX;Q;cod!|J21*y~SpI%sDW`LKQVyrTyW9B06cD+RbsHJBE3qgeC; zNN1Z$rsHDoO*IA3)@`~Jyy89O)$0wOnpuc?s*9?ja{uHU9Y*TsZ{~7d%W*j9rQy!!pWdo;rT`s z^N`&w!9Ev>r+%T>!b~~{+0J??88y7>CVbC#osZ&)2FqlvHhOpciRY#5ft%lALF{Rv zBN_$9ir3`RG34rN7R}i@)Whcg09vJ&9jXuL2Tk~st5Mjzz0Uqt&HH@ z%-tA|Zne^RpG>8?vTT?5$|)voy;41|6Bf)K7VW4w7#kXK%UaVn73>{X{K8EZ4WDU%MK`n$8UsljO@=b4IN1g%_d@bq)=Dr5w{C*FKM z7WN>sfy7kA%W*;zz3l`#RXAKRyVz{L+^1S{-emNXo^CmKVKayzEu zU{qZu(`uhm&K4g^@)WcY?z1C72E=FsnLnJxMz5>AqOg-!#;aG#*-E@f+c1rnjH?)EB(j--DZ3 zV26MldnR8J|0?%Z0~t_!$!EmisOp5WBWge`xm$n^pB>EdL3T2m?H{(qCOq4*VvXpM zaT{tK)BqCil6}Y{OEKK5F{Jk%!*cF?zS}QK@k%G zrAh4Q13!uGbnp+kmtp|{TCBC)Px2P@zn1_7Vs*X)CHMcs19mdjYEoSOwyHke|D3C) zNLM45iE|^FgQY&xqXNV#p(}p2FH7QbOJ6Bor9B^4VEP$K0F~5*ytLm1#%NFNTQ+wJ z@ki>)gX1LgXj68<@0wk~_&cX@Is0{c&=Vw(9i$O+Ges$pk(Ruvdei9j zsb=T{cgZdg;S;*?z1$V&k8JpHeKpI&&#dDD@fbR3f+OWWN5g@s)1oV?iyaNNerj8q zBr>#hhdujct4(8!m+hqT<3*h4o*>faAkL0%K2#RM=NHI0MT#< z@s2Gajue&hur%Xhg6lOu5L9}s8IhE=V8Z^J1e}saitb0J!wPR(R}adThdA4ad<7F_ zE<1s%*Dtx!*D{TqET?x?4o~X;BXEEkUMd@e_NCNiMLf)Ar{@ARhui4ZvvuNUlAls8 zr$Z#oOfB%j!di z9;}Ppy8z!Ue)yLNvPGI$Wyuhf_Mey(oQ6jFY)w^!oeFzC^S-*OWG2m)nq_A+QQnoo z=d(NCl@H?@4)JXRsO{?EAF3TC8pS+HG!%-CAr&kq!5VHo7tOv8kvP7l{9e(Rhd)VA zu-peOLnZO#$)gl{g(qmmehN4gP2+SD_=n6TdVbc2#s-$Yy>J9WUd}tmU163J$WrzS zKSn}q8EM)gtil8Ll)P+FRA#sFx9+P*86lxZg*}V3BK#)$t7POeKFIldE^hQASTZJj z3iw3iP|_;0`k4ze%5tM(5i$SR2o z@P0)#V_))8IxL>|ft@V8=tW)z8^IWxq?_@|sA7I!D$bpCDKt5Eg5btP+a+E!>8>A7 z$3zaC-*I2d3@$aoie++LgxWZ~EdF&)`J5P6CC-P7TH?%Xj?WLtXM2ODYYzsT-J3H1 zAjIxFrt8gOFT7CDZ`viod)bYboa`$AjPkNfYjWS6L?DVoM29r}`>t&Qmez#LjsG{sRLZ-0M-FQF!WkQ}c zW55Q)W)lRKb2joUn6%69(q>I~EaSCG3C>K zW>3E$++oc6uLMLI@o)^Gz?VxatC#P&Ee5&2jTcxfs6J#dwheJI+#3W~zt0C*VUHTg zqbqm)o_RnwKLr7kI>KBV(g61CmD*7{&WB_=U^SP%brwr3{cvd_JnH4K4;OZN2_zg; zy@01{0r4NZ?k+ZS{7G0>*l8`nuor;wf|vjTJG7RjF~(?(5hsw9A&4QM8B+oDwu!6k zy#GPdD_^-HI^n$x_}J#qR{-Fz^$rjG^*caqTQJ3>eQWR9>~1uY#z#>HvpSqO13DBa zKxkPrvKQB6wz)lkn)$dC)QUFDGGjc>YCqZHl79-&&Ag0z6q0s{bUzGA@TEx2+}3mr zt=8t_mhDCCe*ApaNLD1h%-R@{D_gkcsbuT&pkKeTBdk8V+gAkB+b|sEik5>5$Kw&; zTIIRZBL!-i2})^egJWdJImgWa3jXPLs~LSKTpy`%B65lWfo2X6K9`zm2+kZ0dJt)T zpOXogv+-C<+lp2{T>i?&vI%M)g7tKc5*ynAjU8{j;JRggYZL^rnUSF<5Pu33Vl#QK z$aDm13&gsZE@K*|;eY2Y)S#f*xI>J!rIozXT8F3h2m;>Qgk0E489arkUzr=_O29sL z(Ga!xVUEPvIZNoI=5Cb`mFeIitVxPxj0~(5tuq89#<}1#EeK!#uGj}YN2ELaB3+l* zo`3^I7bUq$=;D(pRX;8G`}4VU@ldj=Go6Nd1c~w6AuWoRW89)^boT^~yQNs+H@jgY zBfla%Bp1euuVn`t8wp3goS9nRv&rcN|3>(3qc<@tTwRx+K%v0BUb^YaUsHNZ6FfJU zKN=@>*S@I-IUMN&EA>P4*!jI|Ra8n`7a)pL_wc(lU9(8L?bq%5phJd@$P8utR))~0 zi7n)L63dwPp{fueQjGf=AU1Xhg9+_eMZ`*fkVM$3@h$x82Iw)aUU;AJs%j8v5H)G+ z7`qwQ&qCQhm-A=oxr^9%wTsB#D~`w*2WzJoZTK+ToU#Sz*Bg4HBK62!BI|yQE=90M zug8#{ElBMKqGV^K1hQi@b=0l!tM5uK6~~2{qKPdOyhA*Lu_;X8p!9DcZif_~5jZYi zHCR(eu?LOJhghNN=wY7XvJ7@Ep%=6r-WKeKG-X#-$l(>UEReY;;XiK6j^OnI)H3}N zqUP8{u^{phwofQID?TMF9PdK+#a>lckPJl@xfz!e@k2bk%7piHan-{?h{oAUx+_G4 z55e|K!2yCl3EI!xXeC<+ZKgFML$AsqV&{WMF&^Q62Ycj;GsHhIYjbb}%ww<B80L5zcFBX#m>W#ZG0A}b1KE&8^X;5Gq8J@nIqb;4=4Nhz7wA+T%(5R)z0 zPr*sIsd{Sq>hi)Yda=iPGW;;72t`16A0moVMAQtX7wp`ko$LssK@tcOEGtJGYOu;J zolqjXM1@CYyC|v!uH3!(tQA=Y8z(#+^<~O+cR$9Yql_j*JXJ54ay8 z#h15TBqstm(2|YuQWvr$H3tK~gIZcVO^W()m%s>%Fe80}%AJ324S05^M?!3S5M`g84ybn#85Q%UH*SINyFgIA`;l`w#z< zi*h@0qK2pRZ$MHUfl9^)liL|zo97bQnCB-GMB&`n@bZ}PKYI;{wDt~d)Ll&@0<;`L z@0QBqPZjMQRb4trzvTiiU>Vptq3r|i^6j7-`3O&+7&j)jo6MXsH!}<+=HZ$$K2eM{ z)&I!U8tYp8aas4Cqx6WA`XCjlgak*mwC_Zwa(m=CvLH84F1kCICv9b}DpG0VTjFQ- zHci|0}tYtFNOnQTO`8rr@MCbmJBUtbzG2Ku}X$GpfrH%FoOw)7@Inm#Wu#DI|B)Rb!up zw|!9(AM{3tQA{x$;@nd>uDctUhFQy$!yb?t;P1~{9uw2w1F3Lzwl`0QyB6>&8yPyT zKZeEH7*SNs*<|`VX&s~u`Si?oZJZVwUyC)5z-ORyd&bu5XNBJR2Y6P_u&ZQ<{Hl z9U3W0WLULRksIIKA$fS0I%Ln=wS-$POan-f)pEw$iU2-i8Q!230= zvQhU;r&B;3sa#9kU$nj#uRx8|xyx@R81#y5pNljv1_Ga{)FcUF!{MM6OvKb6qtiYd zQTIuvJ(PjCrI!Owyu;WDOA3Hu#hV`{Or%hRoKA zRR6T5-dEFcUSC3u;nr3X=Kp*lL7?n95`Qfhy+B_|3nH>;oQB6F@@>i8hhgM_nMuA$ z1yoRvy$!nEDyWW``NtNA-uLl#@BZ2vj`MLTRo}GDS_z@;eVS*qJc%L$LPbd=>}NXT z_FD~yzMHDL8z5!G8nsaun=ic-#Fr*N_Q#~U>t+pqI^%-6uAXF?5QsaRewK&G{E7oc78XwxuQU*R^93k4gzEI@Qu_Q`aA4v#v>b!+-X? z1A^c((892FIctQ@T2wa$D;G-TmfViU@-@HPzJ4q}Z?B;pJb1tl%%hG0Vyo=fC{E{M z7g2}M)d*@aV{sN6_0Rn|)m39;MEq8~)fM8~Yx4X-?_aXA603n2Z^VQML!T{zCWs|O z6lz64Y}_2Q1{Wk|a5cORx0n}JwUcaMl7H%HU$Y_Pnp9JLw6aQB#}n|@?))8-_-@9y zd{u+I0*~QmWJ=*}-KCx|L9NegYQ;Rs)qdjsdOA)mIZF!V^mDsmt2Zy!!D6<-X*qs? z)bT>dsk8mMR5+jJn*z>qTViWZZ?I!TkiOChz_Yg=Eo%ea8sed0qe|MhhTP%A6u5_I zXnL!}O^Uh%{I@=dh;kKdV(*UE1eeqrUgQMVnZH<)q#4Wa>Z&mK2s9)J-l}VQ3V`@_ z`CT9FP5N^9d@UD?p@C9isyq*lP_H<2J%s!%)M9h9sLLC98+^lFI|j_)dpeJlMy?tt z8vigS!?YbI-eH$JLqqSDe!qAX#Kkn7{Ol}y`eRkiCY#PJyRd!ndOX1pdBEIg5vtPk z_M!%Ro_Y6hmLcb@(zhi67>W=efCyCqf$(USy18dH4W7 z&kJ;ymKd-ZZ9MD0aLJ=WAs%xGP%`Gy)Q}s6!8hu&6E(O_&IXiM0l%!CIbQfZVVrlb z=^IaeTk~Mp^7y-t&gM5^%C%CyMRw9m6%I!eRn0-?V}i15mcdJtZ3d^=HZ@NgomPZu zYP? zs2z;AB|+`yfrVHF3f%sI82S_&JKK4pveLK{xtz-B-@30ThU^Rs+zBq&QTzu$=n;0& z>@A6dM<1FhdYIMoY^s1dh|M!7Ch8V;;13uN7wUYIgOT^B zosZp)Mr~6)jVu;!)z7h1i9&(T^Rzo}F*e9$^k*HLF=<&wShgFP%=FmYGswEFRj?Ip3LNNGV&y~%wDoZ7I zEP~esHPqg&`@VE`%hn;cW;&n-0fm~Er(NvtF+;0)iXHre)9E2ZQ&vypKilh`GpTUK&b0v--^d|C8*aKHw)7VKw9 zSU2!8f(+ZMT6v*y&nr=8;cDn%mVOh*1tN19U?zh3DHA%$dR&$SdCV_sTdHMl&7pzK z@^XCZD;EUT)x4UeGm|XXOrXykGdai14~kzb4vpJl9(fHNI3O7T#dN*=ZWw02C zIfp?#hsJ<4ge~qL3d4};O6r;Kry}#e7SBKE=s>J{-n^Z0 z%f3{QRcp-vqFqnM1=awAx*w9~qWj40Diuz_e|vi0 zAHTTv9g8;F_XGRkel>2j32mg*#>nbhIO1FYk8kn*_Py~*Vh3gy3|N?}he6<05{Rx7 z>hRPws{GK(3)LVCUC-uxXgD5`5wBLS!8{ux14$3qT*H6z>dvbi;(&GUxMy2x7hhr2 zWOL(A=`s4jCd@L%}^Bc^OriC zN`>~uf^X~MB|l~#T#WTCvCtk@z>0yEzTa+wAR^}qrn`2pOvf$@{Q;o+!zK#vp64S* zReHJWvFKaKR9Bqne-pnwY*EC|3fG6i(fK$YEl`DLd>UOvnVPGKV?wdg!_oUAY9SML zKR1`_!PtVjGrSxYcwnaLu@fc1Dge0y9&1N0)5<{nix+=i`IPP6Y1D&&JRse+J|}`J zYBI||Uj`7fp1%QpjFk)3f!z1Ufd)KIU+rg58*U73Ma-l!$L!bflwGGKt7M#XCxGF2 zy}(0#F!7{nm!IJp3$~sEc?~gcb+a29uTXfoyKw^lm}Kyq-aP23b^dYxK)?dM66nX* z4|c;~lcAejX8CSo=>>Ku=x^6o60&y~7^Qp{zXr}3@>Ge}Jk^kohRT9<_V=8>Q>|Ai zJ=+%V6BRrMz=v+jwDw9(TovJfkEsH%->>hep>SsNHyU zx)aen`m8^_yvrsIZc}fxe7J1@B31LCA~(JB`;c-eoKNYGlgnor>Xe?~&1 zONW%9#h)8Ql@nHjHP6}f9#@}%D%+s(UPIA|Vluwz>o^)gO*=nwHGX~CU!;_^udfFe z3v^5tD2#4uyM6SA1g(7UnIa5!f+OPC8*Q(?o#?#_Pgyxhj^_zAGjxAe>nheN?0%j# z9aISU#J4(K?YmfdBxZqmDJj65c?W}Ulvf;PGFO`jHDb+#4y!8SBo(RY| zeIZ&0LJ_llUBhRK`#NUoN+SV#`NhFd^WHIk^T2jctXz7O6Uj0xq3d{7460oSgpWL% zO!589k%FJ=S3+^`|CA_E@4dsXUzFvn-#+46Ukx)%NplA65g6zi0=B*lsYS1gj961W zsq6~SbX5Hs*nA>{khCZU%(c06iiOn(E11MSM%b!mQ_zol}u3kJ*=uS7q{ z;_DmYgGksfwLy7PV1L>A3mMz#wH-Fs zc1q6FD2iXYTi+QECEKBfnhQqX>~9&3!&jnR^LovLsgcl`!^;%w)ZfqHb9P^e6Ks>r zUB+$&$Y0EfuER(D&oU|qrm}++8v4n3|+X!Z2dlJTWv~0K11c-kV9m+a5!@v2=lUT@9aEc zneUTp$^}V$bptI*dzULc<)U)BhdgRS+akUL$;C!qdv%4FiqG>iWy|P?5hTk>5jGrY zTs*Iy_uXT4-$NJ|^}CJg-`{N)a`e3cMQ&j7mNOk(E!zpta4O1=SA=*2;r1@Udhyu1D*MVx5c_z_lf z+t#OZeqfzNP!VYI+xtUUcszY z;Y|8jB&Gl!w=X)2xw*M(z{qNWidy@R%>s{Nz!-%nPIh~N0|GB+uL*2`DSGb|Q?@HC z({Jj&DVVy3rNn3NZC(DWc3A&DSvE|_56dVtII+FKcg5@bOM@h|rl}C!R(R|_jG)%m z`vQI;oXeC(Iy10G&tAKpOd8{8q%t`TEFN1=UbH^+iX${l@W2rr1U1wgUj_Fys;8EW zOL`MJnc|%Dn>-qa^Xx>&D;ZU*s^J6;wDy*4;1tB5Ej0!NBNP+J^J4&p<*1r_k~~%l zXpLU%bI;=mRu+JG9tTX7Li}VUpBfi3^ z^PAQUk_l#W_W+I)3$c3}do?DR8(Lyuqg!b9p3V2ZS!Y?_UDG3sAaQwtNA#nheY8j- z=l1L;gFx(??3{oGy{velLo-O&MIev?h9$_{`T?|2BS-^e%g#2b_xUyxLT;|6Qna^H zaey}WXoM&8+qZwOjCu1u33qfqq(%FsK3$he-|tmy>m^~}g?I{Uhb_n9jywPptPkaO z9pG-4mUbZscOIzNnGZs82JRINNnRsTyCIEX$qs@X*qJEiDJavmN3iv13iEcZ?ccjw z;jn0PPGYCxQLU*{@fxeE=kBPQ)~3_pFbP*gEllKifa|=!Z@1)c%N)mP@68)G&4aJz zP@DAC-_mca09&60ItCB=N|_((6RZoAMQRCzL<~Kq{TM1(g-+Ei_As8nP8FE#4PX>6 z-W9}?9!8i?>W85ye*hc31!f|Hm4H-Il>I0~Y#G-~Fzqh`npPg-e|6pE(Fbb#!ytD} z6wvG?IBCUc-h?jcRn#-{3ny)18kAy+3Ww```%z$P%O0L%miXk}=j&S!z1h znewU5fO)z&vR=MFxcxk~c|JDgd4m}>h1oE`sr<1Qqznf1_18sY^h0Xw5Hqzn(T}#% zU;Fvq4~Oe6?f3AR1-y}|HA#$!fjdmSe_JJi+3rxg4s57s8#43CuY%1(1C5 zxEXUnl-^GZw0ukmysl}1mZwa54RCFYScrdkIA`{5# ze_QI!LYQkpY*JXtUGqDB4A%KcxhVj&eBe9W6@eBGrBEe z+6aP2f_(oYM_kFmib%&zILBLS_>+6XdT{Twz!vFtZ4`4aoXXvn+Y0`i^fIzIy(CSq zX92`JaSTkAQT!YOpRWeu7vm^wd$J%I5SuuEwrmfSR>59)Oa%KKUn%L&x%&2V{Vpf8 z0g_$v3AsqsDPNC14a2HCEx+$RDb#}&9_%06v=({*3mkY^hjm*DU^Ip?e)^|SUqBIb0b|l$m(rjr$H|kO&cKaBA z(j_IC8J7-cpjm4v2at#Cu%&`H2!OuAC_nBy>>$N;g;`wSz zksKgo8^aB$nXbn%%WnrHaO7%<@c1;6$VV{>5#|2PW zKF+`a5cUg8bPg)VxjjYoHRl+Ml%&J{@I(RXu+13D|x?g+f z7XR8X35VV;nPiNEmF-NpZcz+06pd1duqiOeo?Y^XpFlFQTUbXR@T1@I!|sY#oqvdt z6q0AG;qXK}4xOz%eM*I`67^5ASZ(XSBJCBgb`Dd!qBM63{0fsXatMdj80w9>Qm_BS zkcm@E%mK2YB&ld>i6a51?&*7-5z!1YP>$)h>)u{oaL8Fn7H@4r47lrck@z))gT521 zQNt6CeKM`#*b-cHUA5U=2<>70uN=!<+UO)Z7+{^&2J2Hb4URd2UL4JX zXdzw7O)|yG_sm{jRLk)g>m7qNj6k;*k06cI)pdBC<*Ai9WQ!U^jxdW4d!WY3mSzSW zIoOurVM2ST4jnxbJ41q?<+8p4!mlTioYD4K523xjpUpSa!1fp+K-NS&rnj#BHY-hg zOKHf?2OJ^c_Yto6&K;E)lycgAAt3Y8q={W=eOEeY5NZ8wU-nl&<~A@f%(0;;YQuUe z!3&AP=<*P�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

iI9_xSBv6U5nhoc5YF?MI}5ly zbB&41pV~Bf@YE)U7={0tuf}u{GtguCE*WJdm7%JAnJ$;?^u10ON7l{t1Gk&SHp|7v zJgqmSrZ64+b}GN`1S)|6eLgsg48Kc_>|-Vu#{1HC_-Q@e`U1FaQvM8{n8O>ISdm1D z=)1wx`L$Nyn{E%ZX+zhbn61HXF2I$@)nsQCMr3kC=b@EVPG`v4=KS6wA1F)16TzXQ zNT96A4R)7-{mo9^9gP_PkIYR6bSB)v7{{C?od?M$hm$rFNSWF}|8Xer*C;Yo@^VW0 zsO_V@#05{}jO%ISt}&YAYo@k803Rp^=hfpM zbg&br!+uDv2; z?`Sfs#hVz>MgYQ02(>se`!(U?g0i-R5D%v2b9fwi-5(3xX$Uh7h;<4J*-L(h_rJBi zQm*pfwtV0loF#!~4&u?U& zR`5r+26fYZ>s3#1GjmYPnHbzQS{TjXW=lLB7&F6W>6p4LAQy;_WsIOecQjCNzAAH#y~SBF zmdJ^jZIyV{F|aZnahJ^s z0S2NG^1rR~^fRXy{NTrs3~lFD5%7KKH+-=>V^wDFq9ldn7^^uv5D!D9YmOh2VJk)b z63mxd`z}a(#H*Y_RWB&b90NW>r48-FVAThDA}-YGJ}{(XRO7RNtSL##8=GTDzOC-5 zI~~6x8K$5dQm-2RDv$qHb=LAl+Llgy~kDXzI^2o1nSwzlylQ+eNw4O^?YoR+HqwLu4_HSLJ_~ z(yKH^Y$MZTPTpu3ux^zXR^RNk)*WdIR5Nr>Vdx#iuyIP(k>JsrPPA^6v)ix}nY5Hk z#-Dt65`8nmo38j?j2(vC^*=S;<^-OMu#58u1Hx$m^_1gt4Ebxeu=!Cm{a_W8OEbXy z8d!(!?$C>onO&b*7TL6s3AQl6+AZ}~$ExZaGx$9KjlD=A9m;hwg^IWI9v@VT(I~4e z{S}M=*Jk%X_2lJMc{AXbX~O#;6;SbRR9 zc0m^J1+TQ&QKtidp7&Po1>(_RE9L4gs=|RWRp;mHTo)0_e3HZYgkZ(uQ8hubJ8Yc!eB|s) zZocpN+kt=#$GjQSRTq5O8oPm$9~%)G_q$O$lF>`8L2jm(qr|V&C)d_RoKi(@2_2?w zHv>sr!LwC~oX1rbijF3!er;16lkCvh2@OtMe8r?eXrOKP)w97nkJKOZFA({j$(RVQ zyrJj1v9+Z15DH6qNhPM>_}OuZm1VIr{o%ut*_$XqYfpoP&~*O@a!0Sh?@suOC2T6I zqt8hVOmL!g^;BZx ziM2KNOPP%fP81t6ye9*6M`@FAw-3J6@A=_(zz1;+({O@oitv;n&*5+X%M)pudtN4l zQ#GAm{!op7V0D>_n{?4R3@kjr#b&E`jlvStk8^pI@M}Z2C0ZC8|Gc?V$ZG<>;8P78 zwDP;IC~`H1UlaA;fh%|$oHiN^aIKNeW9v-ts^O)XyxiHoF?lR{0h6b`<%yh&*~efJ zL}86nFJ5nBtTzrvNT#if=`qH@;9pD7cqfsVbSSazK$RQ zyb29;C2)8*1_L7Z)83QTv}ek4jHahzE=ilxD}_z^ z+&@6a4)0Er6M=(P>$wl=eRoZS53=HFRH4?ob6RJCzx2|d)LXWoPBQ+REEYximeZ2N z{;L0{{eA=d_~-k-+TUQB|J9yEO4hGQ&Kl3EuxvVUk3|??!6sxaHRcCIkjB9-)2H8v zBj`~??uo{6rcq@=|BWw6%&s4Jbd2OZi1U5IFuGor%`ja=VUS8v z1L@=`w>btu99}tpQXP-#b}yvD{o=%eso#0$!N{x|aGJ`KM$^G?QEY+|z zq62baFmDgnS+0+}-=}5Np%h2i^y(!#3vqtngLZVuGA@V$7=f%va_bgo47>C2okbA` zjczVRgC534Pl42jFX5j5qD5Ud>H^85L`=ClqE8hW|Wq(Q+{q$N?xZ1X-B#%U2i?= zi8N!yyf4!zm}UVjfWuXso9!&BA_|sDztB<@To0J$3PidImy6~>(j zd_j2Ak@)*g*TPNBec2vf7+8j_yyxLWVxs#ZMxi~9VnzZRw5$cR&Wy}j`TgtR z0Bzb{cpJy2ltsZc*zdDB&qiF1+#>l|SjM9hGn?_So<-3Hd5WFGo*e{F+_9v-ibqmFKGR}f# zlA1ibmgywf==XSFNP6Id8pz_EbLmqxjLNtsR<~v;4N7u)ZnG>J3e4Y{lQtH6H#{4{V_9ozeWfJ^_vkK9>eRl2I7E*}HRl6Vy2I_4 zb>m_g{8i)mDZUtbfVQ35lhk3Q^S?vbfTYA^MXQAM1LUPa!O(ypfS|tj5drN(vXIMt z2h^o~7h?ZUxt0G@P5HmqQO;1-v7KW?^Oo2ZQ1`JlEIx@BmoA>QF`ETL4ItR&k~KtL zi@Wgo8TK{Vm{0*1E7+m)=997KDCgkqsEWr8b5<~eUgQ`MH@!Zuct!JmaJNy>Gwfbu zxrj|i{Z5P9rP1x}=v`&)?!XhF@8?2>OSA5=l`OUEMuX<)I0p;AGN?Yli+jOeO2^Y{ zwm?Qjr1tx)QoqqM_`01aaLD~!poof`O;^I?)2J!$j6JP+kXS*w+a5gxGia^0s8$?) zVcqF$z!@bAt&bBpAV#LX=p;`vd7ljX(qJ=fZXUJognl2BHJh6dooDwPHiyF(TsGNU zeC{CIU# zo9id2$4t3eCs^Xqour$$L^vi!15vMa7cV@xQWH$NSCph|qFAD`9rNS;kBwaa*A%=w zh2D1dtyyi*>E)WW;6|%bi{qpNS1Yw`@||xqM9p`2xZs_Cr^Z{?vk&5~x6j@5=}yE3 zGwnt;tHVj3nwr!NtJZxGjcl0DT-V}i^W<_;WQ$EZ)2=;>5`Ip6XtHwqx&7j93xR{d z4(eT}`xd-)$kCFtH7Mv*iO)H1%~^fh@VwgcJ--5upZgFU`5&0*U|Tm4iEw&EW4<@= zHlRdcLKI}+U`)wR4k*emDArHTFG>a7;;pcVg;8Sx15nAx1}&3fvkw`Fw7qBl&9C}B zcb3)Mwrz)G;(R66Bqx_ET4qIlb`%Q#``vqW*(tW&KKIQ1=gCYu|9w;Ez5~0WRx?dh zaTU~9=epL6wQB9Ok0P$;j8!8Ri;BEp;5&Qz_Ut**r?$4HujY-2Z|-LDv^?e8xb2>F z*T%=u6V9kETPKCtiCkb>#5En2gM_NjGKwpJQ5o z-QLO3#j!)~>-m$nGd@P>2F_d>DYpFaj5Au3F7B?jnpaa29zXXzOTY9dl@Ib0Cs@o5 zOL4pW()1&bM)mvG{(*JO*izu!F7c(-z_fJ-h}D6(B1gZVC^N4lwJ12Xqy&7oJR09n zFDWxGDPaMR!6pNZJB(5X|L<>{+1WTbQEWS>I~TJuv$ZpeurRamjFcr8_+oB3J~L`m zX=E`2S%M`8FwQWFn*mJT(m>Y=d%+=u(N>-_!ZF@Q{XH)O8bGt6*snox^uHN-2>wd(wB%fou zC;6+hroY&-zUTIoKZUi`-)3%hd7!o7UgAmq89%1}`r)Xzm|x;#LekAcODE-b9`fl} zvi*j`tdyInOTTSoJe7HeBmTPEaEd61|3HIZW-v6_sD(`+= zy8NqRN`mTo=M8SmPs3NOcXOX#X%QK{0Mm>FL!lG#qF%G?6B0#$fV1FDADEA z6AC(j>3JP1WHUZ2{vdR;b3QO@<(0&TR2HNb$AS`gfH$fETSE<$zW`PH0ILLU6y3ln zXomQr)SO~{JrIemvC(eI^v^&IyMP*{P&7UR?(zrbYlvRZopMR}`Pm@5v6^FIB(lg6 zXvR!n!-yZn97#^FImjlUJEE)5JDe4$@g~seA}E^Mfg(Uh6lVYr5=aRy0hTf8;M<(h zP0-i*d}1F^rwT9-l~GLC2Xqb41b8bA;veL;8dm>U8g89<8)(o43K!V?O zjUGDamjoiT&IJY*P%G9e10km1J~0Ae%C$hSDd^`%pgRM-@r*ElrxR=dJd%*32i+9Z z)(^rA28M~<3=9};A$0BNRTshl;Xbe<&?+wUiVa+mp&N=?A0donV3-Uv6z(Qy?G)h6 U3OYdpm{0f_{sFUR;zSS+0QXk4%K!iX literal 0 HcmV?d00001 diff --git a/global-api/importer/argentinian_datasets/BEN/README.md b/global-api/importer/argentinian_datasets/BEN/README.md new file mode 100644 index 000000000..57bb144c6 --- /dev/null +++ b/global-api/importer/argentinian_datasets/BEN/README.md @@ -0,0 +1,24 @@ +# Energy Balances Argentina Importer +The BEN summarizes the information related to the production, import, export, transformation and consumption of energy in Argentina, being the main statistical instrument for national energy planning. This source is used to calculate emissions for stationary energy sector. + +1. Extract the activity data from the source [Datos Energéticos](http://datos.energia.gob.ar/dataset/balances-energeticos): +```bash +python ./importer/argentinian_datasets/Energy_Balances/extraction_BEN_AR.py --filepath [path where the extracted data will be saved] +``` +2. Transform the activity into emission data align with the Global API schema: +```bash +python ./importer/argentinian_datasets/Energy_Balances/transformation_BEN_AR.py --filepath [path where the transformed data will be saved] +``` +3. Extract the activity row from the source: +```bash +psql -U ccglobal -d ccglobal -f ./importer/argentinian_datasets/Energy_Balances/loading_BEN_AR.sql -v file_path=[path where the transformed data was saved] +``` + +### Directory tree +```sh +. +├── README.md # top level readme +├── extraction_energy_balances.py # extraction script +├── transformation_energy_balances.py # transformation script +└── load__energy_balances.py # loading script +``` diff --git a/global-api/importer/argentinian_datasets/BEN/energy_EF_Argentina.xlsx b/global-api/importer/argentinian_datasets/BEN/energy_EF_Argentina.xlsx new file mode 100644 index 0000000000000000000000000000000000000000..95fcb4b928ec685f2bb7d45d7b9961357b61153d GIT binary patch literal 475185 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 FFP|fW=zXC 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 literal 0 HcmV?d00001 diff --git a/global-api/importer/argentinian_datasets/BEN/extraction_BEN_AR.py b/global-api/importer/argentinian_datasets/BEN/extraction_BEN_AR.py new file mode 100644 index 000000000..2ed8e51cc --- /dev/null +++ b/global-api/importer/argentinian_datasets/BEN/extraction_BEN_AR.py @@ -0,0 +1,42 @@ +import requests +import argparse +import os + +links_to_download={ + '2018':'http://www.energia.gob.ar/contenidos/archivos/Reorganizacion/informacion_del_mercado/publicaciones/energia_en_gral/balances_2018/balance_2018_horizontal.xlsx', + '2019':'http://www.energia.gob.ar/contenidos/archivos/Reorganizacion/informacion_del_mercado/publicaciones/energia_en_gral/balances_energeticos/balance_2019_v0_horizontal.xlsx', + '2020':'http://www.energia.gob.ar/contenidos/archivos/Reorganizacion/informacion_del_mercado/publicaciones/energia_en_gral/balances_2020/balance_2020_V0_horizontal.xlsx', + '2021':'http://www.energia.gob.ar/contenidos/archivos/Reorganizacion/informacion_del_mercado/publicaciones/energia_en_gral/balances_2021/balance_2021_V1.xlsx', + '2022':'http://www.energia.gob.ar/contenidos/archivos/Reorganizacion/informacion_del_mercado/publicaciones/energia_en_gral/balances_2022/Balance_2022_V0_H.xlsx' +} + +if __name__ == "__main__": + parser = argparse.ArgumentParser(description='Save files in the specified location.') + parser.add_argument("--filepath", help="path to save the files", required=True) + args = parser.parse_args() + + absolute_path = os.path.abspath(args.filepath) + + def download_files(links, download_path): + full_download_path = os.path.expanduser(download_path) + os.makedirs(full_download_path, exist_ok=True) + + for year, link in links.items(): + try: + response = requests.get(link) + # Check if the request was successful (status code 200) + if response.status_code == 200: + file_name = f"{year}_raw_energy_balances_AR.xlsx" + # Construct the complete file path + file_path = os.path.join(full_download_path, file_name) + # Save the file + with open(file_path, 'wb') as file: + file.write(response.content) + print(f"Downloaded: {file_name}") + else: + print(f"Failed to download {year} data (Status code: {response.status_code})") + except Exception as e: + print(f"Error downloading {year} data: {e}") + + # Use the specified download_path + download_files(links_to_download, download_path=f"{absolute_path}") diff --git a/global-api/importer/argentinian_datasets/BEN/loading_BEN_AR.sql b/global-api/importer/argentinian_datasets/BEN/loading_BEN_AR.sql new file mode 100644 index 000000000..59b6ff2aa --- /dev/null +++ b/global-api/importer/argentinian_datasets/BEN/loading_BEN_AR.sql @@ -0,0 +1,33 @@ +-- Create a staging table +CREATE TEMP TABLE IF NOT EXISTS country_code_staging (LIKE country_code INCLUDING ALL); + +-- Clear the staging table +TRUNCATE country_code_staging; + +-- Load the staging table from the downloaded file +\copy country_code_staging (id,source_name,"GPC_refno",country_name,country_code,temporal_granularity,year,activity_name,activity_value,activity_units,gas_name,emission_factor_value,emission_factor_units,emissions_value,emissions_units) FROM 'processed_BEN_AR.csv' WITH (FORMAT CSV, HEADER); + +-- Update the main table with the staging table +INSERT INTO country_code (id,source_name,"GPC_refno",country_name,country_code,temporal_granularity,year,activity_name,activity_value,activity_units,gas_name,emission_factor_value,emission_factor_units,emissions_value,emissions_units) + SELECT id,source_name,"GPC_refno",country_name,country_code,temporal_granularity,year,activity_name,activity_value,activity_units,gas_name,emission_factor_value,emission_factor_units,emissions_value,emissions_units + FROM country_code_staging + ON CONFLICT ON CONSTRAINT country_code_pkey + DO UPDATE SET + id = excluded.id, + source_name = excluded.source_name, + "GPC_refno" = excluded."GPC_refno", + country_name = excluded.country_name, + country_code = excluded.country_code, + temporal_granularity = excluded.temporal_granularity, + year = excluded.year, + activity_name = excluded.activity_name, + activity_value = excluded.activity_value, + activity_units = excluded.activity_units, + gas_name = excluded.gas_name, + emission_factor_value = excluded.emission_factor_value, + emission_factor_units = excluded.emission_factor_units, + emissions_value = excluded.emissions_value, + emissions_units = excluded.emissions_units; + +-- Drop the staging table +DROP TABLE country_code_staging; \ No newline at end of file diff --git a/global-api/importer/argentinian_datasets/BEN/processed_BEN_AR.csv b/global-api/importer/argentinian_datasets/BEN/processed_BEN_AR.csv new file mode 100644 index 000000000..a2b426691 --- /dev/null +++ b/global-api/importer/argentinian_datasets/BEN/processed_BEN_AR.csv @@ -0,0 +1,121 @@ +id,source_name,GPC_refno,country_name,country_code,temporal_granularity,year,activity_name,activity_value,activity_units,gas_name,emission_factor_value,emission_factor_units,emissions_value,emissions_units +85700111-3729-30ef-b38e-3ce80b843cec,BEN,I.1.1,Argentina,AR,annual,2020,fuel consumption of Wood/Wood Waste by residential buildings,3680819401821,kJ,CO2,0.0,kg/TJ,0,kg +a4beeeda-fc67-346f-aa9e-ea0bfd9873bd,BEN,I.1.1,Argentina,AR,annual,2020,fuel consumption of Wood/Wood Waste by residential buildings,3680819401821,kJ,CH4,300.0,kg/TJ,1104245820546526,kg +4cf4fdef-397c-3f26-a2ad-a0b962a194ff,BEN,I.1.1,Argentina,AR,annual,2020,fuel consumption of Wood/Wood Waste by residential buildings,3680819401821,kJ,N2O,4.0,kg/TJ,14723277607287,kg +63e9ff4f-9880-34d7-bf4e-e4f79b98f531,BEN,I.1.1,Argentina,AR,annual,2020,fuel consumption of Liquefied Petroleum Gases by residential buildings,44864743968000,kJ,CO2,63100.0,kg/TJ,2830965344380801024,kg +d2fb30b7-bbfe-354f-a113-12436f06f7ae,BEN,I.1.1,Argentina,AR,annual,2020,fuel consumption of Liquefied Petroleum Gases by residential buildings,44864743968000,kJ,CH4,5.0,kg/TJ,224323719840000,kg +dd2b8d71-46ee-3f38-a97e-8749825e9f2d,BEN,I.1.1,Argentina,AR,annual,2020,fuel consumption of Liquefied Petroleum Gases by residential buildings,44864743968000,kJ,N2O,0.1,kg/TJ,4486474396800,kg +33791b96-45eb-3a4b-9a8c-73b779c4b2b6,BEN,I.1.1,Argentina,AR,annual,2020,fuel consumption of Jet Kerosene by residential buildings,101005712639,kJ,CO2,71500.0,kg/TJ,7221908453759999,kg +213cbb6b-cdd3-32b8-b357-0cb603265bde,BEN,I.1.1,Argentina,AR,annual,2020,fuel consumption of Jet Kerosene by residential buildings,101005712639,kJ,CH4,10.0,kg/TJ,1010057126399,kg +e273f053-b952-3b58-af9f-bbdd2d27ff25,BEN,I.1.1,Argentina,AR,annual,2020,fuel consumption of Jet Kerosene by residential buildings,101005712639,kJ,N2O,0.6,kg/TJ,60603427583,kg +7f0149f6-ff3e-3f03-a27a-655f61abc473,BEN,I.1.1,Argentina,AR,annual,2020,fuel consumption of Charcoal by residential buildings,7154006730393,kJ,CO2,112000.0,kg/TJ,801248753804083072,kg +a511a655-72a2-398f-b115-50b860c9eff2,BEN,I.1.1,Argentina,AR,annual,2020,fuel consumption of Charcoal by residential buildings,7154006730393,kJ,CH4,200.0,kg/TJ,1430801346078719,kg +67adae68-72d5-3727-b621-90ac8b6957b1,BEN,I.1.1,Argentina,AR,annual,2020,fuel consumption of Charcoal by residential buildings,7154006730393,kJ,N2O,1.0,kg/TJ,7154006730393,kg +dc58b60c-82a3-35d5-b68e-011017469ba8,BEN,I.2.1,Argentina,AR,annual,2020,fuel consumption of Wood/Wood Waste by commercial buildings,1840409700910,kJ,CO2,112000.0,kg/TJ,206125886502018176,kg +20a35b83-2d7b-3939-ab68-402fbe1857bb,BEN,I.2.1,Argentina,AR,annual,2020,fuel consumption of Wood/Wood Waste by commercial buildings,1840409700910,kJ,CH4,300.0,kg/TJ,552122910273263,kg +d031e6f0-50e0-33a6-8211-780b52f78230,BEN,I.2.1,Argentina,AR,annual,2020,fuel consumption of Wood/Wood Waste by commercial buildings,1840409700910,kJ,N2O,4.0,kg/TJ,7361638803643,kg +a8f36a9f-da4e-32c7-a305-ca94223dcd40,BEN,I.2.1,Argentina,AR,annual,2020,fuel consumption of Liquefied Petroleum Gases by commercial buildings,7477457328000,kJ,CO2,63100.0,kg/TJ,471827557396800128,kg +ffb7f9f8-6a8c-3f31-9f94-b3d775aa5038,BEN,I.2.1,Argentina,AR,annual,2020,fuel consumption of Liquefied Petroleum Gases by commercial buildings,7477457328000,kJ,CH4,5.0,kg/TJ,37387286640000,kg +6a13836f-e841-3e5b-95b1-67497f0b8e2e,BEN,I.2.1,Argentina,AR,annual,2020,fuel consumption of Liquefied Petroleum Gases by commercial buildings,7477457328000,kJ,N2O,0.1,kg/TJ,747745732800,kg +7621d343-200d-3c37-9621-f10763cbdcf7,BEN,I.2.1,Argentina,AR,annual,2020,fuel consumption of Charcoal by commercial buildings,4769337820262,kJ,CO2,112000.0,kg/TJ,534165835869388736,kg +6aa96c40-d9e4-3fbb-ba44-0a106315774f,BEN,I.2.1,Argentina,AR,annual,2020,fuel consumption of Charcoal by commercial buildings,4769337820262,kJ,CH4,200.0,kg/TJ,953867564052479,kg +5c9f3c7d-a9ca-349f-9a99-165708013ea0,BEN,I.2.1,Argentina,AR,annual,2020,fuel consumption of Charcoal by commercial buildings,4769337820262,kJ,N2O,1.0,kg/TJ,4769337820262,kg +67a51017-f033-3288-b072-edb65135140c,BEN,I.5.1,Argentina,AR,annual,2020,fuel consumption of Liquefied Petroleum Gases by agricultural activities,3115607220000,kJ,CO2,63100.0,kg/TJ,196594815582000064,kg +d944c209-12a2-38ee-b606-87bf69a81ab0,BEN,I.5.1,Argentina,AR,annual,2020,fuel consumption of Liquefied Petroleum Gases by agricultural activities,3115607220000,kJ,CH4,5.0,kg/TJ,15578036100000,kg +9af4efc1-8e8c-3825-9ba8-88fff0377c11,BEN,I.5.1,Argentina,AR,annual,2020,fuel consumption of Liquefied Petroleum Gases by agricultural activities,3115607220000,kJ,N2O,0.1,kg/TJ,311560722000,kg +b1e684f9-61dd-3662-aecb-5e99ffa337e8,BEN,I.3.1,Argentina,AR,annual,2020,fuel consumption of Wood/Wood Waste by industrial buildings,3680819401821,kJ,CO2,112000.0,kg/TJ,412251773004036352,kg +329a497c-82f4-3552-a3db-f7bd87adec96,BEN,I.3.1,Argentina,AR,annual,2020,fuel consumption of Wood/Wood Waste by industrial buildings,3680819401821,kJ,CH4,30.0,kg/TJ,110424582054652,kg +72b5e678-1e87-3481-97c0-31486ae749f8,BEN,I.3.1,Argentina,AR,annual,2020,fuel consumption of Wood/Wood Waste by industrial buildings,3680819401821,kJ,N2O,4.0,kg/TJ,14723277607287,kg +7fe9238c-99cc-3e8a-8f3b-563c7109e7d5,BEN,I.3.1,Argentina,AR,annual,2020,fuel consumption of Liquefied Petroleum Gases by industrial buildings,6854335884000,kJ,CO2,63100.0,kg/TJ,432508594280400256,kg +f1c5d053-3fee-3132-bcc1-2e575c7943ff,BEN,I.3.1,Argentina,AR,annual,2020,fuel consumption of Liquefied Petroleum Gases by industrial buildings,6854335884000,kJ,CH4,1.0,kg/TJ,6854335884000,kg +94162d43-5bbf-3929-a52c-7622a00d908b,BEN,I.3.1,Argentina,AR,annual,2020,fuel consumption of Liquefied Petroleum Gases by industrial buildings,6854335884000,kJ,N2O,0.1,kg/TJ,685433588400,kg +3e5ce6a6-0cc4-3e90-89eb-833f974d1b46,BEN,I.1.1,Argentina,AR,annual,2021,fuel consumption of Wood/Wood Waste by residential buildings,3610487149012,kJ,CO2,0.0,kg/TJ,0,kg +1ec37776-ab8c-37ab-8b8b-7900ba45fcae,BEN,I.1.1,Argentina,AR,annual,2021,fuel consumption of Wood/Wood Waste by residential buildings,3610487149012,kJ,CH4,300.0,kg/TJ,1083146144703822,kg +7a5d12b5-7f59-3216-9f95-654e24059afc,BEN,I.1.1,Argentina,AR,annual,2021,fuel consumption of Wood/Wood Waste by residential buildings,3610487149012,kJ,N2O,4.0,kg/TJ,14441948596050,kg +c25b196b-5681-3590-b559-59384483dcd4,BEN,I.1.1,Argentina,AR,annual,2021,fuel consumption of Liquefied Petroleum Gases by residential buildings,56470553567999,kJ,CO2,63100.0,kg/TJ,3563291930140799488,kg +940afa0e-4b18-3a8b-8a71-2957f1d717b0,BEN,I.1.1,Argentina,AR,annual,2021,fuel consumption of Liquefied Petroleum Gases by residential buildings,56470553567999,kJ,CH4,5.0,kg/TJ,282352767839999,kg +7228edc4-ff7e-3254-a630-da07e3d8fbf2,BEN,I.1.1,Argentina,AR,annual,2021,fuel consumption of Liquefied Petroleum Gases by residential buildings,56470553567999,kJ,N2O,0.1,kg/TJ,5647055356800,kg +a6738e24-fb73-3c9f-8bcf-f595456aa5cd,BEN,I.1.1,Argentina,AR,annual,2021,fuel consumption of Jet Kerosene by residential buildings,277589864160,kJ,CO2,71500.0,kg/TJ,19847675287440004,kg +19936953-bde0-37a3-9990-26ee2acfd800,BEN,I.1.1,Argentina,AR,annual,2021,fuel consumption of Jet Kerosene by residential buildings,277589864160,kJ,CH4,10.0,kg/TJ,2775898641600,kg +ab1191c5-80d6-3d12-a7ba-7c3810d1e1e9,BEN,I.1.1,Argentina,AR,annual,2021,fuel consumption of Jet Kerosene by residential buildings,277589864160,kJ,N2O,0.6,kg/TJ,166553918496,kg +819c097f-1a72-34e8-bb25-2ce8d96925fc,BEN,I.1.1,Argentina,AR,annual,2021,fuel consumption of Charcoal by residential buildings,7254170670146,kJ,CO2,112000.0,kg/TJ,812467115056396672,kg +d0ea890f-3a10-3d9f-938c-20a9505a742d,BEN,I.1.1,Argentina,AR,annual,2021,fuel consumption of Charcoal by residential buildings,7254170670146,kJ,CH4,200.0,kg/TJ,1450834134029280,kg +c96544f2-59db-3d6c-b5bb-abbf51481bbc,BEN,I.1.1,Argentina,AR,annual,2021,fuel consumption of Charcoal by residential buildings,7254170670146,kJ,N2O,1.0,kg/TJ,7254170670146,kg +a2387bb3-efc1-352b-9c42-cb93f2ff6cd3,BEN,I.2.1,Argentina,AR,annual,2021,fuel consumption of Wood/Wood Waste by commercial buildings,1805243574506,kJ,CO2,112000.0,kg/TJ,202187280344713568,kg +2ce6b9eb-7b93-3c72-8b86-2cd571e4bd86,BEN,I.2.1,Argentina,AR,annual,2021,fuel consumption of Wood/Wood Waste by commercial buildings,1805243574506,kJ,CH4,300.0,kg/TJ,541573072351911,kg +8cad0af6-d235-3f67-852f-70480861e459,BEN,I.2.1,Argentina,AR,annual,2021,fuel consumption of Wood/Wood Waste by commercial buildings,1805243574506,kJ,N2O,4.0,kg/TJ,7220974298025,kg +f383005d-67f9-3149-914c-2f933e948e6d,BEN,I.2.1,Argentina,AR,annual,2021,fuel consumption of Liquefied Petroleum Gases by commercial buildings,9411758928000,kJ,CO2,63100.0,kg/TJ,593881988356800000,kg +3a1d8eb1-7785-37c8-8917-be1b08c2b541,BEN,I.2.1,Argentina,AR,annual,2021,fuel consumption of Liquefied Petroleum Gases by commercial buildings,9411758928000,kJ,CH4,5.0,kg/TJ,47058794640000,kg +92f3420f-37d1-39ae-b0fb-80e0ce1fa2ec,BEN,I.2.1,Argentina,AR,annual,2021,fuel consumption of Liquefied Petroleum Gases by commercial buildings,9411758928000,kJ,N2O,0.1,kg/TJ,941175892800,kg +637e5cd1-edce-3190-888f-546725af8ff4,BEN,I.2.1,Argentina,AR,annual,2021,fuel consumption of Charcoal by commercial buildings,4836113780097,kJ,CO2,112000.0,kg/TJ,541644743370931264,kg +3aa22b55-209e-3c03-87f5-4d42129a4a27,BEN,I.2.1,Argentina,AR,annual,2021,fuel consumption of Charcoal by commercial buildings,4836113780097,kJ,CH4,200.0,kg/TJ,967222756019520,kg +bedf126c-76af-3409-ad1b-3fd2db9ba6ad,BEN,I.2.1,Argentina,AR,annual,2021,fuel consumption of Charcoal by commercial buildings,4836113780097,kJ,N2O,1.0,kg/TJ,4836113780097,kg +05e43d5d-a6c0-32e4-b4b8-40a533a7c345,BEN,I.5.1,Argentina,AR,annual,2021,fuel consumption of Liquefied Petroleum Gases by agricultural activities,3921566220000,kJ,CO2,63100.0,kg/TJ,247450828482000000,kg +960c3431-fcd1-35a0-8494-c78a0cf9651e,BEN,I.5.1,Argentina,AR,annual,2021,fuel consumption of Liquefied Petroleum Gases by agricultural activities,3921566220000,kJ,CH4,5.0,kg/TJ,19607831100000,kg +6888242f-8118-39d3-9d1f-cc7ecb6246c3,BEN,I.5.1,Argentina,AR,annual,2021,fuel consumption of Liquefied Petroleum Gases by agricultural activities,3921566220000,kJ,N2O,0.1,kg/TJ,392156622000,kg +e37b7056-4f2d-3b0e-a687-e6f4c6e867ab,BEN,I.3.1,Argentina,AR,annual,2021,fuel consumption of Wood/Wood Waste by industrial buildings,3610487149012,kJ,CO2,112000.0,kg/TJ,404374560689427136,kg +1bf675df-422c-38a6-b59e-fd25ee91932a,BEN,I.3.1,Argentina,AR,annual,2021,fuel consumption of Wood/Wood Waste by industrial buildings,3610487149012,kJ,CH4,30.0,kg/TJ,108314614470382,kg +180a7aa9-0821-3b57-9457-287ffd7f2beb,BEN,I.3.1,Argentina,AR,annual,2021,fuel consumption of Wood/Wood Waste by industrial buildings,3610487149012,kJ,N2O,4.0,kg/TJ,14441948596050,kg +052943af-7585-34c9-a1e5-ce692409d496,BEN,I.3.1,Argentina,AR,annual,2021,fuel consumption of Liquefied Petroleum Gases by industrial buildings,8627445684000,kJ,CO2,63100.0,kg/TJ,544391822660400000,kg +6277fa46-9881-390c-8986-387ee9f0a279,BEN,I.3.1,Argentina,AR,annual,2021,fuel consumption of Liquefied Petroleum Gases by industrial buildings,8627445684000,kJ,CH4,1.0,kg/TJ,8627445684000,kg +b8d0efdd-4dec-3abf-a2dc-32f5ba8c40de,BEN,I.3.1,Argentina,AR,annual,2021,fuel consumption of Liquefied Petroleum Gases by industrial buildings,8627445684000,kJ,N2O,0.1,kg/TJ,862744568400,kg +74a2b832-e4a1-32b1-90c7-b6656400acf1,BEN,I.1.1,Argentina,AR,annual,2018,fuel consumption of Wood/Wood Waste by residential buildings,3839058324766,kJ,CO2,0.0,kg/TJ,0,kg +fc8207f5-d763-36b6-9ee2-468a37b7b24a,BEN,I.1.1,Argentina,AR,annual,2018,fuel consumption of Wood/Wood Waste by residential buildings,3839058324766,kJ,CH4,300.0,kg/TJ,1151717497429815,kg +a7ed50e0-b58d-330d-9fa1-8f15ff9ec3b4,BEN,I.1.1,Argentina,AR,annual,2018,fuel consumption of Wood/Wood Waste by residential buildings,3839058324766,kJ,N2O,4.0,kg/TJ,15356233299064,kg +ac08fff8-d566-36f7-adbe-be571c278849,BEN,I.1.1,Argentina,AR,annual,2018,fuel consumption of Liquefied Petroleum Gases by residential buildings,50498170788383,kJ,CO2,63100.0,kg/TJ,3186434576747030016,kg +9280b872-a62e-35dc-827a-2df0a3b1e0f3,BEN,I.1.1,Argentina,AR,annual,2018,fuel consumption of Liquefied Petroleum Gases by residential buildings,50498170788383,kJ,CH4,5.0,kg/TJ,252490853941919,kg +ddaae8dd-6a25-32ec-a7c0-6a0abe53dd83,BEN,I.1.1,Argentina,AR,annual,2018,fuel consumption of Liquefied Petroleum Gases by residential buildings,50498170788383,kJ,N2O,0.1,kg/TJ,5049817078838,kg +c318a86a-e308-3011-93c3-0057ee096a6d,BEN,I.1.1,Argentina,AR,annual,2018,fuel consumption of Jet Kerosene by residential buildings,477104281920,kJ,CO2,71500.0,kg/TJ,34112956157280000,kg +ca8ebb8d-4a8a-394d-bff6-0eb1f40dc5f3,BEN,I.1.1,Argentina,AR,annual,2018,fuel consumption of Jet Kerosene by residential buildings,477104281920,kJ,CH4,10.0,kg/TJ,4771042819200,kg +abb7535c-e343-3a38-8c06-29c2b9511b7d,BEN,I.1.1,Argentina,AR,annual,2018,fuel consumption of Jet Kerosene by residential buildings,477104281920,kJ,N2O,0.6,kg/TJ,286262569152,kg +275ecc0b-535a-3266-8721-ecc20cb425df,BEN,I.1.1,Argentina,AR,annual,2018,fuel consumption of Charcoal by residential buildings,7098502403180,kJ,CO2,112000.0,kg/TJ,795032269156177664,kg +b7badea9-ac68-3d49-b196-236a900060d5,BEN,I.1.1,Argentina,AR,annual,2018,fuel consumption of Charcoal by residential buildings,7098502403180,kJ,CH4,200.0,kg/TJ,1419700480636031,kg +1062969a-6dbf-3aa9-bbff-034863b6a708,BEN,I.1.1,Argentina,AR,annual,2018,fuel consumption of Charcoal by residential buildings,7098502403180,kJ,N2O,1.0,kg/TJ,7098502403180,kg +19122484-a58c-38d0-8398-2249dbf8e92b,BEN,I.2.1,Argentina,AR,annual,2018,fuel consumption of Wood/Wood Waste by commercial buildings,1919529162383,kJ,CO2,112000.0,kg/TJ,214987266186898912,kg +66ad71c6-e2f9-3af5-8d50-8332b5f0173c,BEN,I.2.1,Argentina,AR,annual,2018,fuel consumption of Wood/Wood Waste by commercial buildings,1919529162383,kJ,CH4,300.0,kg/TJ,575858748714907,kg +2af7014a-0137-39b8-a429-730dd140114a,BEN,I.2.1,Argentina,AR,annual,2018,fuel consumption of Wood/Wood Waste by commercial buildings,1919529162383,kJ,N2O,4.0,kg/TJ,7678116649532,kg +b52abfa2-587a-3b17-8142-840f34907037,BEN,I.2.1,Argentina,AR,annual,2018,fuel consumption of Liquefied Petroleum Gases by commercial buildings,8416361798063,kJ,CO2,63100.0,kg/TJ,531072429457838336,kg +fa15ab4f-1cbe-3aba-ace2-3822b2ebf0dd,BEN,I.2.1,Argentina,AR,annual,2018,fuel consumption of Liquefied Petroleum Gases by commercial buildings,8416361798063,kJ,CH4,5.0,kg/TJ,42081808990319,kg +4b455f77-4090-367a-819f-c6395001093c,BEN,I.2.1,Argentina,AR,annual,2018,fuel consumption of Liquefied Petroleum Gases by commercial buildings,8416361798063,kJ,N2O,0.1,kg/TJ,841636179806,kg +a297ed0f-f86e-3223-bca9-77775d9505f8,BEN,I.2.1,Argentina,AR,annual,2018,fuel consumption of Charcoal by commercial buildings,4732334935453,kJ,CO2,112000.0,kg/TJ,530021512770785216,kg +eaa777bc-b7a6-3e45-aca1-2eab61e91fbb,BEN,I.2.1,Argentina,AR,annual,2018,fuel consumption of Charcoal by commercial buildings,4732334935453,kJ,CH4,200.0,kg/TJ,946466987090687,kg +96101944-8214-344c-8214-1efebb15517b,BEN,I.2.1,Argentina,AR,annual,2018,fuel consumption of Charcoal by commercial buildings,4732334935453,kJ,N2O,1.0,kg/TJ,4732334935453,kg +b162297f-8800-3dda-be3e-b14ebe593a49,BEN,I.5.1,Argentina,AR,annual,2018,fuel consumption of Liquefied Petroleum Gases by agricultural activities,3506817415859,kJ,CO2,63100.0,kg/TJ,221280178940765984,kg +8736dd5e-6bed-3741-81c4-e0c809b89e77,BEN,I.5.1,Argentina,AR,annual,2018,fuel consumption of Liquefied Petroleum Gases by agricultural activities,3506817415859,kJ,CH4,5.0,kg/TJ,17534087079299,kg +28ae2526-5f80-31fb-b533-aa2cda93b314,BEN,I.5.1,Argentina,AR,annual,2018,fuel consumption of Liquefied Petroleum Gases by agricultural activities,3506817415859,kJ,N2O,0.1,kg/TJ,350681741586,kg +889e84ac-cdbd-3b4e-8530-bdb365a4bbfd,BEN,I.3.1,Argentina,AR,annual,2018,fuel consumption of Wood/Wood Waste by industrial buildings,3839058324766,kJ,CO2,112000.0,kg/TJ,429974532373797824,kg +b9c4ca73-fd06-34da-a507-bc895cf1d190,BEN,I.3.1,Argentina,AR,annual,2018,fuel consumption of Wood/Wood Waste by industrial buildings,3839058324766,kJ,CH4,30.0,kg/TJ,115171749742981,kg +1fd3ea82-8085-353d-b52f-bb49473716cf,BEN,I.3.1,Argentina,AR,annual,2018,fuel consumption of Wood/Wood Waste by industrial buildings,3839058324766,kJ,N2O,4.0,kg/TJ,15356233299064,kg +500365d8-2941-3a75-84f8-d918ad5c56ae,BEN,I.3.1,Argentina,AR,annual,2018,fuel consumption of Liquefied Petroleum Gases by industrial buildings,7714998314891,kJ,CO2,63100.0,kg/TJ,486816393669685056,kg +08be1053-1758-3b37-9891-e488c744c672,BEN,I.3.1,Argentina,AR,annual,2018,fuel consumption of Liquefied Petroleum Gases by industrial buildings,7714998314891,kJ,CH4,1.0,kg/TJ,7714998314891,kg +efe7dcb2-b734-33b0-9d3d-d92f5648d6cb,BEN,I.3.1,Argentina,AR,annual,2018,fuel consumption of Liquefied Petroleum Gases by industrial buildings,7714998314891,kJ,N2O,0.1,kg/TJ,771499831489,kg +72c4c62b-1db2-3f44-b56f-8f1862224f8a,BEN,I.1.1,Argentina,AR,annual,2019,fuel consumption of Wood/Wood Waste by residential buildings,3847111857705,kJ,CO2,0.0,kg/TJ,0,kg +0679ec1d-e68c-3ae1-bc92-f13afb4dcf21,BEN,I.1.1,Argentina,AR,annual,2019,fuel consumption of Wood/Wood Waste by residential buildings,3847111857705,kJ,CH4,300.0,kg/TJ,1154133557311723,kg +11fbfffb-c838-3b11-8cad-3934aebbb8f1,BEN,I.1.1,Argentina,AR,annual,2019,fuel consumption of Wood/Wood Waste by residential buildings,3847111857705,kJ,N2O,4.0,kg/TJ,15388447430822,kg +fcaebfc7-e37f-34c4-ae40-b67910ba582b,BEN,I.1.1,Argentina,AR,annual,2019,fuel consumption of Liquefied Petroleum Gases by residential buildings,49888401552000,kJ,CO2,63100.0,kg/TJ,3147958137931200000,kg +538fe6d2-2257-3e9f-a89a-b4d1526409d1,BEN,I.1.1,Argentina,AR,annual,2019,fuel consumption of Liquefied Petroleum Gases by residential buildings,49888401552000,kJ,CH4,5.0,kg/TJ,249442007760000,kg +67d871f6-7147-355c-b137-0aec1265412e,BEN,I.1.1,Argentina,AR,annual,2019,fuel consumption of Liquefied Petroleum Gases by residential buildings,49888401552000,kJ,N2O,0.1,kg/TJ,4988840155200,kg +e3c4ff73-a435-30e1-a9a9-fa0d6747e793,BEN,I.1.1,Argentina,AR,annual,2019,fuel consumption of Jet Kerosene by residential buildings,383554422719,kJ,CO2,71500.0,kg/TJ,27424141224479996,kg +684d7689-136c-3830-86ed-9b315ecfc5bc,BEN,I.1.1,Argentina,AR,annual,2019,fuel consumption of Jet Kerosene by residential buildings,383554422719,kJ,CH4,10.0,kg/TJ,3835544227199,kg +fb5b990f-93e0-3a39-aa23-337c81aad26d,BEN,I.1.1,Argentina,AR,annual,2019,fuel consumption of Jet Kerosene by residential buildings,383554422719,kJ,N2O,0.6,kg/TJ,230132653631,kg +2dc7dcf2-916b-3533-9fdd-d10e40fc8190,BEN,I.1.1,Argentina,AR,annual,2019,fuel consumption of Charcoal by residential buildings,7226273011890,kJ,CO2,112000.0,kg/TJ,809342577331707008,kg +7bb960a6-9bba-347c-9587-b4cbe997627e,BEN,I.1.1,Argentina,AR,annual,2019,fuel consumption of Charcoal by residential buildings,7226273011890,kJ,CH4,200.0,kg/TJ,1445254602378048,kg +9f0d9091-78e5-347d-9f20-eb97cb624e76,BEN,I.1.1,Argentina,AR,annual,2019,fuel consumption of Charcoal by residential buildings,7226273011890,kJ,N2O,1.0,kg/TJ,7226273011890,kg +c78212b6-544e-3381-9e4d-9218875f2f77,BEN,I.2.1,Argentina,AR,annual,2019,fuel consumption of Wood/Wood Waste by commercial buildings,1923555928852,kJ,CO2,112000.0,kg/TJ,215438264031521632,kg +f35a30d9-b7bf-3fc1-8ad6-af98e959da4b,BEN,I.2.1,Argentina,AR,annual,2019,fuel consumption of Wood/Wood Waste by commercial buildings,1923555928852,kJ,CH4,300.0,kg/TJ,577066778655861,kg +4cf1fce9-0f45-3069-b8d6-373e4bf1267c,BEN,I.2.1,Argentina,AR,annual,2019,fuel consumption of Wood/Wood Waste by commercial buildings,1923555928852,kJ,N2O,4.0,kg/TJ,7694223715411,kg +b7921233-7b32-352b-adc9-bdbded459c12,BEN,I.2.1,Argentina,AR,annual,2019,fuel consumption of Liquefied Petroleum Gases by commercial buildings,8314733592000,kJ,CO2,63100.0,kg/TJ,524659689655200064,kg +ebc08536-496d-3151-84d4-3c0d44aabec3,BEN,I.2.1,Argentina,AR,annual,2019,fuel consumption of Liquefied Petroleum Gases by commercial buildings,8314733592000,kJ,CH4,5.0,kg/TJ,41573667960000,kg +34a46446-9bb2-3867-a2b1-01c55d9d5a19,BEN,I.2.1,Argentina,AR,annual,2019,fuel consumption of Liquefied Petroleum Gases by commercial buildings,8314733592000,kJ,N2O,0.1,kg/TJ,831473359200,kg +a2395706-bc5a-3bc9-a248-c4cfb5594fef,BEN,I.2.1,Argentina,AR,annual,2019,fuel consumption of Charcoal by commercial buildings,4817515341260,kJ,CO2,112000.0,kg/TJ,539561718221138048,kg +ebba22fd-c0cb-3b5d-8a05-2a32aaa30cda,BEN,I.2.1,Argentina,AR,annual,2019,fuel consumption of Charcoal by commercial buildings,4817515341260,kJ,CH4,200.0,kg/TJ,963503068252032,kg +96c064bb-97bb-3ce2-8dd1-1d1853bc3a38,BEN,I.2.1,Argentina,AR,annual,2019,fuel consumption of Charcoal by commercial buildings,4817515341260,kJ,N2O,1.0,kg/TJ,4817515341260,kg +65698d25-16d6-3892-b3ea-a4cf42b9aef2,BEN,I.5.1,Argentina,AR,annual,2019,fuel consumption of Liquefied Petroleum Gases by agricultural activities,3464472330000,kJ,CO2,63100.0,kg/TJ,218608204023000032,kg +f1b2025d-db88-397c-b022-67022326e322,BEN,I.5.1,Argentina,AR,annual,2019,fuel consumption of Liquefied Petroleum Gases by agricultural activities,3464472330000,kJ,CH4,5.0,kg/TJ,17322361650000,kg +dc6e741f-7290-388a-88fe-0acdea951c72,BEN,I.5.1,Argentina,AR,annual,2019,fuel consumption of Liquefied Petroleum Gases by agricultural activities,3464472330000,kJ,N2O,0.1,kg/TJ,346447233000,kg +67a999c2-c0f7-35d8-a6f7-394ce64e3d46,BEN,I.3.1,Argentina,AR,annual,2019,fuel consumption of Wood/Wood Waste by industrial buildings,3847111857705,kJ,CO2,112000.0,kg/TJ,430876528063043264,kg +7ddce7b9-8425-344d-beff-9d0034dc75ca,BEN,I.3.1,Argentina,AR,annual,2019,fuel consumption of Wood/Wood Waste by industrial buildings,3847111857705,kJ,CH4,30.0,kg/TJ,115413355731172,kg +1d55c6b3-49e9-31e9-86f5-8a596660ef14,BEN,I.3.1,Argentina,AR,annual,2019,fuel consumption of Wood/Wood Waste by industrial buildings,3847111857705,kJ,N2O,4.0,kg/TJ,15388447430822,kg +3ab3c41d-f481-3a6d-b5cc-9e805ee5dd17,BEN,I.3.1,Argentina,AR,annual,2019,fuel consumption of Liquefied Petroleum Gases by industrial buildings,7621839126000,kJ,CO2,63100.0,kg/TJ,480938048850600064,kg +3402f0d9-63f9-39b4-8f59-baf690c3a2f1,BEN,I.3.1,Argentina,AR,annual,2019,fuel consumption of Liquefied Petroleum Gases by industrial buildings,7621839126000,kJ,CH4,1.0,kg/TJ,7621839126000,kg +1a1633b2-0be9-3117-9d33-58f53bd2107e,BEN,I.3.1,Argentina,AR,annual,2019,fuel consumption of Liquefied Petroleum Gases by industrial buildings,7621839126000,kJ,N2O,0.1,kg/TJ,762183912600,kg diff --git a/global-api/importer/argentinian_datasets/BEN/transformation_BEN_AR.py b/global-api/importer/argentinian_datasets/BEN/transformation_BEN_AR.py new file mode 100644 index 000000000..cdc4fffd3 --- /dev/null +++ b/global-api/importer/argentinian_datasets/BEN/transformation_BEN_AR.py @@ -0,0 +1,215 @@ +import pandas as pd +import argparse +import glob +import uuid +import os + +def uuid_generate_v3(name, namespace=uuid.NAMESPACE_OID): + """generate a version 3 UUID from namespace and name""" + assert isinstance(name, str), "name needs to be a string" + assert isinstance(namespace, uuid.UUID), "namespace needs to be a uuid.UUID" + return str(uuid.uuid3(namespace, name)) + +if __name__ == "__main__": + parser = argparse.ArgumentParser(description='Transform files with a specified location.') + parser.add_argument("--filepath", help="path to the files location", required=True) + args = parser.parse_args() + + absolute_path = os.path.abspath(args.filepath) + paths = glob.glob(f'{absolute_path}/*raw_energy_balances_AR.xlsx') + + #------------------------------------------------------------------------ + ### Emission Factors + #------------------------------------------------------------------------ + + # read Emission Factor file for AR + ef_df = pd.read_excel('./energy_EF_Argentina.xlsx') + + # mapping from ipcc to gpm + ipcc_to_gpc = { + '1.A.2 - Manufacturing Industries and Construction': 'I.3.1', + '1.A.4.a - Commercial/Institutional': 'I.2.1', + '1.A.4.b - Residential\n1.A.4.c.i - Stationary': 'I.1.1', + } + + # filter only for stationary energy + ef_df = ef_df[(ef_df['Type of parameter'] == '2006 IPCC default')&(ef_df['Description'].str.contains('Emission Factor for Stationary Combustion'))] + + # define the list of fuel types to filter + fuel_types = ['Wood/Wood Waste', 'Charcoal', 'Liquefied Petroleum Gases', 'Jet Kerosene'] + + # filter the df based on the 'Fuel 2006' column + ef_df = ef_df[ef_df['Fuel 2006'].isin(fuel_types)] + + # assign gpc_refno + for index, row in ef_df.iterrows(): + category = row['IPCC 2006 Source/Sink Category'] + + if category in ipcc_to_gpc.keys(): + ef_df.loc[index, 'GPC_refno'] = ipcc_to_gpc[category] + + # delete rows + ef_df = ef_df[ef_df['IPCC 2006 Source/Sink Category'] != '1.A.1 - Energy Industries'] + # reset index + ef_df.reset_index(drop=True, inplace=True) + + # assign gas_name + gas_mapping = { + 'CARBON DIOXIDE':'CO2', + 'METHANE':'CH4', + 'NITROUS OXIDE': 'N2O' + } + for index, row in ef_df.iterrows(): + gas = row['Gas'] + if gas in gas_mapping.keys(): + ef_df.loc[index, 'gas_name'] = gas_mapping[gas] + + # delete unnecesary columns + ef_df = ef_df.drop( + columns=['EF ID', 'IPCC 1996 Source/Sink Category', 'IPCC 2006 Source/Sink Category', 'Fuel 1996', 'Technologies / Practices', 'Parameters / Conditions', 'Abatement / Control Technologies', + 'Other properties', 'Equation', 'IPCC Worksheet', 'Technical Reference', 'Type of parameter', 'Region / Regional Conditions', + 'Source of data', 'Data provider', 'Gas', 'Description'] + ) + + # rename columns + ef_df = ef_df.rename(columns={'Value': 'emission_factor_value', 'Unit': 'emission_factor_units'}) + + # assign extra values for agriculture activities + df_copy = ef_df[ef_df['GPC_refno'] == 'I.1.1'].copy() + df_copy['GPC_refno'] = 'I.5.1' + ef_df = pd.concat([ef_df, df_copy], ignore_index=True) + ef_df = ef_df.rename(columns={'Fuel 2006': 'fuel_type'}) + + #------------------------------------------------------------------------ + ### Emission Calculation + #------------------------------------------------------------------------ + result_df = pd.DataFrame() + + for path in paths: + try: + # read file + df = pd.read_excel(path) + + df = df.drop( + columns=[ + 'Unnamed: 0', 'Unnamed: 1', 'Unnamed: 2', 'Unnamed: 4','Unnamed: 5', 'Unnamed: 6', 'Unnamed: 7', 'Unnamed: 8', 'Unnamed: 9', + 'Unnamed: 10', 'Unnamed: 11', 'Unnamed: 12', 'Unnamed: 13', 'Unnamed: 14', 'Unnamed: 15', 'Unnamed: 16', 'Unnamed: 17', + 'Unnamed: 18', 'Unnamed: 19', 'Unnamed: 20', 'Unnamed: 21', 'Unnamed: 22', 'Unnamed: 25' + ] + ) + + # reestructure + df = df[17:49] + df = df.drop([29,30]) + + # assigning new column names + column_names = [ + 'fuel_type', + 'residential', + 'commercial', + 'agriculture', + 'industrial' + ] + df.columns = column_names + + # new structure + df = pd.melt(df, id_vars='fuel_type', var_name='user_type', value_name='activity_value') + + # delete rows with '0' in the 'activity_value' column + df = df[df['activity_value'] != 0] + # reset index + df.reset_index(drop=True, inplace=True) + + # assign fuel type based on the energy source + fuel_mapping = { + 'Leña ':'Wood/Wood Waste', + 'Carbón de Leña ':'Charcoal', + 'Gas Licuado ':'Liquefied Petroleum Gases', + 'Kerosene y Aerokerosene ':'Jet Kerosene' + } + df.loc[:, 'fuel_type'] = df['fuel_type'].replace(fuel_mapping) + + # applying a filter to select only the interested fuels + df = df[df['fuel_type'].isin(['Wood/Wood Waste', 'Charcoal', 'Liquefied Petroleum Gases', 'Jet Kerosene'])] + df.reset_index(drop=True, inplace=True) + + # assign activity name and GPC_refno based on the user type + subsector_dic = { + 'residential': { + 'description': 'residential buildings', + 'GPC_refno': 'I.1.1' + }, + 'commercial': { + 'description': 'commercial buildings', + 'GPC_refno': 'I.2.1' + }, + 'agriculture': { + 'description': 'agricultural activities', + 'GPC_refno': 'I.5.1' + }, + 'industrial': { + 'description': 'industrial buildings', + 'GPC_refno': 'I.3.1' + } + } + for index, row in df.iterrows(): + user_type = row['user_type'] + fuel_type = row['fuel_type'] + + description = subsector_dic[user_type]['description'] + gpc_refno = subsector_dic[user_type]['GPC_refno'] + + df.loc[index, 'activity_name'] = f'fuel consumption of {fuel_type} by {description}' + df.loc[index, 'GPC_refno'] = gpc_refno + + # units conversion + # from IEA: 1 tep = 41.868 GJ = 39.68 MBtu = 11.63 MWh + # raw data: miles de TEP + TEP_to_kJ = 41.868 * 1e6 + df.loc[:, 'activity_value'] *= 1000 + df.loc[:, 'activity_value'] *= TEP_to_kJ + + # merge with EF dataframe + df = pd.merge(df, ef_df, on=['GPC_refno', 'fuel_type']) + + # replace a null value + df['emission_factor_value'] = df['emission_factor_value'].replace({'N': 0}) + # convert to numeric + df['emission_factor_value'] = pd.to_numeric(df['emission_factor_value']) + + # calcute emission values + df['emissions_value'] = df['activity_value'] * df['emission_factor_value'] + df['emissions_value'] = df['emissions_value'].astype(int) + df['activity_value'] = df['activity_value'].astype(int) + + # adding missing columns and values + df.loc[:, 'emissions_units'] = 'kg' + df.loc[:, 'activity_units'] = 'kJ' + df.loc[:, 'source_name'] = 'BEN' + df.loc[:, 'country_name'] = 'Argentina' + df.loc[:, 'country_code'] = 'AR' + df.loc[:, 'temporal_granularity'] = 'annual' + df.loc[:, 'year'] = path[len(absolute_path)+1:-28] + + result_df = pd.concat([result_df, df], ignore_index=True) + result_df = result_df.drop(columns=['fuel_type', 'user_type']) + + except Exception as e: + print(f"Error processing {path}: {e}") + + # assigning a unique ID to each row + for index, row in result_df.iterrows(): + country_code = str(row['country_code']) + emissions_value = str(row['emissions_value']) + year = str(row['year']) + gas = str(row['gas_name']) + GPC_refno = str(row['GPC_refno']) + + id_string = country_code + emissions_value + year + gas + GPC_refno + result_df.at[index, 'id'] = uuid_generate_v3(id_string) + + col_order = ['id', 'source_name', 'GPC_refno', 'country_name', 'country_code', 'temporal_granularity', 'year', 'activity_name', 'activity_value', + 'activity_units', 'gas_name', 'emission_factor_value', 'emission_factor_units', 'emissions_value', 'emissions_units'] + result_df = result_df.reindex(columns=col_order) + + result_df.to_csv(f'{absolute_path}/processed_BEN_AR.csv', sep=",", decimal=".", index=False) \ No newline at end of file From 2e6aa03860245fb7cad4a6c507293f0a8adc432e Mon Sep 17 00:00:00 2001 From: mfonsecaOEF Date: Wed, 3 Apr 2024 15:24:51 -0600 Subject: [PATCH 03/45] docs: fixing_command --- global-api/importer/argentinian_datasets/BEN/README.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/global-api/importer/argentinian_datasets/BEN/README.md b/global-api/importer/argentinian_datasets/BEN/README.md index 57bb144c6..d3f209de7 100644 --- a/global-api/importer/argentinian_datasets/BEN/README.md +++ b/global-api/importer/argentinian_datasets/BEN/README.md @@ -11,14 +11,14 @@ python ./importer/argentinian_datasets/Energy_Balances/transformation_BEN_AR.py ``` 3. Extract the activity row from the source: ```bash -psql -U ccglobal -d ccglobal -f ./importer/argentinian_datasets/Energy_Balances/loading_BEN_AR.sql -v file_path=[path where the transformed data was saved] +psql -U ccglobal -d ccglobal -f ./importer/argentinian_datasets/Energy_Balances/loading_BEN_AR.sql ``` ### Directory tree ```sh . -├── README.md # top level readme -├── extraction_energy_balances.py # extraction script -├── transformation_energy_balances.py # transformation script -└── load__energy_balances.py # loading script +├── README.md # top level readme +├── extraction_BEN_AR.py # extraction script +├── transformation_BEN_AR.py # transformation script +└── loading_BEN_AR.py # loading script ``` From 57ba7e083aafc805baf0d7359acff8250f292050 Mon Sep 17 00:00:00 2001 From: Maureen Fonseca Mora <107511484+mfonsecaOEF@users.noreply.github.com> Date: Tue, 16 Apr 2024 06:35:35 -0600 Subject: [PATCH 04/45] feat: Create README.md --- .../argentinian_datasets/SESCO/README.md | 24 +++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 global-api/importer/argentinian_datasets/SESCO/README.md diff --git a/global-api/importer/argentinian_datasets/SESCO/README.md b/global-api/importer/argentinian_datasets/SESCO/README.md new file mode 100644 index 000000000..527346d7d --- /dev/null +++ b/global-api/importer/argentinian_datasets/SESCO/README.md @@ -0,0 +1,24 @@ +# SESCO - Argentina +Refining and Marketing of oil, gas and derivatives. Market Sales by sector and province reported by the Secretary of Energy, National Government. This source is used to calculate GHG emissions for subsector of Manufactoring industries and facilities in Stationary Energy sector (I.3.1) + +1. Extract the activity data from the source [TD Ventas (Excluye ventas al sector) - SESCO](http://datos.energia.gob.ar/dataset/refinacion-y-comercializacion-de-petroleo-gas-y-derivados-tablas-dinamicas/archivo/f0e4e10a-e4b8-44e6-bd16-763a43742107): +```bash +python ./importer/argentinian_datasets/SESCO/extraction_SESCO_AR.py --filepath [path where the extracted data will be saved] +``` +2. Transform the activity into emission data align with the Global API schema: +```bash +python ./importer/argentinian_datasets/SESCO/transformation_SESCO_AR.py --filepath [path where the transformed data will be saved] +``` +3. Extract the activity row from the source: +```bash +psql -U ccglobal -d ccglobal -f ./importer/argentinian_datasets/SESCO/loading_SESCO_AR.sql +``` + +### Directory tree +```sh +. +├── README.md # top level readme +├── extraction_SESCO_AR.py # extraction script +├── loading_SESCO_AR.py # transformation script +└── loading_SESCO_AR.py # loading script +``` From adc682396fb90fe04b034e01f69b315abe936e23 Mon Sep 17 00:00:00 2001 From: Maureen Fonseca Mora <107511484+mfonsecaOEF@users.noreply.github.com> Date: Tue, 16 Apr 2024 06:36:18 -0600 Subject: [PATCH 05/45] feat: transformation_process_SESCO --- .../SESCO/extraction_SESCO_AR.py | 35 + .../SESCO/processed_SESCO_AR.csv | 17572 ++++++++++++++++ .../SESCO/transformation_SESCO_AR.py | 379 + 3 files changed, 17986 insertions(+) create mode 100644 global-api/importer/argentinian_datasets/SESCO/extraction_SESCO_AR.py create mode 100644 global-api/importer/argentinian_datasets/SESCO/processed_SESCO_AR.csv create mode 100644 global-api/importer/argentinian_datasets/SESCO/transformation_SESCO_AR.py diff --git a/global-api/importer/argentinian_datasets/SESCO/extraction_SESCO_AR.py b/global-api/importer/argentinian_datasets/SESCO/extraction_SESCO_AR.py new file mode 100644 index 000000000..31ed214e5 --- /dev/null +++ b/global-api/importer/argentinian_datasets/SESCO/extraction_SESCO_AR.py @@ -0,0 +1,35 @@ +import requests +import argparse +import os + +link = 'http://datos.energia.gob.ar/dataset/5bdc436c-60d4-4c86-98ab-59834d047700/resource/f0e4e10a-e4b8-44e6-bd16-763a43742107/download/ventas-excluye-ventas-a-empresas-del-sector-.csv' + +if __name__ == "__main__": + parser = argparse.ArgumentParser(description='Save files in the specified location.') + parser.add_argument("--filepath", help="path to save the files", required=True) + args = parser.parse_args() + + absolute_path = os.path.abspath(args.filepath) + + def download_files(links, download_path): + full_download_path = os.path.expanduser(download_path) + os.makedirs(full_download_path, exist_ok=True) + + try: + response = requests.get(link) + # Check if the request was successful (status code 200) + if response.status_code == 200: + file_name = f"raw_fuel_sales_SESCO_AR.csv" + # Construct the complete file path + file_path = os.path.join(full_download_path, file_name) + # Save the file + with open(file_path, 'wb') as file: + file.write(response.content) + print(f"Downloaded: {file_name}") + else: + print(f"Failed to download {link} (Status code: {response.status_code})") + except Exception as e: + print(f"Error downloading {link} data: {e}") + + # Use the specified download_path + download_files(link, download_path=f"{absolute_path}") diff --git a/global-api/importer/argentinian_datasets/SESCO/processed_SESCO_AR.csv b/global-api/importer/argentinian_datasets/SESCO/processed_SESCO_AR.csv new file mode 100644 index 000000000..f9a0fffb4 --- /dev/null +++ b/global-api/importer/argentinian_datasets/SESCO/processed_SESCO_AR.csv @@ -0,0 +1,17572 @@ +year,province_name,GPC_refno,activity_value,activity_units,gas_name,emission_factor_value,emission_factor_units,emissions_value,activity_name,province_code,source_name,temporal_granularity,emissions_units,id +2010,Buenos Aires,I.3.1,12.85872,TJ,CO2,74100.0,kg/TJ,952831.152,Gas Oil combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,307e8111-cc48-3b1e-9826-ba331db99535 +2010,Buenos Aires,I.3.1,12.85872,TJ,CH4,3.0,kg/TJ,38.57616,Gas Oil combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,2b1ff6a0-81b5-3c30-9644-274f8d90d1b3 +2010,Buenos Aires,I.3.1,12.85872,TJ,N2O,0.6,kg/TJ,7.715231999999999,Gas Oil combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,b938ed42-ab66-3e03-8064-06cf80d6e962 +2010,Capital Federal,I.3.1,3.28692,TJ,CO2,74100.0,kg/TJ,243560.772,Gas Oil combustion consumption by petrochemical industries,AR-C,SESCO,annual,kg,de8d2d98-5f79-3cfc-ad8f-9e7942fa1aa7 +2010,Capital Federal,I.3.1,3.28692,TJ,CH4,3.0,kg/TJ,9.860759999999999,Gas Oil combustion consumption by petrochemical industries,AR-C,SESCO,annual,kg,353d42ed-2c3b-3de4-959c-fc1cbe2d83d7 +2010,Capital Federal,I.3.1,3.28692,TJ,N2O,0.6,kg/TJ,1.972152,Gas Oil combustion consumption by petrochemical industries,AR-C,SESCO,annual,kg,4f7e2ebd-d937-3dab-a07f-616cd3c6228e +2010,Buenos Aires,I.3.1,2.660215,TJ,CO2,69300.0,kg/TJ,184352.8995,Motor Gasoline combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,378c40bf-b65a-357c-b6a5-021b763c708a +2010,Buenos Aires,I.3.1,2.660215,TJ,CH4,3.0,kg/TJ,7.980645,Motor Gasoline combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,b0d18ad5-1bc1-314f-861e-f0d651164cdb +2010,Buenos Aires,I.3.1,2.660215,TJ,N2O,0.6,kg/TJ,1.596129,Motor Gasoline combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,06038793-58a9-3427-a445-dfafefe0cf5a +2010,Buenos Aires,I.3.1,6.29122906,TJ,CO2,71500.0,kg/TJ,449822.87779,Jet Kerosene combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,d563d431-ffaf-39a7-9a89-4b08f3af9fdc +2010,Buenos Aires,I.3.1,6.29122906,TJ,CH4,3.0,kg/TJ,18.87368718,Jet Kerosene combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,0ae65231-b9b2-3608-8ef2-436fc1ff5ee8 +2010,Buenos Aires,I.3.1,6.29122906,TJ,N2O,0.6,kg/TJ,3.7747374359999997,Jet Kerosene combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,b93fde4b-2472-3a71-ae68-fc77e33404d0 +2010,Tucuman,I.3.1,2.5834107599999996,TJ,CO2,74100.0,kg/TJ,191430.73731599996,Gas Oil combustion consumption by petrochemical industries,AR-T,SESCO,annual,kg,3f63fba6-7b6f-3294-a275-0ad83e91ba5b +2010,Tucuman,I.3.1,2.5834107599999996,TJ,CH4,3.0,kg/TJ,7.750232279999999,Gas Oil combustion consumption by petrochemical industries,AR-T,SESCO,annual,kg,f34fe109-114c-36a6-9c65-a7b33d8009da +2010,Tucuman,I.3.1,2.5834107599999996,TJ,N2O,0.6,kg/TJ,1.5500464559999998,Gas Oil combustion consumption by petrochemical industries,AR-T,SESCO,annual,kg,6eaf76c0-d199-305e-8494-fdb5dda19f2c +2010,Córdoba,I.3.1,1.1999064,TJ,CO2,74100.0,kg/TJ,88913.06423999999,Diesel Oil combustion consumption by petrochemical industries,AR-X,SESCO,annual,kg,ee8147fa-ef75-3fd2-a868-5e00e13dc002 +2010,Córdoba,I.3.1,1.1999064,TJ,CH4,3.0,kg/TJ,3.5997192,Diesel Oil combustion consumption by petrochemical industries,AR-X,SESCO,annual,kg,976dfa48-2d7b-3c45-8038-fe76f47e4080 +2010,Córdoba,I.3.1,1.1999064,TJ,N2O,0.6,kg/TJ,0.7199438399999999,Diesel Oil combustion consumption by petrochemical industries,AR-X,SESCO,annual,kg,ddd5c2db-bda3-3b60-83e0-abe903e33d0f +2010,Córdoba,I.3.1,0.0299796,TJ,CO2,74100.0,kg/TJ,2221.48836,Gas Oil combustion consumption by petrochemical industries,AR-X,SESCO,annual,kg,4b1ca251-8ed2-3d4a-a252-40fc40f53c9d +2010,Córdoba,I.3.1,0.0299796,TJ,CH4,3.0,kg/TJ,0.0899388,Gas Oil combustion consumption by petrochemical industries,AR-X,SESCO,annual,kg,fa3d6cf3-d1a6-341c-be63-a2857aff0ae6 +2010,Córdoba,I.3.1,0.0299796,TJ,N2O,0.6,kg/TJ,0.01798776,Gas Oil combustion consumption by petrochemical industries,AR-X,SESCO,annual,kg,cda8b2f4-181d-3228-8fe1-40671346de15 +2010,Buenos Aires,I.3.1,410.73542399999997,TJ,CO2,69300.0,kg/TJ,28463964.883199997,Motor Gasoline combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,c05f3763-d40a-3e0a-8a9f-bc04a707f044 +2010,Buenos Aires,I.3.1,410.73542399999997,TJ,CH4,3.0,kg/TJ,1232.206272,Motor Gasoline combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,ab1b8b1f-d218-3d6d-8178-35f48960b690 +2010,Buenos Aires,I.3.1,410.73542399999997,TJ,N2O,0.6,kg/TJ,246.44125439999996,Motor Gasoline combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,d51b8931-dd94-328d-802e-17c43098aea8 +2010,Chaco,I.3.1,16.930574,TJ,CO2,69300.0,kg/TJ,1173288.7782,Motor Gasoline combustion consumption by petrochemical industries,AR-H,SESCO,annual,kg,5bb412ca-ffff-3f67-a1f4-ae751ab86442 +2010,Chaco,I.3.1,16.930574,TJ,CH4,3.0,kg/TJ,50.791722,Motor Gasoline combustion consumption by petrochemical industries,AR-H,SESCO,annual,kg,816ef94a-3abb-3584-b7e2-722c253a1ee1 +2010,Chaco,I.3.1,16.930574,TJ,N2O,0.6,kg/TJ,10.158344399999999,Motor Gasoline combustion consumption by petrochemical industries,AR-H,SESCO,annual,kg,9c6a8af8-b1c6-39f1-abf4-62f166102903 +2010,Córdoba,I.3.1,44.023125,TJ,CO2,69300.0,kg/TJ,3050802.5625,Motor Gasoline combustion consumption by petrochemical industries,AR-X,SESCO,annual,kg,c1a8ff75-8c82-386a-9c37-bfd410897334 +2010,Córdoba,I.3.1,44.023125,TJ,CH4,3.0,kg/TJ,132.069375,Motor Gasoline combustion consumption by petrochemical industries,AR-X,SESCO,annual,kg,a3ef6e0c-1014-31be-ad1f-5cbc3b8ff572 +2010,Córdoba,I.3.1,44.023125,TJ,N2O,0.6,kg/TJ,26.413875,Motor Gasoline combustion consumption by petrochemical industries,AR-X,SESCO,annual,kg,946fe760-dc9c-3ea0-a32d-c32f48ae9a4d +2010,Santa Fe,I.3.1,26.752326999999998,TJ,CO2,69300.0,kg/TJ,1853936.2610999998,Motor Gasoline combustion consumption by petrochemical industries,AR-S,SESCO,annual,kg,2f4972bf-c7b9-3b76-9887-1dd2f430017f +2010,Santa Fe,I.3.1,26.752326999999998,TJ,CH4,3.0,kg/TJ,80.256981,Motor Gasoline combustion consumption by petrochemical industries,AR-S,SESCO,annual,kg,92ae9366-9e19-39e1-a8e7-c8a140c701e4 +2010,Santa Fe,I.3.1,26.752326999999998,TJ,N2O,0.6,kg/TJ,16.0513962,Motor Gasoline combustion consumption by petrochemical industries,AR-S,SESCO,annual,kg,58f9fd60-7050-3923-8f8e-ac010835663f +2010,Buenos Aires,I.3.1,0.18059999999999998,TJ,CO2,74100.0,kg/TJ,13382.46,Gas Oil combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,fccbff91-77d2-3d8a-863d-228e27cb5f68 +2010,Buenos Aires,I.3.1,0.18059999999999998,TJ,CH4,3.0,kg/TJ,0.5418,Gas Oil combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,7555ac37-4bb1-3e7f-9746-6fe968874b03 +2010,Buenos Aires,I.3.1,0.18059999999999998,TJ,N2O,0.6,kg/TJ,0.10835999999999998,Gas Oil combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,bbf29b8f-14ed-36c6-af4e-fabe01bfed5d +2010,Capital Federal,I.3.1,1.37256,TJ,CO2,74100.0,kg/TJ,101706.696,Gas Oil combustion consumption by petrochemical industries,AR-C,SESCO,annual,kg,3de08342-2466-3a68-ba16-d7420fb24112 +2010,Capital Federal,I.3.1,1.37256,TJ,CH4,3.0,kg/TJ,4.11768,Gas Oil combustion consumption by petrochemical industries,AR-C,SESCO,annual,kg,8bdb37bc-b8c0-3e8d-8779-39171e7c3bb9 +2010,Capital Federal,I.3.1,1.37256,TJ,N2O,0.6,kg/TJ,0.8235359999999999,Gas Oil combustion consumption by petrochemical industries,AR-C,SESCO,annual,kg,0a8294a5-fba1-3fa2-b554-a9095be49ddd +2010,Capital Federal,I.3.1,0.18059999999999998,TJ,CO2,74100.0,kg/TJ,13382.46,Gas Oil combustion consumption by petrochemical industries,AR-C,SESCO,annual,kg,9f325c73-2b72-3859-b004-63b6b18ea35b +2010,Capital Federal,I.3.1,0.18059999999999998,TJ,CH4,3.0,kg/TJ,0.5418,Gas Oil combustion consumption by petrochemical industries,AR-C,SESCO,annual,kg,512c0c82-2d25-3d10-9921-019283502209 +2010,Capital Federal,I.3.1,0.18059999999999998,TJ,N2O,0.6,kg/TJ,0.10835999999999998,Gas Oil combustion consumption by petrochemical industries,AR-C,SESCO,annual,kg,96d424a4-ac17-3d1f-957c-ba08c2dfad49 +2010,Buenos Aires,I.3.1,22.107607199999997,TJ,CO2,74100.0,kg/TJ,1638173.6935199997,Gas Oil combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,d704a869-39a2-3a53-bf43-2c3a5851816b +2010,Buenos Aires,I.3.1,22.107607199999997,TJ,CH4,3.0,kg/TJ,66.3228216,Gas Oil combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,0c76b863-273e-3030-92a9-3f1f7198780f +2010,Buenos Aires,I.3.1,22.107607199999997,TJ,N2O,0.6,kg/TJ,13.264564319999998,Gas Oil combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,8dabef8d-0b1c-33f9-bcce-af8b60e79881 +2011,Buenos Aires,I.3.1,33.715697785,TJ,CO2,73300.0,kg/TJ,2471360.6476405,Naphtha combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,a1dfd5af-0ad6-3690-a638-9ced10d43a2c +2011,Buenos Aires,I.3.1,33.715697785,TJ,CH4,3.0,kg/TJ,101.14709335500001,Naphtha combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,956779ec-aa98-3163-94a5-ba7917923c4c +2011,Buenos Aires,I.3.1,33.715697785,TJ,N2O,0.6,kg/TJ,20.229418671,Naphtha combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,1b3e041a-c029-3310-90ed-4375d7879341 +2011,Buenos Aires,I.3.1,127.42717799999998,TJ,CO2,69300.0,kg/TJ,8830703.435399998,Motor Gasoline combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,ff7b3470-6172-324d-b7ca-100dd793ec06 +2011,Buenos Aires,I.3.1,127.42717799999998,TJ,CH4,3.0,kg/TJ,382.28153399999997,Motor Gasoline combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,f96debdb-a5a8-3cb7-8578-71116871bff6 +2011,Buenos Aires,I.3.1,127.42717799999998,TJ,N2O,0.6,kg/TJ,76.4563068,Motor Gasoline combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,22dfd4b1-20ef-3b5f-b361-79eebeb8aa33 +2011,Santa Fe,I.3.1,1.142054,TJ,CO2,69300.0,kg/TJ,79144.3422,Motor Gasoline combustion consumption by petrochemical industries,AR-S,SESCO,annual,kg,c2fe842b-bbed-3ea6-8113-2a4da97b8bc1 +2011,Santa Fe,I.3.1,1.142054,TJ,CH4,3.0,kg/TJ,3.4261619999999997,Motor Gasoline combustion consumption by petrochemical industries,AR-S,SESCO,annual,kg,4e4d6540-71d5-3560-bb00-5a9fc34f9fac +2011,Santa Fe,I.3.1,1.142054,TJ,N2O,0.6,kg/TJ,0.6852324,Motor Gasoline combustion consumption by petrochemical industries,AR-S,SESCO,annual,kg,713e213e-7cb8-31a7-a07e-22b644d9b56a +2011,Santa Fe,I.3.1,6.119967474999999,TJ,CO2,71500.0,kg/TJ,437577.67446249997,Jet Kerosene combustion consumption by petrochemical industries,AR-S,SESCO,annual,kg,68f2a48d-d66b-3396-8da7-9c815c26fd09 +2011,Santa Fe,I.3.1,6.119967474999999,TJ,CH4,3.0,kg/TJ,18.359902424999998,Jet Kerosene combustion consumption by petrochemical industries,AR-S,SESCO,annual,kg,bff3d18a-835c-3cfa-a8c4-32eb12694e98 +2011,Santa Fe,I.3.1,6.119967474999999,TJ,N2O,0.6,kg/TJ,3.6719804849999993,Jet Kerosene combustion consumption by petrochemical industries,AR-S,SESCO,annual,kg,f4113da3-1fb2-3649-905f-1d7bccec3383 +2011,La Pampa,I.3.1,12.890180519999998,TJ,CO2,74100.0,kg/TJ,955162.3765319998,Gas Oil combustion consumption by petrochemical industries,AR-L,SESCO,annual,kg,51149317-b843-3b6c-a825-27cb6f316a72 +2011,La Pampa,I.3.1,12.890180519999998,TJ,CH4,3.0,kg/TJ,38.67054155999999,Gas Oil combustion consumption by petrochemical industries,AR-L,SESCO,annual,kg,732c94d6-8b63-34ca-94c8-71d1cb72f695 +2011,La Pampa,I.3.1,12.890180519999998,TJ,N2O,0.6,kg/TJ,7.734108311999998,Gas Oil combustion consumption by petrochemical industries,AR-L,SESCO,annual,kg,ebb9bf1a-891e-3b3a-b6c8-0f2deb75ce3b +2011,La Pampa,I.3.1,0.549507805,TJ,CO2,73300.0,kg/TJ,40278.922106499995,Naphtha combustion consumption by petrochemical industries,AR-L,SESCO,annual,kg,b6a406c8-c2f1-3d8f-b402-fad51aa8875c +2011,La Pampa,I.3.1,0.549507805,TJ,CH4,3.0,kg/TJ,1.6485234149999999,Naphtha combustion consumption by petrochemical industries,AR-L,SESCO,annual,kg,da329a0f-b663-3e83-9046-21e5477721ac +2011,La Pampa,I.3.1,0.549507805,TJ,N2O,0.6,kg/TJ,0.32970468299999994,Naphtha combustion consumption by petrochemical industries,AR-L,SESCO,annual,kg,0bce7c7c-aeef-37b5-8b90-321615bc3f55 +2011,La Pampa,I.3.1,0.6847860249999999,TJ,CO2,73300.0,kg/TJ,50194.81563249999,Naphtha combustion consumption by petrochemical industries,AR-L,SESCO,annual,kg,60f7041c-ab15-3ac8-acf8-9f4da058b885 +2011,La Pampa,I.3.1,0.6847860249999999,TJ,CH4,3.0,kg/TJ,2.0543580749999997,Naphtha combustion consumption by petrochemical industries,AR-L,SESCO,annual,kg,0015bddd-da5e-39a4-85af-d98931e8ed2b +2011,La Pampa,I.3.1,0.6847860249999999,TJ,N2O,0.6,kg/TJ,0.4108716149999999,Naphtha combustion consumption by petrochemical industries,AR-L,SESCO,annual,kg,a58b336e-3455-3cc7-8110-e5e916cb317a +2011,Buenos Aires,I.3.1,143.27816099999998,TJ,CO2,69300.0,kg/TJ,9929176.5573,Motor Gasoline combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,3affc3de-a8a9-38d9-973c-fef252324aa3 +2011,Buenos Aires,I.3.1,143.27816099999998,TJ,CH4,3.0,kg/TJ,429.834483,Motor Gasoline combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,ea309250-007f-3a9a-a45c-e2b036f8b232 +2011,Buenos Aires,I.3.1,143.27816099999998,TJ,N2O,0.6,kg/TJ,85.96689659999998,Motor Gasoline combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,6d0abccb-ffd9-3aad-887f-bdd306452aa4 +2011,Chaco,I.3.1,1.1907839999999998,TJ,CO2,69300.0,kg/TJ,82521.33119999999,Motor Gasoline combustion consumption by petrochemical industries,AR-H,SESCO,annual,kg,197a70a4-3497-3639-bcea-9f9bdc41817c +2011,Chaco,I.3.1,1.1907839999999998,TJ,CH4,3.0,kg/TJ,3.5723519999999995,Motor Gasoline combustion consumption by petrochemical industries,AR-H,SESCO,annual,kg,cab0d27a-b926-33ee-89aa-a090e2c3a978 +2011,Chaco,I.3.1,1.1907839999999998,TJ,N2O,0.6,kg/TJ,0.7144703999999998,Motor Gasoline combustion consumption by petrochemical industries,AR-H,SESCO,annual,kg,e5f7293d-37c1-363c-a802-296428da50c2 +2011,Santa Fe,I.3.1,14.936187999999996,TJ,CO2,69300.0,kg/TJ,1035077.8283999998,Motor Gasoline combustion consumption by petrochemical industries,AR-S,SESCO,annual,kg,65d9e673-073c-366a-a236-8dcf7eeaceda +2011,Santa Fe,I.3.1,14.936187999999996,TJ,CH4,3.0,kg/TJ,44.80856399999999,Motor Gasoline combustion consumption by petrochemical industries,AR-S,SESCO,annual,kg,7f64c564-a3e0-3687-b4e3-dc6d41f71c51 +2011,Santa Fe,I.3.1,14.936187999999996,TJ,N2O,0.6,kg/TJ,8.961712799999997,Motor Gasoline combustion consumption by petrochemical industries,AR-S,SESCO,annual,kg,93f432c2-6860-3840-856a-a9caeaaa474d +2011,Buenos Aires,I.3.1,74.9113,TJ,CO2,69300.0,kg/TJ,5191353.09,Motor Gasoline combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,c2a75594-d16f-38b8-bc01-588c20324ede +2011,Buenos Aires,I.3.1,74.9113,TJ,CH4,3.0,kg/TJ,224.7339,Motor Gasoline combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,aeb59113-9a04-3d4e-b10b-32d975d3fe98 +2011,Buenos Aires,I.3.1,74.9113,TJ,N2O,0.6,kg/TJ,44.94678,Motor Gasoline combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,305bd213-504a-3e4a-b1fc-f55dae904cee +2011,Capital Federal,I.3.1,2.3478,TJ,CO2,74100.0,kg/TJ,173971.97999999998,Gas Oil combustion consumption by petrochemical industries,AR-C,SESCO,annual,kg,46f5160d-9457-38c3-87d8-ec2203319c46 +2011,Capital Federal,I.3.1,2.3478,TJ,CH4,3.0,kg/TJ,7.0434,Gas Oil combustion consumption by petrochemical industries,AR-C,SESCO,annual,kg,02ae970b-ec54-3591-b0b4-b5ec294b202c +2011,Capital Federal,I.3.1,2.3478,TJ,N2O,0.6,kg/TJ,1.40868,Gas Oil combustion consumption by petrochemical industries,AR-C,SESCO,annual,kg,3ff0feb0-7237-3e81-b0e7-e43fa3a476d3 +2012,Buenos Aires,I.3.1,85.7648,TJ,CO2,69300.0,kg/TJ,5943500.64,Motor Gasoline combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,becb83b2-cd78-3286-8131-20766b8af396 +2012,Buenos Aires,I.3.1,85.7648,TJ,CH4,3.0,kg/TJ,257.2944,Motor Gasoline combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,4de19472-915e-3f21-8129-15811e715ec1 +2012,Buenos Aires,I.3.1,85.7648,TJ,N2O,0.6,kg/TJ,51.45887999999999,Motor Gasoline combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,508cccb4-36ee-3e72-ba97-69bd22cab968 +2012,Buenos Aires,I.3.1,9.058463999999999,TJ,CO2,71500.0,kg/TJ,647680.176,Jet Kerosene combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,a87b8989-5a69-32d1-9a2c-328e8e6024f1 +2012,Buenos Aires,I.3.1,9.058463999999999,TJ,CH4,3.0,kg/TJ,27.175391999999995,Jet Kerosene combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,4aff30af-96b1-3515-a52f-f09fb75da097 +2012,Buenos Aires,I.3.1,9.058463999999999,TJ,N2O,0.6,kg/TJ,5.435078399999999,Jet Kerosene combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,b4fa34dd-a21b-3b23-ae0b-7eb3587133d5 +2012,Buenos Aires,I.3.1,117.23153299999998,TJ,CO2,69300.0,kg/TJ,8124145.236899999,Motor Gasoline combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,ac070f10-be0c-3887-9caf-919009cb71d2 +2012,Buenos Aires,I.3.1,117.23153299999998,TJ,CH4,3.0,kg/TJ,351.6945989999999,Motor Gasoline combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,794990f4-c8aa-3a52-974e-d0c3e5d06c46 +2012,Buenos Aires,I.3.1,117.23153299999998,TJ,N2O,0.6,kg/TJ,70.33891979999999,Motor Gasoline combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,5177c902-90f5-3f8d-aee6-7ef1b155ea16 +2012,Santa Fe,I.3.1,17.485653,TJ,CO2,69300.0,kg/TJ,1211755.7529,Motor Gasoline combustion consumption by petrochemical industries,AR-S,SESCO,annual,kg,c0f64b2d-92f0-342a-95de-e4fe7a158728 +2012,Santa Fe,I.3.1,17.485653,TJ,CH4,3.0,kg/TJ,52.456959,Motor Gasoline combustion consumption by petrochemical industries,AR-S,SESCO,annual,kg,430326c4-fae1-3c66-8bf9-fe3dc604eca5 +2012,Santa Fe,I.3.1,17.485653,TJ,N2O,0.6,kg/TJ,10.491391799999999,Motor Gasoline combustion consumption by petrochemical industries,AR-S,SESCO,annual,kg,3a1099e3-3d38-3973-8d63-b3b0f87c76cf +2012,Tucuman,I.3.1,26.792196999999998,TJ,CO2,69300.0,kg/TJ,1856699.2521,Motor Gasoline combustion consumption by petrochemical industries,AR-T,SESCO,annual,kg,f6db3d68-35f9-391d-8c5e-f7df05fcc874 +2012,Tucuman,I.3.1,26.792196999999998,TJ,CH4,3.0,kg/TJ,80.37659099999999,Motor Gasoline combustion consumption by petrochemical industries,AR-T,SESCO,annual,kg,c2eaf327-838a-3a8b-968b-d0f297f32ec9 +2012,Tucuman,I.3.1,26.792196999999998,TJ,N2O,0.6,kg/TJ,16.075318199999998,Motor Gasoline combustion consumption by petrochemical industries,AR-T,SESCO,annual,kg,0f0da85c-510d-305f-8107-17a2e3b75fa7 +2012,Buenos Aires,I.3.1,145.92419999999998,TJ,CO2,69300.0,kg/TJ,10112547.059999999,Motor Gasoline combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,1aa2180f-4d32-3364-a7ec-b3b6c69c1592 +2012,Buenos Aires,I.3.1,145.92419999999998,TJ,CH4,3.0,kg/TJ,437.77259999999995,Motor Gasoline combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,62d13b0e-e819-3fc2-bbbf-245e8c343c40 +2012,Buenos Aires,I.3.1,145.92419999999998,TJ,N2O,0.6,kg/TJ,87.55451999999998,Motor Gasoline combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,9bf6e1c4-97e6-325d-b77b-15f7e8c57fdd +2012,Capital Federal,I.3.1,2.709,TJ,CO2,74100.0,kg/TJ,200736.9,Gas Oil combustion consumption by petrochemical industries,AR-C,SESCO,annual,kg,e7d2fda0-3cf5-3e94-b273-2f0f41aaa38f +2012,Capital Federal,I.3.1,2.709,TJ,CH4,3.0,kg/TJ,8.127,Gas Oil combustion consumption by petrochemical industries,AR-C,SESCO,annual,kg,2011dca0-115a-34b8-93dc-16c07a06eaad +2012,Capital Federal,I.3.1,2.709,TJ,N2O,0.6,kg/TJ,1.6254,Gas Oil combustion consumption by petrochemical industries,AR-C,SESCO,annual,kg,d99473ea-f897-34a3-99ab-4a2e7fd411d9 +2012,Entre Rios,I.3.1,2.60064,TJ,CO2,74100.0,kg/TJ,192707.424,Gas Oil combustion consumption by petrochemical industries,AR-E,SESCO,annual,kg,4959a717-02f5-394f-a6cc-a260ef46ef63 +2012,Entre Rios,I.3.1,2.60064,TJ,CH4,3.0,kg/TJ,7.801919999999999,Gas Oil combustion consumption by petrochemical industries,AR-E,SESCO,annual,kg,1d47be69-fd72-348c-8087-b99bc9844f9b +2012,Entre Rios,I.3.1,2.60064,TJ,N2O,0.6,kg/TJ,1.5603839999999998,Gas Oil combustion consumption by petrochemical industries,AR-E,SESCO,annual,kg,058a6fdc-e9fd-3fb9-99d9-9fc3c8e85af6 +2013,Buenos Aires,I.3.1,69.888123,TJ,CO2,69300.0,kg/TJ,4843246.9239,Motor Gasoline combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,260a6289-7a22-3cc9-90b8-2342910ed24d +2013,Buenos Aires,I.3.1,69.888123,TJ,CH4,3.0,kg/TJ,209.66436899999997,Motor Gasoline combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,b893490e-4788-3047-b941-be1401737da1 +2013,Buenos Aires,I.3.1,69.888123,TJ,N2O,0.6,kg/TJ,41.932873799999996,Motor Gasoline combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,9c1a7c94-f400-3b52-b03b-b3fda70c27c5 +2013,Buenos Aires,I.3.1,11.95572,TJ,CO2,74100.0,kg/TJ,885918.852,Gas Oil combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,c97e21ae-5372-328b-bc99-93861368c70c +2013,Buenos Aires,I.3.1,11.95572,TJ,CH4,3.0,kg/TJ,35.86716,Gas Oil combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,56d18f36-8c75-3a7a-9903-1ab4a931b4cf +2013,Buenos Aires,I.3.1,11.95572,TJ,N2O,0.6,kg/TJ,7.173431999999999,Gas Oil combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,b97aac26-fd3f-3d91-a62c-3877c36768ff +2013,Buenos Aires,I.3.1,4.04544,TJ,CO2,74100.0,kg/TJ,299767.104,Gas Oil combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,ba3a4b67-855b-3723-8189-0f92c1a118f3 +2013,Buenos Aires,I.3.1,4.04544,TJ,CH4,3.0,kg/TJ,12.136320000000001,Gas Oil combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,bd1cfa62-673d-389f-8b3a-b6ba368b4d2f +2013,Buenos Aires,I.3.1,4.04544,TJ,N2O,0.6,kg/TJ,2.427264,Gas Oil combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,49f39d6f-f651-3ed4-ad43-13d1f9b20fcc +2013,Buenos Aires,I.3.1,19.154135,TJ,CO2,73300.0,kg/TJ,1403998.0955,Naphtha combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,3b76a6a6-ce10-35ea-a7f9-959f63aba21b +2013,Buenos Aires,I.3.1,19.154135,TJ,CH4,3.0,kg/TJ,57.462405000000004,Naphtha combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,36f3a397-e9c0-319b-bddd-cd06e4097d02 +2013,Buenos Aires,I.3.1,19.154135,TJ,N2O,0.6,kg/TJ,11.492481,Naphtha combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,261dbb67-8e16-3fc2-a5df-78530f26499b +2013,Buenos Aires,I.3.1,1.541925,TJ,CO2,73300.0,kg/TJ,113023.1025,Naphtha combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,c7aaa0e2-fbad-3de6-8b98-12ad6f598433 +2013,Buenos Aires,I.3.1,1.541925,TJ,CH4,3.0,kg/TJ,4.625775,Naphtha combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,dec46fea-36c4-314e-a134-86b1088edcff +2013,Buenos Aires,I.3.1,1.541925,TJ,N2O,0.6,kg/TJ,0.925155,Naphtha combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,1d6021f4-734c-32a1-ae2b-2a7442c7c229 +2013,Córdoba,I.3.1,28.086643,TJ,CO2,69300.0,kg/TJ,1946404.3598999998,Motor Gasoline combustion consumption by petrochemical industries,AR-X,SESCO,annual,kg,6830ab01-d902-36f0-b092-4e2c4b3b718b +2013,Córdoba,I.3.1,28.086643,TJ,CH4,3.0,kg/TJ,84.259929,Motor Gasoline combustion consumption by petrochemical industries,AR-X,SESCO,annual,kg,80c75451-e4fd-3a71-b3d9-7c794528370f +2013,Córdoba,I.3.1,28.086643,TJ,N2O,0.6,kg/TJ,16.851985799999998,Motor Gasoline combustion consumption by petrochemical industries,AR-X,SESCO,annual,kg,624ec27c-9c2e-389c-8987-7743725e1add +2013,Buenos Aires,I.3.1,52.88091,TJ,CO2,69300.0,kg/TJ,3664647.063,Motor Gasoline combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,f1605a02-9c4b-37ad-9146-d1fa42571eff +2013,Buenos Aires,I.3.1,52.88091,TJ,CH4,3.0,kg/TJ,158.64273,Motor Gasoline combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,9b3c100a-9473-3f2c-b861-7459381570f9 +2013,Buenos Aires,I.3.1,52.88091,TJ,N2O,0.6,kg/TJ,31.728545999999998,Motor Gasoline combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,f097b45f-4c2b-3681-9f8c-778c73ca4019 +2013,Santa Fe,I.3.1,4.663904,TJ,CO2,69300.0,kg/TJ,323208.5472,Motor Gasoline combustion consumption by petrochemical industries,AR-S,SESCO,annual,kg,036afb20-974a-37a7-a3ff-7dff43c75529 +2013,Santa Fe,I.3.1,4.663904,TJ,CH4,3.0,kg/TJ,13.991712,Motor Gasoline combustion consumption by petrochemical industries,AR-S,SESCO,annual,kg,4787363a-8bdc-3cbb-aae8-76f5fdc435db +2013,Santa Fe,I.3.1,4.663904,TJ,N2O,0.6,kg/TJ,2.7983423999999997,Motor Gasoline combustion consumption by petrochemical industries,AR-S,SESCO,annual,kg,2a658f50-989a-3348-9b5d-a8a74fcd1b46 +2013,Buenos Aires,I.3.1,438.25791625,TJ,CO2,73300.0,kg/TJ,32124305.261125,Naphtha combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,99fb115b-4fe9-3613-8e1d-68f0101c95f2 +2013,Buenos Aires,I.3.1,438.25791625,TJ,CH4,3.0,kg/TJ,1314.7737487499999,Naphtha combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,12e2a0f1-e941-3616-b8a8-80c6394b1978 +2013,Buenos Aires,I.3.1,438.25791625,TJ,N2O,0.6,kg/TJ,262.95474974999996,Naphtha combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,72ff5b46-f0b0-302d-a50f-0df9fbe7ffd3 +2013,Buenos Aires,I.3.1,183.0033,TJ,CO2,69300.0,kg/TJ,12682128.69,Motor Gasoline combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,3ad2e17f-04be-3897-a12c-f18a9e630a7b +2013,Buenos Aires,I.3.1,183.0033,TJ,CH4,3.0,kg/TJ,549.0099,Motor Gasoline combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,e9b1b49d-9739-3d19-a696-70e8a9cb2a32 +2013,Buenos Aires,I.3.1,183.0033,TJ,N2O,0.6,kg/TJ,109.80198,Motor Gasoline combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,08b70b2f-f58f-3493-bfb8-4c671042de61 +2013,Capital Federal,I.3.1,2.5284,TJ,CO2,74100.0,kg/TJ,187354.44,Gas Oil combustion consumption by petrochemical industries,AR-C,SESCO,annual,kg,74be579b-9890-31f4-bb19-0d781fab6c12 +2013,Capital Federal,I.3.1,2.5284,TJ,CH4,3.0,kg/TJ,7.5852,Gas Oil combustion consumption by petrochemical industries,AR-C,SESCO,annual,kg,b3a3bd59-b6c5-3ae8-a2ff-21868db22c27 +2013,Capital Federal,I.3.1,2.5284,TJ,N2O,0.6,kg/TJ,1.51704,Gas Oil combustion consumption by petrochemical industries,AR-C,SESCO,annual,kg,892861fc-67cd-3bf5-8d26-e6b308271ae0 +2013,Neuquén,I.3.1,2.704958,TJ,CO2,70000.0,kg/TJ,189347.06,Aviation Gasoline combustion consumption by petrochemical industries,AR-Q,SESCO,annual,kg,f8df5035-2af2-3104-83a4-e55e92e0b11d +2013,Neuquén,I.3.1,2.704958,TJ,CH4,3.0,kg/TJ,8.114874,Aviation Gasoline combustion consumption by petrochemical industries,AR-Q,SESCO,annual,kg,62e817e3-e65e-3ef5-b763-09f6f78089ef +2013,Neuquén,I.3.1,2.704958,TJ,N2O,0.6,kg/TJ,1.6229748,Aviation Gasoline combustion consumption by petrochemical industries,AR-Q,SESCO,annual,kg,58015497-2a8e-3968-bbba-116af32fd1ca +2013,Neuquén,I.3.1,0.5418,TJ,CO2,74100.0,kg/TJ,40147.38,Gas Oil combustion consumption by petrochemical industries,AR-Q,SESCO,annual,kg,6b57dee5-386c-38ae-825d-d1d37961b6b1 +2013,Neuquén,I.3.1,0.5418,TJ,CH4,3.0,kg/TJ,1.6254,Gas Oil combustion consumption by petrochemical industries,AR-Q,SESCO,annual,kg,7f7f636c-c727-3851-a8bd-ba20818eee7e +2013,Neuquén,I.3.1,0.5418,TJ,N2O,0.6,kg/TJ,0.32508,Gas Oil combustion consumption by petrochemical industries,AR-Q,SESCO,annual,kg,064176e9-5c26-3b74-9cef-874d9a85c4ca +2013,Neuquén,I.3.1,2.31168,TJ,CO2,74100.0,kg/TJ,171295.48799999998,Gas Oil combustion consumption by petrochemical industries,AR-Q,SESCO,annual,kg,f8941dab-21f1-3c31-af4c-ce83a95ca389 +2013,Neuquén,I.3.1,2.31168,TJ,CH4,3.0,kg/TJ,6.93504,Gas Oil combustion consumption by petrochemical industries,AR-Q,SESCO,annual,kg,cd018c53-d850-3b5b-bd69-45fdf5b600c9 +2013,Neuquén,I.3.1,2.31168,TJ,N2O,0.6,kg/TJ,1.387008,Gas Oil combustion consumption by petrochemical industries,AR-Q,SESCO,annual,kg,10c1bbfc-052f-316a-a286-52b36379756a +2013,Neuquén,I.3.1,0.34265,TJ,CO2,73300.0,kg/TJ,25116.245,Naphtha combustion consumption by petrochemical industries,AR-Q,SESCO,annual,kg,cc9659bd-fd9e-3954-a942-d4c69b694bd9 +2013,Neuquén,I.3.1,0.34265,TJ,CH4,3.0,kg/TJ,1.0279500000000001,Naphtha combustion consumption by petrochemical industries,AR-Q,SESCO,annual,kg,02b618c0-7015-3770-a725-950bf27a104d +2013,Neuquén,I.3.1,0.34265,TJ,N2O,0.6,kg/TJ,0.20559,Naphtha combustion consumption by petrochemical industries,AR-Q,SESCO,annual,kg,bd910ab9-75a4-3557-96fb-6dac7d3d7b6b +2014,Buenos Aires,I.3.1,31.674499999999995,TJ,CO2,69300.0,kg/TJ,2195042.8499999996,Motor Gasoline combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,ffa54a30-0261-32b1-a24f-6b9ec7a5f546 +2014,Buenos Aires,I.3.1,31.674499999999995,TJ,CH4,3.0,kg/TJ,95.02349999999998,Motor Gasoline combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,1b4cef76-40f2-31ab-9636-45195a9567a7 +2014,Buenos Aires,I.3.1,31.674499999999995,TJ,N2O,0.6,kg/TJ,19.004699999999996,Motor Gasoline combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,69b15568-014e-38d5-a21e-ec8363ea7b22 +2014,Buenos Aires,I.3.1,33.483239999999995,TJ,CO2,74100.0,kg/TJ,2481108.084,Gas Oil combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,c73a79c2-e516-3d2c-b0e0-dc376854d6f9 +2014,Buenos Aires,I.3.1,33.483239999999995,TJ,CH4,3.0,kg/TJ,100.44971999999999,Gas Oil combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,dc57695b-9f5e-328c-991c-4c394929079b +2014,Buenos Aires,I.3.1,33.483239999999995,TJ,N2O,0.6,kg/TJ,20.089943999999996,Gas Oil combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,18cf2caa-f0d0-363e-ba29-04ea0c956b61 +2014,Buenos Aires,I.3.1,13.870472,TJ,CO2,73300.0,kg/TJ,1016705.5976,Naphtha combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,3e02a665-1344-3508-bb28-ff95a9511748 +2014,Buenos Aires,I.3.1,13.870472,TJ,CH4,3.0,kg/TJ,41.611416,Naphtha combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,355a1f12-dd5d-3129-b961-cb453c99490e +2014,Buenos Aires,I.3.1,13.870472,TJ,N2O,0.6,kg/TJ,8.3222832,Naphtha combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,612fd046-4523-33c3-a721-9390ae70bd8c +2014,Córdoba,I.3.1,2.843995,TJ,CO2,73300.0,kg/TJ,208464.8335,Naphtha combustion consumption by petrochemical industries,AR-X,SESCO,annual,kg,8c99b0e5-c9a5-344d-8c24-0cc055b371ae +2014,Córdoba,I.3.1,2.843995,TJ,CH4,3.0,kg/TJ,8.531985,Naphtha combustion consumption by petrochemical industries,AR-X,SESCO,annual,kg,a82594ee-c733-3d68-a702-a7ed38103928 +2014,Córdoba,I.3.1,2.843995,TJ,N2O,0.6,kg/TJ,1.706397,Naphtha combustion consumption by petrochemical industries,AR-X,SESCO,annual,kg,711d1e93-88f2-3929-981b-8dfa8b22c234 +2014,Buenos Aires,I.3.1,0.513975,TJ,CO2,73300.0,kg/TJ,37674.3675,Naphtha combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,0d58afc5-40dc-32fb-9df8-3c48919c3468 +2014,Buenos Aires,I.3.1,0.513975,TJ,CH4,3.0,kg/TJ,1.541925,Naphtha combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,d5434efe-2934-3016-8d1b-613a19444f15 +2014,Buenos Aires,I.3.1,0.513975,TJ,N2O,0.6,kg/TJ,0.30838499999999996,Naphtha combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,9eaa2f0e-5227-3a4a-9e52-15a887bf10fe +2014,Buenos Aires,I.3.1,2.2504399999999998,TJ,CO2,69300.0,kg/TJ,155955.492,Motor Gasoline combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,e19bf225-cc69-38da-9081-4622ff7a8b35 +2014,Buenos Aires,I.3.1,2.2504399999999998,TJ,CH4,3.0,kg/TJ,6.75132,Motor Gasoline combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,5f702c99-e279-3f3e-b45a-6c47b5f62339 +2014,Buenos Aires,I.3.1,2.2504399999999998,TJ,N2O,0.6,kg/TJ,1.350264,Motor Gasoline combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,200cb4ab-f49c-3caf-ab7b-640d1662f5ee +2014,Córdoba,I.3.1,66.67327199999998,TJ,CO2,69300.0,kg/TJ,4620457.749599999,Motor Gasoline combustion consumption by petrochemical industries,AR-X,SESCO,annual,kg,ee348b32-c17d-3a8f-98c8-e71f399948ce +2014,Córdoba,I.3.1,66.67327199999998,TJ,CH4,3.0,kg/TJ,200.01981599999993,Motor Gasoline combustion consumption by petrochemical industries,AR-X,SESCO,annual,kg,cc91da7c-e416-3b47-a0b1-bfba9ad793da +2014,Córdoba,I.3.1,66.67327199999998,TJ,N2O,0.6,kg/TJ,40.00396319999999,Motor Gasoline combustion consumption by petrochemical industries,AR-X,SESCO,annual,kg,52179520-fc35-3c7c-90b9-5d7c80e9ba15 +2014,Buenos Aires,I.3.1,469.62546784999995,TJ,CO2,73300.0,kg/TJ,34423546.793405,Naphtha combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,c7b9ba90-53b4-3fc9-9d48-6bdd8db7b259 +2014,Buenos Aires,I.3.1,469.62546784999995,TJ,CH4,3.0,kg/TJ,1408.8764035499998,Naphtha combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,d12eff2f-5fbd-3ed0-9a49-497f860f585c +2014,Buenos Aires,I.3.1,469.62546784999995,TJ,N2O,0.6,kg/TJ,281.77528070999995,Naphtha combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,0076c34a-cad2-36f4-8aea-f7eeac57caef +2014,Buenos Aires,I.3.1,42.1736,TJ,CO2,69300.0,kg/TJ,2922630.48,Motor Gasoline combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,138ad2f2-a7b4-3cd7-a5d8-3b4240a041a6 +2014,Buenos Aires,I.3.1,42.1736,TJ,CH4,3.0,kg/TJ,126.52080000000001,Motor Gasoline combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,ec563490-fc8a-3f43-8b28-382f5cc6d59d +2014,Buenos Aires,I.3.1,42.1736,TJ,N2O,0.6,kg/TJ,25.30416,Motor Gasoline combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,5c781770-e657-347f-8736-57cf159a70e8 +2014,Capital Federal,I.3.1,2.9257199999999997,TJ,CO2,74100.0,kg/TJ,216795.85199999998,Gas Oil combustion consumption by petrochemical industries,AR-C,SESCO,annual,kg,844e5aac-1eb5-351b-b0e9-525c9b411dbd +2014,Capital Federal,I.3.1,2.9257199999999997,TJ,CH4,3.0,kg/TJ,8.777159999999999,Gas Oil combustion consumption by petrochemical industries,AR-C,SESCO,annual,kg,e455137f-8316-34ad-9491-18287e66f7a0 +2014,Capital Federal,I.3.1,2.9257199999999997,TJ,N2O,0.6,kg/TJ,1.7554319999999997,Gas Oil combustion consumption by petrochemical industries,AR-C,SESCO,annual,kg,6fe13a51-fa35-384e-94a7-8c63128443f3 +2015,Buenos Aires,I.3.1,64.72229999999999,TJ,CO2,69300.0,kg/TJ,4485255.39,Motor Gasoline combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,2967acd0-2a1e-317f-9fc8-3ac21bc55be5 +2015,Buenos Aires,I.3.1,64.72229999999999,TJ,CH4,3.0,kg/TJ,194.16689999999997,Motor Gasoline combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,541930d1-f31c-34a7-a16a-f81c85dbfa58 +2015,Buenos Aires,I.3.1,64.72229999999999,TJ,N2O,0.6,kg/TJ,38.83337999999999,Motor Gasoline combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,7c4d34ff-e34f-3e2f-a2ab-2ce34dd4f744 +2015,Buenos Aires,I.3.1,1830.59772,TJ,CO2,74100.0,kg/TJ,135647291.052,Gas Oil combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,c8b46d57-fd2b-3e4a-8891-b729ed3a1939 +2015,Buenos Aires,I.3.1,1830.59772,TJ,CH4,3.0,kg/TJ,5491.79316,Gas Oil combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,9a5f54d8-dcba-3d39-ab4d-85ad77d12a0f +2015,Buenos Aires,I.3.1,1830.59772,TJ,N2O,0.6,kg/TJ,1098.358632,Gas Oil combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,5badeffe-d957-378d-aa54-e0ea211ed4c8 +2015,Buenos Aires,I.3.1,116.88431999999999,TJ,CO2,74100.0,kg/TJ,8661128.112,Gas Oil combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,60ef1ac7-0388-3535-a7d1-bffe45e00b8f +2015,Buenos Aires,I.3.1,116.88431999999999,TJ,CH4,3.0,kg/TJ,350.65295999999995,Gas Oil combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,cb587723-d48a-3504-bf91-763eff2e6ec4 +2015,Buenos Aires,I.3.1,116.88431999999999,TJ,N2O,0.6,kg/TJ,70.130592,Gas Oil combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,131e5e1e-2fe5-3f26-8bf2-64d476ee39b3 +2015,Buenos Aires,I.3.1,5.850257999999999,TJ,CO2,71500.0,kg/TJ,418293.4469999999,Jet Kerosene combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,4fd13449-99c4-39f5-96a5-cb136c369a50 +2015,Buenos Aires,I.3.1,5.850257999999999,TJ,CH4,3.0,kg/TJ,17.550773999999997,Jet Kerosene combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,55a574ee-63af-3bdd-b500-55c7fe1486cc +2015,Buenos Aires,I.3.1,5.850257999999999,TJ,N2O,0.6,kg/TJ,3.5101547999999996,Jet Kerosene combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,57f25e47-283a-3286-8ee1-a7f9070732fb +2015,Buenos Aires,I.3.1,562.734095,TJ,CO2,73300.0,kg/TJ,41248409.1635,Naphtha combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,07ee884b-dacf-3d8a-95d3-6eee350a2e32 +2015,Buenos Aires,I.3.1,562.734095,TJ,CH4,3.0,kg/TJ,1688.202285,Naphtha combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,2d01ca25-a90c-3b6a-88ba-e71949181166 +2015,Buenos Aires,I.3.1,562.734095,TJ,N2O,0.6,kg/TJ,337.640457,Naphtha combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,f0aa7380-6e34-39bb-88b2-e08624edc2b4 +2015,Buenos Aires,I.3.1,48.553505,TJ,CO2,73300.0,kg/TJ,3558971.9165000003,Naphtha combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,4d3e6ad3-95f3-3e8c-8bc4-f8754d86c720 +2015,Buenos Aires,I.3.1,48.553505,TJ,CH4,3.0,kg/TJ,145.660515,Naphtha combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,b11fd33d-4466-324d-961c-7d344d2d897c +2015,Buenos Aires,I.3.1,48.553505,TJ,N2O,0.6,kg/TJ,29.132103,Naphtha combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,b93c6662-cf52-3393-b077-601f5c858fea +2015,Buenos Aires,I.3.1,4.479616,TJ,CO2,69300.0,kg/TJ,310437.3888,Motor Gasoline combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,04b7bc36-0cb4-3760-84db-00c25532068c +2015,Buenos Aires,I.3.1,4.479616,TJ,CH4,3.0,kg/TJ,13.438848,Motor Gasoline combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,020a9e21-bd12-38a8-80d7-20b0af22a545 +2015,Buenos Aires,I.3.1,4.479616,TJ,N2O,0.6,kg/TJ,2.6877695999999998,Motor Gasoline combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,59120422-7996-30da-b2af-799012c57022 +2015,Buenos Aires,I.3.1,1309.0782204499997,TJ,CO2,73300.0,kg/TJ,95955433.55898498,Naphtha combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,a5bd06bf-fc14-3f24-9862-088db96b6c2c +2015,Buenos Aires,I.3.1,1309.0782204499997,TJ,CH4,3.0,kg/TJ,3927.234661349999,Naphtha combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,a2a184df-6800-3ef7-9f48-fb565cc1472f +2015,Buenos Aires,I.3.1,1309.0782204499997,TJ,N2O,0.6,kg/TJ,785.4469322699998,Naphtha combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,1e35ff17-1957-3540-bcea-1a915a987f06 +2015,Buenos Aires,I.3.1,41.5091,TJ,CO2,69300.0,kg/TJ,2876580.63,Motor Gasoline combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,0743bd13-7a4e-3d4f-9e84-b54595a3fed3 +2015,Buenos Aires,I.3.1,41.5091,TJ,CH4,3.0,kg/TJ,124.5273,Motor Gasoline combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,6f3a5b41-185f-3b2f-9f49-4c273408e345 +2015,Buenos Aires,I.3.1,41.5091,TJ,N2O,0.6,kg/TJ,24.905459999999998,Motor Gasoline combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,524a2787-41a6-33e3-909e-ca19e0e85252 +2015,Buenos Aires,I.3.1,1.0836,TJ,CO2,74100.0,kg/TJ,80294.76,Gas Oil combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,55176457-cb25-3049-8c4f-35d4c082a082 +2015,Buenos Aires,I.3.1,1.0836,TJ,CH4,3.0,kg/TJ,3.2508,Gas Oil combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,5434ef6f-4312-3865-ac2b-9a54ab2b5bed +2015,Buenos Aires,I.3.1,1.0836,TJ,N2O,0.6,kg/TJ,0.65016,Gas Oil combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,46bcfc91-1927-3cfe-8fb9-05fd769757dc +2015,Capital Federal,I.3.1,2.3478,TJ,CO2,74100.0,kg/TJ,173971.97999999998,Gas Oil combustion consumption by petrochemical industries,AR-C,SESCO,annual,kg,46f5160d-9457-38c3-87d8-ec2203319c46 +2015,Capital Federal,I.3.1,2.3478,TJ,CH4,3.0,kg/TJ,7.0434,Gas Oil combustion consumption by petrochemical industries,AR-C,SESCO,annual,kg,02ae970b-ec54-3591-b0b4-b5ec294b202c +2015,Capital Federal,I.3.1,2.3478,TJ,N2O,0.6,kg/TJ,1.40868,Gas Oil combustion consumption by petrochemical industries,AR-C,SESCO,annual,kg,3ff0feb0-7237-3e81-b0e7-e43fa3a476d3 +2016,Buenos Aires,I.3.1,19.5363,TJ,CO2,69300.0,kg/TJ,1353865.59,Motor Gasoline combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,67776745-117d-36bb-8a97-0c0d6922fc37 +2016,Buenos Aires,I.3.1,19.5363,TJ,CH4,3.0,kg/TJ,58.608900000000006,Motor Gasoline combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,ad5745fa-8e64-36b6-8d5a-4954751dd113 +2016,Buenos Aires,I.3.1,19.5363,TJ,N2O,0.6,kg/TJ,11.72178,Motor Gasoline combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,0d659777-a9d3-3a10-a98c-dad80c27f9cf +2016,Buenos Aires,I.3.1,9.318959999999999,TJ,CO2,74100.0,kg/TJ,690534.9359999999,Gas Oil combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,a696f293-9ec8-32a1-9784-f5091083715a +2016,Buenos Aires,I.3.1,9.318959999999999,TJ,CH4,3.0,kg/TJ,27.956879999999998,Gas Oil combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,bbcf613e-5e37-3556-9fa5-26502761f044 +2016,Buenos Aires,I.3.1,9.318959999999999,TJ,N2O,0.6,kg/TJ,5.5913759999999995,Gas Oil combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,9e1dc308-c873-3d5a-a797-ca8247b2bca6 +2016,San Luis,I.3.1,2.6367599999999998,TJ,CO2,74100.0,kg/TJ,195383.916,Gas Oil combustion consumption by petrochemical industries,AR-D,SESCO,annual,kg,9c8989c5-eb6b-3868-b307-2149eca7b4c9 +2016,San Luis,I.3.1,2.6367599999999998,TJ,CH4,3.0,kg/TJ,7.910279999999999,Gas Oil combustion consumption by petrochemical industries,AR-D,SESCO,annual,kg,79460aa2-ee94-347d-8279-440bdce5f440 +2016,San Luis,I.3.1,2.6367599999999998,TJ,N2O,0.6,kg/TJ,1.582056,Gas Oil combustion consumption by petrochemical industries,AR-D,SESCO,annual,kg,97563799-db9b-386b-a0de-5c2fca576b10 +2016,Capital Federal,I.3.1,2.799317,TJ,CO2,71500.0,kg/TJ,200151.16549999997,Jet Kerosene combustion consumption by petrochemical industries,AR-C,SESCO,annual,kg,328b56c0-33ee-3cb1-8765-01d729dfd36e +2016,Capital Federal,I.3.1,2.799317,TJ,CH4,3.0,kg/TJ,8.397950999999999,Jet Kerosene combustion consumption by petrochemical industries,AR-C,SESCO,annual,kg,43ebb573-ffbc-3088-adf4-fb83e991c79e +2016,Capital Federal,I.3.1,2.799317,TJ,N2O,0.6,kg/TJ,1.6795901999999998,Jet Kerosene combustion consumption by petrochemical industries,AR-C,SESCO,annual,kg,f9f262ca-989a-3356-aea3-f2b14eaaacdd +2016,Buenos Aires,I.3.1,28.017535,TJ,CO2,69300.0,kg/TJ,1941615.1755,Motor Gasoline combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,0f4164ce-e8d6-3d2b-b83b-6972085a17ed +2016,Buenos Aires,I.3.1,28.017535,TJ,CH4,3.0,kg/TJ,84.052605,Motor Gasoline combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,d463775b-c946-341e-83ed-17cd88604164 +2016,Buenos Aires,I.3.1,28.017535,TJ,N2O,0.6,kg/TJ,16.810520999999998,Motor Gasoline combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,cfb4393d-b4b2-394b-bf1c-84f4c2974e62 +2016,Buenos Aires,I.3.1,1240.74832805,TJ,CO2,73300.0,kg/TJ,90946852.44606501,Naphtha combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,e4de054b-1e54-39ef-bbdc-21bd0625feac +2016,Buenos Aires,I.3.1,1240.74832805,TJ,CH4,3.0,kg/TJ,3722.24498415,Naphtha combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,7e0473bd-fba9-342d-9f45-41a1efd9d792 +2016,Buenos Aires,I.3.1,1240.74832805,TJ,N2O,0.6,kg/TJ,744.44899683,Naphtha combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,61694da0-e738-318b-a5ea-654a0323265d +2016,Buenos Aires,I.3.1,18.9604,TJ,CO2,69300.0,kg/TJ,1313955.72,Motor Gasoline combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,a0737e12-179b-305e-8caf-f24f7efbbb7f +2016,Buenos Aires,I.3.1,18.9604,TJ,CH4,3.0,kg/TJ,56.8812,Motor Gasoline combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,d847da44-6725-3855-a133-cf3e431d3753 +2016,Buenos Aires,I.3.1,18.9604,TJ,N2O,0.6,kg/TJ,11.37624,Motor Gasoline combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,2842c178-726c-31f1-8eab-f8c9257d8bc4 +2016,Capital Federal,I.3.1,2.31168,TJ,CO2,74100.0,kg/TJ,171295.48799999998,Gas Oil combustion consumption by petrochemical industries,AR-C,SESCO,annual,kg,fbf8fb9b-c812-3757-ab22-0aa463c99018 +2016,Capital Federal,I.3.1,2.31168,TJ,CH4,3.0,kg/TJ,6.93504,Gas Oil combustion consumption by petrochemical industries,AR-C,SESCO,annual,kg,9186dff6-8ec6-3e5c-9fdc-d345ca5f2d2b +2016,Capital Federal,I.3.1,2.31168,TJ,N2O,0.6,kg/TJ,1.387008,Gas Oil combustion consumption by petrochemical industries,AR-C,SESCO,annual,kg,1b4ae7c9-d341-3d34-b634-fdd7105f1b8b +2017,San Luis,I.3.1,9.10224,TJ,CO2,74100.0,kg/TJ,674475.984,Gas Oil combustion consumption by petrochemical industries,AR-D,SESCO,annual,kg,d49ae266-0b4a-32f4-9538-7536f1c4a2e5 +2017,San Luis,I.3.1,9.10224,TJ,CH4,3.0,kg/TJ,27.30672,Gas Oil combustion consumption by petrochemical industries,AR-D,SESCO,annual,kg,4e72ce10-0dba-3264-860d-f3806c269f60 +2017,San Luis,I.3.1,9.10224,TJ,N2O,0.6,kg/TJ,5.4613439999999995,Gas Oil combustion consumption by petrochemical industries,AR-D,SESCO,annual,kg,f72a830d-b966-3530-a1ac-14c6445c7380 +2017,Capital Federal,I.3.1,10.316583999999999,TJ,CO2,71500.0,kg/TJ,737635.7559999999,Jet Kerosene combustion consumption by petrochemical industries,AR-C,SESCO,annual,kg,47cd41f8-913b-3271-808a-18b4d60238fb +2017,Capital Federal,I.3.1,10.316583999999999,TJ,CH4,3.0,kg/TJ,30.949751999999997,Jet Kerosene combustion consumption by petrochemical industries,AR-C,SESCO,annual,kg,597d370b-8b08-314e-91a7-b6bc9e397282 +2017,Capital Federal,I.3.1,10.316583999999999,TJ,N2O,0.6,kg/TJ,6.189950399999999,Jet Kerosene combustion consumption by petrochemical industries,AR-C,SESCO,annual,kg,51d33187-a94a-3805-9572-fd8abfc373a4 +2017,Santa Cruz,I.3.1,39.098419080000006,TJ,CO2,74100.0,kg/TJ,2897192.8538280004,Gas Oil combustion consumption by petrochemical industries,AR-Z,SESCO,annual,kg,38b89409-ece1-3d5e-a20e-fd37228457ea +2017,Santa Cruz,I.3.1,39.098419080000006,TJ,CH4,3.0,kg/TJ,117.29525724000001,Gas Oil combustion consumption by petrochemical industries,AR-Z,SESCO,annual,kg,b0a4d2ea-0dfd-3478-b7ff-24d069d3c735 +2017,Santa Cruz,I.3.1,39.098419080000006,TJ,N2O,0.6,kg/TJ,23.459051448000004,Gas Oil combustion consumption by petrochemical industries,AR-Z,SESCO,annual,kg,f9f6b719-34f1-3ddf-a69d-47f1267314f3 +2017,Santa Cruz,I.3.1,0.18164747999999997,TJ,CO2,74100.0,kg/TJ,13460.078267999997,Gas Oil combustion consumption by petrochemical industries,AR-Z,SESCO,annual,kg,8f04b000-ebee-3fad-a254-72beaf4ccf13 +2017,Santa Cruz,I.3.1,0.18164747999999997,TJ,CH4,3.0,kg/TJ,0.5449424399999999,Gas Oil combustion consumption by petrochemical industries,AR-Z,SESCO,annual,kg,989ef071-eebe-3dab-8abb-8882051aa174 +2017,Santa Cruz,I.3.1,0.18164747999999997,TJ,N2O,0.6,kg/TJ,0.10898848799999998,Gas Oil combustion consumption by petrochemical industries,AR-Z,SESCO,annual,kg,e68ccb64-9426-3b71-b3af-cd981380edef +2017,Santa Cruz,I.3.1,0.41316737,TJ,CO2,73300.0,kg/TJ,30285.168221,Naphtha combustion consumption by petrochemical industries,AR-Z,SESCO,annual,kg,9312622e-68ef-315a-a3b2-830747be94b7 +2017,Santa Cruz,I.3.1,0.41316737,TJ,CH4,3.0,kg/TJ,1.2395021099999999,Naphtha combustion consumption by petrochemical industries,AR-Z,SESCO,annual,kg,9d5e696a-15af-336a-a004-3b06ca37e89e +2017,Santa Cruz,I.3.1,0.41316737,TJ,N2O,0.6,kg/TJ,0.24790042199999998,Naphtha combustion consumption by petrochemical industries,AR-Z,SESCO,annual,kg,f9cedf50-9428-32d5-89d8-4712e9fbb7ad +2017,Buenos Aires,I.3.1,46.30679,TJ,CO2,69300.0,kg/TJ,3209060.547,Motor Gasoline combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,5cb15411-0fb8-31a1-a365-5a4bfcb7443d +2017,Buenos Aires,I.3.1,46.30679,TJ,CH4,3.0,kg/TJ,138.92037,Motor Gasoline combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,8ff2a866-4f9e-34aa-ab3b-37b44101c219 +2017,Buenos Aires,I.3.1,46.30679,TJ,N2O,0.6,kg/TJ,27.784074,Motor Gasoline combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,584c132c-c3f1-3bc6-bcc4-2fcc780ecb47 +2017,Buenos Aires,I.3.1,144.86111254999997,TJ,CO2,73300.0,kg/TJ,10618319.549914999,Naphtha combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,9803b159-5702-3b70-8a2b-e05dc238bb72 +2017,Buenos Aires,I.3.1,144.86111254999997,TJ,CH4,3.0,kg/TJ,434.5833376499999,Naphtha combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,f071a5ab-070a-3649-b1c4-c53aa051b39f +2017,Buenos Aires,I.3.1,144.86111254999997,TJ,N2O,0.6,kg/TJ,86.91666752999998,Naphtha combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,e3980ee2-aae0-3303-bfdb-cef2721f69a7 +2017,Buenos Aires,I.3.1,12.0496,TJ,CO2,69300.0,kg/TJ,835037.28,Motor Gasoline combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,0c23bba5-392f-320f-8e11-2270b4fa00fd +2017,Buenos Aires,I.3.1,12.0496,TJ,CH4,3.0,kg/TJ,36.1488,Motor Gasoline combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,22b4a0d6-bb95-332b-ae47-ecc71bdf20a4 +2017,Buenos Aires,I.3.1,12.0496,TJ,N2O,0.6,kg/TJ,7.22976,Motor Gasoline combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,aac2063a-0566-3c77-bbd1-844ebf48df31 +2017,Capital Federal,I.3.1,2.5284,TJ,CO2,74100.0,kg/TJ,187354.44,Gas Oil combustion consumption by petrochemical industries,AR-C,SESCO,annual,kg,74be579b-9890-31f4-bb19-0d781fab6c12 +2017,Capital Federal,I.3.1,2.5284,TJ,CH4,3.0,kg/TJ,7.5852,Gas Oil combustion consumption by petrochemical industries,AR-C,SESCO,annual,kg,b3a3bd59-b6c5-3ae8-a2ff-21868db22c27 +2017,Capital Federal,I.3.1,2.5284,TJ,N2O,0.6,kg/TJ,1.51704,Gas Oil combustion consumption by petrochemical industries,AR-C,SESCO,annual,kg,892861fc-67cd-3bf5-8d26-e6b308271ae0 +2018,San Luis,I.3.1,3.90096,TJ,CO2,74100.0,kg/TJ,289061.136,Gas Oil combustion consumption by petrochemical industries,AR-D,SESCO,annual,kg,1068470e-690c-32df-a951-9a99e115df7a +2018,San Luis,I.3.1,3.90096,TJ,CH4,3.0,kg/TJ,11.70288,Gas Oil combustion consumption by petrochemical industries,AR-D,SESCO,annual,kg,4ca96629-f718-3e46-b19f-250534b79a5b +2018,San Luis,I.3.1,3.90096,TJ,N2O,0.6,kg/TJ,2.340576,Gas Oil combustion consumption by petrochemical industries,AR-D,SESCO,annual,kg,3a31e200-9710-38d4-a0c1-bc2b500f8c5a +2018,Capital Federal,I.3.1,2.51624,TJ,CO2,71500.0,kg/TJ,179911.15999999997,Jet Kerosene combustion consumption by petrochemical industries,AR-C,SESCO,annual,kg,3f0c2fab-ed26-3a66-b74c-609eb76cf471 +2018,Capital Federal,I.3.1,2.51624,TJ,CH4,3.0,kg/TJ,7.548719999999999,Jet Kerosene combustion consumption by petrochemical industries,AR-C,SESCO,annual,kg,d87e8113-3d16-3841-98d7-7cafe389e3db +2018,Capital Federal,I.3.1,2.51624,TJ,N2O,0.6,kg/TJ,1.5097439999999998,Jet Kerosene combustion consumption by petrochemical industries,AR-C,SESCO,annual,kg,fe58e32a-c7a2-318a-abaf-4c16a6b4420d +2018,San Luis,I.3.1,5.30964,TJ,CO2,74100.0,kg/TJ,393444.324,Gas Oil combustion consumption by petrochemical industries,AR-D,SESCO,annual,kg,f6a38ac4-24c7-3e1f-992a-65cd619eb287 +2018,San Luis,I.3.1,5.30964,TJ,CH4,3.0,kg/TJ,15.92892,Gas Oil combustion consumption by petrochemical industries,AR-D,SESCO,annual,kg,0e207ede-1c87-35e0-a419-03e8085dc0d3 +2018,San Luis,I.3.1,5.30964,TJ,N2O,0.6,kg/TJ,3.185784,Gas Oil combustion consumption by petrochemical industries,AR-D,SESCO,annual,kg,5791d9b3-d3c8-3085-8320-5d336af1571f +2018,Capital Federal,I.3.1,2.20171,TJ,CO2,71500.0,kg/TJ,157422.26499999998,Jet Kerosene combustion consumption by petrochemical industries,AR-C,SESCO,annual,kg,4395b925-557e-3a41-8502-31b192ed04fd +2018,Capital Federal,I.3.1,2.20171,TJ,CH4,3.0,kg/TJ,6.605129999999999,Jet Kerosene combustion consumption by petrochemical industries,AR-C,SESCO,annual,kg,bb657e57-16cd-38c8-96b1-4e43d4a500aa +2018,Capital Federal,I.3.1,2.20171,TJ,N2O,0.6,kg/TJ,1.3210259999999998,Jet Kerosene combustion consumption by petrochemical industries,AR-C,SESCO,annual,kg,88fdc312-1be7-3099-b038-587be422092d +2018,Buenos Aires,I.3.1,33.777864,TJ,CO2,69300.0,kg/TJ,2340805.9752,Motor Gasoline combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,ffadf701-35ea-3e03-bd0a-8da4c93ed175 +2018,Buenos Aires,I.3.1,33.777864,TJ,CH4,3.0,kg/TJ,101.33359200000001,Motor Gasoline combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,81295ed5-def5-38ff-86fa-b73f5a6769af +2018,Buenos Aires,I.3.1,33.777864,TJ,N2O,0.6,kg/TJ,20.2667184,Motor Gasoline combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,954650f2-0fff-34bd-96da-b5608248973d +2018,Capital Federal,I.3.1,1.30032,TJ,CO2,74100.0,kg/TJ,96353.712,Gas Oil combustion consumption by petrochemical industries,AR-C,SESCO,annual,kg,effc26e8-1e44-3feb-89c8-1931c98daa56 +2018,Capital Federal,I.3.1,1.30032,TJ,CH4,3.0,kg/TJ,3.9009599999999995,Gas Oil combustion consumption by petrochemical industries,AR-C,SESCO,annual,kg,85b89b6f-aa07-3a54-aa06-59cf67683103 +2018,Capital Federal,I.3.1,1.30032,TJ,N2O,0.6,kg/TJ,0.7801919999999999,Gas Oil combustion consumption by petrochemical industries,AR-C,SESCO,annual,kg,e649779f-b78a-3802-8571-477ae4de4a85 +2019,Buenos Aires,I.3.1,27.234479999999998,TJ,CO2,74100.0,kg/TJ,2018074.9679999999,Gas Oil combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,42e3c708-5be6-3955-b9d0-1e43173d8e4a +2019,Buenos Aires,I.3.1,27.234479999999998,TJ,CH4,3.0,kg/TJ,81.70344,Gas Oil combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,779d070f-aa55-3493-8067-16db76da7b1b +2019,Buenos Aires,I.3.1,27.234479999999998,TJ,N2O,0.6,kg/TJ,16.340687999999997,Gas Oil combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,6e887437-fb52-3871-a3c3-62f008b82bea +2019,Capital Federal,I.3.1,1.4447999999999999,TJ,CO2,74100.0,kg/TJ,107059.68,Gas Oil combustion consumption by petrochemical industries,AR-C,SESCO,annual,kg,bacc9905-1153-32b2-8303-b1ad786252e3 +2019,Capital Federal,I.3.1,1.4447999999999999,TJ,CH4,3.0,kg/TJ,4.3344,Gas Oil combustion consumption by petrochemical industries,AR-C,SESCO,annual,kg,1bbb706e-4fe0-3b29-9ca1-a842e7b3e517 +2019,Capital Federal,I.3.1,1.4447999999999999,TJ,N2O,0.6,kg/TJ,0.8668799999999999,Gas Oil combustion consumption by petrochemical industries,AR-C,SESCO,annual,kg,ad7af4ad-ad81-3d0c-91b2-3aa3b7360f60 +2019,Buenos Aires,I.3.1,5.276809999999999,TJ,CO2,73300.0,kg/TJ,386790.17299999995,Naphtha combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,70c72495-c77d-3b67-9502-f685c0e2f2c9 +2019,Buenos Aires,I.3.1,5.276809999999999,TJ,CH4,3.0,kg/TJ,15.830429999999998,Naphtha combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,6b14320c-d4e1-3b7d-ae4d-e90254e34107 +2019,Buenos Aires,I.3.1,5.276809999999999,TJ,N2O,0.6,kg/TJ,3.1660859999999995,Naphtha combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,50d105d1-9816-3755-aa08-b5ccc9aa227b +2019,Buenos Aires,I.3.1,31.046768999999994,TJ,CO2,69300.0,kg/TJ,2151541.0916999998,Motor Gasoline combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,27c7b8a1-6182-3e38-92cd-6b41ee1e0bfb +2019,Buenos Aires,I.3.1,31.046768999999994,TJ,CH4,3.0,kg/TJ,93.14030699999998,Motor Gasoline combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,401a269a-20f0-30bc-8f6c-f652f03abb37 +2019,Buenos Aires,I.3.1,31.046768999999994,TJ,N2O,0.6,kg/TJ,18.628061399999996,Motor Gasoline combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,3c85451d-932b-3d9e-9964-8a41a79b6cb5 +2019,Capital Federal,I.3.1,1.6254,TJ,CO2,74100.0,kg/TJ,120442.14,Gas Oil combustion consumption by petrochemical industries,AR-C,SESCO,annual,kg,1dbfdf65-3f0c-3d37-ad5f-35cb95e15ada +2019,Capital Federal,I.3.1,1.6254,TJ,CH4,3.0,kg/TJ,4.8762,Gas Oil combustion consumption by petrochemical industries,AR-C,SESCO,annual,kg,e01491ef-2a74-344d-a009-58e28f53f974 +2019,Capital Federal,I.3.1,1.6254,TJ,N2O,0.6,kg/TJ,0.9752399999999999,Gas Oil combustion consumption by petrochemical industries,AR-C,SESCO,annual,kg,4e48569b-f0af-3258-b222-27180876e47b +2019,Neuquén,I.3.1,0.6530134799999999,TJ,CO2,74100.0,kg/TJ,48388.29886799999,Gas Oil combustion consumption by petrochemical industries,AR-Q,SESCO,annual,kg,e6d1e476-39bc-3557-b09c-b0d44915b467 +2019,Neuquén,I.3.1,0.6530134799999999,TJ,CH4,3.0,kg/TJ,1.9590404399999999,Gas Oil combustion consumption by petrochemical industries,AR-Q,SESCO,annual,kg,ce7c16aa-a5a6-38ce-9231-72d189255a56 +2019,Neuquén,I.3.1,0.6530134799999999,TJ,N2O,0.6,kg/TJ,0.39180808799999994,Gas Oil combustion consumption by petrochemical industries,AR-Q,SESCO,annual,kg,05e40115-28e7-3223-aaa8-3158594a08f2 +2019,Neuquén,I.3.1,4.158160544999999,TJ,CO2,73300.0,kg/TJ,304793.16794849996,Naphtha combustion consumption by petrochemical industries,AR-Q,SESCO,annual,kg,651c83d8-dfb9-343c-875f-eb3176527984 +2019,Neuquén,I.3.1,4.158160544999999,TJ,CH4,3.0,kg/TJ,12.474481634999998,Naphtha combustion consumption by petrochemical industries,AR-Q,SESCO,annual,kg,2cc0de76-6a10-38b3-a1c1-bd7c3846a525 +2019,Neuquén,I.3.1,4.158160544999999,TJ,N2O,0.6,kg/TJ,2.4948963269999997,Naphtha combustion consumption by petrochemical industries,AR-Q,SESCO,annual,kg,4329a72d-bb5a-3b01-b9e9-67cea193deda +2019,Neuquén,I.3.1,0.3439863349999999,TJ,CO2,73300.0,kg/TJ,25214.198355499993,Naphtha combustion consumption by petrochemical industries,AR-Q,SESCO,annual,kg,953aa405-1fda-3c89-b005-4c4fa921ab16 +2019,Neuquén,I.3.1,0.3439863349999999,TJ,CH4,3.0,kg/TJ,1.0319590049999998,Naphtha combustion consumption by petrochemical industries,AR-Q,SESCO,annual,kg,93ef1dd1-3913-3962-bb8d-1ef11f4874a0 +2019,Neuquén,I.3.1,0.3439863349999999,TJ,N2O,0.6,kg/TJ,0.20639180099999996,Naphtha combustion consumption by petrochemical industries,AR-Q,SESCO,annual,kg,b64834a8-8025-3609-a073-6bbdbc7071a9 +2020,Santa Fe,I.3.1,22.353337,TJ,CO2,69300.0,kg/TJ,1549086.2541,Motor Gasoline combustion consumption by petrochemical industries,AR-S,SESCO,annual,kg,f8cf024d-6b80-332e-bfa3-376e91a3d2be +2020,Santa Fe,I.3.1,22.353337,TJ,CH4,3.0,kg/TJ,67.060011,Motor Gasoline combustion consumption by petrochemical industries,AR-S,SESCO,annual,kg,096fbc4a-9125-3725-9ebc-90457fbe4f6a +2020,Santa Fe,I.3.1,22.353337,TJ,N2O,0.6,kg/TJ,13.4120022,Motor Gasoline combustion consumption by petrochemical industries,AR-S,SESCO,annual,kg,1d2861fa-0790-349e-8614-e2f749fb39ad +2020,Buenos Aires,I.3.1,11.59452,TJ,CO2,74100.0,kg/TJ,859153.9319999999,Gas Oil combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,42dbda09-c0b9-3e28-80fe-a2ed4b5c846f +2020,Buenos Aires,I.3.1,11.59452,TJ,CH4,3.0,kg/TJ,34.783559999999994,Gas Oil combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,28acefcf-de39-3cc4-849a-c9cce2c4e1fc +2020,Buenos Aires,I.3.1,11.59452,TJ,N2O,0.6,kg/TJ,6.956712,Gas Oil combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,a6c20b8f-d41b-3104-a878-51b9994b2c37 +2020,Capital Federal,I.3.1,1.2642,TJ,CO2,74100.0,kg/TJ,93677.22,Gas Oil combustion consumption by petrochemical industries,AR-C,SESCO,annual,kg,d8154348-900e-3622-a481-c899293659f7 +2020,Capital Federal,I.3.1,1.2642,TJ,CH4,3.0,kg/TJ,3.7926,Gas Oil combustion consumption by petrochemical industries,AR-C,SESCO,annual,kg,aab08a0b-9872-3024-ae46-8b1a8392eff5 +2020,Capital Federal,I.3.1,1.2642,TJ,N2O,0.6,kg/TJ,0.75852,Gas Oil combustion consumption by petrochemical industries,AR-C,SESCO,annual,kg,8a38b426-eb5c-384b-ac96-7b91e410d623 +2020,La Rioja,I.3.1,0.50568,TJ,CO2,74100.0,kg/TJ,37470.888,Gas Oil combustion consumption by petrochemical industries,AR-F,SESCO,annual,kg,60759001-0c8e-3de3-b13a-3fe4b9843bfc +2020,La Rioja,I.3.1,0.50568,TJ,CH4,3.0,kg/TJ,1.5170400000000002,Gas Oil combustion consumption by petrochemical industries,AR-F,SESCO,annual,kg,904ccdbe-825e-3d8c-b409-8cb1c574c2c2 +2020,La Rioja,I.3.1,0.50568,TJ,N2O,0.6,kg/TJ,0.303408,Gas Oil combustion consumption by petrochemical industries,AR-F,SESCO,annual,kg,ff51d51a-44fa-30c5-816f-e0c25da8b3ea +2020,Buenos Aires,I.3.1,0.50568,TJ,CO2,74100.0,kg/TJ,37470.888,Gas Oil combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,62beaf4d-b4af-3a6f-b946-c95ad8d1e0b7 +2020,Buenos Aires,I.3.1,0.50568,TJ,CH4,3.0,kg/TJ,1.5170400000000002,Gas Oil combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,1bf22369-9088-3429-8d2b-77e8c40e499e +2020,Buenos Aires,I.3.1,0.50568,TJ,N2O,0.6,kg/TJ,0.303408,Gas Oil combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,508bf9bd-f23a-3e05-bedb-dcebe17b03fd +2020,Buenos Aires,I.3.1,1.3706,TJ,CO2,73300.0,kg/TJ,100464.98,Naphtha combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,cd1a6c8f-eee0-30a4-9490-8b4c03e20128 +2020,Buenos Aires,I.3.1,1.3706,TJ,CH4,3.0,kg/TJ,4.111800000000001,Naphtha combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,4cf2fa53-7a34-38e4-a941-f8bffba7d1d2 +2020,Buenos Aires,I.3.1,1.3706,TJ,N2O,0.6,kg/TJ,0.82236,Naphtha combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,f5a19303-519a-30f0-8818-fed306415fb4 +2020,Buenos Aires,I.3.1,7.186789,TJ,CO2,69300.0,kg/TJ,498044.4777,Motor Gasoline combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,f629e6bd-1627-3383-acbc-e06ce31edfc1 +2020,Buenos Aires,I.3.1,7.186789,TJ,CH4,3.0,kg/TJ,21.560367,Motor Gasoline combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,ffcb2ceb-4015-3269-9146-29b7ba28a459 +2020,Buenos Aires,I.3.1,7.186789,TJ,N2O,0.6,kg/TJ,4.3120734,Motor Gasoline combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,1e543a39-1aa9-34e0-9e37-35d2894f8bd8 +2020,Jujuy,I.3.1,0.25284,TJ,CO2,74100.0,kg/TJ,18735.444,Gas Oil combustion consumption by petrochemical industries,AR-Y,SESCO,annual,kg,b9b84e85-9e59-376c-abd1-93dc30371bcf +2020,Jujuy,I.3.1,0.25284,TJ,CH4,3.0,kg/TJ,0.7585200000000001,Gas Oil combustion consumption by petrochemical industries,AR-Y,SESCO,annual,kg,a4a0d858-68f8-3ab2-8fa5-274b21365d32 +2020,Jujuy,I.3.1,0.25284,TJ,N2O,0.6,kg/TJ,0.151704,Gas Oil combustion consumption by petrochemical industries,AR-Y,SESCO,annual,kg,f2d6983e-7bae-3e2a-b028-07f5861c13ee +2020,Jujuy,I.3.1,3.460765,TJ,CO2,73300.0,kg/TJ,253674.0745,Naphtha combustion consumption by petrochemical industries,AR-Y,SESCO,annual,kg,1ec7f2c5-55cc-30b6-ac1f-4d2513859e8c +2020,Jujuy,I.3.1,3.460765,TJ,CH4,3.0,kg/TJ,10.382295,Naphtha combustion consumption by petrochemical industries,AR-Y,SESCO,annual,kg,d55b5dfd-e6f3-301d-a1e7-3bb0d91f13b0 +2020,Jujuy,I.3.1,3.460765,TJ,N2O,0.6,kg/TJ,2.076459,Naphtha combustion consumption by petrochemical industries,AR-Y,SESCO,annual,kg,d1603b8f-6859-3555-bd70-5ab3fc15c3d2 +2020,Buenos Aires,I.3.1,4.5629,TJ,CO2,69300.0,kg/TJ,316208.97,Motor Gasoline combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,94f76054-960d-3740-8e1c-62526446c784 +2020,Buenos Aires,I.3.1,4.5629,TJ,CH4,3.0,kg/TJ,13.6887,Motor Gasoline combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,42b2cf22-2b60-3000-a390-d7ef09902dec +2020,Buenos Aires,I.3.1,4.5629,TJ,N2O,0.6,kg/TJ,2.73774,Motor Gasoline combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,da2765db-7fb4-34ec-af6a-981823af551b +2020,Capital Federal,I.3.1,98.6118,TJ,CO2,69300.0,kg/TJ,6833797.74,Motor Gasoline combustion consumption by petrochemical industries,AR-C,SESCO,annual,kg,4d6b7cf9-640a-3ca2-b27c-c3422b79fa9a +2020,Capital Federal,I.3.1,98.6118,TJ,CH4,3.0,kg/TJ,295.8354,Motor Gasoline combustion consumption by petrochemical industries,AR-C,SESCO,annual,kg,df564e37-0144-35b8-8442-119eef670c5d +2020,Capital Federal,I.3.1,98.6118,TJ,N2O,0.6,kg/TJ,59.16708,Motor Gasoline combustion consumption by petrochemical industries,AR-C,SESCO,annual,kg,80a94bb7-8dbd-3758-a03e-dfd227b2e287 +2020,Córdoba,I.3.1,192.262,TJ,CO2,69300.0,kg/TJ,13323756.6,Motor Gasoline combustion consumption by petrochemical industries,AR-X,SESCO,annual,kg,9977d788-9388-3dc3-b9ad-0ce66c34d9f8 +2020,Córdoba,I.3.1,192.262,TJ,CH4,3.0,kg/TJ,576.7860000000001,Motor Gasoline combustion consumption by petrochemical industries,AR-X,SESCO,annual,kg,47269128-8c84-33c0-8752-9729a0c040af +2020,Córdoba,I.3.1,192.262,TJ,N2O,0.6,kg/TJ,115.35719999999999,Motor Gasoline combustion consumption by petrochemical industries,AR-X,SESCO,annual,kg,b126f530-8cd2-31db-bd39-15bacb2aed7f +2020,Entre Rios,I.3.1,28.086199999999998,TJ,CO2,69300.0,kg/TJ,1946373.66,Motor Gasoline combustion consumption by petrochemical industries,AR-E,SESCO,annual,kg,a6a7138f-ae3d-3d1f-b728-38fae6ccdb17 +2020,Entre Rios,I.3.1,28.086199999999998,TJ,CH4,3.0,kg/TJ,84.2586,Motor Gasoline combustion consumption by petrochemical industries,AR-E,SESCO,annual,kg,6d655a36-6401-371b-abbd-378897d386a0 +2020,Entre Rios,I.3.1,28.086199999999998,TJ,N2O,0.6,kg/TJ,16.851719999999997,Motor Gasoline combustion consumption by petrochemical industries,AR-E,SESCO,annual,kg,6e486101-04d8-349d-837c-afc248d9f666 +2020,Misiones,I.3.1,119.83149999999998,TJ,CO2,69300.0,kg/TJ,8304322.949999998,Motor Gasoline combustion consumption by petrochemical industries,AR-N,SESCO,annual,kg,930aadf7-aec1-336f-b78d-45bc89630dc5 +2020,Misiones,I.3.1,119.83149999999998,TJ,CH4,3.0,kg/TJ,359.4944999999999,Motor Gasoline combustion consumption by petrochemical industries,AR-N,SESCO,annual,kg,7d5aec60-cbf5-3b32-bc91-40fd4919f09b +2020,Misiones,I.3.1,119.83149999999998,TJ,N2O,0.6,kg/TJ,71.89889999999998,Motor Gasoline combustion consumption by petrochemical industries,AR-N,SESCO,annual,kg,ecc20f3a-7cc1-3909-9ba0-b9c95f976e06 +2020,Neuquén,I.3.1,13.9102,TJ,CO2,69300.0,kg/TJ,963976.86,Motor Gasoline combustion consumption by petrochemical industries,AR-Q,SESCO,annual,kg,4786eb58-44fe-36ef-a1bc-557c171366e8 +2020,Neuquén,I.3.1,13.9102,TJ,CH4,3.0,kg/TJ,41.730599999999995,Motor Gasoline combustion consumption by petrochemical industries,AR-Q,SESCO,annual,kg,fd373231-19c7-3eef-b6e2-21f6dba47935 +2020,Neuquén,I.3.1,13.9102,TJ,N2O,0.6,kg/TJ,8.346119999999999,Motor Gasoline combustion consumption by petrochemical industries,AR-Q,SESCO,annual,kg,31afc79e-68e2-38a0-9b09-ed41ceb491e2 +2020,Santa Fe,I.3.1,1.1961,TJ,CO2,69300.0,kg/TJ,82889.73,Motor Gasoline combustion consumption by petrochemical industries,AR-S,SESCO,annual,kg,8367c190-efcf-3ddc-b380-ba1dcf757ab2 +2020,Santa Fe,I.3.1,1.1961,TJ,CH4,3.0,kg/TJ,3.5883,Motor Gasoline combustion consumption by petrochemical industries,AR-S,SESCO,annual,kg,b67ab928-7c53-3054-9d69-f1ebc2ef63fe +2020,Santa Fe,I.3.1,1.1961,TJ,N2O,0.6,kg/TJ,0.71766,Motor Gasoline combustion consumption by petrochemical industries,AR-S,SESCO,annual,kg,dd37466f-d042-30e3-8f72-e6b4b587b76d +2020,Buenos Aires,I.3.1,70.86744,TJ,CO2,74100.0,kg/TJ,5251277.3040000005,Gas Oil combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,8214ce23-cfa3-3193-b60f-1a97865a7143 +2020,Buenos Aires,I.3.1,70.86744,TJ,CH4,3.0,kg/TJ,212.60232000000002,Gas Oil combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,eca94682-d348-3151-ab86-688cbbd7ae7d +2020,Buenos Aires,I.3.1,70.86744,TJ,N2O,0.6,kg/TJ,42.520464,Gas Oil combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,8a6a1ca6-2638-3063-a304-329f9db549e9 +2020,Capital Federal,I.3.1,5.0568,TJ,CO2,74100.0,kg/TJ,374708.88,Gas Oil combustion consumption by petrochemical industries,AR-C,SESCO,annual,kg,973aafdf-5f8c-3fc6-a349-0c2cbbef1f0c +2020,Capital Federal,I.3.1,5.0568,TJ,CH4,3.0,kg/TJ,15.1704,Gas Oil combustion consumption by petrochemical industries,AR-C,SESCO,annual,kg,54a7ce36-9bd2-3a1c-82e8-f5cdbf16e203 +2020,Capital Federal,I.3.1,5.0568,TJ,N2O,0.6,kg/TJ,3.03408,Gas Oil combustion consumption by petrochemical industries,AR-C,SESCO,annual,kg,8f26ab03-adde-3847-80ba-17e5d4591ea1 +2020,Córdoba,I.3.1,15.78444,TJ,CO2,74100.0,kg/TJ,1169627.004,Gas Oil combustion consumption by petrochemical industries,AR-X,SESCO,annual,kg,a9aa0d22-9414-3300-a956-f2d1499cbffb +2020,Córdoba,I.3.1,15.78444,TJ,CH4,3.0,kg/TJ,47.35332,Gas Oil combustion consumption by petrochemical industries,AR-X,SESCO,annual,kg,1c1b1d2a-5a30-382e-a7d0-b78aed20f1ab +2020,Córdoba,I.3.1,15.78444,TJ,N2O,0.6,kg/TJ,9.470664,Gas Oil combustion consumption by petrochemical industries,AR-X,SESCO,annual,kg,30a12d8a-ab8d-3ad0-9e4b-4515c081e64a +2020,Entre Rios,I.3.1,10.58316,TJ,CO2,74100.0,kg/TJ,784212.156,Gas Oil combustion consumption by petrochemical industries,AR-E,SESCO,annual,kg,6f783b40-754e-30ee-a0ef-2790ebfea410 +2020,Entre Rios,I.3.1,10.58316,TJ,CH4,3.0,kg/TJ,31.74948,Gas Oil combustion consumption by petrochemical industries,AR-E,SESCO,annual,kg,2eef217b-5946-39fb-ac1e-d37a9996117a +2020,Entre Rios,I.3.1,10.58316,TJ,N2O,0.6,kg/TJ,6.349895999999999,Gas Oil combustion consumption by petrochemical industries,AR-E,SESCO,annual,kg,c5ed1492-54fb-369e-8cf3-aa91339efe97 +2020,Jujuy,I.3.1,27.270599999999998,TJ,CO2,74100.0,kg/TJ,2020751.46,Gas Oil combustion consumption by petrochemical industries,AR-Y,SESCO,annual,kg,ddb8b773-7712-3c69-898b-e4b6c8bc177f +2020,Jujuy,I.3.1,27.270599999999998,TJ,CH4,3.0,kg/TJ,81.81179999999999,Gas Oil combustion consumption by petrochemical industries,AR-Y,SESCO,annual,kg,c0ba2e39-7997-3ffc-a92a-1d26a56ac0f1 +2020,Jujuy,I.3.1,27.270599999999998,TJ,N2O,0.6,kg/TJ,16.36236,Gas Oil combustion consumption by petrochemical industries,AR-Y,SESCO,annual,kg,8c9f8ae6-6884-3fd5-bc82-4fa815f3a47b +2020,Mendoza,I.3.1,9.10224,TJ,CO2,74100.0,kg/TJ,674475.984,Gas Oil combustion consumption by petrochemical industries,AR-M,SESCO,annual,kg,b3636ae9-eb78-34a2-bf42-3ee615ec0ee4 +2020,Mendoza,I.3.1,9.10224,TJ,CH4,3.0,kg/TJ,27.30672,Gas Oil combustion consumption by petrochemical industries,AR-M,SESCO,annual,kg,5421a82b-0537-34cc-a3d7-cccf4ca16d53 +2020,Mendoza,I.3.1,9.10224,TJ,N2O,0.6,kg/TJ,5.4613439999999995,Gas Oil combustion consumption by petrochemical industries,AR-M,SESCO,annual,kg,ea3dbd88-7f2d-345d-96ae-1026308c2e17 +2020,Misiones,I.3.1,9.10224,TJ,CO2,74100.0,kg/TJ,674475.984,Gas Oil combustion consumption by petrochemical industries,AR-N,SESCO,annual,kg,501330f5-f793-3bc5-9d4b-6ef6163a524b +2020,Misiones,I.3.1,9.10224,TJ,CH4,3.0,kg/TJ,27.30672,Gas Oil combustion consumption by petrochemical industries,AR-N,SESCO,annual,kg,9b1b7984-5cc4-34b9-984a-b0ed20f8fb93 +2020,Misiones,I.3.1,9.10224,TJ,N2O,0.6,kg/TJ,5.4613439999999995,Gas Oil combustion consumption by petrochemical industries,AR-N,SESCO,annual,kg,bbdae8d3-b502-39a6-955c-a7bb61964b36 +2020,Neuquén,I.3.1,63.82404,TJ,CO2,74100.0,kg/TJ,4729361.364,Gas Oil combustion consumption by petrochemical industries,AR-Q,SESCO,annual,kg,99af1ee8-2a8c-3e9d-871c-ece4b4020a88 +2020,Neuquén,I.3.1,63.82404,TJ,CH4,3.0,kg/TJ,191.47212,Gas Oil combustion consumption by petrochemical industries,AR-Q,SESCO,annual,kg,2d3a7782-d60b-33d9-b106-3372795e171b +2020,Neuquén,I.3.1,63.82404,TJ,N2O,0.6,kg/TJ,38.294424,Gas Oil combustion consumption by petrochemical industries,AR-Q,SESCO,annual,kg,f6cc5216-d5b8-3c26-915c-fc7b4a8a6f80 +2020,Salta,I.3.1,102.54468,TJ,CO2,74100.0,kg/TJ,7598560.788,Gas Oil combustion consumption by petrochemical industries,AR-A,SESCO,annual,kg,3e94a55c-1e70-3516-a50b-5c0d880688fa +2020,Salta,I.3.1,102.54468,TJ,CH4,3.0,kg/TJ,307.63404,Gas Oil combustion consumption by petrochemical industries,AR-A,SESCO,annual,kg,3b643995-d857-3b2b-8719-98b6390d7747 +2020,Salta,I.3.1,102.54468,TJ,N2O,0.6,kg/TJ,61.526807999999996,Gas Oil combustion consumption by petrochemical industries,AR-A,SESCO,annual,kg,b8a7fd82-450d-302a-99a8-6a7a208f74e6 +2020,San Juan,I.3.1,22.35828,TJ,CO2,74100.0,kg/TJ,1656748.548,Gas Oil combustion consumption by petrochemical industries,AR-J,SESCO,annual,kg,7ae2a0a0-a4d4-3a06-a5e8-d1e73ec81acd +2020,San Juan,I.3.1,22.35828,TJ,CH4,3.0,kg/TJ,67.07484,Gas Oil combustion consumption by petrochemical industries,AR-J,SESCO,annual,kg,6897019c-0e5f-3354-947f-0b15ca9ac929 +2020,San Juan,I.3.1,22.35828,TJ,N2O,0.6,kg/TJ,13.414968,Gas Oil combustion consumption by petrochemical industries,AR-J,SESCO,annual,kg,779a4df7-ea1b-31d5-8792-6d0517ec9486 +2020,Santa Fe,I.3.1,17.265359999999998,TJ,CO2,74100.0,kg/TJ,1279363.1759999997,Gas Oil combustion consumption by petrochemical industries,AR-S,SESCO,annual,kg,745e5c7f-23ff-39ac-8801-05844ae51e11 +2020,Santa Fe,I.3.1,17.265359999999998,TJ,CH4,3.0,kg/TJ,51.79607999999999,Gas Oil combustion consumption by petrochemical industries,AR-S,SESCO,annual,kg,a8975609-cef4-3821-81ea-beca40bc8825 +2020,Santa Fe,I.3.1,17.265359999999998,TJ,N2O,0.6,kg/TJ,10.359215999999998,Gas Oil combustion consumption by petrochemical industries,AR-S,SESCO,annual,kg,25faf206-f335-34d1-9acf-928e22c1e5a4 +2020,Tucuman,I.3.1,109.9854,TJ,CO2,74100.0,kg/TJ,8149918.14,Gas Oil combustion consumption by petrochemical industries,AR-T,SESCO,annual,kg,bcd68f11-ba3c-3f00-9822-1b06d47cf6c4 +2020,Tucuman,I.3.1,109.9854,TJ,CH4,3.0,kg/TJ,329.95619999999997,Gas Oil combustion consumption by petrochemical industries,AR-T,SESCO,annual,kg,c6021a58-34a7-35e3-8b91-872bc6f9ffb8 +2020,Tucuman,I.3.1,109.9854,TJ,N2O,0.6,kg/TJ,65.99123999999999,Gas Oil combustion consumption by petrochemical industries,AR-T,SESCO,annual,kg,ecf9fb5a-3cf7-3195-9b39-ddf86f14a60b +2020,Buenos Aires,I.3.1,14.953679999999999,TJ,CO2,74100.0,kg/TJ,1108067.6879999998,Gas Oil combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,3c859912-5312-3f68-a49b-efa37e428cfc +2020,Buenos Aires,I.3.1,14.953679999999999,TJ,CH4,3.0,kg/TJ,44.861039999999996,Gas Oil combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,bb3866e5-56ca-3086-a924-d9c5c438ccbe +2020,Buenos Aires,I.3.1,14.953679999999999,TJ,N2O,0.6,kg/TJ,8.972207999999998,Gas Oil combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,04091a1c-7d10-3a0d-b471-cd6a00b251e4 +2020,Capital Federal,I.3.1,1.30032,TJ,CO2,74100.0,kg/TJ,96353.712,Gas Oil combustion consumption by petrochemical industries,AR-C,SESCO,annual,kg,effc26e8-1e44-3feb-89c8-1931c98daa56 +2020,Capital Federal,I.3.1,1.30032,TJ,CH4,3.0,kg/TJ,3.9009599999999995,Gas Oil combustion consumption by petrochemical industries,AR-C,SESCO,annual,kg,85b89b6f-aa07-3a54-aa06-59cf67683103 +2020,Capital Federal,I.3.1,1.30032,TJ,N2O,0.6,kg/TJ,0.7801919999999999,Gas Oil combustion consumption by petrochemical industries,AR-C,SESCO,annual,kg,e649779f-b78a-3802-8571-477ae4de4a85 +2020,Córdoba,I.3.1,0.65016,TJ,CO2,74100.0,kg/TJ,48176.856,Gas Oil combustion consumption by petrochemical industries,AR-X,SESCO,annual,kg,edecf887-be74-3fa5-ab88-ea03933a8fa3 +2020,Córdoba,I.3.1,0.65016,TJ,CH4,3.0,kg/TJ,1.9504799999999998,Gas Oil combustion consumption by petrochemical industries,AR-X,SESCO,annual,kg,e9d8ebb6-3014-3a2c-b2c2-9c69af44f883 +2020,Córdoba,I.3.1,0.65016,TJ,N2O,0.6,kg/TJ,0.39009599999999994,Gas Oil combustion consumption by petrochemical industries,AR-X,SESCO,annual,kg,7a1db73b-5b66-3c94-bb34-8643f19f208c +2020,Mendoza,I.3.1,0.21672,TJ,CO2,74100.0,kg/TJ,16058.952,Gas Oil combustion consumption by petrochemical industries,AR-M,SESCO,annual,kg,f6b79873-9309-3bf4-93e5-e7e19ada4b74 +2020,Mendoza,I.3.1,0.21672,TJ,CH4,3.0,kg/TJ,0.65016,Gas Oil combustion consumption by petrochemical industries,AR-M,SESCO,annual,kg,594b8979-7f4d-3be8-82a2-debbf17a806d +2020,Mendoza,I.3.1,0.21672,TJ,N2O,0.6,kg/TJ,0.13003199999999998,Gas Oil combustion consumption by petrochemical industries,AR-M,SESCO,annual,kg,17cd6377-a236-3eb2-a01d-b559ced89e6f +2020,Neuquén,I.3.1,8.16312,TJ,CO2,74100.0,kg/TJ,604887.1919999999,Gas Oil combustion consumption by petrochemical industries,AR-Q,SESCO,annual,kg,f39f5be5-9ad0-3f84-86d9-6834a2eba0c4 +2020,Neuquén,I.3.1,8.16312,TJ,CH4,3.0,kg/TJ,24.489359999999998,Gas Oil combustion consumption by petrochemical industries,AR-Q,SESCO,annual,kg,5858dd6a-8059-36b3-a23b-057cef3c2a6a +2020,Neuquén,I.3.1,8.16312,TJ,N2O,0.6,kg/TJ,4.897872,Gas Oil combustion consumption by petrochemical industries,AR-Q,SESCO,annual,kg,d6297a6c-ef49-3a37-863f-85fe249b263d +2020,San Luis,I.3.1,1.3364399999999999,TJ,CO2,74100.0,kg/TJ,99030.20399999998,Gas Oil combustion consumption by petrochemical industries,AR-D,SESCO,annual,kg,e067cef1-16bf-30e8-a9a4-d03a722415f5 +2020,San Luis,I.3.1,1.3364399999999999,TJ,CH4,3.0,kg/TJ,4.00932,Gas Oil combustion consumption by petrochemical industries,AR-D,SESCO,annual,kg,53578be8-2b61-3380-8a2c-146aa18d2683 +2020,San Luis,I.3.1,1.3364399999999999,TJ,N2O,0.6,kg/TJ,0.8018639999999999,Gas Oil combustion consumption by petrochemical industries,AR-D,SESCO,annual,kg,079f0097-6521-37ae-ba48-a1b4a0dd3abe +2020,Santiago del Estero,I.3.1,6.321,TJ,CO2,74100.0,kg/TJ,468386.1,Gas Oil combustion consumption by petrochemical industries,AR-G,SESCO,annual,kg,73d1b5e5-c1d2-3689-8b82-2b15577453ab +2020,Santiago del Estero,I.3.1,6.321,TJ,CH4,3.0,kg/TJ,18.963,Gas Oil combustion consumption by petrochemical industries,AR-G,SESCO,annual,kg,357a420c-c10e-3934-affc-9ed2b13ea4d2 +2020,Santiago del Estero,I.3.1,6.321,TJ,N2O,0.6,kg/TJ,3.7925999999999997,Gas Oil combustion consumption by petrochemical industries,AR-G,SESCO,annual,kg,af10b9f6-ad42-3a6c-8b0f-edb5727cd0e9 +2020,Tucuman,I.3.1,1.2280799999999998,TJ,CO2,74100.0,kg/TJ,91000.72799999999,Gas Oil combustion consumption by petrochemical industries,AR-T,SESCO,annual,kg,3ac8db5e-c96a-3182-b16b-7c8a88bb6843 +2020,Tucuman,I.3.1,1.2280799999999998,TJ,CH4,3.0,kg/TJ,3.6842399999999995,Gas Oil combustion consumption by petrochemical industries,AR-T,SESCO,annual,kg,963fd066-15ba-3121-b263-7241f8b4d49d +2020,Tucuman,I.3.1,1.2280799999999998,TJ,N2O,0.6,kg/TJ,0.7368479999999998,Gas Oil combustion consumption by petrochemical industries,AR-T,SESCO,annual,kg,d647e389-7683-3710-8134-13a099b8a434 +2020,Buenos Aires,I.3.1,19.839434999999998,TJ,CO2,73300.0,kg/TJ,1454230.5854999998,Naphtha combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,93baa483-23d7-39bb-9425-e6be54d50c80 +2020,Buenos Aires,I.3.1,19.839434999999998,TJ,CH4,3.0,kg/TJ,59.518305,Naphtha combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,6be8cf54-d180-3f91-9141-62782497755c +2020,Buenos Aires,I.3.1,19.839434999999998,TJ,N2O,0.6,kg/TJ,11.903660999999998,Naphtha combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,518429cd-bee1-36f6-b04e-78e7c65019f7 +2020,Misiones,I.3.1,0.171325,TJ,CO2,73300.0,kg/TJ,12558.1225,Naphtha combustion consumption by petrochemical industries,AR-N,SESCO,annual,kg,23c338f2-cf6b-3f20-93b3-4a5f16f1c628 +2020,Misiones,I.3.1,0.171325,TJ,CH4,3.0,kg/TJ,0.5139750000000001,Naphtha combustion consumption by petrochemical industries,AR-N,SESCO,annual,kg,36617784-4557-3d7f-b81f-cc5e85a075a3 +2020,Misiones,I.3.1,0.171325,TJ,N2O,0.6,kg/TJ,0.102795,Naphtha combustion consumption by petrochemical industries,AR-N,SESCO,annual,kg,85318ac9-dc08-3c1e-980c-9fba73a38cf9 +2020,Tucuman,I.3.1,0.20559,TJ,CO2,73300.0,kg/TJ,15069.747,Naphtha combustion consumption by petrochemical industries,AR-T,SESCO,annual,kg,f014d3f7-2a2e-3d34-a841-8b1a53f49976 +2020,Tucuman,I.3.1,0.20559,TJ,CH4,3.0,kg/TJ,0.61677,Naphtha combustion consumption by petrochemical industries,AR-T,SESCO,annual,kg,dcec4209-975e-348a-a10d-5066a27bcf18 +2020,Tucuman,I.3.1,0.20559,TJ,N2O,0.6,kg/TJ,0.12335399999999999,Naphtha combustion consumption by petrochemical industries,AR-T,SESCO,annual,kg,81e37be2-7d5c-3ca2-90c1-61ee52cb67e7 +2020,Buenos Aires,I.3.1,5.996375,TJ,CO2,73300.0,kg/TJ,439534.2875,Naphtha combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,474bcd6e-80a6-3575-af6f-47ecd7d991ca +2020,Buenos Aires,I.3.1,5.996375,TJ,CH4,3.0,kg/TJ,17.989124999999998,Naphtha combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,59159b4a-af70-3faa-948a-f191ee176615 +2020,Buenos Aires,I.3.1,5.996375,TJ,N2O,0.6,kg/TJ,3.597825,Naphtha combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,d548fd02-e4df-35ad-bb26-0be0dccdb5d7 +2020,San Juan,I.3.1,0.9594199999999999,TJ,CO2,73300.0,kg/TJ,70325.48599999999,Naphtha combustion consumption by petrochemical industries,AR-J,SESCO,annual,kg,3858154a-71d4-36f5-adb5-2e25d8d71f03 +2020,San Juan,I.3.1,0.9594199999999999,TJ,CH4,3.0,kg/TJ,2.87826,Naphtha combustion consumption by petrochemical industries,AR-J,SESCO,annual,kg,0437d965-d78d-3fa2-9402-c608ea7a2047 +2020,San Juan,I.3.1,0.9594199999999999,TJ,N2O,0.6,kg/TJ,0.5756519999999999,Naphtha combustion consumption by petrochemical industries,AR-J,SESCO,annual,kg,f91324f7-2d5b-3537-9051-7fdcaac843c7 +2020,Tucuman,I.3.1,0.23985499999999998,TJ,CO2,73300.0,kg/TJ,17581.371499999997,Naphtha combustion consumption by petrochemical industries,AR-T,SESCO,annual,kg,80d5f47b-3847-3bde-b12c-f63d7f4a7fbc +2020,Tucuman,I.3.1,0.23985499999999998,TJ,CH4,3.0,kg/TJ,0.719565,Naphtha combustion consumption by petrochemical industries,AR-T,SESCO,annual,kg,351a4c23-b530-3c94-83c7-193164ca276e +2020,Tucuman,I.3.1,0.23985499999999998,TJ,N2O,0.6,kg/TJ,0.14391299999999999,Naphtha combustion consumption by petrochemical industries,AR-T,SESCO,annual,kg,1c955753-246e-3860-bd7b-0489bb570032 +2020,Buenos Aires,I.3.1,28.073366999999998,TJ,CO2,74100.0,kg/TJ,2080236.4947,Gas Oil combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,d1648762-36cd-377f-b6ec-888f42f30428 +2020,Buenos Aires,I.3.1,28.073366999999998,TJ,CH4,3.0,kg/TJ,84.220101,Gas Oil combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,444ecffb-2c8d-3c09-8075-313d67115712 +2020,Buenos Aires,I.3.1,28.073366999999998,TJ,N2O,0.6,kg/TJ,16.8440202,Gas Oil combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,b0a908eb-82a5-3444-868e-e9d0798b54f7 +2020,Capital Federal,I.3.1,1.6957978799999998,TJ,CO2,74100.0,kg/TJ,125658.62290799998,Gas Oil combustion consumption by petrochemical industries,AR-C,SESCO,annual,kg,57ed1221-0047-3725-a018-26c232c1cc55 +2020,Capital Federal,I.3.1,1.6957978799999998,TJ,CH4,3.0,kg/TJ,5.087393639999999,Gas Oil combustion consumption by petrochemical industries,AR-C,SESCO,annual,kg,6b8bac0b-5ca5-3d55-badf-0a9b6964eff2 +2020,Capital Federal,I.3.1,1.6957978799999998,TJ,N2O,0.6,kg/TJ,1.0174787279999997,Gas Oil combustion consumption by petrochemical industries,AR-C,SESCO,annual,kg,78243d49-f91e-3e56-ae42-3f55e8634db8 +2020,Catamarca,I.3.1,0.36163344,TJ,CO2,74100.0,kg/TJ,26797.037903999997,Gas Oil combustion consumption by petrochemical industries,AR-K,SESCO,annual,kg,89cc1ba9-79c7-387c-97ec-536613d9ad80 +2020,Catamarca,I.3.1,0.36163344,TJ,CH4,3.0,kg/TJ,1.08490032,Gas Oil combustion consumption by petrochemical industries,AR-K,SESCO,annual,kg,ad67cbcd-b0c3-3fd8-b862-6e5069c35379 +2020,Catamarca,I.3.1,0.36163344,TJ,N2O,0.6,kg/TJ,0.21698006399999997,Gas Oil combustion consumption by petrochemical industries,AR-K,SESCO,annual,kg,f5943295-efbb-3a65-8926-55f9f6c864f0 +2020,Chaco,I.3.1,1.9492880399999999,TJ,CO2,74100.0,kg/TJ,144442.24376399998,Gas Oil combustion consumption by petrochemical industries,AR-H,SESCO,annual,kg,ad49b0c6-56bc-3659-be2b-3eb5295ecbb5 +2020,Chaco,I.3.1,1.9492880399999999,TJ,CH4,3.0,kg/TJ,5.84786412,Gas Oil combustion consumption by petrochemical industries,AR-H,SESCO,annual,kg,2fbe319f-bc7f-3dcf-aaf8-9d5f05fb06eb +2020,Chaco,I.3.1,1.9492880399999999,TJ,N2O,0.6,kg/TJ,1.1695728239999998,Gas Oil combustion consumption by petrochemical industries,AR-H,SESCO,annual,kg,e759261e-fa34-3618-9d2f-0dc76c91d0dd +2020,Chubut,I.3.1,0.54281136,TJ,CO2,74100.0,kg/TJ,40222.321776,Gas Oil combustion consumption by petrochemical industries,AR-U,SESCO,annual,kg,5f87bc61-846a-3ce1-b167-d2a50869f5e7 +2020,Chubut,I.3.1,0.54281136,TJ,CH4,3.0,kg/TJ,1.62843408,Gas Oil combustion consumption by petrochemical industries,AR-U,SESCO,annual,kg,8d623b70-ea20-3b85-b1b4-90d489d3531a +2020,Chubut,I.3.1,0.54281136,TJ,N2O,0.6,kg/TJ,0.325686816,Gas Oil combustion consumption by petrochemical industries,AR-U,SESCO,annual,kg,9ea57ada-aa84-3834-adb6-df5a114894eb +2020,Corrientes,I.3.1,1.2976471200000002,TJ,CO2,74100.0,kg/TJ,96155.65159200001,Gas Oil combustion consumption by petrochemical industries,AR-W,SESCO,annual,kg,b6660d10-f470-3ea2-ba86-a2f8d628572c +2020,Corrientes,I.3.1,1.2976471200000002,TJ,CH4,3.0,kg/TJ,3.8929413600000005,Gas Oil combustion consumption by petrochemical industries,AR-W,SESCO,annual,kg,410fb411-12e6-3038-892f-d307205b7da5 +2020,Corrientes,I.3.1,1.2976471200000002,TJ,N2O,0.6,kg/TJ,0.778588272,Gas Oil combustion consumption by petrochemical industries,AR-W,SESCO,annual,kg,e27a2efa-3fb6-3546-b9dc-c25a6343de20 +2020,Córdoba,I.3.1,6.889239839999999,TJ,CO2,74100.0,kg/TJ,510492.67214399995,Gas Oil combustion consumption by petrochemical industries,AR-X,SESCO,annual,kg,c8be0454-d60f-386e-bf97-43911717efeb +2020,Córdoba,I.3.1,6.889239839999999,TJ,CH4,3.0,kg/TJ,20.66771952,Gas Oil combustion consumption by petrochemical industries,AR-X,SESCO,annual,kg,71ec7d26-db9c-3608-b8fb-91e74ecdc34f +2020,Córdoba,I.3.1,6.889239839999999,TJ,N2O,0.6,kg/TJ,4.133543904,Gas Oil combustion consumption by petrochemical industries,AR-X,SESCO,annual,kg,e23e13a3-284f-34fb-9017-20870a42b712 +2020,Entre Rios,I.3.1,4.90303716,TJ,CO2,74100.0,kg/TJ,363315.053556,Gas Oil combustion consumption by petrochemical industries,AR-E,SESCO,annual,kg,fd02fe17-3426-3158-860d-3df43a33178d +2020,Entre Rios,I.3.1,4.90303716,TJ,CH4,3.0,kg/TJ,14.70911148,Gas Oil combustion consumption by petrochemical industries,AR-E,SESCO,annual,kg,646d8bcb-01d9-3601-a464-392ef484d3a0 +2020,Entre Rios,I.3.1,4.90303716,TJ,N2O,0.6,kg/TJ,2.9418222960000002,Gas Oil combustion consumption by petrochemical industries,AR-E,SESCO,annual,kg,6e15b0b1-d997-35c3-bec9-d278bceddf77 +2020,La Pampa,I.3.1,11.56298724,TJ,CO2,74100.0,kg/TJ,856817.354484,Gas Oil combustion consumption by petrochemical industries,AR-L,SESCO,annual,kg,db0eeb04-3b05-3d6e-8de2-3094ec1b5182 +2020,La Pampa,I.3.1,11.56298724,TJ,CH4,3.0,kg/TJ,34.68896172,Gas Oil combustion consumption by petrochemical industries,AR-L,SESCO,annual,kg,e2ef4b99-1a60-3c3a-8ae9-35488d20d127 +2020,La Pampa,I.3.1,11.56298724,TJ,N2O,0.6,kg/TJ,6.937792344,Gas Oil combustion consumption by petrochemical industries,AR-L,SESCO,annual,kg,2fb5a5c1-8b67-30d1-91a2-e5cf628bd677 +2020,Mendoza,I.3.1,0.18110568000000002,TJ,CO2,74100.0,kg/TJ,13419.930888,Gas Oil combustion consumption by petrochemical industries,AR-M,SESCO,annual,kg,fb22e6eb-00ba-3224-9fa7-4d43b08cd5d3 +2020,Mendoza,I.3.1,0.18110568000000002,TJ,CH4,3.0,kg/TJ,0.54331704,Gas Oil combustion consumption by petrochemical industries,AR-M,SESCO,annual,kg,e0728860-4568-3b92-af4f-0eccf9349077 +2020,Mendoza,I.3.1,0.18110568000000002,TJ,N2O,0.6,kg/TJ,0.108663408,Gas Oil combustion consumption by petrochemical industries,AR-M,SESCO,annual,kg,809d7664-5afe-377d-9288-4494bdf46098 +2020,Rio Negro,I.3.1,0.79464,TJ,CO2,74100.0,kg/TJ,58882.824,Gas Oil combustion consumption by petrochemical industries,AR-R,SESCO,annual,kg,6d4a6a8e-e6f1-38e6-99a1-2d8e028b76b1 +2020,Rio Negro,I.3.1,0.79464,TJ,CH4,3.0,kg/TJ,2.38392,Gas Oil combustion consumption by petrochemical industries,AR-R,SESCO,annual,kg,1e0c1b50-46e8-3641-8452-4cc0861d7b92 +2020,Rio Negro,I.3.1,0.79464,TJ,N2O,0.6,kg/TJ,0.476784,Gas Oil combustion consumption by petrochemical industries,AR-R,SESCO,annual,kg,336a050c-f83b-3716-b38c-ce65e6525519 +2020,Santa Fe,I.3.1,25.365450599999996,TJ,CO2,74100.0,kg/TJ,1879579.8894599997,Gas Oil combustion consumption by petrochemical industries,AR-S,SESCO,annual,kg,8c5ac378-646d-34c9-aa35-2501eb231bee +2020,Santa Fe,I.3.1,25.365450599999996,TJ,CH4,3.0,kg/TJ,76.09635179999998,Gas Oil combustion consumption by petrochemical industries,AR-S,SESCO,annual,kg,0e965036-66d2-3930-a858-04965e511b15 +2020,Santa Fe,I.3.1,25.365450599999996,TJ,N2O,0.6,kg/TJ,15.219270359999996,Gas Oil combustion consumption by petrochemical industries,AR-S,SESCO,annual,kg,c438bdd2-019a-3942-b08a-09137138006d +2020,Santiago del Estero,I.3.1,0.14386596000000001,TJ,CO2,74100.0,kg/TJ,10660.467636000001,Gas Oil combustion consumption by petrochemical industries,AR-G,SESCO,annual,kg,5674295c-bbfb-33bc-b84c-bb51ee4496f3 +2020,Santiago del Estero,I.3.1,0.14386596000000001,TJ,CH4,3.0,kg/TJ,0.43159788000000004,Gas Oil combustion consumption by petrochemical industries,AR-G,SESCO,annual,kg,3b436118-20bb-3da1-b0b2-73e0d0cbce99 +2020,Santiago del Estero,I.3.1,0.14386596000000001,TJ,N2O,0.6,kg/TJ,0.08631957600000001,Gas Oil combustion consumption by petrochemical industries,AR-G,SESCO,annual,kg,c5703954-22de-38cf-960d-e9471df4c090 +2020,Tucuman,I.3.1,0.2526594,TJ,CO2,74100.0,kg/TJ,18722.06154,Gas Oil combustion consumption by petrochemical industries,AR-T,SESCO,annual,kg,883bd798-692c-3301-b427-2b82f4c310fd +2020,Tucuman,I.3.1,0.2526594,TJ,CH4,3.0,kg/TJ,0.7579781999999999,Gas Oil combustion consumption by petrochemical industries,AR-T,SESCO,annual,kg,f8cce8d2-55b0-3d35-b6ba-212190bd31e1 +2020,Tucuman,I.3.1,0.2526594,TJ,N2O,0.6,kg/TJ,0.15159563999999998,Gas Oil combustion consumption by petrochemical industries,AR-T,SESCO,annual,kg,6e767f1a-e696-377e-997c-1ad7015fa2b4 +2020,Buenos Aires,I.3.1,56.1527967,TJ,CO2,73300.0,kg/TJ,4115999.99811,Naphtha combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,e0b5bc86-5afd-3b3a-9f9d-0b4778564420 +2020,Buenos Aires,I.3.1,56.1527967,TJ,CH4,3.0,kg/TJ,168.4583901,Naphtha combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,4872009e-3626-30c9-9b12-d4c5637932b8 +2020,Buenos Aires,I.3.1,56.1527967,TJ,N2O,0.6,kg/TJ,33.69167802,Naphtha combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,abcdb5f0-1199-3c3e-aaff-5a5a2a9734df +2020,Capital Federal,I.3.1,8.486515344999999,TJ,CO2,73300.0,kg/TJ,622061.5747885,Naphtha combustion consumption by petrochemical industries,AR-C,SESCO,annual,kg,7623769c-6538-3cd6-ba5b-a0e67fb49c13 +2020,Capital Federal,I.3.1,8.486515344999999,TJ,CH4,3.0,kg/TJ,25.459546034999995,Naphtha combustion consumption by petrochemical industries,AR-C,SESCO,annual,kg,812da18e-1f7c-3421-8ce8-5e2b3bd58c83 +2020,Capital Federal,I.3.1,8.486515344999999,TJ,N2O,0.6,kg/TJ,5.091909207,Naphtha combustion consumption by petrochemical industries,AR-C,SESCO,annual,kg,3581789e-f8e4-3037-8220-3447ee469cf3 +2020,Catamarca,I.3.1,5.006424885,TJ,CO2,73300.0,kg/TJ,366970.94407050003,Naphtha combustion consumption by petrochemical industries,AR-K,SESCO,annual,kg,26c09dfb-63be-3ff6-8300-faa79766be83 +2020,Catamarca,I.3.1,5.006424885,TJ,CH4,3.0,kg/TJ,15.019274655,Naphtha combustion consumption by petrochemical industries,AR-K,SESCO,annual,kg,d921f3d0-0c7d-3f65-8229-f2faa9ad9f22 +2020,Catamarca,I.3.1,5.006424885,TJ,N2O,0.6,kg/TJ,3.0038549310000002,Naphtha combustion consumption by petrochemical industries,AR-K,SESCO,annual,kg,47eef66c-4584-3ba7-84c5-f22af80643b0 +2020,Chaco,I.3.1,6.34080678,TJ,CO2,73300.0,kg/TJ,464781.136974,Naphtha combustion consumption by petrochemical industries,AR-H,SESCO,annual,kg,8939b969-870d-3c60-87ba-ffb0154d8219 +2020,Chaco,I.3.1,6.34080678,TJ,CH4,3.0,kg/TJ,19.02242034,Naphtha combustion consumption by petrochemical industries,AR-H,SESCO,annual,kg,10704e7f-2ece-32d2-907a-d97ac619e2c7 +2020,Chaco,I.3.1,6.34080678,TJ,N2O,0.6,kg/TJ,3.804484068,Naphtha combustion consumption by petrochemical industries,AR-H,SESCO,annual,kg,76f47627-e403-36e7-a268-c2e667aa94d2 +2020,Chubut,I.3.1,1.0640310450000001,TJ,CO2,73300.0,kg/TJ,77993.47559850001,Naphtha combustion consumption by petrochemical industries,AR-U,SESCO,annual,kg,9eb17483-4d22-35d6-a1cd-e1b6d8541eab +2020,Chubut,I.3.1,1.0640310450000001,TJ,CH4,3.0,kg/TJ,3.1920931350000004,Naphtha combustion consumption by petrochemical industries,AR-U,SESCO,annual,kg,030d32e0-1245-3c16-b726-fdad06bc1259 +2020,Chubut,I.3.1,1.0640310450000001,TJ,N2O,0.6,kg/TJ,0.6384186270000001,Naphtha combustion consumption by petrochemical industries,AR-U,SESCO,annual,kg,f0a3864c-a4ef-310c-9f2d-dd2b1ef753ad +2020,Córdoba,I.3.1,20.184072369999996,TJ,CO2,73300.0,kg/TJ,1479492.5047209996,Naphtha combustion consumption by petrochemical industries,AR-X,SESCO,annual,kg,2557632d-9009-34a8-a8a9-5274a5b8885f +2020,Córdoba,I.3.1,20.184072369999996,TJ,CH4,3.0,kg/TJ,60.55221710999999,Naphtha combustion consumption by petrochemical industries,AR-X,SESCO,annual,kg,bd904d36-46fb-34d8-84ab-07180db96b93 +2020,Córdoba,I.3.1,20.184072369999996,TJ,N2O,0.6,kg/TJ,12.110443421999998,Naphtha combustion consumption by petrochemical industries,AR-X,SESCO,annual,kg,2bd2bed2-2f16-3c22-816a-0f35bd79002f +2020,Entre Rios,I.3.1,12.369253819999999,TJ,CO2,73300.0,kg/TJ,906666.305006,Naphtha combustion consumption by petrochemical industries,AR-E,SESCO,annual,kg,e53e9100-978c-316e-b25a-7ca6b12a9f70 +2020,Entre Rios,I.3.1,12.369253819999999,TJ,CH4,3.0,kg/TJ,37.10776146,Naphtha combustion consumption by petrochemical industries,AR-E,SESCO,annual,kg,fa155582-ad4b-3509-adf6-1a55d1417352 +2020,Entre Rios,I.3.1,12.369253819999999,TJ,N2O,0.6,kg/TJ,7.421552291999999,Naphtha combustion consumption by petrochemical industries,AR-E,SESCO,annual,kg,e3dda788-ac5a-3b08-b6c6-9b26fbc596b4 +2020,La Pampa,I.3.1,14.871866625,TJ,CO2,73300.0,kg/TJ,1090107.8236125,Naphtha combustion consumption by petrochemical industries,AR-L,SESCO,annual,kg,1d5a5c5b-424c-3d65-9b6e-0310585e54de +2020,La Pampa,I.3.1,14.871866625,TJ,CH4,3.0,kg/TJ,44.615599875,Naphtha combustion consumption by petrochemical industries,AR-L,SESCO,annual,kg,5c21ccdd-ef5a-3f12-96e6-357abe0e5b22 +2020,La Pampa,I.3.1,14.871866625,TJ,N2O,0.6,kg/TJ,8.923119974999999,Naphtha combustion consumption by petrochemical industries,AR-L,SESCO,annual,kg,deab9fef-bd51-3afc-9c89-7a1110aee33d +2020,Mendoza,I.3.1,2.63031846,TJ,CO2,73300.0,kg/TJ,192802.343118,Naphtha combustion consumption by petrochemical industries,AR-M,SESCO,annual,kg,f861a10e-162f-3684-b11e-f25d92de3e05 +2020,Mendoza,I.3.1,2.63031846,TJ,CH4,3.0,kg/TJ,7.890955379999999,Naphtha combustion consumption by petrochemical industries,AR-M,SESCO,annual,kg,9f2187fc-bbbd-359c-ac35-5112237fa203 +2020,Mendoza,I.3.1,2.63031846,TJ,N2O,0.6,kg/TJ,1.5781910759999997,Naphtha combustion consumption by petrochemical industries,AR-M,SESCO,annual,kg,2fdbd830-68ee-38c1-beeb-dd2a8ed1b5d5 +2020,Misiones,I.3.1,3.4187218449999994,TJ,CO2,73300.0,kg/TJ,250592.31123849997,Naphtha combustion consumption by petrochemical industries,AR-N,SESCO,annual,kg,120f47a1-47a3-35d3-ab5a-5cd1077cf297 +2020,Misiones,I.3.1,3.4187218449999994,TJ,CH4,3.0,kg/TJ,10.256165534999997,Naphtha combustion consumption by petrochemical industries,AR-N,SESCO,annual,kg,d2ecd7d2-0358-3a7e-a2bd-434837f4c2b8 +2020,Misiones,I.3.1,3.4187218449999994,TJ,N2O,0.6,kg/TJ,2.0512331069999994,Naphtha combustion consumption by petrochemical industries,AR-N,SESCO,annual,kg,8742b9af-9e95-3659-a262-cc33bfb0a50c +2020,Neuquén,I.3.1,4.456814284999999,TJ,CO2,73300.0,kg/TJ,326684.48709049996,Naphtha combustion consumption by petrochemical industries,AR-Q,SESCO,annual,kg,235ce732-b0d5-303d-811b-3e48005431f1 +2020,Neuquén,I.3.1,4.456814284999999,TJ,CH4,3.0,kg/TJ,13.370442854999997,Naphtha combustion consumption by petrochemical industries,AR-Q,SESCO,annual,kg,1ede4108-3e93-3001-a783-39c3ee09305f +2020,Neuquén,I.3.1,4.456814284999999,TJ,N2O,0.6,kg/TJ,2.6740885709999995,Naphtha combustion consumption by petrochemical industries,AR-Q,SESCO,annual,kg,116c44c0-35cd-399d-80d3-0b0dddcc238e +2020,Rio Negro,I.3.1,10.71247254,TJ,CO2,73300.0,kg/TJ,785224.2371820001,Naphtha combustion consumption by petrochemical industries,AR-R,SESCO,annual,kg,87d2db19-2ddf-38dd-a442-d8d113cb3223 +2020,Rio Negro,I.3.1,10.71247254,TJ,CH4,3.0,kg/TJ,32.13741762,Naphtha combustion consumption by petrochemical industries,AR-R,SESCO,annual,kg,a6808ce4-c387-3b7f-bcce-3e2e1b0af3fe +2020,Rio Negro,I.3.1,10.71247254,TJ,N2O,0.6,kg/TJ,6.427483524,Naphtha combustion consumption by petrochemical industries,AR-R,SESCO,annual,kg,8683d08a-cc21-3045-a728-2519fbde5c1f +2020,San Luis,I.3.1,2.198819315,TJ,CO2,73300.0,kg/TJ,161173.4557895,Naphtha combustion consumption by petrochemical industries,AR-D,SESCO,annual,kg,447ac649-9db6-31df-acae-bfcb6554d306 +2020,San Luis,I.3.1,2.198819315,TJ,CH4,3.0,kg/TJ,6.596457945000001,Naphtha combustion consumption by petrochemical industries,AR-D,SESCO,annual,kg,a539c8d8-c550-3fa3-9105-f75f05d1e538 +2020,San Luis,I.3.1,2.198819315,TJ,N2O,0.6,kg/TJ,1.319291589,Naphtha combustion consumption by petrochemical industries,AR-D,SESCO,annual,kg,ab9a239e-e83d-31b2-b929-0c2b52cae86f +2020,Santa Fe,I.3.1,56.817846085,TJ,CO2,73300.0,kg/TJ,4164748.1180305,Naphtha combustion consumption by petrochemical industries,AR-S,SESCO,annual,kg,152f143e-6aa6-3900-989a-c048ce9d86e9 +2020,Santa Fe,I.3.1,56.817846085,TJ,CH4,3.0,kg/TJ,170.453538255,Naphtha combustion consumption by petrochemical industries,AR-S,SESCO,annual,kg,0f998650-5d0f-3d0d-8ad6-e8802b172167 +2020,Santa Fe,I.3.1,56.817846085,TJ,N2O,0.6,kg/TJ,34.090707650999995,Naphtha combustion consumption by petrochemical industries,AR-S,SESCO,annual,kg,629eda62-256f-3f64-8126-8478b4221979 +2020,Santiago del Estero,I.3.1,0.853781005,TJ,CO2,73300.0,kg/TJ,62582.1476665,Naphtha combustion consumption by petrochemical industries,AR-G,SESCO,annual,kg,71925126-82f0-301d-b024-a1ca242f9fac +2020,Santiago del Estero,I.3.1,0.853781005,TJ,CH4,3.0,kg/TJ,2.561343015,Naphtha combustion consumption by petrochemical industries,AR-G,SESCO,annual,kg,defafeec-fd6b-3465-8f67-6b4c25c72697 +2020,Santiago del Estero,I.3.1,0.853781005,TJ,N2O,0.6,kg/TJ,0.512268603,Naphtha combustion consumption by petrochemical industries,AR-G,SESCO,annual,kg,faf6071a-1a95-35e6-b683-0f3bb1b56993 +2020,Tucuman,I.3.1,4.681661214999999,TJ,CO2,73300.0,kg/TJ,343165.7670594999,Naphtha combustion consumption by petrochemical industries,AR-T,SESCO,annual,kg,d368ab8a-1edf-392c-8c67-b11412ae0e86 +2020,Tucuman,I.3.1,4.681661214999999,TJ,CH4,3.0,kg/TJ,14.044983644999999,Naphtha combustion consumption by petrochemical industries,AR-T,SESCO,annual,kg,2d67e741-54a3-3422-bf31-006dcd46f08d +2020,Tucuman,I.3.1,4.681661214999999,TJ,N2O,0.6,kg/TJ,2.8089967289999995,Naphtha combustion consumption by petrochemical industries,AR-T,SESCO,annual,kg,fc143514-6174-31aa-8ba6-ca5567436a65 +2020,Buenos Aires,I.3.1,2.29568647,TJ,CO2,73300.0,kg/TJ,168273.81825100002,Naphtha combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,8de9ffa1-be35-3823-99c6-002395f0ed52 +2020,Buenos Aires,I.3.1,2.29568647,TJ,CH4,3.0,kg/TJ,6.887059410000001,Naphtha combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,fe3b4bf8-e53c-344c-acee-1325de3af75a +2020,Buenos Aires,I.3.1,2.29568647,TJ,N2O,0.6,kg/TJ,1.377411882,Naphtha combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,829a2edc-b45b-3137-9907-67ff4e03d5b2 +2020,Capital Federal,I.3.1,0.994678685,TJ,CO2,73300.0,kg/TJ,72909.9476105,Naphtha combustion consumption by petrochemical industries,AR-C,SESCO,annual,kg,ed372389-de6b-303e-a29f-8573da13d5f4 +2020,Capital Federal,I.3.1,0.994678685,TJ,CH4,3.0,kg/TJ,2.984036055,Naphtha combustion consumption by petrochemical industries,AR-C,SESCO,annual,kg,d20da0a7-ab49-3b9a-a902-c035737eb588 +2020,Capital Federal,I.3.1,0.994678685,TJ,N2O,0.6,kg/TJ,0.596807211,Naphtha combustion consumption by petrochemical industries,AR-C,SESCO,annual,kg,b8cd0f5c-6942-30ae-af62-83e52531e189 +2020,Chubut,I.3.1,0.17228441999999997,TJ,CO2,73300.0,kg/TJ,12628.447985999997,Naphtha combustion consumption by petrochemical industries,AR-U,SESCO,annual,kg,a68027e5-7c10-3b67-944b-5dee46a75001 +2020,Chubut,I.3.1,0.17228441999999997,TJ,CH4,3.0,kg/TJ,0.5168532599999999,Naphtha combustion consumption by petrochemical industries,AR-U,SESCO,annual,kg,549c518b-3a07-36f6-b273-1fe0ef489570 +2020,Chubut,I.3.1,0.17228441999999997,TJ,N2O,0.6,kg/TJ,0.10337065199999998,Naphtha combustion consumption by petrochemical industries,AR-U,SESCO,annual,kg,d83a7a80-af71-32ff-8b85-c7b42aa670c8 +2020,Córdoba,I.3.1,1.268524565,TJ,CO2,73300.0,kg/TJ,92982.85061450001,Naphtha combustion consumption by petrochemical industries,AR-X,SESCO,annual,kg,e4c17e76-8d9f-33f6-b98c-e32676a0011a +2020,Córdoba,I.3.1,1.268524565,TJ,CH4,3.0,kg/TJ,3.8055736950000005,Naphtha combustion consumption by petrochemical industries,AR-X,SESCO,annual,kg,93d09105-e8fe-3907-86e5-2abaf1f853de +2020,Córdoba,I.3.1,1.268524565,TJ,N2O,0.6,kg/TJ,0.761114739,Naphtha combustion consumption by petrochemical industries,AR-X,SESCO,annual,kg,324f7738-b099-3736-861f-7a3a3eb34add +2020,Entre Rios,I.3.1,0.92522353,TJ,CO2,73300.0,kg/TJ,67818.884749,Naphtha combustion consumption by petrochemical industries,AR-E,SESCO,annual,kg,f10d20ca-3be4-3784-a91d-f1983360dab6 +2020,Entre Rios,I.3.1,0.92522353,TJ,CH4,3.0,kg/TJ,2.77567059,Naphtha combustion consumption by petrochemical industries,AR-E,SESCO,annual,kg,f7d245fb-7b9a-3959-acd1-1216cc90555b +2020,Entre Rios,I.3.1,0.92522353,TJ,N2O,0.6,kg/TJ,0.555134118,Naphtha combustion consumption by petrochemical industries,AR-E,SESCO,annual,kg,e2e09ed5-a346-397f-9e6b-581227b52356 +2020,La Pampa,I.3.1,3.506577305,TJ,CO2,73300.0,kg/TJ,257032.1164565,Naphtha combustion consumption by petrochemical industries,AR-L,SESCO,annual,kg,8b7fcc76-2f1b-3188-ae48-df2bff963aeb +2020,La Pampa,I.3.1,3.506577305,TJ,CH4,3.0,kg/TJ,10.519731915,Naphtha combustion consumption by petrochemical industries,AR-L,SESCO,annual,kg,2af18f1d-e339-33cd-80c6-1167e116a00f +2020,La Pampa,I.3.1,3.506577305,TJ,N2O,0.6,kg/TJ,2.103946383,Naphtha combustion consumption by petrochemical industries,AR-L,SESCO,annual,kg,5c860d2e-a3d8-385d-b902-94eae9d9832b +2020,Santa Fe,I.3.1,2.67040851,TJ,CO2,73300.0,kg/TJ,195740.943783,Naphtha combustion consumption by petrochemical industries,AR-S,SESCO,annual,kg,fd9a375d-463b-3842-bb84-77269d18c3d4 +2020,Santa Fe,I.3.1,2.67040851,TJ,CH4,3.0,kg/TJ,8.01122553,Naphtha combustion consumption by petrochemical industries,AR-S,SESCO,annual,kg,0a20c220-2270-3178-b192-a4a6a8dab31c +2020,Santa Fe,I.3.1,2.67040851,TJ,N2O,0.6,kg/TJ,1.602245106,Naphtha combustion consumption by petrochemical industries,AR-S,SESCO,annual,kg,b5d94edb-d3e6-35e0-8a48-625e13b95581 +2020,Santiago del Estero,I.3.1,0.135997785,TJ,CO2,73300.0,kg/TJ,9968.637640500001,Naphtha combustion consumption by petrochemical industries,AR-G,SESCO,annual,kg,c508beb1-6bca-35a8-9043-53a0d9e2e631 +2020,Santiago del Estero,I.3.1,0.135997785,TJ,CH4,3.0,kg/TJ,0.407993355,Naphtha combustion consumption by petrochemical industries,AR-G,SESCO,annual,kg,09d9c850-2750-3a28-b2b4-d4d1acb0f522 +2020,Santiago del Estero,I.3.1,0.135997785,TJ,N2O,0.6,kg/TJ,0.081598671,Naphtha combustion consumption by petrochemical industries,AR-G,SESCO,annual,kg,86a68576-0e1a-3bb5-be5b-8b8ddf833b10 +2020,Tucuman,I.3.1,0.137711035,TJ,CO2,73300.0,kg/TJ,10094.2188655,Naphtha combustion consumption by petrochemical industries,AR-T,SESCO,annual,kg,364e03fd-84fe-3001-9441-01c054e06fbd +2020,Tucuman,I.3.1,0.137711035,TJ,CH4,3.0,kg/TJ,0.413133105,Naphtha combustion consumption by petrochemical industries,AR-T,SESCO,annual,kg,34c89550-47c7-39a0-a439-1fbe9b53aeb9 +2020,Tucuman,I.3.1,0.137711035,TJ,N2O,0.6,kg/TJ,0.082626621,Naphtha combustion consumption by petrochemical industries,AR-T,SESCO,annual,kg,689b72a1-fd53-3f00-93c5-107554d253af +2021,Buenos Aires,I.3.1,7.657439999999999,TJ,CO2,74100.0,kg/TJ,567416.304,Gas Oil combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,0e102e6b-dcee-3618-874d-fede17c2982c +2021,Buenos Aires,I.3.1,7.657439999999999,TJ,CH4,3.0,kg/TJ,22.972319999999996,Gas Oil combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,9d60b62c-7d0e-31d5-badf-65608a76179b +2021,Buenos Aires,I.3.1,7.657439999999999,TJ,N2O,0.6,kg/TJ,4.594463999999999,Gas Oil combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,cfc1cb8e-00d1-36f8-bb17-4cf2acaf493f +2021,Buenos Aires,I.3.1,2.4561599999999997,TJ,CO2,74100.0,kg/TJ,182001.45599999998,Gas Oil combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,fb18e9b9-2414-3959-8ac8-d660ac854e2e +2021,Buenos Aires,I.3.1,2.4561599999999997,TJ,CH4,3.0,kg/TJ,7.368479999999999,Gas Oil combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,e77287bf-0493-3fff-8602-6b0680f03d17 +2021,Buenos Aires,I.3.1,2.4561599999999997,TJ,N2O,0.6,kg/TJ,1.4736959999999997,Gas Oil combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,30e3af70-2ff9-3f0a-aa53-621de6f0dc58 +2021,Capital Federal,I.3.1,1.01136,TJ,CO2,74100.0,kg/TJ,74941.776,Gas Oil combustion consumption by petrochemical industries,AR-C,SESCO,annual,kg,c4fc5e6c-066e-3daa-b4bd-6e969e917a50 +2021,Capital Federal,I.3.1,1.01136,TJ,CH4,3.0,kg/TJ,3.0340800000000003,Gas Oil combustion consumption by petrochemical industries,AR-C,SESCO,annual,kg,ed8c6b6e-2c83-3f12-88ac-553635f17a38 +2021,Capital Federal,I.3.1,1.01136,TJ,N2O,0.6,kg/TJ,0.606816,Gas Oil combustion consumption by petrochemical industries,AR-C,SESCO,annual,kg,ac4f1d08-23ad-3215-a27b-0e97ca39a82c +2021,Buenos Aires,I.3.1,0.41118,TJ,CO2,73300.0,kg/TJ,30139.494,Naphtha combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,bf916502-6210-379f-9df9-ba2b45a7152b +2021,Buenos Aires,I.3.1,0.41118,TJ,CH4,3.0,kg/TJ,1.23354,Naphtha combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,bd7df63d-7601-3f5b-bb8e-0c6039a20d2a +2021,Buenos Aires,I.3.1,0.41118,TJ,N2O,0.6,kg/TJ,0.24670799999999998,Naphtha combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,0eaac26f-2e1e-3249-a5a3-76d0344b04b5 +2021,Buenos Aires,I.3.1,3.6246259999999997,TJ,CO2,69300.0,kg/TJ,251186.58179999999,Motor Gasoline combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,f80d0ccc-8823-3db6-9bf7-8fd1c5810a14 +2021,Buenos Aires,I.3.1,3.6246259999999997,TJ,CH4,3.0,kg/TJ,10.873878,Motor Gasoline combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,778879d1-9cb2-3a49-ada5-399d9f48e16d +2021,Buenos Aires,I.3.1,3.6246259999999997,TJ,N2O,0.6,kg/TJ,2.1747756,Motor Gasoline combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,e355f6f7-8efa-364a-bcc6-d25c655eff40 +2021,Chaco,I.3.1,14.245994,TJ,CO2,69300.0,kg/TJ,987247.3842,Motor Gasoline combustion consumption by petrochemical industries,AR-H,SESCO,annual,kg,faae3a81-c50d-3edd-8401-80b451af4e17 +2021,Chaco,I.3.1,14.245994,TJ,CH4,3.0,kg/TJ,42.737982,Motor Gasoline combustion consumption by petrochemical industries,AR-H,SESCO,annual,kg,1314d4c8-567f-3847-9d9b-2eca6a394be9 +2021,Chaco,I.3.1,14.245994,TJ,N2O,0.6,kg/TJ,8.5475964,Motor Gasoline combustion consumption by petrochemical industries,AR-H,SESCO,annual,kg,f13d1757-12bb-3320-b48c-249db3f3381d +2021,La Pampa,I.3.1,1.1961,TJ,CO2,69300.0,kg/TJ,82889.73,Motor Gasoline combustion consumption by petrochemical industries,AR-L,SESCO,annual,kg,64645af3-a5ba-30e3-aed8-71e96fc11b63 +2021,La Pampa,I.3.1,1.1961,TJ,CH4,3.0,kg/TJ,3.5883,Motor Gasoline combustion consumption by petrochemical industries,AR-L,SESCO,annual,kg,8095581a-5c50-3509-8937-cacc4369d541 +2021,La Pampa,I.3.1,1.1961,TJ,N2O,0.6,kg/TJ,0.71766,Motor Gasoline combustion consumption by petrochemical industries,AR-L,SESCO,annual,kg,bd8877dc-c826-3de7-83ca-c85fa26819b6 +2021,La Pampa,I.3.1,54.83016,TJ,CO2,74100.0,kg/TJ,4062914.856,Gas Oil combustion consumption by petrochemical industries,AR-L,SESCO,annual,kg,c580614e-d090-3a3a-9bf4-a7008278d344 +2021,La Pampa,I.3.1,54.83016,TJ,CH4,3.0,kg/TJ,164.49048,Gas Oil combustion consumption by petrochemical industries,AR-L,SESCO,annual,kg,f091b873-a94f-30fa-be6a-d7200aedfc51 +2021,La Pampa,I.3.1,54.83016,TJ,N2O,0.6,kg/TJ,32.898095999999995,Gas Oil combustion consumption by petrochemical industries,AR-L,SESCO,annual,kg,220eabc7-aa2d-3f86-acb0-4802c2c282ea +2021,La Pampa,I.3.1,16.21788,TJ,CO2,74100.0,kg/TJ,1201744.908,Gas Oil combustion consumption by petrochemical industries,AR-L,SESCO,annual,kg,901f2b55-a726-3f5e-b92e-24b5b4aa5de2 +2021,La Pampa,I.3.1,16.21788,TJ,CH4,3.0,kg/TJ,48.65364,Gas Oil combustion consumption by petrochemical industries,AR-L,SESCO,annual,kg,03236f5b-5f31-3aff-bd4a-453134b12e2a +2021,La Pampa,I.3.1,16.21788,TJ,N2O,0.6,kg/TJ,9.730728000000001,Gas Oil combustion consumption by petrochemical industries,AR-L,SESCO,annual,kg,bc54405a-a965-3e7b-8a4f-feb5dd79bf40 +2021,La Pampa,I.3.1,16.961175,TJ,CO2,73300.0,kg/TJ,1243254.1275,Naphtha combustion consumption by petrochemical industries,AR-L,SESCO,annual,kg,ea92c41e-e783-303e-9f10-79021c32f06f +2021,La Pampa,I.3.1,16.961175,TJ,CH4,3.0,kg/TJ,50.883525000000006,Naphtha combustion consumption by petrochemical industries,AR-L,SESCO,annual,kg,bb1ca9ee-71c3-3dba-914b-14dd0405faa5 +2021,La Pampa,I.3.1,16.961175,TJ,N2O,0.6,kg/TJ,10.176705,Naphtha combustion consumption by petrochemical industries,AR-L,SESCO,annual,kg,9fa439d4-827d-3d44-b76b-d7562fc380e1 +2021,La Pampa,I.3.1,4.488715,TJ,CO2,73300.0,kg/TJ,329022.8095,Naphtha combustion consumption by petrochemical industries,AR-L,SESCO,annual,kg,8f64cecd-1c11-3f7d-bc0a-c3bf223fc9f6 +2021,La Pampa,I.3.1,4.488715,TJ,CH4,3.0,kg/TJ,13.466145000000001,Naphtha combustion consumption by petrochemical industries,AR-L,SESCO,annual,kg,fe0da2b5-9303-330d-9cd9-faf605418ccc +2021,La Pampa,I.3.1,4.488715,TJ,N2O,0.6,kg/TJ,2.693229,Naphtha combustion consumption by petrochemical industries,AR-L,SESCO,annual,kg,c50e6e9b-9003-30bf-ba5f-e4bfd3467270 +2021,Buenos Aires,I.3.1,108.04769999999999,TJ,CO2,69300.0,kg/TJ,7487705.609999999,Motor Gasoline combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,f27eae09-84b5-3405-8a01-44a490738c84 +2021,Buenos Aires,I.3.1,108.04769999999999,TJ,CH4,3.0,kg/TJ,324.1431,Motor Gasoline combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,66d42d27-844d-3f60-af8b-f747086b3bb1 +2021,Buenos Aires,I.3.1,108.04769999999999,TJ,N2O,0.6,kg/TJ,64.82861999999999,Motor Gasoline combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,7c5ee93e-b46a-3134-a792-9bdd232a1f65 +2021,Capital Federal,I.3.1,89.8847,TJ,CO2,69300.0,kg/TJ,6229009.71,Motor Gasoline combustion consumption by petrochemical industries,AR-C,SESCO,annual,kg,7da776ef-38de-358c-9f54-4acd6cc09dbf +2021,Capital Federal,I.3.1,89.8847,TJ,CH4,3.0,kg/TJ,269.65409999999997,Motor Gasoline combustion consumption by petrochemical industries,AR-C,SESCO,annual,kg,dff54b46-5375-3973-964d-221555aadfe1 +2021,Capital Federal,I.3.1,89.8847,TJ,N2O,0.6,kg/TJ,53.93082,Motor Gasoline combustion consumption by petrochemical industries,AR-C,SESCO,annual,kg,45b73c99-76da-3bb8-a5b1-c713fc4096cb +2021,Chaco,I.3.1,26.2699,TJ,CO2,69300.0,kg/TJ,1820504.07,Motor Gasoline combustion consumption by petrochemical industries,AR-H,SESCO,annual,kg,42858185-52b5-3b2c-b181-7aa08f9cae32 +2021,Chaco,I.3.1,26.2699,TJ,CH4,3.0,kg/TJ,78.80969999999999,Motor Gasoline combustion consumption by petrochemical industries,AR-H,SESCO,annual,kg,2dfb1534-2fdc-3eee-a9d2-ee0ca1499c36 +2021,Chaco,I.3.1,26.2699,TJ,N2O,0.6,kg/TJ,15.76194,Motor Gasoline combustion consumption by petrochemical industries,AR-H,SESCO,annual,kg,42da9538-9d64-3f92-a99a-151db89754fd +2021,Córdoba,I.3.1,363.30429999999996,TJ,CO2,69300.0,kg/TJ,25176987.99,Motor Gasoline combustion consumption by petrochemical industries,AR-X,SESCO,annual,kg,76efb9dc-33f0-3c4c-9c03-005a826e8d04 +2021,Córdoba,I.3.1,363.30429999999996,TJ,CH4,3.0,kg/TJ,1089.9128999999998,Motor Gasoline combustion consumption by petrochemical industries,AR-X,SESCO,annual,kg,be73abf5-d735-3013-a333-86782991f1cf +2021,Córdoba,I.3.1,363.30429999999996,TJ,N2O,0.6,kg/TJ,217.98257999999996,Motor Gasoline combustion consumption by petrochemical industries,AR-X,SESCO,annual,kg,55e75854-4f40-3c24-b7f7-5dbf733b0f15 +2021,Entre Rios,I.3.1,33.224999999999994,TJ,CO2,69300.0,kg/TJ,2302492.4999999995,Motor Gasoline combustion consumption by petrochemical industries,AR-E,SESCO,annual,kg,103065c5-5dca-3ca5-8f14-5dcd490fae7e +2021,Entre Rios,I.3.1,33.224999999999994,TJ,CH4,3.0,kg/TJ,99.67499999999998,Motor Gasoline combustion consumption by petrochemical industries,AR-E,SESCO,annual,kg,aa05dbd2-7cb7-38eb-a6e8-82b30b7c9b5f +2021,Entre Rios,I.3.1,33.224999999999994,TJ,N2O,0.6,kg/TJ,19.934999999999995,Motor Gasoline combustion consumption by petrochemical industries,AR-E,SESCO,annual,kg,d132160c-2293-3ebb-b057-1ac2599a105f +2021,Misiones,I.3.1,258.04749999999996,TJ,CO2,69300.0,kg/TJ,17882691.749999996,Motor Gasoline combustion consumption by petrochemical industries,AR-N,SESCO,annual,kg,5be5dbf8-e3af-3122-a0dc-baaf185da39a +2021,Misiones,I.3.1,258.04749999999996,TJ,CH4,3.0,kg/TJ,774.1424999999999,Motor Gasoline combustion consumption by petrochemical industries,AR-N,SESCO,annual,kg,86f80482-9b50-3151-858a-6097481fa6aa +2021,Misiones,I.3.1,258.04749999999996,TJ,N2O,0.6,kg/TJ,154.82849999999996,Motor Gasoline combustion consumption by petrochemical industries,AR-N,SESCO,annual,kg,9474c15d-cb41-35c5-89ac-457c0364298a +2021,Neuquén,I.3.1,37.344899999999996,TJ,CO2,69300.0,kg/TJ,2588001.57,Motor Gasoline combustion consumption by petrochemical industries,AR-Q,SESCO,annual,kg,8e9bdac0-f8c7-38d8-984d-989d43d63fcf +2021,Neuquén,I.3.1,37.344899999999996,TJ,CH4,3.0,kg/TJ,112.03469999999999,Motor Gasoline combustion consumption by petrochemical industries,AR-Q,SESCO,annual,kg,bab3ab09-eda1-3488-b355-126c1af2121d +2021,Neuquén,I.3.1,37.344899999999996,TJ,N2O,0.6,kg/TJ,22.406939999999995,Motor Gasoline combustion consumption by petrochemical industries,AR-Q,SESCO,annual,kg,05c63c94-160b-3bb2-a608-f1d0e5d6885b +2021,San Juan,I.3.1,3.544,TJ,CO2,69300.0,kg/TJ,245599.2,Motor Gasoline combustion consumption by petrochemical industries,AR-J,SESCO,annual,kg,f5ba1eee-0a13-348a-ac4b-f6ba78f4acc3 +2021,San Juan,I.3.1,3.544,TJ,CH4,3.0,kg/TJ,10.632,Motor Gasoline combustion consumption by petrochemical industries,AR-J,SESCO,annual,kg,ea67bab9-ce24-356e-938f-ec0dd66247fb +2021,San Juan,I.3.1,3.544,TJ,N2O,0.6,kg/TJ,2.1264,Motor Gasoline combustion consumption by petrochemical industries,AR-J,SESCO,annual,kg,ec25c444-d817-3d40-aabd-c1a904c1af66 +2021,Santa Fe,I.3.1,139.05769999999998,TJ,CO2,69300.0,kg/TJ,9636698.61,Motor Gasoline combustion consumption by petrochemical industries,AR-S,SESCO,annual,kg,11bc7a96-ff45-3c42-8b6b-689f3db332b4 +2021,Santa Fe,I.3.1,139.05769999999998,TJ,CH4,3.0,kg/TJ,417.1731,Motor Gasoline combustion consumption by petrochemical industries,AR-S,SESCO,annual,kg,b831adaf-611e-3bca-ae41-27d6c977d4d2 +2021,Santa Fe,I.3.1,139.05769999999998,TJ,N2O,0.6,kg/TJ,83.43461999999998,Motor Gasoline combustion consumption by petrochemical industries,AR-S,SESCO,annual,kg,08681970-e10a-3bd4-b06e-304ac7a55c0a +2021,Santiago del Estero,I.3.1,1.1961,TJ,CO2,69300.0,kg/TJ,82889.73,Motor Gasoline combustion consumption by petrochemical industries,AR-G,SESCO,annual,kg,ae01f25c-7c86-3367-bd36-31c4b4261a30 +2021,Santiago del Estero,I.3.1,1.1961,TJ,CH4,3.0,kg/TJ,3.5883,Motor Gasoline combustion consumption by petrochemical industries,AR-G,SESCO,annual,kg,7738b84f-097a-3096-829c-b003f8c0ed7d +2021,Santiago del Estero,I.3.1,1.1961,TJ,N2O,0.6,kg/TJ,0.71766,Motor Gasoline combustion consumption by petrochemical industries,AR-G,SESCO,annual,kg,b0a4baaf-b024-326c-9f7e-34846f29332a +2021,Buenos Aires,I.3.1,352.7118,TJ,CO2,74100.0,kg/TJ,26135944.38,Gas Oil combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,46d1cc5e-d64e-3b9b-bc86-d4fcbd1d125c +2021,Buenos Aires,I.3.1,352.7118,TJ,CH4,3.0,kg/TJ,1058.1354,Gas Oil combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,b054658f-a4c3-34d8-8319-e7046fd345b0 +2021,Buenos Aires,I.3.1,352.7118,TJ,N2O,0.6,kg/TJ,211.62707999999998,Gas Oil combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,10fef172-e7e4-3a70-99f0-4b5c6f76f8e3 +2021,Capital Federal,I.3.1,37.7454,TJ,CO2,74100.0,kg/TJ,2796934.1399999997,Gas Oil combustion consumption by petrochemical industries,AR-C,SESCO,annual,kg,20ebbf8b-77bd-3631-b318-7df7579aea9f +2021,Capital Federal,I.3.1,37.7454,TJ,CH4,3.0,kg/TJ,113.2362,Gas Oil combustion consumption by petrochemical industries,AR-C,SESCO,annual,kg,df6ce6bb-b748-3166-9996-3d35a6452edb +2021,Capital Federal,I.3.1,37.7454,TJ,N2O,0.6,kg/TJ,22.647239999999996,Gas Oil combustion consumption by petrochemical industries,AR-C,SESCO,annual,kg,5f0b454e-5886-3780-8254-b3a7db0c2939 +2021,Córdoba,I.3.1,65.48555999999999,TJ,CO2,74100.0,kg/TJ,4852479.995999999,Gas Oil combustion consumption by petrochemical industries,AR-X,SESCO,annual,kg,698158ae-c320-3dda-a3d0-93a0f004795f +2021,Córdoba,I.3.1,65.48555999999999,TJ,CH4,3.0,kg/TJ,196.45667999999998,Gas Oil combustion consumption by petrochemical industries,AR-X,SESCO,annual,kg,2e87542e-a6e9-3833-b101-176e05fa4e7f +2021,Córdoba,I.3.1,65.48555999999999,TJ,N2O,0.6,kg/TJ,39.291335999999994,Gas Oil combustion consumption by petrochemical industries,AR-X,SESCO,annual,kg,8aab5f87-7f79-3c81-b91c-aba2c98472b3 +2021,Entre Rios,I.3.1,13.111559999999999,TJ,CO2,74100.0,kg/TJ,971566.5959999999,Gas Oil combustion consumption by petrochemical industries,AR-E,SESCO,annual,kg,b63d0505-edc8-34de-8441-ad7e34084428 +2021,Entre Rios,I.3.1,13.111559999999999,TJ,CH4,3.0,kg/TJ,39.33468,Gas Oil combustion consumption by petrochemical industries,AR-E,SESCO,annual,kg,e5b831ea-6e88-3418-a70b-7bca6c8fb66b +2021,Entre Rios,I.3.1,13.111559999999999,TJ,N2O,0.6,kg/TJ,7.866935999999999,Gas Oil combustion consumption by petrochemical industries,AR-E,SESCO,annual,kg,0b2ed4a1-ebb7-3f64-97b2-d8196ee0de5e +2021,Mendoza,I.3.1,22.35828,TJ,CO2,74100.0,kg/TJ,1656748.548,Gas Oil combustion consumption by petrochemical industries,AR-M,SESCO,annual,kg,51b0858a-633a-38b1-8da0-b3cdbf8906c5 +2021,Mendoza,I.3.1,22.35828,TJ,CH4,3.0,kg/TJ,67.07484,Gas Oil combustion consumption by petrochemical industries,AR-M,SESCO,annual,kg,644af527-9a0f-350c-a2a5-36fab5737b04 +2021,Mendoza,I.3.1,22.35828,TJ,N2O,0.6,kg/TJ,13.414968,Gas Oil combustion consumption by petrochemical industries,AR-M,SESCO,annual,kg,0daaaf05-2e9b-3462-9851-a35b32b2c8af +2021,Misiones,I.3.1,24.489359999999998,TJ,CO2,74100.0,kg/TJ,1814661.576,Gas Oil combustion consumption by petrochemical industries,AR-N,SESCO,annual,kg,66e79f08-f865-3204-bfaa-e63491bc86fe +2021,Misiones,I.3.1,24.489359999999998,TJ,CH4,3.0,kg/TJ,73.46807999999999,Gas Oil combustion consumption by petrochemical industries,AR-N,SESCO,annual,kg,e4d24fdd-d0cb-34e0-a43e-4af83182a6e8 +2021,Misiones,I.3.1,24.489359999999998,TJ,N2O,0.6,kg/TJ,14.693615999999999,Gas Oil combustion consumption by petrochemical industries,AR-N,SESCO,annual,kg,0a6a6f62-4da8-3f1c-9487-ebb645e5f551 +2021,Neuquén,I.3.1,50.09844,TJ,CO2,74100.0,kg/TJ,3712294.4039999996,Gas Oil combustion consumption by petrochemical industries,AR-Q,SESCO,annual,kg,e962493d-1736-36a4-a73b-ba09f8955362 +2021,Neuquén,I.3.1,50.09844,TJ,CH4,3.0,kg/TJ,150.29532,Gas Oil combustion consumption by petrochemical industries,AR-Q,SESCO,annual,kg,ffa1fc4a-8e7a-3c38-b603-35870dabec05 +2021,Neuquén,I.3.1,50.09844,TJ,N2O,0.6,kg/TJ,30.059063999999996,Gas Oil combustion consumption by petrochemical industries,AR-Q,SESCO,annual,kg,2695ca76-7d77-3a27-b2f5-07af3cbe7219 +2021,Salta,I.3.1,92.75616,TJ,CO2,74100.0,kg/TJ,6873231.455999999,Gas Oil combustion consumption by petrochemical industries,AR-A,SESCO,annual,kg,d80d86f4-46bf-3d88-a993-56d740fc07ba +2021,Salta,I.3.1,92.75616,TJ,CH4,3.0,kg/TJ,278.26847999999995,Gas Oil combustion consumption by petrochemical industries,AR-A,SESCO,annual,kg,54e4b435-5c44-31f6-a005-2f4fa42d064a +2021,Salta,I.3.1,92.75616,TJ,N2O,0.6,kg/TJ,55.653696,Gas Oil combustion consumption by petrochemical industries,AR-A,SESCO,annual,kg,86326507-ed4a-3fd3-b70a-0b0e5ff961fd +2021,San Juan,I.3.1,48.47304,TJ,CO2,74100.0,kg/TJ,3591852.264,Gas Oil combustion consumption by petrochemical industries,AR-J,SESCO,annual,kg,e63b8a24-dbd7-324f-84bc-5d047facdbfc +2021,San Juan,I.3.1,48.47304,TJ,CH4,3.0,kg/TJ,145.41912,Gas Oil combustion consumption by petrochemical industries,AR-J,SESCO,annual,kg,9e58abe8-050f-30e3-ae80-04407c0871fc +2021,San Juan,I.3.1,48.47304,TJ,N2O,0.6,kg/TJ,29.083823999999996,Gas Oil combustion consumption by petrochemical industries,AR-J,SESCO,annual,kg,9e6b11d1-e611-39ed-a61b-5c03fc069cff +2021,Santa Fe,I.3.1,113.34456,TJ,CO2,74100.0,kg/TJ,8398831.896,Gas Oil combustion consumption by petrochemical industries,AR-S,SESCO,annual,kg,411f8615-5b1c-35fb-aec9-3117f0484a14 +2021,Santa Fe,I.3.1,113.34456,TJ,CH4,3.0,kg/TJ,340.03368,Gas Oil combustion consumption by petrochemical industries,AR-S,SESCO,annual,kg,71b0484c-9ea1-310f-8cae-909cd0cfec29 +2021,Santa Fe,I.3.1,113.34456,TJ,N2O,0.6,kg/TJ,68.006736,Gas Oil combustion consumption by petrochemical industries,AR-S,SESCO,annual,kg,f00a50b2-fcb2-3d12-a41f-b95a574f5ac5 +2021,Tucuman,I.3.1,122.41068,TJ,CO2,74100.0,kg/TJ,9070631.388,Gas Oil combustion consumption by petrochemical industries,AR-T,SESCO,annual,kg,0b055e61-88c1-38a4-a4d9-81da3d59e77c +2021,Tucuman,I.3.1,122.41068,TJ,CH4,3.0,kg/TJ,367.23204,Gas Oil combustion consumption by petrochemical industries,AR-T,SESCO,annual,kg,806bc6ac-5ba3-3ba7-b8a4-f6d2cbfe530c +2021,Tucuman,I.3.1,122.41068,TJ,N2O,0.6,kg/TJ,73.44640799999999,Gas Oil combustion consumption by petrochemical industries,AR-T,SESCO,annual,kg,930cbc91-e2cf-3a34-aba8-5c9d40921e31 +2021,Buenos Aires,I.3.1,65.30496,TJ,CO2,74100.0,kg/TJ,4839097.535999999,Gas Oil combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,dee0a686-8a98-39bc-9168-56276f423022 +2021,Buenos Aires,I.3.1,65.30496,TJ,CH4,3.0,kg/TJ,195.91487999999998,Gas Oil combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,04fab6db-491d-3468-ac77-52ed98172e3e +2021,Buenos Aires,I.3.1,65.30496,TJ,N2O,0.6,kg/TJ,39.182976,Gas Oil combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,329eb756-0743-3e0d-8d0f-2b4d506b53db +2021,Capital Federal,I.3.1,50.09844,TJ,CO2,74100.0,kg/TJ,3712294.4039999996,Gas Oil combustion consumption by petrochemical industries,AR-C,SESCO,annual,kg,7be25857-5055-3f82-9117-cace117a8dd0 +2021,Capital Federal,I.3.1,50.09844,TJ,CH4,3.0,kg/TJ,150.29532,Gas Oil combustion consumption by petrochemical industries,AR-C,SESCO,annual,kg,524b6afe-e2a8-3d9f-bd52-cc4bda51e335 +2021,Capital Federal,I.3.1,50.09844,TJ,N2O,0.6,kg/TJ,30.059063999999996,Gas Oil combustion consumption by petrochemical industries,AR-C,SESCO,annual,kg,b5498bb1-ba01-3583-b087-03a5ddca2d8d +2021,Córdoba,I.3.1,5.12904,TJ,CO2,74100.0,kg/TJ,380061.864,Gas Oil combustion consumption by petrochemical industries,AR-X,SESCO,annual,kg,ad9989e5-3bc8-367d-8dcb-3325d0dc700d +2021,Córdoba,I.3.1,5.12904,TJ,CH4,3.0,kg/TJ,15.38712,Gas Oil combustion consumption by petrochemical industries,AR-X,SESCO,annual,kg,1f677e72-3fca-36dd-9986-3ab76d5e8dc3 +2021,Córdoba,I.3.1,5.12904,TJ,N2O,0.6,kg/TJ,3.0774239999999997,Gas Oil combustion consumption by petrochemical industries,AR-X,SESCO,annual,kg,c4df2fd8-8116-31e3-8e9c-6bd53345d24b +2021,Jujuy,I.3.1,1.3364399999999999,TJ,CO2,74100.0,kg/TJ,99030.20399999998,Gas Oil combustion consumption by petrochemical industries,AR-Y,SESCO,annual,kg,37e79b38-918d-310d-9272-fbf3d46c4331 +2021,Jujuy,I.3.1,1.3364399999999999,TJ,CH4,3.0,kg/TJ,4.00932,Gas Oil combustion consumption by petrochemical industries,AR-Y,SESCO,annual,kg,1d8152e3-b692-37d9-b2cf-bbd83070222b +2021,Jujuy,I.3.1,1.3364399999999999,TJ,N2O,0.6,kg/TJ,0.8018639999999999,Gas Oil combustion consumption by petrochemical industries,AR-Y,SESCO,annual,kg,c75c8b8b-df0b-3993-ac36-aee0675ddab2 +2021,Salta,I.3.1,4.22604,TJ,CO2,74100.0,kg/TJ,313149.564,Gas Oil combustion consumption by petrochemical industries,AR-A,SESCO,annual,kg,5afb96cd-b07e-3295-916d-2f87ba8cd302 +2021,Salta,I.3.1,4.22604,TJ,CH4,3.0,kg/TJ,12.67812,Gas Oil combustion consumption by petrochemical industries,AR-A,SESCO,annual,kg,bc32d2ac-1ec6-37db-a9c2-8ec7c609b67b +2021,Salta,I.3.1,4.22604,TJ,N2O,0.6,kg/TJ,2.535624,Gas Oil combustion consumption by petrochemical industries,AR-A,SESCO,annual,kg,2645d6be-887b-3543-91ab-4e75e025b087 +2021,Santa Fe,I.3.1,14.15904,TJ,CO2,74100.0,kg/TJ,1049184.8639999998,Gas Oil combustion consumption by petrochemical industries,AR-S,SESCO,annual,kg,6e99e3ce-e21c-348f-a9fa-0441fb43e53c +2021,Santa Fe,I.3.1,14.15904,TJ,CH4,3.0,kg/TJ,42.47712,Gas Oil combustion consumption by petrochemical industries,AR-S,SESCO,annual,kg,741e95e7-8e5e-3288-9e78-2b99e192f39d +2021,Santa Fe,I.3.1,14.15904,TJ,N2O,0.6,kg/TJ,8.495424,Gas Oil combustion consumption by petrochemical industries,AR-S,SESCO,annual,kg,2ffb3ef2-a2ea-3fa5-a2dd-cff4b9fc6b34 +2021,Tucuman,I.3.1,1.58928,TJ,CO2,74100.0,kg/TJ,117765.648,Gas Oil combustion consumption by petrochemical industries,AR-T,SESCO,annual,kg,b9f396e5-41bc-3d76-b1c1-a8f813c45dd6 +2021,Tucuman,I.3.1,1.58928,TJ,CH4,3.0,kg/TJ,4.76784,Gas Oil combustion consumption by petrochemical industries,AR-T,SESCO,annual,kg,992859f0-baae-3552-a605-602f765a7164 +2021,Tucuman,I.3.1,1.58928,TJ,N2O,0.6,kg/TJ,0.953568,Gas Oil combustion consumption by petrochemical industries,AR-T,SESCO,annual,kg,1b1cfbf7-c27d-3ee7-a7e6-aa962773d81e +2021,Santa Fe,I.3.1,5.66154,TJ,CO2,71500.0,kg/TJ,404800.11,Jet Kerosene combustion consumption by petrochemical industries,AR-S,SESCO,annual,kg,301c1010-5d7e-3ce2-8c6a-f142d5d92aa1 +2021,Santa Fe,I.3.1,5.66154,TJ,CH4,3.0,kg/TJ,16.98462,Jet Kerosene combustion consumption by petrochemical industries,AR-S,SESCO,annual,kg,0df4d14d-2a88-398e-8c79-6deedbfd37a4 +2021,Santa Fe,I.3.1,5.66154,TJ,N2O,0.6,kg/TJ,3.396924,Jet Kerosene combustion consumption by petrochemical industries,AR-S,SESCO,annual,kg,2f555625-6c5a-3e7d-ad26-73c446153f10 +2021,Buenos Aires,I.3.1,49.170275,TJ,CO2,73300.0,kg/TJ,3604181.1574999997,Naphtha combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,d1be6e39-dded-358b-8fd6-25124d8757d6 +2021,Buenos Aires,I.3.1,49.170275,TJ,CH4,3.0,kg/TJ,147.51082499999998,Naphtha combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,2663279b-2ee8-3545-8826-46fc6853565f +2021,Buenos Aires,I.3.1,49.170275,TJ,N2O,0.6,kg/TJ,29.502164999999998,Naphtha combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,74555b40-de34-39ce-ad56-f6bcff052d94 +2021,Misiones,I.3.1,1.78178,TJ,CO2,73300.0,kg/TJ,130604.47399999999,Naphtha combustion consumption by petrochemical industries,AR-N,SESCO,annual,kg,b8364ffc-c95b-3783-9d88-8a0c86a6ec10 +2021,Misiones,I.3.1,1.78178,TJ,CH4,3.0,kg/TJ,5.34534,Naphtha combustion consumption by petrochemical industries,AR-N,SESCO,annual,kg,63fa2ffd-dd6c-3f59-bb8f-90d7ea529f52 +2021,Misiones,I.3.1,1.78178,TJ,N2O,0.6,kg/TJ,1.069068,Naphtha combustion consumption by petrochemical industries,AR-N,SESCO,annual,kg,1d3ba7d1-6689-3939-98ef-d815f87188ef +2021,Buenos Aires,I.3.1,15.384984999999999,TJ,CO2,73300.0,kg/TJ,1127719.4005,Naphtha combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,258da882-198c-3085-b55d-015777bc672e +2021,Buenos Aires,I.3.1,15.384984999999999,TJ,CH4,3.0,kg/TJ,46.154954999999994,Naphtha combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,85f61998-1b6e-3525-8747-23ddf52c7749 +2021,Buenos Aires,I.3.1,15.384984999999999,TJ,N2O,0.6,kg/TJ,9.230991,Naphtha combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,9225a47f-18ee-3502-8fe9-d658799287a0 +2021,Capital Federal,I.3.1,0.513975,TJ,CO2,73300.0,kg/TJ,37674.3675,Naphtha combustion consumption by petrochemical industries,AR-C,SESCO,annual,kg,8d77cf10-913c-35aa-b1a7-a4eaaf0c5109 +2021,Capital Federal,I.3.1,0.513975,TJ,CH4,3.0,kg/TJ,1.541925,Naphtha combustion consumption by petrochemical industries,AR-C,SESCO,annual,kg,4de0dc0d-3285-328e-9597-0404f2d510b6 +2021,Capital Federal,I.3.1,0.513975,TJ,N2O,0.6,kg/TJ,0.30838499999999996,Naphtha combustion consumption by petrochemical industries,AR-C,SESCO,annual,kg,525aee09-dd74-31ca-9193-d91c655e8f06 +2021,Entre Rios,I.3.1,1.541925,TJ,CO2,73300.0,kg/TJ,113023.1025,Naphtha combustion consumption by petrochemical industries,AR-E,SESCO,annual,kg,b1b55acf-1824-38bf-9c5e-e2f3b8374eb5 +2021,Entre Rios,I.3.1,1.541925,TJ,CH4,3.0,kg/TJ,4.625775,Naphtha combustion consumption by petrochemical industries,AR-E,SESCO,annual,kg,3d6e78eb-93a8-3290-96cf-5dd5dc514748 +2021,Entre Rios,I.3.1,1.541925,TJ,N2O,0.6,kg/TJ,0.925155,Naphtha combustion consumption by petrochemical industries,AR-E,SESCO,annual,kg,fcee33e4-9b44-3fd0-9a47-625867d66553 +2021,La Pampa,I.3.1,0.27412,TJ,CO2,73300.0,kg/TJ,20092.996,Naphtha combustion consumption by petrochemical industries,AR-L,SESCO,annual,kg,33c7dbdd-197c-30a1-9405-458e14e0bdd2 +2021,La Pampa,I.3.1,0.27412,TJ,CH4,3.0,kg/TJ,0.82236,Naphtha combustion consumption by petrochemical industries,AR-L,SESCO,annual,kg,dca4e26c-0286-303d-89ad-b71c6923b26c +2021,La Pampa,I.3.1,0.27412,TJ,N2O,0.6,kg/TJ,0.16447199999999998,Naphtha combustion consumption by petrochemical industries,AR-L,SESCO,annual,kg,a86a2f19-23e3-3878-98cc-1a7e764a49fa +2021,Misiones,I.3.1,0.47970999999999997,TJ,CO2,73300.0,kg/TJ,35162.742999999995,Naphtha combustion consumption by petrochemical industries,AR-N,SESCO,annual,kg,0e9fd8aa-11a6-353c-9f6b-f945e1da409e +2021,Misiones,I.3.1,0.47970999999999997,TJ,CH4,3.0,kg/TJ,1.43913,Naphtha combustion consumption by petrochemical industries,AR-N,SESCO,annual,kg,441a4356-dbfd-3d77-877d-7894a73ba865 +2021,Misiones,I.3.1,0.47970999999999997,TJ,N2O,0.6,kg/TJ,0.28782599999999997,Naphtha combustion consumption by petrochemical industries,AR-N,SESCO,annual,kg,7909e333-cfc3-3727-b756-e60731c94a95 +2021,Rio Negro,I.3.1,1.2678049999999998,TJ,CO2,73300.0,kg/TJ,92930.1065,Naphtha combustion consumption by petrochemical industries,AR-R,SESCO,annual,kg,07cf12f5-a6c2-3b41-99d8-2e3bb049c531 +2021,Rio Negro,I.3.1,1.2678049999999998,TJ,CH4,3.0,kg/TJ,3.8034149999999993,Naphtha combustion consumption by petrochemical industries,AR-R,SESCO,annual,kg,82298713-2e68-34b1-901b-9b251dfd4985 +2021,Rio Negro,I.3.1,1.2678049999999998,TJ,N2O,0.6,kg/TJ,0.7606829999999999,Naphtha combustion consumption by petrochemical industries,AR-R,SESCO,annual,kg,d6490c06-6762-35d9-ab80-4a7b4cf07da4 +2021,San Juan,I.3.1,3.76915,TJ,CO2,73300.0,kg/TJ,276278.695,Naphtha combustion consumption by petrochemical industries,AR-J,SESCO,annual,kg,77dbab30-fca3-3a37-8c87-2e7c49295484 +2021,San Juan,I.3.1,3.76915,TJ,CH4,3.0,kg/TJ,11.30745,Naphtha combustion consumption by petrochemical industries,AR-J,SESCO,annual,kg,73da8d51-421b-3c2d-9a4a-15a9a1f072ab +2021,San Juan,I.3.1,3.76915,TJ,N2O,0.6,kg/TJ,2.26149,Naphtha combustion consumption by petrochemical industries,AR-J,SESCO,annual,kg,4012054d-3912-34ca-94eb-39ddf74e0f96 +2021,San Luis,I.3.1,0.856625,TJ,CO2,73300.0,kg/TJ,62790.612499999996,Naphtha combustion consumption by petrochemical industries,AR-D,SESCO,annual,kg,7991b607-4702-36b1-b140-2cf1bf975393 +2021,San Luis,I.3.1,0.856625,TJ,CH4,3.0,kg/TJ,2.5698749999999997,Naphtha combustion consumption by petrochemical industries,AR-D,SESCO,annual,kg,8d9d00b4-6390-3add-8591-88d9fa985896 +2021,San Luis,I.3.1,0.856625,TJ,N2O,0.6,kg/TJ,0.513975,Naphtha combustion consumption by petrochemical industries,AR-D,SESCO,annual,kg,dc2f9405-d43a-3bf8-b777-bd458a811d6b +2021,Santa Fe,I.3.1,0.513975,TJ,CO2,73300.0,kg/TJ,37674.3675,Naphtha combustion consumption by petrochemical industries,AR-S,SESCO,annual,kg,3b6d8ef4-1fa2-3ee8-b61b-3da837891d82 +2021,Santa Fe,I.3.1,0.513975,TJ,CH4,3.0,kg/TJ,1.541925,Naphtha combustion consumption by petrochemical industries,AR-S,SESCO,annual,kg,4021816c-b138-30f9-937f-c6c55c22586f +2021,Santa Fe,I.3.1,0.513975,TJ,N2O,0.6,kg/TJ,0.30838499999999996,Naphtha combustion consumption by petrochemical industries,AR-S,SESCO,annual,kg,6a9a0ebf-f209-398b-96d5-44a9782ed74b +2021,Tucuman,I.3.1,0.925155,TJ,CO2,73300.0,kg/TJ,67813.8615,Naphtha combustion consumption by petrochemical industries,AR-T,SESCO,annual,kg,05edc37f-ecb3-3c87-983f-82a3f513fc7c +2021,Tucuman,I.3.1,0.925155,TJ,CH4,3.0,kg/TJ,2.7754649999999996,Naphtha combustion consumption by petrochemical industries,AR-T,SESCO,annual,kg,1745d64b-9c7c-3e91-ba06-dcdc7173f110 +2021,Tucuman,I.3.1,0.925155,TJ,N2O,0.6,kg/TJ,0.555093,Naphtha combustion consumption by petrochemical industries,AR-T,SESCO,annual,kg,ad22969a-777f-38a5-a72a-d68f402a29d1 +2021,Capital Federal,I.3.1,1187.83049,TJ,CO2,73300.0,kg/TJ,87067974.91700001,Naphtha combustion consumption by petrochemical industries,AR-C,SESCO,annual,kg,28179a18-e6dd-3df0-b053-1a19588ad04c +2021,Capital Federal,I.3.1,1187.83049,TJ,CH4,3.0,kg/TJ,3563.49147,Naphtha combustion consumption by petrochemical industries,AR-C,SESCO,annual,kg,762b06ce-6af0-39b3-85bd-590ca4baef6f +2021,Capital Federal,I.3.1,1187.83049,TJ,N2O,0.6,kg/TJ,712.698294,Naphtha combustion consumption by petrochemical industries,AR-C,SESCO,annual,kg,cd73d943-ac29-3f48-a802-a988be1f10f5 +2022,Buenos Aires,I.3.1,7.8380399999999995,TJ,CO2,74100.0,kg/TJ,580798.764,Gas Oil combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,12d92b52-e861-3df7-84bf-625db1105b65 +2022,Buenos Aires,I.3.1,7.8380399999999995,TJ,CH4,3.0,kg/TJ,23.51412,Gas Oil combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,816bab19-6fd7-3f1e-a10b-f2f83ffb6d2e +2022,Buenos Aires,I.3.1,7.8380399999999995,TJ,N2O,0.6,kg/TJ,4.702824,Gas Oil combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,ddfbdd57-6fd1-3585-bf19-0a5e09429f75 +2022,San Luis,I.3.1,1.30032,TJ,CO2,74100.0,kg/TJ,96353.712,Gas Oil combustion consumption by petrochemical industries,AR-D,SESCO,annual,kg,b5e4a8dc-92ad-3519-a0a2-c57f23329fc9 +2022,San Luis,I.3.1,1.30032,TJ,CH4,3.0,kg/TJ,3.9009599999999995,Gas Oil combustion consumption by petrochemical industries,AR-D,SESCO,annual,kg,e9c74cb5-a1aa-3bc4-a299-931814e50157 +2022,San Luis,I.3.1,1.30032,TJ,N2O,0.6,kg/TJ,0.7801919999999999,Gas Oil combustion consumption by petrochemical industries,AR-D,SESCO,annual,kg,946f3b75-8b50-34f0-9bf4-a6f94a6592a0 +2022,Capital Federal,I.3.1,0.25162399999999996,TJ,CO2,71500.0,kg/TJ,17991.115999999998,Jet Kerosene combustion consumption by petrochemical industries,AR-C,SESCO,annual,kg,62865a33-398c-3e39-bcf5-2a4e18046d58 +2022,Capital Federal,I.3.1,0.25162399999999996,TJ,CH4,3.0,kg/TJ,0.7548719999999999,Jet Kerosene combustion consumption by petrochemical industries,AR-C,SESCO,annual,kg,ecc6600a-6992-3e94-9847-2d2a995c780d +2022,Capital Federal,I.3.1,0.25162399999999996,TJ,N2O,0.6,kg/TJ,0.15097439999999998,Jet Kerosene combustion consumption by petrochemical industries,AR-C,SESCO,annual,kg,e2c30392-61e2-3279-b08a-d5c3fc782d51 +2022,Chaco,I.3.1,11.090062,TJ,CO2,69300.0,kg/TJ,768541.2966,Motor Gasoline combustion consumption by petrochemical industries,AR-H,SESCO,annual,kg,021a75a7-9ed0-33b8-8b64-8dfff9fad6ee +2022,Chaco,I.3.1,11.090062,TJ,CH4,3.0,kg/TJ,33.270185999999995,Motor Gasoline combustion consumption by petrochemical industries,AR-H,SESCO,annual,kg,445825ab-4dec-31b5-b28a-97f7d32116af +2022,Chaco,I.3.1,11.090062,TJ,N2O,0.6,kg/TJ,6.654037199999999,Motor Gasoline combustion consumption by petrochemical industries,AR-H,SESCO,annual,kg,be1c19fb-86a3-3be4-bc05-51b04368e5d7 +2022,Buenos Aires,I.3.1,99.18769999999999,TJ,CO2,69300.0,kg/TJ,6873707.609999999,Motor Gasoline combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,968e565e-65d2-3611-8854-d0a2e0e393e2 +2022,Buenos Aires,I.3.1,99.18769999999999,TJ,CH4,3.0,kg/TJ,297.56309999999996,Motor Gasoline combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,2b62de18-df1b-32cd-af59-0395d4ecbb1e +2022,Buenos Aires,I.3.1,99.18769999999999,TJ,N2O,0.6,kg/TJ,59.51261999999999,Motor Gasoline combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,4bf64659-2485-3dd5-80ef-fd1452dce736 +2022,Capital Federal,I.3.1,81.6006,TJ,CO2,69300.0,kg/TJ,5654921.58,Motor Gasoline combustion consumption by petrochemical industries,AR-C,SESCO,annual,kg,5d39eb38-8f50-3b0f-a895-30f5a1e51c2a +2022,Capital Federal,I.3.1,81.6006,TJ,CH4,3.0,kg/TJ,244.80180000000001,Motor Gasoline combustion consumption by petrochemical industries,AR-C,SESCO,annual,kg,dedf4344-723d-3755-9fd2-d4c6dc192106 +2022,Capital Federal,I.3.1,81.6006,TJ,N2O,0.6,kg/TJ,48.96036,Motor Gasoline combustion consumption by petrochemical industries,AR-C,SESCO,annual,kg,cc06e1d0-54ef-324b-996f-118e23815b14 +2022,Chaco,I.3.1,2.4808,TJ,CO2,69300.0,kg/TJ,171919.44,Motor Gasoline combustion consumption by petrochemical industries,AR-H,SESCO,annual,kg,d9fc90ee-b08c-3886-b355-8e9f2dd4ebde +2022,Chaco,I.3.1,2.4808,TJ,CH4,3.0,kg/TJ,7.442399999999999,Motor Gasoline combustion consumption by petrochemical industries,AR-H,SESCO,annual,kg,53737d42-b2bb-3719-9733-faf17ee5861d +2022,Chaco,I.3.1,2.4808,TJ,N2O,0.6,kg/TJ,1.4884799999999998,Motor Gasoline combustion consumption by petrochemical industries,AR-H,SESCO,annual,kg,a1d97440-ef32-33b6-8cb0-be311cf9dd43 +2022,Córdoba,I.3.1,151.9047,TJ,CO2,69300.0,kg/TJ,10526995.709999999,Motor Gasoline combustion consumption by petrochemical industries,AR-X,SESCO,annual,kg,0c64ff51-7c9f-37ff-b628-71483fd146c5 +2022,Córdoba,I.3.1,151.9047,TJ,CH4,3.0,kg/TJ,455.7141,Motor Gasoline combustion consumption by petrochemical industries,AR-X,SESCO,annual,kg,cfb7d9ce-c193-39af-97e3-74467f0a4f78 +2022,Córdoba,I.3.1,151.9047,TJ,N2O,0.6,kg/TJ,91.14281999999999,Motor Gasoline combustion consumption by petrochemical industries,AR-X,SESCO,annual,kg,0d401a5f-79b4-32ce-81dd-17d7b8cc81ca +2022,Entre Rios,I.3.1,87.49249999999999,TJ,CO2,69300.0,kg/TJ,6063230.249999999,Motor Gasoline combustion consumption by petrochemical industries,AR-E,SESCO,annual,kg,b6e9eb04-5d1c-3985-b7ee-a2e9fa35cd09 +2022,Entre Rios,I.3.1,87.49249999999999,TJ,CH4,3.0,kg/TJ,262.47749999999996,Motor Gasoline combustion consumption by petrochemical industries,AR-E,SESCO,annual,kg,ecbf0ae4-abfd-30ad-9231-f3263c66d65d +2022,Entre Rios,I.3.1,87.49249999999999,TJ,N2O,0.6,kg/TJ,52.49549999999999,Motor Gasoline combustion consumption by petrochemical industries,AR-E,SESCO,annual,kg,82432199-f1aa-30b4-9765-303324cab470 +2022,Misiones,I.3.1,242.32099999999997,TJ,CO2,69300.0,kg/TJ,16792845.299999997,Motor Gasoline combustion consumption by petrochemical industries,AR-N,SESCO,annual,kg,13cd5577-236e-38f1-abc5-e891a38101a3 +2022,Misiones,I.3.1,242.32099999999997,TJ,CH4,3.0,kg/TJ,726.963,Motor Gasoline combustion consumption by petrochemical industries,AR-N,SESCO,annual,kg,64c47687-4266-375b-b8dd-0e68f8b88965 +2022,Misiones,I.3.1,242.32099999999997,TJ,N2O,0.6,kg/TJ,145.3926,Motor Gasoline combustion consumption by petrochemical industries,AR-N,SESCO,annual,kg,0227046b-96bf-3463-a580-626a61f6d21c +2022,Neuquén,I.3.1,31.497299999999996,TJ,CO2,69300.0,kg/TJ,2182762.8899999997,Motor Gasoline combustion consumption by petrochemical industries,AR-Q,SESCO,annual,kg,60b90bde-a17f-3b39-a6d2-690e3aa35d68 +2022,Neuquén,I.3.1,31.497299999999996,TJ,CH4,3.0,kg/TJ,94.49189999999999,Motor Gasoline combustion consumption by petrochemical industries,AR-Q,SESCO,annual,kg,662ddf1c-1657-3bb9-8a04-f254ca316c49 +2022,Neuquén,I.3.1,31.497299999999996,TJ,N2O,0.6,kg/TJ,18.898379999999996,Motor Gasoline combustion consumption by petrochemical industries,AR-Q,SESCO,annual,kg,825ed57a-eba5-31e0-898c-e80d0916bd11 +2022,Santa Fe,I.3.1,113.4523,TJ,CO2,69300.0,kg/TJ,7862244.39,Motor Gasoline combustion consumption by petrochemical industries,AR-S,SESCO,annual,kg,a581eca8-a732-3948-8c2f-701d5ebcadda +2022,Santa Fe,I.3.1,113.4523,TJ,CH4,3.0,kg/TJ,340.3569,Motor Gasoline combustion consumption by petrochemical industries,AR-S,SESCO,annual,kg,d5895230-33c0-39b0-9692-9c4efb42e84a +2022,Santa Fe,I.3.1,113.4523,TJ,N2O,0.6,kg/TJ,68.07137999999999,Motor Gasoline combustion consumption by petrochemical industries,AR-S,SESCO,annual,kg,67f61661-8b6a-317a-92a6-04125ea0730e +2022,Buenos Aires,I.3.1,473.09976,TJ,CO2,74100.0,kg/TJ,35056692.216,Gas Oil combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,3623d107-60bc-3e80-be2b-37372bd9d05a +2022,Buenos Aires,I.3.1,473.09976,TJ,CH4,3.0,kg/TJ,1419.29928,Gas Oil combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,010cedc0-b879-3b8a-a564-b25dfcf1e743 +2022,Buenos Aires,I.3.1,473.09976,TJ,N2O,0.6,kg/TJ,283.859856,Gas Oil combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,46de2989-0c15-319a-9be5-9bd3bacd7469 +2022,Capital Federal,I.3.1,17.08476,TJ,CO2,74100.0,kg/TJ,1265980.716,Gas Oil combustion consumption by petrochemical industries,AR-C,SESCO,annual,kg,902f43ee-f480-367b-9b5f-0c85fff64dcb +2022,Capital Federal,I.3.1,17.08476,TJ,CH4,3.0,kg/TJ,51.254279999999994,Gas Oil combustion consumption by petrochemical industries,AR-C,SESCO,annual,kg,8c86991b-9b80-313c-aa27-4a1b2718cca4 +2022,Capital Federal,I.3.1,17.08476,TJ,N2O,0.6,kg/TJ,10.250855999999999,Gas Oil combustion consumption by petrochemical industries,AR-C,SESCO,annual,kg,cb6dbdbf-6de9-32d5-8a45-e9f459d94929 +2022,Córdoba,I.3.1,57.32244,TJ,CO2,74100.0,kg/TJ,4247592.8040000005,Gas Oil combustion consumption by petrochemical industries,AR-X,SESCO,annual,kg,99a53f94-17cc-3e33-a4ff-fb5dabd038a9 +2022,Córdoba,I.3.1,57.32244,TJ,CH4,3.0,kg/TJ,171.96732,Gas Oil combustion consumption by petrochemical industries,AR-X,SESCO,annual,kg,0242733f-eee0-3ced-931f-17e0c25e4d99 +2022,Córdoba,I.3.1,57.32244,TJ,N2O,0.6,kg/TJ,34.393464,Gas Oil combustion consumption by petrochemical industries,AR-X,SESCO,annual,kg,cb816d85-a44d-3bb4-9863-ac0c5fc222b3 +2022,Entre Rios,I.3.1,25.71744,TJ,CO2,74100.0,kg/TJ,1905662.304,Gas Oil combustion consumption by petrochemical industries,AR-E,SESCO,annual,kg,08fc1251-0955-302f-95f3-643aa207cfaa +2022,Entre Rios,I.3.1,25.71744,TJ,CH4,3.0,kg/TJ,77.15232,Gas Oil combustion consumption by petrochemical industries,AR-E,SESCO,annual,kg,243ed565-0dc7-3e44-819f-85dcff776eb9 +2022,Entre Rios,I.3.1,25.71744,TJ,N2O,0.6,kg/TJ,15.430463999999999,Gas Oil combustion consumption by petrochemical industries,AR-E,SESCO,annual,kg,7969e277-e895-313d-8d5d-cc15403dccfa +2022,Mendoza,I.3.1,24.850559999999998,TJ,CO2,74100.0,kg/TJ,1841426.4959999998,Gas Oil combustion consumption by petrochemical industries,AR-M,SESCO,annual,kg,6985562a-c5d4-31fa-bb69-20c51f6c61a3 +2022,Mendoza,I.3.1,24.850559999999998,TJ,CH4,3.0,kg/TJ,74.55167999999999,Gas Oil combustion consumption by petrochemical industries,AR-M,SESCO,annual,kg,7d2a8e14-8cee-3d58-94de-a9fa34c3cdb9 +2022,Mendoza,I.3.1,24.850559999999998,TJ,N2O,0.6,kg/TJ,14.910335999999997,Gas Oil combustion consumption by petrochemical industries,AR-M,SESCO,annual,kg,5d8dfa0b-c880-374c-9f2f-15390a03fa4b +2022,Misiones,I.3.1,20.51616,TJ,CO2,74100.0,kg/TJ,1520247.456,Gas Oil combustion consumption by petrochemical industries,AR-N,SESCO,annual,kg,4fc92e43-b550-3511-91bf-e3bf55b3e811 +2022,Misiones,I.3.1,20.51616,TJ,CH4,3.0,kg/TJ,61.54848,Gas Oil combustion consumption by petrochemical industries,AR-N,SESCO,annual,kg,fed4b591-7993-36b8-bf4c-c9142df837bb +2022,Misiones,I.3.1,20.51616,TJ,N2O,0.6,kg/TJ,12.309695999999999,Gas Oil combustion consumption by petrochemical industries,AR-N,SESCO,annual,kg,e409bb53-210e-3550-a2f9-c2faa8ab5247 +2022,Neuquén,I.3.1,384.64187999999996,TJ,CO2,74100.0,kg/TJ,28501963.308,Gas Oil combustion consumption by petrochemical industries,AR-Q,SESCO,annual,kg,c5a0461c-ae04-3bac-b45f-c4e0971b6abd +2022,Neuquén,I.3.1,384.64187999999996,TJ,CH4,3.0,kg/TJ,1153.92564,Gas Oil combustion consumption by petrochemical industries,AR-Q,SESCO,annual,kg,4ed42759-bd2a-3446-85d2-69d629961a31 +2022,Neuquén,I.3.1,384.64187999999996,TJ,N2O,0.6,kg/TJ,230.78512799999996,Gas Oil combustion consumption by petrochemical industries,AR-Q,SESCO,annual,kg,f08e356f-bf4e-387a-b0aa-5429325f5537 +2022,Salta,I.3.1,137.58108,TJ,CO2,74100.0,kg/TJ,10194758.027999999,Gas Oil combustion consumption by petrochemical industries,AR-A,SESCO,annual,kg,f893ae21-d929-31c0-948f-568b3080dc04 +2022,Salta,I.3.1,137.58108,TJ,CH4,3.0,kg/TJ,412.74323999999996,Gas Oil combustion consumption by petrochemical industries,AR-A,SESCO,annual,kg,283a3bcf-a8f0-3928-8948-5d481749da5f +2022,Salta,I.3.1,137.58108,TJ,N2O,0.6,kg/TJ,82.54864799999999,Gas Oil combustion consumption by petrochemical industries,AR-A,SESCO,annual,kg,5e1a6709-d1a7-3d12-90db-e021538e1cef +2022,San Juan,I.3.1,53.20476,TJ,CO2,74100.0,kg/TJ,3942472.716,Gas Oil combustion consumption by petrochemical industries,AR-J,SESCO,annual,kg,b75ae798-d28a-32f1-aef1-34934f1ff883 +2022,San Juan,I.3.1,53.20476,TJ,CH4,3.0,kg/TJ,159.61428,Gas Oil combustion consumption by petrochemical industries,AR-J,SESCO,annual,kg,c39153a3-2199-34d6-b322-10fa7f1defcc +2022,San Juan,I.3.1,53.20476,TJ,N2O,0.6,kg/TJ,31.922856,Gas Oil combustion consumption by petrochemical industries,AR-J,SESCO,annual,kg,b7953ef8-27c9-390c-9dce-de8256ce8f17 +2022,Santa Fe,I.3.1,97.66848,TJ,CO2,74100.0,kg/TJ,7237234.368,Gas Oil combustion consumption by petrochemical industries,AR-S,SESCO,annual,kg,63d92394-7516-339e-83ad-feea07671e0a +2022,Santa Fe,I.3.1,97.66848,TJ,CH4,3.0,kg/TJ,293.00544,Gas Oil combustion consumption by petrochemical industries,AR-S,SESCO,annual,kg,42b41c86-1ebb-3e22-8abc-e92afabe332e +2022,Santa Fe,I.3.1,97.66848,TJ,N2O,0.6,kg/TJ,58.601088,Gas Oil combustion consumption by petrochemical industries,AR-S,SESCO,annual,kg,c5a5855f-411d-396f-b6f7-7250872e70b1 +2022,Tucuman,I.3.1,107.2764,TJ,CO2,74100.0,kg/TJ,7949181.239999999,Gas Oil combustion consumption by petrochemical industries,AR-T,SESCO,annual,kg,caf0251f-841a-3fbd-96b0-576b71d1ce24 +2022,Tucuman,I.3.1,107.2764,TJ,CH4,3.0,kg/TJ,321.8292,Gas Oil combustion consumption by petrochemical industries,AR-T,SESCO,annual,kg,2c2409bc-0d89-3019-ace2-21667a011c3c +2022,Tucuman,I.3.1,107.2764,TJ,N2O,0.6,kg/TJ,64.36583999999999,Gas Oil combustion consumption by petrochemical industries,AR-T,SESCO,annual,kg,e64f734c-cfda-339a-a8e3-054629b9ac96 +2022,Buenos Aires,I.3.1,51.86832,TJ,CO2,74100.0,kg/TJ,3843442.5119999996,Gas Oil combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,4300c65f-006e-311c-8485-43f8830ee634 +2022,Buenos Aires,I.3.1,51.86832,TJ,CH4,3.0,kg/TJ,155.60496,Gas Oil combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,9f0f2529-f67c-3a0f-9dd1-99559abbdd6a +2022,Buenos Aires,I.3.1,51.86832,TJ,N2O,0.6,kg/TJ,31.120991999999998,Gas Oil combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,616aadba-0115-36dd-a35d-f496a249d279 +2022,Capital Federal,I.3.1,27.993,TJ,CO2,74100.0,kg/TJ,2074281.2999999998,Gas Oil combustion consumption by petrochemical industries,AR-C,SESCO,annual,kg,65e40cee-60f2-3e9f-92fa-cd723c763e61 +2022,Capital Federal,I.3.1,27.993,TJ,CH4,3.0,kg/TJ,83.979,Gas Oil combustion consumption by petrochemical industries,AR-C,SESCO,annual,kg,d7b68c6e-a22d-3c05-be1b-8a15ca7acc87 +2022,Capital Federal,I.3.1,27.993,TJ,N2O,0.6,kg/TJ,16.7958,Gas Oil combustion consumption by petrochemical industries,AR-C,SESCO,annual,kg,bd4df396-499b-3fa7-b285-e2a1a0ead1f5 +2022,Córdoba,I.3.1,1.30032,TJ,CO2,74100.0,kg/TJ,96353.712,Gas Oil combustion consumption by petrochemical industries,AR-X,SESCO,annual,kg,970d3eae-0f58-3dcf-89e1-5ece150b55a1 +2022,Córdoba,I.3.1,1.30032,TJ,CH4,3.0,kg/TJ,3.9009599999999995,Gas Oil combustion consumption by petrochemical industries,AR-X,SESCO,annual,kg,3fdb7657-7e4a-31eb-9101-0c9e95df1605 +2022,Córdoba,I.3.1,1.30032,TJ,N2O,0.6,kg/TJ,0.7801919999999999,Gas Oil combustion consumption by petrochemical industries,AR-X,SESCO,annual,kg,83821e8c-f7d1-3b17-af82-b7f6863c986b +2022,Entre Rios,I.3.1,7.51296,TJ,CO2,74100.0,kg/TJ,556710.336,Gas Oil combustion consumption by petrochemical industries,AR-E,SESCO,annual,kg,3a55a036-ef63-3cb0-a7b2-64e3c1ec9845 +2022,Entre Rios,I.3.1,7.51296,TJ,CH4,3.0,kg/TJ,22.53888,Gas Oil combustion consumption by petrochemical industries,AR-E,SESCO,annual,kg,1bbfa9b1-f124-3a4e-bf24-23dd1a9c5b9a +2022,Entre Rios,I.3.1,7.51296,TJ,N2O,0.6,kg/TJ,4.507776,Gas Oil combustion consumption by petrochemical industries,AR-E,SESCO,annual,kg,ebcab55b-fab7-35ed-a6ca-0612f418028a +2022,Jujuy,I.3.1,1.30032,TJ,CO2,74100.0,kg/TJ,96353.712,Gas Oil combustion consumption by petrochemical industries,AR-Y,SESCO,annual,kg,b1112592-01c6-34a0-bd93-f4400724d5fb +2022,Jujuy,I.3.1,1.30032,TJ,CH4,3.0,kg/TJ,3.9009599999999995,Gas Oil combustion consumption by petrochemical industries,AR-Y,SESCO,annual,kg,c8a4d729-3f85-3a2e-9f3d-0cc7cace5823 +2022,Jujuy,I.3.1,1.30032,TJ,N2O,0.6,kg/TJ,0.7801919999999999,Gas Oil combustion consumption by petrochemical industries,AR-Y,SESCO,annual,kg,5b554611-21bd-328a-bfcb-e566202cbe71 +2022,Neuquén,I.3.1,307.99523999999997,TJ,CO2,74100.0,kg/TJ,22822447.283999998,Gas Oil combustion consumption by petrochemical industries,AR-Q,SESCO,annual,kg,1b3a0015-d0cd-3d7a-8ee2-5c507a786d2b +2022,Neuquén,I.3.1,307.99523999999997,TJ,CH4,3.0,kg/TJ,923.9857199999999,Gas Oil combustion consumption by petrochemical industries,AR-Q,SESCO,annual,kg,fdc7146e-3bb5-322b-af1d-fe84758d797e +2022,Neuquén,I.3.1,307.99523999999997,TJ,N2O,0.6,kg/TJ,184.79714399999997,Gas Oil combustion consumption by petrochemical industries,AR-Q,SESCO,annual,kg,ce9a3baf-e11a-36db-810d-47a90cea5ee2 +2022,Salta,I.3.1,5.2374,TJ,CO2,74100.0,kg/TJ,388091.34,Gas Oil combustion consumption by petrochemical industries,AR-A,SESCO,annual,kg,3b86829d-2a19-3b41-ab2f-719d82e294c6 +2022,Salta,I.3.1,5.2374,TJ,CH4,3.0,kg/TJ,15.7122,Gas Oil combustion consumption by petrochemical industries,AR-A,SESCO,annual,kg,0a9125d1-0ead-3637-98ad-97af91dcf710 +2022,Salta,I.3.1,5.2374,TJ,N2O,0.6,kg/TJ,3.14244,Gas Oil combustion consumption by petrochemical industries,AR-A,SESCO,annual,kg,d92292d4-eed2-37c9-8255-8d4f9ffd264c +2022,Santa Fe,I.3.1,8.6688,TJ,CO2,74100.0,kg/TJ,642358.08,Gas Oil combustion consumption by petrochemical industries,AR-S,SESCO,annual,kg,74ea1a11-1c62-3361-bceb-f8d1681b76b3 +2022,Santa Fe,I.3.1,8.6688,TJ,CH4,3.0,kg/TJ,26.0064,Gas Oil combustion consumption by petrochemical industries,AR-S,SESCO,annual,kg,2e1a93e5-c52b-330a-a7fa-f7688667b1b1 +2022,Santa Fe,I.3.1,8.6688,TJ,N2O,0.6,kg/TJ,5.20128,Gas Oil combustion consumption by petrochemical industries,AR-S,SESCO,annual,kg,f61c44f4-9650-3602-93e8-1fa5518b9b16 +2022,Tucuman,I.3.1,11.197199999999999,TJ,CO2,74100.0,kg/TJ,829712.5199999999,Gas Oil combustion consumption by petrochemical industries,AR-T,SESCO,annual,kg,193fdf24-1525-3313-a2be-a583e5ff5e54 +2022,Tucuman,I.3.1,11.197199999999999,TJ,CH4,3.0,kg/TJ,33.5916,Gas Oil combustion consumption by petrochemical industries,AR-T,SESCO,annual,kg,d17c5352-8d18-356e-9f9c-7f21c898b93a +2022,Tucuman,I.3.1,11.197199999999999,TJ,N2O,0.6,kg/TJ,6.718319999999999,Gas Oil combustion consumption by petrochemical industries,AR-T,SESCO,annual,kg,d3fc3944-7ada-32c7-b433-50ab11001d15 +2022,Santa Fe,I.3.1,11.260174,TJ,CO2,71500.0,kg/TJ,805102.441,Jet Kerosene combustion consumption by petrochemical industries,AR-S,SESCO,annual,kg,f180a0e9-7023-3442-9108-47902eb7750f +2022,Santa Fe,I.3.1,11.260174,TJ,CH4,3.0,kg/TJ,33.780522,Jet Kerosene combustion consumption by petrochemical industries,AR-S,SESCO,annual,kg,4d845581-70af-329e-ba9c-b5487af0dae2 +2022,Santa Fe,I.3.1,11.260174,TJ,N2O,0.6,kg/TJ,6.756104399999999,Jet Kerosene combustion consumption by petrochemical industries,AR-S,SESCO,annual,kg,815d8611-b5cf-326c-97c4-3e1fc231a6d1 +2022,Buenos Aires,I.3.1,43.139635,TJ,CO2,73300.0,kg/TJ,3162135.2454999997,Naphtha combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,5624156a-fe37-3ab9-b5ab-a6b9af5b704e +2022,Buenos Aires,I.3.1,43.139635,TJ,CH4,3.0,kg/TJ,129.418905,Naphtha combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,f1459663-1f4c-3c0e-9238-c97c910fcdaf +2022,Buenos Aires,I.3.1,43.139635,TJ,N2O,0.6,kg/TJ,25.883781,Naphtha combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,53dc5342-9c88-37d0-b12b-6ead2f59af99 +2022,Misiones,I.3.1,0.6853,TJ,CO2,73300.0,kg/TJ,50232.49,Naphtha combustion consumption by petrochemical industries,AR-N,SESCO,annual,kg,5c04130d-475a-3849-8a10-7c53d10d3c0b +2022,Misiones,I.3.1,0.6853,TJ,CH4,3.0,kg/TJ,2.0559000000000003,Naphtha combustion consumption by petrochemical industries,AR-N,SESCO,annual,kg,f0b14f09-a430-3319-beed-7687c6ea8312 +2022,Misiones,I.3.1,0.6853,TJ,N2O,0.6,kg/TJ,0.41118,Naphtha combustion consumption by petrochemical industries,AR-N,SESCO,annual,kg,33c71f22-4b83-3712-a98c-e4a1aa513cbc +2022,Buenos Aires,I.3.1,13.911589999999999,TJ,CO2,73300.0,kg/TJ,1019719.5469999999,Naphtha combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,4abba499-8a02-3abf-889a-c803b9ada2c3 +2022,Buenos Aires,I.3.1,13.911589999999999,TJ,CH4,3.0,kg/TJ,41.73477,Naphtha combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,1da6c494-2a83-33d2-87ce-9064d96e8714 +2022,Buenos Aires,I.3.1,13.911589999999999,TJ,N2O,0.6,kg/TJ,8.346953999999998,Naphtha combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,e805512f-8382-33d2-9559-886e26bae119 +2022,Chubut,I.3.1,0.54824,TJ,CO2,73300.0,kg/TJ,40185.992,Naphtha combustion consumption by petrochemical industries,AR-U,SESCO,annual,kg,e42b3e90-ccc5-3d49-b55c-c75566647744 +2022,Chubut,I.3.1,0.54824,TJ,CH4,3.0,kg/TJ,1.64472,Naphtha combustion consumption by petrochemical industries,AR-U,SESCO,annual,kg,0e98d0ff-3da7-38c6-9904-f82c461f60d2 +2022,Chubut,I.3.1,0.54824,TJ,N2O,0.6,kg/TJ,0.32894399999999996,Naphtha combustion consumption by petrochemical industries,AR-U,SESCO,annual,kg,d6368835-c3f0-33d2-a9bd-cdf2710f7f5e +2022,Córdoba,I.3.1,2.158695,TJ,CO2,73300.0,kg/TJ,158232.3435,Naphtha combustion consumption by petrochemical industries,AR-X,SESCO,annual,kg,fa899f50-678c-399e-bdc0-1b15e7bc4ee1 +2022,Córdoba,I.3.1,2.158695,TJ,CH4,3.0,kg/TJ,6.476084999999999,Naphtha combustion consumption by petrochemical industries,AR-X,SESCO,annual,kg,9af556a0-f071-3386-add4-f1af42b6cc23 +2022,Córdoba,I.3.1,2.158695,TJ,N2O,0.6,kg/TJ,1.2952169999999998,Naphtha combustion consumption by petrochemical industries,AR-X,SESCO,annual,kg,0f0da848-20a2-382d-b624-69043e2de764 +2022,Entre Rios,I.3.1,2.090165,TJ,CO2,73300.0,kg/TJ,153209.09449999998,Naphtha combustion consumption by petrochemical industries,AR-E,SESCO,annual,kg,d473240c-fa75-3807-952f-98555e38dd54 +2022,Entre Rios,I.3.1,2.090165,TJ,CH4,3.0,kg/TJ,6.2704949999999995,Naphtha combustion consumption by petrochemical industries,AR-E,SESCO,annual,kg,216090a0-bab6-31f3-8bc3-34d444b5ccce +2022,Entre Rios,I.3.1,2.090165,TJ,N2O,0.6,kg/TJ,1.2540989999999999,Naphtha combustion consumption by petrochemical industries,AR-E,SESCO,annual,kg,1d8bfee8-7525-3d40-9a32-99b2cb449d4b +2022,La Pampa,I.3.1,1.3363349999999998,TJ,CO2,73300.0,kg/TJ,97953.35549999999,Naphtha combustion consumption by petrochemical industries,AR-L,SESCO,annual,kg,2fc47e62-1f54-30b0-bc6e-ce08f8681141 +2022,La Pampa,I.3.1,1.3363349999999998,TJ,CH4,3.0,kg/TJ,4.009004999999999,Naphtha combustion consumption by petrochemical industries,AR-L,SESCO,annual,kg,83c43892-f465-34d2-8c2f-ef617e6dcd78 +2022,La Pampa,I.3.1,1.3363349999999998,TJ,N2O,0.6,kg/TJ,0.8018009999999999,Naphtha combustion consumption by petrochemical industries,AR-L,SESCO,annual,kg,f3b50fb7-3a2d-303e-b6bc-9c85fb3ebf15 +2022,Misiones,I.3.1,1.1650099999999999,TJ,CO2,73300.0,kg/TJ,85395.233,Naphtha combustion consumption by petrochemical industries,AR-N,SESCO,annual,kg,8ccfcddd-1b0d-3dd5-b7f1-6c85932f3ef6 +2022,Misiones,I.3.1,1.1650099999999999,TJ,CH4,3.0,kg/TJ,3.49503,Naphtha combustion consumption by petrochemical industries,AR-N,SESCO,annual,kg,00075a4b-c00a-396e-90a9-6a364f8ea353 +2022,Misiones,I.3.1,1.1650099999999999,TJ,N2O,0.6,kg/TJ,0.6990059999999999,Naphtha combustion consumption by petrochemical industries,AR-N,SESCO,annual,kg,d40bf6f5-600f-317f-a0ff-73ce173787b3 +2022,Neuquén,I.3.1,1.473395,TJ,CO2,73300.0,kg/TJ,107999.8535,Naphtha combustion consumption by petrochemical industries,AR-Q,SESCO,annual,kg,08494281-b2c4-34d1-b821-f867c22a05cf +2022,Neuquén,I.3.1,1.473395,TJ,CH4,3.0,kg/TJ,4.420185,Naphtha combustion consumption by petrochemical industries,AR-Q,SESCO,annual,kg,5bb54a36-a5b0-3e42-b228-da894d0aba9f +2022,Neuquén,I.3.1,1.473395,TJ,N2O,0.6,kg/TJ,0.884037,Naphtha combustion consumption by petrochemical industries,AR-Q,SESCO,annual,kg,9a61cacc-3fb8-34f2-9592-cb665ce64a54 +2022,Rio Negro,I.3.1,0.5825049999999999,TJ,CO2,73300.0,kg/TJ,42697.6165,Naphtha combustion consumption by petrochemical industries,AR-R,SESCO,annual,kg,ed5d9d75-c5fe-30a7-9d8d-c1e8c4ed864c +2022,Rio Negro,I.3.1,0.5825049999999999,TJ,CH4,3.0,kg/TJ,1.747515,Naphtha combustion consumption by petrochemical industries,AR-R,SESCO,annual,kg,3a217a60-c3e2-3538-bc3c-4d4a300af253 +2022,Rio Negro,I.3.1,0.5825049999999999,TJ,N2O,0.6,kg/TJ,0.34950299999999995,Naphtha combustion consumption by petrochemical industries,AR-R,SESCO,annual,kg,e42cafdf-0b93-3d1e-85be-3a307d8ee764 +2022,San Juan,I.3.1,1.43913,TJ,CO2,73300.0,kg/TJ,105488.229,Naphtha combustion consumption by petrochemical industries,AR-J,SESCO,annual,kg,89eef653-04a0-3e91-98a7-7c4b8006dd81 +2022,San Juan,I.3.1,1.43913,TJ,CH4,3.0,kg/TJ,4.31739,Naphtha combustion consumption by petrochemical industries,AR-J,SESCO,annual,kg,dede45d5-19fb-3664-9f55-5d5f2ecc26db +2022,San Juan,I.3.1,1.43913,TJ,N2O,0.6,kg/TJ,0.863478,Naphtha combustion consumption by petrochemical industries,AR-J,SESCO,annual,kg,113832db-691b-3e8c-8f31-65d92bd764f5 +2022,San Luis,I.3.1,0.6510349999999999,TJ,CO2,73300.0,kg/TJ,47720.86549999999,Naphtha combustion consumption by petrochemical industries,AR-D,SESCO,annual,kg,bc972c26-f5bf-3864-95f5-370fa5910c85 +2022,San Luis,I.3.1,0.6510349999999999,TJ,CH4,3.0,kg/TJ,1.9531049999999999,Naphtha combustion consumption by petrochemical industries,AR-D,SESCO,annual,kg,8b63d1f4-152e-337f-b867-f9b1afb8bbbf +2022,San Luis,I.3.1,0.6510349999999999,TJ,N2O,0.6,kg/TJ,0.39062099999999994,Naphtha combustion consumption by petrochemical industries,AR-D,SESCO,annual,kg,e682ce45-cc74-30cc-9e9b-901bef117a94 +2022,Santa Fe,I.3.1,0.856625,TJ,CO2,73300.0,kg/TJ,62790.612499999996,Naphtha combustion consumption by petrochemical industries,AR-S,SESCO,annual,kg,c68e5013-b0d4-395d-b085-dae0af2e02c4 +2022,Santa Fe,I.3.1,0.856625,TJ,CH4,3.0,kg/TJ,2.5698749999999997,Naphtha combustion consumption by petrochemical industries,AR-S,SESCO,annual,kg,8174c497-492e-31dc-b5b8-6e05b002ecb7 +2022,Santa Fe,I.3.1,0.856625,TJ,N2O,0.6,kg/TJ,0.513975,Naphtha combustion consumption by petrochemical industries,AR-S,SESCO,annual,kg,ea03b350-eb4e-3639-94d8-fd97e54914d4 +2022,Santiago del Estero,I.3.1,0.6167699999999999,TJ,CO2,73300.0,kg/TJ,45209.240999999995,Naphtha combustion consumption by petrochemical industries,AR-G,SESCO,annual,kg,fc15b9bc-c95d-3747-acd6-78e081f85bf2 +2022,Santiago del Estero,I.3.1,0.6167699999999999,TJ,CH4,3.0,kg/TJ,1.85031,Naphtha combustion consumption by petrochemical industries,AR-G,SESCO,annual,kg,ef9983c9-981f-3229-a76d-2316b437b57e +2022,Santiago del Estero,I.3.1,0.6167699999999999,TJ,N2O,0.6,kg/TJ,0.37006199999999995,Naphtha combustion consumption by petrochemical industries,AR-G,SESCO,annual,kg,0ec5bc78-0f0a-3711-970a-0b432e664cff +2022,Tucuman,I.3.1,0.376915,TJ,CO2,73300.0,kg/TJ,27627.8695,Naphtha combustion consumption by petrochemical industries,AR-T,SESCO,annual,kg,a2fd449c-eed6-34a4-826f-1d90ab45a336 +2022,Tucuman,I.3.1,0.376915,TJ,CH4,3.0,kg/TJ,1.1307450000000001,Naphtha combustion consumption by petrochemical industries,AR-T,SESCO,annual,kg,94cfbc95-26fb-365e-a749-5e551f07350c +2022,Tucuman,I.3.1,0.376915,TJ,N2O,0.6,kg/TJ,0.226149,Naphtha combustion consumption by petrochemical industries,AR-T,SESCO,annual,kg,b31d81ba-daa0-396f-be7a-d64b4c562d4d +2022,Capital Federal,I.3.1,1865.6949849999999,TJ,CO2,73300.0,kg/TJ,136755442.4005,Naphtha combustion consumption by petrochemical industries,AR-C,SESCO,annual,kg,43f5a43f-edae-35ed-b1bc-f22d8823533f +2022,Capital Federal,I.3.1,1865.6949849999999,TJ,CH4,3.0,kg/TJ,5597.084954999999,Naphtha combustion consumption by petrochemical industries,AR-C,SESCO,annual,kg,8e17b975-0c75-3585-b44e-369c18a321c5 +2022,Capital Federal,I.3.1,1865.6949849999999,TJ,N2O,0.6,kg/TJ,1119.4169909999998,Naphtha combustion consumption by petrochemical industries,AR-C,SESCO,annual,kg,519360e3-0af1-3675-80f4-d00c64eed56a +2023,Buenos Aires,I.3.1,6.10428,TJ,CO2,74100.0,kg/TJ,452327.148,Gas Oil combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,38d50a01-4c02-3e61-b960-eed817530016 +2023,Buenos Aires,I.3.1,6.10428,TJ,CH4,3.0,kg/TJ,18.31284,Gas Oil combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,4502772f-fb8b-3635-9532-7de5f077f52c +2023,Buenos Aires,I.3.1,6.10428,TJ,N2O,0.6,kg/TJ,3.662568,Gas Oil combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,d3056a9a-eb13-31ea-89bc-d40223f070dc +2023,Buenos Aires,I.3.1,0.93912,TJ,CO2,74100.0,kg/TJ,69588.792,Gas Oil combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,10105257-5bf4-32d5-b89e-2e9e60bd79e3 +2023,Buenos Aires,I.3.1,0.93912,TJ,CH4,3.0,kg/TJ,2.81736,Gas Oil combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,09678e73-de89-36c6-8659-025029d8de89 +2023,Buenos Aires,I.3.1,0.93912,TJ,N2O,0.6,kg/TJ,0.563472,Gas Oil combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,7f902a92-7b05-3ef4-9365-2b9757c677cb +2023,La Rioja,I.3.1,5.99592,TJ,CO2,74100.0,kg/TJ,444297.672,Gas Oil combustion consumption by petrochemical industries,AR-F,SESCO,annual,kg,dcb2ef54-0606-3fb7-9c50-6e655740a436 +2023,La Rioja,I.3.1,5.99592,TJ,CH4,3.0,kg/TJ,17.98776,Gas Oil combustion consumption by petrochemical industries,AR-F,SESCO,annual,kg,923fcbb8-bfad-38dc-a374-8a0ece589fab +2023,La Rioja,I.3.1,5.99592,TJ,N2O,0.6,kg/TJ,3.597552,Gas Oil combustion consumption by petrochemical industries,AR-F,SESCO,annual,kg,050b2480-9513-3e9f-bcfe-0fb788fd5e9c +2023,Capital Federal,I.3.1,0.25162399999999996,TJ,CO2,71500.0,kg/TJ,17991.115999999998,Jet Kerosene combustion consumption by petrochemical industries,AR-C,SESCO,annual,kg,62865a33-398c-3e39-bcf5-2a4e18046d58 +2023,Capital Federal,I.3.1,0.25162399999999996,TJ,CH4,3.0,kg/TJ,0.7548719999999999,Jet Kerosene combustion consumption by petrochemical industries,AR-C,SESCO,annual,kg,ecc6600a-6992-3e94-9847-2d2a995c780d +2023,Capital Federal,I.3.1,0.25162399999999996,TJ,N2O,0.6,kg/TJ,0.15097439999999998,Jet Kerosene combustion consumption by petrochemical industries,AR-C,SESCO,annual,kg,e2c30392-61e2-3279-b08a-d5c3fc782d51 +2023,San Juan,I.3.1,15.134279999999999,TJ,CO2,74100.0,kg/TJ,1121450.1479999998,Gas Oil combustion consumption by petrochemical industries,AR-J,SESCO,annual,kg,e2232609-5b78-3db5-ba64-fed03067f1c8 +2023,San Juan,I.3.1,15.134279999999999,TJ,CH4,3.0,kg/TJ,45.40284,Gas Oil combustion consumption by petrochemical industries,AR-J,SESCO,annual,kg,af878345-ec07-375c-a85c-14d521476fd5 +2023,San Juan,I.3.1,15.134279999999999,TJ,N2O,0.6,kg/TJ,9.080568,Gas Oil combustion consumption by petrochemical industries,AR-J,SESCO,annual,kg,600fb8e9-2083-37cf-b135-221b882f9922 +2023,Buenos Aires,I.3.1,15.504999999999997,TJ,CO2,69300.0,kg/TJ,1074496.4999999998,Motor Gasoline combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,88b0ec71-a61c-3a07-a730-efffc711d345 +2023,Buenos Aires,I.3.1,15.504999999999997,TJ,CH4,3.0,kg/TJ,46.51499999999999,Motor Gasoline combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,dfd143e2-73ff-3ccc-ae02-838016b6cf95 +2023,Buenos Aires,I.3.1,15.504999999999997,TJ,N2O,0.6,kg/TJ,9.302999999999997,Motor Gasoline combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,622528bc-b0ef-3f33-ae61-55981bddb9ae +2023,Capital Federal,I.3.1,11.7838,TJ,CO2,69300.0,kg/TJ,816617.34,Motor Gasoline combustion consumption by petrochemical industries,AR-C,SESCO,annual,kg,d1ec0dbd-d30d-3221-bba6-25eea9ff6caf +2023,Capital Federal,I.3.1,11.7838,TJ,CH4,3.0,kg/TJ,35.3514,Motor Gasoline combustion consumption by petrochemical industries,AR-C,SESCO,annual,kg,31726889-dead-3638-831b-c97f14dc933d +2023,Capital Federal,I.3.1,11.7838,TJ,N2O,0.6,kg/TJ,7.0702799999999995,Motor Gasoline combustion consumption by petrochemical industries,AR-C,SESCO,annual,kg,fa033db4-be80-3935-add4-745a126c659f +2023,Córdoba,I.3.1,21.7956,TJ,CO2,69300.0,kg/TJ,1510435.08,Motor Gasoline combustion consumption by petrochemical industries,AR-X,SESCO,annual,kg,69c42cde-bdcc-3f08-a7ba-3c9d2e2f73c5 +2023,Córdoba,I.3.1,21.7956,TJ,CH4,3.0,kg/TJ,65.3868,Motor Gasoline combustion consumption by petrochemical industries,AR-X,SESCO,annual,kg,21967917-6434-3c7b-921f-56a0a5049fef +2023,Córdoba,I.3.1,21.7956,TJ,N2O,0.6,kg/TJ,13.07736,Motor Gasoline combustion consumption by petrochemical industries,AR-X,SESCO,annual,kg,c452df03-bbab-35bc-b249-be671515e4ec +2023,Entre Rios,I.3.1,14.043099999999999,TJ,CO2,69300.0,kg/TJ,973186.83,Motor Gasoline combustion consumption by petrochemical industries,AR-E,SESCO,annual,kg,9c2ef8b4-db87-3a59-abbd-e0539c9296df +2023,Entre Rios,I.3.1,14.043099999999999,TJ,CH4,3.0,kg/TJ,42.1293,Motor Gasoline combustion consumption by petrochemical industries,AR-E,SESCO,annual,kg,67cf3223-78e0-3e45-b0eb-e856b2a3c3e9 +2023,Entre Rios,I.3.1,14.043099999999999,TJ,N2O,0.6,kg/TJ,8.425859999999998,Motor Gasoline combustion consumption by petrochemical industries,AR-E,SESCO,annual,kg,da981a75-a304-3a45-8b94-6e9c758e2f31 +2023,Misiones,I.3.1,50.059,TJ,CO2,69300.0,kg/TJ,3469088.6999999997,Motor Gasoline combustion consumption by petrochemical industries,AR-N,SESCO,annual,kg,8d4a8af3-b305-332c-9311-75af556f8234 +2023,Misiones,I.3.1,50.059,TJ,CH4,3.0,kg/TJ,150.177,Motor Gasoline combustion consumption by petrochemical industries,AR-N,SESCO,annual,kg,fc3f3e2e-53c0-3766-8f74-141b985f8ed5 +2023,Misiones,I.3.1,50.059,TJ,N2O,0.6,kg/TJ,30.035399999999996,Motor Gasoline combustion consumption by petrochemical industries,AR-N,SESCO,annual,kg,6c958d3c-0050-3175-aa4a-04f1015c6390 +2023,Neuquén,I.3.1,7.1323,TJ,CO2,69300.0,kg/TJ,494268.39,Motor Gasoline combustion consumption by petrochemical industries,AR-Q,SESCO,annual,kg,172dd75b-7117-3fbf-af5d-51895d063c28 +2023,Neuquén,I.3.1,7.1323,TJ,CH4,3.0,kg/TJ,21.3969,Motor Gasoline combustion consumption by petrochemical industries,AR-Q,SESCO,annual,kg,a8204468-35d7-3cd7-9832-8d2b60a108a5 +2023,Neuquén,I.3.1,7.1323,TJ,N2O,0.6,kg/TJ,4.27938,Motor Gasoline combustion consumption by petrochemical industries,AR-Q,SESCO,annual,kg,0a846964-1049-3934-8fe4-32405889ba46 +2023,Santa Fe,I.3.1,30.877099999999995,TJ,CO2,69300.0,kg/TJ,2139783.03,Motor Gasoline combustion consumption by petrochemical industries,AR-S,SESCO,annual,kg,a376646d-e1fa-3314-be70-b434c496d8c2 +2023,Santa Fe,I.3.1,30.877099999999995,TJ,CH4,3.0,kg/TJ,92.63129999999998,Motor Gasoline combustion consumption by petrochemical industries,AR-S,SESCO,annual,kg,cc967238-91ab-302e-9aba-707a44d4d14c +2023,Santa Fe,I.3.1,30.877099999999995,TJ,N2O,0.6,kg/TJ,18.526259999999997,Motor Gasoline combustion consumption by petrochemical industries,AR-S,SESCO,annual,kg,73d9c2c5-f21f-38f8-94fe-7f59a1695eda +2023,Buenos Aires,I.3.1,82.46195999999999,TJ,CO2,74100.0,kg/TJ,6110431.236,Gas Oil combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,026b73a9-200f-39fc-afcb-9f49902bcb59 +2023,Buenos Aires,I.3.1,82.46195999999999,TJ,CH4,3.0,kg/TJ,247.38588,Gas Oil combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,8c39d1bf-8cc3-3229-bbad-6e3d240a2827 +2023,Buenos Aires,I.3.1,82.46195999999999,TJ,N2O,0.6,kg/TJ,49.47717599999999,Gas Oil combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,001061ad-80c4-336e-b9ac-68df9e0cb167 +2023,Córdoba,I.3.1,8.56044,TJ,CO2,74100.0,kg/TJ,634328.6039999999,Gas Oil combustion consumption by petrochemical industries,AR-X,SESCO,annual,kg,b0a4daae-79f4-3410-822a-2e8e0be45772 +2023,Córdoba,I.3.1,8.56044,TJ,CH4,3.0,kg/TJ,25.68132,Gas Oil combustion consumption by petrochemical industries,AR-X,SESCO,annual,kg,1d3b8e73-5834-3e4c-8247-481947ae1d3f +2023,Córdoba,I.3.1,8.56044,TJ,N2O,0.6,kg/TJ,5.136264,Gas Oil combustion consumption by petrochemical industries,AR-X,SESCO,annual,kg,0dc0de14-7052-3825-97b0-ed35821f192a +2023,Entre Rios,I.3.1,3.90096,TJ,CO2,74100.0,kg/TJ,289061.136,Gas Oil combustion consumption by petrochemical industries,AR-E,SESCO,annual,kg,1789b9ed-ba28-3442-ae90-86914f72e73e +2023,Entre Rios,I.3.1,3.90096,TJ,CH4,3.0,kg/TJ,11.70288,Gas Oil combustion consumption by petrochemical industries,AR-E,SESCO,annual,kg,a87fea10-d250-3825-beaa-000da86f5c15 +2023,Entre Rios,I.3.1,3.90096,TJ,N2O,0.6,kg/TJ,2.340576,Gas Oil combustion consumption by petrochemical industries,AR-E,SESCO,annual,kg,6cc654e1-b670-3e7a-adae-eecb46787b4e +2023,Mendoza,I.3.1,5.0929199999999994,TJ,CO2,74100.0,kg/TJ,377385.372,Gas Oil combustion consumption by petrochemical industries,AR-M,SESCO,annual,kg,042bc767-8a12-3f6e-8f18-3bd0ea2bfb6a +2023,Mendoza,I.3.1,5.0929199999999994,TJ,CH4,3.0,kg/TJ,15.278759999999998,Gas Oil combustion consumption by petrochemical industries,AR-M,SESCO,annual,kg,02dbf394-bd4c-3fd2-8e78-b64d7a3e5f1b +2023,Mendoza,I.3.1,5.0929199999999994,TJ,N2O,0.6,kg/TJ,3.0557519999999996,Gas Oil combustion consumption by petrochemical industries,AR-M,SESCO,annual,kg,145f482e-4396-3124-a0c1-a072c9056b88 +2023,Misiones,I.3.1,7.5851999999999995,TJ,CO2,74100.0,kg/TJ,562063.32,Gas Oil combustion consumption by petrochemical industries,AR-N,SESCO,annual,kg,0f187344-64fe-3a0e-9bae-3230a2f4e57d +2023,Misiones,I.3.1,7.5851999999999995,TJ,CH4,3.0,kg/TJ,22.755599999999998,Gas Oil combustion consumption by petrochemical industries,AR-N,SESCO,annual,kg,4c09304d-8eb7-3abc-bbf1-8d8f9643e3a2 +2023,Misiones,I.3.1,7.5851999999999995,TJ,N2O,0.6,kg/TJ,4.551119999999999,Gas Oil combustion consumption by petrochemical industries,AR-N,SESCO,annual,kg,f5ca7aeb-2980-3426-8b8e-8b27692a2cf1 +2023,Neuquén,I.3.1,718.67964,TJ,CO2,74100.0,kg/TJ,53254161.32399999,Gas Oil combustion consumption by petrochemical industries,AR-Q,SESCO,annual,kg,07a2b9e8-d847-3c6e-be32-f3910da5b65c +2023,Neuquén,I.3.1,718.67964,TJ,CH4,3.0,kg/TJ,2156.03892,Gas Oil combustion consumption by petrochemical industries,AR-Q,SESCO,annual,kg,b922f4dd-ba42-3e8a-a052-45c8d9e6eb0f +2023,Neuquén,I.3.1,718.67964,TJ,N2O,0.6,kg/TJ,431.20778399999995,Gas Oil combustion consumption by petrochemical industries,AR-Q,SESCO,annual,kg,eae67df7-eb24-38f4-aeb5-742c814bc567 +2023,San Juan,I.3.1,7.87416,TJ,CO2,74100.0,kg/TJ,583475.2559999999,Gas Oil combustion consumption by petrochemical industries,AR-J,SESCO,annual,kg,047b8428-b4b2-3eb0-b890-468fc8a7337d +2023,San Juan,I.3.1,7.87416,TJ,CH4,3.0,kg/TJ,23.62248,Gas Oil combustion consumption by petrochemical industries,AR-J,SESCO,annual,kg,a257bd76-2d35-3b88-8bf9-6f289f841fbc +2023,San Juan,I.3.1,7.87416,TJ,N2O,0.6,kg/TJ,4.724495999999999,Gas Oil combustion consumption by petrochemical industries,AR-J,SESCO,annual,kg,3ce5aece-e842-3615-9912-f5d559812ea5 +2023,Santa Fe,I.3.1,5.30964,TJ,CO2,74100.0,kg/TJ,393444.324,Gas Oil combustion consumption by petrochemical industries,AR-S,SESCO,annual,kg,bc4dfb81-4ac8-3192-bfa7-d4bf771df5a1 +2023,Santa Fe,I.3.1,5.30964,TJ,CH4,3.0,kg/TJ,15.92892,Gas Oil combustion consumption by petrochemical industries,AR-S,SESCO,annual,kg,bfa5c238-541a-37db-888c-1b385efc668c +2023,Santa Fe,I.3.1,5.30964,TJ,N2O,0.6,kg/TJ,3.185784,Gas Oil combustion consumption by petrochemical industries,AR-S,SESCO,annual,kg,74e49197-4aa6-3416-baa7-c7af28ce89a3 +2023,Buenos Aires,I.3.1,10.14972,TJ,CO2,74100.0,kg/TJ,752094.252,Gas Oil combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,3600e742-062b-3c2d-a996-b0ef7de5f169 +2023,Buenos Aires,I.3.1,10.14972,TJ,CH4,3.0,kg/TJ,30.44916,Gas Oil combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,f23dba14-2650-3a27-a999-f11afd95c143 +2023,Buenos Aires,I.3.1,10.14972,TJ,N2O,0.6,kg/TJ,6.089832,Gas Oil combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,ae38faac-08ff-3a70-b696-115a69d28ae9 +2023,Córdoba,I.3.1,0.57792,TJ,CO2,74100.0,kg/TJ,42823.871999999996,Gas Oil combustion consumption by petrochemical industries,AR-X,SESCO,annual,kg,402639a4-2404-31dc-bb9c-fa3c4f13bfd4 +2023,Córdoba,I.3.1,0.57792,TJ,CH4,3.0,kg/TJ,1.73376,Gas Oil combustion consumption by petrochemical industries,AR-X,SESCO,annual,kg,12e97b29-ddb9-3b79-b97a-8591a9f90601 +2023,Córdoba,I.3.1,0.57792,TJ,N2O,0.6,kg/TJ,0.346752,Gas Oil combustion consumption by petrochemical industries,AR-X,SESCO,annual,kg,eacd2b96-2ce9-3f0d-af31-a00907352a18 +2023,Neuquén,I.3.1,945.6938399999999,TJ,CO2,74100.0,kg/TJ,70075913.544,Gas Oil combustion consumption by petrochemical industries,AR-Q,SESCO,annual,kg,509235b0-76c6-3111-889a-97fe9f1a8dc1 +2023,Neuquén,I.3.1,945.6938399999999,TJ,CH4,3.0,kg/TJ,2837.0815199999997,Gas Oil combustion consumption by petrochemical industries,AR-Q,SESCO,annual,kg,4c3b2dea-eb81-3368-a194-3b8efc17d4ee +2023,Neuquén,I.3.1,945.6938399999999,TJ,N2O,0.6,kg/TJ,567.416304,Gas Oil combustion consumption by petrochemical industries,AR-Q,SESCO,annual,kg,863ab1ae-4655-3959-b9e9-cf041da3be04 +2023,Santa Fe,I.3.1,2.20171,TJ,CO2,71500.0,kg/TJ,157422.26499999998,Jet Kerosene combustion consumption by petrochemical industries,AR-S,SESCO,annual,kg,d30315e1-d545-3eee-9c05-ff3cd7892cee +2023,Santa Fe,I.3.1,2.20171,TJ,CH4,3.0,kg/TJ,6.605129999999999,Jet Kerosene combustion consumption by petrochemical industries,AR-S,SESCO,annual,kg,9ac1f04f-4937-34f9-975c-7c53de08cd0d +2023,Santa Fe,I.3.1,2.20171,TJ,N2O,0.6,kg/TJ,1.3210259999999998,Jet Kerosene combustion consumption by petrochemical industries,AR-S,SESCO,annual,kg,004941eb-493f-3ba4-910f-29c7a9bf6dfa +2023,Buenos Aires,I.3.1,10.48509,TJ,CO2,73300.0,kg/TJ,768557.097,Naphtha combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,649fdd07-82ae-36a2-a7a6-a1cb3ac7dc1d +2023,Buenos Aires,I.3.1,10.48509,TJ,CH4,3.0,kg/TJ,31.45527,Naphtha combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,66071a7c-9e18-3e8b-9515-f50f93c60bd0 +2023,Buenos Aires,I.3.1,10.48509,TJ,N2O,0.6,kg/TJ,6.291054,Naphtha combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,4bcb7c15-a212-3d24-8216-d095afaaf659 +2023,Misiones,I.3.1,0.20559,TJ,CO2,73300.0,kg/TJ,15069.747,Naphtha combustion consumption by petrochemical industries,AR-N,SESCO,annual,kg,5579e2cd-50d5-39d6-b13e-6c857f008a7c +2023,Misiones,I.3.1,0.20559,TJ,CH4,3.0,kg/TJ,0.61677,Naphtha combustion consumption by petrochemical industries,AR-N,SESCO,annual,kg,be9c51f7-b8f7-3e2f-bb28-d43a3730f8e2 +2023,Misiones,I.3.1,0.20559,TJ,N2O,0.6,kg/TJ,0.12335399999999999,Naphtha combustion consumption by petrochemical industries,AR-N,SESCO,annual,kg,b4dc7590-7ce8-3d93-b0a6-daed078eedf6 +2023,Buenos Aires,I.3.1,4.7285699999999995,TJ,CO2,73300.0,kg/TJ,346604.181,Naphtha combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,8dc8d676-a116-39d2-9ac6-d7fc752158d0 +2023,Buenos Aires,I.3.1,4.7285699999999995,TJ,CH4,3.0,kg/TJ,14.185709999999998,Naphtha combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,42fcf129-03b5-318b-ae7d-6232f988789d +2023,Buenos Aires,I.3.1,4.7285699999999995,TJ,N2O,0.6,kg/TJ,2.8371419999999996,Naphtha combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,93df46d2-9213-3a56-9bd4-7f5d2393d279 +2023,Entre Rios,I.3.1,0.34265,TJ,CO2,73300.0,kg/TJ,25116.245,Naphtha combustion consumption by petrochemical industries,AR-E,SESCO,annual,kg,b2f154fd-570b-331e-b87f-cfcaf87f3d8f +2023,Entre Rios,I.3.1,0.34265,TJ,CH4,3.0,kg/TJ,1.0279500000000001,Naphtha combustion consumption by petrochemical industries,AR-E,SESCO,annual,kg,49973127-8a8f-30c3-b17d-547b4f148769 +2023,Entre Rios,I.3.1,0.34265,TJ,N2O,0.6,kg/TJ,0.20559,Naphtha combustion consumption by petrochemical industries,AR-E,SESCO,annual,kg,31bc3868-9eb6-3719-ac0f-f83bdd221193 +2023,La Pampa,I.3.1,0.9936849999999999,TJ,CO2,73300.0,kg/TJ,72837.1105,Naphtha combustion consumption by petrochemical industries,AR-L,SESCO,annual,kg,b61b4cfa-e770-3cc9-9fc9-2775b2ef19cc +2023,La Pampa,I.3.1,0.9936849999999999,TJ,CH4,3.0,kg/TJ,2.9810549999999996,Naphtha combustion consumption by petrochemical industries,AR-L,SESCO,annual,kg,d91e258c-257a-3f57-9227-a05bade876f1 +2023,La Pampa,I.3.1,0.9936849999999999,TJ,N2O,0.6,kg/TJ,0.5962109999999999,Naphtha combustion consumption by petrochemical industries,AR-L,SESCO,annual,kg,a34e5498-2393-35ca-8e96-3dbf57ff9dd8 +2023,Neuquén,I.3.1,0.6510349999999999,TJ,CO2,73300.0,kg/TJ,47720.86549999999,Naphtha combustion consumption by petrochemical industries,AR-Q,SESCO,annual,kg,e0b4a3af-759b-3347-bc2d-bf1f16737530 +2023,Neuquén,I.3.1,0.6510349999999999,TJ,CH4,3.0,kg/TJ,1.9531049999999999,Naphtha combustion consumption by petrochemical industries,AR-Q,SESCO,annual,kg,ca3ac8aa-72f3-377f-b662-5f2fd062b7d7 +2023,Neuquén,I.3.1,0.6510349999999999,TJ,N2O,0.6,kg/TJ,0.39062099999999994,Naphtha combustion consumption by petrochemical industries,AR-Q,SESCO,annual,kg,7e8b69bf-36ea-351d-8836-41b2053ddca3 +2023,Rio Negro,I.3.1,0.719565,TJ,CO2,73300.0,kg/TJ,52744.1145,Naphtha combustion consumption by petrochemical industries,AR-R,SESCO,annual,kg,de44540f-2d4c-3a89-be1e-a1e2bd052558 +2023,Rio Negro,I.3.1,0.719565,TJ,CH4,3.0,kg/TJ,2.158695,Naphtha combustion consumption by petrochemical industries,AR-R,SESCO,annual,kg,3291d786-7ced-3cbe-9f0e-e6c644520c0a +2023,Rio Negro,I.3.1,0.719565,TJ,N2O,0.6,kg/TJ,0.431739,Naphtha combustion consumption by petrochemical industries,AR-R,SESCO,annual,kg,80ed85a9-d1d5-334f-a4aa-c305ec5667e9 +2010,Buenos Aires,II.5.1,1.19196,TJ,CO2,74100.0,kg/TJ,88324.23599999999,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,82b75e42-a452-3483-8fbf-4360a5dd1d0b +2010,Buenos Aires,II.5.1,1.19196,TJ,CH4,3.9,kg/TJ,4.648643999999999,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,21294e22-d2e0-3633-8026-6a6e1d459f91 +2010,Buenos Aires,II.5.1,1.19196,TJ,N2O,3.9,kg/TJ,4.648643999999999,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,21294e22-d2e0-3633-8026-6a6e1d459f91 +2010,Córdoba,II.5.1,1.2280799999999998,TJ,CO2,74100.0,kg/TJ,91000.72799999999,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,2f7d9edd-1403-3683-a10f-2b30184aba8e +2010,Córdoba,II.5.1,1.2280799999999998,TJ,CH4,3.9,kg/TJ,4.789511999999999,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,89fdc79d-c063-36a7-ab43-ddaf62fabda4 +2010,Córdoba,II.5.1,1.2280799999999998,TJ,N2O,3.9,kg/TJ,4.789511999999999,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,89fdc79d-c063-36a7-ab43-ddaf62fabda4 +2010,Entre Rios,II.5.1,14.953679999999999,TJ,CO2,74100.0,kg/TJ,1108067.6879999998,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,9377ea8d-c204-38e9-bd2e-45a87818d195 +2010,Entre Rios,II.5.1,14.953679999999999,TJ,CH4,3.9,kg/TJ,58.319351999999995,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,d466a2da-3937-3ffa-8303-171aaa6ca885 +2010,Entre Rios,II.5.1,14.953679999999999,TJ,N2O,3.9,kg/TJ,58.319351999999995,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,d466a2da-3937-3ffa-8303-171aaa6ca885 +2010,Capital Federal,II.1.1,1.2642,TJ,CO2,74100.0,kg/TJ,93677.22,Gas Oil combustion consumption by freight transport,AR-C,SESCO,annual,kg,ab94e4a9-8c3a-3701-b9e6-a1508d6e80fd +2010,Capital Federal,II.1.1,1.2642,TJ,CH4,3.9,kg/TJ,4.9303799999999995,Gas Oil combustion consumption by freight transport,AR-C,SESCO,annual,kg,711c8d47-8b0c-336d-a927-486b6975cf5e +2010,Capital Federal,II.1.1,1.2642,TJ,N2O,3.9,kg/TJ,4.9303799999999995,Gas Oil combustion consumption by freight transport,AR-C,SESCO,annual,kg,711c8d47-8b0c-336d-a927-486b6975cf5e +2010,Buenos Aires,II.1.1,3652.02096,TJ,CO2,74100.0,kg/TJ,270614753.136,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,06c09900-d71a-3df3-84c7-57614862480c +2010,Buenos Aires,II.1.1,3652.02096,TJ,CH4,3.9,kg/TJ,14242.881743999998,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,df2a449c-b403-3d1e-9022-5632945450e8 +2010,Buenos Aires,II.1.1,3652.02096,TJ,N2O,3.9,kg/TJ,14242.881743999998,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,df2a449c-b403-3d1e-9022-5632945450e8 +2010,Capital Federal,II.1.1,1197.12516,TJ,CO2,74100.0,kg/TJ,88706974.356,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,d3965184-4b80-3387-82a4-f1afcf7da5ee +2010,Capital Federal,II.1.1,1197.12516,TJ,CH4,3.9,kg/TJ,4668.788124,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,1aa4cc80-779e-323f-8ebd-b209b05546f6 +2010,Capital Federal,II.1.1,1197.12516,TJ,N2O,3.9,kg/TJ,4668.788124,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,1aa4cc80-779e-323f-8ebd-b209b05546f6 +2010,Córdoba,II.1.1,95.03171999999999,TJ,CO2,74100.0,kg/TJ,7041850.452,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,e1b493b2-5753-3da7-9de5-5decdc9b3922 +2010,Córdoba,II.1.1,95.03171999999999,TJ,CH4,3.9,kg/TJ,370.62370799999997,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,9343f9b1-353b-3649-af90-e7cd96e99ff9 +2010,Córdoba,II.1.1,95.03171999999999,TJ,N2O,3.9,kg/TJ,370.62370799999997,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,9343f9b1-353b-3649-af90-e7cd96e99ff9 +2010,Entre Rios,II.1.1,389.08464,TJ,CO2,74100.0,kg/TJ,28831171.823999997,Gas Oil combustion consumption by public passenger transport,AR-E,SESCO,annual,kg,f1b1ea8d-94f5-3258-8b26-5a5e57bd470e +2010,Entre Rios,II.1.1,389.08464,TJ,CH4,3.9,kg/TJ,1517.4300959999998,Gas Oil combustion consumption by public passenger transport,AR-E,SESCO,annual,kg,8241ab46-c6a8-3342-bb3a-35901a0f108f +2010,Entre Rios,II.1.1,389.08464,TJ,N2O,3.9,kg/TJ,1517.4300959999998,Gas Oil combustion consumption by public passenger transport,AR-E,SESCO,annual,kg,8241ab46-c6a8-3342-bb3a-35901a0f108f +2010,Mendoza,II.1.1,192.66407999999998,TJ,CO2,74100.0,kg/TJ,14276408.328,Gas Oil combustion consumption by public passenger transport,AR-M,SESCO,annual,kg,41b46fa5-435e-328e-b218-c94aeee8eb01 +2010,Mendoza,II.1.1,192.66407999999998,TJ,CH4,3.9,kg/TJ,751.3899119999999,Gas Oil combustion consumption by public passenger transport,AR-M,SESCO,annual,kg,95f90a60-daa9-3a57-9bf5-f62beeada642 +2010,Mendoza,II.1.1,192.66407999999998,TJ,N2O,3.9,kg/TJ,751.3899119999999,Gas Oil combustion consumption by public passenger transport,AR-M,SESCO,annual,kg,95f90a60-daa9-3a57-9bf5-f62beeada642 +2010,Misiones,II.1.1,206.06459999999998,TJ,CO2,74100.0,kg/TJ,15269386.86,Gas Oil combustion consumption by public passenger transport,AR-N,SESCO,annual,kg,6982e42a-dd8b-3437-add8-77a512c4cfbe +2010,Misiones,II.1.1,206.06459999999998,TJ,CH4,3.9,kg/TJ,803.65194,Gas Oil combustion consumption by public passenger transport,AR-N,SESCO,annual,kg,437f138f-fa16-3f47-8805-9a7eb7e4d7ac +2010,Misiones,II.1.1,206.06459999999998,TJ,N2O,3.9,kg/TJ,803.65194,Gas Oil combustion consumption by public passenger transport,AR-N,SESCO,annual,kg,437f138f-fa16-3f47-8805-9a7eb7e4d7ac +2010,Salta,II.1.1,70.14504,TJ,CO2,74100.0,kg/TJ,5197747.464,Gas Oil combustion consumption by public passenger transport,AR-A,SESCO,annual,kg,935beb1e-2ddf-3796-9814-5857ef5fc129 +2010,Salta,II.1.1,70.14504,TJ,CH4,3.9,kg/TJ,273.565656,Gas Oil combustion consumption by public passenger transport,AR-A,SESCO,annual,kg,686e09b8-c871-3fd9-a9fd-a1fac7e12730 +2010,Salta,II.1.1,70.14504,TJ,N2O,3.9,kg/TJ,273.565656,Gas Oil combustion consumption by public passenger transport,AR-A,SESCO,annual,kg,686e09b8-c871-3fd9-a9fd-a1fac7e12730 +2010,San Juan,II.1.1,70.7952,TJ,CO2,74100.0,kg/TJ,5245924.319999999,Gas Oil combustion consumption by public passenger transport,AR-J,SESCO,annual,kg,ec41350c-adf3-3382-8281-8df1080f026e +2010,San Juan,II.1.1,70.7952,TJ,CH4,3.9,kg/TJ,276.10128,Gas Oil combustion consumption by public passenger transport,AR-J,SESCO,annual,kg,132f1e98-c0e8-3535-9950-e2757f0292ab +2010,San Juan,II.1.1,70.7952,TJ,N2O,3.9,kg/TJ,276.10128,Gas Oil combustion consumption by public passenger transport,AR-J,SESCO,annual,kg,132f1e98-c0e8-3535-9950-e2757f0292ab +2010,San Luis,II.1.1,5.56248,TJ,CO2,74100.0,kg/TJ,412179.768,Gas Oil combustion consumption by public passenger transport,AR-D,SESCO,annual,kg,53435db9-7ed3-3ee9-8c9e-eb1ae5d8a279 +2010,San Luis,II.1.1,5.56248,TJ,CH4,3.9,kg/TJ,21.693672,Gas Oil combustion consumption by public passenger transport,AR-D,SESCO,annual,kg,05367247-4faa-3909-b82e-277584e68487 +2010,San Luis,II.1.1,5.56248,TJ,N2O,3.9,kg/TJ,21.693672,Gas Oil combustion consumption by public passenger transport,AR-D,SESCO,annual,kg,05367247-4faa-3909-b82e-277584e68487 +2010,Santa Fe,II.1.1,235.03284,TJ,CO2,74100.0,kg/TJ,17415933.444,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,3b2cb5f7-909e-3b31-b5e8-783a0ed0fae1 +2010,Santa Fe,II.1.1,235.03284,TJ,CH4,3.9,kg/TJ,916.628076,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,9fddf7ad-f83e-35b4-8a97-dbcdf05b7af7 +2010,Santa Fe,II.1.1,235.03284,TJ,N2O,3.9,kg/TJ,916.628076,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,9fddf7ad-f83e-35b4-8a97-dbcdf05b7af7 +2010,Córdoba,II.5.1,5.968184599999999,TJ,CO2,69300.0,kg/TJ,413595.1927799999,Motor Gasoline combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,320c2953-ad56-3b54-a560-aed527d7f6f8 +2010,Córdoba,II.5.1,5.968184599999999,TJ,CH4,33.0,kg/TJ,196.95009179999997,Motor Gasoline combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,0c93a720-0ab9-3310-9e80-dc90139f4412 +2010,Córdoba,II.5.1,5.968184599999999,TJ,N2O,3.2,kg/TJ,19.098190719999998,Motor Gasoline combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,d0a1671f-7125-3881-94c5-625af36ad0f9 +2010,Santa Fe,II.5.1,205.476247,TJ,CO2,69300.0,kg/TJ,14239503.9171,Motor Gasoline combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,6c0a036e-bdf7-3c27-bc29-90a7fdb327b7 +2010,Santa Fe,II.5.1,205.476247,TJ,CH4,33.0,kg/TJ,6780.716151,Motor Gasoline combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,0c667dc1-9604-3089-b7f9-0b4ec2ddfd3b +2010,Santa Fe,II.5.1,205.476247,TJ,N2O,3.2,kg/TJ,657.5239904,Motor Gasoline combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,5c9cc714-43f6-33e0-b9cf-90f5bffa11c3 +2010,Buenos Aires,II.5.1,204.1235112,TJ,CO2,74100.0,kg/TJ,15125552.17992,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,fc1d6e11-1690-3194-baa2-e79efd8856d6 +2010,Buenos Aires,II.5.1,204.1235112,TJ,CH4,3.9,kg/TJ,796.08169368,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,1dee880f-e138-3a4d-9781-54625f26504d +2010,Buenos Aires,II.5.1,204.1235112,TJ,N2O,3.9,kg/TJ,796.08169368,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,1dee880f-e138-3a4d-9781-54625f26504d +2010,Capital Federal,II.5.1,6.032039999999999,TJ,CO2,74100.0,kg/TJ,446974.16399999993,Gas Oil combustion consumption by agriculture machines,AR-C,SESCO,annual,kg,7ea9d952-3178-379e-a766-712cce5a49df +2010,Capital Federal,II.5.1,6.032039999999999,TJ,CH4,3.9,kg/TJ,23.524955999999996,Gas Oil combustion consumption by agriculture machines,AR-C,SESCO,annual,kg,bcd35ef7-f006-38bb-8577-2cdc03263183 +2010,Capital Federal,II.5.1,6.032039999999999,TJ,N2O,3.9,kg/TJ,23.524955999999996,Gas Oil combustion consumption by agriculture machines,AR-C,SESCO,annual,kg,bcd35ef7-f006-38bb-8577-2cdc03263183 +2010,Chaco,II.5.1,25.533227999999998,TJ,CO2,74100.0,kg/TJ,1892012.1947999997,Gas Oil combustion consumption by agriculture machines,AR-H,SESCO,annual,kg,2c1b42ff-b58d-3674-9b6f-34f984713855 +2010,Chaco,II.5.1,25.533227999999998,TJ,CH4,3.9,kg/TJ,99.57958919999999,Gas Oil combustion consumption by agriculture machines,AR-H,SESCO,annual,kg,b332a4a8-568d-3b94-8c8c-894388318b23 +2010,Chaco,II.5.1,25.533227999999998,TJ,N2O,3.9,kg/TJ,99.57958919999999,Gas Oil combustion consumption by agriculture machines,AR-H,SESCO,annual,kg,b332a4a8-568d-3b94-8c8c-894388318b23 +2010,Córdoba,II.5.1,51.602838,TJ,CO2,74100.0,kg/TJ,3823770.2958,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,72ee22ca-f2c8-3956-b773-ff8b34976b47 +2010,Córdoba,II.5.1,51.602838,TJ,CH4,3.9,kg/TJ,201.2510682,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,0e2a65a1-baa6-33c5-bd56-f7d37463155f +2010,Córdoba,II.5.1,51.602838,TJ,N2O,3.9,kg/TJ,201.2510682,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,0e2a65a1-baa6-33c5-bd56-f7d37463155f +2010,La Pampa,II.5.1,18.3142848,TJ,CO2,74100.0,kg/TJ,1357088.5036799998,Gas Oil combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,7a4f9a66-a5fb-391d-9e13-3a25ff7b5bbc +2010,La Pampa,II.5.1,18.3142848,TJ,CH4,3.9,kg/TJ,71.42571072,Gas Oil combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,3159597d-9596-3350-813a-9e78777c526c +2010,La Pampa,II.5.1,18.3142848,TJ,N2O,3.9,kg/TJ,71.42571072,Gas Oil combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,3159597d-9596-3350-813a-9e78777c526c +2010,Santa Fe,II.5.1,375.100782,TJ,CO2,74100.0,kg/TJ,27794967.9462,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,82ef3e92-522f-39c3-849b-9eb7c3f1efe8 +2010,Santa Fe,II.5.1,375.100782,TJ,CH4,3.9,kg/TJ,1462.8930498,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,4fd28983-1257-39cf-b9ca-164a64bed012 +2010,Santa Fe,II.5.1,375.100782,TJ,N2O,3.9,kg/TJ,1462.8930498,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,4fd28983-1257-39cf-b9ca-164a64bed012 +2010,Buenos Aires,II.5.1,14.288504999999999,TJ,CO2,73300.0,kg/TJ,1047347.4164999999,Naphtha combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,5ebc1695-e2d2-39d1-b2ae-e48cd83a56a9 +2010,Buenos Aires,II.5.1,14.288504999999999,TJ,CH4,0.5,kg/TJ,7.1442524999999995,Naphtha combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,01e27fb0-4364-38f6-b72e-4313cfcf72a7 +2010,Buenos Aires,II.5.1,14.288504999999999,TJ,N2O,2.0,kg/TJ,28.577009999999998,Naphtha combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,1f7573c8-6aa4-324a-a974-348febb59a8e +2010,Córdoba,II.5.1,8.703652649999999,TJ,CO2,73300.0,kg/TJ,637977.739245,Naphtha combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,f29b3e23-64e5-3419-94a5-3cf9c6b32c10 +2010,Córdoba,II.5.1,8.703652649999999,TJ,CH4,0.5,kg/TJ,4.351826324999999,Naphtha combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,0bef4eae-5216-3296-b5b3-a79079a620a9 +2010,Córdoba,II.5.1,8.703652649999999,TJ,N2O,2.0,kg/TJ,17.407305299999997,Naphtha combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,05d875d1-f22d-3cc2-acaa-eca06cd4e311 +2010,Santa Fe,II.5.1,17.003320950000003,TJ,CO2,73300.0,kg/TJ,1246343.4256350002,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,fb31d8fc-bbdb-34b4-ba27-f4f2739a36d2 +2010,Santa Fe,II.5.1,17.003320950000003,TJ,CH4,0.5,kg/TJ,8.501660475000001,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,1f7bb2a8-3d76-33e4-b7bc-3bc602d89c07 +2010,Santa Fe,II.5.1,17.003320950000003,TJ,N2O,2.0,kg/TJ,34.006641900000005,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,d22f9f34-73a9-3dbc-bfc1-749748a5be53 +2010,Córdoba,II.5.1,4.420185,TJ,CO2,73300.0,kg/TJ,323999.5605,Naphtha combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,c9368141-aad6-373b-a0e0-eae785bf41b3 +2010,Córdoba,II.5.1,4.420185,TJ,CH4,0.5,kg/TJ,2.2100925,Naphtha combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,47e7c30b-c529-3ab0-921a-b1c6edf58e93 +2010,Córdoba,II.5.1,4.420185,TJ,N2O,2.0,kg/TJ,8.84037,Naphtha combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,3d4b9447-fe3f-3f32-a177-f6375223094e +2010,Santa Fe,II.5.1,1.1238919999999997,TJ,CO2,73300.0,kg/TJ,82381.28359999998,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,b04d2b1c-6224-31cf-a671-0b24b2b5823f +2010,Santa Fe,II.5.1,1.1238919999999997,TJ,CH4,0.5,kg/TJ,0.5619459999999998,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,4f53d4d0-46fb-3bed-a83c-89039ca4a4bf +2010,Santa Fe,II.5.1,1.1238919999999997,TJ,N2O,2.0,kg/TJ,2.2477839999999993,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,fa70a917-b342-3bcf-93d2-e09a9d236051 +2010,Capital Federal,II.2.1,115.95170159999999,TJ,CO2,74100.0,kg/TJ,8592021.08856,Gas Oil combustion consumption by railway transport,AR-C,SESCO,annual,kg,75e68619-2560-3f48-91e3-3597d691e521 +2010,Capital Federal,II.2.1,115.95170159999999,TJ,CH4,3.9,kg/TJ,452.21163623999996,Gas Oil combustion consumption by railway transport,AR-C,SESCO,annual,kg,dbe39aa9-daad-3100-aec0-ec493782b805 +2010,Capital Federal,II.2.1,115.95170159999999,TJ,N2O,3.9,kg/TJ,452.21163623999996,Gas Oil combustion consumption by railway transport,AR-C,SESCO,annual,kg,dbe39aa9-daad-3100-aec0-ec493782b805 +2010,Mendoza,II.2.1,17.9530848,TJ,CO2,74100.0,kg/TJ,1330323.58368,Gas Oil combustion consumption by railway transport,AR-M,SESCO,annual,kg,4f3b4bfc-dfd3-32b3-80fa-bf608bd58a49 +2010,Mendoza,II.2.1,17.9530848,TJ,CH4,3.9,kg/TJ,70.01703072,Gas Oil combustion consumption by railway transport,AR-M,SESCO,annual,kg,d1c3b8aa-7287-3f90-a19c-9f0344105910 +2010,Mendoza,II.2.1,17.9530848,TJ,N2O,3.9,kg/TJ,70.01703072,Gas Oil combustion consumption by railway transport,AR-M,SESCO,annual,kg,d1c3b8aa-7287-3f90-a19c-9f0344105910 +2010,Tucuman,II.2.1,0.3048528,TJ,CO2,74100.0,kg/TJ,22589.59248,Gas Oil combustion consumption by railway transport,AR-T,SESCO,annual,kg,a1eecf3c-4287-3369-9691-a16b0a60d421 +2010,Tucuman,II.2.1,0.3048528,TJ,CH4,3.9,kg/TJ,1.18892592,Gas Oil combustion consumption by railway transport,AR-T,SESCO,annual,kg,aa88f922-8577-369a-95fb-0c5ca6d06690 +2010,Tucuman,II.2.1,0.3048528,TJ,N2O,3.9,kg/TJ,1.18892592,Gas Oil combustion consumption by railway transport,AR-T,SESCO,annual,kg,aa88f922-8577-369a-95fb-0c5ca6d06690 +2010,Buenos Aires,II.1.1,1540.98727104,TJ,CO2,74100.0,kg/TJ,114187156.784064,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,6027e3da-b9be-3adf-8f2f-2c5e3a73b560 +2010,Buenos Aires,II.1.1,1540.98727104,TJ,CH4,3.9,kg/TJ,6009.850357056,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,00cf7205-92da-3ce3-903d-11aca2a1d664 +2010,Buenos Aires,II.1.1,1540.98727104,TJ,N2O,3.9,kg/TJ,6009.850357056,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,00cf7205-92da-3ce3-903d-11aca2a1d664 +2010,Capital Federal,II.1.1,1331.6643580799998,TJ,CO2,74100.0,kg/TJ,98676328.933728,Gas Oil combustion consumption by freight transport,AR-C,SESCO,annual,kg,f1465e9b-f688-32bc-940e-7213d3dc872b +2010,Capital Federal,II.1.1,1331.6643580799998,TJ,CH4,3.9,kg/TJ,5193.490996512,Gas Oil combustion consumption by freight transport,AR-C,SESCO,annual,kg,3aae4751-3391-37aa-aff1-904a4bdcb94f +2010,Capital Federal,II.1.1,1331.6643580799998,TJ,N2O,3.9,kg/TJ,5193.490996512,Gas Oil combustion consumption by freight transport,AR-C,SESCO,annual,kg,3aae4751-3391-37aa-aff1-904a4bdcb94f +2010,Chaco,II.1.1,55.8743892,TJ,CO2,74100.0,kg/TJ,4140292.2397200004,Gas Oil combustion consumption by freight transport,AR-H,SESCO,annual,kg,96fa843c-2f92-3fde-9810-216364b021ea +2010,Chaco,II.1.1,55.8743892,TJ,CH4,3.9,kg/TJ,217.91011788,Gas Oil combustion consumption by freight transport,AR-H,SESCO,annual,kg,50dba2ae-8ce2-315a-9813-4b2a77ed72a6 +2010,Chaco,II.1.1,55.8743892,TJ,N2O,3.9,kg/TJ,217.91011788,Gas Oil combustion consumption by freight transport,AR-H,SESCO,annual,kg,50dba2ae-8ce2-315a-9813-4b2a77ed72a6 +2010,Chubut,II.1.1,3.5787695999999998,TJ,CO2,74100.0,kg/TJ,265186.82736,Gas Oil combustion consumption by freight transport,AR-U,SESCO,annual,kg,268aa20b-e31f-3404-ba53-4962da55fb05 +2010,Chubut,II.1.1,3.5787695999999998,TJ,CH4,3.9,kg/TJ,13.957201439999999,Gas Oil combustion consumption by freight transport,AR-U,SESCO,annual,kg,a0d51934-1920-3195-836c-834e4aa07025 +2010,Chubut,II.1.1,3.5787695999999998,TJ,N2O,3.9,kg/TJ,13.957201439999999,Gas Oil combustion consumption by freight transport,AR-U,SESCO,annual,kg,a0d51934-1920-3195-836c-834e4aa07025 +2010,Corrientes,II.1.1,137.2520268,TJ,CO2,74100.0,kg/TJ,10170375.185880002,Gas Oil combustion consumption by freight transport,AR-W,SESCO,annual,kg,6c4fb162-e18d-3b38-9996-71c9a81d0577 +2010,Corrientes,II.1.1,137.2520268,TJ,CH4,3.9,kg/TJ,535.28290452,Gas Oil combustion consumption by freight transport,AR-W,SESCO,annual,kg,2f150bf2-2f46-3c2f-924d-4cdfea82ebbc +2010,Corrientes,II.1.1,137.2520268,TJ,N2O,3.9,kg/TJ,535.28290452,Gas Oil combustion consumption by freight transport,AR-W,SESCO,annual,kg,2f150bf2-2f46-3c2f-924d-4cdfea82ebbc +2010,Córdoba,II.1.1,265.40795399999996,TJ,CO2,74100.0,kg/TJ,19666729.3914,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,f323359b-ae34-398b-a7c0-6259ff718696 +2010,Córdoba,II.1.1,265.40795399999996,TJ,CH4,3.9,kg/TJ,1035.0910205999999,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,893874df-3519-3be0-a684-a9c4f53e5820 +2010,Córdoba,II.1.1,265.40795399999996,TJ,N2O,3.9,kg/TJ,1035.0910205999999,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,893874df-3519-3be0-a684-a9c4f53e5820 +2010,Entre Rios,II.1.1,238.068726,TJ,CO2,74100.0,kg/TJ,17640892.5966,Gas Oil combustion consumption by freight transport,AR-E,SESCO,annual,kg,f9d497fe-af54-3c90-9328-733e83f3cfa2 +2010,Entre Rios,II.1.1,238.068726,TJ,CH4,3.9,kg/TJ,928.4680314,Gas Oil combustion consumption by freight transport,AR-E,SESCO,annual,kg,60abf862-a20d-348a-b6b6-edbbe11de407 +2010,Entre Rios,II.1.1,238.068726,TJ,N2O,3.9,kg/TJ,928.4680314,Gas Oil combustion consumption by freight transport,AR-E,SESCO,annual,kg,60abf862-a20d-348a-b6b6-edbbe11de407 +2010,La Pampa,II.1.1,0.039370800000000004,TJ,CO2,74100.0,kg/TJ,2917.3762800000004,Gas Oil combustion consumption by freight transport,AR-L,SESCO,annual,kg,c8ddfcc2-0abf-3deb-b992-e2d4f45fc8ae +2010,La Pampa,II.1.1,0.039370800000000004,TJ,CH4,3.9,kg/TJ,0.15354612,Gas Oil combustion consumption by freight transport,AR-L,SESCO,annual,kg,8e618e43-4cc5-3a2b-a729-08cf12199947 +2010,La Pampa,II.1.1,0.039370800000000004,TJ,N2O,3.9,kg/TJ,0.15354612,Gas Oil combustion consumption by freight transport,AR-L,SESCO,annual,kg,8e618e43-4cc5-3a2b-a729-08cf12199947 +2010,Mendoza,II.1.1,345.2436288,TJ,CO2,74100.0,kg/TJ,25582552.89408,Gas Oil combustion consumption by freight transport,AR-M,SESCO,annual,kg,6c7a3f71-3c27-349e-97b9-369495f0a66e +2010,Mendoza,II.1.1,345.2436288,TJ,CH4,3.9,kg/TJ,1346.45015232,Gas Oil combustion consumption by freight transport,AR-M,SESCO,annual,kg,046d6032-a900-3b22-8139-410efbe950f4 +2010,Mendoza,II.1.1,345.2436288,TJ,N2O,3.9,kg/TJ,1346.45015232,Gas Oil combustion consumption by freight transport,AR-M,SESCO,annual,kg,046d6032-a900-3b22-8139-410efbe950f4 +2010,Misiones,II.1.1,120.2897136,TJ,CO2,74100.0,kg/TJ,8913467.777759999,Gas Oil combustion consumption by freight transport,AR-N,SESCO,annual,kg,0c7df5f2-4cfa-39a2-8dee-bf0374fb9241 +2010,Misiones,II.1.1,120.2897136,TJ,CH4,3.9,kg/TJ,469.12988304,Gas Oil combustion consumption by freight transport,AR-N,SESCO,annual,kg,6d4a5f81-4949-3099-8999-c6ca64723d27 +2010,Misiones,II.1.1,120.2897136,TJ,N2O,3.9,kg/TJ,469.12988304,Gas Oil combustion consumption by freight transport,AR-N,SESCO,annual,kg,6d4a5f81-4949-3099-8999-c6ca64723d27 +2010,Rio Negro,II.1.1,14.3577,TJ,CO2,74100.0,kg/TJ,1063905.57,Gas Oil combustion consumption by freight transport,AR-R,SESCO,annual,kg,22a8362d-edda-3c67-8717-1a0ecf82a9ed +2010,Rio Negro,II.1.1,14.3577,TJ,CH4,3.9,kg/TJ,55.99503,Gas Oil combustion consumption by freight transport,AR-R,SESCO,annual,kg,0980d985-f46d-311a-8fd4-4656ba0e4af8 +2010,Rio Negro,II.1.1,14.3577,TJ,N2O,3.9,kg/TJ,55.99503,Gas Oil combustion consumption by freight transport,AR-R,SESCO,annual,kg,0980d985-f46d-311a-8fd4-4656ba0e4af8 +2010,Salta,II.1.1,6.451032,TJ,CO2,74100.0,kg/TJ,478021.47119999997,Gas Oil combustion consumption by freight transport,AR-A,SESCO,annual,kg,796a70fb-c3ed-3871-9cdf-3be3b6fd1e7a +2010,Salta,II.1.1,6.451032,TJ,CH4,3.9,kg/TJ,25.159024799999997,Gas Oil combustion consumption by freight transport,AR-A,SESCO,annual,kg,fa3c8ea2-6bfc-36a7-a670-3c8262a7fa22 +2010,Salta,II.1.1,6.451032,TJ,N2O,3.9,kg/TJ,25.159024799999997,Gas Oil combustion consumption by freight transport,AR-A,SESCO,annual,kg,fa3c8ea2-6bfc-36a7-a670-3c8262a7fa22 +2010,San Juan,II.1.1,18.420477599999998,TJ,CO2,74100.0,kg/TJ,1364957.39016,Gas Oil combustion consumption by freight transport,AR-J,SESCO,annual,kg,83ad76bb-c184-3fc1-9408-031d8d9290d6 +2010,San Juan,II.1.1,18.420477599999998,TJ,CH4,3.9,kg/TJ,71.83986263999999,Gas Oil combustion consumption by freight transport,AR-J,SESCO,annual,kg,05a51916-4e36-32e5-bae1-c4d1a1c1f38f +2010,San Juan,II.1.1,18.420477599999998,TJ,N2O,3.9,kg/TJ,71.83986263999999,Gas Oil combustion consumption by freight transport,AR-J,SESCO,annual,kg,05a51916-4e36-32e5-bae1-c4d1a1c1f38f +2010,San Luis,II.1.1,147.20850480000001,TJ,CO2,74100.0,kg/TJ,10908150.205680002,Gas Oil combustion consumption by freight transport,AR-D,SESCO,annual,kg,ae7580b9-3d79-389d-b1c8-2769756d9429 +2010,San Luis,II.1.1,147.20850480000001,TJ,CH4,3.9,kg/TJ,574.1131687200001,Gas Oil combustion consumption by freight transport,AR-D,SESCO,annual,kg,21d95ea7-2a21-38e8-929c-0555cfed3ba2 +2010,San Luis,II.1.1,147.20850480000001,TJ,N2O,3.9,kg/TJ,574.1131687200001,Gas Oil combustion consumption by freight transport,AR-D,SESCO,annual,kg,21d95ea7-2a21-38e8-929c-0555cfed3ba2 +2010,Santa Fe,II.1.1,1080.7400184,TJ,CO2,74100.0,kg/TJ,80082835.36344,Gas Oil combustion consumption by freight transport,AR-S,SESCO,annual,kg,170e3f79-d5a8-3344-b36c-0c3f76ffb865 +2010,Santa Fe,II.1.1,1080.7400184,TJ,CH4,3.9,kg/TJ,4214.88607176,Gas Oil combustion consumption by freight transport,AR-S,SESCO,annual,kg,7218e98c-5146-307d-96bb-f17430bb20c3 +2010,Santa Fe,II.1.1,1080.7400184,TJ,N2O,3.9,kg/TJ,4214.88607176,Gas Oil combustion consumption by freight transport,AR-S,SESCO,annual,kg,7218e98c-5146-307d-96bb-f17430bb20c3 +2010,Santiago del Estero,II.1.1,0.429828,TJ,CO2,74100.0,kg/TJ,31850.2548,Gas Oil combustion consumption by freight transport,AR-G,SESCO,annual,kg,4df94e83-e21a-3d6d-becd-3f4e7fda2dba +2010,Santiago del Estero,II.1.1,0.429828,TJ,CH4,3.9,kg/TJ,1.6763291999999999,Gas Oil combustion consumption by freight transport,AR-G,SESCO,annual,kg,03f53f40-00c9-3832-9943-3356b95a5898 +2010,Santiago del Estero,II.1.1,0.429828,TJ,N2O,3.9,kg/TJ,1.6763291999999999,Gas Oil combustion consumption by freight transport,AR-G,SESCO,annual,kg,03f53f40-00c9-3832-9943-3356b95a5898 +2010,Tierra del Fuego,II.1.1,39.2378784,TJ,CO2,74100.0,kg/TJ,2907526.78944,Gas Oil combustion consumption by freight transport,AR-V,SESCO,annual,kg,82179f9f-9e0b-33c9-b85f-e1756d5bff17 +2010,Tierra del Fuego,II.1.1,39.2378784,TJ,CH4,3.9,kg/TJ,153.02772575999998,Gas Oil combustion consumption by freight transport,AR-V,SESCO,annual,kg,d7fa711c-6130-3579-868a-075a061db305 +2010,Tierra del Fuego,II.1.1,39.2378784,TJ,N2O,3.9,kg/TJ,153.02772575999998,Gas Oil combustion consumption by freight transport,AR-V,SESCO,annual,kg,d7fa711c-6130-3579-868a-075a061db305 +2010,Tucuman,II.1.1,220.194744,TJ,CO2,74100.0,kg/TJ,16316430.530399999,Gas Oil combustion consumption by freight transport,AR-T,SESCO,annual,kg,7ef65946-4b1a-3cb3-959a-947a2ebfc2ac +2010,Tucuman,II.1.1,220.194744,TJ,CH4,3.9,kg/TJ,858.7595015999999,Gas Oil combustion consumption by freight transport,AR-T,SESCO,annual,kg,a737b73b-b9a3-3657-8df5-269f21dc1888 +2010,Tucuman,II.1.1,220.194744,TJ,N2O,3.9,kg/TJ,858.7595015999999,Gas Oil combustion consumption by freight transport,AR-T,SESCO,annual,kg,a737b73b-b9a3-3657-8df5-269f21dc1888 +2010,Buenos Aires,II.1.1,25.457376,TJ,CO2,74100.0,kg/TJ,1886391.5616,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,3ff923a7-5ef7-3474-8760-7981c1db4b2d +2010,Buenos Aires,II.1.1,25.457376,TJ,CH4,3.9,kg/TJ,99.2837664,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,d9f2a292-c100-3636-955e-411fc0aedc59 +2010,Buenos Aires,II.1.1,25.457376,TJ,N2O,3.9,kg/TJ,99.2837664,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,d9f2a292-c100-3636-955e-411fc0aedc59 +2010,Capital Federal,II.1.1,35.4413052,TJ,CO2,74100.0,kg/TJ,2626200.71532,Gas Oil combustion consumption by freight transport,AR-C,SESCO,annual,kg,0be3211b-bf98-35a0-b02a-3a7d2a378b10 +2010,Capital Federal,II.1.1,35.4413052,TJ,CH4,3.9,kg/TJ,138.22109028,Gas Oil combustion consumption by freight transport,AR-C,SESCO,annual,kg,ff7b877d-5dd6-3f02-9707-82923b823674 +2010,Capital Federal,II.1.1,35.4413052,TJ,N2O,3.9,kg/TJ,138.22109028,Gas Oil combustion consumption by freight transport,AR-C,SESCO,annual,kg,ff7b877d-5dd6-3f02-9707-82923b823674 +2010,Chaco,II.1.1,0.47570039999999997,TJ,CO2,74100.0,kg/TJ,35249.399639999996,Gas Oil combustion consumption by freight transport,AR-H,SESCO,annual,kg,150956d0-5fae-3f2e-9dfb-85a653f98cd7 +2010,Chaco,II.1.1,0.47570039999999997,TJ,CH4,3.9,kg/TJ,1.8552315599999998,Gas Oil combustion consumption by freight transport,AR-H,SESCO,annual,kg,65eb001c-1dcb-3891-8ce3-5e1fba418ba7 +2010,Chaco,II.1.1,0.47570039999999997,TJ,N2O,3.9,kg/TJ,1.8552315599999998,Gas Oil combustion consumption by freight transport,AR-H,SESCO,annual,kg,65eb001c-1dcb-3891-8ce3-5e1fba418ba7 +2010,Chubut,II.1.1,0.0718788,TJ,CO2,74100.0,kg/TJ,5326.219080000001,Gas Oil combustion consumption by freight transport,AR-U,SESCO,annual,kg,23f83d10-84ce-34b3-9744-92e1072fe79f +2010,Chubut,II.1.1,0.0718788,TJ,CH4,3.9,kg/TJ,0.28032732000000005,Gas Oil combustion consumption by freight transport,AR-U,SESCO,annual,kg,498e5345-addc-36cb-8114-21e9eda5ef3a +2010,Chubut,II.1.1,0.0718788,TJ,N2O,3.9,kg/TJ,0.28032732000000005,Gas Oil combustion consumption by freight transport,AR-U,SESCO,annual,kg,498e5345-addc-36cb-8114-21e9eda5ef3a +2010,Corrientes,II.1.1,2.318904,TJ,CO2,74100.0,kg/TJ,171830.78639999998,Gas Oil combustion consumption by freight transport,AR-W,SESCO,annual,kg,a6c2c93d-0178-3683-9a3d-5eb1f7ee7c6c +2010,Corrientes,II.1.1,2.318904,TJ,CH4,3.9,kg/TJ,9.043725599999998,Gas Oil combustion consumption by freight transport,AR-W,SESCO,annual,kg,cf49962d-8909-352d-9464-b16ee428c704 +2010,Corrientes,II.1.1,2.318904,TJ,N2O,3.9,kg/TJ,9.043725599999998,Gas Oil combustion consumption by freight transport,AR-W,SESCO,annual,kg,cf49962d-8909-352d-9464-b16ee428c704 +2010,Córdoba,II.1.1,2.8675668,TJ,CO2,74100.0,kg/TJ,212486.69988,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,6cae47d2-ca8e-3b2d-82b7-d3fd87ef6769 +2010,Córdoba,II.1.1,2.8675668,TJ,CH4,3.9,kg/TJ,11.18351052,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,351de90b-4efb-3eac-a9c6-d0175590edea +2010,Córdoba,II.1.1,2.8675668,TJ,N2O,3.9,kg/TJ,11.18351052,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,351de90b-4efb-3eac-a9c6-d0175590edea +2010,Entre Rios,II.1.1,7.694282399999999,TJ,CO2,74100.0,kg/TJ,570146.32584,Gas Oil combustion consumption by freight transport,AR-E,SESCO,annual,kg,53a0dc4a-1b1d-3fad-bf8e-c9db7a84c430 +2010,Entre Rios,II.1.1,7.694282399999999,TJ,CH4,3.9,kg/TJ,30.007701359999995,Gas Oil combustion consumption by freight transport,AR-E,SESCO,annual,kg,de1b94a2-edea-3040-92df-2d6f17e3eca9 +2010,Entre Rios,II.1.1,7.694282399999999,TJ,N2O,3.9,kg/TJ,30.007701359999995,Gas Oil combustion consumption by freight transport,AR-E,SESCO,annual,kg,de1b94a2-edea-3040-92df-2d6f17e3eca9 +2010,Mendoza,II.1.1,1.3151291999999999,TJ,CO2,74100.0,kg/TJ,97451.07371999999,Gas Oil combustion consumption by freight transport,AR-M,SESCO,annual,kg,cd1457b2-1091-30d2-93db-272bfed19892 +2010,Mendoza,II.1.1,1.3151291999999999,TJ,CH4,3.9,kg/TJ,5.129003879999999,Gas Oil combustion consumption by freight transport,AR-M,SESCO,annual,kg,97049504-eef0-3aa0-ade7-cb8881bfb02a +2010,Mendoza,II.1.1,1.3151291999999999,TJ,N2O,3.9,kg/TJ,5.129003879999999,Gas Oil combustion consumption by freight transport,AR-M,SESCO,annual,kg,97049504-eef0-3aa0-ade7-cb8881bfb02a +2010,Misiones,II.1.1,1.6821084000000002,TJ,CO2,74100.0,kg/TJ,124644.23244,Gas Oil combustion consumption by freight transport,AR-N,SESCO,annual,kg,7237b459-e056-37c7-8369-11cf64c22972 +2010,Misiones,II.1.1,1.6821084000000002,TJ,CH4,3.9,kg/TJ,6.56022276,Gas Oil combustion consumption by freight transport,AR-N,SESCO,annual,kg,ab707faf-f45b-3562-a356-14bed5d29790 +2010,Misiones,II.1.1,1.6821084000000002,TJ,N2O,3.9,kg/TJ,6.56022276,Gas Oil combustion consumption by freight transport,AR-N,SESCO,annual,kg,ab707faf-f45b-3562-a356-14bed5d29790 +2010,Rio Negro,II.1.1,0.37348079999999995,TJ,CO2,74100.0,kg/TJ,27674.927279999996,Gas Oil combustion consumption by freight transport,AR-R,SESCO,annual,kg,ee8b90d6-456c-322f-b74b-d414d5b20361 +2010,Rio Negro,II.1.1,0.37348079999999995,TJ,CH4,3.9,kg/TJ,1.4565751199999997,Gas Oil combustion consumption by freight transport,AR-R,SESCO,annual,kg,4af368ef-e51c-3211-907a-2d29ba0730b1 +2010,Rio Negro,II.1.1,0.37348079999999995,TJ,N2O,3.9,kg/TJ,1.4565751199999997,Gas Oil combustion consumption by freight transport,AR-R,SESCO,annual,kg,4af368ef-e51c-3211-907a-2d29ba0730b1 +2010,Salta,II.1.1,0.016253999999999998,TJ,CO2,74100.0,kg/TJ,1204.4213999999997,Gas Oil combustion consumption by freight transport,AR-A,SESCO,annual,kg,3dc7ce06-a35b-3bad-9481-9410078d6a33 +2010,Salta,II.1.1,0.016253999999999998,TJ,CH4,3.9,kg/TJ,0.06339059999999999,Gas Oil combustion consumption by freight transport,AR-A,SESCO,annual,kg,11b174e1-94b6-3283-a480-d4d7ab174fce +2010,Salta,II.1.1,0.016253999999999998,TJ,N2O,3.9,kg/TJ,0.06339059999999999,Gas Oil combustion consumption by freight transport,AR-A,SESCO,annual,kg,11b174e1-94b6-3283-a480-d4d7ab174fce +2010,San Juan,II.1.1,0.0989688,TJ,CO2,74100.0,kg/TJ,7333.5880799999995,Gas Oil combustion consumption by freight transport,AR-J,SESCO,annual,kg,cfa44bbc-8f01-3c24-a8d7-a96719cd1a7e +2010,San Juan,II.1.1,0.0989688,TJ,CH4,3.9,kg/TJ,0.38597832,Gas Oil combustion consumption by freight transport,AR-J,SESCO,annual,kg,09233483-0b94-3f43-a6a8-2552581bc768 +2010,San Juan,II.1.1,0.0989688,TJ,N2O,3.9,kg/TJ,0.38597832,Gas Oil combustion consumption by freight transport,AR-J,SESCO,annual,kg,09233483-0b94-3f43-a6a8-2552581bc768 +2010,San Luis,II.1.1,0.6913368,TJ,CO2,74100.0,kg/TJ,51228.05688,Gas Oil combustion consumption by freight transport,AR-D,SESCO,annual,kg,5e3effd7-e345-3900-963b-fb14835861f4 +2010,San Luis,II.1.1,0.6913368,TJ,CH4,3.9,kg/TJ,2.6962135199999997,Gas Oil combustion consumption by freight transport,AR-D,SESCO,annual,kg,e22337c7-4df9-38c3-a202-d50db0368c67 +2010,San Luis,II.1.1,0.6913368,TJ,N2O,3.9,kg/TJ,2.6962135199999997,Gas Oil combustion consumption by freight transport,AR-D,SESCO,annual,kg,e22337c7-4df9-38c3-a202-d50db0368c67 +2010,Santa Fe,II.1.1,4.2083412,TJ,CO2,74100.0,kg/TJ,311838.08291999996,Gas Oil combustion consumption by freight transport,AR-S,SESCO,annual,kg,053d56a7-6d71-3c75-920d-84e19dd17fa7 +2010,Santa Fe,II.1.1,4.2083412,TJ,CH4,3.9,kg/TJ,16.412530679999996,Gas Oil combustion consumption by freight transport,AR-S,SESCO,annual,kg,a6fe05e6-0e74-33c8-bcc0-095ec572d454 +2010,Santa Fe,II.1.1,4.2083412,TJ,N2O,3.9,kg/TJ,16.412530679999996,Gas Oil combustion consumption by freight transport,AR-S,SESCO,annual,kg,a6fe05e6-0e74-33c8-bcc0-095ec572d454 +2010,Santiago del Estero,II.1.1,0.0278124,TJ,CO2,74100.0,kg/TJ,2060.8988400000003,Gas Oil combustion consumption by freight transport,AR-G,SESCO,annual,kg,c2a5c162-ce1c-3507-9915-707cf21b44fb +2010,Santiago del Estero,II.1.1,0.0278124,TJ,CH4,3.9,kg/TJ,0.10846836,Gas Oil combustion consumption by freight transport,AR-G,SESCO,annual,kg,f443b69e-e7ce-3cff-9323-f202a25a8b7b +2010,Santiago del Estero,II.1.1,0.0278124,TJ,N2O,3.9,kg/TJ,0.10846836,Gas Oil combustion consumption by freight transport,AR-G,SESCO,annual,kg,f443b69e-e7ce-3cff-9323-f202a25a8b7b +2010,Tierra del Fuego,II.1.1,0.8080044,TJ,CO2,74100.0,kg/TJ,59873.126039999996,Gas Oil combustion consumption by freight transport,AR-V,SESCO,annual,kg,dc1161cc-b48d-34d8-8a2a-f10c40798b67 +2010,Tierra del Fuego,II.1.1,0.8080044,TJ,CH4,3.9,kg/TJ,3.15121716,Gas Oil combustion consumption by freight transport,AR-V,SESCO,annual,kg,3770878c-07b5-392d-b1ce-05b8f81114a2 +2010,Tierra del Fuego,II.1.1,0.8080044,TJ,N2O,3.9,kg/TJ,3.15121716,Gas Oil combustion consumption by freight transport,AR-V,SESCO,annual,kg,3770878c-07b5-392d-b1ce-05b8f81114a2 +2010,Tucuman,II.1.1,0.6053711999999999,TJ,CO2,74100.0,kg/TJ,44858.00591999999,Gas Oil combustion consumption by freight transport,AR-T,SESCO,annual,kg,0b7d48d3-2807-3bc5-bfa7-956d2bb0fb3f +2010,Tucuman,II.1.1,0.6053711999999999,TJ,CH4,3.9,kg/TJ,2.3609476799999993,Gas Oil combustion consumption by freight transport,AR-T,SESCO,annual,kg,5714fd42-3be8-30e6-b54f-15d3e4aac801 +2010,Tucuman,II.1.1,0.6053711999999999,TJ,N2O,3.9,kg/TJ,2.3609476799999993,Gas Oil combustion consumption by freight transport,AR-T,SESCO,annual,kg,5714fd42-3be8-30e6-b54f-15d3e4aac801 +2010,Buenos Aires,II.1.1,0.0010279499999999997,TJ,CO2,73300.0,kg/TJ,75.34873499999998,Naphtha combustion consumption by freight transport,AR-B,SESCO,annual,kg,3f24a021-7875-3f24-ba69-876dfe7ca701 +2010,Buenos Aires,II.1.1,0.0010279499999999997,TJ,CH4,0.5,kg/TJ,0.0005139749999999998,Naphtha combustion consumption by freight transport,AR-B,SESCO,annual,kg,79802b8a-6324-3f6f-8b1c-bd1865dd8c62 +2010,Buenos Aires,II.1.1,0.0010279499999999997,TJ,N2O,2.0,kg/TJ,0.0020558999999999994,Naphtha combustion consumption by freight transport,AR-B,SESCO,annual,kg,6cc348dc-11bc-3f2e-9315-74605f73bd2b +2010,Capital Federal,II.1.1,0.01610455,TJ,CO2,73300.0,kg/TJ,1180.463515,Naphtha combustion consumption by freight transport,AR-C,SESCO,annual,kg,9e5027cc-6ba3-396a-8e1d-c8012a54b879 +2010,Capital Federal,II.1.1,0.01610455,TJ,CH4,0.5,kg/TJ,0.008052275,Naphtha combustion consumption by freight transport,AR-C,SESCO,annual,kg,b3812970-48a8-3c42-8994-4e32f7d48390 +2010,Capital Federal,II.1.1,0.01610455,TJ,N2O,2.0,kg/TJ,0.0322091,Naphtha combustion consumption by freight transport,AR-C,SESCO,annual,kg,6dd378fb-fc28-3c67-8342-1b965a2ac4a1 +2010,Misiones,II.1.1,0.00239855,TJ,CO2,73300.0,kg/TJ,175.813715,Naphtha combustion consumption by freight transport,AR-N,SESCO,annual,kg,68f4ac3c-71c9-3be3-a175-a106bbab8938 +2010,Misiones,II.1.1,0.00239855,TJ,CH4,0.5,kg/TJ,0.001199275,Naphtha combustion consumption by freight transport,AR-N,SESCO,annual,kg,3a1dd1f4-6ebb-349c-980e-88fcee81a8a1 +2010,Misiones,II.1.1,0.00239855,TJ,N2O,2.0,kg/TJ,0.0047971,Naphtha combustion consumption by freight transport,AR-N,SESCO,annual,kg,b8e3ce02-ea76-365b-a952-044a108073d8 +2010,Santa Fe,II.1.1,0.07846684999999999,TJ,CO2,73300.0,kg/TJ,5751.620104999999,Naphtha combustion consumption by freight transport,AR-S,SESCO,annual,kg,593a6d73-cdcb-3098-8af4-25db85613c5a +2010,Santa Fe,II.1.1,0.07846684999999999,TJ,CH4,0.5,kg/TJ,0.039233424999999995,Naphtha combustion consumption by freight transport,AR-S,SESCO,annual,kg,99c6ee55-9c61-30a6-90f1-bb9b2e3c06a3 +2010,Santa Fe,II.1.1,0.07846684999999999,TJ,N2O,2.0,kg/TJ,0.15693369999999998,Naphtha combustion consumption by freight transport,AR-S,SESCO,annual,kg,f509ad97-0ea0-3ac5-b0a8-3d66eec41a07 +2010,Buenos Aires,II.1.1,4.488715,TJ,CO2,73300.0,kg/TJ,329022.8095,Naphtha combustion consumption by freight transport,AR-B,SESCO,annual,kg,e98cca17-da78-31e6-b2d9-aee2d59bc147 +2010,Buenos Aires,II.1.1,4.488715,TJ,CH4,0.5,kg/TJ,2.2443575,Naphtha combustion consumption by freight transport,AR-B,SESCO,annual,kg,209cd5f4-b439-3ba8-9a94-a7142d84019a +2010,Buenos Aires,II.1.1,4.488715,TJ,N2O,2.0,kg/TJ,8.97743,Naphtha combustion consumption by freight transport,AR-B,SESCO,annual,kg,625799c9-cfe0-357f-8162-573b44fa8431 +2010,Capital Federal,II.1.1,15.88559665,TJ,CO2,73300.0,kg/TJ,1164414.234445,Naphtha combustion consumption by freight transport,AR-C,SESCO,annual,kg,6706d359-f869-3e9c-9ec0-5875fdcf8131 +2010,Capital Federal,II.1.1,15.88559665,TJ,CH4,0.5,kg/TJ,7.942798325,Naphtha combustion consumption by freight transport,AR-C,SESCO,annual,kg,1e96d499-c8f3-3c63-ae00-527cd92aef94 +2010,Capital Federal,II.1.1,15.88559665,TJ,N2O,2.0,kg/TJ,31.7711933,Naphtha combustion consumption by freight transport,AR-C,SESCO,annual,kg,18a5afa8-938d-31f3-92a3-edb330b9755a +2010,Corrientes,II.1.1,0.0089089,TJ,CO2,73300.0,kg/TJ,653.02237,Naphtha combustion consumption by freight transport,AR-W,SESCO,annual,kg,5028d749-ac8e-3451-a1cd-a8726d078da7 +2010,Corrientes,II.1.1,0.0089089,TJ,CH4,0.5,kg/TJ,0.00445445,Naphtha combustion consumption by freight transport,AR-W,SESCO,annual,kg,2d9c18f3-9374-3e9e-811b-f4d8d508c79e +2010,Corrientes,II.1.1,0.0089089,TJ,N2O,2.0,kg/TJ,0.0178178,Naphtha combustion consumption by freight transport,AR-W,SESCO,annual,kg,a1548b43-9f16-3c77-a93c-78076771d93b +2010,Córdoba,II.1.1,0.4708011,TJ,CO2,73300.0,kg/TJ,34509.720629999996,Naphtha combustion consumption by freight transport,AR-X,SESCO,annual,kg,4cf9f83c-5c2c-3e95-8fd0-c70cb75e7bd5 +2010,Córdoba,II.1.1,0.4708011,TJ,CH4,0.5,kg/TJ,0.23540055,Naphtha combustion consumption by freight transport,AR-X,SESCO,annual,kg,ece7d76b-683c-3e66-9963-0c84fb65c658 +2010,Córdoba,II.1.1,0.4708011,TJ,N2O,2.0,kg/TJ,0.9416022,Naphtha combustion consumption by freight transport,AR-X,SESCO,annual,kg,a9159876-3d0d-3bf2-8567-b4cd5e966d56 +2010,Entre Rios,II.1.1,36.573090400000005,TJ,CO2,73300.0,kg/TJ,2680807.52632,Naphtha combustion consumption by freight transport,AR-E,SESCO,annual,kg,af4edf69-9162-3c1b-a572-6c7da5352d77 +2010,Entre Rios,II.1.1,36.573090400000005,TJ,CH4,0.5,kg/TJ,18.286545200000003,Naphtha combustion consumption by freight transport,AR-E,SESCO,annual,kg,8d520522-6a38-380e-97d9-e0a7749b8554 +2010,Entre Rios,II.1.1,36.573090400000005,TJ,N2O,2.0,kg/TJ,73.14618080000001,Naphtha combustion consumption by freight transport,AR-E,SESCO,annual,kg,94144fe5-7bcf-3a93-88df-95061eb6c1fc +2010,Misiones,II.1.1,0.0226149,TJ,CO2,73300.0,kg/TJ,1657.67217,Naphtha combustion consumption by freight transport,AR-N,SESCO,annual,kg,a7479bc8-eea0-3efd-b566-8586853b0a2d +2010,Misiones,II.1.1,0.0226149,TJ,CH4,0.5,kg/TJ,0.01130745,Naphtha combustion consumption by freight transport,AR-N,SESCO,annual,kg,864891d4-af02-38aa-afbf-9dfcfaa7f976 +2010,Misiones,II.1.1,0.0226149,TJ,N2O,2.0,kg/TJ,0.0452298,Naphtha combustion consumption by freight transport,AR-N,SESCO,annual,kg,c71f03b9-f0ca-3a33-838a-92023eee4c6d +2010,Salta,II.1.1,1.0334324,TJ,CO2,73300.0,kg/TJ,75750.59491999999,Naphtha combustion consumption by freight transport,AR-A,SESCO,annual,kg,ece8e709-5652-31aa-bff7-d68b22457b70 +2010,Salta,II.1.1,1.0334324,TJ,CH4,0.5,kg/TJ,0.5167162,Naphtha combustion consumption by freight transport,AR-A,SESCO,annual,kg,38c25837-b907-34f7-8a32-dc2492ec722a +2010,Salta,II.1.1,1.0334324,TJ,N2O,2.0,kg/TJ,2.0668648,Naphtha combustion consumption by freight transport,AR-A,SESCO,annual,kg,f1593c18-0d8f-375f-82ed-d27d0be354e5 +2010,San Luis,II.1.1,0.07024324999999998,TJ,CO2,73300.0,kg/TJ,5148.830224999999,Naphtha combustion consumption by freight transport,AR-D,SESCO,annual,kg,a4eb5cfc-9fd1-3718-8cca-e2b1ad4f1443 +2010,San Luis,II.1.1,0.07024324999999998,TJ,CH4,0.5,kg/TJ,0.03512162499999999,Naphtha combustion consumption by freight transport,AR-D,SESCO,annual,kg,cfb0c057-8f1e-3f5d-bc9d-4aa287d5411b +2010,San Luis,II.1.1,0.07024324999999998,TJ,N2O,2.0,kg/TJ,0.14048649999999996,Naphtha combustion consumption by freight transport,AR-D,SESCO,annual,kg,93c34e91-3e04-3322-959f-752db6757e6d +2010,Santa Fe,II.1.1,0.77815815,TJ,CO2,73300.0,kg/TJ,57038.992395,Naphtha combustion consumption by freight transport,AR-S,SESCO,annual,kg,388ffc62-48b5-3c04-915d-960bb475cea2 +2010,Santa Fe,II.1.1,0.77815815,TJ,CH4,0.5,kg/TJ,0.389079075,Naphtha combustion consumption by freight transport,AR-S,SESCO,annual,kg,91662ef3-02a1-337d-afe6-db142a34fb68 +2010,Santa Fe,II.1.1,0.77815815,TJ,N2O,2.0,kg/TJ,1.5563163,Naphtha combustion consumption by freight transport,AR-S,SESCO,annual,kg,162f43a2-03f4-32ec-a5e5-1019471793a9 +2010,Santiago del Estero,II.1.1,0.030153199999999998,TJ,CO2,73300.0,kg/TJ,2210.2295599999998,Naphtha combustion consumption by freight transport,AR-G,SESCO,annual,kg,3d657dd3-61a0-3fd1-90ab-621dee230f22 +2010,Santiago del Estero,II.1.1,0.030153199999999998,TJ,CH4,0.5,kg/TJ,0.015076599999999999,Naphtha combustion consumption by freight transport,AR-G,SESCO,annual,kg,0c19da1e-ac0c-352f-98eb-0cb79bf58528 +2010,Santiago del Estero,II.1.1,0.030153199999999998,TJ,N2O,2.0,kg/TJ,0.060306399999999996,Naphtha combustion consumption by freight transport,AR-G,SESCO,annual,kg,1f6ca08d-df31-32ca-b11f-70c8fd9ff640 +2010,Tierra del Fuego,II.1.1,0.0185031,TJ,CO2,73300.0,kg/TJ,1356.2772300000001,Naphtha combustion consumption by freight transport,AR-V,SESCO,annual,kg,ab673624-8363-332d-a5c1-d4662ac1127d +2010,Tierra del Fuego,II.1.1,0.0185031,TJ,CH4,0.5,kg/TJ,0.00925155,Naphtha combustion consumption by freight transport,AR-V,SESCO,annual,kg,dbcc454d-adbe-3d54-963f-bf9d5868ff7e +2010,Tierra del Fuego,II.1.1,0.0185031,TJ,N2O,2.0,kg/TJ,0.0370062,Naphtha combustion consumption by freight transport,AR-V,SESCO,annual,kg,cf73dc1c-bc04-3f56-a52d-e4e79341342a +2010,Tucuman,II.1.1,0.15453514999999998,TJ,CO2,73300.0,kg/TJ,11327.426494999998,Naphtha combustion consumption by freight transport,AR-T,SESCO,annual,kg,a607d211-af78-33cd-873d-871e16beb931 +2010,Tucuman,II.1.1,0.15453514999999998,TJ,CH4,0.5,kg/TJ,0.07726757499999999,Naphtha combustion consumption by freight transport,AR-T,SESCO,annual,kg,90968d46-0214-38f3-86b9-134f33023281 +2010,Tucuman,II.1.1,0.15453514999999998,TJ,N2O,2.0,kg/TJ,0.30907029999999996,Naphtha combustion consumption by freight transport,AR-T,SESCO,annual,kg,1c12e326-6ad4-337b-a9a9-33bc9e748d5f +2010,Buenos Aires,II.1.1,3.21645555,TJ,CO2,73300.0,kg/TJ,235766.191815,Naphtha combustion consumption by freight transport,AR-B,SESCO,annual,kg,e4455b89-7465-32c6-995a-488abc902b9d +2010,Buenos Aires,II.1.1,3.21645555,TJ,CH4,0.5,kg/TJ,1.608227775,Naphtha combustion consumption by freight transport,AR-B,SESCO,annual,kg,5df300d6-a0c2-3952-8f00-4a83acfae4fc +2010,Buenos Aires,II.1.1,3.21645555,TJ,N2O,2.0,kg/TJ,6.4329111,Naphtha combustion consumption by freight transport,AR-B,SESCO,annual,kg,a5406212-abe7-3aab-946a-8f11d89d42c1 +2010,Capital Federal,II.1.1,16.32281805,TJ,CO2,73300.0,kg/TJ,1196462.5630649999,Naphtha combustion consumption by freight transport,AR-C,SESCO,annual,kg,7da0b75f-050f-3108-9ae4-9878708d1394 +2010,Capital Federal,II.1.1,16.32281805,TJ,CH4,0.5,kg/TJ,8.161409025,Naphtha combustion consumption by freight transport,AR-C,SESCO,annual,kg,45bf64b7-fea4-3c98-b899-edfb834aafac +2010,Capital Federal,II.1.1,16.32281805,TJ,N2O,2.0,kg/TJ,32.6456361,Naphtha combustion consumption by freight transport,AR-C,SESCO,annual,kg,edf96b16-71ab-343c-b476-4f6bc286141c +2010,Chaco,II.1.1,0.0116501,TJ,CO2,73300.0,kg/TJ,853.95233,Naphtha combustion consumption by freight transport,AR-H,SESCO,annual,kg,8a8f88a7-122d-3d00-9784-94fa9c229216 +2010,Chaco,II.1.1,0.0116501,TJ,CH4,0.5,kg/TJ,0.00582505,Naphtha combustion consumption by freight transport,AR-H,SESCO,annual,kg,4cbaab44-6f9f-3f8c-beda-899aee368e7c +2010,Chaco,II.1.1,0.0116501,TJ,N2O,2.0,kg/TJ,0.0233002,Naphtha combustion consumption by freight transport,AR-H,SESCO,annual,kg,6ac653ff-67d6-3e7a-a2be-21cc23f1b794 +2010,Corrientes,II.1.1,0.05242544999999999,TJ,CO2,73300.0,kg/TJ,3842.7854849999994,Naphtha combustion consumption by freight transport,AR-W,SESCO,annual,kg,2687f371-17e9-3d15-b108-2d7321858213 +2010,Corrientes,II.1.1,0.05242544999999999,TJ,CH4,0.5,kg/TJ,0.026212724999999996,Naphtha combustion consumption by freight transport,AR-W,SESCO,annual,kg,d5bf28a6-85b0-31a8-a052-b477800e319d +2010,Corrientes,II.1.1,0.05242544999999999,TJ,N2O,2.0,kg/TJ,0.10485089999999998,Naphtha combustion consumption by freight transport,AR-W,SESCO,annual,kg,e325db8c-759b-3b63-ae74-ae260bfa575c +2010,Córdoba,II.1.1,0.30427319999999997,TJ,CO2,73300.0,kg/TJ,22303.22556,Naphtha combustion consumption by freight transport,AR-X,SESCO,annual,kg,61c8473d-0f0f-308a-a835-16d0de395bc8 +2010,Córdoba,II.1.1,0.30427319999999997,TJ,CH4,0.5,kg/TJ,0.15213659999999998,Naphtha combustion consumption by freight transport,AR-X,SESCO,annual,kg,3d547a7c-9339-3233-beea-f1bca32ce824 +2010,Córdoba,II.1.1,0.30427319999999997,TJ,N2O,2.0,kg/TJ,0.6085463999999999,Naphtha combustion consumption by freight transport,AR-X,SESCO,annual,kg,66381ab2-023d-3904-949a-e0fef5dffcc0 +2010,Entre Rios,II.1.1,1.13588475,TJ,CO2,73300.0,kg/TJ,83260.35217499999,Naphtha combustion consumption by freight transport,AR-E,SESCO,annual,kg,11c9c264-6af8-3605-884c-14a3cff49ee5 +2010,Entre Rios,II.1.1,1.13588475,TJ,CH4,0.5,kg/TJ,0.567942375,Naphtha combustion consumption by freight transport,AR-E,SESCO,annual,kg,cc21a93b-8931-33b5-be4a-da9f1b267cc2 +2010,Entre Rios,II.1.1,1.13588475,TJ,N2O,2.0,kg/TJ,2.2717695,Naphtha combustion consumption by freight transport,AR-E,SESCO,annual,kg,622285d2-cfe2-3262-8528-e73f89b86382 +2010,Misiones,II.1.1,0.024328149999999996,TJ,CO2,73300.0,kg/TJ,1783.2533949999997,Naphtha combustion consumption by freight transport,AR-N,SESCO,annual,kg,f92a7236-5d3e-3993-afd1-ed45819197cb +2010,Misiones,II.1.1,0.024328149999999996,TJ,CH4,0.5,kg/TJ,0.012164074999999998,Naphtha combustion consumption by freight transport,AR-N,SESCO,annual,kg,6f82107e-a39c-302d-9f47-57b60474bff1 +2010,Misiones,II.1.1,0.024328149999999996,TJ,N2O,2.0,kg/TJ,0.04865629999999999,Naphtha combustion consumption by freight transport,AR-N,SESCO,annual,kg,371263cd-7ead-3387-bbd7-0288435ca9ac +2010,San Luis,II.1.1,0.030838499999999998,TJ,CO2,73300.0,kg/TJ,2260.4620499999996,Naphtha combustion consumption by freight transport,AR-D,SESCO,annual,kg,d5d334d3-bf16-3e85-a6b6-5e5e0c7e5195 +2010,San Luis,II.1.1,0.030838499999999998,TJ,CH4,0.5,kg/TJ,0.015419249999999999,Naphtha combustion consumption by freight transport,AR-D,SESCO,annual,kg,f0786fbf-d6d5-3a9e-b3c1-372352f2fb28 +2010,San Luis,II.1.1,0.030838499999999998,TJ,N2O,2.0,kg/TJ,0.061676999999999996,Naphtha combustion consumption by freight transport,AR-D,SESCO,annual,kg,720ffae1-6470-3718-81dd-554753719100 +2010,Santa Fe,II.1.1,0.28679804999999997,TJ,CO2,73300.0,kg/TJ,21022.297065,Naphtha combustion consumption by freight transport,AR-S,SESCO,annual,kg,95c49b08-d091-330b-b9fb-7fd16463b417 +2010,Santa Fe,II.1.1,0.28679804999999997,TJ,CH4,0.5,kg/TJ,0.14339902499999999,Naphtha combustion consumption by freight transport,AR-S,SESCO,annual,kg,ee7eddf6-d9fe-3827-904d-b40fe386cf61 +2010,Santa Fe,II.1.1,0.28679804999999997,TJ,N2O,2.0,kg/TJ,0.5735960999999999,Naphtha combustion consumption by freight transport,AR-S,SESCO,annual,kg,9c4ee0c3-0602-3496-afaa-e70e2fb5251c +2010,Tierra del Fuego,II.1.1,0.18948545,TJ,CO2,73300.0,kg/TJ,13889.283485,Naphtha combustion consumption by freight transport,AR-V,SESCO,annual,kg,bba7e68d-a174-3d9e-92e2-88012b584b79 +2010,Tierra del Fuego,II.1.1,0.18948545,TJ,CH4,0.5,kg/TJ,0.094742725,Naphtha combustion consumption by freight transport,AR-V,SESCO,annual,kg,f37d8eb3-d5de-3e04-a9c0-ad974acc8db0 +2010,Tierra del Fuego,II.1.1,0.18948545,TJ,N2O,2.0,kg/TJ,0.3789709,Naphtha combustion consumption by freight transport,AR-V,SESCO,annual,kg,1a2d928e-3df4-3cdb-a238-487def7d7310 +2010,Tucuman,II.1.1,0.07435504999999998,TJ,CO2,73300.0,kg/TJ,5450.225164999998,Naphtha combustion consumption by freight transport,AR-T,SESCO,annual,kg,af909896-d69e-3f12-9834-c2fe0ace54b7 +2010,Tucuman,II.1.1,0.07435504999999998,TJ,CH4,0.5,kg/TJ,0.03717752499999999,Naphtha combustion consumption by freight transport,AR-T,SESCO,annual,kg,69df8fab-0721-336e-be56-5d0b9769c8d3 +2010,Tucuman,II.1.1,0.07435504999999998,TJ,N2O,2.0,kg/TJ,0.14871009999999996,Naphtha combustion consumption by freight transport,AR-T,SESCO,annual,kg,f0d7e04f-ec20-3146-936f-6c9ad1ed3c27 +2010,Buenos Aires,II.1.1,682.1652452000001,TJ,CO2,71500.0,kg/TJ,48774815.0318,Jet Kerosene combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,f2758fec-4299-300b-9af0-f40f455553f2 +2010,Buenos Aires,II.1.1,682.1652452000001,TJ,CH4,0.5,kg/TJ,341.08262260000004,Jet Kerosene combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,980acc52-6581-3c10-9614-33582b3c6104 +2010,Buenos Aires,II.1.1,682.1652452000001,TJ,N2O,2.0,kg/TJ,1364.3304904000001,Jet Kerosene combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,5c7e229e-6d54-3387-ac19-e86dadde3023 +2010,Capital Federal,II.1.1,119.32324609999999,TJ,CO2,71500.0,kg/TJ,8531612.09615,Jet Kerosene combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,bc5d41d8-ee50-38b7-bd8d-a8e327d9a3a3 +2010,Capital Federal,II.1.1,119.32324609999999,TJ,CH4,0.5,kg/TJ,59.661623049999996,Jet Kerosene combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,78fb33a4-f922-3d6a-8162-dc84c5cb6322 +2010,Capital Federal,II.1.1,119.32324609999999,TJ,N2O,2.0,kg/TJ,238.64649219999998,Jet Kerosene combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,b913b59c-7241-31d3-b56c-68aa5563a453 +2010,Córdoba,II.1.1,21.328279299999995,TJ,CO2,71500.0,kg/TJ,1524971.9699499996,Jet Kerosene combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,6ea3143d-5b8d-3981-b25f-46633095f52a +2010,Córdoba,II.1.1,21.328279299999995,TJ,CH4,0.5,kg/TJ,10.664139649999997,Jet Kerosene combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,ef614b15-c62e-3dd7-866e-f38072d17ea1 +2010,Córdoba,II.1.1,21.328279299999995,TJ,N2O,2.0,kg/TJ,42.65655859999999,Jet Kerosene combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,c482e956-b441-34b8-9a17-f7651d51956d +2010,Buenos Aires,II.1.1,1015.5936251999999,TJ,CO2,74100.0,kg/TJ,75255487.62731999,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,5a0f37ca-3522-32e4-971d-8b599c7cb0a2 +2010,Buenos Aires,II.1.1,1015.5936251999999,TJ,CH4,3.9,kg/TJ,3960.8151382799997,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,d04b0b00-5689-3532-98ce-6527c497a7c1 +2010,Buenos Aires,II.1.1,1015.5936251999999,TJ,N2O,3.9,kg/TJ,3960.8151382799997,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,d04b0b00-5689-3532-98ce-6527c497a7c1 +2010,Capital Federal,II.1.1,823.6680186,TJ,CO2,74100.0,kg/TJ,61033800.17826,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,d6788c03-79f2-382b-b2db-0c8f475fa918 +2010,Capital Federal,II.1.1,823.6680186,TJ,CH4,3.9,kg/TJ,3212.30527254,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,d8fc04ea-d950-3a5a-a573-58420c63802a +2010,Capital Federal,II.1.1,823.6680186,TJ,N2O,3.9,kg/TJ,3212.30527254,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,d8fc04ea-d950-3a5a-a573-58420c63802a +2010,Catamarca,II.1.1,7.245672,TJ,CO2,74100.0,kg/TJ,536904.2951999999,Gas Oil combustion consumption by public passenger transport,AR-K,SESCO,annual,kg,bb1a299e-fb35-3075-9e14-94cd8925557f +2010,Catamarca,II.1.1,7.245672,TJ,CH4,3.9,kg/TJ,28.2581208,Gas Oil combustion consumption by public passenger transport,AR-K,SESCO,annual,kg,01cfeb2e-0fbe-399b-bca6-1dd641d46a4a +2010,Catamarca,II.1.1,7.245672,TJ,N2O,3.9,kg/TJ,28.2581208,Gas Oil combustion consumption by public passenger transport,AR-K,SESCO,annual,kg,01cfeb2e-0fbe-399b-bca6-1dd641d46a4a +2010,Chubut,II.1.1,252.12157319999997,TJ,CO2,74100.0,kg/TJ,18682208.574119996,Gas Oil combustion consumption by public passenger transport,AR-U,SESCO,annual,kg,a0d6a0b0-9032-3b3a-8315-96cbb4af1371 +2010,Chubut,II.1.1,252.12157319999997,TJ,CH4,3.9,kg/TJ,983.2741354799998,Gas Oil combustion consumption by public passenger transport,AR-U,SESCO,annual,kg,5b9a19e8-6ae3-36ee-a914-e92464e742f9 +2010,Chubut,II.1.1,252.12157319999997,TJ,N2O,3.9,kg/TJ,983.2741354799998,Gas Oil combustion consumption by public passenger transport,AR-U,SESCO,annual,kg,5b9a19e8-6ae3-36ee-a914-e92464e742f9 +2010,Córdoba,II.1.1,21.5405232,TJ,CO2,74100.0,kg/TJ,1596152.7691199998,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,592b9061-6745-330d-9708-afe692c06be3 +2010,Córdoba,II.1.1,21.5405232,TJ,CH4,3.9,kg/TJ,84.00804047999999,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,5c0392e5-4bad-38a2-bb9c-4f12cb713b2e +2010,Córdoba,II.1.1,21.5405232,TJ,N2O,3.9,kg/TJ,84.00804047999999,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,5c0392e5-4bad-38a2-bb9c-4f12cb713b2e +2010,Entre Rios,II.1.1,204.067164,TJ,CO2,74100.0,kg/TJ,15121376.8524,Gas Oil combustion consumption by public passenger transport,AR-E,SESCO,annual,kg,78a001f0-edfb-316d-8c22-f442aa295630 +2010,Entre Rios,II.1.1,204.067164,TJ,CH4,3.9,kg/TJ,795.8619395999999,Gas Oil combustion consumption by public passenger transport,AR-E,SESCO,annual,kg,eba6b6ee-9102-30ad-985f-9f1ea6516e3f +2010,Entre Rios,II.1.1,204.067164,TJ,N2O,3.9,kg/TJ,795.8619395999999,Gas Oil combustion consumption by public passenger transport,AR-E,SESCO,annual,kg,eba6b6ee-9102-30ad-985f-9f1ea6516e3f +2010,La Pampa,II.1.1,69.980694,TJ,CO2,74100.0,kg/TJ,5185569.4254,Gas Oil combustion consumption by public passenger transport,AR-L,SESCO,annual,kg,64403689-251a-3405-af52-924b06434f0b +2010,La Pampa,II.1.1,69.980694,TJ,CH4,3.9,kg/TJ,272.9247066,Gas Oil combustion consumption by public passenger transport,AR-L,SESCO,annual,kg,db4df392-23b1-3c5e-a710-088f87b17782 +2010,La Pampa,II.1.1,69.980694,TJ,N2O,3.9,kg/TJ,272.9247066,Gas Oil combustion consumption by public passenger transport,AR-L,SESCO,annual,kg,db4df392-23b1-3c5e-a710-088f87b17782 +2010,Mendoza,II.1.1,91.4688432,TJ,CO2,74100.0,kg/TJ,6777841.2811199995,Gas Oil combustion consumption by public passenger transport,AR-M,SESCO,annual,kg,048fe61c-ed35-320a-9b4a-e438c06edda7 +2010,Mendoza,II.1.1,91.4688432,TJ,CH4,3.9,kg/TJ,356.72848847999995,Gas Oil combustion consumption by public passenger transport,AR-M,SESCO,annual,kg,28c6914a-c463-33ac-a1eb-ef6c0c2c4d81 +2010,Mendoza,II.1.1,91.4688432,TJ,N2O,3.9,kg/TJ,356.72848847999995,Gas Oil combustion consumption by public passenger transport,AR-M,SESCO,annual,kg,28c6914a-c463-33ac-a1eb-ef6c0c2c4d81 +2010,Misiones,II.1.1,474.05838480000006,TJ,CO2,74100.0,kg/TJ,35127726.31368,Gas Oil combustion consumption by public passenger transport,AR-N,SESCO,annual,kg,0d158071-baf3-3642-ba3e-82dd6ad938a9 +2010,Misiones,II.1.1,474.05838480000006,TJ,CH4,3.9,kg/TJ,1848.8277007200002,Gas Oil combustion consumption by public passenger transport,AR-N,SESCO,annual,kg,f4678183-7de4-3cc3-b4ac-cab37325e78c +2010,Misiones,II.1.1,474.05838480000006,TJ,N2O,3.9,kg/TJ,1848.8277007200002,Gas Oil combustion consumption by public passenger transport,AR-N,SESCO,annual,kg,f4678183-7de4-3cc3-b4ac-cab37325e78c +2010,Neuquén,II.1.1,38.2832268,TJ,CO2,74100.0,kg/TJ,2836787.10588,Gas Oil combustion consumption by public passenger transport,AR-Q,SESCO,annual,kg,df010449-abc5-3a30-b860-ebde6123acfb +2010,Neuquén,II.1.1,38.2832268,TJ,CH4,3.9,kg/TJ,149.30458452,Gas Oil combustion consumption by public passenger transport,AR-Q,SESCO,annual,kg,27b8d4d8-e58c-359c-8efe-c7e6a6fe37d4 +2010,Neuquén,II.1.1,38.2832268,TJ,N2O,3.9,kg/TJ,149.30458452,Gas Oil combustion consumption by public passenger transport,AR-Q,SESCO,annual,kg,27b8d4d8-e58c-359c-8efe-c7e6a6fe37d4 +2010,Rio Negro,II.1.1,165.220104,TJ,CO2,74100.0,kg/TJ,12242809.7064,Gas Oil combustion consumption by public passenger transport,AR-R,SESCO,annual,kg,ca602253-38dd-341d-ac2b-6cc6d0a7c439 +2010,Rio Negro,II.1.1,165.220104,TJ,CH4,3.9,kg/TJ,644.3584056,Gas Oil combustion consumption by public passenger transport,AR-R,SESCO,annual,kg,b3bf2a01-836c-3614-b37c-b2a492f11f85 +2010,Rio Negro,II.1.1,165.220104,TJ,N2O,3.9,kg/TJ,644.3584056,Gas Oil combustion consumption by public passenger transport,AR-R,SESCO,annual,kg,b3bf2a01-836c-3614-b37c-b2a492f11f85 +2010,Salta,II.1.1,8.26245,TJ,CO2,74100.0,kg/TJ,612247.5449999999,Gas Oil combustion consumption by public passenger transport,AR-A,SESCO,annual,kg,3cd035f9-6b9d-3068-841e-6a85e4aa4aef +2010,Salta,II.1.1,8.26245,TJ,CH4,3.9,kg/TJ,32.223555,Gas Oil combustion consumption by public passenger transport,AR-A,SESCO,annual,kg,a9781d2d-c1a6-3aeb-adf3-06076c79bbd3 +2010,Salta,II.1.1,8.26245,TJ,N2O,3.9,kg/TJ,32.223555,Gas Oil combustion consumption by public passenger transport,AR-A,SESCO,annual,kg,a9781d2d-c1a6-3aeb-adf3-06076c79bbd3 +2010,San Juan,II.1.1,5.191888799999999,TJ,CO2,74100.0,kg/TJ,384718.96007999993,Gas Oil combustion consumption by public passenger transport,AR-J,SESCO,annual,kg,025706e8-e630-3e75-8b84-9ad7f0dce1e2 +2010,San Juan,II.1.1,5.191888799999999,TJ,CH4,3.9,kg/TJ,20.248366319999995,Gas Oil combustion consumption by public passenger transport,AR-J,SESCO,annual,kg,b6b935ce-0c6b-3749-8668-d620da1a49c9 +2010,San Juan,II.1.1,5.191888799999999,TJ,N2O,3.9,kg/TJ,20.248366319999995,Gas Oil combustion consumption by public passenger transport,AR-J,SESCO,annual,kg,b6b935ce-0c6b-3749-8668-d620da1a49c9 +2010,San Luis,II.1.1,21.702702,TJ,CO2,74100.0,kg/TJ,1608170.2182,Gas Oil combustion consumption by public passenger transport,AR-D,SESCO,annual,kg,f2187f6a-7136-3a0c-b37d-5d91e06b7c16 +2010,San Luis,II.1.1,21.702702,TJ,CH4,3.9,kg/TJ,84.64053779999999,Gas Oil combustion consumption by public passenger transport,AR-D,SESCO,annual,kg,fc69319a-56a4-3ae4-8857-3cfab1570e43 +2010,San Luis,II.1.1,21.702702,TJ,N2O,3.9,kg/TJ,84.64053779999999,Gas Oil combustion consumption by public passenger transport,AR-D,SESCO,annual,kg,fc69319a-56a4-3ae4-8857-3cfab1570e43 +2010,Santa Fe,II.1.1,107.40065279999999,TJ,CO2,74100.0,kg/TJ,7958388.372479999,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,30670841-2478-3dd4-9036-4257493bba65 +2010,Santa Fe,II.1.1,107.40065279999999,TJ,CH4,3.9,kg/TJ,418.86254591999995,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,1e6e14d9-6823-3b92-ab0b-1f252d19a716 +2010,Santa Fe,II.1.1,107.40065279999999,TJ,N2O,3.9,kg/TJ,418.86254591999995,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,1e6e14d9-6823-3b92-ab0b-1f252d19a716 +2010,Santiago del Estero,II.1.1,7.192936799999998,TJ,CO2,74100.0,kg/TJ,532996.6168799999,Gas Oil combustion consumption by public passenger transport,AR-G,SESCO,annual,kg,3f45be92-f06b-3f9b-92cb-4bf13fc4ab1d +2010,Santiago del Estero,II.1.1,7.192936799999998,TJ,CH4,3.9,kg/TJ,28.052453519999993,Gas Oil combustion consumption by public passenger transport,AR-G,SESCO,annual,kg,0cf436da-cf9f-33cf-880b-189739d01781 +2010,Santiago del Estero,II.1.1,7.192936799999998,TJ,N2O,3.9,kg/TJ,28.052453519999993,Gas Oil combustion consumption by public passenger transport,AR-G,SESCO,annual,kg,0cf436da-cf9f-33cf-880b-189739d01781 +2010,Buenos Aires,II.1.1,12.9822504,TJ,CO2,74100.0,kg/TJ,961984.7546399999,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,6b0893bc-9cb0-317f-9003-61f15f70a26b +2010,Buenos Aires,II.1.1,12.9822504,TJ,CH4,3.9,kg/TJ,50.63077656,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,a06cbcdf-5ed4-3b5d-86cd-d0f01d33a0f7 +2010,Buenos Aires,II.1.1,12.9822504,TJ,N2O,3.9,kg/TJ,50.63077656,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,a06cbcdf-5ed4-3b5d-86cd-d0f01d33a0f7 +2010,Capital Federal,II.1.1,16.2167964,TJ,CO2,74100.0,kg/TJ,1201664.61324,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,bdf5097e-a1b9-3aac-b623-3453602b1182 +2010,Capital Federal,II.1.1,16.2167964,TJ,CH4,3.9,kg/TJ,63.245505959999996,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,1ac768a1-23ec-3c7b-bc9e-ed82e6efa1fb +2010,Capital Federal,II.1.1,16.2167964,TJ,N2O,3.9,kg/TJ,63.245505959999996,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,1ac768a1-23ec-3c7b-bc9e-ed82e6efa1fb +2010,Córdoba,II.1.1,0.049484400000000005,TJ,CO2,74100.0,kg/TJ,3666.79404,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,971323dd-9b0f-3715-a209-049ab56965cb +2010,Córdoba,II.1.1,0.049484400000000005,TJ,CH4,3.9,kg/TJ,0.19298916000000002,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,99282454-b725-39d2-80a6-423ba6c1fcea +2010,Córdoba,II.1.1,0.049484400000000005,TJ,N2O,3.9,kg/TJ,0.19298916000000002,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,99282454-b725-39d2-80a6-423ba6c1fcea +2010,Entre Rios,II.1.1,7.971684,TJ,CO2,74100.0,kg/TJ,590701.7844,Gas Oil combustion consumption by public passenger transport,AR-E,SESCO,annual,kg,e6b52afe-3188-3b24-afcb-ea3dade12d70 +2010,Entre Rios,II.1.1,7.971684,TJ,CH4,3.9,kg/TJ,31.0895676,Gas Oil combustion consumption by public passenger transport,AR-E,SESCO,annual,kg,73d8843a-2fc6-3f99-92b6-3226ef300731 +2010,Entre Rios,II.1.1,7.971684,TJ,N2O,3.9,kg/TJ,31.0895676,Gas Oil combustion consumption by public passenger transport,AR-E,SESCO,annual,kg,73d8843a-2fc6-3f99-92b6-3226ef300731 +2010,Misiones,II.1.1,8.0128608,TJ,CO2,74100.0,kg/TJ,593752.98528,Gas Oil combustion consumption by public passenger transport,AR-N,SESCO,annual,kg,6663f9fd-5f50-327a-a843-088076ae48e4 +2010,Misiones,II.1.1,8.0128608,TJ,CH4,3.9,kg/TJ,31.25015712,Gas Oil combustion consumption by public passenger transport,AR-N,SESCO,annual,kg,b35c31cc-54e1-34de-ab28-904870238599 +2010,Misiones,II.1.1,8.0128608,TJ,N2O,3.9,kg/TJ,31.25015712,Gas Oil combustion consumption by public passenger transport,AR-N,SESCO,annual,kg,b35c31cc-54e1-34de-ab28-904870238599 +2010,Neuquén,II.1.1,0.36156119999999997,TJ,CO2,74100.0,kg/TJ,26791.68492,Gas Oil combustion consumption by public passenger transport,AR-Q,SESCO,annual,kg,05191746-72a9-3d9c-9e3c-7de4638aea2d +2010,Neuquén,II.1.1,0.36156119999999997,TJ,CH4,3.9,kg/TJ,1.4100886799999999,Gas Oil combustion consumption by public passenger transport,AR-Q,SESCO,annual,kg,210a406e-dd46-35c5-8f76-378949f715c4 +2010,Neuquén,II.1.1,0.36156119999999997,TJ,N2O,3.9,kg/TJ,1.4100886799999999,Gas Oil combustion consumption by public passenger transport,AR-Q,SESCO,annual,kg,210a406e-dd46-35c5-8f76-378949f715c4 +2010,Salta,II.1.1,0.0140868,TJ,CO2,74100.0,kg/TJ,1043.83188,Gas Oil combustion consumption by public passenger transport,AR-A,SESCO,annual,kg,f23e4162-c420-312b-b8d7-995d25a9787e +2010,Salta,II.1.1,0.0140868,TJ,CH4,3.9,kg/TJ,0.05493852,Gas Oil combustion consumption by public passenger transport,AR-A,SESCO,annual,kg,abfd8d0d-095e-3077-aa05-a17df3ce9a90 +2010,Salta,II.1.1,0.0140868,TJ,N2O,3.9,kg/TJ,0.05493852,Gas Oil combustion consumption by public passenger transport,AR-A,SESCO,annual,kg,abfd8d0d-095e-3077-aa05-a17df3ce9a90 +2010,San Luis,II.1.1,0.0061404,TJ,CO2,74100.0,kg/TJ,455.00363999999996,Gas Oil combustion consumption by public passenger transport,AR-D,SESCO,annual,kg,6510ffcc-e89b-38b0-b140-f5db66675d58 +2010,San Luis,II.1.1,0.0061404,TJ,CH4,3.9,kg/TJ,0.02394756,Gas Oil combustion consumption by public passenger transport,AR-D,SESCO,annual,kg,ca29f564-d1db-3822-9c66-a3eb80e57ed0 +2010,San Luis,II.1.1,0.0061404,TJ,N2O,3.9,kg/TJ,0.02394756,Gas Oil combustion consumption by public passenger transport,AR-D,SESCO,annual,kg,ca29f564-d1db-3822-9c66-a3eb80e57ed0 +2010,Santa Fe,II.1.1,0.0155316,TJ,CO2,74100.0,kg/TJ,1150.89156,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,74836ac1-c239-3eff-a5be-faf50f7a7d53 +2010,Santa Fe,II.1.1,0.0155316,TJ,CH4,3.9,kg/TJ,0.06057324,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,6b097977-468a-3115-bdbf-c6db6692abb8 +2010,Santa Fe,II.1.1,0.0155316,TJ,N2O,3.9,kg/TJ,0.06057324,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,6b097977-468a-3115-bdbf-c6db6692abb8 +2010,Buenos Aires,II.1.1,0.20867385,TJ,CO2,73300.0,kg/TJ,15295.793205,Naphtha combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,ae594dd4-ca68-35af-b85c-1c51cdc9bfdc +2010,Buenos Aires,II.1.1,0.20867385,TJ,CH4,0.5,kg/TJ,0.104336925,Naphtha combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,8c61ffad-1fb2-3109-9f0b-8b11e865e035 +2010,Buenos Aires,II.1.1,0.20867385,TJ,N2O,2.0,kg/TJ,0.4173477,Naphtha combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,60b68257-1711-3918-9bd6-715a767bd553 +2010,Buenos Aires,II.1.1,145.46486184999998,TJ,CO2,73300.0,kg/TJ,10662574.373604998,Naphtha combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,7dfe9a3b-ac89-3b7a-b4a2-cceb9c0c6b5c +2010,Buenos Aires,II.1.1,145.46486184999998,TJ,CH4,0.5,kg/TJ,72.73243092499999,Naphtha combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,e122a736-e899-32f3-94a6-91b378e2d462 +2010,Buenos Aires,II.1.1,145.46486184999998,TJ,N2O,2.0,kg/TJ,290.92972369999995,Naphtha combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,4b8e5a93-05f9-3228-8881-08b49bf9eac8 +2010,Capital Federal,II.1.1,0.025356099999999996,TJ,CO2,73300.0,kg/TJ,1858.6021299999998,Naphtha combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,30565d8c-03c9-3390-b350-d1c6d622e087 +2010,Capital Federal,II.1.1,0.025356099999999996,TJ,CH4,0.5,kg/TJ,0.012678049999999998,Naphtha combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,b308e459-aa37-347b-8190-668406bf18a5 +2010,Capital Federal,II.1.1,0.025356099999999996,TJ,N2O,2.0,kg/TJ,0.05071219999999999,Naphtha combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,c15304eb-001c-3e2c-8f2b-8678f536a867 +2010,Córdoba,II.1.1,0.030838499999999998,TJ,CO2,73300.0,kg/TJ,2260.4620499999996,Naphtha combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,ee396754-823f-3662-a82c-743518684113 +2010,Córdoba,II.1.1,0.030838499999999998,TJ,CH4,0.5,kg/TJ,0.015419249999999999,Naphtha combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,f0398eef-fdcc-3197-a73a-a74f03900791 +2010,Córdoba,II.1.1,0.030838499999999998,TJ,N2O,2.0,kg/TJ,0.061676999999999996,Naphtha combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,8c4a111d-d08d-3f9a-8694-27062f3021d1 +2010,Buenos Aires,II.1.1,32.63364335,TJ,CO2,73300.0,kg/TJ,2392046.057555,Naphtha combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,8c09c681-509f-3d87-b26e-dc265af8e816 +2010,Buenos Aires,II.1.1,32.63364335,TJ,CH4,0.5,kg/TJ,16.316821675,Naphtha combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,e3c72e9b-a90f-3ab2-ab1e-c373afe083b6 +2010,Buenos Aires,II.1.1,32.63364335,TJ,N2O,2.0,kg/TJ,65.2672867,Naphtha combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,9b67fa3f-3290-374a-affc-7586fced4f55 +2010,Capital Federal,II.1.1,0.43071105,TJ,CO2,73300.0,kg/TJ,31571.119964999998,Naphtha combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,6a5e9ab5-9d30-31d6-9f41-6dc6df44650f +2010,Capital Federal,II.1.1,0.43071105,TJ,CH4,0.5,kg/TJ,0.215355525,Naphtha combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,270272ad-4a3f-36d6-83cd-b6238b22ff82 +2010,Capital Federal,II.1.1,0.43071105,TJ,N2O,2.0,kg/TJ,0.8614221,Naphtha combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,d3f360f4-f843-3f29-b9fd-3a163dca18c4 +2010,Córdoba,II.1.1,0.07092854999999998,TJ,CO2,73300.0,kg/TJ,5199.062714999998,Naphtha combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,04aa9ced-858d-3ba6-997b-2eadb21b253c +2010,Córdoba,II.1.1,0.07092854999999998,TJ,CH4,0.5,kg/TJ,0.03546427499999999,Naphtha combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,09b41976-cee2-3e86-8708-9c37c37c8d49 +2010,Córdoba,II.1.1,0.07092854999999998,TJ,N2O,2.0,kg/TJ,0.14185709999999996,Naphtha combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,97ad13f3-26f0-309a-83cb-5993dd9502fa +2010,Buenos Aires,II.5.1,1.16952,TJ,CO2,69300.0,kg/TJ,81047.73599999999,Motor Gasoline combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,82efda5c-76bd-3d49-8630-1a698b6aa470 +2010,Buenos Aires,II.5.1,1.16952,TJ,CH4,33.0,kg/TJ,38.594159999999995,Motor Gasoline combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,f77c4cb3-2acc-3846-8997-7ebf1cbdfb03 +2010,Buenos Aires,II.5.1,1.16952,TJ,N2O,3.2,kg/TJ,3.742464,Motor Gasoline combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,23f87942-d89a-3577-a26b-70a32db95f4e +2010,Buenos Aires,II.5.1,1281.23877924,TJ,CO2,74100.0,kg/TJ,94939793.541684,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,15785e0b-18df-3d99-a486-eb18c6a810ae +2010,Buenos Aires,II.5.1,1281.23877924,TJ,CH4,3.9,kg/TJ,4996.831239036,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,0e19ac30-1f5d-330f-b5e1-5ef0b907c215 +2010,Buenos Aires,II.5.1,1281.23877924,TJ,N2O,3.9,kg/TJ,4996.831239036,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,0e19ac30-1f5d-330f-b5e1-5ef0b907c215 +2010,Corrientes,II.5.1,37.18322832,TJ,CO2,74100.0,kg/TJ,2755277.218512,Gas Oil combustion consumption by agriculture machines,AR-W,SESCO,annual,kg,11591787-cc71-3c9e-aab1-64a9964f5856 +2010,Corrientes,II.5.1,37.18322832,TJ,CH4,3.9,kg/TJ,145.01459044799998,Gas Oil combustion consumption by agriculture machines,AR-W,SESCO,annual,kg,103bd715-328a-33a2-8e88-513edfe77101 +2010,Corrientes,II.5.1,37.18322832,TJ,N2O,3.9,kg/TJ,145.01459044799998,Gas Oil combustion consumption by agriculture machines,AR-W,SESCO,annual,kg,103bd715-328a-33a2-8e88-513edfe77101 +2010,Córdoba,II.5.1,669.1155954,TJ,CO2,74100.0,kg/TJ,49581465.61914,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,aa49b5c0-6a18-3962-991f-1a8dbe3994fe +2010,Córdoba,II.5.1,669.1155954,TJ,CH4,3.9,kg/TJ,2609.55082206,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,f0709788-56b6-302b-957c-d1a642ae62b2 +2010,Córdoba,II.5.1,669.1155954,TJ,N2O,3.9,kg/TJ,2609.55082206,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,f0709788-56b6-302b-957c-d1a642ae62b2 +2010,Entre Rios,II.5.1,573.03599808,TJ,CO2,74100.0,kg/TJ,42461967.457728,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,7bc09a47-3a08-37b5-952d-645acb6767cd +2010,Entre Rios,II.5.1,573.03599808,TJ,CH4,3.9,kg/TJ,2234.840392512,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,d7b0b12f-f127-3761-9993-61669b65ebfd +2010,Entre Rios,II.5.1,573.03599808,TJ,N2O,3.9,kg/TJ,2234.840392512,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,d7b0b12f-f127-3761-9993-61669b65ebfd +2010,La Pampa,II.5.1,56.79953075999999,TJ,CO2,74100.0,kg/TJ,4208845.229315999,Gas Oil combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,6c3d1c96-72d1-3d0c-8ed9-ee943352688f +2010,La Pampa,II.5.1,56.79953075999999,TJ,CH4,3.9,kg/TJ,221.51816996399995,Gas Oil combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,e2cbb6e3-2c43-320d-b878-af72c0789174 +2010,La Pampa,II.5.1,56.79953075999999,TJ,N2O,3.9,kg/TJ,221.51816996399995,Gas Oil combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,e2cbb6e3-2c43-320d-b878-af72c0789174 +2010,Neuquén,II.5.1,13.5516822,TJ,CO2,74100.0,kg/TJ,1004179.65102,Gas Oil combustion consumption by agriculture machines,AR-Q,SESCO,annual,kg,8e788e5e-eb76-38c0-a0cf-88212c0c6ce2 +2010,Neuquén,II.5.1,13.5516822,TJ,CH4,3.9,kg/TJ,52.85156058,Gas Oil combustion consumption by agriculture machines,AR-Q,SESCO,annual,kg,5d259937-c866-3da7-b8b2-ec0cdd8e2ea7 +2010,Neuquén,II.5.1,13.5516822,TJ,N2O,3.9,kg/TJ,52.85156058,Gas Oil combustion consumption by agriculture machines,AR-Q,SESCO,annual,kg,5d259937-c866-3da7-b8b2-ec0cdd8e2ea7 +2010,Rio Negro,II.5.1,3.7399731600000004,TJ,CO2,74100.0,kg/TJ,277132.011156,Gas Oil combustion consumption by agriculture machines,AR-R,SESCO,annual,kg,be23264a-dcd3-3ef2-b62f-5bdc92deb96d +2010,Rio Negro,II.5.1,3.7399731600000004,TJ,CH4,3.9,kg/TJ,14.585895324,Gas Oil combustion consumption by agriculture machines,AR-R,SESCO,annual,kg,1e54aed5-a91c-3d8e-ad60-9fc5e5130242 +2010,Rio Negro,II.5.1,3.7399731600000004,TJ,N2O,3.9,kg/TJ,14.585895324,Gas Oil combustion consumption by agriculture machines,AR-R,SESCO,annual,kg,1e54aed5-a91c-3d8e-ad60-9fc5e5130242 +2010,Salta,II.5.1,294.13209504,TJ,CO2,74100.0,kg/TJ,21795188.242464002,Gas Oil combustion consumption by agriculture machines,AR-A,SESCO,annual,kg,d7c89363-054e-3566-b02a-2acb35838084 +2010,Salta,II.5.1,294.13209504,TJ,CH4,3.9,kg/TJ,1147.1151706560001,Gas Oil combustion consumption by agriculture machines,AR-A,SESCO,annual,kg,e754aee9-9c27-3df9-940d-12bce97b2ade +2010,Salta,II.5.1,294.13209504,TJ,N2O,3.9,kg/TJ,1147.1151706560001,Gas Oil combustion consumption by agriculture machines,AR-A,SESCO,annual,kg,e754aee9-9c27-3df9-940d-12bce97b2ade +2010,San Luis,II.5.1,3.65631924,TJ,CO2,74100.0,kg/TJ,270933.25568400003,Gas Oil combustion consumption by agriculture machines,AR-D,SESCO,annual,kg,8d57e6b3-50c3-38fb-b28d-542517d3d784 +2010,San Luis,II.5.1,3.65631924,TJ,CH4,3.9,kg/TJ,14.259645036,Gas Oil combustion consumption by agriculture machines,AR-D,SESCO,annual,kg,c239e335-d04a-3eca-b2aa-ea131d710d70 +2010,San Luis,II.5.1,3.65631924,TJ,N2O,3.9,kg/TJ,14.259645036,Gas Oil combustion consumption by agriculture machines,AR-D,SESCO,annual,kg,c239e335-d04a-3eca-b2aa-ea131d710d70 +2010,Santa Cruz,II.5.1,1.2311501999999999,TJ,CO2,74100.0,kg/TJ,91228.22982,Gas Oil combustion consumption by agriculture machines,AR-Z,SESCO,annual,kg,2aa94386-a64d-380c-88a2-e44ae4020440 +2010,Santa Cruz,II.5.1,1.2311501999999999,TJ,CH4,3.9,kg/TJ,4.801485779999999,Gas Oil combustion consumption by agriculture machines,AR-Z,SESCO,annual,kg,0d292baa-f484-3cf2-80dc-615de24b8999 +2010,Santa Cruz,II.5.1,1.2311501999999999,TJ,N2O,3.9,kg/TJ,4.801485779999999,Gas Oil combustion consumption by agriculture machines,AR-Z,SESCO,annual,kg,0d292baa-f484-3cf2-80dc-615de24b8999 +2010,Santa Fe,II.5.1,340.30208772000003,TJ,CO2,74100.0,kg/TJ,25216384.700052,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,d8adf129-8670-3b37-971b-1d6168270d62 +2010,Santa Fe,II.5.1,340.30208772000003,TJ,CH4,3.9,kg/TJ,1327.1781421080002,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,a575ee17-a4e2-3d66-8524-9ba5c41d9d73 +2010,Santa Fe,II.5.1,340.30208772000003,TJ,N2O,3.9,kg/TJ,1327.1781421080002,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,a575ee17-a4e2-3d66-8524-9ba5c41d9d73 +2010,Santiago del Estero,II.5.1,549.08916048,TJ,CO2,74100.0,kg/TJ,40687506.791568,Gas Oil combustion consumption by agriculture machines,AR-G,SESCO,annual,kg,37c7399c-90bf-33c7-8780-cc8205a1ae8c +2010,Santiago del Estero,II.5.1,549.08916048,TJ,CH4,3.9,kg/TJ,2141.447725872,Gas Oil combustion consumption by agriculture machines,AR-G,SESCO,annual,kg,0b2aee6f-80ae-3e37-b431-a6641fa5aaa0 +2010,Santiago del Estero,II.5.1,549.08916048,TJ,N2O,3.9,kg/TJ,2141.447725872,Gas Oil combustion consumption by agriculture machines,AR-G,SESCO,annual,kg,0b2aee6f-80ae-3e37-b431-a6641fa5aaa0 +2010,Buenos Aires,II.5.1,7.058041759999999,TJ,CO2,73300.0,kg/TJ,517354.46100799995,Naphtha combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,592f311c-d1a1-324b-865e-82acaffa7b5b +2010,Buenos Aires,II.5.1,7.058041759999999,TJ,CH4,0.5,kg/TJ,3.5290208799999996,Naphtha combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,6bbda9aa-2427-3d3f-93be-1919a5b552b8 +2010,Buenos Aires,II.5.1,7.058041759999999,TJ,N2O,2.0,kg/TJ,14.116083519999998,Naphtha combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,34ba3092-159c-338d-b169-3b0abf68aac9 +2010,Córdoba,II.5.1,1.319922065,TJ,CO2,73300.0,kg/TJ,96750.2873645,Naphtha combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,2f5c9844-d215-355d-aba4-334a19a451da +2010,Córdoba,II.5.1,1.319922065,TJ,CH4,0.5,kg/TJ,0.6599610325,Naphtha combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,8a80112c-85c7-3b3b-83ce-012c56ecfbc3 +2010,Córdoba,II.5.1,1.319922065,TJ,N2O,2.0,kg/TJ,2.63984413,Naphtha combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,7046d94b-8639-3195-b620-3e6c90370cf6 +2010,La Pampa,II.5.1,0.446986925,TJ,CO2,73300.0,kg/TJ,32764.1416025,Naphtha combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,4b4dfc7a-e128-30d0-a95c-2304ab11236d +2010,La Pampa,II.5.1,0.446986925,TJ,CH4,0.5,kg/TJ,0.2234934625,Naphtha combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,996214e8-d680-3d94-b988-2b4b6bd5e0b1 +2010,La Pampa,II.5.1,0.446986925,TJ,N2O,2.0,kg/TJ,0.89397385,Naphtha combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,0098629b-94e9-3d52-9096-a85a1adac196 +2010,San Luis,II.5.1,12.8144247,TJ,CO2,73300.0,kg/TJ,939297.33051,Naphtha combustion consumption by agriculture machines,AR-D,SESCO,annual,kg,114cd6d7-1758-3f58-8656-52dc3da8784e +2010,San Luis,II.5.1,12.8144247,TJ,CH4,0.5,kg/TJ,6.40721235,Naphtha combustion consumption by agriculture machines,AR-D,SESCO,annual,kg,e2950431-a24b-3d5f-b2b0-97233459b7c2 +2010,San Luis,II.5.1,12.8144247,TJ,N2O,2.0,kg/TJ,25.6288494,Naphtha combustion consumption by agriculture machines,AR-D,SESCO,annual,kg,9d0c8c1c-f077-30ad-86af-1fbfe56bfb85 +2010,Santa Fe,II.5.1,2.1583523499999995,TJ,CO2,73300.0,kg/TJ,158207.22725499995,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,616f8122-58f1-3c47-81b8-09cf939ee331 +2010,Santa Fe,II.5.1,2.1583523499999995,TJ,CH4,0.5,kg/TJ,1.0791761749999997,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,a875d005-a12b-3beb-a896-7143a28c7686 +2010,Santa Fe,II.5.1,2.1583523499999995,TJ,N2O,2.0,kg/TJ,4.316704699999999,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,475d9db6-af8f-390a-9931-5ead13b01548 +2010,Santiago del Estero,II.5.1,7.010618999999999,TJ,CO2,73300.0,kg/TJ,513878.37269999995,Naphtha combustion consumption by agriculture machines,AR-G,SESCO,annual,kg,4fe00f4f-4be4-3c7d-a353-c4eb1059c469 +2010,Santiago del Estero,II.5.1,7.010618999999999,TJ,CH4,0.5,kg/TJ,3.5053094999999996,Naphtha combustion consumption by agriculture machines,AR-G,SESCO,annual,kg,a7d22398-0838-343c-8bc3-1e3875ce3b22 +2010,Santiago del Estero,II.5.1,7.010618999999999,TJ,N2O,2.0,kg/TJ,14.021237999999999,Naphtha combustion consumption by agriculture machines,AR-G,SESCO,annual,kg,24813693-01e9-3e88-84d5-4b04ca33ff09 +2010,Santa Fe,II.5.1,0.8432273849999999,TJ,CO2,73300.0,kg/TJ,61808.5673205,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,f0d57e79-abe4-3c1b-83a6-b255c6cdfb82 +2010,Santa Fe,II.5.1,0.8432273849999999,TJ,CH4,0.5,kg/TJ,0.42161369249999997,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,11d37047-c55f-37cb-b53c-b8449a1b9e1f +2010,Santa Fe,II.5.1,0.8432273849999999,TJ,N2O,2.0,kg/TJ,1.6864547699999999,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,afe24d49-cfdf-339d-8827-5fa94d00f0ea +2010,Rio Negro,II.2.1,21.56931084,TJ,CO2,74100.0,kg/TJ,1598285.933244,Gas Oil combustion consumption by railway transport,AR-R,SESCO,annual,kg,b2cd757c-778a-37dc-8604-0856a739ee2e +2010,Rio Negro,II.2.1,21.56931084,TJ,CH4,3.9,kg/TJ,84.12031227599999,Gas Oil combustion consumption by railway transport,AR-R,SESCO,annual,kg,55c10729-c76b-3c4b-ad94-6e5c9c323aba +2010,Rio Negro,II.2.1,21.56931084,TJ,N2O,3.9,kg/TJ,84.12031227599999,Gas Oil combustion consumption by railway transport,AR-R,SESCO,annual,kg,55c10729-c76b-3c4b-ad94-6e5c9c323aba +2010,Capital Federal,II.1.1,10.816863899999998,TJ,CO2,69300.0,kg/TJ,749608.6682699998,Motor Gasoline combustion consumption by freight transport,AR-C,SESCO,annual,kg,89c2ae54-12b9-3b76-b34e-24314e3e6ebf +2010,Capital Federal,II.1.1,10.816863899999998,TJ,CH4,33.0,kg/TJ,356.9565086999999,Motor Gasoline combustion consumption by freight transport,AR-C,SESCO,annual,kg,4dd7937c-3fd1-3c3e-af0a-554517f9007f +2010,Capital Federal,II.1.1,10.816863899999998,TJ,N2O,3.2,kg/TJ,34.61396447999999,Motor Gasoline combustion consumption by freight transport,AR-C,SESCO,annual,kg,6ee79540-e4e0-3397-aba7-317727bbc577 +2010,Buenos Aires,II.1.1,441.81514439999995,TJ,CO2,74100.0,kg/TJ,32738502.200039998,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,714da5b3-c7c1-36a6-9d3c-1de56e419c8d +2010,Buenos Aires,II.1.1,441.81514439999995,TJ,CH4,3.9,kg/TJ,1723.0790631599998,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,be256157-741b-3873-9562-990f1f5e86db +2010,Buenos Aires,II.1.1,441.81514439999995,TJ,N2O,3.9,kg/TJ,1723.0790631599998,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,be256157-741b-3873-9562-990f1f5e86db +2010,Capital Federal,II.1.1,2.75115204,TJ,CO2,74100.0,kg/TJ,203860.366164,Gas Oil combustion consumption by freight transport,AR-C,SESCO,annual,kg,5f34f61a-edc2-3859-880d-00a84c9fab07 +2010,Capital Federal,II.1.1,2.75115204,TJ,CH4,3.9,kg/TJ,10.729492956,Gas Oil combustion consumption by freight transport,AR-C,SESCO,annual,kg,0fa2c04c-53eb-37f7-ba3c-f757a55a39d9 +2010,Capital Federal,II.1.1,2.75115204,TJ,N2O,3.9,kg/TJ,10.729492956,Gas Oil combustion consumption by freight transport,AR-C,SESCO,annual,kg,0fa2c04c-53eb-37f7-ba3c-f757a55a39d9 +2010,Chubut,II.1.1,11.89893936,TJ,CO2,74100.0,kg/TJ,881711.406576,Gas Oil combustion consumption by freight transport,AR-U,SESCO,annual,kg,f0743c80-56b0-37ea-8afb-6f7dffe2dfb8 +2010,Chubut,II.1.1,11.89893936,TJ,CH4,3.9,kg/TJ,46.405863503999996,Gas Oil combustion consumption by freight transport,AR-U,SESCO,annual,kg,f75e4424-34c4-3413-ad1f-5636f51ade94 +2010,Chubut,II.1.1,11.89893936,TJ,N2O,3.9,kg/TJ,46.405863503999996,Gas Oil combustion consumption by freight transport,AR-U,SESCO,annual,kg,f75e4424-34c4-3413-ad1f-5636f51ade94 +2010,Córdoba,II.1.1,82.29324348,TJ,CO2,74100.0,kg/TJ,6097929.341868,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,5bafaa80-2f3c-3cf8-99a7-c773ae9d1509 +2010,Córdoba,II.1.1,82.29324348,TJ,CH4,3.9,kg/TJ,320.94364957199997,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,a5530255-87d3-3e05-ab43-53d22c07a4ce +2010,Córdoba,II.1.1,82.29324348,TJ,N2O,3.9,kg/TJ,320.94364957199997,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,a5530255-87d3-3e05-ab43-53d22c07a4ce +2010,San Luis,II.1.1,28.2366294,TJ,CO2,74100.0,kg/TJ,2092334.23854,Gas Oil combustion consumption by freight transport,AR-D,SESCO,annual,kg,951afc8b-b92c-3d7c-9e94-ec46518c2e98 +2010,San Luis,II.1.1,28.2366294,TJ,CH4,3.9,kg/TJ,110.12285466,Gas Oil combustion consumption by freight transport,AR-D,SESCO,annual,kg,251e9939-e302-3526-b3e6-b77006c88f63 +2010,San Luis,II.1.1,28.2366294,TJ,N2O,3.9,kg/TJ,110.12285466,Gas Oil combustion consumption by freight transport,AR-D,SESCO,annual,kg,251e9939-e302-3526-b3e6-b77006c88f63 +2010,Santa Fe,II.1.1,6.103088039999999,TJ,CO2,74100.0,kg/TJ,452238.823764,Gas Oil combustion consumption by freight transport,AR-S,SESCO,annual,kg,902850c4-f70c-3ff0-a9ce-44fdcdb272bf +2010,Santa Fe,II.1.1,6.103088039999999,TJ,CH4,3.9,kg/TJ,23.802043356,Gas Oil combustion consumption by freight transport,AR-S,SESCO,annual,kg,da8e052a-ca83-325d-86fa-7dd9f6a6a2fb +2010,Santa Fe,II.1.1,6.103088039999999,TJ,N2O,3.9,kg/TJ,23.802043356,Gas Oil combustion consumption by freight transport,AR-S,SESCO,annual,kg,da8e052a-ca83-325d-86fa-7dd9f6a6a2fb +2010,Rio Negro,II.1.1,2.341698,TJ,CO2,69300.0,kg/TJ,162279.6714,Motor Gasoline combustion consumption by public passenger transport,AR-R,SESCO,annual,kg,da8fe3e5-6e1f-37ec-a21b-10b48f9b7c5e +2010,Rio Negro,II.1.1,2.341698,TJ,CH4,33.0,kg/TJ,77.276034,Motor Gasoline combustion consumption by public passenger transport,AR-R,SESCO,annual,kg,67a954a1-5758-3d6c-92f8-c673c5dcf09c +2010,Rio Negro,II.1.1,2.341698,TJ,N2O,3.2,kg/TJ,7.4934336,Motor Gasoline combustion consumption by public passenger transport,AR-R,SESCO,annual,kg,b4e2ea4a-0e2a-3c63-8a28-ec9fe1f0d19c +2010,Santa Fe,II.1.1,52.44340319999999,TJ,CO2,69300.0,kg/TJ,3634327.8417599993,Motor Gasoline combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,c7b19dc3-47e8-3448-8c2c-bc90cf5dfcd0 +2010,Santa Fe,II.1.1,52.44340319999999,TJ,CH4,33.0,kg/TJ,1730.6323055999997,Motor Gasoline combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,502e158a-75e3-322e-90e7-c7798a79aa63 +2010,Santa Fe,II.1.1,52.44340319999999,TJ,N2O,3.2,kg/TJ,167.81889023999997,Motor Gasoline combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,2f84ee75-5132-3984-842f-f47bb4b02017 +2010,Buenos Aires,II.1.1,728.0233060800001,TJ,CO2,74100.0,kg/TJ,53946526.98052801,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,98705562-3325-35fd-b256-af116781bc72 +2010,Buenos Aires,II.1.1,728.0233060800001,TJ,CH4,3.9,kg/TJ,2839.2908937120005,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,a7ef5092-1034-34bd-8eb6-f5c40b769bae +2010,Buenos Aires,II.1.1,728.0233060800001,TJ,N2O,3.9,kg/TJ,2839.2908937120005,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,a7ef5092-1034-34bd-8eb6-f5c40b769bae +2010,Capital Federal,II.1.1,198.36226284,TJ,CO2,74100.0,kg/TJ,14698643.676444,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,87083595-3197-3fa6-aa2a-5d83615e822f +2010,Capital Federal,II.1.1,198.36226284,TJ,CH4,3.9,kg/TJ,773.612825076,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,7ea15497-e3d4-331b-8d7d-65ae30b9861e +2010,Capital Federal,II.1.1,198.36226284,TJ,N2O,3.9,kg/TJ,773.612825076,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,7ea15497-e3d4-331b-8d7d-65ae30b9861e +2010,Corrientes,II.1.1,0.35484287999999997,TJ,CO2,74100.0,kg/TJ,26293.857407999996,Gas Oil combustion consumption by public passenger transport,AR-W,SESCO,annual,kg,c9a8358c-18d6-31c4-809c-962fbe244156 +2010,Corrientes,II.1.1,0.35484287999999997,TJ,CH4,3.9,kg/TJ,1.383887232,Gas Oil combustion consumption by public passenger transport,AR-W,SESCO,annual,kg,94b784e2-fc82-3190-ad30-091cedc4274d +2010,Corrientes,II.1.1,0.35484287999999997,TJ,N2O,3.9,kg/TJ,1.383887232,Gas Oil combustion consumption by public passenger transport,AR-W,SESCO,annual,kg,94b784e2-fc82-3190-ad30-091cedc4274d +2010,Córdoba,II.1.1,62.506599120000004,TJ,CO2,74100.0,kg/TJ,4631738.994792,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,c486efd8-d16a-30b7-a727-5e950c4e5aed +2010,Córdoba,II.1.1,62.506599120000004,TJ,CH4,3.9,kg/TJ,243.775736568,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,d06611f5-6936-3aff-832d-2a60a247da0b +2010,Córdoba,II.1.1,62.506599120000004,TJ,N2O,3.9,kg/TJ,243.775736568,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,d06611f5-6936-3aff-832d-2a60a247da0b +2010,Entre Rios,II.1.1,65.70935951999999,TJ,CO2,74100.0,kg/TJ,4869063.540432,Gas Oil combustion consumption by public passenger transport,AR-E,SESCO,annual,kg,140474bb-45de-380d-b659-cb276d24a3f4 +2010,Entre Rios,II.1.1,65.70935951999999,TJ,CH4,3.9,kg/TJ,256.26650212799996,Gas Oil combustion consumption by public passenger transport,AR-E,SESCO,annual,kg,0c1de430-4c69-3280-afd4-4f019a032417 +2010,Entre Rios,II.1.1,65.70935951999999,TJ,N2O,3.9,kg/TJ,256.26650212799996,Gas Oil combustion consumption by public passenger transport,AR-E,SESCO,annual,kg,0c1de430-4c69-3280-afd4-4f019a032417 +2010,Formosa,II.1.1,6.57640452,TJ,CO2,74100.0,kg/TJ,487311.57493199996,Gas Oil combustion consumption by public passenger transport,AR-P,SESCO,annual,kg,88d65b23-4843-3ddd-8046-e1d29aeefdf2 +2010,Formosa,II.1.1,6.57640452,TJ,CH4,3.9,kg/TJ,25.647977628,Gas Oil combustion consumption by public passenger transport,AR-P,SESCO,annual,kg,a4ceec25-6669-363b-a2c9-0c2be5ea346a +2010,Formosa,II.1.1,6.57640452,TJ,N2O,3.9,kg/TJ,25.647977628,Gas Oil combustion consumption by public passenger transport,AR-P,SESCO,annual,kg,a4ceec25-6669-363b-a2c9-0c2be5ea346a +2010,Neuquén,II.1.1,18.797859359999997,TJ,CO2,74100.0,kg/TJ,1392921.3785759998,Gas Oil combustion consumption by public passenger transport,AR-Q,SESCO,annual,kg,c6da526e-637b-38c5-b179-18d7af835b52 +2010,Neuquén,II.1.1,18.797859359999997,TJ,CH4,3.9,kg/TJ,73.31165150399998,Gas Oil combustion consumption by public passenger transport,AR-Q,SESCO,annual,kg,9409ffe1-d880-36a1-9ec2-60e708d10e15 +2010,Neuquén,II.1.1,18.797859359999997,TJ,N2O,3.9,kg/TJ,73.31165150399998,Gas Oil combustion consumption by public passenger transport,AR-Q,SESCO,annual,kg,9409ffe1-d880-36a1-9ec2-60e708d10e15 +2010,Rio Negro,II.1.1,81.22651151999999,TJ,CO2,74100.0,kg/TJ,6018884.503631999,Gas Oil combustion consumption by public passenger transport,AR-R,SESCO,annual,kg,6022dfa0-ce5e-3e4c-a412-805851a9d377 +2010,Rio Negro,II.1.1,81.22651151999999,TJ,CH4,3.9,kg/TJ,316.78339492799995,Gas Oil combustion consumption by public passenger transport,AR-R,SESCO,annual,kg,9d56e398-d38a-37f3-8bf9-0e0f4d349278 +2010,Rio Negro,II.1.1,81.22651151999999,TJ,N2O,3.9,kg/TJ,316.78339492799995,Gas Oil combustion consumption by public passenger transport,AR-R,SESCO,annual,kg,9d56e398-d38a-37f3-8bf9-0e0f4d349278 +2010,San Juan,II.1.1,13.246395960000001,TJ,CO2,74100.0,kg/TJ,981557.940636,Gas Oil combustion consumption by public passenger transport,AR-J,SESCO,annual,kg,767cfb7c-90ad-35b2-9dff-129320f7d192 +2010,San Juan,II.1.1,13.246395960000001,TJ,CH4,3.9,kg/TJ,51.660944244,Gas Oil combustion consumption by public passenger transport,AR-J,SESCO,annual,kg,871ba153-363f-385a-93a9-2a0a0ef33857 +2010,San Juan,II.1.1,13.246395960000001,TJ,N2O,3.9,kg/TJ,51.660944244,Gas Oil combustion consumption by public passenger transport,AR-J,SESCO,annual,kg,871ba153-363f-385a-93a9-2a0a0ef33857 +2010,San Luis,II.1.1,48.646307639999996,TJ,CO2,74100.0,kg/TJ,3604691.3961239997,Gas Oil combustion consumption by public passenger transport,AR-D,SESCO,annual,kg,a13546e8-2089-3b45-810e-211e13376e5a +2010,San Luis,II.1.1,48.646307639999996,TJ,CH4,3.9,kg/TJ,189.720599796,Gas Oil combustion consumption by public passenger transport,AR-D,SESCO,annual,kg,d942a3dd-fa1f-3058-9162-95ad341d8c81 +2010,San Luis,II.1.1,48.646307639999996,TJ,N2O,3.9,kg/TJ,189.720599796,Gas Oil combustion consumption by public passenger transport,AR-D,SESCO,annual,kg,d942a3dd-fa1f-3058-9162-95ad341d8c81 +2010,Santa Fe,II.1.1,681.7063049999999,TJ,CO2,74100.0,kg/TJ,50514437.2005,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,76621829-b590-315e-b47c-ee9788e9a647 +2010,Santa Fe,II.1.1,681.7063049999999,TJ,CH4,3.9,kg/TJ,2658.6545894999995,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,abe03b6e-f601-3387-84ff-daafa8188c59 +2010,Santa Fe,II.1.1,681.7063049999999,TJ,N2O,3.9,kg/TJ,2658.6545894999995,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,abe03b6e-f601-3387-84ff-daafa8188c59 +2010,Buenos Aires,II.5.1,349.31651999999997,TJ,CO2,74100.0,kg/TJ,25884354.132,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,73da8713-cc6c-3d48-8b24-1e4e2001faa8 +2010,Buenos Aires,II.5.1,349.31651999999997,TJ,CH4,3.9,kg/TJ,1362.334428,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,79328e29-152c-3e6b-8306-b80eef164173 +2010,Buenos Aires,II.5.1,349.31651999999997,TJ,N2O,3.9,kg/TJ,1362.334428,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,79328e29-152c-3e6b-8306-b80eef164173 +2010,Capital Federal,II.5.1,95.60964,TJ,CO2,74100.0,kg/TJ,7084674.324,Gas Oil combustion consumption by agriculture machines,AR-C,SESCO,annual,kg,8b190951-d07f-36b3-ae05-a257f14c32e4 +2010,Capital Federal,II.5.1,95.60964,TJ,CH4,3.9,kg/TJ,372.877596,Gas Oil combustion consumption by agriculture machines,AR-C,SESCO,annual,kg,b63c8ad7-8c41-3b37-b108-1033d94f0c29 +2010,Capital Federal,II.5.1,95.60964,TJ,N2O,3.9,kg/TJ,372.877596,Gas Oil combustion consumption by agriculture machines,AR-C,SESCO,annual,kg,b63c8ad7-8c41-3b37-b108-1033d94f0c29 +2010,Corrientes,II.5.1,12.67812,TJ,CO2,74100.0,kg/TJ,939448.692,Gas Oil combustion consumption by agriculture machines,AR-W,SESCO,annual,kg,01dd232f-3f68-3ca9-970d-b8e9e5999474 +2010,Corrientes,II.5.1,12.67812,TJ,CH4,3.9,kg/TJ,49.444668,Gas Oil combustion consumption by agriculture machines,AR-W,SESCO,annual,kg,bdbd8008-3afc-32c2-83db-59cf22cbba3a +2010,Corrientes,II.5.1,12.67812,TJ,N2O,3.9,kg/TJ,49.444668,Gas Oil combustion consumption by agriculture machines,AR-W,SESCO,annual,kg,bdbd8008-3afc-32c2-83db-59cf22cbba3a +2010,Córdoba,II.5.1,72.31224,TJ,CO2,74100.0,kg/TJ,5358336.984,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,dad278e1-67dd-3f40-a3d2-e406bdec79c2 +2010,Córdoba,II.5.1,72.31224,TJ,CH4,3.9,kg/TJ,282.017736,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,0d479e44-4d41-3c69-b2d7-bcc10cc028e2 +2010,Córdoba,II.5.1,72.31224,TJ,N2O,3.9,kg/TJ,282.017736,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,0d479e44-4d41-3c69-b2d7-bcc10cc028e2 +2010,Entre Rios,II.5.1,32.65248,TJ,CO2,74100.0,kg/TJ,2419548.7679999997,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,981c45c9-bb98-39ca-a73d-513468410ec9 +2010,Entre Rios,II.5.1,32.65248,TJ,CH4,3.9,kg/TJ,127.34467199999999,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,bc5f3170-367f-342c-8825-eeea975f1572 +2010,Entre Rios,II.5.1,32.65248,TJ,N2O,3.9,kg/TJ,127.34467199999999,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,bc5f3170-367f-342c-8825-eeea975f1572 +2010,Formosa,II.5.1,12.85872,TJ,CO2,74100.0,kg/TJ,952831.152,Gas Oil combustion consumption by agriculture machines,AR-P,SESCO,annual,kg,ac15516b-8d35-3f9a-8ba0-94e22cc32a0d +2010,Formosa,II.5.1,12.85872,TJ,CH4,3.9,kg/TJ,50.149008,Gas Oil combustion consumption by agriculture machines,AR-P,SESCO,annual,kg,66501b0d-ef7a-3574-9a30-708fc6f3f0aa +2010,Formosa,II.5.1,12.85872,TJ,N2O,3.9,kg/TJ,50.149008,Gas Oil combustion consumption by agriculture machines,AR-P,SESCO,annual,kg,66501b0d-ef7a-3574-9a30-708fc6f3f0aa +2010,La Pampa,II.5.1,17.91552,TJ,CO2,74100.0,kg/TJ,1327540.0320000001,Gas Oil combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,11a6edb5-1352-3b5f-97e5-118280cc7431 +2010,La Pampa,II.5.1,17.91552,TJ,CH4,3.9,kg/TJ,69.87052800000001,Gas Oil combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,d15f3bf5-effa-3872-ad7a-d884bacdc565 +2010,La Pampa,II.5.1,17.91552,TJ,N2O,3.9,kg/TJ,69.87052800000001,Gas Oil combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,d15f3bf5-effa-3872-ad7a-d884bacdc565 +2010,Salta,II.5.1,11.48616,TJ,CO2,74100.0,kg/TJ,851124.456,Gas Oil combustion consumption by agriculture machines,AR-A,SESCO,annual,kg,383f98ad-e753-39b7-b712-4337996a6480 +2010,Salta,II.5.1,11.48616,TJ,CH4,3.9,kg/TJ,44.796023999999996,Gas Oil combustion consumption by agriculture machines,AR-A,SESCO,annual,kg,85103960-4aa8-382d-9bdd-413ac97841d9 +2010,Salta,II.5.1,11.48616,TJ,N2O,3.9,kg/TJ,44.796023999999996,Gas Oil combustion consumption by agriculture machines,AR-A,SESCO,annual,kg,85103960-4aa8-382d-9bdd-413ac97841d9 +2010,Santa Fe,II.5.1,465.44232,TJ,CO2,74100.0,kg/TJ,34489275.912,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,5b2cfc6d-c969-35a1-af34-8f6121df090e +2010,Santa Fe,II.5.1,465.44232,TJ,CH4,3.9,kg/TJ,1815.225048,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,b55beb54-e30a-31a0-a973-402661cdceed +2010,Santa Fe,II.5.1,465.44232,TJ,N2O,3.9,kg/TJ,1815.225048,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,b55beb54-e30a-31a0-a973-402661cdceed +2010,Buenos Aires,II.5.1,5.02068,TJ,CO2,74100.0,kg/TJ,372032.388,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,32903e43-3ecb-308c-90e5-ed601bad5526 +2010,Buenos Aires,II.5.1,5.02068,TJ,CH4,3.9,kg/TJ,19.580651999999997,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,7a064fe6-89cd-38db-b3e4-99884d32db11 +2010,Buenos Aires,II.5.1,5.02068,TJ,N2O,3.9,kg/TJ,19.580651999999997,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,7a064fe6-89cd-38db-b3e4-99884d32db11 +2010,Buenos Aires,II.5.1,0.31453,TJ,CO2,71500.0,kg/TJ,22488.894999999997,Jet Kerosene combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,c639eeec-a750-32b7-98fd-7835a75905a7 +2010,Buenos Aires,II.5.1,0.31453,TJ,CH4,0.5,kg/TJ,0.157265,Jet Kerosene combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,a9a2a44c-3501-33bc-9d51-3b6d602712ec +2010,Buenos Aires,II.5.1,0.31453,TJ,N2O,2.0,kg/TJ,0.62906,Jet Kerosene combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,2bd2b710-ce07-33fb-9593-758c52165496 +2010,Misiones,II.5.1,8.531984999999999,TJ,CO2,73300.0,kg/TJ,625394.5005,Naphtha combustion consumption by agriculture machines,AR-N,SESCO,annual,kg,1c9cff2b-8065-34c1-9c6d-270d03ce77ca +2010,Misiones,II.5.1,8.531984999999999,TJ,CH4,0.5,kg/TJ,4.265992499999999,Naphtha combustion consumption by agriculture machines,AR-N,SESCO,annual,kg,1fbbdd11-adce-3ff0-a70c-465da3fee4d8 +2010,Misiones,II.5.1,8.531984999999999,TJ,N2O,2.0,kg/TJ,17.063969999999998,Naphtha combustion consumption by agriculture machines,AR-N,SESCO,annual,kg,46153400-626f-3932-88ad-030c5298484b +2010,Capital Federal,II.5.1,0.54824,TJ,CO2,73300.0,kg/TJ,40185.992,Naphtha combustion consumption by agriculture machines,AR-C,SESCO,annual,kg,1ad9ff69-060b-31ce-ad32-9111bce64f3b +2010,Capital Federal,II.5.1,0.54824,TJ,CH4,0.5,kg/TJ,0.27412,Naphtha combustion consumption by agriculture machines,AR-C,SESCO,annual,kg,fc302db8-afda-3373-a9a6-2c64b9c68706 +2010,Capital Federal,II.5.1,0.54824,TJ,N2O,2.0,kg/TJ,1.09648,Naphtha combustion consumption by agriculture machines,AR-C,SESCO,annual,kg,ba274e32-a7fa-3647-8922-efb12bf91188 +2010,Salta,II.5.1,0.20559,TJ,CO2,73300.0,kg/TJ,15069.747,Naphtha combustion consumption by agriculture machines,AR-A,SESCO,annual,kg,e27938a3-3f2b-3e96-8076-66ab09ab4ebd +2010,Salta,II.5.1,0.20559,TJ,CH4,0.5,kg/TJ,0.102795,Naphtha combustion consumption by agriculture machines,AR-A,SESCO,annual,kg,168ea20a-6352-3169-994f-90a5ce59b7b1 +2010,Salta,II.5.1,0.20559,TJ,N2O,2.0,kg/TJ,0.41118,Naphtha combustion consumption by agriculture machines,AR-A,SESCO,annual,kg,f42e3987-4546-3b4c-a52c-17e7ce478cd1 +2010,Buenos Aires,II.2.1,875.44044,TJ,CO2,74100.0,kg/TJ,64870136.603999995,Gas Oil combustion consumption by railway transport,AR-B,SESCO,annual,kg,4ef98a12-fa50-3473-abb9-2dce62e25df0 +2010,Buenos Aires,II.2.1,875.44044,TJ,CH4,3.9,kg/TJ,3414.2177159999997,Gas Oil combustion consumption by railway transport,AR-B,SESCO,annual,kg,aec0e1d7-7b90-3520-8b84-3a98dc63053f +2010,Buenos Aires,II.2.1,875.44044,TJ,N2O,3.9,kg/TJ,3414.2177159999997,Gas Oil combustion consumption by railway transport,AR-B,SESCO,annual,kg,aec0e1d7-7b90-3520-8b84-3a98dc63053f +2010,Capital Federal,II.2.1,1494.8262,TJ,CO2,74100.0,kg/TJ,110766621.42,Gas Oil combustion consumption by railway transport,AR-C,SESCO,annual,kg,bb44e1a5-b071-3dd4-be1a-f0367b4b0bdf +2010,Capital Federal,II.2.1,1494.8262,TJ,CH4,3.9,kg/TJ,5829.82218,Gas Oil combustion consumption by railway transport,AR-C,SESCO,annual,kg,e00226de-805d-3713-b10e-074c8007e0e7 +2010,Capital Federal,II.2.1,1494.8262,TJ,N2O,3.9,kg/TJ,5829.82218,Gas Oil combustion consumption by railway transport,AR-C,SESCO,annual,kg,e00226de-805d-3713-b10e-074c8007e0e7 +2010,Córdoba,II.2.1,17.157,TJ,CO2,74100.0,kg/TJ,1271333.7,Gas Oil combustion consumption by railway transport,AR-X,SESCO,annual,kg,8a05f4a3-1498-3532-9f11-2192c16cb780 +2010,Córdoba,II.2.1,17.157,TJ,CH4,3.9,kg/TJ,66.9123,Gas Oil combustion consumption by railway transport,AR-X,SESCO,annual,kg,c4f37b6a-01f8-3556-9e9d-7d2e2560083b +2010,Córdoba,II.2.1,17.157,TJ,N2O,3.9,kg/TJ,66.9123,Gas Oil combustion consumption by railway transport,AR-X,SESCO,annual,kg,c4f37b6a-01f8-3556-9e9d-7d2e2560083b +2010,Santa Fe,II.2.1,256.27139999999997,TJ,CO2,74100.0,kg/TJ,18989710.74,Gas Oil combustion consumption by railway transport,AR-S,SESCO,annual,kg,3bbdb347-9fc5-3b86-99d5-ae4969188fda +2010,Santa Fe,II.2.1,256.27139999999997,TJ,CH4,3.9,kg/TJ,999.4584599999998,Gas Oil combustion consumption by railway transport,AR-S,SESCO,annual,kg,664d2e87-e4df-3485-934f-566c4d2b7886 +2010,Santa Fe,II.2.1,256.27139999999997,TJ,N2O,3.9,kg/TJ,999.4584599999998,Gas Oil combustion consumption by railway transport,AR-S,SESCO,annual,kg,664d2e87-e4df-3485-934f-566c4d2b7886 +2010,Santiago del Estero,II.2.1,7.36848,TJ,CO2,74100.0,kg/TJ,546004.368,Gas Oil combustion consumption by railway transport,AR-G,SESCO,annual,kg,aee0e807-fe14-3f2e-8466-7c9e65037c94 +2010,Santiago del Estero,II.2.1,7.36848,TJ,CH4,3.9,kg/TJ,28.737071999999998,Gas Oil combustion consumption by railway transport,AR-G,SESCO,annual,kg,13aa7f93-ad76-3868-ad03-d7d0d6dc9c0d +2010,Santiago del Estero,II.2.1,7.36848,TJ,N2O,3.9,kg/TJ,28.737071999999998,Gas Oil combustion consumption by railway transport,AR-G,SESCO,annual,kg,13aa7f93-ad76-3868-ad03-d7d0d6dc9c0d +2010,Tucuman,II.2.1,7.62132,TJ,CO2,74100.0,kg/TJ,564739.812,Gas Oil combustion consumption by railway transport,AR-T,SESCO,annual,kg,46b9a657-5683-30de-b2da-384f14a55001 +2010,Tucuman,II.2.1,7.62132,TJ,CH4,3.9,kg/TJ,29.723148,Gas Oil combustion consumption by railway transport,AR-T,SESCO,annual,kg,ffcc70f3-01e0-357f-a17c-441bc9de9267 +2010,Tucuman,II.2.1,7.62132,TJ,N2O,3.9,kg/TJ,29.723148,Gas Oil combustion consumption by railway transport,AR-T,SESCO,annual,kg,ffcc70f3-01e0-357f-a17c-441bc9de9267 +2010,Buenos Aires,II.2.1,186.74425,TJ,CO2,73300.0,kg/TJ,13688353.525,Naphtha combustion consumption by railway transport,AR-B,SESCO,annual,kg,a2668e6b-88dd-348a-bb71-afe5eea5255d +2010,Buenos Aires,II.2.1,186.74425,TJ,CH4,0.5,kg/TJ,93.372125,Naphtha combustion consumption by railway transport,AR-B,SESCO,annual,kg,83e4ba75-2b11-38ea-84e8-01a65d114d79 +2010,Buenos Aires,II.2.1,186.74425,TJ,N2O,2.0,kg/TJ,373.4885,Naphtha combustion consumption by railway transport,AR-B,SESCO,annual,kg,5d6297f2-8809-3a7d-bb6c-40be152c1c50 +2010,Buenos Aires,II.1.1,4.7844,TJ,CO2,69300.0,kg/TJ,331558.92,Motor Gasoline combustion consumption by freight transport,AR-B,SESCO,annual,kg,f522c101-adf4-39db-ba79-fbbc8e1b01ff +2010,Buenos Aires,II.1.1,4.7844,TJ,CH4,33.0,kg/TJ,157.8852,Motor Gasoline combustion consumption by freight transport,AR-B,SESCO,annual,kg,754108c6-5882-3a57-8b36-7ae3361392c2 +2010,Buenos Aires,II.1.1,4.7844,TJ,N2O,3.2,kg/TJ,15.31008,Motor Gasoline combustion consumption by freight transport,AR-B,SESCO,annual,kg,0e4c3d01-9519-3df8-bc82-69c19e5803e2 +2010,Capital Federal,II.1.1,2.215,TJ,CO2,69300.0,kg/TJ,153499.5,Motor Gasoline combustion consumption by freight transport,AR-C,SESCO,annual,kg,908ec396-06af-309b-943f-22822d61158a +2010,Capital Federal,II.1.1,2.215,TJ,CH4,33.0,kg/TJ,73.095,Motor Gasoline combustion consumption by freight transport,AR-C,SESCO,annual,kg,f9ae3f64-b722-3e03-99c9-bcc21c824381 +2010,Capital Federal,II.1.1,2.215,TJ,N2O,3.2,kg/TJ,7.088,Motor Gasoline combustion consumption by freight transport,AR-C,SESCO,annual,kg,b2454f96-300c-3f0c-a6fd-c5a21595705a +2010,Buenos Aires,II.1.1,953.2067999999999,TJ,CO2,74100.0,kg/TJ,70632623.88,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,8be79666-4252-3420-99c5-d1e0b4262190 +2010,Buenos Aires,II.1.1,953.2067999999999,TJ,CH4,3.9,kg/TJ,3717.5065199999995,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,2378a78f-5048-3f31-b7e0-1bb5d1afdd61 +2010,Buenos Aires,II.1.1,953.2067999999999,TJ,N2O,3.9,kg/TJ,3717.5065199999995,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,2378a78f-5048-3f31-b7e0-1bb5d1afdd61 +2010,Capital Federal,II.1.1,201.29675999999998,TJ,CO2,74100.0,kg/TJ,14916089.916,Gas Oil combustion consumption by freight transport,AR-C,SESCO,annual,kg,03dd56a3-d5b8-3558-be42-81dc1ed3c9db +2010,Capital Federal,II.1.1,201.29675999999998,TJ,CH4,3.9,kg/TJ,785.0573639999999,Gas Oil combustion consumption by freight transport,AR-C,SESCO,annual,kg,9d4e3c47-c814-3926-bd7d-611d28055ba6 +2010,Capital Federal,II.1.1,201.29675999999998,TJ,N2O,3.9,kg/TJ,785.0573639999999,Gas Oil combustion consumption by freight transport,AR-C,SESCO,annual,kg,9d4e3c47-c814-3926-bd7d-611d28055ba6 +2010,Córdoba,II.1.1,148.23648,TJ,CO2,74100.0,kg/TJ,10984323.168,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,2b3ca24f-b438-33aa-bc7f-c8f87f9882e3 +2010,Córdoba,II.1.1,148.23648,TJ,CH4,3.9,kg/TJ,578.122272,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,e238a20a-68f2-36e1-baad-3e5eaeb20c4d +2010,Córdoba,II.1.1,148.23648,TJ,N2O,3.9,kg/TJ,578.122272,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,e238a20a-68f2-36e1-baad-3e5eaeb20c4d +2010,Entre Rios,II.1.1,29.0766,TJ,CO2,74100.0,kg/TJ,2154576.06,Gas Oil combustion consumption by freight transport,AR-E,SESCO,annual,kg,827963a8-fb6e-35e0-91c5-5a914d0cb404 +2010,Entre Rios,II.1.1,29.0766,TJ,CH4,3.9,kg/TJ,113.39873999999999,Gas Oil combustion consumption by freight transport,AR-E,SESCO,annual,kg,3a09208c-3f0f-3f12-bec6-7fdccb0ef77a +2010,Entre Rios,II.1.1,29.0766,TJ,N2O,3.9,kg/TJ,113.39873999999999,Gas Oil combustion consumption by freight transport,AR-E,SESCO,annual,kg,3a09208c-3f0f-3f12-bec6-7fdccb0ef77a +2010,Jujuy,II.1.1,6.284879999999999,TJ,CO2,74100.0,kg/TJ,465709.60799999995,Gas Oil combustion consumption by freight transport,AR-Y,SESCO,annual,kg,525fe868-1faf-3fb5-97ac-e49a70b69e7f +2010,Jujuy,II.1.1,6.284879999999999,TJ,CH4,3.9,kg/TJ,24.511031999999997,Gas Oil combustion consumption by freight transport,AR-Y,SESCO,annual,kg,ec7ca848-49c3-3575-a906-bbda9e6f7977 +2010,Jujuy,II.1.1,6.284879999999999,TJ,N2O,3.9,kg/TJ,24.511031999999997,Gas Oil combustion consumption by freight transport,AR-Y,SESCO,annual,kg,ec7ca848-49c3-3575-a906-bbda9e6f7977 +2010,La Pampa,II.1.1,12.71424,TJ,CO2,74100.0,kg/TJ,942125.184,Gas Oil combustion consumption by freight transport,AR-L,SESCO,annual,kg,2af8742e-b53d-3ccc-9916-d404ddeec640 +2010,La Pampa,II.1.1,12.71424,TJ,CH4,3.9,kg/TJ,49.585536,Gas Oil combustion consumption by freight transport,AR-L,SESCO,annual,kg,99113fd5-ee2b-3646-877f-741a9bf63640 +2010,La Pampa,II.1.1,12.71424,TJ,N2O,3.9,kg/TJ,49.585536,Gas Oil combustion consumption by freight transport,AR-L,SESCO,annual,kg,99113fd5-ee2b-3646-877f-741a9bf63640 +2010,Mendoza,II.1.1,9.10224,TJ,CO2,74100.0,kg/TJ,674475.984,Gas Oil combustion consumption by freight transport,AR-M,SESCO,annual,kg,bd88b844-c355-3a23-88ca-f3b0da3fd15e +2010,Mendoza,II.1.1,9.10224,TJ,CH4,3.9,kg/TJ,35.498736,Gas Oil combustion consumption by freight transport,AR-M,SESCO,annual,kg,6c84c0b9-fec1-34d2-8bbc-3d86d6ffc516 +2010,Mendoza,II.1.1,9.10224,TJ,N2O,3.9,kg/TJ,35.498736,Gas Oil combustion consumption by freight transport,AR-M,SESCO,annual,kg,6c84c0b9-fec1-34d2-8bbc-3d86d6ffc516 +2010,Salta,II.1.1,40.635,TJ,CO2,74100.0,kg/TJ,3011053.5,Gas Oil combustion consumption by freight transport,AR-A,SESCO,annual,kg,9541f626-e86e-38e8-adc1-0ad06c404fed +2010,Salta,II.1.1,40.635,TJ,CH4,3.9,kg/TJ,158.4765,Gas Oil combustion consumption by freight transport,AR-A,SESCO,annual,kg,70f0aebe-208c-3d78-87a3-80476f8a8d90 +2010,Salta,II.1.1,40.635,TJ,N2O,3.9,kg/TJ,158.4765,Gas Oil combustion consumption by freight transport,AR-A,SESCO,annual,kg,70f0aebe-208c-3d78-87a3-80476f8a8d90 +2010,San Luis,II.1.1,14.19516,TJ,CO2,74100.0,kg/TJ,1051861.356,Gas Oil combustion consumption by freight transport,AR-D,SESCO,annual,kg,c76e817b-4a23-3760-9b24-286292b9b42e +2010,San Luis,II.1.1,14.19516,TJ,CH4,3.9,kg/TJ,55.361124,Gas Oil combustion consumption by freight transport,AR-D,SESCO,annual,kg,e2c3240a-0ff9-324b-bae3-4fbd92d9da44 +2010,San Luis,II.1.1,14.19516,TJ,N2O,3.9,kg/TJ,55.361124,Gas Oil combustion consumption by freight transport,AR-D,SESCO,annual,kg,e2c3240a-0ff9-324b-bae3-4fbd92d9da44 +2010,Santa Fe,II.1.1,85.6044,TJ,CO2,74100.0,kg/TJ,6343286.04,Gas Oil combustion consumption by freight transport,AR-S,SESCO,annual,kg,de4dd313-0def-3220-b260-f6493c62ef74 +2010,Santa Fe,II.1.1,85.6044,TJ,CH4,3.9,kg/TJ,333.85715999999996,Gas Oil combustion consumption by freight transport,AR-S,SESCO,annual,kg,65de742c-f87e-3e37-9051-b3d2ef255cbd +2010,Santa Fe,II.1.1,85.6044,TJ,N2O,3.9,kg/TJ,333.85715999999996,Gas Oil combustion consumption by freight transport,AR-S,SESCO,annual,kg,65de742c-f87e-3e37-9051-b3d2ef255cbd +2010,Santiago del Estero,II.1.1,4.22604,TJ,CO2,74100.0,kg/TJ,313149.564,Gas Oil combustion consumption by freight transport,AR-G,SESCO,annual,kg,67d7a300-9399-3667-94db-b484da112b40 +2010,Santiago del Estero,II.1.1,4.22604,TJ,CH4,3.9,kg/TJ,16.481556,Gas Oil combustion consumption by freight transport,AR-G,SESCO,annual,kg,f79a8b39-7b68-34cd-a663-063d8eacce5c +2010,Santiago del Estero,II.1.1,4.22604,TJ,N2O,3.9,kg/TJ,16.481556,Gas Oil combustion consumption by freight transport,AR-G,SESCO,annual,kg,f79a8b39-7b68-34cd-a663-063d8eacce5c +2010,Buenos Aires,II.1.1,2128.707587,TJ,CO2,71500.0,kg/TJ,152202592.4705,Jet Kerosene combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,ad3a2614-0df2-32bc-8732-46d9de8f15f7 +2010,Buenos Aires,II.1.1,2128.707587,TJ,CH4,0.5,kg/TJ,1064.3537935,Jet Kerosene combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,d09f4f09-ac04-32d7-a017-cb033ff64221 +2010,Buenos Aires,II.1.1,2128.707587,TJ,N2O,2.0,kg/TJ,4257.415174,Jet Kerosene combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,4a248f36-7c3b-3b6b-baf0-41c421be1533 +2010,Capital Federal,II.1.1,368.25172399999997,TJ,CO2,71500.0,kg/TJ,26329998.266,Jet Kerosene combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,c357f40a-0b72-39a3-a445-26ffdf619086 +2010,Capital Federal,II.1.1,368.25172399999997,TJ,CH4,0.5,kg/TJ,184.12586199999998,Jet Kerosene combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,4f65834d-645f-3742-84f7-6757c9f938a1 +2010,Capital Federal,II.1.1,368.25172399999997,TJ,N2O,2.0,kg/TJ,736.5034479999999,Jet Kerosene combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,5d98fef8-b244-3fb8-a11d-1cadfefe64a3 +2010,Buenos Aires,II.1.1,4252.47984,TJ,CO2,74100.0,kg/TJ,315108756.144,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,b748ee08-660d-379a-ac45-a5aa6f8b1665 +2010,Buenos Aires,II.1.1,4252.47984,TJ,CH4,3.9,kg/TJ,16584.671376,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,1e2ebfbf-5d5e-331c-942a-478abf70d76a +2010,Buenos Aires,II.1.1,4252.47984,TJ,N2O,3.9,kg/TJ,16584.671376,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,1e2ebfbf-5d5e-331c-942a-478abf70d76a +2010,Capital Federal,II.1.1,381.68003999999996,TJ,CO2,74100.0,kg/TJ,28282490.963999998,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,42172915-0045-3c68-b22e-bbaa6e736837 +2010,Capital Federal,II.1.1,381.68003999999996,TJ,CH4,3.9,kg/TJ,1488.5521559999997,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,f495f9a9-1d96-395f-a6e6-6226147fe08b +2010,Capital Federal,II.1.1,381.68003999999996,TJ,N2O,3.9,kg/TJ,1488.5521559999997,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,f495f9a9-1d96-395f-a6e6-6226147fe08b +2010,Córdoba,II.1.1,12.71424,TJ,CO2,74100.0,kg/TJ,942125.184,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,1c62990e-3c1b-39b7-b564-6d39402d26ff +2010,Córdoba,II.1.1,12.71424,TJ,CH4,3.9,kg/TJ,49.585536,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,28f5d0b4-74bc-3b22-947a-45cf832eb3b0 +2010,Córdoba,II.1.1,12.71424,TJ,N2O,3.9,kg/TJ,49.585536,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,28f5d0b4-74bc-3b22-947a-45cf832eb3b0 +2010,Entre Rios,II.1.1,9.96912,TJ,CO2,74100.0,kg/TJ,738711.792,Gas Oil combustion consumption by public passenger transport,AR-E,SESCO,annual,kg,732767db-c57d-3c5e-b1c4-1da8918d1577 +2010,Entre Rios,II.1.1,9.96912,TJ,CH4,3.9,kg/TJ,38.879568,Gas Oil combustion consumption by public passenger transport,AR-E,SESCO,annual,kg,af18329c-9681-3293-9363-8a52c4a1dcfd +2010,Entre Rios,II.1.1,9.96912,TJ,N2O,3.9,kg/TJ,38.879568,Gas Oil combustion consumption by public passenger transport,AR-E,SESCO,annual,kg,af18329c-9681-3293-9363-8a52c4a1dcfd +2010,Misiones,II.1.1,15.350999999999999,TJ,CO2,74100.0,kg/TJ,1137509.0999999999,Gas Oil combustion consumption by public passenger transport,AR-N,SESCO,annual,kg,66b872b5-e3a1-3a56-8469-a6d2b618a40c +2010,Misiones,II.1.1,15.350999999999999,TJ,CH4,3.9,kg/TJ,59.8689,Gas Oil combustion consumption by public passenger transport,AR-N,SESCO,annual,kg,2a04c13d-46d8-30e6-bd5b-c53fdd92711b +2010,Misiones,II.1.1,15.350999999999999,TJ,N2O,3.9,kg/TJ,59.8689,Gas Oil combustion consumption by public passenger transport,AR-N,SESCO,annual,kg,2a04c13d-46d8-30e6-bd5b-c53fdd92711b +2010,Tucuman,II.1.1,11.59452,TJ,CO2,74100.0,kg/TJ,859153.9319999999,Gas Oil combustion consumption by public passenger transport,AR-T,SESCO,annual,kg,238e11b1-e874-3167-8990-c5b9c406caa4 +2010,Tucuman,II.1.1,11.59452,TJ,CH4,3.9,kg/TJ,45.218627999999995,Gas Oil combustion consumption by public passenger transport,AR-T,SESCO,annual,kg,6b9244f1-56eb-3812-bb78-9c7dae655fe9 +2010,Tucuman,II.1.1,11.59452,TJ,N2O,3.9,kg/TJ,45.218627999999995,Gas Oil combustion consumption by public passenger transport,AR-T,SESCO,annual,kg,6b9244f1-56eb-3812-bb78-9c7dae655fe9 +2010,Buenos Aires,II.5.1,126.43219999999998,TJ,CO2,69300.0,kg/TJ,8761751.459999999,Motor Gasoline combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,f7444b8b-e738-31f2-80f5-37b9df0354d9 +2010,Buenos Aires,II.5.1,126.43219999999998,TJ,CH4,33.0,kg/TJ,4172.262599999999,Motor Gasoline combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,d91fb2e8-f3da-3c0f-9d6b-d3947bb78077 +2010,Buenos Aires,II.5.1,126.43219999999998,TJ,N2O,3.2,kg/TJ,404.58304,Motor Gasoline combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,3d9b535b-bd75-308b-ba63-0b57e1945b0c +2010,La Pampa,II.5.1,1.1518,TJ,CO2,69300.0,kg/TJ,79819.73999999999,Motor Gasoline combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,a0c545bb-6a9d-3241-bd7c-19ba2a61dfc1 +2010,La Pampa,II.5.1,1.1518,TJ,CH4,33.0,kg/TJ,38.0094,Motor Gasoline combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,1d9771a7-bc96-3308-a489-6c0159f30e60 +2010,La Pampa,II.5.1,1.1518,TJ,N2O,3.2,kg/TJ,3.68576,Motor Gasoline combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,80d93d03-4d5b-3f88-a303-35b2eec299da +2010,Salta,II.5.1,1.5505,TJ,CO2,69300.0,kg/TJ,107449.65,Motor Gasoline combustion consumption by agriculture machines,AR-A,SESCO,annual,kg,8e50bde7-ff78-349b-94f1-021db20ea052 +2010,Salta,II.5.1,1.5505,TJ,CH4,33.0,kg/TJ,51.1665,Motor Gasoline combustion consumption by agriculture machines,AR-A,SESCO,annual,kg,06e7fe2a-80f3-304e-bc04-85ae4849779e +2010,Salta,II.5.1,1.5505,TJ,N2O,3.2,kg/TJ,4.961600000000001,Motor Gasoline combustion consumption by agriculture machines,AR-A,SESCO,annual,kg,d2c6f7ec-dba4-30b2-ac89-d048809312cf +2010,Buenos Aires,II.5.1,3637.1034,TJ,CO2,74100.0,kg/TJ,269509361.94,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,3a396b8a-50fa-38d4-943a-135d39ed71bc +2010,Buenos Aires,II.5.1,3637.1034,TJ,CH4,3.9,kg/TJ,14184.70326,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,1907341e-1ae1-3c1c-9352-f6a02c72bcfe +2010,Buenos Aires,II.5.1,3637.1034,TJ,N2O,3.9,kg/TJ,14184.70326,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,1907341e-1ae1-3c1c-9352-f6a02c72bcfe +2010,Capital Federal,II.5.1,26.07864,TJ,CO2,74100.0,kg/TJ,1932427.224,Gas Oil combustion consumption by agriculture machines,AR-C,SESCO,annual,kg,d2ac4149-efed-344b-8181-208e311c26d3 +2010,Capital Federal,II.5.1,26.07864,TJ,CH4,3.9,kg/TJ,101.706696,Gas Oil combustion consumption by agriculture machines,AR-C,SESCO,annual,kg,a44317ca-5ad7-3db6-9ff0-55c5215fce90 +2010,Capital Federal,II.5.1,26.07864,TJ,N2O,3.9,kg/TJ,101.706696,Gas Oil combustion consumption by agriculture machines,AR-C,SESCO,annual,kg,a44317ca-5ad7-3db6-9ff0-55c5215fce90 +2010,Chaco,II.5.1,90.5174424,TJ,CO2,74100.0,kg/TJ,6707342.48184,Gas Oil combustion consumption by agriculture machines,AR-H,SESCO,annual,kg,885c1aa9-c1c8-3144-ab6d-e5d40b3ee0ac +2010,Chaco,II.5.1,90.5174424,TJ,CH4,3.9,kg/TJ,353.01802535999997,Gas Oil combustion consumption by agriculture machines,AR-H,SESCO,annual,kg,1cdf3724-4cb3-320f-922a-81fe81ea820e +2010,Chaco,II.5.1,90.5174424,TJ,N2O,3.9,kg/TJ,353.01802535999997,Gas Oil combustion consumption by agriculture machines,AR-H,SESCO,annual,kg,1cdf3724-4cb3-320f-922a-81fe81ea820e +2010,Corrientes,II.5.1,52.471523999999995,TJ,CO2,74100.0,kg/TJ,3888139.9283999996,Gas Oil combustion consumption by agriculture machines,AR-W,SESCO,annual,kg,22783fb8-3105-3f29-9ec2-b599e54578e5 +2010,Corrientes,II.5.1,52.471523999999995,TJ,CH4,3.9,kg/TJ,204.63894359999998,Gas Oil combustion consumption by agriculture machines,AR-W,SESCO,annual,kg,e3263453-8259-3d35-bdfd-b4c420f919b0 +2010,Corrientes,II.5.1,52.471523999999995,TJ,N2O,3.9,kg/TJ,204.63894359999998,Gas Oil combustion consumption by agriculture machines,AR-W,SESCO,annual,kg,e3263453-8259-3d35-bdfd-b4c420f919b0 +2010,Córdoba,II.5.1,1267.34244,TJ,CO2,74100.0,kg/TJ,93910074.80399999,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,bd5514dd-0291-3332-930b-6f0e046b6514 +2010,Córdoba,II.5.1,1267.34244,TJ,CH4,3.9,kg/TJ,4942.635515999999,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,d2e1239c-1f84-32c5-8b56-1f2cd9e1f951 +2010,Córdoba,II.5.1,1267.34244,TJ,N2O,3.9,kg/TJ,4942.635515999999,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,d2e1239c-1f84-32c5-8b56-1f2cd9e1f951 +2010,Entre Rios,II.5.1,1100.1790799999999,TJ,CO2,74100.0,kg/TJ,81523269.828,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,861383f7-eb63-3bd0-8e91-1a742d5ff347 +2010,Entre Rios,II.5.1,1100.1790799999999,TJ,CH4,3.9,kg/TJ,4290.698412,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,e676b899-f276-34fc-9a14-c2b37d026321 +2010,Entre Rios,II.5.1,1100.1790799999999,TJ,N2O,3.9,kg/TJ,4290.698412,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,e676b899-f276-34fc-9a14-c2b37d026321 +2010,Formosa,II.5.1,10.04136,TJ,CO2,74100.0,kg/TJ,744064.776,Gas Oil combustion consumption by agriculture machines,AR-P,SESCO,annual,kg,7fcb18b0-f730-3440-bb55-e7b608b14566 +2010,Formosa,II.5.1,10.04136,TJ,CH4,3.9,kg/TJ,39.161303999999994,Gas Oil combustion consumption by agriculture machines,AR-P,SESCO,annual,kg,555cd33a-2efd-38e6-bd0d-e07e6df05a9b +2010,Formosa,II.5.1,10.04136,TJ,N2O,3.9,kg/TJ,39.161303999999994,Gas Oil combustion consumption by agriculture machines,AR-P,SESCO,annual,kg,555cd33a-2efd-38e6-bd0d-e07e6df05a9b +2010,Jujuy,II.5.1,573.33276,TJ,CO2,74100.0,kg/TJ,42483957.516,Gas Oil combustion consumption by agriculture machines,AR-Y,SESCO,annual,kg,7a5a51f1-5122-3a2a-8666-333e9944eaa9 +2010,Jujuy,II.5.1,573.33276,TJ,CH4,3.9,kg/TJ,2235.997764,Gas Oil combustion consumption by agriculture machines,AR-Y,SESCO,annual,kg,c6cbf47a-8771-399b-b4e1-52824c382f1a +2010,Jujuy,II.5.1,573.33276,TJ,N2O,3.9,kg/TJ,2235.997764,Gas Oil combustion consumption by agriculture machines,AR-Y,SESCO,annual,kg,c6cbf47a-8771-399b-b4e1-52824c382f1a +2010,La Pampa,II.5.1,178.97459999999998,TJ,CO2,74100.0,kg/TJ,13262017.86,Gas Oil combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,93c44282-7dbf-3114-823f-89446f4c86fc +2010,La Pampa,II.5.1,178.97459999999998,TJ,CH4,3.9,kg/TJ,698.0009399999999,Gas Oil combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,bb2a9cbf-31d0-3173-af0d-74dc28fb1ef7 +2010,La Pampa,II.5.1,178.97459999999998,TJ,N2O,3.9,kg/TJ,698.0009399999999,Gas Oil combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,bb2a9cbf-31d0-3173-af0d-74dc28fb1ef7 +2010,Mendoza,II.5.1,19.514913599999996,TJ,CO2,74100.0,kg/TJ,1446055.0977599998,Gas Oil combustion consumption by agriculture machines,AR-M,SESCO,annual,kg,89b7529e-989e-3eee-a987-55a61b60ae4b +2010,Mendoza,II.5.1,19.514913599999996,TJ,CH4,3.9,kg/TJ,76.10816303999998,Gas Oil combustion consumption by agriculture machines,AR-M,SESCO,annual,kg,e34cb897-405a-3621-93f8-174a92871bd0 +2010,Mendoza,II.5.1,19.514913599999996,TJ,N2O,3.9,kg/TJ,76.10816303999998,Gas Oil combustion consumption by agriculture machines,AR-M,SESCO,annual,kg,e34cb897-405a-3621-93f8-174a92871bd0 +2010,Misiones,II.5.1,13.40052,TJ,CO2,74100.0,kg/TJ,992978.532,Gas Oil combustion consumption by agriculture machines,AR-N,SESCO,annual,kg,7fee873a-b5ac-34d1-951a-8402b07cc640 +2010,Misiones,II.5.1,13.40052,TJ,CH4,3.9,kg/TJ,52.262028,Gas Oil combustion consumption by agriculture machines,AR-N,SESCO,annual,kg,07d4be11-b728-3af5-a949-6ae76f1e2351 +2010,Misiones,II.5.1,13.40052,TJ,N2O,3.9,kg/TJ,52.262028,Gas Oil combustion consumption by agriculture machines,AR-N,SESCO,annual,kg,07d4be11-b728-3af5-a949-6ae76f1e2351 +2010,Neuquén,II.5.1,5.345759999999999,TJ,CO2,74100.0,kg/TJ,396120.81599999993,Gas Oil combustion consumption by agriculture machines,AR-Q,SESCO,annual,kg,cced7c52-3265-303e-a92d-fa8dc8b6b4bc +2010,Neuquén,II.5.1,5.345759999999999,TJ,CH4,3.9,kg/TJ,20.848463999999996,Gas Oil combustion consumption by agriculture machines,AR-Q,SESCO,annual,kg,023ce143-1083-3272-b44d-c056ee262b84 +2010,Neuquén,II.5.1,5.345759999999999,TJ,N2O,3.9,kg/TJ,20.848463999999996,Gas Oil combustion consumption by agriculture machines,AR-Q,SESCO,annual,kg,023ce143-1083-3272-b44d-c056ee262b84 +2010,Rio Negro,II.5.1,21.094079999999998,TJ,CO2,74100.0,kg/TJ,1563071.328,Gas Oil combustion consumption by agriculture machines,AR-R,SESCO,annual,kg,e6e2b45a-2a8e-3b54-9f36-a1b2f3ca8052 +2010,Rio Negro,II.5.1,21.094079999999998,TJ,CH4,3.9,kg/TJ,82.26691199999999,Gas Oil combustion consumption by agriculture machines,AR-R,SESCO,annual,kg,37a78e89-7e18-3f58-8002-18659fcd831f +2010,Rio Negro,II.5.1,21.094079999999998,TJ,N2O,3.9,kg/TJ,82.26691199999999,Gas Oil combustion consumption by agriculture machines,AR-R,SESCO,annual,kg,37a78e89-7e18-3f58-8002-18659fcd831f +2010,Salta,II.5.1,303.80532,TJ,CO2,74100.0,kg/TJ,22511974.212,Gas Oil combustion consumption by agriculture machines,AR-A,SESCO,annual,kg,4f6f459c-6fba-36e0-b92d-eaf00a8c9ad4 +2010,Salta,II.5.1,303.80532,TJ,CH4,3.9,kg/TJ,1184.8407479999998,Gas Oil combustion consumption by agriculture machines,AR-A,SESCO,annual,kg,55ec696e-a0b8-3907-8c56-f6fe1c63efe4 +2010,Salta,II.5.1,303.80532,TJ,N2O,3.9,kg/TJ,1184.8407479999998,Gas Oil combustion consumption by agriculture machines,AR-A,SESCO,annual,kg,55ec696e-a0b8-3907-8c56-f6fe1c63efe4 +2010,San Juan,II.5.1,9.860759999999999,TJ,CO2,74100.0,kg/TJ,730682.3159999999,Gas Oil combustion consumption by agriculture machines,AR-J,SESCO,annual,kg,e9694837-862a-3ee2-bf6b-265d21d34834 +2010,San Juan,II.5.1,9.860759999999999,TJ,CH4,3.9,kg/TJ,38.45696399999999,Gas Oil combustion consumption by agriculture machines,AR-J,SESCO,annual,kg,1d14f153-ba52-3379-934b-003e152d6455 +2010,San Juan,II.5.1,9.860759999999999,TJ,N2O,3.9,kg/TJ,38.45696399999999,Gas Oil combustion consumption by agriculture machines,AR-J,SESCO,annual,kg,1d14f153-ba52-3379-934b-003e152d6455 +2010,San Luis,II.5.1,19.360319999999998,TJ,CO2,74100.0,kg/TJ,1434599.7119999998,Gas Oil combustion consumption by agriculture machines,AR-D,SESCO,annual,kg,4a0d4e98-a4f5-3455-92b2-78d65752a30e +2010,San Luis,II.5.1,19.360319999999998,TJ,CH4,3.9,kg/TJ,75.505248,Gas Oil combustion consumption by agriculture machines,AR-D,SESCO,annual,kg,8f7e85b7-b9b3-3d17-ae9f-cb3f9e0f6a9c +2010,San Luis,II.5.1,19.360319999999998,TJ,N2O,3.9,kg/TJ,75.505248,Gas Oil combustion consumption by agriculture machines,AR-D,SESCO,annual,kg,8f7e85b7-b9b3-3d17-ae9f-cb3f9e0f6a9c +2010,Santa Fe,II.5.1,1769.0492399999998,TJ,CO2,74100.0,kg/TJ,131086548.68399999,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,ffc0f159-5ca9-3805-a2cd-1592227a317f +2010,Santa Fe,II.5.1,1769.0492399999998,TJ,CH4,3.9,kg/TJ,6899.292035999999,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,99c50f5e-451a-3860-92a3-06637ee346e6 +2010,Santa Fe,II.5.1,1769.0492399999998,TJ,N2O,3.9,kg/TJ,6899.292035999999,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,99c50f5e-451a-3860-92a3-06637ee346e6 +2010,Santiago del Estero,II.5.1,106.554,TJ,CO2,74100.0,kg/TJ,7895651.4,Gas Oil combustion consumption by agriculture machines,AR-G,SESCO,annual,kg,99257d5f-5be2-3dd7-bc68-8d0db4462160 +2010,Santiago del Estero,II.5.1,106.554,TJ,CH4,3.9,kg/TJ,415.5606,Gas Oil combustion consumption by agriculture machines,AR-G,SESCO,annual,kg,621060b9-1e5e-30d3-939d-f2d268432108 +2010,Santiago del Estero,II.5.1,106.554,TJ,N2O,3.9,kg/TJ,415.5606,Gas Oil combustion consumption by agriculture machines,AR-G,SESCO,annual,kg,621060b9-1e5e-30d3-939d-f2d268432108 +2010,Tierra del Fuego,II.5.1,26.94552,TJ,CO2,74100.0,kg/TJ,1996663.032,Gas Oil combustion consumption by agriculture machines,AR-V,SESCO,annual,kg,2fe21338-fb7a-3211-aaf6-e151029ac6d2 +2010,Tierra del Fuego,II.5.1,26.94552,TJ,CH4,3.9,kg/TJ,105.08752799999999,Gas Oil combustion consumption by agriculture machines,AR-V,SESCO,annual,kg,ed82dd21-1e75-3e3d-a444-01160705c869 +2010,Tierra del Fuego,II.5.1,26.94552,TJ,N2O,3.9,kg/TJ,105.08752799999999,Gas Oil combustion consumption by agriculture machines,AR-V,SESCO,annual,kg,ed82dd21-1e75-3e3d-a444-01160705c869 +2010,Tucuman,II.5.1,171.46164,TJ,CO2,74100.0,kg/TJ,12705307.523999998,Gas Oil combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,9518847e-61d9-36ca-97a8-bf1f56dae699 +2010,Tucuman,II.5.1,171.46164,TJ,CH4,3.9,kg/TJ,668.700396,Gas Oil combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,a47be1ca-2b1f-3cb2-8cad-bb6c4d18bec1 +2010,Tucuman,II.5.1,171.46164,TJ,N2O,3.9,kg/TJ,668.700396,Gas Oil combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,a47be1ca-2b1f-3cb2-8cad-bb6c4d18bec1 +2010,Buenos Aires,II.5.1,0.5418,TJ,CO2,74100.0,kg/TJ,40147.38,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,0606044e-b345-31e6-9582-d5cbfc0a34c0 +2010,Buenos Aires,II.5.1,0.5418,TJ,CH4,3.9,kg/TJ,2.1130199999999997,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,8c22cee4-1a1f-312c-82c6-21032fdd7e86 +2010,Buenos Aires,II.5.1,0.5418,TJ,N2O,3.9,kg/TJ,2.1130199999999997,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,8c22cee4-1a1f-312c-82c6-21032fdd7e86 +2010,Santiago del Estero,II.5.1,1.37256,TJ,CO2,74100.0,kg/TJ,101706.696,Gas Oil combustion consumption by agriculture machines,AR-G,SESCO,annual,kg,cdeae499-7d51-3011-beee-012daa1032dc +2010,Santiago del Estero,II.5.1,1.37256,TJ,CH4,3.9,kg/TJ,5.352984,Gas Oil combustion consumption by agriculture machines,AR-G,SESCO,annual,kg,13c2d3bd-081b-37ce-88ac-60a1745599ca +2010,Santiago del Estero,II.5.1,1.37256,TJ,N2O,3.9,kg/TJ,5.352984,Gas Oil combustion consumption by agriculture machines,AR-G,SESCO,annual,kg,13c2d3bd-081b-37ce-88ac-60a1745599ca +2010,Buenos Aires,II.5.1,16.921713999999998,TJ,CO2,71500.0,kg/TJ,1209902.5509999997,Jet Kerosene combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,3e51841f-b89e-35db-a1c6-0555118ff560 +2010,Buenos Aires,II.5.1,16.921713999999998,TJ,CH4,0.5,kg/TJ,8.460856999999999,Jet Kerosene combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,d170dcda-7a61-3662-bdf3-608cca1dba36 +2010,Buenos Aires,II.5.1,16.921713999999998,TJ,N2O,2.0,kg/TJ,33.843427999999996,Jet Kerosene combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,e54079ea-c75c-364f-b425-578a64473519 +2010,Chubut,II.5.1,0.31453,TJ,CO2,71500.0,kg/TJ,22488.894999999997,Jet Kerosene combustion consumption by agriculture machines,AR-U,SESCO,annual,kg,a8463086-0191-3923-a161-ef690f18e95c +2010,Chubut,II.5.1,0.31453,TJ,CH4,0.5,kg/TJ,0.157265,Jet Kerosene combustion consumption by agriculture machines,AR-U,SESCO,annual,kg,da91a37c-277a-3b98-a7d7-9e8dfee68afa +2010,Chubut,II.5.1,0.31453,TJ,N2O,2.0,kg/TJ,0.62906,Jet Kerosene combustion consumption by agriculture machines,AR-U,SESCO,annual,kg,a3bab00b-4093-3f29-9cfe-6949391cbac4 +2010,Córdoba,II.5.1,1.0064959999999998,TJ,CO2,71500.0,kg/TJ,71964.46399999999,Jet Kerosene combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,b1fdfe89-3a5f-30d1-830c-a23346655eec +2010,Córdoba,II.5.1,1.0064959999999998,TJ,CH4,0.5,kg/TJ,0.5032479999999999,Jet Kerosene combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,4a505f02-abd5-35d4-a751-9d58fbb05ebd +2010,Córdoba,II.5.1,1.0064959999999998,TJ,N2O,2.0,kg/TJ,2.0129919999999997,Jet Kerosene combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,73ab0400-df58-3843-aa7f-44a8cecc4cc3 +2010,Entre Rios,II.5.1,0.25162399999999996,TJ,CO2,71500.0,kg/TJ,17991.115999999998,Jet Kerosene combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,c247d568-d08f-34e4-a0ba-d36c112f6006 +2010,Entre Rios,II.5.1,0.25162399999999996,TJ,CH4,0.5,kg/TJ,0.12581199999999998,Jet Kerosene combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,aac76367-1829-3b9f-993d-5226ea127951 +2010,Entre Rios,II.5.1,0.25162399999999996,TJ,N2O,2.0,kg/TJ,0.5032479999999999,Jet Kerosene combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,0fc0f7c0-95fb-373d-a5e2-370892b16287 +2010,La Pampa,II.5.1,1.541197,TJ,CO2,71500.0,kg/TJ,110195.5855,Jet Kerosene combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,d5b1dcdc-b088-31bf-b848-f24d821ab9e9 +2010,La Pampa,II.5.1,1.541197,TJ,CH4,0.5,kg/TJ,0.7705985,Jet Kerosene combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,4e364074-0057-3484-b53c-45b9f0413bd4 +2010,La Pampa,II.5.1,1.541197,TJ,N2O,2.0,kg/TJ,3.082394,Jet Kerosene combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,8283b490-76a6-3976-b376-52b2572f5667 +2010,Santa Fe,II.5.1,4.780856,TJ,CO2,71500.0,kg/TJ,341831.204,Jet Kerosene combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,f480d329-9beb-3b37-824c-5cc3acc9cd32 +2010,Santa Fe,II.5.1,4.780856,TJ,CH4,0.5,kg/TJ,2.390428,Jet Kerosene combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,90943418-2fc7-3489-a4a2-b05034f4e415 +2010,Santa Fe,II.5.1,4.780856,TJ,N2O,2.0,kg/TJ,9.561712,Jet Kerosene combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,a222b56c-bda8-3830-99d2-f9545fc194f8 +2010,Buenos Aires,II.5.1,1.9873699999999999,TJ,CO2,73300.0,kg/TJ,145674.221,Naphtha combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,64d2ef75-c1a5-3112-908f-13c83ef3ce70 +2010,Buenos Aires,II.5.1,1.9873699999999999,TJ,CH4,0.5,kg/TJ,0.9936849999999999,Naphtha combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,adf03671-b397-3451-9629-ae69fc118ad5 +2010,Buenos Aires,II.5.1,1.9873699999999999,TJ,N2O,2.0,kg/TJ,3.9747399999999997,Naphtha combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,01711b92-2a1b-3d0c-b4f7-86792b52ba72 +2010,Entre Rios,II.5.1,1.130745,TJ,CO2,73300.0,kg/TJ,82883.60849999999,Naphtha combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,6a9d1b8d-3317-302b-ae3a-590a59ca77eb +2010,Entre Rios,II.5.1,1.130745,TJ,CH4,0.5,kg/TJ,0.5653725,Naphtha combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,4717db0e-2f07-3ed3-a32d-0dfcd82c84c3 +2010,Entre Rios,II.5.1,1.130745,TJ,N2O,2.0,kg/TJ,2.26149,Naphtha combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,bf1c4d94-bc0a-3edf-8390-dab7f007d660 +2010,Santa Fe,II.5.1,21.278565,TJ,CO2,73300.0,kg/TJ,1559718.8145,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,decad2ef-b9d7-3c0d-a8f1-559afbc3038d +2010,Santa Fe,II.5.1,21.278565,TJ,CH4,0.5,kg/TJ,10.6392825,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,18094234-7055-3310-b324-3c63dd85e5d7 +2010,Santa Fe,II.5.1,21.278565,TJ,N2O,2.0,kg/TJ,42.55713,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,0b2ff9db-4d20-34f2-b27d-5da2b2018a73 +2010,Santiago del Estero,II.5.1,0.513975,TJ,CO2,73300.0,kg/TJ,37674.3675,Naphtha combustion consumption by agriculture machines,AR-G,SESCO,annual,kg,84cee769-a2ee-3f2c-a6f0-32b62fb58842 +2010,Santiago del Estero,II.5.1,0.513975,TJ,CH4,0.5,kg/TJ,0.2569875,Naphtha combustion consumption by agriculture machines,AR-G,SESCO,annual,kg,78a615c7-70e0-3f51-b11a-539378873164 +2010,Santiago del Estero,II.5.1,0.513975,TJ,N2O,2.0,kg/TJ,1.02795,Naphtha combustion consumption by agriculture machines,AR-G,SESCO,annual,kg,1d19bb97-f467-32d4-b289-a79638f07507 +2010,Buenos Aires,II.5.1,0.171325,TJ,CO2,73300.0,kg/TJ,12558.1225,Naphtha combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,8cc46ddd-7b28-3efc-ad05-e410621c7e69 +2010,Buenos Aires,II.5.1,0.171325,TJ,CH4,0.5,kg/TJ,0.0856625,Naphtha combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,0f8bbfb3-e710-3fa6-acd5-0458723fbe21 +2010,Buenos Aires,II.5.1,0.171325,TJ,N2O,2.0,kg/TJ,0.34265,Naphtha combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,52c1e932-ac9b-3c09-a179-c4f359c6896d +2010,Entre Rios,II.5.1,0.23985499999999998,TJ,CO2,73300.0,kg/TJ,17581.371499999997,Naphtha combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,a08b5be5-1b5a-3c6b-a46d-063f59db8d7d +2010,Entre Rios,II.5.1,0.23985499999999998,TJ,CH4,0.5,kg/TJ,0.11992749999999999,Naphtha combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,b0d45100-c3aa-3247-aaa6-3e93f279bcb7 +2010,Entre Rios,II.5.1,0.23985499999999998,TJ,N2O,2.0,kg/TJ,0.47970999999999997,Naphtha combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,3eb02623-3729-35b4-96cd-37ffbb50b50c +2010,Santa Fe,II.5.1,2.158695,TJ,CO2,73300.0,kg/TJ,158232.3435,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,c29267be-029f-3665-af7f-2a42e8a918b7 +2010,Santa Fe,II.5.1,2.158695,TJ,CH4,0.5,kg/TJ,1.0793475,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,9aa50557-5af5-3c01-a5b1-bb3110cc6521 +2010,Santa Fe,II.5.1,2.158695,TJ,N2O,2.0,kg/TJ,4.31739,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,63314c2d-a2a2-3dbc-a9d4-ad05b5e49db8 +2010,Buenos Aires,II.1.1,10.9421,TJ,CO2,69300.0,kg/TJ,758287.53,Motor Gasoline combustion consumption by freight transport,AR-B,SESCO,annual,kg,596a50b4-b363-3acc-ae8e-a612d99779ed +2010,Buenos Aires,II.1.1,10.9421,TJ,CH4,33.0,kg/TJ,361.0893,Motor Gasoline combustion consumption by freight transport,AR-B,SESCO,annual,kg,910db66d-5283-3733-87bf-bfe08ab618ba +2010,Buenos Aires,II.1.1,10.9421,TJ,N2O,3.2,kg/TJ,35.014720000000004,Motor Gasoline combustion consumption by freight transport,AR-B,SESCO,annual,kg,8ce0b643-d7ad-379f-9f9d-d18ceb948323 +2010,Buenos Aires,II.1.1,9295.26528,TJ,CO2,74100.0,kg/TJ,688779157.248,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,e638da2c-0ad2-30e6-b865-daac95c6165a +2010,Buenos Aires,II.1.1,9295.26528,TJ,CH4,3.9,kg/TJ,36251.534591999996,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,e347bcc3-ea6b-3496-a0e7-829c39d49638 +2010,Buenos Aires,II.1.1,9295.26528,TJ,N2O,3.9,kg/TJ,36251.534591999996,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,e347bcc3-ea6b-3496-a0e7-829c39d49638 +2010,Capital Federal,II.1.1,770.0061599999999,TJ,CO2,74100.0,kg/TJ,57057456.45599999,Gas Oil combustion consumption by freight transport,AR-C,SESCO,annual,kg,96c9091b-d958-3df2-96f9-4db0069aa5d0 +2010,Capital Federal,II.1.1,770.0061599999999,TJ,CH4,3.9,kg/TJ,3003.0240239999994,Gas Oil combustion consumption by freight transport,AR-C,SESCO,annual,kg,d027ed1e-c3ce-3c21-9030-b829a6ed5c4f +2010,Capital Federal,II.1.1,770.0061599999999,TJ,N2O,3.9,kg/TJ,3003.0240239999994,Gas Oil combustion consumption by freight transport,AR-C,SESCO,annual,kg,d027ed1e-c3ce-3c21-9030-b829a6ed5c4f +2010,Catamarca,II.1.1,33.30264,TJ,CO2,74100.0,kg/TJ,2467725.624,Gas Oil combustion consumption by freight transport,AR-K,SESCO,annual,kg,f2bf0ecb-adb6-311c-8e94-20e1531ec732 +2010,Catamarca,II.1.1,33.30264,TJ,CH4,3.9,kg/TJ,129.880296,Gas Oil combustion consumption by freight transport,AR-K,SESCO,annual,kg,362cd3b9-dd7b-3535-87fc-b868522d7371 +2010,Catamarca,II.1.1,33.30264,TJ,N2O,3.9,kg/TJ,129.880296,Gas Oil combustion consumption by freight transport,AR-K,SESCO,annual,kg,362cd3b9-dd7b-3535-87fc-b868522d7371 +2010,Chaco,II.1.1,265.01243999999997,TJ,CO2,74100.0,kg/TJ,19637421.803999998,Gas Oil combustion consumption by freight transport,AR-H,SESCO,annual,kg,8dcf0e13-7a3f-3a1f-886c-130e35a6c975 +2010,Chaco,II.1.1,265.01243999999997,TJ,CH4,3.9,kg/TJ,1033.5485159999998,Gas Oil combustion consumption by freight transport,AR-H,SESCO,annual,kg,400b2d62-e482-3271-b033-51dec5ebf4e8 +2010,Chaco,II.1.1,265.01243999999997,TJ,N2O,3.9,kg/TJ,1033.5485159999998,Gas Oil combustion consumption by freight transport,AR-H,SESCO,annual,kg,400b2d62-e482-3271-b033-51dec5ebf4e8 +2010,Chubut,II.1.1,371.8554,TJ,CO2,74100.0,kg/TJ,27554485.139999997,Gas Oil combustion consumption by freight transport,AR-U,SESCO,annual,kg,4e8e6352-133b-36b3-8183-848f4a8a1e58 +2010,Chubut,II.1.1,371.8554,TJ,CH4,3.9,kg/TJ,1450.23606,Gas Oil combustion consumption by freight transport,AR-U,SESCO,annual,kg,7889a208-0379-392b-8d94-b0da352ba204 +2010,Chubut,II.1.1,371.8554,TJ,N2O,3.9,kg/TJ,1450.23606,Gas Oil combustion consumption by freight transport,AR-U,SESCO,annual,kg,7889a208-0379-392b-8d94-b0da352ba204 +2010,Corrientes,II.1.1,392.40767999999997,TJ,CO2,74100.0,kg/TJ,29077409.088,Gas Oil combustion consumption by freight transport,AR-W,SESCO,annual,kg,6fd4d2f1-84a2-358e-a7d1-51a1d641fa5e +2010,Corrientes,II.1.1,392.40767999999997,TJ,CH4,3.9,kg/TJ,1530.3899519999998,Gas Oil combustion consumption by freight transport,AR-W,SESCO,annual,kg,ef4a3df0-bb0c-35ec-ae90-ae17196b1165 +2010,Corrientes,II.1.1,392.40767999999997,TJ,N2O,3.9,kg/TJ,1530.3899519999998,Gas Oil combustion consumption by freight transport,AR-W,SESCO,annual,kg,ef4a3df0-bb0c-35ec-ae90-ae17196b1165 +2010,Córdoba,II.1.1,2138.8458,TJ,CO2,74100.0,kg/TJ,158488473.78,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,abe03600-779a-371f-a8d3-83ebcdbfbac7 +2010,Córdoba,II.1.1,2138.8458,TJ,CH4,3.9,kg/TJ,8341.49862,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,b5506e9c-e379-3ed6-a016-0ffe2be6f10f +2010,Córdoba,II.1.1,2138.8458,TJ,N2O,3.9,kg/TJ,8341.49862,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,b5506e9c-e379-3ed6-a016-0ffe2be6f10f +2010,Entre Rios,II.1.1,307.30896,TJ,CO2,74100.0,kg/TJ,22771593.936,Gas Oil combustion consumption by freight transport,AR-E,SESCO,annual,kg,6fe92f62-98e7-3a58-8976-b377e8fa0c85 +2010,Entre Rios,II.1.1,307.30896,TJ,CH4,3.9,kg/TJ,1198.504944,Gas Oil combustion consumption by freight transport,AR-E,SESCO,annual,kg,5075ae2b-a979-3555-9b16-3d558ee03402 +2010,Entre Rios,II.1.1,307.30896,TJ,N2O,3.9,kg/TJ,1198.504944,Gas Oil combustion consumption by freight transport,AR-E,SESCO,annual,kg,5075ae2b-a979-3555-9b16-3d558ee03402 +2010,Formosa,II.1.1,38.90124,TJ,CO2,74100.0,kg/TJ,2882581.884,Gas Oil combustion consumption by freight transport,AR-P,SESCO,annual,kg,d616d053-4f25-332c-955c-83e24774dc4f +2010,Formosa,II.1.1,38.90124,TJ,CH4,3.9,kg/TJ,151.714836,Gas Oil combustion consumption by freight transport,AR-P,SESCO,annual,kg,1a4127e3-cc4a-3363-bbfd-72c0d6f76765 +2010,Formosa,II.1.1,38.90124,TJ,N2O,3.9,kg/TJ,151.714836,Gas Oil combustion consumption by freight transport,AR-P,SESCO,annual,kg,1a4127e3-cc4a-3363-bbfd-72c0d6f76765 +2010,Jujuy,II.1.1,101.56944,TJ,CO2,74100.0,kg/TJ,7526295.504,Gas Oil combustion consumption by freight transport,AR-Y,SESCO,annual,kg,db73513f-3c06-3f14-abfa-ef9d2fda7738 +2010,Jujuy,II.1.1,101.56944,TJ,CH4,3.9,kg/TJ,396.120816,Gas Oil combustion consumption by freight transport,AR-Y,SESCO,annual,kg,fa9d81db-e737-314d-81dc-3601fcb47df9 +2010,Jujuy,II.1.1,101.56944,TJ,N2O,3.9,kg/TJ,396.120816,Gas Oil combustion consumption by freight transport,AR-Y,SESCO,annual,kg,fa9d81db-e737-314d-81dc-3601fcb47df9 +2010,La Pampa,II.1.1,281.77212,TJ,CO2,74100.0,kg/TJ,20879314.091999996,Gas Oil combustion consumption by freight transport,AR-L,SESCO,annual,kg,99040028-52d5-3b9f-897e-83910512435d +2010,La Pampa,II.1.1,281.77212,TJ,CH4,3.9,kg/TJ,1098.9112679999998,Gas Oil combustion consumption by freight transport,AR-L,SESCO,annual,kg,75ee3031-2575-36d7-be6f-a1c51b47cde7 +2010,La Pampa,II.1.1,281.77212,TJ,N2O,3.9,kg/TJ,1098.9112679999998,Gas Oil combustion consumption by freight transport,AR-L,SESCO,annual,kg,75ee3031-2575-36d7-be6f-a1c51b47cde7 +2010,La Rioja,II.1.1,53.92716,TJ,CO2,74100.0,kg/TJ,3996002.556,Gas Oil combustion consumption by freight transport,AR-F,SESCO,annual,kg,34727a41-76d3-3a75-a5e1-9e044c0cd979 +2010,La Rioja,II.1.1,53.92716,TJ,CH4,3.9,kg/TJ,210.315924,Gas Oil combustion consumption by freight transport,AR-F,SESCO,annual,kg,be32681f-8586-33ac-b412-7f14e79060a5 +2010,La Rioja,II.1.1,53.92716,TJ,N2O,3.9,kg/TJ,210.315924,Gas Oil combustion consumption by freight transport,AR-F,SESCO,annual,kg,be32681f-8586-33ac-b412-7f14e79060a5 +2010,Mendoza,II.1.1,1168.2291599999999,TJ,CO2,74100.0,kg/TJ,86565780.756,Gas Oil combustion consumption by freight transport,AR-M,SESCO,annual,kg,85051099-6506-3134-8dc4-8b13bcbda9fa +2010,Mendoza,II.1.1,1168.2291599999999,TJ,CH4,3.9,kg/TJ,4556.093723999999,Gas Oil combustion consumption by freight transport,AR-M,SESCO,annual,kg,7e7488e6-7172-32d5-846b-99fca5b4cb97 +2010,Mendoza,II.1.1,1168.2291599999999,TJ,N2O,3.9,kg/TJ,4556.093723999999,Gas Oil combustion consumption by freight transport,AR-M,SESCO,annual,kg,7e7488e6-7172-32d5-846b-99fca5b4cb97 +2010,Misiones,II.1.1,229.21751999999998,TJ,CO2,74100.0,kg/TJ,16985018.231999997,Gas Oil combustion consumption by freight transport,AR-N,SESCO,annual,kg,782d229b-2296-3b5a-9092-bca701715173 +2010,Misiones,II.1.1,229.21751999999998,TJ,CH4,3.9,kg/TJ,893.948328,Gas Oil combustion consumption by freight transport,AR-N,SESCO,annual,kg,8fa8b9e8-6226-3611-8a7c-ba4552a40b55 +2010,Misiones,II.1.1,229.21751999999998,TJ,N2O,3.9,kg/TJ,893.948328,Gas Oil combustion consumption by freight transport,AR-N,SESCO,annual,kg,8fa8b9e8-6226-3611-8a7c-ba4552a40b55 +2010,Neuquén,II.1.1,488.66747999999995,TJ,CO2,74100.0,kg/TJ,36210260.268,Gas Oil combustion consumption by freight transport,AR-Q,SESCO,annual,kg,b6ac07a9-c65a-3f29-b672-5f770db9897a +2010,Neuquén,II.1.1,488.66747999999995,TJ,CH4,3.9,kg/TJ,1905.8031719999997,Gas Oil combustion consumption by freight transport,AR-Q,SESCO,annual,kg,a3442fff-a660-33f4-9f54-3419f9ee848a +2010,Neuquén,II.1.1,488.66747999999995,TJ,N2O,3.9,kg/TJ,1905.8031719999997,Gas Oil combustion consumption by freight transport,AR-Q,SESCO,annual,kg,a3442fff-a660-33f4-9f54-3419f9ee848a +2010,Rio Negro,II.1.1,207.90671999999998,TJ,CO2,74100.0,kg/TJ,15405887.951999998,Gas Oil combustion consumption by freight transport,AR-R,SESCO,annual,kg,380e4365-5ca7-3d89-929d-8445b76f52b9 +2010,Rio Negro,II.1.1,207.90671999999998,TJ,CH4,3.9,kg/TJ,810.8362079999999,Gas Oil combustion consumption by freight transport,AR-R,SESCO,annual,kg,0988e8c1-afd3-32c6-9a70-2909593e0b24 +2010,Rio Negro,II.1.1,207.90671999999998,TJ,N2O,3.9,kg/TJ,810.8362079999999,Gas Oil combustion consumption by freight transport,AR-R,SESCO,annual,kg,0988e8c1-afd3-32c6-9a70-2909593e0b24 +2010,Salta,II.1.1,395.18892,TJ,CO2,74100.0,kg/TJ,29283498.972,Gas Oil combustion consumption by freight transport,AR-A,SESCO,annual,kg,88a36a28-0450-316a-b6a2-de6763472ec6 +2010,Salta,II.1.1,395.18892,TJ,CH4,3.9,kg/TJ,1541.236788,Gas Oil combustion consumption by freight transport,AR-A,SESCO,annual,kg,4cb754af-7003-358c-908d-c2329cac2540 +2010,Salta,II.1.1,395.18892,TJ,N2O,3.9,kg/TJ,1541.236788,Gas Oil combustion consumption by freight transport,AR-A,SESCO,annual,kg,4cb754af-7003-358c-908d-c2329cac2540 +2010,San Juan,II.1.1,80.07804,TJ,CO2,74100.0,kg/TJ,5933782.764,Gas Oil combustion consumption by freight transport,AR-J,SESCO,annual,kg,5b2ed6a4-fc1c-3741-a533-ae6814131696 +2010,San Juan,II.1.1,80.07804,TJ,CH4,3.9,kg/TJ,312.304356,Gas Oil combustion consumption by freight transport,AR-J,SESCO,annual,kg,b3607e36-5224-30b7-8f38-9af8f594b444 +2010,San Juan,II.1.1,80.07804,TJ,N2O,3.9,kg/TJ,312.304356,Gas Oil combustion consumption by freight transport,AR-J,SESCO,annual,kg,b3607e36-5224-30b7-8f38-9af8f594b444 +2010,San Luis,II.1.1,473.38872,TJ,CO2,74100.0,kg/TJ,35078104.151999995,Gas Oil combustion consumption by freight transport,AR-D,SESCO,annual,kg,b8d3caeb-3f31-3ebb-93d7-43b0eed82dce +2010,San Luis,II.1.1,473.38872,TJ,CH4,3.9,kg/TJ,1846.2160079999999,Gas Oil combustion consumption by freight transport,AR-D,SESCO,annual,kg,4dcd12f9-b83b-3ceb-8a32-ecde4e0b3883 +2010,San Luis,II.1.1,473.38872,TJ,N2O,3.9,kg/TJ,1846.2160079999999,Gas Oil combustion consumption by freight transport,AR-D,SESCO,annual,kg,4dcd12f9-b83b-3ceb-8a32-ecde4e0b3883 +2010,Santa Cruz,II.1.1,207.58164,TJ,CO2,74100.0,kg/TJ,15381799.524,Gas Oil combustion consumption by freight transport,AR-Z,SESCO,annual,kg,10501a53-6e93-369c-a0b3-f3822e5ee9f9 +2010,Santa Cruz,II.1.1,207.58164,TJ,CH4,3.9,kg/TJ,809.568396,Gas Oil combustion consumption by freight transport,AR-Z,SESCO,annual,kg,b7970ad8-f53e-3c87-8ea4-05e9aca49ba9 +2010,Santa Cruz,II.1.1,207.58164,TJ,N2O,3.9,kg/TJ,809.568396,Gas Oil combustion consumption by freight transport,AR-Z,SESCO,annual,kg,b7970ad8-f53e-3c87-8ea4-05e9aca49ba9 +2010,Santa Fe,II.1.1,2097.9579599999997,TJ,CO2,74100.0,kg/TJ,155458684.83599997,Gas Oil combustion consumption by freight transport,AR-S,SESCO,annual,kg,81c22714-f2de-3596-ba22-6d866a2704d9 +2010,Santa Fe,II.1.1,2097.9579599999997,TJ,CH4,3.9,kg/TJ,8182.036043999999,Gas Oil combustion consumption by freight transport,AR-S,SESCO,annual,kg,2f94bb74-ae7e-33ef-bf01-26547dea6554 +2010,Santa Fe,II.1.1,2097.9579599999997,TJ,N2O,3.9,kg/TJ,8182.036043999999,Gas Oil combustion consumption by freight transport,AR-S,SESCO,annual,kg,2f94bb74-ae7e-33ef-bf01-26547dea6554 +2010,Santiago del Estero,II.1.1,338.95007999999996,TJ,CO2,74100.0,kg/TJ,25116200.927999996,Gas Oil combustion consumption by freight transport,AR-G,SESCO,annual,kg,06759aba-2cc9-38ec-8531-88c295d8987d +2010,Santiago del Estero,II.1.1,338.95007999999996,TJ,CH4,3.9,kg/TJ,1321.9053119999999,Gas Oil combustion consumption by freight transport,AR-G,SESCO,annual,kg,fbeebc19-660f-3f3d-b166-c09bf7d21bb8 +2010,Santiago del Estero,II.1.1,338.95007999999996,TJ,N2O,3.9,kg/TJ,1321.9053119999999,Gas Oil combustion consumption by freight transport,AR-G,SESCO,annual,kg,fbeebc19-660f-3f3d-b166-c09bf7d21bb8 +2010,Tierra del Fuego,II.1.1,39.370799999999996,TJ,CO2,74100.0,kg/TJ,2917376.28,Gas Oil combustion consumption by freight transport,AR-V,SESCO,annual,kg,08433876-25b9-3230-85db-5a3e81cdfad1 +2010,Tierra del Fuego,II.1.1,39.370799999999996,TJ,CH4,3.9,kg/TJ,153.54611999999997,Gas Oil combustion consumption by freight transport,AR-V,SESCO,annual,kg,f6db136a-8ef2-3017-88e6-10385055de2d +2010,Tierra del Fuego,II.1.1,39.370799999999996,TJ,N2O,3.9,kg/TJ,153.54611999999997,Gas Oil combustion consumption by freight transport,AR-V,SESCO,annual,kg,f6db136a-8ef2-3017-88e6-10385055de2d +2010,Tucuman,II.1.1,373.98648,TJ,CO2,74100.0,kg/TJ,27712398.167999998,Gas Oil combustion consumption by freight transport,AR-T,SESCO,annual,kg,01b7621c-1427-3135-bf95-2df7a11de085 +2010,Tucuman,II.1.1,373.98648,TJ,CH4,3.9,kg/TJ,1458.5472719999998,Gas Oil combustion consumption by freight transport,AR-T,SESCO,annual,kg,0431cdb8-7771-358a-b46d-646f8346811d +2010,Tucuman,II.1.1,373.98648,TJ,N2O,3.9,kg/TJ,1458.5472719999998,Gas Oil combustion consumption by freight transport,AR-T,SESCO,annual,kg,0431cdb8-7771-358a-b46d-646f8346811d +2010,Buenos Aires,II.1.1,63.96852,TJ,CO2,74100.0,kg/TJ,4740067.3319999995,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,716719b7-d790-3227-b481-229e336fa8be +2010,Buenos Aires,II.1.1,63.96852,TJ,CH4,3.9,kg/TJ,249.477228,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,b0f7fd76-5eb8-330b-ba7b-e78e329fd561 +2010,Buenos Aires,II.1.1,63.96852,TJ,N2O,3.9,kg/TJ,249.477228,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,b0f7fd76-5eb8-330b-ba7b-e78e329fd561 +2010,Capital Federal,II.1.1,18.52956,TJ,CO2,74100.0,kg/TJ,1373040.396,Gas Oil combustion consumption by freight transport,AR-C,SESCO,annual,kg,23f8f4c1-5e5b-3af0-9b96-43e3e3fa158a +2010,Capital Federal,II.1.1,18.52956,TJ,CH4,3.9,kg/TJ,72.265284,Gas Oil combustion consumption by freight transport,AR-C,SESCO,annual,kg,1d960f5a-cbd0-35a1-b165-d106a5e9efdd +2010,Capital Federal,II.1.1,18.52956,TJ,N2O,3.9,kg/TJ,72.265284,Gas Oil combustion consumption by freight transport,AR-C,SESCO,annual,kg,1d960f5a-cbd0-35a1-b165-d106a5e9efdd +2010,Chaco,II.1.1,5.63472,TJ,CO2,74100.0,kg/TJ,417532.752,Gas Oil combustion consumption by freight transport,AR-H,SESCO,annual,kg,cb361035-83e1-3a31-8b75-c5b2268cb3be +2010,Chaco,II.1.1,5.63472,TJ,CH4,3.9,kg/TJ,21.975407999999998,Gas Oil combustion consumption by freight transport,AR-H,SESCO,annual,kg,7f2c88aa-691e-31db-b8ca-8a48273e2a92 +2010,Chaco,II.1.1,5.63472,TJ,N2O,3.9,kg/TJ,21.975407999999998,Gas Oil combustion consumption by freight transport,AR-H,SESCO,annual,kg,7f2c88aa-691e-31db-b8ca-8a48273e2a92 +2010,Chubut,II.1.1,2.81736,TJ,CO2,74100.0,kg/TJ,208766.376,Gas Oil combustion consumption by freight transport,AR-U,SESCO,annual,kg,bc5d501f-b80a-3253-b4d3-46dca5be1ae4 +2010,Chubut,II.1.1,2.81736,TJ,CH4,3.9,kg/TJ,10.987703999999999,Gas Oil combustion consumption by freight transport,AR-U,SESCO,annual,kg,5a4d17be-6849-3d1c-aa7d-66e886f178b3 +2010,Chubut,II.1.1,2.81736,TJ,N2O,3.9,kg/TJ,10.987703999999999,Gas Oil combustion consumption by freight transport,AR-U,SESCO,annual,kg,5a4d17be-6849-3d1c-aa7d-66e886f178b3 +2010,Corrientes,II.1.1,1.37256,TJ,CO2,74100.0,kg/TJ,101706.696,Gas Oil combustion consumption by freight transport,AR-W,SESCO,annual,kg,26a967ca-ce7a-39ef-8193-cb04f8ff6f6f +2010,Corrientes,II.1.1,1.37256,TJ,CH4,3.9,kg/TJ,5.352984,Gas Oil combustion consumption by freight transport,AR-W,SESCO,annual,kg,976f7a0d-e830-33fb-80d3-201c5da4b636 +2010,Corrientes,II.1.1,1.37256,TJ,N2O,3.9,kg/TJ,5.352984,Gas Oil combustion consumption by freight transport,AR-W,SESCO,annual,kg,976f7a0d-e830-33fb-80d3-201c5da4b636 +2010,Córdoba,II.1.1,9.42732,TJ,CO2,74100.0,kg/TJ,698564.412,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,a7bb97fa-e8b4-3805-973b-1a7e09741a59 +2010,Córdoba,II.1.1,9.42732,TJ,CH4,3.9,kg/TJ,36.766548,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,12155fe1-c3a4-305f-bcdf-ec7f422a0402 +2010,Córdoba,II.1.1,9.42732,TJ,N2O,3.9,kg/TJ,36.766548,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,12155fe1-c3a4-305f-bcdf-ec7f422a0402 +2010,Entre Rios,II.1.1,7.07952,TJ,CO2,74100.0,kg/TJ,524592.4319999999,Gas Oil combustion consumption by freight transport,AR-E,SESCO,annual,kg,f42d650d-5409-376d-8afe-0be282119419 +2010,Entre Rios,II.1.1,7.07952,TJ,CH4,3.9,kg/TJ,27.610127999999996,Gas Oil combustion consumption by freight transport,AR-E,SESCO,annual,kg,0d53db6a-c166-327e-ba34-5655bcef0496 +2010,Entre Rios,II.1.1,7.07952,TJ,N2O,3.9,kg/TJ,27.610127999999996,Gas Oil combustion consumption by freight transport,AR-E,SESCO,annual,kg,0d53db6a-c166-327e-ba34-5655bcef0496 +2010,Formosa,II.1.1,0.39732,TJ,CO2,74100.0,kg/TJ,29441.412,Gas Oil combustion consumption by freight transport,AR-P,SESCO,annual,kg,f7d0fc73-b46e-346d-8f12-8fa3fec0c5ac +2010,Formosa,II.1.1,0.39732,TJ,CH4,3.9,kg/TJ,1.549548,Gas Oil combustion consumption by freight transport,AR-P,SESCO,annual,kg,83498105-6c41-36ad-b581-bb69b5c8d561 +2010,Formosa,II.1.1,0.39732,TJ,N2O,3.9,kg/TJ,1.549548,Gas Oil combustion consumption by freight transport,AR-P,SESCO,annual,kg,83498105-6c41-36ad-b581-bb69b5c8d561 +2010,Jujuy,II.1.1,0.28896,TJ,CO2,74100.0,kg/TJ,21411.935999999998,Gas Oil combustion consumption by freight transport,AR-Y,SESCO,annual,kg,af3a1ef4-ef4e-3cd1-9367-655b29438884 +2010,Jujuy,II.1.1,0.28896,TJ,CH4,3.9,kg/TJ,1.126944,Gas Oil combustion consumption by freight transport,AR-Y,SESCO,annual,kg,6cb174f1-6558-3ef0-abfc-e5b1e4e229c6 +2010,Jujuy,II.1.1,0.28896,TJ,N2O,3.9,kg/TJ,1.126944,Gas Oil combustion consumption by freight transport,AR-Y,SESCO,annual,kg,6cb174f1-6558-3ef0-abfc-e5b1e4e229c6 +2010,La Pampa,II.1.1,1.37256,TJ,CO2,74100.0,kg/TJ,101706.696,Gas Oil combustion consumption by freight transport,AR-L,SESCO,annual,kg,0d0f3400-0d0a-3d9f-8fe6-55f9d0171cb6 +2010,La Pampa,II.1.1,1.37256,TJ,CH4,3.9,kg/TJ,5.352984,Gas Oil combustion consumption by freight transport,AR-L,SESCO,annual,kg,0988c533-39ec-38e2-8e1c-74ae436b913f +2010,La Pampa,II.1.1,1.37256,TJ,N2O,3.9,kg/TJ,5.352984,Gas Oil combustion consumption by freight transport,AR-L,SESCO,annual,kg,0988c533-39ec-38e2-8e1c-74ae436b913f +2010,La Rioja,II.1.1,0.5418,TJ,CO2,74100.0,kg/TJ,40147.38,Gas Oil combustion consumption by freight transport,AR-F,SESCO,annual,kg,0104c4c5-27f8-3182-a942-51ffd83fdbe3 +2010,La Rioja,II.1.1,0.5418,TJ,CH4,3.9,kg/TJ,2.1130199999999997,Gas Oil combustion consumption by freight transport,AR-F,SESCO,annual,kg,d3a3ea1f-316c-37e0-b863-59b76f8421a3 +2010,La Rioja,II.1.1,0.5418,TJ,N2O,3.9,kg/TJ,2.1130199999999997,Gas Oil combustion consumption by freight transport,AR-F,SESCO,annual,kg,d3a3ea1f-316c-37e0-b863-59b76f8421a3 +2010,Mendoza,II.1.1,7.0434,TJ,CO2,74100.0,kg/TJ,521915.94,Gas Oil combustion consumption by freight transport,AR-M,SESCO,annual,kg,86c55a1d-a33f-3362-85cc-8bf78381d6bf +2010,Mendoza,II.1.1,7.0434,TJ,CH4,3.9,kg/TJ,27.46926,Gas Oil combustion consumption by freight transport,AR-M,SESCO,annual,kg,eb78a874-6c73-3c4f-8b66-a5c2aa656ef5 +2010,Mendoza,II.1.1,7.0434,TJ,N2O,3.9,kg/TJ,27.46926,Gas Oil combustion consumption by freight transport,AR-M,SESCO,annual,kg,eb78a874-6c73-3c4f-8b66-a5c2aa656ef5 +2010,Misiones,II.1.1,0.68628,TJ,CO2,74100.0,kg/TJ,50853.348,Gas Oil combustion consumption by freight transport,AR-N,SESCO,annual,kg,84dee5fa-056a-37fe-8b95-4ce2cd9c2738 +2010,Misiones,II.1.1,0.68628,TJ,CH4,3.9,kg/TJ,2.676492,Gas Oil combustion consumption by freight transport,AR-N,SESCO,annual,kg,9dcdd8b7-4f24-3db8-954a-386b0e69ccde +2010,Misiones,II.1.1,0.68628,TJ,N2O,3.9,kg/TJ,2.676492,Gas Oil combustion consumption by freight transport,AR-N,SESCO,annual,kg,9dcdd8b7-4f24-3db8-954a-386b0e69ccde +2010,Neuquén,II.1.1,3.72036,TJ,CO2,74100.0,kg/TJ,275678.676,Gas Oil combustion consumption by freight transport,AR-Q,SESCO,annual,kg,30678c7e-e8b9-3284-852c-acd7d8a20a4d +2010,Neuquén,II.1.1,3.72036,TJ,CH4,3.9,kg/TJ,14.509404,Gas Oil combustion consumption by freight transport,AR-Q,SESCO,annual,kg,2e1af95c-9e58-364a-bf9b-b17a305f9cc3 +2010,Neuquén,II.1.1,3.72036,TJ,N2O,3.9,kg/TJ,14.509404,Gas Oil combustion consumption by freight transport,AR-Q,SESCO,annual,kg,2e1af95c-9e58-364a-bf9b-b17a305f9cc3 +2010,Rio Negro,II.1.1,1.84212,TJ,CO2,74100.0,kg/TJ,136501.092,Gas Oil combustion consumption by freight transport,AR-R,SESCO,annual,kg,46457e9e-2000-3a82-895e-ddd757c38ea7 +2010,Rio Negro,II.1.1,1.84212,TJ,CH4,3.9,kg/TJ,7.184267999999999,Gas Oil combustion consumption by freight transport,AR-R,SESCO,annual,kg,8e025840-4fa4-3520-a3fb-106dad4458e4 +2010,Rio Negro,II.1.1,1.84212,TJ,N2O,3.9,kg/TJ,7.184267999999999,Gas Oil combustion consumption by freight transport,AR-R,SESCO,annual,kg,8e025840-4fa4-3520-a3fb-106dad4458e4 +2010,Salta,II.1.1,3.17856,TJ,CO2,74100.0,kg/TJ,235531.296,Gas Oil combustion consumption by freight transport,AR-A,SESCO,annual,kg,f19d56fc-14b5-3c84-8640-1b00653bd5ea +2010,Salta,II.1.1,3.17856,TJ,CH4,3.9,kg/TJ,12.396384,Gas Oil combustion consumption by freight transport,AR-A,SESCO,annual,kg,62b3fdf2-5fdd-30b3-a57a-5da5a1793d89 +2010,Salta,II.1.1,3.17856,TJ,N2O,3.9,kg/TJ,12.396384,Gas Oil combustion consumption by freight transport,AR-A,SESCO,annual,kg,62b3fdf2-5fdd-30b3-a57a-5da5a1793d89 +2010,San Juan,II.1.1,0.93912,TJ,CO2,74100.0,kg/TJ,69588.792,Gas Oil combustion consumption by freight transport,AR-J,SESCO,annual,kg,b2e6cbf0-6c42-3a71-a4e6-b9690683f59b +2010,San Juan,II.1.1,0.93912,TJ,CH4,3.9,kg/TJ,3.662568,Gas Oil combustion consumption by freight transport,AR-J,SESCO,annual,kg,38b45504-0529-318a-91e1-889bcbd5ecd8 +2010,San Juan,II.1.1,0.93912,TJ,N2O,3.9,kg/TJ,3.662568,Gas Oil combustion consumption by freight transport,AR-J,SESCO,annual,kg,38b45504-0529-318a-91e1-889bcbd5ecd8 +2010,San Luis,II.1.1,1.19196,TJ,CO2,74100.0,kg/TJ,88324.23599999999,Gas Oil combustion consumption by freight transport,AR-D,SESCO,annual,kg,bb2c759c-61d0-39f3-b514-310c2328e749 +2010,San Luis,II.1.1,1.19196,TJ,CH4,3.9,kg/TJ,4.648643999999999,Gas Oil combustion consumption by freight transport,AR-D,SESCO,annual,kg,993547b1-b733-3d55-937b-c1ae654e5a5c +2010,San Luis,II.1.1,1.19196,TJ,N2O,3.9,kg/TJ,4.648643999999999,Gas Oil combustion consumption by freight transport,AR-D,SESCO,annual,kg,993547b1-b733-3d55-937b-c1ae654e5a5c +2010,Santa Cruz,II.1.1,0.7223999999999999,TJ,CO2,74100.0,kg/TJ,53529.84,Gas Oil combustion consumption by freight transport,AR-Z,SESCO,annual,kg,f6405d10-10ce-3ba4-9536-44e8606ef4f2 +2010,Santa Cruz,II.1.1,0.7223999999999999,TJ,CH4,3.9,kg/TJ,2.81736,Gas Oil combustion consumption by freight transport,AR-Z,SESCO,annual,kg,256100b3-07ab-3776-9029-c1bdaeecd2e9 +2010,Santa Cruz,II.1.1,0.7223999999999999,TJ,N2O,3.9,kg/TJ,2.81736,Gas Oil combustion consumption by freight transport,AR-Z,SESCO,annual,kg,256100b3-07ab-3776-9029-c1bdaeecd2e9 +2010,Santa Fe,II.1.1,20.98572,TJ,CO2,74100.0,kg/TJ,1555041.852,Gas Oil combustion consumption by freight transport,AR-S,SESCO,annual,kg,5d801c16-627d-3587-bf46-18b2008b2800 +2010,Santa Fe,II.1.1,20.98572,TJ,CH4,3.9,kg/TJ,81.844308,Gas Oil combustion consumption by freight transport,AR-S,SESCO,annual,kg,5a435e98-dc67-316d-ae66-5ad0e217323f +2010,Santa Fe,II.1.1,20.98572,TJ,N2O,3.9,kg/TJ,81.844308,Gas Oil combustion consumption by freight transport,AR-S,SESCO,annual,kg,5a435e98-dc67-316d-ae66-5ad0e217323f +2010,Santiago del Estero,II.1.1,1.3364399999999999,TJ,CO2,74100.0,kg/TJ,99030.20399999998,Gas Oil combustion consumption by freight transport,AR-G,SESCO,annual,kg,354e8437-c227-34df-96e8-16a3906a7887 +2010,Santiago del Estero,II.1.1,1.3364399999999999,TJ,CH4,3.9,kg/TJ,5.212115999999999,Gas Oil combustion consumption by freight transport,AR-G,SESCO,annual,kg,46d15141-d3c1-3152-ba6c-faaa848bee1c +2010,Santiago del Estero,II.1.1,1.3364399999999999,TJ,N2O,3.9,kg/TJ,5.212115999999999,Gas Oil combustion consumption by freight transport,AR-G,SESCO,annual,kg,46d15141-d3c1-3152-ba6c-faaa848bee1c +2010,Tucuman,II.1.1,1.6254,TJ,CO2,74100.0,kg/TJ,120442.14,Gas Oil combustion consumption by freight transport,AR-T,SESCO,annual,kg,90482549-7bba-304d-8207-5715fc912b3a +2010,Tucuman,II.1.1,1.6254,TJ,CH4,3.9,kg/TJ,6.33906,Gas Oil combustion consumption by freight transport,AR-T,SESCO,annual,kg,055abed5-5f2a-35cd-bb88-711d97a9daa3 +2010,Tucuman,II.1.1,1.6254,TJ,N2O,3.9,kg/TJ,6.33906,Gas Oil combustion consumption by freight transport,AR-T,SESCO,annual,kg,055abed5-5f2a-35cd-bb88-711d97a9daa3 +2010,Buenos Aires,II.1.1,0.62906,TJ,CO2,71500.0,kg/TJ,44977.78999999999,Jet Kerosene combustion consumption by freight transport,AR-B,SESCO,annual,kg,91f9c7cd-5773-3730-abc7-6d535027698f +2010,Buenos Aires,II.1.1,0.62906,TJ,CH4,0.5,kg/TJ,0.31453,Jet Kerosene combustion consumption by freight transport,AR-B,SESCO,annual,kg,a166714a-d954-3d9e-87f2-6ca9ac8a9f35 +2010,Buenos Aires,II.1.1,0.62906,TJ,N2O,2.0,kg/TJ,1.25812,Jet Kerosene combustion consumption by freight transport,AR-B,SESCO,annual,kg,c51bb30d-95d8-34fd-9f32-a368c69b6bd9 +2010,Buenos Aires,II.1.1,0.27412,TJ,CO2,73300.0,kg/TJ,20092.996,Naphtha combustion consumption by freight transport,AR-B,SESCO,annual,kg,b6b1dee2-b0c1-3761-973b-282805620f85 +2010,Buenos Aires,II.1.1,0.27412,TJ,CH4,0.5,kg/TJ,0.13706,Naphtha combustion consumption by freight transport,AR-B,SESCO,annual,kg,efff4a9a-dbad-3b75-8612-3b35c385973a +2010,Buenos Aires,II.1.1,0.27412,TJ,N2O,2.0,kg/TJ,0.54824,Naphtha combustion consumption by freight transport,AR-B,SESCO,annual,kg,8a74ff95-1308-38de-b946-d7f1b93f533f +2010,Santa Fe,II.1.1,0.06853,TJ,CO2,73300.0,kg/TJ,5023.249,Naphtha combustion consumption by freight transport,AR-S,SESCO,annual,kg,97f63c58-49eb-3fde-a1db-e06312868e58 +2010,Santa Fe,II.1.1,0.06853,TJ,CH4,0.5,kg/TJ,0.034265,Naphtha combustion consumption by freight transport,AR-S,SESCO,annual,kg,5ec7fffb-d3bb-39b7-b899-030c098bb4b0 +2010,Santa Fe,II.1.1,0.06853,TJ,N2O,2.0,kg/TJ,0.13706,Naphtha combustion consumption by freight transport,AR-S,SESCO,annual,kg,0f38e31c-39fb-3154-b8a0-7ef0a19d21ad +2010,Buenos Aires,II.1.1,117.837335,TJ,CO2,73300.0,kg/TJ,8637476.6555,Naphtha combustion consumption by freight transport,AR-B,SESCO,annual,kg,4004a23c-0eee-3a7a-a028-7e2403b3c3b4 +2010,Buenos Aires,II.1.1,117.837335,TJ,CH4,0.5,kg/TJ,58.9186675,Naphtha combustion consumption by freight transport,AR-B,SESCO,annual,kg,3b790b7a-700d-34a3-b9be-7c3a1e6bf14b +2010,Buenos Aires,II.1.1,117.837335,TJ,N2O,2.0,kg/TJ,235.67467,Naphtha combustion consumption by freight transport,AR-B,SESCO,annual,kg,35eeec5c-5b59-3a71-a8a6-fec6b3ef7980 +2010,Capital Federal,II.1.1,20.798855,TJ,CO2,73300.0,kg/TJ,1524556.0715,Naphtha combustion consumption by freight transport,AR-C,SESCO,annual,kg,d45750db-05b0-38d6-aa55-2e9659cab3e7 +2010,Capital Federal,II.1.1,20.798855,TJ,CH4,0.5,kg/TJ,10.3994275,Naphtha combustion consumption by freight transport,AR-C,SESCO,annual,kg,58b3a41a-afe9-34f7-a68a-aee3456794b1 +2010,Capital Federal,II.1.1,20.798855,TJ,N2O,2.0,kg/TJ,41.59771,Naphtha combustion consumption by freight transport,AR-C,SESCO,annual,kg,24d74109-c06d-3980-9968-19b92ac5c065 +2010,Catamarca,II.1.1,0.13706,TJ,CO2,73300.0,kg/TJ,10046.498,Naphtha combustion consumption by freight transport,AR-K,SESCO,annual,kg,72b89e92-6a40-38b4-ada6-b915654d6288 +2010,Catamarca,II.1.1,0.13706,TJ,CH4,0.5,kg/TJ,0.06853,Naphtha combustion consumption by freight transport,AR-K,SESCO,annual,kg,1d711ea2-d1f8-328c-ad2c-1564c3877c4a +2010,Catamarca,II.1.1,0.13706,TJ,N2O,2.0,kg/TJ,0.27412,Naphtha combustion consumption by freight transport,AR-K,SESCO,annual,kg,7125772f-a68d-325b-a75d-11430cb70e59 +2010,Chaco,II.1.1,3.4265,TJ,CO2,73300.0,kg/TJ,251162.44999999998,Naphtha combustion consumption by freight transport,AR-H,SESCO,annual,kg,902cff2a-f859-38b9-9390-b60261d30498 +2010,Chaco,II.1.1,3.4265,TJ,CH4,0.5,kg/TJ,1.71325,Naphtha combustion consumption by freight transport,AR-H,SESCO,annual,kg,8ad246d0-697b-355a-a80e-7537df5035f4 +2010,Chaco,II.1.1,3.4265,TJ,N2O,2.0,kg/TJ,6.853,Naphtha combustion consumption by freight transport,AR-H,SESCO,annual,kg,9631b980-28fc-3425-b92d-02a1a69576d3 +2010,Chubut,II.1.1,4.24886,TJ,CO2,73300.0,kg/TJ,311441.43799999997,Naphtha combustion consumption by freight transport,AR-U,SESCO,annual,kg,ca8efb9a-3dac-31fd-b449-2a5c2c521628 +2010,Chubut,II.1.1,4.24886,TJ,CH4,0.5,kg/TJ,2.12443,Naphtha combustion consumption by freight transport,AR-U,SESCO,annual,kg,db431937-2c8e-3394-8a20-267e22dbfd28 +2010,Chubut,II.1.1,4.24886,TJ,N2O,2.0,kg/TJ,8.49772,Naphtha combustion consumption by freight transport,AR-U,SESCO,annual,kg,4c64265c-24eb-3bd6-aa6e-2776228e0996 +2010,Corrientes,II.1.1,4.351655,TJ,CO2,73300.0,kg/TJ,318976.3115,Naphtha combustion consumption by freight transport,AR-W,SESCO,annual,kg,f330f6d1-ae74-327a-9ebd-d6aca674b6bf +2010,Corrientes,II.1.1,4.351655,TJ,CH4,0.5,kg/TJ,2.1758275,Naphtha combustion consumption by freight transport,AR-W,SESCO,annual,kg,874fa10e-bf32-3d38-8017-aa86dd3f858d +2010,Corrientes,II.1.1,4.351655,TJ,N2O,2.0,kg/TJ,8.70331,Naphtha combustion consumption by freight transport,AR-W,SESCO,annual,kg,e03e7adc-dbaa-3cd6-b15d-8a2d6f0b907a +2010,Córdoba,II.1.1,15.0766,TJ,CO2,73300.0,kg/TJ,1105114.78,Naphtha combustion consumption by freight transport,AR-X,SESCO,annual,kg,77c0e3a1-60f5-3c6e-b940-9f8436907a95 +2010,Córdoba,II.1.1,15.0766,TJ,CH4,0.5,kg/TJ,7.5383,Naphtha combustion consumption by freight transport,AR-X,SESCO,annual,kg,d8cbab9f-56aa-369a-8206-9166211dd09b +2010,Córdoba,II.1.1,15.0766,TJ,N2O,2.0,kg/TJ,30.1532,Naphtha combustion consumption by freight transport,AR-X,SESCO,annual,kg,f1f6dd4b-84fd-38ba-827e-1a53fc88b094 +2010,Entre Rios,II.1.1,5.96211,TJ,CO2,73300.0,kg/TJ,437022.663,Naphtha combustion consumption by freight transport,AR-E,SESCO,annual,kg,e485ff56-c237-300c-b909-37be877abb68 +2010,Entre Rios,II.1.1,5.96211,TJ,CH4,0.5,kg/TJ,2.981055,Naphtha combustion consumption by freight transport,AR-E,SESCO,annual,kg,924ed5fa-8d99-3cb2-b449-5f18c813e58c +2010,Entre Rios,II.1.1,5.96211,TJ,N2O,2.0,kg/TJ,11.92422,Naphtha combustion consumption by freight transport,AR-E,SESCO,annual,kg,aa63c946-5798-3747-952a-d68813acdbfa +2010,Formosa,II.1.1,0.27412,TJ,CO2,73300.0,kg/TJ,20092.996,Naphtha combustion consumption by freight transport,AR-P,SESCO,annual,kg,5622eda9-4106-36cc-a3f7-87713cc6a1dc +2010,Formosa,II.1.1,0.27412,TJ,CH4,0.5,kg/TJ,0.13706,Naphtha combustion consumption by freight transport,AR-P,SESCO,annual,kg,806662b5-214a-3059-9953-56e2beada00c +2010,Formosa,II.1.1,0.27412,TJ,N2O,2.0,kg/TJ,0.54824,Naphtha combustion consumption by freight transport,AR-P,SESCO,annual,kg,59963010-8ff3-3baf-a317-562bc7261851 +2010,Jujuy,II.1.1,2.843995,TJ,CO2,73300.0,kg/TJ,208464.8335,Naphtha combustion consumption by freight transport,AR-Y,SESCO,annual,kg,0f885e53-a5c8-39c2-9045-5e78343f3e06 +2010,Jujuy,II.1.1,2.843995,TJ,CH4,0.5,kg/TJ,1.4219975,Naphtha combustion consumption by freight transport,AR-Y,SESCO,annual,kg,991c6bb0-b661-3e95-8d98-704b2d0cfba0 +2010,Jujuy,II.1.1,2.843995,TJ,N2O,2.0,kg/TJ,5.68799,Naphtha combustion consumption by freight transport,AR-Y,SESCO,annual,kg,ccd368d9-a047-38de-a5c4-92c15e8a09cd +2010,La Pampa,II.1.1,1.9188399999999999,TJ,CO2,73300.0,kg/TJ,140650.97199999998,Naphtha combustion consumption by freight transport,AR-L,SESCO,annual,kg,3241adc5-c682-377e-bd35-2c083e5e1ab7 +2010,La Pampa,II.1.1,1.9188399999999999,TJ,CH4,0.5,kg/TJ,0.9594199999999999,Naphtha combustion consumption by freight transport,AR-L,SESCO,annual,kg,b412d111-c022-3540-87b3-42f63686040f +2010,La Pampa,II.1.1,1.9188399999999999,TJ,N2O,2.0,kg/TJ,3.8376799999999998,Naphtha combustion consumption by freight transport,AR-L,SESCO,annual,kg,a32d0af0-b57a-37d8-af12-06aab7100c76 +2010,La Rioja,II.1.1,1.1992749999999999,TJ,CO2,73300.0,kg/TJ,87906.85749999998,Naphtha combustion consumption by freight transport,AR-F,SESCO,annual,kg,737609d3-c24e-3556-80d5-fe3553fc2bc8 +2010,La Rioja,II.1.1,1.1992749999999999,TJ,CH4,0.5,kg/TJ,0.5996374999999999,Naphtha combustion consumption by freight transport,AR-F,SESCO,annual,kg,f1340262-6964-3cb9-936c-79bf887e28a7 +2010,La Rioja,II.1.1,1.1992749999999999,TJ,N2O,2.0,kg/TJ,2.3985499999999997,Naphtha combustion consumption by freight transport,AR-F,SESCO,annual,kg,b05e9bcd-3d75-3090-8fbb-3a732925cd56 +2010,Mendoza,II.1.1,15.659104999999998,TJ,CO2,73300.0,kg/TJ,1147812.3964999998,Naphtha combustion consumption by freight transport,AR-M,SESCO,annual,kg,f164ec76-409d-3590-a926-e5e98c8e8aa1 +2010,Mendoza,II.1.1,15.659104999999998,TJ,CH4,0.5,kg/TJ,7.829552499999999,Naphtha combustion consumption by freight transport,AR-M,SESCO,annual,kg,45c20a53-8437-3e9b-b0da-9f0fe89cd535 +2010,Mendoza,II.1.1,15.659104999999998,TJ,N2O,2.0,kg/TJ,31.318209999999997,Naphtha combustion consumption by freight transport,AR-M,SESCO,annual,kg,dff8f05d-8083-3592-bc7f-9d86462e07f3 +2010,Misiones,II.1.1,4.146065,TJ,CO2,73300.0,kg/TJ,303906.56450000004,Naphtha combustion consumption by freight transport,AR-N,SESCO,annual,kg,7ee74d3f-b6aa-3a46-9fe6-b98aaff90083 +2010,Misiones,II.1.1,4.146065,TJ,CH4,0.5,kg/TJ,2.0730325,Naphtha combustion consumption by freight transport,AR-N,SESCO,annual,kg,4bc4e850-96b9-3934-82fd-9f929358d123 +2010,Misiones,II.1.1,4.146065,TJ,N2O,2.0,kg/TJ,8.29213,Naphtha combustion consumption by freight transport,AR-N,SESCO,annual,kg,e5a55515-6ba3-332c-bb1c-999d036edd41 +2010,Neuquén,II.1.1,4.899895,TJ,CO2,73300.0,kg/TJ,359162.3035,Naphtha combustion consumption by freight transport,AR-Q,SESCO,annual,kg,ffe946d6-4229-39dd-9c86-5273d50ad380 +2010,Neuquén,II.1.1,4.899895,TJ,CH4,0.5,kg/TJ,2.4499475,Naphtha combustion consumption by freight transport,AR-Q,SESCO,annual,kg,a58d73d9-f602-392e-b327-e77cfec6b072 +2010,Neuquén,II.1.1,4.899895,TJ,N2O,2.0,kg/TJ,9.79979,Naphtha combustion consumption by freight transport,AR-Q,SESCO,annual,kg,5f06d749-f7d7-36e5-a97b-3968cb359bb7 +2010,Rio Negro,II.1.1,3.4265,TJ,CO2,73300.0,kg/TJ,251162.44999999998,Naphtha combustion consumption by freight transport,AR-R,SESCO,annual,kg,ee38d393-e1bc-3144-ba56-4e7d488779fd +2010,Rio Negro,II.1.1,3.4265,TJ,CH4,0.5,kg/TJ,1.71325,Naphtha combustion consumption by freight transport,AR-R,SESCO,annual,kg,be1c3e60-7b17-3a8f-bc19-390d7dd27a8a +2010,Rio Negro,II.1.1,3.4265,TJ,N2O,2.0,kg/TJ,6.853,Naphtha combustion consumption by freight transport,AR-R,SESCO,annual,kg,4769c7d1-5acf-3a72-8056-0f9366768aa4 +2010,Salta,II.1.1,3.049585,TJ,CO2,73300.0,kg/TJ,223534.5805,Naphtha combustion consumption by freight transport,AR-A,SESCO,annual,kg,b56ed2eb-3075-32e5-950f-cdd80004d1dd +2010,Salta,II.1.1,3.049585,TJ,CH4,0.5,kg/TJ,1.5247925,Naphtha combustion consumption by freight transport,AR-A,SESCO,annual,kg,e760dfb5-d221-306f-a1fe-8ee3f5f4104c +2010,Salta,II.1.1,3.049585,TJ,N2O,2.0,kg/TJ,6.09917,Naphtha combustion consumption by freight transport,AR-A,SESCO,annual,kg,8da0e23c-94e0-3841-ab3c-e4c2ee7cd521 +2010,San Juan,II.1.1,1.2335399999999999,TJ,CO2,73300.0,kg/TJ,90418.48199999999,Naphtha combustion consumption by freight transport,AR-J,SESCO,annual,kg,6347fa8a-1c40-3a7a-8733-ca8a2977b15d +2010,San Juan,II.1.1,1.2335399999999999,TJ,CH4,0.5,kg/TJ,0.6167699999999999,Naphtha combustion consumption by freight transport,AR-J,SESCO,annual,kg,218f500c-7cde-35c1-b60d-709c4014b020 +2010,San Juan,II.1.1,1.2335399999999999,TJ,N2O,2.0,kg/TJ,2.4670799999999997,Naphtha combustion consumption by freight transport,AR-J,SESCO,annual,kg,161d2d82-92f4-3b3e-9ea1-66e710bcdea8 +2010,San Luis,II.1.1,2.80973,TJ,CO2,73300.0,kg/TJ,205953.209,Naphtha combustion consumption by freight transport,AR-D,SESCO,annual,kg,e3df5556-d8b4-3d8d-a7fd-19646681d0d8 +2010,San Luis,II.1.1,2.80973,TJ,CH4,0.5,kg/TJ,1.404865,Naphtha combustion consumption by freight transport,AR-D,SESCO,annual,kg,84acf316-ebc4-369e-9932-0a32a8083470 +2010,San Luis,II.1.1,2.80973,TJ,N2O,2.0,kg/TJ,5.61946,Naphtha combustion consumption by freight transport,AR-D,SESCO,annual,kg,58bf5008-2bfa-352d-990c-814b85d6db9c +2010,Santa Cruz,II.1.1,2.19296,TJ,CO2,73300.0,kg/TJ,160743.968,Naphtha combustion consumption by freight transport,AR-Z,SESCO,annual,kg,3656bd8a-e37d-302c-a343-62ac58a7d8f3 +2010,Santa Cruz,II.1.1,2.19296,TJ,CH4,0.5,kg/TJ,1.09648,Naphtha combustion consumption by freight transport,AR-Z,SESCO,annual,kg,13ed9a65-a200-3cbf-89dc-f9ea73c90757 +2010,Santa Cruz,II.1.1,2.19296,TJ,N2O,2.0,kg/TJ,4.38592,Naphtha combustion consumption by freight transport,AR-Z,SESCO,annual,kg,5621e15c-1bbc-3e24-9711-9aa60d98b942 +2010,Santa Fe,II.1.1,23.43726,TJ,CO2,73300.0,kg/TJ,1717951.1579999998,Naphtha combustion consumption by freight transport,AR-S,SESCO,annual,kg,760e9a86-8ff6-3e44-9346-83c1774050d4 +2010,Santa Fe,II.1.1,23.43726,TJ,CH4,0.5,kg/TJ,11.71863,Naphtha combustion consumption by freight transport,AR-S,SESCO,annual,kg,331d3e5d-21dc-360e-b9cf-61f2f629bf9b +2010,Santa Fe,II.1.1,23.43726,TJ,N2O,2.0,kg/TJ,46.87452,Naphtha combustion consumption by freight transport,AR-S,SESCO,annual,kg,d16eb125-1a70-3dd6-83e3-dfa107e576ff +2010,Santiago del Estero,II.1.1,1.610455,TJ,CO2,73300.0,kg/TJ,118046.3515,Naphtha combustion consumption by freight transport,AR-G,SESCO,annual,kg,228f5e5f-a343-38db-90d4-df88d38cbe2f +2010,Santiago del Estero,II.1.1,1.610455,TJ,CH4,0.5,kg/TJ,0.8052275,Naphtha combustion consumption by freight transport,AR-G,SESCO,annual,kg,32ffc2a3-9ae4-3195-a6f2-f07824395ecf +2010,Santiago del Estero,II.1.1,1.610455,TJ,N2O,2.0,kg/TJ,3.22091,Naphtha combustion consumption by freight transport,AR-G,SESCO,annual,kg,0d1e2e25-1258-3302-9ad7-51e044386ed8 +2010,Tierra del Fuego,II.1.1,0.6510349999999999,TJ,CO2,73300.0,kg/TJ,47720.86549999999,Naphtha combustion consumption by freight transport,AR-V,SESCO,annual,kg,e3d6f4e2-9c0f-3983-85a4-4de381030ca9 +2010,Tierra del Fuego,II.1.1,0.6510349999999999,TJ,CH4,0.5,kg/TJ,0.32551749999999996,Naphtha combustion consumption by freight transport,AR-V,SESCO,annual,kg,dd5ea713-8a5f-340b-a417-483a3e3933e8 +2010,Tierra del Fuego,II.1.1,0.6510349999999999,TJ,N2O,2.0,kg/TJ,1.3020699999999998,Naphtha combustion consumption by freight transport,AR-V,SESCO,annual,kg,4d23d23b-eca4-37dd-a4b3-d4c2b3e771bb +2010,Tucuman,II.1.1,3.63209,TJ,CO2,73300.0,kg/TJ,266232.197,Naphtha combustion consumption by freight transport,AR-T,SESCO,annual,kg,7201924a-d5b2-3e94-a936-92f4d0dd1b7a +2010,Tucuman,II.1.1,3.63209,TJ,CH4,0.5,kg/TJ,1.816045,Naphtha combustion consumption by freight transport,AR-T,SESCO,annual,kg,cbbbb36f-bd6e-3ef5-b158-9837d367bb91 +2010,Tucuman,II.1.1,3.63209,TJ,N2O,2.0,kg/TJ,7.26418,Naphtha combustion consumption by freight transport,AR-T,SESCO,annual,kg,89861fd0-fd5b-3724-928e-716e2cb14534 +2010,Buenos Aires,II.1.1,149.94364,TJ,CO2,73300.0,kg/TJ,10990868.811999999,Naphtha combustion consumption by freight transport,AR-B,SESCO,annual,kg,1c0fc7f9-9eba-38da-b4e9-f45134646532 +2010,Buenos Aires,II.1.1,149.94364,TJ,CH4,0.5,kg/TJ,74.97182,Naphtha combustion consumption by freight transport,AR-B,SESCO,annual,kg,024eefd7-613a-31ea-9f51-45fd0de01aeb +2010,Buenos Aires,II.1.1,149.94364,TJ,N2O,2.0,kg/TJ,299.88728,Naphtha combustion consumption by freight transport,AR-B,SESCO,annual,kg,13b12036-c73d-34a0-98de-b3c42a746159 +2010,Capital Federal,II.1.1,41.52918,TJ,CO2,73300.0,kg/TJ,3044088.894,Naphtha combustion consumption by freight transport,AR-C,SESCO,annual,kg,c2abe146-4794-30f5-8dec-94763155222c +2010,Capital Federal,II.1.1,41.52918,TJ,CH4,0.5,kg/TJ,20.76459,Naphtha combustion consumption by freight transport,AR-C,SESCO,annual,kg,feae707c-4646-32e2-8a04-bdbf58434bcd +2010,Capital Federal,II.1.1,41.52918,TJ,N2O,2.0,kg/TJ,83.05836,Naphtha combustion consumption by freight transport,AR-C,SESCO,annual,kg,3e8e381e-3a2e-30dc-bb0f-cc142b8d5dc9 +2010,Chaco,II.1.1,3.460765,TJ,CO2,73300.0,kg/TJ,253674.0745,Naphtha combustion consumption by freight transport,AR-H,SESCO,annual,kg,5820104b-c560-3765-a0f4-46b7d98811f4 +2010,Chaco,II.1.1,3.460765,TJ,CH4,0.5,kg/TJ,1.7303825,Naphtha combustion consumption by freight transport,AR-H,SESCO,annual,kg,edd767c3-4b5b-35c1-9247-5ed62496cb09 +2010,Chaco,II.1.1,3.460765,TJ,N2O,2.0,kg/TJ,6.92153,Naphtha combustion consumption by freight transport,AR-H,SESCO,annual,kg,fc762caf-7275-37f9-b61e-ef1e8b814e38 +2010,Chubut,II.1.1,3.15238,TJ,CO2,73300.0,kg/TJ,231069.454,Naphtha combustion consumption by freight transport,AR-U,SESCO,annual,kg,f47b2525-f1de-3020-b7cd-4dcfd2a01f23 +2010,Chubut,II.1.1,3.15238,TJ,CH4,0.5,kg/TJ,1.57619,Naphtha combustion consumption by freight transport,AR-U,SESCO,annual,kg,6c5b8903-2269-3f40-9df9-27a6ee13c327 +2010,Chubut,II.1.1,3.15238,TJ,N2O,2.0,kg/TJ,6.30476,Naphtha combustion consumption by freight transport,AR-U,SESCO,annual,kg,e7e60f56-d34d-319e-bb1f-b02d66c4d971 +2010,Corrientes,II.1.1,2.6041399999999997,TJ,CO2,73300.0,kg/TJ,190883.46199999997,Naphtha combustion consumption by freight transport,AR-W,SESCO,annual,kg,4ce53e41-71a8-3ec0-ba5e-e7d313b6de47 +2010,Corrientes,II.1.1,2.6041399999999997,TJ,CH4,0.5,kg/TJ,1.3020699999999998,Naphtha combustion consumption by freight transport,AR-W,SESCO,annual,kg,e1dde77f-d8b4-337e-98dc-6ae43ffa4f75 +2010,Corrientes,II.1.1,2.6041399999999997,TJ,N2O,2.0,kg/TJ,5.208279999999999,Naphtha combustion consumption by freight transport,AR-W,SESCO,annual,kg,d91e3ed7-c4ec-3074-82ba-18e6a56e68b9 +2010,Córdoba,II.1.1,12.917905,TJ,CO2,73300.0,kg/TJ,946882.4365,Naphtha combustion consumption by freight transport,AR-X,SESCO,annual,kg,78b985e7-210d-3899-829c-03dd1107ea19 +2010,Córdoba,II.1.1,12.917905,TJ,CH4,0.5,kg/TJ,6.4589525,Naphtha combustion consumption by freight transport,AR-X,SESCO,annual,kg,b04bf8fb-085e-347e-bb31-a6291c6cc15b +2010,Córdoba,II.1.1,12.917905,TJ,N2O,2.0,kg/TJ,25.83581,Naphtha combustion consumption by freight transport,AR-X,SESCO,annual,kg,e04a4a13-b32a-3e3f-9284-5a6d6c9a6677 +2010,Entre Rios,II.1.1,5.448135,TJ,CO2,73300.0,kg/TJ,399348.2955,Naphtha combustion consumption by freight transport,AR-E,SESCO,annual,kg,a0e48d0f-8434-3eb2-85b3-f06362c5c547 +2010,Entre Rios,II.1.1,5.448135,TJ,CH4,0.5,kg/TJ,2.7240675,Naphtha combustion consumption by freight transport,AR-E,SESCO,annual,kg,c34693ad-d273-3f9e-b97a-055e78f9925c +2010,Entre Rios,II.1.1,5.448135,TJ,N2O,2.0,kg/TJ,10.89627,Naphtha combustion consumption by freight transport,AR-E,SESCO,annual,kg,f30d6095-305e-3b66-b20b-567f14cb80de +2010,Formosa,II.1.1,0.376915,TJ,CO2,73300.0,kg/TJ,27627.8695,Naphtha combustion consumption by freight transport,AR-P,SESCO,annual,kg,494188e2-f3ea-33d0-9256-2ee3048948c1 +2010,Formosa,II.1.1,0.376915,TJ,CH4,0.5,kg/TJ,0.1884575,Naphtha combustion consumption by freight transport,AR-P,SESCO,annual,kg,257249dc-7817-379f-9417-ac1e2903461e +2010,Formosa,II.1.1,0.376915,TJ,N2O,2.0,kg/TJ,0.75383,Naphtha combustion consumption by freight transport,AR-P,SESCO,annual,kg,5deb5508-c2c1-333c-aaef-3af41f9cafe6 +2010,Jujuy,II.1.1,0.20559,TJ,CO2,73300.0,kg/TJ,15069.747,Naphtha combustion consumption by freight transport,AR-Y,SESCO,annual,kg,ec59d807-a33f-3efc-97ef-f437ccbef84f +2010,Jujuy,II.1.1,0.20559,TJ,CH4,0.5,kg/TJ,0.102795,Naphtha combustion consumption by freight transport,AR-Y,SESCO,annual,kg,547d3624-21f5-37c2-8868-3f0092459074 +2010,Jujuy,II.1.1,0.20559,TJ,N2O,2.0,kg/TJ,0.41118,Naphtha combustion consumption by freight transport,AR-Y,SESCO,annual,kg,e2e49c68-6a56-36a4-a8a3-e5ee6517cce6 +2010,La Pampa,II.1.1,1.50766,TJ,CO2,73300.0,kg/TJ,110511.478,Naphtha combustion consumption by freight transport,AR-L,SESCO,annual,kg,8eae10b5-992e-39a8-b20e-21837f84242d +2010,La Pampa,II.1.1,1.50766,TJ,CH4,0.5,kg/TJ,0.75383,Naphtha combustion consumption by freight transport,AR-L,SESCO,annual,kg,b7cbe52b-4981-3b61-a6e0-6a6b50a3f7c2 +2010,La Pampa,II.1.1,1.50766,TJ,N2O,2.0,kg/TJ,3.01532,Naphtha combustion consumption by freight transport,AR-L,SESCO,annual,kg,706f99fe-c64d-346d-bae8-8d7112c6b9e6 +2010,La Rioja,II.1.1,0.376915,TJ,CO2,73300.0,kg/TJ,27627.8695,Naphtha combustion consumption by freight transport,AR-F,SESCO,annual,kg,b2baee71-b013-3181-976b-bf34533c05fa +2010,La Rioja,II.1.1,0.376915,TJ,CH4,0.5,kg/TJ,0.1884575,Naphtha combustion consumption by freight transport,AR-F,SESCO,annual,kg,4f14cccf-5006-31be-bef9-39d9c759955b +2010,La Rioja,II.1.1,0.376915,TJ,N2O,2.0,kg/TJ,0.75383,Naphtha combustion consumption by freight transport,AR-F,SESCO,annual,kg,de57740d-29dd-3783-8f59-53ed7ab02ce0 +2010,Mendoza,II.1.1,10.587885,TJ,CO2,73300.0,kg/TJ,776091.9705,Naphtha combustion consumption by freight transport,AR-M,SESCO,annual,kg,93c5ab08-5e12-302a-828c-cf5f249dbd4c +2010,Mendoza,II.1.1,10.587885,TJ,CH4,0.5,kg/TJ,5.2939425,Naphtha combustion consumption by freight transport,AR-M,SESCO,annual,kg,b047e062-6e09-329b-ba6f-8e0e6a608564 +2010,Mendoza,II.1.1,10.587885,TJ,N2O,2.0,kg/TJ,21.17577,Naphtha combustion consumption by freight transport,AR-M,SESCO,annual,kg,862f6173-d343-365e-a0fd-693ba11758fe +2010,Misiones,II.1.1,1.9873699999999999,TJ,CO2,73300.0,kg/TJ,145674.221,Naphtha combustion consumption by freight transport,AR-N,SESCO,annual,kg,7cd84f4b-2ed0-3bef-8918-cca0e9344a39 +2010,Misiones,II.1.1,1.9873699999999999,TJ,CH4,0.5,kg/TJ,0.9936849999999999,Naphtha combustion consumption by freight transport,AR-N,SESCO,annual,kg,3e067395-2633-347a-9849-1cd8c1943861 +2010,Misiones,II.1.1,1.9873699999999999,TJ,N2O,2.0,kg/TJ,3.9747399999999997,Naphtha combustion consumption by freight transport,AR-N,SESCO,annual,kg,a39e21ca-fdd1-3292-89e2-7395076b2e16 +2010,Neuquén,II.1.1,3.49503,TJ,CO2,73300.0,kg/TJ,256185.699,Naphtha combustion consumption by freight transport,AR-Q,SESCO,annual,kg,1d8515e7-fcca-3a4d-8c60-827791328a62 +2010,Neuquén,II.1.1,3.49503,TJ,CH4,0.5,kg/TJ,1.747515,Naphtha combustion consumption by freight transport,AR-Q,SESCO,annual,kg,47ac4ece-480f-3930-8ee2-2e413def5e5b +2010,Neuquén,II.1.1,3.49503,TJ,N2O,2.0,kg/TJ,6.99006,Naphtha combustion consumption by freight transport,AR-Q,SESCO,annual,kg,01b4c15c-e778-37c2-a5d0-d4f9b2782734 +2010,Rio Negro,II.1.1,2.3985499999999997,TJ,CO2,73300.0,kg/TJ,175813.71499999997,Naphtha combustion consumption by freight transport,AR-R,SESCO,annual,kg,156da97f-4431-31b8-8148-9afba8b39fdd +2010,Rio Negro,II.1.1,2.3985499999999997,TJ,CH4,0.5,kg/TJ,1.1992749999999999,Naphtha combustion consumption by freight transport,AR-R,SESCO,annual,kg,5928f8aa-411b-3b83-9b58-6a2cf0df3eca +2010,Rio Negro,II.1.1,2.3985499999999997,TJ,N2O,2.0,kg/TJ,4.7970999999999995,Naphtha combustion consumption by freight transport,AR-R,SESCO,annual,kg,7d82412b-f4f5-305f-a387-25d6402260fb +2010,Salta,II.1.1,1.9873699999999999,TJ,CO2,73300.0,kg/TJ,145674.221,Naphtha combustion consumption by freight transport,AR-A,SESCO,annual,kg,75878c06-bab5-3253-8d91-7519690a352a +2010,Salta,II.1.1,1.9873699999999999,TJ,CH4,0.5,kg/TJ,0.9936849999999999,Naphtha combustion consumption by freight transport,AR-A,SESCO,annual,kg,fb27434e-b8dd-345c-936c-b64d7d0d4f25 +2010,Salta,II.1.1,1.9873699999999999,TJ,N2O,2.0,kg/TJ,3.9747399999999997,Naphtha combustion consumption by freight transport,AR-A,SESCO,annual,kg,08a69ab2-d9f2-39d6-8b91-5c53d1c3b98f +2010,San Juan,II.1.1,1.1992749999999999,TJ,CO2,73300.0,kg/TJ,87906.85749999998,Naphtha combustion consumption by freight transport,AR-J,SESCO,annual,kg,bb7fbc6d-0a96-399c-95a0-ef06a96b60d5 +2010,San Juan,II.1.1,1.1992749999999999,TJ,CH4,0.5,kg/TJ,0.5996374999999999,Naphtha combustion consumption by freight transport,AR-J,SESCO,annual,kg,c7d9603e-36ba-3e21-acee-ae29b9f17d6d +2010,San Juan,II.1.1,1.1992749999999999,TJ,N2O,2.0,kg/TJ,2.3985499999999997,Naphtha combustion consumption by freight transport,AR-J,SESCO,annual,kg,98d53413-e0ae-3bce-8948-9184e10ab00d +2010,San Luis,II.1.1,1.473395,TJ,CO2,73300.0,kg/TJ,107999.8535,Naphtha combustion consumption by freight transport,AR-D,SESCO,annual,kg,8d5e2a64-979b-3611-bb96-efa759b2fd43 +2010,San Luis,II.1.1,1.473395,TJ,CH4,0.5,kg/TJ,0.7366975,Naphtha combustion consumption by freight transport,AR-D,SESCO,annual,kg,75879dc0-c01a-3a57-bfc1-07eebbf8c2fb +2010,San Luis,II.1.1,1.473395,TJ,N2O,2.0,kg/TJ,2.94679,Naphtha combustion consumption by freight transport,AR-D,SESCO,annual,kg,4c584b21-4a92-385c-9b10-65ad436471c9 +2010,Santa Cruz,II.1.1,0.719565,TJ,CO2,73300.0,kg/TJ,52744.1145,Naphtha combustion consumption by freight transport,AR-Z,SESCO,annual,kg,4fef5eab-cb46-37d5-ad03-08097d6d4a43 +2010,Santa Cruz,II.1.1,0.719565,TJ,CH4,0.5,kg/TJ,0.3597825,Naphtha combustion consumption by freight transport,AR-Z,SESCO,annual,kg,bec25cef-6dba-3900-b00d-7b44480be72b +2010,Santa Cruz,II.1.1,0.719565,TJ,N2O,2.0,kg/TJ,1.43913,Naphtha combustion consumption by freight transport,AR-Z,SESCO,annual,kg,6c2707e1-1319-3ac7-b88b-22b4bcc9e7b7 +2010,Santa Fe,II.1.1,19.907965,TJ,CO2,73300.0,kg/TJ,1459253.8345,Naphtha combustion consumption by freight transport,AR-S,SESCO,annual,kg,871433f2-f3a3-3db4-a8a9-3f6113efd260 +2010,Santa Fe,II.1.1,19.907965,TJ,CH4,0.5,kg/TJ,9.9539825,Naphtha combustion consumption by freight transport,AR-S,SESCO,annual,kg,ad807e90-fd19-3057-88b9-2d2535e8abaa +2010,Santa Fe,II.1.1,19.907965,TJ,N2O,2.0,kg/TJ,39.81593,Naphtha combustion consumption by freight transport,AR-S,SESCO,annual,kg,36e47877-693c-34ac-a797-6b8bbabbc669 +2010,Santiago del Estero,II.1.1,0.6853,TJ,CO2,73300.0,kg/TJ,50232.49,Naphtha combustion consumption by freight transport,AR-G,SESCO,annual,kg,aa6df591-702e-369c-bc9c-98b771232b7e +2010,Santiago del Estero,II.1.1,0.6853,TJ,CH4,0.5,kg/TJ,0.34265,Naphtha combustion consumption by freight transport,AR-G,SESCO,annual,kg,5031b853-4992-321c-94fd-6ddb6986e59c +2010,Santiago del Estero,II.1.1,0.6853,TJ,N2O,2.0,kg/TJ,1.3706,Naphtha combustion consumption by freight transport,AR-G,SESCO,annual,kg,066fbf25-de71-3a97-bf52-bae46680ce20 +2010,Tucuman,II.1.1,2.706935,TJ,CO2,73300.0,kg/TJ,198418.33550000002,Naphtha combustion consumption by freight transport,AR-T,SESCO,annual,kg,c650fc7c-9dfd-3dfd-89f2-df8f0b561b03 +2010,Tucuman,II.1.1,2.706935,TJ,CH4,0.5,kg/TJ,1.3534675,Naphtha combustion consumption by freight transport,AR-T,SESCO,annual,kg,cda1f1e9-fce1-34cb-8696-262d2af36bae +2010,Tucuman,II.1.1,2.706935,TJ,N2O,2.0,kg/TJ,5.41387,Naphtha combustion consumption by freight transport,AR-T,SESCO,annual,kg,2250475d-de87-3797-aeb9-26274c9ab285 +2010,Buenos Aires,II.1.1,12384.60888,TJ,CO2,74100.0,kg/TJ,917699518.008,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,706b3455-dc4d-3e10-b83e-06ef54db7ff0 +2010,Buenos Aires,II.1.1,12384.60888,TJ,CH4,3.9,kg/TJ,48299.974632,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,51c5f5be-d21e-3854-a82d-cb85e0afb95d +2010,Buenos Aires,II.1.1,12384.60888,TJ,N2O,3.9,kg/TJ,48299.974632,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,51c5f5be-d21e-3854-a82d-cb85e0afb95d +2010,Capital Federal,II.1.1,3183.50844,TJ,CO2,74100.0,kg/TJ,235897975.404,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,34c45bff-1a1a-36ba-b9d6-379b5a8b0e8b +2010,Capital Federal,II.1.1,3183.50844,TJ,CH4,3.9,kg/TJ,12415.682916,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,8b40346c-1030-32b3-be9e-7840316b53b9 +2010,Capital Federal,II.1.1,3183.50844,TJ,N2O,3.9,kg/TJ,12415.682916,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,8b40346c-1030-32b3-be9e-7840316b53b9 +2010,Catamarca,II.1.1,151.52339999999998,TJ,CO2,74100.0,kg/TJ,11227883.94,Gas Oil combustion consumption by public passenger transport,AR-K,SESCO,annual,kg,1384d7a0-cd0f-3388-b62d-e30108d068fb +2010,Catamarca,II.1.1,151.52339999999998,TJ,CH4,3.9,kg/TJ,590.9412599999999,Gas Oil combustion consumption by public passenger transport,AR-K,SESCO,annual,kg,710e0dd1-acd1-3037-9b08-e548a57d793f +2010,Catamarca,II.1.1,151.52339999999998,TJ,N2O,3.9,kg/TJ,590.9412599999999,Gas Oil combustion consumption by public passenger transport,AR-K,SESCO,annual,kg,710e0dd1-acd1-3037-9b08-e548a57d793f +2010,Chaco,II.1.1,582.2182799999999,TJ,CO2,74100.0,kg/TJ,43142374.54799999,Gas Oil combustion consumption by public passenger transport,AR-H,SESCO,annual,kg,38464fee-c857-3f61-8c65-a37bd9051892 +2010,Chaco,II.1.1,582.2182799999999,TJ,CH4,3.9,kg/TJ,2270.6512919999996,Gas Oil combustion consumption by public passenger transport,AR-H,SESCO,annual,kg,505905e1-223c-3882-8a1a-f807a23cd593 +2010,Chaco,II.1.1,582.2182799999999,TJ,N2O,3.9,kg/TJ,2270.6512919999996,Gas Oil combustion consumption by public passenger transport,AR-H,SESCO,annual,kg,505905e1-223c-3882-8a1a-f807a23cd593 +2010,Chubut,II.1.1,265.3014,TJ,CO2,74100.0,kg/TJ,19658833.74,Gas Oil combustion consumption by public passenger transport,AR-U,SESCO,annual,kg,d9acd73b-12d3-30fa-8763-005fe7df913a +2010,Chubut,II.1.1,265.3014,TJ,CH4,3.9,kg/TJ,1034.67546,Gas Oil combustion consumption by public passenger transport,AR-U,SESCO,annual,kg,d7252140-7f27-3c12-94ad-9d3502dcf084 +2010,Chubut,II.1.1,265.3014,TJ,N2O,3.9,kg/TJ,1034.67546,Gas Oil combustion consumption by public passenger transport,AR-U,SESCO,annual,kg,d7252140-7f27-3c12-94ad-9d3502dcf084 +2010,Corrientes,II.1.1,573.36888,TJ,CO2,74100.0,kg/TJ,42486634.008,Gas Oil combustion consumption by public passenger transport,AR-W,SESCO,annual,kg,7d743c41-ae3e-3a0e-adfb-51bfccf49bee +2010,Corrientes,II.1.1,573.36888,TJ,CH4,3.9,kg/TJ,2236.1386319999997,Gas Oil combustion consumption by public passenger transport,AR-W,SESCO,annual,kg,4d11dd15-8138-3d7f-9acd-4c0f3b06235a +2010,Corrientes,II.1.1,573.36888,TJ,N2O,3.9,kg/TJ,2236.1386319999997,Gas Oil combustion consumption by public passenger transport,AR-W,SESCO,annual,kg,4d11dd15-8138-3d7f-9acd-4c0f3b06235a +2010,Córdoba,II.1.1,2941.5044399999997,TJ,CO2,74100.0,kg/TJ,217965479.00399998,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,8f9c1b49-40cb-3b02-994a-fcd80917b704 +2010,Córdoba,II.1.1,2941.5044399999997,TJ,CH4,3.9,kg/TJ,11471.867315999998,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,c1a66e88-e69b-38c9-9462-a8cd9eaa566a +2010,Córdoba,II.1.1,2941.5044399999997,TJ,N2O,3.9,kg/TJ,11471.867315999998,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,c1a66e88-e69b-38c9-9462-a8cd9eaa566a +2010,Entre Rios,II.1.1,465.08112,TJ,CO2,74100.0,kg/TJ,34462510.992,Gas Oil combustion consumption by public passenger transport,AR-E,SESCO,annual,kg,6498974c-6e83-358c-9015-f3cf30522f22 +2010,Entre Rios,II.1.1,465.08112,TJ,CH4,3.9,kg/TJ,1813.816368,Gas Oil combustion consumption by public passenger transport,AR-E,SESCO,annual,kg,33e19798-3ba8-32bf-9f92-f6e0bb8f0b35 +2010,Entre Rios,II.1.1,465.08112,TJ,N2O,3.9,kg/TJ,1813.816368,Gas Oil combustion consumption by public passenger transport,AR-E,SESCO,annual,kg,33e19798-3ba8-32bf-9f92-f6e0bb8f0b35 +2010,Formosa,II.1.1,83.03988,TJ,CO2,74100.0,kg/TJ,6153255.108,Gas Oil combustion consumption by public passenger transport,AR-P,SESCO,annual,kg,ff085f77-7713-3862-89b6-e17efa9b7c73 +2010,Formosa,II.1.1,83.03988,TJ,CH4,3.9,kg/TJ,323.855532,Gas Oil combustion consumption by public passenger transport,AR-P,SESCO,annual,kg,34f2d5e2-a692-3732-8ec8-6128363a519b +2010,Formosa,II.1.1,83.03988,TJ,N2O,3.9,kg/TJ,323.855532,Gas Oil combustion consumption by public passenger transport,AR-P,SESCO,annual,kg,34f2d5e2-a692-3732-8ec8-6128363a519b +2010,Jujuy,II.1.1,696.5380799999999,TJ,CO2,74100.0,kg/TJ,51613471.72799999,Gas Oil combustion consumption by public passenger transport,AR-Y,SESCO,annual,kg,8f63a586-40fc-326a-ad01-3ba3916291d0 +2010,Jujuy,II.1.1,696.5380799999999,TJ,CH4,3.9,kg/TJ,2716.4985119999997,Gas Oil combustion consumption by public passenger transport,AR-Y,SESCO,annual,kg,9104bb9c-37ea-3beb-a5b0-9496421ef8e1 +2010,Jujuy,II.1.1,696.5380799999999,TJ,N2O,3.9,kg/TJ,2716.4985119999997,Gas Oil combustion consumption by public passenger transport,AR-Y,SESCO,annual,kg,9104bb9c-37ea-3beb-a5b0-9496421ef8e1 +2010,La Pampa,II.1.1,148.85052,TJ,CO2,74100.0,kg/TJ,11029823.532,Gas Oil combustion consumption by public passenger transport,AR-L,SESCO,annual,kg,c8bad5c9-da5f-35f4-8855-7e3d99a3bfa4 +2010,La Pampa,II.1.1,148.85052,TJ,CH4,3.9,kg/TJ,580.517028,Gas Oil combustion consumption by public passenger transport,AR-L,SESCO,annual,kg,c62da93c-3b11-3466-ab28-5050a2f63444 +2010,La Pampa,II.1.1,148.85052,TJ,N2O,3.9,kg/TJ,580.517028,Gas Oil combustion consumption by public passenger transport,AR-L,SESCO,annual,kg,c62da93c-3b11-3466-ab28-5050a2f63444 +2010,La Rioja,II.1.1,162.32327999999998,TJ,CO2,74100.0,kg/TJ,12028155.047999999,Gas Oil combustion consumption by public passenger transport,AR-F,SESCO,annual,kg,96be2eb2-6b68-3dcd-abc1-9bd844e1b881 +2010,La Rioja,II.1.1,162.32327999999998,TJ,CH4,3.9,kg/TJ,633.0607919999999,Gas Oil combustion consumption by public passenger transport,AR-F,SESCO,annual,kg,fb2f48d5-b05a-3161-80ec-247027f14a5a +2010,La Rioja,II.1.1,162.32327999999998,TJ,N2O,3.9,kg/TJ,633.0607919999999,Gas Oil combustion consumption by public passenger transport,AR-F,SESCO,annual,kg,fb2f48d5-b05a-3161-80ec-247027f14a5a +2010,Mendoza,II.1.1,2112.87552,TJ,CO2,74100.0,kg/TJ,156564076.032,Gas Oil combustion consumption by public passenger transport,AR-M,SESCO,annual,kg,ec5b3511-a55a-343a-acbc-d7c24f28daa9 +2010,Mendoza,II.1.1,2112.87552,TJ,CH4,3.9,kg/TJ,8240.214528,Gas Oil combustion consumption by public passenger transport,AR-M,SESCO,annual,kg,7597e62a-2083-32a2-ab8c-447f0fd4ac0a +2010,Mendoza,II.1.1,2112.87552,TJ,N2O,3.9,kg/TJ,8240.214528,Gas Oil combustion consumption by public passenger transport,AR-M,SESCO,annual,kg,7597e62a-2083-32a2-ab8c-447f0fd4ac0a +2010,Misiones,II.1.1,828.88176,TJ,CO2,74100.0,kg/TJ,61420138.416,Gas Oil combustion consumption by public passenger transport,AR-N,SESCO,annual,kg,cd881edc-f507-3b05-a0c4-2b2cf086c39b +2010,Misiones,II.1.1,828.88176,TJ,CH4,3.9,kg/TJ,3232.638864,Gas Oil combustion consumption by public passenger transport,AR-N,SESCO,annual,kg,ed584f40-ee99-3080-ab98-42edaaad38e3 +2010,Misiones,II.1.1,828.88176,TJ,N2O,3.9,kg/TJ,3232.638864,Gas Oil combustion consumption by public passenger transport,AR-N,SESCO,annual,kg,ed584f40-ee99-3080-ab98-42edaaad38e3 +2010,Neuquén,II.1.1,472.88304,TJ,CO2,74100.0,kg/TJ,35040633.264,Gas Oil combustion consumption by public passenger transport,AR-Q,SESCO,annual,kg,c78c47a0-5b66-3ecb-b49f-d66b47abcfce +2010,Neuquén,II.1.1,472.88304,TJ,CH4,3.9,kg/TJ,1844.2438559999998,Gas Oil combustion consumption by public passenger transport,AR-Q,SESCO,annual,kg,3d5a2b7c-cdc0-352c-9511-43fceb25b784 +2010,Neuquén,II.1.1,472.88304,TJ,N2O,3.9,kg/TJ,1844.2438559999998,Gas Oil combustion consumption by public passenger transport,AR-Q,SESCO,annual,kg,3d5a2b7c-cdc0-352c-9511-43fceb25b784 +2010,Rio Negro,II.1.1,354.44556,TJ,CO2,74100.0,kg/TJ,26264415.996,Gas Oil combustion consumption by public passenger transport,AR-R,SESCO,annual,kg,66bb1808-e4b5-38f4-98ed-1e1c1efd7093 +2010,Rio Negro,II.1.1,354.44556,TJ,CH4,3.9,kg/TJ,1382.337684,Gas Oil combustion consumption by public passenger transport,AR-R,SESCO,annual,kg,c7f002a9-1605-3cdf-89e9-f01e71c04676 +2010,Rio Negro,II.1.1,354.44556,TJ,N2O,3.9,kg/TJ,1382.337684,Gas Oil combustion consumption by public passenger transport,AR-R,SESCO,annual,kg,c7f002a9-1605-3cdf-89e9-f01e71c04676 +2010,Salta,II.1.1,1047.62448,TJ,CO2,74100.0,kg/TJ,77628973.968,Gas Oil combustion consumption by public passenger transport,AR-A,SESCO,annual,kg,90fcb19a-958c-3609-a540-be10eb7b3681 +2010,Salta,II.1.1,1047.62448,TJ,CH4,3.9,kg/TJ,4085.735472,Gas Oil combustion consumption by public passenger transport,AR-A,SESCO,annual,kg,b3055f31-5fc1-3661-987c-835d93751aa8 +2010,Salta,II.1.1,1047.62448,TJ,N2O,3.9,kg/TJ,4085.735472,Gas Oil combustion consumption by public passenger transport,AR-A,SESCO,annual,kg,b3055f31-5fc1-3661-987c-835d93751aa8 +2010,San Juan,II.1.1,558.6319199999999,TJ,CO2,74100.0,kg/TJ,41394625.27199999,Gas Oil combustion consumption by public passenger transport,AR-J,SESCO,annual,kg,0c42badf-6e55-3693-b78a-92d44de2f7e4 +2010,San Juan,II.1.1,558.6319199999999,TJ,CH4,3.9,kg/TJ,2178.6644879999994,Gas Oil combustion consumption by public passenger transport,AR-J,SESCO,annual,kg,5d271cc6-1d69-3907-8b45-0979b2142dda +2010,San Juan,II.1.1,558.6319199999999,TJ,N2O,3.9,kg/TJ,2178.6644879999994,Gas Oil combustion consumption by public passenger transport,AR-J,SESCO,annual,kg,5d271cc6-1d69-3907-8b45-0979b2142dda +2010,San Luis,II.1.1,184.60932,TJ,CO2,74100.0,kg/TJ,13679550.612,Gas Oil combustion consumption by public passenger transport,AR-D,SESCO,annual,kg,0b161e61-ffb3-3326-a11d-e2f9bc0013f4 +2010,San Luis,II.1.1,184.60932,TJ,CH4,3.9,kg/TJ,719.9763479999999,Gas Oil combustion consumption by public passenger transport,AR-D,SESCO,annual,kg,34509a13-1d88-3ee6-a056-e23604f1ef93 +2010,San Luis,II.1.1,184.60932,TJ,N2O,3.9,kg/TJ,719.9763479999999,Gas Oil combustion consumption by public passenger transport,AR-D,SESCO,annual,kg,34509a13-1d88-3ee6-a056-e23604f1ef93 +2010,Santa Cruz,II.1.1,143.7576,TJ,CO2,74100.0,kg/TJ,10652438.16,Gas Oil combustion consumption by public passenger transport,AR-Z,SESCO,annual,kg,5388d8c2-53b5-3b02-8e37-9853a88e018b +2010,Santa Cruz,II.1.1,143.7576,TJ,CH4,3.9,kg/TJ,560.65464,Gas Oil combustion consumption by public passenger transport,AR-Z,SESCO,annual,kg,bba13126-64dc-368e-a7ca-ba13b1b08163 +2010,Santa Cruz,II.1.1,143.7576,TJ,N2O,3.9,kg/TJ,560.65464,Gas Oil combustion consumption by public passenger transport,AR-Z,SESCO,annual,kg,bba13126-64dc-368e-a7ca-ba13b1b08163 +2010,Santa Fe,II.1.1,1572.80928,TJ,CO2,74100.0,kg/TJ,116545167.648,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,5e5353ae-b292-3728-88c2-f6ac1f011377 +2010,Santa Fe,II.1.1,1572.80928,TJ,CH4,3.9,kg/TJ,6133.956192,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,d0685512-8017-3349-9adf-ae9fcaa77a45 +2010,Santa Fe,II.1.1,1572.80928,TJ,N2O,3.9,kg/TJ,6133.956192,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,d0685512-8017-3349-9adf-ae9fcaa77a45 +2010,Santiago del Estero,II.1.1,430.11696,TJ,CO2,74100.0,kg/TJ,31871666.736,Gas Oil combustion consumption by public passenger transport,AR-G,SESCO,annual,kg,d6bc1cb2-e143-393d-9b81-f91ed66a5960 +2010,Santiago del Estero,II.1.1,430.11696,TJ,CH4,3.9,kg/TJ,1677.456144,Gas Oil combustion consumption by public passenger transport,AR-G,SESCO,annual,kg,69a96136-9245-37a7-a890-7fcc72ee1ede +2010,Santiago del Estero,II.1.1,430.11696,TJ,N2O,3.9,kg/TJ,1677.456144,Gas Oil combustion consumption by public passenger transport,AR-G,SESCO,annual,kg,69a96136-9245-37a7-a890-7fcc72ee1ede +2010,Tierra del Fuego,II.1.1,31.53276,TJ,CO2,74100.0,kg/TJ,2336577.516,Gas Oil combustion consumption by public passenger transport,AR-V,SESCO,annual,kg,a3757712-3e00-314b-9a18-6bf591454581 +2010,Tierra del Fuego,II.1.1,31.53276,TJ,CH4,3.9,kg/TJ,122.977764,Gas Oil combustion consumption by public passenger transport,AR-V,SESCO,annual,kg,61c44f4f-cf1d-363e-bc18-fc76f82036b4 +2010,Tierra del Fuego,II.1.1,31.53276,TJ,N2O,3.9,kg/TJ,122.977764,Gas Oil combustion consumption by public passenger transport,AR-V,SESCO,annual,kg,61c44f4f-cf1d-363e-bc18-fc76f82036b4 +2010,Tucuman,II.1.1,1267.9926,TJ,CO2,74100.0,kg/TJ,93958251.66,Gas Oil combustion consumption by public passenger transport,AR-T,SESCO,annual,kg,bb504b83-4673-3cd6-a928-e90c32082741 +2010,Tucuman,II.1.1,1267.9926,TJ,CH4,3.9,kg/TJ,4945.17114,Gas Oil combustion consumption by public passenger transport,AR-T,SESCO,annual,kg,9bb0ef38-fe48-33e8-a854-58c202a4729c +2010,Tucuman,II.1.1,1267.9926,TJ,N2O,3.9,kg/TJ,4945.17114,Gas Oil combustion consumption by public passenger transport,AR-T,SESCO,annual,kg,9bb0ef38-fe48-33e8-a854-58c202a4729c +2010,Buenos Aires,II.1.1,3.53976,TJ,CO2,74100.0,kg/TJ,262296.21599999996,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,d0c90f39-cbcc-3e6d-9ba9-24d4410f9d33 +2010,Buenos Aires,II.1.1,3.53976,TJ,CH4,3.9,kg/TJ,13.805063999999998,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,02e6781a-926c-3534-a05c-0b82cff0ac1c +2010,Buenos Aires,II.1.1,3.53976,TJ,N2O,3.9,kg/TJ,13.805063999999998,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,02e6781a-926c-3534-a05c-0b82cff0ac1c +2010,Capital Federal,II.1.1,0.303408,TJ,CO2,74100.0,kg/TJ,22482.5328,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,6d9e1a49-7714-3976-bba5-11e784f584e1 +2010,Capital Federal,II.1.1,0.303408,TJ,CH4,3.9,kg/TJ,1.1832912,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,b8275c77-01fa-3a3d-9958-db772566c335 +2010,Capital Federal,II.1.1,0.303408,TJ,N2O,3.9,kg/TJ,1.1832912,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,b8275c77-01fa-3a3d-9958-db772566c335 +2010,Chubut,II.1.1,0.33591600000000005,TJ,CO2,74100.0,kg/TJ,24891.375600000003,Gas Oil combustion consumption by public passenger transport,AR-U,SESCO,annual,kg,5082cec1-f844-3ae4-99f0-079956d6fc0a +2010,Chubut,II.1.1,0.33591600000000005,TJ,CH4,3.9,kg/TJ,1.3100724000000001,Gas Oil combustion consumption by public passenger transport,AR-U,SESCO,annual,kg,9311553d-67f3-3ac6-ac2a-3fc5d3e49708 +2010,Chubut,II.1.1,0.33591600000000005,TJ,N2O,3.9,kg/TJ,1.3100724000000001,Gas Oil combustion consumption by public passenger transport,AR-U,SESCO,annual,kg,9311553d-67f3-3ac6-ac2a-3fc5d3e49708 +2010,Corrientes,II.1.1,0.03612,TJ,CO2,74100.0,kg/TJ,2676.4919999999997,Gas Oil combustion consumption by public passenger transport,AR-W,SESCO,annual,kg,c5e118e1-115a-3af4-b7e8-aeef6af1e466 +2010,Corrientes,II.1.1,0.03612,TJ,CH4,3.9,kg/TJ,0.140868,Gas Oil combustion consumption by public passenger transport,AR-W,SESCO,annual,kg,fe070851-74ff-31b5-8b70-6122da117dd5 +2010,Corrientes,II.1.1,0.03612,TJ,N2O,3.9,kg/TJ,0.140868,Gas Oil combustion consumption by public passenger transport,AR-W,SESCO,annual,kg,fe070851-74ff-31b5-8b70-6122da117dd5 +2010,Córdoba,II.1.1,0.43344,TJ,CO2,74100.0,kg/TJ,32117.904,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,ccd5f9db-8161-346d-9201-c6059cc7752e +2010,Córdoba,II.1.1,0.43344,TJ,CH4,3.9,kg/TJ,1.690416,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,554ea7f7-14ed-35d7-b80d-798498353c6f +2010,Córdoba,II.1.1,0.43344,TJ,N2O,3.9,kg/TJ,1.690416,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,554ea7f7-14ed-35d7-b80d-798498353c6f +2010,Entre Rios,II.1.1,0.03612,TJ,CO2,74100.0,kg/TJ,2676.4919999999997,Gas Oil combustion consumption by public passenger transport,AR-E,SESCO,annual,kg,8a2ab565-8480-33cc-94b5-deeec94bbeed +2010,Entre Rios,II.1.1,0.03612,TJ,CH4,3.9,kg/TJ,0.140868,Gas Oil combustion consumption by public passenger transport,AR-E,SESCO,annual,kg,30287ab8-554a-3903-93ab-b6be9fc95809 +2010,Entre Rios,II.1.1,0.03612,TJ,N2O,3.9,kg/TJ,0.140868,Gas Oil combustion consumption by public passenger transport,AR-E,SESCO,annual,kg,30287ab8-554a-3903-93ab-b6be9fc95809 +2010,Jujuy,II.1.1,0.014447999999999999,TJ,CO2,74100.0,kg/TJ,1070.5968,Gas Oil combustion consumption by public passenger transport,AR-Y,SESCO,annual,kg,f3419e1c-f85d-38f1-a9c1-a6ef04a2cdda +2010,Jujuy,II.1.1,0.014447999999999999,TJ,CH4,3.9,kg/TJ,0.05634719999999999,Gas Oil combustion consumption by public passenger transport,AR-Y,SESCO,annual,kg,158560f9-0650-3754-8cb4-a3e13f5840fe +2010,Jujuy,II.1.1,0.014447999999999999,TJ,N2O,3.9,kg/TJ,0.05634719999999999,Gas Oil combustion consumption by public passenger transport,AR-Y,SESCO,annual,kg,158560f9-0650-3754-8cb4-a3e13f5840fe +2010,La Pampa,II.1.1,0.122808,TJ,CO2,74100.0,kg/TJ,9100.0728,Gas Oil combustion consumption by public passenger transport,AR-L,SESCO,annual,kg,ec818dca-537f-32ae-9de1-93a24811edbd +2010,La Pampa,II.1.1,0.122808,TJ,CH4,3.9,kg/TJ,0.47895119999999997,Gas Oil combustion consumption by public passenger transport,AR-L,SESCO,annual,kg,c621e44a-5f70-3196-8d8a-94d1a32a1476 +2010,La Pampa,II.1.1,0.122808,TJ,N2O,3.9,kg/TJ,0.47895119999999997,Gas Oil combustion consumption by public passenger transport,AR-L,SESCO,annual,kg,c621e44a-5f70-3196-8d8a-94d1a32a1476 +2010,Mendoza,II.1.1,0.34314,TJ,CO2,74100.0,kg/TJ,25426.674,Gas Oil combustion consumption by public passenger transport,AR-M,SESCO,annual,kg,4aaee44c-7ca3-3f0b-af59-988d3c8d95ba +2010,Mendoza,II.1.1,0.34314,TJ,CH4,3.9,kg/TJ,1.338246,Gas Oil combustion consumption by public passenger transport,AR-M,SESCO,annual,kg,f8084e86-983e-3396-ae22-f989e06ffcdf +2010,Mendoza,II.1.1,0.34314,TJ,N2O,3.9,kg/TJ,1.338246,Gas Oil combustion consumption by public passenger transport,AR-M,SESCO,annual,kg,f8084e86-983e-3396-ae22-f989e06ffcdf +2010,Neuquén,II.1.1,0.07224,TJ,CO2,74100.0,kg/TJ,5352.9839999999995,Gas Oil combustion consumption by public passenger transport,AR-Q,SESCO,annual,kg,b6be1176-369f-37e3-ba74-545b16711859 +2010,Neuquén,II.1.1,0.07224,TJ,CH4,3.9,kg/TJ,0.281736,Gas Oil combustion consumption by public passenger transport,AR-Q,SESCO,annual,kg,70557f9e-bcad-3fd5-86fd-f132e3468700 +2010,Neuquén,II.1.1,0.07224,TJ,N2O,3.9,kg/TJ,0.281736,Gas Oil combustion consumption by public passenger transport,AR-Q,SESCO,annual,kg,70557f9e-bcad-3fd5-86fd-f132e3468700 +2010,Rio Negro,II.1.1,0.375648,TJ,CO2,74100.0,kg/TJ,27835.516799999998,Gas Oil combustion consumption by public passenger transport,AR-R,SESCO,annual,kg,7e26b0ad-292a-3571-86d4-2e0e6b249243 +2010,Rio Negro,II.1.1,0.375648,TJ,CH4,3.9,kg/TJ,1.4650272,Gas Oil combustion consumption by public passenger transport,AR-R,SESCO,annual,kg,2d1e8184-4b4c-3234-bdaf-143549826526 +2010,Rio Negro,II.1.1,0.375648,TJ,N2O,3.9,kg/TJ,1.4650272,Gas Oil combustion consumption by public passenger transport,AR-R,SESCO,annual,kg,2d1e8184-4b4c-3234-bdaf-143549826526 +2010,San Luis,II.1.1,0.10836,TJ,CO2,74100.0,kg/TJ,8029.476,Gas Oil combustion consumption by public passenger transport,AR-D,SESCO,annual,kg,3600f67b-a0b2-345b-972d-249534285155 +2010,San Luis,II.1.1,0.10836,TJ,CH4,3.9,kg/TJ,0.422604,Gas Oil combustion consumption by public passenger transport,AR-D,SESCO,annual,kg,f86ab7df-63aa-30ba-b5cf-0c1359d6935a +2010,San Luis,II.1.1,0.10836,TJ,N2O,3.9,kg/TJ,0.422604,Gas Oil combustion consumption by public passenger transport,AR-D,SESCO,annual,kg,f86ab7df-63aa-30ba-b5cf-0c1359d6935a +2010,Santa Cruz,II.1.1,0.050567999999999995,TJ,CO2,74100.0,kg/TJ,3747.0887999999995,Gas Oil combustion consumption by public passenger transport,AR-Z,SESCO,annual,kg,3517372f-6831-3776-b725-c80bf84d945f +2010,Santa Cruz,II.1.1,0.050567999999999995,TJ,CH4,3.9,kg/TJ,0.19721519999999998,Gas Oil combustion consumption by public passenger transport,AR-Z,SESCO,annual,kg,596a3d53-1414-34de-a1f8-58e148e99f0e +2010,Santa Cruz,II.1.1,0.050567999999999995,TJ,N2O,3.9,kg/TJ,0.19721519999999998,Gas Oil combustion consumption by public passenger transport,AR-Z,SESCO,annual,kg,596a3d53-1414-34de-a1f8-58e148e99f0e +2010,Santa Fe,II.1.1,1.19196,TJ,CO2,74100.0,kg/TJ,88324.23599999999,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,944e2c7d-6f33-37c3-a03a-635baccfc51d +2010,Santa Fe,II.1.1,1.19196,TJ,CH4,3.9,kg/TJ,4.648643999999999,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,7faa324a-5f81-3c03-94e6-64335edd3c9d +2010,Santa Fe,II.1.1,1.19196,TJ,N2O,3.9,kg/TJ,4.648643999999999,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,7faa324a-5f81-3c03-94e6-64335edd3c9d +2010,Santiago del Estero,II.1.1,0.010836,TJ,CO2,74100.0,kg/TJ,802.9476,Gas Oil combustion consumption by public passenger transport,AR-G,SESCO,annual,kg,41b1152d-d09c-36b8-8bce-5e1bf854b324 +2010,Santiago del Estero,II.1.1,0.010836,TJ,CH4,3.9,kg/TJ,0.0422604,Gas Oil combustion consumption by public passenger transport,AR-G,SESCO,annual,kg,8d2530fc-20ef-3749-a9d9-4e76a2ef4433 +2010,Santiago del Estero,II.1.1,0.010836,TJ,N2O,3.9,kg/TJ,0.0422604,Gas Oil combustion consumption by public passenger transport,AR-G,SESCO,annual,kg,8d2530fc-20ef-3749-a9d9-4e76a2ef4433 +2010,Buenos Aires,II.1.1,1.2660917500000002,TJ,CO2,73300.0,kg/TJ,92804.525275,Naphtha combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,750746fb-96c6-3961-847f-cb7d2701c8ce +2010,Buenos Aires,II.1.1,1.2660917500000002,TJ,CH4,0.5,kg/TJ,0.6330458750000001,Naphtha combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,e5d05a24-8ae3-3f31-bcb7-3037b44496ab +2010,Buenos Aires,II.1.1,1.2660917500000002,TJ,N2O,2.0,kg/TJ,2.5321835000000004,Naphtha combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,7b03bc2f-6dc1-3ea5-9df8-0d511c29afeb +2010,Capital Federal,II.1.1,0.2014782,TJ,CO2,73300.0,kg/TJ,14768.35206,Naphtha combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,b40d5c0d-498e-39ee-9676-ec68e900032a +2010,Capital Federal,II.1.1,0.2014782,TJ,CH4,0.5,kg/TJ,0.1007391,Naphtha combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,19292cf1-58e7-3a29-bde4-e6d7ba05ac3b +2010,Capital Federal,II.1.1,0.2014782,TJ,N2O,2.0,kg/TJ,0.4029564,Naphtha combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,d2384590-8ef0-377d-87cd-802847815664 +2010,Chubut,II.1.1,0.075383,TJ,CO2,73300.0,kg/TJ,5525.5739,Naphtha combustion consumption by public passenger transport,AR-U,SESCO,annual,kg,e93beb8f-65a8-34cc-b7ba-3013bbe1c9d9 +2010,Chubut,II.1.1,0.075383,TJ,CH4,0.5,kg/TJ,0.0376915,Naphtha combustion consumption by public passenger transport,AR-U,SESCO,annual,kg,2630f4e8-7314-3efb-b095-164235268593 +2010,Chubut,II.1.1,0.075383,TJ,N2O,2.0,kg/TJ,0.150766,Naphtha combustion consumption by public passenger transport,AR-U,SESCO,annual,kg,cbb19ce4-94f6-3a20-b639-879f6916e0ad +2010,Córdoba,II.1.1,0.035978249999999996,TJ,CO2,73300.0,kg/TJ,2637.205725,Naphtha combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,c10840ac-6933-3550-a4d6-a2ac43139a09 +2010,Córdoba,II.1.1,0.035978249999999996,TJ,CH4,0.5,kg/TJ,0.017989124999999998,Naphtha combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,c0fbc072-6cdb-36b1-a533-984501f8ab2d +2010,Córdoba,II.1.1,0.035978249999999996,TJ,N2O,2.0,kg/TJ,0.07195649999999999,Naphtha combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,304a732a-333c-31c2-b335-d5d958d9ef49 +2010,Entre Rios,II.1.1,0.034265,TJ,CO2,73300.0,kg/TJ,2511.6245,Naphtha combustion consumption by public passenger transport,AR-E,SESCO,annual,kg,96cc6fc3-a281-3430-b801-cb1736102d3a +2010,Entre Rios,II.1.1,0.034265,TJ,CH4,0.5,kg/TJ,0.0171325,Naphtha combustion consumption by public passenger transport,AR-E,SESCO,annual,kg,90c92359-fae5-3ded-90cf-9048030bf4f5 +2010,Entre Rios,II.1.1,0.034265,TJ,N2O,2.0,kg/TJ,0.06853,Naphtha combustion consumption by public passenger transport,AR-E,SESCO,annual,kg,1dc0ab39-cd89-38e1-84d2-deaf7ec9461c +2010,La Pampa,II.1.1,0.021244299999999997,TJ,CO2,73300.0,kg/TJ,1557.2071899999999,Naphtha combustion consumption by public passenger transport,AR-L,SESCO,annual,kg,d5b6d325-9831-3a00-955e-20d943716359 +2010,La Pampa,II.1.1,0.021244299999999997,TJ,CH4,0.5,kg/TJ,0.010622149999999999,Naphtha combustion consumption by public passenger transport,AR-L,SESCO,annual,kg,7d30763c-ec64-366a-b0f3-2ca969f2f9a1 +2010,La Pampa,II.1.1,0.021244299999999997,TJ,N2O,2.0,kg/TJ,0.042488599999999994,Naphtha combustion consumption by public passenger transport,AR-L,SESCO,annual,kg,1399894e-b4bd-3f65-8543-ca8aecc3872a +2010,Mendoza,II.1.1,0.54172965,TJ,CO2,73300.0,kg/TJ,39708.783344999996,Naphtha combustion consumption by public passenger transport,AR-M,SESCO,annual,kg,1a0594d8-8844-3e73-8efc-7806d09a4381 +2010,Mendoza,II.1.1,0.54172965,TJ,CH4,0.5,kg/TJ,0.270864825,Naphtha combustion consumption by public passenger transport,AR-M,SESCO,annual,kg,91714bed-8b52-3440-8f08-0a1ce95734aa +2010,Mendoza,II.1.1,0.54172965,TJ,N2O,2.0,kg/TJ,1.0834593,Naphtha combustion consumption by public passenger transport,AR-M,SESCO,annual,kg,82eb4290-faf7-3d37-8e39-33c53cf5b1fc +2010,Misiones,II.1.1,0.12335399999999999,TJ,CO2,73300.0,kg/TJ,9041.848199999999,Naphtha combustion consumption by public passenger transport,AR-N,SESCO,annual,kg,28959713-c647-39aa-9c86-01efb961406e +2010,Misiones,II.1.1,0.12335399999999999,TJ,CH4,0.5,kg/TJ,0.061676999999999996,Naphtha combustion consumption by public passenger transport,AR-N,SESCO,annual,kg,e334804e-07c2-3d55-bd3b-91d8aadb6415 +2010,Misiones,II.1.1,0.12335399999999999,TJ,N2O,2.0,kg/TJ,0.24670799999999998,Naphtha combustion consumption by public passenger transport,AR-N,SESCO,annual,kg,274b9bd0-85d3-31d5-a8d9-c2a6c9926362 +2010,Neuquén,II.1.1,0.32140569999999996,TJ,CO2,73300.0,kg/TJ,23559.037809999998,Naphtha combustion consumption by public passenger transport,AR-Q,SESCO,annual,kg,a8fa15ae-9abc-358f-a5fe-f069f99ea9f0 +2010,Neuquén,II.1.1,0.32140569999999996,TJ,CH4,0.5,kg/TJ,0.16070284999999998,Naphtha combustion consumption by public passenger transport,AR-Q,SESCO,annual,kg,415297e9-a15f-3c32-aba9-0b1e6ba7b05e +2010,Neuquén,II.1.1,0.32140569999999996,TJ,N2O,2.0,kg/TJ,0.6428113999999999,Naphtha combustion consumption by public passenger transport,AR-Q,SESCO,annual,kg,bdb57eda-1b80-3def-abcc-7bb176d92c59 +2010,Rio Negro,II.1.1,0.5221986,TJ,CO2,73300.0,kg/TJ,38277.15738,Naphtha combustion consumption by public passenger transport,AR-R,SESCO,annual,kg,e1d6bf23-d048-3672-8635-f184c1c81ab1 +2010,Rio Negro,II.1.1,0.5221986,TJ,CH4,0.5,kg/TJ,0.2610993,Naphtha combustion consumption by public passenger transport,AR-R,SESCO,annual,kg,0630d3a0-fcb4-3bef-82cb-ae6744ef522e +2010,Rio Negro,II.1.1,0.5221986,TJ,N2O,2.0,kg/TJ,1.0443972,Naphtha combustion consumption by public passenger transport,AR-R,SESCO,annual,kg,3a93966f-1f70-3043-b27b-ce340ceb3874 +2010,San Juan,II.1.1,0.0013706,TJ,CO2,73300.0,kg/TJ,100.46498,Naphtha combustion consumption by public passenger transport,AR-J,SESCO,annual,kg,1a9de593-c0bb-3003-a2a3-e77f82810597 +2010,San Juan,II.1.1,0.0013706,TJ,CH4,0.5,kg/TJ,0.0006853,Naphtha combustion consumption by public passenger transport,AR-J,SESCO,annual,kg,f6c788a9-1d0e-3c2e-b180-cd404865a8a1 +2010,San Juan,II.1.1,0.0013706,TJ,N2O,2.0,kg/TJ,0.0027412,Naphtha combustion consumption by public passenger transport,AR-J,SESCO,annual,kg,5479ca58-6ef7-3aa9-9d1a-beeee86d9bc7 +2010,San Luis,II.1.1,0.0054824,TJ,CO2,73300.0,kg/TJ,401.85992,Naphtha combustion consumption by public passenger transport,AR-D,SESCO,annual,kg,61959ea2-7174-394e-b820-a5bc6812bec8 +2010,San Luis,II.1.1,0.0054824,TJ,CH4,0.5,kg/TJ,0.0027412,Naphtha combustion consumption by public passenger transport,AR-D,SESCO,annual,kg,11b5de09-adf0-39c8-917d-7a77667b7cb2 +2010,San Luis,II.1.1,0.0054824,TJ,N2O,2.0,kg/TJ,0.0109648,Naphtha combustion consumption by public passenger transport,AR-D,SESCO,annual,kg,f50b3128-d615-3f21-8b2f-90fec1f9fcbd +2010,Santa Fe,II.1.1,0.32243364999999996,TJ,CO2,73300.0,kg/TJ,23634.386544999998,Naphtha combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,717bb53b-261a-36ff-af50-feed832fd6c2 +2010,Santa Fe,II.1.1,0.32243364999999996,TJ,CH4,0.5,kg/TJ,0.16121682499999998,Naphtha combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,8a240b8e-412a-365f-b429-c99f5168db29 +2010,Santa Fe,II.1.1,0.32243364999999996,TJ,N2O,2.0,kg/TJ,0.6448672999999999,Naphtha combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,496907c7-2d08-3a3d-850f-50c33b3beed0 +2010,Buenos Aires,II.1.1,3.5628747,TJ,CO2,73300.0,kg/TJ,261158.71551,Naphtha combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,d02872dc-d016-3520-800b-9ec5e7eef715 +2010,Buenos Aires,II.1.1,3.5628747,TJ,CH4,0.5,kg/TJ,1.78143735,Naphtha combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,d0edb860-6b74-32d5-8e7c-66f0b95b37a8 +2010,Buenos Aires,II.1.1,3.5628747,TJ,N2O,2.0,kg/TJ,7.1257494,Naphtha combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,c931b82e-2583-309b-a825-d83ba5defb4f +2010,Capital Federal,II.1.1,0.418033,TJ,CO2,73300.0,kg/TJ,30641.8189,Naphtha combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,5ffdaf07-cd94-3f9f-9a9a-cfb2a0d7d07d +2010,Capital Federal,II.1.1,0.418033,TJ,CH4,0.5,kg/TJ,0.2090165,Naphtha combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,b12c9014-3928-3991-8607-af851de279d2 +2010,Capital Federal,II.1.1,0.418033,TJ,N2O,2.0,kg/TJ,0.836066,Naphtha combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,1256470c-0d80-3e3a-b805-59be85ec8edc +2010,Chaco,II.1.1,0.04728569999999999,TJ,CO2,73300.0,kg/TJ,3466.0418099999997,Naphtha combustion consumption by public passenger transport,AR-H,SESCO,annual,kg,93bda85f-4533-3a79-92d8-eadf1d7fefd7 +2010,Chaco,II.1.1,0.04728569999999999,TJ,CH4,0.5,kg/TJ,0.023642849999999997,Naphtha combustion consumption by public passenger transport,AR-H,SESCO,annual,kg,5c7e29fc-e240-39c5-82b4-d243b2eb8ade +2010,Chaco,II.1.1,0.04728569999999999,TJ,N2O,2.0,kg/TJ,0.09457139999999999,Naphtha combustion consumption by public passenger transport,AR-H,SESCO,annual,kg,ec8c8a16-1f02-3365-9c93-c328c1f23610 +2010,Chubut,II.1.1,0.0061677,TJ,CO2,73300.0,kg/TJ,452.09241,Naphtha combustion consumption by public passenger transport,AR-U,SESCO,annual,kg,46a9dada-0d47-35ea-8e25-f456566d900e +2010,Chubut,II.1.1,0.0061677,TJ,CH4,0.5,kg/TJ,0.00308385,Naphtha combustion consumption by public passenger transport,AR-U,SESCO,annual,kg,cf456b3a-20f0-3100-bf28-3f60fd259810 +2010,Chubut,II.1.1,0.0061677,TJ,N2O,2.0,kg/TJ,0.0123354,Naphtha combustion consumption by public passenger transport,AR-U,SESCO,annual,kg,c2dfdc3d-fe34-321a-b7c2-808543beac4f +2010,Córdoba,II.1.1,0.24979184999999998,TJ,CO2,73300.0,kg/TJ,18309.742605,Naphtha combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,85cd50a8-2ea0-3634-a7bb-3c691d292556 +2010,Córdoba,II.1.1,0.24979184999999998,TJ,CH4,0.5,kg/TJ,0.12489592499999999,Naphtha combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,e688f061-14bc-3231-bf1e-86c38efad459 +2010,Córdoba,II.1.1,0.24979184999999998,TJ,N2O,2.0,kg/TJ,0.49958369999999996,Naphtha combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,f1d76d24-f80d-361c-8908-37ad55588e96 +2010,Entre Rios,II.1.1,0.24602269999999998,TJ,CO2,73300.0,kg/TJ,18033.46391,Naphtha combustion consumption by public passenger transport,AR-E,SESCO,annual,kg,6ece103e-e829-3423-89c8-951971787864 +2010,Entre Rios,II.1.1,0.24602269999999998,TJ,CH4,0.5,kg/TJ,0.12301134999999999,Naphtha combustion consumption by public passenger transport,AR-E,SESCO,annual,kg,e9b1e0f8-2f6d-36d9-9e66-a668eb6a050e +2010,Entre Rios,II.1.1,0.24602269999999998,TJ,N2O,2.0,kg/TJ,0.49204539999999997,Naphtha combustion consumption by public passenger transport,AR-E,SESCO,annual,kg,32ecb9bc-b3a2-3682-bd2a-1dae30d82b87 +2010,Formosa,II.1.1,0.0010279499999999997,TJ,CO2,73300.0,kg/TJ,75.34873499999998,Naphtha combustion consumption by public passenger transport,AR-P,SESCO,annual,kg,6d91bcb4-c953-3667-9b08-b604038e7650 +2010,Formosa,II.1.1,0.0010279499999999997,TJ,CH4,0.5,kg/TJ,0.0005139749999999998,Naphtha combustion consumption by public passenger transport,AR-P,SESCO,annual,kg,298661a0-391e-3ac7-a1ea-fb0f3f5d9ed8 +2010,Formosa,II.1.1,0.0010279499999999997,TJ,N2O,2.0,kg/TJ,0.0020558999999999994,Naphtha combustion consumption by public passenger transport,AR-P,SESCO,annual,kg,eacf2e5b-49f7-3d5b-9fdf-7ea1d0ecbc0e +2010,Jujuy,II.1.1,0.0013706,TJ,CO2,73300.0,kg/TJ,100.46498,Naphtha combustion consumption by public passenger transport,AR-Y,SESCO,annual,kg,75a12679-8cd8-3727-8695-b378bcb35fe2 +2010,Jujuy,II.1.1,0.0013706,TJ,CH4,0.5,kg/TJ,0.0006853,Naphtha combustion consumption by public passenger transport,AR-Y,SESCO,annual,kg,1a03bd2e-aee1-3271-b5a7-0f0d56c9ea47 +2010,Jujuy,II.1.1,0.0013706,TJ,N2O,2.0,kg/TJ,0.0027412,Naphtha combustion consumption by public passenger transport,AR-Y,SESCO,annual,kg,6b7a5f8c-c64c-3902-b68a-f85b60cf8e67 +2010,La Pampa,II.1.1,0.00171325,TJ,CO2,73300.0,kg/TJ,125.58122499999999,Naphtha combustion consumption by public passenger transport,AR-L,SESCO,annual,kg,f3abf4ea-ba17-3c3c-8732-cbd00778bb30 +2010,La Pampa,II.1.1,0.00171325,TJ,CH4,0.5,kg/TJ,0.000856625,Naphtha combustion consumption by public passenger transport,AR-L,SESCO,annual,kg,c838fff4-e9be-3cab-b544-aaeadd0ed143 +2010,La Pampa,II.1.1,0.00171325,TJ,N2O,2.0,kg/TJ,0.0034265,Naphtha combustion consumption by public passenger transport,AR-L,SESCO,annual,kg,30fcfcd3-5a94-364f-a129-9ee94e8de0cc +2010,La Rioja,II.1.1,0.0010279499999999997,TJ,CO2,73300.0,kg/TJ,75.34873499999998,Naphtha combustion consumption by public passenger transport,AR-F,SESCO,annual,kg,d81a04d1-5fef-322d-8086-326a85f5f5e0 +2010,La Rioja,II.1.1,0.0010279499999999997,TJ,CH4,0.5,kg/TJ,0.0005139749999999998,Naphtha combustion consumption by public passenger transport,AR-F,SESCO,annual,kg,d11331d9-7d88-30f3-b023-680946339f7c +2010,La Rioja,II.1.1,0.0010279499999999997,TJ,N2O,2.0,kg/TJ,0.0020558999999999994,Naphtha combustion consumption by public passenger transport,AR-F,SESCO,annual,kg,0994a80b-0e79-30b6-b66e-b29f5cc384aa +2010,Mendoza,II.1.1,0.5407017000000001,TJ,CO2,73300.0,kg/TJ,39633.434610000004,Naphtha combustion consumption by public passenger transport,AR-M,SESCO,annual,kg,01601ace-e612-3bf5-8890-a97c7a217233 +2010,Mendoza,II.1.1,0.5407017000000001,TJ,CH4,0.5,kg/TJ,0.27035085000000003,Naphtha combustion consumption by public passenger transport,AR-M,SESCO,annual,kg,9900da4a-2f59-3e26-8bb2-879c65bece23 +2010,Mendoza,II.1.1,0.5407017000000001,TJ,N2O,2.0,kg/TJ,1.0814034000000001,Naphtha combustion consumption by public passenger transport,AR-M,SESCO,annual,kg,1cad0a32-7230-34b8-9d6b-7bd2d0a39dea +2010,Misiones,II.1.1,0.02021635,TJ,CO2,73300.0,kg/TJ,1481.858455,Naphtha combustion consumption by public passenger transport,AR-N,SESCO,annual,kg,81fbc33e-efee-353d-9b15-8618d8767517 +2010,Misiones,II.1.1,0.02021635,TJ,CH4,0.5,kg/TJ,0.010108175,Naphtha combustion consumption by public passenger transport,AR-N,SESCO,annual,kg,4994b66e-4de2-3a66-a50b-dac0a1224ed2 +2010,Misiones,II.1.1,0.02021635,TJ,N2O,2.0,kg/TJ,0.0404327,Naphtha combustion consumption by public passenger transport,AR-N,SESCO,annual,kg,c3ef2c4b-7c20-3e8d-8336-600381b109a5 +2010,Neuquén,II.1.1,0.02227225,TJ,CO2,73300.0,kg/TJ,1632.5559250000001,Naphtha combustion consumption by public passenger transport,AR-Q,SESCO,annual,kg,b904317d-7956-399e-8f61-f9b007b39d79 +2010,Neuquén,II.1.1,0.02227225,TJ,CH4,0.5,kg/TJ,0.011136125,Naphtha combustion consumption by public passenger transport,AR-Q,SESCO,annual,kg,132f978c-8ccc-310d-bc2e-2bddbe23121d +2010,Neuquén,II.1.1,0.02227225,TJ,N2O,2.0,kg/TJ,0.0445445,Naphtha combustion consumption by public passenger transport,AR-Q,SESCO,annual,kg,aea09c16-9542-33bd-8d55-7d71795e17b2 +2010,Rio Negro,II.1.1,0.17303825,TJ,CO2,73300.0,kg/TJ,12683.703725000001,Naphtha combustion consumption by public passenger transport,AR-R,SESCO,annual,kg,56441afe-4408-36c1-96b2-39ac12ecff53 +2010,Rio Negro,II.1.1,0.17303825,TJ,CH4,0.5,kg/TJ,0.086519125,Naphtha combustion consumption by public passenger transport,AR-R,SESCO,annual,kg,18ff5c55-5632-34a1-9227-26cd5edd2097 +2010,Rio Negro,II.1.1,0.17303825,TJ,N2O,2.0,kg/TJ,0.3460765,Naphtha combustion consumption by public passenger transport,AR-R,SESCO,annual,kg,968806a1-4303-3bbe-a3fb-fcdd0a6f5b20 +2010,Salta,II.1.1,0.00171325,TJ,CO2,73300.0,kg/TJ,125.58122499999999,Naphtha combustion consumption by public passenger transport,AR-A,SESCO,annual,kg,a1e0a23c-269b-3d88-b430-e9f295e8828f +2010,Salta,II.1.1,0.00171325,TJ,CH4,0.5,kg/TJ,0.000856625,Naphtha combustion consumption by public passenger transport,AR-A,SESCO,annual,kg,bf7b56d6-e4dc-3a4c-ad50-02c76bc77961 +2010,Salta,II.1.1,0.00171325,TJ,N2O,2.0,kg/TJ,0.0034265,Naphtha combustion consumption by public passenger transport,AR-A,SESCO,annual,kg,df2417d2-50ce-3036-be4b-8f9fb181fbf0 +2010,San Juan,II.1.1,0.0013706,TJ,CO2,73300.0,kg/TJ,100.46498,Naphtha combustion consumption by public passenger transport,AR-J,SESCO,annual,kg,1a9de593-c0bb-3003-a2a3-e77f82810597 +2010,San Juan,II.1.1,0.0013706,TJ,CH4,0.5,kg/TJ,0.0006853,Naphtha combustion consumption by public passenger transport,AR-J,SESCO,annual,kg,f6c788a9-1d0e-3c2e-b180-cd404865a8a1 +2010,San Juan,II.1.1,0.0013706,TJ,N2O,2.0,kg/TJ,0.0027412,Naphtha combustion consumption by public passenger transport,AR-J,SESCO,annual,kg,5479ca58-6ef7-3aa9-9d1a-beeee86d9bc7 +2010,San Luis,II.1.1,0.043516549999999994,TJ,CO2,73300.0,kg/TJ,3189.7631149999997,Naphtha combustion consumption by public passenger transport,AR-D,SESCO,annual,kg,0b573aa7-d3fc-337e-b686-12855c5e95ef +2010,San Luis,II.1.1,0.043516549999999994,TJ,CH4,0.5,kg/TJ,0.021758274999999997,Naphtha combustion consumption by public passenger transport,AR-D,SESCO,annual,kg,53efa0dd-b38a-396d-87b6-e00d1aa067ac +2010,San Luis,II.1.1,0.043516549999999994,TJ,N2O,2.0,kg/TJ,0.08703309999999999,Naphtha combustion consumption by public passenger transport,AR-D,SESCO,annual,kg,ed72d8d3-af99-318a-a14f-2369396904f8 +2010,Santa Fe,II.1.1,0.77336105,TJ,CO2,73300.0,kg/TJ,56687.364965,Naphtha combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,4de931c7-292d-34ab-aee5-473cf4848946 +2010,Santa Fe,II.1.1,0.77336105,TJ,CH4,0.5,kg/TJ,0.386680525,Naphtha combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,77999602-78f1-3b64-b7ad-2478ca707fac +2010,Santa Fe,II.1.1,0.77336105,TJ,N2O,2.0,kg/TJ,1.5467221,Naphtha combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,dbd31e4a-4db0-3c96-a171-8983f5f0ce3e +2010,Tucuman,II.1.1,0.0010279499999999997,TJ,CO2,73300.0,kg/TJ,75.34873499999998,Naphtha combustion consumption by public passenger transport,AR-T,SESCO,annual,kg,c58509ec-953f-3c30-b24b-d15b117d61fc +2010,Tucuman,II.1.1,0.0010279499999999997,TJ,CH4,0.5,kg/TJ,0.0005139749999999998,Naphtha combustion consumption by public passenger transport,AR-T,SESCO,annual,kg,7e235a24-2b05-3a12-8a35-6b4a4e00edd3 +2010,Tucuman,II.1.1,0.0010279499999999997,TJ,N2O,2.0,kg/TJ,0.0020558999999999994,Naphtha combustion consumption by public passenger transport,AR-T,SESCO,annual,kg,a482e26c-bf1b-336c-a4b0-2aa5352b6824 +2011,Buenos Aires,II.5.1,0.21672,TJ,CO2,74100.0,kg/TJ,16058.952,Diesel Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,d9a5e561-d4e6-34b1-8681-27cb8e18b6ff +2011,Buenos Aires,II.5.1,0.21672,TJ,CH4,5.0,kg/TJ,1.0836,Diesel Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,c1cc3285-2302-39d9-9bab-80bea150d2a4 +2011,Buenos Aires,II.5.1,0.21672,TJ,N2O,0.6,kg/TJ,0.13003199999999998,Diesel Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,a829a3b1-1f00-3c9d-b09b-0cdf98151996 +2011,Buenos Aires,II.1.1,2677.9729199999997,TJ,CO2,74100.0,kg/TJ,198437793.37199998,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,21af977f-f359-30cd-9b1b-d99d3734c1f0 +2011,Buenos Aires,II.1.1,2677.9729199999997,TJ,CH4,3.9,kg/TJ,10444.094387999998,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,7fe94464-22a3-36fc-9450-4908a04f3e3c +2011,Buenos Aires,II.1.1,2677.9729199999997,TJ,N2O,3.9,kg/TJ,10444.094387999998,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,7fe94464-22a3-36fc-9450-4908a04f3e3c +2011,Capital Federal,II.1.1,1084.10568,TJ,CO2,74100.0,kg/TJ,80332230.888,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,37b23eb6-c11a-3fff-9101-38b52a1ec563 +2011,Capital Federal,II.1.1,1084.10568,TJ,CH4,3.9,kg/TJ,4228.012151999999,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,5b8fb719-9b0c-3001-9598-f6b0c119b75d +2011,Capital Federal,II.1.1,1084.10568,TJ,N2O,3.9,kg/TJ,4228.012151999999,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,5b8fb719-9b0c-3001-9598-f6b0c119b75d +2011,Córdoba,II.1.1,96.36815999999999,TJ,CO2,74100.0,kg/TJ,7140880.6559999995,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,6137d594-0e6c-3a02-90dd-ef6d94a9fe48 +2011,Córdoba,II.1.1,96.36815999999999,TJ,CH4,3.9,kg/TJ,375.83582399999995,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,c0b0b860-4f28-3d8e-85a6-00d0c731e16e +2011,Córdoba,II.1.1,96.36815999999999,TJ,N2O,3.9,kg/TJ,375.83582399999995,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,c0b0b860-4f28-3d8e-85a6-00d0c731e16e +2011,Entre Rios,II.1.1,453.37824,TJ,CO2,74100.0,kg/TJ,33595327.584,Gas Oil combustion consumption by public passenger transport,AR-E,SESCO,annual,kg,a05716c3-6cfa-31e7-bd6c-c5d682fedb0a +2011,Entre Rios,II.1.1,453.37824,TJ,CH4,3.9,kg/TJ,1768.175136,Gas Oil combustion consumption by public passenger transport,AR-E,SESCO,annual,kg,4d809033-74a5-3ad7-84d3-9455a387b184 +2011,Entre Rios,II.1.1,453.37824,TJ,N2O,3.9,kg/TJ,1768.175136,Gas Oil combustion consumption by public passenger transport,AR-E,SESCO,annual,kg,4d809033-74a5-3ad7-84d3-9455a387b184 +2011,Mendoza,II.1.1,177.27696,TJ,CO2,74100.0,kg/TJ,13136222.736,Gas Oil combustion consumption by public passenger transport,AR-M,SESCO,annual,kg,33905345-05f0-32df-a2eb-7230d0a06e65 +2011,Mendoza,II.1.1,177.27696,TJ,CH4,3.9,kg/TJ,691.380144,Gas Oil combustion consumption by public passenger transport,AR-M,SESCO,annual,kg,33dd560d-174f-37c5-b9d3-7060cd543b0e +2011,Mendoza,II.1.1,177.27696,TJ,N2O,3.9,kg/TJ,691.380144,Gas Oil combustion consumption by public passenger transport,AR-M,SESCO,annual,kg,33dd560d-174f-37c5-b9d3-7060cd543b0e +2011,Misiones,II.1.1,227.15868,TJ,CO2,74100.0,kg/TJ,16832458.188,Gas Oil combustion consumption by public passenger transport,AR-N,SESCO,annual,kg,60cd84ed-718e-35da-9d41-6a32b5bc42b0 +2011,Misiones,II.1.1,227.15868,TJ,CH4,3.9,kg/TJ,885.918852,Gas Oil combustion consumption by public passenger transport,AR-N,SESCO,annual,kg,9ddacf94-bb2c-311b-9347-1127356a66d8 +2011,Misiones,II.1.1,227.15868,TJ,N2O,3.9,kg/TJ,885.918852,Gas Oil combustion consumption by public passenger transport,AR-N,SESCO,annual,kg,9ddacf94-bb2c-311b-9347-1127356a66d8 +2011,Salta,II.1.1,71.8788,TJ,CO2,74100.0,kg/TJ,5326219.08,Gas Oil combustion consumption by public passenger transport,AR-A,SESCO,annual,kg,0033862a-97b9-37e0-ba77-c27d4658e352 +2011,Salta,II.1.1,71.8788,TJ,CH4,3.9,kg/TJ,280.32732,Gas Oil combustion consumption by public passenger transport,AR-A,SESCO,annual,kg,2022963f-eced-3c7b-ab7a-b47f17babab1 +2011,Salta,II.1.1,71.8788,TJ,N2O,3.9,kg/TJ,280.32732,Gas Oil combustion consumption by public passenger transport,AR-A,SESCO,annual,kg,2022963f-eced-3c7b-ab7a-b47f17babab1 +2011,San Juan,II.1.1,88.16892,TJ,CO2,74100.0,kg/TJ,6533316.972,Gas Oil combustion consumption by public passenger transport,AR-J,SESCO,annual,kg,6769c758-d30b-36ff-bd32-7fb879debbfb +2011,San Juan,II.1.1,88.16892,TJ,CH4,3.9,kg/TJ,343.858788,Gas Oil combustion consumption by public passenger transport,AR-J,SESCO,annual,kg,22d34b8f-1e08-3aca-a407-412942ca13df +2011,San Juan,II.1.1,88.16892,TJ,N2O,3.9,kg/TJ,343.858788,Gas Oil combustion consumption by public passenger transport,AR-J,SESCO,annual,kg,22d34b8f-1e08-3aca-a407-412942ca13df +2011,Santa Fe,II.1.1,254.4654,TJ,CO2,74100.0,kg/TJ,18855886.14,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,d7b1c3c7-b947-3665-a969-02abee9e429d +2011,Santa Fe,II.1.1,254.4654,TJ,CH4,3.9,kg/TJ,992.4150599999999,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,9ef0e37e-8973-3803-9eca-8019d6274524 +2011,Santa Fe,II.1.1,254.4654,TJ,N2O,3.9,kg/TJ,992.4150599999999,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,9ef0e37e-8973-3803-9eca-8019d6274524 +2011,Santa Fe,II.5.1,185.3512,TJ,CO2,69300.0,kg/TJ,12844838.16,Motor Gasoline combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,5324cf59-b4b7-36f8-becc-42df3a731a55 +2011,Santa Fe,II.5.1,185.3512,TJ,CH4,33.0,kg/TJ,6116.5896,Motor Gasoline combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,eb259dd3-70c0-313a-bda5-2abf46fcee6e +2011,Santa Fe,II.5.1,185.3512,TJ,N2O,3.2,kg/TJ,593.1238400000001,Motor Gasoline combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,92d7cc2a-5987-3778-bde1-abb360252fa5 +2011,Buenos Aires,II.5.1,128.40840599999999,TJ,CO2,74100.0,kg/TJ,9515062.884599999,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,1277cc69-543a-3eb3-8977-d1385ee7e3cf +2011,Buenos Aires,II.5.1,128.40840599999999,TJ,CH4,3.9,kg/TJ,500.7927833999999,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,f0e27281-26b8-3aed-b2df-0aee35923150 +2011,Buenos Aires,II.5.1,128.40840599999999,TJ,N2O,3.9,kg/TJ,500.7927833999999,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,f0e27281-26b8-3aed-b2df-0aee35923150 +2011,Chaco,II.5.1,90.9180132,TJ,CO2,74100.0,kg/TJ,6737024.77812,Gas Oil combustion consumption by agriculture machines,AR-H,SESCO,annual,kg,509ffea3-7f2e-3a56-bd03-196fcbb7ed8f +2011,Chaco,II.5.1,90.9180132,TJ,CH4,3.9,kg/TJ,354.58025148,Gas Oil combustion consumption by agriculture machines,AR-H,SESCO,annual,kg,60c6e69e-9053-3a49-a752-7036a8850775 +2011,Chaco,II.5.1,90.9180132,TJ,N2O,3.9,kg/TJ,354.58025148,Gas Oil combustion consumption by agriculture machines,AR-H,SESCO,annual,kg,60c6e69e-9053-3a49-a752-7036a8850775 +2011,Córdoba,II.5.1,57.6561888,TJ,CO2,74100.0,kg/TJ,4272323.59008,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,26f976f5-35b8-3a49-b9f0-cd886a0d1cda +2011,Córdoba,II.5.1,57.6561888,TJ,CH4,3.9,kg/TJ,224.85913632,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,a6965113-db55-3789-8e68-5b06ea088f00 +2011,Córdoba,II.5.1,57.6561888,TJ,N2O,3.9,kg/TJ,224.85913632,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,a6965113-db55-3789-8e68-5b06ea088f00 +2011,Santa Fe,II.5.1,374.66842560000003,TJ,CO2,74100.0,kg/TJ,27762930.336960003,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,8557b262-101d-3b1c-8ece-1430bd94497f +2011,Santa Fe,II.5.1,374.66842560000003,TJ,CH4,3.9,kg/TJ,1461.20685984,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,cee69c90-aecc-3afd-ac42-a6fc4544262a +2011,Santa Fe,II.5.1,374.66842560000003,TJ,N2O,3.9,kg/TJ,1461.20685984,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,cee69c90-aecc-3afd-ac42-a6fc4544262a +2011,Córdoba,II.5.1,10.1842433,TJ,CO2,73300.0,kg/TJ,746505.0338900001,Naphtha combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,15c0206f-de5a-3f1e-867b-4bd58b3833f7 +2011,Córdoba,II.5.1,10.1842433,TJ,CH4,0.5,kg/TJ,5.09212165,Naphtha combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,6709f342-0291-3a5a-ba77-d652bfc95735 +2011,Córdoba,II.5.1,10.1842433,TJ,N2O,2.0,kg/TJ,20.3684866,Naphtha combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,e0c3cb6d-9e6e-3368-ae15-bb51c925fa52 +2011,Santa Fe,II.5.1,21.319683,TJ,CO2,73300.0,kg/TJ,1562732.7639000001,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,af35882c-fe7f-3ade-821b-aab3dd938415 +2011,Santa Fe,II.5.1,21.319683,TJ,CH4,0.5,kg/TJ,10.6598415,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,bd5e66eb-3226-3e0d-a47a-fca8de38401e +2011,Santa Fe,II.5.1,21.319683,TJ,N2O,2.0,kg/TJ,42.639366,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,55cf500b-8b6b-3868-a6bb-246b0ecf7b46 +2011,Córdoba,II.5.1,5.4553306500000005,TJ,CO2,73300.0,kg/TJ,399875.73664500006,Naphtha combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,72c914af-3a31-3a2a-bf05-f2cdaba6b89a +2011,Córdoba,II.5.1,5.4553306500000005,TJ,CH4,0.5,kg/TJ,2.7276653250000003,Naphtha combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,0d622a8d-9866-3b0b-a038-8a77d468a161 +2011,Córdoba,II.5.1,5.4553306500000005,TJ,N2O,2.0,kg/TJ,10.910661300000001,Naphtha combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,914136ef-2ae5-3575-9bbd-370e918ba429 +2011,Santa Fe,II.5.1,1.02795,TJ,CO2,73300.0,kg/TJ,75348.735,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,07be9c6a-655e-3323-8157-c006cb1bb308 +2011,Santa Fe,II.5.1,1.02795,TJ,CH4,0.5,kg/TJ,0.513975,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,ecfaecf7-2d3d-3da7-b272-e28e00e2290b +2011,Santa Fe,II.5.1,1.02795,TJ,N2O,2.0,kg/TJ,2.0559,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,77652e78-b42a-3e73-8b3f-c4c0576d5aa1 +2011,Capital Federal,II.2.1,68.234292,TJ,CO2,74100.0,kg/TJ,5056161.0372,Gas Oil combustion consumption by railway transport,AR-C,SESCO,annual,kg,9528bff5-486a-317c-958b-f269474b9476 +2011,Capital Federal,II.2.1,68.234292,TJ,CH4,3.9,kg/TJ,266.11373879999996,Gas Oil combustion consumption by railway transport,AR-C,SESCO,annual,kg,ec52cde9-a5bb-37bc-8592-dedc5517e830 +2011,Capital Federal,II.2.1,68.234292,TJ,N2O,3.9,kg/TJ,266.11373879999996,Gas Oil combustion consumption by railway transport,AR-C,SESCO,annual,kg,ec52cde9-a5bb-37bc-8592-dedc5517e830 +2011,Chaco,II.2.1,6.1776036,TJ,CO2,74100.0,kg/TJ,457760.42676,Gas Oil combustion consumption by railway transport,AR-H,SESCO,annual,kg,6dc60b34-317f-35de-9b12-6083aeee7d51 +2011,Chaco,II.2.1,6.1776036,TJ,CH4,3.9,kg/TJ,24.09265404,Gas Oil combustion consumption by railway transport,AR-H,SESCO,annual,kg,92e881d7-d3b7-3670-9644-959983ffef69 +2011,Chaco,II.2.1,6.1776036,TJ,N2O,3.9,kg/TJ,24.09265404,Gas Oil combustion consumption by railway transport,AR-H,SESCO,annual,kg,92e881d7-d3b7-3670-9644-959983ffef69 +2011,Mendoza,II.2.1,42.081606,TJ,CO2,74100.0,kg/TJ,3118247.0046,Gas Oil combustion consumption by railway transport,AR-M,SESCO,annual,kg,2a87d4bb-e63b-3a6c-b703-a885e7100c0d +2011,Mendoza,II.2.1,42.081606,TJ,CH4,3.9,kg/TJ,164.1182634,Gas Oil combustion consumption by railway transport,AR-M,SESCO,annual,kg,64af9bb7-2deb-3d2f-b7b3-802cb35d71b9 +2011,Mendoza,II.2.1,42.081606,TJ,N2O,3.9,kg/TJ,164.1182634,Gas Oil combustion consumption by railway transport,AR-M,SESCO,annual,kg,64af9bb7-2deb-3d2f-b7b3-802cb35d71b9 +2011,Buenos Aires,II.1.1,1452.7088352,TJ,CO2,74100.0,kg/TJ,107645724.68832001,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,61c71ef2-a6e9-3f87-ae97-c36de604a202 +2011,Buenos Aires,II.1.1,1452.7088352,TJ,CH4,3.9,kg/TJ,5665.56445728,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,ac50272a-f57f-3e58-b549-4f6ae67465e6 +2011,Buenos Aires,II.1.1,1452.7088352,TJ,N2O,3.9,kg/TJ,5665.56445728,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,ac50272a-f57f-3e58-b549-4f6ae67465e6 +2011,Capital Federal,II.1.1,1286.1988860000001,TJ,CO2,74100.0,kg/TJ,95307337.4526,Gas Oil combustion consumption by freight transport,AR-C,SESCO,annual,kg,0b987eb5-749e-3e47-ab61-3f00e022f129 +2011,Capital Federal,II.1.1,1286.1988860000001,TJ,CH4,3.9,kg/TJ,5016.1756554,Gas Oil combustion consumption by freight transport,AR-C,SESCO,annual,kg,87b87c64-ef96-3f45-8a2b-d03e158725b6 +2011,Capital Federal,II.1.1,1286.1988860000001,TJ,N2O,3.9,kg/TJ,5016.1756554,Gas Oil combustion consumption by freight transport,AR-C,SESCO,annual,kg,87b87c64-ef96-3f45-8a2b-d03e158725b6 +2011,Chaco,II.1.1,121.4379684,TJ,CO2,74100.0,kg/TJ,8998553.45844,Gas Oil combustion consumption by freight transport,AR-H,SESCO,annual,kg,357483d9-df3d-3be9-8058-08f699dcc571 +2011,Chaco,II.1.1,121.4379684,TJ,CH4,3.9,kg/TJ,473.60807676,Gas Oil combustion consumption by freight transport,AR-H,SESCO,annual,kg,9418e234-2a99-39b7-8691-b1aa0f98ce41 +2011,Chaco,II.1.1,121.4379684,TJ,N2O,3.9,kg/TJ,473.60807676,Gas Oil combustion consumption by freight transport,AR-H,SESCO,annual,kg,9418e234-2a99-39b7-8691-b1aa0f98ce41 +2011,Chubut,II.1.1,19.1880276,TJ,CO2,74100.0,kg/TJ,1421832.84516,Gas Oil combustion consumption by freight transport,AR-U,SESCO,annual,kg,8abe9dda-1583-3780-8041-add5704fe2ab +2011,Chubut,II.1.1,19.1880276,TJ,CH4,3.9,kg/TJ,74.83330764,Gas Oil combustion consumption by freight transport,AR-U,SESCO,annual,kg,787ccf47-e5eb-3258-b634-94483188a1a0 +2011,Chubut,II.1.1,19.1880276,TJ,N2O,3.9,kg/TJ,74.83330764,Gas Oil combustion consumption by freight transport,AR-U,SESCO,annual,kg,787ccf47-e5eb-3258-b634-94483188a1a0 +2011,Corrientes,II.1.1,90.7663092,TJ,CO2,74100.0,kg/TJ,6725783.51172,Gas Oil combustion consumption by freight transport,AR-W,SESCO,annual,kg,40bc651a-ef41-3c66-9326-8d3c89517e94 +2011,Corrientes,II.1.1,90.7663092,TJ,CH4,3.9,kg/TJ,353.98860587999997,Gas Oil combustion consumption by freight transport,AR-W,SESCO,annual,kg,a2b2a90c-92aa-3627-91bc-9466a7d7045c +2011,Corrientes,II.1.1,90.7663092,TJ,N2O,3.9,kg/TJ,353.98860587999997,Gas Oil combustion consumption by freight transport,AR-W,SESCO,annual,kg,a2b2a90c-92aa-3627-91bc-9466a7d7045c +2011,Córdoba,II.1.1,179.2411656,TJ,CO2,74100.0,kg/TJ,13281770.370959999,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,a869d0f6-594c-3051-9959-0c5a528584a2 +2011,Córdoba,II.1.1,179.2411656,TJ,CH4,3.9,kg/TJ,699.0405458399999,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,7eee9ece-ded9-349a-8c18-6a32d77fee59 +2011,Córdoba,II.1.1,179.2411656,TJ,N2O,3.9,kg/TJ,699.0405458399999,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,7eee9ece-ded9-349a-8c18-6a32d77fee59 +2011,Entre Rios,II.1.1,244.96186679999997,TJ,CO2,74100.0,kg/TJ,18151674.32988,Gas Oil combustion consumption by freight transport,AR-E,SESCO,annual,kg,ceaebe35-b605-3c6a-9a5e-0922b8db03cf +2011,Entre Rios,II.1.1,244.96186679999997,TJ,CH4,3.9,kg/TJ,955.3512805199998,Gas Oil combustion consumption by freight transport,AR-E,SESCO,annual,kg,250fe80d-da6a-39e7-8d39-a8b6964c6f90 +2011,Entre Rios,II.1.1,244.96186679999997,TJ,N2O,3.9,kg/TJ,955.3512805199998,Gas Oil combustion consumption by freight transport,AR-E,SESCO,annual,kg,250fe80d-da6a-39e7-8d39-a8b6964c6f90 +2011,Mendoza,II.1.1,409.28583359999993,TJ,CO2,74100.0,kg/TJ,30328080.269759994,Gas Oil combustion consumption by freight transport,AR-M,SESCO,annual,kg,24590e63-e20f-3c2d-8f90-5b81f74ee1ae +2011,Mendoza,II.1.1,409.28583359999993,TJ,CH4,3.9,kg/TJ,1596.2147510399998,Gas Oil combustion consumption by freight transport,AR-M,SESCO,annual,kg,e8bb547e-5502-3e8b-93bc-e78a9dcf4743 +2011,Mendoza,II.1.1,409.28583359999993,TJ,N2O,3.9,kg/TJ,1596.2147510399998,Gas Oil combustion consumption by freight transport,AR-M,SESCO,annual,kg,e8bb547e-5502-3e8b-93bc-e78a9dcf4743 +2011,Misiones,II.1.1,85.8557952,TJ,CO2,74100.0,kg/TJ,6361914.42432,Gas Oil combustion consumption by freight transport,AR-N,SESCO,annual,kg,bc413545-76c8-33fe-a70a-06bb516a7da8 +2011,Misiones,II.1.1,85.8557952,TJ,CH4,3.9,kg/TJ,334.83760128,Gas Oil combustion consumption by freight transport,AR-N,SESCO,annual,kg,3f79d32c-8285-3663-bb3d-1f2e8efb5751 +2011,Misiones,II.1.1,85.8557952,TJ,N2O,3.9,kg/TJ,334.83760128,Gas Oil combustion consumption by freight transport,AR-N,SESCO,annual,kg,3f79d32c-8285-3663-bb3d-1f2e8efb5751 +2011,Rio Negro,II.1.1,11.5645404,TJ,CO2,74100.0,kg/TJ,856932.4436400001,Gas Oil combustion consumption by freight transport,AR-R,SESCO,annual,kg,7cbfea1b-5a2d-3675-926a-f01dea4a38f9 +2011,Rio Negro,II.1.1,11.5645404,TJ,CH4,3.9,kg/TJ,45.10170756,Gas Oil combustion consumption by freight transport,AR-R,SESCO,annual,kg,0db96a17-eab3-38ee-ae7e-845d9b2e6659 +2011,Rio Negro,II.1.1,11.5645404,TJ,N2O,3.9,kg/TJ,45.10170756,Gas Oil combustion consumption by freight transport,AR-R,SESCO,annual,kg,0db96a17-eab3-38ee-ae7e-845d9b2e6659 +2011,Salta,II.1.1,5.1601032,TJ,CO2,74100.0,kg/TJ,382363.64712,Gas Oil combustion consumption by freight transport,AR-A,SESCO,annual,kg,20947830-066d-3198-9365-1b1069562852 +2011,Salta,II.1.1,5.1601032,TJ,CH4,3.9,kg/TJ,20.12440248,Gas Oil combustion consumption by freight transport,AR-A,SESCO,annual,kg,ca896d6e-522b-30e8-8223-57aa3a9662ce +2011,Salta,II.1.1,5.1601032,TJ,N2O,3.9,kg/TJ,20.12440248,Gas Oil combustion consumption by freight transport,AR-A,SESCO,annual,kg,ca896d6e-522b-30e8-8223-57aa3a9662ce +2011,San Juan,II.1.1,7.3161059999999996,TJ,CO2,74100.0,kg/TJ,542123.4545999999,Gas Oil combustion consumption by freight transport,AR-J,SESCO,annual,kg,7b60f742-300f-355d-892f-39cead5bedb9 +2011,San Juan,II.1.1,7.3161059999999996,TJ,CH4,3.9,kg/TJ,28.5328134,Gas Oil combustion consumption by freight transport,AR-J,SESCO,annual,kg,faf19499-bad5-3366-9ecd-8ccdecf01a7e +2011,San Juan,II.1.1,7.3161059999999996,TJ,N2O,3.9,kg/TJ,28.5328134,Gas Oil combustion consumption by freight transport,AR-J,SESCO,annual,kg,faf19499-bad5-3366-9ecd-8ccdecf01a7e +2011,San Luis,II.1.1,126.611436,TJ,CO2,74100.0,kg/TJ,9381907.4076,Gas Oil combustion consumption by freight transport,AR-D,SESCO,annual,kg,eb34fd46-ae3d-323b-a5df-c7e0ea03cb0a +2011,San Luis,II.1.1,126.611436,TJ,CH4,3.9,kg/TJ,493.7846004,Gas Oil combustion consumption by freight transport,AR-D,SESCO,annual,kg,c8a11355-4e10-3f90-84c0-41b33f418b78 +2011,San Luis,II.1.1,126.611436,TJ,N2O,3.9,kg/TJ,493.7846004,Gas Oil combustion consumption by freight transport,AR-D,SESCO,annual,kg,c8a11355-4e10-3f90-84c0-41b33f418b78 +2011,Santa Fe,II.1.1,847.2039912,TJ,CO2,74100.0,kg/TJ,62777815.74792,Gas Oil combustion consumption by freight transport,AR-S,SESCO,annual,kg,a4ce9bd9-7820-39b9-8912-9134451d1c61 +2011,Santa Fe,II.1.1,847.2039912,TJ,CH4,3.9,kg/TJ,3304.09556568,Gas Oil combustion consumption by freight transport,AR-S,SESCO,annual,kg,988cb440-a0cc-389b-b019-3871b8b2d349 +2011,Santa Fe,II.1.1,847.2039912,TJ,N2O,3.9,kg/TJ,3304.09556568,Gas Oil combustion consumption by freight transport,AR-S,SESCO,annual,kg,988cb440-a0cc-389b-b019-3871b8b2d349 +2011,Santiago del Estero,II.1.1,0.28281959999999995,TJ,CO2,74100.0,kg/TJ,20956.932359999995,Gas Oil combustion consumption by freight transport,AR-G,SESCO,annual,kg,54337a25-2114-31c6-b782-16cff6a1bee2 +2011,Santiago del Estero,II.1.1,0.28281959999999995,TJ,CH4,3.9,kg/TJ,1.1029964399999999,Gas Oil combustion consumption by freight transport,AR-G,SESCO,annual,kg,dddbb98e-fd5f-3fe2-8b30-dd8ac0636eb4 +2011,Santiago del Estero,II.1.1,0.28281959999999995,TJ,N2O,3.9,kg/TJ,1.1029964399999999,Gas Oil combustion consumption by freight transport,AR-G,SESCO,annual,kg,dddbb98e-fd5f-3fe2-8b30-dd8ac0636eb4 +2011,Tierra del Fuego,II.1.1,34.257652799999995,TJ,CO2,74100.0,kg/TJ,2538492.0724799996,Gas Oil combustion consumption by freight transport,AR-V,SESCO,annual,kg,f6c57e3d-2e12-35b5-9447-58c1fc0c32ce +2011,Tierra del Fuego,II.1.1,34.257652799999995,TJ,CH4,3.9,kg/TJ,133.60484591999997,Gas Oil combustion consumption by freight transport,AR-V,SESCO,annual,kg,708bbf39-213d-3ade-8660-1659a4838d0a +2011,Tierra del Fuego,II.1.1,34.257652799999995,TJ,N2O,3.9,kg/TJ,133.60484591999997,Gas Oil combustion consumption by freight transport,AR-V,SESCO,annual,kg,708bbf39-213d-3ade-8660-1659a4838d0a +2011,Tucuman,II.1.1,76.9384896,TJ,CO2,74100.0,kg/TJ,5701142.07936,Gas Oil combustion consumption by freight transport,AR-T,SESCO,annual,kg,c94f1d58-9d8e-3f66-aeaf-0056ea074bd6 +2011,Tucuman,II.1.1,76.9384896,TJ,CH4,3.9,kg/TJ,300.06010943999996,Gas Oil combustion consumption by freight transport,AR-T,SESCO,annual,kg,440efd4c-d39f-3047-babc-bd738d0ba36c +2011,Tucuman,II.1.1,76.9384896,TJ,N2O,3.9,kg/TJ,300.06010943999996,Gas Oil combustion consumption by freight transport,AR-T,SESCO,annual,kg,440efd4c-d39f-3047-babc-bd738d0ba36c +2011,Buenos Aires,II.1.1,89.3904984,TJ,CO2,74100.0,kg/TJ,6623835.9314399995,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,d6778ecc-03b6-3c8f-a977-8a05e120e476 +2011,Buenos Aires,II.1.1,89.3904984,TJ,CH4,3.9,kg/TJ,348.62294376,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,ba96a283-29d2-3625-9fc2-6f256e672dd2 +2011,Buenos Aires,II.1.1,89.3904984,TJ,N2O,3.9,kg/TJ,348.62294376,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,ba96a283-29d2-3625-9fc2-6f256e672dd2 +2011,Capital Federal,II.1.1,79.3617804,TJ,CO2,74100.0,kg/TJ,5880707.92764,Gas Oil combustion consumption by freight transport,AR-C,SESCO,annual,kg,f3613124-2703-370c-a322-d19e4a22290f +2011,Capital Federal,II.1.1,79.3617804,TJ,CH4,3.9,kg/TJ,309.51094356,Gas Oil combustion consumption by freight transport,AR-C,SESCO,annual,kg,9f54cfae-c715-3934-9d82-659228eb7225 +2011,Capital Federal,II.1.1,79.3617804,TJ,N2O,3.9,kg/TJ,309.51094356,Gas Oil combustion consumption by freight transport,AR-C,SESCO,annual,kg,9f54cfae-c715-3934-9d82-659228eb7225 +2011,Chaco,II.1.1,0.22647239999999996,TJ,CO2,74100.0,kg/TJ,16781.604839999996,Gas Oil combustion consumption by freight transport,AR-H,SESCO,annual,kg,d6cfd9ad-2115-35df-8550-c3f16c7f0ae9 +2011,Chaco,II.1.1,0.22647239999999996,TJ,CH4,3.9,kg/TJ,0.8832423599999998,Gas Oil combustion consumption by freight transport,AR-H,SESCO,annual,kg,364ca191-cd72-3e90-8f17-36c64d50bd6f +2011,Chaco,II.1.1,0.22647239999999996,TJ,N2O,3.9,kg/TJ,0.8832423599999998,Gas Oil combustion consumption by freight transport,AR-H,SESCO,annual,kg,364ca191-cd72-3e90-8f17-36c64d50bd6f +2011,Chubut,II.1.1,0.5551644,TJ,CO2,74100.0,kg/TJ,41137.68204,Gas Oil combustion consumption by freight transport,AR-U,SESCO,annual,kg,f8d3cbeb-8ac2-3dd7-a81e-dd5d611b0657 +2011,Chubut,II.1.1,0.5551644,TJ,CH4,3.9,kg/TJ,2.16514116,Gas Oil combustion consumption by freight transport,AR-U,SESCO,annual,kg,1d41e956-6306-3614-a101-95dbfdb85bc2 +2011,Chubut,II.1.1,0.5551644,TJ,N2O,3.9,kg/TJ,2.16514116,Gas Oil combustion consumption by freight transport,AR-U,SESCO,annual,kg,1d41e956-6306-3614-a101-95dbfdb85bc2 +2011,Corrientes,II.1.1,3.8384723999999997,TJ,CO2,74100.0,kg/TJ,284430.80484,Gas Oil combustion consumption by freight transport,AR-W,SESCO,annual,kg,7f5f65f8-7a06-358c-a693-29dbc3b2fe15 +2011,Corrientes,II.1.1,3.8384723999999997,TJ,CH4,3.9,kg/TJ,14.970042359999999,Gas Oil combustion consumption by freight transport,AR-W,SESCO,annual,kg,4362353f-518a-39bf-bfbb-b62a7b243d4c +2011,Corrientes,II.1.1,3.8384723999999997,TJ,N2O,3.9,kg/TJ,14.970042359999999,Gas Oil combustion consumption by freight transport,AR-W,SESCO,annual,kg,4362353f-518a-39bf-bfbb-b62a7b243d4c +2011,Córdoba,II.1.1,6.1599048,TJ,CO2,74100.0,kg/TJ,456448.94567999995,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,107b511d-760b-3e33-8bf6-403312baf46f +2011,Córdoba,II.1.1,6.1599048,TJ,CH4,3.9,kg/TJ,24.023628719999998,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,ca8cab6b-639a-3592-a38b-d453f3e3019f +2011,Córdoba,II.1.1,6.1599048,TJ,N2O,3.9,kg/TJ,24.023628719999998,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,ca8cab6b-639a-3592-a38b-d453f3e3019f +2011,Entre Rios,II.1.1,3.0008496,TJ,CO2,74100.0,kg/TJ,222362.95536,Gas Oil combustion consumption by freight transport,AR-E,SESCO,annual,kg,f322056a-dfcd-3b24-8c53-3ecc7a4c4f6d +2011,Entre Rios,II.1.1,3.0008496,TJ,CH4,3.9,kg/TJ,11.70331344,Gas Oil combustion consumption by freight transport,AR-E,SESCO,annual,kg,47826bf7-7b2c-3b54-9b76-cd9e44ffc1ac +2011,Entre Rios,II.1.1,3.0008496,TJ,N2O,3.9,kg/TJ,11.70331344,Gas Oil combustion consumption by freight transport,AR-E,SESCO,annual,kg,47826bf7-7b2c-3b54-9b76-cd9e44ffc1ac +2011,Mendoza,II.1.1,3.1796436,TJ,CO2,74100.0,kg/TJ,235611.59076,Gas Oil combustion consumption by freight transport,AR-M,SESCO,annual,kg,6caf5df5-9547-3a0f-b049-22a9b9cfc13f +2011,Mendoza,II.1.1,3.1796436,TJ,CH4,3.9,kg/TJ,12.40061004,Gas Oil combustion consumption by freight transport,AR-M,SESCO,annual,kg,79eb4633-e8cf-3843-869e-49c495daa119 +2011,Mendoza,II.1.1,3.1796436,TJ,N2O,3.9,kg/TJ,12.40061004,Gas Oil combustion consumption by freight transport,AR-M,SESCO,annual,kg,79eb4633-e8cf-3843-869e-49c495daa119 +2011,Misiones,II.1.1,3.1579716,TJ,CO2,74100.0,kg/TJ,234005.69556000002,Gas Oil combustion consumption by freight transport,AR-N,SESCO,annual,kg,8fca8d71-a4f9-3462-bc20-dff02cda3dbf +2011,Misiones,II.1.1,3.1579716,TJ,CH4,3.9,kg/TJ,12.31608924,Gas Oil combustion consumption by freight transport,AR-N,SESCO,annual,kg,a557dc39-97a3-3ef8-9e22-dcb1cbae3267 +2011,Misiones,II.1.1,3.1579716,TJ,N2O,3.9,kg/TJ,12.31608924,Gas Oil combustion consumption by freight transport,AR-N,SESCO,annual,kg,a557dc39-97a3-3ef8-9e22-dcb1cbae3267 +2011,Rio Negro,II.1.1,0.59598,TJ,CO2,74100.0,kg/TJ,44162.117999999995,Gas Oil combustion consumption by freight transport,AR-R,SESCO,annual,kg,da5642a5-7fc4-35d2-8345-e4c954760c98 +2011,Rio Negro,II.1.1,0.59598,TJ,CH4,3.9,kg/TJ,2.3243219999999996,Gas Oil combustion consumption by freight transport,AR-R,SESCO,annual,kg,67e03775-841c-3dc7-ae7e-7030031bfa0f +2011,Rio Negro,II.1.1,0.59598,TJ,N2O,3.9,kg/TJ,2.3243219999999996,Gas Oil combustion consumption by freight transport,AR-R,SESCO,annual,kg,67e03775-841c-3dc7-ae7e-7030031bfa0f +2011,Salta,II.1.1,0.0964404,TJ,CO2,74100.0,kg/TJ,7146.2336399999995,Gas Oil combustion consumption by freight transport,AR-A,SESCO,annual,kg,53792ecd-291e-37b9-84a9-060a915c5c0e +2011,Salta,II.1.1,0.0964404,TJ,CH4,3.9,kg/TJ,0.37611755999999996,Gas Oil combustion consumption by freight transport,AR-A,SESCO,annual,kg,941d3148-684a-3a5b-b92f-77a9f44e3378 +2011,Salta,II.1.1,0.0964404,TJ,N2O,3.9,kg/TJ,0.37611755999999996,Gas Oil combustion consumption by freight transport,AR-A,SESCO,annual,kg,941d3148-684a-3a5b-b92f-77a9f44e3378 +2011,San Juan,II.1.1,0.8105327999999999,TJ,CO2,74100.0,kg/TJ,60060.48048,Gas Oil combustion consumption by freight transport,AR-J,SESCO,annual,kg,d47c4621-a9ff-3224-a584-f61b68e4a17b +2011,San Juan,II.1.1,0.8105327999999999,TJ,CH4,3.9,kg/TJ,3.16107792,Gas Oil combustion consumption by freight transport,AR-J,SESCO,annual,kg,d4fb4b2c-380c-3b38-b8e6-ae6f3ef19930 +2011,San Juan,II.1.1,0.8105327999999999,TJ,N2O,3.9,kg/TJ,3.16107792,Gas Oil combustion consumption by freight transport,AR-J,SESCO,annual,kg,d4fb4b2c-380c-3b38-b8e6-ae6f3ef19930 +2011,San Luis,II.1.1,1.2645612,TJ,CO2,74100.0,kg/TJ,93703.98492,Gas Oil combustion consumption by freight transport,AR-D,SESCO,annual,kg,74dfc718-f93b-3044-b20b-9272f51f617b +2011,San Luis,II.1.1,1.2645612,TJ,CH4,3.9,kg/TJ,4.9317886799999995,Gas Oil combustion consumption by freight transport,AR-D,SESCO,annual,kg,b98ed6a9-4a8f-37f8-b978-56d741124230 +2011,San Luis,II.1.1,1.2645612,TJ,N2O,3.9,kg/TJ,4.9317886799999995,Gas Oil combustion consumption by freight transport,AR-D,SESCO,annual,kg,b98ed6a9-4a8f-37f8-b978-56d741124230 +2011,Santa Fe,II.1.1,7.899805199999999,TJ,CO2,74100.0,kg/TJ,585375.5653199999,Gas Oil combustion consumption by freight transport,AR-S,SESCO,annual,kg,5e6353aa-24bd-3469-9259-f2713f265d42 +2011,Santa Fe,II.1.1,7.899805199999999,TJ,CH4,3.9,kg/TJ,30.809240279999997,Gas Oil combustion consumption by freight transport,AR-S,SESCO,annual,kg,1fc8bec3-a9bb-382e-a12f-04978e03aacd +2011,Santa Fe,II.1.1,7.899805199999999,TJ,N2O,3.9,kg/TJ,30.809240279999997,Gas Oil combustion consumption by freight transport,AR-S,SESCO,annual,kg,1fc8bec3-a9bb-382e-a12f-04978e03aacd +2011,Santiago del Estero,II.1.1,0.08921639999999999,TJ,CO2,74100.0,kg/TJ,6610.935239999999,Gas Oil combustion consumption by freight transport,AR-G,SESCO,annual,kg,d9067a38-1d95-33d4-8a79-832c7a4406ad +2011,Santiago del Estero,II.1.1,0.08921639999999999,TJ,CH4,3.9,kg/TJ,0.34794395999999994,Gas Oil combustion consumption by freight transport,AR-G,SESCO,annual,kg,98572289-d68d-3c9f-bfec-d79388c08a3f +2011,Santiago del Estero,II.1.1,0.08921639999999999,TJ,N2O,3.9,kg/TJ,0.34794395999999994,Gas Oil combustion consumption by freight transport,AR-G,SESCO,annual,kg,98572289-d68d-3c9f-bfec-d79388c08a3f +2011,Tierra del Fuego,II.1.1,2.9770103999999997,TJ,CO2,74100.0,kg/TJ,220596.47063999998,Gas Oil combustion consumption by freight transport,AR-V,SESCO,annual,kg,337c7857-6675-38bb-b730-99a3fcddbe0d +2011,Tierra del Fuego,II.1.1,2.9770103999999997,TJ,CH4,3.9,kg/TJ,11.61034056,Gas Oil combustion consumption by freight transport,AR-V,SESCO,annual,kg,c9c3f079-1e3c-325c-b199-700bfb71f4c7 +2011,Tierra del Fuego,II.1.1,2.9770103999999997,TJ,N2O,3.9,kg/TJ,11.61034056,Gas Oil combustion consumption by freight transport,AR-V,SESCO,annual,kg,c9c3f079-1e3c-325c-b199-700bfb71f4c7 +2011,Tucuman,II.1.1,1.7691575999999998,TJ,CO2,74100.0,kg/TJ,131094.57815999998,Gas Oil combustion consumption by freight transport,AR-T,SESCO,annual,kg,8aa0100a-bc1b-3bc9-b419-41446ea57896 +2011,Tucuman,II.1.1,1.7691575999999998,TJ,CH4,3.9,kg/TJ,6.899714639999999,Gas Oil combustion consumption by freight transport,AR-T,SESCO,annual,kg,ef8b1d9c-9225-37fe-be7b-c70f020e2356 +2011,Tucuman,II.1.1,1.7691575999999998,TJ,N2O,3.9,kg/TJ,6.899714639999999,Gas Oil combustion consumption by freight transport,AR-T,SESCO,annual,kg,ef8b1d9c-9225-37fe-be7b-c70f020e2356 +2011,Capital Federal,II.1.1,0.02364285,TJ,CO2,73300.0,kg/TJ,1733.020905,Naphtha combustion consumption by freight transport,AR-C,SESCO,annual,kg,2507b1f2-d1da-3ff4-ba6e-8ca3208922a1 +2011,Capital Federal,II.1.1,0.02364285,TJ,CH4,0.5,kg/TJ,0.011821425,Naphtha combustion consumption by freight transport,AR-C,SESCO,annual,kg,9fbc536f-a7bc-3e73-9fbf-d1062e7f509d +2011,Capital Federal,II.1.1,0.02364285,TJ,N2O,2.0,kg/TJ,0.0472857,Naphtha combustion consumption by freight transport,AR-C,SESCO,annual,kg,03d61c62-60b6-31f9-b9d1-46edfb659c87 +2011,Misiones,II.1.1,0.0010279499999999997,TJ,CO2,73300.0,kg/TJ,75.34873499999998,Naphtha combustion consumption by freight transport,AR-N,SESCO,annual,kg,0e399a06-86b9-36bd-ab3a-dff4cdcb0dce +2011,Misiones,II.1.1,0.0010279499999999997,TJ,CH4,0.5,kg/TJ,0.0005139749999999998,Naphtha combustion consumption by freight transport,AR-N,SESCO,annual,kg,f8a94eb8-cfb8-3564-9cdc-1de56e7b659b +2011,Misiones,II.1.1,0.0010279499999999997,TJ,N2O,2.0,kg/TJ,0.0020558999999999994,Naphtha combustion consumption by freight transport,AR-N,SESCO,annual,kg,9ddd844d-221a-3839-ab5a-0fcbefea97b9 +2011,Buenos Aires,II.1.1,5.36898285,TJ,CO2,73300.0,kg/TJ,393546.442905,Naphtha combustion consumption by freight transport,AR-B,SESCO,annual,kg,a2f4261d-fa48-3456-8685-37da3f3147dc +2011,Buenos Aires,II.1.1,5.36898285,TJ,CH4,0.5,kg/TJ,2.684491425,Naphtha combustion consumption by freight transport,AR-B,SESCO,annual,kg,bf895e8a-2b1b-3d26-87e1-5f5462d11ae2 +2011,Buenos Aires,II.1.1,5.36898285,TJ,N2O,2.0,kg/TJ,10.7379657,Naphtha combustion consumption by freight transport,AR-B,SESCO,annual,kg,f710b2e6-e4c1-3386-9f4a-4714934dbbce +2011,Capital Federal,II.1.1,112.9847257,TJ,CO2,73300.0,kg/TJ,8281780.39381,Naphtha combustion consumption by freight transport,AR-C,SESCO,annual,kg,f55c9be6-125c-34f0-a5e7-1ecc86891a7e +2011,Capital Federal,II.1.1,112.9847257,TJ,CH4,0.5,kg/TJ,56.49236285,Naphtha combustion consumption by freight transport,AR-C,SESCO,annual,kg,8f9f90ca-86c2-3d4a-94f3-9b18e20f3e9a +2011,Capital Federal,II.1.1,112.9847257,TJ,N2O,2.0,kg/TJ,225.9694514,Naphtha combustion consumption by freight transport,AR-C,SESCO,annual,kg,7c1455a1-3fb5-34b7-9780-da9a0a589e7b +2011,Chaco,II.1.1,0.006853,TJ,CO2,73300.0,kg/TJ,502.32489999999996,Naphtha combustion consumption by freight transport,AR-H,SESCO,annual,kg,f9167392-6169-341e-ae0e-81b19820e3d8 +2011,Chaco,II.1.1,0.006853,TJ,CH4,0.5,kg/TJ,0.0034265,Naphtha combustion consumption by freight transport,AR-H,SESCO,annual,kg,a9ed263f-255e-3299-b8ae-661d6e780717 +2011,Chaco,II.1.1,0.006853,TJ,N2O,2.0,kg/TJ,0.013706,Naphtha combustion consumption by freight transport,AR-H,SESCO,annual,kg,e2c320bf-52b9-329e-8e75-365f22d49293 +2011,Corrientes,II.1.1,0.0294679,TJ,CO2,73300.0,kg/TJ,2159.9970700000003,Naphtha combustion consumption by freight transport,AR-W,SESCO,annual,kg,c8501fdd-6c9c-3002-a3cc-e82dd8a91e10 +2011,Corrientes,II.1.1,0.0294679,TJ,CH4,0.5,kg/TJ,0.01473395,Naphtha combustion consumption by freight transport,AR-W,SESCO,annual,kg,bfd81837-71ea-37c6-aa67-7dccdcbe89ff +2011,Corrientes,II.1.1,0.0294679,TJ,N2O,2.0,kg/TJ,0.0589358,Naphtha combustion consumption by freight transport,AR-W,SESCO,annual,kg,3d8138d8-3e67-3be1-b044-1fddb159076a +2011,Córdoba,II.1.1,0.4851924,TJ,CO2,73300.0,kg/TJ,35564.602920000005,Naphtha combustion consumption by freight transport,AR-X,SESCO,annual,kg,4f49c947-1cf1-3b5c-ada1-5522f4b993b4 +2011,Córdoba,II.1.1,0.4851924,TJ,CH4,0.5,kg/TJ,0.2425962,Naphtha combustion consumption by freight transport,AR-X,SESCO,annual,kg,3b5fbd96-d05a-3dcd-8bdb-b00c0fd70118 +2011,Córdoba,II.1.1,0.4851924,TJ,N2O,2.0,kg/TJ,0.9703848,Naphtha combustion consumption by freight transport,AR-X,SESCO,annual,kg,4362ef68-81cc-3d55-994d-2cd5bb887c2e +2011,Entre Rios,II.1.1,18.8327293,TJ,CO2,73300.0,kg/TJ,1380439.05769,Naphtha combustion consumption by freight transport,AR-E,SESCO,annual,kg,81d844a4-b806-3d36-9f12-987ecbb7b46d +2011,Entre Rios,II.1.1,18.8327293,TJ,CH4,0.5,kg/TJ,9.41636465,Naphtha combustion consumption by freight transport,AR-E,SESCO,annual,kg,e5c59ef0-4b70-3c09-9852-9652e30e7a91 +2011,Entre Rios,II.1.1,18.8327293,TJ,N2O,2.0,kg/TJ,37.6654586,Naphtha combustion consumption by freight transport,AR-E,SESCO,annual,kg,b503f701-4a25-3b76-8d07-ef06ca686cdc +2011,Mendoza,II.1.1,0.00171325,TJ,CO2,73300.0,kg/TJ,125.58122499999999,Naphtha combustion consumption by freight transport,AR-M,SESCO,annual,kg,f2cddae2-7a60-35b1-94b4-f6cebdc54b4b +2011,Mendoza,II.1.1,0.00171325,TJ,CH4,0.5,kg/TJ,0.000856625,Naphtha combustion consumption by freight transport,AR-M,SESCO,annual,kg,fb47f5a0-33c0-3e15-bfe7-269510c32a91 +2011,Mendoza,II.1.1,0.00171325,TJ,N2O,2.0,kg/TJ,0.0034265,Naphtha combustion consumption by freight transport,AR-M,SESCO,annual,kg,65dc5524-e219-3bf9-b74a-75b8e1305629 +2011,Misiones,II.1.1,0.0013706,TJ,CO2,73300.0,kg/TJ,100.46498,Naphtha combustion consumption by freight transport,AR-N,SESCO,annual,kg,cd02507f-ea7c-3883-953f-0e52885288be +2011,Misiones,II.1.1,0.0013706,TJ,CH4,0.5,kg/TJ,0.0006853,Naphtha combustion consumption by freight transport,AR-N,SESCO,annual,kg,afe80d52-644e-344c-b5e7-31e68f9a9475 +2011,Misiones,II.1.1,0.0013706,TJ,N2O,2.0,kg/TJ,0.0027412,Naphtha combustion consumption by freight transport,AR-N,SESCO,annual,kg,4fdd8c9d-8340-32cf-936a-36dfd7f8e10e +2011,San Luis,II.1.1,0.020558999999999997,TJ,CO2,73300.0,kg/TJ,1506.9746999999998,Naphtha combustion consumption by freight transport,AR-D,SESCO,annual,kg,d679f321-5ae9-3498-8644-d30ab6842952 +2011,San Luis,II.1.1,0.020558999999999997,TJ,CH4,0.5,kg/TJ,0.010279499999999999,Naphtha combustion consumption by freight transport,AR-D,SESCO,annual,kg,976df112-5196-3fbb-9d76-2dbc8ac6bb20 +2011,San Luis,II.1.1,0.020558999999999997,TJ,N2O,2.0,kg/TJ,0.041117999999999995,Naphtha combustion consumption by freight transport,AR-D,SESCO,annual,kg,a2719d0d-9e2c-3450-95f7-2b7dff8093c1 +2011,Santa Fe,II.1.1,0.72059295,TJ,CO2,73300.0,kg/TJ,52819.463235,Naphtha combustion consumption by freight transport,AR-S,SESCO,annual,kg,2203c219-2b28-34cf-9271-fa56229f8c6b +2011,Santa Fe,II.1.1,0.72059295,TJ,CH4,0.5,kg/TJ,0.360296475,Naphtha combustion consumption by freight transport,AR-S,SESCO,annual,kg,d6fc3dbb-10d3-3bd1-83a9-f9a45d27691d +2011,Santa Fe,II.1.1,0.72059295,TJ,N2O,2.0,kg/TJ,1.4411859,Naphtha combustion consumption by freight transport,AR-S,SESCO,annual,kg,75682e6e-fa59-3f47-849a-24c452f9f9ed +2011,Tierra del Fuego,II.1.1,0.02638405,TJ,CO2,73300.0,kg/TJ,1933.950865,Naphtha combustion consumption by freight transport,AR-V,SESCO,annual,kg,1a4bf7c6-3110-3101-8bcf-a2f20f29912f +2011,Tierra del Fuego,II.1.1,0.02638405,TJ,CH4,0.5,kg/TJ,0.013192025,Naphtha combustion consumption by freight transport,AR-V,SESCO,annual,kg,8abaadf8-9dae-355d-a8c3-73fbb5cd9d97 +2011,Tierra del Fuego,II.1.1,0.02638405,TJ,N2O,2.0,kg/TJ,0.0527681,Naphtha combustion consumption by freight transport,AR-V,SESCO,annual,kg,a9a753af-bd31-3b1f-b621-a93de1329626 +2011,Tucuman,II.1.1,0.04625775,TJ,CO2,73300.0,kg/TJ,3390.693075,Naphtha combustion consumption by freight transport,AR-T,SESCO,annual,kg,10e08a7b-1dc9-3951-adc0-c76f2e8aca1f +2011,Tucuman,II.1.1,0.04625775,TJ,CH4,0.5,kg/TJ,0.023128875,Naphtha combustion consumption by freight transport,AR-T,SESCO,annual,kg,c01e58de-6bdb-3c4a-bb7e-6da0994c6b8c +2011,Tucuman,II.1.1,0.04625775,TJ,N2O,2.0,kg/TJ,0.0925155,Naphtha combustion consumption by freight transport,AR-T,SESCO,annual,kg,ba80ffe6-8759-3da5-9fa8-81631e51f28b +2011,Buenos Aires,II.1.1,3.4456884,TJ,CO2,73300.0,kg/TJ,252568.95971999998,Naphtha combustion consumption by freight transport,AR-B,SESCO,annual,kg,ecc52136-7e64-3846-8288-fe738284be77 +2011,Buenos Aires,II.1.1,3.4456884,TJ,CH4,0.5,kg/TJ,1.7228442,Naphtha combustion consumption by freight transport,AR-B,SESCO,annual,kg,f1420fba-2c40-3d71-9eb6-fc34fc4592e1 +2011,Buenos Aires,II.1.1,3.4456884,TJ,N2O,2.0,kg/TJ,6.8913768,Naphtha combustion consumption by freight transport,AR-B,SESCO,annual,kg,45aaa304-cbb9-3616-9fa7-d4cd9cadef59 +2011,Capital Federal,II.1.1,20.26397835,TJ,CO2,73300.0,kg/TJ,1485349.6130549998,Naphtha combustion consumption by freight transport,AR-C,SESCO,annual,kg,dc08d232-8284-3701-890e-61b7e07f042e +2011,Capital Federal,II.1.1,20.26397835,TJ,CH4,0.5,kg/TJ,10.131989175,Naphtha combustion consumption by freight transport,AR-C,SESCO,annual,kg,eb5bdac8-3ad5-335f-9b88-abb2c77102d3 +2011,Capital Federal,II.1.1,20.26397835,TJ,N2O,2.0,kg/TJ,40.5279567,Naphtha combustion consumption by freight transport,AR-C,SESCO,annual,kg,2f6979b9-df4f-309b-82cc-0a6b42a63e37 +2011,Chaco,II.1.1,0.04283125,TJ,CO2,73300.0,kg/TJ,3139.530625,Naphtha combustion consumption by freight transport,AR-H,SESCO,annual,kg,2f1cc5b0-78df-3f94-90a9-d0a7d7c65b4a +2011,Chaco,II.1.1,0.04283125,TJ,CH4,0.5,kg/TJ,0.021415625,Naphtha combustion consumption by freight transport,AR-H,SESCO,annual,kg,edb06cb2-f11f-3ba0-90f5-3dffb211b6a1 +2011,Chaco,II.1.1,0.04283125,TJ,N2O,2.0,kg/TJ,0.0856625,Naphtha combustion consumption by freight transport,AR-H,SESCO,annual,kg,a652e474-fce6-3af9-a4e2-d342b0b45ba8 +2011,Corrientes,II.1.1,0.029810549999999998,TJ,CO2,73300.0,kg/TJ,2185.113315,Naphtha combustion consumption by freight transport,AR-W,SESCO,annual,kg,4e9eb252-5696-3c0d-81ff-de884eead7a6 +2011,Corrientes,II.1.1,0.029810549999999998,TJ,CH4,0.5,kg/TJ,0.014905274999999999,Naphtha combustion consumption by freight transport,AR-W,SESCO,annual,kg,6445c37a-2049-3a02-9bca-4674303ee483 +2011,Corrientes,II.1.1,0.029810549999999998,TJ,N2O,2.0,kg/TJ,0.059621099999999996,Naphtha combustion consumption by freight transport,AR-W,SESCO,annual,kg,40fb5d8a-af0b-3d45-9518-0958eda2bc11 +2011,Córdoba,II.1.1,0.60546255,TJ,CO2,73300.0,kg/TJ,44380.40491500001,Naphtha combustion consumption by freight transport,AR-X,SESCO,annual,kg,fcc80619-c2b0-31a0-b461-92c98f299be8 +2011,Córdoba,II.1.1,0.60546255,TJ,CH4,0.5,kg/TJ,0.302731275,Naphtha combustion consumption by freight transport,AR-X,SESCO,annual,kg,69b780fa-5613-32a2-ae70-15b5e7b092f2 +2011,Córdoba,II.1.1,0.60546255,TJ,N2O,2.0,kg/TJ,1.2109251,Naphtha combustion consumption by freight transport,AR-X,SESCO,annual,kg,0bd2193f-d218-3604-ae3a-d06227d40452 +2011,Entre Rios,II.1.1,0.3789709,TJ,CO2,73300.0,kg/TJ,27778.56697,Naphtha combustion consumption by freight transport,AR-E,SESCO,annual,kg,03041fdb-b75a-3229-828b-17e4ef4bcff8 +2011,Entre Rios,II.1.1,0.3789709,TJ,CH4,0.5,kg/TJ,0.18948545,Naphtha combustion consumption by freight transport,AR-E,SESCO,annual,kg,d006d0a1-6520-38e9-bfc5-5c1419e27a56 +2011,Entre Rios,II.1.1,0.3789709,TJ,N2O,2.0,kg/TJ,0.7579418,Naphtha combustion consumption by freight transport,AR-E,SESCO,annual,kg,1d992173-e1c6-3b62-8a86-bea006801efd +2011,Misiones,II.1.1,0.0157619,TJ,CO2,73300.0,kg/TJ,1155.34727,Naphtha combustion consumption by freight transport,AR-N,SESCO,annual,kg,8a513b09-b1b4-3bfd-9274-982e8d8ca0c8 +2011,Misiones,II.1.1,0.0157619,TJ,CH4,0.5,kg/TJ,0.00788095,Naphtha combustion consumption by freight transport,AR-N,SESCO,annual,kg,4636aa7b-9684-3a1a-95c3-d456ac29f08b +2011,Misiones,II.1.1,0.0157619,TJ,N2O,2.0,kg/TJ,0.0315238,Naphtha combustion consumption by freight transport,AR-N,SESCO,annual,kg,fe48c6ba-9f19-35f0-a5e8-3126145b628d +2011,San Luis,II.1.1,0.0047971,TJ,CO2,73300.0,kg/TJ,351.62743,Naphtha combustion consumption by freight transport,AR-D,SESCO,annual,kg,f09219e9-1e2b-3188-97a6-4d9672df1cd0 +2011,San Luis,II.1.1,0.0047971,TJ,CH4,0.5,kg/TJ,0.00239855,Naphtha combustion consumption by freight transport,AR-D,SESCO,annual,kg,ddddba18-487c-3871-882c-30eddc0d3ae4 +2011,San Luis,II.1.1,0.0047971,TJ,N2O,2.0,kg/TJ,0.0095942,Naphtha combustion consumption by freight transport,AR-D,SESCO,annual,kg,f0898f12-52b4-3c54-ab37-32972e5a8dca +2011,Santa Fe,II.1.1,0.5454988,TJ,CO2,73300.0,kg/TJ,39985.06204,Naphtha combustion consumption by freight transport,AR-S,SESCO,annual,kg,9213fffe-858d-3c6d-91d8-bb36eb7809b7 +2011,Santa Fe,II.1.1,0.5454988,TJ,CH4,0.5,kg/TJ,0.2727494,Naphtha combustion consumption by freight transport,AR-S,SESCO,annual,kg,d3421af6-ee7b-3d4e-9f27-f939743ec277 +2011,Santa Fe,II.1.1,0.5454988,TJ,N2O,2.0,kg/TJ,1.0909976,Naphtha combustion consumption by freight transport,AR-S,SESCO,annual,kg,f4f3027b-5011-393e-b9a7-a43370ab8420 +2011,Tierra del Fuego,II.1.1,0.9035680499999998,TJ,CO2,73300.0,kg/TJ,66231.53806499999,Naphtha combustion consumption by freight transport,AR-V,SESCO,annual,kg,b4740e14-9ff6-3854-9f06-1426cc1fe5e5 +2011,Tierra del Fuego,II.1.1,0.9035680499999998,TJ,CH4,0.5,kg/TJ,0.4517840249999999,Naphtha combustion consumption by freight transport,AR-V,SESCO,annual,kg,66d0aa7d-4523-380d-8b18-143e5112683d +2011,Tierra del Fuego,II.1.1,0.9035680499999998,TJ,N2O,2.0,kg/TJ,1.8071360999999997,Naphtha combustion consumption by freight transport,AR-V,SESCO,annual,kg,a11252cc-f984-3514-a021-5951fdcc74d9 +2011,Tucuman,II.1.1,0.055851950000000004,TJ,CO2,73300.0,kg/TJ,4093.947935,Naphtha combustion consumption by freight transport,AR-T,SESCO,annual,kg,aa6b214c-c267-3a87-9bca-b98dd4bd7be5 +2011,Tucuman,II.1.1,0.055851950000000004,TJ,CH4,0.5,kg/TJ,0.027925975000000002,Naphtha combustion consumption by freight transport,AR-T,SESCO,annual,kg,c7eb5cef-1583-3109-bed1-ab3019ef5725 +2011,Tucuman,II.1.1,0.055851950000000004,TJ,N2O,2.0,kg/TJ,0.11170390000000001,Naphtha combustion consumption by freight transport,AR-T,SESCO,annual,kg,2814a4ba-e6e4-36a2-af59-f9266adb4b4a +2011,Buenos Aires,II.1.1,1340.8408608,TJ,CO2,74100.0,kg/TJ,99356307.78528,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,bcfe09b6-56eb-306a-af28-c170dcef8260 +2011,Buenos Aires,II.1.1,1340.8408608,TJ,CH4,3.9,kg/TJ,5229.27935712,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,5b794ea9-4c7e-3faf-8dfc-4641a9e42c9a +2011,Buenos Aires,II.1.1,1340.8408608,TJ,N2O,3.9,kg/TJ,5229.27935712,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,5b794ea9-4c7e-3faf-8dfc-4641a9e42c9a +2011,Capital Federal,II.1.1,826.4609976,TJ,CO2,74100.0,kg/TJ,61240759.92216,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,ab96f945-6f9c-3f81-82e1-db5d7d7916bf +2011,Capital Federal,II.1.1,826.4609976,TJ,CH4,3.9,kg/TJ,3223.19789064,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,925daf8b-bc1c-31f2-88ef-ee88782b01e7 +2011,Capital Federal,II.1.1,826.4609976,TJ,N2O,3.9,kg/TJ,3223.19789064,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,925daf8b-bc1c-31f2-88ef-ee88782b01e7 +2011,Chubut,II.1.1,235.36080959999998,TJ,CO2,74100.0,kg/TJ,17440235.991359998,Gas Oil combustion consumption by public passenger transport,AR-U,SESCO,annual,kg,ac5de0c4-caf8-396d-a0f0-32a1b67c138e +2011,Chubut,II.1.1,235.36080959999998,TJ,CH4,3.9,kg/TJ,917.9071574399999,Gas Oil combustion consumption by public passenger transport,AR-U,SESCO,annual,kg,7139fb7e-3d8a-35ac-8afc-bf06a455759c +2011,Chubut,II.1.1,235.36080959999998,TJ,N2O,3.9,kg/TJ,917.9071574399999,Gas Oil combustion consumption by public passenger transport,AR-U,SESCO,annual,kg,7139fb7e-3d8a-35ac-8afc-bf06a455759c +2011,Córdoba,II.1.1,13.96941,TJ,CO2,74100.0,kg/TJ,1035133.281,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,428889fa-684f-39f0-9576-01fb3be82b74 +2011,Córdoba,II.1.1,13.96941,TJ,CH4,3.9,kg/TJ,54.480699,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,dd0aef25-7d14-3003-b9dd-788824b46131 +2011,Córdoba,II.1.1,13.96941,TJ,N2O,3.9,kg/TJ,54.480699,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,dd0aef25-7d14-3003-b9dd-788824b46131 +2011,Entre Rios,II.1.1,234.65791439999998,TJ,CO2,74100.0,kg/TJ,17388151.457039997,Gas Oil combustion consumption by public passenger transport,AR-E,SESCO,annual,kg,47596a0d-35fc-3584-8e3b-82948bab8fa5 +2011,Entre Rios,II.1.1,234.65791439999998,TJ,CH4,3.9,kg/TJ,915.16586616,Gas Oil combustion consumption by public passenger transport,AR-E,SESCO,annual,kg,2437ffbd-6ce3-3f12-9708-f3027bac61c9 +2011,Entre Rios,II.1.1,234.65791439999998,TJ,N2O,3.9,kg/TJ,915.16586616,Gas Oil combustion consumption by public passenger transport,AR-E,SESCO,annual,kg,2437ffbd-6ce3-3f12-9708-f3027bac61c9 +2011,La Pampa,II.1.1,68.714688,TJ,CO2,74100.0,kg/TJ,5091758.380799999,Gas Oil combustion consumption by public passenger transport,AR-L,SESCO,annual,kg,146f4ebb-b478-3957-8d7e-d46eabefd045 +2011,La Pampa,II.1.1,68.714688,TJ,CH4,3.9,kg/TJ,267.9872832,Gas Oil combustion consumption by public passenger transport,AR-L,SESCO,annual,kg,d3587fef-235e-3887-8baf-d8e0b6b511bd +2011,La Pampa,II.1.1,68.714688,TJ,N2O,3.9,kg/TJ,267.9872832,Gas Oil combustion consumption by public passenger transport,AR-L,SESCO,annual,kg,d3587fef-235e-3887-8baf-d8e0b6b511bd +2011,Mendoza,II.1.1,97.9354068,TJ,CO2,74100.0,kg/TJ,7257013.643879999,Gas Oil combustion consumption by public passenger transport,AR-M,SESCO,annual,kg,0f19e6b4-4a6d-3eb7-898f-194c33b93c28 +2011,Mendoza,II.1.1,97.9354068,TJ,CH4,3.9,kg/TJ,381.94808651999995,Gas Oil combustion consumption by public passenger transport,AR-M,SESCO,annual,kg,094fb7e6-4f2d-34f2-8511-35490a769939 +2011,Mendoza,II.1.1,97.9354068,TJ,N2O,3.9,kg/TJ,381.94808651999995,Gas Oil combustion consumption by public passenger transport,AR-M,SESCO,annual,kg,094fb7e6-4f2d-34f2-8511-35490a769939 +2011,Misiones,II.1.1,470.65660319999995,TJ,CO2,74100.0,kg/TJ,34875654.29712,Gas Oil combustion consumption by public passenger transport,AR-N,SESCO,annual,kg,c9320f26-14a5-394a-95b0-99d6a8f078e4 +2011,Misiones,II.1.1,470.65660319999995,TJ,CH4,3.9,kg/TJ,1835.5607524799998,Gas Oil combustion consumption by public passenger transport,AR-N,SESCO,annual,kg,f1792697-0de7-38d9-aa98-6da325ea5414 +2011,Misiones,II.1.1,470.65660319999995,TJ,N2O,3.9,kg/TJ,1835.5607524799998,Gas Oil combustion consumption by public passenger transport,AR-N,SESCO,annual,kg,f1792697-0de7-38d9-aa98-6da325ea5414 +2011,Neuquén,II.1.1,25.062584400000002,TJ,CO2,74100.0,kg/TJ,1857137.5040400003,Gas Oil combustion consumption by public passenger transport,AR-Q,SESCO,annual,kg,0dd555bc-a6a7-31ce-9397-0ddbf5fd4356 +2011,Neuquén,II.1.1,25.062584400000002,TJ,CH4,3.9,kg/TJ,97.74407916000001,Gas Oil combustion consumption by public passenger transport,AR-Q,SESCO,annual,kg,7a2e945d-6c43-3657-8d19-39eb20f1a1cf +2011,Neuquén,II.1.1,25.062584400000002,TJ,N2O,3.9,kg/TJ,97.74407916000001,Gas Oil combustion consumption by public passenger transport,AR-Q,SESCO,annual,kg,7a2e945d-6c43-3657-8d19-39eb20f1a1cf +2011,Rio Negro,II.1.1,168.5384484,TJ,CO2,74100.0,kg/TJ,12488699.02644,Gas Oil combustion consumption by public passenger transport,AR-R,SESCO,annual,kg,7db80599-f60e-3bdf-b62f-7b289e8ece4d +2011,Rio Negro,II.1.1,168.5384484,TJ,CH4,3.9,kg/TJ,657.29994876,Gas Oil combustion consumption by public passenger transport,AR-R,SESCO,annual,kg,50a50c52-369a-3520-a6a8-35a9dac563cb +2011,Rio Negro,II.1.1,168.5384484,TJ,N2O,3.9,kg/TJ,657.29994876,Gas Oil combustion consumption by public passenger transport,AR-R,SESCO,annual,kg,50a50c52-369a-3520-a6a8-35a9dac563cb +2011,Salta,II.1.1,20.057435999999996,TJ,CO2,74100.0,kg/TJ,1486256.0075999997,Gas Oil combustion consumption by public passenger transport,AR-A,SESCO,annual,kg,b4e73d07-c207-3aaf-9194-49aec8f9983a +2011,Salta,II.1.1,20.057435999999996,TJ,CH4,3.9,kg/TJ,78.22400039999998,Gas Oil combustion consumption by public passenger transport,AR-A,SESCO,annual,kg,d2dc29f9-1dbe-3fb3-b77c-e865622df547 +2011,Salta,II.1.1,20.057435999999996,TJ,N2O,3.9,kg/TJ,78.22400039999998,Gas Oil combustion consumption by public passenger transport,AR-A,SESCO,annual,kg,d2dc29f9-1dbe-3fb3-b77c-e865622df547 +2011,San Juan,II.1.1,5.3020548,TJ,CO2,74100.0,kg/TJ,392882.26067999995,Gas Oil combustion consumption by public passenger transport,AR-J,SESCO,annual,kg,1a6bcf2e-9006-367a-8656-79b6bf93f0c0 +2011,San Juan,II.1.1,5.3020548,TJ,CH4,3.9,kg/TJ,20.67801372,Gas Oil combustion consumption by public passenger transport,AR-J,SESCO,annual,kg,1d9ded26-1d21-3382-8145-78bafc10ab9a +2011,San Juan,II.1.1,5.3020548,TJ,N2O,3.9,kg/TJ,20.67801372,Gas Oil combustion consumption by public passenger transport,AR-J,SESCO,annual,kg,1d9ded26-1d21-3382-8145-78bafc10ab9a +2011,San Luis,II.1.1,14.354087999999999,TJ,CO2,74100.0,kg/TJ,1063637.9208,Gas Oil combustion consumption by public passenger transport,AR-D,SESCO,annual,kg,274529bc-f234-3c49-99e2-85f205c5abbd +2011,San Luis,II.1.1,14.354087999999999,TJ,CH4,3.9,kg/TJ,55.98094319999999,Gas Oil combustion consumption by public passenger transport,AR-D,SESCO,annual,kg,a81363a2-36a8-3cb4-9492-3b25fe85500d +2011,San Luis,II.1.1,14.354087999999999,TJ,N2O,3.9,kg/TJ,55.98094319999999,Gas Oil combustion consumption by public passenger transport,AR-D,SESCO,annual,kg,a81363a2-36a8-3cb4-9492-3b25fe85500d +2011,Santa Fe,II.1.1,86.3564184,TJ,CO2,74100.0,kg/TJ,6399010.60344,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,63bcced5-b536-31b3-a197-e911bccac908 +2011,Santa Fe,II.1.1,86.3564184,TJ,CH4,3.9,kg/TJ,336.79003176,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,d4642b0e-8b67-3450-9a38-66a20b46ebe8 +2011,Santa Fe,II.1.1,86.3564184,TJ,N2O,3.9,kg/TJ,336.79003176,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,d4642b0e-8b67-3450-9a38-66a20b46ebe8 +2011,Tucuman,II.1.1,4.7862612,TJ,CO2,74100.0,kg/TJ,354661.95492,Gas Oil combustion consumption by public passenger transport,AR-T,SESCO,annual,kg,e532787b-353d-341b-a0c0-aa9e4368a438 +2011,Tucuman,II.1.1,4.7862612,TJ,CH4,3.9,kg/TJ,18.66641868,Gas Oil combustion consumption by public passenger transport,AR-T,SESCO,annual,kg,a8d05470-c989-3c12-8627-374e970f8f7a +2011,Tucuman,II.1.1,4.7862612,TJ,N2O,3.9,kg/TJ,18.66641868,Gas Oil combustion consumption by public passenger transport,AR-T,SESCO,annual,kg,a8d05470-c989-3c12-8627-374e970f8f7a +2011,Buenos Aires,II.1.1,1.2725076,TJ,CO2,74100.0,kg/TJ,94292.81315999999,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,662ad627-4dc7-3d27-ac78-8ceff0a1f8a5 +2011,Buenos Aires,II.1.1,1.2725076,TJ,CH4,3.9,kg/TJ,4.96277964,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,1cc1d8e2-ae47-3447-9506-3932221c9660 +2011,Buenos Aires,II.1.1,1.2725076,TJ,N2O,3.9,kg/TJ,4.96277964,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,1cc1d8e2-ae47-3447-9506-3932221c9660 +2011,Capital Federal,II.1.1,26.194946400000003,TJ,CO2,74100.0,kg/TJ,1941045.5282400001,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,748b136d-5188-3b46-987e-25bf724683da +2011,Capital Federal,II.1.1,26.194946400000003,TJ,CH4,3.9,kg/TJ,102.16029096000001,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,e5ab069f-8784-3655-8224-1eb58f3fdc86 +2011,Capital Federal,II.1.1,26.194946400000003,TJ,N2O,3.9,kg/TJ,102.16029096000001,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,e5ab069f-8784-3655-8224-1eb58f3fdc86 +2011,Chubut,II.1.1,2.5576572,TJ,CO2,74100.0,kg/TJ,189522.39852,Gas Oil combustion consumption by public passenger transport,AR-U,SESCO,annual,kg,e5b9154b-6259-3ffd-9a15-e9c43a9601a8 +2011,Chubut,II.1.1,2.5576572,TJ,CH4,3.9,kg/TJ,9.97486308,Gas Oil combustion consumption by public passenger transport,AR-U,SESCO,annual,kg,21e6ce2b-3edc-3894-b380-7f2b345aa5c3 +2011,Chubut,II.1.1,2.5576572,TJ,N2O,3.9,kg/TJ,9.97486308,Gas Oil combustion consumption by public passenger transport,AR-U,SESCO,annual,kg,21e6ce2b-3edc-3894-b380-7f2b345aa5c3 +2011,Córdoba,II.1.1,0.16506839999999998,TJ,CO2,74100.0,kg/TJ,12231.56844,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,25287059-77bd-36a5-b999-c01d11fd5c92 +2011,Córdoba,II.1.1,0.16506839999999998,TJ,CH4,3.9,kg/TJ,0.6437667599999999,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,3cb46e09-de86-32ca-b314-3e14fe3e44ff +2011,Córdoba,II.1.1,0.16506839999999998,TJ,N2O,3.9,kg/TJ,0.6437667599999999,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,3cb46e09-de86-32ca-b314-3e14fe3e44ff +2011,Entre Rios,II.1.1,19.0392132,TJ,CO2,74100.0,kg/TJ,1410805.6981199998,Gas Oil combustion consumption by public passenger transport,AR-E,SESCO,annual,kg,8d653517-8355-342f-8323-7cc7e0640380 +2011,Entre Rios,II.1.1,19.0392132,TJ,CH4,3.9,kg/TJ,74.25293148,Gas Oil combustion consumption by public passenger transport,AR-E,SESCO,annual,kg,652cf498-300a-3ec4-b6f1-44514cfc08a6 +2011,Entre Rios,II.1.1,19.0392132,TJ,N2O,3.9,kg/TJ,74.25293148,Gas Oil combustion consumption by public passenger transport,AR-E,SESCO,annual,kg,652cf498-300a-3ec4-b6f1-44514cfc08a6 +2011,Mendoza,II.1.1,0.1874628,TJ,CO2,74100.0,kg/TJ,13890.993480000001,Gas Oil combustion consumption by public passenger transport,AR-M,SESCO,annual,kg,5e9e4fe5-4809-3347-ab03-3e1377446c81 +2011,Mendoza,II.1.1,0.1874628,TJ,CH4,3.9,kg/TJ,0.73110492,Gas Oil combustion consumption by public passenger transport,AR-M,SESCO,annual,kg,3fe5eb41-4765-36ab-8358-1c152ac36428 +2011,Mendoza,II.1.1,0.1874628,TJ,N2O,3.9,kg/TJ,0.73110492,Gas Oil combustion consumption by public passenger transport,AR-M,SESCO,annual,kg,3fe5eb41-4765-36ab-8358-1c152ac36428 +2011,Misiones,II.1.1,1.6329851999999998,TJ,CO2,74100.0,kg/TJ,121004.20331999999,Gas Oil combustion consumption by public passenger transport,AR-N,SESCO,annual,kg,96874d3e-ae22-353d-a368-606ae9b5e8ff +2011,Misiones,II.1.1,1.6329851999999998,TJ,CH4,3.9,kg/TJ,6.368642279999999,Gas Oil combustion consumption by public passenger transport,AR-N,SESCO,annual,kg,9dbb418c-b91a-3417-a129-48096a884ab7 +2011,Misiones,II.1.1,1.6329851999999998,TJ,N2O,3.9,kg/TJ,6.368642279999999,Gas Oil combustion consumption by public passenger transport,AR-N,SESCO,annual,kg,9dbb418c-b91a-3417-a129-48096a884ab7 +2011,Neuquén,II.1.1,0.3525312,TJ,CO2,74100.0,kg/TJ,26122.56192,Gas Oil combustion consumption by public passenger transport,AR-Q,SESCO,annual,kg,165e5d07-ccea-306e-abcb-a91f9903a1b5 +2011,Neuquén,II.1.1,0.3525312,TJ,CH4,3.9,kg/TJ,1.3748716799999998,Gas Oil combustion consumption by public passenger transport,AR-Q,SESCO,annual,kg,58cc3032-9f95-3d8f-8717-434826e537c2 +2011,Neuquén,II.1.1,0.3525312,TJ,N2O,3.9,kg/TJ,1.3748716799999998,Gas Oil combustion consumption by public passenger transport,AR-Q,SESCO,annual,kg,58cc3032-9f95-3d8f-8717-434826e537c2 +2011,Rio Negro,II.1.1,0.0476784,TJ,CO2,74100.0,kg/TJ,3532.9694400000003,Gas Oil combustion consumption by public passenger transport,AR-R,SESCO,annual,kg,350e51ef-c633-3ec6-8dc7-2fd0ee719afd +2011,Rio Negro,II.1.1,0.0476784,TJ,CH4,3.9,kg/TJ,0.18594576000000002,Gas Oil combustion consumption by public passenger transport,AR-R,SESCO,annual,kg,e159ca78-cbd2-3c02-a579-d6002338fe96 +2011,Rio Negro,II.1.1,0.0476784,TJ,N2O,3.9,kg/TJ,0.18594576000000002,Gas Oil combustion consumption by public passenger transport,AR-R,SESCO,annual,kg,e159ca78-cbd2-3c02-a579-d6002338fe96 +2011,Salta,II.1.1,0.15459359999999997,TJ,CO2,74100.0,kg/TJ,11455.385759999997,Gas Oil combustion consumption by public passenger transport,AR-A,SESCO,annual,kg,69559ae2-5659-392b-bc25-5132b47ead70 +2011,Salta,II.1.1,0.15459359999999997,TJ,CH4,3.9,kg/TJ,0.6029150399999998,Gas Oil combustion consumption by public passenger transport,AR-A,SESCO,annual,kg,d9b3052e-10b7-3e5c-b142-687d70a0c85c +2011,Salta,II.1.1,0.15459359999999997,TJ,N2O,3.9,kg/TJ,0.6029150399999998,Gas Oil combustion consumption by public passenger transport,AR-A,SESCO,annual,kg,d9b3052e-10b7-3e5c-b142-687d70a0c85c +2011,San Juan,II.1.1,0.03864839999999999,TJ,CO2,74100.0,kg/TJ,2863.8464399999993,Gas Oil combustion consumption by public passenger transport,AR-J,SESCO,annual,kg,93c0d158-4bd0-3b11-9c6a-1f14f41c3601 +2011,San Juan,II.1.1,0.03864839999999999,TJ,CH4,3.9,kg/TJ,0.15072875999999996,Gas Oil combustion consumption by public passenger transport,AR-J,SESCO,annual,kg,1604c40e-7ba5-3b88-9aac-9667645158e4 +2011,San Juan,II.1.1,0.03864839999999999,TJ,N2O,3.9,kg/TJ,0.15072875999999996,Gas Oil combustion consumption by public passenger transport,AR-J,SESCO,annual,kg,1604c40e-7ba5-3b88-9aac-9667645158e4 +2011,San Luis,II.1.1,0.0242004,TJ,CO2,74100.0,kg/TJ,1793.24964,Gas Oil combustion consumption by public passenger transport,AR-D,SESCO,annual,kg,ab591f3d-2958-3f74-bece-c0232a32154c +2011,San Luis,II.1.1,0.0242004,TJ,CH4,3.9,kg/TJ,0.09438156,Gas Oil combustion consumption by public passenger transport,AR-D,SESCO,annual,kg,84c07d94-9177-37bb-b996-5c3e0c9dd32b +2011,San Luis,II.1.1,0.0242004,TJ,N2O,3.9,kg/TJ,0.09438156,Gas Oil combustion consumption by public passenger transport,AR-D,SESCO,annual,kg,84c07d94-9177-37bb-b996-5c3e0c9dd32b +2011,Santa Fe,II.1.1,0.0122808,TJ,CO2,74100.0,kg/TJ,910.0072799999999,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,2af9d74c-15ea-3182-895c-c0c1acf1bddc +2011,Santa Fe,II.1.1,0.0122808,TJ,CH4,3.9,kg/TJ,0.04789512,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,0715a717-dd66-3431-b9d0-f86a6616316e +2011,Santa Fe,II.1.1,0.0122808,TJ,N2O,3.9,kg/TJ,0.04789512,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,0715a717-dd66-3431-b9d0-f86a6616316e +2011,Tucuman,II.1.1,0.059598,TJ,CO2,74100.0,kg/TJ,4416.2118,Gas Oil combustion consumption by public passenger transport,AR-T,SESCO,annual,kg,b4439a41-5faf-350a-af19-68284f1fe06c +2011,Tucuman,II.1.1,0.059598,TJ,CH4,3.9,kg/TJ,0.23243219999999998,Gas Oil combustion consumption by public passenger transport,AR-T,SESCO,annual,kg,3fefd840-1a91-3a4b-8ab4-ad8ee951833e +2011,Tucuman,II.1.1,0.059598,TJ,N2O,3.9,kg/TJ,0.23243219999999998,Gas Oil combustion consumption by public passenger transport,AR-T,SESCO,annual,kg,3fefd840-1a91-3a4b-8ab4-ad8ee951833e +2011,Capital Federal,II.1.1,0.00171325,TJ,CO2,73300.0,kg/TJ,125.58122499999999,Naphtha combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,5489bc26-2ede-3769-b3c8-a99d01654edf +2011,Capital Federal,II.1.1,0.00171325,TJ,CH4,0.5,kg/TJ,0.000856625,Naphtha combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,983ce1a7-f5cb-301a-b2c5-88d448fa5304 +2011,Capital Federal,II.1.1,0.00171325,TJ,N2O,2.0,kg/TJ,0.0034265,Naphtha combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,e45c64d9-0e6d-38d0-954a-b6a20d4a3dd6 +2011,Capital Federal,II.1.1,0.020559000000000004,TJ,CO2,73300.0,kg/TJ,1506.9747000000002,Naphtha combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,0839258f-ae09-3cbe-b2a0-afe912c3156e +2011,Capital Federal,II.1.1,0.020559000000000004,TJ,CH4,0.5,kg/TJ,0.010279500000000002,Naphtha combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,86c4d340-6b35-3635-99cf-93be9ea09d8e +2011,Capital Federal,II.1.1,0.020559000000000004,TJ,N2O,2.0,kg/TJ,0.04111800000000001,Naphtha combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,7e4a13ab-b9b0-31e8-8128-dec33c03dc02 +2011,Córdoba,II.1.1,0.0322091,TJ,CO2,73300.0,kg/TJ,2360.92703,Naphtha combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,422b88a5-f15e-3b87-8aa5-49249e031a8d +2011,Córdoba,II.1.1,0.0322091,TJ,CH4,0.5,kg/TJ,0.01610455,Naphtha combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,7ee631a4-5fc8-3fa1-9412-31bfd70170fb +2011,Córdoba,II.1.1,0.0322091,TJ,N2O,2.0,kg/TJ,0.0644182,Naphtha combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,3b729ae9-7cc0-3422-82a9-1150c7c26656 +2011,Tucuman,II.1.1,0.00171325,TJ,CO2,73300.0,kg/TJ,125.58122499999999,Naphtha combustion consumption by public passenger transport,AR-T,SESCO,annual,kg,f5cc1e9d-7e39-3dec-b77e-bad2b0608026 +2011,Tucuman,II.1.1,0.00171325,TJ,CH4,0.5,kg/TJ,0.000856625,Naphtha combustion consumption by public passenger transport,AR-T,SESCO,annual,kg,8b766c8b-b726-3096-9b86-ea6239093267 +2011,Tucuman,II.1.1,0.00171325,TJ,N2O,2.0,kg/TJ,0.0034265,Naphtha combustion consumption by public passenger transport,AR-T,SESCO,annual,kg,817328d1-9171-37a2-bd89-54ec27a668fa +2011,Capital Federal,II.1.1,0.37314585,TJ,CO2,73300.0,kg/TJ,27351.590805,Naphtha combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,4834f926-d326-3fe8-8fd5-b98759cdc083 +2011,Capital Federal,II.1.1,0.37314585,TJ,CH4,0.5,kg/TJ,0.186572925,Naphtha combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,8ee1afc9-fea7-30c9-8d9d-11867ac69c95 +2011,Capital Federal,II.1.1,0.37314585,TJ,N2O,2.0,kg/TJ,0.7462917,Naphtha combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,d28f880a-5565-3904-bbdf-dc8bb53b32e4 +2011,Córdoba,II.1.1,0.020558999999999997,TJ,CO2,73300.0,kg/TJ,1506.9746999999998,Naphtha combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,0a63d8e6-6777-3866-bd6a-8a55b62a3132 +2011,Córdoba,II.1.1,0.020558999999999997,TJ,CH4,0.5,kg/TJ,0.010279499999999999,Naphtha combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,f63e8349-d3ed-375c-bb91-1452274e721c +2011,Córdoba,II.1.1,0.020558999999999997,TJ,N2O,2.0,kg/TJ,0.041117999999999995,Naphtha combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,280a70b3-54f4-32f7-ba19-24bf8338b352 +2011,Tucuman,II.1.1,0.00788095,TJ,CO2,73300.0,kg/TJ,577.673635,Naphtha combustion consumption by public passenger transport,AR-T,SESCO,annual,kg,48c4c980-a882-31c1-acc5-a4d8a6b707eb +2011,Tucuman,II.1.1,0.00788095,TJ,CH4,0.5,kg/TJ,0.003940475,Naphtha combustion consumption by public passenger transport,AR-T,SESCO,annual,kg,ac61c562-d8dd-309b-870d-c3e70c6cbaea +2011,Tucuman,II.1.1,0.00788095,TJ,N2O,2.0,kg/TJ,0.0157619,Naphtha combustion consumption by public passenger transport,AR-T,SESCO,annual,kg,ac20ecf7-9fed-38bf-a4ef-8b5fb8d38bb9 +2011,Mendoza,II.1.1,70.66027199999999,TJ,CO2,69300.0,kg/TJ,4896756.849599999,Motor Gasoline combustion consumption by public passenger transport,AR-M,SESCO,annual,kg,d72380e2-9c34-3f09-b53b-2c4c63e252a7 +2011,Mendoza,II.1.1,70.66027199999999,TJ,CH4,33.0,kg/TJ,2331.788976,Motor Gasoline combustion consumption by public passenger transport,AR-M,SESCO,annual,kg,e8de0528-d641-336a-85c5-49411e43d232 +2011,Mendoza,II.1.1,70.66027199999999,TJ,N2O,3.2,kg/TJ,226.1128704,Motor Gasoline combustion consumption by public passenger transport,AR-M,SESCO,annual,kg,8e3ac6c2-15a1-3b92-95d5-b1541529abf2 +2011,Buenos Aires,II.5.1,191.10635081999996,TJ,CO2,74100.0,kg/TJ,14160980.595761998,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,5cae9e7a-f206-3a80-9576-4496824ce6ce +2011,Buenos Aires,II.5.1,191.10635081999996,TJ,CH4,3.9,kg/TJ,745.3147681979998,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,11cd3ef1-0dfb-30e3-a811-241847c4da9d +2011,Buenos Aires,II.5.1,191.10635081999996,TJ,N2O,3.9,kg/TJ,745.3147681979998,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,11cd3ef1-0dfb-30e3-a811-241847c4da9d +2011,Córdoba,II.5.1,321.058283616,TJ,CO2,74100.0,kg/TJ,23790418.8159456,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,17436fbd-8306-3344-b5a2-41f30271d250 +2011,Córdoba,II.5.1,321.058283616,TJ,CH4,3.9,kg/TJ,1252.1273061023999,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,1166a2c0-84bb-36f0-bfc3-c0e68c8864f9 +2011,Córdoba,II.5.1,321.058283616,TJ,N2O,3.9,kg/TJ,1252.1273061023999,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,1166a2c0-84bb-36f0-bfc3-c0e68c8864f9 +2011,Entre Rios,II.5.1,277.385425464,TJ,CO2,74100.0,kg/TJ,20554260.0268824,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,4748b2cf-0a3a-3d10-b102-7a0677ba6841 +2011,Entre Rios,II.5.1,277.385425464,TJ,CH4,3.9,kg/TJ,1081.8031593096,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,97a14368-95fd-3046-a746-d3266152509f +2011,Entre Rios,II.5.1,277.385425464,TJ,N2O,3.9,kg/TJ,1081.8031593096,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,97a14368-95fd-3046-a746-d3266152509f +2011,La Pampa,II.5.1,14.617149959999999,TJ,CO2,74100.0,kg/TJ,1083130.812036,Gas Oil combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,9bdc48ba-06d7-3207-a1de-e15b9b0b1c2f +2011,La Pampa,II.5.1,14.617149959999999,TJ,CH4,3.9,kg/TJ,57.006884844,Gas Oil combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,c0efd6bd-f22d-3791-9dde-405bfabfbeda +2011,La Pampa,II.5.1,14.617149959999999,TJ,N2O,3.9,kg/TJ,57.006884844,Gas Oil combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,c0efd6bd-f22d-3791-9dde-405bfabfbeda +2011,Salta,II.5.1,56.501331264,TJ,CO2,74100.0,kg/TJ,4186748.6466624,Gas Oil combustion consumption by agriculture machines,AR-A,SESCO,annual,kg,3de0ab25-31e1-3a98-8f3f-d3bd84c582af +2011,Salta,II.5.1,56.501331264,TJ,CH4,3.9,kg/TJ,220.3551919296,Gas Oil combustion consumption by agriculture machines,AR-A,SESCO,annual,kg,4abe56c9-94ca-3821-b5b0-5be5e920121f +2011,Salta,II.5.1,56.501331264,TJ,N2O,3.9,kg/TJ,220.3551919296,Gas Oil combustion consumption by agriculture machines,AR-A,SESCO,annual,kg,4abe56c9-94ca-3821-b5b0-5be5e920121f +2011,Santa Fe,II.5.1,248.768069592,TJ,CO2,74100.0,kg/TJ,18433713.956767198,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,59b5db2d-bb77-3d3e-957d-009756edba55 +2011,Santa Fe,II.5.1,248.768069592,TJ,CH4,3.9,kg/TJ,970.1954714087999,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,85360e45-8e33-321e-8bbb-acf3849955db +2011,Santa Fe,II.5.1,248.768069592,TJ,N2O,3.9,kg/TJ,970.1954714087999,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,85360e45-8e33-321e-8bbb-acf3849955db +2011,Santiago del Estero,II.5.1,104.99442147599999,TJ,CO2,74100.0,kg/TJ,7780086.631371599,Gas Oil combustion consumption by agriculture machines,AR-G,SESCO,annual,kg,c638f968-e0af-3592-8093-29068e69a023 +2011,Santiago del Estero,II.5.1,104.99442147599999,TJ,CH4,3.9,kg/TJ,409.47824375639993,Gas Oil combustion consumption by agriculture machines,AR-G,SESCO,annual,kg,83c2d3a3-dd3b-307e-b867-0dbb1ff6b205 +2011,Santiago del Estero,II.5.1,104.99442147599999,TJ,N2O,3.9,kg/TJ,409.47824375639993,Gas Oil combustion consumption by agriculture machines,AR-G,SESCO,annual,kg,83c2d3a3-dd3b-307e-b867-0dbb1ff6b205 +2011,Córdoba,II.5.1,1.7076442459999999,TJ,CO2,73300.0,kg/TJ,125170.3232318,Naphtha combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,daee4a41-73cc-3927-882a-f9fdae710dbc +2011,Córdoba,II.5.1,1.7076442459999999,TJ,CH4,0.5,kg/TJ,0.8538221229999999,Naphtha combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,f0308184-65fb-31da-a15e-4415679408e4 +2011,Córdoba,II.5.1,1.7076442459999999,TJ,N2O,2.0,kg/TJ,3.4152884919999997,Naphtha combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,bc6ef69e-32f6-3d3f-a2af-1387ce1b3607 +2011,Buenos Aires,II.1.1,160.139295036,TJ,CO2,74100.0,kg/TJ,11866321.762167599,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,0ce1b0d0-67fc-375a-84e9-0de4260b8c8d +2011,Buenos Aires,II.1.1,160.139295036,TJ,CH4,3.9,kg/TJ,624.5432506404,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,a4ce5b22-f27f-3364-850b-e1979353e231 +2011,Buenos Aires,II.1.1,160.139295036,TJ,N2O,3.9,kg/TJ,624.5432506404,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,a4ce5b22-f27f-3364-850b-e1979353e231 +2011,Capital Federal,II.1.1,54.60554055600001,TJ,CO2,74100.0,kg/TJ,4046270.5551996008,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,0bfa9748-a763-381b-8a49-059d8e930151 +2011,Capital Federal,II.1.1,54.60554055600001,TJ,CH4,3.9,kg/TJ,212.96160816840003,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,594ad9c7-839b-3cc5-8d7b-f6d9b549b49d +2011,Capital Federal,II.1.1,54.60554055600001,TJ,N2O,3.9,kg/TJ,212.96160816840003,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,594ad9c7-839b-3cc5-8d7b-f6d9b549b49d +2011,Córdoba,II.1.1,16.585162608,TJ,CO2,74100.0,kg/TJ,1228960.5492528002,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,b80f4174-0b26-31d4-a18c-25d37edca007 +2011,Córdoba,II.1.1,16.585162608,TJ,CH4,3.9,kg/TJ,64.6821341712,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,50a3dffb-3377-31a5-a8b3-fc725925b549 +2011,Córdoba,II.1.1,16.585162608,TJ,N2O,3.9,kg/TJ,64.6821341712,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,50a3dffb-3377-31a5-a8b3-fc725925b549 +2011,Entre Rios,II.1.1,47.282864328,TJ,CO2,74100.0,kg/TJ,3503660.2467048,Gas Oil combustion consumption by public passenger transport,AR-E,SESCO,annual,kg,aa453193-38c4-3e74-a399-c6a331ab5541 +2011,Entre Rios,II.1.1,47.282864328,TJ,CH4,3.9,kg/TJ,184.40317087920002,Gas Oil combustion consumption by public passenger transport,AR-E,SESCO,annual,kg,b5bdd0f9-89c6-3efc-ad52-0a2876b88df6 +2011,Entre Rios,II.1.1,47.282864328,TJ,N2O,3.9,kg/TJ,184.40317087920002,Gas Oil combustion consumption by public passenger transport,AR-E,SESCO,annual,kg,b5bdd0f9-89c6-3efc-ad52-0a2876b88df6 +2011,San Juan,II.1.1,2.98833402,TJ,CO2,74100.0,kg/TJ,221435.55088199998,Gas Oil combustion consumption by public passenger transport,AR-J,SESCO,annual,kg,e135256d-9837-3b1e-8506-73b7a208cbd3 +2011,San Juan,II.1.1,2.98833402,TJ,CH4,3.9,kg/TJ,11.654502678,Gas Oil combustion consumption by public passenger transport,AR-J,SESCO,annual,kg,b9e2e277-f103-3efd-97cd-f0acb0a38855 +2011,San Juan,II.1.1,2.98833402,TJ,N2O,3.9,kg/TJ,11.654502678,Gas Oil combustion consumption by public passenger transport,AR-J,SESCO,annual,kg,b9e2e277-f103-3efd-97cd-f0acb0a38855 +2011,Santa Fe,II.1.1,306.308966964,TJ,CO2,74100.0,kg/TJ,22697494.4520324,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,270695ea-2834-39cc-b71d-1e576c4b7bca +2011,Santa Fe,II.1.1,306.308966964,TJ,CH4,3.9,kg/TJ,1194.6049711596,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,22d661c2-e80d-309d-8c3d-09c59bcdd67f +2011,Santa Fe,II.1.1,306.308966964,TJ,N2O,3.9,kg/TJ,1194.6049711596,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,22d661c2-e80d-309d-8c3d-09c59bcdd67f +2011,Buenos Aires,II.5.1,1.122562,TJ,CO2,69300.0,kg/TJ,77793.5466,Motor Gasoline combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,6a9bba89-4036-3204-9ccb-179845b2ca6f +2011,Buenos Aires,II.5.1,1.122562,TJ,CH4,33.0,kg/TJ,37.044546000000004,Motor Gasoline combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,a1eea6b2-dde1-3975-b432-7eaf2ef6602e +2011,Buenos Aires,II.5.1,1.122562,TJ,N2O,3.2,kg/TJ,3.5921984000000005,Motor Gasoline combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,e8ede0b6-45f9-30e1-9c53-0b4f4c5a5a5d +2011,Buenos Aires,II.5.1,790.515999,TJ,CO2,74100.0,kg/TJ,58577235.5259,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,371a3675-217f-3b38-ae98-17b3708cf09b +2011,Buenos Aires,II.5.1,790.515999,TJ,CH4,3.9,kg/TJ,3083.0123961,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,7e6de7c3-b32e-3b7a-84bb-c09d3259a032 +2011,Buenos Aires,II.5.1,790.515999,TJ,N2O,3.9,kg/TJ,3083.0123961,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,7e6de7c3-b32e-3b7a-84bb-c09d3259a032 +2011,Corrientes,II.5.1,26.23019952,TJ,CO2,74100.0,kg/TJ,1943657.784432,Gas Oil combustion consumption by agriculture machines,AR-W,SESCO,annual,kg,4f8765ad-5df9-395e-b049-bd5d44012482 +2011,Corrientes,II.5.1,26.23019952,TJ,CH4,3.9,kg/TJ,102.29777812799999,Gas Oil combustion consumption by agriculture machines,AR-W,SESCO,annual,kg,068f33c2-031b-3681-8a37-5058cefe687d +2011,Corrientes,II.5.1,26.23019952,TJ,N2O,3.9,kg/TJ,102.29777812799999,Gas Oil combustion consumption by agriculture machines,AR-W,SESCO,annual,kg,068f33c2-031b-3681-8a37-5058cefe687d +2011,Córdoba,II.5.1,277.35363264,TJ,CO2,74100.0,kg/TJ,20551904.178624,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,3ea6fbc7-bb6d-31ea-8608-206f1caad863 +2011,Córdoba,II.5.1,277.35363264,TJ,CH4,3.9,kg/TJ,1081.679167296,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,4160e508-d3af-33d4-8328-22c980bf8db8 +2011,Córdoba,II.5.1,277.35363264,TJ,N2O,3.9,kg/TJ,1081.679167296,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,4160e508-d3af-33d4-8328-22c980bf8db8 +2011,Entre Rios,II.5.1,180.15514608,TJ,CO2,74100.0,kg/TJ,13349496.324528001,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,5597e492-9758-3d61-9b53-75ae24f11641 +2011,Entre Rios,II.5.1,180.15514608,TJ,CH4,3.9,kg/TJ,702.605069712,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,de6d916e-f383-3567-9537-5f03cc3c8a18 +2011,Entre Rios,II.5.1,180.15514608,TJ,N2O,3.9,kg/TJ,702.605069712,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,de6d916e-f383-3567-9537-5f03cc3c8a18 +2011,La Pampa,II.5.1,17.00869128,TJ,CO2,74100.0,kg/TJ,1260344.023848,Gas Oil combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,28d9e286-581f-3bd1-8197-0e47450819a4 +2011,La Pampa,II.5.1,17.00869128,TJ,CH4,3.9,kg/TJ,66.333895992,Gas Oil combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,eee427d5-8892-3d3f-8e5d-c1da1e00b1b8 +2011,La Pampa,II.5.1,17.00869128,TJ,N2O,3.9,kg/TJ,66.333895992,Gas Oil combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,eee427d5-8892-3d3f-8e5d-c1da1e00b1b8 +2011,Rio Negro,II.5.1,1.8865114799999998,TJ,CO2,74100.0,kg/TJ,139790.500668,Gas Oil combustion consumption by agriculture machines,AR-R,SESCO,annual,kg,7509f8f5-03e5-387c-a062-0c9ce60c6a81 +2011,Rio Negro,II.5.1,1.8865114799999998,TJ,CH4,3.9,kg/TJ,7.357394771999999,Gas Oil combustion consumption by agriculture machines,AR-R,SESCO,annual,kg,03772ea3-ef6d-3e0b-b9d7-8bcbe4b0a9c2 +2011,Rio Negro,II.5.1,1.8865114799999998,TJ,N2O,3.9,kg/TJ,7.357394771999999,Gas Oil combustion consumption by agriculture machines,AR-R,SESCO,annual,kg,03772ea3-ef6d-3e0b-b9d7-8bcbe4b0a9c2 +2011,Salta,II.5.1,136.04919467999997,TJ,CO2,74100.0,kg/TJ,10081245.325787999,Gas Oil combustion consumption by agriculture machines,AR-A,SESCO,annual,kg,76a93ab3-6730-335f-9204-767af9eda4f2 +2011,Salta,II.5.1,136.04919467999997,TJ,CH4,3.9,kg/TJ,530.5918592519998,Gas Oil combustion consumption by agriculture machines,AR-A,SESCO,annual,kg,7f18915f-6ca2-3091-b2b9-38725b5ff9fe +2011,Salta,II.5.1,136.04919467999997,TJ,N2O,3.9,kg/TJ,530.5918592519998,Gas Oil combustion consumption by agriculture machines,AR-A,SESCO,annual,kg,7f18915f-6ca2-3091-b2b9-38725b5ff9fe +2011,Santa Cruz,II.5.1,14.322627479999998,TJ,CO2,74100.0,kg/TJ,1061306.696268,Gas Oil combustion consumption by agriculture machines,AR-Z,SESCO,annual,kg,2a644335-4386-3737-8135-13150bc8b050 +2011,Santa Cruz,II.5.1,14.322627479999998,TJ,CH4,3.9,kg/TJ,55.85824717199999,Gas Oil combustion consumption by agriculture machines,AR-Z,SESCO,annual,kg,a8075189-9843-37dd-befc-cad47810d104 +2011,Santa Cruz,II.5.1,14.322627479999998,TJ,N2O,3.9,kg/TJ,55.85824717199999,Gas Oil combustion consumption by agriculture machines,AR-Z,SESCO,annual,kg,a8075189-9843-37dd-befc-cad47810d104 +2011,Santa Fe,II.5.1,103.9188654,TJ,CO2,74100.0,kg/TJ,7700387.92614,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,03dfe5bc-c55d-3ffd-a0f7-76eace1c4c5d +2011,Santa Fe,II.5.1,103.9188654,TJ,CH4,3.9,kg/TJ,405.28357506,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,86d39460-83a8-3540-ab52-cd47f92ac59b +2011,Santa Fe,II.5.1,103.9188654,TJ,N2O,3.9,kg/TJ,405.28357506,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,86d39460-83a8-3540-ab52-cd47f92ac59b +2011,Santiago del Estero,II.5.1,31.133417279999996,TJ,CO2,74100.0,kg/TJ,2306986.220448,Gas Oil combustion consumption by agriculture machines,AR-G,SESCO,annual,kg,b3e0684f-fe62-3a72-ad9d-4fcfded4de82 +2011,Santiago del Estero,II.5.1,31.133417279999996,TJ,CH4,3.9,kg/TJ,121.42032739199998,Gas Oil combustion consumption by agriculture machines,AR-G,SESCO,annual,kg,ad77dc2a-6df4-3aa2-aa3a-8879769aaede +2011,Santiago del Estero,II.5.1,31.133417279999996,TJ,N2O,3.9,kg/TJ,121.42032739199998,Gas Oil combustion consumption by agriculture machines,AR-G,SESCO,annual,kg,ad77dc2a-6df4-3aa2-aa3a-8879769aaede +2011,Santiago del Estero,II.5.1,1.7927105349999999,TJ,CO2,73300.0,kg/TJ,131405.68221549998,Naphtha combustion consumption by agriculture machines,AR-G,SESCO,annual,kg,dd84d0b9-2eb7-39e7-b1d4-db13f7d5426a +2011,Santiago del Estero,II.5.1,1.7927105349999999,TJ,CH4,0.5,kg/TJ,0.8963552674999999,Naphtha combustion consumption by agriculture machines,AR-G,SESCO,annual,kg,8392dc6e-b95b-31c3-977c-d4e33fbd3e9e +2011,Santiago del Estero,II.5.1,1.7927105349999999,TJ,N2O,2.0,kg/TJ,3.5854210699999998,Naphtha combustion consumption by agriculture machines,AR-G,SESCO,annual,kg,a92aaeb6-0757-3ed3-954f-e3d0d2a0aac4 +2011,Rio Negro,II.2.1,15.248057999999999,TJ,CO2,74100.0,kg/TJ,1129881.0977999999,Gas Oil combustion consumption by railway transport,AR-R,SESCO,annual,kg,00f71a62-e943-3bde-82c6-e57acaca770f +2011,Rio Negro,II.2.1,15.248057999999999,TJ,CH4,3.9,kg/TJ,59.46742619999999,Gas Oil combustion consumption by railway transport,AR-R,SESCO,annual,kg,a38c5d5d-7ea5-3d1c-8f24-ab1061f52ce8 +2011,Rio Negro,II.2.1,15.248057999999999,TJ,N2O,3.9,kg/TJ,59.46742619999999,Gas Oil combustion consumption by railway transport,AR-R,SESCO,annual,kg,a38c5d5d-7ea5-3d1c-8f24-ab1061f52ce8 +2011,Buenos Aires,II.1.1,2.0484319999999996,TJ,CO2,69300.0,kg/TJ,141956.33759999997,Motor Gasoline combustion consumption by freight transport,AR-B,SESCO,annual,kg,8ad22042-4c15-3fc8-8241-f5d69ce7edde +2011,Buenos Aires,II.1.1,2.0484319999999996,TJ,CH4,33.0,kg/TJ,67.59825599999999,Motor Gasoline combustion consumption by freight transport,AR-B,SESCO,annual,kg,c3488938-7668-3855-af67-4a582481e39f +2011,Buenos Aires,II.1.1,2.0484319999999996,TJ,N2O,3.2,kg/TJ,6.554982399999999,Motor Gasoline combustion consumption by freight transport,AR-B,SESCO,annual,kg,02c2d67d-c5b8-37a2-9d99-9eedc0f9df73 +2011,Buenos Aires,II.1.1,439.54074024,TJ,CO2,74100.0,kg/TJ,32569968.851784,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,05cb1f8a-8db0-30fb-9c9f-8b2bcdb68724 +2011,Buenos Aires,II.1.1,439.54074024,TJ,CH4,3.9,kg/TJ,1714.208886936,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,45f16c9e-8b64-31ab-9df2-ca87c0f4d60a +2011,Buenos Aires,II.1.1,439.54074024,TJ,N2O,3.9,kg/TJ,1714.208886936,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,45f16c9e-8b64-31ab-9df2-ca87c0f4d60a +2011,Chubut,II.1.1,10.1152254,TJ,CO2,74100.0,kg/TJ,749538.20214,Gas Oil combustion consumption by freight transport,AR-U,SESCO,annual,kg,18e6601d-103b-3fd0-87b8-11780540482e +2011,Chubut,II.1.1,10.1152254,TJ,CH4,3.9,kg/TJ,39.44937906,Gas Oil combustion consumption by freight transport,AR-U,SESCO,annual,kg,a7244136-0496-350f-a5a5-e1d786b9f693 +2011,Chubut,II.1.1,10.1152254,TJ,N2O,3.9,kg/TJ,39.44937906,Gas Oil combustion consumption by freight transport,AR-U,SESCO,annual,kg,a7244136-0496-350f-a5a5-e1d786b9f693 +2011,Córdoba,II.1.1,67.45915679999999,TJ,CO2,74100.0,kg/TJ,4998723.518879999,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,126fdfdc-e036-3eea-ad38-8bb22a0bb83b +2011,Córdoba,II.1.1,67.45915679999999,TJ,CH4,3.9,kg/TJ,263.09071151999996,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,4560a04d-3d0b-316b-aa16-e7ecac6c880d +2011,Córdoba,II.1.1,67.45915679999999,TJ,N2O,3.9,kg/TJ,263.09071151999996,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,4560a04d-3d0b-316b-aa16-e7ecac6c880d +2011,San Luis,II.1.1,29.720077800000002,TJ,CO2,74100.0,kg/TJ,2202257.76498,Gas Oil combustion consumption by freight transport,AR-D,SESCO,annual,kg,fafe7a81-94b4-3eed-a5ff-91c9cf15421d +2011,San Luis,II.1.1,29.720077800000002,TJ,CH4,3.9,kg/TJ,115.90830342000001,Gas Oil combustion consumption by freight transport,AR-D,SESCO,annual,kg,da5c02bb-cc5b-3a31-a967-385b4cb60503 +2011,San Luis,II.1.1,29.720077800000002,TJ,N2O,3.9,kg/TJ,115.90830342000001,Gas Oil combustion consumption by freight transport,AR-D,SESCO,annual,kg,da5c02bb-cc5b-3a31-a967-385b4cb60503 +2011,Santa Fe,II.1.1,1.78779552,TJ,CO2,74100.0,kg/TJ,132475.648032,Gas Oil combustion consumption by freight transport,AR-S,SESCO,annual,kg,6b4360ff-72e8-3a32-8cbc-b7d9a3fa70e9 +2011,Santa Fe,II.1.1,1.78779552,TJ,CH4,3.9,kg/TJ,6.972402528,Gas Oil combustion consumption by freight transport,AR-S,SESCO,annual,kg,b6595520-2ec0-3277-9bde-e1309b90a140 +2011,Santa Fe,II.1.1,1.78779552,TJ,N2O,3.9,kg/TJ,6.972402528,Gas Oil combustion consumption by freight transport,AR-S,SESCO,annual,kg,b6595520-2ec0-3277-9bde-e1309b90a140 +2011,Buenos Aires,II.1.1,343.15090824,TJ,CO2,74100.0,kg/TJ,25427482.300584,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,b80949d7-672b-3518-9bfc-4f275b670b2f +2011,Buenos Aires,II.1.1,343.15090824,TJ,CH4,3.9,kg/TJ,1338.288542136,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,a3f8e50f-2a8c-3b92-aa24-d8d4a80f652b +2011,Buenos Aires,II.1.1,343.15090824,TJ,N2O,3.9,kg/TJ,1338.288542136,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,a3f8e50f-2a8c-3b92-aa24-d8d4a80f652b +2011,Capital Federal,II.1.1,112.68948768,TJ,CO2,74100.0,kg/TJ,8350291.037088,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,1cc46c9c-f7bc-33e6-a1fe-fb0b2ab6dd37 +2011,Capital Federal,II.1.1,112.68948768,TJ,CH4,3.9,kg/TJ,439.48900195199997,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,b6508c13-6e74-3833-8d83-48eb0a418d46 +2011,Capital Federal,II.1.1,112.68948768,TJ,N2O,3.9,kg/TJ,439.48900195199997,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,b6508c13-6e74-3833-8d83-48eb0a418d46 +2011,Córdoba,II.1.1,19.42616676,TJ,CO2,74100.0,kg/TJ,1439478.956916,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,7954ce6e-be2f-3e3e-825b-f7422a0527ee +2011,Córdoba,II.1.1,19.42616676,TJ,CH4,3.9,kg/TJ,75.762050364,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,d35adcf7-7c74-3748-a02d-2ac1ee516e3c +2011,Córdoba,II.1.1,19.42616676,TJ,N2O,3.9,kg/TJ,75.762050364,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,d35adcf7-7c74-3748-a02d-2ac1ee516e3c +2011,Entre Rios,II.1.1,26.12657124,TJ,CO2,74100.0,kg/TJ,1935978.928884,Gas Oil combustion consumption by public passenger transport,AR-E,SESCO,annual,kg,436250d3-ed39-311f-97e6-1e6b4a1215dd +2011,Entre Rios,II.1.1,26.12657124,TJ,CH4,3.9,kg/TJ,101.893627836,Gas Oil combustion consumption by public passenger transport,AR-E,SESCO,annual,kg,cb1d7c1d-06e6-3dfe-b72f-a56a98bba884 +2011,Entre Rios,II.1.1,26.12657124,TJ,N2O,3.9,kg/TJ,101.893627836,Gas Oil combustion consumption by public passenger transport,AR-E,SESCO,annual,kg,cb1d7c1d-06e6-3dfe-b72f-a56a98bba884 +2011,Formosa,II.1.1,14.387499,TJ,CO2,74100.0,kg/TJ,1066113.6759,Gas Oil combustion consumption by public passenger transport,AR-P,SESCO,annual,kg,05a07f34-e109-3825-89c1-5698a65f6c59 +2011,Formosa,II.1.1,14.387499,TJ,CH4,3.9,kg/TJ,56.111246099999995,Gas Oil combustion consumption by public passenger transport,AR-P,SESCO,annual,kg,37d90070-69b1-30ad-95ea-f99fa130d0b3 +2011,Formosa,II.1.1,14.387499,TJ,N2O,3.9,kg/TJ,56.111246099999995,Gas Oil combustion consumption by public passenger transport,AR-P,SESCO,annual,kg,37d90070-69b1-30ad-95ea-f99fa130d0b3 +2011,Neuquén,II.1.1,9.39546216,TJ,CO2,74100.0,kg/TJ,696203.7460559999,Gas Oil combustion consumption by public passenger transport,AR-Q,SESCO,annual,kg,832d7ef2-1f9c-3997-9490-774777429e0a +2011,Neuquén,II.1.1,9.39546216,TJ,CH4,3.9,kg/TJ,36.64230242399999,Gas Oil combustion consumption by public passenger transport,AR-Q,SESCO,annual,kg,e542813d-059b-3bef-8e33-6d697c7fe66d +2011,Neuquén,II.1.1,9.39546216,TJ,N2O,3.9,kg/TJ,36.64230242399999,Gas Oil combustion consumption by public passenger transport,AR-Q,SESCO,annual,kg,e542813d-059b-3bef-8e33-6d697c7fe66d +2011,Rio Negro,II.1.1,91.746606,TJ,CO2,74100.0,kg/TJ,6798423.5046,Gas Oil combustion consumption by public passenger transport,AR-R,SESCO,annual,kg,cb3dbdf8-5345-37e9-8b5e-fda580346d22 +2011,Rio Negro,II.1.1,91.746606,TJ,CH4,3.9,kg/TJ,357.8117634,Gas Oil combustion consumption by public passenger transport,AR-R,SESCO,annual,kg,cbf0a217-6bb1-3944-b336-c1bf12bb284d +2011,Rio Negro,II.1.1,91.746606,TJ,N2O,3.9,kg/TJ,357.8117634,Gas Oil combustion consumption by public passenger transport,AR-R,SESCO,annual,kg,cbf0a217-6bb1-3944-b336-c1bf12bb284d +2011,San Juan,II.1.1,4.18060104,TJ,CO2,74100.0,kg/TJ,309782.537064,Gas Oil combustion consumption by public passenger transport,AR-J,SESCO,annual,kg,d50e64e8-4e9b-323d-aacc-adca09a44d0d +2011,San Juan,II.1.1,4.18060104,TJ,CH4,3.9,kg/TJ,16.304344055999998,Gas Oil combustion consumption by public passenger transport,AR-J,SESCO,annual,kg,44abf9da-c694-3936-b9d5-ba57437e3c0c +2011,San Juan,II.1.1,4.18060104,TJ,N2O,3.9,kg/TJ,16.304344055999998,Gas Oil combustion consumption by public passenger transport,AR-J,SESCO,annual,kg,44abf9da-c694-3936-b9d5-ba57437e3c0c +2011,San Luis,II.1.1,25.851011759999995,TJ,CO2,74100.0,kg/TJ,1915559.9714159996,Gas Oil combustion consumption by public passenger transport,AR-D,SESCO,annual,kg,3395b4ed-b02e-383e-976e-8e108ffe2aa8 +2011,San Luis,II.1.1,25.851011759999995,TJ,CH4,3.9,kg/TJ,100.81894586399999,Gas Oil combustion consumption by public passenger transport,AR-D,SESCO,annual,kg,d69bd707-31e6-30b1-952e-aa6e6aaa0772 +2011,San Luis,II.1.1,25.851011759999995,TJ,N2O,3.9,kg/TJ,100.81894586399999,Gas Oil combustion consumption by public passenger transport,AR-D,SESCO,annual,kg,d69bd707-31e6-30b1-952e-aa6e6aaa0772 +2011,Santa Fe,II.1.1,209.14950084,TJ,CO2,74100.0,kg/TJ,15497978.012244001,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,ccb9b890-3ebd-3b3f-9707-27a880c178a2 +2011,Santa Fe,II.1.1,209.14950084,TJ,CH4,3.9,kg/TJ,815.683053276,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,be54f64e-39b0-345f-a494-0d0b48dac748 +2011,Santa Fe,II.1.1,209.14950084,TJ,N2O,3.9,kg/TJ,815.683053276,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,be54f64e-39b0-345f-a494-0d0b48dac748 +2011,Buenos Aires,II.5.1,399.23436,TJ,CO2,74100.0,kg/TJ,29583266.075999998,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,4d485571-d6db-3298-8b30-c71cdea924d8 +2011,Buenos Aires,II.5.1,399.23436,TJ,CH4,3.9,kg/TJ,1557.0140039999999,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,4108a433-41f1-3b77-b0e3-19eab9a5dd61 +2011,Buenos Aires,II.5.1,399.23436,TJ,N2O,3.9,kg/TJ,1557.0140039999999,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,4108a433-41f1-3b77-b0e3-19eab9a5dd61 +2011,Capital Federal,II.5.1,96.36815999999999,TJ,CO2,74100.0,kg/TJ,7140880.6559999995,Gas Oil combustion consumption by agriculture machines,AR-C,SESCO,annual,kg,5b3fd096-bf52-3b25-9b63-95b0f2a18834 +2011,Capital Federal,II.5.1,96.36815999999999,TJ,CH4,3.9,kg/TJ,375.83582399999995,Gas Oil combustion consumption by agriculture machines,AR-C,SESCO,annual,kg,b7828fbc-0bfb-3000-86bf-f0729bd796af +2011,Capital Federal,II.5.1,96.36815999999999,TJ,N2O,3.9,kg/TJ,375.83582399999995,Gas Oil combustion consumption by agriculture machines,AR-C,SESCO,annual,kg,b7828fbc-0bfb-3000-86bf-f0729bd796af +2011,Córdoba,II.5.1,149.82576,TJ,CO2,74100.0,kg/TJ,11102088.816,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,3ffdd473-2270-34e9-aca9-adc1fb24a36b +2011,Córdoba,II.5.1,149.82576,TJ,CH4,3.9,kg/TJ,584.320464,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,e3a89eb3-82a7-369f-8dd3-4b40b03d29e2 +2011,Córdoba,II.5.1,149.82576,TJ,N2O,3.9,kg/TJ,584.320464,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,e3a89eb3-82a7-369f-8dd3-4b40b03d29e2 +2011,La Pampa,II.5.1,10.90824,TJ,CO2,74100.0,kg/TJ,808300.5839999999,Gas Oil combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,75905586-909a-3191-a161-0c69da72568b +2011,La Pampa,II.5.1,10.90824,TJ,CH4,3.9,kg/TJ,42.542136,Gas Oil combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,60af8a50-eac6-394b-b1eb-4426b887bbb5 +2011,La Pampa,II.5.1,10.90824,TJ,N2O,3.9,kg/TJ,42.542136,Gas Oil combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,60af8a50-eac6-394b-b1eb-4426b887bbb5 +2011,Santa Fe,II.5.1,437.26872,TJ,CO2,74100.0,kg/TJ,32401612.152,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,ebf7c8be-4cce-3d18-92b5-b24f64e3d723 +2011,Santa Fe,II.5.1,437.26872,TJ,CH4,3.9,kg/TJ,1705.348008,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,69f2b4a1-7f9d-3417-8f71-b9b8c84d348a +2011,Santa Fe,II.5.1,437.26872,TJ,N2O,3.9,kg/TJ,1705.348008,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,69f2b4a1-7f9d-3417-8f71-b9b8c84d348a +2011,Buenos Aires,II.5.1,5.45412,TJ,CO2,74100.0,kg/TJ,404150.29199999996,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,904321a0-c766-3c8b-9c09-08ee7561f927 +2011,Buenos Aires,II.5.1,5.45412,TJ,CH4,3.9,kg/TJ,21.271068,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,30c615d9-7731-312b-b38f-83cdfa9ec271 +2011,Buenos Aires,II.5.1,5.45412,TJ,N2O,3.9,kg/TJ,21.271068,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,30c615d9-7731-312b-b38f-83cdfa9ec271 +2011,Buenos Aires,II.5.1,0.22017099999999998,TJ,CO2,71500.0,kg/TJ,15742.226499999999,Jet Kerosene combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,af1ff594-7975-3892-8ee8-57f5d3797116 +2011,Buenos Aires,II.5.1,0.22017099999999998,TJ,CH4,0.5,kg/TJ,0.11008549999999999,Jet Kerosene combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,968e7aea-8b3a-311c-acbf-fb3d53361967 +2011,Buenos Aires,II.5.1,0.22017099999999998,TJ,N2O,2.0,kg/TJ,0.44034199999999996,Jet Kerosene combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,d069242c-8d49-37e6-898f-d72a17716dec +2011,Capital Federal,II.5.1,1.02795,TJ,CO2,73300.0,kg/TJ,75348.735,Naphtha combustion consumption by agriculture machines,AR-C,SESCO,annual,kg,9921e651-5f76-3797-a577-07321592ae98 +2011,Capital Federal,II.5.1,1.02795,TJ,CH4,0.5,kg/TJ,0.513975,Naphtha combustion consumption by agriculture machines,AR-C,SESCO,annual,kg,4d82d119-938b-34ec-af09-fa1a91dd3f9e +2011,Capital Federal,II.5.1,1.02795,TJ,N2O,2.0,kg/TJ,2.0559,Naphtha combustion consumption by agriculture machines,AR-C,SESCO,annual,kg,f5f363cc-a8cc-3d4c-8347-72bdef6a680a +2011,Buenos Aires,II.2.1,387.24251999999996,TJ,CO2,74100.0,kg/TJ,28694670.731999997,Gas Oil combustion consumption by railway transport,AR-B,SESCO,annual,kg,3e996fa9-04e9-343b-9492-e307f1d7a022 +2011,Buenos Aires,II.2.1,387.24251999999996,TJ,CH4,3.9,kg/TJ,1510.2458279999998,Gas Oil combustion consumption by railway transport,AR-B,SESCO,annual,kg,9d4355de-9a0c-3d44-974f-ead0095c047c +2011,Buenos Aires,II.2.1,387.24251999999996,TJ,N2O,3.9,kg/TJ,1510.2458279999998,Gas Oil combustion consumption by railway transport,AR-B,SESCO,annual,kg,9d4355de-9a0c-3d44-974f-ead0095c047c +2011,Capital Federal,II.2.1,2252.15424,TJ,CO2,74100.0,kg/TJ,166884629.184,Gas Oil combustion consumption by railway transport,AR-C,SESCO,annual,kg,e5fff69d-79ac-3961-bb3c-b59f3ed37b3f +2011,Capital Federal,II.2.1,2252.15424,TJ,CH4,3.9,kg/TJ,8783.401536,Gas Oil combustion consumption by railway transport,AR-C,SESCO,annual,kg,29528a8e-74a4-3d21-89d9-bd9910b7b8d6 +2011,Capital Federal,II.2.1,2252.15424,TJ,N2O,3.9,kg/TJ,8783.401536,Gas Oil combustion consumption by railway transport,AR-C,SESCO,annual,kg,29528a8e-74a4-3d21-89d9-bd9910b7b8d6 +2011,Santa Fe,II.2.1,317.71152,TJ,CO2,74100.0,kg/TJ,23542423.632,Gas Oil combustion consumption by railway transport,AR-S,SESCO,annual,kg,85633c98-a905-3c3f-b9a4-73c8c84ea327 +2011,Santa Fe,II.2.1,317.71152,TJ,CH4,3.9,kg/TJ,1239.074928,Gas Oil combustion consumption by railway transport,AR-S,SESCO,annual,kg,f1638e3f-3898-38ed-9135-024886821f03 +2011,Santa Fe,II.2.1,317.71152,TJ,N2O,3.9,kg/TJ,1239.074928,Gas Oil combustion consumption by railway transport,AR-S,SESCO,annual,kg,f1638e3f-3898-38ed-9135-024886821f03 +2011,Capital Federal,II.2.1,0.5418,TJ,CO2,74100.0,kg/TJ,40147.38,Gas Oil combustion consumption by railway transport,AR-C,SESCO,annual,kg,9d20fe4c-e425-3dbd-8077-7c29f00ce4c3 +2011,Capital Federal,II.2.1,0.5418,TJ,CH4,3.9,kg/TJ,2.1130199999999997,Gas Oil combustion consumption by railway transport,AR-C,SESCO,annual,kg,0458878e-61ca-3248-af7b-f874e8e1fe8a +2011,Capital Federal,II.2.1,0.5418,TJ,N2O,3.9,kg/TJ,2.1130199999999997,Gas Oil combustion consumption by railway transport,AR-C,SESCO,annual,kg,0458878e-61ca-3248-af7b-f874e8e1fe8a +2011,Buenos Aires,II.1.1,5.6704,TJ,CO2,69300.0,kg/TJ,392958.72,Motor Gasoline combustion consumption by freight transport,AR-B,SESCO,annual,kg,e9ecf68e-bafd-3eaa-92dc-c185f502e256 +2011,Buenos Aires,II.1.1,5.6704,TJ,CH4,33.0,kg/TJ,187.1232,Motor Gasoline combustion consumption by freight transport,AR-B,SESCO,annual,kg,d36cb0c4-2d13-3562-9987-52e7bcb90641 +2011,Buenos Aires,II.1.1,5.6704,TJ,N2O,3.2,kg/TJ,18.14528,Motor Gasoline combustion consumption by freight transport,AR-B,SESCO,annual,kg,5d82299b-7bc6-3f9d-99bb-abc35f05b2e9 +2011,Capital Federal,II.1.1,5.8476,TJ,CO2,69300.0,kg/TJ,405238.68,Motor Gasoline combustion consumption by freight transport,AR-C,SESCO,annual,kg,ce425ff8-ad91-3169-bba9-2f469cfbecf0 +2011,Capital Federal,II.1.1,5.8476,TJ,CH4,33.0,kg/TJ,192.9708,Motor Gasoline combustion consumption by freight transport,AR-C,SESCO,annual,kg,197f1b6f-e53b-307c-a74d-f02a9a849ebe +2011,Capital Federal,II.1.1,5.8476,TJ,N2O,3.2,kg/TJ,18.712320000000002,Motor Gasoline combustion consumption by freight transport,AR-C,SESCO,annual,kg,ea2706e7-f02c-31fb-9c2c-c35e5b94fbe3 +2011,Buenos Aires,II.1.1,1015.40544,TJ,CO2,74100.0,kg/TJ,75241543.104,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,5c5cf758-2567-36f4-b36e-3adf7d5bcbb4 +2011,Buenos Aires,II.1.1,1015.40544,TJ,CH4,3.9,kg/TJ,3960.081216,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,afa6669b-4a47-3310-af80-1a2db5522187 +2011,Buenos Aires,II.1.1,1015.40544,TJ,N2O,3.9,kg/TJ,3960.081216,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,afa6669b-4a47-3310-af80-1a2db5522187 +2011,Capital Federal,II.1.1,362.78927999999996,TJ,CO2,74100.0,kg/TJ,26882685.648,Gas Oil combustion consumption by freight transport,AR-C,SESCO,annual,kg,2735dac4-37c9-37d9-946d-4cd6a8d0dc30 +2011,Capital Federal,II.1.1,362.78927999999996,TJ,CH4,3.9,kg/TJ,1414.878192,Gas Oil combustion consumption by freight transport,AR-C,SESCO,annual,kg,03b12414-b9c8-3fca-bd72-5e7027d4631e +2011,Capital Federal,II.1.1,362.78927999999996,TJ,N2O,3.9,kg/TJ,1414.878192,Gas Oil combustion consumption by freight transport,AR-C,SESCO,annual,kg,03b12414-b9c8-3fca-bd72-5e7027d4631e +2011,Corrientes,II.1.1,0.39732,TJ,CO2,74100.0,kg/TJ,29441.412,Gas Oil combustion consumption by freight transport,AR-W,SESCO,annual,kg,cb5f3107-29ae-345a-87c8-ead06de6f3a1 +2011,Corrientes,II.1.1,0.39732,TJ,CH4,3.9,kg/TJ,1.549548,Gas Oil combustion consumption by freight transport,AR-W,SESCO,annual,kg,ce536de0-e32d-3279-afe4-6a9a9bff6bf3 +2011,Corrientes,II.1.1,0.39732,TJ,N2O,3.9,kg/TJ,1.549548,Gas Oil combustion consumption by freight transport,AR-W,SESCO,annual,kg,ce536de0-e32d-3279-afe4-6a9a9bff6bf3 +2011,Córdoba,II.1.1,200.8272,TJ,CO2,74100.0,kg/TJ,14881295.52,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,970d4d9f-806b-3e64-98c3-e5bd48ec0a1c +2011,Córdoba,II.1.1,200.8272,TJ,CH4,3.9,kg/TJ,783.22608,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,0856219d-7a5c-35c5-bcf1-5b4e2c0466bb +2011,Córdoba,II.1.1,200.8272,TJ,N2O,3.9,kg/TJ,783.22608,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,0856219d-7a5c-35c5-bcf1-5b4e2c0466bb +2011,Entre Rios,II.1.1,9.824639999999999,TJ,CO2,74100.0,kg/TJ,728005.8239999999,Gas Oil combustion consumption by freight transport,AR-E,SESCO,annual,kg,02a25ad8-6c7e-3a1e-a0a2-1c44783cd198 +2011,Entre Rios,II.1.1,9.824639999999999,TJ,CH4,3.9,kg/TJ,38.316095999999995,Gas Oil combustion consumption by freight transport,AR-E,SESCO,annual,kg,eda26890-8fe2-3d78-b079-0519af339225 +2011,Entre Rios,II.1.1,9.824639999999999,TJ,N2O,3.9,kg/TJ,38.316095999999995,Gas Oil combustion consumption by freight transport,AR-E,SESCO,annual,kg,eda26890-8fe2-3d78-b079-0519af339225 +2011,Santa Fe,II.1.1,25.93416,TJ,CO2,74100.0,kg/TJ,1921721.2559999998,Gas Oil combustion consumption by freight transport,AR-S,SESCO,annual,kg,162b8986-906a-3d52-8c73-916e6ba90789 +2011,Santa Fe,II.1.1,25.93416,TJ,CH4,3.9,kg/TJ,101.14322399999999,Gas Oil combustion consumption by freight transport,AR-S,SESCO,annual,kg,f1729af7-dc75-38af-8802-302d7d99fc36 +2011,Santa Fe,II.1.1,25.93416,TJ,N2O,3.9,kg/TJ,101.14322399999999,Gas Oil combustion consumption by freight transport,AR-S,SESCO,annual,kg,f1729af7-dc75-38af-8802-302d7d99fc36 +2011,Santiago del Estero,II.1.1,6.1404,TJ,CO2,74100.0,kg/TJ,455003.63999999996,Gas Oil combustion consumption by freight transport,AR-G,SESCO,annual,kg,a5d45857-5023-3f59-9e69-a22beb353e63 +2011,Santiago del Estero,II.1.1,6.1404,TJ,CH4,3.9,kg/TJ,23.94756,Gas Oil combustion consumption by freight transport,AR-G,SESCO,annual,kg,1464dfd3-3e6c-30a2-b54f-7524a0541d96 +2011,Santiago del Estero,II.1.1,6.1404,TJ,N2O,3.9,kg/TJ,23.94756,Gas Oil combustion consumption by freight transport,AR-G,SESCO,annual,kg,1464dfd3-3e6c-30a2-b54f-7524a0541d96 +2011,Buenos Aires,II.1.1,4982.9346,TJ,CO2,74100.0,kg/TJ,369235453.85999995,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,62252673-914d-3820-beb4-736c6074fa95 +2011,Buenos Aires,II.1.1,4982.9346,TJ,CH4,3.9,kg/TJ,19433.444939999998,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,2e3234ce-5c11-3176-8d52-9c7240479ea9 +2011,Buenos Aires,II.1.1,4982.9346,TJ,N2O,3.9,kg/TJ,19433.444939999998,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,2e3234ce-5c11-3176-8d52-9c7240479ea9 +2011,Capital Federal,II.1.1,654.92784,TJ,CO2,74100.0,kg/TJ,48530152.944,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,87806fa5-d98e-3887-a189-ecd9374d3239 +2011,Capital Federal,II.1.1,654.92784,TJ,CH4,3.9,kg/TJ,2554.2185759999998,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,67cf2e69-f8a8-3b76-9aaf-263a1c671726 +2011,Capital Federal,II.1.1,654.92784,TJ,N2O,3.9,kg/TJ,2554.2185759999998,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,67cf2e69-f8a8-3b76-9aaf-263a1c671726 +2011,Córdoba,II.1.1,12.930959999999999,TJ,CO2,74100.0,kg/TJ,958184.1359999999,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,4adeaeb6-79d6-34fe-834d-a8881d563594 +2011,Córdoba,II.1.1,12.930959999999999,TJ,CH4,3.9,kg/TJ,50.430744,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,bb471230-168a-3e80-9e06-7cabc91f73c4 +2011,Córdoba,II.1.1,12.930959999999999,TJ,N2O,3.9,kg/TJ,50.430744,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,bb471230-168a-3e80-9e06-7cabc91f73c4 +2011,Misiones,II.1.1,18.637919999999998,TJ,CO2,74100.0,kg/TJ,1381069.8719999997,Gas Oil combustion consumption by public passenger transport,AR-N,SESCO,annual,kg,48c80bb8-094e-3df7-8af3-81cc023faee4 +2011,Misiones,II.1.1,18.637919999999998,TJ,CH4,3.9,kg/TJ,72.68788799999999,Gas Oil combustion consumption by public passenger transport,AR-N,SESCO,annual,kg,0ed00dfa-5c31-336b-8214-b2536ba0b06a +2011,Misiones,II.1.1,18.637919999999998,TJ,N2O,3.9,kg/TJ,72.68788799999999,Gas Oil combustion consumption by public passenger transport,AR-N,SESCO,annual,kg,0ed00dfa-5c31-336b-8214-b2536ba0b06a +2011,Buenos Aires,II.5.1,27.333099999999998,TJ,CO2,69300.0,kg/TJ,1894183.8299999998,Motor Gasoline combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,7b76be45-4207-31b9-86ab-421ea7773348 +2011,Buenos Aires,II.5.1,27.333099999999998,TJ,CH4,33.0,kg/TJ,901.9922999999999,Motor Gasoline combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,2c675b5c-8a82-3ff7-8798-4f442fd1eac4 +2011,Buenos Aires,II.5.1,27.333099999999998,TJ,N2O,3.2,kg/TJ,87.46592,Motor Gasoline combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,add48363-0a8a-357a-a367-33276dbd5bf7 +2011,La Pampa,II.5.1,1.1518,TJ,CO2,69300.0,kg/TJ,79819.73999999999,Motor Gasoline combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,a0c545bb-6a9d-3241-bd7c-19ba2a61dfc1 +2011,La Pampa,II.5.1,1.1518,TJ,CH4,33.0,kg/TJ,38.0094,Motor Gasoline combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,1d9771a7-bc96-3308-a489-6c0159f30e60 +2011,La Pampa,II.5.1,1.1518,TJ,N2O,3.2,kg/TJ,3.68576,Motor Gasoline combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,80d93d03-4d5b-3f88-a303-35b2eec299da +2011,Salta,II.5.1,9.0372,TJ,CO2,69300.0,kg/TJ,626277.9600000001,Motor Gasoline combustion consumption by agriculture machines,AR-A,SESCO,annual,kg,4d809d0b-00a3-35c8-977b-89f2c3986d86 +2011,Salta,II.5.1,9.0372,TJ,CH4,33.0,kg/TJ,298.2276,Motor Gasoline combustion consumption by agriculture machines,AR-A,SESCO,annual,kg,ccb10a74-9b3e-33a1-ba29-8cfcf9dab886 +2011,Salta,II.5.1,9.0372,TJ,N2O,3.2,kg/TJ,28.919040000000003,Motor Gasoline combustion consumption by agriculture machines,AR-A,SESCO,annual,kg,f867804f-9921-3a51-a661-bdf25f818f40 +2011,Buenos Aires,II.5.1,10858.177679999999,TJ,CO2,74100.0,kg/TJ,804590966.0879999,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,a377a5d4-ee15-3414-9fb5-75eb1043ddc8 +2011,Buenos Aires,II.5.1,10858.177679999999,TJ,CH4,3.9,kg/TJ,42346.892951999995,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,fd1ad9b2-3712-334c-ab95-680ea7471f2f +2011,Buenos Aires,II.5.1,10858.177679999999,TJ,N2O,3.9,kg/TJ,42346.892951999995,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,fd1ad9b2-3712-334c-ab95-680ea7471f2f +2011,Capital Federal,II.5.1,44.57208,TJ,CO2,74100.0,kg/TJ,3302791.128,Gas Oil combustion consumption by agriculture machines,AR-C,SESCO,annual,kg,57a6f1f4-cf18-351d-8db6-f2b000f8d4d8 +2011,Capital Federal,II.5.1,44.57208,TJ,CH4,3.9,kg/TJ,173.831112,Gas Oil combustion consumption by agriculture machines,AR-C,SESCO,annual,kg,0f4b578c-f36c-3d4d-88dd-16d6268731fd +2011,Capital Federal,II.5.1,44.57208,TJ,N2O,3.9,kg/TJ,173.831112,Gas Oil combustion consumption by agriculture machines,AR-C,SESCO,annual,kg,0f4b578c-f36c-3d4d-88dd-16d6268731fd +2011,Catamarca,II.5.1,143.46864,TJ,CO2,74100.0,kg/TJ,10631026.224,Gas Oil combustion consumption by agriculture machines,AR-K,SESCO,annual,kg,a34c5134-0be8-3440-a349-4779744d684c +2011,Catamarca,II.5.1,143.46864,TJ,CH4,3.9,kg/TJ,559.527696,Gas Oil combustion consumption by agriculture machines,AR-K,SESCO,annual,kg,e4a83d71-e36f-3f58-a348-d0ca7cf7a96a +2011,Catamarca,II.5.1,143.46864,TJ,N2O,3.9,kg/TJ,559.527696,Gas Oil combustion consumption by agriculture machines,AR-K,SESCO,annual,kg,e4a83d71-e36f-3f58-a348-d0ca7cf7a96a +2011,Chaco,II.5.1,1360.8932399999999,TJ,CO2,74100.0,kg/TJ,100842189.08399999,Gas Oil combustion consumption by agriculture machines,AR-H,SESCO,annual,kg,dd9184bd-678d-34fc-8449-8fb18e6b2364 +2011,Chaco,II.5.1,1360.8932399999999,TJ,CH4,3.9,kg/TJ,5307.483635999999,Gas Oil combustion consumption by agriculture machines,AR-H,SESCO,annual,kg,e6996bda-79dd-3e0e-a051-b187aec4f1fe +2011,Chaco,II.5.1,1360.8932399999999,TJ,N2O,3.9,kg/TJ,5307.483635999999,Gas Oil combustion consumption by agriculture machines,AR-H,SESCO,annual,kg,e6996bda-79dd-3e0e-a051-b187aec4f1fe +2011,Corrientes,II.5.1,418.66692,TJ,CO2,74100.0,kg/TJ,31023218.772,Gas Oil combustion consumption by agriculture machines,AR-W,SESCO,annual,kg,58583bcb-ce84-3f41-bb2b-b6ca4910df0e +2011,Corrientes,II.5.1,418.66692,TJ,CH4,3.9,kg/TJ,1632.800988,Gas Oil combustion consumption by agriculture machines,AR-W,SESCO,annual,kg,4dd42e11-22e9-3c35-9d43-af95a2979e14 +2011,Corrientes,II.5.1,418.66692,TJ,N2O,3.9,kg/TJ,1632.800988,Gas Oil combustion consumption by agriculture machines,AR-W,SESCO,annual,kg,4dd42e11-22e9-3c35-9d43-af95a2979e14 +2011,Córdoba,II.5.1,8535.40884,TJ,CO2,74100.0,kg/TJ,632473795.044,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,08925eda-d7a3-39f2-b240-4f6bdd164bf5 +2011,Córdoba,II.5.1,8535.40884,TJ,CH4,3.9,kg/TJ,33288.094476,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,ba19581b-dae5-39b6-8752-a88d6bfa19a5 +2011,Córdoba,II.5.1,8535.40884,TJ,N2O,3.9,kg/TJ,33288.094476,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,ba19581b-dae5-39b6-8752-a88d6bfa19a5 +2011,Entre Rios,II.5.1,2520.70644,TJ,CO2,74100.0,kg/TJ,186784347.204,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,6053c758-7202-3617-aad5-f61301a4d638 +2011,Entre Rios,II.5.1,2520.70644,TJ,CH4,3.9,kg/TJ,9830.755116,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,25858783-a31f-3fc0-9553-7f11737ef3f1 +2011,Entre Rios,II.5.1,2520.70644,TJ,N2O,3.9,kg/TJ,9830.755116,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,25858783-a31f-3fc0-9553-7f11737ef3f1 +2011,Formosa,II.5.1,333.42372,TJ,CO2,74100.0,kg/TJ,24706697.652,Gas Oil combustion consumption by agriculture machines,AR-P,SESCO,annual,kg,9539952f-7b36-3cfb-8ce5-3d649d95b8b9 +2011,Formosa,II.5.1,333.42372,TJ,CH4,3.9,kg/TJ,1300.352508,Gas Oil combustion consumption by agriculture machines,AR-P,SESCO,annual,kg,f9c3f3b2-9747-3003-819e-5576e4bd7580 +2011,Formosa,II.5.1,333.42372,TJ,N2O,3.9,kg/TJ,1300.352508,Gas Oil combustion consumption by agriculture machines,AR-P,SESCO,annual,kg,f9c3f3b2-9747-3003-819e-5576e4bd7580 +2011,Jujuy,II.5.1,944.10456,TJ,CO2,74100.0,kg/TJ,69958147.896,Gas Oil combustion consumption by agriculture machines,AR-Y,SESCO,annual,kg,a23a97a1-d558-3c52-8d0a-44e131795286 +2011,Jujuy,II.5.1,944.10456,TJ,CH4,3.9,kg/TJ,3682.007784,Gas Oil combustion consumption by agriculture machines,AR-Y,SESCO,annual,kg,cdfc0206-30e5-31d1-a0f4-a515d353c2ba +2011,Jujuy,II.5.1,944.10456,TJ,N2O,3.9,kg/TJ,3682.007784,Gas Oil combustion consumption by agriculture machines,AR-Y,SESCO,annual,kg,cdfc0206-30e5-31d1-a0f4-a515d353c2ba +2011,La Pampa,II.5.1,2846.2198799999996,TJ,CO2,74100.0,kg/TJ,210904893.10799998,Gas Oil combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,93c2566d-37fe-33d2-be7f-44b25ff34447 +2011,La Pampa,II.5.1,2846.2198799999996,TJ,CH4,3.9,kg/TJ,11100.257531999998,Gas Oil combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,c1c15c3d-b347-37a8-96a0-c462aa854b05 +2011,La Pampa,II.5.1,2846.2198799999996,TJ,N2O,3.9,kg/TJ,11100.257531999998,Gas Oil combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,c1c15c3d-b347-37a8-96a0-c462aa854b05 +2011,Mendoza,II.5.1,477.79535999999996,TJ,CO2,74100.0,kg/TJ,35404636.176,Gas Oil combustion consumption by agriculture machines,AR-M,SESCO,annual,kg,f59c58ea-34fb-301f-b037-e99f185aa9eb +2011,Mendoza,II.5.1,477.79535999999996,TJ,CH4,3.9,kg/TJ,1863.4019039999998,Gas Oil combustion consumption by agriculture machines,AR-M,SESCO,annual,kg,29f2f437-7f6a-37d0-b833-deb0f8178069 +2011,Mendoza,II.5.1,477.79535999999996,TJ,N2O,3.9,kg/TJ,1863.4019039999998,Gas Oil combustion consumption by agriculture machines,AR-M,SESCO,annual,kg,29f2f437-7f6a-37d0-b833-deb0f8178069 +2011,Misiones,II.5.1,845.46084,TJ,CO2,74100.0,kg/TJ,62648648.243999995,Gas Oil combustion consumption by agriculture machines,AR-N,SESCO,annual,kg,663ea7a1-9824-3f2f-ab4c-2e9931d0ac3f +2011,Misiones,II.5.1,845.46084,TJ,CH4,3.9,kg/TJ,3297.297276,Gas Oil combustion consumption by agriculture machines,AR-N,SESCO,annual,kg,7a556bfa-b68f-3fb5-aa32-9dd268df7e47 +2011,Misiones,II.5.1,845.46084,TJ,N2O,3.9,kg/TJ,3297.297276,Gas Oil combustion consumption by agriculture machines,AR-N,SESCO,annual,kg,7a556bfa-b68f-3fb5-aa32-9dd268df7e47 +2011,Rio Negro,II.5.1,199.88808,TJ,CO2,74100.0,kg/TJ,14811706.728,Gas Oil combustion consumption by agriculture machines,AR-R,SESCO,annual,kg,0006136a-e871-3eca-a30b-6e313a9d8e6c +2011,Rio Negro,II.5.1,199.88808,TJ,CH4,3.9,kg/TJ,779.563512,Gas Oil combustion consumption by agriculture machines,AR-R,SESCO,annual,kg,22ba5aa0-34ed-3570-8ae7-8f1f63f693a0 +2011,Rio Negro,II.5.1,199.88808,TJ,N2O,3.9,kg/TJ,779.563512,Gas Oil combustion consumption by agriculture machines,AR-R,SESCO,annual,kg,22ba5aa0-34ed-3570-8ae7-8f1f63f693a0 +2011,Salta,II.5.1,2341.479,TJ,CO2,74100.0,kg/TJ,173503593.89999998,Gas Oil combustion consumption by agriculture machines,AR-A,SESCO,annual,kg,0c9f04f8-f66a-3681-ae98-931e22332dc2 +2011,Salta,II.5.1,2341.479,TJ,CH4,3.9,kg/TJ,9131.7681,Gas Oil combustion consumption by agriculture machines,AR-A,SESCO,annual,kg,633e2f51-8d6d-32c2-a421-c9572bb25fa7 +2011,Salta,II.5.1,2341.479,TJ,N2O,3.9,kg/TJ,9131.7681,Gas Oil combustion consumption by agriculture machines,AR-A,SESCO,annual,kg,633e2f51-8d6d-32c2-a421-c9572bb25fa7 +2011,San Juan,II.5.1,40.56276,TJ,CO2,74100.0,kg/TJ,3005700.516,Gas Oil combustion consumption by agriculture machines,AR-J,SESCO,annual,kg,381890a2-cb41-36ed-92d5-cd8241cb10ec +2011,San Juan,II.5.1,40.56276,TJ,CH4,3.9,kg/TJ,158.194764,Gas Oil combustion consumption by agriculture machines,AR-J,SESCO,annual,kg,0aafefc2-d568-3f16-9e74-7b69bcbc0dac +2011,San Juan,II.5.1,40.56276,TJ,N2O,3.9,kg/TJ,158.194764,Gas Oil combustion consumption by agriculture machines,AR-J,SESCO,annual,kg,0aafefc2-d568-3f16-9e74-7b69bcbc0dac +2011,San Luis,II.5.1,640.70580672,TJ,CO2,74100.0,kg/TJ,47476300.277952,Gas Oil combustion consumption by agriculture machines,AR-D,SESCO,annual,kg,5c8e210b-1c1e-3ce2-a9f1-b142700bd156 +2011,San Luis,II.5.1,640.70580672,TJ,CH4,3.9,kg/TJ,2498.752646208,Gas Oil combustion consumption by agriculture machines,AR-D,SESCO,annual,kg,8bdc4459-f047-3cc0-9f95-26dc5ed1d672 +2011,San Luis,II.5.1,640.70580672,TJ,N2O,3.9,kg/TJ,2498.752646208,Gas Oil combustion consumption by agriculture machines,AR-D,SESCO,annual,kg,8bdc4459-f047-3cc0-9f95-26dc5ed1d672 +2011,Santa Fe,II.5.1,7754.964,TJ,CO2,74100.0,kg/TJ,574642832.4,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,e167721a-740c-31d5-ae44-e3e0082af734 +2011,Santa Fe,II.5.1,7754.964,TJ,CH4,3.9,kg/TJ,30244.3596,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,d7bac018-c169-38ae-982a-6c1aca59cdbc +2011,Santa Fe,II.5.1,7754.964,TJ,N2O,3.9,kg/TJ,30244.3596,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,d7bac018-c169-38ae-982a-6c1aca59cdbc +2011,Santiago del Estero,II.5.1,1885.8252,TJ,CO2,74100.0,kg/TJ,139739647.32,Gas Oil combustion consumption by agriculture machines,AR-G,SESCO,annual,kg,f6cc134d-0f2e-3167-a428-9053aa146797 +2011,Santiago del Estero,II.5.1,1885.8252,TJ,CH4,3.9,kg/TJ,7354.71828,Gas Oil combustion consumption by agriculture machines,AR-G,SESCO,annual,kg,7bbd9d52-7695-3a41-8e5f-99c064f0b485 +2011,Santiago del Estero,II.5.1,1885.8252,TJ,N2O,3.9,kg/TJ,7354.71828,Gas Oil combustion consumption by agriculture machines,AR-G,SESCO,annual,kg,7bbd9d52-7695-3a41-8e5f-99c064f0b485 +2011,Tucuman,II.5.1,1664.48184,TJ,CO2,74100.0,kg/TJ,123338104.344,Gas Oil combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,8bbe4f56-3c23-3367-81c0-7cebd9e8c5e3 +2011,Tucuman,II.5.1,1664.48184,TJ,CH4,3.9,kg/TJ,6491.479176,Gas Oil combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,24cb669b-d4be-3fe4-8a0d-494820c98917 +2011,Tucuman,II.5.1,1664.48184,TJ,N2O,3.9,kg/TJ,6491.479176,Gas Oil combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,24cb669b-d4be-3fe4-8a0d-494820c98917 +2011,Buenos Aires,II.5.1,39.9126,TJ,CO2,74100.0,kg/TJ,2957523.6599999997,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,76d5af0e-67a7-3723-bb88-90f2e30ff2cd +2011,Buenos Aires,II.5.1,39.9126,TJ,CH4,3.9,kg/TJ,155.65913999999998,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,02de41da-bd36-3f6c-af98-de29c9952de7 +2011,Buenos Aires,II.5.1,39.9126,TJ,N2O,3.9,kg/TJ,155.65913999999998,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,02de41da-bd36-3f6c-af98-de29c9952de7 +2011,Chaco,II.5.1,0.7223999999999999,TJ,CO2,74100.0,kg/TJ,53529.84,Gas Oil combustion consumption by agriculture machines,AR-H,SESCO,annual,kg,ed5efba0-778f-3b26-af2d-22efe0265797 +2011,Chaco,II.5.1,0.7223999999999999,TJ,CH4,3.9,kg/TJ,2.81736,Gas Oil combustion consumption by agriculture machines,AR-H,SESCO,annual,kg,ca12e847-7bd4-3d12-901f-712b448f3a97 +2011,Chaco,II.5.1,0.7223999999999999,TJ,N2O,3.9,kg/TJ,2.81736,Gas Oil combustion consumption by agriculture machines,AR-H,SESCO,annual,kg,ca12e847-7bd4-3d12-901f-712b448f3a97 +2011,Corrientes,II.5.1,12.244679999999999,TJ,CO2,74100.0,kg/TJ,907330.788,Gas Oil combustion consumption by agriculture machines,AR-W,SESCO,annual,kg,7eeb371c-ca7a-3ca8-836c-26db52975e85 +2011,Corrientes,II.5.1,12.244679999999999,TJ,CH4,3.9,kg/TJ,47.754251999999994,Gas Oil combustion consumption by agriculture machines,AR-W,SESCO,annual,kg,0df161fc-2881-3da3-b935-e00a007a0ecb +2011,Corrientes,II.5.1,12.244679999999999,TJ,N2O,3.9,kg/TJ,47.754251999999994,Gas Oil combustion consumption by agriculture machines,AR-W,SESCO,annual,kg,0df161fc-2881-3da3-b935-e00a007a0ecb +2011,Córdoba,II.5.1,6.537719999999999,TJ,CO2,74100.0,kg/TJ,484445.05199999997,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,63cda772-d4d9-3258-9a01-20fa3c33bf75 +2011,Córdoba,II.5.1,6.537719999999999,TJ,CH4,3.9,kg/TJ,25.497107999999997,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,dc79ec04-62ae-3bce-8081-60de027c83b9 +2011,Córdoba,II.5.1,6.537719999999999,TJ,N2O,3.9,kg/TJ,25.497107999999997,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,dc79ec04-62ae-3bce-8081-60de027c83b9 +2011,La Pampa,II.5.1,19.10748,TJ,CO2,74100.0,kg/TJ,1415864.268,Gas Oil combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,54766041-8b43-3d06-a614-4b96e3939867 +2011,La Pampa,II.5.1,19.10748,TJ,CH4,3.9,kg/TJ,74.519172,Gas Oil combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,7b5e8cf0-3c12-3110-9f97-33373c92ef88 +2011,La Pampa,II.5.1,19.10748,TJ,N2O,3.9,kg/TJ,74.519172,Gas Oil combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,7b5e8cf0-3c12-3110-9f97-33373c92ef88 +2011,Misiones,II.5.1,26.40372,TJ,CO2,74100.0,kg/TJ,1956515.652,Gas Oil combustion consumption by agriculture machines,AR-N,SESCO,annual,kg,1d76f53c-8ce4-3d8d-abe6-6458d43704d9 +2011,Misiones,II.5.1,26.40372,TJ,CH4,3.9,kg/TJ,102.974508,Gas Oil combustion consumption by agriculture machines,AR-N,SESCO,annual,kg,c2be4756-73cf-3037-9b71-da9c22020d46 +2011,Misiones,II.5.1,26.40372,TJ,N2O,3.9,kg/TJ,102.974508,Gas Oil combustion consumption by agriculture machines,AR-N,SESCO,annual,kg,c2be4756-73cf-3037-9b71-da9c22020d46 +2011,Salta,II.5.1,30.701999999999998,TJ,CO2,74100.0,kg/TJ,2275018.1999999997,Gas Oil combustion consumption by agriculture machines,AR-A,SESCO,annual,kg,36866b47-2b06-323a-9de5-357e6c42302a +2011,Salta,II.5.1,30.701999999999998,TJ,CH4,3.9,kg/TJ,119.7378,Gas Oil combustion consumption by agriculture machines,AR-A,SESCO,annual,kg,41784343-d070-3bc0-982c-3d0dae85aa80 +2011,Salta,II.5.1,30.701999999999998,TJ,N2O,3.9,kg/TJ,119.7378,Gas Oil combustion consumption by agriculture machines,AR-A,SESCO,annual,kg,41784343-d070-3bc0-982c-3d0dae85aa80 +2011,Santa Fe,II.5.1,23.62248,TJ,CO2,74100.0,kg/TJ,1750425.768,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,1e764e4b-5a61-319a-8645-73a9456a6621 +2011,Santa Fe,II.5.1,23.62248,TJ,CH4,3.9,kg/TJ,92.12767199999999,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,d7419c36-4d26-3137-94c2-0c5fcf797251 +2011,Santa Fe,II.5.1,23.62248,TJ,N2O,3.9,kg/TJ,92.12767199999999,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,d7419c36-4d26-3137-94c2-0c5fcf797251 +2011,Santiago del Estero,II.5.1,41.068439999999995,TJ,CO2,74100.0,kg/TJ,3043171.4039999996,Gas Oil combustion consumption by agriculture machines,AR-G,SESCO,annual,kg,fff07b5d-0373-37be-86cd-f341bbb8dc3f +2011,Santiago del Estero,II.5.1,41.068439999999995,TJ,CH4,3.9,kg/TJ,160.166916,Gas Oil combustion consumption by agriculture machines,AR-G,SESCO,annual,kg,f63a65ee-7fc1-30a4-8be4-08020296b841 +2011,Santiago del Estero,II.5.1,41.068439999999995,TJ,N2O,3.9,kg/TJ,160.166916,Gas Oil combustion consumption by agriculture machines,AR-G,SESCO,annual,kg,f63a65ee-7fc1-30a4-8be4-08020296b841 +2011,Tucuman,II.5.1,27.70404,TJ,CO2,74100.0,kg/TJ,2052869.3639999998,Gas Oil combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,0c15f9f1-172c-32c4-8edd-eb188fb8bbad +2011,Tucuman,II.5.1,27.70404,TJ,CH4,3.9,kg/TJ,108.045756,Gas Oil combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,62059cdb-290b-3620-b82a-81898eea36d1 +2011,Tucuman,II.5.1,27.70404,TJ,N2O,3.9,kg/TJ,108.045756,Gas Oil combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,62059cdb-290b-3620-b82a-81898eea36d1 +2011,Buenos Aires,II.5.1,25.068040999999997,TJ,CO2,71500.0,kg/TJ,1792364.9314999997,Jet Kerosene combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,c6bfefb2-f574-30b7-a05a-cd80839ec7ed +2011,Buenos Aires,II.5.1,25.068040999999997,TJ,CH4,0.5,kg/TJ,12.534020499999999,Jet Kerosene combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,93c7a2f0-958f-3a0e-a9bd-425bdb38f33f +2011,Buenos Aires,II.5.1,25.068040999999997,TJ,N2O,2.0,kg/TJ,50.136081999999995,Jet Kerosene combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,1000a6c6-fc39-3a09-a495-d5d94d61d8c7 +2011,Córdoba,II.5.1,1.0064959999999998,TJ,CO2,71500.0,kg/TJ,71964.46399999999,Jet Kerosene combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,b1fdfe89-3a5f-30d1-830c-a23346655eec +2011,Córdoba,II.5.1,1.0064959999999998,TJ,CH4,0.5,kg/TJ,0.5032479999999999,Jet Kerosene combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,4a505f02-abd5-35d4-a751-9d58fbb05ebd +2011,Córdoba,II.5.1,1.0064959999999998,TJ,N2O,2.0,kg/TJ,2.0129919999999997,Jet Kerosene combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,73ab0400-df58-3843-aa7f-44a8cecc4cc3 +2011,Entre Rios,II.5.1,0.25162399999999996,TJ,CO2,71500.0,kg/TJ,17991.115999999998,Jet Kerosene combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,c247d568-d08f-34e4-a0ba-d36c112f6006 +2011,Entre Rios,II.5.1,0.25162399999999996,TJ,CH4,0.5,kg/TJ,0.12581199999999998,Jet Kerosene combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,aac76367-1829-3b9f-993d-5226ea127951 +2011,Entre Rios,II.5.1,0.25162399999999996,TJ,N2O,2.0,kg/TJ,0.5032479999999999,Jet Kerosene combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,0fc0f7c0-95fb-373d-a5e2-370892b16287 +2011,La Pampa,II.5.1,6.730942,TJ,CO2,71500.0,kg/TJ,481262.353,Jet Kerosene combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,85a9d936-e300-36c8-956a-abf968ca3369 +2011,La Pampa,II.5.1,6.730942,TJ,CH4,0.5,kg/TJ,3.365471,Jet Kerosene combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,aaed3a23-f0a1-322a-92e7-3f56a32a06dd +2011,La Pampa,II.5.1,6.730942,TJ,N2O,2.0,kg/TJ,13.461884,Jet Kerosene combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,9f45c3e3-e1af-3552-b31b-011cef1b2735 +2011,Misiones,II.5.1,2.390428,TJ,CO2,71500.0,kg/TJ,170915.602,Jet Kerosene combustion consumption by agriculture machines,AR-N,SESCO,annual,kg,f094c6bf-b79e-3bde-b745-36543298cbe8 +2011,Misiones,II.5.1,2.390428,TJ,CH4,0.5,kg/TJ,1.195214,Jet Kerosene combustion consumption by agriculture machines,AR-N,SESCO,annual,kg,ea7823c3-7536-3fce-b6a2-8c2223d5957b +2011,Misiones,II.5.1,2.390428,TJ,N2O,2.0,kg/TJ,4.780856,Jet Kerosene combustion consumption by agriculture machines,AR-N,SESCO,annual,kg,5bfd156c-17d8-352f-9383-1b0dba5de804 +2011,Santa Cruz,II.5.1,0.157265,TJ,CO2,71500.0,kg/TJ,11244.447499999998,Jet Kerosene combustion consumption by agriculture machines,AR-Z,SESCO,annual,kg,1e25bc62-5365-36b6-899d-175f3c967028 +2011,Santa Cruz,II.5.1,0.157265,TJ,CH4,0.5,kg/TJ,0.0786325,Jet Kerosene combustion consumption by agriculture machines,AR-Z,SESCO,annual,kg,59873547-cef1-3082-b4e9-8e9023e909df +2011,Santa Cruz,II.5.1,0.157265,TJ,N2O,2.0,kg/TJ,0.31453,Jet Kerosene combustion consumption by agriculture machines,AR-Z,SESCO,annual,kg,e1e096a1-7290-3eff-a80d-3413938a9738 +2011,Santa Fe,II.5.1,16.890261,TJ,CO2,71500.0,kg/TJ,1207653.6615,Jet Kerosene combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,84375df9-ce2a-3b95-8eda-c9f9b4118aff +2011,Santa Fe,II.5.1,16.890261,TJ,CH4,0.5,kg/TJ,8.4451305,Jet Kerosene combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,a45a9b56-5e41-33e4-9288-09b16186f171 +2011,Santa Fe,II.5.1,16.890261,TJ,N2O,2.0,kg/TJ,33.780522,Jet Kerosene combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,16bcab40-d5f2-3450-a966-026d8409c946 +2011,Buenos Aires,II.5.1,17.646475,TJ,CO2,73300.0,kg/TJ,1293486.6175,Naphtha combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,1eb74892-81d4-32c2-ac65-d9d7022b7723 +2011,Buenos Aires,II.5.1,17.646475,TJ,CH4,0.5,kg/TJ,8.8232375,Naphtha combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,10a69d08-bdb0-37d3-874d-339a5c1d38f9 +2011,Buenos Aires,II.5.1,17.646475,TJ,N2O,2.0,kg/TJ,35.29295,Naphtha combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,1495cac6-f7a0-3448-873e-ba7984475cb1 +2011,Entre Rios,II.5.1,3.9747399999999997,TJ,CO2,73300.0,kg/TJ,291348.442,Naphtha combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,d53833a8-4a51-31b9-a910-6b509c4f23b7 +2011,Entre Rios,II.5.1,3.9747399999999997,TJ,CH4,0.5,kg/TJ,1.9873699999999999,Naphtha combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,66d40dc7-0da0-373f-9392-16bb929007ed +2011,Entre Rios,II.5.1,3.9747399999999997,TJ,N2O,2.0,kg/TJ,7.949479999999999,Naphtha combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,5b07dd04-ca66-3898-adcd-a31d677e3a78 +2011,Jujuy,II.5.1,0.788095,TJ,CO2,73300.0,kg/TJ,57767.3635,Naphtha combustion consumption by agriculture machines,AR-Y,SESCO,annual,kg,042a8b2e-b98e-391e-9c48-f642940e9440 +2011,Jujuy,II.5.1,0.788095,TJ,CH4,0.5,kg/TJ,0.3940475,Naphtha combustion consumption by agriculture machines,AR-Y,SESCO,annual,kg,fe1a0800-5ce3-3bc1-8535-25bc9625ce23 +2011,Jujuy,II.5.1,0.788095,TJ,N2O,2.0,kg/TJ,1.57619,Naphtha combustion consumption by agriculture machines,AR-Y,SESCO,annual,kg,c4f7ae84-9f27-311a-8314-84c44e193460 +2011,La Pampa,II.5.1,1.610455,TJ,CO2,73300.0,kg/TJ,118046.3515,Naphtha combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,556c9148-0fff-3a4e-93cd-41209cfc2a2b +2011,La Pampa,II.5.1,1.610455,TJ,CH4,0.5,kg/TJ,0.8052275,Naphtha combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,ae0f812a-773f-3550-b5d1-a983f544eed0 +2011,La Pampa,II.5.1,1.610455,TJ,N2O,2.0,kg/TJ,3.22091,Naphtha combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,a5a6ada9-50fa-3789-87d7-feeed3558262 +2011,Salta,II.5.1,0.89089,TJ,CO2,73300.0,kg/TJ,65302.236999999994,Naphtha combustion consumption by agriculture machines,AR-A,SESCO,annual,kg,0e9ea60e-d77e-3b13-83f8-e1fab7a6d89a +2011,Salta,II.5.1,0.89089,TJ,CH4,0.5,kg/TJ,0.445445,Naphtha combustion consumption by agriculture machines,AR-A,SESCO,annual,kg,0c1cf849-1b03-3e65-b508-29a21c265213 +2011,Salta,II.5.1,0.89089,TJ,N2O,2.0,kg/TJ,1.78178,Naphtha combustion consumption by agriculture machines,AR-A,SESCO,annual,kg,2da72c97-628c-3751-a5ea-a4c1bc5221e2 +2011,Santa Fe,II.5.1,78.8095,TJ,CO2,73300.0,kg/TJ,5776736.35,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,3cdee612-5c97-3169-956c-90514e18fc9a +2011,Santa Fe,II.5.1,78.8095,TJ,CH4,0.5,kg/TJ,39.40475,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,54a04b25-5f31-3dba-ae01-ed6dd2606c68 +2011,Santa Fe,II.5.1,78.8095,TJ,N2O,2.0,kg/TJ,157.619,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,5d9aeef8-3957-3642-a635-b0ade9ecb2cd +2011,Santiago del Estero,II.5.1,1.3020699999999998,TJ,CO2,73300.0,kg/TJ,95441.73099999999,Naphtha combustion consumption by agriculture machines,AR-G,SESCO,annual,kg,a83cff08-3c0a-35f2-82d7-7405c243cfd2 +2011,Santiago del Estero,II.5.1,1.3020699999999998,TJ,CH4,0.5,kg/TJ,0.6510349999999999,Naphtha combustion consumption by agriculture machines,AR-G,SESCO,annual,kg,76dd34a7-ca3e-3b4c-a044-52762f408263 +2011,Santiago del Estero,II.5.1,1.3020699999999998,TJ,N2O,2.0,kg/TJ,2.6041399999999997,Naphtha combustion consumption by agriculture machines,AR-G,SESCO,annual,kg,19a83485-f434-3aef-b0dd-725b9f5c3fff +2011,Buenos Aires,II.5.1,0.47970999999999997,TJ,CO2,73300.0,kg/TJ,35162.742999999995,Naphtha combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,4e0cb8e7-ddec-31bf-8c7a-2329cf0524e7 +2011,Buenos Aires,II.5.1,0.47970999999999997,TJ,CH4,0.5,kg/TJ,0.23985499999999998,Naphtha combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,cc9b4950-c8e2-3f1f-8e9e-e571229e1e8e +2011,Buenos Aires,II.5.1,0.47970999999999997,TJ,N2O,2.0,kg/TJ,0.9594199999999999,Naphtha combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,4bb28b17-573c-378c-ad28-b560771665e5 +2011,Buenos Aires,II.1.1,34.111,TJ,CO2,69300.0,kg/TJ,2363892.3,Motor Gasoline combustion consumption by freight transport,AR-B,SESCO,annual,kg,c76812d3-9a5b-36b3-84d4-c4611cee0c62 +2011,Buenos Aires,II.1.1,34.111,TJ,CH4,33.0,kg/TJ,1125.663,Motor Gasoline combustion consumption by freight transport,AR-B,SESCO,annual,kg,9f58ed59-2d24-370e-abc0-10341b78ab3c +2011,Buenos Aires,II.1.1,34.111,TJ,N2O,3.2,kg/TJ,109.1552,Motor Gasoline combustion consumption by freight transport,AR-B,SESCO,annual,kg,e90c69b9-4c15-379f-9553-dbd51f31f9cd +2011,Capital Federal,II.1.1,3.4997,TJ,CO2,69300.0,kg/TJ,242529.21,Motor Gasoline combustion consumption by freight transport,AR-C,SESCO,annual,kg,2e5732e8-de59-3006-adbf-b551d2f36d89 +2011,Capital Federal,II.1.1,3.4997,TJ,CH4,33.0,kg/TJ,115.4901,Motor Gasoline combustion consumption by freight transport,AR-C,SESCO,annual,kg,1253dbcd-491a-3769-a8a1-eb20eccc6867 +2011,Capital Federal,II.1.1,3.4997,TJ,N2O,3.2,kg/TJ,11.19904,Motor Gasoline combustion consumption by freight transport,AR-C,SESCO,annual,kg,333c7b5a-bcce-38e0-9d3c-2cedcee5c9fd +2011,Buenos Aires,II.1.1,6696.53964,TJ,CO2,74100.0,kg/TJ,496213587.324,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,c69c1eea-9e49-32de-9b85-c77f9620eda6 +2011,Buenos Aires,II.1.1,6696.53964,TJ,CH4,3.9,kg/TJ,26116.504596,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,a8daac81-7338-34cd-bc2f-eeed5c0aea3e +2011,Buenos Aires,II.1.1,6696.53964,TJ,N2O,3.9,kg/TJ,26116.504596,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,a8daac81-7338-34cd-bc2f-eeed5c0aea3e +2011,Capital Federal,II.1.1,713.2977599999999,TJ,CO2,74100.0,kg/TJ,52855364.015999995,Gas Oil combustion consumption by freight transport,AR-C,SESCO,annual,kg,0d027582-c5f4-329f-ac24-0616c6e662f9 +2011,Capital Federal,II.1.1,713.2977599999999,TJ,CH4,3.9,kg/TJ,2781.8612639999997,Gas Oil combustion consumption by freight transport,AR-C,SESCO,annual,kg,d356e37f-0644-3b2c-bb20-e441dfd15677 +2011,Capital Federal,II.1.1,713.2977599999999,TJ,N2O,3.9,kg/TJ,2781.8612639999997,Gas Oil combustion consumption by freight transport,AR-C,SESCO,annual,kg,d356e37f-0644-3b2c-bb20-e441dfd15677 +2011,Catamarca,II.1.1,26.07864,TJ,CO2,74100.0,kg/TJ,1932427.224,Gas Oil combustion consumption by freight transport,AR-K,SESCO,annual,kg,2bb42240-35bd-3c08-97bc-c37afcac0ddd +2011,Catamarca,II.1.1,26.07864,TJ,CH4,3.9,kg/TJ,101.706696,Gas Oil combustion consumption by freight transport,AR-K,SESCO,annual,kg,2e522ac1-b46b-30c6-a2f2-1ee717bd9912 +2011,Catamarca,II.1.1,26.07864,TJ,N2O,3.9,kg/TJ,101.706696,Gas Oil combustion consumption by freight transport,AR-K,SESCO,annual,kg,2e522ac1-b46b-30c6-a2f2-1ee717bd9912 +2011,Chaco,II.1.1,111.89976,TJ,CO2,74100.0,kg/TJ,8291772.216,Gas Oil combustion consumption by freight transport,AR-H,SESCO,annual,kg,9a40a1f0-9fa6-33a5-9517-34471b964860 +2011,Chaco,II.1.1,111.89976,TJ,CH4,3.9,kg/TJ,436.409064,Gas Oil combustion consumption by freight transport,AR-H,SESCO,annual,kg,da2a6807-a087-347b-9e05-755616151460 +2011,Chaco,II.1.1,111.89976,TJ,N2O,3.9,kg/TJ,436.409064,Gas Oil combustion consumption by freight transport,AR-H,SESCO,annual,kg,da2a6807-a087-347b-9e05-755616151460 +2011,Chubut,II.1.1,230.30112,TJ,CO2,74100.0,kg/TJ,17065312.992,Gas Oil combustion consumption by freight transport,AR-U,SESCO,annual,kg,e3219bf5-f1ad-32bb-8cc4-b4abe3fa3b9a +2011,Chubut,II.1.1,230.30112,TJ,CH4,3.9,kg/TJ,898.174368,Gas Oil combustion consumption by freight transport,AR-U,SESCO,annual,kg,25adaacc-78b3-3db4-8147-6af5c37b44b0 +2011,Chubut,II.1.1,230.30112,TJ,N2O,3.9,kg/TJ,898.174368,Gas Oil combustion consumption by freight transport,AR-U,SESCO,annual,kg,25adaacc-78b3-3db4-8147-6af5c37b44b0 +2011,Corrientes,II.1.1,458.76012,TJ,CO2,74100.0,kg/TJ,33994124.892,Gas Oil combustion consumption by freight transport,AR-W,SESCO,annual,kg,2d45eeec-d6d9-380b-b2ee-fae3cae5a4f0 +2011,Corrientes,II.1.1,458.76012,TJ,CH4,3.9,kg/TJ,1789.164468,Gas Oil combustion consumption by freight transport,AR-W,SESCO,annual,kg,06416850-46f4-38f1-8e50-b2dbdab9b23b +2011,Corrientes,II.1.1,458.76012,TJ,N2O,3.9,kg/TJ,1789.164468,Gas Oil combustion consumption by freight transport,AR-W,SESCO,annual,kg,06416850-46f4-38f1-8e50-b2dbdab9b23b +2011,Córdoba,II.1.1,1535.6779199999999,TJ,CO2,74100.0,kg/TJ,113793733.872,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,eb2f7b61-b2a2-348e-b861-f690e05d073a +2011,Córdoba,II.1.1,1535.6779199999999,TJ,CH4,3.9,kg/TJ,5989.143888,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,e01e62b9-da78-3ebe-becf-3d5fc4db26b5 +2011,Córdoba,II.1.1,1535.6779199999999,TJ,N2O,3.9,kg/TJ,5989.143888,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,e01e62b9-da78-3ebe-becf-3d5fc4db26b5 +2011,Entre Rios,II.1.1,171.0282,TJ,CO2,74100.0,kg/TJ,12673189.62,Gas Oil combustion consumption by freight transport,AR-E,SESCO,annual,kg,603814e3-ede6-306c-a1ce-aeb24332771a +2011,Entre Rios,II.1.1,171.0282,TJ,CH4,3.9,kg/TJ,667.0099799999999,Gas Oil combustion consumption by freight transport,AR-E,SESCO,annual,kg,4c4f0730-0bd1-3af2-b4f7-a6f8311d0a98 +2011,Entre Rios,II.1.1,171.0282,TJ,N2O,3.9,kg/TJ,667.0099799999999,Gas Oil combustion consumption by freight transport,AR-E,SESCO,annual,kg,4c4f0730-0bd1-3af2-b4f7-a6f8311d0a98 +2011,Formosa,II.1.1,5.56248,TJ,CO2,74100.0,kg/TJ,412179.768,Gas Oil combustion consumption by freight transport,AR-P,SESCO,annual,kg,b2396f77-23e6-30f3-b01e-671320d39669 +2011,Formosa,II.1.1,5.56248,TJ,CH4,3.9,kg/TJ,21.693672,Gas Oil combustion consumption by freight transport,AR-P,SESCO,annual,kg,2e1858f4-834d-3f7c-9554-193012ed8010 +2011,Formosa,II.1.1,5.56248,TJ,N2O,3.9,kg/TJ,21.693672,Gas Oil combustion consumption by freight transport,AR-P,SESCO,annual,kg,2e1858f4-834d-3f7c-9554-193012ed8010 +2011,Jujuy,II.1.1,30.701999999999998,TJ,CO2,74100.0,kg/TJ,2275018.1999999997,Gas Oil combustion consumption by freight transport,AR-Y,SESCO,annual,kg,4f73da51-99d2-33fd-935f-fd8862dee7f6 +2011,Jujuy,II.1.1,30.701999999999998,TJ,CH4,3.9,kg/TJ,119.7378,Gas Oil combustion consumption by freight transport,AR-Y,SESCO,annual,kg,35c15289-7658-3731-8c20-b85c9af13c26 +2011,Jujuy,II.1.1,30.701999999999998,TJ,N2O,3.9,kg/TJ,119.7378,Gas Oil combustion consumption by freight transport,AR-Y,SESCO,annual,kg,35c15289-7658-3731-8c20-b85c9af13c26 +2011,La Pampa,II.1.1,143.90207999999998,TJ,CO2,74100.0,kg/TJ,10663144.127999999,Gas Oil combustion consumption by freight transport,AR-L,SESCO,annual,kg,e6d5e221-8f0e-359e-ad01-865cd126a03c +2011,La Pampa,II.1.1,143.90207999999998,TJ,CH4,3.9,kg/TJ,561.2181119999999,Gas Oil combustion consumption by freight transport,AR-L,SESCO,annual,kg,1e7c9103-2918-35d8-858f-0cbcf72536f9 +2011,La Pampa,II.1.1,143.90207999999998,TJ,N2O,3.9,kg/TJ,561.2181119999999,Gas Oil combustion consumption by freight transport,AR-L,SESCO,annual,kg,1e7c9103-2918-35d8-858f-0cbcf72536f9 +2011,La Rioja,II.1.1,11.41392,TJ,CO2,74100.0,kg/TJ,845771.472,Gas Oil combustion consumption by freight transport,AR-F,SESCO,annual,kg,512aff53-cbe0-3415-8927-df5099455ace +2011,La Rioja,II.1.1,11.41392,TJ,CH4,3.9,kg/TJ,44.51428799999999,Gas Oil combustion consumption by freight transport,AR-F,SESCO,annual,kg,9934bc0d-53b2-3bbd-9530-6012220c0c52 +2011,La Rioja,II.1.1,11.41392,TJ,N2O,3.9,kg/TJ,44.51428799999999,Gas Oil combustion consumption by freight transport,AR-F,SESCO,annual,kg,9934bc0d-53b2-3bbd-9530-6012220c0c52 +2011,Mendoza,II.1.1,805.1148,TJ,CO2,74100.0,kg/TJ,59659006.67999999,Gas Oil combustion consumption by freight transport,AR-M,SESCO,annual,kg,40414cac-b3de-38cc-9376-6cf7d0d4d453 +2011,Mendoza,II.1.1,805.1148,TJ,CH4,3.9,kg/TJ,3139.9477199999997,Gas Oil combustion consumption by freight transport,AR-M,SESCO,annual,kg,bd0e8352-492b-35e6-8a5e-885293d7a9db +2011,Mendoza,II.1.1,805.1148,TJ,N2O,3.9,kg/TJ,3139.9477199999997,Gas Oil combustion consumption by freight transport,AR-M,SESCO,annual,kg,bd0e8352-492b-35e6-8a5e-885293d7a9db +2011,Misiones,II.1.1,121.36319999999999,TJ,CO2,74100.0,kg/TJ,8993013.12,Gas Oil combustion consumption by freight transport,AR-N,SESCO,annual,kg,9dba301c-9954-39ed-9287-d68b575f34bc +2011,Misiones,II.1.1,121.36319999999999,TJ,CH4,3.9,kg/TJ,473.31647999999996,Gas Oil combustion consumption by freight transport,AR-N,SESCO,annual,kg,34986d83-d729-3aae-be1f-d7dae92e513b +2011,Misiones,II.1.1,121.36319999999999,TJ,N2O,3.9,kg/TJ,473.31647999999996,Gas Oil combustion consumption by freight transport,AR-N,SESCO,annual,kg,34986d83-d729-3aae-be1f-d7dae92e513b +2011,Neuquén,II.1.1,416.49971999999997,TJ,CO2,74100.0,kg/TJ,30862629.251999997,Gas Oil combustion consumption by freight transport,AR-Q,SESCO,annual,kg,4831b9b8-4d4f-398e-8951-c58f63fb6fad +2011,Neuquén,II.1.1,416.49971999999997,TJ,CH4,3.9,kg/TJ,1624.348908,Gas Oil combustion consumption by freight transport,AR-Q,SESCO,annual,kg,7553f31e-ee5e-3878-a73c-29a0814f315e +2011,Neuquén,II.1.1,416.49971999999997,TJ,N2O,3.9,kg/TJ,1624.348908,Gas Oil combustion consumption by freight transport,AR-Q,SESCO,annual,kg,7553f31e-ee5e-3878-a73c-29a0814f315e +2011,Rio Negro,II.1.1,55.841519999999996,TJ,CO2,74100.0,kg/TJ,4137856.6319999998,Gas Oil combustion consumption by freight transport,AR-R,SESCO,annual,kg,28a377d5-94b3-3539-9715-a631ee8ff227 +2011,Rio Negro,II.1.1,55.841519999999996,TJ,CH4,3.9,kg/TJ,217.78192799999997,Gas Oil combustion consumption by freight transport,AR-R,SESCO,annual,kg,78249f5d-93fc-387a-8890-e679dcc25625 +2011,Rio Negro,II.1.1,55.841519999999996,TJ,N2O,3.9,kg/TJ,217.78192799999997,Gas Oil combustion consumption by freight transport,AR-R,SESCO,annual,kg,78249f5d-93fc-387a-8890-e679dcc25625 +2011,Salta,II.1.1,166.54932,TJ,CO2,74100.0,kg/TJ,12341304.612,Gas Oil combustion consumption by freight transport,AR-A,SESCO,annual,kg,1a157bab-e866-3e81-935d-f13902aca82e +2011,Salta,II.1.1,166.54932,TJ,CH4,3.9,kg/TJ,649.542348,Gas Oil combustion consumption by freight transport,AR-A,SESCO,annual,kg,f329140b-f9e7-36a4-935a-967634fc90a1 +2011,Salta,II.1.1,166.54932,TJ,N2O,3.9,kg/TJ,649.542348,Gas Oil combustion consumption by freight transport,AR-A,SESCO,annual,kg,f329140b-f9e7-36a4-935a-967634fc90a1 +2011,San Juan,II.1.1,67.83336,TJ,CO2,74100.0,kg/TJ,5026451.976,Gas Oil combustion consumption by freight transport,AR-J,SESCO,annual,kg,36936686-095f-30fe-8728-2f2ee7f846cf +2011,San Juan,II.1.1,67.83336,TJ,CH4,3.9,kg/TJ,264.550104,Gas Oil combustion consumption by freight transport,AR-J,SESCO,annual,kg,4b040d41-bc05-3949-b205-2a54f17ac537 +2011,San Juan,II.1.1,67.83336,TJ,N2O,3.9,kg/TJ,264.550104,Gas Oil combustion consumption by freight transport,AR-J,SESCO,annual,kg,4b040d41-bc05-3949-b205-2a54f17ac537 +2011,San Luis,II.1.1,162.9012,TJ,CO2,74100.0,kg/TJ,12070978.92,Gas Oil combustion consumption by freight transport,AR-D,SESCO,annual,kg,4216ba21-16b1-34ec-b050-638fc992e086 +2011,San Luis,II.1.1,162.9012,TJ,CH4,3.9,kg/TJ,635.31468,Gas Oil combustion consumption by freight transport,AR-D,SESCO,annual,kg,0f129a7b-d483-3358-b45f-276dc3875784 +2011,San Luis,II.1.1,162.9012,TJ,N2O,3.9,kg/TJ,635.31468,Gas Oil combustion consumption by freight transport,AR-D,SESCO,annual,kg,0f129a7b-d483-3358-b45f-276dc3875784 +2011,Santa Cruz,II.1.1,91.05852,TJ,CO2,74100.0,kg/TJ,6747436.332,Gas Oil combustion consumption by freight transport,AR-Z,SESCO,annual,kg,eacb6c31-0dc3-3a56-ab2c-cdf928aab3ff +2011,Santa Cruz,II.1.1,91.05852,TJ,CH4,3.9,kg/TJ,355.128228,Gas Oil combustion consumption by freight transport,AR-Z,SESCO,annual,kg,d70799a8-c357-3ff0-97f8-98e2acc07548 +2011,Santa Cruz,II.1.1,91.05852,TJ,N2O,3.9,kg/TJ,355.128228,Gas Oil combustion consumption by freight transport,AR-Z,SESCO,annual,kg,d70799a8-c357-3ff0-97f8-98e2acc07548 +2011,Santa Fe,II.1.1,1220.2058399999999,TJ,CO2,74100.0,kg/TJ,90417252.74399999,Gas Oil combustion consumption by freight transport,AR-S,SESCO,annual,kg,3bccfbd5-ec95-3f4e-9d81-7dfb4e495762 +2011,Santa Fe,II.1.1,1220.2058399999999,TJ,CH4,3.9,kg/TJ,4758.8027759999995,Gas Oil combustion consumption by freight transport,AR-S,SESCO,annual,kg,6bfed357-db9c-320a-97ad-f5f3245d3381 +2011,Santa Fe,II.1.1,1220.2058399999999,TJ,N2O,3.9,kg/TJ,4758.8027759999995,Gas Oil combustion consumption by freight transport,AR-S,SESCO,annual,kg,6bfed357-db9c-320a-97ad-f5f3245d3381 +2011,Santiago del Estero,II.1.1,140.03724,TJ,CO2,74100.0,kg/TJ,10376759.484,Gas Oil combustion consumption by freight transport,AR-G,SESCO,annual,kg,88f03754-2e8b-3403-8203-8edb0ece890b +2011,Santiago del Estero,II.1.1,140.03724,TJ,CH4,3.9,kg/TJ,546.145236,Gas Oil combustion consumption by freight transport,AR-G,SESCO,annual,kg,5aee66f6-9968-31bc-9c77-9a35919e6819 +2011,Santiago del Estero,II.1.1,140.03724,TJ,N2O,3.9,kg/TJ,546.145236,Gas Oil combustion consumption by freight transport,AR-G,SESCO,annual,kg,5aee66f6-9968-31bc-9c77-9a35919e6819 +2011,Tierra del Fuego,II.1.1,5.2374,TJ,CO2,74100.0,kg/TJ,388091.34,Gas Oil combustion consumption by freight transport,AR-V,SESCO,annual,kg,caab15c0-d86e-354c-bf90-917fe6eb4712 +2011,Tierra del Fuego,II.1.1,5.2374,TJ,CH4,3.9,kg/TJ,20.42586,Gas Oil combustion consumption by freight transport,AR-V,SESCO,annual,kg,efeb422d-e8ad-3212-a529-248281eedc17 +2011,Tierra del Fuego,II.1.1,5.2374,TJ,N2O,3.9,kg/TJ,20.42586,Gas Oil combustion consumption by freight transport,AR-V,SESCO,annual,kg,efeb422d-e8ad-3212-a529-248281eedc17 +2011,Tucuman,II.1.1,150.6204,TJ,CO2,74100.0,kg/TJ,11160971.639999999,Gas Oil combustion consumption by freight transport,AR-T,SESCO,annual,kg,770b5122-e4a5-3291-852a-99c7ea735f05 +2011,Tucuman,II.1.1,150.6204,TJ,CH4,3.9,kg/TJ,587.4195599999999,Gas Oil combustion consumption by freight transport,AR-T,SESCO,annual,kg,725478be-c678-30b6-a74f-f73f339fe333 +2011,Tucuman,II.1.1,150.6204,TJ,N2O,3.9,kg/TJ,587.4195599999999,Gas Oil combustion consumption by freight transport,AR-T,SESCO,annual,kg,725478be-c678-30b6-a74f-f73f339fe333 +2011,Buenos Aires,II.1.1,20.9496,TJ,CO2,74100.0,kg/TJ,1552365.36,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,003bdc22-6238-3139-88fc-b752471c6def +2011,Buenos Aires,II.1.1,20.9496,TJ,CH4,3.9,kg/TJ,81.70344,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,788104ba-7ad0-36dd-a1d9-9b31795a216a +2011,Buenos Aires,II.1.1,20.9496,TJ,N2O,3.9,kg/TJ,81.70344,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,788104ba-7ad0-36dd-a1d9-9b31795a216a +2011,Capital Federal,II.1.1,29.907359999999997,TJ,CO2,74100.0,kg/TJ,2216135.3759999997,Gas Oil combustion consumption by freight transport,AR-C,SESCO,annual,kg,287db2c8-536e-3e1a-8722-48966e86363f +2011,Capital Federal,II.1.1,29.907359999999997,TJ,CH4,3.9,kg/TJ,116.63870399999999,Gas Oil combustion consumption by freight transport,AR-C,SESCO,annual,kg,adb39718-a3f2-32a2-8f48-1243224cde67 +2011,Capital Federal,II.1.1,29.907359999999997,TJ,N2O,3.9,kg/TJ,116.63870399999999,Gas Oil combustion consumption by freight transport,AR-C,SESCO,annual,kg,adb39718-a3f2-32a2-8f48-1243224cde67 +2011,Chaco,II.1.1,2.02272,TJ,CO2,74100.0,kg/TJ,149883.552,Gas Oil combustion consumption by freight transport,AR-H,SESCO,annual,kg,ca4b26c1-3201-3021-be28-1a083987c666 +2011,Chaco,II.1.1,2.02272,TJ,CH4,3.9,kg/TJ,7.8886080000000005,Gas Oil combustion consumption by freight transport,AR-H,SESCO,annual,kg,a78a7b4e-ddda-3369-9f2e-5e6d45726575 +2011,Chaco,II.1.1,2.02272,TJ,N2O,3.9,kg/TJ,7.8886080000000005,Gas Oil combustion consumption by freight transport,AR-H,SESCO,annual,kg,a78a7b4e-ddda-3369-9f2e-5e6d45726575 +2011,Chubut,II.1.1,1.11972,TJ,CO2,74100.0,kg/TJ,82971.25200000001,Gas Oil combustion consumption by freight transport,AR-U,SESCO,annual,kg,76efd5a8-b86c-3606-90e0-5e7ddce2a446 +2011,Chubut,II.1.1,1.11972,TJ,CH4,3.9,kg/TJ,4.3669080000000005,Gas Oil combustion consumption by freight transport,AR-U,SESCO,annual,kg,53964884-3fe5-3988-93cd-9b0fcccd26c7 +2011,Chubut,II.1.1,1.11972,TJ,N2O,3.9,kg/TJ,4.3669080000000005,Gas Oil combustion consumption by freight transport,AR-U,SESCO,annual,kg,53964884-3fe5-3988-93cd-9b0fcccd26c7 +2011,Corrientes,II.1.1,0.46956,TJ,CO2,74100.0,kg/TJ,34794.396,Gas Oil combustion consumption by freight transport,AR-W,SESCO,annual,kg,882ff5ab-57f8-3b4a-bf4b-dfef3901bdb1 +2011,Corrientes,II.1.1,0.46956,TJ,CH4,3.9,kg/TJ,1.831284,Gas Oil combustion consumption by freight transport,AR-W,SESCO,annual,kg,78b7d7e6-4d08-3f17-ae8f-870329136b14 +2011,Corrientes,II.1.1,0.46956,TJ,N2O,3.9,kg/TJ,1.831284,Gas Oil combustion consumption by freight transport,AR-W,SESCO,annual,kg,78b7d7e6-4d08-3f17-ae8f-870329136b14 +2011,Córdoba,II.1.1,3.28692,TJ,CO2,74100.0,kg/TJ,243560.772,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,6c8b044f-3c3b-3032-94e5-b93dae4fb485 +2011,Córdoba,II.1.1,3.28692,TJ,CH4,3.9,kg/TJ,12.818988,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,540a0142-92cd-3370-9dc9-20e4bf9b045e +2011,Córdoba,II.1.1,3.28692,TJ,N2O,3.9,kg/TJ,12.818988,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,540a0142-92cd-3370-9dc9-20e4bf9b045e +2011,Entre Rios,II.1.1,1.6976399999999998,TJ,CO2,74100.0,kg/TJ,125795.12399999998,Gas Oil combustion consumption by freight transport,AR-E,SESCO,annual,kg,3613c20a-7a3c-3a94-92c4-491f86ffc911 +2011,Entre Rios,II.1.1,1.6976399999999998,TJ,CH4,3.9,kg/TJ,6.6207959999999995,Gas Oil combustion consumption by freight transport,AR-E,SESCO,annual,kg,3df5472d-9df4-3823-8e9f-55d882fc10f4 +2011,Entre Rios,II.1.1,1.6976399999999998,TJ,N2O,3.9,kg/TJ,6.6207959999999995,Gas Oil combustion consumption by freight transport,AR-E,SESCO,annual,kg,3df5472d-9df4-3823-8e9f-55d882fc10f4 +2011,Formosa,II.1.1,0.14448,TJ,CO2,74100.0,kg/TJ,10705.967999999999,Gas Oil combustion consumption by freight transport,AR-P,SESCO,annual,kg,3266a5f0-7e94-35e3-a244-85b6bdee65bf +2011,Formosa,II.1.1,0.14448,TJ,CH4,3.9,kg/TJ,0.563472,Gas Oil combustion consumption by freight transport,AR-P,SESCO,annual,kg,b850ec85-6d63-361b-a71b-bd582ee6fb00 +2011,Formosa,II.1.1,0.14448,TJ,N2O,3.9,kg/TJ,0.563472,Gas Oil combustion consumption by freight transport,AR-P,SESCO,annual,kg,b850ec85-6d63-361b-a71b-bd582ee6fb00 +2011,Jujuy,II.1.1,0.10836,TJ,CO2,74100.0,kg/TJ,8029.476,Gas Oil combustion consumption by freight transport,AR-Y,SESCO,annual,kg,2f2bef49-8cda-3d75-b58f-b70bb7287f1c +2011,Jujuy,II.1.1,0.10836,TJ,CH4,3.9,kg/TJ,0.422604,Gas Oil combustion consumption by freight transport,AR-Y,SESCO,annual,kg,425adcec-7882-367e-94d7-8815ba9d4ba0 +2011,Jujuy,II.1.1,0.10836,TJ,N2O,3.9,kg/TJ,0.422604,Gas Oil combustion consumption by freight transport,AR-Y,SESCO,annual,kg,425adcec-7882-367e-94d7-8815ba9d4ba0 +2011,La Pampa,II.1.1,0.43344,TJ,CO2,74100.0,kg/TJ,32117.904,Gas Oil combustion consumption by freight transport,AR-L,SESCO,annual,kg,c7274959-0671-3111-9342-6b90ae4e5586 +2011,La Pampa,II.1.1,0.43344,TJ,CH4,3.9,kg/TJ,1.690416,Gas Oil combustion consumption by freight transport,AR-L,SESCO,annual,kg,db47159f-9f3f-3a6c-a080-5ba571848ee9 +2011,La Pampa,II.1.1,0.43344,TJ,N2O,3.9,kg/TJ,1.690416,Gas Oil combustion consumption by freight transport,AR-L,SESCO,annual,kg,db47159f-9f3f-3a6c-a080-5ba571848ee9 +2011,La Rioja,II.1.1,0.07224,TJ,CO2,74100.0,kg/TJ,5352.9839999999995,Gas Oil combustion consumption by freight transport,AR-F,SESCO,annual,kg,2b86252a-aa17-3524-af2d-d11552b7975e +2011,La Rioja,II.1.1,0.07224,TJ,CH4,3.9,kg/TJ,0.281736,Gas Oil combustion consumption by freight transport,AR-F,SESCO,annual,kg,3a77a225-7610-3b5b-9287-3a8a6a499a15 +2011,La Rioja,II.1.1,0.07224,TJ,N2O,3.9,kg/TJ,0.281736,Gas Oil combustion consumption by freight transport,AR-F,SESCO,annual,kg,3a77a225-7610-3b5b-9287-3a8a6a499a15 +2011,Mendoza,II.1.1,2.13108,TJ,CO2,74100.0,kg/TJ,157913.028,Gas Oil combustion consumption by freight transport,AR-M,SESCO,annual,kg,dc128501-b7d0-3119-9776-1dd72524cc8a +2011,Mendoza,II.1.1,2.13108,TJ,CH4,3.9,kg/TJ,8.311212,Gas Oil combustion consumption by freight transport,AR-M,SESCO,annual,kg,b3e120b2-7c18-311b-af75-5283a53fc8ad +2011,Mendoza,II.1.1,2.13108,TJ,N2O,3.9,kg/TJ,8.311212,Gas Oil combustion consumption by freight transport,AR-M,SESCO,annual,kg,b3e120b2-7c18-311b-af75-5283a53fc8ad +2011,Misiones,II.1.1,0.36119999999999997,TJ,CO2,74100.0,kg/TJ,26764.92,Gas Oil combustion consumption by freight transport,AR-N,SESCO,annual,kg,179d168f-321a-38e9-a771-65c7884ee55c +2011,Misiones,II.1.1,0.36119999999999997,TJ,CH4,3.9,kg/TJ,1.40868,Gas Oil combustion consumption by freight transport,AR-N,SESCO,annual,kg,26e5e1e2-9348-3821-9b8d-d4412b028f6a +2011,Misiones,II.1.1,0.36119999999999997,TJ,N2O,3.9,kg/TJ,1.40868,Gas Oil combustion consumption by freight transport,AR-N,SESCO,annual,kg,26e5e1e2-9348-3821-9b8d-d4412b028f6a +2011,Neuquén,II.1.1,1.15584,TJ,CO2,74100.0,kg/TJ,85647.74399999999,Gas Oil combustion consumption by freight transport,AR-Q,SESCO,annual,kg,a828ec74-074f-330c-992f-c4fc2e507200 +2011,Neuquén,II.1.1,1.15584,TJ,CH4,3.9,kg/TJ,4.507776,Gas Oil combustion consumption by freight transport,AR-Q,SESCO,annual,kg,38097382-31fd-3b6c-998c-0f1b61652d93 +2011,Neuquén,II.1.1,1.15584,TJ,N2O,3.9,kg/TJ,4.507776,Gas Oil combustion consumption by freight transport,AR-Q,SESCO,annual,kg,38097382-31fd-3b6c-998c-0f1b61652d93 +2011,Rio Negro,II.1.1,0.50568,TJ,CO2,74100.0,kg/TJ,37470.888,Gas Oil combustion consumption by freight transport,AR-R,SESCO,annual,kg,5216dbcd-5fe7-388e-a706-ae560f6a92b4 +2011,Rio Negro,II.1.1,0.50568,TJ,CH4,3.9,kg/TJ,1.9721520000000001,Gas Oil combustion consumption by freight transport,AR-R,SESCO,annual,kg,6fc81f89-141d-3277-819a-5016a2ebac5d +2011,Rio Negro,II.1.1,0.50568,TJ,N2O,3.9,kg/TJ,1.9721520000000001,Gas Oil combustion consumption by freight transport,AR-R,SESCO,annual,kg,6fc81f89-141d-3277-819a-5016a2ebac5d +2011,Salta,II.1.1,1.04748,TJ,CO2,74100.0,kg/TJ,77618.268,Gas Oil combustion consumption by freight transport,AR-A,SESCO,annual,kg,8ac1c000-9866-327e-97f4-54cb28750c29 +2011,Salta,II.1.1,1.04748,TJ,CH4,3.9,kg/TJ,4.085172,Gas Oil combustion consumption by freight transport,AR-A,SESCO,annual,kg,a762e3fa-2f03-33d9-8443-135af5aca062 +2011,Salta,II.1.1,1.04748,TJ,N2O,3.9,kg/TJ,4.085172,Gas Oil combustion consumption by freight transport,AR-A,SESCO,annual,kg,a762e3fa-2f03-33d9-8443-135af5aca062 +2011,San Juan,II.1.1,0.18059999999999998,TJ,CO2,74100.0,kg/TJ,13382.46,Gas Oil combustion consumption by freight transport,AR-J,SESCO,annual,kg,fcd1acb9-004f-3a44-bc57-e0ea3fa984f4 +2011,San Juan,II.1.1,0.18059999999999998,TJ,CH4,3.9,kg/TJ,0.70434,Gas Oil combustion consumption by freight transport,AR-J,SESCO,annual,kg,915fe689-ba13-3c17-95cb-6c71a83471b5 +2011,San Juan,II.1.1,0.18059999999999998,TJ,N2O,3.9,kg/TJ,0.70434,Gas Oil combustion consumption by freight transport,AR-J,SESCO,annual,kg,915fe689-ba13-3c17-95cb-6c71a83471b5 +2011,San Luis,II.1.1,0.36119999999999997,TJ,CO2,74100.0,kg/TJ,26764.92,Gas Oil combustion consumption by freight transport,AR-D,SESCO,annual,kg,3e15c984-2e8f-3f8d-94e0-6e21824cb623 +2011,San Luis,II.1.1,0.36119999999999997,TJ,CH4,3.9,kg/TJ,1.40868,Gas Oil combustion consumption by freight transport,AR-D,SESCO,annual,kg,166bcf8f-cfca-3d06-a441-bf9b914fed2a +2011,San Luis,II.1.1,0.36119999999999997,TJ,N2O,3.9,kg/TJ,1.40868,Gas Oil combustion consumption by freight transport,AR-D,SESCO,annual,kg,166bcf8f-cfca-3d06-a441-bf9b914fed2a +2011,Santa Cruz,II.1.1,0.28896,TJ,CO2,74100.0,kg/TJ,21411.935999999998,Gas Oil combustion consumption by freight transport,AR-Z,SESCO,annual,kg,242475b1-39c7-3f77-8def-a06fd3e4cad9 +2011,Santa Cruz,II.1.1,0.28896,TJ,CH4,3.9,kg/TJ,1.126944,Gas Oil combustion consumption by freight transport,AR-Z,SESCO,annual,kg,c063cf8a-f210-3de5-8334-89b44a5e068c +2011,Santa Cruz,II.1.1,0.28896,TJ,N2O,3.9,kg/TJ,1.126944,Gas Oil combustion consumption by freight transport,AR-Z,SESCO,annual,kg,c063cf8a-f210-3de5-8334-89b44a5e068c +2011,Santa Fe,II.1.1,5.92368,TJ,CO2,74100.0,kg/TJ,438944.688,Gas Oil combustion consumption by freight transport,AR-S,SESCO,annual,kg,e9cf7dc9-0745-331f-9935-436d0af77ea7 +2011,Santa Fe,II.1.1,5.92368,TJ,CH4,3.9,kg/TJ,23.102352,Gas Oil combustion consumption by freight transport,AR-S,SESCO,annual,kg,f3fe4f16-0f97-3063-961e-9216d7199f1a +2011,Santa Fe,II.1.1,5.92368,TJ,N2O,3.9,kg/TJ,23.102352,Gas Oil combustion consumption by freight transport,AR-S,SESCO,annual,kg,f3fe4f16-0f97-3063-961e-9216d7199f1a +2011,Santiago del Estero,II.1.1,0.36119999999999997,TJ,CO2,74100.0,kg/TJ,26764.92,Gas Oil combustion consumption by freight transport,AR-G,SESCO,annual,kg,30214e35-51c6-34fe-b4ed-f3140282a42c +2011,Santiago del Estero,II.1.1,0.36119999999999997,TJ,CH4,3.9,kg/TJ,1.40868,Gas Oil combustion consumption by freight transport,AR-G,SESCO,annual,kg,6773ee25-a1e6-3f80-ab5d-27ea533b7ef9 +2011,Santiago del Estero,II.1.1,0.36119999999999997,TJ,N2O,3.9,kg/TJ,1.40868,Gas Oil combustion consumption by freight transport,AR-G,SESCO,annual,kg,6773ee25-a1e6-3f80-ab5d-27ea533b7ef9 +2011,Tucuman,II.1.1,0.6140399999999999,TJ,CO2,74100.0,kg/TJ,45500.363999999994,Gas Oil combustion consumption by freight transport,AR-T,SESCO,annual,kg,0dfea52d-e6e0-3a83-954a-be4a36a084e3 +2011,Tucuman,II.1.1,0.6140399999999999,TJ,CH4,3.9,kg/TJ,2.3947559999999997,Gas Oil combustion consumption by freight transport,AR-T,SESCO,annual,kg,152dffc0-f558-3269-ab34-b9cdcb3ad4e5 +2011,Tucuman,II.1.1,0.6140399999999999,TJ,N2O,3.9,kg/TJ,2.3947559999999997,Gas Oil combustion consumption by freight transport,AR-T,SESCO,annual,kg,152dffc0-f558-3269-ab34-b9cdcb3ad4e5 +2011,Buenos Aires,II.1.1,1.8871799999999996,TJ,CO2,71500.0,kg/TJ,134933.36999999997,Jet Kerosene combustion consumption by freight transport,AR-B,SESCO,annual,kg,8812585f-aa4f-33ad-aade-32a79a17ca4e +2011,Buenos Aires,II.1.1,1.8871799999999996,TJ,CH4,0.5,kg/TJ,0.9435899999999998,Jet Kerosene combustion consumption by freight transport,AR-B,SESCO,annual,kg,8df51a08-c2c4-34f6-ab32-e2f6d1f44958 +2011,Buenos Aires,II.1.1,1.8871799999999996,TJ,N2O,2.0,kg/TJ,3.7743599999999993,Jet Kerosene combustion consumption by freight transport,AR-B,SESCO,annual,kg,327f8496-d160-33f4-b559-80f5779b4a69 +2011,Buenos Aires,II.1.1,27.89171,TJ,CO2,73300.0,kg/TJ,2044462.3429999999,Naphtha combustion consumption by freight transport,AR-B,SESCO,annual,kg,fd3fa75d-9981-3e66-9fea-361593ed342c +2011,Buenos Aires,II.1.1,27.89171,TJ,CH4,0.5,kg/TJ,13.945855,Naphtha combustion consumption by freight transport,AR-B,SESCO,annual,kg,f8619ece-9755-3546-b8b2-2a6a0a8b2f63 +2011,Buenos Aires,II.1.1,27.89171,TJ,N2O,2.0,kg/TJ,55.78342,Naphtha combustion consumption by freight transport,AR-B,SESCO,annual,kg,19d635d9-8dd5-37a8-bee9-123f99197a2c +2011,Capital Federal,II.1.1,4.45445,TJ,CO2,73300.0,kg/TJ,326511.185,Naphtha combustion consumption by freight transport,AR-C,SESCO,annual,kg,d3dc0f3d-05eb-32d3-b51b-38c07e03b21a +2011,Capital Federal,II.1.1,4.45445,TJ,CH4,0.5,kg/TJ,2.227225,Naphtha combustion consumption by freight transport,AR-C,SESCO,annual,kg,89464308-9e64-3bf9-be6a-49222c7cefd8 +2011,Capital Federal,II.1.1,4.45445,TJ,N2O,2.0,kg/TJ,8.9089,Naphtha combustion consumption by freight transport,AR-C,SESCO,annual,kg,49455814-2bbb-324f-9b66-2737aa4482e8 +2011,Catamarca,II.1.1,0.034265,TJ,CO2,73300.0,kg/TJ,2511.6245,Naphtha combustion consumption by freight transport,AR-K,SESCO,annual,kg,dda362b9-fbc1-3e7d-95ed-175fb43398a8 +2011,Catamarca,II.1.1,0.034265,TJ,CH4,0.5,kg/TJ,0.0171325,Naphtha combustion consumption by freight transport,AR-K,SESCO,annual,kg,aaf2e257-2b54-3581-9f59-0f312799765d +2011,Catamarca,II.1.1,0.034265,TJ,N2O,2.0,kg/TJ,0.06853,Naphtha combustion consumption by freight transport,AR-K,SESCO,annual,kg,1d711ea2-d1f8-328c-ad2c-1564c3877c4a +2011,Chaco,II.1.1,0.513975,TJ,CO2,73300.0,kg/TJ,37674.3675,Naphtha combustion consumption by freight transport,AR-H,SESCO,annual,kg,f6d9a1f2-4732-3f82-b3d6-933ec78d8968 +2011,Chaco,II.1.1,0.513975,TJ,CH4,0.5,kg/TJ,0.2569875,Naphtha combustion consumption by freight transport,AR-H,SESCO,annual,kg,af925b67-9bce-3718-af94-94bbd1de885b +2011,Chaco,II.1.1,0.513975,TJ,N2O,2.0,kg/TJ,1.02795,Naphtha combustion consumption by freight transport,AR-H,SESCO,annual,kg,a890db4d-613f-3b03-b5ab-f31196ed0004 +2011,Chubut,II.1.1,0.75383,TJ,CO2,73300.0,kg/TJ,55255.739,Naphtha combustion consumption by freight transport,AR-U,SESCO,annual,kg,78fe3af2-323a-3c5d-855f-36f0cfc96e51 +2011,Chubut,II.1.1,0.75383,TJ,CH4,0.5,kg/TJ,0.376915,Naphtha combustion consumption by freight transport,AR-U,SESCO,annual,kg,5aacf393-eecd-3f4a-895d-548127288364 +2011,Chubut,II.1.1,0.75383,TJ,N2O,2.0,kg/TJ,1.50766,Naphtha combustion consumption by freight transport,AR-U,SESCO,annual,kg,30c4404f-2449-3b0f-8c27-e7b42ef42b91 +2011,Corrientes,II.1.1,0.6853,TJ,CO2,73300.0,kg/TJ,50232.49,Naphtha combustion consumption by freight transport,AR-W,SESCO,annual,kg,38a5b98f-94b7-308b-ae5b-c29171cef2d1 +2011,Corrientes,II.1.1,0.6853,TJ,CH4,0.5,kg/TJ,0.34265,Naphtha combustion consumption by freight transport,AR-W,SESCO,annual,kg,2b8c432e-0450-393b-9e90-520c7f07f363 +2011,Corrientes,II.1.1,0.6853,TJ,N2O,2.0,kg/TJ,1.3706,Naphtha combustion consumption by freight transport,AR-W,SESCO,annual,kg,288abf4f-d620-3e57-a1d8-3cca4b3b109a +2011,Córdoba,II.1.1,2.6041399999999997,TJ,CO2,73300.0,kg/TJ,190883.46199999997,Naphtha combustion consumption by freight transport,AR-X,SESCO,annual,kg,c848e1f3-4a1f-39df-b23b-5f43c8800e6c +2011,Córdoba,II.1.1,2.6041399999999997,TJ,CH4,0.5,kg/TJ,1.3020699999999998,Naphtha combustion consumption by freight transport,AR-X,SESCO,annual,kg,95d91de0-762d-3f68-8a3e-4db732910e22 +2011,Córdoba,II.1.1,2.6041399999999997,TJ,N2O,2.0,kg/TJ,5.208279999999999,Naphtha combustion consumption by freight transport,AR-X,SESCO,annual,kg,169aba64-ccc7-3008-b205-46340682ac73 +2011,Entre Rios,II.1.1,1.02795,TJ,CO2,73300.0,kg/TJ,75348.735,Naphtha combustion consumption by freight transport,AR-E,SESCO,annual,kg,17e8c4c0-0188-3c7e-806e-e3a3ab5c9df1 +2011,Entre Rios,II.1.1,1.02795,TJ,CH4,0.5,kg/TJ,0.513975,Naphtha combustion consumption by freight transport,AR-E,SESCO,annual,kg,d6cc9793-fe69-3208-bc89-177b3e645422 +2011,Entre Rios,II.1.1,1.02795,TJ,N2O,2.0,kg/TJ,2.0559,Naphtha combustion consumption by freight transport,AR-E,SESCO,annual,kg,4cf5899f-dd70-32f1-adb0-eab80909198d +2011,Formosa,II.1.1,0.034265,TJ,CO2,73300.0,kg/TJ,2511.6245,Naphtha combustion consumption by freight transport,AR-P,SESCO,annual,kg,399bdcda-3081-3ecf-bd9a-9bf4d8e45b3e +2011,Formosa,II.1.1,0.034265,TJ,CH4,0.5,kg/TJ,0.0171325,Naphtha combustion consumption by freight transport,AR-P,SESCO,annual,kg,a8e50fad-042e-31c9-87bb-b4ff86cc079f +2011,Formosa,II.1.1,0.034265,TJ,N2O,2.0,kg/TJ,0.06853,Naphtha combustion consumption by freight transport,AR-P,SESCO,annual,kg,1f38cba7-5564-3737-b849-cf14cca58c97 +2011,Jujuy,II.1.1,0.13706,TJ,CO2,73300.0,kg/TJ,10046.498,Naphtha combustion consumption by freight transport,AR-Y,SESCO,annual,kg,eac9b2e2-3b3e-3637-9067-1562458ccf41 +2011,Jujuy,II.1.1,0.13706,TJ,CH4,0.5,kg/TJ,0.06853,Naphtha combustion consumption by freight transport,AR-Y,SESCO,annual,kg,70642e49-49c0-3107-aafe-758b99450560 +2011,Jujuy,II.1.1,0.13706,TJ,N2O,2.0,kg/TJ,0.27412,Naphtha combustion consumption by freight transport,AR-Y,SESCO,annual,kg,84e4b892-6c5d-34d3-96f5-6f5d0a1d916c +2011,La Pampa,II.1.1,0.23985499999999998,TJ,CO2,73300.0,kg/TJ,17581.371499999997,Naphtha combustion consumption by freight transport,AR-L,SESCO,annual,kg,97a16840-f060-3b8c-941b-43b27cbec0b7 +2011,La Pampa,II.1.1,0.23985499999999998,TJ,CH4,0.5,kg/TJ,0.11992749999999999,Naphtha combustion consumption by freight transport,AR-L,SESCO,annual,kg,56145fc0-37c6-3ed5-8513-aa12a098e0e9 +2011,La Pampa,II.1.1,0.23985499999999998,TJ,N2O,2.0,kg/TJ,0.47970999999999997,Naphtha combustion consumption by freight transport,AR-L,SESCO,annual,kg,7c1ef8fc-1210-3443-870d-7f8565508887 +2011,La Rioja,II.1.1,0.102795,TJ,CO2,73300.0,kg/TJ,7534.8735,Naphtha combustion consumption by freight transport,AR-F,SESCO,annual,kg,8a59db8d-2066-3301-aea2-b177cf4e1a0c +2011,La Rioja,II.1.1,0.102795,TJ,CH4,0.5,kg/TJ,0.0513975,Naphtha combustion consumption by freight transport,AR-F,SESCO,annual,kg,c568f1ae-9d71-3d3c-aa41-4c26f5435755 +2011,La Rioja,II.1.1,0.102795,TJ,N2O,2.0,kg/TJ,0.20559,Naphtha combustion consumption by freight transport,AR-F,SESCO,annual,kg,7b6fec65-e0ea-3381-a2b3-101d0586af2d +2011,Mendoza,II.1.1,2.6041399999999997,TJ,CO2,73300.0,kg/TJ,190883.46199999997,Naphtha combustion consumption by freight transport,AR-M,SESCO,annual,kg,5e39143e-8f96-3f48-916e-c2ac341cfd31 +2011,Mendoza,II.1.1,2.6041399999999997,TJ,CH4,0.5,kg/TJ,1.3020699999999998,Naphtha combustion consumption by freight transport,AR-M,SESCO,annual,kg,85faec7c-fd01-36b6-86cc-175fbc979af9 +2011,Mendoza,II.1.1,2.6041399999999997,TJ,N2O,2.0,kg/TJ,5.208279999999999,Naphtha combustion consumption by freight transport,AR-M,SESCO,annual,kg,54316c61-7c61-37f0-aaa6-13388a012f07 +2011,Misiones,II.1.1,0.6510349999999999,TJ,CO2,73300.0,kg/TJ,47720.86549999999,Naphtha combustion consumption by freight transport,AR-N,SESCO,annual,kg,a1d3fcdf-e568-36cb-b66c-ced5543a73ad +2011,Misiones,II.1.1,0.6510349999999999,TJ,CH4,0.5,kg/TJ,0.32551749999999996,Naphtha combustion consumption by freight transport,AR-N,SESCO,annual,kg,6d847b55-52c9-35f3-9436-d13d33d2628b +2011,Misiones,II.1.1,0.6510349999999999,TJ,N2O,2.0,kg/TJ,1.3020699999999998,Naphtha combustion consumption by freight transport,AR-N,SESCO,annual,kg,059684c4-84f7-3ff5-8719-169ffe71aa57 +2011,Neuquén,II.1.1,0.856625,TJ,CO2,73300.0,kg/TJ,62790.612499999996,Naphtha combustion consumption by freight transport,AR-Q,SESCO,annual,kg,aa9b7d67-9791-3f7a-ac31-719c84b4ab98 +2011,Neuquén,II.1.1,0.856625,TJ,CH4,0.5,kg/TJ,0.4283125,Naphtha combustion consumption by freight transport,AR-Q,SESCO,annual,kg,5c5c998e-ca3e-334b-aac9-e5743a62e919 +2011,Neuquén,II.1.1,0.856625,TJ,N2O,2.0,kg/TJ,1.71325,Naphtha combustion consumption by freight transport,AR-Q,SESCO,annual,kg,5f583cc4-0d27-3b81-8100-7b01b9322caf +2011,Rio Negro,II.1.1,0.856625,TJ,CO2,73300.0,kg/TJ,62790.612499999996,Naphtha combustion consumption by freight transport,AR-R,SESCO,annual,kg,86142431-772f-326e-a740-34a79556b564 +2011,Rio Negro,II.1.1,0.856625,TJ,CH4,0.5,kg/TJ,0.4283125,Naphtha combustion consumption by freight transport,AR-R,SESCO,annual,kg,4420f583-4f43-32d9-9902-1bcecf41e48e +2011,Rio Negro,II.1.1,0.856625,TJ,N2O,2.0,kg/TJ,1.71325,Naphtha combustion consumption by freight transport,AR-R,SESCO,annual,kg,be1c3e60-7b17-3a8f-bc19-390d7dd27a8a +2011,Salta,II.1.1,0.6853,TJ,CO2,73300.0,kg/TJ,50232.49,Naphtha combustion consumption by freight transport,AR-A,SESCO,annual,kg,ac0843b3-99a1-3e42-9009-03b61577b324 +2011,Salta,II.1.1,0.6853,TJ,CH4,0.5,kg/TJ,0.34265,Naphtha combustion consumption by freight transport,AR-A,SESCO,annual,kg,b84f7999-3dde-3106-8255-28f8ec8db973 +2011,Salta,II.1.1,0.6853,TJ,N2O,2.0,kg/TJ,1.3706,Naphtha combustion consumption by freight transport,AR-A,SESCO,annual,kg,307f56cc-47e5-38cc-8dfb-a330405c595a +2011,San Juan,II.1.1,0.171325,TJ,CO2,73300.0,kg/TJ,12558.1225,Naphtha combustion consumption by freight transport,AR-J,SESCO,annual,kg,6d8ca4b4-c8e8-3a73-bcd0-e15172ba6cbe +2011,San Juan,II.1.1,0.171325,TJ,CH4,0.5,kg/TJ,0.0856625,Naphtha combustion consumption by freight transport,AR-J,SESCO,annual,kg,ed9106c4-75d5-3236-8536-501590a497a9 +2011,San Juan,II.1.1,0.171325,TJ,N2O,2.0,kg/TJ,0.34265,Naphtha combustion consumption by freight transport,AR-J,SESCO,annual,kg,1e80980c-d196-322f-b75a-80401e539ff9 +2011,San Luis,II.1.1,0.376915,TJ,CO2,73300.0,kg/TJ,27627.8695,Naphtha combustion consumption by freight transport,AR-D,SESCO,annual,kg,73b2b3e8-e402-30e4-aa20-8a2f5b593491 +2011,San Luis,II.1.1,0.376915,TJ,CH4,0.5,kg/TJ,0.1884575,Naphtha combustion consumption by freight transport,AR-D,SESCO,annual,kg,a5315a90-3247-34bd-b290-957d5017b7df +2011,San Luis,II.1.1,0.376915,TJ,N2O,2.0,kg/TJ,0.75383,Naphtha combustion consumption by freight transport,AR-D,SESCO,annual,kg,4f739b11-b223-3a52-ab5c-abfb16a64e44 +2011,Santa Cruz,II.1.1,0.23985499999999998,TJ,CO2,73300.0,kg/TJ,17581.371499999997,Naphtha combustion consumption by freight transport,AR-Z,SESCO,annual,kg,eee8726e-d753-3856-947d-0a327a56353d +2011,Santa Cruz,II.1.1,0.23985499999999998,TJ,CH4,0.5,kg/TJ,0.11992749999999999,Naphtha combustion consumption by freight transport,AR-Z,SESCO,annual,kg,a7ba8d19-24ca-395a-901a-deb50586e6eb +2011,Santa Cruz,II.1.1,0.23985499999999998,TJ,N2O,2.0,kg/TJ,0.47970999999999997,Naphtha combustion consumption by freight transport,AR-Z,SESCO,annual,kg,8af59631-ef40-305d-9455-dce141dd685a +2011,Santa Fe,II.1.1,4.146065,TJ,CO2,73300.0,kg/TJ,303906.56450000004,Naphtha combustion consumption by freight transport,AR-S,SESCO,annual,kg,3e43ac07-60d7-3bb4-a6f8-1a15fd7defa8 +2011,Santa Fe,II.1.1,4.146065,TJ,CH4,0.5,kg/TJ,2.0730325,Naphtha combustion consumption by freight transport,AR-S,SESCO,annual,kg,b9aa79bb-7d6d-3b1a-96e3-68c212de8244 +2011,Santa Fe,II.1.1,4.146065,TJ,N2O,2.0,kg/TJ,8.29213,Naphtha combustion consumption by freight transport,AR-S,SESCO,annual,kg,217a8f61-111b-3db5-bca0-8f1e1b870158 +2011,Santiago del Estero,II.1.1,0.20559,TJ,CO2,73300.0,kg/TJ,15069.747,Naphtha combustion consumption by freight transport,AR-G,SESCO,annual,kg,db65d87e-e180-3630-aed2-6324bc800bdd +2011,Santiago del Estero,II.1.1,0.20559,TJ,CH4,0.5,kg/TJ,0.102795,Naphtha combustion consumption by freight transport,AR-G,SESCO,annual,kg,52ce6313-e853-3306-afc3-a70e78d9a945 +2011,Santiago del Estero,II.1.1,0.20559,TJ,N2O,2.0,kg/TJ,0.41118,Naphtha combustion consumption by freight transport,AR-G,SESCO,annual,kg,da5e0e19-9683-3b6d-a9d8-06ca1886240a +2011,Tierra del Fuego,II.1.1,0.102795,TJ,CO2,73300.0,kg/TJ,7534.8735,Naphtha combustion consumption by freight transport,AR-V,SESCO,annual,kg,4aa5ef5a-428c-38e3-9811-54fbd2cef8c9 +2011,Tierra del Fuego,II.1.1,0.102795,TJ,CH4,0.5,kg/TJ,0.0513975,Naphtha combustion consumption by freight transport,AR-V,SESCO,annual,kg,a4c85dcc-ea65-32cb-a3e4-c9cefd201938 +2011,Tierra del Fuego,II.1.1,0.102795,TJ,N2O,2.0,kg/TJ,0.20559,Naphtha combustion consumption by freight transport,AR-V,SESCO,annual,kg,44426ace-0f06-3577-b0b5-5604267eec37 +2011,Tucuman,II.1.1,0.5825049999999999,TJ,CO2,73300.0,kg/TJ,42697.6165,Naphtha combustion consumption by freight transport,AR-T,SESCO,annual,kg,05e663be-2d7c-3ce5-9877-d704b2cfffe9 +2011,Tucuman,II.1.1,0.5825049999999999,TJ,CH4,0.5,kg/TJ,0.29125249999999997,Naphtha combustion consumption by freight transport,AR-T,SESCO,annual,kg,f8758db5-49c1-326c-b33b-4f022ad06710 +2011,Tucuman,II.1.1,0.5825049999999999,TJ,N2O,2.0,kg/TJ,1.1650099999999999,Naphtha combustion consumption by freight transport,AR-T,SESCO,annual,kg,ddfb92fe-5543-35d4-a805-ba1e362a4c5f +2011,Buenos Aires,II.1.1,31.044089999999997,TJ,CO2,73300.0,kg/TJ,2275531.797,Naphtha combustion consumption by freight transport,AR-B,SESCO,annual,kg,eab336fd-14be-30ad-9f55-368865ead109 +2011,Buenos Aires,II.1.1,31.044089999999997,TJ,CH4,0.5,kg/TJ,15.522044999999999,Naphtha combustion consumption by freight transport,AR-B,SESCO,annual,kg,796fbced-5691-3e1c-ad1c-a78db1fd2a97 +2011,Buenos Aires,II.1.1,31.044089999999997,TJ,N2O,2.0,kg/TJ,62.088179999999994,Naphtha combustion consumption by freight transport,AR-B,SESCO,annual,kg,2d5a1154-d972-3dc2-adaf-e768456a9a77 +2011,Capital Federal,II.1.1,8.394924999999999,TJ,CO2,73300.0,kg/TJ,615348.0025,Naphtha combustion consumption by freight transport,AR-C,SESCO,annual,kg,0910a4c4-6492-3d16-a00f-493dd56a5d76 +2011,Capital Federal,II.1.1,8.394924999999999,TJ,CH4,0.5,kg/TJ,4.197462499999999,Naphtha combustion consumption by freight transport,AR-C,SESCO,annual,kg,9648a66c-01ea-32c2-b46f-c779591cfdbe +2011,Capital Federal,II.1.1,8.394924999999999,TJ,N2O,2.0,kg/TJ,16.789849999999998,Naphtha combustion consumption by freight transport,AR-C,SESCO,annual,kg,2ba4f08b-ed7e-3fd9-87ce-a26be5b3d149 +2011,Catamarca,II.1.1,0.034265,TJ,CO2,73300.0,kg/TJ,2511.6245,Naphtha combustion consumption by freight transport,AR-K,SESCO,annual,kg,dda362b9-fbc1-3e7d-95ed-175fb43398a8 +2011,Catamarca,II.1.1,0.034265,TJ,CH4,0.5,kg/TJ,0.0171325,Naphtha combustion consumption by freight transport,AR-K,SESCO,annual,kg,aaf2e257-2b54-3581-9f59-0f312799765d +2011,Catamarca,II.1.1,0.034265,TJ,N2O,2.0,kg/TJ,0.06853,Naphtha combustion consumption by freight transport,AR-K,SESCO,annual,kg,1d711ea2-d1f8-328c-ad2c-1564c3877c4a +2011,Chaco,II.1.1,0.82236,TJ,CO2,73300.0,kg/TJ,60278.988,Naphtha combustion consumption by freight transport,AR-H,SESCO,annual,kg,667be57b-52c0-333a-bb23-3519ab338964 +2011,Chaco,II.1.1,0.82236,TJ,CH4,0.5,kg/TJ,0.41118,Naphtha combustion consumption by freight transport,AR-H,SESCO,annual,kg,396e1867-6292-38a7-bc69-f4c9ccd93471 +2011,Chaco,II.1.1,0.82236,TJ,N2O,2.0,kg/TJ,1.64472,Naphtha combustion consumption by freight transport,AR-H,SESCO,annual,kg,5381cd7a-c6a1-326a-babc-b9d1ee35c5f4 +2011,Chubut,II.1.1,0.6167699999999999,TJ,CO2,73300.0,kg/TJ,45209.240999999995,Naphtha combustion consumption by freight transport,AR-U,SESCO,annual,kg,ec4e815d-d7ff-3d82-97e6-ddd1572f8d4c +2011,Chubut,II.1.1,0.6167699999999999,TJ,CH4,0.5,kg/TJ,0.30838499999999996,Naphtha combustion consumption by freight transport,AR-U,SESCO,annual,kg,b968e661-f520-307a-8524-1603bf47dbb1 +2011,Chubut,II.1.1,0.6167699999999999,TJ,N2O,2.0,kg/TJ,1.2335399999999999,Naphtha combustion consumption by freight transport,AR-U,SESCO,annual,kg,12c39a33-fe8c-3b6e-aea2-648d4181863d +2011,Corrientes,II.1.1,0.54824,TJ,CO2,73300.0,kg/TJ,40185.992,Naphtha combustion consumption by freight transport,AR-W,SESCO,annual,kg,ff1ab1be-e4b2-3a76-a677-ee597b97b5bf +2011,Corrientes,II.1.1,0.54824,TJ,CH4,0.5,kg/TJ,0.27412,Naphtha combustion consumption by freight transport,AR-W,SESCO,annual,kg,ad60e335-be1c-3b21-ad19-678c161b83d5 +2011,Corrientes,II.1.1,0.54824,TJ,N2O,2.0,kg/TJ,1.09648,Naphtha combustion consumption by freight transport,AR-W,SESCO,annual,kg,341be329-6b5f-3159-9c56-87b99b212335 +2011,Córdoba,II.1.1,2.4670799999999997,TJ,CO2,73300.0,kg/TJ,180836.96399999998,Naphtha combustion consumption by freight transport,AR-X,SESCO,annual,kg,1d118505-7195-3ca8-8200-21b84d51705c +2011,Córdoba,II.1.1,2.4670799999999997,TJ,CH4,0.5,kg/TJ,1.2335399999999999,Naphtha combustion consumption by freight transport,AR-X,SESCO,annual,kg,aef9cc69-1a09-3335-a361-00dc058e51f8 +2011,Córdoba,II.1.1,2.4670799999999997,TJ,N2O,2.0,kg/TJ,4.934159999999999,Naphtha combustion consumption by freight transport,AR-X,SESCO,annual,kg,02215d96-7840-3042-b414-45c14a6c57e8 +2011,Entre Rios,II.1.1,0.9594199999999999,TJ,CO2,73300.0,kg/TJ,70325.48599999999,Naphtha combustion consumption by freight transport,AR-E,SESCO,annual,kg,672cd771-f0b3-3c61-82f3-060061ebfa31 +2011,Entre Rios,II.1.1,0.9594199999999999,TJ,CH4,0.5,kg/TJ,0.47970999999999997,Naphtha combustion consumption by freight transport,AR-E,SESCO,annual,kg,d02d8087-e00b-3bc5-8e2b-5e4a916f1138 +2011,Entre Rios,II.1.1,0.9594199999999999,TJ,N2O,2.0,kg/TJ,1.9188399999999999,Naphtha combustion consumption by freight transport,AR-E,SESCO,annual,kg,dd646882-bfb7-371d-8332-875a47ea17d6 +2011,Formosa,II.1.1,0.06853,TJ,CO2,73300.0,kg/TJ,5023.249,Naphtha combustion consumption by freight transport,AR-P,SESCO,annual,kg,711529f5-32af-3f51-ba64-bca6284ac585 +2011,Formosa,II.1.1,0.06853,TJ,CH4,0.5,kg/TJ,0.034265,Naphtha combustion consumption by freight transport,AR-P,SESCO,annual,kg,5f7bf246-c548-3a9c-80ac-ebc9c48e8dfc +2011,Formosa,II.1.1,0.06853,TJ,N2O,2.0,kg/TJ,0.13706,Naphtha combustion consumption by freight transport,AR-P,SESCO,annual,kg,806662b5-214a-3059-9953-56e2beada00c +2011,Jujuy,II.1.1,0.06853,TJ,CO2,73300.0,kg/TJ,5023.249,Naphtha combustion consumption by freight transport,AR-Y,SESCO,annual,kg,fd718b23-be92-3015-9f76-01676a603076 +2011,Jujuy,II.1.1,0.06853,TJ,CH4,0.5,kg/TJ,0.034265,Naphtha combustion consumption by freight transport,AR-Y,SESCO,annual,kg,aa693055-394f-3a27-8160-b499bc8021a0 +2011,Jujuy,II.1.1,0.06853,TJ,N2O,2.0,kg/TJ,0.13706,Naphtha combustion consumption by freight transport,AR-Y,SESCO,annual,kg,09b4e6ea-1781-39c6-92e2-52378fe71af2 +2011,La Pampa,II.1.1,0.20559,TJ,CO2,73300.0,kg/TJ,15069.747,Naphtha combustion consumption by freight transport,AR-L,SESCO,annual,kg,6b974914-73c0-3021-b376-1f60c1e23bd7 +2011,La Pampa,II.1.1,0.20559,TJ,CH4,0.5,kg/TJ,0.102795,Naphtha combustion consumption by freight transport,AR-L,SESCO,annual,kg,e1c9a9e1-62fe-3faf-b897-369cafcf2fcc +2011,La Pampa,II.1.1,0.20559,TJ,N2O,2.0,kg/TJ,0.41118,Naphtha combustion consumption by freight transport,AR-L,SESCO,annual,kg,71ef0840-ddb4-3f26-9bbf-fa17490622d4 +2011,La Rioja,II.1.1,0.06853,TJ,CO2,73300.0,kg/TJ,5023.249,Naphtha combustion consumption by freight transport,AR-F,SESCO,annual,kg,6516eb96-9e15-3e26-ac01-7c6f9748a7b9 +2011,La Rioja,II.1.1,0.06853,TJ,CH4,0.5,kg/TJ,0.034265,Naphtha combustion consumption by freight transport,AR-F,SESCO,annual,kg,975385f9-dd02-30c7-872a-05ef16488e67 +2011,La Rioja,II.1.1,0.06853,TJ,N2O,2.0,kg/TJ,0.13706,Naphtha combustion consumption by freight transport,AR-F,SESCO,annual,kg,f2281f7e-1e5a-3682-b253-d676922fa4b6 +2011,Mendoza,II.1.1,1.678985,TJ,CO2,73300.0,kg/TJ,123069.6005,Naphtha combustion consumption by freight transport,AR-M,SESCO,annual,kg,d31898ee-94a6-3677-a911-b5bd26832940 +2011,Mendoza,II.1.1,1.678985,TJ,CH4,0.5,kg/TJ,0.8394925,Naphtha combustion consumption by freight transport,AR-M,SESCO,annual,kg,b161ecd8-5ac9-325d-bec0-0029dcea122b +2011,Mendoza,II.1.1,1.678985,TJ,N2O,2.0,kg/TJ,3.35797,Naphtha combustion consumption by freight transport,AR-M,SESCO,annual,kg,9f75d27e-f454-3a20-a434-25a95886682b +2011,Misiones,II.1.1,0.47970999999999997,TJ,CO2,73300.0,kg/TJ,35162.742999999995,Naphtha combustion consumption by freight transport,AR-N,SESCO,annual,kg,d55b6618-2cf8-305b-ae6e-f5052ddbf9d7 +2011,Misiones,II.1.1,0.47970999999999997,TJ,CH4,0.5,kg/TJ,0.23985499999999998,Naphtha combustion consumption by freight transport,AR-N,SESCO,annual,kg,5554b538-9c3c-36a7-bf46-8b6a29341324 +2011,Misiones,II.1.1,0.47970999999999997,TJ,N2O,2.0,kg/TJ,0.9594199999999999,Naphtha combustion consumption by freight transport,AR-N,SESCO,annual,kg,3036853a-388b-35b4-a8be-56c8786fb20a +2011,Neuquén,II.1.1,0.6510349999999999,TJ,CO2,73300.0,kg/TJ,47720.86549999999,Naphtha combustion consumption by freight transport,AR-Q,SESCO,annual,kg,9eb9f654-9c41-3341-b9b0-77876c7c89f5 +2011,Neuquén,II.1.1,0.6510349999999999,TJ,CH4,0.5,kg/TJ,0.32551749999999996,Naphtha combustion consumption by freight transport,AR-Q,SESCO,annual,kg,0df2742e-e6fe-31c8-b31c-1a79dca3b653 +2011,Neuquén,II.1.1,0.6510349999999999,TJ,N2O,2.0,kg/TJ,1.3020699999999998,Naphtha combustion consumption by freight transport,AR-Q,SESCO,annual,kg,20c8184c-a778-30a8-9efa-66eac36c18d8 +2011,Rio Negro,II.1.1,0.6167699999999999,TJ,CO2,73300.0,kg/TJ,45209.240999999995,Naphtha combustion consumption by freight transport,AR-R,SESCO,annual,kg,a14832e0-c51f-35d6-bbb4-c10851d18e1c +2011,Rio Negro,II.1.1,0.6167699999999999,TJ,CH4,0.5,kg/TJ,0.30838499999999996,Naphtha combustion consumption by freight transport,AR-R,SESCO,annual,kg,10c8f481-a2dc-3b22-a5d5-a02820baeaf6 +2011,Rio Negro,II.1.1,0.6167699999999999,TJ,N2O,2.0,kg/TJ,1.2335399999999999,Naphtha combustion consumption by freight transport,AR-R,SESCO,annual,kg,29ce6b8c-1749-380d-b9b8-6bd5e5ec7892 +2011,Salta,II.1.1,0.445445,TJ,CO2,73300.0,kg/TJ,32651.118499999997,Naphtha combustion consumption by freight transport,AR-A,SESCO,annual,kg,40a17e66-4505-33e1-955f-beafc4bcf0a1 +2011,Salta,II.1.1,0.445445,TJ,CH4,0.5,kg/TJ,0.2227225,Naphtha combustion consumption by freight transport,AR-A,SESCO,annual,kg,3b13310e-da7b-338f-b3c0-0a35e006f5f3 +2011,Salta,II.1.1,0.445445,TJ,N2O,2.0,kg/TJ,0.89089,Naphtha combustion consumption by freight transport,AR-A,SESCO,annual,kg,66a3e59f-8991-3469-b0b7-70e89842c88a +2011,San Juan,II.1.1,0.13706,TJ,CO2,73300.0,kg/TJ,10046.498,Naphtha combustion consumption by freight transport,AR-J,SESCO,annual,kg,3752940e-0e5c-3931-bf53-f7d66dc55035 +2011,San Juan,II.1.1,0.13706,TJ,CH4,0.5,kg/TJ,0.06853,Naphtha combustion consumption by freight transport,AR-J,SESCO,annual,kg,15bcefe6-963c-3365-8162-932699c3631d +2011,San Juan,II.1.1,0.13706,TJ,N2O,2.0,kg/TJ,0.27412,Naphtha combustion consumption by freight transport,AR-J,SESCO,annual,kg,6eabb755-c474-3f17-9146-cabf61dc334b +2011,San Luis,II.1.1,0.27412,TJ,CO2,73300.0,kg/TJ,20092.996,Naphtha combustion consumption by freight transport,AR-D,SESCO,annual,kg,1b92a263-fab2-3761-a191-ff6e18f82523 +2011,San Luis,II.1.1,0.27412,TJ,CH4,0.5,kg/TJ,0.13706,Naphtha combustion consumption by freight transport,AR-D,SESCO,annual,kg,68813455-f436-3fae-ad9d-c58aca3a0673 +2011,San Luis,II.1.1,0.27412,TJ,N2O,2.0,kg/TJ,0.54824,Naphtha combustion consumption by freight transport,AR-D,SESCO,annual,kg,ee254adc-2079-3379-b7f2-da929c5f561a +2011,Santa Cruz,II.1.1,0.13706,TJ,CO2,73300.0,kg/TJ,10046.498,Naphtha combustion consumption by freight transport,AR-Z,SESCO,annual,kg,807566c0-ebaa-37f7-85dc-aaf0e9c847d7 +2011,Santa Cruz,II.1.1,0.13706,TJ,CH4,0.5,kg/TJ,0.06853,Naphtha combustion consumption by freight transport,AR-Z,SESCO,annual,kg,f6079e01-5c5d-3d17-bf8b-eaa10daecabf +2011,Santa Cruz,II.1.1,0.13706,TJ,N2O,2.0,kg/TJ,0.27412,Naphtha combustion consumption by freight transport,AR-Z,SESCO,annual,kg,ae5f516a-c3e1-3ef1-a8bf-9a5f668364ec +2011,Santa Fe,II.1.1,3.8376799999999998,TJ,CO2,73300.0,kg/TJ,281301.94399999996,Naphtha combustion consumption by freight transport,AR-S,SESCO,annual,kg,678144b5-2672-3642-a031-e77acf163362 +2011,Santa Fe,II.1.1,3.8376799999999998,TJ,CH4,0.5,kg/TJ,1.9188399999999999,Naphtha combustion consumption by freight transport,AR-S,SESCO,annual,kg,413ed9f2-16b2-3b8a-aa62-0cf103dc2f3e +2011,Santa Fe,II.1.1,3.8376799999999998,TJ,N2O,2.0,kg/TJ,7.6753599999999995,Naphtha combustion consumption by freight transport,AR-S,SESCO,annual,kg,7cd353bf-2da1-39d3-a31f-68048fcf4d17 +2011,Santiago del Estero,II.1.1,0.102795,TJ,CO2,73300.0,kg/TJ,7534.8735,Naphtha combustion consumption by freight transport,AR-G,SESCO,annual,kg,a90cae4c-93a1-32c5-9685-b63d22830728 +2011,Santiago del Estero,II.1.1,0.102795,TJ,CH4,0.5,kg/TJ,0.0513975,Naphtha combustion consumption by freight transport,AR-G,SESCO,annual,kg,02db2bba-d51d-350e-9ab8-556219555435 +2011,Santiago del Estero,II.1.1,0.102795,TJ,N2O,2.0,kg/TJ,0.20559,Naphtha combustion consumption by freight transport,AR-G,SESCO,annual,kg,d6d0ac53-a3b4-3aa6-9610-016f426c8a07 +2011,Tucuman,II.1.1,0.6510349999999999,TJ,CO2,73300.0,kg/TJ,47720.86549999999,Naphtha combustion consumption by freight transport,AR-T,SESCO,annual,kg,f1abd563-1cec-3866-930a-7a3445b4345b +2011,Tucuman,II.1.1,0.6510349999999999,TJ,CH4,0.5,kg/TJ,0.32551749999999996,Naphtha combustion consumption by freight transport,AR-T,SESCO,annual,kg,45fa20eb-8c8b-3543-a7b8-f66929261773 +2011,Tucuman,II.1.1,0.6510349999999999,TJ,N2O,2.0,kg/TJ,1.3020699999999998,Naphtha combustion consumption by freight transport,AR-T,SESCO,annual,kg,1386092d-c2a2-38c5-a5d5-ea8867d63621 +2011,Buenos Aires,II.1.1,11361.257039999999,TJ,CO2,74100.0,kg/TJ,841869146.6639999,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,6a95265c-9c9b-3440-aa40-2afdb44689ab +2011,Buenos Aires,II.1.1,11361.257039999999,TJ,CH4,3.9,kg/TJ,44308.902455999996,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,27bd68e5-29af-3fdb-9937-48cf600494f6 +2011,Buenos Aires,II.1.1,11361.257039999999,TJ,N2O,3.9,kg/TJ,44308.902455999996,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,27bd68e5-29af-3fdb-9937-48cf600494f6 +2011,Capital Federal,II.1.1,2923.011,TJ,CO2,74100.0,kg/TJ,216595115.1,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,80ac7d7e-59a5-3f0c-8349-136888053096 +2011,Capital Federal,II.1.1,2923.011,TJ,CH4,3.9,kg/TJ,11399.7429,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,df2ae4b8-cfed-33cc-af2b-0d91f43326ac +2011,Capital Federal,II.1.1,2923.011,TJ,N2O,3.9,kg/TJ,11399.7429,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,df2ae4b8-cfed-33cc-af2b-0d91f43326ac +2011,Catamarca,II.1.1,169.87236,TJ,CO2,74100.0,kg/TJ,12587541.875999998,Gas Oil combustion consumption by public passenger transport,AR-K,SESCO,annual,kg,2f22b2e1-22ef-35cf-a99c-dc3d1a0a249f +2011,Catamarca,II.1.1,169.87236,TJ,CH4,3.9,kg/TJ,662.5022039999999,Gas Oil combustion consumption by public passenger transport,AR-K,SESCO,annual,kg,f8e7e788-d90f-301c-b7d2-fedcab68ff09 +2011,Catamarca,II.1.1,169.87236,TJ,N2O,3.9,kg/TJ,662.5022039999999,Gas Oil combustion consumption by public passenger transport,AR-K,SESCO,annual,kg,f8e7e788-d90f-301c-b7d2-fedcab68ff09 +2011,Chaco,II.1.1,504.19908,TJ,CO2,74100.0,kg/TJ,37361151.828,Gas Oil combustion consumption by public passenger transport,AR-H,SESCO,annual,kg,4d059f8c-cc2d-3478-a328-102f0e03ddf5 +2011,Chaco,II.1.1,504.19908,TJ,CH4,3.9,kg/TJ,1966.3764119999998,Gas Oil combustion consumption by public passenger transport,AR-H,SESCO,annual,kg,b31ada9c-c0f0-36da-8d22-36e7d45a19bd +2011,Chaco,II.1.1,504.19908,TJ,N2O,3.9,kg/TJ,1966.3764119999998,Gas Oil combustion consumption by public passenger transport,AR-H,SESCO,annual,kg,b31ada9c-c0f0-36da-8d22-36e7d45a19bd +2011,Chubut,II.1.1,176.59068,TJ,CO2,74100.0,kg/TJ,13085369.388,Gas Oil combustion consumption by public passenger transport,AR-U,SESCO,annual,kg,6227ec8f-666d-336f-8b6d-bf2215a75406 +2011,Chubut,II.1.1,176.59068,TJ,CH4,3.9,kg/TJ,688.7036519999999,Gas Oil combustion consumption by public passenger transport,AR-U,SESCO,annual,kg,d5735e30-2076-390d-9b47-f9970a58936d +2011,Chubut,II.1.1,176.59068,TJ,N2O,3.9,kg/TJ,688.7036519999999,Gas Oil combustion consumption by public passenger transport,AR-U,SESCO,annual,kg,d5735e30-2076-390d-9b47-f9970a58936d +2011,Corrientes,II.1.1,483.71903999999995,TJ,CO2,74100.0,kg/TJ,35843580.86399999,Gas Oil combustion consumption by public passenger transport,AR-W,SESCO,annual,kg,e0aca66f-f511-30dd-9456-1bf2efd82f4b +2011,Corrientes,II.1.1,483.71903999999995,TJ,CH4,3.9,kg/TJ,1886.5042559999997,Gas Oil combustion consumption by public passenger transport,AR-W,SESCO,annual,kg,74dcc96e-808b-30cd-b900-3754b8ff38f5 +2011,Corrientes,II.1.1,483.71903999999995,TJ,N2O,3.9,kg/TJ,1886.5042559999997,Gas Oil combustion consumption by public passenger transport,AR-W,SESCO,annual,kg,74dcc96e-808b-30cd-b900-3754b8ff38f5 +2011,Córdoba,II.1.1,2434.34352,TJ,CO2,74100.0,kg/TJ,180384854.832,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,e1982034-b344-3229-907d-74cb8d2db195 +2011,Córdoba,II.1.1,2434.34352,TJ,CH4,3.9,kg/TJ,9493.939728,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,d0d488c1-98f0-3b34-8ff0-9a6476d0a0bc +2011,Córdoba,II.1.1,2434.34352,TJ,N2O,3.9,kg/TJ,9493.939728,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,d0d488c1-98f0-3b34-8ff0-9a6476d0a0bc +2011,Entre Rios,II.1.1,419.20871999999997,TJ,CO2,74100.0,kg/TJ,31063366.152,Gas Oil combustion consumption by public passenger transport,AR-E,SESCO,annual,kg,286022d7-72b3-31d5-b08e-b3cb269f78e8 +2011,Entre Rios,II.1.1,419.20871999999997,TJ,CH4,3.9,kg/TJ,1634.9140079999997,Gas Oil combustion consumption by public passenger transport,AR-E,SESCO,annual,kg,05db1d2d-0610-3f9e-ba83-dc6c3716c4fc +2011,Entre Rios,II.1.1,419.20871999999997,TJ,N2O,3.9,kg/TJ,1634.9140079999997,Gas Oil combustion consumption by public passenger transport,AR-E,SESCO,annual,kg,05db1d2d-0610-3f9e-ba83-dc6c3716c4fc +2011,Formosa,II.1.1,50.06232,TJ,CO2,74100.0,kg/TJ,3709617.912,Gas Oil combustion consumption by public passenger transport,AR-P,SESCO,annual,kg,f402b1d1-5d29-38dc-935b-43d3c88745af +2011,Formosa,II.1.1,50.06232,TJ,CH4,3.9,kg/TJ,195.243048,Gas Oil combustion consumption by public passenger transport,AR-P,SESCO,annual,kg,dcfcd39f-ddfd-3441-9506-7bca40e8abdd +2011,Formosa,II.1.1,50.06232,TJ,N2O,3.9,kg/TJ,195.243048,Gas Oil combustion consumption by public passenger transport,AR-P,SESCO,annual,kg,dcfcd39f-ddfd-3441-9506-7bca40e8abdd +2011,Jujuy,II.1.1,516.6966,TJ,CO2,74100.0,kg/TJ,38287218.06,Gas Oil combustion consumption by public passenger transport,AR-Y,SESCO,annual,kg,a05a82a8-523b-3991-a005-4b9cad4b3deb +2011,Jujuy,II.1.1,516.6966,TJ,CH4,3.9,kg/TJ,2015.11674,Gas Oil combustion consumption by public passenger transport,AR-Y,SESCO,annual,kg,d1459bde-9e14-3df5-b499-b4a3652f6019 +2011,Jujuy,II.1.1,516.6966,TJ,N2O,3.9,kg/TJ,2015.11674,Gas Oil combustion consumption by public passenger transport,AR-Y,SESCO,annual,kg,d1459bde-9e14-3df5-b499-b4a3652f6019 +2011,La Pampa,II.1.1,14.33964,TJ,CO2,74100.0,kg/TJ,1062567.324,Gas Oil combustion consumption by public passenger transport,AR-L,SESCO,annual,kg,3b8a749c-8f7a-347b-a57f-9acf8619de4d +2011,La Pampa,II.1.1,14.33964,TJ,CH4,3.9,kg/TJ,55.924595999999994,Gas Oil combustion consumption by public passenger transport,AR-L,SESCO,annual,kg,59198d0b-9225-3c6f-b255-662b5b1aa671 +2011,La Pampa,II.1.1,14.33964,TJ,N2O,3.9,kg/TJ,55.924595999999994,Gas Oil combustion consumption by public passenger transport,AR-L,SESCO,annual,kg,59198d0b-9225-3c6f-b255-662b5b1aa671 +2011,La Rioja,II.1.1,115.43952,TJ,CO2,74100.0,kg/TJ,8554068.432,Gas Oil combustion consumption by public passenger transport,AR-F,SESCO,annual,kg,2ad4fcee-aaed-3625-8300-6cb4592bee56 +2011,La Rioja,II.1.1,115.43952,TJ,CH4,3.9,kg/TJ,450.214128,Gas Oil combustion consumption by public passenger transport,AR-F,SESCO,annual,kg,08dd3cef-3e26-3ee9-bd83-66c7e71367c2 +2011,La Rioja,II.1.1,115.43952,TJ,N2O,3.9,kg/TJ,450.214128,Gas Oil combustion consumption by public passenger transport,AR-F,SESCO,annual,kg,08dd3cef-3e26-3ee9-bd83-66c7e71367c2 +2011,Mendoza,II.1.1,1557.8555999999999,TJ,CO2,74100.0,kg/TJ,115437099.96,Gas Oil combustion consumption by public passenger transport,AR-M,SESCO,annual,kg,9d808706-9173-3312-8396-6ae236c54488 +2011,Mendoza,II.1.1,1557.8555999999999,TJ,CH4,3.9,kg/TJ,6075.636839999999,Gas Oil combustion consumption by public passenger transport,AR-M,SESCO,annual,kg,b827a316-b747-3e08-9e9c-18f0aae350e6 +2011,Mendoza,II.1.1,1557.8555999999999,TJ,N2O,3.9,kg/TJ,6075.636839999999,Gas Oil combustion consumption by public passenger transport,AR-M,SESCO,annual,kg,b827a316-b747-3e08-9e9c-18f0aae350e6 +2011,Misiones,II.1.1,814.90332,TJ,CO2,74100.0,kg/TJ,60384336.012,Gas Oil combustion consumption by public passenger transport,AR-N,SESCO,annual,kg,fccc423d-6fb0-3b64-852a-cce9afe3f529 +2011,Misiones,II.1.1,814.90332,TJ,CH4,3.9,kg/TJ,3178.122948,Gas Oil combustion consumption by public passenger transport,AR-N,SESCO,annual,kg,e5223648-b8a6-33ce-bf27-4a43e78c98fc +2011,Misiones,II.1.1,814.90332,TJ,N2O,3.9,kg/TJ,3178.122948,Gas Oil combustion consumption by public passenger transport,AR-N,SESCO,annual,kg,e5223648-b8a6-33ce-bf27-4a43e78c98fc +2011,Neuquén,II.1.1,229.75932,TJ,CO2,74100.0,kg/TJ,17025165.612,Gas Oil combustion consumption by public passenger transport,AR-Q,SESCO,annual,kg,93ff211d-ca75-3720-bdb0-03176c4c83be +2011,Neuquén,II.1.1,229.75932,TJ,CH4,3.9,kg/TJ,896.061348,Gas Oil combustion consumption by public passenger transport,AR-Q,SESCO,annual,kg,2d344fd0-674e-3a36-a255-16b9df88a2b3 +2011,Neuquén,II.1.1,229.75932,TJ,N2O,3.9,kg/TJ,896.061348,Gas Oil combustion consumption by public passenger transport,AR-Q,SESCO,annual,kg,2d344fd0-674e-3a36-a255-16b9df88a2b3 +2011,Rio Negro,II.1.1,231.45695999999998,TJ,CO2,74100.0,kg/TJ,17150960.735999998,Gas Oil combustion consumption by public passenger transport,AR-R,SESCO,annual,kg,1f8c16b8-eff3-34c9-9163-34515fcb8ca7 +2011,Rio Negro,II.1.1,231.45695999999998,TJ,CH4,3.9,kg/TJ,902.6821439999999,Gas Oil combustion consumption by public passenger transport,AR-R,SESCO,annual,kg,5724ef0d-660d-3fc7-888b-4b7927c5f941 +2011,Rio Negro,II.1.1,231.45695999999998,TJ,N2O,3.9,kg/TJ,902.6821439999999,Gas Oil combustion consumption by public passenger transport,AR-R,SESCO,annual,kg,5724ef0d-660d-3fc7-888b-4b7927c5f941 +2011,Salta,II.1.1,929.76492,TJ,CO2,74100.0,kg/TJ,68895580.572,Gas Oil combustion consumption by public passenger transport,AR-A,SESCO,annual,kg,91812040-29b0-36ff-8e9f-edbe04449898 +2011,Salta,II.1.1,929.76492,TJ,CH4,3.9,kg/TJ,3626.0831879999996,Gas Oil combustion consumption by public passenger transport,AR-A,SESCO,annual,kg,6cb3e639-52ad-3800-acc2-4b7f50699969 +2011,Salta,II.1.1,929.76492,TJ,N2O,3.9,kg/TJ,3626.0831879999996,Gas Oil combustion consumption by public passenger transport,AR-A,SESCO,annual,kg,6cb3e639-52ad-3800-acc2-4b7f50699969 +2011,San Juan,II.1.1,474.29172,TJ,CO2,74100.0,kg/TJ,35145016.452,Gas Oil combustion consumption by public passenger transport,AR-J,SESCO,annual,kg,56198d8c-bc39-3cfd-bc38-aef3c6fe8293 +2011,San Juan,II.1.1,474.29172,TJ,CH4,3.9,kg/TJ,1849.7377079999999,Gas Oil combustion consumption by public passenger transport,AR-J,SESCO,annual,kg,1e992e14-8926-30ca-bc41-a1a8b1a4f13c +2011,San Juan,II.1.1,474.29172,TJ,N2O,3.9,kg/TJ,1849.7377079999999,Gas Oil combustion consumption by public passenger transport,AR-J,SESCO,annual,kg,1e992e14-8926-30ca-bc41-a1a8b1a4f13c +2011,San Luis,II.1.1,103.37544,TJ,CO2,74100.0,kg/TJ,7660120.104,Gas Oil combustion consumption by public passenger transport,AR-D,SESCO,annual,kg,064b6576-d9a6-3b95-b8c3-37c9bb9ac1dd +2011,San Luis,II.1.1,103.37544,TJ,CH4,3.9,kg/TJ,403.16421599999995,Gas Oil combustion consumption by public passenger transport,AR-D,SESCO,annual,kg,790dc665-17ee-313a-b3bf-4c09b7889dc2 +2011,San Luis,II.1.1,103.37544,TJ,N2O,3.9,kg/TJ,403.16421599999995,Gas Oil combustion consumption by public passenger transport,AR-D,SESCO,annual,kg,790dc665-17ee-313a-b3bf-4c09b7889dc2 +2011,Santa Cruz,II.1.1,80.36699999999999,TJ,CO2,74100.0,kg/TJ,5955194.699999999,Gas Oil combustion consumption by public passenger transport,AR-Z,SESCO,annual,kg,25cf3e12-ac73-36db-a9d1-5b48ae9570f1 +2011,Santa Cruz,II.1.1,80.36699999999999,TJ,CH4,3.9,kg/TJ,313.43129999999996,Gas Oil combustion consumption by public passenger transport,AR-Z,SESCO,annual,kg,d39bf09a-a2f0-3ce0-bfa7-b0f3b8fac2ef +2011,Santa Cruz,II.1.1,80.36699999999999,TJ,N2O,3.9,kg/TJ,313.43129999999996,Gas Oil combustion consumption by public passenger transport,AR-Z,SESCO,annual,kg,d39bf09a-a2f0-3ce0-bfa7-b0f3b8fac2ef +2011,Santa Fe,II.1.1,1399.90284,TJ,CO2,74100.0,kg/TJ,103732800.44399999,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,f5227bf6-792f-3c72-b3d7-ca27dd0863a0 +2011,Santa Fe,II.1.1,1399.90284,TJ,CH4,3.9,kg/TJ,5459.621075999999,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,f5a310d9-ab33-3849-839a-6e096901ac4a +2011,Santa Fe,II.1.1,1399.90284,TJ,N2O,3.9,kg/TJ,5459.621075999999,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,f5a310d9-ab33-3849-839a-6e096901ac4a +2011,Santiago del Estero,II.1.1,364.16184,TJ,CO2,74100.0,kg/TJ,26984392.344,Gas Oil combustion consumption by public passenger transport,AR-G,SESCO,annual,kg,0156e03e-3780-3508-bbc0-c7dd2d6c6e0e +2011,Santiago del Estero,II.1.1,364.16184,TJ,CH4,3.9,kg/TJ,1420.231176,Gas Oil combustion consumption by public passenger transport,AR-G,SESCO,annual,kg,eb44ae64-c122-3e0d-8020-b6d53ff245d9 +2011,Santiago del Estero,II.1.1,364.16184,TJ,N2O,3.9,kg/TJ,1420.231176,Gas Oil combustion consumption by public passenger transport,AR-G,SESCO,annual,kg,eb44ae64-c122-3e0d-8020-b6d53ff245d9 +2011,Tierra del Fuego,II.1.1,17.987759999999998,TJ,CO2,74100.0,kg/TJ,1332893.0159999998,Gas Oil combustion consumption by public passenger transport,AR-V,SESCO,annual,kg,0526708d-37fa-3304-a932-75d49c1ba877 +2011,Tierra del Fuego,II.1.1,17.987759999999998,TJ,CH4,3.9,kg/TJ,70.15226399999999,Gas Oil combustion consumption by public passenger transport,AR-V,SESCO,annual,kg,a32d0e72-4134-343d-90ac-db43cd7aa747 +2011,Tierra del Fuego,II.1.1,17.987759999999998,TJ,N2O,3.9,kg/TJ,70.15226399999999,Gas Oil combustion consumption by public passenger transport,AR-V,SESCO,annual,kg,a32d0e72-4134-343d-90ac-db43cd7aa747 +2011,Tucuman,II.1.1,1098.55368,TJ,CO2,74100.0,kg/TJ,81402827.688,Gas Oil combustion consumption by public passenger transport,AR-T,SESCO,annual,kg,99bf8494-73ba-3ebb-b605-9885209ff768 +2011,Tucuman,II.1.1,1098.55368,TJ,CH4,3.9,kg/TJ,4284.3593519999995,Gas Oil combustion consumption by public passenger transport,AR-T,SESCO,annual,kg,4c33477b-7f98-3e2d-8a9f-28b884137176 +2011,Tucuman,II.1.1,1098.55368,TJ,N2O,3.9,kg/TJ,4284.3593519999995,Gas Oil combustion consumption by public passenger transport,AR-T,SESCO,annual,kg,4c33477b-7f98-3e2d-8a9f-28b884137176 +2012,Buenos Aires,II.5.1,0.65016,TJ,CO2,74100.0,kg/TJ,48176.856,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,84e0bbcf-ed29-315f-a85e-2187553b0672 +2012,Buenos Aires,II.5.1,0.65016,TJ,CH4,3.9,kg/TJ,2.535624,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,f44555ee-7e37-32ed-9acd-3edc0dac4830 +2012,Buenos Aires,II.5.1,0.65016,TJ,N2O,3.9,kg/TJ,2.535624,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,f44555ee-7e37-32ed-9acd-3edc0dac4830 +2012,Santa Fe,II.5.1,0.68628,TJ,CO2,74100.0,kg/TJ,50853.348,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,ec772ab6-b665-3635-b61f-6e30883d8ce8 +2012,Santa Fe,II.5.1,0.68628,TJ,CH4,3.9,kg/TJ,2.676492,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,1baa35d5-422d-3f0c-8898-e96487689493 +2012,Santa Fe,II.5.1,0.68628,TJ,N2O,3.9,kg/TJ,2.676492,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,1baa35d5-422d-3f0c-8898-e96487689493 +2012,Capital Federal,II.1.1,0.44680439999999993,TJ,CO2,74100.0,kg/TJ,33108.20604,Diesel Oil combustion consumption by freight transport,AR-C,SESCO,annual,kg,74ee81dd-d9ba-38b4-b2fc-45c27c0cdcab +2012,Capital Federal,II.1.1,0.44680439999999993,TJ,CH4,5.0,kg/TJ,2.2340219999999995,Diesel Oil combustion consumption by freight transport,AR-C,SESCO,annual,kg,d988ba08-7c6c-3804-b520-93e6583f7c62 +2012,Capital Federal,II.1.1,0.44680439999999993,TJ,N2O,0.6,kg/TJ,0.2680826399999999,Diesel Oil combustion consumption by freight transport,AR-C,SESCO,annual,kg,b6489002-471a-3647-9cd7-522bc81f185c +2012,Capital Federal,II.1.1,0.5418,TJ,CO2,74100.0,kg/TJ,40147.38,Gas Oil combustion consumption by freight transport,AR-C,SESCO,annual,kg,087f4d69-6aea-3ac0-9203-17fe797695bb +2012,Capital Federal,II.1.1,0.5418,TJ,CH4,3.9,kg/TJ,2.1130199999999997,Gas Oil combustion consumption by freight transport,AR-C,SESCO,annual,kg,c2451603-da4a-396a-a18e-a8408c6f6210 +2012,Capital Federal,II.1.1,0.5418,TJ,N2O,3.9,kg/TJ,2.1130199999999997,Gas Oil combustion consumption by freight transport,AR-C,SESCO,annual,kg,c2451603-da4a-396a-a18e-a8408c6f6210 +2012,Capital Federal,II.1.1,2.13108,TJ,CO2,74100.0,kg/TJ,157913.028,Diesel Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,4b9f9852-3af4-3661-874a-62f3a53b5256 +2012,Capital Federal,II.1.1,2.13108,TJ,CH4,5.0,kg/TJ,10.6554,Diesel Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,540b9fd9-a285-39a5-830d-1f723e7d56cb +2012,Capital Federal,II.1.1,2.13108,TJ,N2O,0.6,kg/TJ,1.2786479999999998,Diesel Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,9355edfa-f5e3-36b4-a8f5-54f1b669750c +2012,Buenos Aires,II.5.1,266.45724,TJ,CO2,74100.0,kg/TJ,19744481.484,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,a028fc3e-2a8e-3fd6-8c7a-5f48d4131508 +2012,Buenos Aires,II.5.1,266.45724,TJ,CH4,3.9,kg/TJ,1039.183236,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,31cf76e4-e095-3251-b884-b2573e85abbe +2012,Buenos Aires,II.5.1,266.45724,TJ,N2O,3.9,kg/TJ,1039.183236,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,31cf76e4-e095-3251-b884-b2573e85abbe +2012,Buenos Aires,II.1.1,256.05467999999996,TJ,CO2,74100.0,kg/TJ,18973651.788,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,fe369169-c399-355c-8aaa-cad9613bf755 +2012,Buenos Aires,II.1.1,256.05467999999996,TJ,CH4,3.9,kg/TJ,998.6132519999999,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,871d014f-b0d8-33bf-81e6-51124e038bfc +2012,Buenos Aires,II.1.1,256.05467999999996,TJ,N2O,3.9,kg/TJ,998.6132519999999,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,871d014f-b0d8-33bf-81e6-51124e038bfc +2012,Capital Federal,II.1.1,105.50652,TJ,CO2,74100.0,kg/TJ,7818033.131999999,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,77411db6-e928-3b48-8915-6ee287d8a008 +2012,Capital Federal,II.1.1,105.50652,TJ,CH4,3.9,kg/TJ,411.47542799999997,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,afa40f11-2773-39ea-a108-29f598acd34b +2012,Capital Federal,II.1.1,105.50652,TJ,N2O,3.9,kg/TJ,411.47542799999997,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,afa40f11-2773-39ea-a108-29f598acd34b +2012,Córdoba,II.1.1,8.813279999999999,TJ,CO2,74100.0,kg/TJ,653064.048,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,4314f886-0e74-31de-b610-73bb44281fc3 +2012,Córdoba,II.1.1,8.813279999999999,TJ,CH4,3.9,kg/TJ,34.37179199999999,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,51a376b9-ad36-3923-a55b-1be8fce013cf +2012,Córdoba,II.1.1,8.813279999999999,TJ,N2O,3.9,kg/TJ,34.37179199999999,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,51a376b9-ad36-3923-a55b-1be8fce013cf +2012,Entre Rios,II.1.1,42.838319999999996,TJ,CO2,74100.0,kg/TJ,3174319.5119999996,Gas Oil combustion consumption by public passenger transport,AR-E,SESCO,annual,kg,0488adce-f4a5-3755-b197-f1d95bcaec2d +2012,Entre Rios,II.1.1,42.838319999999996,TJ,CH4,3.9,kg/TJ,167.069448,Gas Oil combustion consumption by public passenger transport,AR-E,SESCO,annual,kg,97cfd320-e325-3894-89a1-283d91f450df +2012,Entre Rios,II.1.1,42.838319999999996,TJ,N2O,3.9,kg/TJ,167.069448,Gas Oil combustion consumption by public passenger transport,AR-E,SESCO,annual,kg,97cfd320-e325-3894-89a1-283d91f450df +2012,Mendoza,II.1.1,16.7958,TJ,CO2,74100.0,kg/TJ,1244568.78,Gas Oil combustion consumption by public passenger transport,AR-M,SESCO,annual,kg,1b9c7390-9565-3f00-b58f-e62bb6f6df9a +2012,Mendoza,II.1.1,16.7958,TJ,CH4,3.9,kg/TJ,65.50362,Gas Oil combustion consumption by public passenger transport,AR-M,SESCO,annual,kg,88971981-8806-3092-bfce-910a162f2cbd +2012,Mendoza,II.1.1,16.7958,TJ,N2O,3.9,kg/TJ,65.50362,Gas Oil combustion consumption by public passenger transport,AR-M,SESCO,annual,kg,88971981-8806-3092-bfce-910a162f2cbd +2012,Misiones,II.1.1,21.45528,TJ,CO2,74100.0,kg/TJ,1589836.248,Gas Oil combustion consumption by public passenger transport,AR-N,SESCO,annual,kg,9ad1be9c-5dc7-3dcd-8d19-4bdcbbcd41f3 +2012,Misiones,II.1.1,21.45528,TJ,CH4,3.9,kg/TJ,83.675592,Gas Oil combustion consumption by public passenger transport,AR-N,SESCO,annual,kg,fb755524-196a-3468-a419-7bcc8cfcab22 +2012,Misiones,II.1.1,21.45528,TJ,N2O,3.9,kg/TJ,83.675592,Gas Oil combustion consumption by public passenger transport,AR-N,SESCO,annual,kg,fb755524-196a-3468-a419-7bcc8cfcab22 +2012,Salta,II.1.1,6.57384,TJ,CO2,74100.0,kg/TJ,487121.544,Gas Oil combustion consumption by public passenger transport,AR-A,SESCO,annual,kg,2256f562-811a-3c2b-9b3e-dc6ae64ef779 +2012,Salta,II.1.1,6.57384,TJ,CH4,3.9,kg/TJ,25.637976,Gas Oil combustion consumption by public passenger transport,AR-A,SESCO,annual,kg,1564c4e0-1fc7-3be1-920a-8934934f313c +2012,Salta,II.1.1,6.57384,TJ,N2O,3.9,kg/TJ,25.637976,Gas Oil combustion consumption by public passenger transport,AR-A,SESCO,annual,kg,1564c4e0-1fc7-3be1-920a-8934934f313c +2012,San Juan,II.1.1,8.126999999999999,TJ,CO2,74100.0,kg/TJ,602210.7,Gas Oil combustion consumption by public passenger transport,AR-J,SESCO,annual,kg,c5cf53ea-7070-3d26-9a75-60949f4a1e97 +2012,San Juan,II.1.1,8.126999999999999,TJ,CH4,3.9,kg/TJ,31.695299999999996,Gas Oil combustion consumption by public passenger transport,AR-J,SESCO,annual,kg,2c0e9cf1-514d-3f98-849f-4c060fe5b96e +2012,San Juan,II.1.1,8.126999999999999,TJ,N2O,3.9,kg/TJ,31.695299999999996,Gas Oil combustion consumption by public passenger transport,AR-J,SESCO,annual,kg,2c0e9cf1-514d-3f98-849f-4c060fe5b96e +2012,Santa Fe,II.1.1,24.453239999999997,TJ,CO2,74100.0,kg/TJ,1811985.0839999998,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,afd40732-f8c2-34f5-a84d-b163ab8724f1 +2012,Santa Fe,II.1.1,24.453239999999997,TJ,CH4,3.9,kg/TJ,95.36763599999999,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,428be613-fc04-33d2-b532-8d5c8f4d4041 +2012,Santa Fe,II.1.1,24.453239999999997,TJ,N2O,3.9,kg/TJ,95.36763599999999,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,428be613-fc04-33d2-b532-8d5c8f4d4041 +2012,Buenos Aires,II.5.1,199.1728,TJ,CO2,69300.0,kg/TJ,13802675.04,Motor Gasoline combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,49990c35-5374-30ca-98a1-f61796c7f25b +2012,Buenos Aires,II.5.1,199.1728,TJ,CH4,33.0,kg/TJ,6572.7024,Motor Gasoline combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,d7dd125f-79ee-3214-a623-6829b382ab45 +2012,Buenos Aires,II.5.1,199.1728,TJ,N2O,3.2,kg/TJ,637.35296,Motor Gasoline combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,24d18294-c897-36bd-baab-331833d7bac6 +2012,Córdoba,II.5.1,88.6,TJ,CO2,69300.0,kg/TJ,6139980.0,Motor Gasoline combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,7ae424fa-8e3b-39bb-80e9-3c021e892046 +2012,Córdoba,II.5.1,88.6,TJ,CH4,33.0,kg/TJ,2923.7999999999997,Motor Gasoline combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,1395dce2-9e5d-349c-9c55-4acdac56240f +2012,Córdoba,II.5.1,88.6,TJ,N2O,3.2,kg/TJ,283.52,Motor Gasoline combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,d74c6134-6f41-365b-83e1-89bf659912fe +2012,Santa Fe,II.5.1,259.90189799999996,TJ,CO2,69300.0,kg/TJ,18011201.5314,Motor Gasoline combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,bd321ca1-d109-3995-a634-7353d4bb1dde +2012,Santa Fe,II.5.1,259.90189799999996,TJ,CH4,33.0,kg/TJ,8576.762633999999,Motor Gasoline combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,091e388a-7ddc-3317-b829-b9fb274e24c4 +2012,Santa Fe,II.5.1,259.90189799999996,TJ,N2O,3.2,kg/TJ,831.6860735999999,Motor Gasoline combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,d65146c3-abef-3e0e-93b5-5067f6ba3260 +2012,Buenos Aires,II.5.1,79.370088,TJ,CO2,74100.0,kg/TJ,5881323.5208,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,d3036eaa-b718-3d48-992c-a184344566b5 +2012,Buenos Aires,II.5.1,79.370088,TJ,CH4,3.9,kg/TJ,309.5433432,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,89db2a94-48d1-3e0d-b0b2-1ad53ae511c8 +2012,Buenos Aires,II.5.1,79.370088,TJ,N2O,3.9,kg/TJ,309.5433432,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,89db2a94-48d1-3e0d-b0b2-1ad53ae511c8 +2012,Capital Federal,II.5.1,7.223999999999999,TJ,CO2,74100.0,kg/TJ,535298.3999999999,Gas Oil combustion consumption by agriculture machines,AR-C,SESCO,annual,kg,ddb962f1-565c-3128-b5ec-ceb0e50c07d4 +2012,Capital Federal,II.5.1,7.223999999999999,TJ,CH4,3.9,kg/TJ,28.173599999999997,Gas Oil combustion consumption by agriculture machines,AR-C,SESCO,annual,kg,7adc3e58-98ee-3a00-b3c4-2a384ce0f71e +2012,Capital Federal,II.5.1,7.223999999999999,TJ,N2O,3.9,kg/TJ,28.173599999999997,Gas Oil combustion consumption by agriculture machines,AR-C,SESCO,annual,kg,7adc3e58-98ee-3a00-b3c4-2a384ce0f71e +2012,Chaco,II.5.1,77.0461272,TJ,CO2,74100.0,kg/TJ,5709118.02552,Gas Oil combustion consumption by agriculture machines,AR-H,SESCO,annual,kg,ddc2ae4e-78d0-302d-a9a3-6300b1c2ed6d +2012,Chaco,II.5.1,77.0461272,TJ,CH4,3.9,kg/TJ,300.47989608,Gas Oil combustion consumption by agriculture machines,AR-H,SESCO,annual,kg,a6efbddd-601a-39a3-b9ed-24b447773814 +2012,Chaco,II.5.1,77.0461272,TJ,N2O,3.9,kg/TJ,300.47989608,Gas Oil combustion consumption by agriculture machines,AR-H,SESCO,annual,kg,a6efbddd-601a-39a3-b9ed-24b447773814 +2012,Córdoba,II.5.1,36.560663999999996,TJ,CO2,74100.0,kg/TJ,2709145.2024,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,dbc2b35f-c2aa-3852-ab41-a65ba9bcd7e3 +2012,Córdoba,II.5.1,36.560663999999996,TJ,CH4,3.9,kg/TJ,142.58658959999997,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,bc558ee0-8741-3e2b-bda1-54c496dd2635 +2012,Córdoba,II.5.1,36.560663999999996,TJ,N2O,3.9,kg/TJ,142.58658959999997,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,bc558ee0-8741-3e2b-bda1-54c496dd2635 +2012,La Pampa,II.5.1,22.86396,TJ,CO2,74100.0,kg/TJ,1694219.436,Gas Oil combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,5a9ff3f6-636b-32fb-b70f-02ddffcebb71 +2012,La Pampa,II.5.1,22.86396,TJ,CH4,3.9,kg/TJ,89.169444,Gas Oil combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,9543368e-645b-3626-bb10-0f0eae63e27d +2012,La Pampa,II.5.1,22.86396,TJ,N2O,3.9,kg/TJ,89.169444,Gas Oil combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,9543368e-645b-3626-bb10-0f0eae63e27d +2012,Mendoza,II.5.1,1.15584,TJ,CO2,74100.0,kg/TJ,85647.74399999999,Gas Oil combustion consumption by agriculture machines,AR-M,SESCO,annual,kg,0fc1d836-f315-383c-bf28-d22e6ce2c419 +2012,Mendoza,II.5.1,1.15584,TJ,CH4,3.9,kg/TJ,4.507776,Gas Oil combustion consumption by agriculture machines,AR-M,SESCO,annual,kg,3f039bd9-a42c-3251-8853-84e0a05af018 +2012,Mendoza,II.5.1,1.15584,TJ,N2O,3.9,kg/TJ,4.507776,Gas Oil combustion consumption by agriculture machines,AR-M,SESCO,annual,kg,3f039bd9-a42c-3251-8853-84e0a05af018 +2012,Rio Negro,II.5.1,16.976399999999998,TJ,CO2,74100.0,kg/TJ,1257951.2399999998,Gas Oil combustion consumption by agriculture machines,AR-R,SESCO,annual,kg,d5dbdd10-24c3-36f1-8d6a-25d27630ad8e +2012,Rio Negro,II.5.1,16.976399999999998,TJ,CH4,3.9,kg/TJ,66.20795999999999,Gas Oil combustion consumption by agriculture machines,AR-R,SESCO,annual,kg,3edd096c-3ca2-35d9-b842-f9a1dbb85fdd +2012,Rio Negro,II.5.1,16.976399999999998,TJ,N2O,3.9,kg/TJ,66.20795999999999,Gas Oil combustion consumption by agriculture machines,AR-R,SESCO,annual,kg,3edd096c-3ca2-35d9-b842-f9a1dbb85fdd +2012,Santa Fe,II.5.1,363.3101304,TJ,CO2,74100.0,kg/TJ,26921280.662639998,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,9ee29d39-1001-3aae-be5a-9be9fe5682e3 +2012,Santa Fe,II.5.1,363.3101304,TJ,CH4,3.9,kg/TJ,1416.90950856,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,6b6e3422-f2d9-36b0-bc60-f5aeabd61bec +2012,Santa Fe,II.5.1,363.3101304,TJ,N2O,3.9,kg/TJ,1416.90950856,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,6b6e3422-f2d9-36b0-bc60-f5aeabd61bec +2012,Córdoba,II.5.1,7.874097,TJ,CO2,73300.0,kg/TJ,577171.3101,Naphtha combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,a3e215b9-2852-3f40-98a5-d4b7e12f8132 +2012,Córdoba,II.5.1,7.874097,TJ,CH4,0.5,kg/TJ,3.9370485,Naphtha combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,be46af68-bcea-3fa2-b476-58262339cf34 +2012,Córdoba,II.5.1,7.874097,TJ,N2O,2.0,kg/TJ,15.748194,Naphtha combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,2d22632d-95ef-3b49-92b5-3bb967fef647 +2012,Santa Fe,II.5.1,21.340241999999996,TJ,CO2,73300.0,kg/TJ,1564239.7385999998,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,20cc3830-c339-3538-8342-3fd9382e491e +2012,Santa Fe,II.5.1,21.340241999999996,TJ,CH4,0.5,kg/TJ,10.670120999999998,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,7b544067-0ed7-3296-8786-8555192f9b41 +2012,Santa Fe,II.5.1,21.340241999999996,TJ,N2O,2.0,kg/TJ,42.68048399999999,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,6e318bfc-fa7d-3b5a-82fa-502e6bacb94c +2012,Córdoba,II.5.1,3.755444,TJ,CO2,73300.0,kg/TJ,275274.0452,Naphtha combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,14b45390-ca7a-398a-9141-6af1e8352a8c +2012,Córdoba,II.5.1,3.755444,TJ,CH4,0.5,kg/TJ,1.877722,Naphtha combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,d7ff07dc-a48c-3de4-a940-e4854c3fec9c +2012,Córdoba,II.5.1,3.755444,TJ,N2O,2.0,kg/TJ,7.510888,Naphtha combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,b1bff9f3-73df-3fc1-99ea-95273b774ad2 +2012,Santa Fe,II.5.1,0.6167699999999999,TJ,CO2,73300.0,kg/TJ,45209.240999999995,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,2a21d722-0b11-3e36-bf6f-41dd5feee660 +2012,Santa Fe,II.5.1,0.6167699999999999,TJ,CH4,0.5,kg/TJ,0.30838499999999996,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,adc619da-e0c6-3238-9d3e-7b7689956639 +2012,Santa Fe,II.5.1,0.6167699999999999,TJ,N2O,2.0,kg/TJ,1.2335399999999999,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,2b537ab6-5ecb-390e-a1b4-56a9f122b813 +2012,Capital Federal,II.2.1,61.260242399999996,TJ,CO2,74100.0,kg/TJ,4539383.96184,Gas Oil combustion consumption by railway transport,AR-C,SESCO,annual,kg,4b680641-33ba-3a62-9207-ea7ce5624d7f +2012,Capital Federal,II.2.1,61.260242399999996,TJ,CH4,3.9,kg/TJ,238.91494536,Gas Oil combustion consumption by railway transport,AR-C,SESCO,annual,kg,e48245e2-e295-315a-9d03-244557ef9e27 +2012,Capital Federal,II.2.1,61.260242399999996,TJ,N2O,3.9,kg/TJ,238.91494536,Gas Oil combustion consumption by railway transport,AR-C,SESCO,annual,kg,e48245e2-e295-315a-9d03-244557ef9e27 +2012,Córdoba,II.2.1,7.51296,TJ,CO2,74100.0,kg/TJ,556710.336,Gas Oil combustion consumption by railway transport,AR-X,SESCO,annual,kg,6abf2e59-f464-3475-b4be-ae7ab505283c +2012,Córdoba,II.2.1,7.51296,TJ,CH4,3.9,kg/TJ,29.300544,Gas Oil combustion consumption by railway transport,AR-X,SESCO,annual,kg,c9effdf8-507e-3bd9-9a9f-b0fe9c1d214a +2012,Córdoba,II.2.1,7.51296,TJ,N2O,3.9,kg/TJ,29.300544,Gas Oil combustion consumption by railway transport,AR-X,SESCO,annual,kg,c9effdf8-507e-3bd9-9a9f-b0fe9c1d214a +2012,Mendoza,II.2.1,16.615199999999998,TJ,CO2,74100.0,kg/TJ,1231186.3199999998,Gas Oil combustion consumption by railway transport,AR-M,SESCO,annual,kg,6d4fd9b0-df05-3e93-b273-c906dd3209d2 +2012,Mendoza,II.2.1,16.615199999999998,TJ,CH4,3.9,kg/TJ,64.79928,Gas Oil combustion consumption by railway transport,AR-M,SESCO,annual,kg,ce17a550-c71a-3e41-806a-27de2506226a +2012,Mendoza,II.2.1,16.615199999999998,TJ,N2O,3.9,kg/TJ,64.79928,Gas Oil combustion consumption by railway transport,AR-M,SESCO,annual,kg,ce17a550-c71a-3e41-806a-27de2506226a +2012,Buenos Aires,II.1.1,1136.3952783959999,TJ,CO2,74100.0,kg/TJ,84206890.1291436,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,ec82e15c-8d16-3617-96b6-f2aea3885baf +2012,Buenos Aires,II.1.1,1136.3952783959999,TJ,CH4,3.9,kg/TJ,4431.941585744399,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,79e0c7ae-3f30-3dc9-91f5-329d1c74a410 +2012,Buenos Aires,II.1.1,1136.3952783959999,TJ,N2O,3.9,kg/TJ,4431.941585744399,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,79e0c7ae-3f30-3dc9-91f5-329d1c74a410 +2012,Capital Federal,II.1.1,280.9146312,TJ,CO2,74100.0,kg/TJ,20815774.171919998,Gas Oil combustion consumption by freight transport,AR-C,SESCO,annual,kg,9d53b80d-2d53-36d8-aebd-3045ee6d2d35 +2012,Capital Federal,II.1.1,280.9146312,TJ,CH4,3.9,kg/TJ,1095.5670616799998,Gas Oil combustion consumption by freight transport,AR-C,SESCO,annual,kg,c21e6c24-14e8-3a98-a093-3fd48454efd3 +2012,Capital Federal,II.1.1,280.9146312,TJ,N2O,3.9,kg/TJ,1095.5670616799998,Gas Oil combustion consumption by freight transport,AR-C,SESCO,annual,kg,c21e6c24-14e8-3a98-a093-3fd48454efd3 +2012,Chaco,II.1.1,125.32256604,TJ,CO2,74100.0,kg/TJ,9286402.143564,Gas Oil combustion consumption by freight transport,AR-H,SESCO,annual,kg,3b377db2-f38b-3355-8427-32e3900b7a21 +2012,Chaco,II.1.1,125.32256604,TJ,CH4,3.9,kg/TJ,488.758007556,Gas Oil combustion consumption by freight transport,AR-H,SESCO,annual,kg,20000e3f-842e-37ff-bfa2-46220d02da7e +2012,Chaco,II.1.1,125.32256604,TJ,N2O,3.9,kg/TJ,488.758007556,Gas Oil combustion consumption by freight transport,AR-H,SESCO,annual,kg,20000e3f-842e-37ff-bfa2-46220d02da7e +2012,Chubut,II.1.1,21.426665736,TJ,CO2,74100.0,kg/TJ,1587715.9310376,Gas Oil combustion consumption by freight transport,AR-U,SESCO,annual,kg,d8b19744-ac35-38bc-8976-4b08341b1830 +2012,Chubut,II.1.1,21.426665736,TJ,CH4,3.9,kg/TJ,83.5639963704,Gas Oil combustion consumption by freight transport,AR-U,SESCO,annual,kg,b50d3db0-3bb4-3936-a4f4-1022d4b51182 +2012,Chubut,II.1.1,21.426665736,TJ,N2O,3.9,kg/TJ,83.5639963704,Gas Oil combustion consumption by freight transport,AR-U,SESCO,annual,kg,b50d3db0-3bb4-3936-a4f4-1022d4b51182 +2012,Corrientes,II.1.1,285.8135868,TJ,CO2,74100.0,kg/TJ,21178786.78188,Gas Oil combustion consumption by freight transport,AR-W,SESCO,annual,kg,5857f1ee-afcc-30d1-8612-e87af9d2bb74 +2012,Corrientes,II.1.1,285.8135868,TJ,CH4,3.9,kg/TJ,1114.67298852,Gas Oil combustion consumption by freight transport,AR-W,SESCO,annual,kg,3fe05538-8476-3825-a8b9-a68fd3220b2a +2012,Corrientes,II.1.1,285.8135868,TJ,N2O,3.9,kg/TJ,1114.67298852,Gas Oil combustion consumption by freight transport,AR-W,SESCO,annual,kg,3fe05538-8476-3825-a8b9-a68fd3220b2a +2012,Córdoba,II.1.1,75.85199999999999,TJ,CO2,74100.0,kg/TJ,5620633.199999999,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,6017a3e8-d29c-35d6-b7c7-2b1f5317687b +2012,Córdoba,II.1.1,75.85199999999999,TJ,CH4,3.9,kg/TJ,295.8228,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,c300c4c4-785a-3167-9fea-6c8daeaf535b +2012,Córdoba,II.1.1,75.85199999999999,TJ,N2O,3.9,kg/TJ,295.8228,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,c300c4c4-785a-3167-9fea-6c8daeaf535b +2012,Entre Rios,II.1.1,31.5649068,TJ,CO2,74100.0,kg/TJ,2338959.59388,Gas Oil combustion consumption by freight transport,AR-E,SESCO,annual,kg,1d9429c4-7138-3c8e-88a0-d41597fceb88 +2012,Entre Rios,II.1.1,31.5649068,TJ,CH4,3.9,kg/TJ,123.10313651999999,Gas Oil combustion consumption by freight transport,AR-E,SESCO,annual,kg,ded90f6c-dded-3166-aa28-a5411e718dc1 +2012,Entre Rios,II.1.1,31.5649068,TJ,N2O,3.9,kg/TJ,123.10313651999999,Gas Oil combustion consumption by freight transport,AR-E,SESCO,annual,kg,ded90f6c-dded-3166-aa28-a5411e718dc1 +2012,Formosa,II.1.1,86.48031,TJ,CO2,74100.0,kg/TJ,6408190.971,Gas Oil combustion consumption by freight transport,AR-P,SESCO,annual,kg,81e21a98-2226-31d2-8c97-abe1a579775b +2012,Formosa,II.1.1,86.48031,TJ,CH4,3.9,kg/TJ,337.273209,Gas Oil combustion consumption by freight transport,AR-P,SESCO,annual,kg,18dc882d-6638-31ab-967d-749cbdb8e7b5 +2012,Formosa,II.1.1,86.48031,TJ,N2O,3.9,kg/TJ,337.273209,Gas Oil combustion consumption by freight transport,AR-P,SESCO,annual,kg,18dc882d-6638-31ab-967d-749cbdb8e7b5 +2012,Jujuy,II.1.1,17.307620399999998,TJ,CO2,74100.0,kg/TJ,1282494.6716399998,Gas Oil combustion consumption by freight transport,AR-Y,SESCO,annual,kg,bacce298-bc8d-30c9-8dd3-3f08e93d6d3c +2012,Jujuy,II.1.1,17.307620399999998,TJ,CH4,3.9,kg/TJ,67.49971955999999,Gas Oil combustion consumption by freight transport,AR-Y,SESCO,annual,kg,5829f7e4-3f79-3584-bf5d-2b94378747a6 +2012,Jujuy,II.1.1,17.307620399999998,TJ,N2O,3.9,kg/TJ,67.49971955999999,Gas Oil combustion consumption by freight transport,AR-Y,SESCO,annual,kg,5829f7e4-3f79-3584-bf5d-2b94378747a6 +2012,La Pampa,II.1.1,1.7268971999999998,TJ,CO2,74100.0,kg/TJ,127963.08251999998,Gas Oil combustion consumption by freight transport,AR-L,SESCO,annual,kg,fa25d385-2826-3a72-b327-88933b614e0f +2012,La Pampa,II.1.1,1.7268971999999998,TJ,CH4,3.9,kg/TJ,6.734899079999999,Gas Oil combustion consumption by freight transport,AR-L,SESCO,annual,kg,d95af07b-ed62-35c1-b9d3-e7e7189552fe +2012,La Pampa,II.1.1,1.7268971999999998,TJ,N2O,3.9,kg/TJ,6.734899079999999,Gas Oil combustion consumption by freight transport,AR-L,SESCO,annual,kg,d95af07b-ed62-35c1-b9d3-e7e7189552fe +2012,La Rioja,II.1.1,97.6460856,TJ,CO2,74100.0,kg/TJ,7235574.942960001,Gas Oil combustion consumption by freight transport,AR-F,SESCO,annual,kg,3b4d3bf0-74c5-37c9-aa0b-5f0eefca8610 +2012,La Rioja,II.1.1,97.6460856,TJ,CH4,3.9,kg/TJ,380.81973384,Gas Oil combustion consumption by freight transport,AR-F,SESCO,annual,kg,dd92f719-814f-3727-971a-6486d9135bf6 +2012,La Rioja,II.1.1,97.6460856,TJ,N2O,3.9,kg/TJ,380.81973384,Gas Oil combustion consumption by freight transport,AR-F,SESCO,annual,kg,dd92f719-814f-3727-971a-6486d9135bf6 +2012,Mendoza,II.1.1,37.4011764,TJ,CO2,74100.0,kg/TJ,2771427.1712399996,Gas Oil combustion consumption by freight transport,AR-M,SESCO,annual,kg,c2fdd2e5-71a7-3dc7-9064-560461931782 +2012,Mendoza,II.1.1,37.4011764,TJ,CH4,3.9,kg/TJ,145.86458796,Gas Oil combustion consumption by freight transport,AR-M,SESCO,annual,kg,f25ec3ac-8608-3cda-9231-d7b121a3cf8b +2012,Mendoza,II.1.1,37.4011764,TJ,N2O,3.9,kg/TJ,145.86458796,Gas Oil combustion consumption by freight transport,AR-M,SESCO,annual,kg,f25ec3ac-8608-3cda-9231-d7b121a3cf8b +2012,Misiones,II.1.1,103.3801356,TJ,CO2,74100.0,kg/TJ,7660468.04796,Gas Oil combustion consumption by freight transport,AR-N,SESCO,annual,kg,cfa962c6-20af-3681-8c61-e0ad32cee75c +2012,Misiones,II.1.1,103.3801356,TJ,CH4,3.9,kg/TJ,403.18252884,Gas Oil combustion consumption by freight transport,AR-N,SESCO,annual,kg,826b0677-876c-3596-a1d6-149cf734b0c6 +2012,Misiones,II.1.1,103.3801356,TJ,N2O,3.9,kg/TJ,403.18252884,Gas Oil combustion consumption by freight transport,AR-N,SESCO,annual,kg,826b0677-876c-3596-a1d6-149cf734b0c6 +2012,Rio Negro,II.1.1,0.7563528,TJ,CO2,74100.0,kg/TJ,56045.74248,Gas Oil combustion consumption by freight transport,AR-R,SESCO,annual,kg,adf6fa5a-3a21-3f6d-bfb5-73ccf537a175 +2012,Rio Negro,II.1.1,0.7563528,TJ,CH4,3.9,kg/TJ,2.94977592,Gas Oil combustion consumption by freight transport,AR-R,SESCO,annual,kg,71272d9b-106d-3cae-8f80-9af9b7483042 +2012,Rio Negro,II.1.1,0.7563528,TJ,N2O,3.9,kg/TJ,2.94977592,Gas Oil combustion consumption by freight transport,AR-R,SESCO,annual,kg,71272d9b-106d-3cae-8f80-9af9b7483042 +2012,Salta,II.1.1,825.3625558919999,TJ,CO2,74100.0,kg/TJ,61159365.3915972,Gas Oil combustion consumption by freight transport,AR-A,SESCO,annual,kg,610fb37a-9e42-3d2a-81be-df01e3a7a36f +2012,Salta,II.1.1,825.3625558919999,TJ,CH4,3.9,kg/TJ,3218.9139679787995,Gas Oil combustion consumption by freight transport,AR-A,SESCO,annual,kg,90a51d57-85b9-36e4-8a56-ad3df538dcfd +2012,Salta,II.1.1,825.3625558919999,TJ,N2O,3.9,kg/TJ,3218.9139679787995,Gas Oil combustion consumption by freight transport,AR-A,SESCO,annual,kg,90a51d57-85b9-36e4-8a56-ad3df538dcfd +2012,San Juan,II.1.1,2.3651376,TJ,CO2,74100.0,kg/TJ,175256.69616000002,Gas Oil combustion consumption by freight transport,AR-J,SESCO,annual,kg,f8bda04c-7f1a-314f-a834-aa28dc6eeca8 +2012,San Juan,II.1.1,2.3651376,TJ,CH4,3.9,kg/TJ,9.224036640000001,Gas Oil combustion consumption by freight transport,AR-J,SESCO,annual,kg,bde7705c-ec40-385d-a24f-51379483d975 +2012,San Juan,II.1.1,2.3651376,TJ,N2O,3.9,kg/TJ,9.224036640000001,Gas Oil combustion consumption by freight transport,AR-J,SESCO,annual,kg,bde7705c-ec40-385d-a24f-51379483d975 +2012,San Luis,II.1.1,111.594629076,TJ,CO2,74100.0,kg/TJ,8269162.0145316,Gas Oil combustion consumption by freight transport,AR-D,SESCO,annual,kg,b9236c3b-40c1-3a80-983f-540cedc9855a +2012,San Luis,II.1.1,111.594629076,TJ,CH4,3.9,kg/TJ,435.2190533964,Gas Oil combustion consumption by freight transport,AR-D,SESCO,annual,kg,d8b09969-55cf-3d33-b2be-425f2399a37b +2012,San Luis,II.1.1,111.594629076,TJ,N2O,3.9,kg/TJ,435.2190533964,Gas Oil combustion consumption by freight transport,AR-D,SESCO,annual,kg,d8b09969-55cf-3d33-b2be-425f2399a37b +2012,Santa Cruz,II.1.1,54.522778800000005,TJ,CO2,74100.0,kg/TJ,4040137.90908,Gas Oil combustion consumption by freight transport,AR-Z,SESCO,annual,kg,11b8d853-6a22-37bc-ab7e-5d8b26b1d891 +2012,Santa Cruz,II.1.1,54.522778800000005,TJ,CH4,3.9,kg/TJ,212.63883732000002,Gas Oil combustion consumption by freight transport,AR-Z,SESCO,annual,kg,9aa58213-b4ce-361a-b200-7edfe8948333 +2012,Santa Cruz,II.1.1,54.522778800000005,TJ,N2O,3.9,kg/TJ,212.63883732000002,Gas Oil combustion consumption by freight transport,AR-Z,SESCO,annual,kg,9aa58213-b4ce-361a-b200-7edfe8948333 +2012,Santa Fe,II.1.1,152.5394556,TJ,CO2,74100.0,kg/TJ,11303173.65996,Gas Oil combustion consumption by freight transport,AR-S,SESCO,annual,kg,8fceff44-b6a9-3137-991f-6f334a028255 +2012,Santa Fe,II.1.1,152.5394556,TJ,CH4,3.9,kg/TJ,594.90387684,Gas Oil combustion consumption by freight transport,AR-S,SESCO,annual,kg,a77e0b8e-2745-3598-bc48-cd88db36d61e +2012,Santa Fe,II.1.1,152.5394556,TJ,N2O,3.9,kg/TJ,594.90387684,Gas Oil combustion consumption by freight transport,AR-S,SESCO,annual,kg,a77e0b8e-2745-3598-bc48-cd88db36d61e +2012,Santiago del Estero,II.1.1,39.8201328,TJ,CO2,74100.0,kg/TJ,2950671.8404800002,Gas Oil combustion consumption by freight transport,AR-G,SESCO,annual,kg,c515bf20-92c6-347e-b2d3-6de7a3f409b9 +2012,Santiago del Estero,II.1.1,39.8201328,TJ,CH4,3.9,kg/TJ,155.29851792000002,Gas Oil combustion consumption by freight transport,AR-G,SESCO,annual,kg,fd40a7fb-68e6-3c13-9bac-e92030d5097a +2012,Santiago del Estero,II.1.1,39.8201328,TJ,N2O,3.9,kg/TJ,155.29851792000002,Gas Oil combustion consumption by freight transport,AR-G,SESCO,annual,kg,fd40a7fb-68e6-3c13-9bac-e92030d5097a +2012,Tierra del Fuego,II.1.1,10.964226,TJ,CO2,74100.0,kg/TJ,812449.1466,Gas Oil combustion consumption by freight transport,AR-V,SESCO,annual,kg,0b57e888-60cf-3de7-a5d8-2f1c3226cf90 +2012,Tierra del Fuego,II.1.1,10.964226,TJ,CH4,3.9,kg/TJ,42.760481399999996,Gas Oil combustion consumption by freight transport,AR-V,SESCO,annual,kg,62013b30-c45e-364e-8679-c0e1de99bc5c +2012,Tierra del Fuego,II.1.1,10.964226,TJ,N2O,3.9,kg/TJ,42.760481399999996,Gas Oil combustion consumption by freight transport,AR-V,SESCO,annual,kg,62013b30-c45e-364e-8679-c0e1de99bc5c +2012,Tucuman,II.1.1,42.97051919999999,TJ,CO2,74100.0,kg/TJ,3184115.4727199995,Gas Oil combustion consumption by freight transport,AR-T,SESCO,annual,kg,7e06f190-9bfb-30f2-bcfc-5385b3e90c39 +2012,Tucuman,II.1.1,42.97051919999999,TJ,CH4,3.9,kg/TJ,167.58502487999996,Gas Oil combustion consumption by freight transport,AR-T,SESCO,annual,kg,a06b669a-15be-302f-a3a3-370070ca0698 +2012,Tucuman,II.1.1,42.97051919999999,TJ,N2O,3.9,kg/TJ,167.58502487999996,Gas Oil combustion consumption by freight transport,AR-T,SESCO,annual,kg,a06b669a-15be-302f-a3a3-370070ca0698 +2012,Buenos Aires,II.1.1,57.635600399999994,TJ,CO2,74100.0,kg/TJ,4270797.989639999,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,963af583-4fd9-31be-84bc-050f07d3a016 +2012,Buenos Aires,II.1.1,57.635600399999994,TJ,CH4,3.9,kg/TJ,224.77884155999996,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,1c6a76be-dd86-3dc6-96ce-af1c29b4a0fa +2012,Buenos Aires,II.1.1,57.635600399999994,TJ,N2O,3.9,kg/TJ,224.77884155999996,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,1c6a76be-dd86-3dc6-96ce-af1c29b4a0fa +2012,Capital Federal,II.1.1,44.42290439999999,TJ,CO2,74100.0,kg/TJ,3291737.2160399994,Gas Oil combustion consumption by freight transport,AR-C,SESCO,annual,kg,0e6f5670-1667-386e-8370-4f3c9a8e4ae4 +2012,Capital Federal,II.1.1,44.42290439999999,TJ,CH4,3.9,kg/TJ,173.24932715999998,Gas Oil combustion consumption by freight transport,AR-C,SESCO,annual,kg,96838a48-d385-3f89-b81c-aaf3c56bf3e4 +2012,Capital Federal,II.1.1,44.42290439999999,TJ,N2O,3.9,kg/TJ,173.24932715999998,Gas Oil combustion consumption by freight transport,AR-C,SESCO,annual,kg,96838a48-d385-3f89-b81c-aaf3c56bf3e4 +2012,Chaco,II.1.1,0.1509816,TJ,CO2,74100.0,kg/TJ,11187.73656,Gas Oil combustion consumption by freight transport,AR-H,SESCO,annual,kg,adf1c7bb-620b-31d5-8353-2eabf419c7b0 +2012,Chaco,II.1.1,0.1509816,TJ,CH4,3.9,kg/TJ,0.58882824,Gas Oil combustion consumption by freight transport,AR-H,SESCO,annual,kg,331db740-2b0a-3ca0-b935-674e3a9b5932 +2012,Chaco,II.1.1,0.1509816,TJ,N2O,3.9,kg/TJ,0.58882824,Gas Oil combustion consumption by freight transport,AR-H,SESCO,annual,kg,331db740-2b0a-3ca0-b935-674e3a9b5932 +2012,Chubut,II.1.1,0.7227612,TJ,CO2,74100.0,kg/TJ,53556.60492,Gas Oil combustion consumption by freight transport,AR-U,SESCO,annual,kg,f875ea55-3d83-30a2-a9a2-54783074d2fe +2012,Chubut,II.1.1,0.7227612,TJ,CH4,3.9,kg/TJ,2.81876868,Gas Oil combustion consumption by freight transport,AR-U,SESCO,annual,kg,7afc484e-2e2e-313e-b5f8-56c6bc58f90b +2012,Chubut,II.1.1,0.7227612,TJ,N2O,3.9,kg/TJ,2.81876868,Gas Oil combustion consumption by freight transport,AR-U,SESCO,annual,kg,7afc484e-2e2e-313e-b5f8-56c6bc58f90b +2012,Corrientes,II.1.1,3.0322739999999997,TJ,CO2,74100.0,kg/TJ,224691.5034,Gas Oil combustion consumption by freight transport,AR-W,SESCO,annual,kg,0163d742-ca0a-321e-925b-5352991c38e7 +2012,Corrientes,II.1.1,3.0322739999999997,TJ,CH4,3.9,kg/TJ,11.825868599999998,Gas Oil combustion consumption by freight transport,AR-W,SESCO,annual,kg,63e3f741-5683-3034-9825-f993f12a54b1 +2012,Corrientes,II.1.1,3.0322739999999997,TJ,N2O,3.9,kg/TJ,11.825868599999998,Gas Oil combustion consumption by freight transport,AR-W,SESCO,annual,kg,63e3f741-5683-3034-9825-f993f12a54b1 +2012,Córdoba,II.1.1,1.5390731999999998,TJ,CO2,74100.0,kg/TJ,114045.32411999999,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,667d5924-acda-379c-affe-eb2e970b216b +2012,Córdoba,II.1.1,1.5390731999999998,TJ,CH4,3.9,kg/TJ,6.002385479999999,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,b392a983-6130-3bec-a206-9aa14415cb6f +2012,Córdoba,II.1.1,1.5390731999999998,TJ,N2O,3.9,kg/TJ,6.002385479999999,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,b392a983-6130-3bec-a206-9aa14415cb6f +2012,Entre Rios,II.1.1,0.8751876,TJ,CO2,74100.0,kg/TJ,64851.401159999994,Gas Oil combustion consumption by freight transport,AR-E,SESCO,annual,kg,260c0dbe-4d42-3e3a-b7a9-4abbbc8c4aec +2012,Entre Rios,II.1.1,0.8751876,TJ,CH4,3.9,kg/TJ,3.41323164,Gas Oil combustion consumption by freight transport,AR-E,SESCO,annual,kg,ae0d9355-df41-3d33-b174-36230e81ac30 +2012,Entre Rios,II.1.1,0.8751876,TJ,N2O,3.9,kg/TJ,3.41323164,Gas Oil combustion consumption by freight transport,AR-E,SESCO,annual,kg,ae0d9355-df41-3d33-b174-36230e81ac30 +2012,Mendoza,II.1.1,0.19251959999999999,TJ,CO2,74100.0,kg/TJ,14265.70236,Gas Oil combustion consumption by freight transport,AR-M,SESCO,annual,kg,8925bf43-0ddc-38dc-8338-671875e0441e +2012,Mendoza,II.1.1,0.19251959999999999,TJ,CH4,3.9,kg/TJ,0.7508264399999999,Gas Oil combustion consumption by freight transport,AR-M,SESCO,annual,kg,e1c145b4-b4be-3be9-b71a-8b8577d22761 +2012,Mendoza,II.1.1,0.19251959999999999,TJ,N2O,3.9,kg/TJ,0.7508264399999999,Gas Oil combustion consumption by freight transport,AR-M,SESCO,annual,kg,e1c145b4-b4be-3be9-b71a-8b8577d22761 +2012,Misiones,II.1.1,0.1834896,TJ,CO2,74100.0,kg/TJ,13596.57936,Gas Oil combustion consumption by freight transport,AR-N,SESCO,annual,kg,a429f988-2d0f-3a02-a0b2-f87364d15912 +2012,Misiones,II.1.1,0.1834896,TJ,CH4,3.9,kg/TJ,0.71560944,Gas Oil combustion consumption by freight transport,AR-N,SESCO,annual,kg,d44ed1cc-64e5-3e38-b831-8c09b84924a0 +2012,Misiones,II.1.1,0.1834896,TJ,N2O,3.9,kg/TJ,0.71560944,Gas Oil combustion consumption by freight transport,AR-N,SESCO,annual,kg,d44ed1cc-64e5-3e38-b831-8c09b84924a0 +2012,Rio Negro,II.1.1,0.0036119999999999998,TJ,CO2,74100.0,kg/TJ,267.6492,Gas Oil combustion consumption by freight transport,AR-R,SESCO,annual,kg,340c9985-46a6-3074-8d59-1dd96e82e2c5 +2012,Rio Negro,II.1.1,0.0036119999999999998,TJ,CH4,3.9,kg/TJ,0.014086799999999998,Gas Oil combustion consumption by freight transport,AR-R,SESCO,annual,kg,251a5283-ef78-354b-b75c-06f37738e824 +2012,Rio Negro,II.1.1,0.0036119999999999998,TJ,N2O,3.9,kg/TJ,0.014086799999999998,Gas Oil combustion consumption by freight transport,AR-R,SESCO,annual,kg,251a5283-ef78-354b-b75c-06f37738e824 +2012,San Juan,II.1.1,0.034675199999999996,TJ,CO2,74100.0,kg/TJ,2569.43232,Gas Oil combustion consumption by freight transport,AR-J,SESCO,annual,kg,eca3b929-7eb2-3d24-a488-32b93c79b9ad +2012,San Juan,II.1.1,0.034675199999999996,TJ,CH4,3.9,kg/TJ,0.13523327999999998,Gas Oil combustion consumption by freight transport,AR-J,SESCO,annual,kg,c146a4e7-5676-391a-9b47-b31e38cf7358 +2012,San Juan,II.1.1,0.034675199999999996,TJ,N2O,3.9,kg/TJ,0.13523327999999998,Gas Oil combustion consumption by freight transport,AR-J,SESCO,annual,kg,c146a4e7-5676-391a-9b47-b31e38cf7358 +2012,San Luis,II.1.1,0.18926880000000001,TJ,CO2,74100.0,kg/TJ,14024.818080000001,Gas Oil combustion consumption by freight transport,AR-D,SESCO,annual,kg,ce689071-5cb6-3fd6-a2c1-a2b802443388 +2012,San Luis,II.1.1,0.18926880000000001,TJ,CH4,3.9,kg/TJ,0.7381483200000001,Gas Oil combustion consumption by freight transport,AR-D,SESCO,annual,kg,b2ede6a9-735f-3d32-b315-ee790406d29b +2012,San Luis,II.1.1,0.18926880000000001,TJ,N2O,3.9,kg/TJ,0.7381483200000001,Gas Oil combustion consumption by freight transport,AR-D,SESCO,annual,kg,b2ede6a9-735f-3d32-b315-ee790406d29b +2012,Santa Fe,II.1.1,1.8630695999999998,TJ,CO2,74100.0,kg/TJ,138053.45735999997,Gas Oil combustion consumption by freight transport,AR-S,SESCO,annual,kg,03e4a329-7b75-3208-8cba-451598544f6b +2012,Santa Fe,II.1.1,1.8630695999999998,TJ,CH4,3.9,kg/TJ,7.265971439999999,Gas Oil combustion consumption by freight transport,AR-S,SESCO,annual,kg,8f8ff21b-4ccf-3f19-8094-0a1a260fe556 +2012,Santa Fe,II.1.1,1.8630695999999998,TJ,N2O,3.9,kg/TJ,7.265971439999999,Gas Oil combustion consumption by freight transport,AR-S,SESCO,annual,kg,8f8ff21b-4ccf-3f19-8094-0a1a260fe556 +2012,Tierra del Fuego,II.1.1,0.9217824,TJ,CO2,74100.0,kg/TJ,68304.07584,Gas Oil combustion consumption by freight transport,AR-V,SESCO,annual,kg,8cb3b9f1-af6f-37fe-8b7c-0a9125b08ea2 +2012,Tierra del Fuego,II.1.1,0.9217824,TJ,CH4,3.9,kg/TJ,3.59495136,Gas Oil combustion consumption by freight transport,AR-V,SESCO,annual,kg,54b939f5-3c33-3334-b6be-470292c55135 +2012,Tierra del Fuego,II.1.1,0.9217824,TJ,N2O,3.9,kg/TJ,3.59495136,Gas Oil combustion consumption by freight transport,AR-V,SESCO,annual,kg,54b939f5-3c33-3334-b6be-470292c55135 +2012,Tucuman,II.1.1,0.2481444,TJ,CO2,74100.0,kg/TJ,18387.50004,Gas Oil combustion consumption by freight transport,AR-T,SESCO,annual,kg,42b8bc28-2157-3ddd-89ca-049f8c3b966e +2012,Tucuman,II.1.1,0.2481444,TJ,CH4,3.9,kg/TJ,0.96776316,Gas Oil combustion consumption by freight transport,AR-T,SESCO,annual,kg,5c715d4b-953a-36c2-aa65-8bb1b7b47c67 +2012,Tucuman,II.1.1,0.2481444,TJ,N2O,3.9,kg/TJ,0.96776316,Gas Oil combustion consumption by freight transport,AR-T,SESCO,annual,kg,5c715d4b-953a-36c2-aa65-8bb1b7b47c67 +2012,Buenos Aires,II.1.1,0.37211789999999995,TJ,CO2,73300.0,kg/TJ,27276.242069999997,Naphtha combustion consumption by freight transport,AR-B,SESCO,annual,kg,fabbbaa9-e32f-399a-ac9a-f16baa4510de +2012,Buenos Aires,II.1.1,0.37211789999999995,TJ,CH4,0.5,kg/TJ,0.18605894999999997,Naphtha combustion consumption by freight transport,AR-B,SESCO,annual,kg,0d6a896b-19fe-34a3-892d-ce6e18663586 +2012,Buenos Aires,II.1.1,0.37211789999999995,TJ,N2O,2.0,kg/TJ,0.7442357999999999,Naphtha combustion consumption by freight transport,AR-B,SESCO,annual,kg,7c88f9e2-aba1-37b0-aecb-105edb323d83 +2012,Capital Federal,II.1.1,13.60354765,TJ,CO2,73300.0,kg/TJ,997140.042745,Naphtha combustion consumption by freight transport,AR-C,SESCO,annual,kg,82aa5a38-e8ba-32e0-b350-afb62c9785c5 +2012,Capital Federal,II.1.1,13.60354765,TJ,CH4,0.5,kg/TJ,6.801773825,Naphtha combustion consumption by freight transport,AR-C,SESCO,annual,kg,261fed11-2624-3f84-aaeb-675740a9070e +2012,Capital Federal,II.1.1,13.60354765,TJ,N2O,2.0,kg/TJ,27.2070953,Naphtha combustion consumption by freight transport,AR-C,SESCO,annual,kg,a287174c-3550-399f-a2bc-4b6318c498c3 +2012,Misiones,II.1.1,2.4670799999999997,TJ,CO2,73300.0,kg/TJ,180836.96399999998,Naphtha combustion consumption by freight transport,AR-N,SESCO,annual,kg,ede7c382-af8f-34fb-a711-e151a7e0c7b6 +2012,Misiones,II.1.1,2.4670799999999997,TJ,CH4,0.5,kg/TJ,1.2335399999999999,Naphtha combustion consumption by freight transport,AR-N,SESCO,annual,kg,d730cbcd-3399-3af4-a287-18cd1c306cbf +2012,Misiones,II.1.1,2.4670799999999997,TJ,N2O,2.0,kg/TJ,4.934159999999999,Naphtha combustion consumption by freight transport,AR-N,SESCO,annual,kg,91d27b30-3a23-3642-8508-70bca5e7b0e3 +2012,Santa Fe,II.1.1,0.034265,TJ,CO2,73300.0,kg/TJ,2511.6245,Naphtha combustion consumption by freight transport,AR-S,SESCO,annual,kg,783929bf-faf4-3bbc-b659-85fa24ee96cd +2012,Santa Fe,II.1.1,0.034265,TJ,CH4,0.5,kg/TJ,0.0171325,Naphtha combustion consumption by freight transport,AR-S,SESCO,annual,kg,d9a6fed4-2963-3987-ab93-abb7b97f1e0e +2012,Santa Fe,II.1.1,0.034265,TJ,N2O,2.0,kg/TJ,0.06853,Naphtha combustion consumption by freight transport,AR-S,SESCO,annual,kg,898ad23a-e19d-3bab-9f81-ca9e842a7aff +2012,Buenos Aires,II.1.1,4.70081535,TJ,CO2,73300.0,kg/TJ,344569.76515500003,Naphtha combustion consumption by freight transport,AR-B,SESCO,annual,kg,64006f91-bce4-3131-a80d-a7271340e52c +2012,Buenos Aires,II.1.1,4.70081535,TJ,CH4,0.5,kg/TJ,2.350407675,Naphtha combustion consumption by freight transport,AR-B,SESCO,annual,kg,ab8e1c3b-8d3d-3a8d-b253-e2d17119e38d +2012,Buenos Aires,II.1.1,4.70081535,TJ,N2O,2.0,kg/TJ,9.4016307,Naphtha combustion consumption by freight transport,AR-B,SESCO,annual,kg,3eae629b-df62-3954-ba45-6a2f9167ab55 +2012,Capital Federal,II.1.1,11.919080249999999,TJ,CO2,73300.0,kg/TJ,873668.5823249999,Naphtha combustion consumption by freight transport,AR-C,SESCO,annual,kg,6ca66724-70e2-3f45-8822-64b7cc8da89b +2012,Capital Federal,II.1.1,11.919080249999999,TJ,CH4,0.5,kg/TJ,5.959540124999999,Naphtha combustion consumption by freight transport,AR-C,SESCO,annual,kg,a7e57a48-9a51-386f-8704-fadc943e7a2d +2012,Capital Federal,II.1.1,11.919080249999999,TJ,N2O,2.0,kg/TJ,23.838160499999997,Naphtha combustion consumption by freight transport,AR-C,SESCO,annual,kg,218a02f3-ffa8-3840-8fae-f68724778c11 +2012,Chaco,II.1.1,0.043516549999999994,TJ,CO2,73300.0,kg/TJ,3189.7631149999997,Naphtha combustion consumption by freight transport,AR-H,SESCO,annual,kg,f52d3182-61e4-3d55-b0e1-46ae7db6f03d +2012,Chaco,II.1.1,0.043516549999999994,TJ,CH4,0.5,kg/TJ,0.021758274999999997,Naphtha combustion consumption by freight transport,AR-H,SESCO,annual,kg,499b3192-a53c-38e3-aece-c69a8f2a8619 +2012,Chaco,II.1.1,0.043516549999999994,TJ,N2O,2.0,kg/TJ,0.08703309999999999,Naphtha combustion consumption by freight transport,AR-H,SESCO,annual,kg,3efcdc9a-47ef-390e-bed2-c0f7a21577ee +2012,Corrientes,II.1.1,0.00239855,TJ,CO2,73300.0,kg/TJ,175.813715,Naphtha combustion consumption by freight transport,AR-W,SESCO,annual,kg,e31f77b2-91ce-3e78-92ab-ccf0355f23a0 +2012,Corrientes,II.1.1,0.00239855,TJ,CH4,0.5,kg/TJ,0.001199275,Naphtha combustion consumption by freight transport,AR-W,SESCO,annual,kg,91982dff-4b3d-3efb-85b7-423597aeaf10 +2012,Corrientes,II.1.1,0.00239855,TJ,N2O,2.0,kg/TJ,0.0047971,Naphtha combustion consumption by freight transport,AR-W,SESCO,annual,kg,6983602c-28f3-327d-a3c7-d7fc7e44591c +2012,Córdoba,II.1.1,0.4625775,TJ,CO2,73300.0,kg/TJ,33906.93075,Naphtha combustion consumption by freight transport,AR-X,SESCO,annual,kg,e379f5ba-c5f6-31cb-b703-c7dbef447cdd +2012,Córdoba,II.1.1,0.4625775,TJ,CH4,0.5,kg/TJ,0.23128875,Naphtha combustion consumption by freight transport,AR-X,SESCO,annual,kg,0c16e3fe-29bc-3c2c-b01d-418908af552f +2012,Córdoba,II.1.1,0.4625775,TJ,N2O,2.0,kg/TJ,0.925155,Naphtha combustion consumption by freight transport,AR-X,SESCO,annual,kg,1da36a55-8724-37e1-8ccb-03b94752cfee +2012,Entre Rios,II.1.1,0.00171325,TJ,CO2,73300.0,kg/TJ,125.58122499999999,Naphtha combustion consumption by freight transport,AR-E,SESCO,annual,kg,6cc1fe0a-e295-31a2-8ea0-d7195472fa06 +2012,Entre Rios,II.1.1,0.00171325,TJ,CH4,0.5,kg/TJ,0.000856625,Naphtha combustion consumption by freight transport,AR-E,SESCO,annual,kg,d2564eb1-7d14-30e7-bf2d-ee3ea3158410 +2012,Entre Rios,II.1.1,0.00171325,TJ,N2O,2.0,kg/TJ,0.0034265,Naphtha combustion consumption by freight transport,AR-E,SESCO,annual,kg,099820e1-9187-36ed-80af-8e6598cd3aca +2012,Misiones,II.1.1,0.0037691499999999998,TJ,CO2,73300.0,kg/TJ,276.27869499999997,Naphtha combustion consumption by freight transport,AR-N,SESCO,annual,kg,42162f2b-e747-3b26-8dd4-f2976b441cea +2012,Misiones,II.1.1,0.0037691499999999998,TJ,CH4,0.5,kg/TJ,0.0018845749999999999,Naphtha combustion consumption by freight transport,AR-N,SESCO,annual,kg,526ae60e-0f2f-30cf-81cb-f89a83d5efdf +2012,Misiones,II.1.1,0.0037691499999999998,TJ,N2O,2.0,kg/TJ,0.0075382999999999995,Naphtha combustion consumption by freight transport,AR-N,SESCO,annual,kg,7e0be719-40b0-3ba3-91d2-5b11b0572a3e +2012,San Luis,II.1.1,0.01610455,TJ,CO2,73300.0,kg/TJ,1180.463515,Naphtha combustion consumption by freight transport,AR-D,SESCO,annual,kg,a56c25d0-edc5-36a3-9695-7a67038f9d43 +2012,San Luis,II.1.1,0.01610455,TJ,CH4,0.5,kg/TJ,0.008052275,Naphtha combustion consumption by freight transport,AR-D,SESCO,annual,kg,16ed6476-9685-3ef9-9ba4-e84bd9dd1579 +2012,San Luis,II.1.1,0.01610455,TJ,N2O,2.0,kg/TJ,0.0322091,Naphtha combustion consumption by freight transport,AR-D,SESCO,annual,kg,f1a9bd2c-30e6-31e0-b64a-09d0686b1bc1 +2012,Santa Fe,II.1.1,0.6880411999999999,TJ,CO2,73300.0,kg/TJ,50433.41995999999,Naphtha combustion consumption by freight transport,AR-S,SESCO,annual,kg,95b27935-3e73-37a8-ab54-e38660133ed2 +2012,Santa Fe,II.1.1,0.6880411999999999,TJ,CH4,0.5,kg/TJ,0.34402059999999995,Naphtha combustion consumption by freight transport,AR-S,SESCO,annual,kg,1a9daa10-58d8-34cc-a648-ba4ca20b340d +2012,Santa Fe,II.1.1,0.6880411999999999,TJ,N2O,2.0,kg/TJ,1.3760823999999998,Naphtha combustion consumption by freight transport,AR-S,SESCO,annual,kg,31343fa8-071d-3baa-bc55-bf12faaf387b +2012,Tierra del Fuego,II.1.1,0.0071956500000000005,TJ,CO2,73300.0,kg/TJ,527.441145,Naphtha combustion consumption by freight transport,AR-V,SESCO,annual,kg,e6410cca-2bbc-3a22-8086-3806595feea7 +2012,Tierra del Fuego,II.1.1,0.0071956500000000005,TJ,CH4,0.5,kg/TJ,0.0035978250000000002,Naphtha combustion consumption by freight transport,AR-V,SESCO,annual,kg,b772ec73-dd05-3b8d-a1ce-aec5940557bb +2012,Tierra del Fuego,II.1.1,0.0071956500000000005,TJ,N2O,2.0,kg/TJ,0.014391300000000001,Naphtha combustion consumption by freight transport,AR-V,SESCO,annual,kg,56070dbe-d975-3de2-991a-6b15f5e5a6ef +2012,Tucuman,II.1.1,0.0390621,TJ,CO2,73300.0,kg/TJ,2863.2519300000004,Naphtha combustion consumption by freight transport,AR-T,SESCO,annual,kg,7a0a8033-a303-3f39-98dc-71ee03a0c043 +2012,Tucuman,II.1.1,0.0390621,TJ,CH4,0.5,kg/TJ,0.01953105,Naphtha combustion consumption by freight transport,AR-T,SESCO,annual,kg,d9634ab3-0e15-3093-9dc6-b3229c0ac91b +2012,Tucuman,II.1.1,0.0390621,TJ,N2O,2.0,kg/TJ,0.0781242,Naphtha combustion consumption by freight transport,AR-T,SESCO,annual,kg,f1e4fe53-6d4f-35a2-b62c-d34f5663af7a +2012,Buenos Aires,II.1.1,2.72235425,TJ,CO2,73300.0,kg/TJ,199548.566525,Naphtha combustion consumption by freight transport,AR-B,SESCO,annual,kg,633eabea-764e-3681-9b59-57b60831e4b1 +2012,Buenos Aires,II.1.1,2.72235425,TJ,CH4,0.5,kg/TJ,1.361177125,Naphtha combustion consumption by freight transport,AR-B,SESCO,annual,kg,ec68c373-a131-3713-a64e-242fa6dbed43 +2012,Buenos Aires,II.1.1,2.72235425,TJ,N2O,2.0,kg/TJ,5.4447085,Naphtha combustion consumption by freight transport,AR-B,SESCO,annual,kg,1d28b310-2e89-3872-80ee-99f0f1af8f49 +2012,Capital Federal,II.1.1,11.043609499999999,TJ,CO2,73300.0,kg/TJ,809496.5763499999,Naphtha combustion consumption by freight transport,AR-C,SESCO,annual,kg,68fff1ac-15d5-3093-840c-c8d6a788c048 +2012,Capital Federal,II.1.1,11.043609499999999,TJ,CH4,0.5,kg/TJ,5.521804749999999,Naphtha combustion consumption by freight transport,AR-C,SESCO,annual,kg,4b8f8443-8174-3b42-8f15-74c7e502e075 +2012,Capital Federal,II.1.1,11.043609499999999,TJ,N2O,2.0,kg/TJ,22.087218999999997,Naphtha combustion consumption by freight transport,AR-C,SESCO,annual,kg,cb4d8edd-1851-35bf-b4b6-087acbc57be7 +2012,Chaco,II.1.1,0.0219296,TJ,CO2,73300.0,kg/TJ,1607.43968,Naphtha combustion consumption by freight transport,AR-H,SESCO,annual,kg,38cf6421-1400-323b-bcc8-5ce473f1bfa2 +2012,Chaco,II.1.1,0.0219296,TJ,CH4,0.5,kg/TJ,0.0109648,Naphtha combustion consumption by freight transport,AR-H,SESCO,annual,kg,8c4f7ee3-928c-35dc-a957-6ef0bfbfb376 +2012,Chaco,II.1.1,0.0219296,TJ,N2O,2.0,kg/TJ,0.0438592,Naphtha combustion consumption by freight transport,AR-H,SESCO,annual,kg,eb09ac45-4db5-38fe-9a60-ac8407d5c846 +2012,Córdoba,II.1.1,0.39713134999999994,TJ,CO2,73300.0,kg/TJ,29109.727954999995,Naphtha combustion consumption by freight transport,AR-X,SESCO,annual,kg,fb7d2250-e6ce-3349-89e4-935907ffde0e +2012,Córdoba,II.1.1,0.39713134999999994,TJ,CH4,0.5,kg/TJ,0.19856567499999997,Naphtha combustion consumption by freight transport,AR-X,SESCO,annual,kg,198e90d9-f34a-32ea-908e-3515d61e7964 +2012,Córdoba,II.1.1,0.39713134999999994,TJ,N2O,2.0,kg/TJ,0.7942626999999999,Naphtha combustion consumption by freight transport,AR-X,SESCO,annual,kg,d7e883f5-183b-397c-9108-f0a32c155e72 +2012,Entre Rios,II.1.1,0.09902585,TJ,CO2,73300.0,kg/TJ,7258.594805,Naphtha combustion consumption by freight transport,AR-E,SESCO,annual,kg,b54c2c8b-7bba-3045-bf7c-366566bbdf43 +2012,Entre Rios,II.1.1,0.09902585,TJ,CH4,0.5,kg/TJ,0.049512925,Naphtha combustion consumption by freight transport,AR-E,SESCO,annual,kg,9fc0f38f-eb29-343c-9d55-dc908219ef0e +2012,Entre Rios,II.1.1,0.09902585,TJ,N2O,2.0,kg/TJ,0.1980517,Naphtha combustion consumption by freight transport,AR-E,SESCO,annual,kg,7df2cbe8-6dfb-39fd-9e71-0df123dc594a +2012,Misiones,II.1.1,0.010279499999999999,TJ,CO2,73300.0,kg/TJ,753.4873499999999,Naphtha combustion consumption by freight transport,AR-N,SESCO,annual,kg,649c32e5-924c-3085-9424-8a6b98ef4f8b +2012,Misiones,II.1.1,0.010279499999999999,TJ,CH4,0.5,kg/TJ,0.005139749999999999,Naphtha combustion consumption by freight transport,AR-N,SESCO,annual,kg,1fe127a3-f82c-35d7-8a98-c05986c57596 +2012,Misiones,II.1.1,0.010279499999999999,TJ,N2O,2.0,kg/TJ,0.020558999999999997,Naphtha combustion consumption by freight transport,AR-N,SESCO,annual,kg,eb8f001e-b926-3269-8efc-29bd09274f41 +2012,San Luis,II.1.1,0.0013706,TJ,CO2,73300.0,kg/TJ,100.46498,Naphtha combustion consumption by freight transport,AR-D,SESCO,annual,kg,417343e6-1836-3cc8-90ef-e44ee64ba202 +2012,San Luis,II.1.1,0.0013706,TJ,CH4,0.5,kg/TJ,0.0006853,Naphtha combustion consumption by freight transport,AR-D,SESCO,annual,kg,4c8e5ac2-a7da-3d5c-b00d-6b784d2f6eb9 +2012,San Luis,II.1.1,0.0013706,TJ,N2O,2.0,kg/TJ,0.0027412,Naphtha combustion consumption by freight transport,AR-D,SESCO,annual,kg,11b5de09-adf0-39c8-917d-7a77667b7cb2 +2012,Santa Fe,II.1.1,0.46360545,TJ,CO2,73300.0,kg/TJ,33982.279485,Naphtha combustion consumption by freight transport,AR-S,SESCO,annual,kg,a805a380-fc99-3c7b-8d24-6703f52e818e +2012,Santa Fe,II.1.1,0.46360545,TJ,CH4,0.5,kg/TJ,0.231802725,Naphtha combustion consumption by freight transport,AR-S,SESCO,annual,kg,6a1b8daf-1a17-3722-93fe-0b133c00506d +2012,Santa Fe,II.1.1,0.46360545,TJ,N2O,2.0,kg/TJ,0.9272109,Naphtha combustion consumption by freight transport,AR-S,SESCO,annual,kg,4a6425ca-af70-3b90-bbde-8b068f87308c +2012,Tierra del Fuego,II.1.1,0.2295755,TJ,CO2,73300.0,kg/TJ,16827.884149999998,Naphtha combustion consumption by freight transport,AR-V,SESCO,annual,kg,639ef2b1-cfe2-3ce8-a699-5c1cb5517cc0 +2012,Tierra del Fuego,II.1.1,0.2295755,TJ,CH4,0.5,kg/TJ,0.11478775,Naphtha combustion consumption by freight transport,AR-V,SESCO,annual,kg,f40fc47d-053b-3096-a6d3-f85e9927537c +2012,Tierra del Fuego,II.1.1,0.2295755,TJ,N2O,2.0,kg/TJ,0.459151,Naphtha combustion consumption by freight transport,AR-V,SESCO,annual,kg,e7b85158-a88f-323d-b800-4a5bb92aebd2 +2012,Tucuman,II.1.1,0.029810549999999998,TJ,CO2,73300.0,kg/TJ,2185.113315,Naphtha combustion consumption by freight transport,AR-T,SESCO,annual,kg,0e064270-34cf-3f0b-b3a7-e4eaf4613d5c +2012,Tucuman,II.1.1,0.029810549999999998,TJ,CH4,0.5,kg/TJ,0.014905274999999999,Naphtha combustion consumption by freight transport,AR-T,SESCO,annual,kg,ca680e10-865f-3556-9e3d-1b328f57d5b5 +2012,Tucuman,II.1.1,0.029810549999999998,TJ,N2O,2.0,kg/TJ,0.059621099999999996,Naphtha combustion consumption by freight transport,AR-T,SESCO,annual,kg,2ee0d138-2d96-398a-a499-a04342072eba +2012,Buenos Aires,II.1.1,972.6371927999999,TJ,CO2,74100.0,kg/TJ,72072415.98647998,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,20672faa-edca-30e6-9925-78b54a539a18 +2012,Buenos Aires,II.1.1,972.6371927999999,TJ,CH4,3.9,kg/TJ,3793.285051919999,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,a16c0a51-37df-388e-b040-e203b2783a8f +2012,Buenos Aires,II.1.1,972.6371927999999,TJ,N2O,3.9,kg/TJ,3793.285051919999,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,a16c0a51-37df-388e-b040-e203b2783a8f +2012,Capital Federal,II.1.1,604.11841392,TJ,CO2,74100.0,kg/TJ,44765174.471471995,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,5bbf975e-cbc3-38d9-b013-ca5a6ce793d9 +2012,Capital Federal,II.1.1,604.11841392,TJ,CH4,3.9,kg/TJ,2356.061814288,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,29c75748-5599-39d3-b2dd-fa8eb79692af +2012,Capital Federal,II.1.1,604.11841392,TJ,N2O,3.9,kg/TJ,2356.061814288,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,29c75748-5599-39d3-b2dd-fa8eb79692af +2012,Chubut,II.1.1,119.85591239999998,TJ,CO2,74100.0,kg/TJ,8881323.108839998,Gas Oil combustion consumption by public passenger transport,AR-U,SESCO,annual,kg,85bb5d73-380e-3faf-b99c-ea912af9d948 +2012,Chubut,II.1.1,119.85591239999998,TJ,CH4,3.9,kg/TJ,467.4380583599999,Gas Oil combustion consumption by public passenger transport,AR-U,SESCO,annual,kg,3f9f8d50-39a4-36ae-9151-b1a5004f82f5 +2012,Chubut,II.1.1,119.85591239999998,TJ,N2O,3.9,kg/TJ,467.4380583599999,Gas Oil combustion consumption by public passenger transport,AR-U,SESCO,annual,kg,3f9f8d50-39a4-36ae-9151-b1a5004f82f5 +2012,Corrientes,II.1.1,1.15584,TJ,CO2,74100.0,kg/TJ,85647.74399999999,Gas Oil combustion consumption by public passenger transport,AR-W,SESCO,annual,kg,fc626a22-7e3e-3b45-b9e7-e23085f1e28b +2012,Corrientes,II.1.1,1.15584,TJ,CH4,3.9,kg/TJ,4.507776,Gas Oil combustion consumption by public passenger transport,AR-W,SESCO,annual,kg,855f7de2-c9ce-3cea-aa4f-097805014b06 +2012,Corrientes,II.1.1,1.15584,TJ,N2O,3.9,kg/TJ,4.507776,Gas Oil combustion consumption by public passenger transport,AR-W,SESCO,annual,kg,855f7de2-c9ce-3cea-aa4f-097805014b06 +2012,Córdoba,II.1.1,10.4274828,TJ,CO2,74100.0,kg/TJ,772676.47548,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,01e9ceef-3b73-32b8-a04a-5c5df04bc42f +2012,Córdoba,II.1.1,10.4274828,TJ,CH4,3.9,kg/TJ,40.66718292,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,0afafbbf-4cd6-3dca-8c2a-c87639b0a21c +2012,Córdoba,II.1.1,10.4274828,TJ,N2O,3.9,kg/TJ,40.66718292,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,0afafbbf-4cd6-3dca-8c2a-c87639b0a21c +2012,Entre Rios,II.1.1,105.6701436,TJ,CO2,74100.0,kg/TJ,7830157.64076,Gas Oil combustion consumption by public passenger transport,AR-E,SESCO,annual,kg,967d04d9-1eda-345f-9f31-0cbd7ca67578 +2012,Entre Rios,II.1.1,105.6701436,TJ,CH4,3.9,kg/TJ,412.11356004,Gas Oil combustion consumption by public passenger transport,AR-E,SESCO,annual,kg,5a806990-d35a-33eb-a7f5-02895c0a7e47 +2012,Entre Rios,II.1.1,105.6701436,TJ,N2O,3.9,kg/TJ,412.11356004,Gas Oil combustion consumption by public passenger transport,AR-E,SESCO,annual,kg,5a806990-d35a-33eb-a7f5-02895c0a7e47 +2012,La Pampa,II.1.1,7.610484,TJ,CO2,74100.0,kg/TJ,563936.8644,Gas Oil combustion consumption by public passenger transport,AR-L,SESCO,annual,kg,bb884dae-c167-3518-91d9-7238f70cd5e8 +2012,La Pampa,II.1.1,7.610484,TJ,CH4,3.9,kg/TJ,29.6808876,Gas Oil combustion consumption by public passenger transport,AR-L,SESCO,annual,kg,b2ca7884-0a30-36bd-80af-da6d57896eb0 +2012,La Pampa,II.1.1,7.610484,TJ,N2O,3.9,kg/TJ,29.6808876,Gas Oil combustion consumption by public passenger transport,AR-L,SESCO,annual,kg,b2ca7884-0a30-36bd-80af-da6d57896eb0 +2012,Mendoza,II.1.1,25.542619199999997,TJ,CO2,74100.0,kg/TJ,1892708.0827199998,Gas Oil combustion consumption by public passenger transport,AR-M,SESCO,annual,kg,dfe18174-93ce-34a3-b71f-5b18c4df7417 +2012,Mendoza,II.1.1,25.542619199999997,TJ,CH4,3.9,kg/TJ,99.61621487999999,Gas Oil combustion consumption by public passenger transport,AR-M,SESCO,annual,kg,cffa942f-7664-31a8-a590-2040679c86d0 +2012,Mendoza,II.1.1,25.542619199999997,TJ,N2O,3.9,kg/TJ,99.61621487999999,Gas Oil combustion consumption by public passenger transport,AR-M,SESCO,annual,kg,cffa942f-7664-31a8-a590-2040679c86d0 +2012,Misiones,II.1.1,251.02204428,TJ,CO2,74100.0,kg/TJ,18600733.481148,Gas Oil combustion consumption by public passenger transport,AR-N,SESCO,annual,kg,c543cc91-4458-3f51-b9be-5b0ed6cc2655 +2012,Misiones,II.1.1,251.02204428,TJ,CH4,3.9,kg/TJ,978.9859726919999,Gas Oil combustion consumption by public passenger transport,AR-N,SESCO,annual,kg,777af6e0-015a-341d-ad95-0b055ac6df6e +2012,Misiones,II.1.1,251.02204428,TJ,N2O,3.9,kg/TJ,978.9859726919999,Gas Oil combustion consumption by public passenger transport,AR-N,SESCO,annual,kg,777af6e0-015a-341d-ad95-0b055ac6df6e +2012,Neuquén,II.1.1,8.4426888,TJ,CO2,74100.0,kg/TJ,625603.24008,Gas Oil combustion consumption by public passenger transport,AR-Q,SESCO,annual,kg,92be0c30-56ff-3407-884a-72878bf1c458 +2012,Neuquén,II.1.1,8.4426888,TJ,CH4,3.9,kg/TJ,32.92648632,Gas Oil combustion consumption by public passenger transport,AR-Q,SESCO,annual,kg,7a1f95d0-ae0d-3610-bee6-47697a544111 +2012,Neuquén,II.1.1,8.4426888,TJ,N2O,3.9,kg/TJ,32.92648632,Gas Oil combustion consumption by public passenger transport,AR-Q,SESCO,annual,kg,7a1f95d0-ae0d-3610-bee6-47697a544111 +2012,Rio Negro,II.1.1,28.49868,TJ,CO2,74100.0,kg/TJ,2111752.188,Gas Oil combustion consumption by public passenger transport,AR-R,SESCO,annual,kg,e58db8eb-f32b-344f-8ea0-141e5ddc2e90 +2012,Rio Negro,II.1.1,28.49868,TJ,CH4,3.9,kg/TJ,111.144852,Gas Oil combustion consumption by public passenger transport,AR-R,SESCO,annual,kg,3cf112cf-8b0a-396f-8068-d71aaf51fc2c +2012,Rio Negro,II.1.1,28.49868,TJ,N2O,3.9,kg/TJ,111.144852,Gas Oil combustion consumption by public passenger transport,AR-R,SESCO,annual,kg,3cf112cf-8b0a-396f-8068-d71aaf51fc2c +2012,Salta,II.1.1,4.815879600000001,TJ,CO2,74100.0,kg/TJ,356856.67836,Gas Oil combustion consumption by public passenger transport,AR-A,SESCO,annual,kg,56f64520-61f0-3759-9691-8a32b40e300b +2012,Salta,II.1.1,4.815879600000001,TJ,CH4,3.9,kg/TJ,18.781930440000004,Gas Oil combustion consumption by public passenger transport,AR-A,SESCO,annual,kg,6af7e95f-b462-3150-b3aa-176fb67c085d +2012,Salta,II.1.1,4.815879600000001,TJ,N2O,3.9,kg/TJ,18.781930440000004,Gas Oil combustion consumption by public passenger transport,AR-A,SESCO,annual,kg,6af7e95f-b462-3150-b3aa-176fb67c085d +2012,San Juan,II.1.1,2.74512,TJ,CO2,74100.0,kg/TJ,203413.392,Gas Oil combustion consumption by public passenger transport,AR-J,SESCO,annual,kg,fd2d2353-2ace-3c0c-9819-720d3b2c3097 +2012,San Juan,II.1.1,2.74512,TJ,CH4,3.9,kg/TJ,10.705968,Gas Oil combustion consumption by public passenger transport,AR-J,SESCO,annual,kg,bda9f380-90c6-3e58-bbe8-f714ebf55d2b +2012,San Juan,II.1.1,2.74512,TJ,N2O,3.9,kg/TJ,10.705968,Gas Oil combustion consumption by public passenger transport,AR-J,SESCO,annual,kg,bda9f380-90c6-3e58-bbe8-f714ebf55d2b +2012,San Luis,II.1.1,9.299094000000002,TJ,CO2,74100.0,kg/TJ,689062.8654000001,Gas Oil combustion consumption by public passenger transport,AR-D,SESCO,annual,kg,975b640a-a248-37f7-ba4c-3afa8368dffd +2012,San Luis,II.1.1,9.299094000000002,TJ,CH4,3.9,kg/TJ,36.26646660000001,Gas Oil combustion consumption by public passenger transport,AR-D,SESCO,annual,kg,39c8e01e-d5fc-3bc4-a724-267d615e92a1 +2012,San Luis,II.1.1,9.299094000000002,TJ,N2O,3.9,kg/TJ,36.26646660000001,Gas Oil combustion consumption by public passenger transport,AR-D,SESCO,annual,kg,39c8e01e-d5fc-3bc4-a724-267d615e92a1 +2012,Santa Fe,II.1.1,77.7306012,TJ,CO2,74100.0,kg/TJ,5759837.54892,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,aa183dae-96c3-3cd2-a01a-94b636527639 +2012,Santa Fe,II.1.1,77.7306012,TJ,CH4,3.9,kg/TJ,303.14934467999996,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,a08f5b85-66ce-3c39-b720-7addfafa9f75 +2012,Santa Fe,II.1.1,77.7306012,TJ,N2O,3.9,kg/TJ,303.14934467999996,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,a08f5b85-66ce-3c39-b720-7addfafa9f75 +2012,Buenos Aires,II.1.1,0.187824,TJ,CO2,74100.0,kg/TJ,13917.758399999999,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,209989f8-bf91-3796-8779-55419d3a8aea +2012,Buenos Aires,II.1.1,0.187824,TJ,CH4,3.9,kg/TJ,0.7325136,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,793ac937-1ea5-3078-aa7e-fbdf6d4ba891 +2012,Buenos Aires,II.1.1,0.187824,TJ,N2O,3.9,kg/TJ,0.7325136,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,793ac937-1ea5-3078-aa7e-fbdf6d4ba891 +2012,Capital Federal,II.1.1,14.971739999999999,TJ,CO2,74100.0,kg/TJ,1109405.934,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,d5203c57-54ff-332b-976b-f72d19fbcb50 +2012,Capital Federal,II.1.1,14.971739999999999,TJ,CH4,3.9,kg/TJ,58.389785999999994,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,d61819b2-e7cf-3573-a0ed-4b92ce62216b +2012,Capital Federal,II.1.1,14.971739999999999,TJ,N2O,3.9,kg/TJ,58.389785999999994,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,d61819b2-e7cf-3573-a0ed-4b92ce62216b +2012,Chubut,II.1.1,0.16615199999999997,TJ,CO2,74100.0,kg/TJ,12311.863199999998,Gas Oil combustion consumption by public passenger transport,AR-U,SESCO,annual,kg,561a2b31-18f2-37b1-beb1-1c71d4812074 +2012,Chubut,II.1.1,0.16615199999999997,TJ,CH4,3.9,kg/TJ,0.6479927999999998,Gas Oil combustion consumption by public passenger transport,AR-U,SESCO,annual,kg,c49a0302-1e7f-3ea1-a6de-0c68b0a85efb +2012,Chubut,II.1.1,0.16615199999999997,TJ,N2O,3.9,kg/TJ,0.6479927999999998,Gas Oil combustion consumption by public passenger transport,AR-U,SESCO,annual,kg,c49a0302-1e7f-3ea1-a6de-0c68b0a85efb +2012,Córdoba,II.1.1,0.1459248,TJ,CO2,74100.0,kg/TJ,10813.02768,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,d78b322d-6716-31db-ae69-12dbfb35ddd4 +2012,Córdoba,II.1.1,0.1459248,TJ,CH4,3.9,kg/TJ,0.56910672,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,8963ae0b-b78c-3c35-b0cd-e546e82ecef3 +2012,Córdoba,II.1.1,0.1459248,TJ,N2O,3.9,kg/TJ,0.56910672,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,8963ae0b-b78c-3c35-b0cd-e546e82ecef3 +2012,Entre Rios,II.1.1,13.590511199999998,TJ,CO2,74100.0,kg/TJ,1007056.8799199999,Gas Oil combustion consumption by public passenger transport,AR-E,SESCO,annual,kg,03024d77-3d21-373c-8ef7-ca4c2686c6f5 +2012,Entre Rios,II.1.1,13.590511199999998,TJ,CH4,3.9,kg/TJ,53.00299367999999,Gas Oil combustion consumption by public passenger transport,AR-E,SESCO,annual,kg,f155b1df-e8b3-3d42-a8e5-ae2d30296d00 +2012,Entre Rios,II.1.1,13.590511199999998,TJ,N2O,3.9,kg/TJ,53.00299367999999,Gas Oil combustion consumption by public passenger transport,AR-E,SESCO,annual,kg,f155b1df-e8b3-3d42-a8e5-ae2d30296d00 +2012,Mendoza,II.1.1,0.0093912,TJ,CO2,74100.0,kg/TJ,695.88792,Gas Oil combustion consumption by public passenger transport,AR-M,SESCO,annual,kg,655c40eb-ff36-36b4-b38c-4e6a3b286e66 +2012,Mendoza,II.1.1,0.0093912,TJ,CH4,3.9,kg/TJ,0.03662568,Gas Oil combustion consumption by public passenger transport,AR-M,SESCO,annual,kg,74f8838d-da0c-3cfd-9ee6-7ee750df7d6a +2012,Mendoza,II.1.1,0.0093912,TJ,N2O,3.9,kg/TJ,0.03662568,Gas Oil combustion consumption by public passenger transport,AR-M,SESCO,annual,kg,74f8838d-da0c-3cfd-9ee6-7ee750df7d6a +2012,Neuquén,II.1.1,0.0057792,TJ,CO2,74100.0,kg/TJ,428.23872,Gas Oil combustion consumption by public passenger transport,AR-Q,SESCO,annual,kg,b001bb9a-730b-36b2-baa6-d7aecaa242f1 +2012,Neuquén,II.1.1,0.0057792,TJ,CH4,3.9,kg/TJ,0.02253888,Gas Oil combustion consumption by public passenger transport,AR-Q,SESCO,annual,kg,9cb0e2d6-a6d7-3297-a04e-5cc1c73532b0 +2012,Neuquén,II.1.1,0.0057792,TJ,N2O,3.9,kg/TJ,0.02253888,Gas Oil combustion consumption by public passenger transport,AR-Q,SESCO,annual,kg,9cb0e2d6-a6d7-3297-a04e-5cc1c73532b0 +2012,Salta,II.1.1,0.03612,TJ,CO2,74100.0,kg/TJ,2676.4919999999997,Gas Oil combustion consumption by public passenger transport,AR-A,SESCO,annual,kg,53ee0eef-d411-34c8-b139-89b5187ff052 +2012,Salta,II.1.1,0.03612,TJ,CH4,3.9,kg/TJ,0.140868,Gas Oil combustion consumption by public passenger transport,AR-A,SESCO,annual,kg,79a9c050-79d6-37f1-9982-1fee1612bbcb +2012,Salta,II.1.1,0.03612,TJ,N2O,3.9,kg/TJ,0.140868,Gas Oil combustion consumption by public passenger transport,AR-A,SESCO,annual,kg,79a9c050-79d6-37f1-9982-1fee1612bbcb +2012,Santa Fe,II.1.1,0.2232216,TJ,CO2,74100.0,kg/TJ,16540.720559999998,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,fabe2e97-510d-3a64-b097-abffe74f3787 +2012,Santa Fe,II.1.1,0.2232216,TJ,CH4,3.9,kg/TJ,0.87056424,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,6aa71744-1247-3b34-8ddd-e088a9bfaa6a +2012,Santa Fe,II.1.1,0.2232216,TJ,N2O,3.9,kg/TJ,0.87056424,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,6aa71744-1247-3b34-8ddd-e088a9bfaa6a +2012,Capital Federal,II.1.1,20.12965955,TJ,CO2,73300.0,kg/TJ,1475504.045015,Naphtha combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,5a91e570-85a7-32e1-8405-014fef55ff47 +2012,Capital Federal,II.1.1,20.12965955,TJ,CH4,0.5,kg/TJ,10.064829775,Naphtha combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,186908d9-3b2f-3f2a-838b-14b7bbb9b55b +2012,Capital Federal,II.1.1,20.12965955,TJ,N2O,2.0,kg/TJ,40.2593191,Naphtha combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,6fce63c7-8dea-39c5-b0e6-ec3222ccd9f4 +2012,Córdoba,II.1.1,0.015419249999999997,TJ,CO2,73300.0,kg/TJ,1130.2310249999998,Naphtha combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,dcbf72d9-ddaa-391a-ab7f-434b0ce8526e +2012,Córdoba,II.1.1,0.015419249999999997,TJ,CH4,0.5,kg/TJ,0.007709624999999999,Naphtha combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,649aaccc-4896-3f06-8980-636e4fc2c028 +2012,Córdoba,II.1.1,0.015419249999999997,TJ,N2O,2.0,kg/TJ,0.030838499999999994,Naphtha combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,ba0c9683-dc17-3e2f-826d-93b0d05ade7f +2012,Misiones,II.1.1,20.42194,TJ,CO2,73300.0,kg/TJ,1496928.202,Naphtha combustion consumption by public passenger transport,AR-N,SESCO,annual,kg,e1101fbd-9f1e-3723-93b8-a9af667dd0f7 +2012,Misiones,II.1.1,20.42194,TJ,CH4,0.5,kg/TJ,10.21097,Naphtha combustion consumption by public passenger transport,AR-N,SESCO,annual,kg,338de100-1c89-3976-afd7-3a104c692353 +2012,Misiones,II.1.1,20.42194,TJ,N2O,2.0,kg/TJ,40.84388,Naphtha combustion consumption by public passenger transport,AR-N,SESCO,annual,kg,ba04e707-223f-3079-a608-16834b487d37 +2012,Santa Fe,II.1.1,0.10142439999999998,TJ,CO2,73300.0,kg/TJ,7434.408519999999,Naphtha combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,a98bfb43-273b-33f4-a012-22adfc405ef8 +2012,Santa Fe,II.1.1,0.10142439999999998,TJ,CH4,0.5,kg/TJ,0.05071219999999999,Naphtha combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,8d05fe51-d099-39c4-a463-ab706e1f6f81 +2012,Santa Fe,II.1.1,0.10142439999999998,TJ,N2O,2.0,kg/TJ,0.20284879999999997,Naphtha combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,13c382ac-bf71-3886-a206-e02cc89b3473 +2012,Buenos Aires,II.1.1,0.004111799999999999,TJ,CO2,73300.0,kg/TJ,301.3949399999999,Naphtha combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,55c19f00-77f6-3d98-8763-75941d8659f1 +2012,Buenos Aires,II.1.1,0.004111799999999999,TJ,CH4,0.5,kg/TJ,0.0020558999999999994,Naphtha combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,6cc348dc-11bc-3f2e-9315-74605f73bd2b +2012,Buenos Aires,II.1.1,0.004111799999999999,TJ,N2O,2.0,kg/TJ,0.008223599999999998,Naphtha combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,b1560bf2-6ec7-32f3-8a04-bafe378b8272 +2012,Capital Federal,II.1.1,0.23540055,TJ,CO2,73300.0,kg/TJ,17254.860314999998,Naphtha combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,7f534060-6882-3115-bdf5-bb78941f2aab +2012,Capital Federal,II.1.1,0.23540055,TJ,CH4,0.5,kg/TJ,0.117700275,Naphtha combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,b597626b-5cf8-3716-8ca2-95682e6765b0 +2012,Capital Federal,II.1.1,0.23540055,TJ,N2O,2.0,kg/TJ,0.4708011,Naphtha combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,548d9fd0-37c4-376f-b428-198faefc4d32 +2012,Córdoba,II.1.1,0.00788095,TJ,CO2,73300.0,kg/TJ,577.673635,Naphtha combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,0eb8830d-346a-347f-bed3-87e030868d55 +2012,Córdoba,II.1.1,0.00788095,TJ,CH4,0.5,kg/TJ,0.003940475,Naphtha combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,0fac1108-e71a-3a40-a46e-af900551b401 +2012,Córdoba,II.1.1,0.00788095,TJ,N2O,2.0,kg/TJ,0.0157619,Naphtha combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,a81e0bfb-5163-3fba-a876-65b69659ea12 +2012,Santa Fe,II.1.1,0.08703309999999999,TJ,CO2,73300.0,kg/TJ,6379.5262299999995,Naphtha combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,f0200f23-6ece-3d9e-8c54-f7dc493d7876 +2012,Santa Fe,II.1.1,0.08703309999999999,TJ,CH4,0.5,kg/TJ,0.043516549999999994,Naphtha combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,abbbf6cc-6f4b-333d-a9d7-5ac564c4e892 +2012,Santa Fe,II.1.1,0.08703309999999999,TJ,N2O,2.0,kg/TJ,0.17406619999999998,Naphtha combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,b6e56313-ff00-3f5b-a758-81d7d294af72 +2012,Buenos Aires,II.5.1,326.51660437199996,TJ,CO2,74100.0,kg/TJ,24194880.383965198,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,b30e320a-c63a-3bc9-9a65-f44234ed3994 +2012,Buenos Aires,II.5.1,326.51660437199996,TJ,CH4,3.9,kg/TJ,1273.4147570507998,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,f2ef7bae-08a9-3137-9ea2-9d5927eef0e8 +2012,Buenos Aires,II.5.1,326.51660437199996,TJ,N2O,3.9,kg/TJ,1273.4147570507998,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,f2ef7bae-08a9-3137-9ea2-9d5927eef0e8 +2012,Córdoba,II.5.1,581.1971531519999,TJ,CO2,74100.0,kg/TJ,43066709.0485632,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,73ec29c3-6ba5-3aa4-97c2-ef19b398bc9d +2012,Córdoba,II.5.1,581.1971531519999,TJ,CH4,3.9,kg/TJ,2266.6688972927996,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,8fe10a7f-2125-3793-9c3f-f581c39d0736 +2012,Córdoba,II.5.1,581.1971531519999,TJ,N2O,3.9,kg/TJ,2266.6688972927996,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,8fe10a7f-2125-3793-9c3f-f581c39d0736 +2012,Entre Rios,II.5.1,602.1314418840001,TJ,CO2,74100.0,kg/TJ,44617939.84360441,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,764e7e57-bd56-39b8-ab91-eb9a7852db26 +2012,Entre Rios,II.5.1,602.1314418840001,TJ,CH4,3.9,kg/TJ,2348.3126233476005,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,31583dac-bf1d-3b81-89c9-be64a8e8baf2 +2012,Entre Rios,II.5.1,602.1314418840001,TJ,N2O,3.9,kg/TJ,2348.3126233476005,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,31583dac-bf1d-3b81-89c9-be64a8e8baf2 +2012,La Pampa,II.5.1,18.098052420000002,TJ,CO2,74100.0,kg/TJ,1341065.6843220002,Gas Oil combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,557dc598-9c57-3743-a2b6-880a6ae9b38d +2012,La Pampa,II.5.1,18.098052420000002,TJ,CH4,3.9,kg/TJ,70.58240443800001,Gas Oil combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,21e81202-436b-3f6c-b9a5-8ff90c801a77 +2012,La Pampa,II.5.1,18.098052420000002,TJ,N2O,3.9,kg/TJ,70.58240443800001,Gas Oil combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,21e81202-436b-3f6c-b9a5-8ff90c801a77 +2012,Santa Fe,II.5.1,452.237108064,TJ,CO2,74100.0,kg/TJ,33510769.707542397,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,1544019a-dcaf-3373-bc03-d3785eafff89 +2012,Santa Fe,II.5.1,452.237108064,TJ,CH4,3.9,kg/TJ,1763.7247214495999,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,6eab9214-91d5-36db-88c6-276f0d0e2e31 +2012,Santa Fe,II.5.1,452.237108064,TJ,N2O,3.9,kg/TJ,1763.7247214495999,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,6eab9214-91d5-36db-88c6-276f0d0e2e31 +2012,Santiago del Estero,II.5.1,111.05105919600001,TJ,CO2,74100.0,kg/TJ,8228883.4864236,Gas Oil combustion consumption by agriculture machines,AR-G,SESCO,annual,kg,d78aef6d-c8da-3b4d-b473-e92383b1fccc +2012,Santiago del Estero,II.5.1,111.05105919600001,TJ,CH4,3.9,kg/TJ,433.0991308644,Gas Oil combustion consumption by agriculture machines,AR-G,SESCO,annual,kg,32243880-79d0-3b06-9d70-81fe7879b0b8 +2012,Santiago del Estero,II.5.1,111.05105919600001,TJ,N2O,3.9,kg/TJ,433.0991308644,Gas Oil combustion consumption by agriculture machines,AR-G,SESCO,annual,kg,32243880-79d0-3b06-9d70-81fe7879b0b8 +2012,Córdoba,II.5.1,0.8797778605000001,TJ,CO2,73300.0,kg/TJ,64487.71717465,Naphtha combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,7a8e38e9-d56f-3923-939f-4dbe88207b4a +2012,Córdoba,II.5.1,0.8797778605000001,TJ,CH4,0.5,kg/TJ,0.43988893025000003,Naphtha combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,43664d36-4c88-38c2-9958-57c8b1edf321 +2012,Córdoba,II.5.1,0.8797778605000001,TJ,N2O,2.0,kg/TJ,1.7595557210000001,Naphtha combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,ceb4b527-cb1c-35ab-9e6b-b8dc72717d2f +2012,Santa Fe,II.5.1,1.8306898610000002,TJ,CO2,73300.0,kg/TJ,134189.56681130003,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,192dd6a0-1d34-3f45-af51-2e7bf37e76f8 +2012,Santa Fe,II.5.1,1.8306898610000002,TJ,CH4,0.5,kg/TJ,0.9153449305000001,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,2d00a8ac-682e-3de6-a8eb-71ad918c157f +2012,Santa Fe,II.5.1,1.8306898610000002,TJ,N2O,2.0,kg/TJ,3.6613797220000004,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,dce2786f-5a98-3d7c-aad7-8da32e3178ee +2012,Buenos Aires,II.1.1,183.97929328799998,TJ,CO2,74100.0,kg/TJ,13632865.632640798,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,0d197305-e262-3a89-9fe9-14448aada770 +2012,Buenos Aires,II.1.1,183.97929328799998,TJ,CH4,3.9,kg/TJ,717.5192438231999,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,fef6a88d-fd90-3062-9291-6d0ce2129e68 +2012,Buenos Aires,II.1.1,183.97929328799998,TJ,N2O,3.9,kg/TJ,717.5192438231999,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,fef6a88d-fd90-3062-9291-6d0ce2129e68 +2012,Capital Federal,II.1.1,2.5117847999999996,TJ,CO2,74100.0,kg/TJ,186123.25367999997,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,201e0e45-73e4-31fd-9157-cf787f1d4be6 +2012,Capital Federal,II.1.1,2.5117847999999996,TJ,CH4,3.9,kg/TJ,9.795960719999998,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,a4627bdd-b6b3-3568-a6eb-6f0c071ecab8 +2012,Capital Federal,II.1.1,2.5117847999999996,TJ,N2O,3.9,kg/TJ,9.795960719999998,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,a4627bdd-b6b3-3568-a6eb-6f0c071ecab8 +2012,Corrientes,II.1.1,6.182021076,TJ,CO2,74100.0,kg/TJ,458087.7617316,Gas Oil combustion consumption by public passenger transport,AR-W,SESCO,annual,kg,d01bb936-5142-34d9-abab-59513d6f9cdd +2012,Corrientes,II.1.1,6.182021076,TJ,CH4,3.9,kg/TJ,24.109882196399997,Gas Oil combustion consumption by public passenger transport,AR-W,SESCO,annual,kg,cb642e42-b11b-3585-a8f3-ffac54380f7b +2012,Corrientes,II.1.1,6.182021076,TJ,N2O,3.9,kg/TJ,24.109882196399997,Gas Oil combustion consumption by public passenger transport,AR-W,SESCO,annual,kg,cb642e42-b11b-3585-a8f3-ffac54380f7b +2012,Córdoba,II.1.1,79.173457944,TJ,CO2,74100.0,kg/TJ,5866753.2336504,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,5c16b767-ba74-3a2f-9d3c-f96c22527b41 +2012,Córdoba,II.1.1,79.173457944,TJ,CH4,3.9,kg/TJ,308.7764859816,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,aacb3ba9-d7cb-3a2d-be1c-7a7eda20ec36 +2012,Córdoba,II.1.1,79.173457944,TJ,N2O,3.9,kg/TJ,308.7764859816,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,aacb3ba9-d7cb-3a2d-be1c-7a7eda20ec36 +2012,Entre Rios,II.1.1,48.41835070799999,TJ,CO2,74100.0,kg/TJ,3587799.7874627993,Gas Oil combustion consumption by public passenger transport,AR-E,SESCO,annual,kg,a98e5a1c-d71f-324e-a8f0-e8424fb54f69 +2012,Entre Rios,II.1.1,48.41835070799999,TJ,CH4,3.9,kg/TJ,188.83156776119995,Gas Oil combustion consumption by public passenger transport,AR-E,SESCO,annual,kg,1e99d374-add0-3575-8b05-143fbe155b75 +2012,Entre Rios,II.1.1,48.41835070799999,TJ,N2O,3.9,kg/TJ,188.83156776119995,Gas Oil combustion consumption by public passenger transport,AR-E,SESCO,annual,kg,1e99d374-add0-3575-8b05-143fbe155b75 +2012,Jujuy,II.1.1,34.054799268000004,TJ,CO2,74100.0,kg/TJ,2523460.6257588,Gas Oil combustion consumption by public passenger transport,AR-Y,SESCO,annual,kg,99e6b816-f6e4-3120-90a2-a3fb5329a523 +2012,Jujuy,II.1.1,34.054799268000004,TJ,CH4,3.9,kg/TJ,132.8137171452,Gas Oil combustion consumption by public passenger transport,AR-Y,SESCO,annual,kg,1223d03f-9131-3887-8b6e-1ff7dad69aa9 +2012,Jujuy,II.1.1,34.054799268000004,TJ,N2O,3.9,kg/TJ,132.8137171452,Gas Oil combustion consumption by public passenger transport,AR-Y,SESCO,annual,kg,1223d03f-9131-3887-8b6e-1ff7dad69aa9 +2012,Misiones,II.1.1,23.190517307999993,TJ,CO2,74100.0,kg/TJ,1718417.3325227995,Gas Oil combustion consumption by public passenger transport,AR-N,SESCO,annual,kg,492a12dd-0548-3a24-9d01-4ff0e189773a +2012,Misiones,II.1.1,23.190517307999993,TJ,CH4,3.9,kg/TJ,90.44301750119998,Gas Oil combustion consumption by public passenger transport,AR-N,SESCO,annual,kg,b5a64b4a-f871-304c-ae42-cecd7f36fe9f +2012,Misiones,II.1.1,23.190517307999993,TJ,N2O,3.9,kg/TJ,90.44301750119998,Gas Oil combustion consumption by public passenger transport,AR-N,SESCO,annual,kg,b5a64b4a-f871-304c-ae42-cecd7f36fe9f +2012,Salta,II.1.1,13.618551155999999,TJ,CO2,74100.0,kg/TJ,1009134.6406595999,Gas Oil combustion consumption by public passenger transport,AR-A,SESCO,annual,kg,ca935c8d-0760-351a-a384-061f034a4d9c +2012,Salta,II.1.1,13.618551155999999,TJ,CH4,3.9,kg/TJ,53.112349508399994,Gas Oil combustion consumption by public passenger transport,AR-A,SESCO,annual,kg,8d367e2d-549e-3a28-9f66-05cd3e6a8459 +2012,Salta,II.1.1,13.618551155999999,TJ,N2O,3.9,kg/TJ,53.112349508399994,Gas Oil combustion consumption by public passenger transport,AR-A,SESCO,annual,kg,8d367e2d-549e-3a28-9f66-05cd3e6a8459 +2012,San Juan,II.1.1,6.250609344,TJ,CO2,74100.0,kg/TJ,463170.1523904,Gas Oil combustion consumption by public passenger transport,AR-J,SESCO,annual,kg,3e023cab-7119-3ce9-bf72-02076853a251 +2012,San Juan,II.1.1,6.250609344,TJ,CH4,3.9,kg/TJ,24.3773764416,Gas Oil combustion consumption by public passenger transport,AR-J,SESCO,annual,kg,a6cc0616-e7ae-345b-ad0a-6fb0ac6d9e78 +2012,San Juan,II.1.1,6.250609344,TJ,N2O,3.9,kg/TJ,24.3773764416,Gas Oil combustion consumption by public passenger transport,AR-J,SESCO,annual,kg,a6cc0616-e7ae-345b-ad0a-6fb0ac6d9e78 +2012,Santa Fe,II.1.1,424.18383100799997,TJ,CO2,74100.0,kg/TJ,31432021.877692796,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,7fed313a-2945-3289-8af1-cf9a288ecf6f +2012,Santa Fe,II.1.1,424.18383100799997,TJ,CH4,3.9,kg/TJ,1654.3169409312,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,b6d1a393-e6ba-34d7-a9be-ff486ce1b0e7 +2012,Santa Fe,II.1.1,424.18383100799997,TJ,N2O,3.9,kg/TJ,1654.3169409312,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,b6d1a393-e6ba-34d7-a9be-ff486ce1b0e7 +2012,Santiago del Estero,II.1.1,13.973628816000002,TJ,CO2,74100.0,kg/TJ,1035445.8952656001,Gas Oil combustion consumption by public passenger transport,AR-G,SESCO,annual,kg,52266b67-412f-379b-a64a-1c272fa5666d +2012,Santiago del Estero,II.1.1,13.973628816000002,TJ,CH4,3.9,kg/TJ,54.4971523824,Gas Oil combustion consumption by public passenger transport,AR-G,SESCO,annual,kg,1aed4590-1762-30f7-8bd9-58104e4adf16 +2012,Santiago del Estero,II.1.1,13.973628816000002,TJ,N2O,3.9,kg/TJ,54.4971523824,Gas Oil combustion consumption by public passenger transport,AR-G,SESCO,annual,kg,1aed4590-1762-30f7-8bd9-58104e4adf16 +2012,Tucuman,II.1.1,5.578683432,TJ,CO2,74100.0,kg/TJ,413380.4423112,Gas Oil combustion consumption by public passenger transport,AR-T,SESCO,annual,kg,4d93be0d-8349-37b7-9b3d-30b294597723 +2012,Tucuman,II.1.1,5.578683432,TJ,CH4,3.9,kg/TJ,21.7568653848,Gas Oil combustion consumption by public passenger transport,AR-T,SESCO,annual,kg,9a551afc-27e9-3393-8598-50d03b7f0924 +2012,Tucuman,II.1.1,5.578683432,TJ,N2O,3.9,kg/TJ,21.7568653848,Gas Oil combustion consumption by public passenger transport,AR-T,SESCO,annual,kg,9a551afc-27e9-3393-8598-50d03b7f0924 +2012,Buenos Aires,II.5.1,668.0527644,TJ,CO2,74100.0,kg/TJ,49502709.84204,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,c027cfa2-f042-360c-a102-5a3460112d2e +2012,Buenos Aires,II.5.1,668.0527644,TJ,CH4,3.9,kg/TJ,2605.40578116,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,5c886852-3f5d-3c2d-b3ae-18495609e99b +2012,Buenos Aires,II.5.1,668.0527644,TJ,N2O,3.9,kg/TJ,2605.40578116,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,5c886852-3f5d-3c2d-b3ae-18495609e99b +2012,Córdoba,II.5.1,47.80305012,TJ,CO2,74100.0,kg/TJ,3542206.013892,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,8ad7faa8-a679-39f6-93ca-e528b11f75d9 +2012,Córdoba,II.5.1,47.80305012,TJ,CH4,3.9,kg/TJ,186.431895468,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,63c4a254-1196-3b0d-b3bc-c9a525cc8abd +2012,Córdoba,II.5.1,47.80305012,TJ,N2O,3.9,kg/TJ,186.431895468,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,63c4a254-1196-3b0d-b3bc-c9a525cc8abd +2012,Neuquén,II.5.1,14.72764104,TJ,CO2,74100.0,kg/TJ,1091318.201064,Gas Oil combustion consumption by agriculture machines,AR-Q,SESCO,annual,kg,4d65d824-c749-3fda-8033-a96fdc111bb6 +2012,Neuquén,II.5.1,14.72764104,TJ,CH4,3.9,kg/TJ,57.437800056,Gas Oil combustion consumption by agriculture machines,AR-Q,SESCO,annual,kg,5ce0d0d8-d2fc-3be2-a15e-40f54f0296dc +2012,Neuquén,II.5.1,14.72764104,TJ,N2O,3.9,kg/TJ,57.437800056,Gas Oil combustion consumption by agriculture machines,AR-Q,SESCO,annual,kg,5ce0d0d8-d2fc-3be2-a15e-40f54f0296dc +2012,Rio Negro,II.5.1,3.32531556,TJ,CO2,74100.0,kg/TJ,246405.882996,Gas Oil combustion consumption by agriculture machines,AR-R,SESCO,annual,kg,07783935-b39c-3669-950b-38029c6f0a1f +2012,Rio Negro,II.5.1,3.32531556,TJ,CH4,3.9,kg/TJ,12.968730683999999,Gas Oil combustion consumption by agriculture machines,AR-R,SESCO,annual,kg,c3c912ef-0bb9-3c13-a10d-8c1acf30f5e3 +2012,Rio Negro,II.5.1,3.32531556,TJ,N2O,3.9,kg/TJ,12.968730683999999,Gas Oil combustion consumption by agriculture machines,AR-R,SESCO,annual,kg,c3c912ef-0bb9-3c13-a10d-8c1acf30f5e3 +2012,Santa Cruz,II.5.1,6.126891119999998,TJ,CO2,74100.0,kg/TJ,454002.63199199986,Gas Oil combustion consumption by agriculture machines,AR-Z,SESCO,annual,kg,8bb61ee8-27a7-3141-8787-749aa5b3e456 +2012,Santa Cruz,II.5.1,6.126891119999998,TJ,CH4,3.9,kg/TJ,23.89487536799999,Gas Oil combustion consumption by agriculture machines,AR-Z,SESCO,annual,kg,01400d97-1dc9-3cac-a4e1-65b642eb78bb +2012,Santa Cruz,II.5.1,6.126891119999998,TJ,N2O,3.9,kg/TJ,23.89487536799999,Gas Oil combustion consumption by agriculture machines,AR-Z,SESCO,annual,kg,01400d97-1dc9-3cac-a4e1-65b642eb78bb +2012,Santa Fe,II.5.1,1.9079667599999999,TJ,CO2,74100.0,kg/TJ,141380.336916,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,e155433b-8eef-32cd-b372-d1de5db3e892 +2012,Santa Fe,II.5.1,1.9079667599999999,TJ,CH4,3.9,kg/TJ,7.441070364,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,42e29197-369a-3c7a-abe6-7ede4cbcb0a5 +2012,Santa Fe,II.5.1,1.9079667599999999,TJ,N2O,3.9,kg/TJ,7.441070364,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,42e29197-369a-3c7a-abe6-7ede4cbcb0a5 +2012,Buenos Aires,II.5.1,2.11243725,TJ,CO2,73300.0,kg/TJ,154841.650425,Naphtha combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,d119bb14-415e-385d-9ccb-f639664a2d51 +2012,Buenos Aires,II.5.1,2.11243725,TJ,CH4,0.5,kg/TJ,1.056218625,Naphtha combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,84493353-af3b-366c-9a6a-3b3aa0df11f3 +2012,Buenos Aires,II.5.1,2.11243725,TJ,N2O,2.0,kg/TJ,4.2248745,Naphtha combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,14245e7c-3958-34ef-8357-bf995ede1d21 +2012,Santa Cruz,II.5.1,2.3259767300000003,TJ,CO2,73300.0,kg/TJ,170494.094309,Naphtha combustion consumption by agriculture machines,AR-Z,SESCO,annual,kg,b17c1b15-2eae-36db-ae87-e309f0039354 +2012,Santa Cruz,II.5.1,2.3259767300000003,TJ,CH4,0.5,kg/TJ,1.1629883650000001,Naphtha combustion consumption by agriculture machines,AR-Z,SESCO,annual,kg,b335da12-c686-3d1b-a095-6f176878ad98 +2012,Santa Cruz,II.5.1,2.3259767300000003,TJ,N2O,2.0,kg/TJ,4.6519534600000005,Naphtha combustion consumption by agriculture machines,AR-Z,SESCO,annual,kg,39377718-fe4b-3dca-90cb-7ab81c35ce62 +2012,Buenos Aires,II.2.1,35.88345012,TJ,CO2,74100.0,kg/TJ,2658963.6538919997,Gas Oil combustion consumption by railway transport,AR-B,SESCO,annual,kg,bc7cbfa1-3e1d-37a0-a217-78c43b7dba0f +2012,Buenos Aires,II.2.1,35.88345012,TJ,CH4,3.9,kg/TJ,139.945455468,Gas Oil combustion consumption by railway transport,AR-B,SESCO,annual,kg,5ca43814-0b4f-3f64-8a9b-fa128670166b +2012,Buenos Aires,II.2.1,35.88345012,TJ,N2O,3.9,kg/TJ,139.945455468,Gas Oil combustion consumption by railway transport,AR-B,SESCO,annual,kg,5ca43814-0b4f-3f64-8a9b-fa128670166b +2012,La Pampa,II.2.1,8.746132919999999,TJ,CO2,74100.0,kg/TJ,648088.449372,Gas Oil combustion consumption by railway transport,AR-L,SESCO,annual,kg,d1fda863-5791-3d92-b91e-1cc39981f936 +2012,La Pampa,II.2.1,8.746132919999999,TJ,CH4,3.9,kg/TJ,34.109918388,Gas Oil combustion consumption by railway transport,AR-L,SESCO,annual,kg,9b534524-434b-3fec-b120-18ffdaefc075 +2012,La Pampa,II.2.1,8.746132919999999,TJ,N2O,3.9,kg/TJ,34.109918388,Gas Oil combustion consumption by railway transport,AR-L,SESCO,annual,kg,9b534524-434b-3fec-b120-18ffdaefc075 +2012,Rio Negro,II.2.1,5.8570386,TJ,CO2,74100.0,kg/TJ,434006.56026,Gas Oil combustion consumption by railway transport,AR-R,SESCO,annual,kg,9d030060-e9b9-39ea-8cd2-cb004fe45cae +2012,Rio Negro,II.2.1,5.8570386,TJ,CH4,3.9,kg/TJ,22.84245054,Gas Oil combustion consumption by railway transport,AR-R,SESCO,annual,kg,0d3a520b-e658-3021-aad9-b10d94ec672d +2012,Rio Negro,II.2.1,5.8570386,TJ,N2O,3.9,kg/TJ,22.84245054,Gas Oil combustion consumption by railway transport,AR-R,SESCO,annual,kg,0d3a520b-e658-3021-aad9-b10d94ec672d +2012,Buenos Aires,II.1.1,4.007377999999999,TJ,CO2,69300.0,kg/TJ,277711.29539999994,Motor Gasoline combustion consumption by freight transport,AR-B,SESCO,annual,kg,1efb3860-a95f-36cf-a7ae-5e95659efee0 +2012,Buenos Aires,II.1.1,4.007377999999999,TJ,CH4,33.0,kg/TJ,132.24347399999996,Motor Gasoline combustion consumption by freight transport,AR-B,SESCO,annual,kg,e747cd0f-047e-31b5-85de-8bdcad8446ea +2012,Buenos Aires,II.1.1,4.007377999999999,TJ,N2O,3.2,kg/TJ,12.823609599999997,Motor Gasoline combustion consumption by freight transport,AR-B,SESCO,annual,kg,d22de109-4f57-3434-813f-763ac7f633fc +2012,Buenos Aires,II.1.1,385.51616459999997,TJ,CO2,74100.0,kg/TJ,28566747.79686,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,64546453-79e2-3e53-80be-e8a407ef4602 +2012,Buenos Aires,II.1.1,385.51616459999997,TJ,CH4,3.9,kg/TJ,1503.5130419399998,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,80c851ff-91f1-3ff0-b54f-65507d86adcb +2012,Buenos Aires,II.1.1,385.51616459999997,TJ,N2O,3.9,kg/TJ,1503.5130419399998,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,80c851ff-91f1-3ff0-b54f-65507d86adcb +2012,Capital Federal,II.1.1,25.416271440000003,TJ,CO2,74100.0,kg/TJ,1883345.7137040002,Gas Oil combustion consumption by freight transport,AR-C,SESCO,annual,kg,e5dcaec6-917b-398b-8059-61965055bdad +2012,Capital Federal,II.1.1,25.416271440000003,TJ,CH4,3.9,kg/TJ,99.12345861600001,Gas Oil combustion consumption by freight transport,AR-C,SESCO,annual,kg,ef1aff0f-54f7-3a9f-8958-bdd28cb08bb1 +2012,Capital Federal,II.1.1,25.416271440000003,TJ,N2O,3.9,kg/TJ,99.12345861600001,Gas Oil combustion consumption by freight transport,AR-C,SESCO,annual,kg,ef1aff0f-54f7-3a9f-8958-bdd28cb08bb1 +2012,Chubut,II.1.1,11.179609559999998,TJ,CO2,74100.0,kg/TJ,828409.0683959998,Gas Oil combustion consumption by freight transport,AR-U,SESCO,annual,kg,8d582e6b-1c9e-3aae-a8d6-75df2421b790 +2012,Chubut,II.1.1,11.179609559999998,TJ,CH4,3.9,kg/TJ,43.60047728399999,Gas Oil combustion consumption by freight transport,AR-U,SESCO,annual,kg,381c5b07-b98f-3aea-ad96-60602ff6fc06 +2012,Chubut,II.1.1,11.179609559999998,TJ,N2O,3.9,kg/TJ,43.60047728399999,Gas Oil combustion consumption by freight transport,AR-U,SESCO,annual,kg,381c5b07-b98f-3aea-ad96-60602ff6fc06 +2012,Córdoba,II.1.1,16.05458148,TJ,CO2,74100.0,kg/TJ,1189644.487668,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,0b0aa758-c2ec-3601-846f-cf3639f6b227 +2012,Córdoba,II.1.1,16.05458148,TJ,CH4,3.9,kg/TJ,62.612867771999994,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,f14fe2db-7fcd-3209-9d45-6c833014f8d0 +2012,Córdoba,II.1.1,16.05458148,TJ,N2O,3.9,kg/TJ,62.612867771999994,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,f14fe2db-7fcd-3209-9d45-6c833014f8d0 +2012,San Luis,II.1.1,53.391428160000004,TJ,CO2,74100.0,kg/TJ,3956304.826656,Gas Oil combustion consumption by freight transport,AR-D,SESCO,annual,kg,e55d5a69-1fc1-383f-9eed-b07395839f23 +2012,San Luis,II.1.1,53.391428160000004,TJ,CH4,3.9,kg/TJ,208.22656982400002,Gas Oil combustion consumption by freight transport,AR-D,SESCO,annual,kg,5cc1ec3d-7ad1-3a4a-afbf-79675a370685 +2012,San Luis,II.1.1,53.391428160000004,TJ,N2O,3.9,kg/TJ,208.22656982400002,Gas Oil combustion consumption by freight transport,AR-D,SESCO,annual,kg,5cc1ec3d-7ad1-3a4a-afbf-79675a370685 +2012,Buenos Aires,II.1.1,140.88327876000002,TJ,CO2,74100.0,kg/TJ,10439450.956116002,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,8a7277cb-b4f2-3d86-9d06-9882a24f9244 +2012,Buenos Aires,II.1.1,140.88327876000002,TJ,CH4,3.9,kg/TJ,549.4447871640001,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,2c31da9e-17e5-31f0-9727-7bfa967bf88d +2012,Buenos Aires,II.1.1,140.88327876000002,TJ,N2O,3.9,kg/TJ,549.4447871640001,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,2c31da9e-17e5-31f0-9727-7bfa967bf88d +2012,Capital Federal,II.1.1,21.971073599999997,TJ,CO2,74100.0,kg/TJ,1628056.5537599998,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,cea9583e-ab70-3d79-bbe7-5f4ab8e965f0 +2012,Capital Federal,II.1.1,21.971073599999997,TJ,CH4,3.9,kg/TJ,85.68718703999998,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,f88e36c9-5809-3ee2-8cba-9f63169028bc +2012,Capital Federal,II.1.1,21.971073599999997,TJ,N2O,3.9,kg/TJ,85.68718703999998,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,f88e36c9-5809-3ee2-8cba-9f63169028bc +2012,Chubut,II.1.1,8.531832960000001,TJ,CO2,74100.0,kg/TJ,632208.822336,Gas Oil combustion consumption by public passenger transport,AR-U,SESCO,annual,kg,2954b5c7-e674-34aa-b66a-caac976bfc37 +2012,Chubut,II.1.1,8.531832960000001,TJ,CH4,3.9,kg/TJ,33.274148544000006,Gas Oil combustion consumption by public passenger transport,AR-U,SESCO,annual,kg,40796487-4105-35d5-8d97-d72328f3559b +2012,Chubut,II.1.1,8.531832960000001,TJ,N2O,3.9,kg/TJ,33.274148544000006,Gas Oil combustion consumption by public passenger transport,AR-U,SESCO,annual,kg,40796487-4105-35d5-8d97-d72328f3559b +2012,Córdoba,II.1.1,50.11754748,TJ,CO2,74100.0,kg/TJ,3713710.268268,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,a7236701-0da0-3405-a2a2-f789c0db5f70 +2012,Córdoba,II.1.1,50.11754748,TJ,CH4,3.9,kg/TJ,195.45843517199998,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,575d0a46-68b6-3d57-9f82-12ba8c850110 +2012,Córdoba,II.1.1,50.11754748,TJ,N2O,3.9,kg/TJ,195.45843517199998,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,575d0a46-68b6-3d57-9f82-12ba8c850110 +2012,Entre Rios,II.1.1,2.4380638799999996,TJ,CO2,74100.0,kg/TJ,180660.53350799996,Gas Oil combustion consumption by public passenger transport,AR-E,SESCO,annual,kg,4a9e06eb-4f4e-382f-8429-30a63284859b +2012,Entre Rios,II.1.1,2.4380638799999996,TJ,CH4,3.9,kg/TJ,9.508449131999999,Gas Oil combustion consumption by public passenger transport,AR-E,SESCO,annual,kg,1c5c5b67-cd49-3c20-8eed-96c235aff13f +2012,Entre Rios,II.1.1,2.4380638799999996,TJ,N2O,3.9,kg/TJ,9.508449131999999,Gas Oil combustion consumption by public passenger transport,AR-E,SESCO,annual,kg,1c5c5b67-cd49-3c20-8eed-96c235aff13f +2012,Formosa,II.1.1,18.35759268,TJ,CO2,74100.0,kg/TJ,1360297.617588,Gas Oil combustion consumption by public passenger transport,AR-P,SESCO,annual,kg,cf42cf27-1b41-3938-aa54-462f38e76cae +2012,Formosa,II.1.1,18.35759268,TJ,CH4,3.9,kg/TJ,71.594611452,Gas Oil combustion consumption by public passenger transport,AR-P,SESCO,annual,kg,02ecba40-059d-3cc3-8763-0cb8d02ebf92 +2012,Formosa,II.1.1,18.35759268,TJ,N2O,3.9,kg/TJ,71.594611452,Gas Oil combustion consumption by public passenger transport,AR-P,SESCO,annual,kg,02ecba40-059d-3cc3-8763-0cb8d02ebf92 +2012,Neuquén,II.1.1,6.791029559999999,TJ,CO2,74100.0,kg/TJ,503215.29039599997,Gas Oil combustion consumption by public passenger transport,AR-Q,SESCO,annual,kg,8ab91f94-3a48-32bb-a894-389096b8cdee +2012,Neuquén,II.1.1,6.791029559999999,TJ,CH4,3.9,kg/TJ,26.485015283999996,Gas Oil combustion consumption by public passenger transport,AR-Q,SESCO,annual,kg,3abbbd2a-6e5c-3c23-bcae-acd371a40347 +2012,Neuquén,II.1.1,6.791029559999999,TJ,N2O,3.9,kg/TJ,26.485015283999996,Gas Oil combustion consumption by public passenger transport,AR-Q,SESCO,annual,kg,3abbbd2a-6e5c-3c23-bcae-acd371a40347 +2012,Rio Negro,II.1.1,39.57917628,TJ,CO2,74100.0,kg/TJ,2932816.9623479997,Gas Oil combustion consumption by public passenger transport,AR-R,SESCO,annual,kg,8919e25a-b2dc-3b3d-a409-6a47bd66b980 +2012,Rio Negro,II.1.1,39.57917628,TJ,CH4,3.9,kg/TJ,154.358787492,Gas Oil combustion consumption by public passenger transport,AR-R,SESCO,annual,kg,a119bd97-4c39-3654-989b-83faf6f2bf65 +2012,Rio Negro,II.1.1,39.57917628,TJ,N2O,3.9,kg/TJ,154.358787492,Gas Oil combustion consumption by public passenger transport,AR-R,SESCO,annual,kg,a119bd97-4c39-3654-989b-83faf6f2bf65 +2012,San Luis,II.1.1,2.2616537999999995,TJ,CO2,74100.0,kg/TJ,167588.54657999997,Gas Oil combustion consumption by public passenger transport,AR-D,SESCO,annual,kg,2dc83844-ce10-35cd-90a4-46f76fd0889f +2012,San Luis,II.1.1,2.2616537999999995,TJ,CH4,3.9,kg/TJ,8.820449819999999,Gas Oil combustion consumption by public passenger transport,AR-D,SESCO,annual,kg,7fa27363-f132-3771-a31a-21fae6d387cd +2012,San Luis,II.1.1,2.2616537999999995,TJ,N2O,3.9,kg/TJ,8.820449819999999,Gas Oil combustion consumption by public passenger transport,AR-D,SESCO,annual,kg,7fa27363-f132-3771-a31a-21fae6d387cd +2012,Santa Cruz,II.1.1,5.30270496,TJ,CO2,74100.0,kg/TJ,392930.437536,Gas Oil combustion consumption by public passenger transport,AR-Z,SESCO,annual,kg,7efa8f38-9ca9-352b-be6c-fcec3fcfc0a6 +2012,Santa Cruz,II.1.1,5.30270496,TJ,CH4,3.9,kg/TJ,20.680549344,Gas Oil combustion consumption by public passenger transport,AR-Z,SESCO,annual,kg,48910dd7-c0f2-395e-a400-ff740d9a2ff5 +2012,Santa Cruz,II.1.1,5.30270496,TJ,N2O,3.9,kg/TJ,20.680549344,Gas Oil combustion consumption by public passenger transport,AR-Z,SESCO,annual,kg,48910dd7-c0f2-395e-a400-ff740d9a2ff5 +2012,Santa Fe,II.1.1,0.50112888,TJ,CO2,74100.0,kg/TJ,37133.650008,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,9c843ccd-b020-3f99-8181-2e81bae65ebc +2012,Santa Fe,II.1.1,0.50112888,TJ,CH4,3.9,kg/TJ,1.9544026319999999,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,85b684c9-3fac-3ccb-8ca6-06c6805d2d5a +2012,Santa Fe,II.1.1,0.50112888,TJ,N2O,3.9,kg/TJ,1.9544026319999999,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,85b684c9-3fac-3ccb-8ca6-06c6805d2d5a +2012,Buenos Aires,II.5.1,358.56324,TJ,CO2,74100.0,kg/TJ,26569536.084,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,91f5d102-5f40-3026-887f-646f99c67ab4 +2012,Buenos Aires,II.5.1,358.56324,TJ,CH4,3.9,kg/TJ,1398.396636,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,abe17d28-f34d-3340-bae3-074884dfbb7c +2012,Buenos Aires,II.5.1,358.56324,TJ,N2O,3.9,kg/TJ,1398.396636,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,abe17d28-f34d-3340-bae3-074884dfbb7c +2012,Capital Federal,II.5.1,101.3166,TJ,CO2,74100.0,kg/TJ,7507560.06,Gas Oil combustion consumption by agriculture machines,AR-C,SESCO,annual,kg,1e3ad353-4d05-375f-b3e2-7de6618502b6 +2012,Capital Federal,II.5.1,101.3166,TJ,CH4,3.9,kg/TJ,395.13473999999997,Gas Oil combustion consumption by agriculture machines,AR-C,SESCO,annual,kg,e9eca6bb-fc2c-3587-93a9-2243ec16aa09 +2012,Capital Federal,II.5.1,101.3166,TJ,N2O,3.9,kg/TJ,395.13473999999997,Gas Oil combustion consumption by agriculture machines,AR-C,SESCO,annual,kg,e9eca6bb-fc2c-3587-93a9-2243ec16aa09 +2012,Chubut,II.5.1,12.750359999999999,TJ,CO2,74100.0,kg/TJ,944801.6759999999,Gas Oil combustion consumption by agriculture machines,AR-U,SESCO,annual,kg,48fb23fd-d1d0-3f8f-9e76-89fcd3d53cc9 +2012,Chubut,II.5.1,12.750359999999999,TJ,CH4,3.9,kg/TJ,49.726403999999995,Gas Oil combustion consumption by agriculture machines,AR-U,SESCO,annual,kg,1b5ec700-da3d-315d-b0ff-74de81ddca8e +2012,Chubut,II.5.1,12.750359999999999,TJ,N2O,3.9,kg/TJ,49.726403999999995,Gas Oil combustion consumption by agriculture machines,AR-U,SESCO,annual,kg,1b5ec700-da3d-315d-b0ff-74de81ddca8e +2012,Córdoba,II.5.1,129.63468,TJ,CO2,74100.0,kg/TJ,9605929.788,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,3299d377-b13f-3cc3-afd7-8d7f2ea638b3 +2012,Córdoba,II.5.1,129.63468,TJ,CH4,3.9,kg/TJ,505.575252,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,6827cb5e-ba37-3d8a-9062-eccb49eeb8c0 +2012,Córdoba,II.5.1,129.63468,TJ,N2O,3.9,kg/TJ,505.575252,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,6827cb5e-ba37-3d8a-9062-eccb49eeb8c0 +2012,Santa Fe,II.5.1,413.21279999999996,TJ,CO2,74100.0,kg/TJ,30619068.479999997,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,a2cc2437-871c-3b01-9a2c-9919430fdfc0 +2012,Santa Fe,II.5.1,413.21279999999996,TJ,CH4,3.9,kg/TJ,1611.5299199999997,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,746c793b-1b85-34bc-b860-7615000bf796 +2012,Santa Fe,II.5.1,413.21279999999996,TJ,N2O,3.9,kg/TJ,1611.5299199999997,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,746c793b-1b85-34bc-b860-7615000bf796 +2012,Buenos Aires,II.5.1,5.74308,TJ,CO2,74100.0,kg/TJ,425562.228,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,53905f71-d54a-39df-bd3b-e05c2b70fe52 +2012,Buenos Aires,II.5.1,5.74308,TJ,CH4,3.9,kg/TJ,22.398011999999998,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,0039c135-62ce-3a95-bd77-11bb029b48c6 +2012,Buenos Aires,II.5.1,5.74308,TJ,N2O,3.9,kg/TJ,22.398011999999998,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,0039c135-62ce-3a95-bd77-11bb029b48c6 +2012,Santa Fe,II.5.1,0.36119999999999997,TJ,CO2,74100.0,kg/TJ,26764.92,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,3d22136b-cca5-3264-a6a1-9e0dda494b63 +2012,Santa Fe,II.5.1,0.36119999999999997,TJ,CH4,3.9,kg/TJ,1.40868,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,6c844705-4cb9-3299-8693-173047f30dfc +2012,Santa Fe,II.5.1,0.36119999999999997,TJ,N2O,3.9,kg/TJ,1.40868,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,6c844705-4cb9-3299-8693-173047f30dfc +2012,Capital Federal,II.5.1,0.41118,TJ,CO2,73300.0,kg/TJ,30139.494,Naphtha combustion consumption by agriculture machines,AR-C,SESCO,annual,kg,332cb377-846e-3a62-87f5-a159daaffc74 +2012,Capital Federal,II.5.1,0.41118,TJ,CH4,0.5,kg/TJ,0.20559,Naphtha combustion consumption by agriculture machines,AR-C,SESCO,annual,kg,d5eac6e2-f379-3189-90f7-afc08d64d8bb +2012,Capital Federal,II.5.1,0.41118,TJ,N2O,2.0,kg/TJ,0.82236,Naphtha combustion consumption by agriculture machines,AR-C,SESCO,annual,kg,7a45f00a-5677-3b50-bbbb-cce93bb13762 +2012,Santa Fe,II.5.1,4.694305,TJ,CO2,73300.0,kg/TJ,344092.5565,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,da54c4ba-aecd-3e1b-aac4-e6c693bcd9d0 +2012,Santa Fe,II.5.1,4.694305,TJ,CH4,0.5,kg/TJ,2.3471525,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,f10800d4-3218-3704-9cd8-c7da72073e90 +2012,Santa Fe,II.5.1,4.694305,TJ,N2O,2.0,kg/TJ,9.38861,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,1c181353-6215-3bb1-a37c-63b908a05f31 +2012,Buenos Aires,II.2.1,481.299,TJ,CO2,74100.0,kg/TJ,35664255.9,Gas Oil combustion consumption by railway transport,AR-B,SESCO,annual,kg,95db9de5-b044-3819-b2f7-9654a80c90b7 +2012,Buenos Aires,II.2.1,481.299,TJ,CH4,3.9,kg/TJ,1877.0660999999998,Gas Oil combustion consumption by railway transport,AR-B,SESCO,annual,kg,a394393e-c61d-3987-b8d8-689056668f5a +2012,Buenos Aires,II.2.1,481.299,TJ,N2O,3.9,kg/TJ,1877.0660999999998,Gas Oil combustion consumption by railway transport,AR-B,SESCO,annual,kg,a394393e-c61d-3987-b8d8-689056668f5a +2012,Capital Federal,II.2.1,2135.08932,TJ,CO2,74100.0,kg/TJ,158210118.612,Gas Oil combustion consumption by railway transport,AR-C,SESCO,annual,kg,0ecec63b-e3b2-3778-b9a1-51524846dfda +2012,Capital Federal,II.2.1,2135.08932,TJ,CH4,3.9,kg/TJ,8326.848348,Gas Oil combustion consumption by railway transport,AR-C,SESCO,annual,kg,3913a77d-d8a9-34be-96e5-965f89118e4a +2012,Capital Federal,II.2.1,2135.08932,TJ,N2O,3.9,kg/TJ,8326.848348,Gas Oil combustion consumption by railway transport,AR-C,SESCO,annual,kg,3913a77d-d8a9-34be-96e5-965f89118e4a +2012,Santa Fe,II.2.1,202.74156,TJ,CO2,74100.0,kg/TJ,15023149.595999999,Gas Oil combustion consumption by railway transport,AR-S,SESCO,annual,kg,37eee7fe-badc-37c6-911b-4b9383059554 +2012,Santa Fe,II.2.1,202.74156,TJ,CH4,3.9,kg/TJ,790.6920839999999,Gas Oil combustion consumption by railway transport,AR-S,SESCO,annual,kg,c4a9470f-88fa-3d44-ac4c-40b7412a4cad +2012,Santa Fe,II.2.1,202.74156,TJ,N2O,3.9,kg/TJ,790.6920839999999,Gas Oil combustion consumption by railway transport,AR-S,SESCO,annual,kg,c4a9470f-88fa-3d44-ac4c-40b7412a4cad +2012,Capital Federal,II.2.1,0.5418,TJ,CO2,74100.0,kg/TJ,40147.38,Gas Oil combustion consumption by railway transport,AR-C,SESCO,annual,kg,9d20fe4c-e425-3dbd-8077-7c29f00ce4c3 +2012,Capital Federal,II.2.1,0.5418,TJ,CH4,3.9,kg/TJ,2.1130199999999997,Gas Oil combustion consumption by railway transport,AR-C,SESCO,annual,kg,0458878e-61ca-3248-af7b-f874e8e1fe8a +2012,Capital Federal,II.2.1,0.5418,TJ,N2O,3.9,kg/TJ,2.1130199999999997,Gas Oil combustion consumption by railway transport,AR-C,SESCO,annual,kg,0458878e-61ca-3248-af7b-f874e8e1fe8a +2012,Buenos Aires,II.1.1,4.9616,TJ,CO2,69300.0,kg/TJ,343838.88,Motor Gasoline combustion consumption by freight transport,AR-B,SESCO,annual,kg,5a50e96b-f8d9-3f6c-b85d-d6eed52a828f +2012,Buenos Aires,II.1.1,4.9616,TJ,CH4,33.0,kg/TJ,163.7328,Motor Gasoline combustion consumption by freight transport,AR-B,SESCO,annual,kg,403609de-de83-355b-8ba0-0ed65c25acd7 +2012,Buenos Aires,II.1.1,4.9616,TJ,N2O,3.2,kg/TJ,15.87712,Motor Gasoline combustion consumption by freight transport,AR-B,SESCO,annual,kg,d6e8871a-30d5-36a8-b4b2-e34d56031486 +2012,Capital Federal,II.1.1,9.9232,TJ,CO2,69300.0,kg/TJ,687677.76,Motor Gasoline combustion consumption by freight transport,AR-C,SESCO,annual,kg,2b1bdaee-ecfa-3085-9018-b18a89e5146d +2012,Capital Federal,II.1.1,9.9232,TJ,CH4,33.0,kg/TJ,327.4656,Motor Gasoline combustion consumption by freight transport,AR-C,SESCO,annual,kg,17df7821-95bd-3750-9604-7721566d1094 +2012,Capital Federal,II.1.1,9.9232,TJ,N2O,3.2,kg/TJ,31.75424,Motor Gasoline combustion consumption by freight transport,AR-C,SESCO,annual,kg,16bd17f0-7f30-3e69-a61f-eb1fce5076bc +2012,Buenos Aires,II.1.1,813.1695599999999,TJ,CO2,74100.0,kg/TJ,60255864.396,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,7f400c36-2803-3a3e-9de3-cdc39c8c6076 +2012,Buenos Aires,II.1.1,813.1695599999999,TJ,CH4,3.9,kg/TJ,3171.3612839999996,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,10189ee2-b97b-3536-a7d7-6f99f9e36130 +2012,Buenos Aires,II.1.1,813.1695599999999,TJ,N2O,3.9,kg/TJ,3171.3612839999996,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,10189ee2-b97b-3536-a7d7-6f99f9e36130 +2012,Capital Federal,II.1.1,342.16476,TJ,CO2,74100.0,kg/TJ,25354408.716000002,Gas Oil combustion consumption by freight transport,AR-C,SESCO,annual,kg,110f1a4e-8ba4-3c92-9944-1bbdac2b6e71 +2012,Capital Federal,II.1.1,342.16476,TJ,CH4,3.9,kg/TJ,1334.442564,Gas Oil combustion consumption by freight transport,AR-C,SESCO,annual,kg,5f54abeb-614f-31c1-aaa6-d7211eade235 +2012,Capital Federal,II.1.1,342.16476,TJ,N2O,3.9,kg/TJ,1334.442564,Gas Oil combustion consumption by freight transport,AR-C,SESCO,annual,kg,5f54abeb-614f-31c1-aaa6-d7211eade235 +2012,Córdoba,II.1.1,203.06663999999998,TJ,CO2,74100.0,kg/TJ,15047238.023999998,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,19cf7c49-29a0-3751-9c1d-f4378a5ede35 +2012,Córdoba,II.1.1,203.06663999999998,TJ,CH4,3.9,kg/TJ,791.9598959999998,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,96ab20b4-4308-331d-9cdb-fed6a0f8ad35 +2012,Córdoba,II.1.1,203.06663999999998,TJ,N2O,3.9,kg/TJ,791.9598959999998,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,96ab20b4-4308-331d-9cdb-fed6a0f8ad35 +2012,Santiago del Estero,II.1.1,2.3478,TJ,CO2,74100.0,kg/TJ,173971.97999999998,Gas Oil combustion consumption by freight transport,AR-G,SESCO,annual,kg,a77b1388-9819-361e-a6ea-a4d3f8fbbfb1 +2012,Santiago del Estero,II.1.1,2.3478,TJ,CH4,3.9,kg/TJ,9.156419999999999,Gas Oil combustion consumption by freight transport,AR-G,SESCO,annual,kg,1d17f3e5-f8a7-373c-8ca4-a3b9b146039c +2012,Santiago del Estero,II.1.1,2.3478,TJ,N2O,3.9,kg/TJ,9.156419999999999,Gas Oil combustion consumption by freight transport,AR-G,SESCO,annual,kg,1d17f3e5-f8a7-373c-8ca4-a3b9b146039c +2012,Buenos Aires,II.1.1,4735.5126,TJ,CO2,74100.0,kg/TJ,350901483.66,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,123b50ce-2fc7-3d54-abcc-f0aca801d6c0 +2012,Buenos Aires,II.1.1,4735.5126,TJ,CH4,3.9,kg/TJ,18468.49914,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,26ed70b0-0e5a-35d9-84ac-5e1b1304ab48 +2012,Buenos Aires,II.1.1,4735.5126,TJ,N2O,3.9,kg/TJ,18468.49914,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,26ed70b0-0e5a-35d9-84ac-5e1b1304ab48 +2012,Capital Federal,II.1.1,661.899,TJ,CO2,74100.0,kg/TJ,49046715.9,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,2e822fc0-634f-30dc-af59-eeb9d19deb29 +2012,Capital Federal,II.1.1,661.899,TJ,CH4,3.9,kg/TJ,2581.4061,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,a1b2d137-4552-3c3a-8975-b41d40f77984 +2012,Capital Federal,II.1.1,661.899,TJ,N2O,3.9,kg/TJ,2581.4061,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,a1b2d137-4552-3c3a-8975-b41d40f77984 +2012,Córdoba,II.1.1,5.63472,TJ,CO2,74100.0,kg/TJ,417532.752,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,e1cacb83-bbdb-3a47-a0b3-810c1ffa34a6 +2012,Córdoba,II.1.1,5.63472,TJ,CH4,3.9,kg/TJ,21.975407999999998,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,3df9bc1a-0d57-3c6b-897d-9b803f5663c3 +2012,Córdoba,II.1.1,5.63472,TJ,N2O,3.9,kg/TJ,21.975407999999998,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,3df9bc1a-0d57-3c6b-897d-9b803f5663c3 +2012,Misiones,II.1.1,1.3364399999999999,TJ,CO2,74100.0,kg/TJ,99030.20399999998,Gas Oil combustion consumption by public passenger transport,AR-N,SESCO,annual,kg,7c2241a8-1ac9-3952-8705-3e640fb536cb +2012,Misiones,II.1.1,1.3364399999999999,TJ,CH4,3.9,kg/TJ,5.212115999999999,Gas Oil combustion consumption by public passenger transport,AR-N,SESCO,annual,kg,a628d1c6-227f-3017-b892-db83e9ea7937 +2012,Misiones,II.1.1,1.3364399999999999,TJ,N2O,3.9,kg/TJ,5.212115999999999,Gas Oil combustion consumption by public passenger transport,AR-N,SESCO,annual,kg,a628d1c6-227f-3017-b892-db83e9ea7937 +2012,Buenos Aires,II.5.1,8.7714,TJ,CO2,69300.0,kg/TJ,607858.02,Motor Gasoline combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,eeb8205d-77cd-3f2a-8932-d43d75a1c545 +2012,Buenos Aires,II.5.1,8.7714,TJ,CH4,33.0,kg/TJ,289.45619999999997,Motor Gasoline combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,b317fb0b-521a-3f20-ab2a-93fab46f1447 +2012,Buenos Aires,II.5.1,8.7714,TJ,N2O,3.2,kg/TJ,28.06848,Motor Gasoline combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,c3ec9538-cdd4-3188-b323-3581c89c4abd +2012,Salta,II.5.1,3.4111,TJ,CO2,69300.0,kg/TJ,236389.22999999998,Motor Gasoline combustion consumption by agriculture machines,AR-A,SESCO,annual,kg,4923e7a7-f4e7-3ab8-86d3-baabd51cf654 +2012,Salta,II.5.1,3.4111,TJ,CH4,33.0,kg/TJ,112.5663,Motor Gasoline combustion consumption by agriculture machines,AR-A,SESCO,annual,kg,02d4c0d6-0eb1-3d4f-b48f-72226e0476a8 +2012,Salta,II.5.1,3.4111,TJ,N2O,3.2,kg/TJ,10.91552,Motor Gasoline combustion consumption by agriculture machines,AR-A,SESCO,annual,kg,54c775fc-eae4-30f4-ac90-9cbf96fc0915 +2012,Buenos Aires,II.5.1,8663.237519999999,TJ,CO2,74100.0,kg/TJ,641945900.2319999,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,9205a28d-87ec-30ef-a20d-05081277b2f4 +2012,Buenos Aires,II.5.1,8663.237519999999,TJ,CH4,3.9,kg/TJ,33786.62632799999,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,541527fa-bef5-3aae-9e90-2932001cdd1a +2012,Buenos Aires,II.5.1,8663.237519999999,TJ,N2O,3.9,kg/TJ,33786.62632799999,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,541527fa-bef5-3aae-9e90-2932001cdd1a +2012,Capital Federal,II.5.1,35.61432,TJ,CO2,74100.0,kg/TJ,2639021.1119999997,Gas Oil combustion consumption by agriculture machines,AR-C,SESCO,annual,kg,1098f363-9edf-3725-8e5a-5e63ee2e8ccc +2012,Capital Federal,II.5.1,35.61432,TJ,CH4,3.9,kg/TJ,138.895848,Gas Oil combustion consumption by agriculture machines,AR-C,SESCO,annual,kg,7b3b91cb-6489-3224-81d1-daa2b8b11158 +2012,Capital Federal,II.5.1,35.61432,TJ,N2O,3.9,kg/TJ,138.895848,Gas Oil combustion consumption by agriculture machines,AR-C,SESCO,annual,kg,7b3b91cb-6489-3224-81d1-daa2b8b11158 +2012,Catamarca,II.5.1,195.7704,TJ,CO2,74100.0,kg/TJ,14506586.639999999,Gas Oil combustion consumption by agriculture machines,AR-K,SESCO,annual,kg,dcb13266-e297-3c80-847f-b8e66a15ed4f +2012,Catamarca,II.5.1,195.7704,TJ,CH4,3.9,kg/TJ,763.50456,Gas Oil combustion consumption by agriculture machines,AR-K,SESCO,annual,kg,9653fb1f-c4b8-322c-ad92-6c21540fd096 +2012,Catamarca,II.5.1,195.7704,TJ,N2O,3.9,kg/TJ,763.50456,Gas Oil combustion consumption by agriculture machines,AR-K,SESCO,annual,kg,9653fb1f-c4b8-322c-ad92-6c21540fd096 +2012,Chaco,II.5.1,1276.3002,TJ,CO2,74100.0,kg/TJ,94573844.82,Gas Oil combustion consumption by agriculture machines,AR-H,SESCO,annual,kg,68da3984-3549-33b9-a9f4-76f1459abae7 +2012,Chaco,II.5.1,1276.3002,TJ,CH4,3.9,kg/TJ,4977.570779999999,Gas Oil combustion consumption by agriculture machines,AR-H,SESCO,annual,kg,7ec7c20a-abb9-3424-a226-e5027d54737c +2012,Chaco,II.5.1,1276.3002,TJ,N2O,3.9,kg/TJ,4977.570779999999,Gas Oil combustion consumption by agriculture machines,AR-H,SESCO,annual,kg,7ec7c20a-abb9-3424-a226-e5027d54737c +2012,Chubut,II.5.1,8.34372,TJ,CO2,74100.0,kg/TJ,618269.652,Gas Oil combustion consumption by agriculture machines,AR-U,SESCO,annual,kg,fedbcd65-2676-3d64-8c04-5bd0176e313d +2012,Chubut,II.5.1,8.34372,TJ,CH4,3.9,kg/TJ,32.540507999999996,Gas Oil combustion consumption by agriculture machines,AR-U,SESCO,annual,kg,52ef6529-3dd0-362f-b4f8-a7c87d612d68 +2012,Chubut,II.5.1,8.34372,TJ,N2O,3.9,kg/TJ,32.540507999999996,Gas Oil combustion consumption by agriculture machines,AR-U,SESCO,annual,kg,52ef6529-3dd0-362f-b4f8-a7c87d612d68 +2012,Corrientes,II.5.1,395.58624,TJ,CO2,74100.0,kg/TJ,29312940.384,Gas Oil combustion consumption by agriculture machines,AR-W,SESCO,annual,kg,224bf67d-bd48-39eb-a012-af236f3e64fc +2012,Corrientes,II.5.1,395.58624,TJ,CH4,3.9,kg/TJ,1542.786336,Gas Oil combustion consumption by agriculture machines,AR-W,SESCO,annual,kg,7ce5a0ea-e1f8-3f2e-8340-4170e01296d6 +2012,Corrientes,II.5.1,395.58624,TJ,N2O,3.9,kg/TJ,1542.786336,Gas Oil combustion consumption by agriculture machines,AR-W,SESCO,annual,kg,7ce5a0ea-e1f8-3f2e-8340-4170e01296d6 +2012,Córdoba,II.5.1,7313.14416,TJ,CO2,74100.0,kg/TJ,541903982.256,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,8c12cecf-0c3e-3b3d-8d19-2562bf7bf31d +2012,Córdoba,II.5.1,7313.14416,TJ,CH4,3.9,kg/TJ,28521.262224,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,fac1210f-ed8a-38cd-bd87-968df11c93df +2012,Córdoba,II.5.1,7313.14416,TJ,N2O,3.9,kg/TJ,28521.262224,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,fac1210f-ed8a-38cd-bd87-968df11c93df +2012,Entre Rios,II.5.1,1986.45552,TJ,CO2,74100.0,kg/TJ,147196354.032,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,df0d4147-1145-394c-b521-d6108cf7a617 +2012,Entre Rios,II.5.1,1986.45552,TJ,CH4,3.9,kg/TJ,7747.176528,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,da8e2701-e810-352f-ac9d-d50ddb84e981 +2012,Entre Rios,II.5.1,1986.45552,TJ,N2O,3.9,kg/TJ,7747.176528,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,da8e2701-e810-352f-ac9d-d50ddb84e981 +2012,Formosa,II.5.1,353.976,TJ,CO2,74100.0,kg/TJ,26229621.6,Gas Oil combustion consumption by agriculture machines,AR-P,SESCO,annual,kg,03be6eef-7126-38fa-8913-e3afb6f4593e +2012,Formosa,II.5.1,353.976,TJ,CH4,3.9,kg/TJ,1380.5064,Gas Oil combustion consumption by agriculture machines,AR-P,SESCO,annual,kg,2bcc1c9f-bbd1-38de-9939-487a3e6ac001 +2012,Formosa,II.5.1,353.976,TJ,N2O,3.9,kg/TJ,1380.5064,Gas Oil combustion consumption by agriculture machines,AR-P,SESCO,annual,kg,2bcc1c9f-bbd1-38de-9939-487a3e6ac001 +2012,Jujuy,II.5.1,780.9144,TJ,CO2,74100.0,kg/TJ,57865757.04,Gas Oil combustion consumption by agriculture machines,AR-Y,SESCO,annual,kg,fe2a30d3-7d80-3cda-ae5e-6584b710c765 +2012,Jujuy,II.5.1,780.9144,TJ,CH4,3.9,kg/TJ,3045.56616,Gas Oil combustion consumption by agriculture machines,AR-Y,SESCO,annual,kg,b3eb22c5-2824-37a3-8b84-c9385e2c5e98 +2012,Jujuy,II.5.1,780.9144,TJ,N2O,3.9,kg/TJ,3045.56616,Gas Oil combustion consumption by agriculture machines,AR-Y,SESCO,annual,kg,b3eb22c5-2824-37a3-8b84-c9385e2c5e98 +2012,La Pampa,II.5.1,2319.15684,TJ,CO2,74100.0,kg/TJ,171849521.844,Gas Oil combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,8fa59509-f8ce-39f2-8a7a-17b5884b95d6 +2012,La Pampa,II.5.1,2319.15684,TJ,CH4,3.9,kg/TJ,9044.711676,Gas Oil combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,fe516c25-1e1a-3800-adb5-f00de7ac3553 +2012,La Pampa,II.5.1,2319.15684,TJ,N2O,3.9,kg/TJ,9044.711676,Gas Oil combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,fe516c25-1e1a-3800-adb5-f00de7ac3553 +2012,Mendoza,II.5.1,393.31068,TJ,CO2,74100.0,kg/TJ,29144321.388,Gas Oil combustion consumption by agriculture machines,AR-M,SESCO,annual,kg,f45a9073-f4db-34eb-b9bd-603349cc9fd7 +2012,Mendoza,II.5.1,393.31068,TJ,CH4,3.9,kg/TJ,1533.911652,Gas Oil combustion consumption by agriculture machines,AR-M,SESCO,annual,kg,d699d258-7e67-33ab-994e-15ee69771dd1 +2012,Mendoza,II.5.1,393.31068,TJ,N2O,3.9,kg/TJ,1533.911652,Gas Oil combustion consumption by agriculture machines,AR-M,SESCO,annual,kg,d699d258-7e67-33ab-994e-15ee69771dd1 +2012,Misiones,II.5.1,952.37604,TJ,CO2,74100.0,kg/TJ,70571064.564,Gas Oil combustion consumption by agriculture machines,AR-N,SESCO,annual,kg,cd1399e0-5a26-32d4-848d-dde1235337fd +2012,Misiones,II.5.1,952.37604,TJ,CH4,3.9,kg/TJ,3714.266556,Gas Oil combustion consumption by agriculture machines,AR-N,SESCO,annual,kg,17c78c81-e40a-3671-813b-2ea8141d2487 +2012,Misiones,II.5.1,952.37604,TJ,N2O,3.9,kg/TJ,3714.266556,Gas Oil combustion consumption by agriculture machines,AR-N,SESCO,annual,kg,17c78c81-e40a-3671-813b-2ea8141d2487 +2012,Neuquén,II.5.1,30.990959999999998,TJ,CO2,74100.0,kg/TJ,2296430.136,Gas Oil combustion consumption by agriculture machines,AR-Q,SESCO,annual,kg,bef43400-0819-316c-8cbd-f92865b11f83 +2012,Neuquén,II.5.1,30.990959999999998,TJ,CH4,3.9,kg/TJ,120.86474399999999,Gas Oil combustion consumption by agriculture machines,AR-Q,SESCO,annual,kg,f9dc0006-3a16-3bd0-9f76-5d3a83214c3c +2012,Neuquén,II.5.1,30.990959999999998,TJ,N2O,3.9,kg/TJ,120.86474399999999,Gas Oil combustion consumption by agriculture machines,AR-Q,SESCO,annual,kg,f9dc0006-3a16-3bd0-9f76-5d3a83214c3c +2012,Rio Negro,II.5.1,150.76488,TJ,CO2,74100.0,kg/TJ,11171677.608000001,Gas Oil combustion consumption by agriculture machines,AR-R,SESCO,annual,kg,874df751-4753-3e64-897f-072f4a5ed895 +2012,Rio Negro,II.5.1,150.76488,TJ,CH4,3.9,kg/TJ,587.983032,Gas Oil combustion consumption by agriculture machines,AR-R,SESCO,annual,kg,ed678122-e072-3df4-97f3-17e6d186584b +2012,Rio Negro,II.5.1,150.76488,TJ,N2O,3.9,kg/TJ,587.983032,Gas Oil combustion consumption by agriculture machines,AR-R,SESCO,annual,kg,ed678122-e072-3df4-97f3-17e6d186584b +2012,Salta,II.5.1,1968.07044,TJ,CO2,74100.0,kg/TJ,145834019.604,Gas Oil combustion consumption by agriculture machines,AR-A,SESCO,annual,kg,37db892e-d417-355e-9531-5f499d2ab5ed +2012,Salta,II.5.1,1968.07044,TJ,CH4,3.9,kg/TJ,7675.474716,Gas Oil combustion consumption by agriculture machines,AR-A,SESCO,annual,kg,6a31b34a-3610-3a13-94d5-2ecc270d3ad5 +2012,Salta,II.5.1,1968.07044,TJ,N2O,3.9,kg/TJ,7675.474716,Gas Oil combustion consumption by agriculture machines,AR-A,SESCO,annual,kg,6a31b34a-3610-3a13-94d5-2ecc270d3ad5 +2012,San Juan,II.5.1,116.41476,TJ,CO2,74100.0,kg/TJ,8626333.716,Gas Oil combustion consumption by agriculture machines,AR-J,SESCO,annual,kg,c187100c-886d-3bff-8f49-63a21f097f59 +2012,San Juan,II.5.1,116.41476,TJ,CH4,3.9,kg/TJ,454.017564,Gas Oil combustion consumption by agriculture machines,AR-J,SESCO,annual,kg,85b02a65-67a6-3b0a-9581-5d0f276bc9c8 +2012,San Juan,II.5.1,116.41476,TJ,N2O,3.9,kg/TJ,454.017564,Gas Oil combustion consumption by agriculture machines,AR-J,SESCO,annual,kg,85b02a65-67a6-3b0a-9581-5d0f276bc9c8 +2012,San Luis,II.5.1,463.20288,TJ,CO2,74100.0,kg/TJ,34323333.408,Gas Oil combustion consumption by agriculture machines,AR-D,SESCO,annual,kg,aa043c13-e454-357a-9607-b99c2cd277e3 +2012,San Luis,II.5.1,463.20288,TJ,CH4,3.9,kg/TJ,1806.4912319999999,Gas Oil combustion consumption by agriculture machines,AR-D,SESCO,annual,kg,bff40811-6676-3084-b3f4-14c0079fcb05 +2012,San Luis,II.5.1,463.20288,TJ,N2O,3.9,kg/TJ,1806.4912319999999,Gas Oil combustion consumption by agriculture machines,AR-D,SESCO,annual,kg,bff40811-6676-3084-b3f4-14c0079fcb05 +2012,Santa Fe,II.5.1,6100.848599999999,TJ,CO2,74100.0,kg/TJ,452072881.25999993,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,c49f40a6-1547-3430-ba3a-edfb9cdd8533 +2012,Santa Fe,II.5.1,6100.848599999999,TJ,CH4,3.9,kg/TJ,23793.30954,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,dc3ae95d-1490-39dc-9527-3a6ee55f38cb +2012,Santa Fe,II.5.1,6100.848599999999,TJ,N2O,3.9,kg/TJ,23793.30954,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,dc3ae95d-1490-39dc-9527-3a6ee55f38cb +2012,Santiago del Estero,II.5.1,1517.47344,TJ,CO2,74100.0,kg/TJ,112444781.904,Gas Oil combustion consumption by agriculture machines,AR-G,SESCO,annual,kg,964619e9-0f76-3b99-9875-ccec6ef5e36e +2012,Santiago del Estero,II.5.1,1517.47344,TJ,CH4,3.9,kg/TJ,5918.146416,Gas Oil combustion consumption by agriculture machines,AR-G,SESCO,annual,kg,3087eda9-7352-30cc-b741-ee0fa78c4974 +2012,Santiago del Estero,II.5.1,1517.47344,TJ,N2O,3.9,kg/TJ,5918.146416,Gas Oil combustion consumption by agriculture machines,AR-G,SESCO,annual,kg,3087eda9-7352-30cc-b741-ee0fa78c4974 +2012,Tucuman,II.5.1,1475.7548399999998,TJ,CO2,74100.0,kg/TJ,109353433.644,Gas Oil combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,d9de0d5e-fea3-38f5-867b-8dfb4642b911 +2012,Tucuman,II.5.1,1475.7548399999998,TJ,CH4,3.9,kg/TJ,5755.443875999999,Gas Oil combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,d02348af-4b98-3622-9b8f-a5c930fe948b +2012,Tucuman,II.5.1,1475.7548399999998,TJ,N2O,3.9,kg/TJ,5755.443875999999,Gas Oil combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,d02348af-4b98-3622-9b8f-a5c930fe948b +2012,Buenos Aires,II.5.1,40.05708,TJ,CO2,74100.0,kg/TJ,2968229.628,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,c9251dbf-66da-3340-a41c-5a7ccb168538 +2012,Buenos Aires,II.5.1,40.05708,TJ,CH4,3.9,kg/TJ,156.222612,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,ff2a3481-4391-3222-9930-f148029075c6 +2012,Buenos Aires,II.5.1,40.05708,TJ,N2O,3.9,kg/TJ,156.222612,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,ff2a3481-4391-3222-9930-f148029075c6 +2012,Chaco,II.5.1,8.95776,TJ,CO2,74100.0,kg/TJ,663770.0160000001,Gas Oil combustion consumption by agriculture machines,AR-H,SESCO,annual,kg,cf2591c3-49f8-3a92-8e5a-2611384552d7 +2012,Chaco,II.5.1,8.95776,TJ,CH4,3.9,kg/TJ,34.935264000000004,Gas Oil combustion consumption by agriculture machines,AR-H,SESCO,annual,kg,67cd9fdc-4339-3d20-95f1-0be8cd96c734 +2012,Chaco,II.5.1,8.95776,TJ,N2O,3.9,kg/TJ,34.935264000000004,Gas Oil combustion consumption by agriculture machines,AR-H,SESCO,annual,kg,67cd9fdc-4339-3d20-95f1-0be8cd96c734 +2012,Corrientes,II.5.1,2.56452,TJ,CO2,74100.0,kg/TJ,190030.932,Gas Oil combustion consumption by agriculture machines,AR-W,SESCO,annual,kg,48b124e6-baff-389e-932f-22b4a4fd0a48 +2012,Corrientes,II.5.1,2.56452,TJ,CH4,3.9,kg/TJ,10.001628,Gas Oil combustion consumption by agriculture machines,AR-W,SESCO,annual,kg,5d9f019d-18b7-3345-a801-6ba735844cc5 +2012,Corrientes,II.5.1,2.56452,TJ,N2O,3.9,kg/TJ,10.001628,Gas Oil combustion consumption by agriculture machines,AR-W,SESCO,annual,kg,5d9f019d-18b7-3345-a801-6ba735844cc5 +2012,Córdoba,II.5.1,10.6554,TJ,CO2,74100.0,kg/TJ,789565.14,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,bf6804c3-0d3d-3954-a067-9cfdd2a82115 +2012,Córdoba,II.5.1,10.6554,TJ,CH4,3.9,kg/TJ,41.55606,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,7c97b52a-f5de-3b43-ab58-6a2a522f9736 +2012,Córdoba,II.5.1,10.6554,TJ,N2O,3.9,kg/TJ,41.55606,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,7c97b52a-f5de-3b43-ab58-6a2a522f9736 +2012,Entre Rios,II.5.1,1.9866,TJ,CO2,74100.0,kg/TJ,147207.06,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,24caa789-b58a-3ef0-ba9d-9bb65ddd57c8 +2012,Entre Rios,II.5.1,1.9866,TJ,CH4,3.9,kg/TJ,7.747739999999999,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,ddc872aa-b96c-3120-903c-9f823b6c1f70 +2012,Entre Rios,II.5.1,1.9866,TJ,N2O,3.9,kg/TJ,7.747739999999999,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,ddc872aa-b96c-3120-903c-9f823b6c1f70 +2012,Jujuy,II.5.1,1.3364399999999999,TJ,CO2,74100.0,kg/TJ,99030.20399999998,Gas Oil combustion consumption by agriculture machines,AR-Y,SESCO,annual,kg,0044b8b3-d622-3f4a-8a79-ba3c7d24f2b8 +2012,Jujuy,II.5.1,1.3364399999999999,TJ,CH4,3.9,kg/TJ,5.212115999999999,Gas Oil combustion consumption by agriculture machines,AR-Y,SESCO,annual,kg,ab628184-9e32-32bc-b3f3-ebdaa5ff1981 +2012,Jujuy,II.5.1,1.3364399999999999,TJ,N2O,3.9,kg/TJ,5.212115999999999,Gas Oil combustion consumption by agriculture machines,AR-Y,SESCO,annual,kg,ab628184-9e32-32bc-b3f3-ebdaa5ff1981 +2012,La Pampa,II.5.1,55.083,TJ,CO2,74100.0,kg/TJ,4081650.3,Gas Oil combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,edf02dd9-842d-3dc3-9881-37738c7533e2 +2012,La Pampa,II.5.1,55.083,TJ,CH4,3.9,kg/TJ,214.8237,Gas Oil combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,10a118c4-88cc-3ace-8393-ac0ecb98a76b +2012,La Pampa,II.5.1,55.083,TJ,N2O,3.9,kg/TJ,214.8237,Gas Oil combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,10a118c4-88cc-3ace-8393-ac0ecb98a76b +2012,Misiones,II.5.1,3.03408,TJ,CO2,74100.0,kg/TJ,224825.32799999998,Gas Oil combustion consumption by agriculture machines,AR-N,SESCO,annual,kg,67d1d61f-ede2-3b65-9225-c5feecad5c33 +2012,Misiones,II.5.1,3.03408,TJ,CH4,3.9,kg/TJ,11.832911999999999,Gas Oil combustion consumption by agriculture machines,AR-N,SESCO,annual,kg,35b4f497-3825-351c-a21f-8da85fdda7f8 +2012,Misiones,II.5.1,3.03408,TJ,N2O,3.9,kg/TJ,11.832911999999999,Gas Oil combustion consumption by agriculture machines,AR-N,SESCO,annual,kg,35b4f497-3825-351c-a21f-8da85fdda7f8 +2012,Salta,II.5.1,55.083,TJ,CO2,74100.0,kg/TJ,4081650.3,Gas Oil combustion consumption by agriculture machines,AR-A,SESCO,annual,kg,a9246211-e975-3687-820d-2877342746e4 +2012,Salta,II.5.1,55.083,TJ,CH4,3.9,kg/TJ,214.8237,Gas Oil combustion consumption by agriculture machines,AR-A,SESCO,annual,kg,8858cfc7-64c2-38c1-9deb-42d19ee1b58a +2012,Salta,II.5.1,55.083,TJ,N2O,3.9,kg/TJ,214.8237,Gas Oil combustion consumption by agriculture machines,AR-A,SESCO,annual,kg,8858cfc7-64c2-38c1-9deb-42d19ee1b58a +2012,Santa Fe,II.5.1,45.61956,TJ,CO2,74100.0,kg/TJ,3380409.396,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,6a387918-b7be-3113-b395-106977e4f753 +2012,Santa Fe,II.5.1,45.61956,TJ,CH4,3.9,kg/TJ,177.916284,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,903fa0f5-b9ee-3816-8f14-093c941bd41d +2012,Santa Fe,II.5.1,45.61956,TJ,N2O,3.9,kg/TJ,177.916284,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,903fa0f5-b9ee-3816-8f14-093c941bd41d +2012,Santiago del Estero,II.5.1,60.57324,TJ,CO2,74100.0,kg/TJ,4488477.084,Gas Oil combustion consumption by agriculture machines,AR-G,SESCO,annual,kg,ba0099f8-ac1a-346d-aef8-3099e4f4db4b +2012,Santiago del Estero,II.5.1,60.57324,TJ,CH4,3.9,kg/TJ,236.235636,Gas Oil combustion consumption by agriculture machines,AR-G,SESCO,annual,kg,1b91d313-e125-3c28-ac11-ed86395032e9 +2012,Santiago del Estero,II.5.1,60.57324,TJ,N2O,3.9,kg/TJ,236.235636,Gas Oil combustion consumption by agriculture machines,AR-G,SESCO,annual,kg,1b91d313-e125-3c28-ac11-ed86395032e9 +2012,Tucuman,II.5.1,25.35624,TJ,CO2,74100.0,kg/TJ,1878897.384,Gas Oil combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,e3d27008-f320-3490-99d9-5db4ff176784 +2012,Tucuman,II.5.1,25.35624,TJ,CH4,3.9,kg/TJ,98.889336,Gas Oil combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,44db70ac-33ae-38bb-b9ae-7ad3ef9be930 +2012,Tucuman,II.5.1,25.35624,TJ,N2O,3.9,kg/TJ,98.889336,Gas Oil combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,44db70ac-33ae-38bb-b9ae-7ad3ef9be930 +2012,Buenos Aires,II.5.1,17.047525999999998,TJ,CO2,71500.0,kg/TJ,1218898.109,Jet Kerosene combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,d811cee4-865c-3980-b088-a2f85b3c9ec4 +2012,Buenos Aires,II.5.1,17.047525999999998,TJ,CH4,0.5,kg/TJ,8.523762999999999,Jet Kerosene combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,2568d848-45dd-3174-80f1-26db6512f45d +2012,Buenos Aires,II.5.1,17.047525999999998,TJ,N2O,2.0,kg/TJ,34.095051999999995,Jet Kerosene combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,5e324690-8491-3cc0-a9a3-4116ea82a36a +2012,Córdoba,II.5.1,0.31453,TJ,CO2,71500.0,kg/TJ,22488.894999999997,Jet Kerosene combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,f15cf9af-afeb-31b9-a32e-757a60ba7346 +2012,Córdoba,II.5.1,0.31453,TJ,CH4,0.5,kg/TJ,0.157265,Jet Kerosene combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,cf48b8c3-2f61-3dd0-b123-b5d477ee9603 +2012,Córdoba,II.5.1,0.31453,TJ,N2O,2.0,kg/TJ,0.62906,Jet Kerosene combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,ba1ec442-4a67-3a2f-9a40-c16e4a8f5665 +2012,Entre Rios,II.5.1,0.28307699999999997,TJ,CO2,71500.0,kg/TJ,20240.0055,Jet Kerosene combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,cc792cdc-d228-338a-bb13-ca68e37f94ef +2012,Entre Rios,II.5.1,0.28307699999999997,TJ,CH4,0.5,kg/TJ,0.14153849999999998,Jet Kerosene combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,dc4b07dd-66f0-3b8c-b844-1bd9cba8b39e +2012,Entre Rios,II.5.1,0.28307699999999997,TJ,N2O,2.0,kg/TJ,0.5661539999999999,Jet Kerosene combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,37f2b4ef-68e3-3354-a06c-2e31094aa7bb +2012,La Pampa,II.5.1,2.83077,TJ,CO2,71500.0,kg/TJ,202400.055,Jet Kerosene combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,5e825d1a-adf2-3ee2-a9fe-426b8597671d +2012,La Pampa,II.5.1,2.83077,TJ,CH4,0.5,kg/TJ,1.415385,Jet Kerosene combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,056a7c38-a0ff-3fe4-ba3e-72d77ec38a84 +2012,La Pampa,II.5.1,2.83077,TJ,N2O,2.0,kg/TJ,5.66154,Jet Kerosene combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,1627d847-d6bd-34fb-b121-5a48e969b30b +2012,Santa Fe,II.5.1,7.485813999999999,TJ,CO2,71500.0,kg/TJ,535235.7009999999,Jet Kerosene combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,87038111-3f31-3dc1-8f99-f0774615edc2 +2012,Santa Fe,II.5.1,7.485813999999999,TJ,CH4,0.5,kg/TJ,3.7429069999999993,Jet Kerosene combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,06d86841-67db-3c48-98b8-734f1e95c25d +2012,Santa Fe,II.5.1,7.485813999999999,TJ,N2O,2.0,kg/TJ,14.971627999999997,Jet Kerosene combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,6dc73c96-2157-3b9c-ad1e-86ae2775252e +2012,Buenos Aires,II.5.1,5.002689999999999,TJ,CO2,73300.0,kg/TJ,366697.17699999997,Naphtha combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,574599ee-3f3c-3ad9-bf0e-30ffb8e0a16e +2012,Buenos Aires,II.5.1,5.002689999999999,TJ,CH4,0.5,kg/TJ,2.5013449999999997,Naphtha combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,51605329-6077-3eb4-b30d-0308a278011e +2012,Buenos Aires,II.5.1,5.002689999999999,TJ,N2O,2.0,kg/TJ,10.005379999999999,Naphtha combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,9a31f936-c85d-314d-9300-6698d2936bc2 +2012,Chubut,II.5.1,8.84037,TJ,CO2,73300.0,kg/TJ,647999.121,Naphtha combustion consumption by agriculture machines,AR-U,SESCO,annual,kg,e0ace2f4-2aeb-3798-9ecf-2edf39b2141f +2012,Chubut,II.5.1,8.84037,TJ,CH4,0.5,kg/TJ,4.420185,Naphtha combustion consumption by agriculture machines,AR-U,SESCO,annual,kg,36e71f5d-e7a9-3a6f-8133-a400eee2ecfd +2012,Chubut,II.5.1,8.84037,TJ,N2O,2.0,kg/TJ,17.68074,Naphtha combustion consumption by agriculture machines,AR-U,SESCO,annual,kg,bc11a545-4f0f-32a4-8292-2f6948e493b3 +2012,Corrientes,II.5.1,0.75383,TJ,CO2,73300.0,kg/TJ,55255.739,Naphtha combustion consumption by agriculture machines,AR-W,SESCO,annual,kg,2f948506-82fc-370b-b2db-4b5ffc8b98bd +2012,Corrientes,II.5.1,0.75383,TJ,CH4,0.5,kg/TJ,0.376915,Naphtha combustion consumption by agriculture machines,AR-W,SESCO,annual,kg,3673a0fd-6865-3917-92e4-ed48f0089c42 +2012,Corrientes,II.5.1,0.75383,TJ,N2O,2.0,kg/TJ,1.50766,Naphtha combustion consumption by agriculture machines,AR-W,SESCO,annual,kg,af366ace-205d-365c-b969-95b55cffe039 +2012,Entre Rios,II.5.1,7.229915,TJ,CO2,73300.0,kg/TJ,529952.7695,Naphtha combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,19172106-eda0-3bea-850e-71be1d105335 +2012,Entre Rios,II.5.1,7.229915,TJ,CH4,0.5,kg/TJ,3.6149575,Naphtha combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,9ba54f4e-3457-3875-9c8c-2cc6f4930a87 +2012,Entre Rios,II.5.1,7.229915,TJ,N2O,2.0,kg/TJ,14.45983,Naphtha combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,7b0ba5ce-2de4-3f1c-b0e9-f489bf3a08cd +2012,Jujuy,II.5.1,0.54824,TJ,CO2,73300.0,kg/TJ,40185.992,Naphtha combustion consumption by agriculture machines,AR-Y,SESCO,annual,kg,301fd872-116b-3b1d-9402-b2a489c916c5 +2012,Jujuy,II.5.1,0.54824,TJ,CH4,0.5,kg/TJ,0.27412,Naphtha combustion consumption by agriculture machines,AR-Y,SESCO,annual,kg,4d2f5757-c60b-31f1-ac98-751005f57d37 +2012,Jujuy,II.5.1,0.54824,TJ,N2O,2.0,kg/TJ,1.09648,Naphtha combustion consumption by agriculture machines,AR-Y,SESCO,annual,kg,6d8e1212-98b8-302a-8820-dd0c1dfb5ee2 +2012,Salta,II.5.1,0.20559,TJ,CO2,73300.0,kg/TJ,15069.747,Naphtha combustion consumption by agriculture machines,AR-A,SESCO,annual,kg,e27938a3-3f2b-3e96-8076-66ab09ab4ebd +2012,Salta,II.5.1,0.20559,TJ,CH4,0.5,kg/TJ,0.102795,Naphtha combustion consumption by agriculture machines,AR-A,SESCO,annual,kg,168ea20a-6352-3169-994f-90a5ce59b7b1 +2012,Salta,II.5.1,0.20559,TJ,N2O,2.0,kg/TJ,0.41118,Naphtha combustion consumption by agriculture machines,AR-A,SESCO,annual,kg,f42e3987-4546-3b4c-a52c-17e7ce478cd1 +2012,Santa Fe,II.5.1,88.917675,TJ,CO2,73300.0,kg/TJ,6517665.577500001,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,61210433-544b-37bb-be72-fb65e0a7be9f +2012,Santa Fe,II.5.1,88.917675,TJ,CH4,0.5,kg/TJ,44.4588375,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,1ae57a8c-4d28-3813-883a-9525b72fb576 +2012,Santa Fe,II.5.1,88.917675,TJ,N2O,2.0,kg/TJ,177.83535,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,161caef5-06b5-3a7f-beee-cfb63ec57bf7 +2012,Santiago del Estero,II.5.1,0.513975,TJ,CO2,73300.0,kg/TJ,37674.3675,Naphtha combustion consumption by agriculture machines,AR-G,SESCO,annual,kg,84cee769-a2ee-3f2c-a6f0-32b62fb58842 +2012,Santiago del Estero,II.5.1,0.513975,TJ,CH4,0.5,kg/TJ,0.2569875,Naphtha combustion consumption by agriculture machines,AR-G,SESCO,annual,kg,78a615c7-70e0-3f51-b11a-539378873164 +2012,Santiago del Estero,II.5.1,0.513975,TJ,N2O,2.0,kg/TJ,1.02795,Naphtha combustion consumption by agriculture machines,AR-G,SESCO,annual,kg,1d19bb97-f467-32d4-b289-a79638f07507 +2012,Buenos Aires,II.5.1,1.02795,TJ,CO2,73300.0,kg/TJ,75348.735,Naphtha combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,24b99cb5-7acd-38a7-8678-396d59c3664b +2012,Buenos Aires,II.5.1,1.02795,TJ,CH4,0.5,kg/TJ,0.513975,Naphtha combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,8ef8184f-e8bc-35c7-81f6-ceaab78605da +2012,Buenos Aires,II.5.1,1.02795,TJ,N2O,2.0,kg/TJ,2.0559,Naphtha combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,0b63130e-7544-3e47-b6a1-e526ec5ca54c +2012,Santa Fe,II.5.1,1.2678049999999998,TJ,CO2,73300.0,kg/TJ,92930.1065,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,6c48878f-9e54-323a-a33b-3978f4beb46a +2012,Santa Fe,II.5.1,1.2678049999999998,TJ,CH4,0.5,kg/TJ,0.6339024999999999,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,c7db734e-7070-3e15-9aeb-a6ed324d410e +2012,Santa Fe,II.5.1,1.2678049999999998,TJ,N2O,2.0,kg/TJ,2.5356099999999997,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,3f20900a-5aa0-3e98-862c-97a655ae01e7 +2012,Buenos Aires,II.1.1,24.0992,TJ,CO2,69300.0,kg/TJ,1670074.56,Motor Gasoline combustion consumption by freight transport,AR-B,SESCO,annual,kg,db3e31cb-063a-30bc-a9d5-8ca7a0f24e22 +2012,Buenos Aires,II.1.1,24.0992,TJ,CH4,33.0,kg/TJ,795.2736,Motor Gasoline combustion consumption by freight transport,AR-B,SESCO,annual,kg,978fa113-ed08-3ad2-9911-ba8a1987fc1d +2012,Buenos Aires,II.1.1,24.0992,TJ,N2O,3.2,kg/TJ,77.11744,Motor Gasoline combustion consumption by freight transport,AR-B,SESCO,annual,kg,dea9245f-8c50-3a9a-8e0f-2d75772a4601 +2012,Capital Federal,II.1.1,11.872399999999999,TJ,CO2,69300.0,kg/TJ,822757.32,Motor Gasoline combustion consumption by freight transport,AR-C,SESCO,annual,kg,3ae3d11c-aceb-376b-af15-89b37f5747c6 +2012,Capital Federal,II.1.1,11.872399999999999,TJ,CH4,33.0,kg/TJ,391.78919999999994,Motor Gasoline combustion consumption by freight transport,AR-C,SESCO,annual,kg,9d8b6b89-7547-3a5a-a01c-d118983a6e6d +2012,Capital Federal,II.1.1,11.872399999999999,TJ,N2O,3.2,kg/TJ,37.991679999999995,Motor Gasoline combustion consumption by freight transport,AR-C,SESCO,annual,kg,cf79dfa4-3a68-39bc-a9c5-19890cc7b76c +2012,Buenos Aires,II.1.1,4691.51844,TJ,CO2,74100.0,kg/TJ,347641516.404,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,94b51570-0d3c-3cde-9f54-b11ef5a94dd9 +2012,Buenos Aires,II.1.1,4691.51844,TJ,CH4,3.9,kg/TJ,18296.921916,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,522c1df0-cdd4-3690-a21a-9935cbd4049f +2012,Buenos Aires,II.1.1,4691.51844,TJ,N2O,3.9,kg/TJ,18296.921916,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,522c1df0-cdd4-3690-a21a-9935cbd4049f +2012,Capital Federal,II.1.1,558.1262399999999,TJ,CO2,74100.0,kg/TJ,41357154.383999996,Gas Oil combustion consumption by freight transport,AR-C,SESCO,annual,kg,4c40d46c-0501-32ea-bfee-41546549667c +2012,Capital Federal,II.1.1,558.1262399999999,TJ,CH4,3.9,kg/TJ,2176.6923359999996,Gas Oil combustion consumption by freight transport,AR-C,SESCO,annual,kg,de0defbe-8af5-3329-b1c5-4130b6b043dd +2012,Capital Federal,II.1.1,558.1262399999999,TJ,N2O,3.9,kg/TJ,2176.6923359999996,Gas Oil combustion consumption by freight transport,AR-C,SESCO,annual,kg,de0defbe-8af5-3329-b1c5-4130b6b043dd +2012,Catamarca,II.1.1,22.35828,TJ,CO2,74100.0,kg/TJ,1656748.548,Gas Oil combustion consumption by freight transport,AR-K,SESCO,annual,kg,58327837-3ce8-3cdc-a86c-e0a007d2fac3 +2012,Catamarca,II.1.1,22.35828,TJ,CH4,3.9,kg/TJ,87.197292,Gas Oil combustion consumption by freight transport,AR-K,SESCO,annual,kg,89463f64-45c2-3fe0-85d7-0be3ef01cc49 +2012,Catamarca,II.1.1,22.35828,TJ,N2O,3.9,kg/TJ,87.197292,Gas Oil combustion consumption by freight transport,AR-K,SESCO,annual,kg,89463f64-45c2-3fe0-85d7-0be3ef01cc49 +2012,Chaco,II.1.1,16.940279999999998,TJ,CO2,74100.0,kg/TJ,1255274.748,Gas Oil combustion consumption by freight transport,AR-H,SESCO,annual,kg,042aaeac-dcae-362d-b37e-8973910d4e18 +2012,Chaco,II.1.1,16.940279999999998,TJ,CH4,3.9,kg/TJ,66.06709199999999,Gas Oil combustion consumption by freight transport,AR-H,SESCO,annual,kg,a14b05a7-4f25-3972-b365-274ac2ebbeda +2012,Chaco,II.1.1,16.940279999999998,TJ,N2O,3.9,kg/TJ,66.06709199999999,Gas Oil combustion consumption by freight transport,AR-H,SESCO,annual,kg,a14b05a7-4f25-3972-b365-274ac2ebbeda +2012,Chubut,II.1.1,164.41824,TJ,CO2,74100.0,kg/TJ,12183391.583999999,Gas Oil combustion consumption by freight transport,AR-U,SESCO,annual,kg,03a65f7c-dcbd-3456-b507-eec6d90859a9 +2012,Chubut,II.1.1,164.41824,TJ,CH4,3.9,kg/TJ,641.231136,Gas Oil combustion consumption by freight transport,AR-U,SESCO,annual,kg,c212e4f1-302e-3528-8d26-0cb7f35f470d +2012,Chubut,II.1.1,164.41824,TJ,N2O,3.9,kg/TJ,641.231136,Gas Oil combustion consumption by freight transport,AR-U,SESCO,annual,kg,c212e4f1-302e-3528-8d26-0cb7f35f470d +2012,Corrientes,II.1.1,185.72904,TJ,CO2,74100.0,kg/TJ,13762521.864,Gas Oil combustion consumption by freight transport,AR-W,SESCO,annual,kg,df74a3ad-7408-3c31-8cb2-56e247686c65 +2012,Corrientes,II.1.1,185.72904,TJ,CH4,3.9,kg/TJ,724.343256,Gas Oil combustion consumption by freight transport,AR-W,SESCO,annual,kg,3dd25615-ec01-3d86-8c83-648ec1f67790 +2012,Corrientes,II.1.1,185.72904,TJ,N2O,3.9,kg/TJ,724.343256,Gas Oil combustion consumption by freight transport,AR-W,SESCO,annual,kg,3dd25615-ec01-3d86-8c83-648ec1f67790 +2012,Córdoba,II.1.1,1015.94724,TJ,CO2,74100.0,kg/TJ,75281690.484,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,9aa754a9-481e-3039-a47d-9a56d3410e97 +2012,Córdoba,II.1.1,1015.94724,TJ,CH4,3.9,kg/TJ,3962.194236,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,834b3674-ca35-31cc-a780-a35b2baba311 +2012,Córdoba,II.1.1,1015.94724,TJ,N2O,3.9,kg/TJ,3962.194236,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,834b3674-ca35-31cc-a780-a35b2baba311 +2012,Entre Rios,II.1.1,107.70984,TJ,CO2,74100.0,kg/TJ,7981299.144,Gas Oil combustion consumption by freight transport,AR-E,SESCO,annual,kg,d86ea670-89a6-30c9-8b09-f29ce9f8a542 +2012,Entre Rios,II.1.1,107.70984,TJ,CH4,3.9,kg/TJ,420.068376,Gas Oil combustion consumption by freight transport,AR-E,SESCO,annual,kg,f46f494e-56c6-3ba6-a0f1-35579994ed0a +2012,Entre Rios,II.1.1,107.70984,TJ,N2O,3.9,kg/TJ,420.068376,Gas Oil combustion consumption by freight transport,AR-E,SESCO,annual,kg,f46f494e-56c6-3ba6-a0f1-35579994ed0a +2012,Jujuy,II.1.1,15.314879999999999,TJ,CO2,74100.0,kg/TJ,1134832.608,Gas Oil combustion consumption by freight transport,AR-Y,SESCO,annual,kg,8467d8cd-0c1a-38bc-84a2-fae2c1e1b106 +2012,Jujuy,II.1.1,15.314879999999999,TJ,CH4,3.9,kg/TJ,59.72803199999999,Gas Oil combustion consumption by freight transport,AR-Y,SESCO,annual,kg,4c56b0c4-1c53-32ab-bd68-206737696b4e +2012,Jujuy,II.1.1,15.314879999999999,TJ,N2O,3.9,kg/TJ,59.72803199999999,Gas Oil combustion consumption by freight transport,AR-Y,SESCO,annual,kg,4c56b0c4-1c53-32ab-bd68-206737696b4e +2012,La Pampa,II.1.1,70.03667999999999,TJ,CO2,74100.0,kg/TJ,5189717.987999999,Gas Oil combustion consumption by freight transport,AR-L,SESCO,annual,kg,27085164-1cec-3270-89d6-969d3339eef9 +2012,La Pampa,II.1.1,70.03667999999999,TJ,CH4,3.9,kg/TJ,273.14305199999995,Gas Oil combustion consumption by freight transport,AR-L,SESCO,annual,kg,235decc0-d108-3e8b-ab8c-ff35a02e7104 +2012,La Pampa,II.1.1,70.03667999999999,TJ,N2O,3.9,kg/TJ,273.14305199999995,Gas Oil combustion consumption by freight transport,AR-L,SESCO,annual,kg,235decc0-d108-3e8b-ab8c-ff35a02e7104 +2012,La Rioja,II.1.1,0.10836,TJ,CO2,74100.0,kg/TJ,8029.476,Gas Oil combustion consumption by freight transport,AR-F,SESCO,annual,kg,e07b9a20-8fa8-3e7c-a9d5-2e54dc7741fa +2012,La Rioja,II.1.1,0.10836,TJ,CH4,3.9,kg/TJ,0.422604,Gas Oil combustion consumption by freight transport,AR-F,SESCO,annual,kg,6788104c-c872-3539-869a-ed0f648f867f +2012,La Rioja,II.1.1,0.10836,TJ,N2O,3.9,kg/TJ,0.422604,Gas Oil combustion consumption by freight transport,AR-F,SESCO,annual,kg,6788104c-c872-3539-869a-ed0f648f867f +2012,Mendoza,II.1.1,672.12096,TJ,CO2,74100.0,kg/TJ,49804163.136,Gas Oil combustion consumption by freight transport,AR-M,SESCO,annual,kg,5dd087c5-8a9e-3c11-ab9e-de8870fa6dc7 +2012,Mendoza,II.1.1,672.12096,TJ,CH4,3.9,kg/TJ,2621.2717439999997,Gas Oil combustion consumption by freight transport,AR-M,SESCO,annual,kg,19b03564-0455-36b7-99b7-66c45ed62745 +2012,Mendoza,II.1.1,672.12096,TJ,N2O,3.9,kg/TJ,2621.2717439999997,Gas Oil combustion consumption by freight transport,AR-M,SESCO,annual,kg,19b03564-0455-36b7-99b7-66c45ed62745 +2012,Misiones,II.1.1,145.81644,TJ,CO2,74100.0,kg/TJ,10804998.204,Gas Oil combustion consumption by freight transport,AR-N,SESCO,annual,kg,880b7c7a-98a1-3731-a954-d507886ab2c3 +2012,Misiones,II.1.1,145.81644,TJ,CH4,3.9,kg/TJ,568.684116,Gas Oil combustion consumption by freight transport,AR-N,SESCO,annual,kg,2cf81ce2-1c02-3bd0-8c19-4f462d269e0e +2012,Misiones,II.1.1,145.81644,TJ,N2O,3.9,kg/TJ,568.684116,Gas Oil combustion consumption by freight transport,AR-N,SESCO,annual,kg,2cf81ce2-1c02-3bd0-8c19-4f462d269e0e +2012,Neuquén,II.1.1,336.60228,TJ,CO2,74100.0,kg/TJ,24942228.948,Gas Oil combustion consumption by freight transport,AR-Q,SESCO,annual,kg,62aa44bb-ede1-32db-bf85-32d8ffa96890 +2012,Neuquén,II.1.1,336.60228,TJ,CH4,3.9,kg/TJ,1312.748892,Gas Oil combustion consumption by freight transport,AR-Q,SESCO,annual,kg,0c51c0c1-92f0-3aaa-9194-b52da6252af3 +2012,Neuquén,II.1.1,336.60228,TJ,N2O,3.9,kg/TJ,1312.748892,Gas Oil combustion consumption by freight transport,AR-Q,SESCO,annual,kg,0c51c0c1-92f0-3aaa-9194-b52da6252af3 +2012,Rio Negro,II.1.1,4.8400799999999995,TJ,CO2,74100.0,kg/TJ,358649.92799999996,Gas Oil combustion consumption by freight transport,AR-R,SESCO,annual,kg,3b1022c3-ea8d-32a3-a856-4395b6a75dba +2012,Rio Negro,II.1.1,4.8400799999999995,TJ,CH4,3.9,kg/TJ,18.876312,Gas Oil combustion consumption by freight transport,AR-R,SESCO,annual,kg,79fdd900-ca2e-31f2-8582-84e0396be498 +2012,Rio Negro,II.1.1,4.8400799999999995,TJ,N2O,3.9,kg/TJ,18.876312,Gas Oil combustion consumption by freight transport,AR-R,SESCO,annual,kg,79fdd900-ca2e-31f2-8582-84e0396be498 +2012,Salta,II.1.1,62.41536,TJ,CO2,74100.0,kg/TJ,4624978.176,Gas Oil combustion consumption by freight transport,AR-A,SESCO,annual,kg,0412c1b7-104d-308c-9ba6-d307001028df +2012,Salta,II.1.1,62.41536,TJ,CH4,3.9,kg/TJ,243.419904,Gas Oil combustion consumption by freight transport,AR-A,SESCO,annual,kg,966cc9ac-5b45-3c1d-a0a1-800d95e633c6 +2012,Salta,II.1.1,62.41536,TJ,N2O,3.9,kg/TJ,243.419904,Gas Oil combustion consumption by freight transport,AR-A,SESCO,annual,kg,966cc9ac-5b45-3c1d-a0a1-800d95e633c6 +2012,San Juan,II.1.1,81.19776,TJ,CO2,74100.0,kg/TJ,6016754.016,Gas Oil combustion consumption by freight transport,AR-J,SESCO,annual,kg,664e36f4-92a9-386a-9da3-2789a1e77fb4 +2012,San Juan,II.1.1,81.19776,TJ,CH4,3.9,kg/TJ,316.671264,Gas Oil combustion consumption by freight transport,AR-J,SESCO,annual,kg,0b2c6fe8-469b-37a8-97cb-9bd23857a5c7 +2012,San Juan,II.1.1,81.19776,TJ,N2O,3.9,kg/TJ,316.671264,Gas Oil combustion consumption by freight transport,AR-J,SESCO,annual,kg,0b2c6fe8-469b-37a8-97cb-9bd23857a5c7 +2012,San Luis,II.1.1,81.95627999999999,TJ,CO2,74100.0,kg/TJ,6072960.347999999,Gas Oil combustion consumption by freight transport,AR-D,SESCO,annual,kg,8880cc16-1e4c-349c-bf08-dd9b36acb5aa +2012,San Luis,II.1.1,81.95627999999999,TJ,CH4,3.9,kg/TJ,319.62949199999997,Gas Oil combustion consumption by freight transport,AR-D,SESCO,annual,kg,33b60c68-bc0c-3cff-ada3-e29c64a96305 +2012,San Luis,II.1.1,81.95627999999999,TJ,N2O,3.9,kg/TJ,319.62949199999997,Gas Oil combustion consumption by freight transport,AR-D,SESCO,annual,kg,33b60c68-bc0c-3cff-ada3-e29c64a96305 +2012,Santa Cruz,II.1.1,81.59508,TJ,CO2,74100.0,kg/TJ,6046195.427999999,Gas Oil combustion consumption by freight transport,AR-Z,SESCO,annual,kg,c1d44d07-2c20-3409-98eb-c95f08df59cb +2012,Santa Cruz,II.1.1,81.59508,TJ,CH4,3.9,kg/TJ,318.22081199999997,Gas Oil combustion consumption by freight transport,AR-Z,SESCO,annual,kg,1469295d-9b35-3c61-94d9-1fe4837b7bcf +2012,Santa Cruz,II.1.1,81.59508,TJ,N2O,3.9,kg/TJ,318.22081199999997,Gas Oil combustion consumption by freight transport,AR-Z,SESCO,annual,kg,1469295d-9b35-3c61-94d9-1fe4837b7bcf +2012,Santa Fe,II.1.1,555.8868,TJ,CO2,74100.0,kg/TJ,41191211.88,Gas Oil combustion consumption by freight transport,AR-S,SESCO,annual,kg,03aac554-ea7c-35e5-8eeb-ddfe8e07204f +2012,Santa Fe,II.1.1,555.8868,TJ,CH4,3.9,kg/TJ,2167.95852,Gas Oil combustion consumption by freight transport,AR-S,SESCO,annual,kg,427fc5e7-7e6c-35d8-b178-edc112eb2d18 +2012,Santa Fe,II.1.1,555.8868,TJ,N2O,3.9,kg/TJ,2167.95852,Gas Oil combustion consumption by freight transport,AR-S,SESCO,annual,kg,427fc5e7-7e6c-35d8-b178-edc112eb2d18 +2012,Santiago del Estero,II.1.1,42.6216,TJ,CO2,74100.0,kg/TJ,3158260.56,Gas Oil combustion consumption by freight transport,AR-G,SESCO,annual,kg,a15511ef-6877-3220-a680-b801df080d43 +2012,Santiago del Estero,II.1.1,42.6216,TJ,CH4,3.9,kg/TJ,166.22424,Gas Oil combustion consumption by freight transport,AR-G,SESCO,annual,kg,12777238-3044-381e-9cdb-7a8d5ccc8417 +2012,Santiago del Estero,II.1.1,42.6216,TJ,N2O,3.9,kg/TJ,166.22424,Gas Oil combustion consumption by freight transport,AR-G,SESCO,annual,kg,12777238-3044-381e-9cdb-7a8d5ccc8417 +2012,Tierra del Fuego,II.1.1,0.36119999999999997,TJ,CO2,74100.0,kg/TJ,26764.92,Gas Oil combustion consumption by freight transport,AR-V,SESCO,annual,kg,59a79577-2eff-3cdf-82bd-57955338ae90 +2012,Tierra del Fuego,II.1.1,0.36119999999999997,TJ,CH4,3.9,kg/TJ,1.40868,Gas Oil combustion consumption by freight transport,AR-V,SESCO,annual,kg,39723431-6851-3518-9b28-3af5203aba97 +2012,Tierra del Fuego,II.1.1,0.36119999999999997,TJ,N2O,3.9,kg/TJ,1.40868,Gas Oil combustion consumption by freight transport,AR-V,SESCO,annual,kg,39723431-6851-3518-9b28-3af5203aba97 +2012,Tucuman,II.1.1,98.0658,TJ,CO2,74100.0,kg/TJ,7266675.779999999,Gas Oil combustion consumption by freight transport,AR-T,SESCO,annual,kg,75fb2883-a7f3-3999-b61d-9c82beecd147 +2012,Tucuman,II.1.1,98.0658,TJ,CH4,3.9,kg/TJ,382.45662,Gas Oil combustion consumption by freight transport,AR-T,SESCO,annual,kg,4ae8189c-04cf-3ba7-ae2d-afe5317b2d30 +2012,Tucuman,II.1.1,98.0658,TJ,N2O,3.9,kg/TJ,382.45662,Gas Oil combustion consumption by freight transport,AR-T,SESCO,annual,kg,4ae8189c-04cf-3ba7-ae2d-afe5317b2d30 +2012,Buenos Aires,II.1.1,10.862005,TJ,CO2,73300.0,kg/TJ,796184.9665,Naphtha combustion consumption by freight transport,AR-B,SESCO,annual,kg,31644ec7-44c6-3155-9764-eb918fc70605 +2012,Buenos Aires,II.1.1,10.862005,TJ,CH4,0.5,kg/TJ,5.4310025,Naphtha combustion consumption by freight transport,AR-B,SESCO,annual,kg,01d7d92a-981d-3995-a542-59daf7d67c0e +2012,Buenos Aires,II.1.1,10.862005,TJ,N2O,2.0,kg/TJ,21.72401,Naphtha combustion consumption by freight transport,AR-B,SESCO,annual,kg,a290b2c6-c671-3e85-86bb-add7c4bd5811 +2012,Buenos Aires,II.1.1,10829.96796,TJ,CO2,74100.0,kg/TJ,802500625.836,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,a342ac72-511a-38b6-a677-3461f1ea64c3 +2012,Buenos Aires,II.1.1,10829.96796,TJ,CH4,3.9,kg/TJ,42236.875044,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,bfe337c4-45a2-364c-8747-86b5ce257ddb +2012,Buenos Aires,II.1.1,10829.96796,TJ,N2O,3.9,kg/TJ,42236.875044,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,bfe337c4-45a2-364c-8747-86b5ce257ddb +2012,Capital Federal,II.1.1,3347.6016,TJ,CO2,74100.0,kg/TJ,248057278.56,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,6ca058da-443e-3713-9f6b-c1997faddabf +2012,Capital Federal,II.1.1,3347.6016,TJ,CH4,3.9,kg/TJ,13055.64624,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,29c98ba9-a983-3073-9014-45fb1241930a +2012,Capital Federal,II.1.1,3347.6016,TJ,N2O,3.9,kg/TJ,13055.64624,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,29c98ba9-a983-3073-9014-45fb1241930a +2012,Catamarca,II.1.1,130.97111999999998,TJ,CO2,74100.0,kg/TJ,9704959.991999999,Gas Oil combustion consumption by public passenger transport,AR-K,SESCO,annual,kg,36f4f650-37f8-332b-90b2-42fe5982ebdd +2012,Catamarca,II.1.1,130.97111999999998,TJ,CH4,3.9,kg/TJ,510.7873679999999,Gas Oil combustion consumption by public passenger transport,AR-K,SESCO,annual,kg,16ecc409-c6b0-3285-b3f1-bc762e9a4758 +2012,Catamarca,II.1.1,130.97111999999998,TJ,N2O,3.9,kg/TJ,510.7873679999999,Gas Oil combustion consumption by public passenger transport,AR-K,SESCO,annual,kg,16ecc409-c6b0-3285-b3f1-bc762e9a4758 +2012,Chaco,II.1.1,481.15452,TJ,CO2,74100.0,kg/TJ,35653549.932,Gas Oil combustion consumption by public passenger transport,AR-H,SESCO,annual,kg,16b41e5b-f658-316e-b0cd-5e3cf7b89b64 +2012,Chaco,II.1.1,481.15452,TJ,CH4,3.9,kg/TJ,1876.502628,Gas Oil combustion consumption by public passenger transport,AR-H,SESCO,annual,kg,30a1d792-0ef8-3247-9f79-09bc46b8f9fc +2012,Chaco,II.1.1,481.15452,TJ,N2O,3.9,kg/TJ,1876.502628,Gas Oil combustion consumption by public passenger transport,AR-H,SESCO,annual,kg,30a1d792-0ef8-3247-9f79-09bc46b8f9fc +2012,Chubut,II.1.1,145.67195999999998,TJ,CO2,74100.0,kg/TJ,10794292.236,Gas Oil combustion consumption by public passenger transport,AR-U,SESCO,annual,kg,0e32ae73-7bc4-3461-91fd-d5147f987940 +2012,Chubut,II.1.1,145.67195999999998,TJ,CH4,3.9,kg/TJ,568.120644,Gas Oil combustion consumption by public passenger transport,AR-U,SESCO,annual,kg,e42ba659-eb2b-3eb7-80d1-6247e5c28d3b +2012,Chubut,II.1.1,145.67195999999998,TJ,N2O,3.9,kg/TJ,568.120644,Gas Oil combustion consumption by public passenger transport,AR-U,SESCO,annual,kg,e42ba659-eb2b-3eb7-80d1-6247e5c28d3b +2012,Corrientes,II.1.1,420.798,TJ,CO2,74100.0,kg/TJ,31181131.8,Gas Oil combustion consumption by public passenger transport,AR-W,SESCO,annual,kg,56f530e0-85c5-3d9c-84f8-c8183e5d620d +2012,Corrientes,II.1.1,420.798,TJ,CH4,3.9,kg/TJ,1641.1122,Gas Oil combustion consumption by public passenger transport,AR-W,SESCO,annual,kg,cc7cd5aa-e7d2-30ef-a38e-761628580047 +2012,Corrientes,II.1.1,420.798,TJ,N2O,3.9,kg/TJ,1641.1122,Gas Oil combustion consumption by public passenger transport,AR-W,SESCO,annual,kg,cc7cd5aa-e7d2-30ef-a38e-761628580047 +2012,Córdoba,II.1.1,2047.53444,TJ,CO2,74100.0,kg/TJ,151722302.00399998,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,7a3b169b-4426-3949-874a-1dc85e702dbf +2012,Córdoba,II.1.1,2047.53444,TJ,CH4,3.9,kg/TJ,7985.384316,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,a3252b4e-3bdc-3740-8956-bb948f1e343a +2012,Córdoba,II.1.1,2047.53444,TJ,N2O,3.9,kg/TJ,7985.384316,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,a3252b4e-3bdc-3740-8956-bb948f1e343a +2012,Entre Rios,II.1.1,438.42456,TJ,CO2,74100.0,kg/TJ,32487259.895999998,Gas Oil combustion consumption by public passenger transport,AR-E,SESCO,annual,kg,53679511-9894-3f11-aa66-7313df70a562 +2012,Entre Rios,II.1.1,438.42456,TJ,CH4,3.9,kg/TJ,1709.8557839999999,Gas Oil combustion consumption by public passenger transport,AR-E,SESCO,annual,kg,bf6a8012-0143-3291-a063-58f2c0555a43 +2012,Entre Rios,II.1.1,438.42456,TJ,N2O,3.9,kg/TJ,1709.8557839999999,Gas Oil combustion consumption by public passenger transport,AR-E,SESCO,annual,kg,bf6a8012-0143-3291-a063-58f2c0555a43 +2012,Formosa,II.1.1,115.80072,TJ,CO2,74100.0,kg/TJ,8580833.352,Gas Oil combustion consumption by public passenger transport,AR-P,SESCO,annual,kg,8cfe4aa5-b884-3ccc-a586-6c74d56154cd +2012,Formosa,II.1.1,115.80072,TJ,CH4,3.9,kg/TJ,451.62280799999996,Gas Oil combustion consumption by public passenger transport,AR-P,SESCO,annual,kg,fe0b9123-d84c-30a6-b1c3-851a976c797b +2012,Formosa,II.1.1,115.80072,TJ,N2O,3.9,kg/TJ,451.62280799999996,Gas Oil combustion consumption by public passenger transport,AR-P,SESCO,annual,kg,fe0b9123-d84c-30a6-b1c3-851a976c797b +2012,Jujuy,II.1.1,418.8114,TJ,CO2,74100.0,kg/TJ,31033924.74,Gas Oil combustion consumption by public passenger transport,AR-Y,SESCO,annual,kg,fb7bc855-5323-3c06-8ee8-5ca326341637 +2012,Jujuy,II.1.1,418.8114,TJ,CH4,3.9,kg/TJ,1633.36446,Gas Oil combustion consumption by public passenger transport,AR-Y,SESCO,annual,kg,b2135812-cd09-3c80-bd76-8a7c698032a6 +2012,Jujuy,II.1.1,418.8114,TJ,N2O,3.9,kg/TJ,1633.36446,Gas Oil combustion consumption by public passenger transport,AR-Y,SESCO,annual,kg,b2135812-cd09-3c80-bd76-8a7c698032a6 +2012,La Pampa,II.1.1,10.185839999999999,TJ,CO2,74100.0,kg/TJ,754770.744,Gas Oil combustion consumption by public passenger transport,AR-L,SESCO,annual,kg,70db5ef6-335f-37db-a292-37746d678e8f +2012,La Pampa,II.1.1,10.185839999999999,TJ,CH4,3.9,kg/TJ,39.72477599999999,Gas Oil combustion consumption by public passenger transport,AR-L,SESCO,annual,kg,f5faa8d2-9379-3f39-a262-9451eb06c25b +2012,La Pampa,II.1.1,10.185839999999999,TJ,N2O,3.9,kg/TJ,39.72477599999999,Gas Oil combustion consumption by public passenger transport,AR-L,SESCO,annual,kg,f5faa8d2-9379-3f39-a262-9451eb06c25b +2012,La Rioja,II.1.1,77.80248,TJ,CO2,74100.0,kg/TJ,5765163.768,Gas Oil combustion consumption by public passenger transport,AR-F,SESCO,annual,kg,7cb6b36b-1c2a-339b-9373-00cf222d9105 +2012,La Rioja,II.1.1,77.80248,TJ,CH4,3.9,kg/TJ,303.429672,Gas Oil combustion consumption by public passenger transport,AR-F,SESCO,annual,kg,7f82fb34-6964-36ee-84c2-a02b6acd81b9 +2012,La Rioja,II.1.1,77.80248,TJ,N2O,3.9,kg/TJ,303.429672,Gas Oil combustion consumption by public passenger transport,AR-F,SESCO,annual,kg,7f82fb34-6964-36ee-84c2-a02b6acd81b9 +2012,Mendoza,II.1.1,1664.7708,TJ,CO2,74100.0,kg/TJ,123359516.28,Gas Oil combustion consumption by public passenger transport,AR-M,SESCO,annual,kg,cc3c07b6-3911-3fba-9baa-93ce4e313462 +2012,Mendoza,II.1.1,1664.7708,TJ,CH4,3.9,kg/TJ,6492.6061199999995,Gas Oil combustion consumption by public passenger transport,AR-M,SESCO,annual,kg,60b2d07f-6a9d-3522-9757-f801049ee3d7 +2012,Mendoza,II.1.1,1664.7708,TJ,N2O,3.9,kg/TJ,6492.6061199999995,Gas Oil combustion consumption by public passenger transport,AR-M,SESCO,annual,kg,60b2d07f-6a9d-3522-9757-f801049ee3d7 +2012,Misiones,II.1.1,739.44864,TJ,CO2,74100.0,kg/TJ,54793144.224,Gas Oil combustion consumption by public passenger transport,AR-N,SESCO,annual,kg,b64d75d8-fad5-3c36-bde8-9116a497fc77 +2012,Misiones,II.1.1,739.44864,TJ,CH4,3.9,kg/TJ,2883.8496959999998,Gas Oil combustion consumption by public passenger transport,AR-N,SESCO,annual,kg,cf42b492-15bf-3c23-a1ec-d95d26bff3f9 +2012,Misiones,II.1.1,739.44864,TJ,N2O,3.9,kg/TJ,2883.8496959999998,Gas Oil combustion consumption by public passenger transport,AR-N,SESCO,annual,kg,cf42b492-15bf-3c23-a1ec-d95d26bff3f9 +2012,Neuquén,II.1.1,240.45084,TJ,CO2,74100.0,kg/TJ,17817407.244,Gas Oil combustion consumption by public passenger transport,AR-Q,SESCO,annual,kg,af90b41d-5122-3317-8d00-8c7a788137ce +2012,Neuquén,II.1.1,240.45084,TJ,CH4,3.9,kg/TJ,937.758276,Gas Oil combustion consumption by public passenger transport,AR-Q,SESCO,annual,kg,0b2f840f-76e3-3e59-898d-fdedbc84ef67 +2012,Neuquén,II.1.1,240.45084,TJ,N2O,3.9,kg/TJ,937.758276,Gas Oil combustion consumption by public passenger transport,AR-Q,SESCO,annual,kg,0b2f840f-76e3-3e59-898d-fdedbc84ef67 +2012,Rio Negro,II.1.1,305.90028,TJ,CO2,74100.0,kg/TJ,22667210.748,Gas Oil combustion consumption by public passenger transport,AR-R,SESCO,annual,kg,7e79036b-c539-3682-a2bb-cd580ea560ad +2012,Rio Negro,II.1.1,305.90028,TJ,CH4,3.9,kg/TJ,1193.011092,Gas Oil combustion consumption by public passenger transport,AR-R,SESCO,annual,kg,c91b9dca-e623-3ca6-ace2-8e66e1cffad1 +2012,Rio Negro,II.1.1,305.90028,TJ,N2O,3.9,kg/TJ,1193.011092,Gas Oil combustion consumption by public passenger transport,AR-R,SESCO,annual,kg,c91b9dca-e623-3ca6-ace2-8e66e1cffad1 +2012,Salta,II.1.1,918.0259199999999,TJ,CO2,74100.0,kg/TJ,68025720.67199999,Gas Oil combustion consumption by public passenger transport,AR-A,SESCO,annual,kg,90f375f2-675c-3eb5-8911-b94d2e436e28 +2012,Salta,II.1.1,918.0259199999999,TJ,CH4,3.9,kg/TJ,3580.3010879999997,Gas Oil combustion consumption by public passenger transport,AR-A,SESCO,annual,kg,4ab30d5a-aa21-3aaf-8514-e9a03cb942c7 +2012,Salta,II.1.1,918.0259199999999,TJ,N2O,3.9,kg/TJ,3580.3010879999997,Gas Oil combustion consumption by public passenger transport,AR-A,SESCO,annual,kg,4ab30d5a-aa21-3aaf-8514-e9a03cb942c7 +2012,San Juan,II.1.1,492.31559999999996,TJ,CO2,74100.0,kg/TJ,36480585.95999999,Gas Oil combustion consumption by public passenger transport,AR-J,SESCO,annual,kg,0f7a7f61-9f5e-39ee-9b4c-8590b37316a2 +2012,San Juan,II.1.1,492.31559999999996,TJ,CH4,3.9,kg/TJ,1920.03084,Gas Oil combustion consumption by public passenger transport,AR-J,SESCO,annual,kg,49c68530-910e-37bb-bdc7-4cd1ea6d0b60 +2012,San Juan,II.1.1,492.31559999999996,TJ,N2O,3.9,kg/TJ,1920.03084,Gas Oil combustion consumption by public passenger transport,AR-J,SESCO,annual,kg,49c68530-910e-37bb-bdc7-4cd1ea6d0b60 +2012,San Luis,II.1.1,68.05008,TJ,CO2,74100.0,kg/TJ,5042510.927999999,Gas Oil combustion consumption by public passenger transport,AR-D,SESCO,annual,kg,f843bb91-150c-3858-8561-7a66e41e19b3 +2012,San Luis,II.1.1,68.05008,TJ,CH4,3.9,kg/TJ,265.395312,Gas Oil combustion consumption by public passenger transport,AR-D,SESCO,annual,kg,92cc1646-be9b-33cb-9fab-f260ac8d3c06 +2012,San Luis,II.1.1,68.05008,TJ,N2O,3.9,kg/TJ,265.395312,Gas Oil combustion consumption by public passenger transport,AR-D,SESCO,annual,kg,92cc1646-be9b-33cb-9fab-f260ac8d3c06 +2012,Santa Cruz,II.1.1,45.22224,TJ,CO2,74100.0,kg/TJ,3350967.984,Gas Oil combustion consumption by public passenger transport,AR-Z,SESCO,annual,kg,dd67629c-03e1-3d4d-bc40-6f65493d117c +2012,Santa Cruz,II.1.1,45.22224,TJ,CH4,3.9,kg/TJ,176.366736,Gas Oil combustion consumption by public passenger transport,AR-Z,SESCO,annual,kg,4a3578be-cade-3574-ae22-4f0eb55f595a +2012,Santa Cruz,II.1.1,45.22224,TJ,N2O,3.9,kg/TJ,176.366736,Gas Oil combustion consumption by public passenger transport,AR-Z,SESCO,annual,kg,4a3578be-cade-3574-ae22-4f0eb55f595a +2012,Santa Fe,II.1.1,1295.51604,TJ,CO2,74100.0,kg/TJ,95997738.564,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,3bfff277-ff68-3134-9c0d-c61070c052a6 +2012,Santa Fe,II.1.1,1295.51604,TJ,CH4,3.9,kg/TJ,5052.512556,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,10a8475f-3e76-3137-ae33-b2c3528b25f4 +2012,Santa Fe,II.1.1,1295.51604,TJ,N2O,3.9,kg/TJ,5052.512556,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,10a8475f-3e76-3137-ae33-b2c3528b25f4 +2012,Santiago del Estero,II.1.1,302.1438,TJ,CO2,74100.0,kg/TJ,22388855.58,Gas Oil combustion consumption by public passenger transport,AR-G,SESCO,annual,kg,a5ac3881-d231-3323-bff8-0825b00ec1a0 +2012,Santiago del Estero,II.1.1,302.1438,TJ,CH4,3.9,kg/TJ,1178.3608199999999,Gas Oil combustion consumption by public passenger transport,AR-G,SESCO,annual,kg,0d1d79ae-78c6-3612-b588-93cc6d6a6336 +2012,Santiago del Estero,II.1.1,302.1438,TJ,N2O,3.9,kg/TJ,1178.3608199999999,Gas Oil combustion consumption by public passenger transport,AR-G,SESCO,annual,kg,0d1d79ae-78c6-3612-b588-93cc6d6a6336 +2012,Tierra del Fuego,II.1.1,10.61928,TJ,CO2,74100.0,kg/TJ,786888.648,Gas Oil combustion consumption by public passenger transport,AR-V,SESCO,annual,kg,4bd578b8-627e-36c1-9400-b72d6cd6266a +2012,Tierra del Fuego,II.1.1,10.61928,TJ,CH4,3.9,kg/TJ,41.415192,Gas Oil combustion consumption by public passenger transport,AR-V,SESCO,annual,kg,03f4dd79-3983-32cd-8743-d1398d465e50 +2012,Tierra del Fuego,II.1.1,10.61928,TJ,N2O,3.9,kg/TJ,41.415192,Gas Oil combustion consumption by public passenger transport,AR-V,SESCO,annual,kg,03f4dd79-3983-32cd-8743-d1398d465e50 +2012,Tucuman,II.1.1,1101.1543199999999,TJ,CO2,74100.0,kg/TJ,81595535.11199999,Gas Oil combustion consumption by public passenger transport,AR-T,SESCO,annual,kg,adbb2021-563a-363e-aa7e-e1127fbe303f +2012,Tucuman,II.1.1,1101.1543199999999,TJ,CH4,3.9,kg/TJ,4294.501847999999,Gas Oil combustion consumption by public passenger transport,AR-T,SESCO,annual,kg,a3427255-5adc-3b6c-bd3c-bf2500963949 +2012,Tucuman,II.1.1,1101.1543199999999,TJ,N2O,3.9,kg/TJ,4294.501847999999,Gas Oil combustion consumption by public passenger transport,AR-T,SESCO,annual,kg,a3427255-5adc-3b6c-bd3c-bf2500963949 +2013,La Pampa,II.5.1,0.75852,TJ,CO2,74100.0,kg/TJ,56206.331999999995,Diesel Oil combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,441d64c0-2860-3c99-a0fe-6f83e91c3ce3 +2013,La Pampa,II.5.1,0.75852,TJ,CH4,5.0,kg/TJ,3.7925999999999997,Diesel Oil combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,dc4b73da-ee91-32fe-b121-b23dbb5d8c09 +2013,La Pampa,II.5.1,0.75852,TJ,N2O,0.6,kg/TJ,0.45511199999999996,Diesel Oil combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,4a1a1331-086a-3253-ae9b-3ddcc6fc1ec6 +2013,Buenos Aires,II.5.1,212.65035959999997,TJ,CO2,74100.0,kg/TJ,15757391.646359999,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,58433107-68bb-3568-b1d1-e74f159dc514 +2013,Buenos Aires,II.5.1,212.65035959999997,TJ,CH4,3.9,kg/TJ,829.3364024399999,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,05cf5343-fff2-33a6-9994-fcd3e241c44f +2013,Buenos Aires,II.5.1,212.65035959999997,TJ,N2O,3.9,kg/TJ,829.3364024399999,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,05cf5343-fff2-33a6-9994-fcd3e241c44f +2013,Chaco,II.5.1,15.350999999999999,TJ,CO2,74100.0,kg/TJ,1137509.0999999999,Gas Oil combustion consumption by agriculture machines,AR-H,SESCO,annual,kg,b6ac0a7b-eb2b-37dc-9b91-9ace9e42dcc9 +2013,Chaco,II.5.1,15.350999999999999,TJ,CH4,3.9,kg/TJ,59.8689,Gas Oil combustion consumption by agriculture machines,AR-H,SESCO,annual,kg,e970af7c-66f2-385f-9ea0-e9dc22dac0cb +2013,Chaco,II.5.1,15.350999999999999,TJ,N2O,3.9,kg/TJ,59.8689,Gas Oil combustion consumption by agriculture machines,AR-H,SESCO,annual,kg,e970af7c-66f2-385f-9ea0-e9dc22dac0cb +2013,Córdoba,II.5.1,28.997135999999998,TJ,CO2,74100.0,kg/TJ,2148687.7775999997,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,89dbb157-65d4-377a-8a09-79b243e8f926 +2013,Córdoba,II.5.1,28.997135999999998,TJ,CH4,3.9,kg/TJ,113.08883039999999,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,4b446a58-fba1-3fdb-9044-10f11f9d902a +2013,Córdoba,II.5.1,28.997135999999998,TJ,N2O,3.9,kg/TJ,113.08883039999999,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,4b446a58-fba1-3fdb-9044-10f11f9d902a +2013,La Pampa,II.5.1,5.02068,TJ,CO2,74100.0,kg/TJ,372032.388,Gas Oil combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,8200891e-5a69-346b-abb1-ffb3e85ae504 +2013,La Pampa,II.5.1,5.02068,TJ,CH4,3.9,kg/TJ,19.580651999999997,Gas Oil combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,8924b912-60e1-3ea8-b190-4d4586f81a6d +2013,La Pampa,II.5.1,5.02068,TJ,N2O,3.9,kg/TJ,19.580651999999997,Gas Oil combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,8924b912-60e1-3ea8-b190-4d4586f81a6d +2013,Santa Fe,II.5.1,369.1706004,TJ,CO2,74100.0,kg/TJ,27355541.48964,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,249e3848-c14b-3369-85f7-a97a0f0f601f +2013,Santa Fe,II.5.1,369.1706004,TJ,CH4,3.9,kg/TJ,1439.76534156,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,677dc339-3048-3733-8b22-5074227adb80 +2013,Santa Fe,II.5.1,369.1706004,TJ,N2O,3.9,kg/TJ,1439.76534156,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,677dc339-3048-3733-8b22-5074227adb80 +2013,Buenos Aires,II.5.1,0.5771976,TJ,CO2,74100.0,kg/TJ,42770.34216,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,bc051f33-29bc-39f6-beba-1934f6f3dd1b +2013,Buenos Aires,II.5.1,0.5771976,TJ,CH4,3.9,kg/TJ,2.25107064,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,402a14f6-97c9-3e85-95fe-50a0046c4c0e +2013,Buenos Aires,II.5.1,0.5771976,TJ,N2O,3.9,kg/TJ,2.25107064,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,402a14f6-97c9-3e85-95fe-50a0046c4c0e +2013,Santa Fe,II.5.1,6.7725,TJ,CO2,74100.0,kg/TJ,501842.25,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,ec64d929-a1d5-36ca-9f09-ca5d8468fef2 +2013,Santa Fe,II.5.1,6.7725,TJ,CH4,3.9,kg/TJ,26.41275,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,273108b4-6030-3e58-a930-d6ad53f3f93e +2013,Santa Fe,II.5.1,6.7725,TJ,N2O,3.9,kg/TJ,26.41275,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,273108b4-6030-3e58-a930-d6ad53f3f93e +2013,Buenos Aires,II.5.1,5.154141300000001,TJ,CO2,73300.0,kg/TJ,377798.5572900001,Naphtha combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,d46f498c-21dc-3506-a26f-972d1415938b +2013,Buenos Aires,II.5.1,5.154141300000001,TJ,CH4,0.5,kg/TJ,2.5770706500000005,Naphtha combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,b93815a5-426f-37d8-b820-3de1b57771d1 +2013,Buenos Aires,II.5.1,5.154141300000001,TJ,N2O,2.0,kg/TJ,10.308282600000002,Naphtha combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,02308e95-9de0-3534-9136-4f4eb5e49b0a +2013,Córdoba,II.5.1,5.729107999999999,TJ,CO2,73300.0,kg/TJ,419943.61639999994,Naphtha combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,236748fa-ee7d-3a8b-993f-05b8162e19aa +2013,Córdoba,II.5.1,5.729107999999999,TJ,CH4,0.5,kg/TJ,2.8645539999999996,Naphtha combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,be6f53de-553d-3085-b916-5e6ece373d9e +2013,Córdoba,II.5.1,5.729107999999999,TJ,N2O,2.0,kg/TJ,11.458215999999998,Naphtha combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,161a95ed-6906-3e73-a3e6-63fbc1f7fbe7 +2013,Santa Fe,II.5.1,17.564239,TJ,CO2,73300.0,kg/TJ,1287458.7187,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,9e6ab790-dc51-3087-8754-983c6003bc93 +2013,Santa Fe,II.5.1,17.564239,TJ,CH4,0.5,kg/TJ,8.7821195,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,cf54e2c0-833b-343b-bfa6-500fa1a9c7b6 +2013,Santa Fe,II.5.1,17.564239,TJ,N2O,2.0,kg/TJ,35.128478,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,4085891e-4f00-3342-9bb8-c005d7dd117a +2013,Buenos Aires,II.5.1,0.23985499999999998,TJ,CO2,73300.0,kg/TJ,17581.371499999997,Naphtha combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,739d99b5-0cb0-3a7c-b438-5b1051bcc50d +2013,Buenos Aires,II.5.1,0.23985499999999998,TJ,CH4,0.5,kg/TJ,0.11992749999999999,Naphtha combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,5de28142-9c58-3c05-a6f0-0f617f6bc21b +2013,Buenos Aires,II.5.1,0.23985499999999998,TJ,N2O,2.0,kg/TJ,0.47970999999999997,Naphtha combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,b3db598f-8cc0-3f74-846b-835dfc246f3a +2013,Capital Federal,II.5.1,0.02912525,TJ,CO2,73300.0,kg/TJ,2134.8808249999997,Naphtha combustion consumption by agriculture machines,AR-C,SESCO,annual,kg,8022199d-a78b-3a28-b3da-7f159eb98b67 +2013,Capital Federal,II.5.1,0.02912525,TJ,CH4,0.5,kg/TJ,0.014562625,Naphtha combustion consumption by agriculture machines,AR-C,SESCO,annual,kg,e9bb0b6d-f85d-39fa-9875-b22cd981130d +2013,Capital Federal,II.5.1,0.02912525,TJ,N2O,2.0,kg/TJ,0.0582505,Naphtha combustion consumption by agriculture machines,AR-C,SESCO,annual,kg,d3845fea-a86c-32f5-b7eb-038f678c30c1 +2013,Córdoba,II.5.1,2.967349,TJ,CO2,73300.0,kg/TJ,217506.68170000002,Naphtha combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,3bc9fff5-8644-322c-802d-a22a727df19b +2013,Córdoba,II.5.1,2.967349,TJ,CH4,0.5,kg/TJ,1.4836745,Naphtha combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,2323af8d-329e-3aa5-b2d2-6d674a264742 +2013,Córdoba,II.5.1,2.967349,TJ,N2O,2.0,kg/TJ,5.934698,Naphtha combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,340f6b8c-dcc4-397d-ab01-29cd381671a5 +2013,Santa Fe,II.5.1,1.3054964999999998,TJ,CO2,73300.0,kg/TJ,95692.89344999999,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,3afbb743-106b-34b9-ae64-1edecdcd87c1 +2013,Santa Fe,II.5.1,1.3054964999999998,TJ,CH4,0.5,kg/TJ,0.6527482499999999,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,f480669d-6b9d-33e0-9bff-e0d803ecf656 +2013,Santa Fe,II.5.1,1.3054964999999998,TJ,N2O,2.0,kg/TJ,2.6109929999999997,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,f0c9596e-60ea-3c65-9126-41a582dcdd97 +2013,Buenos Aires,II.2.1,27.12612,TJ,CO2,74100.0,kg/TJ,2010045.492,Gas Oil combustion consumption by railway transport,AR-B,SESCO,annual,kg,ce00d195-0c03-35a6-b6b0-63754acfd661 +2013,Buenos Aires,II.2.1,27.12612,TJ,CH4,3.9,kg/TJ,105.791868,Gas Oil combustion consumption by railway transport,AR-B,SESCO,annual,kg,e5e79b07-7136-3739-bb86-7e9bf9eb047d +2013,Buenos Aires,II.2.1,27.12612,TJ,N2O,3.9,kg/TJ,105.791868,Gas Oil combustion consumption by railway transport,AR-B,SESCO,annual,kg,e5e79b07-7136-3739-bb86-7e9bf9eb047d +2013,Capital Federal,II.2.1,0.75852,TJ,CO2,74100.0,kg/TJ,56206.331999999995,Gas Oil combustion consumption by railway transport,AR-C,SESCO,annual,kg,06087d13-9db0-342f-b420-c2eb377c4e63 +2013,Capital Federal,II.2.1,0.75852,TJ,CH4,3.9,kg/TJ,2.9582279999999996,Gas Oil combustion consumption by railway transport,AR-C,SESCO,annual,kg,30883a31-1d68-3863-9f27-ee145973d778 +2013,Capital Federal,II.2.1,0.75852,TJ,N2O,3.9,kg/TJ,2.9582279999999996,Gas Oil combustion consumption by railway transport,AR-C,SESCO,annual,kg,30883a31-1d68-3863-9f27-ee145973d778 +2013,Córdoba,II.2.1,1.072764,TJ,CO2,74100.0,kg/TJ,79491.81240000001,Gas Oil combustion consumption by railway transport,AR-X,SESCO,annual,kg,ea6a50a3-794e-31cb-a522-c911809f08d6 +2013,Córdoba,II.2.1,1.072764,TJ,CH4,3.9,kg/TJ,4.1837796,Gas Oil combustion consumption by railway transport,AR-X,SESCO,annual,kg,6ea9f494-a802-3a59-8d5b-00769a555ea9 +2013,Córdoba,II.2.1,1.072764,TJ,N2O,3.9,kg/TJ,4.1837796,Gas Oil combustion consumption by railway transport,AR-X,SESCO,annual,kg,6ea9f494-a802-3a59-8d5b-00769a555ea9 +2013,Buenos Aires,II.1.1,1617.4546835999997,TJ,CO2,74100.0,kg/TJ,119853392.05475998,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,79c6e7f9-ef9c-3dbe-a6af-4d816dbcfad0 +2013,Buenos Aires,II.1.1,1617.4546835999997,TJ,CH4,3.9,kg/TJ,6308.073266039999,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,6055e75c-c5c3-3134-98ad-77aeb1746450 +2013,Buenos Aires,II.1.1,1617.4546835999997,TJ,N2O,3.9,kg/TJ,6308.073266039999,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,6055e75c-c5c3-3134-98ad-77aeb1746450 +2013,Capital Federal,II.1.1,734.4619127999999,TJ,CO2,74100.0,kg/TJ,54423627.738479994,Gas Oil combustion consumption by freight transport,AR-C,SESCO,annual,kg,d9435cb1-8f12-3a37-b871-3248208382e8 +2013,Capital Federal,II.1.1,734.4619127999999,TJ,CH4,3.9,kg/TJ,2864.4014599199995,Gas Oil combustion consumption by freight transport,AR-C,SESCO,annual,kg,0ced35e3-cfe2-3ce2-b64e-b50b2f9b6cd4 +2013,Capital Federal,II.1.1,734.4619127999999,TJ,N2O,3.9,kg/TJ,2864.4014599199995,Gas Oil combustion consumption by freight transport,AR-C,SESCO,annual,kg,0ced35e3-cfe2-3ce2-b64e-b50b2f9b6cd4 +2013,Chaco,II.1.1,111.525672384,TJ,CO2,74100.0,kg/TJ,8264052.3236544,Gas Oil combustion consumption by freight transport,AR-H,SESCO,annual,kg,811527fa-705b-3e46-b4d1-aab4240b245a +2013,Chaco,II.1.1,111.525672384,TJ,CH4,3.9,kg/TJ,434.9501222976,Gas Oil combustion consumption by freight transport,AR-H,SESCO,annual,kg,a5816ffd-0796-376e-b8b1-ba759ec7bba5 +2013,Chaco,II.1.1,111.525672384,TJ,N2O,3.9,kg/TJ,434.9501222976,Gas Oil combustion consumption by freight transport,AR-H,SESCO,annual,kg,a5816ffd-0796-376e-b8b1-ba759ec7bba5 +2013,Chubut,II.1.1,2.8752495239999996,TJ,CO2,74100.0,kg/TJ,213055.98972839996,Gas Oil combustion consumption by freight transport,AR-U,SESCO,annual,kg,78477da4-5d14-378e-b396-9815ea546479 +2013,Chubut,II.1.1,2.8752495239999996,TJ,CH4,3.9,kg/TJ,11.213473143599998,Gas Oil combustion consumption by freight transport,AR-U,SESCO,annual,kg,6e7a9519-b1c1-3cef-8742-700d084bc3c5 +2013,Chubut,II.1.1,2.8752495239999996,TJ,N2O,3.9,kg/TJ,11.213473143599998,Gas Oil combustion consumption by freight transport,AR-U,SESCO,annual,kg,6e7a9519-b1c1-3cef-8742-700d084bc3c5 +2013,Corrientes,II.1.1,139.498470468,TJ,CO2,74100.0,kg/TJ,10336836.6616788,Gas Oil combustion consumption by freight transport,AR-W,SESCO,annual,kg,24c8891b-dbef-351d-92e4-c4cbad9dff64 +2013,Corrientes,II.1.1,139.498470468,TJ,CH4,3.9,kg/TJ,544.0440348252,Gas Oil combustion consumption by freight transport,AR-W,SESCO,annual,kg,94cbe06a-bbea-3b10-bcbf-978e2027754c +2013,Corrientes,II.1.1,139.498470468,TJ,N2O,3.9,kg/TJ,544.0440348252,Gas Oil combustion consumption by freight transport,AR-W,SESCO,annual,kg,94cbe06a-bbea-3b10-bcbf-978e2027754c +2013,Córdoba,II.1.1,223.13758849199996,TJ,CO2,74100.0,kg/TJ,16534495.307257198,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,6f13514a-96e1-3212-9467-5590ae0b80cd +2013,Córdoba,II.1.1,223.13758849199996,TJ,CH4,3.9,kg/TJ,870.2365951187999,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,24811004-b3d4-3ce0-ab66-4d1255684adf +2013,Córdoba,II.1.1,223.13758849199996,TJ,N2O,3.9,kg/TJ,870.2365951187999,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,24811004-b3d4-3ce0-ab66-4d1255684adf +2013,Entre Rios,II.1.1,61.537123871999995,TJ,CO2,74100.0,kg/TJ,4559900.8789152,Gas Oil combustion consumption by freight transport,AR-E,SESCO,annual,kg,23b39f9f-f89d-3d75-aa1a-a0b011bd45a8 +2013,Entre Rios,II.1.1,61.537123871999995,TJ,CH4,3.9,kg/TJ,239.99478310079996,Gas Oil combustion consumption by freight transport,AR-E,SESCO,annual,kg,2f4c948a-3539-33de-b66b-2ae895d37140 +2013,Entre Rios,II.1.1,61.537123871999995,TJ,N2O,3.9,kg/TJ,239.99478310079996,Gas Oil combustion consumption by freight transport,AR-E,SESCO,annual,kg,2f4c948a-3539-33de-b66b-2ae895d37140 +2013,La Pampa,II.1.1,8.211932567999998,TJ,CO2,74100.0,kg/TJ,608504.2032887999,Gas Oil combustion consumption by freight transport,AR-L,SESCO,annual,kg,4e8f3b43-e25c-34d7-91fc-ec95a3d67554 +2013,La Pampa,II.1.1,8.211932567999998,TJ,CH4,3.9,kg/TJ,32.02653701519999,Gas Oil combustion consumption by freight transport,AR-L,SESCO,annual,kg,81e0cba8-8e30-32c7-b86c-87706bc89b5c +2013,La Pampa,II.1.1,8.211932567999998,TJ,N2O,3.9,kg/TJ,32.02653701519999,Gas Oil combustion consumption by freight transport,AR-L,SESCO,annual,kg,81e0cba8-8e30-32c7-b86c-87706bc89b5c +2013,Mendoza,II.1.1,59.668238951999996,TJ,CO2,74100.0,kg/TJ,4421416.5063432,Gas Oil combustion consumption by freight transport,AR-M,SESCO,annual,kg,00229041-212d-3226-994b-4637cc53c6cb +2013,Mendoza,II.1.1,59.668238951999996,TJ,CH4,3.9,kg/TJ,232.70613191279998,Gas Oil combustion consumption by freight transport,AR-M,SESCO,annual,kg,705eac14-7ecf-39b8-8ed2-de0a11b392dd +2013,Mendoza,II.1.1,59.668238951999996,TJ,N2O,3.9,kg/TJ,232.70613191279998,Gas Oil combustion consumption by freight transport,AR-M,SESCO,annual,kg,705eac14-7ecf-39b8-8ed2-de0a11b392dd +2013,Misiones,II.1.1,42.809875500000004,TJ,CO2,74100.0,kg/TJ,3172211.77455,Gas Oil combustion consumption by freight transport,AR-N,SESCO,annual,kg,5e13c4a6-2814-3b92-abf4-c89bc3b8e8a8 +2013,Misiones,II.1.1,42.809875500000004,TJ,CH4,3.9,kg/TJ,166.95851445000002,Gas Oil combustion consumption by freight transport,AR-N,SESCO,annual,kg,067a95cc-de58-36e8-b78a-808569f3bf61 +2013,Misiones,II.1.1,42.809875500000004,TJ,N2O,3.9,kg/TJ,166.95851445000002,Gas Oil combustion consumption by freight transport,AR-N,SESCO,annual,kg,067a95cc-de58-36e8-b78a-808569f3bf61 +2013,Rio Negro,II.1.1,0.025283999999999997,TJ,CO2,74100.0,kg/TJ,1873.5443999999998,Gas Oil combustion consumption by freight transport,AR-R,SESCO,annual,kg,c1af3bf5-dc76-3da0-92a7-58d9d45c9382 +2013,Rio Negro,II.1.1,0.025283999999999997,TJ,CH4,3.9,kg/TJ,0.09860759999999999,Gas Oil combustion consumption by freight transport,AR-R,SESCO,annual,kg,d142ea21-3ccb-3a59-89e1-66b1d123a85a +2013,Rio Negro,II.1.1,0.025283999999999997,TJ,N2O,3.9,kg/TJ,0.09860759999999999,Gas Oil combustion consumption by freight transport,AR-R,SESCO,annual,kg,d142ea21-3ccb-3a59-89e1-66b1d123a85a +2013,Salta,II.1.1,1.0175004,TJ,CO2,74100.0,kg/TJ,75396.77964000001,Gas Oil combustion consumption by freight transport,AR-A,SESCO,annual,kg,fa296bdd-5723-331a-85b0-adffba62fe1c +2013,Salta,II.1.1,1.0175004,TJ,CH4,3.9,kg/TJ,3.96825156,Gas Oil combustion consumption by freight transport,AR-A,SESCO,annual,kg,e972f54f-c096-3c3a-8078-d2e5f47cdf53 +2013,Salta,II.1.1,1.0175004,TJ,N2O,3.9,kg/TJ,3.96825156,Gas Oil combustion consumption by freight transport,AR-A,SESCO,annual,kg,e972f54f-c096-3c3a-8078-d2e5f47cdf53 +2013,San Juan,II.1.1,3.0208203479999995,TJ,CO2,74100.0,kg/TJ,223842.78778679998,Gas Oil combustion consumption by freight transport,AR-J,SESCO,annual,kg,a454299f-b6f1-32cd-94dc-cc69e335c1ae +2013,San Juan,II.1.1,3.0208203479999995,TJ,CH4,3.9,kg/TJ,11.781199357199998,Gas Oil combustion consumption by freight transport,AR-J,SESCO,annual,kg,bc497df9-c31a-3814-8274-820510f0c46c +2013,San Juan,II.1.1,3.0208203479999995,TJ,N2O,3.9,kg/TJ,11.781199357199998,Gas Oil combustion consumption by freight transport,AR-J,SESCO,annual,kg,bc497df9-c31a-3814-8274-820510f0c46c +2013,San Luis,II.1.1,56.784613199999995,TJ,CO2,74100.0,kg/TJ,4207739.8381199995,Gas Oil combustion consumption by freight transport,AR-D,SESCO,annual,kg,e3bbada2-aa0f-32ea-b69e-315663f464d2 +2013,San Luis,II.1.1,56.784613199999995,TJ,CH4,3.9,kg/TJ,221.45999147999999,Gas Oil combustion consumption by freight transport,AR-D,SESCO,annual,kg,810ce514-9ba6-3ceb-9887-91b87aa40251 +2013,San Luis,II.1.1,56.784613199999995,TJ,N2O,3.9,kg/TJ,221.45999147999999,Gas Oil combustion consumption by freight transport,AR-D,SESCO,annual,kg,810ce514-9ba6-3ceb-9887-91b87aa40251 +2013,Santa Fe,II.1.1,417.39807135599995,TJ,CO2,74100.0,kg/TJ,30929197.087479595,Gas Oil combustion consumption by freight transport,AR-S,SESCO,annual,kg,f7cf9bdc-db96-3557-a7e7-76174a691de5 +2013,Santa Fe,II.1.1,417.39807135599995,TJ,CH4,3.9,kg/TJ,1627.8524782883997,Gas Oil combustion consumption by freight transport,AR-S,SESCO,annual,kg,032c0863-dc94-3ef1-87e0-7db8729c2af6 +2013,Santa Fe,II.1.1,417.39807135599995,TJ,N2O,3.9,kg/TJ,1627.8524782883997,Gas Oil combustion consumption by freight transport,AR-S,SESCO,annual,kg,032c0863-dc94-3ef1-87e0-7db8729c2af6 +2013,Santiago del Estero,II.1.1,2.7060273239999995,TJ,CO2,74100.0,kg/TJ,200516.62470839996,Gas Oil combustion consumption by freight transport,AR-G,SESCO,annual,kg,2c2ca660-03bd-35ee-8b43-4a238cdfb8a5 +2013,Santiago del Estero,II.1.1,2.7060273239999995,TJ,CH4,3.9,kg/TJ,10.553506563599997,Gas Oil combustion consumption by freight transport,AR-G,SESCO,annual,kg,69c10dd0-82bc-380f-abeb-f6f6855ef457 +2013,Santiago del Estero,II.1.1,2.7060273239999995,TJ,N2O,3.9,kg/TJ,10.553506563599997,Gas Oil combustion consumption by freight transport,AR-G,SESCO,annual,kg,69c10dd0-82bc-380f-abeb-f6f6855ef457 +2013,Tierra del Fuego,II.1.1,13.586812512,TJ,CO2,74100.0,kg/TJ,1006782.8071392,Gas Oil combustion consumption by freight transport,AR-V,SESCO,annual,kg,407fc896-4b29-33f4-bf8a-1806d92d9422 +2013,Tierra del Fuego,II.1.1,13.586812512,TJ,CH4,3.9,kg/TJ,52.988568796799996,Gas Oil combustion consumption by freight transport,AR-V,SESCO,annual,kg,23656fbd-24c1-3217-ba7c-41418ff3d6e9 +2013,Tierra del Fuego,II.1.1,13.586812512,TJ,N2O,3.9,kg/TJ,52.988568796799996,Gas Oil combustion consumption by freight transport,AR-V,SESCO,annual,kg,23656fbd-24c1-3217-ba7c-41418ff3d6e9 +2013,Tucuman,II.1.1,68.819522688,TJ,CO2,74100.0,kg/TJ,5099526.6311808005,Gas Oil combustion consumption by freight transport,AR-T,SESCO,annual,kg,34a445c7-2097-34fd-8fab-00fdbd9adc9e +2013,Tucuman,II.1.1,68.819522688,TJ,CH4,3.9,kg/TJ,268.3961384832,Gas Oil combustion consumption by freight transport,AR-T,SESCO,annual,kg,97427e90-8948-3dca-bf46-8e031ec992fc +2013,Tucuman,II.1.1,68.819522688,TJ,N2O,3.9,kg/TJ,268.3961384832,Gas Oil combustion consumption by freight transport,AR-T,SESCO,annual,kg,97427e90-8948-3dca-bf46-8e031ec992fc +2013,Buenos Aires,II.1.1,30.625425599999996,TJ,CO2,74100.0,kg/TJ,2269344.0369599997,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,bb828320-8e33-34c2-92be-b4f237d0a4a4 +2013,Buenos Aires,II.1.1,30.625425599999996,TJ,CH4,3.9,kg/TJ,119.43915983999999,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,b4fe1b65-dc1c-3769-8c79-11e997b3e459 +2013,Buenos Aires,II.1.1,30.625425599999996,TJ,N2O,3.9,kg/TJ,119.43915983999999,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,b4fe1b65-dc1c-3769-8c79-11e997b3e459 +2013,Capital Federal,II.1.1,31.5988596,TJ,CO2,74100.0,kg/TJ,2341475.49636,Gas Oil combustion consumption by freight transport,AR-C,SESCO,annual,kg,9cb3d895-5cc5-3f1a-bfcb-ed4fc95a5589 +2013,Capital Federal,II.1.1,31.5988596,TJ,CH4,3.9,kg/TJ,123.23555244,Gas Oil combustion consumption by freight transport,AR-C,SESCO,annual,kg,2d7b4d34-3668-3994-858f-0643f25d0d74 +2013,Capital Federal,II.1.1,31.5988596,TJ,N2O,3.9,kg/TJ,123.23555244,Gas Oil combustion consumption by freight transport,AR-C,SESCO,annual,kg,2d7b4d34-3668-3994-858f-0643f25d0d74 +2013,Chaco,II.1.1,0.7901394479999999,TJ,CO2,74100.0,kg/TJ,58549.333096799994,Gas Oil combustion consumption by freight transport,AR-H,SESCO,annual,kg,7319f218-2a71-3825-8301-47b5139528ca +2013,Chaco,II.1.1,0.7901394479999999,TJ,CH4,3.9,kg/TJ,3.0815438471999994,Gas Oil combustion consumption by freight transport,AR-H,SESCO,annual,kg,8ccada2b-6a40-33da-b73b-470b511a3cb8 +2013,Chaco,II.1.1,0.7901394479999999,TJ,N2O,3.9,kg/TJ,3.0815438471999994,Gas Oil combustion consumption by freight transport,AR-H,SESCO,annual,kg,8ccada2b-6a40-33da-b73b-470b511a3cb8 +2013,Chubut,II.1.1,0.082126044,TJ,CO2,74100.0,kg/TJ,6085.539860399999,Gas Oil combustion consumption by freight transport,AR-U,SESCO,annual,kg,afff09b1-df9c-3352-ad70-6a9f7d3282f8 +2013,Chubut,II.1.1,0.082126044,TJ,CH4,3.9,kg/TJ,0.3202915716,Gas Oil combustion consumption by freight transport,AR-U,SESCO,annual,kg,38bf3cae-168d-34a7-9627-9f094e139e15 +2013,Chubut,II.1.1,0.082126044,TJ,N2O,3.9,kg/TJ,0.3202915716,Gas Oil combustion consumption by freight transport,AR-U,SESCO,annual,kg,38bf3cae-168d-34a7-9627-9f094e139e15 +2013,Corrientes,II.1.1,3.336808944,TJ,CO2,74100.0,kg/TJ,247257.5427504,Gas Oil combustion consumption by freight transport,AR-W,SESCO,annual,kg,4e082d67-8bf7-3b85-a73a-4bb3fad6fb07 +2013,Corrientes,II.1.1,3.336808944,TJ,CH4,3.9,kg/TJ,13.0135548816,Gas Oil combustion consumption by freight transport,AR-W,SESCO,annual,kg,c43e7817-9f2e-3bb2-a81e-76c23d4120c5 +2013,Corrientes,II.1.1,3.336808944,TJ,N2O,3.9,kg/TJ,13.0135548816,Gas Oil combustion consumption by freight transport,AR-W,SESCO,annual,kg,c43e7817-9f2e-3bb2-a81e-76c23d4120c5 +2013,Córdoba,II.1.1,1.014491604,TJ,CO2,74100.0,kg/TJ,75173.8278564,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,ba09887f-7d56-33f1-bbf9-e1b734588c2f +2013,Córdoba,II.1.1,1.014491604,TJ,CH4,3.9,kg/TJ,3.9565172556,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,121209fe-8f46-3132-99f0-6030425937d0 +2013,Córdoba,II.1.1,1.014491604,TJ,N2O,3.9,kg/TJ,3.9565172556,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,121209fe-8f46-3132-99f0-6030425937d0 +2013,Entre Rios,II.1.1,1.165079496,TJ,CO2,74100.0,kg/TJ,86332.3906536,Gas Oil combustion consumption by freight transport,AR-E,SESCO,annual,kg,c7b1dfe5-1867-3017-88ce-695e5c60eb95 +2013,Entre Rios,II.1.1,1.165079496,TJ,CH4,3.9,kg/TJ,4.5438100344,Gas Oil combustion consumption by freight transport,AR-E,SESCO,annual,kg,047565dd-8700-3008-8469-ffd7aa74f384 +2013,Entre Rios,II.1.1,1.165079496,TJ,N2O,3.9,kg/TJ,4.5438100344,Gas Oil combustion consumption by freight transport,AR-E,SESCO,annual,kg,047565dd-8700-3008-8469-ffd7aa74f384 +2013,Mendoza,II.1.1,0.09319682399999998,TJ,CO2,74100.0,kg/TJ,6905.884658399998,Gas Oil combustion consumption by freight transport,AR-M,SESCO,annual,kg,c4e4e1e2-75a8-3756-8c4f-109cd4215f62 +2013,Mendoza,II.1.1,0.09319682399999998,TJ,CH4,3.9,kg/TJ,0.3634676135999999,Gas Oil combustion consumption by freight transport,AR-M,SESCO,annual,kg,1307f599-bf9a-3c77-a1ad-1ef3262c130f +2013,Mendoza,II.1.1,0.09319682399999998,TJ,N2O,3.9,kg/TJ,0.3634676135999999,Gas Oil combustion consumption by freight transport,AR-M,SESCO,annual,kg,1307f599-bf9a-3c77-a1ad-1ef3262c130f +2013,Misiones,II.1.1,0.146816964,TJ,CO2,74100.0,kg/TJ,10879.1370324,Gas Oil combustion consumption by freight transport,AR-N,SESCO,annual,kg,067b78dd-2263-30b2-953b-6fa1739fde5a +2013,Misiones,II.1.1,0.146816964,TJ,CH4,3.9,kg/TJ,0.5725861595999999,Gas Oil combustion consumption by freight transport,AR-N,SESCO,annual,kg,1501406c-82a0-362b-b9ad-399094edd024 +2013,Misiones,II.1.1,0.146816964,TJ,N2O,3.9,kg/TJ,0.5725861595999999,Gas Oil combustion consumption by freight transport,AR-N,SESCO,annual,kg,1501406c-82a0-362b-b9ad-399094edd024 +2013,San Juan,II.1.1,0.0061404,TJ,CO2,74100.0,kg/TJ,455.00363999999996,Gas Oil combustion consumption by freight transport,AR-J,SESCO,annual,kg,e32708e1-fc6d-3cb2-9d4f-bbe79999b7bd +2013,San Juan,II.1.1,0.0061404,TJ,CH4,3.9,kg/TJ,0.02394756,Gas Oil combustion consumption by freight transport,AR-J,SESCO,annual,kg,4cf2fb4c-c5a3-37a1-ab0a-7edc9512820d +2013,San Juan,II.1.1,0.0061404,TJ,N2O,3.9,kg/TJ,0.02394756,Gas Oil combustion consumption by freight transport,AR-J,SESCO,annual,kg,4cf2fb4c-c5a3-37a1-ab0a-7edc9512820d +2013,San Luis,II.1.1,0.2206932,TJ,CO2,74100.0,kg/TJ,16353.36612,Gas Oil combustion consumption by freight transport,AR-D,SESCO,annual,kg,6b0b69cf-1e6b-3e6c-8287-773ac7e11719 +2013,San Luis,II.1.1,0.2206932,TJ,CH4,3.9,kg/TJ,0.86070348,Gas Oil combustion consumption by freight transport,AR-D,SESCO,annual,kg,1777bd85-9327-31f5-8a7a-ae39cb7c2bbb +2013,San Luis,II.1.1,0.2206932,TJ,N2O,3.9,kg/TJ,0.86070348,Gas Oil combustion consumption by freight transport,AR-D,SESCO,annual,kg,1777bd85-9327-31f5-8a7a-ae39cb7c2bbb +2013,Santa Fe,II.1.1,2.104383708,TJ,CO2,74100.0,kg/TJ,155934.83276279998,Gas Oil combustion consumption by freight transport,AR-S,SESCO,annual,kg,0f527012-d4fc-38e9-b4fe-3ebe955a70d4 +2013,Santa Fe,II.1.1,2.104383708,TJ,CH4,3.9,kg/TJ,8.207096461199999,Gas Oil combustion consumption by freight transport,AR-S,SESCO,annual,kg,d07433fc-5c9d-353b-bbf7-134994c25a81 +2013,Santa Fe,II.1.1,2.104383708,TJ,N2O,3.9,kg/TJ,8.207096461199999,Gas Oil combustion consumption by freight transport,AR-S,SESCO,annual,kg,d07433fc-5c9d-353b-bbf7-134994c25a81 +2013,Santiago del Estero,II.1.1,0.014447999999999999,TJ,CO2,74100.0,kg/TJ,1070.5968,Gas Oil combustion consumption by freight transport,AR-G,SESCO,annual,kg,e4c3aba3-2279-3ab8-be47-e57bd36fb4c2 +2013,Santiago del Estero,II.1.1,0.014447999999999999,TJ,CH4,3.9,kg/TJ,0.05634719999999999,Gas Oil combustion consumption by freight transport,AR-G,SESCO,annual,kg,3970216c-b6d5-3e5e-90ba-b0be5495c884 +2013,Santiago del Estero,II.1.1,0.014447999999999999,TJ,N2O,3.9,kg/TJ,0.05634719999999999,Gas Oil combustion consumption by freight transport,AR-G,SESCO,annual,kg,3970216c-b6d5-3e5e-90ba-b0be5495c884 +2013,Tierra del Fuego,II.1.1,0.23538320399999998,TJ,CO2,74100.0,kg/TJ,17441.8954164,Gas Oil combustion consumption by freight transport,AR-V,SESCO,annual,kg,2c0ba49a-140a-3f14-80c5-86648ec3e47f +2013,Tierra del Fuego,II.1.1,0.23538320399999998,TJ,CH4,3.9,kg/TJ,0.9179944955999999,Gas Oil combustion consumption by freight transport,AR-V,SESCO,annual,kg,8d6c6a86-0915-3a0a-b551-2f1994b88499 +2013,Tierra del Fuego,II.1.1,0.23538320399999998,TJ,N2O,3.9,kg/TJ,0.9179944955999999,Gas Oil combustion consumption by freight transport,AR-V,SESCO,annual,kg,8d6c6a86-0915-3a0a-b551-2f1994b88499 +2013,Tucuman,II.1.1,0.25348293599999994,TJ,CO2,74100.0,kg/TJ,18783.085557599996,Gas Oil combustion consumption by freight transport,AR-T,SESCO,annual,kg,be6ac401-8a98-30f5-b935-6a2bd5e713b7 +2013,Tucuman,II.1.1,0.25348293599999994,TJ,CH4,3.9,kg/TJ,0.9885834503999997,Gas Oil combustion consumption by freight transport,AR-T,SESCO,annual,kg,d141cf16-8a7c-3c27-8018-ef58ad10c69b +2013,Tucuman,II.1.1,0.25348293599999994,TJ,N2O,3.9,kg/TJ,0.9885834503999997,Gas Oil combustion consumption by freight transport,AR-T,SESCO,annual,kg,d141cf16-8a7c-3c27-8018-ef58ad10c69b +2013,Buenos Aires,II.1.1,5.361081340999999,TJ,CO2,73300.0,kg/TJ,392967.26229529997,Naphtha combustion consumption by freight transport,AR-B,SESCO,annual,kg,28f76c14-95ae-3e65-84fa-e52dbdeccfde +2013,Buenos Aires,II.1.1,5.361081340999999,TJ,CH4,0.5,kg/TJ,2.6805406704999997,Naphtha combustion consumption by freight transport,AR-B,SESCO,annual,kg,d4860f3a-cfac-38ec-a092-aaf07627a89f +2013,Buenos Aires,II.1.1,5.361081340999999,TJ,N2O,2.0,kg/TJ,10.722162681999999,Naphtha combustion consumption by freight transport,AR-B,SESCO,annual,kg,ff8b7a71-f2d4-31eb-bef1-fac2ba836df0 +2013,Capital Federal,II.1.1,13.534551645999999,TJ,CO2,73300.0,kg/TJ,992082.6356518,Naphtha combustion consumption by freight transport,AR-C,SESCO,annual,kg,fad1263f-24a9-31f4-b4df-21bdfbf34cac +2013,Capital Federal,II.1.1,13.534551645999999,TJ,CH4,0.5,kg/TJ,6.767275822999999,Naphtha combustion consumption by freight transport,AR-C,SESCO,annual,kg,9fb5e52b-d78f-314e-a3c7-e69a1a9b13bc +2013,Capital Federal,II.1.1,13.534551645999999,TJ,N2O,2.0,kg/TJ,27.069103291999998,Naphtha combustion consumption by freight transport,AR-C,SESCO,annual,kg,abdfa405-5790-30dd-b0b4-8cf6b741c377 +2013,Chaco,II.1.1,0.257830419,TJ,CO2,73300.0,kg/TJ,18898.9697127,Naphtha combustion consumption by freight transport,AR-H,SESCO,annual,kg,6ac89981-bb0a-3e22-8478-cfca7acf0ac9 +2013,Chaco,II.1.1,0.257830419,TJ,CH4,0.5,kg/TJ,0.1289152095,Naphtha combustion consumption by freight transport,AR-H,SESCO,annual,kg,ebfdd134-e7e2-3e55-a279-0cae2104aa30 +2013,Chaco,II.1.1,0.257830419,TJ,N2O,2.0,kg/TJ,0.515660838,Naphtha combustion consumption by freight transport,AR-H,SESCO,annual,kg,8b632e88-deae-335b-a0fd-e7382071ac07 +2013,Corrientes,II.1.1,0.0180816405,TJ,CO2,73300.0,kg/TJ,1325.38424865,Naphtha combustion consumption by freight transport,AR-W,SESCO,annual,kg,99a07a97-7547-3d3b-a85f-25d7658cca7a +2013,Corrientes,II.1.1,0.0180816405,TJ,CH4,0.5,kg/TJ,0.00904082025,Naphtha combustion consumption by freight transport,AR-W,SESCO,annual,kg,e4d76513-766e-3644-932f-6c88c3fd8b08 +2013,Corrientes,II.1.1,0.0180816405,TJ,N2O,2.0,kg/TJ,0.036163281,Naphtha combustion consumption by freight transport,AR-W,SESCO,annual,kg,24a66d73-6e24-3d15-9208-04b3796eb3b2 +2013,Córdoba,II.1.1,0.46625070799999996,TJ,CO2,73300.0,kg/TJ,34176.1768964,Naphtha combustion consumption by freight transport,AR-X,SESCO,annual,kg,48a2c60c-8aa8-3274-8801-43b54e213f9e +2013,Córdoba,II.1.1,0.46625070799999996,TJ,CH4,0.5,kg/TJ,0.23312535399999998,Naphtha combustion consumption by freight transport,AR-X,SESCO,annual,kg,f1f3bc20-f6c6-3856-a412-c8641b1a7f65 +2013,Córdoba,II.1.1,0.46625070799999996,TJ,N2O,2.0,kg/TJ,0.9325014159999999,Naphtha combustion consumption by freight transport,AR-X,SESCO,annual,kg,c82ce4f0-4753-3501-b67e-63e78fadbb41 +2013,Entre Rios,II.1.1,0.00171325,TJ,CO2,73300.0,kg/TJ,125.58122499999999,Naphtha combustion consumption by freight transport,AR-E,SESCO,annual,kg,6cc1fe0a-e295-31a2-8ea0-d7195472fa06 +2013,Entre Rios,II.1.1,0.00171325,TJ,CH4,0.5,kg/TJ,0.000856625,Naphtha combustion consumption by freight transport,AR-E,SESCO,annual,kg,d2564eb1-7d14-30e7-bf2d-ee3ea3158410 +2013,Entre Rios,II.1.1,0.00171325,TJ,N2O,2.0,kg/TJ,0.0034265,Naphtha combustion consumption by freight transport,AR-E,SESCO,annual,kg,099820e1-9187-36ed-80af-8e6598cd3aca +2013,Misiones,II.1.1,0.00651035,TJ,CO2,73300.0,kg/TJ,477.20865499999996,Naphtha combustion consumption by freight transport,AR-N,SESCO,annual,kg,31ad8325-73ba-3a44-8141-480001477844 +2013,Misiones,II.1.1,0.00651035,TJ,CH4,0.5,kg/TJ,0.003255175,Naphtha combustion consumption by freight transport,AR-N,SESCO,annual,kg,08c6394d-0c17-37ef-b0dd-16a4a77a720d +2013,Misiones,II.1.1,0.00651035,TJ,N2O,2.0,kg/TJ,0.0130207,Naphtha combustion consumption by freight transport,AR-N,SESCO,annual,kg,781a4a0b-b5b1-38ca-88c3-0df0fe51f618 +2013,San Luis,II.1.1,0.105543053,TJ,CO2,73300.0,kg/TJ,7736.3057849,Naphtha combustion consumption by freight transport,AR-D,SESCO,annual,kg,1dd13129-1b6b-3ff5-a16e-6cea56283927 +2013,San Luis,II.1.1,0.105543053,TJ,CH4,0.5,kg/TJ,0.0527715265,Naphtha combustion consumption by freight transport,AR-D,SESCO,annual,kg,46711cdc-7054-3c1f-843f-88c2e52c465f +2013,San Luis,II.1.1,0.105543053,TJ,N2O,2.0,kg/TJ,0.211086106,Naphtha combustion consumption by freight transport,AR-D,SESCO,annual,kg,180bb8e7-6e2f-37c2-b437-05be36731488 +2013,Santa Fe,II.1.1,0.9999623479999998,TJ,CO2,73300.0,kg/TJ,73297.24010839999,Naphtha combustion consumption by freight transport,AR-S,SESCO,annual,kg,e06f7b98-d407-35b5-acc2-77c212ae3b46 +2013,Santa Fe,II.1.1,0.9999623479999998,TJ,CH4,0.5,kg/TJ,0.4999811739999999,Naphtha combustion consumption by freight transport,AR-S,SESCO,annual,kg,121c5465-5e2c-3179-8040-e57db6f068f3 +2013,Santa Fe,II.1.1,0.9999623479999998,TJ,N2O,2.0,kg/TJ,1.9999246959999997,Naphtha combustion consumption by freight transport,AR-S,SESCO,annual,kg,0908fb97-a1fd-3669-8324-c97f1859ca9f +2013,Tierra del Fuego,II.1.1,0.030166905999999997,TJ,CO2,73300.0,kg/TJ,2211.2342098,Naphtha combustion consumption by freight transport,AR-V,SESCO,annual,kg,663aac85-bfa5-3cf4-8102-57b2aef2a043 +2013,Tierra del Fuego,II.1.1,0.030166905999999997,TJ,CH4,0.5,kg/TJ,0.015083452999999998,Naphtha combustion consumption by freight transport,AR-V,SESCO,annual,kg,4d049a0b-f6c2-3cd4-85e5-38deaf554615 +2013,Tierra del Fuego,II.1.1,0.030166905999999997,TJ,N2O,2.0,kg/TJ,0.060333811999999994,Naphtha combustion consumption by freight transport,AR-V,SESCO,annual,kg,e8e1b009-c1bc-33fd-807a-965fe1887e0b +2013,Tucuman,II.1.1,0.0544779235,TJ,CO2,73300.0,kg/TJ,3993.2317925499997,Naphtha combustion consumption by freight transport,AR-T,SESCO,annual,kg,0c6372a9-2771-3e74-a2c3-836d59056b47 +2013,Tucuman,II.1.1,0.0544779235,TJ,CH4,0.5,kg/TJ,0.02723896175,Naphtha combustion consumption by freight transport,AR-T,SESCO,annual,kg,6b3acab6-d1e7-381a-8b4a-dd1be6e302b9 +2013,Tucuman,II.1.1,0.0544779235,TJ,N2O,2.0,kg/TJ,0.108955847,Naphtha combustion consumption by freight transport,AR-T,SESCO,annual,kg,e0d93d50-4611-3d9a-bde7-509dedbdab28 +2013,Buenos Aires,II.1.1,26.24664735,TJ,CO2,73300.0,kg/TJ,1923879.250755,Naphtha combustion consumption by freight transport,AR-B,SESCO,annual,kg,295dbbf2-cf31-3b78-9fc1-bfaee8663f92 +2013,Buenos Aires,II.1.1,26.24664735,TJ,CH4,0.5,kg/TJ,13.123323675,Naphtha combustion consumption by freight transport,AR-B,SESCO,annual,kg,2fde78b0-e8b5-3ae0-844b-97ab0bea2f7b +2013,Buenos Aires,II.1.1,26.24664735,TJ,N2O,2.0,kg/TJ,52.4932947,Naphtha combustion consumption by freight transport,AR-B,SESCO,annual,kg,c18b0cec-3d79-3c4a-8961-94ebbe665f44 +2013,Capital Federal,II.1.1,8.5169084,TJ,CO2,73300.0,kg/TJ,624289.38572,Naphtha combustion consumption by freight transport,AR-C,SESCO,annual,kg,5210b094-cc2a-3220-843f-5183d299696c +2013,Capital Federal,II.1.1,8.5169084,TJ,CH4,0.5,kg/TJ,4.2584542,Naphtha combustion consumption by freight transport,AR-C,SESCO,annual,kg,4d206eb4-a4c5-3125-9261-a4ba500efa3d +2013,Capital Federal,II.1.1,8.5169084,TJ,N2O,2.0,kg/TJ,17.0338168,Naphtha combustion consumption by freight transport,AR-C,SESCO,annual,kg,e608117e-1f2d-380c-b2dc-45bf979103f8 +2013,Chaco,II.1.1,0.063177807,TJ,CO2,73300.0,kg/TJ,4630.9332531,Naphtha combustion consumption by freight transport,AR-H,SESCO,annual,kg,5b79215e-7ea9-3416-9fc9-656609799d70 +2013,Chaco,II.1.1,0.063177807,TJ,CH4,0.5,kg/TJ,0.0315889035,Naphtha combustion consumption by freight transport,AR-H,SESCO,annual,kg,031d341e-5778-334b-a894-d29684503982 +2013,Chaco,II.1.1,0.063177807,TJ,N2O,2.0,kg/TJ,0.126355614,Naphtha combustion consumption by freight transport,AR-H,SESCO,annual,kg,8a35212e-d559-3dfb-94cc-48c0fca0916e +2013,Corrientes,II.1.1,0.0047971,TJ,CO2,73300.0,kg/TJ,351.62743,Naphtha combustion consumption by freight transport,AR-W,SESCO,annual,kg,bbcfa918-3238-3ae4-aa02-3d31397db35e +2013,Corrientes,II.1.1,0.0047971,TJ,CH4,0.5,kg/TJ,0.00239855,Naphtha combustion consumption by freight transport,AR-W,SESCO,annual,kg,2f8cbfce-862f-3a18-ac49-d5be75c38c41 +2013,Corrientes,II.1.1,0.0047971,TJ,N2O,2.0,kg/TJ,0.0095942,Naphtha combustion consumption by freight transport,AR-W,SESCO,annual,kg,f6103d01-a3ce-3a14-9481-7f579716c2f0 +2013,Córdoba,II.1.1,0.34467163500000003,TJ,CO2,73300.0,kg/TJ,25264.430845500003,Naphtha combustion consumption by freight transport,AR-X,SESCO,annual,kg,68ceadef-0091-3f68-af93-03266213bca3 +2013,Córdoba,II.1.1,0.34467163500000003,TJ,CH4,0.5,kg/TJ,0.17233581750000002,Naphtha combustion consumption by freight transport,AR-X,SESCO,annual,kg,7196dc3f-3447-3098-84d5-4a8a31df89c1 +2013,Córdoba,II.1.1,0.34467163500000003,TJ,N2O,2.0,kg/TJ,0.6893432700000001,Naphtha combustion consumption by freight transport,AR-X,SESCO,annual,kg,3d6529a9-8817-3887-ad5e-39294a279954 +2013,Entre Rios,II.1.1,0.027412,TJ,CO2,73300.0,kg/TJ,2009.2995999999998,Naphtha combustion consumption by freight transport,AR-E,SESCO,annual,kg,025f364e-1ba4-3622-b970-8a360a9c4acc +2013,Entre Rios,II.1.1,0.027412,TJ,CH4,0.5,kg/TJ,0.013706,Naphtha combustion consumption by freight transport,AR-E,SESCO,annual,kg,498037c0-019a-36af-96a2-53746b56578c +2013,Entre Rios,II.1.1,0.027412,TJ,N2O,2.0,kg/TJ,0.054824,Naphtha combustion consumption by freight transport,AR-E,SESCO,annual,kg,e70db586-a130-36a4-a319-a413292aaa63 +2013,Mendoza,II.1.1,0.005633166,TJ,CO2,73300.0,kg/TJ,412.9110678,Naphtha combustion consumption by freight transport,AR-M,SESCO,annual,kg,8e6794ab-b7aa-33c7-8968-a02e47de1761 +2013,Mendoza,II.1.1,0.005633166,TJ,CH4,0.5,kg/TJ,0.002816583,Naphtha combustion consumption by freight transport,AR-M,SESCO,annual,kg,930cfbab-be8f-3998-86bc-79d5baddb8a6 +2013,Mendoza,II.1.1,0.005633166,TJ,N2O,2.0,kg/TJ,0.011266332,Naphtha combustion consumption by freight transport,AR-M,SESCO,annual,kg,437088c6-3055-37d2-a642-a37272a3eca8 +2013,Misiones,II.1.1,0.004111799999999999,TJ,CO2,73300.0,kg/TJ,301.3949399999999,Naphtha combustion consumption by freight transport,AR-N,SESCO,annual,kg,38fb324a-060c-323f-8909-92f67696738a +2013,Misiones,II.1.1,0.004111799999999999,TJ,CH4,0.5,kg/TJ,0.0020558999999999994,Naphtha combustion consumption by freight transport,AR-N,SESCO,annual,kg,9ddd844d-221a-3839-ab5a-0fcbefea97b9 +2013,Misiones,II.1.1,0.004111799999999999,TJ,N2O,2.0,kg/TJ,0.008223599999999998,Naphtha combustion consumption by freight transport,AR-N,SESCO,annual,kg,64529b94-ac6e-3841-99e2-647f300bd35f +2013,San Luis,II.1.1,0.009936850000000002,TJ,CO2,73300.0,kg/TJ,728.3711050000002,Naphtha combustion consumption by freight transport,AR-D,SESCO,annual,kg,33d1e08e-7ecc-3423-8ec6-a6e91f2cd73f +2013,San Luis,II.1.1,0.009936850000000002,TJ,CH4,0.5,kg/TJ,0.004968425000000001,Naphtha combustion consumption by freight transport,AR-D,SESCO,annual,kg,718bca7a-372e-3f2b-9d9c-c7b0b13a50e7 +2013,San Luis,II.1.1,0.009936850000000002,TJ,N2O,2.0,kg/TJ,0.019873700000000005,Naphtha combustion consumption by freight transport,AR-D,SESCO,annual,kg,5404d0a6-13e9-322e-8406-8652b3998fc0 +2013,Santa Fe,II.1.1,0.723005206,TJ,CO2,73300.0,kg/TJ,52996.28159979999,Naphtha combustion consumption by freight transport,AR-S,SESCO,annual,kg,35316a84-5b00-3e6a-ad19-48e8a988e647 +2013,Santa Fe,II.1.1,0.723005206,TJ,CH4,0.5,kg/TJ,0.361502603,Naphtha combustion consumption by freight transport,AR-S,SESCO,annual,kg,3d51bd49-d1d2-3ca5-bf11-254587d2e0f3 +2013,Santa Fe,II.1.1,0.723005206,TJ,N2O,2.0,kg/TJ,1.446010412,Naphtha combustion consumption by freight transport,AR-S,SESCO,annual,kg,6723f7ea-8670-3f7f-b7b0-bbc3717211c8 +2013,Tierra del Fuego,II.1.1,0.26459432999999993,TJ,CO2,73300.0,kg/TJ,19394.764388999996,Naphtha combustion consumption by freight transport,AR-V,SESCO,annual,kg,3ebe9608-d66f-3cc6-8be0-fdf201f6b2eb +2013,Tierra del Fuego,II.1.1,0.26459432999999993,TJ,CH4,0.5,kg/TJ,0.13229716499999997,Naphtha combustion consumption by freight transport,AR-V,SESCO,annual,kg,5a606f15-ddfb-3720-9267-f1a6350b342d +2013,Tierra del Fuego,II.1.1,0.26459432999999993,TJ,N2O,2.0,kg/TJ,0.5291886599999999,Naphtha combustion consumption by freight transport,AR-V,SESCO,annual,kg,0209d008-9087-3d06-a400-13ef11249f4b +2013,Tucuman,II.1.1,0.05068821450000001,TJ,CO2,73300.0,kg/TJ,3715.446122850001,Naphtha combustion consumption by freight transport,AR-T,SESCO,annual,kg,4af87b19-c010-3d3e-86d2-4fdd9848f331 +2013,Tucuman,II.1.1,0.05068821450000001,TJ,CH4,0.5,kg/TJ,0.025344107250000004,Naphtha combustion consumption by freight transport,AR-T,SESCO,annual,kg,6c57723f-f8ad-3835-8861-89f7459b7cbb +2013,Tucuman,II.1.1,0.05068821450000001,TJ,N2O,2.0,kg/TJ,0.10137642900000002,Naphtha combustion consumption by freight transport,AR-T,SESCO,annual,kg,e1698c54-be65-38d9-93c3-66e210edd598 +2013,Buenos Aires,II.1.1,1983.1216439999998,TJ,CO2,74100.0,kg/TJ,146949313.8204,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,c4890808-f558-3274-8697-bd48821e86af +2013,Buenos Aires,II.1.1,1983.1216439999998,TJ,CH4,3.9,kg/TJ,7734.174411599999,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,9cb0ffa0-1c2a-3101-a331-c40f02437ccd +2013,Buenos Aires,II.1.1,1983.1216439999998,TJ,N2O,3.9,kg/TJ,7734.174411599999,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,9cb0ffa0-1c2a-3101-a331-c40f02437ccd +2013,Capital Federal,II.1.1,485.0623428,TJ,CO2,74100.0,kg/TJ,35943119.60148,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,91a5f5e9-6f70-35c2-8e34-213a5aec5bc3 +2013,Capital Federal,II.1.1,485.0623428,TJ,CH4,3.9,kg/TJ,1891.74313692,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,e9a9dcb4-62d8-3982-a8e6-b000cfe90c1e +2013,Capital Federal,II.1.1,485.0623428,TJ,N2O,3.9,kg/TJ,1891.74313692,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,e9a9dcb4-62d8-3982-a8e6-b000cfe90c1e +2013,Chubut,II.1.1,18.038328,TJ,CO2,74100.0,kg/TJ,1336640.1048,Gas Oil combustion consumption by public passenger transport,AR-U,SESCO,annual,kg,17519f81-eb27-36a0-a2aa-3ad7bd6e2d39 +2013,Chubut,II.1.1,18.038328,TJ,CH4,3.9,kg/TJ,70.3494792,Gas Oil combustion consumption by public passenger transport,AR-U,SESCO,annual,kg,01a6b590-f9e2-3665-87f3-5d5122e1eabf +2013,Chubut,II.1.1,18.038328,TJ,N2O,3.9,kg/TJ,70.3494792,Gas Oil combustion consumption by public passenger transport,AR-U,SESCO,annual,kg,01a6b590-f9e2-3665-87f3-5d5122e1eabf +2013,Córdoba,II.1.1,35.844267144,TJ,CO2,74100.0,kg/TJ,2656060.1953704,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,6f8ac9ab-3d5c-3428-b263-cc6a1ef24ec2 +2013,Córdoba,II.1.1,35.844267144,TJ,CH4,3.9,kg/TJ,139.7926418616,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,ce2fdb54-4c28-3302-9c0c-2a46035c0f88 +2013,Córdoba,II.1.1,35.844267144,TJ,N2O,3.9,kg/TJ,139.7926418616,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,ce2fdb54-4c28-3302-9c0c-2a46035c0f88 +2013,Entre Rios,II.1.1,63.225343775999995,TJ,CO2,74100.0,kg/TJ,4684997.9738016,Gas Oil combustion consumption by public passenger transport,AR-E,SESCO,annual,kg,369dfc52-cc96-32d8-b248-46ab0bf06297 +2013,Entre Rios,II.1.1,63.225343775999995,TJ,CH4,3.9,kg/TJ,246.5788407264,Gas Oil combustion consumption by public passenger transport,AR-E,SESCO,annual,kg,29dc4f3d-796b-35a9-949c-54eb61100e28 +2013,Entre Rios,II.1.1,63.225343775999995,TJ,N2O,3.9,kg/TJ,246.5788407264,Gas Oil combustion consumption by public passenger transport,AR-E,SESCO,annual,kg,29dc4f3d-796b-35a9-949c-54eb61100e28 +2013,La Pampa,II.1.1,7.744128,TJ,CO2,74100.0,kg/TJ,573839.8848,Gas Oil combustion consumption by public passenger transport,AR-L,SESCO,annual,kg,eaeb5740-6e57-3c0f-8856-262c8d11c9b2 +2013,La Pampa,II.1.1,7.744128,TJ,CH4,3.9,kg/TJ,30.2020992,Gas Oil combustion consumption by public passenger transport,AR-L,SESCO,annual,kg,be56b5bf-1a0e-38af-b8ec-8d6e2dcc20e5 +2013,La Pampa,II.1.1,7.744128,TJ,N2O,3.9,kg/TJ,30.2020992,Gas Oil combustion consumption by public passenger transport,AR-L,SESCO,annual,kg,be56b5bf-1a0e-38af-b8ec-8d6e2dcc20e5 +2013,Mendoza,II.1.1,0.0404544,TJ,CO2,74100.0,kg/TJ,2997.67104,Gas Oil combustion consumption by public passenger transport,AR-M,SESCO,annual,kg,041ce957-f0e0-3ffe-9a51-7949770509ba +2013,Mendoza,II.1.1,0.0404544,TJ,CH4,3.9,kg/TJ,0.15777216,Gas Oil combustion consumption by public passenger transport,AR-M,SESCO,annual,kg,929a4e3f-30be-30d5-ae94-6273281234d9 +2013,Mendoza,II.1.1,0.0404544,TJ,N2O,3.9,kg/TJ,0.15777216,Gas Oil combustion consumption by public passenger transport,AR-M,SESCO,annual,kg,929a4e3f-30be-30d5-ae94-6273281234d9 +2013,Misiones,II.1.1,59.6771028,TJ,CO2,74100.0,kg/TJ,4422073.31748,Gas Oil combustion consumption by public passenger transport,AR-N,SESCO,annual,kg,a8af94bc-043c-3067-8327-b10ca11d2c08 +2013,Misiones,II.1.1,59.6771028,TJ,CH4,3.9,kg/TJ,232.74070092,Gas Oil combustion consumption by public passenger transport,AR-N,SESCO,annual,kg,d31098a0-a339-3886-aa02-9846844acd36 +2013,Misiones,II.1.1,59.6771028,TJ,N2O,3.9,kg/TJ,232.74070092,Gas Oil combustion consumption by public passenger transport,AR-N,SESCO,annual,kg,d31098a0-a339-3886-aa02-9846844acd36 +2013,Rio Negro,II.1.1,43.322714483999995,TJ,CO2,74100.0,kg/TJ,3210213.1432644,Gas Oil combustion consumption by public passenger transport,AR-R,SESCO,annual,kg,0840c162-7be7-378e-9ce3-4cffa58f702e +2013,Rio Negro,II.1.1,43.322714483999995,TJ,CH4,3.9,kg/TJ,168.95858648759997,Gas Oil combustion consumption by public passenger transport,AR-R,SESCO,annual,kg,ed369790-2f8a-33c6-b947-4e571beb5632 +2013,Rio Negro,II.1.1,43.322714483999995,TJ,N2O,3.9,kg/TJ,168.95858648759997,Gas Oil combustion consumption by public passenger transport,AR-R,SESCO,annual,kg,ed369790-2f8a-33c6-b947-4e571beb5632 +2013,San Juan,II.1.1,15.740016012,TJ,CO2,74100.0,kg/TJ,1166335.1864892,Gas Oil combustion consumption by public passenger transport,AR-J,SESCO,annual,kg,2c3df3da-65ea-3c15-9d34-2849ec41542d +2013,San Juan,II.1.1,15.740016012,TJ,CH4,3.9,kg/TJ,61.3860624468,Gas Oil combustion consumption by public passenger transport,AR-J,SESCO,annual,kg,b48e142d-1920-32d4-a059-bf6d4d627ece +2013,San Juan,II.1.1,15.740016012,TJ,N2O,3.9,kg/TJ,61.3860624468,Gas Oil combustion consumption by public passenger transport,AR-J,SESCO,annual,kg,b48e142d-1920-32d4-a059-bf6d4d627ece +2013,San Luis,II.1.1,19.620384,TJ,CO2,74100.0,kg/TJ,1453870.4544000002,Gas Oil combustion consumption by public passenger transport,AR-D,SESCO,annual,kg,9f0c627a-437a-3fdb-8be3-8cb0646319de +2013,San Luis,II.1.1,19.620384,TJ,CH4,3.9,kg/TJ,76.51949760000001,Gas Oil combustion consumption by public passenger transport,AR-D,SESCO,annual,kg,acbd79da-be37-3822-8c0e-3baf4c7ca9ef +2013,San Luis,II.1.1,19.620384,TJ,N2O,3.9,kg/TJ,76.51949760000001,Gas Oil combustion consumption by public passenger transport,AR-D,SESCO,annual,kg,acbd79da-be37-3822-8c0e-3baf4c7ca9ef +2013,Santa Fe,II.1.1,83.30655757199999,TJ,CO2,74100.0,kg/TJ,6173015.916085199,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,1a18cccc-1351-39eb-9afe-17cb7888cd37 +2013,Santa Fe,II.1.1,83.30655757199999,TJ,CH4,3.9,kg/TJ,324.89557453079993,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,0a0e6d8c-7ba5-3e2c-8a26-00a290ce3358 +2013,Santa Fe,II.1.1,83.30655757199999,TJ,N2O,3.9,kg/TJ,324.89557453079993,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,0a0e6d8c-7ba5-3e2c-8a26-00a290ce3358 +2013,Buenos Aires,II.1.1,1.4401044,TJ,CO2,74100.0,kg/TJ,106711.73604,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,5aad6e30-e302-37a7-b173-ae2364bb0249 +2013,Buenos Aires,II.1.1,1.4401044,TJ,CH4,3.9,kg/TJ,5.6164071600000005,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,c5ed194f-c196-3779-b021-fcbfd57249c9 +2013,Buenos Aires,II.1.1,1.4401044,TJ,N2O,3.9,kg/TJ,5.6164071600000005,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,c5ed194f-c196-3779-b021-fcbfd57249c9 +2013,Capital Federal,II.1.1,12.127651199999999,TJ,CO2,74100.0,kg/TJ,898658.9539199999,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,161437c3-0eeb-3f5d-8207-158c129a5aca +2013,Capital Federal,II.1.1,12.127651199999999,TJ,CH4,3.9,kg/TJ,47.297839679999996,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,652afed7-b7f1-343d-9a1c-86f202881d88 +2013,Capital Federal,II.1.1,12.127651199999999,TJ,N2O,3.9,kg/TJ,47.297839679999996,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,652afed7-b7f1-343d-9a1c-86f202881d88 +2013,Chaco,II.1.1,0.07693559999999999,TJ,CO2,74100.0,kg/TJ,5700.927959999999,Gas Oil combustion consumption by public passenger transport,AR-H,SESCO,annual,kg,8acd2a01-c194-3b52-9bd1-e0817713c408 +2013,Chaco,II.1.1,0.07693559999999999,TJ,CH4,3.9,kg/TJ,0.30004884,Gas Oil combustion consumption by public passenger transport,AR-H,SESCO,annual,kg,7dacf16f-0d52-33b1-8027-56133b3e21d4 +2013,Chaco,II.1.1,0.07693559999999999,TJ,N2O,3.9,kg/TJ,0.30004884,Gas Oil combustion consumption by public passenger transport,AR-H,SESCO,annual,kg,7dacf16f-0d52-33b1-8027-56133b3e21d4 +2013,Córdoba,II.1.1,0.20188551599999996,TJ,CO2,74100.0,kg/TJ,14959.716735599997,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,11ddb628-01fc-379d-9980-b4a996f83697 +2013,Córdoba,II.1.1,0.20188551599999996,TJ,CH4,3.9,kg/TJ,0.7873535123999998,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,b4b543f2-1a67-3ec4-8135-87d9c45de151 +2013,Córdoba,II.1.1,0.20188551599999996,TJ,N2O,3.9,kg/TJ,0.7873535123999998,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,b4b543f2-1a67-3ec4-8135-87d9c45de151 +2013,Entre Rios,II.1.1,0.423875424,TJ,CO2,74100.0,kg/TJ,31409.1689184,Gas Oil combustion consumption by public passenger transport,AR-E,SESCO,annual,kg,c4e8858e-2878-3211-bafb-c7709d046680 +2013,Entre Rios,II.1.1,0.423875424,TJ,CH4,3.9,kg/TJ,1.6531141536,Gas Oil combustion consumption by public passenger transport,AR-E,SESCO,annual,kg,e9219431-8e50-3266-bfcb-7324162b8aba +2013,Entre Rios,II.1.1,0.423875424,TJ,N2O,3.9,kg/TJ,1.6531141536,Gas Oil combustion consumption by public passenger transport,AR-E,SESCO,annual,kg,e9219431-8e50-3266-bfcb-7324162b8aba +2013,Misiones,II.1.1,0.0390096,TJ,CO2,74100.0,kg/TJ,2890.61136,Gas Oil combustion consumption by public passenger transport,AR-N,SESCO,annual,kg,fd52f168-f5f1-3998-b112-1e54114d431c +2013,Misiones,II.1.1,0.0390096,TJ,CH4,3.9,kg/TJ,0.15213743999999998,Gas Oil combustion consumption by public passenger transport,AR-N,SESCO,annual,kg,364a4a1f-ae88-3f5d-9270-6284f710a2c5 +2013,Misiones,II.1.1,0.0390096,TJ,N2O,3.9,kg/TJ,0.15213743999999998,Gas Oil combustion consumption by public passenger transport,AR-N,SESCO,annual,kg,364a4a1f-ae88-3f5d-9270-6284f710a2c5 +2013,Santa Fe,II.1.1,0.1061928,TJ,CO2,74100.0,kg/TJ,7868.88648,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,0c38e7e9-b871-3c1e-80c2-ab7b70217c61 +2013,Santa Fe,II.1.1,0.1061928,TJ,CH4,3.9,kg/TJ,0.41415192,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,8c66af4b-952e-3134-9e4a-5a610759389a +2013,Santa Fe,II.1.1,0.1061928,TJ,N2O,3.9,kg/TJ,0.41415192,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,8c66af4b-952e-3134-9e4a-5a610759389a +2013,Buenos Aires,II.1.1,2.36462765,TJ,CO2,73300.0,kg/TJ,173327.206745,Naphtha combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,58b46f03-8627-3bc7-bca6-8d8b250af4c3 +2013,Buenos Aires,II.1.1,2.36462765,TJ,CH4,0.5,kg/TJ,1.182313825,Naphtha combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,af587901-ff4f-3839-b538-238695741800 +2013,Buenos Aires,II.1.1,2.36462765,TJ,N2O,2.0,kg/TJ,4.7292553,Naphtha combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,29d26e33-55af-33fb-8742-b91384838da5 +2013,Capital Federal,II.1.1,0.042488599999999994,TJ,CO2,73300.0,kg/TJ,3114.4143799999997,Naphtha combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,7cbdf25b-7356-3fcd-a1eb-5f7bb95e4f1b +2013,Capital Federal,II.1.1,0.042488599999999994,TJ,CH4,0.5,kg/TJ,0.021244299999999997,Naphtha combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,bc486bb5-e79f-38b2-97ec-1e65b086ee34 +2013,Capital Federal,II.1.1,0.042488599999999994,TJ,N2O,2.0,kg/TJ,0.08497719999999999,Naphtha combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,aed58cea-9354-3a5a-8060-70cf03dded4a +2013,Córdoba,II.1.1,0.0013706,TJ,CO2,73300.0,kg/TJ,100.46498,Naphtha combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,8581eb34-1863-3595-9b97-cffdfd303a69 +2013,Córdoba,II.1.1,0.0013706,TJ,CH4,0.5,kg/TJ,0.0006853,Naphtha combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,04f9e2af-aba3-3c4d-978f-dba52d84e04d +2013,Córdoba,II.1.1,0.0013706,TJ,N2O,2.0,kg/TJ,0.0027412,Naphtha combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,bbe350a0-fe30-3786-8a9c-0b404210901b +2013,Entre Rios,II.1.1,0.0010279499999999997,TJ,CO2,73300.0,kg/TJ,75.34873499999998,Naphtha combustion consumption by public passenger transport,AR-E,SESCO,annual,kg,868cd764-ae01-333a-a8dc-77bf9c3862bd +2013,Entre Rios,II.1.1,0.0010279499999999997,TJ,CH4,0.5,kg/TJ,0.0005139749999999998,Naphtha combustion consumption by public passenger transport,AR-E,SESCO,annual,kg,0e76b9bf-9c00-32b5-abec-1c1d299c95ae +2013,Entre Rios,II.1.1,0.0010279499999999997,TJ,N2O,2.0,kg/TJ,0.0020558999999999994,Naphtha combustion consumption by public passenger transport,AR-E,SESCO,annual,kg,e28a1148-67f4-34ec-8091-2e1e582ebb7f +2013,Santa Fe,II.1.1,0.056489278999999996,TJ,CO2,73300.0,kg/TJ,4140.6641506999995,Naphtha combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,b9b1e7aa-4a6d-3343-913a-c63dd32a0abc +2013,Santa Fe,II.1.1,0.056489278999999996,TJ,CH4,0.5,kg/TJ,0.028244639499999998,Naphtha combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,26467d38-d3b3-3166-92c6-a798d38327fc +2013,Santa Fe,II.1.1,0.056489278999999996,TJ,N2O,2.0,kg/TJ,0.11297855799999999,Naphtha combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,4c01b8d1-315b-3adb-bd77-ecb8ce556d9a +2013,Buenos Aires,II.1.1,0.445445,TJ,CO2,73300.0,kg/TJ,32651.118499999997,Naphtha combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,27a29e58-9e32-361e-93f9-ed0a70b1a24f +2013,Buenos Aires,II.1.1,0.445445,TJ,CH4,0.5,kg/TJ,0.2227225,Naphtha combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,0330a20b-10d0-3ed8-bcc9-af585e33db41 +2013,Buenos Aires,II.1.1,0.445445,TJ,N2O,2.0,kg/TJ,0.89089,Naphtha combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,48fccd58-336e-327b-9143-5ba79f4f7617 +2013,Capital Federal,II.1.1,0.20456204999999997,TJ,CO2,73300.0,kg/TJ,14994.398264999998,Naphtha combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,7fef816b-901d-3fbe-90ba-4a4b5c3d8ca7 +2013,Capital Federal,II.1.1,0.20456204999999997,TJ,CH4,0.5,kg/TJ,0.10228102499999998,Naphtha combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,d70ed820-5a02-3c55-a7bd-8ed8f464bf2a +2013,Capital Federal,II.1.1,0.20456204999999997,TJ,N2O,2.0,kg/TJ,0.40912409999999994,Naphtha combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,74f5bc63-5449-3685-b0df-4f9be9375439 +2013,Entre Rios,II.1.1,0.0013706,TJ,CO2,73300.0,kg/TJ,100.46498,Naphtha combustion consumption by public passenger transport,AR-E,SESCO,annual,kg,26586499-9dc7-3603-b1f6-1eea1752edfe +2013,Entre Rios,II.1.1,0.0013706,TJ,CH4,0.5,kg/TJ,0.0006853,Naphtha combustion consumption by public passenger transport,AR-E,SESCO,annual,kg,6361b685-ccf5-3bdd-a819-89500c82a4d0 +2013,Entre Rios,II.1.1,0.0013706,TJ,N2O,2.0,kg/TJ,0.0027412,Naphtha combustion consumption by public passenger transport,AR-E,SESCO,annual,kg,3723ac85-ef7e-3b6d-86ec-243ab2a7b858 +2013,Santa Fe,II.1.1,0.01199275,TJ,CO2,73300.0,kg/TJ,879.068575,Naphtha combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,2fa941a7-6259-3106-b8d1-dc31989288fe +2013,Santa Fe,II.1.1,0.01199275,TJ,CH4,0.5,kg/TJ,0.005996375,Naphtha combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,60d9f258-5087-3743-bb12-a8433a6ed35c +2013,Santa Fe,II.1.1,0.01199275,TJ,N2O,2.0,kg/TJ,0.0239855,Naphtha combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,7b95c4ee-b873-3346-a58a-641030b666dc +2013,Buenos Aires,II.5.1,410.11053266399995,TJ,CO2,74100.0,kg/TJ,30389190.470402397,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,0634f40c-97cb-30bc-80d8-7de4523ec43c +2013,Buenos Aires,II.5.1,410.11053266399995,TJ,CH4,3.9,kg/TJ,1599.4310773895997,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,86f36573-6620-3cfd-ab2e-c8f18f6904ed +2013,Buenos Aires,II.5.1,410.11053266399995,TJ,N2O,3.9,kg/TJ,1599.4310773895997,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,86f36573-6620-3cfd-ab2e-c8f18f6904ed +2013,Córdoba,II.5.1,588.7556460239999,TJ,CO2,74100.0,kg/TJ,43626793.3703784,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,feb4f611-8bec-3860-8386-9083c5fccb88 +2013,Córdoba,II.5.1,588.7556460239999,TJ,CH4,3.9,kg/TJ,2296.1470194935996,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,cae08fac-1a03-3385-bd27-85e95cbc44be +2013,Córdoba,II.5.1,588.7556460239999,TJ,N2O,3.9,kg/TJ,2296.1470194935996,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,cae08fac-1a03-3385-bd27-85e95cbc44be +2013,Entre Rios,II.5.1,530.8959246359999,TJ,CO2,74100.0,kg/TJ,39339388.01552759,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,83db395b-bd95-3074-9b55-d78114370441 +2013,Entre Rios,II.5.1,530.8959246359999,TJ,CH4,3.9,kg/TJ,2070.4941060803994,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,233b762a-eee3-3e48-86e4-b393749ee6c6 +2013,Entre Rios,II.5.1,530.8959246359999,TJ,N2O,3.9,kg/TJ,2070.4941060803994,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,233b762a-eee3-3e48-86e4-b393749ee6c6 +2013,Santa Fe,II.5.1,713.868860544,TJ,CO2,74100.0,kg/TJ,52897682.5663104,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,2b0d54c5-338b-3b5b-a6e6-1b9eadb0b54b +2013,Santa Fe,II.5.1,713.868860544,TJ,CH4,3.9,kg/TJ,2784.0885561216,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,d7fdede1-d08d-3c18-9c88-38f4fdd68e99 +2013,Santa Fe,II.5.1,713.868860544,TJ,N2O,3.9,kg/TJ,2784.0885561216,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,d7fdede1-d08d-3c18-9c88-38f4fdd68e99 +2013,Santiago del Estero,II.5.1,145.69543438799997,TJ,CO2,74100.0,kg/TJ,10796031.688150797,Gas Oil combustion consumption by agriculture machines,AR-G,SESCO,annual,kg,a3507173-eed5-369c-9bae-9d52f1d4476e +2013,Santiago del Estero,II.5.1,145.69543438799997,TJ,CH4,3.9,kg/TJ,568.2121941131999,Gas Oil combustion consumption by agriculture machines,AR-G,SESCO,annual,kg,9ccaf804-6612-350e-86b2-6b7becfe248c +2013,Santiago del Estero,II.5.1,145.69543438799997,TJ,N2O,3.9,kg/TJ,568.2121941131999,Gas Oil combustion consumption by agriculture machines,AR-G,SESCO,annual,kg,9ccaf804-6612-350e-86b2-6b7becfe248c +2013,Córdoba,II.5.1,6.752045030499999,TJ,CO2,73300.0,kg/TJ,494924.9007356499,Naphtha combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,4f481aa6-36b1-346d-9dbe-434995158d62 +2013,Córdoba,II.5.1,6.752045030499999,TJ,CH4,0.5,kg/TJ,3.3760225152499994,Naphtha combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,b8c7bfef-38d3-33c0-b605-4189e25a5b8c +2013,Córdoba,II.5.1,6.752045030499999,TJ,N2O,2.0,kg/TJ,13.504090060999998,Naphtha combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,271cd56b-e093-3931-a72e-7d495740e90d +2013,Santa Fe,II.5.1,1.5133000189999999,TJ,CO2,73300.0,kg/TJ,110924.8913927,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,14551f24-6d9c-3efa-9e37-c9b7bea080a3 +2013,Santa Fe,II.5.1,1.5133000189999999,TJ,CH4,0.5,kg/TJ,0.7566500094999999,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,7e5d8a5b-f241-357e-a314-498b7e7f45ee +2013,Santa Fe,II.5.1,1.5133000189999999,TJ,N2O,2.0,kg/TJ,3.0266000379999998,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,d5d0a2a5-3476-324d-a24f-8e39ff86e79c +2013,Buenos Aires,II.1.1,339.633647388,TJ,CO2,74100.0,kg/TJ,25166853.2714508,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,357299e6-5eea-3f2c-aba0-e6400d02f6b9 +2013,Buenos Aires,II.1.1,339.633647388,TJ,CH4,3.9,kg/TJ,1324.5712248132,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,3a25d8d7-1580-35e5-9d56-6fd074d6c1c8 +2013,Buenos Aires,II.1.1,339.633647388,TJ,N2O,3.9,kg/TJ,1324.5712248132,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,3a25d8d7-1580-35e5-9d56-6fd074d6c1c8 +2013,Chaco,II.1.1,10.026767520000002,TJ,CO2,74100.0,kg/TJ,742983.4732320001,Gas Oil combustion consumption by public passenger transport,AR-H,SESCO,annual,kg,2b5285f4-e94c-3829-ae44-8005bbf8b8e0 +2013,Chaco,II.1.1,10.026767520000002,TJ,CH4,3.9,kg/TJ,39.10439332800001,Gas Oil combustion consumption by public passenger transport,AR-H,SESCO,annual,kg,a9200029-bf97-39a2-b8f3-aef16ec94591 +2013,Chaco,II.1.1,10.026767520000002,TJ,N2O,3.9,kg/TJ,39.10439332800001,Gas Oil combustion consumption by public passenger transport,AR-H,SESCO,annual,kg,a9200029-bf97-39a2-b8f3-aef16ec94591 +2013,Corrientes,II.1.1,34.60019320799999,TJ,CO2,74100.0,kg/TJ,2563874.3167127995,Gas Oil combustion consumption by public passenger transport,AR-W,SESCO,annual,kg,3b14ceea-d061-3d13-9c2a-fcb64baf75fc +2013,Corrientes,II.1.1,34.60019320799999,TJ,CH4,3.9,kg/TJ,134.94075351119997,Gas Oil combustion consumption by public passenger transport,AR-W,SESCO,annual,kg,4609fbf6-f26c-3413-ad67-15395e98d874 +2013,Corrientes,II.1.1,34.60019320799999,TJ,N2O,3.9,kg/TJ,134.94075351119997,Gas Oil combustion consumption by public passenger transport,AR-W,SESCO,annual,kg,4609fbf6-f26c-3413-ad67-15395e98d874 +2013,Córdoba,II.1.1,307.84952108400006,TJ,CO2,74100.0,kg/TJ,22811649.512324404,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,63adfcde-4e79-3b2e-a764-8f8b583241b3 +2013,Córdoba,II.1.1,307.84952108400006,TJ,CH4,3.9,kg/TJ,1200.6131322276003,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,55392cb6-6012-3e01-b5d5-9b02db1cf4b4 +2013,Córdoba,II.1.1,307.84952108400006,TJ,N2O,3.9,kg/TJ,1200.6131322276003,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,55392cb6-6012-3e01-b5d5-9b02db1cf4b4 +2013,Entre Rios,II.1.1,89.19846642,TJ,CO2,74100.0,kg/TJ,6609606.361722,Gas Oil combustion consumption by public passenger transport,AR-E,SESCO,annual,kg,7e4235ff-cab9-364b-aa91-0f81642eb1ba +2013,Entre Rios,II.1.1,89.19846642,TJ,CH4,3.9,kg/TJ,347.87401903800003,Gas Oil combustion consumption by public passenger transport,AR-E,SESCO,annual,kg,da3aace1-d475-3b2d-87d7-1a249f2ef3b7 +2013,Entre Rios,II.1.1,89.19846642,TJ,N2O,3.9,kg/TJ,347.87401903800003,Gas Oil combustion consumption by public passenger transport,AR-E,SESCO,annual,kg,da3aace1-d475-3b2d-87d7-1a249f2ef3b7 +2013,Jujuy,II.1.1,198.589067544,TJ,CO2,74100.0,kg/TJ,14715449.905010398,Gas Oil combustion consumption by public passenger transport,AR-Y,SESCO,annual,kg,06b4e73c-6792-373a-b557-7db8f9e535f8 +2013,Jujuy,II.1.1,198.589067544,TJ,CH4,3.9,kg/TJ,774.4973634216,Gas Oil combustion consumption by public passenger transport,AR-Y,SESCO,annual,kg,8a0a4c50-98e1-3dc9-8725-451e3496ec30 +2013,Jujuy,II.1.1,198.589067544,TJ,N2O,3.9,kg/TJ,774.4973634216,Gas Oil combustion consumption by public passenger transport,AR-Y,SESCO,annual,kg,8a0a4c50-98e1-3dc9-8725-451e3496ec30 +2013,Misiones,II.1.1,106.31385979199999,TJ,CO2,74100.0,kg/TJ,7877857.010587199,Gas Oil combustion consumption by public passenger transport,AR-N,SESCO,annual,kg,2bb92191-832d-3b2f-bf97-536ae4b2cfd1 +2013,Misiones,II.1.1,106.31385979199999,TJ,CH4,3.9,kg/TJ,414.62405318879996,Gas Oil combustion consumption by public passenger transport,AR-N,SESCO,annual,kg,f56965f5-51cf-31bf-828f-44c565b110a7 +2013,Misiones,II.1.1,106.31385979199999,TJ,N2O,3.9,kg/TJ,414.62405318879996,Gas Oil combustion consumption by public passenger transport,AR-N,SESCO,annual,kg,f56965f5-51cf-31bf-828f-44c565b110a7 +2013,Salta,II.1.1,77.47766006399999,TJ,CO2,74100.0,kg/TJ,5741094.6107423995,Gas Oil combustion consumption by public passenger transport,AR-A,SESCO,annual,kg,de3cea44-6177-32de-adbb-46c98f23ac2e +2013,Salta,II.1.1,77.47766006399999,TJ,CH4,3.9,kg/TJ,302.16287424959995,Gas Oil combustion consumption by public passenger transport,AR-A,SESCO,annual,kg,88b5f2d0-b6cc-3e44-9e53-137bf5f7cf91 +2013,Salta,II.1.1,77.47766006399999,TJ,N2O,3.9,kg/TJ,302.16287424959995,Gas Oil combustion consumption by public passenger transport,AR-A,SESCO,annual,kg,88b5f2d0-b6cc-3e44-9e53-137bf5f7cf91 +2013,Santa Fe,II.1.1,231.107311176,TJ,CO2,74100.0,kg/TJ,17125051.7581416,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,f2919f2d-1231-34e8-ae62-d8f61cddcd73 +2013,Santa Fe,II.1.1,231.107311176,TJ,CH4,3.9,kg/TJ,901.3185135864,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,b9636763-46ea-3ffc-9ab5-77114c2d02d9 +2013,Santa Fe,II.1.1,231.107311176,TJ,N2O,3.9,kg/TJ,901.3185135864,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,b9636763-46ea-3ffc-9ab5-77114c2d02d9 +2013,Santiago del Estero,II.1.1,108.047999052,TJ,CO2,74100.0,kg/TJ,8006356.7297532,Gas Oil combustion consumption by public passenger transport,AR-G,SESCO,annual,kg,b442a47b-c6ca-307c-b3fe-d23e24a698c9 +2013,Santiago del Estero,II.1.1,108.047999052,TJ,CH4,3.9,kg/TJ,421.38719630279996,Gas Oil combustion consumption by public passenger transport,AR-G,SESCO,annual,kg,7315bcc9-145b-3e67-ac3a-c51ce397652d +2013,Santiago del Estero,II.1.1,108.047999052,TJ,N2O,3.9,kg/TJ,421.38719630279996,Gas Oil combustion consumption by public passenger transport,AR-G,SESCO,annual,kg,7315bcc9-145b-3e67-ac3a-c51ce397652d +2013,Tucuman,II.1.1,32.633217204,TJ,CO2,74100.0,kg/TJ,2418121.3948164,Gas Oil combustion consumption by public passenger transport,AR-T,SESCO,annual,kg,952a272f-1320-3e66-baa5-612f680967a1 +2013,Tucuman,II.1.1,32.633217204,TJ,CH4,3.9,kg/TJ,127.26954709559999,Gas Oil combustion consumption by public passenger transport,AR-T,SESCO,annual,kg,09339339-5d14-30e9-b566-1734b97df6b2 +2013,Tucuman,II.1.1,32.633217204,TJ,N2O,3.9,kg/TJ,127.26954709559999,Gas Oil combustion consumption by public passenger transport,AR-T,SESCO,annual,kg,09339339-5d14-30e9-b566-1734b97df6b2 +2013,Buenos Aires,II.5.1,559.6196936399999,TJ,CO2,74100.0,kg/TJ,41467819.298723996,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,e7ff39cc-db93-3d2e-8387-5ea1d9519f91 +2013,Buenos Aires,II.5.1,559.6196936399999,TJ,CH4,3.9,kg/TJ,2182.5168051959995,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,cbcd5975-2f22-396d-8e34-ac9ce670b236 +2013,Buenos Aires,II.5.1,559.6196936399999,TJ,N2O,3.9,kg/TJ,2182.5168051959995,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,cbcd5975-2f22-396d-8e34-ac9ce670b236 +2013,Córdoba,II.5.1,51.13634819999999,TJ,CO2,74100.0,kg/TJ,3789203.4016199997,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,1d6c392c-d113-306f-9a24-f2bd84467f91 +2013,Córdoba,II.5.1,51.13634819999999,TJ,CH4,3.9,kg/TJ,199.43175797999996,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,e6b3996b-97ee-3ca5-b91c-35d4e2ed17c0 +2013,Córdoba,II.5.1,51.13634819999999,TJ,N2O,3.9,kg/TJ,199.43175797999996,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,e6b3996b-97ee-3ca5-b91c-35d4e2ed17c0 +2013,Neuquén,II.5.1,109.79089379999998,TJ,CO2,74100.0,kg/TJ,8135505.230579998,Gas Oil combustion consumption by agriculture machines,AR-Q,SESCO,annual,kg,aee15524-8ffa-3c17-bc08-e7081eb59567 +2013,Neuquén,II.5.1,109.79089379999998,TJ,CH4,3.9,kg/TJ,428.1844858199999,Gas Oil combustion consumption by agriculture machines,AR-Q,SESCO,annual,kg,e8757970-68cb-3e1f-923c-a6192f01aaed +2013,Neuquén,II.5.1,109.79089379999998,TJ,N2O,3.9,kg/TJ,428.1844858199999,Gas Oil combustion consumption by agriculture machines,AR-Q,SESCO,annual,kg,e8757970-68cb-3e1f-923c-a6192f01aaed +2013,Rio Negro,II.5.1,3.6378258000000003,TJ,CO2,74100.0,kg/TJ,269562.89178,Gas Oil combustion consumption by agriculture machines,AR-R,SESCO,annual,kg,36fee0c3-ec9d-37a7-9396-7c61dcb70938 +2013,Rio Negro,II.5.1,3.6378258000000003,TJ,CH4,3.9,kg/TJ,14.18752062,Gas Oil combustion consumption by agriculture machines,AR-R,SESCO,annual,kg,9c3f7f16-1097-3f3f-ba4c-199fa2489e24 +2013,Rio Negro,II.5.1,3.6378258000000003,TJ,N2O,3.9,kg/TJ,14.18752062,Gas Oil combustion consumption by agriculture machines,AR-R,SESCO,annual,kg,9c3f7f16-1097-3f3f-ba4c-199fa2489e24 +2013,Santa Cruz,II.5.1,0.68566596,TJ,CO2,74100.0,kg/TJ,50807.847636,Gas Oil combustion consumption by agriculture machines,AR-Z,SESCO,annual,kg,6b733a5a-2035-3db9-b27b-784e0cc44b2f +2013,Santa Cruz,II.5.1,0.68566596,TJ,CH4,3.9,kg/TJ,2.674097244,Gas Oil combustion consumption by agriculture machines,AR-Z,SESCO,annual,kg,0f1332d1-1300-39ae-937d-c8f57064ca50 +2013,Santa Cruz,II.5.1,0.68566596,TJ,N2O,3.9,kg/TJ,2.674097244,Gas Oil combustion consumption by agriculture machines,AR-Z,SESCO,annual,kg,0f1332d1-1300-39ae-937d-c8f57064ca50 +2013,Santa Fe,II.5.1,3.1048751999999995,TJ,CO2,74100.0,kg/TJ,230071.25231999997,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,4c128b43-d8b2-3845-bf8f-53910b5956cf +2013,Santa Fe,II.5.1,3.1048751999999995,TJ,CH4,3.9,kg/TJ,12.109013279999997,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,a2583d68-5ef0-37bb-88eb-174d3d1b3c5a +2013,Santa Fe,II.5.1,3.1048751999999995,TJ,N2O,3.9,kg/TJ,12.109013279999997,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,a2583d68-5ef0-37bb-88eb-174d3d1b3c5a +2013,Buenos Aires,II.5.1,4.773114500000001,TJ,CO2,73300.0,kg/TJ,349869.2928500001,Naphtha combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,e7bce809-c251-3acf-9c42-42154e05a563 +2013,Buenos Aires,II.5.1,4.773114500000001,TJ,CH4,0.5,kg/TJ,2.3865572500000005,Naphtha combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,2feccc1f-e2e2-3f33-b99a-2aff4996953d +2013,Buenos Aires,II.5.1,4.773114500000001,TJ,N2O,2.0,kg/TJ,9.546229000000002,Naphtha combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,5c9cb3bb-81f7-3600-bd1e-d6fca073bcce +2013,Buenos Aires,II.2.1,41.328215039999996,TJ,CO2,74100.0,kg/TJ,3062420.7344639995,Gas Oil combustion consumption by railway transport,AR-B,SESCO,annual,kg,be69c9dd-b6e6-306b-8601-067039a1c705 +2013,Buenos Aires,II.2.1,41.328215039999996,TJ,CH4,3.9,kg/TJ,161.180038656,Gas Oil combustion consumption by railway transport,AR-B,SESCO,annual,kg,a233079f-6928-3e4e-9e65-40ad69dd7391 +2013,Buenos Aires,II.2.1,41.328215039999996,TJ,N2O,3.9,kg/TJ,161.180038656,Gas Oil combustion consumption by railway transport,AR-B,SESCO,annual,kg,a233079f-6928-3e4e-9e65-40ad69dd7391 +2013,La Pampa,II.2.1,22.206901079999998,TJ,CO2,74100.0,kg/TJ,1645531.3700279999,Gas Oil combustion consumption by railway transport,AR-L,SESCO,annual,kg,75f010ad-71e2-329a-852e-49c7705893a5 +2013,La Pampa,II.2.1,22.206901079999998,TJ,CH4,3.9,kg/TJ,86.60691421199999,Gas Oil combustion consumption by railway transport,AR-L,SESCO,annual,kg,06f37679-e6f3-36e8-848c-c87e1bf143d8 +2013,La Pampa,II.2.1,22.206901079999998,TJ,N2O,3.9,kg/TJ,86.60691421199999,Gas Oil combustion consumption by railway transport,AR-L,SESCO,annual,kg,06f37679-e6f3-36e8-848c-c87e1bf143d8 +2013,Buenos Aires,II.1.1,4.696686,TJ,CO2,69300.0,kg/TJ,325480.33979999996,Motor Gasoline combustion consumption by freight transport,AR-B,SESCO,annual,kg,da0fd13f-6190-3900-82a4-6d64e1cc79c4 +2013,Buenos Aires,II.1.1,4.696686,TJ,CH4,33.0,kg/TJ,154.990638,Motor Gasoline combustion consumption by freight transport,AR-B,SESCO,annual,kg,8a43fdb4-0081-388b-9db6-d0c3845160f9 +2013,Buenos Aires,II.1.1,4.696686,TJ,N2O,3.2,kg/TJ,15.0293952,Motor Gasoline combustion consumption by freight transport,AR-B,SESCO,annual,kg,a5bd7577-3e76-390f-a039-5e95ff04f891 +2013,Buenos Aires,II.1.1,333.48631595999996,TJ,CO2,74100.0,kg/TJ,24711336.012636,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,754b2cf6-a136-3367-86a2-2290d7a82fe5 +2013,Buenos Aires,II.1.1,333.48631595999996,TJ,CH4,3.9,kg/TJ,1300.5966322439997,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,e87a9d7e-5207-3cac-b21e-a3a2a784728d +2013,Buenos Aires,II.1.1,333.48631595999996,TJ,N2O,3.9,kg/TJ,1300.5966322439997,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,e87a9d7e-5207-3cac-b21e-a3a2a784728d +2013,Capital Federal,II.1.1,26.602163280000003,TJ,CO2,74100.0,kg/TJ,1971220.2990480002,Gas Oil combustion consumption by freight transport,AR-C,SESCO,annual,kg,32f18e3b-b4a7-3113-ab4e-3efef32fccf4 +2013,Capital Federal,II.1.1,26.602163280000003,TJ,CH4,3.9,kg/TJ,103.748436792,Gas Oil combustion consumption by freight transport,AR-C,SESCO,annual,kg,b31e5099-ae2f-35c6-b1da-a7c879f76228 +2013,Capital Federal,II.1.1,26.602163280000003,TJ,N2O,3.9,kg/TJ,103.748436792,Gas Oil combustion consumption by freight transport,AR-C,SESCO,annual,kg,b31e5099-ae2f-35c6-b1da-a7c879f76228 +2013,Chubut,II.1.1,0.32461044,TJ,CO2,74100.0,kg/TJ,24053.633604,Gas Oil combustion consumption by freight transport,AR-U,SESCO,annual,kg,302b72da-9595-3236-8121-67a60aeeccff +2013,Chubut,II.1.1,0.32461044,TJ,CH4,3.9,kg/TJ,1.265980716,Gas Oil combustion consumption by freight transport,AR-U,SESCO,annual,kg,91b68d23-2a15-325b-8827-0eadf02980dd +2013,Chubut,II.1.1,0.32461044,TJ,N2O,3.9,kg/TJ,1.265980716,Gas Oil combustion consumption by freight transport,AR-U,SESCO,annual,kg,91b68d23-2a15-325b-8827-0eadf02980dd +2013,Córdoba,II.1.1,10.93868916,TJ,CO2,74100.0,kg/TJ,810556.866756,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,f1e2d234-cd47-32db-8b44-29354afedac4 +2013,Córdoba,II.1.1,10.93868916,TJ,CH4,3.9,kg/TJ,42.660887724,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,fa058c34-8f8e-3edd-92ac-a0952dff2aed +2013,Córdoba,II.1.1,10.93868916,TJ,N2O,3.9,kg/TJ,42.660887724,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,fa058c34-8f8e-3edd-92ac-a0952dff2aed +2013,San Luis,II.1.1,57.27432816,TJ,CO2,74100.0,kg/TJ,4244027.716656,Gas Oil combustion consumption by freight transport,AR-D,SESCO,annual,kg,3ce60eab-4ea3-3cba-8434-0a0e0540295f +2013,San Luis,II.1.1,57.27432816,TJ,CH4,3.9,kg/TJ,223.369879824,Gas Oil combustion consumption by freight transport,AR-D,SESCO,annual,kg,54ab74ba-2358-3cd6-b2ea-ae22765fd851 +2013,San Luis,II.1.1,57.27432816,TJ,N2O,3.9,kg/TJ,223.369879824,Gas Oil combustion consumption by freight transport,AR-D,SESCO,annual,kg,54ab74ba-2358-3cd6-b2ea-ae22765fd851 +2013,Buenos Aires,II.1.1,1.29786384,TJ,CO2,74100.0,kg/TJ,96171.710544,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,ecd2058d-292a-36b0-a9b7-fe77c2de3d62 +2013,Buenos Aires,II.1.1,1.29786384,TJ,CH4,3.9,kg/TJ,5.061668976,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,14afde7e-0d1e-3c8b-8394-c6164ce19078 +2013,Buenos Aires,II.1.1,1.29786384,TJ,N2O,3.9,kg/TJ,5.061668976,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,14afde7e-0d1e-3c8b-8394-c6164ce19078 +2013,Buenos Aires,II.1.1,0.13493557,TJ,CO2,73300.0,kg/TJ,9890.777281,Naphtha combustion consumption by freight transport,AR-B,SESCO,annual,kg,17bc1b43-98b6-382f-9a05-203a2ca01ace +2013,Buenos Aires,II.1.1,0.13493557,TJ,CH4,0.5,kg/TJ,0.067467785,Naphtha combustion consumption by freight transport,AR-B,SESCO,annual,kg,278a2bba-e56e-3a40-ba40-059021f097d4 +2013,Buenos Aires,II.1.1,0.13493557,TJ,N2O,2.0,kg/TJ,0.26987114,Naphtha combustion consumption by freight transport,AR-B,SESCO,annual,kg,95e8fe11-d0c8-316e-9906-133673f58c31 +2013,Buenos Aires,II.1.1,331.2811899599999,TJ,CO2,74100.0,kg/TJ,24547936.176035993,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,eb23e55f-1d89-3e0f-8e8c-02dc7f43fb34 +2013,Buenos Aires,II.1.1,331.2811899599999,TJ,CH4,3.9,kg/TJ,1291.9966408439996,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,0fb3c891-651c-31a5-8811-b3dfdf817009 +2013,Buenos Aires,II.1.1,331.2811899599999,TJ,N2O,3.9,kg/TJ,1291.9966408439996,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,0fb3c891-651c-31a5-8811-b3dfdf817009 +2013,Capital Federal,II.1.1,16.471586879999997,TJ,CO2,74100.0,kg/TJ,1220544.5878079997,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,3dbd0b93-9a02-3906-ab98-bf0a056f8a2c +2013,Capital Federal,II.1.1,16.471586879999997,TJ,CH4,3.9,kg/TJ,64.23918883199998,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,2d6185f8-429b-3341-84e8-d976b7c9f07a +2013,Capital Federal,II.1.1,16.471586879999997,TJ,N2O,3.9,kg/TJ,64.23918883199998,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,2d6185f8-429b-3341-84e8-d976b7c9f07a +2013,Chubut,II.1.1,58.18960896,TJ,CO2,74100.0,kg/TJ,4311850.023936,Gas Oil combustion consumption by public passenger transport,AR-U,SESCO,annual,kg,1056a869-48df-3b85-8a5b-965d953c39c5 +2013,Chubut,II.1.1,58.18960896,TJ,CH4,3.9,kg/TJ,226.939474944,Gas Oil combustion consumption by public passenger transport,AR-U,SESCO,annual,kg,281b8c62-d813-317c-8ffa-14b692ce30f7 +2013,Chubut,II.1.1,58.18960896,TJ,N2O,3.9,kg/TJ,226.939474944,Gas Oil combustion consumption by public passenger transport,AR-U,SESCO,annual,kg,281b8c62-d813-317c-8ffa-14b692ce30f7 +2013,Córdoba,II.1.1,258.03517572,TJ,CO2,74100.0,kg/TJ,19120406.520852,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,e43d5a41-c51d-35fe-b5f7-0e39669c8242 +2013,Córdoba,II.1.1,258.03517572,TJ,CH4,3.9,kg/TJ,1006.3371853079999,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,54b04279-0b96-3c35-8c5f-af28fb7de579 +2013,Córdoba,II.1.1,258.03517572,TJ,N2O,3.9,kg/TJ,1006.3371853079999,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,54b04279-0b96-3c35-8c5f-af28fb7de579 +2013,Neuquén,II.1.1,32.7249006,TJ,CO2,74100.0,kg/TJ,2424915.13446,Gas Oil combustion consumption by public passenger transport,AR-Q,SESCO,annual,kg,ff027fde-a4f2-388b-ae87-2cf733fc3bdc +2013,Neuquén,II.1.1,32.7249006,TJ,CH4,3.9,kg/TJ,127.62711233999998,Gas Oil combustion consumption by public passenger transport,AR-Q,SESCO,annual,kg,4883f5c6-822d-38dc-9dc2-15a3e52c37cc +2013,Neuquén,II.1.1,32.7249006,TJ,N2O,3.9,kg/TJ,127.62711233999998,Gas Oil combustion consumption by public passenger transport,AR-Q,SESCO,annual,kg,4883f5c6-822d-38dc-9dc2-15a3e52c37cc +2013,Rio Negro,II.1.1,203.11839995999998,TJ,CO2,74100.0,kg/TJ,15051073.437035998,Gas Oil combustion consumption by public passenger transport,AR-R,SESCO,annual,kg,7274b77f-dbcd-382b-bdee-8604d357de61 +2013,Rio Negro,II.1.1,203.11839995999998,TJ,CH4,3.9,kg/TJ,792.1617598439999,Gas Oil combustion consumption by public passenger transport,AR-R,SESCO,annual,kg,3fa916ea-3322-39ef-8358-5ba253d6e535 +2013,Rio Negro,II.1.1,203.11839995999998,TJ,N2O,3.9,kg/TJ,792.1617598439999,Gas Oil combustion consumption by public passenger transport,AR-R,SESCO,annual,kg,3fa916ea-3322-39ef-8358-5ba253d6e535 +2013,Santa Cruz,II.1.1,31.995276599999997,TJ,CO2,74100.0,kg/TJ,2370849.99606,Gas Oil combustion consumption by public passenger transport,AR-Z,SESCO,annual,kg,b356f9c7-bcab-3b9f-b410-974c847034ba +2013,Santa Cruz,II.1.1,31.995276599999997,TJ,CH4,3.9,kg/TJ,124.78157873999999,Gas Oil combustion consumption by public passenger transport,AR-Z,SESCO,annual,kg,c76f0ed6-b953-33bd-a052-7407326b6c97 +2013,Santa Cruz,II.1.1,31.995276599999997,TJ,N2O,3.9,kg/TJ,124.78157873999999,Gas Oil combustion consumption by public passenger transport,AR-Z,SESCO,annual,kg,c76f0ed6-b953-33bd-a052-7407326b6c97 +2013,Santa Fe,II.1.1,5.46827904,TJ,CO2,74100.0,kg/TJ,405199.47686399997,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,d1cc20e1-227b-39ec-863a-e6b4ceef2348 +2013,Santa Fe,II.1.1,5.46827904,TJ,CH4,3.9,kg/TJ,21.326288255999998,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,695c3cdf-b9a8-3797-8452-220b8ce5062b +2013,Santa Fe,II.1.1,5.46827904,TJ,N2O,3.9,kg/TJ,21.326288255999998,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,695c3cdf-b9a8-3797-8452-220b8ce5062b +2013,Buenos Aires,II.5.1,407.54195999999996,TJ,CO2,74100.0,kg/TJ,30198859.235999998,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,90707006-8f17-35f0-a7ac-5f25ead77f92 +2013,Buenos Aires,II.5.1,407.54195999999996,TJ,CH4,3.9,kg/TJ,1589.4136439999997,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,802b0135-2d1c-3515-9c1c-04fc2cbda542 +2013,Buenos Aires,II.5.1,407.54195999999996,TJ,N2O,3.9,kg/TJ,1589.4136439999997,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,802b0135-2d1c-3515-9c1c-04fc2cbda542 +2013,Capital Federal,II.5.1,87.33816,TJ,CO2,74100.0,kg/TJ,6471757.656,Gas Oil combustion consumption by agriculture machines,AR-C,SESCO,annual,kg,d9d70abd-3753-3ede-9bdd-82350413cb11 +2013,Capital Federal,II.5.1,87.33816,TJ,CH4,3.9,kg/TJ,340.618824,Gas Oil combustion consumption by agriculture machines,AR-C,SESCO,annual,kg,06322cd8-d529-3e82-8c06-5e1091365da7 +2013,Capital Federal,II.5.1,87.33816,TJ,N2O,3.9,kg/TJ,340.618824,Gas Oil combustion consumption by agriculture machines,AR-C,SESCO,annual,kg,06322cd8-d529-3e82-8c06-5e1091365da7 +2013,Córdoba,II.5.1,156.86916,TJ,CO2,74100.0,kg/TJ,11624004.756,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,51505052-e7cc-3643-bb07-5150d86a1485 +2013,Córdoba,II.5.1,156.86916,TJ,CH4,3.9,kg/TJ,611.789724,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,c2423173-fe05-3ee7-a8d9-be83c0c7b40e +2013,Córdoba,II.5.1,156.86916,TJ,N2O,3.9,kg/TJ,611.789724,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,c2423173-fe05-3ee7-a8d9-be83c0c7b40e +2013,Santa Fe,II.5.1,606.88824,TJ,CO2,74100.0,kg/TJ,44970418.584,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,024469e2-5583-3949-b2fd-9eea25743c7d +2013,Santa Fe,II.5.1,606.88824,TJ,CH4,3.9,kg/TJ,2366.864136,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,24236ebe-c44c-384b-8371-599bae45aa24 +2013,Santa Fe,II.5.1,606.88824,TJ,N2O,3.9,kg/TJ,2366.864136,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,24236ebe-c44c-384b-8371-599bae45aa24 +2013,Buenos Aires,II.5.1,3.90096,TJ,CO2,74100.0,kg/TJ,289061.136,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,d113f0ab-dfbd-3999-8b01-9f72fcf4d211 +2013,Buenos Aires,II.5.1,3.90096,TJ,CH4,3.9,kg/TJ,15.213744,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,7928a8e8-1873-356b-a5cd-4495eec8a987 +2013,Buenos Aires,II.5.1,3.90096,TJ,N2O,3.9,kg/TJ,15.213744,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,7928a8e8-1873-356b-a5cd-4495eec8a987 +2013,Capital Federal,II.5.1,3.8287199999999997,TJ,CO2,74100.0,kg/TJ,283708.152,Gas Oil combustion consumption by agriculture machines,AR-C,SESCO,annual,kg,752ccbdc-bc28-3a66-943f-c80529d7645c +2013,Capital Federal,II.5.1,3.8287199999999997,TJ,CH4,3.9,kg/TJ,14.932007999999998,Gas Oil combustion consumption by agriculture machines,AR-C,SESCO,annual,kg,bd364d3c-ebf8-3aac-bf9e-10e402f14a4c +2013,Capital Federal,II.5.1,3.8287199999999997,TJ,N2O,3.9,kg/TJ,14.932007999999998,Gas Oil combustion consumption by agriculture machines,AR-C,SESCO,annual,kg,bd364d3c-ebf8-3aac-bf9e-10e402f14a4c +2013,Santa Fe,II.5.1,20.15496,TJ,CO2,74100.0,kg/TJ,1493482.5359999998,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,9b5b91d0-810b-355e-8a1a-ad79d408dd2e +2013,Santa Fe,II.5.1,20.15496,TJ,CH4,3.9,kg/TJ,78.604344,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,2b1b94c7-b79b-3394-8c18-132eb7916bb9 +2013,Santa Fe,II.5.1,20.15496,TJ,N2O,3.9,kg/TJ,78.604344,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,2b1b94c7-b79b-3394-8c18-132eb7916bb9 +2013,Capital Federal,II.5.1,0.41118,TJ,CO2,73300.0,kg/TJ,30139.494,Naphtha combustion consumption by agriculture machines,AR-C,SESCO,annual,kg,332cb377-846e-3a62-87f5-a159daaffc74 +2013,Capital Federal,II.5.1,0.41118,TJ,CH4,0.5,kg/TJ,0.20559,Naphtha combustion consumption by agriculture machines,AR-C,SESCO,annual,kg,d5eac6e2-f379-3189-90f7-afc08d64d8bb +2013,Capital Federal,II.5.1,0.41118,TJ,N2O,2.0,kg/TJ,0.82236,Naphtha combustion consumption by agriculture machines,AR-C,SESCO,annual,kg,7a45f00a-5677-3b50-bbbb-cce93bb13762 +2013,Santa Fe,II.5.1,34.504855,TJ,CO2,73300.0,kg/TJ,2529205.8715,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,dd4cbecb-dc02-36c0-9f35-36c2150f8ae3 +2013,Santa Fe,II.5.1,34.504855,TJ,CH4,0.5,kg/TJ,17.2524275,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,9a2ed960-b8b1-3c88-9dbb-e7831db22f9e +2013,Santa Fe,II.5.1,34.504855,TJ,N2O,2.0,kg/TJ,69.00971,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,4c967114-9674-328c-a86e-9ec2acc6aa9d +2013,Buenos Aires,II.2.1,443.08403999999996,TJ,CO2,74100.0,kg/TJ,32832527.363999996,Gas Oil combustion consumption by railway transport,AR-B,SESCO,annual,kg,0c881810-bae7-3c7c-a900-bcc83d3515cb +2013,Buenos Aires,II.2.1,443.08403999999996,TJ,CH4,3.9,kg/TJ,1728.0277559999997,Gas Oil combustion consumption by railway transport,AR-B,SESCO,annual,kg,b1eeb60a-1d9b-38b2-9520-459528216b18 +2013,Buenos Aires,II.2.1,443.08403999999996,TJ,N2O,3.9,kg/TJ,1728.0277559999997,Gas Oil combustion consumption by railway transport,AR-B,SESCO,annual,kg,b1eeb60a-1d9b-38b2-9520-459528216b18 +2013,Capital Federal,II.2.1,1630.38456,TJ,CO2,74100.0,kg/TJ,120811495.896,Gas Oil combustion consumption by railway transport,AR-C,SESCO,annual,kg,7b9ab22e-9097-3a11-ae91-160fba969637 +2013,Capital Federal,II.2.1,1630.38456,TJ,CH4,3.9,kg/TJ,6358.499784,Gas Oil combustion consumption by railway transport,AR-C,SESCO,annual,kg,c8ee5a44-2d3c-35b0-81bd-5ddcec96d666 +2013,Capital Federal,II.2.1,1630.38456,TJ,N2O,3.9,kg/TJ,6358.499784,Gas Oil combustion consumption by railway transport,AR-C,SESCO,annual,kg,c8ee5a44-2d3c-35b0-81bd-5ddcec96d666 +2013,Santa Fe,II.2.1,303.62471999999997,TJ,CO2,74100.0,kg/TJ,22498591.751999997,Gas Oil combustion consumption by railway transport,AR-S,SESCO,annual,kg,d1da070e-e768-3221-adcc-7bf1c5fa6401 +2013,Santa Fe,II.2.1,303.62471999999997,TJ,CH4,3.9,kg/TJ,1184.1364079999998,Gas Oil combustion consumption by railway transport,AR-S,SESCO,annual,kg,9f2b0a48-85cc-33fd-b7eb-30830a7ab6ef +2013,Santa Fe,II.2.1,303.62471999999997,TJ,N2O,3.9,kg/TJ,1184.1364079999998,Gas Oil combustion consumption by railway transport,AR-S,SESCO,annual,kg,9f2b0a48-85cc-33fd-b7eb-30830a7ab6ef +2013,Capital Federal,II.2.1,0.68628,TJ,CO2,74100.0,kg/TJ,50853.348,Gas Oil combustion consumption by railway transport,AR-C,SESCO,annual,kg,46972f21-d00f-3017-87d5-e043e7c0b7d3 +2013,Capital Federal,II.2.1,0.68628,TJ,CH4,3.9,kg/TJ,2.676492,Gas Oil combustion consumption by railway transport,AR-C,SESCO,annual,kg,47b2f874-8eba-3024-b2eb-54c34fb88df1 +2013,Capital Federal,II.2.1,0.68628,TJ,N2O,3.9,kg/TJ,2.676492,Gas Oil combustion consumption by railway transport,AR-C,SESCO,annual,kg,47b2f874-8eba-3024-b2eb-54c34fb88df1 +2013,Buenos Aires,II.1.1,4.5629,TJ,CO2,69300.0,kg/TJ,316208.97,Motor Gasoline combustion consumption by freight transport,AR-B,SESCO,annual,kg,19fa4822-4490-3a0b-8275-e45fb9178343 +2013,Buenos Aires,II.1.1,4.5629,TJ,CH4,33.0,kg/TJ,150.5757,Motor Gasoline combustion consumption by freight transport,AR-B,SESCO,annual,kg,d8cfb1e4-ee14-3699-8fdf-ef22f9e29f8f +2013,Buenos Aires,II.1.1,4.5629,TJ,N2O,3.2,kg/TJ,14.601280000000001,Motor Gasoline combustion consumption by freight transport,AR-B,SESCO,annual,kg,9094cffb-c094-313d-b7bb-cbede110c6d7 +2013,Capital Federal,II.1.1,11.916699999999999,TJ,CO2,69300.0,kg/TJ,825827.3099999999,Motor Gasoline combustion consumption by freight transport,AR-C,SESCO,annual,kg,9772a4e3-39c9-3629-bd9d-31e48bad6532 +2013,Capital Federal,II.1.1,11.916699999999999,TJ,CH4,33.0,kg/TJ,393.25109999999995,Motor Gasoline combustion consumption by freight transport,AR-C,SESCO,annual,kg,7e5d11cf-9bc7-3915-a3e6-d2374541009c +2013,Capital Federal,II.1.1,11.916699999999999,TJ,N2O,3.2,kg/TJ,38.13344,Motor Gasoline combustion consumption by freight transport,AR-C,SESCO,annual,kg,94e183b5-d8ba-3429-838c-cc21cd61d04a +2013,Buenos Aires,II.1.1,668.83404,TJ,CO2,74100.0,kg/TJ,49560602.364,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,a3ab51da-fbd1-337b-88c7-9bff16f1bf78 +2013,Buenos Aires,II.1.1,668.83404,TJ,CH4,3.9,kg/TJ,2608.4527559999997,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,6bd22d26-468b-380c-82a5-3638d3c3e160 +2013,Buenos Aires,II.1.1,668.83404,TJ,N2O,3.9,kg/TJ,2608.4527559999997,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,6bd22d26-468b-380c-82a5-3638d3c3e160 +2013,Capital Federal,II.1.1,255.58512,TJ,CO2,74100.0,kg/TJ,18938857.392,Gas Oil combustion consumption by freight transport,AR-C,SESCO,annual,kg,ef07cecb-882b-3f77-83ce-0f36cbf7038f +2013,Capital Federal,II.1.1,255.58512,TJ,CH4,3.9,kg/TJ,996.7819679999999,Gas Oil combustion consumption by freight transport,AR-C,SESCO,annual,kg,03d8632e-5b2f-32b8-82ec-ba477f66c7a3 +2013,Capital Federal,II.1.1,255.58512,TJ,N2O,3.9,kg/TJ,996.7819679999999,Gas Oil combustion consumption by freight transport,AR-C,SESCO,annual,kg,03d8632e-5b2f-32b8-82ec-ba477f66c7a3 +2013,Córdoba,II.1.1,195.48144,TJ,CO2,74100.0,kg/TJ,14485174.704,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,91723061-ec58-35f1-985b-6dfc269492f6 +2013,Córdoba,II.1.1,195.48144,TJ,CH4,3.9,kg/TJ,762.377616,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,daf7f40b-b681-330c-8ba5-7e51ac259c4f +2013,Córdoba,II.1.1,195.48144,TJ,N2O,3.9,kg/TJ,762.377616,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,daf7f40b-b681-330c-8ba5-7e51ac259c4f +2013,Capital Federal,II.1.1,143.07132,TJ,CO2,74100.0,kg/TJ,10601584.811999999,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,525ee814-2a3e-3579-9469-627720741736 +2013,Capital Federal,II.1.1,143.07132,TJ,CH4,3.9,kg/TJ,557.9781479999999,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,8e819522-036b-367f-9665-1d88dc3e4957 +2013,Capital Federal,II.1.1,143.07132,TJ,N2O,3.9,kg/TJ,557.9781479999999,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,8e819522-036b-367f-9665-1d88dc3e4957 +2013,Misiones,II.1.1,129.77916,TJ,CO2,74100.0,kg/TJ,9616635.756,Gas Oil combustion consumption by public passenger transport,AR-N,SESCO,annual,kg,1266e2ac-affd-3ac4-b3cd-7e61a7c50e33 +2013,Misiones,II.1.1,129.77916,TJ,CH4,3.9,kg/TJ,506.13872399999997,Gas Oil combustion consumption by public passenger transport,AR-N,SESCO,annual,kg,60565ebd-0215-35db-a2d5-c662e8826d0c +2013,Misiones,II.1.1,129.77916,TJ,N2O,3.9,kg/TJ,506.13872399999997,Gas Oil combustion consumption by public passenger transport,AR-N,SESCO,annual,kg,60565ebd-0215-35db-a2d5-c662e8826d0c +2013,Buenos Aires,II.5.1,13.4229,TJ,CO2,69300.0,kg/TJ,930206.97,Motor Gasoline combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,df6fb6a7-e165-3f0b-9ec2-2d0f038e312b +2013,Buenos Aires,II.5.1,13.4229,TJ,CH4,33.0,kg/TJ,442.95570000000004,Motor Gasoline combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,076e0942-5906-3747-af82-d0b71985f5f7 +2013,Buenos Aires,II.5.1,13.4229,TJ,N2O,3.2,kg/TJ,42.95328000000001,Motor Gasoline combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,675cf6b3-ce8b-30cd-a274-01610a809abd +2013,Buenos Aires,II.5.1,9182.28192,TJ,CO2,74100.0,kg/TJ,680407090.272,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,c6f79b74-69f7-38ef-ab1e-6363036a1b07 +2013,Buenos Aires,II.5.1,9182.28192,TJ,CH4,3.9,kg/TJ,35810.899487999995,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,e201dabe-c0e6-3358-8e3e-3d9a7fe8d9c4 +2013,Buenos Aires,II.5.1,9182.28192,TJ,N2O,3.9,kg/TJ,35810.899487999995,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,e201dabe-c0e6-3358-8e3e-3d9a7fe8d9c4 +2013,Capital Federal,II.5.1,10.25808,TJ,CO2,74100.0,kg/TJ,760123.728,Gas Oil combustion consumption by agriculture machines,AR-C,SESCO,annual,kg,546c9ed8-5182-3c57-a6cd-0841765ba4d6 +2013,Capital Federal,II.5.1,10.25808,TJ,CH4,3.9,kg/TJ,40.006512,Gas Oil combustion consumption by agriculture machines,AR-C,SESCO,annual,kg,668eaafa-2007-37d4-87c4-ea46e7bae8ac +2013,Capital Federal,II.5.1,10.25808,TJ,N2O,3.9,kg/TJ,40.006512,Gas Oil combustion consumption by agriculture machines,AR-C,SESCO,annual,kg,668eaafa-2007-37d4-87c4-ea46e7bae8ac +2013,Catamarca,II.5.1,107.52924,TJ,CO2,74100.0,kg/TJ,7967916.684,Gas Oil combustion consumption by agriculture machines,AR-K,SESCO,annual,kg,83e3b390-1816-33b2-b7d0-c539c5d41448 +2013,Catamarca,II.5.1,107.52924,TJ,CH4,3.9,kg/TJ,419.364036,Gas Oil combustion consumption by agriculture machines,AR-K,SESCO,annual,kg,5f331f7c-992e-3bc7-ab9e-f93be501db5d +2013,Catamarca,II.5.1,107.52924,TJ,N2O,3.9,kg/TJ,419.364036,Gas Oil combustion consumption by agriculture machines,AR-K,SESCO,annual,kg,5f331f7c-992e-3bc7-ab9e-f93be501db5d +2013,Chaco,II.5.1,1361.68788,TJ,CO2,74100.0,kg/TJ,100901071.90799999,Gas Oil combustion consumption by agriculture machines,AR-H,SESCO,annual,kg,9a303c16-2425-353b-9bac-e51383f25ad7 +2013,Chaco,II.5.1,1361.68788,TJ,CH4,3.9,kg/TJ,5310.582732,Gas Oil combustion consumption by agriculture machines,AR-H,SESCO,annual,kg,97242177-4dec-328a-9a9c-e80524e58d46 +2013,Chaco,II.5.1,1361.68788,TJ,N2O,3.9,kg/TJ,5310.582732,Gas Oil combustion consumption by agriculture machines,AR-H,SESCO,annual,kg,97242177-4dec-328a-9a9c-e80524e58d46 +2013,Chubut,II.5.1,17.265359999999998,TJ,CO2,74100.0,kg/TJ,1279363.1759999997,Gas Oil combustion consumption by agriculture machines,AR-U,SESCO,annual,kg,a4a19dfa-6439-3b18-a1f6-f1415cb7660a +2013,Chubut,II.5.1,17.265359999999998,TJ,CH4,3.9,kg/TJ,67.334904,Gas Oil combustion consumption by agriculture machines,AR-U,SESCO,annual,kg,966f2316-955f-349d-8415-4ecde0a4737e +2013,Chubut,II.5.1,17.265359999999998,TJ,N2O,3.9,kg/TJ,67.334904,Gas Oil combustion consumption by agriculture machines,AR-U,SESCO,annual,kg,966f2316-955f-349d-8415-4ecde0a4737e +2013,Corrientes,II.5.1,386.77295999999996,TJ,CO2,74100.0,kg/TJ,28659876.335999995,Gas Oil combustion consumption by agriculture machines,AR-W,SESCO,annual,kg,6d681cb3-097f-3cc7-a321-72cf8011ae81 +2013,Corrientes,II.5.1,386.77295999999996,TJ,CH4,3.9,kg/TJ,1508.4145439999998,Gas Oil combustion consumption by agriculture machines,AR-W,SESCO,annual,kg,2f550134-fc93-314e-88ac-273e98fa6b39 +2013,Corrientes,II.5.1,386.77295999999996,TJ,N2O,3.9,kg/TJ,1508.4145439999998,Gas Oil combustion consumption by agriculture machines,AR-W,SESCO,annual,kg,2f550134-fc93-314e-88ac-273e98fa6b39 +2013,Córdoba,II.5.1,7703.240159999999,TJ,CO2,74100.0,kg/TJ,570810095.856,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,c95690e8-1ea9-3d5b-8ed7-6878170a0579 +2013,Córdoba,II.5.1,7703.240159999999,TJ,CH4,3.9,kg/TJ,30042.636623999995,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,d1b21f6e-927f-30e5-9139-c016d1daee02 +2013,Córdoba,II.5.1,7703.240159999999,TJ,N2O,3.9,kg/TJ,30042.636623999995,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,d1b21f6e-927f-30e5-9139-c016d1daee02 +2013,Entre Rios,II.5.1,2400.02952,TJ,CO2,74100.0,kg/TJ,177842187.432,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,86cf46df-fbe6-3c42-bbd3-20afda986b58 +2013,Entre Rios,II.5.1,2400.02952,TJ,CH4,3.9,kg/TJ,9360.115128,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,27f7e57f-7c31-3a02-8957-f0b94d1327df +2013,Entre Rios,II.5.1,2400.02952,TJ,N2O,3.9,kg/TJ,9360.115128,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,27f7e57f-7c31-3a02-8957-f0b94d1327df +2013,Formosa,II.5.1,416.60808,TJ,CO2,74100.0,kg/TJ,30870658.727999996,Gas Oil combustion consumption by agriculture machines,AR-P,SESCO,annual,kg,835e118e-e1f2-3843-b6b2-f1557ede98e1 +2013,Formosa,II.5.1,416.60808,TJ,CH4,3.9,kg/TJ,1624.7715119999998,Gas Oil combustion consumption by agriculture machines,AR-P,SESCO,annual,kg,2ff53d3d-4248-3a2c-97b5-ddcab2a7e078 +2013,Formosa,II.5.1,416.60808,TJ,N2O,3.9,kg/TJ,1624.7715119999998,Gas Oil combustion consumption by agriculture machines,AR-P,SESCO,annual,kg,2ff53d3d-4248-3a2c-97b5-ddcab2a7e078 +2013,Jujuy,II.5.1,961.91172,TJ,CO2,74100.0,kg/TJ,71277658.45199999,Gas Oil combustion consumption by agriculture machines,AR-Y,SESCO,annual,kg,bce4ea19-dfa6-309a-8ea7-eb33b7bdfb8b +2013,Jujuy,II.5.1,961.91172,TJ,CH4,3.9,kg/TJ,3751.4557079999995,Gas Oil combustion consumption by agriculture machines,AR-Y,SESCO,annual,kg,708f22c8-a559-32ff-988b-a03623f72437 +2013,Jujuy,II.5.1,961.91172,TJ,N2O,3.9,kg/TJ,3751.4557079999995,Gas Oil combustion consumption by agriculture machines,AR-Y,SESCO,annual,kg,708f22c8-a559-32ff-988b-a03623f72437 +2013,La Pampa,II.5.1,2224.5946799999997,TJ,CO2,74100.0,kg/TJ,164842465.788,Gas Oil combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,0ab45deb-504d-3eba-a181-4b11c3951330 +2013,La Pampa,II.5.1,2224.5946799999997,TJ,CH4,3.9,kg/TJ,8675.919251999998,Gas Oil combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,b46edce8-25fd-308c-93a5-4b040311cfe6 +2013,La Pampa,II.5.1,2224.5946799999997,TJ,N2O,3.9,kg/TJ,8675.919251999998,Gas Oil combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,b46edce8-25fd-308c-93a5-4b040311cfe6 +2013,Mendoza,II.5.1,514.4571599999999,TJ,CO2,74100.0,kg/TJ,38121275.555999994,Gas Oil combustion consumption by agriculture machines,AR-M,SESCO,annual,kg,62ace1f3-5be1-317d-b6c0-200f91842d64 +2013,Mendoza,II.5.1,514.4571599999999,TJ,CH4,3.9,kg/TJ,2006.3829239999998,Gas Oil combustion consumption by agriculture machines,AR-M,SESCO,annual,kg,5629a370-adfc-35bd-8156-f63791a3c2ff +2013,Mendoza,II.5.1,514.4571599999999,TJ,N2O,3.9,kg/TJ,2006.3829239999998,Gas Oil combustion consumption by agriculture machines,AR-M,SESCO,annual,kg,5629a370-adfc-35bd-8156-f63791a3c2ff +2013,Misiones,II.5.1,1131.49512,TJ,CO2,74100.0,kg/TJ,83843788.392,Gas Oil combustion consumption by agriculture machines,AR-N,SESCO,annual,kg,d891d44d-8fcc-3150-9e33-ee3f5ec4792c +2013,Misiones,II.5.1,1131.49512,TJ,CH4,3.9,kg/TJ,4412.830968,Gas Oil combustion consumption by agriculture machines,AR-N,SESCO,annual,kg,4fe09dd1-5c0d-3b4c-a3d8-8f9e0aa244dc +2013,Misiones,II.5.1,1131.49512,TJ,N2O,3.9,kg/TJ,4412.830968,Gas Oil combustion consumption by agriculture machines,AR-N,SESCO,annual,kg,4fe09dd1-5c0d-3b4c-a3d8-8f9e0aa244dc +2013,Rio Negro,II.5.1,181.75583999999998,TJ,CO2,74100.0,kg/TJ,13468107.743999999,Gas Oil combustion consumption by agriculture machines,AR-R,SESCO,annual,kg,b04659e2-ea50-34b0-b65e-c1c158fe4246 +2013,Rio Negro,II.5.1,181.75583999999998,TJ,CH4,3.9,kg/TJ,708.847776,Gas Oil combustion consumption by agriculture machines,AR-R,SESCO,annual,kg,af931b1f-f62d-3e88-802c-7b324c238b7a +2013,Rio Negro,II.5.1,181.75583999999998,TJ,N2O,3.9,kg/TJ,708.847776,Gas Oil combustion consumption by agriculture machines,AR-R,SESCO,annual,kg,af931b1f-f62d-3e88-802c-7b324c238b7a +2013,Salta,II.5.1,1749.94176,TJ,CO2,74100.0,kg/TJ,129670684.416,Gas Oil combustion consumption by agriculture machines,AR-A,SESCO,annual,kg,e87ac00e-cbec-3670-9e56-8dbcb092bf90 +2013,Salta,II.5.1,1749.94176,TJ,CH4,3.9,kg/TJ,6824.772864,Gas Oil combustion consumption by agriculture machines,AR-A,SESCO,annual,kg,b3321821-9e5b-388b-bdd7-f4def2b481b8 +2013,Salta,II.5.1,1749.94176,TJ,N2O,3.9,kg/TJ,6824.772864,Gas Oil combustion consumption by agriculture machines,AR-A,SESCO,annual,kg,b3321821-9e5b-388b-bdd7-f4def2b481b8 +2013,San Luis,II.5.1,579.22032,TJ,CO2,74100.0,kg/TJ,42920225.712,Gas Oil combustion consumption by agriculture machines,AR-D,SESCO,annual,kg,9410f745-e2aa-32df-8b23-b85814d686b2 +2013,San Luis,II.5.1,579.22032,TJ,CH4,3.9,kg/TJ,2258.959248,Gas Oil combustion consumption by agriculture machines,AR-D,SESCO,annual,kg,ef347b1d-22c0-329e-838a-54960666f1d3 +2013,San Luis,II.5.1,579.22032,TJ,N2O,3.9,kg/TJ,2258.959248,Gas Oil combustion consumption by agriculture machines,AR-D,SESCO,annual,kg,ef347b1d-22c0-329e-838a-54960666f1d3 +2013,Santa Cruz,II.5.1,2.05884,TJ,CO2,74100.0,kg/TJ,152560.044,Gas Oil combustion consumption by agriculture machines,AR-Z,SESCO,annual,kg,078ad81a-ac82-352c-bb7b-12aaf1d058f3 +2013,Santa Cruz,II.5.1,2.05884,TJ,CH4,3.9,kg/TJ,8.029475999999999,Gas Oil combustion consumption by agriculture machines,AR-Z,SESCO,annual,kg,7eb054d7-338c-3e62-9ef0-4f481a710008 +2013,Santa Cruz,II.5.1,2.05884,TJ,N2O,3.9,kg/TJ,8.029475999999999,Gas Oil combustion consumption by agriculture machines,AR-Z,SESCO,annual,kg,7eb054d7-338c-3e62-9ef0-4f481a710008 +2013,Santa Fe,II.5.1,6246.37608,TJ,CO2,74100.0,kg/TJ,462856467.528,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,e5b3f34c-c515-3577-8448-92d98e684428 +2013,Santa Fe,II.5.1,6246.37608,TJ,CH4,3.9,kg/TJ,24360.866712,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,3bb3f757-fcc4-3151-95e8-9b12f8f9d1d7 +2013,Santa Fe,II.5.1,6246.37608,TJ,N2O,3.9,kg/TJ,24360.866712,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,3bb3f757-fcc4-3151-95e8-9b12f8f9d1d7 +2013,Santiago del Estero,II.5.1,1476.80232,TJ,CO2,74100.0,kg/TJ,109431051.912,Gas Oil combustion consumption by agriculture machines,AR-G,SESCO,annual,kg,d9580bdb-6203-35a4-8a7f-91527438a421 +2013,Santiago del Estero,II.5.1,1476.80232,TJ,CH4,3.9,kg/TJ,5759.529048,Gas Oil combustion consumption by agriculture machines,AR-G,SESCO,annual,kg,67242214-e3ba-3c29-af8a-1fec37da41ae +2013,Santiago del Estero,II.5.1,1476.80232,TJ,N2O,3.9,kg/TJ,5759.529048,Gas Oil combustion consumption by agriculture machines,AR-G,SESCO,annual,kg,67242214-e3ba-3c29-af8a-1fec37da41ae +2013,Tucuman,II.5.1,1382.1679199999999,TJ,CO2,74100.0,kg/TJ,102418642.872,Gas Oil combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,b31053b0-9735-3697-b500-47c2278be2fe +2013,Tucuman,II.5.1,1382.1679199999999,TJ,CH4,3.9,kg/TJ,5390.454887999999,Gas Oil combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,fedb805e-1fa7-3865-ac6f-ad2dea754704 +2013,Tucuman,II.5.1,1382.1679199999999,TJ,N2O,3.9,kg/TJ,5390.454887999999,Gas Oil combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,fedb805e-1fa7-3865-ac6f-ad2dea754704 +2013,Buenos Aires,II.5.1,100.34136,TJ,CO2,74100.0,kg/TJ,7435294.776,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,23bdfc6d-fb37-35e8-a7ff-235950ebcab5 +2013,Buenos Aires,II.5.1,100.34136,TJ,CH4,3.9,kg/TJ,391.331304,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,6b87e87e-1304-3606-9ce8-3e273503d9f5 +2013,Buenos Aires,II.5.1,100.34136,TJ,N2O,3.9,kg/TJ,391.331304,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,6b87e87e-1304-3606-9ce8-3e273503d9f5 +2013,Chaco,II.5.1,7.8380399999999995,TJ,CO2,74100.0,kg/TJ,580798.764,Gas Oil combustion consumption by agriculture machines,AR-H,SESCO,annual,kg,05fcc22f-0885-37c4-b9d6-a4c8b48d8cf4 +2013,Chaco,II.5.1,7.8380399999999995,TJ,CH4,3.9,kg/TJ,30.568355999999998,Gas Oil combustion consumption by agriculture machines,AR-H,SESCO,annual,kg,04b3e18a-fa6d-3f08-b9aa-a9558c569d42 +2013,Chaco,II.5.1,7.8380399999999995,TJ,N2O,3.9,kg/TJ,30.568355999999998,Gas Oil combustion consumption by agriculture machines,AR-H,SESCO,annual,kg,04b3e18a-fa6d-3f08-b9aa-a9558c569d42 +2013,Corrientes,II.5.1,18.56568,TJ,CO2,74100.0,kg/TJ,1375716.888,Gas Oil combustion consumption by agriculture machines,AR-W,SESCO,annual,kg,76dc9ab2-986b-3efb-8d7d-b437336d86ec +2013,Corrientes,II.5.1,18.56568,TJ,CH4,3.9,kg/TJ,72.406152,Gas Oil combustion consumption by agriculture machines,AR-W,SESCO,annual,kg,09bb5dbe-8bb8-358e-88d2-aa435a85c443 +2013,Corrientes,II.5.1,18.56568,TJ,N2O,3.9,kg/TJ,72.406152,Gas Oil combustion consumption by agriculture machines,AR-W,SESCO,annual,kg,09bb5dbe-8bb8-358e-88d2-aa435a85c443 +2013,Córdoba,II.5.1,22.61112,TJ,CO2,74100.0,kg/TJ,1675483.992,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,ab2a3acc-7187-3af1-8f55-a8264c6bfd11 +2013,Córdoba,II.5.1,22.61112,TJ,CH4,3.9,kg/TJ,88.183368,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,23a6d479-d20b-385e-8b41-57db297a0076 +2013,Córdoba,II.5.1,22.61112,TJ,N2O,3.9,kg/TJ,88.183368,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,23a6d479-d20b-385e-8b41-57db297a0076 +2013,Entre Rios,II.5.1,6.42936,TJ,CO2,74100.0,kg/TJ,476415.576,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,52da28e2-6270-3eef-a0f9-bf6970979f95 +2013,Entre Rios,II.5.1,6.42936,TJ,CH4,3.9,kg/TJ,25.074504,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,bc577fab-4b3b-3780-87c7-8d699452775b +2013,Entre Rios,II.5.1,6.42936,TJ,N2O,3.9,kg/TJ,25.074504,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,bc577fab-4b3b-3780-87c7-8d699452775b +2013,Jujuy,II.5.1,17.6988,TJ,CO2,74100.0,kg/TJ,1311481.0799999998,Gas Oil combustion consumption by agriculture machines,AR-Y,SESCO,annual,kg,02c37a66-d759-3bf8-97c2-68e42c7608de +2013,Jujuy,II.5.1,17.6988,TJ,CH4,3.9,kg/TJ,69.02532,Gas Oil combustion consumption by agriculture machines,AR-Y,SESCO,annual,kg,e91c7cf0-34bc-361d-bf62-ba7070588d5a +2013,Jujuy,II.5.1,17.6988,TJ,N2O,3.9,kg/TJ,69.02532,Gas Oil combustion consumption by agriculture machines,AR-Y,SESCO,annual,kg,e91c7cf0-34bc-361d-bf62-ba7070588d5a +2013,La Pampa,II.5.1,90.73344,TJ,CO2,74100.0,kg/TJ,6723347.904,Gas Oil combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,c2dcb365-f01e-39ba-8bdb-f011dc4f28a2 +2013,La Pampa,II.5.1,90.73344,TJ,CH4,3.9,kg/TJ,353.860416,Gas Oil combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,3b1c2e68-3b5c-3479-b48b-fcb3272d7488 +2013,La Pampa,II.5.1,90.73344,TJ,N2O,3.9,kg/TJ,353.860416,Gas Oil combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,3b1c2e68-3b5c-3479-b48b-fcb3272d7488 +2013,Misiones,II.5.1,18.09612,TJ,CO2,74100.0,kg/TJ,1340922.4919999999,Gas Oil combustion consumption by agriculture machines,AR-N,SESCO,annual,kg,6d1001a5-985f-37cc-85b1-cab23e9300b1 +2013,Misiones,II.5.1,18.09612,TJ,CH4,3.9,kg/TJ,70.574868,Gas Oil combustion consumption by agriculture machines,AR-N,SESCO,annual,kg,c000a905-a2d5-39ba-beba-6ac0f7d23d78 +2013,Misiones,II.5.1,18.09612,TJ,N2O,3.9,kg/TJ,70.574868,Gas Oil combustion consumption by agriculture machines,AR-N,SESCO,annual,kg,c000a905-a2d5-39ba-beba-6ac0f7d23d78 +2013,Salta,II.5.1,123.31367999999999,TJ,CO2,74100.0,kg/TJ,9137543.688,Gas Oil combustion consumption by agriculture machines,AR-A,SESCO,annual,kg,6b90243f-565b-3580-9751-0a4ab72272be +2013,Salta,II.5.1,123.31367999999999,TJ,CH4,3.9,kg/TJ,480.92335199999997,Gas Oil combustion consumption by agriculture machines,AR-A,SESCO,annual,kg,95e40b21-e2a1-3487-afa1-c97cd42a5640 +2013,Salta,II.5.1,123.31367999999999,TJ,N2O,3.9,kg/TJ,480.92335199999997,Gas Oil combustion consumption by agriculture machines,AR-A,SESCO,annual,kg,95e40b21-e2a1-3487-afa1-c97cd42a5640 +2013,Santa Fe,II.5.1,88.96356,TJ,CO2,74100.0,kg/TJ,6592199.796,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,758ef544-1e0a-3afd-abe7-7f21d40a3084 +2013,Santa Fe,II.5.1,88.96356,TJ,CH4,3.9,kg/TJ,346.957884,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,b2f35b30-7722-3677-865d-f1012ea10f08 +2013,Santa Fe,II.5.1,88.96356,TJ,N2O,3.9,kg/TJ,346.957884,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,b2f35b30-7722-3677-865d-f1012ea10f08 +2013,Santiago del Estero,II.5.1,97.19892,TJ,CO2,74100.0,kg/TJ,7202439.972,Gas Oil combustion consumption by agriculture machines,AR-G,SESCO,annual,kg,1b3b26f5-140e-34ce-bcdb-01974f9ac873 +2013,Santiago del Estero,II.5.1,97.19892,TJ,CH4,3.9,kg/TJ,379.075788,Gas Oil combustion consumption by agriculture machines,AR-G,SESCO,annual,kg,4c73ea1b-37dd-3f19-8ee6-8171006119f9 +2013,Santiago del Estero,II.5.1,97.19892,TJ,N2O,3.9,kg/TJ,379.075788,Gas Oil combustion consumption by agriculture machines,AR-G,SESCO,annual,kg,4c73ea1b-37dd-3f19-8ee6-8171006119f9 +2013,Tucuman,II.5.1,92.50332,TJ,CO2,74100.0,kg/TJ,6854496.012,Gas Oil combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,32ed3c0a-23c4-3f63-bc35-d6c9f5170946 +2013,Tucuman,II.5.1,92.50332,TJ,CH4,3.9,kg/TJ,360.762948,Gas Oil combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,80940d21-863e-3e5a-a369-319079325d97 +2013,Tucuman,II.5.1,92.50332,TJ,N2O,3.9,kg/TJ,360.762948,Gas Oil combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,80940d21-863e-3e5a-a369-319079325d97 +2013,Buenos Aires,II.5.1,10.662567,TJ,CO2,71500.0,kg/TJ,762373.5405,Jet Kerosene combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,418c4411-458c-30d6-ad4f-60605d97a716 +2013,Buenos Aires,II.5.1,10.662567,TJ,CH4,0.5,kg/TJ,5.3312835,Jet Kerosene combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,72675234-50ad-36dc-81a2-8286ef6422b3 +2013,Buenos Aires,II.5.1,10.662567,TJ,N2O,2.0,kg/TJ,21.325134,Jet Kerosene combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,92f30965-e91d-3786-abd5-b99d224b6db6 +2013,Córdoba,II.5.1,0.62906,TJ,CO2,71500.0,kg/TJ,44977.78999999999,Jet Kerosene combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,11b9baef-3706-3fd4-9f1c-cb581ac4b75b +2013,Córdoba,II.5.1,0.62906,TJ,CH4,0.5,kg/TJ,0.31453,Jet Kerosene combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,e4a00eb6-4649-3045-a36c-a3da6a04d8c6 +2013,Córdoba,II.5.1,0.62906,TJ,N2O,2.0,kg/TJ,1.25812,Jet Kerosene combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,845cbfb1-a493-3cfb-80e7-7a024903736c +2013,Entre Rios,II.5.1,0.28307699999999997,TJ,CO2,71500.0,kg/TJ,20240.0055,Jet Kerosene combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,cc792cdc-d228-338a-bb13-ca68e37f94ef +2013,Entre Rios,II.5.1,0.28307699999999997,TJ,CH4,0.5,kg/TJ,0.14153849999999998,Jet Kerosene combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,dc4b07dd-66f0-3b8c-b844-1bd9cba8b39e +2013,Entre Rios,II.5.1,0.28307699999999997,TJ,N2O,2.0,kg/TJ,0.5661539999999999,Jet Kerosene combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,37f2b4ef-68e3-3354-a06c-2e31094aa7bb +2013,La Pampa,II.5.1,3.050941,TJ,CO2,71500.0,kg/TJ,218142.28149999998,Jet Kerosene combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,928df6a6-5e75-3045-aa77-d7d4f8f1d3b9 +2013,La Pampa,II.5.1,3.050941,TJ,CH4,0.5,kg/TJ,1.5254705,Jet Kerosene combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,f6e08f47-40fa-37cf-9ec0-289198924de0 +2013,La Pampa,II.5.1,3.050941,TJ,N2O,2.0,kg/TJ,6.101882,Jet Kerosene combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,5a3f7f9f-3732-3fde-b551-d8272f00c0c1 +2013,Santa Fe,II.5.1,4.277608,TJ,CO2,71500.0,kg/TJ,305848.972,Jet Kerosene combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,7abfcf92-91d8-3b95-8f33-b49a7c2f3c76 +2013,Santa Fe,II.5.1,4.277608,TJ,CH4,0.5,kg/TJ,2.138804,Jet Kerosene combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,08d4cfdf-d282-39bd-bf2d-29cc0133bf9f +2013,Santa Fe,II.5.1,4.277608,TJ,N2O,2.0,kg/TJ,8.555216,Jet Kerosene combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,b0210b15-ab4a-3cf5-8b76-e642732bfecd +2013,Buenos Aires,II.5.1,4.420185,TJ,CO2,73300.0,kg/TJ,323999.5605,Naphtha combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,fe367594-a8bf-3936-86f3-7b9e442df89f +2013,Buenos Aires,II.5.1,4.420185,TJ,CH4,0.5,kg/TJ,2.2100925,Naphtha combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,14fa37f4-973f-38e6-8151-32cc4129e76f +2013,Buenos Aires,II.5.1,4.420185,TJ,N2O,2.0,kg/TJ,8.84037,Naphtha combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,085b4fe5-a00e-3100-a896-7451aecf52af +2013,Chubut,II.5.1,13.466145,TJ,CO2,73300.0,kg/TJ,987068.4284999999,Naphtha combustion consumption by agriculture machines,AR-U,SESCO,annual,kg,a8557e58-c40c-38c2-92b4-d31320b7d4de +2013,Chubut,II.5.1,13.466145,TJ,CH4,0.5,kg/TJ,6.7330725,Naphtha combustion consumption by agriculture machines,AR-U,SESCO,annual,kg,9a001e28-de12-323e-bdc4-e64bb62d29d9 +2013,Chubut,II.5.1,13.466145,TJ,N2O,2.0,kg/TJ,26.93229,Naphtha combustion consumption by agriculture machines,AR-U,SESCO,annual,kg,11d2915c-7d2f-3d55-a3c0-a5db0eedb4b8 +2013,Entre Rios,II.5.1,3.9747399999999997,TJ,CO2,73300.0,kg/TJ,291348.442,Naphtha combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,d53833a8-4a51-31b9-a910-6b509c4f23b7 +2013,Entre Rios,II.5.1,3.9747399999999997,TJ,CH4,0.5,kg/TJ,1.9873699999999999,Naphtha combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,66d40dc7-0da0-373f-9392-16bb929007ed +2013,Entre Rios,II.5.1,3.9747399999999997,TJ,N2O,2.0,kg/TJ,7.949479999999999,Naphtha combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,5b07dd04-ca66-3898-adcd-a31d677e3a78 +2013,La Pampa,II.5.1,0.925155,TJ,CO2,73300.0,kg/TJ,67813.8615,Naphtha combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,7a34a702-908d-3cfe-bb66-d082140e3a5f +2013,La Pampa,II.5.1,0.925155,TJ,CH4,0.5,kg/TJ,0.4625775,Naphtha combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,8a02bb0e-aabd-3069-90eb-52d017c4a570 +2013,La Pampa,II.5.1,0.925155,TJ,N2O,2.0,kg/TJ,1.85031,Naphtha combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,5d5f008a-b0ce-32f3-a125-9dcb26b32298 +2013,Santa Fe,II.5.1,31.352475,TJ,CO2,73300.0,kg/TJ,2298136.4175,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,b42ed581-09e7-3e0b-a319-5496cb345e36 +2013,Santa Fe,II.5.1,31.352475,TJ,CH4,0.5,kg/TJ,15.6762375,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,adec9bb1-4595-3a87-b039-2fa77fc220e3 +2013,Santa Fe,II.5.1,31.352475,TJ,N2O,2.0,kg/TJ,62.70495,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,8fc8c276-279a-33d6-a83c-8308d33127a7 +2013,Santiago del Estero,II.5.1,0.445445,TJ,CO2,73300.0,kg/TJ,32651.118499999997,Naphtha combustion consumption by agriculture machines,AR-G,SESCO,annual,kg,3be055b5-4287-3f6f-a0fd-97ffecc30220 +2013,Santiago del Estero,II.5.1,0.445445,TJ,CH4,0.5,kg/TJ,0.2227225,Naphtha combustion consumption by agriculture machines,AR-G,SESCO,annual,kg,269c9357-6ece-3dff-826b-be3912569165 +2013,Santiago del Estero,II.5.1,0.445445,TJ,N2O,2.0,kg/TJ,0.89089,Naphtha combustion consumption by agriculture machines,AR-G,SESCO,annual,kg,7b08acc9-d21c-3264-a90e-3159be093d24 +2013,Buenos Aires,II.5.1,0.9594199999999999,TJ,CO2,73300.0,kg/TJ,70325.48599999999,Naphtha combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,34ee2ed7-cf4f-34a7-96ed-61fb814ce475 +2013,Buenos Aires,II.5.1,0.9594199999999999,TJ,CH4,0.5,kg/TJ,0.47970999999999997,Naphtha combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,b3db598f-8cc0-3f74-846b-835dfc246f3a +2013,Buenos Aires,II.5.1,0.9594199999999999,TJ,N2O,2.0,kg/TJ,1.9188399999999999,Naphtha combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,b068cdea-6315-3559-a4f6-5670c182c5d4 +2013,Santa Fe,II.5.1,2.26149,TJ,CO2,73300.0,kg/TJ,165767.21699999998,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,4e1129de-4979-3bda-910b-57f561a98bc7 +2013,Santa Fe,II.5.1,2.26149,TJ,CH4,0.5,kg/TJ,1.130745,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,a5f6adc7-2bbf-3217-9e69-26f1ba98c26d +2013,Santa Fe,II.5.1,2.26149,TJ,N2O,2.0,kg/TJ,4.52298,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,c0288695-de95-3afc-ba15-22e1efe7dcb0 +2013,Buenos Aires,II.1.1,43.192499999999995,TJ,CO2,69300.0,kg/TJ,2993240.2499999995,Motor Gasoline combustion consumption by freight transport,AR-B,SESCO,annual,kg,42f39cc2-88b7-309e-b49e-ea4a1f148c46 +2013,Buenos Aires,II.1.1,43.192499999999995,TJ,CH4,33.0,kg/TJ,1425.3525,Motor Gasoline combustion consumption by freight transport,AR-B,SESCO,annual,kg,4052bb14-c2db-380a-8b68-9f4f102c1e7e +2013,Buenos Aires,II.1.1,43.192499999999995,TJ,N2O,3.2,kg/TJ,138.21599999999998,Motor Gasoline combustion consumption by freight transport,AR-B,SESCO,annual,kg,7625451a-33a3-3f7e-b408-18f13720b98f +2013,Capital Federal,II.1.1,15.504999999999997,TJ,CO2,69300.0,kg/TJ,1074496.4999999998,Motor Gasoline combustion consumption by freight transport,AR-C,SESCO,annual,kg,62d904cc-ab3d-3726-8281-2d1f744ee945 +2013,Capital Federal,II.1.1,15.504999999999997,TJ,CH4,33.0,kg/TJ,511.6649999999999,Motor Gasoline combustion consumption by freight transport,AR-C,SESCO,annual,kg,c5500f26-c6f7-3f83-bb3e-a6fd312bca37 +2013,Capital Federal,II.1.1,15.504999999999997,TJ,N2O,3.2,kg/TJ,49.61599999999999,Motor Gasoline combustion consumption by freight transport,AR-C,SESCO,annual,kg,47b647f3-6438-390e-95c2-511cbfc0ea74 +2013,Buenos Aires,II.1.1,6913.22352,TJ,CO2,74100.0,kg/TJ,512269862.83199996,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,58a31817-623e-3908-b1c5-0a4c680e6bba +2013,Buenos Aires,II.1.1,6913.22352,TJ,CH4,3.9,kg/TJ,26961.571728,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,2a48b68b-b282-37c3-a3ad-354f88a9e4f4 +2013,Buenos Aires,II.1.1,6913.22352,TJ,N2O,3.9,kg/TJ,26961.571728,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,2a48b68b-b282-37c3-a3ad-354f88a9e4f4 +2013,Capital Federal,II.1.1,4009.7895599999997,TJ,CO2,74100.0,kg/TJ,297125406.39599997,Gas Oil combustion consumption by freight transport,AR-C,SESCO,annual,kg,28d9bc12-4c0c-3357-8140-2499457c04cc +2013,Capital Federal,II.1.1,4009.7895599999997,TJ,CH4,3.9,kg/TJ,15638.179283999998,Gas Oil combustion consumption by freight transport,AR-C,SESCO,annual,kg,2b695d44-4218-3c64-b0d7-c0b254508429 +2013,Capital Federal,II.1.1,4009.7895599999997,TJ,N2O,3.9,kg/TJ,15638.179283999998,Gas Oil combustion consumption by freight transport,AR-C,SESCO,annual,kg,2b695d44-4218-3c64-b0d7-c0b254508429 +2013,Catamarca,II.1.1,19.28808,TJ,CO2,74100.0,kg/TJ,1429246.7280000001,Gas Oil combustion consumption by freight transport,AR-K,SESCO,annual,kg,243457bb-72b1-3c23-bb17-a359f21613b2 +2013,Catamarca,II.1.1,19.28808,TJ,CH4,3.9,kg/TJ,75.223512,Gas Oil combustion consumption by freight transport,AR-K,SESCO,annual,kg,84884a7b-dedd-3734-bd0b-daaa12f39305 +2013,Catamarca,II.1.1,19.28808,TJ,N2O,3.9,kg/TJ,75.223512,Gas Oil combustion consumption by freight transport,AR-K,SESCO,annual,kg,84884a7b-dedd-3734-bd0b-daaa12f39305 +2013,Chaco,II.1.1,195.7704,TJ,CO2,74100.0,kg/TJ,14506586.639999999,Gas Oil combustion consumption by freight transport,AR-H,SESCO,annual,kg,9815914e-8025-3c58-b11b-dc596e167a2d +2013,Chaco,II.1.1,195.7704,TJ,CH4,3.9,kg/TJ,763.50456,Gas Oil combustion consumption by freight transport,AR-H,SESCO,annual,kg,d77925be-93bd-301e-9bbe-883e10422cda +2013,Chaco,II.1.1,195.7704,TJ,N2O,3.9,kg/TJ,763.50456,Gas Oil combustion consumption by freight transport,AR-H,SESCO,annual,kg,d77925be-93bd-301e-9bbe-883e10422cda +2013,Chubut,II.1.1,212.89128,TJ,CO2,74100.0,kg/TJ,15775243.848,Gas Oil combustion consumption by freight transport,AR-U,SESCO,annual,kg,6664c558-3aed-3b27-9867-96f84a97915b +2013,Chubut,II.1.1,212.89128,TJ,CH4,3.9,kg/TJ,830.275992,Gas Oil combustion consumption by freight transport,AR-U,SESCO,annual,kg,dcb96f3e-4553-39cc-a180-00d0f3562fb6 +2013,Chubut,II.1.1,212.89128,TJ,N2O,3.9,kg/TJ,830.275992,Gas Oil combustion consumption by freight transport,AR-U,SESCO,annual,kg,dcb96f3e-4553-39cc-a180-00d0f3562fb6 +2013,Corrientes,II.1.1,297.05088,TJ,CO2,74100.0,kg/TJ,22011470.208,Gas Oil combustion consumption by freight transport,AR-W,SESCO,annual,kg,3bb9e608-7e4b-3eb8-b753-5c0fa5e232a1 +2013,Corrientes,II.1.1,297.05088,TJ,CH4,3.9,kg/TJ,1158.498432,Gas Oil combustion consumption by freight transport,AR-W,SESCO,annual,kg,d5dcd818-3b7b-3694-83a1-f202f3191756 +2013,Corrientes,II.1.1,297.05088,TJ,N2O,3.9,kg/TJ,1158.498432,Gas Oil combustion consumption by freight transport,AR-W,SESCO,annual,kg,d5dcd818-3b7b-3694-83a1-f202f3191756 +2013,Córdoba,II.1.1,1935.2012399999999,TJ,CO2,74100.0,kg/TJ,143398411.884,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,d84b24d4-8d56-3c30-adf7-fc1ab182e391 +2013,Córdoba,II.1.1,1935.2012399999999,TJ,CH4,3.9,kg/TJ,7547.284835999999,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,f5459c5c-7a7e-39ab-a350-3871dc76ffbd +2013,Córdoba,II.1.1,1935.2012399999999,TJ,N2O,3.9,kg/TJ,7547.284835999999,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,f5459c5c-7a7e-39ab-a350-3871dc76ffbd +2013,Entre Rios,II.1.1,301.602,TJ,CO2,74100.0,kg/TJ,22348708.2,Gas Oil combustion consumption by freight transport,AR-E,SESCO,annual,kg,05d78a72-00f1-39c4-86ea-a68d32372cfb +2013,Entre Rios,II.1.1,301.602,TJ,CH4,3.9,kg/TJ,1176.2477999999999,Gas Oil combustion consumption by freight transport,AR-E,SESCO,annual,kg,caa3f3e8-7dd8-38be-b0ec-3f2172e77530 +2013,Entre Rios,II.1.1,301.602,TJ,N2O,3.9,kg/TJ,1176.2477999999999,Gas Oil combustion consumption by freight transport,AR-E,SESCO,annual,kg,caa3f3e8-7dd8-38be-b0ec-3f2172e77530 +2013,Formosa,II.1.1,1.2280799999999998,TJ,CO2,74100.0,kg/TJ,91000.72799999999,Gas Oil combustion consumption by freight transport,AR-P,SESCO,annual,kg,460c3f3e-4a99-338d-805c-0c684ec260bb +2013,Formosa,II.1.1,1.2280799999999998,TJ,CH4,3.9,kg/TJ,4.789511999999999,Gas Oil combustion consumption by freight transport,AR-P,SESCO,annual,kg,b6a218cc-b647-3fa3-86ca-4d28dfa9f637 +2013,Formosa,II.1.1,1.2280799999999998,TJ,N2O,3.9,kg/TJ,4.789511999999999,Gas Oil combustion consumption by freight transport,AR-P,SESCO,annual,kg,b6a218cc-b647-3fa3-86ca-4d28dfa9f637 +2013,Jujuy,II.1.1,93.1896,TJ,CO2,74100.0,kg/TJ,6905349.36,Gas Oil combustion consumption by freight transport,AR-Y,SESCO,annual,kg,c8ef4f7b-cd37-3380-a433-ba1cbc4dc550 +2013,Jujuy,II.1.1,93.1896,TJ,CH4,3.9,kg/TJ,363.43944,Gas Oil combustion consumption by freight transport,AR-Y,SESCO,annual,kg,a2c9b583-3f3e-33cb-9c2b-41202b888d11 +2013,Jujuy,II.1.1,93.1896,TJ,N2O,3.9,kg/TJ,363.43944,Gas Oil combustion consumption by freight transport,AR-Y,SESCO,annual,kg,a2c9b583-3f3e-33cb-9c2b-41202b888d11 +2013,La Pampa,II.1.1,69.67548,TJ,CO2,74100.0,kg/TJ,5162953.067999999,Gas Oil combustion consumption by freight transport,AR-L,SESCO,annual,kg,2e67cc2b-6ca2-3eb3-bd21-81e4e6bb4c3f +2013,La Pampa,II.1.1,69.67548,TJ,CH4,3.9,kg/TJ,271.73437199999995,Gas Oil combustion consumption by freight transport,AR-L,SESCO,annual,kg,ede50abe-9bed-3567-898a-bf81179cb3c0 +2013,La Pampa,II.1.1,69.67548,TJ,N2O,3.9,kg/TJ,271.73437199999995,Gas Oil combustion consumption by freight transport,AR-L,SESCO,annual,kg,ede50abe-9bed-3567-898a-bf81179cb3c0 +2013,La Rioja,II.1.1,1.40868,TJ,CO2,74100.0,kg/TJ,104383.188,Gas Oil combustion consumption by freight transport,AR-F,SESCO,annual,kg,d4a3dd28-9e19-3a6c-9994-09db10d88e15 +2013,La Rioja,II.1.1,1.40868,TJ,CH4,3.9,kg/TJ,5.4938519999999995,Gas Oil combustion consumption by freight transport,AR-F,SESCO,annual,kg,488c47cf-a431-38ae-9819-8da40fb4e6ac +2013,La Rioja,II.1.1,1.40868,TJ,N2O,3.9,kg/TJ,5.4938519999999995,Gas Oil combustion consumption by freight transport,AR-F,SESCO,annual,kg,488c47cf-a431-38ae-9819-8da40fb4e6ac +2013,Mendoza,II.1.1,1598.1294,TJ,CO2,74100.0,kg/TJ,118421388.54,Gas Oil combustion consumption by freight transport,AR-M,SESCO,annual,kg,d5cc99e7-9144-3888-b4c8-c905caa902cb +2013,Mendoza,II.1.1,1598.1294,TJ,CH4,3.9,kg/TJ,6232.70466,Gas Oil combustion consumption by freight transport,AR-M,SESCO,annual,kg,9d109c5f-1064-3f7a-9385-4ce7e6b32147 +2013,Mendoza,II.1.1,1598.1294,TJ,N2O,3.9,kg/TJ,6232.70466,Gas Oil combustion consumption by freight transport,AR-M,SESCO,annual,kg,9d109c5f-1064-3f7a-9385-4ce7e6b32147 +2013,Misiones,II.1.1,474.72515999999996,TJ,CO2,74100.0,kg/TJ,35177134.356,Gas Oil combustion consumption by freight transport,AR-N,SESCO,annual,kg,07905e67-45be-3546-b885-fa1c5da8949c +2013,Misiones,II.1.1,474.72515999999996,TJ,CH4,3.9,kg/TJ,1851.4281239999998,Gas Oil combustion consumption by freight transport,AR-N,SESCO,annual,kg,9d2a63d8-c53c-3ce1-a7ad-6e8203066dd6 +2013,Misiones,II.1.1,474.72515999999996,TJ,N2O,3.9,kg/TJ,1851.4281239999998,Gas Oil combustion consumption by freight transport,AR-N,SESCO,annual,kg,9d2a63d8-c53c-3ce1-a7ad-6e8203066dd6 +2013,Neuquén,II.1.1,676.49148,TJ,CO2,74100.0,kg/TJ,50128018.668000005,Gas Oil combustion consumption by freight transport,AR-Q,SESCO,annual,kg,5de01d9e-de76-3947-953c-ee258234adf5 +2013,Neuquén,II.1.1,676.49148,TJ,CH4,3.9,kg/TJ,2638.316772,Gas Oil combustion consumption by freight transport,AR-Q,SESCO,annual,kg,59f6c520-5c5c-30db-b56f-c4a3c2085f5a +2013,Neuquén,II.1.1,676.49148,TJ,N2O,3.9,kg/TJ,2638.316772,Gas Oil combustion consumption by freight transport,AR-Q,SESCO,annual,kg,59f6c520-5c5c-30db-b56f-c4a3c2085f5a +2013,Rio Negro,II.1.1,119.44883999999999,TJ,CO2,74100.0,kg/TJ,8851159.044,Gas Oil combustion consumption by freight transport,AR-R,SESCO,annual,kg,367338d6-ff15-3366-8f92-e1d5ed475f6b +2013,Rio Negro,II.1.1,119.44883999999999,TJ,CH4,3.9,kg/TJ,465.85047599999996,Gas Oil combustion consumption by freight transport,AR-R,SESCO,annual,kg,cd4b3ff9-0670-390e-90a8-fbd1c5db9112 +2013,Rio Negro,II.1.1,119.44883999999999,TJ,N2O,3.9,kg/TJ,465.85047599999996,Gas Oil combustion consumption by freight transport,AR-R,SESCO,annual,kg,cd4b3ff9-0670-390e-90a8-fbd1c5db9112 +2013,Salta,II.1.1,234.63551999999999,TJ,CO2,74100.0,kg/TJ,17386492.031999998,Gas Oil combustion consumption by freight transport,AR-A,SESCO,annual,kg,c2f997dc-fed0-3969-bca8-62315963351a +2013,Salta,II.1.1,234.63551999999999,TJ,CH4,3.9,kg/TJ,915.0785279999999,Gas Oil combustion consumption by freight transport,AR-A,SESCO,annual,kg,2a90ab1c-6fef-3654-90bb-a93e7306dd98 +2013,Salta,II.1.1,234.63551999999999,TJ,N2O,3.9,kg/TJ,915.0785279999999,Gas Oil combustion consumption by freight transport,AR-A,SESCO,annual,kg,2a90ab1c-6fef-3654-90bb-a93e7306dd98 +2013,San Juan,II.1.1,107.67371999999999,TJ,CO2,74100.0,kg/TJ,7978622.651999999,Gas Oil combustion consumption by freight transport,AR-J,SESCO,annual,kg,b74efe5e-2523-3a8c-90eb-a32e98cb10ed +2013,San Juan,II.1.1,107.67371999999999,TJ,CH4,3.9,kg/TJ,419.92750799999993,Gas Oil combustion consumption by freight transport,AR-J,SESCO,annual,kg,462ddb05-4b5f-30f8-bbc3-265c678e9870 +2013,San Juan,II.1.1,107.67371999999999,TJ,N2O,3.9,kg/TJ,419.92750799999993,Gas Oil combustion consumption by freight transport,AR-J,SESCO,annual,kg,462ddb05-4b5f-30f8-bbc3-265c678e9870 +2013,San Luis,II.1.1,134.33028,TJ,CO2,74100.0,kg/TJ,9953873.748,Gas Oil combustion consumption by freight transport,AR-D,SESCO,annual,kg,e6fc2df3-1422-37f2-958c-f1fcaeabb4db +2013,San Luis,II.1.1,134.33028,TJ,CH4,3.9,kg/TJ,523.8880919999999,Gas Oil combustion consumption by freight transport,AR-D,SESCO,annual,kg,24c96caf-a5e9-3949-be1b-74437dea0002 +2013,San Luis,II.1.1,134.33028,TJ,N2O,3.9,kg/TJ,523.8880919999999,Gas Oil combustion consumption by freight transport,AR-D,SESCO,annual,kg,24c96caf-a5e9-3949-be1b-74437dea0002 +2013,Santa Cruz,II.1.1,95.60964,TJ,CO2,74100.0,kg/TJ,7084674.324,Gas Oil combustion consumption by freight transport,AR-Z,SESCO,annual,kg,408e45a0-76b3-3acf-a70c-03f9760c3332 +2013,Santa Cruz,II.1.1,95.60964,TJ,CH4,3.9,kg/TJ,372.877596,Gas Oil combustion consumption by freight transport,AR-Z,SESCO,annual,kg,72af24b0-1c77-3baa-b76a-008d484be343 +2013,Santa Cruz,II.1.1,95.60964,TJ,N2O,3.9,kg/TJ,372.877596,Gas Oil combustion consumption by freight transport,AR-Z,SESCO,annual,kg,72af24b0-1c77-3baa-b76a-008d484be343 +2013,Santa Fe,II.1.1,1899.4063199999998,TJ,CO2,74100.0,kg/TJ,140746008.31199998,Gas Oil combustion consumption by freight transport,AR-S,SESCO,annual,kg,4c8ced39-479a-3b1e-a1ff-90740f7564a3 +2013,Santa Fe,II.1.1,1899.4063199999998,TJ,CH4,3.9,kg/TJ,7407.6846479999995,Gas Oil combustion consumption by freight transport,AR-S,SESCO,annual,kg,7a808217-b982-3f1c-8de6-fc02a4d2b371 +2013,Santa Fe,II.1.1,1899.4063199999998,TJ,N2O,3.9,kg/TJ,7407.6846479999995,Gas Oil combustion consumption by freight transport,AR-S,SESCO,annual,kg,7a808217-b982-3f1c-8de6-fc02a4d2b371 +2013,Santiago del Estero,II.1.1,56.491679999999995,TJ,CO2,74100.0,kg/TJ,4186033.4879999994,Gas Oil combustion consumption by freight transport,AR-G,SESCO,annual,kg,d3a3d422-e637-37ac-b97a-dc62dc253f13 +2013,Santiago del Estero,II.1.1,56.491679999999995,TJ,CH4,3.9,kg/TJ,220.31755199999998,Gas Oil combustion consumption by freight transport,AR-G,SESCO,annual,kg,be4c3381-3bc7-3a0b-89b4-e578d9764c2c +2013,Santiago del Estero,II.1.1,56.491679999999995,TJ,N2O,3.9,kg/TJ,220.31755199999998,Gas Oil combustion consumption by freight transport,AR-G,SESCO,annual,kg,be4c3381-3bc7-3a0b-89b4-e578d9764c2c +2013,Tierra del Fuego,II.1.1,1.8059999999999998,TJ,CO2,74100.0,kg/TJ,133824.59999999998,Gas Oil combustion consumption by freight transport,AR-V,SESCO,annual,kg,00fed2e0-336c-3f11-ae61-843265d7b56e +2013,Tierra del Fuego,II.1.1,1.8059999999999998,TJ,CH4,3.9,kg/TJ,7.043399999999999,Gas Oil combustion consumption by freight transport,AR-V,SESCO,annual,kg,5e70f2a7-f481-30db-a036-58f8e684c557 +2013,Tierra del Fuego,II.1.1,1.8059999999999998,TJ,N2O,3.9,kg/TJ,7.043399999999999,Gas Oil combustion consumption by freight transport,AR-V,SESCO,annual,kg,5e70f2a7-f481-30db-a036-58f8e684c557 +2013,Tucuman,II.1.1,272.74212,TJ,CO2,74100.0,kg/TJ,20210191.092,Gas Oil combustion consumption by freight transport,AR-T,SESCO,annual,kg,d874257d-5ab8-3d60-89ab-2776d54779b0 +2013,Tucuman,II.1.1,272.74212,TJ,CH4,3.9,kg/TJ,1063.694268,Gas Oil combustion consumption by freight transport,AR-T,SESCO,annual,kg,10d20593-b244-3ab8-924c-33d299b51b41 +2013,Tucuman,II.1.1,272.74212,TJ,N2O,3.9,kg/TJ,1063.694268,Gas Oil combustion consumption by freight transport,AR-T,SESCO,annual,kg,10d20593-b244-3ab8-924c-33d299b51b41 +2013,Buenos Aires,II.1.1,243.52104,TJ,CO2,74100.0,kg/TJ,18044909.064,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,98b8d372-d2d2-3326-a998-254c106c55a0 +2013,Buenos Aires,II.1.1,243.52104,TJ,CH4,3.9,kg/TJ,949.732056,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,622cba15-07f9-308d-b5ec-c37fe464bbc1 +2013,Buenos Aires,II.1.1,243.52104,TJ,N2O,3.9,kg/TJ,949.732056,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,622cba15-07f9-308d-b5ec-c37fe464bbc1 +2013,Capital Federal,II.1.1,444.02315999999996,TJ,CO2,74100.0,kg/TJ,32902116.155999996,Gas Oil combustion consumption by freight transport,AR-C,SESCO,annual,kg,c4d0687c-cc14-38f6-8489-db936d2ac99d +2013,Capital Federal,II.1.1,444.02315999999996,TJ,CH4,3.9,kg/TJ,1731.690324,Gas Oil combustion consumption by freight transport,AR-C,SESCO,annual,kg,d2b5d1ad-46e4-3cae-9416-95c725907d9f +2013,Capital Federal,II.1.1,444.02315999999996,TJ,N2O,3.9,kg/TJ,1731.690324,Gas Oil combustion consumption by freight transport,AR-C,SESCO,annual,kg,d2b5d1ad-46e4-3cae-9416-95c725907d9f +2013,Chaco,II.1.1,7.7658,TJ,CO2,74100.0,kg/TJ,575445.78,Gas Oil combustion consumption by freight transport,AR-H,SESCO,annual,kg,53841e57-48e1-339d-b047-7a112356ab38 +2013,Chaco,II.1.1,7.7658,TJ,CH4,3.9,kg/TJ,30.28662,Gas Oil combustion consumption by freight transport,AR-H,SESCO,annual,kg,733cdd07-8699-3e43-a99d-496be7b8eea4 +2013,Chaco,II.1.1,7.7658,TJ,N2O,3.9,kg/TJ,30.28662,Gas Oil combustion consumption by freight transport,AR-H,SESCO,annual,kg,733cdd07-8699-3e43-a99d-496be7b8eea4 +2013,Chubut,II.1.1,5.70696,TJ,CO2,74100.0,kg/TJ,422885.736,Gas Oil combustion consumption by freight transport,AR-U,SESCO,annual,kg,cb90f215-b38e-32c2-9f5e-311fedc4a69b +2013,Chubut,II.1.1,5.70696,TJ,CH4,3.9,kg/TJ,22.257143999999997,Gas Oil combustion consumption by freight transport,AR-U,SESCO,annual,kg,61c39b14-81ae-3aa3-b41a-d0c25e05bcb8 +2013,Chubut,II.1.1,5.70696,TJ,N2O,3.9,kg/TJ,22.257143999999997,Gas Oil combustion consumption by freight transport,AR-U,SESCO,annual,kg,61c39b14-81ae-3aa3-b41a-d0c25e05bcb8 +2013,Corrientes,II.1.1,2.4561599999999997,TJ,CO2,74100.0,kg/TJ,182001.45599999998,Gas Oil combustion consumption by freight transport,AR-W,SESCO,annual,kg,0b905464-5fa6-3101-b4d2-8b1a039dbfc0 +2013,Corrientes,II.1.1,2.4561599999999997,TJ,CH4,3.9,kg/TJ,9.579023999999999,Gas Oil combustion consumption by freight transport,AR-W,SESCO,annual,kg,6c9355f6-c341-3930-9b4a-ca0266ad6739 +2013,Corrientes,II.1.1,2.4561599999999997,TJ,N2O,3.9,kg/TJ,9.579023999999999,Gas Oil combustion consumption by freight transport,AR-W,SESCO,annual,kg,6c9355f6-c341-3930-9b4a-ca0266ad6739 +2013,Córdoba,II.1.1,9.35508,TJ,CO2,74100.0,kg/TJ,693211.428,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,0c46753a-658b-3fb1-94a1-7af2873302cd +2013,Córdoba,II.1.1,9.35508,TJ,CH4,3.9,kg/TJ,36.484812,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,0b79e4d5-7a43-3e85-a94d-e48895d506ad +2013,Córdoba,II.1.1,9.35508,TJ,N2O,3.9,kg/TJ,36.484812,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,0b79e4d5-7a43-3e85-a94d-e48895d506ad +2013,Entre Rios,II.1.1,12.569759999999999,TJ,CO2,74100.0,kg/TJ,931419.2159999999,Gas Oil combustion consumption by freight transport,AR-E,SESCO,annual,kg,349eaebd-cea2-3147-9367-cf3ff70caaf2 +2013,Entre Rios,II.1.1,12.569759999999999,TJ,CH4,3.9,kg/TJ,49.02206399999999,Gas Oil combustion consumption by freight transport,AR-E,SESCO,annual,kg,fd28061d-f350-38c4-afdd-e6190ef5f5ac +2013,Entre Rios,II.1.1,12.569759999999999,TJ,N2O,3.9,kg/TJ,49.02206399999999,Gas Oil combustion consumption by freight transport,AR-E,SESCO,annual,kg,fd28061d-f350-38c4-afdd-e6190ef5f5ac +2013,La Pampa,II.1.1,0.32508,TJ,CO2,74100.0,kg/TJ,24088.428,Gas Oil combustion consumption by freight transport,AR-L,SESCO,annual,kg,3cc7a3d7-3ec1-35f3-b910-cd13ade9bd29 +2013,La Pampa,II.1.1,0.32508,TJ,CH4,3.9,kg/TJ,1.267812,Gas Oil combustion consumption by freight transport,AR-L,SESCO,annual,kg,17c36316-a6c4-3bf7-a27b-15791fa3c06a +2013,La Pampa,II.1.1,0.32508,TJ,N2O,3.9,kg/TJ,1.267812,Gas Oil combustion consumption by freight transport,AR-L,SESCO,annual,kg,17c36316-a6c4-3bf7-a27b-15791fa3c06a +2013,La Rioja,II.1.1,1.73376,TJ,CO2,74100.0,kg/TJ,128471.616,Gas Oil combustion consumption by freight transport,AR-F,SESCO,annual,kg,abe9be6a-3b4f-3db7-91c5-686f0274e36e +2013,La Rioja,II.1.1,1.73376,TJ,CH4,3.9,kg/TJ,6.761664,Gas Oil combustion consumption by freight transport,AR-F,SESCO,annual,kg,86ff24a2-569f-34a9-a097-02c4a4b8c62f +2013,La Rioja,II.1.1,1.73376,TJ,N2O,3.9,kg/TJ,6.761664,Gas Oil combustion consumption by freight transport,AR-F,SESCO,annual,kg,86ff24a2-569f-34a9-a097-02c4a4b8c62f +2013,Mendoza,II.1.1,13.978439999999999,TJ,CO2,74100.0,kg/TJ,1035802.404,Gas Oil combustion consumption by freight transport,AR-M,SESCO,annual,kg,d0e6710d-a3e9-3cb2-bdae-94dc4f9e4f0e +2013,Mendoza,II.1.1,13.978439999999999,TJ,CH4,3.9,kg/TJ,54.515916,Gas Oil combustion consumption by freight transport,AR-M,SESCO,annual,kg,1ee55afb-3eeb-30f2-9779-3c95176cebd1 +2013,Mendoza,II.1.1,13.978439999999999,TJ,N2O,3.9,kg/TJ,54.515916,Gas Oil combustion consumption by freight transport,AR-M,SESCO,annual,kg,1ee55afb-3eeb-30f2-9779-3c95176cebd1 +2013,Misiones,II.1.1,5.70696,TJ,CO2,74100.0,kg/TJ,422885.736,Gas Oil combustion consumption by freight transport,AR-N,SESCO,annual,kg,e0536112-588b-3a40-8344-9c9b3e7da2b9 +2013,Misiones,II.1.1,5.70696,TJ,CH4,3.9,kg/TJ,22.257143999999997,Gas Oil combustion consumption by freight transport,AR-N,SESCO,annual,kg,1db85fc2-b5ae-30b3-8666-324010674dc6 +2013,Misiones,II.1.1,5.70696,TJ,N2O,3.9,kg/TJ,22.257143999999997,Gas Oil combustion consumption by freight transport,AR-N,SESCO,annual,kg,1db85fc2-b5ae-30b3-8666-324010674dc6 +2013,Neuquén,II.1.1,8.09088,TJ,CO2,74100.0,kg/TJ,599534.208,Gas Oil combustion consumption by freight transport,AR-Q,SESCO,annual,kg,37ab93e9-9bd0-3b7e-b98c-5fc0636ab478 +2013,Neuquén,II.1.1,8.09088,TJ,CH4,3.9,kg/TJ,31.554432000000002,Gas Oil combustion consumption by freight transport,AR-Q,SESCO,annual,kg,6dc5f9bb-91a0-3903-b7d8-856f564b0572 +2013,Neuquén,II.1.1,8.09088,TJ,N2O,3.9,kg/TJ,31.554432000000002,Gas Oil combustion consumption by freight transport,AR-Q,SESCO,annual,kg,6dc5f9bb-91a0-3903-b7d8-856f564b0572 +2013,Rio Negro,II.1.1,2.05884,TJ,CO2,74100.0,kg/TJ,152560.044,Gas Oil combustion consumption by freight transport,AR-R,SESCO,annual,kg,c815995b-868f-3ed0-a1bb-c790c336661e +2013,Rio Negro,II.1.1,2.05884,TJ,CH4,3.9,kg/TJ,8.029475999999999,Gas Oil combustion consumption by freight transport,AR-R,SESCO,annual,kg,ec0a4c42-3760-3a08-86fc-bb901da4000f +2013,Rio Negro,II.1.1,2.05884,TJ,N2O,3.9,kg/TJ,8.029475999999999,Gas Oil combustion consumption by freight transport,AR-R,SESCO,annual,kg,ec0a4c42-3760-3a08-86fc-bb901da4000f +2013,Salta,II.1.1,5.74308,TJ,CO2,74100.0,kg/TJ,425562.228,Gas Oil combustion consumption by freight transport,AR-A,SESCO,annual,kg,1b565d69-23ce-3159-9b95-42fb7c9b9c48 +2013,Salta,II.1.1,5.74308,TJ,CH4,3.9,kg/TJ,22.398011999999998,Gas Oil combustion consumption by freight transport,AR-A,SESCO,annual,kg,1ce952b2-d973-3749-88c8-c17f8085d05e +2013,Salta,II.1.1,5.74308,TJ,N2O,3.9,kg/TJ,22.398011999999998,Gas Oil combustion consumption by freight transport,AR-A,SESCO,annual,kg,1ce952b2-d973-3749-88c8-c17f8085d05e +2013,San Juan,II.1.1,1.84212,TJ,CO2,74100.0,kg/TJ,136501.092,Gas Oil combustion consumption by freight transport,AR-J,SESCO,annual,kg,3a1d06cc-b3de-3bb9-a51d-2ab2c2c37807 +2013,San Juan,II.1.1,1.84212,TJ,CH4,3.9,kg/TJ,7.184267999999999,Gas Oil combustion consumption by freight transport,AR-J,SESCO,annual,kg,6be1b85f-d063-3f01-9da6-6784707f2219 +2013,San Juan,II.1.1,1.84212,TJ,N2O,3.9,kg/TJ,7.184267999999999,Gas Oil combustion consumption by freight transport,AR-J,SESCO,annual,kg,6be1b85f-d063-3f01-9da6-6784707f2219 +2013,San Luis,II.1.1,0.7223999999999999,TJ,CO2,74100.0,kg/TJ,53529.84,Gas Oil combustion consumption by freight transport,AR-D,SESCO,annual,kg,eb81d4cf-131d-3f0c-94c8-971f5f44bacc +2013,San Luis,II.1.1,0.7223999999999999,TJ,CH4,3.9,kg/TJ,2.81736,Gas Oil combustion consumption by freight transport,AR-D,SESCO,annual,kg,7e5d937e-766b-3587-8992-45b28338d71e +2013,San Luis,II.1.1,0.7223999999999999,TJ,N2O,3.9,kg/TJ,2.81736,Gas Oil combustion consumption by freight transport,AR-D,SESCO,annual,kg,7e5d937e-766b-3587-8992-45b28338d71e +2013,Santa Fe,II.1.1,113.16395999999999,TJ,CO2,74100.0,kg/TJ,8385449.435999999,Gas Oil combustion consumption by freight transport,AR-S,SESCO,annual,kg,0f48afc8-b7e8-34c3-8042-a9818b763db8 +2013,Santa Fe,II.1.1,113.16395999999999,TJ,CH4,3.9,kg/TJ,441.33944399999996,Gas Oil combustion consumption by freight transport,AR-S,SESCO,annual,kg,00426ab6-cf6e-3197-8308-c7ee4c1ddd00 +2013,Santa Fe,II.1.1,113.16395999999999,TJ,N2O,3.9,kg/TJ,441.33944399999996,Gas Oil combustion consumption by freight transport,AR-S,SESCO,annual,kg,00426ab6-cf6e-3197-8308-c7ee4c1ddd00 +2013,Tierra del Fuego,II.1.1,0.07224,TJ,CO2,74100.0,kg/TJ,5352.9839999999995,Gas Oil combustion consumption by freight transport,AR-V,SESCO,annual,kg,9538ea72-cb1a-31e8-a3c1-d6e09531b470 +2013,Tierra del Fuego,II.1.1,0.07224,TJ,CH4,3.9,kg/TJ,0.281736,Gas Oil combustion consumption by freight transport,AR-V,SESCO,annual,kg,bac7c95d-2ce8-3ad1-87f4-8e0804123eab +2013,Tierra del Fuego,II.1.1,0.07224,TJ,N2O,3.9,kg/TJ,0.281736,Gas Oil combustion consumption by freight transport,AR-V,SESCO,annual,kg,bac7c95d-2ce8-3ad1-87f4-8e0804123eab +2013,Tucuman,II.1.1,5.38188,TJ,CO2,74100.0,kg/TJ,398797.30799999996,Gas Oil combustion consumption by freight transport,AR-T,SESCO,annual,kg,c8e60b34-4072-3e7b-a816-fe32070fa1bf +2013,Tucuman,II.1.1,5.38188,TJ,CH4,3.9,kg/TJ,20.989331999999997,Gas Oil combustion consumption by freight transport,AR-T,SESCO,annual,kg,5a39e953-ee5d-3059-9599-c1fc4a8d0828 +2013,Tucuman,II.1.1,5.38188,TJ,N2O,3.9,kg/TJ,20.989331999999997,Gas Oil combustion consumption by freight transport,AR-T,SESCO,annual,kg,5a39e953-ee5d-3059-9599-c1fc4a8d0828 +2013,Buenos Aires,II.1.1,169.26909999999998,TJ,CO2,73300.0,kg/TJ,12407425.03,Naphtha combustion consumption by freight transport,AR-B,SESCO,annual,kg,aa7345af-f3f9-3add-a5c6-969408de6cfb +2013,Buenos Aires,II.1.1,169.26909999999998,TJ,CH4,0.5,kg/TJ,84.63454999999999,Naphtha combustion consumption by freight transport,AR-B,SESCO,annual,kg,5321455e-34e1-31a3-b1b8-d7329d688600 +2013,Buenos Aires,II.1.1,169.26909999999998,TJ,N2O,2.0,kg/TJ,338.53819999999996,Naphtha combustion consumption by freight transport,AR-B,SESCO,annual,kg,e73bb81e-6e05-3df8-9237-bb202f736ac3 +2013,Capital Federal,II.1.1,166.80202,TJ,CO2,73300.0,kg/TJ,12226588.066,Naphtha combustion consumption by freight transport,AR-C,SESCO,annual,kg,77ed034f-f450-3ffc-9f1f-b376ffe87e3e +2013,Capital Federal,II.1.1,166.80202,TJ,CH4,0.5,kg/TJ,83.40101,Naphtha combustion consumption by freight transport,AR-C,SESCO,annual,kg,881b281e-a2b7-30f6-8c7c-d9c2ac4db487 +2013,Capital Federal,II.1.1,166.80202,TJ,N2O,2.0,kg/TJ,333.60404,Naphtha combustion consumption by freight transport,AR-C,SESCO,annual,kg,2c00501e-252b-3daf-998f-251b9f609a4d +2013,Chaco,II.1.1,4.899895,TJ,CO2,73300.0,kg/TJ,359162.3035,Naphtha combustion consumption by freight transport,AR-H,SESCO,annual,kg,3431e465-19e3-3075-80b5-c53069a4065d +2013,Chaco,II.1.1,4.899895,TJ,CH4,0.5,kg/TJ,2.4499475,Naphtha combustion consumption by freight transport,AR-H,SESCO,annual,kg,05c29bdd-5986-328e-855e-df2f937fa0ab +2013,Chaco,II.1.1,4.899895,TJ,N2O,2.0,kg/TJ,9.79979,Naphtha combustion consumption by freight transport,AR-H,SESCO,annual,kg,2dad007c-8b7f-3e94-8b7a-0cc923126039 +2013,Chubut,II.1.1,0.89089,TJ,CO2,73300.0,kg/TJ,65302.236999999994,Naphtha combustion consumption by freight transport,AR-U,SESCO,annual,kg,9347ebdb-661b-3898-ade0-a58c2572ecc0 +2013,Chubut,II.1.1,0.89089,TJ,CH4,0.5,kg/TJ,0.445445,Naphtha combustion consumption by freight transport,AR-U,SESCO,annual,kg,9f5ab75f-7c86-3d98-961a-0574fb438938 +2013,Chubut,II.1.1,0.89089,TJ,N2O,2.0,kg/TJ,1.78178,Naphtha combustion consumption by freight transport,AR-U,SESCO,annual,kg,f9dbc11f-7e8d-3a91-8271-c56d9dc6d335 +2013,Corrientes,II.1.1,1.473395,TJ,CO2,73300.0,kg/TJ,107999.8535,Naphtha combustion consumption by freight transport,AR-W,SESCO,annual,kg,173e5ba1-b84e-3099-8a6d-97d9d90ab17a +2013,Corrientes,II.1.1,1.473395,TJ,CH4,0.5,kg/TJ,0.7366975,Naphtha combustion consumption by freight transport,AR-W,SESCO,annual,kg,98f91b04-531e-3224-b32a-dec544ef8463 +2013,Corrientes,II.1.1,1.473395,TJ,N2O,2.0,kg/TJ,2.94679,Naphtha combustion consumption by freight transport,AR-W,SESCO,annual,kg,2a217534-26f3-37f6-9712-3aa322e3b9fd +2013,Córdoba,II.1.1,2.5356099999999997,TJ,CO2,73300.0,kg/TJ,185860.213,Naphtha combustion consumption by freight transport,AR-X,SESCO,annual,kg,c68aaa29-b589-3a5b-9176-0c5bd6ab2655 +2013,Córdoba,II.1.1,2.5356099999999997,TJ,CH4,0.5,kg/TJ,1.2678049999999998,Naphtha combustion consumption by freight transport,AR-X,SESCO,annual,kg,dde6bd16-36d5-3ae4-80c4-5469ffd74ce1 +2013,Córdoba,II.1.1,2.5356099999999997,TJ,N2O,2.0,kg/TJ,5.071219999999999,Naphtha combustion consumption by freight transport,AR-X,SESCO,annual,kg,9874b06c-945c-3290-9302-913b4d02e1f6 +2013,Entre Rios,II.1.1,2.6726699999999997,TJ,CO2,73300.0,kg/TJ,195906.71099999998,Naphtha combustion consumption by freight transport,AR-E,SESCO,annual,kg,37825a55-0ceb-3d1f-9d87-e106b0286b13 +2013,Entre Rios,II.1.1,2.6726699999999997,TJ,CH4,0.5,kg/TJ,1.3363349999999998,Naphtha combustion consumption by freight transport,AR-E,SESCO,annual,kg,56acdd31-fd50-388c-840f-e8cea206de49 +2013,Entre Rios,II.1.1,2.6726699999999997,TJ,N2O,2.0,kg/TJ,5.345339999999999,Naphtha combustion consumption by freight transport,AR-E,SESCO,annual,kg,055f1dd1-c40a-3984-93b9-429f12384fad +2013,Mendoza,II.1.1,4.6600399999999995,TJ,CO2,73300.0,kg/TJ,341580.932,Naphtha combustion consumption by freight transport,AR-M,SESCO,annual,kg,c1f83e07-62af-3ab3-95dd-44f25a68a268 +2013,Mendoza,II.1.1,4.6600399999999995,TJ,CH4,0.5,kg/TJ,2.3300199999999998,Naphtha combustion consumption by freight transport,AR-M,SESCO,annual,kg,00f85917-028c-3e00-a711-5e7dae84fc12 +2013,Mendoza,II.1.1,4.6600399999999995,TJ,N2O,2.0,kg/TJ,9.320079999999999,Naphtha combustion consumption by freight transport,AR-M,SESCO,annual,kg,3a0e8b72-7bda-33e7-a419-e1bdaa143e54 +2013,Misiones,II.1.1,0.513975,TJ,CO2,73300.0,kg/TJ,37674.3675,Naphtha combustion consumption by freight transport,AR-N,SESCO,annual,kg,e28df877-5d08-3f8a-897c-0a5d233961cc +2013,Misiones,II.1.1,0.513975,TJ,CH4,0.5,kg/TJ,0.2569875,Naphtha combustion consumption by freight transport,AR-N,SESCO,annual,kg,34d91db0-4fa5-3585-ba1c-936aa86b19b9 +2013,Misiones,II.1.1,0.513975,TJ,N2O,2.0,kg/TJ,1.02795,Naphtha combustion consumption by freight transport,AR-N,SESCO,annual,kg,c632a6e8-1e1d-3a58-adb7-c0ec827092cb +2013,Neuquén,II.1.1,0.47970999999999997,TJ,CO2,73300.0,kg/TJ,35162.742999999995,Naphtha combustion consumption by freight transport,AR-Q,SESCO,annual,kg,8a548071-8060-3536-a1c7-618a66525b77 +2013,Neuquén,II.1.1,0.47970999999999997,TJ,CH4,0.5,kg/TJ,0.23985499999999998,Naphtha combustion consumption by freight transport,AR-Q,SESCO,annual,kg,a9875281-c5f5-3b13-badb-f1fade3f6067 +2013,Neuquén,II.1.1,0.47970999999999997,TJ,N2O,2.0,kg/TJ,0.9594199999999999,Naphtha combustion consumption by freight transport,AR-Q,SESCO,annual,kg,8f04e624-b793-3c8f-90af-757382a6f670 +2013,Rio Negro,II.1.1,1.3706,TJ,CO2,73300.0,kg/TJ,100464.98,Naphtha combustion consumption by freight transport,AR-R,SESCO,annual,kg,d35cd8a2-46da-3fca-aac9-299697125547 +2013,Rio Negro,II.1.1,1.3706,TJ,CH4,0.5,kg/TJ,0.6853,Naphtha combustion consumption by freight transport,AR-R,SESCO,annual,kg,c1d43115-ebf7-3636-b65f-b7e50d7155af +2013,Rio Negro,II.1.1,1.3706,TJ,N2O,2.0,kg/TJ,2.7412,Naphtha combustion consumption by freight transport,AR-R,SESCO,annual,kg,18274425-ed5c-3a9b-b450-f98a99fe9caf +2013,Salta,II.1.1,10.450825,TJ,CO2,73300.0,kg/TJ,766045.4725,Naphtha combustion consumption by freight transport,AR-A,SESCO,annual,kg,61ddffca-0a85-3f44-bcf1-5c08008213d5 +2013,Salta,II.1.1,10.450825,TJ,CH4,0.5,kg/TJ,5.2254125,Naphtha combustion consumption by freight transport,AR-A,SESCO,annual,kg,cfa06942-1c07-3268-89a4-ac00965dbd87 +2013,Salta,II.1.1,10.450825,TJ,N2O,2.0,kg/TJ,20.90165,Naphtha combustion consumption by freight transport,AR-A,SESCO,annual,kg,0309315d-20a7-3de2-8ef2-8bbc9396bc87 +2013,Santa Fe,II.1.1,16.207345,TJ,CO2,73300.0,kg/TJ,1187998.3885000001,Naphtha combustion consumption by freight transport,AR-S,SESCO,annual,kg,b66eede6-5d2b-3cda-a2df-f1eacb66cb63 +2013,Santa Fe,II.1.1,16.207345,TJ,CH4,0.5,kg/TJ,8.1036725,Naphtha combustion consumption by freight transport,AR-S,SESCO,annual,kg,8033b680-b530-3479-8458-6d2c920cadbb +2013,Santa Fe,II.1.1,16.207345,TJ,N2O,2.0,kg/TJ,32.41469,Naphtha combustion consumption by freight transport,AR-S,SESCO,annual,kg,ae3d4aeb-468a-3104-bdde-a90232df3043 +2013,Santiago del Estero,II.1.1,0.034265,TJ,CO2,73300.0,kg/TJ,2511.6245,Naphtha combustion consumption by freight transport,AR-G,SESCO,annual,kg,d14513d4-d09c-3859-beae-1ea19a611e3d +2013,Santiago del Estero,II.1.1,0.034265,TJ,CH4,0.5,kg/TJ,0.0171325,Naphtha combustion consumption by freight transport,AR-G,SESCO,annual,kg,a6393a37-1179-37f4-bc8f-75e9744032b8 +2013,Santiago del Estero,II.1.1,0.034265,TJ,N2O,2.0,kg/TJ,0.06853,Naphtha combustion consumption by freight transport,AR-G,SESCO,annual,kg,04bf7b7d-e407-3121-b429-d4ca02c2ed60 +2013,Tucuman,II.1.1,0.9936849999999999,TJ,CO2,73300.0,kg/TJ,72837.1105,Naphtha combustion consumption by freight transport,AR-T,SESCO,annual,kg,82657f8f-0765-3c57-a769-633fa3c3354a +2013,Tucuman,II.1.1,0.9936849999999999,TJ,CH4,0.5,kg/TJ,0.49684249999999996,Naphtha combustion consumption by freight transport,AR-T,SESCO,annual,kg,8862e2ef-de54-31d5-a562-0993b8aad417 +2013,Tucuman,II.1.1,0.9936849999999999,TJ,N2O,2.0,kg/TJ,1.9873699999999999,Naphtha combustion consumption by freight transport,AR-T,SESCO,annual,kg,3fb39192-3c01-3f71-ade6-b036cce89479 +2013,Buenos Aires,II.1.1,170.50263999999999,TJ,CO2,73300.0,kg/TJ,12497843.511999998,Naphtha combustion consumption by freight transport,AR-B,SESCO,annual,kg,38358506-0229-3960-b3d3-cad188e497c7 +2013,Buenos Aires,II.1.1,170.50263999999999,TJ,CH4,0.5,kg/TJ,85.25131999999999,Naphtha combustion consumption by freight transport,AR-B,SESCO,annual,kg,60107164-c533-3501-8f74-dabf008f54d7 +2013,Buenos Aires,II.1.1,170.50263999999999,TJ,N2O,2.0,kg/TJ,341.00527999999997,Naphtha combustion consumption by freight transport,AR-B,SESCO,annual,kg,38807c69-efad-3439-b45c-9b5387ed4315 +2013,Capital Federal,II.1.1,164.12935,TJ,CO2,73300.0,kg/TJ,12030681.354999999,Naphtha combustion consumption by freight transport,AR-C,SESCO,annual,kg,6214e28b-b643-3686-ab3e-24763ec70fe6 +2013,Capital Federal,II.1.1,164.12935,TJ,CH4,0.5,kg/TJ,82.064675,Naphtha combustion consumption by freight transport,AR-C,SESCO,annual,kg,a40ee13f-ef40-3521-97f4-6dd26f9b4200 +2013,Capital Federal,II.1.1,164.12935,TJ,N2O,2.0,kg/TJ,328.2587,Naphtha combustion consumption by freight transport,AR-C,SESCO,annual,kg,4de5cb49-8a96-3e6e-8d77-216d3f50db78 +2013,Chaco,II.1.1,6.09917,TJ,CO2,73300.0,kg/TJ,447069.161,Naphtha combustion consumption by freight transport,AR-H,SESCO,annual,kg,c02e49c0-7033-394b-a0e2-74d2835f8443 +2013,Chaco,II.1.1,6.09917,TJ,CH4,0.5,kg/TJ,3.049585,Naphtha combustion consumption by freight transport,AR-H,SESCO,annual,kg,04db9492-9b50-31fc-9848-b28f4d123f7c +2013,Chaco,II.1.1,6.09917,TJ,N2O,2.0,kg/TJ,12.19834,Naphtha combustion consumption by freight transport,AR-H,SESCO,annual,kg,d7f60078-2a20-3657-a04b-091a197df36a +2013,Chubut,II.1.1,0.6510349999999999,TJ,CO2,73300.0,kg/TJ,47720.86549999999,Naphtha combustion consumption by freight transport,AR-U,SESCO,annual,kg,af1d2871-fd8c-31b4-a63e-9330e53dd1a8 +2013,Chubut,II.1.1,0.6510349999999999,TJ,CH4,0.5,kg/TJ,0.32551749999999996,Naphtha combustion consumption by freight transport,AR-U,SESCO,annual,kg,dcf02211-91dd-3b25-a137-53c139d01ad9 +2013,Chubut,II.1.1,0.6510349999999999,TJ,N2O,2.0,kg/TJ,1.3020699999999998,Naphtha combustion consumption by freight transport,AR-U,SESCO,annual,kg,790fa09b-0359-375e-8a8f-1f7f92716eae +2013,Corrientes,II.1.1,2.158695,TJ,CO2,73300.0,kg/TJ,158232.3435,Naphtha combustion consumption by freight transport,AR-W,SESCO,annual,kg,703dfa57-4c6d-3306-9edf-3328943e14ba +2013,Corrientes,II.1.1,2.158695,TJ,CH4,0.5,kg/TJ,1.0793475,Naphtha combustion consumption by freight transport,AR-W,SESCO,annual,kg,ce3b462c-5d28-3828-a261-623ac8a0ad2d +2013,Corrientes,II.1.1,2.158695,TJ,N2O,2.0,kg/TJ,4.31739,Naphtha combustion consumption by freight transport,AR-W,SESCO,annual,kg,5571fdcc-eae0-3646-a7cf-cab561923a02 +2013,Córdoba,II.1.1,3.8034149999999998,TJ,CO2,73300.0,kg/TJ,278790.3195,Naphtha combustion consumption by freight transport,AR-X,SESCO,annual,kg,a0cbdbdf-0f2c-3142-81ad-f5bdfefff6f8 +2013,Córdoba,II.1.1,3.8034149999999998,TJ,CH4,0.5,kg/TJ,1.9017074999999999,Naphtha combustion consumption by freight transport,AR-X,SESCO,annual,kg,ad4caae6-e8a3-33c2-9d40-2a500cbcba0e +2013,Córdoba,II.1.1,3.8034149999999998,TJ,N2O,2.0,kg/TJ,7.6068299999999995,Naphtha combustion consumption by freight transport,AR-X,SESCO,annual,kg,51799e37-399a-3e9d-a8bb-ca6a535aff34 +2013,Entre Rios,II.1.1,3.01532,TJ,CO2,73300.0,kg/TJ,221022.956,Naphtha combustion consumption by freight transport,AR-E,SESCO,annual,kg,e908f8ab-4eab-36fb-85b7-68f1d2fa7e2d +2013,Entre Rios,II.1.1,3.01532,TJ,CH4,0.5,kg/TJ,1.50766,Naphtha combustion consumption by freight transport,AR-E,SESCO,annual,kg,8a57e568-b558-392b-8572-dbe0511da91a +2013,Entre Rios,II.1.1,3.01532,TJ,N2O,2.0,kg/TJ,6.03064,Naphtha combustion consumption by freight transport,AR-E,SESCO,annual,kg,a2685475-cf74-3db7-af04-3184744d86e7 +2013,Jujuy,II.1.1,0.102795,TJ,CO2,73300.0,kg/TJ,7534.8735,Naphtha combustion consumption by freight transport,AR-Y,SESCO,annual,kg,c0a35d70-1613-3b58-b4b6-c55005d5a66d +2013,Jujuy,II.1.1,0.102795,TJ,CH4,0.5,kg/TJ,0.0513975,Naphtha combustion consumption by freight transport,AR-Y,SESCO,annual,kg,4b41d884-ab71-3257-a819-fa7bfec0904a +2013,Jujuy,II.1.1,0.102795,TJ,N2O,2.0,kg/TJ,0.20559,Naphtha combustion consumption by freight transport,AR-Y,SESCO,annual,kg,09b7d9a9-482d-35da-8f95-d797e24fd95a +2013,La Pampa,II.1.1,0.034265,TJ,CO2,73300.0,kg/TJ,2511.6245,Naphtha combustion consumption by freight transport,AR-L,SESCO,annual,kg,a651ccfb-b70a-39b0-9c5f-2d4f13a800c9 +2013,La Pampa,II.1.1,0.034265,TJ,CH4,0.5,kg/TJ,0.0171325,Naphtha combustion consumption by freight transport,AR-L,SESCO,annual,kg,173a858a-f059-31b2-abaa-8e2b50b63468 +2013,La Pampa,II.1.1,0.034265,TJ,N2O,2.0,kg/TJ,0.06853,Naphtha combustion consumption by freight transport,AR-L,SESCO,annual,kg,92d19810-e4d4-32ef-a12d-fab426c81496 +2013,La Rioja,II.1.1,0.376915,TJ,CO2,73300.0,kg/TJ,27627.8695,Naphtha combustion consumption by freight transport,AR-F,SESCO,annual,kg,b2baee71-b013-3181-976b-bf34533c05fa +2013,La Rioja,II.1.1,0.376915,TJ,CH4,0.5,kg/TJ,0.1884575,Naphtha combustion consumption by freight transport,AR-F,SESCO,annual,kg,4f14cccf-5006-31be-bef9-39d9c759955b +2013,La Rioja,II.1.1,0.376915,TJ,N2O,2.0,kg/TJ,0.75383,Naphtha combustion consumption by freight transport,AR-F,SESCO,annual,kg,de57740d-29dd-3783-8f59-53ed7ab02ce0 +2013,Mendoza,II.1.1,3.9404749999999997,TJ,CO2,73300.0,kg/TJ,288836.8175,Naphtha combustion consumption by freight transport,AR-M,SESCO,annual,kg,00e0b805-5b68-30d3-b7e9-b4d37713e41c +2013,Mendoza,II.1.1,3.9404749999999997,TJ,CH4,0.5,kg/TJ,1.9702374999999999,Naphtha combustion consumption by freight transport,AR-M,SESCO,annual,kg,d7571f0a-1576-3272-adca-c4d14ee5775c +2013,Mendoza,II.1.1,3.9404749999999997,TJ,N2O,2.0,kg/TJ,7.8809499999999995,Naphtha combustion consumption by freight transport,AR-M,SESCO,annual,kg,91c11213-9968-3ef0-9555-0f26d0b7a90e +2013,Misiones,II.1.1,0.75383,TJ,CO2,73300.0,kg/TJ,55255.739,Naphtha combustion consumption by freight transport,AR-N,SESCO,annual,kg,4e40d8cb-dc05-3ff0-b40f-2f192052d845 +2013,Misiones,II.1.1,0.75383,TJ,CH4,0.5,kg/TJ,0.376915,Naphtha combustion consumption by freight transport,AR-N,SESCO,annual,kg,961f4249-a45b-3f1b-ae17-77f66efd61a6 +2013,Misiones,II.1.1,0.75383,TJ,N2O,2.0,kg/TJ,1.50766,Naphtha combustion consumption by freight transport,AR-N,SESCO,annual,kg,b07c7052-42e1-3baa-882f-117267779182 +2013,Neuquén,II.1.1,0.34265,TJ,CO2,73300.0,kg/TJ,25116.245,Naphtha combustion consumption by freight transport,AR-Q,SESCO,annual,kg,7694fb4b-14b5-3a19-971b-d0c171949c17 +2013,Neuquén,II.1.1,0.34265,TJ,CH4,0.5,kg/TJ,0.171325,Naphtha combustion consumption by freight transport,AR-Q,SESCO,annual,kg,104f3270-a2ce-3ed0-b830-fb8ffd2a3f4b +2013,Neuquén,II.1.1,0.34265,TJ,N2O,2.0,kg/TJ,0.6853,Naphtha combustion consumption by freight transport,AR-Q,SESCO,annual,kg,96d65159-aa55-30e0-8cf2-7f71e2e11e23 +2013,Rio Negro,II.1.1,1.43913,TJ,CO2,73300.0,kg/TJ,105488.229,Naphtha combustion consumption by freight transport,AR-R,SESCO,annual,kg,3c904017-9113-3960-bec4-92e5555506d3 +2013,Rio Negro,II.1.1,1.43913,TJ,CH4,0.5,kg/TJ,0.719565,Naphtha combustion consumption by freight transport,AR-R,SESCO,annual,kg,125055bb-084f-3ac6-a53a-5d6e7f6af752 +2013,Rio Negro,II.1.1,1.43913,TJ,N2O,2.0,kg/TJ,2.87826,Naphtha combustion consumption by freight transport,AR-R,SESCO,annual,kg,5b8f6c42-6a67-385b-8661-951ed9102ef2 +2013,Salta,II.1.1,1.57619,TJ,CO2,73300.0,kg/TJ,115534.727,Naphtha combustion consumption by freight transport,AR-A,SESCO,annual,kg,164c7897-000b-3a3b-9416-52f1cd3f556e +2013,Salta,II.1.1,1.57619,TJ,CH4,0.5,kg/TJ,0.788095,Naphtha combustion consumption by freight transport,AR-A,SESCO,annual,kg,9c371f64-a5ae-3575-aa9b-bee0a30a501f +2013,Salta,II.1.1,1.57619,TJ,N2O,2.0,kg/TJ,3.15238,Naphtha combustion consumption by freight transport,AR-A,SESCO,annual,kg,536c4525-7716-3dcf-8823-c01d0fe089fe +2013,San Luis,II.1.1,0.41118,TJ,CO2,73300.0,kg/TJ,30139.494,Naphtha combustion consumption by freight transport,AR-D,SESCO,annual,kg,ea04c37e-6ce7-307e-88ad-259c7d1b879d +2013,San Luis,II.1.1,0.41118,TJ,CH4,0.5,kg/TJ,0.20559,Naphtha combustion consumption by freight transport,AR-D,SESCO,annual,kg,a6cbdc46-0cba-3218-8af0-a5258f70af01 +2013,San Luis,II.1.1,0.41118,TJ,N2O,2.0,kg/TJ,0.82236,Naphtha combustion consumption by freight transport,AR-D,SESCO,annual,kg,866d1f65-bd51-3b18-9db9-bbddd06abbb2 +2013,Santa Fe,II.1.1,23.128874999999997,TJ,CO2,73300.0,kg/TJ,1695346.5374999999,Naphtha combustion consumption by freight transport,AR-S,SESCO,annual,kg,41cdbca2-0a95-3587-877c-5b665ff6d81c +2013,Santa Fe,II.1.1,23.128874999999997,TJ,CH4,0.5,kg/TJ,11.564437499999999,Naphtha combustion consumption by freight transport,AR-S,SESCO,annual,kg,41b29d6c-c420-395f-9bd7-f1f775d6bc93 +2013,Santa Fe,II.1.1,23.128874999999997,TJ,N2O,2.0,kg/TJ,46.257749999999994,Naphtha combustion consumption by freight transport,AR-S,SESCO,annual,kg,42e1a207-c004-32d3-ae1a-bd57d874b9c2 +2013,Tucuman,II.1.1,0.89089,TJ,CO2,73300.0,kg/TJ,65302.236999999994,Naphtha combustion consumption by freight transport,AR-T,SESCO,annual,kg,594d831f-59c2-3123-adc9-bb1e2d2f668b +2013,Tucuman,II.1.1,0.89089,TJ,CH4,0.5,kg/TJ,0.445445,Naphtha combustion consumption by freight transport,AR-T,SESCO,annual,kg,789d7a88-3210-3e37-9c42-bdf73105b50c +2013,Tucuman,II.1.1,0.89089,TJ,N2O,2.0,kg/TJ,1.78178,Naphtha combustion consumption by freight transport,AR-T,SESCO,annual,kg,5424b96e-ae84-3c88-b567-82890a00936c +2013,Buenos Aires,II.1.1,11423.99748,TJ,CO2,74100.0,kg/TJ,846518213.268,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,2d600228-873e-3aa2-8f24-df66ab1dcd8f +2013,Buenos Aires,II.1.1,11423.99748,TJ,CH4,3.9,kg/TJ,44553.590172,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,8ba38711-592f-379e-9cde-09ff1a2eeaed +2013,Buenos Aires,II.1.1,11423.99748,TJ,N2O,3.9,kg/TJ,44553.590172,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,8ba38711-592f-379e-9cde-09ff1a2eeaed +2013,Capital Federal,II.1.1,3101.4799199999998,TJ,CO2,74100.0,kg/TJ,229819662.072,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,e3ffdafc-f113-3bef-9b2f-87580883a397 +2013,Capital Federal,II.1.1,3101.4799199999998,TJ,CH4,3.9,kg/TJ,12095.771687999999,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,0d392e18-986b-3863-85d8-5689a733bc4e +2013,Capital Federal,II.1.1,3101.4799199999998,TJ,N2O,3.9,kg/TJ,12095.771687999999,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,0d392e18-986b-3863-85d8-5689a733bc4e +2013,Catamarca,II.1.1,223.14936,TJ,CO2,74100.0,kg/TJ,16535367.576,Gas Oil combustion consumption by public passenger transport,AR-K,SESCO,annual,kg,44be6cb3-d3b9-3b68-b120-b3d083bd45a4 +2013,Catamarca,II.1.1,223.14936,TJ,CH4,3.9,kg/TJ,870.282504,Gas Oil combustion consumption by public passenger transport,AR-K,SESCO,annual,kg,f297d9df-189c-345e-970b-52c6e349f5a8 +2013,Catamarca,II.1.1,223.14936,TJ,N2O,3.9,kg/TJ,870.282504,Gas Oil combustion consumption by public passenger transport,AR-K,SESCO,annual,kg,f297d9df-189c-345e-970b-52c6e349f5a8 +2013,Chaco,II.1.1,574.8498,TJ,CO2,74100.0,kg/TJ,42596370.18,Gas Oil combustion consumption by public passenger transport,AR-H,SESCO,annual,kg,1e6c0867-eb43-3d32-880d-98e860ecd707 +2013,Chaco,II.1.1,574.8498,TJ,CH4,3.9,kg/TJ,2241.9142199999997,Gas Oil combustion consumption by public passenger transport,AR-H,SESCO,annual,kg,1f46db66-d915-3d43-977b-278b324a2384 +2013,Chaco,II.1.1,574.8498,TJ,N2O,3.9,kg/TJ,2241.9142199999997,Gas Oil combustion consumption by public passenger transport,AR-H,SESCO,annual,kg,1f46db66-d915-3d43-977b-278b324a2384 +2013,Chubut,II.1.1,104.31456,TJ,CO2,74100.0,kg/TJ,7729708.896,Gas Oil combustion consumption by public passenger transport,AR-U,SESCO,annual,kg,1a474ca4-e651-3ddc-b666-0db09b95b934 +2013,Chubut,II.1.1,104.31456,TJ,CH4,3.9,kg/TJ,406.826784,Gas Oil combustion consumption by public passenger transport,AR-U,SESCO,annual,kg,6e42f391-6e50-336d-a398-fcc9726cbe11 +2013,Chubut,II.1.1,104.31456,TJ,N2O,3.9,kg/TJ,406.826784,Gas Oil combustion consumption by public passenger transport,AR-U,SESCO,annual,kg,6e42f391-6e50-336d-a398-fcc9726cbe11 +2013,Corrientes,II.1.1,512.43444,TJ,CO2,74100.0,kg/TJ,37971392.004,Gas Oil combustion consumption by public passenger transport,AR-W,SESCO,annual,kg,f6b555ac-515e-3cb9-98ce-6ed0aa707d4c +2013,Corrientes,II.1.1,512.43444,TJ,CH4,3.9,kg/TJ,1998.494316,Gas Oil combustion consumption by public passenger transport,AR-W,SESCO,annual,kg,343421a4-7ac6-3da0-8fe0-1f94de8ce360 +2013,Corrientes,II.1.1,512.43444,TJ,N2O,3.9,kg/TJ,1998.494316,Gas Oil combustion consumption by public passenger transport,AR-W,SESCO,annual,kg,343421a4-7ac6-3da0-8fe0-1f94de8ce360 +2013,Córdoba,II.1.1,1846.3821599999999,TJ,CO2,74100.0,kg/TJ,136816918.056,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,5fd64ddd-64fc-3cde-8e3c-068945957eb6 +2013,Córdoba,II.1.1,1846.3821599999999,TJ,CH4,3.9,kg/TJ,7200.890423999999,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,e7bf06d0-cd92-3c9d-9c46-586367806c2c +2013,Córdoba,II.1.1,1846.3821599999999,TJ,N2O,3.9,kg/TJ,7200.890423999999,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,e7bf06d0-cd92-3c9d-9c46-586367806c2c +2013,Entre Rios,II.1.1,509.36424,TJ,CO2,74100.0,kg/TJ,37743890.184,Gas Oil combustion consumption by public passenger transport,AR-E,SESCO,annual,kg,d9423e28-5a5b-382a-9256-5f9540bbc2d2 +2013,Entre Rios,II.1.1,509.36424,TJ,CH4,3.9,kg/TJ,1986.520536,Gas Oil combustion consumption by public passenger transport,AR-E,SESCO,annual,kg,5ebbba37-bcb8-3903-8a43-d7dba511f0b9 +2013,Entre Rios,II.1.1,509.36424,TJ,N2O,3.9,kg/TJ,1986.520536,Gas Oil combustion consumption by public passenger transport,AR-E,SESCO,annual,kg,5ebbba37-bcb8-3903-8a43-d7dba511f0b9 +2013,Formosa,II.1.1,56.7084,TJ,CO2,74100.0,kg/TJ,4202092.4399999995,Gas Oil combustion consumption by public passenger transport,AR-P,SESCO,annual,kg,e5ba1329-e077-3e84-8c50-708955122a74 +2013,Formosa,II.1.1,56.7084,TJ,CH4,3.9,kg/TJ,221.16276,Gas Oil combustion consumption by public passenger transport,AR-P,SESCO,annual,kg,d0cfa271-23ae-327e-921b-5582077f673c +2013,Formosa,II.1.1,56.7084,TJ,N2O,3.9,kg/TJ,221.16276,Gas Oil combustion consumption by public passenger transport,AR-P,SESCO,annual,kg,d0cfa271-23ae-327e-921b-5582077f673c +2013,Jujuy,II.1.1,508.35287999999997,TJ,CO2,74100.0,kg/TJ,37668948.408,Gas Oil combustion consumption by public passenger transport,AR-Y,SESCO,annual,kg,16ff4046-67ce-3fcf-8a0c-961ff5f879ec +2013,Jujuy,II.1.1,508.35287999999997,TJ,CH4,3.9,kg/TJ,1982.576232,Gas Oil combustion consumption by public passenger transport,AR-Y,SESCO,annual,kg,2085e291-b6c7-3581-afc0-39fc6f79739b +2013,Jujuy,II.1.1,508.35287999999997,TJ,N2O,3.9,kg/TJ,1982.576232,Gas Oil combustion consumption by public passenger transport,AR-Y,SESCO,annual,kg,2085e291-b6c7-3581-afc0-39fc6f79739b +2013,La Pampa,II.1.1,27.993,TJ,CO2,74100.0,kg/TJ,2074281.2999999998,Gas Oil combustion consumption by public passenger transport,AR-L,SESCO,annual,kg,b178b0ce-7b97-3212-81e6-6b6ec5765244 +2013,La Pampa,II.1.1,27.993,TJ,CH4,3.9,kg/TJ,109.17269999999999,Gas Oil combustion consumption by public passenger transport,AR-L,SESCO,annual,kg,b9025e38-f387-3518-bbeb-70b40709352c +2013,La Pampa,II.1.1,27.993,TJ,N2O,3.9,kg/TJ,109.17269999999999,Gas Oil combustion consumption by public passenger transport,AR-L,SESCO,annual,kg,b9025e38-f387-3518-bbeb-70b40709352c +2013,La Rioja,II.1.1,140.36231999999998,TJ,CO2,74100.0,kg/TJ,10400847.911999999,Gas Oil combustion consumption by public passenger transport,AR-F,SESCO,annual,kg,f0e2ecd1-1a47-350a-bb3d-656714dc9880 +2013,La Rioja,II.1.1,140.36231999999998,TJ,CH4,3.9,kg/TJ,547.4130479999999,Gas Oil combustion consumption by public passenger transport,AR-F,SESCO,annual,kg,bb17e8f9-ec31-371e-affa-a09aac9eb94f +2013,La Rioja,II.1.1,140.36231999999998,TJ,N2O,3.9,kg/TJ,547.4130479999999,Gas Oil combustion consumption by public passenger transport,AR-F,SESCO,annual,kg,bb17e8f9-ec31-371e-affa-a09aac9eb94f +2013,Mendoza,II.1.1,1938.5242799999999,TJ,CO2,74100.0,kg/TJ,143644649.148,Gas Oil combustion consumption by public passenger transport,AR-M,SESCO,annual,kg,6afa0a92-037a-35b2-82b7-2cc81b85348f +2013,Mendoza,II.1.1,1938.5242799999999,TJ,CH4,3.9,kg/TJ,7560.244691999999,Gas Oil combustion consumption by public passenger transport,AR-M,SESCO,annual,kg,1513baac-8136-3778-a1a8-80f92b4ebf51 +2013,Mendoza,II.1.1,1938.5242799999999,TJ,N2O,3.9,kg/TJ,7560.244691999999,Gas Oil combustion consumption by public passenger transport,AR-M,SESCO,annual,kg,1513baac-8136-3778-a1a8-80f92b4ebf51 +2013,Misiones,II.1.1,797.5296,TJ,CO2,74100.0,kg/TJ,59096943.36,Gas Oil combustion consumption by public passenger transport,AR-N,SESCO,annual,kg,3ffc474a-cad8-32a8-8e04-f4e8ff1a671a +2013,Misiones,II.1.1,797.5296,TJ,CH4,3.9,kg/TJ,3110.3654399999996,Gas Oil combustion consumption by public passenger transport,AR-N,SESCO,annual,kg,2a44a290-c061-3620-abda-239fe579f748 +2013,Misiones,II.1.1,797.5296,TJ,N2O,3.9,kg/TJ,3110.3654399999996,Gas Oil combustion consumption by public passenger transport,AR-N,SESCO,annual,kg,2a44a290-c061-3620-abda-239fe579f748 +2013,Neuquén,II.1.1,290.65764,TJ,CO2,74100.0,kg/TJ,21537731.124,Gas Oil combustion consumption by public passenger transport,AR-Q,SESCO,annual,kg,dde8c894-8317-3e10-b68c-c0ab5e142a9e +2013,Neuquén,II.1.1,290.65764,TJ,CH4,3.9,kg/TJ,1133.5647960000001,Gas Oil combustion consumption by public passenger transport,AR-Q,SESCO,annual,kg,95a5acb4-73d0-3f4b-9e7a-b4fc5d69f3b5 +2013,Neuquén,II.1.1,290.65764,TJ,N2O,3.9,kg/TJ,1133.5647960000001,Gas Oil combustion consumption by public passenger transport,AR-Q,SESCO,annual,kg,95a5acb4-73d0-3f4b-9e7a-b4fc5d69f3b5 +2013,Rio Negro,II.1.1,167.5968,TJ,CO2,74100.0,kg/TJ,12418922.88,Gas Oil combustion consumption by public passenger transport,AR-R,SESCO,annual,kg,9c719040-2606-39a7-822d-788b08e8495f +2013,Rio Negro,II.1.1,167.5968,TJ,CH4,3.9,kg/TJ,653.62752,Gas Oil combustion consumption by public passenger transport,AR-R,SESCO,annual,kg,8adb36de-3cf6-3123-b780-facd8859826c +2013,Rio Negro,II.1.1,167.5968,TJ,N2O,3.9,kg/TJ,653.62752,Gas Oil combustion consumption by public passenger transport,AR-R,SESCO,annual,kg,8adb36de-3cf6-3123-b780-facd8859826c +2013,Salta,II.1.1,985.64256,TJ,CO2,74100.0,kg/TJ,73036113.696,Gas Oil combustion consumption by public passenger transport,AR-A,SESCO,annual,kg,be51c4b2-014d-36f9-a04e-437629f0ad9b +2013,Salta,II.1.1,985.64256,TJ,CH4,3.9,kg/TJ,3844.005984,Gas Oil combustion consumption by public passenger transport,AR-A,SESCO,annual,kg,5546d149-c8a1-3307-a847-2fdc3d230a6e +2013,Salta,II.1.1,985.64256,TJ,N2O,3.9,kg/TJ,3844.005984,Gas Oil combustion consumption by public passenger transport,AR-A,SESCO,annual,kg,5546d149-c8a1-3307-a847-2fdc3d230a6e +2013,San Juan,II.1.1,488.73972,TJ,CO2,74100.0,kg/TJ,36215613.252,Gas Oil combustion consumption by public passenger transport,AR-J,SESCO,annual,kg,dd9f6be6-14f3-3827-87a5-cf055c6e497a +2013,San Juan,II.1.1,488.73972,TJ,CH4,3.9,kg/TJ,1906.0849079999998,Gas Oil combustion consumption by public passenger transport,AR-J,SESCO,annual,kg,e4ac59e1-297a-397c-a5d3-89bd6ee6da5b +2013,San Juan,II.1.1,488.73972,TJ,N2O,3.9,kg/TJ,1906.0849079999998,Gas Oil combustion consumption by public passenger transport,AR-J,SESCO,annual,kg,e4ac59e1-297a-397c-a5d3-89bd6ee6da5b +2013,San Luis,II.1.1,163.94868,TJ,CO2,74100.0,kg/TJ,12148597.188,Gas Oil combustion consumption by public passenger transport,AR-D,SESCO,annual,kg,576c4959-1404-37eb-a17f-a6ef28df26d2 +2013,San Luis,II.1.1,163.94868,TJ,CH4,3.9,kg/TJ,639.399852,Gas Oil combustion consumption by public passenger transport,AR-D,SESCO,annual,kg,8f00eddd-8292-3dae-895f-c6a69e4f82ef +2013,San Luis,II.1.1,163.94868,TJ,N2O,3.9,kg/TJ,639.399852,Gas Oil combustion consumption by public passenger transport,AR-D,SESCO,annual,kg,8f00eddd-8292-3dae-895f-c6a69e4f82ef +2013,Santa Cruz,II.1.1,42.72996,TJ,CO2,74100.0,kg/TJ,3166290.036,Gas Oil combustion consumption by public passenger transport,AR-Z,SESCO,annual,kg,cd796fb8-6ac1-3ba5-b777-23ea902bff20 +2013,Santa Cruz,II.1.1,42.72996,TJ,CH4,3.9,kg/TJ,166.646844,Gas Oil combustion consumption by public passenger transport,AR-Z,SESCO,annual,kg,77392ee4-61d4-34da-8f70-459a0a297ff8 +2013,Santa Cruz,II.1.1,42.72996,TJ,N2O,3.9,kg/TJ,166.646844,Gas Oil combustion consumption by public passenger transport,AR-Z,SESCO,annual,kg,77392ee4-61d4-34da-8f70-459a0a297ff8 +2013,Santa Fe,II.1.1,1947.91548,TJ,CO2,74100.0,kg/TJ,144340537.068,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,9757c54b-e3f1-3931-b6e4-2cbd788c5576 +2013,Santa Fe,II.1.1,1947.91548,TJ,CH4,3.9,kg/TJ,7596.870371999999,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,629eafcf-3712-3d9f-aa66-f79741d6685e +2013,Santa Fe,II.1.1,1947.91548,TJ,N2O,3.9,kg/TJ,7596.870371999999,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,629eafcf-3712-3d9f-aa66-f79741d6685e +2013,Santiago del Estero,II.1.1,252.37044,TJ,CO2,74100.0,kg/TJ,18700649.604,Gas Oil combustion consumption by public passenger transport,AR-G,SESCO,annual,kg,24fa1c91-c39f-3492-ac00-95253f352ce6 +2013,Santiago del Estero,II.1.1,252.37044,TJ,CH4,3.9,kg/TJ,984.244716,Gas Oil combustion consumption by public passenger transport,AR-G,SESCO,annual,kg,6ace1a6d-54b3-3152-b5fc-313109c1d33a +2013,Santiago del Estero,II.1.1,252.37044,TJ,N2O,3.9,kg/TJ,984.244716,Gas Oil combustion consumption by public passenger transport,AR-G,SESCO,annual,kg,6ace1a6d-54b3-3152-b5fc-313109c1d33a +2013,Tierra del Fuego,II.1.1,20.51616,TJ,CO2,74100.0,kg/TJ,1520247.456,Gas Oil combustion consumption by public passenger transport,AR-V,SESCO,annual,kg,1cc19e33-0a41-32b5-8cdc-984b37919436 +2013,Tierra del Fuego,II.1.1,20.51616,TJ,CH4,3.9,kg/TJ,80.013024,Gas Oil combustion consumption by public passenger transport,AR-V,SESCO,annual,kg,ed90706c-85da-3f64-a517-44f507a1ced0 +2013,Tierra del Fuego,II.1.1,20.51616,TJ,N2O,3.9,kg/TJ,80.013024,Gas Oil combustion consumption by public passenger transport,AR-V,SESCO,annual,kg,ed90706c-85da-3f64-a517-44f507a1ced0 +2013,Tucuman,II.1.1,1452.7464,TJ,CO2,74100.0,kg/TJ,107648508.24,Gas Oil combustion consumption by public passenger transport,AR-T,SESCO,annual,kg,ef615512-e469-3af8-bd0d-c92d382afc7a +2013,Tucuman,II.1.1,1452.7464,TJ,CH4,3.9,kg/TJ,5665.710959999999,Gas Oil combustion consumption by public passenger transport,AR-T,SESCO,annual,kg,b019049f-8cfd-3bec-b665-c5026428bff6 +2013,Tucuman,II.1.1,1452.7464,TJ,N2O,3.9,kg/TJ,5665.710959999999,Gas Oil combustion consumption by public passenger transport,AR-T,SESCO,annual,kg,b019049f-8cfd-3bec-b665-c5026428bff6 +2013,Buenos Aires,II.1.1,0.18059999999999998,TJ,CO2,74100.0,kg/TJ,13382.46,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,0e0ca11e-d0f1-3e2c-8b86-290bab76f213 +2013,Buenos Aires,II.1.1,0.18059999999999998,TJ,CH4,3.9,kg/TJ,0.70434,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,86ff3cff-1134-39af-bd53-68845d9d94f5 +2013,Buenos Aires,II.1.1,0.18059999999999998,TJ,N2O,3.9,kg/TJ,0.70434,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,86ff3cff-1134-39af-bd53-68845d9d94f5 +2014,Buenos Aires,II.5.1,136.30243199999998,TJ,CO2,74100.0,kg/TJ,10100010.211199999,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,ca490833-30cd-3430-90ab-2de81a2f70eb +2014,Buenos Aires,II.5.1,136.30243199999998,TJ,CH4,3.9,kg/TJ,531.5794847999999,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,bb19dec5-0f29-3c52-b52b-16a0a65b95ce +2014,Buenos Aires,II.5.1,136.30243199999998,TJ,N2O,3.9,kg/TJ,531.5794847999999,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,bb19dec5-0f29-3c52-b52b-16a0a65b95ce +2014,Córdoba,II.5.1,27.696816,TJ,CO2,74100.0,kg/TJ,2052334.0655999999,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,2fa39a91-7537-3adc-9851-4cc659f1bc8c +2014,Córdoba,II.5.1,27.696816,TJ,CH4,3.9,kg/TJ,108.0175824,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,2e810a27-26a8-3c3b-9efa-569dbfc3d981 +2014,Córdoba,II.5.1,27.696816,TJ,N2O,3.9,kg/TJ,108.0175824,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,2e810a27-26a8-3c3b-9efa-569dbfc3d981 +2014,Santa Fe,II.5.1,427.96059599999995,TJ,CO2,74100.0,kg/TJ,31711880.163599998,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,7e9811e8-5eef-3020-96f9-c6f66aa4bab4 +2014,Santa Fe,II.5.1,427.96059599999995,TJ,CH4,3.9,kg/TJ,1669.0463243999998,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,9a3e204b-3521-355d-ad52-ccfd39475c65 +2014,Santa Fe,II.5.1,427.96059599999995,TJ,N2O,3.9,kg/TJ,1669.0463243999998,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,9a3e204b-3521-355d-ad52-ccfd39475c65 +2014,Buenos Aires,II.5.1,1.6976399999999998,TJ,CO2,74100.0,kg/TJ,125795.12399999998,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,f2db4be2-e23e-33b7-9410-537fc13a511b +2014,Buenos Aires,II.5.1,1.6976399999999998,TJ,CH4,3.9,kg/TJ,6.6207959999999995,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,66e6daba-b7f3-3c67-880e-ac85ff4bfb30 +2014,Buenos Aires,II.5.1,1.6976399999999998,TJ,N2O,3.9,kg/TJ,6.6207959999999995,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,66e6daba-b7f3-3c67-880e-ac85ff4bfb30 +2014,Córdoba,II.5.1,2.85348,TJ,CO2,74100.0,kg/TJ,211442.868,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,b9223b2c-07dc-3b6e-9fa4-121554515e86 +2014,Córdoba,II.5.1,2.85348,TJ,CH4,3.9,kg/TJ,11.128571999999998,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,ba3b3d47-4a11-3a1a-bccc-89e8fd9cea81 +2014,Córdoba,II.5.1,2.85348,TJ,N2O,3.9,kg/TJ,11.128571999999998,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,ba3b3d47-4a11-3a1a-bccc-89e8fd9cea81 +2014,Santa Fe,II.5.1,9.965507999999998,TJ,CO2,74100.0,kg/TJ,738444.1427999998,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,6580b468-2c20-3b88-be98-f9e6f1e12b68 +2014,Santa Fe,II.5.1,9.965507999999998,TJ,CH4,3.9,kg/TJ,38.86548119999999,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,83f38afb-c15e-3108-a520-e2dc56a59484 +2014,Santa Fe,II.5.1,9.965507999999998,TJ,N2O,3.9,kg/TJ,38.86548119999999,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,83f38afb-c15e-3108-a520-e2dc56a59484 +2014,Córdoba,II.5.1,6.4109815,TJ,CO2,73300.0,kg/TJ,469924.94395,Naphtha combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,40542fed-ddfd-3ce9-a358-60d1de4fc89b +2014,Córdoba,II.5.1,6.4109815,TJ,CH4,0.5,kg/TJ,3.20549075,Naphtha combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,34133292-2a52-3c62-847e-76e9af9c94da +2014,Córdoba,II.5.1,6.4109815,TJ,N2O,2.0,kg/TJ,12.821963,Naphtha combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,b9f68d34-60ff-3a24-9f49-5e46fe11f360 +2014,Santa Fe,II.5.1,19.236371,TJ,CO2,73300.0,kg/TJ,1410025.9943,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,c4f959a8-8c1d-3057-96f7-c4eb5f126ae2 +2014,Santa Fe,II.5.1,19.236371,TJ,CH4,0.5,kg/TJ,9.6181855,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,ee734103-6daa-3bd4-8b30-825f8ae244be +2014,Santa Fe,II.5.1,19.236371,TJ,N2O,2.0,kg/TJ,38.472742,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,33c8bdde-fd3d-347e-8a60-b5f4bf0a5146 +2014,Buenos Aires,II.5.1,0.27412,TJ,CO2,73300.0,kg/TJ,20092.996,Naphtha combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,2426d1a8-ca6e-3dbc-8aa1-8e070f806aab +2014,Buenos Aires,II.5.1,0.27412,TJ,CH4,0.5,kg/TJ,0.13706,Naphtha combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,b4120277-dab0-391d-b45c-4a00c111c7f8 +2014,Buenos Aires,II.5.1,0.27412,TJ,N2O,2.0,kg/TJ,0.54824,Naphtha combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,fc4125f0-7101-3d8b-82fa-0660f9c55d98 +2014,Córdoba,II.5.1,2.734347,TJ,CO2,73300.0,kg/TJ,200427.6351,Naphtha combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,62046a23-582c-3f41-a51c-93c7609a186f +2014,Córdoba,II.5.1,2.734347,TJ,CH4,0.5,kg/TJ,1.3671735,Naphtha combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,93c7f686-1977-31b8-9c59-9cffc0610284 +2014,Córdoba,II.5.1,2.734347,TJ,N2O,2.0,kg/TJ,5.468694,Naphtha combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,2afd1f2f-bf4d-3cdb-b621-0cfd2289b917 +2014,Santa Fe,II.5.1,3.8376799999999998,TJ,CO2,73300.0,kg/TJ,281301.94399999996,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,11bd7751-843d-34bb-9aeb-257fa1cae5d7 +2014,Santa Fe,II.5.1,3.8376799999999998,TJ,CH4,0.5,kg/TJ,1.9188399999999999,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,efe21bb2-95c7-3848-b6f1-c726a7061fb0 +2014,Santa Fe,II.5.1,3.8376799999999998,TJ,N2O,2.0,kg/TJ,7.6753599999999995,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,bc48c88c-485a-33f5-94b5-beb20bc0a309 +2014,Buenos Aires,II.1.1,1349.8181255999998,TJ,CO2,74100.0,kg/TJ,100021523.10695998,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,27b492ea-0872-3090-8296-ab9685f662d1 +2014,Buenos Aires,II.1.1,1349.8181255999998,TJ,CH4,3.9,kg/TJ,5264.290689839999,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,042d18d9-d0cc-3877-9c1a-3aed377e4d95 +2014,Buenos Aires,II.1.1,1349.8181255999998,TJ,N2O,3.9,kg/TJ,5264.290689839999,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,042d18d9-d0cc-3877-9c1a-3aed377e4d95 +2014,Capital Federal,II.1.1,441.881244,TJ,CO2,74100.0,kg/TJ,32743400.1804,Gas Oil combustion consumption by freight transport,AR-C,SESCO,annual,kg,927ed9c7-aca7-3d1b-b6d7-45795d7db59e +2014,Capital Federal,II.1.1,441.881244,TJ,CH4,3.9,kg/TJ,1723.3368515999998,Gas Oil combustion consumption by freight transport,AR-C,SESCO,annual,kg,95e7a103-4fe7-3593-aa95-4ff295f10483 +2014,Capital Federal,II.1.1,441.881244,TJ,N2O,3.9,kg/TJ,1723.3368515999998,Gas Oil combustion consumption by freight transport,AR-C,SESCO,annual,kg,95e7a103-4fe7-3593-aa95-4ff295f10483 +2014,Catamarca,II.1.1,10.07748,TJ,CO2,74100.0,kg/TJ,746741.2679999999,Gas Oil combustion consumption by freight transport,AR-K,SESCO,annual,kg,b6a3402b-0578-3767-8316-1a901f65832f +2014,Catamarca,II.1.1,10.07748,TJ,CH4,3.9,kg/TJ,39.302172,Gas Oil combustion consumption by freight transport,AR-K,SESCO,annual,kg,f9585115-c258-3f10-ac3e-da5bcda51eb1 +2014,Catamarca,II.1.1,10.07748,TJ,N2O,3.9,kg/TJ,39.302172,Gas Oil combustion consumption by freight transport,AR-K,SESCO,annual,kg,f9585115-c258-3f10-ac3e-da5bcda51eb1 +2014,Chaco,II.1.1,29.619483599999995,TJ,CO2,74100.0,kg/TJ,2194803.7347599994,Gas Oil combustion consumption by freight transport,AR-H,SESCO,annual,kg,d88844e1-e6d5-3831-b3de-ee4d98d58900 +2014,Chaco,II.1.1,29.619483599999995,TJ,CH4,3.9,kg/TJ,115.51598603999997,Gas Oil combustion consumption by freight transport,AR-H,SESCO,annual,kg,fdb387da-629e-3a45-8d75-6607da70af76 +2014,Chaco,II.1.1,29.619483599999995,TJ,N2O,3.9,kg/TJ,115.51598603999997,Gas Oil combustion consumption by freight transport,AR-H,SESCO,annual,kg,fdb387da-629e-3a45-8d75-6607da70af76 +2014,Chubut,II.1.1,0.5894784,TJ,CO2,74100.0,kg/TJ,43680.34944,Gas Oil combustion consumption by freight transport,AR-U,SESCO,annual,kg,1f50a6fe-6f67-30b8-911f-99863e22a440 +2014,Chubut,II.1.1,0.5894784,TJ,CH4,3.9,kg/TJ,2.2989657599999997,Gas Oil combustion consumption by freight transport,AR-U,SESCO,annual,kg,896db00a-8c5c-36b2-96bc-cfa38c773e00 +2014,Chubut,II.1.1,0.5894784,TJ,N2O,3.9,kg/TJ,2.2989657599999997,Gas Oil combustion consumption by freight transport,AR-U,SESCO,annual,kg,896db00a-8c5c-36b2-96bc-cfa38c773e00 +2014,Corrientes,II.1.1,66.164616,TJ,CO2,74100.0,kg/TJ,4902798.0456,Gas Oil combustion consumption by freight transport,AR-W,SESCO,annual,kg,526d19d9-8722-34df-9cff-9fa0028aee7e +2014,Corrientes,II.1.1,66.164616,TJ,CH4,3.9,kg/TJ,258.0420024,Gas Oil combustion consumption by freight transport,AR-W,SESCO,annual,kg,c8d519a2-9ec5-3450-8c50-a98bd591076c +2014,Corrientes,II.1.1,66.164616,TJ,N2O,3.9,kg/TJ,258.0420024,Gas Oil combustion consumption by freight transport,AR-W,SESCO,annual,kg,c8d519a2-9ec5-3450-8c50-a98bd591076c +2014,Córdoba,II.1.1,123.5011428,TJ,CO2,74100.0,kg/TJ,9151434.68148,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,76b62f08-a824-3a17-b8c9-f28f1ab230d9 +2014,Córdoba,II.1.1,123.5011428,TJ,CH4,3.9,kg/TJ,481.65445692,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,657b621e-89d7-395d-abee-ae9f93723734 +2014,Córdoba,II.1.1,123.5011428,TJ,N2O,3.9,kg/TJ,481.65445692,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,657b621e-89d7-395d-abee-ae9f93723734 +2014,Entre Rios,II.1.1,57.6666636,TJ,CO2,74100.0,kg/TJ,4273099.77276,Gas Oil combustion consumption by freight transport,AR-E,SESCO,annual,kg,ffe1703d-04b1-39f4-9cc5-5906f9015f21 +2014,Entre Rios,II.1.1,57.6666636,TJ,CH4,3.9,kg/TJ,224.89998803999998,Gas Oil combustion consumption by freight transport,AR-E,SESCO,annual,kg,3ff11043-f29c-3167-8018-717b326c0734 +2014,Entre Rios,II.1.1,57.6666636,TJ,N2O,3.9,kg/TJ,224.89998803999998,Gas Oil combustion consumption by freight transport,AR-E,SESCO,annual,kg,3ff11043-f29c-3167-8018-717b326c0734 +2014,Formosa,II.1.1,1.95048,TJ,CO2,74100.0,kg/TJ,144530.568,Gas Oil combustion consumption by freight transport,AR-P,SESCO,annual,kg,d57ebe41-a5ee-39e2-b91f-d38d932ec763 +2014,Formosa,II.1.1,1.95048,TJ,CH4,3.9,kg/TJ,7.606872,Gas Oil combustion consumption by freight transport,AR-P,SESCO,annual,kg,974a0719-5c10-36c1-ae11-b7d63b0b84ba +2014,Formosa,II.1.1,1.95048,TJ,N2O,3.9,kg/TJ,7.606872,Gas Oil combustion consumption by freight transport,AR-P,SESCO,annual,kg,974a0719-5c10-36c1-ae11-b7d63b0b84ba +2014,La Pampa,II.1.1,7.533548399999999,TJ,CO2,74100.0,kg/TJ,558235.93644,Gas Oil combustion consumption by freight transport,AR-L,SESCO,annual,kg,e9151dd4-e5c9-369f-be06-bd10a536d9e5 +2014,La Pampa,II.1.1,7.533548399999999,TJ,CH4,3.9,kg/TJ,29.380838759999996,Gas Oil combustion consumption by freight transport,AR-L,SESCO,annual,kg,28dd037c-e1b5-386f-a313-bf6f9c4b9b35 +2014,La Pampa,II.1.1,7.533548399999999,TJ,N2O,3.9,kg/TJ,29.380838759999996,Gas Oil combustion consumption by freight transport,AR-L,SESCO,annual,kg,28dd037c-e1b5-386f-a313-bf6f9c4b9b35 +2014,Mendoza,II.1.1,19.463984399999998,TJ,CO2,74100.0,kg/TJ,1442281.2440399998,Gas Oil combustion consumption by freight transport,AR-M,SESCO,annual,kg,c704142e-2a70-338a-a332-646bc8a6d2fc +2014,Mendoza,II.1.1,19.463984399999998,TJ,CH4,3.9,kg/TJ,75.90953916,Gas Oil combustion consumption by freight transport,AR-M,SESCO,annual,kg,e74e5b45-4062-31ab-b121-7bc7fd7ccf3b +2014,Mendoza,II.1.1,19.463984399999998,TJ,N2O,3.9,kg/TJ,75.90953916,Gas Oil combustion consumption by freight transport,AR-M,SESCO,annual,kg,e74e5b45-4062-31ab-b121-7bc7fd7ccf3b +2014,Misiones,II.1.1,24.703912800000005,TJ,CO2,74100.0,kg/TJ,1830559.9384800002,Gas Oil combustion consumption by freight transport,AR-N,SESCO,annual,kg,4881bce0-18ff-3d09-8b4b-facb377bca43 +2014,Misiones,II.1.1,24.703912800000005,TJ,CH4,3.9,kg/TJ,96.34525992000002,Gas Oil combustion consumption by freight transport,AR-N,SESCO,annual,kg,7462685f-0059-356a-8061-2df9b41336fe +2014,Misiones,II.1.1,24.703912800000005,TJ,N2O,3.9,kg/TJ,96.34525992000002,Gas Oil combustion consumption by freight transport,AR-N,SESCO,annual,kg,7462685f-0059-356a-8061-2df9b41336fe +2014,Rio Negro,II.1.1,18.999119999999998,TJ,CO2,74100.0,kg/TJ,1407834.792,Gas Oil combustion consumption by freight transport,AR-R,SESCO,annual,kg,6edf2fad-8086-395e-ac76-401db9318704 +2014,Rio Negro,II.1.1,18.999119999999998,TJ,CH4,3.9,kg/TJ,74.09656799999999,Gas Oil combustion consumption by freight transport,AR-R,SESCO,annual,kg,1ee42543-c917-32d3-b745-52872f324d9f +2014,Rio Negro,II.1.1,18.999119999999998,TJ,N2O,3.9,kg/TJ,74.09656799999999,Gas Oil combustion consumption by freight transport,AR-R,SESCO,annual,kg,1ee42543-c917-32d3-b745-52872f324d9f +2014,Salta,II.1.1,0.502068,TJ,CO2,74100.0,kg/TJ,37203.2388,Gas Oil combustion consumption by freight transport,AR-A,SESCO,annual,kg,6cb60035-5cf4-3f22-b8c1-27c66737948d +2014,Salta,II.1.1,0.502068,TJ,CH4,3.9,kg/TJ,1.9580651999999998,Gas Oil combustion consumption by freight transport,AR-A,SESCO,annual,kg,14b7f838-135b-33b5-b1e4-8081ab18861e +2014,Salta,II.1.1,0.502068,TJ,N2O,3.9,kg/TJ,1.9580651999999998,Gas Oil combustion consumption by freight transport,AR-A,SESCO,annual,kg,14b7f838-135b-33b5-b1e4-8081ab18861e +2014,San Juan,II.1.1,10.2837252,TJ,CO2,74100.0,kg/TJ,762024.0373199999,Gas Oil combustion consumption by freight transport,AR-J,SESCO,annual,kg,1fb67c8c-938a-3fc3-a7d7-bb06e8a3d558 +2014,San Juan,II.1.1,10.2837252,TJ,CH4,3.9,kg/TJ,40.10652828,Gas Oil combustion consumption by freight transport,AR-J,SESCO,annual,kg,b2f096a6-f5cd-303f-85a3-8ea23596ff0b +2014,San Juan,II.1.1,10.2837252,TJ,N2O,3.9,kg/TJ,40.10652828,Gas Oil combustion consumption by freight transport,AR-J,SESCO,annual,kg,b2f096a6-f5cd-303f-85a3-8ea23596ff0b +2014,San Luis,II.1.1,55.520052,TJ,CO2,74100.0,kg/TJ,4114035.8532,Gas Oil combustion consumption by freight transport,AR-D,SESCO,annual,kg,8784e5db-1315-32bb-9cbb-7412d51a57ae +2014,San Luis,II.1.1,55.520052,TJ,CH4,3.9,kg/TJ,216.5282028,Gas Oil combustion consumption by freight transport,AR-D,SESCO,annual,kg,acfb2de1-2458-3d4a-b216-face497bee35 +2014,San Luis,II.1.1,55.520052,TJ,N2O,3.9,kg/TJ,216.5282028,Gas Oil combustion consumption by freight transport,AR-D,SESCO,annual,kg,acfb2de1-2458-3d4a-b216-face497bee35 +2014,Santa Fe,II.1.1,349.59500519999995,TJ,CO2,74100.0,kg/TJ,25904989.885319997,Gas Oil combustion consumption by freight transport,AR-S,SESCO,annual,kg,16adf4aa-5c0e-30bc-adcb-6ad01485dffc +2014,Santa Fe,II.1.1,349.59500519999995,TJ,CH4,3.9,kg/TJ,1363.4205202799997,Gas Oil combustion consumption by freight transport,AR-S,SESCO,annual,kg,834e92f8-a7d7-3fbc-b412-9458c74ce811 +2014,Santa Fe,II.1.1,349.59500519999995,TJ,N2O,3.9,kg/TJ,1363.4205202799997,Gas Oil combustion consumption by freight transport,AR-S,SESCO,annual,kg,834e92f8-a7d7-3fbc-b412-9458c74ce811 +2014,Santiago del Estero,II.1.1,6.797784,TJ,CO2,74100.0,kg/TJ,503715.7944,Gas Oil combustion consumption by freight transport,AR-G,SESCO,annual,kg,97e49974-fb03-3b3b-b063-3152eb847903 +2014,Santiago del Estero,II.1.1,6.797784,TJ,CH4,3.9,kg/TJ,26.5113576,Gas Oil combustion consumption by freight transport,AR-G,SESCO,annual,kg,fccfae2e-483c-325d-8fd8-a678fa6477bd +2014,Santiago del Estero,II.1.1,6.797784,TJ,N2O,3.9,kg/TJ,26.5113576,Gas Oil combustion consumption by freight transport,AR-G,SESCO,annual,kg,fccfae2e-483c-325d-8fd8-a678fa6477bd +2014,Tierra del Fuego,II.1.1,1.9569815999999998,TJ,CO2,74100.0,kg/TJ,145012.33656,Gas Oil combustion consumption by freight transport,AR-V,SESCO,annual,kg,45ba0f41-8b9e-3500-a699-0f8f27bf6613 +2014,Tierra del Fuego,II.1.1,1.9569815999999998,TJ,CH4,3.9,kg/TJ,7.632228239999999,Gas Oil combustion consumption by freight transport,AR-V,SESCO,annual,kg,089a3ede-1676-3fba-9cdf-719ffc436a57 +2014,Tierra del Fuego,II.1.1,1.9569815999999998,TJ,N2O,3.9,kg/TJ,7.632228239999999,Gas Oil combustion consumption by freight transport,AR-V,SESCO,annual,kg,089a3ede-1676-3fba-9cdf-719ffc436a57 +2014,Tucuman,II.1.1,37.034558399999995,TJ,CO2,74100.0,kg/TJ,2744260.7774399994,Gas Oil combustion consumption by freight transport,AR-T,SESCO,annual,kg,e778578b-acc0-3bb0-b2a6-5414851ac396 +2014,Tucuman,II.1.1,37.034558399999995,TJ,CH4,3.9,kg/TJ,144.43477775999997,Gas Oil combustion consumption by freight transport,AR-T,SESCO,annual,kg,37ceb41b-bff3-36f7-b2d8-5bbdf748bc6d +2014,Tucuman,II.1.1,37.034558399999995,TJ,N2O,3.9,kg/TJ,144.43477775999997,Gas Oil combustion consumption by freight transport,AR-T,SESCO,annual,kg,37ceb41b-bff3-36f7-b2d8-5bbdf748bc6d +2014,Buenos Aires,II.1.1,27.109143599999996,TJ,CO2,74100.0,kg/TJ,2008787.5407599998,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,2d93af78-5739-35b8-907a-a85ca87270a4 +2014,Buenos Aires,II.1.1,27.109143599999996,TJ,CH4,3.9,kg/TJ,105.72566003999998,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,e5060a58-59fd-3f83-8267-b854cf31288b +2014,Buenos Aires,II.1.1,27.109143599999996,TJ,N2O,3.9,kg/TJ,105.72566003999998,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,e5060a58-59fd-3f83-8267-b854cf31288b +2014,Capital Federal,II.1.1,31.894682399999997,TJ,CO2,74100.0,kg/TJ,2363395.9658399997,Gas Oil combustion consumption by freight transport,AR-C,SESCO,annual,kg,3e148982-7d9e-36d0-aa8a-60c1eceb9fa9 +2014,Capital Federal,II.1.1,31.894682399999997,TJ,CH4,3.9,kg/TJ,124.38926135999999,Gas Oil combustion consumption by freight transport,AR-C,SESCO,annual,kg,7eb49098-3e8a-323a-abef-ed400c2a96f5 +2014,Capital Federal,II.1.1,31.894682399999997,TJ,N2O,3.9,kg/TJ,124.38926135999999,Gas Oil combustion consumption by freight transport,AR-C,SESCO,annual,kg,7eb49098-3e8a-323a-abef-ed400c2a96f5 +2014,Chaco,II.1.1,0.5710571999999999,TJ,CO2,74100.0,kg/TJ,42315.33852,Gas Oil combustion consumption by freight transport,AR-H,SESCO,annual,kg,243f1139-d044-3953-ae3f-4b2461a2c0d2 +2014,Chaco,II.1.1,0.5710571999999999,TJ,CH4,3.9,kg/TJ,2.2271230799999997,Gas Oil combustion consumption by freight transport,AR-H,SESCO,annual,kg,dc619b96-145f-3d50-ad9d-e20ff83ce415 +2014,Chaco,II.1.1,0.5710571999999999,TJ,N2O,3.9,kg/TJ,2.2271230799999997,Gas Oil combustion consumption by freight transport,AR-H,SESCO,annual,kg,dc619b96-145f-3d50-ad9d-e20ff83ce415 +2014,Corrientes,II.1.1,1.3014036,TJ,CO2,74100.0,kg/TJ,96434.00676,Gas Oil combustion consumption by freight transport,AR-W,SESCO,annual,kg,a9fe2643-7501-361d-925f-d6b9077a89f0 +2014,Corrientes,II.1.1,1.3014036,TJ,CH4,3.9,kg/TJ,5.07547404,Gas Oil combustion consumption by freight transport,AR-W,SESCO,annual,kg,787c4d7e-c3ec-3d7b-ab42-4bceb61ed670 +2014,Corrientes,II.1.1,1.3014036,TJ,N2O,3.9,kg/TJ,5.07547404,Gas Oil combustion consumption by freight transport,AR-W,SESCO,annual,kg,787c4d7e-c3ec-3d7b-ab42-4bceb61ed670 +2014,Córdoba,II.1.1,0.7733292,TJ,CO2,74100.0,kg/TJ,57303.69372,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,a8b25b05-d9e0-3415-8e53-21248d2148cb +2014,Córdoba,II.1.1,0.7733292,TJ,CH4,3.9,kg/TJ,3.0159838800000003,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,45d65fa7-d21f-3cdb-954a-ea79644321b2 +2014,Córdoba,II.1.1,0.7733292,TJ,N2O,3.9,kg/TJ,3.0159838800000003,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,45d65fa7-d21f-3cdb-954a-ea79644321b2 +2014,Entre Rios,II.1.1,1.7164224,TJ,CO2,74100.0,kg/TJ,127186.89984,Gas Oil combustion consumption by freight transport,AR-E,SESCO,annual,kg,0fc72a99-01ee-377e-828c-087a28419b5d +2014,Entre Rios,II.1.1,1.7164224,TJ,CH4,3.9,kg/TJ,6.69404736,Gas Oil combustion consumption by freight transport,AR-E,SESCO,annual,kg,0b40b9bf-10ac-37b5-8968-b51b755041d8 +2014,Entre Rios,II.1.1,1.7164224,TJ,N2O,3.9,kg/TJ,6.69404736,Gas Oil combustion consumption by freight transport,AR-E,SESCO,annual,kg,0b40b9bf-10ac-37b5-8968-b51b755041d8 +2014,Mendoza,II.1.1,0.0285348,TJ,CO2,74100.0,kg/TJ,2114.42868,Gas Oil combustion consumption by freight transport,AR-M,SESCO,annual,kg,90413690-5952-38c1-9172-8147f141866f +2014,Mendoza,II.1.1,0.0285348,TJ,CH4,3.9,kg/TJ,0.11128571999999999,Gas Oil combustion consumption by freight transport,AR-M,SESCO,annual,kg,bc7f7c61-57ce-3dc5-96b3-71ad99a99e07 +2014,Mendoza,II.1.1,0.0285348,TJ,N2O,3.9,kg/TJ,0.11128571999999999,Gas Oil combustion consumption by freight transport,AR-M,SESCO,annual,kg,bc7f7c61-57ce-3dc5-96b3-71ad99a99e07 +2014,Misiones,II.1.1,0.05418,TJ,CO2,74100.0,kg/TJ,4014.738,Gas Oil combustion consumption by freight transport,AR-N,SESCO,annual,kg,9a472f53-cb6e-3d98-937b-ea552d9abe01 +2014,Misiones,II.1.1,0.05418,TJ,CH4,3.9,kg/TJ,0.211302,Gas Oil combustion consumption by freight transport,AR-N,SESCO,annual,kg,1a748f3c-4c85-3d85-a203-3bb4eb40d9b1 +2014,Misiones,II.1.1,0.05418,TJ,N2O,3.9,kg/TJ,0.211302,Gas Oil combustion consumption by freight transport,AR-N,SESCO,annual,kg,1a748f3c-4c85-3d85-a203-3bb4eb40d9b1 +2014,San Juan,II.1.1,0.0036119999999999998,TJ,CO2,74100.0,kg/TJ,267.6492,Gas Oil combustion consumption by freight transport,AR-J,SESCO,annual,kg,926e98b0-717c-3943-8131-b3ea241feb0b +2014,San Juan,II.1.1,0.0036119999999999998,TJ,CH4,3.9,kg/TJ,0.014086799999999998,Gas Oil combustion consumption by freight transport,AR-J,SESCO,annual,kg,8a6037ee-88c1-39b1-8368-58e9a08d0c3b +2014,San Juan,II.1.1,0.0036119999999999998,TJ,N2O,3.9,kg/TJ,0.014086799999999998,Gas Oil combustion consumption by freight transport,AR-J,SESCO,annual,kg,8a6037ee-88c1-39b1-8368-58e9a08d0c3b +2014,San Luis,II.1.1,0.1755432,TJ,CO2,74100.0,kg/TJ,13007.75112,Gas Oil combustion consumption by freight transport,AR-D,SESCO,annual,kg,69ed602e-800c-3597-a340-3707ef891d7f +2014,San Luis,II.1.1,0.1755432,TJ,CH4,3.9,kg/TJ,0.68461848,Gas Oil combustion consumption by freight transport,AR-D,SESCO,annual,kg,550f448c-00dc-33e8-a540-77b0b728422d +2014,San Luis,II.1.1,0.1755432,TJ,N2O,3.9,kg/TJ,0.68461848,Gas Oil combustion consumption by freight transport,AR-D,SESCO,annual,kg,550f448c-00dc-33e8-a540-77b0b728422d +2014,Santa Fe,II.1.1,1.8255048,TJ,CO2,74100.0,kg/TJ,135269.90568,Gas Oil combustion consumption by freight transport,AR-S,SESCO,annual,kg,6ff05dd3-815d-3fdd-994d-c3c8712d5552 +2014,Santa Fe,II.1.1,1.8255048,TJ,CH4,3.9,kg/TJ,7.11946872,Gas Oil combustion consumption by freight transport,AR-S,SESCO,annual,kg,05c41f5a-9a71-3062-88b3-bdabf9f1ee66 +2014,Santa Fe,II.1.1,1.8255048,TJ,N2O,3.9,kg/TJ,7.11946872,Gas Oil combustion consumption by freight transport,AR-S,SESCO,annual,kg,05c41f5a-9a71-3062-88b3-bdabf9f1ee66 +2014,Santiago del Estero,II.1.1,0.18059999999999998,TJ,CO2,74100.0,kg/TJ,13382.46,Gas Oil combustion consumption by freight transport,AR-G,SESCO,annual,kg,3c8c274a-f4c1-32eb-b1d8-294aef5a8545 +2014,Santiago del Estero,II.1.1,0.18059999999999998,TJ,CH4,3.9,kg/TJ,0.70434,Gas Oil combustion consumption by freight transport,AR-G,SESCO,annual,kg,57674291-16cd-3d81-b3c2-f42e9b17a22d +2014,Santiago del Estero,II.1.1,0.18059999999999998,TJ,N2O,3.9,kg/TJ,0.70434,Gas Oil combustion consumption by freight transport,AR-G,SESCO,annual,kg,57674291-16cd-3d81-b3c2-f42e9b17a22d +2014,Tierra del Fuego,II.1.1,0.0476784,TJ,CO2,74100.0,kg/TJ,3532.9694400000003,Gas Oil combustion consumption by freight transport,AR-V,SESCO,annual,kg,50327b74-69f2-3533-a38e-0937af75c147 +2014,Tierra del Fuego,II.1.1,0.0476784,TJ,CH4,3.9,kg/TJ,0.18594576000000002,Gas Oil combustion consumption by freight transport,AR-V,SESCO,annual,kg,40f7d57e-3525-387a-b787-4ef00b8a8fa3 +2014,Tierra del Fuego,II.1.1,0.0476784,TJ,N2O,3.9,kg/TJ,0.18594576000000002,Gas Oil combustion consumption by freight transport,AR-V,SESCO,annual,kg,40f7d57e-3525-387a-b787-4ef00b8a8fa3 +2014,Tucuman,II.1.1,0.30918719999999994,TJ,CO2,74100.0,kg/TJ,22910.771519999995,Gas Oil combustion consumption by freight transport,AR-T,SESCO,annual,kg,8c8f0565-03fd-3cce-b840-7ecb2b2eda63 +2014,Tucuman,II.1.1,0.30918719999999994,TJ,CH4,3.9,kg/TJ,1.2058300799999997,Gas Oil combustion consumption by freight transport,AR-T,SESCO,annual,kg,dd9011b6-0e56-3ec1-ab22-3b97931fa945 +2014,Tucuman,II.1.1,0.30918719999999994,TJ,N2O,3.9,kg/TJ,1.2058300799999997,Gas Oil combustion consumption by freight transport,AR-T,SESCO,annual,kg,dd9011b6-0e56-3ec1-ab22-3b97931fa945 +2014,Buenos Aires,II.1.1,0.534701,TJ,CO2,71500.0,kg/TJ,38231.1215,Jet Kerosene combustion consumption by freight transport,AR-B,SESCO,annual,kg,c2f6f28d-06c5-3feb-bc90-8ecb5ae5dc6e +2014,Buenos Aires,II.1.1,0.534701,TJ,CH4,0.5,kg/TJ,0.2673505,Jet Kerosene combustion consumption by freight transport,AR-B,SESCO,annual,kg,168ac1ac-0fcf-3422-a4b6-bd701efffa75 +2014,Buenos Aires,II.1.1,0.534701,TJ,N2O,2.0,kg/TJ,1.069402,Jet Kerosene combustion consumption by freight transport,AR-B,SESCO,annual,kg,65d5d6a4-9f24-30ef-abdc-29ca6b5868f4 +2014,Buenos Aires,II.1.1,5.4714352,TJ,CO2,73300.0,kg/TJ,401056.20016,Naphtha combustion consumption by freight transport,AR-B,SESCO,annual,kg,217f7393-a38d-3f88-8335-76ebebe198b3 +2014,Buenos Aires,II.1.1,5.4714352,TJ,CH4,0.5,kg/TJ,2.7357176,Naphtha combustion consumption by freight transport,AR-B,SESCO,annual,kg,ff09bfa3-7dde-3d72-a4b5-b87c11844b8e +2014,Buenos Aires,II.1.1,5.4714352,TJ,N2O,2.0,kg/TJ,10.9428704,Naphtha combustion consumption by freight transport,AR-B,SESCO,annual,kg,829d903c-2560-309f-a97f-8daab711f836 +2014,Capital Federal,II.1.1,10.283954450000001,TJ,CO2,73300.0,kg/TJ,753813.861185,Naphtha combustion consumption by freight transport,AR-C,SESCO,annual,kg,3898f3fb-7309-3c97-b0fd-143afde71a00 +2014,Capital Federal,II.1.1,10.283954450000001,TJ,CH4,0.5,kg/TJ,5.141977225000001,Naphtha combustion consumption by freight transport,AR-C,SESCO,annual,kg,44881b50-0fb6-3816-8467-f98cafaa520a +2014,Capital Federal,II.1.1,10.283954450000001,TJ,N2O,2.0,kg/TJ,20.567908900000003,Naphtha combustion consumption by freight transport,AR-C,SESCO,annual,kg,eee3b5a3-1b2a-3d9e-839e-f0ae2afb5869 +2014,Chaco,II.1.1,0.08737575000000002,TJ,CO2,73300.0,kg/TJ,6404.6424750000015,Naphtha combustion consumption by freight transport,AR-H,SESCO,annual,kg,4a39c260-ec38-3968-aa89-52fbeb876500 +2014,Chaco,II.1.1,0.08737575000000002,TJ,CH4,0.5,kg/TJ,0.04368787500000001,Naphtha combustion consumption by freight transport,AR-H,SESCO,annual,kg,4f9fa204-e8e7-351b-9ae5-24e601968b98 +2014,Chaco,II.1.1,0.08737575000000002,TJ,N2O,2.0,kg/TJ,0.17475150000000003,Naphtha combustion consumption by freight transport,AR-H,SESCO,annual,kg,4a695200-71dd-38f3-b8e7-52cb62a45cd4 +2014,Corrientes,II.1.1,0.0376915,TJ,CO2,73300.0,kg/TJ,2762.78695,Naphtha combustion consumption by freight transport,AR-W,SESCO,annual,kg,004d544c-71e3-3f3a-a25c-3a61b529c24b +2014,Corrientes,II.1.1,0.0376915,TJ,CH4,0.5,kg/TJ,0.01884575,Naphtha combustion consumption by freight transport,AR-W,SESCO,annual,kg,027b86e5-afab-3872-8fa7-6646e995c296 +2014,Corrientes,II.1.1,0.0376915,TJ,N2O,2.0,kg/TJ,0.075383,Naphtha combustion consumption by freight transport,AR-W,SESCO,annual,kg,e1b5aaf6-b8b5-39aa-aa25-2ac8610b024c +2014,Córdoba,II.1.1,0.5746240499999999,TJ,CO2,73300.0,kg/TJ,42119.942865,Naphtha combustion consumption by freight transport,AR-X,SESCO,annual,kg,39671bc5-fbec-327e-ba6f-6e3219b6f0e6 +2014,Córdoba,II.1.1,0.5746240499999999,TJ,CH4,0.5,kg/TJ,0.28731202499999997,Naphtha combustion consumption by freight transport,AR-X,SESCO,annual,kg,5e9dda37-2b02-3edd-8b6f-7b0c5e20676d +2014,Córdoba,II.1.1,0.5746240499999999,TJ,N2O,2.0,kg/TJ,1.1492480999999999,Naphtha combustion consumption by freight transport,AR-X,SESCO,annual,kg,f9f668ee-fbb6-35e5-8485-3b486cdd4034 +2014,Entre Rios,II.1.1,0.0041118,TJ,CO2,73300.0,kg/TJ,301.39493999999996,Naphtha combustion consumption by freight transport,AR-E,SESCO,annual,kg,9ec74ee1-f36a-3c79-90de-f78450e42d7c +2014,Entre Rios,II.1.1,0.0041118,TJ,CH4,0.5,kg/TJ,0.0020559,Naphtha combustion consumption by freight transport,AR-E,SESCO,annual,kg,6a256b7d-0f55-39d2-8c21-2f34e22cdd90 +2014,Entre Rios,II.1.1,0.0041118,TJ,N2O,2.0,kg/TJ,0.0082236,Naphtha combustion consumption by freight transport,AR-E,SESCO,annual,kg,8cb4dd49-1657-34d3-909c-80aa1ad3a6e0 +2014,Mendoza,II.1.1,0.0013706,TJ,CO2,73300.0,kg/TJ,100.46498,Naphtha combustion consumption by freight transport,AR-M,SESCO,annual,kg,361d7cb8-7b71-3382-b269-ee0bb721ae0e +2014,Mendoza,II.1.1,0.0013706,TJ,CH4,0.5,kg/TJ,0.0006853,Naphtha combustion consumption by freight transport,AR-M,SESCO,annual,kg,5c7d999a-ecd6-3638-a47f-2870302a7c2d +2014,Mendoza,II.1.1,0.0013706,TJ,N2O,2.0,kg/TJ,0.0027412,Naphtha combustion consumption by freight transport,AR-M,SESCO,annual,kg,22c7566b-71eb-3b26-abb4-cc380efdbd8a +2014,San Luis,II.1.1,0.07641094999999999,TJ,CO2,73300.0,kg/TJ,5600.922634999999,Naphtha combustion consumption by freight transport,AR-D,SESCO,annual,kg,49213e86-6a1d-3f4b-94e5-89dfaa93b160 +2014,San Luis,II.1.1,0.07641094999999999,TJ,CH4,0.5,kg/TJ,0.038205474999999996,Naphtha combustion consumption by freight transport,AR-D,SESCO,annual,kg,017a7ea4-bde5-32ed-8f01-21ad19580919 +2014,San Luis,II.1.1,0.07641094999999999,TJ,N2O,2.0,kg/TJ,0.15282189999999998,Naphtha combustion consumption by freight transport,AR-D,SESCO,annual,kg,c7924d03-72e3-3856-817d-cc10ee6b4653 +2014,Santa Fe,II.1.1,4.4996798,TJ,CO2,73300.0,kg/TJ,329826.52934,Naphtha combustion consumption by freight transport,AR-S,SESCO,annual,kg,1c320fc8-534b-330a-8414-e1be4aa0fd4a +2014,Santa Fe,II.1.1,4.4996798,TJ,CH4,0.5,kg/TJ,2.2498399,Naphtha combustion consumption by freight transport,AR-S,SESCO,annual,kg,e2e8c6d7-ca87-3bad-8b5c-0245073e0cee +2014,Santa Fe,II.1.1,4.4996798,TJ,N2O,2.0,kg/TJ,8.9993596,Naphtha combustion consumption by freight transport,AR-S,SESCO,annual,kg,a4febf9d-f09e-31f9-ac11-02286ce9a11b +2014,Tierra del Fuego,II.1.1,0.0034265,TJ,CO2,73300.0,kg/TJ,251.16244999999998,Naphtha combustion consumption by freight transport,AR-V,SESCO,annual,kg,ab64814d-2f36-3354-8f09-4ed0e1218f6e +2014,Tierra del Fuego,II.1.1,0.0034265,TJ,CH4,0.5,kg/TJ,0.00171325,Naphtha combustion consumption by freight transport,AR-V,SESCO,annual,kg,bed4c9fb-7e57-3f5d-a200-c8c0d915b766 +2014,Tierra del Fuego,II.1.1,0.0034265,TJ,N2O,2.0,kg/TJ,0.006853,Naphtha combustion consumption by freight transport,AR-V,SESCO,annual,kg,28fda32a-5606-3c1b-b156-7f0496e0c822 +2014,Tucuman,II.1.1,0.061676999999999996,TJ,CO2,73300.0,kg/TJ,4520.924099999999,Naphtha combustion consumption by freight transport,AR-T,SESCO,annual,kg,9fd54ac8-3b86-3b6b-a3ca-a95db97d9999 +2014,Tucuman,II.1.1,0.061676999999999996,TJ,CH4,0.5,kg/TJ,0.030838499999999998,Naphtha combustion consumption by freight transport,AR-T,SESCO,annual,kg,330fc414-f2e6-3ed8-8b80-6eb144eaa0c8 +2014,Tucuman,II.1.1,0.061676999999999996,TJ,N2O,2.0,kg/TJ,0.12335399999999999,Naphtha combustion consumption by freight transport,AR-T,SESCO,annual,kg,c74e2be9-683a-391a-9fdb-79397643a7b8 +2014,Buenos Aires,II.1.1,6.477455599999999,TJ,CO2,73300.0,kg/TJ,474797.4954799999,Naphtha combustion consumption by freight transport,AR-B,SESCO,annual,kg,5dbfe5f1-526e-3d69-8cf2-f031f02b4302 +2014,Buenos Aires,II.1.1,6.477455599999999,TJ,CH4,0.5,kg/TJ,3.2387277999999995,Naphtha combustion consumption by freight transport,AR-B,SESCO,annual,kg,350a9237-3278-3bf1-b806-16f3ff2f72f9 +2014,Buenos Aires,II.1.1,6.477455599999999,TJ,N2O,2.0,kg/TJ,12.954911199999998,Naphtha combustion consumption by freight transport,AR-B,SESCO,annual,kg,c554fffc-9c95-36c0-8faf-5a1287a1d045 +2014,Capital Federal,II.1.1,8.8033638,TJ,CO2,73300.0,kg/TJ,645286.56654,Naphtha combustion consumption by freight transport,AR-C,SESCO,annual,kg,1ef6db77-ce43-3634-a168-f2bcf1b905b2 +2014,Capital Federal,II.1.1,8.8033638,TJ,CH4,0.5,kg/TJ,4.4016819,Naphtha combustion consumption by freight transport,AR-C,SESCO,annual,kg,66733c11-ac60-3174-be27-be7b96e48b5c +2014,Capital Federal,II.1.1,8.8033638,TJ,N2O,2.0,kg/TJ,17.6067276,Naphtha combustion consumption by freight transport,AR-C,SESCO,annual,kg,637cd858-004b-31c4-b657-6258d4e3dea2 +2014,Chaco,II.1.1,0.05722255,TJ,CO2,73300.0,kg/TJ,4194.412915,Naphtha combustion consumption by freight transport,AR-H,SESCO,annual,kg,5d332cc8-4c10-38bb-afc7-28aa87c5ec2d +2014,Chaco,II.1.1,0.05722255,TJ,CH4,0.5,kg/TJ,0.028611275,Naphtha combustion consumption by freight transport,AR-H,SESCO,annual,kg,e95cd55b-9052-3c71-8b68-669f7b24dea4 +2014,Chaco,II.1.1,0.05722255,TJ,N2O,2.0,kg/TJ,0.1144451,Naphtha combustion consumption by freight transport,AR-H,SESCO,annual,kg,a6560a11-0c22-3b16-8330-03aea559c417 +2014,Corrientes,II.1.1,0.1062215,TJ,CO2,73300.0,kg/TJ,7786.0359499999995,Naphtha combustion consumption by freight transport,AR-W,SESCO,annual,kg,0ec38c5a-468a-3fe5-97f2-202149a37a77 +2014,Corrientes,II.1.1,0.1062215,TJ,CH4,0.5,kg/TJ,0.05311075,Naphtha combustion consumption by freight transport,AR-W,SESCO,annual,kg,f711ef2b-0f5c-35c3-9d5c-c2434d91f554 +2014,Corrientes,II.1.1,0.1062215,TJ,N2O,2.0,kg/TJ,0.212443,Naphtha combustion consumption by freight transport,AR-W,SESCO,annual,kg,6a85d647-f77e-3f2f-8bf9-92d37e799b2b +2014,Córdoba,II.1.1,0.5739387499999999,TJ,CO2,73300.0,kg/TJ,42069.710374999995,Naphtha combustion consumption by freight transport,AR-X,SESCO,annual,kg,dfe23476-3ff9-3cd5-9d0c-83e529690207 +2014,Córdoba,II.1.1,0.5739387499999999,TJ,CH4,0.5,kg/TJ,0.28696937499999997,Naphtha combustion consumption by freight transport,AR-X,SESCO,annual,kg,df5ac58c-2f9a-3d59-a4c0-99327ff5de1f +2014,Córdoba,II.1.1,0.5739387499999999,TJ,N2O,2.0,kg/TJ,1.1478774999999999,Naphtha combustion consumption by freight transport,AR-X,SESCO,annual,kg,7678760b-03d7-30e1-b653-c9eb062c1a6d +2014,Entre Rios,II.1.1,0.17646474999999998,TJ,CO2,73300.0,kg/TJ,12934.866174999997,Naphtha combustion consumption by freight transport,AR-E,SESCO,annual,kg,0f00f3f7-ae90-37d9-990e-49c98b35d364 +2014,Entre Rios,II.1.1,0.17646474999999998,TJ,CH4,0.5,kg/TJ,0.08823237499999999,Naphtha combustion consumption by freight transport,AR-E,SESCO,annual,kg,51c564d0-b9c5-3152-9c6e-ec70a55a2c96 +2014,Entre Rios,II.1.1,0.17646474999999998,TJ,N2O,2.0,kg/TJ,0.35292949999999995,Naphtha combustion consumption by freight transport,AR-E,SESCO,annual,kg,c999f430-0d88-3f9d-a023-7873fd6a77f6 +2014,Misiones,II.1.1,0.006853,TJ,CO2,73300.0,kg/TJ,502.32489999999996,Naphtha combustion consumption by freight transport,AR-N,SESCO,annual,kg,4af9cf61-a2f2-37e5-8678-5e7562120d35 +2014,Misiones,II.1.1,0.006853,TJ,CH4,0.5,kg/TJ,0.0034265,Naphtha combustion consumption by freight transport,AR-N,SESCO,annual,kg,8f8ec2c6-1263-31fb-b01b-b6d5042207fe +2014,Misiones,II.1.1,0.006853,TJ,N2O,2.0,kg/TJ,0.013706,Naphtha combustion consumption by freight transport,AR-N,SESCO,annual,kg,65326f30-4989-3a42-a71d-ae1b8fb2e560 +2014,San Luis,II.1.1,0.00308385,TJ,CO2,73300.0,kg/TJ,226.046205,Naphtha combustion consumption by freight transport,AR-D,SESCO,annual,kg,2615d1e7-3a06-303c-a25d-82e3f3152761 +2014,San Luis,II.1.1,0.00308385,TJ,CH4,0.5,kg/TJ,0.001541925,Naphtha combustion consumption by freight transport,AR-D,SESCO,annual,kg,ec81b163-c4fe-35e0-977c-542a69390912 +2014,San Luis,II.1.1,0.00308385,TJ,N2O,2.0,kg/TJ,0.0061677,Naphtha combustion consumption by freight transport,AR-D,SESCO,annual,kg,a49e84cc-5bff-3335-aab1-db9f99db4657 +2014,Santa Fe,II.1.1,0.8141364,TJ,CO2,73300.0,kg/TJ,59676.19812,Naphtha combustion consumption by freight transport,AR-S,SESCO,annual,kg,f3e01512-81d2-3de0-8c03-b0a8d905b8af +2014,Santa Fe,II.1.1,0.8141364,TJ,CH4,0.5,kg/TJ,0.4070682,Naphtha combustion consumption by freight transport,AR-S,SESCO,annual,kg,6b9911ca-a74f-347f-a707-0a95c0e9c09c +2014,Santa Fe,II.1.1,0.8141364,TJ,N2O,2.0,kg/TJ,1.6282728,Naphtha combustion consumption by freight transport,AR-S,SESCO,annual,kg,fb7a391d-49ec-3038-a9bd-23e5896ab097 +2014,Santiago del Estero,II.1.1,0.102795,TJ,CO2,73300.0,kg/TJ,7534.8735,Naphtha combustion consumption by freight transport,AR-G,SESCO,annual,kg,a90cae4c-93a1-32c5-9685-b63d22830728 +2014,Santiago del Estero,II.1.1,0.102795,TJ,CH4,0.5,kg/TJ,0.0513975,Naphtha combustion consumption by freight transport,AR-G,SESCO,annual,kg,02db2bba-d51d-350e-9ab8-556219555435 +2014,Santiago del Estero,II.1.1,0.102795,TJ,N2O,2.0,kg/TJ,0.20559,Naphtha combustion consumption by freight transport,AR-G,SESCO,annual,kg,d6d0ac53-a3b4-3aa6-9610-016f426c8a07 +2014,Tierra del Fuego,II.1.1,0.05653725,TJ,CO2,73300.0,kg/TJ,4144.180425,Naphtha combustion consumption by freight transport,AR-V,SESCO,annual,kg,0db0eab9-5cc3-31e2-8128-89f7707476ff +2014,Tierra del Fuego,II.1.1,0.05653725,TJ,CH4,0.5,kg/TJ,0.028268625,Naphtha combustion consumption by freight transport,AR-V,SESCO,annual,kg,2c54e273-4920-376c-9e51-1c2bb08c7e17 +2014,Tierra del Fuego,II.1.1,0.05653725,TJ,N2O,2.0,kg/TJ,0.1130745,Naphtha combustion consumption by freight transport,AR-V,SESCO,annual,kg,598124c5-1672-369b-885a-4c32b866fca0 +2014,Tucuman,II.1.1,0.15453514999999998,TJ,CO2,73300.0,kg/TJ,11327.426494999998,Naphtha combustion consumption by freight transport,AR-T,SESCO,annual,kg,a607d211-af78-33cd-873d-871e16beb931 +2014,Tucuman,II.1.1,0.15453514999999998,TJ,CH4,0.5,kg/TJ,0.07726757499999999,Naphtha combustion consumption by freight transport,AR-T,SESCO,annual,kg,90968d46-0214-38f3-86b9-134f33023281 +2014,Tucuman,II.1.1,0.15453514999999998,TJ,N2O,2.0,kg/TJ,0.30907029999999996,Naphtha combustion consumption by freight transport,AR-T,SESCO,annual,kg,1c12e326-6ad4-337b-a9a9-33bc9e748d5f +2014,Buenos Aires,II.1.1,2229.857364,TJ,CO2,74100.0,kg/TJ,165232430.6724,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,10b57edf-be7a-3c6c-a857-230502b81b50 +2014,Buenos Aires,II.1.1,2229.857364,TJ,CH4,3.9,kg/TJ,8696.4437196,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,a157fb05-24ba-3d7d-b42b-5a113573abf2 +2014,Buenos Aires,II.1.1,2229.857364,TJ,N2O,3.9,kg/TJ,8696.4437196,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,a157fb05-24ba-3d7d-b42b-5a113573abf2 +2014,Capital Federal,II.1.1,151.3453284,TJ,CO2,74100.0,kg/TJ,11214688.83444,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,6a271262-5b5d-3091-8a5c-285511a3e5ec +2014,Capital Federal,II.1.1,151.3453284,TJ,CH4,3.9,kg/TJ,590.24678076,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,28440ac1-0d44-3d7b-8f4d-93774d9b81cd +2014,Capital Federal,II.1.1,151.3453284,TJ,N2O,3.9,kg/TJ,590.24678076,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,28440ac1-0d44-3d7b-8f4d-93774d9b81cd +2014,Catamarca,II.1.1,0.21672,TJ,CO2,74100.0,kg/TJ,16058.952,Gas Oil combustion consumption by public passenger transport,AR-K,SESCO,annual,kg,1f3960a5-cb83-3751-a14f-9a0d86c4d5df +2014,Catamarca,II.1.1,0.21672,TJ,CH4,3.9,kg/TJ,0.845208,Gas Oil combustion consumption by public passenger transport,AR-K,SESCO,annual,kg,23b635c7-9afa-38e5-a1f8-18d89d130fd4 +2014,Catamarca,II.1.1,0.21672,TJ,N2O,3.9,kg/TJ,0.845208,Gas Oil combustion consumption by public passenger transport,AR-K,SESCO,annual,kg,23b635c7-9afa-38e5-a1f8-18d89d130fd4 +2014,Chubut,II.1.1,14.155427999999999,TJ,CO2,74100.0,kg/TJ,1048917.2148,Gas Oil combustion consumption by public passenger transport,AR-U,SESCO,annual,kg,3ab2a1c9-0a8e-3499-a13e-fafefc72bad9 +2014,Chubut,II.1.1,14.155427999999999,TJ,CH4,3.9,kg/TJ,55.20616919999999,Gas Oil combustion consumption by public passenger transport,AR-U,SESCO,annual,kg,d0ab494a-139c-3611-aeb8-f0b60320a2b9 +2014,Chubut,II.1.1,14.155427999999999,TJ,N2O,3.9,kg/TJ,55.20616919999999,Gas Oil combustion consumption by public passenger transport,AR-U,SESCO,annual,kg,d0ab494a-139c-3611-aeb8-f0b60320a2b9 +2014,Corrientes,II.1.1,0.25284,TJ,CO2,74100.0,kg/TJ,18735.444,Gas Oil combustion consumption by public passenger transport,AR-W,SESCO,annual,kg,0354494c-5c8c-3661-957c-252edf68e61f +2014,Corrientes,II.1.1,0.25284,TJ,CH4,3.9,kg/TJ,0.9860760000000001,Gas Oil combustion consumption by public passenger transport,AR-W,SESCO,annual,kg,84fe2139-6d90-3674-99aa-dc1595dbd8cd +2014,Corrientes,II.1.1,0.25284,TJ,N2O,3.9,kg/TJ,0.9860760000000001,Gas Oil combustion consumption by public passenger transport,AR-W,SESCO,annual,kg,84fe2139-6d90-3674-99aa-dc1595dbd8cd +2014,Córdoba,II.1.1,66.02772119999999,TJ,CO2,74100.0,kg/TJ,4892654.140919999,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,698425f7-590b-3147-a664-bd22d963b295 +2014,Córdoba,II.1.1,66.02772119999999,TJ,CH4,3.9,kg/TJ,257.50811267999995,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,f08114ee-1b75-3861-a9c2-68c0badc02bc +2014,Córdoba,II.1.1,66.02772119999999,TJ,N2O,3.9,kg/TJ,257.50811267999995,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,f08114ee-1b75-3861-a9c2-68c0badc02bc +2014,Entre Rios,II.1.1,52.18942679999999,TJ,CO2,74100.0,kg/TJ,3867236.5258799996,Gas Oil combustion consumption by public passenger transport,AR-E,SESCO,annual,kg,7639fa44-5f2a-3ded-8c00-3325f618e6c5 +2014,Entre Rios,II.1.1,52.18942679999999,TJ,CH4,3.9,kg/TJ,203.53876451999997,Gas Oil combustion consumption by public passenger transport,AR-E,SESCO,annual,kg,e2874374-31b6-3468-b2b3-5223d81c75ff +2014,Entre Rios,II.1.1,52.18942679999999,TJ,N2O,3.9,kg/TJ,203.53876451999997,Gas Oil combustion consumption by public passenger transport,AR-E,SESCO,annual,kg,e2874374-31b6-3468-b2b3-5223d81c75ff +2014,La Pampa,II.1.1,9.138359999999999,TJ,CO2,74100.0,kg/TJ,677152.4759999999,Gas Oil combustion consumption by public passenger transport,AR-L,SESCO,annual,kg,efd6ec17-06e3-3e1a-816b-dfbda44ec012 +2014,La Pampa,II.1.1,9.138359999999999,TJ,CH4,3.9,kg/TJ,35.63960399999999,Gas Oil combustion consumption by public passenger transport,AR-L,SESCO,annual,kg,91ed71f4-a3cf-3ec6-8c96-8858368e643e +2014,La Pampa,II.1.1,9.138359999999999,TJ,N2O,3.9,kg/TJ,35.63960399999999,Gas Oil combustion consumption by public passenger transport,AR-L,SESCO,annual,kg,91ed71f4-a3cf-3ec6-8c96-8858368e643e +2014,Mendoza,II.1.1,0.43344,TJ,CO2,74100.0,kg/TJ,32117.904,Gas Oil combustion consumption by public passenger transport,AR-M,SESCO,annual,kg,3171c01c-7c94-3a55-8596-ea71eb868367 +2014,Mendoza,II.1.1,0.43344,TJ,CH4,3.9,kg/TJ,1.690416,Gas Oil combustion consumption by public passenger transport,AR-M,SESCO,annual,kg,41e56719-715a-34df-8e41-11a75a71e38e +2014,Mendoza,II.1.1,0.43344,TJ,N2O,3.9,kg/TJ,1.690416,Gas Oil combustion consumption by public passenger transport,AR-M,SESCO,annual,kg,41e56719-715a-34df-8e41-11a75a71e38e +2014,Misiones,II.1.1,19.636999199999998,TJ,CO2,74100.0,kg/TJ,1455101.6407199998,Gas Oil combustion consumption by public passenger transport,AR-N,SESCO,annual,kg,bd27bfe5-0c4c-3b8f-b951-fe6d04263c80 +2014,Misiones,II.1.1,19.636999199999998,TJ,CH4,3.9,kg/TJ,76.58429688,Gas Oil combustion consumption by public passenger transport,AR-N,SESCO,annual,kg,5be08e9d-fc2b-33f8-a6e3-e97a2e2b8d88 +2014,Misiones,II.1.1,19.636999199999998,TJ,N2O,3.9,kg/TJ,76.58429688,Gas Oil combustion consumption by public passenger transport,AR-N,SESCO,annual,kg,5be08e9d-fc2b-33f8-a6e3-e97a2e2b8d88 +2014,Rio Negro,II.1.1,56.1871884,TJ,CO2,74100.0,kg/TJ,4163470.66044,Gas Oil combustion consumption by public passenger transport,AR-R,SESCO,annual,kg,6f30bd03-f35f-395b-941f-1354d67f4918 +2014,Rio Negro,II.1.1,56.1871884,TJ,CH4,3.9,kg/TJ,219.13003475999997,Gas Oil combustion consumption by public passenger transport,AR-R,SESCO,annual,kg,bceaa9a5-76d5-3b50-8cbe-62444cc190cf +2014,Rio Negro,II.1.1,56.1871884,TJ,N2O,3.9,kg/TJ,219.13003475999997,Gas Oil combustion consumption by public passenger transport,AR-R,SESCO,annual,kg,bceaa9a5-76d5-3b50-8cbe-62444cc190cf +2014,San Juan,II.1.1,0.729624,TJ,CO2,74100.0,kg/TJ,54065.1384,Gas Oil combustion consumption by public passenger transport,AR-J,SESCO,annual,kg,9663ccf5-b0e0-3e28-a85e-00588fecfada +2014,San Juan,II.1.1,0.729624,TJ,CH4,3.9,kg/TJ,2.8455336,Gas Oil combustion consumption by public passenger transport,AR-J,SESCO,annual,kg,8e5e34c4-36f1-3fc9-b0ce-283aeb1ed0a3 +2014,San Juan,II.1.1,0.729624,TJ,N2O,3.9,kg/TJ,2.8455336,Gas Oil combustion consumption by public passenger transport,AR-J,SESCO,annual,kg,8e5e34c4-36f1-3fc9-b0ce-283aeb1ed0a3 +2014,San Luis,II.1.1,0.14448,TJ,CO2,74100.0,kg/TJ,10705.967999999999,Gas Oil combustion consumption by public passenger transport,AR-D,SESCO,annual,kg,c7d53982-bf06-329b-a27c-77a41c6fb3f2 +2014,San Luis,II.1.1,0.14448,TJ,CH4,3.9,kg/TJ,0.563472,Gas Oil combustion consumption by public passenger transport,AR-D,SESCO,annual,kg,0605f77b-cca0-37a9-a55e-72a5085f78b0 +2014,San Luis,II.1.1,0.14448,TJ,N2O,3.9,kg/TJ,0.563472,Gas Oil combustion consumption by public passenger transport,AR-D,SESCO,annual,kg,0605f77b-cca0-37a9-a55e-72a5085f78b0 +2014,Santa Fe,II.1.1,4.6807908,TJ,CO2,74100.0,kg/TJ,346846.59828,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,40ea3824-7ad7-3293-aba1-764a7a2b3c24 +2014,Santa Fe,II.1.1,4.6807908,TJ,CH4,3.9,kg/TJ,18.25508412,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,18af4ffb-e793-3374-a64b-12ec1e3b9d0a +2014,Santa Fe,II.1.1,4.6807908,TJ,N2O,3.9,kg/TJ,18.25508412,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,18af4ffb-e793-3374-a64b-12ec1e3b9d0a +2014,Buenos Aires,II.1.1,1.3097112,TJ,CO2,74100.0,kg/TJ,97049.59992,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,47022a84-9713-3490-9244-8578249c6297 +2014,Buenos Aires,II.1.1,1.3097112,TJ,CH4,3.9,kg/TJ,5.10787368,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,b4f9a759-d28e-35da-a326-63cbecd2aa41 +2014,Buenos Aires,II.1.1,1.3097112,TJ,N2O,3.9,kg/TJ,5.10787368,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,b4f9a759-d28e-35da-a326-63cbecd2aa41 +2014,Capital Federal,II.1.1,14.010947999999999,TJ,CO2,74100.0,kg/TJ,1038211.2468,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,0bc0fd18-47bc-35b8-a589-107bfdc9bb52 +2014,Capital Federal,II.1.1,14.010947999999999,TJ,CH4,3.9,kg/TJ,54.64269719999999,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,fb2dc791-b868-34c1-a693-d1b84a7aa8aa +2014,Capital Federal,II.1.1,14.010947999999999,TJ,N2O,3.9,kg/TJ,54.64269719999999,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,fb2dc791-b868-34c1-a693-d1b84a7aa8aa +2014,Córdoba,II.1.1,0.1043868,TJ,CO2,74100.0,kg/TJ,7735.06188,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,ad53deed-156b-38bd-91bd-4a081cea6069 +2014,Córdoba,II.1.1,0.1043868,TJ,CH4,3.9,kg/TJ,0.40710852,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,b58abf9e-3190-3808-a9b1-db486b26a053 +2014,Córdoba,II.1.1,0.1043868,TJ,N2O,3.9,kg/TJ,0.40710852,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,b58abf9e-3190-3808-a9b1-db486b26a053 +2014,Entre Rios,II.1.1,0.08307599999999998,TJ,CO2,74100.0,kg/TJ,6155.931599999999,Gas Oil combustion consumption by public passenger transport,AR-E,SESCO,annual,kg,f2784f84-f2db-37dd-b6df-9f1c842b8551 +2014,Entre Rios,II.1.1,0.08307599999999998,TJ,CH4,3.9,kg/TJ,0.3239963999999999,Gas Oil combustion consumption by public passenger transport,AR-E,SESCO,annual,kg,de6b46c7-e258-3bfa-87ca-1d83990f61f9 +2014,Entre Rios,II.1.1,0.08307599999999998,TJ,N2O,3.9,kg/TJ,0.3239963999999999,Gas Oil combustion consumption by public passenger transport,AR-E,SESCO,annual,kg,de6b46c7-e258-3bfa-87ca-1d83990f61f9 +2014,Rio Negro,II.1.1,2.709,TJ,CO2,74100.0,kg/TJ,200736.9,Gas Oil combustion consumption by public passenger transport,AR-R,SESCO,annual,kg,dec01366-662c-3711-9ef7-ad6089613cd5 +2014,Rio Negro,II.1.1,2.709,TJ,CH4,3.9,kg/TJ,10.5651,Gas Oil combustion consumption by public passenger transport,AR-R,SESCO,annual,kg,4f3ff4b9-5664-3d23-9d56-11ae78b953a6 +2014,Rio Negro,II.1.1,2.709,TJ,N2O,3.9,kg/TJ,10.5651,Gas Oil combustion consumption by public passenger transport,AR-R,SESCO,annual,kg,4f3ff4b9-5664-3d23-9d56-11ae78b953a6 +2014,Capital Federal,II.1.1,0.028097300000000002,TJ,CO2,73300.0,kg/TJ,2059.53209,Naphtha combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,47ea9111-358d-34d5-b1ea-bb6bed48f114 +2014,Capital Federal,II.1.1,0.028097300000000002,TJ,CH4,0.5,kg/TJ,0.014048650000000001,Naphtha combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,5fa053a2-83a2-366d-8f7b-db4490d65795 +2014,Capital Federal,II.1.1,0.028097300000000002,TJ,N2O,2.0,kg/TJ,0.056194600000000004,Naphtha combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,08515e42-4532-3919-95ef-3e273bbd084e +2014,Entre Rios,II.1.1,0.0013706,TJ,CO2,73300.0,kg/TJ,100.46498,Naphtha combustion consumption by public passenger transport,AR-E,SESCO,annual,kg,26586499-9dc7-3603-b1f6-1eea1752edfe +2014,Entre Rios,II.1.1,0.0013706,TJ,CH4,0.5,kg/TJ,0.0006853,Naphtha combustion consumption by public passenger transport,AR-E,SESCO,annual,kg,6361b685-ccf5-3bdd-a819-89500c82a4d0 +2014,Entre Rios,II.1.1,0.0013706,TJ,N2O,2.0,kg/TJ,0.0027412,Naphtha combustion consumption by public passenger transport,AR-E,SESCO,annual,kg,3723ac85-ef7e-3b6d-86ec-243ab2a7b858 +2014,Santa Fe,II.1.1,1.404865,TJ,CO2,73300.0,kg/TJ,102976.6045,Naphtha combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,9929abb6-547d-37fa-baf6-796aa7af81ba +2014,Santa Fe,II.1.1,1.404865,TJ,CH4,0.5,kg/TJ,0.7024325,Naphtha combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,d48d6136-6665-32df-a1d5-08a5f6c34481 +2014,Santa Fe,II.1.1,1.404865,TJ,N2O,2.0,kg/TJ,2.80973,Naphtha combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,24bb6452-f233-3da7-99a4-39ea09e81071 +2014,Buenos Aires,II.1.1,1.0108175,TJ,CO2,73300.0,kg/TJ,74092.92275,Naphtha combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,4829dea1-c34d-38d4-b850-158c37fa6ae0 +2014,Buenos Aires,II.1.1,1.0108175,TJ,CH4,0.5,kg/TJ,0.50540875,Naphtha combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,305a44d8-3fd8-3475-91a7-ed76d998862a +2014,Buenos Aires,II.1.1,1.0108175,TJ,N2O,2.0,kg/TJ,2.021635,Naphtha combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,f611864a-b70f-305e-a7d8-082e4a92d249 +2014,Capital Federal,II.1.1,0.267267,TJ,CO2,73300.0,kg/TJ,19590.6711,Naphtha combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,853b0a99-1f64-36ff-abaf-0b101f605e76 +2014,Capital Federal,II.1.1,0.267267,TJ,CH4,0.5,kg/TJ,0.1336335,Naphtha combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,470c9e5d-eb7c-3fd1-95bf-a863c14e42b7 +2014,Capital Federal,II.1.1,0.267267,TJ,N2O,2.0,kg/TJ,0.534534,Naphtha combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,6d0cdbe0-1708-327c-98fb-27242c2a091a +2014,Chaco,II.1.1,0.010279500000000002,TJ,CO2,73300.0,kg/TJ,753.4873500000001,Naphtha combustion consumption by public passenger transport,AR-H,SESCO,annual,kg,c3ef7262-4ce7-327d-846e-a890aba85542 +2014,Chaco,II.1.1,0.010279500000000002,TJ,CH4,0.5,kg/TJ,0.005139750000000001,Naphtha combustion consumption by public passenger transport,AR-H,SESCO,annual,kg,471f73dd-547f-347d-9fa3-0ba7638e6b08 +2014,Chaco,II.1.1,0.010279500000000002,TJ,N2O,2.0,kg/TJ,0.020559000000000004,Naphtha combustion consumption by public passenger transport,AR-H,SESCO,annual,kg,6e9a25a0-e603-3127-8569-0bd8c95c55de +2014,Entre Rios,II.1.1,0.06887265000000001,TJ,CO2,73300.0,kg/TJ,5048.365245000001,Naphtha combustion consumption by public passenger transport,AR-E,SESCO,annual,kg,d4022387-6162-3cce-a9c5-70c6720a74e4 +2014,Entre Rios,II.1.1,0.06887265000000001,TJ,CH4,0.5,kg/TJ,0.034436325000000004,Naphtha combustion consumption by public passenger transport,AR-E,SESCO,annual,kg,8b0dbc12-cc8a-3fee-ab76-d79fd4cded34 +2014,Entre Rios,II.1.1,0.06887265000000001,TJ,N2O,2.0,kg/TJ,0.13774530000000001,Naphtha combustion consumption by public passenger transport,AR-E,SESCO,annual,kg,7ac2a5a3-e543-3c45-881c-dcd3dfb10448 +2014,Rio Negro,II.1.1,1.2678049999999998,TJ,CO2,73300.0,kg/TJ,92930.1065,Naphtha combustion consumption by public passenger transport,AR-R,SESCO,annual,kg,1335e361-4b9b-3b09-ad8c-befb3b24b33c +2014,Rio Negro,II.1.1,1.2678049999999998,TJ,CH4,0.5,kg/TJ,0.6339024999999999,Naphtha combustion consumption by public passenger transport,AR-R,SESCO,annual,kg,4129ef0c-8bfe-3a7a-bdb8-be82301cb81a +2014,Rio Negro,II.1.1,1.2678049999999998,TJ,N2O,2.0,kg/TJ,2.5356099999999997,Naphtha combustion consumption by public passenger transport,AR-R,SESCO,annual,kg,f54f7d8c-1b70-3cf6-9d8a-00bbd9095092 +2014,Chubut,II.1.1,0.5250041999999999,TJ,CO2,74100.0,kg/TJ,38902.811219999996,Gas Oil combustion consumption by freight transport,AR-U,SESCO,annual,kg,2b1c3f39-f721-327d-8baa-ccace5460569 +2014,Chubut,II.1.1,0.5250041999999999,TJ,CH4,3.9,kg/TJ,2.04751638,Gas Oil combustion consumption by freight transport,AR-U,SESCO,annual,kg,ea374ed6-822c-3e39-9236-5d5be195bc12 +2014,Chubut,II.1.1,0.5250041999999999,TJ,N2O,3.9,kg/TJ,2.04751638,Gas Oil combustion consumption by freight transport,AR-U,SESCO,annual,kg,ea374ed6-822c-3e39-9236-5d5be195bc12 +2014,Buenos Aires,II.5.1,460.8753830519999,TJ,CO2,74100.0,kg/TJ,34150865.884153195,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,f6d767ca-e6bd-36a0-a28c-f47d8b179d29 +2014,Buenos Aires,II.5.1,460.8753830519999,TJ,CH4,3.9,kg/TJ,1797.4139939027996,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,f851f19c-2be5-36c4-b6e2-48ee07a89754 +2014,Buenos Aires,II.5.1,460.8753830519999,TJ,N2O,3.9,kg/TJ,1797.4139939027996,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,f851f19c-2be5-36c4-b6e2-48ee07a89754 +2014,Córdoba,II.5.1,586.015579212,TJ,CO2,74100.0,kg/TJ,43423754.419609204,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,9376a1d4-744c-3c9a-96a6-16d3f4f75b4b +2014,Córdoba,II.5.1,586.015579212,TJ,CH4,3.9,kg/TJ,2285.4607589268003,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,08ff8213-0e51-3d7f-ab73-e7998d1881cb +2014,Córdoba,II.5.1,586.015579212,TJ,N2O,3.9,kg/TJ,2285.4607589268003,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,08ff8213-0e51-3d7f-ab73-e7998d1881cb +2014,Entre Rios,II.5.1,450.445053996,TJ,CO2,74100.0,kg/TJ,33377978.501103602,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,5f5addb3-a442-3dd5-9937-1e59842bf707 +2014,Entre Rios,II.5.1,450.445053996,TJ,CH4,3.9,kg/TJ,1756.7357105844,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,646d08fc-7481-311a-9a35-1b7bd883ddd0 +2014,Entre Rios,II.5.1,450.445053996,TJ,N2O,3.9,kg/TJ,1756.7357105844,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,646d08fc-7481-311a-9a35-1b7bd883ddd0 +2014,Santa Fe,II.5.1,855.7092290039999,TJ,CO2,74100.0,kg/TJ,63408053.86919639,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,ce2077e7-588d-396f-95c9-6de8fa36301a +2014,Santa Fe,II.5.1,855.7092290039999,TJ,CH4,3.9,kg/TJ,3337.2659931155995,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,6f709826-904a-32c0-ad9f-4ea656eb9810 +2014,Santa Fe,II.5.1,855.7092290039999,TJ,N2O,3.9,kg/TJ,3337.2659931155995,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,6f709826-904a-32c0-ad9f-4ea656eb9810 +2014,Santiago del Estero,II.5.1,103.84646285999999,TJ,CO2,74100.0,kg/TJ,7695022.897925999,Gas Oil combustion consumption by agriculture machines,AR-G,SESCO,annual,kg,6544ee93-2e11-3018-be25-5612cbf44e6b +2014,Santiago del Estero,II.5.1,103.84646285999999,TJ,CH4,3.9,kg/TJ,405.00120515399993,Gas Oil combustion consumption by agriculture machines,AR-G,SESCO,annual,kg,9492908a-070b-3901-91a6-a30701477a6f +2014,Santiago del Estero,II.5.1,103.84646285999999,TJ,N2O,3.9,kg/TJ,405.00120515399993,Gas Oil combustion consumption by agriculture machines,AR-G,SESCO,annual,kg,9492908a-070b-3901-91a6-a30701477a6f +2014,Córdoba,II.5.1,3.024921053,TJ,CO2,73300.0,kg/TJ,221726.7131849,Naphtha combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,8dcbcc9a-76b0-3cde-8bbe-c52e24147aec +2014,Córdoba,II.5.1,3.024921053,TJ,CH4,0.5,kg/TJ,1.5124605265,Naphtha combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,79579d6a-a149-3be1-923d-2dcda74985c8 +2014,Córdoba,II.5.1,3.024921053,TJ,N2O,2.0,kg/TJ,6.049842106,Naphtha combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,f6ad5fb7-73fe-3607-a5e1-92778ba747f3 +2014,Santa Fe,II.5.1,4.8185567429999985,TJ,CO2,73300.0,kg/TJ,353200.2092618999,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,145bb8df-cbbe-300a-ad76-3c34c2742e89 +2014,Santa Fe,II.5.1,4.8185567429999985,TJ,CH4,0.5,kg/TJ,2.4092783714999992,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,a66d6f93-afb0-35bc-b9f5-fce59ca336a3 +2014,Santa Fe,II.5.1,4.8185567429999985,TJ,N2O,2.0,kg/TJ,9.637113485999997,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,7c30f8b1-c1d0-36ff-90a5-fbad0462de87 +2014,Santiago del Estero,II.5.1,2.485795543,TJ,CO2,73300.0,kg/TJ,182208.8133019,Naphtha combustion consumption by agriculture machines,AR-G,SESCO,annual,kg,2a484874-26c4-3421-ae24-05f1448363b2 +2014,Santiago del Estero,II.5.1,2.485795543,TJ,CH4,0.5,kg/TJ,1.2428977715,Naphtha combustion consumption by agriculture machines,AR-G,SESCO,annual,kg,6672b497-4091-3f13-b80b-9ad248b79e80 +2014,Santiago del Estero,II.5.1,2.485795543,TJ,N2O,2.0,kg/TJ,4.971591086,Naphtha combustion consumption by agriculture machines,AR-G,SESCO,annual,kg,eaca22ff-68d2-36d5-8abd-16af8df14999 +2014,Buenos Aires,II.1.1,405.69825072000003,TJ,CO2,74100.0,kg/TJ,30062240.378352,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,2e0b5c2e-4452-300f-be29-590237147cbf +2014,Buenos Aires,II.1.1,405.69825072000003,TJ,CH4,3.9,kg/TJ,1582.2231778080002,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,e7fa49cc-16a5-390e-bc10-ddd2ea998a4b +2014,Buenos Aires,II.1.1,405.69825072000003,TJ,N2O,3.9,kg/TJ,1582.2231778080002,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,e7fa49cc-16a5-390e-bc10-ddd2ea998a4b +2014,Chaco,II.1.1,17.422016052,TJ,CO2,74100.0,kg/TJ,1290971.3894532,Gas Oil combustion consumption by public passenger transport,AR-H,SESCO,annual,kg,af07c14b-2867-3bda-b673-b4be46ab22c6 +2014,Chaco,II.1.1,17.422016052,TJ,CH4,3.9,kg/TJ,67.9458626028,Gas Oil combustion consumption by public passenger transport,AR-H,SESCO,annual,kg,4a08fc21-218e-3d96-aa0b-561872df87e6 +2014,Chaco,II.1.1,17.422016052,TJ,N2O,3.9,kg/TJ,67.9458626028,Gas Oil combustion consumption by public passenger transport,AR-H,SESCO,annual,kg,4a08fc21-218e-3d96-aa0b-561872df87e6 +2014,Corrientes,II.1.1,34.72607502,TJ,CO2,74100.0,kg/TJ,2573202.1589820003,Gas Oil combustion consumption by public passenger transport,AR-W,SESCO,annual,kg,2789f6ab-356d-3365-9712-c33fa041d458 +2014,Corrientes,II.1.1,34.72607502,TJ,CH4,3.9,kg/TJ,135.431692578,Gas Oil combustion consumption by public passenger transport,AR-W,SESCO,annual,kg,52dd6cd7-390e-37df-8321-5d78cbc05bf4 +2014,Corrientes,II.1.1,34.72607502,TJ,N2O,3.9,kg/TJ,135.431692578,Gas Oil combustion consumption by public passenger transport,AR-W,SESCO,annual,kg,52dd6cd7-390e-37df-8321-5d78cbc05bf4 +2014,Córdoba,II.1.1,330.8534533079999,TJ,CO2,74100.0,kg/TJ,24516240.890122794,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,7b425eb5-5223-308b-b216-4e8b8ce62247 +2014,Córdoba,II.1.1,330.8534533079999,TJ,CH4,3.9,kg/TJ,1290.3284679011997,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,c2587de0-2715-3e30-9e8b-34040b28986f +2014,Córdoba,II.1.1,330.8534533079999,TJ,N2O,3.9,kg/TJ,1290.3284679011997,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,c2587de0-2715-3e30-9e8b-34040b28986f +2014,Entre Rios,II.1.1,95.658987144,TJ,CO2,74100.0,kg/TJ,7088330.9473704,Gas Oil combustion consumption by public passenger transport,AR-E,SESCO,annual,kg,9cebe517-a109-3d2f-a887-5985918b42d0 +2014,Entre Rios,II.1.1,95.658987144,TJ,CH4,3.9,kg/TJ,373.07004986159995,Gas Oil combustion consumption by public passenger transport,AR-E,SESCO,annual,kg,6d226c6b-8dbf-3ee1-87df-24415dae7846 +2014,Entre Rios,II.1.1,95.658987144,TJ,N2O,3.9,kg/TJ,373.07004986159995,Gas Oil combustion consumption by public passenger transport,AR-E,SESCO,annual,kg,6d226c6b-8dbf-3ee1-87df-24415dae7846 +2014,Jujuy,II.1.1,107.93315189999998,TJ,CO2,74100.0,kg/TJ,7997846.555789999,Gas Oil combustion consumption by public passenger transport,AR-Y,SESCO,annual,kg,a5f44544-87d2-3d9b-9b3f-06e64a61b5e7 +2014,Jujuy,II.1.1,107.93315189999998,TJ,CH4,3.9,kg/TJ,420.93929240999995,Gas Oil combustion consumption by public passenger transport,AR-Y,SESCO,annual,kg,037bd063-ef3e-314d-b6b5-cbd5cb9dbbf7 +2014,Jujuy,II.1.1,107.93315189999998,TJ,N2O,3.9,kg/TJ,420.93929240999995,Gas Oil combustion consumption by public passenger transport,AR-Y,SESCO,annual,kg,037bd063-ef3e-314d-b6b5-cbd5cb9dbbf7 +2014,Misiones,II.1.1,14.307738816,TJ,CO2,74100.0,kg/TJ,1060203.4462656,Gas Oil combustion consumption by public passenger transport,AR-N,SESCO,annual,kg,0a5598e0-7ccc-37bf-83d1-336a32aad16b +2014,Misiones,II.1.1,14.307738816,TJ,CH4,3.9,kg/TJ,55.8001813824,Gas Oil combustion consumption by public passenger transport,AR-N,SESCO,annual,kg,1b5e076c-6ea6-394b-b8aa-9c5fe65d7d4c +2014,Misiones,II.1.1,14.307738816,TJ,N2O,3.9,kg/TJ,55.8001813824,Gas Oil combustion consumption by public passenger transport,AR-N,SESCO,annual,kg,1b5e076c-6ea6-394b-b8aa-9c5fe65d7d4c +2014,Salta,II.1.1,90.417527256,TJ,CO2,74100.0,kg/TJ,6699938.7696696,Gas Oil combustion consumption by public passenger transport,AR-A,SESCO,annual,kg,7df731d0-9cc2-38a8-90e3-e9301767c709 +2014,Salta,II.1.1,90.417527256,TJ,CH4,3.9,kg/TJ,352.6283562984,Gas Oil combustion consumption by public passenger transport,AR-A,SESCO,annual,kg,e8a10ca7-add2-3b93-99d9-110774b9217f +2014,Salta,II.1.1,90.417527256,TJ,N2O,3.9,kg/TJ,352.6283562984,Gas Oil combustion consumption by public passenger transport,AR-A,SESCO,annual,kg,e8a10ca7-add2-3b93-99d9-110774b9217f +2014,Santa Fe,II.1.1,287.146714596,TJ,CO2,74100.0,kg/TJ,21277571.5515636,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,f64fb68d-9496-369e-8b81-c021527566b3 +2014,Santa Fe,II.1.1,287.146714596,TJ,CH4,3.9,kg/TJ,1119.8721869244,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,5d36c83c-cfdc-3abe-aa93-9fb300df602a +2014,Santa Fe,II.1.1,287.146714596,TJ,N2O,3.9,kg/TJ,1119.8721869244,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,5d36c83c-cfdc-3abe-aa93-9fb300df602a +2014,Santiago del Estero,II.1.1,119.468695164,TJ,CO2,74100.0,kg/TJ,8852630.3116524,Gas Oil combustion consumption by public passenger transport,AR-G,SESCO,annual,kg,59fbc363-b99e-3d03-a07b-2188eba473d5 +2014,Santiago del Estero,II.1.1,119.468695164,TJ,CH4,3.9,kg/TJ,465.9279111396,Gas Oil combustion consumption by public passenger transport,AR-G,SESCO,annual,kg,c5c5a21e-00d1-33b3-975d-aa817be45d07 +2014,Santiago del Estero,II.1.1,119.468695164,TJ,N2O,3.9,kg/TJ,465.9279111396,Gas Oil combustion consumption by public passenger transport,AR-G,SESCO,annual,kg,c5c5a21e-00d1-33b3-975d-aa817be45d07 +2014,Tucuman,II.1.1,30.958293072,TJ,CO2,74100.0,kg/TJ,2294009.5166352,Gas Oil combustion consumption by public passenger transport,AR-T,SESCO,annual,kg,729d157a-1843-3797-82ab-13b33774a551 +2014,Tucuman,II.1.1,30.958293072,TJ,CH4,3.9,kg/TJ,120.7373429808,Gas Oil combustion consumption by public passenger transport,AR-T,SESCO,annual,kg,de34cd09-e4cb-3576-bd95-06598db5a442 +2014,Tucuman,II.1.1,30.958293072,TJ,N2O,3.9,kg/TJ,120.7373429808,Gas Oil combustion consumption by public passenger transport,AR-T,SESCO,annual,kg,de34cd09-e4cb-3576-bd95-06598db5a442 +2014,Buenos Aires,II.5.1,405.36406847999996,TJ,CO2,74100.0,kg/TJ,30037477.474368,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,0a4775d8-bb23-3cb1-aac4-b0c74bcc315b +2014,Buenos Aires,II.5.1,405.36406847999996,TJ,CH4,3.9,kg/TJ,1580.9198670719998,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,bdb7a4bb-bd90-303e-8337-cd879e698827 +2014,Buenos Aires,II.5.1,405.36406847999996,TJ,N2O,3.9,kg/TJ,1580.9198670719998,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,bdb7a4bb-bd90-303e-8337-cd879e698827 +2014,Córdoba,II.5.1,64.75254072,TJ,CO2,74100.0,kg/TJ,4798163.267352,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,73cdbf0d-0c10-32a9-bfda-20df2ac5e99b +2014,Córdoba,II.5.1,64.75254072,TJ,CH4,3.9,kg/TJ,252.53490880799998,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,415937c7-7f48-37eb-9669-95e4372db936 +2014,Córdoba,II.5.1,64.75254072,TJ,N2O,3.9,kg/TJ,252.53490880799998,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,415937c7-7f48-37eb-9669-95e4372db936 +2014,Neuquén,II.5.1,51.60207947999999,TJ,CO2,74100.0,kg/TJ,3823714.0894679995,Gas Oil combustion consumption by agriculture machines,AR-Q,SESCO,annual,kg,6a6cfde2-0a6a-38ca-8485-898150474852 +2014,Neuquén,II.5.1,51.60207947999999,TJ,CH4,3.9,kg/TJ,201.24810997199998,Gas Oil combustion consumption by agriculture machines,AR-Q,SESCO,annual,kg,b22c5e63-71ba-3856-a51c-c2f8ab4ec27d +2014,Neuquén,II.5.1,51.60207947999999,TJ,N2O,3.9,kg/TJ,201.24810997199998,Gas Oil combustion consumption by agriculture machines,AR-Q,SESCO,annual,kg,b22c5e63-71ba-3856-a51c-c2f8ab4ec27d +2014,Rio Negro,II.5.1,5.4907818,TJ,CO2,74100.0,kg/TJ,406866.93137999997,Gas Oil combustion consumption by agriculture machines,AR-R,SESCO,annual,kg,60bf848d-6ad1-3f80-9c19-61237c61189e +2014,Rio Negro,II.5.1,5.4907818,TJ,CH4,3.9,kg/TJ,21.414049019999997,Gas Oil combustion consumption by agriculture machines,AR-R,SESCO,annual,kg,eadb8a95-7c44-35d2-b7c5-ce097f10f7f8 +2014,Rio Negro,II.5.1,5.4907818,TJ,N2O,3.9,kg/TJ,21.414049019999997,Gas Oil combustion consumption by agriculture machines,AR-R,SESCO,annual,kg,eadb8a95-7c44-35d2-b7c5-ce097f10f7f8 +2014,Santa Fe,II.5.1,7.21692048,TJ,CO2,74100.0,kg/TJ,534773.8075679999,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,9e891157-f5bd-303d-996f-012afc5f1b22 +2014,Santa Fe,II.5.1,7.21692048,TJ,CH4,3.9,kg/TJ,28.145989871999998,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,24af5343-5e63-32c4-a71d-aa2d8dbdef1a +2014,Santa Fe,II.5.1,7.21692048,TJ,N2O,3.9,kg/TJ,28.145989871999998,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,24af5343-5e63-32c4-a71d-aa2d8dbdef1a +2014,Buenos Aires,II.5.1,6.551570795,TJ,CO2,73300.0,kg/TJ,480230.1392735,Naphtha combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,cd91b2be-5712-3164-af71-446f5dc8670f +2014,Buenos Aires,II.5.1,6.551570795,TJ,CH4,0.5,kg/TJ,3.2757853975,Naphtha combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,c9cc35ed-3658-3273-9fb5-07d036b75a89 +2014,Buenos Aires,II.5.1,6.551570795,TJ,N2O,2.0,kg/TJ,13.10314159,Naphtha combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,79f34290-da34-3346-83f1-8b6816b8e388 +2014,Buenos Aires,II.2.1,31.795460759999997,TJ,CO2,74100.0,kg/TJ,2356043.6423159996,Gas Oil combustion consumption by railway transport,AR-B,SESCO,annual,kg,688a9376-cd35-3ac5-b128-75bfcbea73ca +2014,Buenos Aires,II.2.1,31.795460759999997,TJ,CH4,3.9,kg/TJ,124.00229696399998,Gas Oil combustion consumption by railway transport,AR-B,SESCO,annual,kg,94c46f17-79b5-3802-af40-316befa19f6c +2014,Buenos Aires,II.2.1,31.795460759999997,TJ,N2O,3.9,kg/TJ,124.00229696399998,Gas Oil combustion consumption by railway transport,AR-B,SESCO,annual,kg,94c46f17-79b5-3802-af40-316befa19f6c +2014,Buenos Aires,II.1.1,7.426894999999999,TJ,CO2,69300.0,kg/TJ,514683.82349999994,Motor Gasoline combustion consumption by freight transport,AR-B,SESCO,annual,kg,7d2f5791-26e0-3299-9b21-e5e0fd8e1ed7 +2014,Buenos Aires,II.1.1,7.426894999999999,TJ,CH4,33.0,kg/TJ,245.08753499999997,Motor Gasoline combustion consumption by freight transport,AR-B,SESCO,annual,kg,7b0c72ca-5424-3bec-8310-ac1bb2ba25bf +2014,Buenos Aires,II.1.1,7.426894999999999,TJ,N2O,3.2,kg/TJ,23.766064,Motor Gasoline combustion consumption by freight transport,AR-B,SESCO,annual,kg,0c056c86-a353-32ff-86fd-b197a4a7b495 +2014,Buenos Aires,II.1.1,285.60557172,TJ,CO2,74100.0,kg/TJ,21163372.864452,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,238693e8-6554-369f-a817-b3b5490ec071 +2014,Buenos Aires,II.1.1,285.60557172,TJ,CH4,3.9,kg/TJ,1113.861729708,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,875ea892-184b-35e6-8847-4f679756a9ef +2014,Buenos Aires,II.1.1,285.60557172,TJ,N2O,3.9,kg/TJ,1113.861729708,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,875ea892-184b-35e6-8847-4f679756a9ef +2014,San Luis,II.1.1,55.78654536,TJ,CO2,74100.0,kg/TJ,4133783.011176,Gas Oil combustion consumption by freight transport,AR-D,SESCO,annual,kg,29c94b10-3c81-3df0-bec7-e229f716773d +2014,San Luis,II.1.1,55.78654536,TJ,CH4,3.9,kg/TJ,217.56752690399998,Gas Oil combustion consumption by freight transport,AR-D,SESCO,annual,kg,5d3dc221-e567-3ec5-a6d4-179e6b4594c1 +2014,San Luis,II.1.1,55.78654536,TJ,N2O,3.9,kg/TJ,217.56752690399998,Gas Oil combustion consumption by freight transport,AR-D,SESCO,annual,kg,5d3dc221-e567-3ec5-a6d4-179e6b4594c1 +2014,Buenos Aires,II.1.1,2.66247744,TJ,CO2,74100.0,kg/TJ,197289.578304,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,b00e0175-742e-354f-a924-be330a6c4473 +2014,Buenos Aires,II.1.1,2.66247744,TJ,CH4,3.9,kg/TJ,10.383662015999999,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,8b2a5392-e1de-348c-84c6-ea6a82ef30a0 +2014,Buenos Aires,II.1.1,2.66247744,TJ,N2O,3.9,kg/TJ,10.383662015999999,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,8b2a5392-e1de-348c-84c6-ea6a82ef30a0 +2014,Buenos Aires,II.1.1,443.17824096000004,TJ,CO2,74100.0,kg/TJ,32839507.655136004,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,67c0e51c-153d-39ca-a4c0-6cde9f499aae +2014,Buenos Aires,II.1.1,443.17824096000004,TJ,CH4,3.9,kg/TJ,1728.395139744,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,c0fed347-0074-3656-b259-d77c96250164 +2014,Buenos Aires,II.1.1,443.17824096000004,TJ,N2O,3.9,kg/TJ,1728.395139744,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,c0fed347-0074-3656-b259-d77c96250164 +2014,Capital Federal,II.1.1,15.846746999999999,TJ,CO2,74100.0,kg/TJ,1174243.9527,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,305f6e6d-cb82-32ab-802d-99f9d447d0e3 +2014,Capital Federal,II.1.1,15.846746999999999,TJ,CH4,3.9,kg/TJ,61.802313299999994,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,8aa6d7a9-2efd-3126-910a-6b19a5658bbc +2014,Capital Federal,II.1.1,15.846746999999999,TJ,N2O,3.9,kg/TJ,61.802313299999994,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,8aa6d7a9-2efd-3126-910a-6b19a5658bbc +2014,Chubut,II.1.1,20.48787804,TJ,CO2,74100.0,kg/TJ,1518151.7627639999,Gas Oil combustion consumption by public passenger transport,AR-U,SESCO,annual,kg,efb2d4e3-1669-3f6b-a253-77651eac60c4 +2014,Chubut,II.1.1,20.48787804,TJ,CH4,3.9,kg/TJ,79.902724356,Gas Oil combustion consumption by public passenger transport,AR-U,SESCO,annual,kg,937ccb24-8a2d-360d-aa26-668b80fc0013 +2014,Chubut,II.1.1,20.48787804,TJ,N2O,3.9,kg/TJ,79.902724356,Gas Oil combustion consumption by public passenger transport,AR-U,SESCO,annual,kg,937ccb24-8a2d-360d-aa26-668b80fc0013 +2014,Córdoba,II.1.1,270.50228268,TJ,CO2,74100.0,kg/TJ,20044219.146588,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,21f4a188-d550-327f-9a52-3e6c8a8b9f45 +2014,Córdoba,II.1.1,270.50228268,TJ,CH4,3.9,kg/TJ,1054.958902452,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,6e093682-b2fc-3c4d-9260-cc01c3085fbc +2014,Córdoba,II.1.1,270.50228268,TJ,N2O,3.9,kg/TJ,1054.958902452,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,6e093682-b2fc-3c4d-9260-cc01c3085fbc +2014,Neuquén,II.1.1,25.54092156,TJ,CO2,74100.0,kg/TJ,1892582.2875960001,Gas Oil combustion consumption by public passenger transport,AR-Q,SESCO,annual,kg,f5ae7682-beaa-3259-bc7f-061a1a7da5de +2014,Neuquén,II.1.1,25.54092156,TJ,CH4,3.9,kg/TJ,99.60959408400001,Gas Oil combustion consumption by public passenger transport,AR-Q,SESCO,annual,kg,82612a60-0937-3e7f-8a5a-b1cc7dd43777 +2014,Neuquén,II.1.1,25.54092156,TJ,N2O,3.9,kg/TJ,99.60959408400001,Gas Oil combustion consumption by public passenger transport,AR-Q,SESCO,annual,kg,82612a60-0937-3e7f-8a5a-b1cc7dd43777 +2014,Rio Negro,II.1.1,124.13114783999998,TJ,CO2,74100.0,kg/TJ,9198118.054944,Gas Oil combustion consumption by public passenger transport,AR-R,SESCO,annual,kg,9d82435b-a3db-3a82-8a88-2814e338eecc +2014,Rio Negro,II.1.1,124.13114783999998,TJ,CH4,3.9,kg/TJ,484.1114765759999,Gas Oil combustion consumption by public passenger transport,AR-R,SESCO,annual,kg,93a96641-be6e-3d08-a1df-834fa5accbae +2014,Rio Negro,II.1.1,124.13114783999998,TJ,N2O,3.9,kg/TJ,484.1114765759999,Gas Oil combustion consumption by public passenger transport,AR-R,SESCO,annual,kg,93a96641-be6e-3d08-a1df-834fa5accbae +2014,Santa Cruz,II.1.1,19.142769239999996,TJ,CO2,74100.0,kg/TJ,1418479.2006839998,Gas Oil combustion consumption by public passenger transport,AR-Z,SESCO,annual,kg,a98ae347-b396-331e-9d6a-276a5608a9f3 +2014,Santa Cruz,II.1.1,19.142769239999996,TJ,CH4,3.9,kg/TJ,74.65680003599998,Gas Oil combustion consumption by public passenger transport,AR-Z,SESCO,annual,kg,6c15d75c-3cc7-37d7-be75-b7ebc2ca7a34 +2014,Santa Cruz,II.1.1,19.142769239999996,TJ,N2O,3.9,kg/TJ,74.65680003599998,Gas Oil combustion consumption by public passenger transport,AR-Z,SESCO,annual,kg,6c15d75c-3cc7-37d7-be75-b7ebc2ca7a34 +2014,Santa Fe,II.1.1,6.941216519999999,TJ,CO2,74100.0,kg/TJ,514344.1441319999,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,94ef5cdb-d4f3-3d58-adef-3db091d7c5f5 +2014,Santa Fe,II.1.1,6.941216519999999,TJ,CH4,3.9,kg/TJ,27.070744427999998,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,b1f16df7-98da-362b-8d3a-199fc4a01748 +2014,Santa Fe,II.1.1,6.941216519999999,TJ,N2O,3.9,kg/TJ,27.070744427999998,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,b1f16df7-98da-362b-8d3a-199fc4a01748 +2014,Buenos Aires,II.5.1,7.1323,TJ,CO2,69300.0,kg/TJ,494268.39,Motor Gasoline combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,b940a896-f848-30cf-bb6e-4457348643e8 +2014,Buenos Aires,II.5.1,7.1323,TJ,CH4,33.0,kg/TJ,235.36589999999998,Motor Gasoline combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,e0e6949a-0c47-3f09-9daf-12e0513cdd0d +2014,Buenos Aires,II.5.1,7.1323,TJ,N2O,3.2,kg/TJ,22.82336,Motor Gasoline combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,ceed7f57-0dce-3957-b9bd-68f2906134e6 +2014,Capital Federal,II.5.1,96.131,TJ,CO2,69300.0,kg/TJ,6661878.3,Motor Gasoline combustion consumption by agriculture machines,AR-C,SESCO,annual,kg,771b74cc-bd50-365f-8aa5-53bd35b56042 +2014,Capital Federal,II.5.1,96.131,TJ,CH4,33.0,kg/TJ,3172.323,Motor Gasoline combustion consumption by agriculture machines,AR-C,SESCO,annual,kg,4e300cd8-a3ad-3d2b-b906-6dc15439a2fe +2014,Capital Federal,II.5.1,96.131,TJ,N2O,3.2,kg/TJ,307.61920000000003,Motor Gasoline combustion consumption by agriculture machines,AR-C,SESCO,annual,kg,b0ec7491-71d1-3c13-b966-3cd8b5769752 +2014,Buenos Aires,II.5.1,462.48048,TJ,CO2,74100.0,kg/TJ,34269803.568,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,1f3cc612-9ad1-3f0e-a6cb-1b6e46cf8c1c +2014,Buenos Aires,II.5.1,462.48048,TJ,CH4,3.9,kg/TJ,1803.6738719999998,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,6fcf2697-710b-3596-b391-d65da7095c88 +2014,Buenos Aires,II.5.1,462.48048,TJ,N2O,3.9,kg/TJ,1803.6738719999998,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,6fcf2697-710b-3596-b391-d65da7095c88 +2014,Capital Federal,II.5.1,2.6728799999999997,TJ,CO2,74100.0,kg/TJ,198060.40799999997,Gas Oil combustion consumption by agriculture machines,AR-C,SESCO,annual,kg,4b9a2f7f-3e28-3dc4-8778-87fa1cf88302 +2014,Capital Federal,II.5.1,2.6728799999999997,TJ,CH4,3.9,kg/TJ,10.424231999999998,Gas Oil combustion consumption by agriculture machines,AR-C,SESCO,annual,kg,9d2e8d70-c3c4-32ac-9baf-b624b974e773 +2014,Capital Federal,II.5.1,2.6728799999999997,TJ,N2O,3.9,kg/TJ,10.424231999999998,Gas Oil combustion consumption by agriculture machines,AR-C,SESCO,annual,kg,9d2e8d70-c3c4-32ac-9baf-b624b974e773 +2014,Córdoba,II.5.1,161.34804,TJ,CO2,74100.0,kg/TJ,11955889.764,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,fbdaf68a-e280-3da0-b0e7-0eeab8a3998c +2014,Córdoba,II.5.1,161.34804,TJ,CH4,3.9,kg/TJ,629.257356,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,c2f8f4b5-178f-3d7b-a43c-767d77131842 +2014,Córdoba,II.5.1,161.34804,TJ,N2O,3.9,kg/TJ,629.257356,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,c2f8f4b5-178f-3d7b-a43c-767d77131842 +2014,Santa Fe,II.5.1,669.05076,TJ,CO2,74100.0,kg/TJ,49576661.316,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,7702bbce-d6d8-3b3b-943d-9813fcabef95 +2014,Santa Fe,II.5.1,669.05076,TJ,CH4,3.9,kg/TJ,2609.297964,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,0685759c-92cc-3fbd-b4f9-7d9c401f9d79 +2014,Santa Fe,II.5.1,669.05076,TJ,N2O,3.9,kg/TJ,2609.297964,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,0685759c-92cc-3fbd-b4f9-7d9c401f9d79 +2014,Buenos Aires,II.5.1,3.9732,TJ,CO2,74100.0,kg/TJ,294414.12,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,69e92b83-ebed-3d9e-a39e-66b817c8da1d +2014,Buenos Aires,II.5.1,3.9732,TJ,CH4,3.9,kg/TJ,15.495479999999999,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,94a1d593-ccb1-3171-89e2-fbfd0b568f1e +2014,Buenos Aires,II.5.1,3.9732,TJ,N2O,3.9,kg/TJ,15.495479999999999,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,94a1d593-ccb1-3171-89e2-fbfd0b568f1e +2014,Córdoba,II.5.1,0.93912,TJ,CO2,74100.0,kg/TJ,69588.792,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,37de61af-776d-37e3-a497-1e78573d2c99 +2014,Córdoba,II.5.1,0.93912,TJ,CH4,3.9,kg/TJ,3.662568,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,994e13a1-3b34-34bf-8f87-f4c9fa9089d7 +2014,Córdoba,II.5.1,0.93912,TJ,N2O,3.9,kg/TJ,3.662568,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,994e13a1-3b34-34bf-8f87-f4c9fa9089d7 +2014,Santa Fe,II.5.1,28.209719999999997,TJ,CO2,74100.0,kg/TJ,2090340.2519999999,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,f1fa5225-467a-3d97-95c1-6c57274a83b2 +2014,Santa Fe,II.5.1,28.209719999999997,TJ,CH4,3.9,kg/TJ,110.01790799999999,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,54292d1a-7f26-3c35-b1d7-f432cce2407a +2014,Santa Fe,II.5.1,28.209719999999997,TJ,N2O,3.9,kg/TJ,110.01790799999999,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,54292d1a-7f26-3c35-b1d7-f432cce2407a +2014,Santa Fe,II.5.1,54.207229999999996,TJ,CO2,73300.0,kg/TJ,3973389.959,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,3952c4ee-646b-3986-9079-3f0a036d7bf2 +2014,Santa Fe,II.5.1,54.207229999999996,TJ,CH4,0.5,kg/TJ,27.103614999999998,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,6520d671-0cb6-3b0b-a3e2-be7c3621b1ed +2014,Santa Fe,II.5.1,54.207229999999996,TJ,N2O,2.0,kg/TJ,108.41445999999999,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,c4b1d131-3d98-3a23-99ca-6e2d39cfd746 +2014,Santa Fe,II.5.1,5.174015,TJ,CO2,73300.0,kg/TJ,379255.29949999996,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,abbca4b0-f765-3179-a6ee-e7fcd425f2fd +2014,Santa Fe,II.5.1,5.174015,TJ,CH4,0.5,kg/TJ,2.5870075,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,2b87440e-81bb-3f68-850a-3ed04c6ebff4 +2014,Santa Fe,II.5.1,5.174015,TJ,N2O,2.0,kg/TJ,10.34803,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,4cd271a5-3970-39b4-a50c-aa24a94aa39c +2014,Buenos Aires,II.2.1,567.3729599999999,TJ,CO2,74100.0,kg/TJ,42042336.335999995,Gas Oil combustion consumption by railway transport,AR-B,SESCO,annual,kg,a8185f4f-427f-36b3-9b99-c9a468763769 +2014,Buenos Aires,II.2.1,567.3729599999999,TJ,CH4,3.9,kg/TJ,2212.7545439999994,Gas Oil combustion consumption by railway transport,AR-B,SESCO,annual,kg,6db7e4fc-014f-3216-94ec-462d431b4730 +2014,Buenos Aires,II.2.1,567.3729599999999,TJ,N2O,3.9,kg/TJ,2212.7545439999994,Gas Oil combustion consumption by railway transport,AR-B,SESCO,annual,kg,6db7e4fc-014f-3216-94ec-462d431b4730 +2014,Capital Federal,II.2.1,1049.39436,TJ,CO2,74100.0,kg/TJ,77760122.076,Gas Oil combustion consumption by railway transport,AR-C,SESCO,annual,kg,f047d085-33e6-3bae-8945-e00b2f33a36c +2014,Capital Federal,II.2.1,1049.39436,TJ,CH4,3.9,kg/TJ,4092.638004,Gas Oil combustion consumption by railway transport,AR-C,SESCO,annual,kg,23064763-fea8-368a-b207-b07a19d2f6b3 +2014,Capital Federal,II.2.1,1049.39436,TJ,N2O,3.9,kg/TJ,4092.638004,Gas Oil combustion consumption by railway transport,AR-C,SESCO,annual,kg,23064763-fea8-368a-b207-b07a19d2f6b3 +2014,Santa Fe,II.2.1,327.4278,TJ,CO2,74100.0,kg/TJ,24262399.98,Gas Oil combustion consumption by railway transport,AR-S,SESCO,annual,kg,4b29a378-3ea8-3ca9-b7d1-f6ea0449a5e4 +2014,Santa Fe,II.2.1,327.4278,TJ,CH4,3.9,kg/TJ,1276.96842,Gas Oil combustion consumption by railway transport,AR-S,SESCO,annual,kg,cd5adb59-b63c-3978-aeae-fa58aec546fc +2014,Santa Fe,II.2.1,327.4278,TJ,N2O,3.9,kg/TJ,1276.96842,Gas Oil combustion consumption by railway transport,AR-S,SESCO,annual,kg,cd5adb59-b63c-3978-aeae-fa58aec546fc +2014,Capital Federal,II.2.1,1.58928,TJ,CO2,74100.0,kg/TJ,117765.648,Gas Oil combustion consumption by railway transport,AR-C,SESCO,annual,kg,085eb847-98e8-3bd6-ba06-64ddafb46864 +2014,Capital Federal,II.2.1,1.58928,TJ,CH4,3.9,kg/TJ,6.198192,Gas Oil combustion consumption by railway transport,AR-C,SESCO,annual,kg,5115e60a-6307-398f-8d83-887dca01ab2b +2014,Capital Federal,II.2.1,1.58928,TJ,N2O,3.9,kg/TJ,6.198192,Gas Oil combustion consumption by railway transport,AR-C,SESCO,annual,kg,5115e60a-6307-398f-8d83-887dca01ab2b +2014,Buenos Aires,II.1.1,21.8399,TJ,CO2,69300.0,kg/TJ,1513505.07,Motor Gasoline combustion consumption by freight transport,AR-B,SESCO,annual,kg,0bbdb932-2390-333a-b029-2f3bf380b211 +2014,Buenos Aires,II.1.1,21.8399,TJ,CH4,33.0,kg/TJ,720.7167,Motor Gasoline combustion consumption by freight transport,AR-B,SESCO,annual,kg,d8e5c3b6-6388-32fe-9450-0397026de426 +2014,Buenos Aires,II.1.1,21.8399,TJ,N2O,3.2,kg/TJ,69.88768,Motor Gasoline combustion consumption by freight transport,AR-B,SESCO,annual,kg,852efafa-9c85-31f8-a318-e63f39ead03d +2014,Buenos Aires,II.1.1,705.38748,TJ,CO2,74100.0,kg/TJ,52269212.268,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,e21e4696-ceed-3e36-b84a-da17906311ac +2014,Buenos Aires,II.1.1,705.38748,TJ,CH4,3.9,kg/TJ,2751.011172,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,f328630b-8d64-3ca8-930b-46832c6ded98 +2014,Buenos Aires,II.1.1,705.38748,TJ,N2O,3.9,kg/TJ,2751.011172,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,f328630b-8d64-3ca8-930b-46832c6ded98 +2014,Capital Federal,II.1.1,185.76515999999998,TJ,CO2,74100.0,kg/TJ,13765198.355999999,Gas Oil combustion consumption by freight transport,AR-C,SESCO,annual,kg,4ee43506-74c4-3bb1-9fcd-4fcfd868a3d8 +2014,Capital Federal,II.1.1,185.76515999999998,TJ,CH4,3.9,kg/TJ,724.484124,Gas Oil combustion consumption by freight transport,AR-C,SESCO,annual,kg,0a61b0ad-b081-3a58-97aa-95578755fbaf +2014,Capital Federal,II.1.1,185.76515999999998,TJ,N2O,3.9,kg/TJ,724.484124,Gas Oil combustion consumption by freight transport,AR-C,SESCO,annual,kg,0a61b0ad-b081-3a58-97aa-95578755fbaf +2014,Córdoba,II.1.1,139.31484,TJ,CO2,74100.0,kg/TJ,10323229.644,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,32fbb736-fe17-3ba7-aaca-6082b6f232de +2014,Córdoba,II.1.1,139.31484,TJ,CH4,3.9,kg/TJ,543.327876,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,5f9c93cb-4198-3966-877e-86e0f16ab71b +2014,Córdoba,II.1.1,139.31484,TJ,N2O,3.9,kg/TJ,543.327876,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,5f9c93cb-4198-3966-877e-86e0f16ab71b +2014,Buenos Aires,II.1.1,0.7223999999999999,TJ,CO2,74100.0,kg/TJ,53529.84,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,bdee06f0-17e0-36a5-9cfc-b68ac7d207d0 +2014,Buenos Aires,II.1.1,0.7223999999999999,TJ,CH4,3.9,kg/TJ,2.81736,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,da53f9c5-7dc1-3826-aa52-8fc8275909da +2014,Buenos Aires,II.1.1,0.7223999999999999,TJ,N2O,3.9,kg/TJ,2.81736,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,da53f9c5-7dc1-3826-aa52-8fc8275909da +2014,Córdoba,II.1.1,1.58928,TJ,CO2,74100.0,kg/TJ,117765.648,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,7e8681c7-ebf5-3094-ab5d-a8d1f8076bb0 +2014,Córdoba,II.1.1,1.58928,TJ,CH4,3.9,kg/TJ,6.198192,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,eef29059-71ee-3d99-89a3-143b1e42ecf7 +2014,Córdoba,II.1.1,1.58928,TJ,N2O,3.9,kg/TJ,6.198192,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,eef29059-71ee-3d99-89a3-143b1e42ecf7 +2014,Buenos Aires,II.1.1,33.12204,TJ,CO2,74100.0,kg/TJ,2454343.164,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,8e9ed68d-c673-3310-b1cd-5f0c946986ba +2014,Buenos Aires,II.1.1,33.12204,TJ,CH4,3.9,kg/TJ,129.17595599999999,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,029405ba-d2a9-37ec-b803-220ae55711a3 +2014,Buenos Aires,II.1.1,33.12204,TJ,N2O,3.9,kg/TJ,129.17595599999999,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,029405ba-d2a9-37ec-b803-220ae55711a3 +2014,Capital Federal,II.1.1,14.37576,TJ,CO2,74100.0,kg/TJ,1065243.8159999999,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,26451670-9e37-37ed-881f-0820224fa72b +2014,Capital Federal,II.1.1,14.37576,TJ,CH4,3.9,kg/TJ,56.065464,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,9fb2ef86-f505-3b9a-8d09-d79e3fa15153 +2014,Capital Federal,II.1.1,14.37576,TJ,N2O,3.9,kg/TJ,56.065464,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,9fb2ef86-f505-3b9a-8d09-d79e3fa15153 +2014,Misiones,II.1.1,340.53936,TJ,CO2,74100.0,kg/TJ,25233966.575999998,Gas Oil combustion consumption by public passenger transport,AR-N,SESCO,annual,kg,f58b96d6-83d1-3a50-8d70-fd8216d381fe +2014,Misiones,II.1.1,340.53936,TJ,CH4,3.9,kg/TJ,1328.103504,Gas Oil combustion consumption by public passenger transport,AR-N,SESCO,annual,kg,6ba536a8-70b8-3228-b8f4-84b62bd8f9a7 +2014,Misiones,II.1.1,340.53936,TJ,N2O,3.9,kg/TJ,1328.103504,Gas Oil combustion consumption by public passenger transport,AR-N,SESCO,annual,kg,6ba536a8-70b8-3228-b8f4-84b62bd8f9a7 +2014,Buenos Aires,II.5.1,8.7271,TJ,CO2,69300.0,kg/TJ,604788.03,Motor Gasoline combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,a8d29ee4-dd8f-3768-9af7-bde07f079d75 +2014,Buenos Aires,II.5.1,8.7271,TJ,CH4,33.0,kg/TJ,287.9943,Motor Gasoline combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,14a8a9cf-2b3d-3c39-9b3a-0cbd72f6b53a +2014,Buenos Aires,II.5.1,8.7271,TJ,N2O,3.2,kg/TJ,27.926720000000003,Motor Gasoline combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,7ea212ec-5848-3b67-a7d3-c2cb2fd58ae8 +2014,Buenos Aires,II.5.1,9231.0078,TJ,CO2,74100.0,kg/TJ,684017677.9799999,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,d46a6409-7e45-3139-87ac-71fca6719767 +2014,Buenos Aires,II.5.1,9231.0078,TJ,CH4,3.9,kg/TJ,36000.93042,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,8cb925f9-ef9a-3133-a302-5e82f0db86c6 +2014,Buenos Aires,II.5.1,9231.0078,TJ,N2O,3.9,kg/TJ,36000.93042,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,8cb925f9-ef9a-3133-a302-5e82f0db86c6 +2014,Capital Federal,II.5.1,18.89076,TJ,CO2,74100.0,kg/TJ,1399805.316,Gas Oil combustion consumption by agriculture machines,AR-C,SESCO,annual,kg,326ed521-65d3-3a5c-9a3b-b97ecce4c002 +2014,Capital Federal,II.5.1,18.89076,TJ,CH4,3.9,kg/TJ,73.673964,Gas Oil combustion consumption by agriculture machines,AR-C,SESCO,annual,kg,9b473fc5-fbfc-3619-bc74-9f301216b662 +2014,Capital Federal,II.5.1,18.89076,TJ,N2O,3.9,kg/TJ,73.673964,Gas Oil combustion consumption by agriculture machines,AR-C,SESCO,annual,kg,9b473fc5-fbfc-3619-bc74-9f301216b662 +2014,Catamarca,II.5.1,91.09464,TJ,CO2,74100.0,kg/TJ,6750112.824,Gas Oil combustion consumption by agriculture machines,AR-K,SESCO,annual,kg,6df99718-2cf5-3ca9-94c5-51c313955e8f +2014,Catamarca,II.5.1,91.09464,TJ,CH4,3.9,kg/TJ,355.269096,Gas Oil combustion consumption by agriculture machines,AR-K,SESCO,annual,kg,20e04904-789d-3c48-8ffa-627b585f0dd9 +2014,Catamarca,II.5.1,91.09464,TJ,N2O,3.9,kg/TJ,355.269096,Gas Oil combustion consumption by agriculture machines,AR-K,SESCO,annual,kg,20e04904-789d-3c48-8ffa-627b585f0dd9 +2014,Chaco,II.5.1,1385.4548399999999,TJ,CO2,74100.0,kg/TJ,102662203.644,Gas Oil combustion consumption by agriculture machines,AR-H,SESCO,annual,kg,87a47d1f-05ec-354e-a9ab-e5fa857eec00 +2014,Chaco,II.5.1,1385.4548399999999,TJ,CH4,3.9,kg/TJ,5403.273875999999,Gas Oil combustion consumption by agriculture machines,AR-H,SESCO,annual,kg,ba6b138b-a6d4-35c8-a2f0-c43ba1348903 +2014,Chaco,II.5.1,1385.4548399999999,TJ,N2O,3.9,kg/TJ,5403.273875999999,Gas Oil combustion consumption by agriculture machines,AR-H,SESCO,annual,kg,ba6b138b-a6d4-35c8-a2f0-c43ba1348903 +2014,Chubut,II.5.1,19.21584,TJ,CO2,74100.0,kg/TJ,1423893.744,Gas Oil combustion consumption by agriculture machines,AR-U,SESCO,annual,kg,d701cdce-b759-35c4-b94a-bddae2f2af39 +2014,Chubut,II.5.1,19.21584,TJ,CH4,3.9,kg/TJ,74.941776,Gas Oil combustion consumption by agriculture machines,AR-U,SESCO,annual,kg,5a1190be-9cc5-3cca-8fc4-5d1d838d9c57 +2014,Chubut,II.5.1,19.21584,TJ,N2O,3.9,kg/TJ,74.941776,Gas Oil combustion consumption by agriculture machines,AR-U,SESCO,annual,kg,5a1190be-9cc5-3cca-8fc4-5d1d838d9c57 +2014,Corrientes,II.5.1,418.59468,TJ,CO2,74100.0,kg/TJ,31017865.788,Gas Oil combustion consumption by agriculture machines,AR-W,SESCO,annual,kg,fa4babb1-fc0d-383a-a717-209b052fbddf +2014,Corrientes,II.5.1,418.59468,TJ,CH4,3.9,kg/TJ,1632.5192519999998,Gas Oil combustion consumption by agriculture machines,AR-W,SESCO,annual,kg,74ee0bdd-4467-3ec4-a579-cca3d237a454 +2014,Corrientes,II.5.1,418.59468,TJ,N2O,3.9,kg/TJ,1632.5192519999998,Gas Oil combustion consumption by agriculture machines,AR-W,SESCO,annual,kg,74ee0bdd-4467-3ec4-a579-cca3d237a454 +2014,Córdoba,II.5.1,7946.90568,TJ,CO2,74100.0,kg/TJ,588865710.888,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,11ee677e-c6d0-358e-b89f-ac8b018c26c6 +2014,Córdoba,II.5.1,7946.90568,TJ,CH4,3.9,kg/TJ,30992.932151999998,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,5a3597ae-bb8f-3188-a74e-ce946cac5fea +2014,Córdoba,II.5.1,7946.90568,TJ,N2O,3.9,kg/TJ,30992.932151999998,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,5a3597ae-bb8f-3188-a74e-ce946cac5fea +2014,Entre Rios,II.5.1,2325.1166399999997,TJ,CO2,74100.0,kg/TJ,172291143.024,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,f00e2325-3f0c-3f38-bb58-ade253cf6871 +2014,Entre Rios,II.5.1,2325.1166399999997,TJ,CH4,3.9,kg/TJ,9067.954896,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,1dc6064b-1fc7-3eb9-8c0f-a09ffb867630 +2014,Entre Rios,II.5.1,2325.1166399999997,TJ,N2O,3.9,kg/TJ,9067.954896,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,1dc6064b-1fc7-3eb9-8c0f-a09ffb867630 +2014,Formosa,II.5.1,367.91832,TJ,CO2,74100.0,kg/TJ,27262747.512,Gas Oil combustion consumption by agriculture machines,AR-P,SESCO,annual,kg,bec46821-b637-3fa3-8b0d-c57a92b1d805 +2014,Formosa,II.5.1,367.91832,TJ,CH4,3.9,kg/TJ,1434.8814479999999,Gas Oil combustion consumption by agriculture machines,AR-P,SESCO,annual,kg,5483f7b4-3c64-3d19-8f89-73dc16df0490 +2014,Formosa,II.5.1,367.91832,TJ,N2O,3.9,kg/TJ,1434.8814479999999,Gas Oil combustion consumption by agriculture machines,AR-P,SESCO,annual,kg,5483f7b4-3c64-3d19-8f89-73dc16df0490 +2014,Jujuy,II.5.1,1085.98392,TJ,CO2,74100.0,kg/TJ,80471408.47199999,Gas Oil combustion consumption by agriculture machines,AR-Y,SESCO,annual,kg,f5a63c6e-cd75-3152-bf58-e64f291d4aa0 +2014,Jujuy,II.5.1,1085.98392,TJ,CH4,3.9,kg/TJ,4235.337288,Gas Oil combustion consumption by agriculture machines,AR-Y,SESCO,annual,kg,e6f8f373-0d25-360a-b51e-3aea0e0adb79 +2014,Jujuy,II.5.1,1085.98392,TJ,N2O,3.9,kg/TJ,4235.337288,Gas Oil combustion consumption by agriculture machines,AR-Y,SESCO,annual,kg,e6f8f373-0d25-360a-b51e-3aea0e0adb79 +2014,La Pampa,II.5.1,2042.5137599999998,TJ,CO2,74100.0,kg/TJ,151350269.616,Gas Oil combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,6e00544e-4b2b-35ea-b6f4-537b697fc7d4 +2014,La Pampa,II.5.1,2042.5137599999998,TJ,CH4,3.9,kg/TJ,7965.803663999999,Gas Oil combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,de24a7eb-dcf4-3893-bd8f-93d46e0ed429 +2014,La Pampa,II.5.1,2042.5137599999998,TJ,N2O,3.9,kg/TJ,7965.803663999999,Gas Oil combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,de24a7eb-dcf4-3893-bd8f-93d46e0ed429 +2014,Mendoza,II.5.1,466.95936,TJ,CO2,74100.0,kg/TJ,34601688.576,Gas Oil combustion consumption by agriculture machines,AR-M,SESCO,annual,kg,27c17b51-c18b-3ead-9ccf-d6b806c8c5e1 +2014,Mendoza,II.5.1,466.95936,TJ,CH4,3.9,kg/TJ,1821.141504,Gas Oil combustion consumption by agriculture machines,AR-M,SESCO,annual,kg,eaf217db-0ccd-3b2b-95d2-7ff5dce51aaa +2014,Mendoza,II.5.1,466.95936,TJ,N2O,3.9,kg/TJ,1821.141504,Gas Oil combustion consumption by agriculture machines,AR-M,SESCO,annual,kg,eaf217db-0ccd-3b2b-95d2-7ff5dce51aaa +2014,Misiones,II.5.1,1015.47768,TJ,CO2,74100.0,kg/TJ,75246896.088,Gas Oil combustion consumption by agriculture machines,AR-N,SESCO,annual,kg,c12e48c4-cc84-3c97-8074-afa18a9e9160 +2014,Misiones,II.5.1,1015.47768,TJ,CH4,3.9,kg/TJ,3960.362952,Gas Oil combustion consumption by agriculture machines,AR-N,SESCO,annual,kg,46cd2d39-5a6c-3a85-bc63-065b4848797e +2014,Misiones,II.5.1,1015.47768,TJ,N2O,3.9,kg/TJ,3960.362952,Gas Oil combustion consumption by agriculture machines,AR-N,SESCO,annual,kg,46cd2d39-5a6c-3a85-bc63-065b4848797e +2014,Neuquén,II.5.1,0.10836,TJ,CO2,74100.0,kg/TJ,8029.476,Gas Oil combustion consumption by agriculture machines,AR-Q,SESCO,annual,kg,0795293b-ff9e-3e0f-95ba-2c869f527796 +2014,Neuquén,II.5.1,0.10836,TJ,CH4,3.9,kg/TJ,0.422604,Gas Oil combustion consumption by agriculture machines,AR-Q,SESCO,annual,kg,95119bda-fa96-3950-817a-b1b57e2ef13e +2014,Neuquén,II.5.1,0.10836,TJ,N2O,3.9,kg/TJ,0.422604,Gas Oil combustion consumption by agriculture machines,AR-Q,SESCO,annual,kg,95119bda-fa96-3950-817a-b1b57e2ef13e +2014,Rio Negro,II.5.1,201.69407999999999,TJ,CO2,74100.0,kg/TJ,14945531.328,Gas Oil combustion consumption by agriculture machines,AR-R,SESCO,annual,kg,9b7eb59c-4e5d-321f-afe3-6b9956308347 +2014,Rio Negro,II.5.1,201.69407999999999,TJ,CH4,3.9,kg/TJ,786.606912,Gas Oil combustion consumption by agriculture machines,AR-R,SESCO,annual,kg,cb643db9-96be-38f8-9eb6-734dc1a4ab89 +2014,Rio Negro,II.5.1,201.69407999999999,TJ,N2O,3.9,kg/TJ,786.606912,Gas Oil combustion consumption by agriculture machines,AR-R,SESCO,annual,kg,cb643db9-96be-38f8-9eb6-734dc1a4ab89 +2014,Salta,II.5.1,1891.67664,TJ,CO2,74100.0,kg/TJ,140173239.024,Gas Oil combustion consumption by agriculture machines,AR-A,SESCO,annual,kg,1629c483-a1bd-3298-8b2b-a65d3c2411f8 +2014,Salta,II.5.1,1891.67664,TJ,CH4,3.9,kg/TJ,7377.538895999999,Gas Oil combustion consumption by agriculture machines,AR-A,SESCO,annual,kg,e4fc38aa-861a-3cef-8cbf-2d7393044ece +2014,Salta,II.5.1,1891.67664,TJ,N2O,3.9,kg/TJ,7377.538895999999,Gas Oil combustion consumption by agriculture machines,AR-A,SESCO,annual,kg,e4fc38aa-861a-3cef-8cbf-2d7393044ece +2014,San Luis,II.5.1,610.03068,TJ,CO2,74100.0,kg/TJ,45203273.388,Gas Oil combustion consumption by agriculture machines,AR-D,SESCO,annual,kg,7c0815e4-b50c-3188-af60-dbc67aab74cd +2014,San Luis,II.5.1,610.03068,TJ,CH4,3.9,kg/TJ,2379.119652,Gas Oil combustion consumption by agriculture machines,AR-D,SESCO,annual,kg,8084c344-de5d-3f84-8892-57145a01df61 +2014,San Luis,II.5.1,610.03068,TJ,N2O,3.9,kg/TJ,2379.119652,Gas Oil combustion consumption by agriculture machines,AR-D,SESCO,annual,kg,8084c344-de5d-3f84-8892-57145a01df61 +2014,Santa Cruz,II.5.1,1.76988,TJ,CO2,74100.0,kg/TJ,131148.10799999998,Gas Oil combustion consumption by agriculture machines,AR-Z,SESCO,annual,kg,595b9dee-606c-3371-abf3-d1252e8a6c16 +2014,Santa Cruz,II.5.1,1.76988,TJ,CH4,3.9,kg/TJ,6.902531999999999,Gas Oil combustion consumption by agriculture machines,AR-Z,SESCO,annual,kg,af2a6152-ac33-36a3-93ea-d6a021cd65f0 +2014,Santa Cruz,II.5.1,1.76988,TJ,N2O,3.9,kg/TJ,6.902531999999999,Gas Oil combustion consumption by agriculture machines,AR-Z,SESCO,annual,kg,af2a6152-ac33-36a3-93ea-d6a021cd65f0 +2014,Santa Fe,II.5.1,6437.34252,TJ,CO2,74100.0,kg/TJ,477007080.732,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,bc805d94-1c8b-33b2-acaa-9078a8061e48 +2014,Santa Fe,II.5.1,6437.34252,TJ,CH4,3.9,kg/TJ,25105.635828,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,2f08f161-0195-3c78-b7df-cc3a88a67aea +2014,Santa Fe,II.5.1,6437.34252,TJ,N2O,3.9,kg/TJ,25105.635828,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,2f08f161-0195-3c78-b7df-cc3a88a67aea +2014,Santiago del Estero,II.5.1,1738.2749999999999,TJ,CO2,74100.0,kg/TJ,128806177.49999999,Gas Oil combustion consumption by agriculture machines,AR-G,SESCO,annual,kg,779da3f1-2aff-3d00-af80-659be145af5d +2014,Santiago del Estero,II.5.1,1738.2749999999999,TJ,CH4,3.9,kg/TJ,6779.272499999999,Gas Oil combustion consumption by agriculture machines,AR-G,SESCO,annual,kg,2327e88b-ab98-3405-9343-8db145fec055 +2014,Santiago del Estero,II.5.1,1738.2749999999999,TJ,N2O,3.9,kg/TJ,6779.272499999999,Gas Oil combustion consumption by agriculture machines,AR-G,SESCO,annual,kg,2327e88b-ab98-3405-9343-8db145fec055 +2014,Tucuman,II.5.1,1476.9468,TJ,CO2,74100.0,kg/TJ,109441757.88,Gas Oil combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,2790679c-7178-36b4-a465-fa95f858a1b5 +2014,Tucuman,II.5.1,1476.9468,TJ,CH4,3.9,kg/TJ,5760.092519999999,Gas Oil combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,a52f736b-d1c7-3913-afa0-27b125c884dd +2014,Tucuman,II.5.1,1476.9468,TJ,N2O,3.9,kg/TJ,5760.092519999999,Gas Oil combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,a52f736b-d1c7-3913-afa0-27b125c884dd +2014,Buenos Aires,II.5.1,130.06812,TJ,CO2,74100.0,kg/TJ,9638047.692,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,32dcbe39-f96d-35dd-923e-c6131e8f38a6 +2014,Buenos Aires,II.5.1,130.06812,TJ,CH4,3.9,kg/TJ,507.26566799999995,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,b90dff1f-e886-3ab6-8342-6d00063504a2 +2014,Buenos Aires,II.5.1,130.06812,TJ,N2O,3.9,kg/TJ,507.26566799999995,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,b90dff1f-e886-3ab6-8342-6d00063504a2 +2014,Catamarca,II.5.1,7.0434,TJ,CO2,74100.0,kg/TJ,521915.94,Gas Oil combustion consumption by agriculture machines,AR-K,SESCO,annual,kg,60a99f73-c378-350e-98de-953fa71cf459 +2014,Catamarca,II.5.1,7.0434,TJ,CH4,3.9,kg/TJ,27.46926,Gas Oil combustion consumption by agriculture machines,AR-K,SESCO,annual,kg,aa496ba2-caaa-38d6-b5b1-506b1c81e22a +2014,Catamarca,II.5.1,7.0434,TJ,N2O,3.9,kg/TJ,27.46926,Gas Oil combustion consumption by agriculture machines,AR-K,SESCO,annual,kg,aa496ba2-caaa-38d6-b5b1-506b1c81e22a +2014,Chaco,II.5.1,44.64432,TJ,CO2,74100.0,kg/TJ,3308144.112,Gas Oil combustion consumption by agriculture machines,AR-H,SESCO,annual,kg,ea2773cc-d8a2-3942-b1fe-262d9d7a7a65 +2014,Chaco,II.5.1,44.64432,TJ,CH4,3.9,kg/TJ,174.11284799999999,Gas Oil combustion consumption by agriculture machines,AR-H,SESCO,annual,kg,33fea331-768e-3aef-be3c-98d282bccb55 +2014,Chaco,II.5.1,44.64432,TJ,N2O,3.9,kg/TJ,174.11284799999999,Gas Oil combustion consumption by agriculture machines,AR-H,SESCO,annual,kg,33fea331-768e-3aef-be3c-98d282bccb55 +2014,Chubut,II.5.1,0.32508,TJ,CO2,74100.0,kg/TJ,24088.428,Gas Oil combustion consumption by agriculture machines,AR-U,SESCO,annual,kg,c9e8630f-c13e-3a28-b044-46ef96068607 +2014,Chubut,II.5.1,0.32508,TJ,CH4,3.9,kg/TJ,1.267812,Gas Oil combustion consumption by agriculture machines,AR-U,SESCO,annual,kg,920b32bc-2159-3418-a13b-0a98d54d2419 +2014,Chubut,II.5.1,0.32508,TJ,N2O,3.9,kg/TJ,1.267812,Gas Oil combustion consumption by agriculture machines,AR-U,SESCO,annual,kg,920b32bc-2159-3418-a13b-0a98d54d2419 +2014,Corrientes,II.5.1,30.232439999999997,TJ,CO2,74100.0,kg/TJ,2240223.8039999995,Gas Oil combustion consumption by agriculture machines,AR-W,SESCO,annual,kg,fa973f32-7b3a-3a82-8175-faa160d62619 +2014,Corrientes,II.5.1,30.232439999999997,TJ,CH4,3.9,kg/TJ,117.90651599999998,Gas Oil combustion consumption by agriculture machines,AR-W,SESCO,annual,kg,cb244043-8ea1-3b48-8a02-40d5a23c87ce +2014,Corrientes,II.5.1,30.232439999999997,TJ,N2O,3.9,kg/TJ,117.90651599999998,Gas Oil combustion consumption by agriculture machines,AR-W,SESCO,annual,kg,cb244043-8ea1-3b48-8a02-40d5a23c87ce +2014,Córdoba,II.5.1,27.4512,TJ,CO2,74100.0,kg/TJ,2034133.92,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,1ac908de-927c-3386-9c99-8654c17207c7 +2014,Córdoba,II.5.1,27.4512,TJ,CH4,3.9,kg/TJ,107.05968,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,604cf9b0-5597-3f43-98b2-2141ce8ee3c3 +2014,Córdoba,II.5.1,27.4512,TJ,N2O,3.9,kg/TJ,107.05968,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,604cf9b0-5597-3f43-98b2-2141ce8ee3c3 +2014,Entre Rios,II.5.1,5.9597999999999995,TJ,CO2,74100.0,kg/TJ,441621.18,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,12922e33-37c7-3088-9606-7f9d54b992d3 +2014,Entre Rios,II.5.1,5.9597999999999995,TJ,CH4,3.9,kg/TJ,23.243219999999997,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,f5e42838-2a63-3999-a975-1c2e5e040377 +2014,Entre Rios,II.5.1,5.9597999999999995,TJ,N2O,3.9,kg/TJ,23.243219999999997,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,f5e42838-2a63-3999-a975-1c2e5e040377 +2014,Jujuy,II.5.1,13.3644,TJ,CO2,74100.0,kg/TJ,990302.04,Gas Oil combustion consumption by agriculture machines,AR-Y,SESCO,annual,kg,aafa8fd2-0ad4-310e-9d10-27443fff0ad9 +2014,Jujuy,II.5.1,13.3644,TJ,CH4,3.9,kg/TJ,52.121159999999996,Gas Oil combustion consumption by agriculture machines,AR-Y,SESCO,annual,kg,56dbca05-65e9-309a-9629-9b9f7c9cf183 +2014,Jujuy,II.5.1,13.3644,TJ,N2O,3.9,kg/TJ,52.121159999999996,Gas Oil combustion consumption by agriculture machines,AR-Y,SESCO,annual,kg,56dbca05-65e9-309a-9629-9b9f7c9cf183 +2014,La Pampa,II.5.1,74.98512,TJ,CO2,74100.0,kg/TJ,5556397.392,Gas Oil combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,2e8dea21-6fa9-3043-85d2-7c13ecc90f55 +2014,La Pampa,II.5.1,74.98512,TJ,CH4,3.9,kg/TJ,292.441968,Gas Oil combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,dc49de2b-e92c-3064-aaf3-01bd6e597f39 +2014,La Pampa,II.5.1,74.98512,TJ,N2O,3.9,kg/TJ,292.441968,Gas Oil combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,dc49de2b-e92c-3064-aaf3-01bd6e597f39 +2014,Misiones,II.5.1,14.88144,TJ,CO2,74100.0,kg/TJ,1102714.704,Gas Oil combustion consumption by agriculture machines,AR-N,SESCO,annual,kg,55a08202-2816-3ade-b8a1-43fafca45a55 +2014,Misiones,II.5.1,14.88144,TJ,CH4,3.9,kg/TJ,58.037616,Gas Oil combustion consumption by agriculture machines,AR-N,SESCO,annual,kg,091e6eef-1647-3187-a368-e4c2a2f795b2 +2014,Misiones,II.5.1,14.88144,TJ,N2O,3.9,kg/TJ,58.037616,Gas Oil combustion consumption by agriculture machines,AR-N,SESCO,annual,kg,091e6eef-1647-3187-a368-e4c2a2f795b2 +2014,Salta,II.5.1,109.94928,TJ,CO2,74100.0,kg/TJ,8147241.648,Gas Oil combustion consumption by agriculture machines,AR-A,SESCO,annual,kg,3719960b-2d0d-3891-b140-16a6e67b97cf +2014,Salta,II.5.1,109.94928,TJ,CH4,3.9,kg/TJ,428.802192,Gas Oil combustion consumption by agriculture machines,AR-A,SESCO,annual,kg,b5c2291c-90a7-3959-87be-084f764957b1 +2014,Salta,II.5.1,109.94928,TJ,N2O,3.9,kg/TJ,428.802192,Gas Oil combustion consumption by agriculture machines,AR-A,SESCO,annual,kg,b5c2291c-90a7-3959-87be-084f764957b1 +2014,San Luis,II.5.1,17.91552,TJ,CO2,74100.0,kg/TJ,1327540.0320000001,Gas Oil combustion consumption by agriculture machines,AR-D,SESCO,annual,kg,1a64da6f-b5b7-3b61-8698-79f7417a6c39 +2014,San Luis,II.5.1,17.91552,TJ,CH4,3.9,kg/TJ,69.87052800000001,Gas Oil combustion consumption by agriculture machines,AR-D,SESCO,annual,kg,7e3fb144-3843-327e-ba7d-091e4456c168 +2014,San Luis,II.5.1,17.91552,TJ,N2O,3.9,kg/TJ,69.87052800000001,Gas Oil combustion consumption by agriculture machines,AR-D,SESCO,annual,kg,7e3fb144-3843-327e-ba7d-091e4456c168 +2014,Santa Fe,II.5.1,102.25572,TJ,CO2,74100.0,kg/TJ,7577148.852,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,55fb29c4-05f1-32ae-8811-be87d9cc6d86 +2014,Santa Fe,II.5.1,102.25572,TJ,CH4,3.9,kg/TJ,398.797308,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,7d8668f6-0781-3eb1-aae9-6ffbe2081225 +2014,Santa Fe,II.5.1,102.25572,TJ,N2O,3.9,kg/TJ,398.797308,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,7d8668f6-0781-3eb1-aae9-6ffbe2081225 +2014,Santiago del Estero,II.5.1,91.49195999999999,TJ,CO2,74100.0,kg/TJ,6779554.236,Gas Oil combustion consumption by agriculture machines,AR-G,SESCO,annual,kg,8ea212b2-c44d-340c-bcef-3470f971126e +2014,Santiago del Estero,II.5.1,91.49195999999999,TJ,CH4,3.9,kg/TJ,356.81864399999995,Gas Oil combustion consumption by agriculture machines,AR-G,SESCO,annual,kg,cdbd44d5-9869-3cdd-8cd5-242232f30caa +2014,Santiago del Estero,II.5.1,91.49195999999999,TJ,N2O,3.9,kg/TJ,356.81864399999995,Gas Oil combustion consumption by agriculture machines,AR-G,SESCO,annual,kg,cdbd44d5-9869-3cdd-8cd5-242232f30caa +2014,Tucuman,II.5.1,59.27292,TJ,CO2,74100.0,kg/TJ,4392123.3719999995,Gas Oil combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,4383c80b-5b50-3b21-83bf-14aea5f2af16 +2014,Tucuman,II.5.1,59.27292,TJ,CH4,3.9,kg/TJ,231.164388,Gas Oil combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,0949cf96-145e-30f2-affe-717658248e4a +2014,Tucuman,II.5.1,59.27292,TJ,N2O,3.9,kg/TJ,231.164388,Gas Oil combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,0949cf96-145e-30f2-affe-717658248e4a +2014,Buenos Aires,II.5.1,8.366497999999998,TJ,CO2,71500.0,kg/TJ,598204.6069999998,Jet Kerosene combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,e67786ed-0dcd-39ba-996b-d88457429d28 +2014,Buenos Aires,II.5.1,8.366497999999998,TJ,CH4,0.5,kg/TJ,4.183248999999999,Jet Kerosene combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,b74d7a07-b868-3901-a05c-ae57669f7817 +2014,Buenos Aires,II.5.1,8.366497999999998,TJ,N2O,2.0,kg/TJ,16.732995999999996,Jet Kerosene combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,ee43cfa7-6051-3c0c-ba36-f01eee452206 +2014,Córdoba,II.5.1,0.754872,TJ,CO2,71500.0,kg/TJ,53973.348,Jet Kerosene combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,d3f53f16-9707-367a-bbe3-38fff60d625b +2014,Córdoba,II.5.1,0.754872,TJ,CH4,0.5,kg/TJ,0.377436,Jet Kerosene combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,d2e56d2b-6299-356a-9e1d-ce06dacf83e8 +2014,Córdoba,II.5.1,0.754872,TJ,N2O,2.0,kg/TJ,1.509744,Jet Kerosene combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,7c19da1e-9deb-3c92-ad52-e4adfe72acb0 +2014,Entre Rios,II.5.1,0.157265,TJ,CO2,71500.0,kg/TJ,11244.447499999998,Jet Kerosene combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,fde7ca6d-a175-3877-9429-c9191f909738 +2014,Entre Rios,II.5.1,0.157265,TJ,CH4,0.5,kg/TJ,0.0786325,Jet Kerosene combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,0a2b02da-e900-3b4a-9805-c75316635314 +2014,Entre Rios,II.5.1,0.157265,TJ,N2O,2.0,kg/TJ,0.31453,Jet Kerosene combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,fc0df5e4-0fc4-3c4f-8a62-418b1dffb0b0 +2014,La Pampa,II.5.1,1.25812,TJ,CO2,71500.0,kg/TJ,89955.57999999999,Jet Kerosene combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,118346bd-92ac-39d8-b0f5-df77c308780e +2014,La Pampa,II.5.1,1.25812,TJ,CH4,0.5,kg/TJ,0.62906,Jet Kerosene combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,9d293ba2-ebba-3922-9dc9-35878266eeb5 +2014,La Pampa,II.5.1,1.25812,TJ,N2O,2.0,kg/TJ,2.51624,Jet Kerosene combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,15e93144-a210-360d-9b34-9ab7dab7fccf +2014,Santa Fe,II.5.1,2.9251289999999996,TJ,CO2,71500.0,kg/TJ,209146.72349999996,Jet Kerosene combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,688d079c-3dc5-39e4-83bf-244c26ba1e73 +2014,Santa Fe,II.5.1,2.9251289999999996,TJ,CH4,0.5,kg/TJ,1.4625644999999998,Jet Kerosene combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,c864b1bf-3098-32c4-b5dc-282bfa62799d +2014,Santa Fe,II.5.1,2.9251289999999996,TJ,N2O,2.0,kg/TJ,5.850257999999999,Jet Kerosene combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,27b2e318-1b91-3dbb-a96c-5f6c321a74b6 +2014,Buenos Aires,II.5.1,4.04327,TJ,CO2,73300.0,kg/TJ,296371.691,Naphtha combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,bec8aa42-391f-3cce-a492-792d04650f2c +2014,Buenos Aires,II.5.1,4.04327,TJ,CH4,0.5,kg/TJ,2.021635,Naphtha combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,f065f78d-5417-3714-9223-c1b23788b23e +2014,Buenos Aires,II.5.1,4.04327,TJ,N2O,2.0,kg/TJ,8.08654,Naphtha combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,d2fbe6ad-2a40-308f-b5b4-8595053ced55 +2014,Chubut,II.5.1,0.513975,TJ,CO2,73300.0,kg/TJ,37674.3675,Naphtha combustion consumption by agriculture machines,AR-U,SESCO,annual,kg,6717f7bb-ea97-36ec-80ca-c1328c959cdb +2014,Chubut,II.5.1,0.513975,TJ,CH4,0.5,kg/TJ,0.2569875,Naphtha combustion consumption by agriculture machines,AR-U,SESCO,annual,kg,7c9bf599-8426-3601-a239-90cd39692149 +2014,Chubut,II.5.1,0.513975,TJ,N2O,2.0,kg/TJ,1.02795,Naphtha combustion consumption by agriculture machines,AR-U,SESCO,annual,kg,9d023328-e666-3685-9c5f-552d972a5bae +2014,Entre Rios,II.5.1,1.541925,TJ,CO2,73300.0,kg/TJ,113023.1025,Naphtha combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,9c4e9402-795c-38b4-b887-4d3e166a2e57 +2014,Entre Rios,II.5.1,1.541925,TJ,CH4,0.5,kg/TJ,0.7709625,Naphtha combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,bdeae15e-b64b-3671-bc74-fce4270066bc +2014,Entre Rios,II.5.1,1.541925,TJ,N2O,2.0,kg/TJ,3.08385,Naphtha combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,190d81c7-f04a-37bc-b26d-4e041e564f85 +2014,Salta,II.5.1,0.171325,TJ,CO2,73300.0,kg/TJ,12558.1225,Naphtha combustion consumption by agriculture machines,AR-A,SESCO,annual,kg,8ffbf597-2070-32a5-b73d-210be2684861 +2014,Salta,II.5.1,0.171325,TJ,CH4,0.5,kg/TJ,0.0856625,Naphtha combustion consumption by agriculture machines,AR-A,SESCO,annual,kg,4b175412-f72f-3db9-bff0-c760a3f206bd +2014,Salta,II.5.1,0.171325,TJ,N2O,2.0,kg/TJ,0.34265,Naphtha combustion consumption by agriculture machines,AR-A,SESCO,annual,kg,22be0c14-04c6-3480-a50e-ecb0ea4d2286 +2014,Santa Fe,II.5.1,30.941295,TJ,CO2,73300.0,kg/TJ,2267996.9235,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,2a232ba5-fe12-3a32-a6d2-f208935882f1 +2014,Santa Fe,II.5.1,30.941295,TJ,CH4,0.5,kg/TJ,15.4706475,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,44ee0ffe-d48a-318c-95db-f1e1692c396e +2014,Santa Fe,II.5.1,30.941295,TJ,N2O,2.0,kg/TJ,61.88259,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,662a2edc-ab0c-31d2-a383-cf87d4a7abed +2014,Buenos Aires,II.5.1,0.6853,TJ,CO2,73300.0,kg/TJ,50232.49,Naphtha combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,58df6756-567f-367c-85d9-adf64060562d +2014,Buenos Aires,II.5.1,0.6853,TJ,CH4,0.5,kg/TJ,0.34265,Naphtha combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,52c1e932-ac9b-3c09-a179-c4f359c6896d +2014,Buenos Aires,II.5.1,0.6853,TJ,N2O,2.0,kg/TJ,1.3706,Naphtha combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,100993a5-8fc8-3ca5-9824-bdca45209b49 +2014,Santa Fe,II.5.1,0.9594199999999999,TJ,CO2,73300.0,kg/TJ,70325.48599999999,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,d1e6a28f-c061-3428-9815-e456889128a3 +2014,Santa Fe,II.5.1,0.9594199999999999,TJ,CH4,0.5,kg/TJ,0.47970999999999997,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,281ffea2-b3ec-3ef0-8dcc-ed1cd3c2d055 +2014,Santa Fe,II.5.1,0.9594199999999999,TJ,N2O,2.0,kg/TJ,1.9188399999999999,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,efe21bb2-95c7-3848-b6f1-c726a7061fb0 +2014,Buenos Aires,II.1.1,49.261599999999994,TJ,CO2,69300.0,kg/TJ,3413828.8799999994,Motor Gasoline combustion consumption by freight transport,AR-B,SESCO,annual,kg,41d82b5a-bbdc-3e3e-84e2-7168f6906fa8 +2014,Buenos Aires,II.1.1,49.261599999999994,TJ,CH4,33.0,kg/TJ,1625.6327999999999,Motor Gasoline combustion consumption by freight transport,AR-B,SESCO,annual,kg,37fd07ea-bbca-39e2-9a51-4b8893b01231 +2014,Buenos Aires,II.1.1,49.261599999999994,TJ,N2O,3.2,kg/TJ,157.63711999999998,Motor Gasoline combustion consumption by freight transport,AR-B,SESCO,annual,kg,e11f0e74-a829-3dd4-8996-fb1f5e95fe07 +2014,Capital Federal,II.1.1,49.7046,TJ,CO2,69300.0,kg/TJ,3444528.78,Motor Gasoline combustion consumption by freight transport,AR-C,SESCO,annual,kg,55d446b2-c7a4-357b-bd2a-5f0294fcc8a4 +2014,Capital Federal,II.1.1,49.7046,TJ,CH4,33.0,kg/TJ,1640.2518,Motor Gasoline combustion consumption by freight transport,AR-C,SESCO,annual,kg,f6773e0a-68ec-3277-bee7-fe976d216fd3 +2014,Capital Federal,II.1.1,49.7046,TJ,N2O,3.2,kg/TJ,159.05472,Motor Gasoline combustion consumption by freight transport,AR-C,SESCO,annual,kg,a83dcb3a-3296-34e9-b072-7b3e862976de +2014,Buenos Aires,II.1.1,6974.049599999999,TJ,CO2,74100.0,kg/TJ,516777075.35999995,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,daa1d5e8-c0a1-39fd-9c4d-d21691cc65fe +2014,Buenos Aires,II.1.1,6974.049599999999,TJ,CH4,3.9,kg/TJ,27198.793439999998,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,98ab14fa-3e83-32f8-bc88-957bbfeb789f +2014,Buenos Aires,II.1.1,6974.049599999999,TJ,N2O,3.9,kg/TJ,27198.793439999998,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,98ab14fa-3e83-32f8-bc88-957bbfeb789f +2014,Capital Federal,II.1.1,3617.99592,TJ,CO2,74100.0,kg/TJ,268093497.672,Gas Oil combustion consumption by freight transport,AR-C,SESCO,annual,kg,72839089-0bf4-303d-8cdc-f868ef2fe343 +2014,Capital Federal,II.1.1,3617.99592,TJ,CH4,3.9,kg/TJ,14110.184087999998,Gas Oil combustion consumption by freight transport,AR-C,SESCO,annual,kg,d07e45d3-e7f2-3b41-81b9-10d14ac31b0b +2014,Capital Federal,II.1.1,3617.99592,TJ,N2O,3.9,kg/TJ,14110.184087999998,Gas Oil combustion consumption by freight transport,AR-C,SESCO,annual,kg,d07e45d3-e7f2-3b41-81b9-10d14ac31b0b +2014,Catamarca,II.1.1,21.383039999999998,TJ,CO2,74100.0,kg/TJ,1584483.2639999997,Gas Oil combustion consumption by freight transport,AR-K,SESCO,annual,kg,2d245386-1dc0-39f4-875b-bf6c87edb8ed +2014,Catamarca,II.1.1,21.383039999999998,TJ,CH4,3.9,kg/TJ,83.39385599999999,Gas Oil combustion consumption by freight transport,AR-K,SESCO,annual,kg,668ac6c6-561e-37b9-9018-8c934670f84a +2014,Catamarca,II.1.1,21.383039999999998,TJ,N2O,3.9,kg/TJ,83.39385599999999,Gas Oil combustion consumption by freight transport,AR-K,SESCO,annual,kg,668ac6c6-561e-37b9-9018-8c934670f84a +2014,Chaco,II.1.1,189.30491999999998,TJ,CO2,74100.0,kg/TJ,14027494.571999999,Gas Oil combustion consumption by freight transport,AR-H,SESCO,annual,kg,d894d298-ac26-3f65-9eb0-2da67e2e1fb2 +2014,Chaco,II.1.1,189.30491999999998,TJ,CH4,3.9,kg/TJ,738.289188,Gas Oil combustion consumption by freight transport,AR-H,SESCO,annual,kg,8a09a45a-e3e5-3e7c-a29b-68c6703c2e50 +2014,Chaco,II.1.1,189.30491999999998,TJ,N2O,3.9,kg/TJ,738.289188,Gas Oil combustion consumption by freight transport,AR-H,SESCO,annual,kg,8a09a45a-e3e5-3e7c-a29b-68c6703c2e50 +2014,Chubut,II.1.1,134.04131999999998,TJ,CO2,74100.0,kg/TJ,9932461.811999999,Gas Oil combustion consumption by freight transport,AR-U,SESCO,annual,kg,7458ee4f-4f4b-3969-957c-c7b4ce562887 +2014,Chubut,II.1.1,134.04131999999998,TJ,CH4,3.9,kg/TJ,522.7611479999999,Gas Oil combustion consumption by freight transport,AR-U,SESCO,annual,kg,7178075c-8c60-3d3d-94e3-e02c820156ca +2014,Chubut,II.1.1,134.04131999999998,TJ,N2O,3.9,kg/TJ,522.7611479999999,Gas Oil combustion consumption by freight transport,AR-U,SESCO,annual,kg,7178075c-8c60-3d3d-94e3-e02c820156ca +2014,Corrientes,II.1.1,296.32848,TJ,CO2,74100.0,kg/TJ,21957940.368,Gas Oil combustion consumption by freight transport,AR-W,SESCO,annual,kg,36bdfd8d-307a-3780-8b2f-0fabdc788d45 +2014,Corrientes,II.1.1,296.32848,TJ,CH4,3.9,kg/TJ,1155.681072,Gas Oil combustion consumption by freight transport,AR-W,SESCO,annual,kg,15b1e152-e810-3516-8c77-2678acdb8898 +2014,Corrientes,II.1.1,296.32848,TJ,N2O,3.9,kg/TJ,1155.681072,Gas Oil combustion consumption by freight transport,AR-W,SESCO,annual,kg,15b1e152-e810-3516-8c77-2678acdb8898 +2014,Córdoba,II.1.1,1829.0084399999998,TJ,CO2,74100.0,kg/TJ,135529525.40399998,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,ff5bf35c-a78d-3a3c-a181-ce9edf07903e +2014,Córdoba,II.1.1,1829.0084399999998,TJ,CH4,3.9,kg/TJ,7133.132916,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,002834e3-eea1-3143-a46d-17cbe18dfd98 +2014,Córdoba,II.1.1,1829.0084399999998,TJ,N2O,3.9,kg/TJ,7133.132916,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,002834e3-eea1-3143-a46d-17cbe18dfd98 +2014,Entre Rios,II.1.1,264.79571999999996,TJ,CO2,74100.0,kg/TJ,19621362.851999998,Gas Oil combustion consumption by freight transport,AR-E,SESCO,annual,kg,16e8f3e9-41ae-36f3-99a7-b9dbf241c1ac +2014,Entre Rios,II.1.1,264.79571999999996,TJ,CH4,3.9,kg/TJ,1032.7033079999999,Gas Oil combustion consumption by freight transport,AR-E,SESCO,annual,kg,62dbb167-6fbe-3bc4-b98e-70abd2d5325e +2014,Entre Rios,II.1.1,264.79571999999996,TJ,N2O,3.9,kg/TJ,1032.7033079999999,Gas Oil combustion consumption by freight transport,AR-E,SESCO,annual,kg,62dbb167-6fbe-3bc4-b98e-70abd2d5325e +2014,Formosa,II.1.1,0.65016,TJ,CO2,74100.0,kg/TJ,48176.856,Gas Oil combustion consumption by freight transport,AR-P,SESCO,annual,kg,7ecc4aa4-7e9a-360d-be4c-8ddef3b054f0 +2014,Formosa,II.1.1,0.65016,TJ,CH4,3.9,kg/TJ,2.535624,Gas Oil combustion consumption by freight transport,AR-P,SESCO,annual,kg,417a0213-c971-3029-9133-d7fe0ede65ba +2014,Formosa,II.1.1,0.65016,TJ,N2O,3.9,kg/TJ,2.535624,Gas Oil combustion consumption by freight transport,AR-P,SESCO,annual,kg,417a0213-c971-3029-9133-d7fe0ede65ba +2014,Jujuy,II.1.1,44.39148,TJ,CO2,74100.0,kg/TJ,3289408.668,Gas Oil combustion consumption by freight transport,AR-Y,SESCO,annual,kg,2110f949-73b6-3d1d-b4fd-48a539ad437e +2014,Jujuy,II.1.1,44.39148,TJ,CH4,3.9,kg/TJ,173.126772,Gas Oil combustion consumption by freight transport,AR-Y,SESCO,annual,kg,7a7e82e5-5696-3eb6-b3f9-e777245721d6 +2014,Jujuy,II.1.1,44.39148,TJ,N2O,3.9,kg/TJ,173.126772,Gas Oil combustion consumption by freight transport,AR-Y,SESCO,annual,kg,7a7e82e5-5696-3eb6-b3f9-e777245721d6 +2014,La Pampa,II.1.1,36.228359999999995,TJ,CO2,74100.0,kg/TJ,2684521.476,Gas Oil combustion consumption by freight transport,AR-L,SESCO,annual,kg,6159a324-1036-3a00-aacf-b1d777e12961 +2014,La Pampa,II.1.1,36.228359999999995,TJ,CH4,3.9,kg/TJ,141.29060399999997,Gas Oil combustion consumption by freight transport,AR-L,SESCO,annual,kg,450fe3fa-ccc9-3f9a-bd41-33ed9b025251 +2014,La Pampa,II.1.1,36.228359999999995,TJ,N2O,3.9,kg/TJ,141.29060399999997,Gas Oil combustion consumption by freight transport,AR-L,SESCO,annual,kg,450fe3fa-ccc9-3f9a-bd41-33ed9b025251 +2014,La Rioja,II.1.1,0.7223999999999999,TJ,CO2,74100.0,kg/TJ,53529.84,Gas Oil combustion consumption by freight transport,AR-F,SESCO,annual,kg,0f32c794-bf5d-3ed9-97a7-822dbd65b2d8 +2014,La Rioja,II.1.1,0.7223999999999999,TJ,CH4,3.9,kg/TJ,2.81736,Gas Oil combustion consumption by freight transport,AR-F,SESCO,annual,kg,d083e39e-ba7a-33a3-a441-47765e7ef6d1 +2014,La Rioja,II.1.1,0.7223999999999999,TJ,N2O,3.9,kg/TJ,2.81736,Gas Oil combustion consumption by freight transport,AR-F,SESCO,annual,kg,d083e39e-ba7a-33a3-a441-47765e7ef6d1 +2014,Mendoza,II.1.1,1569.1972799999999,TJ,CO2,74100.0,kg/TJ,116277518.44799998,Gas Oil combustion consumption by freight transport,AR-M,SESCO,annual,kg,40e3608a-2a5b-389b-b152-cdd4fdee4d1c +2014,Mendoza,II.1.1,1569.1972799999999,TJ,CH4,3.9,kg/TJ,6119.869392,Gas Oil combustion consumption by freight transport,AR-M,SESCO,annual,kg,cdb97d3e-7ded-359b-b195-aecc50591576 +2014,Mendoza,II.1.1,1569.1972799999999,TJ,N2O,3.9,kg/TJ,6119.869392,Gas Oil combustion consumption by freight transport,AR-M,SESCO,annual,kg,cdb97d3e-7ded-359b-b195-aecc50591576 +2014,Misiones,II.1.1,426.43271999999996,TJ,CO2,74100.0,kg/TJ,31598664.551999997,Gas Oil combustion consumption by freight transport,AR-N,SESCO,annual,kg,af56815c-2a53-3970-ae34-7c22571f7471 +2014,Misiones,II.1.1,426.43271999999996,TJ,CH4,3.9,kg/TJ,1663.0876079999998,Gas Oil combustion consumption by freight transport,AR-N,SESCO,annual,kg,ef469d97-dcb6-3714-af8e-b6596bd246ea +2014,Misiones,II.1.1,426.43271999999996,TJ,N2O,3.9,kg/TJ,1663.0876079999998,Gas Oil combustion consumption by freight transport,AR-N,SESCO,annual,kg,ef469d97-dcb6-3714-af8e-b6596bd246ea +2014,Neuquén,II.1.1,634.84512,TJ,CO2,74100.0,kg/TJ,47042023.392,Gas Oil combustion consumption by freight transport,AR-Q,SESCO,annual,kg,40cc6108-d4b8-31a3-9dca-c6c195846d17 +2014,Neuquén,II.1.1,634.84512,TJ,CH4,3.9,kg/TJ,2475.895968,Gas Oil combustion consumption by freight transport,AR-Q,SESCO,annual,kg,eae12174-a6c4-31fe-9a94-a0bd66837fff +2014,Neuquén,II.1.1,634.84512,TJ,N2O,3.9,kg/TJ,2475.895968,Gas Oil combustion consumption by freight transport,AR-Q,SESCO,annual,kg,eae12174-a6c4-31fe-9a94-a0bd66837fff +2014,Rio Negro,II.1.1,132.12696,TJ,CO2,74100.0,kg/TJ,9790607.736,Gas Oil combustion consumption by freight transport,AR-R,SESCO,annual,kg,5c493f2a-c44a-3fce-abfe-9cb285d5780d +2014,Rio Negro,II.1.1,132.12696,TJ,CH4,3.9,kg/TJ,515.2951439999999,Gas Oil combustion consumption by freight transport,AR-R,SESCO,annual,kg,b588f9a3-bc64-317f-a04c-c693b64338e1 +2014,Rio Negro,II.1.1,132.12696,TJ,N2O,3.9,kg/TJ,515.2951439999999,Gas Oil combustion consumption by freight transport,AR-R,SESCO,annual,kg,b588f9a3-bc64-317f-a04c-c693b64338e1 +2014,Salta,II.1.1,188.40192,TJ,CO2,74100.0,kg/TJ,13960582.272,Gas Oil combustion consumption by freight transport,AR-A,SESCO,annual,kg,7ee08b65-b9d9-3698-b760-a98e03423de0 +2014,Salta,II.1.1,188.40192,TJ,CH4,3.9,kg/TJ,734.767488,Gas Oil combustion consumption by freight transport,AR-A,SESCO,annual,kg,ab735e59-ce00-3121-b07f-198768d2e342 +2014,Salta,II.1.1,188.40192,TJ,N2O,3.9,kg/TJ,734.767488,Gas Oil combustion consumption by freight transport,AR-A,SESCO,annual,kg,ab735e59-ce00-3121-b07f-198768d2e342 +2014,San Juan,II.1.1,110.12988,TJ,CO2,74100.0,kg/TJ,8160624.108,Gas Oil combustion consumption by freight transport,AR-J,SESCO,annual,kg,1eae2ef7-e252-3289-a4f7-21767df77288 +2014,San Juan,II.1.1,110.12988,TJ,CH4,3.9,kg/TJ,429.506532,Gas Oil combustion consumption by freight transport,AR-J,SESCO,annual,kg,95adba3b-5342-369f-ac3e-7699948ab2aa +2014,San Juan,II.1.1,110.12988,TJ,N2O,3.9,kg/TJ,429.506532,Gas Oil combustion consumption by freight transport,AR-J,SESCO,annual,kg,95adba3b-5342-369f-ac3e-7699948ab2aa +2014,San Luis,II.1.1,159.54204,TJ,CO2,74100.0,kg/TJ,11822065.163999999,Gas Oil combustion consumption by freight transport,AR-D,SESCO,annual,kg,ad78a3cd-d3ca-3131-addc-05671be7b05f +2014,San Luis,II.1.1,159.54204,TJ,CH4,3.9,kg/TJ,622.2139559999999,Gas Oil combustion consumption by freight transport,AR-D,SESCO,annual,kg,138c5d6b-4970-399e-903f-cc3c3ecf94b6 +2014,San Luis,II.1.1,159.54204,TJ,N2O,3.9,kg/TJ,622.2139559999999,Gas Oil combustion consumption by freight transport,AR-D,SESCO,annual,kg,138c5d6b-4970-399e-903f-cc3c3ecf94b6 +2014,Santa Cruz,II.1.1,57.71976,TJ,CO2,74100.0,kg/TJ,4277034.216,Gas Oil combustion consumption by freight transport,AR-Z,SESCO,annual,kg,4e32fc87-dee6-34c9-9cd2-c4c772693a82 +2014,Santa Cruz,II.1.1,57.71976,TJ,CH4,3.9,kg/TJ,225.107064,Gas Oil combustion consumption by freight transport,AR-Z,SESCO,annual,kg,5187079e-98cd-3703-ad08-db7d0590dcaa +2014,Santa Cruz,II.1.1,57.71976,TJ,N2O,3.9,kg/TJ,225.107064,Gas Oil combustion consumption by freight transport,AR-Z,SESCO,annual,kg,5187079e-98cd-3703-ad08-db7d0590dcaa +2014,Santa Fe,II.1.1,1731.80952,TJ,CO2,74100.0,kg/TJ,128327085.432,Gas Oil combustion consumption by freight transport,AR-S,SESCO,annual,kg,8b8e4031-d19e-323f-bb63-5595edf6a6c5 +2014,Santa Fe,II.1.1,1731.80952,TJ,CH4,3.9,kg/TJ,6754.057128,Gas Oil combustion consumption by freight transport,AR-S,SESCO,annual,kg,e233787e-d914-3dff-9f4f-ae7aa3cb21c6 +2014,Santa Fe,II.1.1,1731.80952,TJ,N2O,3.9,kg/TJ,6754.057128,Gas Oil combustion consumption by freight transport,AR-S,SESCO,annual,kg,e233787e-d914-3dff-9f4f-ae7aa3cb21c6 +2014,Santiago del Estero,II.1.1,75.4908,TJ,CO2,74100.0,kg/TJ,5593868.279999999,Gas Oil combustion consumption by freight transport,AR-G,SESCO,annual,kg,5abb776a-ebe2-3d03-aeb0-5a3b300cda61 +2014,Santiago del Estero,II.1.1,75.4908,TJ,CH4,3.9,kg/TJ,294.41411999999997,Gas Oil combustion consumption by freight transport,AR-G,SESCO,annual,kg,0cc188dd-a8cb-3ffa-8f02-b0545b636e29 +2014,Santiago del Estero,II.1.1,75.4908,TJ,N2O,3.9,kg/TJ,294.41411999999997,Gas Oil combustion consumption by freight transport,AR-G,SESCO,annual,kg,0cc188dd-a8cb-3ffa-8f02-b0545b636e29 +2014,Tierra del Fuego,II.1.1,9.89688,TJ,CO2,74100.0,kg/TJ,733358.808,Gas Oil combustion consumption by freight transport,AR-V,SESCO,annual,kg,7b2de18b-7a13-35f8-a738-954d50eec356 +2014,Tierra del Fuego,II.1.1,9.89688,TJ,CH4,3.9,kg/TJ,38.597832,Gas Oil combustion consumption by freight transport,AR-V,SESCO,annual,kg,167c160a-4602-3e55-9185-6ae6f74a0cbd +2014,Tierra del Fuego,II.1.1,9.89688,TJ,N2O,3.9,kg/TJ,38.597832,Gas Oil combustion consumption by freight transport,AR-V,SESCO,annual,kg,167c160a-4602-3e55-9185-6ae6f74a0cbd +2014,Tucuman,II.1.1,291.74124,TJ,CO2,74100.0,kg/TJ,21618025.884,Gas Oil combustion consumption by freight transport,AR-T,SESCO,annual,kg,f66c311d-cfe9-37e3-b147-d092d8e4af54 +2014,Tucuman,II.1.1,291.74124,TJ,CH4,3.9,kg/TJ,1137.790836,Gas Oil combustion consumption by freight transport,AR-T,SESCO,annual,kg,09ef47bc-d26e-3de4-bb5e-1fc62ddf0070 +2014,Tucuman,II.1.1,291.74124,TJ,N2O,3.9,kg/TJ,1137.790836,Gas Oil combustion consumption by freight transport,AR-T,SESCO,annual,kg,09ef47bc-d26e-3de4-bb5e-1fc62ddf0070 +2014,Buenos Aires,II.1.1,348.48575999999997,TJ,CO2,74100.0,kg/TJ,25822794.816,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,6996fb2f-e105-3d1d-9c41-fbc27c4c245b +2014,Buenos Aires,II.1.1,348.48575999999997,TJ,CH4,3.9,kg/TJ,1359.0944639999998,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,1c3e39a6-6cb3-35ba-b219-109d6375e7ee +2014,Buenos Aires,II.1.1,348.48575999999997,TJ,N2O,3.9,kg/TJ,1359.0944639999998,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,1c3e39a6-6cb3-35ba-b219-109d6375e7ee +2014,Capital Federal,II.1.1,555.1644,TJ,CO2,74100.0,kg/TJ,41137682.04,Gas Oil combustion consumption by freight transport,AR-C,SESCO,annual,kg,963b47a9-b94d-3f95-9281-685340853120 +2014,Capital Federal,II.1.1,555.1644,TJ,CH4,3.9,kg/TJ,2165.14116,Gas Oil combustion consumption by freight transport,AR-C,SESCO,annual,kg,f4f61724-b1fc-33ca-bc92-4ed5dcded00f +2014,Capital Federal,II.1.1,555.1644,TJ,N2O,3.9,kg/TJ,2165.14116,Gas Oil combustion consumption by freight transport,AR-C,SESCO,annual,kg,f4f61724-b1fc-33ca-bc92-4ed5dcded00f +2014,Chaco,II.1.1,11.95572,TJ,CO2,74100.0,kg/TJ,885918.852,Gas Oil combustion consumption by freight transport,AR-H,SESCO,annual,kg,55d70975-75f3-3aff-92c1-44c6b8f84b77 +2014,Chaco,II.1.1,11.95572,TJ,CH4,3.9,kg/TJ,46.627308,Gas Oil combustion consumption by freight transport,AR-H,SESCO,annual,kg,750293e8-d08e-32c3-9953-1d75ee22015a +2014,Chaco,II.1.1,11.95572,TJ,N2O,3.9,kg/TJ,46.627308,Gas Oil combustion consumption by freight transport,AR-H,SESCO,annual,kg,750293e8-d08e-32c3-9953-1d75ee22015a +2014,Chubut,II.1.1,5.598599999999999,TJ,CO2,74100.0,kg/TJ,414856.25999999995,Gas Oil combustion consumption by freight transport,AR-U,SESCO,annual,kg,b9cd0191-f560-3cf5-8c54-01a7de3f8749 +2014,Chubut,II.1.1,5.598599999999999,TJ,CH4,3.9,kg/TJ,21.834539999999997,Gas Oil combustion consumption by freight transport,AR-U,SESCO,annual,kg,5e93c989-5776-37c9-834c-cdeceab3bc94 +2014,Chubut,II.1.1,5.598599999999999,TJ,N2O,3.9,kg/TJ,21.834539999999997,Gas Oil combustion consumption by freight transport,AR-U,SESCO,annual,kg,5e93c989-5776-37c9-834c-cdeceab3bc94 +2014,Corrientes,II.1.1,2.09496,TJ,CO2,74100.0,kg/TJ,155236.536,Gas Oil combustion consumption by freight transport,AR-W,SESCO,annual,kg,405c72df-70b9-3c1c-b0f4-1b87ab506056 +2014,Corrientes,II.1.1,2.09496,TJ,CH4,3.9,kg/TJ,8.170344,Gas Oil combustion consumption by freight transport,AR-W,SESCO,annual,kg,f55a4c18-584e-33fe-9655-beefeefad836 +2014,Corrientes,II.1.1,2.09496,TJ,N2O,3.9,kg/TJ,8.170344,Gas Oil combustion consumption by freight transport,AR-W,SESCO,annual,kg,f55a4c18-584e-33fe-9655-beefeefad836 +2014,Córdoba,II.1.1,10.691519999999999,TJ,CO2,74100.0,kg/TJ,792241.6319999999,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,50b9ab31-ab0e-3a96-a543-2be62a61e6b1 +2014,Córdoba,II.1.1,10.691519999999999,TJ,CH4,3.9,kg/TJ,41.69692799999999,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,f2c8a977-027d-3206-af99-7fff9da97ad2 +2014,Córdoba,II.1.1,10.691519999999999,TJ,N2O,3.9,kg/TJ,41.69692799999999,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,f2c8a977-027d-3206-af99-7fff9da97ad2 +2014,Entre Rios,II.1.1,13.3644,TJ,CO2,74100.0,kg/TJ,990302.04,Gas Oil combustion consumption by freight transport,AR-E,SESCO,annual,kg,07f3def1-59f3-3120-9c6a-e91f3dd8dc1c +2014,Entre Rios,II.1.1,13.3644,TJ,CH4,3.9,kg/TJ,52.121159999999996,Gas Oil combustion consumption by freight transport,AR-E,SESCO,annual,kg,616ab8ad-913c-373d-b12d-3c6ba66f5c20 +2014,Entre Rios,II.1.1,13.3644,TJ,N2O,3.9,kg/TJ,52.121159999999996,Gas Oil combustion consumption by freight transport,AR-E,SESCO,annual,kg,616ab8ad-913c-373d-b12d-3c6ba66f5c20 +2014,Jujuy,II.1.1,0.28896,TJ,CO2,74100.0,kg/TJ,21411.935999999998,Gas Oil combustion consumption by freight transport,AR-Y,SESCO,annual,kg,af3a1ef4-ef4e-3cd1-9367-655b29438884 +2014,Jujuy,II.1.1,0.28896,TJ,CH4,3.9,kg/TJ,1.126944,Gas Oil combustion consumption by freight transport,AR-Y,SESCO,annual,kg,6cb174f1-6558-3ef0-abfc-e5b1e4e229c6 +2014,Jujuy,II.1.1,0.28896,TJ,N2O,3.9,kg/TJ,1.126944,Gas Oil combustion consumption by freight transport,AR-Y,SESCO,annual,kg,6cb174f1-6558-3ef0-abfc-e5b1e4e229c6 +2014,La Pampa,II.1.1,0.21672,TJ,CO2,74100.0,kg/TJ,16058.952,Gas Oil combustion consumption by freight transport,AR-L,SESCO,annual,kg,7c49e1a9-b233-362c-b6e9-98ed67c4f775 +2014,La Pampa,II.1.1,0.21672,TJ,CH4,3.9,kg/TJ,0.845208,Gas Oil combustion consumption by freight transport,AR-L,SESCO,annual,kg,a25c2419-5257-34a0-bec8-a15894894c5b +2014,La Pampa,II.1.1,0.21672,TJ,N2O,3.9,kg/TJ,0.845208,Gas Oil combustion consumption by freight transport,AR-L,SESCO,annual,kg,a25c2419-5257-34a0-bec8-a15894894c5b +2014,La Rioja,II.1.1,1.87824,TJ,CO2,74100.0,kg/TJ,139177.584,Gas Oil combustion consumption by freight transport,AR-F,SESCO,annual,kg,dcda983a-3be1-39f0-9809-9fe6bb5bcd49 +2014,La Rioja,II.1.1,1.87824,TJ,CH4,3.9,kg/TJ,7.325136,Gas Oil combustion consumption by freight transport,AR-F,SESCO,annual,kg,753c3625-6f30-3a2f-9f81-35543347157d +2014,La Rioja,II.1.1,1.87824,TJ,N2O,3.9,kg/TJ,7.325136,Gas Oil combustion consumption by freight transport,AR-F,SESCO,annual,kg,753c3625-6f30-3a2f-9f81-35543347157d +2014,Mendoza,II.1.1,23.00844,TJ,CO2,74100.0,kg/TJ,1704925.404,Gas Oil combustion consumption by freight transport,AR-M,SESCO,annual,kg,2bf22b79-75b1-3d78-ae83-1b1d2f923a8b +2014,Mendoza,II.1.1,23.00844,TJ,CH4,3.9,kg/TJ,89.732916,Gas Oil combustion consumption by freight transport,AR-M,SESCO,annual,kg,1319ea1f-1720-3c01-a7f5-9e9908c0f6f6 +2014,Mendoza,II.1.1,23.00844,TJ,N2O,3.9,kg/TJ,89.732916,Gas Oil combustion consumption by freight transport,AR-M,SESCO,annual,kg,1319ea1f-1720-3c01-a7f5-9e9908c0f6f6 +2014,Misiones,II.1.1,6.284879999999999,TJ,CO2,74100.0,kg/TJ,465709.60799999995,Gas Oil combustion consumption by freight transport,AR-N,SESCO,annual,kg,d832b65c-2a41-3358-8e87-5cbbbfcb9897 +2014,Misiones,II.1.1,6.284879999999999,TJ,CH4,3.9,kg/TJ,24.511031999999997,Gas Oil combustion consumption by freight transport,AR-N,SESCO,annual,kg,49d11e69-6f0f-3039-a754-c784866c5219 +2014,Misiones,II.1.1,6.284879999999999,TJ,N2O,3.9,kg/TJ,24.511031999999997,Gas Oil combustion consumption by freight transport,AR-N,SESCO,annual,kg,49d11e69-6f0f-3039-a754-c784866c5219 +2014,Neuquén,II.1.1,10.07748,TJ,CO2,74100.0,kg/TJ,746741.2679999999,Gas Oil combustion consumption by freight transport,AR-Q,SESCO,annual,kg,313fa9df-0845-38b5-ba47-cf8ecca87193 +2014,Neuquén,II.1.1,10.07748,TJ,CH4,3.9,kg/TJ,39.302172,Gas Oil combustion consumption by freight transport,AR-Q,SESCO,annual,kg,02ce5a90-0258-35a6-8918-273f22064b0b +2014,Neuquén,II.1.1,10.07748,TJ,N2O,3.9,kg/TJ,39.302172,Gas Oil combustion consumption by freight transport,AR-Q,SESCO,annual,kg,02ce5a90-0258-35a6-8918-273f22064b0b +2014,Rio Negro,II.1.1,2.60064,TJ,CO2,74100.0,kg/TJ,192707.424,Gas Oil combustion consumption by freight transport,AR-R,SESCO,annual,kg,1252ac9f-174a-3c3c-b9e8-380d43a42f2c +2014,Rio Negro,II.1.1,2.60064,TJ,CH4,3.9,kg/TJ,10.142496,Gas Oil combustion consumption by freight transport,AR-R,SESCO,annual,kg,b02cfbd0-00af-341c-9698-efcd8fca5ceb +2014,Rio Negro,II.1.1,2.60064,TJ,N2O,3.9,kg/TJ,10.142496,Gas Oil combustion consumption by freight transport,AR-R,SESCO,annual,kg,b02cfbd0-00af-341c-9698-efcd8fca5ceb +2014,Salta,II.1.1,14.77308,TJ,CO2,74100.0,kg/TJ,1094685.2280000001,Gas Oil combustion consumption by freight transport,AR-A,SESCO,annual,kg,88de971b-955b-3e2e-9e3c-7566abe5ffcf +2014,Salta,II.1.1,14.77308,TJ,CH4,3.9,kg/TJ,57.615012,Gas Oil combustion consumption by freight transport,AR-A,SESCO,annual,kg,78a06ec3-d954-36e5-ba08-2ccba2a34c8e +2014,Salta,II.1.1,14.77308,TJ,N2O,3.9,kg/TJ,57.615012,Gas Oil combustion consumption by freight transport,AR-A,SESCO,annual,kg,78a06ec3-d954-36e5-ba08-2ccba2a34c8e +2014,San Juan,II.1.1,3.0702,TJ,CO2,74100.0,kg/TJ,227501.81999999998,Gas Oil combustion consumption by freight transport,AR-J,SESCO,annual,kg,9b7b353a-68e3-3c1d-b14a-d6ed4224e523 +2014,San Juan,II.1.1,3.0702,TJ,CH4,3.9,kg/TJ,11.97378,Gas Oil combustion consumption by freight transport,AR-J,SESCO,annual,kg,026ca2c4-03ca-30e4-a19a-2badf58d9a8d +2014,San Juan,II.1.1,3.0702,TJ,N2O,3.9,kg/TJ,11.97378,Gas Oil combustion consumption by freight transport,AR-J,SESCO,annual,kg,026ca2c4-03ca-30e4-a19a-2badf58d9a8d +2014,San Luis,II.1.1,1.19196,TJ,CO2,74100.0,kg/TJ,88324.23599999999,Gas Oil combustion consumption by freight transport,AR-D,SESCO,annual,kg,bb2c759c-61d0-39f3-b514-310c2328e749 +2014,San Luis,II.1.1,1.19196,TJ,CH4,3.9,kg/TJ,4.648643999999999,Gas Oil combustion consumption by freight transport,AR-D,SESCO,annual,kg,993547b1-b733-3d55-937b-c1ae654e5a5c +2014,San Luis,II.1.1,1.19196,TJ,N2O,3.9,kg/TJ,4.648643999999999,Gas Oil combustion consumption by freight transport,AR-D,SESCO,annual,kg,993547b1-b733-3d55-937b-c1ae654e5a5c +2014,Santa Cruz,II.1.1,1.01136,TJ,CO2,74100.0,kg/TJ,74941.776,Gas Oil combustion consumption by freight transport,AR-Z,SESCO,annual,kg,c9307b02-028a-3124-9818-0ec2062b503b +2014,Santa Cruz,II.1.1,1.01136,TJ,CH4,3.9,kg/TJ,3.9443040000000003,Gas Oil combustion consumption by freight transport,AR-Z,SESCO,annual,kg,3b42235f-98bd-3efa-a542-aeac86a64d8d +2014,Santa Cruz,II.1.1,1.01136,TJ,N2O,3.9,kg/TJ,3.9443040000000003,Gas Oil combustion consumption by freight transport,AR-Z,SESCO,annual,kg,3b42235f-98bd-3efa-a542-aeac86a64d8d +2014,Santa Fe,II.1.1,130.46544,TJ,CO2,74100.0,kg/TJ,9667489.104,Gas Oil combustion consumption by freight transport,AR-S,SESCO,annual,kg,5626e13d-1f12-3628-905d-c58044712bb0 +2014,Santa Fe,II.1.1,130.46544,TJ,CH4,3.9,kg/TJ,508.81521599999996,Gas Oil combustion consumption by freight transport,AR-S,SESCO,annual,kg,798996b1-5adf-3253-b5c3-12f67240d27b +2014,Santa Fe,II.1.1,130.46544,TJ,N2O,3.9,kg/TJ,508.81521599999996,Gas Oil combustion consumption by freight transport,AR-S,SESCO,annual,kg,798996b1-5adf-3253-b5c3-12f67240d27b +2014,Tierra del Fuego,II.1.1,0.03612,TJ,CO2,74100.0,kg/TJ,2676.4919999999997,Gas Oil combustion consumption by freight transport,AR-V,SESCO,annual,kg,767c2e44-8146-3aae-830c-229491064951 +2014,Tierra del Fuego,II.1.1,0.03612,TJ,CH4,3.9,kg/TJ,0.140868,Gas Oil combustion consumption by freight transport,AR-V,SESCO,annual,kg,a8914733-0b94-3d52-b39a-ea4e29ecfc53 +2014,Tierra del Fuego,II.1.1,0.03612,TJ,N2O,3.9,kg/TJ,0.140868,Gas Oil combustion consumption by freight transport,AR-V,SESCO,annual,kg,a8914733-0b94-3d52-b39a-ea4e29ecfc53 +2014,Tucuman,II.1.1,6.6822,TJ,CO2,74100.0,kg/TJ,495151.02,Gas Oil combustion consumption by freight transport,AR-T,SESCO,annual,kg,6942ddf3-f7fa-3aae-b246-ba1e26fe550c +2014,Tucuman,II.1.1,6.6822,TJ,CH4,3.9,kg/TJ,26.060579999999998,Gas Oil combustion consumption by freight transport,AR-T,SESCO,annual,kg,093850a4-8e32-336f-83e6-c839b4ea4dc4 +2014,Tucuman,II.1.1,6.6822,TJ,N2O,3.9,kg/TJ,26.060579999999998,Gas Oil combustion consumption by freight transport,AR-T,SESCO,annual,kg,093850a4-8e32-336f-83e6-c839b4ea4dc4 +2014,Buenos Aires,II.1.1,197.64051999999998,TJ,CO2,73300.0,kg/TJ,14487050.115999999,Naphtha combustion consumption by freight transport,AR-B,SESCO,annual,kg,43aa6d13-96cb-35dd-8ebc-caba24cbdde5 +2014,Buenos Aires,II.1.1,197.64051999999998,TJ,CH4,0.5,kg/TJ,98.82025999999999,Naphtha combustion consumption by freight transport,AR-B,SESCO,annual,kg,b4607e16-9898-3469-995f-956f7a81eff1 +2014,Buenos Aires,II.1.1,197.64051999999998,TJ,N2O,2.0,kg/TJ,395.28103999999996,Naphtha combustion consumption by freight transport,AR-B,SESCO,annual,kg,838b14b1-a18c-3dcb-a4ab-32bde7313dc2 +2014,Capital Federal,II.1.1,214.670225,TJ,CO2,73300.0,kg/TJ,15735327.4925,Naphtha combustion consumption by freight transport,AR-C,SESCO,annual,kg,e9bb0091-97ea-3cb5-865f-b94267412625 +2014,Capital Federal,II.1.1,214.670225,TJ,CH4,0.5,kg/TJ,107.3351125,Naphtha combustion consumption by freight transport,AR-C,SESCO,annual,kg,2ab22dad-14ff-3922-a4b9-53cdd2104695 +2014,Capital Federal,II.1.1,214.670225,TJ,N2O,2.0,kg/TJ,429.34045,Naphtha combustion consumption by freight transport,AR-C,SESCO,annual,kg,77a49e66-dfb3-390d-b083-cd0c8e93e85e +2014,Chaco,II.1.1,5.448135,TJ,CO2,73300.0,kg/TJ,399348.2955,Naphtha combustion consumption by freight transport,AR-H,SESCO,annual,kg,c79c2149-9a76-3ec2-8594-4a7b090200de +2014,Chaco,II.1.1,5.448135,TJ,CH4,0.5,kg/TJ,2.7240675,Naphtha combustion consumption by freight transport,AR-H,SESCO,annual,kg,2a3d27a6-74d8-368e-a476-19cc18f6824e +2014,Chaco,II.1.1,5.448135,TJ,N2O,2.0,kg/TJ,10.89627,Naphtha combustion consumption by freight transport,AR-H,SESCO,annual,kg,78c82792-7948-3b33-9d6d-598689684de4 +2014,Chubut,II.1.1,0.54824,TJ,CO2,73300.0,kg/TJ,40185.992,Naphtha combustion consumption by freight transport,AR-U,SESCO,annual,kg,879b078e-b574-3557-8d85-7153f80510d5 +2014,Chubut,II.1.1,0.54824,TJ,CH4,0.5,kg/TJ,0.27412,Naphtha combustion consumption by freight transport,AR-U,SESCO,annual,kg,893058bc-92e0-3b15-98b6-b2a3aff834c1 +2014,Chubut,II.1.1,0.54824,TJ,N2O,2.0,kg/TJ,1.09648,Naphtha combustion consumption by freight transport,AR-U,SESCO,annual,kg,2ce5c753-102a-3bc4-b42f-5f39979002af +2014,Corrientes,II.1.1,1.747515,TJ,CO2,73300.0,kg/TJ,128092.8495,Naphtha combustion consumption by freight transport,AR-W,SESCO,annual,kg,ed684241-675e-3c53-93c3-d40aca6c3338 +2014,Corrientes,II.1.1,1.747515,TJ,CH4,0.5,kg/TJ,0.8737575,Naphtha combustion consumption by freight transport,AR-W,SESCO,annual,kg,7621a322-c197-34fc-b874-9b806cef9fdb +2014,Corrientes,II.1.1,1.747515,TJ,N2O,2.0,kg/TJ,3.49503,Naphtha combustion consumption by freight transport,AR-W,SESCO,annual,kg,d2289153-a1da-3ddf-a56c-5bd74f5016d1 +2014,Córdoba,II.1.1,5.379605,TJ,CO2,73300.0,kg/TJ,394325.0465,Naphtha combustion consumption by freight transport,AR-X,SESCO,annual,kg,50a704f5-89ca-342c-84b6-f0106991aef7 +2014,Córdoba,II.1.1,5.379605,TJ,CH4,0.5,kg/TJ,2.6898025,Naphtha combustion consumption by freight transport,AR-X,SESCO,annual,kg,71fb8126-fd16-3872-abc2-c5d1c758af9b +2014,Córdoba,II.1.1,5.379605,TJ,N2O,2.0,kg/TJ,10.75921,Naphtha combustion consumption by freight transport,AR-X,SESCO,annual,kg,38b1ec77-e8b0-33f0-8648-ed426f377145 +2014,Entre Rios,II.1.1,1.9873699999999999,TJ,CO2,73300.0,kg/TJ,145674.221,Naphtha combustion consumption by freight transport,AR-E,SESCO,annual,kg,d9acb2d4-2552-3997-8498-5140cc927c2a +2014,Entre Rios,II.1.1,1.9873699999999999,TJ,CH4,0.5,kg/TJ,0.9936849999999999,Naphtha combustion consumption by freight transport,AR-E,SESCO,annual,kg,585458df-4d95-3567-9a5d-9b8dacd06bdd +2014,Entre Rios,II.1.1,1.9873699999999999,TJ,N2O,2.0,kg/TJ,3.9747399999999997,Naphtha combustion consumption by freight transport,AR-E,SESCO,annual,kg,408ab1b5-af61-373d-aadd-9acba62b0364 +2014,Mendoza,II.1.1,5.379605,TJ,CO2,73300.0,kg/TJ,394325.0465,Naphtha combustion consumption by freight transport,AR-M,SESCO,annual,kg,5c11d7ce-a9d1-3586-b47b-0b1d10370c18 +2014,Mendoza,II.1.1,5.379605,TJ,CH4,0.5,kg/TJ,2.6898025,Naphtha combustion consumption by freight transport,AR-M,SESCO,annual,kg,fa73283e-e325-3e8f-9d67-059b7db8aff5 +2014,Mendoza,II.1.1,5.379605,TJ,N2O,2.0,kg/TJ,10.75921,Naphtha combustion consumption by freight transport,AR-M,SESCO,annual,kg,818b82a6-d179-31ec-8b7e-2fcf7e4ae0dd +2014,Misiones,II.1.1,0.6167699999999999,TJ,CO2,73300.0,kg/TJ,45209.240999999995,Naphtha combustion consumption by freight transport,AR-N,SESCO,annual,kg,b09095d2-6f1e-3113-80a8-67e02f2fb784 +2014,Misiones,II.1.1,0.6167699999999999,TJ,CH4,0.5,kg/TJ,0.30838499999999996,Naphtha combustion consumption by freight transport,AR-N,SESCO,annual,kg,5a259877-9ddc-3841-940b-86fb4e0fc20f +2014,Misiones,II.1.1,0.6167699999999999,TJ,N2O,2.0,kg/TJ,1.2335399999999999,Naphtha combustion consumption by freight transport,AR-N,SESCO,annual,kg,d730cbcd-3399-3af4-a287-18cd1c306cbf +2014,Neuquén,II.1.1,0.27412,TJ,CO2,73300.0,kg/TJ,20092.996,Naphtha combustion consumption by freight transport,AR-Q,SESCO,annual,kg,ecf4ece1-9994-33ee-8981-28cd95f1b775 +2014,Neuquén,II.1.1,0.27412,TJ,CH4,0.5,kg/TJ,0.13706,Naphtha combustion consumption by freight transport,AR-Q,SESCO,annual,kg,76db1301-81cc-346a-96de-1724709861df +2014,Neuquén,II.1.1,0.27412,TJ,N2O,2.0,kg/TJ,0.54824,Naphtha combustion consumption by freight transport,AR-Q,SESCO,annual,kg,4332ef23-f1f0-3d0f-b706-50399df2757e +2014,Rio Negro,II.1.1,1.78178,TJ,CO2,73300.0,kg/TJ,130604.47399999999,Naphtha combustion consumption by freight transport,AR-R,SESCO,annual,kg,a4259f95-2ba2-3a31-8f05-bf09ee1cd669 +2014,Rio Negro,II.1.1,1.78178,TJ,CH4,0.5,kg/TJ,0.89089,Naphtha combustion consumption by freight transport,AR-R,SESCO,annual,kg,16b09300-27ac-35c9-ba83-ed2c47bc9051 +2014,Rio Negro,II.1.1,1.78178,TJ,N2O,2.0,kg/TJ,3.56356,Naphtha combustion consumption by freight transport,AR-R,SESCO,annual,kg,cff9930e-cba3-3443-860f-9b9ca475cdc2 +2014,Salta,II.1.1,11.136125,TJ,CO2,73300.0,kg/TJ,816277.9625,Naphtha combustion consumption by freight transport,AR-A,SESCO,annual,kg,6ba311fe-3fca-3ef9-8f1c-cd4c5107f2c8 +2014,Salta,II.1.1,11.136125,TJ,CH4,0.5,kg/TJ,5.5680625,Naphtha combustion consumption by freight transport,AR-A,SESCO,annual,kg,35fd57eb-619e-302e-864a-934e8edcc7de +2014,Salta,II.1.1,11.136125,TJ,N2O,2.0,kg/TJ,22.27225,Naphtha combustion consumption by freight transport,AR-A,SESCO,annual,kg,8050b948-1ba0-3d64-8547-d9d97dcfcb2e +2014,San Juan,II.1.1,0.06853,TJ,CO2,73300.0,kg/TJ,5023.249,Naphtha combustion consumption by freight transport,AR-J,SESCO,annual,kg,a3c75ae1-70e1-36fe-b057-6ba411a98c84 +2014,San Juan,II.1.1,0.06853,TJ,CH4,0.5,kg/TJ,0.034265,Naphtha combustion consumption by freight transport,AR-J,SESCO,annual,kg,c3940ceb-6a34-3b24-bf35-b3dad599776e +2014,San Juan,II.1.1,0.06853,TJ,N2O,2.0,kg/TJ,0.13706,Naphtha combustion consumption by freight transport,AR-J,SESCO,annual,kg,20690c97-d719-369e-b009-e8353ed0913d +2014,San Luis,II.1.1,0.27412,TJ,CO2,73300.0,kg/TJ,20092.996,Naphtha combustion consumption by freight transport,AR-D,SESCO,annual,kg,1b92a263-fab2-3761-a191-ff6e18f82523 +2014,San Luis,II.1.1,0.27412,TJ,CH4,0.5,kg/TJ,0.13706,Naphtha combustion consumption by freight transport,AR-D,SESCO,annual,kg,68813455-f436-3fae-ad9d-c58aca3a0673 +2014,San Luis,II.1.1,0.27412,TJ,N2O,2.0,kg/TJ,0.54824,Naphtha combustion consumption by freight transport,AR-D,SESCO,annual,kg,ee254adc-2079-3379-b7f2-da929c5f561a +2014,Santa Fe,II.1.1,17.26956,TJ,CO2,73300.0,kg/TJ,1265858.748,Naphtha combustion consumption by freight transport,AR-S,SESCO,annual,kg,580d5b04-0b37-32a4-b025-a41d4ece25ad +2014,Santa Fe,II.1.1,17.26956,TJ,CH4,0.5,kg/TJ,8.63478,Naphtha combustion consumption by freight transport,AR-S,SESCO,annual,kg,02ca967e-ac54-3884-9897-05c4adbddf4d +2014,Santa Fe,II.1.1,17.26956,TJ,N2O,2.0,kg/TJ,34.53912,Naphtha combustion consumption by freight transport,AR-S,SESCO,annual,kg,c7c5300c-2322-35d2-844e-aeea78d4c5b0 +2014,Santiago del Estero,II.1.1,0.034265,TJ,CO2,73300.0,kg/TJ,2511.6245,Naphtha combustion consumption by freight transport,AR-G,SESCO,annual,kg,d14513d4-d09c-3859-beae-1ea19a611e3d +2014,Santiago del Estero,II.1.1,0.034265,TJ,CH4,0.5,kg/TJ,0.0171325,Naphtha combustion consumption by freight transport,AR-G,SESCO,annual,kg,a6393a37-1179-37f4-bc8f-75e9744032b8 +2014,Santiago del Estero,II.1.1,0.034265,TJ,N2O,2.0,kg/TJ,0.06853,Naphtha combustion consumption by freight transport,AR-G,SESCO,annual,kg,04bf7b7d-e407-3121-b429-d4ca02c2ed60 +2014,Tucuman,II.1.1,1.3020699999999998,TJ,CO2,73300.0,kg/TJ,95441.73099999999,Naphtha combustion consumption by freight transport,AR-T,SESCO,annual,kg,5a3c58ab-3307-3d16-bf59-997a63408585 +2014,Tucuman,II.1.1,1.3020699999999998,TJ,CH4,0.5,kg/TJ,0.6510349999999999,Naphtha combustion consumption by freight transport,AR-T,SESCO,annual,kg,75fb155e-111b-3d0e-8a86-ead2875d3bfe +2014,Tucuman,II.1.1,1.3020699999999998,TJ,N2O,2.0,kg/TJ,2.6041399999999997,Naphtha combustion consumption by freight transport,AR-T,SESCO,annual,kg,f483c896-ad98-3bd3-a7ec-92fe758a63b7 +2014,Buenos Aires,II.1.1,198.737,TJ,CO2,73300.0,kg/TJ,14567422.1,Naphtha combustion consumption by freight transport,AR-B,SESCO,annual,kg,99bf583a-d808-3eb1-9a63-c107b01b771e +2014,Buenos Aires,II.1.1,198.737,TJ,CH4,0.5,kg/TJ,99.3685,Naphtha combustion consumption by freight transport,AR-B,SESCO,annual,kg,a7409b13-7ebc-31b0-8c03-5529d9ed2903 +2014,Buenos Aires,II.1.1,198.737,TJ,N2O,2.0,kg/TJ,397.474,Naphtha combustion consumption by freight transport,AR-B,SESCO,annual,kg,6a1f7925-a977-3569-95e2-4cfa23d24068 +2014,Capital Federal,II.1.1,194.55667,TJ,CO2,73300.0,kg/TJ,14261003.911,Naphtha combustion consumption by freight transport,AR-C,SESCO,annual,kg,c85f6418-a56e-3682-aeba-f8048f613e4b +2014,Capital Federal,II.1.1,194.55667,TJ,CH4,0.5,kg/TJ,97.278335,Naphtha combustion consumption by freight transport,AR-C,SESCO,annual,kg,a806f2b9-8c13-3a66-95c0-b7a6deefbd64 +2014,Capital Federal,II.1.1,194.55667,TJ,N2O,2.0,kg/TJ,389.11334,Naphtha combustion consumption by freight transport,AR-C,SESCO,annual,kg,a0194934-62a9-3780-a4a2-4a351d6f6f2b +2014,Chaco,II.1.1,6.44182,TJ,CO2,73300.0,kg/TJ,472185.406,Naphtha combustion consumption by freight transport,AR-H,SESCO,annual,kg,dc704ef7-05c1-39d2-a6fc-3e69791f01fd +2014,Chaco,II.1.1,6.44182,TJ,CH4,0.5,kg/TJ,3.22091,Naphtha combustion consumption by freight transport,AR-H,SESCO,annual,kg,f1ac3780-1b21-3b6a-af45-3ea22e71c9d4 +2014,Chaco,II.1.1,6.44182,TJ,N2O,2.0,kg/TJ,12.88364,Naphtha combustion consumption by freight transport,AR-H,SESCO,annual,kg,72428932-3e48-3ed1-a2a6-d1e8485f397c +2014,Chubut,II.1.1,0.445445,TJ,CO2,73300.0,kg/TJ,32651.118499999997,Naphtha combustion consumption by freight transport,AR-U,SESCO,annual,kg,5a18eb00-fb6f-34df-955f-e59bd0741d0f +2014,Chubut,II.1.1,0.445445,TJ,CH4,0.5,kg/TJ,0.2227225,Naphtha combustion consumption by freight transport,AR-U,SESCO,annual,kg,e22dfeed-0505-301a-8099-1e5f27b62606 +2014,Chubut,II.1.1,0.445445,TJ,N2O,2.0,kg/TJ,0.89089,Naphtha combustion consumption by freight transport,AR-U,SESCO,annual,kg,0af217fd-aeaf-3392-8602-b182bceefce3 +2014,Corrientes,II.1.1,2.87826,TJ,CO2,73300.0,kg/TJ,210976.458,Naphtha combustion consumption by freight transport,AR-W,SESCO,annual,kg,a0cef3fc-16ce-363b-ab40-3e7483d89728 +2014,Corrientes,II.1.1,2.87826,TJ,CH4,0.5,kg/TJ,1.43913,Naphtha combustion consumption by freight transport,AR-W,SESCO,annual,kg,31f55882-68ec-3ccf-a770-f49c84271099 +2014,Corrientes,II.1.1,2.87826,TJ,N2O,2.0,kg/TJ,5.75652,Naphtha combustion consumption by freight transport,AR-W,SESCO,annual,kg,de42019b-1a9f-3dff-9f53-f6aa7d52fe74 +2014,Córdoba,II.1.1,5.311075,TJ,CO2,73300.0,kg/TJ,389301.7975,Naphtha combustion consumption by freight transport,AR-X,SESCO,annual,kg,e49e4ae3-be7a-3a65-8eb5-fe06f05f057e +2014,Córdoba,II.1.1,5.311075,TJ,CH4,0.5,kg/TJ,2.6555375,Naphtha combustion consumption by freight transport,AR-X,SESCO,annual,kg,058baa77-16f1-3940-bdd3-dbdfbd900450 +2014,Córdoba,II.1.1,5.311075,TJ,N2O,2.0,kg/TJ,10.62215,Naphtha combustion consumption by freight transport,AR-X,SESCO,annual,kg,21255f27-f606-3174-b929-bd73c4b32f58 +2014,Entre Rios,II.1.1,2.227225,TJ,CO2,73300.0,kg/TJ,163255.5925,Naphtha combustion consumption by freight transport,AR-E,SESCO,annual,kg,86fe4bf6-aba4-3450-ac71-39965155a0f8 +2014,Entre Rios,II.1.1,2.227225,TJ,CH4,0.5,kg/TJ,1.1136125,Naphtha combustion consumption by freight transport,AR-E,SESCO,annual,kg,279c1029-2dba-31b9-96b4-d1f2c3e2be03 +2014,Entre Rios,II.1.1,2.227225,TJ,N2O,2.0,kg/TJ,4.45445,Naphtha combustion consumption by freight transport,AR-E,SESCO,annual,kg,22735d8e-5cb4-33ac-bbc8-5d4360e1f02e +2014,Jujuy,II.1.1,0.102795,TJ,CO2,73300.0,kg/TJ,7534.8735,Naphtha combustion consumption by freight transport,AR-Y,SESCO,annual,kg,c0a35d70-1613-3b58-b4b6-c55005d5a66d +2014,Jujuy,II.1.1,0.102795,TJ,CH4,0.5,kg/TJ,0.0513975,Naphtha combustion consumption by freight transport,AR-Y,SESCO,annual,kg,4b41d884-ab71-3257-a819-fa7bfec0904a +2014,Jujuy,II.1.1,0.102795,TJ,N2O,2.0,kg/TJ,0.20559,Naphtha combustion consumption by freight transport,AR-Y,SESCO,annual,kg,09b7d9a9-482d-35da-8f95-d797e24fd95a +2014,La Rioja,II.1.1,0.513975,TJ,CO2,73300.0,kg/TJ,37674.3675,Naphtha combustion consumption by freight transport,AR-F,SESCO,annual,kg,cbca8494-cc1b-312d-9772-0ad10864d25d +2014,La Rioja,II.1.1,0.513975,TJ,CH4,0.5,kg/TJ,0.2569875,Naphtha combustion consumption by freight transport,AR-F,SESCO,annual,kg,1d6f2306-0528-34d6-bb2b-8242f40344c9 +2014,La Rioja,II.1.1,0.513975,TJ,N2O,2.0,kg/TJ,1.02795,Naphtha combustion consumption by freight transport,AR-F,SESCO,annual,kg,fe6de47a-e055-3543-b784-6f3c5174ba76 +2014,Mendoza,II.1.1,4.488715,TJ,CO2,73300.0,kg/TJ,329022.8095,Naphtha combustion consumption by freight transport,AR-M,SESCO,annual,kg,7681ca32-4716-35ca-b815-95ad1937cb86 +2014,Mendoza,II.1.1,4.488715,TJ,CH4,0.5,kg/TJ,2.2443575,Naphtha combustion consumption by freight transport,AR-M,SESCO,annual,kg,e8ae4c93-6dac-3f60-9e11-ea29658eb65d +2014,Mendoza,II.1.1,4.488715,TJ,N2O,2.0,kg/TJ,8.97743,Naphtha combustion consumption by freight transport,AR-M,SESCO,annual,kg,c18ae0f0-92c8-392c-978d-4a02262a8496 +2014,Misiones,II.1.1,0.82236,TJ,CO2,73300.0,kg/TJ,60278.988,Naphtha combustion consumption by freight transport,AR-N,SESCO,annual,kg,1946be75-3d35-3805-b012-6bdee3ba5fe8 +2014,Misiones,II.1.1,0.82236,TJ,CH4,0.5,kg/TJ,0.41118,Naphtha combustion consumption by freight transport,AR-N,SESCO,annual,kg,8f876f3c-59be-3539-9317-572b0cf6b7ce +2014,Misiones,II.1.1,0.82236,TJ,N2O,2.0,kg/TJ,1.64472,Naphtha combustion consumption by freight transport,AR-N,SESCO,annual,kg,d9a8d65d-40f6-3fe1-9174-943d9825df66 +2014,Neuquén,II.1.1,0.27412,TJ,CO2,73300.0,kg/TJ,20092.996,Naphtha combustion consumption by freight transport,AR-Q,SESCO,annual,kg,ecf4ece1-9994-33ee-8981-28cd95f1b775 +2014,Neuquén,II.1.1,0.27412,TJ,CH4,0.5,kg/TJ,0.13706,Naphtha combustion consumption by freight transport,AR-Q,SESCO,annual,kg,76db1301-81cc-346a-96de-1724709861df +2014,Neuquén,II.1.1,0.27412,TJ,N2O,2.0,kg/TJ,0.54824,Naphtha combustion consumption by freight transport,AR-Q,SESCO,annual,kg,4332ef23-f1f0-3d0f-b706-50399df2757e +2014,Rio Negro,II.1.1,2.0559,TJ,CO2,73300.0,kg/TJ,150697.47,Naphtha combustion consumption by freight transport,AR-R,SESCO,annual,kg,1fa6d2d3-4e10-3261-af63-0e2a0791d86b +2014,Rio Negro,II.1.1,2.0559,TJ,CH4,0.5,kg/TJ,1.02795,Naphtha combustion consumption by freight transport,AR-R,SESCO,annual,kg,e88ecfea-4755-3928-a7c9-0d5ca7a2f266 +2014,Rio Negro,II.1.1,2.0559,TJ,N2O,2.0,kg/TJ,4.1118,Naphtha combustion consumption by freight transport,AR-R,SESCO,annual,kg,2cd27963-b7dd-32f0-9668-9d1d08b547c0 +2014,Salta,II.1.1,1.09648,TJ,CO2,73300.0,kg/TJ,80371.984,Naphtha combustion consumption by freight transport,AR-A,SESCO,annual,kg,772eebeb-18ae-3880-8ccf-85b60ad61d3f +2014,Salta,II.1.1,1.09648,TJ,CH4,0.5,kg/TJ,0.54824,Naphtha combustion consumption by freight transport,AR-A,SESCO,annual,kg,07ac9c6e-fef7-3e55-b88e-827b174a83b6 +2014,Salta,II.1.1,1.09648,TJ,N2O,2.0,kg/TJ,2.19296,Naphtha combustion consumption by freight transport,AR-A,SESCO,annual,kg,8275dd7a-ac0f-3423-bb67-f18f4ffcb332 +2014,San Luis,II.1.1,0.376915,TJ,CO2,73300.0,kg/TJ,27627.8695,Naphtha combustion consumption by freight transport,AR-D,SESCO,annual,kg,73b2b3e8-e402-30e4-aa20-8a2f5b593491 +2014,San Luis,II.1.1,0.376915,TJ,CH4,0.5,kg/TJ,0.1884575,Naphtha combustion consumption by freight transport,AR-D,SESCO,annual,kg,a5315a90-3247-34bd-b290-957d5017b7df +2014,San Luis,II.1.1,0.376915,TJ,N2O,2.0,kg/TJ,0.75383,Naphtha combustion consumption by freight transport,AR-D,SESCO,annual,kg,4f739b11-b223-3a52-ab5c-abfb16a64e44 +2014,Santa Fe,II.1.1,23.57432,TJ,CO2,73300.0,kg/TJ,1727997.656,Naphtha combustion consumption by freight transport,AR-S,SESCO,annual,kg,4d1ba914-e579-3c46-b283-7b2bc2c3d3c5 +2014,Santa Fe,II.1.1,23.57432,TJ,CH4,0.5,kg/TJ,11.78716,Naphtha combustion consumption by freight transport,AR-S,SESCO,annual,kg,6fdc2454-a7f4-3a45-a7c2-956262cee8d0 +2014,Santa Fe,II.1.1,23.57432,TJ,N2O,2.0,kg/TJ,47.14864,Naphtha combustion consumption by freight transport,AR-S,SESCO,annual,kg,30db3877-864c-349c-a9ca-86497df00deb +2014,Tucuman,II.1.1,0.82236,TJ,CO2,73300.0,kg/TJ,60278.988,Naphtha combustion consumption by freight transport,AR-T,SESCO,annual,kg,3971b665-55aa-3fb8-b83f-bdfbc01e02e7 +2014,Tucuman,II.1.1,0.82236,TJ,CH4,0.5,kg/TJ,0.41118,Naphtha combustion consumption by freight transport,AR-T,SESCO,annual,kg,ff2fff0f-9c65-3c11-bd7a-c1f0d04e30a0 +2014,Tucuman,II.1.1,0.82236,TJ,N2O,2.0,kg/TJ,1.64472,Naphtha combustion consumption by freight transport,AR-T,SESCO,annual,kg,528298f6-6e55-3808-b053-7eb5900f7f3e +2014,Buenos Aires,II.1.1,11235.342719999999,TJ,CO2,74100.0,kg/TJ,832538895.5519999,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,cbe3340b-8af7-31ae-87d2-52856c7650da +2014,Buenos Aires,II.1.1,11235.342719999999,TJ,CH4,3.9,kg/TJ,43817.83660799999,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,03b995b6-c087-3017-82d8-f3d24488bb5e +2014,Buenos Aires,II.1.1,11235.342719999999,TJ,N2O,3.9,kg/TJ,43817.83660799999,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,03b995b6-c087-3017-82d8-f3d24488bb5e +2014,Capital Federal,II.1.1,2645.68164,TJ,CO2,74100.0,kg/TJ,196045009.524,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,03bcfe22-9603-3ff7-bd99-f986a075eeb0 +2014,Capital Federal,II.1.1,2645.68164,TJ,CH4,3.9,kg/TJ,10318.158395999999,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,cf5d88e5-11a7-3c9a-91c3-8c6ece9c4f67 +2014,Capital Federal,II.1.1,2645.68164,TJ,N2O,3.9,kg/TJ,10318.158395999999,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,cf5d88e5-11a7-3c9a-91c3-8c6ece9c4f67 +2014,Catamarca,II.1.1,223.14936,TJ,CO2,74100.0,kg/TJ,16535367.576,Gas Oil combustion consumption by public passenger transport,AR-K,SESCO,annual,kg,44be6cb3-d3b9-3b68-b120-b3d083bd45a4 +2014,Catamarca,II.1.1,223.14936,TJ,CH4,3.9,kg/TJ,870.282504,Gas Oil combustion consumption by public passenger transport,AR-K,SESCO,annual,kg,f297d9df-189c-345e-970b-52c6e349f5a8 +2014,Catamarca,II.1.1,223.14936,TJ,N2O,3.9,kg/TJ,870.282504,Gas Oil combustion consumption by public passenger transport,AR-K,SESCO,annual,kg,f297d9df-189c-345e-970b-52c6e349f5a8 +2014,Chaco,II.1.1,494.30219999999997,TJ,CO2,74100.0,kg/TJ,36627793.019999996,Gas Oil combustion consumption by public passenger transport,AR-H,SESCO,annual,kg,1a72a92d-e621-3aa1-9db8-1d87c2929958 +2014,Chaco,II.1.1,494.30219999999997,TJ,CH4,3.9,kg/TJ,1927.77858,Gas Oil combustion consumption by public passenger transport,AR-H,SESCO,annual,kg,720eb68a-6a83-381d-9067-0b9897108935 +2014,Chaco,II.1.1,494.30219999999997,TJ,N2O,3.9,kg/TJ,1927.77858,Gas Oil combustion consumption by public passenger transport,AR-H,SESCO,annual,kg,720eb68a-6a83-381d-9067-0b9897108935 +2014,Chubut,II.1.1,100.73868,TJ,CO2,74100.0,kg/TJ,7464736.188,Gas Oil combustion consumption by public passenger transport,AR-U,SESCO,annual,kg,3eaf7117-864d-3285-8580-3a4d7b22ae32 +2014,Chubut,II.1.1,100.73868,TJ,CH4,3.9,kg/TJ,392.880852,Gas Oil combustion consumption by public passenger transport,AR-U,SESCO,annual,kg,473abd1e-440a-3cb8-98f4-a203a199e0de +2014,Chubut,II.1.1,100.73868,TJ,N2O,3.9,kg/TJ,392.880852,Gas Oil combustion consumption by public passenger transport,AR-U,SESCO,annual,kg,473abd1e-440a-3cb8-98f4-a203a199e0de +2014,Corrientes,II.1.1,508.06392,TJ,CO2,74100.0,kg/TJ,37647536.472,Gas Oil combustion consumption by public passenger transport,AR-W,SESCO,annual,kg,bda5e1d6-d602-3d18-98cf-6507f8645c10 +2014,Corrientes,II.1.1,508.06392,TJ,CH4,3.9,kg/TJ,1981.449288,Gas Oil combustion consumption by public passenger transport,AR-W,SESCO,annual,kg,788d6631-3e68-35ae-9507-a1f8edfea361 +2014,Corrientes,II.1.1,508.06392,TJ,N2O,3.9,kg/TJ,1981.449288,Gas Oil combustion consumption by public passenger transport,AR-W,SESCO,annual,kg,788d6631-3e68-35ae-9507-a1f8edfea361 +2014,Córdoba,II.1.1,1711.04052,TJ,CO2,74100.0,kg/TJ,126788102.532,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,8453448d-9719-3227-9ada-3f49f72e12d0 +2014,Córdoba,II.1.1,1711.04052,TJ,CH4,3.9,kg/TJ,6673.0580279999995,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,9c3f4855-4b50-3cc4-a6c0-70d001be2aea +2014,Córdoba,II.1.1,1711.04052,TJ,N2O,3.9,kg/TJ,6673.0580279999995,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,9c3f4855-4b50-3cc4-a6c0-70d001be2aea +2014,Entre Rios,II.1.1,480.10704,TJ,CO2,74100.0,kg/TJ,35575931.664,Gas Oil combustion consumption by public passenger transport,AR-E,SESCO,annual,kg,2a7555cf-16d5-3ec7-8092-5d8297b5bd06 +2014,Entre Rios,II.1.1,480.10704,TJ,CH4,3.9,kg/TJ,1872.417456,Gas Oil combustion consumption by public passenger transport,AR-E,SESCO,annual,kg,b469a6d7-8179-3270-94e6-31caaf781b42 +2014,Entre Rios,II.1.1,480.10704,TJ,N2O,3.9,kg/TJ,1872.417456,Gas Oil combustion consumption by public passenger transport,AR-E,SESCO,annual,kg,b469a6d7-8179-3270-94e6-31caaf781b42 +2014,Formosa,II.1.1,57.286319999999996,TJ,CO2,74100.0,kg/TJ,4244916.312,Gas Oil combustion consumption by public passenger transport,AR-P,SESCO,annual,kg,cc5461e5-bb13-3a5a-83ee-008ad5f57e50 +2014,Formosa,II.1.1,57.286319999999996,TJ,CH4,3.9,kg/TJ,223.41664799999998,Gas Oil combustion consumption by public passenger transport,AR-P,SESCO,annual,kg,06162153-ed97-3e3a-ba45-1cfd9bdcdd0b +2014,Formosa,II.1.1,57.286319999999996,TJ,N2O,3.9,kg/TJ,223.41664799999998,Gas Oil combustion consumption by public passenger transport,AR-P,SESCO,annual,kg,06162153-ed97-3e3a-ba45-1cfd9bdcdd0b +2014,Jujuy,II.1.1,593.70444,TJ,CO2,74100.0,kg/TJ,43993499.004,Gas Oil combustion consumption by public passenger transport,AR-Y,SESCO,annual,kg,225b9ba3-cd66-3be1-b2f3-e52c40817a57 +2014,Jujuy,II.1.1,593.70444,TJ,CH4,3.9,kg/TJ,2315.447316,Gas Oil combustion consumption by public passenger transport,AR-Y,SESCO,annual,kg,40605e94-ab88-3a3f-aefc-92514b75ab3e +2014,Jujuy,II.1.1,593.70444,TJ,N2O,3.9,kg/TJ,2315.447316,Gas Oil combustion consumption by public passenger transport,AR-Y,SESCO,annual,kg,40605e94-ab88-3a3f-aefc-92514b75ab3e +2014,La Pampa,II.1.1,46.305839999999996,TJ,CO2,74100.0,kg/TJ,3431262.744,Gas Oil combustion consumption by public passenger transport,AR-L,SESCO,annual,kg,5d4a10a0-6ec9-351b-8468-ddc790007e72 +2014,La Pampa,II.1.1,46.305839999999996,TJ,CH4,3.9,kg/TJ,180.592776,Gas Oil combustion consumption by public passenger transport,AR-L,SESCO,annual,kg,f125b067-65dc-3082-8e4e-a7ea66bdd996 +2014,La Pampa,II.1.1,46.305839999999996,TJ,N2O,3.9,kg/TJ,180.592776,Gas Oil combustion consumption by public passenger transport,AR-L,SESCO,annual,kg,f125b067-65dc-3082-8e4e-a7ea66bdd996 +2014,La Rioja,II.1.1,116.05355999999999,TJ,CO2,74100.0,kg/TJ,8599568.796,Gas Oil combustion consumption by public passenger transport,AR-F,SESCO,annual,kg,eff673cf-972c-35d6-9dd8-d90018b3c607 +2014,La Rioja,II.1.1,116.05355999999999,TJ,CH4,3.9,kg/TJ,452.60888399999993,Gas Oil combustion consumption by public passenger transport,AR-F,SESCO,annual,kg,42ce460a-f1ac-3929-9b2b-295c83c7f6c6 +2014,La Rioja,II.1.1,116.05355999999999,TJ,N2O,3.9,kg/TJ,452.60888399999993,Gas Oil combustion consumption by public passenger transport,AR-F,SESCO,annual,kg,42ce460a-f1ac-3929-9b2b-295c83c7f6c6 +2014,Mendoza,II.1.1,1788.01224,TJ,CO2,74100.0,kg/TJ,132491706.984,Gas Oil combustion consumption by public passenger transport,AR-M,SESCO,annual,kg,f978975a-45b7-3841-aa04-00467869815d +2014,Mendoza,II.1.1,1788.01224,TJ,CH4,3.9,kg/TJ,6973.247736,Gas Oil combustion consumption by public passenger transport,AR-M,SESCO,annual,kg,c7f29ef9-ebc6-348e-a9bc-5239fd22bf53 +2014,Mendoza,II.1.1,1788.01224,TJ,N2O,3.9,kg/TJ,6973.247736,Gas Oil combustion consumption by public passenger transport,AR-M,SESCO,annual,kg,c7f29ef9-ebc6-348e-a9bc-5239fd22bf53 +2014,Misiones,II.1.1,1015.3331999999999,TJ,CO2,74100.0,kg/TJ,75236190.11999999,Gas Oil combustion consumption by public passenger transport,AR-N,SESCO,annual,kg,294f791c-ad16-35a5-baac-8042399ba5cb +2014,Misiones,II.1.1,1015.3331999999999,TJ,CH4,3.9,kg/TJ,3959.7994799999997,Gas Oil combustion consumption by public passenger transport,AR-N,SESCO,annual,kg,07418302-eeea-34b5-959a-6959cbe1d318 +2014,Misiones,II.1.1,1015.3331999999999,TJ,N2O,3.9,kg/TJ,3959.7994799999997,Gas Oil combustion consumption by public passenger transport,AR-N,SESCO,annual,kg,07418302-eeea-34b5-959a-6959cbe1d318 +2014,Neuquén,II.1.1,319.15632,TJ,CO2,74100.0,kg/TJ,23649483.312,Gas Oil combustion consumption by public passenger transport,AR-Q,SESCO,annual,kg,697aeb24-a7aa-3242-9690-d7fec083b446 +2014,Neuquén,II.1.1,319.15632,TJ,CH4,3.9,kg/TJ,1244.709648,Gas Oil combustion consumption by public passenger transport,AR-Q,SESCO,annual,kg,77b2f118-74db-3865-9a84-f76a8f2df622 +2014,Neuquén,II.1.1,319.15632,TJ,N2O,3.9,kg/TJ,1244.709648,Gas Oil combustion consumption by public passenger transport,AR-Q,SESCO,annual,kg,77b2f118-74db-3865-9a84-f76a8f2df622 +2014,Rio Negro,II.1.1,379.26,TJ,CO2,74100.0,kg/TJ,28103166.0,Gas Oil combustion consumption by public passenger transport,AR-R,SESCO,annual,kg,a8229873-fa83-34f5-82ac-833c4169c8da +2014,Rio Negro,II.1.1,379.26,TJ,CH4,3.9,kg/TJ,1479.114,Gas Oil combustion consumption by public passenger transport,AR-R,SESCO,annual,kg,3a340795-4de5-3ff4-9f37-9fe1f4461de1 +2014,Rio Negro,II.1.1,379.26,TJ,N2O,3.9,kg/TJ,1479.114,Gas Oil combustion consumption by public passenger transport,AR-R,SESCO,annual,kg,3a340795-4de5-3ff4-9f37-9fe1f4461de1 +2014,Salta,II.1.1,870.45588,TJ,CO2,74100.0,kg/TJ,64500780.708,Gas Oil combustion consumption by public passenger transport,AR-A,SESCO,annual,kg,0dc82f1e-f2d6-39e4-a221-b0e37bb28ced +2014,Salta,II.1.1,870.45588,TJ,CH4,3.9,kg/TJ,3394.777932,Gas Oil combustion consumption by public passenger transport,AR-A,SESCO,annual,kg,0a11788d-470b-34fd-8eb1-6c98e840b646 +2014,Salta,II.1.1,870.45588,TJ,N2O,3.9,kg/TJ,3394.777932,Gas Oil combustion consumption by public passenger transport,AR-A,SESCO,annual,kg,0a11788d-470b-34fd-8eb1-6c98e840b646 +2014,San Juan,II.1.1,510.48395999999997,TJ,CO2,74100.0,kg/TJ,37826861.436,Gas Oil combustion consumption by public passenger transport,AR-J,SESCO,annual,kg,817f8383-ecf7-326d-aba7-4d69199710ac +2014,San Juan,II.1.1,510.48395999999997,TJ,CH4,3.9,kg/TJ,1990.8874439999997,Gas Oil combustion consumption by public passenger transport,AR-J,SESCO,annual,kg,cb25d470-5e36-38de-8d75-2076ccff115a +2014,San Juan,II.1.1,510.48395999999997,TJ,N2O,3.9,kg/TJ,1990.8874439999997,Gas Oil combustion consumption by public passenger transport,AR-J,SESCO,annual,kg,cb25d470-5e36-38de-8d75-2076ccff115a +2014,San Luis,II.1.1,181.03343999999998,TJ,CO2,74100.0,kg/TJ,13414577.904,Gas Oil combustion consumption by public passenger transport,AR-D,SESCO,annual,kg,65f575b6-c875-350e-b5a8-cc8c46219e1a +2014,San Luis,II.1.1,181.03343999999998,TJ,CH4,3.9,kg/TJ,706.030416,Gas Oil combustion consumption by public passenger transport,AR-D,SESCO,annual,kg,9b018a2f-615c-375f-b595-d0e1d5df5558 +2014,San Luis,II.1.1,181.03343999999998,TJ,N2O,3.9,kg/TJ,706.030416,Gas Oil combustion consumption by public passenger transport,AR-D,SESCO,annual,kg,9b018a2f-615c-375f-b595-d0e1d5df5558 +2014,Santa Cruz,II.1.1,56.05824,TJ,CO2,74100.0,kg/TJ,4153915.584,Gas Oil combustion consumption by public passenger transport,AR-Z,SESCO,annual,kg,a8762057-20c2-3b90-ba4c-e1ffc7cbfd81 +2014,Santa Cruz,II.1.1,56.05824,TJ,CH4,3.9,kg/TJ,218.62713599999998,Gas Oil combustion consumption by public passenger transport,AR-Z,SESCO,annual,kg,5764f3c0-ad1e-3858-87ab-71655ac247ad +2014,Santa Cruz,II.1.1,56.05824,TJ,N2O,3.9,kg/TJ,218.62713599999998,Gas Oil combustion consumption by public passenger transport,AR-Z,SESCO,annual,kg,5764f3c0-ad1e-3858-87ab-71655ac247ad +2014,Santa Fe,II.1.1,1939.75236,TJ,CO2,74100.0,kg/TJ,143735649.876,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,9b06fa8a-a36e-319c-a8bc-e5d2b190d5ad +2014,Santa Fe,II.1.1,1939.75236,TJ,CH4,3.9,kg/TJ,7565.034204,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,ad7c7505-d163-3d43-b02e-539eb659cb41 +2014,Santa Fe,II.1.1,1939.75236,TJ,N2O,3.9,kg/TJ,7565.034204,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,ad7c7505-d163-3d43-b02e-539eb659cb41 +2014,Santiago del Estero,II.1.1,248.72232,TJ,CO2,74100.0,kg/TJ,18430323.912,Gas Oil combustion consumption by public passenger transport,AR-G,SESCO,annual,kg,50b330db-ac0f-332a-8918-d22226c2d07c +2014,Santiago del Estero,II.1.1,248.72232,TJ,CH4,3.9,kg/TJ,970.0170479999999,Gas Oil combustion consumption by public passenger transport,AR-G,SESCO,annual,kg,95df6410-4dd1-3e37-9916-a4d9bbb7fa48 +2014,Santiago del Estero,II.1.1,248.72232,TJ,N2O,3.9,kg/TJ,970.0170479999999,Gas Oil combustion consumption by public passenger transport,AR-G,SESCO,annual,kg,95df6410-4dd1-3e37-9916-a4d9bbb7fa48 +2014,Tierra del Fuego,II.1.1,20.11884,TJ,CO2,74100.0,kg/TJ,1490806.044,Gas Oil combustion consumption by public passenger transport,AR-V,SESCO,annual,kg,ff8c831c-f256-385f-a8fe-969a55943f0c +2014,Tierra del Fuego,II.1.1,20.11884,TJ,CH4,3.9,kg/TJ,78.463476,Gas Oil combustion consumption by public passenger transport,AR-V,SESCO,annual,kg,48adf1e0-37dc-3a48-a717-78448c335e3b +2014,Tierra del Fuego,II.1.1,20.11884,TJ,N2O,3.9,kg/TJ,78.463476,Gas Oil combustion consumption by public passenger transport,AR-V,SESCO,annual,kg,48adf1e0-37dc-3a48-a717-78448c335e3b +2014,Tucuman,II.1.1,1330.94976,TJ,CO2,74100.0,kg/TJ,98623377.21599999,Gas Oil combustion consumption by public passenger transport,AR-T,SESCO,annual,kg,8b2b0f0e-b4d1-34d0-a4ee-5e5fbb62e942 +2014,Tucuman,II.1.1,1330.94976,TJ,CH4,3.9,kg/TJ,5190.704064,Gas Oil combustion consumption by public passenger transport,AR-T,SESCO,annual,kg,47b93f9a-9907-3ab9-92bb-5cdefb20ce5d +2014,Tucuman,II.1.1,1330.94976,TJ,N2O,3.9,kg/TJ,5190.704064,Gas Oil combustion consumption by public passenger transport,AR-T,SESCO,annual,kg,47b93f9a-9907-3ab9-92bb-5cdefb20ce5d +2014,Buenos Aires,II.1.1,0.20559,TJ,CO2,73300.0,kg/TJ,15069.747,Naphtha combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,0a926f9b-f281-34dc-af94-dff7aee59184 +2014,Buenos Aires,II.1.1,0.20559,TJ,CH4,0.5,kg/TJ,0.102795,Naphtha combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,4015fcd6-d637-3e30-8799-90d64c31ab6f +2014,Buenos Aires,II.1.1,0.20559,TJ,N2O,2.0,kg/TJ,0.41118,Naphtha combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,b7bae74b-2337-3a40-9f2d-f3b1dfec6d6c +2015,Buenos Aires,II.5.1,179.44415999999998,TJ,CO2,74100.0,kg/TJ,13296812.256,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,02a6121a-8be9-3e1e-ba92-d3abb703a3e1 +2015,Buenos Aires,II.5.1,179.44415999999998,TJ,CH4,3.9,kg/TJ,699.8322239999999,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,4573bde2-184a-3af7-b221-818334544382 +2015,Buenos Aires,II.5.1,179.44415999999998,TJ,N2O,3.9,kg/TJ,699.8322239999999,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,4573bde2-184a-3af7-b221-818334544382 +2015,Córdoba,II.5.1,31.85784,TJ,CO2,74100.0,kg/TJ,2360665.944,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,d64a373e-d09a-36f5-b773-16e836409b0b +2015,Córdoba,II.5.1,31.85784,TJ,CH4,3.9,kg/TJ,124.245576,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,c13b6166-12d7-3211-b9fb-78f520020451 +2015,Córdoba,II.5.1,31.85784,TJ,N2O,3.9,kg/TJ,124.245576,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,c13b6166-12d7-3211-b9fb-78f520020451 +2015,Santa Fe,II.5.1,515.7936,TJ,CO2,74100.0,kg/TJ,38220305.76,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,49d8436e-be9e-393f-8a79-dce4c2611301 +2015,Santa Fe,II.5.1,515.7936,TJ,CH4,3.9,kg/TJ,2011.59504,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,f8faf169-42c1-3bef-b7e2-0e7bad11b127 +2015,Santa Fe,II.5.1,515.7936,TJ,N2O,3.9,kg/TJ,2011.59504,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,f8faf169-42c1-3bef-b7e2-0e7bad11b127 +2015,Buenos Aires,II.5.1,1.37256,TJ,CO2,74100.0,kg/TJ,101706.696,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,2a8ecce2-24f2-3af9-8d93-71f89e5670ce +2015,Buenos Aires,II.5.1,1.37256,TJ,CH4,3.9,kg/TJ,5.352984,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,b977c5ab-fc6f-3a41-9ccb-0023b3f2f337 +2015,Buenos Aires,II.5.1,1.37256,TJ,N2O,3.9,kg/TJ,5.352984,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,b977c5ab-fc6f-3a41-9ccb-0023b3f2f337 +2015,Córdoba,II.5.1,6.2126399999999995,TJ,CO2,74100.0,kg/TJ,460356.62399999995,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,e852951c-6371-3299-a5b8-ecb768fb4112 +2015,Córdoba,II.5.1,6.2126399999999995,TJ,CH4,3.9,kg/TJ,24.229295999999998,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,8e1fa45e-7d7c-32a9-8988-a2bf4b03ee07 +2015,Córdoba,II.5.1,6.2126399999999995,TJ,N2O,3.9,kg/TJ,24.229295999999998,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,8e1fa45e-7d7c-32a9-8988-a2bf4b03ee07 +2015,Santa Fe,II.5.1,15.314879999999999,TJ,CO2,74100.0,kg/TJ,1134832.608,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,e4afd0db-b098-3f2b-9058-54bff095ceb8 +2015,Santa Fe,II.5.1,15.314879999999999,TJ,CH4,3.9,kg/TJ,59.72803199999999,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,76b094d7-1f65-3e40-8751-5113144a7045 +2015,Santa Fe,II.5.1,15.314879999999999,TJ,N2O,3.9,kg/TJ,59.72803199999999,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,76b094d7-1f65-3e40-8751-5113144a7045 +2015,Tucuman,II.5.1,0.5418,TJ,CO2,74100.0,kg/TJ,40147.38,Gas Oil combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,696849a8-04f9-3155-9506-a0bfd5e492af +2015,Tucuman,II.5.1,0.5418,TJ,CH4,3.9,kg/TJ,2.1130199999999997,Gas Oil combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,a5a69524-0532-399a-865a-dd8f5dc17583 +2015,Tucuman,II.5.1,0.5418,TJ,N2O,3.9,kg/TJ,2.1130199999999997,Gas Oil combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,a5a69524-0532-399a-865a-dd8f5dc17583 +2015,Córdoba,II.5.1,7.435505,TJ,CO2,73300.0,kg/TJ,545022.5165,Naphtha combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,395ee2bd-0e47-366b-94ee-0a6187135be5 +2015,Córdoba,II.5.1,7.435505,TJ,CH4,0.5,kg/TJ,3.7177525,Naphtha combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,535caf3b-4b34-309b-8e91-60ee567b3925 +2015,Córdoba,II.5.1,7.435505,TJ,N2O,2.0,kg/TJ,14.87101,Naphtha combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,fb585e6f-a6a4-3d48-9916-113d719623e4 +2015,Santa Fe,II.5.1,18.84575,TJ,CO2,73300.0,kg/TJ,1381393.4749999999,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,1619badb-cd37-300d-a984-7777e2d7a0d9 +2015,Santa Fe,II.5.1,18.84575,TJ,CH4,0.5,kg/TJ,9.422875,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,3b825835-2203-36f1-b76c-f62c30e4849a +2015,Santa Fe,II.5.1,18.84575,TJ,N2O,2.0,kg/TJ,37.6915,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,9c654a0f-9ee9-35ef-a569-e6d008e4aa23 +2015,Córdoba,II.5.1,3.70062,TJ,CO2,73300.0,kg/TJ,271255.446,Naphtha combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,a86fb9f3-67a4-30d0-a7a7-460e20b2b5b9 +2015,Córdoba,II.5.1,3.70062,TJ,CH4,0.5,kg/TJ,1.85031,Naphtha combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,10113b9a-7ef8-3319-8dc1-c6665cf0ef65 +2015,Córdoba,II.5.1,3.70062,TJ,N2O,2.0,kg/TJ,7.40124,Naphtha combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,b2df19c4-1cc3-3838-84af-f0a8c819d032 +2015,Santa Fe,II.5.1,6.750204999999999,TJ,CO2,73300.0,kg/TJ,494790.0265,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,2aaf9801-3bc9-3d23-85d9-693fd875d00e +2015,Santa Fe,II.5.1,6.750204999999999,TJ,CH4,0.5,kg/TJ,3.3751024999999997,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,b3db06b2-6336-3655-9377-0f8c3a189443 +2015,Santa Fe,II.5.1,6.750204999999999,TJ,N2O,2.0,kg/TJ,13.500409999999999,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,139973e6-96bf-3712-a026-02d07e6447d9 +2015,Córdoba,II.2.1,0.07224,TJ,CO2,74100.0,kg/TJ,5352.9839999999995,Gas Oil combustion consumption by railway transport,AR-X,SESCO,annual,kg,37be43c4-8176-3b0e-9579-257619e1f5e5 +2015,Córdoba,II.2.1,0.07224,TJ,CH4,3.9,kg/TJ,0.281736,Gas Oil combustion consumption by railway transport,AR-X,SESCO,annual,kg,e6d994ac-cda9-3133-9b60-8151e401d716 +2015,Córdoba,II.2.1,0.07224,TJ,N2O,3.9,kg/TJ,0.281736,Gas Oil combustion consumption by railway transport,AR-X,SESCO,annual,kg,e6d994ac-cda9-3133-9b60-8151e401d716 +2015,Entre Rios,II.2.1,0.14448,TJ,CO2,74100.0,kg/TJ,10705.967999999999,Gas Oil combustion consumption by railway transport,AR-E,SESCO,annual,kg,380f8ddf-b831-3f43-b66f-14209617dd30 +2015,Entre Rios,II.2.1,0.14448,TJ,CH4,3.9,kg/TJ,0.563472,Gas Oil combustion consumption by railway transport,AR-E,SESCO,annual,kg,dccf72ba-6fb8-32ac-a466-11f9b0fcb44c +2015,Entre Rios,II.2.1,0.14448,TJ,N2O,3.9,kg/TJ,0.563472,Gas Oil combustion consumption by railway transport,AR-E,SESCO,annual,kg,dccf72ba-6fb8-32ac-a466-11f9b0fcb44c +2015,Buenos Aires,II.1.1,1416.1554457680002,TJ,CO2,74100.0,kg/TJ,104937118.53140882,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,3cc1f91d-c0d3-3c2d-bab2-ef8122da4b0d +2015,Buenos Aires,II.1.1,1416.1554457680002,TJ,CH4,3.9,kg/TJ,5523.006238495201,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,6f9898ac-7896-349b-8df8-ad254d3735d5 +2015,Buenos Aires,II.1.1,1416.1554457680002,TJ,N2O,3.9,kg/TJ,5523.006238495201,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,6f9898ac-7896-349b-8df8-ad254d3735d5 +2015,Capital Federal,II.1.1,177.612876,TJ,CO2,74100.0,kg/TJ,13161114.1116,Gas Oil combustion consumption by freight transport,AR-C,SESCO,annual,kg,c5969ba8-8286-322b-96af-a9b8a9ed6a52 +2015,Capital Federal,II.1.1,177.612876,TJ,CH4,3.9,kg/TJ,692.6902163999999,Gas Oil combustion consumption by freight transport,AR-C,SESCO,annual,kg,1ce6640b-a972-3782-8d0c-1b62c03fc286 +2015,Capital Federal,II.1.1,177.612876,TJ,N2O,3.9,kg/TJ,692.6902163999999,Gas Oil combustion consumption by freight transport,AR-C,SESCO,annual,kg,1ce6640b-a972-3782-8d0c-1b62c03fc286 +2015,Catamarca,II.1.1,38.720639999999996,TJ,CO2,74100.0,kg/TJ,2869199.4239999996,Gas Oil combustion consumption by freight transport,AR-K,SESCO,annual,kg,5a4b0d73-54cd-3eb0-aaef-91e1a6462d96 +2015,Catamarca,II.1.1,38.720639999999996,TJ,CH4,3.9,kg/TJ,151.010496,Gas Oil combustion consumption by freight transport,AR-K,SESCO,annual,kg,67125f53-f364-3fe3-b7ec-f30c657c65d3 +2015,Catamarca,II.1.1,38.720639999999996,TJ,N2O,3.9,kg/TJ,151.010496,Gas Oil combustion consumption by freight transport,AR-K,SESCO,annual,kg,67125f53-f364-3fe3-b7ec-f30c657c65d3 +2015,Chubut,II.1.1,1.58928,TJ,CO2,74100.0,kg/TJ,117765.648,Gas Oil combustion consumption by freight transport,AR-U,SESCO,annual,kg,4707bcbb-5e01-3e73-ac9b-f21650771f95 +2015,Chubut,II.1.1,1.58928,TJ,CH4,3.9,kg/TJ,6.198192,Gas Oil combustion consumption by freight transport,AR-U,SESCO,annual,kg,6030dc85-974f-33a8-8a07-ffe998897e43 +2015,Chubut,II.1.1,1.58928,TJ,N2O,3.9,kg/TJ,6.198192,Gas Oil combustion consumption by freight transport,AR-U,SESCO,annual,kg,6030dc85-974f-33a8-8a07-ffe998897e43 +2015,Corrientes,II.1.1,98.39088,TJ,CO2,74100.0,kg/TJ,7290764.208,Gas Oil combustion consumption by freight transport,AR-W,SESCO,annual,kg,b54a4d8e-7ec3-36ad-97c8-5ffe8d3a92a7 +2015,Corrientes,II.1.1,98.39088,TJ,CH4,3.9,kg/TJ,383.724432,Gas Oil combustion consumption by freight transport,AR-W,SESCO,annual,kg,45e3fbc7-4fb2-3020-b1f3-d94f93fcfbae +2015,Corrientes,II.1.1,98.39088,TJ,N2O,3.9,kg/TJ,383.724432,Gas Oil combustion consumption by freight transport,AR-W,SESCO,annual,kg,45e3fbc7-4fb2-3020-b1f3-d94f93fcfbae +2015,Córdoba,II.1.1,126.6006,TJ,CO2,74100.0,kg/TJ,9381104.46,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,59538005-d4ed-3102-bfd3-cf13f9db6d4f +2015,Córdoba,II.1.1,126.6006,TJ,CH4,3.9,kg/TJ,493.74234,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,ea3bc380-22d7-360f-bfbe-e4479dfe00ca +2015,Córdoba,II.1.1,126.6006,TJ,N2O,3.9,kg/TJ,493.74234,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,ea3bc380-22d7-360f-bfbe-e4479dfe00ca +2015,Entre Rios,II.1.1,89.83044,TJ,CO2,74100.0,kg/TJ,6656435.603999999,Gas Oil combustion consumption by freight transport,AR-E,SESCO,annual,kg,e02aff79-b181-3812-8f8e-9ee31f0136a1 +2015,Entre Rios,II.1.1,89.83044,TJ,CH4,3.9,kg/TJ,350.338716,Gas Oil combustion consumption by freight transport,AR-E,SESCO,annual,kg,68348863-e41d-3181-884a-29b7c030e3a9 +2015,Entre Rios,II.1.1,89.83044,TJ,N2O,3.9,kg/TJ,350.338716,Gas Oil combustion consumption by freight transport,AR-E,SESCO,annual,kg,68348863-e41d-3181-884a-29b7c030e3a9 +2015,Formosa,II.1.1,4.47888,TJ,CO2,74100.0,kg/TJ,331885.00800000003,Gas Oil combustion consumption by freight transport,AR-P,SESCO,annual,kg,fabc7f5d-ccb0-35bf-964e-527bf1fc4d0d +2015,Formosa,II.1.1,4.47888,TJ,CH4,3.9,kg/TJ,17.467632000000002,Gas Oil combustion consumption by freight transport,AR-P,SESCO,annual,kg,4a8e33ab-3db1-364b-8856-e667be5954e5 +2015,Formosa,II.1.1,4.47888,TJ,N2O,3.9,kg/TJ,17.467632000000002,Gas Oil combustion consumption by freight transport,AR-P,SESCO,annual,kg,4a8e33ab-3db1-364b-8856-e667be5954e5 +2015,La Pampa,II.1.1,19.721519999999998,TJ,CO2,74100.0,kg/TJ,1461364.6319999998,Gas Oil combustion consumption by freight transport,AR-L,SESCO,annual,kg,1087d05b-0aed-3061-9158-9cecb0e89b85 +2015,La Pampa,II.1.1,19.721519999999998,TJ,CH4,3.9,kg/TJ,76.91392799999998,Gas Oil combustion consumption by freight transport,AR-L,SESCO,annual,kg,d87eb64a-f252-3ff8-b893-3789951916d5 +2015,La Pampa,II.1.1,19.721519999999998,TJ,N2O,3.9,kg/TJ,76.91392799999998,Gas Oil combustion consumption by freight transport,AR-L,SESCO,annual,kg,d87eb64a-f252-3ff8-b893-3789951916d5 +2015,Mendoza,II.1.1,22.82784,TJ,CO2,74100.0,kg/TJ,1691542.944,Gas Oil combustion consumption by freight transport,AR-M,SESCO,annual,kg,15753383-3d82-3222-925e-2b6fe899c208 +2015,Mendoza,II.1.1,22.82784,TJ,CH4,3.9,kg/TJ,89.02857599999999,Gas Oil combustion consumption by freight transport,AR-M,SESCO,annual,kg,63eeb02e-ba53-3e1d-8813-bf298c45fef2 +2015,Mendoza,II.1.1,22.82784,TJ,N2O,3.9,kg/TJ,89.02857599999999,Gas Oil combustion consumption by freight transport,AR-M,SESCO,annual,kg,63eeb02e-ba53-3e1d-8813-bf298c45fef2 +2015,Misiones,II.1.1,17.40984,TJ,CO2,74100.0,kg/TJ,1290069.1439999999,Gas Oil combustion consumption by freight transport,AR-N,SESCO,annual,kg,52341a90-c811-3f28-b114-b162114262ad +2015,Misiones,II.1.1,17.40984,TJ,CH4,3.9,kg/TJ,67.898376,Gas Oil combustion consumption by freight transport,AR-N,SESCO,annual,kg,41cf6dfc-9ebc-3a18-8fcd-a643470f9002 +2015,Misiones,II.1.1,17.40984,TJ,N2O,3.9,kg/TJ,67.898376,Gas Oil combustion consumption by freight transport,AR-N,SESCO,annual,kg,41cf6dfc-9ebc-3a18-8fcd-a643470f9002 +2015,Rio Negro,II.1.1,71.62595999999999,TJ,CO2,74100.0,kg/TJ,5307483.635999999,Gas Oil combustion consumption by freight transport,AR-R,SESCO,annual,kg,55740a7a-c668-395f-959e-c8e35f4e65ff +2015,Rio Negro,II.1.1,71.62595999999999,TJ,CH4,3.9,kg/TJ,279.34124399999996,Gas Oil combustion consumption by freight transport,AR-R,SESCO,annual,kg,c846a224-6648-38a9-8d04-1d39ce0976b1 +2015,Rio Negro,II.1.1,71.62595999999999,TJ,N2O,3.9,kg/TJ,279.34124399999996,Gas Oil combustion consumption by freight transport,AR-R,SESCO,annual,kg,c846a224-6648-38a9-8d04-1d39ce0976b1 +2015,San Juan,II.1.1,23.04456,TJ,CO2,74100.0,kg/TJ,1707601.896,Gas Oil combustion consumption by freight transport,AR-J,SESCO,annual,kg,37a1ce93-86ee-32e9-b3e8-8cef44bd14eb +2015,San Juan,II.1.1,23.04456,TJ,CH4,3.9,kg/TJ,89.873784,Gas Oil combustion consumption by freight transport,AR-J,SESCO,annual,kg,04a2373e-c7be-317c-9f09-09a0a1b56204 +2015,San Juan,II.1.1,23.04456,TJ,N2O,3.9,kg/TJ,89.873784,Gas Oil combustion consumption by freight transport,AR-J,SESCO,annual,kg,04a2373e-c7be-317c-9f09-09a0a1b56204 +2015,San Luis,II.1.1,105.2898,TJ,CO2,74100.0,kg/TJ,7801974.18,Gas Oil combustion consumption by freight transport,AR-D,SESCO,annual,kg,d3d14057-dd88-3b3f-9abf-49b3a393c82a +2015,San Luis,II.1.1,105.2898,TJ,CH4,3.9,kg/TJ,410.63022,Gas Oil combustion consumption by freight transport,AR-D,SESCO,annual,kg,180d5089-4909-377a-99f9-e053d23d5bc7 +2015,San Luis,II.1.1,105.2898,TJ,N2O,3.9,kg/TJ,410.63022,Gas Oil combustion consumption by freight transport,AR-D,SESCO,annual,kg,180d5089-4909-377a-99f9-e053d23d5bc7 +2015,Santa Fe,II.1.1,690.21708,TJ,CO2,74100.0,kg/TJ,51145085.628,Gas Oil combustion consumption by freight transport,AR-S,SESCO,annual,kg,6c87e082-c3b0-33d3-bc78-2a90bdd4f601 +2015,Santa Fe,II.1.1,690.21708,TJ,CH4,3.9,kg/TJ,2691.846612,Gas Oil combustion consumption by freight transport,AR-S,SESCO,annual,kg,a7da7141-3e6f-3fdf-a636-f2970cab892c +2015,Santa Fe,II.1.1,690.21708,TJ,N2O,3.9,kg/TJ,2691.846612,Gas Oil combustion consumption by freight transport,AR-S,SESCO,annual,kg,a7da7141-3e6f-3fdf-a636-f2970cab892c +2015,Santiago del Estero,II.1.1,12.20856,TJ,CO2,74100.0,kg/TJ,904654.296,Gas Oil combustion consumption by freight transport,AR-G,SESCO,annual,kg,ffc62ae8-46f9-3eea-ab9f-e3d5f3aef805 +2015,Santiago del Estero,II.1.1,12.20856,TJ,CH4,3.9,kg/TJ,47.613384,Gas Oil combustion consumption by freight transport,AR-G,SESCO,annual,kg,1955350b-c554-3a95-bc68-9d2d5eb7be10 +2015,Santiago del Estero,II.1.1,12.20856,TJ,N2O,3.9,kg/TJ,47.613384,Gas Oil combustion consumption by freight transport,AR-G,SESCO,annual,kg,1955350b-c554-3a95-bc68-9d2d5eb7be10 +2015,Tucuman,II.1.1,36.58956,TJ,CO2,74100.0,kg/TJ,2711286.3959999997,Gas Oil combustion consumption by freight transport,AR-T,SESCO,annual,kg,af1b120c-2d34-350c-b4ed-6710363d76f5 +2015,Tucuman,II.1.1,36.58956,TJ,CH4,3.9,kg/TJ,142.699284,Gas Oil combustion consumption by freight transport,AR-T,SESCO,annual,kg,93601f58-0bbe-3f56-83eb-c79bb22fdcfa +2015,Tucuman,II.1.1,36.58956,TJ,N2O,3.9,kg/TJ,142.699284,Gas Oil combustion consumption by freight transport,AR-T,SESCO,annual,kg,93601f58-0bbe-3f56-83eb-c79bb22fdcfa +2015,Buenos Aires,II.1.1,54.324479999999994,TJ,CO2,74100.0,kg/TJ,4025443.9679999994,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,d2392f5d-045c-372f-a264-0f82cbdcc2f7 +2015,Buenos Aires,II.1.1,54.324479999999994,TJ,CH4,3.9,kg/TJ,211.86547199999998,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,26c137f0-8e9b-3984-8cb3-64ff17b896f7 +2015,Buenos Aires,II.1.1,54.324479999999994,TJ,N2O,3.9,kg/TJ,211.86547199999998,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,26c137f0-8e9b-3984-8cb3-64ff17b896f7 +2015,Capital Federal,II.1.1,24.30876,TJ,CO2,74100.0,kg/TJ,1801279.116,Gas Oil combustion consumption by freight transport,AR-C,SESCO,annual,kg,af4cd1b7-292a-36a7-b839-b11cb3e9c11c +2015,Capital Federal,II.1.1,24.30876,TJ,CH4,3.9,kg/TJ,94.804164,Gas Oil combustion consumption by freight transport,AR-C,SESCO,annual,kg,5af90376-5eac-35bd-aaa2-65168972fd0b +2015,Capital Federal,II.1.1,24.30876,TJ,N2O,3.9,kg/TJ,94.804164,Gas Oil combustion consumption by freight transport,AR-C,SESCO,annual,kg,5af90376-5eac-35bd-aaa2-65168972fd0b +2015,Catamarca,II.1.1,0.46956,TJ,CO2,74100.0,kg/TJ,34794.396,Gas Oil combustion consumption by freight transport,AR-K,SESCO,annual,kg,addbd6f5-eaee-3654-b113-8290a3d9ea35 +2015,Catamarca,II.1.1,0.46956,TJ,CH4,3.9,kg/TJ,1.831284,Gas Oil combustion consumption by freight transport,AR-K,SESCO,annual,kg,ad29b53f-5abf-3bda-bd72-72399974dca9 +2015,Catamarca,II.1.1,0.46956,TJ,N2O,3.9,kg/TJ,1.831284,Gas Oil combustion consumption by freight transport,AR-K,SESCO,annual,kg,ad29b53f-5abf-3bda-bd72-72399974dca9 +2015,Chubut,II.1.1,0.36119999999999997,TJ,CO2,74100.0,kg/TJ,26764.92,Gas Oil combustion consumption by freight transport,AR-U,SESCO,annual,kg,9b3269e4-b6ae-38d5-b672-810f65029af8 +2015,Chubut,II.1.1,0.36119999999999997,TJ,CH4,3.9,kg/TJ,1.40868,Gas Oil combustion consumption by freight transport,AR-U,SESCO,annual,kg,6e2da646-499d-3587-acc8-b34e1c18a66e +2015,Chubut,II.1.1,0.36119999999999997,TJ,N2O,3.9,kg/TJ,1.40868,Gas Oil combustion consumption by freight transport,AR-U,SESCO,annual,kg,6e2da646-499d-3587-acc8-b34e1c18a66e +2015,Corrientes,II.1.1,4.26216,TJ,CO2,74100.0,kg/TJ,315826.056,Gas Oil combustion consumption by freight transport,AR-W,SESCO,annual,kg,bfc55cf8-16e5-38c9-a409-94f70b943b40 +2015,Corrientes,II.1.1,4.26216,TJ,CH4,3.9,kg/TJ,16.622424,Gas Oil combustion consumption by freight transport,AR-W,SESCO,annual,kg,7b15b13a-7c52-34d0-85ed-b7ca349090ae +2015,Corrientes,II.1.1,4.26216,TJ,N2O,3.9,kg/TJ,16.622424,Gas Oil combustion consumption by freight transport,AR-W,SESCO,annual,kg,7b15b13a-7c52-34d0-85ed-b7ca349090ae +2015,Córdoba,II.1.1,3.5758799999999997,TJ,CO2,74100.0,kg/TJ,264972.708,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,f3ddb8d6-09c5-3a1c-b503-dba3e097c536 +2015,Córdoba,II.1.1,3.5758799999999997,TJ,CH4,3.9,kg/TJ,13.945931999999999,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,6897c778-da80-307a-8354-6317ab69c44b +2015,Córdoba,II.1.1,3.5758799999999997,TJ,N2O,3.9,kg/TJ,13.945931999999999,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,6897c778-da80-307a-8354-6317ab69c44b +2015,Entre Rios,II.1.1,1.30032,TJ,CO2,74100.0,kg/TJ,96353.712,Gas Oil combustion consumption by freight transport,AR-E,SESCO,annual,kg,699d24ff-b993-36d0-8fdd-6eb5464b26b2 +2015,Entre Rios,II.1.1,1.30032,TJ,CH4,3.9,kg/TJ,5.071248,Gas Oil combustion consumption by freight transport,AR-E,SESCO,annual,kg,9333fda9-3e51-3064-96ad-2e04f2a5c3d6 +2015,Entre Rios,II.1.1,1.30032,TJ,N2O,3.9,kg/TJ,5.071248,Gas Oil combustion consumption by freight transport,AR-E,SESCO,annual,kg,9333fda9-3e51-3064-96ad-2e04f2a5c3d6 +2015,La Pampa,II.1.1,0.14448,TJ,CO2,74100.0,kg/TJ,10705.967999999999,Gas Oil combustion consumption by freight transport,AR-L,SESCO,annual,kg,04c78ffd-9cc4-3825-a216-511c3e714d6f +2015,La Pampa,II.1.1,0.14448,TJ,CH4,3.9,kg/TJ,0.563472,Gas Oil combustion consumption by freight transport,AR-L,SESCO,annual,kg,eaf5d924-0aba-3011-b07b-f8b117d8562c +2015,La Pampa,II.1.1,0.14448,TJ,N2O,3.9,kg/TJ,0.563472,Gas Oil combustion consumption by freight transport,AR-L,SESCO,annual,kg,eaf5d924-0aba-3011-b07b-f8b117d8562c +2015,Misiones,II.1.1,0.43344,TJ,CO2,74100.0,kg/TJ,32117.904,Gas Oil combustion consumption by freight transport,AR-N,SESCO,annual,kg,2cc10979-2c35-30a8-bd88-00c0de5c5fc8 +2015,Misiones,II.1.1,0.43344,TJ,CH4,3.9,kg/TJ,1.690416,Gas Oil combustion consumption by freight transport,AR-N,SESCO,annual,kg,61ace39c-b50a-3065-9b0f-716f3b6b4a38 +2015,Misiones,II.1.1,0.43344,TJ,N2O,3.9,kg/TJ,1.690416,Gas Oil combustion consumption by freight transport,AR-N,SESCO,annual,kg,61ace39c-b50a-3065-9b0f-716f3b6b4a38 +2015,Rio Negro,II.1.1,0.14448,TJ,CO2,74100.0,kg/TJ,10705.967999999999,Gas Oil combustion consumption by freight transport,AR-R,SESCO,annual,kg,33776a0d-18f2-335e-aa2a-352b36b04606 +2015,Rio Negro,II.1.1,0.14448,TJ,CH4,3.9,kg/TJ,0.563472,Gas Oil combustion consumption by freight transport,AR-R,SESCO,annual,kg,36805139-87cb-360d-b97a-c8c62b5b659b +2015,Rio Negro,II.1.1,0.14448,TJ,N2O,3.9,kg/TJ,0.563472,Gas Oil combustion consumption by freight transport,AR-R,SESCO,annual,kg,36805139-87cb-360d-b97a-c8c62b5b659b +2015,San Juan,II.1.1,0.28896,TJ,CO2,74100.0,kg/TJ,21411.935999999998,Gas Oil combustion consumption by freight transport,AR-J,SESCO,annual,kg,3eee0545-483d-3dac-a0b8-66b4b1fe7a69 +2015,San Juan,II.1.1,0.28896,TJ,CH4,3.9,kg/TJ,1.126944,Gas Oil combustion consumption by freight transport,AR-J,SESCO,annual,kg,d20d4978-b2fd-3ed2-8356-1883363b7bce +2015,San Juan,II.1.1,0.28896,TJ,N2O,3.9,kg/TJ,1.126944,Gas Oil combustion consumption by freight transport,AR-J,SESCO,annual,kg,d20d4978-b2fd-3ed2-8356-1883363b7bce +2015,San Luis,II.1.1,0.03612,TJ,CO2,74100.0,kg/TJ,2676.4919999999997,Gas Oil combustion consumption by freight transport,AR-D,SESCO,annual,kg,d1a627b5-9e09-3e53-a6ad-dea571646ce9 +2015,San Luis,II.1.1,0.03612,TJ,CH4,3.9,kg/TJ,0.140868,Gas Oil combustion consumption by freight transport,AR-D,SESCO,annual,kg,c6a9bf1d-3e70-3e85-a609-9e2f1e66173d +2015,San Luis,II.1.1,0.03612,TJ,N2O,3.9,kg/TJ,0.140868,Gas Oil combustion consumption by freight transport,AR-D,SESCO,annual,kg,c6a9bf1d-3e70-3e85-a609-9e2f1e66173d +2015,Santa Fe,II.1.1,5.49024,TJ,CO2,74100.0,kg/TJ,406826.784,Gas Oil combustion consumption by freight transport,AR-S,SESCO,annual,kg,e7b2a92c-bb47-3548-b49f-5d8cb518f0bb +2015,Santa Fe,II.1.1,5.49024,TJ,CH4,3.9,kg/TJ,21.411936,Gas Oil combustion consumption by freight transport,AR-S,SESCO,annual,kg,7fed4078-8cc1-3649-9f4c-51ed669b212e +2015,Santa Fe,II.1.1,5.49024,TJ,N2O,3.9,kg/TJ,21.411936,Gas Oil combustion consumption by freight transport,AR-S,SESCO,annual,kg,7fed4078-8cc1-3649-9f4c-51ed669b212e +2015,Santiago del Estero,II.1.1,0.68628,TJ,CO2,74100.0,kg/TJ,50853.348,Gas Oil combustion consumption by freight transport,AR-G,SESCO,annual,kg,e7d7bd7e-52eb-370a-aa42-c7551a78080a +2015,Santiago del Estero,II.1.1,0.68628,TJ,CH4,3.9,kg/TJ,2.676492,Gas Oil combustion consumption by freight transport,AR-G,SESCO,annual,kg,1bb66a92-70f7-37ac-923c-f327035de06c +2015,Santiago del Estero,II.1.1,0.68628,TJ,N2O,3.9,kg/TJ,2.676492,Gas Oil combustion consumption by freight transport,AR-G,SESCO,annual,kg,1bb66a92-70f7-37ac-923c-f327035de06c +2015,Tucuman,II.1.1,1.0836,TJ,CO2,74100.0,kg/TJ,80294.76,Gas Oil combustion consumption by freight transport,AR-T,SESCO,annual,kg,1ba2bc5e-ae0f-3026-b6ff-3c033e267978 +2015,Tucuman,II.1.1,1.0836,TJ,CH4,3.9,kg/TJ,4.226039999999999,Gas Oil combustion consumption by freight transport,AR-T,SESCO,annual,kg,a9453276-3661-336d-8733-d6f7a1f56ca7 +2015,Tucuman,II.1.1,1.0836,TJ,N2O,3.9,kg/TJ,4.226039999999999,Gas Oil combustion consumption by freight transport,AR-T,SESCO,annual,kg,a9453276-3661-336d-8733-d6f7a1f56ca7 +2015,Buenos Aires,II.1.1,0.9435899999999998,TJ,CO2,71500.0,kg/TJ,67466.68499999998,Jet Kerosene combustion consumption by freight transport,AR-B,SESCO,annual,kg,4a7e5556-df8e-3b09-b9ef-6f6314bba381 +2015,Buenos Aires,II.1.1,0.9435899999999998,TJ,CH4,0.5,kg/TJ,0.4717949999999999,Jet Kerosene combustion consumption by freight transport,AR-B,SESCO,annual,kg,13b94e1e-3b3b-3975-a275-076ee6d49989 +2015,Buenos Aires,II.1.1,0.9435899999999998,TJ,N2O,2.0,kg/TJ,1.8871799999999996,Jet Kerosene combustion consumption by freight transport,AR-B,SESCO,annual,kg,28b0b48c-382a-3f01-a590-79c3a70510f4 +2015,Buenos Aires,II.1.1,7.778155,TJ,CO2,73300.0,kg/TJ,570138.7615,Naphtha combustion consumption by freight transport,AR-B,SESCO,annual,kg,898bee9f-68a4-39ce-b067-040dfe1b2d6d +2015,Buenos Aires,II.1.1,7.778155,TJ,CH4,0.5,kg/TJ,3.8890775,Naphtha combustion consumption by freight transport,AR-B,SESCO,annual,kg,28fa3b7f-25c5-3825-886a-796908b1f452 +2015,Buenos Aires,II.1.1,7.778155,TJ,N2O,2.0,kg/TJ,15.55631,Naphtha combustion consumption by freight transport,AR-B,SESCO,annual,kg,04eae378-4bed-3c28-aaf9-fb81ff6a64f4 +2015,Capital Federal,II.1.1,6.3390249999999995,TJ,CO2,73300.0,kg/TJ,464650.5325,Naphtha combustion consumption by freight transport,AR-C,SESCO,annual,kg,2d75fcfb-4f3a-32fb-a269-889b56364952 +2015,Capital Federal,II.1.1,6.3390249999999995,TJ,CH4,0.5,kg/TJ,3.1695124999999997,Naphtha combustion consumption by freight transport,AR-C,SESCO,annual,kg,7457ba26-c91a-377f-b418-76f13c3dfacb +2015,Capital Federal,II.1.1,6.3390249999999995,TJ,N2O,2.0,kg/TJ,12.678049999999999,Naphtha combustion consumption by freight transport,AR-C,SESCO,annual,kg,a003e287-372c-3e05-9a1a-fcf7c4aec10d +2015,Córdoba,II.1.1,0.75383,TJ,CO2,73300.0,kg/TJ,55255.739,Naphtha combustion consumption by freight transport,AR-X,SESCO,annual,kg,6a106881-2eec-3f51-ac0d-7d6b6618bc85 +2015,Córdoba,II.1.1,0.75383,TJ,CH4,0.5,kg/TJ,0.376915,Naphtha combustion consumption by freight transport,AR-X,SESCO,annual,kg,62ac7b02-8892-394c-906d-19bf7cca126d +2015,Córdoba,II.1.1,0.75383,TJ,N2O,2.0,kg/TJ,1.50766,Naphtha combustion consumption by freight transport,AR-X,SESCO,annual,kg,c9058865-98b4-3e4a-8765-045cf2af58c8 +2015,Santa Fe,II.1.1,16.4472,TJ,CO2,73300.0,kg/TJ,1205579.76,Naphtha combustion consumption by freight transport,AR-S,SESCO,annual,kg,37931611-6320-384d-86b4-10a7315c13a8 +2015,Santa Fe,II.1.1,16.4472,TJ,CH4,0.5,kg/TJ,8.2236,Naphtha combustion consumption by freight transport,AR-S,SESCO,annual,kg,673ebf36-df82-3855-90b2-c94c37a569b7 +2015,Santa Fe,II.1.1,16.4472,TJ,N2O,2.0,kg/TJ,32.8944,Naphtha combustion consumption by freight transport,AR-S,SESCO,annual,kg,45cf0a0d-996f-3032-9a51-4da507fd5b68 +2015,Tucuman,II.1.1,0.06853,TJ,CO2,73300.0,kg/TJ,5023.249,Naphtha combustion consumption by freight transport,AR-T,SESCO,annual,kg,52fb3815-26e1-3946-8797-884614bef70d +2015,Tucuman,II.1.1,0.06853,TJ,CH4,0.5,kg/TJ,0.034265,Naphtha combustion consumption by freight transport,AR-T,SESCO,annual,kg,5f26eea7-d1fc-3e3d-862c-e42f442046a9 +2015,Tucuman,II.1.1,0.06853,TJ,N2O,2.0,kg/TJ,0.13706,Naphtha combustion consumption by freight transport,AR-T,SESCO,annual,kg,deb5cdef-2381-3dba-bb2f-6db42ccd9cdc +2015,Buenos Aires,II.1.1,5.55093,TJ,CO2,73300.0,kg/TJ,406883.169,Naphtha combustion consumption by freight transport,AR-B,SESCO,annual,kg,4413b262-40d1-3d75-91a2-b039a181afb5 +2015,Buenos Aires,II.1.1,5.55093,TJ,CH4,0.5,kg/TJ,2.775465,Naphtha combustion consumption by freight transport,AR-B,SESCO,annual,kg,93f28b1a-8ab5-3470-b591-16b3345f0352 +2015,Buenos Aires,II.1.1,5.55093,TJ,N2O,2.0,kg/TJ,11.10186,Naphtha combustion consumption by freight transport,AR-B,SESCO,annual,kg,79764370-b4a6-3155-94b4-a7492ca6445f +2015,Capital Federal,II.1.1,6.0649049999999995,TJ,CO2,73300.0,kg/TJ,444557.5365,Naphtha combustion consumption by freight transport,AR-C,SESCO,annual,kg,2c7ce7d7-15f0-37ab-b827-4e02bed618ab +2015,Capital Federal,II.1.1,6.0649049999999995,TJ,CH4,0.5,kg/TJ,3.0324524999999998,Naphtha combustion consumption by freight transport,AR-C,SESCO,annual,kg,aaa3c5a4-045c-30b3-97a5-1f35d90d4d23 +2015,Capital Federal,II.1.1,6.0649049999999995,TJ,N2O,2.0,kg/TJ,12.129809999999999,Naphtha combustion consumption by freight transport,AR-C,SESCO,annual,kg,2e8519aa-fe19-3bb0-b415-75c856fb952e +2015,Córdoba,II.1.1,0.9594199999999999,TJ,CO2,73300.0,kg/TJ,70325.48599999999,Naphtha combustion consumption by freight transport,AR-X,SESCO,annual,kg,0ea96eb2-f371-3e30-bf0c-11202802433f +2015,Córdoba,II.1.1,0.9594199999999999,TJ,CH4,0.5,kg/TJ,0.47970999999999997,Naphtha combustion consumption by freight transport,AR-X,SESCO,annual,kg,d6aa4389-23f1-3d38-97ce-806053c22b36 +2015,Córdoba,II.1.1,0.9594199999999999,TJ,N2O,2.0,kg/TJ,1.9188399999999999,Naphtha combustion consumption by freight transport,AR-X,SESCO,annual,kg,2a0ce121-5bdf-3dd5-b018-3b24292c6066 +2015,Santa Fe,II.1.1,0.925155,TJ,CO2,73300.0,kg/TJ,67813.8615,Naphtha combustion consumption by freight transport,AR-S,SESCO,annual,kg,6e0a1dc2-6259-39d5-9f37-78dcd1f5e0fd +2015,Santa Fe,II.1.1,0.925155,TJ,CH4,0.5,kg/TJ,0.4625775,Naphtha combustion consumption by freight transport,AR-S,SESCO,annual,kg,7ec32b99-fb9f-3677-8679-160e12ac2a64 +2015,Santa Fe,II.1.1,0.925155,TJ,N2O,2.0,kg/TJ,1.85031,Naphtha combustion consumption by freight transport,AR-S,SESCO,annual,kg,5471361d-7d22-34f9-9b43-22ff67e1f2c0 +2015,Buenos Aires,II.1.1,2647.74048,TJ,CO2,74100.0,kg/TJ,196197569.568,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,1bf68087-bc2a-3734-af06-30741085dc15 +2015,Buenos Aires,II.1.1,2647.74048,TJ,CH4,3.9,kg/TJ,10326.187871999999,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,32a28254-bddd-36c0-ab5d-70575294c74c +2015,Buenos Aires,II.1.1,2647.74048,TJ,N2O,3.9,kg/TJ,10326.187871999999,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,32a28254-bddd-36c0-ab5d-70575294c74c +2015,Capital Federal,II.1.1,501.12241452,TJ,CO2,74100.0,kg/TJ,37133170.915932,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,b1f79d05-db5e-3458-b0d7-625b3627f03b +2015,Capital Federal,II.1.1,501.12241452,TJ,CH4,3.9,kg/TJ,1954.377416628,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,341a4010-84b3-3345-a527-977cba23646f +2015,Capital Federal,II.1.1,501.12241452,TJ,N2O,3.9,kg/TJ,1954.377416628,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,341a4010-84b3-3345-a527-977cba23646f +2015,Catamarca,II.1.1,0.5418,TJ,CO2,74100.0,kg/TJ,40147.38,Gas Oil combustion consumption by public passenger transport,AR-K,SESCO,annual,kg,b9978beb-db3a-3942-bf60-40a779aaa013 +2015,Catamarca,II.1.1,0.5418,TJ,CH4,3.9,kg/TJ,2.1130199999999997,Gas Oil combustion consumption by public passenger transport,AR-K,SESCO,annual,kg,ba4527a4-c8a1-3e7e-8d20-bd1ccde7dc1e +2015,Catamarca,II.1.1,0.5418,TJ,N2O,3.9,kg/TJ,2.1130199999999997,Gas Oil combustion consumption by public passenger transport,AR-K,SESCO,annual,kg,ba4527a4-c8a1-3e7e-8d20-bd1ccde7dc1e +2015,Chubut,II.1.1,11.29468788,TJ,CO2,74100.0,kg/TJ,836936.371908,Gas Oil combustion consumption by public passenger transport,AR-U,SESCO,annual,kg,6eb69363-5776-349a-a5c0-93fce0ec9fe5 +2015,Chubut,II.1.1,11.29468788,TJ,CH4,3.9,kg/TJ,44.049282731999995,Gas Oil combustion consumption by public passenger transport,AR-U,SESCO,annual,kg,2e4949a0-0887-31ae-b8f6-43654db39c09 +2015,Chubut,II.1.1,11.29468788,TJ,N2O,3.9,kg/TJ,44.049282731999995,Gas Oil combustion consumption by public passenger transport,AR-U,SESCO,annual,kg,2e4949a0-0887-31ae-b8f6-43654db39c09 +2015,Corrientes,II.1.1,0.65016,TJ,CO2,74100.0,kg/TJ,48176.856,Gas Oil combustion consumption by public passenger transport,AR-W,SESCO,annual,kg,2ba8a317-c81d-305d-81f6-bbe89e069275 +2015,Corrientes,II.1.1,0.65016,TJ,CH4,3.9,kg/TJ,2.535624,Gas Oil combustion consumption by public passenger transport,AR-W,SESCO,annual,kg,ab969a44-ed61-369c-a191-19805cd98dbe +2015,Corrientes,II.1.1,0.65016,TJ,N2O,3.9,kg/TJ,2.535624,Gas Oil combustion consumption by public passenger transport,AR-W,SESCO,annual,kg,ab969a44-ed61-369c-a191-19805cd98dbe +2015,Córdoba,II.1.1,105.10930836,TJ,CO2,74100.0,kg/TJ,7788599.749476,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,914ab449-f90a-3bbe-8f2c-1079e690295b +2015,Córdoba,II.1.1,105.10930836,TJ,CH4,3.9,kg/TJ,409.926302604,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,5edc1763-babc-364f-9725-97fcebbd9735 +2015,Córdoba,II.1.1,105.10930836,TJ,N2O,3.9,kg/TJ,409.926302604,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,5edc1763-babc-364f-9725-97fcebbd9735 +2015,Entre Rios,II.1.1,68.22468407999999,TJ,CO2,74100.0,kg/TJ,5055449.090328,Gas Oil combustion consumption by public passenger transport,AR-E,SESCO,annual,kg,e4f94f65-70f2-31bb-b951-ffab87584f65 +2015,Entre Rios,II.1.1,68.22468407999999,TJ,CH4,3.9,kg/TJ,266.07626791199993,Gas Oil combustion consumption by public passenger transport,AR-E,SESCO,annual,kg,b622207a-1567-356c-9643-3f3cdcfe64e5 +2015,Entre Rios,II.1.1,68.22468407999999,TJ,N2O,3.9,kg/TJ,266.07626791199993,Gas Oil combustion consumption by public passenger transport,AR-E,SESCO,annual,kg,b622207a-1567-356c-9643-3f3cdcfe64e5 +2015,Formosa,II.1.1,0.50568,TJ,CO2,74100.0,kg/TJ,37470.888,Gas Oil combustion consumption by public passenger transport,AR-P,SESCO,annual,kg,2414251f-b129-33ed-999e-1e583acfab98 +2015,Formosa,II.1.1,0.50568,TJ,CH4,3.9,kg/TJ,1.9721520000000001,Gas Oil combustion consumption by public passenger transport,AR-P,SESCO,annual,kg,0ab8a1ee-c755-3d6f-b804-eed5a6e78006 +2015,Formosa,II.1.1,0.50568,TJ,N2O,3.9,kg/TJ,1.9721520000000001,Gas Oil combustion consumption by public passenger transport,AR-P,SESCO,annual,kg,0ab8a1ee-c755-3d6f-b804-eed5a6e78006 +2015,La Pampa,II.1.1,1.19196,TJ,CO2,74100.0,kg/TJ,88324.23599999999,Gas Oil combustion consumption by public passenger transport,AR-L,SESCO,annual,kg,6ec28570-120b-3e7d-9e1b-4d7168b4eb68 +2015,La Pampa,II.1.1,1.19196,TJ,CH4,3.9,kg/TJ,4.648643999999999,Gas Oil combustion consumption by public passenger transport,AR-L,SESCO,annual,kg,9b292f88-ac74-38cf-ab26-bf28ba3b5511 +2015,La Pampa,II.1.1,1.19196,TJ,N2O,3.9,kg/TJ,4.648643999999999,Gas Oil combustion consumption by public passenger transport,AR-L,SESCO,annual,kg,9b292f88-ac74-38cf-ab26-bf28ba3b5511 +2015,Mendoza,II.1.1,1.19196,TJ,CO2,74100.0,kg/TJ,88324.23599999999,Gas Oil combustion consumption by public passenger transport,AR-M,SESCO,annual,kg,86c92e06-059c-3e42-9387-071565a595bb +2015,Mendoza,II.1.1,1.19196,TJ,CH4,3.9,kg/TJ,4.648643999999999,Gas Oil combustion consumption by public passenger transport,AR-M,SESCO,annual,kg,a0568891-5f36-3c91-a71f-36ed431a340b +2015,Mendoza,II.1.1,1.19196,TJ,N2O,3.9,kg/TJ,4.648643999999999,Gas Oil combustion consumption by public passenger transport,AR-M,SESCO,annual,kg,a0568891-5f36-3c91-a71f-36ed431a340b +2015,Misiones,II.1.1,0.68628,TJ,CO2,74100.0,kg/TJ,50853.348,Gas Oil combustion consumption by public passenger transport,AR-N,SESCO,annual,kg,84dee5fa-056a-37fe-8b95-4ce2cd9c2738 +2015,Misiones,II.1.1,0.68628,TJ,CH4,3.9,kg/TJ,2.676492,Gas Oil combustion consumption by public passenger transport,AR-N,SESCO,annual,kg,9dcdd8b7-4f24-3db8-954a-386b0e69ccde +2015,Misiones,II.1.1,0.68628,TJ,N2O,3.9,kg/TJ,2.676492,Gas Oil combustion consumption by public passenger transport,AR-N,SESCO,annual,kg,9dcdd8b7-4f24-3db8-954a-386b0e69ccde +2015,Rio Negro,II.1.1,55.10225196,TJ,CO2,74100.0,kg/TJ,4083076.8702359996,Gas Oil combustion consumption by public passenger transport,AR-R,SESCO,annual,kg,bbe530dc-85a6-3b89-aa50-b53300229a78 +2015,Rio Negro,II.1.1,55.10225196,TJ,CH4,3.9,kg/TJ,214.898782644,Gas Oil combustion consumption by public passenger transport,AR-R,SESCO,annual,kg,9ada7076-3e68-356f-a341-f648ba62b883 +2015,Rio Negro,II.1.1,55.10225196,TJ,N2O,3.9,kg/TJ,214.898782644,Gas Oil combustion consumption by public passenger transport,AR-R,SESCO,annual,kg,9ada7076-3e68-356f-a341-f648ba62b883 +2015,San Juan,II.1.1,0.10836,TJ,CO2,74100.0,kg/TJ,8029.476,Gas Oil combustion consumption by public passenger transport,AR-J,SESCO,annual,kg,fb471af3-2bb2-3a62-a9c8-e2d443a41095 +2015,San Juan,II.1.1,0.10836,TJ,CH4,3.9,kg/TJ,0.422604,Gas Oil combustion consumption by public passenger transport,AR-J,SESCO,annual,kg,bf6e68db-cf87-3c85-9c4c-f9585f4dd4c2 +2015,San Juan,II.1.1,0.10836,TJ,N2O,3.9,kg/TJ,0.422604,Gas Oil combustion consumption by public passenger transport,AR-J,SESCO,annual,kg,bf6e68db-cf87-3c85-9c4c-f9585f4dd4c2 +2015,San Luis,II.1.1,0.28896,TJ,CO2,74100.0,kg/TJ,21411.935999999998,Gas Oil combustion consumption by public passenger transport,AR-D,SESCO,annual,kg,72d043a2-68e2-365f-8cc4-12717010f16b +2015,San Luis,II.1.1,0.28896,TJ,CH4,3.9,kg/TJ,1.126944,Gas Oil combustion consumption by public passenger transport,AR-D,SESCO,annual,kg,082f2789-22a0-35e4-b33b-02c355e293fe +2015,San Luis,II.1.1,0.28896,TJ,N2O,3.9,kg/TJ,1.126944,Gas Oil combustion consumption by public passenger transport,AR-D,SESCO,annual,kg,082f2789-22a0-35e4-b33b-02c355e293fe +2015,Santa Cruz,II.1.1,1.3364399999999999,TJ,CO2,74100.0,kg/TJ,99030.20399999998,Gas Oil combustion consumption by public passenger transport,AR-Z,SESCO,annual,kg,bfefd427-2039-3705-aadd-37ccdc5c1fad +2015,Santa Cruz,II.1.1,1.3364399999999999,TJ,CH4,3.9,kg/TJ,5.212115999999999,Gas Oil combustion consumption by public passenger transport,AR-Z,SESCO,annual,kg,568020b5-2d25-3620-b689-54066fbf1877 +2015,Santa Cruz,II.1.1,1.3364399999999999,TJ,N2O,3.9,kg/TJ,5.212115999999999,Gas Oil combustion consumption by public passenger transport,AR-Z,SESCO,annual,kg,568020b5-2d25-3620-b689-54066fbf1877 +2015,Santa Fe,II.1.1,24.483038999999998,TJ,CO2,74100.0,kg/TJ,1814193.1898999999,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,6aebb2fc-b02b-3bcf-98a9-d0a9854ea3af +2015,Santa Fe,II.1.1,24.483038999999998,TJ,CH4,3.9,kg/TJ,95.4838521,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,eccfd4ba-5545-3056-9c31-54f45bdd4b15 +2015,Santa Fe,II.1.1,24.483038999999998,TJ,N2O,3.9,kg/TJ,95.4838521,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,eccfd4ba-5545-3056-9c31-54f45bdd4b15 +2015,Santiago del Estero,II.1.1,1.04748,TJ,CO2,74100.0,kg/TJ,77618.268,Gas Oil combustion consumption by public passenger transport,AR-G,SESCO,annual,kg,89f99194-aab6-37c4-add6-863a428bf31a +2015,Santiago del Estero,II.1.1,1.04748,TJ,CH4,3.9,kg/TJ,4.085172,Gas Oil combustion consumption by public passenger transport,AR-G,SESCO,annual,kg,9cba0d8e-cd23-3eb7-9dd6-8cc9c9ad1f4f +2015,Santiago del Estero,II.1.1,1.04748,TJ,N2O,3.9,kg/TJ,4.085172,Gas Oil combustion consumption by public passenger transport,AR-G,SESCO,annual,kg,9cba0d8e-cd23-3eb7-9dd6-8cc9c9ad1f4f +2015,Buenos Aires,II.1.1,2.709,TJ,CO2,74100.0,kg/TJ,200736.9,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,cef426be-5a9d-3bf8-ab91-89be40b0fdba +2015,Buenos Aires,II.1.1,2.709,TJ,CH4,3.9,kg/TJ,10.5651,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,3a0a7fab-e268-39e6-a956-3e05fd289bd5 +2015,Buenos Aires,II.1.1,2.709,TJ,N2O,3.9,kg/TJ,10.5651,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,3a0a7fab-e268-39e6-a956-3e05fd289bd5 +2015,Capital Federal,II.1.1,1.58928,TJ,CO2,74100.0,kg/TJ,117765.648,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,89f98616-6ba2-3e3f-9d78-731641893eb4 +2015,Capital Federal,II.1.1,1.58928,TJ,CH4,3.9,kg/TJ,6.198192,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,527f8061-3fa3-3e7d-a248-2011e759d3c6 +2015,Capital Federal,II.1.1,1.58928,TJ,N2O,3.9,kg/TJ,6.198192,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,527f8061-3fa3-3e7d-a248-2011e759d3c6 +2015,Chubut,II.1.1,0.03612,TJ,CO2,74100.0,kg/TJ,2676.4919999999997,Gas Oil combustion consumption by public passenger transport,AR-U,SESCO,annual,kg,0018d26a-3f3a-3ed0-a113-24f50a4bca7b +2015,Chubut,II.1.1,0.03612,TJ,CH4,3.9,kg/TJ,0.140868,Gas Oil combustion consumption by public passenger transport,AR-U,SESCO,annual,kg,c935cdd5-ed88-35ce-8d68-c14891c9caad +2015,Chubut,II.1.1,0.03612,TJ,N2O,3.9,kg/TJ,0.140868,Gas Oil combustion consumption by public passenger transport,AR-U,SESCO,annual,kg,c935cdd5-ed88-35ce-8d68-c14891c9caad +2015,Córdoba,II.1.1,0.25284,TJ,CO2,74100.0,kg/TJ,18735.444,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,28809476-dab0-3901-b5ea-abb4c3766011 +2015,Córdoba,II.1.1,0.25284,TJ,CH4,3.9,kg/TJ,0.9860760000000001,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,a2f8dee5-ff9c-39ca-9c73-9ed6d3c5abfb +2015,Córdoba,II.1.1,0.25284,TJ,N2O,3.9,kg/TJ,0.9860760000000001,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,a2f8dee5-ff9c-39ca-9c73-9ed6d3c5abfb +2015,Rio Negro,II.1.1,1.04748,TJ,CO2,74100.0,kg/TJ,77618.268,Gas Oil combustion consumption by public passenger transport,AR-R,SESCO,annual,kg,83603ce7-9f88-3e83-ad2a-7abd7389dfcf +2015,Rio Negro,II.1.1,1.04748,TJ,CH4,3.9,kg/TJ,4.085172,Gas Oil combustion consumption by public passenger transport,AR-R,SESCO,annual,kg,b3cdb47e-51ee-3e55-a68f-15c68e5bc468 +2015,Rio Negro,II.1.1,1.04748,TJ,N2O,3.9,kg/TJ,4.085172,Gas Oil combustion consumption by public passenger transport,AR-R,SESCO,annual,kg,b3cdb47e-51ee-3e55-a68f-15c68e5bc468 +2015,Santa Fe,II.1.1,0.32508,TJ,CO2,74100.0,kg/TJ,24088.428,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,1e03caf0-d720-3e35-9bb5-b1240d7df42c +2015,Santa Fe,II.1.1,0.32508,TJ,CH4,3.9,kg/TJ,1.267812,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,bfb25bab-0ca7-3cd4-8471-f064ca1128ff +2015,Santa Fe,II.1.1,0.32508,TJ,N2O,3.9,kg/TJ,1.267812,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,bfb25bab-0ca7-3cd4-8471-f064ca1128ff +2015,Santiago del Estero,II.1.1,0.07224,TJ,CO2,74100.0,kg/TJ,5352.9839999999995,Gas Oil combustion consumption by public passenger transport,AR-G,SESCO,annual,kg,02b10c80-f015-39cb-aa5e-0fa5fb8fab17 +2015,Santiago del Estero,II.1.1,0.07224,TJ,CH4,3.9,kg/TJ,0.281736,Gas Oil combustion consumption by public passenger transport,AR-G,SESCO,annual,kg,e5567771-8320-33a5-9f80-456ff2ef92f1 +2015,Santiago del Estero,II.1.1,0.07224,TJ,N2O,3.9,kg/TJ,0.281736,Gas Oil combustion consumption by public passenger transport,AR-G,SESCO,annual,kg,e5567771-8320-33a5-9f80-456ff2ef92f1 +2015,Buenos Aires,II.1.1,6.510771,TJ,CO2,71500.0,kg/TJ,465520.1265,Jet Kerosene combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,2faa1c2d-3d72-3193-8438-7881d476f147 +2015,Buenos Aires,II.1.1,6.510771,TJ,CH4,0.5,kg/TJ,3.2553855,Jet Kerosene combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,b2209abb-d1ba-3c93-bcb0-b9c9923955cf +2015,Buenos Aires,II.1.1,6.510771,TJ,N2O,2.0,kg/TJ,13.021542,Jet Kerosene combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,0139772a-6f32-341e-b001-3a8f2472aff5 +2015,Buenos Aires,II.1.1,0.27412,TJ,CO2,73300.0,kg/TJ,20092.996,Naphtha combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,b6b1dee2-b0c1-3761-973b-282805620f85 +2015,Buenos Aires,II.1.1,0.27412,TJ,CH4,0.5,kg/TJ,0.13706,Naphtha combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,efff4a9a-dbad-3b75-8612-3b35c385973a +2015,Buenos Aires,II.1.1,0.27412,TJ,N2O,2.0,kg/TJ,0.54824,Naphtha combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,8a74ff95-1308-38de-b946-d7f1b93f533f +2015,Capital Federal,II.1.1,0.102795,TJ,CO2,73300.0,kg/TJ,7534.8735,Naphtha combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,053f6177-1540-3c2f-a780-534f8e4adff5 +2015,Capital Federal,II.1.1,0.102795,TJ,CH4,0.5,kg/TJ,0.0513975,Naphtha combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,78757fd5-8cc4-3ce1-952f-767bb32c9289 +2015,Capital Federal,II.1.1,0.102795,TJ,N2O,2.0,kg/TJ,0.20559,Naphtha combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,e2e866a6-4572-3b29-a70b-003553aef4b0 +2015,Chubut,II.1.1,0.6472704,TJ,CO2,74100.0,kg/TJ,47962.73664,Gas Oil combustion consumption by freight transport,AR-U,SESCO,annual,kg,2d0c105b-5f5a-3ee2-8d7d-e9f012406e89 +2015,Chubut,II.1.1,0.6472704,TJ,CH4,3.9,kg/TJ,2.52435456,Gas Oil combustion consumption by freight transport,AR-U,SESCO,annual,kg,45816fed-1f8d-3b12-b8ec-37cd2bc1c26f +2015,Chubut,II.1.1,0.6472704,TJ,N2O,3.9,kg/TJ,2.52435456,Gas Oil combustion consumption by freight transport,AR-U,SESCO,annual,kg,45816fed-1f8d-3b12-b8ec-37cd2bc1c26f +2015,Chubut,II.1.1,0.72250836,TJ,CO2,74100.0,kg/TJ,53537.869476,Gas Oil combustion consumption by freight transport,AR-U,SESCO,annual,kg,1340f39a-24dd-3ddf-8d84-d628ad9a534b +2015,Chubut,II.1.1,0.72250836,TJ,CH4,3.9,kg/TJ,2.8177826039999996,Gas Oil combustion consumption by freight transport,AR-U,SESCO,annual,kg,a684e5f3-0578-3e8a-b1a3-1cd93ca77531 +2015,Chubut,II.1.1,0.72250836,TJ,N2O,3.9,kg/TJ,2.8177826039999996,Gas Oil combustion consumption by freight transport,AR-U,SESCO,annual,kg,a684e5f3-0578-3e8a-b1a3-1cd93ca77531 +2015,Buenos Aires,II.5.1,399.507784788,TJ,CO2,74100.0,kg/TJ,29603526.8527908,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,74749242-9e49-3d76-a7d2-4cfe0bbdf5fe +2015,Buenos Aires,II.5.1,399.507784788,TJ,CH4,3.9,kg/TJ,1558.0803606732,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,13005a9b-289a-3202-8629-45267189378e +2015,Buenos Aires,II.5.1,399.507784788,TJ,N2O,3.9,kg/TJ,1558.0803606732,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,13005a9b-289a-3202-8629-45267189378e +2015,Córdoba,II.5.1,557.5511156880001,TJ,CO2,74100.0,kg/TJ,41314537.67248081,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,6213e843-f2ad-3ffd-b7eb-38b5c6796afc +2015,Córdoba,II.5.1,557.5511156880001,TJ,CH4,3.9,kg/TJ,2174.4493511832,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,fc32337e-9a53-3618-a3c8-76c2c5973037 +2015,Córdoba,II.5.1,557.5511156880001,TJ,N2O,3.9,kg/TJ,2174.4493511832,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,fc32337e-9a53-3618-a3c8-76c2c5973037 +2015,Entre Rios,II.5.1,394.850305836,TJ,CO2,74100.0,kg/TJ,29258407.6624476,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,12589ffd-7593-3eb3-9dd3-d1f1c7a094b5 +2015,Entre Rios,II.5.1,394.850305836,TJ,CH4,3.9,kg/TJ,1539.9161927604,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,f78acd09-ffbd-3f62-ba57-ec5573ee77fb +2015,Entre Rios,II.5.1,394.850305836,TJ,N2O,3.9,kg/TJ,1539.9161927604,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,f78acd09-ffbd-3f62-ba57-ec5573ee77fb +2015,La Pampa,II.5.1,80.77418798400001,TJ,CO2,74100.0,kg/TJ,5985367.329614401,Gas Oil combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,a970b4cd-b604-30c8-b92f-0a46274a6c9e +2015,La Pampa,II.5.1,80.77418798400001,TJ,CH4,3.9,kg/TJ,315.01933313760003,Gas Oil combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,c38d99df-004e-3e22-a109-59bb1c6adc50 +2015,La Pampa,II.5.1,80.77418798400001,TJ,N2O,3.9,kg/TJ,315.01933313760003,Gas Oil combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,c38d99df-004e-3e22-a109-59bb1c6adc50 +2015,Santa Fe,II.5.1,1123.565259348,TJ,CO2,74100.0,kg/TJ,83256185.71768679,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,c51584f8-454c-3943-9831-3cb14ef4a90d +2015,Santa Fe,II.5.1,1123.565259348,TJ,CH4,3.9,kg/TJ,4381.9045114572,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,dd052940-1468-3c29-b893-e4d4f4a658f4 +2015,Santa Fe,II.5.1,1123.565259348,TJ,N2O,3.9,kg/TJ,4381.9045114572,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,dd052940-1468-3c29-b893-e4d4f4a658f4 +2015,Santiago del Estero,II.5.1,55.894713923999994,TJ,CO2,74100.0,kg/TJ,4141798.3017684,Gas Oil combustion consumption by agriculture machines,AR-G,SESCO,annual,kg,e24e3484-f84a-3e4f-9353-1ee90f6dfb02 +2015,Santiago del Estero,II.5.1,55.894713923999994,TJ,CH4,3.9,kg/TJ,217.98938430359996,Gas Oil combustion consumption by agriculture machines,AR-G,SESCO,annual,kg,a0e0319c-8262-3810-8903-83231a3821a7 +2015,Santiago del Estero,II.5.1,55.894713923999994,TJ,N2O,3.9,kg/TJ,217.98938430359996,Gas Oil combustion consumption by agriculture machines,AR-G,SESCO,annual,kg,a0e0319c-8262-3810-8903-83231a3821a7 +2015,Córdoba,II.5.1,0.359552928,TJ,CO2,74100.0,kg/TJ,26642.8719648,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,d47efe3a-852e-3d99-8486-7be48de8e980 +2015,Córdoba,II.5.1,0.359552928,TJ,CH4,3.9,kg/TJ,1.4022564192,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,8f2acbe6-a123-32ae-883b-3761ede56bab +2015,Córdoba,II.5.1,0.359552928,TJ,N2O,3.9,kg/TJ,1.4022564192,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,8f2acbe6-a123-32ae-883b-3761ede56bab +2015,Entre Rios,II.5.1,1.934106804,TJ,CO2,74100.0,kg/TJ,143317.3141764,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,7e064799-abf7-3669-8f76-ef5fa861448b +2015,Entre Rios,II.5.1,1.934106804,TJ,CH4,3.9,kg/TJ,7.5430165356,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,a329212e-ab2c-3e60-887a-30d0763d80cc +2015,Entre Rios,II.5.1,1.934106804,TJ,N2O,3.9,kg/TJ,7.5430165356,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,a329212e-ab2c-3e60-887a-30d0763d80cc +2015,Córdoba,II.5.1,7.009029104000001,TJ,CO2,73300.0,kg/TJ,513761.83332320006,Naphtha combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,e8214b50-10ab-324c-91b3-b8db3846449c +2015,Córdoba,II.5.1,7.009029104000001,TJ,CH4,0.5,kg/TJ,3.5045145520000003,Naphtha combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,d6d8eacf-769f-3acc-aed0-f99db0a98584 +2015,Córdoba,II.5.1,7.009029104000001,TJ,N2O,2.0,kg/TJ,14.018058208000001,Naphtha combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,f974a8d4-9867-3a89-9c11-b5d28c733463 +2015,Santa Fe,II.5.1,14.6636005285,TJ,CO2,73300.0,kg/TJ,1074841.91873905,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,939f4085-2476-301f-b28b-86d3b7bc1675 +2015,Santa Fe,II.5.1,14.6636005285,TJ,CH4,0.5,kg/TJ,7.33180026425,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,5067b550-b685-37d8-8d9d-3df77873b2ab +2015,Santa Fe,II.5.1,14.6636005285,TJ,N2O,2.0,kg/TJ,29.327201057,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,7e3deaba-cbbc-30ac-96af-9ade494ae31d +2015,Santiago del Estero,II.5.1,16.0404573175,TJ,CO2,73300.0,kg/TJ,1175765.52137275,Naphtha combustion consumption by agriculture machines,AR-G,SESCO,annual,kg,7d495237-809c-333d-9379-d36445047260 +2015,Santiago del Estero,II.5.1,16.0404573175,TJ,CH4,0.5,kg/TJ,8.02022865875,Naphtha combustion consumption by agriculture machines,AR-G,SESCO,annual,kg,acf94ddb-d992-35df-b4d0-ae0a3724b9a6 +2015,Santiago del Estero,II.5.1,16.0404573175,TJ,N2O,2.0,kg/TJ,32.080914635,Naphtha combustion consumption by agriculture machines,AR-G,SESCO,annual,kg,920d9baf-372c-37b0-b59d-d8259e927780 +2015,Santa Fe,II.5.1,1.1529110285,TJ,CO2,73300.0,kg/TJ,84508.37838904999,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,66639d16-0bb1-39d1-a275-02bb811db701 +2015,Santa Fe,II.5.1,1.1529110285,TJ,CH4,0.5,kg/TJ,0.57645551425,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,9658d67d-933b-3466-ba80-ab58ec1c4a32 +2015,Santa Fe,II.5.1,1.1529110285,TJ,N2O,2.0,kg/TJ,2.305822057,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,c2a0e5af-347d-3c32-8bea-b98dfd674b35 +2015,Buenos Aires,II.1.1,276.22680783600003,TJ,CO2,74100.0,kg/TJ,20468406.4606476,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,23670be9-80c4-30d9-a4b5-d098f7944296 +2015,Buenos Aires,II.1.1,276.22680783600003,TJ,CH4,3.9,kg/TJ,1077.2845505604,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,cf0d5e51-c488-38a8-b45c-127146644aba +2015,Buenos Aires,II.1.1,276.22680783600003,TJ,N2O,3.9,kg/TJ,1077.2845505604,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,cf0d5e51-c488-38a8-b45c-127146644aba +2015,Chaco,II.1.1,10.009765836000001,TJ,CO2,74100.0,kg/TJ,741723.6484476001,Gas Oil combustion consumption by public passenger transport,AR-H,SESCO,annual,kg,efcb4789-e066-3955-aeb9-026d295d21fb +2015,Chaco,II.1.1,10.009765836000001,TJ,CH4,3.9,kg/TJ,39.038086760400006,Gas Oil combustion consumption by public passenger transport,AR-H,SESCO,annual,kg,d98a15b5-f3c9-3e1e-b07d-562af549e470 +2015,Chaco,II.1.1,10.009765836000001,TJ,N2O,3.9,kg/TJ,39.038086760400006,Gas Oil combustion consumption by public passenger transport,AR-H,SESCO,annual,kg,d98a15b5-f3c9-3e1e-b07d-562af549e470 +2015,Corrientes,II.1.1,38.07293616,TJ,CO2,74100.0,kg/TJ,2821204.569456,Gas Oil combustion consumption by public passenger transport,AR-W,SESCO,annual,kg,eae98625-df56-3345-8efd-d3bf4a1201f0 +2015,Corrientes,II.1.1,38.07293616,TJ,CH4,3.9,kg/TJ,148.48445102399998,Gas Oil combustion consumption by public passenger transport,AR-W,SESCO,annual,kg,1ebb69e6-8179-3d98-8de5-6e02810e0879 +2015,Corrientes,II.1.1,38.07293616,TJ,N2O,3.9,kg/TJ,148.48445102399998,Gas Oil combustion consumption by public passenger transport,AR-W,SESCO,annual,kg,1ebb69e6-8179-3d98-8de5-6e02810e0879 +2015,Córdoba,II.1.1,335.9979057119999,TJ,CO2,74100.0,kg/TJ,24897444.813259196,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,df9f3e18-d6e1-3f63-9912-f12dc8ac891f +2015,Córdoba,II.1.1,335.9979057119999,TJ,CH4,3.9,kg/TJ,1310.3918322767997,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,48e8b6e2-1c67-3a18-a591-c79c99a853ea +2015,Córdoba,II.1.1,335.9979057119999,TJ,N2O,3.9,kg/TJ,1310.3918322767997,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,48e8b6e2-1c67-3a18-a591-c79c99a853ea +2015,Entre Rios,II.1.1,95.890068456,TJ,CO2,74100.0,kg/TJ,7105454.0725895995,Gas Oil combustion consumption by public passenger transport,AR-E,SESCO,annual,kg,09d51464-25a7-32b8-b28b-728c08bd2338 +2015,Entre Rios,II.1.1,95.890068456,TJ,CH4,3.9,kg/TJ,373.97126697839997,Gas Oil combustion consumption by public passenger transport,AR-E,SESCO,annual,kg,d94d716a-4449-395d-b8ef-639074589a64 +2015,Entre Rios,II.1.1,95.890068456,TJ,N2O,3.9,kg/TJ,373.97126697839997,Gas Oil combustion consumption by public passenger transport,AR-E,SESCO,annual,kg,d94d716a-4449-395d-b8ef-639074589a64 +2015,Jujuy,II.1.1,105.05322483599998,TJ,CO2,74100.0,kg/TJ,7784443.960347598,Gas Oil combustion consumption by public passenger transport,AR-Y,SESCO,annual,kg,3ff03235-80cf-3eed-8ba0-b127e9b627f2 +2015,Jujuy,II.1.1,105.05322483599998,TJ,CH4,3.9,kg/TJ,409.7075768603999,Gas Oil combustion consumption by public passenger transport,AR-Y,SESCO,annual,kg,06adfee0-81ca-3480-8fca-ca58ab7b63a6 +2015,Jujuy,II.1.1,105.05322483599998,TJ,N2O,3.9,kg/TJ,409.7075768603999,Gas Oil combustion consumption by public passenger transport,AR-Y,SESCO,annual,kg,06adfee0-81ca-3480-8fca-ca58ab7b63a6 +2015,Salta,II.1.1,90.214316136,TJ,CO2,74100.0,kg/TJ,6684880.8256776,Gas Oil combustion consumption by public passenger transport,AR-A,SESCO,annual,kg,8358e4c9-98cf-3959-bb4d-49042d0be694 +2015,Salta,II.1.1,90.214316136,TJ,CH4,3.9,kg/TJ,351.8358329304,Gas Oil combustion consumption by public passenger transport,AR-A,SESCO,annual,kg,cb0c8e15-c710-35cf-b183-0e0d521dc31d +2015,Salta,II.1.1,90.214316136,TJ,N2O,3.9,kg/TJ,351.8358329304,Gas Oil combustion consumption by public passenger transport,AR-A,SESCO,annual,kg,cb0c8e15-c710-35cf-b183-0e0d521dc31d +2015,Santa Fe,II.1.1,306.38940620399995,TJ,CO2,74100.0,kg/TJ,22703454.999716397,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,6eef01ba-0301-3e2d-802f-d6a99f28d9fd +2015,Santa Fe,II.1.1,306.38940620399995,TJ,CH4,3.9,kg/TJ,1194.9186841955998,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,39a17ad5-c3c9-3770-91eb-f692314001ed +2015,Santa Fe,II.1.1,306.38940620399995,TJ,N2O,3.9,kg/TJ,1194.9186841955998,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,39a17ad5-c3c9-3770-91eb-f692314001ed +2015,Santiago del Estero,II.1.1,126.25103064,TJ,CO2,74100.0,kg/TJ,9355201.370424,Gas Oil combustion consumption by public passenger transport,AR-G,SESCO,annual,kg,ccccb12a-e5d0-38ef-ba6b-7398db024db2 +2015,Santiago del Estero,II.1.1,126.25103064,TJ,CH4,3.9,kg/TJ,492.37901949599996,Gas Oil combustion consumption by public passenger transport,AR-G,SESCO,annual,kg,922de990-575a-3d3d-aed1-a203e1c2a995 +2015,Santiago del Estero,II.1.1,126.25103064,TJ,N2O,3.9,kg/TJ,492.37901949599996,Gas Oil combustion consumption by public passenger transport,AR-G,SESCO,annual,kg,922de990-575a-3d3d-aed1-a203e1c2a995 +2015,Tucuman,II.1.1,29.206642836,TJ,CO2,74100.0,kg/TJ,2164212.2341476,Gas Oil combustion consumption by public passenger transport,AR-T,SESCO,annual,kg,a2d30a25-b5b3-321c-8886-8c37b9111404 +2015,Tucuman,II.1.1,29.206642836,TJ,CH4,3.9,kg/TJ,113.9059070604,Gas Oil combustion consumption by public passenger transport,AR-T,SESCO,annual,kg,24f75ce5-fb4b-357d-8c82-583dedf08a9b +2015,Tucuman,II.1.1,29.206642836,TJ,N2O,3.9,kg/TJ,113.9059070604,Gas Oil combustion consumption by public passenger transport,AR-T,SESCO,annual,kg,24f75ce5-fb4b-357d-8c82-583dedf08a9b +2015,Córdoba,II.1.1,0.7917937439999998,TJ,CO2,74100.0,kg/TJ,58671.916430399986,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,7880237a-2470-34d8-8014-5e042a7a9a5c +2015,Córdoba,II.1.1,0.7917937439999998,TJ,CH4,3.9,kg/TJ,3.087995601599999,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,4c612aeb-405f-36ed-8247-7dec28a8d438 +2015,Córdoba,II.1.1,0.7917937439999998,TJ,N2O,3.9,kg/TJ,3.087995601599999,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,4c612aeb-405f-36ed-8247-7dec28a8d438 +2015,Buenos Aires,II.5.1,519.48419712,TJ,CO2,74100.0,kg/TJ,38493779.006592,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,bcc34d8e-0073-3ef1-a981-5686e9ca4de3 +2015,Buenos Aires,II.5.1,519.48419712,TJ,CH4,3.9,kg/TJ,2025.9883687679999,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,e7737653-77c1-34ff-87f1-38a2009fd908 +2015,Buenos Aires,II.5.1,519.48419712,TJ,N2O,3.9,kg/TJ,2025.9883687679999,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,e7737653-77c1-34ff-87f1-38a2009fd908 +2015,Córdoba,II.5.1,78.08840592,TJ,CO2,74100.0,kg/TJ,5786350.878672,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,b562d65d-10a0-3d3a-b270-1514020891a2 +2015,Córdoba,II.5.1,78.08840592,TJ,CH4,3.9,kg/TJ,304.544783088,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,879a0791-1bb7-320d-b0a4-3c4ae94ea3ba +2015,Córdoba,II.5.1,78.08840592,TJ,N2O,3.9,kg/TJ,304.544783088,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,879a0791-1bb7-320d-b0a4-3c4ae94ea3ba +2015,La Pampa,II.5.1,3.61730964,TJ,CO2,74100.0,kg/TJ,268042.644324,Gas Oil combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,2d5c5f1f-f127-3bd5-9647-68fc09fa027a +2015,La Pampa,II.5.1,3.61730964,TJ,CH4,3.9,kg/TJ,14.107507596000001,Gas Oil combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,f1e52adb-6a98-3550-94aa-fbc1c6a46dde +2015,La Pampa,II.5.1,3.61730964,TJ,N2O,3.9,kg/TJ,14.107507596000001,Gas Oil combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,f1e52adb-6a98-3550-94aa-fbc1c6a46dde +2015,Neuquén,II.5.1,50.72526648,TJ,CO2,74100.0,kg/TJ,3758742.246168,Gas Oil combustion consumption by agriculture machines,AR-Q,SESCO,annual,kg,ebde6a9f-73fb-3cca-aa7d-beaed16e4072 +2015,Neuquén,II.5.1,50.72526648,TJ,CH4,3.9,kg/TJ,197.828539272,Gas Oil combustion consumption by agriculture machines,AR-Q,SESCO,annual,kg,03c3a84c-df6e-3b6f-a334-c09bae00daec +2015,Neuquén,II.5.1,50.72526648,TJ,N2O,3.9,kg/TJ,197.828539272,Gas Oil combustion consumption by agriculture machines,AR-Q,SESCO,annual,kg,03c3a84c-df6e-3b6f-a334-c09bae00daec +2015,Rio Negro,II.5.1,4.19718012,TJ,CO2,74100.0,kg/TJ,311011.04689199995,Gas Oil combustion consumption by agriculture machines,AR-R,SESCO,annual,kg,d89fbdfb-0246-3fa2-ac52-93f58892575f +2015,Rio Negro,II.5.1,4.19718012,TJ,CH4,3.9,kg/TJ,16.369002467999998,Gas Oil combustion consumption by agriculture machines,AR-R,SESCO,annual,kg,639e7d05-e8f1-32ae-912f-279ca3cd464f +2015,Rio Negro,II.5.1,4.19718012,TJ,N2O,3.9,kg/TJ,16.369002467999998,Gas Oil combustion consumption by agriculture machines,AR-R,SESCO,annual,kg,639e7d05-e8f1-32ae-912f-279ca3cd464f +2015,Santa Fe,II.5.1,8.47367976,TJ,CO2,74100.0,kg/TJ,627899.6702159999,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,fb72110c-b0cc-332d-aed4-41771a3e394c +2015,Santa Fe,II.5.1,8.47367976,TJ,CH4,3.9,kg/TJ,33.047351064,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,36629245-85af-3362-a5a7-4157479c3b63 +2015,Santa Fe,II.5.1,8.47367976,TJ,N2O,3.9,kg/TJ,33.047351064,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,36629245-85af-3362-a5a7-4157479c3b63 +2015,Buenos Aires,II.5.1,1.1915265599999998,TJ,CO2,74100.0,kg/TJ,88292.11809599999,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,74d32bf7-6333-3ceb-9580-39cada88fc5a +2015,Buenos Aires,II.5.1,1.1915265599999998,TJ,CH4,3.9,kg/TJ,4.646953583999999,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,7b78e6f3-77b9-39fd-91b2-8c190a27478f +2015,Buenos Aires,II.5.1,1.1915265599999998,TJ,N2O,3.9,kg/TJ,4.646953583999999,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,7b78e6f3-77b9-39fd-91b2-8c190a27478f +2015,Buenos Aires,II.5.1,8.83570996,TJ,CO2,73300.0,kg/TJ,647657.5400680001,Naphtha combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,46c584dc-a250-30fd-b953-8dfb8f11ab18 +2015,Buenos Aires,II.5.1,8.83570996,TJ,CH4,0.5,kg/TJ,4.41785498,Naphtha combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,1ca33192-0ef2-3da1-9303-76c56e63e912 +2015,Buenos Aires,II.5.1,8.83570996,TJ,N2O,2.0,kg/TJ,17.67141992,Naphtha combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,582a4c7e-3d95-3566-a457-a061a4201f1c +2015,Rio Negro,II.5.1,0.23533202,TJ,CO2,73300.0,kg/TJ,17249.837066,Naphtha combustion consumption by agriculture machines,AR-R,SESCO,annual,kg,561d237f-5fb4-3259-8ad5-61e7ff230f34 +2015,Rio Negro,II.5.1,0.23533202,TJ,CH4,0.5,kg/TJ,0.11766601,Naphtha combustion consumption by agriculture machines,AR-R,SESCO,annual,kg,ff7efc3b-fef0-3ff3-ab18-54fd0076fcba +2015,Rio Negro,II.5.1,0.23533202,TJ,N2O,2.0,kg/TJ,0.47066404,Naphtha combustion consumption by agriculture machines,AR-R,SESCO,annual,kg,7769e23d-cc0b-3f53-b0a9-32576c5a01b3 +2015,Buenos Aires,II.2.1,32.150123040000004,TJ,CO2,74100.0,kg/TJ,2382324.1172640002,Gas Oil combustion consumption by railway transport,AR-B,SESCO,annual,kg,84ebc478-0fa2-3a3c-aedb-ac9da58354f6 +2015,Buenos Aires,II.2.1,32.150123040000004,TJ,CH4,3.9,kg/TJ,125.38547985600002,Gas Oil combustion consumption by railway transport,AR-B,SESCO,annual,kg,038ad54b-4090-3cd3-8103-252199438d79 +2015,Buenos Aires,II.2.1,32.150123040000004,TJ,N2O,3.9,kg/TJ,125.38547985600002,Gas Oil combustion consumption by railway transport,AR-B,SESCO,annual,kg,038ad54b-4090-3cd3-8103-252199438d79 +2015,Buenos Aires,II.1.1,1.085793,TJ,CO2,69300.0,kg/TJ,75245.4549,Motor Gasoline combustion consumption by freight transport,AR-B,SESCO,annual,kg,5d5acd89-b165-37eb-8f2a-74c332633e3a +2015,Buenos Aires,II.1.1,1.085793,TJ,CH4,33.0,kg/TJ,35.831169,Motor Gasoline combustion consumption by freight transport,AR-B,SESCO,annual,kg,6afe4e1d-c895-37cd-8cd6-ed31674c5112 +2015,Buenos Aires,II.1.1,1.085793,TJ,N2O,3.2,kg/TJ,3.4745376,Motor Gasoline combustion consumption by freight transport,AR-B,SESCO,annual,kg,d54db7ad-e0d3-3bc0-bbf9-4a4892a0ece5 +2015,Buenos Aires,II.1.1,283.58328516,TJ,CO2,74100.0,kg/TJ,21013521.430356,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,de5097b4-2818-33d2-a922-36ad700bf936 +2015,Buenos Aires,II.1.1,283.58328516,TJ,CH4,3.9,kg/TJ,1105.974812124,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,f79824d3-a8bc-3878-befe-7dc25f64e302 +2015,Buenos Aires,II.1.1,283.58328516,TJ,N2O,3.9,kg/TJ,1105.974812124,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,f79824d3-a8bc-3878-befe-7dc25f64e302 +2015,Chubut,II.1.1,0.5326616399999999,TJ,CO2,74100.0,kg/TJ,39470.227523999994,Gas Oil combustion consumption by freight transport,AR-U,SESCO,annual,kg,4af4318b-99ff-3ac4-b77a-9afe4d758417 +2015,Chubut,II.1.1,0.5326616399999999,TJ,CH4,3.9,kg/TJ,2.0773803959999997,Gas Oil combustion consumption by freight transport,AR-U,SESCO,annual,kg,22f538cf-adf1-3714-b909-c075673b64aa +2015,Chubut,II.1.1,0.5326616399999999,TJ,N2O,3.9,kg/TJ,2.0773803959999997,Gas Oil combustion consumption by freight transport,AR-U,SESCO,annual,kg,22f538cf-adf1-3714-b909-c075673b64aa +2015,San Luis,II.1.1,68.2402518,TJ,CO2,74100.0,kg/TJ,5056602.65838,Gas Oil combustion consumption by freight transport,AR-D,SESCO,annual,kg,c3af7820-8265-331c-9daf-6a96c3586ad4 +2015,San Luis,II.1.1,68.2402518,TJ,CH4,3.9,kg/TJ,266.13698202,Gas Oil combustion consumption by freight transport,AR-D,SESCO,annual,kg,117acec6-259f-314e-85c8-6582fa05503f +2015,San Luis,II.1.1,68.2402518,TJ,N2O,3.9,kg/TJ,266.13698202,Gas Oil combustion consumption by freight transport,AR-D,SESCO,annual,kg,117acec6-259f-314e-85c8-6582fa05503f +2015,Buenos Aires,II.1.1,3.42041952,TJ,CO2,74100.0,kg/TJ,253453.08643199998,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,2db9451d-6cb0-397f-a041-e1232676cb94 +2015,Buenos Aires,II.1.1,3.42041952,TJ,CH4,3.9,kg/TJ,13.339636127999999,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,9f968687-c513-3eea-806d-e69d18e57770 +2015,Buenos Aires,II.1.1,3.42041952,TJ,N2O,3.9,kg/TJ,13.339636127999999,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,9f968687-c513-3eea-806d-e69d18e57770 +2015,Buenos Aires,II.1.1,439.65520452000004,TJ,CO2,74100.0,kg/TJ,32578450.654932003,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,ae33aa15-e402-3402-b554-83cf5b14382c +2015,Buenos Aires,II.1.1,439.65520452000004,TJ,CH4,3.9,kg/TJ,1714.6552976280002,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,5c4fac7a-0917-36c2-8966-5667a30ff123 +2015,Buenos Aires,II.1.1,439.65520452000004,TJ,N2O,3.9,kg/TJ,1714.6552976280002,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,5c4fac7a-0917-36c2-8966-5667a30ff123 +2015,Capital Federal,II.1.1,58.76008824000001,TJ,CO2,74100.0,kg/TJ,4354122.538584,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,6e82297c-b061-3b65-9747-23222cfdfbb4 +2015,Capital Federal,II.1.1,58.76008824000001,TJ,CH4,3.9,kg/TJ,229.16434413600004,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,5779ad0b-3392-3d26-9907-21a9cab0860b +2015,Capital Federal,II.1.1,58.76008824000001,TJ,N2O,3.9,kg/TJ,229.16434413600004,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,5779ad0b-3392-3d26-9907-21a9cab0860b +2015,Chubut,II.1.1,35.23502388,TJ,CO2,74100.0,kg/TJ,2610915.269508,Gas Oil combustion consumption by public passenger transport,AR-U,SESCO,annual,kg,e547dc82-dbac-3bea-ba03-4a7fe2f81f69 +2015,Chubut,II.1.1,35.23502388,TJ,CH4,3.9,kg/TJ,137.416593132,Gas Oil combustion consumption by public passenger transport,AR-U,SESCO,annual,kg,f16ae9d4-6db7-3051-8661-734956136e9e +2015,Chubut,II.1.1,35.23502388,TJ,N2O,3.9,kg/TJ,137.416593132,Gas Oil combustion consumption by public passenger transport,AR-U,SESCO,annual,kg,f16ae9d4-6db7-3051-8661-734956136e9e +2015,Córdoba,II.1.1,283.72238328,TJ,CO2,74100.0,kg/TJ,21023828.601047996,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,1a9354b5-fc17-3bec-b771-efc364e7d864 +2015,Córdoba,II.1.1,283.72238328,TJ,CH4,3.9,kg/TJ,1106.5172947919998,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,6af060ed-0019-350d-8bd0-5fec96d95c9c +2015,Córdoba,II.1.1,283.72238328,TJ,N2O,3.9,kg/TJ,1106.5172947919998,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,6af060ed-0019-350d-8bd0-5fec96d95c9c +2015,Neuquén,II.1.1,27.757750440000002,TJ,CO2,74100.0,kg/TJ,2056849.3076040002,Gas Oil combustion consumption by public passenger transport,AR-Q,SESCO,annual,kg,8402ab6d-987f-3e54-b2e4-b4737ef66586 +2015,Neuquén,II.1.1,27.757750440000002,TJ,CH4,3.9,kg/TJ,108.25522671600001,Gas Oil combustion consumption by public passenger transport,AR-Q,SESCO,annual,kg,a1072ccd-4db6-393a-83e9-6640defc3cda +2015,Neuquén,II.1.1,27.757750440000002,TJ,N2O,3.9,kg/TJ,108.25522671600001,Gas Oil combustion consumption by public passenger transport,AR-Q,SESCO,annual,kg,a1072ccd-4db6-393a-83e9-6640defc3cda +2015,Rio Negro,II.1.1,135.34369884,TJ,CO2,74100.0,kg/TJ,10028968.084044,Gas Oil combustion consumption by public passenger transport,AR-R,SESCO,annual,kg,873495b9-f324-385b-bcea-ec64a5108d7a +2015,Rio Negro,II.1.1,135.34369884,TJ,CH4,3.9,kg/TJ,527.840425476,Gas Oil combustion consumption by public passenger transport,AR-R,SESCO,annual,kg,72b3209e-a5b8-3241-a6a6-fbe833cdd7ec +2015,Rio Negro,II.1.1,135.34369884,TJ,N2O,3.9,kg/TJ,527.840425476,Gas Oil combustion consumption by public passenger transport,AR-R,SESCO,annual,kg,72b3209e-a5b8-3241-a6a6-fbe833cdd7ec +2015,Santa Cruz,II.1.1,5.545900919999999,TJ,CO2,74100.0,kg/TJ,410951.25817199994,Gas Oil combustion consumption by public passenger transport,AR-Z,SESCO,annual,kg,41346242-9270-30b0-b191-f8e43c486357 +2015,Santa Cruz,II.1.1,5.545900919999999,TJ,CH4,3.9,kg/TJ,21.629013587999996,Gas Oil combustion consumption by public passenger transport,AR-Z,SESCO,annual,kg,537dd183-f299-3b9a-8ea4-cf45a2075059 +2015,Santa Cruz,II.1.1,5.545900919999999,TJ,N2O,3.9,kg/TJ,21.629013587999996,Gas Oil combustion consumption by public passenger transport,AR-Z,SESCO,annual,kg,537dd183-f299-3b9a-8ea4-cf45a2075059 +2015,Santa Fe,II.1.1,6.387388559999999,TJ,CO2,74100.0,kg/TJ,473305.4922959999,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,7c4c3218-847c-3a1d-8126-02000e950b77 +2015,Santa Fe,II.1.1,6.387388559999999,TJ,CH4,3.9,kg/TJ,24.910815383999996,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,b26ded4a-d19a-3a17-b005-2dbbf52ead77 +2015,Santa Fe,II.1.1,6.387388559999999,TJ,N2O,3.9,kg/TJ,24.910815383999996,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,b26ded4a-d19a-3a17-b005-2dbbf52ead77 +2015,Santiago del Estero,II.1.1,0.17922744,TJ,CO2,74100.0,kg/TJ,13280.753304,Gas Oil combustion consumption by public passenger transport,AR-G,SESCO,annual,kg,da1c421e-13d9-32cf-96fd-330f0db6cf06 +2015,Santiago del Estero,II.1.1,0.17922744,TJ,CH4,3.9,kg/TJ,0.6989870159999999,Gas Oil combustion consumption by public passenger transport,AR-G,SESCO,annual,kg,0d5e1a37-05d9-3daa-ab92-70a5f0c3f7a4 +2015,Santiago del Estero,II.1.1,0.17922744,TJ,N2O,3.9,kg/TJ,0.6989870159999999,Gas Oil combustion consumption by public passenger transport,AR-G,SESCO,annual,kg,0d5e1a37-05d9-3daa-ab92-70a5f0c3f7a4 +2015,Capital Federal,II.5.1,60.24799999999999,TJ,CO2,69300.0,kg/TJ,4175186.3999999994,Motor Gasoline combustion consumption by agriculture machines,AR-C,SESCO,annual,kg,43565269-9cd0-3064-ae25-ce8c97797ce6 +2015,Capital Federal,II.5.1,60.24799999999999,TJ,CH4,33.0,kg/TJ,1988.1839999999997,Motor Gasoline combustion consumption by agriculture machines,AR-C,SESCO,annual,kg,536a9ca9-d070-3fa7-bc9e-415a28f084a8 +2015,Capital Federal,II.5.1,60.24799999999999,TJ,N2O,3.2,kg/TJ,192.79359999999997,Motor Gasoline combustion consumption by agriculture machines,AR-C,SESCO,annual,kg,b047ba26-053d-3f2a-af3b-42069b719cf2 +2015,Buenos Aires,II.5.1,440.55564,TJ,CO2,74100.0,kg/TJ,32645172.924,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,e6021fba-0bd3-3f18-8f69-be382a49da43 +2015,Buenos Aires,II.5.1,440.55564,TJ,CH4,3.9,kg/TJ,1718.166996,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,7035be4e-fd37-3586-a359-a5631913600e +2015,Buenos Aires,II.5.1,440.55564,TJ,N2O,3.9,kg/TJ,1718.166996,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,7035be4e-fd37-3586-a359-a5631913600e +2015,Capital Federal,II.5.1,21.16632,TJ,CO2,74100.0,kg/TJ,1568424.312,Gas Oil combustion consumption by agriculture machines,AR-C,SESCO,annual,kg,e3d73b30-a3c0-3172-9ee8-4c8b9566d1ea +2015,Capital Federal,II.5.1,21.16632,TJ,CH4,3.9,kg/TJ,82.548648,Gas Oil combustion consumption by agriculture machines,AR-C,SESCO,annual,kg,26b83eec-daf3-3636-a54e-83821c20b080 +2015,Capital Federal,II.5.1,21.16632,TJ,N2O,3.9,kg/TJ,82.548648,Gas Oil combustion consumption by agriculture machines,AR-C,SESCO,annual,kg,26b83eec-daf3-3636-a54e-83821c20b080 +2015,Córdoba,II.5.1,166.07976,TJ,CO2,74100.0,kg/TJ,12306510.216,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,1f141379-a5e9-3d58-94b7-a2c353f80517 +2015,Córdoba,II.5.1,166.07976,TJ,CH4,3.9,kg/TJ,647.711064,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,139e20c5-59e1-3e56-8c9f-d917ce958207 +2015,Córdoba,II.5.1,166.07976,TJ,N2O,3.9,kg/TJ,647.711064,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,139e20c5-59e1-3e56-8c9f-d917ce958207 +2015,Santa Fe,II.5.1,482.77992,TJ,CO2,74100.0,kg/TJ,35773992.072,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,1ba327d0-f9ce-351e-81c8-810340c989d3 +2015,Santa Fe,II.5.1,482.77992,TJ,CH4,3.9,kg/TJ,1882.841688,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,caec9172-e3af-3008-aadb-fcc0e707702a +2015,Santa Fe,II.5.1,482.77992,TJ,N2O,3.9,kg/TJ,1882.841688,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,caec9172-e3af-3008-aadb-fcc0e707702a +2015,Buenos Aires,II.5.1,7.26012,TJ,CO2,74100.0,kg/TJ,537974.892,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,432b9c12-d887-35d6-a960-6a4df53626f5 +2015,Buenos Aires,II.5.1,7.26012,TJ,CH4,3.9,kg/TJ,28.314467999999998,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,77bc9fe8-5005-3940-a105-affb5737a1c9 +2015,Buenos Aires,II.5.1,7.26012,TJ,N2O,3.9,kg/TJ,28.314467999999998,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,77bc9fe8-5005-3940-a105-affb5737a1c9 +2015,Santa Fe,II.5.1,21.63588,TJ,CO2,74100.0,kg/TJ,1603218.708,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,6272e44a-681e-3b6f-8c71-481df3bc7ac5 +2015,Santa Fe,II.5.1,21.63588,TJ,CH4,3.9,kg/TJ,84.379932,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,2d74ee74-c249-3d44-9c29-f94df4d851b3 +2015,Santa Fe,II.5.1,21.63588,TJ,N2O,3.9,kg/TJ,84.379932,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,2d74ee74-c249-3d44-9c29-f94df4d851b3 +2015,Santa Fe,II.5.1,37.89709,TJ,CO2,73300.0,kg/TJ,2777856.6969999997,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,44c880ef-209b-3a32-8268-0297097d914d +2015,Santa Fe,II.5.1,37.89709,TJ,CH4,0.5,kg/TJ,18.948545,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,724941c8-21b6-3a67-ab2b-77483bc96501 +2015,Santa Fe,II.5.1,37.89709,TJ,N2O,2.0,kg/TJ,75.79418,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,e0c18b84-9b57-3900-afbd-1e4fffe7dc3f +2015,Santa Fe,II.5.1,6.3390249999999995,TJ,CO2,73300.0,kg/TJ,464650.5325,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,36248255-dd90-3a52-9035-39dcaa6f67b4 +2015,Santa Fe,II.5.1,6.3390249999999995,TJ,CH4,0.5,kg/TJ,3.1695124999999997,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,17dd680a-fb60-33fe-8b63-34087306a311 +2015,Santa Fe,II.5.1,6.3390249999999995,TJ,N2O,2.0,kg/TJ,12.678049999999999,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,d50050af-3319-384b-bdcb-82f0500d6ded +2015,Buenos Aires,II.2.1,539.52444,TJ,CO2,74100.0,kg/TJ,39978761.004,Gas Oil combustion consumption by railway transport,AR-B,SESCO,annual,kg,89f3aa03-492e-3376-98f5-228c93ab23e8 +2015,Buenos Aires,II.2.1,539.52444,TJ,CH4,3.9,kg/TJ,2104.145316,Gas Oil combustion consumption by railway transport,AR-B,SESCO,annual,kg,02aeb827-57e0-39f3-9e50-21a16055c376 +2015,Buenos Aires,II.2.1,539.52444,TJ,N2O,3.9,kg/TJ,2104.145316,Gas Oil combustion consumption by railway transport,AR-B,SESCO,annual,kg,02aeb827-57e0-39f3-9e50-21a16055c376 +2015,Capital Federal,II.2.1,281.3748,TJ,CO2,74100.0,kg/TJ,20849872.68,Gas Oil combustion consumption by railway transport,AR-C,SESCO,annual,kg,cd80a16d-76a1-3583-ba36-b46f3c6021af +2015,Capital Federal,II.2.1,281.3748,TJ,CH4,3.9,kg/TJ,1097.3617199999999,Gas Oil combustion consumption by railway transport,AR-C,SESCO,annual,kg,cdbc6d22-0c9f-3b33-a6e6-5a41f2ec9e1b +2015,Capital Federal,II.2.1,281.3748,TJ,N2O,3.9,kg/TJ,1097.3617199999999,Gas Oil combustion consumption by railway transport,AR-C,SESCO,annual,kg,cdbc6d22-0c9f-3b33-a6e6-5a41f2ec9e1b +2015,Santa Fe,II.2.1,352.45896,TJ,CO2,74100.0,kg/TJ,26117208.936,Gas Oil combustion consumption by railway transport,AR-S,SESCO,annual,kg,55708f1a-08e3-3fdf-a3e4-91b7b94a5a58 +2015,Santa Fe,II.2.1,352.45896,TJ,CH4,3.9,kg/TJ,1374.5899439999998,Gas Oil combustion consumption by railway transport,AR-S,SESCO,annual,kg,747ec81c-105d-33f0-b072-2d3a61fdd940 +2015,Santa Fe,II.2.1,352.45896,TJ,N2O,3.9,kg/TJ,1374.5899439999998,Gas Oil combustion consumption by railway transport,AR-S,SESCO,annual,kg,747ec81c-105d-33f0-b072-2d3a61fdd940 +2015,Capital Federal,II.2.1,0.75852,TJ,CO2,74100.0,kg/TJ,56206.331999999995,Gas Oil combustion consumption by railway transport,AR-C,SESCO,annual,kg,06087d13-9db0-342f-b420-c2eb377c4e63 +2015,Capital Federal,II.2.1,0.75852,TJ,CH4,3.9,kg/TJ,2.9582279999999996,Gas Oil combustion consumption by railway transport,AR-C,SESCO,annual,kg,30883a31-1d68-3863-9f27-ee145973d778 +2015,Capital Federal,II.2.1,0.75852,TJ,N2O,3.9,kg/TJ,2.9582279999999996,Gas Oil combustion consumption by railway transport,AR-C,SESCO,annual,kg,30883a31-1d68-3863-9f27-ee145973d778 +2015,Buenos Aires,II.1.1,10.3219,TJ,CO2,69300.0,kg/TJ,715307.6699999999,Motor Gasoline combustion consumption by freight transport,AR-B,SESCO,annual,kg,6338f2d0-417a-3055-891a-3c383dedbdf0 +2015,Buenos Aires,II.1.1,10.3219,TJ,CH4,33.0,kg/TJ,340.6227,Motor Gasoline combustion consumption by freight transport,AR-B,SESCO,annual,kg,e069689b-b581-38db-9b89-fd59135a9f02 +2015,Buenos Aires,II.1.1,10.3219,TJ,N2O,3.2,kg/TJ,33.03008,Motor Gasoline combustion consumption by freight transport,AR-B,SESCO,annual,kg,df0aa558-016c-3da8-8d33-8ba8bd28da10 +2015,Capital Federal,II.1.1,9.5688,TJ,CO2,69300.0,kg/TJ,663117.84,Motor Gasoline combustion consumption by freight transport,AR-C,SESCO,annual,kg,fc185a9c-a339-3002-a8bc-13c18df1bfec +2015,Capital Federal,II.1.1,9.5688,TJ,CH4,33.0,kg/TJ,315.7704,Motor Gasoline combustion consumption by freight transport,AR-C,SESCO,annual,kg,6f4dc749-cb84-3932-9c67-4098f722c43a +2015,Capital Federal,II.1.1,9.5688,TJ,N2O,3.2,kg/TJ,30.62016,Motor Gasoline combustion consumption by freight transport,AR-C,SESCO,annual,kg,01628c9f-681d-3137-a7e9-a095b7e6e273 +2015,Buenos Aires,II.1.1,567.987,TJ,CO2,74100.0,kg/TJ,42087836.699999996,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,9a63ab71-b80d-303e-be58-c06cc2d027b0 +2015,Buenos Aires,II.1.1,567.987,TJ,CH4,3.9,kg/TJ,2215.1493,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,46623fb3-b51a-3e1b-be1a-2964ffd36a53 +2015,Buenos Aires,II.1.1,567.987,TJ,N2O,3.9,kg/TJ,2215.1493,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,46623fb3-b51a-3e1b-be1a-2964ffd36a53 +2015,Capital Federal,II.1.1,193.96439999999998,TJ,CO2,74100.0,kg/TJ,14372762.04,Gas Oil combustion consumption by freight transport,AR-C,SESCO,annual,kg,a5109dd3-23cd-31ba-a28f-b696384b403a +2015,Capital Federal,II.1.1,193.96439999999998,TJ,CH4,3.9,kg/TJ,756.46116,Gas Oil combustion consumption by freight transport,AR-C,SESCO,annual,kg,a438eb60-bdb3-3ac0-81c7-4005d530dc0b +2015,Capital Federal,II.1.1,193.96439999999998,TJ,N2O,3.9,kg/TJ,756.46116,Gas Oil combustion consumption by freight transport,AR-C,SESCO,annual,kg,a438eb60-bdb3-3ac0-81c7-4005d530dc0b +2015,Córdoba,II.1.1,132.63263999999998,TJ,CO2,74100.0,kg/TJ,9828078.623999998,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,0f9aef51-bd57-312d-ac29-daf2f2f33a4e +2015,Córdoba,II.1.1,132.63263999999998,TJ,CH4,3.9,kg/TJ,517.2672959999999,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,6b7f176a-7dd4-38b6-bb0f-445bfaf71591 +2015,Córdoba,II.1.1,132.63263999999998,TJ,N2O,3.9,kg/TJ,517.2672959999999,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,6b7f176a-7dd4-38b6-bb0f-445bfaf71591 +2015,San Juan,II.1.1,1.3364399999999999,TJ,CO2,74100.0,kg/TJ,99030.20399999998,Gas Oil combustion consumption by freight transport,AR-J,SESCO,annual,kg,2e49e6e4-4e8e-39bb-bbe2-c7b4e22832d4 +2015,San Juan,II.1.1,1.3364399999999999,TJ,CH4,3.9,kg/TJ,5.212115999999999,Gas Oil combustion consumption by freight transport,AR-J,SESCO,annual,kg,4d1c3505-ead2-3d13-8b99-12a805fb4930 +2015,San Juan,II.1.1,1.3364399999999999,TJ,N2O,3.9,kg/TJ,5.212115999999999,Gas Oil combustion consumption by freight transport,AR-J,SESCO,annual,kg,4d1c3505-ead2-3d13-8b99-12a805fb4930 +2015,Buenos Aires,II.1.1,8.59656,TJ,CO2,74100.0,kg/TJ,637005.096,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,83a8a190-40e2-3d90-9387-66f63069bb25 +2015,Buenos Aires,II.1.1,8.59656,TJ,CH4,3.9,kg/TJ,33.526584,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,f5417b8c-dff2-321e-b443-2f4cace931a4 +2015,Buenos Aires,II.1.1,8.59656,TJ,N2O,3.9,kg/TJ,33.526584,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,f5417b8c-dff2-321e-b443-2f4cace931a4 +2015,Córdoba,II.1.1,0.75852,TJ,CO2,74100.0,kg/TJ,56206.331999999995,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,be4a6696-14a8-384a-a6df-e7817b520c1b +2015,Córdoba,II.1.1,0.75852,TJ,CH4,3.9,kg/TJ,2.9582279999999996,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,44f8ee51-a865-328d-b0f7-72d9a645745d +2015,Córdoba,II.1.1,0.75852,TJ,N2O,3.9,kg/TJ,2.9582279999999996,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,44f8ee51-a865-328d-b0f7-72d9a645745d +2015,Buenos Aires,II.1.1,6092.75772,TJ,CO2,74100.0,kg/TJ,451473347.052,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,9c928086-ad01-3a33-ac49-347b604512e6 +2015,Buenos Aires,II.1.1,6092.75772,TJ,CH4,3.9,kg/TJ,23761.755107999998,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,b9be1025-22c1-38cd-b31c-1e59ffc76925 +2015,Buenos Aires,II.1.1,6092.75772,TJ,N2O,3.9,kg/TJ,23761.755107999998,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,b9be1025-22c1-38cd-b31c-1e59ffc76925 +2015,Capital Federal,II.1.1,127.43136,TJ,CO2,74100.0,kg/TJ,9442663.776,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,1a013615-6f88-358b-b001-bdfefaeaf398 +2015,Capital Federal,II.1.1,127.43136,TJ,CH4,3.9,kg/TJ,496.982304,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,6810ec7a-aa6c-3a83-ae09-be37b2ed159a +2015,Capital Federal,II.1.1,127.43136,TJ,N2O,3.9,kg/TJ,496.982304,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,6810ec7a-aa6c-3a83-ae09-be37b2ed159a +2015,Misiones,II.1.1,339.31128,TJ,CO2,74100.0,kg/TJ,25142965.848,Gas Oil combustion consumption by public passenger transport,AR-N,SESCO,annual,kg,c17549a4-d22f-32e8-b6c0-b0a36811a9bc +2015,Misiones,II.1.1,339.31128,TJ,CH4,3.9,kg/TJ,1323.313992,Gas Oil combustion consumption by public passenger transport,AR-N,SESCO,annual,kg,c62b5db7-caed-3ead-9a7e-f9e362389abe +2015,Misiones,II.1.1,339.31128,TJ,N2O,3.9,kg/TJ,1323.313992,Gas Oil combustion consumption by public passenger transport,AR-N,SESCO,annual,kg,c62b5db7-caed-3ead-9a7e-f9e362389abe +2015,Buenos Aires,II.5.1,15.150599999999997,TJ,CO2,69300.0,kg/TJ,1049936.5799999998,Motor Gasoline combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,e21538d4-82c1-3b2d-9072-b91e2e6d7c3b +2015,Buenos Aires,II.5.1,15.150599999999997,TJ,CH4,33.0,kg/TJ,499.9697999999999,Motor Gasoline combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,e5550072-6e33-38fe-a781-85100b095c87 +2015,Buenos Aires,II.5.1,15.150599999999997,TJ,N2O,3.2,kg/TJ,48.481919999999995,Motor Gasoline combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,77504361-8f8c-3302-9b7e-4259d4d1e4df +2015,Buenos Aires,II.5.1,8549.64012,TJ,CO2,74100.0,kg/TJ,633528332.892,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,79e7f49d-5d66-3794-ab66-dfe08fedd7fd +2015,Buenos Aires,II.5.1,8549.64012,TJ,CH4,3.9,kg/TJ,33343.596467999996,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,68acb4d5-36c8-37d5-b8da-cf7d4a08aabd +2015,Buenos Aires,II.5.1,8549.64012,TJ,N2O,3.9,kg/TJ,33343.596467999996,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,68acb4d5-36c8-37d5-b8da-cf7d4a08aabd +2015,Capital Federal,II.5.1,16.976399999999998,TJ,CO2,74100.0,kg/TJ,1257951.2399999998,Gas Oil combustion consumption by agriculture machines,AR-C,SESCO,annual,kg,db84b8ea-db39-3793-8e84-0ea533c6fa07 +2015,Capital Federal,II.5.1,16.976399999999998,TJ,CH4,3.9,kg/TJ,66.20795999999999,Gas Oil combustion consumption by agriculture machines,AR-C,SESCO,annual,kg,24dd3f78-3cfe-3cd1-b8db-25fecc423b3b +2015,Capital Federal,II.5.1,16.976399999999998,TJ,N2O,3.9,kg/TJ,66.20795999999999,Gas Oil combustion consumption by agriculture machines,AR-C,SESCO,annual,kg,24dd3f78-3cfe-3cd1-b8db-25fecc423b3b +2015,Catamarca,II.5.1,124.28891999999999,TJ,CO2,74100.0,kg/TJ,9209808.972,Gas Oil combustion consumption by agriculture machines,AR-K,SESCO,annual,kg,eacca546-2122-36e6-aa77-c112d8bed9fd +2015,Catamarca,II.5.1,124.28891999999999,TJ,CH4,3.9,kg/TJ,484.72678799999994,Gas Oil combustion consumption by agriculture machines,AR-K,SESCO,annual,kg,c6a49559-01db-3932-b19f-06bf44c5fc56 +2015,Catamarca,II.5.1,124.28891999999999,TJ,N2O,3.9,kg/TJ,484.72678799999994,Gas Oil combustion consumption by agriculture machines,AR-K,SESCO,annual,kg,c6a49559-01db-3932-b19f-06bf44c5fc56 +2015,Chaco,II.5.1,1341.02724,TJ,CO2,74100.0,kg/TJ,99370118.484,Gas Oil combustion consumption by agriculture machines,AR-H,SESCO,annual,kg,fe8c51c9-9eef-3080-8197-523818daea05 +2015,Chaco,II.5.1,1341.02724,TJ,CH4,3.9,kg/TJ,5230.006235999999,Gas Oil combustion consumption by agriculture machines,AR-H,SESCO,annual,kg,4a3c985d-1739-3edf-b91f-6f9fc2c3c4f8 +2015,Chaco,II.5.1,1341.02724,TJ,N2O,3.9,kg/TJ,5230.006235999999,Gas Oil combustion consumption by agriculture machines,AR-H,SESCO,annual,kg,4a3c985d-1739-3edf-b91f-6f9fc2c3c4f8 +2015,Chubut,II.5.1,1.15584,TJ,CO2,74100.0,kg/TJ,85647.74399999999,Gas Oil combustion consumption by agriculture machines,AR-U,SESCO,annual,kg,4ec062f3-cc02-3c48-b061-57b174ae4315 +2015,Chubut,II.5.1,1.15584,TJ,CH4,3.9,kg/TJ,4.507776,Gas Oil combustion consumption by agriculture machines,AR-U,SESCO,annual,kg,db5257b5-578c-3155-ac2b-ab1e2c7d3a48 +2015,Chubut,II.5.1,1.15584,TJ,N2O,3.9,kg/TJ,4.507776,Gas Oil combustion consumption by agriculture machines,AR-U,SESCO,annual,kg,db5257b5-578c-3155-ac2b-ab1e2c7d3a48 +2015,Corrientes,II.5.1,334.2906,TJ,CO2,74100.0,kg/TJ,24770933.459999997,Gas Oil combustion consumption by agriculture machines,AR-W,SESCO,annual,kg,9a068367-69d7-3686-b8ba-9974e119a06d +2015,Corrientes,II.5.1,334.2906,TJ,CH4,3.9,kg/TJ,1303.73334,Gas Oil combustion consumption by agriculture machines,AR-W,SESCO,annual,kg,0fb78296-1a47-39b6-8734-13a14a09fe57 +2015,Corrientes,II.5.1,334.2906,TJ,N2O,3.9,kg/TJ,1303.73334,Gas Oil combustion consumption by agriculture machines,AR-W,SESCO,annual,kg,0fb78296-1a47-39b6-8734-13a14a09fe57 +2015,Córdoba,II.5.1,7403.29968,TJ,CO2,74100.0,kg/TJ,548584506.288,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,973f3755-f6e1-380a-93c7-a38c9e3c793d +2015,Córdoba,II.5.1,7403.29968,TJ,CH4,3.9,kg/TJ,28872.868752,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,abefe977-49d5-3aeb-a84f-e7941d723a24 +2015,Córdoba,II.5.1,7403.29968,TJ,N2O,3.9,kg/TJ,28872.868752,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,abefe977-49d5-3aeb-a84f-e7941d723a24 +2015,Entre Rios,II.5.1,2098.60812,TJ,CO2,74100.0,kg/TJ,155506861.692,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,2a21e21e-2c83-3396-b64f-ed7819e7104c +2015,Entre Rios,II.5.1,2098.60812,TJ,CH4,3.9,kg/TJ,8184.571668,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,a4adf205-cfba-3906-a976-bd3cdfa40f4b +2015,Entre Rios,II.5.1,2098.60812,TJ,N2O,3.9,kg/TJ,8184.571668,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,a4adf205-cfba-3906-a976-bd3cdfa40f4b +2015,Formosa,II.5.1,339.99755999999996,TJ,CO2,74100.0,kg/TJ,25193819.196,Gas Oil combustion consumption by agriculture machines,AR-P,SESCO,annual,kg,c8d4b873-7c09-35a9-a955-cc43f3122559 +2015,Formosa,II.5.1,339.99755999999996,TJ,CH4,3.9,kg/TJ,1325.990484,Gas Oil combustion consumption by agriculture machines,AR-P,SESCO,annual,kg,e0e31459-841a-376a-b267-c7297437437c +2015,Formosa,II.5.1,339.99755999999996,TJ,N2O,3.9,kg/TJ,1325.990484,Gas Oil combustion consumption by agriculture machines,AR-P,SESCO,annual,kg,e0e31459-841a-376a-b267-c7297437437c +2015,Jujuy,II.5.1,1086.5618399999998,TJ,CO2,74100.0,kg/TJ,80514232.34399998,Gas Oil combustion consumption by agriculture machines,AR-Y,SESCO,annual,kg,8a21148b-3fab-3844-9627-5b57b9dfbebf +2015,Jujuy,II.5.1,1086.5618399999998,TJ,CH4,3.9,kg/TJ,4237.591175999999,Gas Oil combustion consumption by agriculture machines,AR-Y,SESCO,annual,kg,66963297-39cf-3ef5-bd32-0146a3742876 +2015,Jujuy,II.5.1,1086.5618399999998,TJ,N2O,3.9,kg/TJ,4237.591175999999,Gas Oil combustion consumption by agriculture machines,AR-Y,SESCO,annual,kg,66963297-39cf-3ef5-bd32-0146a3742876 +2015,La Pampa,II.5.1,1989.6340799999998,TJ,CO2,74100.0,kg/TJ,147431885.32799998,Gas Oil combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,165579e8-9253-34b2-b24e-b8d980c36bb3 +2015,La Pampa,II.5.1,1989.6340799999998,TJ,CH4,3.9,kg/TJ,7759.572911999999,Gas Oil combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,40c6429f-3dea-3983-9057-4315a14c5bf7 +2015,La Pampa,II.5.1,1989.6340799999998,TJ,N2O,3.9,kg/TJ,7759.572911999999,Gas Oil combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,40c6429f-3dea-3983-9057-4315a14c5bf7 +2015,La Rioja,II.5.1,31.316039999999997,TJ,CO2,74100.0,kg/TJ,2320518.564,Gas Oil combustion consumption by agriculture machines,AR-F,SESCO,annual,kg,6e918b64-d431-3114-9cb3-a11e34cd11bd +2015,La Rioja,II.5.1,31.316039999999997,TJ,CH4,3.9,kg/TJ,122.132556,Gas Oil combustion consumption by agriculture machines,AR-F,SESCO,annual,kg,bf0f423a-ffa4-3287-8c49-d56afb9eb70e +2015,La Rioja,II.5.1,31.316039999999997,TJ,N2O,3.9,kg/TJ,122.132556,Gas Oil combustion consumption by agriculture machines,AR-F,SESCO,annual,kg,bf0f423a-ffa4-3287-8c49-d56afb9eb70e +2015,Mendoza,II.5.1,1072.43892,TJ,CO2,74100.0,kg/TJ,79467723.972,Gas Oil combustion consumption by agriculture machines,AR-M,SESCO,annual,kg,b6aca28a-26e7-348a-9e28-229080ee41c5 +2015,Mendoza,II.5.1,1072.43892,TJ,CH4,3.9,kg/TJ,4182.511788,Gas Oil combustion consumption by agriculture machines,AR-M,SESCO,annual,kg,1b6406d6-0b46-3f7f-b0a7-26882b900146 +2015,Mendoza,II.5.1,1072.43892,TJ,N2O,3.9,kg/TJ,4182.511788,Gas Oil combustion consumption by agriculture machines,AR-M,SESCO,annual,kg,1b6406d6-0b46-3f7f-b0a7-26882b900146 +2015,Misiones,II.5.1,977.15436,TJ,CO2,74100.0,kg/TJ,72407138.076,Gas Oil combustion consumption by agriculture machines,AR-N,SESCO,annual,kg,902051d5-08ec-3abe-a2af-ff8dc8373897 +2015,Misiones,II.5.1,977.15436,TJ,CH4,3.9,kg/TJ,3810.902004,Gas Oil combustion consumption by agriculture machines,AR-N,SESCO,annual,kg,db078204-4ee4-33af-b74a-d8f66df0e810 +2015,Misiones,II.5.1,977.15436,TJ,N2O,3.9,kg/TJ,3810.902004,Gas Oil combustion consumption by agriculture machines,AR-N,SESCO,annual,kg,db078204-4ee4-33af-b74a-d8f66df0e810 +2015,Neuquén,II.5.1,71.8788,TJ,CO2,74100.0,kg/TJ,5326219.08,Gas Oil combustion consumption by agriculture machines,AR-Q,SESCO,annual,kg,62f6a26c-5cb4-30cb-9e7c-29da0d7aea8a +2015,Neuquén,II.5.1,71.8788,TJ,CH4,3.9,kg/TJ,280.32732,Gas Oil combustion consumption by agriculture machines,AR-Q,SESCO,annual,kg,880cd3d5-1963-3f6e-b290-f5eed5888dc2 +2015,Neuquén,II.5.1,71.8788,TJ,N2O,3.9,kg/TJ,280.32732,Gas Oil combustion consumption by agriculture machines,AR-Q,SESCO,annual,kg,880cd3d5-1963-3f6e-b290-f5eed5888dc2 +2015,Rio Negro,II.5.1,199.16567999999998,TJ,CO2,74100.0,kg/TJ,14758176.887999998,Gas Oil combustion consumption by agriculture machines,AR-R,SESCO,annual,kg,912407d4-06a7-3681-a0ba-291e2caeca1b +2015,Rio Negro,II.5.1,199.16567999999998,TJ,CH4,3.9,kg/TJ,776.7461519999999,Gas Oil combustion consumption by agriculture machines,AR-R,SESCO,annual,kg,83692945-91fd-3388-8380-e9faaae04d63 +2015,Rio Negro,II.5.1,199.16567999999998,TJ,N2O,3.9,kg/TJ,776.7461519999999,Gas Oil combustion consumption by agriculture machines,AR-R,SESCO,annual,kg,83692945-91fd-3388-8380-e9faaae04d63 +2015,Salta,II.5.1,1651.9120799999998,TJ,CO2,74100.0,kg/TJ,122406685.12799999,Gas Oil combustion consumption by agriculture machines,AR-A,SESCO,annual,kg,e774ecd9-33e7-37d6-b4f5-49fa49882c4b +2015,Salta,II.5.1,1651.9120799999998,TJ,CH4,3.9,kg/TJ,6442.457111999999,Gas Oil combustion consumption by agriculture machines,AR-A,SESCO,annual,kg,3749dea6-eeee-3e79-b2c0-fbe777e885d0 +2015,Salta,II.5.1,1651.9120799999998,TJ,N2O,3.9,kg/TJ,6442.457111999999,Gas Oil combustion consumption by agriculture machines,AR-A,SESCO,annual,kg,3749dea6-eeee-3e79-b2c0-fbe777e885d0 +2015,San Juan,II.5.1,118.22076,TJ,CO2,74100.0,kg/TJ,8760158.316,Gas Oil combustion consumption by agriculture machines,AR-J,SESCO,annual,kg,1b41ee13-f703-3dbc-abf5-cf4b8d09be17 +2015,San Juan,II.5.1,118.22076,TJ,CH4,3.9,kg/TJ,461.06096399999996,Gas Oil combustion consumption by agriculture machines,AR-J,SESCO,annual,kg,7f3b7c73-e315-349b-b0ef-d54512e8a5e2 +2015,San Juan,II.5.1,118.22076,TJ,N2O,3.9,kg/TJ,461.06096399999996,Gas Oil combustion consumption by agriculture machines,AR-J,SESCO,annual,kg,7f3b7c73-e315-349b-b0ef-d54512e8a5e2 +2015,San Luis,II.5.1,636.94008,TJ,CO2,74100.0,kg/TJ,47197259.927999996,Gas Oil combustion consumption by agriculture machines,AR-D,SESCO,annual,kg,8f611625-8fe6-3d34-bee3-3af026ce945b +2015,San Luis,II.5.1,636.94008,TJ,CH4,3.9,kg/TJ,2484.066312,Gas Oil combustion consumption by agriculture machines,AR-D,SESCO,annual,kg,13639e44-4c76-31c8-921e-47ef0c9ac9b3 +2015,San Luis,II.5.1,636.94008,TJ,N2O,3.9,kg/TJ,2484.066312,Gas Oil combustion consumption by agriculture machines,AR-D,SESCO,annual,kg,13639e44-4c76-31c8-921e-47ef0c9ac9b3 +2015,Santa Cruz,II.5.1,0.6140399999999999,TJ,CO2,74100.0,kg/TJ,45500.363999999994,Gas Oil combustion consumption by agriculture machines,AR-Z,SESCO,annual,kg,fea0406d-e525-3b2e-acba-d7e8d765d43a +2015,Santa Cruz,II.5.1,0.6140399999999999,TJ,CH4,3.9,kg/TJ,2.3947559999999997,Gas Oil combustion consumption by agriculture machines,AR-Z,SESCO,annual,kg,f8307a6e-e61c-33f9-8271-cb34eb366aa1 +2015,Santa Cruz,II.5.1,0.6140399999999999,TJ,N2O,3.9,kg/TJ,2.3947559999999997,Gas Oil combustion consumption by agriculture machines,AR-Z,SESCO,annual,kg,f8307a6e-e61c-33f9-8271-cb34eb366aa1 +2015,Santa Fe,II.5.1,6227.088,TJ,CO2,74100.0,kg/TJ,461427220.79999995,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,6e57a13c-e776-3305-8f71-2a237c9974cd +2015,Santa Fe,II.5.1,6227.088,TJ,CH4,3.9,kg/TJ,24285.6432,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,4ea452aa-aca7-37df-b095-58ae1284e224 +2015,Santa Fe,II.5.1,6227.088,TJ,N2O,3.9,kg/TJ,24285.6432,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,4ea452aa-aca7-37df-b095-58ae1284e224 +2015,Santiago del Estero,II.5.1,1760.77776,TJ,CO2,74100.0,kg/TJ,130473632.016,Gas Oil combustion consumption by agriculture machines,AR-G,SESCO,annual,kg,53f17455-c25b-3469-bb21-2c01d30c4779 +2015,Santiago del Estero,II.5.1,1760.77776,TJ,CH4,3.9,kg/TJ,6867.033264,Gas Oil combustion consumption by agriculture machines,AR-G,SESCO,annual,kg,f68a1984-b465-3890-b82e-b91fb36fb561 +2015,Santiago del Estero,II.5.1,1760.77776,TJ,N2O,3.9,kg/TJ,6867.033264,Gas Oil combustion consumption by agriculture machines,AR-G,SESCO,annual,kg,f68a1984-b465-3890-b82e-b91fb36fb561 +2015,Tucuman,II.5.1,1393.4734799999999,TJ,CO2,74100.0,kg/TJ,103256384.86799999,Gas Oil combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,2e14be7e-f46e-3328-85d9-007da1e8ee25 +2015,Tucuman,II.5.1,1393.4734799999999,TJ,CH4,3.9,kg/TJ,5434.546571999999,Gas Oil combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,8cf640e5-0618-3009-9d90-947db8e6bf7e +2015,Tucuman,II.5.1,1393.4734799999999,TJ,N2O,3.9,kg/TJ,5434.546571999999,Gas Oil combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,8cf640e5-0618-3009-9d90-947db8e6bf7e +2015,Buenos Aires,II.5.1,187.86012,TJ,CO2,74100.0,kg/TJ,13920434.891999999,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,1758b2b1-1cca-318f-90b6-91659266b727 +2015,Buenos Aires,II.5.1,187.86012,TJ,CH4,3.9,kg/TJ,732.654468,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,284faad3-9c06-334a-82b1-9edb5ea1b3af +2015,Buenos Aires,II.5.1,187.86012,TJ,N2O,3.9,kg/TJ,732.654468,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,284faad3-9c06-334a-82b1-9edb5ea1b3af +2015,Catamarca,II.5.1,19.93824,TJ,CO2,74100.0,kg/TJ,1477423.584,Gas Oil combustion consumption by agriculture machines,AR-K,SESCO,annual,kg,3d9d367d-6fa6-3e0d-b992-51d895c7b007 +2015,Catamarca,II.5.1,19.93824,TJ,CH4,3.9,kg/TJ,77.759136,Gas Oil combustion consumption by agriculture machines,AR-K,SESCO,annual,kg,ffe93fe5-75fa-3392-9379-5623c8b192b5 +2015,Catamarca,II.5.1,19.93824,TJ,N2O,3.9,kg/TJ,77.759136,Gas Oil combustion consumption by agriculture machines,AR-K,SESCO,annual,kg,ffe93fe5-75fa-3392-9379-5623c8b192b5 +2015,Chaco,II.5.1,79.39175999999999,TJ,CO2,74100.0,kg/TJ,5882929.415999999,Gas Oil combustion consumption by agriculture machines,AR-H,SESCO,annual,kg,bc27c32f-e71e-332f-a219-63ec54c23845 +2015,Chaco,II.5.1,79.39175999999999,TJ,CH4,3.9,kg/TJ,309.62786399999993,Gas Oil combustion consumption by agriculture machines,AR-H,SESCO,annual,kg,6bc271d8-ae89-349a-b8b3-c1112a4a7522 +2015,Chaco,II.5.1,79.39175999999999,TJ,N2O,3.9,kg/TJ,309.62786399999993,Gas Oil combustion consumption by agriculture machines,AR-H,SESCO,annual,kg,6bc271d8-ae89-349a-b8b3-c1112a4a7522 +2015,Corrientes,II.5.1,27.74016,TJ,CO2,74100.0,kg/TJ,2055545.856,Gas Oil combustion consumption by agriculture machines,AR-W,SESCO,annual,kg,c65f8013-17f5-34b9-94d4-b5b354325a26 +2015,Corrientes,II.5.1,27.74016,TJ,CH4,3.9,kg/TJ,108.186624,Gas Oil combustion consumption by agriculture machines,AR-W,SESCO,annual,kg,6210595f-3a1e-3bf0-a2ac-2fded2d4f641 +2015,Corrientes,II.5.1,27.74016,TJ,N2O,3.9,kg/TJ,108.186624,Gas Oil combustion consumption by agriculture machines,AR-W,SESCO,annual,kg,6210595f-3a1e-3bf0-a2ac-2fded2d4f641 +2015,Córdoba,II.5.1,38.75676,TJ,CO2,74100.0,kg/TJ,2871875.916,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,04e8234a-85d9-319f-bde9-a6005a0efd49 +2015,Córdoba,II.5.1,38.75676,TJ,CH4,3.9,kg/TJ,151.151364,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,e9b810a9-51e6-3208-826a-6a1af9d7ee0c +2015,Córdoba,II.5.1,38.75676,TJ,N2O,3.9,kg/TJ,151.151364,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,e9b810a9-51e6-3208-826a-6a1af9d7ee0c +2015,Entre Rios,II.5.1,12.2808,TJ,CO2,74100.0,kg/TJ,910007.2799999999,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,610b93b8-1f6d-3f31-87ed-efb6a274d80a +2015,Entre Rios,II.5.1,12.2808,TJ,CH4,3.9,kg/TJ,47.89512,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,c561f53b-2939-325f-add8-c193c8e07de7 +2015,Entre Rios,II.5.1,12.2808,TJ,N2O,3.9,kg/TJ,47.89512,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,c561f53b-2939-325f-add8-c193c8e07de7 +2015,Jujuy,II.5.1,10.6554,TJ,CO2,74100.0,kg/TJ,789565.14,Gas Oil combustion consumption by agriculture machines,AR-Y,SESCO,annual,kg,06a4dc13-0be6-3ed7-8280-772f8eea201c +2015,Jujuy,II.5.1,10.6554,TJ,CH4,3.9,kg/TJ,41.55606,Gas Oil combustion consumption by agriculture machines,AR-Y,SESCO,annual,kg,44f751d6-f1a8-3f29-ae12-7d4cfcf04d37 +2015,Jujuy,II.5.1,10.6554,TJ,N2O,3.9,kg/TJ,41.55606,Gas Oil combustion consumption by agriculture machines,AR-Y,SESCO,annual,kg,44f751d6-f1a8-3f29-ae12-7d4cfcf04d37 +2015,La Pampa,II.5.1,98.2464,TJ,CO2,74100.0,kg/TJ,7280058.239999999,Gas Oil combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,7ceb17e7-3e03-3176-bd08-914fd9fd779d +2015,La Pampa,II.5.1,98.2464,TJ,CH4,3.9,kg/TJ,383.16096,Gas Oil combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,7093ac8c-2520-3c7d-a306-434933bebd34 +2015,La Pampa,II.5.1,98.2464,TJ,N2O,3.9,kg/TJ,383.16096,Gas Oil combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,7093ac8c-2520-3c7d-a306-434933bebd34 +2015,Mendoza,II.5.1,14.989799999999999,TJ,CO2,74100.0,kg/TJ,1110744.18,Gas Oil combustion consumption by agriculture machines,AR-M,SESCO,annual,kg,fdaa72f9-a3e0-3bb3-a1f9-54b16b070531 +2015,Mendoza,II.5.1,14.989799999999999,TJ,CH4,3.9,kg/TJ,58.46021999999999,Gas Oil combustion consumption by agriculture machines,AR-M,SESCO,annual,kg,af9bf487-0fcb-3d49-b0d3-9d9cac60d758 +2015,Mendoza,II.5.1,14.989799999999999,TJ,N2O,3.9,kg/TJ,58.46021999999999,Gas Oil combustion consumption by agriculture machines,AR-M,SESCO,annual,kg,af9bf487-0fcb-3d49-b0d3-9d9cac60d758 +2015,Misiones,II.5.1,18.962999999999997,TJ,CO2,74100.0,kg/TJ,1405158.2999999998,Gas Oil combustion consumption by agriculture machines,AR-N,SESCO,annual,kg,26322acc-6b58-33ea-b8d0-43cf51b62908 +2015,Misiones,II.5.1,18.962999999999997,TJ,CH4,3.9,kg/TJ,73.9557,Gas Oil combustion consumption by agriculture machines,AR-N,SESCO,annual,kg,a562da1b-81ca-3874-bb68-1405539b7c1c +2015,Misiones,II.5.1,18.962999999999997,TJ,N2O,3.9,kg/TJ,73.9557,Gas Oil combustion consumption by agriculture machines,AR-N,SESCO,annual,kg,a562da1b-81ca-3874-bb68-1405539b7c1c +2015,Salta,II.5.1,102.5808,TJ,CO2,74100.0,kg/TJ,7601237.279999999,Gas Oil combustion consumption by agriculture machines,AR-A,SESCO,annual,kg,24ff453b-6c3a-3b21-8534-b00335383b8c +2015,Salta,II.5.1,102.5808,TJ,CH4,3.9,kg/TJ,400.06512,Gas Oil combustion consumption by agriculture machines,AR-A,SESCO,annual,kg,84657468-daf4-315d-9901-f2f56beb5bd5 +2015,Salta,II.5.1,102.5808,TJ,N2O,3.9,kg/TJ,400.06512,Gas Oil combustion consumption by agriculture machines,AR-A,SESCO,annual,kg,84657468-daf4-315d-9901-f2f56beb5bd5 +2015,San Luis,II.5.1,23.04456,TJ,CO2,74100.0,kg/TJ,1707601.896,Gas Oil combustion consumption by agriculture machines,AR-D,SESCO,annual,kg,ee1e2358-3665-3d02-9ae7-851db4455a0a +2015,San Luis,II.5.1,23.04456,TJ,CH4,3.9,kg/TJ,89.873784,Gas Oil combustion consumption by agriculture machines,AR-D,SESCO,annual,kg,4103467d-353c-3cef-8178-d9b38cdffd8c +2015,San Luis,II.5.1,23.04456,TJ,N2O,3.9,kg/TJ,89.873784,Gas Oil combustion consumption by agriculture machines,AR-D,SESCO,annual,kg,4103467d-353c-3cef-8178-d9b38cdffd8c +2015,Santa Fe,II.5.1,100.34136,TJ,CO2,74100.0,kg/TJ,7435294.776,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,42fa8c36-82de-3811-8e05-4ce45c0bb09d +2015,Santa Fe,II.5.1,100.34136,TJ,CH4,3.9,kg/TJ,391.331304,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,cb24a525-33eb-32a5-999f-8df41d6eed75 +2015,Santa Fe,II.5.1,100.34136,TJ,N2O,3.9,kg/TJ,391.331304,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,cb24a525-33eb-32a5-999f-8df41d6eed75 +2015,Santiago del Estero,II.5.1,73.75704,TJ,CO2,74100.0,kg/TJ,5465396.664,Gas Oil combustion consumption by agriculture machines,AR-G,SESCO,annual,kg,1392f3a6-186f-3788-96df-b36564308528 +2015,Santiago del Estero,II.5.1,73.75704,TJ,CH4,3.9,kg/TJ,287.65245600000003,Gas Oil combustion consumption by agriculture machines,AR-G,SESCO,annual,kg,3287fef0-9c09-3f68-b149-cfa6e80dc81b +2015,Santiago del Estero,II.5.1,73.75704,TJ,N2O,3.9,kg/TJ,287.65245600000003,Gas Oil combustion consumption by agriculture machines,AR-G,SESCO,annual,kg,3287fef0-9c09-3f68-b149-cfa6e80dc81b +2015,Tucuman,II.5.1,79.6446,TJ,CO2,74100.0,kg/TJ,5901664.859999999,Gas Oil combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,7a0a7d55-bf06-3d86-956d-01c145a08817 +2015,Tucuman,II.5.1,79.6446,TJ,CH4,3.9,kg/TJ,310.61393999999996,Gas Oil combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,1d144ad3-1c38-377c-9b9e-4d717e533f85 +2015,Tucuman,II.5.1,79.6446,TJ,N2O,3.9,kg/TJ,310.61393999999996,Gas Oil combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,1d144ad3-1c38-377c-9b9e-4d717e533f85 +2015,Buenos Aires,II.5.1,6.60513,TJ,CO2,71500.0,kg/TJ,472266.795,Jet Kerosene combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,a8c8783e-5b0e-342b-af51-cee381ad8a55 +2015,Buenos Aires,II.5.1,6.60513,TJ,CH4,0.5,kg/TJ,3.302565,Jet Kerosene combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,681a1443-95c8-3839-9c30-1ed1abba342b +2015,Buenos Aires,II.5.1,6.60513,TJ,N2O,2.0,kg/TJ,13.21026,Jet Kerosene combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,89c28943-f7db-3865-9a4f-e51ba22f711d +2015,Córdoba,II.5.1,0.25162399999999996,TJ,CO2,71500.0,kg/TJ,17991.115999999998,Jet Kerosene combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,4a64b351-a92e-3cd9-9ebf-28db8df40a03 +2015,Córdoba,II.5.1,0.25162399999999996,TJ,CH4,0.5,kg/TJ,0.12581199999999998,Jet Kerosene combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,dd9f38f2-756a-3004-b75c-4f37f836ba76 +2015,Córdoba,II.5.1,0.25162399999999996,TJ,N2O,2.0,kg/TJ,0.5032479999999999,Jet Kerosene combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,4a505f02-abd5-35d4-a751-9d58fbb05ebd +2015,Entre Rios,II.5.1,0.157265,TJ,CO2,71500.0,kg/TJ,11244.447499999998,Jet Kerosene combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,fde7ca6d-a175-3877-9429-c9191f909738 +2015,Entre Rios,II.5.1,0.157265,TJ,CH4,0.5,kg/TJ,0.0786325,Jet Kerosene combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,0a2b02da-e900-3b4a-9805-c75316635314 +2015,Entre Rios,II.5.1,0.157265,TJ,N2O,2.0,kg/TJ,0.31453,Jet Kerosene combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,fc0df5e4-0fc4-3c4f-8a62-418b1dffb0b0 +2015,La Pampa,II.5.1,1.100855,TJ,CO2,71500.0,kg/TJ,78711.13249999999,Jet Kerosene combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,b842143a-fa98-34d1-bf80-ea031832470a +2015,La Pampa,II.5.1,1.100855,TJ,CH4,0.5,kg/TJ,0.5504275,Jet Kerosene combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,8381f7a1-f4a4-332c-8004-947d4a7c3a38 +2015,La Pampa,II.5.1,1.100855,TJ,N2O,2.0,kg/TJ,2.20171,Jet Kerosene combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,13b73472-f63c-3c2b-b7af-1b199a854359 +2015,Santa Fe,II.5.1,1.792821,TJ,CO2,71500.0,kg/TJ,128186.7015,Jet Kerosene combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,a427a6c1-10a7-3e79-9881-38f2201db378 +2015,Santa Fe,II.5.1,1.792821,TJ,CH4,0.5,kg/TJ,0.8964105,Jet Kerosene combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,a5c32aaa-8f59-3b0b-8c33-0356aacacd59 +2015,Santa Fe,II.5.1,1.792821,TJ,N2O,2.0,kg/TJ,3.585642,Jet Kerosene combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,811f2d28-c1c8-35ee-b985-d43ac2d0f2c9 +2015,Buenos Aires,II.5.1,0.75383,TJ,CO2,73300.0,kg/TJ,55255.739,Naphtha combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,23e0a458-07bd-3eff-879c-85e0018b41c9 +2015,Buenos Aires,II.5.1,0.75383,TJ,CH4,0.5,kg/TJ,0.376915,Naphtha combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,0dee9557-52dd-313a-a39a-459f38f6ce3e +2015,Buenos Aires,II.5.1,0.75383,TJ,N2O,2.0,kg/TJ,1.50766,Naphtha combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,a6a81ee2-c546-3b45-a853-523c73ad36c9 +2015,Entre Rios,II.5.1,1.3706,TJ,CO2,73300.0,kg/TJ,100464.98,Naphtha combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,293c83e9-0514-3a8f-b493-069d0d31d7c4 +2015,Entre Rios,II.5.1,1.3706,TJ,CH4,0.5,kg/TJ,0.6853,Naphtha combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,d4ac1f5d-dbdc-312b-94ee-6b0fd70d264f +2015,Entre Rios,II.5.1,1.3706,TJ,N2O,2.0,kg/TJ,2.7412,Naphtha combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,af21ea41-63fd-3769-8810-72ce97f05fe4 +2015,Salta,II.5.1,0.34265,TJ,CO2,73300.0,kg/TJ,25116.245,Naphtha combustion consumption by agriculture machines,AR-A,SESCO,annual,kg,9ddcde26-2f6a-33b5-94ce-5b34689662bc +2015,Salta,II.5.1,0.34265,TJ,CH4,0.5,kg/TJ,0.171325,Naphtha combustion consumption by agriculture machines,AR-A,SESCO,annual,kg,108415b5-7ea1-32fd-980d-3ff37a0c4b93 +2015,Salta,II.5.1,0.34265,TJ,N2O,2.0,kg/TJ,0.6853,Naphtha combustion consumption by agriculture machines,AR-A,SESCO,annual,kg,2a0d615c-b853-315a-897f-4eb694f22a00 +2015,Santa Fe,II.5.1,28.50848,TJ,CO2,73300.0,kg/TJ,2089671.5839999998,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,0cd56c4f-bdaa-32dd-8758-0b9afadfa6d4 +2015,Santa Fe,II.5.1,28.50848,TJ,CH4,0.5,kg/TJ,14.25424,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,eabd400a-f2be-3ea7-b4ac-5c3de485b10c +2015,Santa Fe,II.5.1,28.50848,TJ,N2O,2.0,kg/TJ,57.01696,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,97db8a81-d6af-3272-b4f0-2fe5fd72fa3e +2015,Buenos Aires,II.5.1,0.171325,TJ,CO2,73300.0,kg/TJ,12558.1225,Naphtha combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,8cc46ddd-7b28-3efc-ad05-e410621c7e69 +2015,Buenos Aires,II.5.1,0.171325,TJ,CH4,0.5,kg/TJ,0.0856625,Naphtha combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,0f8bbfb3-e710-3fa6-acd5-0458723fbe21 +2015,Buenos Aires,II.5.1,0.171325,TJ,N2O,2.0,kg/TJ,0.34265,Naphtha combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,52c1e932-ac9b-3c09-a179-c4f359c6896d +2015,Santa Fe,II.5.1,0.445445,TJ,CO2,73300.0,kg/TJ,32651.118499999997,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,41c70d2d-8678-38b0-826c-9edf4537b17e +2015,Santa Fe,II.5.1,0.445445,TJ,CH4,0.5,kg/TJ,0.2227225,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,8302d6f0-7bb2-3aeb-b8de-8c712c779c30 +2015,Santa Fe,II.5.1,0.445445,TJ,N2O,2.0,kg/TJ,0.89089,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,4e832ac8-9d61-362a-8b90-aee484dff6d0 +2015,Buenos Aires,II.1.1,29.060799999999993,TJ,CO2,69300.0,kg/TJ,2013913.4399999995,Motor Gasoline combustion consumption by freight transport,AR-B,SESCO,annual,kg,fb194e47-af63-3a33-ada6-b6a1e05f3404 +2015,Buenos Aires,II.1.1,29.060799999999993,TJ,CH4,33.0,kg/TJ,959.0063999999998,Motor Gasoline combustion consumption by freight transport,AR-B,SESCO,annual,kg,58455868-756e-3e2c-97cd-ec0cf70902bf +2015,Buenos Aires,II.1.1,29.060799999999993,TJ,N2O,3.2,kg/TJ,92.99455999999998,Motor Gasoline combustion consumption by freight transport,AR-B,SESCO,annual,kg,d7eb77eb-464b-3063-ba75-24e9b5be924d +2015,Capital Federal,II.1.1,2.4365,TJ,CO2,69300.0,kg/TJ,168849.45,Motor Gasoline combustion consumption by freight transport,AR-C,SESCO,annual,kg,b854de17-dcd6-399b-88d7-76cadd1781cf +2015,Capital Federal,II.1.1,2.4365,TJ,CH4,33.0,kg/TJ,80.4045,Motor Gasoline combustion consumption by freight transport,AR-C,SESCO,annual,kg,4bae93d9-2269-31b5-ba16-2ed4398e5862 +2015,Capital Federal,II.1.1,2.4365,TJ,N2O,3.2,kg/TJ,7.796800000000001,Motor Gasoline combustion consumption by freight transport,AR-C,SESCO,annual,kg,85090383-9b98-3884-8791-91f863693051 +2015,Buenos Aires,II.1.1,7016.346119999999,TJ,CO2,74100.0,kg/TJ,519911247.4919999,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,2505a730-5399-3991-99bb-2a8ca8860eac +2015,Buenos Aires,II.1.1,7016.346119999999,TJ,CH4,3.9,kg/TJ,27363.749867999995,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,e481e4d8-0399-38d5-8ef2-63003131a8b7 +2015,Buenos Aires,II.1.1,7016.346119999999,TJ,N2O,3.9,kg/TJ,27363.749867999995,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,e481e4d8-0399-38d5-8ef2-63003131a8b7 +2015,Capital Federal,II.1.1,3403.62372,TJ,CO2,74100.0,kg/TJ,252208517.652,Gas Oil combustion consumption by freight transport,AR-C,SESCO,annual,kg,47dab972-9b97-315d-a866-370e0b6f677a +2015,Capital Federal,II.1.1,3403.62372,TJ,CH4,3.9,kg/TJ,13274.132508,Gas Oil combustion consumption by freight transport,AR-C,SESCO,annual,kg,280dc4e2-7d54-3c8e-a31a-07d31970515a +2015,Capital Federal,II.1.1,3403.62372,TJ,N2O,3.9,kg/TJ,13274.132508,Gas Oil combustion consumption by freight transport,AR-C,SESCO,annual,kg,280dc4e2-7d54-3c8e-a31a-07d31970515a +2015,Catamarca,II.1.1,24.453239999999997,TJ,CO2,74100.0,kg/TJ,1811985.0839999998,Gas Oil combustion consumption by freight transport,AR-K,SESCO,annual,kg,0450e792-82b9-3ec9-b38f-8cf475cabce2 +2015,Catamarca,II.1.1,24.453239999999997,TJ,CH4,3.9,kg/TJ,95.36763599999999,Gas Oil combustion consumption by freight transport,AR-K,SESCO,annual,kg,07fd8eeb-4058-3eeb-a479-6bad2cd5a7c0 +2015,Catamarca,II.1.1,24.453239999999997,TJ,N2O,3.9,kg/TJ,95.36763599999999,Gas Oil combustion consumption by freight transport,AR-K,SESCO,annual,kg,07fd8eeb-4058-3eeb-a479-6bad2cd5a7c0 +2015,Chaco,II.1.1,195.33696,TJ,CO2,74100.0,kg/TJ,14474468.736,Gas Oil combustion consumption by freight transport,AR-H,SESCO,annual,kg,0cda1707-3ecb-3289-af7e-9a8425d4b79d +2015,Chaco,II.1.1,195.33696,TJ,CH4,3.9,kg/TJ,761.814144,Gas Oil combustion consumption by freight transport,AR-H,SESCO,annual,kg,102166e9-63f6-3af3-8525-1ccf966da59c +2015,Chaco,II.1.1,195.33696,TJ,N2O,3.9,kg/TJ,761.814144,Gas Oil combustion consumption by freight transport,AR-H,SESCO,annual,kg,102166e9-63f6-3af3-8525-1ccf966da59c +2015,Chubut,II.1.1,228.459,TJ,CO2,74100.0,kg/TJ,16928811.9,Gas Oil combustion consumption by freight transport,AR-U,SESCO,annual,kg,2f56c5a3-9fab-3026-8e61-7535eb10e057 +2015,Chubut,II.1.1,228.459,TJ,CH4,3.9,kg/TJ,890.9901,Gas Oil combustion consumption by freight transport,AR-U,SESCO,annual,kg,302e7d60-b5be-31f9-b2f4-bbf881ef651e +2015,Chubut,II.1.1,228.459,TJ,N2O,3.9,kg/TJ,890.9901,Gas Oil combustion consumption by freight transport,AR-U,SESCO,annual,kg,302e7d60-b5be-31f9-b2f4-bbf881ef651e +2015,Corrientes,II.1.1,151.63175999999999,TJ,CO2,74100.0,kg/TJ,11235913.416,Gas Oil combustion consumption by freight transport,AR-W,SESCO,annual,kg,5f8b0f4b-edd7-38dc-9b72-24a41776d4fb +2015,Corrientes,II.1.1,151.63175999999999,TJ,CH4,3.9,kg/TJ,591.3638639999999,Gas Oil combustion consumption by freight transport,AR-W,SESCO,annual,kg,be894948-5507-319d-a04c-d47caba82717 +2015,Corrientes,II.1.1,151.63175999999999,TJ,N2O,3.9,kg/TJ,591.3638639999999,Gas Oil combustion consumption by freight transport,AR-W,SESCO,annual,kg,be894948-5507-319d-a04c-d47caba82717 +2015,Córdoba,II.1.1,1676.18472,TJ,CO2,74100.0,kg/TJ,124205287.752,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,775017a9-2d7f-3d60-a1b0-74533725d12e +2015,Córdoba,II.1.1,1676.18472,TJ,CH4,3.9,kg/TJ,6537.120408,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,aaa96551-c336-3771-8293-dde8107641d7 +2015,Córdoba,II.1.1,1676.18472,TJ,N2O,3.9,kg/TJ,6537.120408,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,aaa96551-c336-3771-8293-dde8107641d7 +2015,Entre Rios,II.1.1,199.88808,TJ,CO2,74100.0,kg/TJ,14811706.728,Gas Oil combustion consumption by freight transport,AR-E,SESCO,annual,kg,051fea49-3d74-36e6-86c7-b6319e9f305b +2015,Entre Rios,II.1.1,199.88808,TJ,CH4,3.9,kg/TJ,779.563512,Gas Oil combustion consumption by freight transport,AR-E,SESCO,annual,kg,435f5fb2-a0ca-3038-9881-8c6b41351a33 +2015,Entre Rios,II.1.1,199.88808,TJ,N2O,3.9,kg/TJ,779.563512,Gas Oil combustion consumption by freight transport,AR-E,SESCO,annual,kg,435f5fb2-a0ca-3038-9881-8c6b41351a33 +2015,Jujuy,II.1.1,44.210879999999996,TJ,CO2,74100.0,kg/TJ,3276026.2079999996,Gas Oil combustion consumption by freight transport,AR-Y,SESCO,annual,kg,4bf1240c-e8cc-37a8-bfad-f8a030a3ef15 +2015,Jujuy,II.1.1,44.210879999999996,TJ,CH4,3.9,kg/TJ,172.422432,Gas Oil combustion consumption by freight transport,AR-Y,SESCO,annual,kg,bfd99c05-a074-3175-9f6d-5c29951d561f +2015,Jujuy,II.1.1,44.210879999999996,TJ,N2O,3.9,kg/TJ,172.422432,Gas Oil combustion consumption by freight transport,AR-Y,SESCO,annual,kg,bfd99c05-a074-3175-9f6d-5c29951d561f +2015,La Pampa,II.1.1,31.027079999999998,TJ,CO2,74100.0,kg/TJ,2299106.628,Gas Oil combustion consumption by freight transport,AR-L,SESCO,annual,kg,e5f1854d-b2ef-3164-839e-af0e972dc688 +2015,La Pampa,II.1.1,31.027079999999998,TJ,CH4,3.9,kg/TJ,121.00561199999999,Gas Oil combustion consumption by freight transport,AR-L,SESCO,annual,kg,13ba07f9-32de-36aa-9cb2-908baae5336c +2015,La Pampa,II.1.1,31.027079999999998,TJ,N2O,3.9,kg/TJ,121.00561199999999,Gas Oil combustion consumption by freight transport,AR-L,SESCO,annual,kg,13ba07f9-32de-36aa-9cb2-908baae5336c +2015,La Rioja,II.1.1,1.3364399999999999,TJ,CO2,74100.0,kg/TJ,99030.20399999998,Gas Oil combustion consumption by freight transport,AR-F,SESCO,annual,kg,f99097d1-54be-30c6-a7f3-6850d77d7a43 +2015,La Rioja,II.1.1,1.3364399999999999,TJ,CH4,3.9,kg/TJ,5.212115999999999,Gas Oil combustion consumption by freight transport,AR-F,SESCO,annual,kg,b4f7fa03-4673-3ff5-b3ed-5960fed36aa5 +2015,La Rioja,II.1.1,1.3364399999999999,TJ,N2O,3.9,kg/TJ,5.212115999999999,Gas Oil combustion consumption by freight transport,AR-F,SESCO,annual,kg,b4f7fa03-4673-3ff5-b3ed-5960fed36aa5 +2015,Mendoza,II.1.1,1464.3409199999999,TJ,CO2,74100.0,kg/TJ,108507662.17199999,Gas Oil combustion consumption by freight transport,AR-M,SESCO,annual,kg,51166465-e9db-3279-b059-9f11d9e3639a +2015,Mendoza,II.1.1,1464.3409199999999,TJ,CH4,3.9,kg/TJ,5710.929587999999,Gas Oil combustion consumption by freight transport,AR-M,SESCO,annual,kg,ccb91ff5-81bd-3f4a-9f04-ed27eed0fa59 +2015,Mendoza,II.1.1,1464.3409199999999,TJ,N2O,3.9,kg/TJ,5710.929587999999,Gas Oil combustion consumption by freight transport,AR-M,SESCO,annual,kg,ccb91ff5-81bd-3f4a-9f04-ed27eed0fa59 +2015,Misiones,II.1.1,480.10704,TJ,CO2,74100.0,kg/TJ,35575931.664,Gas Oil combustion consumption by freight transport,AR-N,SESCO,annual,kg,0636c071-8817-3ded-8cfc-9f77450705c9 +2015,Misiones,II.1.1,480.10704,TJ,CH4,3.9,kg/TJ,1872.417456,Gas Oil combustion consumption by freight transport,AR-N,SESCO,annual,kg,570614cc-e3d5-3fd6-8af5-dac96ccdbe67 +2015,Misiones,II.1.1,480.10704,TJ,N2O,3.9,kg/TJ,1872.417456,Gas Oil combustion consumption by freight transport,AR-N,SESCO,annual,kg,570614cc-e3d5-3fd6-8af5-dac96ccdbe67 +2015,Neuquén,II.1.1,771.48708,TJ,CO2,74100.0,kg/TJ,57167192.628,Gas Oil combustion consumption by freight transport,AR-Q,SESCO,annual,kg,e72729b9-bc3b-37f4-b21f-e55c0f22a24f +2015,Neuquén,II.1.1,771.48708,TJ,CH4,3.9,kg/TJ,3008.799612,Gas Oil combustion consumption by freight transport,AR-Q,SESCO,annual,kg,4e8ec421-5bd3-3e84-8b2a-3d65cb404c15 +2015,Neuquén,II.1.1,771.48708,TJ,N2O,3.9,kg/TJ,3008.799612,Gas Oil combustion consumption by freight transport,AR-Q,SESCO,annual,kg,4e8ec421-5bd3-3e84-8b2a-3d65cb404c15 +2015,Rio Negro,II.1.1,140.00112,TJ,CO2,74100.0,kg/TJ,10374082.991999999,Gas Oil combustion consumption by freight transport,AR-R,SESCO,annual,kg,83001ee3-5b7f-399a-b854-6797fbacd8fc +2015,Rio Negro,II.1.1,140.00112,TJ,CH4,3.9,kg/TJ,546.0043679999999,Gas Oil combustion consumption by freight transport,AR-R,SESCO,annual,kg,b67ce10a-3311-3885-bfb7-fffeb1e583ac +2015,Rio Negro,II.1.1,140.00112,TJ,N2O,3.9,kg/TJ,546.0043679999999,Gas Oil combustion consumption by freight transport,AR-R,SESCO,annual,kg,b67ce10a-3311-3885-bfb7-fffeb1e583ac +2015,Salta,II.1.1,146.24988,TJ,CO2,74100.0,kg/TJ,10837116.108,Gas Oil combustion consumption by freight transport,AR-A,SESCO,annual,kg,8ed4a537-4a91-3b5b-9f19-8d76557364a3 +2015,Salta,II.1.1,146.24988,TJ,CH4,3.9,kg/TJ,570.3745319999999,Gas Oil combustion consumption by freight transport,AR-A,SESCO,annual,kg,04d68029-fac2-3027-a878-a93c7614a49b +2015,Salta,II.1.1,146.24988,TJ,N2O,3.9,kg/TJ,570.3745319999999,Gas Oil combustion consumption by freight transport,AR-A,SESCO,annual,kg,04d68029-fac2-3027-a878-a93c7614a49b +2015,San Juan,II.1.1,102.83363999999999,TJ,CO2,74100.0,kg/TJ,7619972.723999999,Gas Oil combustion consumption by freight transport,AR-J,SESCO,annual,kg,a3989e94-200c-3113-bf41-13a149ab54a8 +2015,San Juan,II.1.1,102.83363999999999,TJ,CH4,3.9,kg/TJ,401.05119599999995,Gas Oil combustion consumption by freight transport,AR-J,SESCO,annual,kg,9adea895-1f5c-354c-a233-d0e699cb5f30 +2015,San Juan,II.1.1,102.83363999999999,TJ,N2O,3.9,kg/TJ,401.05119599999995,Gas Oil combustion consumption by freight transport,AR-J,SESCO,annual,kg,9adea895-1f5c-354c-a233-d0e699cb5f30 +2015,San Luis,II.1.1,130.10424,TJ,CO2,74100.0,kg/TJ,9640724.184,Gas Oil combustion consumption by freight transport,AR-D,SESCO,annual,kg,ede52816-0196-3458-be8d-ab6f634e3c8a +2015,San Luis,II.1.1,130.10424,TJ,CH4,3.9,kg/TJ,507.406536,Gas Oil combustion consumption by freight transport,AR-D,SESCO,annual,kg,50b47f2a-9045-3a07-972f-08d2777a823e +2015,San Luis,II.1.1,130.10424,TJ,N2O,3.9,kg/TJ,507.406536,Gas Oil combustion consumption by freight transport,AR-D,SESCO,annual,kg,50b47f2a-9045-3a07-972f-08d2777a823e +2015,Santa Cruz,II.1.1,71.04804,TJ,CO2,74100.0,kg/TJ,5264659.764,Gas Oil combustion consumption by freight transport,AR-Z,SESCO,annual,kg,2b3a8eeb-fe15-3b94-a247-0e97031eda3f +2015,Santa Cruz,II.1.1,71.04804,TJ,CH4,3.9,kg/TJ,277.087356,Gas Oil combustion consumption by freight transport,AR-Z,SESCO,annual,kg,cfa33b4e-1c01-35bc-9ca8-c208174122f4 +2015,Santa Cruz,II.1.1,71.04804,TJ,N2O,3.9,kg/TJ,277.087356,Gas Oil combustion consumption by freight transport,AR-Z,SESCO,annual,kg,cfa33b4e-1c01-35bc-9ca8-c208174122f4 +2015,Santa Fe,II.1.1,1626.95316,TJ,CO2,74100.0,kg/TJ,120557229.156,Gas Oil combustion consumption by freight transport,AR-S,SESCO,annual,kg,b51a179a-c811-3a43-9019-6cf615570e0b +2015,Santa Fe,II.1.1,1626.95316,TJ,CH4,3.9,kg/TJ,6345.117324,Gas Oil combustion consumption by freight transport,AR-S,SESCO,annual,kg,80fcc7aa-c7ae-37f0-a32d-0db750877290 +2015,Santa Fe,II.1.1,1626.95316,TJ,N2O,3.9,kg/TJ,6345.117324,Gas Oil combustion consumption by freight transport,AR-S,SESCO,annual,kg,80fcc7aa-c7ae-37f0-a32d-0db750877290 +2015,Santiago del Estero,II.1.1,98.21028,TJ,CO2,74100.0,kg/TJ,7277381.748,Gas Oil combustion consumption by freight transport,AR-G,SESCO,annual,kg,b037a896-5891-32c0-916a-00176caf97ca +2015,Santiago del Estero,II.1.1,98.21028,TJ,CH4,3.9,kg/TJ,383.020092,Gas Oil combustion consumption by freight transport,AR-G,SESCO,annual,kg,35a9d7a8-901f-33e4-8e4c-aa361a191615 +2015,Santiago del Estero,II.1.1,98.21028,TJ,N2O,3.9,kg/TJ,383.020092,Gas Oil combustion consumption by freight transport,AR-G,SESCO,annual,kg,35a9d7a8-901f-33e4-8e4c-aa361a191615 +2015,Tucuman,II.1.1,285.45635999999996,TJ,CO2,74100.0,kg/TJ,21152316.275999997,Gas Oil combustion consumption by freight transport,AR-T,SESCO,annual,kg,c423e938-2e07-3d01-88ea-05ac0335c413 +2015,Tucuman,II.1.1,285.45635999999996,TJ,CH4,3.9,kg/TJ,1113.2798039999998,Gas Oil combustion consumption by freight transport,AR-T,SESCO,annual,kg,75de2505-4a91-356c-9063-1190f3aaa49b +2015,Tucuman,II.1.1,285.45635999999996,TJ,N2O,3.9,kg/TJ,1113.2798039999998,Gas Oil combustion consumption by freight transport,AR-T,SESCO,annual,kg,75de2505-4a91-356c-9063-1190f3aaa49b +2015,Buenos Aires,II.1.1,400.71528,TJ,CO2,74100.0,kg/TJ,29693002.248,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,488623d4-5dca-330d-b6e9-0866942f2d1d +2015,Buenos Aires,II.1.1,400.71528,TJ,CH4,3.9,kg/TJ,1562.789592,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,fc1878fe-d0b0-33b3-886b-72cd1cbf6a9c +2015,Buenos Aires,II.1.1,400.71528,TJ,N2O,3.9,kg/TJ,1562.789592,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,fc1878fe-d0b0-33b3-886b-72cd1cbf6a9c +2015,Capital Federal,II.1.1,772.5706799999999,TJ,CO2,74100.0,kg/TJ,57247487.388,Gas Oil combustion consumption by freight transport,AR-C,SESCO,annual,kg,7dacaec7-990b-311f-97b1-ffd5e28dfed4 +2015,Capital Federal,II.1.1,772.5706799999999,TJ,CH4,3.9,kg/TJ,3013.025652,Gas Oil combustion consumption by freight transport,AR-C,SESCO,annual,kg,ac3b98d8-c2d8-33eb-ad72-1831dca3f549 +2015,Capital Federal,II.1.1,772.5706799999999,TJ,N2O,3.9,kg/TJ,3013.025652,Gas Oil combustion consumption by freight transport,AR-C,SESCO,annual,kg,ac3b98d8-c2d8-33eb-ad72-1831dca3f549 +2015,Chaco,II.1.1,20.48004,TJ,CO2,74100.0,kg/TJ,1517570.964,Gas Oil combustion consumption by freight transport,AR-H,SESCO,annual,kg,9d44d99c-3cf5-39b0-a5b2-e7f4f46fbb1a +2015,Chaco,II.1.1,20.48004,TJ,CH4,3.9,kg/TJ,79.87215599999999,Gas Oil combustion consumption by freight transport,AR-H,SESCO,annual,kg,804551ba-00cc-33ca-9972-4432356fa573 +2015,Chaco,II.1.1,20.48004,TJ,N2O,3.9,kg/TJ,79.87215599999999,Gas Oil combustion consumption by freight transport,AR-H,SESCO,annual,kg,804551ba-00cc-33ca-9972-4432356fa573 +2015,Chubut,II.1.1,10.4748,TJ,CO2,74100.0,kg/TJ,776182.68,Gas Oil combustion consumption by freight transport,AR-U,SESCO,annual,kg,c76268ed-556b-3e06-8390-617eb7073a3c +2015,Chubut,II.1.1,10.4748,TJ,CH4,3.9,kg/TJ,40.85172,Gas Oil combustion consumption by freight transport,AR-U,SESCO,annual,kg,10a430e8-68c8-39cc-8b28-93d4eb8c8675 +2015,Chubut,II.1.1,10.4748,TJ,N2O,3.9,kg/TJ,40.85172,Gas Oil combustion consumption by freight transport,AR-U,SESCO,annual,kg,10a430e8-68c8-39cc-8b28-93d4eb8c8675 +2015,Corrientes,II.1.1,2.96184,TJ,CO2,74100.0,kg/TJ,219472.344,Gas Oil combustion consumption by freight transport,AR-W,SESCO,annual,kg,0f51b2bd-3359-3567-a2d8-a86126ea759e +2015,Corrientes,II.1.1,2.96184,TJ,CH4,3.9,kg/TJ,11.551176,Gas Oil combustion consumption by freight transport,AR-W,SESCO,annual,kg,b6863e51-c660-3a9b-94b1-25504a92f4d2 +2015,Corrientes,II.1.1,2.96184,TJ,N2O,3.9,kg/TJ,11.551176,Gas Oil combustion consumption by freight transport,AR-W,SESCO,annual,kg,b6863e51-c660-3a9b-94b1-25504a92f4d2 +2015,Córdoba,II.1.1,19.39644,TJ,CO2,74100.0,kg/TJ,1437276.204,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,5da21488-9987-3f1b-9b12-8710cf9b8d70 +2015,Córdoba,II.1.1,19.39644,TJ,CH4,3.9,kg/TJ,75.64611599999999,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,e618f020-3377-3fec-8d34-8a5696592bb1 +2015,Córdoba,II.1.1,19.39644,TJ,N2O,3.9,kg/TJ,75.64611599999999,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,e618f020-3377-3fec-8d34-8a5696592bb1 +2015,Entre Rios,II.1.1,15.96504,TJ,CO2,74100.0,kg/TJ,1183009.464,Gas Oil combustion consumption by freight transport,AR-E,SESCO,annual,kg,d37448b1-0659-3846-86cb-e9ba9df460eb +2015,Entre Rios,II.1.1,15.96504,TJ,CH4,3.9,kg/TJ,62.263656,Gas Oil combustion consumption by freight transport,AR-E,SESCO,annual,kg,485f7c82-28a5-30c5-b070-1c710ba8ef5c +2015,Entre Rios,II.1.1,15.96504,TJ,N2O,3.9,kg/TJ,62.263656,Gas Oil combustion consumption by freight transport,AR-E,SESCO,annual,kg,485f7c82-28a5-30c5-b070-1c710ba8ef5c +2015,Jujuy,II.1.1,0.03612,TJ,CO2,74100.0,kg/TJ,2676.4919999999997,Gas Oil combustion consumption by freight transport,AR-Y,SESCO,annual,kg,3ff4451d-7617-3b97-a080-eaa02a384379 +2015,Jujuy,II.1.1,0.03612,TJ,CH4,3.9,kg/TJ,0.140868,Gas Oil combustion consumption by freight transport,AR-Y,SESCO,annual,kg,6f4c9fad-dbde-38f3-a1fc-be6512e67ea9 +2015,Jujuy,II.1.1,0.03612,TJ,N2O,3.9,kg/TJ,0.140868,Gas Oil combustion consumption by freight transport,AR-Y,SESCO,annual,kg,6f4c9fad-dbde-38f3-a1fc-be6512e67ea9 +2015,La Pampa,II.1.1,0.18059999999999998,TJ,CO2,74100.0,kg/TJ,13382.46,Gas Oil combustion consumption by freight transport,AR-L,SESCO,annual,kg,a66bb4f5-d8cc-3169-8587-27e7a3bcf968 +2015,La Pampa,II.1.1,0.18059999999999998,TJ,CH4,3.9,kg/TJ,0.70434,Gas Oil combustion consumption by freight transport,AR-L,SESCO,annual,kg,cc3d68d1-8be3-34dc-972b-85794ae2c59f +2015,La Pampa,II.1.1,0.18059999999999998,TJ,N2O,3.9,kg/TJ,0.70434,Gas Oil combustion consumption by freight transport,AR-L,SESCO,annual,kg,cc3d68d1-8be3-34dc-972b-85794ae2c59f +2015,La Rioja,II.1.1,2.8895999999999997,TJ,CO2,74100.0,kg/TJ,214119.36,Gas Oil combustion consumption by freight transport,AR-F,SESCO,annual,kg,35e79542-f4c4-3a93-a558-775ea0aa4d47 +2015,La Rioja,II.1.1,2.8895999999999997,TJ,CH4,3.9,kg/TJ,11.26944,Gas Oil combustion consumption by freight transport,AR-F,SESCO,annual,kg,57bc2b56-49c0-3e57-b0c5-46bc9a8512bf +2015,La Rioja,II.1.1,2.8895999999999997,TJ,N2O,3.9,kg/TJ,11.26944,Gas Oil combustion consumption by freight transport,AR-F,SESCO,annual,kg,57bc2b56-49c0-3e57-b0c5-46bc9a8512bf +2015,Mendoza,II.1.1,36.91464,TJ,CO2,74100.0,kg/TJ,2735374.824,Gas Oil combustion consumption by freight transport,AR-M,SESCO,annual,kg,e5e990fe-0558-3ff9-b3f9-01859864a662 +2015,Mendoza,II.1.1,36.91464,TJ,CH4,3.9,kg/TJ,143.967096,Gas Oil combustion consumption by freight transport,AR-M,SESCO,annual,kg,7e445236-9686-348b-9ac2-162f18189469 +2015,Mendoza,II.1.1,36.91464,TJ,N2O,3.9,kg/TJ,143.967096,Gas Oil combustion consumption by freight transport,AR-M,SESCO,annual,kg,7e445236-9686-348b-9ac2-162f18189469 +2015,Misiones,II.1.1,11.99184,TJ,CO2,74100.0,kg/TJ,888595.344,Gas Oil combustion consumption by freight transport,AR-N,SESCO,annual,kg,a3b55dd4-8505-32f0-b011-66ff73b8af7f +2015,Misiones,II.1.1,11.99184,TJ,CH4,3.9,kg/TJ,46.768176,Gas Oil combustion consumption by freight transport,AR-N,SESCO,annual,kg,dc262bdc-12be-346e-8971-54f35839af90 +2015,Misiones,II.1.1,11.99184,TJ,N2O,3.9,kg/TJ,46.768176,Gas Oil combustion consumption by freight transport,AR-N,SESCO,annual,kg,dc262bdc-12be-346e-8971-54f35839af90 +2015,Neuquén,II.1.1,71.55372,TJ,CO2,74100.0,kg/TJ,5302130.652,Gas Oil combustion consumption by freight transport,AR-Q,SESCO,annual,kg,00231b43-4cc7-36dd-b616-869c50a9decb +2015,Neuquén,II.1.1,71.55372,TJ,CH4,3.9,kg/TJ,279.059508,Gas Oil combustion consumption by freight transport,AR-Q,SESCO,annual,kg,0b54e7c6-a306-37a1-8188-93177f2ac0be +2015,Neuquén,II.1.1,71.55372,TJ,N2O,3.9,kg/TJ,279.059508,Gas Oil combustion consumption by freight transport,AR-Q,SESCO,annual,kg,0b54e7c6-a306-37a1-8188-93177f2ac0be +2015,Rio Negro,II.1.1,3.8287199999999997,TJ,CO2,74100.0,kg/TJ,283708.152,Gas Oil combustion consumption by freight transport,AR-R,SESCO,annual,kg,2b49f254-33e2-340a-869e-08075b271ba2 +2015,Rio Negro,II.1.1,3.8287199999999997,TJ,CH4,3.9,kg/TJ,14.932007999999998,Gas Oil combustion consumption by freight transport,AR-R,SESCO,annual,kg,fc2c3181-dbd1-3752-8947-e1a5c7806947 +2015,Rio Negro,II.1.1,3.8287199999999997,TJ,N2O,3.9,kg/TJ,14.932007999999998,Gas Oil combustion consumption by freight transport,AR-R,SESCO,annual,kg,fc2c3181-dbd1-3752-8947-e1a5c7806947 +2015,Salta,II.1.1,24.850559999999998,TJ,CO2,74100.0,kg/TJ,1841426.4959999998,Gas Oil combustion consumption by freight transport,AR-A,SESCO,annual,kg,b2f93aae-b46b-3785-9e4b-fb0a90223712 +2015,Salta,II.1.1,24.850559999999998,TJ,CH4,3.9,kg/TJ,96.91718399999999,Gas Oil combustion consumption by freight transport,AR-A,SESCO,annual,kg,896c0c65-26a8-3a7f-9c76-acd2b91c9134 +2015,Salta,II.1.1,24.850559999999998,TJ,N2O,3.9,kg/TJ,96.91718399999999,Gas Oil combustion consumption by freight transport,AR-A,SESCO,annual,kg,896c0c65-26a8-3a7f-9c76-acd2b91c9134 +2015,San Juan,II.1.1,4.47888,TJ,CO2,74100.0,kg/TJ,331885.00800000003,Gas Oil combustion consumption by freight transport,AR-J,SESCO,annual,kg,5628cee7-bf04-33e5-b7ae-a9a05144a38d +2015,San Juan,II.1.1,4.47888,TJ,CH4,3.9,kg/TJ,17.467632000000002,Gas Oil combustion consumption by freight transport,AR-J,SESCO,annual,kg,cb55ba07-aaa8-370e-b385-b6e08715c268 +2015,San Juan,II.1.1,4.47888,TJ,N2O,3.9,kg/TJ,17.467632000000002,Gas Oil combustion consumption by freight transport,AR-J,SESCO,annual,kg,cb55ba07-aaa8-370e-b385-b6e08715c268 +2015,San Luis,II.1.1,2.56452,TJ,CO2,74100.0,kg/TJ,190030.932,Gas Oil combustion consumption by freight transport,AR-D,SESCO,annual,kg,c4e86503-1b32-3541-984b-c261d3fb5e01 +2015,San Luis,II.1.1,2.56452,TJ,CH4,3.9,kg/TJ,10.001628,Gas Oil combustion consumption by freight transport,AR-D,SESCO,annual,kg,333e4407-343c-3afd-882c-ac80eb2d6757 +2015,San Luis,II.1.1,2.56452,TJ,N2O,3.9,kg/TJ,10.001628,Gas Oil combustion consumption by freight transport,AR-D,SESCO,annual,kg,333e4407-343c-3afd-882c-ac80eb2d6757 +2015,Santa Cruz,II.1.1,2.78124,TJ,CO2,74100.0,kg/TJ,206089.884,Gas Oil combustion consumption by freight transport,AR-Z,SESCO,annual,kg,53363f11-0de6-32dc-8844-30d7cda218d9 +2015,Santa Cruz,II.1.1,2.78124,TJ,CH4,3.9,kg/TJ,10.846836,Gas Oil combustion consumption by freight transport,AR-Z,SESCO,annual,kg,257ba2e0-62f8-37e5-a13b-8d0ba33ed8dc +2015,Santa Cruz,II.1.1,2.78124,TJ,N2O,3.9,kg/TJ,10.846836,Gas Oil combustion consumption by freight transport,AR-Z,SESCO,annual,kg,257ba2e0-62f8-37e5-a13b-8d0ba33ed8dc +2015,Santa Fe,II.1.1,163.33463999999998,TJ,CO2,74100.0,kg/TJ,12103096.824,Gas Oil combustion consumption by freight transport,AR-S,SESCO,annual,kg,54b86c31-d510-3bd5-b07b-b4cc501bbbf5 +2015,Santa Fe,II.1.1,163.33463999999998,TJ,CH4,3.9,kg/TJ,637.0050959999999,Gas Oil combustion consumption by freight transport,AR-S,SESCO,annual,kg,185e4ad9-ab8b-3868-8277-c7ca4e14dcb2 +2015,Santa Fe,II.1.1,163.33463999999998,TJ,N2O,3.9,kg/TJ,637.0050959999999,Gas Oil combustion consumption by freight transport,AR-S,SESCO,annual,kg,185e4ad9-ab8b-3868-8277-c7ca4e14dcb2 +2015,Santiago del Estero,II.1.1,0.07224,TJ,CO2,74100.0,kg/TJ,5352.9839999999995,Gas Oil combustion consumption by freight transport,AR-G,SESCO,annual,kg,02b10c80-f015-39cb-aa5e-0fa5fb8fab17 +2015,Santiago del Estero,II.1.1,0.07224,TJ,CH4,3.9,kg/TJ,0.281736,Gas Oil combustion consumption by freight transport,AR-G,SESCO,annual,kg,e5567771-8320-33a5-9f80-456ff2ef92f1 +2015,Santiago del Estero,II.1.1,0.07224,TJ,N2O,3.9,kg/TJ,0.281736,Gas Oil combustion consumption by freight transport,AR-G,SESCO,annual,kg,e5567771-8320-33a5-9f80-456ff2ef92f1 +2015,Tucuman,II.1.1,7.910279999999999,TJ,CO2,74100.0,kg/TJ,586151.7479999999,Gas Oil combustion consumption by freight transport,AR-T,SESCO,annual,kg,e89f0b45-a172-3a01-aa0d-85a8eccfb660 +2015,Tucuman,II.1.1,7.910279999999999,TJ,CH4,3.9,kg/TJ,30.850091999999997,Gas Oil combustion consumption by freight transport,AR-T,SESCO,annual,kg,aceeb4ef-f58e-38c5-bcf5-13584398ce16 +2015,Tucuman,II.1.1,7.910279999999999,TJ,N2O,3.9,kg/TJ,30.850091999999997,Gas Oil combustion consumption by freight transport,AR-T,SESCO,annual,kg,aceeb4ef-f58e-38c5-bcf5-13584398ce16 +2015,Buenos Aires,II.1.1,218.507905,TJ,CO2,73300.0,kg/TJ,16016629.4365,Naphtha combustion consumption by freight transport,AR-B,SESCO,annual,kg,471f19d6-a5a0-31d0-ac6e-11b0d7388959 +2015,Buenos Aires,II.1.1,218.507905,TJ,CH4,0.5,kg/TJ,109.2539525,Naphtha combustion consumption by freight transport,AR-B,SESCO,annual,kg,d87d427a-14c3-3b16-826e-fddd906b03c7 +2015,Buenos Aires,II.1.1,218.507905,TJ,N2O,2.0,kg/TJ,437.01581,Naphtha combustion consumption by freight transport,AR-B,SESCO,annual,kg,8839f5d2-361b-3efb-afe9-ca558f88a33b +2015,Capital Federal,II.1.1,227.38253999999998,TJ,CO2,73300.0,kg/TJ,16667140.181999998,Naphtha combustion consumption by freight transport,AR-C,SESCO,annual,kg,262eb3e0-43a1-3764-aa12-047f9a9c8850 +2015,Capital Federal,II.1.1,227.38253999999998,TJ,CH4,0.5,kg/TJ,113.69126999999999,Naphtha combustion consumption by freight transport,AR-C,SESCO,annual,kg,693a5496-d338-3e88-88fc-105f23cff87f +2015,Capital Federal,II.1.1,227.38253999999998,TJ,N2O,2.0,kg/TJ,454.76507999999995,Naphtha combustion consumption by freight transport,AR-C,SESCO,annual,kg,d7d44caa-196a-34d7-a6a1-f325fbfe606b +2015,Chaco,II.1.1,6.544614999999999,TJ,CO2,73300.0,kg/TJ,479720.27949999995,Naphtha combustion consumption by freight transport,AR-H,SESCO,annual,kg,121f937d-c61b-38ae-829f-f2572fabcbd7 +2015,Chaco,II.1.1,6.544614999999999,TJ,CH4,0.5,kg/TJ,3.2723074999999997,Naphtha combustion consumption by freight transport,AR-H,SESCO,annual,kg,3d3984d8-c021-3eca-af16-efc480d3c017 +2015,Chaco,II.1.1,6.544614999999999,TJ,N2O,2.0,kg/TJ,13.089229999999999,Naphtha combustion consumption by freight transport,AR-H,SESCO,annual,kg,8bb802e1-f346-315b-8458-fad46f9341f2 +2015,Chubut,II.1.1,1.130745,TJ,CO2,73300.0,kg/TJ,82883.60849999999,Naphtha combustion consumption by freight transport,AR-U,SESCO,annual,kg,c0a5eff9-1b24-3a03-bd32-3b90a02241a5 +2015,Chubut,II.1.1,1.130745,TJ,CH4,0.5,kg/TJ,0.5653725,Naphtha combustion consumption by freight transport,AR-U,SESCO,annual,kg,0115089b-96f0-326b-9af9-be75ee47b507 +2015,Chubut,II.1.1,1.130745,TJ,N2O,2.0,kg/TJ,2.26149,Naphtha combustion consumption by freight transport,AR-U,SESCO,annual,kg,3d27f37c-b022-3345-98b2-62903f7340a4 +2015,Corrientes,II.1.1,1.3020699999999998,TJ,CO2,73300.0,kg/TJ,95441.73099999999,Naphtha combustion consumption by freight transport,AR-W,SESCO,annual,kg,284df138-a9c5-34c8-956d-553ad6af1afe +2015,Corrientes,II.1.1,1.3020699999999998,TJ,CH4,0.5,kg/TJ,0.6510349999999999,Naphtha combustion consumption by freight transport,AR-W,SESCO,annual,kg,fce74ab2-9e5e-361c-ae5c-8be4a2935a33 +2015,Corrientes,II.1.1,1.3020699999999998,TJ,N2O,2.0,kg/TJ,2.6041399999999997,Naphtha combustion consumption by freight transport,AR-W,SESCO,annual,kg,0dc0dff5-071c-3c07-abd2-c3cdb105a8ea +2015,Córdoba,II.1.1,4.557245,TJ,CO2,73300.0,kg/TJ,334046.0585,Naphtha combustion consumption by freight transport,AR-X,SESCO,annual,kg,2ce58346-118a-3d8f-999f-af9526c778d8 +2015,Córdoba,II.1.1,4.557245,TJ,CH4,0.5,kg/TJ,2.2786225,Naphtha combustion consumption by freight transport,AR-X,SESCO,annual,kg,4c57a297-b251-3634-8dbf-4736e5b6ecce +2015,Córdoba,II.1.1,4.557245,TJ,N2O,2.0,kg/TJ,9.11449,Naphtha combustion consumption by freight transport,AR-X,SESCO,annual,kg,f2eb3d31-8f8b-3abe-a4d1-aaf16c1817f1 +2015,Entre Rios,II.1.1,2.2957549999999998,TJ,CO2,73300.0,kg/TJ,168278.84149999998,Naphtha combustion consumption by freight transport,AR-E,SESCO,annual,kg,f3742756-83ec-3e1c-b9aa-7b288b5a60f5 +2015,Entre Rios,II.1.1,2.2957549999999998,TJ,CH4,0.5,kg/TJ,1.1478774999999999,Naphtha combustion consumption by freight transport,AR-E,SESCO,annual,kg,8ea85602-1520-3a35-91e8-3310e4ab93c1 +2015,Entre Rios,II.1.1,2.2957549999999998,TJ,N2O,2.0,kg/TJ,4.5915099999999995,Naphtha combustion consumption by freight transport,AR-E,SESCO,annual,kg,3698dfc7-4e4d-320f-ab26-1da84c8be605 +2015,Mendoza,II.1.1,6.78447,TJ,CO2,73300.0,kg/TJ,497301.651,Naphtha combustion consumption by freight transport,AR-M,SESCO,annual,kg,58ca49b0-da0b-3f95-8a00-a62088746bdf +2015,Mendoza,II.1.1,6.78447,TJ,CH4,0.5,kg/TJ,3.392235,Naphtha combustion consumption by freight transport,AR-M,SESCO,annual,kg,ce83fa9c-6cc0-31fb-8b68-a2d133e7ea36 +2015,Mendoza,II.1.1,6.78447,TJ,N2O,2.0,kg/TJ,13.56894,Naphtha combustion consumption by freight transport,AR-M,SESCO,annual,kg,a0e229f2-9c1d-341e-8e0f-ce743c5f3fd7 +2015,Misiones,II.1.1,0.47970999999999997,TJ,CO2,73300.0,kg/TJ,35162.742999999995,Naphtha combustion consumption by freight transport,AR-N,SESCO,annual,kg,d55b6618-2cf8-305b-ae6e-f5052ddbf9d7 +2015,Misiones,II.1.1,0.47970999999999997,TJ,CH4,0.5,kg/TJ,0.23985499999999998,Naphtha combustion consumption by freight transport,AR-N,SESCO,annual,kg,5554b538-9c3c-36a7-bf46-8b6a29341324 +2015,Misiones,II.1.1,0.47970999999999997,TJ,N2O,2.0,kg/TJ,0.9594199999999999,Naphtha combustion consumption by freight transport,AR-N,SESCO,annual,kg,3036853a-388b-35b4-a8be-56c8786fb20a +2015,Neuquén,II.1.1,1.02795,TJ,CO2,73300.0,kg/TJ,75348.735,Naphtha combustion consumption by freight transport,AR-Q,SESCO,annual,kg,ff0afeee-954c-3621-a6bd-60e85bfdcdc7 +2015,Neuquén,II.1.1,1.02795,TJ,CH4,0.5,kg/TJ,0.513975,Naphtha combustion consumption by freight transport,AR-Q,SESCO,annual,kg,eada87fc-ee61-37d4-afcf-3ad83201162b +2015,Neuquén,II.1.1,1.02795,TJ,N2O,2.0,kg/TJ,2.0559,Naphtha combustion consumption by freight transport,AR-Q,SESCO,annual,kg,297ddf0a-57d8-37d2-a1cb-492dc5569350 +2015,Rio Negro,II.1.1,1.3363349999999998,TJ,CO2,73300.0,kg/TJ,97953.35549999999,Naphtha combustion consumption by freight transport,AR-R,SESCO,annual,kg,d8f84189-a79e-3f3c-b2b9-bb234fcf7024 +2015,Rio Negro,II.1.1,1.3363349999999998,TJ,CH4,0.5,kg/TJ,0.6681674999999999,Naphtha combustion consumption by freight transport,AR-R,SESCO,annual,kg,28bf0335-077d-3dff-8679-dd0e46f097bd +2015,Rio Negro,II.1.1,1.3363349999999998,TJ,N2O,2.0,kg/TJ,2.6726699999999997,Naphtha combustion consumption by freight transport,AR-R,SESCO,annual,kg,e4a0b107-5aa2-348a-aaf5-19ca40c76d92 +2015,Salta,II.1.1,11.752894999999999,TJ,CO2,73300.0,kg/TJ,861487.2035,Naphtha combustion consumption by freight transport,AR-A,SESCO,annual,kg,07985c38-5f06-32d7-8e9a-17c54ab9f3b8 +2015,Salta,II.1.1,11.752894999999999,TJ,CH4,0.5,kg/TJ,5.876447499999999,Naphtha combustion consumption by freight transport,AR-A,SESCO,annual,kg,6612cb82-8854-3042-b8d1-2ca42611e340 +2015,Salta,II.1.1,11.752894999999999,TJ,N2O,2.0,kg/TJ,23.505789999999998,Naphtha combustion consumption by freight transport,AR-A,SESCO,annual,kg,abcea6c5-3f2f-3214-8383-f82863b2db2a +2015,San Juan,II.1.1,0.034265,TJ,CO2,73300.0,kg/TJ,2511.6245,Naphtha combustion consumption by freight transport,AR-J,SESCO,annual,kg,7783d4dd-f587-302b-9955-416fe5a0dce4 +2015,San Juan,II.1.1,0.034265,TJ,CH4,0.5,kg/TJ,0.0171325,Naphtha combustion consumption by freight transport,AR-J,SESCO,annual,kg,46f339eb-af7d-3569-8b43-3a90abb55254 +2015,San Juan,II.1.1,0.034265,TJ,N2O,2.0,kg/TJ,0.06853,Naphtha combustion consumption by freight transport,AR-J,SESCO,annual,kg,15bcefe6-963c-3365-8162-932699c3631d +2015,San Luis,II.1.1,0.171325,TJ,CO2,73300.0,kg/TJ,12558.1225,Naphtha combustion consumption by freight transport,AR-D,SESCO,annual,kg,b7620954-c9e5-3ac4-bd49-45f744b909d7 +2015,San Luis,II.1.1,0.171325,TJ,CH4,0.5,kg/TJ,0.0856625,Naphtha combustion consumption by freight transport,AR-D,SESCO,annual,kg,fe85a9b8-a548-335a-a1cf-c5d3ddb86e07 +2015,San Luis,II.1.1,0.171325,TJ,N2O,2.0,kg/TJ,0.34265,Naphtha combustion consumption by freight transport,AR-D,SESCO,annual,kg,82b99a08-a141-3d8c-9a5d-3c3c7823eec2 +2015,Santa Fe,II.1.1,19.222665,TJ,CO2,73300.0,kg/TJ,1409021.3445,Naphtha combustion consumption by freight transport,AR-S,SESCO,annual,kg,2ab77eb0-3cb2-3bbb-bcf7-e552003a7452 +2015,Santa Fe,II.1.1,19.222665,TJ,CH4,0.5,kg/TJ,9.6113325,Naphtha combustion consumption by freight transport,AR-S,SESCO,annual,kg,a0f4047c-d69d-3467-afa2-47723bd7f1b7 +2015,Santa Fe,II.1.1,19.222665,TJ,N2O,2.0,kg/TJ,38.44533,Naphtha combustion consumption by freight transport,AR-S,SESCO,annual,kg,dd10c8ea-04ce-34d4-9cb7-24d0f4e53eb7 +2015,Santiago del Estero,II.1.1,0.06853,TJ,CO2,73300.0,kg/TJ,5023.249,Naphtha combustion consumption by freight transport,AR-G,SESCO,annual,kg,f23894bc-c23a-3c6e-b8a8-10360c74e971 +2015,Santiago del Estero,II.1.1,0.06853,TJ,CH4,0.5,kg/TJ,0.034265,Naphtha combustion consumption by freight transport,AR-G,SESCO,annual,kg,9fc64262-86ad-3f86-bb3d-9a50d6467d98 +2015,Santiago del Estero,II.1.1,0.06853,TJ,N2O,2.0,kg/TJ,0.13706,Naphtha combustion consumption by freight transport,AR-G,SESCO,annual,kg,d1195be3-c3da-3179-b443-7bd295b2745b +2015,Tucuman,II.1.1,1.610455,TJ,CO2,73300.0,kg/TJ,118046.3515,Naphtha combustion consumption by freight transport,AR-T,SESCO,annual,kg,7d9e91f4-3655-39a0-9531-8601fcdf8b8a +2015,Tucuman,II.1.1,1.610455,TJ,CH4,0.5,kg/TJ,0.8052275,Naphtha combustion consumption by freight transport,AR-T,SESCO,annual,kg,193d1d1a-2bcd-3545-9df5-71276ea4a210 +2015,Tucuman,II.1.1,1.610455,TJ,N2O,2.0,kg/TJ,3.22091,Naphtha combustion consumption by freight transport,AR-T,SESCO,annual,kg,d2de7af9-bb10-3ec5-b0cd-d655f131e783 +2015,Buenos Aires,II.1.1,215.8695,TJ,CO2,73300.0,kg/TJ,15823234.35,Naphtha combustion consumption by freight transport,AR-B,SESCO,annual,kg,5c712299-02b6-3ba5-b8c8-3774f95837d3 +2015,Buenos Aires,II.1.1,215.8695,TJ,CH4,0.5,kg/TJ,107.93475,Naphtha combustion consumption by freight transport,AR-B,SESCO,annual,kg,f67dd2db-9a19-3e90-ae0c-59c8311f0c54 +2015,Buenos Aires,II.1.1,215.8695,TJ,N2O,2.0,kg/TJ,431.739,Naphtha combustion consumption by freight transport,AR-B,SESCO,annual,kg,19b945cc-10aa-3afa-a86c-3b59a322e432 +2015,Capital Federal,II.1.1,232.93347,TJ,CO2,73300.0,kg/TJ,17074023.351,Naphtha combustion consumption by freight transport,AR-C,SESCO,annual,kg,4304d013-5edd-3fd9-8d63-42021381b9ec +2015,Capital Federal,II.1.1,232.93347,TJ,CH4,0.5,kg/TJ,116.466735,Naphtha combustion consumption by freight transport,AR-C,SESCO,annual,kg,d1392d9f-2461-3368-979f-f0c83e9d71d6 +2015,Capital Federal,II.1.1,232.93347,TJ,N2O,2.0,kg/TJ,465.86694,Naphtha combustion consumption by freight transport,AR-C,SESCO,annual,kg,ead83a5f-ea6d-3780-8ce5-ce1ecc115dca +2015,Chaco,II.1.1,7.05859,TJ,CO2,73300.0,kg/TJ,517394.647,Naphtha combustion consumption by freight transport,AR-H,SESCO,annual,kg,320dd9b1-4793-3176-95b7-4cbce6720197 +2015,Chaco,II.1.1,7.05859,TJ,CH4,0.5,kg/TJ,3.529295,Naphtha combustion consumption by freight transport,AR-H,SESCO,annual,kg,440218c1-5047-33e8-a3f4-c0f6f7ea9806 +2015,Chaco,II.1.1,7.05859,TJ,N2O,2.0,kg/TJ,14.11718,Naphtha combustion consumption by freight transport,AR-H,SESCO,annual,kg,4b39381c-b6af-3c88-bfbc-d5f07ac64c09 +2015,Chubut,II.1.1,0.6167699999999999,TJ,CO2,73300.0,kg/TJ,45209.240999999995,Naphtha combustion consumption by freight transport,AR-U,SESCO,annual,kg,ec4e815d-d7ff-3d82-97e6-ddd1572f8d4c +2015,Chubut,II.1.1,0.6167699999999999,TJ,CH4,0.5,kg/TJ,0.30838499999999996,Naphtha combustion consumption by freight transport,AR-U,SESCO,annual,kg,b968e661-f520-307a-8524-1603bf47dbb1 +2015,Chubut,II.1.1,0.6167699999999999,TJ,N2O,2.0,kg/TJ,1.2335399999999999,Naphtha combustion consumption by freight transport,AR-U,SESCO,annual,kg,12c39a33-fe8c-3b6e-aea2-648d4181863d +2015,Corrientes,II.1.1,3.22091,TJ,CO2,73300.0,kg/TJ,236092.703,Naphtha combustion consumption by freight transport,AR-W,SESCO,annual,kg,a545ac87-b668-3f6c-b184-03401d8f5c43 +2015,Corrientes,II.1.1,3.22091,TJ,CH4,0.5,kg/TJ,1.610455,Naphtha combustion consumption by freight transport,AR-W,SESCO,annual,kg,16a87a89-96b0-3aae-a8c4-f48603674ee8 +2015,Corrientes,II.1.1,3.22091,TJ,N2O,2.0,kg/TJ,6.44182,Naphtha combustion consumption by freight transport,AR-W,SESCO,annual,kg,3dd23d72-1acb-3aaa-a375-ae28f6088d60 +2015,Córdoba,II.1.1,6.476084999999999,TJ,CO2,73300.0,kg/TJ,474697.03049999994,Naphtha combustion consumption by freight transport,AR-X,SESCO,annual,kg,6fae181b-a1aa-36c7-836c-01b94fcb9fc3 +2015,Córdoba,II.1.1,6.476084999999999,TJ,CH4,0.5,kg/TJ,3.2380424999999997,Naphtha combustion consumption by freight transport,AR-X,SESCO,annual,kg,a2cf52ec-8cb5-3cdc-a7ef-04dc48325a68 +2015,Córdoba,II.1.1,6.476084999999999,TJ,N2O,2.0,kg/TJ,12.952169999999999,Naphtha combustion consumption by freight transport,AR-X,SESCO,annual,kg,fbeb3ccd-2f50-3c3c-ad72-482bab689cb3 +2015,Entre Rios,II.1.1,2.5356099999999997,TJ,CO2,73300.0,kg/TJ,185860.213,Naphtha combustion consumption by freight transport,AR-E,SESCO,annual,kg,2d292191-1f04-342f-81ed-29bbee3c3a30 +2015,Entre Rios,II.1.1,2.5356099999999997,TJ,CH4,0.5,kg/TJ,1.2678049999999998,Naphtha combustion consumption by freight transport,AR-E,SESCO,annual,kg,ad0c404d-8fdf-3f89-b4fa-01bd393f4adc +2015,Entre Rios,II.1.1,2.5356099999999997,TJ,N2O,2.0,kg/TJ,5.071219999999999,Naphtha combustion consumption by freight transport,AR-E,SESCO,annual,kg,d37cd967-43a5-3305-b85f-0713cb81c955 +2015,Jujuy,II.1.1,0.06853,TJ,CO2,73300.0,kg/TJ,5023.249,Naphtha combustion consumption by freight transport,AR-Y,SESCO,annual,kg,fd718b23-be92-3015-9f76-01676a603076 +2015,Jujuy,II.1.1,0.06853,TJ,CH4,0.5,kg/TJ,0.034265,Naphtha combustion consumption by freight transport,AR-Y,SESCO,annual,kg,aa693055-394f-3a27-8160-b499bc8021a0 +2015,Jujuy,II.1.1,0.06853,TJ,N2O,2.0,kg/TJ,0.13706,Naphtha combustion consumption by freight transport,AR-Y,SESCO,annual,kg,09b4e6ea-1781-39c6-92e2-52378fe71af2 +2015,La Pampa,II.1.1,0.102795,TJ,CO2,73300.0,kg/TJ,7534.8735,Naphtha combustion consumption by freight transport,AR-L,SESCO,annual,kg,a4e95a42-a2d8-39a5-8562-8d7892821928 +2015,La Pampa,II.1.1,0.102795,TJ,CH4,0.5,kg/TJ,0.0513975,Naphtha combustion consumption by freight transport,AR-L,SESCO,annual,kg,4257940a-c7c2-37d4-a461-0770ab8012f4 +2015,La Pampa,II.1.1,0.102795,TJ,N2O,2.0,kg/TJ,0.20559,Naphtha combustion consumption by freight transport,AR-L,SESCO,annual,kg,2e8fca64-1f21-3cde-a102-931a02466fcf +2015,La Rioja,II.1.1,1.062215,TJ,CO2,73300.0,kg/TJ,77860.35949999999,Naphtha combustion consumption by freight transport,AR-F,SESCO,annual,kg,f56bd90a-3050-30a5-af59-2f72abcebf08 +2015,La Rioja,II.1.1,1.062215,TJ,CH4,0.5,kg/TJ,0.5311075,Naphtha combustion consumption by freight transport,AR-F,SESCO,annual,kg,a0806604-1587-39b4-a914-ca5c77790b08 +2015,La Rioja,II.1.1,1.062215,TJ,N2O,2.0,kg/TJ,2.12443,Naphtha combustion consumption by freight transport,AR-F,SESCO,annual,kg,9c430da5-1bc2-3e12-bd3c-fc55dd0a2dc6 +2015,Mendoza,II.1.1,5.311075,TJ,CO2,73300.0,kg/TJ,389301.7975,Naphtha combustion consumption by freight transport,AR-M,SESCO,annual,kg,7e88ee6f-6cd3-3441-aa97-543dcf695dc2 +2015,Mendoza,II.1.1,5.311075,TJ,CH4,0.5,kg/TJ,2.6555375,Naphtha combustion consumption by freight transport,AR-M,SESCO,annual,kg,3377a829-6fe4-34b3-be12-d59ac44e5eb3 +2015,Mendoza,II.1.1,5.311075,TJ,N2O,2.0,kg/TJ,10.62215,Naphtha combustion consumption by freight transport,AR-M,SESCO,annual,kg,4b119798-0b1f-37fa-bbb1-45e789fe4061 +2015,Misiones,II.1.1,2.0559,TJ,CO2,73300.0,kg/TJ,150697.47,Naphtha combustion consumption by freight transport,AR-N,SESCO,annual,kg,e8c1446c-2f21-37b4-aa5f-60a3cefa0b00 +2015,Misiones,II.1.1,2.0559,TJ,CH4,0.5,kg/TJ,1.02795,Naphtha combustion consumption by freight transport,AR-N,SESCO,annual,kg,c632a6e8-1e1d-3a58-adb7-c0ec827092cb +2015,Misiones,II.1.1,2.0559,TJ,N2O,2.0,kg/TJ,4.1118,Naphtha combustion consumption by freight transport,AR-N,SESCO,annual,kg,603d29e3-6679-3d5f-9b82-a918e31baa17 +2015,Neuquén,II.1.1,1.678985,TJ,CO2,73300.0,kg/TJ,123069.6005,Naphtha combustion consumption by freight transport,AR-Q,SESCO,annual,kg,6c5c75ea-532d-34bd-8654-ed12cd321a5d +2015,Neuquén,II.1.1,1.678985,TJ,CH4,0.5,kg/TJ,0.8394925,Naphtha combustion consumption by freight transport,AR-Q,SESCO,annual,kg,3b8220ce-c49f-3ed1-a1b4-731c5238087b +2015,Neuquén,II.1.1,1.678985,TJ,N2O,2.0,kg/TJ,3.35797,Naphtha combustion consumption by freight transport,AR-Q,SESCO,annual,kg,7f50f794-55da-3282-adc1-fa59d6c34a88 +2015,Rio Negro,II.1.1,2.706935,TJ,CO2,73300.0,kg/TJ,198418.33550000002,Naphtha combustion consumption by freight transport,AR-R,SESCO,annual,kg,658a4821-7841-3898-a078-18a5044886a0 +2015,Rio Negro,II.1.1,2.706935,TJ,CH4,0.5,kg/TJ,1.3534675,Naphtha combustion consumption by freight transport,AR-R,SESCO,annual,kg,b38c3b82-9391-3bb7-a56d-e219453503a5 +2015,Rio Negro,II.1.1,2.706935,TJ,N2O,2.0,kg/TJ,5.41387,Naphtha combustion consumption by freight transport,AR-R,SESCO,annual,kg,49db775b-d50f-3bf1-bb74-59a1eb52f918 +2015,Salta,II.1.1,1.43913,TJ,CO2,73300.0,kg/TJ,105488.229,Naphtha combustion consumption by freight transport,AR-A,SESCO,annual,kg,3b1ba111-3422-373f-a26d-7643c1a07d03 +2015,Salta,II.1.1,1.43913,TJ,CH4,0.5,kg/TJ,0.719565,Naphtha combustion consumption by freight transport,AR-A,SESCO,annual,kg,1ec8b9b2-8c4e-39dd-a890-e2fe2ab419d6 +2015,Salta,II.1.1,1.43913,TJ,N2O,2.0,kg/TJ,2.87826,Naphtha combustion consumption by freight transport,AR-A,SESCO,annual,kg,deaf2a5c-ee50-30ff-a53a-6ca352c8540e +2015,San Luis,II.1.1,0.41118,TJ,CO2,73300.0,kg/TJ,30139.494,Naphtha combustion consumption by freight transport,AR-D,SESCO,annual,kg,ea04c37e-6ce7-307e-88ad-259c7d1b879d +2015,San Luis,II.1.1,0.41118,TJ,CH4,0.5,kg/TJ,0.20559,Naphtha combustion consumption by freight transport,AR-D,SESCO,annual,kg,a6cbdc46-0cba-3218-8af0-a5258f70af01 +2015,San Luis,II.1.1,0.41118,TJ,N2O,2.0,kg/TJ,0.82236,Naphtha combustion consumption by freight transport,AR-D,SESCO,annual,kg,866d1f65-bd51-3b18-9db9-bbddd06abbb2 +2015,Santa Fe,II.1.1,26.349784999999997,TJ,CO2,73300.0,kg/TJ,1931439.2404999998,Naphtha combustion consumption by freight transport,AR-S,SESCO,annual,kg,7c55ffe4-ce2e-30be-82f3-fa44a5cb9365 +2015,Santa Fe,II.1.1,26.349784999999997,TJ,CH4,0.5,kg/TJ,13.174892499999999,Naphtha combustion consumption by freight transport,AR-S,SESCO,annual,kg,e9f7f7b9-f4a7-3420-811b-6e4a62bf44e0 +2015,Santa Fe,II.1.1,26.349784999999997,TJ,N2O,2.0,kg/TJ,52.699569999999994,Naphtha combustion consumption by freight transport,AR-S,SESCO,annual,kg,71b1e7ab-5d72-3a1d-838a-a9cd645ff104 +2015,Santiago del Estero,II.1.1,0.06853,TJ,CO2,73300.0,kg/TJ,5023.249,Naphtha combustion consumption by freight transport,AR-G,SESCO,annual,kg,f23894bc-c23a-3c6e-b8a8-10360c74e971 +2015,Santiago del Estero,II.1.1,0.06853,TJ,CH4,0.5,kg/TJ,0.034265,Naphtha combustion consumption by freight transport,AR-G,SESCO,annual,kg,9fc64262-86ad-3f86-bb3d-9a50d6467d98 +2015,Santiago del Estero,II.1.1,0.06853,TJ,N2O,2.0,kg/TJ,0.13706,Naphtha combustion consumption by freight transport,AR-G,SESCO,annual,kg,d1195be3-c3da-3179-b443-7bd295b2745b +2015,Tucuman,II.1.1,1.3363349999999998,TJ,CO2,73300.0,kg/TJ,97953.35549999999,Naphtha combustion consumption by freight transport,AR-T,SESCO,annual,kg,0594a9b8-b641-37e6-914e-7b158a08a5b5 +2015,Tucuman,II.1.1,1.3363349999999998,TJ,CH4,0.5,kg/TJ,0.6681674999999999,Naphtha combustion consumption by freight transport,AR-T,SESCO,annual,kg,68bb6579-9f07-3955-b750-21f9c739cb96 +2015,Tucuman,II.1.1,1.3363349999999998,TJ,N2O,2.0,kg/TJ,2.6726699999999997,Naphtha combustion consumption by freight transport,AR-T,SESCO,annual,kg,8bb4080c-b940-30e0-9b86-c4358ed9701e +2015,Buenos Aires,II.1.1,11800.29564,TJ,CO2,74100.0,kg/TJ,874401906.924,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,1eb1f34f-f896-309f-96f6-fdb9c8735d29 +2015,Buenos Aires,II.1.1,11800.29564,TJ,CH4,3.9,kg/TJ,46021.152996,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,8e371021-004c-321c-a78a-9ec46b65fc33 +2015,Buenos Aires,II.1.1,11800.29564,TJ,N2O,3.9,kg/TJ,46021.152996,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,8e371021-004c-321c-a78a-9ec46b65fc33 +2015,Capital Federal,II.1.1,2518.90044,TJ,CO2,74100.0,kg/TJ,186650522.604,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,ac2aaf82-f553-3640-be43-130086fc4cfb +2015,Capital Federal,II.1.1,2518.90044,TJ,CH4,3.9,kg/TJ,9823.711716,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,2c6aa34e-5ae8-3a35-a2cc-4c4511c83bf7 +2015,Capital Federal,II.1.1,2518.90044,TJ,N2O,3.9,kg/TJ,9823.711716,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,2c6aa34e-5ae8-3a35-a2cc-4c4511c83bf7 +2015,Catamarca,II.1.1,209.24316,TJ,CO2,74100.0,kg/TJ,15504918.156,Gas Oil combustion consumption by public passenger transport,AR-K,SESCO,annual,kg,5399a173-8654-3c28-a1c2-b4e82e2a6719 +2015,Catamarca,II.1.1,209.24316,TJ,CH4,3.9,kg/TJ,816.048324,Gas Oil combustion consumption by public passenger transport,AR-K,SESCO,annual,kg,d09ec43b-4410-35c8-ad8c-a02248e17eba +2015,Catamarca,II.1.1,209.24316,TJ,N2O,3.9,kg/TJ,816.048324,Gas Oil combustion consumption by public passenger transport,AR-K,SESCO,annual,kg,d09ec43b-4410-35c8-ad8c-a02248e17eba +2015,Chaco,II.1.1,542.3417999999999,TJ,CO2,74100.0,kg/TJ,40187527.379999995,Gas Oil combustion consumption by public passenger transport,AR-H,SESCO,annual,kg,8981ee2a-8115-3a83-b2dc-0c3b9e38e091 +2015,Chaco,II.1.1,542.3417999999999,TJ,CH4,3.9,kg/TJ,2115.1330199999998,Gas Oil combustion consumption by public passenger transport,AR-H,SESCO,annual,kg,de3597cb-ab0c-3ad6-ad2f-72c03d9cb5c9 +2015,Chaco,II.1.1,542.3417999999999,TJ,N2O,3.9,kg/TJ,2115.1330199999998,Gas Oil combustion consumption by public passenger transport,AR-H,SESCO,annual,kg,de3597cb-ab0c-3ad6-ad2f-72c03d9cb5c9 +2015,Chubut,II.1.1,181.90032,TJ,CO2,74100.0,kg/TJ,13478813.712,Gas Oil combustion consumption by public passenger transport,AR-U,SESCO,annual,kg,af90817a-6a1f-3e39-9982-0ed66e745e0b +2015,Chubut,II.1.1,181.90032,TJ,CH4,3.9,kg/TJ,709.411248,Gas Oil combustion consumption by public passenger transport,AR-U,SESCO,annual,kg,a25fb703-5301-3989-9a3b-8403ad4793f5 +2015,Chubut,II.1.1,181.90032,TJ,N2O,3.9,kg/TJ,709.411248,Gas Oil combustion consumption by public passenger transport,AR-U,SESCO,annual,kg,a25fb703-5301-3989-9a3b-8403ad4793f5 +2015,Corrientes,II.1.1,489.46211999999997,TJ,CO2,74100.0,kg/TJ,36269143.092,Gas Oil combustion consumption by public passenger transport,AR-W,SESCO,annual,kg,e003a019-8806-3a58-bf3d-5939b03c2109 +2015,Corrientes,II.1.1,489.46211999999997,TJ,CH4,3.9,kg/TJ,1908.9022679999998,Gas Oil combustion consumption by public passenger transport,AR-W,SESCO,annual,kg,878168a1-d798-3af9-9a3f-67e771da2e4e +2015,Corrientes,II.1.1,489.46211999999997,TJ,N2O,3.9,kg/TJ,1908.9022679999998,Gas Oil combustion consumption by public passenger transport,AR-W,SESCO,annual,kg,878168a1-d798-3af9-9a3f-67e771da2e4e +2015,Córdoba,II.1.1,1873.3637999999999,TJ,CO2,74100.0,kg/TJ,138816257.57999998,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,7a8d21c4-c69a-3cc5-8d90-a184421592b2 +2015,Córdoba,II.1.1,1873.3637999999999,TJ,CH4,3.9,kg/TJ,7306.11882,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,b78d614d-669e-366a-b048-4ba1721e7943 +2015,Córdoba,II.1.1,1873.3637999999999,TJ,N2O,3.9,kg/TJ,7306.11882,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,b78d614d-669e-366a-b048-4ba1721e7943 +2015,Entre Rios,II.1.1,534.72048,TJ,CO2,74100.0,kg/TJ,39622787.567999996,Gas Oil combustion consumption by public passenger transport,AR-E,SESCO,annual,kg,e6f47383-294f-367b-962a-ffc852bab211 +2015,Entre Rios,II.1.1,534.72048,TJ,CH4,3.9,kg/TJ,2085.4098719999997,Gas Oil combustion consumption by public passenger transport,AR-E,SESCO,annual,kg,22a6d1fb-01d1-346e-b049-02274d161de8 +2015,Entre Rios,II.1.1,534.72048,TJ,N2O,3.9,kg/TJ,2085.4098719999997,Gas Oil combustion consumption by public passenger transport,AR-E,SESCO,annual,kg,22a6d1fb-01d1-346e-b049-02274d161de8 +2015,Formosa,II.1.1,75.41856,TJ,CO2,74100.0,kg/TJ,5588515.296,Gas Oil combustion consumption by public passenger transport,AR-P,SESCO,annual,kg,2b94db17-e255-3d14-90b1-2c6de4014b93 +2015,Formosa,II.1.1,75.41856,TJ,CH4,3.9,kg/TJ,294.132384,Gas Oil combustion consumption by public passenger transport,AR-P,SESCO,annual,kg,786f8e01-c87f-38b2-a6ea-9033e3f8e600 +2015,Formosa,II.1.1,75.41856,TJ,N2O,3.9,kg/TJ,294.132384,Gas Oil combustion consumption by public passenger transport,AR-P,SESCO,annual,kg,786f8e01-c87f-38b2-a6ea-9033e3f8e600 +2015,Jujuy,II.1.1,630.4023599999999,TJ,CO2,74100.0,kg/TJ,46712814.875999995,Gas Oil combustion consumption by public passenger transport,AR-Y,SESCO,annual,kg,5e05f25f-2ef5-3d92-914b-3dbb0b2d9aec +2015,Jujuy,II.1.1,630.4023599999999,TJ,CH4,3.9,kg/TJ,2458.569204,Gas Oil combustion consumption by public passenger transport,AR-Y,SESCO,annual,kg,cc798670-5ff6-3227-87ae-083bebb01dc3 +2015,Jujuy,II.1.1,630.4023599999999,TJ,N2O,3.9,kg/TJ,2458.569204,Gas Oil combustion consumption by public passenger transport,AR-Y,SESCO,annual,kg,cc798670-5ff6-3227-87ae-083bebb01dc3 +2015,La Pampa,II.1.1,56.27496,TJ,CO2,74100.0,kg/TJ,4169974.536,Gas Oil combustion consumption by public passenger transport,AR-L,SESCO,annual,kg,b617281d-a7a6-3877-8324-c426d50e0506 +2015,La Pampa,II.1.1,56.27496,TJ,CH4,3.9,kg/TJ,219.472344,Gas Oil combustion consumption by public passenger transport,AR-L,SESCO,annual,kg,599ad311-98ae-3752-afe9-4e61be769b39 +2015,La Pampa,II.1.1,56.27496,TJ,N2O,3.9,kg/TJ,219.472344,Gas Oil combustion consumption by public passenger transport,AR-L,SESCO,annual,kg,599ad311-98ae-3752-afe9-4e61be769b39 +2015,La Rioja,II.1.1,131.98247999999998,TJ,CO2,74100.0,kg/TJ,9779901.768,Gas Oil combustion consumption by public passenger transport,AR-F,SESCO,annual,kg,6e397902-c4bf-3ad4-91aa-ec0db7d7cb51 +2015,La Rioja,II.1.1,131.98247999999998,TJ,CH4,3.9,kg/TJ,514.7316719999999,Gas Oil combustion consumption by public passenger transport,AR-F,SESCO,annual,kg,2962e625-c7c5-3954-a42b-a8169a06adf0 +2015,La Rioja,II.1.1,131.98247999999998,TJ,N2O,3.9,kg/TJ,514.7316719999999,Gas Oil combustion consumption by public passenger transport,AR-F,SESCO,annual,kg,2962e625-c7c5-3954-a42b-a8169a06adf0 +2015,Mendoza,II.1.1,1749.43608,TJ,CO2,74100.0,kg/TJ,129633213.528,Gas Oil combustion consumption by public passenger transport,AR-M,SESCO,annual,kg,be0306e2-99a2-3636-8384-997971930916 +2015,Mendoza,II.1.1,1749.43608,TJ,CH4,3.9,kg/TJ,6822.800711999999,Gas Oil combustion consumption by public passenger transport,AR-M,SESCO,annual,kg,8f60a1f0-ac81-3350-953d-cb3bd5ffc7a7 +2015,Mendoza,II.1.1,1749.43608,TJ,N2O,3.9,kg/TJ,6822.800711999999,Gas Oil combustion consumption by public passenger transport,AR-M,SESCO,annual,kg,8f60a1f0-ac81-3350-953d-cb3bd5ffc7a7 +2015,Misiones,II.1.1,1114.4826,TJ,CO2,74100.0,kg/TJ,82583160.66,Gas Oil combustion consumption by public passenger transport,AR-N,SESCO,annual,kg,f6079a5e-ddd6-3db9-93cb-6bccdf593dcb +2015,Misiones,II.1.1,1114.4826,TJ,CH4,3.9,kg/TJ,4346.48214,Gas Oil combustion consumption by public passenger transport,AR-N,SESCO,annual,kg,a3459531-86e6-3544-afea-f32018bcffd1 +2015,Misiones,II.1.1,1114.4826,TJ,N2O,3.9,kg/TJ,4346.48214,Gas Oil combustion consumption by public passenger transport,AR-N,SESCO,annual,kg,a3459531-86e6-3544-afea-f32018bcffd1 +2015,Neuquén,II.1.1,310.01795999999996,TJ,CO2,74100.0,kg/TJ,22972330.835999995,Gas Oil combustion consumption by public passenger transport,AR-Q,SESCO,annual,kg,94ca21e7-03b2-3922-817e-c06e721b2f6c +2015,Neuquén,II.1.1,310.01795999999996,TJ,CH4,3.9,kg/TJ,1209.0700439999998,Gas Oil combustion consumption by public passenger transport,AR-Q,SESCO,annual,kg,91a2d0fe-852c-3940-82a1-81dca6d77beb +2015,Neuquén,II.1.1,310.01795999999996,TJ,N2O,3.9,kg/TJ,1209.0700439999998,Gas Oil combustion consumption by public passenger transport,AR-Q,SESCO,annual,kg,91a2d0fe-852c-3940-82a1-81dca6d77beb +2015,Rio Negro,II.1.1,504.0546,TJ,CO2,74100.0,kg/TJ,37350445.86,Gas Oil combustion consumption by public passenger transport,AR-R,SESCO,annual,kg,0bd098d5-61dc-3f3a-9397-b4d6ff62e409 +2015,Rio Negro,II.1.1,504.0546,TJ,CH4,3.9,kg/TJ,1965.81294,Gas Oil combustion consumption by public passenger transport,AR-R,SESCO,annual,kg,78292441-1424-307a-a775-b975abb40fd4 +2015,Rio Negro,II.1.1,504.0546,TJ,N2O,3.9,kg/TJ,1965.81294,Gas Oil combustion consumption by public passenger transport,AR-R,SESCO,annual,kg,78292441-1424-307a-a775-b975abb40fd4 +2015,Salta,II.1.1,897.2207999999999,TJ,CO2,74100.0,kg/TJ,66484061.279999994,Gas Oil combustion consumption by public passenger transport,AR-A,SESCO,annual,kg,865b8075-57cf-3622-91d5-05a563fbd15b +2015,Salta,II.1.1,897.2207999999999,TJ,CH4,3.9,kg/TJ,3499.1611199999998,Gas Oil combustion consumption by public passenger transport,AR-A,SESCO,annual,kg,becb18c8-febb-3b32-ba7f-e2cc59c8c77b +2015,Salta,II.1.1,897.2207999999999,TJ,N2O,3.9,kg/TJ,3499.1611199999998,Gas Oil combustion consumption by public passenger transport,AR-A,SESCO,annual,kg,becb18c8-febb-3b32-ba7f-e2cc59c8c77b +2015,San Juan,II.1.1,541.8361199999999,TJ,CO2,74100.0,kg/TJ,40150056.492,Gas Oil combustion consumption by public passenger transport,AR-J,SESCO,annual,kg,90e46e59-f68d-3e41-9636-caddf24af2e7 +2015,San Juan,II.1.1,541.8361199999999,TJ,CH4,3.9,kg/TJ,2113.1608679999995,Gas Oil combustion consumption by public passenger transport,AR-J,SESCO,annual,kg,ddd608ca-0242-383a-b907-1d895934c116 +2015,San Juan,II.1.1,541.8361199999999,TJ,N2O,3.9,kg/TJ,2113.1608679999995,Gas Oil combustion consumption by public passenger transport,AR-J,SESCO,annual,kg,ddd608ca-0242-383a-b907-1d895934c116 +2015,San Luis,II.1.1,165.50184,TJ,CO2,74100.0,kg/TJ,12263686.343999999,Gas Oil combustion consumption by public passenger transport,AR-D,SESCO,annual,kg,bcae1103-59b6-3c2c-9aa7-81b4ed2198b7 +2015,San Luis,II.1.1,165.50184,TJ,CH4,3.9,kg/TJ,645.4571759999999,Gas Oil combustion consumption by public passenger transport,AR-D,SESCO,annual,kg,e1260323-8308-38a9-9d1a-7e3154baa29d +2015,San Luis,II.1.1,165.50184,TJ,N2O,3.9,kg/TJ,645.4571759999999,Gas Oil combustion consumption by public passenger transport,AR-D,SESCO,annual,kg,e1260323-8308-38a9-9d1a-7e3154baa29d +2015,Santa Cruz,II.1.1,32.47188,TJ,CO2,74100.0,kg/TJ,2406166.3079999997,Gas Oil combustion consumption by public passenger transport,AR-Z,SESCO,annual,kg,c1542c26-9787-3d02-b0bf-cd1e701aafb4 +2015,Santa Cruz,II.1.1,32.47188,TJ,CH4,3.9,kg/TJ,126.64033199999999,Gas Oil combustion consumption by public passenger transport,AR-Z,SESCO,annual,kg,ce168d73-a62f-300f-aa15-b10ad0d2651c +2015,Santa Cruz,II.1.1,32.47188,TJ,N2O,3.9,kg/TJ,126.64033199999999,Gas Oil combustion consumption by public passenger transport,AR-Z,SESCO,annual,kg,ce168d73-a62f-300f-aa15-b10ad0d2651c +2015,Santa Fe,II.1.1,1986.13044,TJ,CO2,74100.0,kg/TJ,147172265.604,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,14754a13-c7dd-30a6-ae51-88b9ab97e421 +2015,Santa Fe,II.1.1,1986.13044,TJ,CH4,3.9,kg/TJ,7745.908716,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,8fa83610-8255-383c-ab0e-c1ea05ab9f40 +2015,Santa Fe,II.1.1,1986.13044,TJ,N2O,3.9,kg/TJ,7745.908716,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,8fa83610-8255-383c-ab0e-c1ea05ab9f40 +2015,Santiago del Estero,II.1.1,249.58919999999998,TJ,CO2,74100.0,kg/TJ,18494559.72,Gas Oil combustion consumption by public passenger transport,AR-G,SESCO,annual,kg,3172dcdb-1367-39e1-9646-2dc96617534b +2015,Santiago del Estero,II.1.1,249.58919999999998,TJ,CH4,3.9,kg/TJ,973.3978799999999,Gas Oil combustion consumption by public passenger transport,AR-G,SESCO,annual,kg,13ffb68c-c23f-3bf0-a563-10a28f70d93a +2015,Santiago del Estero,II.1.1,249.58919999999998,TJ,N2O,3.9,kg/TJ,973.3978799999999,Gas Oil combustion consumption by public passenger transport,AR-G,SESCO,annual,kg,13ffb68c-c23f-3bf0-a563-10a28f70d93a +2015,Tierra del Fuego,II.1.1,14.33964,TJ,CO2,74100.0,kg/TJ,1062567.324,Gas Oil combustion consumption by public passenger transport,AR-V,SESCO,annual,kg,73b676a9-e91e-3b8a-847e-9b412662e1cf +2015,Tierra del Fuego,II.1.1,14.33964,TJ,CH4,3.9,kg/TJ,55.924595999999994,Gas Oil combustion consumption by public passenger transport,AR-V,SESCO,annual,kg,945a6de6-f66f-3036-9104-3301fcd68073 +2015,Tierra del Fuego,II.1.1,14.33964,TJ,N2O,3.9,kg/TJ,55.924595999999994,Gas Oil combustion consumption by public passenger transport,AR-V,SESCO,annual,kg,945a6de6-f66f-3036-9104-3301fcd68073 +2015,Tucuman,II.1.1,1432.55532,TJ,CO2,74100.0,kg/TJ,106152349.212,Gas Oil combustion consumption by public passenger transport,AR-T,SESCO,annual,kg,eb426fe0-c60e-3f15-aa27-7bbdadc174af +2015,Tucuman,II.1.1,1432.55532,TJ,CH4,3.9,kg/TJ,5586.965748,Gas Oil combustion consumption by public passenger transport,AR-T,SESCO,annual,kg,710322e6-3069-325d-b5e2-37240468c302 +2015,Tucuman,II.1.1,1432.55532,TJ,N2O,3.9,kg/TJ,5586.965748,Gas Oil combustion consumption by public passenger transport,AR-T,SESCO,annual,kg,710322e6-3069-325d-b5e2-37240468c302 +2015,Buenos Aires,II.1.1,0.171325,TJ,CO2,73300.0,kg/TJ,12558.1225,Naphtha combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,f7e6e486-df2d-3a7a-b396-a0e3aa754eb0 +2015,Buenos Aires,II.1.1,0.171325,TJ,CH4,0.5,kg/TJ,0.0856625,Naphtha combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,f847af2c-7204-3164-889b-3e2a7451c2c4 +2015,Buenos Aires,II.1.1,0.171325,TJ,N2O,2.0,kg/TJ,0.34265,Naphtha combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,1dccf615-329c-3977-8121-b2aff1cb568a +2016,Córdoba,II.5.1,237.31509999999997,TJ,CO2,69300.0,kg/TJ,16445936.429999998,Motor Gasoline combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,181a7196-3d35-390c-8afd-1205dd94b69d +2016,Córdoba,II.5.1,237.31509999999997,TJ,CH4,33.0,kg/TJ,7831.398299999999,Motor Gasoline combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,f8744afe-b063-3bca-8b90-8e285023e004 +2016,Córdoba,II.5.1,237.31509999999997,TJ,N2O,3.2,kg/TJ,759.40832,Motor Gasoline combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,4bf7eb9c-df1e-370f-afba-672c635e99e6 +2016,Buenos Aires,II.5.1,114.21144,TJ,CO2,74100.0,kg/TJ,8463067.704,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,7f859afa-1346-3001-b1c0-2d80ed6bba8d +2016,Buenos Aires,II.5.1,114.21144,TJ,CH4,3.9,kg/TJ,445.42461599999996,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,d3709c6b-6248-3fac-a2b0-ac9f1af4c0a5 +2016,Buenos Aires,II.5.1,114.21144,TJ,N2O,3.9,kg/TJ,445.42461599999996,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,d3709c6b-6248-3fac-a2b0-ac9f1af4c0a5 +2016,Chaco,II.5.1,4.47888,TJ,CO2,74100.0,kg/TJ,331885.00800000003,Gas Oil combustion consumption by agriculture machines,AR-H,SESCO,annual,kg,7754ff50-78e4-3032-8c0b-71bb783f06ff +2016,Chaco,II.5.1,4.47888,TJ,CH4,3.9,kg/TJ,17.467632000000002,Gas Oil combustion consumption by agriculture machines,AR-H,SESCO,annual,kg,c8d5f7b3-4de8-3300-bfd6-39882af38b47 +2016,Chaco,II.5.1,4.47888,TJ,N2O,3.9,kg/TJ,17.467632000000002,Gas Oil combustion consumption by agriculture machines,AR-H,SESCO,annual,kg,c8d5f7b3-4de8-3300-bfd6-39882af38b47 +2016,Corrientes,II.5.1,2.5284,TJ,CO2,74100.0,kg/TJ,187354.44,Gas Oil combustion consumption by agriculture machines,AR-W,SESCO,annual,kg,068655a7-59ae-3f32-b493-d3a91ffc7909 +2016,Corrientes,II.5.1,2.5284,TJ,CH4,3.9,kg/TJ,9.860759999999999,Gas Oil combustion consumption by agriculture machines,AR-W,SESCO,annual,kg,8d5e4b4a-28be-3cfc-97b7-0fdcc96f0ca1 +2016,Corrientes,II.5.1,2.5284,TJ,N2O,3.9,kg/TJ,9.860759999999999,Gas Oil combustion consumption by agriculture machines,AR-W,SESCO,annual,kg,8d5e4b4a-28be-3cfc-97b7-0fdcc96f0ca1 +2016,Córdoba,II.5.1,113.01948,TJ,CO2,74100.0,kg/TJ,8374743.468,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,63a0eb29-0e97-310d-aff1-f539f1005652 +2016,Córdoba,II.5.1,113.01948,TJ,CH4,3.9,kg/TJ,440.77597199999997,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,ec1b8551-227a-3be8-83af-c2dbf8ce0605 +2016,Córdoba,II.5.1,113.01948,TJ,N2O,3.9,kg/TJ,440.77597199999997,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,ec1b8551-227a-3be8-83af-c2dbf8ce0605 +2016,Santa Fe,II.5.1,471.58272,TJ,CO2,74100.0,kg/TJ,34944279.552,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,977b6ba5-0e4b-3629-a1f0-35eae1c13cbf +2016,Santa Fe,II.5.1,471.58272,TJ,CH4,3.9,kg/TJ,1839.1726079999999,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,37d965a2-8838-3c78-a506-39fa879e18b9 +2016,Santa Fe,II.5.1,471.58272,TJ,N2O,3.9,kg/TJ,1839.1726079999999,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,37d965a2-8838-3c78-a506-39fa879e18b9 +2016,Tucuman,II.5.1,9.71628,TJ,CO2,74100.0,kg/TJ,719976.348,Gas Oil combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,6ee711fb-72a6-3483-91fc-83a96d8afc72 +2016,Tucuman,II.5.1,9.71628,TJ,CH4,3.9,kg/TJ,37.893491999999995,Gas Oil combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,3dcec89f-15d8-3cd3-afa7-2c85b3dd99ec +2016,Tucuman,II.5.1,9.71628,TJ,N2O,3.9,kg/TJ,37.893491999999995,Gas Oil combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,3dcec89f-15d8-3cd3-afa7-2c85b3dd99ec +2016,Buenos Aires,II.5.1,10.43868,TJ,CO2,74100.0,kg/TJ,773506.188,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,3c72b7d5-d471-3269-a9a8-5d5c9c48c9f7 +2016,Buenos Aires,II.5.1,10.43868,TJ,CH4,3.9,kg/TJ,40.710851999999996,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,063ef4bf-1c5d-3894-b034-28e9421cc7a7 +2016,Buenos Aires,II.5.1,10.43868,TJ,N2O,3.9,kg/TJ,40.710851999999996,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,063ef4bf-1c5d-3894-b034-28e9421cc7a7 +2016,Chaco,II.5.1,1.04748,TJ,CO2,74100.0,kg/TJ,77618.268,Gas Oil combustion consumption by agriculture machines,AR-H,SESCO,annual,kg,97717d70-fe4e-3e4b-9df1-8d5f7ecd3e77 +2016,Chaco,II.5.1,1.04748,TJ,CH4,3.9,kg/TJ,4.085172,Gas Oil combustion consumption by agriculture machines,AR-H,SESCO,annual,kg,e8569d22-8f57-3e80-b5bc-ea0873fb1431 +2016,Chaco,II.5.1,1.04748,TJ,N2O,3.9,kg/TJ,4.085172,Gas Oil combustion consumption by agriculture machines,AR-H,SESCO,annual,kg,e8569d22-8f57-3e80-b5bc-ea0873fb1431 +2016,Córdoba,II.5.1,11.738999999999999,TJ,CO2,74100.0,kg/TJ,869859.8999999999,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,26855941-11e5-36bd-b03e-2262ce15b713 +2016,Córdoba,II.5.1,11.738999999999999,TJ,CH4,3.9,kg/TJ,45.78209999999999,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,60d8a771-1951-3634-b370-920cd88c130f +2016,Córdoba,II.5.1,11.738999999999999,TJ,N2O,3.9,kg/TJ,45.78209999999999,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,60d8a771-1951-3634-b370-920cd88c130f +2016,Santa Fe,II.5.1,26.62044,TJ,CO2,74100.0,kg/TJ,1972574.6039999998,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,973edb3f-5f58-3b50-829a-1c8bfae819b0 +2016,Santa Fe,II.5.1,26.62044,TJ,CH4,3.9,kg/TJ,103.81971599999999,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,2ddf5058-4488-3074-a53e-d16663b64d88 +2016,Santa Fe,II.5.1,26.62044,TJ,N2O,3.9,kg/TJ,103.81971599999999,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,2ddf5058-4488-3074-a53e-d16663b64d88 +2016,Tucuman,II.5.1,6.10428,TJ,CO2,74100.0,kg/TJ,452327.148,Gas Oil combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,74710120-27a3-386f-ac36-989cbe562afb +2016,Tucuman,II.5.1,6.10428,TJ,CH4,3.9,kg/TJ,23.806692,Gas Oil combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,c91b8d86-f331-383d-a180-bfa3dfafb558 +2016,Tucuman,II.5.1,6.10428,TJ,N2O,3.9,kg/TJ,23.806692,Gas Oil combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,c91b8d86-f331-383d-a180-bfa3dfafb558 +2016,Buenos Aires,II.5.1,17.166764999999998,TJ,CO2,73300.0,kg/TJ,1258323.8745,Naphtha combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,ad61141f-2305-3361-8621-a85486bafdb0 +2016,Buenos Aires,II.5.1,17.166764999999998,TJ,CH4,0.5,kg/TJ,8.583382499999999,Naphtha combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,596ac76d-9496-3b8f-8692-54fbd772b9e4 +2016,Buenos Aires,II.5.1,17.166764999999998,TJ,N2O,2.0,kg/TJ,34.333529999999996,Naphtha combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,ed8c0566-fa2f-30ac-90a6-aa4e4a2f320d +2016,Chaco,II.5.1,10.07391,TJ,CO2,73300.0,kg/TJ,738417.603,Naphtha combustion consumption by agriculture machines,AR-H,SESCO,annual,kg,5bf55a2f-5e22-3480-b3b5-51a062603a86 +2016,Chaco,II.5.1,10.07391,TJ,CH4,0.5,kg/TJ,5.036955,Naphtha combustion consumption by agriculture machines,AR-H,SESCO,annual,kg,9521d2eb-3a3e-3c83-ae55-425e8e9ae60f +2016,Chaco,II.5.1,10.07391,TJ,N2O,2.0,kg/TJ,20.14782,Naphtha combustion consumption by agriculture machines,AR-H,SESCO,annual,kg,d9331b04-9a87-34c2-b4a1-9bf2d6c3bea3 +2016,Córdoba,II.5.1,11.85569,TJ,CO2,73300.0,kg/TJ,869022.0769999999,Naphtha combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,ec6fa111-1da8-34c9-aa22-7d0f9188079d +2016,Córdoba,II.5.1,11.85569,TJ,CH4,0.5,kg/TJ,5.927845,Naphtha combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,b2e7182e-424c-3184-9f2d-b3850dccd29e +2016,Córdoba,II.5.1,11.85569,TJ,N2O,2.0,kg/TJ,23.71138,Naphtha combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,b368d3a5-68c6-39dc-a4d4-feb7c298b0a0 +2016,Santa Fe,II.5.1,36.80061,TJ,CO2,73300.0,kg/TJ,2697484.713,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,49118494-096d-364e-b950-2fab9c67965f +2016,Santa Fe,II.5.1,36.80061,TJ,CH4,0.5,kg/TJ,18.400305,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,eb81e305-427a-368c-b01b-8fa0c5c302e9 +2016,Santa Fe,II.5.1,36.80061,TJ,N2O,2.0,kg/TJ,73.60122,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,fea7f62a-900e-3542-bd2b-996214bbe917 +2016,Tucuman,II.5.1,13.089229999999999,TJ,CO2,73300.0,kg/TJ,959440.5589999999,Naphtha combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,75d005f6-fbcd-3df8-984d-4dd806b0b5f7 +2016,Tucuman,II.5.1,13.089229999999999,TJ,CH4,0.5,kg/TJ,6.544614999999999,Naphtha combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,c2c357d2-5123-3e05-8c92-6447de00541f +2016,Tucuman,II.5.1,13.089229999999999,TJ,N2O,2.0,kg/TJ,26.178459999999998,Naphtha combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,55fac833-c0cf-346a-ad3e-5e13832d1dc9 +2016,Buenos Aires,II.5.1,3.9747399999999997,TJ,CO2,73300.0,kg/TJ,291348.442,Naphtha combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,9451e62f-5154-3e6d-bde3-83889311dd0b +2016,Buenos Aires,II.5.1,3.9747399999999997,TJ,CH4,0.5,kg/TJ,1.9873699999999999,Naphtha combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,9290151d-c403-3c7d-8ef5-35f6674c2a97 +2016,Buenos Aires,II.5.1,3.9747399999999997,TJ,N2O,2.0,kg/TJ,7.949479999999999,Naphtha combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,4297ee8d-4295-3a5f-92dc-e1e9e94d725a +2016,Chaco,II.5.1,1.43913,TJ,CO2,73300.0,kg/TJ,105488.229,Naphtha combustion consumption by agriculture machines,AR-H,SESCO,annual,kg,c4f67640-4bf9-301a-bf73-9088f62cbe3d +2016,Chaco,II.5.1,1.43913,TJ,CH4,0.5,kg/TJ,0.719565,Naphtha combustion consumption by agriculture machines,AR-H,SESCO,annual,kg,9c4d63f7-5c55-37e6-80f2-77ba41fe8e77 +2016,Chaco,II.5.1,1.43913,TJ,N2O,2.0,kg/TJ,2.87826,Naphtha combustion consumption by agriculture machines,AR-H,SESCO,annual,kg,4dda2c19-3155-36a1-baa8-789c2228dc94 +2016,Córdoba,II.5.1,4.968425,TJ,CO2,73300.0,kg/TJ,364185.5525,Naphtha combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,f9bbdf17-87a9-38f9-9f2b-9a797150a038 +2016,Córdoba,II.5.1,4.968425,TJ,CH4,0.5,kg/TJ,2.4842125,Naphtha combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,736a9c37-3734-310e-8bf8-f4d510ff8149 +2016,Córdoba,II.5.1,4.968425,TJ,N2O,2.0,kg/TJ,9.93685,Naphtha combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,65afc185-6d60-3d41-b87d-4506dc92956d +2016,Santa Fe,II.5.1,13.054965,TJ,CO2,73300.0,kg/TJ,956928.9345,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,92fee6b2-e437-3987-8768-a462ff33363c +2016,Santa Fe,II.5.1,13.054965,TJ,CH4,0.5,kg/TJ,6.5274825,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,c647c865-3d06-347e-b5ae-8a998969f37a +2016,Santa Fe,II.5.1,13.054965,TJ,N2O,2.0,kg/TJ,26.10993,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,0a3c5515-8a3f-303d-90d7-c6ee2b29c449 +2016,Tucuman,II.5.1,3.70062,TJ,CO2,73300.0,kg/TJ,271255.446,Naphtha combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,89a0cca9-0193-3384-b86a-fca32e6b903e +2016,Tucuman,II.5.1,3.70062,TJ,CH4,0.5,kg/TJ,1.85031,Naphtha combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,7c99d8f5-446c-35b0-bcbd-329e8c4b6400 +2016,Tucuman,II.5.1,3.70062,TJ,N2O,2.0,kg/TJ,7.40124,Naphtha combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,85bd5b0d-b617-39a3-844b-415784cb277a +2016,Buenos Aires,II.2.1,27.05388,TJ,CO2,74100.0,kg/TJ,2004692.508,Gas Oil combustion consumption by railway transport,AR-B,SESCO,annual,kg,40598967-2299-3ec5-86b0-bcbbc29b45c4 +2016,Buenos Aires,II.2.1,27.05388,TJ,CH4,3.9,kg/TJ,105.510132,Gas Oil combustion consumption by railway transport,AR-B,SESCO,annual,kg,846a650b-3fd4-3993-bf67-c045593b5e7a +2016,Buenos Aires,II.2.1,27.05388,TJ,N2O,3.9,kg/TJ,105.510132,Gas Oil combustion consumption by railway transport,AR-B,SESCO,annual,kg,846a650b-3fd4-3993-bf67-c045593b5e7a +2016,La Pampa,II.2.1,5.20128,TJ,CO2,74100.0,kg/TJ,385414.848,Gas Oil combustion consumption by railway transport,AR-L,SESCO,annual,kg,d950a83e-4fda-3e89-94bf-4e806d6f5273 +2016,La Pampa,II.2.1,5.20128,TJ,CH4,3.9,kg/TJ,20.284992,Gas Oil combustion consumption by railway transport,AR-L,SESCO,annual,kg,7a28ed90-e260-39b5-a28f-6ab25e36abb7 +2016,La Pampa,II.2.1,5.20128,TJ,N2O,3.9,kg/TJ,20.284992,Gas Oil combustion consumption by railway transport,AR-L,SESCO,annual,kg,7a28ed90-e260-39b5-a28f-6ab25e36abb7 +2016,Santa Fe,II.2.1,31.93008,TJ,CO2,74100.0,kg/TJ,2366018.928,Gas Oil combustion consumption by railway transport,AR-S,SESCO,annual,kg,0b448b50-047a-3f1a-84da-e185ceb3fd47 +2016,Santa Fe,II.2.1,31.93008,TJ,CH4,3.9,kg/TJ,124.527312,Gas Oil combustion consumption by railway transport,AR-S,SESCO,annual,kg,2d48a9fb-d025-3bd4-b27f-f584037df6a8 +2016,Santa Fe,II.2.1,31.93008,TJ,N2O,3.9,kg/TJ,124.527312,Gas Oil combustion consumption by railway transport,AR-S,SESCO,annual,kg,2d48a9fb-d025-3bd4-b27f-f584037df6a8 +2016,Santiago del Estero,II.2.1,2.60064,TJ,CO2,74100.0,kg/TJ,192707.424,Gas Oil combustion consumption by railway transport,AR-G,SESCO,annual,kg,e21833d2-fd98-3f84-be7c-a5cc1064a013 +2016,Santiago del Estero,II.2.1,2.60064,TJ,CH4,3.9,kg/TJ,10.142496,Gas Oil combustion consumption by railway transport,AR-G,SESCO,annual,kg,713b80d2-506d-3a57-9c97-393491820477 +2016,Santiago del Estero,II.2.1,2.60064,TJ,N2O,3.9,kg/TJ,10.142496,Gas Oil combustion consumption by railway transport,AR-G,SESCO,annual,kg,713b80d2-506d-3a57-9c97-393491820477 +2016,Buenos Aires,II.1.1,1717.0725599999998,TJ,CO2,74100.0,kg/TJ,127235076.696,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,b60c87a5-fada-38b3-acdb-6a27060e9bdd +2016,Buenos Aires,II.1.1,1717.0725599999998,TJ,CH4,3.9,kg/TJ,6696.582984,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,6ab98fb9-9a85-3595-b9c1-5922397be97b +2016,Buenos Aires,II.1.1,1717.0725599999998,TJ,N2O,3.9,kg/TJ,6696.582984,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,6ab98fb9-9a85-3595-b9c1-5922397be97b +2016,Capital Federal,II.1.1,235.64687999999998,TJ,CO2,74100.0,kg/TJ,17461433.808,Gas Oil combustion consumption by freight transport,AR-C,SESCO,annual,kg,413c19e1-ec1a-35c1-b710-c59127294c04 +2016,Capital Federal,II.1.1,235.64687999999998,TJ,CH4,3.9,kg/TJ,919.0228319999999,Gas Oil combustion consumption by freight transport,AR-C,SESCO,annual,kg,62bc3bb9-637e-33dd-a992-63f06dac7363 +2016,Capital Federal,II.1.1,235.64687999999998,TJ,N2O,3.9,kg/TJ,919.0228319999999,Gas Oil combustion consumption by freight transport,AR-C,SESCO,annual,kg,62bc3bb9-637e-33dd-a992-63f06dac7363 +2016,Catamarca,II.1.1,38.14272,TJ,CO2,74100.0,kg/TJ,2826375.5519999997,Gas Oil combustion consumption by freight transport,AR-K,SESCO,annual,kg,2e65dd8c-191b-33e8-8bd1-9d9db0afe48c +2016,Catamarca,II.1.1,38.14272,TJ,CH4,3.9,kg/TJ,148.75660799999997,Gas Oil combustion consumption by freight transport,AR-K,SESCO,annual,kg,89a42ce3-1880-3924-b1d4-f5962fc3ae57 +2016,Catamarca,II.1.1,38.14272,TJ,N2O,3.9,kg/TJ,148.75660799999997,Gas Oil combustion consumption by freight transport,AR-K,SESCO,annual,kg,89a42ce3-1880-3924-b1d4-f5962fc3ae57 +2016,Chaco,II.1.1,21.20244,TJ,CO2,74100.0,kg/TJ,1571100.804,Gas Oil combustion consumption by freight transport,AR-H,SESCO,annual,kg,0c54da9a-8bf7-34ea-9420-310fffb758b5 +2016,Chaco,II.1.1,21.20244,TJ,CH4,3.9,kg/TJ,82.689516,Gas Oil combustion consumption by freight transport,AR-H,SESCO,annual,kg,2b33ad8a-64b2-38fd-b214-b6e5e8721302 +2016,Chaco,II.1.1,21.20244,TJ,N2O,3.9,kg/TJ,82.689516,Gas Oil combustion consumption by freight transport,AR-H,SESCO,annual,kg,2b33ad8a-64b2-38fd-b214-b6e5e8721302 +2016,Chubut,II.1.1,19.1436,TJ,CO2,74100.0,kg/TJ,1418540.76,Gas Oil combustion consumption by freight transport,AR-U,SESCO,annual,kg,448cb0d1-dfb9-36a9-a270-ac8a8d65560a +2016,Chubut,II.1.1,19.1436,TJ,CH4,3.9,kg/TJ,74.66004,Gas Oil combustion consumption by freight transport,AR-U,SESCO,annual,kg,5940314e-1012-32a2-9aa8-a80e9102bb3e +2016,Chubut,II.1.1,19.1436,TJ,N2O,3.9,kg/TJ,74.66004,Gas Oil combustion consumption by freight transport,AR-U,SESCO,annual,kg,5940314e-1012-32a2-9aa8-a80e9102bb3e +2016,Corrientes,II.1.1,74.66004,TJ,CO2,74100.0,kg/TJ,5532308.964,Gas Oil combustion consumption by freight transport,AR-W,SESCO,annual,kg,d9332edc-f372-35ce-85f5-1c52e0def98a +2016,Corrientes,II.1.1,74.66004,TJ,CH4,3.9,kg/TJ,291.174156,Gas Oil combustion consumption by freight transport,AR-W,SESCO,annual,kg,512114df-4cd2-3f88-bd86-350659c04a45 +2016,Corrientes,II.1.1,74.66004,TJ,N2O,3.9,kg/TJ,291.174156,Gas Oil combustion consumption by freight transport,AR-W,SESCO,annual,kg,512114df-4cd2-3f88-bd86-350659c04a45 +2016,Córdoba,II.1.1,288.30984,TJ,CO2,74100.0,kg/TJ,21363759.144,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,750f2b19-59e1-3b2a-85dc-52306e077902 +2016,Córdoba,II.1.1,288.30984,TJ,CH4,3.9,kg/TJ,1124.408376,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,6807dd41-f2cd-3b6d-ad7a-71146b4e6320 +2016,Córdoba,II.1.1,288.30984,TJ,N2O,3.9,kg/TJ,1124.408376,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,6807dd41-f2cd-3b6d-ad7a-71146b4e6320 +2016,Entre Rios,II.1.1,130.06812,TJ,CO2,74100.0,kg/TJ,9638047.692,Gas Oil combustion consumption by freight transport,AR-E,SESCO,annual,kg,778a1a84-1ba0-3535-adab-ccd2ca861510 +2016,Entre Rios,II.1.1,130.06812,TJ,CH4,3.9,kg/TJ,507.26566799999995,Gas Oil combustion consumption by freight transport,AR-E,SESCO,annual,kg,a5c5329e-a694-3ea5-a0c4-7cd043da9dbf +2016,Entre Rios,II.1.1,130.06812,TJ,N2O,3.9,kg/TJ,507.26566799999995,Gas Oil combustion consumption by freight transport,AR-E,SESCO,annual,kg,a5c5329e-a694-3ea5-a0c4-7cd043da9dbf +2016,Formosa,II.1.1,4.11768,TJ,CO2,74100.0,kg/TJ,305120.088,Gas Oil combustion consumption by freight transport,AR-P,SESCO,annual,kg,ccff8922-dc61-360c-a83d-bce60e54ee31 +2016,Formosa,II.1.1,4.11768,TJ,CH4,3.9,kg/TJ,16.058951999999998,Gas Oil combustion consumption by freight transport,AR-P,SESCO,annual,kg,f1362575-8411-311c-b647-c8be0ad34334 +2016,Formosa,II.1.1,4.11768,TJ,N2O,3.9,kg/TJ,16.058951999999998,Gas Oil combustion consumption by freight transport,AR-P,SESCO,annual,kg,f1362575-8411-311c-b647-c8be0ad34334 +2016,La Pampa,II.1.1,22.430519999999998,TJ,CO2,74100.0,kg/TJ,1662101.532,Gas Oil combustion consumption by freight transport,AR-L,SESCO,annual,kg,9f2dbe25-b008-3b4a-80ac-15dd27ab25cb +2016,La Pampa,II.1.1,22.430519999999998,TJ,CH4,3.9,kg/TJ,87.47902799999999,Gas Oil combustion consumption by freight transport,AR-L,SESCO,annual,kg,88f7bf09-d949-395c-b459-c5f58be7325d +2016,La Pampa,II.1.1,22.430519999999998,TJ,N2O,3.9,kg/TJ,87.47902799999999,Gas Oil combustion consumption by freight transport,AR-L,SESCO,annual,kg,88f7bf09-d949-395c-b459-c5f58be7325d +2016,La Rioja,II.1.1,1.5531599999999999,TJ,CO2,74100.0,kg/TJ,115089.15599999999,Gas Oil combustion consumption by freight transport,AR-F,SESCO,annual,kg,c6b7eb5d-0966-337f-a456-944f6e7dbbcd +2016,La Rioja,II.1.1,1.5531599999999999,TJ,CH4,3.9,kg/TJ,6.0573239999999995,Gas Oil combustion consumption by freight transport,AR-F,SESCO,annual,kg,95efcec2-a892-3636-813f-edc556a136ff +2016,La Rioja,II.1.1,1.5531599999999999,TJ,N2O,3.9,kg/TJ,6.0573239999999995,Gas Oil combustion consumption by freight transport,AR-F,SESCO,annual,kg,95efcec2-a892-3636-813f-edc556a136ff +2016,Mendoza,II.1.1,26.186999999999998,TJ,CO2,74100.0,kg/TJ,1940456.6999999997,Gas Oil combustion consumption by freight transport,AR-M,SESCO,annual,kg,17ddf66b-042f-3297-9d6f-67a55e5abd68 +2016,Mendoza,II.1.1,26.186999999999998,TJ,CH4,3.9,kg/TJ,102.12929999999999,Gas Oil combustion consumption by freight transport,AR-M,SESCO,annual,kg,2f6cfe79-c92e-30d6-8f8a-a70c44ea4d5c +2016,Mendoza,II.1.1,26.186999999999998,TJ,N2O,3.9,kg/TJ,102.12929999999999,Gas Oil combustion consumption by freight transport,AR-M,SESCO,annual,kg,2f6cfe79-c92e-30d6-8f8a-a70c44ea4d5c +2016,Misiones,II.1.1,27.48732,TJ,CO2,74100.0,kg/TJ,2036810.412,Gas Oil combustion consumption by freight transport,AR-N,SESCO,annual,kg,7e631e93-6bea-3d0e-8a94-7722d48ae398 +2016,Misiones,II.1.1,27.48732,TJ,CH4,3.9,kg/TJ,107.200548,Gas Oil combustion consumption by freight transport,AR-N,SESCO,annual,kg,ccc2d713-b12e-354e-af41-ee18a9039998 +2016,Misiones,II.1.1,27.48732,TJ,N2O,3.9,kg/TJ,107.200548,Gas Oil combustion consumption by freight transport,AR-N,SESCO,annual,kg,ccc2d713-b12e-354e-af41-ee18a9039998 +2016,Neuquén,II.1.1,0.32508,TJ,CO2,74100.0,kg/TJ,24088.428,Gas Oil combustion consumption by freight transport,AR-Q,SESCO,annual,kg,8e1719d5-afad-395c-a11f-6b3fb8b1a13c +2016,Neuquén,II.1.1,0.32508,TJ,CH4,3.9,kg/TJ,1.267812,Gas Oil combustion consumption by freight transport,AR-Q,SESCO,annual,kg,cd168156-5aa7-349b-99d4-b59f077ac82a +2016,Neuquén,II.1.1,0.32508,TJ,N2O,3.9,kg/TJ,1.267812,Gas Oil combustion consumption by freight transport,AR-Q,SESCO,annual,kg,cd168156-5aa7-349b-99d4-b59f077ac82a +2016,Rio Negro,II.1.1,86.18231999999999,TJ,CO2,74100.0,kg/TJ,6386109.912,Gas Oil combustion consumption by freight transport,AR-R,SESCO,annual,kg,26ade02b-208f-3061-835d-4ef5c507973d +2016,Rio Negro,II.1.1,86.18231999999999,TJ,CH4,3.9,kg/TJ,336.1110479999999,Gas Oil combustion consumption by freight transport,AR-R,SESCO,annual,kg,364647ad-f7bc-3cef-9603-c1b53a47e7ba +2016,Rio Negro,II.1.1,86.18231999999999,TJ,N2O,3.9,kg/TJ,336.1110479999999,Gas Oil combustion consumption by freight transport,AR-R,SESCO,annual,kg,364647ad-f7bc-3cef-9603-c1b53a47e7ba +2016,Salta,II.1.1,23.080679999999997,TJ,CO2,74100.0,kg/TJ,1710278.3879999998,Gas Oil combustion consumption by freight transport,AR-A,SESCO,annual,kg,2f0461aa-429d-3d99-89d5-fb3d12abe40d +2016,Salta,II.1.1,23.080679999999997,TJ,CH4,3.9,kg/TJ,90.01465199999998,Gas Oil combustion consumption by freight transport,AR-A,SESCO,annual,kg,6b4cd22c-9ced-325a-97cc-14a51f5afb72 +2016,Salta,II.1.1,23.080679999999997,TJ,N2O,3.9,kg/TJ,90.01465199999998,Gas Oil combustion consumption by freight transport,AR-A,SESCO,annual,kg,6b4cd22c-9ced-325a-97cc-14a51f5afb72 +2016,San Juan,II.1.1,12.8226,TJ,CO2,74100.0,kg/TJ,950154.6599999999,Gas Oil combustion consumption by freight transport,AR-J,SESCO,annual,kg,367a0d23-a029-3e90-ab1d-937dfaa980a9 +2016,San Juan,II.1.1,12.8226,TJ,CH4,3.9,kg/TJ,50.00814,Gas Oil combustion consumption by freight transport,AR-J,SESCO,annual,kg,ef045d02-c2fb-384f-8927-d58c21b265e1 +2016,San Juan,II.1.1,12.8226,TJ,N2O,3.9,kg/TJ,50.00814,Gas Oil combustion consumption by freight transport,AR-J,SESCO,annual,kg,ef045d02-c2fb-384f-8927-d58c21b265e1 +2016,San Luis,II.1.1,84.84588,TJ,CO2,74100.0,kg/TJ,6287079.708,Gas Oil combustion consumption by freight transport,AR-D,SESCO,annual,kg,22422fbe-71e2-3780-b0e6-9a1a0029881d +2016,San Luis,II.1.1,84.84588,TJ,CH4,3.9,kg/TJ,330.89893199999995,Gas Oil combustion consumption by freight transport,AR-D,SESCO,annual,kg,a631eff9-8971-3ded-b636-83450ef5147f +2016,San Luis,II.1.1,84.84588,TJ,N2O,3.9,kg/TJ,330.89893199999995,Gas Oil combustion consumption by freight transport,AR-D,SESCO,annual,kg,a631eff9-8971-3ded-b636-83450ef5147f +2016,Santa Fe,II.1.1,556.9703999999999,TJ,CO2,74100.0,kg/TJ,41271506.63999999,Gas Oil combustion consumption by freight transport,AR-S,SESCO,annual,kg,f8909f80-8cfb-398b-9b55-b2b3c462a2f1 +2016,Santa Fe,II.1.1,556.9703999999999,TJ,CH4,3.9,kg/TJ,2172.1845599999997,Gas Oil combustion consumption by freight transport,AR-S,SESCO,annual,kg,9d7c3469-4522-3c4f-b349-e1f81f3d1bf0 +2016,Santa Fe,II.1.1,556.9703999999999,TJ,N2O,3.9,kg/TJ,2172.1845599999997,Gas Oil combustion consumption by freight transport,AR-S,SESCO,annual,kg,9d7c3469-4522-3c4f-b349-e1f81f3d1bf0 +2016,Santiago del Estero,II.1.1,37.600919999999995,TJ,CO2,74100.0,kg/TJ,2786228.172,Gas Oil combustion consumption by freight transport,AR-G,SESCO,annual,kg,f74be83c-c90c-34d6-9521-f08a61e05f41 +2016,Santiago del Estero,II.1.1,37.600919999999995,TJ,CH4,3.9,kg/TJ,146.64358799999997,Gas Oil combustion consumption by freight transport,AR-G,SESCO,annual,kg,2115aafb-7d26-3845-ae8b-a567e9f5281e +2016,Santiago del Estero,II.1.1,37.600919999999995,TJ,N2O,3.9,kg/TJ,146.64358799999997,Gas Oil combustion consumption by freight transport,AR-G,SESCO,annual,kg,2115aafb-7d26-3845-ae8b-a567e9f5281e +2016,Tucuman,II.1.1,46.08912,TJ,CO2,74100.0,kg/TJ,3415203.792,Gas Oil combustion consumption by freight transport,AR-T,SESCO,annual,kg,531a02f9-53f1-3b75-bbb3-a3668a8ad0fb +2016,Tucuman,II.1.1,46.08912,TJ,CH4,3.9,kg/TJ,179.747568,Gas Oil combustion consumption by freight transport,AR-T,SESCO,annual,kg,60d130cc-116a-3dc8-9777-d2e6e5fa4e17 +2016,Tucuman,II.1.1,46.08912,TJ,N2O,3.9,kg/TJ,179.747568,Gas Oil combustion consumption by freight transport,AR-T,SESCO,annual,kg,60d130cc-116a-3dc8-9777-d2e6e5fa4e17 +2016,Buenos Aires,II.1.1,65.5578,TJ,CO2,74100.0,kg/TJ,4857832.98,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,82ccb204-0124-373f-b0a6-63e417bb38c6 +2016,Buenos Aires,II.1.1,65.5578,TJ,CH4,3.9,kg/TJ,255.67542,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,99051b36-196b-3862-87fd-29a80007d464 +2016,Buenos Aires,II.1.1,65.5578,TJ,N2O,3.9,kg/TJ,255.67542,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,99051b36-196b-3862-87fd-29a80007d464 +2016,Capital Federal,II.1.1,17.662679999999998,TJ,CO2,74100.0,kg/TJ,1308804.5879999998,Gas Oil combustion consumption by freight transport,AR-C,SESCO,annual,kg,70463576-b76b-3910-a612-9fefb7ac9905 +2016,Capital Federal,II.1.1,17.662679999999998,TJ,CH4,3.9,kg/TJ,68.884452,Gas Oil combustion consumption by freight transport,AR-C,SESCO,annual,kg,e0480165-60eb-395b-ac53-a6cd79e55071 +2016,Capital Federal,II.1.1,17.662679999999998,TJ,N2O,3.9,kg/TJ,68.884452,Gas Oil combustion consumption by freight transport,AR-C,SESCO,annual,kg,e0480165-60eb-395b-ac53-a6cd79e55071 +2016,Catamarca,II.1.1,0.28896,TJ,CO2,74100.0,kg/TJ,21411.935999999998,Gas Oil combustion consumption by freight transport,AR-K,SESCO,annual,kg,9e6bb34e-b818-3b6a-8c14-d80f8d52bdc5 +2016,Catamarca,II.1.1,0.28896,TJ,CH4,3.9,kg/TJ,1.126944,Gas Oil combustion consumption by freight transport,AR-K,SESCO,annual,kg,2aeca832-1095-385a-8e32-082f13ecca68 +2016,Catamarca,II.1.1,0.28896,TJ,N2O,3.9,kg/TJ,1.126944,Gas Oil combustion consumption by freight transport,AR-K,SESCO,annual,kg,2aeca832-1095-385a-8e32-082f13ecca68 +2016,Chaco,II.1.1,1.15584,TJ,CO2,74100.0,kg/TJ,85647.74399999999,Gas Oil combustion consumption by freight transport,AR-H,SESCO,annual,kg,67a60d13-020b-3323-ac21-2e3818aff67a +2016,Chaco,II.1.1,1.15584,TJ,CH4,3.9,kg/TJ,4.507776,Gas Oil combustion consumption by freight transport,AR-H,SESCO,annual,kg,cc3386e0-37ce-3ba8-964c-d99385034fb6 +2016,Chaco,II.1.1,1.15584,TJ,N2O,3.9,kg/TJ,4.507776,Gas Oil combustion consumption by freight transport,AR-H,SESCO,annual,kg,cc3386e0-37ce-3ba8-964c-d99385034fb6 +2016,Chubut,II.1.1,2.96184,TJ,CO2,74100.0,kg/TJ,219472.344,Gas Oil combustion consumption by freight transport,AR-U,SESCO,annual,kg,3968bdb6-698a-3a3c-a398-1404b3d63786 +2016,Chubut,II.1.1,2.96184,TJ,CH4,3.9,kg/TJ,11.551176,Gas Oil combustion consumption by freight transport,AR-U,SESCO,annual,kg,ada6965d-fbf6-3ad3-8775-fd61f39b3377 +2016,Chubut,II.1.1,2.96184,TJ,N2O,3.9,kg/TJ,11.551176,Gas Oil combustion consumption by freight transport,AR-U,SESCO,annual,kg,ada6965d-fbf6-3ad3-8775-fd61f39b3377 +2016,Corrientes,II.1.1,3.28692,TJ,CO2,74100.0,kg/TJ,243560.772,Gas Oil combustion consumption by freight transport,AR-W,SESCO,annual,kg,4d7862dd-4989-3705-8eea-0695906cb013 +2016,Corrientes,II.1.1,3.28692,TJ,CH4,3.9,kg/TJ,12.818988,Gas Oil combustion consumption by freight transport,AR-W,SESCO,annual,kg,915894d3-0f20-346a-9fc5-ab5172fce7a9 +2016,Corrientes,II.1.1,3.28692,TJ,N2O,3.9,kg/TJ,12.818988,Gas Oil combustion consumption by freight transport,AR-W,SESCO,annual,kg,915894d3-0f20-346a-9fc5-ab5172fce7a9 +2016,Córdoba,II.1.1,8.41596,TJ,CO2,74100.0,kg/TJ,623622.636,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,8b3198b0-61b7-37df-84e1-b552912121af +2016,Córdoba,II.1.1,8.41596,TJ,CH4,3.9,kg/TJ,32.822244,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,76142f5a-1dde-3785-9766-e9ba0f1610ce +2016,Córdoba,II.1.1,8.41596,TJ,N2O,3.9,kg/TJ,32.822244,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,76142f5a-1dde-3785-9766-e9ba0f1610ce +2016,Entre Rios,II.1.1,3.64812,TJ,CO2,74100.0,kg/TJ,270325.692,Gas Oil combustion consumption by freight transport,AR-E,SESCO,annual,kg,8e4d4e30-7673-3731-8d36-3ffac7956cee +2016,Entre Rios,II.1.1,3.64812,TJ,CH4,3.9,kg/TJ,14.227668,Gas Oil combustion consumption by freight transport,AR-E,SESCO,annual,kg,21ebb885-0617-3094-9839-cb4873b53117 +2016,Entre Rios,II.1.1,3.64812,TJ,N2O,3.9,kg/TJ,14.227668,Gas Oil combustion consumption by freight transport,AR-E,SESCO,annual,kg,21ebb885-0617-3094-9839-cb4873b53117 +2016,La Pampa,II.1.1,0.5418,TJ,CO2,74100.0,kg/TJ,40147.38,Gas Oil combustion consumption by freight transport,AR-L,SESCO,annual,kg,8bea11b5-260a-31e0-9b47-d09d467faf65 +2016,La Pampa,II.1.1,0.5418,TJ,CH4,3.9,kg/TJ,2.1130199999999997,Gas Oil combustion consumption by freight transport,AR-L,SESCO,annual,kg,333d2d89-a037-3c59-9930-cb4c6875fb58 +2016,La Pampa,II.1.1,0.5418,TJ,N2O,3.9,kg/TJ,2.1130199999999997,Gas Oil combustion consumption by freight transport,AR-L,SESCO,annual,kg,333d2d89-a037-3c59-9930-cb4c6875fb58 +2016,La Rioja,II.1.1,0.21672,TJ,CO2,74100.0,kg/TJ,16058.952,Gas Oil combustion consumption by freight transport,AR-F,SESCO,annual,kg,f50c4d5d-b8e1-3452-b402-b4f68dab72dd +2016,La Rioja,II.1.1,0.21672,TJ,CH4,3.9,kg/TJ,0.845208,Gas Oil combustion consumption by freight transport,AR-F,SESCO,annual,kg,f6d41ec4-5e64-3a97-98a5-1b3163bf62a4 +2016,La Rioja,II.1.1,0.21672,TJ,N2O,3.9,kg/TJ,0.845208,Gas Oil combustion consumption by freight transport,AR-F,SESCO,annual,kg,f6d41ec4-5e64-3a97-98a5-1b3163bf62a4 +2016,Mendoza,II.1.1,0.10836,TJ,CO2,74100.0,kg/TJ,8029.476,Gas Oil combustion consumption by freight transport,AR-M,SESCO,annual,kg,c1b344f6-d1a6-3422-b99f-311077f011f5 +2016,Mendoza,II.1.1,0.10836,TJ,CH4,3.9,kg/TJ,0.422604,Gas Oil combustion consumption by freight transport,AR-M,SESCO,annual,kg,457dda64-64fc-3918-9756-c397c0a16169 +2016,Mendoza,II.1.1,0.10836,TJ,N2O,3.9,kg/TJ,0.422604,Gas Oil combustion consumption by freight transport,AR-M,SESCO,annual,kg,457dda64-64fc-3918-9756-c397c0a16169 +2016,Misiones,II.1.1,0.8307599999999999,TJ,CO2,74100.0,kg/TJ,61559.316,Gas Oil combustion consumption by freight transport,AR-N,SESCO,annual,kg,890f66fb-48c7-3d14-88fd-375e8290f8ba +2016,Misiones,II.1.1,0.8307599999999999,TJ,CH4,3.9,kg/TJ,3.2399639999999996,Gas Oil combustion consumption by freight transport,AR-N,SESCO,annual,kg,f29bd6d2-b1f8-3f20-808d-9c607613b62d +2016,Misiones,II.1.1,0.8307599999999999,TJ,N2O,3.9,kg/TJ,3.2399639999999996,Gas Oil combustion consumption by freight transport,AR-N,SESCO,annual,kg,f29bd6d2-b1f8-3f20-808d-9c607613b62d +2016,Neuquén,II.1.1,0.03612,TJ,CO2,74100.0,kg/TJ,2676.4919999999997,Gas Oil combustion consumption by freight transport,AR-Q,SESCO,annual,kg,72f79e4f-cc41-3c96-90ab-f636da9fd693 +2016,Neuquén,II.1.1,0.03612,TJ,CH4,3.9,kg/TJ,0.140868,Gas Oil combustion consumption by freight transport,AR-Q,SESCO,annual,kg,a2c1117f-32e8-359f-bc8f-87f84ddd7b5b +2016,Neuquén,II.1.1,0.03612,TJ,N2O,3.9,kg/TJ,0.140868,Gas Oil combustion consumption by freight transport,AR-Q,SESCO,annual,kg,a2c1117f-32e8-359f-bc8f-87f84ddd7b5b +2016,Rio Negro,II.1.1,1.87824,TJ,CO2,74100.0,kg/TJ,139177.584,Gas Oil combustion consumption by freight transport,AR-R,SESCO,annual,kg,01a18194-ee5d-3e55-9f47-ba31040304ac +2016,Rio Negro,II.1.1,1.87824,TJ,CH4,3.9,kg/TJ,7.325136,Gas Oil combustion consumption by freight transport,AR-R,SESCO,annual,kg,fe7c9d56-be2a-3213-be8a-7b33995face3 +2016,Rio Negro,II.1.1,1.87824,TJ,N2O,3.9,kg/TJ,7.325136,Gas Oil combustion consumption by freight transport,AR-R,SESCO,annual,kg,fe7c9d56-be2a-3213-be8a-7b33995face3 +2016,San Juan,II.1.1,0.43344,TJ,CO2,74100.0,kg/TJ,32117.904,Gas Oil combustion consumption by freight transport,AR-J,SESCO,annual,kg,5cd0e16f-163c-3a53-a0e0-a0697fe4b69c +2016,San Juan,II.1.1,0.43344,TJ,CH4,3.9,kg/TJ,1.690416,Gas Oil combustion consumption by freight transport,AR-J,SESCO,annual,kg,5e0ed554-cb39-3f88-862e-c79e577bf25b +2016,San Juan,II.1.1,0.43344,TJ,N2O,3.9,kg/TJ,1.690416,Gas Oil combustion consumption by freight transport,AR-J,SESCO,annual,kg,5e0ed554-cb39-3f88-862e-c79e577bf25b +2016,San Luis,II.1.1,1.48092,TJ,CO2,74100.0,kg/TJ,109736.172,Gas Oil combustion consumption by freight transport,AR-D,SESCO,annual,kg,42f8f147-e9c5-3509-817f-c0bc625fc14a +2016,San Luis,II.1.1,1.48092,TJ,CH4,3.9,kg/TJ,5.775588,Gas Oil combustion consumption by freight transport,AR-D,SESCO,annual,kg,327d77fe-ac4d-3c3c-8a25-3e072317700f +2016,San Luis,II.1.1,1.48092,TJ,N2O,3.9,kg/TJ,5.775588,Gas Oil combustion consumption by freight transport,AR-D,SESCO,annual,kg,327d77fe-ac4d-3c3c-8a25-3e072317700f +2016,Santa Fe,II.1.1,13.3644,TJ,CO2,74100.0,kg/TJ,990302.04,Gas Oil combustion consumption by freight transport,AR-S,SESCO,annual,kg,98936536-2ae7-321c-b5f2-4d69e2371727 +2016,Santa Fe,II.1.1,13.3644,TJ,CH4,3.9,kg/TJ,52.121159999999996,Gas Oil combustion consumption by freight transport,AR-S,SESCO,annual,kg,c68b3d0d-46f1-3c24-877b-ba5f236aaddb +2016,Santa Fe,II.1.1,13.3644,TJ,N2O,3.9,kg/TJ,52.121159999999996,Gas Oil combustion consumption by freight transport,AR-S,SESCO,annual,kg,c68b3d0d-46f1-3c24-877b-ba5f236aaddb +2016,Santiago del Estero,II.1.1,0.79464,TJ,CO2,74100.0,kg/TJ,58882.824,Gas Oil combustion consumption by freight transport,AR-G,SESCO,annual,kg,ca406244-8172-39b0-99af-a624f00b1e70 +2016,Santiago del Estero,II.1.1,0.79464,TJ,CH4,3.9,kg/TJ,3.099096,Gas Oil combustion consumption by freight transport,AR-G,SESCO,annual,kg,28e25b1d-b28d-3f63-8222-25e81195204f +2016,Santiago del Estero,II.1.1,0.79464,TJ,N2O,3.9,kg/TJ,3.099096,Gas Oil combustion consumption by freight transport,AR-G,SESCO,annual,kg,28e25b1d-b28d-3f63-8222-25e81195204f +2016,Tucuman,II.1.1,0.68628,TJ,CO2,74100.0,kg/TJ,50853.348,Gas Oil combustion consumption by freight transport,AR-T,SESCO,annual,kg,c021b19e-a9f5-3ab7-8709-f4a98c171122 +2016,Tucuman,II.1.1,0.68628,TJ,CH4,3.9,kg/TJ,2.676492,Gas Oil combustion consumption by freight transport,AR-T,SESCO,annual,kg,ef12b4a6-156e-3826-9bc9-a9db162e2d38 +2016,Tucuman,II.1.1,0.68628,TJ,N2O,3.9,kg/TJ,2.676492,Gas Oil combustion consumption by freight transport,AR-T,SESCO,annual,kg,ef12b4a6-156e-3826-9bc9-a9db162e2d38 +2016,Buenos Aires,II.1.1,0.377436,TJ,CO2,71500.0,kg/TJ,26986.674,Jet Kerosene combustion consumption by freight transport,AR-B,SESCO,annual,kg,94e5304b-b8f0-3b81-8399-af8b9d57a49d +2016,Buenos Aires,II.1.1,0.377436,TJ,CH4,0.5,kg/TJ,0.188718,Jet Kerosene combustion consumption by freight transport,AR-B,SESCO,annual,kg,bb8d18a9-0f16-3243-a551-2d2f144f6083 +2016,Buenos Aires,II.1.1,0.377436,TJ,N2O,2.0,kg/TJ,0.754872,Jet Kerosene combustion consumption by freight transport,AR-B,SESCO,annual,kg,d54e3f6e-85db-3dbe-9a72-ae530cd4479a +2016,Buenos Aires,II.1.1,9.25155,TJ,CO2,73300.0,kg/TJ,678138.615,Naphtha combustion consumption by freight transport,AR-B,SESCO,annual,kg,2c336484-b4de-34a3-ac6a-807de796f5ce +2016,Buenos Aires,II.1.1,9.25155,TJ,CH4,0.5,kg/TJ,4.625775,Naphtha combustion consumption by freight transport,AR-B,SESCO,annual,kg,87df8909-3ad8-39d5-8959-bda7ba372bd2 +2016,Buenos Aires,II.1.1,9.25155,TJ,N2O,2.0,kg/TJ,18.5031,Naphtha combustion consumption by freight transport,AR-B,SESCO,annual,kg,96021931-9780-3cd7-a94a-db555a0ff85c +2016,Capital Federal,II.1.1,6.23623,TJ,CO2,73300.0,kg/TJ,457115.659,Naphtha combustion consumption by freight transport,AR-C,SESCO,annual,kg,962c81ec-2ec7-3653-a167-a2d19318412d +2016,Capital Federal,II.1.1,6.23623,TJ,CH4,0.5,kg/TJ,3.118115,Naphtha combustion consumption by freight transport,AR-C,SESCO,annual,kg,1c4618ee-4ad8-3d65-8658-3e216aac5069 +2016,Capital Federal,II.1.1,6.23623,TJ,N2O,2.0,kg/TJ,12.47246,Naphtha combustion consumption by freight transport,AR-C,SESCO,annual,kg,25216238-029c-3e10-8ba0-ab6c995956df +2016,Córdoba,II.1.1,1.71325,TJ,CO2,73300.0,kg/TJ,125581.22499999999,Naphtha combustion consumption by freight transport,AR-X,SESCO,annual,kg,69adf986-ae01-3884-86e7-9c50f5745843 +2016,Córdoba,II.1.1,1.71325,TJ,CH4,0.5,kg/TJ,0.856625,Naphtha combustion consumption by freight transport,AR-X,SESCO,annual,kg,c9b9cee5-6029-34d7-8326-18ae96fdef42 +2016,Córdoba,II.1.1,1.71325,TJ,N2O,2.0,kg/TJ,3.4265,Naphtha combustion consumption by freight transport,AR-X,SESCO,annual,kg,22fa8334-6e5f-3c5b-a631-e9d3f8e30f99 +2016,Santa Cruz,II.1.1,2.706935,TJ,CO2,73300.0,kg/TJ,198418.33550000002,Naphtha combustion consumption by freight transport,AR-Z,SESCO,annual,kg,0b319c3c-424c-37fc-be4c-3ce26ce9d7b5 +2016,Santa Cruz,II.1.1,2.706935,TJ,CH4,0.5,kg/TJ,1.3534675,Naphtha combustion consumption by freight transport,AR-Z,SESCO,annual,kg,2edc1fc1-13a4-3b2e-8dc9-deaabef5cec3 +2016,Santa Cruz,II.1.1,2.706935,TJ,N2O,2.0,kg/TJ,5.41387,Naphtha combustion consumption by freight transport,AR-Z,SESCO,annual,kg,02d436b2-51ae-3170-931a-363e00bc5744 +2016,Santa Fe,II.1.1,7.298445,TJ,CO2,73300.0,kg/TJ,534976.0185,Naphtha combustion consumption by freight transport,AR-S,SESCO,annual,kg,81574694-b6a2-3893-aedd-f5955a9992b3 +2016,Santa Fe,II.1.1,7.298445,TJ,CH4,0.5,kg/TJ,3.6492225,Naphtha combustion consumption by freight transport,AR-S,SESCO,annual,kg,4da4dc1a-9aa8-38f9-a101-c8e4fe00eada +2016,Santa Fe,II.1.1,7.298445,TJ,N2O,2.0,kg/TJ,14.59689,Naphtha combustion consumption by freight transport,AR-S,SESCO,annual,kg,452e0c00-cad6-355e-b7f7-ed46b438815b +2016,Buenos Aires,II.1.1,6.1677,TJ,CO2,73300.0,kg/TJ,452092.41,Naphtha combustion consumption by freight transport,AR-B,SESCO,annual,kg,161ff0e1-42a3-3578-9bea-b00732f0a24b +2016,Buenos Aires,II.1.1,6.1677,TJ,CH4,0.5,kg/TJ,3.08385,Naphtha combustion consumption by freight transport,AR-B,SESCO,annual,kg,685366fe-3152-326a-a036-4774b497e68a +2016,Buenos Aires,II.1.1,6.1677,TJ,N2O,2.0,kg/TJ,12.3354,Naphtha combustion consumption by freight transport,AR-B,SESCO,annual,kg,a409c310-4b60-3c08-bdca-9d06c011ec67 +2016,Capital Federal,II.1.1,5.345339999999999,TJ,CO2,73300.0,kg/TJ,391813.42199999996,Naphtha combustion consumption by freight transport,AR-C,SESCO,annual,kg,1c5d3d6d-88a9-32a8-8cdf-a7944b01ee9c +2016,Capital Federal,II.1.1,5.345339999999999,TJ,CH4,0.5,kg/TJ,2.6726699999999997,Naphtha combustion consumption by freight transport,AR-C,SESCO,annual,kg,7d8cd13d-d3c8-3e20-b7b9-92c5fa5b6f02 +2016,Capital Federal,II.1.1,5.345339999999999,TJ,N2O,2.0,kg/TJ,10.690679999999999,Naphtha combustion consumption by freight transport,AR-C,SESCO,annual,kg,989f3772-c1a6-3f6a-9e03-ddfacaeee5f7 +2016,Córdoba,II.1.1,0.6167699999999999,TJ,CO2,73300.0,kg/TJ,45209.240999999995,Naphtha combustion consumption by freight transport,AR-X,SESCO,annual,kg,02545ed1-0ed3-349a-9ed9-0ec58fc9f772 +2016,Córdoba,II.1.1,0.6167699999999999,TJ,CH4,0.5,kg/TJ,0.30838499999999996,Naphtha combustion consumption by freight transport,AR-X,SESCO,annual,kg,1c15b4f2-5124-3eba-98cb-b72c5cb28fb1 +2016,Córdoba,II.1.1,0.6167699999999999,TJ,N2O,2.0,kg/TJ,1.2335399999999999,Naphtha combustion consumption by freight transport,AR-X,SESCO,annual,kg,aef9cc69-1a09-3335-a361-00dc058e51f8 +2016,Santa Cruz,II.1.1,0.34265,TJ,CO2,73300.0,kg/TJ,25116.245,Naphtha combustion consumption by freight transport,AR-Z,SESCO,annual,kg,5ecb02b8-0565-3ee9-bd16-0e6a265d8269 +2016,Santa Cruz,II.1.1,0.34265,TJ,CH4,0.5,kg/TJ,0.171325,Naphtha combustion consumption by freight transport,AR-Z,SESCO,annual,kg,ccc8657b-cdeb-328e-b73c-f4f4bc69c6b5 +2016,Santa Cruz,II.1.1,0.34265,TJ,N2O,2.0,kg/TJ,0.6853,Naphtha combustion consumption by freight transport,AR-Z,SESCO,annual,kg,6f0acbe4-b89d-35b3-8db6-020b55e94d3f +2016,Santa Fe,II.1.1,1.404865,TJ,CO2,73300.0,kg/TJ,102976.6045,Naphtha combustion consumption by freight transport,AR-S,SESCO,annual,kg,9929abb6-547d-37fa-baf6-796aa7af81ba +2016,Santa Fe,II.1.1,1.404865,TJ,CH4,0.5,kg/TJ,0.7024325,Naphtha combustion consumption by freight transport,AR-S,SESCO,annual,kg,d48d6136-6665-32df-a1d5-08a5f6c34481 +2016,Santa Fe,II.1.1,1.404865,TJ,N2O,2.0,kg/TJ,2.80973,Naphtha combustion consumption by freight transport,AR-S,SESCO,annual,kg,24bb6452-f233-3da7-99a4-39ea09e81071 +2016,Capital Federal,II.1.1,1.0189,TJ,CO2,69300.0,kg/TJ,70609.76999999999,Motor Gasoline combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,b49e7992-91d4-394e-8d1e-a137c020ad30 +2016,Capital Federal,II.1.1,1.0189,TJ,CH4,33.0,kg/TJ,33.6237,Motor Gasoline combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,10d86630-2cdd-3ae5-8506-12f86bbedeee +2016,Capital Federal,II.1.1,1.0189,TJ,N2O,3.2,kg/TJ,3.26048,Motor Gasoline combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,f081b002-9c4e-361a-8330-8f334881b065 +2016,Buenos Aires,II.1.1,2169.33108,TJ,CO2,74100.0,kg/TJ,160747433.028,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,4f0e15a0-917e-3afa-88d2-4ec59b86fd5d +2016,Buenos Aires,II.1.1,2169.33108,TJ,CH4,3.9,kg/TJ,8460.391211999999,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,224208f5-3f0c-3a59-9a6b-ac3cc37fba96 +2016,Buenos Aires,II.1.1,2169.33108,TJ,N2O,3.9,kg/TJ,8460.391211999999,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,224208f5-3f0c-3a59-9a6b-ac3cc37fba96 +2016,Capital Federal,II.1.1,633.97824,TJ,CO2,74100.0,kg/TJ,46977787.584,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,360c694c-5d57-3ec5-999a-c3081f23e85c +2016,Capital Federal,II.1.1,633.97824,TJ,CH4,3.9,kg/TJ,2472.515136,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,dfce4820-9b77-36c2-856c-65300e60583b +2016,Capital Federal,II.1.1,633.97824,TJ,N2O,3.9,kg/TJ,2472.515136,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,dfce4820-9b77-36c2-856c-65300e60583b +2016,Catamarca,II.1.1,0.79464,TJ,CO2,74100.0,kg/TJ,58882.824,Gas Oil combustion consumption by public passenger transport,AR-K,SESCO,annual,kg,c8a1f203-1b34-3eb3-b447-11b85dcb0d21 +2016,Catamarca,II.1.1,0.79464,TJ,CH4,3.9,kg/TJ,3.099096,Gas Oil combustion consumption by public passenger transport,AR-K,SESCO,annual,kg,be9e595c-2875-3052-9025-c0284bd58968 +2016,Catamarca,II.1.1,0.79464,TJ,N2O,3.9,kg/TJ,3.099096,Gas Oil combustion consumption by public passenger transport,AR-K,SESCO,annual,kg,be9e595c-2875-3052-9025-c0284bd58968 +2016,Chaco,II.1.1,0.5418,TJ,CO2,74100.0,kg/TJ,40147.38,Gas Oil combustion consumption by public passenger transport,AR-H,SESCO,annual,kg,2d2393f2-9bf8-3df8-8971-7620be341900 +2016,Chaco,II.1.1,0.5418,TJ,CH4,3.9,kg/TJ,2.1130199999999997,Gas Oil combustion consumption by public passenger transport,AR-H,SESCO,annual,kg,9deddbf3-06c6-3ff7-be4f-09086c5ebeaf +2016,Chaco,II.1.1,0.5418,TJ,N2O,3.9,kg/TJ,2.1130199999999997,Gas Oil combustion consumption by public passenger transport,AR-H,SESCO,annual,kg,9deddbf3-06c6-3ff7-be4f-09086c5ebeaf +2016,Chubut,II.1.1,14.59248,TJ,CO2,74100.0,kg/TJ,1081302.768,Gas Oil combustion consumption by public passenger transport,AR-U,SESCO,annual,kg,21093fe2-7448-304e-a290-96b9688341f6 +2016,Chubut,II.1.1,14.59248,TJ,CH4,3.9,kg/TJ,56.910672,Gas Oil combustion consumption by public passenger transport,AR-U,SESCO,annual,kg,e9be97f2-8df0-3fdc-a973-b272cf24d723 +2016,Chubut,II.1.1,14.59248,TJ,N2O,3.9,kg/TJ,56.910672,Gas Oil combustion consumption by public passenger transport,AR-U,SESCO,annual,kg,e9be97f2-8df0-3fdc-a973-b272cf24d723 +2016,Corrientes,II.1.1,2.6367599999999998,TJ,CO2,74100.0,kg/TJ,195383.916,Gas Oil combustion consumption by public passenger transport,AR-W,SESCO,annual,kg,b57b7a47-b0b8-3afc-a76e-67cbd6512b37 +2016,Corrientes,II.1.1,2.6367599999999998,TJ,CH4,3.9,kg/TJ,10.283363999999999,Gas Oil combustion consumption by public passenger transport,AR-W,SESCO,annual,kg,6bbf126c-7a15-39cb-aaad-49ddd0fecf8c +2016,Corrientes,II.1.1,2.6367599999999998,TJ,N2O,3.9,kg/TJ,10.283363999999999,Gas Oil combustion consumption by public passenger transport,AR-W,SESCO,annual,kg,6bbf126c-7a15-39cb-aaad-49ddd0fecf8c +2016,Córdoba,II.1.1,96.47652,TJ,CO2,74100.0,kg/TJ,7148910.131999999,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,8823b6bb-69c3-33ca-9026-4a11cb909df5 +2016,Córdoba,II.1.1,96.47652,TJ,CH4,3.9,kg/TJ,376.258428,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,1e0e1e0f-d789-3496-bd47-1acdcacd0f97 +2016,Córdoba,II.1.1,96.47652,TJ,N2O,3.9,kg/TJ,376.258428,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,1e0e1e0f-d789-3496-bd47-1acdcacd0f97 +2016,Entre Rios,II.1.1,50.89308,TJ,CO2,74100.0,kg/TJ,3771177.2279999997,Gas Oil combustion consumption by public passenger transport,AR-E,SESCO,annual,kg,e5098f28-dbe4-37e5-a551-8526ae688230 +2016,Entre Rios,II.1.1,50.89308,TJ,CH4,3.9,kg/TJ,198.48301199999997,Gas Oil combustion consumption by public passenger transport,AR-E,SESCO,annual,kg,7cd2c88e-6eaf-3eea-a5ca-0f478caa5d34 +2016,Entre Rios,II.1.1,50.89308,TJ,N2O,3.9,kg/TJ,198.48301199999997,Gas Oil combustion consumption by public passenger transport,AR-E,SESCO,annual,kg,7cd2c88e-6eaf-3eea-a5ca-0f478caa5d34 +2016,Formosa,II.1.1,0.36119999999999997,TJ,CO2,74100.0,kg/TJ,26764.92,Gas Oil combustion consumption by public passenger transport,AR-P,SESCO,annual,kg,bb89abdd-df1d-3f71-bada-cf9d6cd6db03 +2016,Formosa,II.1.1,0.36119999999999997,TJ,CH4,3.9,kg/TJ,1.40868,Gas Oil combustion consumption by public passenger transport,AR-P,SESCO,annual,kg,454aa7ee-5023-3d4b-8f5b-bbf0e142d23f +2016,Formosa,II.1.1,0.36119999999999997,TJ,N2O,3.9,kg/TJ,1.40868,Gas Oil combustion consumption by public passenger transport,AR-P,SESCO,annual,kg,454aa7ee-5023-3d4b-8f5b-bbf0e142d23f +2016,La Pampa,II.1.1,3.64812,TJ,CO2,74100.0,kg/TJ,270325.692,Gas Oil combustion consumption by public passenger transport,AR-L,SESCO,annual,kg,c5e1b29b-622a-324d-b245-affe0fa8206f +2016,La Pampa,II.1.1,3.64812,TJ,CH4,3.9,kg/TJ,14.227668,Gas Oil combustion consumption by public passenger transport,AR-L,SESCO,annual,kg,bfe47d1d-bfb0-370f-be61-060da7fea084 +2016,La Pampa,II.1.1,3.64812,TJ,N2O,3.9,kg/TJ,14.227668,Gas Oil combustion consumption by public passenger transport,AR-L,SESCO,annual,kg,bfe47d1d-bfb0-370f-be61-060da7fea084 +2016,Mendoza,II.1.1,0.68628,TJ,CO2,74100.0,kg/TJ,50853.348,Gas Oil combustion consumption by public passenger transport,AR-M,SESCO,annual,kg,c87cd4e3-b98d-367a-a9d0-04537f69367f +2016,Mendoza,II.1.1,0.68628,TJ,CH4,3.9,kg/TJ,2.676492,Gas Oil combustion consumption by public passenger transport,AR-M,SESCO,annual,kg,6f760926-dc94-3879-b646-3eb4686153c5 +2016,Mendoza,II.1.1,0.68628,TJ,N2O,3.9,kg/TJ,2.676492,Gas Oil combustion consumption by public passenger transport,AR-M,SESCO,annual,kg,6f760926-dc94-3879-b646-3eb4686153c5 +2016,Misiones,II.1.1,17.55432,TJ,CO2,74100.0,kg/TJ,1300775.112,Gas Oil combustion consumption by public passenger transport,AR-N,SESCO,annual,kg,7a174182-1f8e-340b-9276-de9defc00513 +2016,Misiones,II.1.1,17.55432,TJ,CH4,3.9,kg/TJ,68.461848,Gas Oil combustion consumption by public passenger transport,AR-N,SESCO,annual,kg,b0550759-fec2-31d9-9324-adac028e56c9 +2016,Misiones,II.1.1,17.55432,TJ,N2O,3.9,kg/TJ,68.461848,Gas Oil combustion consumption by public passenger transport,AR-N,SESCO,annual,kg,b0550759-fec2-31d9-9324-adac028e56c9 +2016,Rio Negro,II.1.1,42.65772,TJ,CO2,74100.0,kg/TJ,3160937.0519999997,Gas Oil combustion consumption by public passenger transport,AR-R,SESCO,annual,kg,e81e7444-3aaf-355f-9589-911e50b1982a +2016,Rio Negro,II.1.1,42.65772,TJ,CH4,3.9,kg/TJ,166.365108,Gas Oil combustion consumption by public passenger transport,AR-R,SESCO,annual,kg,a566ea40-66cf-33ff-b9e3-8a860a33d3ce +2016,Rio Negro,II.1.1,42.65772,TJ,N2O,3.9,kg/TJ,166.365108,Gas Oil combustion consumption by public passenger transport,AR-R,SESCO,annual,kg,a566ea40-66cf-33ff-b9e3-8a860a33d3ce +2016,San Luis,II.1.1,0.36119999999999997,TJ,CO2,74100.0,kg/TJ,26764.92,Gas Oil combustion consumption by public passenger transport,AR-D,SESCO,annual,kg,3e15c984-2e8f-3f8d-94e0-6e21824cb623 +2016,San Luis,II.1.1,0.36119999999999997,TJ,CH4,3.9,kg/TJ,1.40868,Gas Oil combustion consumption by public passenger transport,AR-D,SESCO,annual,kg,166bcf8f-cfca-3d06-a441-bf9b914fed2a +2016,San Luis,II.1.1,0.36119999999999997,TJ,N2O,3.9,kg/TJ,1.40868,Gas Oil combustion consumption by public passenger transport,AR-D,SESCO,annual,kg,166bcf8f-cfca-3d06-a441-bf9b914fed2a +2016,Santa Fe,II.1.1,81.73956,TJ,CO2,74100.0,kg/TJ,6056901.396,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,d98d10e2-b574-376d-840d-313d9050e58a +2016,Santa Fe,II.1.1,81.73956,TJ,CH4,3.9,kg/TJ,318.78428399999996,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,c4ae1704-24a3-3dbe-bfc4-a99697331b93 +2016,Santa Fe,II.1.1,81.73956,TJ,N2O,3.9,kg/TJ,318.78428399999996,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,c4ae1704-24a3-3dbe-bfc4-a99697331b93 +2016,Santiago del Estero,II.1.1,2.1672,TJ,CO2,74100.0,kg/TJ,160589.52,Gas Oil combustion consumption by public passenger transport,AR-G,SESCO,annual,kg,5fc1f659-bf28-3e80-a7a5-5eb7469e32c9 +2016,Santiago del Estero,II.1.1,2.1672,TJ,CH4,3.9,kg/TJ,8.452079999999999,Gas Oil combustion consumption by public passenger transport,AR-G,SESCO,annual,kg,fbe0b765-556d-3c5a-9ebb-68c431ce0bd5 +2016,Santiago del Estero,II.1.1,2.1672,TJ,N2O,3.9,kg/TJ,8.452079999999999,Gas Oil combustion consumption by public passenger transport,AR-G,SESCO,annual,kg,fbe0b765-556d-3c5a-9ebb-68c431ce0bd5 +2016,Tucuman,II.1.1,0.03612,TJ,CO2,74100.0,kg/TJ,2676.4919999999997,Gas Oil combustion consumption by public passenger transport,AR-T,SESCO,annual,kg,b52de9dd-f832-3bc4-828c-b27ffb31d294 +2016,Tucuman,II.1.1,0.03612,TJ,CH4,3.9,kg/TJ,0.140868,Gas Oil combustion consumption by public passenger transport,AR-T,SESCO,annual,kg,ed0e8af5-4f73-3538-bbbc-56ce6cf73097 +2016,Tucuman,II.1.1,0.03612,TJ,N2O,3.9,kg/TJ,0.140868,Gas Oil combustion consumption by public passenger transport,AR-T,SESCO,annual,kg,ed0e8af5-4f73-3538-bbbc-56ce6cf73097 +2016,Buenos Aires,II.1.1,5.16516,TJ,CO2,74100.0,kg/TJ,382738.356,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,f2172b81-63fa-3a21-9b35-0697cebe3183 +2016,Buenos Aires,II.1.1,5.16516,TJ,CH4,3.9,kg/TJ,20.144124,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,39d13e98-5cae-3c2b-ada3-a7648aa20306 +2016,Buenos Aires,II.1.1,5.16516,TJ,N2O,3.9,kg/TJ,20.144124,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,39d13e98-5cae-3c2b-ada3-a7648aa20306 +2016,Capital Federal,II.1.1,3.64812,TJ,CO2,74100.0,kg/TJ,270325.692,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,618def75-fb62-3d81-b21c-83c07ef1aaf8 +2016,Capital Federal,II.1.1,3.64812,TJ,CH4,3.9,kg/TJ,14.227668,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,cf5e0468-2a6c-3357-ad1b-2fe108082be4 +2016,Capital Federal,II.1.1,3.64812,TJ,N2O,3.9,kg/TJ,14.227668,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,cf5e0468-2a6c-3357-ad1b-2fe108082be4 +2016,Chaco,II.1.1,0.03612,TJ,CO2,74100.0,kg/TJ,2676.4919999999997,Gas Oil combustion consumption by public passenger transport,AR-H,SESCO,annual,kg,99d6cc73-96ef-3908-bdbf-2390d40ac905 +2016,Chaco,II.1.1,0.03612,TJ,CH4,3.9,kg/TJ,0.140868,Gas Oil combustion consumption by public passenger transport,AR-H,SESCO,annual,kg,4fd51885-17e1-3f6f-abb6-0b1a2a70f00e +2016,Chaco,II.1.1,0.03612,TJ,N2O,3.9,kg/TJ,0.140868,Gas Oil combustion consumption by public passenger transport,AR-H,SESCO,annual,kg,4fd51885-17e1-3f6f-abb6-0b1a2a70f00e +2016,Chubut,II.1.1,0.18059999999999998,TJ,CO2,74100.0,kg/TJ,13382.46,Gas Oil combustion consumption by public passenger transport,AR-U,SESCO,annual,kg,96fb7b8c-4d56-3313-b78a-794e8ba39676 +2016,Chubut,II.1.1,0.18059999999999998,TJ,CH4,3.9,kg/TJ,0.70434,Gas Oil combustion consumption by public passenger transport,AR-U,SESCO,annual,kg,f258055d-6d65-36aa-b30d-5e1e3966ba1c +2016,Chubut,II.1.1,0.18059999999999998,TJ,N2O,3.9,kg/TJ,0.70434,Gas Oil combustion consumption by public passenger transport,AR-U,SESCO,annual,kg,f258055d-6d65-36aa-b30d-5e1e3966ba1c +2016,Corrientes,II.1.1,0.07224,TJ,CO2,74100.0,kg/TJ,5352.9839999999995,Gas Oil combustion consumption by public passenger transport,AR-W,SESCO,annual,kg,24829ddb-375e-3ddd-beb2-94459f329f15 +2016,Corrientes,II.1.1,0.07224,TJ,CH4,3.9,kg/TJ,0.281736,Gas Oil combustion consumption by public passenger transport,AR-W,SESCO,annual,kg,b091fa72-c11f-3ff4-96a5-8f77cc089c1e +2016,Corrientes,II.1.1,0.07224,TJ,N2O,3.9,kg/TJ,0.281736,Gas Oil combustion consumption by public passenger transport,AR-W,SESCO,annual,kg,b091fa72-c11f-3ff4-96a5-8f77cc089c1e +2016,Córdoba,II.1.1,0.18059999999999998,TJ,CO2,74100.0,kg/TJ,13382.46,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,10a33825-45eb-3581-8a96-85ad24adcaa5 +2016,Córdoba,II.1.1,0.18059999999999998,TJ,CH4,3.9,kg/TJ,0.70434,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,3ac96b27-f4dd-30a7-bbac-b021e2afbe58 +2016,Córdoba,II.1.1,0.18059999999999998,TJ,N2O,3.9,kg/TJ,0.70434,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,3ac96b27-f4dd-30a7-bbac-b021e2afbe58 +2016,La Pampa,II.1.1,0.14448,TJ,CO2,74100.0,kg/TJ,10705.967999999999,Gas Oil combustion consumption by public passenger transport,AR-L,SESCO,annual,kg,04c78ffd-9cc4-3825-a216-511c3e714d6f +2016,La Pampa,II.1.1,0.14448,TJ,CH4,3.9,kg/TJ,0.563472,Gas Oil combustion consumption by public passenger transport,AR-L,SESCO,annual,kg,eaf5d924-0aba-3011-b07b-f8b117d8562c +2016,La Pampa,II.1.1,0.14448,TJ,N2O,3.9,kg/TJ,0.563472,Gas Oil combustion consumption by public passenger transport,AR-L,SESCO,annual,kg,eaf5d924-0aba-3011-b07b-f8b117d8562c +2016,Rio Negro,II.1.1,0.25284,TJ,CO2,74100.0,kg/TJ,18735.444,Gas Oil combustion consumption by public passenger transport,AR-R,SESCO,annual,kg,537218ba-46ce-3de4-813c-d01f0ee430af +2016,Rio Negro,II.1.1,0.25284,TJ,CH4,3.9,kg/TJ,0.9860760000000001,Gas Oil combustion consumption by public passenger transport,AR-R,SESCO,annual,kg,ed711632-0a7d-3c16-b847-7697f1ba8194 +2016,Rio Negro,II.1.1,0.25284,TJ,N2O,3.9,kg/TJ,0.9860760000000001,Gas Oil combustion consumption by public passenger transport,AR-R,SESCO,annual,kg,ed711632-0a7d-3c16-b847-7697f1ba8194 +2016,Santa Fe,II.1.1,0.9029999999999999,TJ,CO2,74100.0,kg/TJ,66912.29999999999,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,e6083514-3b54-3dfd-ba17-557e8c3d5b5d +2016,Santa Fe,II.1.1,0.9029999999999999,TJ,CH4,3.9,kg/TJ,3.5216999999999996,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,f59ca2c0-3f66-3409-833e-bb3d2751b992 +2016,Santa Fe,II.1.1,0.9029999999999999,TJ,N2O,3.9,kg/TJ,3.5216999999999996,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,f59ca2c0-3f66-3409-833e-bb3d2751b992 +2016,Santa Fe,II.1.1,0.6853,TJ,CO2,73300.0,kg/TJ,50232.49,Naphtha combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,632d2bac-94c0-3ca7-9a84-4e35e227704d +2016,Santa Fe,II.1.1,0.6853,TJ,CH4,0.5,kg/TJ,0.34265,Naphtha combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,ae03b537-e407-3e42-a54d-e7f07bc131d0 +2016,Santa Fe,II.1.1,0.6853,TJ,N2O,2.0,kg/TJ,1.3706,Naphtha combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,650e9f00-fe44-3f86-8072-2228085ae21f +2016,Buenos Aires,II.1.1,0.34265,TJ,CO2,73300.0,kg/TJ,25116.245,Naphtha combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,f713911a-1fd7-31ac-b7d5-538be4ff14f3 +2016,Buenos Aires,II.1.1,0.34265,TJ,CH4,0.5,kg/TJ,0.171325,Naphtha combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,1eb66c82-8d1a-300b-aa84-1cd7f2a02dc4 +2016,Buenos Aires,II.1.1,0.34265,TJ,N2O,2.0,kg/TJ,0.6853,Naphtha combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,e9f277aa-735b-3afd-aed6-d29e19a98507 +2016,Capital Federal,II.1.1,0.23985499999999998,TJ,CO2,73300.0,kg/TJ,17581.371499999997,Naphtha combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,a6777a7d-0590-3f58-ae03-db41f733982c +2016,Capital Federal,II.1.1,0.23985499999999998,TJ,CH4,0.5,kg/TJ,0.11992749999999999,Naphtha combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,c8034c97-d83a-388e-8aea-b63697c24619 +2016,Capital Federal,II.1.1,0.23985499999999998,TJ,N2O,2.0,kg/TJ,0.47970999999999997,Naphtha combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,b24a60c3-e0f1-3021-8975-4d5efe69718f +2016,Santa Fe,II.1.1,0.54824,TJ,CO2,73300.0,kg/TJ,40185.992,Naphtha combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,51cb5bbc-c968-3c18-888e-9a546d8387a9 +2016,Santa Fe,II.1.1,0.54824,TJ,CH4,0.5,kg/TJ,0.27412,Naphtha combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,167ec5c1-612c-36c5-9687-1e46e68a6b70 +2016,Santa Fe,II.1.1,0.54824,TJ,N2O,2.0,kg/TJ,1.09648,Naphtha combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,85696aee-3022-3e65-8ba7-66d20b56501e +2016,Chubut,II.1.1,1.3205471999999998,TJ,CO2,74100.0,kg/TJ,97852.54752,Gas Oil combustion consumption by freight transport,AR-U,SESCO,annual,kg,2296ea87-1a6d-3a95-a8af-ca14464575c5 +2016,Chubut,II.1.1,1.3205471999999998,TJ,CH4,3.9,kg/TJ,5.150134079999999,Gas Oil combustion consumption by freight transport,AR-U,SESCO,annual,kg,9644f24a-37b5-3f5f-bc1e-34b2615801f2 +2016,Chubut,II.1.1,1.3205471999999998,TJ,N2O,3.9,kg/TJ,5.150134079999999,Gas Oil combustion consumption by freight transport,AR-U,SESCO,annual,kg,9644f24a-37b5-3f5f-bc1e-34b2615801f2 +2016,Buenos Aires,II.5.1,530.229810432,TJ,CO2,74100.0,kg/TJ,39290028.9530112,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,2be9dd78-6991-331c-b48f-2884a440528e +2016,Buenos Aires,II.5.1,530.229810432,TJ,CH4,3.9,kg/TJ,2067.8962606848,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,0723c0d1-b636-3451-b4ae-28cc64efd60d +2016,Buenos Aires,II.5.1,530.229810432,TJ,N2O,3.9,kg/TJ,2067.8962606848,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,0723c0d1-b636-3451-b4ae-28cc64efd60d +2016,Córdoba,II.5.1,661.1413541039999,TJ,CO2,74100.0,kg/TJ,48990574.339106396,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,08215588-9254-351c-9dfb-c25e0d88f287 +2016,Córdoba,II.5.1,661.1413541039999,TJ,CH4,3.9,kg/TJ,2578.4512810055994,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,aa8338aa-d44b-3980-a14e-68ca278aa22c +2016,Córdoba,II.5.1,661.1413541039999,TJ,N2O,3.9,kg/TJ,2578.4512810055994,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,aa8338aa-d44b-3980-a14e-68ca278aa22c +2016,Entre Rios,II.5.1,365.9980254839999,TJ,CO2,74100.0,kg/TJ,27120453.688364394,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,e3fe4eb5-3127-355f-be1c-a1e034130a04 +2016,Entre Rios,II.5.1,365.9980254839999,TJ,CH4,3.9,kg/TJ,1427.3922993875997,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,89c8bb4f-f268-3c66-b9eb-edfc046916b2 +2016,Entre Rios,II.5.1,365.9980254839999,TJ,N2O,3.9,kg/TJ,1427.3922993875997,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,89c8bb4f-f268-3c66-b9eb-edfc046916b2 +2016,La Pampa,II.5.1,53.113325832,TJ,CO2,74100.0,kg/TJ,3935697.4441512,Gas Oil combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,034385b1-5a12-321f-ae56-e0cf2a1baa97 +2016,La Pampa,II.5.1,53.113325832,TJ,CH4,3.9,kg/TJ,207.1419707448,Gas Oil combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,867e4289-e93a-3897-ae1c-2ec194cb0060 +2016,La Pampa,II.5.1,53.113325832,TJ,N2O,3.9,kg/TJ,207.1419707448,Gas Oil combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,867e4289-e93a-3897-ae1c-2ec194cb0060 +2016,Santa Fe,II.5.1,852.0007127519999,TJ,CO2,74100.0,kg/TJ,63133252.8149232,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,ebe84ae2-7a41-3316-bebf-3edee222a66d +2016,Santa Fe,II.5.1,852.0007127519999,TJ,CH4,3.9,kg/TJ,3322.8027797327995,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,7edd09ba-d8fd-323a-aac4-c994f06f792d +2016,Santa Fe,II.5.1,852.0007127519999,TJ,N2O,3.9,kg/TJ,3322.8027797327995,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,7edd09ba-d8fd-323a-aac4-c994f06f792d +2016,Santiago del Estero,II.5.1,87.505944624,TJ,CO2,74100.0,kg/TJ,6484190.4966384,Gas Oil combustion consumption by agriculture machines,AR-G,SESCO,annual,kg,1d7be19c-dd88-3d2e-98c7-32c59c24ed77 +2016,Santiago del Estero,II.5.1,87.505944624,TJ,CH4,3.9,kg/TJ,341.2731840336,Gas Oil combustion consumption by agriculture machines,AR-G,SESCO,annual,kg,cfd16578-4488-3ddf-8f71-7abf21b3575c +2016,Santiago del Estero,II.5.1,87.505944624,TJ,N2O,3.9,kg/TJ,341.2731840336,Gas Oil combustion consumption by agriculture machines,AR-G,SESCO,annual,kg,cfd16578-4488-3ddf-8f71-7abf21b3575c +2016,Buenos Aires,II.5.1,12.820328051999999,TJ,CO2,74100.0,kg/TJ,949986.3086531999,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,dc853017-1be5-3aaa-b67e-f2a4937ccda4 +2016,Buenos Aires,II.5.1,12.820328051999999,TJ,CH4,3.9,kg/TJ,49.99927940279999,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,d53678d7-dc52-3a95-9c20-aacb7da96ce6 +2016,Buenos Aires,II.5.1,12.820328051999999,TJ,N2O,3.9,kg/TJ,49.99927940279999,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,d53678d7-dc52-3a95-9c20-aacb7da96ce6 +2016,Córdoba,II.5.1,3.02069754,TJ,CO2,74100.0,kg/TJ,223833.687714,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,14354b2a-aa57-36ea-9d20-576564bf6a9a +2016,Córdoba,II.5.1,3.02069754,TJ,CH4,3.9,kg/TJ,11.780720406,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,33591384-0b1e-30cf-bc25-6c4a7141bf3d +2016,Córdoba,II.5.1,3.02069754,TJ,N2O,3.9,kg/TJ,11.780720406,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,33591384-0b1e-30cf-bc25-6c4a7141bf3d +2016,Entre Rios,II.5.1,12.326878284000001,TJ,CO2,74100.0,kg/TJ,913421.6808444001,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,6ff094ff-c269-329e-bd41-74139e7ec3f7 +2016,Entre Rios,II.5.1,12.326878284000001,TJ,CH4,3.9,kg/TJ,48.0748253076,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,7b0fe9ba-546f-3950-93a8-1b7f0694439d +2016,Entre Rios,II.5.1,12.326878284000001,TJ,N2O,3.9,kg/TJ,48.0748253076,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,7b0fe9ba-546f-3950-93a8-1b7f0694439d +2016,La Pampa,II.5.1,10.302471480000001,TJ,CO2,74100.0,kg/TJ,763413.1366680001,Gas Oil combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,221fbf82-58fd-37fb-9543-9c923ed90526 +2016,La Pampa,II.5.1,10.302471480000001,TJ,CH4,3.9,kg/TJ,40.179638772000004,Gas Oil combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,af281f83-415a-3599-9838-a8f2843ad7e9 +2016,La Pampa,II.5.1,10.302471480000001,TJ,N2O,3.9,kg/TJ,40.179638772000004,Gas Oil combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,af281f83-415a-3599-9838-a8f2843ad7e9 +2016,Santa Fe,II.5.1,2.156085876,TJ,CO2,74100.0,kg/TJ,159765.9634116,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,aad77600-be89-3d62-a2d1-e0f21d7d5564 +2016,Santa Fe,II.5.1,2.156085876,TJ,CH4,3.9,kg/TJ,8.4087349164,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,53885975-8891-3dfd-bef2-f435ffee1d8f +2016,Santa Fe,II.5.1,2.156085876,TJ,N2O,3.9,kg/TJ,8.4087349164,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,53885975-8891-3dfd-bef2-f435ffee1d8f +2016,Santa Fe,II.5.1,5.2404891000000005,TJ,CO2,73300.0,kg/TJ,384127.85103,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,b1b27671-6da0-3fac-bc5d-9217a065c865 +2016,Santa Fe,II.5.1,5.2404891000000005,TJ,CH4,0.5,kg/TJ,2.6202445500000002,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,163b327d-ff51-3e33-aa5b-b9cdccc30cc1 +2016,Santa Fe,II.5.1,5.2404891000000005,TJ,N2O,2.0,kg/TJ,10.480978200000001,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,0ea47da9-442a-3665-ba2f-957bdb770469 +2016,Santiago del Estero,II.5.1,4.702734189999999,TJ,CO2,73300.0,kg/TJ,344710.41612699995,Naphtha combustion consumption by agriculture machines,AR-G,SESCO,annual,kg,3727aae9-9392-381f-944e-3bb7466e6b53 +2016,Santiago del Estero,II.5.1,4.702734189999999,TJ,CH4,0.5,kg/TJ,2.3513670949999996,Naphtha combustion consumption by agriculture machines,AR-G,SESCO,annual,kg,b1caa146-b8a6-390f-82e0-0224d4d7a7b1 +2016,Santiago del Estero,II.5.1,4.702734189999999,TJ,N2O,2.0,kg/TJ,9.405468379999999,Naphtha combustion consumption by agriculture machines,AR-G,SESCO,annual,kg,2e389d60-e485-3bc2-a1bf-52aac3f63623 +2016,Buenos Aires,II.1.1,278.829708948,TJ,CO2,74100.0,kg/TJ,20661281.433046803,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,e6529626-0e82-3c73-967a-373b69bec01f +2016,Buenos Aires,II.1.1,278.829708948,TJ,CH4,3.9,kg/TJ,1087.4358648972,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,d9951712-4f66-317a-85dc-2e1617fcbcb7 +2016,Buenos Aires,II.1.1,278.829708948,TJ,N2O,3.9,kg/TJ,1087.4358648972,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,d9951712-4f66-317a-85dc-2e1617fcbcb7 +2016,Chaco,II.1.1,14.378259504,TJ,CO2,74100.0,kg/TJ,1065429.0292464,Gas Oil combustion consumption by public passenger transport,AR-H,SESCO,annual,kg,ce2863c0-6edc-3ee9-aa5b-661e7bd92eeb +2016,Chaco,II.1.1,14.378259504,TJ,CH4,3.9,kg/TJ,56.0752120656,Gas Oil combustion consumption by public passenger transport,AR-H,SESCO,annual,kg,d5976fce-f182-3fc1-a09c-6101b851ddfb +2016,Chaco,II.1.1,14.378259504,TJ,N2O,3.9,kg/TJ,56.0752120656,Gas Oil combustion consumption by public passenger transport,AR-H,SESCO,annual,kg,d5976fce-f182-3fc1-a09c-6101b851ddfb +2016,Corrientes,II.1.1,40.725661200000005,TJ,CO2,74100.0,kg/TJ,3017771.4949200004,Gas Oil combustion consumption by public passenger transport,AR-W,SESCO,annual,kg,f6808dcd-7c2a-31c2-86b4-2b529249e166 +2016,Corrientes,II.1.1,40.725661200000005,TJ,CH4,3.9,kg/TJ,158.83007868,Gas Oil combustion consumption by public passenger transport,AR-W,SESCO,annual,kg,53885dec-b940-30a0-9ea9-34fb6663c08d +2016,Corrientes,II.1.1,40.725661200000005,TJ,N2O,3.9,kg/TJ,158.83007868,Gas Oil combustion consumption by public passenger transport,AR-W,SESCO,annual,kg,53885dec-b940-30a0-9ea9-34fb6663c08d +2016,Córdoba,II.1.1,335.5111851,TJ,CO2,74100.0,kg/TJ,24861378.815909997,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,e8a486c7-4a7e-339f-ae38-ec4a883ab52d +2016,Córdoba,II.1.1,335.5111851,TJ,CH4,3.9,kg/TJ,1308.49362189,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,d5a6f8f3-b40f-322a-8fee-63b851b446d7 +2016,Córdoba,II.1.1,335.5111851,TJ,N2O,3.9,kg/TJ,1308.49362189,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,d5a6f8f3-b40f-322a-8fee-63b851b446d7 +2016,Entre Rios,II.1.1,100.77971593199999,TJ,CO2,74100.0,kg/TJ,7467776.950561199,Gas Oil combustion consumption by public passenger transport,AR-E,SESCO,annual,kg,8a19a873-671d-3f58-80ed-e25dd51c7e52 +2016,Entre Rios,II.1.1,100.77971593199999,TJ,CH4,3.9,kg/TJ,393.04089213479995,Gas Oil combustion consumption by public passenger transport,AR-E,SESCO,annual,kg,5cf27d6f-3b14-39bb-92e3-88cc13d3c6b6 +2016,Entre Rios,II.1.1,100.77971593199999,TJ,N2O,3.9,kg/TJ,393.04089213479995,Gas Oil combustion consumption by public passenger transport,AR-E,SESCO,annual,kg,5cf27d6f-3b14-39bb-92e3-88cc13d3c6b6 +2016,Jujuy,II.1.1,100.180611552,TJ,CO2,74100.0,kg/TJ,7423383.316003201,Gas Oil combustion consumption by public passenger transport,AR-Y,SESCO,annual,kg,870b7e85-bd97-3f95-bcef-dee3765582a0 +2016,Jujuy,II.1.1,100.180611552,TJ,CH4,3.9,kg/TJ,390.7043850528,Gas Oil combustion consumption by public passenger transport,AR-Y,SESCO,annual,kg,50af2f4b-4831-31bb-a99f-32478d9f8954 +2016,Jujuy,II.1.1,100.180611552,TJ,N2O,3.9,kg/TJ,390.7043850528,Gas Oil combustion consumption by public passenger transport,AR-Y,SESCO,annual,kg,50af2f4b-4831-31bb-a99f-32478d9f8954 +2016,Salta,II.1.1,88.80195911999999,TJ,CO2,74100.0,kg/TJ,6580225.170791999,Gas Oil combustion consumption by public passenger transport,AR-A,SESCO,annual,kg,1cba7c20-1a56-3793-b7ed-8b5c571e3c70 +2016,Salta,II.1.1,88.80195911999999,TJ,CH4,3.9,kg/TJ,346.32764056799994,Gas Oil combustion consumption by public passenger transport,AR-A,SESCO,annual,kg,b77065bc-09d4-3482-90bb-168bb0acc468 +2016,Salta,II.1.1,88.80195911999999,TJ,N2O,3.9,kg/TJ,346.32764056799994,Gas Oil combustion consumption by public passenger transport,AR-A,SESCO,annual,kg,b77065bc-09d4-3482-90bb-168bb0acc468 +2016,Santa Fe,II.1.1,294.05968166400004,TJ,CO2,74100.0,kg/TJ,21789822.411302403,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,809f340b-69a1-3331-bf96-becc0557bebf +2016,Santa Fe,II.1.1,294.05968166400004,TJ,CH4,3.9,kg/TJ,1146.8327584896,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,320eb45a-d1e0-3c91-8f7a-d4ebba73c807 +2016,Santa Fe,II.1.1,294.05968166400004,TJ,N2O,3.9,kg/TJ,1146.8327584896,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,320eb45a-d1e0-3c91-8f7a-d4ebba73c807 +2016,Santiago del Estero,II.1.1,122.61948610799999,TJ,CO2,74100.0,kg/TJ,9086103.920602798,Gas Oil combustion consumption by public passenger transport,AR-G,SESCO,annual,kg,1c1b8a40-8ca1-3c1a-b44e-594c33204002 +2016,Santiago del Estero,II.1.1,122.61948610799999,TJ,CH4,3.9,kg/TJ,478.21599582119995,Gas Oil combustion consumption by public passenger transport,AR-G,SESCO,annual,kg,ff49c440-023d-3a31-9d6e-599b25eae28c +2016,Santiago del Estero,II.1.1,122.61948610799999,TJ,N2O,3.9,kg/TJ,478.21599582119995,Gas Oil combustion consumption by public passenger transport,AR-G,SESCO,annual,kg,ff49c440-023d-3a31-9d6e-599b25eae28c +2016,Tucuman,II.1.1,30.535208675999996,TJ,CO2,74100.0,kg/TJ,2262658.9628915996,Gas Oil combustion consumption by public passenger transport,AR-T,SESCO,annual,kg,2628b80f-1f37-3ffe-bf08-c36889f3d893 +2016,Tucuman,II.1.1,30.535208675999996,TJ,CH4,3.9,kg/TJ,119.08731383639999,Gas Oil combustion consumption by public passenger transport,AR-T,SESCO,annual,kg,12ec6c26-c007-3c62-9c67-8adcff977942 +2016,Tucuman,II.1.1,30.535208675999996,TJ,N2O,3.9,kg/TJ,119.08731383639999,Gas Oil combustion consumption by public passenger transport,AR-T,SESCO,annual,kg,12ec6c26-c007-3c62-9c67-8adcff977942 +2016,Corrientes,II.1.1,1.0413034799999998,TJ,CO2,74100.0,kg/TJ,77160.58786799999,Gas Oil combustion consumption by public passenger transport,AR-W,SESCO,annual,kg,b8c7885a-54e6-3e94-b685-58c925886102 +2016,Corrientes,II.1.1,1.0413034799999998,TJ,CH4,3.9,kg/TJ,4.061083571999999,Gas Oil combustion consumption by public passenger transport,AR-W,SESCO,annual,kg,481cd7c2-835d-3129-8fae-de771d2f930d +2016,Corrientes,II.1.1,1.0413034799999998,TJ,N2O,3.9,kg/TJ,4.061083571999999,Gas Oil combustion consumption by public passenger transport,AR-W,SESCO,annual,kg,481cd7c2-835d-3129-8fae-de771d2f930d +2016,Entre Rios,II.1.1,0.683133948,TJ,CO2,74100.0,kg/TJ,50620.2255468,Gas Oil combustion consumption by public passenger transport,AR-E,SESCO,annual,kg,2f063fd7-1414-3a50-b5a9-c64da6992781 +2016,Entre Rios,II.1.1,0.683133948,TJ,CH4,3.9,kg/TJ,2.6642223972,Gas Oil combustion consumption by public passenger transport,AR-E,SESCO,annual,kg,e785bb21-e581-3dc3-9cbe-bdd3e83b03e5 +2016,Entre Rios,II.1.1,0.683133948,TJ,N2O,3.9,kg/TJ,2.6642223972,Gas Oil combustion consumption by public passenger transport,AR-E,SESCO,annual,kg,e785bb21-e581-3dc3-9cbe-bdd3e83b03e5 +2016,Santiago del Estero,II.1.1,0.39358519200000003,TJ,CO2,74100.0,kg/TJ,29164.6627272,Gas Oil combustion consumption by public passenger transport,AR-G,SESCO,annual,kg,e3406e1f-352c-39ab-b894-faf11c8e8c11 +2016,Santiago del Estero,II.1.1,0.39358519200000003,TJ,CH4,3.9,kg/TJ,1.5349822488,Gas Oil combustion consumption by public passenger transport,AR-G,SESCO,annual,kg,5b674226-94cd-3b6e-8eed-c73ee98a7c42 +2016,Santiago del Estero,II.1.1,0.39358519200000003,TJ,N2O,3.9,kg/TJ,1.5349822488,Gas Oil combustion consumption by public passenger transport,AR-G,SESCO,annual,kg,5b674226-94cd-3b6e-8eed-c73ee98a7c42 +2016,Tucuman,II.1.1,0.17946222,TJ,CO2,74100.0,kg/TJ,13298.150502,Gas Oil combustion consumption by public passenger transport,AR-T,SESCO,annual,kg,1566a5c2-dd05-3d6a-99b4-3d23573077c2 +2016,Tucuman,II.1.1,0.17946222,TJ,CH4,3.9,kg/TJ,0.699902658,Gas Oil combustion consumption by public passenger transport,AR-T,SESCO,annual,kg,44606b69-94c7-3f01-82eb-a40633c1a12e +2016,Tucuman,II.1.1,0.17946222,TJ,N2O,3.9,kg/TJ,0.699902658,Gas Oil combustion consumption by public passenger transport,AR-T,SESCO,annual,kg,44606b69-94c7-3f01-82eb-a40633c1a12e +2016,Buenos Aires,II.5.1,548.362180464,TJ,CO2,74100.0,kg/TJ,40633637.5723824,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,f9fc498f-d1c4-337a-a316-a463e2f60000 +2016,Buenos Aires,II.5.1,548.362180464,TJ,CH4,3.9,kg/TJ,2138.6125038095997,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,ab11570d-17d1-3e27-b287-a0235532ba57 +2016,Buenos Aires,II.5.1,548.362180464,TJ,N2O,3.9,kg/TJ,2138.6125038095997,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,ab11570d-17d1-3e27-b287-a0235532ba57 +2016,Córdoba,II.5.1,63.654015936,TJ,CO2,74100.0,kg/TJ,4716762.5808576,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,5c6b4d18-bb06-3e57-bc80-7cf5dd92b00a +2016,Córdoba,II.5.1,63.654015936,TJ,CH4,3.9,kg/TJ,248.2506621504,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,e908d56e-185b-3391-b199-0f04f82a2654 +2016,Córdoba,II.5.1,63.654015936,TJ,N2O,3.9,kg/TJ,248.2506621504,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,e908d56e-185b-3391-b199-0f04f82a2654 +2016,La Pampa,II.5.1,54.173281679999995,TJ,CO2,74100.0,kg/TJ,4014240.172488,Gas Oil combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,88388a56-9522-37d0-a00d-48abf8d28f42 +2016,La Pampa,II.5.1,54.173281679999995,TJ,CH4,3.9,kg/TJ,211.27579855199997,Gas Oil combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,91db3dae-cf8a-3764-9b02-617b59a7c45d +2016,La Pampa,II.5.1,54.173281679999995,TJ,N2O,3.9,kg/TJ,211.27579855199997,Gas Oil combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,91db3dae-cf8a-3764-9b02-617b59a7c45d +2016,Neuquén,II.5.1,12.764432351999998,TJ,CO2,74100.0,kg/TJ,945844.4372831999,Gas Oil combustion consumption by agriculture machines,AR-Q,SESCO,annual,kg,3a27689a-0e75-3e7d-9770-c19aa3701907 +2016,Neuquén,II.5.1,12.764432351999998,TJ,CH4,3.9,kg/TJ,49.781286172799994,Gas Oil combustion consumption by agriculture machines,AR-Q,SESCO,annual,kg,c4709580-44a2-337f-be4f-1771e21d2549 +2016,Neuquén,II.5.1,12.764432351999998,TJ,N2O,3.9,kg/TJ,49.781286172799994,Gas Oil combustion consumption by agriculture machines,AR-Q,SESCO,annual,kg,c4709580-44a2-337f-be4f-1771e21d2549 +2016,Rio Negro,II.5.1,5.8418537520000005,TJ,CO2,74100.0,kg/TJ,432881.3630232,Gas Oil combustion consumption by agriculture machines,AR-R,SESCO,annual,kg,41e66b6a-ff93-3100-bc20-cae5bf849bff +2016,Rio Negro,II.5.1,5.8418537520000005,TJ,CH4,3.9,kg/TJ,22.7832296328,Gas Oil combustion consumption by agriculture machines,AR-R,SESCO,annual,kg,fad35aef-6d95-3854-94a0-22d333f3ca83 +2016,Rio Negro,II.5.1,5.8418537520000005,TJ,N2O,3.9,kg/TJ,22.7832296328,Gas Oil combustion consumption by agriculture machines,AR-R,SESCO,annual,kg,fad35aef-6d95-3854-94a0-22d333f3ca83 +2016,Buenos Aires,II.5.1,7.443793703499998,TJ,CO2,73300.0,kg/TJ,545630.0784665499,Naphtha combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,f4e9b098-33bc-3a7e-ae31-65f8d0309e12 +2016,Buenos Aires,II.5.1,7.443793703499998,TJ,CH4,0.5,kg/TJ,3.721896851749999,Naphtha combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,65564a2a-e21e-317f-8bc4-5cebed8ef49e +2016,Buenos Aires,II.5.1,7.443793703499998,TJ,N2O,2.0,kg/TJ,14.887587406999996,Naphtha combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,8c69fe0c-c27b-378b-9d8e-6a31de6fbf39 +2016,Rio Negro,II.5.1,2.14341281,TJ,CO2,73300.0,kg/TJ,157112.158973,Naphtha combustion consumption by agriculture machines,AR-R,SESCO,annual,kg,47feaf31-534a-3158-aa46-ea285fce4100 +2016,Rio Negro,II.5.1,2.14341281,TJ,CH4,0.5,kg/TJ,1.071706405,Naphtha combustion consumption by agriculture machines,AR-R,SESCO,annual,kg,fb79991e-afa5-3f77-862e-eab75db3351d +2016,Rio Negro,II.5.1,2.14341281,TJ,N2O,2.0,kg/TJ,4.28682562,Naphtha combustion consumption by agriculture machines,AR-R,SESCO,annual,kg,e4766e50-c1f3-3e70-92e0-b5e294044c49 +2016,Buenos Aires,II.2.1,3.83435472,TJ,CO2,74100.0,kg/TJ,284125.684752,Gas Oil combustion consumption by railway transport,AR-B,SESCO,annual,kg,340d5cb4-6143-34d9-bfd8-e7b5473e588e +2016,Buenos Aires,II.2.1,3.83435472,TJ,CH4,3.9,kg/TJ,14.953983408,Gas Oil combustion consumption by railway transport,AR-B,SESCO,annual,kg,bcf7ca08-5007-3bec-a259-10b50cf6f3d6 +2016,Buenos Aires,II.2.1,3.83435472,TJ,N2O,3.9,kg/TJ,14.953983408,Gas Oil combustion consumption by railway transport,AR-B,SESCO,annual,kg,bcf7ca08-5007-3bec-a259-10b50cf6f3d6 +2016,Buenos Aires,II.1.1,1.0379489999999998,TJ,CO2,69300.0,kg/TJ,71929.86569999998,Motor Gasoline combustion consumption by freight transport,AR-B,SESCO,annual,kg,329d23ac-f931-391b-99dc-209febb727f4 +2016,Buenos Aires,II.1.1,1.0379489999999998,TJ,CH4,33.0,kg/TJ,34.25231699999999,Motor Gasoline combustion consumption by freight transport,AR-B,SESCO,annual,kg,9ed95ab8-828f-354a-885f-2beb75ea3f2d +2016,Buenos Aires,II.1.1,1.0379489999999998,TJ,N2O,3.2,kg/TJ,3.3214367999999994,Motor Gasoline combustion consumption by freight transport,AR-B,SESCO,annual,kg,766addd2-fcb2-3b29-a481-cda175ea3cc5 +2016,Buenos Aires,II.1.1,210.976786356,TJ,CO2,74100.0,kg/TJ,15633379.8689796,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,52236d0b-537b-3590-bccb-fa2fc7cdfc92 +2016,Buenos Aires,II.1.1,210.976786356,TJ,CH4,3.9,kg/TJ,822.8094667884,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,0eeff11e-4e56-3134-94b6-a877d592c0b6 +2016,Buenos Aires,II.1.1,210.976786356,TJ,N2O,3.9,kg/TJ,822.8094667884,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,0eeff11e-4e56-3134-94b6-a877d592c0b6 +2016,Chubut,II.1.1,4.596587856,TJ,CO2,74100.0,kg/TJ,340607.16012960003,Gas Oil combustion consumption by freight transport,AR-U,SESCO,annual,kg,51600aea-e807-30ec-b80c-2b276ae805ef +2016,Chubut,II.1.1,4.596587856,TJ,CH4,3.9,kg/TJ,17.9266926384,Gas Oil combustion consumption by freight transport,AR-U,SESCO,annual,kg,7ba67a2a-4497-3e06-865c-322ded752716 +2016,Chubut,II.1.1,4.596587856,TJ,N2O,3.9,kg/TJ,17.9266926384,Gas Oil combustion consumption by freight transport,AR-U,SESCO,annual,kg,7ba67a2a-4497-3e06-865c-322ded752716 +2016,San Luis,II.1.1,47.061412608,TJ,CO2,74100.0,kg/TJ,3487250.6742527997,Gas Oil combustion consumption by freight transport,AR-D,SESCO,annual,kg,4ea3ec45-53d4-344f-bcd9-e790db63869e +2016,San Luis,II.1.1,47.061412608,TJ,CH4,3.9,kg/TJ,183.5395091712,Gas Oil combustion consumption by freight transport,AR-D,SESCO,annual,kg,0f870ec8-93aa-36a6-b18a-c67ab11177b5 +2016,San Luis,II.1.1,47.061412608,TJ,N2O,3.9,kg/TJ,183.5395091712,Gas Oil combustion consumption by freight transport,AR-D,SESCO,annual,kg,0f870ec8-93aa-36a6-b18a-c67ab11177b5 +2016,Buenos Aires,II.1.1,2.6258878799999996,TJ,CO2,74100.0,kg/TJ,194578.29190799998,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,09ad1a83-2932-30c1-a9cd-9d70e3598d78 +2016,Buenos Aires,II.1.1,2.6258878799999996,TJ,CH4,3.9,kg/TJ,10.240962731999998,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,9bc2f9da-a4fe-30d0-9c92-1cca15b6e57b +2016,Buenos Aires,II.1.1,2.6258878799999996,TJ,N2O,3.9,kg/TJ,10.240962731999998,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,9bc2f9da-a4fe-30d0-9c92-1cca15b6e57b +2016,Buenos Aires,II.1.1,459.017821752,TJ,CO2,74100.0,kg/TJ,34013220.5918232,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,5f89c6f4-442d-3aa4-a98b-1fab7d87a8a0 +2016,Buenos Aires,II.1.1,459.017821752,TJ,CH4,3.9,kg/TJ,1790.1695048328,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,8370355b-497a-3f58-a2ba-3863fa9a9912 +2016,Buenos Aires,II.1.1,459.017821752,TJ,N2O,3.9,kg/TJ,1790.1695048328,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,8370355b-497a-3f58-a2ba-3863fa9a9912 +2016,Capital Federal,II.1.1,63.907018476,TJ,CO2,74100.0,kg/TJ,4735510.0690716,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,4864499c-b26a-3dd5-9205-499ff6e0fad6 +2016,Capital Federal,II.1.1,63.907018476,TJ,CH4,3.9,kg/TJ,249.23737205639998,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,f3dc32fa-ef6c-3f8a-980a-026e33e81b1a +2016,Capital Federal,II.1.1,63.907018476,TJ,N2O,3.9,kg/TJ,249.23737205639998,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,f3dc32fa-ef6c-3f8a-980a-026e33e81b1a +2016,Chubut,II.1.1,36.607612775999996,TJ,CO2,74100.0,kg/TJ,2712624.1067016,Gas Oil combustion consumption by public passenger transport,AR-U,SESCO,annual,kg,bb0b6a9c-8e69-3738-8318-5bb33d85f7cd +2016,Chubut,II.1.1,36.607612775999996,TJ,CH4,3.9,kg/TJ,142.76968982639997,Gas Oil combustion consumption by public passenger transport,AR-U,SESCO,annual,kg,eeb145ee-89dc-3c08-88c4-f714571925a8 +2016,Chubut,II.1.1,36.607612775999996,TJ,N2O,3.9,kg/TJ,142.76968982639997,Gas Oil combustion consumption by public passenger transport,AR-U,SESCO,annual,kg,eeb145ee-89dc-3c08-88c4-f714571925a8 +2016,Córdoba,II.1.1,253.71222576,TJ,CO2,74100.0,kg/TJ,18800075.928815998,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,578f069d-524b-32a6-a3c0-c0a61a4e5bb8 +2016,Córdoba,II.1.1,253.71222576,TJ,CH4,3.9,kg/TJ,989.477680464,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,39cc4eed-85fc-3624-8864-06a397d612dc +2016,Córdoba,II.1.1,253.71222576,TJ,N2O,3.9,kg/TJ,989.477680464,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,39cc4eed-85fc-3624-8864-06a397d612dc +2016,Neuquén,II.1.1,27.404807472,TJ,CO2,74100.0,kg/TJ,2030696.2336752,Gas Oil combustion consumption by public passenger transport,AR-Q,SESCO,annual,kg,9f0640c4-273b-3340-94fc-a53503af9075 +2016,Neuquén,II.1.1,27.404807472,TJ,CH4,3.9,kg/TJ,106.87874914080001,Gas Oil combustion consumption by public passenger transport,AR-Q,SESCO,annual,kg,2ae603bf-6524-3e2c-9576-73e64aa388fb +2016,Neuquén,II.1.1,27.404807472,TJ,N2O,3.9,kg/TJ,106.87874914080001,Gas Oil combustion consumption by public passenger transport,AR-Q,SESCO,annual,kg,2ae603bf-6524-3e2c-9576-73e64aa388fb +2016,Rio Negro,II.1.1,145.919786544,TJ,CO2,74100.0,kg/TJ,10812656.1829104,Gas Oil combustion consumption by public passenger transport,AR-R,SESCO,annual,kg,e3f67733-c89d-3db3-aa16-00ca066bec86 +2016,Rio Negro,II.1.1,145.919786544,TJ,CH4,3.9,kg/TJ,569.0871675216,Gas Oil combustion consumption by public passenger transport,AR-R,SESCO,annual,kg,04ad23bb-8a4a-3b24-810b-750183f6ba91 +2016,Rio Negro,II.1.1,145.919786544,TJ,N2O,3.9,kg/TJ,569.0871675216,Gas Oil combustion consumption by public passenger transport,AR-R,SESCO,annual,kg,04ad23bb-8a4a-3b24-810b-750183f6ba91 +2016,Santa Cruz,II.1.1,0.18208092,TJ,CO2,74100.0,kg/TJ,13492.196172,Gas Oil combustion consumption by public passenger transport,AR-Z,SESCO,annual,kg,d85f3c33-1db0-307b-935d-ebd1b1af5e9d +2016,Santa Cruz,II.1.1,0.18208092,TJ,CH4,3.9,kg/TJ,0.710115588,Gas Oil combustion consumption by public passenger transport,AR-Z,SESCO,annual,kg,94e321c3-aa95-349a-bf87-90ef60937732 +2016,Santa Cruz,II.1.1,0.18208092,TJ,N2O,3.9,kg/TJ,0.710115588,Gas Oil combustion consumption by public passenger transport,AR-Z,SESCO,annual,kg,94e321c3-aa95-349a-bf87-90ef60937732 +2016,Santa Fe,II.1.1,7.766497116,TJ,CO2,74100.0,kg/TJ,575497.4362956,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,49c184eb-07af-3c8e-a4d1-1fa533bb1212 +2016,Santa Fe,II.1.1,7.766497116,TJ,CH4,3.9,kg/TJ,30.2893387524,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,e66c7c44-0ba6-30ce-82e1-86f5ccf7a551 +2016,Santa Fe,II.1.1,7.766497116,TJ,N2O,3.9,kg/TJ,30.2893387524,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,e66c7c44-0ba6-30ce-82e1-86f5ccf7a551 +2016,Buenos Aires,II.1.1,0.21455280000000002,TJ,CO2,74100.0,kg/TJ,15898.362480000002,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,f5188691-b3fc-3466-b047-f40a8803e9d1 +2016,Buenos Aires,II.1.1,0.21455280000000002,TJ,CH4,3.9,kg/TJ,0.8367559200000001,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,9726120a-492f-3378-83c3-bd418b0481f5 +2016,Buenos Aires,II.1.1,0.21455280000000002,TJ,N2O,3.9,kg/TJ,0.8367559200000001,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,9726120a-492f-3378-83c3-bd418b0481f5 +2016,Buenos Aires,II.5.1,389.80704,TJ,CO2,74100.0,kg/TJ,28884701.663999997,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,4d1d0ac8-c31c-3910-b849-c8f1495253d6 +2016,Buenos Aires,II.5.1,389.80704,TJ,CH4,3.9,kg/TJ,1520.2474559999998,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,eb2f80ff-759b-36e5-a515-316c8d413e1d +2016,Buenos Aires,II.5.1,389.80704,TJ,N2O,3.9,kg/TJ,1520.2474559999998,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,eb2f80ff-759b-36e5-a515-316c8d413e1d +2016,Capital Federal,II.5.1,19.866,TJ,CO2,74100.0,kg/TJ,1472070.5999999999,Gas Oil combustion consumption by agriculture machines,AR-C,SESCO,annual,kg,caa95192-8e79-32e8-9472-0dc0f46fd7e5 +2016,Capital Federal,II.5.1,19.866,TJ,CH4,3.9,kg/TJ,77.4774,Gas Oil combustion consumption by agriculture machines,AR-C,SESCO,annual,kg,5f310f78-bc1e-39a1-b06f-bd00f46ede7b +2016,Capital Federal,II.5.1,19.866,TJ,N2O,3.9,kg/TJ,77.4774,Gas Oil combustion consumption by agriculture machines,AR-C,SESCO,annual,kg,5f310f78-bc1e-39a1-b06f-bd00f46ede7b +2016,Córdoba,II.5.1,187.17383999999998,TJ,CO2,74100.0,kg/TJ,13869581.544,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,3a6117d0-3c20-3e40-8a22-b7ffb99331bb +2016,Córdoba,II.5.1,187.17383999999998,TJ,CH4,3.9,kg/TJ,729.9779759999999,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,3e63aa53-22cc-3f0f-a6f1-252f5ebdfbb4 +2016,Córdoba,II.5.1,187.17383999999998,TJ,N2O,3.9,kg/TJ,729.9779759999999,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,3e63aa53-22cc-3f0f-a6f1-252f5ebdfbb4 +2016,Entre Rios,II.5.1,25.24788,TJ,CO2,74100.0,kg/TJ,1870867.9079999998,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,3e693ace-fce1-399f-8223-e8be464f3312 +2016,Entre Rios,II.5.1,25.24788,TJ,CH4,3.9,kg/TJ,98.466732,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,3b9953a5-bcf1-3d67-af77-b90cdd225285 +2016,Entre Rios,II.5.1,25.24788,TJ,N2O,3.9,kg/TJ,98.466732,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,3b9953a5-bcf1-3d67-af77-b90cdd225285 +2016,Santa Fe,II.5.1,47.24496,TJ,CO2,74100.0,kg/TJ,3500851.536,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,0d3a0a29-a94f-3c24-900a-014bb29803f3 +2016,Santa Fe,II.5.1,47.24496,TJ,CH4,3.9,kg/TJ,184.25534399999998,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,e87534dc-50c1-39a1-afff-cb3d22ab177b +2016,Santa Fe,II.5.1,47.24496,TJ,N2O,3.9,kg/TJ,184.25534399999998,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,e87534dc-50c1-39a1-afff-cb3d22ab177b +2016,Buenos Aires,II.5.1,7.5851999999999995,TJ,CO2,74100.0,kg/TJ,562063.32,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,c9a72fd5-6cba-3bf7-8c95-a73810113fc7 +2016,Buenos Aires,II.5.1,7.5851999999999995,TJ,CH4,3.9,kg/TJ,29.582279999999997,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,acb8f5e5-53a0-3419-b10b-656ae7c8fcef +2016,Buenos Aires,II.5.1,7.5851999999999995,TJ,N2O,3.9,kg/TJ,29.582279999999997,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,acb8f5e5-53a0-3419-b10b-656ae7c8fcef +2016,Córdoba,II.5.1,1.3364399999999999,TJ,CO2,74100.0,kg/TJ,99030.20399999998,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,0ee42921-43f5-3810-8249-59bfd8fceb55 +2016,Córdoba,II.5.1,1.3364399999999999,TJ,CH4,3.9,kg/TJ,5.212115999999999,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,97a695ab-b3e9-37bb-8885-839e77691249 +2016,Córdoba,II.5.1,1.3364399999999999,TJ,N2O,3.9,kg/TJ,5.212115999999999,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,97a695ab-b3e9-37bb-8885-839e77691249 +2016,Entre Rios,II.5.1,8.23536,TJ,CO2,74100.0,kg/TJ,610240.176,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,a60b6e08-8712-37f5-ae54-a9c0f937481f +2016,Entre Rios,II.5.1,8.23536,TJ,CH4,3.9,kg/TJ,32.117903999999996,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,dc09d4ab-ea70-3ee7-8afa-490602ea27ad +2016,Entre Rios,II.5.1,8.23536,TJ,N2O,3.9,kg/TJ,32.117903999999996,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,dc09d4ab-ea70-3ee7-8afa-490602ea27ad +2016,Buenos Aires,II.2.1,286.251,TJ,CO2,74100.0,kg/TJ,21211199.099999998,Gas Oil combustion consumption by railway transport,AR-B,SESCO,annual,kg,c4e403a9-6c29-3b1c-91a5-5d907918eadc +2016,Buenos Aires,II.2.1,286.251,TJ,CH4,3.9,kg/TJ,1116.3789,Gas Oil combustion consumption by railway transport,AR-B,SESCO,annual,kg,3c5ee5ad-79fb-3e34-9a26-9fa274b5c312 +2016,Buenos Aires,II.2.1,286.251,TJ,N2O,3.9,kg/TJ,1116.3789,Gas Oil combustion consumption by railway transport,AR-B,SESCO,annual,kg,3c5ee5ad-79fb-3e34-9a26-9fa274b5c312 +2016,Capital Federal,II.2.1,63.209999999999994,TJ,CO2,74100.0,kg/TJ,4683861.0,Gas Oil combustion consumption by railway transport,AR-C,SESCO,annual,kg,fdc01a05-a633-339e-8046-b6fe7a10f0e3 +2016,Capital Federal,II.2.1,63.209999999999994,TJ,CH4,3.9,kg/TJ,246.51899999999998,Gas Oil combustion consumption by railway transport,AR-C,SESCO,annual,kg,c9683500-d38c-39dd-b782-1e9f72ce0e25 +2016,Capital Federal,II.2.1,63.209999999999994,TJ,N2O,3.9,kg/TJ,246.51899999999998,Gas Oil combustion consumption by railway transport,AR-C,SESCO,annual,kg,c9683500-d38c-39dd-b782-1e9f72ce0e25 +2016,Santa Fe,II.2.1,78.34428,TJ,CO2,74100.0,kg/TJ,5805311.148,Gas Oil combustion consumption by railway transport,AR-S,SESCO,annual,kg,b7649460-8240-3f4f-8c76-2dd775b7b608 +2016,Santa Fe,II.2.1,78.34428,TJ,CH4,3.9,kg/TJ,305.542692,Gas Oil combustion consumption by railway transport,AR-S,SESCO,annual,kg,567f48fd-caeb-3a70-96bd-a10e19823008 +2016,Santa Fe,II.2.1,78.34428,TJ,N2O,3.9,kg/TJ,305.542692,Gas Oil combustion consumption by railway transport,AR-S,SESCO,annual,kg,567f48fd-caeb-3a70-96bd-a10e19823008 +2016,Capital Federal,II.1.1,10.189,TJ,CO2,69300.0,kg/TJ,706097.7,Motor Gasoline combustion consumption by freight transport,AR-C,SESCO,annual,kg,0be12027-5646-345d-9809-97282a594414 +2016,Capital Federal,II.1.1,10.189,TJ,CH4,33.0,kg/TJ,336.237,Motor Gasoline combustion consumption by freight transport,AR-C,SESCO,annual,kg,46040588-7cf8-3040-91c7-1675784fa318 +2016,Capital Federal,II.1.1,10.189,TJ,N2O,3.2,kg/TJ,32.604800000000004,Motor Gasoline combustion consumption by freight transport,AR-C,SESCO,annual,kg,6d134e5a-0832-3410-8b19-f359de99d380 +2016,Buenos Aires,II.1.1,216.32268,TJ,CO2,74100.0,kg/TJ,16029510.588,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,1fc0784d-5da5-39d4-86fe-23904a1671a2 +2016,Buenos Aires,II.1.1,216.32268,TJ,CH4,3.9,kg/TJ,843.6584519999999,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,c4475c1e-c3d5-3d43-9808-908b28dde5ee +2016,Buenos Aires,II.1.1,216.32268,TJ,N2O,3.9,kg/TJ,843.6584519999999,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,c4475c1e-c3d5-3d43-9808-908b28dde5ee +2016,Capital Federal,II.1.1,114.10307999999999,TJ,CO2,74100.0,kg/TJ,8455038.228,Gas Oil combustion consumption by freight transport,AR-C,SESCO,annual,kg,2994dd9f-25d1-38be-97be-6c832b3ae0bd +2016,Capital Federal,II.1.1,114.10307999999999,TJ,CH4,3.9,kg/TJ,445.002012,Gas Oil combustion consumption by freight transport,AR-C,SESCO,annual,kg,133951bc-29ac-3bf2-912a-db91b3512e33 +2016,Capital Federal,II.1.1,114.10307999999999,TJ,N2O,3.9,kg/TJ,445.002012,Gas Oil combustion consumption by freight transport,AR-C,SESCO,annual,kg,133951bc-29ac-3bf2-912a-db91b3512e33 +2016,Córdoba,II.1.1,99.07715999999999,TJ,CO2,74100.0,kg/TJ,7341617.556,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,d4ec4b57-57f6-3d8e-8ac1-e5a0d9278e49 +2016,Córdoba,II.1.1,99.07715999999999,TJ,CH4,3.9,kg/TJ,386.400924,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,6493073f-916c-3312-af38-a3aef2284e2e +2016,Córdoba,II.1.1,99.07715999999999,TJ,N2O,3.9,kg/TJ,386.400924,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,6493073f-916c-3312-af38-a3aef2284e2e +2016,Buenos Aires,II.1.1,23.33352,TJ,CO2,74100.0,kg/TJ,1729013.832,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,6cb81566-6129-36ae-a65e-5feee7d02437 +2016,Buenos Aires,II.1.1,23.33352,TJ,CH4,3.9,kg/TJ,91.000728,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,d16ad73a-d57c-3a37-ac91-3676204d2f89 +2016,Buenos Aires,II.1.1,23.33352,TJ,N2O,3.9,kg/TJ,91.000728,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,d16ad73a-d57c-3a37-ac91-3676204d2f89 +2016,Córdoba,II.1.1,0.97524,TJ,CO2,74100.0,kg/TJ,72265.284,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,a53e937c-d3c9-3f1b-9015-eeaf84540e7e +2016,Córdoba,II.1.1,0.97524,TJ,CH4,3.9,kg/TJ,3.803436,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,55880b0e-98a4-3a9f-9763-0855eaed1431 +2016,Córdoba,II.1.1,0.97524,TJ,N2O,3.9,kg/TJ,3.803436,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,55880b0e-98a4-3a9f-9763-0855eaed1431 +2016,Buenos Aires,II.1.1,6382.295639999999,TJ,CO2,74100.0,kg/TJ,472928106.92399997,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,a9dc0175-cbf3-32a7-9b3f-489671205f6c +2016,Buenos Aires,II.1.1,6382.295639999999,TJ,CH4,3.9,kg/TJ,24890.952995999996,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,74101952-3ccb-38ef-b47f-b6e245e07be8 +2016,Buenos Aires,II.1.1,6382.295639999999,TJ,N2O,3.9,kg/TJ,24890.952995999996,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,74101952-3ccb-38ef-b47f-b6e245e07be8 +2016,Capital Federal,II.1.1,112.54992,TJ,CO2,74100.0,kg/TJ,8339949.072,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,094b6da0-8eb9-36b8-841a-a26e335ee69e +2016,Capital Federal,II.1.1,112.54992,TJ,CH4,3.9,kg/TJ,438.944688,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,4e9362d3-4dc9-3afb-868e-af3647833be1 +2016,Capital Federal,II.1.1,112.54992,TJ,N2O,3.9,kg/TJ,438.944688,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,4e9362d3-4dc9-3afb-868e-af3647833be1 +2016,Misiones,II.1.1,66.78587999999999,TJ,CO2,74100.0,kg/TJ,4948833.708,Gas Oil combustion consumption by public passenger transport,AR-N,SESCO,annual,kg,648d5e2f-32cf-3905-9136-e89c76655f6c +2016,Misiones,II.1.1,66.78587999999999,TJ,CH4,3.9,kg/TJ,260.464932,Gas Oil combustion consumption by public passenger transport,AR-N,SESCO,annual,kg,411533d3-2635-3dad-8267-5ab7b5c0e862 +2016,Misiones,II.1.1,66.78587999999999,TJ,N2O,3.9,kg/TJ,260.464932,Gas Oil combustion consumption by public passenger transport,AR-N,SESCO,annual,kg,411533d3-2635-3dad-8267-5ab7b5c0e862 +2016,Buenos Aires,II.1.1,30.340799999999998,TJ,CO2,74100.0,kg/TJ,2248253.28,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,c0a2eef3-d73b-3d84-8bdc-d0ed4de8fac7 +2016,Buenos Aires,II.1.1,30.340799999999998,TJ,CH4,3.9,kg/TJ,118.32911999999999,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,2a25ba4c-74a4-352a-8e39-d25e29b42002 +2016,Buenos Aires,II.1.1,30.340799999999998,TJ,N2O,3.9,kg/TJ,118.32911999999999,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,2a25ba4c-74a4-352a-8e39-d25e29b42002 +2016,Buenos Aires,II.5.1,7.442399999999998,TJ,CO2,69300.0,kg/TJ,515758.3199999999,Motor Gasoline combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,4063e928-15ed-3ad8-a51d-f8229af499e5 +2016,Buenos Aires,II.5.1,7.442399999999998,TJ,CH4,33.0,kg/TJ,245.59919999999994,Motor Gasoline combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,62e8f45d-5bbf-3675-9892-7134f7294b41 +2016,Buenos Aires,II.5.1,7.442399999999998,TJ,N2O,3.2,kg/TJ,23.815679999999997,Motor Gasoline combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,ba40a86b-066c-3b22-a56d-19d27e968187 +2016,Jujuy,II.5.1,4.6514999999999995,TJ,CO2,69300.0,kg/TJ,322348.94999999995,Motor Gasoline combustion consumption by agriculture machines,AR-Y,SESCO,annual,kg,e451a04a-b4cc-384e-85b9-653ab9c7d599 +2016,Jujuy,II.5.1,4.6514999999999995,TJ,CH4,33.0,kg/TJ,153.49949999999998,Motor Gasoline combustion consumption by agriculture machines,AR-Y,SESCO,annual,kg,cd639f78-a688-3dd8-8164-f2f7bb3e3f9b +2016,Jujuy,II.5.1,4.6514999999999995,TJ,N2O,3.2,kg/TJ,14.884799999999998,Motor Gasoline combustion consumption by agriculture machines,AR-Y,SESCO,annual,kg,a4de63c6-7d19-3555-9ea9-a88c290485b4 +2016,Salta,II.5.1,3.4997,TJ,CO2,69300.0,kg/TJ,242529.21,Motor Gasoline combustion consumption by agriculture machines,AR-A,SESCO,annual,kg,9e61a047-e8ee-3bef-8309-affa0b8ec468 +2016,Salta,II.5.1,3.4997,TJ,CH4,33.0,kg/TJ,115.4901,Motor Gasoline combustion consumption by agriculture machines,AR-A,SESCO,annual,kg,95e94e23-4bf9-3a61-8d33-841a1b4e8142 +2016,Salta,II.5.1,3.4997,TJ,N2O,3.2,kg/TJ,11.19904,Motor Gasoline combustion consumption by agriculture machines,AR-A,SESCO,annual,kg,bff36242-0f1d-3d24-8d54-a55b77b33775 +2016,Santa Fe,II.5.1,1.1961,TJ,CO2,69300.0,kg/TJ,82889.73,Motor Gasoline combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,48dec184-fff3-385a-b885-3f34eae61411 +2016,Santa Fe,II.5.1,1.1961,TJ,CH4,33.0,kg/TJ,39.4713,Motor Gasoline combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,0492c906-1745-3d37-8b94-f2b8d7426d64 +2016,Santa Fe,II.5.1,1.1961,TJ,N2O,3.2,kg/TJ,3.82752,Motor Gasoline combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,9a19e42f-2a12-397d-9da7-c1644ceea70d +2016,Buenos Aires,II.5.1,10148.52804,TJ,CO2,74100.0,kg/TJ,752005927.7639999,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,02e23d64-faa2-3037-993c-98bb1c424a4c +2016,Buenos Aires,II.5.1,10148.52804,TJ,CH4,3.9,kg/TJ,39579.259355999995,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,9788fc88-0186-3212-9586-846b73d7da1c +2016,Buenos Aires,II.5.1,10148.52804,TJ,N2O,3.9,kg/TJ,39579.259355999995,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,9788fc88-0186-3212-9586-846b73d7da1c +2016,Capital Federal,II.5.1,18.09612,TJ,CO2,74100.0,kg/TJ,1340922.4919999999,Gas Oil combustion consumption by agriculture machines,AR-C,SESCO,annual,kg,83158d79-b095-3f3a-8587-7b8e8ceac647 +2016,Capital Federal,II.5.1,18.09612,TJ,CH4,3.9,kg/TJ,70.574868,Gas Oil combustion consumption by agriculture machines,AR-C,SESCO,annual,kg,5d00577f-497d-3f5c-8751-259ef4f6e093 +2016,Capital Federal,II.5.1,18.09612,TJ,N2O,3.9,kg/TJ,70.574868,Gas Oil combustion consumption by agriculture machines,AR-C,SESCO,annual,kg,5d00577f-497d-3f5c-8751-259ef4f6e093 +2016,Catamarca,II.5.1,127.90092,TJ,CO2,74100.0,kg/TJ,9477458.172,Gas Oil combustion consumption by agriculture machines,AR-K,SESCO,annual,kg,3462e7b0-c508-340f-b9d0-05e17b306800 +2016,Catamarca,II.5.1,127.90092,TJ,CH4,3.9,kg/TJ,498.813588,Gas Oil combustion consumption by agriculture machines,AR-K,SESCO,annual,kg,79459760-12c3-360b-ba4b-a6e211be6e70 +2016,Catamarca,II.5.1,127.90092,TJ,N2O,3.9,kg/TJ,498.813588,Gas Oil combustion consumption by agriculture machines,AR-K,SESCO,annual,kg,79459760-12c3-360b-ba4b-a6e211be6e70 +2016,Chaco,II.5.1,1142.4756,TJ,CO2,74100.0,kg/TJ,84657441.96,Gas Oil combustion consumption by agriculture machines,AR-H,SESCO,annual,kg,e56c3897-d031-3678-81b7-c677948cf820 +2016,Chaco,II.5.1,1142.4756,TJ,CH4,3.9,kg/TJ,4455.65484,Gas Oil combustion consumption by agriculture machines,AR-H,SESCO,annual,kg,8d06c282-1931-35b9-b4df-34dfb5d44f12 +2016,Chaco,II.5.1,1142.4756,TJ,N2O,3.9,kg/TJ,4455.65484,Gas Oil combustion consumption by agriculture machines,AR-H,SESCO,annual,kg,8d06c282-1931-35b9-b4df-34dfb5d44f12 +2016,Chubut,II.5.1,0.10836,TJ,CO2,74100.0,kg/TJ,8029.476,Gas Oil combustion consumption by agriculture machines,AR-U,SESCO,annual,kg,00af115b-2189-3e1a-a321-6f864ba7ad1d +2016,Chubut,II.5.1,0.10836,TJ,CH4,3.9,kg/TJ,0.422604,Gas Oil combustion consumption by agriculture machines,AR-U,SESCO,annual,kg,994dbd39-79ab-37e0-9409-857e8eb366cc +2016,Chubut,II.5.1,0.10836,TJ,N2O,3.9,kg/TJ,0.422604,Gas Oil combustion consumption by agriculture machines,AR-U,SESCO,annual,kg,994dbd39-79ab-37e0-9409-857e8eb366cc +2016,Corrientes,II.5.1,257.35499999999996,TJ,CO2,74100.0,kg/TJ,19070005.499999996,Gas Oil combustion consumption by agriculture machines,AR-W,SESCO,annual,kg,5ca6b8a6-aaba-348c-9f0d-a3002d66ba95 +2016,Corrientes,II.5.1,257.35499999999996,TJ,CH4,3.9,kg/TJ,1003.6844999999998,Gas Oil combustion consumption by agriculture machines,AR-W,SESCO,annual,kg,ccf1fa54-d680-381b-ad32-4251296c3c54 +2016,Corrientes,II.5.1,257.35499999999996,TJ,N2O,3.9,kg/TJ,1003.6844999999998,Gas Oil combustion consumption by agriculture machines,AR-W,SESCO,annual,kg,ccf1fa54-d680-381b-ad32-4251296c3c54 +2016,Córdoba,II.5.1,7882.684319999999,TJ,CO2,74100.0,kg/TJ,584106908.112,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,66213f43-faee-3a44-a834-ea0b5a3eca77 +2016,Córdoba,II.5.1,7882.684319999999,TJ,CH4,3.9,kg/TJ,30742.468847999997,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,95cd41f5-e7e6-3673-8f02-2aa7a0306134 +2016,Córdoba,II.5.1,7882.684319999999,TJ,N2O,3.9,kg/TJ,30742.468847999997,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,95cd41f5-e7e6-3673-8f02-2aa7a0306134 +2016,Entre Rios,II.5.1,1997.1109199999999,TJ,CO2,74100.0,kg/TJ,147985919.172,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,93753e41-72e6-30dd-9038-bd8334a672b0 +2016,Entre Rios,II.5.1,1997.1109199999999,TJ,CH4,3.9,kg/TJ,7788.732587999999,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,16e3afb6-9aef-3254-a875-b9d6ef031a2f +2016,Entre Rios,II.5.1,1997.1109199999999,TJ,N2O,3.9,kg/TJ,7788.732587999999,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,16e3afb6-9aef-3254-a875-b9d6ef031a2f +2016,Formosa,II.5.1,258.7998,TJ,CO2,74100.0,kg/TJ,19177065.18,Gas Oil combustion consumption by agriculture machines,AR-P,SESCO,annual,kg,99f65982-17ea-32f0-9c54-872bb036b270 +2016,Formosa,II.5.1,258.7998,TJ,CH4,3.9,kg/TJ,1009.31922,Gas Oil combustion consumption by agriculture machines,AR-P,SESCO,annual,kg,9151a19a-efdb-3cb2-a609-2f78e77c04a1 +2016,Formosa,II.5.1,258.7998,TJ,N2O,3.9,kg/TJ,1009.31922,Gas Oil combustion consumption by agriculture machines,AR-P,SESCO,annual,kg,9151a19a-efdb-3cb2-a609-2f78e77c04a1 +2016,Jujuy,II.5.1,1101.51552,TJ,CO2,74100.0,kg/TJ,81622300.03199999,Gas Oil combustion consumption by agriculture machines,AR-Y,SESCO,annual,kg,5b6042b2-c8dc-355c-aaa5-56ba55c928f5 +2016,Jujuy,II.5.1,1101.51552,TJ,CH4,3.9,kg/TJ,4295.910527999999,Gas Oil combustion consumption by agriculture machines,AR-Y,SESCO,annual,kg,aea56f48-55e7-3ed4-8c47-707da1f9cd31 +2016,Jujuy,II.5.1,1101.51552,TJ,N2O,3.9,kg/TJ,4295.910527999999,Gas Oil combustion consumption by agriculture machines,AR-Y,SESCO,annual,kg,aea56f48-55e7-3ed4-8c47-707da1f9cd31 +2016,La Pampa,II.5.1,1910.82024,TJ,CO2,74100.0,kg/TJ,141591779.784,Gas Oil combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,f34baf12-515c-3832-82ea-a7786641772e +2016,La Pampa,II.5.1,1910.82024,TJ,CH4,3.9,kg/TJ,7452.198936,Gas Oil combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,9c026001-e434-3870-9be5-f1f46a41cf87 +2016,La Pampa,II.5.1,1910.82024,TJ,N2O,3.9,kg/TJ,7452.198936,Gas Oil combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,9c026001-e434-3870-9be5-f1f46a41cf87 +2016,La Rioja,II.5.1,119.5572,TJ,CO2,74100.0,kg/TJ,8859188.52,Gas Oil combustion consumption by agriculture machines,AR-F,SESCO,annual,kg,25c5716e-d1b1-3f05-9a4e-80725a213ddf +2016,La Rioja,II.5.1,119.5572,TJ,CH4,3.9,kg/TJ,466.27308,Gas Oil combustion consumption by agriculture machines,AR-F,SESCO,annual,kg,548dad2f-56b9-36cd-aae1-62bd93e7080f +2016,La Rioja,II.5.1,119.5572,TJ,N2O,3.9,kg/TJ,466.27308,Gas Oil combustion consumption by agriculture machines,AR-F,SESCO,annual,kg,548dad2f-56b9-36cd-aae1-62bd93e7080f +2016,Mendoza,II.5.1,2484.26136,TJ,CO2,74100.0,kg/TJ,184083766.776,Gas Oil combustion consumption by agriculture machines,AR-M,SESCO,annual,kg,40dbea9d-5833-3ac2-a648-c08c5acb440a +2016,Mendoza,II.5.1,2484.26136,TJ,CH4,3.9,kg/TJ,9688.619304,Gas Oil combustion consumption by agriculture machines,AR-M,SESCO,annual,kg,2af858eb-7319-3227-a53b-eba2251315da +2016,Mendoza,II.5.1,2484.26136,TJ,N2O,3.9,kg/TJ,9688.619304,Gas Oil combustion consumption by agriculture machines,AR-M,SESCO,annual,kg,2af858eb-7319-3227-a53b-eba2251315da +2016,Misiones,II.5.1,1019.45088,TJ,CO2,74100.0,kg/TJ,75541310.208,Gas Oil combustion consumption by agriculture machines,AR-N,SESCO,annual,kg,455df631-9c28-3175-87c8-fbd5cc013831 +2016,Misiones,II.5.1,1019.45088,TJ,CH4,3.9,kg/TJ,3975.858432,Gas Oil combustion consumption by agriculture machines,AR-N,SESCO,annual,kg,0615b662-3cac-35b3-951e-cae196792c08 +2016,Misiones,II.5.1,1019.45088,TJ,N2O,3.9,kg/TJ,3975.858432,Gas Oil combustion consumption by agriculture machines,AR-N,SESCO,annual,kg,0615b662-3cac-35b3-951e-cae196792c08 +2016,Rio Negro,II.5.1,209.92944,TJ,CO2,74100.0,kg/TJ,15555771.504,Gas Oil combustion consumption by agriculture machines,AR-R,SESCO,annual,kg,e12297ce-74ac-3873-8cd6-714e8580b097 +2016,Rio Negro,II.5.1,209.92944,TJ,CH4,3.9,kg/TJ,818.724816,Gas Oil combustion consumption by agriculture machines,AR-R,SESCO,annual,kg,99dc5fd9-1696-3747-8e4c-9d9ff564ace3 +2016,Rio Negro,II.5.1,209.92944,TJ,N2O,3.9,kg/TJ,818.724816,Gas Oil combustion consumption by agriculture machines,AR-R,SESCO,annual,kg,99dc5fd9-1696-3747-8e4c-9d9ff564ace3 +2016,Salta,II.5.1,1696.44804,TJ,CO2,74100.0,kg/TJ,125706799.764,Gas Oil combustion consumption by agriculture machines,AR-A,SESCO,annual,kg,74c2366c-3070-3314-95c9-e3e07611df3e +2016,Salta,II.5.1,1696.44804,TJ,CH4,3.9,kg/TJ,6616.1473559999995,Gas Oil combustion consumption by agriculture machines,AR-A,SESCO,annual,kg,02c12cf6-105a-3dcb-83a6-9b00bf94a529 +2016,Salta,II.5.1,1696.44804,TJ,N2O,3.9,kg/TJ,6616.1473559999995,Gas Oil combustion consumption by agriculture machines,AR-A,SESCO,annual,kg,02c12cf6-105a-3dcb-83a6-9b00bf94a529 +2016,San Juan,II.5.1,490.97916,TJ,CO2,74100.0,kg/TJ,36381555.756,Gas Oil combustion consumption by agriculture machines,AR-J,SESCO,annual,kg,6d92fecf-9acd-3fae-b176-e5fa71e7c18e +2016,San Juan,II.5.1,490.97916,TJ,CH4,3.9,kg/TJ,1914.818724,Gas Oil combustion consumption by agriculture machines,AR-J,SESCO,annual,kg,cebe2342-011e-35f1-9d96-c53b6ba7f859 +2016,San Juan,II.5.1,490.97916,TJ,N2O,3.9,kg/TJ,1914.818724,Gas Oil combustion consumption by agriculture machines,AR-J,SESCO,annual,kg,cebe2342-011e-35f1-9d96-c53b6ba7f859 +2016,San Luis,II.5.1,555.5617199999999,TJ,CO2,74100.0,kg/TJ,41167123.45199999,Gas Oil combustion consumption by agriculture machines,AR-D,SESCO,annual,kg,29a8daad-a069-3713-9f2c-1aedc03fdfad +2016,San Luis,II.5.1,555.5617199999999,TJ,CH4,3.9,kg/TJ,2166.6907079999996,Gas Oil combustion consumption by agriculture machines,AR-D,SESCO,annual,kg,220130e2-fde0-38d5-b0c3-0d44e77f68fc +2016,San Luis,II.5.1,555.5617199999999,TJ,N2O,3.9,kg/TJ,2166.6907079999996,Gas Oil combustion consumption by agriculture machines,AR-D,SESCO,annual,kg,220130e2-fde0-38d5-b0c3-0d44e77f68fc +2016,Santa Cruz,II.5.1,0.5418,TJ,CO2,74100.0,kg/TJ,40147.38,Gas Oil combustion consumption by agriculture machines,AR-Z,SESCO,annual,kg,9e6d2eca-b8be-3f93-bcdc-bf25aa3f5804 +2016,Santa Cruz,II.5.1,0.5418,TJ,CH4,3.9,kg/TJ,2.1130199999999997,Gas Oil combustion consumption by agriculture machines,AR-Z,SESCO,annual,kg,67752b36-df1c-3d18-9351-19b618e436e5 +2016,Santa Cruz,II.5.1,0.5418,TJ,N2O,3.9,kg/TJ,2.1130199999999997,Gas Oil combustion consumption by agriculture machines,AR-Z,SESCO,annual,kg,67752b36-df1c-3d18-9351-19b618e436e5 +2016,Santa Fe,II.5.1,6693.72228,TJ,CO2,74100.0,kg/TJ,496004820.948,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,3d0a4474-c8d4-3def-9d4e-26b3abc59864 +2016,Santa Fe,II.5.1,6693.72228,TJ,CH4,3.9,kg/TJ,26105.516892,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,0a7f0d10-01d8-3eea-8e2a-a41759da0cae +2016,Santa Fe,II.5.1,6693.72228,TJ,N2O,3.9,kg/TJ,26105.516892,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,0a7f0d10-01d8-3eea-8e2a-a41759da0cae +2016,Santiago del Estero,II.5.1,1782.522,TJ,CO2,74100.0,kg/TJ,132084880.19999999,Gas Oil combustion consumption by agriculture machines,AR-G,SESCO,annual,kg,a55594e6-ef34-31d4-8be8-b9d374089045 +2016,Santiago del Estero,II.5.1,1782.522,TJ,CH4,3.9,kg/TJ,6951.8358,Gas Oil combustion consumption by agriculture machines,AR-G,SESCO,annual,kg,4ae82c3e-cbd7-3e23-b7f4-3eb40713e4cb +2016,Santiago del Estero,II.5.1,1782.522,TJ,N2O,3.9,kg/TJ,6951.8358,Gas Oil combustion consumption by agriculture machines,AR-G,SESCO,annual,kg,4ae82c3e-cbd7-3e23-b7f4-3eb40713e4cb +2016,Tucuman,II.5.1,1466.86932,TJ,CO2,74100.0,kg/TJ,108695016.612,Gas Oil combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,d8319ec6-e146-3aec-b5b8-c23994f00eb0 +2016,Tucuman,II.5.1,1466.86932,TJ,CH4,3.9,kg/TJ,5720.7903479999995,Gas Oil combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,6c7d5547-e597-3e31-b342-393b0d8ac0ed +2016,Tucuman,II.5.1,1466.86932,TJ,N2O,3.9,kg/TJ,5720.7903479999995,Gas Oil combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,6c7d5547-e597-3e31-b342-393b0d8ac0ed +2016,Buenos Aires,II.5.1,246.62735999999998,TJ,CO2,74100.0,kg/TJ,18275087.376,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,080d6807-8016-3600-b220-0ee98693c35b +2016,Buenos Aires,II.5.1,246.62735999999998,TJ,CH4,3.9,kg/TJ,961.8467039999999,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,c63af8b1-d35c-39a7-a99f-5f2d8e5730df +2016,Buenos Aires,II.5.1,246.62735999999998,TJ,N2O,3.9,kg/TJ,961.8467039999999,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,c63af8b1-d35c-39a7-a99f-5f2d8e5730df +2016,Catamarca,II.5.1,9.5718,TJ,CO2,74100.0,kg/TJ,709270.38,Gas Oil combustion consumption by agriculture machines,AR-K,SESCO,annual,kg,1cf20bf3-5cf3-319f-8228-37f5f1160205 +2016,Catamarca,II.5.1,9.5718,TJ,CH4,3.9,kg/TJ,37.33002,Gas Oil combustion consumption by agriculture machines,AR-K,SESCO,annual,kg,00b51f2c-4bcc-3041-ad93-f646a9f049f7 +2016,Catamarca,II.5.1,9.5718,TJ,N2O,3.9,kg/TJ,37.33002,Gas Oil combustion consumption by agriculture machines,AR-K,SESCO,annual,kg,00b51f2c-4bcc-3041-ad93-f646a9f049f7 +2016,Chaco,II.5.1,59.814719999999994,TJ,CO2,74100.0,kg/TJ,4432270.751999999,Gas Oil combustion consumption by agriculture machines,AR-H,SESCO,annual,kg,e94f2093-db04-3fed-a2c5-a5bd25078dd1 +2016,Chaco,II.5.1,59.814719999999994,TJ,CH4,3.9,kg/TJ,233.27740799999998,Gas Oil combustion consumption by agriculture machines,AR-H,SESCO,annual,kg,569012d8-c274-3477-b4a0-2f04aaf453b6 +2016,Chaco,II.5.1,59.814719999999994,TJ,N2O,3.9,kg/TJ,233.27740799999998,Gas Oil combustion consumption by agriculture machines,AR-H,SESCO,annual,kg,569012d8-c274-3477-b4a0-2f04aaf453b6 +2016,Corrientes,II.5.1,14.809199999999999,TJ,CO2,74100.0,kg/TJ,1097361.72,Gas Oil combustion consumption by agriculture machines,AR-W,SESCO,annual,kg,4d5b3623-86ff-326e-92f0-cb53d72ce19e +2016,Corrientes,II.5.1,14.809199999999999,TJ,CH4,3.9,kg/TJ,57.75587999999999,Gas Oil combustion consumption by agriculture machines,AR-W,SESCO,annual,kg,b28c3f31-b5b8-313a-afe8-71725058f3a5 +2016,Corrientes,II.5.1,14.809199999999999,TJ,N2O,3.9,kg/TJ,57.75587999999999,Gas Oil combustion consumption by agriculture machines,AR-W,SESCO,annual,kg,b28c3f31-b5b8-313a-afe8-71725058f3a5 +2016,Córdoba,II.5.1,61.11504,TJ,CO2,74100.0,kg/TJ,4528624.464,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,daadf975-d134-3c9f-8951-a1e4001882c1 +2016,Córdoba,II.5.1,61.11504,TJ,CH4,3.9,kg/TJ,238.348656,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,c29679f8-39d1-3ad1-8b08-558942b8ac1b +2016,Córdoba,II.5.1,61.11504,TJ,N2O,3.9,kg/TJ,238.348656,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,c29679f8-39d1-3ad1-8b08-558942b8ac1b +2016,Entre Rios,II.5.1,26.150879999999997,TJ,CO2,74100.0,kg/TJ,1937780.2079999999,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,110ae6c0-d4b1-31b1-b9c1-55087b17a706 +2016,Entre Rios,II.5.1,26.150879999999997,TJ,CH4,3.9,kg/TJ,101.98843199999999,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,422e447c-fe99-3ddb-8790-46b384cab31f +2016,Entre Rios,II.5.1,26.150879999999997,TJ,N2O,3.9,kg/TJ,101.98843199999999,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,422e447c-fe99-3ddb-8790-46b384cab31f +2016,Formosa,II.5.1,4.62336,TJ,CO2,74100.0,kg/TJ,342590.97599999997,Gas Oil combustion consumption by agriculture machines,AR-P,SESCO,annual,kg,c121e74d-9460-326c-aa90-04126b550bfb +2016,Formosa,II.5.1,4.62336,TJ,CH4,3.9,kg/TJ,18.031104,Gas Oil combustion consumption by agriculture machines,AR-P,SESCO,annual,kg,bfac1636-2cd4-35ce-b34c-ec0950f754fd +2016,Formosa,II.5.1,4.62336,TJ,N2O,3.9,kg/TJ,18.031104,Gas Oil combustion consumption by agriculture machines,AR-P,SESCO,annual,kg,bfac1636-2cd4-35ce-b34c-ec0950f754fd +2016,Jujuy,II.5.1,14.484119999999999,TJ,CO2,74100.0,kg/TJ,1073273.292,Gas Oil combustion consumption by agriculture machines,AR-Y,SESCO,annual,kg,92272ab0-7150-375b-a72a-b342f840afdb +2016,Jujuy,II.5.1,14.484119999999999,TJ,CH4,3.9,kg/TJ,56.48806799999999,Gas Oil combustion consumption by agriculture machines,AR-Y,SESCO,annual,kg,fa312056-8500-3f00-9fc0-180f8c0e776b +2016,Jujuy,II.5.1,14.484119999999999,TJ,N2O,3.9,kg/TJ,56.48806799999999,Gas Oil combustion consumption by agriculture machines,AR-Y,SESCO,annual,kg,fa312056-8500-3f00-9fc0-180f8c0e776b +2016,La Pampa,II.5.1,94.95948,TJ,CO2,74100.0,kg/TJ,7036497.468,Gas Oil combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,1edd381b-b3ea-3345-b96f-186699cfab24 +2016,La Pampa,II.5.1,94.95948,TJ,CH4,3.9,kg/TJ,370.341972,Gas Oil combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,651ba714-a6f4-344a-ba6f-09073e041739 +2016,La Pampa,II.5.1,94.95948,TJ,N2O,3.9,kg/TJ,370.341972,Gas Oil combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,651ba714-a6f4-344a-ba6f-09073e041739 +2016,Mendoza,II.5.1,54.64956,TJ,CO2,74100.0,kg/TJ,4049532.396,Gas Oil combustion consumption by agriculture machines,AR-M,SESCO,annual,kg,38b18c50-d6c1-30aa-97ee-59e8797d0197 +2016,Mendoza,II.5.1,54.64956,TJ,CH4,3.9,kg/TJ,213.133284,Gas Oil combustion consumption by agriculture machines,AR-M,SESCO,annual,kg,a913230c-1328-31f6-b211-84852a6d508f +2016,Mendoza,II.5.1,54.64956,TJ,N2O,3.9,kg/TJ,213.133284,Gas Oil combustion consumption by agriculture machines,AR-M,SESCO,annual,kg,a913230c-1328-31f6-b211-84852a6d508f +2016,Misiones,II.5.1,73.46808,TJ,CO2,74100.0,kg/TJ,5443984.728,Gas Oil combustion consumption by agriculture machines,AR-N,SESCO,annual,kg,193528d2-8ac0-3b00-a382-c2876a264d9c +2016,Misiones,II.5.1,73.46808,TJ,CH4,3.9,kg/TJ,286.525512,Gas Oil combustion consumption by agriculture machines,AR-N,SESCO,annual,kg,bfe4077a-9f35-34ac-8933-fc835f7b31df +2016,Misiones,II.5.1,73.46808,TJ,N2O,3.9,kg/TJ,286.525512,Gas Oil combustion consumption by agriculture machines,AR-N,SESCO,annual,kg,bfe4077a-9f35-34ac-8933-fc835f7b31df +2016,Rio Negro,II.5.1,4.1537999999999995,TJ,CO2,74100.0,kg/TJ,307796.57999999996,Gas Oil combustion consumption by agriculture machines,AR-R,SESCO,annual,kg,7bebb4eb-7cdc-3130-bc1b-675341947a83 +2016,Rio Negro,II.5.1,4.1537999999999995,TJ,CH4,3.9,kg/TJ,16.19982,Gas Oil combustion consumption by agriculture machines,AR-R,SESCO,annual,kg,13c10e70-b9e5-31c1-a805-a2e5cb00dedb +2016,Rio Negro,II.5.1,4.1537999999999995,TJ,N2O,3.9,kg/TJ,16.19982,Gas Oil combustion consumption by agriculture machines,AR-R,SESCO,annual,kg,13c10e70-b9e5-31c1-a805-a2e5cb00dedb +2016,Salta,II.5.1,107.38476,TJ,CO2,74100.0,kg/TJ,7957210.716,Gas Oil combustion consumption by agriculture machines,AR-A,SESCO,annual,kg,5f2a279d-31cf-37c9-8ff0-dc10560ddcd5 +2016,Salta,II.5.1,107.38476,TJ,CH4,3.9,kg/TJ,418.800564,Gas Oil combustion consumption by agriculture machines,AR-A,SESCO,annual,kg,726c1971-78fe-3492-b346-fa37941e8e95 +2016,Salta,II.5.1,107.38476,TJ,N2O,3.9,kg/TJ,418.800564,Gas Oil combustion consumption by agriculture machines,AR-A,SESCO,annual,kg,726c1971-78fe-3492-b346-fa37941e8e95 +2016,San Juan,II.5.1,24.0198,TJ,CO2,74100.0,kg/TJ,1779867.18,Gas Oil combustion consumption by agriculture machines,AR-J,SESCO,annual,kg,77776ff5-3790-3d75-b590-5cb15e3f8983 +2016,San Juan,II.5.1,24.0198,TJ,CH4,3.9,kg/TJ,93.67721999999999,Gas Oil combustion consumption by agriculture machines,AR-J,SESCO,annual,kg,347cc392-6cbc-3f8b-a7e6-cb6e06b86f66 +2016,San Juan,II.5.1,24.0198,TJ,N2O,3.9,kg/TJ,93.67721999999999,Gas Oil combustion consumption by agriculture machines,AR-J,SESCO,annual,kg,347cc392-6cbc-3f8b-a7e6-cb6e06b86f66 +2016,San Luis,II.5.1,31.352159999999998,TJ,CO2,74100.0,kg/TJ,2323195.056,Gas Oil combustion consumption by agriculture machines,AR-D,SESCO,annual,kg,1bd88a0a-2488-3bc5-b633-1914010f2555 +2016,San Luis,II.5.1,31.352159999999998,TJ,CH4,3.9,kg/TJ,122.27342399999999,Gas Oil combustion consumption by agriculture machines,AR-D,SESCO,annual,kg,b276908b-6857-32a7-b982-d25e3f4c9c91 +2016,San Luis,II.5.1,31.352159999999998,TJ,N2O,3.9,kg/TJ,122.27342399999999,Gas Oil combustion consumption by agriculture machines,AR-D,SESCO,annual,kg,b276908b-6857-32a7-b982-d25e3f4c9c91 +2016,Santa Fe,II.5.1,133.21056,TJ,CO2,74100.0,kg/TJ,9870902.496,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,f7fb1424-609a-3dd6-8da8-1e8c92dd4210 +2016,Santa Fe,II.5.1,133.21056,TJ,CH4,3.9,kg/TJ,519.521184,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,edd527df-697b-3446-bad9-219925fdb61b +2016,Santa Fe,II.5.1,133.21056,TJ,N2O,3.9,kg/TJ,519.521184,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,edd527df-697b-3446-bad9-219925fdb61b +2016,Santiago del Estero,II.5.1,80.33088,TJ,CO2,74100.0,kg/TJ,5952518.208,Gas Oil combustion consumption by agriculture machines,AR-G,SESCO,annual,kg,1bf1536e-5fa5-39b4-8536-fc65d6ab5a0e +2016,Santiago del Estero,II.5.1,80.33088,TJ,CH4,3.9,kg/TJ,313.29043199999995,Gas Oil combustion consumption by agriculture machines,AR-G,SESCO,annual,kg,940ea05c-99da-34d5-8b2d-71bcf99e0def +2016,Santiago del Estero,II.5.1,80.33088,TJ,N2O,3.9,kg/TJ,313.29043199999995,Gas Oil combustion consumption by agriculture machines,AR-G,SESCO,annual,kg,940ea05c-99da-34d5-8b2d-71bcf99e0def +2016,Tucuman,II.5.1,72.27611999999999,TJ,CO2,74100.0,kg/TJ,5355660.492,Gas Oil combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,76667790-2878-362c-b30f-60139bcdd168 +2016,Tucuman,II.5.1,72.27611999999999,TJ,CH4,3.9,kg/TJ,281.87686799999994,Gas Oil combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,bb5a186c-36ec-3886-b2ac-917d5fc1aef1 +2016,Tucuman,II.5.1,72.27611999999999,TJ,N2O,3.9,kg/TJ,281.87686799999994,Gas Oil combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,bb5a186c-36ec-3886-b2ac-917d5fc1aef1 +2016,Buenos Aires,II.5.1,8.429404,TJ,CO2,71500.0,kg/TJ,602702.3859999999,Jet Kerosene combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,b87c1264-d7c7-307d-9de4-d3fecb521374 +2016,Buenos Aires,II.5.1,8.429404,TJ,CH4,0.5,kg/TJ,4.214702,Jet Kerosene combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,09bff9a2-fdda-3ab5-8fb5-d621c04bad52 +2016,Buenos Aires,II.5.1,8.429404,TJ,N2O,2.0,kg/TJ,16.858808,Jet Kerosene combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,a8d314ad-5a57-3114-8314-894c7aab3fdc +2016,Córdoba,II.5.1,0.31453,TJ,CO2,71500.0,kg/TJ,22488.894999999997,Jet Kerosene combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,f15cf9af-afeb-31b9-a32e-757a60ba7346 +2016,Córdoba,II.5.1,0.31453,TJ,CH4,0.5,kg/TJ,0.157265,Jet Kerosene combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,cf48b8c3-2f61-3dd0-b123-b5d477ee9603 +2016,Córdoba,II.5.1,0.31453,TJ,N2O,2.0,kg/TJ,0.62906,Jet Kerosene combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,ba1ec442-4a67-3a2f-9a40-c16e4a8f5665 +2016,Entre Rios,II.5.1,0.157265,TJ,CO2,71500.0,kg/TJ,11244.447499999998,Jet Kerosene combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,fde7ca6d-a175-3877-9429-c9191f909738 +2016,Entre Rios,II.5.1,0.157265,TJ,CH4,0.5,kg/TJ,0.0786325,Jet Kerosene combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,0a2b02da-e900-3b4a-9805-c75316635314 +2016,Entre Rios,II.5.1,0.157265,TJ,N2O,2.0,kg/TJ,0.31453,Jet Kerosene combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,fc0df5e4-0fc4-3c4f-8a62-418b1dffb0b0 +2016,La Pampa,II.5.1,0.62906,TJ,CO2,71500.0,kg/TJ,44977.78999999999,Jet Kerosene combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,9d18ff69-70b1-3f46-8a74-c876b630d713 +2016,La Pampa,II.5.1,0.62906,TJ,CH4,0.5,kg/TJ,0.31453,Jet Kerosene combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,23a3138c-0ad2-3901-9a62-3cd2ca98c8b6 +2016,La Pampa,II.5.1,0.62906,TJ,N2O,2.0,kg/TJ,1.25812,Jet Kerosene combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,e785db31-9b87-35a7-87cf-9d142049639d +2016,Santa Fe,II.5.1,2.2646159999999997,TJ,CO2,71500.0,kg/TJ,161920.044,Jet Kerosene combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,c8d612d3-26de-3d78-9af0-86c24650f57b +2016,Santa Fe,II.5.1,2.2646159999999997,TJ,CH4,0.5,kg/TJ,1.1323079999999999,Jet Kerosene combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,287cd96d-70fb-34ea-924e-a52cb435fdc2 +2016,Santa Fe,II.5.1,2.2646159999999997,TJ,N2O,2.0,kg/TJ,4.5292319999999995,Jet Kerosene combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,4ca112ec-1201-3256-8ab3-b6de639987a9 +2016,Buenos Aires,II.5.1,152.787635,TJ,CO2,73300.0,kg/TJ,11199333.645499999,Naphtha combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,70ea3893-0646-3b0e-bcc6-c0b84021e8ad +2016,Buenos Aires,II.5.1,152.787635,TJ,CH4,0.5,kg/TJ,76.3938175,Naphtha combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,c9e19fe0-9985-3bfa-a227-156814e4a234 +2016,Buenos Aires,II.5.1,152.787635,TJ,N2O,2.0,kg/TJ,305.57527,Naphtha combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,5cc9aeb1-eed5-3cad-8f8a-78af24536278 +2016,Entre Rios,II.5.1,0.5825049999999999,TJ,CO2,73300.0,kg/TJ,42697.6165,Naphtha combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,5d3fcc00-3a44-32f3-b2f7-2a17413fdbe4 +2016,Entre Rios,II.5.1,0.5825049999999999,TJ,CH4,0.5,kg/TJ,0.29125249999999997,Naphtha combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,23e93a9f-16fd-310a-82f3-52a48b842bb8 +2016,Entre Rios,II.5.1,0.5825049999999999,TJ,N2O,2.0,kg/TJ,1.1650099999999999,Naphtha combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,c8b81f72-a412-35c6-9df1-76554cf26ef6 +2016,Jujuy,II.5.1,1.130745,TJ,CO2,73300.0,kg/TJ,82883.60849999999,Naphtha combustion consumption by agriculture machines,AR-Y,SESCO,annual,kg,a97628c8-ea16-38aa-adaa-5338bc4f2df2 +2016,Jujuy,II.5.1,1.130745,TJ,CH4,0.5,kg/TJ,0.5653725,Naphtha combustion consumption by agriculture machines,AR-Y,SESCO,annual,kg,c9af1c13-1934-3405-873d-687d0ee50360 +2016,Jujuy,II.5.1,1.130745,TJ,N2O,2.0,kg/TJ,2.26149,Naphtha combustion consumption by agriculture machines,AR-Y,SESCO,annual,kg,327f52e3-0a51-3690-8e1d-3b06d7331e81 +2016,Salta,II.5.1,0.719565,TJ,CO2,73300.0,kg/TJ,52744.1145,Naphtha combustion consumption by agriculture machines,AR-A,SESCO,annual,kg,1d8d9745-8ea4-3321-9a3f-bc8a4484b148 +2016,Salta,II.5.1,0.719565,TJ,CH4,0.5,kg/TJ,0.3597825,Naphtha combustion consumption by agriculture machines,AR-A,SESCO,annual,kg,ce2aecb3-b798-3fcb-bf07-7c923fe062c5 +2016,Salta,II.5.1,0.719565,TJ,N2O,2.0,kg/TJ,1.43913,Naphtha combustion consumption by agriculture machines,AR-A,SESCO,annual,kg,cfcf733e-1d9f-39a0-8513-b681b15e4317 +2016,Santa Fe,II.5.1,48.279385,TJ,CO2,73300.0,kg/TJ,3538878.9205,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,b70d0f7d-96a7-3e5a-8bb8-49f39013e35e +2016,Santa Fe,II.5.1,48.279385,TJ,CH4,0.5,kg/TJ,24.1396925,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,1e1433b3-4113-385a-8386-fbf20c8bbd4d +2016,Santa Fe,II.5.1,48.279385,TJ,N2O,2.0,kg/TJ,96.55877,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,e8203bcd-0f27-3612-9f05-2dc997af7f34 +2016,Santa Fe,II.5.1,0.925155,TJ,CO2,73300.0,kg/TJ,67813.8615,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,aa66d526-d202-351c-aa43-0a5d05cddbb8 +2016,Santa Fe,II.5.1,0.925155,TJ,CH4,0.5,kg/TJ,0.4625775,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,c2f11ff7-dc34-344f-b439-ec5e7a85cf87 +2016,Santa Fe,II.5.1,0.925155,TJ,N2O,2.0,kg/TJ,1.85031,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,b87c1a40-3685-344f-957a-b05b93553f4a +2016,Buenos Aires,II.1.1,8246.99064,TJ,CO2,74100.0,kg/TJ,611102006.424,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,6986b955-acd8-3368-8668-b5897f13e7ad +2016,Buenos Aires,II.1.1,8246.99064,TJ,CH4,3.9,kg/TJ,32163.263496,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,fa723d7b-1d91-39d8-bca7-8a11cae4f94a +2016,Buenos Aires,II.1.1,8246.99064,TJ,N2O,3.9,kg/TJ,32163.263496,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,fa723d7b-1d91-39d8-bca7-8a11cae4f94a +2016,Capital Federal,II.1.1,3331.9977599999997,TJ,CO2,74100.0,kg/TJ,246901034.01599997,Gas Oil combustion consumption by freight transport,AR-C,SESCO,annual,kg,71cab15c-5e3e-3dd2-a5a4-3c6201c172e7 +2016,Capital Federal,II.1.1,3331.9977599999997,TJ,CH4,3.9,kg/TJ,12994.791264,Gas Oil combustion consumption by freight transport,AR-C,SESCO,annual,kg,099b9e71-a6b3-3dbf-a334-021269106704 +2016,Capital Federal,II.1.1,3331.9977599999997,TJ,N2O,3.9,kg/TJ,12994.791264,Gas Oil combustion consumption by freight transport,AR-C,SESCO,annual,kg,099b9e71-a6b3-3dbf-a334-021269106704 +2016,Catamarca,II.1.1,15.60384,TJ,CO2,74100.0,kg/TJ,1156244.544,Gas Oil combustion consumption by freight transport,AR-K,SESCO,annual,kg,4070cc4d-e6d5-3e9d-831c-1500895284e2 +2016,Catamarca,II.1.1,15.60384,TJ,CH4,3.9,kg/TJ,60.854976,Gas Oil combustion consumption by freight transport,AR-K,SESCO,annual,kg,edd990f0-dfa0-3f49-828a-990153bfa0f9 +2016,Catamarca,II.1.1,15.60384,TJ,N2O,3.9,kg/TJ,60.854976,Gas Oil combustion consumption by freight transport,AR-K,SESCO,annual,kg,edd990f0-dfa0-3f49-828a-990153bfa0f9 +2016,Chaco,II.1.1,219.06779999999998,TJ,CO2,74100.0,kg/TJ,16232923.979999999,Gas Oil combustion consumption by freight transport,AR-H,SESCO,annual,kg,0ec12341-be38-3141-be73-27523841aa4b +2016,Chaco,II.1.1,219.06779999999998,TJ,CH4,3.9,kg/TJ,854.3644199999999,Gas Oil combustion consumption by freight transport,AR-H,SESCO,annual,kg,23cdee32-8c79-3cf8-8b06-5b6fe09a66d6 +2016,Chaco,II.1.1,219.06779999999998,TJ,N2O,3.9,kg/TJ,854.3644199999999,Gas Oil combustion consumption by freight transport,AR-H,SESCO,annual,kg,23cdee32-8c79-3cf8-8b06-5b6fe09a66d6 +2016,Chubut,II.1.1,207.69,TJ,CO2,74100.0,kg/TJ,15389829.0,Gas Oil combustion consumption by freight transport,AR-U,SESCO,annual,kg,2f2d04ae-bf42-311b-ada2-1e0b589b5d80 +2016,Chubut,II.1.1,207.69,TJ,CH4,3.9,kg/TJ,809.991,Gas Oil combustion consumption by freight transport,AR-U,SESCO,annual,kg,d161d5c9-27c1-3c11-b096-b8188a8ddf02 +2016,Chubut,II.1.1,207.69,TJ,N2O,3.9,kg/TJ,809.991,Gas Oil combustion consumption by freight transport,AR-U,SESCO,annual,kg,d161d5c9-27c1-3c11-b096-b8188a8ddf02 +2016,Corrientes,II.1.1,214.84176,TJ,CO2,74100.0,kg/TJ,15919774.416,Gas Oil combustion consumption by freight transport,AR-W,SESCO,annual,kg,a6143878-7d3f-382f-89e7-f5a1a03af974 +2016,Corrientes,II.1.1,214.84176,TJ,CH4,3.9,kg/TJ,837.8828639999999,Gas Oil combustion consumption by freight transport,AR-W,SESCO,annual,kg,6e3908c1-9433-3dc2-a044-32cdbeb202ff +2016,Corrientes,II.1.1,214.84176,TJ,N2O,3.9,kg/TJ,837.8828639999999,Gas Oil combustion consumption by freight transport,AR-W,SESCO,annual,kg,6e3908c1-9433-3dc2-a044-32cdbeb202ff +2016,Córdoba,II.1.1,2025.57348,TJ,CO2,74100.0,kg/TJ,150094994.868,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,b8d89750-1ef6-3735-ac57-7b269cfe7edc +2016,Córdoba,II.1.1,2025.57348,TJ,CH4,3.9,kg/TJ,7899.736572,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,52e6de84-4411-3ee3-86b8-8ba238620d1b +2016,Córdoba,II.1.1,2025.57348,TJ,N2O,3.9,kg/TJ,7899.736572,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,52e6de84-4411-3ee3-86b8-8ba238620d1b +2016,Entre Rios,II.1.1,350.7252,TJ,CO2,74100.0,kg/TJ,25988737.319999997,Gas Oil combustion consumption by freight transport,AR-E,SESCO,annual,kg,c26df134-69e5-3b03-b7b8-0206d8d36667 +2016,Entre Rios,II.1.1,350.7252,TJ,CH4,3.9,kg/TJ,1367.82828,Gas Oil combustion consumption by freight transport,AR-E,SESCO,annual,kg,5f67a2e7-ace0-3e78-890d-1e7eff54d71c +2016,Entre Rios,II.1.1,350.7252,TJ,N2O,3.9,kg/TJ,1367.82828,Gas Oil combustion consumption by freight transport,AR-E,SESCO,annual,kg,5f67a2e7-ace0-3e78-890d-1e7eff54d71c +2016,Formosa,II.1.1,1.9143599999999998,TJ,CO2,74100.0,kg/TJ,141854.076,Gas Oil combustion consumption by freight transport,AR-P,SESCO,annual,kg,3ae1cba5-102f-3511-8ac9-9961f581c23a +2016,Formosa,II.1.1,1.9143599999999998,TJ,CH4,3.9,kg/TJ,7.466003999999999,Gas Oil combustion consumption by freight transport,AR-P,SESCO,annual,kg,4d6a0050-0d99-3aa4-a2ce-7764a472210b +2016,Formosa,II.1.1,1.9143599999999998,TJ,N2O,3.9,kg/TJ,7.466003999999999,Gas Oil combustion consumption by freight transport,AR-P,SESCO,annual,kg,4d6a0050-0d99-3aa4-a2ce-7764a472210b +2016,Jujuy,II.1.1,81.81179999999999,TJ,CO2,74100.0,kg/TJ,6062254.379999999,Gas Oil combustion consumption by freight transport,AR-Y,SESCO,annual,kg,ccc4b43e-b85c-3c1c-826f-de8ea4357329 +2016,Jujuy,II.1.1,81.81179999999999,TJ,CH4,3.9,kg/TJ,319.06602,Gas Oil combustion consumption by freight transport,AR-Y,SESCO,annual,kg,b65754c9-caef-3db6-9492-c6f1185823e4 +2016,Jujuy,II.1.1,81.81179999999999,TJ,N2O,3.9,kg/TJ,319.06602,Gas Oil combustion consumption by freight transport,AR-Y,SESCO,annual,kg,b65754c9-caef-3db6-9492-c6f1185823e4 +2016,La Pampa,II.1.1,59.7786,TJ,CO2,74100.0,kg/TJ,4429594.26,Gas Oil combustion consumption by freight transport,AR-L,SESCO,annual,kg,d09d46e6-3b3b-3bbf-aa49-915c16743a38 +2016,La Pampa,II.1.1,59.7786,TJ,CH4,3.9,kg/TJ,233.13654,Gas Oil combustion consumption by freight transport,AR-L,SESCO,annual,kg,2ba8fff1-11f1-396f-93f1-1c6321bf76d7 +2016,La Pampa,II.1.1,59.7786,TJ,N2O,3.9,kg/TJ,233.13654,Gas Oil combustion consumption by freight transport,AR-L,SESCO,annual,kg,2ba8fff1-11f1-396f-93f1-1c6321bf76d7 +2016,La Rioja,II.1.1,2.2033199999999997,TJ,CO2,74100.0,kg/TJ,163266.012,Gas Oil combustion consumption by freight transport,AR-F,SESCO,annual,kg,68983f7c-c07f-3420-bed4-3edd3784b9d9 +2016,La Rioja,II.1.1,2.2033199999999997,TJ,CH4,3.9,kg/TJ,8.592947999999998,Gas Oil combustion consumption by freight transport,AR-F,SESCO,annual,kg,6f7cf308-a607-31fa-a387-823a5b9afb60 +2016,La Rioja,II.1.1,2.2033199999999997,TJ,N2O,3.9,kg/TJ,8.592947999999998,Gas Oil combustion consumption by freight transport,AR-F,SESCO,annual,kg,6f7cf308-a607-31fa-a387-823a5b9afb60 +2016,Mendoza,II.1.1,1451.1571199999998,TJ,CO2,74100.0,kg/TJ,107530742.592,Gas Oil combustion consumption by freight transport,AR-M,SESCO,annual,kg,1ef53ee4-5e91-32f6-a109-e16015f727a7 +2016,Mendoza,II.1.1,1451.1571199999998,TJ,CH4,3.9,kg/TJ,5659.512768,Gas Oil combustion consumption by freight transport,AR-M,SESCO,annual,kg,87b8a66b-fb2f-376e-9c36-076a1d49050a +2016,Mendoza,II.1.1,1451.1571199999998,TJ,N2O,3.9,kg/TJ,5659.512768,Gas Oil combustion consumption by freight transport,AR-M,SESCO,annual,kg,87b8a66b-fb2f-376e-9c36-076a1d49050a +2016,Misiones,II.1.1,575.82504,TJ,CO2,74100.0,kg/TJ,42668635.463999994,Gas Oil combustion consumption by freight transport,AR-N,SESCO,annual,kg,8970e668-6361-31ed-8320-b30518eaea64 +2016,Misiones,II.1.1,575.82504,TJ,CH4,3.9,kg/TJ,2245.717656,Gas Oil combustion consumption by freight transport,AR-N,SESCO,annual,kg,e55c6110-17b2-316a-bc46-d52ec554f3b1 +2016,Misiones,II.1.1,575.82504,TJ,N2O,3.9,kg/TJ,2245.717656,Gas Oil combustion consumption by freight transport,AR-N,SESCO,annual,kg,e55c6110-17b2-316a-bc46-d52ec554f3b1 +2016,Neuquén,II.1.1,972.02532,TJ,CO2,74100.0,kg/TJ,72027076.212,Gas Oil combustion consumption by freight transport,AR-Q,SESCO,annual,kg,995abab9-6d2c-3871-aa71-acb696a05b0a +2016,Neuquén,II.1.1,972.02532,TJ,CH4,3.9,kg/TJ,3790.8987479999996,Gas Oil combustion consumption by freight transport,AR-Q,SESCO,annual,kg,ada7c9cb-5df9-35bf-b6f6-3abfdf029720 +2016,Neuquén,II.1.1,972.02532,TJ,N2O,3.9,kg/TJ,3790.8987479999996,Gas Oil combustion consumption by freight transport,AR-Q,SESCO,annual,kg,ada7c9cb-5df9-35bf-b6f6-3abfdf029720 +2016,Rio Negro,II.1.1,192.84467999999998,TJ,CO2,74100.0,kg/TJ,14289790.787999999,Gas Oil combustion consumption by freight transport,AR-R,SESCO,annual,kg,8c00a24e-e781-3309-920c-2221767d0c7f +2016,Rio Negro,II.1.1,192.84467999999998,TJ,CH4,3.9,kg/TJ,752.0942519999999,Gas Oil combustion consumption by freight transport,AR-R,SESCO,annual,kg,e6e9b266-380b-33e5-a401-e1c034d56edd +2016,Rio Negro,II.1.1,192.84467999999998,TJ,N2O,3.9,kg/TJ,752.0942519999999,Gas Oil combustion consumption by freight transport,AR-R,SESCO,annual,kg,e6e9b266-380b-33e5-a401-e1c034d56edd +2016,Salta,II.1.1,238.42811999999998,TJ,CO2,74100.0,kg/TJ,17667523.691999998,Gas Oil combustion consumption by freight transport,AR-A,SESCO,annual,kg,11a62aff-2b4a-3136-b5cf-632c008badb9 +2016,Salta,II.1.1,238.42811999999998,TJ,CH4,3.9,kg/TJ,929.8696679999999,Gas Oil combustion consumption by freight transport,AR-A,SESCO,annual,kg,a85e4d1d-db06-33a1-8d75-eef0aab325c9 +2016,Salta,II.1.1,238.42811999999998,TJ,N2O,3.9,kg/TJ,929.8696679999999,Gas Oil combustion consumption by freight transport,AR-A,SESCO,annual,kg,a85e4d1d-db06-33a1-8d75-eef0aab325c9 +2016,San Juan,II.1.1,67.03872,TJ,CO2,74100.0,kg/TJ,4967569.152,Gas Oil combustion consumption by freight transport,AR-J,SESCO,annual,kg,7d3c2542-0f80-3bc4-ae5a-91208e729854 +2016,San Juan,II.1.1,67.03872,TJ,CH4,3.9,kg/TJ,261.451008,Gas Oil combustion consumption by freight transport,AR-J,SESCO,annual,kg,1c5f4a32-88ec-318a-8faa-0611b76e2816 +2016,San Juan,II.1.1,67.03872,TJ,N2O,3.9,kg/TJ,261.451008,Gas Oil combustion consumption by freight transport,AR-J,SESCO,annual,kg,1c5f4a32-88ec-318a-8faa-0611b76e2816 +2016,San Luis,II.1.1,121.11036,TJ,CO2,74100.0,kg/TJ,8974277.676,Gas Oil combustion consumption by freight transport,AR-D,SESCO,annual,kg,2a2b146e-aa07-3870-88c5-faa0dd6b4c18 +2016,San Luis,II.1.1,121.11036,TJ,CH4,3.9,kg/TJ,472.330404,Gas Oil combustion consumption by freight transport,AR-D,SESCO,annual,kg,5b943b7b-99a3-3dba-a4cd-e58f4142341e +2016,San Luis,II.1.1,121.11036,TJ,N2O,3.9,kg/TJ,472.330404,Gas Oil combustion consumption by freight transport,AR-D,SESCO,annual,kg,5b943b7b-99a3-3dba-a4cd-e58f4142341e +2016,Santa Cruz,II.1.1,90.6612,TJ,CO2,74100.0,kg/TJ,6717994.92,Gas Oil combustion consumption by freight transport,AR-Z,SESCO,annual,kg,cb736609-9b64-3aa2-a3e2-24475f7b9070 +2016,Santa Cruz,II.1.1,90.6612,TJ,CH4,3.9,kg/TJ,353.57867999999996,Gas Oil combustion consumption by freight transport,AR-Z,SESCO,annual,kg,f798ea6c-8008-37dd-8bf9-7453a7b60693 +2016,Santa Cruz,II.1.1,90.6612,TJ,N2O,3.9,kg/TJ,353.57867999999996,Gas Oil combustion consumption by freight transport,AR-Z,SESCO,annual,kg,f798ea6c-8008-37dd-8bf9-7453a7b60693 +2016,Santa Fe,II.1.1,2135.99232,TJ,CO2,74100.0,kg/TJ,158277030.912,Gas Oil combustion consumption by freight transport,AR-S,SESCO,annual,kg,0f92c100-7a61-3c63-acfb-01fb1a7016ff +2016,Santa Fe,II.1.1,2135.99232,TJ,CH4,3.9,kg/TJ,8330.370047999999,Gas Oil combustion consumption by freight transport,AR-S,SESCO,annual,kg,4b5824ed-a400-32b6-b5ed-90e418acb608 +2016,Santa Fe,II.1.1,2135.99232,TJ,N2O,3.9,kg/TJ,8330.370047999999,Gas Oil combustion consumption by freight transport,AR-S,SESCO,annual,kg,4b5824ed-a400-32b6-b5ed-90e418acb608 +2016,Santiago del Estero,II.1.1,125.19192,TJ,CO2,74100.0,kg/TJ,9276721.272,Gas Oil combustion consumption by freight transport,AR-G,SESCO,annual,kg,14cd6f6e-37d1-376b-9486-06e637e572ba +2016,Santiago del Estero,II.1.1,125.19192,TJ,CH4,3.9,kg/TJ,488.24848799999995,Gas Oil combustion consumption by freight transport,AR-G,SESCO,annual,kg,ba7100bf-e54f-34c7-a669-2db2604fb9c1 +2016,Santiago del Estero,II.1.1,125.19192,TJ,N2O,3.9,kg/TJ,488.24848799999995,Gas Oil combustion consumption by freight transport,AR-G,SESCO,annual,kg,ba7100bf-e54f-34c7-a669-2db2604fb9c1 +2016,Tierra del Fuego,II.1.1,26.837159999999997,TJ,CO2,74100.0,kg/TJ,1988633.5559999999,Gas Oil combustion consumption by freight transport,AR-V,SESCO,annual,kg,090d2ab9-4213-3c99-aa1a-d0c148403f95 +2016,Tierra del Fuego,II.1.1,26.837159999999997,TJ,CH4,3.9,kg/TJ,104.66492399999998,Gas Oil combustion consumption by freight transport,AR-V,SESCO,annual,kg,b8f6652a-8c44-360a-b84b-c0e9a30c59f1 +2016,Tierra del Fuego,II.1.1,26.837159999999997,TJ,N2O,3.9,kg/TJ,104.66492399999998,Gas Oil combustion consumption by freight transport,AR-V,SESCO,annual,kg,b8f6652a-8c44-360a-b84b-c0e9a30c59f1 +2016,Tucuman,II.1.1,351.77268,TJ,CO2,74100.0,kg/TJ,26066355.588,Gas Oil combustion consumption by freight transport,AR-T,SESCO,annual,kg,199c2f45-3121-3f50-bcb9-6bbc81e3d507 +2016,Tucuman,II.1.1,351.77268,TJ,CH4,3.9,kg/TJ,1371.9134519999998,Gas Oil combustion consumption by freight transport,AR-T,SESCO,annual,kg,9e2518cc-f813-3768-bb65-51b985f04895 +2016,Tucuman,II.1.1,351.77268,TJ,N2O,3.9,kg/TJ,1371.9134519999998,Gas Oil combustion consumption by freight transport,AR-T,SESCO,annual,kg,9e2518cc-f813-3768-bb65-51b985f04895 +2016,Buenos Aires,II.1.1,667.20864,TJ,CO2,74100.0,kg/TJ,49440160.224,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,06d195a2-32c8-34eb-b912-f3e0564cc9bc +2016,Buenos Aires,II.1.1,667.20864,TJ,CH4,3.9,kg/TJ,2602.113696,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,e5583d67-f480-3693-8e06-5883d7de4e33 +2016,Buenos Aires,II.1.1,667.20864,TJ,N2O,3.9,kg/TJ,2602.113696,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,e5583d67-f480-3693-8e06-5883d7de4e33 +2016,Capital Federal,II.1.1,955.0128,TJ,CO2,74100.0,kg/TJ,70766448.48,Gas Oil combustion consumption by freight transport,AR-C,SESCO,annual,kg,ded8c87a-995f-3d47-b710-1ec077e8e7c6 +2016,Capital Federal,II.1.1,955.0128,TJ,CH4,3.9,kg/TJ,3724.54992,Gas Oil combustion consumption by freight transport,AR-C,SESCO,annual,kg,0a4111c0-79b6-3195-8fef-754f66519fe5 +2016,Capital Federal,II.1.1,955.0128,TJ,N2O,3.9,kg/TJ,3724.54992,Gas Oil combustion consumption by freight transport,AR-C,SESCO,annual,kg,0a4111c0-79b6-3195-8fef-754f66519fe5 +2016,Chaco,II.1.1,31.46052,TJ,CO2,74100.0,kg/TJ,2331224.532,Gas Oil combustion consumption by freight transport,AR-H,SESCO,annual,kg,66286718-d044-3e3b-a5ba-729b50377f72 +2016,Chaco,II.1.1,31.46052,TJ,CH4,3.9,kg/TJ,122.696028,Gas Oil combustion consumption by freight transport,AR-H,SESCO,annual,kg,bb0de27f-d8f2-3178-a651-8001c31a721e +2016,Chaco,II.1.1,31.46052,TJ,N2O,3.9,kg/TJ,122.696028,Gas Oil combustion consumption by freight transport,AR-H,SESCO,annual,kg,bb0de27f-d8f2-3178-a651-8001c31a721e +2016,Chubut,II.1.1,50.748599999999996,TJ,CO2,74100.0,kg/TJ,3760471.26,Gas Oil combustion consumption by freight transport,AR-U,SESCO,annual,kg,7d7f52d7-e7de-39b1-be17-0bfdfe35dab7 +2016,Chubut,II.1.1,50.748599999999996,TJ,CH4,3.9,kg/TJ,197.91953999999998,Gas Oil combustion consumption by freight transport,AR-U,SESCO,annual,kg,48d8ba8e-2daf-34e3-8bf2-115b33beb1b2 +2016,Chubut,II.1.1,50.748599999999996,TJ,N2O,3.9,kg/TJ,197.91953999999998,Gas Oil combustion consumption by freight transport,AR-U,SESCO,annual,kg,48d8ba8e-2daf-34e3-8bf2-115b33beb1b2 +2016,Corrientes,II.1.1,20.48004,TJ,CO2,74100.0,kg/TJ,1517570.964,Gas Oil combustion consumption by freight transport,AR-W,SESCO,annual,kg,c1ed515c-1694-3bd0-9c0c-c3339bf25876 +2016,Corrientes,II.1.1,20.48004,TJ,CH4,3.9,kg/TJ,79.87215599999999,Gas Oil combustion consumption by freight transport,AR-W,SESCO,annual,kg,80f7828f-2167-32d5-a25f-a14e1c8be148 +2016,Corrientes,II.1.1,20.48004,TJ,N2O,3.9,kg/TJ,79.87215599999999,Gas Oil combustion consumption by freight transport,AR-W,SESCO,annual,kg,80f7828f-2167-32d5-a25f-a14e1c8be148 +2016,Córdoba,II.1.1,33.5916,TJ,CO2,74100.0,kg/TJ,2489137.56,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,880b3d56-d2c5-3965-9371-50ab678cf7d4 +2016,Córdoba,II.1.1,33.5916,TJ,CH4,3.9,kg/TJ,131.00724,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,731927cc-a029-392a-9690-3c8e8384fe8e +2016,Córdoba,II.1.1,33.5916,TJ,N2O,3.9,kg/TJ,131.00724,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,731927cc-a029-392a-9690-3c8e8384fe8e +2016,Entre Rios,II.1.1,23.441879999999998,TJ,CO2,74100.0,kg/TJ,1737043.3079999997,Gas Oil combustion consumption by freight transport,AR-E,SESCO,annual,kg,f4800dba-5f5a-397c-a278-394a1073bbf3 +2016,Entre Rios,II.1.1,23.441879999999998,TJ,CH4,3.9,kg/TJ,91.42333199999999,Gas Oil combustion consumption by freight transport,AR-E,SESCO,annual,kg,b1f93a49-3deb-36bd-af2c-6503e7087175 +2016,Entre Rios,II.1.1,23.441879999999998,TJ,N2O,3.9,kg/TJ,91.42333199999999,Gas Oil combustion consumption by freight transport,AR-E,SESCO,annual,kg,b1f93a49-3deb-36bd-af2c-6503e7087175 +2016,Formosa,II.1.1,0.50568,TJ,CO2,74100.0,kg/TJ,37470.888,Gas Oil combustion consumption by freight transport,AR-P,SESCO,annual,kg,2414251f-b129-33ed-999e-1e583acfab98 +2016,Formosa,II.1.1,0.50568,TJ,CH4,3.9,kg/TJ,1.9721520000000001,Gas Oil combustion consumption by freight transport,AR-P,SESCO,annual,kg,0ab8a1ee-c755-3d6f-b804-eed5a6e78006 +2016,Formosa,II.1.1,0.50568,TJ,N2O,3.9,kg/TJ,1.9721520000000001,Gas Oil combustion consumption by freight transport,AR-P,SESCO,annual,kg,0ab8a1ee-c755-3d6f-b804-eed5a6e78006 +2016,Jujuy,II.1.1,0.03612,TJ,CO2,74100.0,kg/TJ,2676.4919999999997,Gas Oil combustion consumption by freight transport,AR-Y,SESCO,annual,kg,3ff4451d-7617-3b97-a080-eaa02a384379 +2016,Jujuy,II.1.1,0.03612,TJ,CH4,3.9,kg/TJ,0.140868,Gas Oil combustion consumption by freight transport,AR-Y,SESCO,annual,kg,6f4c9fad-dbde-38f3-a1fc-be6512e67ea9 +2016,Jujuy,II.1.1,0.03612,TJ,N2O,3.9,kg/TJ,0.140868,Gas Oil combustion consumption by freight transport,AR-Y,SESCO,annual,kg,6f4c9fad-dbde-38f3-a1fc-be6512e67ea9 +2016,La Pampa,II.1.1,0.8307599999999999,TJ,CO2,74100.0,kg/TJ,61559.316,Gas Oil combustion consumption by freight transport,AR-L,SESCO,annual,kg,f13b35ca-684b-3109-ab9e-a63adb8f1c7d +2016,La Pampa,II.1.1,0.8307599999999999,TJ,CH4,3.9,kg/TJ,3.2399639999999996,Gas Oil combustion consumption by freight transport,AR-L,SESCO,annual,kg,300d52d1-a3e3-3446-bff5-704258a12062 +2016,La Pampa,II.1.1,0.8307599999999999,TJ,N2O,3.9,kg/TJ,3.2399639999999996,Gas Oil combustion consumption by freight transport,AR-L,SESCO,annual,kg,300d52d1-a3e3-3446-bff5-704258a12062 +2016,La Rioja,II.1.1,4.47888,TJ,CO2,74100.0,kg/TJ,331885.00800000003,Gas Oil combustion consumption by freight transport,AR-F,SESCO,annual,kg,b276888d-87cf-3ef2-8c5c-14c4077c148b +2016,La Rioja,II.1.1,4.47888,TJ,CH4,3.9,kg/TJ,17.467632000000002,Gas Oil combustion consumption by freight transport,AR-F,SESCO,annual,kg,6a2de516-cd37-3aa3-98ee-f8d1c9546357 +2016,La Rioja,II.1.1,4.47888,TJ,N2O,3.9,kg/TJ,17.467632000000002,Gas Oil combustion consumption by freight transport,AR-F,SESCO,annual,kg,6a2de516-cd37-3aa3-98ee-f8d1c9546357 +2016,Mendoza,II.1.1,59.489639999999994,TJ,CO2,74100.0,kg/TJ,4408182.324,Gas Oil combustion consumption by freight transport,AR-M,SESCO,annual,kg,f950c731-681a-3aee-9785-fb4bcefd8995 +2016,Mendoza,II.1.1,59.489639999999994,TJ,CH4,3.9,kg/TJ,232.00959599999996,Gas Oil combustion consumption by freight transport,AR-M,SESCO,annual,kg,f3ad89fe-a650-370c-8858-f563aaeea81d +2016,Mendoza,II.1.1,59.489639999999994,TJ,N2O,3.9,kg/TJ,232.00959599999996,Gas Oil combustion consumption by freight transport,AR-M,SESCO,annual,kg,f3ad89fe-a650-370c-8858-f563aaeea81d +2016,Misiones,II.1.1,10.58316,TJ,CO2,74100.0,kg/TJ,784212.156,Gas Oil combustion consumption by freight transport,AR-N,SESCO,annual,kg,eb9fd088-f633-3325-a730-30e096be1f40 +2016,Misiones,II.1.1,10.58316,TJ,CH4,3.9,kg/TJ,41.274324,Gas Oil combustion consumption by freight transport,AR-N,SESCO,annual,kg,ecdd3f94-e8d5-3992-adea-3ad0c3bb176d +2016,Misiones,II.1.1,10.58316,TJ,N2O,3.9,kg/TJ,41.274324,Gas Oil combustion consumption by freight transport,AR-N,SESCO,annual,kg,ecdd3f94-e8d5-3992-adea-3ad0c3bb176d +2016,Neuquén,II.1.1,264.14556,TJ,CO2,74100.0,kg/TJ,19573185.996,Gas Oil combustion consumption by freight transport,AR-Q,SESCO,annual,kg,2fedbd53-3554-3e0c-8825-543c2584fe4a +2016,Neuquén,II.1.1,264.14556,TJ,CH4,3.9,kg/TJ,1030.167684,Gas Oil combustion consumption by freight transport,AR-Q,SESCO,annual,kg,53a054c5-b09a-3516-a41e-cd03c14319ba +2016,Neuquén,II.1.1,264.14556,TJ,N2O,3.9,kg/TJ,1030.167684,Gas Oil combustion consumption by freight transport,AR-Q,SESCO,annual,kg,53a054c5-b09a-3516-a41e-cd03c14319ba +2016,Rio Negro,II.1.1,11.34168,TJ,CO2,74100.0,kg/TJ,840418.488,Gas Oil combustion consumption by freight transport,AR-R,SESCO,annual,kg,b7f7517e-9c81-3800-99fa-76eb28063a0f +2016,Rio Negro,II.1.1,11.34168,TJ,CH4,3.9,kg/TJ,44.232552,Gas Oil combustion consumption by freight transport,AR-R,SESCO,annual,kg,63132229-6633-3910-80a9-62f8e82b9dce +2016,Rio Negro,II.1.1,11.34168,TJ,N2O,3.9,kg/TJ,44.232552,Gas Oil combustion consumption by freight transport,AR-R,SESCO,annual,kg,63132229-6633-3910-80a9-62f8e82b9dce +2016,Salta,II.1.1,58.695,TJ,CO2,74100.0,kg/TJ,4349299.5,Gas Oil combustion consumption by freight transport,AR-A,SESCO,annual,kg,08f95bdb-96d3-326b-a119-0602b5e3041a +2016,Salta,II.1.1,58.695,TJ,CH4,3.9,kg/TJ,228.91049999999998,Gas Oil combustion consumption by freight transport,AR-A,SESCO,annual,kg,d3262697-8456-31df-a105-fa1904714b10 +2016,Salta,II.1.1,58.695,TJ,N2O,3.9,kg/TJ,228.91049999999998,Gas Oil combustion consumption by freight transport,AR-A,SESCO,annual,kg,d3262697-8456-31df-a105-fa1904714b10 +2016,San Juan,II.1.1,3.72036,TJ,CO2,74100.0,kg/TJ,275678.676,Gas Oil combustion consumption by freight transport,AR-J,SESCO,annual,kg,3776ca81-7d84-33a3-b0f7-1dcc172c65fe +2016,San Juan,II.1.1,3.72036,TJ,CH4,3.9,kg/TJ,14.509404,Gas Oil combustion consumption by freight transport,AR-J,SESCO,annual,kg,97b0ddd0-0bda-3aa7-b9fe-e3a4bc9ac580 +2016,San Juan,II.1.1,3.72036,TJ,N2O,3.9,kg/TJ,14.509404,Gas Oil combustion consumption by freight transport,AR-J,SESCO,annual,kg,97b0ddd0-0bda-3aa7-b9fe-e3a4bc9ac580 +2016,San Luis,II.1.1,9.89688,TJ,CO2,74100.0,kg/TJ,733358.808,Gas Oil combustion consumption by freight transport,AR-D,SESCO,annual,kg,96560c11-3ae5-3cfc-85c8-eae5f091043e +2016,San Luis,II.1.1,9.89688,TJ,CH4,3.9,kg/TJ,38.597832,Gas Oil combustion consumption by freight transport,AR-D,SESCO,annual,kg,caa87d1c-f165-3a2c-9d08-b1224dadb463 +2016,San Luis,II.1.1,9.89688,TJ,N2O,3.9,kg/TJ,38.597832,Gas Oil combustion consumption by freight transport,AR-D,SESCO,annual,kg,caa87d1c-f165-3a2c-9d08-b1224dadb463 +2016,Santa Cruz,II.1.1,16.253999999999998,TJ,CO2,74100.0,kg/TJ,1204421.4,Gas Oil combustion consumption by freight transport,AR-Z,SESCO,annual,kg,5f56e896-1999-3fb9-b1bc-2e695a82d1b6 +2016,Santa Cruz,II.1.1,16.253999999999998,TJ,CH4,3.9,kg/TJ,63.39059999999999,Gas Oil combustion consumption by freight transport,AR-Z,SESCO,annual,kg,fb24c699-2351-3edb-ad0b-3fd303c4c846 +2016,Santa Cruz,II.1.1,16.253999999999998,TJ,N2O,3.9,kg/TJ,63.39059999999999,Gas Oil combustion consumption by freight transport,AR-Z,SESCO,annual,kg,fb24c699-2351-3edb-ad0b-3fd303c4c846 +2016,Santa Fe,II.1.1,194.61455999999998,TJ,CO2,74100.0,kg/TJ,14420938.895999998,Gas Oil combustion consumption by freight transport,AR-S,SESCO,annual,kg,f2019d44-e969-354f-948c-3494af2366fe +2016,Santa Fe,II.1.1,194.61455999999998,TJ,CH4,3.9,kg/TJ,758.9967839999999,Gas Oil combustion consumption by freight transport,AR-S,SESCO,annual,kg,2a4e210e-104c-377a-8353-d0f9b7f4c820 +2016,Santa Fe,II.1.1,194.61455999999998,TJ,N2O,3.9,kg/TJ,758.9967839999999,Gas Oil combustion consumption by freight transport,AR-S,SESCO,annual,kg,2a4e210e-104c-377a-8353-d0f9b7f4c820 +2016,Santiago del Estero,II.1.1,0.14448,TJ,CO2,74100.0,kg/TJ,10705.967999999999,Gas Oil combustion consumption by freight transport,AR-G,SESCO,annual,kg,0c9eec92-5f57-3a80-a23b-d2c783e39929 +2016,Santiago del Estero,II.1.1,0.14448,TJ,CH4,3.9,kg/TJ,0.563472,Gas Oil combustion consumption by freight transport,AR-G,SESCO,annual,kg,3a321140-ea17-3d62-bf1c-3271d4d13d27 +2016,Santiago del Estero,II.1.1,0.14448,TJ,N2O,3.9,kg/TJ,0.563472,Gas Oil combustion consumption by freight transport,AR-G,SESCO,annual,kg,3a321140-ea17-3d62-bf1c-3271d4d13d27 +2016,Tierra del Fuego,II.1.1,6.790559999999999,TJ,CO2,74100.0,kg/TJ,503180.4959999999,Gas Oil combustion consumption by freight transport,AR-V,SESCO,annual,kg,a2d497bb-cf18-371c-ab2e-c51293bda012 +2016,Tierra del Fuego,II.1.1,6.790559999999999,TJ,CH4,3.9,kg/TJ,26.483183999999998,Gas Oil combustion consumption by freight transport,AR-V,SESCO,annual,kg,f9269161-ceec-3544-90d5-89ef35f427f2 +2016,Tierra del Fuego,II.1.1,6.790559999999999,TJ,N2O,3.9,kg/TJ,26.483183999999998,Gas Oil combustion consumption by freight transport,AR-V,SESCO,annual,kg,f9269161-ceec-3544-90d5-89ef35f427f2 +2016,Tucuman,II.1.1,12.642,TJ,CO2,74100.0,kg/TJ,936772.2,Gas Oil combustion consumption by freight transport,AR-T,SESCO,annual,kg,de54f55a-7550-38ef-93f1-a6ec2596d9a3 +2016,Tucuman,II.1.1,12.642,TJ,CH4,3.9,kg/TJ,49.303799999999995,Gas Oil combustion consumption by freight transport,AR-T,SESCO,annual,kg,02b0084c-1723-3316-8067-2434633fc9bb +2016,Tucuman,II.1.1,12.642,TJ,N2O,3.9,kg/TJ,49.303799999999995,Gas Oil combustion consumption by freight transport,AR-T,SESCO,annual,kg,02b0084c-1723-3316-8067-2434633fc9bb +2016,Buenos Aires,II.1.1,239.82073499999998,TJ,CO2,73300.0,kg/TJ,17578859.875499997,Naphtha combustion consumption by freight transport,AR-B,SESCO,annual,kg,2ee874e4-311f-305d-afcc-bd176ae04a70 +2016,Buenos Aires,II.1.1,239.82073499999998,TJ,CH4,0.5,kg/TJ,119.91036749999999,Naphtha combustion consumption by freight transport,AR-B,SESCO,annual,kg,a22335c5-e28a-3e9e-97a2-09e07f998800 +2016,Buenos Aires,II.1.1,239.82073499999998,TJ,N2O,2.0,kg/TJ,479.64146999999997,Naphtha combustion consumption by freight transport,AR-B,SESCO,annual,kg,5795c619-9d89-38a8-a0c8-124bd305c885 +2016,Capital Federal,II.1.1,251.71069,TJ,CO2,73300.0,kg/TJ,18450393.577,Naphtha combustion consumption by freight transport,AR-C,SESCO,annual,kg,ef842529-ec23-3c4a-aa4b-0f9edc1b8bde +2016,Capital Federal,II.1.1,251.71069,TJ,CH4,0.5,kg/TJ,125.855345,Naphtha combustion consumption by freight transport,AR-C,SESCO,annual,kg,68c8c200-1201-3562-9f1f-3fbb30f90a2c +2016,Capital Federal,II.1.1,251.71069,TJ,N2O,2.0,kg/TJ,503.42138,Naphtha combustion consumption by freight transport,AR-C,SESCO,annual,kg,2f8c8f4e-9451-3590-bc13-ef1dc5b46eae +2016,Chaco,II.1.1,8.42919,TJ,CO2,73300.0,kg/TJ,617859.627,Naphtha combustion consumption by freight transport,AR-H,SESCO,annual,kg,4ce9cbe2-9825-31de-bb23-f9d3a16ecc78 +2016,Chaco,II.1.1,8.42919,TJ,CH4,0.5,kg/TJ,4.214595,Naphtha combustion consumption by freight transport,AR-H,SESCO,annual,kg,d2e34c52-9f4a-3d4e-be2e-8c88f6571b98 +2016,Chaco,II.1.1,8.42919,TJ,N2O,2.0,kg/TJ,16.85838,Naphtha combustion consumption by freight transport,AR-H,SESCO,annual,kg,32a3a10c-bd69-3742-bf9c-b510dceaeb3d +2016,Chubut,II.1.1,1.64472,TJ,CO2,73300.0,kg/TJ,120557.976,Naphtha combustion consumption by freight transport,AR-U,SESCO,annual,kg,06cbee01-5a0a-33fd-984e-cb1dde4e5b03 +2016,Chubut,II.1.1,1.64472,TJ,CH4,0.5,kg/TJ,0.82236,Naphtha combustion consumption by freight transport,AR-U,SESCO,annual,kg,7f6ab127-c1a5-32f3-8fe9-de03069f5d64 +2016,Chubut,II.1.1,1.64472,TJ,N2O,2.0,kg/TJ,3.28944,Naphtha combustion consumption by freight transport,AR-U,SESCO,annual,kg,47915499-acee-3bed-84a4-fcf5ccb17f82 +2016,Corrientes,II.1.1,1.3020699999999998,TJ,CO2,73300.0,kg/TJ,95441.73099999999,Naphtha combustion consumption by freight transport,AR-W,SESCO,annual,kg,284df138-a9c5-34c8-956d-553ad6af1afe +2016,Corrientes,II.1.1,1.3020699999999998,TJ,CH4,0.5,kg/TJ,0.6510349999999999,Naphtha combustion consumption by freight transport,AR-W,SESCO,annual,kg,fce74ab2-9e5e-361c-ae5c-8be4a2935a33 +2016,Corrientes,II.1.1,1.3020699999999998,TJ,N2O,2.0,kg/TJ,2.6041399999999997,Naphtha combustion consumption by freight transport,AR-W,SESCO,annual,kg,0dc0dff5-071c-3c07-abd2-c3cdb105a8ea +2016,Córdoba,II.1.1,6.476084999999999,TJ,CO2,73300.0,kg/TJ,474697.03049999994,Naphtha combustion consumption by freight transport,AR-X,SESCO,annual,kg,6fae181b-a1aa-36c7-836c-01b94fcb9fc3 +2016,Córdoba,II.1.1,6.476084999999999,TJ,CH4,0.5,kg/TJ,3.2380424999999997,Naphtha combustion consumption by freight transport,AR-X,SESCO,annual,kg,a2cf52ec-8cb5-3cdc-a7ef-04dc48325a68 +2016,Córdoba,II.1.1,6.476084999999999,TJ,N2O,2.0,kg/TJ,12.952169999999999,Naphtha combustion consumption by freight transport,AR-X,SESCO,annual,kg,fbeb3ccd-2f50-3c3c-ad72-482bab689cb3 +2016,Entre Rios,II.1.1,2.090165,TJ,CO2,73300.0,kg/TJ,153209.09449999998,Naphtha combustion consumption by freight transport,AR-E,SESCO,annual,kg,c9c7a32f-a154-39f9-a00e-7ef96d379f90 +2016,Entre Rios,II.1.1,2.090165,TJ,CH4,0.5,kg/TJ,1.0450825,Naphtha combustion consumption by freight transport,AR-E,SESCO,annual,kg,d1df743a-059f-3428-b424-57ad023468f1 +2016,Entre Rios,II.1.1,2.090165,TJ,N2O,2.0,kg/TJ,4.18033,Naphtha combustion consumption by freight transport,AR-E,SESCO,annual,kg,c290d7c5-d339-30ae-b655-be4751b89f7e +2016,Formosa,II.1.1,0.13706,TJ,CO2,73300.0,kg/TJ,10046.498,Naphtha combustion consumption by freight transport,AR-P,SESCO,annual,kg,46609bb6-bd57-32c4-9052-6918c41ef667 +2016,Formosa,II.1.1,0.13706,TJ,CH4,0.5,kg/TJ,0.06853,Naphtha combustion consumption by freight transport,AR-P,SESCO,annual,kg,1f38cba7-5564-3737-b849-cf14cca58c97 +2016,Formosa,II.1.1,0.13706,TJ,N2O,2.0,kg/TJ,0.27412,Naphtha combustion consumption by freight transport,AR-P,SESCO,annual,kg,f234c087-4033-3a6c-b846-69dce6d6f575 +2016,Mendoza,II.1.1,11.067594999999999,TJ,CO2,73300.0,kg/TJ,811254.7135,Naphtha combustion consumption by freight transport,AR-M,SESCO,annual,kg,2d72f825-43fd-32ab-8a70-e656620222c3 +2016,Mendoza,II.1.1,11.067594999999999,TJ,CH4,0.5,kg/TJ,5.5337974999999995,Naphtha combustion consumption by freight transport,AR-M,SESCO,annual,kg,422283ff-c5cc-3816-93d8-5439715e8b4a +2016,Mendoza,II.1.1,11.067594999999999,TJ,N2O,2.0,kg/TJ,22.135189999999998,Naphtha combustion consumption by freight transport,AR-M,SESCO,annual,kg,391a9d6b-17de-382b-ace3-84ce99701250 +2016,Misiones,II.1.1,0.719565,TJ,CO2,73300.0,kg/TJ,52744.1145,Naphtha combustion consumption by freight transport,AR-N,SESCO,annual,kg,7df5f495-8de3-3341-9ecb-b5c3e66e7bb2 +2016,Misiones,II.1.1,0.719565,TJ,CH4,0.5,kg/TJ,0.3597825,Naphtha combustion consumption by freight transport,AR-N,SESCO,annual,kg,5a0457d8-ae37-32a0-8616-6cfc115cb98d +2016,Misiones,II.1.1,0.719565,TJ,N2O,2.0,kg/TJ,1.43913,Naphtha combustion consumption by freight transport,AR-N,SESCO,annual,kg,380f03d7-3eba-3487-b677-c7857882283d +2016,Neuquén,II.1.1,1.816045,TJ,CO2,73300.0,kg/TJ,133116.0985,Naphtha combustion consumption by freight transport,AR-Q,SESCO,annual,kg,a6b9f6f0-eb03-36f6-9f15-59527228fd2a +2016,Neuquén,II.1.1,1.816045,TJ,CH4,0.5,kg/TJ,0.9080225,Naphtha combustion consumption by freight transport,AR-Q,SESCO,annual,kg,7660ae57-1ed5-3156-98dc-7952876ef953 +2016,Neuquén,II.1.1,1.816045,TJ,N2O,2.0,kg/TJ,3.63209,Naphtha combustion consumption by freight transport,AR-Q,SESCO,annual,kg,8a4fd1aa-b349-3e24-aede-00582ec5b41a +2016,Rio Negro,II.1.1,1.71325,TJ,CO2,73300.0,kg/TJ,125581.22499999999,Naphtha combustion consumption by freight transport,AR-R,SESCO,annual,kg,dc76a085-45c7-3f83-b28c-41df9495561c +2016,Rio Negro,II.1.1,1.71325,TJ,CH4,0.5,kg/TJ,0.856625,Naphtha combustion consumption by freight transport,AR-R,SESCO,annual,kg,b417f5ff-31a1-3389-ac10-50baa0a38ba2 +2016,Rio Negro,II.1.1,1.71325,TJ,N2O,2.0,kg/TJ,3.4265,Naphtha combustion consumption by freight transport,AR-R,SESCO,annual,kg,ca415dce-6277-3ffd-99fd-e422b69b2e1a +2016,Salta,II.1.1,10.9648,TJ,CO2,73300.0,kg/TJ,803719.84,Naphtha combustion consumption by freight transport,AR-A,SESCO,annual,kg,3efa8a5d-43ac-3789-9dd8-dc92d53ead87 +2016,Salta,II.1.1,10.9648,TJ,CH4,0.5,kg/TJ,5.4824,Naphtha combustion consumption by freight transport,AR-A,SESCO,annual,kg,7d760185-8e43-34c1-8db7-4aa55ab12f64 +2016,Salta,II.1.1,10.9648,TJ,N2O,2.0,kg/TJ,21.9296,Naphtha combustion consumption by freight transport,AR-A,SESCO,annual,kg,192805e4-a653-3c4c-9d4b-1e5a49aa27e4 +2016,San Juan,II.1.1,0.23985499999999998,TJ,CO2,73300.0,kg/TJ,17581.371499999997,Naphtha combustion consumption by freight transport,AR-J,SESCO,annual,kg,a69908bc-a3e4-34a8-8a88-921ad686185a +2016,San Juan,II.1.1,0.23985499999999998,TJ,CH4,0.5,kg/TJ,0.11992749999999999,Naphtha combustion consumption by freight transport,AR-J,SESCO,annual,kg,a0320f1a-ae8a-3a80-b9ec-3e16c6ba1d9b +2016,San Juan,II.1.1,0.23985499999999998,TJ,N2O,2.0,kg/TJ,0.47970999999999997,Naphtha combustion consumption by freight transport,AR-J,SESCO,annual,kg,4e27daab-fd4a-3499-80c4-5e97c3372861 +2016,San Luis,II.1.1,0.41118,TJ,CO2,73300.0,kg/TJ,30139.494,Naphtha combustion consumption by freight transport,AR-D,SESCO,annual,kg,ea04c37e-6ce7-307e-88ad-259c7d1b879d +2016,San Luis,II.1.1,0.41118,TJ,CH4,0.5,kg/TJ,0.20559,Naphtha combustion consumption by freight transport,AR-D,SESCO,annual,kg,a6cbdc46-0cba-3218-8af0-a5258f70af01 +2016,San Luis,II.1.1,0.41118,TJ,N2O,2.0,kg/TJ,0.82236,Naphtha combustion consumption by freight transport,AR-D,SESCO,annual,kg,866d1f65-bd51-3b18-9db9-bbddd06abbb2 +2016,Santa Fe,II.1.1,17.989124999999998,TJ,CO2,73300.0,kg/TJ,1318602.8624999998,Naphtha combustion consumption by freight transport,AR-S,SESCO,annual,kg,c217cdb1-24e4-385b-9a4d-4c1420f1e5a0 +2016,Santa Fe,II.1.1,17.989124999999998,TJ,CH4,0.5,kg/TJ,8.994562499999999,Naphtha combustion consumption by freight transport,AR-S,SESCO,annual,kg,cb86feb4-0e4f-3ac5-b1f0-20984099c36f +2016,Santa Fe,II.1.1,17.989124999999998,TJ,N2O,2.0,kg/TJ,35.978249999999996,Naphtha combustion consumption by freight transport,AR-S,SESCO,annual,kg,b7b3ee32-8de1-3a02-88a6-061dca5794dd +2016,Santiago del Estero,II.1.1,0.13706,TJ,CO2,73300.0,kg/TJ,10046.498,Naphtha combustion consumption by freight transport,AR-G,SESCO,annual,kg,a5b1670b-cae8-3f40-959c-0f34aaa77efb +2016,Santiago del Estero,II.1.1,0.13706,TJ,CH4,0.5,kg/TJ,0.06853,Naphtha combustion consumption by freight transport,AR-G,SESCO,annual,kg,04bf7b7d-e407-3121-b429-d4ca02c2ed60 +2016,Santiago del Estero,II.1.1,0.13706,TJ,N2O,2.0,kg/TJ,0.27412,Naphtha combustion consumption by freight transport,AR-G,SESCO,annual,kg,ca644384-4d85-3238-990f-d4a17a0bf539 +2016,Tierra del Fuego,II.1.1,0.23985499999999998,TJ,CO2,73300.0,kg/TJ,17581.371499999997,Naphtha combustion consumption by freight transport,AR-V,SESCO,annual,kg,3f0dd9bc-d96b-38f5-9b4e-87eb84ea2499 +2016,Tierra del Fuego,II.1.1,0.23985499999999998,TJ,CH4,0.5,kg/TJ,0.11992749999999999,Naphtha combustion consumption by freight transport,AR-V,SESCO,annual,kg,9a9bd290-c5a6-344e-98f6-9733cbd260e6 +2016,Tierra del Fuego,II.1.1,0.23985499999999998,TJ,N2O,2.0,kg/TJ,0.47970999999999997,Naphtha combustion consumption by freight transport,AR-V,SESCO,annual,kg,a8ee0165-e81e-3e61-a291-f98e3e5e18bd +2016,Tucuman,II.1.1,2.2957549999999998,TJ,CO2,73300.0,kg/TJ,168278.84149999998,Naphtha combustion consumption by freight transport,AR-T,SESCO,annual,kg,4d2f4de9-a8e1-36bd-9e7f-a10819d0c525 +2016,Tucuman,II.1.1,2.2957549999999998,TJ,CH4,0.5,kg/TJ,1.1478774999999999,Naphtha combustion consumption by freight transport,AR-T,SESCO,annual,kg,d62126c7-2720-3037-8f48-6bc19f5e67e8 +2016,Tucuman,II.1.1,2.2957549999999998,TJ,N2O,2.0,kg/TJ,4.5915099999999995,Naphtha combustion consumption by freight transport,AR-T,SESCO,annual,kg,8e7f00c5-b67d-3352-a319-fdea7cb862be +2016,Buenos Aires,II.1.1,234.40686499999998,TJ,CO2,73300.0,kg/TJ,17182023.204499997,Naphtha combustion consumption by freight transport,AR-B,SESCO,annual,kg,3a1dd7e6-5329-3030-a78a-044682f9f49c +2016,Buenos Aires,II.1.1,234.40686499999998,TJ,CH4,0.5,kg/TJ,117.20343249999999,Naphtha combustion consumption by freight transport,AR-B,SESCO,annual,kg,d729f5b1-9f8d-3f22-b127-74d028d9ae4c +2016,Buenos Aires,II.1.1,234.40686499999998,TJ,N2O,2.0,kg/TJ,468.81372999999996,Naphtha combustion consumption by freight transport,AR-B,SESCO,annual,kg,9c054482-a3c0-31e6-ab92-625f9c44b378 +2016,Capital Federal,II.1.1,264.62859499999996,TJ,CO2,73300.0,kg/TJ,19397276.013499998,Naphtha combustion consumption by freight transport,AR-C,SESCO,annual,kg,3c46771e-e487-3ae0-af11-c2246f9298d3 +2016,Capital Federal,II.1.1,264.62859499999996,TJ,CH4,0.5,kg/TJ,132.31429749999998,Naphtha combustion consumption by freight transport,AR-C,SESCO,annual,kg,86a65edf-520a-325f-b6cd-94f124398bab +2016,Capital Federal,II.1.1,264.62859499999996,TJ,N2O,2.0,kg/TJ,529.2571899999999,Naphtha combustion consumption by freight transport,AR-C,SESCO,annual,kg,8e3d09a3-e47c-3751-87ad-bc9398a4eb75 +2016,Chaco,II.1.1,9.320079999999999,TJ,CO2,73300.0,kg/TJ,683161.864,Naphtha combustion consumption by freight transport,AR-H,SESCO,annual,kg,18763f4c-7c8b-30f0-ab69-23675a612302 +2016,Chaco,II.1.1,9.320079999999999,TJ,CH4,0.5,kg/TJ,4.6600399999999995,Naphtha combustion consumption by freight transport,AR-H,SESCO,annual,kg,f060cdf6-1207-35b2-84e4-d6df0f5c690b +2016,Chaco,II.1.1,9.320079999999999,TJ,N2O,2.0,kg/TJ,18.640159999999998,Naphtha combustion consumption by freight transport,AR-H,SESCO,annual,kg,d98e3dd2-d1ed-3335-93fb-b618dd5a769a +2016,Chubut,II.1.1,1.09648,TJ,CO2,73300.0,kg/TJ,80371.984,Naphtha combustion consumption by freight transport,AR-U,SESCO,annual,kg,0f409ab4-0e78-3fb7-a492-477d32c0f231 +2016,Chubut,II.1.1,1.09648,TJ,CH4,0.5,kg/TJ,0.54824,Naphtha combustion consumption by freight transport,AR-U,SESCO,annual,kg,5703e86e-0e54-3c0d-a2fc-751960385a8b +2016,Chubut,II.1.1,1.09648,TJ,N2O,2.0,kg/TJ,2.19296,Naphtha combustion consumption by freight transport,AR-U,SESCO,annual,kg,6ac74420-f1d8-306c-84ef-5d2c6a7e0af4 +2016,Corrientes,II.1.1,3.49503,TJ,CO2,73300.0,kg/TJ,256185.699,Naphtha combustion consumption by freight transport,AR-W,SESCO,annual,kg,63e995f7-3d3b-3bf5-b38e-c6e979875db0 +2016,Corrientes,II.1.1,3.49503,TJ,CH4,0.5,kg/TJ,1.747515,Naphtha combustion consumption by freight transport,AR-W,SESCO,annual,kg,9f14b53a-9824-3a59-bdd2-c56d460f58d1 +2016,Corrientes,II.1.1,3.49503,TJ,N2O,2.0,kg/TJ,6.99006,Naphtha combustion consumption by freight transport,AR-W,SESCO,annual,kg,92970ee7-2314-3ea2-aa84-54137c497c0d +2016,Córdoba,II.1.1,8.189335,TJ,CO2,73300.0,kg/TJ,600278.2555,Naphtha combustion consumption by freight transport,AR-X,SESCO,annual,kg,17f4b60f-c61c-3fd6-9b6a-632b8fa8f8a7 +2016,Córdoba,II.1.1,8.189335,TJ,CH4,0.5,kg/TJ,4.0946675,Naphtha combustion consumption by freight transport,AR-X,SESCO,annual,kg,ad0abb23-38b4-3163-a62e-1e25856887e8 +2016,Córdoba,II.1.1,8.189335,TJ,N2O,2.0,kg/TJ,16.37867,Naphtha combustion consumption by freight transport,AR-X,SESCO,annual,kg,c5e005bc-ff30-3359-9db0-9cc5a112e9de +2016,Entre Rios,II.1.1,3.597825,TJ,CO2,73300.0,kg/TJ,263720.5725,Naphtha combustion consumption by freight transport,AR-E,SESCO,annual,kg,8efce56e-ca50-3205-90a5-30fc95334506 +2016,Entre Rios,II.1.1,3.597825,TJ,CH4,0.5,kg/TJ,1.7989125,Naphtha combustion consumption by freight transport,AR-E,SESCO,annual,kg,a32efb6e-6bf0-3f54-903e-7a88ea07fea5 +2016,Entre Rios,II.1.1,3.597825,TJ,N2O,2.0,kg/TJ,7.19565,Naphtha combustion consumption by freight transport,AR-E,SESCO,annual,kg,f467997e-0e68-3286-bbc5-d049d80b77b7 +2016,Formosa,II.1.1,0.06853,TJ,CO2,73300.0,kg/TJ,5023.249,Naphtha combustion consumption by freight transport,AR-P,SESCO,annual,kg,711529f5-32af-3f51-ba64-bca6284ac585 +2016,Formosa,II.1.1,0.06853,TJ,CH4,0.5,kg/TJ,0.034265,Naphtha combustion consumption by freight transport,AR-P,SESCO,annual,kg,5f7bf246-c548-3a9c-80ac-ebc9c48e8dfc +2016,Formosa,II.1.1,0.06853,TJ,N2O,2.0,kg/TJ,0.13706,Naphtha combustion consumption by freight transport,AR-P,SESCO,annual,kg,806662b5-214a-3059-9953-56e2beada00c +2016,Jujuy,II.1.1,0.034265,TJ,CO2,73300.0,kg/TJ,2511.6245,Naphtha combustion consumption by freight transport,AR-Y,SESCO,annual,kg,0029cf2c-68dc-3bf5-be74-685eada502bd +2016,Jujuy,II.1.1,0.034265,TJ,CH4,0.5,kg/TJ,0.0171325,Naphtha combustion consumption by freight transport,AR-Y,SESCO,annual,kg,3aca582d-11ed-3c89-9ba0-d95965ffa1fc +2016,Jujuy,II.1.1,0.034265,TJ,N2O,2.0,kg/TJ,0.06853,Naphtha combustion consumption by freight transport,AR-Y,SESCO,annual,kg,70642e49-49c0-3107-aafe-758b99450560 +2016,La Pampa,II.1.1,0.20559,TJ,CO2,73300.0,kg/TJ,15069.747,Naphtha combustion consumption by freight transport,AR-L,SESCO,annual,kg,6b974914-73c0-3021-b376-1f60c1e23bd7 +2016,La Pampa,II.1.1,0.20559,TJ,CH4,0.5,kg/TJ,0.102795,Naphtha combustion consumption by freight transport,AR-L,SESCO,annual,kg,e1c9a9e1-62fe-3faf-b897-369cafcf2fcc +2016,La Pampa,II.1.1,0.20559,TJ,N2O,2.0,kg/TJ,0.41118,Naphtha combustion consumption by freight transport,AR-L,SESCO,annual,kg,71ef0840-ddb4-3f26-9bbf-fa17490622d4 +2016,La Rioja,II.1.1,1.1992749999999999,TJ,CO2,73300.0,kg/TJ,87906.85749999998,Naphtha combustion consumption by freight transport,AR-F,SESCO,annual,kg,737609d3-c24e-3556-80d5-fe3553fc2bc8 +2016,La Rioja,II.1.1,1.1992749999999999,TJ,CH4,0.5,kg/TJ,0.5996374999999999,Naphtha combustion consumption by freight transport,AR-F,SESCO,annual,kg,f1340262-6964-3cb9-936c-79bf887e28a7 +2016,La Rioja,II.1.1,1.1992749999999999,TJ,N2O,2.0,kg/TJ,2.3985499999999997,Naphtha combustion consumption by freight transport,AR-F,SESCO,annual,kg,b05e9bcd-3d75-3090-8fbb-3a732925cd56 +2016,Mendoza,II.1.1,7.8809499999999995,TJ,CO2,73300.0,kg/TJ,577673.635,Naphtha combustion consumption by freight transport,AR-M,SESCO,annual,kg,3d09e5ce-209c-3e24-a20d-a59e549006ef +2016,Mendoza,II.1.1,7.8809499999999995,TJ,CH4,0.5,kg/TJ,3.9404749999999997,Naphtha combustion consumption by freight transport,AR-M,SESCO,annual,kg,f5510825-d14d-3415-9138-20a297799421 +2016,Mendoza,II.1.1,7.8809499999999995,TJ,N2O,2.0,kg/TJ,15.761899999999999,Naphtha combustion consumption by freight transport,AR-M,SESCO,annual,kg,af3d5fc7-aad5-36d0-a914-baf40e1c42b0 +2016,Misiones,II.1.1,2.26149,TJ,CO2,73300.0,kg/TJ,165767.21699999998,Naphtha combustion consumption by freight transport,AR-N,SESCO,annual,kg,8b2764b9-952e-358b-879f-4d4fee974630 +2016,Misiones,II.1.1,2.26149,TJ,CH4,0.5,kg/TJ,1.130745,Naphtha combustion consumption by freight transport,AR-N,SESCO,annual,kg,1862c1bf-d477-3837-99d7-a1f7e1d84981 +2016,Misiones,II.1.1,2.26149,TJ,N2O,2.0,kg/TJ,4.52298,Naphtha combustion consumption by freight transport,AR-N,SESCO,annual,kg,a08d4fe4-9ff3-3a99-a9a6-ed14e5f339b9 +2016,Neuquén,II.1.1,2.843995,TJ,CO2,73300.0,kg/TJ,208464.8335,Naphtha combustion consumption by freight transport,AR-Q,SESCO,annual,kg,778afdbd-70cd-3f86-b4e2-af35bb95c4c3 +2016,Neuquén,II.1.1,2.843995,TJ,CH4,0.5,kg/TJ,1.4219975,Naphtha combustion consumption by freight transport,AR-Q,SESCO,annual,kg,553116b6-5627-31c5-b907-e9486ba3746d +2016,Neuquén,II.1.1,2.843995,TJ,N2O,2.0,kg/TJ,5.68799,Naphtha combustion consumption by freight transport,AR-Q,SESCO,annual,kg,5599f963-9b4f-3bb3-918b-a572708d5adc +2016,Rio Negro,II.1.1,6.03064,TJ,CO2,73300.0,kg/TJ,442045.912,Naphtha combustion consumption by freight transport,AR-R,SESCO,annual,kg,e50b45b0-999d-3fab-aae6-f32506fc76f9 +2016,Rio Negro,II.1.1,6.03064,TJ,CH4,0.5,kg/TJ,3.01532,Naphtha combustion consumption by freight transport,AR-R,SESCO,annual,kg,374d6d1d-8be9-3141-85d3-a22f8b83b288 +2016,Rio Negro,II.1.1,6.03064,TJ,N2O,2.0,kg/TJ,12.06128,Naphtha combustion consumption by freight transport,AR-R,SESCO,annual,kg,9a6e33a4-71ac-35fc-ac85-c94145122d9f +2016,Salta,II.1.1,2.94679,TJ,CO2,73300.0,kg/TJ,215999.707,Naphtha combustion consumption by freight transport,AR-A,SESCO,annual,kg,7ca5c99d-4caa-3c10-ba40-f67536ffa9d1 +2016,Salta,II.1.1,2.94679,TJ,CH4,0.5,kg/TJ,1.473395,Naphtha combustion consumption by freight transport,AR-A,SESCO,annual,kg,d011ca2a-2d21-390a-ae56-af6bce3b3425 +2016,Salta,II.1.1,2.94679,TJ,N2O,2.0,kg/TJ,5.89358,Naphtha combustion consumption by freight transport,AR-A,SESCO,annual,kg,9edb4037-2a71-35d1-a1bc-b01eb58a0349 +2016,San Juan,II.1.1,0.102795,TJ,CO2,73300.0,kg/TJ,7534.8735,Naphtha combustion consumption by freight transport,AR-J,SESCO,annual,kg,f4753983-006c-34fa-9b57-9743188b1365 +2016,San Juan,II.1.1,0.102795,TJ,CH4,0.5,kg/TJ,0.0513975,Naphtha combustion consumption by freight transport,AR-J,SESCO,annual,kg,f7a68628-11fb-379b-98c1-9cbd851f7fa4 +2016,San Juan,II.1.1,0.102795,TJ,N2O,2.0,kg/TJ,0.20559,Naphtha combustion consumption by freight transport,AR-J,SESCO,annual,kg,65f697f9-3782-352d-b427-938269935b33 +2016,San Luis,II.1.1,0.5825049999999999,TJ,CO2,73300.0,kg/TJ,42697.6165,Naphtha combustion consumption by freight transport,AR-D,SESCO,annual,kg,e8b91dcb-1033-39d8-894a-0c438012eb04 +2016,San Luis,II.1.1,0.5825049999999999,TJ,CH4,0.5,kg/TJ,0.29125249999999997,Naphtha combustion consumption by freight transport,AR-D,SESCO,annual,kg,d9c5d427-0c2f-3aa0-9df3-1b3e3298278e +2016,San Luis,II.1.1,0.5825049999999999,TJ,N2O,2.0,kg/TJ,1.1650099999999999,Naphtha combustion consumption by freight transport,AR-D,SESCO,annual,kg,f60d542c-f7b7-3324-a705-192a36fba498 +2016,Santa Cruz,II.1.1,0.102795,TJ,CO2,73300.0,kg/TJ,7534.8735,Naphtha combustion consumption by freight transport,AR-Z,SESCO,annual,kg,03fff120-59bf-34d4-9360-4e2940e49d2d +2016,Santa Cruz,II.1.1,0.102795,TJ,CH4,0.5,kg/TJ,0.0513975,Naphtha combustion consumption by freight transport,AR-Z,SESCO,annual,kg,c5c7fc1d-2b42-3a28-91e3-307dbef7628e +2016,Santa Cruz,II.1.1,0.102795,TJ,N2O,2.0,kg/TJ,0.20559,Naphtha combustion consumption by freight transport,AR-Z,SESCO,annual,kg,eec955cd-e18b-3039-92e5-cb613014ca55 +2016,Santa Fe,II.1.1,27.754649999999998,TJ,CO2,73300.0,kg/TJ,2034415.845,Naphtha combustion consumption by freight transport,AR-S,SESCO,annual,kg,b7148980-241c-3758-800d-87432b10ca41 +2016,Santa Fe,II.1.1,27.754649999999998,TJ,CH4,0.5,kg/TJ,13.877324999999999,Naphtha combustion consumption by freight transport,AR-S,SESCO,annual,kg,9f340570-d52b-3c1e-8427-1a62f2a30e68 +2016,Santa Fe,II.1.1,27.754649999999998,TJ,N2O,2.0,kg/TJ,55.509299999999996,Naphtha combustion consumption by freight transport,AR-S,SESCO,annual,kg,8e05a80a-095f-3529-94e2-14fee87a816e +2016,Santiago del Estero,II.1.1,0.41118,TJ,CO2,73300.0,kg/TJ,30139.494,Naphtha combustion consumption by freight transport,AR-G,SESCO,annual,kg,eeb1a15f-f102-3bed-ada5-2700d1017b13 +2016,Santiago del Estero,II.1.1,0.41118,TJ,CH4,0.5,kg/TJ,0.20559,Naphtha combustion consumption by freight transport,AR-G,SESCO,annual,kg,d6d0ac53-a3b4-3aa6-9610-016f426c8a07 +2016,Santiago del Estero,II.1.1,0.41118,TJ,N2O,2.0,kg/TJ,0.82236,Naphtha combustion consumption by freight transport,AR-G,SESCO,annual,kg,7647a667-c861-37ed-8cae-79e68afb4901 +2016,Tierra del Fuego,II.1.1,0.06853,TJ,CO2,73300.0,kg/TJ,5023.249,Naphtha combustion consumption by freight transport,AR-V,SESCO,annual,kg,7d7d38c7-0606-3141-ab77-a776750a1e44 +2016,Tierra del Fuego,II.1.1,0.06853,TJ,CH4,0.5,kg/TJ,0.034265,Naphtha combustion consumption by freight transport,AR-V,SESCO,annual,kg,883f5208-68ea-3f71-acb8-fbc67dcf1784 +2016,Tierra del Fuego,II.1.1,0.06853,TJ,N2O,2.0,kg/TJ,0.13706,Naphtha combustion consumption by freight transport,AR-V,SESCO,annual,kg,ed51126d-4fbb-3a63-89d7-d957237b20f8 +2016,Tucuman,II.1.1,1.9873699999999999,TJ,CO2,73300.0,kg/TJ,145674.221,Naphtha combustion consumption by freight transport,AR-T,SESCO,annual,kg,bfb74d1b-28f7-397f-a131-5f5a01469fc3 +2016,Tucuman,II.1.1,1.9873699999999999,TJ,CH4,0.5,kg/TJ,0.9936849999999999,Naphtha combustion consumption by freight transport,AR-T,SESCO,annual,kg,b3e113c4-0509-3ad7-a721-d4fe651930ed +2016,Tucuman,II.1.1,1.9873699999999999,TJ,N2O,2.0,kg/TJ,3.9747399999999997,Naphtha combustion consumption by freight transport,AR-T,SESCO,annual,kg,0025b829-7568-3a0b-85d7-8282bd09d9a0 +2016,Buenos Aires,II.1.1,11807.2668,TJ,CO2,74100.0,kg/TJ,874918469.88,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,6b64edc9-5665-30e3-8bc7-57d1e56723d7 +2016,Buenos Aires,II.1.1,11807.2668,TJ,CH4,3.9,kg/TJ,46048.34052,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,2bdcd47c-f9fd-3bb6-8485-999d111e2a24 +2016,Buenos Aires,II.1.1,11807.2668,TJ,N2O,3.9,kg/TJ,46048.34052,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,2bdcd47c-f9fd-3bb6-8485-999d111e2a24 +2016,Capital Federal,II.1.1,2822.4168,TJ,CO2,74100.0,kg/TJ,209141084.88,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,d1d0f6d6-510c-32e6-a4d0-532c64ba0a32 +2016,Capital Federal,II.1.1,2822.4168,TJ,CH4,3.9,kg/TJ,11007.425519999999,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,b56a0163-bd5c-3131-aef5-8f3b87e54e20 +2016,Capital Federal,II.1.1,2822.4168,TJ,N2O,3.9,kg/TJ,11007.425519999999,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,b56a0163-bd5c-3131-aef5-8f3b87e54e20 +2016,Catamarca,II.1.1,222.3186,TJ,CO2,74100.0,kg/TJ,16473808.26,Gas Oil combustion consumption by public passenger transport,AR-K,SESCO,annual,kg,90a659f8-cd58-37ff-af39-182db41bfa24 +2016,Catamarca,II.1.1,222.3186,TJ,CH4,3.9,kg/TJ,867.04254,Gas Oil combustion consumption by public passenger transport,AR-K,SESCO,annual,kg,37e12f22-a53f-384d-a77e-2f577e4850cb +2016,Catamarca,II.1.1,222.3186,TJ,N2O,3.9,kg/TJ,867.04254,Gas Oil combustion consumption by public passenger transport,AR-K,SESCO,annual,kg,37e12f22-a53f-384d-a77e-2f577e4850cb +2016,Chaco,II.1.1,551.69688,TJ,CO2,74100.0,kg/TJ,40880738.808,Gas Oil combustion consumption by public passenger transport,AR-H,SESCO,annual,kg,56ec0bcf-9f32-33f1-9e86-2b7dd143fc9c +2016,Chaco,II.1.1,551.69688,TJ,CH4,3.9,kg/TJ,2151.617832,Gas Oil combustion consumption by public passenger transport,AR-H,SESCO,annual,kg,197d157c-0210-3373-8b95-2910db17b1bb +2016,Chaco,II.1.1,551.69688,TJ,N2O,3.9,kg/TJ,2151.617832,Gas Oil combustion consumption by public passenger transport,AR-H,SESCO,annual,kg,197d157c-0210-3373-8b95-2910db17b1bb +2016,Chubut,II.1.1,182.98391999999998,TJ,CO2,74100.0,kg/TJ,13559108.472,Gas Oil combustion consumption by public passenger transport,AR-U,SESCO,annual,kg,b24f5e01-c0a0-3a24-8c3e-5fe9ba89138e +2016,Chubut,II.1.1,182.98391999999998,TJ,CH4,3.9,kg/TJ,713.6372879999999,Gas Oil combustion consumption by public passenger transport,AR-U,SESCO,annual,kg,0b3c1688-a995-3613-b761-abb213f20f7e +2016,Chubut,II.1.1,182.98391999999998,TJ,N2O,3.9,kg/TJ,713.6372879999999,Gas Oil combustion consumption by public passenger transport,AR-U,SESCO,annual,kg,0b3c1688-a995-3613-b761-abb213f20f7e +2016,Corrientes,II.1.1,535.33452,TJ,CO2,74100.0,kg/TJ,39668287.932,Gas Oil combustion consumption by public passenger transport,AR-W,SESCO,annual,kg,e60483d5-b2ab-3d97-9e14-c2da4bc306f9 +2016,Corrientes,II.1.1,535.33452,TJ,CH4,3.9,kg/TJ,2087.804628,Gas Oil combustion consumption by public passenger transport,AR-W,SESCO,annual,kg,0e0ce8e7-1384-3c91-b039-8e035f396e3b +2016,Corrientes,II.1.1,535.33452,TJ,N2O,3.9,kg/TJ,2087.804628,Gas Oil combustion consumption by public passenger transport,AR-W,SESCO,annual,kg,0e0ce8e7-1384-3c91-b039-8e035f396e3b +2016,Córdoba,II.1.1,1843.2035999999998,TJ,CO2,74100.0,kg/TJ,136581386.76,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,4a1ff20c-36c1-3d82-9f06-ec569e8eeadd +2016,Córdoba,II.1.1,1843.2035999999998,TJ,CH4,3.9,kg/TJ,7188.49404,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,d6a47217-c473-3f75-bf42-3d7075f0c376 +2016,Córdoba,II.1.1,1843.2035999999998,TJ,N2O,3.9,kg/TJ,7188.49404,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,d6a47217-c473-3f75-bf42-3d7075f0c376 +2016,Entre Rios,II.1.1,513.66252,TJ,CO2,74100.0,kg/TJ,38062392.732,Gas Oil combustion consumption by public passenger transport,AR-E,SESCO,annual,kg,17ce69b3-4faa-3365-a953-f9af4eaa27ae +2016,Entre Rios,II.1.1,513.66252,TJ,CH4,3.9,kg/TJ,2003.2838279999999,Gas Oil combustion consumption by public passenger transport,AR-E,SESCO,annual,kg,d7566903-66cf-34e1-aa3c-48fe45d36e34 +2016,Entre Rios,II.1.1,513.66252,TJ,N2O,3.9,kg/TJ,2003.2838279999999,Gas Oil combustion consumption by public passenger transport,AR-E,SESCO,annual,kg,d7566903-66cf-34e1-aa3c-48fe45d36e34 +2016,Formosa,II.1.1,75.02123999999999,TJ,CO2,74100.0,kg/TJ,5559073.884,Gas Oil combustion consumption by public passenger transport,AR-P,SESCO,annual,kg,a982866e-61c1-3675-9072-724a2622c571 +2016,Formosa,II.1.1,75.02123999999999,TJ,CH4,3.9,kg/TJ,292.582836,Gas Oil combustion consumption by public passenger transport,AR-P,SESCO,annual,kg,88f6a37c-244f-35b4-b284-e43103a42595 +2016,Formosa,II.1.1,75.02123999999999,TJ,N2O,3.9,kg/TJ,292.582836,Gas Oil combustion consumption by public passenger transport,AR-P,SESCO,annual,kg,88f6a37c-244f-35b4-b284-e43103a42595 +2016,Jujuy,II.1.1,684.6546,TJ,CO2,74100.0,kg/TJ,50732905.86,Gas Oil combustion consumption by public passenger transport,AR-Y,SESCO,annual,kg,9eddc1d1-8862-35ff-b7e5-a4f1afb07cda +2016,Jujuy,II.1.1,684.6546,TJ,CH4,3.9,kg/TJ,2670.15294,Gas Oil combustion consumption by public passenger transport,AR-Y,SESCO,annual,kg,1b30c1e5-53b5-3be5-9efe-6653b267e2dd +2016,Jujuy,II.1.1,684.6546,TJ,N2O,3.9,kg/TJ,2670.15294,Gas Oil combustion consumption by public passenger transport,AR-Y,SESCO,annual,kg,1b30c1e5-53b5-3be5-9efe-6653b267e2dd +2016,La Pampa,II.1.1,49.77336,TJ,CO2,74100.0,kg/TJ,3688205.976,Gas Oil combustion consumption by public passenger transport,AR-L,SESCO,annual,kg,ed211ce8-8431-3b3f-bfe8-4a434491c212 +2016,La Pampa,II.1.1,49.77336,TJ,CH4,3.9,kg/TJ,194.11610399999998,Gas Oil combustion consumption by public passenger transport,AR-L,SESCO,annual,kg,37732118-f581-3830-9900-91bfbf06e0fe +2016,La Pampa,II.1.1,49.77336,TJ,N2O,3.9,kg/TJ,194.11610399999998,Gas Oil combustion consumption by public passenger transport,AR-L,SESCO,annual,kg,37732118-f581-3830-9900-91bfbf06e0fe +2016,La Rioja,II.1.1,140.25396,TJ,CO2,74100.0,kg/TJ,10392818.436,Gas Oil combustion consumption by public passenger transport,AR-F,SESCO,annual,kg,e791a827-8759-3bdf-a6cf-770abda85917 +2016,La Rioja,II.1.1,140.25396,TJ,CH4,3.9,kg/TJ,546.990444,Gas Oil combustion consumption by public passenger transport,AR-F,SESCO,annual,kg,8a51e3b3-7986-3a20-9919-b1750d424b0b +2016,La Rioja,II.1.1,140.25396,TJ,N2O,3.9,kg/TJ,546.990444,Gas Oil combustion consumption by public passenger transport,AR-F,SESCO,annual,kg,8a51e3b3-7986-3a20-9919-b1750d424b0b +2016,Mendoza,II.1.1,1921.1505599999998,TJ,CO2,74100.0,kg/TJ,142357256.496,Gas Oil combustion consumption by public passenger transport,AR-M,SESCO,annual,kg,4d43614e-e900-3f3c-bcf6-54e088f6c0b2 +2016,Mendoza,II.1.1,1921.1505599999998,TJ,CH4,3.9,kg/TJ,7492.487183999999,Gas Oil combustion consumption by public passenger transport,AR-M,SESCO,annual,kg,45763dea-1e9a-3fda-b9ac-2bfdae795cf5 +2016,Mendoza,II.1.1,1921.1505599999998,TJ,N2O,3.9,kg/TJ,7492.487183999999,Gas Oil combustion consumption by public passenger transport,AR-M,SESCO,annual,kg,45763dea-1e9a-3fda-b9ac-2bfdae795cf5 +2016,Misiones,II.1.1,1264.6334399999998,TJ,CO2,74100.0,kg/TJ,93709337.90399998,Gas Oil combustion consumption by public passenger transport,AR-N,SESCO,annual,kg,8661fcce-d8c8-3de4-b7d4-beb420a048ca +2016,Misiones,II.1.1,1264.6334399999998,TJ,CH4,3.9,kg/TJ,4932.070416,Gas Oil combustion consumption by public passenger transport,AR-N,SESCO,annual,kg,8201489c-2f7b-3c12-8a72-906890abda4b +2016,Misiones,II.1.1,1264.6334399999998,TJ,N2O,3.9,kg/TJ,4932.070416,Gas Oil combustion consumption by public passenger transport,AR-N,SESCO,annual,kg,8201489c-2f7b-3c12-8a72-906890abda4b +2016,Neuquén,II.1.1,307.99523999999997,TJ,CO2,74100.0,kg/TJ,22822447.283999998,Gas Oil combustion consumption by public passenger transport,AR-Q,SESCO,annual,kg,a013b5ea-cbbf-3c3a-84e8-68d9adfe5bd1 +2016,Neuquén,II.1.1,307.99523999999997,TJ,CH4,3.9,kg/TJ,1201.1814359999998,Gas Oil combustion consumption by public passenger transport,AR-Q,SESCO,annual,kg,5bedc6a3-78ca-3260-87fa-382a026fb803 +2016,Neuquén,II.1.1,307.99523999999997,TJ,N2O,3.9,kg/TJ,1201.1814359999998,Gas Oil combustion consumption by public passenger transport,AR-Q,SESCO,annual,kg,5bedc6a3-78ca-3260-87fa-382a026fb803 +2016,Rio Negro,II.1.1,534.68436,TJ,CO2,74100.0,kg/TJ,39620111.076,Gas Oil combustion consumption by public passenger transport,AR-R,SESCO,annual,kg,4d8bcfea-ded7-3544-a7bf-a319d3b8087b +2016,Rio Negro,II.1.1,534.68436,TJ,CH4,3.9,kg/TJ,2085.2690039999998,Gas Oil combustion consumption by public passenger transport,AR-R,SESCO,annual,kg,93b287b9-3227-3c85-97c9-492609dd867d +2016,Rio Negro,II.1.1,534.68436,TJ,N2O,3.9,kg/TJ,2085.2690039999998,Gas Oil combustion consumption by public passenger transport,AR-R,SESCO,annual,kg,93b287b9-3227-3c85-97c9-492609dd867d +2016,Salta,II.1.1,899.8575599999999,TJ,CO2,74100.0,kg/TJ,66679445.195999995,Gas Oil combustion consumption by public passenger transport,AR-A,SESCO,annual,kg,389ada43-6786-392b-9f7e-f2db2128a892 +2016,Salta,II.1.1,899.8575599999999,TJ,CH4,3.9,kg/TJ,3509.4444839999996,Gas Oil combustion consumption by public passenger transport,AR-A,SESCO,annual,kg,3ca10586-a9d3-3d1d-8398-476c84f09ec0 +2016,Salta,II.1.1,899.8575599999999,TJ,N2O,3.9,kg/TJ,3509.4444839999996,Gas Oil combustion consumption by public passenger transport,AR-A,SESCO,annual,kg,3ca10586-a9d3-3d1d-8398-476c84f09ec0 +2016,San Juan,II.1.1,524.17344,TJ,CO2,74100.0,kg/TJ,38841251.904,Gas Oil combustion consumption by public passenger transport,AR-J,SESCO,annual,kg,cde4f3d2-de10-3eee-8987-02efa0e6bc97 +2016,San Juan,II.1.1,524.17344,TJ,CH4,3.9,kg/TJ,2044.2764160000002,Gas Oil combustion consumption by public passenger transport,AR-J,SESCO,annual,kg,4e367c2a-677e-37a0-b82b-20d79188c463 +2016,San Juan,II.1.1,524.17344,TJ,N2O,3.9,kg/TJ,2044.2764160000002,Gas Oil combustion consumption by public passenger transport,AR-J,SESCO,annual,kg,4e367c2a-677e-37a0-b82b-20d79188c463 +2016,San Luis,II.1.1,163.76808,TJ,CO2,74100.0,kg/TJ,12135214.728,Gas Oil combustion consumption by public passenger transport,AR-D,SESCO,annual,kg,a9ce02ff-e5c6-3975-aeb7-634e42a92798 +2016,San Luis,II.1.1,163.76808,TJ,CH4,3.9,kg/TJ,638.695512,Gas Oil combustion consumption by public passenger transport,AR-D,SESCO,annual,kg,0f950783-a81a-3272-b8c2-3451bf707f68 +2016,San Luis,II.1.1,163.76808,TJ,N2O,3.9,kg/TJ,638.695512,Gas Oil combustion consumption by public passenger transport,AR-D,SESCO,annual,kg,0f950783-a81a-3272-b8c2-3451bf707f68 +2016,Santa Cruz,II.1.1,27.884639999999997,TJ,CO2,74100.0,kg/TJ,2066251.8239999998,Gas Oil combustion consumption by public passenger transport,AR-Z,SESCO,annual,kg,c17ef06d-aa60-32b9-b0d5-9c3f1eab7183 +2016,Santa Cruz,II.1.1,27.884639999999997,TJ,CH4,3.9,kg/TJ,108.75009599999998,Gas Oil combustion consumption by public passenger transport,AR-Z,SESCO,annual,kg,39eb08b6-255b-390f-8e44-9a3ab76869b8 +2016,Santa Cruz,II.1.1,27.884639999999997,TJ,N2O,3.9,kg/TJ,108.75009599999998,Gas Oil combustion consumption by public passenger transport,AR-Z,SESCO,annual,kg,39eb08b6-255b-390f-8e44-9a3ab76869b8 +2016,Santa Fe,II.1.1,1971.7185599999998,TJ,CO2,74100.0,kg/TJ,146104345.29599997,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,e45b8b28-e068-3628-a744-b3435a46dca7 +2016,Santa Fe,II.1.1,1971.7185599999998,TJ,CH4,3.9,kg/TJ,7689.702383999999,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,c97cac4f-771b-3cda-bf52-a8c2d71bd630 +2016,Santa Fe,II.1.1,1971.7185599999998,TJ,N2O,3.9,kg/TJ,7689.702383999999,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,c97cac4f-771b-3cda-bf52-a8c2d71bd630 +2016,Santiago del Estero,II.1.1,270.61104,TJ,CO2,74100.0,kg/TJ,20052278.064,Gas Oil combustion consumption by public passenger transport,AR-G,SESCO,annual,kg,586d567f-630f-33f8-b460-8872a3bdf51c +2016,Santiago del Estero,II.1.1,270.61104,TJ,CH4,3.9,kg/TJ,1055.383056,Gas Oil combustion consumption by public passenger transport,AR-G,SESCO,annual,kg,737be1cc-2014-322b-84f7-b74c34f76d37 +2016,Santiago del Estero,II.1.1,270.61104,TJ,N2O,3.9,kg/TJ,1055.383056,Gas Oil combustion consumption by public passenger transport,AR-G,SESCO,annual,kg,737be1cc-2014-322b-84f7-b74c34f76d37 +2016,Tierra del Fuego,II.1.1,18.92688,TJ,CO2,74100.0,kg/TJ,1402481.808,Gas Oil combustion consumption by public passenger transport,AR-V,SESCO,annual,kg,bf7040dc-4ea2-3602-9c2b-1ae2ae454ee4 +2016,Tierra del Fuego,II.1.1,18.92688,TJ,CH4,3.9,kg/TJ,73.814832,Gas Oil combustion consumption by public passenger transport,AR-V,SESCO,annual,kg,47ce67ac-2e24-3a5f-baac-e9d6a51c8766 +2016,Tierra del Fuego,II.1.1,18.92688,TJ,N2O,3.9,kg/TJ,73.814832,Gas Oil combustion consumption by public passenger transport,AR-V,SESCO,annual,kg,47ce67ac-2e24-3a5f-baac-e9d6a51c8766 +2016,Tucuman,II.1.1,1305.1961999999999,TJ,CO2,74100.0,kg/TJ,96715038.41999999,Gas Oil combustion consumption by public passenger transport,AR-T,SESCO,annual,kg,403bbbd7-c667-3c18-bec3-230489ed9f1f +2016,Tucuman,II.1.1,1305.1961999999999,TJ,CH4,3.9,kg/TJ,5090.265179999999,Gas Oil combustion consumption by public passenger transport,AR-T,SESCO,annual,kg,d2a4e265-0b7c-39fc-999e-58f8643a4726 +2016,Tucuman,II.1.1,1305.1961999999999,TJ,N2O,3.9,kg/TJ,5090.265179999999,Gas Oil combustion consumption by public passenger transport,AR-T,SESCO,annual,kg,d2a4e265-0b7c-39fc-999e-58f8643a4726 +2016,Buenos Aires,II.1.1,197.21519999999998,TJ,CO2,74100.0,kg/TJ,14613646.319999998,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,9de9a190-a450-30f2-944d-a40857212689 +2016,Buenos Aires,II.1.1,197.21519999999998,TJ,CH4,3.9,kg/TJ,769.1392799999999,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,2870f6dd-31f7-3bf2-a254-5dca7ab41e63 +2016,Buenos Aires,II.1.1,197.21519999999998,TJ,N2O,3.9,kg/TJ,769.1392799999999,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,2870f6dd-31f7-3bf2-a254-5dca7ab41e63 +2016,Capital Federal,II.1.1,16.21788,TJ,CO2,74100.0,kg/TJ,1201744.908,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,e54de786-4eb9-33ed-9225-528960a05cbf +2016,Capital Federal,II.1.1,16.21788,TJ,CH4,3.9,kg/TJ,63.249732,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,559b1da0-6f89-3985-9eb0-c01b4f2543dc +2016,Capital Federal,II.1.1,16.21788,TJ,N2O,3.9,kg/TJ,63.249732,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,559b1da0-6f89-3985-9eb0-c01b4f2543dc +2016,Catamarca,II.1.1,1.51704,TJ,CO2,74100.0,kg/TJ,112412.66399999999,Gas Oil combustion consumption by public passenger transport,AR-K,SESCO,annual,kg,a9e3decb-cb9c-300b-b56a-490ad92cd049 +2016,Catamarca,II.1.1,1.51704,TJ,CH4,3.9,kg/TJ,5.916455999999999,Gas Oil combustion consumption by public passenger transport,AR-K,SESCO,annual,kg,6f889af1-64ac-3e53-a823-8754ca5473a7 +2016,Catamarca,II.1.1,1.51704,TJ,N2O,3.9,kg/TJ,5.916455999999999,Gas Oil combustion consumption by public passenger transport,AR-K,SESCO,annual,kg,6f889af1-64ac-3e53-a823-8754ca5473a7 +2016,Chaco,II.1.1,0.36119999999999997,TJ,CO2,74100.0,kg/TJ,26764.92,Gas Oil combustion consumption by public passenger transport,AR-H,SESCO,annual,kg,77852307-07b7-3fc6-9e4a-0cb36d2d8d53 +2016,Chaco,II.1.1,0.36119999999999997,TJ,CH4,3.9,kg/TJ,1.40868,Gas Oil combustion consumption by public passenger transport,AR-H,SESCO,annual,kg,482dc135-d506-38b7-8495-85d6110528e9 +2016,Chaco,II.1.1,0.36119999999999997,TJ,N2O,3.9,kg/TJ,1.40868,Gas Oil combustion consumption by public passenger transport,AR-H,SESCO,annual,kg,482dc135-d506-38b7-8495-85d6110528e9 +2016,Chubut,II.1.1,17.08476,TJ,CO2,74100.0,kg/TJ,1265980.716,Gas Oil combustion consumption by public passenger transport,AR-U,SESCO,annual,kg,a8d6f83e-d1aa-3454-b597-bbcdd4bc8d34 +2016,Chubut,II.1.1,17.08476,TJ,CH4,3.9,kg/TJ,66.63056399999999,Gas Oil combustion consumption by public passenger transport,AR-U,SESCO,annual,kg,09bda723-5956-3bfd-bd46-226eaecaf7ab +2016,Chubut,II.1.1,17.08476,TJ,N2O,3.9,kg/TJ,66.63056399999999,Gas Oil combustion consumption by public passenger transport,AR-U,SESCO,annual,kg,09bda723-5956-3bfd-bd46-226eaecaf7ab +2016,Corrientes,II.1.1,0.6140399999999999,TJ,CO2,74100.0,kg/TJ,45500.363999999994,Gas Oil combustion consumption by public passenger transport,AR-W,SESCO,annual,kg,8c85d100-2fdc-3e1d-8d01-2d6105bae0de +2016,Corrientes,II.1.1,0.6140399999999999,TJ,CH4,3.9,kg/TJ,2.3947559999999997,Gas Oil combustion consumption by public passenger transport,AR-W,SESCO,annual,kg,77a893dd-19d4-3b4a-8dc1-8b652a9c9dbf +2016,Corrientes,II.1.1,0.6140399999999999,TJ,N2O,3.9,kg/TJ,2.3947559999999997,Gas Oil combustion consumption by public passenger transport,AR-W,SESCO,annual,kg,77a893dd-19d4-3b4a-8dc1-8b652a9c9dbf +2016,Córdoba,II.1.1,18.348959999999998,TJ,CO2,74100.0,kg/TJ,1359657.9359999998,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,482321cf-4511-3080-a7a7-fdb7f694380e +2016,Córdoba,II.1.1,18.348959999999998,TJ,CH4,3.9,kg/TJ,71.56094399999999,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,d9f000ca-531f-3348-9de4-4a14f29b2cdb +2016,Córdoba,II.1.1,18.348959999999998,TJ,N2O,3.9,kg/TJ,71.56094399999999,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,d9f000ca-531f-3348-9de4-4a14f29b2cdb +2016,Entre Rios,II.1.1,0.10836,TJ,CO2,74100.0,kg/TJ,8029.476,Gas Oil combustion consumption by public passenger transport,AR-E,SESCO,annual,kg,69a4cfd6-c1a7-3438-a912-7c72e1dc1240 +2016,Entre Rios,II.1.1,0.10836,TJ,CH4,3.9,kg/TJ,0.422604,Gas Oil combustion consumption by public passenger transport,AR-E,SESCO,annual,kg,9b56ed13-146c-35b6-9929-9cc7f814afd9 +2016,Entre Rios,II.1.1,0.10836,TJ,N2O,3.9,kg/TJ,0.422604,Gas Oil combustion consumption by public passenger transport,AR-E,SESCO,annual,kg,9b56ed13-146c-35b6-9929-9cc7f814afd9 +2016,La Rioja,II.1.1,0.14448,TJ,CO2,74100.0,kg/TJ,10705.967999999999,Gas Oil combustion consumption by public passenger transport,AR-F,SESCO,annual,kg,0f9fc0a2-18fb-3576-a802-5a2d657ce0e3 +2016,La Rioja,II.1.1,0.14448,TJ,CH4,3.9,kg/TJ,0.563472,Gas Oil combustion consumption by public passenger transport,AR-F,SESCO,annual,kg,2624729b-8f4c-3a70-b11b-f9b1e0be4e4f +2016,La Rioja,II.1.1,0.14448,TJ,N2O,3.9,kg/TJ,0.563472,Gas Oil combustion consumption by public passenger transport,AR-F,SESCO,annual,kg,2624729b-8f4c-3a70-b11b-f9b1e0be4e4f +2016,Mendoza,II.1.1,4.08156,TJ,CO2,74100.0,kg/TJ,302443.59599999996,Gas Oil combustion consumption by public passenger transport,AR-M,SESCO,annual,kg,b668b0d4-c35e-32b3-9971-bba6ef55f405 +2016,Mendoza,II.1.1,4.08156,TJ,CH4,3.9,kg/TJ,15.918083999999999,Gas Oil combustion consumption by public passenger transport,AR-M,SESCO,annual,kg,d5eea2f1-9abb-3583-a973-a73cad085546 +2016,Mendoza,II.1.1,4.08156,TJ,N2O,3.9,kg/TJ,15.918083999999999,Gas Oil combustion consumption by public passenger transport,AR-M,SESCO,annual,kg,d5eea2f1-9abb-3583-a973-a73cad085546 +2016,Misiones,II.1.1,6.8989199999999995,TJ,CO2,74100.0,kg/TJ,511209.97199999995,Gas Oil combustion consumption by public passenger transport,AR-N,SESCO,annual,kg,bc006969-7453-3b57-8994-5ec1a6c75bc0 +2016,Misiones,II.1.1,6.8989199999999995,TJ,CH4,3.9,kg/TJ,26.905787999999998,Gas Oil combustion consumption by public passenger transport,AR-N,SESCO,annual,kg,4ac1e0b4-d845-392d-88f5-05fa2929b837 +2016,Misiones,II.1.1,6.8989199999999995,TJ,N2O,3.9,kg/TJ,26.905787999999998,Gas Oil combustion consumption by public passenger transport,AR-N,SESCO,annual,kg,4ac1e0b4-d845-392d-88f5-05fa2929b837 +2016,Neuquén,II.1.1,0.14448,TJ,CO2,74100.0,kg/TJ,10705.967999999999,Gas Oil combustion consumption by public passenger transport,AR-Q,SESCO,annual,kg,718af895-5852-3f80-979b-9c482e49f1c3 +2016,Neuquén,II.1.1,0.14448,TJ,CH4,3.9,kg/TJ,0.563472,Gas Oil combustion consumption by public passenger transport,AR-Q,SESCO,annual,kg,b599201c-898f-31ef-abbb-9945a9e87931 +2016,Neuquén,II.1.1,0.14448,TJ,N2O,3.9,kg/TJ,0.563472,Gas Oil combustion consumption by public passenger transport,AR-Q,SESCO,annual,kg,b599201c-898f-31ef-abbb-9945a9e87931 +2016,Rio Negro,II.1.1,16.65132,TJ,CO2,74100.0,kg/TJ,1233862.812,Gas Oil combustion consumption by public passenger transport,AR-R,SESCO,annual,kg,9696cbf7-6df9-35f5-aa11-ff9d530c0089 +2016,Rio Negro,II.1.1,16.65132,TJ,CH4,3.9,kg/TJ,64.940148,Gas Oil combustion consumption by public passenger transport,AR-R,SESCO,annual,kg,28d2a7a5-ffa9-36c2-8927-7ea7053667ac +2016,Rio Negro,II.1.1,16.65132,TJ,N2O,3.9,kg/TJ,64.940148,Gas Oil combustion consumption by public passenger transport,AR-R,SESCO,annual,kg,28d2a7a5-ffa9-36c2-8927-7ea7053667ac +2016,Salta,II.1.1,3.7925999999999997,TJ,CO2,74100.0,kg/TJ,281031.66,Gas Oil combustion consumption by public passenger transport,AR-A,SESCO,annual,kg,4ed62cf0-8b52-3b40-9ce2-7b1221c0c74a +2016,Salta,II.1.1,3.7925999999999997,TJ,CH4,3.9,kg/TJ,14.791139999999999,Gas Oil combustion consumption by public passenger transport,AR-A,SESCO,annual,kg,44a1d30d-03b7-344b-abda-c4aede2054ab +2016,Salta,II.1.1,3.7925999999999997,TJ,N2O,3.9,kg/TJ,14.791139999999999,Gas Oil combustion consumption by public passenger transport,AR-A,SESCO,annual,kg,44a1d30d-03b7-344b-abda-c4aede2054ab +2016,San Juan,II.1.1,14.484119999999999,TJ,CO2,74100.0,kg/TJ,1073273.292,Gas Oil combustion consumption by public passenger transport,AR-J,SESCO,annual,kg,32d0040d-8e11-3f92-848b-6a2caf524937 +2016,San Juan,II.1.1,14.484119999999999,TJ,CH4,3.9,kg/TJ,56.48806799999999,Gas Oil combustion consumption by public passenger transport,AR-J,SESCO,annual,kg,0847cdec-852a-325a-8ee2-f7c9710125c7 +2016,San Juan,II.1.1,14.484119999999999,TJ,N2O,3.9,kg/TJ,56.48806799999999,Gas Oil combustion consumption by public passenger transport,AR-J,SESCO,annual,kg,0847cdec-852a-325a-8ee2-f7c9710125c7 +2016,Santa Fe,II.1.1,6.42936,TJ,CO2,74100.0,kg/TJ,476415.576,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,bee6046d-4f8b-36ba-9658-3195e0c202e9 +2016,Santa Fe,II.1.1,6.42936,TJ,CH4,3.9,kg/TJ,25.074504,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,c6a3a802-d7da-3c72-b3b3-42f2a1e3352f +2016,Santa Fe,II.1.1,6.42936,TJ,N2O,3.9,kg/TJ,25.074504,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,c6a3a802-d7da-3c72-b3b3-42f2a1e3352f +2016,Santiago del Estero,II.1.1,0.79464,TJ,CO2,74100.0,kg/TJ,58882.824,Gas Oil combustion consumption by public passenger transport,AR-G,SESCO,annual,kg,ca406244-8172-39b0-99af-a624f00b1e70 +2016,Santiago del Estero,II.1.1,0.79464,TJ,CH4,3.9,kg/TJ,3.099096,Gas Oil combustion consumption by public passenger transport,AR-G,SESCO,annual,kg,28e25b1d-b28d-3f63-8222-25e81195204f +2016,Santiago del Estero,II.1.1,0.79464,TJ,N2O,3.9,kg/TJ,3.099096,Gas Oil combustion consumption by public passenger transport,AR-G,SESCO,annual,kg,28e25b1d-b28d-3f63-8222-25e81195204f +2016,Tucuman,II.1.1,4.5872399999999995,TJ,CO2,74100.0,kg/TJ,339914.48399999994,Gas Oil combustion consumption by public passenger transport,AR-T,SESCO,annual,kg,878a045f-d90e-3777-9ed1-745dc711c633 +2016,Tucuman,II.1.1,4.5872399999999995,TJ,CH4,3.9,kg/TJ,17.890235999999998,Gas Oil combustion consumption by public passenger transport,AR-T,SESCO,annual,kg,9cb4464a-3207-39d1-8d94-012b3b88d4e0 +2016,Tucuman,II.1.1,4.5872399999999995,TJ,N2O,3.9,kg/TJ,17.890235999999998,Gas Oil combustion consumption by public passenger transport,AR-T,SESCO,annual,kg,9cb4464a-3207-39d1-8d94-012b3b88d4e0 +2017,Buenos Aires,II.5.1,159.00024,TJ,CO2,74100.0,kg/TJ,11781917.784,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,14fbfc32-e4ec-3ede-a47e-ca9d80346480 +2017,Buenos Aires,II.5.1,159.00024,TJ,CH4,3.9,kg/TJ,620.1009359999999,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,790c3e61-105f-39af-bdc5-641d19d22889 +2017,Buenos Aires,II.5.1,159.00024,TJ,N2O,3.9,kg/TJ,620.1009359999999,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,790c3e61-105f-39af-bdc5-641d19d22889 +2017,Chaco,II.5.1,4.29828,TJ,CO2,74100.0,kg/TJ,318502.548,Gas Oil combustion consumption by agriculture machines,AR-H,SESCO,annual,kg,2a7b22a8-3d37-393a-b2ac-37747e71ba46 +2017,Chaco,II.5.1,4.29828,TJ,CH4,3.9,kg/TJ,16.763292,Gas Oil combustion consumption by agriculture machines,AR-H,SESCO,annual,kg,5b1df199-ee37-3a5e-a872-3a30b55b303c +2017,Chaco,II.5.1,4.29828,TJ,N2O,3.9,kg/TJ,16.763292,Gas Oil combustion consumption by agriculture machines,AR-H,SESCO,annual,kg,5b1df199-ee37-3a5e-a872-3a30b55b303c +2017,Corrientes,II.5.1,1.30032,TJ,CO2,74100.0,kg/TJ,96353.712,Gas Oil combustion consumption by agriculture machines,AR-W,SESCO,annual,kg,7f54f3eb-c1db-3616-bc84-8ad9e6f1a374 +2017,Corrientes,II.5.1,1.30032,TJ,CH4,3.9,kg/TJ,5.071248,Gas Oil combustion consumption by agriculture machines,AR-W,SESCO,annual,kg,83fe8447-74c4-3e68-bbcf-8572f3b06c17 +2017,Corrientes,II.5.1,1.30032,TJ,N2O,3.9,kg/TJ,5.071248,Gas Oil combustion consumption by agriculture machines,AR-W,SESCO,annual,kg,83fe8447-74c4-3e68-bbcf-8572f3b06c17 +2017,Córdoba,II.5.1,163.19016,TJ,CO2,74100.0,kg/TJ,12092390.855999999,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,3b021822-bf2f-381f-8fd5-ef33c0953b57 +2017,Córdoba,II.5.1,163.19016,TJ,CH4,3.9,kg/TJ,636.4416239999999,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,5725368e-9201-3af8-af41-d7120481bfa5 +2017,Córdoba,II.5.1,163.19016,TJ,N2O,3.9,kg/TJ,636.4416239999999,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,5725368e-9201-3af8-af41-d7120481bfa5 +2017,Santa Fe,II.5.1,355.85424,TJ,CO2,74100.0,kg/TJ,26368799.184,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,5acc04ee-2ad5-348d-a2c4-1eb28e9db549 +2017,Santa Fe,II.5.1,355.85424,TJ,CH4,3.9,kg/TJ,1387.831536,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,95a6abb5-c78b-32ba-9be0-df66107e5043 +2017,Santa Fe,II.5.1,355.85424,TJ,N2O,3.9,kg/TJ,1387.831536,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,95a6abb5-c78b-32ba-9be0-df66107e5043 +2017,Tucuman,II.5.1,25.825799999999997,TJ,CO2,74100.0,kg/TJ,1913691.7799999998,Gas Oil combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,76f945d0-88bd-3107-802e-880843c2a3ba +2017,Tucuman,II.5.1,25.825799999999997,TJ,CH4,3.9,kg/TJ,100.72061999999998,Gas Oil combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,8a9fbd17-d342-38b7-b743-c2804f561f8c +2017,Tucuman,II.5.1,25.825799999999997,TJ,N2O,3.9,kg/TJ,100.72061999999998,Gas Oil combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,8a9fbd17-d342-38b7-b743-c2804f561f8c +2017,Buenos Aires,II.5.1,19.866,TJ,CO2,74100.0,kg/TJ,1472070.5999999999,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,5b1f9e30-da79-3d84-ba85-85ff770a7638 +2017,Buenos Aires,II.5.1,19.866,TJ,CH4,3.9,kg/TJ,77.4774,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,1d719c61-efbf-3575-8ab9-717e2f2250b5 +2017,Buenos Aires,II.5.1,19.866,TJ,N2O,3.9,kg/TJ,77.4774,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,1d719c61-efbf-3575-8ab9-717e2f2250b5 +2017,Chaco,II.5.1,1.2642,TJ,CO2,74100.0,kg/TJ,93677.22,Gas Oil combustion consumption by agriculture machines,AR-H,SESCO,annual,kg,6b62d8de-47f1-38a9-a20d-ce6683388f87 +2017,Chaco,II.5.1,1.2642,TJ,CH4,3.9,kg/TJ,4.9303799999999995,Gas Oil combustion consumption by agriculture machines,AR-H,SESCO,annual,kg,e9bad7bf-5759-3e79-b175-400b10d2a7a9 +2017,Chaco,II.5.1,1.2642,TJ,N2O,3.9,kg/TJ,4.9303799999999995,Gas Oil combustion consumption by agriculture machines,AR-H,SESCO,annual,kg,e9bad7bf-5759-3e79-b175-400b10d2a7a9 +2017,Córdoba,II.5.1,10.22196,TJ,CO2,74100.0,kg/TJ,757447.2359999999,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,dd122313-b5cd-3bf2-909f-ba5dd6c642e7 +2017,Córdoba,II.5.1,10.22196,TJ,CH4,3.9,kg/TJ,39.865643999999996,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,b3ce7d44-49dd-30c4-b0df-c076ca363931 +2017,Córdoba,II.5.1,10.22196,TJ,N2O,3.9,kg/TJ,39.865643999999996,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,b3ce7d44-49dd-30c4-b0df-c076ca363931 +2017,Santa Fe,II.5.1,33.230399999999996,TJ,CO2,74100.0,kg/TJ,2462372.6399999997,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,bcf52b9a-654a-324e-ace3-5398b52a0071 +2017,Santa Fe,II.5.1,33.230399999999996,TJ,CH4,3.9,kg/TJ,129.59856,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,0b0b219e-26b0-3ef5-8eb7-91c580a47afb +2017,Santa Fe,II.5.1,33.230399999999996,TJ,N2O,3.9,kg/TJ,129.59856,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,0b0b219e-26b0-3ef5-8eb7-91c580a47afb +2017,Tucuman,II.5.1,21.23856,TJ,CO2,74100.0,kg/TJ,1573777.296,Gas Oil combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,41dc9f3e-29f2-3d6c-88f1-c3ee9063de3c +2017,Tucuman,II.5.1,21.23856,TJ,CH4,3.9,kg/TJ,82.830384,Gas Oil combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,c88168d6-3bed-3f94-a966-f72985b019f7 +2017,Tucuman,II.5.1,21.23856,TJ,N2O,3.9,kg/TJ,82.830384,Gas Oil combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,c88168d6-3bed-3f94-a966-f72985b019f7 +2017,Córdoba,II.5.1,0.8806839999999999,TJ,CO2,71500.0,kg/TJ,62968.905999999995,Jet Kerosene combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,bfbeaf75-bedf-30ed-9aaa-b545bb5fcfc0 +2017,Córdoba,II.5.1,0.8806839999999999,TJ,CH4,0.5,kg/TJ,0.44034199999999996,Jet Kerosene combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,a2ef41ba-a921-34c4-8f0f-2656c6a9d0c0 +2017,Córdoba,II.5.1,0.8806839999999999,TJ,N2O,2.0,kg/TJ,1.7613679999999998,Jet Kerosene combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,e6210f1a-6db7-3306-b484-1404c6f5c274 +2017,Buenos Aires,II.5.1,51.260439999999996,TJ,CO2,73300.0,kg/TJ,3757390.252,Naphtha combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,536e944a-fce4-380d-9ea1-30bcf4a83255 +2017,Buenos Aires,II.5.1,51.260439999999996,TJ,CH4,0.5,kg/TJ,25.630219999999998,Naphtha combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,fcf86fc6-1c9e-30a8-8661-b9a1534a8f23 +2017,Buenos Aires,II.5.1,51.260439999999996,TJ,N2O,2.0,kg/TJ,102.52087999999999,Naphtha combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,66422ad8-a814-3606-b149-18f5208b7333 +2017,Chaco,II.5.1,20.49047,TJ,CO2,73300.0,kg/TJ,1501951.451,Naphtha combustion consumption by agriculture machines,AR-H,SESCO,annual,kg,f13bebcb-bf0f-3c52-9c85-98fba045dcb5 +2017,Chaco,II.5.1,20.49047,TJ,CH4,0.5,kg/TJ,10.245235,Naphtha combustion consumption by agriculture machines,AR-H,SESCO,annual,kg,335dee38-04fe-37ea-9cfc-494b307bc6c3 +2017,Chaco,II.5.1,20.49047,TJ,N2O,2.0,kg/TJ,40.98094,Naphtha combustion consumption by agriculture machines,AR-H,SESCO,annual,kg,9486a924-911d-33fc-a82a-01bce3f41156 +2017,Córdoba,II.5.1,10.039645,TJ,CO2,73300.0,kg/TJ,735905.9785,Naphtha combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,a70b538c-e9af-3c4e-9783-603d864b4113 +2017,Córdoba,II.5.1,10.039645,TJ,CH4,0.5,kg/TJ,5.0198225,Naphtha combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,845f5ed3-9651-325d-b245-a2ebfef41d31 +2017,Córdoba,II.5.1,10.039645,TJ,N2O,2.0,kg/TJ,20.07929,Naphtha combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,8fc83b48-6d82-3401-93f2-5a2691233035 +2017,Santa Fe,II.5.1,61.985384999999994,TJ,CO2,73300.0,kg/TJ,4543528.7205,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,380b236a-5fb4-32f9-b2f0-3d0a1c83ab75 +2017,Santa Fe,II.5.1,61.985384999999994,TJ,CH4,0.5,kg/TJ,30.992692499999997,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,684edd70-e841-3d9a-8eb9-5d53273e70ba +2017,Santa Fe,II.5.1,61.985384999999994,TJ,N2O,2.0,kg/TJ,123.97076999999999,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,573b0bf0-eb45-3bfd-908d-91d64b53fc37 +2017,Tucuman,II.5.1,43.24243,TJ,CO2,73300.0,kg/TJ,3169670.119,Naphtha combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,14d5fb2d-0deb-3d72-a050-40a672ae5d12 +2017,Tucuman,II.5.1,43.24243,TJ,CH4,0.5,kg/TJ,21.621215,Naphtha combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,5533efc9-2ef0-3e87-aed2-3963e062c36c +2017,Tucuman,II.5.1,43.24243,TJ,N2O,2.0,kg/TJ,86.48486,Naphtha combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,d21a9f56-7387-3a25-9858-08c57daafa11 +2017,Buenos Aires,II.5.1,11.478774999999999,TJ,CO2,73300.0,kg/TJ,841394.2074999999,Naphtha combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,b2bb64e9-95e3-3b7c-94da-4f2b2d61fa68 +2017,Buenos Aires,II.5.1,11.478774999999999,TJ,CH4,0.5,kg/TJ,5.739387499999999,Naphtha combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,0ae577b3-a847-3a27-8f2a-bc35e15b6994 +2017,Buenos Aires,II.5.1,11.478774999999999,TJ,N2O,2.0,kg/TJ,22.957549999999998,Naphtha combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,99175a0c-9fd1-3e60-9f01-6ecc2e53abca +2017,Chaco,II.5.1,3.22091,TJ,CO2,73300.0,kg/TJ,236092.703,Naphtha combustion consumption by agriculture machines,AR-H,SESCO,annual,kg,f0f01c1f-fa63-3541-a561-69e252ce1ea4 +2017,Chaco,II.5.1,3.22091,TJ,CH4,0.5,kg/TJ,1.610455,Naphtha combustion consumption by agriculture machines,AR-H,SESCO,annual,kg,e3cd72d3-5e2f-307d-8b08-6484343b9973 +2017,Chaco,II.5.1,3.22091,TJ,N2O,2.0,kg/TJ,6.44182,Naphtha combustion consumption by agriculture machines,AR-H,SESCO,annual,kg,b601ca76-a55c-393c-9511-7917e1916323 +2017,Córdoba,II.5.1,5.242545,TJ,CO2,73300.0,kg/TJ,384278.5485,Naphtha combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,a6fbfb73-580a-331e-9ad8-395e472774c2 +2017,Córdoba,II.5.1,5.242545,TJ,CH4,0.5,kg/TJ,2.6212725,Naphtha combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,43da8fab-a4dd-37f8-acd6-aa66b116f2a7 +2017,Córdoba,II.5.1,5.242545,TJ,N2O,2.0,kg/TJ,10.48509,Naphtha combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,ab199e37-ee08-3506-8f1e-442e8128475b +2017,Santa Fe,II.5.1,20.387674999999998,TJ,CO2,73300.0,kg/TJ,1494416.5775,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,39ce5d30-0fc5-3afb-b746-b903608dc896 +2017,Santa Fe,II.5.1,20.387674999999998,TJ,CH4,0.5,kg/TJ,10.193837499999999,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,2c543dc1-1939-3085-9aa7-a4a9eba4d1b4 +2017,Santa Fe,II.5.1,20.387674999999998,TJ,N2O,2.0,kg/TJ,40.775349999999996,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,68457018-ed26-3f2e-bd96-c9fb4f91f37e +2017,Tucuman,II.5.1,11.341714999999999,TJ,CO2,73300.0,kg/TJ,831347.7094999999,Naphtha combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,f17c2800-3179-39c8-b444-65c99046772d +2017,Tucuman,II.5.1,11.341714999999999,TJ,CH4,0.5,kg/TJ,5.670857499999999,Naphtha combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,2865331b-857c-3a11-8504-bc2dd4373aa1 +2017,Tucuman,II.5.1,11.341714999999999,TJ,N2O,2.0,kg/TJ,22.683429999999998,Naphtha combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,e5811bee-1d77-3bb2-9b58-58e8163e703f +2017,Buenos Aires,II.2.1,100.55807999999999,TJ,CO2,74100.0,kg/TJ,7451353.727999999,Gas Oil combustion consumption by railway transport,AR-B,SESCO,annual,kg,4cdcf79b-d477-3a2d-819e-f74484705263 +2017,Buenos Aires,II.2.1,100.55807999999999,TJ,CH4,3.9,kg/TJ,392.17651199999995,Gas Oil combustion consumption by railway transport,AR-B,SESCO,annual,kg,abd12c90-52e4-3831-9ea1-9593e297ba68 +2017,Buenos Aires,II.2.1,100.55807999999999,TJ,N2O,3.9,kg/TJ,392.17651199999995,Gas Oil combustion consumption by railway transport,AR-B,SESCO,annual,kg,abd12c90-52e4-3831-9ea1-9593e297ba68 +2017,Capital Federal,II.2.1,3.6119999999999997,TJ,CO2,74100.0,kg/TJ,267649.19999999995,Gas Oil combustion consumption by railway transport,AR-C,SESCO,annual,kg,2e523b84-b3a0-30eb-a4a8-ce8b23af1221 +2017,Capital Federal,II.2.1,3.6119999999999997,TJ,CH4,3.9,kg/TJ,14.086799999999998,Gas Oil combustion consumption by railway transport,AR-C,SESCO,annual,kg,1110eb30-949d-38f8-bb7e-ec4144788e1f +2017,Capital Federal,II.2.1,3.6119999999999997,TJ,N2O,3.9,kg/TJ,14.086799999999998,Gas Oil combustion consumption by railway transport,AR-C,SESCO,annual,kg,1110eb30-949d-38f8-bb7e-ec4144788e1f +2017,La Pampa,II.2.1,18.02388,TJ,CO2,74100.0,kg/TJ,1335569.508,Gas Oil combustion consumption by railway transport,AR-L,SESCO,annual,kg,e8842bd7-fd68-3480-9409-800d875ebc26 +2017,La Pampa,II.2.1,18.02388,TJ,CH4,3.9,kg/TJ,70.29313199999999,Gas Oil combustion consumption by railway transport,AR-L,SESCO,annual,kg,50aa376a-4a89-355c-b775-eb1d90731d21 +2017,La Pampa,II.2.1,18.02388,TJ,N2O,3.9,kg/TJ,70.29313199999999,Gas Oil combustion consumption by railway transport,AR-L,SESCO,annual,kg,50aa376a-4a89-355c-b775-eb1d90731d21 +2017,Santa Fe,II.2.1,193.35036,TJ,CO2,74100.0,kg/TJ,14327261.675999999,Gas Oil combustion consumption by railway transport,AR-S,SESCO,annual,kg,6f3718a1-5f96-3aa9-b7f5-cf3968097e64 +2017,Santa Fe,II.2.1,193.35036,TJ,CH4,3.9,kg/TJ,754.0664039999999,Gas Oil combustion consumption by railway transport,AR-S,SESCO,annual,kg,5c178d28-189f-32bc-b599-74f2c22202f8 +2017,Santa Fe,II.2.1,193.35036,TJ,N2O,3.9,kg/TJ,754.0664039999999,Gas Oil combustion consumption by railway transport,AR-S,SESCO,annual,kg,5c178d28-189f-32bc-b599-74f2c22202f8 +2017,Santiago del Estero,II.2.1,27.30672,TJ,CO2,74100.0,kg/TJ,2023427.9519999998,Gas Oil combustion consumption by railway transport,AR-G,SESCO,annual,kg,ca577714-2050-3456-a66b-5085d99edd97 +2017,Santiago del Estero,II.2.1,27.30672,TJ,CH4,3.9,kg/TJ,106.496208,Gas Oil combustion consumption by railway transport,AR-G,SESCO,annual,kg,4a8fa62d-8ea1-3882-aee6-7019a6d51918 +2017,Santiago del Estero,II.2.1,27.30672,TJ,N2O,3.9,kg/TJ,106.496208,Gas Oil combustion consumption by railway transport,AR-G,SESCO,annual,kg,4a8fa62d-8ea1-3882-aee6-7019a6d51918 +2017,Tucuman,II.2.1,6.42936,TJ,CO2,74100.0,kg/TJ,476415.576,Gas Oil combustion consumption by railway transport,AR-T,SESCO,annual,kg,1cc5eedf-3bc6-37f9-98e2-f7cdfd470bb0 +2017,Tucuman,II.2.1,6.42936,TJ,CH4,3.9,kg/TJ,25.074504,Gas Oil combustion consumption by railway transport,AR-T,SESCO,annual,kg,fb86a85a-b72f-3184-baad-11f135b43552 +2017,Tucuman,II.2.1,6.42936,TJ,N2O,3.9,kg/TJ,25.074504,Gas Oil combustion consumption by railway transport,AR-T,SESCO,annual,kg,fb86a85a-b72f-3184-baad-11f135b43552 +2017,Buenos Aires,II.1.1,2351.5926,TJ,CO2,74100.0,kg/TJ,174253011.66,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,03cef51b-c1b3-3fcf-916a-3ee8939fc9eb +2017,Buenos Aires,II.1.1,2351.5926,TJ,CH4,3.9,kg/TJ,9171.21114,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,243e14df-5d28-349b-a26f-5de45eb98cd6 +2017,Buenos Aires,II.1.1,2351.5926,TJ,N2O,3.9,kg/TJ,9171.21114,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,243e14df-5d28-349b-a26f-5de45eb98cd6 +2017,Capital Federal,II.1.1,261.25596,TJ,CO2,74100.0,kg/TJ,19359066.636,Gas Oil combustion consumption by freight transport,AR-C,SESCO,annual,kg,aefa53cd-e65c-3230-80ec-22a8829847d0 +2017,Capital Federal,II.1.1,261.25596,TJ,CH4,3.9,kg/TJ,1018.8982440000001,Gas Oil combustion consumption by freight transport,AR-C,SESCO,annual,kg,b4bf2dbd-114b-3337-addd-535c3bc5737f +2017,Capital Federal,II.1.1,261.25596,TJ,N2O,3.9,kg/TJ,1018.8982440000001,Gas Oil combustion consumption by freight transport,AR-C,SESCO,annual,kg,b4bf2dbd-114b-3337-addd-535c3bc5737f +2017,Catamarca,II.1.1,36.697919999999996,TJ,CO2,74100.0,kg/TJ,2719315.8719999995,Gas Oil combustion consumption by freight transport,AR-K,SESCO,annual,kg,65f29ba7-cc68-3a33-843c-e44b7eba3da4 +2017,Catamarca,II.1.1,36.697919999999996,TJ,CH4,3.9,kg/TJ,143.12188799999998,Gas Oil combustion consumption by freight transport,AR-K,SESCO,annual,kg,92de4f81-bba9-3b6d-b345-064c55496d88 +2017,Catamarca,II.1.1,36.697919999999996,TJ,N2O,3.9,kg/TJ,143.12188799999998,Gas Oil combustion consumption by freight transport,AR-K,SESCO,annual,kg,92de4f81-bba9-3b6d-b345-064c55496d88 +2017,Chaco,II.1.1,53.85492,TJ,CO2,74100.0,kg/TJ,3990649.572,Gas Oil combustion consumption by freight transport,AR-H,SESCO,annual,kg,aae168ea-695b-38b0-8e2a-0299c28731d5 +2017,Chaco,II.1.1,53.85492,TJ,CH4,3.9,kg/TJ,210.034188,Gas Oil combustion consumption by freight transport,AR-H,SESCO,annual,kg,a97834cc-d3dc-39a7-9e71-95881420b732 +2017,Chaco,II.1.1,53.85492,TJ,N2O,3.9,kg/TJ,210.034188,Gas Oil combustion consumption by freight transport,AR-H,SESCO,annual,kg,a97834cc-d3dc-39a7-9e71-95881420b732 +2017,Chubut,II.1.1,20.87736,TJ,CO2,74100.0,kg/TJ,1547012.376,Gas Oil combustion consumption by freight transport,AR-U,SESCO,annual,kg,70f71f60-ae08-3271-8677-1fc067412b30 +2017,Chubut,II.1.1,20.87736,TJ,CH4,3.9,kg/TJ,81.42170399999999,Gas Oil combustion consumption by freight transport,AR-U,SESCO,annual,kg,6f6f6d49-978f-3d62-a723-b9ef9e3cbaef +2017,Chubut,II.1.1,20.87736,TJ,N2O,3.9,kg/TJ,81.42170399999999,Gas Oil combustion consumption by freight transport,AR-U,SESCO,annual,kg,6f6f6d49-978f-3d62-a723-b9ef9e3cbaef +2017,Corrientes,II.1.1,64.43808,TJ,CO2,74100.0,kg/TJ,4774861.728,Gas Oil combustion consumption by freight transport,AR-W,SESCO,annual,kg,2f50d9b3-7d34-3be3-b706-bb364272abcd +2017,Corrientes,II.1.1,64.43808,TJ,CH4,3.9,kg/TJ,251.30851199999998,Gas Oil combustion consumption by freight transport,AR-W,SESCO,annual,kg,e0260274-9b3f-344b-8a4b-7ec9eb7e10ae +2017,Corrientes,II.1.1,64.43808,TJ,N2O,3.9,kg/TJ,251.30851199999998,Gas Oil combustion consumption by freight transport,AR-W,SESCO,annual,kg,e0260274-9b3f-344b-8a4b-7ec9eb7e10ae +2017,Córdoba,II.1.1,645.2837999999999,TJ,CO2,74100.0,kg/TJ,47815529.58,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,f8e266ab-76af-311e-9969-5bdbdc47ec6b +2017,Córdoba,II.1.1,645.2837999999999,TJ,CH4,3.9,kg/TJ,2516.6068199999995,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,ffd81fde-8d7e-34d6-88aa-2894da1de65c +2017,Córdoba,II.1.1,645.2837999999999,TJ,N2O,3.9,kg/TJ,2516.6068199999995,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,ffd81fde-8d7e-34d6-88aa-2894da1de65c +2017,Entre Rios,II.1.1,214.08324,TJ,CO2,74100.0,kg/TJ,15863568.083999999,Gas Oil combustion consumption by freight transport,AR-E,SESCO,annual,kg,6fdf9f9e-b1de-326e-8ab9-b4466c54b329 +2017,Entre Rios,II.1.1,214.08324,TJ,CH4,3.9,kg/TJ,834.924636,Gas Oil combustion consumption by freight transport,AR-E,SESCO,annual,kg,9d29bdc1-d03f-3a78-b098-9a68e199169b +2017,Entre Rios,II.1.1,214.08324,TJ,N2O,3.9,kg/TJ,834.924636,Gas Oil combustion consumption by freight transport,AR-E,SESCO,annual,kg,9d29bdc1-d03f-3a78-b098-9a68e199169b +2017,Formosa,II.1.1,4.6956,TJ,CO2,74100.0,kg/TJ,347943.95999999996,Gas Oil combustion consumption by freight transport,AR-P,SESCO,annual,kg,e6ac4cb8-bce5-3a14-8a2d-cf992ff9c5cf +2017,Formosa,II.1.1,4.6956,TJ,CH4,3.9,kg/TJ,18.312839999999998,Gas Oil combustion consumption by freight transport,AR-P,SESCO,annual,kg,4f116e71-bacc-3c40-8355-5f18c3a91679 +2017,Formosa,II.1.1,4.6956,TJ,N2O,3.9,kg/TJ,18.312839999999998,Gas Oil combustion consumption by freight transport,AR-P,SESCO,annual,kg,4f116e71-bacc-3c40-8355-5f18c3a91679 +2017,Jujuy,II.1.1,2.81736,TJ,CO2,74100.0,kg/TJ,208766.376,Gas Oil combustion consumption by freight transport,AR-Y,SESCO,annual,kg,c4182bd5-c49c-30bc-b943-4b0d788ec553 +2017,Jujuy,II.1.1,2.81736,TJ,CH4,3.9,kg/TJ,10.987703999999999,Gas Oil combustion consumption by freight transport,AR-Y,SESCO,annual,kg,c8e4aaaa-079c-3abd-8ca7-ce934eacf3ca +2017,Jujuy,II.1.1,2.81736,TJ,N2O,3.9,kg/TJ,10.987703999999999,Gas Oil combustion consumption by freight transport,AR-Y,SESCO,annual,kg,c8e4aaaa-079c-3abd-8ca7-ce934eacf3ca +2017,La Pampa,II.1.1,10.4748,TJ,CO2,74100.0,kg/TJ,776182.68,Gas Oil combustion consumption by freight transport,AR-L,SESCO,annual,kg,bfb8cbed-ab72-31e5-98ef-3d66e39efa2a +2017,La Pampa,II.1.1,10.4748,TJ,CH4,3.9,kg/TJ,40.85172,Gas Oil combustion consumption by freight transport,AR-L,SESCO,annual,kg,2aa2ff6c-a620-3d69-9328-fd1cc3fee167 +2017,La Pampa,II.1.1,10.4748,TJ,N2O,3.9,kg/TJ,40.85172,Gas Oil combustion consumption by freight transport,AR-L,SESCO,annual,kg,2aa2ff6c-a620-3d69-9328-fd1cc3fee167 +2017,La Rioja,II.1.1,4.04544,TJ,CO2,74100.0,kg/TJ,299767.104,Gas Oil combustion consumption by freight transport,AR-F,SESCO,annual,kg,ad4ffb32-4d51-3bf6-a193-b56cad287803 +2017,La Rioja,II.1.1,4.04544,TJ,CH4,3.9,kg/TJ,15.777216000000001,Gas Oil combustion consumption by freight transport,AR-F,SESCO,annual,kg,f07b412b-1708-3532-b51d-b5c12e689636 +2017,La Rioja,II.1.1,4.04544,TJ,N2O,3.9,kg/TJ,15.777216000000001,Gas Oil combustion consumption by freight transport,AR-F,SESCO,annual,kg,f07b412b-1708-3532-b51d-b5c12e689636 +2017,Mendoza,II.1.1,48.4008,TJ,CO2,74100.0,kg/TJ,3586499.28,Gas Oil combustion consumption by freight transport,AR-M,SESCO,annual,kg,170e178a-c1e8-331b-8fcb-c7d173161fc7 +2017,Mendoza,II.1.1,48.4008,TJ,CH4,3.9,kg/TJ,188.76312,Gas Oil combustion consumption by freight transport,AR-M,SESCO,annual,kg,f44fb8b0-aac8-30f8-aca3-a7371ba676df +2017,Mendoza,II.1.1,48.4008,TJ,N2O,3.9,kg/TJ,188.76312,Gas Oil combustion consumption by freight transport,AR-M,SESCO,annual,kg,f44fb8b0-aac8-30f8-aca3-a7371ba676df +2017,Misiones,II.1.1,56.13048,TJ,CO2,74100.0,kg/TJ,4159268.568,Gas Oil combustion consumption by freight transport,AR-N,SESCO,annual,kg,082d578c-30ef-34e8-bd13-158489d4ce05 +2017,Misiones,II.1.1,56.13048,TJ,CH4,3.9,kg/TJ,218.908872,Gas Oil combustion consumption by freight transport,AR-N,SESCO,annual,kg,0ae57fd6-a2d7-3691-aa6a-10662642a453 +2017,Misiones,II.1.1,56.13048,TJ,N2O,3.9,kg/TJ,218.908872,Gas Oil combustion consumption by freight transport,AR-N,SESCO,annual,kg,0ae57fd6-a2d7-3691-aa6a-10662642a453 +2017,Neuquén,II.1.1,0.7223999999999999,TJ,CO2,74100.0,kg/TJ,53529.84,Gas Oil combustion consumption by freight transport,AR-Q,SESCO,annual,kg,c9168f0b-0249-3c48-905d-65bcb3cf68b8 +2017,Neuquén,II.1.1,0.7223999999999999,TJ,CH4,3.9,kg/TJ,2.81736,Gas Oil combustion consumption by freight transport,AR-Q,SESCO,annual,kg,1a7f15fd-0936-3977-84c6-d083887424bd +2017,Neuquén,II.1.1,0.7223999999999999,TJ,N2O,3.9,kg/TJ,2.81736,Gas Oil combustion consumption by freight transport,AR-Q,SESCO,annual,kg,1a7f15fd-0936-3977-84c6-d083887424bd +2017,Rio Negro,II.1.1,103.15872,TJ,CO2,74100.0,kg/TJ,7644061.152,Gas Oil combustion consumption by freight transport,AR-R,SESCO,annual,kg,eacefd7b-8bd6-3834-9cb8-e4cb3103f2fc +2017,Rio Negro,II.1.1,103.15872,TJ,CH4,3.9,kg/TJ,402.319008,Gas Oil combustion consumption by freight transport,AR-R,SESCO,annual,kg,3a2404c0-1f3e-31b0-9683-3f393e6ebd08 +2017,Rio Negro,II.1.1,103.15872,TJ,N2O,3.9,kg/TJ,402.319008,Gas Oil combustion consumption by freight transport,AR-R,SESCO,annual,kg,3a2404c0-1f3e-31b0-9683-3f393e6ebd08 +2017,Salta,II.1.1,30.37692,TJ,CO2,74100.0,kg/TJ,2250929.772,Gas Oil combustion consumption by freight transport,AR-A,SESCO,annual,kg,1998518f-ffb1-3077-b31f-91b1a141dc11 +2017,Salta,II.1.1,30.37692,TJ,CH4,3.9,kg/TJ,118.46998799999999,Gas Oil combustion consumption by freight transport,AR-A,SESCO,annual,kg,9e84bf17-6acf-3498-8227-3f8f37ad03e3 +2017,Salta,II.1.1,30.37692,TJ,N2O,3.9,kg/TJ,118.46998799999999,Gas Oil combustion consumption by freight transport,AR-A,SESCO,annual,kg,9e84bf17-6acf-3498-8227-3f8f37ad03e3 +2017,San Juan,II.1.1,9.60792,TJ,CO2,74100.0,kg/TJ,711946.872,Gas Oil combustion consumption by freight transport,AR-J,SESCO,annual,kg,4fd54572-4848-39f0-ba16-8f81727f444e +2017,San Juan,II.1.1,9.60792,TJ,CH4,3.9,kg/TJ,37.470888,Gas Oil combustion consumption by freight transport,AR-J,SESCO,annual,kg,c23e2d65-eeeb-3199-a355-602f9b98b4a5 +2017,San Juan,II.1.1,9.60792,TJ,N2O,3.9,kg/TJ,37.470888,Gas Oil combustion consumption by freight transport,AR-J,SESCO,annual,kg,c23e2d65-eeeb-3199-a355-602f9b98b4a5 +2017,San Luis,II.1.1,68.55575999999999,TJ,CO2,74100.0,kg/TJ,5079981.816,Gas Oil combustion consumption by freight transport,AR-D,SESCO,annual,kg,7df4ae95-92f0-3110-b06c-cd5a2dd09f03 +2017,San Luis,II.1.1,68.55575999999999,TJ,CH4,3.9,kg/TJ,267.367464,Gas Oil combustion consumption by freight transport,AR-D,SESCO,annual,kg,efb4124d-7341-344d-91ec-71298259c4b4 +2017,San Luis,II.1.1,68.55575999999999,TJ,N2O,3.9,kg/TJ,267.367464,Gas Oil combustion consumption by freight transport,AR-D,SESCO,annual,kg,efb4124d-7341-344d-91ec-71298259c4b4 +2017,Santa Fe,II.1.1,528.7968,TJ,CO2,74100.0,kg/TJ,39183842.879999995,Gas Oil combustion consumption by freight transport,AR-S,SESCO,annual,kg,5c5b12b3-52b2-385f-8277-2682846e2a0c +2017,Santa Fe,II.1.1,528.7968,TJ,CH4,3.9,kg/TJ,2062.30752,Gas Oil combustion consumption by freight transport,AR-S,SESCO,annual,kg,28b190f1-8582-39a1-b64b-afbcc2544889 +2017,Santa Fe,II.1.1,528.7968,TJ,N2O,3.9,kg/TJ,2062.30752,Gas Oil combustion consumption by freight transport,AR-S,SESCO,annual,kg,28b190f1-8582-39a1-b64b-afbcc2544889 +2017,Santiago del Estero,II.1.1,40.743359999999996,TJ,CO2,74100.0,kg/TJ,3019082.976,Gas Oil combustion consumption by freight transport,AR-G,SESCO,annual,kg,9fcda7f8-cbba-3ed4-a42d-369c44ccad5a +2017,Santiago del Estero,II.1.1,40.743359999999996,TJ,CH4,3.9,kg/TJ,158.89910399999997,Gas Oil combustion consumption by freight transport,AR-G,SESCO,annual,kg,516b0638-6c3b-3862-9bc2-5a0d29fc8ffd +2017,Santiago del Estero,II.1.1,40.743359999999996,TJ,N2O,3.9,kg/TJ,158.89910399999997,Gas Oil combustion consumption by freight transport,AR-G,SESCO,annual,kg,516b0638-6c3b-3862-9bc2-5a0d29fc8ffd +2017,Tucuman,II.1.1,75.02123999999999,TJ,CO2,74100.0,kg/TJ,5559073.884,Gas Oil combustion consumption by freight transport,AR-T,SESCO,annual,kg,fe1f3a2b-9666-325c-9149-5490eb4d886e +2017,Tucuman,II.1.1,75.02123999999999,TJ,CH4,3.9,kg/TJ,292.582836,Gas Oil combustion consumption by freight transport,AR-T,SESCO,annual,kg,c8c3ed77-74e5-3637-8104-fd6a970b48c3 +2017,Tucuman,II.1.1,75.02123999999999,TJ,N2O,3.9,kg/TJ,292.582836,Gas Oil combustion consumption by freight transport,AR-T,SESCO,annual,kg,c8c3ed77-74e5-3637-8104-fd6a970b48c3 +2017,Buenos Aires,II.1.1,126.99792,TJ,CO2,74100.0,kg/TJ,9410545.872,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,1360a410-a100-3ed8-8110-1b2f3afbf308 +2017,Buenos Aires,II.1.1,126.99792,TJ,CH4,3.9,kg/TJ,495.291888,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,2ac9c102-4307-3b52-813e-23402e35bf26 +2017,Buenos Aires,II.1.1,126.99792,TJ,N2O,3.9,kg/TJ,495.291888,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,2ac9c102-4307-3b52-813e-23402e35bf26 +2017,Capital Federal,II.1.1,14.19516,TJ,CO2,74100.0,kg/TJ,1051861.356,Gas Oil combustion consumption by freight transport,AR-C,SESCO,annual,kg,5e05e94b-fe38-318a-bf6f-17dee6a2f62d +2017,Capital Federal,II.1.1,14.19516,TJ,CH4,3.9,kg/TJ,55.361124,Gas Oil combustion consumption by freight transport,AR-C,SESCO,annual,kg,36a028ca-244d-3f71-b503-41e20409539d +2017,Capital Federal,II.1.1,14.19516,TJ,N2O,3.9,kg/TJ,55.361124,Gas Oil combustion consumption by freight transport,AR-C,SESCO,annual,kg,36a028ca-244d-3f71-b503-41e20409539d +2017,Catamarca,II.1.1,0.50568,TJ,CO2,74100.0,kg/TJ,37470.888,Gas Oil combustion consumption by freight transport,AR-K,SESCO,annual,kg,2f879b47-794a-321e-b940-24683e313bc5 +2017,Catamarca,II.1.1,0.50568,TJ,CH4,3.9,kg/TJ,1.9721520000000001,Gas Oil combustion consumption by freight transport,AR-K,SESCO,annual,kg,61a92087-6b0a-3461-8ed7-a1498db89eae +2017,Catamarca,II.1.1,0.50568,TJ,N2O,3.9,kg/TJ,1.9721520000000001,Gas Oil combustion consumption by freight transport,AR-K,SESCO,annual,kg,61a92087-6b0a-3461-8ed7-a1498db89eae +2017,Chaco,II.1.1,1.87824,TJ,CO2,74100.0,kg/TJ,139177.584,Gas Oil combustion consumption by freight transport,AR-H,SESCO,annual,kg,3a9b65fc-7bb9-3a83-a236-8b2db5ef8b7e +2017,Chaco,II.1.1,1.87824,TJ,CH4,3.9,kg/TJ,7.325136,Gas Oil combustion consumption by freight transport,AR-H,SESCO,annual,kg,34d11f8f-26a9-3a2d-b3b8-c80bc5e79ca9 +2017,Chaco,II.1.1,1.87824,TJ,N2O,3.9,kg/TJ,7.325136,Gas Oil combustion consumption by freight transport,AR-H,SESCO,annual,kg,34d11f8f-26a9-3a2d-b3b8-c80bc5e79ca9 +2017,Chubut,II.1.1,7.404599999999999,TJ,CO2,74100.0,kg/TJ,548680.86,Gas Oil combustion consumption by freight transport,AR-U,SESCO,annual,kg,cd6a502c-7fc7-3752-b56f-f4f753d0a48b +2017,Chubut,II.1.1,7.404599999999999,TJ,CH4,3.9,kg/TJ,28.877939999999995,Gas Oil combustion consumption by freight transport,AR-U,SESCO,annual,kg,e9487b6f-a500-3545-ba6d-9927d08b8b62 +2017,Chubut,II.1.1,7.404599999999999,TJ,N2O,3.9,kg/TJ,28.877939999999995,Gas Oil combustion consumption by freight transport,AR-U,SESCO,annual,kg,e9487b6f-a500-3545-ba6d-9927d08b8b62 +2017,Corrientes,II.1.1,4.37052,TJ,CO2,74100.0,kg/TJ,323855.532,Gas Oil combustion consumption by freight transport,AR-W,SESCO,annual,kg,a6aa5e55-c3ac-37cb-b9ba-3b60a0a25964 +2017,Corrientes,II.1.1,4.37052,TJ,CH4,3.9,kg/TJ,17.045028,Gas Oil combustion consumption by freight transport,AR-W,SESCO,annual,kg,21e36700-5eb5-325d-99d4-ead79f8f367e +2017,Corrientes,II.1.1,4.37052,TJ,N2O,3.9,kg/TJ,17.045028,Gas Oil combustion consumption by freight transport,AR-W,SESCO,annual,kg,21e36700-5eb5-325d-99d4-ead79f8f367e +2017,Córdoba,II.1.1,21.34692,TJ,CO2,74100.0,kg/TJ,1581806.772,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,ffc89d39-eda1-3488-a595-b2918fec7610 +2017,Córdoba,II.1.1,21.34692,TJ,CH4,3.9,kg/TJ,83.252988,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,bf2ff250-aec8-3f01-83d0-41fb51f28e71 +2017,Córdoba,II.1.1,21.34692,TJ,N2O,3.9,kg/TJ,83.252988,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,bf2ff250-aec8-3f01-83d0-41fb51f28e71 +2017,Entre Rios,II.1.1,10.6554,TJ,CO2,74100.0,kg/TJ,789565.14,Gas Oil combustion consumption by freight transport,AR-E,SESCO,annual,kg,a405c6d1-b6f1-3efb-8b9a-d4c6836ca817 +2017,Entre Rios,II.1.1,10.6554,TJ,CH4,3.9,kg/TJ,41.55606,Gas Oil combustion consumption by freight transport,AR-E,SESCO,annual,kg,c2b8daef-1be2-3472-8808-75fe2f176ac4 +2017,Entre Rios,II.1.1,10.6554,TJ,N2O,3.9,kg/TJ,41.55606,Gas Oil combustion consumption by freight transport,AR-E,SESCO,annual,kg,c2b8daef-1be2-3472-8808-75fe2f176ac4 +2017,Formosa,II.1.1,0.14448,TJ,CO2,74100.0,kg/TJ,10705.967999999999,Gas Oil combustion consumption by freight transport,AR-P,SESCO,annual,kg,3266a5f0-7e94-35e3-a244-85b6bdee65bf +2017,Formosa,II.1.1,0.14448,TJ,CH4,3.9,kg/TJ,0.563472,Gas Oil combustion consumption by freight transport,AR-P,SESCO,annual,kg,b850ec85-6d63-361b-a71b-bd582ee6fb00 +2017,Formosa,II.1.1,0.14448,TJ,N2O,3.9,kg/TJ,0.563472,Gas Oil combustion consumption by freight transport,AR-P,SESCO,annual,kg,b850ec85-6d63-361b-a71b-bd582ee6fb00 +2017,La Pampa,II.1.1,0.5418,TJ,CO2,74100.0,kg/TJ,40147.38,Gas Oil combustion consumption by freight transport,AR-L,SESCO,annual,kg,8bea11b5-260a-31e0-9b47-d09d467faf65 +2017,La Pampa,II.1.1,0.5418,TJ,CH4,3.9,kg/TJ,2.1130199999999997,Gas Oil combustion consumption by freight transport,AR-L,SESCO,annual,kg,333d2d89-a037-3c59-9930-cb4c6875fb58 +2017,La Pampa,II.1.1,0.5418,TJ,N2O,3.9,kg/TJ,2.1130199999999997,Gas Oil combustion consumption by freight transport,AR-L,SESCO,annual,kg,333d2d89-a037-3c59-9930-cb4c6875fb58 +2017,La Rioja,II.1.1,0.14448,TJ,CO2,74100.0,kg/TJ,10705.967999999999,Gas Oil combustion consumption by freight transport,AR-F,SESCO,annual,kg,0f9fc0a2-18fb-3576-a802-5a2d657ce0e3 +2017,La Rioja,II.1.1,0.14448,TJ,CH4,3.9,kg/TJ,0.563472,Gas Oil combustion consumption by freight transport,AR-F,SESCO,annual,kg,2624729b-8f4c-3a70-b11b-f9b1e0be4e4f +2017,La Rioja,II.1.1,0.14448,TJ,N2O,3.9,kg/TJ,0.563472,Gas Oil combustion consumption by freight transport,AR-F,SESCO,annual,kg,2624729b-8f4c-3a70-b11b-f9b1e0be4e4f +2017,Mendoza,II.1.1,0.7223999999999999,TJ,CO2,74100.0,kg/TJ,53529.84,Gas Oil combustion consumption by freight transport,AR-M,SESCO,annual,kg,596be2ac-a9b6-3333-8828-17dfc6c376d9 +2017,Mendoza,II.1.1,0.7223999999999999,TJ,CH4,3.9,kg/TJ,2.81736,Gas Oil combustion consumption by freight transport,AR-M,SESCO,annual,kg,1bbdd795-933b-3bb8-bf13-80aa435a5d13 +2017,Mendoza,II.1.1,0.7223999999999999,TJ,N2O,3.9,kg/TJ,2.81736,Gas Oil combustion consumption by freight transport,AR-M,SESCO,annual,kg,1bbdd795-933b-3bb8-bf13-80aa435a5d13 +2017,Misiones,II.1.1,1.76988,TJ,CO2,74100.0,kg/TJ,131148.10799999998,Gas Oil combustion consumption by freight transport,AR-N,SESCO,annual,kg,27c84913-bf89-30d4-bba2-9044bda805d2 +2017,Misiones,II.1.1,1.76988,TJ,CH4,3.9,kg/TJ,6.902531999999999,Gas Oil combustion consumption by freight transport,AR-N,SESCO,annual,kg,9422ae97-c7b7-3b83-8301-5d8a9d37099b +2017,Misiones,II.1.1,1.76988,TJ,N2O,3.9,kg/TJ,6.902531999999999,Gas Oil combustion consumption by freight transport,AR-N,SESCO,annual,kg,9422ae97-c7b7-3b83-8301-5d8a9d37099b +2017,Rio Negro,II.1.1,24.95892,TJ,CO2,74100.0,kg/TJ,1849455.9719999998,Gas Oil combustion consumption by freight transport,AR-R,SESCO,annual,kg,76a94174-8b9b-3c8e-926d-e0823931a1b1 +2017,Rio Negro,II.1.1,24.95892,TJ,CH4,3.9,kg/TJ,97.339788,Gas Oil combustion consumption by freight transport,AR-R,SESCO,annual,kg,e84894c9-8d6d-3a6c-99e0-530744ada256 +2017,Rio Negro,II.1.1,24.95892,TJ,N2O,3.9,kg/TJ,97.339788,Gas Oil combustion consumption by freight transport,AR-R,SESCO,annual,kg,e84894c9-8d6d-3a6c-99e0-530744ada256 +2017,San Juan,II.1.1,0.9029999999999999,TJ,CO2,74100.0,kg/TJ,66912.29999999999,Gas Oil combustion consumption by freight transport,AR-J,SESCO,annual,kg,357e7c46-c592-328e-b1aa-1ce9836972dc +2017,San Juan,II.1.1,0.9029999999999999,TJ,CH4,3.9,kg/TJ,3.5216999999999996,Gas Oil combustion consumption by freight transport,AR-J,SESCO,annual,kg,aa13b538-6d84-3d12-b95d-8e620d68af50 +2017,San Juan,II.1.1,0.9029999999999999,TJ,N2O,3.9,kg/TJ,3.5216999999999996,Gas Oil combustion consumption by freight transport,AR-J,SESCO,annual,kg,aa13b538-6d84-3d12-b95d-8e620d68af50 +2017,San Luis,II.1.1,2.27556,TJ,CO2,74100.0,kg/TJ,168618.996,Gas Oil combustion consumption by freight transport,AR-D,SESCO,annual,kg,f6474bb7-9794-3b57-b123-bb6f981bea5a +2017,San Luis,II.1.1,2.27556,TJ,CH4,3.9,kg/TJ,8.874684,Gas Oil combustion consumption by freight transport,AR-D,SESCO,annual,kg,3d0225f9-fc33-372b-abb4-c9e9b6a2fe08 +2017,San Luis,II.1.1,2.27556,TJ,N2O,3.9,kg/TJ,8.874684,Gas Oil combustion consumption by freight transport,AR-D,SESCO,annual,kg,3d0225f9-fc33-372b-abb4-c9e9b6a2fe08 +2017,Santa Fe,II.1.1,72.52896,TJ,CO2,74100.0,kg/TJ,5374395.936,Gas Oil combustion consumption by freight transport,AR-S,SESCO,annual,kg,3a6b22a1-d066-3fee-8de5-6c6dfb8b93a2 +2017,Santa Fe,II.1.1,72.52896,TJ,CH4,3.9,kg/TJ,282.86294399999997,Gas Oil combustion consumption by freight transport,AR-S,SESCO,annual,kg,d6146a43-e5e8-36c4-8f6b-19e3e4d1f75a +2017,Santa Fe,II.1.1,72.52896,TJ,N2O,3.9,kg/TJ,282.86294399999997,Gas Oil combustion consumption by freight transport,AR-S,SESCO,annual,kg,d6146a43-e5e8-36c4-8f6b-19e3e4d1f75a +2017,Santiago del Estero,II.1.1,2.6728799999999997,TJ,CO2,74100.0,kg/TJ,198060.40799999997,Gas Oil combustion consumption by freight transport,AR-G,SESCO,annual,kg,dca22fa8-76ad-3071-9ac4-2b41e7618396 +2017,Santiago del Estero,II.1.1,2.6728799999999997,TJ,CH4,3.9,kg/TJ,10.424231999999998,Gas Oil combustion consumption by freight transport,AR-G,SESCO,annual,kg,ce97b23f-b451-3d59-bb7b-f67cf5294a5a +2017,Santiago del Estero,II.1.1,2.6728799999999997,TJ,N2O,3.9,kg/TJ,10.424231999999998,Gas Oil combustion consumption by freight transport,AR-G,SESCO,annual,kg,ce97b23f-b451-3d59-bb7b-f67cf5294a5a +2017,Tucuman,II.1.1,0.68628,TJ,CO2,74100.0,kg/TJ,50853.348,Gas Oil combustion consumption by freight transport,AR-T,SESCO,annual,kg,c021b19e-a9f5-3ab7-8709-f4a98c171122 +2017,Tucuman,II.1.1,0.68628,TJ,CH4,3.9,kg/TJ,2.676492,Gas Oil combustion consumption by freight transport,AR-T,SESCO,annual,kg,ef12b4a6-156e-3826-9bc9-a9db162e2d38 +2017,Tucuman,II.1.1,0.68628,TJ,N2O,3.9,kg/TJ,2.676492,Gas Oil combustion consumption by freight transport,AR-T,SESCO,annual,kg,ef12b4a6-156e-3826-9bc9-a9db162e2d38 +2017,Buenos Aires,II.1.1,9.422875,TJ,CO2,73300.0,kg/TJ,690696.7374999999,Naphtha combustion consumption by freight transport,AR-B,SESCO,annual,kg,ba4fc7f5-e450-3a64-97a2-7ee62742def1 +2017,Buenos Aires,II.1.1,9.422875,TJ,CH4,0.5,kg/TJ,4.7114375,Naphtha combustion consumption by freight transport,AR-B,SESCO,annual,kg,5efd245c-8c3f-3cd8-bc2b-1d7c1898e317 +2017,Buenos Aires,II.1.1,9.422875,TJ,N2O,2.0,kg/TJ,18.84575,Naphtha combustion consumption by freight transport,AR-B,SESCO,annual,kg,013c58c7-02c6-3406-b85c-6111d285007e +2017,Capital Federal,II.1.1,4.557245,TJ,CO2,73300.0,kg/TJ,334046.0585,Naphtha combustion consumption by freight transport,AR-C,SESCO,annual,kg,16ee55af-0a60-367b-83e3-e7804d5d6f43 +2017,Capital Federal,II.1.1,4.557245,TJ,CH4,0.5,kg/TJ,2.2786225,Naphtha combustion consumption by freight transport,AR-C,SESCO,annual,kg,3b545c86-4286-39a8-9140-0dc12fc17ec8 +2017,Capital Federal,II.1.1,4.557245,TJ,N2O,2.0,kg/TJ,9.11449,Naphtha combustion consumption by freight transport,AR-C,SESCO,annual,kg,7e640380-514b-309b-aebe-17b2c34e3f4d +2017,Chubut,II.1.1,0.034265,TJ,CO2,73300.0,kg/TJ,2511.6245,Naphtha combustion consumption by freight transport,AR-U,SESCO,annual,kg,4831aa13-e3c0-3f0a-b3cb-9e268cce8419 +2017,Chubut,II.1.1,0.034265,TJ,CH4,0.5,kg/TJ,0.0171325,Naphtha combustion consumption by freight transport,AR-U,SESCO,annual,kg,a4ecb6f9-f774-3824-8598-fab09b84bd94 +2017,Chubut,II.1.1,0.034265,TJ,N2O,2.0,kg/TJ,0.06853,Naphtha combustion consumption by freight transport,AR-U,SESCO,annual,kg,3e0f81a5-7402-3f31-a6d9-bd35626179c0 +2017,Córdoba,II.1.1,1.64472,TJ,CO2,73300.0,kg/TJ,120557.976,Naphtha combustion consumption by freight transport,AR-X,SESCO,annual,kg,5f526f4d-bbdc-3af5-8e01-f4462bf6fb13 +2017,Córdoba,II.1.1,1.64472,TJ,CH4,0.5,kg/TJ,0.82236,Naphtha combustion consumption by freight transport,AR-X,SESCO,annual,kg,8a683456-ffb1-3dfd-856d-50c661e8bdfa +2017,Córdoba,II.1.1,1.64472,TJ,N2O,2.0,kg/TJ,3.28944,Naphtha combustion consumption by freight transport,AR-X,SESCO,annual,kg,415b0cd8-39b9-3dcd-900b-a0806573916a +2017,Santa Fe,II.1.1,0.30838499999999996,TJ,CO2,73300.0,kg/TJ,22604.620499999997,Naphtha combustion consumption by freight transport,AR-S,SESCO,annual,kg,a88aa73f-6daa-3a9f-823f-88d143063664 +2017,Santa Fe,II.1.1,0.30838499999999996,TJ,CH4,0.5,kg/TJ,0.15419249999999998,Naphtha combustion consumption by freight transport,AR-S,SESCO,annual,kg,f4b624d8-0ba0-3c2c-bded-e00ef3872954 +2017,Santa Fe,II.1.1,0.30838499999999996,TJ,N2O,2.0,kg/TJ,0.6167699999999999,Naphtha combustion consumption by freight transport,AR-S,SESCO,annual,kg,3fbc1776-1ff3-3f97-a136-d351409a9b4b +2017,Buenos Aires,II.1.1,7.983745,TJ,CO2,73300.0,kg/TJ,585208.5085,Naphtha combustion consumption by freight transport,AR-B,SESCO,annual,kg,63e594cf-bebf-3287-96d0-22206496bb4a +2017,Buenos Aires,II.1.1,7.983745,TJ,CH4,0.5,kg/TJ,3.9918725,Naphtha combustion consumption by freight transport,AR-B,SESCO,annual,kg,7ff223a4-4196-3e63-b53a-a4396e2131af +2017,Buenos Aires,II.1.1,7.983745,TJ,N2O,2.0,kg/TJ,15.96749,Naphtha combustion consumption by freight transport,AR-B,SESCO,annual,kg,a671cd75-6cb2-35f6-97bb-262014af6123 +2017,Capital Federal,II.1.1,4.5915099999999995,TJ,CO2,73300.0,kg/TJ,336557.68299999996,Naphtha combustion consumption by freight transport,AR-C,SESCO,annual,kg,ac46751e-fb56-37ca-b7dc-ad3e81c8daca +2017,Capital Federal,II.1.1,4.5915099999999995,TJ,CH4,0.5,kg/TJ,2.2957549999999998,Naphtha combustion consumption by freight transport,AR-C,SESCO,annual,kg,387e61a0-a8af-35d9-ace8-a7b958c058a8 +2017,Capital Federal,II.1.1,4.5915099999999995,TJ,N2O,2.0,kg/TJ,9.183019999999999,Naphtha combustion consumption by freight transport,AR-C,SESCO,annual,kg,ea7dc00e-2397-3b29-b340-e0ab5558029c +2017,Chubut,II.1.1,0.034265,TJ,CO2,73300.0,kg/TJ,2511.6245,Naphtha combustion consumption by freight transport,AR-U,SESCO,annual,kg,4831aa13-e3c0-3f0a-b3cb-9e268cce8419 +2017,Chubut,II.1.1,0.034265,TJ,CH4,0.5,kg/TJ,0.0171325,Naphtha combustion consumption by freight transport,AR-U,SESCO,annual,kg,a4ecb6f9-f774-3824-8598-fab09b84bd94 +2017,Chubut,II.1.1,0.034265,TJ,N2O,2.0,kg/TJ,0.06853,Naphtha combustion consumption by freight transport,AR-U,SESCO,annual,kg,3e0f81a5-7402-3f31-a6d9-bd35626179c0 +2017,Córdoba,II.1.1,1.85031,TJ,CO2,73300.0,kg/TJ,135627.723,Naphtha combustion consumption by freight transport,AR-X,SESCO,annual,kg,73a75a0f-4355-397e-b582-e3ff23016328 +2017,Córdoba,II.1.1,1.85031,TJ,CH4,0.5,kg/TJ,0.925155,Naphtha combustion consumption by freight transport,AR-X,SESCO,annual,kg,1da36a55-8724-37e1-8ccb-03b94752cfee +2017,Córdoba,II.1.1,1.85031,TJ,N2O,2.0,kg/TJ,3.70062,Naphtha combustion consumption by freight transport,AR-X,SESCO,annual,kg,da159de9-b92b-327f-b79d-cd18f400db67 +2017,Santa Fe,II.1.1,1.130745,TJ,CO2,73300.0,kg/TJ,82883.60849999999,Naphtha combustion consumption by freight transport,AR-S,SESCO,annual,kg,9ab1efac-df38-3ce1-a316-0f1e72b08e06 +2017,Santa Fe,II.1.1,1.130745,TJ,CH4,0.5,kg/TJ,0.5653725,Naphtha combustion consumption by freight transport,AR-S,SESCO,annual,kg,934b3f09-92fb-3bdb-9868-a7571b171037 +2017,Santa Fe,II.1.1,1.130745,TJ,N2O,2.0,kg/TJ,2.26149,Naphtha combustion consumption by freight transport,AR-S,SESCO,annual,kg,8d524835-c206-36ed-a6d3-539cdfe504c1 +2017,Buenos Aires,II.1.1,635.27856,TJ,CO2,74100.0,kg/TJ,47074141.296,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,a0262c9d-49cf-3f8e-b692-c32d800535b4 +2017,Buenos Aires,II.1.1,635.27856,TJ,CH4,3.9,kg/TJ,2477.5863839999997,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,b3abcaaf-b15c-373e-979f-e2d737dd8c30 +2017,Buenos Aires,II.1.1,635.27856,TJ,N2O,3.9,kg/TJ,2477.5863839999997,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,b3abcaaf-b15c-373e-979f-e2d737dd8c30 +2017,Capital Federal,II.1.1,945.9466799999999,TJ,CO2,74100.0,kg/TJ,70094648.98799999,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,f4a1a855-2d68-32f7-bf6a-949901d61b77 +2017,Capital Federal,II.1.1,945.9466799999999,TJ,CH4,3.9,kg/TJ,3689.1920519999994,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,c82dc6ca-641a-3f2a-a202-408623e909ee +2017,Capital Federal,II.1.1,945.9466799999999,TJ,N2O,3.9,kg/TJ,3689.1920519999994,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,c82dc6ca-641a-3f2a-a202-408623e909ee +2017,Catamarca,II.1.1,0.28896,TJ,CO2,74100.0,kg/TJ,21411.935999999998,Gas Oil combustion consumption by public passenger transport,AR-K,SESCO,annual,kg,9e6bb34e-b818-3b6a-8c14-d80f8d52bdc5 +2017,Catamarca,II.1.1,0.28896,TJ,CH4,3.9,kg/TJ,1.126944,Gas Oil combustion consumption by public passenger transport,AR-K,SESCO,annual,kg,2aeca832-1095-385a-8e32-082f13ecca68 +2017,Catamarca,II.1.1,0.28896,TJ,N2O,3.9,kg/TJ,1.126944,Gas Oil combustion consumption by public passenger transport,AR-K,SESCO,annual,kg,2aeca832-1095-385a-8e32-082f13ecca68 +2017,Chaco,II.1.1,2.02272,TJ,CO2,74100.0,kg/TJ,149883.552,Gas Oil combustion consumption by public passenger transport,AR-H,SESCO,annual,kg,ca4b26c1-3201-3021-be28-1a083987c666 +2017,Chaco,II.1.1,2.02272,TJ,CH4,3.9,kg/TJ,7.8886080000000005,Gas Oil combustion consumption by public passenger transport,AR-H,SESCO,annual,kg,a78a7b4e-ddda-3369-9f2e-5e6d45726575 +2017,Chaco,II.1.1,2.02272,TJ,N2O,3.9,kg/TJ,7.8886080000000005,Gas Oil combustion consumption by public passenger transport,AR-H,SESCO,annual,kg,a78a7b4e-ddda-3369-9f2e-5e6d45726575 +2017,Chubut,II.1.1,18.20448,TJ,CO2,74100.0,kg/TJ,1348951.968,Gas Oil combustion consumption by public passenger transport,AR-U,SESCO,annual,kg,fb41621e-a11a-32ec-a243-47eddf8495cb +2017,Chubut,II.1.1,18.20448,TJ,CH4,3.9,kg/TJ,70.997472,Gas Oil combustion consumption by public passenger transport,AR-U,SESCO,annual,kg,de800fd1-57ba-3d06-ac87-5acd8fdd19ac +2017,Chubut,II.1.1,18.20448,TJ,N2O,3.9,kg/TJ,70.997472,Gas Oil combustion consumption by public passenger transport,AR-U,SESCO,annual,kg,de800fd1-57ba-3d06-ac87-5acd8fdd19ac +2017,Corrientes,II.1.1,1.19196,TJ,CO2,74100.0,kg/TJ,88324.23599999999,Gas Oil combustion consumption by public passenger transport,AR-W,SESCO,annual,kg,5ed37bc2-0961-372b-82d9-3e77f36e318f +2017,Corrientes,II.1.1,1.19196,TJ,CH4,3.9,kg/TJ,4.648643999999999,Gas Oil combustion consumption by public passenger transport,AR-W,SESCO,annual,kg,6ef3ace8-d016-36b9-b06d-e0f221e0dc23 +2017,Corrientes,II.1.1,1.19196,TJ,N2O,3.9,kg/TJ,4.648643999999999,Gas Oil combustion consumption by public passenger transport,AR-W,SESCO,annual,kg,6ef3ace8-d016-36b9-b06d-e0f221e0dc23 +2017,Córdoba,II.1.1,59.92308,TJ,CO2,74100.0,kg/TJ,4440300.228,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,ffa1bbd1-047f-3a8d-ae2d-6fa8e0113682 +2017,Córdoba,II.1.1,59.92308,TJ,CH4,3.9,kg/TJ,233.700012,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,81c08e7a-e909-3c7c-9f48-302abeccd16c +2017,Córdoba,II.1.1,59.92308,TJ,N2O,3.9,kg/TJ,233.700012,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,81c08e7a-e909-3c7c-9f48-302abeccd16c +2017,Entre Rios,II.1.1,46.34196,TJ,CO2,74100.0,kg/TJ,3433939.236,Gas Oil combustion consumption by public passenger transport,AR-E,SESCO,annual,kg,8abbcc8a-7823-3cf8-b174-63a0fcef4878 +2017,Entre Rios,II.1.1,46.34196,TJ,CH4,3.9,kg/TJ,180.733644,Gas Oil combustion consumption by public passenger transport,AR-E,SESCO,annual,kg,e7cac919-efa0-3ae7-8a40-8dda33eb1057 +2017,Entre Rios,II.1.1,46.34196,TJ,N2O,3.9,kg/TJ,180.733644,Gas Oil combustion consumption by public passenger transport,AR-E,SESCO,annual,kg,e7cac919-efa0-3ae7-8a40-8dda33eb1057 +2017,Formosa,II.1.1,0.07224,TJ,CO2,74100.0,kg/TJ,5352.9839999999995,Gas Oil combustion consumption by public passenger transport,AR-P,SESCO,annual,kg,f4f59301-29bb-3397-a821-3d925d037e51 +2017,Formosa,II.1.1,0.07224,TJ,CH4,3.9,kg/TJ,0.281736,Gas Oil combustion consumption by public passenger transport,AR-P,SESCO,annual,kg,9fd6e638-79a3-3588-8412-63560d92cdb2 +2017,Formosa,II.1.1,0.07224,TJ,N2O,3.9,kg/TJ,0.281736,Gas Oil combustion consumption by public passenger transport,AR-P,SESCO,annual,kg,9fd6e638-79a3-3588-8412-63560d92cdb2 +2017,La Pampa,II.1.1,4.00932,TJ,CO2,74100.0,kg/TJ,297090.61199999996,Gas Oil combustion consumption by public passenger transport,AR-L,SESCO,annual,kg,04c9ebcb-0b50-3e80-9c32-f97f4ee5626c +2017,La Pampa,II.1.1,4.00932,TJ,CH4,3.9,kg/TJ,15.636347999999998,Gas Oil combustion consumption by public passenger transport,AR-L,SESCO,annual,kg,7ed3057c-844d-3e07-8697-9b203aaaeb50 +2017,La Pampa,II.1.1,4.00932,TJ,N2O,3.9,kg/TJ,15.636347999999998,Gas Oil combustion consumption by public passenger transport,AR-L,SESCO,annual,kg,7ed3057c-844d-3e07-8697-9b203aaaeb50 +2017,Mendoza,II.1.1,1.19196,TJ,CO2,74100.0,kg/TJ,88324.23599999999,Gas Oil combustion consumption by public passenger transport,AR-M,SESCO,annual,kg,86c92e06-059c-3e42-9387-071565a595bb +2017,Mendoza,II.1.1,1.19196,TJ,CH4,3.9,kg/TJ,4.648643999999999,Gas Oil combustion consumption by public passenger transport,AR-M,SESCO,annual,kg,a0568891-5f36-3c91-a71f-36ed431a340b +2017,Mendoza,II.1.1,1.19196,TJ,N2O,3.9,kg/TJ,4.648643999999999,Gas Oil combustion consumption by public passenger transport,AR-M,SESCO,annual,kg,a0568891-5f36-3c91-a71f-36ed431a340b +2017,Misiones,II.1.1,196.78176,TJ,CO2,74100.0,kg/TJ,14581528.416,Gas Oil combustion consumption by public passenger transport,AR-N,SESCO,annual,kg,41ee3ed6-8df8-382c-888f-643cdffcdcc6 +2017,Misiones,II.1.1,196.78176,TJ,CH4,3.9,kg/TJ,767.448864,Gas Oil combustion consumption by public passenger transport,AR-N,SESCO,annual,kg,77cc1b8b-32d3-35e4-8c94-36f2da1d4ed6 +2017,Misiones,II.1.1,196.78176,TJ,N2O,3.9,kg/TJ,767.448864,Gas Oil combustion consumption by public passenger transport,AR-N,SESCO,annual,kg,77cc1b8b-32d3-35e4-8c94-36f2da1d4ed6 +2017,Neuquén,II.1.1,1.15584,TJ,CO2,74100.0,kg/TJ,85647.74399999999,Gas Oil combustion consumption by public passenger transport,AR-Q,SESCO,annual,kg,a828ec74-074f-330c-992f-c4fc2e507200 +2017,Neuquén,II.1.1,1.15584,TJ,CH4,3.9,kg/TJ,4.507776,Gas Oil combustion consumption by public passenger transport,AR-Q,SESCO,annual,kg,38097382-31fd-3b6c-998c-0f1b61652d93 +2017,Neuquén,II.1.1,1.15584,TJ,N2O,3.9,kg/TJ,4.507776,Gas Oil combustion consumption by public passenger transport,AR-Q,SESCO,annual,kg,38097382-31fd-3b6c-998c-0f1b61652d93 +2017,Rio Negro,II.1.1,48.83424,TJ,CO2,74100.0,kg/TJ,3618617.184,Gas Oil combustion consumption by public passenger transport,AR-R,SESCO,annual,kg,123ab455-e72c-35be-b5fa-2ec0a044a7dd +2017,Rio Negro,II.1.1,48.83424,TJ,CH4,3.9,kg/TJ,190.453536,Gas Oil combustion consumption by public passenger transport,AR-R,SESCO,annual,kg,cc0ce614-31c3-3bcd-a415-cefe574d87b8 +2017,Rio Negro,II.1.1,48.83424,TJ,N2O,3.9,kg/TJ,190.453536,Gas Oil combustion consumption by public passenger transport,AR-R,SESCO,annual,kg,cc0ce614-31c3-3bcd-a415-cefe574d87b8 +2017,Salta,II.1.1,0.10836,TJ,CO2,74100.0,kg/TJ,8029.476,Gas Oil combustion consumption by public passenger transport,AR-A,SESCO,annual,kg,81d68113-d191-36d2-959d-8c44c6334729 +2017,Salta,II.1.1,0.10836,TJ,CH4,3.9,kg/TJ,0.422604,Gas Oil combustion consumption by public passenger transport,AR-A,SESCO,annual,kg,53f60864-b496-3d8b-93da-a1aa1518f340 +2017,Salta,II.1.1,0.10836,TJ,N2O,3.9,kg/TJ,0.422604,Gas Oil combustion consumption by public passenger transport,AR-A,SESCO,annual,kg,53f60864-b496-3d8b-93da-a1aa1518f340 +2017,San Juan,II.1.1,0.03612,TJ,CO2,74100.0,kg/TJ,2676.4919999999997,Gas Oil combustion consumption by public passenger transport,AR-J,SESCO,annual,kg,f1c36709-d37a-3179-ace9-0637f6c05a1f +2017,San Juan,II.1.1,0.03612,TJ,CH4,3.9,kg/TJ,0.140868,Gas Oil combustion consumption by public passenger transport,AR-J,SESCO,annual,kg,5e76d161-edcd-3406-a470-b0dd11894374 +2017,San Juan,II.1.1,0.03612,TJ,N2O,3.9,kg/TJ,0.140868,Gas Oil combustion consumption by public passenger transport,AR-J,SESCO,annual,kg,5e76d161-edcd-3406-a470-b0dd11894374 +2017,San Luis,II.1.1,0.75852,TJ,CO2,74100.0,kg/TJ,56206.331999999995,Gas Oil combustion consumption by public passenger transport,AR-D,SESCO,annual,kg,0e18d52a-365c-32b6-ab20-a1436128b167 +2017,San Luis,II.1.1,0.75852,TJ,CH4,3.9,kg/TJ,2.9582279999999996,Gas Oil combustion consumption by public passenger transport,AR-D,SESCO,annual,kg,855a7003-daa5-3289-8066-fae37880133b +2017,San Luis,II.1.1,0.75852,TJ,N2O,3.9,kg/TJ,2.9582279999999996,Gas Oil combustion consumption by public passenger transport,AR-D,SESCO,annual,kg,855a7003-daa5-3289-8066-fae37880133b +2017,Santa Fe,II.1.1,198.2988,TJ,CO2,74100.0,kg/TJ,14693941.08,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,f0290b39-6791-3ba7-96ea-6c38acd911fc +2017,Santa Fe,II.1.1,198.2988,TJ,CH4,3.9,kg/TJ,773.36532,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,8bb7a877-6e9f-35c9-91e0-120d45936a1f +2017,Santa Fe,II.1.1,198.2988,TJ,N2O,3.9,kg/TJ,773.36532,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,8bb7a877-6e9f-35c9-91e0-120d45936a1f +2017,Santiago del Estero,II.1.1,0.46956,TJ,CO2,74100.0,kg/TJ,34794.396,Gas Oil combustion consumption by public passenger transport,AR-G,SESCO,annual,kg,409ad42d-4625-3a07-9abd-1961858e3ed5 +2017,Santiago del Estero,II.1.1,0.46956,TJ,CH4,3.9,kg/TJ,1.831284,Gas Oil combustion consumption by public passenger transport,AR-G,SESCO,annual,kg,7d6b8347-1987-39b7-b4a7-412faa4f2657 +2017,Santiago del Estero,II.1.1,0.46956,TJ,N2O,3.9,kg/TJ,1.831284,Gas Oil combustion consumption by public passenger transport,AR-G,SESCO,annual,kg,7d6b8347-1987-39b7-b4a7-412faa4f2657 +2017,Tucuman,II.1.1,2.6728799999999997,TJ,CO2,74100.0,kg/TJ,198060.40799999997,Gas Oil combustion consumption by public passenger transport,AR-T,SESCO,annual,kg,15588662-b347-37b1-8a03-4e94e86a9ecf +2017,Tucuman,II.1.1,2.6728799999999997,TJ,CH4,3.9,kg/TJ,10.424231999999998,Gas Oil combustion consumption by public passenger transport,AR-T,SESCO,annual,kg,489c1bfb-0b85-3be9-a374-76b6b1387ce3 +2017,Tucuman,II.1.1,2.6728799999999997,TJ,N2O,3.9,kg/TJ,10.424231999999998,Gas Oil combustion consumption by public passenger transport,AR-T,SESCO,annual,kg,489c1bfb-0b85-3be9-a374-76b6b1387ce3 +2017,Buenos Aires,II.1.1,87.30203999999999,TJ,CO2,74100.0,kg/TJ,6469081.163999999,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,aa42898e-0070-3d5a-a830-6aee2d4bb437 +2017,Buenos Aires,II.1.1,87.30203999999999,TJ,CH4,3.9,kg/TJ,340.47795599999995,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,1650d99d-9729-3dc4-bfa7-26bb21400703 +2017,Buenos Aires,II.1.1,87.30203999999999,TJ,N2O,3.9,kg/TJ,340.47795599999995,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,1650d99d-9729-3dc4-bfa7-26bb21400703 +2017,Capital Federal,II.1.1,23.2974,TJ,CO2,74100.0,kg/TJ,1726337.34,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,88662fdd-e424-3c69-8d84-3f87833d3554 +2017,Capital Federal,II.1.1,23.2974,TJ,CH4,3.9,kg/TJ,90.85986,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,542b3993-e37a-345a-b5ce-0debcc07e760 +2017,Capital Federal,II.1.1,23.2974,TJ,N2O,3.9,kg/TJ,90.85986,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,542b3993-e37a-345a-b5ce-0debcc07e760 +2017,Chaco,II.1.1,0.03612,TJ,CO2,74100.0,kg/TJ,2676.4919999999997,Gas Oil combustion consumption by public passenger transport,AR-H,SESCO,annual,kg,99d6cc73-96ef-3908-bdbf-2390d40ac905 +2017,Chaco,II.1.1,0.03612,TJ,CH4,3.9,kg/TJ,0.140868,Gas Oil combustion consumption by public passenger transport,AR-H,SESCO,annual,kg,4fd51885-17e1-3f6f-abb6-0b1a2a70f00e +2017,Chaco,II.1.1,0.03612,TJ,N2O,3.9,kg/TJ,0.140868,Gas Oil combustion consumption by public passenger transport,AR-H,SESCO,annual,kg,4fd51885-17e1-3f6f-abb6-0b1a2a70f00e +2017,Chubut,II.1.1,9.10224,TJ,CO2,74100.0,kg/TJ,674475.984,Gas Oil combustion consumption by public passenger transport,AR-U,SESCO,annual,kg,0d6104fd-94d3-3997-8eb4-d403eccbcb02 +2017,Chubut,II.1.1,9.10224,TJ,CH4,3.9,kg/TJ,35.498736,Gas Oil combustion consumption by public passenger transport,AR-U,SESCO,annual,kg,d43989ba-72a5-3743-a7e3-da93e6f02651 +2017,Chubut,II.1.1,9.10224,TJ,N2O,3.9,kg/TJ,35.498736,Gas Oil combustion consumption by public passenger transport,AR-U,SESCO,annual,kg,d43989ba-72a5-3743-a7e3-da93e6f02651 +2017,Corrientes,II.1.1,0.03612,TJ,CO2,74100.0,kg/TJ,2676.4919999999997,Gas Oil combustion consumption by public passenger transport,AR-W,SESCO,annual,kg,c5e118e1-115a-3af4-b7e8-aeef6af1e466 +2017,Corrientes,II.1.1,0.03612,TJ,CH4,3.9,kg/TJ,0.140868,Gas Oil combustion consumption by public passenger transport,AR-W,SESCO,annual,kg,fe070851-74ff-31b5-8b70-6122da117dd5 +2017,Corrientes,II.1.1,0.03612,TJ,N2O,3.9,kg/TJ,0.140868,Gas Oil combustion consumption by public passenger transport,AR-W,SESCO,annual,kg,fe070851-74ff-31b5-8b70-6122da117dd5 +2017,Córdoba,II.1.1,1.6254,TJ,CO2,74100.0,kg/TJ,120442.14,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,1e9c1bbf-cfa6-37fd-977d-39b377b9f868 +2017,Córdoba,II.1.1,1.6254,TJ,CH4,3.9,kg/TJ,6.33906,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,3693a7bc-7bd8-30be-9552-d6f5749c09a9 +2017,Córdoba,II.1.1,1.6254,TJ,N2O,3.9,kg/TJ,6.33906,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,3693a7bc-7bd8-30be-9552-d6f5749c09a9 +2017,Entre Rios,II.1.1,0.03612,TJ,CO2,74100.0,kg/TJ,2676.4919999999997,Gas Oil combustion consumption by public passenger transport,AR-E,SESCO,annual,kg,8a2ab565-8480-33cc-94b5-deeec94bbeed +2017,Entre Rios,II.1.1,0.03612,TJ,CH4,3.9,kg/TJ,0.140868,Gas Oil combustion consumption by public passenger transport,AR-E,SESCO,annual,kg,30287ab8-554a-3903-93ab-b6be9fc95809 +2017,Entre Rios,II.1.1,0.03612,TJ,N2O,3.9,kg/TJ,0.140868,Gas Oil combustion consumption by public passenger transport,AR-E,SESCO,annual,kg,30287ab8-554a-3903-93ab-b6be9fc95809 +2017,La Pampa,II.1.1,5.30964,TJ,CO2,74100.0,kg/TJ,393444.324,Gas Oil combustion consumption by public passenger transport,AR-L,SESCO,annual,kg,5ed104b2-fc3e-353d-8c16-c37d63123043 +2017,La Pampa,II.1.1,5.30964,TJ,CH4,3.9,kg/TJ,20.707596,Gas Oil combustion consumption by public passenger transport,AR-L,SESCO,annual,kg,040549f1-e259-3228-a736-4726834c31cf +2017,La Pampa,II.1.1,5.30964,TJ,N2O,3.9,kg/TJ,20.707596,Gas Oil combustion consumption by public passenger transport,AR-L,SESCO,annual,kg,040549f1-e259-3228-a736-4726834c31cf +2017,Mendoza,II.1.1,0.03612,TJ,CO2,74100.0,kg/TJ,2676.4919999999997,Gas Oil combustion consumption by public passenger transport,AR-M,SESCO,annual,kg,14cca3ab-15f7-30c0-8660-60d68fc7b862 +2017,Mendoza,II.1.1,0.03612,TJ,CH4,3.9,kg/TJ,0.140868,Gas Oil combustion consumption by public passenger transport,AR-M,SESCO,annual,kg,984a4d7f-0f47-3c13-8ebc-3b59b250bc76 +2017,Mendoza,II.1.1,0.03612,TJ,N2O,3.9,kg/TJ,0.140868,Gas Oil combustion consumption by public passenger transport,AR-M,SESCO,annual,kg,984a4d7f-0f47-3c13-8ebc-3b59b250bc76 +2017,Misiones,II.1.1,1.6254,TJ,CO2,74100.0,kg/TJ,120442.14,Gas Oil combustion consumption by public passenger transport,AR-N,SESCO,annual,kg,03bbf370-4a85-3278-924e-3bdd0a4a194c +2017,Misiones,II.1.1,1.6254,TJ,CH4,3.9,kg/TJ,6.33906,Gas Oil combustion consumption by public passenger transport,AR-N,SESCO,annual,kg,a147230f-6169-34fb-9066-5a473e398060 +2017,Misiones,II.1.1,1.6254,TJ,N2O,3.9,kg/TJ,6.33906,Gas Oil combustion consumption by public passenger transport,AR-N,SESCO,annual,kg,a147230f-6169-34fb-9066-5a473e398060 +2017,Neuquén,II.1.1,1.9143599999999998,TJ,CO2,74100.0,kg/TJ,141854.076,Gas Oil combustion consumption by public passenger transport,AR-Q,SESCO,annual,kg,31acfe61-5d40-3006-a0bd-2ffe234c544b +2017,Neuquén,II.1.1,1.9143599999999998,TJ,CH4,3.9,kg/TJ,7.466003999999999,Gas Oil combustion consumption by public passenger transport,AR-Q,SESCO,annual,kg,5ea0c113-b259-3d24-959e-7b78c5b595cf +2017,Neuquén,II.1.1,1.9143599999999998,TJ,N2O,3.9,kg/TJ,7.466003999999999,Gas Oil combustion consumption by public passenger transport,AR-Q,SESCO,annual,kg,5ea0c113-b259-3d24-959e-7b78c5b595cf +2017,Rio Negro,II.1.1,12.642,TJ,CO2,74100.0,kg/TJ,936772.2,Gas Oil combustion consumption by public passenger transport,AR-R,SESCO,annual,kg,0f220e50-9123-3734-b8bc-c8391783f175 +2017,Rio Negro,II.1.1,12.642,TJ,CH4,3.9,kg/TJ,49.303799999999995,Gas Oil combustion consumption by public passenger transport,AR-R,SESCO,annual,kg,99a7a3aa-e8bb-3f2d-a4c3-df239cdc59fe +2017,Rio Negro,II.1.1,12.642,TJ,N2O,3.9,kg/TJ,49.303799999999995,Gas Oil combustion consumption by public passenger transport,AR-R,SESCO,annual,kg,99a7a3aa-e8bb-3f2d-a4c3-df239cdc59fe +2017,San Luis,II.1.1,0.03612,TJ,CO2,74100.0,kg/TJ,2676.4919999999997,Gas Oil combustion consumption by public passenger transport,AR-D,SESCO,annual,kg,d1a627b5-9e09-3e53-a6ad-dea571646ce9 +2017,San Luis,II.1.1,0.03612,TJ,CH4,3.9,kg/TJ,0.140868,Gas Oil combustion consumption by public passenger transport,AR-D,SESCO,annual,kg,c6a9bf1d-3e70-3e85-a609-9e2f1e66173d +2017,San Luis,II.1.1,0.03612,TJ,N2O,3.9,kg/TJ,0.140868,Gas Oil combustion consumption by public passenger transport,AR-D,SESCO,annual,kg,c6a9bf1d-3e70-3e85-a609-9e2f1e66173d +2017,Santa Fe,II.1.1,10.22196,TJ,CO2,74100.0,kg/TJ,757447.2359999999,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,54ecfd19-1973-3501-9dd4-edca2e1d0325 +2017,Santa Fe,II.1.1,10.22196,TJ,CH4,3.9,kg/TJ,39.865643999999996,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,8740ce93-637c-3d99-aad5-5db1addbfeac +2017,Santa Fe,II.1.1,10.22196,TJ,N2O,3.9,kg/TJ,39.865643999999996,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,8740ce93-637c-3d99-aad5-5db1addbfeac +2017,Santiago del Estero,II.1.1,0.03612,TJ,CO2,74100.0,kg/TJ,2676.4919999999997,Gas Oil combustion consumption by public passenger transport,AR-G,SESCO,annual,kg,2e81bdbc-0867-3229-aecf-aa2872d28d38 +2017,Santiago del Estero,II.1.1,0.03612,TJ,CH4,3.9,kg/TJ,0.140868,Gas Oil combustion consumption by public passenger transport,AR-G,SESCO,annual,kg,48da0990-3249-3c47-9984-d65d7d36f667 +2017,Santiago del Estero,II.1.1,0.03612,TJ,N2O,3.9,kg/TJ,0.140868,Gas Oil combustion consumption by public passenger transport,AR-G,SESCO,annual,kg,48da0990-3249-3c47-9984-d65d7d36f667 +2017,Tucuman,II.1.1,0.07224,TJ,CO2,74100.0,kg/TJ,5352.9839999999995,Gas Oil combustion consumption by public passenger transport,AR-T,SESCO,annual,kg,4342d217-5966-3509-9295-612f90685c55 +2017,Tucuman,II.1.1,0.07224,TJ,CH4,3.9,kg/TJ,0.281736,Gas Oil combustion consumption by public passenger transport,AR-T,SESCO,annual,kg,72b62858-a0a0-30c3-a79c-b52525c6f9e7 +2017,Tucuman,II.1.1,0.07224,TJ,N2O,3.9,kg/TJ,0.281736,Gas Oil combustion consumption by public passenger transport,AR-T,SESCO,annual,kg,72b62858-a0a0-30c3-a79c-b52525c6f9e7 +2017,Buenos Aires,II.1.1,0.034265,TJ,CO2,73300.0,kg/TJ,2511.6245,Naphtha combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,da207a9a-c401-36a1-b813-a75d83aa1e40 +2017,Buenos Aires,II.1.1,0.034265,TJ,CH4,0.5,kg/TJ,0.0171325,Naphtha combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,9ae1d432-8fdc-32b3-b35a-79a503b0ab35 +2017,Buenos Aires,II.1.1,0.034265,TJ,N2O,2.0,kg/TJ,0.06853,Naphtha combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,9fb7bfa1-a6a7-3eed-a7ea-24a783ab1383 +2017,Santa Fe,II.1.1,1.9188399999999999,TJ,CO2,73300.0,kg/TJ,140650.97199999998,Naphtha combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,235750e9-4c8f-3f30-82bf-bf6d745315fb +2017,Santa Fe,II.1.1,1.9188399999999999,TJ,CH4,0.5,kg/TJ,0.9594199999999999,Naphtha combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,b47632ce-8fd0-33a7-b46c-a690a9e1b428 +2017,Santa Fe,II.1.1,1.9188399999999999,TJ,N2O,2.0,kg/TJ,3.8376799999999998,Naphtha combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,5d4fd1f9-763b-307a-856d-ab5024fc6660 +2017,Santa Fe,II.1.1,0.6510349999999999,TJ,CO2,73300.0,kg/TJ,47720.86549999999,Naphtha combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,6fd56089-5cac-37c0-b1a7-977b8426d824 +2017,Santa Fe,II.1.1,0.6510349999999999,TJ,CH4,0.5,kg/TJ,0.32551749999999996,Naphtha combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,36b533ff-76d1-30b3-8fb0-f6b8477486a7 +2017,Santa Fe,II.1.1,0.6510349999999999,TJ,N2O,2.0,kg/TJ,1.3020699999999998,Naphtha combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,8ca5b1ca-c980-3932-b1e2-ea81d218235a +2017,Chubut,II.1.1,0.29799,TJ,CO2,74100.0,kg/TJ,22081.058999999997,Gas Oil combustion consumption by freight transport,AR-U,SESCO,annual,kg,667b3d24-f5d6-37a2-9c1a-092fec9cfb31 +2017,Chubut,II.1.1,0.29799,TJ,CH4,3.9,kg/TJ,1.1621609999999998,Gas Oil combustion consumption by freight transport,AR-U,SESCO,annual,kg,f00ad871-a22c-30a0-85bc-198fe004336b +2017,Chubut,II.1.1,0.29799,TJ,N2O,3.9,kg/TJ,1.1621609999999998,Gas Oil combustion consumption by freight transport,AR-U,SESCO,annual,kg,f00ad871-a22c-30a0-85bc-198fe004336b +2017,Buenos Aires,II.5.1,467.36338748399993,TJ,CO2,74100.0,kg/TJ,34631627.0125644,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,6d73c098-03ef-328c-8d41-11b9744de38f +2017,Buenos Aires,II.5.1,467.36338748399993,TJ,CH4,3.9,kg/TJ,1822.7172111875998,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,be99af30-5e47-37d7-8e19-724473a67c72 +2017,Buenos Aires,II.5.1,467.36338748399993,TJ,N2O,3.9,kg/TJ,1822.7172111875998,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,be99af30-5e47-37d7-8e19-724473a67c72 +2017,Corrientes,II.5.1,11.788386875999999,TJ,CO2,74100.0,kg/TJ,873519.4675115999,Gas Oil combustion consumption by agriculture machines,AR-W,SESCO,annual,kg,1a9806a3-319b-336c-9242-18b7f2179be2 +2017,Corrientes,II.5.1,11.788386875999999,TJ,CH4,3.9,kg/TJ,45.974708816399996,Gas Oil combustion consumption by agriculture machines,AR-W,SESCO,annual,kg,3468fbb3-06e9-30ae-8a75-463f44e56477 +2017,Corrientes,II.5.1,11.788386875999999,TJ,N2O,3.9,kg/TJ,45.974708816399996,Gas Oil combustion consumption by agriculture machines,AR-W,SESCO,annual,kg,3468fbb3-06e9-30ae-8a75-463f44e56477 +2017,Córdoba,II.5.1,855.5085824039999,TJ,CO2,74100.0,kg/TJ,63393185.95613639,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,14947122-5fbc-3173-89c5-042a2c809517 +2017,Córdoba,II.5.1,855.5085824039999,TJ,CH4,3.9,kg/TJ,3336.4834713755995,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,c98b72d7-7852-3002-8f9f-2aff9a698173 +2017,Córdoba,II.5.1,855.5085824039999,TJ,N2O,3.9,kg/TJ,3336.4834713755995,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,c98b72d7-7852-3002-8f9f-2aff9a698173 +2017,Entre Rios,II.5.1,342.90032573999997,TJ,CO2,74100.0,kg/TJ,25408914.137333997,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,fb25870d-3f3d-3384-ad27-f29ff120105d +2017,Entre Rios,II.5.1,342.90032573999997,TJ,CH4,3.9,kg/TJ,1337.311270386,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,adf2d760-1c04-3706-9d17-69c8e388552f +2017,Entre Rios,II.5.1,342.90032573999997,TJ,N2O,3.9,kg/TJ,1337.311270386,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,adf2d760-1c04-3706-9d17-69c8e388552f +2017,La Pampa,II.5.1,73.07430698399999,TJ,CO2,74100.0,kg/TJ,5414806.147514399,Gas Oil combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,cc0b3294-7541-3457-8b25-6ceefe283325 +2017,La Pampa,II.5.1,73.07430698399999,TJ,CH4,3.9,kg/TJ,284.98979723759993,Gas Oil combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,284b4df5-c7cd-3d35-ad49-caec22356c43 +2017,La Pampa,II.5.1,73.07430698399999,TJ,N2O,3.9,kg/TJ,284.98979723759993,Gas Oil combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,284b4df5-c7cd-3d35-ad49-caec22356c43 +2017,Santa Fe,II.5.1,374.20014063599996,TJ,CO2,74100.0,kg/TJ,27728230.4211276,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,071d390b-0288-3d42-bce8-9975a4dec353 +2017,Santa Fe,II.5.1,374.20014063599996,TJ,CH4,3.9,kg/TJ,1459.3805484803997,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,1f0a42e7-6ac4-3848-8281-edd3380c0330 +2017,Santa Fe,II.5.1,374.20014063599996,TJ,N2O,3.9,kg/TJ,1459.3805484803997,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,1f0a42e7-6ac4-3848-8281-edd3380c0330 +2017,Santiago del Estero,II.5.1,211.194474372,TJ,CO2,74100.0,kg/TJ,15649510.5509652,Gas Oil combustion consumption by agriculture machines,AR-G,SESCO,annual,kg,1f96d8c1-d935-38ec-b592-ee40e6c3a823 +2017,Santiago del Estero,II.5.1,211.194474372,TJ,CH4,3.9,kg/TJ,823.6584500508,Gas Oil combustion consumption by agriculture machines,AR-G,SESCO,annual,kg,1b291c00-3ffc-3c10-8a57-963a5f1898a5 +2017,Santiago del Estero,II.5.1,211.194474372,TJ,N2O,3.9,kg/TJ,823.6584500508,Gas Oil combustion consumption by agriculture machines,AR-G,SESCO,annual,kg,1b291c00-3ffc-3c10-8a57-963a5f1898a5 +2017,Tucuman,II.5.1,28.711921644,TJ,CO2,74100.0,kg/TJ,2127553.3938204,Gas Oil combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,deaa53d4-a488-3699-ae8a-fc877d01c787 +2017,Tucuman,II.5.1,28.711921644,TJ,CH4,3.9,kg/TJ,111.9764944116,Gas Oil combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,94fd8201-17e4-31f5-b449-032623f216b4 +2017,Tucuman,II.5.1,28.711921644,TJ,N2O,3.9,kg/TJ,111.9764944116,Gas Oil combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,94fd8201-17e4-31f5-b449-032623f216b4 +2017,Buenos Aires,II.5.1,7.100119235999999,TJ,CO2,74100.0,kg/TJ,526118.8353876,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,671985f7-a3f7-32ba-bace-519cf1ea63e2 +2017,Buenos Aires,II.5.1,7.100119235999999,TJ,CH4,3.9,kg/TJ,27.690465020399998,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,b65d073c-7248-369a-898f-5f16f3081b82 +2017,Buenos Aires,II.5.1,7.100119235999999,TJ,N2O,3.9,kg/TJ,27.690465020399998,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,b65d073c-7248-369a-898f-5f16f3081b82 +2017,Córdoba,II.5.1,17.760294299999998,TJ,CO2,74100.0,kg/TJ,1316037.80763,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,9f70f44c-680a-3bd9-b7ef-f2ca4523f947 +2017,Córdoba,II.5.1,17.760294299999998,TJ,CH4,3.9,kg/TJ,69.26514776999998,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,dea0a157-c998-319d-8635-f0890c8ccaa8 +2017,Córdoba,II.5.1,17.760294299999998,TJ,N2O,3.9,kg/TJ,69.26514776999998,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,dea0a157-c998-319d-8635-f0890c8ccaa8 +2017,Entre Rios,II.5.1,16.482701004,TJ,CO2,74100.0,kg/TJ,1221368.1443963998,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,58e3e9e7-41f6-3bf0-baab-3f4d81f787fe +2017,Entre Rios,II.5.1,16.482701004,TJ,CH4,3.9,kg/TJ,64.2825339156,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,def0347a-7740-356e-a4eb-396a857e601d +2017,Entre Rios,II.5.1,16.482701004,TJ,N2O,3.9,kg/TJ,64.2825339156,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,def0347a-7740-356e-a4eb-396a857e601d +2017,La Pampa,II.5.1,20.197267355999998,TJ,CO2,74100.0,kg/TJ,1496617.5110795998,Gas Oil combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,8a926e06-c581-36d6-b9c9-a766fbe2d2af +2017,La Pampa,II.5.1,20.197267355999998,TJ,CH4,3.9,kg/TJ,78.76934268839999,Gas Oil combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,19c8886e-0be8-3619-92bf-0cc036eea0ad +2017,La Pampa,II.5.1,20.197267355999998,TJ,N2O,3.9,kg/TJ,78.76934268839999,Gas Oil combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,19c8886e-0be8-3619-92bf-0cc036eea0ad +2017,Santa Fe,II.5.1,13.977262488,TJ,CO2,74100.0,kg/TJ,1035715.1503608,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,08abfe3b-f7d1-3e67-82e3-7f1bde2554bd +2017,Santa Fe,II.5.1,13.977262488,TJ,CH4,3.9,kg/TJ,54.5113237032,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,282aa95a-6b3d-3702-90ec-d96b12f51f90 +2017,Santa Fe,II.5.1,13.977262488,TJ,N2O,3.9,kg/TJ,54.5113237032,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,282aa95a-6b3d-3702-90ec-d96b12f51f90 +2017,Santiago del Estero,II.5.1,0.5078278589999999,TJ,CO2,73300.0,kg/TJ,37223.7820647,Naphtha combustion consumption by agriculture machines,AR-G,SESCO,annual,kg,c761eec3-f869-33d5-9ec8-07e2239082a9 +2017,Santiago del Estero,II.5.1,0.5078278589999999,TJ,CH4,0.5,kg/TJ,0.25391392949999997,Naphtha combustion consumption by agriculture machines,AR-G,SESCO,annual,kg,e11cf7b5-9776-3f8c-9f99-66a7e0cd0b3b +2017,Santiago del Estero,II.5.1,0.5078278589999999,TJ,N2O,2.0,kg/TJ,1.0156557179999999,Naphtha combustion consumption by agriculture machines,AR-G,SESCO,annual,kg,52046d3d-1bc6-3f2d-9333-c1a8fb05d6e3 +2017,Buenos Aires,II.1.1,235.69900477199997,TJ,CO2,74100.0,kg/TJ,17465296.253605198,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,2fb0f413-ec6e-3c4d-8fc0-14a877c831e5 +2017,Buenos Aires,II.1.1,235.69900477199997,TJ,CH4,3.9,kg/TJ,919.2261186107999,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,cc090398-37a9-3c11-ac25-ef97a56120f4 +2017,Buenos Aires,II.1.1,235.69900477199997,TJ,N2O,3.9,kg/TJ,919.2261186107999,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,cc090398-37a9-3c11-ac25-ef97a56120f4 +2017,Chaco,II.1.1,18.47341146,TJ,CO2,74100.0,kg/TJ,1368879.7891860001,Gas Oil combustion consumption by public passenger transport,AR-H,SESCO,annual,kg,916ea2ad-4c30-3977-b48e-52e8962fb5b6 +2017,Chaco,II.1.1,18.47341146,TJ,CH4,3.9,kg/TJ,72.046304694,Gas Oil combustion consumption by public passenger transport,AR-H,SESCO,annual,kg,19d7d05f-e589-3aa7-a602-11c811a1a396 +2017,Chaco,II.1.1,18.47341146,TJ,N2O,3.9,kg/TJ,72.046304694,Gas Oil combustion consumption by public passenger transport,AR-H,SESCO,annual,kg,19d7d05f-e589-3aa7-a602-11c811a1a396 +2017,Corrientes,II.1.1,40.182221352,TJ,CO2,74100.0,kg/TJ,2977502.6021832,Gas Oil combustion consumption by public passenger transport,AR-W,SESCO,annual,kg,2bc4fac9-d5a5-3c26-ac3f-17e2724922d0 +2017,Corrientes,II.1.1,40.182221352,TJ,CH4,3.9,kg/TJ,156.7106632728,Gas Oil combustion consumption by public passenger transport,AR-W,SESCO,annual,kg,bdf8bfc6-b181-3ce5-9330-e67dcf169442 +2017,Corrientes,II.1.1,40.182221352,TJ,N2O,3.9,kg/TJ,156.7106632728,Gas Oil combustion consumption by public passenger transport,AR-W,SESCO,annual,kg,bdf8bfc6-b181-3ce5-9330-e67dcf169442 +2017,Córdoba,II.1.1,313.29673493999996,TJ,CO2,74100.0,kg/TJ,23215288.059054,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,c5c85e13-78f5-3b20-b6f9-6ab99f2988c0 +2017,Córdoba,II.1.1,313.29673493999996,TJ,CH4,3.9,kg/TJ,1221.857266266,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,98c4f4e3-d815-35fb-9a6e-3150207d6153 +2017,Córdoba,II.1.1,313.29673493999996,TJ,N2O,3.9,kg/TJ,1221.857266266,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,98c4f4e3-d815-35fb-9a6e-3150207d6153 +2017,Entre Rios,II.1.1,94.01039449199999,TJ,CO2,74100.0,kg/TJ,6966170.231857199,Gas Oil combustion consumption by public passenger transport,AR-E,SESCO,annual,kg,ee8b0e27-d952-3ed7-ba1d-cab3ea52ea1e +2017,Entre Rios,II.1.1,94.01039449199999,TJ,CH4,3.9,kg/TJ,366.64053851879993,Gas Oil combustion consumption by public passenger transport,AR-E,SESCO,annual,kg,4663b242-6423-3aaa-81b2-69a7568480bf +2017,Entre Rios,II.1.1,94.01039449199999,TJ,N2O,3.9,kg/TJ,366.64053851879993,Gas Oil combustion consumption by public passenger transport,AR-E,SESCO,annual,kg,4663b242-6423-3aaa-81b2-69a7568480bf +2017,Jujuy,II.1.1,101.28430149599998,TJ,CO2,74100.0,kg/TJ,7505166.740853598,Gas Oil combustion consumption by public passenger transport,AR-Y,SESCO,annual,kg,1c3fd9a3-1e3a-3a8f-8046-0ac95cdfbdcc +2017,Jujuy,II.1.1,101.28430149599998,TJ,CH4,3.9,kg/TJ,395.0087758343999,Gas Oil combustion consumption by public passenger transport,AR-Y,SESCO,annual,kg,2e18669d-aecb-3cde-a91f-14aa1d05cbe7 +2017,Jujuy,II.1.1,101.28430149599998,TJ,N2O,3.9,kg/TJ,395.0087758343999,Gas Oil combustion consumption by public passenger transport,AR-Y,SESCO,annual,kg,2e18669d-aecb-3cde-a91f-14aa1d05cbe7 +2017,Salta,II.1.1,77.558623044,TJ,CO2,74100.0,kg/TJ,5747093.9675604,Gas Oil combustion consumption by public passenger transport,AR-A,SESCO,annual,kg,bc35bbd7-646f-38f5-b152-3da313ef19f0 +2017,Salta,II.1.1,77.558623044,TJ,CH4,3.9,kg/TJ,302.4786298716,Gas Oil combustion consumption by public passenger transport,AR-A,SESCO,annual,kg,a6eba0fa-090b-3e61-a701-b807cec0b2f3 +2017,Salta,II.1.1,77.558623044,TJ,N2O,3.9,kg/TJ,302.4786298716,Gas Oil combustion consumption by public passenger transport,AR-A,SESCO,annual,kg,a6eba0fa-090b-3e61-a701-b807cec0b2f3 +2017,Santa Fe,II.1.1,272.668485768,TJ,CO2,74100.0,kg/TJ,20204734.7954088,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,192d9872-76c9-3047-8600-6518c607b6d1 +2017,Santa Fe,II.1.1,272.668485768,TJ,CH4,3.9,kg/TJ,1063.4070944952,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,5d43ba6d-b1d2-368b-90a9-15ab241b066a +2017,Santa Fe,II.1.1,272.668485768,TJ,N2O,3.9,kg/TJ,1063.4070944952,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,5d43ba6d-b1d2-368b-90a9-15ab241b066a +2017,Santiago del Estero,II.1.1,121.46556769199998,TJ,CO2,74100.0,kg/TJ,9000598.565977199,Gas Oil combustion consumption by public passenger transport,AR-G,SESCO,annual,kg,f6133e4b-e670-3ee6-a286-075b878a30a3 +2017,Santiago del Estero,II.1.1,121.46556769199998,TJ,CH4,3.9,kg/TJ,473.7157139987999,Gas Oil combustion consumption by public passenger transport,AR-G,SESCO,annual,kg,30951998-bc98-351e-a899-13f5df3e8f78 +2017,Santiago del Estero,II.1.1,121.46556769199998,TJ,N2O,3.9,kg/TJ,473.7157139987999,Gas Oil combustion consumption by public passenger transport,AR-G,SESCO,annual,kg,30951998-bc98-351e-a899-13f5df3e8f78 +2017,Tucuman,II.1.1,27.257156136,TJ,CO2,74100.0,kg/TJ,2019755.2696776,Gas Oil combustion consumption by public passenger transport,AR-T,SESCO,annual,kg,7d77b6bb-5af9-3962-a41c-286454c6b874 +2017,Tucuman,II.1.1,27.257156136,TJ,CH4,3.9,kg/TJ,106.3029089304,Gas Oil combustion consumption by public passenger transport,AR-T,SESCO,annual,kg,e90796e3-9220-3b57-a514-cae2a075f052 +2017,Tucuman,II.1.1,27.257156136,TJ,N2O,3.9,kg/TJ,106.3029089304,Gas Oil combustion consumption by public passenger transport,AR-T,SESCO,annual,kg,e90796e3-9220-3b57-a514-cae2a075f052 +2017,Buenos Aires,II.1.1,23.747393795999994,TJ,CO2,74100.0,kg/TJ,1759681.8802835995,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,e8bd92b0-662e-36ff-a3b7-98b381eebe14 +2017,Buenos Aires,II.1.1,23.747393795999994,TJ,CH4,3.9,kg/TJ,92.61483580439997,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,0b59b456-ebff-337c-9008-817fabe13819 +2017,Buenos Aires,II.1.1,23.747393795999994,TJ,N2O,3.9,kg/TJ,92.61483580439997,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,0b59b456-ebff-337c-9008-817fabe13819 +2017,Corrientes,II.1.1,3.98976102,TJ,CO2,74100.0,kg/TJ,295641.291582,Gas Oil combustion consumption by public passenger transport,AR-W,SESCO,annual,kg,f091200c-d27d-3dd3-a2d5-93d4443306f6 +2017,Corrientes,II.1.1,3.98976102,TJ,CH4,3.9,kg/TJ,15.560067978,Gas Oil combustion consumption by public passenger transport,AR-W,SESCO,annual,kg,e7490413-0fe9-3956-b4d5-2b635b747e4c +2017,Corrientes,II.1.1,3.98976102,TJ,N2O,3.9,kg/TJ,15.560067978,Gas Oil combustion consumption by public passenger transport,AR-W,SESCO,annual,kg,e7490413-0fe9-3956-b4d5-2b635b747e4c +2017,Córdoba,II.1.1,18.552691248,TJ,CO2,74100.0,kg/TJ,1374754.4214768,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,ba3ef0d0-30fa-3099-8e3b-7e1e1af1caeb +2017,Córdoba,II.1.1,18.552691248,TJ,CH4,3.9,kg/TJ,72.35549586719999,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,c7b81b05-0a00-3179-8d9a-29852d2ee701 +2017,Córdoba,II.1.1,18.552691248,TJ,N2O,3.9,kg/TJ,72.35549586719999,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,c7b81b05-0a00-3179-8d9a-29852d2ee701 +2017,Entre Rios,II.1.1,4.567258415999999,TJ,CO2,74100.0,kg/TJ,338433.84862559993,Gas Oil combustion consumption by public passenger transport,AR-E,SESCO,annual,kg,a0b65b25-0fd7-39f7-8e12-ecf77df1e2a4 +2017,Entre Rios,II.1.1,4.567258415999999,TJ,CH4,3.9,kg/TJ,17.812307822399994,Gas Oil combustion consumption by public passenger transport,AR-E,SESCO,annual,kg,c8d5d77f-cd8e-3f94-b6a5-59f1091febe6 +2017,Entre Rios,II.1.1,4.567258415999999,TJ,N2O,3.9,kg/TJ,17.812307822399994,Gas Oil combustion consumption by public passenger transport,AR-E,SESCO,annual,kg,c8d5d77f-cd8e-3f94-b6a5-59f1091febe6 +2017,Jujuy,II.1.1,2.69883222,TJ,CO2,74100.0,kg/TJ,199983.46750199998,Gas Oil combustion consumption by public passenger transport,AR-Y,SESCO,annual,kg,885eea32-2d22-3fa7-a6a2-54b61859a366 +2017,Jujuy,II.1.1,2.69883222,TJ,CH4,3.9,kg/TJ,10.525445657999999,Gas Oil combustion consumption by public passenger transport,AR-Y,SESCO,annual,kg,7b664566-137d-30ea-a3a0-2412830320b3 +2017,Jujuy,II.1.1,2.69883222,TJ,N2O,3.9,kg/TJ,10.525445657999999,Gas Oil combustion consumption by public passenger transport,AR-Y,SESCO,annual,kg,7b664566-137d-30ea-a3a0-2412830320b3 +2017,Santa Fe,II.1.1,18.02935218,TJ,CO2,74100.0,kg/TJ,1335974.996538,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,76b81b66-cfa0-3b7e-a4ae-7ea7cbfac925 +2017,Santa Fe,II.1.1,18.02935218,TJ,CH4,3.9,kg/TJ,70.314473502,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,8ad2a584-989c-3a72-9afe-30fd83b377ea +2017,Santa Fe,II.1.1,18.02935218,TJ,N2O,3.9,kg/TJ,70.314473502,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,8ad2a584-989c-3a72-9afe-30fd83b377ea +2017,Santiago del Estero,II.1.1,7.802093375999999,TJ,CO2,74100.0,kg/TJ,578135.1191615999,Gas Oil combustion consumption by public passenger transport,AR-G,SESCO,annual,kg,39d9bd17-4015-35c3-9f74-1baaa0683b6f +2017,Santiago del Estero,II.1.1,7.802093375999999,TJ,CH4,3.9,kg/TJ,30.428164166399995,Gas Oil combustion consumption by public passenger transport,AR-G,SESCO,annual,kg,f453fe8c-5ea2-388a-bbfe-510d36464c21 +2017,Santiago del Estero,II.1.1,7.802093375999999,TJ,N2O,3.9,kg/TJ,30.428164166399995,Gas Oil combustion consumption by public passenger transport,AR-G,SESCO,annual,kg,f453fe8c-5ea2-388a-bbfe-510d36464c21 +2017,Tucuman,II.1.1,3.30963948,TJ,CO2,74100.0,kg/TJ,245244.285468,Gas Oil combustion consumption by public passenger transport,AR-T,SESCO,annual,kg,38a3992e-f6db-3736-8238-f516fbd23647 +2017,Tucuman,II.1.1,3.30963948,TJ,CH4,3.9,kg/TJ,12.907593971999999,Gas Oil combustion consumption by public passenger transport,AR-T,SESCO,annual,kg,b27e6b8b-baba-37b8-b8a4-e68512c5b701 +2017,Tucuman,II.1.1,3.30963948,TJ,N2O,3.9,kg/TJ,12.907593971999999,Gas Oil combustion consumption by public passenger transport,AR-T,SESCO,annual,kg,b27e6b8b-baba-37b8-b8a4-e68512c5b701 +2017,Buenos Aires,II.5.1,448.42745219999995,TJ,CO2,74100.0,kg/TJ,33228474.208019998,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,b339e239-2d35-387b-8338-b178b225dbff +2017,Buenos Aires,II.5.1,448.42745219999995,TJ,CH4,3.9,kg/TJ,1748.8670635799997,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,a8dc0630-4a70-305f-a770-8a843b9e3fc3 +2017,Buenos Aires,II.5.1,448.42745219999995,TJ,N2O,3.9,kg/TJ,1748.8670635799997,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,a8dc0630-4a70-305f-a770-8a843b9e3fc3 +2017,Córdoba,II.5.1,53.24203583999999,TJ,CO2,74100.0,kg/TJ,3945234.8557439996,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,67f478ba-e69e-3d50-94fc-6175f0a24ba8 +2017,Córdoba,II.5.1,53.24203583999999,TJ,CH4,3.9,kg/TJ,207.64393977599997,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,ec8e6c49-00fa-3b91-bcb2-5ec4c0dc2fc0 +2017,Córdoba,II.5.1,53.24203583999999,TJ,N2O,3.9,kg/TJ,207.64393977599997,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,ec8e6c49-00fa-3b91-bcb2-5ec4c0dc2fc0 +2017,Entre Rios,II.5.1,16.69000452,TJ,CO2,74100.0,kg/TJ,1236729.334932,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,de4d18cc-39b4-37cb-a31c-4ec328db3f2e +2017,Entre Rios,II.5.1,16.69000452,TJ,CH4,3.9,kg/TJ,65.09101762799999,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,3ce191ee-cb85-39d0-a8fe-4e389c75d0c6 +2017,Entre Rios,II.5.1,16.69000452,TJ,N2O,3.9,kg/TJ,65.09101762799999,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,3ce191ee-cb85-39d0-a8fe-4e389c75d0c6 +2017,La Pampa,II.5.1,6.11695812,TJ,CO2,74100.0,kg/TJ,453266.596692,Gas Oil combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,1a79708a-8ef2-3f98-8fe7-afcd23c00593 +2017,La Pampa,II.5.1,6.11695812,TJ,CH4,3.9,kg/TJ,23.856136667999998,Gas Oil combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,7ed76d4f-6401-3243-a283-3dbf12fc473b +2017,La Pampa,II.5.1,6.11695812,TJ,N2O,3.9,kg/TJ,23.856136667999998,Gas Oil combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,7ed76d4f-6401-3243-a283-3dbf12fc473b +2017,Neuquén,II.5.1,1.24819884,TJ,CO2,74100.0,kg/TJ,92491.534044,Gas Oil combustion consumption by agriculture machines,AR-Q,SESCO,annual,kg,f5ea046e-9a60-3d24-8722-0f23279617ca +2017,Neuquén,II.5.1,1.24819884,TJ,CH4,3.9,kg/TJ,4.867975476,Gas Oil combustion consumption by agriculture machines,AR-Q,SESCO,annual,kg,5b1983cc-4563-3e9e-b729-bf4bb43f9b5d +2017,Neuquén,II.5.1,1.24819884,TJ,N2O,3.9,kg/TJ,4.867975476,Gas Oil combustion consumption by agriculture machines,AR-Q,SESCO,annual,kg,5b1983cc-4563-3e9e-b729-bf4bb43f9b5d +2017,Rio Negro,II.5.1,2.4658762800000003,TJ,CO2,74100.0,kg/TJ,182721.43234800003,Gas Oil combustion consumption by agriculture machines,AR-R,SESCO,annual,kg,33d3ceab-1502-3cbc-9200-5ce5c7809335 +2017,Rio Negro,II.5.1,2.4658762800000003,TJ,CH4,3.9,kg/TJ,9.616917492,Gas Oil combustion consumption by agriculture machines,AR-R,SESCO,annual,kg,9f3f8157-4943-3431-83b7-c0b3b93da2f9 +2017,Rio Negro,II.5.1,2.4658762800000003,TJ,N2O,3.9,kg/TJ,9.616917492,Gas Oil combustion consumption by agriculture machines,AR-R,SESCO,annual,kg,9f3f8157-4943-3431-83b7-c0b3b93da2f9 +2017,Buenos Aires,II.5.1,8.921715110000001,TJ,CO2,73300.0,kg/TJ,653961.717563,Naphtha combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,a6b1920c-050c-314d-bc88-51d20bfd3dcd +2017,Buenos Aires,II.5.1,8.921715110000001,TJ,CH4,0.5,kg/TJ,4.4608575550000005,Naphtha combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,3747e7e2-6e46-3f24-ad09-1d89a11492de +2017,Buenos Aires,II.5.1,8.921715110000001,TJ,N2O,2.0,kg/TJ,17.843430220000002,Naphtha combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,0bc6d028-fcd6-39b1-a676-53d4fbd742fb +2017,Neuquén,II.5.1,3.571543745,TJ,CO2,73300.0,kg/TJ,261794.1565085,Naphtha combustion consumption by agriculture machines,AR-Q,SESCO,annual,kg,56576c4b-ce05-3be7-b0e7-e49fc3a64edc +2017,Neuquén,II.5.1,3.571543745,TJ,CH4,0.5,kg/TJ,1.7857718725,Naphtha combustion consumption by agriculture machines,AR-Q,SESCO,annual,kg,b07bc9b0-c8cf-3c51-a18e-5cfa31379563 +2017,Neuquén,II.5.1,3.571543745,TJ,N2O,2.0,kg/TJ,7.14308749,Naphtha combustion consumption by agriculture machines,AR-Q,SESCO,annual,kg,5ab217ae-24f7-3eec-9475-832a30126632 +2017,Rio Negro,II.5.1,1.4673643599999997,TJ,CO2,73300.0,kg/TJ,107557.80758799998,Naphtha combustion consumption by agriculture machines,AR-R,SESCO,annual,kg,69424167-57f5-35f4-ba91-5b843e225850 +2017,Rio Negro,II.5.1,1.4673643599999997,TJ,CH4,0.5,kg/TJ,0.7336821799999999,Naphtha combustion consumption by agriculture machines,AR-R,SESCO,annual,kg,c592437b-0a49-345a-962a-492fa3a37374 +2017,Rio Negro,II.5.1,1.4673643599999997,TJ,N2O,2.0,kg/TJ,2.9347287199999994,Naphtha combustion consumption by agriculture machines,AR-R,SESCO,annual,kg,10e873bb-50f0-3749-b950-c6e9c27c6791 +2017,Buenos Aires,II.5.1,1.85078971,TJ,CO2,73300.0,kg/TJ,135662.885743,Naphtha combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,3b2356b6-b84f-3fda-b9a6-dbcb2326deae +2017,Buenos Aires,II.5.1,1.85078971,TJ,CH4,0.5,kg/TJ,0.925394855,Naphtha combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,24fe9a1b-e5a0-3425-bead-bcde5e643242 +2017,Buenos Aires,II.5.1,1.85078971,TJ,N2O,2.0,kg/TJ,3.70157942,Naphtha combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,ae54c6b3-a46a-3642-bea4-b555d0998a02 +2017,Buenos Aires,II.1.1,166.24034952,TJ,CO2,74100.0,kg/TJ,12318409.899432,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,c71af81e-5133-3fe8-b3c3-0a828c18cb4c +2017,Buenos Aires,II.1.1,166.24034952,TJ,CH4,3.9,kg/TJ,648.337363128,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,0d6c43a8-fcd0-3290-ac63-0ecc4d003708 +2017,Buenos Aires,II.1.1,166.24034952,TJ,N2O,3.9,kg/TJ,648.337363128,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,0d6c43a8-fcd0-3290-ac63-0ecc4d003708 +2017,Chubut,II.1.1,5.15078424,TJ,CO2,74100.0,kg/TJ,381673.112184,Gas Oil combustion consumption by freight transport,AR-U,SESCO,annual,kg,8933e642-8519-3ce7-bba3-c25f66cc6684 +2017,Chubut,II.1.1,5.15078424,TJ,CH4,3.9,kg/TJ,20.088058536,Gas Oil combustion consumption by freight transport,AR-U,SESCO,annual,kg,667ba3a9-a8dd-3a8d-bbed-aed35989291c +2017,Chubut,II.1.1,5.15078424,TJ,N2O,3.9,kg/TJ,20.088058536,Gas Oil combustion consumption by freight transport,AR-U,SESCO,annual,kg,667ba3a9-a8dd-3a8d-bbed-aed35989291c +2017,San Luis,II.1.1,34.60035936,TJ,CO2,74100.0,kg/TJ,2563886.6285759998,Gas Oil combustion consumption by freight transport,AR-D,SESCO,annual,kg,5580f66e-dd10-3edd-8d1c-c673c62b189f +2017,San Luis,II.1.1,34.60035936,TJ,CH4,3.9,kg/TJ,134.941401504,Gas Oil combustion consumption by freight transport,AR-D,SESCO,annual,kg,fef94ba0-69e6-3333-9d18-c5edcdfd0fa5 +2017,San Luis,II.1.1,34.60035936,TJ,N2O,3.9,kg/TJ,134.941401504,Gas Oil combustion consumption by freight transport,AR-D,SESCO,annual,kg,fef94ba0-69e6-3333-9d18-c5edcdfd0fa5 +2017,Buenos Aires,II.1.1,4.77997632,TJ,CO2,74100.0,kg/TJ,354196.24531200004,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,7c0e16bc-83ba-37a6-89a6-09b6de9364c3 +2017,Buenos Aires,II.1.1,4.77997632,TJ,CH4,3.9,kg/TJ,18.641907648,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,98a1fbf3-9913-323f-8214-2549d0031392 +2017,Buenos Aires,II.1.1,4.77997632,TJ,N2O,3.9,kg/TJ,18.641907648,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,98a1fbf3-9913-323f-8214-2549d0031392 +2017,Buenos Aires,II.1.1,439.3512186,TJ,CO2,74100.0,kg/TJ,32555925.29826,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,b7a0af31-5d1d-36b9-8c51-da5f35b15412 +2017,Buenos Aires,II.1.1,439.3512186,TJ,CH4,3.9,kg/TJ,1713.46975254,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,877de111-43e0-3711-ada6-6cc3186ce202 +2017,Buenos Aires,II.1.1,439.3512186,TJ,N2O,3.9,kg/TJ,1713.46975254,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,877de111-43e0-3711-ada6-6cc3186ce202 +2017,Capital Federal,II.1.1,68.99595443999999,TJ,CO2,74100.0,kg/TJ,5112600.2240039995,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,81e151a1-0711-3d64-9aa6-714c417d9577 +2017,Capital Federal,II.1.1,68.99595443999999,TJ,CH4,3.9,kg/TJ,269.08422231599997,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,8fc44171-73c8-3384-8123-0d72a1c1e470 +2017,Capital Federal,II.1.1,68.99595443999999,TJ,N2O,3.9,kg/TJ,269.08422231599997,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,8fc44171-73c8-3384-8123-0d72a1c1e470 +2017,Chubut,II.1.1,37.78227852,TJ,CO2,74100.0,kg/TJ,2799666.8383319997,Gas Oil combustion consumption by public passenger transport,AR-U,SESCO,annual,kg,e7086cd5-5bf2-3dd3-8253-93975f55ab66 +2017,Chubut,II.1.1,37.78227852,TJ,CH4,3.9,kg/TJ,147.35088622799998,Gas Oil combustion consumption by public passenger transport,AR-U,SESCO,annual,kg,bd975df1-8748-337d-8e80-4fabd35d78ad +2017,Chubut,II.1.1,37.78227852,TJ,N2O,3.9,kg/TJ,147.35088622799998,Gas Oil combustion consumption by public passenger transport,AR-U,SESCO,annual,kg,bd975df1-8748-337d-8e80-4fabd35d78ad +2017,Córdoba,II.1.1,209.52988055999998,TJ,CO2,74100.0,kg/TJ,15526164.149495998,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,67d6dce6-ad0d-3532-88e9-04acf832ef13 +2017,Córdoba,II.1.1,209.52988055999998,TJ,CH4,3.9,kg/TJ,817.1665341839999,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,be817730-c2dc-38dd-9fec-333b7b67be24 +2017,Córdoba,II.1.1,209.52988055999998,TJ,N2O,3.9,kg/TJ,817.1665341839999,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,be817730-c2dc-38dd-9fec-333b7b67be24 +2017,Neuquén,II.1.1,22.848645119999997,TJ,CO2,74100.0,kg/TJ,1693084.6033919998,Gas Oil combustion consumption by public passenger transport,AR-Q,SESCO,annual,kg,4f973707-dbd9-35b4-b501-64bf163cd89e +2017,Neuquén,II.1.1,22.848645119999997,TJ,CH4,3.9,kg/TJ,89.10971596799999,Gas Oil combustion consumption by public passenger transport,AR-Q,SESCO,annual,kg,7fb0b5cc-cede-31cb-991c-825bed391ff4 +2017,Neuquén,II.1.1,22.848645119999997,TJ,N2O,3.9,kg/TJ,89.10971596799999,Gas Oil combustion consumption by public passenger transport,AR-Q,SESCO,annual,kg,7fb0b5cc-cede-31cb-991c-825bed391ff4 +2017,Rio Negro,II.1.1,120.03932975999999,TJ,CO2,74100.0,kg/TJ,8894914.335215999,Gas Oil combustion consumption by public passenger transport,AR-R,SESCO,annual,kg,116b863f-0ec7-3a7d-a69e-33ea5fd4f3c0 +2017,Rio Negro,II.1.1,120.03932975999999,TJ,CH4,3.9,kg/TJ,468.15338606399996,Gas Oil combustion consumption by public passenger transport,AR-R,SESCO,annual,kg,b8b37932-5f79-3788-9c90-67e4df556f9f +2017,Rio Negro,II.1.1,120.03932975999999,TJ,N2O,3.9,kg/TJ,468.15338606399996,Gas Oil combustion consumption by public passenger transport,AR-R,SESCO,annual,kg,b8b37932-5f79-3788-9c90-67e4df556f9f +2017,Santa Fe,II.1.1,5.545214639999999,TJ,CO2,74100.0,kg/TJ,410900.40482399997,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,3b08ea58-65ad-3862-97c1-f7a9a5c2dc5d +2017,Santa Fe,II.1.1,5.545214639999999,TJ,CH4,3.9,kg/TJ,21.626337095999997,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,ada0350f-0366-3058-8d83-626543909ba6 +2017,Santa Fe,II.1.1,5.545214639999999,TJ,N2O,3.9,kg/TJ,21.626337095999997,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,ada0350f-0366-3058-8d83-626543909ba6 +2017,Buenos Aires,II.1.1,25.38408852,TJ,CO2,74100.0,kg/TJ,1880960.959332,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,ac37acac-e64f-3629-98da-f5e35f02bb1b +2017,Buenos Aires,II.1.1,25.38408852,TJ,CH4,3.9,kg/TJ,98.99794522799999,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,23b74004-f005-3fc1-b3a9-c036292968f2 +2017,Buenos Aires,II.1.1,25.38408852,TJ,N2O,3.9,kg/TJ,98.99794522799999,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,23b74004-f005-3fc1-b3a9-c036292968f2 +2017,Córdoba,II.1.1,3.41019756,TJ,CO2,74100.0,kg/TJ,252695.63919599997,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,bcee8d9e-13e9-3dd7-aa95-9b4cd227d9d9 +2017,Córdoba,II.1.1,3.41019756,TJ,CH4,3.9,kg/TJ,13.299770484,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,e30fed9c-8de5-377e-8729-e5787d43281f +2017,Córdoba,II.1.1,3.41019756,TJ,N2O,3.9,kg/TJ,13.299770484,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,e30fed9c-8de5-377e-8729-e5787d43281f +2017,Neuquén,II.1.1,5.91829812,TJ,CO2,74100.0,kg/TJ,438545.89069200004,Gas Oil combustion consumption by public passenger transport,AR-Q,SESCO,annual,kg,67c969e0-50d5-3574-9d88-86597c5c6987 +2017,Neuquén,II.1.1,5.91829812,TJ,CH4,3.9,kg/TJ,23.081362668,Gas Oil combustion consumption by public passenger transport,AR-Q,SESCO,annual,kg,0a90ab7f-bc7a-33f8-9003-c75d9aa7423b +2017,Neuquén,II.1.1,5.91829812,TJ,N2O,3.9,kg/TJ,23.081362668,Gas Oil combustion consumption by public passenger transport,AR-Q,SESCO,annual,kg,0a90ab7f-bc7a-33f8-9003-c75d9aa7423b +2017,Rio Negro,II.1.1,4.656084720000001,TJ,CO2,74100.0,kg/TJ,345015.87775200006,Gas Oil combustion consumption by public passenger transport,AR-R,SESCO,annual,kg,136352ab-9a2e-363d-aa34-2583fe8c4677 +2017,Rio Negro,II.1.1,4.656084720000001,TJ,CH4,3.9,kg/TJ,18.158730408000004,Gas Oil combustion consumption by public passenger transport,AR-R,SESCO,annual,kg,59d6a1f7-7c6f-3efa-be0c-319416c445e2 +2017,Rio Negro,II.1.1,4.656084720000001,TJ,N2O,3.9,kg/TJ,18.158730408000004,Gas Oil combustion consumption by public passenger transport,AR-R,SESCO,annual,kg,59d6a1f7-7c6f-3efa-be0c-319416c445e2 +2017,Capital Federal,II.5.1,14.043099999999999,TJ,CO2,69300.0,kg/TJ,973186.83,Motor Gasoline combustion consumption by agriculture machines,AR-C,SESCO,annual,kg,c8484bd0-f606-34ed-b5a6-c4dc2a715fec +2017,Capital Federal,II.5.1,14.043099999999999,TJ,CH4,33.0,kg/TJ,463.42229999999995,Motor Gasoline combustion consumption by agriculture machines,AR-C,SESCO,annual,kg,e22958c9-8d36-3ded-8dfa-4e2b1321591d +2017,Capital Federal,II.5.1,14.043099999999999,TJ,N2O,3.2,kg/TJ,44.93792,Motor Gasoline combustion consumption by agriculture machines,AR-C,SESCO,annual,kg,ee6da9bb-a3d8-33fa-ae07-2c25df892e68 +2017,Buenos Aires,II.5.1,306.87552,TJ,CO2,74100.0,kg/TJ,22739476.031999998,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,c3cab043-d46c-34e7-9b81-d65c34ad03c7 +2017,Buenos Aires,II.5.1,306.87552,TJ,CH4,3.9,kg/TJ,1196.8145279999999,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,113734da-964d-3b38-a3b5-241352c8bdf6 +2017,Buenos Aires,II.5.1,306.87552,TJ,N2O,3.9,kg/TJ,1196.8145279999999,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,113734da-964d-3b38-a3b5-241352c8bdf6 +2017,Córdoba,II.5.1,57.394679999999994,TJ,CO2,74100.0,kg/TJ,4252945.788,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,b947511c-94a7-3279-8d31-9c423f9e6b76 +2017,Córdoba,II.5.1,57.394679999999994,TJ,CH4,3.9,kg/TJ,223.83925199999996,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,38053e0a-9717-3d1d-89bd-214948b6d0ba +2017,Córdoba,II.5.1,57.394679999999994,TJ,N2O,3.9,kg/TJ,223.83925199999996,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,38053e0a-9717-3d1d-89bd-214948b6d0ba +2017,Entre Rios,II.5.1,47.38944,TJ,CO2,74100.0,kg/TJ,3511557.504,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,37292780-6eb5-3029-b186-7aa396514ab2 +2017,Entre Rios,II.5.1,47.38944,TJ,CH4,3.9,kg/TJ,184.818816,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,e8a4e764-9250-3c7f-970e-9f0561cdae3d +2017,Entre Rios,II.5.1,47.38944,TJ,N2O,3.9,kg/TJ,184.818816,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,e8a4e764-9250-3c7f-970e-9f0561cdae3d +2017,Santa Fe,II.5.1,41.82696,TJ,CO2,74100.0,kg/TJ,3099377.736,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,28d5f278-ce62-39e3-bf4d-18777089082a +2017,Santa Fe,II.5.1,41.82696,TJ,CH4,3.9,kg/TJ,163.125144,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,37e7487c-ded1-3206-8057-9bb46102550c +2017,Santa Fe,II.5.1,41.82696,TJ,N2O,3.9,kg/TJ,163.125144,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,37e7487c-ded1-3206-8057-9bb46102550c +2017,Buenos Aires,II.5.1,15.856679999999999,TJ,CO2,74100.0,kg/TJ,1174979.988,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,2c6a4e16-f788-3652-a2d9-ca8b15538a7c +2017,Buenos Aires,II.5.1,15.856679999999999,TJ,CH4,3.9,kg/TJ,61.841052,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,480e02e3-019e-3beb-9f3c-cd7f4aecca07 +2017,Buenos Aires,II.5.1,15.856679999999999,TJ,N2O,3.9,kg/TJ,61.841052,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,480e02e3-019e-3beb-9f3c-cd7f4aecca07 +2017,Entre Rios,II.5.1,23.405759999999997,TJ,CO2,74100.0,kg/TJ,1734366.8159999999,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,0f8980e7-372a-3e64-adaa-36cba0b02434 +2017,Entre Rios,II.5.1,23.405759999999997,TJ,CH4,3.9,kg/TJ,91.28246399999999,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,2fe07d33-39c2-3db8-acaf-9adf773c0864 +2017,Entre Rios,II.5.1,23.405759999999997,TJ,N2O,3.9,kg/TJ,91.28246399999999,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,2fe07d33-39c2-3db8-acaf-9adf773c0864 +2017,Buenos Aires,II.2.1,246.04943999999998,TJ,CO2,74100.0,kg/TJ,18232263.503999997,Gas Oil combustion consumption by railway transport,AR-B,SESCO,annual,kg,8670a77e-c2db-3489-91d4-66899628e994 +2017,Buenos Aires,II.2.1,246.04943999999998,TJ,CH4,3.9,kg/TJ,959.5928159999999,Gas Oil combustion consumption by railway transport,AR-B,SESCO,annual,kg,ab688c0e-81c6-3dcf-986b-f32038ef84da +2017,Buenos Aires,II.2.1,246.04943999999998,TJ,N2O,3.9,kg/TJ,959.5928159999999,Gas Oil combustion consumption by railway transport,AR-B,SESCO,annual,kg,ab688c0e-81c6-3dcf-986b-f32038ef84da +2017,Santa Fe,II.2.1,10.510919999999999,TJ,CO2,74100.0,kg/TJ,778859.1719999999,Gas Oil combustion consumption by railway transport,AR-S,SESCO,annual,kg,698775b0-0566-3c54-91ea-7ef519ae03c7 +2017,Santa Fe,II.2.1,10.510919999999999,TJ,CH4,3.9,kg/TJ,40.99258799999999,Gas Oil combustion consumption by railway transport,AR-S,SESCO,annual,kg,bf391ca6-f89b-32ae-8b37-bb3583228203 +2017,Santa Fe,II.2.1,10.510919999999999,TJ,N2O,3.9,kg/TJ,40.99258799999999,Gas Oil combustion consumption by railway transport,AR-S,SESCO,annual,kg,bf391ca6-f89b-32ae-8b37-bb3583228203 +2017,Buenos Aires,II.1.1,1.7277,TJ,CO2,69300.0,kg/TJ,119729.61,Motor Gasoline combustion consumption by freight transport,AR-B,SESCO,annual,kg,39f9342e-aab2-374e-963d-3c8db8b3a87a +2017,Buenos Aires,II.1.1,1.7277,TJ,CH4,33.0,kg/TJ,57.0141,Motor Gasoline combustion consumption by freight transport,AR-B,SESCO,annual,kg,bdfdb4a0-481e-3e73-83ce-c0390d257a1b +2017,Buenos Aires,II.1.1,1.7277,TJ,N2O,3.2,kg/TJ,5.52864,Motor Gasoline combustion consumption by freight transport,AR-B,SESCO,annual,kg,9b515d53-3bef-333e-8786-64977bd939e1 +2017,Capital Federal,II.1.1,1.6391,TJ,CO2,69300.0,kg/TJ,113589.63,Motor Gasoline combustion consumption by freight transport,AR-C,SESCO,annual,kg,8c3c2798-6b67-3568-9c3b-71a070b0057b +2017,Capital Federal,II.1.1,1.6391,TJ,CH4,33.0,kg/TJ,54.0903,Motor Gasoline combustion consumption by freight transport,AR-C,SESCO,annual,kg,6a3e9756-1baa-38b9-bd93-04f3c8978b7a +2017,Capital Federal,II.1.1,1.6391,TJ,N2O,3.2,kg/TJ,5.24512,Motor Gasoline combustion consumption by freight transport,AR-C,SESCO,annual,kg,d02c20ed-f802-310f-a79b-4e311b3fa1ae +2017,Santa Fe,II.1.1,12.8027,TJ,CO2,69300.0,kg/TJ,887227.11,Motor Gasoline combustion consumption by freight transport,AR-S,SESCO,annual,kg,adbdd768-b6e3-383a-bc8b-be1b14fabf16 +2017,Santa Fe,II.1.1,12.8027,TJ,CH4,33.0,kg/TJ,422.4891,Motor Gasoline combustion consumption by freight transport,AR-S,SESCO,annual,kg,53c308df-cc2f-32aa-8cd7-f68292e1e9a4 +2017,Santa Fe,II.1.1,12.8027,TJ,N2O,3.2,kg/TJ,40.96864,Motor Gasoline combustion consumption by freight transport,AR-S,SESCO,annual,kg,a77b242b-ae8e-3cc0-a6e6-5807c61c9bd3 +2017,Buenos Aires,II.1.1,168.82487999999998,TJ,CO2,74100.0,kg/TJ,12509923.608,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,420baa8b-011a-3344-baac-de8feda54ef5 +2017,Buenos Aires,II.1.1,168.82487999999998,TJ,CH4,3.9,kg/TJ,658.417032,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,86fedb96-060e-3760-ab7d-4a63022a52c3 +2017,Buenos Aires,II.1.1,168.82487999999998,TJ,N2O,3.9,kg/TJ,658.417032,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,86fedb96-060e-3760-ab7d-4a63022a52c3 +2017,Capital Federal,II.1.1,67.94172,TJ,CO2,74100.0,kg/TJ,5034481.4520000005,Gas Oil combustion consumption by freight transport,AR-C,SESCO,annual,kg,6d6c10d9-8d03-30ff-9214-05b74de0c21c +2017,Capital Federal,II.1.1,67.94172,TJ,CH4,3.9,kg/TJ,264.972708,Gas Oil combustion consumption by freight transport,AR-C,SESCO,annual,kg,8e896688-7dca-381c-a2db-360c1910eff1 +2017,Capital Federal,II.1.1,67.94172,TJ,N2O,3.9,kg/TJ,264.972708,Gas Oil combustion consumption by freight transport,AR-C,SESCO,annual,kg,8e896688-7dca-381c-a2db-360c1910eff1 +2017,Córdoba,II.1.1,96.90996,TJ,CO2,74100.0,kg/TJ,7181028.036,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,71a2db4e-c450-30bb-949d-7203cd9c93a9 +2017,Córdoba,II.1.1,96.90996,TJ,CH4,3.9,kg/TJ,377.948844,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,fc7097b8-aa37-37d4-b22b-675fd4a8146c +2017,Córdoba,II.1.1,96.90996,TJ,N2O,3.9,kg/TJ,377.948844,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,fc7097b8-aa37-37d4-b22b-675fd4a8146c +2017,Buenos Aires,II.1.1,30.41304,TJ,CO2,74100.0,kg/TJ,2253606.264,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,8e9ceff3-2bde-324d-8c1d-bf5e0a01c999 +2017,Buenos Aires,II.1.1,30.41304,TJ,CH4,3.9,kg/TJ,118.610856,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,4c423c99-5bd2-3ce6-99bd-162b9dc99c32 +2017,Buenos Aires,II.1.1,30.41304,TJ,N2O,3.9,kg/TJ,118.610856,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,4c423c99-5bd2-3ce6-99bd-162b9dc99c32 +2017,Córdoba,II.1.1,0.7223999999999999,TJ,CO2,74100.0,kg/TJ,53529.84,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,813f792e-97f1-3c1a-856b-efca62719106 +2017,Córdoba,II.1.1,0.7223999999999999,TJ,CH4,3.9,kg/TJ,2.81736,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,8ac32acd-1993-35f9-892f-fa62535ad1b1 +2017,Córdoba,II.1.1,0.7223999999999999,TJ,N2O,3.9,kg/TJ,2.81736,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,8ac32acd-1993-35f9-892f-fa62535ad1b1 +2017,Buenos Aires,II.1.1,5864.40708,TJ,CO2,74100.0,kg/TJ,434552564.628,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,ad8e0f83-e8f1-3cc7-9e3d-191036ae94b5 +2017,Buenos Aires,II.1.1,5864.40708,TJ,CH4,3.9,kg/TJ,22871.187611999998,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,8eb0355e-0434-3e50-a56a-d660ca60e058 +2017,Buenos Aires,II.1.1,5864.40708,TJ,N2O,3.9,kg/TJ,22871.187611999998,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,8eb0355e-0434-3e50-a56a-d660ca60e058 +2017,Capital Federal,II.1.1,87.91608,TJ,CO2,74100.0,kg/TJ,6514581.528,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,5af62793-ed38-3e85-9ef5-5f715ab1836c +2017,Capital Federal,II.1.1,87.91608,TJ,CH4,3.9,kg/TJ,342.872712,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,76141d08-c403-343e-b54f-35a088ba900c +2017,Capital Federal,II.1.1,87.91608,TJ,N2O,3.9,kg/TJ,342.872712,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,76141d08-c403-343e-b54f-35a088ba900c +2017,Buenos Aires,II.1.1,406.5306,TJ,CO2,74100.0,kg/TJ,30123917.46,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,da869438-94b9-35cb-a81e-b1589947d4e1 +2017,Buenos Aires,II.1.1,406.5306,TJ,CH4,3.9,kg/TJ,1585.4693399999999,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,9b456bf5-559f-31a7-8d08-4e620a91aa89 +2017,Buenos Aires,II.1.1,406.5306,TJ,N2O,3.9,kg/TJ,1585.4693399999999,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,9b456bf5-559f-31a7-8d08-4e620a91aa89 +2017,Buenos Aires,II.5.1,7.575299999999999,TJ,CO2,69300.0,kg/TJ,524968.2899999999,Motor Gasoline combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,665af30c-b6ac-383d-9cf9-fdd82df38dcc +2017,Buenos Aires,II.5.1,7.575299999999999,TJ,CH4,33.0,kg/TJ,249.98489999999995,Motor Gasoline combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,1b41b3d7-fd9e-3d67-a341-ce50ffcca165 +2017,Buenos Aires,II.5.1,7.575299999999999,TJ,N2O,3.2,kg/TJ,24.240959999999998,Motor Gasoline combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,b449653c-5b65-32fd-a93b-43a62bcfbd9d +2017,Salta,II.5.1,1.1961,TJ,CO2,69300.0,kg/TJ,82889.73,Motor Gasoline combustion consumption by agriculture machines,AR-A,SESCO,annual,kg,1bd40197-396f-38c5-b398-0de059b91ed3 +2017,Salta,II.5.1,1.1961,TJ,CH4,33.0,kg/TJ,39.4713,Motor Gasoline combustion consumption by agriculture machines,AR-A,SESCO,annual,kg,70f8085c-3ede-3967-8d1c-b16862d7f20d +2017,Salta,II.5.1,1.1961,TJ,N2O,3.2,kg/TJ,3.82752,Motor Gasoline combustion consumption by agriculture machines,AR-A,SESCO,annual,kg,28a985fb-c4f0-3928-ae16-1626dce5a10c +2017,Santa Fe,II.5.1,20.5552,TJ,CO2,69300.0,kg/TJ,1424475.3599999999,Motor Gasoline combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,c7f09c04-3022-35df-b1ab-0399a0cf6d1b +2017,Santa Fe,II.5.1,20.5552,TJ,CH4,33.0,kg/TJ,678.3216,Motor Gasoline combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,1fe2bf66-062f-3178-a68d-5fa08e187ddb +2017,Santa Fe,II.5.1,20.5552,TJ,N2O,3.2,kg/TJ,65.77664,Motor Gasoline combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,d0dc5169-499e-3efb-84b2-e2d5eb1acca5 +2017,Buenos Aires,II.5.1,10168.43016,TJ,CO2,74100.0,kg/TJ,753480674.856,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,e6786a88-3f9a-3971-b8eb-64cfcbe56538 +2017,Buenos Aires,II.5.1,10168.43016,TJ,CH4,3.9,kg/TJ,39656.877624,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,02fdede3-1e98-39b2-82a7-d95d72cb4726 +2017,Buenos Aires,II.5.1,10168.43016,TJ,N2O,3.9,kg/TJ,39656.877624,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,02fdede3-1e98-39b2-82a7-d95d72cb4726 +2017,Capital Federal,II.5.1,40.59888,TJ,CO2,74100.0,kg/TJ,3008377.008,Gas Oil combustion consumption by agriculture machines,AR-C,SESCO,annual,kg,2e0b3a79-0908-3ab1-b8c3-6c33bcff6193 +2017,Capital Federal,II.5.1,40.59888,TJ,CH4,3.9,kg/TJ,158.335632,Gas Oil combustion consumption by agriculture machines,AR-C,SESCO,annual,kg,9371e611-cacb-3de3-a8a7-1bc7749ba129 +2017,Capital Federal,II.5.1,40.59888,TJ,N2O,3.9,kg/TJ,158.335632,Gas Oil combustion consumption by agriculture machines,AR-C,SESCO,annual,kg,9371e611-cacb-3de3-a8a7-1bc7749ba129 +2017,Catamarca,II.5.1,155.74944,TJ,CO2,74100.0,kg/TJ,11541033.503999999,Gas Oil combustion consumption by agriculture machines,AR-K,SESCO,annual,kg,fd07e0eb-3674-319a-830a-d2d6bbe744bb +2017,Catamarca,II.5.1,155.74944,TJ,CH4,3.9,kg/TJ,607.422816,Gas Oil combustion consumption by agriculture machines,AR-K,SESCO,annual,kg,1e35ecf7-759c-35c5-95c1-86fff66f23e3 +2017,Catamarca,II.5.1,155.74944,TJ,N2O,3.9,kg/TJ,607.422816,Gas Oil combustion consumption by agriculture machines,AR-K,SESCO,annual,kg,1e35ecf7-759c-35c5-95c1-86fff66f23e3 +2017,Chaco,II.5.1,1247.47644,TJ,CO2,74100.0,kg/TJ,92438004.204,Gas Oil combustion consumption by agriculture machines,AR-H,SESCO,annual,kg,d09f95d7-025a-3641-ade5-75d76adb064f +2017,Chaco,II.5.1,1247.47644,TJ,CH4,3.9,kg/TJ,4865.158116,Gas Oil combustion consumption by agriculture machines,AR-H,SESCO,annual,kg,575e7b07-33a1-3e02-997d-b0d0e13558d1 +2017,Chaco,II.5.1,1247.47644,TJ,N2O,3.9,kg/TJ,4865.158116,Gas Oil combustion consumption by agriculture machines,AR-H,SESCO,annual,kg,575e7b07-33a1-3e02-997d-b0d0e13558d1 +2017,Corrientes,II.5.1,304.4916,TJ,CO2,74100.0,kg/TJ,22562827.56,Gas Oil combustion consumption by agriculture machines,AR-W,SESCO,annual,kg,9ad35ad3-03ed-33c9-af44-cd7e096950c6 +2017,Corrientes,II.5.1,304.4916,TJ,CH4,3.9,kg/TJ,1187.51724,Gas Oil combustion consumption by agriculture machines,AR-W,SESCO,annual,kg,58e36d6e-ab63-3a64-838a-52ec295917ed +2017,Corrientes,II.5.1,304.4916,TJ,N2O,3.9,kg/TJ,1187.51724,Gas Oil combustion consumption by agriculture machines,AR-W,SESCO,annual,kg,58e36d6e-ab63-3a64-838a-52ec295917ed +2017,Córdoba,II.5.1,8039.409,TJ,CO2,74100.0,kg/TJ,595720206.9,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,c3ef865b-b8f9-385a-850b-c165a6eec508 +2017,Córdoba,II.5.1,8039.409,TJ,CH4,3.9,kg/TJ,31353.695099999997,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,025d2ed8-6ab8-3981-b056-ad2ef9145624 +2017,Córdoba,II.5.1,8039.409,TJ,N2O,3.9,kg/TJ,31353.695099999997,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,025d2ed8-6ab8-3981-b056-ad2ef9145624 +2017,Entre Rios,II.5.1,2093.62356,TJ,CO2,74100.0,kg/TJ,155137505.796,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,fb7bf971-2d8c-3ee8-95fc-5948ef1006e2 +2017,Entre Rios,II.5.1,2093.62356,TJ,CH4,3.9,kg/TJ,8165.131883999999,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,06be89ad-32b0-35bc-90be-6bb0ef617cdb +2017,Entre Rios,II.5.1,2093.62356,TJ,N2O,3.9,kg/TJ,8165.131883999999,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,06be89ad-32b0-35bc-90be-6bb0ef617cdb +2017,Formosa,II.5.1,194.25336,TJ,CO2,74100.0,kg/TJ,14394173.976,Gas Oil combustion consumption by agriculture machines,AR-P,SESCO,annual,kg,e743d08e-68c3-35d2-8427-3d0f0b1fe500 +2017,Formosa,II.5.1,194.25336,TJ,CH4,3.9,kg/TJ,757.5881039999999,Gas Oil combustion consumption by agriculture machines,AR-P,SESCO,annual,kg,236844a4-b460-3120-a938-af5ddbedae65 +2017,Formosa,II.5.1,194.25336,TJ,N2O,3.9,kg/TJ,757.5881039999999,Gas Oil combustion consumption by agriculture machines,AR-P,SESCO,annual,kg,236844a4-b460-3120-a938-af5ddbedae65 +2017,Jujuy,II.5.1,1070.74128,TJ,CO2,74100.0,kg/TJ,79341928.84799999,Gas Oil combustion consumption by agriculture machines,AR-Y,SESCO,annual,kg,069c5117-1511-39da-99a8-a59905221c84 +2017,Jujuy,II.5.1,1070.74128,TJ,CH4,3.9,kg/TJ,4175.890992,Gas Oil combustion consumption by agriculture machines,AR-Y,SESCO,annual,kg,fd305b28-9400-3008-816c-b2ba55dc9988 +2017,Jujuy,II.5.1,1070.74128,TJ,N2O,3.9,kg/TJ,4175.890992,Gas Oil combustion consumption by agriculture machines,AR-Y,SESCO,annual,kg,fd305b28-9400-3008-816c-b2ba55dc9988 +2017,La Pampa,II.5.1,1778.5488,TJ,CO2,74100.0,kg/TJ,131790466.08,Gas Oil combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,13ce51e7-734a-3ebf-876c-38072c770420 +2017,La Pampa,II.5.1,1778.5488,TJ,CH4,3.9,kg/TJ,6936.34032,Gas Oil combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,e9607575-c2a5-3ea5-81b4-059fbc06378e +2017,La Pampa,II.5.1,1778.5488,TJ,N2O,3.9,kg/TJ,6936.34032,Gas Oil combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,e9607575-c2a5-3ea5-81b4-059fbc06378e +2017,La Rioja,II.5.1,162.86508,TJ,CO2,74100.0,kg/TJ,12068302.428000001,Gas Oil combustion consumption by agriculture machines,AR-F,SESCO,annual,kg,851a6a46-907c-334c-acb9-009443cba9e4 +2017,La Rioja,II.5.1,162.86508,TJ,CH4,3.9,kg/TJ,635.173812,Gas Oil combustion consumption by agriculture machines,AR-F,SESCO,annual,kg,23cf81c6-e995-32a2-ab3d-3b712813537d +2017,La Rioja,II.5.1,162.86508,TJ,N2O,3.9,kg/TJ,635.173812,Gas Oil combustion consumption by agriculture machines,AR-F,SESCO,annual,kg,23cf81c6-e995-32a2-ab3d-3b712813537d +2017,Mendoza,II.5.1,2729.0465999999997,TJ,CO2,74100.0,kg/TJ,202222353.05999997,Gas Oil combustion consumption by agriculture machines,AR-M,SESCO,annual,kg,5a89404a-8b6a-3ccd-9382-0072936d4c7c +2017,Mendoza,II.5.1,2729.0465999999997,TJ,CH4,3.9,kg/TJ,10643.281739999999,Gas Oil combustion consumption by agriculture machines,AR-M,SESCO,annual,kg,845cae80-1640-3d37-abf5-51443e400260 +2017,Mendoza,II.5.1,2729.0465999999997,TJ,N2O,3.9,kg/TJ,10643.281739999999,Gas Oil combustion consumption by agriculture machines,AR-M,SESCO,annual,kg,845cae80-1640-3d37-abf5-51443e400260 +2017,Misiones,II.5.1,1087.4287199999999,TJ,CO2,74100.0,kg/TJ,80578468.152,Gas Oil combustion consumption by agriculture machines,AR-N,SESCO,annual,kg,781476bd-c045-3ee9-8964-cdc46eb25486 +2017,Misiones,II.5.1,1087.4287199999999,TJ,CH4,3.9,kg/TJ,4240.972008,Gas Oil combustion consumption by agriculture machines,AR-N,SESCO,annual,kg,9fb00b79-886a-323e-9792-262e388dfbaf +2017,Misiones,II.5.1,1087.4287199999999,TJ,N2O,3.9,kg/TJ,4240.972008,Gas Oil combustion consumption by agriculture machines,AR-N,SESCO,annual,kg,9fb00b79-886a-323e-9792-262e388dfbaf +2017,Rio Negro,II.5.1,238.86156,TJ,CO2,74100.0,kg/TJ,17699641.596,Gas Oil combustion consumption by agriculture machines,AR-R,SESCO,annual,kg,cdbc4816-d18f-3b19-98a9-243b274c7366 +2017,Rio Negro,II.5.1,238.86156,TJ,CH4,3.9,kg/TJ,931.560084,Gas Oil combustion consumption by agriculture machines,AR-R,SESCO,annual,kg,1a245766-1afe-3126-a6a9-a666273dad12 +2017,Rio Negro,II.5.1,238.86156,TJ,N2O,3.9,kg/TJ,931.560084,Gas Oil combustion consumption by agriculture machines,AR-R,SESCO,annual,kg,1a245766-1afe-3126-a6a9-a666273dad12 +2017,Salta,II.5.1,1923.67896,TJ,CO2,74100.0,kg/TJ,142544610.936,Gas Oil combustion consumption by agriculture machines,AR-A,SESCO,annual,kg,c21d59c0-9383-3ad2-a429-d9d8f1644af6 +2017,Salta,II.5.1,1923.67896,TJ,CH4,3.9,kg/TJ,7502.347944,Gas Oil combustion consumption by agriculture machines,AR-A,SESCO,annual,kg,151aa1a9-59d8-32eb-af93-5a19d51eb9fe +2017,Salta,II.5.1,1923.67896,TJ,N2O,3.9,kg/TJ,7502.347944,Gas Oil combustion consumption by agriculture machines,AR-A,SESCO,annual,kg,151aa1a9-59d8-32eb-af93-5a19d51eb9fe +2017,San Juan,II.5.1,704.3038799999999,TJ,CO2,74100.0,kg/TJ,52188917.507999994,Gas Oil combustion consumption by agriculture machines,AR-J,SESCO,annual,kg,beb5e747-9926-3824-91fd-7e174c128882 +2017,San Juan,II.5.1,704.3038799999999,TJ,CH4,3.9,kg/TJ,2746.7851319999995,Gas Oil combustion consumption by agriculture machines,AR-J,SESCO,annual,kg,9c2eba95-f389-353b-8d72-40ce79a2c72a +2017,San Juan,II.5.1,704.3038799999999,TJ,N2O,3.9,kg/TJ,2746.7851319999995,Gas Oil combustion consumption by agriculture machines,AR-J,SESCO,annual,kg,9c2eba95-f389-353b-8d72-40ce79a2c72a +2017,San Luis,II.5.1,572.0685599999999,TJ,CO2,74100.0,kg/TJ,42390280.296,Gas Oil combustion consumption by agriculture machines,AR-D,SESCO,annual,kg,07f84202-a60b-39e4-93cd-583ef543ac8b +2017,San Luis,II.5.1,572.0685599999999,TJ,CH4,3.9,kg/TJ,2231.0673839999995,Gas Oil combustion consumption by agriculture machines,AR-D,SESCO,annual,kg,bc42490a-74b0-3275-ab1b-9ae9a17336ec +2017,San Luis,II.5.1,572.0685599999999,TJ,N2O,3.9,kg/TJ,2231.0673839999995,Gas Oil combustion consumption by agriculture machines,AR-D,SESCO,annual,kg,bc42490a-74b0-3275-ab1b-9ae9a17336ec +2017,Santa Fe,II.5.1,7288.32972,TJ,CO2,74100.0,kg/TJ,540065232.252,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,1c01650f-3ea2-34c1-bbe6-22670dac256b +2017,Santa Fe,II.5.1,7288.32972,TJ,CH4,3.9,kg/TJ,28424.485908,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,86840368-48c0-3b9b-842f-0cdaa4fea50a +2017,Santa Fe,II.5.1,7288.32972,TJ,N2O,3.9,kg/TJ,28424.485908,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,86840368-48c0-3b9b-842f-0cdaa4fea50a +2017,Santiago del Estero,II.5.1,1750.1945999999998,TJ,CO2,74100.0,kg/TJ,129689419.85999998,Gas Oil combustion consumption by agriculture machines,AR-G,SESCO,annual,kg,a2dac819-563f-3d96-9b3d-2a07b4f825ad +2017,Santiago del Estero,II.5.1,1750.1945999999998,TJ,CH4,3.9,kg/TJ,6825.758939999999,Gas Oil combustion consumption by agriculture machines,AR-G,SESCO,annual,kg,14c7e77e-d0c5-3a5f-b3d4-3ba2e103921f +2017,Santiago del Estero,II.5.1,1750.1945999999998,TJ,N2O,3.9,kg/TJ,6825.758939999999,Gas Oil combustion consumption by agriculture machines,AR-G,SESCO,annual,kg,14c7e77e-d0c5-3a5f-b3d4-3ba2e103921f +2017,Tucuman,II.5.1,1223.7456,TJ,CO2,74100.0,kg/TJ,90679548.96,Gas Oil combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,832e8723-f528-3846-9d78-b691ce06d080 +2017,Tucuman,II.5.1,1223.7456,TJ,CH4,3.9,kg/TJ,4772.60784,Gas Oil combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,a679e092-bf15-3aae-acfa-fa8255ee83be +2017,Tucuman,II.5.1,1223.7456,TJ,N2O,3.9,kg/TJ,4772.60784,Gas Oil combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,a679e092-bf15-3aae-acfa-fa8255ee83be +2017,Buenos Aires,II.5.1,557.94564,TJ,CO2,74100.0,kg/TJ,41343771.924,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,0e3871fe-eb73-320b-a75b-a0fd101a69d5 +2017,Buenos Aires,II.5.1,557.94564,TJ,CH4,3.9,kg/TJ,2175.987996,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,37b9b4c8-214d-3137-ad61-0f54b944bcda +2017,Buenos Aires,II.5.1,557.94564,TJ,N2O,3.9,kg/TJ,2175.987996,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,37b9b4c8-214d-3137-ad61-0f54b944bcda +2017,Capital Federal,II.5.1,2.60064,TJ,CO2,74100.0,kg/TJ,192707.424,Gas Oil combustion consumption by agriculture machines,AR-C,SESCO,annual,kg,003831e7-8530-343e-a9f7-c5cf8f22aec1 +2017,Capital Federal,II.5.1,2.60064,TJ,CH4,3.9,kg/TJ,10.142496,Gas Oil combustion consumption by agriculture machines,AR-C,SESCO,annual,kg,7590ccc9-113e-3d75-a4fd-67608737eec0 +2017,Capital Federal,II.5.1,2.60064,TJ,N2O,3.9,kg/TJ,10.142496,Gas Oil combustion consumption by agriculture machines,AR-C,SESCO,annual,kg,7590ccc9-113e-3d75-a4fd-67608737eec0 +2017,Catamarca,II.5.1,9.824639999999999,TJ,CO2,74100.0,kg/TJ,728005.8239999999,Gas Oil combustion consumption by agriculture machines,AR-K,SESCO,annual,kg,b33ef88b-c8c0-30e0-aadf-20a1984bf030 +2017,Catamarca,II.5.1,9.824639999999999,TJ,CH4,3.9,kg/TJ,38.316095999999995,Gas Oil combustion consumption by agriculture machines,AR-K,SESCO,annual,kg,ea09b6e9-47a9-3524-bb23-ad921b86b67b +2017,Catamarca,II.5.1,9.824639999999999,TJ,N2O,3.9,kg/TJ,38.316095999999995,Gas Oil combustion consumption by agriculture machines,AR-K,SESCO,annual,kg,ea09b6e9-47a9-3524-bb23-ad921b86b67b +2017,Chaco,II.5.1,103.51992,TJ,CO2,74100.0,kg/TJ,7670826.072,Gas Oil combustion consumption by agriculture machines,AR-H,SESCO,annual,kg,9e6933f4-c492-35a3-bca3-d5dbf8428a4d +2017,Chaco,II.5.1,103.51992,TJ,CH4,3.9,kg/TJ,403.727688,Gas Oil combustion consumption by agriculture machines,AR-H,SESCO,annual,kg,aadf2da5-ec4a-35e7-83b7-5033910c452f +2017,Chaco,II.5.1,103.51992,TJ,N2O,3.9,kg/TJ,403.727688,Gas Oil combustion consumption by agriculture machines,AR-H,SESCO,annual,kg,aadf2da5-ec4a-35e7-83b7-5033910c452f +2017,Corrientes,II.5.1,7.910279999999999,TJ,CO2,74100.0,kg/TJ,586151.7479999999,Gas Oil combustion consumption by agriculture machines,AR-W,SESCO,annual,kg,5fc071d5-9ef4-36fb-8a91-711f23f11c4a +2017,Corrientes,II.5.1,7.910279999999999,TJ,CH4,3.9,kg/TJ,30.850091999999997,Gas Oil combustion consumption by agriculture machines,AR-W,SESCO,annual,kg,4d72b708-434f-3e47-b5d6-9cc25ff5ac99 +2017,Corrientes,II.5.1,7.910279999999999,TJ,N2O,3.9,kg/TJ,30.850091999999997,Gas Oil combustion consumption by agriculture machines,AR-W,SESCO,annual,kg,4d72b708-434f-3e47-b5d6-9cc25ff5ac99 +2017,Córdoba,II.5.1,274.11467999999996,TJ,CO2,74100.0,kg/TJ,20311897.788,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,c1d50240-ad24-3fbd-b243-f22598e5ebac +2017,Córdoba,II.5.1,274.11467999999996,TJ,CH4,3.9,kg/TJ,1069.0472519999998,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,21d8a457-cfba-3a40-8194-9913561b4278 +2017,Córdoba,II.5.1,274.11467999999996,TJ,N2O,3.9,kg/TJ,1069.0472519999998,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,21d8a457-cfba-3a40-8194-9913561b4278 +2017,Entre Rios,II.5.1,42.22428,TJ,CO2,74100.0,kg/TJ,3128819.148,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,d3195bec-95e7-3c9f-a4cf-4d13b7ea77da +2017,Entre Rios,II.5.1,42.22428,TJ,CH4,3.9,kg/TJ,164.674692,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,6ee8beb2-8632-36b0-9509-662ee45dd268 +2017,Entre Rios,II.5.1,42.22428,TJ,N2O,3.9,kg/TJ,164.674692,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,6ee8beb2-8632-36b0-9509-662ee45dd268 +2017,Formosa,II.5.1,9.53568,TJ,CO2,74100.0,kg/TJ,706593.8879999999,Gas Oil combustion consumption by agriculture machines,AR-P,SESCO,annual,kg,423ecbd0-30b3-33b7-a68a-73c07c03e13d +2017,Formosa,II.5.1,9.53568,TJ,CH4,3.9,kg/TJ,37.18915199999999,Gas Oil combustion consumption by agriculture machines,AR-P,SESCO,annual,kg,afb05873-b107-3b4f-9f95-236fab284542 +2017,Formosa,II.5.1,9.53568,TJ,N2O,3.9,kg/TJ,37.18915199999999,Gas Oil combustion consumption by agriculture machines,AR-P,SESCO,annual,kg,afb05873-b107-3b4f-9f95-236fab284542 +2017,Jujuy,II.5.1,24.0198,TJ,CO2,74100.0,kg/TJ,1779867.18,Gas Oil combustion consumption by agriculture machines,AR-Y,SESCO,annual,kg,ba8f5917-49ec-3b89-a5ae-ce305025405c +2017,Jujuy,II.5.1,24.0198,TJ,CH4,3.9,kg/TJ,93.67721999999999,Gas Oil combustion consumption by agriculture machines,AR-Y,SESCO,annual,kg,63ad919a-7f66-3b18-af81-9bd8a6def492 +2017,Jujuy,II.5.1,24.0198,TJ,N2O,3.9,kg/TJ,93.67721999999999,Gas Oil combustion consumption by agriculture machines,AR-Y,SESCO,annual,kg,63ad919a-7f66-3b18-af81-9bd8a6def492 +2017,La Pampa,II.5.1,142.38504,TJ,CO2,74100.0,kg/TJ,10550731.464,Gas Oil combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,4b24e9a4-d2ac-3537-afce-9e2ad8ccf2a1 +2017,La Pampa,II.5.1,142.38504,TJ,CH4,3.9,kg/TJ,555.301656,Gas Oil combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,6b8a9644-5504-3a32-a331-9199de271502 +2017,La Pampa,II.5.1,142.38504,TJ,N2O,3.9,kg/TJ,555.301656,Gas Oil combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,6b8a9644-5504-3a32-a331-9199de271502 +2017,Mendoza,II.5.1,156.36347999999998,TJ,CO2,74100.0,kg/TJ,11586533.867999999,Gas Oil combustion consumption by agriculture machines,AR-M,SESCO,annual,kg,c11855f2-2a90-39c8-824a-8c016626640f +2017,Mendoza,II.5.1,156.36347999999998,TJ,CH4,3.9,kg/TJ,609.8175719999999,Gas Oil combustion consumption by agriculture machines,AR-M,SESCO,annual,kg,f5a4a71b-9fd2-33d1-a8c1-b3c28dc90ed1 +2017,Mendoza,II.5.1,156.36347999999998,TJ,N2O,3.9,kg/TJ,609.8175719999999,Gas Oil combustion consumption by agriculture machines,AR-M,SESCO,annual,kg,f5a4a71b-9fd2-33d1-a8c1-b3c28dc90ed1 +2017,Misiones,II.5.1,110.56331999999999,TJ,CO2,74100.0,kg/TJ,8192742.011999999,Gas Oil combustion consumption by agriculture machines,AR-N,SESCO,annual,kg,ac7366d6-9980-3f00-af1d-805ef254e96d +2017,Misiones,II.5.1,110.56331999999999,TJ,CH4,3.9,kg/TJ,431.19694799999996,Gas Oil combustion consumption by agriculture machines,AR-N,SESCO,annual,kg,53b9d672-a0eb-39ed-8e68-96bb1bfe42e2 +2017,Misiones,II.5.1,110.56331999999999,TJ,N2O,3.9,kg/TJ,431.19694799999996,Gas Oil combustion consumption by agriculture machines,AR-N,SESCO,annual,kg,53b9d672-a0eb-39ed-8e68-96bb1bfe42e2 +2017,Rio Negro,II.5.1,37.31196,TJ,CO2,74100.0,kg/TJ,2764816.236,Gas Oil combustion consumption by agriculture machines,AR-R,SESCO,annual,kg,443979ef-ead2-3e56-9516-2573b764b77e +2017,Rio Negro,II.5.1,37.31196,TJ,CH4,3.9,kg/TJ,145.51664399999999,Gas Oil combustion consumption by agriculture machines,AR-R,SESCO,annual,kg,7722df82-7ebe-3142-a735-68c69d495590 +2017,Rio Negro,II.5.1,37.31196,TJ,N2O,3.9,kg/TJ,145.51664399999999,Gas Oil combustion consumption by agriculture machines,AR-R,SESCO,annual,kg,7722df82-7ebe-3142-a735-68c69d495590 +2017,Salta,II.5.1,107.13192,TJ,CO2,74100.0,kg/TJ,7938475.272,Gas Oil combustion consumption by agriculture machines,AR-A,SESCO,annual,kg,72857803-99b1-3308-acff-dd588c6924cb +2017,Salta,II.5.1,107.13192,TJ,CH4,3.9,kg/TJ,417.814488,Gas Oil combustion consumption by agriculture machines,AR-A,SESCO,annual,kg,3e27b934-8bc4-3ea5-ab0c-19917e487c7e +2017,Salta,II.5.1,107.13192,TJ,N2O,3.9,kg/TJ,417.814488,Gas Oil combustion consumption by agriculture machines,AR-A,SESCO,annual,kg,3e27b934-8bc4-3ea5-ab0c-19917e487c7e +2017,San Juan,II.5.1,93.47856,TJ,CO2,74100.0,kg/TJ,6926761.296,Gas Oil combustion consumption by agriculture machines,AR-J,SESCO,annual,kg,87b7cecc-1181-3261-9796-cb62596ff5f8 +2017,San Juan,II.5.1,93.47856,TJ,CH4,3.9,kg/TJ,364.56638399999997,Gas Oil combustion consumption by agriculture machines,AR-J,SESCO,annual,kg,d7fa041f-074f-3c3f-8071-c7b89e0331e0 +2017,San Juan,II.5.1,93.47856,TJ,N2O,3.9,kg/TJ,364.56638399999997,Gas Oil combustion consumption by agriculture machines,AR-J,SESCO,annual,kg,d7fa041f-074f-3c3f-8071-c7b89e0331e0 +2017,San Luis,II.5.1,40.815599999999996,TJ,CO2,74100.0,kg/TJ,3024435.9599999995,Gas Oil combustion consumption by agriculture machines,AR-D,SESCO,annual,kg,0e2a0305-84cc-320f-97c5-386738721e08 +2017,San Luis,II.5.1,40.815599999999996,TJ,CH4,3.9,kg/TJ,159.18084,Gas Oil combustion consumption by agriculture machines,AR-D,SESCO,annual,kg,a1dd10c3-0f78-3ada-912e-2fcc194e583a +2017,San Luis,II.5.1,40.815599999999996,TJ,N2O,3.9,kg/TJ,159.18084,Gas Oil combustion consumption by agriculture machines,AR-D,SESCO,annual,kg,a1dd10c3-0f78-3ada-912e-2fcc194e583a +2017,Santa Fe,II.5.1,271.87523999999996,TJ,CO2,74100.0,kg/TJ,20145955.283999998,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,a8ad09ae-8923-34ff-923f-df02408702c4 +2017,Santa Fe,II.5.1,271.87523999999996,TJ,CH4,3.9,kg/TJ,1060.313436,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,202dffda-1a28-3d30-97f9-957b3db8ec91 +2017,Santa Fe,II.5.1,271.87523999999996,TJ,N2O,3.9,kg/TJ,1060.313436,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,202dffda-1a28-3d30-97f9-957b3db8ec91 +2017,Santiago del Estero,II.5.1,213.21635999999998,TJ,CO2,74100.0,kg/TJ,15799332.275999999,Gas Oil combustion consumption by agriculture machines,AR-G,SESCO,annual,kg,a9403e6b-29fa-3624-b32b-70d73b2171ff +2017,Santiago del Estero,II.5.1,213.21635999999998,TJ,CH4,3.9,kg/TJ,831.5438039999999,Gas Oil combustion consumption by agriculture machines,AR-G,SESCO,annual,kg,a8554eaf-bdda-389e-87cd-46362d2f8861 +2017,Santiago del Estero,II.5.1,213.21635999999998,TJ,N2O,3.9,kg/TJ,831.5438039999999,Gas Oil combustion consumption by agriculture machines,AR-G,SESCO,annual,kg,a8554eaf-bdda-389e-87cd-46362d2f8861 +2017,Tucuman,II.5.1,139.71215999999998,TJ,CO2,74100.0,kg/TJ,10352671.055999998,Gas Oil combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,2fa57239-e5a6-36e6-b5fd-4c6230435f0b +2017,Tucuman,II.5.1,139.71215999999998,TJ,CH4,3.9,kg/TJ,544.8774239999999,Gas Oil combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,c9a73460-5689-3714-83ad-79c67e17dd7c +2017,Tucuman,II.5.1,139.71215999999998,TJ,N2O,3.9,kg/TJ,544.8774239999999,Gas Oil combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,c9a73460-5689-3714-83ad-79c67e17dd7c +2017,Buenos Aires,II.5.1,7.108378,TJ,CO2,71500.0,kg/TJ,508249.027,Jet Kerosene combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,a055257c-20fd-344e-9816-80be9ed64ccc +2017,Buenos Aires,II.5.1,7.108378,TJ,CH4,0.5,kg/TJ,3.554189,Jet Kerosene combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,5b5fdae0-085a-3a05-9daa-bbb6b65dd308 +2017,Buenos Aires,II.5.1,7.108378,TJ,N2O,2.0,kg/TJ,14.216756,Jet Kerosene combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,6a13df16-7220-346c-8112-d1d5fbefadfe +2017,Córdoba,II.5.1,0.31453,TJ,CO2,71500.0,kg/TJ,22488.894999999997,Jet Kerosene combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,f15cf9af-afeb-31b9-a32e-757a60ba7346 +2017,Córdoba,II.5.1,0.31453,TJ,CH4,0.5,kg/TJ,0.157265,Jet Kerosene combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,cf48b8c3-2f61-3dd0-b123-b5d477ee9603 +2017,Córdoba,II.5.1,0.31453,TJ,N2O,2.0,kg/TJ,0.62906,Jet Kerosene combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,ba1ec442-4a67-3a2f-9a40-c16e4a8f5665 +2017,La Pampa,II.5.1,0.31453,TJ,CO2,71500.0,kg/TJ,22488.894999999997,Jet Kerosene combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,731686e1-2f7c-34e6-b141-5be8582cd2ae +2017,La Pampa,II.5.1,0.31453,TJ,CH4,0.5,kg/TJ,0.157265,Jet Kerosene combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,4d017e54-c7f3-30ac-b76b-f4146c487ab4 +2017,La Pampa,II.5.1,0.31453,TJ,N2O,2.0,kg/TJ,0.62906,Jet Kerosene combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,9d293ba2-ebba-3922-9dc9-35878266eeb5 +2017,Santa Fe,II.5.1,3.554189,TJ,CO2,71500.0,kg/TJ,254124.5135,Jet Kerosene combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,c9481ba8-3f72-3c56-ba9e-16ba84a48a6d +2017,Santa Fe,II.5.1,3.554189,TJ,CH4,0.5,kg/TJ,1.7770945,Jet Kerosene combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,628213f4-a137-3dca-8083-a39cf0644c92 +2017,Santa Fe,II.5.1,3.554189,TJ,N2O,2.0,kg/TJ,7.108378,Jet Kerosene combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,880466c2-540c-397d-9fe6-c06537f02de5 +2017,Buenos Aires,II.5.1,792.1040049999999,TJ,CO2,73300.0,kg/TJ,58061223.56649999,Naphtha combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,d07f491f-bc75-3bf7-b962-f24bf86840a4 +2017,Buenos Aires,II.5.1,792.1040049999999,TJ,CH4,0.5,kg/TJ,396.05200249999996,Naphtha combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,c189b792-02c9-322d-ba81-c6c5f3a04a90 +2017,Buenos Aires,II.5.1,792.1040049999999,TJ,N2O,2.0,kg/TJ,1584.2080099999998,Naphtha combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,2f7d7235-615c-3484-82fc-088aed76c8c7 +2017,Chubut,II.5.1,1.71325,TJ,CO2,73300.0,kg/TJ,125581.22499999999,Naphtha combustion consumption by agriculture machines,AR-U,SESCO,annual,kg,70f60577-b400-3b07-b40d-a9491279f99c +2017,Chubut,II.5.1,1.71325,TJ,CH4,0.5,kg/TJ,0.856625,Naphtha combustion consumption by agriculture machines,AR-U,SESCO,annual,kg,0764a4b6-6197-3c4b-94c3-8f1cac885489 +2017,Chubut,II.5.1,1.71325,TJ,N2O,2.0,kg/TJ,3.4265,Naphtha combustion consumption by agriculture machines,AR-U,SESCO,annual,kg,2290637d-ac85-340a-8aca-ff78643d4347 +2017,Jujuy,II.5.1,0.34265,TJ,CO2,73300.0,kg/TJ,25116.245,Naphtha combustion consumption by agriculture machines,AR-Y,SESCO,annual,kg,572fead5-f493-3e96-9849-4d32b9afadb1 +2017,Jujuy,II.5.1,0.34265,TJ,CH4,0.5,kg/TJ,0.171325,Naphtha combustion consumption by agriculture machines,AR-Y,SESCO,annual,kg,a39c0b5c-349d-39af-9edc-166358ae8703 +2017,Jujuy,II.5.1,0.34265,TJ,N2O,2.0,kg/TJ,0.6853,Naphtha combustion consumption by agriculture machines,AR-Y,SESCO,annual,kg,45175821-38f9-3a0c-8c4c-9d18220f3b3e +2017,Mendoza,II.5.1,24.39668,TJ,CO2,73300.0,kg/TJ,1788276.644,Naphtha combustion consumption by agriculture machines,AR-M,SESCO,annual,kg,00c73206-b214-35ee-94f6-f0ac0dcce2d1 +2017,Mendoza,II.5.1,24.39668,TJ,CH4,0.5,kg/TJ,12.19834,Naphtha combustion consumption by agriculture machines,AR-M,SESCO,annual,kg,5ffe847e-40d6-381c-ac01-948366feeef8 +2017,Mendoza,II.5.1,24.39668,TJ,N2O,2.0,kg/TJ,48.79336,Naphtha combustion consumption by agriculture machines,AR-M,SESCO,annual,kg,4ffa892d-b89e-3ebd-b03e-9b637af85410 +2017,Salta,II.5.1,0.47970999999999997,TJ,CO2,73300.0,kg/TJ,35162.742999999995,Naphtha combustion consumption by agriculture machines,AR-A,SESCO,annual,kg,86cff40b-6afb-3ae1-bfe2-ca24fd8c4161 +2017,Salta,II.5.1,0.47970999999999997,TJ,CH4,0.5,kg/TJ,0.23985499999999998,Naphtha combustion consumption by agriculture machines,AR-A,SESCO,annual,kg,10313f7e-9cf1-3217-80e0-0942d496ad1d +2017,Salta,II.5.1,0.47970999999999997,TJ,N2O,2.0,kg/TJ,0.9594199999999999,Naphtha combustion consumption by agriculture machines,AR-A,SESCO,annual,kg,58930a6d-d2a7-3922-81b7-3f3f8e6b4f37 +2017,Santa Fe,II.5.1,111.08713,TJ,CO2,73300.0,kg/TJ,8142686.629,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,3abec518-354f-3ab5-a587-167fdfc2cee3 +2017,Santa Fe,II.5.1,111.08713,TJ,CH4,0.5,kg/TJ,55.543565,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,9cf35c9c-1504-327b-87a1-24e29740436d +2017,Santa Fe,II.5.1,111.08713,TJ,N2O,2.0,kg/TJ,222.17426,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,8ddcc682-28e4-35f9-ac09-7f2f475305ec +2017,Buenos Aires,II.5.1,4.31739,TJ,CO2,73300.0,kg/TJ,316464.687,Naphtha combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,5120fddc-eb97-36db-aa0e-ba24f11452b5 +2017,Buenos Aires,II.5.1,4.31739,TJ,CH4,0.5,kg/TJ,2.158695,Naphtha combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,fd9e37c0-9d31-3530-89a6-804f053f426c +2017,Buenos Aires,II.5.1,4.31739,TJ,N2O,2.0,kg/TJ,8.63478,Naphtha combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,a5ed8ac6-66b5-3390-97be-34de13223029 +2017,Santa Fe,II.5.1,0.5825049999999999,TJ,CO2,73300.0,kg/TJ,42697.6165,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,f5882ed0-b8d9-3125-bde5-3a75ffd9ab18 +2017,Santa Fe,II.5.1,0.5825049999999999,TJ,CH4,0.5,kg/TJ,0.29125249999999997,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,6194f0c4-b186-3d48-aa68-165c5cb1704a +2017,Santa Fe,II.5.1,0.5825049999999999,TJ,N2O,2.0,kg/TJ,1.1650099999999999,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,b73a9ecf-382a-3d05-ba6d-f92ec74afb3f +2017,Buenos Aires,II.1.1,9561.07236,TJ,CO2,74100.0,kg/TJ,708475461.876,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,ebecf47b-8a12-36c2-90d8-d986740d0709 +2017,Buenos Aires,II.1.1,9561.07236,TJ,CH4,3.9,kg/TJ,37288.182204,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,4a351df3-c374-3592-af36-2bf80afb74a5 +2017,Buenos Aires,II.1.1,9561.07236,TJ,N2O,3.9,kg/TJ,37288.182204,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,4a351df3-c374-3592-af36-2bf80afb74a5 +2017,Capital Federal,II.1.1,4040.9972399999997,TJ,CO2,74100.0,kg/TJ,299437895.48399997,Gas Oil combustion consumption by freight transport,AR-C,SESCO,annual,kg,32edce38-23e1-36c4-beb1-dd21cf8291af +2017,Capital Federal,II.1.1,4040.9972399999997,TJ,CH4,3.9,kg/TJ,15759.889235999999,Gas Oil combustion consumption by freight transport,AR-C,SESCO,annual,kg,0fc95bcc-47d8-3128-bb24-5c1c4493fca0 +2017,Capital Federal,II.1.1,4040.9972399999997,TJ,N2O,3.9,kg/TJ,15759.889235999999,Gas Oil combustion consumption by freight transport,AR-C,SESCO,annual,kg,0fc95bcc-47d8-3128-bb24-5c1c4493fca0 +2017,Catamarca,II.1.1,23.36964,TJ,CO2,74100.0,kg/TJ,1731690.324,Gas Oil combustion consumption by freight transport,AR-K,SESCO,annual,kg,788b4863-e686-384f-928b-5231d1afdd93 +2017,Catamarca,II.1.1,23.36964,TJ,CH4,3.9,kg/TJ,91.14159599999999,Gas Oil combustion consumption by freight transport,AR-K,SESCO,annual,kg,1bc652e5-f06f-3efc-8a14-11d9c2a15793 +2017,Catamarca,II.1.1,23.36964,TJ,N2O,3.9,kg/TJ,91.14159599999999,Gas Oil combustion consumption by freight transport,AR-K,SESCO,annual,kg,1bc652e5-f06f-3efc-8a14-11d9c2a15793 +2017,Chaco,II.1.1,262.73688,TJ,CO2,74100.0,kg/TJ,19468802.808,Gas Oil combustion consumption by freight transport,AR-H,SESCO,annual,kg,486554a0-7c84-31ed-b558-a89ca1bc3a1a +2017,Chaco,II.1.1,262.73688,TJ,CH4,3.9,kg/TJ,1024.673832,Gas Oil combustion consumption by freight transport,AR-H,SESCO,annual,kg,38a7160b-63f4-36a8-b095-b7b99bd0c148 +2017,Chaco,II.1.1,262.73688,TJ,N2O,3.9,kg/TJ,1024.673832,Gas Oil combustion consumption by freight transport,AR-H,SESCO,annual,kg,38a7160b-63f4-36a8-b095-b7b99bd0c148 +2017,Chubut,II.1.1,221.99352,TJ,CO2,74100.0,kg/TJ,16449719.831999999,Gas Oil combustion consumption by freight transport,AR-U,SESCO,annual,kg,7826f9ed-1b0a-3ad4-826c-f676ef69fc76 +2017,Chubut,II.1.1,221.99352,TJ,CH4,3.9,kg/TJ,865.774728,Gas Oil combustion consumption by freight transport,AR-U,SESCO,annual,kg,31ad7a5c-6e87-315a-b849-afa9003fdb47 +2017,Chubut,II.1.1,221.99352,TJ,N2O,3.9,kg/TJ,865.774728,Gas Oil combustion consumption by freight transport,AR-U,SESCO,annual,kg,31ad7a5c-6e87-315a-b849-afa9003fdb47 +2017,Corrientes,II.1.1,323.34623999999997,TJ,CO2,74100.0,kg/TJ,23959956.383999996,Gas Oil combustion consumption by freight transport,AR-W,SESCO,annual,kg,f7b354ca-a322-3762-a19d-7869903682e9 +2017,Corrientes,II.1.1,323.34623999999997,TJ,CH4,3.9,kg/TJ,1261.0503359999998,Gas Oil combustion consumption by freight transport,AR-W,SESCO,annual,kg,1d2f1c2a-e65a-3071-8095-b4c27ca7b69c +2017,Corrientes,II.1.1,323.34623999999997,TJ,N2O,3.9,kg/TJ,1261.0503359999998,Gas Oil combustion consumption by freight transport,AR-W,SESCO,annual,kg,1d2f1c2a-e65a-3071-8095-b4c27ca7b69c +2017,Córdoba,II.1.1,2655.57852,TJ,CO2,74100.0,kg/TJ,196778368.332,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,184094bf-3f4c-351f-88d4-3057fe536109 +2017,Córdoba,II.1.1,2655.57852,TJ,CH4,3.9,kg/TJ,10356.756228,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,c40e5aa3-e4dc-362a-ab0e-47041e58b327 +2017,Córdoba,II.1.1,2655.57852,TJ,N2O,3.9,kg/TJ,10356.756228,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,c40e5aa3-e4dc-362a-ab0e-47041e58b327 +2017,Entre Rios,II.1.1,555.48948,TJ,CO2,74100.0,kg/TJ,41161770.467999995,Gas Oil combustion consumption by freight transport,AR-E,SESCO,annual,kg,a28ed434-3e54-3e43-9373-c08888d37f9f +2017,Entre Rios,II.1.1,555.48948,TJ,CH4,3.9,kg/TJ,2166.4089719999997,Gas Oil combustion consumption by freight transport,AR-E,SESCO,annual,kg,abd11c6c-bd21-3d84-a93a-5fc75fea7786 +2017,Entre Rios,II.1.1,555.48948,TJ,N2O,3.9,kg/TJ,2166.4089719999997,Gas Oil combustion consumption by freight transport,AR-E,SESCO,annual,kg,abd11c6c-bd21-3d84-a93a-5fc75fea7786 +2017,Formosa,II.1.1,26.40372,TJ,CO2,74100.0,kg/TJ,1956515.652,Gas Oil combustion consumption by freight transport,AR-P,SESCO,annual,kg,04fda7f2-8505-3f16-ab52-00e87bf5be32 +2017,Formosa,II.1.1,26.40372,TJ,CH4,3.9,kg/TJ,102.974508,Gas Oil combustion consumption by freight transport,AR-P,SESCO,annual,kg,c01f2fb7-8341-3af0-b38d-fdd8208a6a3c +2017,Formosa,II.1.1,26.40372,TJ,N2O,3.9,kg/TJ,102.974508,Gas Oil combustion consumption by freight transport,AR-P,SESCO,annual,kg,c01f2fb7-8341-3af0-b38d-fdd8208a6a3c +2017,Jujuy,II.1.1,154.08792,TJ,CO2,74100.0,kg/TJ,11417914.872,Gas Oil combustion consumption by freight transport,AR-Y,SESCO,annual,kg,4fbb9565-717c-3faa-b962-45c63f4569d3 +2017,Jujuy,II.1.1,154.08792,TJ,CH4,3.9,kg/TJ,600.9428879999999,Gas Oil combustion consumption by freight transport,AR-Y,SESCO,annual,kg,73e10711-d158-39f9-a42e-d244251f6847 +2017,Jujuy,II.1.1,154.08792,TJ,N2O,3.9,kg/TJ,600.9428879999999,Gas Oil combustion consumption by freight transport,AR-Y,SESCO,annual,kg,73e10711-d158-39f9-a42e-d244251f6847 +2017,La Pampa,II.1.1,179.44415999999998,TJ,CO2,74100.0,kg/TJ,13296812.256,Gas Oil combustion consumption by freight transport,AR-L,SESCO,annual,kg,5d18db2e-e3e0-32bf-92cd-460d0d062bca +2017,La Pampa,II.1.1,179.44415999999998,TJ,CH4,3.9,kg/TJ,699.8322239999999,Gas Oil combustion consumption by freight transport,AR-L,SESCO,annual,kg,6ed5109a-00b9-30b7-9909-f82b5e386106 +2017,La Pampa,II.1.1,179.44415999999998,TJ,N2O,3.9,kg/TJ,699.8322239999999,Gas Oil combustion consumption by freight transport,AR-L,SESCO,annual,kg,6ed5109a-00b9-30b7-9909-f82b5e386106 +2017,La Rioja,II.1.1,11.48616,TJ,CO2,74100.0,kg/TJ,851124.456,Gas Oil combustion consumption by freight transport,AR-F,SESCO,annual,kg,bd8b2ba2-651a-36a5-80ca-8ed650e51867 +2017,La Rioja,II.1.1,11.48616,TJ,CH4,3.9,kg/TJ,44.796023999999996,Gas Oil combustion consumption by freight transport,AR-F,SESCO,annual,kg,3c6ee583-12c9-389c-80ea-d58bceeda7b5 +2017,La Rioja,II.1.1,11.48616,TJ,N2O,3.9,kg/TJ,44.796023999999996,Gas Oil combustion consumption by freight transport,AR-F,SESCO,annual,kg,3c6ee583-12c9-389c-80ea-d58bceeda7b5 +2017,Mendoza,II.1.1,1920.42816,TJ,CO2,74100.0,kg/TJ,142303726.656,Gas Oil combustion consumption by freight transport,AR-M,SESCO,annual,kg,c62df0b6-2bb8-3817-95c7-d262ff0193b1 +2017,Mendoza,II.1.1,1920.42816,TJ,CH4,3.9,kg/TJ,7489.669824,Gas Oil combustion consumption by freight transport,AR-M,SESCO,annual,kg,24656b27-0a8b-36bf-b68d-4c600c85852f +2017,Mendoza,II.1.1,1920.42816,TJ,N2O,3.9,kg/TJ,7489.669824,Gas Oil combustion consumption by freight transport,AR-M,SESCO,annual,kg,24656b27-0a8b-36bf-b68d-4c600c85852f +2017,Misiones,II.1.1,825.7393199999999,TJ,CO2,74100.0,kg/TJ,61187283.611999996,Gas Oil combustion consumption by freight transport,AR-N,SESCO,annual,kg,4a409b4e-699d-326d-819c-a0aedaf3a3fe +2017,Misiones,II.1.1,825.7393199999999,TJ,CH4,3.9,kg/TJ,3220.3833479999994,Gas Oil combustion consumption by freight transport,AR-N,SESCO,annual,kg,0bd7314b-c08d-3ea1-a073-d23ff10a3341 +2017,Misiones,II.1.1,825.7393199999999,TJ,N2O,3.9,kg/TJ,3220.3833479999994,Gas Oil combustion consumption by freight transport,AR-N,SESCO,annual,kg,0bd7314b-c08d-3ea1-a073-d23ff10a3341 +2017,Neuquén,II.1.1,999.5487599999999,TJ,CO2,74100.0,kg/TJ,74066563.116,Gas Oil combustion consumption by freight transport,AR-Q,SESCO,annual,kg,eb0c0f49-9780-3d22-ab5f-0e84ca5f329e +2017,Neuquén,II.1.1,999.5487599999999,TJ,CH4,3.9,kg/TJ,3898.2401639999994,Gas Oil combustion consumption by freight transport,AR-Q,SESCO,annual,kg,0085a13b-95fa-3491-acef-b42ad804d7da +2017,Neuquén,II.1.1,999.5487599999999,TJ,N2O,3.9,kg/TJ,3898.2401639999994,Gas Oil combustion consumption by freight transport,AR-Q,SESCO,annual,kg,0085a13b-95fa-3491-acef-b42ad804d7da +2017,Rio Negro,II.1.1,344.29584,TJ,CO2,74100.0,kg/TJ,25512321.744,Gas Oil combustion consumption by freight transport,AR-R,SESCO,annual,kg,b8231c5b-3fae-3b85-a228-2db81efab4dd +2017,Rio Negro,II.1.1,344.29584,TJ,CH4,3.9,kg/TJ,1342.753776,Gas Oil combustion consumption by freight transport,AR-R,SESCO,annual,kg,92a89756-2530-36ad-9db4-b1be72b9488f +2017,Rio Negro,II.1.1,344.29584,TJ,N2O,3.9,kg/TJ,1342.753776,Gas Oil combustion consumption by freight transport,AR-R,SESCO,annual,kg,92a89756-2530-36ad-9db4-b1be72b9488f +2017,Salta,II.1.1,343.06775999999996,TJ,CO2,74100.0,kg/TJ,25421321.016,Gas Oil combustion consumption by freight transport,AR-A,SESCO,annual,kg,0615e72e-6e19-381e-a00c-4022b4fce4c3 +2017,Salta,II.1.1,343.06775999999996,TJ,CH4,3.9,kg/TJ,1337.9642639999997,Gas Oil combustion consumption by freight transport,AR-A,SESCO,annual,kg,2476cead-9b54-3f2c-a91f-b3405ffb044b +2017,Salta,II.1.1,343.06775999999996,TJ,N2O,3.9,kg/TJ,1337.9642639999997,Gas Oil combustion consumption by freight transport,AR-A,SESCO,annual,kg,2476cead-9b54-3f2c-a91f-b3405ffb044b +2017,San Juan,II.1.1,120.09899999999999,TJ,CO2,74100.0,kg/TJ,8899335.899999999,Gas Oil combustion consumption by freight transport,AR-J,SESCO,annual,kg,ecf06080-a39c-3076-892b-5a7d305781c9 +2017,San Juan,II.1.1,120.09899999999999,TJ,CH4,3.9,kg/TJ,468.38609999999994,Gas Oil combustion consumption by freight transport,AR-J,SESCO,annual,kg,2bac67ef-6b16-3973-8c2d-ee83db60d1c7 +2017,San Juan,II.1.1,120.09899999999999,TJ,N2O,3.9,kg/TJ,468.38609999999994,Gas Oil combustion consumption by freight transport,AR-J,SESCO,annual,kg,2bac67ef-6b16-3973-8c2d-ee83db60d1c7 +2017,San Luis,II.1.1,183.8508,TJ,CO2,74100.0,kg/TJ,13623344.28,Gas Oil combustion consumption by freight transport,AR-D,SESCO,annual,kg,581cf875-dfae-3d17-93d2-24971a85f366 +2017,San Luis,II.1.1,183.8508,TJ,CH4,3.9,kg/TJ,717.01812,Gas Oil combustion consumption by freight transport,AR-D,SESCO,annual,kg,4b30fe2e-9628-3530-a38e-acb33d115311 +2017,San Luis,II.1.1,183.8508,TJ,N2O,3.9,kg/TJ,717.01812,Gas Oil combustion consumption by freight transport,AR-D,SESCO,annual,kg,4b30fe2e-9628-3530-a38e-acb33d115311 +2017,Santa Cruz,II.1.1,132.23532,TJ,CO2,74100.0,kg/TJ,9798637.212,Gas Oil combustion consumption by freight transport,AR-Z,SESCO,annual,kg,42c08f1d-00af-379d-bfff-6b29b20873c8 +2017,Santa Cruz,II.1.1,132.23532,TJ,CH4,3.9,kg/TJ,515.717748,Gas Oil combustion consumption by freight transport,AR-Z,SESCO,annual,kg,d32f205a-9a66-3e43-af97-366558b9ea73 +2017,Santa Cruz,II.1.1,132.23532,TJ,N2O,3.9,kg/TJ,515.717748,Gas Oil combustion consumption by freight transport,AR-Z,SESCO,annual,kg,d32f205a-9a66-3e43-af97-366558b9ea73 +2017,Santa Fe,II.1.1,2468.9826,TJ,CO2,74100.0,kg/TJ,182951610.66,Gas Oil combustion consumption by freight transport,AR-S,SESCO,annual,kg,fd5ed197-7517-3a6b-9ae7-dfc4d09348dd +2017,Santa Fe,II.1.1,2468.9826,TJ,CH4,3.9,kg/TJ,9629.03214,Gas Oil combustion consumption by freight transport,AR-S,SESCO,annual,kg,d9812b57-10f4-3e09-8226-2fbf1b8b1353 +2017,Santa Fe,II.1.1,2468.9826,TJ,N2O,3.9,kg/TJ,9629.03214,Gas Oil combustion consumption by freight transport,AR-S,SESCO,annual,kg,d9812b57-10f4-3e09-8226-2fbf1b8b1353 +2017,Santiago del Estero,II.1.1,220.54872,TJ,CO2,74100.0,kg/TJ,16342660.152,Gas Oil combustion consumption by freight transport,AR-G,SESCO,annual,kg,935bfca3-9192-35c4-8e39-c01163020ce3 +2017,Santiago del Estero,II.1.1,220.54872,TJ,CH4,3.9,kg/TJ,860.140008,Gas Oil combustion consumption by freight transport,AR-G,SESCO,annual,kg,f91269ce-0dbd-35de-a578-eb17522c930b +2017,Santiago del Estero,II.1.1,220.54872,TJ,N2O,3.9,kg/TJ,860.140008,Gas Oil combustion consumption by freight transport,AR-G,SESCO,annual,kg,f91269ce-0dbd-35de-a578-eb17522c930b +2017,Tierra del Fuego,II.1.1,200.71884,TJ,CO2,74100.0,kg/TJ,14873266.044,Gas Oil combustion consumption by freight transport,AR-V,SESCO,annual,kg,23b95649-e1ba-3714-8a49-9564b35bb111 +2017,Tierra del Fuego,II.1.1,200.71884,TJ,CH4,3.9,kg/TJ,782.8034759999999,Gas Oil combustion consumption by freight transport,AR-V,SESCO,annual,kg,76c0fe52-4ddc-39eb-83d3-5ea0a7845fd6 +2017,Tierra del Fuego,II.1.1,200.71884,TJ,N2O,3.9,kg/TJ,782.8034759999999,Gas Oil combustion consumption by freight transport,AR-V,SESCO,annual,kg,76c0fe52-4ddc-39eb-83d3-5ea0a7845fd6 +2017,Tucuman,II.1.1,664.13844,TJ,CO2,74100.0,kg/TJ,49212658.404,Gas Oil combustion consumption by freight transport,AR-T,SESCO,annual,kg,9f413994-f4c5-38f9-b4a5-4c621c7d0142 +2017,Tucuman,II.1.1,664.13844,TJ,CH4,3.9,kg/TJ,2590.1399159999996,Gas Oil combustion consumption by freight transport,AR-T,SESCO,annual,kg,41a748d4-2262-363d-96ec-b57f555b53f1 +2017,Tucuman,II.1.1,664.13844,TJ,N2O,3.9,kg/TJ,2590.1399159999996,Gas Oil combustion consumption by freight transport,AR-T,SESCO,annual,kg,41a748d4-2262-363d-96ec-b57f555b53f1 +2017,Buenos Aires,II.1.1,1389.5364,TJ,CO2,74100.0,kg/TJ,102964647.24,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,78cd42b3-247d-31c9-8a6d-1912e5c7a092 +2017,Buenos Aires,II.1.1,1389.5364,TJ,CH4,3.9,kg/TJ,5419.19196,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,96d2cc1b-a7d7-3d68-b71c-649bfea317e0 +2017,Buenos Aires,II.1.1,1389.5364,TJ,N2O,3.9,kg/TJ,5419.19196,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,96d2cc1b-a7d7-3d68-b71c-649bfea317e0 +2017,Capital Federal,II.1.1,1452.5657999999999,TJ,CO2,74100.0,kg/TJ,107635125.77999999,Gas Oil combustion consumption by freight transport,AR-C,SESCO,annual,kg,016928d4-4add-322b-a324-f8b460d65518 +2017,Capital Federal,II.1.1,1452.5657999999999,TJ,CH4,3.9,kg/TJ,5665.006619999999,Gas Oil combustion consumption by freight transport,AR-C,SESCO,annual,kg,6ca52ade-9b89-3858-be69-080d130bcde3 +2017,Capital Federal,II.1.1,1452.5657999999999,TJ,N2O,3.9,kg/TJ,5665.006619999999,Gas Oil combustion consumption by freight transport,AR-C,SESCO,annual,kg,6ca52ade-9b89-3858-be69-080d130bcde3 +2017,Catamarca,II.1.1,2.31168,TJ,CO2,74100.0,kg/TJ,171295.48799999998,Gas Oil combustion consumption by freight transport,AR-K,SESCO,annual,kg,834fb272-094c-3b88-9302-3201e2475633 +2017,Catamarca,II.1.1,2.31168,TJ,CH4,3.9,kg/TJ,9.015552,Gas Oil combustion consumption by freight transport,AR-K,SESCO,annual,kg,607b120c-bba9-3cad-9ee1-bcaed7c21d76 +2017,Catamarca,II.1.1,2.31168,TJ,N2O,3.9,kg/TJ,9.015552,Gas Oil combustion consumption by freight transport,AR-K,SESCO,annual,kg,607b120c-bba9-3cad-9ee1-bcaed7c21d76 +2017,Chaco,II.1.1,74.66004,TJ,CO2,74100.0,kg/TJ,5532308.964,Gas Oil combustion consumption by freight transport,AR-H,SESCO,annual,kg,00a64904-70bc-3ecd-ae3d-4a29f4abd910 +2017,Chaco,II.1.1,74.66004,TJ,CH4,3.9,kg/TJ,291.174156,Gas Oil combustion consumption by freight transport,AR-H,SESCO,annual,kg,a0fa08d2-4e47-3ba5-99be-ab59e86e898e +2017,Chaco,II.1.1,74.66004,TJ,N2O,3.9,kg/TJ,291.174156,Gas Oil combustion consumption by freight transport,AR-H,SESCO,annual,kg,a0fa08d2-4e47-3ba5-99be-ab59e86e898e +2017,Chubut,II.1.1,159.21696,TJ,CO2,74100.0,kg/TJ,11797976.736,Gas Oil combustion consumption by freight transport,AR-U,SESCO,annual,kg,ba8a5588-eee9-3b1c-9803-67fdc77e3c67 +2017,Chubut,II.1.1,159.21696,TJ,CH4,3.9,kg/TJ,620.946144,Gas Oil combustion consumption by freight transport,AR-U,SESCO,annual,kg,0f14ef69-2185-3a44-9652-c56c5a7a0d64 +2017,Chubut,II.1.1,159.21696,TJ,N2O,3.9,kg/TJ,620.946144,Gas Oil combustion consumption by freight transport,AR-U,SESCO,annual,kg,0f14ef69-2185-3a44-9652-c56c5a7a0d64 +2017,Corrientes,II.1.1,40.12932,TJ,CO2,74100.0,kg/TJ,2973582.612,Gas Oil combustion consumption by freight transport,AR-W,SESCO,annual,kg,d8ae9ee3-3ddd-3f3b-ae34-ecb0755fba3c +2017,Corrientes,II.1.1,40.12932,TJ,CH4,3.9,kg/TJ,156.504348,Gas Oil combustion consumption by freight transport,AR-W,SESCO,annual,kg,d88a1f41-909d-3e20-8c66-4c63fdca6fb6 +2017,Corrientes,II.1.1,40.12932,TJ,N2O,3.9,kg/TJ,156.504348,Gas Oil combustion consumption by freight transport,AR-W,SESCO,annual,kg,d88a1f41-909d-3e20-8c66-4c63fdca6fb6 +2017,Córdoba,II.1.1,173.80944,TJ,CO2,74100.0,kg/TJ,12879279.503999999,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,dd8ecc15-7844-33c7-856a-9b2ef8fc0450 +2017,Córdoba,II.1.1,173.80944,TJ,CH4,3.9,kg/TJ,677.856816,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,1e885226-df28-385f-ba95-d060ff4bca2f +2017,Córdoba,II.1.1,173.80944,TJ,N2O,3.9,kg/TJ,677.856816,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,1e885226-df28-385f-ba95-d060ff4bca2f +2017,Entre Rios,II.1.1,83.69004,TJ,CO2,74100.0,kg/TJ,6201431.964,Gas Oil combustion consumption by freight transport,AR-E,SESCO,annual,kg,01dcf267-5dc4-3188-bfa6-c0299531b8b4 +2017,Entre Rios,II.1.1,83.69004,TJ,CH4,3.9,kg/TJ,326.39115599999997,Gas Oil combustion consumption by freight transport,AR-E,SESCO,annual,kg,85e9689b-faca-3da1-84b0-edfa6d696b6a +2017,Entre Rios,II.1.1,83.69004,TJ,N2O,3.9,kg/TJ,326.39115599999997,Gas Oil combustion consumption by freight transport,AR-E,SESCO,annual,kg,85e9689b-faca-3da1-84b0-edfa6d696b6a +2017,Formosa,II.1.1,7.11564,TJ,CO2,74100.0,kg/TJ,527268.924,Gas Oil combustion consumption by freight transport,AR-P,SESCO,annual,kg,51ffa501-b90f-37a4-8689-25909cae9ea7 +2017,Formosa,II.1.1,7.11564,TJ,CH4,3.9,kg/TJ,27.750996,Gas Oil combustion consumption by freight transport,AR-P,SESCO,annual,kg,6ff79616-635c-3e7f-8649-fbe1266c62e8 +2017,Formosa,II.1.1,7.11564,TJ,N2O,3.9,kg/TJ,27.750996,Gas Oil combustion consumption by freight transport,AR-P,SESCO,annual,kg,6ff79616-635c-3e7f-8649-fbe1266c62e8 +2017,Jujuy,II.1.1,2.81736,TJ,CO2,74100.0,kg/TJ,208766.376,Gas Oil combustion consumption by freight transport,AR-Y,SESCO,annual,kg,c4182bd5-c49c-30bc-b943-4b0d788ec553 +2017,Jujuy,II.1.1,2.81736,TJ,CH4,3.9,kg/TJ,10.987703999999999,Gas Oil combustion consumption by freight transport,AR-Y,SESCO,annual,kg,c8e4aaaa-079c-3abd-8ca7-ce934eacf3ca +2017,Jujuy,II.1.1,2.81736,TJ,N2O,3.9,kg/TJ,10.987703999999999,Gas Oil combustion consumption by freight transport,AR-Y,SESCO,annual,kg,c8e4aaaa-079c-3abd-8ca7-ce934eacf3ca +2017,La Pampa,II.1.1,20.44392,TJ,CO2,74100.0,kg/TJ,1514894.4719999998,Gas Oil combustion consumption by freight transport,AR-L,SESCO,annual,kg,11a5e135-6acb-32b6-8c31-f9b29ea1ed92 +2017,La Pampa,II.1.1,20.44392,TJ,CH4,3.9,kg/TJ,79.73128799999999,Gas Oil combustion consumption by freight transport,AR-L,SESCO,annual,kg,f61f4142-44b4-3af7-88f9-1935ba62bc56 +2017,La Pampa,II.1.1,20.44392,TJ,N2O,3.9,kg/TJ,79.73128799999999,Gas Oil combustion consumption by freight transport,AR-L,SESCO,annual,kg,f61f4142-44b4-3af7-88f9-1935ba62bc56 +2017,La Rioja,II.1.1,6.42936,TJ,CO2,74100.0,kg/TJ,476415.576,Gas Oil combustion consumption by freight transport,AR-F,SESCO,annual,kg,d45cc40a-a13b-3769-b409-962e7e00148b +2017,La Rioja,II.1.1,6.42936,TJ,CH4,3.9,kg/TJ,25.074504,Gas Oil combustion consumption by freight transport,AR-F,SESCO,annual,kg,18bc4fe7-e637-3f00-91f8-f52aebe6f4ea +2017,La Rioja,II.1.1,6.42936,TJ,N2O,3.9,kg/TJ,25.074504,Gas Oil combustion consumption by freight transport,AR-F,SESCO,annual,kg,18bc4fe7-e637-3f00-91f8-f52aebe6f4ea +2017,Mendoza,II.1.1,187.31832,TJ,CO2,74100.0,kg/TJ,13880287.512,Gas Oil combustion consumption by freight transport,AR-M,SESCO,annual,kg,c2f024c2-d101-31bb-bdc5-f0a0575a0b37 +2017,Mendoza,II.1.1,187.31832,TJ,CH4,3.9,kg/TJ,730.541448,Gas Oil combustion consumption by freight transport,AR-M,SESCO,annual,kg,c14a560b-80c4-3796-97fe-4c2243bd161e +2017,Mendoza,II.1.1,187.31832,TJ,N2O,3.9,kg/TJ,730.541448,Gas Oil combustion consumption by freight transport,AR-M,SESCO,annual,kg,c14a560b-80c4-3796-97fe-4c2243bd161e +2017,Misiones,II.1.1,56.05824,TJ,CO2,74100.0,kg/TJ,4153915.584,Gas Oil combustion consumption by freight transport,AR-N,SESCO,annual,kg,6186c99c-1c94-3d8c-b229-777dbde3a2d4 +2017,Misiones,II.1.1,56.05824,TJ,CH4,3.9,kg/TJ,218.62713599999998,Gas Oil combustion consumption by freight transport,AR-N,SESCO,annual,kg,3c196085-022d-3f42-afda-1470050c01fd +2017,Misiones,II.1.1,56.05824,TJ,N2O,3.9,kg/TJ,218.62713599999998,Gas Oil combustion consumption by freight transport,AR-N,SESCO,annual,kg,3c196085-022d-3f42-afda-1470050c01fd +2017,Neuquén,II.1.1,439.07471999999996,TJ,CO2,74100.0,kg/TJ,32535436.751999997,Gas Oil combustion consumption by freight transport,AR-Q,SESCO,annual,kg,848298d4-13f3-321b-a8da-64f98b190801 +2017,Neuquén,II.1.1,439.07471999999996,TJ,CH4,3.9,kg/TJ,1712.3914079999997,Gas Oil combustion consumption by freight transport,AR-Q,SESCO,annual,kg,354cac06-e61a-36bb-a8fd-7e70eeb0f40a +2017,Neuquén,II.1.1,439.07471999999996,TJ,N2O,3.9,kg/TJ,1712.3914079999997,Gas Oil combustion consumption by freight transport,AR-Q,SESCO,annual,kg,354cac06-e61a-36bb-a8fd-7e70eeb0f40a +2017,Rio Negro,II.1.1,78.52488,TJ,CO2,74100.0,kg/TJ,5818693.608,Gas Oil combustion consumption by freight transport,AR-R,SESCO,annual,kg,ae1ef08e-4fae-3ba0-9289-4b03741d40a3 +2017,Rio Negro,II.1.1,78.52488,TJ,CH4,3.9,kg/TJ,306.247032,Gas Oil combustion consumption by freight transport,AR-R,SESCO,annual,kg,cb9d389d-fbbc-332f-a483-53810a99d085 +2017,Rio Negro,II.1.1,78.52488,TJ,N2O,3.9,kg/TJ,306.247032,Gas Oil combustion consumption by freight transport,AR-R,SESCO,annual,kg,cb9d389d-fbbc-332f-a483-53810a99d085 +2017,Salta,II.1.1,93.94811999999999,TJ,CO2,74100.0,kg/TJ,6961555.691999999,Gas Oil combustion consumption by freight transport,AR-A,SESCO,annual,kg,486addb7-901a-3297-a441-bd4dd7f1e765 +2017,Salta,II.1.1,93.94811999999999,TJ,CH4,3.9,kg/TJ,366.39766799999995,Gas Oil combustion consumption by freight transport,AR-A,SESCO,annual,kg,5790e551-465f-322f-834e-8c5ecf94cedd +2017,Salta,II.1.1,93.94811999999999,TJ,N2O,3.9,kg/TJ,366.39766799999995,Gas Oil combustion consumption by freight transport,AR-A,SESCO,annual,kg,5790e551-465f-322f-834e-8c5ecf94cedd +2017,San Juan,II.1.1,9.174479999999999,TJ,CO2,74100.0,kg/TJ,679828.9679999999,Gas Oil combustion consumption by freight transport,AR-J,SESCO,annual,kg,8e7f9997-3651-3a95-80a1-2d78ea1ad94b +2017,San Juan,II.1.1,9.174479999999999,TJ,CH4,3.9,kg/TJ,35.780471999999996,Gas Oil combustion consumption by freight transport,AR-J,SESCO,annual,kg,206afeda-4597-3511-9edf-391173ba2a6b +2017,San Juan,II.1.1,9.174479999999999,TJ,N2O,3.9,kg/TJ,35.780471999999996,Gas Oil combustion consumption by freight transport,AR-J,SESCO,annual,kg,206afeda-4597-3511-9edf-391173ba2a6b +2017,San Luis,II.1.1,34.89192,TJ,CO2,74100.0,kg/TJ,2585491.272,Gas Oil combustion consumption by freight transport,AR-D,SESCO,annual,kg,b702673e-3169-324e-b35c-65056d01cd91 +2017,San Luis,II.1.1,34.89192,TJ,CH4,3.9,kg/TJ,136.078488,Gas Oil combustion consumption by freight transport,AR-D,SESCO,annual,kg,782c8fe4-7d09-3b75-a840-ae44885adbb3 +2017,San Luis,II.1.1,34.89192,TJ,N2O,3.9,kg/TJ,136.078488,Gas Oil combustion consumption by freight transport,AR-D,SESCO,annual,kg,782c8fe4-7d09-3b75-a840-ae44885adbb3 +2017,Santa Cruz,II.1.1,58.839479999999995,TJ,CO2,74100.0,kg/TJ,4360005.467999999,Gas Oil combustion consumption by freight transport,AR-Z,SESCO,annual,kg,d153844b-312d-309b-9f88-5543098595c4 +2017,Santa Cruz,II.1.1,58.839479999999995,TJ,CH4,3.9,kg/TJ,229.47397199999997,Gas Oil combustion consumption by freight transport,AR-Z,SESCO,annual,kg,6686df07-a5de-3893-96a7-6b9c1688625a +2017,Santa Cruz,II.1.1,58.839479999999995,TJ,N2O,3.9,kg/TJ,229.47397199999997,Gas Oil combustion consumption by freight transport,AR-Z,SESCO,annual,kg,6686df07-a5de-3893-96a7-6b9c1688625a +2017,Santa Fe,II.1.1,392.51604,TJ,CO2,74100.0,kg/TJ,29085438.564,Gas Oil combustion consumption by freight transport,AR-S,SESCO,annual,kg,20950d4f-c651-32f6-a65d-f73fdb2ae9a6 +2017,Santa Fe,II.1.1,392.51604,TJ,CH4,3.9,kg/TJ,1530.8125559999999,Gas Oil combustion consumption by freight transport,AR-S,SESCO,annual,kg,29d3df79-a3b6-3a5e-8de4-50235b642395 +2017,Santa Fe,II.1.1,392.51604,TJ,N2O,3.9,kg/TJ,1530.8125559999999,Gas Oil combustion consumption by freight transport,AR-S,SESCO,annual,kg,29d3df79-a3b6-3a5e-8de4-50235b642395 +2017,Santiago del Estero,II.1.1,5.7791999999999994,TJ,CO2,74100.0,kg/TJ,428238.72,Gas Oil combustion consumption by freight transport,AR-G,SESCO,annual,kg,d5449743-230d-32c3-85c0-4f9052fb39a1 +2017,Santiago del Estero,II.1.1,5.7791999999999994,TJ,CH4,3.9,kg/TJ,22.53888,Gas Oil combustion consumption by freight transport,AR-G,SESCO,annual,kg,e42116a7-04de-32e7-bb8a-459851b88aa0 +2017,Santiago del Estero,II.1.1,5.7791999999999994,TJ,N2O,3.9,kg/TJ,22.53888,Gas Oil combustion consumption by freight transport,AR-G,SESCO,annual,kg,e42116a7-04de-32e7-bb8a-459851b88aa0 +2017,Tierra del Fuego,II.1.1,27.595679999999998,TJ,CO2,74100.0,kg/TJ,2044839.8879999998,Gas Oil combustion consumption by freight transport,AR-V,SESCO,annual,kg,ce524cd0-1d2b-3499-b327-eb425d71ebeb +2017,Tierra del Fuego,II.1.1,27.595679999999998,TJ,CH4,3.9,kg/TJ,107.62315199999999,Gas Oil combustion consumption by freight transport,AR-V,SESCO,annual,kg,ba0a16b3-45e9-35a3-8809-dddb45890edb +2017,Tierra del Fuego,II.1.1,27.595679999999998,TJ,N2O,3.9,kg/TJ,107.62315199999999,Gas Oil combustion consumption by freight transport,AR-V,SESCO,annual,kg,ba0a16b3-45e9-35a3-8809-dddb45890edb +2017,Tucuman,II.1.1,44.82492,TJ,CO2,74100.0,kg/TJ,3321526.5719999997,Gas Oil combustion consumption by freight transport,AR-T,SESCO,annual,kg,0555233f-63d0-3222-97f9-ae5da6c298ef +2017,Tucuman,II.1.1,44.82492,TJ,CH4,3.9,kg/TJ,174.817188,Gas Oil combustion consumption by freight transport,AR-T,SESCO,annual,kg,c4f80f64-fc3e-3522-9efb-49afdbb6a91a +2017,Tucuman,II.1.1,44.82492,TJ,N2O,3.9,kg/TJ,174.817188,Gas Oil combustion consumption by freight transport,AR-T,SESCO,annual,kg,c4f80f64-fc3e-3522-9efb-49afdbb6a91a +2017,Buenos Aires,II.1.1,286.24980999999997,TJ,CO2,73300.0,kg/TJ,20982111.073,Naphtha combustion consumption by freight transport,AR-B,SESCO,annual,kg,287dd881-ec21-3c7b-b365-f99dfaa36e79 +2017,Buenos Aires,II.1.1,286.24980999999997,TJ,CH4,0.5,kg/TJ,143.12490499999998,Naphtha combustion consumption by freight transport,AR-B,SESCO,annual,kg,8822b16e-06af-31ec-a7af-85a44b319e9f +2017,Buenos Aires,II.1.1,286.24980999999997,TJ,N2O,2.0,kg/TJ,572.4996199999999,Naphtha combustion consumption by freight transport,AR-B,SESCO,annual,kg,ac55c6e2-f81b-3f09-84bd-3c21dc5b9c97 +2017,Capital Federal,II.1.1,296.015335,TJ,CO2,73300.0,kg/TJ,21697924.0555,Naphtha combustion consumption by freight transport,AR-C,SESCO,annual,kg,58ad2dbd-88a1-3807-85c8-494cd887a721 +2017,Capital Federal,II.1.1,296.015335,TJ,CH4,0.5,kg/TJ,148.0076675,Naphtha combustion consumption by freight transport,AR-C,SESCO,annual,kg,a849a799-d840-320c-a7ac-6f70fe62b142 +2017,Capital Federal,II.1.1,296.015335,TJ,N2O,2.0,kg/TJ,592.03067,Naphtha combustion consumption by freight transport,AR-C,SESCO,annual,kg,cdcf5543-6169-3299-a005-7204b182da78 +2017,Chaco,II.1.1,11.37598,TJ,CO2,73300.0,kg/TJ,833859.334,Naphtha combustion consumption by freight transport,AR-H,SESCO,annual,kg,48c7f398-4ad8-3a96-9b21-80f920c235bc +2017,Chaco,II.1.1,11.37598,TJ,CH4,0.5,kg/TJ,5.68799,Naphtha combustion consumption by freight transport,AR-H,SESCO,annual,kg,1d9a65d1-b52a-387b-a362-0ede8517b82a +2017,Chaco,II.1.1,11.37598,TJ,N2O,2.0,kg/TJ,22.75196,Naphtha combustion consumption by freight transport,AR-H,SESCO,annual,kg,a7ad3ec6-911a-3d0a-a1cf-4b9af64241ec +2017,Chubut,II.1.1,3.76915,TJ,CO2,73300.0,kg/TJ,276278.695,Naphtha combustion consumption by freight transport,AR-U,SESCO,annual,kg,1f119bbf-2a0d-360d-89dc-abab5abd8cab +2017,Chubut,II.1.1,3.76915,TJ,CH4,0.5,kg/TJ,1.884575,Naphtha combustion consumption by freight transport,AR-U,SESCO,annual,kg,88f763b3-6509-3ef3-b573-ff63aa36193d +2017,Chubut,II.1.1,3.76915,TJ,N2O,2.0,kg/TJ,7.5383,Naphtha combustion consumption by freight transport,AR-U,SESCO,annual,kg,f5b9fd13-b180-3bd7-b10a-f91ecbbf4367 +2017,Corrientes,II.1.1,2.19296,TJ,CO2,73300.0,kg/TJ,160743.968,Naphtha combustion consumption by freight transport,AR-W,SESCO,annual,kg,fa42a584-defc-32f2-b5b9-91a96bd1f62c +2017,Corrientes,II.1.1,2.19296,TJ,CH4,0.5,kg/TJ,1.09648,Naphtha combustion consumption by freight transport,AR-W,SESCO,annual,kg,341be329-6b5f-3159-9c56-87b99b212335 +2017,Corrientes,II.1.1,2.19296,TJ,N2O,2.0,kg/TJ,4.38592,Naphtha combustion consumption by freight transport,AR-W,SESCO,annual,kg,324bbcf2-64ce-3212-9fd1-beb57b217cf7 +2017,Córdoba,II.1.1,19.702375,TJ,CO2,73300.0,kg/TJ,1444184.0875,Naphtha combustion consumption by freight transport,AR-X,SESCO,annual,kg,08250e16-1117-372c-b86a-fc365417c018 +2017,Córdoba,II.1.1,19.702375,TJ,CH4,0.5,kg/TJ,9.8511875,Naphtha combustion consumption by freight transport,AR-X,SESCO,annual,kg,8430844b-fed6-3e9b-96b2-e1690bc30ed8 +2017,Córdoba,II.1.1,19.702375,TJ,N2O,2.0,kg/TJ,39.40475,Naphtha combustion consumption by freight transport,AR-X,SESCO,annual,kg,14bd318c-7b4a-31ba-bd8f-2bb8668c1ec0 +2017,Entre Rios,II.1.1,10.724945,TJ,CO2,73300.0,kg/TJ,786138.4685,Naphtha combustion consumption by freight transport,AR-E,SESCO,annual,kg,f6b082d6-248b-3e43-bed3-d4ad3158ea4d +2017,Entre Rios,II.1.1,10.724945,TJ,CH4,0.5,kg/TJ,5.3624725,Naphtha combustion consumption by freight transport,AR-E,SESCO,annual,kg,8f6193e3-f85b-333d-b3fc-d3b13026a99c +2017,Entre Rios,II.1.1,10.724945,TJ,N2O,2.0,kg/TJ,21.44989,Naphtha combustion consumption by freight transport,AR-E,SESCO,annual,kg,c328b793-70c6-35e4-b9de-abd4d37a86dd +2017,Formosa,II.1.1,0.445445,TJ,CO2,73300.0,kg/TJ,32651.118499999997,Naphtha combustion consumption by freight transport,AR-P,SESCO,annual,kg,cff20865-df63-391d-affa-6dc30498bb1e +2017,Formosa,II.1.1,0.445445,TJ,CH4,0.5,kg/TJ,0.2227225,Naphtha combustion consumption by freight transport,AR-P,SESCO,annual,kg,72a36b99-5a14-37e8-926d-fb5cea436158 +2017,Formosa,II.1.1,0.445445,TJ,N2O,2.0,kg/TJ,0.89089,Naphtha combustion consumption by freight transport,AR-P,SESCO,annual,kg,0fdafeb1-b368-3986-8bc3-e2f5a69e50b6 +2017,Jujuy,II.1.1,0.171325,TJ,CO2,73300.0,kg/TJ,12558.1225,Naphtha combustion consumption by freight transport,AR-Y,SESCO,annual,kg,5218038f-c04d-3b27-bb73-d326417db894 +2017,Jujuy,II.1.1,0.171325,TJ,CH4,0.5,kg/TJ,0.0856625,Naphtha combustion consumption by freight transport,AR-Y,SESCO,annual,kg,d20a3e39-ec63-36f0-9a02-0676bb968041 +2017,Jujuy,II.1.1,0.171325,TJ,N2O,2.0,kg/TJ,0.34265,Naphtha combustion consumption by freight transport,AR-Y,SESCO,annual,kg,effce86f-332c-36b4-9b0e-875fd14bfd33 +2017,La Pampa,II.1.1,1.2678049999999998,TJ,CO2,73300.0,kg/TJ,92930.1065,Naphtha combustion consumption by freight transport,AR-L,SESCO,annual,kg,b0314f63-eac1-333a-b632-71747a952476 +2017,La Pampa,II.1.1,1.2678049999999998,TJ,CH4,0.5,kg/TJ,0.6339024999999999,Naphtha combustion consumption by freight transport,AR-L,SESCO,annual,kg,f8fc414d-5cde-33d7-a6e8-d059120d2156 +2017,La Pampa,II.1.1,1.2678049999999998,TJ,N2O,2.0,kg/TJ,2.5356099999999997,Naphtha combustion consumption by freight transport,AR-L,SESCO,annual,kg,2a1ab180-e40e-3ddc-8391-21da2164ef1e +2017,La Rioja,II.1.1,0.034265,TJ,CO2,73300.0,kg/TJ,2511.6245,Naphtha combustion consumption by freight transport,AR-F,SESCO,annual,kg,ee617c2c-3025-33e8-8d87-1607629e4de8 +2017,La Rioja,II.1.1,0.034265,TJ,CH4,0.5,kg/TJ,0.0171325,Naphtha combustion consumption by freight transport,AR-F,SESCO,annual,kg,e6a13d60-720b-347c-9874-741a88e978c0 +2017,La Rioja,II.1.1,0.034265,TJ,N2O,2.0,kg/TJ,0.06853,Naphtha combustion consumption by freight transport,AR-F,SESCO,annual,kg,c288cd78-b78f-3610-888c-e2049ab5ca73 +2017,Mendoza,II.1.1,20.90165,TJ,CO2,73300.0,kg/TJ,1532090.945,Naphtha combustion consumption by freight transport,AR-M,SESCO,annual,kg,d8e01d61-3b10-32a0-9673-05af0ffff399 +2017,Mendoza,II.1.1,20.90165,TJ,CH4,0.5,kg/TJ,10.450825,Naphtha combustion consumption by freight transport,AR-M,SESCO,annual,kg,e7fb9dc5-17b7-3385-b004-dcd01547b79f +2017,Mendoza,II.1.1,20.90165,TJ,N2O,2.0,kg/TJ,41.8033,Naphtha combustion consumption by freight transport,AR-M,SESCO,annual,kg,381217be-3b70-39e7-8f5a-110f12b720ce +2017,Misiones,II.1.1,2.021635,TJ,CO2,73300.0,kg/TJ,148185.8455,Naphtha combustion consumption by freight transport,AR-N,SESCO,annual,kg,4ea6a75f-bb96-34bd-bd33-4654200a46c2 +2017,Misiones,II.1.1,2.021635,TJ,CH4,0.5,kg/TJ,1.0108175,Naphtha combustion consumption by freight transport,AR-N,SESCO,annual,kg,c1f12314-b687-3955-af0d-c74716d213ff +2017,Misiones,II.1.1,2.021635,TJ,N2O,2.0,kg/TJ,4.04327,Naphtha combustion consumption by freight transport,AR-N,SESCO,annual,kg,8d6c8ced-f065-3ee1-aa6a-a3449485d305 +2017,Neuquén,II.1.1,4.6600399999999995,TJ,CO2,73300.0,kg/TJ,341580.932,Naphtha combustion consumption by freight transport,AR-Q,SESCO,annual,kg,e46304d3-f4a2-3ddb-a462-6b4ddb95c7e9 +2017,Neuquén,II.1.1,4.6600399999999995,TJ,CH4,0.5,kg/TJ,2.3300199999999998,Naphtha combustion consumption by freight transport,AR-Q,SESCO,annual,kg,c54db29d-4152-3b7a-adc3-ebee6cbf3f85 +2017,Neuquén,II.1.1,4.6600399999999995,TJ,N2O,2.0,kg/TJ,9.320079999999999,Naphtha combustion consumption by freight transport,AR-Q,SESCO,annual,kg,b8d1e5c1-925a-3808-bcb7-13ba872c001e +2017,Rio Negro,II.1.1,8.669044999999999,TJ,CO2,73300.0,kg/TJ,635440.9984999999,Naphtha combustion consumption by freight transport,AR-R,SESCO,annual,kg,66e5f823-105a-3e68-9cb5-6f590d05a23c +2017,Rio Negro,II.1.1,8.669044999999999,TJ,CH4,0.5,kg/TJ,4.334522499999999,Naphtha combustion consumption by freight transport,AR-R,SESCO,annual,kg,2e7d8c78-6db3-3399-bf70-fd378dd6cde0 +2017,Rio Negro,II.1.1,8.669044999999999,TJ,N2O,2.0,kg/TJ,17.338089999999998,Naphtha combustion consumption by freight transport,AR-R,SESCO,annual,kg,ac0e0af7-b8c8-3f5d-b5a1-c22c84f1b79c +2017,Salta,II.1.1,11.410245,TJ,CO2,73300.0,kg/TJ,836370.9585,Naphtha combustion consumption by freight transport,AR-A,SESCO,annual,kg,b8913366-1d28-3ba7-bcab-71d013946ca3 +2017,Salta,II.1.1,11.410245,TJ,CH4,0.5,kg/TJ,5.7051225,Naphtha combustion consumption by freight transport,AR-A,SESCO,annual,kg,c59551a6-53ae-348d-85d3-a115fbc091f2 +2017,Salta,II.1.1,11.410245,TJ,N2O,2.0,kg/TJ,22.82049,Naphtha combustion consumption by freight transport,AR-A,SESCO,annual,kg,9a2d502c-814e-32de-9863-e1daa5c887c6 +2017,San Juan,II.1.1,2.12443,TJ,CO2,73300.0,kg/TJ,155720.71899999998,Naphtha combustion consumption by freight transport,AR-J,SESCO,annual,kg,bdf95e9d-2b37-3385-8b58-48a67ade5056 +2017,San Juan,II.1.1,2.12443,TJ,CH4,0.5,kg/TJ,1.062215,Naphtha combustion consumption by freight transport,AR-J,SESCO,annual,kg,77f6f4ea-0439-3893-9e65-012782e490a9 +2017,San Juan,II.1.1,2.12443,TJ,N2O,2.0,kg/TJ,4.24886,Naphtha combustion consumption by freight transport,AR-J,SESCO,annual,kg,784cc795-618f-3e7a-acaa-8b0c042527a0 +2017,San Luis,II.1.1,3.08385,TJ,CO2,73300.0,kg/TJ,226046.205,Naphtha combustion consumption by freight transport,AR-D,SESCO,annual,kg,dd8d05c4-f3fb-3cfd-ba3d-8cbc9375ea2e +2017,San Luis,II.1.1,3.08385,TJ,CH4,0.5,kg/TJ,1.541925,Naphtha combustion consumption by freight transport,AR-D,SESCO,annual,kg,a7167f01-425f-3603-9cea-e048d4064b8b +2017,San Luis,II.1.1,3.08385,TJ,N2O,2.0,kg/TJ,6.1677,Naphtha combustion consumption by freight transport,AR-D,SESCO,annual,kg,cebe5d97-9344-3368-9498-e7f32312c428 +2017,Santa Cruz,II.1.1,0.376915,TJ,CO2,73300.0,kg/TJ,27627.8695,Naphtha combustion consumption by freight transport,AR-Z,SESCO,annual,kg,e6c978eb-027b-3186-b928-ddf5e4f515b7 +2017,Santa Cruz,II.1.1,0.376915,TJ,CH4,0.5,kg/TJ,0.1884575,Naphtha combustion consumption by freight transport,AR-Z,SESCO,annual,kg,a9bdecd7-9ff3-3683-aa68-61d12e9062dc +2017,Santa Cruz,II.1.1,0.376915,TJ,N2O,2.0,kg/TJ,0.75383,Naphtha combustion consumption by freight transport,AR-Z,SESCO,annual,kg,a1c47125-d7c1-30f3-abfd-cc233aa2e155 +2017,Santa Fe,II.1.1,27.309205,TJ,CO2,73300.0,kg/TJ,2001764.7264999999,Naphtha combustion consumption by freight transport,AR-S,SESCO,annual,kg,c1080fdc-82aa-3cc2-aeaf-4fdad87b2333 +2017,Santa Fe,II.1.1,27.309205,TJ,CH4,0.5,kg/TJ,13.6546025,Naphtha combustion consumption by freight transport,AR-S,SESCO,annual,kg,e0ee0de7-fd43-3e15-83ca-944ec0c830c8 +2017,Santa Fe,II.1.1,27.309205,TJ,N2O,2.0,kg/TJ,54.61841,Naphtha combustion consumption by freight transport,AR-S,SESCO,annual,kg,800c548f-ae12-3a8f-b1a2-7d910c47f550 +2017,Santiago del Estero,II.1.1,0.102795,TJ,CO2,73300.0,kg/TJ,7534.8735,Naphtha combustion consumption by freight transport,AR-G,SESCO,annual,kg,a90cae4c-93a1-32c5-9685-b63d22830728 +2017,Santiago del Estero,II.1.1,0.102795,TJ,CH4,0.5,kg/TJ,0.0513975,Naphtha combustion consumption by freight transport,AR-G,SESCO,annual,kg,02db2bba-d51d-350e-9ab8-556219555435 +2017,Santiago del Estero,II.1.1,0.102795,TJ,N2O,2.0,kg/TJ,0.20559,Naphtha combustion consumption by freight transport,AR-G,SESCO,annual,kg,d6d0ac53-a3b4-3aa6-9610-016f426c8a07 +2017,Tierra del Fuego,II.1.1,4.5915099999999995,TJ,CO2,73300.0,kg/TJ,336557.68299999996,Naphtha combustion consumption by freight transport,AR-V,SESCO,annual,kg,5c87449b-fa6b-322b-94a8-7e0e4ae923f8 +2017,Tierra del Fuego,II.1.1,4.5915099999999995,TJ,CH4,0.5,kg/TJ,2.2957549999999998,Naphtha combustion consumption by freight transport,AR-V,SESCO,annual,kg,d0eb4bca-7c4a-3619-bd73-e6bdd9a863ce +2017,Tierra del Fuego,II.1.1,4.5915099999999995,TJ,N2O,2.0,kg/TJ,9.183019999999999,Naphtha combustion consumption by freight transport,AR-V,SESCO,annual,kg,442bde76-64c2-3aa4-ab13-aa3679e31965 +2017,Tucuman,II.1.1,4.31739,TJ,CO2,73300.0,kg/TJ,316464.687,Naphtha combustion consumption by freight transport,AR-T,SESCO,annual,kg,6661610e-1c72-3262-bd84-7eb47aeba5e0 +2017,Tucuman,II.1.1,4.31739,TJ,CH4,0.5,kg/TJ,2.158695,Naphtha combustion consumption by freight transport,AR-T,SESCO,annual,kg,cb3399c0-8d34-39d1-82c7-e1aacca24f2d +2017,Tucuman,II.1.1,4.31739,TJ,N2O,2.0,kg/TJ,8.63478,Naphtha combustion consumption by freight transport,AR-T,SESCO,annual,kg,e91313ca-7fe2-3720-9b59-7691dafda0ad +2017,Buenos Aires,II.1.1,301.73759,TJ,CO2,73300.0,kg/TJ,22117365.347,Naphtha combustion consumption by freight transport,AR-B,SESCO,annual,kg,b8121d12-d9cc-3fb6-ac76-6b9e28360b49 +2017,Buenos Aires,II.1.1,301.73759,TJ,CH4,0.5,kg/TJ,150.868795,Naphtha combustion consumption by freight transport,AR-B,SESCO,annual,kg,2f72b8cb-1923-37f6-b635-9432a6e29800 +2017,Buenos Aires,II.1.1,301.73759,TJ,N2O,2.0,kg/TJ,603.47518,Naphtha combustion consumption by freight transport,AR-B,SESCO,annual,kg,824a678a-eb04-31f5-b901-c8c831ee7d91 +2017,Capital Federal,II.1.1,355.77349499999997,TJ,CO2,73300.0,kg/TJ,26078197.1835,Naphtha combustion consumption by freight transport,AR-C,SESCO,annual,kg,f9744df6-5e07-3bdd-81d9-de21253ace60 +2017,Capital Federal,II.1.1,355.77349499999997,TJ,CH4,0.5,kg/TJ,177.88674749999998,Naphtha combustion consumption by freight transport,AR-C,SESCO,annual,kg,a3c37e41-1fbf-3f66-ad8a-0c6302076307 +2017,Capital Federal,II.1.1,355.77349499999997,TJ,N2O,2.0,kg/TJ,711.5469899999999,Naphtha combustion consumption by freight transport,AR-C,SESCO,annual,kg,4401c972-5a07-3636-8eb5-cf0efcd68df3 +2017,Catamarca,II.1.1,0.06853,TJ,CO2,73300.0,kg/TJ,5023.249,Naphtha combustion consumption by freight transport,AR-K,SESCO,annual,kg,a8f88800-5657-3dc0-b095-f6d9bdedfdc0 +2017,Catamarca,II.1.1,0.06853,TJ,CH4,0.5,kg/TJ,0.034265,Naphtha combustion consumption by freight transport,AR-K,SESCO,annual,kg,6bd1384f-ddd0-3a27-8324-38f4dde15438 +2017,Catamarca,II.1.1,0.06853,TJ,N2O,2.0,kg/TJ,0.13706,Naphtha combustion consumption by freight transport,AR-K,SESCO,annual,kg,62ea0dcd-d144-3b78-a384-0387ed5c2fb1 +2017,Chaco,II.1.1,11.341714999999999,TJ,CO2,73300.0,kg/TJ,831347.7094999999,Naphtha combustion consumption by freight transport,AR-H,SESCO,annual,kg,1f169141-3c36-33dd-a5a7-925469cdb2ae +2017,Chaco,II.1.1,11.341714999999999,TJ,CH4,0.5,kg/TJ,5.670857499999999,Naphtha combustion consumption by freight transport,AR-H,SESCO,annual,kg,dcb4c450-f4b3-3823-a76d-2d8412e7d934 +2017,Chaco,II.1.1,11.341714999999999,TJ,N2O,2.0,kg/TJ,22.683429999999998,Naphtha combustion consumption by freight transport,AR-H,SESCO,annual,kg,f7553885-eb6d-365c-99e8-a688f958e4a3 +2017,Chubut,II.1.1,2.6041399999999997,TJ,CO2,73300.0,kg/TJ,190883.46199999997,Naphtha combustion consumption by freight transport,AR-U,SESCO,annual,kg,85134652-259d-3d1e-a886-1b4c5192080e +2017,Chubut,II.1.1,2.6041399999999997,TJ,CH4,0.5,kg/TJ,1.3020699999999998,Naphtha combustion consumption by freight transport,AR-U,SESCO,annual,kg,790fa09b-0359-375e-8a8f-1f7f92716eae +2017,Chubut,II.1.1,2.6041399999999997,TJ,N2O,2.0,kg/TJ,5.208279999999999,Naphtha combustion consumption by freight transport,AR-U,SESCO,annual,kg,13bba9b5-6730-30a0-b447-d4dab46297d8 +2017,Corrientes,II.1.1,5.653725,TJ,CO2,73300.0,kg/TJ,414418.0425,Naphtha combustion consumption by freight transport,AR-W,SESCO,annual,kg,74fac8da-b382-3e75-a3c6-c4e294fd9a38 +2017,Corrientes,II.1.1,5.653725,TJ,CH4,0.5,kg/TJ,2.8268625,Naphtha combustion consumption by freight transport,AR-W,SESCO,annual,kg,91d7ce26-7ce0-3aa8-98dd-485f2f89aa9a +2017,Corrientes,II.1.1,5.653725,TJ,N2O,2.0,kg/TJ,11.30745,Naphtha combustion consumption by freight transport,AR-W,SESCO,annual,kg,f70d0fc9-7b4e-34a9-8083-ad92a07c92f2 +2017,Córdoba,II.1.1,21.312829999999998,TJ,CO2,73300.0,kg/TJ,1562230.4389999998,Naphtha combustion consumption by freight transport,AR-X,SESCO,annual,kg,7e51e50d-6a80-3ffb-ad64-b821f297d599 +2017,Córdoba,II.1.1,21.312829999999998,TJ,CH4,0.5,kg/TJ,10.656414999999999,Naphtha combustion consumption by freight transport,AR-X,SESCO,annual,kg,cca9348a-73d4-3b96-89fd-6bb896ff2248 +2017,Córdoba,II.1.1,21.312829999999998,TJ,N2O,2.0,kg/TJ,42.625659999999996,Naphtha combustion consumption by freight transport,AR-X,SESCO,annual,kg,f6f10c69-a2d3-3aa9-8742-0acc23c4e0fb +2017,Entre Rios,II.1.1,15.110864999999999,TJ,CO2,73300.0,kg/TJ,1107626.4045,Naphtha combustion consumption by freight transport,AR-E,SESCO,annual,kg,c6a1d8db-ecbe-3940-87b0-c29e3ceb2e38 +2017,Entre Rios,II.1.1,15.110864999999999,TJ,CH4,0.5,kg/TJ,7.555432499999999,Naphtha combustion consumption by freight transport,AR-E,SESCO,annual,kg,e110c3e9-ec5a-36a5-9f4c-ce286b2303bb +2017,Entre Rios,II.1.1,15.110864999999999,TJ,N2O,2.0,kg/TJ,30.221729999999997,Naphtha combustion consumption by freight transport,AR-E,SESCO,annual,kg,ebfc4c0a-0b9f-3a80-89e1-aa451d34ee51 +2017,Formosa,II.1.1,0.47970999999999997,TJ,CO2,73300.0,kg/TJ,35162.742999999995,Naphtha combustion consumption by freight transport,AR-P,SESCO,annual,kg,da1e8096-757f-3ce5-bb70-fe39e3321979 +2017,Formosa,II.1.1,0.47970999999999997,TJ,CH4,0.5,kg/TJ,0.23985499999999998,Naphtha combustion consumption by freight transport,AR-P,SESCO,annual,kg,113868f3-0fd4-3651-953f-524be669b0fb +2017,Formosa,II.1.1,0.47970999999999997,TJ,N2O,2.0,kg/TJ,0.9594199999999999,Naphtha combustion consumption by freight transport,AR-P,SESCO,annual,kg,3fa356ff-5f41-303d-97b8-bba460c7c35c +2017,Jujuy,II.1.1,0.23985499999999998,TJ,CO2,73300.0,kg/TJ,17581.371499999997,Naphtha combustion consumption by freight transport,AR-Y,SESCO,annual,kg,12a57be0-beef-3176-a222-5e265aeac8f4 +2017,Jujuy,II.1.1,0.23985499999999998,TJ,CH4,0.5,kg/TJ,0.11992749999999999,Naphtha combustion consumption by freight transport,AR-Y,SESCO,annual,kg,d32eb4a9-9d45-37bb-9fb1-1bd428ee94dc +2017,Jujuy,II.1.1,0.23985499999999998,TJ,N2O,2.0,kg/TJ,0.47970999999999997,Naphtha combustion consumption by freight transport,AR-Y,SESCO,annual,kg,1234c5dd-d204-3c70-be7b-13a0b7f857e8 +2017,La Pampa,II.1.1,1.9873699999999999,TJ,CO2,73300.0,kg/TJ,145674.221,Naphtha combustion consumption by freight transport,AR-L,SESCO,annual,kg,e76aa79b-e2ba-3047-987e-9067dcdc56f0 +2017,La Pampa,II.1.1,1.9873699999999999,TJ,CH4,0.5,kg/TJ,0.9936849999999999,Naphtha combustion consumption by freight transport,AR-L,SESCO,annual,kg,681ef078-e016-320f-a3a1-8affc4dfdb13 +2017,La Pampa,II.1.1,1.9873699999999999,TJ,N2O,2.0,kg/TJ,3.9747399999999997,Naphtha combustion consumption by freight transport,AR-L,SESCO,annual,kg,8d571bd6-8400-3454-96ef-9b4937c69a9f +2017,La Rioja,II.1.1,1.678985,TJ,CO2,73300.0,kg/TJ,123069.6005,Naphtha combustion consumption by freight transport,AR-F,SESCO,annual,kg,68afc30e-92af-3808-858b-efba99e8bf7b +2017,La Rioja,II.1.1,1.678985,TJ,CH4,0.5,kg/TJ,0.8394925,Naphtha combustion consumption by freight transport,AR-F,SESCO,annual,kg,f20a5388-eba0-3e3f-825f-ad80a33f8b89 +2017,La Rioja,II.1.1,1.678985,TJ,N2O,2.0,kg/TJ,3.35797,Naphtha combustion consumption by freight transport,AR-F,SESCO,annual,kg,103cbe25-8ad8-3009-8606-775d1122af2b +2017,Mendoza,II.1.1,18.84575,TJ,CO2,73300.0,kg/TJ,1381393.4749999999,Naphtha combustion consumption by freight transport,AR-M,SESCO,annual,kg,fd16b56a-8b48-3c12-8c3f-16e9d559a41e +2017,Mendoza,II.1.1,18.84575,TJ,CH4,0.5,kg/TJ,9.422875,Naphtha combustion consumption by freight transport,AR-M,SESCO,annual,kg,0dcb28eb-21fa-3b47-8a77-52d1e572ce22 +2017,Mendoza,II.1.1,18.84575,TJ,N2O,2.0,kg/TJ,37.6915,Naphtha combustion consumption by freight transport,AR-M,SESCO,annual,kg,527a0609-33ef-33da-ad03-04b1a78a5b36 +2017,Misiones,II.1.1,4.214595,TJ,CO2,73300.0,kg/TJ,308929.8135,Naphtha combustion consumption by freight transport,AR-N,SESCO,annual,kg,98625b81-11e8-30e4-a0f5-523ea10e4646 +2017,Misiones,II.1.1,4.214595,TJ,CH4,0.5,kg/TJ,2.1072975,Naphtha combustion consumption by freight transport,AR-N,SESCO,annual,kg,1b37484a-faaa-3d8b-a6dc-8d2ca2610784 +2017,Misiones,II.1.1,4.214595,TJ,N2O,2.0,kg/TJ,8.42919,Naphtha combustion consumption by freight transport,AR-N,SESCO,annual,kg,1f87b62e-fd70-39f7-a106-d8e4bf57fe98 +2017,Neuquén,II.1.1,9.491405,TJ,CO2,73300.0,kg/TJ,695719.9865,Naphtha combustion consumption by freight transport,AR-Q,SESCO,annual,kg,d6265038-7975-3e62-881a-2dbfcde1b2a1 +2017,Neuquén,II.1.1,9.491405,TJ,CH4,0.5,kg/TJ,4.7457025,Naphtha combustion consumption by freight transport,AR-Q,SESCO,annual,kg,3598a921-4ef9-3160-941d-69b4045a73d4 +2017,Neuquén,II.1.1,9.491405,TJ,N2O,2.0,kg/TJ,18.98281,Naphtha combustion consumption by freight transport,AR-Q,SESCO,annual,kg,b7a8082a-7aa2-3774-9968-87cee850a733 +2017,Rio Negro,II.1.1,37.14326,TJ,CO2,73300.0,kg/TJ,2722600.9579999996,Naphtha combustion consumption by freight transport,AR-R,SESCO,annual,kg,f185519a-4d67-378f-ba0c-b880de44f4e7 +2017,Rio Negro,II.1.1,37.14326,TJ,CH4,0.5,kg/TJ,18.57163,Naphtha combustion consumption by freight transport,AR-R,SESCO,annual,kg,190edd74-082c-3189-8112-6952ce5ff05a +2017,Rio Negro,II.1.1,37.14326,TJ,N2O,2.0,kg/TJ,74.28652,Naphtha combustion consumption by freight transport,AR-R,SESCO,annual,kg,d95d1ab7-257a-3899-9449-830cd2b81c34 +2017,Salta,II.1.1,5.139749999999999,TJ,CO2,73300.0,kg/TJ,376743.67499999993,Naphtha combustion consumption by freight transport,AR-A,SESCO,annual,kg,662af6a3-0464-347a-bcc5-7691151e56a5 +2017,Salta,II.1.1,5.139749999999999,TJ,CH4,0.5,kg/TJ,2.5698749999999997,Naphtha combustion consumption by freight transport,AR-A,SESCO,annual,kg,bf06e450-233a-3ce1-a176-9094792b5ced +2017,Salta,II.1.1,5.139749999999999,TJ,N2O,2.0,kg/TJ,10.279499999999999,Naphtha combustion consumption by freight transport,AR-A,SESCO,annual,kg,bec29a57-e710-3807-99b0-71839dc053dd +2017,San Juan,II.1.1,0.89089,TJ,CO2,73300.0,kg/TJ,65302.236999999994,Naphtha combustion consumption by freight transport,AR-J,SESCO,annual,kg,b0740e6a-595d-3563-9e05-8ce89f0a7afd +2017,San Juan,II.1.1,0.89089,TJ,CH4,0.5,kg/TJ,0.445445,Naphtha combustion consumption by freight transport,AR-J,SESCO,annual,kg,e10c7835-724f-331d-8dc8-36f506bd015a +2017,San Juan,II.1.1,0.89089,TJ,N2O,2.0,kg/TJ,1.78178,Naphtha combustion consumption by freight transport,AR-J,SESCO,annual,kg,d721dc2c-7ec2-37d5-ba4d-77011871de50 +2017,San Luis,II.1.1,3.049585,TJ,CO2,73300.0,kg/TJ,223534.5805,Naphtha combustion consumption by freight transport,AR-D,SESCO,annual,kg,da3a366c-fb4a-363a-84cb-fbddbee2b291 +2017,San Luis,II.1.1,3.049585,TJ,CH4,0.5,kg/TJ,1.5247925,Naphtha combustion consumption by freight transport,AR-D,SESCO,annual,kg,87eeb827-418a-3fbf-94fe-8584929ce806 +2017,San Luis,II.1.1,3.049585,TJ,N2O,2.0,kg/TJ,6.09917,Naphtha combustion consumption by freight transport,AR-D,SESCO,annual,kg,31e8b0a9-dd91-3ac0-ade2-5714ccc97913 +2017,Santa Cruz,II.1.1,0.9594199999999999,TJ,CO2,73300.0,kg/TJ,70325.48599999999,Naphtha combustion consumption by freight transport,AR-Z,SESCO,annual,kg,cb01833d-da60-3161-b145-1838bf8b5eec +2017,Santa Cruz,II.1.1,0.9594199999999999,TJ,CH4,0.5,kg/TJ,0.47970999999999997,Naphtha combustion consumption by freight transport,AR-Z,SESCO,annual,kg,8af59631-ef40-305d-9455-dce141dd685a +2017,Santa Cruz,II.1.1,0.9594199999999999,TJ,N2O,2.0,kg/TJ,1.9188399999999999,Naphtha combustion consumption by freight transport,AR-Z,SESCO,annual,kg,41340b4b-d530-3f7f-bc90-ad60018eb4bd +2017,Santa Fe,II.1.1,50.472345,TJ,CO2,73300.0,kg/TJ,3699622.8885,Naphtha combustion consumption by freight transport,AR-S,SESCO,annual,kg,48ceada3-f06e-3ef1-a0e1-ac43e0aebbb7 +2017,Santa Fe,II.1.1,50.472345,TJ,CH4,0.5,kg/TJ,25.2361725,Naphtha combustion consumption by freight transport,AR-S,SESCO,annual,kg,466f74a0-fde9-3c9c-826b-0e5acdf1fa31 +2017,Santa Fe,II.1.1,50.472345,TJ,N2O,2.0,kg/TJ,100.94469,Naphtha combustion consumption by freight transport,AR-S,SESCO,annual,kg,22a10c64-56b1-325d-ae48-0659a89b92ea +2017,Santiago del Estero,II.1.1,0.513975,TJ,CO2,73300.0,kg/TJ,37674.3675,Naphtha combustion consumption by freight transport,AR-G,SESCO,annual,kg,e406a156-d89b-37aa-87ea-0cd1f1182b98 +2017,Santiago del Estero,II.1.1,0.513975,TJ,CH4,0.5,kg/TJ,0.2569875,Naphtha combustion consumption by freight transport,AR-G,SESCO,annual,kg,76b6e23a-26c6-3949-af1f-8b9ab1151e60 +2017,Santiago del Estero,II.1.1,0.513975,TJ,N2O,2.0,kg/TJ,1.02795,Naphtha combustion consumption by freight transport,AR-G,SESCO,annual,kg,81db4dab-7f92-3ed1-8651-eafff95e5682 +2017,Tierra del Fuego,II.1.1,0.788095,TJ,CO2,73300.0,kg/TJ,57767.3635,Naphtha combustion consumption by freight transport,AR-V,SESCO,annual,kg,e868f32e-35d2-361e-803a-81db2668ca95 +2017,Tierra del Fuego,II.1.1,0.788095,TJ,CH4,0.5,kg/TJ,0.3940475,Naphtha combustion consumption by freight transport,AR-V,SESCO,annual,kg,181a0543-fb98-3137-8a8a-9069636a4589 +2017,Tierra del Fuego,II.1.1,0.788095,TJ,N2O,2.0,kg/TJ,1.57619,Naphtha combustion consumption by freight transport,AR-V,SESCO,annual,kg,7e74327c-e305-3403-a331-ba1ec1773b3b +2017,Tucuman,II.1.1,3.9404749999999997,TJ,CO2,73300.0,kg/TJ,288836.8175,Naphtha combustion consumption by freight transport,AR-T,SESCO,annual,kg,c4e25d08-5510-3640-80c3-4c978b3a3ef3 +2017,Tucuman,II.1.1,3.9404749999999997,TJ,CH4,0.5,kg/TJ,1.9702374999999999,Naphtha combustion consumption by freight transport,AR-T,SESCO,annual,kg,3c0a408b-af66-3548-a2b8-88e330e3d7e5 +2017,Tucuman,II.1.1,3.9404749999999997,TJ,N2O,2.0,kg/TJ,7.8809499999999995,Naphtha combustion consumption by freight transport,AR-T,SESCO,annual,kg,13f3cb42-c3fe-3288-ae89-efcda5d7f798 +2017,Buenos Aires,II.1.1,10411.409399999999,TJ,CO2,74100.0,kg/TJ,771485436.5399998,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,f239a79e-f66c-39ed-b107-8702fe432449 +2017,Buenos Aires,II.1.1,10411.409399999999,TJ,CH4,3.9,kg/TJ,40604.49666,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,70e1f225-5f35-3dbe-be3d-f25d1119fc0b +2017,Buenos Aires,II.1.1,10411.409399999999,TJ,N2O,3.9,kg/TJ,40604.49666,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,70e1f225-5f35-3dbe-be3d-f25d1119fc0b +2017,Capital Federal,II.1.1,2453.73996,TJ,CO2,74100.0,kg/TJ,181822131.03599998,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,468ff9ce-09c7-3dad-9b9c-bbaa149a25ef +2017,Capital Federal,II.1.1,2453.73996,TJ,CH4,3.9,kg/TJ,9569.585844,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,7f8bbef2-9ded-3fa4-8302-f586aa79375c +2017,Capital Federal,II.1.1,2453.73996,TJ,N2O,3.9,kg/TJ,9569.585844,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,7f8bbef2-9ded-3fa4-8302-f586aa79375c +2017,Catamarca,II.1.1,202.12752,TJ,CO2,74100.0,kg/TJ,14977649.232,Gas Oil combustion consumption by public passenger transport,AR-K,SESCO,annual,kg,0aafe510-cece-3246-b7da-a8537b663068 +2017,Catamarca,II.1.1,202.12752,TJ,CH4,3.9,kg/TJ,788.297328,Gas Oil combustion consumption by public passenger transport,AR-K,SESCO,annual,kg,f5c007be-d0fa-3524-8421-b3d8d2f4c9af +2017,Catamarca,II.1.1,202.12752,TJ,N2O,3.9,kg/TJ,788.297328,Gas Oil combustion consumption by public passenger transport,AR-K,SESCO,annual,kg,f5c007be-d0fa-3524-8421-b3d8d2f4c9af +2017,Chaco,II.1.1,573.36888,TJ,CO2,74100.0,kg/TJ,42486634.008,Gas Oil combustion consumption by public passenger transport,AR-H,SESCO,annual,kg,c360641a-1026-3a79-a72b-78cfc64597e5 +2017,Chaco,II.1.1,573.36888,TJ,CH4,3.9,kg/TJ,2236.1386319999997,Gas Oil combustion consumption by public passenger transport,AR-H,SESCO,annual,kg,68e26562-378b-3b9d-a685-5f9b5de990f5 +2017,Chaco,II.1.1,573.36888,TJ,N2O,3.9,kg/TJ,2236.1386319999997,Gas Oil combustion consumption by public passenger transport,AR-H,SESCO,annual,kg,68e26562-378b-3b9d-a685-5f9b5de990f5 +2017,Chubut,II.1.1,108.97403999999999,TJ,CO2,74100.0,kg/TJ,8074976.363999999,Gas Oil combustion consumption by public passenger transport,AR-U,SESCO,annual,kg,584d6bbe-c221-338c-b1fe-8e69b8ce0182 +2017,Chubut,II.1.1,108.97403999999999,TJ,CH4,3.9,kg/TJ,424.99875599999996,Gas Oil combustion consumption by public passenger transport,AR-U,SESCO,annual,kg,7268bba7-99a1-396f-83c4-845b7a578afa +2017,Chubut,II.1.1,108.97403999999999,TJ,N2O,3.9,kg/TJ,424.99875599999996,Gas Oil combustion consumption by public passenger transport,AR-U,SESCO,annual,kg,7268bba7-99a1-396f-83c4-845b7a578afa +2017,Corrientes,II.1.1,526.23228,TJ,CO2,74100.0,kg/TJ,38993811.948,Gas Oil combustion consumption by public passenger transport,AR-W,SESCO,annual,kg,776517f2-a964-3bd7-a430-89f1c8747f09 +2017,Corrientes,II.1.1,526.23228,TJ,CH4,3.9,kg/TJ,2052.305892,Gas Oil combustion consumption by public passenger transport,AR-W,SESCO,annual,kg,47878543-c6e4-372a-9c08-69de4ff12dd5 +2017,Corrientes,II.1.1,526.23228,TJ,N2O,3.9,kg/TJ,2052.305892,Gas Oil combustion consumption by public passenger transport,AR-W,SESCO,annual,kg,47878543-c6e4-372a-9c08-69de4ff12dd5 +2017,Córdoba,II.1.1,1841.0364,TJ,CO2,74100.0,kg/TJ,136420797.24,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,0449fd37-7993-3313-95a8-5ab0a2daad78 +2017,Córdoba,II.1.1,1841.0364,TJ,CH4,3.9,kg/TJ,7180.04196,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,1f8181a3-e0f6-3964-924f-183d77dbc9a4 +2017,Córdoba,II.1.1,1841.0364,TJ,N2O,3.9,kg/TJ,7180.04196,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,1f8181a3-e0f6-3964-924f-183d77dbc9a4 +2017,Entre Rios,II.1.1,497.04731999999996,TJ,CO2,74100.0,kg/TJ,36831206.412,Gas Oil combustion consumption by public passenger transport,AR-E,SESCO,annual,kg,2b3ac049-55c2-3cb9-b781-e559aeb4d8ed +2017,Entre Rios,II.1.1,497.04731999999996,TJ,CH4,3.9,kg/TJ,1938.4845479999997,Gas Oil combustion consumption by public passenger transport,AR-E,SESCO,annual,kg,00c132ed-21e0-360d-acad-8b34cdd8d9b3 +2017,Entre Rios,II.1.1,497.04731999999996,TJ,N2O,3.9,kg/TJ,1938.4845479999997,Gas Oil combustion consumption by public passenger transport,AR-E,SESCO,annual,kg,00c132ed-21e0-360d-acad-8b34cdd8d9b3 +2017,Formosa,II.1.1,78.63324,TJ,CO2,74100.0,kg/TJ,5826723.084,Gas Oil combustion consumption by public passenger transport,AR-P,SESCO,annual,kg,4cea0034-1ded-3137-bef2-75fdca1ec94f +2017,Formosa,II.1.1,78.63324,TJ,CH4,3.9,kg/TJ,306.66963599999997,Gas Oil combustion consumption by public passenger transport,AR-P,SESCO,annual,kg,83bddc68-e38c-3fb3-b7db-4ef01cbea7e1 +2017,Formosa,II.1.1,78.63324,TJ,N2O,3.9,kg/TJ,306.66963599999997,Gas Oil combustion consumption by public passenger transport,AR-P,SESCO,annual,kg,83bddc68-e38c-3fb3-b7db-4ef01cbea7e1 +2017,Jujuy,II.1.1,663.84948,TJ,CO2,74100.0,kg/TJ,49191246.467999995,Gas Oil combustion consumption by public passenger transport,AR-Y,SESCO,annual,kg,8744b7c5-8758-33a1-b350-e73aa26a59b3 +2017,Jujuy,II.1.1,663.84948,TJ,CH4,3.9,kg/TJ,2589.012972,Gas Oil combustion consumption by public passenger transport,AR-Y,SESCO,annual,kg,310aed91-eb36-3836-af05-596927ddb02f +2017,Jujuy,II.1.1,663.84948,TJ,N2O,3.9,kg/TJ,2589.012972,Gas Oil combustion consumption by public passenger transport,AR-Y,SESCO,annual,kg,310aed91-eb36-3836-af05-596927ddb02f +2017,La Pampa,II.1.1,53.493719999999996,TJ,CO2,74100.0,kg/TJ,3963884.652,Gas Oil combustion consumption by public passenger transport,AR-L,SESCO,annual,kg,5c170c94-e1e1-3d00-a7da-ad2673ac759d +2017,La Pampa,II.1.1,53.493719999999996,TJ,CH4,3.9,kg/TJ,208.62550799999997,Gas Oil combustion consumption by public passenger transport,AR-L,SESCO,annual,kg,97de3cce-6f63-3761-a880-a2f70c38980f +2017,La Pampa,II.1.1,53.493719999999996,TJ,N2O,3.9,kg/TJ,208.62550799999997,Gas Oil combustion consumption by public passenger transport,AR-L,SESCO,annual,kg,97de3cce-6f63-3761-a880-a2f70c38980f +2017,La Rioja,II.1.1,129.16512,TJ,CO2,74100.0,kg/TJ,9571135.392,Gas Oil combustion consumption by public passenger transport,AR-F,SESCO,annual,kg,95211428-90c7-320a-85e5-29ebefb6030f +2017,La Rioja,II.1.1,129.16512,TJ,CH4,3.9,kg/TJ,503.743968,Gas Oil combustion consumption by public passenger transport,AR-F,SESCO,annual,kg,caa53e12-daa7-3eb8-8db9-3b38c8eaf87e +2017,La Rioja,II.1.1,129.16512,TJ,N2O,3.9,kg/TJ,503.743968,Gas Oil combustion consumption by public passenger transport,AR-F,SESCO,annual,kg,caa53e12-daa7-3eb8-8db9-3b38c8eaf87e +2017,Mendoza,II.1.1,1776.45384,TJ,CO2,74100.0,kg/TJ,131635229.544,Gas Oil combustion consumption by public passenger transport,AR-M,SESCO,annual,kg,ba87fc96-07ad-32fc-811c-faca9010b744 +2017,Mendoza,II.1.1,1776.45384,TJ,CH4,3.9,kg/TJ,6928.169975999999,Gas Oil combustion consumption by public passenger transport,AR-M,SESCO,annual,kg,cb68f288-5a3d-3c2c-85a5-023168f15618 +2017,Mendoza,II.1.1,1776.45384,TJ,N2O,3.9,kg/TJ,6928.169975999999,Gas Oil combustion consumption by public passenger transport,AR-M,SESCO,annual,kg,cb68f288-5a3d-3c2c-85a5-023168f15618 +2017,Misiones,II.1.1,1057.91868,TJ,CO2,74100.0,kg/TJ,78391774.188,Gas Oil combustion consumption by public passenger transport,AR-N,SESCO,annual,kg,be04f20e-0a53-3b1f-81c0-43ea3501cc84 +2017,Misiones,II.1.1,1057.91868,TJ,CH4,3.9,kg/TJ,4125.882852,Gas Oil combustion consumption by public passenger transport,AR-N,SESCO,annual,kg,ef06943f-79d6-305b-bd5c-097b3c767664 +2017,Misiones,II.1.1,1057.91868,TJ,N2O,3.9,kg/TJ,4125.882852,Gas Oil combustion consumption by public passenger transport,AR-N,SESCO,annual,kg,ef06943f-79d6-305b-bd5c-097b3c767664 +2017,Neuquén,II.1.1,275.2344,TJ,CO2,74100.0,kg/TJ,20394869.04,Gas Oil combustion consumption by public passenger transport,AR-Q,SESCO,annual,kg,41f2c437-9cc6-3d2e-9662-69366e3acfb0 +2017,Neuquén,II.1.1,275.2344,TJ,CH4,3.9,kg/TJ,1073.41416,Gas Oil combustion consumption by public passenger transport,AR-Q,SESCO,annual,kg,443b8c03-7ed9-33a5-950a-77594148c7eb +2017,Neuquén,II.1.1,275.2344,TJ,N2O,3.9,kg/TJ,1073.41416,Gas Oil combustion consumption by public passenger transport,AR-Q,SESCO,annual,kg,443b8c03-7ed9-33a5-950a-77594148c7eb +2017,Rio Negro,II.1.1,284.87844,TJ,CO2,74100.0,kg/TJ,21109492.404,Gas Oil combustion consumption by public passenger transport,AR-R,SESCO,annual,kg,3cf32780-5fe0-32c3-b9c4-ccaf0c3098f9 +2017,Rio Negro,II.1.1,284.87844,TJ,CH4,3.9,kg/TJ,1111.025916,Gas Oil combustion consumption by public passenger transport,AR-R,SESCO,annual,kg,c0666909-4cc9-3817-921c-b1486de8a643 +2017,Rio Negro,II.1.1,284.87844,TJ,N2O,3.9,kg/TJ,1111.025916,Gas Oil combustion consumption by public passenger transport,AR-R,SESCO,annual,kg,c0666909-4cc9-3817-921c-b1486de8a643 +2017,Salta,II.1.1,758.55612,TJ,CO2,74100.0,kg/TJ,56209008.492,Gas Oil combustion consumption by public passenger transport,AR-A,SESCO,annual,kg,d83ae1cf-3a21-34f4-8ad6-62f670dc7b83 +2017,Salta,II.1.1,758.55612,TJ,CH4,3.9,kg/TJ,2958.368868,Gas Oil combustion consumption by public passenger transport,AR-A,SESCO,annual,kg,c2a4bacb-00df-3808-a571-df6dcb382720 +2017,Salta,II.1.1,758.55612,TJ,N2O,3.9,kg/TJ,2958.368868,Gas Oil combustion consumption by public passenger transport,AR-A,SESCO,annual,kg,c2a4bacb-00df-3808-a571-df6dcb382720 +2017,San Juan,II.1.1,462.73332,TJ,CO2,74100.0,kg/TJ,34288539.012,Gas Oil combustion consumption by public passenger transport,AR-J,SESCO,annual,kg,dbf2a340-ce04-307a-ba93-7c94207a1952 +2017,San Juan,II.1.1,462.73332,TJ,CH4,3.9,kg/TJ,1804.659948,Gas Oil combustion consumption by public passenger transport,AR-J,SESCO,annual,kg,6f621264-5b10-34db-a5ba-bea7b9348279 +2017,San Juan,II.1.1,462.73332,TJ,N2O,3.9,kg/TJ,1804.659948,Gas Oil combustion consumption by public passenger transport,AR-J,SESCO,annual,kg,6f621264-5b10-34db-a5ba-bea7b9348279 +2017,San Luis,II.1.1,150.4398,TJ,CO2,74100.0,kg/TJ,11147589.18,Gas Oil combustion consumption by public passenger transport,AR-D,SESCO,annual,kg,ffad86ea-0dde-3805-b677-378a304e5b89 +2017,San Luis,II.1.1,150.4398,TJ,CH4,3.9,kg/TJ,586.7152199999999,Gas Oil combustion consumption by public passenger transport,AR-D,SESCO,annual,kg,c11f557d-8179-343b-ab13-b2b4f902c54b +2017,San Luis,II.1.1,150.4398,TJ,N2O,3.9,kg/TJ,586.7152199999999,Gas Oil combustion consumption by public passenger transport,AR-D,SESCO,annual,kg,c11f557d-8179-343b-ab13-b2b4f902c54b +2017,Santa Cruz,II.1.1,32.21904,TJ,CO2,74100.0,kg/TJ,2387430.864,Gas Oil combustion consumption by public passenger transport,AR-Z,SESCO,annual,kg,165d64b5-8826-310a-8b5c-91a481d740cc +2017,Santa Cruz,II.1.1,32.21904,TJ,CH4,3.9,kg/TJ,125.65425599999999,Gas Oil combustion consumption by public passenger transport,AR-Z,SESCO,annual,kg,21e5b639-b9c0-370d-a9cc-40e453083fbf +2017,Santa Cruz,II.1.1,32.21904,TJ,N2O,3.9,kg/TJ,125.65425599999999,Gas Oil combustion consumption by public passenger transport,AR-Z,SESCO,annual,kg,21e5b639-b9c0-370d-a9cc-40e453083fbf +2017,Santa Fe,II.1.1,1722.5628,TJ,CO2,74100.0,kg/TJ,127641903.47999999,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,af3ab77e-39c5-3fee-9bd1-a27decefd081 +2017,Santa Fe,II.1.1,1722.5628,TJ,CH4,3.9,kg/TJ,6717.994919999999,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,6c876be5-7829-36ac-b48b-a59c93126d12 +2017,Santa Fe,II.1.1,1722.5628,TJ,N2O,3.9,kg/TJ,6717.994919999999,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,6c876be5-7829-36ac-b48b-a59c93126d12 +2017,Santiago del Estero,II.1.1,254.17643999999999,TJ,CO2,74100.0,kg/TJ,18834474.204,Gas Oil combustion consumption by public passenger transport,AR-G,SESCO,annual,kg,5f2d4423-0c82-364d-85c0-9833e049455d +2017,Santiago del Estero,II.1.1,254.17643999999999,TJ,CH4,3.9,kg/TJ,991.288116,Gas Oil combustion consumption by public passenger transport,AR-G,SESCO,annual,kg,3877da5d-7e61-39e0-bdae-8234b13f8232 +2017,Santiago del Estero,II.1.1,254.17643999999999,TJ,N2O,3.9,kg/TJ,991.288116,Gas Oil combustion consumption by public passenger transport,AR-G,SESCO,annual,kg,3877da5d-7e61-39e0-bdae-8234b13f8232 +2017,Tierra del Fuego,II.1.1,13.68948,TJ,CO2,74100.0,kg/TJ,1014390.468,Gas Oil combustion consumption by public passenger transport,AR-V,SESCO,annual,kg,73822739-8759-322a-b0fd-4687b62871db +2017,Tierra del Fuego,II.1.1,13.68948,TJ,CH4,3.9,kg/TJ,53.388971999999995,Gas Oil combustion consumption by public passenger transport,AR-V,SESCO,annual,kg,67c0b515-8b05-3fbd-95ee-4627761a1300 +2017,Tierra del Fuego,II.1.1,13.68948,TJ,N2O,3.9,kg/TJ,53.388971999999995,Gas Oil combustion consumption by public passenger transport,AR-V,SESCO,annual,kg,67c0b515-8b05-3fbd-95ee-4627761a1300 +2017,Tucuman,II.1.1,1243.53936,TJ,CO2,74100.0,kg/TJ,92146266.576,Gas Oil combustion consumption by public passenger transport,AR-T,SESCO,annual,kg,35166dbd-c1e9-33c6-aff0-7fc904f4cd60 +2017,Tucuman,II.1.1,1243.53936,TJ,CH4,3.9,kg/TJ,4849.8035039999995,Gas Oil combustion consumption by public passenger transport,AR-T,SESCO,annual,kg,82f60e29-e9dd-3601-81ac-71910fe2d3a1 +2017,Tucuman,II.1.1,1243.53936,TJ,N2O,3.9,kg/TJ,4849.8035039999995,Gas Oil combustion consumption by public passenger transport,AR-T,SESCO,annual,kg,82f60e29-e9dd-3601-81ac-71910fe2d3a1 +2017,Buenos Aires,II.1.1,1060.0497599999999,TJ,CO2,74100.0,kg/TJ,78549687.21599999,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,003fbe84-a25a-35f1-a32a-02dccb63aefc +2017,Buenos Aires,II.1.1,1060.0497599999999,TJ,CH4,3.9,kg/TJ,4134.194063999999,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,f62f0fbf-6017-3542-bb8f-24a4a1dfdcc7 +2017,Buenos Aires,II.1.1,1060.0497599999999,TJ,N2O,3.9,kg/TJ,4134.194063999999,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,f62f0fbf-6017-3542-bb8f-24a4a1dfdcc7 +2017,Capital Federal,II.1.1,105.14532,TJ,CO2,74100.0,kg/TJ,7791268.212,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,e77f4bb0-a543-36a4-b061-b850e782d50d +2017,Capital Federal,II.1.1,105.14532,TJ,CH4,3.9,kg/TJ,410.06674799999996,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,f0af072d-71c6-3f30-bdd0-f0b6d755d3ab +2017,Capital Federal,II.1.1,105.14532,TJ,N2O,3.9,kg/TJ,410.06674799999996,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,f0af072d-71c6-3f30-bdd0-f0b6d755d3ab +2017,Catamarca,II.1.1,19.90212,TJ,CO2,74100.0,kg/TJ,1474747.092,Gas Oil combustion consumption by public passenger transport,AR-K,SESCO,annual,kg,2c3a0f03-f1e2-3481-9322-e80b88d34760 +2017,Catamarca,II.1.1,19.90212,TJ,CH4,3.9,kg/TJ,77.618268,Gas Oil combustion consumption by public passenger transport,AR-K,SESCO,annual,kg,943f5fc4-733d-33e6-8b8f-af2dabf081f1 +2017,Catamarca,II.1.1,19.90212,TJ,N2O,3.9,kg/TJ,77.618268,Gas Oil combustion consumption by public passenger transport,AR-K,SESCO,annual,kg,943f5fc4-733d-33e6-8b8f-af2dabf081f1 +2017,Chaco,II.1.1,12.71424,TJ,CO2,74100.0,kg/TJ,942125.184,Gas Oil combustion consumption by public passenger transport,AR-H,SESCO,annual,kg,44f2d1ff-c296-3179-a9ce-1b9d2cbe2320 +2017,Chaco,II.1.1,12.71424,TJ,CH4,3.9,kg/TJ,49.585536,Gas Oil combustion consumption by public passenger transport,AR-H,SESCO,annual,kg,9452bdb4-6971-3f16-be31-b14000fd4feb +2017,Chaco,II.1.1,12.71424,TJ,N2O,3.9,kg/TJ,49.585536,Gas Oil combustion consumption by public passenger transport,AR-H,SESCO,annual,kg,9452bdb4-6971-3f16-be31-b14000fd4feb +2017,Chubut,II.1.1,44.57208,TJ,CO2,74100.0,kg/TJ,3302791.128,Gas Oil combustion consumption by public passenger transport,AR-U,SESCO,annual,kg,ab2dce6c-35dd-33eb-b803-5f2833e0ed5c +2017,Chubut,II.1.1,44.57208,TJ,CH4,3.9,kg/TJ,173.831112,Gas Oil combustion consumption by public passenger transport,AR-U,SESCO,annual,kg,c9056c80-fcd5-396d-9064-d2ca9af0f0cc +2017,Chubut,II.1.1,44.57208,TJ,N2O,3.9,kg/TJ,173.831112,Gas Oil combustion consumption by public passenger transport,AR-U,SESCO,annual,kg,c9056c80-fcd5-396d-9064-d2ca9af0f0cc +2017,Corrientes,II.1.1,30.340799999999998,TJ,CO2,74100.0,kg/TJ,2248253.28,Gas Oil combustion consumption by public passenger transport,AR-W,SESCO,annual,kg,957bd06a-501a-3200-8ea0-c031cf2f5e13 +2017,Corrientes,II.1.1,30.340799999999998,TJ,CH4,3.9,kg/TJ,118.32911999999999,Gas Oil combustion consumption by public passenger transport,AR-W,SESCO,annual,kg,d9cac611-626e-3026-bb12-429c517e8358 +2017,Corrientes,II.1.1,30.340799999999998,TJ,N2O,3.9,kg/TJ,118.32911999999999,Gas Oil combustion consumption by public passenger transport,AR-W,SESCO,annual,kg,d9cac611-626e-3026-bb12-429c517e8358 +2017,Córdoba,II.1.1,132.23532,TJ,CO2,74100.0,kg/TJ,9798637.212,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,100b038b-7a57-3717-bdb1-3177178c48be +2017,Córdoba,II.1.1,132.23532,TJ,CH4,3.9,kg/TJ,515.717748,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,05676a1d-060a-3a84-949f-44f14ca8f4a5 +2017,Córdoba,II.1.1,132.23532,TJ,N2O,3.9,kg/TJ,515.717748,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,05676a1d-060a-3a84-949f-44f14ca8f4a5 +2017,Entre Rios,II.1.1,2.85348,TJ,CO2,74100.0,kg/TJ,211442.868,Gas Oil combustion consumption by public passenger transport,AR-E,SESCO,annual,kg,aee36da4-942f-3cd6-96f3-2007c6714a4a +2017,Entre Rios,II.1.1,2.85348,TJ,CH4,3.9,kg/TJ,11.128571999999998,Gas Oil combustion consumption by public passenger transport,AR-E,SESCO,annual,kg,0ca0c03e-5ef7-3fc2-aeac-ff5ee9a3a5fe +2017,Entre Rios,II.1.1,2.85348,TJ,N2O,3.9,kg/TJ,11.128571999999998,Gas Oil combustion consumption by public passenger transport,AR-E,SESCO,annual,kg,0ca0c03e-5ef7-3fc2-aeac-ff5ee9a3a5fe +2017,Jujuy,II.1.1,1.9866,TJ,CO2,74100.0,kg/TJ,147207.06,Gas Oil combustion consumption by public passenger transport,AR-Y,SESCO,annual,kg,a89a7425-88c5-3df4-8a9c-f16f702ed629 +2017,Jujuy,II.1.1,1.9866,TJ,CH4,3.9,kg/TJ,7.747739999999999,Gas Oil combustion consumption by public passenger transport,AR-Y,SESCO,annual,kg,ba418045-45a4-3859-acf1-847bb0f0bfbe +2017,Jujuy,II.1.1,1.9866,TJ,N2O,3.9,kg/TJ,7.747739999999999,Gas Oil combustion consumption by public passenger transport,AR-Y,SESCO,annual,kg,ba418045-45a4-3859-acf1-847bb0f0bfbe +2017,La Pampa,II.1.1,0.7223999999999999,TJ,CO2,74100.0,kg/TJ,53529.84,Gas Oil combustion consumption by public passenger transport,AR-L,SESCO,annual,kg,c2d92942-312a-3b8e-8597-934099487cf9 +2017,La Pampa,II.1.1,0.7223999999999999,TJ,CH4,3.9,kg/TJ,2.81736,Gas Oil combustion consumption by public passenger transport,AR-L,SESCO,annual,kg,5121f64c-eed1-3c43-9359-2561bc77629a +2017,La Pampa,II.1.1,0.7223999999999999,TJ,N2O,3.9,kg/TJ,2.81736,Gas Oil combustion consumption by public passenger transport,AR-L,SESCO,annual,kg,5121f64c-eed1-3c43-9359-2561bc77629a +2017,La Rioja,II.1.1,2.81736,TJ,CO2,74100.0,kg/TJ,208766.376,Gas Oil combustion consumption by public passenger transport,AR-F,SESCO,annual,kg,27fc11dc-cb1f-3dce-b146-88f21c1fce84 +2017,La Rioja,II.1.1,2.81736,TJ,CH4,3.9,kg/TJ,10.987703999999999,Gas Oil combustion consumption by public passenger transport,AR-F,SESCO,annual,kg,0b8db15d-90a0-30cd-bb6d-ca35f2539ecf +2017,La Rioja,II.1.1,2.81736,TJ,N2O,3.9,kg/TJ,10.987703999999999,Gas Oil combustion consumption by public passenger transport,AR-F,SESCO,annual,kg,0b8db15d-90a0-30cd-bb6d-ca35f2539ecf +2017,Mendoza,II.1.1,133.31892,TJ,CO2,74100.0,kg/TJ,9878931.972,Gas Oil combustion consumption by public passenger transport,AR-M,SESCO,annual,kg,7db95e28-b59b-3508-9668-1b04f72da7ea +2017,Mendoza,II.1.1,133.31892,TJ,CH4,3.9,kg/TJ,519.9437879999999,Gas Oil combustion consumption by public passenger transport,AR-M,SESCO,annual,kg,02d01cda-49dd-3c58-b6b9-c3a017cc7c5e +2017,Mendoza,II.1.1,133.31892,TJ,N2O,3.9,kg/TJ,519.9437879999999,Gas Oil combustion consumption by public passenger transport,AR-M,SESCO,annual,kg,02d01cda-49dd-3c58-b6b9-c3a017cc7c5e +2017,Misiones,II.1.1,76.0326,TJ,CO2,74100.0,kg/TJ,5634015.66,Gas Oil combustion consumption by public passenger transport,AR-N,SESCO,annual,kg,bd659b55-7234-3a1d-b542-16e18f8efba0 +2017,Misiones,II.1.1,76.0326,TJ,CH4,3.9,kg/TJ,296.52714,Gas Oil combustion consumption by public passenger transport,AR-N,SESCO,annual,kg,55a040f6-a99d-3cab-872c-e072d05a0e69 +2017,Misiones,II.1.1,76.0326,TJ,N2O,3.9,kg/TJ,296.52714,Gas Oil combustion consumption by public passenger transport,AR-N,SESCO,annual,kg,55a040f6-a99d-3cab-872c-e072d05a0e69 +2017,Neuquén,II.1.1,19.57704,TJ,CO2,74100.0,kg/TJ,1450658.664,Gas Oil combustion consumption by public passenger transport,AR-Q,SESCO,annual,kg,e08a06ff-8304-311c-b7ad-d0a28a1363da +2017,Neuquén,II.1.1,19.57704,TJ,CH4,3.9,kg/TJ,76.350456,Gas Oil combustion consumption by public passenger transport,AR-Q,SESCO,annual,kg,1f93c534-c6bf-3621-9cff-51efdfc145f1 +2017,Neuquén,II.1.1,19.57704,TJ,N2O,3.9,kg/TJ,76.350456,Gas Oil combustion consumption by public passenger transport,AR-Q,SESCO,annual,kg,1f93c534-c6bf-3621-9cff-51efdfc145f1 +2017,Rio Negro,II.1.1,105.25367999999999,TJ,CO2,74100.0,kg/TJ,7799297.687999999,Gas Oil combustion consumption by public passenger transport,AR-R,SESCO,annual,kg,f88ae116-41f8-3456-8e0a-f1a2fab4d1ca +2017,Rio Negro,II.1.1,105.25367999999999,TJ,CH4,3.9,kg/TJ,410.48935199999994,Gas Oil combustion consumption by public passenger transport,AR-R,SESCO,annual,kg,c1732d91-2ecf-3116-bfc9-a8d80599584f +2017,Rio Negro,II.1.1,105.25367999999999,TJ,N2O,3.9,kg/TJ,410.48935199999994,Gas Oil combustion consumption by public passenger transport,AR-R,SESCO,annual,kg,c1732d91-2ecf-3116-bfc9-a8d80599584f +2017,Salta,II.1.1,102.72528,TJ,CO2,74100.0,kg/TJ,7611943.248,Gas Oil combustion consumption by public passenger transport,AR-A,SESCO,annual,kg,f1481d66-7992-3772-a1ee-889b3552573c +2017,Salta,II.1.1,102.72528,TJ,CH4,3.9,kg/TJ,400.62859199999997,Gas Oil combustion consumption by public passenger transport,AR-A,SESCO,annual,kg,cdd11d9e-1407-39ec-b282-fafc0fa38b89 +2017,Salta,II.1.1,102.72528,TJ,N2O,3.9,kg/TJ,400.62859199999997,Gas Oil combustion consumption by public passenger transport,AR-A,SESCO,annual,kg,cdd11d9e-1407-39ec-b282-fafc0fa38b89 +2017,San Juan,II.1.1,99.11327999999999,TJ,CO2,74100.0,kg/TJ,7344294.0479999995,Gas Oil combustion consumption by public passenger transport,AR-J,SESCO,annual,kg,53b9d5de-211d-31e9-8ad4-b2dd1595cec5 +2017,San Juan,II.1.1,99.11327999999999,TJ,CH4,3.9,kg/TJ,386.54179199999993,Gas Oil combustion consumption by public passenger transport,AR-J,SESCO,annual,kg,0b0d9ad3-c5cf-39df-adfa-e838b778f389 +2017,San Juan,II.1.1,99.11327999999999,TJ,N2O,3.9,kg/TJ,386.54179199999993,Gas Oil combustion consumption by public passenger transport,AR-J,SESCO,annual,kg,0b0d9ad3-c5cf-39df-adfa-e838b778f389 +2017,San Luis,II.1.1,14.989799999999999,TJ,CO2,74100.0,kg/TJ,1110744.18,Gas Oil combustion consumption by public passenger transport,AR-D,SESCO,annual,kg,30445ad9-ef23-3736-8340-bca30bf9220e +2017,San Luis,II.1.1,14.989799999999999,TJ,CH4,3.9,kg/TJ,58.46021999999999,Gas Oil combustion consumption by public passenger transport,AR-D,SESCO,annual,kg,ec59e81d-511a-3e20-9572-281d693a064f +2017,San Luis,II.1.1,14.989799999999999,TJ,N2O,3.9,kg/TJ,58.46021999999999,Gas Oil combustion consumption by public passenger transport,AR-D,SESCO,annual,kg,ec59e81d-511a-3e20-9572-281d693a064f +2017,Santa Cruz,II.1.1,2.81736,TJ,CO2,74100.0,kg/TJ,208766.376,Gas Oil combustion consumption by public passenger transport,AR-Z,SESCO,annual,kg,c782d8ab-db76-3c5e-af65-b3cc7aca75c6 +2017,Santa Cruz,II.1.1,2.81736,TJ,CH4,3.9,kg/TJ,10.987703999999999,Gas Oil combustion consumption by public passenger transport,AR-Z,SESCO,annual,kg,76f29514-715e-3fa7-b6c2-a0f19bb671e8 +2017,Santa Cruz,II.1.1,2.81736,TJ,N2O,3.9,kg/TJ,10.987703999999999,Gas Oil combustion consumption by public passenger transport,AR-Z,SESCO,annual,kg,76f29514-715e-3fa7-b6c2-a0f19bb671e8 +2017,Santa Fe,II.1.1,134.87207999999998,TJ,CO2,74100.0,kg/TJ,9994021.127999999,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,6bf15405-01ce-33c4-8756-d2b1103c984e +2017,Santa Fe,II.1.1,134.87207999999998,TJ,CH4,3.9,kg/TJ,526.0011119999999,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,37f735a1-9c52-3341-b23b-d9251e8927db +2017,Santa Fe,II.1.1,134.87207999999998,TJ,N2O,3.9,kg/TJ,526.0011119999999,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,37f735a1-9c52-3341-b23b-d9251e8927db +2017,Santiago del Estero,II.1.1,11.016599999999999,TJ,CO2,74100.0,kg/TJ,816330.0599999999,Gas Oil combustion consumption by public passenger transport,AR-G,SESCO,annual,kg,fa1c4d0f-7279-3fb7-a800-729db70bafd4 +2017,Santiago del Estero,II.1.1,11.016599999999999,TJ,CH4,3.9,kg/TJ,42.96473999999999,Gas Oil combustion consumption by public passenger transport,AR-G,SESCO,annual,kg,c0fe5ff1-e95f-37af-8aaf-c5a761fbc800 +2017,Santiago del Estero,II.1.1,11.016599999999999,TJ,N2O,3.9,kg/TJ,42.96473999999999,Gas Oil combustion consumption by public passenger transport,AR-G,SESCO,annual,kg,c0fe5ff1-e95f-37af-8aaf-c5a761fbc800 +2017,Tierra del Fuego,II.1.1,2.05884,TJ,CO2,74100.0,kg/TJ,152560.044,Gas Oil combustion consumption by public passenger transport,AR-V,SESCO,annual,kg,f55df6ae-947c-382a-a15b-4f2bd5556f0c +2017,Tierra del Fuego,II.1.1,2.05884,TJ,CH4,3.9,kg/TJ,8.029475999999999,Gas Oil combustion consumption by public passenger transport,AR-V,SESCO,annual,kg,e7cc6ab8-64de-3129-94b9-db64b3d7d685 +2017,Tierra del Fuego,II.1.1,2.05884,TJ,N2O,3.9,kg/TJ,8.029475999999999,Gas Oil combustion consumption by public passenger transport,AR-V,SESCO,annual,kg,e7cc6ab8-64de-3129-94b9-db64b3d7d685 +2017,Tucuman,II.1.1,85.53215999999999,TJ,CO2,74100.0,kg/TJ,6337933.055999999,Gas Oil combustion consumption by public passenger transport,AR-T,SESCO,annual,kg,db3af41e-c48c-3658-b6d9-7a08c49af301 +2017,Tucuman,II.1.1,85.53215999999999,TJ,CH4,3.9,kg/TJ,333.57542399999994,Gas Oil combustion consumption by public passenger transport,AR-T,SESCO,annual,kg,0e0a3da4-dd8c-381a-9234-43924c8a545c +2017,Tucuman,II.1.1,85.53215999999999,TJ,N2O,3.9,kg/TJ,333.57542399999994,Gas Oil combustion consumption by public passenger transport,AR-T,SESCO,annual,kg,0e0a3da4-dd8c-381a-9234-43924c8a545c +2018,Buenos Aires,II.5.1,40.743359999999996,TJ,CO2,74100.0,kg/TJ,3019082.976,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,a9a9c4af-0fea-3e1a-b7a8-23d8887258f5 +2018,Buenos Aires,II.5.1,40.743359999999996,TJ,CH4,3.9,kg/TJ,158.89910399999997,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,cc237f63-4dbc-30a5-af70-3cfb89727f54 +2018,Buenos Aires,II.5.1,40.743359999999996,TJ,N2O,3.9,kg/TJ,158.89910399999997,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,cc237f63-4dbc-30a5-af70-3cfb89727f54 +2018,Córdoba,II.5.1,1.3364399999999999,TJ,CO2,74100.0,kg/TJ,99030.20399999998,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,0ee42921-43f5-3810-8249-59bfd8fceb55 +2018,Córdoba,II.5.1,1.3364399999999999,TJ,CH4,3.9,kg/TJ,5.212115999999999,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,97a695ab-b3e9-37bb-8885-839e77691249 +2018,Córdoba,II.5.1,1.3364399999999999,TJ,N2O,3.9,kg/TJ,5.212115999999999,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,97a695ab-b3e9-37bb-8885-839e77691249 +2018,Santa Fe,II.5.1,76.5744,TJ,CO2,74100.0,kg/TJ,5674163.04,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,c57d8751-a2f3-3e71-bc85-b0ba57223a8b +2018,Santa Fe,II.5.1,76.5744,TJ,CH4,3.9,kg/TJ,298.64016,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,4658e8f3-9c51-3285-97f2-46531d78e214 +2018,Santa Fe,II.5.1,76.5744,TJ,N2O,3.9,kg/TJ,298.64016,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,4658e8f3-9c51-3285-97f2-46531d78e214 +2018,Tucuman,II.5.1,5.2735199999999995,TJ,CO2,74100.0,kg/TJ,390767.832,Gas Oil combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,90da84b8-f111-3cb7-99e9-8257fc2c49a2 +2018,Tucuman,II.5.1,5.2735199999999995,TJ,CH4,3.9,kg/TJ,20.566727999999998,Gas Oil combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,ffdacb5d-d294-3d96-9de6-a0610076fade +2018,Tucuman,II.5.1,5.2735199999999995,TJ,N2O,3.9,kg/TJ,20.566727999999998,Gas Oil combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,ffdacb5d-d294-3d96-9de6-a0610076fade +2018,Buenos Aires,II.5.1,4.62336,TJ,CO2,74100.0,kg/TJ,342590.97599999997,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,5b2d9209-d8fc-308c-a01a-12d3c58f331a +2018,Buenos Aires,II.5.1,4.62336,TJ,CH4,3.9,kg/TJ,18.031104,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,e2761fc5-a9db-39c8-853b-4b71c0aef6cc +2018,Buenos Aires,II.5.1,4.62336,TJ,N2O,3.9,kg/TJ,18.031104,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,e2761fc5-a9db-39c8-853b-4b71c0aef6cc +2018,Córdoba,II.5.1,2.5284,TJ,CO2,74100.0,kg/TJ,187354.44,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,8f4854a8-e502-3713-b7ad-0d90d4b218ad +2018,Córdoba,II.5.1,2.5284,TJ,CH4,3.9,kg/TJ,9.860759999999999,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,9c678e78-642a-3c21-9c52-393a6eb5f96d +2018,Córdoba,II.5.1,2.5284,TJ,N2O,3.9,kg/TJ,9.860759999999999,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,9c678e78-642a-3c21-9c52-393a6eb5f96d +2018,Santa Fe,II.5.1,9.24672,TJ,CO2,74100.0,kg/TJ,685181.9519999999,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,b3ac713b-c01f-36cb-b9cb-c6c6730c1312 +2018,Santa Fe,II.5.1,9.24672,TJ,CH4,3.9,kg/TJ,36.062208,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,e0c72e40-d472-3e45-8e79-b86c8def2ec9 +2018,Santa Fe,II.5.1,9.24672,TJ,N2O,3.9,kg/TJ,36.062208,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,e0c72e40-d472-3e45-8e79-b86c8def2ec9 +2018,Tucuman,II.5.1,4.6956,TJ,CO2,74100.0,kg/TJ,347943.95999999996,Gas Oil combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,fa818f0e-1216-3fd1-ac6b-3e648fd68b6a +2018,Tucuman,II.5.1,4.6956,TJ,CH4,3.9,kg/TJ,18.312839999999998,Gas Oil combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,d531778d-008a-3723-965b-dda1839a3a32 +2018,Tucuman,II.5.1,4.6956,TJ,N2O,3.9,kg/TJ,18.312839999999998,Gas Oil combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,d531778d-008a-3723-965b-dda1839a3a32 +2018,Buenos Aires,II.5.1,13.43188,TJ,CO2,73300.0,kg/TJ,984556.804,Naphtha combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,9c84a05d-ca36-37c8-85ae-a46256a2c2aa +2018,Buenos Aires,II.5.1,13.43188,TJ,CH4,0.5,kg/TJ,6.71594,Naphtha combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,035c0d42-078a-37af-980d-da6f0b8f49ec +2018,Buenos Aires,II.5.1,13.43188,TJ,N2O,2.0,kg/TJ,26.86376,Naphtha combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,b74ebf8e-4429-393f-958e-f85eb849dfee +2018,Córdoba,II.5.1,2.021635,TJ,CO2,73300.0,kg/TJ,148185.8455,Naphtha combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,bcf0f934-bb2e-3996-b873-0dde9d66575a +2018,Córdoba,II.5.1,2.021635,TJ,CH4,0.5,kg/TJ,1.0108175,Naphtha combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,fcfcf3e4-8f62-38d5-a6b9-cde1979ea70a +2018,Córdoba,II.5.1,2.021635,TJ,N2O,2.0,kg/TJ,4.04327,Naphtha combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,ca075bf6-370e-3a77-8748-81b3df85369e +2018,Santa Fe,II.5.1,15.590575,TJ,CO2,73300.0,kg/TJ,1142789.1475,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,c6d06324-24d4-3525-8fa7-cd7bc3144e01 +2018,Santa Fe,II.5.1,15.590575,TJ,CH4,0.5,kg/TJ,7.7952875,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,b6ee311e-b2e3-300c-90fb-15b11709ab8a +2018,Santa Fe,II.5.1,15.590575,TJ,N2O,2.0,kg/TJ,31.18115,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,ad88b7dd-6c61-3bc4-b1ec-75636c804196 +2018,Tucuman,II.5.1,11.92422,TJ,CO2,73300.0,kg/TJ,874045.326,Naphtha combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,7e205a09-7ca8-3aa0-ba0a-853a6051cb86 +2018,Tucuman,II.5.1,11.92422,TJ,CH4,0.5,kg/TJ,5.96211,Naphtha combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,0c61ece5-a555-3b64-8823-7dcb7a412755 +2018,Tucuman,II.5.1,11.92422,TJ,N2O,2.0,kg/TJ,23.84844,Naphtha combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,4212a16d-2d27-3899-b791-a8aaad41d7d1 +2018,Buenos Aires,II.5.1,2.706935,TJ,CO2,73300.0,kg/TJ,198418.33550000002,Naphtha combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,bb79bdba-927e-36e2-bb75-5534c789ccfd +2018,Buenos Aires,II.5.1,2.706935,TJ,CH4,0.5,kg/TJ,1.3534675,Naphtha combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,001a39d6-cc0c-31a8-b2a8-15fb699caaf8 +2018,Buenos Aires,II.5.1,2.706935,TJ,N2O,2.0,kg/TJ,5.41387,Naphtha combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,66dac2a0-393c-3c2d-ad8c-16b0c57e86df +2018,Córdoba,II.5.1,0.9594199999999999,TJ,CO2,73300.0,kg/TJ,70325.48599999999,Naphtha combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,6b1346fa-1145-3a8b-be46-1414cf43a7e4 +2018,Córdoba,II.5.1,0.9594199999999999,TJ,CH4,0.5,kg/TJ,0.47970999999999997,Naphtha combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,39ba5259-a53a-38f0-83da-3c408447c980 +2018,Córdoba,II.5.1,0.9594199999999999,TJ,N2O,2.0,kg/TJ,1.9188399999999999,Naphtha combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,3bcdb893-046f-319a-a401-32db576b5949 +2018,Santa Fe,II.5.1,5.071219999999999,TJ,CO2,73300.0,kg/TJ,371720.426,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,78581cce-8fe6-3a14-8963-012e22f9ee4f +2018,Santa Fe,II.5.1,5.071219999999999,TJ,CH4,0.5,kg/TJ,2.5356099999999997,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,3f20900a-5aa0-3e98-862c-97a655ae01e7 +2018,Santa Fe,II.5.1,5.071219999999999,TJ,N2O,2.0,kg/TJ,10.142439999999999,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,0bd897c6-2409-355c-942b-43d225d69681 +2018,Tucuman,II.5.1,2.5356099999999997,TJ,CO2,73300.0,kg/TJ,185860.213,Naphtha combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,758ff87c-3eb7-35bb-bc05-24e91fab0d85 +2018,Tucuman,II.5.1,2.5356099999999997,TJ,CH4,0.5,kg/TJ,1.2678049999999998,Naphtha combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,e88059cc-79c2-31e1-a793-ac4e040cef6a +2018,Tucuman,II.5.1,2.5356099999999997,TJ,N2O,2.0,kg/TJ,5.071219999999999,Naphtha combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,f43da9ad-7e00-33d1-98c1-e5dc29e09321 +2018,Buenos Aires,II.2.1,49.881719999999994,TJ,CO2,74100.0,kg/TJ,3696235.4519999996,Gas Oil combustion consumption by railway transport,AR-B,SESCO,annual,kg,66265ca0-e7c6-3fe0-a34d-a4a26c5437c2 +2018,Buenos Aires,II.2.1,49.881719999999994,TJ,CH4,3.9,kg/TJ,194.53870799999999,Gas Oil combustion consumption by railway transport,AR-B,SESCO,annual,kg,f3ca3b63-da9b-3030-80f5-1534e5b854c3 +2018,Buenos Aires,II.2.1,49.881719999999994,TJ,N2O,3.9,kg/TJ,194.53870799999999,Gas Oil combustion consumption by railway transport,AR-B,SESCO,annual,kg,f3ca3b63-da9b-3030-80f5-1534e5b854c3 +2018,La Pampa,II.2.1,15.459359999999998,TJ,CO2,74100.0,kg/TJ,1145538.576,Gas Oil combustion consumption by railway transport,AR-L,SESCO,annual,kg,be634f0d-2069-3576-a178-deaf6ffc752a +2018,La Pampa,II.2.1,15.459359999999998,TJ,CH4,3.9,kg/TJ,60.29150399999999,Gas Oil combustion consumption by railway transport,AR-L,SESCO,annual,kg,caa10f40-431d-3add-afd3-c25612f45514 +2018,La Pampa,II.2.1,15.459359999999998,TJ,N2O,3.9,kg/TJ,60.29150399999999,Gas Oil combustion consumption by railway transport,AR-L,SESCO,annual,kg,caa10f40-431d-3add-afd3-c25612f45514 +2018,Santa Fe,II.2.1,43.38012,TJ,CO2,74100.0,kg/TJ,3214466.892,Gas Oil combustion consumption by railway transport,AR-S,SESCO,annual,kg,a43a0a72-6cc9-3b19-b460-cc137f8506ce +2018,Santa Fe,II.2.1,43.38012,TJ,CH4,3.9,kg/TJ,169.182468,Gas Oil combustion consumption by railway transport,AR-S,SESCO,annual,kg,35137b53-2e66-3da1-b5da-f1e47bb92f3a +2018,Santa Fe,II.2.1,43.38012,TJ,N2O,3.9,kg/TJ,169.182468,Gas Oil combustion consumption by railway transport,AR-S,SESCO,annual,kg,35137b53-2e66-3da1-b5da-f1e47bb92f3a +2018,Santiago del Estero,II.2.1,1.30032,TJ,CO2,74100.0,kg/TJ,96353.712,Gas Oil combustion consumption by railway transport,AR-G,SESCO,annual,kg,8576173b-0107-3a3a-b196-77738a7e13f7 +2018,Santiago del Estero,II.2.1,1.30032,TJ,CH4,3.9,kg/TJ,5.071248,Gas Oil combustion consumption by railway transport,AR-G,SESCO,annual,kg,68a2e866-5ab4-36e0-b1e5-43a38a2e0b01 +2018,Santiago del Estero,II.2.1,1.30032,TJ,N2O,3.9,kg/TJ,5.071248,Gas Oil combustion consumption by railway transport,AR-G,SESCO,annual,kg,68a2e866-5ab4-36e0-b1e5-43a38a2e0b01 +2018,Tucuman,II.2.1,1.30032,TJ,CO2,74100.0,kg/TJ,96353.712,Gas Oil combustion consumption by railway transport,AR-T,SESCO,annual,kg,10a3bc31-90e3-39f4-8bd9-ae771f058037 +2018,Tucuman,II.2.1,1.30032,TJ,CH4,3.9,kg/TJ,5.071248,Gas Oil combustion consumption by railway transport,AR-T,SESCO,annual,kg,94eba858-4de5-3004-b4d2-78f989756616 +2018,Tucuman,II.2.1,1.30032,TJ,N2O,3.9,kg/TJ,5.071248,Gas Oil combustion consumption by railway transport,AR-T,SESCO,annual,kg,94eba858-4de5-3004-b4d2-78f989756616 +2018,Buenos Aires,II.1.1,764.1186,TJ,CO2,74100.0,kg/TJ,56621188.26,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,a1b1e343-c9ac-3eca-ad8f-909f8126bf03 +2018,Buenos Aires,II.1.1,764.1186,TJ,CH4,3.9,kg/TJ,2980.06254,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,3d6b7169-cb32-319a-bab9-df1ebd2555e1 +2018,Buenos Aires,II.1.1,764.1186,TJ,N2O,3.9,kg/TJ,2980.06254,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,3d6b7169-cb32-319a-bab9-df1ebd2555e1 +2018,Capital Federal,II.1.1,129.41796,TJ,CO2,74100.0,kg/TJ,9589870.836,Gas Oil combustion consumption by freight transport,AR-C,SESCO,annual,kg,48088478-07cb-3213-82de-2aa9aa06ef1d +2018,Capital Federal,II.1.1,129.41796,TJ,CH4,3.9,kg/TJ,504.73004399999996,Gas Oil combustion consumption by freight transport,AR-C,SESCO,annual,kg,c04cace8-8417-3b42-a5bd-bd0d7c28ba08 +2018,Capital Federal,II.1.1,129.41796,TJ,N2O,3.9,kg/TJ,504.73004399999996,Gas Oil combustion consumption by freight transport,AR-C,SESCO,annual,kg,c04cace8-8417-3b42-a5bd-bd0d7c28ba08 +2018,Catamarca,II.1.1,7.0434,TJ,CO2,74100.0,kg/TJ,521915.94,Gas Oil combustion consumption by freight transport,AR-K,SESCO,annual,kg,58881477-82af-3bc6-aa91-f03a3e0c1f55 +2018,Catamarca,II.1.1,7.0434,TJ,CH4,3.9,kg/TJ,27.46926,Gas Oil combustion consumption by freight transport,AR-K,SESCO,annual,kg,41a791a9-93e3-3d50-87a8-224e50b931a5 +2018,Catamarca,II.1.1,7.0434,TJ,N2O,3.9,kg/TJ,27.46926,Gas Oil combustion consumption by freight transport,AR-K,SESCO,annual,kg,41a791a9-93e3-3d50-87a8-224e50b931a5 +2018,Chaco,II.1.1,7.07952,TJ,CO2,74100.0,kg/TJ,524592.4319999999,Gas Oil combustion consumption by freight transport,AR-H,SESCO,annual,kg,f3d16c6b-42ef-35c3-a11a-d42057b397ce +2018,Chaco,II.1.1,7.07952,TJ,CH4,3.9,kg/TJ,27.610127999999996,Gas Oil combustion consumption by freight transport,AR-H,SESCO,annual,kg,d15d1b78-bad9-39ef-b702-36a8512f373e +2018,Chaco,II.1.1,7.07952,TJ,N2O,3.9,kg/TJ,27.610127999999996,Gas Oil combustion consumption by freight transport,AR-H,SESCO,annual,kg,d15d1b78-bad9-39ef-b702-36a8512f373e +2018,Chubut,II.1.1,5.20128,TJ,CO2,74100.0,kg/TJ,385414.848,Gas Oil combustion consumption by freight transport,AR-U,SESCO,annual,kg,a6bdae9c-0338-3385-b009-795ad3e7c7b3 +2018,Chubut,II.1.1,5.20128,TJ,CH4,3.9,kg/TJ,20.284992,Gas Oil combustion consumption by freight transport,AR-U,SESCO,annual,kg,17b8a06e-4590-3546-b21f-0663966d8213 +2018,Chubut,II.1.1,5.20128,TJ,N2O,3.9,kg/TJ,20.284992,Gas Oil combustion consumption by freight transport,AR-U,SESCO,annual,kg,17b8a06e-4590-3546-b21f-0663966d8213 +2018,Corrientes,II.1.1,12.17244,TJ,CO2,74100.0,kg/TJ,901977.804,Gas Oil combustion consumption by freight transport,AR-W,SESCO,annual,kg,16d6b23b-4a7c-3591-adf7-9a9d4a953f16 +2018,Corrientes,II.1.1,12.17244,TJ,CH4,3.9,kg/TJ,47.472516,Gas Oil combustion consumption by freight transport,AR-W,SESCO,annual,kg,742b44cd-e3c3-3965-a4d9-92687c250313 +2018,Corrientes,II.1.1,12.17244,TJ,N2O,3.9,kg/TJ,47.472516,Gas Oil combustion consumption by freight transport,AR-W,SESCO,annual,kg,742b44cd-e3c3-3965-a4d9-92687c250313 +2018,Córdoba,II.1.1,145.20239999999998,TJ,CO2,74100.0,kg/TJ,10759497.839999998,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,42e3ad30-4e1c-3417-8ecb-fa89fcf5ffb1 +2018,Córdoba,II.1.1,145.20239999999998,TJ,CH4,3.9,kg/TJ,566.2893599999999,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,2648054b-37ee-3669-a22b-a677b9b15632 +2018,Córdoba,II.1.1,145.20239999999998,TJ,N2O,3.9,kg/TJ,566.2893599999999,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,2648054b-37ee-3669-a22b-a677b9b15632 +2018,Entre Rios,II.1.1,83.83452,TJ,CO2,74100.0,kg/TJ,6212137.932,Gas Oil combustion consumption by freight transport,AR-E,SESCO,annual,kg,9ffdbce4-5d1e-3c81-b99a-96946aea78fb +2018,Entre Rios,II.1.1,83.83452,TJ,CH4,3.9,kg/TJ,326.95462799999996,Gas Oil combustion consumption by freight transport,AR-E,SESCO,annual,kg,0ad76807-bdf8-3ca5-b361-661691cf3707 +2018,Entre Rios,II.1.1,83.83452,TJ,N2O,3.9,kg/TJ,326.95462799999996,Gas Oil combustion consumption by freight transport,AR-E,SESCO,annual,kg,0ad76807-bdf8-3ca5-b361-661691cf3707 +2018,Formosa,II.1.1,1.6254,TJ,CO2,74100.0,kg/TJ,120442.14,Gas Oil combustion consumption by freight transport,AR-P,SESCO,annual,kg,229ea2ac-e6fb-3a34-a824-5dcb870118f8 +2018,Formosa,II.1.1,1.6254,TJ,CH4,3.9,kg/TJ,6.33906,Gas Oil combustion consumption by freight transport,AR-P,SESCO,annual,kg,c9dfe182-f1c1-3250-b6cf-dbc0568adac4 +2018,Formosa,II.1.1,1.6254,TJ,N2O,3.9,kg/TJ,6.33906,Gas Oil combustion consumption by freight transport,AR-P,SESCO,annual,kg,c9dfe182-f1c1-3250-b6cf-dbc0568adac4 +2018,Jujuy,II.1.1,1.58928,TJ,CO2,74100.0,kg/TJ,117765.648,Gas Oil combustion consumption by freight transport,AR-Y,SESCO,annual,kg,8bbe05e4-01ff-3622-91b0-f374a0892866 +2018,Jujuy,II.1.1,1.58928,TJ,CH4,3.9,kg/TJ,6.198192,Gas Oil combustion consumption by freight transport,AR-Y,SESCO,annual,kg,bda43028-c56c-3c33-ba2b-5161dc6cf374 +2018,Jujuy,II.1.1,1.58928,TJ,N2O,3.9,kg/TJ,6.198192,Gas Oil combustion consumption by freight transport,AR-Y,SESCO,annual,kg,bda43028-c56c-3c33-ba2b-5161dc6cf374 +2018,La Pampa,II.1.1,3.8648399999999996,TJ,CO2,74100.0,kg/TJ,286384.644,Gas Oil combustion consumption by freight transport,AR-L,SESCO,annual,kg,ba256d8b-a3d6-3f7f-8be0-9847f283d025 +2018,La Pampa,II.1.1,3.8648399999999996,TJ,CH4,3.9,kg/TJ,15.072875999999997,Gas Oil combustion consumption by freight transport,AR-L,SESCO,annual,kg,321c129b-c0fc-3c45-941d-8a440e71bec6 +2018,La Pampa,II.1.1,3.8648399999999996,TJ,N2O,3.9,kg/TJ,15.072875999999997,Gas Oil combustion consumption by freight transport,AR-L,SESCO,annual,kg,321c129b-c0fc-3c45-941d-8a440e71bec6 +2018,La Rioja,II.1.1,1.5531599999999999,TJ,CO2,74100.0,kg/TJ,115089.15599999999,Gas Oil combustion consumption by freight transport,AR-F,SESCO,annual,kg,c6b7eb5d-0966-337f-a456-944f6e7dbbcd +2018,La Rioja,II.1.1,1.5531599999999999,TJ,CH4,3.9,kg/TJ,6.0573239999999995,Gas Oil combustion consumption by freight transport,AR-F,SESCO,annual,kg,95efcec2-a892-3636-813f-edc556a136ff +2018,La Rioja,II.1.1,1.5531599999999999,TJ,N2O,3.9,kg/TJ,6.0573239999999995,Gas Oil combustion consumption by freight transport,AR-F,SESCO,annual,kg,95efcec2-a892-3636-813f-edc556a136ff +2018,Mendoza,II.1.1,14.05068,TJ,CO2,74100.0,kg/TJ,1041155.388,Gas Oil combustion consumption by freight transport,AR-M,SESCO,annual,kg,620ffbc6-67c2-38d7-9d16-793178bd88e9 +2018,Mendoza,II.1.1,14.05068,TJ,CH4,3.9,kg/TJ,54.797652,Gas Oil combustion consumption by freight transport,AR-M,SESCO,annual,kg,faa62325-a6a1-3dfe-b079-bb14b23594d2 +2018,Mendoza,II.1.1,14.05068,TJ,N2O,3.9,kg/TJ,54.797652,Gas Oil combustion consumption by freight transport,AR-M,SESCO,annual,kg,faa62325-a6a1-3dfe-b079-bb14b23594d2 +2018,Misiones,II.1.1,18.71016,TJ,CO2,74100.0,kg/TJ,1386422.856,Gas Oil combustion consumption by freight transport,AR-N,SESCO,annual,kg,658837f7-48d2-33ec-886a-b0dcb5eae512 +2018,Misiones,II.1.1,18.71016,TJ,CH4,3.9,kg/TJ,72.969624,Gas Oil combustion consumption by freight transport,AR-N,SESCO,annual,kg,cfd9735f-502d-3977-b589-56f0c7fb85eb +2018,Misiones,II.1.1,18.71016,TJ,N2O,3.9,kg/TJ,72.969624,Gas Oil combustion consumption by freight transport,AR-N,SESCO,annual,kg,cfd9735f-502d-3977-b589-56f0c7fb85eb +2018,Neuquén,II.1.1,0.18059999999999998,TJ,CO2,74100.0,kg/TJ,13382.46,Gas Oil combustion consumption by freight transport,AR-Q,SESCO,annual,kg,e30631ac-6337-3a36-99d2-d9263d87d364 +2018,Neuquén,II.1.1,0.18059999999999998,TJ,CH4,3.9,kg/TJ,0.70434,Gas Oil combustion consumption by freight transport,AR-Q,SESCO,annual,kg,f824b395-8ea3-337f-a5fe-790ab36c3acf +2018,Neuquén,II.1.1,0.18059999999999998,TJ,N2O,3.9,kg/TJ,0.70434,Gas Oil combustion consumption by freight transport,AR-Q,SESCO,annual,kg,f824b395-8ea3-337f-a5fe-790ab36c3acf +2018,Rio Negro,II.1.1,28.42644,TJ,CO2,74100.0,kg/TJ,2106399.204,Gas Oil combustion consumption by freight transport,AR-R,SESCO,annual,kg,6259ebb4-3763-351d-b42d-4fbef6b4bc11 +2018,Rio Negro,II.1.1,28.42644,TJ,CH4,3.9,kg/TJ,110.86311599999999,Gas Oil combustion consumption by freight transport,AR-R,SESCO,annual,kg,2802ce3f-0c3a-3ca7-89c5-16dc220ae8d6 +2018,Rio Negro,II.1.1,28.42644,TJ,N2O,3.9,kg/TJ,110.86311599999999,Gas Oil combustion consumption by freight transport,AR-R,SESCO,annual,kg,2802ce3f-0c3a-3ca7-89c5-16dc220ae8d6 +2018,Salta,II.1.1,11.34168,TJ,CO2,74100.0,kg/TJ,840418.488,Gas Oil combustion consumption by freight transport,AR-A,SESCO,annual,kg,9dd3dc4b-84d9-37fb-9240-89de74d5cbee +2018,Salta,II.1.1,11.34168,TJ,CH4,3.9,kg/TJ,44.232552,Gas Oil combustion consumption by freight transport,AR-A,SESCO,annual,kg,3fab6c58-2f88-3be7-a47c-789d7fe2bcbc +2018,Salta,II.1.1,11.34168,TJ,N2O,3.9,kg/TJ,44.232552,Gas Oil combustion consumption by freight transport,AR-A,SESCO,annual,kg,3fab6c58-2f88-3be7-a47c-789d7fe2bcbc +2018,San Juan,II.1.1,2.31168,TJ,CO2,74100.0,kg/TJ,171295.48799999998,Gas Oil combustion consumption by freight transport,AR-J,SESCO,annual,kg,ad6917f5-9f90-3146-b019-43ae7b59613f +2018,San Juan,II.1.1,2.31168,TJ,CH4,3.9,kg/TJ,9.015552,Gas Oil combustion consumption by freight transport,AR-J,SESCO,annual,kg,a1034353-5c1b-35a7-a446-99d91434a8d7 +2018,San Juan,II.1.1,2.31168,TJ,N2O,3.9,kg/TJ,9.015552,Gas Oil combustion consumption by freight transport,AR-J,SESCO,annual,kg,a1034353-5c1b-35a7-a446-99d91434a8d7 +2018,San Luis,II.1.1,15.24264,TJ,CO2,74100.0,kg/TJ,1129479.624,Gas Oil combustion consumption by freight transport,AR-D,SESCO,annual,kg,688e90e9-874e-360b-a08b-102a093ed518 +2018,San Luis,II.1.1,15.24264,TJ,CH4,3.9,kg/TJ,59.446296,Gas Oil combustion consumption by freight transport,AR-D,SESCO,annual,kg,b74cd50f-5f9f-3f67-afae-8e7845777291 +2018,San Luis,II.1.1,15.24264,TJ,N2O,3.9,kg/TJ,59.446296,Gas Oil combustion consumption by freight transport,AR-D,SESCO,annual,kg,b74cd50f-5f9f-3f67-afae-8e7845777291 +2018,Santa Fe,II.1.1,187.49892,TJ,CO2,74100.0,kg/TJ,13893669.972,Gas Oil combustion consumption by freight transport,AR-S,SESCO,annual,kg,5f970834-9755-38cf-b0f4-64bcd89f5af5 +2018,Santa Fe,II.1.1,187.49892,TJ,CH4,3.9,kg/TJ,731.245788,Gas Oil combustion consumption by freight transport,AR-S,SESCO,annual,kg,9d2884db-be7f-38e8-a946-4c1893403547 +2018,Santa Fe,II.1.1,187.49892,TJ,N2O,3.9,kg/TJ,731.245788,Gas Oil combustion consumption by freight transport,AR-S,SESCO,annual,kg,9d2884db-be7f-38e8-a946-4c1893403547 +2018,Santiago del Estero,II.1.1,12.31692,TJ,CO2,74100.0,kg/TJ,912683.772,Gas Oil combustion consumption by freight transport,AR-G,SESCO,annual,kg,bbe42665-82e3-3ea6-9a12-3b3138399940 +2018,Santiago del Estero,II.1.1,12.31692,TJ,CH4,3.9,kg/TJ,48.035987999999996,Gas Oil combustion consumption by freight transport,AR-G,SESCO,annual,kg,217057de-b12a-3530-8e35-7945c2cb1c75 +2018,Santiago del Estero,II.1.1,12.31692,TJ,N2O,3.9,kg/TJ,48.035987999999996,Gas Oil combustion consumption by freight transport,AR-G,SESCO,annual,kg,217057de-b12a-3530-8e35-7945c2cb1c75 +2018,Tierra del Fuego,II.1.1,0.03612,TJ,CO2,74100.0,kg/TJ,2676.4919999999997,Gas Oil combustion consumption by freight transport,AR-V,SESCO,annual,kg,767c2e44-8146-3aae-830c-229491064951 +2018,Tierra del Fuego,II.1.1,0.03612,TJ,CH4,3.9,kg/TJ,0.140868,Gas Oil combustion consumption by freight transport,AR-V,SESCO,annual,kg,a8914733-0b94-3d52-b39a-ea4e29ecfc53 +2018,Tierra del Fuego,II.1.1,0.03612,TJ,N2O,3.9,kg/TJ,0.140868,Gas Oil combustion consumption by freight transport,AR-V,SESCO,annual,kg,a8914733-0b94-3d52-b39a-ea4e29ecfc53 +2018,Tucuman,II.1.1,10.510919999999999,TJ,CO2,74100.0,kg/TJ,778859.1719999999,Gas Oil combustion consumption by freight transport,AR-T,SESCO,annual,kg,8c784409-55dd-31ba-ba91-a1e01d378273 +2018,Tucuman,II.1.1,10.510919999999999,TJ,CH4,3.9,kg/TJ,40.99258799999999,Gas Oil combustion consumption by freight transport,AR-T,SESCO,annual,kg,79095e6b-490b-3ce4-88ae-e244b3b87cd0 +2018,Tucuman,II.1.1,10.510919999999999,TJ,N2O,3.9,kg/TJ,40.99258799999999,Gas Oil combustion consumption by freight transport,AR-T,SESCO,annual,kg,79095e6b-490b-3ce4-88ae-e244b3b87cd0 +2018,Buenos Aires,II.1.1,78.77772,TJ,CO2,74100.0,kg/TJ,5837429.052,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,e4ee4c7d-78fb-384a-973c-74a45367f27b +2018,Buenos Aires,II.1.1,78.77772,TJ,CH4,3.9,kg/TJ,307.233108,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,86f5e72e-1c5a-35de-a762-ffd8ec62c0af +2018,Buenos Aires,II.1.1,78.77772,TJ,N2O,3.9,kg/TJ,307.233108,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,86f5e72e-1c5a-35de-a762-ffd8ec62c0af +2018,Capital Federal,II.1.1,22.9362,TJ,CO2,74100.0,kg/TJ,1699572.42,Gas Oil combustion consumption by freight transport,AR-C,SESCO,annual,kg,5b2d1c43-cbee-3430-b9f4-f811236e4464 +2018,Capital Federal,II.1.1,22.9362,TJ,CH4,3.9,kg/TJ,89.45118,Gas Oil combustion consumption by freight transport,AR-C,SESCO,annual,kg,25b8c0f4-775a-3555-a0c8-eaeac3cbc465 +2018,Capital Federal,II.1.1,22.9362,TJ,N2O,3.9,kg/TJ,89.45118,Gas Oil combustion consumption by freight transport,AR-C,SESCO,annual,kg,25b8c0f4-775a-3555-a0c8-eaeac3cbc465 +2018,Catamarca,II.1.1,0.18059999999999998,TJ,CO2,74100.0,kg/TJ,13382.46,Gas Oil combustion consumption by freight transport,AR-K,SESCO,annual,kg,dde2bc20-2d66-3919-8f37-0f9a02485b8f +2018,Catamarca,II.1.1,0.18059999999999998,TJ,CH4,3.9,kg/TJ,0.70434,Gas Oil combustion consumption by freight transport,AR-K,SESCO,annual,kg,6c8a7c1e-8bc4-3ad4-a8fe-63372738898f +2018,Catamarca,II.1.1,0.18059999999999998,TJ,N2O,3.9,kg/TJ,0.70434,Gas Oil combustion consumption by freight transport,AR-K,SESCO,annual,kg,6c8a7c1e-8bc4-3ad4-a8fe-63372738898f +2018,Chaco,II.1.1,0.07224,TJ,CO2,74100.0,kg/TJ,5352.9839999999995,Gas Oil combustion consumption by freight transport,AR-H,SESCO,annual,kg,9fec9256-e6de-33a3-9299-24c0d9147558 +2018,Chaco,II.1.1,0.07224,TJ,CH4,3.9,kg/TJ,0.281736,Gas Oil combustion consumption by freight transport,AR-H,SESCO,annual,kg,7479c1e2-0224-32cb-aa47-6eb9710dd581 +2018,Chaco,II.1.1,0.07224,TJ,N2O,3.9,kg/TJ,0.281736,Gas Oil combustion consumption by freight transport,AR-H,SESCO,annual,kg,7479c1e2-0224-32cb-aa47-6eb9710dd581 +2018,Chubut,II.1.1,0.6140399999999999,TJ,CO2,74100.0,kg/TJ,45500.363999999994,Gas Oil combustion consumption by freight transport,AR-U,SESCO,annual,kg,7e36c4e3-67d6-3a9f-8d96-ebdccf07822e +2018,Chubut,II.1.1,0.6140399999999999,TJ,CH4,3.9,kg/TJ,2.3947559999999997,Gas Oil combustion consumption by freight transport,AR-U,SESCO,annual,kg,c05a26da-939b-30ba-9ab0-b4c4447faa63 +2018,Chubut,II.1.1,0.6140399999999999,TJ,N2O,3.9,kg/TJ,2.3947559999999997,Gas Oil combustion consumption by freight transport,AR-U,SESCO,annual,kg,c05a26da-939b-30ba-9ab0-b4c4447faa63 +2018,Corrientes,II.1.1,1.2280799999999998,TJ,CO2,74100.0,kg/TJ,91000.72799999999,Gas Oil combustion consumption by freight transport,AR-W,SESCO,annual,kg,4ce0966c-8711-338a-aa0f-1e80a29380f7 +2018,Corrientes,II.1.1,1.2280799999999998,TJ,CH4,3.9,kg/TJ,4.789511999999999,Gas Oil combustion consumption by freight transport,AR-W,SESCO,annual,kg,0515d56e-cef4-3ad3-9bf4-6e2574d416df +2018,Corrientes,II.1.1,1.2280799999999998,TJ,N2O,3.9,kg/TJ,4.789511999999999,Gas Oil combustion consumption by freight transport,AR-W,SESCO,annual,kg,0515d56e-cef4-3ad3-9bf4-6e2574d416df +2018,Córdoba,II.1.1,6.42936,TJ,CO2,74100.0,kg/TJ,476415.576,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,0a54095a-323e-328e-ab47-bbc914e4cc1f +2018,Córdoba,II.1.1,6.42936,TJ,CH4,3.9,kg/TJ,25.074504,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,0c2973c8-ada2-3f6e-bec3-7f1faed852c9 +2018,Córdoba,II.1.1,6.42936,TJ,N2O,3.9,kg/TJ,25.074504,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,0c2973c8-ada2-3f6e-bec3-7f1faed852c9 +2018,Entre Rios,II.1.1,2.85348,TJ,CO2,74100.0,kg/TJ,211442.868,Gas Oil combustion consumption by freight transport,AR-E,SESCO,annual,kg,aee36da4-942f-3cd6-96f3-2007c6714a4a +2018,Entre Rios,II.1.1,2.85348,TJ,CH4,3.9,kg/TJ,11.128571999999998,Gas Oil combustion consumption by freight transport,AR-E,SESCO,annual,kg,0ca0c03e-5ef7-3fc2-aeac-ff5ee9a3a5fe +2018,Entre Rios,II.1.1,2.85348,TJ,N2O,3.9,kg/TJ,11.128571999999998,Gas Oil combustion consumption by freight transport,AR-E,SESCO,annual,kg,0ca0c03e-5ef7-3fc2-aeac-ff5ee9a3a5fe +2018,Formosa,II.1.1,0.14448,TJ,CO2,74100.0,kg/TJ,10705.967999999999,Gas Oil combustion consumption by freight transport,AR-P,SESCO,annual,kg,3266a5f0-7e94-35e3-a244-85b6bdee65bf +2018,Formosa,II.1.1,0.14448,TJ,CH4,3.9,kg/TJ,0.563472,Gas Oil combustion consumption by freight transport,AR-P,SESCO,annual,kg,b850ec85-6d63-361b-a71b-bd582ee6fb00 +2018,Formosa,II.1.1,0.14448,TJ,N2O,3.9,kg/TJ,0.563472,Gas Oil combustion consumption by freight transport,AR-P,SESCO,annual,kg,b850ec85-6d63-361b-a71b-bd582ee6fb00 +2018,La Pampa,II.1.1,0.28896,TJ,CO2,74100.0,kg/TJ,21411.935999999998,Gas Oil combustion consumption by freight transport,AR-L,SESCO,annual,kg,5ba0f049-0653-35a9-8d48-7459ba7d4c3d +2018,La Pampa,II.1.1,0.28896,TJ,CH4,3.9,kg/TJ,1.126944,Gas Oil combustion consumption by freight transport,AR-L,SESCO,annual,kg,5dc698ce-7188-38fe-8b00-db5ec8b4c379 +2018,La Pampa,II.1.1,0.28896,TJ,N2O,3.9,kg/TJ,1.126944,Gas Oil combustion consumption by freight transport,AR-L,SESCO,annual,kg,5dc698ce-7188-38fe-8b00-db5ec8b4c379 +2018,La Rioja,II.1.1,0.03612,TJ,CO2,74100.0,kg/TJ,2676.4919999999997,Gas Oil combustion consumption by freight transport,AR-F,SESCO,annual,kg,f5e747bb-eea1-3d84-9913-63025b9d770a +2018,La Rioja,II.1.1,0.03612,TJ,CH4,3.9,kg/TJ,0.140868,Gas Oil combustion consumption by freight transport,AR-F,SESCO,annual,kg,f389654d-6500-34da-9fe1-077ab51887a6 +2018,La Rioja,II.1.1,0.03612,TJ,N2O,3.9,kg/TJ,0.140868,Gas Oil combustion consumption by freight transport,AR-F,SESCO,annual,kg,f389654d-6500-34da-9fe1-077ab51887a6 +2018,Mendoza,II.1.1,0.32508,TJ,CO2,74100.0,kg/TJ,24088.428,Gas Oil combustion consumption by freight transport,AR-M,SESCO,annual,kg,be8e310f-e204-3186-8102-6945f1d140dc +2018,Mendoza,II.1.1,0.32508,TJ,CH4,3.9,kg/TJ,1.267812,Gas Oil combustion consumption by freight transport,AR-M,SESCO,annual,kg,ae41c496-c38b-3bb8-9e48-da8c8c8747ea +2018,Mendoza,II.1.1,0.32508,TJ,N2O,3.9,kg/TJ,1.267812,Gas Oil combustion consumption by freight transport,AR-M,SESCO,annual,kg,ae41c496-c38b-3bb8-9e48-da8c8c8747ea +2018,Misiones,II.1.1,0.18059999999999998,TJ,CO2,74100.0,kg/TJ,13382.46,Gas Oil combustion consumption by freight transport,AR-N,SESCO,annual,kg,d392ec4a-5f39-38cb-96e6-a335883abcda +2018,Misiones,II.1.1,0.18059999999999998,TJ,CH4,3.9,kg/TJ,0.70434,Gas Oil combustion consumption by freight transport,AR-N,SESCO,annual,kg,d3d01c5c-38e0-3811-b330-8032f91f2e54 +2018,Misiones,II.1.1,0.18059999999999998,TJ,N2O,3.9,kg/TJ,0.70434,Gas Oil combustion consumption by freight transport,AR-N,SESCO,annual,kg,d3d01c5c-38e0-3811-b330-8032f91f2e54 +2018,Neuquén,II.1.1,0.03612,TJ,CO2,74100.0,kg/TJ,2676.4919999999997,Gas Oil combustion consumption by freight transport,AR-Q,SESCO,annual,kg,72f79e4f-cc41-3c96-90ab-f636da9fd693 +2018,Neuquén,II.1.1,0.03612,TJ,CH4,3.9,kg/TJ,0.140868,Gas Oil combustion consumption by freight transport,AR-Q,SESCO,annual,kg,a2c1117f-32e8-359f-bc8f-87f84ddd7b5b +2018,Neuquén,II.1.1,0.03612,TJ,N2O,3.9,kg/TJ,0.140868,Gas Oil combustion consumption by freight transport,AR-Q,SESCO,annual,kg,a2c1117f-32e8-359f-bc8f-87f84ddd7b5b +2018,Rio Negro,II.1.1,12.8226,TJ,CO2,74100.0,kg/TJ,950154.6599999999,Gas Oil combustion consumption by freight transport,AR-R,SESCO,annual,kg,ecf942b6-0681-373f-b96a-bef6b9083540 +2018,Rio Negro,II.1.1,12.8226,TJ,CH4,3.9,kg/TJ,50.00814,Gas Oil combustion consumption by freight transport,AR-R,SESCO,annual,kg,121881c6-2e39-346e-ae14-7693800d2756 +2018,Rio Negro,II.1.1,12.8226,TJ,N2O,3.9,kg/TJ,50.00814,Gas Oil combustion consumption by freight transport,AR-R,SESCO,annual,kg,121881c6-2e39-346e-ae14-7693800d2756 +2018,Salta,II.1.1,0.03612,TJ,CO2,74100.0,kg/TJ,2676.4919999999997,Gas Oil combustion consumption by freight transport,AR-A,SESCO,annual,kg,53ee0eef-d411-34c8-b139-89b5187ff052 +2018,Salta,II.1.1,0.03612,TJ,CH4,3.9,kg/TJ,0.140868,Gas Oil combustion consumption by freight transport,AR-A,SESCO,annual,kg,79a9c050-79d6-37f1-9982-1fee1612bbcb +2018,Salta,II.1.1,0.03612,TJ,N2O,3.9,kg/TJ,0.140868,Gas Oil combustion consumption by freight transport,AR-A,SESCO,annual,kg,79a9c050-79d6-37f1-9982-1fee1612bbcb +2018,San Juan,II.1.1,0.32508,TJ,CO2,74100.0,kg/TJ,24088.428,Gas Oil combustion consumption by freight transport,AR-J,SESCO,annual,kg,18d7dce6-946d-3483-82e0-5a34ed632c64 +2018,San Juan,II.1.1,0.32508,TJ,CH4,3.9,kg/TJ,1.267812,Gas Oil combustion consumption by freight transport,AR-J,SESCO,annual,kg,e4c8f839-6da9-348e-bf41-4894afb33e34 +2018,San Juan,II.1.1,0.32508,TJ,N2O,3.9,kg/TJ,1.267812,Gas Oil combustion consumption by freight transport,AR-J,SESCO,annual,kg,e4c8f839-6da9-348e-bf41-4894afb33e34 +2018,San Luis,II.1.1,0.46956,TJ,CO2,74100.0,kg/TJ,34794.396,Gas Oil combustion consumption by freight transport,AR-D,SESCO,annual,kg,2360e819-0bcd-3ad8-a72a-b02e983a3688 +2018,San Luis,II.1.1,0.46956,TJ,CH4,3.9,kg/TJ,1.831284,Gas Oil combustion consumption by freight transport,AR-D,SESCO,annual,kg,c6eeb74a-ac58-3854-8e49-e915c07cbd94 +2018,San Luis,II.1.1,0.46956,TJ,N2O,3.9,kg/TJ,1.831284,Gas Oil combustion consumption by freight transport,AR-D,SESCO,annual,kg,c6eeb74a-ac58-3854-8e49-e915c07cbd94 +2018,Santa Fe,II.1.1,50.026199999999996,TJ,CO2,74100.0,kg/TJ,3706941.4199999995,Gas Oil combustion consumption by freight transport,AR-S,SESCO,annual,kg,be97a2b0-7ec3-3805-859f-dd317e7dc93c +2018,Santa Fe,II.1.1,50.026199999999996,TJ,CH4,3.9,kg/TJ,195.10217999999998,Gas Oil combustion consumption by freight transport,AR-S,SESCO,annual,kg,ee52d6be-49bf-3070-95f3-cb774b422600 +2018,Santa Fe,II.1.1,50.026199999999996,TJ,N2O,3.9,kg/TJ,195.10217999999998,Gas Oil combustion consumption by freight transport,AR-S,SESCO,annual,kg,ee52d6be-49bf-3070-95f3-cb774b422600 +2018,Santiago del Estero,II.1.1,1.01136,TJ,CO2,74100.0,kg/TJ,74941.776,Gas Oil combustion consumption by freight transport,AR-G,SESCO,annual,kg,395d08a8-f1e6-34fb-a86f-458c9f5d5ff0 +2018,Santiago del Estero,II.1.1,1.01136,TJ,CH4,3.9,kg/TJ,3.9443040000000003,Gas Oil combustion consumption by freight transport,AR-G,SESCO,annual,kg,71e54b13-f611-3002-a968-277422bea047 +2018,Santiago del Estero,II.1.1,1.01136,TJ,N2O,3.9,kg/TJ,3.9443040000000003,Gas Oil combustion consumption by freight transport,AR-G,SESCO,annual,kg,71e54b13-f611-3002-a968-277422bea047 +2018,Tierra del Fuego,II.1.1,0.07224,TJ,CO2,74100.0,kg/TJ,5352.9839999999995,Gas Oil combustion consumption by freight transport,AR-V,SESCO,annual,kg,9538ea72-cb1a-31e8-a3c1-d6e09531b470 +2018,Tierra del Fuego,II.1.1,0.07224,TJ,CH4,3.9,kg/TJ,0.281736,Gas Oil combustion consumption by freight transport,AR-V,SESCO,annual,kg,bac7c95d-2ce8-3ad1-87f4-8e0804123eab +2018,Tierra del Fuego,II.1.1,0.07224,TJ,N2O,3.9,kg/TJ,0.281736,Gas Oil combustion consumption by freight transport,AR-V,SESCO,annual,kg,bac7c95d-2ce8-3ad1-87f4-8e0804123eab +2018,Tucuman,II.1.1,0.10836,TJ,CO2,74100.0,kg/TJ,8029.476,Gas Oil combustion consumption by freight transport,AR-T,SESCO,annual,kg,f0415f61-a3cc-3da0-bad0-c1fc1f561c41 +2018,Tucuman,II.1.1,0.10836,TJ,CH4,3.9,kg/TJ,0.422604,Gas Oil combustion consumption by freight transport,AR-T,SESCO,annual,kg,5a8be346-8e85-32df-b000-79159c5b6842 +2018,Tucuman,II.1.1,0.10836,TJ,N2O,3.9,kg/TJ,0.422604,Gas Oil combustion consumption by freight transport,AR-T,SESCO,annual,kg,5a8be346-8e85-32df-b000-79159c5b6842 +2018,Buenos Aires,II.1.1,2.5356099999999997,TJ,CO2,73300.0,kg/TJ,185860.213,Naphtha combustion consumption by freight transport,AR-B,SESCO,annual,kg,2268ee2f-1177-373f-9573-6880e64489f1 +2018,Buenos Aires,II.1.1,2.5356099999999997,TJ,CH4,0.5,kg/TJ,1.2678049999999998,Naphtha combustion consumption by freight transport,AR-B,SESCO,annual,kg,2ed5d2c6-c793-3999-9012-e186af8d5c23 +2018,Buenos Aires,II.1.1,2.5356099999999997,TJ,N2O,2.0,kg/TJ,5.071219999999999,Naphtha combustion consumption by freight transport,AR-B,SESCO,annual,kg,78a95308-959e-3f9d-a791-34051a0cc35c +2018,Capital Federal,II.1.1,1.02795,TJ,CO2,73300.0,kg/TJ,75348.735,Naphtha combustion consumption by freight transport,AR-C,SESCO,annual,kg,61c04ebc-e534-3893-8167-a4dc36e6f41d +2018,Capital Federal,II.1.1,1.02795,TJ,CH4,0.5,kg/TJ,0.513975,Naphtha combustion consumption by freight transport,AR-C,SESCO,annual,kg,463048c1-1fb0-3c95-b48a-cc3a0ec20657 +2018,Capital Federal,II.1.1,1.02795,TJ,N2O,2.0,kg/TJ,2.0559,Naphtha combustion consumption by freight transport,AR-C,SESCO,annual,kg,b1cf115c-8c7e-3a51-8d9d-d0fcf2376698 +2018,Córdoba,II.1.1,0.47970999999999997,TJ,CO2,73300.0,kg/TJ,35162.742999999995,Naphtha combustion consumption by freight transport,AR-X,SESCO,annual,kg,5b2d4be8-98a6-37f2-8978-a20c13b0efcb +2018,Córdoba,II.1.1,0.47970999999999997,TJ,CH4,0.5,kg/TJ,0.23985499999999998,Naphtha combustion consumption by freight transport,AR-X,SESCO,annual,kg,f81ac1a1-0550-3059-9641-0c188db25297 +2018,Córdoba,II.1.1,0.47970999999999997,TJ,N2O,2.0,kg/TJ,0.9594199999999999,Naphtha combustion consumption by freight transport,AR-X,SESCO,annual,kg,4119ef6d-7903-34cf-a76e-b8e0e00fcbbf +2018,Santa Fe,II.1.1,0.13706,TJ,CO2,73300.0,kg/TJ,10046.498,Naphtha combustion consumption by freight transport,AR-S,SESCO,annual,kg,b6d39d05-f547-3a9c-bbfa-09e6075c36c3 +2018,Santa Fe,II.1.1,0.13706,TJ,CH4,0.5,kg/TJ,0.06853,Naphtha combustion consumption by freight transport,AR-S,SESCO,annual,kg,898ad23a-e19d-3bab-9f81-ca9e842a7aff +2018,Santa Fe,II.1.1,0.13706,TJ,N2O,2.0,kg/TJ,0.27412,Naphtha combustion consumption by freight transport,AR-S,SESCO,annual,kg,167ec5c1-612c-36c5-9687-1e46e68a6b70 +2018,Buenos Aires,II.1.1,2.12443,TJ,CO2,73300.0,kg/TJ,155720.71899999998,Naphtha combustion consumption by freight transport,AR-B,SESCO,annual,kg,e88fd4a5-a6d6-3a4b-872f-8c3aa89e0001 +2018,Buenos Aires,II.1.1,2.12443,TJ,CH4,0.5,kg/TJ,1.062215,Naphtha combustion consumption by freight transport,AR-B,SESCO,annual,kg,18a2315c-93f1-34aa-8fdc-e774a8d06a11 +2018,Buenos Aires,II.1.1,2.12443,TJ,N2O,2.0,kg/TJ,4.24886,Naphtha combustion consumption by freight transport,AR-B,SESCO,annual,kg,d74e2e6b-d8d6-30c4-9162-f287c31a97f5 +2018,Capital Federal,II.1.1,1.062215,TJ,CO2,73300.0,kg/TJ,77860.35949999999,Naphtha combustion consumption by freight transport,AR-C,SESCO,annual,kg,313e400c-2943-362e-bf7c-802147e7b54b +2018,Capital Federal,II.1.1,1.062215,TJ,CH4,0.5,kg/TJ,0.5311075,Naphtha combustion consumption by freight transport,AR-C,SESCO,annual,kg,3118dd41-dcb5-32be-b600-b4e78b2721c3 +2018,Capital Federal,II.1.1,1.062215,TJ,N2O,2.0,kg/TJ,2.12443,Naphtha combustion consumption by freight transport,AR-C,SESCO,annual,kg,92cdd98d-3a91-382b-8295-c53828864084 +2018,Córdoba,II.1.1,0.513975,TJ,CO2,73300.0,kg/TJ,37674.3675,Naphtha combustion consumption by freight transport,AR-X,SESCO,annual,kg,e8d5f5d2-374f-39a9-b363-d55eafb7c652 +2018,Córdoba,II.1.1,0.513975,TJ,CH4,0.5,kg/TJ,0.2569875,Naphtha combustion consumption by freight transport,AR-X,SESCO,annual,kg,31bdde4b-a8d0-3646-b411-91f4e79ed184 +2018,Córdoba,II.1.1,0.513975,TJ,N2O,2.0,kg/TJ,1.02795,Naphtha combustion consumption by freight transport,AR-X,SESCO,annual,kg,00943378-e1be-3480-9366-f3da36175b84 +2018,Santa Fe,II.1.1,0.34265,TJ,CO2,73300.0,kg/TJ,25116.245,Naphtha combustion consumption by freight transport,AR-S,SESCO,annual,kg,5748572a-bb06-3993-a507-b6d4e1309df1 +2018,Santa Fe,II.1.1,0.34265,TJ,CH4,0.5,kg/TJ,0.171325,Naphtha combustion consumption by freight transport,AR-S,SESCO,annual,kg,856467f0-8ee5-33a8-a14b-0f0eeb2051b9 +2018,Santa Fe,II.1.1,0.34265,TJ,N2O,2.0,kg/TJ,0.6853,Naphtha combustion consumption by freight transport,AR-S,SESCO,annual,kg,c35b9279-9f62-38f6-96c2-54154186a2e8 +2018,Buenos Aires,II.1.1,244.74911999999998,TJ,CO2,74100.0,kg/TJ,18135909.792,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,debdcfe2-08a8-3e10-abac-a2580c5bbf6b +2018,Buenos Aires,II.1.1,244.74911999999998,TJ,CH4,3.9,kg/TJ,954.5215679999999,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,128d110a-4e81-3129-9160-413b54448c51 +2018,Buenos Aires,II.1.1,244.74911999999998,TJ,N2O,3.9,kg/TJ,954.5215679999999,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,128d110a-4e81-3129-9160-413b54448c51 +2018,Capital Federal,II.1.1,126.70895999999999,TJ,CO2,74100.0,kg/TJ,9389133.935999999,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,4882befb-4284-3d96-bca0-d075c8030c62 +2018,Capital Federal,II.1.1,126.70895999999999,TJ,CH4,3.9,kg/TJ,494.16494399999993,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,662b1f59-e97e-32c9-9738-422ecf38544c +2018,Capital Federal,II.1.1,126.70895999999999,TJ,N2O,3.9,kg/TJ,494.16494399999993,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,662b1f59-e97e-32c9-9738-422ecf38544c +2018,Chaco,II.1.1,8.16312,TJ,CO2,74100.0,kg/TJ,604887.1919999999,Gas Oil combustion consumption by public passenger transport,AR-H,SESCO,annual,kg,2caad93c-1601-3750-aada-d58a6cf14cd4 +2018,Chaco,II.1.1,8.16312,TJ,CH4,3.9,kg/TJ,31.836167999999997,Gas Oil combustion consumption by public passenger transport,AR-H,SESCO,annual,kg,560da30b-0e33-33d6-b718-1e8da4a27e84 +2018,Chaco,II.1.1,8.16312,TJ,N2O,3.9,kg/TJ,31.836167999999997,Gas Oil combustion consumption by public passenger transport,AR-H,SESCO,annual,kg,560da30b-0e33-33d6-b718-1e8da4a27e84 +2018,Chubut,II.1.1,6.24876,TJ,CO2,74100.0,kg/TJ,463033.116,Gas Oil combustion consumption by public passenger transport,AR-U,SESCO,annual,kg,c6c241ed-a5c2-39f7-8fdb-840215b1d1a7 +2018,Chubut,II.1.1,6.24876,TJ,CH4,3.9,kg/TJ,24.370164,Gas Oil combustion consumption by public passenger transport,AR-U,SESCO,annual,kg,d2dee2c1-f023-3369-af2e-3ed87c125bd8 +2018,Chubut,II.1.1,6.24876,TJ,N2O,3.9,kg/TJ,24.370164,Gas Oil combustion consumption by public passenger transport,AR-U,SESCO,annual,kg,d2dee2c1-f023-3369-af2e-3ed87c125bd8 +2018,Corrientes,II.1.1,0.39732,TJ,CO2,74100.0,kg/TJ,29441.412,Gas Oil combustion consumption by public passenger transport,AR-W,SESCO,annual,kg,cb5f3107-29ae-345a-87c8-ead06de6f3a1 +2018,Corrientes,II.1.1,0.39732,TJ,CH4,3.9,kg/TJ,1.549548,Gas Oil combustion consumption by public passenger transport,AR-W,SESCO,annual,kg,ce536de0-e32d-3279-afe4-6a9a9bff6bf3 +2018,Corrientes,II.1.1,0.39732,TJ,N2O,3.9,kg/TJ,1.549548,Gas Oil combustion consumption by public passenger transport,AR-W,SESCO,annual,kg,ce536de0-e32d-3279-afe4-6a9a9bff6bf3 +2018,Córdoba,II.1.1,18.52956,TJ,CO2,74100.0,kg/TJ,1373040.396,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,f4f63ae2-709b-3748-a479-69d215cbda2a +2018,Córdoba,II.1.1,18.52956,TJ,CH4,3.9,kg/TJ,72.265284,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,50432436-ca0d-3533-be08-bb40a2f63c39 +2018,Córdoba,II.1.1,18.52956,TJ,N2O,3.9,kg/TJ,72.265284,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,50432436-ca0d-3533-be08-bb40a2f63c39 +2018,Entre Rios,II.1.1,10.22196,TJ,CO2,74100.0,kg/TJ,757447.2359999999,Gas Oil combustion consumption by public passenger transport,AR-E,SESCO,annual,kg,b79fa94e-bf2c-3f25-809c-2c57c4890e3e +2018,Entre Rios,II.1.1,10.22196,TJ,CH4,3.9,kg/TJ,39.865643999999996,Gas Oil combustion consumption by public passenger transport,AR-E,SESCO,annual,kg,80044c5a-d081-3dd3-b358-3c54619e6349 +2018,Entre Rios,II.1.1,10.22196,TJ,N2O,3.9,kg/TJ,39.865643999999996,Gas Oil combustion consumption by public passenger transport,AR-E,SESCO,annual,kg,80044c5a-d081-3dd3-b358-3c54619e6349 +2018,La Pampa,II.1.1,1.84212,TJ,CO2,74100.0,kg/TJ,136501.092,Gas Oil combustion consumption by public passenger transport,AR-L,SESCO,annual,kg,b054b9b4-c32b-3710-a90a-bb14ab31ee8b +2018,La Pampa,II.1.1,1.84212,TJ,CH4,3.9,kg/TJ,7.184267999999999,Gas Oil combustion consumption by public passenger transport,AR-L,SESCO,annual,kg,b2582760-5efc-3359-b56d-42a1247fc63a +2018,La Pampa,II.1.1,1.84212,TJ,N2O,3.9,kg/TJ,7.184267999999999,Gas Oil combustion consumption by public passenger transport,AR-L,SESCO,annual,kg,b2582760-5efc-3359-b56d-42a1247fc63a +2018,Mendoza,II.1.1,0.32508,TJ,CO2,74100.0,kg/TJ,24088.428,Gas Oil combustion consumption by public passenger transport,AR-M,SESCO,annual,kg,be8e310f-e204-3186-8102-6945f1d140dc +2018,Mendoza,II.1.1,0.32508,TJ,CH4,3.9,kg/TJ,1.267812,Gas Oil combustion consumption by public passenger transport,AR-M,SESCO,annual,kg,ae41c496-c38b-3bb8-9e48-da8c8c8747ea +2018,Mendoza,II.1.1,0.32508,TJ,N2O,3.9,kg/TJ,1.267812,Gas Oil combustion consumption by public passenger transport,AR-M,SESCO,annual,kg,ae41c496-c38b-3bb8-9e48-da8c8c8747ea +2018,Misiones,II.1.1,11.883479999999999,TJ,CO2,74100.0,kg/TJ,880565.8679999999,Gas Oil combustion consumption by public passenger transport,AR-N,SESCO,annual,kg,21a1db38-27bf-3d36-8921-834e60bd8582 +2018,Misiones,II.1.1,11.883479999999999,TJ,CH4,3.9,kg/TJ,46.345572,Gas Oil combustion consumption by public passenger transport,AR-N,SESCO,annual,kg,eda4b9e0-6715-362d-b64e-54eba9d38757 +2018,Misiones,II.1.1,11.883479999999999,TJ,N2O,3.9,kg/TJ,46.345572,Gas Oil combustion consumption by public passenger transport,AR-N,SESCO,annual,kg,eda4b9e0-6715-362d-b64e-54eba9d38757 +2018,Neuquén,II.1.1,1.87824,TJ,CO2,74100.0,kg/TJ,139177.584,Gas Oil combustion consumption by public passenger transport,AR-Q,SESCO,annual,kg,61ab90f3-7e96-3afe-aac5-5471c3f2449f +2018,Neuquén,II.1.1,1.87824,TJ,CH4,3.9,kg/TJ,7.325136,Gas Oil combustion consumption by public passenger transport,AR-Q,SESCO,annual,kg,9ba65473-1584-3cc5-adbf-4446befba27a +2018,Neuquén,II.1.1,1.87824,TJ,N2O,3.9,kg/TJ,7.325136,Gas Oil combustion consumption by public passenger transport,AR-Q,SESCO,annual,kg,9ba65473-1584-3cc5-adbf-4446befba27a +2018,Rio Negro,II.1.1,9.71628,TJ,CO2,74100.0,kg/TJ,719976.348,Gas Oil combustion consumption by public passenger transport,AR-R,SESCO,annual,kg,71fcc04a-dfa5-3c83-981a-c14f9e929c6e +2018,Rio Negro,II.1.1,9.71628,TJ,CH4,3.9,kg/TJ,37.893491999999995,Gas Oil combustion consumption by public passenger transport,AR-R,SESCO,annual,kg,fb9794d1-e8a4-3dea-84ad-cc1bf6365cc9 +2018,Rio Negro,II.1.1,9.71628,TJ,N2O,3.9,kg/TJ,37.893491999999995,Gas Oil combustion consumption by public passenger transport,AR-R,SESCO,annual,kg,fb9794d1-e8a4-3dea-84ad-cc1bf6365cc9 +2018,Salta,II.1.1,0.03612,TJ,CO2,74100.0,kg/TJ,2676.4919999999997,Gas Oil combustion consumption by public passenger transport,AR-A,SESCO,annual,kg,53ee0eef-d411-34c8-b139-89b5187ff052 +2018,Salta,II.1.1,0.03612,TJ,CH4,3.9,kg/TJ,0.140868,Gas Oil combustion consumption by public passenger transport,AR-A,SESCO,annual,kg,79a9c050-79d6-37f1-9982-1fee1612bbcb +2018,Salta,II.1.1,0.03612,TJ,N2O,3.9,kg/TJ,0.140868,Gas Oil combustion consumption by public passenger transport,AR-A,SESCO,annual,kg,79a9c050-79d6-37f1-9982-1fee1612bbcb +2018,San Luis,II.1.1,0.07224,TJ,CO2,74100.0,kg/TJ,5352.9839999999995,Gas Oil combustion consumption by public passenger transport,AR-D,SESCO,annual,kg,49241a0a-c4c1-38ec-9eb5-884cbc2f0133 +2018,San Luis,II.1.1,0.07224,TJ,CH4,3.9,kg/TJ,0.281736,Gas Oil combustion consumption by public passenger transport,AR-D,SESCO,annual,kg,ce3c8f8e-dba6-3efa-8c07-9095e2ad535d +2018,San Luis,II.1.1,0.07224,TJ,N2O,3.9,kg/TJ,0.281736,Gas Oil combustion consumption by public passenger transport,AR-D,SESCO,annual,kg,ce3c8f8e-dba6-3efa-8c07-9095e2ad535d +2018,Santa Fe,II.1.1,66.2802,TJ,CO2,74100.0,kg/TJ,4911362.819999999,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,90805535-c066-3a24-a4f4-e9039d5ebe98 +2018,Santa Fe,II.1.1,66.2802,TJ,CH4,3.9,kg/TJ,258.49278,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,244cbe5c-309c-3592-a04c-435381d133c2 +2018,Santa Fe,II.1.1,66.2802,TJ,N2O,3.9,kg/TJ,258.49278,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,244cbe5c-309c-3592-a04c-435381d133c2 +2018,Santiago del Estero,II.1.1,0.07224,TJ,CO2,74100.0,kg/TJ,5352.9839999999995,Gas Oil combustion consumption by public passenger transport,AR-G,SESCO,annual,kg,02b10c80-f015-39cb-aa5e-0fa5fb8fab17 +2018,Santiago del Estero,II.1.1,0.07224,TJ,CH4,3.9,kg/TJ,0.281736,Gas Oil combustion consumption by public passenger transport,AR-G,SESCO,annual,kg,e5567771-8320-33a5-9f80-456ff2ef92f1 +2018,Santiago del Estero,II.1.1,0.07224,TJ,N2O,3.9,kg/TJ,0.281736,Gas Oil combustion consumption by public passenger transport,AR-G,SESCO,annual,kg,e5567771-8320-33a5-9f80-456ff2ef92f1 +2018,Tucuman,II.1.1,51.2904,TJ,CO2,74100.0,kg/TJ,3800618.6399999997,Gas Oil combustion consumption by public passenger transport,AR-T,SESCO,annual,kg,bf59a6dc-c11c-3eb5-b516-4e7236c510a1 +2018,Tucuman,II.1.1,51.2904,TJ,CH4,3.9,kg/TJ,200.03256,Gas Oil combustion consumption by public passenger transport,AR-T,SESCO,annual,kg,e5ef501f-8b2b-3c87-8e75-33e422f5b636 +2018,Tucuman,II.1.1,51.2904,TJ,N2O,3.9,kg/TJ,200.03256,Gas Oil combustion consumption by public passenger transport,AR-T,SESCO,annual,kg,e5ef501f-8b2b-3c87-8e75-33e422f5b636 +2018,Buenos Aires,II.1.1,44.39148,TJ,CO2,74100.0,kg/TJ,3289408.668,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,39216de8-6105-3e51-bc0e-cca184fc40fe +2018,Buenos Aires,II.1.1,44.39148,TJ,CH4,3.9,kg/TJ,173.126772,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,63b86839-cb40-3edf-9f83-e54bea5f5109 +2018,Buenos Aires,II.1.1,44.39148,TJ,N2O,3.9,kg/TJ,173.126772,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,63b86839-cb40-3edf-9f83-e54bea5f5109 +2018,Capital Federal,II.1.1,9.138359999999999,TJ,CO2,74100.0,kg/TJ,677152.4759999999,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,9df701fe-bdd5-349b-bccc-7501a3c3e998 +2018,Capital Federal,II.1.1,9.138359999999999,TJ,CH4,3.9,kg/TJ,35.63960399999999,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,8fb13395-03be-3c51-a8d7-6da343ca6a7c +2018,Capital Federal,II.1.1,9.138359999999999,TJ,N2O,3.9,kg/TJ,35.63960399999999,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,8fb13395-03be-3c51-a8d7-6da343ca6a7c +2018,Chubut,II.1.1,2.4561599999999997,TJ,CO2,74100.0,kg/TJ,182001.45599999998,Gas Oil combustion consumption by public passenger transport,AR-U,SESCO,annual,kg,652a1b8b-e346-35ec-aacd-34807fbfe8f1 +2018,Chubut,II.1.1,2.4561599999999997,TJ,CH4,3.9,kg/TJ,9.579023999999999,Gas Oil combustion consumption by public passenger transport,AR-U,SESCO,annual,kg,3fc5d907-4d65-395f-966f-5df14f4f328f +2018,Chubut,II.1.1,2.4561599999999997,TJ,N2O,3.9,kg/TJ,9.579023999999999,Gas Oil combustion consumption by public passenger transport,AR-U,SESCO,annual,kg,3fc5d907-4d65-395f-966f-5df14f4f328f +2018,Córdoba,II.1.1,1.87824,TJ,CO2,74100.0,kg/TJ,139177.584,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,64245b8a-1aed-38fd-84c8-4b316ff8939f +2018,Córdoba,II.1.1,1.87824,TJ,CH4,3.9,kg/TJ,7.325136,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,5eb9ad3e-f951-3df7-89c9-9b002dbfc215 +2018,Córdoba,II.1.1,1.87824,TJ,N2O,3.9,kg/TJ,7.325136,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,5eb9ad3e-f951-3df7-89c9-9b002dbfc215 +2018,Entre Rios,II.1.1,0.21672,TJ,CO2,74100.0,kg/TJ,16058.952,Gas Oil combustion consumption by public passenger transport,AR-E,SESCO,annual,kg,4ae422fa-60c7-3057-a25e-edc610450bf1 +2018,Entre Rios,II.1.1,0.21672,TJ,CH4,3.9,kg/TJ,0.845208,Gas Oil combustion consumption by public passenger transport,AR-E,SESCO,annual,kg,71ab4a7b-48e7-3c90-82a7-2ebb5d7ff9a7 +2018,Entre Rios,II.1.1,0.21672,TJ,N2O,3.9,kg/TJ,0.845208,Gas Oil combustion consumption by public passenger transport,AR-E,SESCO,annual,kg,71ab4a7b-48e7-3c90-82a7-2ebb5d7ff9a7 +2018,La Pampa,II.1.1,4.1537999999999995,TJ,CO2,74100.0,kg/TJ,307796.57999999996,Gas Oil combustion consumption by public passenger transport,AR-L,SESCO,annual,kg,5f1d1992-16e3-388d-99a2-0f69b47a14ea +2018,La Pampa,II.1.1,4.1537999999999995,TJ,CH4,3.9,kg/TJ,16.19982,Gas Oil combustion consumption by public passenger transport,AR-L,SESCO,annual,kg,b60dd16b-bf34-3ebc-adb0-8a1d24144185 +2018,La Pampa,II.1.1,4.1537999999999995,TJ,N2O,3.9,kg/TJ,16.19982,Gas Oil combustion consumption by public passenger transport,AR-L,SESCO,annual,kg,b60dd16b-bf34-3ebc-adb0-8a1d24144185 +2018,Mendoza,II.1.1,0.03612,TJ,CO2,74100.0,kg/TJ,2676.4919999999997,Gas Oil combustion consumption by public passenger transport,AR-M,SESCO,annual,kg,14cca3ab-15f7-30c0-8660-60d68fc7b862 +2018,Mendoza,II.1.1,0.03612,TJ,CH4,3.9,kg/TJ,0.140868,Gas Oil combustion consumption by public passenger transport,AR-M,SESCO,annual,kg,984a4d7f-0f47-3c13-8ebc-3b59b250bc76 +2018,Mendoza,II.1.1,0.03612,TJ,N2O,3.9,kg/TJ,0.140868,Gas Oil combustion consumption by public passenger transport,AR-M,SESCO,annual,kg,984a4d7f-0f47-3c13-8ebc-3b59b250bc76 +2018,Neuquén,II.1.1,2.5284,TJ,CO2,74100.0,kg/TJ,187354.44,Gas Oil combustion consumption by public passenger transport,AR-Q,SESCO,annual,kg,8096f219-7d3c-3a5f-8a02-7c991fbb6cd2 +2018,Neuquén,II.1.1,2.5284,TJ,CH4,3.9,kg/TJ,9.860759999999999,Gas Oil combustion consumption by public passenger transport,AR-Q,SESCO,annual,kg,bf48c769-d642-3148-8ccf-b81cdd421726 +2018,Neuquén,II.1.1,2.5284,TJ,N2O,3.9,kg/TJ,9.860759999999999,Gas Oil combustion consumption by public passenger transport,AR-Q,SESCO,annual,kg,bf48c769-d642-3148-8ccf-b81cdd421726 +2018,Rio Negro,II.1.1,10.25808,TJ,CO2,74100.0,kg/TJ,760123.728,Gas Oil combustion consumption by public passenger transport,AR-R,SESCO,annual,kg,f7bd39f0-9424-3d2c-927d-b0b4e2bcabb0 +2018,Rio Negro,II.1.1,10.25808,TJ,CH4,3.9,kg/TJ,40.006512,Gas Oil combustion consumption by public passenger transport,AR-R,SESCO,annual,kg,decff439-b6b5-3965-bcf9-0477ade8fe81 +2018,Rio Negro,II.1.1,10.25808,TJ,N2O,3.9,kg/TJ,40.006512,Gas Oil combustion consumption by public passenger transport,AR-R,SESCO,annual,kg,decff439-b6b5-3965-bcf9-0477ade8fe81 +2018,Santa Fe,II.1.1,3.46752,TJ,CO2,74100.0,kg/TJ,256943.232,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,125341f8-153a-3bc6-aa20-f3392eba762c +2018,Santa Fe,II.1.1,3.46752,TJ,CH4,3.9,kg/TJ,13.523328,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,fb18f972-18c3-393a-91e4-a5feb5dfec1e +2018,Santa Fe,II.1.1,3.46752,TJ,N2O,3.9,kg/TJ,13.523328,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,fb18f972-18c3-393a-91e4-a5feb5dfec1e +2018,Capital Federal,II.1.1,2.12443,TJ,CO2,73300.0,kg/TJ,155720.71899999998,Naphtha combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,0a3fee22-9ddb-3ed4-9c27-d22868e12d4b +2018,Capital Federal,II.1.1,2.12443,TJ,CH4,0.5,kg/TJ,1.062215,Naphtha combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,fbdbfb95-ce02-3ce3-ba4e-5813fcfbac82 +2018,Capital Federal,II.1.1,2.12443,TJ,N2O,2.0,kg/TJ,4.24886,Naphtha combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,5f5b602f-2023-3563-b128-46ebc0756f06 +2018,Capital Federal,II.1.1,0.20559,TJ,CO2,73300.0,kg/TJ,15069.747,Naphtha combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,6bdb1e41-c0a3-38bf-8d04-27c3d48cb5d5 +2018,Capital Federal,II.1.1,0.20559,TJ,CH4,0.5,kg/TJ,0.102795,Naphtha combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,add6eb63-0b97-3153-8039-49506d3858c3 +2018,Capital Federal,II.1.1,0.20559,TJ,N2O,2.0,kg/TJ,0.41118,Naphtha combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,6df79a1b-4af4-3c68-9a92-7f5055403ad1 +2018,Chubut,II.1.1,0.10398948000000001,TJ,CO2,74100.0,kg/TJ,7705.620468000001,Gas Oil combustion consumption by freight transport,AR-U,SESCO,annual,kg,de78a39f-80d3-373f-880d-6e477e38804c +2018,Chubut,II.1.1,0.10398948000000001,TJ,CH4,3.9,kg/TJ,0.405558972,Gas Oil combustion consumption by freight transport,AR-U,SESCO,annual,kg,73f0fc6e-1e65-3215-b3b8-ef40566e986d +2018,Chubut,II.1.1,0.10398948000000001,TJ,N2O,3.9,kg/TJ,0.405558972,Gas Oil combustion consumption by freight transport,AR-U,SESCO,annual,kg,73f0fc6e-1e65-3215-b3b8-ef40566e986d +2018,Chubut,II.1.1,2.57990712,TJ,CO2,74100.0,kg/TJ,191171.117592,Gas Oil combustion consumption by freight transport,AR-U,SESCO,annual,kg,17080a63-b1bb-3ec6-937c-2037ba0c2d10 +2018,Chubut,II.1.1,2.57990712,TJ,CH4,3.9,kg/TJ,10.061637768,Gas Oil combustion consumption by freight transport,AR-U,SESCO,annual,kg,370c67cd-cd55-3083-93eb-76b60e8ea9f3 +2018,Chubut,II.1.1,2.57990712,TJ,N2O,3.9,kg/TJ,10.061637768,Gas Oil combustion consumption by freight transport,AR-U,SESCO,annual,kg,370c67cd-cd55-3083-93eb-76b60e8ea9f3 +2018,Buenos Aires,II.5.1,69.770713992,TJ,CO2,74100.0,kg/TJ,5170009.9068072,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,662bd11d-54ff-3c31-a3a4-5b54e87816f1 +2018,Buenos Aires,II.5.1,69.770713992,TJ,CH4,3.9,kg/TJ,272.1057845688,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,8195e1f4-6742-34bd-acfb-4c32aa5d23a6 +2018,Buenos Aires,II.5.1,69.770713992,TJ,N2O,3.9,kg/TJ,272.1057845688,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,8195e1f4-6742-34bd-acfb-4c32aa5d23a6 +2018,Corrientes,II.5.1,2.212400568,TJ,CO2,74100.0,kg/TJ,163938.88208880002,Gas Oil combustion consumption by agriculture machines,AR-W,SESCO,annual,kg,a8d7a7fe-bf89-31fc-9300-f979411bcc17 +2018,Corrientes,II.5.1,2.212400568,TJ,CH4,3.9,kg/TJ,8.6283622152,Gas Oil combustion consumption by agriculture machines,AR-W,SESCO,annual,kg,e4ed1d8d-1937-3e94-8838-38be9b1a44ee +2018,Corrientes,II.5.1,2.212400568,TJ,N2O,3.9,kg/TJ,8.6283622152,Gas Oil combustion consumption by agriculture machines,AR-W,SESCO,annual,kg,e4ed1d8d-1937-3e94-8838-38be9b1a44ee +2018,Córdoba,II.5.1,118.283290944,TJ,CO2,74100.0,kg/TJ,8764791.8589504,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,edef4a5e-1983-3c39-b503-89314ebe6532 +2018,Córdoba,II.5.1,118.283290944,TJ,CH4,3.9,kg/TJ,461.30483468159997,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,2c8d2e8a-0df4-3f3a-9fba-40574ef1601d +2018,Córdoba,II.5.1,118.283290944,TJ,N2O,3.9,kg/TJ,461.30483468159997,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,2c8d2e8a-0df4-3f3a-9fba-40574ef1601d +2018,Entre Rios,II.5.1,94.837531656,TJ,CO2,74100.0,kg/TJ,7027461.0957096,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,a9a13651-d932-38d1-8791-575f43050683 +2018,Entre Rios,II.5.1,94.837531656,TJ,CH4,3.9,kg/TJ,369.86637345839995,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,84de0141-5e6b-3740-bcde-0c74cb1493b7 +2018,Entre Rios,II.5.1,94.837531656,TJ,N2O,3.9,kg/TJ,369.86637345839995,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,84de0141-5e6b-3740-bcde-0c74cb1493b7 +2018,La Pampa,II.5.1,20.071526412,TJ,CO2,74100.0,kg/TJ,1487300.1071292001,Gas Oil combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,738f9a68-97b3-3d2a-906a-eb969850ae20 +2018,La Pampa,II.5.1,20.071526412,TJ,CH4,3.9,kg/TJ,78.2789530068,Gas Oil combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,61d1a987-5bc5-3796-a3d0-03d97e0ea4a4 +2018,La Pampa,II.5.1,20.071526412,TJ,N2O,3.9,kg/TJ,78.2789530068,Gas Oil combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,61d1a987-5bc5-3796-a3d0-03d97e0ea4a4 +2018,Santa Fe,II.5.1,92.64480926399999,TJ,CO2,74100.0,kg/TJ,6864980.366462399,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,7f1e692b-8982-3fef-a6d0-9b8f75aaf4d7 +2018,Santa Fe,II.5.1,92.64480926399999,TJ,CH4,3.9,kg/TJ,361.31475612959997,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,0392b918-4658-357b-836c-f4d074b6a833 +2018,Santa Fe,II.5.1,92.64480926399999,TJ,N2O,3.9,kg/TJ,361.31475612959997,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,0392b918-4658-357b-836c-f4d074b6a833 +2018,Santiago del Estero,II.5.1,29.305073447999998,TJ,CO2,74100.0,kg/TJ,2171505.9424968,Gas Oil combustion consumption by agriculture machines,AR-G,SESCO,annual,kg,341a2be2-5447-3d9f-9a3d-2d6018a5ce66 +2018,Santiago del Estero,II.5.1,29.305073447999998,TJ,CH4,3.9,kg/TJ,114.28978644719999,Gas Oil combustion consumption by agriculture machines,AR-G,SESCO,annual,kg,ce5846c9-f5ea-39bd-947d-c0a6d1fab464 +2018,Santiago del Estero,II.5.1,29.305073447999998,TJ,N2O,3.9,kg/TJ,114.28978644719999,Gas Oil combustion consumption by agriculture machines,AR-G,SESCO,annual,kg,ce5846c9-f5ea-39bd-947d-c0a6d1fab464 +2018,Tucuman,II.5.1,1.6384754400000001,TJ,CO2,74100.0,kg/TJ,121411.030104,Gas Oil combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,e44d2c02-d842-35f5-812b-4edf08bc3d25 +2018,Tucuman,II.5.1,1.6384754400000001,TJ,CH4,3.9,kg/TJ,6.390054216,Gas Oil combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,b39f1746-0937-312f-8ae5-33b8c9f6c418 +2018,Tucuman,II.5.1,1.6384754400000001,TJ,N2O,3.9,kg/TJ,6.390054216,Gas Oil combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,b39f1746-0937-312f-8ae5-33b8c9f6c418 +2018,Córdoba,II.5.1,2.4308579399999997,TJ,CO2,74100.0,kg/TJ,180126.57335399996,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,da609c03-a700-32b0-8edb-bb811340b6b6 +2018,Córdoba,II.5.1,2.4308579399999997,TJ,CH4,3.9,kg/TJ,9.480345965999998,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,792512eb-c034-329f-8e31-e8d52b8f6d16 +2018,Córdoba,II.5.1,2.4308579399999997,TJ,N2O,3.9,kg/TJ,9.480345965999998,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,792512eb-c034-329f-8e31-e8d52b8f6d16 +2018,Entre Rios,II.5.1,3.06909834,TJ,CO2,74100.0,kg/TJ,227420.186994,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,67859440-38df-384d-ab63-96b512351b68 +2018,Entre Rios,II.5.1,3.06909834,TJ,CH4,3.9,kg/TJ,11.969483526,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,7bedbd3c-fd28-34ad-b422-86d55f1a7992 +2018,Entre Rios,II.5.1,3.06909834,TJ,N2O,3.9,kg/TJ,11.969483526,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,7bedbd3c-fd28-34ad-b422-86d55f1a7992 +2018,La Pampa,II.5.1,3.9985815240000004,TJ,CO2,74100.0,kg/TJ,296294.89092840004,Gas Oil combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,e72db134-096f-389c-9053-d9da18ce9bb1 +2018,La Pampa,II.5.1,3.9985815240000004,TJ,CH4,3.9,kg/TJ,15.594467943600002,Gas Oil combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,702066bf-f968-3e17-8785-0513b37f6eaf +2018,La Pampa,II.5.1,3.9985815240000004,TJ,N2O,3.9,kg/TJ,15.594467943600002,Gas Oil combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,702066bf-f968-3e17-8785-0513b37f6eaf +2018,Santa Fe,II.5.1,3.7147902959999994,TJ,CO2,74100.0,kg/TJ,275265.96093359997,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,19c9e276-be4d-369e-a174-91bf00322c36 +2018,Santa Fe,II.5.1,3.7147902959999994,TJ,CH4,3.9,kg/TJ,14.487682154399998,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,ab40b81a-7a4b-3584-b3da-802c63f98c8a +2018,Santa Fe,II.5.1,3.7147902959999994,TJ,N2O,3.9,kg/TJ,14.487682154399998,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,ab40b81a-7a4b-3584-b3da-802c63f98c8a +2018,Buenos Aires,II.1.1,20.622229991999998,TJ,CO2,74100.0,kg/TJ,1528107.2424072,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,9f80882e-d3a3-32da-9491-975f611d5e94 +2018,Buenos Aires,II.1.1,20.622229991999998,TJ,CH4,3.9,kg/TJ,80.42669696879999,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,d2f1fc35-be79-3dbe-ac63-9f02000b598b +2018,Buenos Aires,II.1.1,20.622229991999998,TJ,N2O,3.9,kg/TJ,80.42669696879999,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,d2f1fc35-be79-3dbe-ac63-9f02000b598b +2018,Chaco,II.1.1,1.9647365639999999,TJ,CO2,74100.0,kg/TJ,145586.97939239998,Gas Oil combustion consumption by public passenger transport,AR-H,SESCO,annual,kg,131b0116-515d-3a33-ae7a-c3014fd7d83c +2018,Chaco,II.1.1,1.9647365639999999,TJ,CH4,3.9,kg/TJ,7.662472599599999,Gas Oil combustion consumption by public passenger transport,AR-H,SESCO,annual,kg,6c32fc78-508e-38e7-b6af-1667c1b74471 +2018,Chaco,II.1.1,1.9647365639999999,TJ,N2O,3.9,kg/TJ,7.662472599599999,Gas Oil combustion consumption by public passenger transport,AR-H,SESCO,annual,kg,6c32fc78-508e-38e7-b6af-1667c1b74471 +2018,Corrientes,II.1.1,6.457418016,TJ,CO2,74100.0,kg/TJ,478494.6749856,Gas Oil combustion consumption by public passenger transport,AR-W,SESCO,annual,kg,44bd3a4e-ad1f-3452-aeac-2a51dcf396c5 +2018,Corrientes,II.1.1,6.457418016,TJ,CH4,3.9,kg/TJ,25.1839302624,Gas Oil combustion consumption by public passenger transport,AR-W,SESCO,annual,kg,24410092-c403-3fbe-9fba-a315f6148dcf +2018,Corrientes,II.1.1,6.457418016,TJ,N2O,3.9,kg/TJ,25.1839302624,Gas Oil combustion consumption by public passenger transport,AR-W,SESCO,annual,kg,24410092-c403-3fbe-9fba-a315f6148dcf +2018,Córdoba,II.1.1,45.605361228,TJ,CO2,74100.0,kg/TJ,3379357.2669948,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,fc720e79-9bca-3e69-a76e-56a87491b1cf +2018,Córdoba,II.1.1,45.605361228,TJ,CH4,3.9,kg/TJ,177.86090878919998,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,67b4522a-3b5c-3088-900e-a30ac3655ad1 +2018,Córdoba,II.1.1,45.605361228,TJ,N2O,3.9,kg/TJ,177.86090878919998,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,67b4522a-3b5c-3088-900e-a30ac3655ad1 +2018,Entre Rios,II.1.1,16.619169588,TJ,CO2,74100.0,kg/TJ,1231480.4664707999,Gas Oil combustion consumption by public passenger transport,AR-E,SESCO,annual,kg,dcb06cb4-d6da-31a2-9e6e-f030cb6bdddc +2018,Entre Rios,II.1.1,16.619169588,TJ,CH4,3.9,kg/TJ,64.81476139319999,Gas Oil combustion consumption by public passenger transport,AR-E,SESCO,annual,kg,2d590843-78ed-3827-bf99-a6e07af21e1f +2018,Entre Rios,II.1.1,16.619169588,TJ,N2O,3.9,kg/TJ,64.81476139319999,Gas Oil combustion consumption by public passenger transport,AR-E,SESCO,annual,kg,2d590843-78ed-3827-bf99-a6e07af21e1f +2018,Jujuy,II.1.1,19.646245920000002,TJ,CO2,74100.0,kg/TJ,1455786.8226720002,Gas Oil combustion consumption by public passenger transport,AR-Y,SESCO,annual,kg,27c6116c-884c-3206-9dae-c4a8b80ede5b +2018,Jujuy,II.1.1,19.646245920000002,TJ,CH4,3.9,kg/TJ,76.620359088,Gas Oil combustion consumption by public passenger transport,AR-Y,SESCO,annual,kg,323c9f3a-3010-3f27-b198-4a547ae7a293 +2018,Jujuy,II.1.1,19.646245920000002,TJ,N2O,3.9,kg/TJ,76.620359088,Gas Oil combustion consumption by public passenger transport,AR-Y,SESCO,annual,kg,323c9f3a-3010-3f27-b198-4a547ae7a293 +2018,Salta,II.1.1,13.89133662,TJ,CO2,74100.0,kg/TJ,1029348.043542,Gas Oil combustion consumption by public passenger transport,AR-A,SESCO,annual,kg,5627dd27-6e8b-30ae-bd32-1fc3906672c6 +2018,Salta,II.1.1,13.89133662,TJ,CH4,3.9,kg/TJ,54.176212818,Gas Oil combustion consumption by public passenger transport,AR-A,SESCO,annual,kg,26b47f93-a5c0-33b2-8854-4faa5bd23a4d +2018,Salta,II.1.1,13.89133662,TJ,N2O,3.9,kg/TJ,54.176212818,Gas Oil combustion consumption by public passenger transport,AR-A,SESCO,annual,kg,26b47f93-a5c0-33b2-8854-4faa5bd23a4d +2018,Santa Fe,II.1.1,41.86300776,TJ,CO2,74100.0,kg/TJ,3102048.875016,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,a00b54c0-90ee-39f2-b971-61df1aec854c +2018,Santa Fe,II.1.1,41.86300776,TJ,CH4,3.9,kg/TJ,163.265730264,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,c9f1d04e-f924-3530-8db9-e5e6400e46fc +2018,Santa Fe,II.1.1,41.86300776,TJ,N2O,3.9,kg/TJ,163.265730264,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,c9f1d04e-f924-3530-8db9-e5e6400e46fc +2018,Santiago del Estero,II.1.1,18.941291879999998,TJ,CO2,74100.0,kg/TJ,1403549.728308,Gas Oil combustion consumption by public passenger transport,AR-G,SESCO,annual,kg,4a21298f-a638-3b32-a6e2-c9852b7b741a +2018,Santiago del Estero,II.1.1,18.941291879999998,TJ,CH4,3.9,kg/TJ,73.87103833199998,Gas Oil combustion consumption by public passenger transport,AR-G,SESCO,annual,kg,4b5da99b-6086-34ac-9721-89b1385b289b +2018,Santiago del Estero,II.1.1,18.941291879999998,TJ,N2O,3.9,kg/TJ,73.87103833199998,Gas Oil combustion consumption by public passenger transport,AR-G,SESCO,annual,kg,4b5da99b-6086-34ac-9721-89b1385b289b +2018,Tucuman,II.1.1,5.390523516000001,TJ,CO2,74100.0,kg/TJ,399437.7925356001,Gas Oil combustion consumption by public passenger transport,AR-T,SESCO,annual,kg,dc157680-778d-3104-9278-6dff0647e95d +2018,Tucuman,II.1.1,5.390523516000001,TJ,CH4,3.9,kg/TJ,21.0230417124,Gas Oil combustion consumption by public passenger transport,AR-T,SESCO,annual,kg,1c66adf7-767e-3e17-affe-62670c97c6c1 +2018,Tucuman,II.1.1,5.390523516000001,TJ,N2O,3.9,kg/TJ,21.0230417124,Gas Oil combustion consumption by public passenger transport,AR-T,SESCO,annual,kg,1c66adf7-767e-3e17-affe-62670c97c6c1 +2018,Buenos Aires,II.1.1,2.7527052,TJ,CO2,74100.0,kg/TJ,203975.45531999998,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,78feb110-c265-33af-91e8-c7c54d4feae5 +2018,Buenos Aires,II.1.1,2.7527052,TJ,CH4,3.9,kg/TJ,10.73555028,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,cda57bb8-2b0d-3362-953b-30e2850e4996 +2018,Buenos Aires,II.1.1,2.7527052,TJ,N2O,3.9,kg/TJ,10.73555028,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,cda57bb8-2b0d-3362-953b-30e2850e4996 +2018,Corrientes,II.1.1,1.287580476,TJ,CO2,74100.0,kg/TJ,95409.7132716,Gas Oil combustion consumption by public passenger transport,AR-W,SESCO,annual,kg,bb4cbc86-6d35-39c7-8871-b9c4e10619ac +2018,Corrientes,II.1.1,1.287580476,TJ,CH4,3.9,kg/TJ,5.0215638564,Gas Oil combustion consumption by public passenger transport,AR-W,SESCO,annual,kg,a633401c-de33-39be-ba43-c201db9dda79 +2018,Corrientes,II.1.1,1.287580476,TJ,N2O,3.9,kg/TJ,5.0215638564,Gas Oil combustion consumption by public passenger transport,AR-W,SESCO,annual,kg,a633401c-de33-39be-ba43-c201db9dda79 +2018,Córdoba,II.1.1,5.003573567999999,TJ,CO2,74100.0,kg/TJ,370764.80138879997,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,b4b0f800-c8c3-340d-a49e-d70e001ac18b +2018,Córdoba,II.1.1,5.003573567999999,TJ,CH4,3.9,kg/TJ,19.513936915199995,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,93130626-5bb3-3f78-8cae-1d0f534e20e3 +2018,Córdoba,II.1.1,5.003573567999999,TJ,N2O,3.9,kg/TJ,19.513936915199995,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,93130626-5bb3-3f78-8cae-1d0f534e20e3 +2018,Entre Rios,II.1.1,1.145343528,TJ,CO2,74100.0,kg/TJ,84869.95542479999,Gas Oil combustion consumption by public passenger transport,AR-E,SESCO,annual,kg,479f2808-8f62-3e70-bf1e-1da5ebae29db +2018,Entre Rios,II.1.1,1.145343528,TJ,CH4,3.9,kg/TJ,4.4668397592,Gas Oil combustion consumption by public passenger transport,AR-E,SESCO,annual,kg,cf7ad199-4de7-3993-b946-62fea143f9aa +2018,Entre Rios,II.1.1,1.145343528,TJ,N2O,3.9,kg/TJ,4.4668397592,Gas Oil combustion consumption by public passenger transport,AR-E,SESCO,annual,kg,cf7ad199-4de7-3993-b946-62fea143f9aa +2018,Jujuy,II.1.1,1.036145544,TJ,CO2,74100.0,kg/TJ,76778.3848104,Gas Oil combustion consumption by public passenger transport,AR-Y,SESCO,annual,kg,2d1b951b-017d-38d6-89b7-49638725f819 +2018,Jujuy,II.1.1,1.036145544,TJ,CH4,3.9,kg/TJ,4.0409676216,Gas Oil combustion consumption by public passenger transport,AR-Y,SESCO,annual,kg,1bc3f84c-fab5-3f84-9489-5a11f1b66754 +2018,Jujuy,II.1.1,1.036145544,TJ,N2O,3.9,kg/TJ,4.0409676216,Gas Oil combustion consumption by public passenger transport,AR-Y,SESCO,annual,kg,1bc3f84c-fab5-3f84-9489-5a11f1b66754 +2018,Santa Fe,II.1.1,7.9632861,TJ,CO2,74100.0,kg/TJ,590079.5000100001,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,ecccd319-bc69-3784-80c5-ff0ea1ad26f6 +2018,Santa Fe,II.1.1,7.9632861,TJ,CH4,3.9,kg/TJ,31.05681579,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,3482d095-d41e-3db8-af4d-d782e65bd0bb +2018,Santa Fe,II.1.1,7.9632861,TJ,N2O,3.9,kg/TJ,31.05681579,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,3482d095-d41e-3db8-af4d-d782e65bd0bb +2018,Santiago del Estero,II.1.1,2.1060416159999997,TJ,CO2,74100.0,kg/TJ,156057.6837456,Gas Oil combustion consumption by public passenger transport,AR-G,SESCO,annual,kg,a29d14da-e163-3a33-b2e0-ec751442eaf3 +2018,Santiago del Estero,II.1.1,2.1060416159999997,TJ,CH4,3.9,kg/TJ,8.213562302399998,Gas Oil combustion consumption by public passenger transport,AR-G,SESCO,annual,kg,e797a2fc-4a18-367c-a959-9f36561906ad +2018,Santiago del Estero,II.1.1,2.1060416159999997,TJ,N2O,3.9,kg/TJ,8.213562302399998,Gas Oil combustion consumption by public passenger transport,AR-G,SESCO,annual,kg,e797a2fc-4a18-367c-a959-9f36561906ad +2018,Tucuman,II.1.1,0.928702992,TJ,CO2,74100.0,kg/TJ,68816.89170719999,Gas Oil combustion consumption by public passenger transport,AR-T,SESCO,annual,kg,2b47b649-d913-393b-a41d-d1834b37c414 +2018,Tucuman,II.1.1,0.928702992,TJ,CH4,3.9,kg/TJ,3.6219416688,Gas Oil combustion consumption by public passenger transport,AR-T,SESCO,annual,kg,cf2661c6-3675-35ea-b75e-5df2fc0e310f +2018,Tucuman,II.1.1,0.928702992,TJ,N2O,3.9,kg/TJ,3.6219416688,Gas Oil combustion consumption by public passenger transport,AR-T,SESCO,annual,kg,cf2661c6-3675-35ea-b75e-5df2fc0e310f +2018,Buenos Aires,II.5.1,976.3597199999999,TJ,CO2,74100.0,kg/TJ,72348255.25199999,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,faa00e21-a8ed-3dcb-b5c5-df57a415232c +2018,Buenos Aires,II.5.1,976.3597199999999,TJ,CH4,3.9,kg/TJ,3807.8029079999997,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,e505ef51-825a-39d7-afb0-3109cb47574b +2018,Buenos Aires,II.5.1,976.3597199999999,TJ,N2O,3.9,kg/TJ,3807.8029079999997,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,e505ef51-825a-39d7-afb0-3109cb47574b +2018,Chaco,II.5.1,188.76312,TJ,CO2,74100.0,kg/TJ,13987347.192,Gas Oil combustion consumption by agriculture machines,AR-H,SESCO,annual,kg,0be4b689-13eb-3757-9037-0874500b7c14 +2018,Chaco,II.5.1,188.76312,TJ,CH4,3.9,kg/TJ,736.176168,Gas Oil combustion consumption by agriculture machines,AR-H,SESCO,annual,kg,e753406c-2200-36c1-a65f-2496a93f5b82 +2018,Chaco,II.5.1,188.76312,TJ,N2O,3.9,kg/TJ,736.176168,Gas Oil combustion consumption by agriculture machines,AR-H,SESCO,annual,kg,e753406c-2200-36c1-a65f-2496a93f5b82 +2018,Corrientes,II.5.1,65.88288,TJ,CO2,74100.0,kg/TJ,4881921.408,Gas Oil combustion consumption by agriculture machines,AR-W,SESCO,annual,kg,80f37125-5042-3412-a450-be55389608b6 +2018,Corrientes,II.5.1,65.88288,TJ,CH4,3.9,kg/TJ,256.94323199999997,Gas Oil combustion consumption by agriculture machines,AR-W,SESCO,annual,kg,4b61b60c-3cc8-3c08-9ba6-d5eb77c381e1 +2018,Corrientes,II.5.1,65.88288,TJ,N2O,3.9,kg/TJ,256.94323199999997,Gas Oil combustion consumption by agriculture machines,AR-W,SESCO,annual,kg,4b61b60c-3cc8-3c08-9ba6-d5eb77c381e1 +2018,Córdoba,II.5.1,871.7923199999999,TJ,CO2,74100.0,kg/TJ,64599810.91199999,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,7db4de40-872c-340c-8c6a-3595c075ac26 +2018,Córdoba,II.5.1,871.7923199999999,TJ,CH4,3.9,kg/TJ,3399.9900479999997,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,091184cb-a1e4-3878-a8be-b11d9ab6f7a0 +2018,Córdoba,II.5.1,871.7923199999999,TJ,N2O,3.9,kg/TJ,3399.9900479999997,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,091184cb-a1e4-3878-a8be-b11d9ab6f7a0 +2018,Entre Rios,II.5.1,60.356519999999996,TJ,CO2,74100.0,kg/TJ,4472418.131999999,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,0bf037d7-0299-30e9-baab-d19689b188e4 +2018,Entre Rios,II.5.1,60.356519999999996,TJ,CH4,3.9,kg/TJ,235.39042799999999,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,6f6f14f2-46f9-358e-bdd5-0c44d2655648 +2018,Entre Rios,II.5.1,60.356519999999996,TJ,N2O,3.9,kg/TJ,235.39042799999999,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,6f6f14f2-46f9-358e-bdd5-0c44d2655648 +2018,Mendoza,II.5.1,242.25683999999998,TJ,CO2,74100.0,kg/TJ,17951231.844,Gas Oil combustion consumption by agriculture machines,AR-M,SESCO,annual,kg,cd805883-98c7-3571-9a07-f25ceb06e603 +2018,Mendoza,II.5.1,242.25683999999998,TJ,CH4,3.9,kg/TJ,944.8016759999999,Gas Oil combustion consumption by agriculture machines,AR-M,SESCO,annual,kg,b1599e20-3f08-3659-97c8-2dfcd3ea380a +2018,Mendoza,II.5.1,242.25683999999998,TJ,N2O,3.9,kg/TJ,944.8016759999999,Gas Oil combustion consumption by agriculture machines,AR-M,SESCO,annual,kg,b1599e20-3f08-3659-97c8-2dfcd3ea380a +2018,Santa Fe,II.5.1,1243.7921999999999,TJ,CO2,74100.0,kg/TJ,92165002.02,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,46e81395-e04a-3e9b-9fcb-59efd6420654 +2018,Santa Fe,II.5.1,1243.7921999999999,TJ,CH4,3.9,kg/TJ,4850.78958,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,24e5a7aa-979b-3c67-a07a-4487db036c58 +2018,Santa Fe,II.5.1,1243.7921999999999,TJ,N2O,3.9,kg/TJ,4850.78958,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,24e5a7aa-979b-3c67-a07a-4487db036c58 +2018,Tucuman,II.5.1,86.54352,TJ,CO2,74100.0,kg/TJ,6412874.832,Gas Oil combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,09e1a690-26ff-30dc-bcdc-65f772ae1f1d +2018,Tucuman,II.5.1,86.54352,TJ,CH4,3.9,kg/TJ,337.519728,Gas Oil combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,5d79c1b9-b1de-3d3e-85f6-3bb57fe2e841 +2018,Tucuman,II.5.1,86.54352,TJ,N2O,3.9,kg/TJ,337.519728,Gas Oil combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,5d79c1b9-b1de-3d3e-85f6-3bb57fe2e841 +2018,Buenos Aires,II.5.1,40.23768,TJ,CO2,74100.0,kg/TJ,2981612.088,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,0503953c-dbfc-3295-99a7-1c0b0a74998f +2018,Buenos Aires,II.5.1,40.23768,TJ,CH4,3.9,kg/TJ,156.926952,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,0bf16a5e-b30b-35b4-bc4f-fe1ed0029788 +2018,Buenos Aires,II.5.1,40.23768,TJ,N2O,3.9,kg/TJ,156.926952,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,0bf16a5e-b30b-35b4-bc4f-fe1ed0029788 +2018,Chaco,II.5.1,52.33788,TJ,CO2,74100.0,kg/TJ,3878236.908,Gas Oil combustion consumption by agriculture machines,AR-H,SESCO,annual,kg,3f628eda-42e9-323e-9305-f3cdaecc42dd +2018,Chaco,II.5.1,52.33788,TJ,CH4,3.9,kg/TJ,204.117732,Gas Oil combustion consumption by agriculture machines,AR-H,SESCO,annual,kg,eb765062-9e34-3170-8d99-6b0da8914569 +2018,Chaco,II.5.1,52.33788,TJ,N2O,3.9,kg/TJ,204.117732,Gas Oil combustion consumption by agriculture machines,AR-H,SESCO,annual,kg,eb765062-9e34-3170-8d99-6b0da8914569 +2018,Corrientes,II.5.1,21.672,TJ,CO2,74100.0,kg/TJ,1605895.2,Gas Oil combustion consumption by agriculture machines,AR-W,SESCO,annual,kg,81bbb153-432d-3f9a-9c77-a52ccd964fde +2018,Corrientes,II.5.1,21.672,TJ,CH4,3.9,kg/TJ,84.5208,Gas Oil combustion consumption by agriculture machines,AR-W,SESCO,annual,kg,23d70b2c-fc53-3086-b7f8-bc4ed86dac53 +2018,Corrientes,II.5.1,21.672,TJ,N2O,3.9,kg/TJ,84.5208,Gas Oil combustion consumption by agriculture machines,AR-W,SESCO,annual,kg,23d70b2c-fc53-3086-b7f8-bc4ed86dac53 +2018,Córdoba,II.5.1,55.48032,TJ,CO2,74100.0,kg/TJ,4111091.712,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,da751f5b-d64e-39d8-b553-ecb63b5b4e53 +2018,Córdoba,II.5.1,55.48032,TJ,CH4,3.9,kg/TJ,216.373248,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,85a9fc2a-f876-34b5-8431-0c93ddbe735e +2018,Córdoba,II.5.1,55.48032,TJ,N2O,3.9,kg/TJ,216.373248,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,85a9fc2a-f876-34b5-8431-0c93ddbe735e +2018,Mendoza,II.5.1,80.15028,TJ,CO2,74100.0,kg/TJ,5939135.748,Gas Oil combustion consumption by agriculture machines,AR-M,SESCO,annual,kg,069ad12a-833e-3622-a190-358ecf869900 +2018,Mendoza,II.5.1,80.15028,TJ,CH4,3.9,kg/TJ,312.58609199999995,Gas Oil combustion consumption by agriculture machines,AR-M,SESCO,annual,kg,7f43633a-9cba-3c59-8ed7-49e2ad87a21b +2018,Mendoza,II.5.1,80.15028,TJ,N2O,3.9,kg/TJ,312.58609199999995,Gas Oil combustion consumption by agriculture machines,AR-M,SESCO,annual,kg,7f43633a-9cba-3c59-8ed7-49e2ad87a21b +2018,Santa Fe,II.5.1,57.2502,TJ,CO2,74100.0,kg/TJ,4242239.82,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,5d2975c2-11f6-3890-8119-7f065c7096e4 +2018,Santa Fe,II.5.1,57.2502,TJ,CH4,3.9,kg/TJ,223.27578,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,cf9ce32c-695d-363d-8291-8189a910d337 +2018,Santa Fe,II.5.1,57.2502,TJ,N2O,3.9,kg/TJ,223.27578,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,cf9ce32c-695d-363d-8291-8189a910d337 +2018,Tucuman,II.5.1,21.81648,TJ,CO2,74100.0,kg/TJ,1616601.1679999998,Gas Oil combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,37e804dc-a7e2-3db3-8af3-13411c3da411 +2018,Tucuman,II.5.1,21.81648,TJ,CH4,3.9,kg/TJ,85.084272,Gas Oil combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,eb4ce6d6-a309-3a27-b4a8-d07a7b965d3f +2018,Tucuman,II.5.1,21.81648,TJ,N2O,3.9,kg/TJ,85.084272,Gas Oil combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,eb4ce6d6-a309-3a27-b4a8-d07a7b965d3f +2018,Buenos Aires,II.5.1,14.048649999999999,TJ,CO2,73300.0,kg/TJ,1029766.0449999999,Naphtha combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,23540ab7-dec6-37d7-8194-44faa06ca21b +2018,Buenos Aires,II.5.1,14.048649999999999,TJ,CH4,0.5,kg/TJ,7.024324999999999,Naphtha combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,55b4db4a-6cdf-3c4a-a85b-295685881323 +2018,Buenos Aires,II.5.1,14.048649999999999,TJ,N2O,2.0,kg/TJ,28.097299999999997,Naphtha combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,f3e82cae-e5bc-364f-ab78-903cf52b50bf +2018,Córdoba,II.5.1,5.68799,TJ,CO2,73300.0,kg/TJ,416929.667,Naphtha combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,ca5b24c9-a609-3baf-8d65-182815ca2400 +2018,Córdoba,II.5.1,5.68799,TJ,CH4,0.5,kg/TJ,2.843995,Naphtha combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,20c2d271-9c4c-3ed4-8ca5-7f99b03534aa +2018,Córdoba,II.5.1,5.68799,TJ,N2O,2.0,kg/TJ,11.37598,Naphtha combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,6bf6fcac-20f0-3c01-8ebd-1433f0427848 +2018,Santa Fe,II.5.1,31.352475,TJ,CO2,73300.0,kg/TJ,2298136.4175,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,b42ed581-09e7-3e0b-a319-5496cb345e36 +2018,Santa Fe,II.5.1,31.352475,TJ,CH4,0.5,kg/TJ,15.6762375,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,adec9bb1-4595-3a87-b039-2fa77fc220e3 +2018,Santa Fe,II.5.1,31.352475,TJ,N2O,2.0,kg/TJ,62.70495,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,8fc8c276-279a-33d6-a83c-8308d33127a7 +2018,Tucuman,II.5.1,13.466145,TJ,CO2,73300.0,kg/TJ,987068.4284999999,Naphtha combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,27741f9e-a499-304c-8094-1061bc1053ec +2018,Tucuman,II.5.1,13.466145,TJ,CH4,0.5,kg/TJ,6.7330725,Naphtha combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,85416dcf-d9c4-3db5-8dca-5098d84ade1f +2018,Tucuman,II.5.1,13.466145,TJ,N2O,2.0,kg/TJ,26.93229,Naphtha combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,0f84ac0d-acbc-3d1d-936d-f454fa7dda6b +2018,Buenos Aires,II.5.1,2.6041399999999997,TJ,CO2,73300.0,kg/TJ,190883.46199999997,Naphtha combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,f860fbe5-cf27-36bd-92ca-9c493efc04c2 +2018,Buenos Aires,II.5.1,2.6041399999999997,TJ,CH4,0.5,kg/TJ,1.3020699999999998,Naphtha combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,614df1b9-db16-3d8b-ae23-37b35c7c80b5 +2018,Buenos Aires,II.5.1,2.6041399999999997,TJ,N2O,2.0,kg/TJ,5.208279999999999,Naphtha combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,a8580636-70b4-307e-9f2b-0cc900c635e4 +2018,Córdoba,II.5.1,2.5013449999999997,TJ,CO2,73300.0,kg/TJ,183348.58849999998,Naphtha combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,e2099bcf-c629-3687-94a8-58b9d075f2f5 +2018,Córdoba,II.5.1,2.5013449999999997,TJ,CH4,0.5,kg/TJ,1.2506724999999999,Naphtha combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,749a4d01-5e50-33dc-b69c-3030e4fa1811 +2018,Córdoba,II.5.1,2.5013449999999997,TJ,N2O,2.0,kg/TJ,5.002689999999999,Naphtha combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,5ceb6be1-f743-3c8e-aeaa-7f9412d7ce4d +2018,Santa Fe,II.5.1,10.005379999999999,TJ,CO2,73300.0,kg/TJ,733394.3539999999,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,4d5ba5e1-b920-3106-acb8-7cf0e61273e4 +2018,Santa Fe,II.5.1,10.005379999999999,TJ,CH4,0.5,kg/TJ,5.002689999999999,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,e892f5eb-4968-3acc-9e56-5843381d2fd3 +2018,Santa Fe,II.5.1,10.005379999999999,TJ,N2O,2.0,kg/TJ,20.010759999999998,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,386b6a7a-28ca-36e9-85ce-8867b328d68f +2018,Tucuman,II.5.1,2.6041399999999997,TJ,CO2,73300.0,kg/TJ,190883.46199999997,Naphtha combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,f54542f0-663a-3fd1-a65d-ab830d720613 +2018,Tucuman,II.5.1,2.6041399999999997,TJ,CH4,0.5,kg/TJ,1.3020699999999998,Naphtha combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,d20905a3-6a3b-3d0c-a74b-dba2028f0404 +2018,Tucuman,II.5.1,2.6041399999999997,TJ,N2O,2.0,kg/TJ,5.208279999999999,Naphtha combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,9ddf500f-7d82-34f9-b0c8-85aa22121eb1 +2018,Buenos Aires,II.2.1,176.69904,TJ,CO2,74100.0,kg/TJ,13093398.864,Gas Oil combustion consumption by railway transport,AR-B,SESCO,annual,kg,e151d762-0f7a-3d04-9f66-9b5f9e7f32a2 +2018,Buenos Aires,II.2.1,176.69904,TJ,CH4,3.9,kg/TJ,689.126256,Gas Oil combustion consumption by railway transport,AR-B,SESCO,annual,kg,6481aae7-bbae-3e38-a764-cae9fd1b6326 +2018,Buenos Aires,II.2.1,176.69904,TJ,N2O,3.9,kg/TJ,689.126256,Gas Oil combustion consumption by railway transport,AR-B,SESCO,annual,kg,6481aae7-bbae-3e38-a764-cae9fd1b6326 +2018,Capital Federal,II.2.1,2.709,TJ,CO2,74100.0,kg/TJ,200736.9,Gas Oil combustion consumption by railway transport,AR-C,SESCO,annual,kg,23a5ada7-6b1a-31a0-91f7-1be76e2da253 +2018,Capital Federal,II.2.1,2.709,TJ,CH4,3.9,kg/TJ,10.5651,Gas Oil combustion consumption by railway transport,AR-C,SESCO,annual,kg,3b642f3e-23d3-3976-8709-314b4c84e4ab +2018,Capital Federal,II.2.1,2.709,TJ,N2O,3.9,kg/TJ,10.5651,Gas Oil combustion consumption by railway transport,AR-C,SESCO,annual,kg,3b642f3e-23d3-3976-8709-314b4c84e4ab +2018,La Pampa,II.2.1,52.51848,TJ,CO2,74100.0,kg/TJ,3891619.368,Gas Oil combustion consumption by railway transport,AR-L,SESCO,annual,kg,40143310-8ed6-320a-a34d-b389628f708e +2018,La Pampa,II.2.1,52.51848,TJ,CH4,3.9,kg/TJ,204.822072,Gas Oil combustion consumption by railway transport,AR-L,SESCO,annual,kg,6ca24daf-e5a8-346a-9cc5-bae5180ea3cb +2018,La Pampa,II.2.1,52.51848,TJ,N2O,3.9,kg/TJ,204.822072,Gas Oil combustion consumption by railway transport,AR-L,SESCO,annual,kg,6ca24daf-e5a8-346a-9cc5-bae5180ea3cb +2018,Santa Fe,II.2.1,150.40367999999998,TJ,CO2,74100.0,kg/TJ,11144912.688,Gas Oil combustion consumption by railway transport,AR-S,SESCO,annual,kg,eae535ee-37bd-38da-be56-fad299746cca +2018,Santa Fe,II.2.1,150.40367999999998,TJ,CH4,3.9,kg/TJ,586.5743519999999,Gas Oil combustion consumption by railway transport,AR-S,SESCO,annual,kg,dbb2e538-def4-34a1-88a3-313459a213c2 +2018,Santa Fe,II.2.1,150.40367999999998,TJ,N2O,3.9,kg/TJ,586.5743519999999,Gas Oil combustion consumption by railway transport,AR-S,SESCO,annual,kg,dbb2e538-def4-34a1-88a3-313459a213c2 +2018,Santiago del Estero,II.2.1,32.507999999999996,TJ,CO2,74100.0,kg/TJ,2408842.8,Gas Oil combustion consumption by railway transport,AR-G,SESCO,annual,kg,4615657c-0a0c-31a9-93c8-67d3ac2b4b17 +2018,Santiago del Estero,II.2.1,32.507999999999996,TJ,CH4,3.9,kg/TJ,126.78119999999998,Gas Oil combustion consumption by railway transport,AR-G,SESCO,annual,kg,0cbbaa25-9894-3b09-8a5f-61fe24cd0806 +2018,Santiago del Estero,II.2.1,32.507999999999996,TJ,N2O,3.9,kg/TJ,126.78119999999998,Gas Oil combustion consumption by railway transport,AR-G,SESCO,annual,kg,0cbbaa25-9894-3b09-8a5f-61fe24cd0806 +2018,Tucuman,II.2.1,13.0032,TJ,CO2,74100.0,kg/TJ,963537.12,Gas Oil combustion consumption by railway transport,AR-T,SESCO,annual,kg,1ad13d8a-2ad6-32a8-9257-8ecb63ab58fc +2018,Tucuman,II.2.1,13.0032,TJ,CH4,3.9,kg/TJ,50.71248,Gas Oil combustion consumption by railway transport,AR-T,SESCO,annual,kg,5e98c047-20a4-3965-9221-1e077fe86717 +2018,Tucuman,II.2.1,13.0032,TJ,N2O,3.9,kg/TJ,50.71248,Gas Oil combustion consumption by railway transport,AR-T,SESCO,annual,kg,5e98c047-20a4-3965-9221-1e077fe86717 +2018,Buenos Aires,II.1.1,1909.55604,TJ,CO2,74100.0,kg/TJ,141498102.56399998,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,c2f6e218-24af-3cb7-b373-ddcc1a2957f5 +2018,Buenos Aires,II.1.1,1909.55604,TJ,CH4,3.9,kg/TJ,7447.268556,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,3acda01d-d96e-310c-ba94-a39dbfc464b8 +2018,Buenos Aires,II.1.1,1909.55604,TJ,N2O,3.9,kg/TJ,7447.268556,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,3acda01d-d96e-310c-ba94-a39dbfc464b8 +2018,Capital Federal,II.1.1,335.013,TJ,CO2,74100.0,kg/TJ,24824463.299999997,Gas Oil combustion consumption by freight transport,AR-C,SESCO,annual,kg,3b0c1c2f-1787-3ed0-a19f-738d05ab56a8 +2018,Capital Federal,II.1.1,335.013,TJ,CH4,3.9,kg/TJ,1306.5506999999998,Gas Oil combustion consumption by freight transport,AR-C,SESCO,annual,kg,5e8d07ab-2a5d-3631-9694-dd25c63dc16c +2018,Capital Federal,II.1.1,335.013,TJ,N2O,3.9,kg/TJ,1306.5506999999998,Gas Oil combustion consumption by freight transport,AR-C,SESCO,annual,kg,5e8d07ab-2a5d-3631-9694-dd25c63dc16c +2018,Catamarca,II.1.1,20.5884,TJ,CO2,74100.0,kg/TJ,1525600.44,Gas Oil combustion consumption by freight transport,AR-K,SESCO,annual,kg,95878816-91d2-33cf-ad28-917f098c9741 +2018,Catamarca,II.1.1,20.5884,TJ,CH4,3.9,kg/TJ,80.29476,Gas Oil combustion consumption by freight transport,AR-K,SESCO,annual,kg,afb43165-3dd2-3dd5-aaed-26521ff15991 +2018,Catamarca,II.1.1,20.5884,TJ,N2O,3.9,kg/TJ,80.29476,Gas Oil combustion consumption by freight transport,AR-K,SESCO,annual,kg,afb43165-3dd2-3dd5-aaed-26521ff15991 +2018,Chaco,II.1.1,19.39644,TJ,CO2,74100.0,kg/TJ,1437276.204,Gas Oil combustion consumption by freight transport,AR-H,SESCO,annual,kg,3ac82718-165e-36fe-b44d-fc9003bcdca7 +2018,Chaco,II.1.1,19.39644,TJ,CH4,3.9,kg/TJ,75.64611599999999,Gas Oil combustion consumption by freight transport,AR-H,SESCO,annual,kg,d5ff4c52-c2c4-3168-88f6-85039a9945f0 +2018,Chaco,II.1.1,19.39644,TJ,N2O,3.9,kg/TJ,75.64611599999999,Gas Oil combustion consumption by freight transport,AR-H,SESCO,annual,kg,d5ff4c52-c2c4-3168-88f6-85039a9945f0 +2018,Chubut,II.1.1,19.46868,TJ,CO2,74100.0,kg/TJ,1442629.1879999998,Gas Oil combustion consumption by freight transport,AR-U,SESCO,annual,kg,211451a8-497b-3c02-9507-cc1fc0175b7d +2018,Chubut,II.1.1,19.46868,TJ,CH4,3.9,kg/TJ,75.927852,Gas Oil combustion consumption by freight transport,AR-U,SESCO,annual,kg,c4a5b13f-ba3b-3173-a170-43c5d9815f38 +2018,Chubut,II.1.1,19.46868,TJ,N2O,3.9,kg/TJ,75.927852,Gas Oil combustion consumption by freight transport,AR-U,SESCO,annual,kg,c4a5b13f-ba3b-3173-a170-43c5d9815f38 +2018,Corrientes,II.1.1,54.25224,TJ,CO2,74100.0,kg/TJ,4020090.984,Gas Oil combustion consumption by freight transport,AR-W,SESCO,annual,kg,7bfce643-cb23-3c49-ab25-384e871af422 +2018,Corrientes,II.1.1,54.25224,TJ,CH4,3.9,kg/TJ,211.583736,Gas Oil combustion consumption by freight transport,AR-W,SESCO,annual,kg,1526e0d4-990c-3703-9dcd-1e1b3573413d +2018,Corrientes,II.1.1,54.25224,TJ,N2O,3.9,kg/TJ,211.583736,Gas Oil combustion consumption by freight transport,AR-W,SESCO,annual,kg,1526e0d4-990c-3703-9dcd-1e1b3573413d +2018,Córdoba,II.1.1,303.98591999999996,TJ,CO2,74100.0,kg/TJ,22525356.672,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,7356334a-79b1-30df-9be8-c97c0a5f9518 +2018,Córdoba,II.1.1,303.98591999999996,TJ,CH4,3.9,kg/TJ,1185.5450879999999,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,c292a48f-e83e-316d-b8e7-36c2cb4c9a73 +2018,Córdoba,II.1.1,303.98591999999996,TJ,N2O,3.9,kg/TJ,1185.5450879999999,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,c292a48f-e83e-316d-b8e7-36c2cb4c9a73 +2018,Entre Rios,II.1.1,218.74272,TJ,CO2,74100.0,kg/TJ,16208835.552,Gas Oil combustion consumption by freight transport,AR-E,SESCO,annual,kg,72228221-36db-39c0-aa33-7731e3e36216 +2018,Entre Rios,II.1.1,218.74272,TJ,CH4,3.9,kg/TJ,853.096608,Gas Oil combustion consumption by freight transport,AR-E,SESCO,annual,kg,8a946cc8-c319-3e23-88ea-e42d5e580a5c +2018,Entre Rios,II.1.1,218.74272,TJ,N2O,3.9,kg/TJ,853.096608,Gas Oil combustion consumption by freight transport,AR-E,SESCO,annual,kg,8a946cc8-c319-3e23-88ea-e42d5e580a5c +2018,Formosa,II.1.1,8.88552,TJ,CO2,74100.0,kg/TJ,658417.032,Gas Oil combustion consumption by freight transport,AR-P,SESCO,annual,kg,313db581-de14-3488-9009-220e27f90bd8 +2018,Formosa,II.1.1,8.88552,TJ,CH4,3.9,kg/TJ,34.653527999999994,Gas Oil combustion consumption by freight transport,AR-P,SESCO,annual,kg,66d1fb7b-449d-3754-b1d3-09934ee48e41 +2018,Formosa,II.1.1,8.88552,TJ,N2O,3.9,kg/TJ,34.653527999999994,Gas Oil combustion consumption by freight transport,AR-P,SESCO,annual,kg,66d1fb7b-449d-3754-b1d3-09934ee48e41 +2018,Jujuy,II.1.1,6.42936,TJ,CO2,74100.0,kg/TJ,476415.576,Gas Oil combustion consumption by freight transport,AR-Y,SESCO,annual,kg,4d9cc7c5-89e3-39fd-843b-ef6e8057753d +2018,Jujuy,II.1.1,6.42936,TJ,CH4,3.9,kg/TJ,25.074504,Gas Oil combustion consumption by freight transport,AR-Y,SESCO,annual,kg,a86cd8e2-7530-3190-a599-a8f5ae062bb0 +2018,Jujuy,II.1.1,6.42936,TJ,N2O,3.9,kg/TJ,25.074504,Gas Oil combustion consumption by freight transport,AR-Y,SESCO,annual,kg,a86cd8e2-7530-3190-a599-a8f5ae062bb0 +2018,La Pampa,II.1.1,15.856679999999999,TJ,CO2,74100.0,kg/TJ,1174979.988,Gas Oil combustion consumption by freight transport,AR-L,SESCO,annual,kg,955e3523-fce1-3e54-ab54-88093788d4bd +2018,La Pampa,II.1.1,15.856679999999999,TJ,CH4,3.9,kg/TJ,61.841052,Gas Oil combustion consumption by freight transport,AR-L,SESCO,annual,kg,fcb035e7-f289-388a-91c2-5df4c0bc3c60 +2018,La Pampa,II.1.1,15.856679999999999,TJ,N2O,3.9,kg/TJ,61.841052,Gas Oil combustion consumption by freight transport,AR-L,SESCO,annual,kg,fcb035e7-f289-388a-91c2-5df4c0bc3c60 +2018,La Rioja,II.1.1,4.6956,TJ,CO2,74100.0,kg/TJ,347943.95999999996,Gas Oil combustion consumption by freight transport,AR-F,SESCO,annual,kg,69d67ee5-09e8-3421-a860-f4a908aa814a +2018,La Rioja,II.1.1,4.6956,TJ,CH4,3.9,kg/TJ,18.312839999999998,Gas Oil combustion consumption by freight transport,AR-F,SESCO,annual,kg,3cdbea87-73bf-30c0-a24f-60c1b59d2f0a +2018,La Rioja,II.1.1,4.6956,TJ,N2O,3.9,kg/TJ,18.312839999999998,Gas Oil combustion consumption by freight transport,AR-F,SESCO,annual,kg,3cdbea87-73bf-30c0-a24f-60c1b59d2f0a +2018,Mendoza,II.1.1,106.9152,TJ,CO2,74100.0,kg/TJ,7922416.32,Gas Oil combustion consumption by freight transport,AR-M,SESCO,annual,kg,fa9a00a1-f621-3f69-a8d5-7b5a6584e096 +2018,Mendoza,II.1.1,106.9152,TJ,CH4,3.9,kg/TJ,416.96927999999997,Gas Oil combustion consumption by freight transport,AR-M,SESCO,annual,kg,0e4a556c-6570-3b7b-9c6c-795fd298238c +2018,Mendoza,II.1.1,106.9152,TJ,N2O,3.9,kg/TJ,416.96927999999997,Gas Oil combustion consumption by freight transport,AR-M,SESCO,annual,kg,0e4a556c-6570-3b7b-9c6c-795fd298238c +2018,Misiones,II.1.1,57.539159999999995,TJ,CO2,74100.0,kg/TJ,4263651.756,Gas Oil combustion consumption by freight transport,AR-N,SESCO,annual,kg,43844cab-8414-3146-b66b-dcf3692d5e4c +2018,Misiones,II.1.1,57.539159999999995,TJ,CH4,3.9,kg/TJ,224.40272399999998,Gas Oil combustion consumption by freight transport,AR-N,SESCO,annual,kg,4d89f0bd-4531-31a6-b2c5-7ba7ab828081 +2018,Misiones,II.1.1,57.539159999999995,TJ,N2O,3.9,kg/TJ,224.40272399999998,Gas Oil combustion consumption by freight transport,AR-N,SESCO,annual,kg,4d89f0bd-4531-31a6-b2c5-7ba7ab828081 +2018,Neuquén,II.1.1,2.13108,TJ,CO2,74100.0,kg/TJ,157913.028,Gas Oil combustion consumption by freight transport,AR-Q,SESCO,annual,kg,890ead8d-e00f-32d2-bdea-78de8fa2d831 +2018,Neuquén,II.1.1,2.13108,TJ,CH4,3.9,kg/TJ,8.311212,Gas Oil combustion consumption by freight transport,AR-Q,SESCO,annual,kg,b54f1d96-6db5-395c-b249-ff5e9f96c657 +2018,Neuquén,II.1.1,2.13108,TJ,N2O,3.9,kg/TJ,8.311212,Gas Oil combustion consumption by freight transport,AR-Q,SESCO,annual,kg,b54f1d96-6db5-395c-b249-ff5e9f96c657 +2018,Rio Negro,II.1.1,59.489639999999994,TJ,CO2,74100.0,kg/TJ,4408182.324,Gas Oil combustion consumption by freight transport,AR-R,SESCO,annual,kg,8086c004-a3c8-3210-a807-e33aea4b4761 +2018,Rio Negro,II.1.1,59.489639999999994,TJ,CH4,3.9,kg/TJ,232.00959599999996,Gas Oil combustion consumption by freight transport,AR-R,SESCO,annual,kg,932cf44b-bcea-33fd-9649-4ef0aca63bc0 +2018,Rio Negro,II.1.1,59.489639999999994,TJ,N2O,3.9,kg/TJ,232.00959599999996,Gas Oil combustion consumption by freight transport,AR-R,SESCO,annual,kg,932cf44b-bcea-33fd-9649-4ef0aca63bc0 +2018,Salta,II.1.1,21.63588,TJ,CO2,74100.0,kg/TJ,1603218.708,Gas Oil combustion consumption by freight transport,AR-A,SESCO,annual,kg,86448846-538d-3265-9903-7804ac6897e7 +2018,Salta,II.1.1,21.63588,TJ,CH4,3.9,kg/TJ,84.379932,Gas Oil combustion consumption by freight transport,AR-A,SESCO,annual,kg,5892e1a4-df95-3f70-bb1f-569643fdcfa0 +2018,Salta,II.1.1,21.63588,TJ,N2O,3.9,kg/TJ,84.379932,Gas Oil combustion consumption by freight transport,AR-A,SESCO,annual,kg,5892e1a4-df95-3f70-bb1f-569643fdcfa0 +2018,San Juan,II.1.1,6.57384,TJ,CO2,74100.0,kg/TJ,487121.544,Gas Oil combustion consumption by freight transport,AR-J,SESCO,annual,kg,f90e320a-dacd-3a3f-82fb-080a6a8ad259 +2018,San Juan,II.1.1,6.57384,TJ,CH4,3.9,kg/TJ,25.637976,Gas Oil combustion consumption by freight transport,AR-J,SESCO,annual,kg,6f884b76-f873-3a4d-b49a-5ec973b538cf +2018,San Juan,II.1.1,6.57384,TJ,N2O,3.9,kg/TJ,25.637976,Gas Oil combustion consumption by freight transport,AR-J,SESCO,annual,kg,6f884b76-f873-3a4d-b49a-5ec973b538cf +2018,San Luis,II.1.1,49.8456,TJ,CO2,74100.0,kg/TJ,3693558.96,Gas Oil combustion consumption by freight transport,AR-D,SESCO,annual,kg,782d70a9-a077-3828-ad32-4ad3b84014c1 +2018,San Luis,II.1.1,49.8456,TJ,CH4,3.9,kg/TJ,194.39783999999997,Gas Oil combustion consumption by freight transport,AR-D,SESCO,annual,kg,7ecb9bc9-2cef-30c5-a0c8-571520f1b548 +2018,San Luis,II.1.1,49.8456,TJ,N2O,3.9,kg/TJ,194.39783999999997,Gas Oil combustion consumption by freight transport,AR-D,SESCO,annual,kg,7ecb9bc9-2cef-30c5-a0c8-571520f1b548 +2018,Santa Fe,II.1.1,547.3986,TJ,CO2,74100.0,kg/TJ,40562236.26,Gas Oil combustion consumption by freight transport,AR-S,SESCO,annual,kg,78bcd87e-c8c9-310a-9f03-81b585fe9d1c +2018,Santa Fe,II.1.1,547.3986,TJ,CH4,3.9,kg/TJ,2134.85454,Gas Oil combustion consumption by freight transport,AR-S,SESCO,annual,kg,1846549b-5f26-324c-84f9-90526f433a64 +2018,Santa Fe,II.1.1,547.3986,TJ,N2O,3.9,kg/TJ,2134.85454,Gas Oil combustion consumption by freight transport,AR-S,SESCO,annual,kg,1846549b-5f26-324c-84f9-90526f433a64 +2018,Santiago del Estero,II.1.1,42.33264,TJ,CO2,74100.0,kg/TJ,3136848.624,Gas Oil combustion consumption by freight transport,AR-G,SESCO,annual,kg,8d06bd2f-6985-3110-9ea5-b7edc9ec0a33 +2018,Santiago del Estero,II.1.1,42.33264,TJ,CH4,3.9,kg/TJ,165.097296,Gas Oil combustion consumption by freight transport,AR-G,SESCO,annual,kg,526002db-9663-32e5-911d-facbcc43b605 +2018,Santiago del Estero,II.1.1,42.33264,TJ,N2O,3.9,kg/TJ,165.097296,Gas Oil combustion consumption by freight transport,AR-G,SESCO,annual,kg,526002db-9663-32e5-911d-facbcc43b605 +2018,Tierra del Fuego,II.1.1,2.3478,TJ,CO2,74100.0,kg/TJ,173971.97999999998,Gas Oil combustion consumption by freight transport,AR-V,SESCO,annual,kg,926d2b60-4887-388e-84dc-cfa15b8fd649 +2018,Tierra del Fuego,II.1.1,2.3478,TJ,CH4,3.9,kg/TJ,9.156419999999999,Gas Oil combustion consumption by freight transport,AR-V,SESCO,annual,kg,84cd8545-fe8a-324c-9a11-a10ba6924c02 +2018,Tierra del Fuego,II.1.1,2.3478,TJ,N2O,3.9,kg/TJ,9.156419999999999,Gas Oil combustion consumption by freight transport,AR-V,SESCO,annual,kg,84cd8545-fe8a-324c-9a11-a10ba6924c02 +2018,Tucuman,II.1.1,41.68248,TJ,CO2,74100.0,kg/TJ,3088671.7679999997,Gas Oil combustion consumption by freight transport,AR-T,SESCO,annual,kg,d836f5d6-da2c-3f19-aa4a-201533bee95e +2018,Tucuman,II.1.1,41.68248,TJ,CH4,3.9,kg/TJ,162.561672,Gas Oil combustion consumption by freight transport,AR-T,SESCO,annual,kg,235ddc46-5a71-3ac6-9ab5-9bff0318fe76 +2018,Tucuman,II.1.1,41.68248,TJ,N2O,3.9,kg/TJ,162.561672,Gas Oil combustion consumption by freight transport,AR-T,SESCO,annual,kg,235ddc46-5a71-3ac6-9ab5-9bff0318fe76 +2018,Buenos Aires,II.1.1,177.45756,TJ,CO2,74100.0,kg/TJ,13149605.196,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,c5c05688-303b-3891-a8dc-40e34575b03f +2018,Buenos Aires,II.1.1,177.45756,TJ,CH4,3.9,kg/TJ,692.084484,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,8abd3579-6ae2-3bb1-a181-b0c30b96870d +2018,Buenos Aires,II.1.1,177.45756,TJ,N2O,3.9,kg/TJ,692.084484,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,8abd3579-6ae2-3bb1-a181-b0c30b96870d +2018,Capital Federal,II.1.1,69.78384,TJ,CO2,74100.0,kg/TJ,5170982.544,Gas Oil combustion consumption by freight transport,AR-C,SESCO,annual,kg,3f4bc744-21b9-30f6-ac5b-ecf68d5a1f1b +2018,Capital Federal,II.1.1,69.78384,TJ,CH4,3.9,kg/TJ,272.156976,Gas Oil combustion consumption by freight transport,AR-C,SESCO,annual,kg,2e72a889-431d-3370-b3eb-0962752b4838 +2018,Capital Federal,II.1.1,69.78384,TJ,N2O,3.9,kg/TJ,272.156976,Gas Oil combustion consumption by freight transport,AR-C,SESCO,annual,kg,2e72a889-431d-3370-b3eb-0962752b4838 +2018,Catamarca,II.1.1,0.65016,TJ,CO2,74100.0,kg/TJ,48176.856,Gas Oil combustion consumption by freight transport,AR-K,SESCO,annual,kg,a56853a9-e7e0-317c-8c22-8fa3308579e6 +2018,Catamarca,II.1.1,0.65016,TJ,CH4,3.9,kg/TJ,2.535624,Gas Oil combustion consumption by freight transport,AR-K,SESCO,annual,kg,e0901290-aef6-3ab6-9014-d0f31ecac4c1 +2018,Catamarca,II.1.1,0.65016,TJ,N2O,3.9,kg/TJ,2.535624,Gas Oil combustion consumption by freight transport,AR-K,SESCO,annual,kg,e0901290-aef6-3ab6-9014-d0f31ecac4c1 +2018,Chaco,II.1.1,0.28896,TJ,CO2,74100.0,kg/TJ,21411.935999999998,Gas Oil combustion consumption by freight transport,AR-H,SESCO,annual,kg,ea6544e9-3324-3421-8e1c-8331375dfc2f +2018,Chaco,II.1.1,0.28896,TJ,CH4,3.9,kg/TJ,1.126944,Gas Oil combustion consumption by freight transport,AR-H,SESCO,annual,kg,004e9435-b770-35ff-b69a-669eb91a2ff9 +2018,Chaco,II.1.1,0.28896,TJ,N2O,3.9,kg/TJ,1.126944,Gas Oil combustion consumption by freight transport,AR-H,SESCO,annual,kg,004e9435-b770-35ff-b69a-669eb91a2ff9 +2018,Chubut,II.1.1,4.26216,TJ,CO2,74100.0,kg/TJ,315826.056,Gas Oil combustion consumption by freight transport,AR-U,SESCO,annual,kg,4c71f2d9-a0c3-3435-b3a5-544e75442cd4 +2018,Chubut,II.1.1,4.26216,TJ,CH4,3.9,kg/TJ,16.622424,Gas Oil combustion consumption by freight transport,AR-U,SESCO,annual,kg,f34c5d01-4103-3b24-b569-4a284b124418 +2018,Chubut,II.1.1,4.26216,TJ,N2O,3.9,kg/TJ,16.622424,Gas Oil combustion consumption by freight transport,AR-U,SESCO,annual,kg,f34c5d01-4103-3b24-b569-4a284b124418 +2018,Corrientes,II.1.1,8.41596,TJ,CO2,74100.0,kg/TJ,623622.636,Gas Oil combustion consumption by freight transport,AR-W,SESCO,annual,kg,27b5d854-aac2-3659-8c73-145e20defb7a +2018,Corrientes,II.1.1,8.41596,TJ,CH4,3.9,kg/TJ,32.822244,Gas Oil combustion consumption by freight transport,AR-W,SESCO,annual,kg,d738f0c7-e411-342b-b0c8-fd47d6488565 +2018,Corrientes,II.1.1,8.41596,TJ,N2O,3.9,kg/TJ,32.822244,Gas Oil combustion consumption by freight transport,AR-W,SESCO,annual,kg,d738f0c7-e411-342b-b0c8-fd47d6488565 +2018,Córdoba,II.1.1,19.79376,TJ,CO2,74100.0,kg/TJ,1466717.616,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,c4ba01ab-809b-3ac5-8fb6-e2c5a9c0cf5a +2018,Córdoba,II.1.1,19.79376,TJ,CH4,3.9,kg/TJ,77.195664,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,0667d481-ed38-33ad-a452-e1d7ae9f8141 +2018,Córdoba,II.1.1,19.79376,TJ,N2O,3.9,kg/TJ,77.195664,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,0667d481-ed38-33ad-a452-e1d7ae9f8141 +2018,Entre Rios,II.1.1,8.993879999999999,TJ,CO2,74100.0,kg/TJ,666446.5079999999,Gas Oil combustion consumption by freight transport,AR-E,SESCO,annual,kg,37e4eee7-fc4f-323a-986b-f7531bf99a0a +2018,Entre Rios,II.1.1,8.993879999999999,TJ,CH4,3.9,kg/TJ,35.076131999999994,Gas Oil combustion consumption by freight transport,AR-E,SESCO,annual,kg,b82c7069-5ce9-3f8f-8e1f-0b4dfdd615aa +2018,Entre Rios,II.1.1,8.993879999999999,TJ,N2O,3.9,kg/TJ,35.076131999999994,Gas Oil combustion consumption by freight transport,AR-E,SESCO,annual,kg,b82c7069-5ce9-3f8f-8e1f-0b4dfdd615aa +2018,Formosa,II.1.1,0.6140399999999999,TJ,CO2,74100.0,kg/TJ,45500.363999999994,Gas Oil combustion consumption by freight transport,AR-P,SESCO,annual,kg,93b332ba-71bc-3020-ad74-815846968f1f +2018,Formosa,II.1.1,0.6140399999999999,TJ,CH4,3.9,kg/TJ,2.3947559999999997,Gas Oil combustion consumption by freight transport,AR-P,SESCO,annual,kg,19d3b548-fbaf-3bd4-87a8-87ba7dee3395 +2018,Formosa,II.1.1,0.6140399999999999,TJ,N2O,3.9,kg/TJ,2.3947559999999997,Gas Oil combustion consumption by freight transport,AR-P,SESCO,annual,kg,19d3b548-fbaf-3bd4-87a8-87ba7dee3395 +2018,Jujuy,II.1.1,0.25284,TJ,CO2,74100.0,kg/TJ,18735.444,Gas Oil combustion consumption by freight transport,AR-Y,SESCO,annual,kg,a31e1058-9666-3b8a-a2d8-3eaf579e3d46 +2018,Jujuy,II.1.1,0.25284,TJ,CH4,3.9,kg/TJ,0.9860760000000001,Gas Oil combustion consumption by freight transport,AR-Y,SESCO,annual,kg,e0fefa02-5f99-30aa-8bbd-3bf7807840bb +2018,Jujuy,II.1.1,0.25284,TJ,N2O,3.9,kg/TJ,0.9860760000000001,Gas Oil combustion consumption by freight transport,AR-Y,SESCO,annual,kg,e0fefa02-5f99-30aa-8bbd-3bf7807840bb +2018,La Pampa,II.1.1,0.86688,TJ,CO2,74100.0,kg/TJ,64235.808,Gas Oil combustion consumption by freight transport,AR-L,SESCO,annual,kg,48c4e81d-a980-3100-9be8-20515cdf8d09 +2018,La Pampa,II.1.1,0.86688,TJ,CH4,3.9,kg/TJ,3.380832,Gas Oil combustion consumption by freight transport,AR-L,SESCO,annual,kg,f7e19fe5-c725-3f3d-a669-f743ca311b7e +2018,La Pampa,II.1.1,0.86688,TJ,N2O,3.9,kg/TJ,3.380832,Gas Oil combustion consumption by freight transport,AR-L,SESCO,annual,kg,f7e19fe5-c725-3f3d-a669-f743ca311b7e +2018,La Rioja,II.1.1,0.6140399999999999,TJ,CO2,74100.0,kg/TJ,45500.363999999994,Gas Oil combustion consumption by freight transport,AR-F,SESCO,annual,kg,c3cef05c-2b60-31a3-b01e-ba1390781571 +2018,La Rioja,II.1.1,0.6140399999999999,TJ,CH4,3.9,kg/TJ,2.3947559999999997,Gas Oil combustion consumption by freight transport,AR-F,SESCO,annual,kg,82dcc7b2-a702-3060-b506-e8a34534f372 +2018,La Rioja,II.1.1,0.6140399999999999,TJ,N2O,3.9,kg/TJ,2.3947559999999997,Gas Oil combustion consumption by freight transport,AR-F,SESCO,annual,kg,82dcc7b2-a702-3060-b506-e8a34534f372 +2018,Mendoza,II.1.1,1.76988,TJ,CO2,74100.0,kg/TJ,131148.10799999998,Gas Oil combustion consumption by freight transport,AR-M,SESCO,annual,kg,15e4b77b-4d1c-3010-ad10-a5afe9d43ebe +2018,Mendoza,II.1.1,1.76988,TJ,CH4,3.9,kg/TJ,6.902531999999999,Gas Oil combustion consumption by freight transport,AR-M,SESCO,annual,kg,c7bc3706-2cee-30b0-87b6-9f1b97a1fec1 +2018,Mendoza,II.1.1,1.76988,TJ,N2O,3.9,kg/TJ,6.902531999999999,Gas Oil combustion consumption by freight transport,AR-M,SESCO,annual,kg,c7bc3706-2cee-30b0-87b6-9f1b97a1fec1 +2018,Misiones,II.1.1,2.3478,TJ,CO2,74100.0,kg/TJ,173971.97999999998,Gas Oil combustion consumption by freight transport,AR-N,SESCO,annual,kg,a543d3d5-c394-3abb-b24b-c119dcb2a5d2 +2018,Misiones,II.1.1,2.3478,TJ,CH4,3.9,kg/TJ,9.156419999999999,Gas Oil combustion consumption by freight transport,AR-N,SESCO,annual,kg,92e9f052-0d06-3aca-ac9c-f9bfdfd13f4c +2018,Misiones,II.1.1,2.3478,TJ,N2O,3.9,kg/TJ,9.156419999999999,Gas Oil combustion consumption by freight transport,AR-N,SESCO,annual,kg,92e9f052-0d06-3aca-ac9c-f9bfdfd13f4c +2018,Neuquén,II.1.1,0.07224,TJ,CO2,74100.0,kg/TJ,5352.9839999999995,Gas Oil combustion consumption by freight transport,AR-Q,SESCO,annual,kg,b6be1176-369f-37e3-ba74-545b16711859 +2018,Neuquén,II.1.1,0.07224,TJ,CH4,3.9,kg/TJ,0.281736,Gas Oil combustion consumption by freight transport,AR-Q,SESCO,annual,kg,70557f9e-bcad-3fd5-86fd-f132e3468700 +2018,Neuquén,II.1.1,0.07224,TJ,N2O,3.9,kg/TJ,0.281736,Gas Oil combustion consumption by freight transport,AR-Q,SESCO,annual,kg,70557f9e-bcad-3fd5-86fd-f132e3468700 +2018,Rio Negro,II.1.1,9.03,TJ,CO2,74100.0,kg/TJ,669123.0,Gas Oil combustion consumption by freight transport,AR-R,SESCO,annual,kg,257a64f3-4ba0-3605-a62c-8361232c7971 +2018,Rio Negro,II.1.1,9.03,TJ,CH4,3.9,kg/TJ,35.217,Gas Oil combustion consumption by freight transport,AR-R,SESCO,annual,kg,cdcb89d9-704a-31e8-b090-a6bc2edfeb7e +2018,Rio Negro,II.1.1,9.03,TJ,N2O,3.9,kg/TJ,35.217,Gas Oil combustion consumption by freight transport,AR-R,SESCO,annual,kg,cdcb89d9-704a-31e8-b090-a6bc2edfeb7e +2018,Salta,II.1.1,0.36119999999999997,TJ,CO2,74100.0,kg/TJ,26764.92,Gas Oil combustion consumption by freight transport,AR-A,SESCO,annual,kg,03c4ba67-45c9-3bce-8882-d50369b2c674 +2018,Salta,II.1.1,0.36119999999999997,TJ,CH4,3.9,kg/TJ,1.40868,Gas Oil combustion consumption by freight transport,AR-A,SESCO,annual,kg,cd8ca964-b385-34fd-a5e7-74cd95819edb +2018,Salta,II.1.1,0.36119999999999997,TJ,N2O,3.9,kg/TJ,1.40868,Gas Oil combustion consumption by freight transport,AR-A,SESCO,annual,kg,cd8ca964-b385-34fd-a5e7-74cd95819edb +2018,San Juan,II.1.1,0.14448,TJ,CO2,74100.0,kg/TJ,10705.967999999999,Gas Oil combustion consumption by freight transport,AR-J,SESCO,annual,kg,c19a8881-7868-3df5-bbd5-9b1071ddd210 +2018,San Juan,II.1.1,0.14448,TJ,CH4,3.9,kg/TJ,0.563472,Gas Oil combustion consumption by freight transport,AR-J,SESCO,annual,kg,0c833d06-71a8-3521-97e1-29fd53d2648b +2018,San Juan,II.1.1,0.14448,TJ,N2O,3.9,kg/TJ,0.563472,Gas Oil combustion consumption by freight transport,AR-J,SESCO,annual,kg,0c833d06-71a8-3521-97e1-29fd53d2648b +2018,San Luis,II.1.1,2.1672,TJ,CO2,74100.0,kg/TJ,160589.52,Gas Oil combustion consumption by freight transport,AR-D,SESCO,annual,kg,e7c648d2-2e29-33ed-acb5-729f3165497c +2018,San Luis,II.1.1,2.1672,TJ,CH4,3.9,kg/TJ,8.452079999999999,Gas Oil combustion consumption by freight transport,AR-D,SESCO,annual,kg,a8a81c8c-e255-3154-b128-d23420bcef43 +2018,San Luis,II.1.1,2.1672,TJ,N2O,3.9,kg/TJ,8.452079999999999,Gas Oil combustion consumption by freight transport,AR-D,SESCO,annual,kg,a8a81c8c-e255-3154-b128-d23420bcef43 +2018,Santa Fe,II.1.1,73.72091999999999,TJ,CO2,74100.0,kg/TJ,5462720.171999999,Gas Oil combustion consumption by freight transport,AR-S,SESCO,annual,kg,3a9223ad-9511-3c3c-b6bd-be7ebc22425a +2018,Santa Fe,II.1.1,73.72091999999999,TJ,CH4,3.9,kg/TJ,287.51158799999996,Gas Oil combustion consumption by freight transport,AR-S,SESCO,annual,kg,b5a20bac-4f4c-3739-bfc2-ecf569256520 +2018,Santa Fe,II.1.1,73.72091999999999,TJ,N2O,3.9,kg/TJ,287.51158799999996,Gas Oil combustion consumption by freight transport,AR-S,SESCO,annual,kg,b5a20bac-4f4c-3739-bfc2-ecf569256520 +2018,Santiago del Estero,II.1.1,5.63472,TJ,CO2,74100.0,kg/TJ,417532.752,Gas Oil combustion consumption by freight transport,AR-G,SESCO,annual,kg,d9446a00-1725-3f15-9806-d3c29d3babb2 +2018,Santiago del Estero,II.1.1,5.63472,TJ,CH4,3.9,kg/TJ,21.975407999999998,Gas Oil combustion consumption by freight transport,AR-G,SESCO,annual,kg,009f3ab4-7a8f-3686-b757-f3b9d23c05fe +2018,Santiago del Estero,II.1.1,5.63472,TJ,N2O,3.9,kg/TJ,21.975407999999998,Gas Oil combustion consumption by freight transport,AR-G,SESCO,annual,kg,009f3ab4-7a8f-3686-b757-f3b9d23c05fe +2018,Tierra del Fuego,II.1.1,1.01136,TJ,CO2,74100.0,kg/TJ,74941.776,Gas Oil combustion consumption by freight transport,AR-V,SESCO,annual,kg,b5a2e3f7-842f-3929-8386-b5cb8b962b6f +2018,Tierra del Fuego,II.1.1,1.01136,TJ,CH4,3.9,kg/TJ,3.9443040000000003,Gas Oil combustion consumption by freight transport,AR-V,SESCO,annual,kg,3e81e545-a8a6-3ecd-81e3-50b339b14839 +2018,Tierra del Fuego,II.1.1,1.01136,TJ,N2O,3.9,kg/TJ,3.9443040000000003,Gas Oil combustion consumption by freight transport,AR-V,SESCO,annual,kg,3e81e545-a8a6-3ecd-81e3-50b339b14839 +2018,Tucuman,II.1.1,1.04748,TJ,CO2,74100.0,kg/TJ,77618.268,Gas Oil combustion consumption by freight transport,AR-T,SESCO,annual,kg,ba477c79-c71c-30b7-9751-e27142bc9081 +2018,Tucuman,II.1.1,1.04748,TJ,CH4,3.9,kg/TJ,4.085172,Gas Oil combustion consumption by freight transport,AR-T,SESCO,annual,kg,f0c59f5d-48d9-3cc2-801b-6c64fdb7ee05 +2018,Tucuman,II.1.1,1.04748,TJ,N2O,3.9,kg/TJ,4.085172,Gas Oil combustion consumption by freight transport,AR-T,SESCO,annual,kg,f0c59f5d-48d9-3cc2-801b-6c64fdb7ee05 +2018,Buenos Aires,II.1.1,9.25155,TJ,CO2,73300.0,kg/TJ,678138.615,Naphtha combustion consumption by freight transport,AR-B,SESCO,annual,kg,2c336484-b4de-34a3-ac6a-807de796f5ce +2018,Buenos Aires,II.1.1,9.25155,TJ,CH4,0.5,kg/TJ,4.625775,Naphtha combustion consumption by freight transport,AR-B,SESCO,annual,kg,87df8909-3ad8-39d5-8959-bda7ba372bd2 +2018,Buenos Aires,II.1.1,9.25155,TJ,N2O,2.0,kg/TJ,18.5031,Naphtha combustion consumption by freight transport,AR-B,SESCO,annual,kg,96021931-9780-3cd7-a94a-db555a0ff85c +2018,Capital Federal,II.1.1,3.70062,TJ,CO2,73300.0,kg/TJ,271255.446,Naphtha combustion consumption by freight transport,AR-C,SESCO,annual,kg,1111d5c6-9587-3c44-8b6b-ee7461e6b4d0 +2018,Capital Federal,II.1.1,3.70062,TJ,CH4,0.5,kg/TJ,1.85031,Naphtha combustion consumption by freight transport,AR-C,SESCO,annual,kg,9f27be85-f429-34e2-b6ee-bb6df4324d6b +2018,Capital Federal,II.1.1,3.70062,TJ,N2O,2.0,kg/TJ,7.40124,Naphtha combustion consumption by freight transport,AR-C,SESCO,annual,kg,667186a9-2963-308b-aecc-c20a29342a74 +2018,Catamarca,II.1.1,0.034265,TJ,CO2,73300.0,kg/TJ,2511.6245,Naphtha combustion consumption by freight transport,AR-K,SESCO,annual,kg,dda362b9-fbc1-3e7d-95ed-175fb43398a8 +2018,Catamarca,II.1.1,0.034265,TJ,CH4,0.5,kg/TJ,0.0171325,Naphtha combustion consumption by freight transport,AR-K,SESCO,annual,kg,aaf2e257-2b54-3581-9f59-0f312799765d +2018,Catamarca,II.1.1,0.034265,TJ,N2O,2.0,kg/TJ,0.06853,Naphtha combustion consumption by freight transport,AR-K,SESCO,annual,kg,1d711ea2-d1f8-328c-ad2c-1564c3877c4a +2018,Chubut,II.1.1,0.034265,TJ,CO2,73300.0,kg/TJ,2511.6245,Naphtha combustion consumption by freight transport,AR-U,SESCO,annual,kg,4831aa13-e3c0-3f0a-b3cb-9e268cce8419 +2018,Chubut,II.1.1,0.034265,TJ,CH4,0.5,kg/TJ,0.0171325,Naphtha combustion consumption by freight transport,AR-U,SESCO,annual,kg,a4ecb6f9-f774-3824-8598-fab09b84bd94 +2018,Chubut,II.1.1,0.034265,TJ,N2O,2.0,kg/TJ,0.06853,Naphtha combustion consumption by freight transport,AR-U,SESCO,annual,kg,3e0f81a5-7402-3f31-a6d9-bd35626179c0 +2018,Córdoba,II.1.1,2.12443,TJ,CO2,73300.0,kg/TJ,155720.71899999998,Naphtha combustion consumption by freight transport,AR-X,SESCO,annual,kg,3f6a3b4f-6aff-3b31-9909-5eec4d72f8b1 +2018,Córdoba,II.1.1,2.12443,TJ,CH4,0.5,kg/TJ,1.062215,Naphtha combustion consumption by freight transport,AR-X,SESCO,annual,kg,9076e5f9-7691-3791-9157-425b415ed4ae +2018,Córdoba,II.1.1,2.12443,TJ,N2O,2.0,kg/TJ,4.24886,Naphtha combustion consumption by freight transport,AR-X,SESCO,annual,kg,4a791bbb-330a-3c67-9e14-eb1a96c8134c +2018,Entre Rios,II.1.1,0.034265,TJ,CO2,73300.0,kg/TJ,2511.6245,Naphtha combustion consumption by freight transport,AR-E,SESCO,annual,kg,96cc6fc3-a281-3430-b801-cb1736102d3a +2018,Entre Rios,II.1.1,0.034265,TJ,CH4,0.5,kg/TJ,0.0171325,Naphtha combustion consumption by freight transport,AR-E,SESCO,annual,kg,90c92359-fae5-3ded-90cf-9048030bf4f5 +2018,Entre Rios,II.1.1,0.034265,TJ,N2O,2.0,kg/TJ,0.06853,Naphtha combustion consumption by freight transport,AR-E,SESCO,annual,kg,1dc0ab39-cd89-38e1-84d2-deaf7ec9461c +2018,La Rioja,II.1.1,0.034265,TJ,CO2,73300.0,kg/TJ,2511.6245,Naphtha combustion consumption by freight transport,AR-F,SESCO,annual,kg,ee617c2c-3025-33e8-8d87-1607629e4de8 +2018,La Rioja,II.1.1,0.034265,TJ,CH4,0.5,kg/TJ,0.0171325,Naphtha combustion consumption by freight transport,AR-F,SESCO,annual,kg,e6a13d60-720b-347c-9874-741a88e978c0 +2018,La Rioja,II.1.1,0.034265,TJ,N2O,2.0,kg/TJ,0.06853,Naphtha combustion consumption by freight transport,AR-F,SESCO,annual,kg,c288cd78-b78f-3610-888c-e2049ab5ca73 +2018,Mendoza,II.1.1,0.102795,TJ,CO2,73300.0,kg/TJ,7534.8735,Naphtha combustion consumption by freight transport,AR-M,SESCO,annual,kg,1d1e2fa3-730b-38eb-a03f-b02fec245fc8 +2018,Mendoza,II.1.1,0.102795,TJ,CH4,0.5,kg/TJ,0.0513975,Naphtha combustion consumption by freight transport,AR-M,SESCO,annual,kg,42930f81-5468-39c8-8d74-9b86b7ae9476 +2018,Mendoza,II.1.1,0.102795,TJ,N2O,2.0,kg/TJ,0.20559,Naphtha combustion consumption by freight transport,AR-M,SESCO,annual,kg,b69636d5-c4ba-3aca-81d9-438a7f179024 +2018,Misiones,II.1.1,0.034265,TJ,CO2,73300.0,kg/TJ,2511.6245,Naphtha combustion consumption by freight transport,AR-N,SESCO,annual,kg,926b7d52-981b-3dde-aaed-ccc77411ca02 +2018,Misiones,II.1.1,0.034265,TJ,CH4,0.5,kg/TJ,0.0171325,Naphtha combustion consumption by freight transport,AR-N,SESCO,annual,kg,38054d13-a033-3283-b3cf-0dd0fc294c64 +2018,Misiones,II.1.1,0.034265,TJ,N2O,2.0,kg/TJ,0.06853,Naphtha combustion consumption by freight transport,AR-N,SESCO,annual,kg,cc498a91-ee18-3a36-8d9a-dd8e54fb82d8 +2018,Salta,II.1.1,0.13706,TJ,CO2,73300.0,kg/TJ,10046.498,Naphtha combustion consumption by freight transport,AR-A,SESCO,annual,kg,da1b47e8-7253-35b9-82f8-f8312937093e +2018,Salta,II.1.1,0.13706,TJ,CH4,0.5,kg/TJ,0.06853,Naphtha combustion consumption by freight transport,AR-A,SESCO,annual,kg,cdcedb89-cdfc-38f0-aa1e-fa4e1325a746 +2018,Salta,II.1.1,0.13706,TJ,N2O,2.0,kg/TJ,0.27412,Naphtha combustion consumption by freight transport,AR-A,SESCO,annual,kg,117b4f58-6b17-3b7f-a5be-3d02285c553b +2018,Santa Fe,II.1.1,1.3020699999999998,TJ,CO2,73300.0,kg/TJ,95441.73099999999,Naphtha combustion consumption by freight transport,AR-S,SESCO,annual,kg,05963a2c-48c3-3dcb-b2f8-7f5265377ef2 +2018,Santa Fe,II.1.1,1.3020699999999998,TJ,CH4,0.5,kg/TJ,0.6510349999999999,Naphtha combustion consumption by freight transport,AR-S,SESCO,annual,kg,99a6bd54-89dc-3b22-b27f-d0178b6ed431 +2018,Santa Fe,II.1.1,1.3020699999999998,TJ,N2O,2.0,kg/TJ,2.6041399999999997,Naphtha combustion consumption by freight transport,AR-S,SESCO,annual,kg,e0cb7efc-accd-31f0-b37b-7c25baeb3f34 +2018,Santiago del Estero,II.1.1,0.034265,TJ,CO2,73300.0,kg/TJ,2511.6245,Naphtha combustion consumption by freight transport,AR-G,SESCO,annual,kg,d14513d4-d09c-3859-beae-1ea19a611e3d +2018,Santiago del Estero,II.1.1,0.034265,TJ,CH4,0.5,kg/TJ,0.0171325,Naphtha combustion consumption by freight transport,AR-G,SESCO,annual,kg,a6393a37-1179-37f4-bc8f-75e9744032b8 +2018,Santiago del Estero,II.1.1,0.034265,TJ,N2O,2.0,kg/TJ,0.06853,Naphtha combustion consumption by freight transport,AR-G,SESCO,annual,kg,04bf7b7d-e407-3121-b429-d4ca02c2ed60 +2018,Tucuman,II.1.1,0.034265,TJ,CO2,73300.0,kg/TJ,2511.6245,Naphtha combustion consumption by freight transport,AR-T,SESCO,annual,kg,aa47e9c5-aeb6-3713-8128-f4567e46f713 +2018,Tucuman,II.1.1,0.034265,TJ,CH4,0.5,kg/TJ,0.0171325,Naphtha combustion consumption by freight transport,AR-T,SESCO,annual,kg,952cf90c-cbf6-3b7c-a7b9-59c13a021d76 +2018,Tucuman,II.1.1,0.034265,TJ,N2O,2.0,kg/TJ,0.06853,Naphtha combustion consumption by freight transport,AR-T,SESCO,annual,kg,61773a73-9114-3659-8744-d1c7631ea328 +2018,Buenos Aires,II.1.1,6.09917,TJ,CO2,73300.0,kg/TJ,447069.161,Naphtha combustion consumption by freight transport,AR-B,SESCO,annual,kg,ba270d73-0611-3b5f-b1aa-371f3f654ace +2018,Buenos Aires,II.1.1,6.09917,TJ,CH4,0.5,kg/TJ,3.049585,Naphtha combustion consumption by freight transport,AR-B,SESCO,annual,kg,f32d2e5c-a67d-3f4c-b7ae-3ee894202123 +2018,Buenos Aires,II.1.1,6.09917,TJ,N2O,2.0,kg/TJ,12.19834,Naphtha combustion consumption by freight transport,AR-B,SESCO,annual,kg,2004033f-7c8e-3ce0-ae3c-82d09a91d3b6 +2018,Capital Federal,II.1.1,3.01532,TJ,CO2,73300.0,kg/TJ,221022.956,Naphtha combustion consumption by freight transport,AR-C,SESCO,annual,kg,b010d0c4-4295-39a4-a9b4-86ec8de01908 +2018,Capital Federal,II.1.1,3.01532,TJ,CH4,0.5,kg/TJ,1.50766,Naphtha combustion consumption by freight transport,AR-C,SESCO,annual,kg,b34e736b-5c77-3ee3-bb15-cb6db9d1d894 +2018,Capital Federal,II.1.1,3.01532,TJ,N2O,2.0,kg/TJ,6.03064,Naphtha combustion consumption by freight transport,AR-C,SESCO,annual,kg,920701ee-b8d8-3145-92b4-567fdef5942f +2018,Chubut,II.1.1,0.034265,TJ,CO2,73300.0,kg/TJ,2511.6245,Naphtha combustion consumption by freight transport,AR-U,SESCO,annual,kg,4831aa13-e3c0-3f0a-b3cb-9e268cce8419 +2018,Chubut,II.1.1,0.034265,TJ,CH4,0.5,kg/TJ,0.0171325,Naphtha combustion consumption by freight transport,AR-U,SESCO,annual,kg,a4ecb6f9-f774-3824-8598-fab09b84bd94 +2018,Chubut,II.1.1,0.034265,TJ,N2O,2.0,kg/TJ,0.06853,Naphtha combustion consumption by freight transport,AR-U,SESCO,annual,kg,3e0f81a5-7402-3f31-a6d9-bd35626179c0 +2018,Corrientes,II.1.1,0.102795,TJ,CO2,73300.0,kg/TJ,7534.8735,Naphtha combustion consumption by freight transport,AR-W,SESCO,annual,kg,1d9e9d72-a9f1-33f1-8a47-d105e4531642 +2018,Corrientes,II.1.1,0.102795,TJ,CH4,0.5,kg/TJ,0.0513975,Naphtha combustion consumption by freight transport,AR-W,SESCO,annual,kg,e007ecbe-9759-3fd2-9cd9-5dd1b4429ae5 +2018,Corrientes,II.1.1,0.102795,TJ,N2O,2.0,kg/TJ,0.20559,Naphtha combustion consumption by freight transport,AR-W,SESCO,annual,kg,ba821611-3de7-36ba-96dc-80f764033ffc +2018,Córdoba,II.1.1,1.57619,TJ,CO2,73300.0,kg/TJ,115534.727,Naphtha combustion consumption by freight transport,AR-X,SESCO,annual,kg,45d4d3ec-04f4-34e8-8400-d30df0fd491b +2018,Córdoba,II.1.1,1.57619,TJ,CH4,0.5,kg/TJ,0.788095,Naphtha combustion consumption by freight transport,AR-X,SESCO,annual,kg,1152cfee-b813-3e75-a013-43f79d229746 +2018,Córdoba,II.1.1,1.57619,TJ,N2O,2.0,kg/TJ,3.15238,Naphtha combustion consumption by freight transport,AR-X,SESCO,annual,kg,bb952706-d910-362e-a489-11b7f17ac456 +2018,Entre Rios,II.1.1,0.27412,TJ,CO2,73300.0,kg/TJ,20092.996,Naphtha combustion consumption by freight transport,AR-E,SESCO,annual,kg,bf57c655-7191-3c67-9bd4-cecf71970c26 +2018,Entre Rios,II.1.1,0.27412,TJ,CH4,0.5,kg/TJ,0.13706,Naphtha combustion consumption by freight transport,AR-E,SESCO,annual,kg,8704cbc1-7d4a-35ab-ae57-28523dc777eb +2018,Entre Rios,II.1.1,0.27412,TJ,N2O,2.0,kg/TJ,0.54824,Naphtha combustion consumption by freight transport,AR-E,SESCO,annual,kg,968b2328-745e-383d-9dcb-ebc2d27156d3 +2018,Jujuy,II.1.1,0.034265,TJ,CO2,73300.0,kg/TJ,2511.6245,Naphtha combustion consumption by freight transport,AR-Y,SESCO,annual,kg,0029cf2c-68dc-3bf5-be74-685eada502bd +2018,Jujuy,II.1.1,0.034265,TJ,CH4,0.5,kg/TJ,0.0171325,Naphtha combustion consumption by freight transport,AR-Y,SESCO,annual,kg,3aca582d-11ed-3c89-9ba0-d95965ffa1fc +2018,Jujuy,II.1.1,0.034265,TJ,N2O,2.0,kg/TJ,0.06853,Naphtha combustion consumption by freight transport,AR-Y,SESCO,annual,kg,70642e49-49c0-3107-aafe-758b99450560 +2018,La Pampa,II.1.1,0.034265,TJ,CO2,73300.0,kg/TJ,2511.6245,Naphtha combustion consumption by freight transport,AR-L,SESCO,annual,kg,a651ccfb-b70a-39b0-9c5f-2d4f13a800c9 +2018,La Pampa,II.1.1,0.034265,TJ,CH4,0.5,kg/TJ,0.0171325,Naphtha combustion consumption by freight transport,AR-L,SESCO,annual,kg,173a858a-f059-31b2-abaa-8e2b50b63468 +2018,La Pampa,II.1.1,0.034265,TJ,N2O,2.0,kg/TJ,0.06853,Naphtha combustion consumption by freight transport,AR-L,SESCO,annual,kg,92d19810-e4d4-32ef-a12d-fab426c81496 +2018,Mendoza,II.1.1,0.06853,TJ,CO2,73300.0,kg/TJ,5023.249,Naphtha combustion consumption by freight transport,AR-M,SESCO,annual,kg,41e22b36-d0d0-3336-94c4-4a2dbd2a656c +2018,Mendoza,II.1.1,0.06853,TJ,CH4,0.5,kg/TJ,0.034265,Naphtha combustion consumption by freight transport,AR-M,SESCO,annual,kg,1e2548ac-e083-3f70-aa7b-95a87a2b68b3 +2018,Mendoza,II.1.1,0.06853,TJ,N2O,2.0,kg/TJ,0.13706,Naphtha combustion consumption by freight transport,AR-M,SESCO,annual,kg,2358b914-a40a-3a25-9105-14c6c3ea7a61 +2018,Neuquén,II.1.1,0.034265,TJ,CO2,73300.0,kg/TJ,2511.6245,Naphtha combustion consumption by freight transport,AR-Q,SESCO,annual,kg,e77ba54c-02bc-3c6b-87fc-68f4af6b0f34 +2018,Neuquén,II.1.1,0.034265,TJ,CH4,0.5,kg/TJ,0.0171325,Naphtha combustion consumption by freight transport,AR-Q,SESCO,annual,kg,4d782512-402d-38a0-9a9c-ccbbf9dc5626 +2018,Neuquén,II.1.1,0.034265,TJ,N2O,2.0,kg/TJ,0.06853,Naphtha combustion consumption by freight transport,AR-Q,SESCO,annual,kg,96791ba1-94c7-37f1-8d0a-b8d60ede6541 +2018,Rio Negro,II.1.1,0.034265,TJ,CO2,73300.0,kg/TJ,2511.6245,Naphtha combustion consumption by freight transport,AR-R,SESCO,annual,kg,cb6ea091-6ae8-32b3-aa29-f8132b8dfcd2 +2018,Rio Negro,II.1.1,0.034265,TJ,CH4,0.5,kg/TJ,0.0171325,Naphtha combustion consumption by freight transport,AR-R,SESCO,annual,kg,5bca9739-e77f-3808-b7fa-1c2f915c6cc6 +2018,Rio Negro,II.1.1,0.034265,TJ,N2O,2.0,kg/TJ,0.06853,Naphtha combustion consumption by freight transport,AR-R,SESCO,annual,kg,f837b103-1bf9-37be-8474-e165e048de0c +2018,San Luis,II.1.1,0.034265,TJ,CO2,73300.0,kg/TJ,2511.6245,Naphtha combustion consumption by freight transport,AR-D,SESCO,annual,kg,d60c1094-0564-3a56-aea0-d0fa5ab87df1 +2018,San Luis,II.1.1,0.034265,TJ,CH4,0.5,kg/TJ,0.0171325,Naphtha combustion consumption by freight transport,AR-D,SESCO,annual,kg,cfc3f000-67c0-3b7c-a5d7-369037128a21 +2018,San Luis,II.1.1,0.034265,TJ,N2O,2.0,kg/TJ,0.06853,Naphtha combustion consumption by freight transport,AR-D,SESCO,annual,kg,ecd952a8-3a1b-39b1-a57c-9a3c96e0da84 +2018,Santa Fe,II.1.1,1.43913,TJ,CO2,73300.0,kg/TJ,105488.229,Naphtha combustion consumption by freight transport,AR-S,SESCO,annual,kg,ac06742f-489b-3770-90eb-c237bbe2fbb5 +2018,Santa Fe,II.1.1,1.43913,TJ,CH4,0.5,kg/TJ,0.719565,Naphtha combustion consumption by freight transport,AR-S,SESCO,annual,kg,bfbd6c44-044f-397e-9ec3-6ea43c878d14 +2018,Santa Fe,II.1.1,1.43913,TJ,N2O,2.0,kg/TJ,2.87826,Naphtha combustion consumption by freight transport,AR-S,SESCO,annual,kg,550db7ad-0a9b-324e-a1a6-333465ced93a +2018,Santiago del Estero,II.1.1,0.034265,TJ,CO2,73300.0,kg/TJ,2511.6245,Naphtha combustion consumption by freight transport,AR-G,SESCO,annual,kg,d14513d4-d09c-3859-beae-1ea19a611e3d +2018,Santiago del Estero,II.1.1,0.034265,TJ,CH4,0.5,kg/TJ,0.0171325,Naphtha combustion consumption by freight transport,AR-G,SESCO,annual,kg,a6393a37-1179-37f4-bc8f-75e9744032b8 +2018,Santiago del Estero,II.1.1,0.034265,TJ,N2O,2.0,kg/TJ,0.06853,Naphtha combustion consumption by freight transport,AR-G,SESCO,annual,kg,04bf7b7d-e407-3121-b429-d4ca02c2ed60 +2018,Tucuman,II.1.1,0.034265,TJ,CO2,73300.0,kg/TJ,2511.6245,Naphtha combustion consumption by freight transport,AR-T,SESCO,annual,kg,aa47e9c5-aeb6-3713-8128-f4567e46f713 +2018,Tucuman,II.1.1,0.034265,TJ,CH4,0.5,kg/TJ,0.0171325,Naphtha combustion consumption by freight transport,AR-T,SESCO,annual,kg,952cf90c-cbf6-3b7c-a7b9-59c13a021d76 +2018,Tucuman,II.1.1,0.034265,TJ,N2O,2.0,kg/TJ,0.06853,Naphtha combustion consumption by freight transport,AR-T,SESCO,annual,kg,61773a73-9114-3659-8744-d1c7631ea328 +2018,Buenos Aires,II.1.1,1664.5540799999999,TJ,CO2,74100.0,kg/TJ,123343457.328,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,ca6342a5-9c31-3703-a8b0-8f83e36b027b +2018,Buenos Aires,II.1.1,1664.5540799999999,TJ,CH4,3.9,kg/TJ,6491.760912,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,82260ed8-9666-36a0-9cf8-c9f16b4092f8 +2018,Buenos Aires,II.1.1,1664.5540799999999,TJ,N2O,3.9,kg/TJ,6491.760912,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,82260ed8-9666-36a0-9cf8-c9f16b4092f8 +2018,Capital Federal,II.1.1,703.68984,TJ,CO2,74100.0,kg/TJ,52143417.144,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,3166ff15-1158-3629-bd35-e2e72ee3cd2f +2018,Capital Federal,II.1.1,703.68984,TJ,CH4,3.9,kg/TJ,2744.390376,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,c346150d-b622-3e46-9941-1c5b4ef3599b +2018,Capital Federal,II.1.1,703.68984,TJ,N2O,3.9,kg/TJ,2744.390376,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,c346150d-b622-3e46-9941-1c5b4ef3599b +2018,Catamarca,II.1.1,0.03612,TJ,CO2,74100.0,kg/TJ,2676.4919999999997,Gas Oil combustion consumption by public passenger transport,AR-K,SESCO,annual,kg,140c2e54-8df5-3d8a-b1d9-d5696587ecec +2018,Catamarca,II.1.1,0.03612,TJ,CH4,3.9,kg/TJ,0.140868,Gas Oil combustion consumption by public passenger transport,AR-K,SESCO,annual,kg,225e3c3d-be2d-39ad-9ca1-9a35df58990a +2018,Catamarca,II.1.1,0.03612,TJ,N2O,3.9,kg/TJ,0.140868,Gas Oil combustion consumption by public passenger transport,AR-K,SESCO,annual,kg,225e3c3d-be2d-39ad-9ca1-9a35df58990a +2018,Chaco,II.1.1,5.49024,TJ,CO2,74100.0,kg/TJ,406826.784,Gas Oil combustion consumption by public passenger transport,AR-H,SESCO,annual,kg,2af00637-9cdd-325a-9525-38567e305549 +2018,Chaco,II.1.1,5.49024,TJ,CH4,3.9,kg/TJ,21.411936,Gas Oil combustion consumption by public passenger transport,AR-H,SESCO,annual,kg,f9103664-c072-31f0-a23c-6de61ac07cca +2018,Chaco,II.1.1,5.49024,TJ,N2O,3.9,kg/TJ,21.411936,Gas Oil combustion consumption by public passenger transport,AR-H,SESCO,annual,kg,f9103664-c072-31f0-a23c-6de61ac07cca +2018,Chubut,II.1.1,46.37808,TJ,CO2,74100.0,kg/TJ,3436615.7279999997,Gas Oil combustion consumption by public passenger transport,AR-U,SESCO,annual,kg,8bedc79c-538d-310d-a206-65025f477a49 +2018,Chubut,II.1.1,46.37808,TJ,CH4,3.9,kg/TJ,180.87451199999998,Gas Oil combustion consumption by public passenger transport,AR-U,SESCO,annual,kg,1375a8d1-8f31-33b3-ae84-67b73253010e +2018,Chubut,II.1.1,46.37808,TJ,N2O,3.9,kg/TJ,180.87451199999998,Gas Oil combustion consumption by public passenger transport,AR-U,SESCO,annual,kg,1375a8d1-8f31-33b3-ae84-67b73253010e +2018,Corrientes,II.1.1,7.0434,TJ,CO2,74100.0,kg/TJ,521915.94,Gas Oil combustion consumption by public passenger transport,AR-W,SESCO,annual,kg,221629dc-108d-32ba-aed0-10f707058f0e +2018,Corrientes,II.1.1,7.0434,TJ,CH4,3.9,kg/TJ,27.46926,Gas Oil combustion consumption by public passenger transport,AR-W,SESCO,annual,kg,8e869de0-ebf6-3b5c-a766-ac2abcc5904a +2018,Corrientes,II.1.1,7.0434,TJ,N2O,3.9,kg/TJ,27.46926,Gas Oil combustion consumption by public passenger transport,AR-W,SESCO,annual,kg,8e869de0-ebf6-3b5c-a766-ac2abcc5904a +2018,Córdoba,II.1.1,214.914,TJ,CO2,74100.0,kg/TJ,15925127.399999999,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,b4712179-4643-3ba6-9e65-a2c9ba73e32c +2018,Córdoba,II.1.1,214.914,TJ,CH4,3.9,kg/TJ,838.1646,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,05faf7cd-b2e2-3c59-89b2-e4fafd768c6f +2018,Córdoba,II.1.1,214.914,TJ,N2O,3.9,kg/TJ,838.1646,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,05faf7cd-b2e2-3c59-89b2-e4fafd768c6f +2018,Entre Rios,II.1.1,27.34284,TJ,CO2,74100.0,kg/TJ,2026104.444,Gas Oil combustion consumption by public passenger transport,AR-E,SESCO,annual,kg,547678af-efb3-32cc-91ce-186424db5f18 +2018,Entre Rios,II.1.1,27.34284,TJ,CH4,3.9,kg/TJ,106.637076,Gas Oil combustion consumption by public passenger transport,AR-E,SESCO,annual,kg,1dd4aaa9-ad67-35e1-9f14-d7b19095d057 +2018,Entre Rios,II.1.1,27.34284,TJ,N2O,3.9,kg/TJ,106.637076,Gas Oil combustion consumption by public passenger transport,AR-E,SESCO,annual,kg,1dd4aaa9-ad67-35e1-9f14-d7b19095d057 +2018,Formosa,II.1.1,0.07224,TJ,CO2,74100.0,kg/TJ,5352.9839999999995,Gas Oil combustion consumption by public passenger transport,AR-P,SESCO,annual,kg,f4f59301-29bb-3397-a821-3d925d037e51 +2018,Formosa,II.1.1,0.07224,TJ,CH4,3.9,kg/TJ,0.281736,Gas Oil combustion consumption by public passenger transport,AR-P,SESCO,annual,kg,9fd6e638-79a3-3588-8412-63560d92cdb2 +2018,Formosa,II.1.1,0.07224,TJ,N2O,3.9,kg/TJ,0.281736,Gas Oil combustion consumption by public passenger transport,AR-P,SESCO,annual,kg,9fd6e638-79a3-3588-8412-63560d92cdb2 +2018,Jujuy,II.1.1,0.10836,TJ,CO2,74100.0,kg/TJ,8029.476,Gas Oil combustion consumption by public passenger transport,AR-Y,SESCO,annual,kg,2f2bef49-8cda-3d75-b58f-b70bb7287f1c +2018,Jujuy,II.1.1,0.10836,TJ,CH4,3.9,kg/TJ,0.422604,Gas Oil combustion consumption by public passenger transport,AR-Y,SESCO,annual,kg,425adcec-7882-367e-94d7-8815ba9d4ba0 +2018,Jujuy,II.1.1,0.10836,TJ,N2O,3.9,kg/TJ,0.422604,Gas Oil combustion consumption by public passenger transport,AR-Y,SESCO,annual,kg,425adcec-7882-367e-94d7-8815ba9d4ba0 +2018,La Pampa,II.1.1,14.484119999999999,TJ,CO2,74100.0,kg/TJ,1073273.292,Gas Oil combustion consumption by public passenger transport,AR-L,SESCO,annual,kg,383ff8c1-6293-34c5-ba19-b1559588611b +2018,La Pampa,II.1.1,14.484119999999999,TJ,CH4,3.9,kg/TJ,56.48806799999999,Gas Oil combustion consumption by public passenger transport,AR-L,SESCO,annual,kg,05de47d0-81b5-3ac2-8494-649461ab146a +2018,La Pampa,II.1.1,14.484119999999999,TJ,N2O,3.9,kg/TJ,56.48806799999999,Gas Oil combustion consumption by public passenger transport,AR-L,SESCO,annual,kg,05de47d0-81b5-3ac2-8494-649461ab146a +2018,La Rioja,II.1.1,0.18059999999999998,TJ,CO2,74100.0,kg/TJ,13382.46,Gas Oil combustion consumption by public passenger transport,AR-F,SESCO,annual,kg,71f35628-d461-3d92-908a-4f18ec5c0bb1 +2018,La Rioja,II.1.1,0.18059999999999998,TJ,CH4,3.9,kg/TJ,0.70434,Gas Oil combustion consumption by public passenger transport,AR-F,SESCO,annual,kg,248d028d-918f-37d1-8a2c-6a763ef79988 +2018,La Rioja,II.1.1,0.18059999999999998,TJ,N2O,3.9,kg/TJ,0.70434,Gas Oil combustion consumption by public passenger transport,AR-F,SESCO,annual,kg,248d028d-918f-37d1-8a2c-6a763ef79988 +2018,Mendoza,II.1.1,22.719479999999997,TJ,CO2,74100.0,kg/TJ,1683513.4679999999,Gas Oil combustion consumption by public passenger transport,AR-M,SESCO,annual,kg,058cb3e4-ad48-3aa4-8ca9-6d0c3f49e434 +2018,Mendoza,II.1.1,22.719479999999997,TJ,CH4,3.9,kg/TJ,88.605972,Gas Oil combustion consumption by public passenger transport,AR-M,SESCO,annual,kg,13bf67a3-efd6-3c32-a28f-4125c135766d +2018,Mendoza,II.1.1,22.719479999999997,TJ,N2O,3.9,kg/TJ,88.605972,Gas Oil combustion consumption by public passenger transport,AR-M,SESCO,annual,kg,13bf67a3-efd6-3c32-a28f-4125c135766d +2018,Misiones,II.1.1,17.44596,TJ,CO2,74100.0,kg/TJ,1292745.636,Gas Oil combustion consumption by public passenger transport,AR-N,SESCO,annual,kg,97aed8aa-bc5c-3a6b-8c7f-dbf7018ea929 +2018,Misiones,II.1.1,17.44596,TJ,CH4,3.9,kg/TJ,68.039244,Gas Oil combustion consumption by public passenger transport,AR-N,SESCO,annual,kg,0887f42f-6027-3e9b-86a1-6695ba4aa29d +2018,Misiones,II.1.1,17.44596,TJ,N2O,3.9,kg/TJ,68.039244,Gas Oil combustion consumption by public passenger transport,AR-N,SESCO,annual,kg,0887f42f-6027-3e9b-86a1-6695ba4aa29d +2018,Neuquén,II.1.1,10.90824,TJ,CO2,74100.0,kg/TJ,808300.5839999999,Gas Oil combustion consumption by public passenger transport,AR-Q,SESCO,annual,kg,327ac604-d0ba-3878-953a-9ff35a410591 +2018,Neuquén,II.1.1,10.90824,TJ,CH4,3.9,kg/TJ,42.542136,Gas Oil combustion consumption by public passenger transport,AR-Q,SESCO,annual,kg,0a418673-643b-3216-822d-12eed067de56 +2018,Neuquén,II.1.1,10.90824,TJ,N2O,3.9,kg/TJ,42.542136,Gas Oil combustion consumption by public passenger transport,AR-Q,SESCO,annual,kg,0a418673-643b-3216-822d-12eed067de56 +2018,Rio Negro,II.1.1,41.75472,TJ,CO2,74100.0,kg/TJ,3094024.752,Gas Oil combustion consumption by public passenger transport,AR-R,SESCO,annual,kg,6586088e-48a3-3827-9bed-ccf251ac235d +2018,Rio Negro,II.1.1,41.75472,TJ,CH4,3.9,kg/TJ,162.84340799999998,Gas Oil combustion consumption by public passenger transport,AR-R,SESCO,annual,kg,5355ca97-bc91-3596-ad1e-3822048ad53f +2018,Rio Negro,II.1.1,41.75472,TJ,N2O,3.9,kg/TJ,162.84340799999998,Gas Oil combustion consumption by public passenger transport,AR-R,SESCO,annual,kg,5355ca97-bc91-3596-ad1e-3822048ad53f +2018,Salta,II.1.1,51.14592,TJ,CO2,74100.0,kg/TJ,3789912.672,Gas Oil combustion consumption by public passenger transport,AR-A,SESCO,annual,kg,71a445ab-f147-3967-b4ce-2a4a6ea661dc +2018,Salta,II.1.1,51.14592,TJ,CH4,3.9,kg/TJ,199.46908799999997,Gas Oil combustion consumption by public passenger transport,AR-A,SESCO,annual,kg,f3d06568-f3b8-398f-9891-320032eb71cc +2018,Salta,II.1.1,51.14592,TJ,N2O,3.9,kg/TJ,199.46908799999997,Gas Oil combustion consumption by public passenger transport,AR-A,SESCO,annual,kg,f3d06568-f3b8-398f-9891-320032eb71cc +2018,San Juan,II.1.1,0.03612,TJ,CO2,74100.0,kg/TJ,2676.4919999999997,Gas Oil combustion consumption by public passenger transport,AR-J,SESCO,annual,kg,f1c36709-d37a-3179-ace9-0637f6c05a1f +2018,San Juan,II.1.1,0.03612,TJ,CH4,3.9,kg/TJ,0.140868,Gas Oil combustion consumption by public passenger transport,AR-J,SESCO,annual,kg,5e76d161-edcd-3406-a470-b0dd11894374 +2018,San Juan,II.1.1,0.03612,TJ,N2O,3.9,kg/TJ,0.140868,Gas Oil combustion consumption by public passenger transport,AR-J,SESCO,annual,kg,5e76d161-edcd-3406-a470-b0dd11894374 +2018,San Luis,II.1.1,0.28896,TJ,CO2,74100.0,kg/TJ,21411.935999999998,Gas Oil combustion consumption by public passenger transport,AR-D,SESCO,annual,kg,72d043a2-68e2-365f-8cc4-12717010f16b +2018,San Luis,II.1.1,0.28896,TJ,CH4,3.9,kg/TJ,1.126944,Gas Oil combustion consumption by public passenger transport,AR-D,SESCO,annual,kg,082f2789-22a0-35e4-b33b-02c355e293fe +2018,San Luis,II.1.1,0.28896,TJ,N2O,3.9,kg/TJ,1.126944,Gas Oil combustion consumption by public passenger transport,AR-D,SESCO,annual,kg,082f2789-22a0-35e4-b33b-02c355e293fe +2018,Santa Fe,II.1.1,260.20848,TJ,CO2,74100.0,kg/TJ,19281448.368,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,bf256d2f-d889-3710-8427-7884bc1a4f4c +2018,Santa Fe,II.1.1,260.20848,TJ,CH4,3.9,kg/TJ,1014.813072,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,4a21e5f2-f69d-3f42-ae93-2be4718d80e7 +2018,Santa Fe,II.1.1,260.20848,TJ,N2O,3.9,kg/TJ,1014.813072,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,4a21e5f2-f69d-3f42-ae93-2be4718d80e7 +2018,Santiago del Estero,II.1.1,0.86688,TJ,CO2,74100.0,kg/TJ,64235.808,Gas Oil combustion consumption by public passenger transport,AR-G,SESCO,annual,kg,c38b5acc-d360-32d8-9607-5e85c5d38490 +2018,Santiago del Estero,II.1.1,0.86688,TJ,CH4,3.9,kg/TJ,3.380832,Gas Oil combustion consumption by public passenger transport,AR-G,SESCO,annual,kg,235031e6-3bfa-34bb-bfa7-87dfe5447339 +2018,Santiago del Estero,II.1.1,0.86688,TJ,N2O,3.9,kg/TJ,3.380832,Gas Oil combustion consumption by public passenger transport,AR-G,SESCO,annual,kg,235031e6-3bfa-34bb-bfa7-87dfe5447339 +2018,Tucuman,II.1.1,76.32155999999999,TJ,CO2,74100.0,kg/TJ,5655427.595999999,Gas Oil combustion consumption by public passenger transport,AR-T,SESCO,annual,kg,082afaf3-ef37-3192-a388-180619d26025 +2018,Tucuman,II.1.1,76.32155999999999,TJ,CH4,3.9,kg/TJ,297.65408399999995,Gas Oil combustion consumption by public passenger transport,AR-T,SESCO,annual,kg,489c4d30-fb93-3e0b-8fd4-dbb835d32f22 +2018,Tucuman,II.1.1,76.32155999999999,TJ,N2O,3.9,kg/TJ,297.65408399999995,Gas Oil combustion consumption by public passenger transport,AR-T,SESCO,annual,kg,489c4d30-fb93-3e0b-8fd4-dbb835d32f22 +2018,Buenos Aires,II.1.1,329.26992,TJ,CO2,74100.0,kg/TJ,24398901.072,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,3f7343c0-598a-34ba-8039-af183a3b72cf +2018,Buenos Aires,II.1.1,329.26992,TJ,CH4,3.9,kg/TJ,1284.1526880000001,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,c5c6f1fb-1557-3387-938f-5dbe81d6d206 +2018,Buenos Aires,II.1.1,329.26992,TJ,N2O,3.9,kg/TJ,1284.1526880000001,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,c5c6f1fb-1557-3387-938f-5dbe81d6d206 +2018,Capital Federal,II.1.1,166.26036,TJ,CO2,74100.0,kg/TJ,12319892.675999999,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,0ecf6183-8da9-376b-a813-125e22bbe7bd +2018,Capital Federal,II.1.1,166.26036,TJ,CH4,3.9,kg/TJ,648.415404,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,f2e7ac04-b76f-3ce2-bf0f-9c94a14f2766 +2018,Capital Federal,II.1.1,166.26036,TJ,N2O,3.9,kg/TJ,648.415404,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,f2e7ac04-b76f-3ce2-bf0f-9c94a14f2766 +2018,Chaco,II.1.1,0.07224,TJ,CO2,74100.0,kg/TJ,5352.9839999999995,Gas Oil combustion consumption by public passenger transport,AR-H,SESCO,annual,kg,9fec9256-e6de-33a3-9299-24c0d9147558 +2018,Chaco,II.1.1,0.07224,TJ,CH4,3.9,kg/TJ,0.281736,Gas Oil combustion consumption by public passenger transport,AR-H,SESCO,annual,kg,7479c1e2-0224-32cb-aa47-6eb9710dd581 +2018,Chaco,II.1.1,0.07224,TJ,N2O,3.9,kg/TJ,0.281736,Gas Oil combustion consumption by public passenger transport,AR-H,SESCO,annual,kg,7479c1e2-0224-32cb-aa47-6eb9710dd581 +2018,Chubut,II.1.1,8.95776,TJ,CO2,74100.0,kg/TJ,663770.0160000001,Gas Oil combustion consumption by public passenger transport,AR-U,SESCO,annual,kg,72d268de-7399-3dde-87b5-fe7fb8dcb819 +2018,Chubut,II.1.1,8.95776,TJ,CH4,3.9,kg/TJ,34.935264000000004,Gas Oil combustion consumption by public passenger transport,AR-U,SESCO,annual,kg,8ad11356-7091-31d5-b6fb-69235313a3ea +2018,Chubut,II.1.1,8.95776,TJ,N2O,3.9,kg/TJ,34.935264000000004,Gas Oil combustion consumption by public passenger transport,AR-U,SESCO,annual,kg,8ad11356-7091-31d5-b6fb-69235313a3ea +2018,Corrientes,II.1.1,3.0702,TJ,CO2,74100.0,kg/TJ,227501.81999999998,Gas Oil combustion consumption by public passenger transport,AR-W,SESCO,annual,kg,6f51ac90-140c-318c-b7cb-ce739af3ddbc +2018,Corrientes,II.1.1,3.0702,TJ,CH4,3.9,kg/TJ,11.97378,Gas Oil combustion consumption by public passenger transport,AR-W,SESCO,annual,kg,3abcf3b3-b06a-39da-959f-b42ab6954ad0 +2018,Corrientes,II.1.1,3.0702,TJ,N2O,3.9,kg/TJ,11.97378,Gas Oil combustion consumption by public passenger transport,AR-W,SESCO,annual,kg,3abcf3b3-b06a-39da-959f-b42ab6954ad0 +2018,Córdoba,II.1.1,12.17244,TJ,CO2,74100.0,kg/TJ,901977.804,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,919086b8-3365-33ec-860b-a5dba2a39a11 +2018,Córdoba,II.1.1,12.17244,TJ,CH4,3.9,kg/TJ,47.472516,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,9fff5b47-b755-38b8-bcd0-21fc10a24ccd +2018,Córdoba,II.1.1,12.17244,TJ,N2O,3.9,kg/TJ,47.472516,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,9fff5b47-b755-38b8-bcd0-21fc10a24ccd +2018,Entre Rios,II.1.1,5.56248,TJ,CO2,74100.0,kg/TJ,412179.768,Gas Oil combustion consumption by public passenger transport,AR-E,SESCO,annual,kg,1a53c920-a152-39e0-8ced-341bcc0a010f +2018,Entre Rios,II.1.1,5.56248,TJ,CH4,3.9,kg/TJ,21.693672,Gas Oil combustion consumption by public passenger transport,AR-E,SESCO,annual,kg,b0107ce6-d649-3d67-95e4-6727ec49244f +2018,Entre Rios,II.1.1,5.56248,TJ,N2O,3.9,kg/TJ,21.693672,Gas Oil combustion consumption by public passenger transport,AR-E,SESCO,annual,kg,b0107ce6-d649-3d67-95e4-6727ec49244f +2018,Formosa,II.1.1,0.07224,TJ,CO2,74100.0,kg/TJ,5352.9839999999995,Gas Oil combustion consumption by public passenger transport,AR-P,SESCO,annual,kg,f4f59301-29bb-3397-a821-3d925d037e51 +2018,Formosa,II.1.1,0.07224,TJ,CH4,3.9,kg/TJ,0.281736,Gas Oil combustion consumption by public passenger transport,AR-P,SESCO,annual,kg,9fd6e638-79a3-3588-8412-63560d92cdb2 +2018,Formosa,II.1.1,0.07224,TJ,N2O,3.9,kg/TJ,0.281736,Gas Oil combustion consumption by public passenger transport,AR-P,SESCO,annual,kg,9fd6e638-79a3-3588-8412-63560d92cdb2 +2018,Jujuy,II.1.1,0.07224,TJ,CO2,74100.0,kg/TJ,5352.9839999999995,Gas Oil combustion consumption by public passenger transport,AR-Y,SESCO,annual,kg,a016bbf8-b467-372f-8664-0d9e25bd4135 +2018,Jujuy,II.1.1,0.07224,TJ,CH4,3.9,kg/TJ,0.281736,Gas Oil combustion consumption by public passenger transport,AR-Y,SESCO,annual,kg,aeedfadb-977c-36b5-a64c-85425e38197c +2018,Jujuy,II.1.1,0.07224,TJ,N2O,3.9,kg/TJ,0.281736,Gas Oil combustion consumption by public passenger transport,AR-Y,SESCO,annual,kg,aeedfadb-977c-36b5-a64c-85425e38197c +2018,La Pampa,II.1.1,18.81852,TJ,CO2,74100.0,kg/TJ,1394452.332,Gas Oil combustion consumption by public passenger transport,AR-L,SESCO,annual,kg,ffcac0aa-fb32-398a-9ecd-198aa3a4e7af +2018,La Pampa,II.1.1,18.81852,TJ,CH4,3.9,kg/TJ,73.392228,Gas Oil combustion consumption by public passenger transport,AR-L,SESCO,annual,kg,4151a631-fbc4-3057-9d7f-6d19b16d2b8a +2018,La Pampa,II.1.1,18.81852,TJ,N2O,3.9,kg/TJ,73.392228,Gas Oil combustion consumption by public passenger transport,AR-L,SESCO,annual,kg,4151a631-fbc4-3057-9d7f-6d19b16d2b8a +2018,Mendoza,II.1.1,0.39732,TJ,CO2,74100.0,kg/TJ,29441.412,Gas Oil combustion consumption by public passenger transport,AR-M,SESCO,annual,kg,ebe658f6-7edc-3cda-ba1d-07072281fd84 +2018,Mendoza,II.1.1,0.39732,TJ,CH4,3.9,kg/TJ,1.549548,Gas Oil combustion consumption by public passenger transport,AR-M,SESCO,annual,kg,ca6b7f74-1060-3c77-b96f-9a15fce94431 +2018,Mendoza,II.1.1,0.39732,TJ,N2O,3.9,kg/TJ,1.549548,Gas Oil combustion consumption by public passenger transport,AR-M,SESCO,annual,kg,ca6b7f74-1060-3c77-b96f-9a15fce94431 +2018,Misiones,II.1.1,11.66676,TJ,CO2,74100.0,kg/TJ,864506.916,Gas Oil combustion consumption by public passenger transport,AR-N,SESCO,annual,kg,c4a81e52-9037-3fec-9db3-853316a45e88 +2018,Misiones,II.1.1,11.66676,TJ,CH4,3.9,kg/TJ,45.500364,Gas Oil combustion consumption by public passenger transport,AR-N,SESCO,annual,kg,975f8858-2101-3a54-8102-f77cc326be5d +2018,Misiones,II.1.1,11.66676,TJ,N2O,3.9,kg/TJ,45.500364,Gas Oil combustion consumption by public passenger transport,AR-N,SESCO,annual,kg,975f8858-2101-3a54-8102-f77cc326be5d +2018,Neuquén,II.1.1,7.5851999999999995,TJ,CO2,74100.0,kg/TJ,562063.32,Gas Oil combustion consumption by public passenger transport,AR-Q,SESCO,annual,kg,3b11a368-48a9-34d3-89a9-a8f71b3166b1 +2018,Neuquén,II.1.1,7.5851999999999995,TJ,CH4,3.9,kg/TJ,29.582279999999997,Gas Oil combustion consumption by public passenger transport,AR-Q,SESCO,annual,kg,fa37326b-bca4-361d-81e7-61342de2dbe3 +2018,Neuquén,II.1.1,7.5851999999999995,TJ,N2O,3.9,kg/TJ,29.582279999999997,Gas Oil combustion consumption by public passenger transport,AR-Q,SESCO,annual,kg,fa37326b-bca4-361d-81e7-61342de2dbe3 +2018,Rio Negro,II.1.1,34.602959999999996,TJ,CO2,74100.0,kg/TJ,2564079.3359999997,Gas Oil combustion consumption by public passenger transport,AR-R,SESCO,annual,kg,4583803d-c14a-35dd-9219-2137d5b1edfb +2018,Rio Negro,II.1.1,34.602959999999996,TJ,CH4,3.9,kg/TJ,134.95154399999998,Gas Oil combustion consumption by public passenger transport,AR-R,SESCO,annual,kg,79a4cf11-000e-3cc5-b62e-7c4b387bdd95 +2018,Rio Negro,II.1.1,34.602959999999996,TJ,N2O,3.9,kg/TJ,134.95154399999998,Gas Oil combustion consumption by public passenger transport,AR-R,SESCO,annual,kg,79a4cf11-000e-3cc5-b62e-7c4b387bdd95 +2018,Salta,II.1.1,0.25284,TJ,CO2,74100.0,kg/TJ,18735.444,Gas Oil combustion consumption by public passenger transport,AR-A,SESCO,annual,kg,445798c6-1052-3815-aa5e-b2bd3e829503 +2018,Salta,II.1.1,0.25284,TJ,CH4,3.9,kg/TJ,0.9860760000000001,Gas Oil combustion consumption by public passenger transport,AR-A,SESCO,annual,kg,8057f7ef-0a9e-3651-a925-bbf3455fa02f +2018,Salta,II.1.1,0.25284,TJ,N2O,3.9,kg/TJ,0.9860760000000001,Gas Oil combustion consumption by public passenger transport,AR-A,SESCO,annual,kg,8057f7ef-0a9e-3651-a925-bbf3455fa02f +2018,San Juan,II.1.1,0.03612,TJ,CO2,74100.0,kg/TJ,2676.4919999999997,Gas Oil combustion consumption by public passenger transport,AR-J,SESCO,annual,kg,f1c36709-d37a-3179-ace9-0637f6c05a1f +2018,San Juan,II.1.1,0.03612,TJ,CH4,3.9,kg/TJ,0.140868,Gas Oil combustion consumption by public passenger transport,AR-J,SESCO,annual,kg,5e76d161-edcd-3406-a470-b0dd11894374 +2018,San Juan,II.1.1,0.03612,TJ,N2O,3.9,kg/TJ,0.140868,Gas Oil combustion consumption by public passenger transport,AR-J,SESCO,annual,kg,5e76d161-edcd-3406-a470-b0dd11894374 +2018,San Luis,II.1.1,0.03612,TJ,CO2,74100.0,kg/TJ,2676.4919999999997,Gas Oil combustion consumption by public passenger transport,AR-D,SESCO,annual,kg,d1a627b5-9e09-3e53-a6ad-dea571646ce9 +2018,San Luis,II.1.1,0.03612,TJ,CH4,3.9,kg/TJ,0.140868,Gas Oil combustion consumption by public passenger transport,AR-D,SESCO,annual,kg,c6a9bf1d-3e70-3e85-a609-9e2f1e66173d +2018,San Luis,II.1.1,0.03612,TJ,N2O,3.9,kg/TJ,0.140868,Gas Oil combustion consumption by public passenger transport,AR-D,SESCO,annual,kg,c6a9bf1d-3e70-3e85-a609-9e2f1e66173d +2018,Santa Fe,II.1.1,88.6746,TJ,CO2,74100.0,kg/TJ,6570787.859999999,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,72a3d416-ba0d-3139-aef5-7651cd8e6b22 +2018,Santa Fe,II.1.1,88.6746,TJ,CH4,3.9,kg/TJ,345.83094,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,d69387e7-56ac-364d-b739-c7da4ffd9de0 +2018,Santa Fe,II.1.1,88.6746,TJ,N2O,3.9,kg/TJ,345.83094,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,d69387e7-56ac-364d-b739-c7da4ffd9de0 +2018,Santiago del Estero,II.1.1,0.18059999999999998,TJ,CO2,74100.0,kg/TJ,13382.46,Gas Oil combustion consumption by public passenger transport,AR-G,SESCO,annual,kg,3c8c274a-f4c1-32eb-b1d8-294aef5a8545 +2018,Santiago del Estero,II.1.1,0.18059999999999998,TJ,CH4,3.9,kg/TJ,0.70434,Gas Oil combustion consumption by public passenger transport,AR-G,SESCO,annual,kg,57674291-16cd-3d81-b3c2-f42e9b17a22d +2018,Santiago del Estero,II.1.1,0.18059999999999998,TJ,N2O,3.9,kg/TJ,0.70434,Gas Oil combustion consumption by public passenger transport,AR-G,SESCO,annual,kg,57674291-16cd-3d81-b3c2-f42e9b17a22d +2018,Tucuman,II.1.1,0.03612,TJ,CO2,74100.0,kg/TJ,2676.4919999999997,Gas Oil combustion consumption by public passenger transport,AR-T,SESCO,annual,kg,b52de9dd-f832-3bc4-828c-b27ffb31d294 +2018,Tucuman,II.1.1,0.03612,TJ,CH4,3.9,kg/TJ,0.140868,Gas Oil combustion consumption by public passenger transport,AR-T,SESCO,annual,kg,ed0e8af5-4f73-3538-bbbc-56ce6cf73097 +2018,Tucuman,II.1.1,0.03612,TJ,N2O,3.9,kg/TJ,0.140868,Gas Oil combustion consumption by public passenger transport,AR-T,SESCO,annual,kg,ed0e8af5-4f73-3538-bbbc-56ce6cf73097 +2018,Buenos Aires,II.1.1,0.034265,TJ,CO2,73300.0,kg/TJ,2511.6245,Naphtha combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,da207a9a-c401-36a1-b813-a75d83aa1e40 +2018,Buenos Aires,II.1.1,0.034265,TJ,CH4,0.5,kg/TJ,0.0171325,Naphtha combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,9ae1d432-8fdc-32b3-b35a-79a503b0ab35 +2018,Buenos Aires,II.1.1,0.034265,TJ,N2O,2.0,kg/TJ,0.06853,Naphtha combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,9fb7bfa1-a6a7-3eed-a7ea-24a783ab1383 +2018,Capital Federal,II.1.1,0.034265,TJ,CO2,73300.0,kg/TJ,2511.6245,Naphtha combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,2ef3c099-529e-3ff1-abcc-8d940dc3aa87 +2018,Capital Federal,II.1.1,0.034265,TJ,CH4,0.5,kg/TJ,0.0171325,Naphtha combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,a32620fa-bdcf-3b3e-8e18-935e2a6a3f23 +2018,Capital Federal,II.1.1,0.034265,TJ,N2O,2.0,kg/TJ,0.06853,Naphtha combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,9708461e-e760-304f-a39b-7982a36382c5 +2018,Salta,II.1.1,0.75383,TJ,CO2,73300.0,kg/TJ,55255.739,Naphtha combustion consumption by public passenger transport,AR-A,SESCO,annual,kg,c80d47c0-3176-3e31-9911-576e2db21ab7 +2018,Salta,II.1.1,0.75383,TJ,CH4,0.5,kg/TJ,0.376915,Naphtha combustion consumption by public passenger transport,AR-A,SESCO,annual,kg,b7ff6197-30b0-3780-89d2-cb65729104e7 +2018,Salta,II.1.1,0.75383,TJ,N2O,2.0,kg/TJ,1.50766,Naphtha combustion consumption by public passenger transport,AR-A,SESCO,annual,kg,aa185c3c-282c-3965-ae9c-c22662fb99ae +2018,Santa Fe,II.1.1,0.23985499999999998,TJ,CO2,73300.0,kg/TJ,17581.371499999997,Naphtha combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,1545bba2-36d7-3791-9f6f-6544da637e89 +2018,Santa Fe,II.1.1,0.23985499999999998,TJ,CH4,0.5,kg/TJ,0.11992749999999999,Naphtha combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,c1922d73-cf2e-3d2f-8a4b-5f2319157321 +2018,Santa Fe,II.1.1,0.23985499999999998,TJ,N2O,2.0,kg/TJ,0.47970999999999997,Naphtha combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,4464fa33-cdc2-3fa7-8f2c-804e01fed530 +2018,Buenos Aires,II.1.1,0.034265,TJ,CO2,73300.0,kg/TJ,2511.6245,Naphtha combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,da207a9a-c401-36a1-b813-a75d83aa1e40 +2018,Buenos Aires,II.1.1,0.034265,TJ,CH4,0.5,kg/TJ,0.0171325,Naphtha combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,9ae1d432-8fdc-32b3-b35a-79a503b0ab35 +2018,Buenos Aires,II.1.1,0.034265,TJ,N2O,2.0,kg/TJ,0.06853,Naphtha combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,9fb7bfa1-a6a7-3eed-a7ea-24a783ab1383 +2018,Capital Federal,II.1.1,0.034265,TJ,CO2,73300.0,kg/TJ,2511.6245,Naphtha combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,2ef3c099-529e-3ff1-abcc-8d940dc3aa87 +2018,Capital Federal,II.1.1,0.034265,TJ,CH4,0.5,kg/TJ,0.0171325,Naphtha combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,a32620fa-bdcf-3b3e-8e18-935e2a6a3f23 +2018,Capital Federal,II.1.1,0.034265,TJ,N2O,2.0,kg/TJ,0.06853,Naphtha combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,9708461e-e760-304f-a39b-7982a36382c5 +2018,Córdoba,II.1.1,0.034265,TJ,CO2,73300.0,kg/TJ,2511.6245,Naphtha combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,2214027b-c809-34d2-81ac-873dd7fdda96 +2018,Córdoba,II.1.1,0.034265,TJ,CH4,0.5,kg/TJ,0.0171325,Naphtha combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,c0a71c69-abea-34d7-807d-e78d311271fe +2018,Córdoba,II.1.1,0.034265,TJ,N2O,2.0,kg/TJ,0.06853,Naphtha combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,7631451b-e6e1-3120-aa47-66564218911e +2018,Santa Fe,II.1.1,0.102795,TJ,CO2,73300.0,kg/TJ,7534.8735,Naphtha combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,4e6b7f0b-eb3a-3e67-9d8f-9906a928ee42 +2018,Santa Fe,II.1.1,0.102795,TJ,CH4,0.5,kg/TJ,0.0513975,Naphtha combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,41bde552-8f76-35f0-b6e4-ce0a90f63d87 +2018,Santa Fe,II.1.1,0.102795,TJ,N2O,2.0,kg/TJ,0.20559,Naphtha combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,c44fc14e-5bd9-34e9-8043-44ae588beac7 +2018,Buenos Aires,II.5.1,118.75743096,TJ,CO2,74100.0,kg/TJ,8799925.634135999,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,0f8a4c44-cb57-352f-a4bb-237fd1817f93 +2018,Buenos Aires,II.5.1,118.75743096,TJ,CH4,3.9,kg/TJ,463.15398074399997,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,e4d490b3-11dc-38be-89ed-66726a01a4af +2018,Buenos Aires,II.5.1,118.75743096,TJ,N2O,3.9,kg/TJ,463.15398074399997,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,e4d490b3-11dc-38be-89ed-66726a01a4af +2018,Córdoba,II.5.1,17.24899764,TJ,CO2,74100.0,kg/TJ,1278150.7251239999,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,0af6e936-3a04-34c0-a7cf-d8f29e758568 +2018,Córdoba,II.5.1,17.24899764,TJ,CH4,3.9,kg/TJ,67.271090796,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,4e8845f0-94e9-357a-9a2b-1110998709e2 +2018,Córdoba,II.5.1,17.24899764,TJ,N2O,3.9,kg/TJ,67.271090796,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,4e8845f0-94e9-357a-9a2b-1110998709e2 +2018,Entre Rios,II.5.1,1.28771412,TJ,CO2,74100.0,kg/TJ,95419.61629199999,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,d30ec92b-7daf-3141-83fd-3aaa15f217f5 +2018,Entre Rios,II.5.1,1.28771412,TJ,CH4,3.9,kg/TJ,5.022085068,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,26ff203d-2e4d-39fb-b0ca-b2cb628736e0 +2018,Entre Rios,II.5.1,1.28771412,TJ,N2O,3.9,kg/TJ,5.022085068,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,26ff203d-2e4d-39fb-b0ca-b2cb628736e0 +2018,Rio Negro,II.5.1,0.9275254799999999,TJ,CO2,74100.0,kg/TJ,68729.63806799999,Gas Oil combustion consumption by agriculture machines,AR-R,SESCO,annual,kg,46db6f60-0308-3a65-96fa-9971b417413a +2018,Rio Negro,II.5.1,0.9275254799999999,TJ,CH4,3.9,kg/TJ,3.6173493719999996,Gas Oil combustion consumption by agriculture machines,AR-R,SESCO,annual,kg,eb12a538-64b3-3195-8aac-51016f348101 +2018,Rio Negro,II.5.1,0.9275254799999999,TJ,N2O,3.9,kg/TJ,3.6173493719999996,Gas Oil combustion consumption by agriculture machines,AR-R,SESCO,annual,kg,eb12a538-64b3-3195-8aac-51016f348101 +2018,Buenos Aires,II.5.1,4.917061765000001,TJ,CO2,73300.0,kg/TJ,360420.62737450004,Naphtha combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,acebeb2d-5660-3f8d-9a97-709bdd4bf258 +2018,Buenos Aires,II.5.1,4.917061765000001,TJ,CH4,0.5,kg/TJ,2.4585308825000003,Naphtha combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,0a5f1d32-cc33-3075-8e59-811f1e88c284 +2018,Buenos Aires,II.5.1,4.917061765000001,TJ,N2O,2.0,kg/TJ,9.834123530000001,Naphtha combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,210d5aaf-4fc2-3449-9cba-4be6e522e320 +2018,Rio Negro,II.5.1,0.4731996499999999,TJ,CO2,73300.0,kg/TJ,34685.53434499999,Naphtha combustion consumption by agriculture machines,AR-R,SESCO,annual,kg,5136aa2d-1e4b-3168-bb99-188f5fc7aec9 +2018,Rio Negro,II.5.1,0.4731996499999999,TJ,CH4,0.5,kg/TJ,0.23659982499999996,Naphtha combustion consumption by agriculture machines,AR-R,SESCO,annual,kg,02fbd65a-52a0-3373-a095-7e3ac51846cc +2018,Rio Negro,II.5.1,0.4731996499999999,TJ,N2O,2.0,kg/TJ,0.9463992999999998,Naphtha combustion consumption by agriculture machines,AR-R,SESCO,annual,kg,b0d73f03-9bc5-3fe5-8087-f07be02de975 +2018,Buenos Aires,II.5.1,0.74848466,TJ,CO2,73300.0,kg/TJ,54863.925578,Naphtha combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,03c29ac9-bad7-3011-9339-cbb1a2675873 +2018,Buenos Aires,II.5.1,0.74848466,TJ,CH4,0.5,kg/TJ,0.37424233,Naphtha combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,7591d698-4f85-349e-a858-2b8023a0633a +2018,Buenos Aires,II.5.1,0.74848466,TJ,N2O,2.0,kg/TJ,1.49696932,Naphtha combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,42b5dcb0-c817-3589-9d8b-eb7f085f7e53 +2018,Buenos Aires,II.1.1,78.73777128,TJ,CO2,74100.0,kg/TJ,5834468.851848001,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,8c4c1222-f8c4-3e10-a4b2-bfa6a45d3a7b +2018,Buenos Aires,II.1.1,78.73777128,TJ,CH4,3.9,kg/TJ,307.077307992,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,73bae360-edb6-33f7-a60e-ac0faa2cefb5 +2018,Buenos Aires,II.1.1,78.73777128,TJ,N2O,3.9,kg/TJ,307.077307992,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,73bae360-edb6-33f7-a60e-ac0faa2cefb5 +2018,Chubut,II.1.1,2.034459,TJ,CO2,74100.0,kg/TJ,150753.4119,Gas Oil combustion consumption by freight transport,AR-U,SESCO,annual,kg,76480f18-067e-3139-93c9-eed7db2d99f7 +2018,Chubut,II.1.1,2.034459,TJ,CH4,3.9,kg/TJ,7.9343901,Gas Oil combustion consumption by freight transport,AR-U,SESCO,annual,kg,f65d1896-e901-3a30-955b-cb6cf4e8096d +2018,Chubut,II.1.1,2.034459,TJ,N2O,3.9,kg/TJ,7.9343901,Gas Oil combustion consumption by freight transport,AR-U,SESCO,annual,kg,f65d1896-e901-3a30-955b-cb6cf4e8096d +2018,San Luis,II.1.1,28.058882880000002,TJ,CO2,74100.0,kg/TJ,2079163.2214080002,Gas Oil combustion consumption by freight transport,AR-D,SESCO,annual,kg,15e5a2ad-2330-3858-81f7-0b4cbd71968c +2018,San Luis,II.1.1,28.058882880000002,TJ,CH4,3.9,kg/TJ,109.429643232,Gas Oil combustion consumption by freight transport,AR-D,SESCO,annual,kg,4e936f3d-b774-35b2-a69b-e12e95d858d3 +2018,San Luis,II.1.1,28.058882880000002,TJ,N2O,3.9,kg/TJ,109.429643232,Gas Oil combustion consumption by freight transport,AR-D,SESCO,annual,kg,4e936f3d-b774-35b2-a69b-e12e95d858d3 +2018,Buenos Aires,II.1.1,1.89590268,TJ,CO2,74100.0,kg/TJ,140486.388588,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,a14ce3d8-fa88-31c0-bb14-88396c8204c4 +2018,Buenos Aires,II.1.1,1.89590268,TJ,CH4,3.9,kg/TJ,7.394020452,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,84c5d345-b764-3681-b7cd-637fe1ad12bf +2018,Buenos Aires,II.1.1,1.89590268,TJ,N2O,3.9,kg/TJ,7.394020452,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,84c5d345-b764-3681-b7cd-637fe1ad12bf +2018,Buenos Aires,II.1.1,136.77296724,TJ,CO2,74100.0,kg/TJ,10134876.872484,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,d0abe782-b2df-3707-b297-b8ee88811212 +2018,Buenos Aires,II.1.1,136.77296724,TJ,CH4,3.9,kg/TJ,533.414572236,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,70fa0847-360a-3742-8e1c-d4e5a8fbe478 +2018,Buenos Aires,II.1.1,136.77296724,TJ,N2O,3.9,kg/TJ,533.414572236,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,70fa0847-360a-3742-8e1c-d4e5a8fbe478 +2018,Capital Federal,II.1.1,21.836057040000004,TJ,CO2,74100.0,kg/TJ,1618051.8266640003,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,93311012-3a99-3d46-b4ef-ba037e6e1e9a +2018,Capital Federal,II.1.1,21.836057040000004,TJ,CH4,3.9,kg/TJ,85.16062245600001,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,d50c8bb5-105f-3be2-9020-3ed6a01c59e2 +2018,Capital Federal,II.1.1,21.836057040000004,TJ,N2O,3.9,kg/TJ,85.16062245600001,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,d50c8bb5-105f-3be2-9020-3ed6a01c59e2 +2018,Chubut,II.1.1,11.611460280000001,TJ,CO2,74100.0,kg/TJ,860409.2067480001,Gas Oil combustion consumption by public passenger transport,AR-U,SESCO,annual,kg,31846296-75f5-325a-94c0-9baf3e45d467 +2018,Chubut,II.1.1,11.611460280000001,TJ,CH4,3.9,kg/TJ,45.284695092,Gas Oil combustion consumption by public passenger transport,AR-U,SESCO,annual,kg,37656fc7-991a-373d-a401-a182cf44c3e0 +2018,Chubut,II.1.1,11.611460280000001,TJ,N2O,3.9,kg/TJ,45.284695092,Gas Oil combustion consumption by public passenger transport,AR-U,SESCO,annual,kg,37656fc7-991a-373d-a401-a182cf44c3e0 +2018,Córdoba,II.1.1,81.14726423999998,TJ,CO2,74100.0,kg/TJ,6013012.280183999,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,4f6ba596-fa79-394a-9124-5033bbcea282 +2018,Córdoba,II.1.1,81.14726423999998,TJ,CH4,3.9,kg/TJ,316.4743305359999,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,c9333c35-defb-3e1b-8db0-25afce5a33af +2018,Córdoba,II.1.1,81.14726423999998,TJ,N2O,3.9,kg/TJ,316.4743305359999,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,c9333c35-defb-3e1b-8db0-25afce5a33af +2018,Neuquén,II.1.1,7.350528359999999,TJ,CO2,74100.0,kg/TJ,544674.151476,Gas Oil combustion consumption by public passenger transport,AR-Q,SESCO,annual,kg,0a75bdd6-1766-3ea7-8e5f-50ad47d877d5 +2018,Neuquén,II.1.1,7.350528359999999,TJ,CH4,3.9,kg/TJ,28.667060603999996,Gas Oil combustion consumption by public passenger transport,AR-Q,SESCO,annual,kg,38d5f9c7-ebff-3db0-b5af-0e975e3d7f70 +2018,Neuquén,II.1.1,7.350528359999999,TJ,N2O,3.9,kg/TJ,28.667060603999996,Gas Oil combustion consumption by public passenger transport,AR-Q,SESCO,annual,kg,38d5f9c7-ebff-3db0-b5af-0e975e3d7f70 +2018,Rio Negro,II.1.1,38.02832796,TJ,CO2,74100.0,kg/TJ,2817899.101836,Gas Oil combustion consumption by public passenger transport,AR-R,SESCO,annual,kg,8ef17ff6-340a-3db5-8a6f-d09602c7827d +2018,Rio Negro,II.1.1,38.02832796,TJ,CH4,3.9,kg/TJ,148.310479044,Gas Oil combustion consumption by public passenger transport,AR-R,SESCO,annual,kg,19634cf2-fd02-329c-9394-7e19d2457594 +2018,Rio Negro,II.1.1,38.02832796,TJ,N2O,3.9,kg/TJ,148.310479044,Gas Oil combustion consumption by public passenger transport,AR-R,SESCO,annual,kg,19634cf2-fd02-329c-9394-7e19d2457594 +2018,Santa Fe,II.1.1,2.2444606799999995,TJ,CO2,74100.0,kg/TJ,166314.53638799998,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,37ef8077-34e5-348d-a650-d71341bd01ff +2018,Santa Fe,II.1.1,2.2444606799999995,TJ,CH4,3.9,kg/TJ,8.753396651999998,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,098ef206-b8c3-3891-b2d7-7750c7f0b639 +2018,Santa Fe,II.1.1,2.2444606799999995,TJ,N2O,3.9,kg/TJ,8.753396651999998,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,098ef206-b8c3-3891-b2d7-7750c7f0b639 +2018,Buenos Aires,II.1.1,21.531132,TJ,CO2,74100.0,kg/TJ,1595456.8812,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,aff04f93-5f5b-38cb-8891-80992d42c7a2 +2018,Buenos Aires,II.1.1,21.531132,TJ,CH4,3.9,kg/TJ,83.97141479999999,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,4e35bf06-294b-3cba-80ab-60853d6e0874 +2018,Buenos Aires,II.1.1,21.531132,TJ,N2O,3.9,kg/TJ,83.97141479999999,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,4e35bf06-294b-3cba-80ab-60853d6e0874 +2018,Capital Federal,II.1.1,0.35816592,TJ,CO2,74100.0,kg/TJ,26540.094672000003,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,6135c557-3bab-3ade-99fa-6c1ec7f351a1 +2018,Capital Federal,II.1.1,0.35816592,TJ,CH4,3.9,kg/TJ,1.3968470880000001,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,b6d225fd-d9e7-3bd3-a200-ed78dc47d182 +2018,Capital Federal,II.1.1,0.35816592,TJ,N2O,3.9,kg/TJ,1.3968470880000001,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,b6d225fd-d9e7-3bd3-a200-ed78dc47d182 +2018,Córdoba,II.1.1,3.6853236,TJ,CO2,74100.0,kg/TJ,273082.47875999997,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,7a1a0548-abf4-37fc-a5f0-93fb9c373b12 +2018,Córdoba,II.1.1,3.6853236,TJ,CH4,3.9,kg/TJ,14.37276204,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,4a800163-e9b1-3d06-bde8-6d2b507db206 +2018,Córdoba,II.1.1,3.6853236,TJ,N2O,3.9,kg/TJ,14.37276204,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,4a800163-e9b1-3d06-bde8-6d2b507db206 +2018,Neuquén,II.1.1,4.05598704,TJ,CO2,74100.0,kg/TJ,300548.63966399996,Gas Oil combustion consumption by public passenger transport,AR-Q,SESCO,annual,kg,037cc98e-3419-301e-95cd-532a41b20e7d +2018,Neuquén,II.1.1,4.05598704,TJ,CH4,3.9,kg/TJ,15.818349455999998,Gas Oil combustion consumption by public passenger transport,AR-Q,SESCO,annual,kg,48cd94c4-bbdc-3f5d-b25c-8a07ac042ec1 +2018,Neuquén,II.1.1,4.05598704,TJ,N2O,3.9,kg/TJ,15.818349455999998,Gas Oil combustion consumption by public passenger transport,AR-Q,SESCO,annual,kg,48cd94c4-bbdc-3f5d-b25c-8a07ac042ec1 +2018,Rio Negro,II.1.1,10.628562839999999,TJ,CO2,74100.0,kg/TJ,787576.5064439999,Gas Oil combustion consumption by public passenger transport,AR-R,SESCO,annual,kg,43bf65b5-91c4-3871-8e04-44778fa70fb2 +2018,Rio Negro,II.1.1,10.628562839999999,TJ,CH4,3.9,kg/TJ,41.451395076,Gas Oil combustion consumption by public passenger transport,AR-R,SESCO,annual,kg,41925680-3f85-3df5-8918-9aaacd488004 +2018,Rio Negro,II.1.1,10.628562839999999,TJ,N2O,3.9,kg/TJ,41.451395076,Gas Oil combustion consumption by public passenger transport,AR-R,SESCO,annual,kg,41925680-3f85-3df5-8918-9aaacd488004 +2018,Buenos Aires,II.5.1,349.67771999999997,TJ,CO2,74100.0,kg/TJ,25911119.051999997,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,b3d197cf-467b-3bd2-906c-240b0adaeba4 +2018,Buenos Aires,II.5.1,349.67771999999997,TJ,CH4,3.9,kg/TJ,1363.743108,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,f648c7f2-85f4-3268-8197-31c74b9ea821 +2018,Buenos Aires,II.5.1,349.67771999999997,TJ,N2O,3.9,kg/TJ,1363.743108,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,f648c7f2-85f4-3268-8197-31c74b9ea821 +2018,Córdoba,II.5.1,33.73608,TJ,CO2,74100.0,kg/TJ,2499843.528,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,f6c5de1f-3754-32da-af47-e1fe6635ad00 +2018,Córdoba,II.5.1,33.73608,TJ,CH4,3.9,kg/TJ,131.57071200000001,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,53604192-9d28-3c55-a94c-720d8827f843 +2018,Córdoba,II.5.1,33.73608,TJ,N2O,3.9,kg/TJ,131.57071200000001,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,53604192-9d28-3c55-a94c-720d8827f843 +2018,Entre Rios,II.5.1,48.653639999999996,TJ,CO2,74100.0,kg/TJ,3605234.7239999995,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,8fe08178-f0a7-3c79-96c8-0e84d2c05559 +2018,Entre Rios,II.5.1,48.653639999999996,TJ,CH4,3.9,kg/TJ,189.74919599999998,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,f7a1bdd9-6c97-30c8-8fe5-7aa0c6b61282 +2018,Entre Rios,II.5.1,48.653639999999996,TJ,N2O,3.9,kg/TJ,189.74919599999998,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,f7a1bdd9-6c97-30c8-8fe5-7aa0c6b61282 +2018,Santa Fe,II.5.1,33.66384,TJ,CO2,74100.0,kg/TJ,2494490.544,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,b8afea8e-2f74-3b31-996a-e4c71b9ce9f8 +2018,Santa Fe,II.5.1,33.66384,TJ,CH4,3.9,kg/TJ,131.288976,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,d8b3944e-25a8-371c-8f51-f84ecadd16d2 +2018,Santa Fe,II.5.1,33.66384,TJ,N2O,3.9,kg/TJ,131.288976,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,d8b3944e-25a8-371c-8f51-f84ecadd16d2 +2018,Tucuman,II.5.1,13.256039999999999,TJ,CO2,74100.0,kg/TJ,982272.5639999999,Gas Oil combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,cfd5b022-582e-33b1-a037-a35a72b08092 +2018,Tucuman,II.5.1,13.256039999999999,TJ,CH4,3.9,kg/TJ,51.698555999999996,Gas Oil combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,e7810e3c-72bf-3234-95eb-3ad9a7e0463d +2018,Tucuman,II.5.1,13.256039999999999,TJ,N2O,3.9,kg/TJ,51.698555999999996,Gas Oil combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,e7810e3c-72bf-3234-95eb-3ad9a7e0463d +2018,Buenos Aires,II.5.1,15.56772,TJ,CO2,74100.0,kg/TJ,1153568.052,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,3ded3fc0-570f-3d3a-8494-258aac8692ba +2018,Buenos Aires,II.5.1,15.56772,TJ,CH4,3.9,kg/TJ,60.714107999999996,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,12071432-5ce3-30ff-a2c3-943af5fbeb3b +2018,Buenos Aires,II.5.1,15.56772,TJ,N2O,3.9,kg/TJ,60.714107999999996,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,12071432-5ce3-30ff-a2c3-943af5fbeb3b +2018,Entre Rios,II.5.1,35.14476,TJ,CO2,74100.0,kg/TJ,2604226.716,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,91f2837e-90bc-3c45-9a52-0b069d8409f3 +2018,Entre Rios,II.5.1,35.14476,TJ,CH4,3.9,kg/TJ,137.064564,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,5a27c881-7a8d-33ba-b46d-03f55c45d06a +2018,Entre Rios,II.5.1,35.14476,TJ,N2O,3.9,kg/TJ,137.064564,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,5a27c881-7a8d-33ba-b46d-03f55c45d06a +2018,Buenos Aires,II.5.1,0.445445,TJ,CO2,73300.0,kg/TJ,32651.118499999997,Naphtha combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,1a493cd4-3a90-3ef3-b878-21450f7142b2 +2018,Buenos Aires,II.5.1,0.445445,TJ,CH4,0.5,kg/TJ,0.2227225,Naphtha combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,a8e38475-9c86-310a-a51e-b3ea7ae45512 +2018,Buenos Aires,II.5.1,0.445445,TJ,N2O,2.0,kg/TJ,0.89089,Naphtha combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,cf5c8674-3e2f-3fd1-ac43-0416d95655fb +2018,Buenos Aires,II.5.1,0.41118,TJ,CO2,73300.0,kg/TJ,30139.494,Naphtha combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,5ec43d52-50d2-30c6-a251-d7d946a4a4c7 +2018,Buenos Aires,II.5.1,0.41118,TJ,CH4,0.5,kg/TJ,0.20559,Naphtha combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,ba249b91-1fdc-3c4c-9e1f-a4a15c99589f +2018,Buenos Aires,II.5.1,0.41118,TJ,N2O,2.0,kg/TJ,0.82236,Naphtha combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,30eb77a3-d7c3-31f5-87d9-9aeb1be7b092 +2018,Buenos Aires,II.2.1,280.76076,TJ,CO2,74100.0,kg/TJ,20804372.316,Gas Oil combustion consumption by railway transport,AR-B,SESCO,annual,kg,540f8278-0d07-3d72-9b67-00cfc2ee4bf7 +2018,Buenos Aires,II.2.1,280.76076,TJ,CH4,3.9,kg/TJ,1094.966964,Gas Oil combustion consumption by railway transport,AR-B,SESCO,annual,kg,17ee28cb-7aa2-39e6-96d4-5077b41be8ad +2018,Buenos Aires,II.2.1,280.76076,TJ,N2O,3.9,kg/TJ,1094.966964,Gas Oil combustion consumption by railway transport,AR-B,SESCO,annual,kg,17ee28cb-7aa2-39e6-96d4-5077b41be8ad +2018,Buenos Aires,II.1.1,1.1961,TJ,CO2,69300.0,kg/TJ,82889.73,Motor Gasoline combustion consumption by freight transport,AR-B,SESCO,annual,kg,62afde42-3063-301e-85f1-4065eb644840 +2018,Buenos Aires,II.1.1,1.1961,TJ,CH4,33.0,kg/TJ,39.4713,Motor Gasoline combustion consumption by freight transport,AR-B,SESCO,annual,kg,786ebfd4-c51f-35df-9c5b-e8a871a86484 +2018,Buenos Aires,II.1.1,1.1961,TJ,N2O,3.2,kg/TJ,3.82752,Motor Gasoline combustion consumption by freight transport,AR-B,SESCO,annual,kg,19a14e4d-1496-3233-be72-a0d23f54fa09 +2018,Santa Fe,II.1.1,4.4742999999999995,TJ,CO2,69300.0,kg/TJ,310068.99,Motor Gasoline combustion consumption by freight transport,AR-S,SESCO,annual,kg,485316ae-1f1c-3294-9944-51e7cc7c4fc5 +2018,Santa Fe,II.1.1,4.4742999999999995,TJ,CH4,33.0,kg/TJ,147.65189999999998,Motor Gasoline combustion consumption by freight transport,AR-S,SESCO,annual,kg,3ee83461-8521-3213-8a15-1145ad37ffa6 +2018,Santa Fe,II.1.1,4.4742999999999995,TJ,N2O,3.2,kg/TJ,14.31776,Motor Gasoline combustion consumption by freight transport,AR-S,SESCO,annual,kg,2c770bbb-6a0a-328d-b80b-3d2b76e31868 +2018,Buenos Aires,II.1.1,36.12,TJ,CO2,74100.0,kg/TJ,2676492.0,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,5860aa9e-a040-318c-9a7a-4a5392c34755 +2018,Buenos Aires,II.1.1,36.12,TJ,CH4,3.9,kg/TJ,140.868,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,ee5df7f2-3194-330d-9c32-9c95e1df11bd +2018,Buenos Aires,II.1.1,36.12,TJ,N2O,3.9,kg/TJ,140.868,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,ee5df7f2-3194-330d-9c32-9c95e1df11bd +2018,Capital Federal,II.1.1,4.8762,TJ,CO2,74100.0,kg/TJ,361326.42,Gas Oil combustion consumption by freight transport,AR-C,SESCO,annual,kg,f7ef6738-57b7-3385-98f0-25330ef6030d +2018,Capital Federal,II.1.1,4.8762,TJ,CH4,3.9,kg/TJ,19.01718,Gas Oil combustion consumption by freight transport,AR-C,SESCO,annual,kg,004b0e74-8365-38fc-9ab2-cbdd0b96aecc +2018,Capital Federal,II.1.1,4.8762,TJ,N2O,3.9,kg/TJ,19.01718,Gas Oil combustion consumption by freight transport,AR-C,SESCO,annual,kg,004b0e74-8365-38fc-9ab2-cbdd0b96aecc +2018,Córdoba,II.1.1,54.866279999999996,TJ,CO2,74100.0,kg/TJ,4065591.3479999998,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,e03dc4b9-dfdf-374f-b4d7-36a0d5dfa1bc +2018,Córdoba,II.1.1,54.866279999999996,TJ,CH4,3.9,kg/TJ,213.978492,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,3c486512-622d-39cf-8acc-1e0cad9b37e0 +2018,Córdoba,II.1.1,54.866279999999996,TJ,N2O,3.9,kg/TJ,213.978492,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,3c486512-622d-39cf-8acc-1e0cad9b37e0 +2018,Buenos Aires,II.1.1,2.3478,TJ,CO2,74100.0,kg/TJ,173971.97999999998,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,56384b82-3110-356f-a0d0-9636707ef011 +2018,Buenos Aires,II.1.1,2.3478,TJ,CH4,3.9,kg/TJ,9.156419999999999,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,890d68ef-ec72-34f8-afb8-c87f2c3219e2 +2018,Buenos Aires,II.1.1,2.3478,TJ,N2O,3.9,kg/TJ,9.156419999999999,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,890d68ef-ec72-34f8-afb8-c87f2c3219e2 +2018,Córdoba,II.1.1,3.17856,TJ,CO2,74100.0,kg/TJ,235531.296,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,53c8d0f1-9dcd-3cad-8615-380a00095d54 +2018,Córdoba,II.1.1,3.17856,TJ,CH4,3.9,kg/TJ,12.396384,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,3d033ff8-50a8-3efc-8ec2-9c65cd9de9c4 +2018,Córdoba,II.1.1,3.17856,TJ,N2O,3.9,kg/TJ,12.396384,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,3d033ff8-50a8-3efc-8ec2-9c65cd9de9c4 +2018,Buenos Aires,II.1.1,5118.781919999999,TJ,CO2,74100.0,kg/TJ,379301740.27199996,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,4a98c85f-32a3-366c-9f01-56b35117756d +2018,Buenos Aires,II.1.1,5118.781919999999,TJ,CH4,3.9,kg/TJ,19963.249487999998,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,812e1fb5-823b-388a-b127-88d485727a4d +2018,Buenos Aires,II.1.1,5118.781919999999,TJ,N2O,3.9,kg/TJ,19963.249487999998,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,812e1fb5-823b-388a-b127-88d485727a4d +2018,Capital Federal,II.1.1,466.81487999999996,TJ,CO2,74100.0,kg/TJ,34590982.607999995,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,92b69e04-3194-383a-ae27-ec46b87ce1de +2018,Capital Federal,II.1.1,466.81487999999996,TJ,CH4,3.9,kg/TJ,1820.578032,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,6e6bfe83-da6e-3eb3-8527-ec04628032f4 +2018,Capital Federal,II.1.1,466.81487999999996,TJ,N2O,3.9,kg/TJ,1820.578032,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,6e6bfe83-da6e-3eb3-8527-ec04628032f4 +2018,Santa Fe,II.1.1,90.95016,TJ,CO2,74100.0,kg/TJ,6739406.856,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,a325b2f7-c0b9-3e5d-9c10-73120d4cb4eb +2018,Santa Fe,II.1.1,90.95016,TJ,CH4,3.9,kg/TJ,354.705624,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,f99dc35d-6040-385a-b2a4-06c142aa7ee1 +2018,Santa Fe,II.1.1,90.95016,TJ,N2O,3.9,kg/TJ,354.705624,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,f99dc35d-6040-385a-b2a4-06c142aa7ee1 +2018,Buenos Aires,II.1.1,837.7672799999999,TJ,CO2,74100.0,kg/TJ,62078555.44799999,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,ec0b18b1-b987-310d-bcee-5b1f4a7450bd +2018,Buenos Aires,II.1.1,837.7672799999999,TJ,CH4,3.9,kg/TJ,3267.2923919999994,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,e10c2625-34af-3678-9cfb-bafec2ea7848 +2018,Buenos Aires,II.1.1,837.7672799999999,TJ,N2O,3.9,kg/TJ,3267.2923919999994,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,e10c2625-34af-3678-9cfb-bafec2ea7848 +2018,Capital Federal,II.1.1,32.36352,TJ,CO2,74100.0,kg/TJ,2398136.832,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,3394cebc-448a-3043-b3eb-7b945c8aeef1 +2018,Capital Federal,II.1.1,32.36352,TJ,CH4,3.9,kg/TJ,126.21772800000001,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,a1562943-56d9-32d0-a003-75f6611cd59b +2018,Capital Federal,II.1.1,32.36352,TJ,N2O,3.9,kg/TJ,126.21772800000001,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,a1562943-56d9-32d0-a003-75f6611cd59b +2018,Santa Fe,II.1.1,45.15,TJ,CO2,74100.0,kg/TJ,3345615.0,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,f0038ee5-f1df-3bb9-9ccb-336463bb5df5 +2018,Santa Fe,II.1.1,45.15,TJ,CH4,3.9,kg/TJ,176.08499999999998,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,cb0a7858-fb4a-35a3-8b51-dcf8d3889c6e +2018,Santa Fe,II.1.1,45.15,TJ,N2O,3.9,kg/TJ,176.08499999999998,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,cb0a7858-fb4a-35a3-8b51-dcf8d3889c6e +2018,Buenos Aires,II.5.1,1157.7203710800002,TJ,CO2,74100.0,kg/TJ,85787079.49702801,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,21838f6b-74fc-3383-acae-ced5fc197556 +2018,Buenos Aires,II.5.1,1157.7203710800002,TJ,CH4,3.9,kg/TJ,4515.109447212,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,d4b3723d-6b24-3f61-95e1-f202d3e37e34 +2018,Buenos Aires,II.5.1,1157.7203710800002,TJ,N2O,3.9,kg/TJ,4515.109447212,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,d4b3723d-6b24-3f61-95e1-f202d3e37e34 +2018,Capital Federal,II.5.1,393.89152572,TJ,CO2,74100.0,kg/TJ,29187362.055852,Gas Oil combustion consumption by agriculture machines,AR-C,SESCO,annual,kg,feb912ba-24df-3c1c-97e4-e7d7af37b4e4 +2018,Capital Federal,II.5.1,393.89152572,TJ,CH4,3.9,kg/TJ,1536.176950308,Gas Oil combustion consumption by agriculture machines,AR-C,SESCO,annual,kg,52ec3e51-6f9b-30a3-82de-738702762fbc +2018,Capital Federal,II.5.1,393.89152572,TJ,N2O,3.9,kg/TJ,1536.176950308,Gas Oil combustion consumption by agriculture machines,AR-C,SESCO,annual,kg,52ec3e51-6f9b-30a3-82de-738702762fbc +2018,Corrientes,II.5.1,30.58807752,TJ,CO2,74100.0,kg/TJ,2266576.544232,Gas Oil combustion consumption by agriculture machines,AR-W,SESCO,annual,kg,191ef058-9a76-3064-b46c-cf44424c129a +2018,Corrientes,II.5.1,30.58807752,TJ,CH4,3.9,kg/TJ,119.29350232799999,Gas Oil combustion consumption by agriculture machines,AR-W,SESCO,annual,kg,da2e4502-96ea-38c2-85b5-ef9b9abd3f7c +2018,Corrientes,II.5.1,30.58807752,TJ,N2O,3.9,kg/TJ,119.29350232799999,Gas Oil combustion consumption by agriculture machines,AR-W,SESCO,annual,kg,da2e4502-96ea-38c2-85b5-ef9b9abd3f7c +2018,Córdoba,II.5.1,187.90050215999995,TJ,CO2,74100.0,kg/TJ,13923427.210055996,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,5a560ddc-8050-3875-ac69-b14a281ddb5c +2018,Córdoba,II.5.1,187.90050215999995,TJ,CH4,3.9,kg/TJ,732.8119584239997,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,c3ceb639-021a-35ef-b547-8acfad37598f +2018,Córdoba,II.5.1,187.90050215999995,TJ,N2O,3.9,kg/TJ,732.8119584239997,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,c3ceb639-021a-35ef-b547-8acfad37598f +2018,Entre Rios,II.5.1,130.44622415999999,TJ,CO2,74100.0,kg/TJ,9666065.210256,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,5db55058-2ebd-3349-9457-d706ef9bf731 +2018,Entre Rios,II.5.1,130.44622415999999,TJ,CH4,3.9,kg/TJ,508.7402742239999,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,a75e3e4d-c07a-386c-896d-3c4dd07884e3 +2018,Entre Rios,II.5.1,130.44622415999999,TJ,N2O,3.9,kg/TJ,508.7402742239999,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,a75e3e4d-c07a-386c-896d-3c4dd07884e3 +2018,Jujuy,II.5.1,13.474566,TJ,CO2,74100.0,kg/TJ,998465.3406,Gas Oil combustion consumption by agriculture machines,AR-Y,SESCO,annual,kg,ceedad92-bb26-32c2-ac3c-bc1e9a25b773 +2018,Jujuy,II.5.1,13.474566,TJ,CH4,3.9,kg/TJ,52.5508074,Gas Oil combustion consumption by agriculture machines,AR-Y,SESCO,annual,kg,700a879c-8303-3cea-a3e4-a2b8f034ba39 +2018,Jujuy,II.5.1,13.474566,TJ,N2O,3.9,kg/TJ,52.5508074,Gas Oil combustion consumption by agriculture machines,AR-Y,SESCO,annual,kg,700a879c-8303-3cea-a3e4-a2b8f034ba39 +2018,La Pampa,II.5.1,25.8769098,TJ,CO2,74100.0,kg/TJ,1917479.01618,Gas Oil combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,403668ec-48eb-3b2e-87af-b9c06ccaf593 +2018,La Pampa,II.5.1,25.8769098,TJ,CH4,3.9,kg/TJ,100.91994822,Gas Oil combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,9712fde9-6e6f-3e9d-be36-67c0c31f11f4 +2018,La Pampa,II.5.1,25.8769098,TJ,N2O,3.9,kg/TJ,100.91994822,Gas Oil combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,9712fde9-6e6f-3e9d-be36-67c0c31f11f4 +2018,San Luis,II.5.1,2.273248319999999,TJ,CO2,74100.0,kg/TJ,168447.70051199992,Gas Oil combustion consumption by agriculture machines,AR-D,SESCO,annual,kg,a813f7eb-5ef0-3a16-a369-6029df318744 +2018,San Luis,II.5.1,2.273248319999999,TJ,CH4,3.9,kg/TJ,8.865668447999996,Gas Oil combustion consumption by agriculture machines,AR-D,SESCO,annual,kg,624abfab-b6ea-3557-9519-8d64a7ad2027 +2018,San Luis,II.5.1,2.273248319999999,TJ,N2O,3.9,kg/TJ,8.865668447999996,Gas Oil combustion consumption by agriculture machines,AR-D,SESCO,annual,kg,624abfab-b6ea-3557-9519-8d64a7ad2027 +2018,Santa Fe,II.5.1,415.56699324,TJ,CO2,74100.0,kg/TJ,30793514.199084,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,c8f69ba0-a92d-3f50-a1c5-d9ea4d0ebeb7 +2018,Santa Fe,II.5.1,415.56699324,TJ,CH4,3.9,kg/TJ,1620.711273636,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,baa164f8-ef0e-315f-ba02-5205fa4b28a9 +2018,Santa Fe,II.5.1,415.56699324,TJ,N2O,3.9,kg/TJ,1620.711273636,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,baa164f8-ef0e-315f-ba02-5205fa4b28a9 +2018,Santiago del Estero,II.5.1,143.27485620000002,TJ,CO2,74100.0,kg/TJ,10616666.84442,Gas Oil combustion consumption by agriculture machines,AR-G,SESCO,annual,kg,c63d87b8-c877-36b5-92e3-0b2fffad4e1f +2018,Santiago del Estero,II.5.1,143.27485620000002,TJ,CH4,3.9,kg/TJ,558.77193918,Gas Oil combustion consumption by agriculture machines,AR-G,SESCO,annual,kg,867b5c24-d381-3112-aea3-9059f442e79f +2018,Santiago del Estero,II.5.1,143.27485620000002,TJ,N2O,3.9,kg/TJ,558.77193918,Gas Oil combustion consumption by agriculture machines,AR-G,SESCO,annual,kg,867b5c24-d381-3112-aea3-9059f442e79f +2018,Tucuman,II.5.1,108.44311211999998,TJ,CO2,74100.0,kg/TJ,8035634.608091999,Gas Oil combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,50613b61-77d3-31d0-b65e-c9f19cdae299 +2018,Tucuman,II.5.1,108.44311211999998,TJ,CH4,3.9,kg/TJ,422.92813726799994,Gas Oil combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,aff9f76e-3e9c-3191-97e0-f506576c7e13 +2018,Tucuman,II.5.1,108.44311211999998,TJ,N2O,3.9,kg/TJ,422.92813726799994,Gas Oil combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,aff9f76e-3e9c-3191-97e0-f506576c7e13 +2018,Buenos Aires,II.5.1,58.784902679999995,TJ,CO2,74100.0,kg/TJ,4355961.2885879995,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,211b4f11-799c-3604-bed1-5fc63d5175e0 +2018,Buenos Aires,II.5.1,58.784902679999995,TJ,CH4,3.9,kg/TJ,229.26112045199997,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,856dfa61-d23c-368d-9aec-eeef7636a91f +2018,Buenos Aires,II.5.1,58.784902679999995,TJ,N2O,3.9,kg/TJ,229.26112045199997,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,856dfa61-d23c-368d-9aec-eeef7636a91f +2018,Capital Federal,II.5.1,22.683540599999997,TJ,CO2,74100.0,kg/TJ,1680850.3584599998,Gas Oil combustion consumption by agriculture machines,AR-C,SESCO,annual,kg,553ddb73-a6ab-3615-8e9c-5209b938ded9 +2018,Capital Federal,II.5.1,22.683540599999997,TJ,CH4,3.9,kg/TJ,88.46580833999998,Gas Oil combustion consumption by agriculture machines,AR-C,SESCO,annual,kg,9ea91ba8-8cec-3b01-81d8-c879acb8958e +2018,Capital Federal,II.5.1,22.683540599999997,TJ,N2O,3.9,kg/TJ,88.46580833999998,Gas Oil combustion consumption by agriculture machines,AR-C,SESCO,annual,kg,9ea91ba8-8cec-3b01-81d8-c879acb8958e +2018,Corrientes,II.5.1,1.0836,TJ,CO2,74100.0,kg/TJ,80294.76,Gas Oil combustion consumption by agriculture machines,AR-W,SESCO,annual,kg,1549e650-94e8-37ae-8301-f805af147adf +2018,Corrientes,II.5.1,1.0836,TJ,CH4,3.9,kg/TJ,4.226039999999999,Gas Oil combustion consumption by agriculture machines,AR-W,SESCO,annual,kg,a6eebfb5-f411-3f23-a6fb-f694fa8828e4 +2018,Corrientes,II.5.1,1.0836,TJ,N2O,3.9,kg/TJ,4.226039999999999,Gas Oil combustion consumption by agriculture machines,AR-W,SESCO,annual,kg,a6eebfb5-f411-3f23-a6fb-f694fa8828e4 +2018,Córdoba,II.5.1,16.72305432,TJ,CO2,74100.0,kg/TJ,1239178.3251119999,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,0a6a3a0b-d67b-33c6-8070-078dba07d376 +2018,Córdoba,II.5.1,16.72305432,TJ,CH4,3.9,kg/TJ,65.219911848,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,87b4ad8c-21b3-3405-91ac-8e78603b639a +2018,Córdoba,II.5.1,16.72305432,TJ,N2O,3.9,kg/TJ,65.219911848,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,87b4ad8c-21b3-3405-91ac-8e78603b639a +2018,Entre Rios,II.5.1,7.61398764,TJ,CO2,74100.0,kg/TJ,564196.4841240001,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,72bedf72-2871-326a-829b-8070366f8da5 +2018,Entre Rios,II.5.1,7.61398764,TJ,CH4,3.9,kg/TJ,29.694551796000002,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,4f69576c-3308-36db-929a-4e0e1f2a4ac5 +2018,Entre Rios,II.5.1,7.61398764,TJ,N2O,3.9,kg/TJ,29.694551796000002,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,4f69576c-3308-36db-929a-4e0e1f2a4ac5 +2018,Jujuy,II.5.1,28.679857919999996,TJ,CO2,74100.0,kg/TJ,2125177.4718719996,Gas Oil combustion consumption by agriculture machines,AR-Y,SESCO,annual,kg,38ee064d-9cc0-3dff-a273-55b74e0dc218 +2018,Jujuy,II.5.1,28.679857919999996,TJ,CH4,3.9,kg/TJ,111.85144588799999,Gas Oil combustion consumption by agriculture machines,AR-Y,SESCO,annual,kg,cdba4a2b-cbfe-3422-b0aa-660da979b764 +2018,Jujuy,II.5.1,28.679857919999996,TJ,N2O,3.9,kg/TJ,111.85144588799999,Gas Oil combustion consumption by agriculture machines,AR-Y,SESCO,annual,kg,cdba4a2b-cbfe-3422-b0aa-660da979b764 +2018,Santa Fe,II.5.1,38.890873559999996,TJ,CO2,74100.0,kg/TJ,2881813.7307959995,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,a0bea68f-08ee-3d79-938d-32608a9d7cd1 +2018,Santa Fe,II.5.1,38.890873559999996,TJ,CH4,3.9,kg/TJ,151.67440688399998,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,1da08b0f-30d6-36ed-a35c-566a713537ef +2018,Santa Fe,II.5.1,38.890873559999996,TJ,N2O,3.9,kg/TJ,151.67440688399998,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,1da08b0f-30d6-36ed-a35c-566a713537ef +2018,Tucuman,II.5.1,20.44731528,TJ,CO2,74100.0,kg/TJ,1515146.0622480002,Gas Oil combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,7bc76ea2-2f0b-3dec-97d0-1aaa5db4ffd4 +2018,Tucuman,II.5.1,20.44731528,TJ,CH4,3.9,kg/TJ,79.744529592,Gas Oil combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,a78d9b1e-4b61-3655-aac3-b3f7d3ee551a +2018,Tucuman,II.5.1,20.44731528,TJ,N2O,3.9,kg/TJ,79.744529592,Gas Oil combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,a78d9b1e-4b61-3655-aac3-b3f7d3ee551a +2018,Buenos Aires,II.5.1,57.814272284999994,TJ,CO2,73300.0,kg/TJ,4237786.1584904995,Naphtha combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,ddfa8ff0-d72b-3be5-b1fa-bea4cea744b9 +2018,Buenos Aires,II.5.1,57.814272284999994,TJ,CH4,0.5,kg/TJ,28.907136142499997,Naphtha combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,2605918c-a778-3205-bcff-32489786986b +2018,Buenos Aires,II.5.1,57.814272284999994,TJ,N2O,2.0,kg/TJ,115.62854456999999,Naphtha combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,6e157bf0-cb8b-32f9-af1e-e22b022ea987 +2018,Capital Federal,II.5.1,10.575412539999999,TJ,CO2,73300.0,kg/TJ,775177.7391819999,Naphtha combustion consumption by agriculture machines,AR-C,SESCO,annual,kg,14421116-28f7-39d0-a407-38e0e0e832f2 +2018,Capital Federal,II.5.1,10.575412539999999,TJ,CH4,0.5,kg/TJ,5.287706269999999,Naphtha combustion consumption by agriculture machines,AR-C,SESCO,annual,kg,775fffe3-187f-3e07-9a2a-390bab1a8b7d +2018,Capital Federal,II.5.1,10.575412539999999,TJ,N2O,2.0,kg/TJ,21.150825079999997,Naphtha combustion consumption by agriculture machines,AR-C,SESCO,annual,kg,eff567aa-ad92-3c24-b648-31c13efe2f0e +2018,Entre Rios,II.5.1,5.30477024,TJ,CO2,73300.0,kg/TJ,388839.65859199996,Naphtha combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,58aa398c-0179-394e-888a-92ba74ed2fc9 +2018,Entre Rios,II.5.1,5.30477024,TJ,CH4,0.5,kg/TJ,2.65238512,Naphtha combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,d17de975-5a47-3802-a63f-ca19bc411a1c +2018,Entre Rios,II.5.1,5.30477024,TJ,N2O,2.0,kg/TJ,10.60954048,Naphtha combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,8cfefb99-139e-3142-b413-68bbf88bb7c4 +2018,Santa Fe,II.5.1,23.704218615,TJ,CO2,73300.0,kg/TJ,1737519.2244795,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,9e523b58-6c02-358e-b03a-8f4e1da661d0 +2018,Santa Fe,II.5.1,23.704218615,TJ,CH4,0.5,kg/TJ,11.8521093075,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,c508a9c7-6458-3312-a43a-8ad590b02865 +2018,Santa Fe,II.5.1,23.704218615,TJ,N2O,2.0,kg/TJ,47.40843723,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,62621e65-e9de-3b90-a9e9-5fc89be6fd43 +2018,Tucuman,II.5.1,5.638956784999999,TJ,CO2,73300.0,kg/TJ,413335.5323404999,Naphtha combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,7a1d926e-1212-3f84-97c3-ac149d786bb2 +2018,Tucuman,II.5.1,5.638956784999999,TJ,CH4,0.5,kg/TJ,2.8194783924999993,Naphtha combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,ffa3150b-0c33-3f1d-ac21-763bb78ba10a +2018,Tucuman,II.5.1,5.638956784999999,TJ,N2O,2.0,kg/TJ,11.277913569999997,Naphtha combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,40cadb7e-2068-39cc-9649-3f699387b965 +2018,Buenos Aires,II.5.1,5.5255738999999995,TJ,CO2,73300.0,kg/TJ,405024.56687,Naphtha combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,653eab0f-f1aa-354e-8566-f3e87cd5a446 +2018,Buenos Aires,II.5.1,5.5255738999999995,TJ,CH4,0.5,kg/TJ,2.7627869499999997,Naphtha combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,3de7109f-4074-36e0-a72f-4eb86f4b06ad +2018,Buenos Aires,II.5.1,5.5255738999999995,TJ,N2O,2.0,kg/TJ,11.051147799999999,Naphtha combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,6b05620d-8bf0-34ad-a09e-6508ab8e26f8 +2018,Capital Federal,II.5.1,0.8222914699999999,TJ,CO2,73300.0,kg/TJ,60273.96475099999,Naphtha combustion consumption by agriculture machines,AR-C,SESCO,annual,kg,5d19c9e3-b237-39f9-9857-c9e5501d1d92 +2018,Capital Federal,II.5.1,0.8222914699999999,TJ,CH4,0.5,kg/TJ,0.41114573499999996,Naphtha combustion consumption by agriculture machines,AR-C,SESCO,annual,kg,1a1abfab-21fc-31c8-94f0-36d447f695a5 +2018,Capital Federal,II.5.1,0.8222914699999999,TJ,N2O,2.0,kg/TJ,1.6445829399999998,Naphtha combustion consumption by agriculture machines,AR-C,SESCO,annual,kg,872fb4e9-aee0-39d4-a5a6-6b3937b1fdc9 +2018,Entre Rios,II.5.1,0.518326655,TJ,CO2,73300.0,kg/TJ,37993.343811499995,Naphtha combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,42aed47a-1b92-371f-afca-f09cf4a3db9e +2018,Entre Rios,II.5.1,0.518326655,TJ,CH4,0.5,kg/TJ,0.2591633275,Naphtha combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,83c98663-7b87-3436-bdc3-44501699b578 +2018,Entre Rios,II.5.1,0.518326655,TJ,N2O,2.0,kg/TJ,1.03665331,Naphtha combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,22049b34-5c24-3396-aaf8-c19983163116 +2018,Santa Fe,II.5.1,1.36669379,TJ,CO2,73300.0,kg/TJ,100178.654807,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,20899544-2fbd-3270-a456-f0056fd586b2 +2018,Santa Fe,II.5.1,1.36669379,TJ,CH4,0.5,kg/TJ,0.683346895,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,4c75435e-0eda-3d8b-a0c4-5b7c18d3bc46 +2018,Santa Fe,II.5.1,1.36669379,TJ,N2O,2.0,kg/TJ,2.73338758,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,68ea2bb3-24ea-39b3-9a6b-2660953eeff6 +2018,Tucuman,II.5.1,0.36310620499999996,TJ,CO2,73300.0,kg/TJ,26615.684826499997,Naphtha combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,c77b1298-90d4-3eae-b960-98084320e18d +2018,Tucuman,II.5.1,0.36310620499999996,TJ,CH4,0.5,kg/TJ,0.18155310249999998,Naphtha combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,d66d9644-d2d1-3ef5-ad54-71b159abeb2f +2018,Tucuman,II.5.1,0.36310620499999996,TJ,N2O,2.0,kg/TJ,0.7262124099999999,Naphtha combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,3edda57c-0574-3fa0-ab59-3d0b90ebcd42 +2018,Buenos Aires,II.1.1,148.844199,TJ,CO2,74100.0,kg/TJ,11029355.1459,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,f99761d7-07ba-3c35-ae47-824aafef4e66 +2018,Buenos Aires,II.1.1,148.844199,TJ,CH4,3.9,kg/TJ,580.4923761,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,c642fd30-fe9f-3b22-811c-acbb811fa556 +2018,Buenos Aires,II.1.1,148.844199,TJ,N2O,3.9,kg/TJ,580.4923761,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,c642fd30-fe9f-3b22-811c-acbb811fa556 +2018,Chubut,II.1.1,1.98634716,TJ,CO2,74100.0,kg/TJ,147188.324556,Gas Oil combustion consumption by freight transport,AR-U,SESCO,annual,kg,e246b4f6-296d-3728-9706-37ce21e7f6dc +2018,Chubut,II.1.1,1.98634716,TJ,CH4,3.9,kg/TJ,7.746753924,Gas Oil combustion consumption by freight transport,AR-U,SESCO,annual,kg,db62aba9-0a2a-37ca-a2d5-c57bd294c65c +2018,Chubut,II.1.1,1.98634716,TJ,N2O,3.9,kg/TJ,7.746753924,Gas Oil combustion consumption by freight transport,AR-U,SESCO,annual,kg,db62aba9-0a2a-37ca-a2d5-c57bd294c65c +2018,Córdoba,II.1.1,116.85246216,TJ,CO2,74100.0,kg/TJ,8658767.446056,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,e69663ee-8419-35ab-bd2e-0e83b2d1298f +2018,Córdoba,II.1.1,116.85246216,TJ,CH4,3.9,kg/TJ,455.724602424,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,358adae3-51f5-31f1-9ee7-d8bb47e2936f +2018,Córdoba,II.1.1,116.85246216,TJ,N2O,3.9,kg/TJ,455.724602424,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,358adae3-51f5-31f1-9ee7-d8bb47e2936f +2018,Neuquén,II.1.1,9.4388784,TJ,CO2,74100.0,kg/TJ,699420.88944,Gas Oil combustion consumption by freight transport,AR-Q,SESCO,annual,kg,d88497df-e98f-354f-8967-59470c51e476 +2018,Neuquén,II.1.1,9.4388784,TJ,CH4,3.9,kg/TJ,36.81162576,Gas Oil combustion consumption by freight transport,AR-Q,SESCO,annual,kg,4354ea58-d23d-3708-9974-72acdb2ad68c +2018,Neuquén,II.1.1,9.4388784,TJ,N2O,3.9,kg/TJ,36.81162576,Gas Oil combustion consumption by freight transport,AR-Q,SESCO,annual,kg,4354ea58-d23d-3708-9974-72acdb2ad68c +2018,Rio Negro,II.1.1,24.10002252,TJ,CO2,74100.0,kg/TJ,1785811.668732,Gas Oil combustion consumption by freight transport,AR-R,SESCO,annual,kg,c71be5d7-00ff-38ea-85c3-346bb0c61cca +2018,Rio Negro,II.1.1,24.10002252,TJ,CH4,3.9,kg/TJ,93.990087828,Gas Oil combustion consumption by freight transport,AR-R,SESCO,annual,kg,21f6743e-7f58-3252-9b47-c1bb793ce05b +2018,Rio Negro,II.1.1,24.10002252,TJ,N2O,3.9,kg/TJ,93.990087828,Gas Oil combustion consumption by freight transport,AR-R,SESCO,annual,kg,21f6743e-7f58-3252-9b47-c1bb793ce05b +2018,San Luis,II.1.1,1.2998143199999999,TJ,CO2,74100.0,kg/TJ,96316.24111199999,Gas Oil combustion consumption by freight transport,AR-D,SESCO,annual,kg,1d6e5fb8-7520-3c9c-be1a-6c729cedb43f +2018,San Luis,II.1.1,1.2998143199999999,TJ,CH4,3.9,kg/TJ,5.069275847999999,Gas Oil combustion consumption by freight transport,AR-D,SESCO,annual,kg,e6d12f9a-ebab-3494-9046-f5ded632059d +2018,San Luis,II.1.1,1.2998143199999999,TJ,N2O,3.9,kg/TJ,5.069275847999999,Gas Oil combustion consumption by freight transport,AR-D,SESCO,annual,kg,e6d12f9a-ebab-3494-9046-f5ded632059d +2018,Santa Fe,II.1.1,49.61085612,TJ,CO2,74100.0,kg/TJ,3676164.438492,Gas Oil combustion consumption by freight transport,AR-S,SESCO,annual,kg,c89b4aba-d67b-3064-b62a-80ea7c2d86af +2018,Santa Fe,II.1.1,49.61085612,TJ,CH4,3.9,kg/TJ,193.482338868,Gas Oil combustion consumption by freight transport,AR-S,SESCO,annual,kg,67d6416e-5a6f-3170-8a9a-c61ad6a43b94 +2018,Santa Fe,II.1.1,49.61085612,TJ,N2O,3.9,kg/TJ,193.482338868,Gas Oil combustion consumption by freight transport,AR-S,SESCO,annual,kg,67d6416e-5a6f-3170-8a9a-c61ad6a43b94 +2018,Santiago del Estero,II.1.1,54.39480564,TJ,CO2,74100.0,kg/TJ,4030655.097924,Gas Oil combustion consumption by freight transport,AR-G,SESCO,annual,kg,57a374af-a841-3479-be48-db2434524912 +2018,Santiago del Estero,II.1.1,54.39480564,TJ,CH4,3.9,kg/TJ,212.139741996,Gas Oil combustion consumption by freight transport,AR-G,SESCO,annual,kg,436d5aed-ba55-3cd9-b93a-ceb8d1a3d8d3 +2018,Santiago del Estero,II.1.1,54.39480564,TJ,N2O,3.9,kg/TJ,212.139741996,Gas Oil combustion consumption by freight transport,AR-G,SESCO,annual,kg,436d5aed-ba55-3cd9-b93a-ceb8d1a3d8d3 +2018,Buenos Aires,II.1.1,34.96968636,TJ,CO2,74100.0,kg/TJ,2591253.759276,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,35fa4791-262e-33d0-b10a-96fbf52268cf +2018,Buenos Aires,II.1.1,34.96968636,TJ,CH4,3.9,kg/TJ,136.381776804,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,5ff1aaab-ba65-3ce6-8c52-656943c5ac02 +2018,Buenos Aires,II.1.1,34.96968636,TJ,N2O,3.9,kg/TJ,136.381776804,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,5ff1aaab-ba65-3ce6-8c52-656943c5ac02 +2018,Córdoba,II.1.1,21.20547408,TJ,CO2,74100.0,kg/TJ,1571325.629328,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,513698e1-8360-3811-a0e4-9fdeb8fd0b62 +2018,Córdoba,II.1.1,21.20547408,TJ,CH4,3.9,kg/TJ,82.70134891199999,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,67c13ac1-ccc9-3b22-af80-c7ae24e2326d +2018,Córdoba,II.1.1,21.20547408,TJ,N2O,3.9,kg/TJ,82.70134891199999,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,67c13ac1-ccc9-3b22-af80-c7ae24e2326d +2018,Neuquén,II.1.1,7.7583592800000005,TJ,CO2,74100.0,kg/TJ,574894.4226480001,Gas Oil combustion consumption by freight transport,AR-Q,SESCO,annual,kg,26f67298-8289-3544-b54d-faba7df06e6f +2018,Neuquén,II.1.1,7.7583592800000005,TJ,CH4,3.9,kg/TJ,30.257601192000003,Gas Oil combustion consumption by freight transport,AR-Q,SESCO,annual,kg,19e54a69-d2fc-3236-9246-02ece9e4fbdb +2018,Neuquén,II.1.1,7.7583592800000005,TJ,N2O,3.9,kg/TJ,30.257601192000003,Gas Oil combustion consumption by freight transport,AR-Q,SESCO,annual,kg,19e54a69-d2fc-3236-9246-02ece9e4fbdb +2018,Rio Negro,II.1.1,27.325357920000002,TJ,CO2,74100.0,kg/TJ,2024809.021872,Gas Oil combustion consumption by freight transport,AR-R,SESCO,annual,kg,c8ab6c0c-2c8e-33c3-a2ce-52333610ba0d +2018,Rio Negro,II.1.1,27.325357920000002,TJ,CH4,3.9,kg/TJ,106.568895888,Gas Oil combustion consumption by freight transport,AR-R,SESCO,annual,kg,b280980f-d36b-3df5-bfc3-59205d59207f +2018,Rio Negro,II.1.1,27.325357920000002,TJ,N2O,3.9,kg/TJ,106.568895888,Gas Oil combustion consumption by freight transport,AR-R,SESCO,annual,kg,b280980f-d36b-3df5-bfc3-59205d59207f +2018,Santa Fe,II.1.1,11.69901516,TJ,CO2,74100.0,kg/TJ,866897.023356,Gas Oil combustion consumption by freight transport,AR-S,SESCO,annual,kg,7a69d3e3-6ed0-3e76-9275-c2c03260f26e +2018,Santa Fe,II.1.1,11.69901516,TJ,CH4,3.9,kg/TJ,45.626159124,Gas Oil combustion consumption by freight transport,AR-S,SESCO,annual,kg,2282638d-b94d-39ff-b7bf-c2d37f6c5be3 +2018,Santa Fe,II.1.1,11.69901516,TJ,N2O,3.9,kg/TJ,45.626159124,Gas Oil combustion consumption by freight transport,AR-S,SESCO,annual,kg,2282638d-b94d-39ff-b7bf-c2d37f6c5be3 +2018,Santiago del Estero,II.1.1,1.19705292,TJ,CO2,74100.0,kg/TJ,88701.621372,Gas Oil combustion consumption by freight transport,AR-G,SESCO,annual,kg,1df15c60-735c-363b-ae00-d000572fbaa8 +2018,Santiago del Estero,II.1.1,1.19705292,TJ,CH4,3.9,kg/TJ,4.668506388,Gas Oil combustion consumption by freight transport,AR-G,SESCO,annual,kg,d00532fe-ff83-3a43-981c-ac1197b846a2 +2018,Santiago del Estero,II.1.1,1.19705292,TJ,N2O,3.9,kg/TJ,4.668506388,Gas Oil combustion consumption by freight transport,AR-G,SESCO,annual,kg,d00532fe-ff83-3a43-981c-ac1197b846a2 +2018,Buenos Aires,II.5.1,4.3857,TJ,CO2,69300.0,kg/TJ,303929.01,Motor Gasoline combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,f70e1f79-a794-3936-a1e5-75d998af7cc2 +2018,Buenos Aires,II.5.1,4.3857,TJ,CH4,33.0,kg/TJ,144.72809999999998,Motor Gasoline combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,f09de076-4670-3125-af89-da6a29bd57f8 +2018,Buenos Aires,II.5.1,4.3857,TJ,N2O,3.2,kg/TJ,14.03424,Motor Gasoline combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,2f1a7d75-ba0c-3424-9dbb-1c8178fd826a +2018,Santa Fe,II.5.1,9.302999999999999,TJ,CO2,69300.0,kg/TJ,644697.8999999999,Motor Gasoline combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,b3bbe57f-e190-36df-bd20-dabf96df7afc +2018,Santa Fe,II.5.1,9.302999999999999,TJ,CH4,33.0,kg/TJ,306.99899999999997,Motor Gasoline combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,d3addc8b-5575-382b-a0b1-999d304689a5 +2018,Santa Fe,II.5.1,9.302999999999999,TJ,N2O,3.2,kg/TJ,29.769599999999997,Motor Gasoline combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,869cc5ab-3fbf-351a-a6d7-6aabb7f31f34 +2018,Buenos Aires,II.5.1,9604.994279999999,TJ,CO2,74100.0,kg/TJ,711730076.1479999,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,68ecf761-34b8-3144-b3f1-26fa2ced96b8 +2018,Buenos Aires,II.5.1,9604.994279999999,TJ,CH4,3.9,kg/TJ,37459.47769199999,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,7a9b3d03-4e11-3383-9618-134713cda8a6 +2018,Buenos Aires,II.5.1,9604.994279999999,TJ,N2O,3.9,kg/TJ,37459.47769199999,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,7a9b3d03-4e11-3383-9618-134713cda8a6 +2018,Capital Federal,II.5.1,258.00516,TJ,CO2,74100.0,kg/TJ,19118182.356,Gas Oil combustion consumption by agriculture machines,AR-C,SESCO,annual,kg,4977d43c-01fe-3641-b23f-c405f276c3bf +2018,Capital Federal,II.5.1,258.00516,TJ,CH4,3.9,kg/TJ,1006.2201239999999,Gas Oil combustion consumption by agriculture machines,AR-C,SESCO,annual,kg,e0c6e52a-98de-37f0-a13c-199cb3ad6b0d +2018,Capital Federal,II.5.1,258.00516,TJ,N2O,3.9,kg/TJ,1006.2201239999999,Gas Oil combustion consumption by agriculture machines,AR-C,SESCO,annual,kg,e0c6e52a-98de-37f0-a13c-199cb3ad6b0d +2018,Catamarca,II.5.1,142.81848,TJ,CO2,74100.0,kg/TJ,10582849.367999999,Gas Oil combustion consumption by agriculture machines,AR-K,SESCO,annual,kg,8e348958-ab76-3051-bacd-f18a3536dad9 +2018,Catamarca,II.5.1,142.81848,TJ,CH4,3.9,kg/TJ,556.992072,Gas Oil combustion consumption by agriculture machines,AR-K,SESCO,annual,kg,e86025b3-854d-3cb5-8c13-9b84551b77f8 +2018,Catamarca,II.5.1,142.81848,TJ,N2O,3.9,kg/TJ,556.992072,Gas Oil combustion consumption by agriculture machines,AR-K,SESCO,annual,kg,e86025b3-854d-3cb5-8c13-9b84551b77f8 +2018,Chaco,II.5.1,1250.2938,TJ,CO2,74100.0,kg/TJ,92646770.58,Gas Oil combustion consumption by agriculture machines,AR-H,SESCO,annual,kg,f31e029b-02e5-3196-99bd-2a13e55aa451 +2018,Chaco,II.5.1,1250.2938,TJ,CH4,3.9,kg/TJ,4876.14582,Gas Oil combustion consumption by agriculture machines,AR-H,SESCO,annual,kg,8d8095bb-9f95-36bf-bab3-3bf9d5d3421a +2018,Chaco,II.5.1,1250.2938,TJ,N2O,3.9,kg/TJ,4876.14582,Gas Oil combustion consumption by agriculture machines,AR-H,SESCO,annual,kg,8d8095bb-9f95-36bf-bab3-3bf9d5d3421a +2018,Corrientes,II.5.1,490.58184,TJ,CO2,74100.0,kg/TJ,36352114.344,Gas Oil combustion consumption by agriculture machines,AR-W,SESCO,annual,kg,0c1abf35-9c38-33a3-9609-30f89b5a9fa2 +2018,Corrientes,II.5.1,490.58184,TJ,CH4,3.9,kg/TJ,1913.269176,Gas Oil combustion consumption by agriculture machines,AR-W,SESCO,annual,kg,183fd9ed-03e1-3065-9a8e-e3d421ef872f +2018,Corrientes,II.5.1,490.58184,TJ,N2O,3.9,kg/TJ,1913.269176,Gas Oil combustion consumption by agriculture machines,AR-W,SESCO,annual,kg,183fd9ed-03e1-3065-9a8e-e3d421ef872f +2018,Córdoba,II.5.1,8002.78332,TJ,CO2,74100.0,kg/TJ,593006244.012,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,65cd9b6e-dae3-3e1e-9d92-54d171fc94a4 +2018,Córdoba,II.5.1,8002.78332,TJ,CH4,3.9,kg/TJ,31210.854947999997,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,2229ec8d-baf6-3aa7-95c2-9b8027c9300c +2018,Córdoba,II.5.1,8002.78332,TJ,N2O,3.9,kg/TJ,31210.854947999997,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,2229ec8d-baf6-3aa7-95c2-9b8027c9300c +2018,Entre Rios,II.5.1,2130.68268,TJ,CO2,74100.0,kg/TJ,157883586.588,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,632ef025-4917-32c1-8208-a81d72b9d08c +2018,Entre Rios,II.5.1,2130.68268,TJ,CH4,3.9,kg/TJ,8309.662451999999,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,76be1b17-67d3-3143-b66e-4bbbefb51a92 +2018,Entre Rios,II.5.1,2130.68268,TJ,N2O,3.9,kg/TJ,8309.662451999999,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,76be1b17-67d3-3143-b66e-4bbbefb51a92 +2018,Formosa,II.5.1,241.42607999999998,TJ,CO2,74100.0,kg/TJ,17889672.527999997,Gas Oil combustion consumption by agriculture machines,AR-P,SESCO,annual,kg,605c7fda-9405-37a3-b56d-b6487d9d7987 +2018,Formosa,II.5.1,241.42607999999998,TJ,CH4,3.9,kg/TJ,941.5617119999999,Gas Oil combustion consumption by agriculture machines,AR-P,SESCO,annual,kg,a829fc8e-0db5-36bc-a86c-b1a6e881724c +2018,Formosa,II.5.1,241.42607999999998,TJ,N2O,3.9,kg/TJ,941.5617119999999,Gas Oil combustion consumption by agriculture machines,AR-P,SESCO,annual,kg,a829fc8e-0db5-36bc-a86c-b1a6e881724c +2018,Jujuy,II.5.1,1009.26504,TJ,CO2,74100.0,kg/TJ,74786539.464,Gas Oil combustion consumption by agriculture machines,AR-Y,SESCO,annual,kg,7f2e91e5-e99b-3ff1-8cc0-705a672d0a64 +2018,Jujuy,II.5.1,1009.26504,TJ,CH4,3.9,kg/TJ,3936.133656,Gas Oil combustion consumption by agriculture machines,AR-Y,SESCO,annual,kg,022d284f-7ebd-3c5f-85a4-128bf0322208 +2018,Jujuy,II.5.1,1009.26504,TJ,N2O,3.9,kg/TJ,3936.133656,Gas Oil combustion consumption by agriculture machines,AR-Y,SESCO,annual,kg,022d284f-7ebd-3c5f-85a4-128bf0322208 +2018,La Pampa,II.5.1,1788.3373199999999,TJ,CO2,74100.0,kg/TJ,132515795.41199999,Gas Oil combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,7404589b-320a-3f3b-9279-e343a8f928ed +2018,La Pampa,II.5.1,1788.3373199999999,TJ,CH4,3.9,kg/TJ,6974.515547999999,Gas Oil combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,f1868859-ff87-3023-922a-4d04b9c09121 +2018,La Pampa,II.5.1,1788.3373199999999,TJ,N2O,3.9,kg/TJ,6974.515547999999,Gas Oil combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,f1868859-ff87-3023-922a-4d04b9c09121 +2018,La Rioja,II.5.1,131.04336,TJ,CO2,74100.0,kg/TJ,9710312.976,Gas Oil combustion consumption by agriculture machines,AR-F,SESCO,annual,kg,9d382d32-28fa-3dbf-87eb-e7e68b86f96a +2018,La Rioja,II.5.1,131.04336,TJ,CH4,3.9,kg/TJ,511.06910400000004,Gas Oil combustion consumption by agriculture machines,AR-F,SESCO,annual,kg,1dcd01f9-c147-34e8-8ed7-57539165110a +2018,La Rioja,II.5.1,131.04336,TJ,N2O,3.9,kg/TJ,511.06910400000004,Gas Oil combustion consumption by agriculture machines,AR-F,SESCO,annual,kg,1dcd01f9-c147-34e8-8ed7-57539165110a +2018,Mendoza,II.5.1,2396.09244,TJ,CO2,74100.0,kg/TJ,177550449.804,Gas Oil combustion consumption by agriculture machines,AR-M,SESCO,annual,kg,117c5626-474d-3b8d-a234-107ef3340378 +2018,Mendoza,II.5.1,2396.09244,TJ,CH4,3.9,kg/TJ,9344.760516,Gas Oil combustion consumption by agriculture machines,AR-M,SESCO,annual,kg,0d8f10b9-746c-3a15-80cb-68aa56f15ff3 +2018,Mendoza,II.5.1,2396.09244,TJ,N2O,3.9,kg/TJ,9344.760516,Gas Oil combustion consumption by agriculture machines,AR-M,SESCO,annual,kg,0d8f10b9-746c-3a15-80cb-68aa56f15ff3 +2018,Misiones,II.5.1,1272.39924,TJ,CO2,74100.0,kg/TJ,94284783.684,Gas Oil combustion consumption by agriculture machines,AR-N,SESCO,annual,kg,885643ff-1d0b-3e7b-bf67-60ce528eae67 +2018,Misiones,II.5.1,1272.39924,TJ,CH4,3.9,kg/TJ,4962.357035999999,Gas Oil combustion consumption by agriculture machines,AR-N,SESCO,annual,kg,0d7eb8d1-a9bd-3432-8fcc-ce851d984677 +2018,Misiones,II.5.1,1272.39924,TJ,N2O,3.9,kg/TJ,4962.357035999999,Gas Oil combustion consumption by agriculture machines,AR-N,SESCO,annual,kg,0d7eb8d1-a9bd-3432-8fcc-ce851d984677 +2018,Rio Negro,II.5.1,224.59416,TJ,CO2,74100.0,kg/TJ,16642427.256,Gas Oil combustion consumption by agriculture machines,AR-R,SESCO,annual,kg,ff22797d-b261-3ec8-95dd-9b5fb617f644 +2018,Rio Negro,II.5.1,224.59416,TJ,CH4,3.9,kg/TJ,875.9172239999999,Gas Oil combustion consumption by agriculture machines,AR-R,SESCO,annual,kg,ffd004e5-c03b-31ed-84df-8139bc88c264 +2018,Rio Negro,II.5.1,224.59416,TJ,N2O,3.9,kg/TJ,875.9172239999999,Gas Oil combustion consumption by agriculture machines,AR-R,SESCO,annual,kg,ffd004e5-c03b-31ed-84df-8139bc88c264 +2018,Salta,II.5.1,2063.9329199999997,TJ,CO2,74100.0,kg/TJ,152937429.37199998,Gas Oil combustion consumption by agriculture machines,AR-A,SESCO,annual,kg,39366b00-a2e6-359b-a321-e4e68ef654e3 +2018,Salta,II.5.1,2063.9329199999997,TJ,CH4,3.9,kg/TJ,8049.338387999999,Gas Oil combustion consumption by agriculture machines,AR-A,SESCO,annual,kg,3072dc16-d9ee-37f6-85be-7b41a48030ec +2018,Salta,II.5.1,2063.9329199999997,TJ,N2O,3.9,kg/TJ,8049.338387999999,Gas Oil combustion consumption by agriculture machines,AR-A,SESCO,annual,kg,3072dc16-d9ee-37f6-85be-7b41a48030ec +2018,San Juan,II.5.1,685.08804,TJ,CO2,74100.0,kg/TJ,50765023.764,Gas Oil combustion consumption by agriculture machines,AR-J,SESCO,annual,kg,20eedbbd-c233-31cb-a73d-ee5cf95d2532 +2018,San Juan,II.5.1,685.08804,TJ,CH4,3.9,kg/TJ,2671.843356,Gas Oil combustion consumption by agriculture machines,AR-J,SESCO,annual,kg,f91efeaf-b83f-32b6-b94f-ac9503ebb151 +2018,San Juan,II.5.1,685.08804,TJ,N2O,3.9,kg/TJ,2671.843356,Gas Oil combustion consumption by agriculture machines,AR-J,SESCO,annual,kg,f91efeaf-b83f-32b6-b94f-ac9503ebb151 +2018,San Luis,II.5.1,548.33772,TJ,CO2,74100.0,kg/TJ,40631825.052,Gas Oil combustion consumption by agriculture machines,AR-D,SESCO,annual,kg,b78952dc-ee5f-3c4e-9761-4590c2379853 +2018,San Luis,II.5.1,548.33772,TJ,CH4,3.9,kg/TJ,2138.517108,Gas Oil combustion consumption by agriculture machines,AR-D,SESCO,annual,kg,9d085f8c-cd16-3bb8-86fd-a4ab4720cb1a +2018,San Luis,II.5.1,548.33772,TJ,N2O,3.9,kg/TJ,2138.517108,Gas Oil combustion consumption by agriculture machines,AR-D,SESCO,annual,kg,9d085f8c-cd16-3bb8-86fd-a4ab4720cb1a +2018,Santa Fe,II.5.1,7481.46336,TJ,CO2,74100.0,kg/TJ,554376434.976,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,46647f73-9a61-37cd-bbf4-78e7f151f15b +2018,Santa Fe,II.5.1,7481.46336,TJ,CH4,3.9,kg/TJ,29177.707103999997,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,8bdb1e5f-71c6-3f37-bfad-c4f4678f7393 +2018,Santa Fe,II.5.1,7481.46336,TJ,N2O,3.9,kg/TJ,29177.707103999997,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,8bdb1e5f-71c6-3f37-bfad-c4f4678f7393 +2018,Santiago del Estero,II.5.1,1984.0716,TJ,CO2,74100.0,kg/TJ,147019705.56,Gas Oil combustion consumption by agriculture machines,AR-G,SESCO,annual,kg,6b1ad274-07f5-3d62-8d22-f6b5b797a675 +2018,Santiago del Estero,II.5.1,1984.0716,TJ,CH4,3.9,kg/TJ,7737.87924,Gas Oil combustion consumption by agriculture machines,AR-G,SESCO,annual,kg,1108988d-85b3-3ff0-8985-87a3da3cffab +2018,Santiago del Estero,II.5.1,1984.0716,TJ,N2O,3.9,kg/TJ,7737.87924,Gas Oil combustion consumption by agriculture machines,AR-G,SESCO,annual,kg,1108988d-85b3-3ff0-8985-87a3da3cffab +2018,Tucuman,II.5.1,1305.6657599999999,TJ,CO2,74100.0,kg/TJ,96749832.81599998,Gas Oil combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,d75b3e0e-3c6f-3295-a98a-fec55dce3881 +2018,Tucuman,II.5.1,1305.6657599999999,TJ,CH4,3.9,kg/TJ,5092.096463999999,Gas Oil combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,107491af-3829-3278-9fac-277c031d89fc +2018,Tucuman,II.5.1,1305.6657599999999,TJ,N2O,3.9,kg/TJ,5092.096463999999,Gas Oil combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,107491af-3829-3278-9fac-277c031d89fc +2018,Buenos Aires,II.5.1,948.3306,TJ,CO2,74100.0,kg/TJ,70271297.46,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,3e24d43e-8c01-30db-8d7b-8d32eb964010 +2018,Buenos Aires,II.5.1,948.3306,TJ,CH4,3.9,kg/TJ,3698.48934,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,5ba1ee15-66a9-3c8c-a881-11002e0c2427 +2018,Buenos Aires,II.5.1,948.3306,TJ,N2O,3.9,kg/TJ,3698.48934,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,5ba1ee15-66a9-3c8c-a881-11002e0c2427 +2018,Capital Federal,II.5.1,2.02272,TJ,CO2,74100.0,kg/TJ,149883.552,Gas Oil combustion consumption by agriculture machines,AR-C,SESCO,annual,kg,9bcfd9a1-c4c7-3df2-90c0-b045ab96e49a +2018,Capital Federal,II.5.1,2.02272,TJ,CH4,3.9,kg/TJ,7.8886080000000005,Gas Oil combustion consumption by agriculture machines,AR-C,SESCO,annual,kg,7f74641c-05d4-30e8-915c-6e6e8376c564 +2018,Capital Federal,II.5.1,2.02272,TJ,N2O,3.9,kg/TJ,7.8886080000000005,Gas Oil combustion consumption by agriculture machines,AR-C,SESCO,annual,kg,7f74641c-05d4-30e8-915c-6e6e8376c564 +2018,Catamarca,II.5.1,18.13224,TJ,CO2,74100.0,kg/TJ,1343598.984,Gas Oil combustion consumption by agriculture machines,AR-K,SESCO,annual,kg,8d61c631-6157-3cda-95d3-9873383068a2 +2018,Catamarca,II.5.1,18.13224,TJ,CH4,3.9,kg/TJ,70.71573599999999,Gas Oil combustion consumption by agriculture machines,AR-K,SESCO,annual,kg,6f48ed86-eb19-31e1-9606-bb576798d628 +2018,Catamarca,II.5.1,18.13224,TJ,N2O,3.9,kg/TJ,70.71573599999999,Gas Oil combustion consumption by agriculture machines,AR-K,SESCO,annual,kg,6f48ed86-eb19-31e1-9606-bb576798d628 +2018,Chaco,II.5.1,86.29068,TJ,CO2,74100.0,kg/TJ,6394139.387999999,Gas Oil combustion consumption by agriculture machines,AR-H,SESCO,annual,kg,5c5ff19d-789f-3ddf-9dcb-3ee60a895a49 +2018,Chaco,II.5.1,86.29068,TJ,CH4,3.9,kg/TJ,336.53365199999996,Gas Oil combustion consumption by agriculture machines,AR-H,SESCO,annual,kg,06c4003f-0705-3cb8-beb3-2403b083b0c5 +2018,Chaco,II.5.1,86.29068,TJ,N2O,3.9,kg/TJ,336.53365199999996,Gas Oil combustion consumption by agriculture machines,AR-H,SESCO,annual,kg,06c4003f-0705-3cb8-beb3-2403b083b0c5 +2018,Corrientes,II.5.1,28.7154,TJ,CO2,74100.0,kg/TJ,2127811.14,Gas Oil combustion consumption by agriculture machines,AR-W,SESCO,annual,kg,62f800a4-6e40-3dee-b161-e0b412885d87 +2018,Corrientes,II.5.1,28.7154,TJ,CH4,3.9,kg/TJ,111.99006,Gas Oil combustion consumption by agriculture machines,AR-W,SESCO,annual,kg,f38f000a-ce3a-3cb3-b116-2889020dfd72 +2018,Corrientes,II.5.1,28.7154,TJ,N2O,3.9,kg/TJ,111.99006,Gas Oil combustion consumption by agriculture machines,AR-W,SESCO,annual,kg,f38f000a-ce3a-3cb3-b116-2889020dfd72 +2018,Córdoba,II.5.1,556.82592,TJ,CO2,74100.0,kg/TJ,41260800.672,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,2b8a16c4-0091-3442-84b6-15b715264194 +2018,Córdoba,II.5.1,556.82592,TJ,CH4,3.9,kg/TJ,2171.621088,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,212e1bf6-a0b0-371b-bc15-9136b12c826b +2018,Córdoba,II.5.1,556.82592,TJ,N2O,3.9,kg/TJ,2171.621088,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,212e1bf6-a0b0-371b-bc15-9136b12c826b +2018,Entre Rios,II.5.1,65.99123999999999,TJ,CO2,74100.0,kg/TJ,4889950.884,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,6177f9ca-95e8-3eb7-a17f-e8252094fa71 +2018,Entre Rios,II.5.1,65.99123999999999,TJ,CH4,3.9,kg/TJ,257.36583599999994,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,414deab5-b7bf-380b-a5b4-d985defc0c1b +2018,Entre Rios,II.5.1,65.99123999999999,TJ,N2O,3.9,kg/TJ,257.36583599999994,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,414deab5-b7bf-380b-a5b4-d985defc0c1b +2018,Formosa,II.5.1,28.67928,TJ,CO2,74100.0,kg/TJ,2125134.648,Gas Oil combustion consumption by agriculture machines,AR-P,SESCO,annual,kg,ffc23180-0801-36e0-8349-3ff2cd78b241 +2018,Formosa,II.5.1,28.67928,TJ,CH4,3.9,kg/TJ,111.84919199999999,Gas Oil combustion consumption by agriculture machines,AR-P,SESCO,annual,kg,0c6c5f6e-289c-3003-840b-182dae81256b +2018,Formosa,II.5.1,28.67928,TJ,N2O,3.9,kg/TJ,111.84919199999999,Gas Oil combustion consumption by agriculture machines,AR-P,SESCO,annual,kg,0c6c5f6e-289c-3003-840b-182dae81256b +2018,Jujuy,II.5.1,56.60004,TJ,CO2,74100.0,kg/TJ,4194062.964,Gas Oil combustion consumption by agriculture machines,AR-Y,SESCO,annual,kg,b6a2785b-21a3-3807-b4aa-6087d703df20 +2018,Jujuy,II.5.1,56.60004,TJ,CH4,3.9,kg/TJ,220.74015599999998,Gas Oil combustion consumption by agriculture machines,AR-Y,SESCO,annual,kg,514ab2b7-c11b-3842-9662-b05005ee807f +2018,Jujuy,II.5.1,56.60004,TJ,N2O,3.9,kg/TJ,220.74015599999998,Gas Oil combustion consumption by agriculture machines,AR-Y,SESCO,annual,kg,514ab2b7-c11b-3842-9662-b05005ee807f +2018,La Pampa,II.5.1,218.77884,TJ,CO2,74100.0,kg/TJ,16211512.044,Gas Oil combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,14d6a004-e244-3652-b1fe-1de85372df33 +2018,La Pampa,II.5.1,218.77884,TJ,CH4,3.9,kg/TJ,853.237476,Gas Oil combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,f752feea-1280-3395-bcf1-c8ff0670637d +2018,La Pampa,II.5.1,218.77884,TJ,N2O,3.9,kg/TJ,853.237476,Gas Oil combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,f752feea-1280-3395-bcf1-c8ff0670637d +2018,Mendoza,II.5.1,218.38152,TJ,CO2,74100.0,kg/TJ,16182070.632,Gas Oil combustion consumption by agriculture machines,AR-M,SESCO,annual,kg,ee9246fb-3cc6-3953-a9b7-7adc3e483328 +2018,Mendoza,II.5.1,218.38152,TJ,CH4,3.9,kg/TJ,851.6879279999999,Gas Oil combustion consumption by agriculture machines,AR-M,SESCO,annual,kg,9305b949-17f6-3d0f-af83-c9dcb38306be +2018,Mendoza,II.5.1,218.38152,TJ,N2O,3.9,kg/TJ,851.6879279999999,Gas Oil combustion consumption by agriculture machines,AR-M,SESCO,annual,kg,9305b949-17f6-3d0f-af83-c9dcb38306be +2018,Misiones,II.5.1,130.3932,TJ,CO2,74100.0,kg/TJ,9662136.120000001,Gas Oil combustion consumption by agriculture machines,AR-N,SESCO,annual,kg,c668a759-0aad-3c8f-9188-172b9643df56 +2018,Misiones,II.5.1,130.3932,TJ,CH4,3.9,kg/TJ,508.53348,Gas Oil combustion consumption by agriculture machines,AR-N,SESCO,annual,kg,a1ae1bf8-ee0c-3124-8d84-f8ee4339f6e2 +2018,Misiones,II.5.1,130.3932,TJ,N2O,3.9,kg/TJ,508.53348,Gas Oil combustion consumption by agriculture machines,AR-N,SESCO,annual,kg,a1ae1bf8-ee0c-3124-8d84-f8ee4339f6e2 +2018,Rio Negro,II.5.1,52.626839999999994,TJ,CO2,74100.0,kg/TJ,3899648.8439999996,Gas Oil combustion consumption by agriculture machines,AR-R,SESCO,annual,kg,7405d1a2-3617-31db-9bba-cafd089895ef +2018,Rio Negro,II.5.1,52.626839999999994,TJ,CH4,3.9,kg/TJ,205.24467599999997,Gas Oil combustion consumption by agriculture machines,AR-R,SESCO,annual,kg,707df375-cf56-3d3a-b4b9-be7863cba68f +2018,Rio Negro,II.5.1,52.626839999999994,TJ,N2O,3.9,kg/TJ,205.24467599999997,Gas Oil combustion consumption by agriculture machines,AR-R,SESCO,annual,kg,707df375-cf56-3d3a-b4b9-be7863cba68f +2018,Salta,II.5.1,113.0556,TJ,CO2,74100.0,kg/TJ,8377419.96,Gas Oil combustion consumption by agriculture machines,AR-A,SESCO,annual,kg,63e5f057-15ba-3445-80d0-3abc3ffb0f4d +2018,Salta,II.5.1,113.0556,TJ,CH4,3.9,kg/TJ,440.91684,Gas Oil combustion consumption by agriculture machines,AR-A,SESCO,annual,kg,38f1541a-0876-3457-bb05-46d205b22b4a +2018,Salta,II.5.1,113.0556,TJ,N2O,3.9,kg/TJ,440.91684,Gas Oil combustion consumption by agriculture machines,AR-A,SESCO,annual,kg,38f1541a-0876-3457-bb05-46d205b22b4a +2018,San Juan,II.5.1,120.67692,TJ,CO2,74100.0,kg/TJ,8942159.772,Gas Oil combustion consumption by agriculture machines,AR-J,SESCO,annual,kg,6085d150-0198-3629-a566-47ec58d0e42c +2018,San Juan,II.5.1,120.67692,TJ,CH4,3.9,kg/TJ,470.63998799999996,Gas Oil combustion consumption by agriculture machines,AR-J,SESCO,annual,kg,3a15baae-85bb-3c04-9a33-87c4b234357f +2018,San Juan,II.5.1,120.67692,TJ,N2O,3.9,kg/TJ,470.63998799999996,Gas Oil combustion consumption by agriculture machines,AR-J,SESCO,annual,kg,3a15baae-85bb-3c04-9a33-87c4b234357f +2018,San Luis,II.5.1,43.344,TJ,CO2,74100.0,kg/TJ,3211790.4,Gas Oil combustion consumption by agriculture machines,AR-D,SESCO,annual,kg,e8e8add1-1510-3e68-ba03-d83cbd156cbd +2018,San Luis,II.5.1,43.344,TJ,CH4,3.9,kg/TJ,169.0416,Gas Oil combustion consumption by agriculture machines,AR-D,SESCO,annual,kg,710ebfd4-f0a9-36f1-8959-e95f5295dfe1 +2018,San Luis,II.5.1,43.344,TJ,N2O,3.9,kg/TJ,169.0416,Gas Oil combustion consumption by agriculture machines,AR-D,SESCO,annual,kg,710ebfd4-f0a9-36f1-8959-e95f5295dfe1 +2018,Santa Fe,II.5.1,382.72751999999997,TJ,CO2,74100.0,kg/TJ,28360109.231999997,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,3a06177f-b03f-3608-90d1-563aa11e48c1 +2018,Santa Fe,II.5.1,382.72751999999997,TJ,CH4,3.9,kg/TJ,1492.6373279999998,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,50db0890-bbd1-378d-953c-157bb1bcb179 +2018,Santa Fe,II.5.1,382.72751999999997,TJ,N2O,3.9,kg/TJ,1492.6373279999998,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,50db0890-bbd1-378d-953c-157bb1bcb179 +2018,Santiago del Estero,II.5.1,199.49076,TJ,CO2,74100.0,kg/TJ,14782265.316,Gas Oil combustion consumption by agriculture machines,AR-G,SESCO,annual,kg,af121280-e195-35f5-8044-b95309748226 +2018,Santiago del Estero,II.5.1,199.49076,TJ,CH4,3.9,kg/TJ,778.013964,Gas Oil combustion consumption by agriculture machines,AR-G,SESCO,annual,kg,76ffedcf-50e7-3b3e-ba28-56e158c4f912 +2018,Santiago del Estero,II.5.1,199.49076,TJ,N2O,3.9,kg/TJ,778.013964,Gas Oil combustion consumption by agriculture machines,AR-G,SESCO,annual,kg,76ffedcf-50e7-3b3e-ba28-56e158c4f912 +2018,Tucuman,II.5.1,123.96383999999999,TJ,CO2,74100.0,kg/TJ,9185720.544,Gas Oil combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,27b693e4-af88-3b49-b50d-299ae78e328b +2018,Tucuman,II.5.1,123.96383999999999,TJ,CH4,3.9,kg/TJ,483.45897599999995,Gas Oil combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,89ff2f4b-c91c-357c-9ee1-d013df1bbf47 +2018,Tucuman,II.5.1,123.96383999999999,TJ,N2O,3.9,kg/TJ,483.45897599999995,Gas Oil combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,89ff2f4b-c91c-357c-9ee1-d013df1bbf47 +2018,Buenos Aires,II.5.1,6.384958999999999,TJ,CO2,71500.0,kg/TJ,456524.56849999994,Jet Kerosene combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,f06eb7a1-2abe-3a45-9dcf-90a74670fe00 +2018,Buenos Aires,II.5.1,6.384958999999999,TJ,CH4,0.5,kg/TJ,3.1924794999999997,Jet Kerosene combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,a7e81490-6db2-3051-ad26-daeebe8208be +2018,Buenos Aires,II.5.1,6.384958999999999,TJ,N2O,2.0,kg/TJ,12.769917999999999,Jet Kerosene combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,207ae956-3f73-3d0e-a77b-4cdb032206d4 +2018,Córdoba,II.5.1,0.5661539999999999,TJ,CO2,71500.0,kg/TJ,40480.011,Jet Kerosene combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,93bf2ce2-fb2f-3c4c-b111-a60198180974 +2018,Córdoba,II.5.1,0.5661539999999999,TJ,CH4,0.5,kg/TJ,0.28307699999999997,Jet Kerosene combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,e52974d2-8ca1-3d43-ba2d-742af09cd949 +2018,Córdoba,II.5.1,0.5661539999999999,TJ,N2O,2.0,kg/TJ,1.1323079999999999,Jet Kerosene combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,065cf5c9-4ac3-39b9-ab0b-be084b0cd299 +2018,La Pampa,II.5.1,0.157265,TJ,CO2,71500.0,kg/TJ,11244.447499999998,Jet Kerosene combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,a8e85e65-34ad-3697-9ab5-7e04d406fe70 +2018,La Pampa,II.5.1,0.157265,TJ,CH4,0.5,kg/TJ,0.0786325,Jet Kerosene combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,367ff851-174e-34b6-80f1-1bf235bc288e +2018,La Pampa,II.5.1,0.157265,TJ,N2O,2.0,kg/TJ,0.31453,Jet Kerosene combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,23a3138c-0ad2-3901-9a62-3cd2ca98c8b6 +2018,Santa Fe,II.5.1,9.278635,TJ,CO2,71500.0,kg/TJ,663422.4025,Jet Kerosene combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,1b2a08e8-5f8f-3db5-b010-3e832e19898a +2018,Santa Fe,II.5.1,9.278635,TJ,CH4,0.5,kg/TJ,4.6393175,Jet Kerosene combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,95a83b09-044d-3fe5-b439-595e2e92cabf +2018,Santa Fe,II.5.1,9.278635,TJ,N2O,2.0,kg/TJ,18.55727,Jet Kerosene combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,51025918-3ec4-37a1-85bc-1f71903cda92 +2018,Buenos Aires,II.5.1,309.37868499999996,TJ,CO2,73300.0,kg/TJ,22677457.610499997,Naphtha combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,168a5145-a57a-3f08-a231-8731e76a2816 +2018,Buenos Aires,II.5.1,309.37868499999996,TJ,CH4,0.5,kg/TJ,154.68934249999998,Naphtha combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,7f7b3a14-dff7-319e-b3b1-e2585f5327f5 +2018,Buenos Aires,II.5.1,309.37868499999996,TJ,N2O,2.0,kg/TJ,618.7573699999999,Naphtha combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,712616c2-550d-3726-bc62-7b2426282694 +2018,Mendoza,II.5.1,22.409309999999998,TJ,CO2,73300.0,kg/TJ,1642602.423,Naphtha combustion consumption by agriculture machines,AR-M,SESCO,annual,kg,1366b6c6-38f0-3201-8c41-72e49c5475dd +2018,Mendoza,II.5.1,22.409309999999998,TJ,CH4,0.5,kg/TJ,11.204654999999999,Naphtha combustion consumption by agriculture machines,AR-M,SESCO,annual,kg,0a4f19ee-004c-364a-93ed-7c6309609e61 +2018,Mendoza,II.5.1,22.409309999999998,TJ,N2O,2.0,kg/TJ,44.818619999999996,Naphtha combustion consumption by agriculture machines,AR-M,SESCO,annual,kg,ad6d8b52-718a-3306-98a7-fe9961f42ced +2018,Misiones,II.5.1,1.2335399999999999,TJ,CO2,73300.0,kg/TJ,90418.48199999999,Naphtha combustion consumption by agriculture machines,AR-N,SESCO,annual,kg,a32ae3c2-8a6c-324d-99e6-6e46a8d2f25e +2018,Misiones,II.5.1,1.2335399999999999,TJ,CH4,0.5,kg/TJ,0.6167699999999999,Naphtha combustion consumption by agriculture machines,AR-N,SESCO,annual,kg,5d599ce7-e887-398a-b853-406f0991a048 +2018,Misiones,II.5.1,1.2335399999999999,TJ,N2O,2.0,kg/TJ,2.4670799999999997,Naphtha combustion consumption by agriculture machines,AR-N,SESCO,annual,kg,6db6b0fc-4b03-346f-9e2d-413880a2d567 +2018,Salta,II.5.1,0.6853,TJ,CO2,73300.0,kg/TJ,50232.49,Naphtha combustion consumption by agriculture machines,AR-A,SESCO,annual,kg,7197d63c-8fdf-3839-bf3f-30068b2fe346 +2018,Salta,II.5.1,0.6853,TJ,CH4,0.5,kg/TJ,0.34265,Naphtha combustion consumption by agriculture machines,AR-A,SESCO,annual,kg,22be0c14-04c6-3480-a50e-ecb0ea4d2286 +2018,Salta,II.5.1,0.6853,TJ,N2O,2.0,kg/TJ,1.3706,Naphtha combustion consumption by agriculture machines,AR-A,SESCO,annual,kg,d6ba3893-fa36-3e4a-ad9d-101345dfba8a +2018,Santa Fe,II.5.1,137.985155,TJ,CO2,73300.0,kg/TJ,10114311.861499999,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,b2d1d2c9-3b80-33ff-bd82-c8f4ff744d31 +2018,Santa Fe,II.5.1,137.985155,TJ,CH4,0.5,kg/TJ,68.9925775,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,cc2ee781-c820-3b2b-ae57-c3e591e53402 +2018,Santa Fe,II.5.1,137.985155,TJ,N2O,2.0,kg/TJ,275.97031,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,dab54080-c443-300e-9198-22343e01dfde +2018,Buenos Aires,II.5.1,1.404865,TJ,CO2,73300.0,kg/TJ,102976.6045,Naphtha combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,61a107f0-3411-31af-a84a-6c71e3753fa1 +2018,Buenos Aires,II.5.1,1.404865,TJ,CH4,0.5,kg/TJ,0.7024325,Naphtha combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,6f7107f9-7e8b-3df4-a0e4-93bd71669b84 +2018,Buenos Aires,II.5.1,1.404865,TJ,N2O,2.0,kg/TJ,2.80973,Naphtha combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,a2f9863e-a211-3c5b-b042-9f76805829bd +2018,Santa Fe,II.5.1,0.5825049999999999,TJ,CO2,73300.0,kg/TJ,42697.6165,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,f5882ed0-b8d9-3125-bde5-3a75ffd9ab18 +2018,Santa Fe,II.5.1,0.5825049999999999,TJ,CH4,0.5,kg/TJ,0.29125249999999997,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,6194f0c4-b186-3d48-aa68-165c5cb1704a +2018,Santa Fe,II.5.1,0.5825049999999999,TJ,N2O,2.0,kg/TJ,1.1650099999999999,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,b73a9ecf-382a-3d05-ba6d-f92ec74afb3f +2018,Buenos Aires,II.1.1,10388.4732,TJ,CO2,74100.0,kg/TJ,769785864.12,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,c94eff81-af1d-347b-a186-3c3548deb972 +2018,Buenos Aires,II.1.1,10388.4732,TJ,CH4,3.9,kg/TJ,40515.04548,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,054af9c0-7d52-38d7-a1c7-bed99f267c6e +2018,Buenos Aires,II.1.1,10388.4732,TJ,N2O,3.9,kg/TJ,40515.04548,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,054af9c0-7d52-38d7-a1c7-bed99f267c6e +2018,Capital Federal,II.1.1,3926.6052,TJ,CO2,74100.0,kg/TJ,290961445.32,Gas Oil combustion consumption by freight transport,AR-C,SESCO,annual,kg,3047ae92-dbf4-3501-8f7e-394a61602794 +2018,Capital Federal,II.1.1,3926.6052,TJ,CH4,3.9,kg/TJ,15313.76028,Gas Oil combustion consumption by freight transport,AR-C,SESCO,annual,kg,32c366c0-7ff5-3b5c-bf86-a32ccbde79d8 +2018,Capital Federal,II.1.1,3926.6052,TJ,N2O,3.9,kg/TJ,15313.76028,Gas Oil combustion consumption by freight transport,AR-C,SESCO,annual,kg,32c366c0-7ff5-3b5c-bf86-a32ccbde79d8 +2018,Catamarca,II.1.1,19.07136,TJ,CO2,74100.0,kg/TJ,1413187.7759999998,Gas Oil combustion consumption by freight transport,AR-K,SESCO,annual,kg,da858d5a-5fad-37d4-9ba9-9a7987325af9 +2018,Catamarca,II.1.1,19.07136,TJ,CH4,3.9,kg/TJ,74.37830399999999,Gas Oil combustion consumption by freight transport,AR-K,SESCO,annual,kg,bab64f9a-ace9-35a4-b9b2-527ecef3acc8 +2018,Catamarca,II.1.1,19.07136,TJ,N2O,3.9,kg/TJ,74.37830399999999,Gas Oil combustion consumption by freight transport,AR-K,SESCO,annual,kg,bab64f9a-ace9-35a4-b9b2-527ecef3acc8 +2018,Chaco,II.1.1,282.02495999999996,TJ,CO2,74100.0,kg/TJ,20898049.536,Gas Oil combustion consumption by freight transport,AR-H,SESCO,annual,kg,29d5d460-e908-3ff2-9cab-0920b424f002 +2018,Chaco,II.1.1,282.02495999999996,TJ,CH4,3.9,kg/TJ,1099.8973439999997,Gas Oil combustion consumption by freight transport,AR-H,SESCO,annual,kg,0afafabb-aacc-38e9-9e7e-1b03c0214b00 +2018,Chaco,II.1.1,282.02495999999996,TJ,N2O,3.9,kg/TJ,1099.8973439999997,Gas Oil combustion consumption by freight transport,AR-H,SESCO,annual,kg,0afafabb-aacc-38e9-9e7e-1b03c0214b00 +2018,Chubut,II.1.1,230.80679999999998,TJ,CO2,74100.0,kg/TJ,17102783.88,Gas Oil combustion consumption by freight transport,AR-U,SESCO,annual,kg,83bc7810-da88-3990-8b57-7a76527eaf4e +2018,Chubut,II.1.1,230.80679999999998,TJ,CH4,3.9,kg/TJ,900.1465199999999,Gas Oil combustion consumption by freight transport,AR-U,SESCO,annual,kg,4204d6a2-438d-32d8-8fdd-6930791db4a7 +2018,Chubut,II.1.1,230.80679999999998,TJ,N2O,3.9,kg/TJ,900.1465199999999,Gas Oil combustion consumption by freight transport,AR-U,SESCO,annual,kg,4204d6a2-438d-32d8-8fdd-6930791db4a7 +2018,Corrientes,II.1.1,401.00424,TJ,CO2,74100.0,kg/TJ,29714414.184,Gas Oil combustion consumption by freight transport,AR-W,SESCO,annual,kg,6b63cf73-9b44-362e-98bf-5032b2cb5ff7 +2018,Corrientes,II.1.1,401.00424,TJ,CH4,3.9,kg/TJ,1563.916536,Gas Oil combustion consumption by freight transport,AR-W,SESCO,annual,kg,0409d1f5-e0dc-3799-a03c-276500430e1c +2018,Corrientes,II.1.1,401.00424,TJ,N2O,3.9,kg/TJ,1563.916536,Gas Oil combustion consumption by freight transport,AR-W,SESCO,annual,kg,0409d1f5-e0dc-3799-a03c-276500430e1c +2018,Córdoba,II.1.1,2907.51552,TJ,CO2,74100.0,kg/TJ,215446900.032,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,b3ecb592-8c70-349b-bace-c56b97df9e2c +2018,Córdoba,II.1.1,2907.51552,TJ,CH4,3.9,kg/TJ,11339.310528,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,03a4c51e-e973-3195-bfd3-aef222c05c41 +2018,Córdoba,II.1.1,2907.51552,TJ,N2O,3.9,kg/TJ,11339.310528,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,03a4c51e-e973-3195-bfd3-aef222c05c41 +2018,Entre Rios,II.1.1,657.5645999999999,TJ,CO2,74100.0,kg/TJ,48725536.85999999,Gas Oil combustion consumption by freight transport,AR-E,SESCO,annual,kg,67da911d-5b5f-3703-be31-6e1514607c5c +2018,Entre Rios,II.1.1,657.5645999999999,TJ,CH4,3.9,kg/TJ,2564.5019399999996,Gas Oil combustion consumption by freight transport,AR-E,SESCO,annual,kg,4ac1ee43-80c4-3e47-8ee1-1f14d1c05d7e +2018,Entre Rios,II.1.1,657.5645999999999,TJ,N2O,3.9,kg/TJ,2564.5019399999996,Gas Oil combustion consumption by freight transport,AR-E,SESCO,annual,kg,4ac1ee43-80c4-3e47-8ee1-1f14d1c05d7e +2018,Formosa,II.1.1,35.68656,TJ,CO2,74100.0,kg/TJ,2644374.096,Gas Oil combustion consumption by freight transport,AR-P,SESCO,annual,kg,d49c1863-7c9a-3ad7-a25b-3eca450958ef +2018,Formosa,II.1.1,35.68656,TJ,CH4,3.9,kg/TJ,139.177584,Gas Oil combustion consumption by freight transport,AR-P,SESCO,annual,kg,1a50390a-767a-3e32-b642-3c6d2e2c5baf +2018,Formosa,II.1.1,35.68656,TJ,N2O,3.9,kg/TJ,139.177584,Gas Oil combustion consumption by freight transport,AR-P,SESCO,annual,kg,1a50390a-767a-3e32-b642-3c6d2e2c5baf +2018,Jujuy,II.1.1,185.44008,TJ,CO2,74100.0,kg/TJ,13741109.928,Gas Oil combustion consumption by freight transport,AR-Y,SESCO,annual,kg,2a7ec581-1d67-37d3-a25a-573d4e7b6bd4 +2018,Jujuy,II.1.1,185.44008,TJ,CH4,3.9,kg/TJ,723.216312,Gas Oil combustion consumption by freight transport,AR-Y,SESCO,annual,kg,29204e9f-6e46-354a-a570-1e544f036238 +2018,Jujuy,II.1.1,185.44008,TJ,N2O,3.9,kg/TJ,723.216312,Gas Oil combustion consumption by freight transport,AR-Y,SESCO,annual,kg,29204e9f-6e46-354a-a570-1e544f036238 +2018,La Pampa,II.1.1,169.58339999999998,TJ,CO2,74100.0,kg/TJ,12566129.94,Gas Oil combustion consumption by freight transport,AR-L,SESCO,annual,kg,59cb25b3-ba78-33f5-b918-6a6bb813474f +2018,La Pampa,II.1.1,169.58339999999998,TJ,CH4,3.9,kg/TJ,661.3752599999999,Gas Oil combustion consumption by freight transport,AR-L,SESCO,annual,kg,3afc2437-6490-3786-89d1-ad6d186d7dd6 +2018,La Pampa,II.1.1,169.58339999999998,TJ,N2O,3.9,kg/TJ,661.3752599999999,Gas Oil combustion consumption by freight transport,AR-L,SESCO,annual,kg,3afc2437-6490-3786-89d1-ad6d186d7dd6 +2018,La Rioja,II.1.1,9.24672,TJ,CO2,74100.0,kg/TJ,685181.9519999999,Gas Oil combustion consumption by freight transport,AR-F,SESCO,annual,kg,8963be44-6d49-3bd5-94d8-9c0801a3a8dc +2018,La Rioja,II.1.1,9.24672,TJ,CH4,3.9,kg/TJ,36.062208,Gas Oil combustion consumption by freight transport,AR-F,SESCO,annual,kg,f67ea209-a3b6-3b9a-a5e6-539a2cb97218 +2018,La Rioja,II.1.1,9.24672,TJ,N2O,3.9,kg/TJ,36.062208,Gas Oil combustion consumption by freight transport,AR-F,SESCO,annual,kg,f67ea209-a3b6-3b9a-a5e6-539a2cb97218 +2018,Mendoza,II.1.1,1995.88284,TJ,CO2,74100.0,kg/TJ,147894918.444,Gas Oil combustion consumption by freight transport,AR-M,SESCO,annual,kg,c1503b26-268b-3e2f-bf2c-c39da18f4775 +2018,Mendoza,II.1.1,1995.88284,TJ,CH4,3.9,kg/TJ,7783.943076,Gas Oil combustion consumption by freight transport,AR-M,SESCO,annual,kg,8da38541-1683-3653-a060-9c0548a5d683 +2018,Mendoza,II.1.1,1995.88284,TJ,N2O,3.9,kg/TJ,7783.943076,Gas Oil combustion consumption by freight transport,AR-M,SESCO,annual,kg,8da38541-1683-3653-a060-9c0548a5d683 +2018,Misiones,II.1.1,1004.2443599999999,TJ,CO2,74100.0,kg/TJ,74414507.07599999,Gas Oil combustion consumption by freight transport,AR-N,SESCO,annual,kg,2e546de3-87e6-3c4a-8ee1-18c70ada7fa7 +2018,Misiones,II.1.1,1004.2443599999999,TJ,CH4,3.9,kg/TJ,3916.5530039999994,Gas Oil combustion consumption by freight transport,AR-N,SESCO,annual,kg,c53f6b63-d66b-3640-9264-b5499b7a4f62 +2018,Misiones,II.1.1,1004.2443599999999,TJ,N2O,3.9,kg/TJ,3916.5530039999994,Gas Oil combustion consumption by freight transport,AR-N,SESCO,annual,kg,c53f6b63-d66b-3640-9264-b5499b7a4f62 +2018,Neuquén,II.1.1,965.37924,TJ,CO2,74100.0,kg/TJ,71534601.684,Gas Oil combustion consumption by freight transport,AR-Q,SESCO,annual,kg,940f153c-d29c-3f71-8961-c198e1175047 +2018,Neuquén,II.1.1,965.37924,TJ,CH4,3.9,kg/TJ,3764.9790359999997,Gas Oil combustion consumption by freight transport,AR-Q,SESCO,annual,kg,1bdb174f-ccc2-3549-bb1d-7dbc76e35a9e +2018,Neuquén,II.1.1,965.37924,TJ,N2O,3.9,kg/TJ,3764.9790359999997,Gas Oil combustion consumption by freight transport,AR-Q,SESCO,annual,kg,1bdb174f-ccc2-3549-bb1d-7dbc76e35a9e +2018,Rio Negro,II.1.1,416.68032,TJ,CO2,74100.0,kg/TJ,30876011.712,Gas Oil combustion consumption by freight transport,AR-R,SESCO,annual,kg,6f14fe47-ba2f-3071-a2bd-5a5feb4a6ea7 +2018,Rio Negro,II.1.1,416.68032,TJ,CH4,3.9,kg/TJ,1625.053248,Gas Oil combustion consumption by freight transport,AR-R,SESCO,annual,kg,b693f7a4-7cf1-3dac-9fd5-5cdedac88b45 +2018,Rio Negro,II.1.1,416.68032,TJ,N2O,3.9,kg/TJ,1625.053248,Gas Oil combustion consumption by freight transport,AR-R,SESCO,annual,kg,b693f7a4-7cf1-3dac-9fd5-5cdedac88b45 +2018,Salta,II.1.1,349.31651999999997,TJ,CO2,74100.0,kg/TJ,25884354.132,Gas Oil combustion consumption by freight transport,AR-A,SESCO,annual,kg,16b34165-007d-3ba7-80df-b5daa4327c43 +2018,Salta,II.1.1,349.31651999999997,TJ,CH4,3.9,kg/TJ,1362.334428,Gas Oil combustion consumption by freight transport,AR-A,SESCO,annual,kg,363d378b-00d3-3e46-bb3a-f207845fdf35 +2018,Salta,II.1.1,349.31651999999997,TJ,N2O,3.9,kg/TJ,1362.334428,Gas Oil combustion consumption by freight transport,AR-A,SESCO,annual,kg,363d378b-00d3-3e46-bb3a-f207845fdf35 +2018,San Juan,II.1.1,161.92596,TJ,CO2,74100.0,kg/TJ,11998713.636,Gas Oil combustion consumption by freight transport,AR-J,SESCO,annual,kg,88197d66-4709-399f-81d2-202040eb21f3 +2018,San Juan,II.1.1,161.92596,TJ,CH4,3.9,kg/TJ,631.511244,Gas Oil combustion consumption by freight transport,AR-J,SESCO,annual,kg,ed1098a9-70ff-30a9-b7c8-baebbcf60592 +2018,San Juan,II.1.1,161.92596,TJ,N2O,3.9,kg/TJ,631.511244,Gas Oil combustion consumption by freight transport,AR-J,SESCO,annual,kg,ed1098a9-70ff-30a9-b7c8-baebbcf60592 +2018,San Luis,II.1.1,216.9006,TJ,CO2,74100.0,kg/TJ,16072334.459999999,Gas Oil combustion consumption by freight transport,AR-D,SESCO,annual,kg,df35e3d3-9945-3794-ac52-c384852b200d +2018,San Luis,II.1.1,216.9006,TJ,CH4,3.9,kg/TJ,845.91234,Gas Oil combustion consumption by freight transport,AR-D,SESCO,annual,kg,2d5fb4b8-8b83-39a2-b8ac-ce659c71ab58 +2018,San Luis,II.1.1,216.9006,TJ,N2O,3.9,kg/TJ,845.91234,Gas Oil combustion consumption by freight transport,AR-D,SESCO,annual,kg,2d5fb4b8-8b83-39a2-b8ac-ce659c71ab58 +2018,Santa Cruz,II.1.1,182.83944,TJ,CO2,74100.0,kg/TJ,13548402.503999999,Gas Oil combustion consumption by freight transport,AR-Z,SESCO,annual,kg,163b9ab9-4524-3001-83ce-55317c4bb6b1 +2018,Santa Cruz,II.1.1,182.83944,TJ,CH4,3.9,kg/TJ,713.073816,Gas Oil combustion consumption by freight transport,AR-Z,SESCO,annual,kg,ed7c8c73-bfd5-355c-aabc-926786f41e6a +2018,Santa Cruz,II.1.1,182.83944,TJ,N2O,3.9,kg/TJ,713.073816,Gas Oil combustion consumption by freight transport,AR-Z,SESCO,annual,kg,ed7c8c73-bfd5-355c-aabc-926786f41e6a +2018,Santa Fe,II.1.1,2662.044,TJ,CO2,74100.0,kg/TJ,197257460.39999998,Gas Oil combustion consumption by freight transport,AR-S,SESCO,annual,kg,2273cb64-17b0-3712-a497-27f272e658ab +2018,Santa Fe,II.1.1,2662.044,TJ,CH4,3.9,kg/TJ,10381.971599999999,Gas Oil combustion consumption by freight transport,AR-S,SESCO,annual,kg,acea3932-4197-39d5-b2d4-82bbaec599bd +2018,Santa Fe,II.1.1,2662.044,TJ,N2O,3.9,kg/TJ,10381.971599999999,Gas Oil combustion consumption by freight transport,AR-S,SESCO,annual,kg,acea3932-4197-39d5-b2d4-82bbaec599bd +2018,Santiago del Estero,II.1.1,263.24255999999997,TJ,CO2,74100.0,kg/TJ,19506273.696,Gas Oil combustion consumption by freight transport,AR-G,SESCO,annual,kg,6dba6743-e9e7-3eb9-b277-bad160f63672 +2018,Santiago del Estero,II.1.1,263.24255999999997,TJ,CH4,3.9,kg/TJ,1026.6459839999998,Gas Oil combustion consumption by freight transport,AR-G,SESCO,annual,kg,c10ab71d-75e9-341c-b7cc-1c8678306e58 +2018,Santiago del Estero,II.1.1,263.24255999999997,TJ,N2O,3.9,kg/TJ,1026.6459839999998,Gas Oil combustion consumption by freight transport,AR-G,SESCO,annual,kg,c10ab71d-75e9-341c-b7cc-1c8678306e58 +2018,Tierra del Fuego,II.1.1,354.08436,TJ,CO2,74100.0,kg/TJ,26237651.076,Gas Oil combustion consumption by freight transport,AR-V,SESCO,annual,kg,891265cd-3e97-3888-b9a0-cb057e42213c +2018,Tierra del Fuego,II.1.1,354.08436,TJ,CH4,3.9,kg/TJ,1380.929004,Gas Oil combustion consumption by freight transport,AR-V,SESCO,annual,kg,227a40ab-9bd7-33b3-a4e6-df6b77a7a8c3 +2018,Tierra del Fuego,II.1.1,354.08436,TJ,N2O,3.9,kg/TJ,1380.929004,Gas Oil combustion consumption by freight transport,AR-V,SESCO,annual,kg,227a40ab-9bd7-33b3-a4e6-df6b77a7a8c3 +2018,Tucuman,II.1.1,672.77112,TJ,CO2,74100.0,kg/TJ,49852339.992,Gas Oil combustion consumption by freight transport,AR-T,SESCO,annual,kg,7b868224-00c9-31b0-87c1-6062415b9377 +2018,Tucuman,II.1.1,672.77112,TJ,CH4,3.9,kg/TJ,2623.8073679999998,Gas Oil combustion consumption by freight transport,AR-T,SESCO,annual,kg,77d44174-cdc2-39f8-acdb-0f365ea45f91 +2018,Tucuman,II.1.1,672.77112,TJ,N2O,3.9,kg/TJ,2623.8073679999998,Gas Oil combustion consumption by freight transport,AR-T,SESCO,annual,kg,77d44174-cdc2-39f8-acdb-0f365ea45f91 +2018,Buenos Aires,II.1.1,1980.71244,TJ,CO2,74100.0,kg/TJ,146770791.804,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,fb898b42-9c5b-3371-91f3-dd370656b855 +2018,Buenos Aires,II.1.1,1980.71244,TJ,CH4,3.9,kg/TJ,7724.778516,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,9bd49b0d-d7a0-3aa1-a53b-db9c653c9ded +2018,Buenos Aires,II.1.1,1980.71244,TJ,N2O,3.9,kg/TJ,7724.778516,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,9bd49b0d-d7a0-3aa1-a53b-db9c653c9ded +2018,Capital Federal,II.1.1,2029.98012,TJ,CO2,74100.0,kg/TJ,150421526.892,Gas Oil combustion consumption by freight transport,AR-C,SESCO,annual,kg,0a3faf6c-f70b-30eb-9fcf-bceca858d6ab +2018,Capital Federal,II.1.1,2029.98012,TJ,CH4,3.9,kg/TJ,7916.922468,Gas Oil combustion consumption by freight transport,AR-C,SESCO,annual,kg,ef8dba0e-4f86-3dd3-98e1-837dd72025a4 +2018,Capital Federal,II.1.1,2029.98012,TJ,N2O,3.9,kg/TJ,7916.922468,Gas Oil combustion consumption by freight transport,AR-C,SESCO,annual,kg,ef8dba0e-4f86-3dd3-98e1-837dd72025a4 +2018,Catamarca,II.1.1,7.98252,TJ,CO2,74100.0,kg/TJ,591504.732,Gas Oil combustion consumption by freight transport,AR-K,SESCO,annual,kg,4a3b49f4-0faf-39b7-957b-e465fb35403e +2018,Catamarca,II.1.1,7.98252,TJ,CH4,3.9,kg/TJ,31.131828,Gas Oil combustion consumption by freight transport,AR-K,SESCO,annual,kg,6c88a9b4-b66a-3afa-83cf-8a821eb3df6c +2018,Catamarca,II.1.1,7.98252,TJ,N2O,3.9,kg/TJ,31.131828,Gas Oil combustion consumption by freight transport,AR-K,SESCO,annual,kg,6c88a9b4-b66a-3afa-83cf-8a821eb3df6c +2018,Chaco,II.1.1,98.89656,TJ,CO2,74100.0,kg/TJ,7328235.096,Gas Oil combustion consumption by freight transport,AR-H,SESCO,annual,kg,2e56a203-fc02-3f27-b4b5-e4d60b95d99e +2018,Chaco,II.1.1,98.89656,TJ,CH4,3.9,kg/TJ,385.696584,Gas Oil combustion consumption by freight transport,AR-H,SESCO,annual,kg,dc0fe1ff-4566-3ba7-86f8-8e7a7351ae1c +2018,Chaco,II.1.1,98.89656,TJ,N2O,3.9,kg/TJ,385.696584,Gas Oil combustion consumption by freight transport,AR-H,SESCO,annual,kg,dc0fe1ff-4566-3ba7-86f8-8e7a7351ae1c +2018,Chubut,II.1.1,221.95739999999998,TJ,CO2,74100.0,kg/TJ,16447043.339999998,Gas Oil combustion consumption by freight transport,AR-U,SESCO,annual,kg,c57abd2b-e48a-38de-ace5-74b21a15f1be +2018,Chubut,II.1.1,221.95739999999998,TJ,CH4,3.9,kg/TJ,865.6338599999999,Gas Oil combustion consumption by freight transport,AR-U,SESCO,annual,kg,f7be765e-01b5-305c-b808-48448714de8c +2018,Chubut,II.1.1,221.95739999999998,TJ,N2O,3.9,kg/TJ,865.6338599999999,Gas Oil combustion consumption by freight transport,AR-U,SESCO,annual,kg,f7be765e-01b5-305c-b808-48448714de8c +2018,Corrientes,II.1.1,92.86452,TJ,CO2,74100.0,kg/TJ,6881260.932,Gas Oil combustion consumption by freight transport,AR-W,SESCO,annual,kg,fc2edacd-49a6-34c0-918c-83cc2a633e7b +2018,Corrientes,II.1.1,92.86452,TJ,CH4,3.9,kg/TJ,362.171628,Gas Oil combustion consumption by freight transport,AR-W,SESCO,annual,kg,76539b4d-c791-35b7-9039-f1df37a4454f +2018,Corrientes,II.1.1,92.86452,TJ,N2O,3.9,kg/TJ,362.171628,Gas Oil combustion consumption by freight transport,AR-W,SESCO,annual,kg,76539b4d-c791-35b7-9039-f1df37a4454f +2018,Córdoba,II.1.1,336.53004,TJ,CO2,74100.0,kg/TJ,24936875.963999998,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,7edf2864-2ab4-32a6-bd52-4d88912e457a +2018,Córdoba,II.1.1,336.53004,TJ,CH4,3.9,kg/TJ,1312.467156,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,aadec96d-5014-3aa7-a997-1cf02e0a660e +2018,Córdoba,II.1.1,336.53004,TJ,N2O,3.9,kg/TJ,1312.467156,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,aadec96d-5014-3aa7-a997-1cf02e0a660e +2018,Entre Rios,II.1.1,154.66584,TJ,CO2,74100.0,kg/TJ,11460738.744,Gas Oil combustion consumption by freight transport,AR-E,SESCO,annual,kg,94728213-1d59-375b-8080-3dffdb9ec09b +2018,Entre Rios,II.1.1,154.66584,TJ,CH4,3.9,kg/TJ,603.196776,Gas Oil combustion consumption by freight transport,AR-E,SESCO,annual,kg,f9fc3c60-800f-361c-b948-d97b060a8338 +2018,Entre Rios,II.1.1,154.66584,TJ,N2O,3.9,kg/TJ,603.196776,Gas Oil combustion consumption by freight transport,AR-E,SESCO,annual,kg,f9fc3c60-800f-361c-b948-d97b060a8338 +2018,Formosa,II.1.1,8.41596,TJ,CO2,74100.0,kg/TJ,623622.636,Gas Oil combustion consumption by freight transport,AR-P,SESCO,annual,kg,cd7a7359-8bee-325b-88f3-448cf8fba552 +2018,Formosa,II.1.1,8.41596,TJ,CH4,3.9,kg/TJ,32.822244,Gas Oil combustion consumption by freight transport,AR-P,SESCO,annual,kg,33ad741f-eb13-31fa-ab45-5c2dce7b4aa1 +2018,Formosa,II.1.1,8.41596,TJ,N2O,3.9,kg/TJ,32.822244,Gas Oil combustion consumption by freight transport,AR-P,SESCO,annual,kg,33ad741f-eb13-31fa-ab45-5c2dce7b4aa1 +2018,Jujuy,II.1.1,17.662679999999998,TJ,CO2,74100.0,kg/TJ,1308804.5879999998,Gas Oil combustion consumption by freight transport,AR-Y,SESCO,annual,kg,a1f3e559-9f3b-38f7-8350-3ed0ba81d8d7 +2018,Jujuy,II.1.1,17.662679999999998,TJ,CH4,3.9,kg/TJ,68.884452,Gas Oil combustion consumption by freight transport,AR-Y,SESCO,annual,kg,77f695b0-4297-3962-80f0-c8bd469f9228 +2018,Jujuy,II.1.1,17.662679999999998,TJ,N2O,3.9,kg/TJ,68.884452,Gas Oil combustion consumption by freight transport,AR-Y,SESCO,annual,kg,77f695b0-4297-3962-80f0-c8bd469f9228 +2018,La Pampa,II.1.1,52.87968,TJ,CO2,74100.0,kg/TJ,3918384.288,Gas Oil combustion consumption by freight transport,AR-L,SESCO,annual,kg,bf49ff3e-ebc7-3631-8088-169e4421ae15 +2018,La Pampa,II.1.1,52.87968,TJ,CH4,3.9,kg/TJ,206.230752,Gas Oil combustion consumption by freight transport,AR-L,SESCO,annual,kg,f9766f3b-de5c-31fe-9ef9-3a37cdfe4725 +2018,La Pampa,II.1.1,52.87968,TJ,N2O,3.9,kg/TJ,206.230752,Gas Oil combustion consumption by freight transport,AR-L,SESCO,annual,kg,f9766f3b-de5c-31fe-9ef9-3a37cdfe4725 +2018,La Rioja,II.1.1,8.59656,TJ,CO2,74100.0,kg/TJ,637005.096,Gas Oil combustion consumption by freight transport,AR-F,SESCO,annual,kg,8ea3db78-e602-3503-8736-f5a9dcaeaba3 +2018,La Rioja,II.1.1,8.59656,TJ,CH4,3.9,kg/TJ,33.526584,Gas Oil combustion consumption by freight transport,AR-F,SESCO,annual,kg,93d11a20-0da4-309d-aa46-00c7ac7cb52e +2018,La Rioja,II.1.1,8.59656,TJ,N2O,3.9,kg/TJ,33.526584,Gas Oil combustion consumption by freight transport,AR-F,SESCO,annual,kg,93d11a20-0da4-309d-aa46-00c7ac7cb52e +2018,Mendoza,II.1.1,372.90288,TJ,CO2,74100.0,kg/TJ,27632103.408,Gas Oil combustion consumption by freight transport,AR-M,SESCO,annual,kg,e6e8cb86-38f5-396c-8c74-06d46a38c613 +2018,Mendoza,II.1.1,372.90288,TJ,CH4,3.9,kg/TJ,1454.321232,Gas Oil combustion consumption by freight transport,AR-M,SESCO,annual,kg,9280f742-f31d-31d3-bcec-183df993f035 +2018,Mendoza,II.1.1,372.90288,TJ,N2O,3.9,kg/TJ,1454.321232,Gas Oil combustion consumption by freight transport,AR-M,SESCO,annual,kg,9280f742-f31d-31d3-bcec-183df993f035 +2018,Misiones,II.1.1,130.79052,TJ,CO2,74100.0,kg/TJ,9691577.532,Gas Oil combustion consumption by freight transport,AR-N,SESCO,annual,kg,6fa33938-ee8b-37aa-ba5a-8dc815e2ede1 +2018,Misiones,II.1.1,130.79052,TJ,CH4,3.9,kg/TJ,510.08302799999996,Gas Oil combustion consumption by freight transport,AR-N,SESCO,annual,kg,e453b4bf-e474-318c-9200-de7af6753664 +2018,Misiones,II.1.1,130.79052,TJ,N2O,3.9,kg/TJ,510.08302799999996,Gas Oil combustion consumption by freight transport,AR-N,SESCO,annual,kg,e453b4bf-e474-318c-9200-de7af6753664 +2018,Neuquén,II.1.1,724.7478,TJ,CO2,74100.0,kg/TJ,53703811.98,Gas Oil combustion consumption by freight transport,AR-Q,SESCO,annual,kg,2bf55910-3173-3911-ae82-7b44e111f91e +2018,Neuquén,II.1.1,724.7478,TJ,CH4,3.9,kg/TJ,2826.51642,Gas Oil combustion consumption by freight transport,AR-Q,SESCO,annual,kg,632a189c-4a49-3645-97cf-766b5f93530b +2018,Neuquén,II.1.1,724.7478,TJ,N2O,3.9,kg/TJ,2826.51642,Gas Oil combustion consumption by freight transport,AR-Q,SESCO,annual,kg,632a189c-4a49-3645-97cf-766b5f93530b +2018,Rio Negro,II.1.1,174.60407999999998,TJ,CO2,74100.0,kg/TJ,12938162.327999998,Gas Oil combustion consumption by freight transport,AR-R,SESCO,annual,kg,914e7466-4483-37df-9ba5-93d9f4f5a5dc +2018,Rio Negro,II.1.1,174.60407999999998,TJ,CH4,3.9,kg/TJ,680.9559119999999,Gas Oil combustion consumption by freight transport,AR-R,SESCO,annual,kg,ba6a23ee-1b39-3ca3-a4ba-666f48a260c1 +2018,Rio Negro,II.1.1,174.60407999999998,TJ,N2O,3.9,kg/TJ,680.9559119999999,Gas Oil combustion consumption by freight transport,AR-R,SESCO,annual,kg,ba6a23ee-1b39-3ca3-a4ba-666f48a260c1 +2018,Salta,II.1.1,123.02471999999999,TJ,CO2,74100.0,kg/TJ,9116131.751999998,Gas Oil combustion consumption by freight transport,AR-A,SESCO,annual,kg,4316bd6a-226f-3705-9a8e-2df76a20cdfe +2018,Salta,II.1.1,123.02471999999999,TJ,CH4,3.9,kg/TJ,479.79640799999993,Gas Oil combustion consumption by freight transport,AR-A,SESCO,annual,kg,d16549bc-9854-35a1-b728-a5ae6170cfb9 +2018,Salta,II.1.1,123.02471999999999,TJ,N2O,3.9,kg/TJ,479.79640799999993,Gas Oil combustion consumption by freight transport,AR-A,SESCO,annual,kg,d16549bc-9854-35a1-b728-a5ae6170cfb9 +2018,San Juan,II.1.1,20.371679999999998,TJ,CO2,74100.0,kg/TJ,1509541.488,Gas Oil combustion consumption by freight transport,AR-J,SESCO,annual,kg,fd8546aa-721d-3c0b-a609-c1e013338bf4 +2018,San Juan,II.1.1,20.371679999999998,TJ,CH4,3.9,kg/TJ,79.44955199999998,Gas Oil combustion consumption by freight transport,AR-J,SESCO,annual,kg,c6f02dc6-afbc-3aa1-ae02-fcecae92e7e9 +2018,San Juan,II.1.1,20.371679999999998,TJ,N2O,3.9,kg/TJ,79.44955199999998,Gas Oil combustion consumption by freight transport,AR-J,SESCO,annual,kg,c6f02dc6-afbc-3aa1-ae02-fcecae92e7e9 +2018,San Luis,II.1.1,45.836279999999995,TJ,CO2,74100.0,kg/TJ,3396468.3479999998,Gas Oil combustion consumption by freight transport,AR-D,SESCO,annual,kg,3d247282-764d-37ec-b5e3-23ed65168ad0 +2018,San Luis,II.1.1,45.836279999999995,TJ,CH4,3.9,kg/TJ,178.76149199999998,Gas Oil combustion consumption by freight transport,AR-D,SESCO,annual,kg,dbfb9582-31cb-3112-bc09-702363785193 +2018,San Luis,II.1.1,45.836279999999995,TJ,N2O,3.9,kg/TJ,178.76149199999998,Gas Oil combustion consumption by freight transport,AR-D,SESCO,annual,kg,dbfb9582-31cb-3112-bc09-702363785193 +2018,Santa Cruz,II.1.1,78.16368,TJ,CO2,74100.0,kg/TJ,5791928.688,Gas Oil combustion consumption by freight transport,AR-Z,SESCO,annual,kg,2afdfea8-f7cd-32d7-acdc-6d0155ff3f73 +2018,Santa Cruz,II.1.1,78.16368,TJ,CH4,3.9,kg/TJ,304.838352,Gas Oil combustion consumption by freight transport,AR-Z,SESCO,annual,kg,e50e38b2-313e-348a-a21c-9999d5a4ecfb +2018,Santa Cruz,II.1.1,78.16368,TJ,N2O,3.9,kg/TJ,304.838352,Gas Oil combustion consumption by freight transport,AR-Z,SESCO,annual,kg,e50e38b2-313e-348a-a21c-9999d5a4ecfb +2018,Santa Fe,II.1.1,512.43444,TJ,CO2,74100.0,kg/TJ,37971392.004,Gas Oil combustion consumption by freight transport,AR-S,SESCO,annual,kg,1d3bc3db-bbd3-3883-824b-8cfdc1d7722e +2018,Santa Fe,II.1.1,512.43444,TJ,CH4,3.9,kg/TJ,1998.494316,Gas Oil combustion consumption by freight transport,AR-S,SESCO,annual,kg,e8cc632a-4cb4-3822-a936-9a2e0792409d +2018,Santa Fe,II.1.1,512.43444,TJ,N2O,3.9,kg/TJ,1998.494316,Gas Oil combustion consumption by freight transport,AR-S,SESCO,annual,kg,e8cc632a-4cb4-3822-a936-9a2e0792409d +2018,Santiago del Estero,II.1.1,33.84444,TJ,CO2,74100.0,kg/TJ,2507873.0039999997,Gas Oil combustion consumption by freight transport,AR-G,SESCO,annual,kg,2fe518dc-097d-3a36-86a2-2f24b31ec6dc +2018,Santiago del Estero,II.1.1,33.84444,TJ,CH4,3.9,kg/TJ,131.993316,Gas Oil combustion consumption by freight transport,AR-G,SESCO,annual,kg,cfc13635-9f76-3580-8cbf-4071b1a3f9fe +2018,Santiago del Estero,II.1.1,33.84444,TJ,N2O,3.9,kg/TJ,131.993316,Gas Oil combustion consumption by freight transport,AR-G,SESCO,annual,kg,cfc13635-9f76-3580-8cbf-4071b1a3f9fe +2018,Tierra del Fuego,II.1.1,72.56508,TJ,CO2,74100.0,kg/TJ,5377072.427999999,Gas Oil combustion consumption by freight transport,AR-V,SESCO,annual,kg,7d3db586-6927-3789-a590-1a2c84ce7885 +2018,Tierra del Fuego,II.1.1,72.56508,TJ,CH4,3.9,kg/TJ,283.003812,Gas Oil combustion consumption by freight transport,AR-V,SESCO,annual,kg,fd14ae38-3308-3cc2-a5f1-c8ebe9f68efc +2018,Tierra del Fuego,II.1.1,72.56508,TJ,N2O,3.9,kg/TJ,283.003812,Gas Oil combustion consumption by freight transport,AR-V,SESCO,annual,kg,fd14ae38-3308-3cc2-a5f1-c8ebe9f68efc +2018,Tucuman,II.1.1,105.32592,TJ,CO2,74100.0,kg/TJ,7804650.671999999,Gas Oil combustion consumption by freight transport,AR-T,SESCO,annual,kg,b631b6ff-00e0-3272-a08e-36da833de8cc +2018,Tucuman,II.1.1,105.32592,TJ,CH4,3.9,kg/TJ,410.77108799999996,Gas Oil combustion consumption by freight transport,AR-T,SESCO,annual,kg,3023a29c-e9b8-32e0-a427-f8ec4c38c472 +2018,Tucuman,II.1.1,105.32592,TJ,N2O,3.9,kg/TJ,410.77108799999996,Gas Oil combustion consumption by freight transport,AR-T,SESCO,annual,kg,3023a29c-e9b8-32e0-a427-f8ec4c38c472 +2018,Buenos Aires,II.1.1,359.78249999999997,TJ,CO2,73300.0,kg/TJ,26372057.249999996,Naphtha combustion consumption by freight transport,AR-B,SESCO,annual,kg,7a2e43da-b2e3-3da3-8a68-ce98177aa861 +2018,Buenos Aires,II.1.1,359.78249999999997,TJ,CH4,0.5,kg/TJ,179.89124999999999,Naphtha combustion consumption by freight transport,AR-B,SESCO,annual,kg,18500fb0-f5a8-3a76-b206-0d7db6115397 +2018,Buenos Aires,II.1.1,359.78249999999997,TJ,N2O,2.0,kg/TJ,719.5649999999999,Naphtha combustion consumption by freight transport,AR-B,SESCO,annual,kg,8e7abffa-849f-379e-95f1-89d0c1430477 +2018,Capital Federal,II.1.1,389.28466499999996,TJ,CO2,73300.0,kg/TJ,28534565.944499996,Naphtha combustion consumption by freight transport,AR-C,SESCO,annual,kg,b5f07332-ad72-312c-9494-14d433495d8a +2018,Capital Federal,II.1.1,389.28466499999996,TJ,CH4,0.5,kg/TJ,194.64233249999998,Naphtha combustion consumption by freight transport,AR-C,SESCO,annual,kg,9f1ff253-4a38-34d9-8092-f9c33dcb0099 +2018,Capital Federal,II.1.1,389.28466499999996,TJ,N2O,2.0,kg/TJ,778.5693299999999,Naphtha combustion consumption by freight transport,AR-C,SESCO,annual,kg,4ddb334f-7184-3297-ab56-a98546bb2ada +2018,Chaco,II.1.1,15.247924999999999,TJ,CO2,73300.0,kg/TJ,1117672.9024999999,Naphtha combustion consumption by freight transport,AR-H,SESCO,annual,kg,0d613abb-5987-3b8c-8648-f67e87b650cb +2018,Chaco,II.1.1,15.247924999999999,TJ,CH4,0.5,kg/TJ,7.623962499999999,Naphtha combustion consumption by freight transport,AR-H,SESCO,annual,kg,88a15bd0-7db7-394e-b1cc-f42abebe27db +2018,Chaco,II.1.1,15.247924999999999,TJ,N2O,2.0,kg/TJ,30.495849999999997,Naphtha combustion consumption by freight transport,AR-H,SESCO,annual,kg,76a5715e-5483-38be-982a-259b15abe5f3 +2018,Chubut,II.1.1,5.345339999999999,TJ,CO2,73300.0,kg/TJ,391813.42199999996,Naphtha combustion consumption by freight transport,AR-U,SESCO,annual,kg,1e44f11b-926d-3043-b837-6742a2abfc53 +2018,Chubut,II.1.1,5.345339999999999,TJ,CH4,0.5,kg/TJ,2.6726699999999997,Naphtha combustion consumption by freight transport,AR-U,SESCO,annual,kg,92a0beae-482b-3b89-8e46-8da2a441bd8c +2018,Chubut,II.1.1,5.345339999999999,TJ,N2O,2.0,kg/TJ,10.690679999999999,Naphtha combustion consumption by freight transport,AR-U,SESCO,annual,kg,41f52c8c-30d4-3875-9592-12e38d761bf6 +2018,Corrientes,II.1.1,6.78447,TJ,CO2,73300.0,kg/TJ,497301.651,Naphtha combustion consumption by freight transport,AR-W,SESCO,annual,kg,eba6e5e2-f55a-371d-989e-cb4a9df06d5a +2018,Corrientes,II.1.1,6.78447,TJ,CH4,0.5,kg/TJ,3.392235,Naphtha combustion consumption by freight transport,AR-W,SESCO,annual,kg,2f7d1915-325f-395b-8bf0-a4fc48032d97 +2018,Corrientes,II.1.1,6.78447,TJ,N2O,2.0,kg/TJ,13.56894,Naphtha combustion consumption by freight transport,AR-W,SESCO,annual,kg,28ebf779-f1c8-3dd1-be51-c13e75317e66 +2018,Córdoba,II.1.1,40.98094,TJ,CO2,73300.0,kg/TJ,3003902.902,Naphtha combustion consumption by freight transport,AR-X,SESCO,annual,kg,7a5d516c-1ebd-3c57-acfa-43fe5f0262a5 +2018,Córdoba,II.1.1,40.98094,TJ,CH4,0.5,kg/TJ,20.49047,Naphtha combustion consumption by freight transport,AR-X,SESCO,annual,kg,35dcfc0f-6139-36a9-ba78-a80a7147f7cc +2018,Córdoba,II.1.1,40.98094,TJ,N2O,2.0,kg/TJ,81.96188,Naphtha combustion consumption by freight transport,AR-X,SESCO,annual,kg,825c5117-bf94-32c7-a517-a47e43ef2d9f +2018,Entre Rios,II.1.1,20.387674999999998,TJ,CO2,73300.0,kg/TJ,1494416.5775,Naphtha combustion consumption by freight transport,AR-E,SESCO,annual,kg,c1af1327-149a-3c18-befa-5856d6663690 +2018,Entre Rios,II.1.1,20.387674999999998,TJ,CH4,0.5,kg/TJ,10.193837499999999,Naphtha combustion consumption by freight transport,AR-E,SESCO,annual,kg,b27b160c-375c-3d60-9f71-cc6b0dcc24b0 +2018,Entre Rios,II.1.1,20.387674999999998,TJ,N2O,2.0,kg/TJ,40.775349999999996,Naphtha combustion consumption by freight transport,AR-E,SESCO,annual,kg,3d2d6e2f-574e-383d-a481-f7f8187892d7 +2018,Formosa,II.1.1,0.513975,TJ,CO2,73300.0,kg/TJ,37674.3675,Naphtha combustion consumption by freight transport,AR-P,SESCO,annual,kg,185a8edc-0f41-3991-9179-bf30e71c5007 +2018,Formosa,II.1.1,0.513975,TJ,CH4,0.5,kg/TJ,0.2569875,Naphtha combustion consumption by freight transport,AR-P,SESCO,annual,kg,b0622b36-be1f-370c-96fe-69202a2f8a9e +2018,Formosa,II.1.1,0.513975,TJ,N2O,2.0,kg/TJ,1.02795,Naphtha combustion consumption by freight transport,AR-P,SESCO,annual,kg,0ab3478e-9f6b-384f-93eb-beee4d40d0db +2018,Jujuy,II.1.1,1.062215,TJ,CO2,73300.0,kg/TJ,77860.35949999999,Naphtha combustion consumption by freight transport,AR-Y,SESCO,annual,kg,89ec48da-7247-346c-9575-5ad0998e39d1 +2018,Jujuy,II.1.1,1.062215,TJ,CH4,0.5,kg/TJ,0.5311075,Naphtha combustion consumption by freight transport,AR-Y,SESCO,annual,kg,e00dbaef-4f76-357f-b274-78fbfa656059 +2018,Jujuy,II.1.1,1.062215,TJ,N2O,2.0,kg/TJ,2.12443,Naphtha combustion consumption by freight transport,AR-Y,SESCO,annual,kg,c881ba65-5cc0-3252-89a4-f090f96b9857 +2018,La Pampa,II.1.1,3.76915,TJ,CO2,73300.0,kg/TJ,276278.695,Naphtha combustion consumption by freight transport,AR-L,SESCO,annual,kg,341aae6f-1454-3755-ae7c-dce7f933711d +2018,La Pampa,II.1.1,3.76915,TJ,CH4,0.5,kg/TJ,1.884575,Naphtha combustion consumption by freight transport,AR-L,SESCO,annual,kg,4db596db-ac42-387b-b439-9d01769f1252 +2018,La Pampa,II.1.1,3.76915,TJ,N2O,2.0,kg/TJ,7.5383,Naphtha combustion consumption by freight transport,AR-L,SESCO,annual,kg,61705b66-659c-3b9a-a5f7-288f0f7f5ff1 +2018,La Rioja,II.1.1,0.30838499999999996,TJ,CO2,73300.0,kg/TJ,22604.620499999997,Naphtha combustion consumption by freight transport,AR-F,SESCO,annual,kg,b3cb790e-5063-3a9a-89c7-5727dbde3740 +2018,La Rioja,II.1.1,0.30838499999999996,TJ,CH4,0.5,kg/TJ,0.15419249999999998,Naphtha combustion consumption by freight transport,AR-F,SESCO,annual,kg,3ca84d18-d503-35db-9ef0-14904536e258 +2018,La Rioja,II.1.1,0.30838499999999996,TJ,N2O,2.0,kg/TJ,0.6167699999999999,Naphtha combustion consumption by freight transport,AR-F,SESCO,annual,kg,3aa0cc69-1ef8-3813-af6b-da298e94325d +2018,Mendoza,II.1.1,33.819555,TJ,CO2,73300.0,kg/TJ,2478973.3815,Naphtha combustion consumption by freight transport,AR-M,SESCO,annual,kg,d5c65d2b-11da-3758-85f7-1c44e617eea9 +2018,Mendoza,II.1.1,33.819555,TJ,CH4,0.5,kg/TJ,16.9097775,Naphtha combustion consumption by freight transport,AR-M,SESCO,annual,kg,2264ee07-e8f9-312b-a7ba-c044cba52f3e +2018,Mendoza,II.1.1,33.819555,TJ,N2O,2.0,kg/TJ,67.63911,Naphtha combustion consumption by freight transport,AR-M,SESCO,annual,kg,b93ea2a0-7c54-346c-8561-d3affbecdcbb +2018,Misiones,II.1.1,5.55093,TJ,CO2,73300.0,kg/TJ,406883.169,Naphtha combustion consumption by freight transport,AR-N,SESCO,annual,kg,ed889d21-4c0c-30eb-a304-759a24db902c +2018,Misiones,II.1.1,5.55093,TJ,CH4,0.5,kg/TJ,2.775465,Naphtha combustion consumption by freight transport,AR-N,SESCO,annual,kg,94ee0d13-248d-325a-9842-1aafd413b89f +2018,Misiones,II.1.1,5.55093,TJ,N2O,2.0,kg/TJ,11.10186,Naphtha combustion consumption by freight transport,AR-N,SESCO,annual,kg,e917d558-4b7d-3d3e-9401-522bb1fedd9f +2018,Neuquén,II.1.1,7.8124199999999995,TJ,CO2,73300.0,kg/TJ,572650.3859999999,Naphtha combustion consumption by freight transport,AR-Q,SESCO,annual,kg,82cff5d0-a702-37e1-a20b-28a6f1725367 +2018,Neuquén,II.1.1,7.8124199999999995,TJ,CH4,0.5,kg/TJ,3.9062099999999997,Naphtha combustion consumption by freight transport,AR-Q,SESCO,annual,kg,57e905c3-ac83-3a76-bf25-6bef080046e1 +2018,Neuquén,II.1.1,7.8124199999999995,TJ,N2O,2.0,kg/TJ,15.624839999999999,Naphtha combustion consumption by freight transport,AR-Q,SESCO,annual,kg,c309b534-8009-3a0c-ac7c-be47f6b29c23 +2018,Rio Negro,II.1.1,12.232605,TJ,CO2,73300.0,kg/TJ,896649.9465,Naphtha combustion consumption by freight transport,AR-R,SESCO,annual,kg,7af2d0d9-012b-3fc2-a4c3-a0c03273a738 +2018,Rio Negro,II.1.1,12.232605,TJ,CH4,0.5,kg/TJ,6.1163025,Naphtha combustion consumption by freight transport,AR-R,SESCO,annual,kg,c239df49-a471-36dc-831b-e0f34b3800b8 +2018,Rio Negro,II.1.1,12.232605,TJ,N2O,2.0,kg/TJ,24.46521,Naphtha combustion consumption by freight transport,AR-R,SESCO,annual,kg,4aec8883-c8e8-37f7-acb2-d006a6080abf +2018,Salta,II.1.1,13.56894,TJ,CO2,73300.0,kg/TJ,994603.302,Naphtha combustion consumption by freight transport,AR-A,SESCO,annual,kg,5f98173c-6dee-3bd0-9361-bca469a1511b +2018,Salta,II.1.1,13.56894,TJ,CH4,0.5,kg/TJ,6.78447,Naphtha combustion consumption by freight transport,AR-A,SESCO,annual,kg,cdb33878-1c04-3978-be3c-ee72d4905a8a +2018,Salta,II.1.1,13.56894,TJ,N2O,2.0,kg/TJ,27.13788,Naphtha combustion consumption by freight transport,AR-A,SESCO,annual,kg,3fb27cad-0cb7-3b58-a6c7-a23a4762d610 +2018,San Juan,II.1.1,2.87826,TJ,CO2,73300.0,kg/TJ,210976.458,Naphtha combustion consumption by freight transport,AR-J,SESCO,annual,kg,dfac8538-54e0-369b-8933-649e8dfe04a7 +2018,San Juan,II.1.1,2.87826,TJ,CH4,0.5,kg/TJ,1.43913,Naphtha combustion consumption by freight transport,AR-J,SESCO,annual,kg,a95302a9-bb9e-3d99-a62c-35740739ccc8 +2018,San Juan,II.1.1,2.87826,TJ,N2O,2.0,kg/TJ,5.75652,Naphtha combustion consumption by freight transport,AR-J,SESCO,annual,kg,905e1eb2-6a22-306f-b831-ef0967bf533f +2018,San Luis,II.1.1,4.488715,TJ,CO2,73300.0,kg/TJ,329022.8095,Naphtha combustion consumption by freight transport,AR-D,SESCO,annual,kg,b6df4bc9-06e6-32bb-af99-fd124627d5f6 +2018,San Luis,II.1.1,4.488715,TJ,CH4,0.5,kg/TJ,2.2443575,Naphtha combustion consumption by freight transport,AR-D,SESCO,annual,kg,e13b056c-b525-3dcb-9592-87c25a3d5c2b +2018,San Luis,II.1.1,4.488715,TJ,N2O,2.0,kg/TJ,8.97743,Naphtha combustion consumption by freight transport,AR-D,SESCO,annual,kg,ce350d47-bde3-3179-8a12-0cf28d7e4854 +2018,Santa Cruz,II.1.1,1.678985,TJ,CO2,73300.0,kg/TJ,123069.6005,Naphtha combustion consumption by freight transport,AR-Z,SESCO,annual,kg,3e2ae3a3-7135-387c-91c8-da99bc5ada3b +2018,Santa Cruz,II.1.1,1.678985,TJ,CH4,0.5,kg/TJ,0.8394925,Naphtha combustion consumption by freight transport,AR-Z,SESCO,annual,kg,7c5d3e8c-16aa-311d-829f-44832f35df73 +2018,Santa Cruz,II.1.1,1.678985,TJ,N2O,2.0,kg/TJ,3.35797,Naphtha combustion consumption by freight transport,AR-Z,SESCO,annual,kg,983c6ca7-6031-33ea-95da-7e8fdfcdbbd3 +2018,Santa Fe,II.1.1,46.771724999999996,TJ,CO2,73300.0,kg/TJ,3428367.4425,Naphtha combustion consumption by freight transport,AR-S,SESCO,annual,kg,60acf4c2-220e-3c0b-b751-ac4693dc33df +2018,Santa Fe,II.1.1,46.771724999999996,TJ,CH4,0.5,kg/TJ,23.385862499999998,Naphtha combustion consumption by freight transport,AR-S,SESCO,annual,kg,c242c047-a4e5-3571-9c17-2de820bba0b9 +2018,Santa Fe,II.1.1,46.771724999999996,TJ,N2O,2.0,kg/TJ,93.54344999999999,Naphtha combustion consumption by freight transport,AR-S,SESCO,annual,kg,66ee68cc-f568-33a9-94a0-c7a1815d8a71 +2018,Santiago del Estero,II.1.1,0.9936849999999999,TJ,CO2,73300.0,kg/TJ,72837.1105,Naphtha combustion consumption by freight transport,AR-G,SESCO,annual,kg,05ff68dd-1bd0-3e00-a555-282a8709c69d +2018,Santiago del Estero,II.1.1,0.9936849999999999,TJ,CH4,0.5,kg/TJ,0.49684249999999996,Naphtha combustion consumption by freight transport,AR-G,SESCO,annual,kg,589873ab-1542-35d3-b3e0-783f2c83871f +2018,Santiago del Estero,II.1.1,0.9936849999999999,TJ,N2O,2.0,kg/TJ,1.9873699999999999,Naphtha combustion consumption by freight transport,AR-G,SESCO,annual,kg,e29e8789-28d4-351a-b9d1-e9269bd5e66e +2018,Tierra del Fuego,II.1.1,7.6753599999999995,TJ,CO2,73300.0,kg/TJ,562603.8879999999,Naphtha combustion consumption by freight transport,AR-V,SESCO,annual,kg,b2884d52-5505-3a06-b5a0-99e88aed6366 +2018,Tierra del Fuego,II.1.1,7.6753599999999995,TJ,CH4,0.5,kg/TJ,3.8376799999999998,Naphtha combustion consumption by freight transport,AR-V,SESCO,annual,kg,e95c37d2-c32e-3df3-89c0-30af96cfedb1 +2018,Tierra del Fuego,II.1.1,7.6753599999999995,TJ,N2O,2.0,kg/TJ,15.350719999999999,Naphtha combustion consumption by freight transport,AR-V,SESCO,annual,kg,ed621b6b-092b-3aca-be92-b7e0abade884 +2018,Tucuman,II.1.1,11.136125,TJ,CO2,73300.0,kg/TJ,816277.9625,Naphtha combustion consumption by freight transport,AR-T,SESCO,annual,kg,b1242c7a-3783-3ea6-b400-2f372108aaea +2018,Tucuman,II.1.1,11.136125,TJ,CH4,0.5,kg/TJ,5.5680625,Naphtha combustion consumption by freight transport,AR-T,SESCO,annual,kg,221866c0-e571-3284-aca9-19cc89ae72eb +2018,Tucuman,II.1.1,11.136125,TJ,N2O,2.0,kg/TJ,22.27225,Naphtha combustion consumption by freight transport,AR-T,SESCO,annual,kg,33618402-9503-3a62-aa74-ae8428aee0de +2018,Buenos Aires,II.1.1,347.17298,TJ,CO2,73300.0,kg/TJ,25447779.434,Naphtha combustion consumption by freight transport,AR-B,SESCO,annual,kg,70e15754-8d66-382d-a3d1-117cb2d0c4d3 +2018,Buenos Aires,II.1.1,347.17298,TJ,CH4,0.5,kg/TJ,173.58649,Naphtha combustion consumption by freight transport,AR-B,SESCO,annual,kg,f6c7a146-dcad-307f-8c69-a95451614ed0 +2018,Buenos Aires,II.1.1,347.17298,TJ,N2O,2.0,kg/TJ,694.34596,Naphtha combustion consumption by freight transport,AR-B,SESCO,annual,kg,af80ec96-9e62-300c-b55a-11d75cec020a +2018,Capital Federal,II.1.1,451.98961499999996,TJ,CO2,73300.0,kg/TJ,33130838.779499996,Naphtha combustion consumption by freight transport,AR-C,SESCO,annual,kg,6b35e2bb-0771-3ca3-8619-1f875469a205 +2018,Capital Federal,II.1.1,451.98961499999996,TJ,CH4,0.5,kg/TJ,225.99480749999998,Naphtha combustion consumption by freight transport,AR-C,SESCO,annual,kg,a4d8383d-9ac2-3913-8bf1-09ea162b0a3b +2018,Capital Federal,II.1.1,451.98961499999996,TJ,N2O,2.0,kg/TJ,903.9792299999999,Naphtha combustion consumption by freight transport,AR-C,SESCO,annual,kg,0c940592-2fb7-38c2-9aaa-1e13e63d2a4a +2018,Catamarca,II.1.1,0.30838499999999996,TJ,CO2,73300.0,kg/TJ,22604.620499999997,Naphtha combustion consumption by freight transport,AR-K,SESCO,annual,kg,76b05ac1-3c1e-37d1-879f-26d9e9f80223 +2018,Catamarca,II.1.1,0.30838499999999996,TJ,CH4,0.5,kg/TJ,0.15419249999999998,Naphtha combustion consumption by freight transport,AR-K,SESCO,annual,kg,c6601a53-67d2-3329-a1cd-41574072cb05 +2018,Catamarca,II.1.1,0.30838499999999996,TJ,N2O,2.0,kg/TJ,0.6167699999999999,Naphtha combustion consumption by freight transport,AR-K,SESCO,annual,kg,0b8bae4e-9174-3a8b-b4ad-d9e9c591778c +2018,Chaco,II.1.1,12.164074999999999,TJ,CO2,73300.0,kg/TJ,891626.6974999999,Naphtha combustion consumption by freight transport,AR-H,SESCO,annual,kg,32b1134a-240f-3973-9f67-3b3d49a7e1ca +2018,Chaco,II.1.1,12.164074999999999,TJ,CH4,0.5,kg/TJ,6.082037499999999,Naphtha combustion consumption by freight transport,AR-H,SESCO,annual,kg,5f62f36f-31f3-3a7a-8001-f78aebe22d27 +2018,Chaco,II.1.1,12.164074999999999,TJ,N2O,2.0,kg/TJ,24.328149999999997,Naphtha combustion consumption by freight transport,AR-H,SESCO,annual,kg,2ecd543f-e25b-3c69-90b9-294aaf7c89a3 +2018,Chubut,II.1.1,4.557245,TJ,CO2,73300.0,kg/TJ,334046.0585,Naphtha combustion consumption by freight transport,AR-U,SESCO,annual,kg,fd9f21cd-3a5b-3813-bae7-0dbd02b9c552 +2018,Chubut,II.1.1,4.557245,TJ,CH4,0.5,kg/TJ,2.2786225,Naphtha combustion consumption by freight transport,AR-U,SESCO,annual,kg,a921f2ce-1620-3245-9285-ee6946ef4ec2 +2018,Chubut,II.1.1,4.557245,TJ,N2O,2.0,kg/TJ,9.11449,Naphtha combustion consumption by freight transport,AR-U,SESCO,annual,kg,ca58266a-d27a-33b4-b5f9-3f8004aa9c94 +2018,Corrientes,II.1.1,8.36066,TJ,CO2,73300.0,kg/TJ,612836.3779999999,Naphtha combustion consumption by freight transport,AR-W,SESCO,annual,kg,6f871afe-678d-37a9-8200-44d5596e9a31 +2018,Corrientes,II.1.1,8.36066,TJ,CH4,0.5,kg/TJ,4.18033,Naphtha combustion consumption by freight transport,AR-W,SESCO,annual,kg,4b091496-f320-313a-9dc0-f1a2beaac2f7 +2018,Corrientes,II.1.1,8.36066,TJ,N2O,2.0,kg/TJ,16.72132,Naphtha combustion consumption by freight transport,AR-W,SESCO,annual,kg,a9601b5c-be44-3465-88d9-51909efabc7f +2018,Córdoba,II.1.1,33.71676,TJ,CO2,73300.0,kg/TJ,2471438.508,Naphtha combustion consumption by freight transport,AR-X,SESCO,annual,kg,4c0a43f4-7b50-34e7-9b80-3df3f637d662 +2018,Córdoba,II.1.1,33.71676,TJ,CH4,0.5,kg/TJ,16.85838,Naphtha combustion consumption by freight transport,AR-X,SESCO,annual,kg,7590645c-b279-32e4-9ccf-9bd2059e08a5 +2018,Córdoba,II.1.1,33.71676,TJ,N2O,2.0,kg/TJ,67.43352,Naphtha combustion consumption by freight transport,AR-X,SESCO,annual,kg,4e14eaa2-4bdb-32f2-b3bd-4ff718f03e79 +2018,Entre Rios,II.1.1,26.349784999999997,TJ,CO2,73300.0,kg/TJ,1931439.2404999998,Naphtha combustion consumption by freight transport,AR-E,SESCO,annual,kg,baa9a036-50af-332c-9cc6-1be3df4724a6 +2018,Entre Rios,II.1.1,26.349784999999997,TJ,CH4,0.5,kg/TJ,13.174892499999999,Naphtha combustion consumption by freight transport,AR-E,SESCO,annual,kg,ec4f32e3-ec8e-33df-8d9b-5d83dd054810 +2018,Entre Rios,II.1.1,26.349784999999997,TJ,N2O,2.0,kg/TJ,52.699569999999994,Naphtha combustion consumption by freight transport,AR-E,SESCO,annual,kg,ac24cb8a-60cb-35b1-b004-777c21c5f5fb +2018,Formosa,II.1.1,0.54824,TJ,CO2,73300.0,kg/TJ,40185.992,Naphtha combustion consumption by freight transport,AR-P,SESCO,annual,kg,15f47fdf-74dc-33ff-ba64-8215b833123a +2018,Formosa,II.1.1,0.54824,TJ,CH4,0.5,kg/TJ,0.27412,Naphtha combustion consumption by freight transport,AR-P,SESCO,annual,kg,f234c087-4033-3a6c-b846-69dce6d6f575 +2018,Formosa,II.1.1,0.54824,TJ,N2O,2.0,kg/TJ,1.09648,Naphtha combustion consumption by freight transport,AR-P,SESCO,annual,kg,4a4763a2-279f-39d2-a66f-8d0ac837a75f +2018,Jujuy,II.1.1,0.9594199999999999,TJ,CO2,73300.0,kg/TJ,70325.48599999999,Naphtha combustion consumption by freight transport,AR-Y,SESCO,annual,kg,9a3718a5-11c7-3942-b986-358f74ab54ff +2018,Jujuy,II.1.1,0.9594199999999999,TJ,CH4,0.5,kg/TJ,0.47970999999999997,Naphtha combustion consumption by freight transport,AR-Y,SESCO,annual,kg,1234c5dd-d204-3c70-be7b-13a0b7f857e8 +2018,Jujuy,II.1.1,0.9594199999999999,TJ,N2O,2.0,kg/TJ,1.9188399999999999,Naphtha combustion consumption by freight transport,AR-Y,SESCO,annual,kg,91eff4df-f86e-3b76-9593-9b15d682a05e +2018,La Pampa,II.1.1,3.8719449999999997,TJ,CO2,73300.0,kg/TJ,283813.5685,Naphtha combustion consumption by freight transport,AR-L,SESCO,annual,kg,bf7f46fc-0fcc-3f9c-bc3b-0e6e0602226c +2018,La Pampa,II.1.1,3.8719449999999997,TJ,CH4,0.5,kg/TJ,1.9359724999999999,Naphtha combustion consumption by freight transport,AR-L,SESCO,annual,kg,871e56dc-6f41-3510-b676-fc723a7b91c1 +2018,La Pampa,II.1.1,3.8719449999999997,TJ,N2O,2.0,kg/TJ,7.7438899999999995,Naphtha combustion consumption by freight transport,AR-L,SESCO,annual,kg,acf327ae-646f-3203-a8a5-4078cbc42108 +2018,La Rioja,II.1.1,1.9873699999999999,TJ,CO2,73300.0,kg/TJ,145674.221,Naphtha combustion consumption by freight transport,AR-F,SESCO,annual,kg,04761b53-3681-318e-b06f-d274f50512f1 +2018,La Rioja,II.1.1,1.9873699999999999,TJ,CH4,0.5,kg/TJ,0.9936849999999999,Naphtha combustion consumption by freight transport,AR-F,SESCO,annual,kg,9d900ce5-7c5d-3d5e-b06f-a0babb2ffde8 +2018,La Rioja,II.1.1,1.9873699999999999,TJ,N2O,2.0,kg/TJ,3.9747399999999997,Naphtha combustion consumption by freight transport,AR-F,SESCO,annual,kg,33466310-a933-3744-9f52-784b59f14d28 +2018,Mendoza,II.1.1,58.73021,TJ,CO2,73300.0,kg/TJ,4304924.393,Naphtha combustion consumption by freight transport,AR-M,SESCO,annual,kg,2257a1cc-a7fb-3ad3-802a-58ae568c40c5 +2018,Mendoza,II.1.1,58.73021,TJ,CH4,0.5,kg/TJ,29.365105,Naphtha combustion consumption by freight transport,AR-M,SESCO,annual,kg,6fdb0232-0921-3aa2-ab89-296c0f65680e +2018,Mendoza,II.1.1,58.73021,TJ,N2O,2.0,kg/TJ,117.46042,Naphtha combustion consumption by freight transport,AR-M,SESCO,annual,kg,91fd1013-de2c-3b25-9c92-8c75adaed4c5 +2018,Misiones,II.1.1,6.0649049999999995,TJ,CO2,73300.0,kg/TJ,444557.5365,Naphtha combustion consumption by freight transport,AR-N,SESCO,annual,kg,73f31279-098f-357d-9088-c96e59638e37 +2018,Misiones,II.1.1,6.0649049999999995,TJ,CH4,0.5,kg/TJ,3.0324524999999998,Naphtha combustion consumption by freight transport,AR-N,SESCO,annual,kg,b547f265-30ef-3be0-b89d-69967be82357 +2018,Misiones,II.1.1,6.0649049999999995,TJ,N2O,2.0,kg/TJ,12.129809999999999,Naphtha combustion consumption by freight transport,AR-N,SESCO,annual,kg,37f60491-b232-3e30-911b-5c4a8bf6b89f +2018,Neuquén,II.1.1,18.84575,TJ,CO2,73300.0,kg/TJ,1381393.4749999999,Naphtha combustion consumption by freight transport,AR-Q,SESCO,annual,kg,4320aca4-355f-3f4e-a9e4-8a80308fd913 +2018,Neuquén,II.1.1,18.84575,TJ,CH4,0.5,kg/TJ,9.422875,Naphtha combustion consumption by freight transport,AR-Q,SESCO,annual,kg,36d3e9b8-5417-3309-82ff-c8d78ecfc5a4 +2018,Neuquén,II.1.1,18.84575,TJ,N2O,2.0,kg/TJ,37.6915,Naphtha combustion consumption by freight transport,AR-Q,SESCO,annual,kg,52aa6dd3-9d38-3647-989e-8eacad78b21e +2018,Rio Negro,II.1.1,51.94574,TJ,CO2,73300.0,kg/TJ,3807622.742,Naphtha combustion consumption by freight transport,AR-R,SESCO,annual,kg,0d3c72ff-eeb6-34e6-89eb-eb6c8033f28c +2018,Rio Negro,II.1.1,51.94574,TJ,CH4,0.5,kg/TJ,25.97287,Naphtha combustion consumption by freight transport,AR-R,SESCO,annual,kg,5aa217b6-af5c-3741-a40b-d8203e45c93f +2018,Rio Negro,II.1.1,51.94574,TJ,N2O,2.0,kg/TJ,103.89148,Naphtha combustion consumption by freight transport,AR-R,SESCO,annual,kg,645c31d9-6bd1-39fc-9ed2-553faed90242 +2018,Salta,II.1.1,6.476084999999999,TJ,CO2,73300.0,kg/TJ,474697.03049999994,Naphtha combustion consumption by freight transport,AR-A,SESCO,annual,kg,ffe242bd-9018-3c7f-b92f-a4ef486280a0 +2018,Salta,II.1.1,6.476084999999999,TJ,CH4,0.5,kg/TJ,3.2380424999999997,Naphtha combustion consumption by freight transport,AR-A,SESCO,annual,kg,e8cc3419-5db6-3f3d-b2b6-e7f5c39c5a5f +2018,Salta,II.1.1,6.476084999999999,TJ,N2O,2.0,kg/TJ,12.952169999999999,Naphtha combustion consumption by freight transport,AR-A,SESCO,annual,kg,dec191b1-ac05-3690-8703-b3eb3e4074ac +2018,San Juan,II.1.1,1.2678049999999998,TJ,CO2,73300.0,kg/TJ,92930.1065,Naphtha combustion consumption by freight transport,AR-J,SESCO,annual,kg,8b4773c9-a6e0-31d5-ba64-7f31960c4deb +2018,San Juan,II.1.1,1.2678049999999998,TJ,CH4,0.5,kg/TJ,0.6339024999999999,Naphtha combustion consumption by freight transport,AR-J,SESCO,annual,kg,7eb1c751-de36-35d5-8f12-5c06dbde64f0 +2018,San Juan,II.1.1,1.2678049999999998,TJ,N2O,2.0,kg/TJ,2.5356099999999997,Naphtha combustion consumption by freight transport,AR-J,SESCO,annual,kg,bb2e8cfb-0ff8-3dc9-b4fb-20c054e969e8 +2018,San Luis,II.1.1,4.214595,TJ,CO2,73300.0,kg/TJ,308929.8135,Naphtha combustion consumption by freight transport,AR-D,SESCO,annual,kg,f2b6bb88-0a86-3572-a597-9070e4c80ce6 +2018,San Luis,II.1.1,4.214595,TJ,CH4,0.5,kg/TJ,2.1072975,Naphtha combustion consumption by freight transport,AR-D,SESCO,annual,kg,d5702c37-145d-3f38-aaab-c0cc06f6e78b +2018,San Luis,II.1.1,4.214595,TJ,N2O,2.0,kg/TJ,8.42919,Naphtha combustion consumption by freight transport,AR-D,SESCO,annual,kg,636ca747-3026-359e-8ae4-485c42f506c5 +2018,Santa Cruz,II.1.1,1.43913,TJ,CO2,73300.0,kg/TJ,105488.229,Naphtha combustion consumption by freight transport,AR-Z,SESCO,annual,kg,032c0fa6-26ba-3e1f-957a-98586ca6d97b +2018,Santa Cruz,II.1.1,1.43913,TJ,CH4,0.5,kg/TJ,0.719565,Naphtha combustion consumption by freight transport,AR-Z,SESCO,annual,kg,b2409710-ce41-3ed6-aba3-f222f96d4efc +2018,Santa Cruz,II.1.1,1.43913,TJ,N2O,2.0,kg/TJ,2.87826,Naphtha combustion consumption by freight transport,AR-Z,SESCO,annual,kg,12fd14bf-5431-3d0b-aee9-57a7e866535e +2018,Santa Fe,II.1.1,77.23331,TJ,CO2,73300.0,kg/TJ,5661201.623000001,Naphtha combustion consumption by freight transport,AR-S,SESCO,annual,kg,c0c2deb3-3c63-3e95-91eb-307c8f6b08ce +2018,Santa Fe,II.1.1,77.23331,TJ,CH4,0.5,kg/TJ,38.616655,Naphtha combustion consumption by freight transport,AR-S,SESCO,annual,kg,610f0cfa-e4ac-3a09-8e74-293503111705 +2018,Santa Fe,II.1.1,77.23331,TJ,N2O,2.0,kg/TJ,154.46662,Naphtha combustion consumption by freight transport,AR-S,SESCO,annual,kg,726c8a77-6a5d-3749-805b-ab235032ff1a +2018,Santiago del Estero,II.1.1,0.89089,TJ,CO2,73300.0,kg/TJ,65302.236999999994,Naphtha combustion consumption by freight transport,AR-G,SESCO,annual,kg,bddc175b-ea75-398d-b839-bf67c2965dd6 +2018,Santiago del Estero,II.1.1,0.89089,TJ,CH4,0.5,kg/TJ,0.445445,Naphtha combustion consumption by freight transport,AR-G,SESCO,annual,kg,be8a506a-45fe-3c2d-863e-773cc821f097 +2018,Santiago del Estero,II.1.1,0.89089,TJ,N2O,2.0,kg/TJ,1.78178,Naphtha combustion consumption by freight transport,AR-G,SESCO,annual,kg,f962d3bd-a369-3e1b-96d2-9ff4d34a15c3 +2018,Tierra del Fuego,II.1.1,1.816045,TJ,CO2,73300.0,kg/TJ,133116.0985,Naphtha combustion consumption by freight transport,AR-V,SESCO,annual,kg,63b91d95-5292-3c0e-bc5c-b42df7655d2b +2018,Tierra del Fuego,II.1.1,1.816045,TJ,CH4,0.5,kg/TJ,0.9080225,Naphtha combustion consumption by freight transport,AR-V,SESCO,annual,kg,dbd9163f-77c2-35c0-8621-327c66d52e18 +2018,Tierra del Fuego,II.1.1,1.816045,TJ,N2O,2.0,kg/TJ,3.63209,Naphtha combustion consumption by freight transport,AR-V,SESCO,annual,kg,199e19e5-2ce0-3fe1-b551-46b034b55d3d +2018,Tucuman,II.1.1,6.2019649999999995,TJ,CO2,73300.0,kg/TJ,454604.03449999995,Naphtha combustion consumption by freight transport,AR-T,SESCO,annual,kg,52c1d2e8-cb50-38de-aec7-2dd25a71432c +2018,Tucuman,II.1.1,6.2019649999999995,TJ,CH4,0.5,kg/TJ,3.1009824999999998,Naphtha combustion consumption by freight transport,AR-T,SESCO,annual,kg,a9621433-57cd-38ba-ac93-488eaea7d9d1 +2018,Tucuman,II.1.1,6.2019649999999995,TJ,N2O,2.0,kg/TJ,12.403929999999999,Naphtha combustion consumption by freight transport,AR-T,SESCO,annual,kg,54b18aad-1cc4-3cbf-bf70-1e77c6ddda36 +2018,Buenos Aires,II.1.1,8894.44164,TJ,CO2,74100.0,kg/TJ,659078125.5239999,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,c3ad58a2-aec0-3777-80ca-151aede3036e +2018,Buenos Aires,II.1.1,8894.44164,TJ,CH4,3.9,kg/TJ,34688.322395999996,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,9d530830-c6eb-3620-aa4c-bcbcdc1c9472 +2018,Buenos Aires,II.1.1,8894.44164,TJ,N2O,3.9,kg/TJ,34688.322395999996,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,9d530830-c6eb-3620-aa4c-bcbcdc1c9472 +2018,Capital Federal,II.1.1,1832.3314799999998,TJ,CO2,74100.0,kg/TJ,135775762.66799998,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,472aa21a-2db0-372f-ac86-dd1cb638fea2 +2018,Capital Federal,II.1.1,1832.3314799999998,TJ,CH4,3.9,kg/TJ,7146.092771999999,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,231dc4c4-6024-34e2-ab4c-e95c396b272e +2018,Capital Federal,II.1.1,1832.3314799999998,TJ,N2O,3.9,kg/TJ,7146.092771999999,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,231dc4c4-6024-34e2-ab4c-e95c396b272e +2018,Catamarca,II.1.1,188.61864,TJ,CO2,74100.0,kg/TJ,13976641.224,Gas Oil combustion consumption by public passenger transport,AR-K,SESCO,annual,kg,de9d9b17-cc47-3cb4-9b99-0c1a9cb0ab2e +2018,Catamarca,II.1.1,188.61864,TJ,CH4,3.9,kg/TJ,735.612696,Gas Oil combustion consumption by public passenger transport,AR-K,SESCO,annual,kg,2cf1c0c0-2b58-3028-b331-1d3b67bfb18a +2018,Catamarca,II.1.1,188.61864,TJ,N2O,3.9,kg/TJ,735.612696,Gas Oil combustion consumption by public passenger transport,AR-K,SESCO,annual,kg,2cf1c0c0-2b58-3028-b331-1d3b67bfb18a +2018,Chaco,II.1.1,441.63924,TJ,CO2,74100.0,kg/TJ,32725467.683999997,Gas Oil combustion consumption by public passenger transport,AR-H,SESCO,annual,kg,6176932a-5259-3e2c-98b5-63433c5dec93 +2018,Chaco,II.1.1,441.63924,TJ,CH4,3.9,kg/TJ,1722.393036,Gas Oil combustion consumption by public passenger transport,AR-H,SESCO,annual,kg,3fd6059f-0888-3946-989d-d9568b1338b7 +2018,Chaco,II.1.1,441.63924,TJ,N2O,3.9,kg/TJ,1722.393036,Gas Oil combustion consumption by public passenger transport,AR-H,SESCO,annual,kg,3fd6059f-0888-3946-989d-d9568b1338b7 +2018,Chubut,II.1.1,105.79548,TJ,CO2,74100.0,kg/TJ,7839445.068,Gas Oil combustion consumption by public passenger transport,AR-U,SESCO,annual,kg,5741d001-4bb8-3b09-bd3d-232cbecc03e4 +2018,Chubut,II.1.1,105.79548,TJ,CH4,3.9,kg/TJ,412.602372,Gas Oil combustion consumption by public passenger transport,AR-U,SESCO,annual,kg,25edec06-a68b-385e-8a9f-370acb254dcf +2018,Chubut,II.1.1,105.79548,TJ,N2O,3.9,kg/TJ,412.602372,Gas Oil combustion consumption by public passenger transport,AR-U,SESCO,annual,kg,25edec06-a68b-385e-8a9f-370acb254dcf +2018,Corrientes,II.1.1,487.25879999999995,TJ,CO2,74100.0,kg/TJ,36105877.08,Gas Oil combustion consumption by public passenger transport,AR-W,SESCO,annual,kg,35e77b2a-6ab9-3411-af93-ea7079b9a395 +2018,Corrientes,II.1.1,487.25879999999995,TJ,CH4,3.9,kg/TJ,1900.3093199999998,Gas Oil combustion consumption by public passenger transport,AR-W,SESCO,annual,kg,43f02350-9c46-312c-addc-dda0dd5b2425 +2018,Corrientes,II.1.1,487.25879999999995,TJ,N2O,3.9,kg/TJ,1900.3093199999998,Gas Oil combustion consumption by public passenger transport,AR-W,SESCO,annual,kg,43f02350-9c46-312c-addc-dda0dd5b2425 +2018,Córdoba,II.1.1,1949.4686399999998,TJ,CO2,74100.0,kg/TJ,144455626.22399998,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,24d93e03-703e-39a0-b9c7-960f20cf174e +2018,Córdoba,II.1.1,1949.4686399999998,TJ,CH4,3.9,kg/TJ,7602.927695999999,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,192100a6-8a40-3fc0-96d4-295395e5d844 +2018,Córdoba,II.1.1,1949.4686399999998,TJ,N2O,3.9,kg/TJ,7602.927695999999,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,192100a6-8a40-3fc0-96d4-295395e5d844 +2018,Entre Rios,II.1.1,527.38812,TJ,CO2,74100.0,kg/TJ,39079459.691999994,Gas Oil combustion consumption by public passenger transport,AR-E,SESCO,annual,kg,dacb0415-01ec-3feb-9589-08efefdb0c48 +2018,Entre Rios,II.1.1,527.38812,TJ,CH4,3.9,kg/TJ,2056.813668,Gas Oil combustion consumption by public passenger transport,AR-E,SESCO,annual,kg,738be32b-67e4-3de2-ae74-df96615b0ffd +2018,Entre Rios,II.1.1,527.38812,TJ,N2O,3.9,kg/TJ,2056.813668,Gas Oil combustion consumption by public passenger transport,AR-E,SESCO,annual,kg,738be32b-67e4-3de2-ae74-df96615b0ffd +2018,Formosa,II.1.1,62.8488,TJ,CO2,74100.0,kg/TJ,4657096.08,Gas Oil combustion consumption by public passenger transport,AR-P,SESCO,annual,kg,62506b91-5830-342b-8fa3-b9b80e91402c +2018,Formosa,II.1.1,62.8488,TJ,CH4,3.9,kg/TJ,245.11031999999997,Gas Oil combustion consumption by public passenger transport,AR-P,SESCO,annual,kg,c37ab5aa-c310-3bcd-ab3a-b3edc9754b60 +2018,Formosa,II.1.1,62.8488,TJ,N2O,3.9,kg/TJ,245.11031999999997,Gas Oil combustion consumption by public passenger transport,AR-P,SESCO,annual,kg,c37ab5aa-c310-3bcd-ab3a-b3edc9754b60 +2018,Jujuy,II.1.1,670.64004,TJ,CO2,74100.0,kg/TJ,49694426.964,Gas Oil combustion consumption by public passenger transport,AR-Y,SESCO,annual,kg,ab616897-7693-3563-a81b-dee12e3650ba +2018,Jujuy,II.1.1,670.64004,TJ,CH4,3.9,kg/TJ,2615.496156,Gas Oil combustion consumption by public passenger transport,AR-Y,SESCO,annual,kg,63b09946-8140-365f-ae64-03a64428ee2c +2018,Jujuy,II.1.1,670.64004,TJ,N2O,3.9,kg/TJ,2615.496156,Gas Oil combustion consumption by public passenger transport,AR-Y,SESCO,annual,kg,63b09946-8140-365f-ae64-03a64428ee2c +2018,La Pampa,II.1.1,42.87444,TJ,CO2,74100.0,kg/TJ,3176996.004,Gas Oil combustion consumption by public passenger transport,AR-L,SESCO,annual,kg,6217c7b2-639e-39b4-a1f1-d9a095a1c03b +2018,La Pampa,II.1.1,42.87444,TJ,CH4,3.9,kg/TJ,167.210316,Gas Oil combustion consumption by public passenger transport,AR-L,SESCO,annual,kg,0a396655-2ebe-3076-b5ab-1615a4c46835 +2018,La Pampa,II.1.1,42.87444,TJ,N2O,3.9,kg/TJ,167.210316,Gas Oil combustion consumption by public passenger transport,AR-L,SESCO,annual,kg,0a396655-2ebe-3076-b5ab-1615a4c46835 +2018,La Rioja,II.1.1,95.03171999999999,TJ,CO2,74100.0,kg/TJ,7041850.452,Gas Oil combustion consumption by public passenger transport,AR-F,SESCO,annual,kg,5e14f9a2-5420-3b67-839d-1fd783b98ad1 +2018,La Rioja,II.1.1,95.03171999999999,TJ,CH4,3.9,kg/TJ,370.62370799999997,Gas Oil combustion consumption by public passenger transport,AR-F,SESCO,annual,kg,b6ec88d8-22fc-30ab-a57d-53f4fd4513bd +2018,La Rioja,II.1.1,95.03171999999999,TJ,N2O,3.9,kg/TJ,370.62370799999997,Gas Oil combustion consumption by public passenger transport,AR-F,SESCO,annual,kg,b6ec88d8-22fc-30ab-a57d-53f4fd4513bd +2018,Mendoza,II.1.1,1480.5588,TJ,CO2,74100.0,kg/TJ,109709407.08,Gas Oil combustion consumption by public passenger transport,AR-M,SESCO,annual,kg,ad335ccd-8b62-3c3a-ae86-d6499497ee5e +2018,Mendoza,II.1.1,1480.5588,TJ,CH4,3.9,kg/TJ,5774.17932,Gas Oil combustion consumption by public passenger transport,AR-M,SESCO,annual,kg,5df2251f-b8c5-322d-a179-5ecb4accf225 +2018,Mendoza,II.1.1,1480.5588,TJ,N2O,3.9,kg/TJ,5774.17932,Gas Oil combustion consumption by public passenger transport,AR-M,SESCO,annual,kg,5df2251f-b8c5-322d-a179-5ecb4accf225 +2018,Misiones,II.1.1,928.284,TJ,CO2,74100.0,kg/TJ,68785844.4,Gas Oil combustion consumption by public passenger transport,AR-N,SESCO,annual,kg,5c112bb8-5f95-351b-be3d-4362912ce9a9 +2018,Misiones,II.1.1,928.284,TJ,CH4,3.9,kg/TJ,3620.3076,Gas Oil combustion consumption by public passenger transport,AR-N,SESCO,annual,kg,4b9cc244-b023-3e09-8db1-e23e66a0a94c +2018,Misiones,II.1.1,928.284,TJ,N2O,3.9,kg/TJ,3620.3076,Gas Oil combustion consumption by public passenger transport,AR-N,SESCO,annual,kg,4b9cc244-b023-3e09-8db1-e23e66a0a94c +2018,Neuquén,II.1.1,213.108,TJ,CO2,74100.0,kg/TJ,15791302.8,Gas Oil combustion consumption by public passenger transport,AR-Q,SESCO,annual,kg,66579251-e508-3c73-bbec-2f30083a252b +2018,Neuquén,II.1.1,213.108,TJ,CH4,3.9,kg/TJ,831.1212,Gas Oil combustion consumption by public passenger transport,AR-Q,SESCO,annual,kg,6c7b7767-5830-3d8c-955f-fc715d22bca0 +2018,Neuquén,II.1.1,213.108,TJ,N2O,3.9,kg/TJ,831.1212,Gas Oil combustion consumption by public passenger transport,AR-Q,SESCO,annual,kg,6c7b7767-5830-3d8c-955f-fc715d22bca0 +2018,Rio Negro,II.1.1,203.64455999999998,TJ,CO2,74100.0,kg/TJ,15090061.896,Gas Oil combustion consumption by public passenger transport,AR-R,SESCO,annual,kg,d729d2da-32e0-3b80-9393-00ee3dedb1ae +2018,Rio Negro,II.1.1,203.64455999999998,TJ,CH4,3.9,kg/TJ,794.2137839999999,Gas Oil combustion consumption by public passenger transport,AR-R,SESCO,annual,kg,167aeada-d8d6-3d40-aadb-d7fff6b68c68 +2018,Rio Negro,II.1.1,203.64455999999998,TJ,N2O,3.9,kg/TJ,794.2137839999999,Gas Oil combustion consumption by public passenger transport,AR-R,SESCO,annual,kg,167aeada-d8d6-3d40-aadb-d7fff6b68c68 +2018,Salta,II.1.1,630.72744,TJ,CO2,74100.0,kg/TJ,46736903.304,Gas Oil combustion consumption by public passenger transport,AR-A,SESCO,annual,kg,fb747de5-4b90-3acf-accd-cae4ff0ae6af +2018,Salta,II.1.1,630.72744,TJ,CH4,3.9,kg/TJ,2459.837016,Gas Oil combustion consumption by public passenger transport,AR-A,SESCO,annual,kg,e9e9b448-d0e4-32f3-b120-2cf7057e455e +2018,Salta,II.1.1,630.72744,TJ,N2O,3.9,kg/TJ,2459.837016,Gas Oil combustion consumption by public passenger transport,AR-A,SESCO,annual,kg,e9e9b448-d0e4-32f3-b120-2cf7057e455e +2018,San Juan,II.1.1,389.15688,TJ,CO2,74100.0,kg/TJ,28836524.808,Gas Oil combustion consumption by public passenger transport,AR-J,SESCO,annual,kg,68024930-a65d-3681-a4c4-d2740fa816b7 +2018,San Juan,II.1.1,389.15688,TJ,CH4,3.9,kg/TJ,1517.711832,Gas Oil combustion consumption by public passenger transport,AR-J,SESCO,annual,kg,2855d012-c9e5-3c7a-ac84-4bbd71d499f3 +2018,San Juan,II.1.1,389.15688,TJ,N2O,3.9,kg/TJ,1517.711832,Gas Oil combustion consumption by public passenger transport,AR-J,SESCO,annual,kg,2855d012-c9e5-3c7a-ac84-4bbd71d499f3 +2018,San Luis,II.1.1,122.15784,TJ,CO2,74100.0,kg/TJ,9051895.944,Gas Oil combustion consumption by public passenger transport,AR-D,SESCO,annual,kg,9c42a3c9-1d4f-3008-af3d-037f1718914e +2018,San Luis,II.1.1,122.15784,TJ,CH4,3.9,kg/TJ,476.415576,Gas Oil combustion consumption by public passenger transport,AR-D,SESCO,annual,kg,9bfd58a0-6461-3673-a662-094d3837f218 +2018,San Luis,II.1.1,122.15784,TJ,N2O,3.9,kg/TJ,476.415576,Gas Oil combustion consumption by public passenger transport,AR-D,SESCO,annual,kg,9bfd58a0-6461-3673-a662-094d3837f218 +2018,Santa Cruz,II.1.1,21.419159999999998,TJ,CO2,74100.0,kg/TJ,1587159.7559999998,Gas Oil combustion consumption by public passenger transport,AR-Z,SESCO,annual,kg,6393c6d7-82aa-33e5-86bd-b98896012644 +2018,Santa Cruz,II.1.1,21.419159999999998,TJ,CH4,3.9,kg/TJ,83.534724,Gas Oil combustion consumption by public passenger transport,AR-Z,SESCO,annual,kg,ef5da085-2195-3392-97dd-4519590b325a +2018,Santa Cruz,II.1.1,21.419159999999998,TJ,N2O,3.9,kg/TJ,83.534724,Gas Oil combustion consumption by public passenger transport,AR-Z,SESCO,annual,kg,ef5da085-2195-3392-97dd-4519590b325a +2018,Santa Fe,II.1.1,1269.9792,TJ,CO2,74100.0,kg/TJ,94105458.72,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,1540b629-babc-3d53-b416-7d1ced1ed918 +2018,Santa Fe,II.1.1,1269.9792,TJ,CH4,3.9,kg/TJ,4952.91888,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,27b93261-cddf-39ed-a6af-02fef7beadb8 +2018,Santa Fe,II.1.1,1269.9792,TJ,N2O,3.9,kg/TJ,4952.91888,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,27b93261-cddf-39ed-a6af-02fef7beadb8 +2018,Santiago del Estero,II.1.1,279.35208,TJ,CO2,74100.0,kg/TJ,20699989.128,Gas Oil combustion consumption by public passenger transport,AR-G,SESCO,annual,kg,8b9f22c4-7090-3db7-8582-f56b72ee93d6 +2018,Santiago del Estero,II.1.1,279.35208,TJ,CH4,3.9,kg/TJ,1089.473112,Gas Oil combustion consumption by public passenger transport,AR-G,SESCO,annual,kg,f6bcee26-f64e-3dad-a38b-3cb16676a334 +2018,Santiago del Estero,II.1.1,279.35208,TJ,N2O,3.9,kg/TJ,1089.473112,Gas Oil combustion consumption by public passenger transport,AR-G,SESCO,annual,kg,f6bcee26-f64e-3dad-a38b-3cb16676a334 +2018,Tierra del Fuego,II.1.1,9.42732,TJ,CO2,74100.0,kg/TJ,698564.412,Gas Oil combustion consumption by public passenger transport,AR-V,SESCO,annual,kg,fd44ba13-661f-330e-a6b6-77703a24bde8 +2018,Tierra del Fuego,II.1.1,9.42732,TJ,CH4,3.9,kg/TJ,36.766548,Gas Oil combustion consumption by public passenger transport,AR-V,SESCO,annual,kg,653a2f2a-89c5-3baa-b371-f732b25afb3f +2018,Tierra del Fuego,II.1.1,9.42732,TJ,N2O,3.9,kg/TJ,36.766548,Gas Oil combustion consumption by public passenger transport,AR-V,SESCO,annual,kg,653a2f2a-89c5-3baa-b371-f732b25afb3f +2018,Tucuman,II.1.1,967.8715199999999,TJ,CO2,74100.0,kg/TJ,71719279.632,Gas Oil combustion consumption by public passenger transport,AR-T,SESCO,annual,kg,76aa2d84-86ef-38f6-ad85-360c032910f8 +2018,Tucuman,II.1.1,967.8715199999999,TJ,CH4,3.9,kg/TJ,3774.698928,Gas Oil combustion consumption by public passenger transport,AR-T,SESCO,annual,kg,2070ea26-f58f-304a-a987-068e383fef26 +2018,Tucuman,II.1.1,967.8715199999999,TJ,N2O,3.9,kg/TJ,3774.698928,Gas Oil combustion consumption by public passenger transport,AR-T,SESCO,annual,kg,2070ea26-f58f-304a-a987-068e383fef26 +2018,Buenos Aires,II.1.1,1955.46456,TJ,CO2,74100.0,kg/TJ,144899923.896,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,22809ecc-93b3-3d22-b077-1b07d0b5f8f4 +2018,Buenos Aires,II.1.1,1955.46456,TJ,CH4,3.9,kg/TJ,7626.3117839999995,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,d67cde47-90b6-357c-bd9b-1e73446127c4 +2018,Buenos Aires,II.1.1,1955.46456,TJ,N2O,3.9,kg/TJ,7626.3117839999995,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,d67cde47-90b6-357c-bd9b-1e73446127c4 +2018,Capital Federal,II.1.1,303.04679999999996,TJ,CO2,74100.0,kg/TJ,22455767.88,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,3457dd8e-9722-30f5-bc21-2075aa328d4b +2018,Capital Federal,II.1.1,303.04679999999996,TJ,CH4,3.9,kg/TJ,1181.8825199999999,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,6f835ed4-979c-3008-b54c-47622d82c0ea +2018,Capital Federal,II.1.1,303.04679999999996,TJ,N2O,3.9,kg/TJ,1181.8825199999999,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,6f835ed4-979c-3008-b54c-47622d82c0ea +2018,Catamarca,II.1.1,31.388279999999998,TJ,CO2,74100.0,kg/TJ,2325871.548,Gas Oil combustion consumption by public passenger transport,AR-K,SESCO,annual,kg,b0e5d7d8-ea4d-3a38-9b17-becec9ffeffb +2018,Catamarca,II.1.1,31.388279999999998,TJ,CH4,3.9,kg/TJ,122.41429199999999,Gas Oil combustion consumption by public passenger transport,AR-K,SESCO,annual,kg,4012e00b-5131-3496-b2e2-053782d72e01 +2018,Catamarca,II.1.1,31.388279999999998,TJ,N2O,3.9,kg/TJ,122.41429199999999,Gas Oil combustion consumption by public passenger transport,AR-K,SESCO,annual,kg,4012e00b-5131-3496-b2e2-053782d72e01 +2018,Chaco,II.1.1,48.906479999999995,TJ,CO2,74100.0,kg/TJ,3623970.1679999996,Gas Oil combustion consumption by public passenger transport,AR-H,SESCO,annual,kg,95f06142-b473-3eb1-a8d6-fe599972968a +2018,Chaco,II.1.1,48.906479999999995,TJ,CH4,3.9,kg/TJ,190.73527199999998,Gas Oil combustion consumption by public passenger transport,AR-H,SESCO,annual,kg,d8dcc823-78eb-30bb-9f3b-b3335528d2d0 +2018,Chaco,II.1.1,48.906479999999995,TJ,N2O,3.9,kg/TJ,190.73527199999998,Gas Oil combustion consumption by public passenger transport,AR-H,SESCO,annual,kg,d8dcc823-78eb-30bb-9f3b-b3335528d2d0 +2018,Chubut,II.1.1,59.4174,TJ,CO2,74100.0,kg/TJ,4402829.34,Gas Oil combustion consumption by public passenger transport,AR-U,SESCO,annual,kg,f86ae521-b695-3367-b768-b1f4b3c8cf67 +2018,Chubut,II.1.1,59.4174,TJ,CH4,3.9,kg/TJ,231.72786,Gas Oil combustion consumption by public passenger transport,AR-U,SESCO,annual,kg,6f8da824-7a5d-3a89-9fc3-6176d171cd26 +2018,Chubut,II.1.1,59.4174,TJ,N2O,3.9,kg/TJ,231.72786,Gas Oil combustion consumption by public passenger transport,AR-U,SESCO,annual,kg,6f8da824-7a5d-3a89-9fc3-6176d171cd26 +2018,Corrientes,II.1.1,89.9388,TJ,CO2,74100.0,kg/TJ,6664465.08,Gas Oil combustion consumption by public passenger transport,AR-W,SESCO,annual,kg,c864c88c-3267-3be7-89ec-56f3e6f37b86 +2018,Corrientes,II.1.1,89.9388,TJ,CH4,3.9,kg/TJ,350.76132,Gas Oil combustion consumption by public passenger transport,AR-W,SESCO,annual,kg,b771477b-7d36-370a-9577-bc6c01928df4 +2018,Corrientes,II.1.1,89.9388,TJ,N2O,3.9,kg/TJ,350.76132,Gas Oil combustion consumption by public passenger transport,AR-W,SESCO,annual,kg,b771477b-7d36-370a-9577-bc6c01928df4 +2018,Córdoba,II.1.1,378.68208,TJ,CO2,74100.0,kg/TJ,28060342.128,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,d490f789-9152-32be-aa10-7c9b060338c8 +2018,Córdoba,II.1.1,378.68208,TJ,CH4,3.9,kg/TJ,1476.8601119999998,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,52d1972a-9f76-3c3d-afae-55ce53c2d1a5 +2018,Córdoba,II.1.1,378.68208,TJ,N2O,3.9,kg/TJ,1476.8601119999998,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,52d1972a-9f76-3c3d-afae-55ce53c2d1a5 +2018,Entre Rios,II.1.1,39.1902,TJ,CO2,74100.0,kg/TJ,2903993.82,Gas Oil combustion consumption by public passenger transport,AR-E,SESCO,annual,kg,be7c15bb-4d78-33c7-af1e-edcb9592620f +2018,Entre Rios,II.1.1,39.1902,TJ,CH4,3.9,kg/TJ,152.84178,Gas Oil combustion consumption by public passenger transport,AR-E,SESCO,annual,kg,202b5fad-362b-33c8-a9f4-2bf93653c4a9 +2018,Entre Rios,II.1.1,39.1902,TJ,N2O,3.9,kg/TJ,152.84178,Gas Oil combustion consumption by public passenger transport,AR-E,SESCO,annual,kg,202b5fad-362b-33c8-a9f4-2bf93653c4a9 +2018,Formosa,II.1.1,51.90444,TJ,CO2,74100.0,kg/TJ,3846119.004,Gas Oil combustion consumption by public passenger transport,AR-P,SESCO,annual,kg,669d5c61-2de2-3afb-be44-e455e887cd45 +2018,Formosa,II.1.1,51.90444,TJ,CH4,3.9,kg/TJ,202.427316,Gas Oil combustion consumption by public passenger transport,AR-P,SESCO,annual,kg,a32fdbcb-bd17-3640-98f1-a408f7e0e43f +2018,Formosa,II.1.1,51.90444,TJ,N2O,3.9,kg/TJ,202.427316,Gas Oil combustion consumption by public passenger transport,AR-P,SESCO,annual,kg,a32fdbcb-bd17-3640-98f1-a408f7e0e43f +2018,Jujuy,II.1.1,27.920759999999998,TJ,CO2,74100.0,kg/TJ,2068928.3159999999,Gas Oil combustion consumption by public passenger transport,AR-Y,SESCO,annual,kg,b980fad6-c479-3a6f-a191-8974110e9fea +2018,Jujuy,II.1.1,27.920759999999998,TJ,CH4,3.9,kg/TJ,108.89096399999998,Gas Oil combustion consumption by public passenger transport,AR-Y,SESCO,annual,kg,c9eeb16b-c8a7-35ab-bcfb-6ef081e4b03a +2018,Jujuy,II.1.1,27.920759999999998,TJ,N2O,3.9,kg/TJ,108.89096399999998,Gas Oil combustion consumption by public passenger transport,AR-Y,SESCO,annual,kg,c9eeb16b-c8a7-35ab-bcfb-6ef081e4b03a +2018,La Pampa,II.1.1,4.55112,TJ,CO2,74100.0,kg/TJ,337237.992,Gas Oil combustion consumption by public passenger transport,AR-L,SESCO,annual,kg,27afe1be-e39b-30eb-92f6-d0a7cb2cc795 +2018,La Pampa,II.1.1,4.55112,TJ,CH4,3.9,kg/TJ,17.749368,Gas Oil combustion consumption by public passenger transport,AR-L,SESCO,annual,kg,3489c499-9c7d-316d-8a8c-ae475d04d7c8 +2018,La Pampa,II.1.1,4.55112,TJ,N2O,3.9,kg/TJ,17.749368,Gas Oil combustion consumption by public passenger transport,AR-L,SESCO,annual,kg,3489c499-9c7d-316d-8a8c-ae475d04d7c8 +2018,La Rioja,II.1.1,16.36236,TJ,CO2,74100.0,kg/TJ,1212450.876,Gas Oil combustion consumption by public passenger transport,AR-F,SESCO,annual,kg,51bd5e8a-f7a9-36da-822e-bb28fc9a058a +2018,La Rioja,II.1.1,16.36236,TJ,CH4,3.9,kg/TJ,63.81320399999999,Gas Oil combustion consumption by public passenger transport,AR-F,SESCO,annual,kg,18865478-7e43-3544-9067-fb03655e72c4 +2018,La Rioja,II.1.1,16.36236,TJ,N2O,3.9,kg/TJ,63.81320399999999,Gas Oil combustion consumption by public passenger transport,AR-F,SESCO,annual,kg,18865478-7e43-3544-9067-fb03655e72c4 +2018,Mendoza,II.1.1,287.84028,TJ,CO2,74100.0,kg/TJ,21328964.748,Gas Oil combustion consumption by public passenger transport,AR-M,SESCO,annual,kg,87c3cd01-cd10-39ca-b3c4-f6684ce46196 +2018,Mendoza,II.1.1,287.84028,TJ,CH4,3.9,kg/TJ,1122.577092,Gas Oil combustion consumption by public passenger transport,AR-M,SESCO,annual,kg,a182c42d-1fe9-34a3-b338-5d81b7d352fe +2018,Mendoza,II.1.1,287.84028,TJ,N2O,3.9,kg/TJ,1122.577092,Gas Oil combustion consumption by public passenger transport,AR-M,SESCO,annual,kg,a182c42d-1fe9-34a3-b338-5d81b7d352fe +2018,Misiones,II.1.1,208.7736,TJ,CO2,74100.0,kg/TJ,15470123.76,Gas Oil combustion consumption by public passenger transport,AR-N,SESCO,annual,kg,59b2c31a-b357-32c0-9106-c73816c41e40 +2018,Misiones,II.1.1,208.7736,TJ,CH4,3.9,kg/TJ,814.2170399999999,Gas Oil combustion consumption by public passenger transport,AR-N,SESCO,annual,kg,d78b3b98-b1c6-370f-a53f-d41d24bb8dac +2018,Misiones,II.1.1,208.7736,TJ,N2O,3.9,kg/TJ,814.2170399999999,Gas Oil combustion consumption by public passenger transport,AR-N,SESCO,annual,kg,d78b3b98-b1c6-370f-a53f-d41d24bb8dac +2018,Neuquén,II.1.1,39.84036,TJ,CO2,74100.0,kg/TJ,2952170.676,Gas Oil combustion consumption by public passenger transport,AR-Q,SESCO,annual,kg,8302aad6-be61-3ce8-8931-81c6c0598ebb +2018,Neuquén,II.1.1,39.84036,TJ,CH4,3.9,kg/TJ,155.37740399999998,Gas Oil combustion consumption by public passenger transport,AR-Q,SESCO,annual,kg,1108f4cf-e305-37cf-91a7-9aff2665342e +2018,Neuquén,II.1.1,39.84036,TJ,N2O,3.9,kg/TJ,155.37740399999998,Gas Oil combustion consumption by public passenger transport,AR-Q,SESCO,annual,kg,1108f4cf-e305-37cf-91a7-9aff2665342e +2018,Rio Negro,II.1.1,205.66727999999998,TJ,CO2,74100.0,kg/TJ,15239945.447999999,Gas Oil combustion consumption by public passenger transport,AR-R,SESCO,annual,kg,dfef37f3-4e74-3c58-823a-bc0667401aa0 +2018,Rio Negro,II.1.1,205.66727999999998,TJ,CH4,3.9,kg/TJ,802.1023919999999,Gas Oil combustion consumption by public passenger transport,AR-R,SESCO,annual,kg,7a841b02-c85f-3cd3-a146-ce91f6a24710 +2018,Rio Negro,II.1.1,205.66727999999998,TJ,N2O,3.9,kg/TJ,802.1023919999999,Gas Oil combustion consumption by public passenger transport,AR-R,SESCO,annual,kg,7a841b02-c85f-3cd3-a146-ce91f6a24710 +2018,Salta,II.1.1,228.8202,TJ,CO2,74100.0,kg/TJ,16955576.82,Gas Oil combustion consumption by public passenger transport,AR-A,SESCO,annual,kg,9e076492-c0d0-3a26-b39b-5aea0ee4b620 +2018,Salta,II.1.1,228.8202,TJ,CH4,3.9,kg/TJ,892.39878,Gas Oil combustion consumption by public passenger transport,AR-A,SESCO,annual,kg,993c1344-76a4-330b-bc6c-307412e1e604 +2018,Salta,II.1.1,228.8202,TJ,N2O,3.9,kg/TJ,892.39878,Gas Oil combustion consumption by public passenger transport,AR-A,SESCO,annual,kg,993c1344-76a4-330b-bc6c-307412e1e604 +2018,San Juan,II.1.1,146.53884,TJ,CO2,74100.0,kg/TJ,10858528.044,Gas Oil combustion consumption by public passenger transport,AR-J,SESCO,annual,kg,78167729-5f34-3a23-b0ce-53dd6befdad9 +2018,San Juan,II.1.1,146.53884,TJ,CH4,3.9,kg/TJ,571.5014759999999,Gas Oil combustion consumption by public passenger transport,AR-J,SESCO,annual,kg,a7a5b952-49ce-3ff7-9b63-2fbc0ed66ea1 +2018,San Juan,II.1.1,146.53884,TJ,N2O,3.9,kg/TJ,571.5014759999999,Gas Oil combustion consumption by public passenger transport,AR-J,SESCO,annual,kg,a7a5b952-49ce-3ff7-9b63-2fbc0ed66ea1 +2018,San Luis,II.1.1,43.66908,TJ,CO2,74100.0,kg/TJ,3235878.828,Gas Oil combustion consumption by public passenger transport,AR-D,SESCO,annual,kg,be1dc58b-b0b8-35ad-866c-dd0b6a38a0fd +2018,San Luis,II.1.1,43.66908,TJ,CH4,3.9,kg/TJ,170.309412,Gas Oil combustion consumption by public passenger transport,AR-D,SESCO,annual,kg,11091680-4380-341b-98b7-833ad496f639 +2018,San Luis,II.1.1,43.66908,TJ,N2O,3.9,kg/TJ,170.309412,Gas Oil combustion consumption by public passenger transport,AR-D,SESCO,annual,kg,11091680-4380-341b-98b7-833ad496f639 +2018,Santa Cruz,II.1.1,2.23944,TJ,CO2,74100.0,kg/TJ,165942.50400000002,Gas Oil combustion consumption by public passenger transport,AR-Z,SESCO,annual,kg,bac01d6a-7e86-3376-8241-e1b377fbfb59 +2018,Santa Cruz,II.1.1,2.23944,TJ,CH4,3.9,kg/TJ,8.733816000000001,Gas Oil combustion consumption by public passenger transport,AR-Z,SESCO,annual,kg,f0f38c01-5017-307a-a4c3-a24fb5224c11 +2018,Santa Cruz,II.1.1,2.23944,TJ,N2O,3.9,kg/TJ,8.733816000000001,Gas Oil combustion consumption by public passenger transport,AR-Z,SESCO,annual,kg,f0f38c01-5017-307a-a4c3-a24fb5224c11 +2018,Santa Fe,II.1.1,345.4878,TJ,CO2,74100.0,kg/TJ,25600645.98,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,1cd2ee89-7a3b-327a-b3c3-1db633d171fa +2018,Santa Fe,II.1.1,345.4878,TJ,CH4,3.9,kg/TJ,1347.40242,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,0f60873e-8abb-3e81-9d18-1220b7316a00 +2018,Santa Fe,II.1.1,345.4878,TJ,N2O,3.9,kg/TJ,1347.40242,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,0f60873e-8abb-3e81-9d18-1220b7316a00 +2018,Santiago del Estero,II.1.1,38.61228,TJ,CO2,74100.0,kg/TJ,2861169.948,Gas Oil combustion consumption by public passenger transport,AR-G,SESCO,annual,kg,e1465b78-9956-34bd-af86-5ff24e4d93d1 +2018,Santiago del Estero,II.1.1,38.61228,TJ,CH4,3.9,kg/TJ,150.58789199999998,Gas Oil combustion consumption by public passenger transport,AR-G,SESCO,annual,kg,f45af029-2994-3a1c-810c-053a035ad0ca +2018,Santiago del Estero,II.1.1,38.61228,TJ,N2O,3.9,kg/TJ,150.58789199999998,Gas Oil combustion consumption by public passenger transport,AR-G,SESCO,annual,kg,f45af029-2994-3a1c-810c-053a035ad0ca +2018,Tierra del Fuego,II.1.1,21.81648,TJ,CO2,74100.0,kg/TJ,1616601.1679999998,Gas Oil combustion consumption by public passenger transport,AR-V,SESCO,annual,kg,7f9cc7d5-dc5d-3e9d-8806-9c8d478fbe57 +2018,Tierra del Fuego,II.1.1,21.81648,TJ,CH4,3.9,kg/TJ,85.084272,Gas Oil combustion consumption by public passenger transport,AR-V,SESCO,annual,kg,3335dfad-2af3-34b9-91a5-ce8480e48329 +2018,Tierra del Fuego,II.1.1,21.81648,TJ,N2O,3.9,kg/TJ,85.084272,Gas Oil combustion consumption by public passenger transport,AR-V,SESCO,annual,kg,3335dfad-2af3-34b9-91a5-ce8480e48329 +2018,Tucuman,II.1.1,196.45667999999998,TJ,CO2,74100.0,kg/TJ,14557439.987999998,Gas Oil combustion consumption by public passenger transport,AR-T,SESCO,annual,kg,de3bedd5-898a-35cb-b45f-5137beafc7b2 +2018,Tucuman,II.1.1,196.45667999999998,TJ,CH4,3.9,kg/TJ,766.1810519999999,Gas Oil combustion consumption by public passenger transport,AR-T,SESCO,annual,kg,1dbd6438-552e-3be4-b94c-86da64ea72da +2018,Tucuman,II.1.1,196.45667999999998,TJ,N2O,3.9,kg/TJ,766.1810519999999,Gas Oil combustion consumption by public passenger transport,AR-T,SESCO,annual,kg,1dbd6438-552e-3be4-b94c-86da64ea72da +2019,Buenos Aires,II.5.1,266.67395999999997,TJ,CO2,74100.0,kg/TJ,19760540.435999997,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,ec98453f-a46c-33cd-b55f-73093f92df0f +2019,Buenos Aires,II.5.1,266.67395999999997,TJ,CH4,3.9,kg/TJ,1040.0284439999998,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,da392dd6-e44d-3480-bb61-6a5863d637a3 +2019,Buenos Aires,II.5.1,266.67395999999997,TJ,N2O,3.9,kg/TJ,1040.0284439999998,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,da392dd6-e44d-3480-bb61-6a5863d637a3 +2019,Chaco,II.5.1,19.57704,TJ,CO2,74100.0,kg/TJ,1450658.664,Gas Oil combustion consumption by agriculture machines,AR-H,SESCO,annual,kg,9f668290-840d-3fbd-8f5d-4865a660c98b +2019,Chaco,II.5.1,19.57704,TJ,CH4,3.9,kg/TJ,76.350456,Gas Oil combustion consumption by agriculture machines,AR-H,SESCO,annual,kg,d135a61d-6736-318c-8c7f-bb503be60d33 +2019,Chaco,II.5.1,19.57704,TJ,N2O,3.9,kg/TJ,76.350456,Gas Oil combustion consumption by agriculture machines,AR-H,SESCO,annual,kg,d135a61d-6736-318c-8c7f-bb503be60d33 +2019,Córdoba,II.5.1,118.40136,TJ,CO2,74100.0,kg/TJ,8773540.776,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,c0df4ad6-63a4-3755-81ba-909d8b30a49e +2019,Córdoba,II.5.1,118.40136,TJ,CH4,3.9,kg/TJ,461.76530399999996,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,bb917a39-2f28-3f73-a7cf-69c44bd56f3e +2019,Córdoba,II.5.1,118.40136,TJ,N2O,3.9,kg/TJ,461.76530399999996,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,bb917a39-2f28-3f73-a7cf-69c44bd56f3e +2019,Entre Rios,II.5.1,18.09612,TJ,CO2,74100.0,kg/TJ,1340922.4919999999,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,4c688315-86ba-3f5e-9059-9b225c11f3dd +2019,Entre Rios,II.5.1,18.09612,TJ,CH4,3.9,kg/TJ,70.574868,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,cb28000d-7c25-3f67-b2ee-48d23476adf7 +2019,Entre Rios,II.5.1,18.09612,TJ,N2O,3.9,kg/TJ,70.574868,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,cb28000d-7c25-3f67-b2ee-48d23476adf7 +2019,La Pampa,II.5.1,2.13108,TJ,CO2,74100.0,kg/TJ,157913.028,Gas Oil combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,dc4edb83-3e7e-3d20-999c-ed42a6ae84c4 +2019,La Pampa,II.5.1,2.13108,TJ,CH4,3.9,kg/TJ,8.311212,Gas Oil combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,262a6089-179b-34e5-8673-7e85709f08f6 +2019,La Pampa,II.5.1,2.13108,TJ,N2O,3.9,kg/TJ,8.311212,Gas Oil combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,262a6089-179b-34e5-8673-7e85709f08f6 +2019,Santa Fe,II.5.1,209.56824,TJ,CO2,74100.0,kg/TJ,15529006.584,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,73a9eb31-c5e3-3b40-bbb0-584797616237 +2019,Santa Fe,II.5.1,209.56824,TJ,CH4,3.9,kg/TJ,817.316136,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,a765db81-1046-3f47-9039-7aeefdd32a7f +2019,Santa Fe,II.5.1,209.56824,TJ,N2O,3.9,kg/TJ,817.316136,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,a765db81-1046-3f47-9039-7aeefdd32a7f +2019,Buenos Aires,II.5.1,8.01864,TJ,CO2,74100.0,kg/TJ,594181.2239999999,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,cc49f3cb-fe5a-3d31-95f9-3667f555be25 +2019,Buenos Aires,II.5.1,8.01864,TJ,CH4,3.9,kg/TJ,31.272695999999996,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,aebde593-fdf2-3bae-b8fd-ebcedc0acc08 +2019,Buenos Aires,II.5.1,8.01864,TJ,N2O,3.9,kg/TJ,31.272695999999996,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,aebde593-fdf2-3bae-b8fd-ebcedc0acc08 +2019,Córdoba,II.5.1,2.4200399999999997,TJ,CO2,74100.0,kg/TJ,179324.96399999998,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,ea3f7b31-0556-39be-bb30-d678d2856e58 +2019,Córdoba,II.5.1,2.4200399999999997,TJ,CH4,3.9,kg/TJ,9.438156,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,af8a0089-03af-3d4a-ab17-0a097fc20427 +2019,Córdoba,II.5.1,2.4200399999999997,TJ,N2O,3.9,kg/TJ,9.438156,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,af8a0089-03af-3d4a-ab17-0a097fc20427 +2019,La Pampa,II.5.1,0.46956,TJ,CO2,74100.0,kg/TJ,34794.396,Gas Oil combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,ab4ab5cd-dfa9-3126-ac50-d5b0f0272258 +2019,La Pampa,II.5.1,0.46956,TJ,CH4,3.9,kg/TJ,1.831284,Gas Oil combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,725141c8-0815-38d8-9ad4-f4fd01dce5e8 +2019,La Pampa,II.5.1,0.46956,TJ,N2O,3.9,kg/TJ,1.831284,Gas Oil combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,725141c8-0815-38d8-9ad4-f4fd01dce5e8 +2019,Santa Fe,II.5.1,11.702879999999999,TJ,CO2,74100.0,kg/TJ,867183.4079999999,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,a006da95-99c8-3c0c-89ea-65e8eb549fab +2019,Santa Fe,II.5.1,11.702879999999999,TJ,CH4,3.9,kg/TJ,45.641231999999995,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,0d2209b2-4a22-379d-8c7e-4c4bad3694a8 +2019,Santa Fe,II.5.1,11.702879999999999,TJ,N2O,3.9,kg/TJ,45.641231999999995,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,0d2209b2-4a22-379d-8c7e-4c4bad3694a8 +2019,Buenos Aires,II.5.1,0.20559,TJ,CO2,73300.0,kg/TJ,15069.747,Naphtha combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,bc914cfe-cf3c-39ed-888e-f73f6fe5aff0 +2019,Buenos Aires,II.5.1,0.20559,TJ,CH4,0.5,kg/TJ,0.102795,Naphtha combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,f18faaba-3417-33f4-9a57-ab44519d0808 +2019,Buenos Aires,II.5.1,0.20559,TJ,N2O,2.0,kg/TJ,0.41118,Naphtha combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,ca276b56-ca00-3c0e-8952-9f30b5aa075e +2019,Córdoba,II.5.1,1.2678049999999998,TJ,CO2,73300.0,kg/TJ,92930.1065,Naphtha combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,7c03ff4d-6c37-3c0d-b0b4-96022d5aeb49 +2019,Córdoba,II.5.1,1.2678049999999998,TJ,CH4,0.5,kg/TJ,0.6339024999999999,Naphtha combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,27fefacc-6523-3553-8c04-bc200d6609ad +2019,Córdoba,II.5.1,1.2678049999999998,TJ,N2O,2.0,kg/TJ,2.5356099999999997,Naphtha combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,08ca31ef-b95d-3e05-b7c6-e8ec6d4e5dcd +2019,Santa Fe,II.5.1,12.095545,TJ,CO2,73300.0,kg/TJ,886603.4484999999,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,85df10d5-2954-347e-8627-b7add48aa715 +2019,Santa Fe,II.5.1,12.095545,TJ,CH4,0.5,kg/TJ,6.0477725,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,8760e899-e378-3a2f-8cc1-e1f4e1cf715e +2019,Santa Fe,II.5.1,12.095545,TJ,N2O,2.0,kg/TJ,24.19109,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,ce9352f5-ab57-3555-a73b-df9bcf2fefaf +2019,Santa Fe,II.5.1,1.43913,TJ,CO2,73300.0,kg/TJ,105488.229,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,683383b8-ee6a-36d1-b3df-0d07092b5bdf +2019,Santa Fe,II.5.1,1.43913,TJ,CH4,0.5,kg/TJ,0.719565,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,b0f17db0-5125-36ea-b667-2ae0a12ff6ae +2019,Santa Fe,II.5.1,1.43913,TJ,N2O,2.0,kg/TJ,2.87826,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,b33eee40-85b6-36bc-89c2-ba8d9d112d13 +2019,Buenos Aires,II.5.1,245.14643999999998,TJ,CO2,74100.0,kg/TJ,18165351.204,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,d80eee47-3bdf-3de1-ae3b-447400f441a2 +2019,Buenos Aires,II.5.1,245.14643999999998,TJ,CH4,3.9,kg/TJ,956.071116,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,0e7d8a37-902d-31fd-b1d5-eab6636109a3 +2019,Buenos Aires,II.5.1,245.14643999999998,TJ,N2O,3.9,kg/TJ,956.071116,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,0e7d8a37-902d-31fd-b1d5-eab6636109a3 +2019,Capital Federal,II.5.1,4.4066399999999994,TJ,CO2,74100.0,kg/TJ,326532.024,Gas Oil combustion consumption by agriculture machines,AR-C,SESCO,annual,kg,c990c3d2-3f85-36ed-acfb-ea68613db06d +2019,Capital Federal,II.5.1,4.4066399999999994,TJ,CH4,3.9,kg/TJ,17.185895999999996,Gas Oil combustion consumption by agriculture machines,AR-C,SESCO,annual,kg,dfb322f1-bdaa-3804-aa89-c449a68deead +2019,Capital Federal,II.5.1,4.4066399999999994,TJ,N2O,3.9,kg/TJ,17.185895999999996,Gas Oil combustion consumption by agriculture machines,AR-C,SESCO,annual,kg,dfb322f1-bdaa-3804-aa89-c449a68deead +2019,Córdoba,II.5.1,819.8156399999999,TJ,CO2,74100.0,kg/TJ,60748338.923999995,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,799b5772-b7ee-33f3-96dd-45591c29b063 +2019,Córdoba,II.5.1,819.8156399999999,TJ,CH4,3.9,kg/TJ,3197.2809959999995,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,b8a09d03-b13f-3362-89f2-f147fe4b8dea +2019,Córdoba,II.5.1,819.8156399999999,TJ,N2O,3.9,kg/TJ,3197.2809959999995,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,b8a09d03-b13f-3362-89f2-f147fe4b8dea +2019,Entre Rios,II.5.1,124.86684,TJ,CO2,74100.0,kg/TJ,9252632.844,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,a8858671-5bac-33e7-b484-ef585769cbe7 +2019,Entre Rios,II.5.1,124.86684,TJ,CH4,3.9,kg/TJ,486.98067599999996,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,1fd9da04-8b19-37a5-8f1e-8fdaa4a291bd +2019,Entre Rios,II.5.1,124.86684,TJ,N2O,3.9,kg/TJ,486.98067599999996,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,1fd9da04-8b19-37a5-8f1e-8fdaa4a291bd +2019,La Pampa,II.5.1,95.32068,TJ,CO2,74100.0,kg/TJ,7063262.387999999,Gas Oil combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,3478842e-7634-390a-addd-25f7a26a715e +2019,La Pampa,II.5.1,95.32068,TJ,CH4,3.9,kg/TJ,371.750652,Gas Oil combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,0d822519-5d8c-3b61-9029-a3f9588395c6 +2019,La Pampa,II.5.1,95.32068,TJ,N2O,3.9,kg/TJ,371.750652,Gas Oil combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,0d822519-5d8c-3b61-9029-a3f9588395c6 +2019,Santa Fe,II.5.1,176.77128,TJ,CO2,74100.0,kg/TJ,13098751.848,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,e876da40-68c9-389b-a43d-8675c787e583 +2019,Santa Fe,II.5.1,176.77128,TJ,CH4,3.9,kg/TJ,689.4079919999999,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,7f5c719d-efd7-33cc-a032-48185ffcadce +2019,Santa Fe,II.5.1,176.77128,TJ,N2O,3.9,kg/TJ,689.4079919999999,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,7f5c719d-efd7-33cc-a032-48185ffcadce +2019,Chubut,II.1.1,1.1706492,TJ,CO2,74100.0,kg/TJ,86745.10571999999,Gas Oil combustion consumption by freight transport,AR-U,SESCO,annual,kg,42bcfec2-08aa-3d5a-8467-bb48a4cdc683 +2019,Chubut,II.1.1,1.1706492,TJ,CH4,3.9,kg/TJ,4.56553188,Gas Oil combustion consumption by freight transport,AR-U,SESCO,annual,kg,01025cc4-9226-345b-a16f-eb8f04128053 +2019,Chubut,II.1.1,1.1706492,TJ,N2O,3.9,kg/TJ,4.56553188,Gas Oil combustion consumption by freight transport,AR-U,SESCO,annual,kg,01025cc4-9226-345b-a16f-eb8f04128053 +2019,Buenos Aires,II.5.1,459.19356,TJ,CO2,74100.0,kg/TJ,34026242.796,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,e21dc272-d7b5-3e95-931d-3d1e3f6ea6ff +2019,Buenos Aires,II.5.1,459.19356,TJ,CH4,3.9,kg/TJ,1790.8548839999999,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,93665390-0083-3e5a-a611-71f7415f4d19 +2019,Buenos Aires,II.5.1,459.19356,TJ,N2O,3.9,kg/TJ,1790.8548839999999,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,93665390-0083-3e5a-a611-71f7415f4d19 +2019,Chaco,II.5.1,103.98948,TJ,CO2,74100.0,kg/TJ,7705620.468,Gas Oil combustion consumption by agriculture machines,AR-H,SESCO,annual,kg,aa824116-9ea4-3007-8edd-4b15a0da7e9c +2019,Chaco,II.5.1,103.98948,TJ,CH4,3.9,kg/TJ,405.558972,Gas Oil combustion consumption by agriculture machines,AR-H,SESCO,annual,kg,cbd98cbf-a25f-3c6a-841e-d0e87e1ec1ee +2019,Chaco,II.5.1,103.98948,TJ,N2O,3.9,kg/TJ,405.558972,Gas Oil combustion consumption by agriculture machines,AR-H,SESCO,annual,kg,cbd98cbf-a25f-3c6a-841e-d0e87e1ec1ee +2019,Corrientes,II.5.1,30.55752,TJ,CO2,74100.0,kg/TJ,2264312.232,Gas Oil combustion consumption by agriculture machines,AR-W,SESCO,annual,kg,62c53aae-8911-3d92-bae4-33755ebff699 +2019,Corrientes,II.5.1,30.55752,TJ,CH4,3.9,kg/TJ,119.174328,Gas Oil combustion consumption by agriculture machines,AR-W,SESCO,annual,kg,cd60f2e7-e016-3bc5-861c-eb8564c2fab6 +2019,Corrientes,II.5.1,30.55752,TJ,N2O,3.9,kg/TJ,119.174328,Gas Oil combustion consumption by agriculture machines,AR-W,SESCO,annual,kg,cd60f2e7-e016-3bc5-861c-eb8564c2fab6 +2019,Córdoba,II.5.1,485.34443999999996,TJ,CO2,74100.0,kg/TJ,35964023.004,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,af74961a-9edc-3def-b1b0-0a442be74361 +2019,Córdoba,II.5.1,485.34443999999996,TJ,CH4,3.9,kg/TJ,1892.8433159999997,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,f43fecf1-047f-30ac-a191-b77cc4396f30 +2019,Córdoba,II.5.1,485.34443999999996,TJ,N2O,3.9,kg/TJ,1892.8433159999997,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,f43fecf1-047f-30ac-a191-b77cc4396f30 +2019,Entre Rios,II.5.1,24.41712,TJ,CO2,74100.0,kg/TJ,1809308.592,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,9d5f5eed-9ba7-3321-91fa-d3d5fe178787 +2019,Entre Rios,II.5.1,24.41712,TJ,CH4,3.9,kg/TJ,95.226768,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,9cd29067-175d-37e0-b36b-56fb0d15f826 +2019,Entre Rios,II.5.1,24.41712,TJ,N2O,3.9,kg/TJ,95.226768,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,9cd29067-175d-37e0-b36b-56fb0d15f826 +2019,Mendoza,II.5.1,252.18983999999998,TJ,CO2,74100.0,kg/TJ,18687267.143999998,Gas Oil combustion consumption by agriculture machines,AR-M,SESCO,annual,kg,15557f54-c3d3-3dab-80ba-245678838744 +2019,Mendoza,II.5.1,252.18983999999998,TJ,CH4,3.9,kg/TJ,983.5403759999999,Gas Oil combustion consumption by agriculture machines,AR-M,SESCO,annual,kg,94c81c3d-87b0-30ca-8945-f7dc44641fd6 +2019,Mendoza,II.5.1,252.18983999999998,TJ,N2O,3.9,kg/TJ,983.5403759999999,Gas Oil combustion consumption by agriculture machines,AR-M,SESCO,annual,kg,94c81c3d-87b0-30ca-8945-f7dc44641fd6 +2019,Santa Fe,II.5.1,621.30012,TJ,CO2,74100.0,kg/TJ,46038338.892,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,0da67008-7bd6-3576-bfc2-6f40b6adf41e +2019,Santa Fe,II.5.1,621.30012,TJ,CH4,3.9,kg/TJ,2423.070468,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,fbcb9a5e-0d02-3756-a1c1-689923cb386a +2019,Santa Fe,II.5.1,621.30012,TJ,N2O,3.9,kg/TJ,2423.070468,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,fbcb9a5e-0d02-3756-a1c1-689923cb386a +2019,Santiago del Estero,II.5.1,42.00756,TJ,CO2,74100.0,kg/TJ,3112760.196,Gas Oil combustion consumption by agriculture machines,AR-G,SESCO,annual,kg,fd251cc3-8926-33f9-8fc6-c7676c04e9a1 +2019,Santiago del Estero,II.5.1,42.00756,TJ,CH4,3.9,kg/TJ,163.82948399999998,Gas Oil combustion consumption by agriculture machines,AR-G,SESCO,annual,kg,b7519c6b-d122-32c5-8abf-8a831a8a90f5 +2019,Santiago del Estero,II.5.1,42.00756,TJ,N2O,3.9,kg/TJ,163.82948399999998,Gas Oil combustion consumption by agriculture machines,AR-G,SESCO,annual,kg,b7519c6b-d122-32c5-8abf-8a831a8a90f5 +2019,Tucuman,II.5.1,26.62044,TJ,CO2,74100.0,kg/TJ,1972574.6039999998,Gas Oil combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,20d3c8bd-9a9c-31d6-9b28-1ae356b22990 +2019,Tucuman,II.5.1,26.62044,TJ,CH4,3.9,kg/TJ,103.81971599999999,Gas Oil combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,51e5326e-ca20-3e09-88e5-05b2ac2cd122 +2019,Tucuman,II.5.1,26.62044,TJ,N2O,3.9,kg/TJ,103.81971599999999,Gas Oil combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,51e5326e-ca20-3e09-88e5-05b2ac2cd122 +2019,Buenos Aires,II.5.1,17.80716,TJ,CO2,74100.0,kg/TJ,1319510.5559999999,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,9af981e4-54f7-3881-9c59-eb874c4e5927 +2019,Buenos Aires,II.5.1,17.80716,TJ,CH4,3.9,kg/TJ,69.447924,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,399560fd-e972-3d51-82c2-52dc9c4bf85a +2019,Buenos Aires,II.5.1,17.80716,TJ,N2O,3.9,kg/TJ,69.447924,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,399560fd-e972-3d51-82c2-52dc9c4bf85a +2019,Chaco,II.5.1,23.405759999999997,TJ,CO2,74100.0,kg/TJ,1734366.8159999999,Gas Oil combustion consumption by agriculture machines,AR-H,SESCO,annual,kg,a7df250e-1b1a-3e09-8e55-1c475a114cf7 +2019,Chaco,II.5.1,23.405759999999997,TJ,CH4,3.9,kg/TJ,91.28246399999999,Gas Oil combustion consumption by agriculture machines,AR-H,SESCO,annual,kg,27921d65-11fb-3c0a-9871-ba5b0cd4b587 +2019,Chaco,II.5.1,23.405759999999997,TJ,N2O,3.9,kg/TJ,91.28246399999999,Gas Oil combustion consumption by agriculture machines,AR-H,SESCO,annual,kg,27921d65-11fb-3c0a-9871-ba5b0cd4b587 +2019,Corrientes,II.5.1,11.26944,TJ,CO2,74100.0,kg/TJ,835065.504,Gas Oil combustion consumption by agriculture machines,AR-W,SESCO,annual,kg,3f2eebf7-42db-38e9-a676-fce8cf3ffe2e +2019,Corrientes,II.5.1,11.26944,TJ,CH4,3.9,kg/TJ,43.950815999999996,Gas Oil combustion consumption by agriculture machines,AR-W,SESCO,annual,kg,ffe5c9c6-6c0f-31f1-9df8-ca831424fed0 +2019,Corrientes,II.5.1,11.26944,TJ,N2O,3.9,kg/TJ,43.950815999999996,Gas Oil combustion consumption by agriculture machines,AR-W,SESCO,annual,kg,ffe5c9c6-6c0f-31f1-9df8-ca831424fed0 +2019,Córdoba,II.5.1,34.78356,TJ,CO2,74100.0,kg/TJ,2577461.796,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,f02c745c-591d-338b-b5c0-ceaae65c492a +2019,Córdoba,II.5.1,34.78356,TJ,CH4,3.9,kg/TJ,135.65588400000001,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,a0bb699e-dc34-35cb-9e28-907ef759d7bc +2019,Córdoba,II.5.1,34.78356,TJ,N2O,3.9,kg/TJ,135.65588400000001,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,a0bb699e-dc34-35cb-9e28-907ef759d7bc +2019,Mendoza,II.5.1,68.2668,TJ,CO2,74100.0,kg/TJ,5058569.88,Gas Oil combustion consumption by agriculture machines,AR-M,SESCO,annual,kg,eb4a2748-740c-3ea7-a9f4-ee01e0740338 +2019,Mendoza,II.5.1,68.2668,TJ,CH4,3.9,kg/TJ,266.24052,Gas Oil combustion consumption by agriculture machines,AR-M,SESCO,annual,kg,1e7d1a83-afa6-3372-a9de-e9394be318d6 +2019,Mendoza,II.5.1,68.2668,TJ,N2O,3.9,kg/TJ,266.24052,Gas Oil combustion consumption by agriculture machines,AR-M,SESCO,annual,kg,1e7d1a83-afa6-3372-a9de-e9394be318d6 +2019,Santa Fe,II.5.1,19.39644,TJ,CO2,74100.0,kg/TJ,1437276.204,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,4d5e2cf3-7df7-3878-bdac-8396c95ceca4 +2019,Santa Fe,II.5.1,19.39644,TJ,CH4,3.9,kg/TJ,75.64611599999999,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,cf33c530-a42c-3e8d-b672-cd00aa922598 +2019,Santa Fe,II.5.1,19.39644,TJ,N2O,3.9,kg/TJ,75.64611599999999,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,cf33c530-a42c-3e8d-b672-cd00aa922598 +2019,Santiago del Estero,II.5.1,3.68424,TJ,CO2,74100.0,kg/TJ,273002.184,Gas Oil combustion consumption by agriculture machines,AR-G,SESCO,annual,kg,a2d56b19-f66f-3a84-8d72-88833e0cba8e +2019,Santiago del Estero,II.5.1,3.68424,TJ,CH4,3.9,kg/TJ,14.368535999999999,Gas Oil combustion consumption by agriculture machines,AR-G,SESCO,annual,kg,dd1034fd-ce41-3f2e-b6b4-5b6b4e068756 +2019,Santiago del Estero,II.5.1,3.68424,TJ,N2O,3.9,kg/TJ,14.368535999999999,Gas Oil combustion consumption by agriculture machines,AR-G,SESCO,annual,kg,dd1034fd-ce41-3f2e-b6b4-5b6b4e068756 +2019,Tucuman,II.5.1,7.29624,TJ,CO2,74100.0,kg/TJ,540651.384,Gas Oil combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,01c9cb95-ce75-373c-bfec-961234a9e2ab +2019,Tucuman,II.5.1,7.29624,TJ,CH4,3.9,kg/TJ,28.455336,Gas Oil combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,572cd37f-688f-3a78-af4c-451bfa478492 +2019,Tucuman,II.5.1,7.29624,TJ,N2O,3.9,kg/TJ,28.455336,Gas Oil combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,572cd37f-688f-3a78-af4c-451bfa478492 +2019,Córdoba,II.5.1,1.43913,TJ,CO2,73300.0,kg/TJ,105488.229,Naphtha combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,54f15bac-14c4-34c9-93ca-ff024c0b49d6 +2019,Córdoba,II.5.1,1.43913,TJ,CH4,0.5,kg/TJ,0.719565,Naphtha combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,95be5110-0dee-3ac8-a4b7-582a8405ddbb +2019,Córdoba,II.5.1,1.43913,TJ,N2O,2.0,kg/TJ,2.87826,Naphtha combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,340758f1-52df-3eff-986e-f177c64f0a64 +2019,Santa Fe,II.5.1,5.55093,TJ,CO2,73300.0,kg/TJ,406883.169,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,71dce6b9-ee97-3be0-8d31-768d7d1ca700 +2019,Santa Fe,II.5.1,5.55093,TJ,CH4,0.5,kg/TJ,2.775465,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,f0050b3b-b4e3-312f-b6f2-1a5a16c66b9e +2019,Santa Fe,II.5.1,5.55093,TJ,N2O,2.0,kg/TJ,11.10186,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,6091253e-3d08-3e3d-94e3-2adb81958f36 +2019,Córdoba,II.5.1,1.02795,TJ,CO2,73300.0,kg/TJ,75348.735,Naphtha combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,544f6101-84e9-3042-b4d1-59fbc411b235 +2019,Córdoba,II.5.1,1.02795,TJ,CH4,0.5,kg/TJ,0.513975,Naphtha combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,972a07b6-9ddc-3ee6-bc47-8f091a3576fe +2019,Córdoba,II.5.1,1.02795,TJ,N2O,2.0,kg/TJ,2.0559,Naphtha combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,7d1aec23-da93-3045-922e-af8e30cee0cf +2019,Santa Fe,II.5.1,1.747515,TJ,CO2,73300.0,kg/TJ,128092.8495,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,59044f7c-5440-3930-a1d1-c5afeab92056 +2019,Santa Fe,II.5.1,1.747515,TJ,CH4,0.5,kg/TJ,0.8737575,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,859c0894-bd83-319a-a139-76f4051685ee +2019,Santa Fe,II.5.1,1.747515,TJ,N2O,2.0,kg/TJ,3.49503,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,c76803d3-95a1-3154-ac77-3a8f64502b7b +2019,Buenos Aires,II.2.1,88.74683999999999,TJ,CO2,74100.0,kg/TJ,6576140.844,Gas Oil combustion consumption by railway transport,AR-B,SESCO,annual,kg,fd9d39fe-ff44-310d-984a-448f2a6e1968 +2019,Buenos Aires,II.2.1,88.74683999999999,TJ,CH4,3.9,kg/TJ,346.11267599999996,Gas Oil combustion consumption by railway transport,AR-B,SESCO,annual,kg,141cea4b-1d9b-3c7d-8f82-43aa7b9f8fc7 +2019,Buenos Aires,II.2.1,88.74683999999999,TJ,N2O,3.9,kg/TJ,346.11267599999996,Gas Oil combustion consumption by railway transport,AR-B,SESCO,annual,kg,141cea4b-1d9b-3c7d-8f82-43aa7b9f8fc7 +2019,Capital Federal,II.2.1,1.8059999999999998,TJ,CO2,74100.0,kg/TJ,133824.59999999998,Gas Oil combustion consumption by railway transport,AR-C,SESCO,annual,kg,d4255f81-eff8-3945-b75c-4e1140b49e25 +2019,Capital Federal,II.2.1,1.8059999999999998,TJ,CH4,3.9,kg/TJ,7.043399999999999,Gas Oil combustion consumption by railway transport,AR-C,SESCO,annual,kg,fbd51103-0db8-36f0-a705-b3fe2d7cccdd +2019,Capital Federal,II.2.1,1.8059999999999998,TJ,N2O,3.9,kg/TJ,7.043399999999999,Gas Oil combustion consumption by railway transport,AR-C,SESCO,annual,kg,fbd51103-0db8-36f0-a705-b3fe2d7cccdd +2019,La Pampa,II.2.1,15.38712,TJ,CO2,74100.0,kg/TJ,1140185.592,Gas Oil combustion consumption by railway transport,AR-L,SESCO,annual,kg,a090c5bd-03f1-3210-a08e-310aeeef88f7 +2019,La Pampa,II.2.1,15.38712,TJ,CH4,3.9,kg/TJ,60.009767999999994,Gas Oil combustion consumption by railway transport,AR-L,SESCO,annual,kg,26745232-f591-317d-bea8-2cb2ce92808b +2019,La Pampa,II.2.1,15.38712,TJ,N2O,3.9,kg/TJ,60.009767999999994,Gas Oil combustion consumption by railway transport,AR-L,SESCO,annual,kg,26745232-f591-317d-bea8-2cb2ce92808b +2019,Santa Fe,II.2.1,56.60004,TJ,CO2,74100.0,kg/TJ,4194062.964,Gas Oil combustion consumption by railway transport,AR-S,SESCO,annual,kg,f4a29bd0-e787-3a85-8a21-7f96aff52e0a +2019,Santa Fe,II.2.1,56.60004,TJ,CH4,3.9,kg/TJ,220.74015599999998,Gas Oil combustion consumption by railway transport,AR-S,SESCO,annual,kg,07a77e91-5f0c-3678-a637-e932a82bf64e +2019,Santa Fe,II.2.1,56.60004,TJ,N2O,3.9,kg/TJ,220.74015599999998,Gas Oil combustion consumption by railway transport,AR-S,SESCO,annual,kg,07a77e91-5f0c-3678-a637-e932a82bf64e +2019,Santiago del Estero,II.2.1,12.930959999999999,TJ,CO2,74100.0,kg/TJ,958184.1359999999,Gas Oil combustion consumption by railway transport,AR-G,SESCO,annual,kg,554fcdac-aafb-39b4-bb13-dfe2d23fd2ca +2019,Santiago del Estero,II.2.1,12.930959999999999,TJ,CH4,3.9,kg/TJ,50.430744,Gas Oil combustion consumption by railway transport,AR-G,SESCO,annual,kg,0b2681d1-5312-35cc-910e-38fbbff3ae5b +2019,Santiago del Estero,II.2.1,12.930959999999999,TJ,N2O,3.9,kg/TJ,50.430744,Gas Oil combustion consumption by railway transport,AR-G,SESCO,annual,kg,0b2681d1-5312-35cc-910e-38fbbff3ae5b +2019,Tucuman,II.2.1,5.20128,TJ,CO2,74100.0,kg/TJ,385414.848,Gas Oil combustion consumption by railway transport,AR-T,SESCO,annual,kg,0e461d18-ca02-391f-8965-c4fde762c604 +2019,Tucuman,II.2.1,5.20128,TJ,CH4,3.9,kg/TJ,20.284992,Gas Oil combustion consumption by railway transport,AR-T,SESCO,annual,kg,524cff89-6643-3e31-90da-41d7357d63dc +2019,Tucuman,II.2.1,5.20128,TJ,N2O,3.9,kg/TJ,20.284992,Gas Oil combustion consumption by railway transport,AR-T,SESCO,annual,kg,524cff89-6643-3e31-90da-41d7357d63dc +2019,Buenos Aires,II.1.1,486.50028,TJ,CO2,74100.0,kg/TJ,36049670.747999996,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,4f0cb496-bd4d-3fc1-860a-04f97eb69bef +2019,Buenos Aires,II.1.1,486.50028,TJ,CH4,3.9,kg/TJ,1897.3510919999999,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,1d532d41-eb26-30ef-8190-74e58f47766a +2019,Buenos Aires,II.1.1,486.50028,TJ,N2O,3.9,kg/TJ,1897.3510919999999,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,1d532d41-eb26-30ef-8190-74e58f47766a +2019,Capital Federal,II.1.1,139.53155999999998,TJ,CO2,74100.0,kg/TJ,10339288.595999999,Gas Oil combustion consumption by freight transport,AR-C,SESCO,annual,kg,0ee63531-e023-3d10-bff0-bf0d2d7b4bab +2019,Capital Federal,II.1.1,139.53155999999998,TJ,CH4,3.9,kg/TJ,544.1730839999999,Gas Oil combustion consumption by freight transport,AR-C,SESCO,annual,kg,3fded31a-3a95-3850-a517-9dad38e0e9fb +2019,Capital Federal,II.1.1,139.53155999999998,TJ,N2O,3.9,kg/TJ,544.1730839999999,Gas Oil combustion consumption by freight transport,AR-C,SESCO,annual,kg,3fded31a-3a95-3850-a517-9dad38e0e9fb +2019,Catamarca,II.1.1,5.20128,TJ,CO2,74100.0,kg/TJ,385414.848,Gas Oil combustion consumption by freight transport,AR-K,SESCO,annual,kg,93101423-b2c2-3ee9-ab29-732d6e61454e +2019,Catamarca,II.1.1,5.20128,TJ,CH4,3.9,kg/TJ,20.284992,Gas Oil combustion consumption by freight transport,AR-K,SESCO,annual,kg,85f51ca5-7b8a-3741-b905-65298a184fb2 +2019,Catamarca,II.1.1,5.20128,TJ,N2O,3.9,kg/TJ,20.284992,Gas Oil combustion consumption by freight transport,AR-K,SESCO,annual,kg,85f51ca5-7b8a-3741-b905-65298a184fb2 +2019,Chaco,II.1.1,1.3364399999999999,TJ,CO2,74100.0,kg/TJ,99030.20399999998,Gas Oil combustion consumption by freight transport,AR-H,SESCO,annual,kg,660717cd-db4f-395d-bad4-65bd457b9a9b +2019,Chaco,II.1.1,1.3364399999999999,TJ,CH4,3.9,kg/TJ,5.212115999999999,Gas Oil combustion consumption by freight transport,AR-H,SESCO,annual,kg,7e4968b4-5e6c-3be1-88d1-1dae01c89c7f +2019,Chaco,II.1.1,1.3364399999999999,TJ,N2O,3.9,kg/TJ,5.212115999999999,Gas Oil combustion consumption by freight transport,AR-H,SESCO,annual,kg,7e4968b4-5e6c-3be1-88d1-1dae01c89c7f +2019,Chubut,II.1.1,4.80396,TJ,CO2,74100.0,kg/TJ,355973.436,Gas Oil combustion consumption by freight transport,AR-U,SESCO,annual,kg,99e8c5d3-f966-380f-9d61-df1bfbbdd452 +2019,Chubut,II.1.1,4.80396,TJ,CH4,3.9,kg/TJ,18.735444,Gas Oil combustion consumption by freight transport,AR-U,SESCO,annual,kg,01c655c7-3e48-358a-8aff-be40a13d0714 +2019,Chubut,II.1.1,4.80396,TJ,N2O,3.9,kg/TJ,18.735444,Gas Oil combustion consumption by freight transport,AR-U,SESCO,annual,kg,01c655c7-3e48-358a-8aff-be40a13d0714 +2019,Corrientes,II.1.1,26.186999999999998,TJ,CO2,74100.0,kg/TJ,1940456.6999999997,Gas Oil combustion consumption by freight transport,AR-W,SESCO,annual,kg,3edc3c5d-5a0a-36aa-b923-25c0b42eda55 +2019,Corrientes,II.1.1,26.186999999999998,TJ,CH4,3.9,kg/TJ,102.12929999999999,Gas Oil combustion consumption by freight transport,AR-W,SESCO,annual,kg,5c02f41e-ec04-3ecb-bd85-3260a1754c77 +2019,Corrientes,II.1.1,26.186999999999998,TJ,N2O,3.9,kg/TJ,102.12929999999999,Gas Oil combustion consumption by freight transport,AR-W,SESCO,annual,kg,5c02f41e-ec04-3ecb-bd85-3260a1754c77 +2019,Córdoba,II.1.1,69.92832,TJ,CO2,74100.0,kg/TJ,5181688.512,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,d8c3f13b-372b-3f31-b7b8-9d3256df80d1 +2019,Córdoba,II.1.1,69.92832,TJ,CH4,3.9,kg/TJ,272.720448,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,873fd6dc-15bc-39e7-a6a5-9074d29e6583 +2019,Córdoba,II.1.1,69.92832,TJ,N2O,3.9,kg/TJ,272.720448,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,873fd6dc-15bc-39e7-a6a5-9074d29e6583 +2019,Entre Rios,II.1.1,69.74772,TJ,CO2,74100.0,kg/TJ,5168306.052,Gas Oil combustion consumption by freight transport,AR-E,SESCO,annual,kg,ed87a591-51da-3248-a4b5-dfe18ba19847 +2019,Entre Rios,II.1.1,69.74772,TJ,CH4,3.9,kg/TJ,272.016108,Gas Oil combustion consumption by freight transport,AR-E,SESCO,annual,kg,53dd9466-1562-30a0-ab64-115cf8950dd7 +2019,Entre Rios,II.1.1,69.74772,TJ,N2O,3.9,kg/TJ,272.016108,Gas Oil combustion consumption by freight transport,AR-E,SESCO,annual,kg,53dd9466-1562-30a0-ab64-115cf8950dd7 +2019,Formosa,II.1.1,2.9257199999999997,TJ,CO2,74100.0,kg/TJ,216795.85199999998,Gas Oil combustion consumption by freight transport,AR-P,SESCO,annual,kg,ac416816-7feb-3829-8007-9996b051adce +2019,Formosa,II.1.1,2.9257199999999997,TJ,CH4,3.9,kg/TJ,11.410307999999999,Gas Oil combustion consumption by freight transport,AR-P,SESCO,annual,kg,402ee0b7-9888-389f-8571-4aff764ba2d3 +2019,Formosa,II.1.1,2.9257199999999997,TJ,N2O,3.9,kg/TJ,11.410307999999999,Gas Oil combustion consumption by freight transport,AR-P,SESCO,annual,kg,402ee0b7-9888-389f-8571-4aff764ba2d3 +2019,Jujuy,II.1.1,2.3478,TJ,CO2,74100.0,kg/TJ,173971.97999999998,Gas Oil combustion consumption by freight transport,AR-Y,SESCO,annual,kg,5e34b00e-a1c3-35c1-9df5-d8da0e3cc225 +2019,Jujuy,II.1.1,2.3478,TJ,CH4,3.9,kg/TJ,9.156419999999999,Gas Oil combustion consumption by freight transport,AR-Y,SESCO,annual,kg,eea20926-54fb-38d0-8702-3f6db1243868 +2019,Jujuy,II.1.1,2.3478,TJ,N2O,3.9,kg/TJ,9.156419999999999,Gas Oil combustion consumption by freight transport,AR-Y,SESCO,annual,kg,eea20926-54fb-38d0-8702-3f6db1243868 +2019,La Pampa,II.1.1,8.6688,TJ,CO2,74100.0,kg/TJ,642358.08,Gas Oil combustion consumption by freight transport,AR-L,SESCO,annual,kg,258c1bed-1fb7-334c-bab2-64a8be3d4bc5 +2019,La Pampa,II.1.1,8.6688,TJ,CH4,3.9,kg/TJ,33.808319999999995,Gas Oil combustion consumption by freight transport,AR-L,SESCO,annual,kg,1df12611-46cc-375a-82c9-e6d3e50ded24 +2019,La Pampa,II.1.1,8.6688,TJ,N2O,3.9,kg/TJ,33.808319999999995,Gas Oil combustion consumption by freight transport,AR-L,SESCO,annual,kg,1df12611-46cc-375a-82c9-e6d3e50ded24 +2019,La Rioja,II.1.1,1.19196,TJ,CO2,74100.0,kg/TJ,88324.23599999999,Gas Oil combustion consumption by freight transport,AR-F,SESCO,annual,kg,cb8fdcc9-028f-3d7c-b9b4-b962a6709e87 +2019,La Rioja,II.1.1,1.19196,TJ,CH4,3.9,kg/TJ,4.648643999999999,Gas Oil combustion consumption by freight transport,AR-F,SESCO,annual,kg,5b7df55e-0f3d-3e29-9b96-627bb0cd7b45 +2019,La Rioja,II.1.1,1.19196,TJ,N2O,3.9,kg/TJ,4.648643999999999,Gas Oil combustion consumption by freight transport,AR-F,SESCO,annual,kg,5b7df55e-0f3d-3e29-9b96-627bb0cd7b45 +2019,Mendoza,II.1.1,39.80424,TJ,CO2,74100.0,kg/TJ,2949494.184,Gas Oil combustion consumption by freight transport,AR-M,SESCO,annual,kg,a5e34493-1e62-393e-a0fb-8fdebb72509f +2019,Mendoza,II.1.1,39.80424,TJ,CH4,3.9,kg/TJ,155.236536,Gas Oil combustion consumption by freight transport,AR-M,SESCO,annual,kg,1b43f89d-0354-32b0-b20a-a26ed380aaaa +2019,Mendoza,II.1.1,39.80424,TJ,N2O,3.9,kg/TJ,155.236536,Gas Oil combustion consumption by freight transport,AR-M,SESCO,annual,kg,1b43f89d-0354-32b0-b20a-a26ed380aaaa +2019,Misiones,II.1.1,19.5048,TJ,CO2,74100.0,kg/TJ,1445305.68,Gas Oil combustion consumption by freight transport,AR-N,SESCO,annual,kg,dc007151-9e6e-3dbd-9aa3-1215ebdf825d +2019,Misiones,II.1.1,19.5048,TJ,CH4,3.9,kg/TJ,76.06872,Gas Oil combustion consumption by freight transport,AR-N,SESCO,annual,kg,cc568511-ccf7-3b31-b752-57e85d97d36c +2019,Misiones,II.1.1,19.5048,TJ,N2O,3.9,kg/TJ,76.06872,Gas Oil combustion consumption by freight transport,AR-N,SESCO,annual,kg,cc568511-ccf7-3b31-b752-57e85d97d36c +2019,Neuquén,II.1.1,0.36119999999999997,TJ,CO2,74100.0,kg/TJ,26764.92,Gas Oil combustion consumption by freight transport,AR-Q,SESCO,annual,kg,9418e70f-9f08-304c-90d1-c5d8c3a3d1e3 +2019,Neuquén,II.1.1,0.36119999999999997,TJ,CH4,3.9,kg/TJ,1.40868,Gas Oil combustion consumption by freight transport,AR-Q,SESCO,annual,kg,5ecbd7ed-40e8-37d2-8ea0-479066b19388 +2019,Neuquén,II.1.1,0.36119999999999997,TJ,N2O,3.9,kg/TJ,1.40868,Gas Oil combustion consumption by freight transport,AR-Q,SESCO,annual,kg,5ecbd7ed-40e8-37d2-8ea0-479066b19388 +2019,Rio Negro,II.1.1,31.352159999999998,TJ,CO2,74100.0,kg/TJ,2323195.056,Gas Oil combustion consumption by freight transport,AR-R,SESCO,annual,kg,7f5080c7-5e29-32f6-97d7-f7b3a1f8668d +2019,Rio Negro,II.1.1,31.352159999999998,TJ,CH4,3.9,kg/TJ,122.27342399999999,Gas Oil combustion consumption by freight transport,AR-R,SESCO,annual,kg,b4b704c7-c42a-363e-92ed-bc94393825af +2019,Rio Negro,II.1.1,31.352159999999998,TJ,N2O,3.9,kg/TJ,122.27342399999999,Gas Oil combustion consumption by freight transport,AR-R,SESCO,annual,kg,b4b704c7-c42a-363e-92ed-bc94393825af +2019,Salta,II.1.1,1.51704,TJ,CO2,74100.0,kg/TJ,112412.66399999999,Gas Oil combustion consumption by freight transport,AR-A,SESCO,annual,kg,96b3d739-824b-3005-8909-7dfa629b5aca +2019,Salta,II.1.1,1.51704,TJ,CH4,3.9,kg/TJ,5.916455999999999,Gas Oil combustion consumption by freight transport,AR-A,SESCO,annual,kg,2933e7af-cb5d-3206-bb56-c9b4f37a6a5b +2019,Salta,II.1.1,1.51704,TJ,N2O,3.9,kg/TJ,5.916455999999999,Gas Oil combustion consumption by freight transport,AR-A,SESCO,annual,kg,2933e7af-cb5d-3206-bb56-c9b4f37a6a5b +2019,San Juan,II.1.1,1.8059999999999998,TJ,CO2,74100.0,kg/TJ,133824.59999999998,Gas Oil combustion consumption by freight transport,AR-J,SESCO,annual,kg,b6807079-d607-337b-99c0-ad67cd28b32f +2019,San Juan,II.1.1,1.8059999999999998,TJ,CH4,3.9,kg/TJ,7.043399999999999,Gas Oil combustion consumption by freight transport,AR-J,SESCO,annual,kg,17e341de-8dbd-3f0e-b98e-a4fd408c019c +2019,San Juan,II.1.1,1.8059999999999998,TJ,N2O,3.9,kg/TJ,7.043399999999999,Gas Oil combustion consumption by freight transport,AR-J,SESCO,annual,kg,17e341de-8dbd-3f0e-b98e-a4fd408c019c +2019,San Luis,II.1.1,16.21788,TJ,CO2,74100.0,kg/TJ,1201744.908,Gas Oil combustion consumption by freight transport,AR-D,SESCO,annual,kg,4f111da6-a478-37ca-907f-9b019e8f932a +2019,San Luis,II.1.1,16.21788,TJ,CH4,3.9,kg/TJ,63.249732,Gas Oil combustion consumption by freight transport,AR-D,SESCO,annual,kg,b153934f-b54a-399a-80e2-60adb64c8006 +2019,San Luis,II.1.1,16.21788,TJ,N2O,3.9,kg/TJ,63.249732,Gas Oil combustion consumption by freight transport,AR-D,SESCO,annual,kg,b153934f-b54a-399a-80e2-60adb64c8006 +2019,Santa Fe,II.1.1,148.41708,TJ,CO2,74100.0,kg/TJ,10997705.628,Gas Oil combustion consumption by freight transport,AR-S,SESCO,annual,kg,65cf3685-a72b-3c22-97ce-1cf5e6d9c4c4 +2019,Santa Fe,II.1.1,148.41708,TJ,CH4,3.9,kg/TJ,578.826612,Gas Oil combustion consumption by freight transport,AR-S,SESCO,annual,kg,a53d8149-b0d9-3fa0-86b9-e0f620e8b05c +2019,Santa Fe,II.1.1,148.41708,TJ,N2O,3.9,kg/TJ,578.826612,Gas Oil combustion consumption by freight transport,AR-S,SESCO,annual,kg,a53d8149-b0d9-3fa0-86b9-e0f620e8b05c +2019,Santiago del Estero,II.1.1,20.9496,TJ,CO2,74100.0,kg/TJ,1552365.36,Gas Oil combustion consumption by freight transport,AR-G,SESCO,annual,kg,4cc544bb-fa28-38ef-887f-2e1b253a9b9f +2019,Santiago del Estero,II.1.1,20.9496,TJ,CH4,3.9,kg/TJ,81.70344,Gas Oil combustion consumption by freight transport,AR-G,SESCO,annual,kg,e792b28b-d6fc-3278-af91-890c858d88c0 +2019,Santiago del Estero,II.1.1,20.9496,TJ,N2O,3.9,kg/TJ,81.70344,Gas Oil combustion consumption by freight transport,AR-G,SESCO,annual,kg,e792b28b-d6fc-3278-af91-890c858d88c0 +2019,Tierra del Fuego,II.1.1,1.4447999999999999,TJ,CO2,74100.0,kg/TJ,107059.68,Gas Oil combustion consumption by freight transport,AR-V,SESCO,annual,kg,7ff9a212-f683-3bce-a94d-c32ac9541f9a +2019,Tierra del Fuego,II.1.1,1.4447999999999999,TJ,CH4,3.9,kg/TJ,5.63472,Gas Oil combustion consumption by freight transport,AR-V,SESCO,annual,kg,2f3dc52f-b104-3e89-9363-d1a6dccf06d7 +2019,Tierra del Fuego,II.1.1,1.4447999999999999,TJ,N2O,3.9,kg/TJ,5.63472,Gas Oil combustion consumption by freight transport,AR-V,SESCO,annual,kg,2f3dc52f-b104-3e89-9363-d1a6dccf06d7 +2019,Tucuman,II.1.1,11.48616,TJ,CO2,74100.0,kg/TJ,851124.456,Gas Oil combustion consumption by freight transport,AR-T,SESCO,annual,kg,5002a691-d2c7-3fe5-84b6-41d710e8f6b1 +2019,Tucuman,II.1.1,11.48616,TJ,CH4,3.9,kg/TJ,44.796023999999996,Gas Oil combustion consumption by freight transport,AR-T,SESCO,annual,kg,d4a75ff4-d78b-3c43-a1e8-69342031d994 +2019,Tucuman,II.1.1,11.48616,TJ,N2O,3.9,kg/TJ,44.796023999999996,Gas Oil combustion consumption by freight transport,AR-T,SESCO,annual,kg,d4a75ff4-d78b-3c43-a1e8-69342031d994 +2019,Buenos Aires,II.1.1,45.186119999999995,TJ,CO2,74100.0,kg/TJ,3348291.4919999996,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,b8a6eae1-0b3f-3fdc-980b-9d28b62beee4 +2019,Buenos Aires,II.1.1,45.186119999999995,TJ,CH4,3.9,kg/TJ,176.225868,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,35a3c4a0-b9a7-3408-87df-2e8b93e714be +2019,Buenos Aires,II.1.1,45.186119999999995,TJ,N2O,3.9,kg/TJ,176.225868,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,35a3c4a0-b9a7-3408-87df-2e8b93e714be +2019,Capital Federal,II.1.1,3.93708,TJ,CO2,74100.0,kg/TJ,291737.62799999997,Gas Oil combustion consumption by freight transport,AR-C,SESCO,annual,kg,1756d6ec-c2f6-3fa6-95be-ed37d37d69e5 +2019,Capital Federal,II.1.1,3.93708,TJ,CH4,3.9,kg/TJ,15.354612,Gas Oil combustion consumption by freight transport,AR-C,SESCO,annual,kg,71f99725-8fef-36f2-94be-70ad3f8d8e80 +2019,Capital Federal,II.1.1,3.93708,TJ,N2O,3.9,kg/TJ,15.354612,Gas Oil combustion consumption by freight transport,AR-C,SESCO,annual,kg,71f99725-8fef-36f2-94be-70ad3f8d8e80 +2019,Catamarca,II.1.1,0.46956,TJ,CO2,74100.0,kg/TJ,34794.396,Gas Oil combustion consumption by freight transport,AR-K,SESCO,annual,kg,addbd6f5-eaee-3654-b113-8290a3d9ea35 +2019,Catamarca,II.1.1,0.46956,TJ,CH4,3.9,kg/TJ,1.831284,Gas Oil combustion consumption by freight transport,AR-K,SESCO,annual,kg,ad29b53f-5abf-3bda-bd72-72399974dca9 +2019,Catamarca,II.1.1,0.46956,TJ,N2O,3.9,kg/TJ,1.831284,Gas Oil combustion consumption by freight transport,AR-K,SESCO,annual,kg,ad29b53f-5abf-3bda-bd72-72399974dca9 +2019,Chaco,II.1.1,0.14448,TJ,CO2,74100.0,kg/TJ,10705.967999999999,Gas Oil combustion consumption by freight transport,AR-H,SESCO,annual,kg,6fb60979-cd2a-348e-ae15-06bf3e3eb073 +2019,Chaco,II.1.1,0.14448,TJ,CH4,3.9,kg/TJ,0.563472,Gas Oil combustion consumption by freight transport,AR-H,SESCO,annual,kg,78f7e4a6-3411-3de1-b33c-81712c29e582 +2019,Chaco,II.1.1,0.14448,TJ,N2O,3.9,kg/TJ,0.563472,Gas Oil combustion consumption by freight transport,AR-H,SESCO,annual,kg,78f7e4a6-3411-3de1-b33c-81712c29e582 +2019,Chubut,II.1.1,6.17652,TJ,CO2,74100.0,kg/TJ,457680.132,Gas Oil combustion consumption by freight transport,AR-U,SESCO,annual,kg,c3ffd12d-1717-3782-92f2-c882fcce71f4 +2019,Chubut,II.1.1,6.17652,TJ,CH4,3.9,kg/TJ,24.088428,Gas Oil combustion consumption by freight transport,AR-U,SESCO,annual,kg,88297c8e-fde3-35ec-87f8-4bc15fd569d6 +2019,Chubut,II.1.1,6.17652,TJ,N2O,3.9,kg/TJ,24.088428,Gas Oil combustion consumption by freight transport,AR-U,SESCO,annual,kg,88297c8e-fde3-35ec-87f8-4bc15fd569d6 +2019,Corrientes,II.1.1,3.93708,TJ,CO2,74100.0,kg/TJ,291737.62799999997,Gas Oil combustion consumption by freight transport,AR-W,SESCO,annual,kg,47868173-63aa-3273-93c8-cc74a60ea152 +2019,Corrientes,II.1.1,3.93708,TJ,CH4,3.9,kg/TJ,15.354612,Gas Oil combustion consumption by freight transport,AR-W,SESCO,annual,kg,64c3f5ac-53c6-3eea-a1d2-368e581122f8 +2019,Corrientes,II.1.1,3.93708,TJ,N2O,3.9,kg/TJ,15.354612,Gas Oil combustion consumption by freight transport,AR-W,SESCO,annual,kg,64c3f5ac-53c6-3eea-a1d2-368e581122f8 +2019,Córdoba,II.1.1,5.70696,TJ,CO2,74100.0,kg/TJ,422885.736,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,1d77179a-27af-3006-b9c7-d84dbdec44b9 +2019,Córdoba,II.1.1,5.70696,TJ,CH4,3.9,kg/TJ,22.257143999999997,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,d4e7f21c-fbe6-301d-a0c4-43f0724c12e9 +2019,Córdoba,II.1.1,5.70696,TJ,N2O,3.9,kg/TJ,22.257143999999997,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,d4e7f21c-fbe6-301d-a0c4-43f0724c12e9 +2019,Entre Rios,II.1.1,2.81736,TJ,CO2,74100.0,kg/TJ,208766.376,Gas Oil combustion consumption by freight transport,AR-E,SESCO,annual,kg,619eeda8-6546-3897-97be-4f0a7163c88a +2019,Entre Rios,II.1.1,2.81736,TJ,CH4,3.9,kg/TJ,10.987703999999999,Gas Oil combustion consumption by freight transport,AR-E,SESCO,annual,kg,85a279bf-d30e-3d7c-9507-36b1359642a2 +2019,Entre Rios,II.1.1,2.81736,TJ,N2O,3.9,kg/TJ,10.987703999999999,Gas Oil combustion consumption by freight transport,AR-E,SESCO,annual,kg,85a279bf-d30e-3d7c-9507-36b1359642a2 +2019,Formosa,II.1.1,0.10836,TJ,CO2,74100.0,kg/TJ,8029.476,Gas Oil combustion consumption by freight transport,AR-P,SESCO,annual,kg,c840ef39-5db3-3991-abbd-12d53405e71c +2019,Formosa,II.1.1,0.10836,TJ,CH4,3.9,kg/TJ,0.422604,Gas Oil combustion consumption by freight transport,AR-P,SESCO,annual,kg,4bda966b-5207-3f6e-945c-fa4e606d4620 +2019,Formosa,II.1.1,0.10836,TJ,N2O,3.9,kg/TJ,0.422604,Gas Oil combustion consumption by freight transport,AR-P,SESCO,annual,kg,4bda966b-5207-3f6e-945c-fa4e606d4620 +2019,Jujuy,II.1.1,0.10836,TJ,CO2,74100.0,kg/TJ,8029.476,Gas Oil combustion consumption by freight transport,AR-Y,SESCO,annual,kg,2f2bef49-8cda-3d75-b58f-b70bb7287f1c +2019,Jujuy,II.1.1,0.10836,TJ,CH4,3.9,kg/TJ,0.422604,Gas Oil combustion consumption by freight transport,AR-Y,SESCO,annual,kg,425adcec-7882-367e-94d7-8815ba9d4ba0 +2019,Jujuy,II.1.1,0.10836,TJ,N2O,3.9,kg/TJ,0.422604,Gas Oil combustion consumption by freight transport,AR-Y,SESCO,annual,kg,425adcec-7882-367e-94d7-8815ba9d4ba0 +2019,La Pampa,II.1.1,0.36119999999999997,TJ,CO2,74100.0,kg/TJ,26764.92,Gas Oil combustion consumption by freight transport,AR-L,SESCO,annual,kg,10a4baa1-2ae6-3186-8249-8b500656a911 +2019,La Pampa,II.1.1,0.36119999999999997,TJ,CH4,3.9,kg/TJ,1.40868,Gas Oil combustion consumption by freight transport,AR-L,SESCO,annual,kg,bb3aba1c-7027-31ff-bd2e-d4a17dfc2d85 +2019,La Pampa,II.1.1,0.36119999999999997,TJ,N2O,3.9,kg/TJ,1.40868,Gas Oil combustion consumption by freight transport,AR-L,SESCO,annual,kg,bb3aba1c-7027-31ff-bd2e-d4a17dfc2d85 +2019,La Rioja,II.1.1,0.18059999999999998,TJ,CO2,74100.0,kg/TJ,13382.46,Gas Oil combustion consumption by freight transport,AR-F,SESCO,annual,kg,71f35628-d461-3d92-908a-4f18ec5c0bb1 +2019,La Rioja,II.1.1,0.18059999999999998,TJ,CH4,3.9,kg/TJ,0.70434,Gas Oil combustion consumption by freight transport,AR-F,SESCO,annual,kg,248d028d-918f-37d1-8a2c-6a763ef79988 +2019,La Rioja,II.1.1,0.18059999999999998,TJ,N2O,3.9,kg/TJ,0.70434,Gas Oil combustion consumption by freight transport,AR-F,SESCO,annual,kg,248d028d-918f-37d1-8a2c-6a763ef79988 +2019,Mendoza,II.1.1,1.04748,TJ,CO2,74100.0,kg/TJ,77618.268,Gas Oil combustion consumption by freight transport,AR-M,SESCO,annual,kg,b31b5b82-032e-3106-8b5c-3c85d7eca157 +2019,Mendoza,II.1.1,1.04748,TJ,CH4,3.9,kg/TJ,4.085172,Gas Oil combustion consumption by freight transport,AR-M,SESCO,annual,kg,34da326f-d95f-3dc9-a0fc-4bebc78e0825 +2019,Mendoza,II.1.1,1.04748,TJ,N2O,3.9,kg/TJ,4.085172,Gas Oil combustion consumption by freight transport,AR-M,SESCO,annual,kg,34da326f-d95f-3dc9-a0fc-4bebc78e0825 +2019,Misiones,II.1.1,2.31168,TJ,CO2,74100.0,kg/TJ,171295.48799999998,Gas Oil combustion consumption by freight transport,AR-N,SESCO,annual,kg,d82142b9-bca7-3aa6-924f-e5165cc57818 +2019,Misiones,II.1.1,2.31168,TJ,CH4,3.9,kg/TJ,9.015552,Gas Oil combustion consumption by freight transport,AR-N,SESCO,annual,kg,e95e6794-bbd1-3530-9042-ddffa5469623 +2019,Misiones,II.1.1,2.31168,TJ,N2O,3.9,kg/TJ,9.015552,Gas Oil combustion consumption by freight transport,AR-N,SESCO,annual,kg,e95e6794-bbd1-3530-9042-ddffa5469623 +2019,Rio Negro,II.1.1,3.8648399999999996,TJ,CO2,74100.0,kg/TJ,286384.644,Gas Oil combustion consumption by freight transport,AR-R,SESCO,annual,kg,0bc3559b-e764-39d9-b2d1-ad3a49e99400 +2019,Rio Negro,II.1.1,3.8648399999999996,TJ,CH4,3.9,kg/TJ,15.072875999999997,Gas Oil combustion consumption by freight transport,AR-R,SESCO,annual,kg,15d3fcbd-47c8-3070-9571-56c78c870004 +2019,Rio Negro,II.1.1,3.8648399999999996,TJ,N2O,3.9,kg/TJ,15.072875999999997,Gas Oil combustion consumption by freight transport,AR-R,SESCO,annual,kg,15d3fcbd-47c8-3070-9571-56c78c870004 +2019,Salta,II.1.1,0.10836,TJ,CO2,74100.0,kg/TJ,8029.476,Gas Oil combustion consumption by freight transport,AR-A,SESCO,annual,kg,81d68113-d191-36d2-959d-8c44c6334729 +2019,Salta,II.1.1,0.10836,TJ,CH4,3.9,kg/TJ,0.422604,Gas Oil combustion consumption by freight transport,AR-A,SESCO,annual,kg,53f60864-b496-3d8b-93da-a1aa1518f340 +2019,Salta,II.1.1,0.10836,TJ,N2O,3.9,kg/TJ,0.422604,Gas Oil combustion consumption by freight transport,AR-A,SESCO,annual,kg,53f60864-b496-3d8b-93da-a1aa1518f340 +2019,San Juan,II.1.1,0.03612,TJ,CO2,74100.0,kg/TJ,2676.4919999999997,Gas Oil combustion consumption by freight transport,AR-J,SESCO,annual,kg,f1c36709-d37a-3179-ace9-0637f6c05a1f +2019,San Juan,II.1.1,0.03612,TJ,CH4,3.9,kg/TJ,0.140868,Gas Oil combustion consumption by freight transport,AR-J,SESCO,annual,kg,5e76d161-edcd-3406-a470-b0dd11894374 +2019,San Juan,II.1.1,0.03612,TJ,N2O,3.9,kg/TJ,0.140868,Gas Oil combustion consumption by freight transport,AR-J,SESCO,annual,kg,5e76d161-edcd-3406-a470-b0dd11894374 +2019,San Luis,II.1.1,1.95048,TJ,CO2,74100.0,kg/TJ,144530.568,Gas Oil combustion consumption by freight transport,AR-D,SESCO,annual,kg,47c71ad6-d02b-30ff-9eaf-130fb711b834 +2019,San Luis,II.1.1,1.95048,TJ,CH4,3.9,kg/TJ,7.606872,Gas Oil combustion consumption by freight transport,AR-D,SESCO,annual,kg,40f15b42-fe93-3916-bc7e-4e44bcbda89d +2019,San Luis,II.1.1,1.95048,TJ,N2O,3.9,kg/TJ,7.606872,Gas Oil combustion consumption by freight transport,AR-D,SESCO,annual,kg,40f15b42-fe93-3916-bc7e-4e44bcbda89d +2019,Santa Fe,II.1.1,12.17244,TJ,CO2,74100.0,kg/TJ,901977.804,Gas Oil combustion consumption by freight transport,AR-S,SESCO,annual,kg,dc9594a5-526e-38da-bdb6-bb4c60f83c41 +2019,Santa Fe,II.1.1,12.17244,TJ,CH4,3.9,kg/TJ,47.472516,Gas Oil combustion consumption by freight transport,AR-S,SESCO,annual,kg,2d54d9e4-1136-3df1-829a-2a68a8f96472 +2019,Santa Fe,II.1.1,12.17244,TJ,N2O,3.9,kg/TJ,47.472516,Gas Oil combustion consumption by freight transport,AR-S,SESCO,annual,kg,2d54d9e4-1136-3df1-829a-2a68a8f96472 +2019,Santiago del Estero,II.1.1,2.99796,TJ,CO2,74100.0,kg/TJ,222148.836,Gas Oil combustion consumption by freight transport,AR-G,SESCO,annual,kg,3296a585-761b-3ec3-81db-fcb718acba68 +2019,Santiago del Estero,II.1.1,2.99796,TJ,CH4,3.9,kg/TJ,11.692044,Gas Oil combustion consumption by freight transport,AR-G,SESCO,annual,kg,9023e776-b97f-391e-84be-c102e36558fa +2019,Santiago del Estero,II.1.1,2.99796,TJ,N2O,3.9,kg/TJ,11.692044,Gas Oil combustion consumption by freight transport,AR-G,SESCO,annual,kg,9023e776-b97f-391e-84be-c102e36558fa +2019,Tierra del Fuego,II.1.1,0.18059999999999998,TJ,CO2,74100.0,kg/TJ,13382.46,Gas Oil combustion consumption by freight transport,AR-V,SESCO,annual,kg,ddce9e07-bd60-3e3b-bc29-ceb67f95b8ab +2019,Tierra del Fuego,II.1.1,0.18059999999999998,TJ,CH4,3.9,kg/TJ,0.70434,Gas Oil combustion consumption by freight transport,AR-V,SESCO,annual,kg,7c744107-015a-3ba4-ad46-e0d215c085a3 +2019,Tierra del Fuego,II.1.1,0.18059999999999998,TJ,N2O,3.9,kg/TJ,0.70434,Gas Oil combustion consumption by freight transport,AR-V,SESCO,annual,kg,7c744107-015a-3ba4-ad46-e0d215c085a3 +2019,Tucuman,II.1.1,1.9143599999999998,TJ,CO2,74100.0,kg/TJ,141854.076,Gas Oil combustion consumption by freight transport,AR-T,SESCO,annual,kg,d7e99494-d5cf-3c7d-a8a2-d8df26c05292 +2019,Tucuman,II.1.1,1.9143599999999998,TJ,CH4,3.9,kg/TJ,7.466003999999999,Gas Oil combustion consumption by freight transport,AR-T,SESCO,annual,kg,e6a77a5f-e933-3f9f-9172-48e496ffa776 +2019,Tucuman,II.1.1,1.9143599999999998,TJ,N2O,3.9,kg/TJ,7.466003999999999,Gas Oil combustion consumption by freight transport,AR-T,SESCO,annual,kg,e6a77a5f-e933-3f9f-9172-48e496ffa776 +2019,Buenos Aires,II.1.1,3.22091,TJ,CO2,73300.0,kg/TJ,236092.703,Naphtha combustion consumption by freight transport,AR-B,SESCO,annual,kg,3453b6ad-8ef0-369c-ac06-a9278619649e +2019,Buenos Aires,II.1.1,3.22091,TJ,CH4,0.5,kg/TJ,1.610455,Naphtha combustion consumption by freight transport,AR-B,SESCO,annual,kg,23d524e6-daec-3cc8-bb0b-c96372e736bc +2019,Buenos Aires,II.1.1,3.22091,TJ,N2O,2.0,kg/TJ,6.44182,Naphtha combustion consumption by freight transport,AR-B,SESCO,annual,kg,8589a248-d51a-3366-a265-9599ba0bda0f +2019,Capital Federal,II.1.1,1.541925,TJ,CO2,73300.0,kg/TJ,113023.1025,Naphtha combustion consumption by freight transport,AR-C,SESCO,annual,kg,6dd071af-6e89-30f9-bcbc-e16f4a311841 +2019,Capital Federal,II.1.1,1.541925,TJ,CH4,0.5,kg/TJ,0.7709625,Naphtha combustion consumption by freight transport,AR-C,SESCO,annual,kg,d2565cd2-27c7-3129-b265-5f508f3825e7 +2019,Capital Federal,II.1.1,1.541925,TJ,N2O,2.0,kg/TJ,3.08385,Naphtha combustion consumption by freight transport,AR-C,SESCO,annual,kg,e7c1e1ee-0886-3ba4-96ea-0f32b08e2791 +2019,Córdoba,II.1.1,0.856625,TJ,CO2,73300.0,kg/TJ,62790.612499999996,Naphtha combustion consumption by freight transport,AR-X,SESCO,annual,kg,828a2563-8959-3e09-ba1d-948afb517c21 +2019,Córdoba,II.1.1,0.856625,TJ,CH4,0.5,kg/TJ,0.4283125,Naphtha combustion consumption by freight transport,AR-X,SESCO,annual,kg,d4c22f1c-cbf7-37f5-ba2e-881564487fd6 +2019,Córdoba,II.1.1,0.856625,TJ,N2O,2.0,kg/TJ,1.71325,Naphtha combustion consumption by freight transport,AR-X,SESCO,annual,kg,6210c9ff-c5bb-36fa-9456-4a9ea6cb0bbe +2019,Mendoza,II.1.1,0.06853,TJ,CO2,73300.0,kg/TJ,5023.249,Naphtha combustion consumption by freight transport,AR-M,SESCO,annual,kg,41e22b36-d0d0-3336-94c4-4a2dbd2a656c +2019,Mendoza,II.1.1,0.06853,TJ,CH4,0.5,kg/TJ,0.034265,Naphtha combustion consumption by freight transport,AR-M,SESCO,annual,kg,1e2548ac-e083-3f70-aa7b-95a87a2b68b3 +2019,Mendoza,II.1.1,0.06853,TJ,N2O,2.0,kg/TJ,0.13706,Naphtha combustion consumption by freight transport,AR-M,SESCO,annual,kg,2358b914-a40a-3a25-9105-14c6c3ea7a61 +2019,Salta,II.1.1,0.102795,TJ,CO2,73300.0,kg/TJ,7534.8735,Naphtha combustion consumption by freight transport,AR-A,SESCO,annual,kg,5c9c75f2-9cf6-3974-880f-8a135f17a5f4 +2019,Salta,II.1.1,0.102795,TJ,CH4,0.5,kg/TJ,0.0513975,Naphtha combustion consumption by freight transport,AR-A,SESCO,annual,kg,2d9e6063-a4aa-313d-a0ce-4c60ada87d4c +2019,Salta,II.1.1,0.102795,TJ,N2O,2.0,kg/TJ,0.20559,Naphtha combustion consumption by freight transport,AR-A,SESCO,annual,kg,44830451-0316-3d40-8c28-2b81f6b08126 +2019,Santa Fe,II.1.1,0.47970999999999997,TJ,CO2,73300.0,kg/TJ,35162.742999999995,Naphtha combustion consumption by freight transport,AR-S,SESCO,annual,kg,56b2d73f-9074-3017-ba7b-5904a1ddd841 +2019,Santa Fe,II.1.1,0.47970999999999997,TJ,CH4,0.5,kg/TJ,0.23985499999999998,Naphtha combustion consumption by freight transport,AR-S,SESCO,annual,kg,968ada00-8ee8-3b20-8916-b4ae557b6fd5 +2019,Santa Fe,II.1.1,0.47970999999999997,TJ,N2O,2.0,kg/TJ,0.9594199999999999,Naphtha combustion consumption by freight transport,AR-S,SESCO,annual,kg,b47632ce-8fd0-33a7-b46c-a690a9e1b428 +2019,Tucuman,II.1.1,0.034265,TJ,CO2,73300.0,kg/TJ,2511.6245,Naphtha combustion consumption by freight transport,AR-T,SESCO,annual,kg,aa47e9c5-aeb6-3713-8128-f4567e46f713 +2019,Tucuman,II.1.1,0.034265,TJ,CH4,0.5,kg/TJ,0.0171325,Naphtha combustion consumption by freight transport,AR-T,SESCO,annual,kg,952cf90c-cbf6-3b7c-a7b9-59c13a021d76 +2019,Tucuman,II.1.1,0.034265,TJ,N2O,2.0,kg/TJ,0.06853,Naphtha combustion consumption by freight transport,AR-T,SESCO,annual,kg,61773a73-9114-3659-8744-d1c7631ea328 +2019,Buenos Aires,II.1.1,1.9531049999999999,TJ,CO2,73300.0,kg/TJ,143162.59649999999,Naphtha combustion consumption by freight transport,AR-B,SESCO,annual,kg,50808206-0d49-322e-a2e5-cb0bb770f0a0 +2019,Buenos Aires,II.1.1,1.9531049999999999,TJ,CH4,0.5,kg/TJ,0.9765524999999999,Naphtha combustion consumption by freight transport,AR-B,SESCO,annual,kg,ba899226-b4d7-3895-a388-54a631b191d5 +2019,Buenos Aires,II.1.1,1.9531049999999999,TJ,N2O,2.0,kg/TJ,3.9062099999999997,Naphtha combustion consumption by freight transport,AR-B,SESCO,annual,kg,3dcf4c74-b17d-3ea3-a286-7b21b5f1f4fa +2019,Capital Federal,II.1.1,0.856625,TJ,CO2,73300.0,kg/TJ,62790.612499999996,Naphtha combustion consumption by freight transport,AR-C,SESCO,annual,kg,1c99cd85-9551-393e-bfaf-b077025924d5 +2019,Capital Federal,II.1.1,0.856625,TJ,CH4,0.5,kg/TJ,0.4283125,Naphtha combustion consumption by freight transport,AR-C,SESCO,annual,kg,b85340b2-8130-3b92-8a31-62de662507fa +2019,Capital Federal,II.1.1,0.856625,TJ,N2O,2.0,kg/TJ,1.71325,Naphtha combustion consumption by freight transport,AR-C,SESCO,annual,kg,ba44139a-20bc-3621-825a-3f0cb1b77662 +2019,Corrientes,II.1.1,0.102795,TJ,CO2,73300.0,kg/TJ,7534.8735,Naphtha combustion consumption by freight transport,AR-W,SESCO,annual,kg,1d9e9d72-a9f1-33f1-8a47-d105e4531642 +2019,Corrientes,II.1.1,0.102795,TJ,CH4,0.5,kg/TJ,0.0513975,Naphtha combustion consumption by freight transport,AR-W,SESCO,annual,kg,e007ecbe-9759-3fd2-9cd9-5dd1b4429ae5 +2019,Corrientes,II.1.1,0.102795,TJ,N2O,2.0,kg/TJ,0.20559,Naphtha combustion consumption by freight transport,AR-W,SESCO,annual,kg,ba821611-3de7-36ba-96dc-80f764033ffc +2019,Córdoba,II.1.1,0.54824,TJ,CO2,73300.0,kg/TJ,40185.992,Naphtha combustion consumption by freight transport,AR-X,SESCO,annual,kg,737a82bc-e1f5-3632-923a-17e68eae955a +2019,Córdoba,II.1.1,0.54824,TJ,CH4,0.5,kg/TJ,0.27412,Naphtha combustion consumption by freight transport,AR-X,SESCO,annual,kg,7e6218bb-cc26-3e20-845d-b3f69f0b1aa4 +2019,Córdoba,II.1.1,0.54824,TJ,N2O,2.0,kg/TJ,1.09648,Naphtha combustion consumption by freight transport,AR-X,SESCO,annual,kg,3ae9115a-4b5e-35cc-b5a7-2d9561ee755d +2019,Entre Rios,II.1.1,0.13706,TJ,CO2,73300.0,kg/TJ,10046.498,Naphtha combustion consumption by freight transport,AR-E,SESCO,annual,kg,07696b8b-8b98-3bf0-a113-4f5a15324e13 +2019,Entre Rios,II.1.1,0.13706,TJ,CH4,0.5,kg/TJ,0.06853,Naphtha combustion consumption by freight transport,AR-E,SESCO,annual,kg,1dc0ab39-cd89-38e1-84d2-deaf7ec9461c +2019,Entre Rios,II.1.1,0.13706,TJ,N2O,2.0,kg/TJ,0.27412,Naphtha combustion consumption by freight transport,AR-E,SESCO,annual,kg,41e57c32-5543-3049-847a-9ee183c0e391 +2019,Santa Fe,II.1.1,0.513975,TJ,CO2,73300.0,kg/TJ,37674.3675,Naphtha combustion consumption by freight transport,AR-S,SESCO,annual,kg,ae571cb5-b342-3439-81b6-36fb5306e68b +2019,Santa Fe,II.1.1,0.513975,TJ,CH4,0.5,kg/TJ,0.2569875,Naphtha combustion consumption by freight transport,AR-S,SESCO,annual,kg,861e1036-0220-38f2-839d-f217852c3c15 +2019,Santa Fe,II.1.1,0.513975,TJ,N2O,2.0,kg/TJ,1.02795,Naphtha combustion consumption by freight transport,AR-S,SESCO,annual,kg,eddcb05e-35c8-3912-b392-7931e21cf9f6 +2019,Santiago del Estero,II.1.1,0.034265,TJ,CO2,73300.0,kg/TJ,2511.6245,Naphtha combustion consumption by freight transport,AR-G,SESCO,annual,kg,d14513d4-d09c-3859-beae-1ea19a611e3d +2019,Santiago del Estero,II.1.1,0.034265,TJ,CH4,0.5,kg/TJ,0.0171325,Naphtha combustion consumption by freight transport,AR-G,SESCO,annual,kg,a6393a37-1179-37f4-bc8f-75e9744032b8 +2019,Santiago del Estero,II.1.1,0.034265,TJ,N2O,2.0,kg/TJ,0.06853,Naphtha combustion consumption by freight transport,AR-G,SESCO,annual,kg,04bf7b7d-e407-3121-b429-d4ca02c2ed60 +2019,Buenos Aires,II.1.1,556.7175599999999,TJ,CO2,74100.0,kg/TJ,41252771.195999995,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,a113c7cf-216e-3ebb-bed4-3a67af851575 +2019,Buenos Aires,II.1.1,556.7175599999999,TJ,CH4,3.9,kg/TJ,2171.1984839999996,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,8a713286-bf18-3b93-9982-dbb596905f3c +2019,Buenos Aires,II.1.1,556.7175599999999,TJ,N2O,3.9,kg/TJ,2171.1984839999996,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,8a713286-bf18-3b93-9982-dbb596905f3c +2019,Capital Federal,II.1.1,312.438,TJ,CO2,74100.0,kg/TJ,23151655.8,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,cc3baa2c-7b2a-3ff8-a029-8d2bb77e0b30 +2019,Capital Federal,II.1.1,312.438,TJ,CH4,3.9,kg/TJ,1218.5082,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,1b747833-8a0b-3bc1-9bc5-c9e037cca7e0 +2019,Capital Federal,II.1.1,312.438,TJ,N2O,3.9,kg/TJ,1218.5082,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,1b747833-8a0b-3bc1-9bc5-c9e037cca7e0 +2019,Chaco,II.1.1,5.38188,TJ,CO2,74100.0,kg/TJ,398797.30799999996,Gas Oil combustion consumption by public passenger transport,AR-H,SESCO,annual,kg,d8de63ec-e525-3cb5-a057-37eb8a8a9f52 +2019,Chaco,II.1.1,5.38188,TJ,CH4,3.9,kg/TJ,20.989331999999997,Gas Oil combustion consumption by public passenger transport,AR-H,SESCO,annual,kg,422017bb-b8ee-3317-8dc2-0408da8fa9bf +2019,Chaco,II.1.1,5.38188,TJ,N2O,3.9,kg/TJ,20.989331999999997,Gas Oil combustion consumption by public passenger transport,AR-H,SESCO,annual,kg,422017bb-b8ee-3317-8dc2-0408da8fa9bf +2019,Chubut,II.1.1,1.73376,TJ,CO2,74100.0,kg/TJ,128471.616,Gas Oil combustion consumption by public passenger transport,AR-U,SESCO,annual,kg,cce28f0b-fa95-32c0-951a-aaaebe09d055 +2019,Chubut,II.1.1,1.73376,TJ,CH4,3.9,kg/TJ,6.761664,Gas Oil combustion consumption by public passenger transport,AR-U,SESCO,annual,kg,47170c8c-e0cf-3924-8e01-d383bdfee478 +2019,Chubut,II.1.1,1.73376,TJ,N2O,3.9,kg/TJ,6.761664,Gas Oil combustion consumption by public passenger transport,AR-U,SESCO,annual,kg,47170c8c-e0cf-3924-8e01-d383bdfee478 +2019,Corrientes,II.1.1,0.03612,TJ,CO2,74100.0,kg/TJ,2676.4919999999997,Gas Oil combustion consumption by public passenger transport,AR-W,SESCO,annual,kg,c5e118e1-115a-3af4-b7e8-aeef6af1e466 +2019,Corrientes,II.1.1,0.03612,TJ,CH4,3.9,kg/TJ,0.140868,Gas Oil combustion consumption by public passenger transport,AR-W,SESCO,annual,kg,fe070851-74ff-31b5-8b70-6122da117dd5 +2019,Corrientes,II.1.1,0.03612,TJ,N2O,3.9,kg/TJ,0.140868,Gas Oil combustion consumption by public passenger transport,AR-W,SESCO,annual,kg,fe070851-74ff-31b5-8b70-6122da117dd5 +2019,Córdoba,II.1.1,113.12783999999999,TJ,CO2,74100.0,kg/TJ,8382772.943999999,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,381ff276-b308-3593-8d29-b80bf408bff7 +2019,Córdoba,II.1.1,113.12783999999999,TJ,CH4,3.9,kg/TJ,441.19857599999995,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,90a4341d-f36e-39df-b8fe-c51a984feb89 +2019,Córdoba,II.1.1,113.12783999999999,TJ,N2O,3.9,kg/TJ,441.19857599999995,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,90a4341d-f36e-39df-b8fe-c51a984feb89 +2019,Entre Rios,II.1.1,2.38392,TJ,CO2,74100.0,kg/TJ,176648.47199999998,Gas Oil combustion consumption by public passenger transport,AR-E,SESCO,annual,kg,8b984235-40e1-3fdc-9791-024fcf713754 +2019,Entre Rios,II.1.1,2.38392,TJ,CH4,3.9,kg/TJ,9.297287999999998,Gas Oil combustion consumption by public passenger transport,AR-E,SESCO,annual,kg,11d5e27e-6d47-36a9-9d7a-dcd73fd69846 +2019,Entre Rios,II.1.1,2.38392,TJ,N2O,3.9,kg/TJ,9.297287999999998,Gas Oil combustion consumption by public passenger transport,AR-E,SESCO,annual,kg,11d5e27e-6d47-36a9-9d7a-dcd73fd69846 +2019,Formosa,II.1.1,10.14972,TJ,CO2,74100.0,kg/TJ,752094.252,Gas Oil combustion consumption by public passenger transport,AR-P,SESCO,annual,kg,dd5ae63e-ecb1-318c-a7e3-0d4656cdae44 +2019,Formosa,II.1.1,10.14972,TJ,CH4,3.9,kg/TJ,39.583908,Gas Oil combustion consumption by public passenger transport,AR-P,SESCO,annual,kg,2f5578c5-aef3-3b9c-8b25-1594e15d3e67 +2019,Formosa,II.1.1,10.14972,TJ,N2O,3.9,kg/TJ,39.583908,Gas Oil combustion consumption by public passenger transport,AR-P,SESCO,annual,kg,2f5578c5-aef3-3b9c-8b25-1594e15d3e67 +2019,La Pampa,II.1.1,2.96184,TJ,CO2,74100.0,kg/TJ,219472.344,Gas Oil combustion consumption by public passenger transport,AR-L,SESCO,annual,kg,387b3ce5-66fa-311e-aaeb-27732bca7325 +2019,La Pampa,II.1.1,2.96184,TJ,CH4,3.9,kg/TJ,11.551176,Gas Oil combustion consumption by public passenger transport,AR-L,SESCO,annual,kg,eb450481-2acf-3400-bf8a-6f005fdf170c +2019,La Pampa,II.1.1,2.96184,TJ,N2O,3.9,kg/TJ,11.551176,Gas Oil combustion consumption by public passenger transport,AR-L,SESCO,annual,kg,eb450481-2acf-3400-bf8a-6f005fdf170c +2019,Misiones,II.1.1,81.34223999999999,TJ,CO2,74100.0,kg/TJ,6027459.983999999,Gas Oil combustion consumption by public passenger transport,AR-N,SESCO,annual,kg,aea61f90-f9f7-3d24-b18a-f9f9a5847084 +2019,Misiones,II.1.1,81.34223999999999,TJ,CH4,3.9,kg/TJ,317.23473599999994,Gas Oil combustion consumption by public passenger transport,AR-N,SESCO,annual,kg,4c81aaf8-f419-3ddf-a569-e7efde6cead3 +2019,Misiones,II.1.1,81.34223999999999,TJ,N2O,3.9,kg/TJ,317.23473599999994,Gas Oil combustion consumption by public passenger transport,AR-N,SESCO,annual,kg,4c81aaf8-f419-3ddf-a569-e7efde6cead3 +2019,Neuquén,II.1.1,1.9866,TJ,CO2,74100.0,kg/TJ,147207.06,Gas Oil combustion consumption by public passenger transport,AR-Q,SESCO,annual,kg,23b48000-cd0a-30e1-bc7d-791264845570 +2019,Neuquén,II.1.1,1.9866,TJ,CH4,3.9,kg/TJ,7.747739999999999,Gas Oil combustion consumption by public passenger transport,AR-Q,SESCO,annual,kg,606b00d2-942d-3bc3-b498-139051d08b85 +2019,Neuquén,II.1.1,1.9866,TJ,N2O,3.9,kg/TJ,7.747739999999999,Gas Oil combustion consumption by public passenger transport,AR-Q,SESCO,annual,kg,606b00d2-942d-3bc3-b498-139051d08b85 +2019,Rio Negro,II.1.1,14.33964,TJ,CO2,74100.0,kg/TJ,1062567.324,Gas Oil combustion consumption by public passenger transport,AR-R,SESCO,annual,kg,3e6c58a8-f731-3f7a-9c87-570a1cce786e +2019,Rio Negro,II.1.1,14.33964,TJ,CH4,3.9,kg/TJ,55.924595999999994,Gas Oil combustion consumption by public passenger transport,AR-R,SESCO,annual,kg,84309e2a-671a-3176-bce5-44336fe83ee6 +2019,Rio Negro,II.1.1,14.33964,TJ,N2O,3.9,kg/TJ,55.924595999999994,Gas Oil combustion consumption by public passenger transport,AR-R,SESCO,annual,kg,84309e2a-671a-3176-bce5-44336fe83ee6 +2019,Santa Fe,II.1.1,114.82548,TJ,CO2,74100.0,kg/TJ,8508568.068,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,b50c9312-6cbf-3cc8-afc9-8f4c86f6e93c +2019,Santa Fe,II.1.1,114.82548,TJ,CH4,3.9,kg/TJ,447.819372,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,5fae92dc-d7fd-344e-b293-bfa80ada0ec6 +2019,Santa Fe,II.1.1,114.82548,TJ,N2O,3.9,kg/TJ,447.819372,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,5fae92dc-d7fd-344e-b293-bfa80ada0ec6 +2019,Santiago del Estero,II.1.1,0.28896,TJ,CO2,74100.0,kg/TJ,21411.935999999998,Gas Oil combustion consumption by public passenger transport,AR-G,SESCO,annual,kg,d27255e8-11e8-3cee-9b53-d94f61510b66 +2019,Santiago del Estero,II.1.1,0.28896,TJ,CH4,3.9,kg/TJ,1.126944,Gas Oil combustion consumption by public passenger transport,AR-G,SESCO,annual,kg,e1b3d369-0de6-3861-89b1-d4345d02e101 +2019,Santiago del Estero,II.1.1,0.28896,TJ,N2O,3.9,kg/TJ,1.126944,Gas Oil combustion consumption by public passenger transport,AR-G,SESCO,annual,kg,e1b3d369-0de6-3861-89b1-d4345d02e101 +2019,Tucuman,II.1.1,106.62624,TJ,CO2,74100.0,kg/TJ,7901004.384,Gas Oil combustion consumption by public passenger transport,AR-T,SESCO,annual,kg,b86c5aa6-bd08-36b7-82e7-5b5676224729 +2019,Tucuman,II.1.1,106.62624,TJ,CH4,3.9,kg/TJ,415.842336,Gas Oil combustion consumption by public passenger transport,AR-T,SESCO,annual,kg,814c6384-7be8-3498-9f23-d591cadfb91a +2019,Tucuman,II.1.1,106.62624,TJ,N2O,3.9,kg/TJ,415.842336,Gas Oil combustion consumption by public passenger transport,AR-T,SESCO,annual,kg,814c6384-7be8-3498-9f23-d591cadfb91a +2019,Buenos Aires,II.1.1,131.80187999999998,TJ,CO2,74100.0,kg/TJ,9766519.307999998,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,53e9f834-c4c9-309d-b136-f6c2f855aeb7 +2019,Buenos Aires,II.1.1,131.80187999999998,TJ,CH4,3.9,kg/TJ,514.0273319999999,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,9b79a1d6-a179-3f05-8cec-c305e9d52233 +2019,Buenos Aires,II.1.1,131.80187999999998,TJ,N2O,3.9,kg/TJ,514.0273319999999,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,9b79a1d6-a179-3f05-8cec-c305e9d52233 +2019,Capital Federal,II.1.1,88.06056,TJ,CO2,74100.0,kg/TJ,6525287.495999999,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,185ee54e-a68f-3fb6-80ac-aead5f559502 +2019,Capital Federal,II.1.1,88.06056,TJ,CH4,3.9,kg/TJ,343.43618399999997,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,1974ff72-0296-34ed-9d71-900033f94a70 +2019,Capital Federal,II.1.1,88.06056,TJ,N2O,3.9,kg/TJ,343.43618399999997,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,1974ff72-0296-34ed-9d71-900033f94a70 +2019,Chubut,II.1.1,0.86688,TJ,CO2,74100.0,kg/TJ,64235.808,Gas Oil combustion consumption by public passenger transport,AR-U,SESCO,annual,kg,493e083f-6e43-3ff2-ac0b-67de42f6e1ba +2019,Chubut,II.1.1,0.86688,TJ,CH4,3.9,kg/TJ,3.380832,Gas Oil combustion consumption by public passenger transport,AR-U,SESCO,annual,kg,9a6b09b5-f25e-3067-a494-92fad8a488fd +2019,Chubut,II.1.1,0.86688,TJ,N2O,3.9,kg/TJ,3.380832,Gas Oil combustion consumption by public passenger transport,AR-U,SESCO,annual,kg,9a6b09b5-f25e-3067-a494-92fad8a488fd +2019,Corrientes,II.1.1,0.10836,TJ,CO2,74100.0,kg/TJ,8029.476,Gas Oil combustion consumption by public passenger transport,AR-W,SESCO,annual,kg,3039ef93-5716-3c76-8068-6f8e1077839b +2019,Corrientes,II.1.1,0.10836,TJ,CH4,3.9,kg/TJ,0.422604,Gas Oil combustion consumption by public passenger transport,AR-W,SESCO,annual,kg,24195902-1a05-35a6-a0de-930379f5e7cc +2019,Corrientes,II.1.1,0.10836,TJ,N2O,3.9,kg/TJ,0.422604,Gas Oil combustion consumption by public passenger transport,AR-W,SESCO,annual,kg,24195902-1a05-35a6-a0de-930379f5e7cc +2019,Córdoba,II.1.1,3.72036,TJ,CO2,74100.0,kg/TJ,275678.676,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,1c261785-0735-3031-a485-f3e17237e11c +2019,Córdoba,II.1.1,3.72036,TJ,CH4,3.9,kg/TJ,14.509404,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,7de9db90-4128-35a9-aba7-ffcc1ef9c28e +2019,Córdoba,II.1.1,3.72036,TJ,N2O,3.9,kg/TJ,14.509404,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,7de9db90-4128-35a9-aba7-ffcc1ef9c28e +2019,Entre Rios,II.1.1,2.23944,TJ,CO2,74100.0,kg/TJ,165942.50400000002,Gas Oil combustion consumption by public passenger transport,AR-E,SESCO,annual,kg,75b57c10-f352-33c8-b770-304016d21099 +2019,Entre Rios,II.1.1,2.23944,TJ,CH4,3.9,kg/TJ,8.733816000000001,Gas Oil combustion consumption by public passenger transport,AR-E,SESCO,annual,kg,a6066018-5ece-3b15-bbbb-61836a7a8d67 +2019,Entre Rios,II.1.1,2.23944,TJ,N2O,3.9,kg/TJ,8.733816000000001,Gas Oil combustion consumption by public passenger transport,AR-E,SESCO,annual,kg,a6066018-5ece-3b15-bbbb-61836a7a8d67 +2019,La Pampa,II.1.1,3.64812,TJ,CO2,74100.0,kg/TJ,270325.692,Gas Oil combustion consumption by public passenger transport,AR-L,SESCO,annual,kg,c5e1b29b-622a-324d-b245-affe0fa8206f +2019,La Pampa,II.1.1,3.64812,TJ,CH4,3.9,kg/TJ,14.227668,Gas Oil combustion consumption by public passenger transport,AR-L,SESCO,annual,kg,bfe47d1d-bfb0-370f-be61-060da7fea084 +2019,La Pampa,II.1.1,3.64812,TJ,N2O,3.9,kg/TJ,14.227668,Gas Oil combustion consumption by public passenger transport,AR-L,SESCO,annual,kg,bfe47d1d-bfb0-370f-be61-060da7fea084 +2019,Neuquén,II.1.1,2.5284,TJ,CO2,74100.0,kg/TJ,187354.44,Gas Oil combustion consumption by public passenger transport,AR-Q,SESCO,annual,kg,8096f219-7d3c-3a5f-8a02-7c991fbb6cd2 +2019,Neuquén,II.1.1,2.5284,TJ,CH4,3.9,kg/TJ,9.860759999999999,Gas Oil combustion consumption by public passenger transport,AR-Q,SESCO,annual,kg,bf48c769-d642-3148-8ccf-b81cdd421726 +2019,Neuquén,II.1.1,2.5284,TJ,N2O,3.9,kg/TJ,9.860759999999999,Gas Oil combustion consumption by public passenger transport,AR-Q,SESCO,annual,kg,bf48c769-d642-3148-8ccf-b81cdd421726 +2019,Rio Negro,II.1.1,27.05388,TJ,CO2,74100.0,kg/TJ,2004692.508,Gas Oil combustion consumption by public passenger transport,AR-R,SESCO,annual,kg,10d3269b-77a7-385a-861d-8f086c65092e +2019,Rio Negro,II.1.1,27.05388,TJ,CH4,3.9,kg/TJ,105.510132,Gas Oil combustion consumption by public passenger transport,AR-R,SESCO,annual,kg,738cdf1e-3c59-312e-8df7-1635b6621529 +2019,Rio Negro,II.1.1,27.05388,TJ,N2O,3.9,kg/TJ,105.510132,Gas Oil combustion consumption by public passenger transport,AR-R,SESCO,annual,kg,738cdf1e-3c59-312e-8df7-1635b6621529 +2019,Santa Fe,II.1.1,30.08796,TJ,CO2,74100.0,kg/TJ,2229517.836,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,78a32a8f-358e-394a-be00-78fd7a4a6076 +2019,Santa Fe,II.1.1,30.08796,TJ,CH4,3.9,kg/TJ,117.34304399999999,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,36587cb3-f8f2-382a-b2f2-fe8e996bf8a6 +2019,Santa Fe,II.1.1,30.08796,TJ,N2O,3.9,kg/TJ,117.34304399999999,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,36587cb3-f8f2-382a-b2f2-fe8e996bf8a6 +2019,Santa Fe,II.1.1,0.102795,TJ,CO2,73300.0,kg/TJ,7534.8735,Naphtha combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,4e6b7f0b-eb3a-3e67-9d8f-9906a928ee42 +2019,Santa Fe,II.1.1,0.102795,TJ,CH4,0.5,kg/TJ,0.0513975,Naphtha combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,41bde552-8f76-35f0-b6e4-ce0a90f63d87 +2019,Santa Fe,II.1.1,0.102795,TJ,N2O,2.0,kg/TJ,0.20559,Naphtha combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,c44fc14e-5bd9-34e9-8043-44ae588beac7 +2019,Buenos Aires,II.5.1,1604.7032399999998,TJ,CO2,74100.0,kg/TJ,118908510.08399999,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,d75a8d6b-7614-38be-a0e6-df66d977bb54 +2019,Buenos Aires,II.5.1,1604.7032399999998,TJ,CH4,3.9,kg/TJ,6258.342635999999,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,2314a0f4-35c5-3ac0-acf2-9221c54bb034 +2019,Buenos Aires,II.5.1,1604.7032399999998,TJ,N2O,3.9,kg/TJ,6258.342635999999,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,2314a0f4-35c5-3ac0-acf2-9221c54bb034 +2019,Chaco,II.5.1,312.00455999999997,TJ,CO2,74100.0,kg/TJ,23119537.895999998,Gas Oil combustion consumption by agriculture machines,AR-H,SESCO,annual,kg,fa648806-711b-3d21-8c21-fbf43b2d5522 +2019,Chaco,II.5.1,312.00455999999997,TJ,CH4,3.9,kg/TJ,1216.8177839999998,Gas Oil combustion consumption by agriculture machines,AR-H,SESCO,annual,kg,f99b1e93-7c4a-3338-b813-08007b1e5aca +2019,Chaco,II.5.1,312.00455999999997,TJ,N2O,3.9,kg/TJ,1216.8177839999998,Gas Oil combustion consumption by agriculture machines,AR-H,SESCO,annual,kg,f99b1e93-7c4a-3338-b813-08007b1e5aca +2019,Corrientes,II.5.1,99.94404,TJ,CO2,74100.0,kg/TJ,7405853.364,Gas Oil combustion consumption by agriculture machines,AR-W,SESCO,annual,kg,772c818c-e91f-3d78-b2f4-2f6eaac0bcca +2019,Corrientes,II.5.1,99.94404,TJ,CH4,3.9,kg/TJ,389.781756,Gas Oil combustion consumption by agriculture machines,AR-W,SESCO,annual,kg,53da0c6e-ca0c-3c3f-ab29-0bb08a35cd51 +2019,Corrientes,II.5.1,99.94404,TJ,N2O,3.9,kg/TJ,389.781756,Gas Oil combustion consumption by agriculture machines,AR-W,SESCO,annual,kg,53da0c6e-ca0c-3c3f-ab29-0bb08a35cd51 +2019,Córdoba,II.5.1,1641.0760799999998,TJ,CO2,74100.0,kg/TJ,121603737.52799998,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,91452ec5-6e07-3bcb-853c-c88d9cc68be0 +2019,Córdoba,II.5.1,1641.0760799999998,TJ,CH4,3.9,kg/TJ,6400.196711999999,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,c633d9fe-e212-3f58-b61d-096c79dd975a +2019,Córdoba,II.5.1,1641.0760799999998,TJ,N2O,3.9,kg/TJ,6400.196711999999,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,c633d9fe-e212-3f58-b61d-096c79dd975a +2019,Entre Rios,II.5.1,71.15639999999999,TJ,CO2,74100.0,kg/TJ,5272689.239999999,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,051c7e75-6524-3706-99a3-a74d41bd7179 +2019,Entre Rios,II.5.1,71.15639999999999,TJ,CH4,3.9,kg/TJ,277.50996,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,1547c394-4f74-3a0c-9462-dc2810029212 +2019,Entre Rios,II.5.1,71.15639999999999,TJ,N2O,3.9,kg/TJ,277.50996,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,1547c394-4f74-3a0c-9462-dc2810029212 +2019,La Pampa,II.5.1,86.688,TJ,CO2,74100.0,kg/TJ,6423580.8,Gas Oil combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,0d5de676-bd78-3481-85b0-1fa33ad72109 +2019,La Pampa,II.5.1,86.688,TJ,CH4,3.9,kg/TJ,338.0832,Gas Oil combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,39f76f46-1a60-328c-b719-cee5da9c98a8 +2019,La Pampa,II.5.1,86.688,TJ,N2O,3.9,kg/TJ,338.0832,Gas Oil combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,39f76f46-1a60-328c-b719-cee5da9c98a8 +2019,Mendoza,II.5.1,679.48944,TJ,CO2,74100.0,kg/TJ,50350167.50399999,Gas Oil combustion consumption by agriculture machines,AR-M,SESCO,annual,kg,8566c21d-6b4b-315c-a674-7dead7925ef1 +2019,Mendoza,II.5.1,679.48944,TJ,CH4,3.9,kg/TJ,2650.0088159999996,Gas Oil combustion consumption by agriculture machines,AR-M,SESCO,annual,kg,8c1e4b52-f6c2-3cf2-91a6-a64fe5c7515b +2019,Mendoza,II.5.1,679.48944,TJ,N2O,3.9,kg/TJ,2650.0088159999996,Gas Oil combustion consumption by agriculture machines,AR-M,SESCO,annual,kg,8c1e4b52-f6c2-3cf2-91a6-a64fe5c7515b +2019,Neuquén,II.5.1,128.73167999999998,TJ,CO2,74100.0,kg/TJ,9539017.487999998,Gas Oil combustion consumption by agriculture machines,AR-Q,SESCO,annual,kg,91a5ce77-a8ae-392b-a019-c138e70948b2 +2019,Neuquén,II.5.1,128.73167999999998,TJ,CH4,3.9,kg/TJ,502.0535519999999,Gas Oil combustion consumption by agriculture machines,AR-Q,SESCO,annual,kg,95793d35-d83b-3311-b6a2-f2711a469a73 +2019,Neuquén,II.5.1,128.73167999999998,TJ,N2O,3.9,kg/TJ,502.0535519999999,Gas Oil combustion consumption by agriculture machines,AR-Q,SESCO,annual,kg,95793d35-d83b-3311-b6a2-f2711a469a73 +2019,Santa Cruz,II.5.1,55.371959999999994,TJ,CO2,74100.0,kg/TJ,4103062.2359999996,Gas Oil combustion consumption by agriculture machines,AR-Z,SESCO,annual,kg,d7db3574-3524-3136-bd84-8d5ef666d7f9 +2019,Santa Cruz,II.5.1,55.371959999999994,TJ,CH4,3.9,kg/TJ,215.95064399999998,Gas Oil combustion consumption by agriculture machines,AR-Z,SESCO,annual,kg,336b6934-3a5e-3aea-9246-3c1932b756a1 +2019,Santa Cruz,II.5.1,55.371959999999994,TJ,N2O,3.9,kg/TJ,215.95064399999998,Gas Oil combustion consumption by agriculture machines,AR-Z,SESCO,annual,kg,336b6934-3a5e-3aea-9246-3c1932b756a1 +2019,Santa Fe,II.5.1,2022.46716,TJ,CO2,74100.0,kg/TJ,149864816.556,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,473859b7-3f72-3e38-9fde-d1c49c5f43d0 +2019,Santa Fe,II.5.1,2022.46716,TJ,CH4,3.9,kg/TJ,7887.621923999999,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,520f11f6-0f03-380a-b9ca-067de74413ca +2019,Santa Fe,II.5.1,2022.46716,TJ,N2O,3.9,kg/TJ,7887.621923999999,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,520f11f6-0f03-380a-b9ca-067de74413ca +2019,Santiago del Estero,II.5.1,170.16132,TJ,CO2,74100.0,kg/TJ,12608953.811999999,Gas Oil combustion consumption by agriculture machines,AR-G,SESCO,annual,kg,37477141-448a-3efb-8fd1-c2c71e05fb06 +2019,Santiago del Estero,II.5.1,170.16132,TJ,CH4,3.9,kg/TJ,663.629148,Gas Oil combustion consumption by agriculture machines,AR-G,SESCO,annual,kg,d45174b9-30a3-3991-9442-2371792f7c27 +2019,Santiago del Estero,II.5.1,170.16132,TJ,N2O,3.9,kg/TJ,663.629148,Gas Oil combustion consumption by agriculture machines,AR-G,SESCO,annual,kg,d45174b9-30a3-3991-9442-2371792f7c27 +2019,Tucuman,II.5.1,142.31279999999998,TJ,CO2,74100.0,kg/TJ,10545378.479999999,Gas Oil combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,00e6b773-a2d5-37a8-88e0-f862ef72b4e3 +2019,Tucuman,II.5.1,142.31279999999998,TJ,CH4,3.9,kg/TJ,555.01992,Gas Oil combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,619dcb07-932f-360f-b03b-fe4282b76da6 +2019,Tucuman,II.5.1,142.31279999999998,TJ,N2O,3.9,kg/TJ,555.01992,Gas Oil combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,619dcb07-932f-360f-b03b-fe4282b76da6 +2019,Buenos Aires,II.5.1,69.38651999999999,TJ,CO2,74100.0,kg/TJ,5141541.131999999,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,f3817727-3ed7-3f1b-b3d8-aa8b37aa4349 +2019,Buenos Aires,II.5.1,69.38651999999999,TJ,CH4,3.9,kg/TJ,270.60742799999997,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,219ff7bf-5026-392b-a8a3-4eeecf87a1cc +2019,Buenos Aires,II.5.1,69.38651999999999,TJ,N2O,3.9,kg/TJ,270.60742799999997,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,219ff7bf-5026-392b-a8a3-4eeecf87a1cc +2019,Chaco,II.5.1,73.21524,TJ,CO2,74100.0,kg/TJ,5425249.284,Gas Oil combustion consumption by agriculture machines,AR-H,SESCO,annual,kg,888a9580-3faa-30c8-b819-02efcabcd605 +2019,Chaco,II.5.1,73.21524,TJ,CH4,3.9,kg/TJ,285.53943599999997,Gas Oil combustion consumption by agriculture machines,AR-H,SESCO,annual,kg,f6a150ae-8134-3143-b8b8-e7cbfb01ddd4 +2019,Chaco,II.5.1,73.21524,TJ,N2O,3.9,kg/TJ,285.53943599999997,Gas Oil combustion consumption by agriculture machines,AR-H,SESCO,annual,kg,f6a150ae-8134-3143-b8b8-e7cbfb01ddd4 +2019,Corrientes,II.5.1,23.839199999999998,TJ,CO2,74100.0,kg/TJ,1766484.72,Gas Oil combustion consumption by agriculture machines,AR-W,SESCO,annual,kg,6f81d7c7-bf3e-31bf-bc3b-a08bbc2cd7cd +2019,Corrientes,II.5.1,23.839199999999998,TJ,CH4,3.9,kg/TJ,92.97287999999999,Gas Oil combustion consumption by agriculture machines,AR-W,SESCO,annual,kg,e70e3000-f22d-36b1-a333-a764cb38c3de +2019,Corrientes,II.5.1,23.839199999999998,TJ,N2O,3.9,kg/TJ,92.97287999999999,Gas Oil combustion consumption by agriculture machines,AR-W,SESCO,annual,kg,e70e3000-f22d-36b1-a333-a764cb38c3de +2019,Córdoba,II.5.1,79.50012,TJ,CO2,74100.0,kg/TJ,5890958.892,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,9b79ad38-21ee-315f-b526-86fba7cf7caa +2019,Córdoba,II.5.1,79.50012,TJ,CH4,3.9,kg/TJ,310.05046799999997,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,2c741362-7643-3e93-a963-f9aa9ab5f1b9 +2019,Córdoba,II.5.1,79.50012,TJ,N2O,3.9,kg/TJ,310.05046799999997,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,2c741362-7643-3e93-a963-f9aa9ab5f1b9 +2019,La Pampa,II.5.1,7.7658,TJ,CO2,74100.0,kg/TJ,575445.78,Gas Oil combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,aca827d3-d4ff-3235-ae5d-0b1e32c7242a +2019,La Pampa,II.5.1,7.7658,TJ,CH4,3.9,kg/TJ,30.28662,Gas Oil combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,bc0469ff-a3a4-3083-84a6-2e3c1aa28d0d +2019,La Pampa,II.5.1,7.7658,TJ,N2O,3.9,kg/TJ,30.28662,Gas Oil combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,bc0469ff-a3a4-3083-84a6-2e3c1aa28d0d +2019,Mendoza,II.5.1,165.32124,TJ,CO2,74100.0,kg/TJ,12250303.884,Gas Oil combustion consumption by agriculture machines,AR-M,SESCO,annual,kg,8f63089d-2806-3bef-bff5-d0571d68c6ff +2019,Mendoza,II.5.1,165.32124,TJ,CH4,3.9,kg/TJ,644.7528359999999,Gas Oil combustion consumption by agriculture machines,AR-M,SESCO,annual,kg,0bd38547-ded4-3b86-a56d-b3c568c5a270 +2019,Mendoza,II.5.1,165.32124,TJ,N2O,3.9,kg/TJ,644.7528359999999,Gas Oil combustion consumption by agriculture machines,AR-M,SESCO,annual,kg,0bd38547-ded4-3b86-a56d-b3c568c5a270 +2019,Neuquén,II.5.1,9.28284,TJ,CO2,74100.0,kg/TJ,687858.444,Gas Oil combustion consumption by agriculture machines,AR-Q,SESCO,annual,kg,de89cacc-806d-3bb0-990a-30db407a83a3 +2019,Neuquén,II.5.1,9.28284,TJ,CH4,3.9,kg/TJ,36.203076,Gas Oil combustion consumption by agriculture machines,AR-Q,SESCO,annual,kg,e1ded2ec-2419-381b-8f3a-81de4097dae3 +2019,Neuquén,II.5.1,9.28284,TJ,N2O,3.9,kg/TJ,36.203076,Gas Oil combustion consumption by agriculture machines,AR-Q,SESCO,annual,kg,e1ded2ec-2419-381b-8f3a-81de4097dae3 +2019,Santa Cruz,II.5.1,20.696759999999998,TJ,CO2,74100.0,kg/TJ,1533629.9159999997,Gas Oil combustion consumption by agriculture machines,AR-Z,SESCO,annual,kg,6a8e5cbc-47b7-3896-ab89-add1b6093fde +2019,Santa Cruz,II.5.1,20.696759999999998,TJ,CH4,3.9,kg/TJ,80.71736399999999,Gas Oil combustion consumption by agriculture machines,AR-Z,SESCO,annual,kg,4b6d94f5-4c87-358b-be77-36243356a3f5 +2019,Santa Cruz,II.5.1,20.696759999999998,TJ,N2O,3.9,kg/TJ,80.71736399999999,Gas Oil combustion consumption by agriculture machines,AR-Z,SESCO,annual,kg,4b6d94f5-4c87-358b-be77-36243356a3f5 +2019,Santa Fe,II.5.1,113.52516,TJ,CO2,74100.0,kg/TJ,8412214.356,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,6d460fee-6f32-3d04-90ca-a222df2673ac +2019,Santa Fe,II.5.1,113.52516,TJ,CH4,3.9,kg/TJ,442.74812399999996,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,67d4d4d2-f243-355d-8441-3f3f7866fd00 +2019,Santa Fe,II.5.1,113.52516,TJ,N2O,3.9,kg/TJ,442.74812399999996,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,67d4d4d2-f243-355d-8441-3f3f7866fd00 +2019,Santiago del Estero,II.5.1,27.523439999999997,TJ,CO2,74100.0,kg/TJ,2039486.9039999999,Gas Oil combustion consumption by agriculture machines,AR-G,SESCO,annual,kg,807c207e-d0a0-35c3-ba92-287a1401589b +2019,Santiago del Estero,II.5.1,27.523439999999997,TJ,CH4,3.9,kg/TJ,107.34141599999998,Gas Oil combustion consumption by agriculture machines,AR-G,SESCO,annual,kg,4ed511ae-28c9-39ab-9198-77309e6e4429 +2019,Santiago del Estero,II.5.1,27.523439999999997,TJ,N2O,3.9,kg/TJ,107.34141599999998,Gas Oil combustion consumption by agriculture machines,AR-G,SESCO,annual,kg,4ed511ae-28c9-39ab-9198-77309e6e4429 +2019,Tucuman,II.5.1,26.873279999999998,TJ,CO2,74100.0,kg/TJ,1991310.0479999997,Gas Oil combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,01ed6010-19eb-3bdb-baee-229b01dd6ecf +2019,Tucuman,II.5.1,26.873279999999998,TJ,CH4,3.9,kg/TJ,104.80579199999998,Gas Oil combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,63f4b2df-0bf4-38e5-8bc3-a61a920a349c +2019,Tucuman,II.5.1,26.873279999999998,TJ,N2O,3.9,kg/TJ,104.80579199999998,Gas Oil combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,63f4b2df-0bf4-38e5-8bc3-a61a920a349c +2019,Córdoba,II.5.1,2.843995,TJ,CO2,73300.0,kg/TJ,208464.8335,Naphtha combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,bd9db84c-4938-32db-930d-56d49c8e2989 +2019,Córdoba,II.5.1,2.843995,TJ,CH4,0.5,kg/TJ,1.4219975,Naphtha combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,87547f80-4b8b-3619-b65f-ebd932458e3e +2019,Córdoba,II.5.1,2.843995,TJ,N2O,2.0,kg/TJ,5.68799,Naphtha combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,fe735028-79c8-327c-9094-2ff8ce54767c +2019,Santa Fe,II.5.1,39.987255,TJ,CO2,73300.0,kg/TJ,2931065.7915,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,a285895b-2276-3192-b37d-baae07de00f5 +2019,Santa Fe,II.5.1,39.987255,TJ,CH4,0.5,kg/TJ,19.9936275,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,77010eb7-3a28-3a79-b298-c639369378d3 +2019,Santa Fe,II.5.1,39.987255,TJ,N2O,2.0,kg/TJ,79.97451,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,39d5c519-c8b4-36ef-9b39-5fd6b9f1beaf +2019,Córdoba,II.5.1,1.71325,TJ,CO2,73300.0,kg/TJ,125581.22499999999,Naphtha combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,c6c4e48c-4ecb-33b8-89b1-a1c00df092c8 +2019,Córdoba,II.5.1,1.71325,TJ,CH4,0.5,kg/TJ,0.856625,Naphtha combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,1e9fb3df-c235-3a82-b2c0-8e969794b8d4 +2019,Córdoba,II.5.1,1.71325,TJ,N2O,2.0,kg/TJ,3.4265,Naphtha combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,16f7efe4-7708-33ee-8fda-572291615867 +2019,Santa Fe,II.5.1,6.09917,TJ,CO2,73300.0,kg/TJ,447069.161,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,7f905869-5897-315a-96f5-2b8cc7629ef0 +2019,Santa Fe,II.5.1,6.09917,TJ,CH4,0.5,kg/TJ,3.049585,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,77e9b55f-6bca-3881-b7cf-a7d3dee4b9e3 +2019,Santa Fe,II.5.1,6.09917,TJ,N2O,2.0,kg/TJ,12.19834,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,9c6e7d49-854e-32ab-a395-1bb956d15add +2019,Buenos Aires,II.2.1,377.70684,TJ,CO2,74100.0,kg/TJ,27988076.844,Gas Oil combustion consumption by railway transport,AR-B,SESCO,annual,kg,c3aaed93-aa0d-3220-b96e-a60b0d8ab1b0 +2019,Buenos Aires,II.2.1,377.70684,TJ,CH4,3.9,kg/TJ,1473.056676,Gas Oil combustion consumption by railway transport,AR-B,SESCO,annual,kg,674cfa99-ac9f-344e-81a5-cf1eca19db77 +2019,Buenos Aires,II.2.1,377.70684,TJ,N2O,3.9,kg/TJ,1473.056676,Gas Oil combustion consumption by railway transport,AR-B,SESCO,annual,kg,674cfa99-ac9f-344e-81a5-cf1eca19db77 +2019,Capital Federal,II.2.1,4.515,TJ,CO2,74100.0,kg/TJ,334561.5,Gas Oil combustion consumption by railway transport,AR-C,SESCO,annual,kg,16a25b21-2456-36dd-8055-52af05eec202 +2019,Capital Federal,II.2.1,4.515,TJ,CH4,3.9,kg/TJ,17.6085,Gas Oil combustion consumption by railway transport,AR-C,SESCO,annual,kg,9778eea8-7e00-31e3-8834-c0a2cccc40d7 +2019,Capital Federal,II.2.1,4.515,TJ,N2O,3.9,kg/TJ,17.6085,Gas Oil combustion consumption by railway transport,AR-C,SESCO,annual,kg,9778eea8-7e00-31e3-8834-c0a2cccc40d7 +2019,Córdoba,II.2.1,6.57384,TJ,CO2,74100.0,kg/TJ,487121.544,Gas Oil combustion consumption by railway transport,AR-X,SESCO,annual,kg,eae09c84-7be6-3b28-831f-d97ccf1bdd64 +2019,Córdoba,II.2.1,6.57384,TJ,CH4,3.9,kg/TJ,25.637976,Gas Oil combustion consumption by railway transport,AR-X,SESCO,annual,kg,be10d55a-88eb-338d-b4ec-936e88bd5362 +2019,Córdoba,II.2.1,6.57384,TJ,N2O,3.9,kg/TJ,25.637976,Gas Oil combustion consumption by railway transport,AR-X,SESCO,annual,kg,be10d55a-88eb-338d-b4ec-936e88bd5362 +2019,La Pampa,II.2.1,85.53215999999999,TJ,CO2,74100.0,kg/TJ,6337933.055999999,Gas Oil combustion consumption by railway transport,AR-L,SESCO,annual,kg,c803531f-1a91-39ad-9e22-73f5a572e889 +2019,La Pampa,II.2.1,85.53215999999999,TJ,CH4,3.9,kg/TJ,333.57542399999994,Gas Oil combustion consumption by railway transport,AR-L,SESCO,annual,kg,3fd35d7c-30cf-3874-9255-150749957ef7 +2019,La Pampa,II.2.1,85.53215999999999,TJ,N2O,3.9,kg/TJ,333.57542399999994,Gas Oil combustion consumption by railway transport,AR-L,SESCO,annual,kg,3fd35d7c-30cf-3874-9255-150749957ef7 +2019,Neuquén,II.2.1,32.6886,TJ,CO2,74100.0,kg/TJ,2422225.2600000002,Gas Oil combustion consumption by railway transport,AR-Q,SESCO,annual,kg,a096f157-61d9-39df-a45e-d2e570e07946 +2019,Neuquén,II.2.1,32.6886,TJ,CH4,3.9,kg/TJ,127.48554,Gas Oil combustion consumption by railway transport,AR-Q,SESCO,annual,kg,aa151621-81e6-3bab-b4f8-f2d2d77cdcc0 +2019,Neuquén,II.2.1,32.6886,TJ,N2O,3.9,kg/TJ,127.48554,Gas Oil combustion consumption by railway transport,AR-Q,SESCO,annual,kg,aa151621-81e6-3bab-b4f8-f2d2d77cdcc0 +2019,Santa Fe,II.2.1,198.51551999999998,TJ,CO2,74100.0,kg/TJ,14710000.031999998,Gas Oil combustion consumption by railway transport,AR-S,SESCO,annual,kg,f2e49b20-73e9-36df-98c9-36f73310e1dd +2019,Santa Fe,II.2.1,198.51551999999998,TJ,CH4,3.9,kg/TJ,774.210528,Gas Oil combustion consumption by railway transport,AR-S,SESCO,annual,kg,472f9ed9-3322-35a7-a91e-47324daa2cdc +2019,Santa Fe,II.2.1,198.51551999999998,TJ,N2O,3.9,kg/TJ,774.210528,Gas Oil combustion consumption by railway transport,AR-S,SESCO,annual,kg,472f9ed9-3322-35a7-a91e-47324daa2cdc +2019,Santiago del Estero,II.2.1,37.7454,TJ,CO2,74100.0,kg/TJ,2796934.1399999997,Gas Oil combustion consumption by railway transport,AR-G,SESCO,annual,kg,b2e614fb-cd93-3a18-8eb9-e80a984cfe5f +2019,Santiago del Estero,II.2.1,37.7454,TJ,CH4,3.9,kg/TJ,147.20705999999998,Gas Oil combustion consumption by railway transport,AR-G,SESCO,annual,kg,59c4fba2-841e-3e09-9882-ea2b6f1d17bb +2019,Santiago del Estero,II.2.1,37.7454,TJ,N2O,3.9,kg/TJ,147.20705999999998,Gas Oil combustion consumption by railway transport,AR-G,SESCO,annual,kg,59c4fba2-841e-3e09-9882-ea2b6f1d17bb +2019,Tucuman,II.2.1,23.441879999999998,TJ,CO2,74100.0,kg/TJ,1737043.3079999997,Gas Oil combustion consumption by railway transport,AR-T,SESCO,annual,kg,3e8ba785-d0dd-3c4d-bef9-b5a816c650ca +2019,Tucuman,II.2.1,23.441879999999998,TJ,CH4,3.9,kg/TJ,91.42333199999999,Gas Oil combustion consumption by railway transport,AR-T,SESCO,annual,kg,284eb9d1-5e18-3d9a-8453-45d7deb9eaf5 +2019,Tucuman,II.2.1,23.441879999999998,TJ,N2O,3.9,kg/TJ,91.42333199999999,Gas Oil combustion consumption by railway transport,AR-T,SESCO,annual,kg,284eb9d1-5e18-3d9a-8453-45d7deb9eaf5 +2019,Buenos Aires,II.1.1,1529.93484,TJ,CO2,74100.0,kg/TJ,113368171.644,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,4c0a53ff-e902-3b25-83df-f4eaff23e074 +2019,Buenos Aires,II.1.1,1529.93484,TJ,CH4,3.9,kg/TJ,5966.745875999999,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,407ef531-0b36-3f88-94dd-2045c569f0ca +2019,Buenos Aires,II.1.1,1529.93484,TJ,N2O,3.9,kg/TJ,5966.745875999999,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,407ef531-0b36-3f88-94dd-2045c569f0ca +2019,Capital Federal,II.1.1,380.81316,TJ,CO2,74100.0,kg/TJ,28218255.156,Gas Oil combustion consumption by freight transport,AR-C,SESCO,annual,kg,3bf388d9-098d-3d43-96c7-45c756219d14 +2019,Capital Federal,II.1.1,380.81316,TJ,CH4,3.9,kg/TJ,1485.171324,Gas Oil combustion consumption by freight transport,AR-C,SESCO,annual,kg,aadd0acf-509d-31de-8932-6d9f9868cd44 +2019,Capital Federal,II.1.1,380.81316,TJ,N2O,3.9,kg/TJ,1485.171324,Gas Oil combustion consumption by freight transport,AR-C,SESCO,annual,kg,aadd0acf-509d-31de-8932-6d9f9868cd44 +2019,Catamarca,II.1.1,11.45004,TJ,CO2,74100.0,kg/TJ,848447.9639999999,Gas Oil combustion consumption by freight transport,AR-K,SESCO,annual,kg,cdf7a385-bdcc-3c47-9dcb-d27a6e0f8c6b +2019,Catamarca,II.1.1,11.45004,TJ,CH4,3.9,kg/TJ,44.655156,Gas Oil combustion consumption by freight transport,AR-K,SESCO,annual,kg,c3b7b627-bf08-3571-91ec-b08fffbdb518 +2019,Catamarca,II.1.1,11.45004,TJ,N2O,3.9,kg/TJ,44.655156,Gas Oil combustion consumption by freight transport,AR-K,SESCO,annual,kg,c3b7b627-bf08-3571-91ec-b08fffbdb518 +2019,Chaco,II.1.1,17.662679999999998,TJ,CO2,74100.0,kg/TJ,1308804.5879999998,Gas Oil combustion consumption by freight transport,AR-H,SESCO,annual,kg,1db9fd5d-7d55-3954-9f2c-bfcbb8b4b881 +2019,Chaco,II.1.1,17.662679999999998,TJ,CH4,3.9,kg/TJ,68.884452,Gas Oil combustion consumption by freight transport,AR-H,SESCO,annual,kg,1949b241-499f-3e2b-9da9-8c3687c05014 +2019,Chaco,II.1.1,17.662679999999998,TJ,N2O,3.9,kg/TJ,68.884452,Gas Oil combustion consumption by freight transport,AR-H,SESCO,annual,kg,1949b241-499f-3e2b-9da9-8c3687c05014 +2019,Chubut,II.1.1,35.14476,TJ,CO2,74100.0,kg/TJ,2604226.716,Gas Oil combustion consumption by freight transport,AR-U,SESCO,annual,kg,0a3fad9a-9fc2-3c3e-b829-9bc27549a2f6 +2019,Chubut,II.1.1,35.14476,TJ,CH4,3.9,kg/TJ,137.064564,Gas Oil combustion consumption by freight transport,AR-U,SESCO,annual,kg,855b5575-a058-30fb-86f8-ae81a8c1c4e5 +2019,Chubut,II.1.1,35.14476,TJ,N2O,3.9,kg/TJ,137.064564,Gas Oil combustion consumption by freight transport,AR-U,SESCO,annual,kg,855b5575-a058-30fb-86f8-ae81a8c1c4e5 +2019,Corrientes,II.1.1,53.6382,TJ,CO2,74100.0,kg/TJ,3974590.6199999996,Gas Oil combustion consumption by freight transport,AR-W,SESCO,annual,kg,471f5c5f-0ef5-3a44-95ba-5ed22415707a +2019,Corrientes,II.1.1,53.6382,TJ,CH4,3.9,kg/TJ,209.18898,Gas Oil combustion consumption by freight transport,AR-W,SESCO,annual,kg,5cc926ed-4869-3a4f-8c92-58164890df06 +2019,Corrientes,II.1.1,53.6382,TJ,N2O,3.9,kg/TJ,209.18898,Gas Oil combustion consumption by freight transport,AR-W,SESCO,annual,kg,5cc926ed-4869-3a4f-8c92-58164890df06 +2019,Córdoba,II.1.1,193.38647999999998,TJ,CO2,74100.0,kg/TJ,14329938.167999998,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,fd8ff52e-a8a2-379f-8c1a-f2a210e2e3c2 +2019,Córdoba,II.1.1,193.38647999999998,TJ,CH4,3.9,kg/TJ,754.2072719999999,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,327404ce-78d7-3e6e-a76c-5ecb14f34105 +2019,Córdoba,II.1.1,193.38647999999998,TJ,N2O,3.9,kg/TJ,754.2072719999999,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,327404ce-78d7-3e6e-a76c-5ecb14f34105 +2019,Entre Rios,II.1.1,186.921,TJ,CO2,74100.0,kg/TJ,13850846.1,Gas Oil combustion consumption by freight transport,AR-E,SESCO,annual,kg,fe688624-be47-31ad-b782-2b958811a402 +2019,Entre Rios,II.1.1,186.921,TJ,CH4,3.9,kg/TJ,728.9919,Gas Oil combustion consumption by freight transport,AR-E,SESCO,annual,kg,77743715-1a52-321d-9aef-feefbff2c9f3 +2019,Entre Rios,II.1.1,186.921,TJ,N2O,3.9,kg/TJ,728.9919,Gas Oil combustion consumption by freight transport,AR-E,SESCO,annual,kg,77743715-1a52-321d-9aef-feefbff2c9f3 +2019,Formosa,II.1.1,9.03,TJ,CO2,74100.0,kg/TJ,669123.0,Gas Oil combustion consumption by freight transport,AR-P,SESCO,annual,kg,1ba9464a-87a0-3705-9425-112c49684b0f +2019,Formosa,II.1.1,9.03,TJ,CH4,3.9,kg/TJ,35.217,Gas Oil combustion consumption by freight transport,AR-P,SESCO,annual,kg,f12a0dd2-e8dd-39fa-b5e2-5a23aa7c2a2d +2019,Formosa,II.1.1,9.03,TJ,N2O,3.9,kg/TJ,35.217,Gas Oil combustion consumption by freight transport,AR-P,SESCO,annual,kg,f12a0dd2-e8dd-39fa-b5e2-5a23aa7c2a2d +2019,Jujuy,II.1.1,8.05476,TJ,CO2,74100.0,kg/TJ,596857.716,Gas Oil combustion consumption by freight transport,AR-Y,SESCO,annual,kg,fadd597a-f3b3-388d-b105-3401a1ef7e4d +2019,Jujuy,II.1.1,8.05476,TJ,CH4,3.9,kg/TJ,31.413563999999997,Gas Oil combustion consumption by freight transport,AR-Y,SESCO,annual,kg,9b8af62b-82ec-365c-90d5-4b60eb610334 +2019,Jujuy,II.1.1,8.05476,TJ,N2O,3.9,kg/TJ,31.413563999999997,Gas Oil combustion consumption by freight transport,AR-Y,SESCO,annual,kg,9b8af62b-82ec-365c-90d5-4b60eb610334 +2019,La Pampa,II.1.1,29.618399999999998,TJ,CO2,74100.0,kg/TJ,2194723.44,Gas Oil combustion consumption by freight transport,AR-L,SESCO,annual,kg,f3d92a26-9e80-3ec5-b587-b5169293dc30 +2019,La Pampa,II.1.1,29.618399999999998,TJ,CH4,3.9,kg/TJ,115.51175999999998,Gas Oil combustion consumption by freight transport,AR-L,SESCO,annual,kg,23469bd9-faf3-3a5f-bab3-0570fed87180 +2019,La Pampa,II.1.1,29.618399999999998,TJ,N2O,3.9,kg/TJ,115.51175999999998,Gas Oil combustion consumption by freight transport,AR-L,SESCO,annual,kg,23469bd9-faf3-3a5f-bab3-0570fed87180 +2019,La Rioja,II.1.1,3.9732,TJ,CO2,74100.0,kg/TJ,294414.12,Gas Oil combustion consumption by freight transport,AR-F,SESCO,annual,kg,bc89c4b5-2913-3383-9dc0-f8e1f19f7be7 +2019,La Rioja,II.1.1,3.9732,TJ,CH4,3.9,kg/TJ,15.495479999999999,Gas Oil combustion consumption by freight transport,AR-F,SESCO,annual,kg,fd4f62dc-62d0-3549-8db3-0639378d0de0 +2019,La Rioja,II.1.1,3.9732,TJ,N2O,3.9,kg/TJ,15.495479999999999,Gas Oil combustion consumption by freight transport,AR-F,SESCO,annual,kg,fd4f62dc-62d0-3549-8db3-0639378d0de0 +2019,Mendoza,II.1.1,61.0428,TJ,CO2,74100.0,kg/TJ,4523271.4799999995,Gas Oil combustion consumption by freight transport,AR-M,SESCO,annual,kg,b6f1e8d6-b3c6-3571-9f1e-058e2c0e833f +2019,Mendoza,II.1.1,61.0428,TJ,CH4,3.9,kg/TJ,238.06691999999998,Gas Oil combustion consumption by freight transport,AR-M,SESCO,annual,kg,4d93f293-8afd-3f84-a474-9a092b4d8171 +2019,Mendoza,II.1.1,61.0428,TJ,N2O,3.9,kg/TJ,238.06691999999998,Gas Oil combustion consumption by freight transport,AR-M,SESCO,annual,kg,4d93f293-8afd-3f84-a474-9a092b4d8171 +2019,Misiones,II.1.1,52.121159999999996,TJ,CO2,74100.0,kg/TJ,3862177.956,Gas Oil combustion consumption by freight transport,AR-N,SESCO,annual,kg,df33e6f7-403e-374a-80c3-43bc0a531aa8 +2019,Misiones,II.1.1,52.121159999999996,TJ,CH4,3.9,kg/TJ,203.27252399999998,Gas Oil combustion consumption by freight transport,AR-N,SESCO,annual,kg,4b727249-1e56-3a2f-87a6-ca1084f16abf +2019,Misiones,II.1.1,52.121159999999996,TJ,N2O,3.9,kg/TJ,203.27252399999998,Gas Oil combustion consumption by freight transport,AR-N,SESCO,annual,kg,4b727249-1e56-3a2f-87a6-ca1084f16abf +2019,Neuquén,II.1.1,1.37256,TJ,CO2,74100.0,kg/TJ,101706.696,Gas Oil combustion consumption by freight transport,AR-Q,SESCO,annual,kg,94e1bafd-2ce0-3b3f-b75a-b1639505ff66 +2019,Neuquén,II.1.1,1.37256,TJ,CH4,3.9,kg/TJ,5.352984,Gas Oil combustion consumption by freight transport,AR-Q,SESCO,annual,kg,2ff2793b-bf3a-3626-a3d4-09349e8ec42c +2019,Neuquén,II.1.1,1.37256,TJ,N2O,3.9,kg/TJ,5.352984,Gas Oil combustion consumption by freight transport,AR-Q,SESCO,annual,kg,2ff2793b-bf3a-3626-a3d4-09349e8ec42c +2019,Rio Negro,II.1.1,101.35271999999999,TJ,CO2,74100.0,kg/TJ,7510236.551999999,Gas Oil combustion consumption by freight transport,AR-R,SESCO,annual,kg,87367081-32f6-3243-a019-bdb5f82f6645 +2019,Rio Negro,II.1.1,101.35271999999999,TJ,CH4,3.9,kg/TJ,395.275608,Gas Oil combustion consumption by freight transport,AR-R,SESCO,annual,kg,aad34eb8-df53-3b92-aebf-b6fe044fd120 +2019,Rio Negro,II.1.1,101.35271999999999,TJ,N2O,3.9,kg/TJ,395.275608,Gas Oil combustion consumption by freight transport,AR-R,SESCO,annual,kg,aad34eb8-df53-3b92-aebf-b6fe044fd120 +2019,Salta,II.1.1,4.76784,TJ,CO2,74100.0,kg/TJ,353296.94399999996,Gas Oil combustion consumption by freight transport,AR-A,SESCO,annual,kg,acabd128-93ac-3a50-9d7e-c203e5edab3a +2019,Salta,II.1.1,4.76784,TJ,CH4,3.9,kg/TJ,18.594575999999996,Gas Oil combustion consumption by freight transport,AR-A,SESCO,annual,kg,e612d646-2904-3558-8c56-5751d97e3639 +2019,Salta,II.1.1,4.76784,TJ,N2O,3.9,kg/TJ,18.594575999999996,Gas Oil combustion consumption by freight transport,AR-A,SESCO,annual,kg,e612d646-2904-3558-8c56-5751d97e3639 +2019,San Juan,II.1.1,7.44072,TJ,CO2,74100.0,kg/TJ,551357.352,Gas Oil combustion consumption by freight transport,AR-J,SESCO,annual,kg,ee9a7a46-a093-32bd-9561-6c1e3f3f5603 +2019,San Juan,II.1.1,7.44072,TJ,CH4,3.9,kg/TJ,29.018808,Gas Oil combustion consumption by freight transport,AR-J,SESCO,annual,kg,9cbe1fdb-557b-366f-9da5-9db939f62b5e +2019,San Juan,II.1.1,7.44072,TJ,N2O,3.9,kg/TJ,29.018808,Gas Oil combustion consumption by freight transport,AR-J,SESCO,annual,kg,9cbe1fdb-557b-366f-9da5-9db939f62b5e +2019,San Luis,II.1.1,63.679559999999995,TJ,CO2,74100.0,kg/TJ,4718655.396,Gas Oil combustion consumption by freight transport,AR-D,SESCO,annual,kg,9d917f93-c811-3317-bed4-945da11d5bc7 +2019,San Luis,II.1.1,63.679559999999995,TJ,CH4,3.9,kg/TJ,248.350284,Gas Oil combustion consumption by freight transport,AR-D,SESCO,annual,kg,0f2e5994-f56c-365c-a42c-c4a522bb43c9 +2019,San Luis,II.1.1,63.679559999999995,TJ,N2O,3.9,kg/TJ,248.350284,Gas Oil combustion consumption by freight transport,AR-D,SESCO,annual,kg,0f2e5994-f56c-365c-a42c-c4a522bb43c9 +2019,Santa Cruz,II.1.1,3.9732,TJ,CO2,74100.0,kg/TJ,294414.12,Gas Oil combustion consumption by freight transport,AR-Z,SESCO,annual,kg,5f3ca0dd-9b49-3a06-8456-ed8effbede62 +2019,Santa Cruz,II.1.1,3.9732,TJ,CH4,3.9,kg/TJ,15.495479999999999,Gas Oil combustion consumption by freight transport,AR-Z,SESCO,annual,kg,bd2cf906-6593-3d34-9c3b-6f37a151f1fd +2019,Santa Cruz,II.1.1,3.9732,TJ,N2O,3.9,kg/TJ,15.495479999999999,Gas Oil combustion consumption by freight transport,AR-Z,SESCO,annual,kg,bd2cf906-6593-3d34-9c3b-6f37a151f1fd +2019,Santa Fe,II.1.1,425.60195999999996,TJ,CO2,74100.0,kg/TJ,31537105.235999998,Gas Oil combustion consumption by freight transport,AR-S,SESCO,annual,kg,25280dd6-dd0e-387a-a64f-f64ed4debbd6 +2019,Santa Fe,II.1.1,425.60195999999996,TJ,CH4,3.9,kg/TJ,1659.8476439999997,Gas Oil combustion consumption by freight transport,AR-S,SESCO,annual,kg,a6fa6e6a-1c28-3b3a-9917-b191b98e66a3 +2019,Santa Fe,II.1.1,425.60195999999996,TJ,N2O,3.9,kg/TJ,1659.8476439999997,Gas Oil combustion consumption by freight transport,AR-S,SESCO,annual,kg,a6fa6e6a-1c28-3b3a-9917-b191b98e66a3 +2019,Santiago del Estero,II.1.1,76.68276,TJ,CO2,74100.0,kg/TJ,5682192.516,Gas Oil combustion consumption by freight transport,AR-G,SESCO,annual,kg,6cb2e463-2da8-3d1e-a182-ccc539c1d094 +2019,Santiago del Estero,II.1.1,76.68276,TJ,CH4,3.9,kg/TJ,299.062764,Gas Oil combustion consumption by freight transport,AR-G,SESCO,annual,kg,4e0266f8-1005-39ea-b82c-bd51dfea3b88 +2019,Santiago del Estero,II.1.1,76.68276,TJ,N2O,3.9,kg/TJ,299.062764,Gas Oil combustion consumption by freight transport,AR-G,SESCO,annual,kg,4e0266f8-1005-39ea-b82c-bd51dfea3b88 +2019,Tierra del Fuego,II.1.1,5.345759999999999,TJ,CO2,74100.0,kg/TJ,396120.81599999993,Gas Oil combustion consumption by freight transport,AR-V,SESCO,annual,kg,4ef45a1d-a132-35f4-abc7-a47941ad4348 +2019,Tierra del Fuego,II.1.1,5.345759999999999,TJ,CH4,3.9,kg/TJ,20.848463999999996,Gas Oil combustion consumption by freight transport,AR-V,SESCO,annual,kg,9d667fad-e2d4-3c83-9ffe-8c63e2394727 +2019,Tierra del Fuego,II.1.1,5.345759999999999,TJ,N2O,3.9,kg/TJ,20.848463999999996,Gas Oil combustion consumption by freight transport,AR-V,SESCO,annual,kg,9d667fad-e2d4-3c83-9ffe-8c63e2394727 +2019,Tucuman,II.1.1,37.2036,TJ,CO2,74100.0,kg/TJ,2756786.7600000002,Gas Oil combustion consumption by freight transport,AR-T,SESCO,annual,kg,e2137792-6453-3e1b-851e-3cc3d1719a3d +2019,Tucuman,II.1.1,37.2036,TJ,CH4,3.9,kg/TJ,145.09404,Gas Oil combustion consumption by freight transport,AR-T,SESCO,annual,kg,e8a1f6c5-3265-35a9-bd55-bf406b25829f +2019,Tucuman,II.1.1,37.2036,TJ,N2O,3.9,kg/TJ,145.09404,Gas Oil combustion consumption by freight transport,AR-T,SESCO,annual,kg,e8a1f6c5-3265-35a9-bd55-bf406b25829f +2019,Buenos Aires,II.1.1,220.47647999999998,TJ,CO2,74100.0,kg/TJ,16337307.167999998,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,79918091-c5a1-318e-a89c-b902cd3b6d85 +2019,Buenos Aires,II.1.1,220.47647999999998,TJ,CH4,3.9,kg/TJ,859.8582719999999,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,c3eff962-f330-3b0d-88ca-a42c23eff321 +2019,Buenos Aires,II.1.1,220.47647999999998,TJ,N2O,3.9,kg/TJ,859.8582719999999,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,c3eff962-f330-3b0d-88ca-a42c23eff321 +2019,Capital Federal,II.1.1,15.42324,TJ,CO2,74100.0,kg/TJ,1142862.084,Gas Oil combustion consumption by freight transport,AR-C,SESCO,annual,kg,36e28089-5851-30b0-912e-85d186bf22e6 +2019,Capital Federal,II.1.1,15.42324,TJ,CH4,3.9,kg/TJ,60.150636,Gas Oil combustion consumption by freight transport,AR-C,SESCO,annual,kg,42b2de08-550f-3c2f-bc50-ea5fc96b531f +2019,Capital Federal,II.1.1,15.42324,TJ,N2O,3.9,kg/TJ,60.150636,Gas Oil combustion consumption by freight transport,AR-C,SESCO,annual,kg,42b2de08-550f-3c2f-bc50-ea5fc96b531f +2019,Catamarca,II.1.1,0.9029999999999999,TJ,CO2,74100.0,kg/TJ,66912.29999999999,Gas Oil combustion consumption by freight transport,AR-K,SESCO,annual,kg,4ed537d0-3fd9-3c20-a82a-ad564d5fa9d1 +2019,Catamarca,II.1.1,0.9029999999999999,TJ,CH4,3.9,kg/TJ,3.5216999999999996,Gas Oil combustion consumption by freight transport,AR-K,SESCO,annual,kg,9037f199-e754-3821-9c64-87813a989bc3 +2019,Catamarca,II.1.1,0.9029999999999999,TJ,N2O,3.9,kg/TJ,3.5216999999999996,Gas Oil combustion consumption by freight transport,AR-K,SESCO,annual,kg,9037f199-e754-3821-9c64-87813a989bc3 +2019,Chaco,II.1.1,2.38392,TJ,CO2,74100.0,kg/TJ,176648.47199999998,Gas Oil combustion consumption by freight transport,AR-H,SESCO,annual,kg,70f0370f-4362-3e24-9399-2403502c29a2 +2019,Chaco,II.1.1,2.38392,TJ,CH4,3.9,kg/TJ,9.297287999999998,Gas Oil combustion consumption by freight transport,AR-H,SESCO,annual,kg,6bb66e86-b86f-3dd2-ad9c-e4d11603136c +2019,Chaco,II.1.1,2.38392,TJ,N2O,3.9,kg/TJ,9.297287999999998,Gas Oil combustion consumption by freight transport,AR-H,SESCO,annual,kg,6bb66e86-b86f-3dd2-ad9c-e4d11603136c +2019,Chubut,II.1.1,24.525479999999998,TJ,CO2,74100.0,kg/TJ,1817338.068,Gas Oil combustion consumption by freight transport,AR-U,SESCO,annual,kg,07c1be8b-3113-35be-b888-50023ef002c7 +2019,Chubut,II.1.1,24.525479999999998,TJ,CH4,3.9,kg/TJ,95.64937199999999,Gas Oil combustion consumption by freight transport,AR-U,SESCO,annual,kg,d29082b0-f28c-3fc2-ba65-f99bb632d60c +2019,Chubut,II.1.1,24.525479999999998,TJ,N2O,3.9,kg/TJ,95.64937199999999,Gas Oil combustion consumption by freight transport,AR-U,SESCO,annual,kg,d29082b0-f28c-3fc2-ba65-f99bb632d60c +2019,Corrientes,II.1.1,6.6460799999999995,TJ,CO2,74100.0,kg/TJ,492474.528,Gas Oil combustion consumption by freight transport,AR-W,SESCO,annual,kg,557c2eff-f4b1-3e28-aaf4-45d8543c4df9 +2019,Corrientes,II.1.1,6.6460799999999995,TJ,CH4,3.9,kg/TJ,25.919711999999997,Gas Oil combustion consumption by freight transport,AR-W,SESCO,annual,kg,b92c3f3d-f448-3fae-b05f-62bf30dd5976 +2019,Corrientes,II.1.1,6.6460799999999995,TJ,N2O,3.9,kg/TJ,25.919711999999997,Gas Oil combustion consumption by freight transport,AR-W,SESCO,annual,kg,b92c3f3d-f448-3fae-b05f-62bf30dd5976 +2019,Córdoba,II.1.1,17.6988,TJ,CO2,74100.0,kg/TJ,1311481.0799999998,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,a5ee9135-76a9-3fa3-a5af-c7cac902da9a +2019,Córdoba,II.1.1,17.6988,TJ,CH4,3.9,kg/TJ,69.02532,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,a230107e-6e59-38af-aa19-53a4b00a8d00 +2019,Córdoba,II.1.1,17.6988,TJ,N2O,3.9,kg/TJ,69.02532,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,a230107e-6e59-38af-aa19-53a4b00a8d00 +2019,Entre Rios,II.1.1,12.71424,TJ,CO2,74100.0,kg/TJ,942125.184,Gas Oil combustion consumption by freight transport,AR-E,SESCO,annual,kg,adafe3af-0b7f-3186-bdee-16ed0994a726 +2019,Entre Rios,II.1.1,12.71424,TJ,CH4,3.9,kg/TJ,49.585536,Gas Oil combustion consumption by freight transport,AR-E,SESCO,annual,kg,20713b6b-4691-3f96-9351-2681db66be3a +2019,Entre Rios,II.1.1,12.71424,TJ,N2O,3.9,kg/TJ,49.585536,Gas Oil combustion consumption by freight transport,AR-E,SESCO,annual,kg,20713b6b-4691-3f96-9351-2681db66be3a +2019,Formosa,II.1.1,0.28896,TJ,CO2,74100.0,kg/TJ,21411.935999999998,Gas Oil combustion consumption by freight transport,AR-P,SESCO,annual,kg,b751b380-81d8-3e76-8144-642ee9fc0e30 +2019,Formosa,II.1.1,0.28896,TJ,CH4,3.9,kg/TJ,1.126944,Gas Oil combustion consumption by freight transport,AR-P,SESCO,annual,kg,2cd82097-6684-3c9f-be50-61ad2dd06ea7 +2019,Formosa,II.1.1,0.28896,TJ,N2O,3.9,kg/TJ,1.126944,Gas Oil combustion consumption by freight transport,AR-P,SESCO,annual,kg,2cd82097-6684-3c9f-be50-61ad2dd06ea7 +2019,Jujuy,II.1.1,0.68628,TJ,CO2,74100.0,kg/TJ,50853.348,Gas Oil combustion consumption by freight transport,AR-Y,SESCO,annual,kg,82fc3e37-b9c3-3b84-a057-aec5bbe2f957 +2019,Jujuy,II.1.1,0.68628,TJ,CH4,3.9,kg/TJ,2.676492,Gas Oil combustion consumption by freight transport,AR-Y,SESCO,annual,kg,21dee597-20e6-3deb-9201-f71f1ab06f8b +2019,Jujuy,II.1.1,0.68628,TJ,N2O,3.9,kg/TJ,2.676492,Gas Oil combustion consumption by freight transport,AR-Y,SESCO,annual,kg,21dee597-20e6-3deb-9201-f71f1ab06f8b +2019,La Pampa,II.1.1,1.6254,TJ,CO2,74100.0,kg/TJ,120442.14,Gas Oil combustion consumption by freight transport,AR-L,SESCO,annual,kg,d072ae01-f524-332e-ab25-afc736063007 +2019,La Pampa,II.1.1,1.6254,TJ,CH4,3.9,kg/TJ,6.33906,Gas Oil combustion consumption by freight transport,AR-L,SESCO,annual,kg,d3d7ae0a-7bd0-3581-a068-cd1f540abaf6 +2019,La Pampa,II.1.1,1.6254,TJ,N2O,3.9,kg/TJ,6.33906,Gas Oil combustion consumption by freight transport,AR-L,SESCO,annual,kg,d3d7ae0a-7bd0-3581-a068-cd1f540abaf6 +2019,La Rioja,II.1.1,0.32508,TJ,CO2,74100.0,kg/TJ,24088.428,Gas Oil combustion consumption by freight transport,AR-F,SESCO,annual,kg,4d0207c8-003a-3070-b823-7bf99abfea90 +2019,La Rioja,II.1.1,0.32508,TJ,CH4,3.9,kg/TJ,1.267812,Gas Oil combustion consumption by freight transport,AR-F,SESCO,annual,kg,981acc61-5047-3b2a-ba59-7b75c68c3990 +2019,La Rioja,II.1.1,0.32508,TJ,N2O,3.9,kg/TJ,1.267812,Gas Oil combustion consumption by freight transport,AR-F,SESCO,annual,kg,981acc61-5047-3b2a-ba59-7b75c68c3990 +2019,Mendoza,II.1.1,4.26216,TJ,CO2,74100.0,kg/TJ,315826.056,Gas Oil combustion consumption by freight transport,AR-M,SESCO,annual,kg,475a7fd8-27be-3b3a-be99-167eb3fc92f4 +2019,Mendoza,II.1.1,4.26216,TJ,CH4,3.9,kg/TJ,16.622424,Gas Oil combustion consumption by freight transport,AR-M,SESCO,annual,kg,b06eda9d-1ce6-3aff-bf2e-b0773bb6c2cb +2019,Mendoza,II.1.1,4.26216,TJ,N2O,3.9,kg/TJ,16.622424,Gas Oil combustion consumption by freight transport,AR-M,SESCO,annual,kg,b06eda9d-1ce6-3aff-bf2e-b0773bb6c2cb +2019,Misiones,II.1.1,4.8400799999999995,TJ,CO2,74100.0,kg/TJ,358649.92799999996,Gas Oil combustion consumption by freight transport,AR-N,SESCO,annual,kg,464a0685-9783-36d5-96d6-9137943e55ea +2019,Misiones,II.1.1,4.8400799999999995,TJ,CH4,3.9,kg/TJ,18.876312,Gas Oil combustion consumption by freight transport,AR-N,SESCO,annual,kg,195a7ff8-14ab-3c27-b832-df8ae9ddb4f5 +2019,Misiones,II.1.1,4.8400799999999995,TJ,N2O,3.9,kg/TJ,18.876312,Gas Oil combustion consumption by freight transport,AR-N,SESCO,annual,kg,195a7ff8-14ab-3c27-b832-df8ae9ddb4f5 +2019,Neuquén,II.1.1,0.25284,TJ,CO2,74100.0,kg/TJ,18735.444,Gas Oil combustion consumption by freight transport,AR-Q,SESCO,annual,kg,d88cc33a-e1dc-3611-9574-99ddce4844dc +2019,Neuquén,II.1.1,0.25284,TJ,CH4,3.9,kg/TJ,0.9860760000000001,Gas Oil combustion consumption by freight transport,AR-Q,SESCO,annual,kg,e00f1981-f6e2-3410-85ad-2c207faf9565 +2019,Neuquén,II.1.1,0.25284,TJ,N2O,3.9,kg/TJ,0.9860760000000001,Gas Oil combustion consumption by freight transport,AR-Q,SESCO,annual,kg,e00f1981-f6e2-3410-85ad-2c207faf9565 +2019,Rio Negro,II.1.1,10.33032,TJ,CO2,74100.0,kg/TJ,765476.712,Gas Oil combustion consumption by freight transport,AR-R,SESCO,annual,kg,31d887c4-2ca2-3289-b22b-28e1bcfabdac +2019,Rio Negro,II.1.1,10.33032,TJ,CH4,3.9,kg/TJ,40.288248,Gas Oil combustion consumption by freight transport,AR-R,SESCO,annual,kg,d3b46a3e-6a0e-3fc5-8ec4-3c352f223df7 +2019,Rio Negro,II.1.1,10.33032,TJ,N2O,3.9,kg/TJ,40.288248,Gas Oil combustion consumption by freight transport,AR-R,SESCO,annual,kg,d3b46a3e-6a0e-3fc5-8ec4-3c352f223df7 +2019,Salta,II.1.1,0.65016,TJ,CO2,74100.0,kg/TJ,48176.856,Gas Oil combustion consumption by freight transport,AR-A,SESCO,annual,kg,b8b6675a-ff96-387b-88a1-85960185c734 +2019,Salta,II.1.1,0.65016,TJ,CH4,3.9,kg/TJ,2.535624,Gas Oil combustion consumption by freight transport,AR-A,SESCO,annual,kg,b40389e2-79f7-3f16-b046-a2a65916f5b8 +2019,Salta,II.1.1,0.65016,TJ,N2O,3.9,kg/TJ,2.535624,Gas Oil combustion consumption by freight transport,AR-A,SESCO,annual,kg,b40389e2-79f7-3f16-b046-a2a65916f5b8 +2019,San Juan,II.1.1,0.14448,TJ,CO2,74100.0,kg/TJ,10705.967999999999,Gas Oil combustion consumption by freight transport,AR-J,SESCO,annual,kg,c19a8881-7868-3df5-bbd5-9b1071ddd210 +2019,San Juan,II.1.1,0.14448,TJ,CH4,3.9,kg/TJ,0.563472,Gas Oil combustion consumption by freight transport,AR-J,SESCO,annual,kg,0c833d06-71a8-3521-97e1-29fd53d2648b +2019,San Juan,II.1.1,0.14448,TJ,N2O,3.9,kg/TJ,0.563472,Gas Oil combustion consumption by freight transport,AR-J,SESCO,annual,kg,0c833d06-71a8-3521-97e1-29fd53d2648b +2019,San Luis,II.1.1,10.61928,TJ,CO2,74100.0,kg/TJ,786888.648,Gas Oil combustion consumption by freight transport,AR-D,SESCO,annual,kg,4263e3c1-b6ec-3a34-b06e-8952dfb804c4 +2019,San Luis,II.1.1,10.61928,TJ,CH4,3.9,kg/TJ,41.415192,Gas Oil combustion consumption by freight transport,AR-D,SESCO,annual,kg,953df006-752a-3ecb-be11-38beea02eb3e +2019,San Luis,II.1.1,10.61928,TJ,N2O,3.9,kg/TJ,41.415192,Gas Oil combustion consumption by freight transport,AR-D,SESCO,annual,kg,953df006-752a-3ecb-be11-38beea02eb3e +2019,Santa Cruz,II.1.1,1.30032,TJ,CO2,74100.0,kg/TJ,96353.712,Gas Oil combustion consumption by freight transport,AR-Z,SESCO,annual,kg,711dc2f0-1077-33fb-8775-940b6b6fb66a +2019,Santa Cruz,II.1.1,1.30032,TJ,CH4,3.9,kg/TJ,5.071248,Gas Oil combustion consumption by freight transport,AR-Z,SESCO,annual,kg,dd7ce4c7-8d3e-3892-9d8e-b7bab88ba2e1 +2019,Santa Cruz,II.1.1,1.30032,TJ,N2O,3.9,kg/TJ,5.071248,Gas Oil combustion consumption by freight transport,AR-Z,SESCO,annual,kg,dd7ce4c7-8d3e-3892-9d8e-b7bab88ba2e1 +2019,Santa Fe,II.1.1,43.84968,TJ,CO2,74100.0,kg/TJ,3249261.288,Gas Oil combustion consumption by freight transport,AR-S,SESCO,annual,kg,1aa0eb56-2c35-3563-bead-43aa102b3cbf +2019,Santa Fe,II.1.1,43.84968,TJ,CH4,3.9,kg/TJ,171.01375199999998,Gas Oil combustion consumption by freight transport,AR-S,SESCO,annual,kg,e1062839-86e8-3f9e-b419-5865736fa0d2 +2019,Santa Fe,II.1.1,43.84968,TJ,N2O,3.9,kg/TJ,171.01375199999998,Gas Oil combustion consumption by freight transport,AR-S,SESCO,annual,kg,e1062839-86e8-3f9e-b419-5865736fa0d2 +2019,Santiago del Estero,II.1.1,6.35712,TJ,CO2,74100.0,kg/TJ,471062.592,Gas Oil combustion consumption by freight transport,AR-G,SESCO,annual,kg,fbc5e70b-e3f2-37d4-a3ec-be96d3feedd8 +2019,Santiago del Estero,II.1.1,6.35712,TJ,CH4,3.9,kg/TJ,24.792768,Gas Oil combustion consumption by freight transport,AR-G,SESCO,annual,kg,acc65f85-f07f-3e5b-97d0-899a035a1693 +2019,Santiago del Estero,II.1.1,6.35712,TJ,N2O,3.9,kg/TJ,24.792768,Gas Oil combustion consumption by freight transport,AR-G,SESCO,annual,kg,acc65f85-f07f-3e5b-97d0-899a035a1693 +2019,Tierra del Fuego,II.1.1,0.28896,TJ,CO2,74100.0,kg/TJ,21411.935999999998,Gas Oil combustion consumption by freight transport,AR-V,SESCO,annual,kg,f009434b-5391-3b91-8cab-61d1394a80ae +2019,Tierra del Fuego,II.1.1,0.28896,TJ,CH4,3.9,kg/TJ,1.126944,Gas Oil combustion consumption by freight transport,AR-V,SESCO,annual,kg,a9c6217a-fe4e-3418-ab5e-34f58ad1b625 +2019,Tierra del Fuego,II.1.1,0.28896,TJ,N2O,3.9,kg/TJ,1.126944,Gas Oil combustion consumption by freight transport,AR-V,SESCO,annual,kg,a9c6217a-fe4e-3418-ab5e-34f58ad1b625 +2019,Tucuman,II.1.1,13.545,TJ,CO2,74100.0,kg/TJ,1003684.5,Gas Oil combustion consumption by freight transport,AR-T,SESCO,annual,kg,08bf5562-0f5e-31ab-a018-23ac2731f45c +2019,Tucuman,II.1.1,13.545,TJ,CH4,3.9,kg/TJ,52.8255,Gas Oil combustion consumption by freight transport,AR-T,SESCO,annual,kg,5ff2fee6-2fb0-34b0-8aa6-fc6faf8cf735 +2019,Tucuman,II.1.1,13.545,TJ,N2O,3.9,kg/TJ,52.8255,Gas Oil combustion consumption by freight transport,AR-T,SESCO,annual,kg,5ff2fee6-2fb0-34b0-8aa6-fc6faf8cf735 +2019,Buenos Aires,II.1.1,11.067594999999999,TJ,CO2,73300.0,kg/TJ,811254.7135,Naphtha combustion consumption by freight transport,AR-B,SESCO,annual,kg,d8b1ec99-0410-39dd-86b5-42d88f5e51f0 +2019,Buenos Aires,II.1.1,11.067594999999999,TJ,CH4,0.5,kg/TJ,5.5337974999999995,Naphtha combustion consumption by freight transport,AR-B,SESCO,annual,kg,66682879-025f-3af0-b06d-1e8edeaf4f08 +2019,Buenos Aires,II.1.1,11.067594999999999,TJ,N2O,2.0,kg/TJ,22.135189999999998,Naphtha combustion consumption by freight transport,AR-B,SESCO,annual,kg,df7083bb-38a8-3439-bb21-903c803f64b2 +2019,Capital Federal,II.1.1,5.071219999999999,TJ,CO2,73300.0,kg/TJ,371720.426,Naphtha combustion consumption by freight transport,AR-C,SESCO,annual,kg,e4232568-0be6-363a-b36e-0ce2363acbe4 +2019,Capital Federal,II.1.1,5.071219999999999,TJ,CH4,0.5,kg/TJ,2.5356099999999997,Naphtha combustion consumption by freight transport,AR-C,SESCO,annual,kg,67f6409b-45d4-3dc7-8d14-e6a05713ec2e +2019,Capital Federal,II.1.1,5.071219999999999,TJ,N2O,2.0,kg/TJ,10.142439999999999,Naphtha combustion consumption by freight transport,AR-C,SESCO,annual,kg,1b0896bd-f1f0-3f95-9dd0-26ebf433430d +2019,Córdoba,II.1.1,1.57619,TJ,CO2,73300.0,kg/TJ,115534.727,Naphtha combustion consumption by freight transport,AR-X,SESCO,annual,kg,45d4d3ec-04f4-34e8-8400-d30df0fd491b +2019,Córdoba,II.1.1,1.57619,TJ,CH4,0.5,kg/TJ,0.788095,Naphtha combustion consumption by freight transport,AR-X,SESCO,annual,kg,1152cfee-b813-3e75-a013-43f79d229746 +2019,Córdoba,II.1.1,1.57619,TJ,N2O,2.0,kg/TJ,3.15238,Naphtha combustion consumption by freight transport,AR-X,SESCO,annual,kg,bb952706-d910-362e-a489-11b7f17ac456 +2019,Entre Rios,II.1.1,0.30838499999999996,TJ,CO2,73300.0,kg/TJ,22604.620499999997,Naphtha combustion consumption by freight transport,AR-E,SESCO,annual,kg,c8e9b621-406a-3211-8a7a-2c7ee7d21b3b +2019,Entre Rios,II.1.1,0.30838499999999996,TJ,CH4,0.5,kg/TJ,0.15419249999999998,Naphtha combustion consumption by freight transport,AR-E,SESCO,annual,kg,38f5897d-3a1a-365c-be6b-778fcaa517c5 +2019,Entre Rios,II.1.1,0.30838499999999996,TJ,N2O,2.0,kg/TJ,0.6167699999999999,Naphtha combustion consumption by freight transport,AR-E,SESCO,annual,kg,ea0e6d72-e90e-3f6d-b12d-860eed03e34a +2019,Mendoza,II.1.1,0.20559,TJ,CO2,73300.0,kg/TJ,15069.747,Naphtha combustion consumption by freight transport,AR-M,SESCO,annual,kg,2d1e5c65-2e61-3f5f-8482-da5f5fcffd6f +2019,Mendoza,II.1.1,0.20559,TJ,CH4,0.5,kg/TJ,0.102795,Naphtha combustion consumption by freight transport,AR-M,SESCO,annual,kg,37030ee2-52a4-3a79-9db9-28e6ac56f390 +2019,Mendoza,II.1.1,0.20559,TJ,N2O,2.0,kg/TJ,0.41118,Naphtha combustion consumption by freight transport,AR-M,SESCO,annual,kg,010b4174-aba4-3178-adbe-0e591d94c6d6 +2019,Santa Fe,II.1.1,1.678985,TJ,CO2,73300.0,kg/TJ,123069.6005,Naphtha combustion consumption by freight transport,AR-S,SESCO,annual,kg,01d810b7-03cc-32d3-b9bb-436d1a651013 +2019,Santa Fe,II.1.1,1.678985,TJ,CH4,0.5,kg/TJ,0.8394925,Naphtha combustion consumption by freight transport,AR-S,SESCO,annual,kg,7c300bda-b744-34b3-a43c-b140c636833f +2019,Santa Fe,II.1.1,1.678985,TJ,N2O,2.0,kg/TJ,3.35797,Naphtha combustion consumption by freight transport,AR-S,SESCO,annual,kg,a7b4e598-8ee5-3c7b-9d94-1d72f166782f +2019,Buenos Aires,II.1.1,6.681674999999999,TJ,CO2,73300.0,kg/TJ,489766.77749999997,Naphtha combustion consumption by freight transport,AR-B,SESCO,annual,kg,fafc5b0c-6d29-3235-91ed-613277a44af8 +2019,Buenos Aires,II.1.1,6.681674999999999,TJ,CH4,0.5,kg/TJ,3.3408374999999997,Naphtha combustion consumption by freight transport,AR-B,SESCO,annual,kg,09f43f52-5586-339d-a01d-83cfb65c60fa +2019,Buenos Aires,II.1.1,6.681674999999999,TJ,N2O,2.0,kg/TJ,13.363349999999999,Naphtha combustion consumption by freight transport,AR-B,SESCO,annual,kg,72d1a093-ceb6-3e8e-a10e-088003ff3f65 +2019,Capital Federal,II.1.1,2.80973,TJ,CO2,73300.0,kg/TJ,205953.209,Naphtha combustion consumption by freight transport,AR-C,SESCO,annual,kg,5a145291-4629-353c-ba4d-d7f60095b467 +2019,Capital Federal,II.1.1,2.80973,TJ,CH4,0.5,kg/TJ,1.404865,Naphtha combustion consumption by freight transport,AR-C,SESCO,annual,kg,884268ff-aecc-3ae0-8916-1568939a731a +2019,Capital Federal,II.1.1,2.80973,TJ,N2O,2.0,kg/TJ,5.61946,Naphtha combustion consumption by freight transport,AR-C,SESCO,annual,kg,45340646-c154-3eee-9300-ab013f14a0b4 +2019,Chaco,II.1.1,0.034265,TJ,CO2,73300.0,kg/TJ,2511.6245,Naphtha combustion consumption by freight transport,AR-H,SESCO,annual,kg,9b3911a5-364c-30ff-ad52-a4c5f3f0eccd +2019,Chaco,II.1.1,0.034265,TJ,CH4,0.5,kg/TJ,0.0171325,Naphtha combustion consumption by freight transport,AR-H,SESCO,annual,kg,cf792043-323d-3be5-8e13-15cf4be88877 +2019,Chaco,II.1.1,0.034265,TJ,N2O,2.0,kg/TJ,0.06853,Naphtha combustion consumption by freight transport,AR-H,SESCO,annual,kg,560a6c85-e77d-3b4b-8c8b-cef597387b53 +2019,Corrientes,II.1.1,0.34265,TJ,CO2,73300.0,kg/TJ,25116.245,Naphtha combustion consumption by freight transport,AR-W,SESCO,annual,kg,75122ea5-c66d-363e-9445-ca9ef977d5a9 +2019,Corrientes,II.1.1,0.34265,TJ,CH4,0.5,kg/TJ,0.171325,Naphtha combustion consumption by freight transport,AR-W,SESCO,annual,kg,1370ab4e-98c0-3a08-9380-d86e2419d843 +2019,Corrientes,II.1.1,0.34265,TJ,N2O,2.0,kg/TJ,0.6853,Naphtha combustion consumption by freight transport,AR-W,SESCO,annual,kg,2372f826-6302-3ee2-8db6-a9497a48fe9b +2019,Córdoba,II.1.1,0.9936849999999999,TJ,CO2,73300.0,kg/TJ,72837.1105,Naphtha combustion consumption by freight transport,AR-X,SESCO,annual,kg,26370b89-8b93-37c4-a213-18f1943681fe +2019,Córdoba,II.1.1,0.9936849999999999,TJ,CH4,0.5,kg/TJ,0.49684249999999996,Naphtha combustion consumption by freight transport,AR-X,SESCO,annual,kg,5264c4e7-9395-32ec-977f-51c5f0521365 +2019,Córdoba,II.1.1,0.9936849999999999,TJ,N2O,2.0,kg/TJ,1.9873699999999999,Naphtha combustion consumption by freight transport,AR-X,SESCO,annual,kg,3c82f63b-73f8-3516-afea-343c902c0f30 +2019,Entre Rios,II.1.1,1.1650099999999999,TJ,CO2,73300.0,kg/TJ,85395.233,Naphtha combustion consumption by freight transport,AR-E,SESCO,annual,kg,dea98042-b7a6-36da-884d-ee60881965dc +2019,Entre Rios,II.1.1,1.1650099999999999,TJ,CH4,0.5,kg/TJ,0.5825049999999999,Naphtha combustion consumption by freight transport,AR-E,SESCO,annual,kg,af39276a-0e54-39d9-ad8c-8d5399dbcbd3 +2019,Entre Rios,II.1.1,1.1650099999999999,TJ,N2O,2.0,kg/TJ,2.3300199999999998,Naphtha combustion consumption by freight transport,AR-E,SESCO,annual,kg,153bd5c0-0b26-3d74-b4d9-68028dfad206 +2019,Santa Fe,II.1.1,1.473395,TJ,CO2,73300.0,kg/TJ,107999.8535,Naphtha combustion consumption by freight transport,AR-S,SESCO,annual,kg,b47f3c99-a995-3d01-8215-8ac176c3901f +2019,Santa Fe,II.1.1,1.473395,TJ,CH4,0.5,kg/TJ,0.7366975,Naphtha combustion consumption by freight transport,AR-S,SESCO,annual,kg,f46568ec-4065-3eb1-913f-17ccd35bd09b +2019,Santa Fe,II.1.1,1.473395,TJ,N2O,2.0,kg/TJ,2.94679,Naphtha combustion consumption by freight transport,AR-S,SESCO,annual,kg,3ac678ff-cbe5-3855-a259-6b370bb3a1d4 +2019,Buenos Aires,II.1.1,1675.17336,TJ,CO2,74100.0,kg/TJ,124130345.976,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,c5e547a0-80f2-3ce5-b126-33374fc5b4e2 +2019,Buenos Aires,II.1.1,1675.17336,TJ,CH4,3.9,kg/TJ,6533.176104,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,de966c40-ffff-3784-9eff-70829fad0af7 +2019,Buenos Aires,II.1.1,1675.17336,TJ,N2O,3.9,kg/TJ,6533.176104,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,de966c40-ffff-3784-9eff-70829fad0af7 +2019,Capital Federal,II.1.1,738.8346,TJ,CO2,74100.0,kg/TJ,54747643.86,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,f9eaa3d5-4eb9-35d2-8240-54e7f70fc846 +2019,Capital Federal,II.1.1,738.8346,TJ,CH4,3.9,kg/TJ,2881.45494,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,58818e04-7498-3329-9d7b-eeffdce46c8d +2019,Capital Federal,II.1.1,738.8346,TJ,N2O,3.9,kg/TJ,2881.45494,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,58818e04-7498-3329-9d7b-eeffdce46c8d +2019,Chaco,II.1.1,23.58636,TJ,CO2,74100.0,kg/TJ,1747749.2759999998,Gas Oil combustion consumption by public passenger transport,AR-H,SESCO,annual,kg,2e1bf3fb-8d1e-331f-b7a6-c93947813c1c +2019,Chaco,II.1.1,23.58636,TJ,CH4,3.9,kg/TJ,91.98680399999999,Gas Oil combustion consumption by public passenger transport,AR-H,SESCO,annual,kg,907eee34-f15b-3daa-a1fd-cb38eb3bd92e +2019,Chaco,II.1.1,23.58636,TJ,N2O,3.9,kg/TJ,91.98680399999999,Gas Oil combustion consumption by public passenger transport,AR-H,SESCO,annual,kg,907eee34-f15b-3daa-a1fd-cb38eb3bd92e +2019,Chubut,II.1.1,4.76784,TJ,CO2,74100.0,kg/TJ,353296.94399999996,Gas Oil combustion consumption by public passenger transport,AR-U,SESCO,annual,kg,1ca73b86-005c-323c-9c4c-f552a1f9e3a9 +2019,Chubut,II.1.1,4.76784,TJ,CH4,3.9,kg/TJ,18.594575999999996,Gas Oil combustion consumption by public passenger transport,AR-U,SESCO,annual,kg,18a65fa4-a5e8-3018-b50c-8e6bed87bcb4 +2019,Chubut,II.1.1,4.76784,TJ,N2O,3.9,kg/TJ,18.594575999999996,Gas Oil combustion consumption by public passenger transport,AR-U,SESCO,annual,kg,18a65fa4-a5e8-3018-b50c-8e6bed87bcb4 +2019,Corrientes,II.1.1,0.57792,TJ,CO2,74100.0,kg/TJ,42823.871999999996,Gas Oil combustion consumption by public passenger transport,AR-W,SESCO,annual,kg,9ab138d4-546f-33bc-8972-d411d127d675 +2019,Corrientes,II.1.1,0.57792,TJ,CH4,3.9,kg/TJ,2.253888,Gas Oil combustion consumption by public passenger transport,AR-W,SESCO,annual,kg,4617c8f5-b0e3-39b3-b5f2-4b8d79287972 +2019,Corrientes,II.1.1,0.57792,TJ,N2O,3.9,kg/TJ,2.253888,Gas Oil combustion consumption by public passenger transport,AR-W,SESCO,annual,kg,4617c8f5-b0e3-39b3-b5f2-4b8d79287972 +2019,Córdoba,II.1.1,277.83504,TJ,CO2,74100.0,kg/TJ,20587576.463999998,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,e2c6f16a-9165-385e-b324-6c9186f634b2 +2019,Córdoba,II.1.1,277.83504,TJ,CH4,3.9,kg/TJ,1083.556656,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,aa3e6710-e169-312e-b0a6-1b34b5781f43 +2019,Córdoba,II.1.1,277.83504,TJ,N2O,3.9,kg/TJ,1083.556656,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,aa3e6710-e169-312e-b0a6-1b34b5781f43 +2019,Entre Rios,II.1.1,44.68044,TJ,CO2,74100.0,kg/TJ,3310820.604,Gas Oil combustion consumption by public passenger transport,AR-E,SESCO,annual,kg,207737b4-ed49-3c65-87a0-aa8f06014df0 +2019,Entre Rios,II.1.1,44.68044,TJ,CH4,3.9,kg/TJ,174.253716,Gas Oil combustion consumption by public passenger transport,AR-E,SESCO,annual,kg,e74b9afb-646e-3187-a42c-201d6b80fcb9 +2019,Entre Rios,II.1.1,44.68044,TJ,N2O,3.9,kg/TJ,174.253716,Gas Oil combustion consumption by public passenger transport,AR-E,SESCO,annual,kg,e74b9afb-646e-3187-a42c-201d6b80fcb9 +2019,Formosa,II.1.1,7.80192,TJ,CO2,74100.0,kg/TJ,578122.272,Gas Oil combustion consumption by public passenger transport,AR-P,SESCO,annual,kg,46d97b69-511f-3157-bd1b-3297a2389839 +2019,Formosa,II.1.1,7.80192,TJ,CH4,3.9,kg/TJ,30.427488,Gas Oil combustion consumption by public passenger transport,AR-P,SESCO,annual,kg,c65dbd18-e00f-3cfe-a74e-27d4f013c07a +2019,Formosa,II.1.1,7.80192,TJ,N2O,3.9,kg/TJ,30.427488,Gas Oil combustion consumption by public passenger transport,AR-P,SESCO,annual,kg,c65dbd18-e00f-3cfe-a74e-27d4f013c07a +2019,La Pampa,II.1.1,4.55112,TJ,CO2,74100.0,kg/TJ,337237.992,Gas Oil combustion consumption by public passenger transport,AR-L,SESCO,annual,kg,27afe1be-e39b-30eb-92f6-d0a7cb2cc795 +2019,La Pampa,II.1.1,4.55112,TJ,CH4,3.9,kg/TJ,17.749368,Gas Oil combustion consumption by public passenger transport,AR-L,SESCO,annual,kg,3489c499-9c7d-316d-8a8c-ae475d04d7c8 +2019,La Pampa,II.1.1,4.55112,TJ,N2O,3.9,kg/TJ,17.749368,Gas Oil combustion consumption by public passenger transport,AR-L,SESCO,annual,kg,3489c499-9c7d-316d-8a8c-ae475d04d7c8 +2019,Mendoza,II.1.1,8.126999999999999,TJ,CO2,74100.0,kg/TJ,602210.7,Gas Oil combustion consumption by public passenger transport,AR-M,SESCO,annual,kg,fd268c90-5792-3992-b4a4-6129ad1d37f9 +2019,Mendoza,II.1.1,8.126999999999999,TJ,CH4,3.9,kg/TJ,31.695299999999996,Gas Oil combustion consumption by public passenger transport,AR-M,SESCO,annual,kg,a35b4336-5970-3b59-b81e-02882c775e72 +2019,Mendoza,II.1.1,8.126999999999999,TJ,N2O,3.9,kg/TJ,31.695299999999996,Gas Oil combustion consumption by public passenger transport,AR-M,SESCO,annual,kg,a35b4336-5970-3b59-b81e-02882c775e72 +2019,Misiones,II.1.1,55.48032,TJ,CO2,74100.0,kg/TJ,4111091.712,Gas Oil combustion consumption by public passenger transport,AR-N,SESCO,annual,kg,8f6ce71a-dd34-3b28-977a-bde4007ff23c +2019,Misiones,II.1.1,55.48032,TJ,CH4,3.9,kg/TJ,216.373248,Gas Oil combustion consumption by public passenger transport,AR-N,SESCO,annual,kg,957b26ee-19b0-38b1-9131-62120ecd356d +2019,Misiones,II.1.1,55.48032,TJ,N2O,3.9,kg/TJ,216.373248,Gas Oil combustion consumption by public passenger transport,AR-N,SESCO,annual,kg,957b26ee-19b0-38b1-9131-62120ecd356d +2019,Neuquén,II.1.1,3.5758799999999997,TJ,CO2,74100.0,kg/TJ,264972.708,Gas Oil combustion consumption by public passenger transport,AR-Q,SESCO,annual,kg,a813608e-7b68-3729-8a17-21434620c704 +2019,Neuquén,II.1.1,3.5758799999999997,TJ,CH4,3.9,kg/TJ,13.945931999999999,Gas Oil combustion consumption by public passenger transport,AR-Q,SESCO,annual,kg,07c6cd0a-a684-31fe-b9b7-f0154d71e270 +2019,Neuquén,II.1.1,3.5758799999999997,TJ,N2O,3.9,kg/TJ,13.945931999999999,Gas Oil combustion consumption by public passenger transport,AR-Q,SESCO,annual,kg,07c6cd0a-a684-31fe-b9b7-f0154d71e270 +2019,Rio Negro,II.1.1,12.244679999999999,TJ,CO2,74100.0,kg/TJ,907330.788,Gas Oil combustion consumption by public passenger transport,AR-R,SESCO,annual,kg,754e90b5-1a29-3341-9309-aab37e1f0292 +2019,Rio Negro,II.1.1,12.244679999999999,TJ,CH4,3.9,kg/TJ,47.754251999999994,Gas Oil combustion consumption by public passenger transport,AR-R,SESCO,annual,kg,94462824-89cd-3e77-aca8-a4ba24a2f75b +2019,Rio Negro,II.1.1,12.244679999999999,TJ,N2O,3.9,kg/TJ,47.754251999999994,Gas Oil combustion consumption by public passenger transport,AR-R,SESCO,annual,kg,94462824-89cd-3e77-aca8-a4ba24a2f75b +2019,Salta,II.1.1,1.19196,TJ,CO2,74100.0,kg/TJ,88324.23599999999,Gas Oil combustion consumption by public passenger transport,AR-A,SESCO,annual,kg,9b89af07-0a00-308c-a525-5eb9e1b000a8 +2019,Salta,II.1.1,1.19196,TJ,CH4,3.9,kg/TJ,4.648643999999999,Gas Oil combustion consumption by public passenger transport,AR-A,SESCO,annual,kg,83d70007-07f1-334b-a0fb-ea6a43f9a113 +2019,Salta,II.1.1,1.19196,TJ,N2O,3.9,kg/TJ,4.648643999999999,Gas Oil combustion consumption by public passenger transport,AR-A,SESCO,annual,kg,83d70007-07f1-334b-a0fb-ea6a43f9a113 +2019,San Luis,II.1.1,0.25284,TJ,CO2,74100.0,kg/TJ,18735.444,Gas Oil combustion consumption by public passenger transport,AR-D,SESCO,annual,kg,d1655122-ba7c-3b9c-b821-23ebd81ca9a2 +2019,San Luis,II.1.1,0.25284,TJ,CH4,3.9,kg/TJ,0.9860760000000001,Gas Oil combustion consumption by public passenger transport,AR-D,SESCO,annual,kg,7093472b-507e-3802-a42b-8c0bf0b5fb6c +2019,San Luis,II.1.1,0.25284,TJ,N2O,3.9,kg/TJ,0.9860760000000001,Gas Oil combustion consumption by public passenger transport,AR-D,SESCO,annual,kg,7093472b-507e-3802-a42b-8c0bf0b5fb6c +2019,Santa Fe,II.1.1,307.7424,TJ,CO2,74100.0,kg/TJ,22803711.84,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,ce0fb43e-f5b1-3107-83a9-1f2b43a6f4d8 +2019,Santa Fe,II.1.1,307.7424,TJ,CH4,3.9,kg/TJ,1200.19536,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,380f75a6-4364-330c-838f-c26273baea5c +2019,Santa Fe,II.1.1,307.7424,TJ,N2O,3.9,kg/TJ,1200.19536,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,380f75a6-4364-330c-838f-c26273baea5c +2019,Santiago del Estero,II.1.1,0.86688,TJ,CO2,74100.0,kg/TJ,64235.808,Gas Oil combustion consumption by public passenger transport,AR-G,SESCO,annual,kg,c38b5acc-d360-32d8-9607-5e85c5d38490 +2019,Santiago del Estero,II.1.1,0.86688,TJ,CH4,3.9,kg/TJ,3.380832,Gas Oil combustion consumption by public passenger transport,AR-G,SESCO,annual,kg,235031e6-3bfa-34bb-bfa7-87dfe5447339 +2019,Santiago del Estero,II.1.1,0.86688,TJ,N2O,3.9,kg/TJ,3.380832,Gas Oil combustion consumption by public passenger transport,AR-G,SESCO,annual,kg,235031e6-3bfa-34bb-bfa7-87dfe5447339 +2019,Tucuman,II.1.1,311.67948,TJ,CO2,74100.0,kg/TJ,23095449.468000002,Gas Oil combustion consumption by public passenger transport,AR-T,SESCO,annual,kg,f68d9cc3-af63-3e8a-8606-64ebe6633bac +2019,Tucuman,II.1.1,311.67948,TJ,CH4,3.9,kg/TJ,1215.549972,Gas Oil combustion consumption by public passenger transport,AR-T,SESCO,annual,kg,32170180-82f8-3f80-a1dc-450ba3f04ee2 +2019,Tucuman,II.1.1,311.67948,TJ,N2O,3.9,kg/TJ,1215.549972,Gas Oil combustion consumption by public passenger transport,AR-T,SESCO,annual,kg,32170180-82f8-3f80-a1dc-450ba3f04ee2 +2019,Buenos Aires,II.1.1,445.03452,TJ,CO2,74100.0,kg/TJ,32977057.932,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,f831125d-b713-36a2-802c-9c82d6990177 +2019,Buenos Aires,II.1.1,445.03452,TJ,CH4,3.9,kg/TJ,1735.634628,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,4ea8f078-2617-356b-a5b6-0e02b88d83ca +2019,Buenos Aires,II.1.1,445.03452,TJ,N2O,3.9,kg/TJ,1735.634628,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,4ea8f078-2617-356b-a5b6-0e02b88d83ca +2019,Capital Federal,II.1.1,252.00923999999998,TJ,CO2,74100.0,kg/TJ,18673884.683999997,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,3763c652-311e-33ed-afb6-6e8403803754 +2019,Capital Federal,II.1.1,252.00923999999998,TJ,CH4,3.9,kg/TJ,982.8360359999999,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,8747c2a8-0175-3deb-b073-b66ad7962c2d +2019,Capital Federal,II.1.1,252.00923999999998,TJ,N2O,3.9,kg/TJ,982.8360359999999,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,8747c2a8-0175-3deb-b073-b66ad7962c2d +2019,Chubut,II.1.1,13.1838,TJ,CO2,74100.0,kg/TJ,976919.58,Gas Oil combustion consumption by public passenger transport,AR-U,SESCO,annual,kg,2ac08eea-7ebc-3b8e-8052-2c554306fef4 +2019,Chubut,II.1.1,13.1838,TJ,CH4,3.9,kg/TJ,51.41682,Gas Oil combustion consumption by public passenger transport,AR-U,SESCO,annual,kg,cbc0606b-0910-3480-a798-9f30cf48bfae +2019,Chubut,II.1.1,13.1838,TJ,N2O,3.9,kg/TJ,51.41682,Gas Oil combustion consumption by public passenger transport,AR-U,SESCO,annual,kg,cbc0606b-0910-3480-a798-9f30cf48bfae +2019,Corrientes,II.1.1,0.25284,TJ,CO2,74100.0,kg/TJ,18735.444,Gas Oil combustion consumption by public passenger transport,AR-W,SESCO,annual,kg,0354494c-5c8c-3661-957c-252edf68e61f +2019,Corrientes,II.1.1,0.25284,TJ,CH4,3.9,kg/TJ,0.9860760000000001,Gas Oil combustion consumption by public passenger transport,AR-W,SESCO,annual,kg,84fe2139-6d90-3674-99aa-dc1595dbd8cd +2019,Corrientes,II.1.1,0.25284,TJ,N2O,3.9,kg/TJ,0.9860760000000001,Gas Oil combustion consumption by public passenger transport,AR-W,SESCO,annual,kg,84fe2139-6d90-3674-99aa-dc1595dbd8cd +2019,Córdoba,II.1.1,25.861919999999998,TJ,CO2,74100.0,kg/TJ,1916368.2719999999,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,8b6185d3-d5fc-3d3e-8e45-c5bdd3ce6bd4 +2019,Córdoba,II.1.1,25.861919999999998,TJ,CH4,3.9,kg/TJ,100.861488,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,adf8e685-a98a-3f65-bfc3-ed66f0b3db80 +2019,Córdoba,II.1.1,25.861919999999998,TJ,N2O,3.9,kg/TJ,100.861488,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,adf8e685-a98a-3f65-bfc3-ed66f0b3db80 +2019,Entre Rios,II.1.1,1.30032,TJ,CO2,74100.0,kg/TJ,96353.712,Gas Oil combustion consumption by public passenger transport,AR-E,SESCO,annual,kg,699d24ff-b993-36d0-8fdd-6eb5464b26b2 +2019,Entre Rios,II.1.1,1.30032,TJ,CH4,3.9,kg/TJ,5.071248,Gas Oil combustion consumption by public passenger transport,AR-E,SESCO,annual,kg,9333fda9-3e51-3064-96ad-2e04f2a5c3d6 +2019,Entre Rios,II.1.1,1.30032,TJ,N2O,3.9,kg/TJ,5.071248,Gas Oil combustion consumption by public passenger transport,AR-E,SESCO,annual,kg,9333fda9-3e51-3064-96ad-2e04f2a5c3d6 +2019,La Pampa,II.1.1,6.1404,TJ,CO2,74100.0,kg/TJ,455003.63999999996,Gas Oil combustion consumption by public passenger transport,AR-L,SESCO,annual,kg,0e1735af-c357-39bd-a560-52f3d8fee8ac +2019,La Pampa,II.1.1,6.1404,TJ,CH4,3.9,kg/TJ,23.94756,Gas Oil combustion consumption by public passenger transport,AR-L,SESCO,annual,kg,c3c972c5-ff9f-396b-9801-b44f7e7c1187 +2019,La Pampa,II.1.1,6.1404,TJ,N2O,3.9,kg/TJ,23.94756,Gas Oil combustion consumption by public passenger transport,AR-L,SESCO,annual,kg,c3c972c5-ff9f-396b-9801-b44f7e7c1187 +2019,Mendoza,II.1.1,0.25284,TJ,CO2,74100.0,kg/TJ,18735.444,Gas Oil combustion consumption by public passenger transport,AR-M,SESCO,annual,kg,2741fac7-9f5e-3547-bea4-c5bfb284ad3b +2019,Mendoza,II.1.1,0.25284,TJ,CH4,3.9,kg/TJ,0.9860760000000001,Gas Oil combustion consumption by public passenger transport,AR-M,SESCO,annual,kg,fa05482d-d129-397e-8694-6c3c2bf89e39 +2019,Mendoza,II.1.1,0.25284,TJ,N2O,3.9,kg/TJ,0.9860760000000001,Gas Oil combustion consumption by public passenger transport,AR-M,SESCO,annual,kg,fa05482d-d129-397e-8694-6c3c2bf89e39 +2019,Misiones,II.1.1,22.86396,TJ,CO2,74100.0,kg/TJ,1694219.436,Gas Oil combustion consumption by public passenger transport,AR-N,SESCO,annual,kg,10194be2-81ec-3b29-9098-4eb4bd96dd05 +2019,Misiones,II.1.1,22.86396,TJ,CH4,3.9,kg/TJ,89.169444,Gas Oil combustion consumption by public passenger transport,AR-N,SESCO,annual,kg,4ce4aeb7-2c9f-3133-a9c8-97284ba14a0c +2019,Misiones,II.1.1,22.86396,TJ,N2O,3.9,kg/TJ,89.169444,Gas Oil combustion consumption by public passenger transport,AR-N,SESCO,annual,kg,4ce4aeb7-2c9f-3133-a9c8-97284ba14a0c +2019,Neuquén,II.1.1,27.956879999999998,TJ,CO2,74100.0,kg/TJ,2071604.808,Gas Oil combustion consumption by public passenger transport,AR-Q,SESCO,annual,kg,e9d2b28e-0bdf-3ccd-bffa-4f7195a8bafe +2019,Neuquén,II.1.1,27.956879999999998,TJ,CH4,3.9,kg/TJ,109.031832,Gas Oil combustion consumption by public passenger transport,AR-Q,SESCO,annual,kg,7563cfad-5d67-3510-a0fd-6ac0aac31df6 +2019,Neuquén,II.1.1,27.956879999999998,TJ,N2O,3.9,kg/TJ,109.031832,Gas Oil combustion consumption by public passenger transport,AR-Q,SESCO,annual,kg,7563cfad-5d67-3510-a0fd-6ac0aac31df6 +2019,Rio Negro,II.1.1,92.06988,TJ,CO2,74100.0,kg/TJ,6822378.108,Gas Oil combustion consumption by public passenger transport,AR-R,SESCO,annual,kg,d4988de1-fd94-38b5-b500-b91627aa1538 +2019,Rio Negro,II.1.1,92.06988,TJ,CH4,3.9,kg/TJ,359.07253199999997,Gas Oil combustion consumption by public passenger transport,AR-R,SESCO,annual,kg,efbbc200-e945-32cf-8b98-cd07593f09af +2019,Rio Negro,II.1.1,92.06988,TJ,N2O,3.9,kg/TJ,359.07253199999997,Gas Oil combustion consumption by public passenger transport,AR-R,SESCO,annual,kg,efbbc200-e945-32cf-8b98-cd07593f09af +2019,Salta,II.1.1,0.18059999999999998,TJ,CO2,74100.0,kg/TJ,13382.46,Gas Oil combustion consumption by public passenger transport,AR-A,SESCO,annual,kg,5ef3f57a-0596-3e0b-ac04-edb91389ef23 +2019,Salta,II.1.1,0.18059999999999998,TJ,CH4,3.9,kg/TJ,0.70434,Gas Oil combustion consumption by public passenger transport,AR-A,SESCO,annual,kg,c9f22fc0-245d-3da0-8b4e-b15e0d5c9c8b +2019,Salta,II.1.1,0.18059999999999998,TJ,N2O,3.9,kg/TJ,0.70434,Gas Oil combustion consumption by public passenger transport,AR-A,SESCO,annual,kg,c9f22fc0-245d-3da0-8b4e-b15e0d5c9c8b +2019,Santa Fe,II.1.1,20.11884,TJ,CO2,74100.0,kg/TJ,1490806.044,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,ca16f66a-031e-3a06-bbd2-8d2d7e869806 +2019,Santa Fe,II.1.1,20.11884,TJ,CH4,3.9,kg/TJ,78.463476,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,bdd946b5-e803-37b6-a74f-3c8c1add241f +2019,Santa Fe,II.1.1,20.11884,TJ,N2O,3.9,kg/TJ,78.463476,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,bdd946b5-e803-37b6-a74f-3c8c1add241f +2019,Santiago del Estero,II.1.1,0.10836,TJ,CO2,74100.0,kg/TJ,8029.476,Gas Oil combustion consumption by public passenger transport,AR-G,SESCO,annual,kg,4a796876-b32a-34d2-9ec2-57d047fb5e0b +2019,Santiago del Estero,II.1.1,0.10836,TJ,CH4,3.9,kg/TJ,0.422604,Gas Oil combustion consumption by public passenger transport,AR-G,SESCO,annual,kg,16848513-cf04-377a-a082-9697c9e54b0e +2019,Santiago del Estero,II.1.1,0.10836,TJ,N2O,3.9,kg/TJ,0.422604,Gas Oil combustion consumption by public passenger transport,AR-G,SESCO,annual,kg,16848513-cf04-377a-a082-9697c9e54b0e +2019,Santa Fe,II.1.1,0.513975,TJ,CO2,73300.0,kg/TJ,37674.3675,Naphtha combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,ae571cb5-b342-3439-81b6-36fb5306e68b +2019,Santa Fe,II.1.1,0.513975,TJ,CH4,0.5,kg/TJ,0.2569875,Naphtha combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,861e1036-0220-38f2-839d-f217852c3c15 +2019,Santa Fe,II.1.1,0.513975,TJ,N2O,2.0,kg/TJ,1.02795,Naphtha combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,eddcb05e-35c8-3912-b392-7931e21cf9f6 +2019,Buenos Aires,II.5.1,10.9421,TJ,CO2,69300.0,kg/TJ,758287.53,Motor Gasoline combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,b7d7ebb0-d40f-366e-b260-f7561d648648 +2019,Buenos Aires,II.5.1,10.9421,TJ,CH4,33.0,kg/TJ,361.0893,Motor Gasoline combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,039802b9-036c-321e-b2a2-0b074af514d7 +2019,Buenos Aires,II.5.1,10.9421,TJ,N2O,3.2,kg/TJ,35.014720000000004,Motor Gasoline combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,6ac9588d-2d14-3b56-8828-db40831dd428 +2019,Buenos Aires,II.5.1,373.58916,TJ,CO2,74100.0,kg/TJ,27682956.756,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,9def7f71-ca27-3e67-8705-53f96311507a +2019,Buenos Aires,II.5.1,373.58916,TJ,CH4,3.9,kg/TJ,1456.9977239999998,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,457a20c3-751f-3672-addb-1f9abb2d9235 +2019,Buenos Aires,II.5.1,373.58916,TJ,N2O,3.9,kg/TJ,1456.9977239999998,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,457a20c3-751f-3672-addb-1f9abb2d9235 +2019,Córdoba,II.5.1,19.324199999999998,TJ,CO2,74100.0,kg/TJ,1431923.2199999997,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,90f326ef-b70b-390b-be04-e4c8aa44978b +2019,Córdoba,II.5.1,19.324199999999998,TJ,CH4,3.9,kg/TJ,75.36437999999998,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,f9ff59f5-6575-3721-bf8d-f92c461b5d1a +2019,Córdoba,II.5.1,19.324199999999998,TJ,N2O,3.9,kg/TJ,75.36437999999998,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,f9ff59f5-6575-3721-bf8d-f92c461b5d1a +2019,Entre Rios,II.5.1,88.6746,TJ,CO2,74100.0,kg/TJ,6570787.859999999,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,75e5b74d-cf52-3e0d-a7b9-ec387c58f1c3 +2019,Entre Rios,II.5.1,88.6746,TJ,CH4,3.9,kg/TJ,345.83094,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,62fc58cb-021a-34bc-bad1-a78c4de9baee +2019,Entre Rios,II.5.1,88.6746,TJ,N2O,3.9,kg/TJ,345.83094,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,62fc58cb-021a-34bc-bad1-a78c4de9baee +2019,Santa Fe,II.5.1,33.80832,TJ,CO2,74100.0,kg/TJ,2505196.512,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,30f4ad56-a346-38e6-94c0-f1a15e72f857 +2019,Santa Fe,II.5.1,33.80832,TJ,CH4,3.9,kg/TJ,131.852448,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,bd5bd7d9-98ce-3cce-a089-0c707071e5fa +2019,Santa Fe,II.5.1,33.80832,TJ,N2O,3.9,kg/TJ,131.852448,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,bd5bd7d9-98ce-3cce-a089-0c707071e5fa +2019,Tucuman,II.5.1,102.61692,TJ,CO2,74100.0,kg/TJ,7603913.772,Gas Oil combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,707ff3a8-3a2d-32f1-9371-44e1570ddd8d +2019,Tucuman,II.5.1,102.61692,TJ,CH4,3.9,kg/TJ,400.205988,Gas Oil combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,fdb9f1f8-39cb-32f9-80f8-0cc96b57f8dd +2019,Tucuman,II.5.1,102.61692,TJ,N2O,3.9,kg/TJ,400.205988,Gas Oil combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,fdb9f1f8-39cb-32f9-80f8-0cc96b57f8dd +2019,Buenos Aires,II.5.1,14.23128,TJ,CO2,74100.0,kg/TJ,1054537.848,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,d90cb40e-c662-3b79-9334-85bb5765c7c2 +2019,Buenos Aires,II.5.1,14.23128,TJ,CH4,3.9,kg/TJ,55.501992,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,c9716791-9f86-3c06-9e93-c9521e9b3c6f +2019,Buenos Aires,II.5.1,14.23128,TJ,N2O,3.9,kg/TJ,55.501992,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,c9716791-9f86-3c06-9e93-c9521e9b3c6f +2019,Entre Rios,II.5.1,52.15728,TJ,CO2,74100.0,kg/TJ,3864854.448,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,17258df4-8227-3cc6-b243-7feb55df92cf +2019,Entre Rios,II.5.1,52.15728,TJ,CH4,3.9,kg/TJ,203.413392,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,1a09c922-1754-3ad4-a596-4f8cd545af0d +2019,Entre Rios,II.5.1,52.15728,TJ,N2O,3.9,kg/TJ,203.413392,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,1a09c922-1754-3ad4-a596-4f8cd545af0d +2019,Buenos Aires,II.5.1,1.130745,TJ,CO2,73300.0,kg/TJ,82883.60849999999,Naphtha combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,8c125708-4e8a-3562-b017-d7bdf197510d +2019,Buenos Aires,II.5.1,1.130745,TJ,CH4,0.5,kg/TJ,0.5653725,Naphtha combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,70fbc290-f335-3147-9bf2-f099895158d7 +2019,Buenos Aires,II.5.1,1.130745,TJ,N2O,2.0,kg/TJ,2.26149,Naphtha combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,cb05b7d1-33b4-3952-b06f-153e8bc61f5c +2019,Buenos Aires,II.5.1,0.6853,TJ,CO2,73300.0,kg/TJ,50232.49,Naphtha combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,58df6756-567f-367c-85d9-adf64060562d +2019,Buenos Aires,II.5.1,0.6853,TJ,CH4,0.5,kg/TJ,0.34265,Naphtha combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,52c1e932-ac9b-3c09-a179-c4f359c6896d +2019,Buenos Aires,II.5.1,0.6853,TJ,N2O,2.0,kg/TJ,1.3706,Naphtha combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,100993a5-8fc8-3ca5-9824-bdca45209b49 +2019,Buenos Aires,II.2.1,310.88484,TJ,CO2,74100.0,kg/TJ,23036566.644,Gas Oil combustion consumption by railway transport,AR-B,SESCO,annual,kg,a585d1a5-81f0-32da-b100-a6a499ccd105 +2019,Buenos Aires,II.2.1,310.88484,TJ,CH4,3.9,kg/TJ,1212.4508759999999,Gas Oil combustion consumption by railway transport,AR-B,SESCO,annual,kg,f6abcecb-859e-32c3-aa1d-e8bd5a6882ff +2019,Buenos Aires,II.2.1,310.88484,TJ,N2O,3.9,kg/TJ,1212.4508759999999,Gas Oil combustion consumption by railway transport,AR-B,SESCO,annual,kg,f6abcecb-859e-32c3-aa1d-e8bd5a6882ff +2019,Buenos Aires,II.1.1,10.454799999999999,TJ,CO2,69300.0,kg/TJ,724517.6399999999,Motor Gasoline combustion consumption by freight transport,AR-B,SESCO,annual,kg,dfbd14c4-9512-39a3-b520-424bc16c63bb +2019,Buenos Aires,II.1.1,10.454799999999999,TJ,CH4,33.0,kg/TJ,345.00839999999994,Motor Gasoline combustion consumption by freight transport,AR-B,SESCO,annual,kg,07106eb7-c3ed-3e46-ad6b-39af45aaf952 +2019,Buenos Aires,II.1.1,10.454799999999999,TJ,N2O,3.2,kg/TJ,33.45536,Motor Gasoline combustion consumption by freight transport,AR-B,SESCO,annual,kg,1f91b18f-dbe8-3d79-9dc5-3adb45be6a35 +2019,Santa Fe,II.1.1,13.6001,TJ,CO2,69300.0,kg/TJ,942486.9299999999,Motor Gasoline combustion consumption by freight transport,AR-S,SESCO,annual,kg,a3c9f806-0a99-341d-8644-214c516fc440 +2019,Santa Fe,II.1.1,13.6001,TJ,CH4,33.0,kg/TJ,448.8033,Motor Gasoline combustion consumption by freight transport,AR-S,SESCO,annual,kg,96802fc9-5dd0-3656-859b-04b36f6b73c6 +2019,Santa Fe,II.1.1,13.6001,TJ,N2O,3.2,kg/TJ,43.52032,Motor Gasoline combustion consumption by freight transport,AR-S,SESCO,annual,kg,07e3055f-691f-35d3-b004-f2459ff5b5b8 +2019,Buenos Aires,II.1.1,16.50684,TJ,CO2,74100.0,kg/TJ,1223156.844,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,2addce6d-aa09-3284-aa21-aa801a89f69b +2019,Buenos Aires,II.1.1,16.50684,TJ,CH4,3.9,kg/TJ,64.376676,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,7541dbe3-2028-3efc-8dd4-696f4453ee03 +2019,Buenos Aires,II.1.1,16.50684,TJ,N2O,3.9,kg/TJ,64.376676,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,7541dbe3-2028-3efc-8dd4-696f4453ee03 +2019,Capital Federal,II.1.1,80.0058,TJ,CO2,74100.0,kg/TJ,5928429.779999999,Gas Oil combustion consumption by freight transport,AR-C,SESCO,annual,kg,0bb82d60-dd94-3a05-856e-467dcc819397 +2019,Capital Federal,II.1.1,80.0058,TJ,CH4,3.9,kg/TJ,312.02261999999996,Gas Oil combustion consumption by freight transport,AR-C,SESCO,annual,kg,e6cefbb2-d3bd-3ab5-88c9-ab20760cfdf9 +2019,Capital Federal,II.1.1,80.0058,TJ,N2O,3.9,kg/TJ,312.02261999999996,Gas Oil combustion consumption by freight transport,AR-C,SESCO,annual,kg,e6cefbb2-d3bd-3ab5-88c9-ab20760cfdf9 +2019,Córdoba,II.1.1,47.06436,TJ,CO2,74100.0,kg/TJ,3487469.076,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,99030f57-bac2-3c46-a600-e28cd128e04d +2019,Córdoba,II.1.1,47.06436,TJ,CH4,3.9,kg/TJ,183.551004,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,5b950dc6-8053-3352-9a83-ec0d87f14e05 +2019,Córdoba,II.1.1,47.06436,TJ,N2O,3.9,kg/TJ,183.551004,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,5b950dc6-8053-3352-9a83-ec0d87f14e05 +2019,Córdoba,II.1.1,1.73376,TJ,CO2,74100.0,kg/TJ,128471.616,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,0acb401a-4f87-3663-9956-d379b895d837 +2019,Córdoba,II.1.1,1.73376,TJ,CH4,3.9,kg/TJ,6.761664,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,13a54ffc-541b-3f8b-9df3-7f7e9fc2629c +2019,Córdoba,II.1.1,1.73376,TJ,N2O,3.9,kg/TJ,6.761664,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,13a54ffc-541b-3f8b-9df3-7f7e9fc2629c +2019,Buenos Aires,II.1.1,4593.199799999999,TJ,CO2,74100.0,kg/TJ,340356105.17999995,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,f8666f93-17c1-3489-8657-18d002c17097 +2019,Buenos Aires,II.1.1,4593.199799999999,TJ,CH4,3.9,kg/TJ,17913.479219999997,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,7706f0fc-fb13-36db-be8a-f73c9eadb377 +2019,Buenos Aires,II.1.1,4593.199799999999,TJ,N2O,3.9,kg/TJ,17913.479219999997,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,7706f0fc-fb13-36db-be8a-f73c9eadb377 +2019,Capital Federal,II.1.1,613.1731199999999,TJ,CO2,74100.0,kg/TJ,45436128.191999994,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,2c3223f9-5dc3-34f2-aec8-6a4746b1aa0d +2019,Capital Federal,II.1.1,613.1731199999999,TJ,CH4,3.9,kg/TJ,2391.3751679999996,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,0aa348a7-c145-3328-a701-b9355257309f +2019,Capital Federal,II.1.1,613.1731199999999,TJ,N2O,3.9,kg/TJ,2391.3751679999996,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,0aa348a7-c145-3328-a701-b9355257309f +2019,Misiones,II.1.1,1.3364399999999999,TJ,CO2,74100.0,kg/TJ,99030.20399999998,Gas Oil combustion consumption by public passenger transport,AR-N,SESCO,annual,kg,7c2241a8-1ac9-3952-8705-3e640fb536cb +2019,Misiones,II.1.1,1.3364399999999999,TJ,CH4,3.9,kg/TJ,5.212115999999999,Gas Oil combustion consumption by public passenger transport,AR-N,SESCO,annual,kg,a628d1c6-227f-3017-b892-db83e9ea7937 +2019,Misiones,II.1.1,1.3364399999999999,TJ,N2O,3.9,kg/TJ,5.212115999999999,Gas Oil combustion consumption by public passenger transport,AR-N,SESCO,annual,kg,a628d1c6-227f-3017-b892-db83e9ea7937 +2019,Santa Fe,II.1.1,20.84124,TJ,CO2,74100.0,kg/TJ,1544335.8839999998,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,56d88f1e-207c-3db1-afbd-0a2cafa79c91 +2019,Santa Fe,II.1.1,20.84124,TJ,CH4,3.9,kg/TJ,81.280836,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,fe622026-227e-3a1d-8788-f54a5ccc0ed2 +2019,Santa Fe,II.1.1,20.84124,TJ,N2O,3.9,kg/TJ,81.280836,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,fe622026-227e-3a1d-8788-f54a5ccc0ed2 +2019,Buenos Aires,II.1.1,1118.49192,TJ,CO2,74100.0,kg/TJ,82880251.272,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,acc66805-6d73-3e98-9891-4841f885faff +2019,Buenos Aires,II.1.1,1118.49192,TJ,CH4,3.9,kg/TJ,4362.118488,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,351c8f35-1d0a-3f0d-ae4c-fb1540825f16 +2019,Buenos Aires,II.1.1,1118.49192,TJ,N2O,3.9,kg/TJ,4362.118488,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,351c8f35-1d0a-3f0d-ae4c-fb1540825f16 +2019,Capital Federal,II.1.1,116.73984,TJ,CO2,74100.0,kg/TJ,8650422.144,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,27998ae0-8112-346f-b5fe-f7d8994ae82d +2019,Capital Federal,II.1.1,116.73984,TJ,CH4,3.9,kg/TJ,455.285376,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,0cc3f360-27f9-3e24-a235-f8c02a3af675 +2019,Capital Federal,II.1.1,116.73984,TJ,N2O,3.9,kg/TJ,455.285376,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,0cc3f360-27f9-3e24-a235-f8c02a3af675 +2019,Corrientes,II.1.1,75.67139999999999,TJ,CO2,74100.0,kg/TJ,5607250.739999999,Gas Oil combustion consumption by public passenger transport,AR-W,SESCO,annual,kg,54c786bb-39b6-3a0d-950e-25abb678ce17 +2019,Corrientes,II.1.1,75.67139999999999,TJ,CH4,3.9,kg/TJ,295.11845999999997,Gas Oil combustion consumption by public passenger transport,AR-W,SESCO,annual,kg,ee4229ed-2f28-3d1e-982d-89cec7ad60fb +2019,Corrientes,II.1.1,75.67139999999999,TJ,N2O,3.9,kg/TJ,295.11845999999997,Gas Oil combustion consumption by public passenger transport,AR-W,SESCO,annual,kg,ee4229ed-2f28-3d1e-982d-89cec7ad60fb +2019,Santa Fe,II.1.1,38.50392,TJ,CO2,74100.0,kg/TJ,2853140.472,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,0aa16a84-f713-3a78-9e82-48d776626718 +2019,Santa Fe,II.1.1,38.50392,TJ,CH4,3.9,kg/TJ,150.165288,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,4983bfc2-cf99-39aa-9b22-be12f13b2cc3 +2019,Santa Fe,II.1.1,38.50392,TJ,N2O,3.9,kg/TJ,150.165288,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,4983bfc2-cf99-39aa-9b22-be12f13b2cc3 +2019,Buenos Aires,II.5.1,1328.3814473999998,TJ,CO2,74100.0,kg/TJ,98433065.25233999,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,2ef2d1b1-daa0-30d3-8f42-cb17a163503c +2019,Buenos Aires,II.5.1,1328.3814473999998,TJ,CH4,3.9,kg/TJ,5180.68764486,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,b8bac0cf-f044-3695-ba70-f4971713e9ff +2019,Buenos Aires,II.5.1,1328.3814473999998,TJ,N2O,3.9,kg/TJ,5180.68764486,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,b8bac0cf-f044-3695-ba70-f4971713e9ff +2019,Capital Federal,II.5.1,509.08499628,TJ,CO2,74100.0,kg/TJ,37723198.224348,Gas Oil combustion consumption by agriculture machines,AR-C,SESCO,annual,kg,489a6051-5c25-30c7-acaa-4470cdcc8be2 +2019,Capital Federal,II.5.1,509.08499628,TJ,CH4,3.9,kg/TJ,1985.4314854919999,Gas Oil combustion consumption by agriculture machines,AR-C,SESCO,annual,kg,5a53dce3-7eac-3596-8491-8c95a26b8bbf +2019,Capital Federal,II.5.1,509.08499628,TJ,N2O,3.9,kg/TJ,1985.4314854919999,Gas Oil combustion consumption by agriculture machines,AR-C,SESCO,annual,kg,5a53dce3-7eac-3596-8491-8c95a26b8bbf +2019,Corrientes,II.5.1,0.6120534,TJ,CO2,74100.0,kg/TJ,45353.15694,Gas Oil combustion consumption by agriculture machines,AR-W,SESCO,annual,kg,1a8c5da9-e690-34a0-9761-8a2cc0df9f1b +2019,Corrientes,II.5.1,0.6120534,TJ,CH4,3.9,kg/TJ,2.38700826,Gas Oil combustion consumption by agriculture machines,AR-W,SESCO,annual,kg,3e42ede9-c747-3694-b18a-c40bd193b580 +2019,Corrientes,II.5.1,0.6120534,TJ,N2O,3.9,kg/TJ,2.38700826,Gas Oil combustion consumption by agriculture machines,AR-W,SESCO,annual,kg,3e42ede9-c747-3694-b18a-c40bd193b580 +2019,Córdoba,II.5.1,404.01383064000004,TJ,CO2,74100.0,kg/TJ,29937424.850424003,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,cce206a9-78d2-3dfb-a41d-1f3e2072391f +2019,Córdoba,II.5.1,404.01383064000004,TJ,CH4,3.9,kg/TJ,1575.653939496,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,a5831968-ac69-3a3e-baca-6af005168158 +2019,Córdoba,II.5.1,404.01383064000004,TJ,N2O,3.9,kg/TJ,1575.653939496,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,a5831968-ac69-3a3e-baca-6af005168158 +2019,Entre Rios,II.5.1,198.82969176,TJ,CO2,74100.0,kg/TJ,14733280.159416,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,475a743b-942c-3269-bb79-f78f268fecea +2019,Entre Rios,II.5.1,198.82969176,TJ,CH4,3.9,kg/TJ,775.4357978639999,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,567bd4a0-9a8d-369f-847f-ab61b7615ee9 +2019,Entre Rios,II.5.1,198.82969176,TJ,N2O,3.9,kg/TJ,775.4357978639999,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,567bd4a0-9a8d-369f-847f-ab61b7615ee9 +2019,Jujuy,II.5.1,11.728886400000002,TJ,CO2,74100.0,kg/TJ,869110.4822400002,Gas Oil combustion consumption by agriculture machines,AR-Y,SESCO,annual,kg,e6c0a066-d93e-3cef-a2d9-df3e9f067c3a +2019,Jujuy,II.5.1,11.728886400000002,TJ,CH4,3.9,kg/TJ,45.742656960000005,Gas Oil combustion consumption by agriculture machines,AR-Y,SESCO,annual,kg,4802c5c0-ed56-32a5-aa10-df6b3b3a38ea +2019,Jujuy,II.5.1,11.728886400000002,TJ,N2O,3.9,kg/TJ,45.742656960000005,Gas Oil combustion consumption by agriculture machines,AR-Y,SESCO,annual,kg,4802c5c0-ed56-32a5-aa10-df6b3b3a38ea +2019,La Pampa,II.5.1,74.69146439999999,TJ,CO2,74100.0,kg/TJ,5534637.5120399995,Gas Oil combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,280d5434-7f47-3113-9832-385c5efa1236 +2019,La Pampa,II.5.1,74.69146439999999,TJ,CH4,3.9,kg/TJ,291.2967111599999,Gas Oil combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,42e7b197-2cd7-31f8-8bb9-6b49d8906091 +2019,La Pampa,II.5.1,74.69146439999999,TJ,N2O,3.9,kg/TJ,291.2967111599999,Gas Oil combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,42e7b197-2cd7-31f8-8bb9-6b49d8906091 +2019,Rio Negro,II.5.1,24.459560999999997,TJ,CO2,74100.0,kg/TJ,1812453.4700999998,Gas Oil combustion consumption by agriculture machines,AR-R,SESCO,annual,kg,be8e137d-65de-3c9d-9e88-42b2ea97fd43 +2019,Rio Negro,II.5.1,24.459560999999997,TJ,CH4,3.9,kg/TJ,95.39228789999999,Gas Oil combustion consumption by agriculture machines,AR-R,SESCO,annual,kg,9018e132-e0cd-3c84-80df-fa3820662775 +2019,Rio Negro,II.5.1,24.459560999999997,TJ,N2O,3.9,kg/TJ,95.39228789999999,Gas Oil combustion consumption by agriculture machines,AR-R,SESCO,annual,kg,9018e132-e0cd-3c84-80df-fa3820662775 +2019,San Luis,II.5.1,14.8568784,TJ,CO2,74100.0,kg/TJ,1100894.6894399999,Gas Oil combustion consumption by agriculture machines,AR-D,SESCO,annual,kg,240261b2-8218-3c79-a2cf-7a8189a7b2eb +2019,San Luis,II.5.1,14.8568784,TJ,CH4,3.9,kg/TJ,57.94182575999999,Gas Oil combustion consumption by agriculture machines,AR-D,SESCO,annual,kg,70a96b8b-316e-3967-8027-162bea18a89d +2019,San Luis,II.5.1,14.8568784,TJ,N2O,3.9,kg/TJ,57.94182575999999,Gas Oil combustion consumption by agriculture machines,AR-D,SESCO,annual,kg,70a96b8b-316e-3967-8027-162bea18a89d +2019,Santa Fe,II.5.1,1030.56045288,TJ,CO2,74100.0,kg/TJ,76364529.55840799,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,b9105b38-a3f4-3820-a42c-582f9d7f28df +2019,Santa Fe,II.5.1,1030.56045288,TJ,CH4,3.9,kg/TJ,4019.185766232,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,5c3c5ec5-22e9-3ce4-bed0-66c5c6406efb +2019,Santa Fe,II.5.1,1030.56045288,TJ,N2O,3.9,kg/TJ,4019.185766232,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,5c3c5ec5-22e9-3ce4-bed0-66c5c6406efb +2019,Santiago del Estero,II.5.1,241.14228515999997,TJ,CO2,74100.0,kg/TJ,17868643.330355998,Gas Oil combustion consumption by agriculture machines,AR-G,SESCO,annual,kg,7e263076-cd5e-3349-8e59-e914e71d9c7f +2019,Santiago del Estero,II.5.1,241.14228515999997,TJ,CH4,3.9,kg/TJ,940.4549121239999,Gas Oil combustion consumption by agriculture machines,AR-G,SESCO,annual,kg,191c022b-7458-333e-84da-a25c2aa9643e +2019,Santiago del Estero,II.5.1,241.14228515999997,TJ,N2O,3.9,kg/TJ,940.4549121239999,Gas Oil combustion consumption by agriculture machines,AR-G,SESCO,annual,kg,191c022b-7458-333e-84da-a25c2aa9643e +2019,Tucuman,II.5.1,150.46396428,TJ,CO2,74100.0,kg/TJ,11149379.753148,Gas Oil combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,db359249-6c8d-3e04-85f5-68ac44e92ac9 +2019,Tucuman,II.5.1,150.46396428,TJ,CH4,3.9,kg/TJ,586.809460692,Gas Oil combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,57f629da-cabc-3522-85c6-4a0707701b05 +2019,Tucuman,II.5.1,150.46396428,TJ,N2O,3.9,kg/TJ,586.809460692,Gas Oil combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,57f629da-cabc-3522-85c6-4a0707701b05 +2019,Buenos Aires,II.5.1,171.07602287999998,TJ,CO2,74100.0,kg/TJ,12676733.295408,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,e25b4e9d-5847-3b19-afde-36d75b38049c +2019,Buenos Aires,II.5.1,171.07602287999998,TJ,CH4,3.9,kg/TJ,667.1964892319999,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,f7152893-cd73-3777-9913-d48855a5906f +2019,Buenos Aires,II.5.1,171.07602287999998,TJ,N2O,3.9,kg/TJ,667.1964892319999,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,f7152893-cd73-3777-9913-d48855a5906f +2019,Capital Federal,II.5.1,48.239740919999996,TJ,CO2,74100.0,kg/TJ,3574564.8021719996,Gas Oil combustion consumption by agriculture machines,AR-C,SESCO,annual,kg,986436a3-d428-3d95-9e39-649f16f0bc6e +2019,Capital Federal,II.5.1,48.239740919999996,TJ,CH4,3.9,kg/TJ,188.13498958799997,Gas Oil combustion consumption by agriculture machines,AR-C,SESCO,annual,kg,6076c811-ca59-3f27-a441-1603d5619e37 +2019,Capital Federal,II.5.1,48.239740919999996,TJ,N2O,3.9,kg/TJ,188.13498958799997,Gas Oil combustion consumption by agriculture machines,AR-C,SESCO,annual,kg,6076c811-ca59-3f27-a441-1603d5619e37 +2019,Corrientes,II.5.1,0.7236280799999998,TJ,CO2,74100.0,kg/TJ,53620.84072799998,Gas Oil combustion consumption by agriculture machines,AR-W,SESCO,annual,kg,040351a3-bceb-30d1-8905-c6161d5a98f0 +2019,Corrientes,II.5.1,0.7236280799999998,TJ,CH4,3.9,kg/TJ,2.8221495119999993,Gas Oil combustion consumption by agriculture machines,AR-W,SESCO,annual,kg,c4ca839e-f495-393b-8812-09ad84004531 +2019,Corrientes,II.5.1,0.7236280799999998,TJ,N2O,3.9,kg/TJ,2.8221495119999993,Gas Oil combustion consumption by agriculture machines,AR-W,SESCO,annual,kg,c4ca839e-f495-393b-8812-09ad84004531 +2019,Córdoba,II.5.1,46.075286039999995,TJ,CO2,74100.0,kg/TJ,3414178.6955639995,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,19440ce0-51e4-3b96-b3fc-b7eba8df0e49 +2019,Córdoba,II.5.1,46.075286039999995,TJ,CH4,3.9,kg/TJ,179.69361555599997,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,c2939a18-af12-3a95-8497-198a28b521b6 +2019,Córdoba,II.5.1,46.075286039999995,TJ,N2O,3.9,kg/TJ,179.69361555599997,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,c2939a18-af12-3a95-8497-198a28b521b6 +2019,Entre Rios,II.5.1,39.83158284,TJ,CO2,74100.0,kg/TJ,2951520.2884440003,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,e744f0d1-9e79-35bf-b73e-3e78179ad562 +2019,Entre Rios,II.5.1,39.83158284,TJ,CH4,3.9,kg/TJ,155.343173076,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,5b1aec61-24c1-394d-9d77-9237d145d2e1 +2019,Entre Rios,II.5.1,39.83158284,TJ,N2O,3.9,kg/TJ,155.343173076,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,5b1aec61-24c1-394d-9d77-9237d145d2e1 +2019,Jujuy,II.5.1,33.81623028,TJ,CO2,74100.0,kg/TJ,2505782.663748,Gas Oil combustion consumption by agriculture machines,AR-Y,SESCO,annual,kg,d56fe3cc-0fc9-3957-94ec-68ec6022d8e6 +2019,Jujuy,II.5.1,33.81623028,TJ,CH4,3.9,kg/TJ,131.883298092,Gas Oil combustion consumption by agriculture machines,AR-Y,SESCO,annual,kg,85de1de1-2b09-3ee2-9515-62fc998bd153 +2019,Jujuy,II.5.1,33.81623028,TJ,N2O,3.9,kg/TJ,131.883298092,Gas Oil combustion consumption by agriculture machines,AR-Y,SESCO,annual,kg,85de1de1-2b09-3ee2-9515-62fc998bd153 +2019,La Pampa,II.5.1,9.022198079999999,TJ,CO2,74100.0,kg/TJ,668544.8777279999,Gas Oil combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,5fb9286f-46d5-3b68-9c45-5ab78b94071e +2019,La Pampa,II.5.1,9.022198079999999,TJ,CH4,3.9,kg/TJ,35.186572512,Gas Oil combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,76f0e621-365b-350a-855d-19029babb7c5 +2019,La Pampa,II.5.1,9.022198079999999,TJ,N2O,3.9,kg/TJ,35.186572512,Gas Oil combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,76f0e621-365b-350a-855d-19029babb7c5 +2019,Rio Negro,II.5.1,44.92999308,TJ,CO2,74100.0,kg/TJ,3329312.487228,Gas Oil combustion consumption by agriculture machines,AR-R,SESCO,annual,kg,22de8862-56db-3aef-b5b5-513a0be04c1b +2019,Rio Negro,II.5.1,44.92999308,TJ,CH4,3.9,kg/TJ,175.226973012,Gas Oil combustion consumption by agriculture machines,AR-R,SESCO,annual,kg,3c9e95a9-ccdb-3a26-a8be-707085eb3a2d +2019,Rio Negro,II.5.1,44.92999308,TJ,N2O,3.9,kg/TJ,175.226973012,Gas Oil combustion consumption by agriculture machines,AR-R,SESCO,annual,kg,3c9e95a9-ccdb-3a26-a8be-707085eb3a2d +2019,San Luis,II.5.1,4.761266159999999,TJ,CO2,74100.0,kg/TJ,352809.8224559999,Gas Oil combustion consumption by agriculture machines,AR-D,SESCO,annual,kg,1342453f-f844-32a6-bf03-8a0b4c5d618b +2019,San Luis,II.5.1,4.761266159999999,TJ,CH4,3.9,kg/TJ,18.568938023999994,Gas Oil combustion consumption by agriculture machines,AR-D,SESCO,annual,kg,5ea44106-cac6-3e1e-b0f4-8966e918b810 +2019,San Luis,II.5.1,4.761266159999999,TJ,N2O,3.9,kg/TJ,18.568938023999994,Gas Oil combustion consumption by agriculture machines,AR-D,SESCO,annual,kg,5ea44106-cac6-3e1e-b0f4-8966e918b810 +2019,Santa Fe,II.5.1,149.04918,TJ,CO2,74100.0,kg/TJ,11044544.238,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,2d668400-14ab-34de-9acd-2d524a37ab80 +2019,Santa Fe,II.5.1,149.04918,TJ,CH4,3.9,kg/TJ,581.291802,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,f203975a-3ef0-3738-b9df-02923ac7185f +2019,Santa Fe,II.5.1,149.04918,TJ,N2O,3.9,kg/TJ,581.291802,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,f203975a-3ef0-3738-b9df-02923ac7185f +2019,Santiago del Estero,II.5.1,16.394362320000003,TJ,CO2,74100.0,kg/TJ,1214822.2479120002,Gas Oil combustion consumption by agriculture machines,AR-G,SESCO,annual,kg,5b762d17-a560-3248-8853-cef30a3bb868 +2019,Santiago del Estero,II.5.1,16.394362320000003,TJ,CH4,3.9,kg/TJ,63.93801304800001,Gas Oil combustion consumption by agriculture machines,AR-G,SESCO,annual,kg,476c8db9-1bc2-3a95-8ec2-ce4288966533 +2019,Santiago del Estero,II.5.1,16.394362320000003,TJ,N2O,3.9,kg/TJ,63.93801304800001,Gas Oil combustion consumption by agriculture machines,AR-G,SESCO,annual,kg,476c8db9-1bc2-3a95-8ec2-ce4288966533 +2019,Tucuman,II.5.1,38.03566032,TJ,CO2,74100.0,kg/TJ,2818442.429712,Gas Oil combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,33a7b1cc-725f-3d85-8685-1748259dad00 +2019,Tucuman,II.5.1,38.03566032,TJ,CH4,3.9,kg/TJ,148.339075248,Gas Oil combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,6179fcde-802a-3f61-a01d-1e8c809a494a +2019,Tucuman,II.5.1,38.03566032,TJ,N2O,3.9,kg/TJ,148.339075248,Gas Oil combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,6179fcde-802a-3f61-a01d-1e8c809a494a +2019,Buenos Aires,II.5.1,16.432500315000002,TJ,CO2,73300.0,kg/TJ,1204502.2730895001,Naphtha combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,b683970a-6855-35a2-8f8a-b99b0aee1eb4 +2019,Buenos Aires,II.5.1,16.432500315000002,TJ,CH4,0.5,kg/TJ,8.216250157500001,Naphtha combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,1c50bf56-eb86-3c8c-9e95-18dad005b8bd +2019,Buenos Aires,II.5.1,16.432500315000002,TJ,N2O,2.0,kg/TJ,32.865000630000004,Naphtha combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,f3302b15-b9fa-3839-b16a-4e4cd433bba3 +2019,Capital Federal,II.5.1,11.49604456,TJ,CO2,73300.0,kg/TJ,842660.066248,Naphtha combustion consumption by agriculture machines,AR-C,SESCO,annual,kg,16590884-adf5-3c96-8088-7c545144d907 +2019,Capital Federal,II.5.1,11.49604456,TJ,CH4,0.5,kg/TJ,5.74802228,Naphtha combustion consumption by agriculture machines,AR-C,SESCO,annual,kg,2633bfee-8d23-359b-8649-fd7055514aec +2019,Capital Federal,II.5.1,11.49604456,TJ,N2O,2.0,kg/TJ,22.99208912,Naphtha combustion consumption by agriculture machines,AR-C,SESCO,annual,kg,3c195b09-de50-3437-a49a-06ffe97250a1 +2019,Córdoba,II.5.1,1.2534136999999999,TJ,CO2,73300.0,kg/TJ,91875.22420999999,Naphtha combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,72c5f04b-5553-3bca-83f3-7c7c94a692ee +2019,Córdoba,II.5.1,1.2534136999999999,TJ,CH4,0.5,kg/TJ,0.6267068499999999,Naphtha combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,a3691dea-7d29-336f-a9fb-0dedd643d0af +2019,Córdoba,II.5.1,1.2534136999999999,TJ,N2O,2.0,kg/TJ,2.5068273999999997,Naphtha combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,70e46ef1-d193-361b-8d47-af9828e0157b +2019,Entre Rios,II.5.1,0.9270395749999999,TJ,CO2,73300.0,kg/TJ,67952.00084749999,Naphtha combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,5c8a7527-ab48-381d-bd04-783c9b831b59 +2019,Entre Rios,II.5.1,0.9270395749999999,TJ,CH4,0.5,kg/TJ,0.46351978749999995,Naphtha combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,b41523c6-d599-3ab2-b845-082fafdc3743 +2019,Entre Rios,II.5.1,0.9270395749999999,TJ,N2O,2.0,kg/TJ,1.8540791499999998,Naphtha combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,829e8ff4-d9dc-35e7-8c99-e898171b136e +2019,Santa Fe,II.5.1,177.084912235,TJ,CO2,73300.0,kg/TJ,12980324.0668255,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,eeed2dea-c6ae-385b-9059-35009476f477 +2019,Santa Fe,II.5.1,177.084912235,TJ,CH4,0.5,kg/TJ,88.5424561175,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,aa32cf8c-1bda-3ebd-8b57-b47cb4d19ded +2019,Santa Fe,II.5.1,177.084912235,TJ,N2O,2.0,kg/TJ,354.16982447,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,00ac74b8-ee62-323b-926d-f28e0e88fe2d +2019,Buenos Aires,II.5.1,1.1013456299999997,TJ,CO2,73300.0,kg/TJ,80728.63467899998,Naphtha combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,4908d5b9-aac1-3f5b-bfea-7ce088642036 +2019,Buenos Aires,II.5.1,1.1013456299999997,TJ,CH4,0.5,kg/TJ,0.5506728149999999,Naphtha combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,227167c2-e73b-3f24-847c-d67b742add00 +2019,Buenos Aires,II.5.1,1.1013456299999997,TJ,N2O,2.0,kg/TJ,2.2026912599999995,Naphtha combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,f7ff74e9-7dc2-39d9-affe-547dcba2caac +2019,Capital Federal,II.5.1,3.1795521449999997,TJ,CO2,73300.0,kg/TJ,233061.17222849999,Naphtha combustion consumption by agriculture machines,AR-C,SESCO,annual,kg,2b0fc7bf-09e3-319f-a6db-14f9057651fd +2019,Capital Federal,II.5.1,3.1795521449999997,TJ,CH4,0.5,kg/TJ,1.5897760724999999,Naphtha combustion consumption by agriculture machines,AR-C,SESCO,annual,kg,662356b2-8501-3cc8-a11e-c770fb5d046b +2019,Capital Federal,II.5.1,3.1795521449999997,TJ,N2O,2.0,kg/TJ,6.359104289999999,Naphtha combustion consumption by agriculture machines,AR-C,SESCO,annual,kg,c151b03c-bf96-3554-aaf3-dfa6dcb4b1b2 +2019,Córdoba,II.5.1,0.884139795,TJ,CO2,73300.0,kg/TJ,64807.446973499995,Naphtha combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,04d38ebf-2a0e-3022-96eb-dbc5e8ef3f78 +2019,Córdoba,II.5.1,0.884139795,TJ,CH4,0.5,kg/TJ,0.4420698975,Naphtha combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,906245fb-583c-396d-b69b-d7abb269d6b9 +2019,Córdoba,II.5.1,0.884139795,TJ,N2O,2.0,kg/TJ,1.76827959,Naphtha combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,4cddcff8-e913-3140-b912-9abaa8a54937 +2019,Santa Fe,II.5.1,9.443810915,TJ,CO2,73300.0,kg/TJ,692231.3400695,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,f0382454-d241-38dd-aa34-87ff137e23b6 +2019,Santa Fe,II.5.1,9.443810915,TJ,CH4,0.5,kg/TJ,4.7219054575,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,5a99a313-dc05-36ce-9fdc-68cd75eff121 +2019,Santa Fe,II.5.1,9.443810915,TJ,N2O,2.0,kg/TJ,18.88762183,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,a29d9d52-6f7b-3306-8db2-e61cd9a14bce +2019,Buenos Aires,II.1.1,18.32793816,TJ,CO2,74100.0,kg/TJ,1358100.2176559998,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,8b24dc96-f4c7-33a4-8fca-2be52288cb0f +2019,Buenos Aires,II.1.1,18.32793816,TJ,CH4,3.9,kg/TJ,71.47895882399999,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,c3ce5e42-fa1c-3756-8de5-be965e647f9b +2019,Buenos Aires,II.1.1,18.32793816,TJ,N2O,3.9,kg/TJ,71.47895882399999,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,c3ce5e42-fa1c-3756-8de5-be965e647f9b +2019,Capital Federal,II.1.1,4.1593624799999995,TJ,CO2,74100.0,kg/TJ,308208.759768,Gas Oil combustion consumption by freight transport,AR-C,SESCO,annual,kg,1313222e-0736-324f-b75e-035c6a48f233 +2019,Capital Federal,II.1.1,4.1593624799999995,TJ,CH4,3.9,kg/TJ,16.221513671999997,Gas Oil combustion consumption by freight transport,AR-C,SESCO,annual,kg,c012747e-ce2a-387e-b557-f3bf6c122559 +2019,Capital Federal,II.1.1,4.1593624799999995,TJ,N2O,3.9,kg/TJ,16.221513671999997,Gas Oil combustion consumption by freight transport,AR-C,SESCO,annual,kg,c012747e-ce2a-387e-b557-f3bf6c122559 +2019,Neuquén,II.1.1,2.0096806799999998,TJ,CO2,74100.0,kg/TJ,148917.33838799997,Gas Oil combustion consumption by freight transport,AR-Q,SESCO,annual,kg,7cf82bfc-3339-3b9f-99bd-6796553e0ef2 +2019,Neuquén,II.1.1,2.0096806799999998,TJ,CH4,3.9,kg/TJ,7.837754651999999,Gas Oil combustion consumption by freight transport,AR-Q,SESCO,annual,kg,dde510aa-be16-33ce-a5b4-47309ac63a9c +2019,Neuquén,II.1.1,2.0096806799999998,TJ,N2O,3.9,kg/TJ,7.837754651999999,Gas Oil combustion consumption by freight transport,AR-Q,SESCO,annual,kg,dde510aa-be16-33ce-a5b4-47309ac63a9c +2019,Rio Negro,II.1.1,3.86657376,TJ,CO2,74100.0,kg/TJ,286513.115616,Gas Oil combustion consumption by freight transport,AR-R,SESCO,annual,kg,f85fddac-8c6b-3581-aa12-0304ec3c66a2 +2019,Rio Negro,II.1.1,3.86657376,TJ,CH4,3.9,kg/TJ,15.079637664,Gas Oil combustion consumption by freight transport,AR-R,SESCO,annual,kg,78a20eb4-4a87-38f8-9d02-cac08ce0babc +2019,Rio Negro,II.1.1,3.86657376,TJ,N2O,3.9,kg/TJ,15.079637664,Gas Oil combustion consumption by freight transport,AR-R,SESCO,annual,kg,78a20eb4-4a87-38f8-9d02-cac08ce0babc +2019,Santa Fe,II.1.1,5.456901239999999,TJ,CO2,74100.0,kg/TJ,404356.3818839999,Gas Oil combustion consumption by freight transport,AR-S,SESCO,annual,kg,3e3b8cba-04da-36d5-acce-d8ef7b8bb2ef +2019,Santa Fe,II.1.1,5.456901239999999,TJ,CH4,3.9,kg/TJ,21.281914835999995,Gas Oil combustion consumption by freight transport,AR-S,SESCO,annual,kg,be9aa133-153d-359b-8998-f791d26d53e8 +2019,Santa Fe,II.1.1,5.456901239999999,TJ,N2O,3.9,kg/TJ,21.281914835999995,Gas Oil combustion consumption by freight transport,AR-S,SESCO,annual,kg,be9aa133-153d-359b-8998-f791d26d53e8 +2019,Tucuman,II.1.1,2.3121134399999996,TJ,CO2,74100.0,kg/TJ,171327.60590399997,Gas Oil combustion consumption by freight transport,AR-T,SESCO,annual,kg,a09d0a74-2da3-38ee-9b54-a0c9d598111c +2019,Tucuman,II.1.1,2.3121134399999996,TJ,CH4,3.9,kg/TJ,9.017242415999998,Gas Oil combustion consumption by freight transport,AR-T,SESCO,annual,kg,f0eb362a-d522-3527-9935-616ef9dfc7bc +2019,Tucuman,II.1.1,2.3121134399999996,TJ,N2O,3.9,kg/TJ,9.017242415999998,Gas Oil combustion consumption by freight transport,AR-T,SESCO,annual,kg,f0eb362a-d522-3527-9935-616ef9dfc7bc +2019,Buenos Aires,II.1.1,7.055066760000001,TJ,CO2,74100.0,kg/TJ,522780.44691600004,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,faa7982b-6dcd-3825-a8de-14dc95320ae0 +2019,Buenos Aires,II.1.1,7.055066760000001,TJ,CH4,3.9,kg/TJ,27.514760364,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,773d27fb-8cb7-3921-8600-48332230590a +2019,Buenos Aires,II.1.1,7.055066760000001,TJ,N2O,3.9,kg/TJ,27.514760364,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,773d27fb-8cb7-3921-8600-48332230590a +2019,Neuquén,II.1.1,1.91858604,TJ,CO2,74100.0,kg/TJ,142167.22556400002,Gas Oil combustion consumption by freight transport,AR-Q,SESCO,annual,kg,2d5e04a3-da38-32ea-a90d-88c8678aafba +2019,Neuquén,II.1.1,1.91858604,TJ,CH4,3.9,kg/TJ,7.482485556,Gas Oil combustion consumption by freight transport,AR-Q,SESCO,annual,kg,710f335a-5cb0-3263-8c44-d0686f4b4359 +2019,Neuquén,II.1.1,1.91858604,TJ,N2O,3.9,kg/TJ,7.482485556,Gas Oil combustion consumption by freight transport,AR-Q,SESCO,annual,kg,710f335a-5cb0-3263-8c44-d0686f4b4359 +2019,Rio Negro,II.1.1,5.02642308,TJ,CO2,74100.0,kg/TJ,372457.950228,Gas Oil combustion consumption by freight transport,AR-R,SESCO,annual,kg,5d3992e4-342a-3c01-8f60-1af21aaf6f9c +2019,Rio Negro,II.1.1,5.02642308,TJ,CH4,3.9,kg/TJ,19.603050011999997,Gas Oil combustion consumption by freight transport,AR-R,SESCO,annual,kg,d19081ad-384e-3ef7-a5e7-0112a1823d6f +2019,Rio Negro,II.1.1,5.02642308,TJ,N2O,3.9,kg/TJ,19.603050011999997,Gas Oil combustion consumption by freight transport,AR-R,SESCO,annual,kg,d19081ad-384e-3ef7-a5e7-0112a1823d6f +2019,Santa Fe,II.1.1,1.19633052,TJ,CO2,74100.0,kg/TJ,88648.091532,Gas Oil combustion consumption by freight transport,AR-S,SESCO,annual,kg,7ca359ed-767f-37c1-ad95-b9cb9290f40f +2019,Santa Fe,II.1.1,1.19633052,TJ,CH4,3.9,kg/TJ,4.665689028,Gas Oil combustion consumption by freight transport,AR-S,SESCO,annual,kg,4291f986-ceca-3811-a8c1-01598242467f +2019,Santa Fe,II.1.1,1.19633052,TJ,N2O,3.9,kg/TJ,4.665689028,Gas Oil combustion consumption by freight transport,AR-S,SESCO,annual,kg,4291f986-ceca-3811-a8c1-01598242467f +2019,Tucuman,II.1.1,0.4721606399999999,TJ,CO2,74100.0,kg/TJ,34987.10342399999,Gas Oil combustion consumption by freight transport,AR-T,SESCO,annual,kg,f97476db-9356-35de-a2fe-9123da6b4e31 +2019,Tucuman,II.1.1,0.4721606399999999,TJ,CH4,3.9,kg/TJ,1.8414264959999995,Gas Oil combustion consumption by freight transport,AR-T,SESCO,annual,kg,2355b3b3-5a8e-32d0-8a4e-88dc2a5a28f3 +2019,Tucuman,II.1.1,0.4721606399999999,TJ,N2O,3.9,kg/TJ,1.8414264959999995,Gas Oil combustion consumption by freight transport,AR-T,SESCO,annual,kg,2355b3b3-5a8e-32d0-8a4e-88dc2a5a28f3 +2019,Buenos Aires,II.1.1,32.2266252,TJ,CO2,74100.0,kg/TJ,2387992.9273200002,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,2588b552-8195-380e-8674-2c4ad4c97692 +2019,Buenos Aires,II.1.1,32.2266252,TJ,CH4,3.9,kg/TJ,125.68383828,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,5e085532-52cd-33d5-a3e0-1e1f1853df99 +2019,Buenos Aires,II.1.1,32.2266252,TJ,N2O,3.9,kg/TJ,125.68383828,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,5e085532-52cd-33d5-a3e0-1e1f1853df99 +2019,Capital Federal,II.1.1,4.641383879999999,TJ,CO2,74100.0,kg/TJ,343926.54550799995,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,d1cb54c0-6575-3616-bf36-a56f995f2738 +2019,Capital Federal,II.1.1,4.641383879999999,TJ,CH4,3.9,kg/TJ,18.101397131999995,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,cb9497e2-17f1-3701-8a0c-82dd412718f9 +2019,Capital Federal,II.1.1,4.641383879999999,TJ,N2O,3.9,kg/TJ,18.101397131999995,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,cb9497e2-17f1-3701-8a0c-82dd412718f9 +2019,Misiones,II.1.1,0.6146540399999999,TJ,CO2,74100.0,kg/TJ,45545.864363999994,Gas Oil combustion consumption by public passenger transport,AR-N,SESCO,annual,kg,970934c8-1e0a-3e97-b8b1-11007551390f +2019,Misiones,II.1.1,0.6146540399999999,TJ,CH4,3.9,kg/TJ,2.3971507559999994,Gas Oil combustion consumption by public passenger transport,AR-N,SESCO,annual,kg,1c513315-831f-324b-a153-6644f1d949d8 +2019,Misiones,II.1.1,0.6146540399999999,TJ,N2O,3.9,kg/TJ,2.3971507559999994,Gas Oil combustion consumption by public passenger transport,AR-N,SESCO,annual,kg,1c513315-831f-324b-a153-6644f1d949d8 +2019,Neuquén,II.1.1,0.71420076,TJ,CO2,74100.0,kg/TJ,52922.276315999996,Gas Oil combustion consumption by public passenger transport,AR-Q,SESCO,annual,kg,e9ac1974-5a7b-368a-a03f-b7300c4a03b4 +2019,Neuquén,II.1.1,0.71420076,TJ,CH4,3.9,kg/TJ,2.785382964,Gas Oil combustion consumption by public passenger transport,AR-Q,SESCO,annual,kg,aa6f7169-d1d5-33c8-a70d-2868a1a3f6eb +2019,Neuquén,II.1.1,0.71420076,TJ,N2O,3.9,kg/TJ,2.785382964,Gas Oil combustion consumption by public passenger transport,AR-Q,SESCO,annual,kg,aa6f7169-d1d5-33c8-a70d-2868a1a3f6eb +2019,Rio Negro,II.1.1,3.00941004,TJ,CO2,74100.0,kg/TJ,222997.283964,Gas Oil combustion consumption by public passenger transport,AR-R,SESCO,annual,kg,87f31d93-d0ca-351f-905f-8df4904a81dd +2019,Rio Negro,II.1.1,3.00941004,TJ,CH4,3.9,kg/TJ,11.736699156,Gas Oil combustion consumption by public passenger transport,AR-R,SESCO,annual,kg,0608f666-048e-3e4b-8214-a334d456c976 +2019,Rio Negro,II.1.1,3.00941004,TJ,N2O,3.9,kg/TJ,11.736699156,Gas Oil combustion consumption by public passenger transport,AR-R,SESCO,annual,kg,0608f666-048e-3e4b-8214-a334d456c976 +2019,Santa Fe,II.1.1,8.070616679999999,TJ,CO2,74100.0,kg/TJ,598032.6959879999,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,3cfc7cac-1ee4-3c8d-843d-4e27fd573cce +2019,Santa Fe,II.1.1,8.070616679999999,TJ,CH4,3.9,kg/TJ,31.475405051999996,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,4e83c883-6dee-323c-bd39-48525d53292d +2019,Santa Fe,II.1.1,8.070616679999999,TJ,N2O,3.9,kg/TJ,31.475405051999996,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,4e83c883-6dee-323c-bd39-48525d53292d +2019,Buenos Aires,II.1.1,19.0265712,TJ,CO2,74100.0,kg/TJ,1409868.92592,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,9d9fc13c-8888-38e3-95b9-1d66fffecad8 +2019,Buenos Aires,II.1.1,19.0265712,TJ,CH4,3.9,kg/TJ,74.20362768,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,0f5cb65e-108e-3b15-8cb0-94d5e32a1286 +2019,Buenos Aires,II.1.1,19.0265712,TJ,N2O,3.9,kg/TJ,74.20362768,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,0f5cb65e-108e-3b15-8cb0-94d5e32a1286 +2019,Córdoba,II.1.1,2.3454883200000003,TJ,CO2,74100.0,kg/TJ,173800.68451200004,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,870910fd-e614-3664-8b6f-616774cf392d +2019,Córdoba,II.1.1,2.3454883200000003,TJ,CH4,3.9,kg/TJ,9.147404448000001,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,bb09dbfb-0ef6-35d4-94d7-3b5628869278 +2019,Córdoba,II.1.1,2.3454883200000003,TJ,N2O,3.9,kg/TJ,9.147404448000001,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,bb09dbfb-0ef6-35d4-94d7-3b5628869278 +2019,Misiones,II.1.1,1.9766308799999999,TJ,CO2,74100.0,kg/TJ,146468.34820799998,Gas Oil combustion consumption by public passenger transport,AR-N,SESCO,annual,kg,a2737738-a4fe-39d0-b506-c6ce46fcb03a +2019,Misiones,II.1.1,1.9766308799999999,TJ,CH4,3.9,kg/TJ,7.708860431999999,Gas Oil combustion consumption by public passenger transport,AR-N,SESCO,annual,kg,717dd81f-3b6c-33e4-be4d-bed5d23d6a0f +2019,Misiones,II.1.1,1.9766308799999999,TJ,N2O,3.9,kg/TJ,7.708860431999999,Gas Oil combustion consumption by public passenger transport,AR-N,SESCO,annual,kg,717dd81f-3b6c-33e4-be4d-bed5d23d6a0f +2019,Neuquén,II.1.1,0.57748656,TJ,CO2,74100.0,kg/TJ,42791.754096,Gas Oil combustion consumption by public passenger transport,AR-Q,SESCO,annual,kg,9b5e5bee-cbdd-3fff-ad8d-79062806b9dd +2019,Neuquén,II.1.1,0.57748656,TJ,CH4,3.9,kg/TJ,2.2521975839999997,Gas Oil combustion consumption by public passenger transport,AR-Q,SESCO,annual,kg,cf9f3c43-7fc3-3461-a9c6-b281ac76910d +2019,Neuquén,II.1.1,0.57748656,TJ,N2O,3.9,kg/TJ,2.2521975839999997,Gas Oil combustion consumption by public passenger transport,AR-Q,SESCO,annual,kg,cf9f3c43-7fc3-3461-a9c6-b281ac76910d +2019,Rio Negro,II.1.1,10.73598372,TJ,CO2,74100.0,kg/TJ,795536.393652,Gas Oil combustion consumption by public passenger transport,AR-R,SESCO,annual,kg,bfcfe088-5db0-389d-91f5-93e420663942 +2019,Rio Negro,II.1.1,10.73598372,TJ,CH4,3.9,kg/TJ,41.870336508,Gas Oil combustion consumption by public passenger transport,AR-R,SESCO,annual,kg,f39d12b2-3fc7-394a-9408-313b3a29bd77 +2019,Rio Negro,II.1.1,10.73598372,TJ,N2O,3.9,kg/TJ,41.870336508,Gas Oil combustion consumption by public passenger transport,AR-R,SESCO,annual,kg,f39d12b2-3fc7-394a-9408-313b3a29bd77 +2019,Santa Fe,II.1.1,1.26264684,TJ,CO2,74100.0,kg/TJ,93562.130844,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,9386d7e5-ce57-308b-8e2e-6e5c1f340a2a +2019,Santa Fe,II.1.1,1.26264684,TJ,CH4,3.9,kg/TJ,4.924322676,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,e11fe348-bcf5-3250-97e3-147a0cc20443 +2019,Santa Fe,II.1.1,1.26264684,TJ,N2O,3.9,kg/TJ,4.924322676,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,e11fe348-bcf5-3250-97e3-147a0cc20443 +2019,Buenos Aires,II.1.1,0.9882025999999999,TJ,CO2,73300.0,kg/TJ,72435.25057999999,Naphtha combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,53ecf435-9d67-3e33-b8dc-aa8977f4e2e0 +2019,Buenos Aires,II.1.1,0.9882025999999999,TJ,CH4,0.5,kg/TJ,0.49410129999999997,Naphtha combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,fe82f92b-ab07-3d15-9353-0ef69218593f +2019,Buenos Aires,II.1.1,0.9882025999999999,TJ,N2O,2.0,kg/TJ,1.9764051999999999,Naphtha combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,37e12776-173f-3d92-a272-84f2ce20e559 +2019,Buenos Aires,II.5.1,8651.20956,TJ,CO2,74100.0,kg/TJ,641054628.3959999,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,1918616b-dde7-346a-a1dd-38f45320e7fa +2019,Buenos Aires,II.5.1,8651.20956,TJ,CH4,3.9,kg/TJ,33739.717284,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,0f1857cc-587c-308b-bc6d-f22c0871584c +2019,Buenos Aires,II.5.1,8651.20956,TJ,N2O,3.9,kg/TJ,33739.717284,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,0f1857cc-587c-308b-bc6d-f22c0871584c +2019,Capital Federal,II.5.1,265.98768,TJ,CO2,74100.0,kg/TJ,19709687.088,Gas Oil combustion consumption by agriculture machines,AR-C,SESCO,annual,kg,5354b64a-e011-3b02-9d05-2a56bb74ee8f +2019,Capital Federal,II.5.1,265.98768,TJ,CH4,3.9,kg/TJ,1037.351952,Gas Oil combustion consumption by agriculture machines,AR-C,SESCO,annual,kg,88cad355-1057-3816-bda5-4273859d700c +2019,Capital Federal,II.5.1,265.98768,TJ,N2O,3.9,kg/TJ,1037.351952,Gas Oil combustion consumption by agriculture machines,AR-C,SESCO,annual,kg,88cad355-1057-3816-bda5-4273859d700c +2019,Catamarca,II.5.1,201.29675999999998,TJ,CO2,74100.0,kg/TJ,14916089.916,Gas Oil combustion consumption by agriculture machines,AR-K,SESCO,annual,kg,766b9fcd-79d6-34ca-9224-b121785110ac +2019,Catamarca,II.5.1,201.29675999999998,TJ,CH4,3.9,kg/TJ,785.0573639999999,Gas Oil combustion consumption by agriculture machines,AR-K,SESCO,annual,kg,57bebf58-9a0d-3d78-b57a-5b73b2cb27ca +2019,Catamarca,II.5.1,201.29675999999998,TJ,N2O,3.9,kg/TJ,785.0573639999999,Gas Oil combustion consumption by agriculture machines,AR-K,SESCO,annual,kg,57bebf58-9a0d-3d78-b57a-5b73b2cb27ca +2019,Chaco,II.5.1,1043.3262,TJ,CO2,74100.0,kg/TJ,77310471.42,Gas Oil combustion consumption by agriculture machines,AR-H,SESCO,annual,kg,747fc2b2-fb2f-3e08-a978-32ddd00cb379 +2019,Chaco,II.5.1,1043.3262,TJ,CH4,3.9,kg/TJ,4068.9721799999998,Gas Oil combustion consumption by agriculture machines,AR-H,SESCO,annual,kg,e81cd35d-9be7-317f-a1cd-4e4d50bd928f +2019,Chaco,II.5.1,1043.3262,TJ,N2O,3.9,kg/TJ,4068.9721799999998,Gas Oil combustion consumption by agriculture machines,AR-H,SESCO,annual,kg,e81cd35d-9be7-317f-a1cd-4e4d50bd928f +2019,Corrientes,II.5.1,499.46736,TJ,CO2,74100.0,kg/TJ,37010531.376,Gas Oil combustion consumption by agriculture machines,AR-W,SESCO,annual,kg,b658273a-b701-395c-ba27-e1b6c46f2106 +2019,Corrientes,II.5.1,499.46736,TJ,CH4,3.9,kg/TJ,1947.9227039999998,Gas Oil combustion consumption by agriculture machines,AR-W,SESCO,annual,kg,43d5b4ba-47b5-3c84-9fcb-43e10a8d873e +2019,Corrientes,II.5.1,499.46736,TJ,N2O,3.9,kg/TJ,1947.9227039999998,Gas Oil combustion consumption by agriculture machines,AR-W,SESCO,annual,kg,43d5b4ba-47b5-3c84-9fcb-43e10a8d873e +2019,Córdoba,II.5.1,7613.590319999999,TJ,CO2,74100.0,kg/TJ,564167042.7119999,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,bc72e608-fddc-3bc2-9f4c-159d24d99f76 +2019,Córdoba,II.5.1,7613.590319999999,TJ,CH4,3.9,kg/TJ,29693.002247999997,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,20b6fc84-8fe7-38a9-b9cd-8c70d406f759 +2019,Córdoba,II.5.1,7613.590319999999,TJ,N2O,3.9,kg/TJ,29693.002247999997,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,20b6fc84-8fe7-38a9-b9cd-8c70d406f759 +2019,Entre Rios,II.5.1,1888.28136,TJ,CO2,74100.0,kg/TJ,139921648.776,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,5d445cbb-ef85-337d-bfc8-57c139e9d09b +2019,Entre Rios,II.5.1,1888.28136,TJ,CH4,3.9,kg/TJ,7364.297304,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,1e0eb7cd-6196-3cdf-a245-43ba67c4efac +2019,Entre Rios,II.5.1,1888.28136,TJ,N2O,3.9,kg/TJ,7364.297304,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,1e0eb7cd-6196-3cdf-a245-43ba67c4efac +2019,Formosa,II.5.1,240.41472,TJ,CO2,74100.0,kg/TJ,17814730.752,Gas Oil combustion consumption by agriculture machines,AR-P,SESCO,annual,kg,632e8bdc-33e6-30e6-bd14-db4fc319f840 +2019,Formosa,II.5.1,240.41472,TJ,CH4,3.9,kg/TJ,937.617408,Gas Oil combustion consumption by agriculture machines,AR-P,SESCO,annual,kg,f9eef900-2732-3ec8-89b6-0c0ed10ab307 +2019,Formosa,II.5.1,240.41472,TJ,N2O,3.9,kg/TJ,937.617408,Gas Oil combustion consumption by agriculture machines,AR-P,SESCO,annual,kg,f9eef900-2732-3ec8-89b6-0c0ed10ab307 +2019,Jujuy,II.5.1,586.4082,TJ,CO2,74100.0,kg/TJ,43452847.62,Gas Oil combustion consumption by agriculture machines,AR-Y,SESCO,annual,kg,8fb99443-13cf-342f-a9ff-be93ddf6730e +2019,Jujuy,II.5.1,586.4082,TJ,CH4,3.9,kg/TJ,2286.99198,Gas Oil combustion consumption by agriculture machines,AR-Y,SESCO,annual,kg,623dcc0e-921d-3a6a-b12b-76877d47db6c +2019,Jujuy,II.5.1,586.4082,TJ,N2O,3.9,kg/TJ,2286.99198,Gas Oil combustion consumption by agriculture machines,AR-Y,SESCO,annual,kg,623dcc0e-921d-3a6a-b12b-76877d47db6c +2019,La Pampa,II.5.1,1603.07784,TJ,CO2,74100.0,kg/TJ,118788067.94399999,Gas Oil combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,4baf1cfd-35f2-3308-8068-c8eba3c84f3b +2019,La Pampa,II.5.1,1603.07784,TJ,CH4,3.9,kg/TJ,6252.003575999999,Gas Oil combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,312ec46a-d34b-326d-95c3-870e22a07b9c +2019,La Pampa,II.5.1,1603.07784,TJ,N2O,3.9,kg/TJ,6252.003575999999,Gas Oil combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,312ec46a-d34b-326d-95c3-870e22a07b9c +2019,La Rioja,II.5.1,132.48816,TJ,CO2,74100.0,kg/TJ,9817372.656,Gas Oil combustion consumption by agriculture machines,AR-F,SESCO,annual,kg,9a9374f4-3b99-3230-98a3-fef24b7b0c2a +2019,La Rioja,II.5.1,132.48816,TJ,CH4,3.9,kg/TJ,516.7038239999999,Gas Oil combustion consumption by agriculture machines,AR-F,SESCO,annual,kg,ad4135ee-55d7-3b85-8ca3-457f64b61779 +2019,La Rioja,II.5.1,132.48816,TJ,N2O,3.9,kg/TJ,516.7038239999999,Gas Oil combustion consumption by agriculture machines,AR-F,SESCO,annual,kg,ad4135ee-55d7-3b85-8ca3-457f64b61779 +2019,Mendoza,II.5.1,2022.6116399999999,TJ,CO2,74100.0,kg/TJ,149875522.524,Gas Oil combustion consumption by agriculture machines,AR-M,SESCO,annual,kg,eca5b231-8ff3-35f1-b524-00ed811c64fb +2019,Mendoza,II.5.1,2022.6116399999999,TJ,CH4,3.9,kg/TJ,7888.185395999999,Gas Oil combustion consumption by agriculture machines,AR-M,SESCO,annual,kg,9d18051c-bca1-3be8-afed-c7bcef52fe80 +2019,Mendoza,II.5.1,2022.6116399999999,TJ,N2O,3.9,kg/TJ,7888.185395999999,Gas Oil combustion consumption by agriculture machines,AR-M,SESCO,annual,kg,9d18051c-bca1-3be8-afed-c7bcef52fe80 +2019,Misiones,II.5.1,1063.58952,TJ,CO2,74100.0,kg/TJ,78811983.432,Gas Oil combustion consumption by agriculture machines,AR-N,SESCO,annual,kg,f8099db1-e300-3ed1-b7af-48a1a13f6778 +2019,Misiones,II.5.1,1063.58952,TJ,CH4,3.9,kg/TJ,4147.9991279999995,Gas Oil combustion consumption by agriculture machines,AR-N,SESCO,annual,kg,2a086791-9f7f-3f81-9b6f-c7dece386855 +2019,Misiones,II.5.1,1063.58952,TJ,N2O,3.9,kg/TJ,4147.9991279999995,Gas Oil combustion consumption by agriculture machines,AR-N,SESCO,annual,kg,2a086791-9f7f-3f81-9b6f-c7dece386855 +2019,Rio Negro,II.5.1,212.85515999999998,TJ,CO2,74100.0,kg/TJ,15772567.355999999,Gas Oil combustion consumption by agriculture machines,AR-R,SESCO,annual,kg,1c3d2384-4642-385c-8285-47414363bae2 +2019,Rio Negro,II.5.1,212.85515999999998,TJ,CH4,3.9,kg/TJ,830.1351239999999,Gas Oil combustion consumption by agriculture machines,AR-R,SESCO,annual,kg,22b4d8d7-5161-32c6-9892-35d7ee8dde10 +2019,Rio Negro,II.5.1,212.85515999999998,TJ,N2O,3.9,kg/TJ,830.1351239999999,Gas Oil combustion consumption by agriculture machines,AR-R,SESCO,annual,kg,22b4d8d7-5161-32c6-9892-35d7ee8dde10 +2019,Salta,II.5.1,1617.9231599999998,TJ,CO2,74100.0,kg/TJ,119888106.15599999,Gas Oil combustion consumption by agriculture machines,AR-A,SESCO,annual,kg,db5fa880-1912-3d46-a2ce-8455f52a36e6 +2019,Salta,II.5.1,1617.9231599999998,TJ,CH4,3.9,kg/TJ,6309.900323999999,Gas Oil combustion consumption by agriculture machines,AR-A,SESCO,annual,kg,1797b476-95c3-32fc-abaf-11ac938350d4 +2019,Salta,II.5.1,1617.9231599999998,TJ,N2O,3.9,kg/TJ,6309.900323999999,Gas Oil combustion consumption by agriculture machines,AR-A,SESCO,annual,kg,1797b476-95c3-32fc-abaf-11ac938350d4 +2019,San Juan,II.5.1,583.22964,TJ,CO2,74100.0,kg/TJ,43217316.324,Gas Oil combustion consumption by agriculture machines,AR-J,SESCO,annual,kg,d91e9969-3a7b-3f30-8092-d50d860f604e +2019,San Juan,II.5.1,583.22964,TJ,CH4,3.9,kg/TJ,2274.595596,Gas Oil combustion consumption by agriculture machines,AR-J,SESCO,annual,kg,233f05be-3732-3016-bda5-f07658ab00e5 +2019,San Juan,II.5.1,583.22964,TJ,N2O,3.9,kg/TJ,2274.595596,Gas Oil combustion consumption by agriculture machines,AR-J,SESCO,annual,kg,233f05be-3732-3016-bda5-f07658ab00e5 +2019,San Luis,II.5.1,388.32612,TJ,CO2,74100.0,kg/TJ,28774965.492,Gas Oil combustion consumption by agriculture machines,AR-D,SESCO,annual,kg,4095e60d-9e01-3841-93f2-6d426c3971d1 +2019,San Luis,II.5.1,388.32612,TJ,CH4,3.9,kg/TJ,1514.471868,Gas Oil combustion consumption by agriculture machines,AR-D,SESCO,annual,kg,2de3f7e8-1db7-30bb-bee4-16c61e5a30d0 +2019,San Luis,II.5.1,388.32612,TJ,N2O,3.9,kg/TJ,1514.471868,Gas Oil combustion consumption by agriculture machines,AR-D,SESCO,annual,kg,2de3f7e8-1db7-30bb-bee4-16c61e5a30d0 +2019,Santa Fe,II.5.1,6961.0102799999995,TJ,CO2,74100.0,kg/TJ,515810861.74799997,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,cfabf44b-ebb6-3925-a91b-53197306221d +2019,Santa Fe,II.5.1,6961.0102799999995,TJ,CH4,3.9,kg/TJ,27147.940091999997,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,0be64889-426a-3130-bf14-dad7db5d10a1 +2019,Santa Fe,II.5.1,6961.0102799999995,TJ,N2O,3.9,kg/TJ,27147.940091999997,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,0be64889-426a-3130-bf14-dad7db5d10a1 +2019,Santiago del Estero,II.5.1,1817.08884,TJ,CO2,74100.0,kg/TJ,134646283.044,Gas Oil combustion consumption by agriculture machines,AR-G,SESCO,annual,kg,993dc037-85e5-3d08-873a-0eb7ad4a327f +2019,Santiago del Estero,II.5.1,1817.08884,TJ,CH4,3.9,kg/TJ,7086.646475999999,Gas Oil combustion consumption by agriculture machines,AR-G,SESCO,annual,kg,45b0d4f4-4ac8-38af-9c2a-c915734af6be +2019,Santiago del Estero,II.5.1,1817.08884,TJ,N2O,3.9,kg/TJ,7086.646475999999,Gas Oil combustion consumption by agriculture machines,AR-G,SESCO,annual,kg,45b0d4f4-4ac8-38af-9c2a-c915734af6be +2019,Tucuman,II.5.1,1061.13336,TJ,CO2,74100.0,kg/TJ,78629981.976,Gas Oil combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,efd6a92d-6c2c-3b85-a0cc-0e4d67e206d4 +2019,Tucuman,II.5.1,1061.13336,TJ,CH4,3.9,kg/TJ,4138.420104,Gas Oil combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,2c19dba0-0203-3147-9f72-12dda9d4cdaf +2019,Tucuman,II.5.1,1061.13336,TJ,N2O,3.9,kg/TJ,4138.420104,Gas Oil combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,2c19dba0-0203-3147-9f72-12dda9d4cdaf +2019,Buenos Aires,II.5.1,627.62112,TJ,CO2,74100.0,kg/TJ,46506724.992,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,7c406654-8a3d-3078-ae32-6f8d09fe7349 +2019,Buenos Aires,II.5.1,627.62112,TJ,CH4,3.9,kg/TJ,2447.722368,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,7e53c6e2-488a-33d9-a433-42a514bfbbe7 +2019,Buenos Aires,II.5.1,627.62112,TJ,N2O,3.9,kg/TJ,2447.722368,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,7e53c6e2-488a-33d9-a433-42a514bfbbe7 +2019,Capital Federal,II.5.1,3.72036,TJ,CO2,74100.0,kg/TJ,275678.676,Gas Oil combustion consumption by agriculture machines,AR-C,SESCO,annual,kg,4b7df076-85f9-38cf-91af-92b980da1b92 +2019,Capital Federal,II.5.1,3.72036,TJ,CH4,3.9,kg/TJ,14.509404,Gas Oil combustion consumption by agriculture machines,AR-C,SESCO,annual,kg,e162d133-7c9d-3f7d-8e13-445b383c1047 +2019,Capital Federal,II.5.1,3.72036,TJ,N2O,3.9,kg/TJ,14.509404,Gas Oil combustion consumption by agriculture machines,AR-C,SESCO,annual,kg,e162d133-7c9d-3f7d-8e13-445b383c1047 +2019,Catamarca,II.5.1,20.48004,TJ,CO2,74100.0,kg/TJ,1517570.964,Gas Oil combustion consumption by agriculture machines,AR-K,SESCO,annual,kg,7fdbff2b-2ca3-35c6-a643-145a24ca0213 +2019,Catamarca,II.5.1,20.48004,TJ,CH4,3.9,kg/TJ,79.87215599999999,Gas Oil combustion consumption by agriculture machines,AR-K,SESCO,annual,kg,86af5e03-58a3-3bad-b397-7e783ff4b308 +2019,Catamarca,II.5.1,20.48004,TJ,N2O,3.9,kg/TJ,79.87215599999999,Gas Oil combustion consumption by agriculture machines,AR-K,SESCO,annual,kg,86af5e03-58a3-3bad-b397-7e783ff4b308 +2019,Chaco,II.5.1,74.22659999999999,TJ,CO2,74100.0,kg/TJ,5500191.06,Gas Oil combustion consumption by agriculture machines,AR-H,SESCO,annual,kg,875fc73e-af76-34be-835c-2ab909277584 +2019,Chaco,II.5.1,74.22659999999999,TJ,CH4,3.9,kg/TJ,289.48373999999995,Gas Oil combustion consumption by agriculture machines,AR-H,SESCO,annual,kg,f78837cc-2de1-31cb-9108-f56167686fee +2019,Chaco,II.5.1,74.22659999999999,TJ,N2O,3.9,kg/TJ,289.48373999999995,Gas Oil combustion consumption by agriculture machines,AR-H,SESCO,annual,kg,f78837cc-2de1-31cb-9108-f56167686fee +2019,Corrientes,II.5.1,34.89192,TJ,CO2,74100.0,kg/TJ,2585491.272,Gas Oil combustion consumption by agriculture machines,AR-W,SESCO,annual,kg,516f3a17-a4cd-3b8f-9467-6df247a2068a +2019,Corrientes,II.5.1,34.89192,TJ,CH4,3.9,kg/TJ,136.078488,Gas Oil combustion consumption by agriculture machines,AR-W,SESCO,annual,kg,aa2b233b-5479-3f2b-b5e8-d4f849f75576 +2019,Corrientes,II.5.1,34.89192,TJ,N2O,3.9,kg/TJ,136.078488,Gas Oil combustion consumption by agriculture machines,AR-W,SESCO,annual,kg,aa2b233b-5479-3f2b-b5e8-d4f849f75576 +2019,Córdoba,II.5.1,452.5836,TJ,CO2,74100.0,kg/TJ,33536444.759999998,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,5839820b-bcd8-33e3-91d9-4503d7205718 +2019,Córdoba,II.5.1,452.5836,TJ,CH4,3.9,kg/TJ,1765.07604,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,304aabb4-ed20-35d9-bfc2-943eadc07439 +2019,Córdoba,II.5.1,452.5836,TJ,N2O,3.9,kg/TJ,1765.07604,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,304aabb4-ed20-35d9-bfc2-943eadc07439 +2019,Entre Rios,II.5.1,38.17884,TJ,CO2,74100.0,kg/TJ,2829052.044,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,73d19a93-2c29-3295-b14a-f0346404c83d +2019,Entre Rios,II.5.1,38.17884,TJ,CH4,3.9,kg/TJ,148.897476,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,497eef85-a8bb-34d6-9077-083a2b3d6547 +2019,Entre Rios,II.5.1,38.17884,TJ,N2O,3.9,kg/TJ,148.897476,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,497eef85-a8bb-34d6-9077-083a2b3d6547 +2019,Formosa,II.5.1,17.626559999999998,TJ,CO2,74100.0,kg/TJ,1306128.096,Gas Oil combustion consumption by agriculture machines,AR-P,SESCO,annual,kg,d2d0c2ca-384b-378b-bbec-49d12207046f +2019,Formosa,II.5.1,17.626559999999998,TJ,CH4,3.9,kg/TJ,68.74358399999998,Gas Oil combustion consumption by agriculture machines,AR-P,SESCO,annual,kg,d8eda709-9963-3651-b911-2621a5901433 +2019,Formosa,II.5.1,17.626559999999998,TJ,N2O,3.9,kg/TJ,68.74358399999998,Gas Oil combustion consumption by agriculture machines,AR-P,SESCO,annual,kg,d8eda709-9963-3651-b911-2621a5901433 +2019,Jujuy,II.5.1,90.44448,TJ,CO2,74100.0,kg/TJ,6701935.968,Gas Oil combustion consumption by agriculture machines,AR-Y,SESCO,annual,kg,ad4c02e9-92b4-3a21-bab4-a80fe9ff5935 +2019,Jujuy,II.5.1,90.44448,TJ,CH4,3.9,kg/TJ,352.733472,Gas Oil combustion consumption by agriculture machines,AR-Y,SESCO,annual,kg,4f838bb8-2287-35ea-9b92-d88ddb432ad5 +2019,Jujuy,II.5.1,90.44448,TJ,N2O,3.9,kg/TJ,352.733472,Gas Oil combustion consumption by agriculture machines,AR-Y,SESCO,annual,kg,4f838bb8-2287-35ea-9b92-d88ddb432ad5 +2019,La Pampa,II.5.1,136.28076,TJ,CO2,74100.0,kg/TJ,10098404.316,Gas Oil combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,c823c75b-7a50-3877-9bb5-47da37cc7785 +2019,La Pampa,II.5.1,136.28076,TJ,CH4,3.9,kg/TJ,531.494964,Gas Oil combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,0317e3bb-186d-3bbf-8298-2ec4173f5d7b +2019,La Pampa,II.5.1,136.28076,TJ,N2O,3.9,kg/TJ,531.494964,Gas Oil combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,0317e3bb-186d-3bbf-8298-2ec4173f5d7b +2019,Mendoza,II.5.1,422.64011999999997,TJ,CO2,74100.0,kg/TJ,31317632.891999997,Gas Oil combustion consumption by agriculture machines,AR-M,SESCO,annual,kg,2def77de-d827-3a91-8c7b-01781a339f64 +2019,Mendoza,II.5.1,422.64011999999997,TJ,CH4,3.9,kg/TJ,1648.2964679999998,Gas Oil combustion consumption by agriculture machines,AR-M,SESCO,annual,kg,bd2772c8-a006-380f-b692-0c00ed977522 +2019,Mendoza,II.5.1,422.64011999999997,TJ,N2O,3.9,kg/TJ,1648.2964679999998,Gas Oil combustion consumption by agriculture machines,AR-M,SESCO,annual,kg,bd2772c8-a006-380f-b692-0c00ed977522 +2019,Misiones,II.5.1,105.86771999999999,TJ,CO2,74100.0,kg/TJ,7844798.051999999,Gas Oil combustion consumption by agriculture machines,AR-N,SESCO,annual,kg,a1d91659-b6d7-3a49-a507-fd9dc4263c6b +2019,Misiones,II.5.1,105.86771999999999,TJ,CH4,3.9,kg/TJ,412.88410799999997,Gas Oil combustion consumption by agriculture machines,AR-N,SESCO,annual,kg,c941d19d-07f1-3e27-8c1c-f84927eb5c95 +2019,Misiones,II.5.1,105.86771999999999,TJ,N2O,3.9,kg/TJ,412.88410799999997,Gas Oil combustion consumption by agriculture machines,AR-N,SESCO,annual,kg,c941d19d-07f1-3e27-8c1c-f84927eb5c95 +2019,Rio Negro,II.5.1,45.583439999999996,TJ,CO2,74100.0,kg/TJ,3377732.9039999996,Gas Oil combustion consumption by agriculture machines,AR-R,SESCO,annual,kg,4b182174-d83b-3641-afb9-f736d0863df5 +2019,Rio Negro,II.5.1,45.583439999999996,TJ,CH4,3.9,kg/TJ,177.77541599999998,Gas Oil combustion consumption by agriculture machines,AR-R,SESCO,annual,kg,88550b19-e6ed-36ec-8a17-bf280dacfced +2019,Rio Negro,II.5.1,45.583439999999996,TJ,N2O,3.9,kg/TJ,177.77541599999998,Gas Oil combustion consumption by agriculture machines,AR-R,SESCO,annual,kg,88550b19-e6ed-36ec-8a17-bf280dacfced +2019,Salta,II.5.1,180.70836,TJ,CO2,74100.0,kg/TJ,13390489.476,Gas Oil combustion consumption by agriculture machines,AR-A,SESCO,annual,kg,928745e1-ce4e-3135-8551-9e259500be4e +2019,Salta,II.5.1,180.70836,TJ,CH4,3.9,kg/TJ,704.762604,Gas Oil combustion consumption by agriculture machines,AR-A,SESCO,annual,kg,27b0b13c-cdd5-37a9-b73f-4cd5f38eaee4 +2019,Salta,II.5.1,180.70836,TJ,N2O,3.9,kg/TJ,704.762604,Gas Oil combustion consumption by agriculture machines,AR-A,SESCO,annual,kg,27b0b13c-cdd5-37a9-b73f-4cd5f38eaee4 +2019,San Juan,II.5.1,116.77596,TJ,CO2,74100.0,kg/TJ,8653098.636,Gas Oil combustion consumption by agriculture machines,AR-J,SESCO,annual,kg,7f193878-0fdd-3438-84a6-72c2014ce72e +2019,San Juan,II.5.1,116.77596,TJ,CH4,3.9,kg/TJ,455.426244,Gas Oil combustion consumption by agriculture machines,AR-J,SESCO,annual,kg,bd06e004-ba43-38c8-91cd-ea092d3b8f92 +2019,San Juan,II.5.1,116.77596,TJ,N2O,3.9,kg/TJ,455.426244,Gas Oil combustion consumption by agriculture machines,AR-J,SESCO,annual,kg,bd06e004-ba43-38c8-91cd-ea092d3b8f92 +2019,San Luis,II.5.1,40.88784,TJ,CO2,74100.0,kg/TJ,3029788.9439999997,Gas Oil combustion consumption by agriculture machines,AR-D,SESCO,annual,kg,507c71f5-fa87-30ff-83c4-8f5eb7a3e101 +2019,San Luis,II.5.1,40.88784,TJ,CH4,3.9,kg/TJ,159.46257599999998,Gas Oil combustion consumption by agriculture machines,AR-D,SESCO,annual,kg,32444d93-32cb-3be5-937d-2d64454de4f0 +2019,San Luis,II.5.1,40.88784,TJ,N2O,3.9,kg/TJ,159.46257599999998,Gas Oil combustion consumption by agriculture machines,AR-D,SESCO,annual,kg,32444d93-32cb-3be5-937d-2d64454de4f0 +2019,Santa Fe,II.5.1,395.94744,TJ,CO2,74100.0,kg/TJ,29339705.303999998,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,0e2d9bfa-c814-35ae-aaf3-e3a805ffaba4 +2019,Santa Fe,II.5.1,395.94744,TJ,CH4,3.9,kg/TJ,1544.195016,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,b5b0784b-5664-346b-8623-f1d06d80afef +2019,Santa Fe,II.5.1,395.94744,TJ,N2O,3.9,kg/TJ,1544.195016,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,b5b0784b-5664-346b-8623-f1d06d80afef +2019,Santiago del Estero,II.5.1,107.60148,TJ,CO2,74100.0,kg/TJ,7973269.668,Gas Oil combustion consumption by agriculture machines,AR-G,SESCO,annual,kg,f25c682e-49b0-3012-83e6-740c510efd58 +2019,Santiago del Estero,II.5.1,107.60148,TJ,CH4,3.9,kg/TJ,419.64577199999997,Gas Oil combustion consumption by agriculture machines,AR-G,SESCO,annual,kg,6ced76c4-f2d2-3fb4-b34b-b345490412ef +2019,Santiago del Estero,II.5.1,107.60148,TJ,N2O,3.9,kg/TJ,419.64577199999997,Gas Oil combustion consumption by agriculture machines,AR-G,SESCO,annual,kg,6ced76c4-f2d2-3fb4-b34b-b345490412ef +2019,Tucuman,II.5.1,140.25396,TJ,CO2,74100.0,kg/TJ,10392818.436,Gas Oil combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,4663c7a7-2418-397d-ad79-b181c88f9a92 +2019,Tucuman,II.5.1,140.25396,TJ,CH4,3.9,kg/TJ,546.990444,Gas Oil combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,a828bdea-69ac-3e93-874a-32ea41db91d2 +2019,Tucuman,II.5.1,140.25396,TJ,N2O,3.9,kg/TJ,546.990444,Gas Oil combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,a828bdea-69ac-3e93-874a-32ea41db91d2 +2019,Buenos Aires,II.5.1,3.396924,TJ,CO2,71500.0,kg/TJ,242880.066,Jet Kerosene combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,ee26b597-d34e-3a6d-8bca-1ec9f941a8f8 +2019,Buenos Aires,II.5.1,3.396924,TJ,CH4,0.5,kg/TJ,1.698462,Jet Kerosene combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,4542d494-8a77-3550-9d05-92343e857b3b +2019,Buenos Aires,II.5.1,3.396924,TJ,N2O,2.0,kg/TJ,6.793848,Jet Kerosene combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,6e09372d-59c1-3868-a47a-0a7e09fa7a6a +2019,La Pampa,II.5.1,0.25162399999999996,TJ,CO2,71500.0,kg/TJ,17991.115999999998,Jet Kerosene combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,5a9ffcf1-b91f-36e8-89f1-3fb0028a1a19 +2019,La Pampa,II.5.1,0.25162399999999996,TJ,CH4,0.5,kg/TJ,0.12581199999999998,Jet Kerosene combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,9410b4d8-6c4a-3e6a-9be6-be1260d0e734 +2019,La Pampa,II.5.1,0.25162399999999996,TJ,N2O,2.0,kg/TJ,0.5032479999999999,Jet Kerosene combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,92c7eb1e-9101-3896-a91f-7fea236f6ab3 +2019,Rio Negro,II.5.1,0.157265,TJ,CO2,71500.0,kg/TJ,11244.447499999998,Jet Kerosene combustion consumption by agriculture machines,AR-R,SESCO,annual,kg,7611ed35-d2b6-3d56-a761-5cbcb7761925 +2019,Rio Negro,II.5.1,0.157265,TJ,CH4,0.5,kg/TJ,0.0786325,Jet Kerosene combustion consumption by agriculture machines,AR-R,SESCO,annual,kg,ffbd7c2c-8a92-3ee6-81fa-4a55d0d621d6 +2019,Rio Negro,II.5.1,0.157265,TJ,N2O,2.0,kg/TJ,0.31453,Jet Kerosene combustion consumption by agriculture machines,AR-R,SESCO,annual,kg,def8e062-54d5-3d9b-940d-c6228d4dd2f5 +2019,Santa Fe,II.5.1,5.34701,TJ,CO2,71500.0,kg/TJ,382311.215,Jet Kerosene combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,81797d50-1a7c-3534-aa94-72dc55a8e268 +2019,Santa Fe,II.5.1,5.34701,TJ,CH4,0.5,kg/TJ,2.673505,Jet Kerosene combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,1b044d46-4157-3b98-9b5b-da0809146675 +2019,Santa Fe,II.5.1,5.34701,TJ,N2O,2.0,kg/TJ,10.69402,Jet Kerosene combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,41f103f6-be0f-30d6-9203-32f89aedb223 +2019,Buenos Aires,II.5.1,62.636419999999994,TJ,CO2,73300.0,kg/TJ,4591249.585999999,Naphtha combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,94413eba-0146-3797-bbb9-b0024bac7cac +2019,Buenos Aires,II.5.1,62.636419999999994,TJ,CH4,0.5,kg/TJ,31.318209999999997,Naphtha combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,c45e86d6-3ddf-3aff-83e4-76e253e4282d +2019,Buenos Aires,II.5.1,62.636419999999994,TJ,N2O,2.0,kg/TJ,125.27283999999999,Naphtha combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,040f1612-1af1-34c6-a76b-9650bb8e8129 +2019,Mendoza,II.5.1,1.2678049999999998,TJ,CO2,73300.0,kg/TJ,92930.1065,Naphtha combustion consumption by agriculture machines,AR-M,SESCO,annual,kg,f91a0fc0-cee8-3fea-bb34-f93fe5d09946 +2019,Mendoza,II.5.1,1.2678049999999998,TJ,CH4,0.5,kg/TJ,0.6339024999999999,Naphtha combustion consumption by agriculture machines,AR-M,SESCO,annual,kg,8b14ff69-4c18-31db-a94a-796661642763 +2019,Mendoza,II.5.1,1.2678049999999998,TJ,N2O,2.0,kg/TJ,2.5356099999999997,Naphtha combustion consumption by agriculture machines,AR-M,SESCO,annual,kg,8a04558f-c7ca-30c6-b2f6-e3be4c27c4c4 +2019,Salta,II.5.1,0.513975,TJ,CO2,73300.0,kg/TJ,37674.3675,Naphtha combustion consumption by agriculture machines,AR-A,SESCO,annual,kg,126d8f68-8771-319a-b75a-f360086b2d6c +2019,Salta,II.5.1,0.513975,TJ,CH4,0.5,kg/TJ,0.2569875,Naphtha combustion consumption by agriculture machines,AR-A,SESCO,annual,kg,fd0b5cb3-180e-3ca1-972c-a28c70a770b7 +2019,Salta,II.5.1,0.513975,TJ,N2O,2.0,kg/TJ,1.02795,Naphtha combustion consumption by agriculture machines,AR-A,SESCO,annual,kg,7edf10c7-36be-3eff-ada2-257cd2bc27cf +2019,Santa Fe,II.5.1,43.37949,TJ,CO2,73300.0,kg/TJ,3179716.6169999996,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,4a9eb319-6f73-3188-ba73-5c549c08f40a +2019,Santa Fe,II.5.1,43.37949,TJ,CH4,0.5,kg/TJ,21.689745,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,7b1ddfba-7ea3-3c9e-b5fb-eb99354bb39f +2019,Santa Fe,II.5.1,43.37949,TJ,N2O,2.0,kg/TJ,86.75898,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,a01dcfcb-84f6-354f-ac4f-e1802bac5253 +2019,Buenos Aires,II.1.1,10360.2996,TJ,CO2,74100.0,kg/TJ,767698200.36,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,4b3782f8-94ce-32e4-91cd-9a90bb7ec21f +2019,Buenos Aires,II.1.1,10360.2996,TJ,CH4,3.9,kg/TJ,40405.16844,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,d893865e-de42-31f3-bf64-f5151fc62e87 +2019,Buenos Aires,II.1.1,10360.2996,TJ,N2O,3.9,kg/TJ,40405.16844,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,d893865e-de42-31f3-bf64-f5151fc62e87 +2019,Capital Federal,II.1.1,3542.54124,TJ,CO2,74100.0,kg/TJ,262502305.884,Gas Oil combustion consumption by freight transport,AR-C,SESCO,annual,kg,add1b791-641e-3a27-86b3-8e9f3b8329ef +2019,Capital Federal,II.1.1,3542.54124,TJ,CH4,3.9,kg/TJ,13815.910836,Gas Oil combustion consumption by freight transport,AR-C,SESCO,annual,kg,64478c71-82e0-3a51-8460-88a9afcf19a1 +2019,Capital Federal,II.1.1,3542.54124,TJ,N2O,3.9,kg/TJ,13815.910836,Gas Oil combustion consumption by freight transport,AR-C,SESCO,annual,kg,64478c71-82e0-3a51-8460-88a9afcf19a1 +2019,Catamarca,II.1.1,19.685399999999998,TJ,CO2,74100.0,kg/TJ,1458688.14,Gas Oil combustion consumption by freight transport,AR-K,SESCO,annual,kg,96353c3b-262e-33b3-a672-49181185435b +2019,Catamarca,II.1.1,19.685399999999998,TJ,CH4,3.9,kg/TJ,76.77305999999999,Gas Oil combustion consumption by freight transport,AR-K,SESCO,annual,kg,fd390576-276c-3beb-a15b-34692fcb3592 +2019,Catamarca,II.1.1,19.685399999999998,TJ,N2O,3.9,kg/TJ,76.77305999999999,Gas Oil combustion consumption by freight transport,AR-K,SESCO,annual,kg,fd390576-276c-3beb-a15b-34692fcb3592 +2019,Chaco,II.1.1,263.71211999999997,TJ,CO2,74100.0,kg/TJ,19541068.091999996,Gas Oil combustion consumption by freight transport,AR-H,SESCO,annual,kg,41800442-98dd-33bc-ba3c-0188119fd4c1 +2019,Chaco,II.1.1,263.71211999999997,TJ,CH4,3.9,kg/TJ,1028.4772679999999,Gas Oil combustion consumption by freight transport,AR-H,SESCO,annual,kg,ea116540-40d8-31b9-ae8a-84b9d2a6af6c +2019,Chaco,II.1.1,263.71211999999997,TJ,N2O,3.9,kg/TJ,1028.4772679999999,Gas Oil combustion consumption by freight transport,AR-H,SESCO,annual,kg,ea116540-40d8-31b9-ae8a-84b9d2a6af6c +2019,Chubut,II.1.1,212.20499999999998,TJ,CO2,74100.0,kg/TJ,15724390.499999998,Gas Oil combustion consumption by freight transport,AR-U,SESCO,annual,kg,688ab315-d122-377e-a7ec-fa41465d67af +2019,Chubut,II.1.1,212.20499999999998,TJ,CH4,3.9,kg/TJ,827.5994999999999,Gas Oil combustion consumption by freight transport,AR-U,SESCO,annual,kg,31d3657b-02d1-33cb-940f-017d58807fc4 +2019,Chubut,II.1.1,212.20499999999998,TJ,N2O,3.9,kg/TJ,827.5994999999999,Gas Oil combustion consumption by freight transport,AR-U,SESCO,annual,kg,31d3657b-02d1-33cb-940f-017d58807fc4 +2019,Corrientes,II.1.1,426.3966,TJ,CO2,74100.0,kg/TJ,31595988.06,Gas Oil combustion consumption by freight transport,AR-W,SESCO,annual,kg,cc34a216-b789-3ab2-823e-9616c97f5c07 +2019,Corrientes,II.1.1,426.3966,TJ,CH4,3.9,kg/TJ,1662.9467399999999,Gas Oil combustion consumption by freight transport,AR-W,SESCO,annual,kg,969b376e-f013-36b0-bd9c-8a1a69d6a0f0 +2019,Corrientes,II.1.1,426.3966,TJ,N2O,3.9,kg/TJ,1662.9467399999999,Gas Oil combustion consumption by freight transport,AR-W,SESCO,annual,kg,969b376e-f013-36b0-bd9c-8a1a69d6a0f0 +2019,Córdoba,II.1.1,3059.0027999999998,TJ,CO2,74100.0,kg/TJ,226672107.48,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,f5820960-ff55-3798-a757-350b65655fec +2019,Córdoba,II.1.1,3059.0027999999998,TJ,CH4,3.9,kg/TJ,11930.11092,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,b403fc25-3f68-37b6-a842-8f1b7c87ad12 +2019,Córdoba,II.1.1,3059.0027999999998,TJ,N2O,3.9,kg/TJ,11930.11092,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,b403fc25-3f68-37b6-a842-8f1b7c87ad12 +2019,Entre Rios,II.1.1,872.9120399999999,TJ,CO2,74100.0,kg/TJ,64682782.164,Gas Oil combustion consumption by freight transport,AR-E,SESCO,annual,kg,c6801825-5a65-3363-9a24-9860f34e4471 +2019,Entre Rios,II.1.1,872.9120399999999,TJ,CH4,3.9,kg/TJ,3404.3569559999996,Gas Oil combustion consumption by freight transport,AR-E,SESCO,annual,kg,1599b35d-bbac-3c59-bc5c-908e3fb70856 +2019,Entre Rios,II.1.1,872.9120399999999,TJ,N2O,3.9,kg/TJ,3404.3569559999996,Gas Oil combustion consumption by freight transport,AR-E,SESCO,annual,kg,1599b35d-bbac-3c59-bc5c-908e3fb70856 +2019,Formosa,II.1.1,51.03756,TJ,CO2,74100.0,kg/TJ,3781883.196,Gas Oil combustion consumption by freight transport,AR-P,SESCO,annual,kg,bb9e237a-d400-3466-9372-3561afd4aeac +2019,Formosa,II.1.1,51.03756,TJ,CH4,3.9,kg/TJ,199.046484,Gas Oil combustion consumption by freight transport,AR-P,SESCO,annual,kg,5b7de83d-ad98-3ecc-a422-335c197cedf1 +2019,Formosa,II.1.1,51.03756,TJ,N2O,3.9,kg/TJ,199.046484,Gas Oil combustion consumption by freight transport,AR-P,SESCO,annual,kg,5b7de83d-ad98-3ecc-a422-335c197cedf1 +2019,Jujuy,II.1.1,228.459,TJ,CO2,74100.0,kg/TJ,16928811.9,Gas Oil combustion consumption by freight transport,AR-Y,SESCO,annual,kg,685c529e-92f4-3794-a67c-90a9c8de8fd5 +2019,Jujuy,II.1.1,228.459,TJ,CH4,3.9,kg/TJ,890.9901,Gas Oil combustion consumption by freight transport,AR-Y,SESCO,annual,kg,76b5be59-6b56-3260-93a0-8a1269348dc3 +2019,Jujuy,II.1.1,228.459,TJ,N2O,3.9,kg/TJ,890.9901,Gas Oil combustion consumption by freight transport,AR-Y,SESCO,annual,kg,76b5be59-6b56-3260-93a0-8a1269348dc3 +2019,La Pampa,II.1.1,226.14731999999998,TJ,CO2,74100.0,kg/TJ,16757516.411999999,Gas Oil combustion consumption by freight transport,AR-L,SESCO,annual,kg,bcd7ce69-c110-3d10-87d5-6c358aa1652c +2019,La Pampa,II.1.1,226.14731999999998,TJ,CH4,3.9,kg/TJ,881.9745479999999,Gas Oil combustion consumption by freight transport,AR-L,SESCO,annual,kg,2866566b-ba10-3162-91d4-b493fe2e3ee5 +2019,La Pampa,II.1.1,226.14731999999998,TJ,N2O,3.9,kg/TJ,881.9745479999999,Gas Oil combustion consumption by freight transport,AR-L,SESCO,annual,kg,2866566b-ba10-3162-91d4-b493fe2e3ee5 +2019,La Rioja,II.1.1,11.45004,TJ,CO2,74100.0,kg/TJ,848447.9639999999,Gas Oil combustion consumption by freight transport,AR-F,SESCO,annual,kg,8cc4e55a-4646-3e6a-b3c8-555fd44900af +2019,La Rioja,II.1.1,11.45004,TJ,CH4,3.9,kg/TJ,44.655156,Gas Oil combustion consumption by freight transport,AR-F,SESCO,annual,kg,fdebbb8a-296c-349a-b50f-23df81f98809 +2019,La Rioja,II.1.1,11.45004,TJ,N2O,3.9,kg/TJ,44.655156,Gas Oil combustion consumption by freight transport,AR-F,SESCO,annual,kg,fdebbb8a-296c-349a-b50f-23df81f98809 +2019,Mendoza,II.1.1,1947.9515999999999,TJ,CO2,74100.0,kg/TJ,144343213.56,Gas Oil combustion consumption by freight transport,AR-M,SESCO,annual,kg,fec03883-65fc-3ba2-9494-8ebeb98008ac +2019,Mendoza,II.1.1,1947.9515999999999,TJ,CH4,3.9,kg/TJ,7597.011239999999,Gas Oil combustion consumption by freight transport,AR-M,SESCO,annual,kg,96ae2b25-41c3-3b35-9f44-ecba34316cbf +2019,Mendoza,II.1.1,1947.9515999999999,TJ,N2O,3.9,kg/TJ,7597.011239999999,Gas Oil combustion consumption by freight transport,AR-M,SESCO,annual,kg,96ae2b25-41c3-3b35-9f44-ecba34316cbf +2019,Misiones,II.1.1,1132.68708,TJ,CO2,74100.0,kg/TJ,83932112.62799999,Gas Oil combustion consumption by freight transport,AR-N,SESCO,annual,kg,b1628353-b883-329c-b35d-e5dee1015dba +2019,Misiones,II.1.1,1132.68708,TJ,CH4,3.9,kg/TJ,4417.479611999999,Gas Oil combustion consumption by freight transport,AR-N,SESCO,annual,kg,1c1e6a2c-83c5-3348-ab3d-95d59384ff99 +2019,Misiones,II.1.1,1132.68708,TJ,N2O,3.9,kg/TJ,4417.479611999999,Gas Oil combustion consumption by freight transport,AR-N,SESCO,annual,kg,1c1e6a2c-83c5-3348-ab3d-95d59384ff99 +2019,Neuquén,II.1.1,915.35304,TJ,CO2,74100.0,kg/TJ,67827660.264,Gas Oil combustion consumption by freight transport,AR-Q,SESCO,annual,kg,443f494c-b157-3067-9433-b06b20e0953a +2019,Neuquén,II.1.1,915.35304,TJ,CH4,3.9,kg/TJ,3569.876856,Gas Oil combustion consumption by freight transport,AR-Q,SESCO,annual,kg,b775d86c-3bf3-3d80-8334-b5ff2af356db +2019,Neuquén,II.1.1,915.35304,TJ,N2O,3.9,kg/TJ,3569.876856,Gas Oil combustion consumption by freight transport,AR-Q,SESCO,annual,kg,b775d86c-3bf3-3d80-8334-b5ff2af356db +2019,Rio Negro,II.1.1,452.72808,TJ,CO2,74100.0,kg/TJ,33547150.728,Gas Oil combustion consumption by freight transport,AR-R,SESCO,annual,kg,0983244f-7cc1-3696-aa7b-65db173dc90c +2019,Rio Negro,II.1.1,452.72808,TJ,CH4,3.9,kg/TJ,1765.639512,Gas Oil combustion consumption by freight transport,AR-R,SESCO,annual,kg,2b52f489-8877-3734-a353-397b1c16d704 +2019,Rio Negro,II.1.1,452.72808,TJ,N2O,3.9,kg/TJ,1765.639512,Gas Oil combustion consumption by freight transport,AR-R,SESCO,annual,kg,2b52f489-8877-3734-a353-397b1c16d704 +2019,Salta,II.1.1,393.3468,TJ,CO2,74100.0,kg/TJ,29146997.88,Gas Oil combustion consumption by freight transport,AR-A,SESCO,annual,kg,aee0170a-80a1-32df-b046-e536baedc041 +2019,Salta,II.1.1,393.3468,TJ,CH4,3.9,kg/TJ,1534.05252,Gas Oil combustion consumption by freight transport,AR-A,SESCO,annual,kg,0740596d-4e4f-3d4c-9142-c56a1103a04f +2019,Salta,II.1.1,393.3468,TJ,N2O,3.9,kg/TJ,1534.05252,Gas Oil combustion consumption by freight transport,AR-A,SESCO,annual,kg,0740596d-4e4f-3d4c-9142-c56a1103a04f +2019,San Juan,II.1.1,184.3926,TJ,CO2,74100.0,kg/TJ,13663491.659999998,Gas Oil combustion consumption by freight transport,AR-J,SESCO,annual,kg,7b5d39f3-7964-3345-9393-99fbe34cef22 +2019,San Juan,II.1.1,184.3926,TJ,CH4,3.9,kg/TJ,719.13114,Gas Oil combustion consumption by freight transport,AR-J,SESCO,annual,kg,e7e6ebd0-b26b-3073-bee1-a3030771520a +2019,San Juan,II.1.1,184.3926,TJ,N2O,3.9,kg/TJ,719.13114,Gas Oil combustion consumption by freight transport,AR-J,SESCO,annual,kg,e7e6ebd0-b26b-3073-bee1-a3030771520a +2019,San Luis,II.1.1,226.79747999999998,TJ,CO2,74100.0,kg/TJ,16805693.268,Gas Oil combustion consumption by freight transport,AR-D,SESCO,annual,kg,4adfec5b-e57a-3419-b0df-d4499cd6dd27 +2019,San Luis,II.1.1,226.79747999999998,TJ,CH4,3.9,kg/TJ,884.5101719999999,Gas Oil combustion consumption by freight transport,AR-D,SESCO,annual,kg,4b12f089-6671-3071-b979-33cb1d977f66 +2019,San Luis,II.1.1,226.79747999999998,TJ,N2O,3.9,kg/TJ,884.5101719999999,Gas Oil combustion consumption by freight transport,AR-D,SESCO,annual,kg,4b12f089-6671-3071-b979-33cb1d977f66 +2019,Santa Cruz,II.1.1,192.48348,TJ,CO2,74100.0,kg/TJ,14263025.867999999,Gas Oil combustion consumption by freight transport,AR-Z,SESCO,annual,kg,860b05e8-0b8c-31a5-bfbb-95b2460c2e6c +2019,Santa Cruz,II.1.1,192.48348,TJ,CH4,3.9,kg/TJ,750.685572,Gas Oil combustion consumption by freight transport,AR-Z,SESCO,annual,kg,f5e43348-b361-3b52-bad9-d1e7a27daae7 +2019,Santa Cruz,II.1.1,192.48348,TJ,N2O,3.9,kg/TJ,750.685572,Gas Oil combustion consumption by freight transport,AR-Z,SESCO,annual,kg,f5e43348-b361-3b52-bad9-d1e7a27daae7 +2019,Santa Fe,II.1.1,3022.19652,TJ,CO2,74100.0,kg/TJ,223944762.132,Gas Oil combustion consumption by freight transport,AR-S,SESCO,annual,kg,12df789c-62bd-3868-b527-e67913cacaed +2019,Santa Fe,II.1.1,3022.19652,TJ,CH4,3.9,kg/TJ,11786.566428,Gas Oil combustion consumption by freight transport,AR-S,SESCO,annual,kg,85654396-bead-3cfe-9029-a8346ee61da9 +2019,Santa Fe,II.1.1,3022.19652,TJ,N2O,3.9,kg/TJ,11786.566428,Gas Oil combustion consumption by freight transport,AR-S,SESCO,annual,kg,85654396-bead-3cfe-9029-a8346ee61da9 +2019,Santiago del Estero,II.1.1,286.90116,TJ,CO2,74100.0,kg/TJ,21259375.956,Gas Oil combustion consumption by freight transport,AR-G,SESCO,annual,kg,ddeebddd-9cb9-35db-a1b4-d15b1b494cd0 +2019,Santiago del Estero,II.1.1,286.90116,TJ,CH4,3.9,kg/TJ,1118.914524,Gas Oil combustion consumption by freight transport,AR-G,SESCO,annual,kg,22a2aa90-210c-346c-9579-a28003277917 +2019,Santiago del Estero,II.1.1,286.90116,TJ,N2O,3.9,kg/TJ,1118.914524,Gas Oil combustion consumption by freight transport,AR-G,SESCO,annual,kg,22a2aa90-210c-346c-9579-a28003277917 +2019,Tierra del Fuego,II.1.1,312.94368,TJ,CO2,74100.0,kg/TJ,23189126.687999997,Gas Oil combustion consumption by freight transport,AR-V,SESCO,annual,kg,320f3bab-8cb5-31c4-abfd-6913bfa74c9c +2019,Tierra del Fuego,II.1.1,312.94368,TJ,CH4,3.9,kg/TJ,1220.4803519999998,Gas Oil combustion consumption by freight transport,AR-V,SESCO,annual,kg,2ffd81a2-0b9f-323f-bc20-212c8b337e26 +2019,Tierra del Fuego,II.1.1,312.94368,TJ,N2O,3.9,kg/TJ,1220.4803519999998,Gas Oil combustion consumption by freight transport,AR-V,SESCO,annual,kg,2ffd81a2-0b9f-323f-bc20-212c8b337e26 +2019,Tucuman,II.1.1,602.37324,TJ,CO2,74100.0,kg/TJ,44635857.084,Gas Oil combustion consumption by freight transport,AR-T,SESCO,annual,kg,a62bf3fd-156e-36e0-99f7-d5dd27340f14 +2019,Tucuman,II.1.1,602.37324,TJ,CH4,3.9,kg/TJ,2349.255636,Gas Oil combustion consumption by freight transport,AR-T,SESCO,annual,kg,ef46c312-30ad-3771-ba67-2f5e8882a6c9 +2019,Tucuman,II.1.1,602.37324,TJ,N2O,3.9,kg/TJ,2349.255636,Gas Oil combustion consumption by freight transport,AR-T,SESCO,annual,kg,ef46c312-30ad-3771-ba67-2f5e8882a6c9 +2019,Buenos Aires,II.1.1,2229.57924,TJ,CO2,74100.0,kg/TJ,165211821.68400002,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,60625f0a-cc4c-30b0-ab72-95a696a76099 +2019,Buenos Aires,II.1.1,2229.57924,TJ,CH4,3.9,kg/TJ,8695.359036,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,6e18fa89-4cd0-3e52-9d09-e9bc9bfe96f1 +2019,Buenos Aires,II.1.1,2229.57924,TJ,N2O,3.9,kg/TJ,8695.359036,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,6e18fa89-4cd0-3e52-9d09-e9bc9bfe96f1 +2019,Capital Federal,II.1.1,2349.9672,TJ,CO2,74100.0,kg/TJ,174132569.52,Gas Oil combustion consumption by freight transport,AR-C,SESCO,annual,kg,670e9da6-dfd3-314c-997a-45186b6d61f8 +2019,Capital Federal,II.1.1,2349.9672,TJ,CH4,3.9,kg/TJ,9164.87208,Gas Oil combustion consumption by freight transport,AR-C,SESCO,annual,kg,5a5b4e1e-3ac9-3aed-ae5d-c857ad23d49c +2019,Capital Federal,II.1.1,2349.9672,TJ,N2O,3.9,kg/TJ,9164.87208,Gas Oil combustion consumption by freight transport,AR-C,SESCO,annual,kg,5a5b4e1e-3ac9-3aed-ae5d-c857ad23d49c +2019,Catamarca,II.1.1,7.07952,TJ,CO2,74100.0,kg/TJ,524592.4319999999,Gas Oil combustion consumption by freight transport,AR-K,SESCO,annual,kg,1748feeb-395c-3b9c-8df9-1934cf8e8b3c +2019,Catamarca,II.1.1,7.07952,TJ,CH4,3.9,kg/TJ,27.610127999999996,Gas Oil combustion consumption by freight transport,AR-K,SESCO,annual,kg,c091a547-dd48-371d-a7f8-43546148ea96 +2019,Catamarca,II.1.1,7.07952,TJ,N2O,3.9,kg/TJ,27.610127999999996,Gas Oil combustion consumption by freight transport,AR-K,SESCO,annual,kg,c091a547-dd48-371d-a7f8-43546148ea96 +2019,Chaco,II.1.1,96.90996,TJ,CO2,74100.0,kg/TJ,7181028.036,Gas Oil combustion consumption by freight transport,AR-H,SESCO,annual,kg,d4726b94-b74b-3e68-abf1-1811dec21cfd +2019,Chaco,II.1.1,96.90996,TJ,CH4,3.9,kg/TJ,377.948844,Gas Oil combustion consumption by freight transport,AR-H,SESCO,annual,kg,04625287-3400-3c75-b5ea-70064565c6aa +2019,Chaco,II.1.1,96.90996,TJ,N2O,3.9,kg/TJ,377.948844,Gas Oil combustion consumption by freight transport,AR-H,SESCO,annual,kg,04625287-3400-3c75-b5ea-70064565c6aa +2019,Chubut,II.1.1,284.55336,TJ,CO2,74100.0,kg/TJ,21085403.976,Gas Oil combustion consumption by freight transport,AR-U,SESCO,annual,kg,71cd0b3c-e7f6-3b71-aa7e-be67ed2553f3 +2019,Chubut,II.1.1,284.55336,TJ,CH4,3.9,kg/TJ,1109.758104,Gas Oil combustion consumption by freight transport,AR-U,SESCO,annual,kg,1f2335db-a7a2-3196-a1c9-3ffdd20618a2 +2019,Chubut,II.1.1,284.55336,TJ,N2O,3.9,kg/TJ,1109.758104,Gas Oil combustion consumption by freight transport,AR-U,SESCO,annual,kg,1f2335db-a7a2-3196-a1c9-3ffdd20618a2 +2019,Corrientes,II.1.1,107.60148,TJ,CO2,74100.0,kg/TJ,7973269.668,Gas Oil combustion consumption by freight transport,AR-W,SESCO,annual,kg,c078b943-7475-3083-90f4-93fd38949001 +2019,Corrientes,II.1.1,107.60148,TJ,CH4,3.9,kg/TJ,419.64577199999997,Gas Oil combustion consumption by freight transport,AR-W,SESCO,annual,kg,c255f626-c164-3631-8b4d-59bb897c0aeb +2019,Corrientes,II.1.1,107.60148,TJ,N2O,3.9,kg/TJ,419.64577199999997,Gas Oil combustion consumption by freight transport,AR-W,SESCO,annual,kg,c255f626-c164-3631-8b4d-59bb897c0aeb +2019,Córdoba,II.1.1,411.37068,TJ,CO2,74100.0,kg/TJ,30482567.388,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,fdc61be8-397c-34db-a2b9-825f94c35206 +2019,Córdoba,II.1.1,411.37068,TJ,CH4,3.9,kg/TJ,1604.345652,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,eb9450c5-7315-36e7-b04d-8ec48217589e +2019,Córdoba,II.1.1,411.37068,TJ,N2O,3.9,kg/TJ,1604.345652,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,eb9450c5-7315-36e7-b04d-8ec48217589e +2019,Entre Rios,II.1.1,229.97603999999998,TJ,CO2,74100.0,kg/TJ,17041224.564,Gas Oil combustion consumption by freight transport,AR-E,SESCO,annual,kg,1f4f525b-92d6-3f73-acdc-55f9f6af0bc0 +2019,Entre Rios,II.1.1,229.97603999999998,TJ,CH4,3.9,kg/TJ,896.9065559999999,Gas Oil combustion consumption by freight transport,AR-E,SESCO,annual,kg,e69c4ce0-7b36-33a1-ae90-feedd7da10cc +2019,Entre Rios,II.1.1,229.97603999999998,TJ,N2O,3.9,kg/TJ,896.9065559999999,Gas Oil combustion consumption by freight transport,AR-E,SESCO,annual,kg,e69c4ce0-7b36-33a1-ae90-feedd7da10cc +2019,Formosa,II.1.1,14.91756,TJ,CO2,74100.0,kg/TJ,1105391.196,Gas Oil combustion consumption by freight transport,AR-P,SESCO,annual,kg,5af0ae02-37da-385a-b793-fdbfbe48e8cb +2019,Formosa,II.1.1,14.91756,TJ,CH4,3.9,kg/TJ,58.178484,Gas Oil combustion consumption by freight transport,AR-P,SESCO,annual,kg,a58f527f-53c2-3b9f-95b9-44aaba946b9b +2019,Formosa,II.1.1,14.91756,TJ,N2O,3.9,kg/TJ,58.178484,Gas Oil combustion consumption by freight transport,AR-P,SESCO,annual,kg,a58f527f-53c2-3b9f-95b9-44aaba946b9b +2019,Jujuy,II.1.1,25.175639999999998,TJ,CO2,74100.0,kg/TJ,1865514.9239999999,Gas Oil combustion consumption by freight transport,AR-Y,SESCO,annual,kg,cd8fff05-6658-38b3-86aa-65ec148fadb4 +2019,Jujuy,II.1.1,25.175639999999998,TJ,CH4,3.9,kg/TJ,98.18499599999998,Gas Oil combustion consumption by freight transport,AR-Y,SESCO,annual,kg,2f42e92d-5068-3e02-b579-dbfdec495e61 +2019,Jujuy,II.1.1,25.175639999999998,TJ,N2O,3.9,kg/TJ,98.18499599999998,Gas Oil combustion consumption by freight transport,AR-Y,SESCO,annual,kg,2f42e92d-5068-3e02-b579-dbfdec495e61 +2019,La Pampa,II.1.1,68.66412,TJ,CO2,74100.0,kg/TJ,5088011.291999999,Gas Oil combustion consumption by freight transport,AR-L,SESCO,annual,kg,16053e1b-400d-3b2f-a7e1-1fe46143b782 +2019,La Pampa,II.1.1,68.66412,TJ,CH4,3.9,kg/TJ,267.79006799999996,Gas Oil combustion consumption by freight transport,AR-L,SESCO,annual,kg,102e85b2-7454-3187-a124-71228d7d983e +2019,La Pampa,II.1.1,68.66412,TJ,N2O,3.9,kg/TJ,267.79006799999996,Gas Oil combustion consumption by freight transport,AR-L,SESCO,annual,kg,102e85b2-7454-3187-a124-71228d7d983e +2019,La Rioja,II.1.1,13.581119999999999,TJ,CO2,74100.0,kg/TJ,1006360.9919999999,Gas Oil combustion consumption by freight transport,AR-F,SESCO,annual,kg,9b24e856-2db3-3b45-8ce4-8bb8db0bdacf +2019,La Rioja,II.1.1,13.581119999999999,TJ,CH4,3.9,kg/TJ,52.966367999999996,Gas Oil combustion consumption by freight transport,AR-F,SESCO,annual,kg,68ddd49c-85a3-3560-be4a-2126fc0a1a41 +2019,La Rioja,II.1.1,13.581119999999999,TJ,N2O,3.9,kg/TJ,52.966367999999996,Gas Oil combustion consumption by freight transport,AR-F,SESCO,annual,kg,68ddd49c-85a3-3560-be4a-2126fc0a1a41 +2019,Mendoza,II.1.1,461.64972,TJ,CO2,74100.0,kg/TJ,34208244.252,Gas Oil combustion consumption by freight transport,AR-M,SESCO,annual,kg,47ed6ab4-fbd6-3e3c-b4a7-cb8545880db0 +2019,Mendoza,II.1.1,461.64972,TJ,CH4,3.9,kg/TJ,1800.433908,Gas Oil combustion consumption by freight transport,AR-M,SESCO,annual,kg,fbc29fef-e7c4-3587-b8c9-6ec98929d3c7 +2019,Mendoza,II.1.1,461.64972,TJ,N2O,3.9,kg/TJ,1800.433908,Gas Oil combustion consumption by freight transport,AR-M,SESCO,annual,kg,fbc29fef-e7c4-3587-b8c9-6ec98929d3c7 +2019,Misiones,II.1.1,136.64195999999998,TJ,CO2,74100.0,kg/TJ,10125169.236,Gas Oil combustion consumption by freight transport,AR-N,SESCO,annual,kg,3de6cf82-c8bc-3615-a19b-80426e6c0960 +2019,Misiones,II.1.1,136.64195999999998,TJ,CH4,3.9,kg/TJ,532.9036439999999,Gas Oil combustion consumption by freight transport,AR-N,SESCO,annual,kg,29d7cc40-37bf-3992-8c31-6e0317ca2a00 +2019,Misiones,II.1.1,136.64195999999998,TJ,N2O,3.9,kg/TJ,532.9036439999999,Gas Oil combustion consumption by freight transport,AR-N,SESCO,annual,kg,29d7cc40-37bf-3992-8c31-6e0317ca2a00 +2019,Neuquén,II.1.1,973.2533999999999,TJ,CO2,74100.0,kg/TJ,72118076.94,Gas Oil combustion consumption by freight transport,AR-Q,SESCO,annual,kg,39f6ea4c-a7b8-3830-8af7-c888daeb019c +2019,Neuquén,II.1.1,973.2533999999999,TJ,CH4,3.9,kg/TJ,3795.68826,Gas Oil combustion consumption by freight transport,AR-Q,SESCO,annual,kg,d0d4a5d9-a150-3a42-a85a-9c0fe6cb7f23 +2019,Neuquén,II.1.1,973.2533999999999,TJ,N2O,3.9,kg/TJ,3795.68826,Gas Oil combustion consumption by freight transport,AR-Q,SESCO,annual,kg,d0d4a5d9-a150-3a42-a85a-9c0fe6cb7f23 +2019,Rio Negro,II.1.1,267.43248,TJ,CO2,74100.0,kg/TJ,19816746.768,Gas Oil combustion consumption by freight transport,AR-R,SESCO,annual,kg,7d6286b8-c70c-361e-86f2-402c349b19d8 +2019,Rio Negro,II.1.1,267.43248,TJ,CH4,3.9,kg/TJ,1042.986672,Gas Oil combustion consumption by freight transport,AR-R,SESCO,annual,kg,967ddba7-1924-374c-a18a-e5d723ed5d81 +2019,Rio Negro,II.1.1,267.43248,TJ,N2O,3.9,kg/TJ,1042.986672,Gas Oil combustion consumption by freight transport,AR-R,SESCO,annual,kg,967ddba7-1924-374c-a18a-e5d723ed5d81 +2019,Salta,II.1.1,151.8846,TJ,CO2,74100.0,kg/TJ,11254648.860000001,Gas Oil combustion consumption by freight transport,AR-A,SESCO,annual,kg,7729faef-9512-34ef-91bd-9053ed93d137 +2019,Salta,II.1.1,151.8846,TJ,CH4,3.9,kg/TJ,592.3499400000001,Gas Oil combustion consumption by freight transport,AR-A,SESCO,annual,kg,1acdc6dd-5754-3cfd-ae6a-b8220c994c83 +2019,Salta,II.1.1,151.8846,TJ,N2O,3.9,kg/TJ,592.3499400000001,Gas Oil combustion consumption by freight transport,AR-A,SESCO,annual,kg,1acdc6dd-5754-3cfd-ae6a-b8220c994c83 +2019,San Juan,II.1.1,26.98164,TJ,CO2,74100.0,kg/TJ,1999339.524,Gas Oil combustion consumption by freight transport,AR-J,SESCO,annual,kg,14edbfec-2673-3af6-8cac-c0c830c1b53b +2019,San Juan,II.1.1,26.98164,TJ,CH4,3.9,kg/TJ,105.22839599999999,Gas Oil combustion consumption by freight transport,AR-J,SESCO,annual,kg,10a870e3-13bc-3c32-b8c9-2b0420b8ca40 +2019,San Juan,II.1.1,26.98164,TJ,N2O,3.9,kg/TJ,105.22839599999999,Gas Oil combustion consumption by freight transport,AR-J,SESCO,annual,kg,10a870e3-13bc-3c32-b8c9-2b0420b8ca40 +2019,San Luis,II.1.1,56.92512,TJ,CO2,74100.0,kg/TJ,4218151.392,Gas Oil combustion consumption by freight transport,AR-D,SESCO,annual,kg,fe67abf1-28b8-3887-ad88-da25ee732556 +2019,San Luis,II.1.1,56.92512,TJ,CH4,3.9,kg/TJ,222.007968,Gas Oil combustion consumption by freight transport,AR-D,SESCO,annual,kg,d84695a3-7bcd-31fa-8f7d-50d02c5f97d3 +2019,San Luis,II.1.1,56.92512,TJ,N2O,3.9,kg/TJ,222.007968,Gas Oil combustion consumption by freight transport,AR-D,SESCO,annual,kg,d84695a3-7bcd-31fa-8f7d-50d02c5f97d3 +2019,Santa Cruz,II.1.1,73.143,TJ,CO2,74100.0,kg/TJ,5419896.3,Gas Oil combustion consumption by freight transport,AR-Z,SESCO,annual,kg,200a0f2c-2b80-37fb-9112-07e2bf5f26b9 +2019,Santa Cruz,II.1.1,73.143,TJ,CH4,3.9,kg/TJ,285.2577,Gas Oil combustion consumption by freight transport,AR-Z,SESCO,annual,kg,22950bba-d1e9-3628-aa5f-7f7fb9b1599a +2019,Santa Cruz,II.1.1,73.143,TJ,N2O,3.9,kg/TJ,285.2577,Gas Oil combustion consumption by freight transport,AR-Z,SESCO,annual,kg,22950bba-d1e9-3628-aa5f-7f7fb9b1599a +2019,Santa Fe,II.1.1,608.9109599999999,TJ,CO2,74100.0,kg/TJ,45120302.13599999,Gas Oil combustion consumption by freight transport,AR-S,SESCO,annual,kg,ffd21794-bef7-32e9-ae4c-17c39ffc4e48 +2019,Santa Fe,II.1.1,608.9109599999999,TJ,CH4,3.9,kg/TJ,2374.752744,Gas Oil combustion consumption by freight transport,AR-S,SESCO,annual,kg,ad4fdc85-1295-36eb-87da-314702024e31 +2019,Santa Fe,II.1.1,608.9109599999999,TJ,N2O,3.9,kg/TJ,2374.752744,Gas Oil combustion consumption by freight transport,AR-S,SESCO,annual,kg,ad4fdc85-1295-36eb-87da-314702024e31 +2019,Santiago del Estero,II.1.1,32.110679999999995,TJ,CO2,74100.0,kg/TJ,2379401.388,Gas Oil combustion consumption by freight transport,AR-G,SESCO,annual,kg,84834b7f-6811-392c-9a21-3d2cafff58b8 +2019,Santiago del Estero,II.1.1,32.110679999999995,TJ,CH4,3.9,kg/TJ,125.23165199999998,Gas Oil combustion consumption by freight transport,AR-G,SESCO,annual,kg,d67a89db-2092-3c9c-b9cd-657721dac10e +2019,Santiago del Estero,II.1.1,32.110679999999995,TJ,N2O,3.9,kg/TJ,125.23165199999998,Gas Oil combustion consumption by freight transport,AR-G,SESCO,annual,kg,d67a89db-2092-3c9c-b9cd-657721dac10e +2019,Tierra del Fuego,II.1.1,105.03696,TJ,CO2,74100.0,kg/TJ,7783238.736,Gas Oil combustion consumption by freight transport,AR-V,SESCO,annual,kg,4eea6358-68c6-384e-b866-6f9bcc498501 +2019,Tierra del Fuego,II.1.1,105.03696,TJ,CH4,3.9,kg/TJ,409.644144,Gas Oil combustion consumption by freight transport,AR-V,SESCO,annual,kg,82a3e946-9772-3a93-a933-f6b2b02225de +2019,Tierra del Fuego,II.1.1,105.03696,TJ,N2O,3.9,kg/TJ,409.644144,Gas Oil combustion consumption by freight transport,AR-V,SESCO,annual,kg,82a3e946-9772-3a93-a933-f6b2b02225de +2019,Tucuman,II.1.1,116.1258,TJ,CO2,74100.0,kg/TJ,8604921.78,Gas Oil combustion consumption by freight transport,AR-T,SESCO,annual,kg,2351e9b9-f3a8-33ae-9fb7-274ce69173ba +2019,Tucuman,II.1.1,116.1258,TJ,CH4,3.9,kg/TJ,452.89061999999996,Gas Oil combustion consumption by freight transport,AR-T,SESCO,annual,kg,92e56c74-2abd-3e6a-8351-b2041851817d +2019,Tucuman,II.1.1,116.1258,TJ,N2O,3.9,kg/TJ,452.89061999999996,Gas Oil combustion consumption by freight transport,AR-T,SESCO,annual,kg,92e56c74-2abd-3e6a-8351-b2041851817d +2019,Neuquén,II.1.1,0.031452999999999995,TJ,CO2,71500.0,kg/TJ,2248.8894999999998,Jet Kerosene combustion consumption by freight transport,AR-Q,SESCO,annual,kg,27fe5466-574e-3ffd-ad5a-7a3ceadb48f2 +2019,Neuquén,II.1.1,0.031452999999999995,TJ,CH4,0.5,kg/TJ,0.015726499999999997,Jet Kerosene combustion consumption by freight transport,AR-Q,SESCO,annual,kg,81569fb2-0cd1-3fb9-94d1-d24e9d287347 +2019,Neuquén,II.1.1,0.031452999999999995,TJ,N2O,2.0,kg/TJ,0.06290599999999999,Jet Kerosene combustion consumption by freight transport,AR-Q,SESCO,annual,kg,5d0c3f55-2d4d-3ec2-a6e1-a958a0138e84 +2019,Santa Fe,II.1.1,0.031452999999999995,TJ,CO2,71500.0,kg/TJ,2248.8894999999998,Jet Kerosene combustion consumption by freight transport,AR-S,SESCO,annual,kg,e41c87ae-7a9f-3f43-9dd4-07b659f08a21 +2019,Santa Fe,II.1.1,0.031452999999999995,TJ,CH4,0.5,kg/TJ,0.015726499999999997,Jet Kerosene combustion consumption by freight transport,AR-S,SESCO,annual,kg,4d15ecf2-03f8-30f4-bf52-ba6ebaabf8af +2019,Santa Fe,II.1.1,0.031452999999999995,TJ,N2O,2.0,kg/TJ,0.06290599999999999,Jet Kerosene combustion consumption by freight transport,AR-S,SESCO,annual,kg,5ee6b309-fa7b-365d-b049-cfabf52dbfc2 +2019,Buenos Aires,II.1.1,454.319635,TJ,CO2,73300.0,kg/TJ,33301629.245500002,Naphtha combustion consumption by freight transport,AR-B,SESCO,annual,kg,f3fff11a-be9b-378f-b770-84074f816c9c +2019,Buenos Aires,II.1.1,454.319635,TJ,CH4,0.5,kg/TJ,227.1598175,Naphtha combustion consumption by freight transport,AR-B,SESCO,annual,kg,8ea26e0f-903d-3d37-a401-a2726bc851f3 +2019,Buenos Aires,II.1.1,454.319635,TJ,N2O,2.0,kg/TJ,908.63927,Naphtha combustion consumption by freight transport,AR-B,SESCO,annual,kg,c76e128c-fbaf-3080-8f36-9d54831e2bf0 +2019,Capital Federal,II.1.1,461.48102,TJ,CO2,73300.0,kg/TJ,33826558.766,Naphtha combustion consumption by freight transport,AR-C,SESCO,annual,kg,8447780b-8247-3b7f-b3ad-74749f18c68f +2019,Capital Federal,II.1.1,461.48102,TJ,CH4,0.5,kg/TJ,230.74051,Naphtha combustion consumption by freight transport,AR-C,SESCO,annual,kg,1a87a2e5-1fde-3afc-8525-2f15107523c7 +2019,Capital Federal,II.1.1,461.48102,TJ,N2O,2.0,kg/TJ,922.96204,Naphtha combustion consumption by freight transport,AR-C,SESCO,annual,kg,dc8cc46f-1e4d-3d14-83cf-708fb7bb2d46 +2019,Chaco,II.1.1,18.57163,TJ,CO2,73300.0,kg/TJ,1361300.4789999998,Naphtha combustion consumption by freight transport,AR-H,SESCO,annual,kg,6f5b9940-6375-313c-8035-448f10e8b47d +2019,Chaco,II.1.1,18.57163,TJ,CH4,0.5,kg/TJ,9.285815,Naphtha combustion consumption by freight transport,AR-H,SESCO,annual,kg,32b75080-6109-3730-95d8-0cd896eae751 +2019,Chaco,II.1.1,18.57163,TJ,N2O,2.0,kg/TJ,37.14326,Naphtha combustion consumption by freight transport,AR-H,SESCO,annual,kg,ff36ea04-ec20-33f3-b240-960c49c723b3 +2019,Chubut,II.1.1,17.40662,TJ,CO2,73300.0,kg/TJ,1275905.246,Naphtha combustion consumption by freight transport,AR-U,SESCO,annual,kg,9aaa2d6c-6bdf-3538-8f68-de7e5bf8614c +2019,Chubut,II.1.1,17.40662,TJ,CH4,0.5,kg/TJ,8.70331,Naphtha combustion consumption by freight transport,AR-U,SESCO,annual,kg,fa731468-42d5-395f-8bfd-94c1c2cf942c +2019,Chubut,II.1.1,17.40662,TJ,N2O,2.0,kg/TJ,34.81324,Naphtha combustion consumption by freight transport,AR-U,SESCO,annual,kg,766a9bbd-2d3d-3422-9c8e-bb00eda62a31 +2019,Corrientes,II.1.1,10.450825,TJ,CO2,73300.0,kg/TJ,766045.4725,Naphtha combustion consumption by freight transport,AR-W,SESCO,annual,kg,47762b2e-808b-31e2-93b1-407680791ec2 +2019,Corrientes,II.1.1,10.450825,TJ,CH4,0.5,kg/TJ,5.2254125,Naphtha combustion consumption by freight transport,AR-W,SESCO,annual,kg,161945f3-0710-3979-88d7-c6422c436506 +2019,Corrientes,II.1.1,10.450825,TJ,N2O,2.0,kg/TJ,20.90165,Naphtha combustion consumption by freight transport,AR-W,SESCO,annual,kg,0d3ffb4b-e88e-307a-a9f2-036c6c63994c +2019,Córdoba,II.1.1,62.97907,TJ,CO2,73300.0,kg/TJ,4616365.831,Naphtha combustion consumption by freight transport,AR-X,SESCO,annual,kg,eb02313a-21c1-37b6-86d2-2257508275db +2019,Córdoba,II.1.1,62.97907,TJ,CH4,0.5,kg/TJ,31.489535,Naphtha combustion consumption by freight transport,AR-X,SESCO,annual,kg,36b68799-d28b-3154-9fc1-310310f95397 +2019,Córdoba,II.1.1,62.97907,TJ,N2O,2.0,kg/TJ,125.95814,Naphtha combustion consumption by freight transport,AR-X,SESCO,annual,kg,bad10983-b1d3-3408-87c2-ed994f31a727 +2019,Entre Rios,II.1.1,25.458895,TJ,CO2,73300.0,kg/TJ,1866137.0034999999,Naphtha combustion consumption by freight transport,AR-E,SESCO,annual,kg,b1f2c8fa-a184-3100-b116-f710bca7db52 +2019,Entre Rios,II.1.1,25.458895,TJ,CH4,0.5,kg/TJ,12.7294475,Naphtha combustion consumption by freight transport,AR-E,SESCO,annual,kg,6651400d-9b86-3b34-95eb-026dc81b5587 +2019,Entre Rios,II.1.1,25.458895,TJ,N2O,2.0,kg/TJ,50.91779,Naphtha combustion consumption by freight transport,AR-E,SESCO,annual,kg,aa465628-c17f-396d-9d0b-52a60d715b1c +2019,Formosa,II.1.1,0.54824,TJ,CO2,73300.0,kg/TJ,40185.992,Naphtha combustion consumption by freight transport,AR-P,SESCO,annual,kg,15f47fdf-74dc-33ff-ba64-8215b833123a +2019,Formosa,II.1.1,0.54824,TJ,CH4,0.5,kg/TJ,0.27412,Naphtha combustion consumption by freight transport,AR-P,SESCO,annual,kg,f234c087-4033-3a6c-b846-69dce6d6f575 +2019,Formosa,II.1.1,0.54824,TJ,N2O,2.0,kg/TJ,1.09648,Naphtha combustion consumption by freight transport,AR-P,SESCO,annual,kg,4a4763a2-279f-39d2-a66f-8d0ac837a75f +2019,Jujuy,II.1.1,1.9873699999999999,TJ,CO2,73300.0,kg/TJ,145674.221,Naphtha combustion consumption by freight transport,AR-Y,SESCO,annual,kg,ad503a30-8ed0-335b-b9a9-0fe397499b1c +2019,Jujuy,II.1.1,1.9873699999999999,TJ,CH4,0.5,kg/TJ,0.9936849999999999,Naphtha combustion consumption by freight transport,AR-Y,SESCO,annual,kg,126d6a2e-b5b1-3747-92d3-8634dc9c361e +2019,Jujuy,II.1.1,1.9873699999999999,TJ,N2O,2.0,kg/TJ,3.9747399999999997,Naphtha combustion consumption by freight transport,AR-Y,SESCO,annual,kg,950a483f-64fb-344d-ae0d-2ed4ecc44fdd +2019,La Pampa,II.1.1,6.64741,TJ,CO2,73300.0,kg/TJ,487255.153,Naphtha combustion consumption by freight transport,AR-L,SESCO,annual,kg,367ddb60-356e-3d6b-8377-94f3c6b64a20 +2019,La Pampa,II.1.1,6.64741,TJ,CH4,0.5,kg/TJ,3.323705,Naphtha combustion consumption by freight transport,AR-L,SESCO,annual,kg,c666b53f-6c14-304e-9a34-b76312f7384d +2019,La Pampa,II.1.1,6.64741,TJ,N2O,2.0,kg/TJ,13.29482,Naphtha combustion consumption by freight transport,AR-L,SESCO,annual,kg,201f579d-9ec0-3565-9801-490c6ed5501a +2019,La Rioja,II.1.1,0.47970999999999997,TJ,CO2,73300.0,kg/TJ,35162.742999999995,Naphtha combustion consumption by freight transport,AR-F,SESCO,annual,kg,46e90d66-49a4-3ffc-b0bb-9f414038c023 +2019,La Rioja,II.1.1,0.47970999999999997,TJ,CH4,0.5,kg/TJ,0.23985499999999998,Naphtha combustion consumption by freight transport,AR-F,SESCO,annual,kg,1ac7f756-7176-3ad8-952b-85b0b424cc08 +2019,La Rioja,II.1.1,0.47970999999999997,TJ,N2O,2.0,kg/TJ,0.9594199999999999,Naphtha combustion consumption by freight transport,AR-F,SESCO,annual,kg,a982fa76-72fe-3d94-b78e-5f72f833f797 +2019,Mendoza,II.1.1,35.943985,TJ,CO2,73300.0,kg/TJ,2634694.1004999997,Naphtha combustion consumption by freight transport,AR-M,SESCO,annual,kg,8aae1636-3d00-357f-906e-3395ac6be637 +2019,Mendoza,II.1.1,35.943985,TJ,CH4,0.5,kg/TJ,17.9719925,Naphtha combustion consumption by freight transport,AR-M,SESCO,annual,kg,fb648c3f-fc77-37cc-90d7-53ad7577e5ba +2019,Mendoza,II.1.1,35.943985,TJ,N2O,2.0,kg/TJ,71.88797,Naphtha combustion consumption by freight transport,AR-M,SESCO,annual,kg,e963f46b-89d3-3144-9f0f-094756a55375 +2019,Misiones,II.1.1,7.229915,TJ,CO2,73300.0,kg/TJ,529952.7695,Naphtha combustion consumption by freight transport,AR-N,SESCO,annual,kg,a1f88d43-4792-3a48-9a31-e873a41a44e1 +2019,Misiones,II.1.1,7.229915,TJ,CH4,0.5,kg/TJ,3.6149575,Naphtha combustion consumption by freight transport,AR-N,SESCO,annual,kg,5ecad645-7cd3-3437-8bb2-c576c1237f48 +2019,Misiones,II.1.1,7.229915,TJ,N2O,2.0,kg/TJ,14.45983,Naphtha combustion consumption by freight transport,AR-N,SESCO,annual,kg,8e63de13-8331-3313-a314-9d82abfa5d81 +2019,Neuquén,II.1.1,12.095545,TJ,CO2,73300.0,kg/TJ,886603.4484999999,Naphtha combustion consumption by freight transport,AR-Q,SESCO,annual,kg,59c995e1-9f8a-3ccc-9e24-5370c2fef6ac +2019,Neuquén,II.1.1,12.095545,TJ,CH4,0.5,kg/TJ,6.0477725,Naphtha combustion consumption by freight transport,AR-Q,SESCO,annual,kg,6307605c-c360-31ab-ad86-b391fb24482a +2019,Neuquén,II.1.1,12.095545,TJ,N2O,2.0,kg/TJ,24.19109,Naphtha combustion consumption by freight transport,AR-Q,SESCO,annual,kg,17174d49-44e7-3070-b915-edd8860ead4b +2019,Rio Negro,II.1.1,19.25693,TJ,CO2,73300.0,kg/TJ,1411532.969,Naphtha combustion consumption by freight transport,AR-R,SESCO,annual,kg,7a5a209c-9d53-371f-bb98-c17fd3a7930a +2019,Rio Negro,II.1.1,19.25693,TJ,CH4,0.5,kg/TJ,9.628465,Naphtha combustion consumption by freight transport,AR-R,SESCO,annual,kg,16b70b17-40c7-3f43-a08a-14430671c182 +2019,Rio Negro,II.1.1,19.25693,TJ,N2O,2.0,kg/TJ,38.51386,Naphtha combustion consumption by freight transport,AR-R,SESCO,annual,kg,57f0e172-1410-3c07-9d1b-ffd5807dbd3f +2019,Salta,II.1.1,16.549995,TJ,CO2,73300.0,kg/TJ,1213114.6335,Naphtha combustion consumption by freight transport,AR-A,SESCO,annual,kg,8c19236b-8805-3fe5-9c4d-f698c5c6b53d +2019,Salta,II.1.1,16.549995,TJ,CH4,0.5,kg/TJ,8.2749975,Naphtha combustion consumption by freight transport,AR-A,SESCO,annual,kg,b769c8ce-0711-32c7-8fb9-d05a5f4ab2e5 +2019,Salta,II.1.1,16.549995,TJ,N2O,2.0,kg/TJ,33.09999,Naphtha combustion consumption by freight transport,AR-A,SESCO,annual,kg,256f071b-77b9-3b0b-b9c5-0b04932ea221 +2019,San Juan,II.1.1,4.009005,TJ,CO2,73300.0,kg/TJ,293860.0665,Naphtha combustion consumption by freight transport,AR-J,SESCO,annual,kg,6883d041-a532-3baf-a48d-c3e3b732844c +2019,San Juan,II.1.1,4.009005,TJ,CH4,0.5,kg/TJ,2.0045025,Naphtha combustion consumption by freight transport,AR-J,SESCO,annual,kg,39c88092-f6a8-3c3b-8f08-2bd064273d37 +2019,San Juan,II.1.1,4.009005,TJ,N2O,2.0,kg/TJ,8.01801,Naphtha combustion consumption by freight transport,AR-J,SESCO,annual,kg,d60e050e-7f8e-3d9d-89e4-bbb9f5bd3b8c +2019,San Luis,II.1.1,5.68799,TJ,CO2,73300.0,kg/TJ,416929.667,Naphtha combustion consumption by freight transport,AR-D,SESCO,annual,kg,015ad35b-81c8-3155-bf33-4a330169af0b +2019,San Luis,II.1.1,5.68799,TJ,CH4,0.5,kg/TJ,2.843995,Naphtha combustion consumption by freight transport,AR-D,SESCO,annual,kg,6283146e-ec9a-3ece-b247-f121296df556 +2019,San Luis,II.1.1,5.68799,TJ,N2O,2.0,kg/TJ,11.37598,Naphtha combustion consumption by freight transport,AR-D,SESCO,annual,kg,a91fa09e-b256-31ee-8fb1-9f11231e858c +2019,Santa Cruz,II.1.1,2.227225,TJ,CO2,73300.0,kg/TJ,163255.5925,Naphtha combustion consumption by freight transport,AR-Z,SESCO,annual,kg,23617add-fd0d-3242-8726-63787ffb12ab +2019,Santa Cruz,II.1.1,2.227225,TJ,CH4,0.5,kg/TJ,1.1136125,Naphtha combustion consumption by freight transport,AR-Z,SESCO,annual,kg,f4bf4511-fdc7-3a17-a4d8-f13f6be00940 +2019,Santa Cruz,II.1.1,2.227225,TJ,N2O,2.0,kg/TJ,4.45445,Naphtha combustion consumption by freight transport,AR-Z,SESCO,annual,kg,13ca6b82-7e3d-3dbe-adfd-639455d8bd19 +2019,Santa Fe,II.1.1,65.24056,TJ,CO2,73300.0,kg/TJ,4782133.048,Naphtha combustion consumption by freight transport,AR-S,SESCO,annual,kg,28775ef9-2342-3fe2-ac2a-e32dd87c0d12 +2019,Santa Fe,II.1.1,65.24056,TJ,CH4,0.5,kg/TJ,32.62028,Naphtha combustion consumption by freight transport,AR-S,SESCO,annual,kg,80f202ad-259f-3b2b-b1d8-c030bee64d7a +2019,Santa Fe,II.1.1,65.24056,TJ,N2O,2.0,kg/TJ,130.48112,Naphtha combustion consumption by freight transport,AR-S,SESCO,annual,kg,0e51ed0b-c2c4-3e26-bf1c-6a10ad22c9fb +2019,Santiago del Estero,II.1.1,1.062215,TJ,CO2,73300.0,kg/TJ,77860.35949999999,Naphtha combustion consumption by freight transport,AR-G,SESCO,annual,kg,8f892271-1f8a-3497-8dd7-f64044a6fba0 +2019,Santiago del Estero,II.1.1,1.062215,TJ,CH4,0.5,kg/TJ,0.5311075,Naphtha combustion consumption by freight transport,AR-G,SESCO,annual,kg,efe2e8d6-c7f6-3447-b21b-958941e916f5 +2019,Santiago del Estero,II.1.1,1.062215,TJ,N2O,2.0,kg/TJ,2.12443,Naphtha combustion consumption by freight transport,AR-G,SESCO,annual,kg,067e1194-7e13-3767-b31b-067d11f3122e +2019,Tierra del Fuego,II.1.1,10.313765,TJ,CO2,73300.0,kg/TJ,755998.9745,Naphtha combustion consumption by freight transport,AR-V,SESCO,annual,kg,85dc91d1-342d-3dd0-8d27-24efba450268 +2019,Tierra del Fuego,II.1.1,10.313765,TJ,CH4,0.5,kg/TJ,5.1568825,Naphtha combustion consumption by freight transport,AR-V,SESCO,annual,kg,48395193-1332-3451-8a44-a33ca490c05b +2019,Tierra del Fuego,II.1.1,10.313765,TJ,N2O,2.0,kg/TJ,20.62753,Naphtha combustion consumption by freight transport,AR-V,SESCO,annual,kg,b74985a5-3bf8-3734-be93-bc6457443409 +2019,Tucuman,II.1.1,14.80248,TJ,CO2,73300.0,kg/TJ,1085021.784,Naphtha combustion consumption by freight transport,AR-T,SESCO,annual,kg,44558a99-47e8-3ee1-9b30-8a7d11e7a966 +2019,Tucuman,II.1.1,14.80248,TJ,CH4,0.5,kg/TJ,7.40124,Naphtha combustion consumption by freight transport,AR-T,SESCO,annual,kg,12b28427-05e7-3124-8036-4d62423527c4 +2019,Tucuman,II.1.1,14.80248,TJ,N2O,2.0,kg/TJ,29.60496,Naphtha combustion consumption by freight transport,AR-T,SESCO,annual,kg,e1c8afd5-8aae-32ec-b03f-ca4a0e885950 +2019,Buenos Aires,II.1.1,350.90786499999996,TJ,CO2,73300.0,kg/TJ,25721546.504499998,Naphtha combustion consumption by freight transport,AR-B,SESCO,annual,kg,f3cc8737-0ee9-3638-ace5-a4c097b29165 +2019,Buenos Aires,II.1.1,350.90786499999996,TJ,CH4,0.5,kg/TJ,175.45393249999998,Naphtha combustion consumption by freight transport,AR-B,SESCO,annual,kg,25b0ae3b-155d-3be7-b8a5-c970b60bb8fc +2019,Buenos Aires,II.1.1,350.90786499999996,TJ,N2O,2.0,kg/TJ,701.8157299999999,Naphtha combustion consumption by freight transport,AR-B,SESCO,annual,kg,8d64b6af-4497-3edc-a515-c26ffba432b1 +2019,Capital Federal,II.1.1,581.3057249999999,TJ,CO2,73300.0,kg/TJ,42609709.6425,Naphtha combustion consumption by freight transport,AR-C,SESCO,annual,kg,b018757b-682c-3243-afe1-fd62a50a83a9 +2019,Capital Federal,II.1.1,581.3057249999999,TJ,CH4,0.5,kg/TJ,290.65286249999997,Naphtha combustion consumption by freight transport,AR-C,SESCO,annual,kg,acfc6497-13e7-3140-884b-cf02a70c5505 +2019,Capital Federal,II.1.1,581.3057249999999,TJ,N2O,2.0,kg/TJ,1162.6114499999999,Naphtha combustion consumption by freight transport,AR-C,SESCO,annual,kg,7a4d46f2-3ff7-31cb-9cea-1de0305b43d0 +2019,Catamarca,II.1.1,0.034265,TJ,CO2,73300.0,kg/TJ,2511.6245,Naphtha combustion consumption by freight transport,AR-K,SESCO,annual,kg,dda362b9-fbc1-3e7d-95ed-175fb43398a8 +2019,Catamarca,II.1.1,0.034265,TJ,CH4,0.5,kg/TJ,0.0171325,Naphtha combustion consumption by freight transport,AR-K,SESCO,annual,kg,aaf2e257-2b54-3581-9f59-0f312799765d +2019,Catamarca,II.1.1,0.034265,TJ,N2O,2.0,kg/TJ,0.06853,Naphtha combustion consumption by freight transport,AR-K,SESCO,annual,kg,1d711ea2-d1f8-328c-ad2c-1564c3877c4a +2019,Chaco,II.1.1,9.080225,TJ,CO2,73300.0,kg/TJ,665580.4925,Naphtha combustion consumption by freight transport,AR-H,SESCO,annual,kg,ac3f58fc-7248-3c02-b605-82e5d6f346d4 +2019,Chaco,II.1.1,9.080225,TJ,CH4,0.5,kg/TJ,4.5401125,Naphtha combustion consumption by freight transport,AR-H,SESCO,annual,kg,d47ed2a3-81b2-31fd-a1e0-95be28d33e4f +2019,Chaco,II.1.1,9.080225,TJ,N2O,2.0,kg/TJ,18.16045,Naphtha combustion consumption by freight transport,AR-H,SESCO,annual,kg,332df7b4-d5c3-3c6b-8f10-e8fd1d52b524 +2019,Chubut,II.1.1,9.11449,TJ,CO2,73300.0,kg/TJ,668092.117,Naphtha combustion consumption by freight transport,AR-U,SESCO,annual,kg,f954b3f6-34eb-3250-aa66-02ff1ee46966 +2019,Chubut,II.1.1,9.11449,TJ,CH4,0.5,kg/TJ,4.557245,Naphtha combustion consumption by freight transport,AR-U,SESCO,annual,kg,4382b673-a28b-332d-84ad-a966e3882d80 +2019,Chubut,II.1.1,9.11449,TJ,N2O,2.0,kg/TJ,18.22898,Naphtha combustion consumption by freight transport,AR-U,SESCO,annual,kg,cc8e1d9d-0e2f-374c-acd5-3bdc7b52dcfe +2019,Corrientes,II.1.1,12.301134999999999,TJ,CO2,73300.0,kg/TJ,901673.1954999999,Naphtha combustion consumption by freight transport,AR-W,SESCO,annual,kg,5467047f-cf7a-3f6b-b450-a3d167cb0dd7 +2019,Corrientes,II.1.1,12.301134999999999,TJ,CH4,0.5,kg/TJ,6.150567499999999,Naphtha combustion consumption by freight transport,AR-W,SESCO,annual,kg,b23ced76-30a7-3351-b225-620f2d7cac9f +2019,Corrientes,II.1.1,12.301134999999999,TJ,N2O,2.0,kg/TJ,24.602269999999997,Naphtha combustion consumption by freight transport,AR-W,SESCO,annual,kg,8eaab15a-fc41-389d-9fac-cc9366008fb8 +2019,Córdoba,II.1.1,43.071104999999996,TJ,CO2,73300.0,kg/TJ,3157111.9965,Naphtha combustion consumption by freight transport,AR-X,SESCO,annual,kg,fddb5650-c86c-3445-816d-cfa0adaf620e +2019,Córdoba,II.1.1,43.071104999999996,TJ,CH4,0.5,kg/TJ,21.535552499999998,Naphtha combustion consumption by freight transport,AR-X,SESCO,annual,kg,7afbbe5e-b5b1-3342-932c-0a60bd770988 +2019,Córdoba,II.1.1,43.071104999999996,TJ,N2O,2.0,kg/TJ,86.14220999999999,Naphtha combustion consumption by freight transport,AR-X,SESCO,annual,kg,59d6c537-a16c-3b48-8596-2385bdd08ad9 +2019,Entre Rios,II.1.1,28.71407,TJ,CO2,73300.0,kg/TJ,2104741.331,Naphtha combustion consumption by freight transport,AR-E,SESCO,annual,kg,8dd91667-cf24-3160-b421-07113687c632 +2019,Entre Rios,II.1.1,28.71407,TJ,CH4,0.5,kg/TJ,14.357035,Naphtha combustion consumption by freight transport,AR-E,SESCO,annual,kg,b4b7e6f3-e0b7-3698-bec3-5c95dff27355 +2019,Entre Rios,II.1.1,28.71407,TJ,N2O,2.0,kg/TJ,57.42814,Naphtha combustion consumption by freight transport,AR-E,SESCO,annual,kg,a6cfacca-49fc-3e20-bc3f-00f6c243808f +2019,Formosa,II.1.1,0.445445,TJ,CO2,73300.0,kg/TJ,32651.118499999997,Naphtha combustion consumption by freight transport,AR-P,SESCO,annual,kg,cff20865-df63-391d-affa-6dc30498bb1e +2019,Formosa,II.1.1,0.445445,TJ,CH4,0.5,kg/TJ,0.2227225,Naphtha combustion consumption by freight transport,AR-P,SESCO,annual,kg,72a36b99-5a14-37e8-926d-fb5cea436158 +2019,Formosa,II.1.1,0.445445,TJ,N2O,2.0,kg/TJ,0.89089,Naphtha combustion consumption by freight transport,AR-P,SESCO,annual,kg,0fdafeb1-b368-3986-8bc3-e2f5a69e50b6 +2019,Jujuy,II.1.1,1.884575,TJ,CO2,73300.0,kg/TJ,138139.3475,Naphtha combustion consumption by freight transport,AR-Y,SESCO,annual,kg,54dee388-01f3-34b9-ba73-3dee7eb5a3f0 +2019,Jujuy,II.1.1,1.884575,TJ,CH4,0.5,kg/TJ,0.9422875,Naphtha combustion consumption by freight transport,AR-Y,SESCO,annual,kg,e78e827b-e8da-3d75-9084-e08538a6eaa8 +2019,Jujuy,II.1.1,1.884575,TJ,N2O,2.0,kg/TJ,3.76915,Naphtha combustion consumption by freight transport,AR-Y,SESCO,annual,kg,97057218-8f1f-359b-b27d-5d54fba32ad5 +2019,La Pampa,II.1.1,5.208279999999999,TJ,CO2,73300.0,kg/TJ,381766.92399999994,Naphtha combustion consumption by freight transport,AR-L,SESCO,annual,kg,cda93504-3693-3807-8540-015f031d4a24 +2019,La Pampa,II.1.1,5.208279999999999,TJ,CH4,0.5,kg/TJ,2.6041399999999997,Naphtha combustion consumption by freight transport,AR-L,SESCO,annual,kg,2bce3418-3134-3b9b-ba26-0912b4926dec +2019,La Pampa,II.1.1,5.208279999999999,TJ,N2O,2.0,kg/TJ,10.416559999999999,Naphtha combustion consumption by freight transport,AR-L,SESCO,annual,kg,84b1f978-330a-3a44-a6a7-a8377bd8b665 +2019,La Rioja,II.1.1,3.15238,TJ,CO2,73300.0,kg/TJ,231069.454,Naphtha combustion consumption by freight transport,AR-F,SESCO,annual,kg,77763161-d77b-3ba4-b32c-903d8e1e67fd +2019,La Rioja,II.1.1,3.15238,TJ,CH4,0.5,kg/TJ,1.57619,Naphtha combustion consumption by freight transport,AR-F,SESCO,annual,kg,7a9a3534-d317-3776-b2c6-19a99588abc2 +2019,La Rioja,II.1.1,3.15238,TJ,N2O,2.0,kg/TJ,6.30476,Naphtha combustion consumption by freight transport,AR-F,SESCO,annual,kg,90da4ad1-7719-312b-a7f6-b09a72735dc9 +2019,Mendoza,II.1.1,88.23237499999999,TJ,CO2,73300.0,kg/TJ,6467433.087499999,Naphtha combustion consumption by freight transport,AR-M,SESCO,annual,kg,072d5d86-7478-33dd-bbc9-1adb5bd61987 +2019,Mendoza,II.1.1,88.23237499999999,TJ,CH4,0.5,kg/TJ,44.116187499999995,Naphtha combustion consumption by freight transport,AR-M,SESCO,annual,kg,e5e2de52-ac06-3eba-ac32-48d6e08326bd +2019,Mendoza,II.1.1,88.23237499999999,TJ,N2O,2.0,kg/TJ,176.46474999999998,Naphtha combustion consumption by freight transport,AR-M,SESCO,annual,kg,3d3989c2-a633-3750-bd80-032acac5c63c +2019,Misiones,II.1.1,9.217285,TJ,CO2,73300.0,kg/TJ,675626.9905000001,Naphtha combustion consumption by freight transport,AR-N,SESCO,annual,kg,00d3db50-dc68-3756-958b-0476f751f55e +2019,Misiones,II.1.1,9.217285,TJ,CH4,0.5,kg/TJ,4.6086425,Naphtha combustion consumption by freight transport,AR-N,SESCO,annual,kg,e7cc1169-03eb-3177-9d13-b3f473f03b85 +2019,Misiones,II.1.1,9.217285,TJ,N2O,2.0,kg/TJ,18.43457,Naphtha combustion consumption by freight transport,AR-N,SESCO,annual,kg,212355ff-c7e0-364d-bd27-c1cb5f02bff4 +2019,Neuquén,II.1.1,30.90703,TJ,CO2,73300.0,kg/TJ,2265485.299,Naphtha combustion consumption by freight transport,AR-Q,SESCO,annual,kg,e5ee2383-aef0-3a6e-b872-ae5662b88c8d +2019,Neuquén,II.1.1,30.90703,TJ,CH4,0.5,kg/TJ,15.453515,Naphtha combustion consumption by freight transport,AR-Q,SESCO,annual,kg,a2ef470b-b034-3725-b136-ff6e4a730fff +2019,Neuquén,II.1.1,30.90703,TJ,N2O,2.0,kg/TJ,61.81406,Naphtha combustion consumption by freight transport,AR-Q,SESCO,annual,kg,31ddf5b6-c9f1-3052-8025-1a94c41a791a +2019,Rio Negro,II.1.1,59.998014999999995,TJ,CO2,73300.0,kg/TJ,4397854.4995,Naphtha combustion consumption by freight transport,AR-R,SESCO,annual,kg,df537c73-3cdd-3374-ae3e-e350428addab +2019,Rio Negro,II.1.1,59.998014999999995,TJ,CH4,0.5,kg/TJ,29.999007499999998,Naphtha combustion consumption by freight transport,AR-R,SESCO,annual,kg,2f513bc2-ad55-343b-9724-ae4cb4a09819 +2019,Rio Negro,II.1.1,59.998014999999995,TJ,N2O,2.0,kg/TJ,119.99602999999999,Naphtha combustion consumption by freight transport,AR-R,SESCO,annual,kg,12868ca8-2bc1-3f25-8fcd-56c9c822c7e1 +2019,Salta,II.1.1,12.575255,TJ,CO2,73300.0,kg/TJ,921766.1915000001,Naphtha combustion consumption by freight transport,AR-A,SESCO,annual,kg,f7776103-83ea-3240-9334-c5957e06370f +2019,Salta,II.1.1,12.575255,TJ,CH4,0.5,kg/TJ,6.2876275,Naphtha combustion consumption by freight transport,AR-A,SESCO,annual,kg,32d3c141-b5d8-34d9-8e18-88f4d6ea78f2 +2019,Salta,II.1.1,12.575255,TJ,N2O,2.0,kg/TJ,25.15051,Naphtha combustion consumption by freight transport,AR-A,SESCO,annual,kg,bc4eba25-f5e4-366b-b151-2bd0f00d05e8 +2019,San Juan,II.1.1,1.884575,TJ,CO2,73300.0,kg/TJ,138139.3475,Naphtha combustion consumption by freight transport,AR-J,SESCO,annual,kg,837b3e89-a8c1-34ff-a8cb-ae0fd760c1b1 +2019,San Juan,II.1.1,1.884575,TJ,CH4,0.5,kg/TJ,0.9422875,Naphtha combustion consumption by freight transport,AR-J,SESCO,annual,kg,db65b7ce-59d5-3a2d-ba59-d1c7fd3c7c3c +2019,San Juan,II.1.1,1.884575,TJ,N2O,2.0,kg/TJ,3.76915,Naphtha combustion consumption by freight transport,AR-J,SESCO,annual,kg,6f65227b-24cd-3595-a01b-05e6bdc54afb +2019,San Luis,II.1.1,4.8656299999999995,TJ,CO2,73300.0,kg/TJ,356650.67899999995,Naphtha combustion consumption by freight transport,AR-D,SESCO,annual,kg,1c1afc59-351a-3a2d-8abf-41d0969183d2 +2019,San Luis,II.1.1,4.8656299999999995,TJ,CH4,0.5,kg/TJ,2.4328149999999997,Naphtha combustion consumption by freight transport,AR-D,SESCO,annual,kg,2a19738b-516a-3411-ac0a-5298f06e10e4 +2019,San Luis,II.1.1,4.8656299999999995,TJ,N2O,2.0,kg/TJ,9.731259999999999,Naphtha combustion consumption by freight transport,AR-D,SESCO,annual,kg,a697ff81-618a-3fee-8bf1-f1421a094535 +2019,Santa Cruz,II.1.1,2.12443,TJ,CO2,73300.0,kg/TJ,155720.71899999998,Naphtha combustion consumption by freight transport,AR-Z,SESCO,annual,kg,db1d739b-33f2-3f53-891d-9c77a9866b9b +2019,Santa Cruz,II.1.1,2.12443,TJ,CH4,0.5,kg/TJ,1.062215,Naphtha combustion consumption by freight transport,AR-Z,SESCO,annual,kg,76616fdd-45f0-34b6-86e6-aedc85774882 +2019,Santa Cruz,II.1.1,2.12443,TJ,N2O,2.0,kg/TJ,4.24886,Naphtha combustion consumption by freight transport,AR-Z,SESCO,annual,kg,b90f2544-8366-311d-b849-108376671d13 +2019,Santa Fe,II.1.1,87.13589499999999,TJ,CO2,73300.0,kg/TJ,6387061.103499999,Naphtha combustion consumption by freight transport,AR-S,SESCO,annual,kg,e473f876-2a10-30e8-b904-fb18a217a0f2 +2019,Santa Fe,II.1.1,87.13589499999999,TJ,CH4,0.5,kg/TJ,43.567947499999995,Naphtha combustion consumption by freight transport,AR-S,SESCO,annual,kg,20a89554-c495-35a2-a302-6c999b0dd4e1 +2019,Santa Fe,II.1.1,87.13589499999999,TJ,N2O,2.0,kg/TJ,174.27178999999998,Naphtha combustion consumption by freight transport,AR-S,SESCO,annual,kg,d9bbf6e9-c819-35cb-a03e-237c6fde09d6 +2019,Santiago del Estero,II.1.1,1.2335399999999999,TJ,CO2,73300.0,kg/TJ,90418.48199999999,Naphtha combustion consumption by freight transport,AR-G,SESCO,annual,kg,561c518b-c6ff-328c-b04a-ba0fc4b43e95 +2019,Santiago del Estero,II.1.1,1.2335399999999999,TJ,CH4,0.5,kg/TJ,0.6167699999999999,Naphtha combustion consumption by freight transport,AR-G,SESCO,annual,kg,b305cd56-5061-34d7-84b2-58699373b016 +2019,Santiago del Estero,II.1.1,1.2335399999999999,TJ,N2O,2.0,kg/TJ,2.4670799999999997,Naphtha combustion consumption by freight transport,AR-G,SESCO,annual,kg,647d0637-041e-36db-b3d4-661483c59c61 +2019,Tierra del Fuego,II.1.1,3.392235,TJ,CO2,73300.0,kg/TJ,248650.8255,Naphtha combustion consumption by freight transport,AR-V,SESCO,annual,kg,8b3cf3b5-c53e-3445-8751-84a2a2ac8080 +2019,Tierra del Fuego,II.1.1,3.392235,TJ,CH4,0.5,kg/TJ,1.6961175,Naphtha combustion consumption by freight transport,AR-V,SESCO,annual,kg,e7e5d94f-70c3-3d35-9b70-43da7f658b66 +2019,Tierra del Fuego,II.1.1,3.392235,TJ,N2O,2.0,kg/TJ,6.78447,Naphtha combustion consumption by freight transport,AR-V,SESCO,annual,kg,f4b36c37-361f-3d97-b544-8f01c81b28e4 +2019,Tucuman,II.1.1,7.6068299999999995,TJ,CO2,73300.0,kg/TJ,557580.639,Naphtha combustion consumption by freight transport,AR-T,SESCO,annual,kg,7b06265c-cd9f-366a-81c0-1fbb40d6817b +2019,Tucuman,II.1.1,7.6068299999999995,TJ,CH4,0.5,kg/TJ,3.8034149999999998,Naphtha combustion consumption by freight transport,AR-T,SESCO,annual,kg,5eb14f49-758c-3724-bb68-c9c2184bfe86 +2019,Tucuman,II.1.1,7.6068299999999995,TJ,N2O,2.0,kg/TJ,15.213659999999999,Naphtha combustion consumption by freight transport,AR-T,SESCO,annual,kg,eab72d84-314b-3402-8e96-4dfeddc57d50 +2019,Buenos Aires,II.1.1,7815.8261999999995,TJ,CO2,74100.0,kg/TJ,579152721.42,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,d1fdce23-d148-33f0-90e7-dfd9c15142da +2019,Buenos Aires,II.1.1,7815.8261999999995,TJ,CH4,3.9,kg/TJ,30481.722179999997,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,b63b8160-9fbd-34b6-abf8-1526899feb36 +2019,Buenos Aires,II.1.1,7815.8261999999995,TJ,N2O,3.9,kg/TJ,30481.722179999997,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,b63b8160-9fbd-34b6-abf8-1526899feb36 +2019,Capital Federal,II.1.1,1601.7775199999999,TJ,CO2,74100.0,kg/TJ,118691714.232,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,f702140e-725d-39ed-9f7b-ebe7c172b7c2 +2019,Capital Federal,II.1.1,1601.7775199999999,TJ,CH4,3.9,kg/TJ,6246.932327999999,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,d73236aa-2f82-337c-83b3-1b956f55f8f5 +2019,Capital Federal,II.1.1,1601.7775199999999,TJ,N2O,3.9,kg/TJ,6246.932327999999,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,d73236aa-2f82-337c-83b3-1b956f55f8f5 +2019,Catamarca,II.1.1,62.34312,TJ,CO2,74100.0,kg/TJ,4619625.192,Gas Oil combustion consumption by public passenger transport,AR-K,SESCO,annual,kg,820e4d48-ea80-3827-9c14-df815c22ddbb +2019,Catamarca,II.1.1,62.34312,TJ,CH4,3.9,kg/TJ,243.13816799999998,Gas Oil combustion consumption by public passenger transport,AR-K,SESCO,annual,kg,357aec11-f37e-3b6d-9a50-0ff8d8b81fad +2019,Catamarca,II.1.1,62.34312,TJ,N2O,3.9,kg/TJ,243.13816799999998,Gas Oil combustion consumption by public passenger transport,AR-K,SESCO,annual,kg,357aec11-f37e-3b6d-9a50-0ff8d8b81fad +2019,Chaco,II.1.1,142.56564,TJ,CO2,74100.0,kg/TJ,10564113.924,Gas Oil combustion consumption by public passenger transport,AR-H,SESCO,annual,kg,732ea08f-2065-37a1-a6d4-ff8635d838be +2019,Chaco,II.1.1,142.56564,TJ,CH4,3.9,kg/TJ,556.005996,Gas Oil combustion consumption by public passenger transport,AR-H,SESCO,annual,kg,524cc0e1-757d-37b0-82bb-3d4dbf7500da +2019,Chaco,II.1.1,142.56564,TJ,N2O,3.9,kg/TJ,556.005996,Gas Oil combustion consumption by public passenger transport,AR-H,SESCO,annual,kg,524cc0e1-757d-37b0-82bb-3d4dbf7500da +2019,Chubut,II.1.1,110.67168,TJ,CO2,74100.0,kg/TJ,8200771.488,Gas Oil combustion consumption by public passenger transport,AR-U,SESCO,annual,kg,3f9a2747-01a1-3886-8209-f82dea56e593 +2019,Chubut,II.1.1,110.67168,TJ,CH4,3.9,kg/TJ,431.619552,Gas Oil combustion consumption by public passenger transport,AR-U,SESCO,annual,kg,9a680c6b-6bd5-36e5-be0f-c3aed527a911 +2019,Chubut,II.1.1,110.67168,TJ,N2O,3.9,kg/TJ,431.619552,Gas Oil combustion consumption by public passenger transport,AR-U,SESCO,annual,kg,9a680c6b-6bd5-36e5-be0f-c3aed527a911 +2019,Corrientes,II.1.1,90.91404,TJ,CO2,74100.0,kg/TJ,6736730.364,Gas Oil combustion consumption by public passenger transport,AR-W,SESCO,annual,kg,7ae45d96-eeb6-30ce-9c72-c45d944cc23a +2019,Corrientes,II.1.1,90.91404,TJ,CH4,3.9,kg/TJ,354.564756,Gas Oil combustion consumption by public passenger transport,AR-W,SESCO,annual,kg,b191df0e-0932-3fd9-8664-60fa57544bc9 +2019,Corrientes,II.1.1,90.91404,TJ,N2O,3.9,kg/TJ,354.564756,Gas Oil combustion consumption by public passenger transport,AR-W,SESCO,annual,kg,b191df0e-0932-3fd9-8664-60fa57544bc9 +2019,Córdoba,II.1.1,755.70264,TJ,CO2,74100.0,kg/TJ,55997565.624,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,7321865f-d7d5-37a7-83b7-29c2922aebcc +2019,Córdoba,II.1.1,755.70264,TJ,CH4,3.9,kg/TJ,2947.240296,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,fa9cd323-1abb-3293-b21d-fa431d4d1204 +2019,Córdoba,II.1.1,755.70264,TJ,N2O,3.9,kg/TJ,2947.240296,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,fa9cd323-1abb-3293-b21d-fa431d4d1204 +2019,Entre Rios,II.1.1,316.5918,TJ,CO2,74100.0,kg/TJ,23459452.38,Gas Oil combustion consumption by public passenger transport,AR-E,SESCO,annual,kg,d849dee5-b903-3650-a473-1a40ab92b27e +2019,Entre Rios,II.1.1,316.5918,TJ,CH4,3.9,kg/TJ,1234.7080199999998,Gas Oil combustion consumption by public passenger transport,AR-E,SESCO,annual,kg,8db13ac0-d2f7-3527-870b-18a0bce96133 +2019,Entre Rios,II.1.1,316.5918,TJ,N2O,3.9,kg/TJ,1234.7080199999998,Gas Oil combustion consumption by public passenger transport,AR-E,SESCO,annual,kg,8db13ac0-d2f7-3527-870b-18a0bce96133 +2019,Formosa,II.1.1,19.82988,TJ,CO2,74100.0,kg/TJ,1469394.108,Gas Oil combustion consumption by public passenger transport,AR-P,SESCO,annual,kg,6b56a770-2b09-335a-a669-70a7837d6d82 +2019,Formosa,II.1.1,19.82988,TJ,CH4,3.9,kg/TJ,77.33653199999999,Gas Oil combustion consumption by public passenger transport,AR-P,SESCO,annual,kg,5d60d315-2117-34bf-94d5-abf103cc9262 +2019,Formosa,II.1.1,19.82988,TJ,N2O,3.9,kg/TJ,77.33653199999999,Gas Oil combustion consumption by public passenger transport,AR-P,SESCO,annual,kg,5d60d315-2117-34bf-94d5-abf103cc9262 +2019,Jujuy,II.1.1,290.11584,TJ,CO2,74100.0,kg/TJ,21497583.744,Gas Oil combustion consumption by public passenger transport,AR-Y,SESCO,annual,kg,a3f41725-294b-3d44-8987-0bf6d4deae33 +2019,Jujuy,II.1.1,290.11584,TJ,CH4,3.9,kg/TJ,1131.4517759999999,Gas Oil combustion consumption by public passenger transport,AR-Y,SESCO,annual,kg,7174a2b9-c5fb-3f74-b921-0b1b3d67616a +2019,Jujuy,II.1.1,290.11584,TJ,N2O,3.9,kg/TJ,1131.4517759999999,Gas Oil combustion consumption by public passenger transport,AR-Y,SESCO,annual,kg,7174a2b9-c5fb-3f74-b921-0b1b3d67616a +2019,La Pampa,II.1.1,9.60792,TJ,CO2,74100.0,kg/TJ,711946.872,Gas Oil combustion consumption by public passenger transport,AR-L,SESCO,annual,kg,3ad68a93-3da8-347c-b6c3-37227698da2e +2019,La Pampa,II.1.1,9.60792,TJ,CH4,3.9,kg/TJ,37.470888,Gas Oil combustion consumption by public passenger transport,AR-L,SESCO,annual,kg,0730c04a-e813-3932-ae58-ff206fc5b41c +2019,La Pampa,II.1.1,9.60792,TJ,N2O,3.9,kg/TJ,37.470888,Gas Oil combustion consumption by public passenger transport,AR-L,SESCO,annual,kg,0730c04a-e813-3932-ae58-ff206fc5b41c +2019,La Rioja,II.1.1,23.58636,TJ,CO2,74100.0,kg/TJ,1747749.2759999998,Gas Oil combustion consumption by public passenger transport,AR-F,SESCO,annual,kg,8ad02379-a152-3965-a788-0ce3360450c8 +2019,La Rioja,II.1.1,23.58636,TJ,CH4,3.9,kg/TJ,91.98680399999999,Gas Oil combustion consumption by public passenger transport,AR-F,SESCO,annual,kg,ee4cd55a-9251-3e67-8e27-cae09faed26b +2019,La Rioja,II.1.1,23.58636,TJ,N2O,3.9,kg/TJ,91.98680399999999,Gas Oil combustion consumption by public passenger transport,AR-F,SESCO,annual,kg,ee4cd55a-9251-3e67-8e27-cae09faed26b +2019,Mendoza,II.1.1,581.7848399999999,TJ,CO2,74100.0,kg/TJ,43110256.643999994,Gas Oil combustion consumption by public passenger transport,AR-M,SESCO,annual,kg,579d9d71-d825-33d4-a2b1-cd97996dfd6d +2019,Mendoza,II.1.1,581.7848399999999,TJ,CH4,3.9,kg/TJ,2268.9608759999996,Gas Oil combustion consumption by public passenger transport,AR-M,SESCO,annual,kg,ea8f07d6-e81a-31df-8606-fb59fb9672d1 +2019,Mendoza,II.1.1,581.7848399999999,TJ,N2O,3.9,kg/TJ,2268.9608759999996,Gas Oil combustion consumption by public passenger transport,AR-M,SESCO,annual,kg,ea8f07d6-e81a-31df-8606-fb59fb9672d1 +2019,Misiones,II.1.1,555.81456,TJ,CO2,74100.0,kg/TJ,41185858.896000005,Gas Oil combustion consumption by public passenger transport,AR-N,SESCO,annual,kg,9af098f0-36b5-3751-b0eb-4e5a3dde7e83 +2019,Misiones,II.1.1,555.81456,TJ,CH4,3.9,kg/TJ,2167.676784,Gas Oil combustion consumption by public passenger transport,AR-N,SESCO,annual,kg,18105cd7-d536-31ee-8b45-805f70b0f260 +2019,Misiones,II.1.1,555.81456,TJ,N2O,3.9,kg/TJ,2167.676784,Gas Oil combustion consumption by public passenger transport,AR-N,SESCO,annual,kg,18105cd7-d536-31ee-8b45-805f70b0f260 +2019,Neuquén,II.1.1,184.06752,TJ,CO2,74100.0,kg/TJ,13639403.232,Gas Oil combustion consumption by public passenger transport,AR-Q,SESCO,annual,kg,e5225983-f690-3e35-a584-f0aa46cdd62c +2019,Neuquén,II.1.1,184.06752,TJ,CH4,3.9,kg/TJ,717.863328,Gas Oil combustion consumption by public passenger transport,AR-Q,SESCO,annual,kg,d0f42e48-3ecf-3af2-9434-2734c04f4957 +2019,Neuquén,II.1.1,184.06752,TJ,N2O,3.9,kg/TJ,717.863328,Gas Oil combustion consumption by public passenger transport,AR-Q,SESCO,annual,kg,d0f42e48-3ecf-3af2-9434-2734c04f4957 +2019,Rio Negro,II.1.1,138.91752,TJ,CO2,74100.0,kg/TJ,10293788.231999999,Gas Oil combustion consumption by public passenger transport,AR-R,SESCO,annual,kg,185d2f09-b8ed-369c-bf45-f2a023cd6973 +2019,Rio Negro,II.1.1,138.91752,TJ,CH4,3.9,kg/TJ,541.778328,Gas Oil combustion consumption by public passenger transport,AR-R,SESCO,annual,kg,99723dac-6d57-3c65-a462-eb7dd2c2585f +2019,Rio Negro,II.1.1,138.91752,TJ,N2O,3.9,kg/TJ,541.778328,Gas Oil combustion consumption by public passenger transport,AR-R,SESCO,annual,kg,99723dac-6d57-3c65-a462-eb7dd2c2585f +2019,Salta,II.1.1,161.9982,TJ,CO2,74100.0,kg/TJ,12004066.62,Gas Oil combustion consumption by public passenger transport,AR-A,SESCO,annual,kg,0891698a-9a2a-3e24-8902-11e85fadf538 +2019,Salta,II.1.1,161.9982,TJ,CH4,3.9,kg/TJ,631.79298,Gas Oil combustion consumption by public passenger transport,AR-A,SESCO,annual,kg,0796a414-0662-3600-a079-cb29c5137ebb +2019,Salta,II.1.1,161.9982,TJ,N2O,3.9,kg/TJ,631.79298,Gas Oil combustion consumption by public passenger transport,AR-A,SESCO,annual,kg,0796a414-0662-3600-a079-cb29c5137ebb +2019,San Juan,II.1.1,152.75148,TJ,CO2,74100.0,kg/TJ,11318884.668,Gas Oil combustion consumption by public passenger transport,AR-J,SESCO,annual,kg,390e4c2c-eb54-33c1-8422-ce675321c903 +2019,San Juan,II.1.1,152.75148,TJ,CH4,3.9,kg/TJ,595.7307719999999,Gas Oil combustion consumption by public passenger transport,AR-J,SESCO,annual,kg,d7d6393a-b5b4-3982-b21b-a6c8432763fd +2019,San Juan,II.1.1,152.75148,TJ,N2O,3.9,kg/TJ,595.7307719999999,Gas Oil combustion consumption by public passenger transport,AR-J,SESCO,annual,kg,d7d6393a-b5b4-3982-b21b-a6c8432763fd +2019,San Luis,II.1.1,0.43344,TJ,CO2,74100.0,kg/TJ,32117.904,Gas Oil combustion consumption by public passenger transport,AR-D,SESCO,annual,kg,96053b10-8e79-3a3a-bdb1-6c67a6ed65ec +2019,San Luis,II.1.1,0.43344,TJ,CH4,3.9,kg/TJ,1.690416,Gas Oil combustion consumption by public passenger transport,AR-D,SESCO,annual,kg,dbdfd19c-3252-3a16-b67d-d3be159ce44e +2019,San Luis,II.1.1,0.43344,TJ,N2O,3.9,kg/TJ,1.690416,Gas Oil combustion consumption by public passenger transport,AR-D,SESCO,annual,kg,dbdfd19c-3252-3a16-b67d-d3be159ce44e +2019,Santa Cruz,II.1.1,0.25284,TJ,CO2,74100.0,kg/TJ,18735.444,Gas Oil combustion consumption by public passenger transport,AR-Z,SESCO,annual,kg,39bbf491-28db-33e6-a7e8-300990d78632 +2019,Santa Cruz,II.1.1,0.25284,TJ,CH4,3.9,kg/TJ,0.9860760000000001,Gas Oil combustion consumption by public passenger transport,AR-Z,SESCO,annual,kg,1be62ce1-8447-33c9-aa15-0f5306466980 +2019,Santa Cruz,II.1.1,0.25284,TJ,N2O,3.9,kg/TJ,0.9860760000000001,Gas Oil combustion consumption by public passenger transport,AR-Z,SESCO,annual,kg,1be62ce1-8447-33c9-aa15-0f5306466980 +2019,Santa Fe,II.1.1,251.61192,TJ,CO2,74100.0,kg/TJ,18644443.272,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,5a04b818-9701-3cba-bb07-6d9be467242c +2019,Santa Fe,II.1.1,251.61192,TJ,CH4,3.9,kg/TJ,981.286488,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,6736ee52-7108-3f12-bf0a-29a66cacca13 +2019,Santa Fe,II.1.1,251.61192,TJ,N2O,3.9,kg/TJ,981.286488,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,6736ee52-7108-3f12-bf0a-29a66cacca13 +2019,Santiago del Estero,II.1.1,2.13108,TJ,CO2,74100.0,kg/TJ,157913.028,Gas Oil combustion consumption by public passenger transport,AR-G,SESCO,annual,kg,b8da899e-a156-3ef4-b1c7-0fea1006cd58 +2019,Santiago del Estero,II.1.1,2.13108,TJ,CH4,3.9,kg/TJ,8.311212,Gas Oil combustion consumption by public passenger transport,AR-G,SESCO,annual,kg,6b499aa8-87f9-31d2-a311-dd7b61f5b1cf +2019,Santiago del Estero,II.1.1,2.13108,TJ,N2O,3.9,kg/TJ,8.311212,Gas Oil combustion consumption by public passenger transport,AR-G,SESCO,annual,kg,6b499aa8-87f9-31d2-a311-dd7b61f5b1cf +2019,Tierra del Fuego,II.1.1,10.72764,TJ,CO2,74100.0,kg/TJ,794918.124,Gas Oil combustion consumption by public passenger transport,AR-V,SESCO,annual,kg,37cbb780-f700-389e-af91-59842a421b16 +2019,Tierra del Fuego,II.1.1,10.72764,TJ,CH4,3.9,kg/TJ,41.837796,Gas Oil combustion consumption by public passenger transport,AR-V,SESCO,annual,kg,7273c0ff-9e71-3101-aa07-633b72c7ef61 +2019,Tierra del Fuego,II.1.1,10.72764,TJ,N2O,3.9,kg/TJ,41.837796,Gas Oil combustion consumption by public passenger transport,AR-V,SESCO,annual,kg,7273c0ff-9e71-3101-aa07-633b72c7ef61 +2019,Tucuman,II.1.1,22.394399999999997,TJ,CO2,74100.0,kg/TJ,1659425.0399999998,Gas Oil combustion consumption by public passenger transport,AR-T,SESCO,annual,kg,47449462-03f9-3d4d-b82d-e25053128e7b +2019,Tucuman,II.1.1,22.394399999999997,TJ,CH4,3.9,kg/TJ,87.33815999999999,Gas Oil combustion consumption by public passenger transport,AR-T,SESCO,annual,kg,d1710f49-e814-3d28-8bf5-0350ca2baf3f +2019,Tucuman,II.1.1,22.394399999999997,TJ,N2O,3.9,kg/TJ,87.33815999999999,Gas Oil combustion consumption by public passenger transport,AR-T,SESCO,annual,kg,d1710f49-e814-3d28-8bf5-0350ca2baf3f +2019,Buenos Aires,II.1.1,2418.01728,TJ,CO2,74100.0,kg/TJ,179175080.448,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,9de3a566-1e22-3156-8a77-e304a799ec9b +2019,Buenos Aires,II.1.1,2418.01728,TJ,CH4,3.9,kg/TJ,9430.267392,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,e3eaff03-021c-32cf-9640-cd04896d80fe +2019,Buenos Aires,II.1.1,2418.01728,TJ,N2O,3.9,kg/TJ,9430.267392,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,e3eaff03-021c-32cf-9640-cd04896d80fe +2019,Capital Federal,II.1.1,382.25795999999997,TJ,CO2,74100.0,kg/TJ,28325314.836,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,dc6d1da7-4b25-3c97-a549-092b142e6199 +2019,Capital Federal,II.1.1,382.25795999999997,TJ,CH4,3.9,kg/TJ,1490.806044,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,f5044372-64d9-3e8c-a8bf-6cfbf1a6f41a +2019,Capital Federal,II.1.1,382.25795999999997,TJ,N2O,3.9,kg/TJ,1490.806044,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,f5044372-64d9-3e8c-a8bf-6cfbf1a6f41a +2019,Catamarca,II.1.1,0.03612,TJ,CO2,74100.0,kg/TJ,2676.4919999999997,Gas Oil combustion consumption by public passenger transport,AR-K,SESCO,annual,kg,140c2e54-8df5-3d8a-b1d9-d5696587ecec +2019,Catamarca,II.1.1,0.03612,TJ,CH4,3.9,kg/TJ,0.140868,Gas Oil combustion consumption by public passenger transport,AR-K,SESCO,annual,kg,225e3c3d-be2d-39ad-9ca1-9a35df58990a +2019,Catamarca,II.1.1,0.03612,TJ,N2O,3.9,kg/TJ,0.140868,Gas Oil combustion consumption by public passenger transport,AR-K,SESCO,annual,kg,225e3c3d-be2d-39ad-9ca1-9a35df58990a +2019,Chaco,II.1.1,27.523439999999997,TJ,CO2,74100.0,kg/TJ,2039486.9039999999,Gas Oil combustion consumption by public passenger transport,AR-H,SESCO,annual,kg,9b3133f4-5f42-3eb8-9c4c-4e8d1758922b +2019,Chaco,II.1.1,27.523439999999997,TJ,CH4,3.9,kg/TJ,107.34141599999998,Gas Oil combustion consumption by public passenger transport,AR-H,SESCO,annual,kg,1d9525fb-2a64-3ce1-8815-b9633d5bccb8 +2019,Chaco,II.1.1,27.523439999999997,TJ,N2O,3.9,kg/TJ,107.34141599999998,Gas Oil combustion consumption by public passenger transport,AR-H,SESCO,annual,kg,1d9525fb-2a64-3ce1-8815-b9633d5bccb8 +2019,Chubut,II.1.1,24.453239999999997,TJ,CO2,74100.0,kg/TJ,1811985.0839999998,Gas Oil combustion consumption by public passenger transport,AR-U,SESCO,annual,kg,bff6b4f8-bbe2-3e07-867d-10cbc382a7dc +2019,Chubut,II.1.1,24.453239999999997,TJ,CH4,3.9,kg/TJ,95.36763599999999,Gas Oil combustion consumption by public passenger transport,AR-U,SESCO,annual,kg,63917d91-af19-3837-a71f-b0bacb47a1c2 +2019,Chubut,II.1.1,24.453239999999997,TJ,N2O,3.9,kg/TJ,95.36763599999999,Gas Oil combustion consumption by public passenger transport,AR-U,SESCO,annual,kg,63917d91-af19-3837-a71f-b0bacb47a1c2 +2019,Corrientes,II.1.1,33.411,TJ,CO2,74100.0,kg/TJ,2475755.1,Gas Oil combustion consumption by public passenger transport,AR-W,SESCO,annual,kg,46291356-75f5-3121-ab7d-d13e9c57830a +2019,Corrientes,II.1.1,33.411,TJ,CH4,3.9,kg/TJ,130.3029,Gas Oil combustion consumption by public passenger transport,AR-W,SESCO,annual,kg,685beb72-320e-3b1b-8548-3974d0259a21 +2019,Corrientes,II.1.1,33.411,TJ,N2O,3.9,kg/TJ,130.3029,Gas Oil combustion consumption by public passenger transport,AR-W,SESCO,annual,kg,685beb72-320e-3b1b-8548-3974d0259a21 +2019,Córdoba,II.1.1,253.743,TJ,CO2,74100.0,kg/TJ,18802356.3,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,46976f56-1a66-3385-b6b4-8415aff385fe +2019,Córdoba,II.1.1,253.743,TJ,CH4,3.9,kg/TJ,989.5976999999999,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,267e142f-b7e5-3c22-b226-0c5e306d2387 +2019,Córdoba,II.1.1,253.743,TJ,N2O,3.9,kg/TJ,989.5976999999999,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,267e142f-b7e5-3c22-b226-0c5e306d2387 +2019,Entre Rios,II.1.1,38.79288,TJ,CO2,74100.0,kg/TJ,2874552.408,Gas Oil combustion consumption by public passenger transport,AR-E,SESCO,annual,kg,9f49d432-54a9-39e3-a175-d0f0b0794b45 +2019,Entre Rios,II.1.1,38.79288,TJ,CH4,3.9,kg/TJ,151.29223199999998,Gas Oil combustion consumption by public passenger transport,AR-E,SESCO,annual,kg,11e2808d-23bd-3ac4-a15f-1ac62afedc24 +2019,Entre Rios,II.1.1,38.79288,TJ,N2O,3.9,kg/TJ,151.29223199999998,Gas Oil combustion consumption by public passenger transport,AR-E,SESCO,annual,kg,11e2808d-23bd-3ac4-a15f-1ac62afedc24 +2019,Formosa,II.1.1,0.18059999999999998,TJ,CO2,74100.0,kg/TJ,13382.46,Gas Oil combustion consumption by public passenger transport,AR-P,SESCO,annual,kg,a083552d-1b09-3c36-bb89-35c021a7774c +2019,Formosa,II.1.1,0.18059999999999998,TJ,CH4,3.9,kg/TJ,0.70434,Gas Oil combustion consumption by public passenger transport,AR-P,SESCO,annual,kg,ceb633e2-1818-3602-aff1-9b3c4df5859e +2019,Formosa,II.1.1,0.18059999999999998,TJ,N2O,3.9,kg/TJ,0.70434,Gas Oil combustion consumption by public passenger transport,AR-P,SESCO,annual,kg,ceb633e2-1818-3602-aff1-9b3c4df5859e +2019,Jujuy,II.1.1,1.15584,TJ,CO2,74100.0,kg/TJ,85647.74399999999,Gas Oil combustion consumption by public passenger transport,AR-Y,SESCO,annual,kg,63e8a57b-41a7-3ee2-9758-f56c16bcb744 +2019,Jujuy,II.1.1,1.15584,TJ,CH4,3.9,kg/TJ,4.507776,Gas Oil combustion consumption by public passenger transport,AR-Y,SESCO,annual,kg,582fd3d4-7c10-37b5-923f-ff315fecf0a8 +2019,Jujuy,II.1.1,1.15584,TJ,N2O,3.9,kg/TJ,4.507776,Gas Oil combustion consumption by public passenger transport,AR-Y,SESCO,annual,kg,582fd3d4-7c10-37b5-923f-ff315fecf0a8 +2019,La Rioja,II.1.1,3.5758799999999997,TJ,CO2,74100.0,kg/TJ,264972.708,Gas Oil combustion consumption by public passenger transport,AR-F,SESCO,annual,kg,5884722f-e6d9-3c84-8179-7b03d417a628 +2019,La Rioja,II.1.1,3.5758799999999997,TJ,CH4,3.9,kg/TJ,13.945931999999999,Gas Oil combustion consumption by public passenger transport,AR-F,SESCO,annual,kg,55adfe74-542c-37b5-813c-b1f445fe3d71 +2019,La Rioja,II.1.1,3.5758799999999997,TJ,N2O,3.9,kg/TJ,13.945931999999999,Gas Oil combustion consumption by public passenger transport,AR-F,SESCO,annual,kg,55adfe74-542c-37b5-813c-b1f445fe3d71 +2019,Mendoza,II.1.1,169.33056,TJ,CO2,74100.0,kg/TJ,12547394.496,Gas Oil combustion consumption by public passenger transport,AR-M,SESCO,annual,kg,b0101a51-b29b-3a0d-9f04-6874a3f2f9f5 +2019,Mendoza,II.1.1,169.33056,TJ,CH4,3.9,kg/TJ,660.389184,Gas Oil combustion consumption by public passenger transport,AR-M,SESCO,annual,kg,dafc1967-da74-311d-879b-b95cc19efff7 +2019,Mendoza,II.1.1,169.33056,TJ,N2O,3.9,kg/TJ,660.389184,Gas Oil combustion consumption by public passenger transport,AR-M,SESCO,annual,kg,dafc1967-da74-311d-879b-b95cc19efff7 +2019,Misiones,II.1.1,90.98628,TJ,CO2,74100.0,kg/TJ,6742083.347999999,Gas Oil combustion consumption by public passenger transport,AR-N,SESCO,annual,kg,908ba98e-cbe7-3add-923c-bcddd142d59f +2019,Misiones,II.1.1,90.98628,TJ,CH4,3.9,kg/TJ,354.84649199999996,Gas Oil combustion consumption by public passenger transport,AR-N,SESCO,annual,kg,05a4b105-5546-3985-9140-85cfa1cf4791 +2019,Misiones,II.1.1,90.98628,TJ,N2O,3.9,kg/TJ,354.84649199999996,Gas Oil combustion consumption by public passenger transport,AR-N,SESCO,annual,kg,05a4b105-5546-3985-9140-85cfa1cf4791 +2019,Neuquén,II.1.1,29.979599999999998,TJ,CO2,74100.0,kg/TJ,2221488.36,Gas Oil combustion consumption by public passenger transport,AR-Q,SESCO,annual,kg,e1c43453-3e68-3517-b7cd-1a101957e180 +2019,Neuquén,II.1.1,29.979599999999998,TJ,CH4,3.9,kg/TJ,116.92043999999999,Gas Oil combustion consumption by public passenger transport,AR-Q,SESCO,annual,kg,4d1b979d-0c57-3723-94ae-f2786d4c6fc0 +2019,Neuquén,II.1.1,29.979599999999998,TJ,N2O,3.9,kg/TJ,116.92043999999999,Gas Oil combustion consumption by public passenger transport,AR-Q,SESCO,annual,kg,4d1b979d-0c57-3723-94ae-f2786d4c6fc0 +2019,Rio Negro,II.1.1,178.64952,TJ,CO2,74100.0,kg/TJ,13237929.432,Gas Oil combustion consumption by public passenger transport,AR-R,SESCO,annual,kg,78025e22-2120-33d9-bcf5-0465b28ee012 +2019,Rio Negro,II.1.1,178.64952,TJ,CH4,3.9,kg/TJ,696.733128,Gas Oil combustion consumption by public passenger transport,AR-R,SESCO,annual,kg,c65370b2-bd85-3ccb-aa48-2be4bfa87398 +2019,Rio Negro,II.1.1,178.64952,TJ,N2O,3.9,kg/TJ,696.733128,Gas Oil combustion consumption by public passenger transport,AR-R,SESCO,annual,kg,c65370b2-bd85-3ccb-aa48-2be4bfa87398 +2019,Salta,II.1.1,70.434,TJ,CO2,74100.0,kg/TJ,5219159.399999999,Gas Oil combustion consumption by public passenger transport,AR-A,SESCO,annual,kg,312ffdb5-9706-3174-864e-88d37f10a59d +2019,Salta,II.1.1,70.434,TJ,CH4,3.9,kg/TJ,274.69259999999997,Gas Oil combustion consumption by public passenger transport,AR-A,SESCO,annual,kg,7119b1e3-db76-37d0-ba63-43a2470bced5 +2019,Salta,II.1.1,70.434,TJ,N2O,3.9,kg/TJ,274.69259999999997,Gas Oil combustion consumption by public passenger transport,AR-A,SESCO,annual,kg,7119b1e3-db76-37d0-ba63-43a2470bced5 +2019,San Juan,II.1.1,108.21552,TJ,CO2,74100.0,kg/TJ,8018770.032,Gas Oil combustion consumption by public passenger transport,AR-J,SESCO,annual,kg,106ec212-e22e-30c8-9601-b5f966d667cc +2019,San Juan,II.1.1,108.21552,TJ,CH4,3.9,kg/TJ,422.040528,Gas Oil combustion consumption by public passenger transport,AR-J,SESCO,annual,kg,cc4e2452-8fd7-344c-a701-12922823c4fd +2019,San Juan,II.1.1,108.21552,TJ,N2O,3.9,kg/TJ,422.040528,Gas Oil combustion consumption by public passenger transport,AR-J,SESCO,annual,kg,cc4e2452-8fd7-344c-a701-12922823c4fd +2019,San Luis,II.1.1,1.30032,TJ,CO2,74100.0,kg/TJ,96353.712,Gas Oil combustion consumption by public passenger transport,AR-D,SESCO,annual,kg,7dfdc783-fa17-35e5-92fa-45d5ab69436e +2019,San Luis,II.1.1,1.30032,TJ,CH4,3.9,kg/TJ,5.071248,Gas Oil combustion consumption by public passenger transport,AR-D,SESCO,annual,kg,66fcab3a-a8ce-3e45-8c9b-7ed8bdc3ab69 +2019,San Luis,II.1.1,1.30032,TJ,N2O,3.9,kg/TJ,5.071248,Gas Oil combustion consumption by public passenger transport,AR-D,SESCO,annual,kg,66fcab3a-a8ce-3e45-8c9b-7ed8bdc3ab69 +2019,Santa Cruz,II.1.1,0.03612,TJ,CO2,74100.0,kg/TJ,2676.4919999999997,Gas Oil combustion consumption by public passenger transport,AR-Z,SESCO,annual,kg,0a4f77ce-5e6c-3e44-ae37-2d8392a0fda4 +2019,Santa Cruz,II.1.1,0.03612,TJ,CH4,3.9,kg/TJ,0.140868,Gas Oil combustion consumption by public passenger transport,AR-Z,SESCO,annual,kg,f44d0187-48a6-3dee-8e71-89c418ca2cbb +2019,Santa Cruz,II.1.1,0.03612,TJ,N2O,3.9,kg/TJ,0.140868,Gas Oil combustion consumption by public passenger transport,AR-Z,SESCO,annual,kg,f44d0187-48a6-3dee-8e71-89c418ca2cbb +2019,Santa Fe,II.1.1,107.0958,TJ,CO2,74100.0,kg/TJ,7935798.779999999,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,fa9264af-56ce-3666-82b1-3932f92566de +2019,Santa Fe,II.1.1,107.0958,TJ,CH4,3.9,kg/TJ,417.67361999999997,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,c976ca01-fbc6-35ec-805e-98ac0160ddc7 +2019,Santa Fe,II.1.1,107.0958,TJ,N2O,3.9,kg/TJ,417.67361999999997,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,c976ca01-fbc6-35ec-805e-98ac0160ddc7 +2019,Santiago del Estero,II.1.1,0.25284,TJ,CO2,74100.0,kg/TJ,18735.444,Gas Oil combustion consumption by public passenger transport,AR-G,SESCO,annual,kg,c7f526d4-ac8e-3c70-9e68-f08d00e98648 +2019,Santiago del Estero,II.1.1,0.25284,TJ,CH4,3.9,kg/TJ,0.9860760000000001,Gas Oil combustion consumption by public passenger transport,AR-G,SESCO,annual,kg,342a07b4-7879-3cca-9b00-0750ddb1106d +2019,Santiago del Estero,II.1.1,0.25284,TJ,N2O,3.9,kg/TJ,0.9860760000000001,Gas Oil combustion consumption by public passenger transport,AR-G,SESCO,annual,kg,342a07b4-7879-3cca-9b00-0750ddb1106d +2019,Tierra del Fuego,II.1.1,0.14448,TJ,CO2,74100.0,kg/TJ,10705.967999999999,Gas Oil combustion consumption by public passenger transport,AR-V,SESCO,annual,kg,4ef96b29-c32b-3a3e-95d2-98274c169e7b +2019,Tierra del Fuego,II.1.1,0.14448,TJ,CH4,3.9,kg/TJ,0.563472,Gas Oil combustion consumption by public passenger transport,AR-V,SESCO,annual,kg,54ef623a-9bab-3973-bbac-b2f52529085b +2019,Tierra del Fuego,II.1.1,0.14448,TJ,N2O,3.9,kg/TJ,0.563472,Gas Oil combustion consumption by public passenger transport,AR-V,SESCO,annual,kg,54ef623a-9bab-3973-bbac-b2f52529085b +2019,Tucuman,II.1.1,1.9866,TJ,CO2,74100.0,kg/TJ,147207.06,Gas Oil combustion consumption by public passenger transport,AR-T,SESCO,annual,kg,26ca530e-2f69-3315-8a4f-7645b3d2aa98 +2019,Tucuman,II.1.1,1.9866,TJ,CH4,3.9,kg/TJ,7.747739999999999,Gas Oil combustion consumption by public passenger transport,AR-T,SESCO,annual,kg,724e8652-b7e8-3281-b85c-55cd084c1570 +2019,Tucuman,II.1.1,1.9866,TJ,N2O,3.9,kg/TJ,7.747739999999999,Gas Oil combustion consumption by public passenger transport,AR-T,SESCO,annual,kg,724e8652-b7e8-3281-b85c-55cd084c1570 +2020,Buenos Aires,II.5.1,557.346048,TJ,CO2,74100.0,kg/TJ,41299342.1568,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,1d81e84d-792f-3120-94f5-4399d55c8073 +2020,Buenos Aires,II.5.1,557.346048,TJ,CH4,3.9,kg/TJ,2173.6495872,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,592f684c-6c79-3429-b770-6998bb6565de +2020,Buenos Aires,II.5.1,557.346048,TJ,N2O,3.9,kg/TJ,2173.6495872,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,592f684c-6c79-3429-b770-6998bb6565de +2020,Chaco,II.5.1,1.3364399999999999,TJ,CO2,74100.0,kg/TJ,99030.20399999998,Gas Oil combustion consumption by agriculture machines,AR-H,SESCO,annual,kg,2d538771-c67e-3208-93ba-76f376e5912d +2020,Chaco,II.5.1,1.3364399999999999,TJ,CH4,3.9,kg/TJ,5.212115999999999,Gas Oil combustion consumption by agriculture machines,AR-H,SESCO,annual,kg,18a65a41-5aad-3807-80bb-9f87871814f5 +2020,Chaco,II.5.1,1.3364399999999999,TJ,N2O,3.9,kg/TJ,5.212115999999999,Gas Oil combustion consumption by agriculture machines,AR-H,SESCO,annual,kg,18a65a41-5aad-3807-80bb-9f87871814f5 +2020,Córdoba,II.5.1,128.771412,TJ,CO2,74100.0,kg/TJ,9541961.6292,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,10fd97a3-c4b8-34b9-91b0-9625ae5f20c8 +2020,Córdoba,II.5.1,128.771412,TJ,CH4,3.9,kg/TJ,502.20850679999995,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,0158f0dc-ad29-3f77-9bcf-bc9b72a0bb53 +2020,Córdoba,II.5.1,128.771412,TJ,N2O,3.9,kg/TJ,502.20850679999995,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,0158f0dc-ad29-3f77-9bcf-bc9b72a0bb53 +2020,Entre Rios,II.5.1,8.488199999999999,TJ,CO2,74100.0,kg/TJ,628975.6199999999,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,59a7b395-9422-3c86-a656-075c034cf8ec +2020,Entre Rios,II.5.1,8.488199999999999,TJ,CH4,3.9,kg/TJ,33.10397999999999,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,8340b94a-7289-3bd3-bb2b-79d9797ebffb +2020,Entre Rios,II.5.1,8.488199999999999,TJ,N2O,3.9,kg/TJ,33.10397999999999,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,8340b94a-7289-3bd3-bb2b-79d9797ebffb +2020,La Pampa,II.5.1,51.861095999999996,TJ,CO2,74100.0,kg/TJ,3842907.2136,Gas Oil combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,e0a18223-f0c7-3cc1-9ee0-1701d69eae26 +2020,La Pampa,II.5.1,51.861095999999996,TJ,CH4,3.9,kg/TJ,202.25827439999998,Gas Oil combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,c9ea5e9f-51e1-37e4-a291-00b03c3e7054 +2020,La Pampa,II.5.1,51.861095999999996,TJ,N2O,3.9,kg/TJ,202.25827439999998,Gas Oil combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,c9ea5e9f-51e1-37e4-a291-00b03c3e7054 +2020,Santa Fe,II.5.1,212.118312,TJ,CO2,74100.0,kg/TJ,15717966.9192,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,5942317b-1d92-3cac-b1d0-7b97e59c9990 +2020,Santa Fe,II.5.1,212.118312,TJ,CH4,3.9,kg/TJ,827.2614168,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,90463ba7-93e7-3375-8217-282f3dee3983 +2020,Santa Fe,II.5.1,212.118312,TJ,N2O,3.9,kg/TJ,827.2614168,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,90463ba7-93e7-3375-8217-282f3dee3983 +2020,Buenos Aires,II.5.1,12.064079999999999,TJ,CO2,74100.0,kg/TJ,893948.3279999999,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,981a3ead-b103-371c-a733-9088578f72d3 +2020,Buenos Aires,II.5.1,12.064079999999999,TJ,CH4,3.9,kg/TJ,47.04991199999999,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,19b4210a-0131-39cf-a2c4-b48a94264d4d +2020,Buenos Aires,II.5.1,12.064079999999999,TJ,N2O,3.9,kg/TJ,47.04991199999999,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,19b4210a-0131-39cf-a2c4-b48a94264d4d +2020,Córdoba,II.5.1,1.8385079999999998,TJ,CO2,74100.0,kg/TJ,136233.4428,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,d43cf989-e052-3289-9fe7-d9de62211b45 +2020,Córdoba,II.5.1,1.8385079999999998,TJ,CH4,3.9,kg/TJ,7.170181199999999,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,5dfa3c58-7bee-3358-8aaf-640b64a8d3ea +2020,Córdoba,II.5.1,1.8385079999999998,TJ,N2O,3.9,kg/TJ,7.170181199999999,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,5dfa3c58-7bee-3358-8aaf-640b64a8d3ea +2020,Santa Fe,II.5.1,3.21468,TJ,CO2,74100.0,kg/TJ,238207.788,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,8e098029-7203-30cf-9afa-91fd9c976a3e +2020,Santa Fe,II.5.1,3.21468,TJ,CH4,3.9,kg/TJ,12.537252,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,cbecbe1b-5469-377c-baf6-9a5fe1d68181 +2020,Santa Fe,II.5.1,3.21468,TJ,N2O,3.9,kg/TJ,12.537252,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,cbecbe1b-5469-377c-baf6-9a5fe1d68181 +2020,Buenos Aires,II.5.1,2.3985499999999997,TJ,CO2,73300.0,kg/TJ,175813.71499999997,Naphtha combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,62b95bc9-a72e-356e-be0e-7e6dfa633187 +2020,Buenos Aires,II.5.1,2.3985499999999997,TJ,CH4,0.5,kg/TJ,1.1992749999999999,Naphtha combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,e011e1f3-701f-3a8c-b1f6-56a969174671 +2020,Buenos Aires,II.5.1,2.3985499999999997,TJ,N2O,2.0,kg/TJ,4.7970999999999995,Naphtha combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,808757e2-1c27-36ce-b613-ab40f4a6fd13 +2020,Santa Fe,II.5.1,1.09648,TJ,CO2,73300.0,kg/TJ,80371.984,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,2b770864-3570-3947-98ac-f5d84a309f12 +2020,Santa Fe,II.5.1,1.09648,TJ,CH4,0.5,kg/TJ,0.54824,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,ef6ab5b9-5681-345f-8454-5342f959cef4 +2020,Santa Fe,II.5.1,1.09648,TJ,N2O,2.0,kg/TJ,2.19296,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,d8c0616f-3ea4-3b92-be5d-19dea7c06e72 +2020,Buenos Aires,II.5.1,0.513975,TJ,CO2,73300.0,kg/TJ,37674.3675,Naphtha combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,3d64058a-6445-3ce0-8ea9-0aa3f4d612db +2020,Buenos Aires,II.5.1,0.513975,TJ,CH4,0.5,kg/TJ,0.2569875,Naphtha combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,afd509f5-8614-3b93-8b22-a99bbe603e73 +2020,Buenos Aires,II.5.1,0.513975,TJ,N2O,2.0,kg/TJ,1.02795,Naphtha combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,6b35539c-6161-3845-9921-d1eb415e5ada +2020,Buenos Aires,II.5.1,3.8648399999999996,TJ,CO2,74100.0,kg/TJ,286384.644,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,3d500374-8eb9-3a36-98d3-0f009ce56edf +2020,Buenos Aires,II.5.1,3.8648399999999996,TJ,CH4,3.9,kg/TJ,15.072875999999997,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,a83d2426-75cc-32b5-a44a-56523639f5ee +2020,Buenos Aires,II.5.1,3.8648399999999996,TJ,N2O,3.9,kg/TJ,15.072875999999997,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,a83d2426-75cc-32b5-a44a-56523639f5ee +2020,Buenos Aires,II.5.1,394.9722,TJ,CO2,74100.0,kg/TJ,29267440.02,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,26ca6970-5091-3b9a-8a39-33ef7b2ab8b6 +2020,Buenos Aires,II.5.1,394.9722,TJ,CH4,3.9,kg/TJ,1540.39158,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,4e1b105c-bf30-350d-8003-b45eeb74b6d0 +2020,Buenos Aires,II.5.1,394.9722,TJ,N2O,3.9,kg/TJ,1540.39158,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,4e1b105c-bf30-350d-8003-b45eeb74b6d0 +2020,Chaco,II.5.1,46.66704,TJ,CO2,74100.0,kg/TJ,3458027.664,Gas Oil combustion consumption by agriculture machines,AR-H,SESCO,annual,kg,2eef4a35-9228-3aed-99c1-bed99aeb7733 +2020,Chaco,II.5.1,46.66704,TJ,CH4,3.9,kg/TJ,182.001456,Gas Oil combustion consumption by agriculture machines,AR-H,SESCO,annual,kg,6cedeb47-f754-314c-b42f-6bb859341bab +2020,Chaco,II.5.1,46.66704,TJ,N2O,3.9,kg/TJ,182.001456,Gas Oil combustion consumption by agriculture machines,AR-H,SESCO,annual,kg,6cedeb47-f754-314c-b42f-6bb859341bab +2020,Córdoba,II.5.1,888.0101999999999,TJ,CO2,74100.0,kg/TJ,65801555.81999999,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,65d860bb-ff96-3d46-b3ae-9c392b6e639b +2020,Córdoba,II.5.1,888.0101999999999,TJ,CH4,3.9,kg/TJ,3463.23978,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,e5658a0b-77cc-3728-a2e8-1091e3fb8a4c +2020,Córdoba,II.5.1,888.0101999999999,TJ,N2O,3.9,kg/TJ,3463.23978,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,e5658a0b-77cc-3728-a2e8-1091e3fb8a4c +2020,Entre Rios,II.5.1,190.82196,TJ,CO2,74100.0,kg/TJ,14139907.236,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,254b9aa4-2d9a-3dfa-abac-a8f19ea01075 +2020,Entre Rios,II.5.1,190.82196,TJ,CH4,3.9,kg/TJ,744.2056439999999,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,8bd4edbf-d9ab-3d0c-8d14-3fae05be2ebc +2020,Entre Rios,II.5.1,190.82196,TJ,N2O,3.9,kg/TJ,744.2056439999999,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,8bd4edbf-d9ab-3d0c-8d14-3fae05be2ebc +2020,Mendoza,II.5.1,0.86688,TJ,CO2,74100.0,kg/TJ,64235.808,Gas Oil combustion consumption by agriculture machines,AR-M,SESCO,annual,kg,2576cf7e-22a2-39e2-894e-02eb9f5f126a +2020,Mendoza,II.5.1,0.86688,TJ,CH4,3.9,kg/TJ,3.380832,Gas Oil combustion consumption by agriculture machines,AR-M,SESCO,annual,kg,da7296c1-f429-32d7-814f-64d319b240ce +2020,Mendoza,II.5.1,0.86688,TJ,N2O,3.9,kg/TJ,3.380832,Gas Oil combustion consumption by agriculture machines,AR-M,SESCO,annual,kg,da7296c1-f429-32d7-814f-64d319b240ce +2020,Salta,II.5.1,90.3,TJ,CO2,74100.0,kg/TJ,6691230.0,Gas Oil combustion consumption by agriculture machines,AR-A,SESCO,annual,kg,ff3c55c7-4c81-3685-b579-3c9c3dc86517 +2020,Salta,II.5.1,90.3,TJ,CH4,3.9,kg/TJ,352.16999999999996,Gas Oil combustion consumption by agriculture machines,AR-A,SESCO,annual,kg,b825383b-89dd-368e-822b-067b57ed900c +2020,Salta,II.5.1,90.3,TJ,N2O,3.9,kg/TJ,352.16999999999996,Gas Oil combustion consumption by agriculture machines,AR-A,SESCO,annual,kg,b825383b-89dd-368e-822b-067b57ed900c +2020,Santa Cruz,II.5.1,9.7524,TJ,CO2,74100.0,kg/TJ,722652.84,Gas Oil combustion consumption by agriculture machines,AR-Z,SESCO,annual,kg,37c1c0b8-4fe1-3c86-9e09-e9158589a8ef +2020,Santa Cruz,II.5.1,9.7524,TJ,CH4,3.9,kg/TJ,38.03436,Gas Oil combustion consumption by agriculture machines,AR-Z,SESCO,annual,kg,18a5e169-0f81-33e4-994d-89782494e503 +2020,Santa Cruz,II.5.1,9.7524,TJ,N2O,3.9,kg/TJ,38.03436,Gas Oil combustion consumption by agriculture machines,AR-Z,SESCO,annual,kg,18a5e169-0f81-33e4-994d-89782494e503 +2020,Santa Fe,II.5.1,113.27232,TJ,CO2,74100.0,kg/TJ,8393478.911999999,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,64c69aa6-1661-3584-9292-d56009b9f062 +2020,Santa Fe,II.5.1,113.27232,TJ,CH4,3.9,kg/TJ,441.76204799999994,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,d424dd51-a568-3416-9f10-be5737243e0e +2020,Santa Fe,II.5.1,113.27232,TJ,N2O,3.9,kg/TJ,441.76204799999994,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,d424dd51-a568-3416-9f10-be5737243e0e +2020,Buenos Aires,II.5.1,6.321,TJ,CO2,74100.0,kg/TJ,468386.1,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,45ec0113-eb15-3e05-9a0d-cf8cb1982d0f +2020,Buenos Aires,II.5.1,6.321,TJ,CH4,3.9,kg/TJ,24.651899999999998,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,a31662e9-bde3-3fe4-84b5-e311734dc31e +2020,Buenos Aires,II.5.1,6.321,TJ,N2O,3.9,kg/TJ,24.651899999999998,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,a31662e9-bde3-3fe4-84b5-e311734dc31e +2020,Chaco,II.5.1,4.94844,TJ,CO2,74100.0,kg/TJ,366679.404,Gas Oil combustion consumption by agriculture machines,AR-H,SESCO,annual,kg,286d5568-56a7-3917-a03c-91822548755b +2020,Chaco,II.5.1,4.94844,TJ,CH4,3.9,kg/TJ,19.298916,Gas Oil combustion consumption by agriculture machines,AR-H,SESCO,annual,kg,1226241e-1961-3b4c-b143-e93f8766ea44 +2020,Chaco,II.5.1,4.94844,TJ,N2O,3.9,kg/TJ,19.298916,Gas Oil combustion consumption by agriculture machines,AR-H,SESCO,annual,kg,1226241e-1961-3b4c-b143-e93f8766ea44 +2020,Córdoba,II.5.1,8.27148,TJ,CO2,74100.0,kg/TJ,612916.6680000001,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,96b4a61d-bca2-3d74-9cb6-65b732a1d7e7 +2020,Córdoba,II.5.1,8.27148,TJ,CH4,3.9,kg/TJ,32.258772,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,df8a1658-99de-3194-ba56-f7dd53c74347 +2020,Córdoba,II.5.1,8.27148,TJ,N2O,3.9,kg/TJ,32.258772,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,df8a1658-99de-3194-ba56-f7dd53c74347 +2020,Entre Rios,II.5.1,3.50364,TJ,CO2,74100.0,kg/TJ,259619.724,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,bc6f3940-95da-367c-9f0e-c141b5f09022 +2020,Entre Rios,II.5.1,3.50364,TJ,CH4,3.9,kg/TJ,13.664195999999999,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,4ee88f00-2fbf-3c9e-90c9-b88144c1b68e +2020,Entre Rios,II.5.1,3.50364,TJ,N2O,3.9,kg/TJ,13.664195999999999,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,4ee88f00-2fbf-3c9e-90c9-b88144c1b68e +2020,Mendoza,II.5.1,0.14448,TJ,CO2,74100.0,kg/TJ,10705.967999999999,Gas Oil combustion consumption by agriculture machines,AR-M,SESCO,annual,kg,28483856-f024-394b-89ce-546ad736eecc +2020,Mendoza,II.5.1,0.14448,TJ,CH4,3.9,kg/TJ,0.563472,Gas Oil combustion consumption by agriculture machines,AR-M,SESCO,annual,kg,6d268421-959e-3eb8-8ba8-9e01783c0981 +2020,Mendoza,II.5.1,0.14448,TJ,N2O,3.9,kg/TJ,0.563472,Gas Oil combustion consumption by agriculture machines,AR-M,SESCO,annual,kg,6d268421-959e-3eb8-8ba8-9e01783c0981 +2020,Santa Cruz,II.5.1,0.36119999999999997,TJ,CO2,74100.0,kg/TJ,26764.92,Gas Oil combustion consumption by agriculture machines,AR-Z,SESCO,annual,kg,9399cb42-b9fb-32c2-a73d-40a4f3d02d33 +2020,Santa Cruz,II.5.1,0.36119999999999997,TJ,CH4,3.9,kg/TJ,1.40868,Gas Oil combustion consumption by agriculture machines,AR-Z,SESCO,annual,kg,62277ce9-acb6-3f4e-b743-b0dfe9954d5c +2020,Santa Cruz,II.5.1,0.36119999999999997,TJ,N2O,3.9,kg/TJ,1.40868,Gas Oil combustion consumption by agriculture machines,AR-Z,SESCO,annual,kg,62277ce9-acb6-3f4e-b743-b0dfe9954d5c +2020,Santa Fe,II.5.1,3.64812,TJ,CO2,74100.0,kg/TJ,270325.692,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,f5cac53c-5a26-3804-8f9f-c6e2052a639a +2020,Santa Fe,II.5.1,3.64812,TJ,CH4,3.9,kg/TJ,14.227668,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,2fbd3690-290f-3e85-bb94-f8df0d44ecf9 +2020,Santa Fe,II.5.1,3.64812,TJ,N2O,3.9,kg/TJ,14.227668,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,2fbd3690-290f-3e85-bb94-f8df0d44ecf9 +2020,Chaco,II.5.1,15.28219,TJ,CO2,73300.0,kg/TJ,1120184.527,Naphtha combustion consumption by agriculture machines,AR-H,SESCO,annual,kg,6cfc228e-18c3-34ce-91e6-8b3db76956fd +2020,Chaco,II.5.1,15.28219,TJ,CH4,0.5,kg/TJ,7.641095,Naphtha combustion consumption by agriculture machines,AR-H,SESCO,annual,kg,32d2cd78-828a-3fd7-b7d2-deb6be4f3fc9 +2020,Chaco,II.5.1,15.28219,TJ,N2O,2.0,kg/TJ,30.56438,Naphtha combustion consumption by agriculture machines,AR-H,SESCO,annual,kg,75c304bc-160b-3ab9-990a-95da2bce3338 +2020,Córdoba,II.5.1,10.724945,TJ,CO2,73300.0,kg/TJ,786138.4685,Naphtha combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,105f15e6-d4ce-3b45-9a71-10ab24be575a +2020,Córdoba,II.5.1,10.724945,TJ,CH4,0.5,kg/TJ,5.3624725,Naphtha combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,84896bf6-986f-3395-8578-72a1e6cecb35 +2020,Córdoba,II.5.1,10.724945,TJ,N2O,2.0,kg/TJ,21.44989,Naphtha combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,52c9f0ab-08dd-3bf1-ad63-eb8dcac71d91 +2020,Mendoza,II.5.1,3.56356,TJ,CO2,73300.0,kg/TJ,261208.94799999997,Naphtha combustion consumption by agriculture machines,AR-M,SESCO,annual,kg,0fc47864-a832-303a-9b33-7efb48956a01 +2020,Mendoza,II.5.1,3.56356,TJ,CH4,0.5,kg/TJ,1.78178,Naphtha combustion consumption by agriculture machines,AR-M,SESCO,annual,kg,b542b07a-15a9-32e1-8bec-db7521f94756 +2020,Mendoza,II.5.1,3.56356,TJ,N2O,2.0,kg/TJ,7.12712,Naphtha combustion consumption by agriculture machines,AR-M,SESCO,annual,kg,c568c804-079c-32a8-82e0-bf9de3b7da94 +2020,Santa Fe,II.5.1,1.610455,TJ,CO2,73300.0,kg/TJ,118046.3515,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,aee43088-4a13-3e3a-afe3-88d8d54d3f70 +2020,Santa Fe,II.5.1,1.610455,TJ,CH4,0.5,kg/TJ,0.8052275,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,8a5ed3f8-13c8-3dc3-9251-3960272efbbc +2020,Santa Fe,II.5.1,1.610455,TJ,N2O,2.0,kg/TJ,3.22091,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,459b931b-2674-3775-915d-90b02663185e +2020,Buenos Aires,II.5.1,0.20559,TJ,CO2,73300.0,kg/TJ,15069.747,Naphtha combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,bc914cfe-cf3c-39ed-888e-f73f6fe5aff0 +2020,Buenos Aires,II.5.1,0.20559,TJ,CH4,0.5,kg/TJ,0.102795,Naphtha combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,f18faaba-3417-33f4-9a57-ab44519d0808 +2020,Buenos Aires,II.5.1,0.20559,TJ,N2O,2.0,kg/TJ,0.41118,Naphtha combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,ca276b56-ca00-3c0e-8952-9f30b5aa075e +2020,Chaco,II.5.1,1.09648,TJ,CO2,73300.0,kg/TJ,80371.984,Naphtha combustion consumption by agriculture machines,AR-H,SESCO,annual,kg,84d3bec1-d241-30f1-bf88-d97ea2a38d7b +2020,Chaco,II.5.1,1.09648,TJ,CH4,0.5,kg/TJ,0.54824,Naphtha combustion consumption by agriculture machines,AR-H,SESCO,annual,kg,e45dd4fc-abdc-37ad-98cd-4a5792f1da4e +2020,Chaco,II.5.1,1.09648,TJ,N2O,2.0,kg/TJ,2.19296,Naphtha combustion consumption by agriculture machines,AR-H,SESCO,annual,kg,2022529b-ce73-3f2e-88be-63a16500b823 +2020,Córdoba,II.5.1,0.856625,TJ,CO2,73300.0,kg/TJ,62790.612499999996,Naphtha combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,e37a7090-a807-39d9-b543-4aaa6f448c35 +2020,Córdoba,II.5.1,0.856625,TJ,CH4,0.5,kg/TJ,0.4283125,Naphtha combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,2bfd90b2-abfe-3fdb-8692-84e34e2f1c10 +2020,Córdoba,II.5.1,0.856625,TJ,N2O,2.0,kg/TJ,1.71325,Naphtha combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,c77a44c6-5b61-3b39-8de4-e003e373d162 +2020,Mendoza,II.5.1,0.13706,TJ,CO2,73300.0,kg/TJ,10046.498,Naphtha combustion consumption by agriculture machines,AR-M,SESCO,annual,kg,d2a9b61e-4cc3-3ebd-8bd1-b09edabba6fa +2020,Mendoza,II.5.1,0.13706,TJ,CH4,0.5,kg/TJ,0.06853,Naphtha combustion consumption by agriculture machines,AR-M,SESCO,annual,kg,d08b82f2-02b8-3a47-8525-16a35aa19198 +2020,Mendoza,II.5.1,0.13706,TJ,N2O,2.0,kg/TJ,0.27412,Naphtha combustion consumption by agriculture machines,AR-M,SESCO,annual,kg,f7f36282-3b00-3304-9013-2aab181503c9 +2020,Chubut,II.1.1,2.1930258,TJ,CO2,74100.0,kg/TJ,162503.21178,Gas Oil combustion consumption by freight transport,AR-U,SESCO,annual,kg,b065cd7c-9b5b-3887-8a96-1fdc00123825 +2020,Chubut,II.1.1,2.1930258,TJ,CH4,3.9,kg/TJ,8.55280062,Gas Oil combustion consumption by freight transport,AR-U,SESCO,annual,kg,2e1bbdc5-d1a0-334d-ab30-0a275bc3a392 +2020,Chubut,II.1.1,2.1930258,TJ,N2O,3.9,kg/TJ,8.55280062,Gas Oil combustion consumption by freight transport,AR-U,SESCO,annual,kg,2e1bbdc5-d1a0-334d-ab30-0a275bc3a392 +2020,Buenos Aires,II.5.1,2609.34492,TJ,CO2,74100.0,kg/TJ,193352458.572,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,c3ba86ec-683e-3f5d-9302-847e4be21ec5 +2020,Buenos Aires,II.5.1,2609.34492,TJ,CH4,3.9,kg/TJ,10176.445188,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,2f4f1dad-e3bf-3f82-b659-f3b866a6188f +2020,Buenos Aires,II.5.1,2609.34492,TJ,N2O,3.9,kg/TJ,10176.445188,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,2f4f1dad-e3bf-3f82-b659-f3b866a6188f +2020,Capital Federal,II.5.1,1.87824,TJ,CO2,74100.0,kg/TJ,139177.584,Gas Oil combustion consumption by agriculture machines,AR-C,SESCO,annual,kg,8274c950-22ed-3273-98e5-8e92309295f2 +2020,Capital Federal,II.5.1,1.87824,TJ,CH4,3.9,kg/TJ,7.325136,Gas Oil combustion consumption by agriculture machines,AR-C,SESCO,annual,kg,a8d84d43-d767-3ad2-aeeb-a5dbcc6c9866 +2020,Capital Federal,II.5.1,1.87824,TJ,N2O,3.9,kg/TJ,7.325136,Gas Oil combustion consumption by agriculture machines,AR-C,SESCO,annual,kg,a8d84d43-d767-3ad2-aeeb-a5dbcc6c9866 +2020,Chaco,II.5.1,451.93343999999996,TJ,CO2,74100.0,kg/TJ,33488267.903999995,Gas Oil combustion consumption by agriculture machines,AR-H,SESCO,annual,kg,1d7c3e39-3731-3a6c-a0c7-203d3df59304 +2020,Chaco,II.5.1,451.93343999999996,TJ,CH4,3.9,kg/TJ,1762.5404159999998,Gas Oil combustion consumption by agriculture machines,AR-H,SESCO,annual,kg,7cc8ed7e-31cf-3369-8f90-ac17da7cc1bb +2020,Chaco,II.5.1,451.93343999999996,TJ,N2O,3.9,kg/TJ,1762.5404159999998,Gas Oil combustion consumption by agriculture machines,AR-H,SESCO,annual,kg,7cc8ed7e-31cf-3369-8f90-ac17da7cc1bb +2020,Corrientes,II.5.1,122.23008,TJ,CO2,74100.0,kg/TJ,9057248.928,Gas Oil combustion consumption by agriculture machines,AR-W,SESCO,annual,kg,1129373d-f3a1-3ca2-94b1-4c7e1b090dc9 +2020,Corrientes,II.5.1,122.23008,TJ,CH4,3.9,kg/TJ,476.697312,Gas Oil combustion consumption by agriculture machines,AR-W,SESCO,annual,kg,72a94b53-a9e0-3988-a1ba-0ba34a714daf +2020,Corrientes,II.5.1,122.23008,TJ,N2O,3.9,kg/TJ,476.697312,Gas Oil combustion consumption by agriculture machines,AR-W,SESCO,annual,kg,72a94b53-a9e0-3988-a1ba-0ba34a714daf +2020,Córdoba,II.5.1,2507.8116,TJ,CO2,74100.0,kg/TJ,185828839.56,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,b5bdd126-2a6b-392a-aefb-534bf462ceb6 +2020,Córdoba,II.5.1,2507.8116,TJ,CH4,3.9,kg/TJ,9780.46524,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,67caacf1-c663-364b-935c-81ed13bc345d +2020,Córdoba,II.5.1,2507.8116,TJ,N2O,3.9,kg/TJ,9780.46524,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,67caacf1-c663-364b-935c-81ed13bc345d +2020,Entre Rios,II.5.1,556.2479999999999,TJ,CO2,74100.0,kg/TJ,41217976.8,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,5c000735-3d33-3be9-919e-2b7a555df28b +2020,Entre Rios,II.5.1,556.2479999999999,TJ,CH4,3.9,kg/TJ,2169.3671999999997,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,1686bee6-d3c5-3501-bf84-99412b77b51d +2020,Entre Rios,II.5.1,556.2479999999999,TJ,N2O,3.9,kg/TJ,2169.3671999999997,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,1686bee6-d3c5-3501-bf84-99412b77b51d +2020,La Pampa,II.5.1,195.19248,TJ,CO2,74100.0,kg/TJ,14463762.768,Gas Oil combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,213cdc6f-716b-36ea-ae8a-debed8d83490 +2020,La Pampa,II.5.1,195.19248,TJ,CH4,3.9,kg/TJ,761.2506719999999,Gas Oil combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,3f96745c-eacd-3959-bd09-bd4998fc7066 +2020,La Pampa,II.5.1,195.19248,TJ,N2O,3.9,kg/TJ,761.2506719999999,Gas Oil combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,3f96745c-eacd-3959-bd09-bd4998fc7066 +2020,Mendoza,II.5.1,630.00504,TJ,CO2,74100.0,kg/TJ,46683373.464,Gas Oil combustion consumption by agriculture machines,AR-M,SESCO,annual,kg,84bdaa94-07dc-3e0b-85d0-48a663aef082 +2020,Mendoza,II.5.1,630.00504,TJ,CH4,3.9,kg/TJ,2457.019656,Gas Oil combustion consumption by agriculture machines,AR-M,SESCO,annual,kg,3f126b0c-e64d-31ee-a4b8-e16383e811a2 +2020,Mendoza,II.5.1,630.00504,TJ,N2O,3.9,kg/TJ,2457.019656,Gas Oil combustion consumption by agriculture machines,AR-M,SESCO,annual,kg,3f126b0c-e64d-31ee-a4b8-e16383e811a2 +2020,Neuquén,II.5.1,203.96964,TJ,CO2,74100.0,kg/TJ,15114150.324,Gas Oil combustion consumption by agriculture machines,AR-Q,SESCO,annual,kg,a1c2ae2c-e089-392e-b7d2-c7efefe8a9e7 +2020,Neuquén,II.5.1,203.96964,TJ,CH4,3.9,kg/TJ,795.481596,Gas Oil combustion consumption by agriculture machines,AR-Q,SESCO,annual,kg,154e3205-a3a3-354f-99ad-927d40cce352 +2020,Neuquén,II.5.1,203.96964,TJ,N2O,3.9,kg/TJ,795.481596,Gas Oil combustion consumption by agriculture machines,AR-Q,SESCO,annual,kg,154e3205-a3a3-354f-99ad-927d40cce352 +2020,San Luis,II.5.1,5.7791999999999994,TJ,CO2,74100.0,kg/TJ,428238.72,Gas Oil combustion consumption by agriculture machines,AR-D,SESCO,annual,kg,5ba4cf84-dacf-3b7f-a146-f8e4877cccfe +2020,San Luis,II.5.1,5.7791999999999994,TJ,CH4,3.9,kg/TJ,22.53888,Gas Oil combustion consumption by agriculture machines,AR-D,SESCO,annual,kg,c198ad6d-939c-330f-b1d6-b88304c2016b +2020,San Luis,II.5.1,5.7791999999999994,TJ,N2O,3.9,kg/TJ,22.53888,Gas Oil combustion consumption by agriculture machines,AR-D,SESCO,annual,kg,c198ad6d-939c-330f-b1d6-b88304c2016b +2020,Santa Cruz,II.5.1,22.90008,TJ,CO2,74100.0,kg/TJ,1696895.9279999998,Gas Oil combustion consumption by agriculture machines,AR-Z,SESCO,annual,kg,e6fd848e-5742-33f2-a450-94c6a0e1b451 +2020,Santa Cruz,II.5.1,22.90008,TJ,CH4,3.9,kg/TJ,89.310312,Gas Oil combustion consumption by agriculture machines,AR-Z,SESCO,annual,kg,dfa95e28-b1ec-3538-8309-e6e6aa36a8f5 +2020,Santa Cruz,II.5.1,22.90008,TJ,N2O,3.9,kg/TJ,89.310312,Gas Oil combustion consumption by agriculture machines,AR-Z,SESCO,annual,kg,dfa95e28-b1ec-3538-8309-e6e6aa36a8f5 +2020,Santa Fe,II.5.1,3499.05276,TJ,CO2,74100.0,kg/TJ,259279809.516,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,aef4c7f2-5685-38de-8ba9-31c1c4675224 +2020,Santa Fe,II.5.1,3499.05276,TJ,CH4,3.9,kg/TJ,13646.305764,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,872aefd7-cc40-34ad-89d1-af2ba960d1e0 +2020,Santa Fe,II.5.1,3499.05276,TJ,N2O,3.9,kg/TJ,13646.305764,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,872aefd7-cc40-34ad-89d1-af2ba960d1e0 +2020,Santiago del Estero,II.5.1,210.54348,TJ,CO2,74100.0,kg/TJ,15601271.867999999,Gas Oil combustion consumption by agriculture machines,AR-G,SESCO,annual,kg,424caa6a-e85c-35ff-8a84-8015d3a16428 +2020,Santiago del Estero,II.5.1,210.54348,TJ,CH4,3.9,kg/TJ,821.119572,Gas Oil combustion consumption by agriculture machines,AR-G,SESCO,annual,kg,a33fa547-7125-399b-815c-d0ecf88611d2 +2020,Santiago del Estero,II.5.1,210.54348,TJ,N2O,3.9,kg/TJ,821.119572,Gas Oil combustion consumption by agriculture machines,AR-G,SESCO,annual,kg,a33fa547-7125-399b-815c-d0ecf88611d2 +2020,Tucuman,II.5.1,209.67659999999998,TJ,CO2,74100.0,kg/TJ,15537036.059999999,Gas Oil combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,c963ad8b-bf6d-32fb-9fda-f60d93a568b9 +2020,Tucuman,II.5.1,209.67659999999998,TJ,CH4,3.9,kg/TJ,817.7387399999999,Gas Oil combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,d7a40568-b6c0-3815-865f-7936f0fe9020 +2020,Tucuman,II.5.1,209.67659999999998,TJ,N2O,3.9,kg/TJ,817.7387399999999,Gas Oil combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,d7a40568-b6c0-3815-865f-7936f0fe9020 +2020,Buenos Aires,II.5.1,189.01595999999998,TJ,CO2,74100.0,kg/TJ,14006082.635999998,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,38a4bebc-f2e9-3544-b0b7-335a66f05357 +2020,Buenos Aires,II.5.1,189.01595999999998,TJ,CH4,3.9,kg/TJ,737.1622439999999,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,16cd3539-b68e-3e60-bd97-a85e1da78db0 +2020,Buenos Aires,II.5.1,189.01595999999998,TJ,N2O,3.9,kg/TJ,737.1622439999999,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,16cd3539-b68e-3e60-bd97-a85e1da78db0 +2020,Capital Federal,II.5.1,0.7223999999999999,TJ,CO2,74100.0,kg/TJ,53529.84,Gas Oil combustion consumption by agriculture machines,AR-C,SESCO,annual,kg,f056b303-fc90-3a0a-b259-51a1d44abe0a +2020,Capital Federal,II.5.1,0.7223999999999999,TJ,CH4,3.9,kg/TJ,2.81736,Gas Oil combustion consumption by agriculture machines,AR-C,SESCO,annual,kg,0c2af07a-846a-3b63-bbdf-a58dfea3ff21 +2020,Capital Federal,II.5.1,0.7223999999999999,TJ,N2O,3.9,kg/TJ,2.81736,Gas Oil combustion consumption by agriculture machines,AR-C,SESCO,annual,kg,0c2af07a-846a-3b63-bbdf-a58dfea3ff21 +2020,Chaco,II.5.1,90.44448,TJ,CO2,74100.0,kg/TJ,6701935.968,Gas Oil combustion consumption by agriculture machines,AR-H,SESCO,annual,kg,f85f6495-da0d-3510-b146-24fd900bffff +2020,Chaco,II.5.1,90.44448,TJ,CH4,3.9,kg/TJ,352.733472,Gas Oil combustion consumption by agriculture machines,AR-H,SESCO,annual,kg,946598e9-8e0a-3230-87e3-86522741f525 +2020,Chaco,II.5.1,90.44448,TJ,N2O,3.9,kg/TJ,352.733472,Gas Oil combustion consumption by agriculture machines,AR-H,SESCO,annual,kg,946598e9-8e0a-3230-87e3-86522741f525 +2020,Corrientes,II.5.1,14.484119999999999,TJ,CO2,74100.0,kg/TJ,1073273.292,Gas Oil combustion consumption by agriculture machines,AR-W,SESCO,annual,kg,0561244a-9d9c-33f9-bf8d-17686ad9fcea +2020,Corrientes,II.5.1,14.484119999999999,TJ,CH4,3.9,kg/TJ,56.48806799999999,Gas Oil combustion consumption by agriculture machines,AR-W,SESCO,annual,kg,06016544-ce43-3b81-b27a-081efb65b6d3 +2020,Corrientes,II.5.1,14.484119999999999,TJ,N2O,3.9,kg/TJ,56.48806799999999,Gas Oil combustion consumption by agriculture machines,AR-W,SESCO,annual,kg,06016544-ce43-3b81-b27a-081efb65b6d3 +2020,Córdoba,II.5.1,250.3116,TJ,CO2,74100.0,kg/TJ,18548089.56,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,f6700944-7333-3c50-b7ba-d778c1ec3ce5 +2020,Córdoba,II.5.1,250.3116,TJ,CH4,3.9,kg/TJ,976.21524,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,ca659abc-8888-3fc2-8ba6-89685e175824 +2020,Córdoba,II.5.1,250.3116,TJ,N2O,3.9,kg/TJ,976.21524,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,ca659abc-8888-3fc2-8ba6-89685e175824 +2020,Entre Rios,II.5.1,16.579079999999998,TJ,CO2,74100.0,kg/TJ,1228509.8279999997,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,ad096e6b-62fa-361e-a4c6-240991cb812e +2020,Entre Rios,II.5.1,16.579079999999998,TJ,CH4,3.9,kg/TJ,64.65841199999998,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,6ad6e6ea-2583-318a-bf63-6f3696856b82 +2020,Entre Rios,II.5.1,16.579079999999998,TJ,N2O,3.9,kg/TJ,64.65841199999998,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,6ad6e6ea-2583-318a-bf63-6f3696856b82 +2020,La Pampa,II.5.1,34.38624,TJ,CO2,74100.0,kg/TJ,2548020.384,Gas Oil combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,c3dce7ca-7336-3384-a7d8-ad9ba8c114a1 +2020,La Pampa,II.5.1,34.38624,TJ,CH4,3.9,kg/TJ,134.106336,Gas Oil combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,9766f5db-2634-3e68-ae71-d8491bb8a072 +2020,La Pampa,II.5.1,34.38624,TJ,N2O,3.9,kg/TJ,134.106336,Gas Oil combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,9766f5db-2634-3e68-ae71-d8491bb8a072 +2020,Mendoza,II.5.1,78.88607999999999,TJ,CO2,74100.0,kg/TJ,5845458.527999999,Gas Oil combustion consumption by agriculture machines,AR-M,SESCO,annual,kg,396e95a9-f96a-3e06-8c68-ea64a9f06f6a +2020,Mendoza,II.5.1,78.88607999999999,TJ,CH4,3.9,kg/TJ,307.65571199999994,Gas Oil combustion consumption by agriculture machines,AR-M,SESCO,annual,kg,7b833326-68ab-3c3b-a3a6-dfbd105d7d6d +2020,Mendoza,II.5.1,78.88607999999999,TJ,N2O,3.9,kg/TJ,307.65571199999994,Gas Oil combustion consumption by agriculture machines,AR-M,SESCO,annual,kg,7b833326-68ab-3c3b-a3a6-dfbd105d7d6d +2020,Neuquén,II.5.1,29.582279999999997,TJ,CO2,74100.0,kg/TJ,2192046.948,Gas Oil combustion consumption by agriculture machines,AR-Q,SESCO,annual,kg,69f020cb-05a2-3c94-8a9e-cbadf5204651 +2020,Neuquén,II.5.1,29.582279999999997,TJ,CH4,3.9,kg/TJ,115.37089199999998,Gas Oil combustion consumption by agriculture machines,AR-Q,SESCO,annual,kg,b194c502-cc3d-3b27-8b3a-fede6c4d5eaa +2020,Neuquén,II.5.1,29.582279999999997,TJ,N2O,3.9,kg/TJ,115.37089199999998,Gas Oil combustion consumption by agriculture machines,AR-Q,SESCO,annual,kg,b194c502-cc3d-3b27-8b3a-fede6c4d5eaa +2020,San Luis,II.5.1,1.3364399999999999,TJ,CO2,74100.0,kg/TJ,99030.20399999998,Gas Oil combustion consumption by agriculture machines,AR-D,SESCO,annual,kg,80d2e350-8f4e-3b4a-9eae-e9386d841b19 +2020,San Luis,II.5.1,1.3364399999999999,TJ,CH4,3.9,kg/TJ,5.212115999999999,Gas Oil combustion consumption by agriculture machines,AR-D,SESCO,annual,kg,3ea8d7a0-f70a-3658-8ddc-349a84825f49 +2020,San Luis,II.5.1,1.3364399999999999,TJ,N2O,3.9,kg/TJ,5.212115999999999,Gas Oil combustion consumption by agriculture machines,AR-D,SESCO,annual,kg,3ea8d7a0-f70a-3658-8ddc-349a84825f49 +2020,Santa Cruz,II.5.1,133.68012,TJ,CO2,74100.0,kg/TJ,9905696.891999999,Gas Oil combustion consumption by agriculture machines,AR-Z,SESCO,annual,kg,70ea49ef-616b-3f16-95e1-aa700cf8a293 +2020,Santa Cruz,II.5.1,133.68012,TJ,CH4,3.9,kg/TJ,521.3524679999999,Gas Oil combustion consumption by agriculture machines,AR-Z,SESCO,annual,kg,e2d21bfd-b665-346e-8263-64ee4cd382b1 +2020,Santa Cruz,II.5.1,133.68012,TJ,N2O,3.9,kg/TJ,521.3524679999999,Gas Oil combustion consumption by agriculture machines,AR-Z,SESCO,annual,kg,e2d21bfd-b665-346e-8263-64ee4cd382b1 +2020,Santa Fe,II.5.1,355.09572,TJ,CO2,74100.0,kg/TJ,26312592.851999998,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,aab7d1c1-3ecb-3fd3-9aa7-24e13a08e878 +2020,Santa Fe,II.5.1,355.09572,TJ,CH4,3.9,kg/TJ,1384.873308,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,39e1d610-7bc9-3717-b9a6-8d62d7844aa2 +2020,Santa Fe,II.5.1,355.09572,TJ,N2O,3.9,kg/TJ,1384.873308,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,39e1d610-7bc9-3717-b9a6-8d62d7844aa2 +2020,Santiago del Estero,II.5.1,83.40108,TJ,CO2,74100.0,kg/TJ,6180020.028,Gas Oil combustion consumption by agriculture machines,AR-G,SESCO,annual,kg,9545de64-69b0-3f93-ab10-c4e4b9974e06 +2020,Santiago del Estero,II.5.1,83.40108,TJ,CH4,3.9,kg/TJ,325.264212,Gas Oil combustion consumption by agriculture machines,AR-G,SESCO,annual,kg,229aa0c9-6572-3ede-bdd4-9b5da1bac315 +2020,Santiago del Estero,II.5.1,83.40108,TJ,N2O,3.9,kg/TJ,325.264212,Gas Oil combustion consumption by agriculture machines,AR-G,SESCO,annual,kg,229aa0c9-6572-3ede-bdd4-9b5da1bac315 +2020,Tucuman,II.5.1,46.811519999999994,TJ,CO2,74100.0,kg/TJ,3468733.6319999998,Gas Oil combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,6fe6de5d-24e2-3629-b4c3-6ac2feca2fc2 +2020,Tucuman,II.5.1,46.811519999999994,TJ,CH4,3.9,kg/TJ,182.56492799999998,Gas Oil combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,8da41cb2-9299-3e5c-aca6-85dc452a4091 +2020,Tucuman,II.5.1,46.811519999999994,TJ,N2O,3.9,kg/TJ,182.56492799999998,Gas Oil combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,8da41cb2-9299-3e5c-aca6-85dc452a4091 +2020,Santa Fe,II.5.1,35.01883,TJ,CO2,73300.0,kg/TJ,2566880.239,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,3930ef94-9f7e-3d95-8150-118b6e75f383 +2020,Santa Fe,II.5.1,35.01883,TJ,CH4,0.5,kg/TJ,17.509415,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,1f931602-0587-301b-a153-58bfc77520df +2020,Santa Fe,II.5.1,35.01883,TJ,N2O,2.0,kg/TJ,70.03766,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,d9b0deb1-6e71-3bd8-bb28-4465a195c2a4 +2020,Santa Fe,II.5.1,6.681674999999999,TJ,CO2,73300.0,kg/TJ,489766.77749999997,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,fca9c2c3-ba89-3aa8-97bd-604a517613d4 +2020,Santa Fe,II.5.1,6.681674999999999,TJ,CH4,0.5,kg/TJ,3.3408374999999997,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,cf119e80-ec2b-3c61-934e-261e7a31669f +2020,Santa Fe,II.5.1,6.681674999999999,TJ,N2O,2.0,kg/TJ,13.363349999999999,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,b1866314-315d-34ad-9b5a-5bf40ddd6fd5 +2020,Buenos Aires,II.2.1,98.0658,TJ,CO2,74100.0,kg/TJ,7266675.779999999,Gas Oil combustion consumption by railway transport,AR-B,SESCO,annual,kg,3b1470f0-1090-32c8-bc33-079aec192171 +2020,Buenos Aires,II.2.1,98.0658,TJ,CH4,3.9,kg/TJ,382.45662,Gas Oil combustion consumption by railway transport,AR-B,SESCO,annual,kg,c6c87b8a-ee81-39f8-bda8-7a9951e6e63e +2020,Buenos Aires,II.2.1,98.0658,TJ,N2O,3.9,kg/TJ,382.45662,Gas Oil combustion consumption by railway transport,AR-B,SESCO,annual,kg,c6c87b8a-ee81-39f8-bda8-7a9951e6e63e +2020,Capital Federal,II.2.1,2.709,TJ,CO2,74100.0,kg/TJ,200736.9,Gas Oil combustion consumption by railway transport,AR-C,SESCO,annual,kg,23a5ada7-6b1a-31a0-91f7-1be76e2da253 +2020,Capital Federal,II.2.1,2.709,TJ,CH4,3.9,kg/TJ,10.5651,Gas Oil combustion consumption by railway transport,AR-C,SESCO,annual,kg,3b642f3e-23d3-3976-8709-314b4c84e4ab +2020,Capital Federal,II.2.1,2.709,TJ,N2O,3.9,kg/TJ,10.5651,Gas Oil combustion consumption by railway transport,AR-C,SESCO,annual,kg,3b642f3e-23d3-3976-8709-314b4c84e4ab +2020,Córdoba,II.2.1,10.61928,TJ,CO2,74100.0,kg/TJ,786888.648,Gas Oil combustion consumption by railway transport,AR-X,SESCO,annual,kg,796cb9ec-3bf6-370d-8d1e-15606091b8e2 +2020,Córdoba,II.2.1,10.61928,TJ,CH4,3.9,kg/TJ,41.415192,Gas Oil combustion consumption by railway transport,AR-X,SESCO,annual,kg,c8671e01-46a4-3e66-9301-6c92a18a8448 +2020,Córdoba,II.2.1,10.61928,TJ,N2O,3.9,kg/TJ,41.415192,Gas Oil combustion consumption by railway transport,AR-X,SESCO,annual,kg,c8671e01-46a4-3e66-9301-6c92a18a8448 +2020,La Pampa,II.2.1,29.654519999999998,TJ,CO2,74100.0,kg/TJ,2197399.932,Gas Oil combustion consumption by railway transport,AR-L,SESCO,annual,kg,df1f06d6-ce50-34ef-b8cf-b00eca7cbd29 +2020,La Pampa,II.2.1,29.654519999999998,TJ,CH4,3.9,kg/TJ,115.65262799999999,Gas Oil combustion consumption by railway transport,AR-L,SESCO,annual,kg,74dd5a79-cb5e-381e-ba33-f4e1c39687aa +2020,La Pampa,II.2.1,29.654519999999998,TJ,N2O,3.9,kg/TJ,115.65262799999999,Gas Oil combustion consumption by railway transport,AR-L,SESCO,annual,kg,74dd5a79-cb5e-381e-ba33-f4e1c39687aa +2020,Neuquén,II.2.1,7.80192,TJ,CO2,74100.0,kg/TJ,578122.272,Gas Oil combustion consumption by railway transport,AR-Q,SESCO,annual,kg,41032091-5c78-3534-aa7b-a9de0cdacec3 +2020,Neuquén,II.2.1,7.80192,TJ,CH4,3.9,kg/TJ,30.427488,Gas Oil combustion consumption by railway transport,AR-Q,SESCO,annual,kg,1916553e-eddf-337d-8c08-23a2b2810de7 +2020,Neuquén,II.2.1,7.80192,TJ,N2O,3.9,kg/TJ,30.427488,Gas Oil combustion consumption by railway transport,AR-Q,SESCO,annual,kg,1916553e-eddf-337d-8c08-23a2b2810de7 +2020,Santa Fe,II.2.1,122.48292,TJ,CO2,74100.0,kg/TJ,9075984.372,Gas Oil combustion consumption by railway transport,AR-S,SESCO,annual,kg,2b892a36-2413-3b42-a81d-b95144626173 +2020,Santa Fe,II.2.1,122.48292,TJ,CH4,3.9,kg/TJ,477.683388,Gas Oil combustion consumption by railway transport,AR-S,SESCO,annual,kg,240e991a-c7b1-33d4-af2e-58d97f5f3356 +2020,Santa Fe,II.2.1,122.48292,TJ,N2O,3.9,kg/TJ,477.683388,Gas Oil combustion consumption by railway transport,AR-S,SESCO,annual,kg,240e991a-c7b1-33d4-af2e-58d97f5f3356 +2020,Santiago del Estero,II.2.1,22.24992,TJ,CO2,74100.0,kg/TJ,1648719.072,Gas Oil combustion consumption by railway transport,AR-G,SESCO,annual,kg,e6cb4961-994d-3f5b-b619-8dbbd5180157 +2020,Santiago del Estero,II.2.1,22.24992,TJ,CH4,3.9,kg/TJ,86.774688,Gas Oil combustion consumption by railway transport,AR-G,SESCO,annual,kg,0ebaba5d-aa7d-3085-b496-13a2688637ec +2020,Santiago del Estero,II.2.1,22.24992,TJ,N2O,3.9,kg/TJ,86.774688,Gas Oil combustion consumption by railway transport,AR-G,SESCO,annual,kg,0ebaba5d-aa7d-3085-b496-13a2688637ec +2020,Tucuman,II.2.1,13.03932,TJ,CO2,74100.0,kg/TJ,966213.612,Gas Oil combustion consumption by railway transport,AR-T,SESCO,annual,kg,9afc208c-2d7c-3f5e-9bec-364f36899c38 +2020,Tucuman,II.2.1,13.03932,TJ,CH4,3.9,kg/TJ,50.853348,Gas Oil combustion consumption by railway transport,AR-T,SESCO,annual,kg,4097b250-decf-36a2-b910-39f1b2954757 +2020,Tucuman,II.2.1,13.03932,TJ,N2O,3.9,kg/TJ,50.853348,Gas Oil combustion consumption by railway transport,AR-T,SESCO,annual,kg,4097b250-decf-36a2-b910-39f1b2954757 +2020,Buenos Aires,II.1.1,1387.3330799999999,TJ,CO2,74100.0,kg/TJ,102801381.22799999,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,26247cd4-061e-3d51-8d5c-f59aa506dfcc +2020,Buenos Aires,II.1.1,1387.3330799999999,TJ,CH4,3.9,kg/TJ,5410.599012,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,17f5fc31-16f1-3cd8-9493-9549882d009f +2020,Buenos Aires,II.1.1,1387.3330799999999,TJ,N2O,3.9,kg/TJ,5410.599012,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,17f5fc31-16f1-3cd8-9493-9549882d009f +2020,Capital Federal,II.1.1,275.5956,TJ,CO2,74100.0,kg/TJ,20421633.96,Gas Oil combustion consumption by freight transport,AR-C,SESCO,annual,kg,823a7452-f946-3530-80ed-549a45b928ae +2020,Capital Federal,II.1.1,275.5956,TJ,CH4,3.9,kg/TJ,1074.82284,Gas Oil combustion consumption by freight transport,AR-C,SESCO,annual,kg,4530fb51-1f4f-3f16-a23e-58bda6984116 +2020,Capital Federal,II.1.1,275.5956,TJ,N2O,3.9,kg/TJ,1074.82284,Gas Oil combustion consumption by freight transport,AR-C,SESCO,annual,kg,4530fb51-1f4f-3f16-a23e-58bda6984116 +2020,Catamarca,II.1.1,10.61928,TJ,CO2,74100.0,kg/TJ,786888.648,Gas Oil combustion consumption by freight transport,AR-K,SESCO,annual,kg,318f23b9-69d8-3d0e-9a71-cf9c29f5c9d9 +2020,Catamarca,II.1.1,10.61928,TJ,CH4,3.9,kg/TJ,41.415192,Gas Oil combustion consumption by freight transport,AR-K,SESCO,annual,kg,72b82c26-6046-39bf-a399-3faac082c7fd +2020,Catamarca,II.1.1,10.61928,TJ,N2O,3.9,kg/TJ,41.415192,Gas Oil combustion consumption by freight transport,AR-K,SESCO,annual,kg,72b82c26-6046-39bf-a399-3faac082c7fd +2020,Chaco,II.1.1,25.175639999999998,TJ,CO2,74100.0,kg/TJ,1865514.9239999999,Gas Oil combustion consumption by freight transport,AR-H,SESCO,annual,kg,ffad3218-4090-380d-84fc-5ca027d2a1c8 +2020,Chaco,II.1.1,25.175639999999998,TJ,CH4,3.9,kg/TJ,98.18499599999998,Gas Oil combustion consumption by freight transport,AR-H,SESCO,annual,kg,43337036-54b5-3dcb-b2c5-263fd3b50dcd +2020,Chaco,II.1.1,25.175639999999998,TJ,N2O,3.9,kg/TJ,98.18499599999998,Gas Oil combustion consumption by freight transport,AR-H,SESCO,annual,kg,43337036-54b5-3dcb-b2c5-263fd3b50dcd +2020,Chubut,II.1.1,48.14796,TJ,CO2,74100.0,kg/TJ,3567763.8359999997,Gas Oil combustion consumption by freight transport,AR-U,SESCO,annual,kg,d5d65e52-14a9-3cff-935f-021bbca1a771 +2020,Chubut,II.1.1,48.14796,TJ,CH4,3.9,kg/TJ,187.777044,Gas Oil combustion consumption by freight transport,AR-U,SESCO,annual,kg,98c6a4f6-fe71-379e-bd78-2b8f4a318e84 +2020,Chubut,II.1.1,48.14796,TJ,N2O,3.9,kg/TJ,187.777044,Gas Oil combustion consumption by freight transport,AR-U,SESCO,annual,kg,98c6a4f6-fe71-379e-bd78-2b8f4a318e84 +2020,Corrientes,II.1.1,56.13048,TJ,CO2,74100.0,kg/TJ,4159268.568,Gas Oil combustion consumption by freight transport,AR-W,SESCO,annual,kg,bc1fe25f-d6c2-3f42-9c69-b692689ad9c6 +2020,Corrientes,II.1.1,56.13048,TJ,CH4,3.9,kg/TJ,218.908872,Gas Oil combustion consumption by freight transport,AR-W,SESCO,annual,kg,2c268696-3c32-365f-b8c2-f90a567f5960 +2020,Corrientes,II.1.1,56.13048,TJ,N2O,3.9,kg/TJ,218.908872,Gas Oil combustion consumption by freight transport,AR-W,SESCO,annual,kg,2c268696-3c32-365f-b8c2-f90a567f5960 +2020,Córdoba,II.1.1,197.68475999999998,TJ,CO2,74100.0,kg/TJ,14648440.715999998,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,af38f8fc-d196-3a52-a449-f6b848a433ce +2020,Córdoba,II.1.1,197.68475999999998,TJ,CH4,3.9,kg/TJ,770.970564,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,aa15a0ac-5368-38a4-ac5d-d624ea01ae11 +2020,Córdoba,II.1.1,197.68475999999998,TJ,N2O,3.9,kg/TJ,770.970564,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,aa15a0ac-5368-38a4-ac5d-d624ea01ae11 +2020,Entre Rios,II.1.1,107.70984,TJ,CO2,74100.0,kg/TJ,7981299.144,Gas Oil combustion consumption by freight transport,AR-E,SESCO,annual,kg,d86ea670-89a6-30c9-8b09-f29ce9f8a542 +2020,Entre Rios,II.1.1,107.70984,TJ,CH4,3.9,kg/TJ,420.068376,Gas Oil combustion consumption by freight transport,AR-E,SESCO,annual,kg,f46f494e-56c6-3ba6-a0f1-35579994ed0a +2020,Entre Rios,II.1.1,107.70984,TJ,N2O,3.9,kg/TJ,420.068376,Gas Oil combustion consumption by freight transport,AR-E,SESCO,annual,kg,f46f494e-56c6-3ba6-a0f1-35579994ed0a +2020,Formosa,II.1.1,10.14972,TJ,CO2,74100.0,kg/TJ,752094.252,Gas Oil combustion consumption by freight transport,AR-P,SESCO,annual,kg,dd5ae63e-ecb1-318c-a7e3-0d4656cdae44 +2020,Formosa,II.1.1,10.14972,TJ,CH4,3.9,kg/TJ,39.583908,Gas Oil combustion consumption by freight transport,AR-P,SESCO,annual,kg,2f5578c5-aef3-3b9c-8b25-1594e15d3e67 +2020,Formosa,II.1.1,10.14972,TJ,N2O,3.9,kg/TJ,39.583908,Gas Oil combustion consumption by freight transport,AR-P,SESCO,annual,kg,2f5578c5-aef3-3b9c-8b25-1594e15d3e67 +2020,Jujuy,II.1.1,8.27148,TJ,CO2,74100.0,kg/TJ,612916.6680000001,Gas Oil combustion consumption by freight transport,AR-Y,SESCO,annual,kg,a5b31e4e-8cc1-38d8-873a-b6144c1488fc +2020,Jujuy,II.1.1,8.27148,TJ,CH4,3.9,kg/TJ,32.258772,Gas Oil combustion consumption by freight transport,AR-Y,SESCO,annual,kg,3c780bfd-d48e-360a-b24e-f4a09fef7374 +2020,Jujuy,II.1.1,8.27148,TJ,N2O,3.9,kg/TJ,32.258772,Gas Oil combustion consumption by freight transport,AR-Y,SESCO,annual,kg,3c780bfd-d48e-360a-b24e-f4a09fef7374 +2020,La Pampa,II.1.1,20.84124,TJ,CO2,74100.0,kg/TJ,1544335.8839999998,Gas Oil combustion consumption by freight transport,AR-L,SESCO,annual,kg,4fba5dc1-b7a3-3142-bac0-78a6343fbbc0 +2020,La Pampa,II.1.1,20.84124,TJ,CH4,3.9,kg/TJ,81.280836,Gas Oil combustion consumption by freight transport,AR-L,SESCO,annual,kg,4d9572b0-b087-3653-9cbf-1a7b691f5cfc +2020,La Pampa,II.1.1,20.84124,TJ,N2O,3.9,kg/TJ,81.280836,Gas Oil combustion consumption by freight transport,AR-L,SESCO,annual,kg,4d9572b0-b087-3653-9cbf-1a7b691f5cfc +2020,La Rioja,II.1.1,2.6367599999999998,TJ,CO2,74100.0,kg/TJ,195383.916,Gas Oil combustion consumption by freight transport,AR-F,SESCO,annual,kg,d8b548d2-dcf2-33da-bdef-e31fdf687bd4 +2020,La Rioja,II.1.1,2.6367599999999998,TJ,CH4,3.9,kg/TJ,10.283363999999999,Gas Oil combustion consumption by freight transport,AR-F,SESCO,annual,kg,9cb57cc4-e3fe-391c-895a-26c723c5914f +2020,La Rioja,II.1.1,2.6367599999999998,TJ,N2O,3.9,kg/TJ,10.283363999999999,Gas Oil combustion consumption by freight transport,AR-F,SESCO,annual,kg,9cb57cc4-e3fe-391c-895a-26c723c5914f +2020,Mendoza,II.1.1,72.45671999999999,TJ,CO2,74100.0,kg/TJ,5369042.952,Gas Oil combustion consumption by freight transport,AR-M,SESCO,annual,kg,d401c147-3311-38a1-9406-aec7796910b7 +2020,Mendoza,II.1.1,72.45671999999999,TJ,CH4,3.9,kg/TJ,282.58120799999995,Gas Oil combustion consumption by freight transport,AR-M,SESCO,annual,kg,0a503c2f-d511-3847-a886-981eb3cc371c +2020,Mendoza,II.1.1,72.45671999999999,TJ,N2O,3.9,kg/TJ,282.58120799999995,Gas Oil combustion consumption by freight transport,AR-M,SESCO,annual,kg,0a503c2f-d511-3847-a886-981eb3cc371c +2020,Misiones,II.1.1,89.7582,TJ,CO2,74100.0,kg/TJ,6651082.62,Gas Oil combustion consumption by freight transport,AR-N,SESCO,annual,kg,9aab5f13-1746-3554-a6b0-eef2ab5fc6de +2020,Misiones,II.1.1,89.7582,TJ,CH4,3.9,kg/TJ,350.05698,Gas Oil combustion consumption by freight transport,AR-N,SESCO,annual,kg,64d9d7d7-d0ff-3360-91bb-de929b3edbf2 +2020,Misiones,II.1.1,89.7582,TJ,N2O,3.9,kg/TJ,350.05698,Gas Oil combustion consumption by freight transport,AR-N,SESCO,annual,kg,64d9d7d7-d0ff-3360-91bb-de929b3edbf2 +2020,Neuquén,II.1.1,1.73376,TJ,CO2,74100.0,kg/TJ,128471.616,Gas Oil combustion consumption by freight transport,AR-Q,SESCO,annual,kg,20e0f8a4-08dc-3695-a68d-cd5570e74c16 +2020,Neuquén,II.1.1,1.73376,TJ,CH4,3.9,kg/TJ,6.761664,Gas Oil combustion consumption by freight transport,AR-Q,SESCO,annual,kg,d1e5be0f-83fb-3f5d-ac2b-ad198e50d8ab +2020,Neuquén,II.1.1,1.73376,TJ,N2O,3.9,kg/TJ,6.761664,Gas Oil combustion consumption by freight transport,AR-Q,SESCO,annual,kg,d1e5be0f-83fb-3f5d-ac2b-ad198e50d8ab +2020,Rio Negro,II.1.1,90.76956,TJ,CO2,74100.0,kg/TJ,6726024.396,Gas Oil combustion consumption by freight transport,AR-R,SESCO,annual,kg,73c32dd7-d85f-321a-8a2f-4c3485719722 +2020,Rio Negro,II.1.1,90.76956,TJ,CH4,3.9,kg/TJ,354.001284,Gas Oil combustion consumption by freight transport,AR-R,SESCO,annual,kg,f7f40adc-6676-3708-8574-21af7bd2ff26 +2020,Rio Negro,II.1.1,90.76956,TJ,N2O,3.9,kg/TJ,354.001284,Gas Oil combustion consumption by freight transport,AR-R,SESCO,annual,kg,f7f40adc-6676-3708-8574-21af7bd2ff26 +2020,Salta,II.1.1,4.76784,TJ,CO2,74100.0,kg/TJ,353296.94399999996,Gas Oil combustion consumption by freight transport,AR-A,SESCO,annual,kg,acabd128-93ac-3a50-9d7e-c203e5edab3a +2020,Salta,II.1.1,4.76784,TJ,CH4,3.9,kg/TJ,18.594575999999996,Gas Oil combustion consumption by freight transport,AR-A,SESCO,annual,kg,e612d646-2904-3558-8c56-5751d97e3639 +2020,Salta,II.1.1,4.76784,TJ,N2O,3.9,kg/TJ,18.594575999999996,Gas Oil combustion consumption by freight transport,AR-A,SESCO,annual,kg,e612d646-2904-3558-8c56-5751d97e3639 +2020,San Juan,II.1.1,6.06816,TJ,CO2,74100.0,kg/TJ,449650.65599999996,Gas Oil combustion consumption by freight transport,AR-J,SESCO,annual,kg,169a167f-60ec-3a44-9053-99d9a47a80cd +2020,San Juan,II.1.1,6.06816,TJ,CH4,3.9,kg/TJ,23.665823999999997,Gas Oil combustion consumption by freight transport,AR-J,SESCO,annual,kg,77629aa5-eb7e-37d0-a9ae-2d8c9edd8925 +2020,San Juan,II.1.1,6.06816,TJ,N2O,3.9,kg/TJ,23.665823999999997,Gas Oil combustion consumption by freight transport,AR-J,SESCO,annual,kg,77629aa5-eb7e-37d0-a9ae-2d8c9edd8925 +2020,San Luis,II.1.1,33.62772,TJ,CO2,74100.0,kg/TJ,2491814.0519999997,Gas Oil combustion consumption by freight transport,AR-D,SESCO,annual,kg,aac50db3-d966-31e2-8532-373dc0f01a05 +2020,San Luis,II.1.1,33.62772,TJ,CH4,3.9,kg/TJ,131.14810799999998,Gas Oil combustion consumption by freight transport,AR-D,SESCO,annual,kg,441712e4-1361-3103-92d6-140a1f303f3b +2020,San Luis,II.1.1,33.62772,TJ,N2O,3.9,kg/TJ,131.14810799999998,Gas Oil combustion consumption by freight transport,AR-D,SESCO,annual,kg,441712e4-1361-3103-92d6-140a1f303f3b +2020,Santa Cruz,II.1.1,12.71424,TJ,CO2,74100.0,kg/TJ,942125.184,Gas Oil combustion consumption by freight transport,AR-Z,SESCO,annual,kg,19525495-191e-3410-9c28-bd0f6aad2c9d +2020,Santa Cruz,II.1.1,12.71424,TJ,CH4,3.9,kg/TJ,49.585536,Gas Oil combustion consumption by freight transport,AR-Z,SESCO,annual,kg,fa1b8fe7-b439-3225-93fb-84c1fef07477 +2020,Santa Cruz,II.1.1,12.71424,TJ,N2O,3.9,kg/TJ,49.585536,Gas Oil combustion consumption by freight transport,AR-Z,SESCO,annual,kg,fa1b8fe7-b439-3225-93fb-84c1fef07477 +2020,Santa Fe,II.1.1,364.9926,TJ,CO2,74100.0,kg/TJ,27045951.66,Gas Oil combustion consumption by freight transport,AR-S,SESCO,annual,kg,761f2f73-45b7-3269-941e-6ad818b4ca07 +2020,Santa Fe,II.1.1,364.9926,TJ,CH4,3.9,kg/TJ,1423.4711399999999,Gas Oil combustion consumption by freight transport,AR-S,SESCO,annual,kg,a8f1db3c-1163-3694-87c5-c17813e988f4 +2020,Santa Fe,II.1.1,364.9926,TJ,N2O,3.9,kg/TJ,1423.4711399999999,Gas Oil combustion consumption by freight transport,AR-S,SESCO,annual,kg,a8f1db3c-1163-3694-87c5-c17813e988f4 +2020,Santiago del Estero,II.1.1,84.55691999999999,TJ,CO2,74100.0,kg/TJ,6265667.771999999,Gas Oil combustion consumption by freight transport,AR-G,SESCO,annual,kg,a0d7a1da-26e8-3c79-9463-904a9596c422 +2020,Santiago del Estero,II.1.1,84.55691999999999,TJ,CH4,3.9,kg/TJ,329.77198799999996,Gas Oil combustion consumption by freight transport,AR-G,SESCO,annual,kg,6222f054-cf4e-3934-86e9-26d58cb1f572 +2020,Santiago del Estero,II.1.1,84.55691999999999,TJ,N2O,3.9,kg/TJ,329.77198799999996,Gas Oil combustion consumption by freight transport,AR-G,SESCO,annual,kg,6222f054-cf4e-3934-86e9-26d58cb1f572 +2020,Tierra del Fuego,II.1.1,5.02068,TJ,CO2,74100.0,kg/TJ,372032.388,Gas Oil combustion consumption by freight transport,AR-V,SESCO,annual,kg,c1674e3b-af12-36f2-a439-037b3401c585 +2020,Tierra del Fuego,II.1.1,5.02068,TJ,CH4,3.9,kg/TJ,19.580651999999997,Gas Oil combustion consumption by freight transport,AR-V,SESCO,annual,kg,f543ca3b-2a2e-3f8f-be82-18fa805a756a +2020,Tierra del Fuego,II.1.1,5.02068,TJ,N2O,3.9,kg/TJ,19.580651999999997,Gas Oil combustion consumption by freight transport,AR-V,SESCO,annual,kg,f543ca3b-2a2e-3f8f-be82-18fa805a756a +2020,Tucuman,II.1.1,40.743359999999996,TJ,CO2,74100.0,kg/TJ,3019082.976,Gas Oil combustion consumption by freight transport,AR-T,SESCO,annual,kg,c6dc03c9-10a1-3d96-830c-a5f96ee3081f +2020,Tucuman,II.1.1,40.743359999999996,TJ,CH4,3.9,kg/TJ,158.89910399999997,Gas Oil combustion consumption by freight transport,AR-T,SESCO,annual,kg,cf6d0164-647a-3870-8c35-0e140b2a5b94 +2020,Tucuman,II.1.1,40.743359999999996,TJ,N2O,3.9,kg/TJ,158.89910399999997,Gas Oil combustion consumption by freight transport,AR-T,SESCO,annual,kg,cf6d0164-647a-3870-8c35-0e140b2a5b94 +2020,Buenos Aires,II.1.1,170.26968,TJ,CO2,74100.0,kg/TJ,12616983.287999999,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,14374457-fdb1-3acb-91d6-791413fd4e55 +2020,Buenos Aires,II.1.1,170.26968,TJ,CH4,3.9,kg/TJ,664.051752,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,6f2ded01-45cf-3244-b284-35c4977d5d05 +2020,Buenos Aires,II.1.1,170.26968,TJ,N2O,3.9,kg/TJ,664.051752,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,6f2ded01-45cf-3244-b284-35c4977d5d05 +2020,Capital Federal,II.1.1,18.71016,TJ,CO2,74100.0,kg/TJ,1386422.856,Gas Oil combustion consumption by freight transport,AR-C,SESCO,annual,kg,49dfac0a-b3c5-3ac4-ae9a-f5dacd5a56a5 +2020,Capital Federal,II.1.1,18.71016,TJ,CH4,3.9,kg/TJ,72.969624,Gas Oil combustion consumption by freight transport,AR-C,SESCO,annual,kg,a3ff9675-8577-3ab0-8220-949ca7407a4d +2020,Capital Federal,II.1.1,18.71016,TJ,N2O,3.9,kg/TJ,72.969624,Gas Oil combustion consumption by freight transport,AR-C,SESCO,annual,kg,a3ff9675-8577-3ab0-8220-949ca7407a4d +2020,Catamarca,II.1.1,0.8307599999999999,TJ,CO2,74100.0,kg/TJ,61559.316,Gas Oil combustion consumption by freight transport,AR-K,SESCO,annual,kg,eb679c9a-d539-30db-90f8-a57a75d6b13f +2020,Catamarca,II.1.1,0.8307599999999999,TJ,CH4,3.9,kg/TJ,3.2399639999999996,Gas Oil combustion consumption by freight transport,AR-K,SESCO,annual,kg,0495770d-ab03-3029-98ab-c70fb813319e +2020,Catamarca,II.1.1,0.8307599999999999,TJ,N2O,3.9,kg/TJ,3.2399639999999996,Gas Oil combustion consumption by freight transport,AR-K,SESCO,annual,kg,0495770d-ab03-3029-98ab-c70fb813319e +2020,Chaco,II.1.1,4.55112,TJ,CO2,74100.0,kg/TJ,337237.992,Gas Oil combustion consumption by freight transport,AR-H,SESCO,annual,kg,01f3c2e1-2ae3-3c96-b4b6-2ade12362cba +2020,Chaco,II.1.1,4.55112,TJ,CH4,3.9,kg/TJ,17.749368,Gas Oil combustion consumption by freight transport,AR-H,SESCO,annual,kg,db5733e3-eb1f-36d2-86e3-0d6d1af9ac28 +2020,Chaco,II.1.1,4.55112,TJ,N2O,3.9,kg/TJ,17.749368,Gas Oil combustion consumption by freight transport,AR-H,SESCO,annual,kg,db5733e3-eb1f-36d2-86e3-0d6d1af9ac28 +2020,Chubut,II.1.1,14.59248,TJ,CO2,74100.0,kg/TJ,1081302.768,Gas Oil combustion consumption by freight transport,AR-U,SESCO,annual,kg,21093fe2-7448-304e-a290-96b9688341f6 +2020,Chubut,II.1.1,14.59248,TJ,CH4,3.9,kg/TJ,56.910672,Gas Oil combustion consumption by freight transport,AR-U,SESCO,annual,kg,e9be97f2-8df0-3fdc-a973-b272cf24d723 +2020,Chubut,II.1.1,14.59248,TJ,N2O,3.9,kg/TJ,56.910672,Gas Oil combustion consumption by freight transport,AR-U,SESCO,annual,kg,e9be97f2-8df0-3fdc-a973-b272cf24d723 +2020,Corrientes,II.1.1,10.185839999999999,TJ,CO2,74100.0,kg/TJ,754770.744,Gas Oil combustion consumption by freight transport,AR-W,SESCO,annual,kg,25a5f22d-d43e-3521-afdc-0bd78373cf93 +2020,Corrientes,II.1.1,10.185839999999999,TJ,CH4,3.9,kg/TJ,39.72477599999999,Gas Oil combustion consumption by freight transport,AR-W,SESCO,annual,kg,a5327e98-4ae6-304b-8dba-fe793f41e4e7 +2020,Corrientes,II.1.1,10.185839999999999,TJ,N2O,3.9,kg/TJ,39.72477599999999,Gas Oil combustion consumption by freight transport,AR-W,SESCO,annual,kg,a5327e98-4ae6-304b-8dba-fe793f41e4e7 +2020,Córdoba,II.1.1,17.37372,TJ,CO2,74100.0,kg/TJ,1287392.652,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,050cff94-b3ba-3fcf-b958-32b71fc0b5d0 +2020,Córdoba,II.1.1,17.37372,TJ,CH4,3.9,kg/TJ,67.75750799999999,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,b3d9d619-aa7c-3e04-9ed2-9d122afbfb83 +2020,Córdoba,II.1.1,17.37372,TJ,N2O,3.9,kg/TJ,67.75750799999999,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,b3d9d619-aa7c-3e04-9ed2-9d122afbfb83 +2020,Entre Rios,II.1.1,13.32828,TJ,CO2,74100.0,kg/TJ,987625.548,Gas Oil combustion consumption by freight transport,AR-E,SESCO,annual,kg,3f0d7fb5-870d-3622-b8bf-477fb91a8b1a +2020,Entre Rios,II.1.1,13.32828,TJ,CH4,3.9,kg/TJ,51.980292,Gas Oil combustion consumption by freight transport,AR-E,SESCO,annual,kg,2917f4a2-a433-33db-8814-8b93eec3527d +2020,Entre Rios,II.1.1,13.32828,TJ,N2O,3.9,kg/TJ,51.980292,Gas Oil combustion consumption by freight transport,AR-E,SESCO,annual,kg,2917f4a2-a433-33db-8814-8b93eec3527d +2020,Formosa,II.1.1,0.39732,TJ,CO2,74100.0,kg/TJ,29441.412,Gas Oil combustion consumption by freight transport,AR-P,SESCO,annual,kg,f7d0fc73-b46e-346d-8f12-8fa3fec0c5ac +2020,Formosa,II.1.1,0.39732,TJ,CH4,3.9,kg/TJ,1.549548,Gas Oil combustion consumption by freight transport,AR-P,SESCO,annual,kg,83498105-6c41-36ad-b581-bb69b5c8d561 +2020,Formosa,II.1.1,0.39732,TJ,N2O,3.9,kg/TJ,1.549548,Gas Oil combustion consumption by freight transport,AR-P,SESCO,annual,kg,83498105-6c41-36ad-b581-bb69b5c8d561 +2020,Jujuy,II.1.1,3.17856,TJ,CO2,74100.0,kg/TJ,235531.296,Gas Oil combustion consumption by freight transport,AR-Y,SESCO,annual,kg,17979128-e8bc-3d5c-ac73-cb002390c93c +2020,Jujuy,II.1.1,3.17856,TJ,CH4,3.9,kg/TJ,12.396384,Gas Oil combustion consumption by freight transport,AR-Y,SESCO,annual,kg,9d6aa97e-8199-3f61-bc87-27cd37396c88 +2020,Jujuy,II.1.1,3.17856,TJ,N2O,3.9,kg/TJ,12.396384,Gas Oil combustion consumption by freight transport,AR-Y,SESCO,annual,kg,9d6aa97e-8199-3f61-bc87-27cd37396c88 +2020,La Pampa,II.1.1,1.37256,TJ,CO2,74100.0,kg/TJ,101706.696,Gas Oil combustion consumption by freight transport,AR-L,SESCO,annual,kg,0d0f3400-0d0a-3d9f-8fe6-55f9d0171cb6 +2020,La Pampa,II.1.1,1.37256,TJ,CH4,3.9,kg/TJ,5.352984,Gas Oil combustion consumption by freight transport,AR-L,SESCO,annual,kg,0988c533-39ec-38e2-8e1c-74ae436b913f +2020,La Pampa,II.1.1,1.37256,TJ,N2O,3.9,kg/TJ,5.352984,Gas Oil combustion consumption by freight transport,AR-L,SESCO,annual,kg,0988c533-39ec-38e2-8e1c-74ae436b913f +2020,La Rioja,II.1.1,0.10836,TJ,CO2,74100.0,kg/TJ,8029.476,Gas Oil combustion consumption by freight transport,AR-F,SESCO,annual,kg,e07b9a20-8fa8-3e7c-a9d5-2e54dc7741fa +2020,La Rioja,II.1.1,0.10836,TJ,CH4,3.9,kg/TJ,0.422604,Gas Oil combustion consumption by freight transport,AR-F,SESCO,annual,kg,6788104c-c872-3539-869a-ed0f648f867f +2020,La Rioja,II.1.1,0.10836,TJ,N2O,3.9,kg/TJ,0.422604,Gas Oil combustion consumption by freight transport,AR-F,SESCO,annual,kg,6788104c-c872-3539-869a-ed0f648f867f +2020,Mendoza,II.1.1,7.3323599999999995,TJ,CO2,74100.0,kg/TJ,543327.8759999999,Gas Oil combustion consumption by freight transport,AR-M,SESCO,annual,kg,0d07290e-6980-3df1-9bb3-aa92fb581ef5 +2020,Mendoza,II.1.1,7.3323599999999995,TJ,CH4,3.9,kg/TJ,28.596203999999997,Gas Oil combustion consumption by freight transport,AR-M,SESCO,annual,kg,63c1dcef-6b95-3fab-8b5a-da7726dfe911 +2020,Mendoza,II.1.1,7.3323599999999995,TJ,N2O,3.9,kg/TJ,28.596203999999997,Gas Oil combustion consumption by freight transport,AR-M,SESCO,annual,kg,63c1dcef-6b95-3fab-8b5a-da7726dfe911 +2020,Misiones,II.1.1,2.6367599999999998,TJ,CO2,74100.0,kg/TJ,195383.916,Gas Oil combustion consumption by freight transport,AR-N,SESCO,annual,kg,f978e1e1-d9bb-3850-9c27-dcee126ad90b +2020,Misiones,II.1.1,2.6367599999999998,TJ,CH4,3.9,kg/TJ,10.283363999999999,Gas Oil combustion consumption by freight transport,AR-N,SESCO,annual,kg,b0b5c66d-6f91-3512-8de3-2981a499f31a +2020,Misiones,II.1.1,2.6367599999999998,TJ,N2O,3.9,kg/TJ,10.283363999999999,Gas Oil combustion consumption by freight transport,AR-N,SESCO,annual,kg,b0b5c66d-6f91-3512-8de3-2981a499f31a +2020,Neuquén,II.1.1,0.93912,TJ,CO2,74100.0,kg/TJ,69588.792,Gas Oil combustion consumption by freight transport,AR-Q,SESCO,annual,kg,71ae0bff-dd97-36ac-b622-8c735ba56efd +2020,Neuquén,II.1.1,0.93912,TJ,CH4,3.9,kg/TJ,3.662568,Gas Oil combustion consumption by freight transport,AR-Q,SESCO,annual,kg,559a2c6f-82be-3596-b2ad-3e8d7529e388 +2020,Neuquén,II.1.1,0.93912,TJ,N2O,3.9,kg/TJ,3.662568,Gas Oil combustion consumption by freight transport,AR-Q,SESCO,annual,kg,559a2c6f-82be-3596-b2ad-3e8d7529e388 +2020,Rio Negro,II.1.1,10.14972,TJ,CO2,74100.0,kg/TJ,752094.252,Gas Oil combustion consumption by freight transport,AR-R,SESCO,annual,kg,67c3d9a6-382a-342e-89bc-48f62aebdbe6 +2020,Rio Negro,II.1.1,10.14972,TJ,CH4,3.9,kg/TJ,39.583908,Gas Oil combustion consumption by freight transport,AR-R,SESCO,annual,kg,5c76f59d-a26c-376f-927b-3659ae4fe836 +2020,Rio Negro,II.1.1,10.14972,TJ,N2O,3.9,kg/TJ,39.583908,Gas Oil combustion consumption by freight transport,AR-R,SESCO,annual,kg,5c76f59d-a26c-376f-927b-3659ae4fe836 +2020,Salta,II.1.1,0.7223999999999999,TJ,CO2,74100.0,kg/TJ,53529.84,Gas Oil combustion consumption by freight transport,AR-A,SESCO,annual,kg,52340fee-ff2d-3165-90bd-b4c9320b45d4 +2020,Salta,II.1.1,0.7223999999999999,TJ,CH4,3.9,kg/TJ,2.81736,Gas Oil combustion consumption by freight transport,AR-A,SESCO,annual,kg,3f415a71-9139-3a3f-a565-30a329c8e397 +2020,Salta,II.1.1,0.7223999999999999,TJ,N2O,3.9,kg/TJ,2.81736,Gas Oil combustion consumption by freight transport,AR-A,SESCO,annual,kg,3f415a71-9139-3a3f-a565-30a329c8e397 +2020,San Juan,II.1.1,0.07224,TJ,CO2,74100.0,kg/TJ,5352.9839999999995,Gas Oil combustion consumption by freight transport,AR-J,SESCO,annual,kg,a36341f0-2deb-3be0-be3c-127b591e8f2e +2020,San Juan,II.1.1,0.07224,TJ,CH4,3.9,kg/TJ,0.281736,Gas Oil combustion consumption by freight transport,AR-J,SESCO,annual,kg,f0c602d8-00e1-34de-9792-455335f749d0 +2020,San Juan,II.1.1,0.07224,TJ,N2O,3.9,kg/TJ,0.281736,Gas Oil combustion consumption by freight transport,AR-J,SESCO,annual,kg,f0c602d8-00e1-34de-9792-455335f749d0 +2020,San Luis,II.1.1,3.68424,TJ,CO2,74100.0,kg/TJ,273002.184,Gas Oil combustion consumption by freight transport,AR-D,SESCO,annual,kg,9f864eef-8f17-3c89-bc53-0a9df259198c +2020,San Luis,II.1.1,3.68424,TJ,CH4,3.9,kg/TJ,14.368535999999999,Gas Oil combustion consumption by freight transport,AR-D,SESCO,annual,kg,1201eb33-8ba9-391e-ac45-5c001a5ae8aa +2020,San Luis,II.1.1,3.68424,TJ,N2O,3.9,kg/TJ,14.368535999999999,Gas Oil combustion consumption by freight transport,AR-D,SESCO,annual,kg,1201eb33-8ba9-391e-ac45-5c001a5ae8aa +2020,Santa Cruz,II.1.1,3.2508,TJ,CO2,74100.0,kg/TJ,240884.28,Gas Oil combustion consumption by freight transport,AR-Z,SESCO,annual,kg,5a765290-9dc7-368c-9efb-41bdddc215a6 +2020,Santa Cruz,II.1.1,3.2508,TJ,CH4,3.9,kg/TJ,12.67812,Gas Oil combustion consumption by freight transport,AR-Z,SESCO,annual,kg,7adba211-9c62-31db-806f-e4b7e316edcb +2020,Santa Cruz,II.1.1,3.2508,TJ,N2O,3.9,kg/TJ,12.67812,Gas Oil combustion consumption by freight transport,AR-Z,SESCO,annual,kg,7adba211-9c62-31db-806f-e4b7e316edcb +2020,Santa Fe,II.1.1,40.92396,TJ,CO2,74100.0,kg/TJ,3032465.436,Gas Oil combustion consumption by freight transport,AR-S,SESCO,annual,kg,902567fd-a7d0-3aeb-8ff3-d1ea36c2469e +2020,Santa Fe,II.1.1,40.92396,TJ,CH4,3.9,kg/TJ,159.603444,Gas Oil combustion consumption by freight transport,AR-S,SESCO,annual,kg,bd773019-e73a-3d85-8799-b25944cb9688 +2020,Santa Fe,II.1.1,40.92396,TJ,N2O,3.9,kg/TJ,159.603444,Gas Oil combustion consumption by freight transport,AR-S,SESCO,annual,kg,bd773019-e73a-3d85-8799-b25944cb9688 +2020,Santiago del Estero,II.1.1,5.345759999999999,TJ,CO2,74100.0,kg/TJ,396120.81599999993,Gas Oil combustion consumption by freight transport,AR-G,SESCO,annual,kg,07f1873a-24ea-364e-921c-4d99c21717b2 +2020,Santiago del Estero,II.1.1,5.345759999999999,TJ,CH4,3.9,kg/TJ,20.848463999999996,Gas Oil combustion consumption by freight transport,AR-G,SESCO,annual,kg,44ae5c70-f00e-3ef6-945e-b5d06324f38e +2020,Santiago del Estero,II.1.1,5.345759999999999,TJ,N2O,3.9,kg/TJ,20.848463999999996,Gas Oil combustion consumption by freight transport,AR-G,SESCO,annual,kg,44ae5c70-f00e-3ef6-945e-b5d06324f38e +2020,Tierra del Fuego,II.1.1,0.07224,TJ,CO2,74100.0,kg/TJ,5352.9839999999995,Gas Oil combustion consumption by freight transport,AR-V,SESCO,annual,kg,9538ea72-cb1a-31e8-a3c1-d6e09531b470 +2020,Tierra del Fuego,II.1.1,0.07224,TJ,CH4,3.9,kg/TJ,0.281736,Gas Oil combustion consumption by freight transport,AR-V,SESCO,annual,kg,bac7c95d-2ce8-3ad1-87f4-8e0804123eab +2020,Tierra del Fuego,II.1.1,0.07224,TJ,N2O,3.9,kg/TJ,0.281736,Gas Oil combustion consumption by freight transport,AR-V,SESCO,annual,kg,bac7c95d-2ce8-3ad1-87f4-8e0804123eab +2020,Tucuman,II.1.1,21.057959999999998,TJ,CO2,74100.0,kg/TJ,1560394.836,Gas Oil combustion consumption by freight transport,AR-T,SESCO,annual,kg,66e085ff-9134-39cc-ae56-d20a16609e9a +2020,Tucuman,II.1.1,21.057959999999998,TJ,CH4,3.9,kg/TJ,82.126044,Gas Oil combustion consumption by freight transport,AR-T,SESCO,annual,kg,ce14d3cd-8b15-3bf4-818f-2b22ab7d9729 +2020,Tucuman,II.1.1,21.057959999999998,TJ,N2O,3.9,kg/TJ,82.126044,Gas Oil combustion consumption by freight transport,AR-T,SESCO,annual,kg,ce14d3cd-8b15-3bf4-818f-2b22ab7d9729 +2020,Buenos Aires,II.1.1,11.204654999999999,TJ,CO2,73300.0,kg/TJ,821301.2115,Naphtha combustion consumption by freight transport,AR-B,SESCO,annual,kg,be79bee4-032b-3c7e-b17b-f06667845a36 +2020,Buenos Aires,II.1.1,11.204654999999999,TJ,CH4,0.5,kg/TJ,5.6023274999999995,Naphtha combustion consumption by freight transport,AR-B,SESCO,annual,kg,3c8109e5-371d-3c24-90b2-76ca65078fb8 +2020,Buenos Aires,II.1.1,11.204654999999999,TJ,N2O,2.0,kg/TJ,22.409309999999998,Naphtha combustion consumption by freight transport,AR-B,SESCO,annual,kg,c00a057a-dbae-3078-8481-205f1916318f +2020,Capital Federal,II.1.1,3.9062099999999997,TJ,CO2,73300.0,kg/TJ,286325.19299999997,Naphtha combustion consumption by freight transport,AR-C,SESCO,annual,kg,69c4f310-286f-31da-ac07-771925c6ede2 +2020,Capital Federal,II.1.1,3.9062099999999997,TJ,CH4,0.5,kg/TJ,1.9531049999999999,Naphtha combustion consumption by freight transport,AR-C,SESCO,annual,kg,a7ed8784-43fc-34fa-aa9a-6ef758d889e4 +2020,Capital Federal,II.1.1,3.9062099999999997,TJ,N2O,2.0,kg/TJ,7.8124199999999995,Naphtha combustion consumption by freight transport,AR-C,SESCO,annual,kg,93c7db9a-5a8f-34ba-b540-ff41d93f7c5a +2020,Córdoba,II.1.1,1.3363349999999998,TJ,CO2,73300.0,kg/TJ,97953.35549999999,Naphtha combustion consumption by freight transport,AR-X,SESCO,annual,kg,0a77ce40-121b-3fc8-80e2-41189d75ebbe +2020,Córdoba,II.1.1,1.3363349999999998,TJ,CH4,0.5,kg/TJ,0.6681674999999999,Naphtha combustion consumption by freight transport,AR-X,SESCO,annual,kg,7926b6d8-442a-3cb6-82c3-b214219e7f3a +2020,Córdoba,II.1.1,1.3363349999999998,TJ,N2O,2.0,kg/TJ,2.6726699999999997,Naphtha combustion consumption by freight transport,AR-X,SESCO,annual,kg,18443616-0ae4-3745-a150-aa2be82fb527 +2020,Entre Rios,II.1.1,0.376915,TJ,CO2,73300.0,kg/TJ,27627.8695,Naphtha combustion consumption by freight transport,AR-E,SESCO,annual,kg,388f646f-0673-3286-a10a-f17f767fc36e +2020,Entre Rios,II.1.1,0.376915,TJ,CH4,0.5,kg/TJ,0.1884575,Naphtha combustion consumption by freight transport,AR-E,SESCO,annual,kg,73b04420-b34b-3245-8840-d7248fc2f574 +2020,Entre Rios,II.1.1,0.376915,TJ,N2O,2.0,kg/TJ,0.75383,Naphtha combustion consumption by freight transport,AR-E,SESCO,annual,kg,43f0ec35-c34f-3b3a-a257-0d7e33cbe9a8 +2020,Jujuy,II.1.1,0.034265,TJ,CO2,73300.0,kg/TJ,2511.6245,Naphtha combustion consumption by freight transport,AR-Y,SESCO,annual,kg,0029cf2c-68dc-3bf5-be74-685eada502bd +2020,Jujuy,II.1.1,0.034265,TJ,CH4,0.5,kg/TJ,0.0171325,Naphtha combustion consumption by freight transport,AR-Y,SESCO,annual,kg,3aca582d-11ed-3c89-9ba0-d95965ffa1fc +2020,Jujuy,II.1.1,0.034265,TJ,N2O,2.0,kg/TJ,0.06853,Naphtha combustion consumption by freight transport,AR-Y,SESCO,annual,kg,70642e49-49c0-3107-aafe-758b99450560 +2020,Mendoza,II.1.1,0.171325,TJ,CO2,73300.0,kg/TJ,12558.1225,Naphtha combustion consumption by freight transport,AR-M,SESCO,annual,kg,d91dc4ee-a3b9-31c1-a016-25b6aae1bbd3 +2020,Mendoza,II.1.1,0.171325,TJ,CH4,0.5,kg/TJ,0.0856625,Naphtha combustion consumption by freight transport,AR-M,SESCO,annual,kg,aaadf474-a19e-3fa6-9ad5-5e75e19609a0 +2020,Mendoza,II.1.1,0.171325,TJ,N2O,2.0,kg/TJ,0.34265,Naphtha combustion consumption by freight transport,AR-M,SESCO,annual,kg,eee3fe52-a031-373a-8c3c-0f601e7b89ab +2020,Santa Fe,II.1.1,1.404865,TJ,CO2,73300.0,kg/TJ,102976.6045,Naphtha combustion consumption by freight transport,AR-S,SESCO,annual,kg,9929abb6-547d-37fa-baf6-796aa7af81ba +2020,Santa Fe,II.1.1,1.404865,TJ,CH4,0.5,kg/TJ,0.7024325,Naphtha combustion consumption by freight transport,AR-S,SESCO,annual,kg,d48d6136-6665-32df-a1d5-08a5f6c34481 +2020,Santa Fe,II.1.1,1.404865,TJ,N2O,2.0,kg/TJ,2.80973,Naphtha combustion consumption by freight transport,AR-S,SESCO,annual,kg,24bb6452-f233-3da7-99a4-39ea09e81071 +2020,Buenos Aires,II.1.1,6.544614999999999,TJ,CO2,73300.0,kg/TJ,479720.27949999995,Naphtha combustion consumption by freight transport,AR-B,SESCO,annual,kg,b2aa1a8f-5982-39aa-90ad-7b4ce1205a5e +2020,Buenos Aires,II.1.1,6.544614999999999,TJ,CH4,0.5,kg/TJ,3.2723074999999997,Naphtha combustion consumption by freight transport,AR-B,SESCO,annual,kg,9938b19c-bc0f-3e49-9183-ee4a6608bc51 +2020,Buenos Aires,II.1.1,6.544614999999999,TJ,N2O,2.0,kg/TJ,13.089229999999999,Naphtha combustion consumption by freight transport,AR-B,SESCO,annual,kg,684a5043-6ca8-356f-ac74-a910b0032674 +2020,Capital Federal,II.1.1,2.80973,TJ,CO2,73300.0,kg/TJ,205953.209,Naphtha combustion consumption by freight transport,AR-C,SESCO,annual,kg,5a145291-4629-353c-ba4d-d7f60095b467 +2020,Capital Federal,II.1.1,2.80973,TJ,CH4,0.5,kg/TJ,1.404865,Naphtha combustion consumption by freight transport,AR-C,SESCO,annual,kg,884268ff-aecc-3ae0-8916-1568939a731a +2020,Capital Federal,II.1.1,2.80973,TJ,N2O,2.0,kg/TJ,5.61946,Naphtha combustion consumption by freight transport,AR-C,SESCO,annual,kg,45340646-c154-3eee-9300-ab013f14a0b4 +2020,Corrientes,II.1.1,0.27412,TJ,CO2,73300.0,kg/TJ,20092.996,Naphtha combustion consumption by freight transport,AR-W,SESCO,annual,kg,a6184504-f6f8-3c60-9921-8849bda244b8 +2020,Corrientes,II.1.1,0.27412,TJ,CH4,0.5,kg/TJ,0.13706,Naphtha combustion consumption by freight transport,AR-W,SESCO,annual,kg,a51b10e6-1761-379a-9ed0-9ddccbe9b25d +2020,Corrientes,II.1.1,0.27412,TJ,N2O,2.0,kg/TJ,0.54824,Naphtha combustion consumption by freight transport,AR-W,SESCO,annual,kg,9071cbb9-e026-35de-a611-9e847c49e7d8 +2020,Córdoba,II.1.1,0.788095,TJ,CO2,73300.0,kg/TJ,57767.3635,Naphtha combustion consumption by freight transport,AR-X,SESCO,annual,kg,ad321f47-d959-33a8-b920-ce81fbf40948 +2020,Córdoba,II.1.1,0.788095,TJ,CH4,0.5,kg/TJ,0.3940475,Naphtha combustion consumption by freight transport,AR-X,SESCO,annual,kg,8ea7e71f-71d8-3685-85db-fc385b8561c4 +2020,Córdoba,II.1.1,0.788095,TJ,N2O,2.0,kg/TJ,1.57619,Naphtha combustion consumption by freight transport,AR-X,SESCO,annual,kg,b94c1cf4-8e4e-3a65-be66-db22deee7d40 +2020,Entre Rios,II.1.1,0.89089,TJ,CO2,73300.0,kg/TJ,65302.236999999994,Naphtha combustion consumption by freight transport,AR-E,SESCO,annual,kg,7bd5847e-edcb-34b2-938e-10f4b2b8e305 +2020,Entre Rios,II.1.1,0.89089,TJ,CH4,0.5,kg/TJ,0.445445,Naphtha combustion consumption by freight transport,AR-E,SESCO,annual,kg,f4b6a4f9-33e6-3aed-b647-e8716b921753 +2020,Entre Rios,II.1.1,0.89089,TJ,N2O,2.0,kg/TJ,1.78178,Naphtha combustion consumption by freight transport,AR-E,SESCO,annual,kg,1cfb71c2-c4af-3aa7-8cd0-6623738bdf85 +2020,Santa Fe,II.1.1,1.43913,TJ,CO2,73300.0,kg/TJ,105488.229,Naphtha combustion consumption by freight transport,AR-S,SESCO,annual,kg,ac06742f-489b-3770-90eb-c237bbe2fbb5 +2020,Santa Fe,II.1.1,1.43913,TJ,CH4,0.5,kg/TJ,0.719565,Naphtha combustion consumption by freight transport,AR-S,SESCO,annual,kg,bfbd6c44-044f-397e-9ec3-6ea43c878d14 +2020,Santa Fe,II.1.1,1.43913,TJ,N2O,2.0,kg/TJ,2.87826,Naphtha combustion consumption by freight transport,AR-S,SESCO,annual,kg,550db7ad-0a9b-324e-a1a6-333465ced93a +2020,Buenos Aires,II.1.1,1113.79632,TJ,CO2,74100.0,kg/TJ,82532307.31199999,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,8f49c4a4-ea8d-3072-9675-1ced19b9c3df +2020,Buenos Aires,II.1.1,1113.79632,TJ,CH4,3.9,kg/TJ,4343.805648,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,9a06128a-3aa4-35f3-9ca4-a9925798b28e +2020,Buenos Aires,II.1.1,1113.79632,TJ,N2O,3.9,kg/TJ,4343.805648,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,9a06128a-3aa4-35f3-9ca4-a9925798b28e +2020,Capital Federal,II.1.1,324.75491999999997,TJ,CO2,74100.0,kg/TJ,24064339.571999997,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,5ee76078-f211-35c1-bcb0-d2b7d0ebfcf2 +2020,Capital Federal,II.1.1,324.75491999999997,TJ,CH4,3.9,kg/TJ,1266.5441879999998,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,fa41c195-e846-3391-b1e6-1a00cd099d27 +2020,Capital Federal,II.1.1,324.75491999999997,TJ,N2O,3.9,kg/TJ,1266.5441879999998,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,fa41c195-e846-3391-b1e6-1a00cd099d27 +2020,Chaco,II.1.1,12.67812,TJ,CO2,74100.0,kg/TJ,939448.692,Gas Oil combustion consumption by public passenger transport,AR-H,SESCO,annual,kg,c1ce5347-a3e4-3fb3-8394-fae7e0ced57d +2020,Chaco,II.1.1,12.67812,TJ,CH4,3.9,kg/TJ,49.444668,Gas Oil combustion consumption by public passenger transport,AR-H,SESCO,annual,kg,4329599a-f4e9-3d8e-8a50-db4875c44a47 +2020,Chaco,II.1.1,12.67812,TJ,N2O,3.9,kg/TJ,49.444668,Gas Oil combustion consumption by public passenger transport,AR-H,SESCO,annual,kg,4329599a-f4e9-3d8e-8a50-db4875c44a47 +2020,Chubut,II.1.1,1.48092,TJ,CO2,74100.0,kg/TJ,109736.172,Gas Oil combustion consumption by public passenger transport,AR-U,SESCO,annual,kg,f8ea51f2-ad32-37c2-8253-69119787893a +2020,Chubut,II.1.1,1.48092,TJ,CH4,3.9,kg/TJ,5.775588,Gas Oil combustion consumption by public passenger transport,AR-U,SESCO,annual,kg,4b542583-ca65-3950-91c8-79583ff5f720 +2020,Chubut,II.1.1,1.48092,TJ,N2O,3.9,kg/TJ,5.775588,Gas Oil combustion consumption by public passenger transport,AR-U,SESCO,annual,kg,4b542583-ca65-3950-91c8-79583ff5f720 +2020,Corrientes,II.1.1,0.9029999999999999,TJ,CO2,74100.0,kg/TJ,66912.29999999999,Gas Oil combustion consumption by public passenger transport,AR-W,SESCO,annual,kg,b90da356-53ad-36b9-b726-07e56223b352 +2020,Corrientes,II.1.1,0.9029999999999999,TJ,CH4,3.9,kg/TJ,3.5216999999999996,Gas Oil combustion consumption by public passenger transport,AR-W,SESCO,annual,kg,a0929582-feb9-3023-b995-8b4467111a2e +2020,Corrientes,II.1.1,0.9029999999999999,TJ,N2O,3.9,kg/TJ,3.5216999999999996,Gas Oil combustion consumption by public passenger transport,AR-W,SESCO,annual,kg,a0929582-feb9-3023-b995-8b4467111a2e +2020,Córdoba,II.1.1,96.94608,TJ,CO2,74100.0,kg/TJ,7183704.528,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,c7bd108f-d628-3b87-9230-081abe02a7fa +2020,Córdoba,II.1.1,96.94608,TJ,CH4,3.9,kg/TJ,378.08971199999996,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,0d699e5e-6b8f-3d7b-9a23-c0dbb5c54bb5 +2020,Córdoba,II.1.1,96.94608,TJ,N2O,3.9,kg/TJ,378.08971199999996,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,0d699e5e-6b8f-3d7b-9a23-c0dbb5c54bb5 +2020,Entre Rios,II.1.1,33.62772,TJ,CO2,74100.0,kg/TJ,2491814.0519999997,Gas Oil combustion consumption by public passenger transport,AR-E,SESCO,annual,kg,71ed92c7-f6c2-3ece-a149-5b13a16a155b +2020,Entre Rios,II.1.1,33.62772,TJ,CH4,3.9,kg/TJ,131.14810799999998,Gas Oil combustion consumption by public passenger transport,AR-E,SESCO,annual,kg,d7edf399-f96f-35b7-b822-c7b61c79b734 +2020,Entre Rios,II.1.1,33.62772,TJ,N2O,3.9,kg/TJ,131.14810799999998,Gas Oil combustion consumption by public passenger transport,AR-E,SESCO,annual,kg,d7edf399-f96f-35b7-b822-c7b61c79b734 +2020,Formosa,II.1.1,0.10836,TJ,CO2,74100.0,kg/TJ,8029.476,Gas Oil combustion consumption by public passenger transport,AR-P,SESCO,annual,kg,c840ef39-5db3-3991-abbd-12d53405e71c +2020,Formosa,II.1.1,0.10836,TJ,CH4,3.9,kg/TJ,0.422604,Gas Oil combustion consumption by public passenger transport,AR-P,SESCO,annual,kg,4bda966b-5207-3f6e-945c-fa4e606d4620 +2020,Formosa,II.1.1,0.10836,TJ,N2O,3.9,kg/TJ,0.422604,Gas Oil combustion consumption by public passenger transport,AR-P,SESCO,annual,kg,4bda966b-5207-3f6e-945c-fa4e606d4620 +2020,La Pampa,II.1.1,0.28896,TJ,CO2,74100.0,kg/TJ,21411.935999999998,Gas Oil combustion consumption by public passenger transport,AR-L,SESCO,annual,kg,5ba0f049-0653-35a9-8d48-7459ba7d4c3d +2020,La Pampa,II.1.1,0.28896,TJ,CH4,3.9,kg/TJ,1.126944,Gas Oil combustion consumption by public passenger transport,AR-L,SESCO,annual,kg,5dc698ce-7188-38fe-8b00-db5ec8b4c379 +2020,La Pampa,II.1.1,0.28896,TJ,N2O,3.9,kg/TJ,1.126944,Gas Oil combustion consumption by public passenger transport,AR-L,SESCO,annual,kg,5dc698ce-7188-38fe-8b00-db5ec8b4c379 +2020,Mendoza,II.1.1,2.56452,TJ,CO2,74100.0,kg/TJ,190030.932,Gas Oil combustion consumption by public passenger transport,AR-M,SESCO,annual,kg,dce0284c-2a11-30fa-bd0d-06abdd8dd1f9 +2020,Mendoza,II.1.1,2.56452,TJ,CH4,3.9,kg/TJ,10.001628,Gas Oil combustion consumption by public passenger transport,AR-M,SESCO,annual,kg,48ef0c12-4f1a-3c7c-8823-54f3202cc1a9 +2020,Mendoza,II.1.1,2.56452,TJ,N2O,3.9,kg/TJ,10.001628,Gas Oil combustion consumption by public passenger transport,AR-M,SESCO,annual,kg,48ef0c12-4f1a-3c7c-8823-54f3202cc1a9 +2020,Misiones,II.1.1,1.76988,TJ,CO2,74100.0,kg/TJ,131148.10799999998,Gas Oil combustion consumption by public passenger transport,AR-N,SESCO,annual,kg,27c84913-bf89-30d4-bba2-9044bda805d2 +2020,Misiones,II.1.1,1.76988,TJ,CH4,3.9,kg/TJ,6.902531999999999,Gas Oil combustion consumption by public passenger transport,AR-N,SESCO,annual,kg,9422ae97-c7b7-3b83-8301-5d8a9d37099b +2020,Misiones,II.1.1,1.76988,TJ,N2O,3.9,kg/TJ,6.902531999999999,Gas Oil combustion consumption by public passenger transport,AR-N,SESCO,annual,kg,9422ae97-c7b7-3b83-8301-5d8a9d37099b +2020,Neuquén,II.1.1,2.2033199999999997,TJ,CO2,74100.0,kg/TJ,163266.012,Gas Oil combustion consumption by public passenger transport,AR-Q,SESCO,annual,kg,96a94bc2-1b35-3abe-b7a0-93cb29ff9928 +2020,Neuquén,II.1.1,2.2033199999999997,TJ,CH4,3.9,kg/TJ,8.592947999999998,Gas Oil combustion consumption by public passenger transport,AR-Q,SESCO,annual,kg,6b31febd-2a9a-3dbe-a7af-d577952056a9 +2020,Neuquén,II.1.1,2.2033199999999997,TJ,N2O,3.9,kg/TJ,8.592947999999998,Gas Oil combustion consumption by public passenger transport,AR-Q,SESCO,annual,kg,6b31febd-2a9a-3dbe-a7af-d577952056a9 +2020,Rio Negro,II.1.1,4.18992,TJ,CO2,74100.0,kg/TJ,310473.072,Gas Oil combustion consumption by public passenger transport,AR-R,SESCO,annual,kg,40122746-4a83-3388-9591-4432edb6646a +2020,Rio Negro,II.1.1,4.18992,TJ,CH4,3.9,kg/TJ,16.340688,Gas Oil combustion consumption by public passenger transport,AR-R,SESCO,annual,kg,67ae295c-5842-3c97-826c-69319f89518e +2020,Rio Negro,II.1.1,4.18992,TJ,N2O,3.9,kg/TJ,16.340688,Gas Oil combustion consumption by public passenger transport,AR-R,SESCO,annual,kg,67ae295c-5842-3c97-826c-69319f89518e +2020,Salta,II.1.1,8.16312,TJ,CO2,74100.0,kg/TJ,604887.1919999999,Gas Oil combustion consumption by public passenger transport,AR-A,SESCO,annual,kg,81296f89-4149-3b13-9ba8-1564e5e896b6 +2020,Salta,II.1.1,8.16312,TJ,CH4,3.9,kg/TJ,31.836167999999997,Gas Oil combustion consumption by public passenger transport,AR-A,SESCO,annual,kg,f2bdcc34-f676-3c93-8fb5-77d3b015db7a +2020,Salta,II.1.1,8.16312,TJ,N2O,3.9,kg/TJ,31.836167999999997,Gas Oil combustion consumption by public passenger transport,AR-A,SESCO,annual,kg,f2bdcc34-f676-3c93-8fb5-77d3b015db7a +2020,San Juan,II.1.1,0.03612,TJ,CO2,74100.0,kg/TJ,2676.4919999999997,Gas Oil combustion consumption by public passenger transport,AR-J,SESCO,annual,kg,f1c36709-d37a-3179-ace9-0637f6c05a1f +2020,San Juan,II.1.1,0.03612,TJ,CH4,3.9,kg/TJ,0.140868,Gas Oil combustion consumption by public passenger transport,AR-J,SESCO,annual,kg,5e76d161-edcd-3406-a470-b0dd11894374 +2020,San Juan,II.1.1,0.03612,TJ,N2O,3.9,kg/TJ,0.140868,Gas Oil combustion consumption by public passenger transport,AR-J,SESCO,annual,kg,5e76d161-edcd-3406-a470-b0dd11894374 +2020,Santa Fe,II.1.1,135.2694,TJ,CO2,74100.0,kg/TJ,10023462.54,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,1444492f-24a0-380a-a63c-f2bb35b8ba57 +2020,Santa Fe,II.1.1,135.2694,TJ,CH4,3.9,kg/TJ,527.55066,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,6fc38ef6-b93e-3a95-b810-8a97f7628cf4 +2020,Santa Fe,II.1.1,135.2694,TJ,N2O,3.9,kg/TJ,527.55066,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,6fc38ef6-b93e-3a95-b810-8a97f7628cf4 +2020,Santiago del Estero,II.1.1,0.07224,TJ,CO2,74100.0,kg/TJ,5352.9839999999995,Gas Oil combustion consumption by public passenger transport,AR-G,SESCO,annual,kg,02b10c80-f015-39cb-aa5e-0fa5fb8fab17 +2020,Santiago del Estero,II.1.1,0.07224,TJ,CH4,3.9,kg/TJ,0.281736,Gas Oil combustion consumption by public passenger transport,AR-G,SESCO,annual,kg,e5567771-8320-33a5-9f80-456ff2ef92f1 +2020,Santiago del Estero,II.1.1,0.07224,TJ,N2O,3.9,kg/TJ,0.281736,Gas Oil combustion consumption by public passenger transport,AR-G,SESCO,annual,kg,e5567771-8320-33a5-9f80-456ff2ef92f1 +2020,Tucuman,II.1.1,114.24756,TJ,CO2,74100.0,kg/TJ,8465744.195999999,Gas Oil combustion consumption by public passenger transport,AR-T,SESCO,annual,kg,94534576-0a83-381a-a4bc-b0df5bf35101 +2020,Tucuman,II.1.1,114.24756,TJ,CH4,3.9,kg/TJ,445.56548399999997,Gas Oil combustion consumption by public passenger transport,AR-T,SESCO,annual,kg,9355f86d-f6f6-3fd5-95c3-6daed44291e1 +2020,Tucuman,II.1.1,114.24756,TJ,N2O,3.9,kg/TJ,445.56548399999997,Gas Oil combustion consumption by public passenger transport,AR-T,SESCO,annual,kg,9355f86d-f6f6-3fd5-95c3-6daed44291e1 +2020,Buenos Aires,II.1.1,414.8382,TJ,CO2,74100.0,kg/TJ,30739510.619999997,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,1ad0f220-3597-3f67-9c83-b71dd91d02e8 +2020,Buenos Aires,II.1.1,414.8382,TJ,CH4,3.9,kg/TJ,1617.86898,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,4d2c8337-1e73-374b-8acd-0f11e183f9e4 +2020,Buenos Aires,II.1.1,414.8382,TJ,N2O,3.9,kg/TJ,1617.86898,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,4d2c8337-1e73-374b-8acd-0f11e183f9e4 +2020,Capital Federal,II.1.1,232.72116,TJ,CO2,74100.0,kg/TJ,17244637.956,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,b4703c48-c7c3-3f65-bd70-71cfd476d0db +2020,Capital Federal,II.1.1,232.72116,TJ,CH4,3.9,kg/TJ,907.612524,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,c0bfe0b7-5599-338b-a285-f1b143b67ac0 +2020,Capital Federal,II.1.1,232.72116,TJ,N2O,3.9,kg/TJ,907.612524,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,c0bfe0b7-5599-338b-a285-f1b143b67ac0 +2020,Chubut,II.1.1,0.03612,TJ,CO2,74100.0,kg/TJ,2676.4919999999997,Gas Oil combustion consumption by public passenger transport,AR-U,SESCO,annual,kg,0018d26a-3f3a-3ed0-a113-24f50a4bca7b +2020,Chubut,II.1.1,0.03612,TJ,CH4,3.9,kg/TJ,0.140868,Gas Oil combustion consumption by public passenger transport,AR-U,SESCO,annual,kg,c935cdd5-ed88-35ce-8d68-c14891c9caad +2020,Chubut,II.1.1,0.03612,TJ,N2O,3.9,kg/TJ,0.140868,Gas Oil combustion consumption by public passenger transport,AR-U,SESCO,annual,kg,c935cdd5-ed88-35ce-8d68-c14891c9caad +2020,Corrientes,II.1.1,0.36119999999999997,TJ,CO2,74100.0,kg/TJ,26764.92,Gas Oil combustion consumption by public passenger transport,AR-W,SESCO,annual,kg,ee69e8ca-aa88-3d23-a14a-edb9b655aa89 +2020,Corrientes,II.1.1,0.36119999999999997,TJ,CH4,3.9,kg/TJ,1.40868,Gas Oil combustion consumption by public passenger transport,AR-W,SESCO,annual,kg,33a05aff-5b9a-302a-825b-f010a9451d19 +2020,Corrientes,II.1.1,0.36119999999999997,TJ,N2O,3.9,kg/TJ,1.40868,Gas Oil combustion consumption by public passenger transport,AR-W,SESCO,annual,kg,33a05aff-5b9a-302a-825b-f010a9451d19 +2020,Córdoba,II.1.1,0.46956,TJ,CO2,74100.0,kg/TJ,34794.396,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,d48b08ac-dbe5-3b5b-98e5-4bfd86f39a25 +2020,Córdoba,II.1.1,0.46956,TJ,CH4,3.9,kg/TJ,1.831284,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,ba9825fb-0d5c-3509-9dea-a95e47bc0463 +2020,Córdoba,II.1.1,0.46956,TJ,N2O,3.9,kg/TJ,1.831284,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,ba9825fb-0d5c-3509-9dea-a95e47bc0463 +2020,Entre Rios,II.1.1,1.9143599999999998,TJ,CO2,74100.0,kg/TJ,141854.076,Gas Oil combustion consumption by public passenger transport,AR-E,SESCO,annual,kg,f6ae5b98-0c58-3284-885a-bd39003c050b +2020,Entre Rios,II.1.1,1.9143599999999998,TJ,CH4,3.9,kg/TJ,7.466003999999999,Gas Oil combustion consumption by public passenger transport,AR-E,SESCO,annual,kg,ec28c9ec-d133-3a4f-9000-cdca22f5ba8e +2020,Entre Rios,II.1.1,1.9143599999999998,TJ,N2O,3.9,kg/TJ,7.466003999999999,Gas Oil combustion consumption by public passenger transport,AR-E,SESCO,annual,kg,ec28c9ec-d133-3a4f-9000-cdca22f5ba8e +2020,La Pampa,II.1.1,0.03612,TJ,CO2,74100.0,kg/TJ,2676.4919999999997,Gas Oil combustion consumption by public passenger transport,AR-L,SESCO,annual,kg,5fa51960-36e1-3a0d-bce5-0dd2a833e98e +2020,La Pampa,II.1.1,0.03612,TJ,CH4,3.9,kg/TJ,0.140868,Gas Oil combustion consumption by public passenger transport,AR-L,SESCO,annual,kg,9bffa227-caae-3d79-9202-c83612263ab2 +2020,La Pampa,II.1.1,0.03612,TJ,N2O,3.9,kg/TJ,0.140868,Gas Oil combustion consumption by public passenger transport,AR-L,SESCO,annual,kg,9bffa227-caae-3d79-9202-c83612263ab2 +2020,Misiones,II.1.1,7.98252,TJ,CO2,74100.0,kg/TJ,591504.732,Gas Oil combustion consumption by public passenger transport,AR-N,SESCO,annual,kg,ddf36c8e-bb57-3c74-9b97-7899194c8e2e +2020,Misiones,II.1.1,7.98252,TJ,CH4,3.9,kg/TJ,31.131828,Gas Oil combustion consumption by public passenger transport,AR-N,SESCO,annual,kg,273bc418-1d5b-3fbe-80b8-0164d6c53398 +2020,Misiones,II.1.1,7.98252,TJ,N2O,3.9,kg/TJ,31.131828,Gas Oil combustion consumption by public passenger transport,AR-N,SESCO,annual,kg,273bc418-1d5b-3fbe-80b8-0164d6c53398 +2020,Neuquén,II.1.1,11.738999999999999,TJ,CO2,74100.0,kg/TJ,869859.8999999999,Gas Oil combustion consumption by public passenger transport,AR-Q,SESCO,annual,kg,0cd58816-a371-3edd-bad4-18b7c1603d71 +2020,Neuquén,II.1.1,11.738999999999999,TJ,CH4,3.9,kg/TJ,45.78209999999999,Gas Oil combustion consumption by public passenger transport,AR-Q,SESCO,annual,kg,c9546000-689b-3c02-be0e-c65d37fe1ce9 +2020,Neuquén,II.1.1,11.738999999999999,TJ,N2O,3.9,kg/TJ,45.78209999999999,Gas Oil combustion consumption by public passenger transport,AR-Q,SESCO,annual,kg,c9546000-689b-3c02-be0e-c65d37fe1ce9 +2020,Rio Negro,II.1.1,26.909399999999998,TJ,CO2,74100.0,kg/TJ,1993986.5399999998,Gas Oil combustion consumption by public passenger transport,AR-R,SESCO,annual,kg,beb33958-10b8-389a-9467-116d4c22e97b +2020,Rio Negro,II.1.1,26.909399999999998,TJ,CH4,3.9,kg/TJ,104.94666,Gas Oil combustion consumption by public passenger transport,AR-R,SESCO,annual,kg,fb97bcd7-55e8-3402-bd4f-5fa497cdecd9 +2020,Rio Negro,II.1.1,26.909399999999998,TJ,N2O,3.9,kg/TJ,104.94666,Gas Oil combustion consumption by public passenger transport,AR-R,SESCO,annual,kg,fb97bcd7-55e8-3402-bd4f-5fa497cdecd9 +2020,Santa Fe,II.1.1,31.027079999999998,TJ,CO2,74100.0,kg/TJ,2299106.628,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,abce6ba7-da1f-37fc-984d-4206c995f8c8 +2020,Santa Fe,II.1.1,31.027079999999998,TJ,CH4,3.9,kg/TJ,121.00561199999999,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,ce7b7ee3-257b-3e2f-8131-bc4f8787ff1c +2020,Santa Fe,II.1.1,31.027079999999998,TJ,N2O,3.9,kg/TJ,121.00561199999999,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,ce7b7ee3-257b-3e2f-8131-bc4f8787ff1c +2020,Santiago del Estero,II.1.1,0.07224,TJ,CO2,74100.0,kg/TJ,5352.9839999999995,Gas Oil combustion consumption by public passenger transport,AR-G,SESCO,annual,kg,02b10c80-f015-39cb-aa5e-0fa5fb8fab17 +2020,Santiago del Estero,II.1.1,0.07224,TJ,CH4,3.9,kg/TJ,0.281736,Gas Oil combustion consumption by public passenger transport,AR-G,SESCO,annual,kg,e5567771-8320-33a5-9f80-456ff2ef92f1 +2020,Santiago del Estero,II.1.1,0.07224,TJ,N2O,3.9,kg/TJ,0.281736,Gas Oil combustion consumption by public passenger transport,AR-G,SESCO,annual,kg,e5567771-8320-33a5-9f80-456ff2ef92f1 +2020,Santa Fe,II.1.1,0.102795,TJ,CO2,73300.0,kg/TJ,7534.8735,Naphtha combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,4e6b7f0b-eb3a-3e67-9d8f-9906a928ee42 +2020,Santa Fe,II.1.1,0.102795,TJ,CH4,0.5,kg/TJ,0.0513975,Naphtha combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,41bde552-8f76-35f0-b6e4-ce0a90f63d87 +2020,Santa Fe,II.1.1,0.102795,TJ,N2O,2.0,kg/TJ,0.20559,Naphtha combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,c44fc14e-5bd9-34e9-8043-44ae588beac7 +2020,Córdoba,II.1.1,0.034265,TJ,CO2,73300.0,kg/TJ,2511.6245,Naphtha combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,2214027b-c809-34d2-81ac-873dd7fdda96 +2020,Córdoba,II.1.1,0.034265,TJ,CH4,0.5,kg/TJ,0.0171325,Naphtha combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,c0a71c69-abea-34d7-807d-e78d311271fe +2020,Córdoba,II.1.1,0.034265,TJ,N2O,2.0,kg/TJ,0.06853,Naphtha combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,7631451b-e6e1-3120-aa47-66564218911e +2020,Buenos Aires,II.5.1,260.13624,TJ,CO2,74100.0,kg/TJ,19276095.384,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,fb0cd7a4-ee4e-343d-9e63-981650a37518 +2020,Buenos Aires,II.5.1,260.13624,TJ,CH4,3.9,kg/TJ,1014.5313359999999,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,28d8e919-99ed-35dd-bfbd-c663848ad99c +2020,Buenos Aires,II.5.1,260.13624,TJ,N2O,3.9,kg/TJ,1014.5313359999999,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,28d8e919-99ed-35dd-bfbd-c663848ad99c +2020,Corrientes,II.5.1,7.98252,TJ,CO2,74100.0,kg/TJ,591504.732,Gas Oil combustion consumption by agriculture machines,AR-W,SESCO,annual,kg,039a3859-ff2b-3768-ad2e-09ab25d52912 +2020,Corrientes,II.5.1,7.98252,TJ,CH4,3.9,kg/TJ,31.131828,Gas Oil combustion consumption by agriculture machines,AR-W,SESCO,annual,kg,5bfff8c8-7236-3d9f-93b8-de29c3b4b7ea +2020,Corrientes,II.5.1,7.98252,TJ,N2O,3.9,kg/TJ,31.131828,Gas Oil combustion consumption by agriculture machines,AR-W,SESCO,annual,kg,5bfff8c8-7236-3d9f-93b8-de29c3b4b7ea +2020,Córdoba,II.5.1,16.86804,TJ,CO2,74100.0,kg/TJ,1249921.764,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,94f9ab9b-53e6-3bde-8515-b20baf889dae +2020,Córdoba,II.5.1,16.86804,TJ,CH4,3.9,kg/TJ,65.78535600000001,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,7dbc93ba-b74b-344a-9826-3aa9124bf47e +2020,Córdoba,II.5.1,16.86804,TJ,N2O,3.9,kg/TJ,65.78535600000001,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,7dbc93ba-b74b-344a-9826-3aa9124bf47e +2020,Entre Rios,II.5.1,78.59711999999999,TJ,CO2,74100.0,kg/TJ,5824046.591999999,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,6fae0e90-d608-3119-9a86-9d54adc5c45e +2020,Entre Rios,II.5.1,78.59711999999999,TJ,CH4,3.9,kg/TJ,306.52876799999996,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,576a2001-0f0e-37b1-9477-5298fa6b6767 +2020,Entre Rios,II.5.1,78.59711999999999,TJ,N2O,3.9,kg/TJ,306.52876799999996,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,576a2001-0f0e-37b1-9477-5298fa6b6767 +2020,Santa Fe,II.5.1,39.62364,TJ,CO2,74100.0,kg/TJ,2936111.724,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,400d7078-4735-304f-b188-56876790c9a0 +2020,Santa Fe,II.5.1,39.62364,TJ,CH4,3.9,kg/TJ,154.532196,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,0edfa362-b029-35fa-9f4c-605e293428e6 +2020,Santa Fe,II.5.1,39.62364,TJ,N2O,3.9,kg/TJ,154.532196,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,0edfa362-b029-35fa-9f4c-605e293428e6 +2020,Tucuman,II.5.1,30.918719999999997,TJ,CO2,74100.0,kg/TJ,2291077.152,Gas Oil combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,9a662a12-76e4-3cfd-bde8-b49385a6fd5c +2020,Tucuman,II.5.1,30.918719999999997,TJ,CH4,3.9,kg/TJ,120.58300799999998,Gas Oil combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,161beaa3-b484-3696-b203-6167839a09aa +2020,Tucuman,II.5.1,30.918719999999997,TJ,N2O,3.9,kg/TJ,120.58300799999998,Gas Oil combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,161beaa3-b484-3696-b203-6167839a09aa +2020,Buenos Aires,II.5.1,11.77512,TJ,CO2,74100.0,kg/TJ,872536.392,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,2aa2803c-ea3d-3271-b373-2dbc9e7b1cd9 +2020,Buenos Aires,II.5.1,11.77512,TJ,CH4,3.9,kg/TJ,45.922968,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,aac77cee-9368-3407-85d0-3ffddfce7de0 +2020,Buenos Aires,II.5.1,11.77512,TJ,N2O,3.9,kg/TJ,45.922968,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,aac77cee-9368-3407-85d0-3ffddfce7de0 +2020,Entre Rios,II.5.1,42.15204,TJ,CO2,74100.0,kg/TJ,3123466.164,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,38f1c27e-d2ac-3339-add1-62256732d356 +2020,Entre Rios,II.5.1,42.15204,TJ,CH4,3.9,kg/TJ,164.392956,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,6489dbff-5cfa-3934-b3e7-a3f7b3fc10c1 +2020,Entre Rios,II.5.1,42.15204,TJ,N2O,3.9,kg/TJ,164.392956,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,6489dbff-5cfa-3934-b3e7-a3f7b3fc10c1 +2020,Santa Fe,II.5.1,3.21468,TJ,CO2,74100.0,kg/TJ,238207.788,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,8e098029-7203-30cf-9afa-91fd9c976a3e +2020,Santa Fe,II.5.1,3.21468,TJ,CH4,3.9,kg/TJ,12.537252,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,cbecbe1b-5469-377c-baf6-9a5fe1d68181 +2020,Santa Fe,II.5.1,3.21468,TJ,N2O,3.9,kg/TJ,12.537252,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,cbecbe1b-5469-377c-baf6-9a5fe1d68181 +2020,Buenos Aires,II.5.1,1.2678049999999998,TJ,CO2,73300.0,kg/TJ,92930.1065,Naphtha combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,03d69f1d-9ac7-3864-8a81-9377ed965787 +2020,Buenos Aires,II.5.1,1.2678049999999998,TJ,CH4,0.5,kg/TJ,0.6339024999999999,Naphtha combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,bcd075c7-4b2e-38d0-a53d-5c0361771ef1 +2020,Buenos Aires,II.5.1,1.2678049999999998,TJ,N2O,2.0,kg/TJ,2.5356099999999997,Naphtha combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,e1ca10bb-ccdf-3fe0-94cc-135aad14e89c +2020,Santa Fe,II.5.1,0.925155,TJ,CO2,73300.0,kg/TJ,67813.8615,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,aa66d526-d202-351c-aa43-0a5d05cddbb8 +2020,Santa Fe,II.5.1,0.925155,TJ,CH4,0.5,kg/TJ,0.4625775,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,c2f11ff7-dc34-344f-b439-ec5e7a85cf87 +2020,Santa Fe,II.5.1,0.925155,TJ,N2O,2.0,kg/TJ,1.85031,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,b87c1a40-3685-344f-957a-b05b93553f4a +2020,Buenos Aires,II.5.1,0.513975,TJ,CO2,73300.0,kg/TJ,37674.3675,Naphtha combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,3d64058a-6445-3ce0-8ea9-0aa3f4d612db +2020,Buenos Aires,II.5.1,0.513975,TJ,CH4,0.5,kg/TJ,0.2569875,Naphtha combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,afd509f5-8614-3b93-8b22-a99bbe603e73 +2020,Buenos Aires,II.5.1,0.513975,TJ,N2O,2.0,kg/TJ,1.02795,Naphtha combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,6b35539c-6161-3845-9921-d1eb415e5ada +2020,Santa Fe,II.5.1,0.20559,TJ,CO2,73300.0,kg/TJ,15069.747,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,bf47bac6-63b0-3f0f-8deb-0243eb747366 +2020,Santa Fe,II.5.1,0.20559,TJ,CH4,0.5,kg/TJ,0.102795,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,039cf7fa-71fe-383e-93fd-2069eedcf7b0 +2020,Santa Fe,II.5.1,0.20559,TJ,N2O,2.0,kg/TJ,0.41118,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,eb837b43-b15d-3258-b130-44d670bca2a0 +2020,Buenos Aires,II.2.1,1.1518,TJ,CO2,69300.0,kg/TJ,79819.73999999999,Motor Gasoline combustion consumption by railway transport,AR-B,SESCO,annual,kg,0c89442c-4b2a-3872-81e2-d425ae55d24c +2020,Buenos Aires,II.2.1,1.1518,TJ,CH4,33.0,kg/TJ,38.0094,Motor Gasoline combustion consumption by railway transport,AR-B,SESCO,annual,kg,babe8889-c68c-3e81-9faa-04cf042fff33 +2020,Buenos Aires,II.2.1,1.1518,TJ,N2O,3.2,kg/TJ,3.68576,Motor Gasoline combustion consumption by railway transport,AR-B,SESCO,annual,kg,eb503a98-0463-37b1-b67a-6fa9ba8a5e52 +2020,Córdoba,II.2.1,14.131699999999999,TJ,CO2,69300.0,kg/TJ,979326.8099999999,Motor Gasoline combustion consumption by railway transport,AR-X,SESCO,annual,kg,751d6e66-1639-3a3b-9dd6-f351db29e513 +2020,Córdoba,II.2.1,14.131699999999999,TJ,CH4,33.0,kg/TJ,466.3461,Motor Gasoline combustion consumption by railway transport,AR-X,SESCO,annual,kg,a4a1a6cc-849b-3859-bbad-cf8429d23c25 +2020,Córdoba,II.2.1,14.131699999999999,TJ,N2O,3.2,kg/TJ,45.22144,Motor Gasoline combustion consumption by railway transport,AR-X,SESCO,annual,kg,35106991-4907-373f-b5fc-2be78bc68ef4 +2020,Buenos Aires,II.2.1,188.9076,TJ,CO2,74100.0,kg/TJ,13998053.16,Gas Oil combustion consumption by railway transport,AR-B,SESCO,annual,kg,b1fa1c56-bde4-39b8-ac3e-da8a16ea655c +2020,Buenos Aires,II.2.1,188.9076,TJ,CH4,3.9,kg/TJ,736.73964,Gas Oil combustion consumption by railway transport,AR-B,SESCO,annual,kg,1336cb9a-9226-3970-9c3e-8dd1216db45e +2020,Buenos Aires,II.2.1,188.9076,TJ,N2O,3.9,kg/TJ,736.73964,Gas Oil combustion consumption by railway transport,AR-B,SESCO,annual,kg,1336cb9a-9226-3970-9c3e-8dd1216db45e +2020,Misiones,II.2.1,1.30032,TJ,CO2,74100.0,kg/TJ,96353.712,Gas Oil combustion consumption by railway transport,AR-N,SESCO,annual,kg,02f87fde-ce24-38f5-966e-c6308862ee2d +2020,Misiones,II.2.1,1.30032,TJ,CH4,3.9,kg/TJ,5.071248,Gas Oil combustion consumption by railway transport,AR-N,SESCO,annual,kg,93d63a17-5dee-3cfd-ac8d-47b9fff06a39 +2020,Misiones,II.2.1,1.30032,TJ,N2O,3.9,kg/TJ,5.071248,Gas Oil combustion consumption by railway transport,AR-N,SESCO,annual,kg,93d63a17-5dee-3cfd-ac8d-47b9fff06a39 +2020,Buenos Aires,II.1.1,7.088,TJ,CO2,69300.0,kg/TJ,491198.4,Motor Gasoline combustion consumption by freight transport,AR-B,SESCO,annual,kg,8e707d1c-a392-3064-b75b-e5c4bad04d45 +2020,Buenos Aires,II.1.1,7.088,TJ,CH4,33.0,kg/TJ,233.904,Motor Gasoline combustion consumption by freight transport,AR-B,SESCO,annual,kg,83109a72-f15b-37e8-841c-c1a25c10a1bb +2020,Buenos Aires,II.1.1,7.088,TJ,N2O,3.2,kg/TJ,22.681600000000003,Motor Gasoline combustion consumption by freight transport,AR-B,SESCO,annual,kg,d92943ab-817a-38f9-8555-6f3785e77711 +2020,Santa Fe,II.1.1,4.7401,TJ,CO2,69300.0,kg/TJ,328488.93,Motor Gasoline combustion consumption by freight transport,AR-S,SESCO,annual,kg,cdcee7ca-84a6-345b-8467-fdf5c8484ec0 +2020,Santa Fe,II.1.1,4.7401,TJ,CH4,33.0,kg/TJ,156.4233,Motor Gasoline combustion consumption by freight transport,AR-S,SESCO,annual,kg,df8985f7-9c79-37fb-beca-468f3ef5dbfd +2020,Santa Fe,II.1.1,4.7401,TJ,N2O,3.2,kg/TJ,15.168320000000001,Motor Gasoline combustion consumption by freight transport,AR-S,SESCO,annual,kg,14881176-4a2b-3181-8d40-172a2bc2b3b2 +2020,Buenos Aires,II.1.1,75.27408,TJ,CO2,74100.0,kg/TJ,5577809.328,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,f9a06005-db9d-349a-9773-f25f900c4f31 +2020,Buenos Aires,II.1.1,75.27408,TJ,CH4,3.9,kg/TJ,293.568912,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,bc849ce7-7356-3b79-a4db-33fd09df11d7 +2020,Buenos Aires,II.1.1,75.27408,TJ,N2O,3.9,kg/TJ,293.568912,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,bc849ce7-7356-3b79-a4db-33fd09df11d7 +2020,Capital Federal,II.1.1,37.2036,TJ,CO2,74100.0,kg/TJ,2756786.7600000002,Gas Oil combustion consumption by freight transport,AR-C,SESCO,annual,kg,647b1478-4fbd-3e8a-9dbc-65941134796b +2020,Capital Federal,II.1.1,37.2036,TJ,CH4,3.9,kg/TJ,145.09404,Gas Oil combustion consumption by freight transport,AR-C,SESCO,annual,kg,1432df7c-8cb8-3269-ae30-044bc2c40e7f +2020,Capital Federal,II.1.1,37.2036,TJ,N2O,3.9,kg/TJ,145.09404,Gas Oil combustion consumption by freight transport,AR-C,SESCO,annual,kg,1432df7c-8cb8-3269-ae30-044bc2c40e7f +2020,Córdoba,II.1.1,26.909399999999998,TJ,CO2,74100.0,kg/TJ,1993986.5399999998,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,db509f9d-8087-33f3-b3fb-c9a04dc75291 +2020,Córdoba,II.1.1,26.909399999999998,TJ,CH4,3.9,kg/TJ,104.94666,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,a0443a2c-6883-3e47-b42e-56dbc1c5b3ae +2020,Córdoba,II.1.1,26.909399999999998,TJ,N2O,3.9,kg/TJ,104.94666,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,a0443a2c-6883-3e47-b42e-56dbc1c5b3ae +2020,Capital Federal,II.1.1,2.4200399999999997,TJ,CO2,74100.0,kg/TJ,179324.96399999998,Gas Oil combustion consumption by freight transport,AR-C,SESCO,annual,kg,933c5de6-ec37-375f-997c-ab0e9f1975c0 +2020,Capital Federal,II.1.1,2.4200399999999997,TJ,CH4,3.9,kg/TJ,9.438156,Gas Oil combustion consumption by freight transport,AR-C,SESCO,annual,kg,638c8236-87da-37f8-b086-09308e5df304 +2020,Capital Federal,II.1.1,2.4200399999999997,TJ,N2O,3.9,kg/TJ,9.438156,Gas Oil combustion consumption by freight transport,AR-C,SESCO,annual,kg,638c8236-87da-37f8-b086-09308e5df304 +2020,Córdoba,II.1.1,0.93912,TJ,CO2,74100.0,kg/TJ,69588.792,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,3dbb8bb0-e53e-372a-ae36-d05239d8ee92 +2020,Córdoba,II.1.1,0.93912,TJ,CH4,3.9,kg/TJ,3.662568,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,86c6cc29-b47e-3cb2-9d98-06d92eec75fa +2020,Córdoba,II.1.1,0.93912,TJ,N2O,3.9,kg/TJ,3.662568,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,86c6cc29-b47e-3cb2-9d98-06d92eec75fa +2020,Buenos Aires,II.1.1,1.1961,TJ,CO2,69300.0,kg/TJ,82889.73,Motor Gasoline combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,62afde42-3063-301e-85f1-4065eb644840 +2020,Buenos Aires,II.1.1,1.1961,TJ,CH4,33.0,kg/TJ,39.4713,Motor Gasoline combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,786ebfd4-c51f-35df-9c5b-e8a871a86484 +2020,Buenos Aires,II.1.1,1.1961,TJ,N2O,3.2,kg/TJ,3.82752,Motor Gasoline combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,19a14e4d-1496-3233-be72-a0d23f54fa09 +2020,Buenos Aires,II.1.1,3339.6551999999997,TJ,CO2,74100.0,kg/TJ,247468450.31999996,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,9146c4c1-3e2e-39d9-a548-169d810a8e2f +2020,Buenos Aires,II.1.1,3339.6551999999997,TJ,CH4,3.9,kg/TJ,13024.655279999999,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,7914a9aa-4b22-3d99-8b3f-8f866780cbca +2020,Buenos Aires,II.1.1,3339.6551999999997,TJ,N2O,3.9,kg/TJ,13024.655279999999,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,7914a9aa-4b22-3d99-8b3f-8f866780cbca +2020,Capital Federal,II.1.1,268.47996,TJ,CO2,74100.0,kg/TJ,19894365.036000002,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,c1cb8f59-ead4-3cfa-891a-7f74226ff227 +2020,Capital Federal,II.1.1,268.47996,TJ,CH4,3.9,kg/TJ,1047.071844,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,76dfb461-a691-3dc2-9052-347cd9d3e985 +2020,Capital Federal,II.1.1,268.47996,TJ,N2O,3.9,kg/TJ,1047.071844,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,76dfb461-a691-3dc2-9052-347cd9d3e985 +2020,Buenos Aires,II.1.1,1078.5070799999999,TJ,CO2,74100.0,kg/TJ,79917374.62799999,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,ffdcb9c5-7ff6-316b-9fae-c20be1c5ff85 +2020,Buenos Aires,II.1.1,1078.5070799999999,TJ,CH4,3.9,kg/TJ,4206.1776119999995,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,c6a51b91-0fac-3208-b107-d90d7431b0eb +2020,Buenos Aires,II.1.1,1078.5070799999999,TJ,N2O,3.9,kg/TJ,4206.1776119999995,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,c6a51b91-0fac-3208-b107-d90d7431b0eb +2020,Capital Federal,II.1.1,70.18115999999999,TJ,CO2,74100.0,kg/TJ,5200423.955999999,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,31655981-978d-305b-b13c-60b095fa20db +2020,Capital Federal,II.1.1,70.18115999999999,TJ,CH4,3.9,kg/TJ,273.70652399999994,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,11c0ba31-8a2b-3634-a493-9a29668cc451 +2020,Capital Federal,II.1.1,70.18115999999999,TJ,N2O,3.9,kg/TJ,273.70652399999994,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,11c0ba31-8a2b-3634-a493-9a29668cc451 +2020,Corrientes,II.1.1,101.89452,TJ,CO2,74100.0,kg/TJ,7550383.932,Gas Oil combustion consumption by public passenger transport,AR-W,SESCO,annual,kg,d3e3858d-c1b4-33dd-9375-21d2e90136b2 +2020,Corrientes,II.1.1,101.89452,TJ,CH4,3.9,kg/TJ,397.388628,Gas Oil combustion consumption by public passenger transport,AR-W,SESCO,annual,kg,93309b64-66c8-3a3c-a4a3-61c78c03b23b +2020,Corrientes,II.1.1,101.89452,TJ,N2O,3.9,kg/TJ,397.388628,Gas Oil combustion consumption by public passenger transport,AR-W,SESCO,annual,kg,93309b64-66c8-3a3c-a4a3-61c78c03b23b +2020,Buenos Aires,II.5.1,2871.37500384,TJ,CO2,74100.0,kg/TJ,212768887.784544,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,38f7cfa7-a199-3db9-ba70-b35cae833510 +2020,Buenos Aires,II.5.1,2871.37500384,TJ,CH4,3.9,kg/TJ,11198.362514976,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,35adc964-5669-342c-a3e8-4fe7b5646350 +2020,Buenos Aires,II.5.1,2871.37500384,TJ,N2O,3.9,kg/TJ,11198.362514976,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,35adc964-5669-342c-a3e8-4fe7b5646350 +2020,Capital Federal,II.5.1,462.5476632,TJ,CO2,74100.0,kg/TJ,34274781.84312,Gas Oil combustion consumption by agriculture machines,AR-C,SESCO,annual,kg,8ebf6c4b-2059-3e3d-9136-91f3cdd704d4 +2020,Capital Federal,II.5.1,462.5476632,TJ,CH4,3.9,kg/TJ,1803.93588648,Gas Oil combustion consumption by agriculture machines,AR-C,SESCO,annual,kg,2d38d78b-0e9d-3d27-8860-6dc4edd38a12 +2020,Capital Federal,II.5.1,462.5476632,TJ,N2O,3.9,kg/TJ,1803.93588648,Gas Oil combustion consumption by agriculture machines,AR-C,SESCO,annual,kg,2d38d78b-0e9d-3d27-8860-6dc4edd38a12 +2020,Chaco,II.5.1,14.139390720000002,TJ,CO2,74100.0,kg/TJ,1047728.8523520001,Gas Oil combustion consumption by agriculture machines,AR-H,SESCO,annual,kg,185767c7-fc82-365e-8d3c-6bff24c42750 +2020,Chaco,II.5.1,14.139390720000002,TJ,CH4,3.9,kg/TJ,55.14362380800001,Gas Oil combustion consumption by agriculture machines,AR-H,SESCO,annual,kg,40e2e82c-15f5-355c-ba92-8e6fd5777efa +2020,Chaco,II.5.1,14.139390720000002,TJ,N2O,3.9,kg/TJ,55.14362380800001,Gas Oil combustion consumption by agriculture machines,AR-H,SESCO,annual,kg,40e2e82c-15f5-355c-ba92-8e6fd5777efa +2020,Corrientes,II.5.1,8.965309079999999,TJ,CO2,74100.0,kg/TJ,664329.4028279999,Gas Oil combustion consumption by agriculture machines,AR-W,SESCO,annual,kg,511fbc99-e4f1-3d7f-bba6-a56a74d5ef77 +2020,Corrientes,II.5.1,8.965309079999999,TJ,CH4,3.9,kg/TJ,34.964705411999994,Gas Oil combustion consumption by agriculture machines,AR-W,SESCO,annual,kg,863e9aa6-933a-3274-a585-00c110af854c +2020,Corrientes,II.5.1,8.965309079999999,TJ,N2O,3.9,kg/TJ,34.964705411999994,Gas Oil combustion consumption by agriculture machines,AR-W,SESCO,annual,kg,863e9aa6-933a-3274-a585-00c110af854c +2020,Córdoba,II.5.1,1140.8600246400001,TJ,CO2,74100.0,kg/TJ,84537727.825824,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,a43a7114-c3bc-3146-8787-de08b87cdbed +2020,Córdoba,II.5.1,1140.8600246400001,TJ,CH4,3.9,kg/TJ,4449.354096096,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,ccc0c955-040a-387e-a351-7a13fd94ae6d +2020,Córdoba,II.5.1,1140.8600246400001,TJ,N2O,3.9,kg/TJ,4449.354096096,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,ccc0c955-040a-387e-a351-7a13fd94ae6d +2020,Entre Rios,II.5.1,664.05478608,TJ,CO2,74100.0,kg/TJ,49206459.648528,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,a1eb88e4-cd42-3d80-bad5-01449d89f449 +2020,Entre Rios,II.5.1,664.05478608,TJ,CH4,3.9,kg/TJ,2589.813665712,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,6933fd66-192b-3fbd-b143-6d01aa5ff234 +2020,Entre Rios,II.5.1,664.05478608,TJ,N2O,3.9,kg/TJ,2589.813665712,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,6933fd66-192b-3fbd-b143-6d01aa5ff234 +2020,Jujuy,II.5.1,22.556109239999998,TJ,CO2,74100.0,kg/TJ,1671407.6946839998,Gas Oil combustion consumption by agriculture machines,AR-Y,SESCO,annual,kg,88b21c9d-d9f2-398f-b743-bc087a88c1ef +2020,Jujuy,II.5.1,22.556109239999998,TJ,CH4,3.9,kg/TJ,87.968826036,Gas Oil combustion consumption by agriculture machines,AR-Y,SESCO,annual,kg,79dcf9ab-04e3-393f-878d-e513e339c443 +2020,Jujuy,II.5.1,22.556109239999998,TJ,N2O,3.9,kg/TJ,87.968826036,Gas Oil combustion consumption by agriculture machines,AR-Y,SESCO,annual,kg,79dcf9ab-04e3-393f-878d-e513e339c443 +2020,La Pampa,II.5.1,187.75064028,TJ,CO2,74100.0,kg/TJ,13912322.444748,Gas Oil combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,7e58628a-9a75-3d3c-9d7e-1d89e585aa86 +2020,La Pampa,II.5.1,187.75064028,TJ,CH4,3.9,kg/TJ,732.227497092,Gas Oil combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,31a330c5-c3e6-3c49-9ece-8997b67ddf29 +2020,La Pampa,II.5.1,187.75064028,TJ,N2O,3.9,kg/TJ,732.227497092,Gas Oil combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,31a330c5-c3e6-3c49-9ece-8997b67ddf29 +2020,Mendoza,II.5.1,1.1418254399999999,TJ,CO2,74100.0,kg/TJ,84609.26510399999,Gas Oil combustion consumption by agriculture machines,AR-M,SESCO,annual,kg,3cf9bab5-7678-397e-bc5b-34354b4846ef +2020,Mendoza,II.5.1,1.1418254399999999,TJ,CH4,3.9,kg/TJ,4.453119215999999,Gas Oil combustion consumption by agriculture machines,AR-M,SESCO,annual,kg,90507691-9a84-37fb-ae14-b13fdf01742d +2020,Mendoza,II.5.1,1.1418254399999999,TJ,N2O,3.9,kg/TJ,4.453119215999999,Gas Oil combustion consumption by agriculture machines,AR-M,SESCO,annual,kg,90507691-9a84-37fb-ae14-b13fdf01742d +2020,Neuquén,II.5.1,68.09808347999999,TJ,CO2,74100.0,kg/TJ,5046067.985867999,Gas Oil combustion consumption by agriculture machines,AR-Q,SESCO,annual,kg,73dc3bdf-de0e-3f30-9665-8e7021811c7f +2020,Neuquén,II.5.1,68.09808347999999,TJ,CH4,3.9,kg/TJ,265.58252557199995,Gas Oil combustion consumption by agriculture machines,AR-Q,SESCO,annual,kg,70be69eb-64c9-3886-88d2-3ef64a54d020 +2020,Neuquén,II.5.1,68.09808347999999,TJ,N2O,3.9,kg/TJ,265.58252557199995,Gas Oil combustion consumption by agriculture machines,AR-Q,SESCO,annual,kg,70be69eb-64c9-3886-88d2-3ef64a54d020 +2020,Rio Negro,II.5.1,124.15639571999999,TJ,CO2,74100.0,kg/TJ,9199988.922852,Gas Oil combustion consumption by agriculture machines,AR-R,SESCO,annual,kg,34c1d195-7eda-3368-a4af-a7631f6995e3 +2020,Rio Negro,II.5.1,124.15639571999999,TJ,CH4,3.9,kg/TJ,484.20994330799994,Gas Oil combustion consumption by agriculture machines,AR-R,SESCO,annual,kg,2224bee8-f67d-32cc-807e-f4a370510170 +2020,Rio Negro,II.5.1,124.15639571999999,TJ,N2O,3.9,kg/TJ,484.20994330799994,Gas Oil combustion consumption by agriculture machines,AR-R,SESCO,annual,kg,2224bee8-f67d-32cc-807e-f4a370510170 +2020,San Juan,II.5.1,1.2848967599999999,TJ,CO2,74100.0,kg/TJ,95210.84991599999,Gas Oil combustion consumption by agriculture machines,AR-J,SESCO,annual,kg,682405b3-d1ff-3a2b-b325-7e5c30537be3 +2020,San Juan,II.5.1,1.2848967599999999,TJ,CH4,3.9,kg/TJ,5.011097363999999,Gas Oil combustion consumption by agriculture machines,AR-J,SESCO,annual,kg,9158bc1e-cb81-3c46-a2e6-f4ff1508c11d +2020,San Juan,II.5.1,1.2848967599999999,TJ,N2O,3.9,kg/TJ,5.011097363999999,Gas Oil combustion consumption by agriculture machines,AR-J,SESCO,annual,kg,9158bc1e-cb81-3c46-a2e6-f4ff1508c11d +2020,San Luis,II.5.1,25.740701279999996,TJ,CO2,74100.0,kg/TJ,1907385.9648479996,Gas Oil combustion consumption by agriculture machines,AR-D,SESCO,annual,kg,ad9c693f-9efb-3add-a4fc-76f909b3cc06 +2020,San Luis,II.5.1,25.740701279999996,TJ,CH4,3.9,kg/TJ,100.38873499199998,Gas Oil combustion consumption by agriculture machines,AR-D,SESCO,annual,kg,8a76678f-0f9d-3181-931e-d16bbe221871 +2020,San Luis,II.5.1,25.740701279999996,TJ,N2O,3.9,kg/TJ,100.38873499199998,Gas Oil combustion consumption by agriculture machines,AR-D,SESCO,annual,kg,8a76678f-0f9d-3181-931e-d16bbe221871 +2020,Santa Fe,II.5.1,2519.1887137199997,TJ,CO2,74100.0,kg/TJ,186671883.68665197,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,c605e021-2bd2-3f6e-9c34-df5633a884b7 +2020,Santa Fe,II.5.1,2519.1887137199997,TJ,CH4,3.9,kg/TJ,9824.835983508,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,d4c58b14-9671-3598-8ab4-e6b3b9197365 +2020,Santa Fe,II.5.1,2519.1887137199997,TJ,N2O,3.9,kg/TJ,9824.835983508,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,d4c58b14-9671-3598-8ab4-e6b3b9197365 +2020,Santiago del Estero,II.5.1,353.4291432,TJ,CO2,74100.0,kg/TJ,26189099.51112,Gas Oil combustion consumption by agriculture machines,AR-G,SESCO,annual,kg,0306b232-2751-3c79-8972-09b2f65844e8 +2020,Santiago del Estero,II.5.1,353.4291432,TJ,CH4,3.9,kg/TJ,1378.37365848,Gas Oil combustion consumption by agriculture machines,AR-G,SESCO,annual,kg,03275f94-0b5d-3fc3-8c61-87f86a8b809d +2020,Santiago del Estero,II.5.1,353.4291432,TJ,N2O,3.9,kg/TJ,1378.37365848,Gas Oil combustion consumption by agriculture machines,AR-G,SESCO,annual,kg,03275f94-0b5d-3fc3-8c61-87f86a8b809d +2020,Tucuman,II.5.1,94.76909147999999,TJ,CO2,74100.0,kg/TJ,7022389.678667999,Gas Oil combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,387e22fc-bd43-381a-9ca4-4e3eb035833f +2020,Tucuman,II.5.1,94.76909147999999,TJ,CH4,3.9,kg/TJ,369.59945677199994,Gas Oil combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,5c05f25e-dcda-3a95-8f6c-f6f06be7d7bd +2020,Tucuman,II.5.1,94.76909147999999,TJ,N2O,3.9,kg/TJ,369.59945677199994,Gas Oil combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,5c05f25e-dcda-3a95-8f6c-f6f06be7d7bd +2020,Buenos Aires,II.5.1,250.87879235999998,TJ,CO2,74100.0,kg/TJ,18590118.513876,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,703bb5fd-c012-372c-9d9e-8e0abfda950f +2020,Buenos Aires,II.5.1,250.87879235999998,TJ,CH4,3.9,kg/TJ,978.4272902039999,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,335771a2-27ac-3d8e-b7ea-1ae824567291 +2020,Buenos Aires,II.5.1,250.87879235999998,TJ,N2O,3.9,kg/TJ,978.4272902039999,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,335771a2-27ac-3d8e-b7ea-1ae824567291 +2020,Capital Federal,II.5.1,45.21400464,TJ,CO2,74100.0,kg/TJ,3350357.743824,Gas Oil combustion consumption by agriculture machines,AR-C,SESCO,annual,kg,78d6f2ee-02f3-32be-9959-d35444ba7380 +2020,Capital Federal,II.5.1,45.21400464,TJ,CH4,3.9,kg/TJ,176.33461809599999,Gas Oil combustion consumption by agriculture machines,AR-C,SESCO,annual,kg,6f209643-3e55-3874-b58e-95fe9e4b51d9 +2020,Capital Federal,II.5.1,45.21400464,TJ,N2O,3.9,kg/TJ,176.33461809599999,Gas Oil combustion consumption by agriculture machines,AR-C,SESCO,annual,kg,6f209643-3e55-3874-b58e-95fe9e4b51d9 +2020,Chaco,II.5.1,3.9029466,TJ,CO2,74100.0,kg/TJ,289208.34306,Gas Oil combustion consumption by agriculture machines,AR-H,SESCO,annual,kg,fa8350a2-cd7e-3956-8420-ed9ab7fbc108 +2020,Chaco,II.5.1,3.9029466,TJ,CH4,3.9,kg/TJ,15.22149174,Gas Oil combustion consumption by agriculture machines,AR-H,SESCO,annual,kg,a7267938-6b27-3b72-9b8a-023548f3e7ea +2020,Chaco,II.5.1,3.9029466,TJ,N2O,3.9,kg/TJ,15.22149174,Gas Oil combustion consumption by agriculture machines,AR-H,SESCO,annual,kg,a7267938-6b27-3b72-9b8a-023548f3e7ea +2020,Corrientes,II.5.1,0.17948028,TJ,CO2,74100.0,kg/TJ,13299.488748,Gas Oil combustion consumption by agriculture machines,AR-W,SESCO,annual,kg,ea3f1296-f410-374d-88e3-a82e18fb87a0 +2020,Corrientes,II.5.1,0.17948028,TJ,CH4,3.9,kg/TJ,0.6999730919999999,Gas Oil combustion consumption by agriculture machines,AR-W,SESCO,annual,kg,20f7e374-e17d-36ab-9110-ad1051a56635 +2020,Corrientes,II.5.1,0.17948028,TJ,N2O,3.9,kg/TJ,0.6999730919999999,Gas Oil combustion consumption by agriculture machines,AR-W,SESCO,annual,kg,20f7e374-e17d-36ab-9110-ad1051a56635 +2020,Córdoba,II.5.1,89.39010108,TJ,CO2,74100.0,kg/TJ,6623806.4900279995,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,0d5df6a2-2084-3fcf-ae68-5c0f28ceb969 +2020,Córdoba,II.5.1,89.39010108,TJ,CH4,3.9,kg/TJ,348.621394212,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,1a2992dd-17b9-3304-94cb-6a717b081c84 +2020,Córdoba,II.5.1,89.39010108,TJ,N2O,3.9,kg/TJ,348.621394212,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,1a2992dd-17b9-3304-94cb-6a717b081c84 +2020,Entre Rios,II.5.1,114.33923256,TJ,CO2,74100.0,kg/TJ,8472537.132696,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,1a859b8e-025d-3b1c-9228-63eb6867f10c +2020,Entre Rios,II.5.1,114.33923256,TJ,CH4,3.9,kg/TJ,445.923006984,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,be91846c-eb13-3e1e-93af-0e1fcaf83a3b +2020,Entre Rios,II.5.1,114.33923256,TJ,N2O,3.9,kg/TJ,445.923006984,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,be91846c-eb13-3e1e-93af-0e1fcaf83a3b +2020,Jujuy,II.5.1,49.900574639999995,TJ,CO2,74100.0,kg/TJ,3697632.580824,Gas Oil combustion consumption by agriculture machines,AR-Y,SESCO,annual,kg,3b73bd65-12c6-316c-8617-e4043ddaabeb +2020,Jujuy,II.5.1,49.900574639999995,TJ,CH4,3.9,kg/TJ,194.61224109599996,Gas Oil combustion consumption by agriculture machines,AR-Y,SESCO,annual,kg,ee244a97-0327-3ffb-b2f4-8ca0ea765cd4 +2020,Jujuy,II.5.1,49.900574639999995,TJ,N2O,3.9,kg/TJ,194.61224109599996,Gas Oil combustion consumption by agriculture machines,AR-Y,SESCO,annual,kg,ee244a97-0327-3ffb-b2f4-8ca0ea765cd4 +2020,La Pampa,II.5.1,10.93800288,TJ,CO2,74100.0,kg/TJ,810506.0134080001,Gas Oil combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,c068fa16-075c-350d-943d-848485c30da9 +2020,La Pampa,II.5.1,10.93800288,TJ,CH4,3.9,kg/TJ,42.658211232,Gas Oil combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,17e6aef7-d302-3cb2-86d3-51543561fe50 +2020,La Pampa,II.5.1,10.93800288,TJ,N2O,3.9,kg/TJ,42.658211232,Gas Oil combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,17e6aef7-d302-3cb2-86d3-51543561fe50 +2020,Mendoza,II.5.1,0.25291223999999995,TJ,CO2,74100.0,kg/TJ,18740.796983999997,Gas Oil combustion consumption by agriculture machines,AR-M,SESCO,annual,kg,bf8b781e-5fa4-330e-84af-2bc91fabd2fe +2020,Mendoza,II.5.1,0.25291223999999995,TJ,CH4,3.9,kg/TJ,0.9863577359999998,Gas Oil combustion consumption by agriculture machines,AR-M,SESCO,annual,kg,659838e6-5880-3767-a78d-5201da357a6b +2020,Mendoza,II.5.1,0.25291223999999995,TJ,N2O,3.9,kg/TJ,0.9863577359999998,Gas Oil combustion consumption by agriculture machines,AR-M,SESCO,annual,kg,659838e6-5880-3767-a78d-5201da357a6b +2020,Neuquén,II.5.1,34.22796216,TJ,CO2,74100.0,kg/TJ,2536291.996056,Gas Oil combustion consumption by agriculture machines,AR-Q,SESCO,annual,kg,deed7f5a-158f-3b03-8fb5-3408279f5f4d +2020,Neuquén,II.5.1,34.22796216,TJ,CH4,3.9,kg/TJ,133.489052424,Gas Oil combustion consumption by agriculture machines,AR-Q,SESCO,annual,kg,329733a2-6bef-3819-979e-2f85ac6b0141 +2020,Neuquén,II.5.1,34.22796216,TJ,N2O,3.9,kg/TJ,133.489052424,Gas Oil combustion consumption by agriculture machines,AR-Q,SESCO,annual,kg,329733a2-6bef-3819-979e-2f85ac6b0141 +2020,Rio Negro,II.5.1,48.73819692000001,TJ,CO2,74100.0,kg/TJ,3611500.3917720006,Gas Oil combustion consumption by agriculture machines,AR-R,SESCO,annual,kg,83617644-1bfa-3527-858d-958844bbc4dc +2020,Rio Negro,II.5.1,48.73819692000001,TJ,CH4,3.9,kg/TJ,190.07896798800002,Gas Oil combustion consumption by agriculture machines,AR-R,SESCO,annual,kg,9dac3798-06f2-3812-8d56-03bdfd5504f5 +2020,Rio Negro,II.5.1,48.73819692000001,TJ,N2O,3.9,kg/TJ,190.07896798800002,Gas Oil combustion consumption by agriculture machines,AR-R,SESCO,annual,kg,9dac3798-06f2-3812-8d56-03bdfd5504f5 +2020,San Luis,II.5.1,13.816983599999997,TJ,CO2,74100.0,kg/TJ,1023838.4847599998,Gas Oil combustion consumption by agriculture machines,AR-D,SESCO,annual,kg,8b18620f-c05b-3df4-a781-dcde5bafe21b +2020,San Luis,II.5.1,13.816983599999997,TJ,CH4,3.9,kg/TJ,53.886236039999986,Gas Oil combustion consumption by agriculture machines,AR-D,SESCO,annual,kg,d50e9329-3383-3d0e-8b38-14f4e43fb232 +2020,San Luis,II.5.1,13.816983599999997,TJ,N2O,3.9,kg/TJ,53.886236039999986,Gas Oil combustion consumption by agriculture machines,AR-D,SESCO,annual,kg,d50e9329-3383-3d0e-8b38-14f4e43fb232 +2020,Santa Fe,II.5.1,179.15259936,TJ,CO2,74100.0,kg/TJ,13275207.612576,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,e3db83d5-ec36-35c5-8d1e-0e0573c7a8ec +2020,Santa Fe,II.5.1,179.15259936,TJ,CH4,3.9,kg/TJ,698.6951375040001,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,5ffc2eb2-fa5c-3bdb-a5ba-4e15ca791729 +2020,Santa Fe,II.5.1,179.15259936,TJ,N2O,3.9,kg/TJ,698.6951375040001,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,5ffc2eb2-fa5c-3bdb-a5ba-4e15ca791729 +2020,Santiago del Estero,II.5.1,20.880538559999998,TJ,CO2,74100.0,kg/TJ,1547247.9072959998,Gas Oil combustion consumption by agriculture machines,AR-G,SESCO,annual,kg,2aa3bbeb-f767-333d-aed5-a43002a703a9 +2020,Santiago del Estero,II.5.1,20.880538559999998,TJ,CH4,3.9,kg/TJ,81.43410038399999,Gas Oil combustion consumption by agriculture machines,AR-G,SESCO,annual,kg,7b0e1d3d-d0af-33e1-a423-aa9693392123 +2020,Santiago del Estero,II.5.1,20.880538559999998,TJ,N2O,3.9,kg/TJ,81.43410038399999,Gas Oil combustion consumption by agriculture machines,AR-G,SESCO,annual,kg,7b0e1d3d-d0af-33e1-a423-aa9693392123 +2020,Tucuman,II.5.1,20.29481664,TJ,CO2,74100.0,kg/TJ,1503845.9130240001,Gas Oil combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,034389c9-3e45-3576-ae8e-d4e76f3276f3 +2020,Tucuman,II.5.1,20.29481664,TJ,CH4,3.9,kg/TJ,79.149784896,Gas Oil combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,9c0b4fd1-e864-3857-85ab-0effd5faf5e1 +2020,Tucuman,II.5.1,20.29481664,TJ,N2O,3.9,kg/TJ,79.149784896,Gas Oil combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,9c0b4fd1-e864-3857-85ab-0effd5faf5e1 +2020,Buenos Aires,II.5.1,124.058248545,TJ,CO2,73300.0,kg/TJ,9093469.6183485,Naphtha combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,72d360c0-9f15-3930-bf62-7e36ce92acdf +2020,Buenos Aires,II.5.1,124.058248545,TJ,CH4,0.5,kg/TJ,62.0291242725,Naphtha combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,847f5865-1691-3f26-9afd-129bd8dcd5b1 +2020,Buenos Aires,II.5.1,124.058248545,TJ,N2O,2.0,kg/TJ,248.11649709,Naphtha combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,478c383e-b54b-3a12-8a8f-6a99f508c723 +2020,Capital Federal,II.5.1,26.051782295,TJ,CO2,73300.0,kg/TJ,1909595.6422235,Naphtha combustion consumption by agriculture machines,AR-C,SESCO,annual,kg,56cbccc9-75a7-322f-9bd4-56b54155433b +2020,Capital Federal,II.5.1,26.051782295,TJ,CH4,0.5,kg/TJ,13.0258911475,Naphtha combustion consumption by agriculture machines,AR-C,SESCO,annual,kg,2d38c874-39cc-3798-9329-aad13d59e593 +2020,Capital Federal,II.5.1,26.051782295,TJ,N2O,2.0,kg/TJ,52.10356459,Naphtha combustion consumption by agriculture machines,AR-C,SESCO,annual,kg,10251996-6591-33e0-9f8a-bb88de5f26f5 +2020,Chaco,II.5.1,3.046741005,TJ,CO2,73300.0,kg/TJ,223326.1156665,Naphtha combustion consumption by agriculture machines,AR-H,SESCO,annual,kg,3cf709a4-cdf9-36ba-974b-e24846cb4b27 +2020,Chaco,II.5.1,3.046741005,TJ,CH4,0.5,kg/TJ,1.5233705025,Naphtha combustion consumption by agriculture machines,AR-H,SESCO,annual,kg,15ccdb0d-4387-3ed0-b7df-eadc080ee4bd +2020,Chaco,II.5.1,3.046741005,TJ,N2O,2.0,kg/TJ,6.09348201,Naphtha combustion consumption by agriculture machines,AR-H,SESCO,annual,kg,c372c06b-18bb-3af1-b5d6-33c72856d4be +2020,Córdoba,II.5.1,9.790949629999998,TJ,CO2,73300.0,kg/TJ,717676.6078789999,Naphtha combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,c8b1bff1-3682-3cc4-9280-42c5ef9d4986 +2020,Córdoba,II.5.1,9.790949629999998,TJ,CH4,0.5,kg/TJ,4.895474814999999,Naphtha combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,a79d075a-9ef3-3fcf-9fc0-91a4436fbe04 +2020,Córdoba,II.5.1,9.790949629999998,TJ,N2O,2.0,kg/TJ,19.581899259999997,Naphtha combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,6dda8425-fd39-3b80-a61b-91608a70cbcf +2020,Rio Negro,II.5.1,15.463246259999998,TJ,CO2,73300.0,kg/TJ,1133455.950858,Naphtha combustion consumption by agriculture machines,AR-R,SESCO,annual,kg,b45bf688-2f3b-3ccf-bace-b3c23562caba +2020,Rio Negro,II.5.1,15.463246259999998,TJ,CH4,0.5,kg/TJ,7.731623129999999,Naphtha combustion consumption by agriculture machines,AR-R,SESCO,annual,kg,6c2826c4-0554-34f1-9fd3-f366bc6e6f5a +2020,Rio Negro,II.5.1,15.463246259999998,TJ,N2O,2.0,kg/TJ,30.926492519999996,Naphtha combustion consumption by agriculture machines,AR-R,SESCO,annual,kg,2344e940-50a0-3a03-b5c6-2d6a9eac7b7a +2020,Santa Fe,II.5.1,194.80718141499997,TJ,CO2,73300.0,kg/TJ,14279366.397719499,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,ba99a243-4a81-3948-b4ee-9604f89a1dae +2020,Santa Fe,II.5.1,194.80718141499997,TJ,CH4,0.5,kg/TJ,97.40359070749999,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,0043d37b-97dd-36fe-9efb-581ec42d0cdf +2020,Santa Fe,II.5.1,194.80718141499997,TJ,N2O,2.0,kg/TJ,389.61436282999995,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,9800cc24-6639-3afd-a6b1-fa4865023a79 +2020,Buenos Aires,II.5.1,10.67608311,TJ,CO2,73300.0,kg/TJ,782556.8919630001,Naphtha combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,c692543c-9792-35d1-9e5b-4b2bd6725076 +2020,Buenos Aires,II.5.1,10.67608311,TJ,CH4,0.5,kg/TJ,5.338041555,Naphtha combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,283e0e90-72aa-3f87-b886-55d661ed5f41 +2020,Buenos Aires,II.5.1,10.67608311,TJ,N2O,2.0,kg/TJ,21.35216622,Naphtha combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,19ea39e9-1aa2-37a0-ac9e-76a3b0cad817 +2020,Capital Federal,II.5.1,7.34483981,TJ,CO2,73300.0,kg/TJ,538376.758073,Naphtha combustion consumption by agriculture machines,AR-C,SESCO,annual,kg,5cce19b5-efdd-3d13-ac19-f0559551edda +2020,Capital Federal,II.5.1,7.34483981,TJ,CH4,0.5,kg/TJ,3.672419905,Naphtha combustion consumption by agriculture machines,AR-C,SESCO,annual,kg,eb64a7a2-4b33-3a21-9f7d-0e748b9e33e8 +2020,Capital Federal,II.5.1,7.34483981,TJ,N2O,2.0,kg/TJ,14.68967962,Naphtha combustion consumption by agriculture machines,AR-C,SESCO,annual,kg,cc1c8b42-663d-3b0b-a5f6-233b03eec8d5 +2020,Córdoba,II.5.1,1.05666407,TJ,CO2,73300.0,kg/TJ,77453.476331,Naphtha combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,10e357f3-1184-38d9-b96e-4fa098e6d76a +2020,Córdoba,II.5.1,1.05666407,TJ,CH4,0.5,kg/TJ,0.528332035,Naphtha combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,7090d31a-75f8-3e0f-8233-e80c4070b3dc +2020,Córdoba,II.5.1,1.05666407,TJ,N2O,2.0,kg/TJ,2.11332814,Naphtha combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,19501897-961b-3495-afae-2fd8f4ad0a97 +2020,Rio Negro,II.5.1,3.0855289850000003,TJ,CO2,73300.0,kg/TJ,226169.2746005,Naphtha combustion consumption by agriculture machines,AR-R,SESCO,annual,kg,f2872f7e-6d05-3109-9dd2-1e76badf3853 +2020,Rio Negro,II.5.1,3.0855289850000003,TJ,CH4,0.5,kg/TJ,1.5427644925000001,Naphtha combustion consumption by agriculture machines,AR-R,SESCO,annual,kg,fb26f522-4c98-39e5-a350-4308a3b63c5c +2020,Rio Negro,II.5.1,3.0855289850000003,TJ,N2O,2.0,kg/TJ,6.171057970000001,Naphtha combustion consumption by agriculture machines,AR-R,SESCO,annual,kg,14bf4b06-473f-3554-bf9f-8acdc7e4782c +2020,Santa Fe,II.5.1,17.16971179,TJ,CO2,73300.0,kg/TJ,1258539.874207,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,608fd3b5-9bd2-3a60-beb0-a0389993ea52 +2020,Santa Fe,II.5.1,17.16971179,TJ,CH4,0.5,kg/TJ,8.584855895,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,a35e52f7-dc41-350c-baa6-15fdadbd527b +2020,Santa Fe,II.5.1,17.16971179,TJ,N2O,2.0,kg/TJ,34.33942358,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,381fe267-4346-3823-b325-6a25b5ffa031 +2020,Buenos Aires,II.5.1,9292.773,TJ,CO2,74100.0,kg/TJ,688594479.3,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,63eb9345-76a0-3d69-896d-7012eacc8fe0 +2020,Buenos Aires,II.5.1,9292.773,TJ,CH4,3.9,kg/TJ,36241.814699999995,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,bece1ecc-fb9f-3d8b-b1a0-f71e9f2bb65a +2020,Buenos Aires,II.5.1,9292.773,TJ,N2O,3.9,kg/TJ,36241.814699999995,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,bece1ecc-fb9f-3d8b-b1a0-f71e9f2bb65a +2020,Capital Federal,II.5.1,35.79492,TJ,CO2,74100.0,kg/TJ,2652403.5719999997,Gas Oil combustion consumption by agriculture machines,AR-C,SESCO,annual,kg,c57abf0a-4949-32d9-ad88-05799bad5068 +2020,Capital Federal,II.5.1,35.79492,TJ,CH4,3.9,kg/TJ,139.60018799999997,Gas Oil combustion consumption by agriculture machines,AR-C,SESCO,annual,kg,e2caec47-f001-35dd-a79b-56333bd7b5b6 +2020,Capital Federal,II.5.1,35.79492,TJ,N2O,3.9,kg/TJ,139.60018799999997,Gas Oil combustion consumption by agriculture machines,AR-C,SESCO,annual,kg,e2caec47-f001-35dd-a79b-56333bd7b5b6 +2020,Catamarca,II.5.1,149.13948,TJ,CO2,74100.0,kg/TJ,11051235.467999998,Gas Oil combustion consumption by agriculture machines,AR-K,SESCO,annual,kg,8dcf0c47-78b7-3737-905a-0d01642c6381 +2020,Catamarca,II.5.1,149.13948,TJ,CH4,3.9,kg/TJ,581.643972,Gas Oil combustion consumption by agriculture machines,AR-K,SESCO,annual,kg,03fd7440-c5e5-3c89-bf92-33155e1a3015 +2020,Catamarca,II.5.1,149.13948,TJ,N2O,3.9,kg/TJ,581.643972,Gas Oil combustion consumption by agriculture machines,AR-K,SESCO,annual,kg,03fd7440-c5e5-3c89-bf92-33155e1a3015 +2020,Chaco,II.5.1,954.32652,TJ,CO2,74100.0,kg/TJ,70715595.132,Gas Oil combustion consumption by agriculture machines,AR-H,SESCO,annual,kg,a8ce750e-50c7-3080-955a-c58377d41d86 +2020,Chaco,II.5.1,954.32652,TJ,CH4,3.9,kg/TJ,3721.873428,Gas Oil combustion consumption by agriculture machines,AR-H,SESCO,annual,kg,1f526ee9-caa7-3329-883f-dab7193f5117 +2020,Chaco,II.5.1,954.32652,TJ,N2O,3.9,kg/TJ,3721.873428,Gas Oil combustion consumption by agriculture machines,AR-H,SESCO,annual,kg,1f526ee9-caa7-3329-883f-dab7193f5117 +2020,Corrientes,II.5.1,521.60892,TJ,CO2,74100.0,kg/TJ,38651220.972,Gas Oil combustion consumption by agriculture machines,AR-W,SESCO,annual,kg,12c68bf5-139e-3cca-a028-68330950465a +2020,Corrientes,II.5.1,521.60892,TJ,CH4,3.9,kg/TJ,2034.274788,Gas Oil combustion consumption by agriculture machines,AR-W,SESCO,annual,kg,accdfa4f-0bf3-330e-a226-58de9a3f040b +2020,Corrientes,II.5.1,521.60892,TJ,N2O,3.9,kg/TJ,2034.274788,Gas Oil combustion consumption by agriculture machines,AR-W,SESCO,annual,kg,accdfa4f-0bf3-330e-a226-58de9a3f040b +2020,Córdoba,II.5.1,6933.99252,TJ,CO2,74100.0,kg/TJ,513808845.732,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,99c854ae-1203-3ac0-a209-5b0e48817cc1 +2020,Córdoba,II.5.1,6933.99252,TJ,CH4,3.9,kg/TJ,27042.570828,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,6926366d-055a-3089-815f-3cf0ab8c57cc +2020,Córdoba,II.5.1,6933.99252,TJ,N2O,3.9,kg/TJ,27042.570828,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,6926366d-055a-3089-815f-3cf0ab8c57cc +2020,Entre Rios,II.5.1,1840.3501199999998,TJ,CO2,74100.0,kg/TJ,136369943.892,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,d179b54c-f470-3af2-91b5-87b051716188 +2020,Entre Rios,II.5.1,1840.3501199999998,TJ,CH4,3.9,kg/TJ,7177.365467999999,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,a5423493-8c71-3cc1-9937-a65996ec2232 +2020,Entre Rios,II.5.1,1840.3501199999998,TJ,N2O,3.9,kg/TJ,7177.365467999999,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,a5423493-8c71-3cc1-9937-a65996ec2232 +2020,Formosa,II.5.1,232.90176,TJ,CO2,74100.0,kg/TJ,17258020.416,Gas Oil combustion consumption by agriculture machines,AR-P,SESCO,annual,kg,dc500619-c7a6-350a-819b-f098c11fee64 +2020,Formosa,II.5.1,232.90176,TJ,CH4,3.9,kg/TJ,908.316864,Gas Oil combustion consumption by agriculture machines,AR-P,SESCO,annual,kg,79be7970-4e48-3eca-89b2-7ac11d963c8a +2020,Formosa,II.5.1,232.90176,TJ,N2O,3.9,kg/TJ,908.316864,Gas Oil combustion consumption by agriculture machines,AR-P,SESCO,annual,kg,79be7970-4e48-3eca-89b2-7ac11d963c8a +2020,Jujuy,II.5.1,961.0087199999999,TJ,CO2,74100.0,kg/TJ,71210746.152,Gas Oil combustion consumption by agriculture machines,AR-Y,SESCO,annual,kg,06c4c92e-e6df-3bd2-8923-7a4e053cc2fe +2020,Jujuy,II.5.1,961.0087199999999,TJ,CH4,3.9,kg/TJ,3747.9340079999997,Gas Oil combustion consumption by agriculture machines,AR-Y,SESCO,annual,kg,9d0a17f5-d49e-3bd6-bc98-9f8172a4ab34 +2020,Jujuy,II.5.1,961.0087199999999,TJ,N2O,3.9,kg/TJ,3747.9340079999997,Gas Oil combustion consumption by agriculture machines,AR-Y,SESCO,annual,kg,9d0a17f5-d49e-3bd6-bc98-9f8172a4ab34 +2020,La Pampa,II.5.1,1478.71668,TJ,CO2,74100.0,kg/TJ,109572905.988,Gas Oil combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,6d6af92b-aa9a-3ef4-96f4-ee4078fe777b +2020,La Pampa,II.5.1,1478.71668,TJ,CH4,3.9,kg/TJ,5766.995052,Gas Oil combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,be2659f9-7fbc-3677-b4e6-095418e43bac +2020,La Pampa,II.5.1,1478.71668,TJ,N2O,3.9,kg/TJ,5766.995052,Gas Oil combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,be2659f9-7fbc-3677-b4e6-095418e43bac +2020,La Rioja,II.5.1,88.34952,TJ,CO2,74100.0,kg/TJ,6546699.432,Gas Oil combustion consumption by agriculture machines,AR-F,SESCO,annual,kg,a64454f2-6e91-39dd-9d16-4a500eba954e +2020,La Rioja,II.5.1,88.34952,TJ,CH4,3.9,kg/TJ,344.563128,Gas Oil combustion consumption by agriculture machines,AR-F,SESCO,annual,kg,dbb5f89b-89b4-3615-afa3-6e586a0f0fee +2020,La Rioja,II.5.1,88.34952,TJ,N2O,3.9,kg/TJ,344.563128,Gas Oil combustion consumption by agriculture machines,AR-F,SESCO,annual,kg,dbb5f89b-89b4-3615-afa3-6e586a0f0fee +2020,Mendoza,II.5.1,1603.47516,TJ,CO2,74100.0,kg/TJ,118817509.35599999,Gas Oil combustion consumption by agriculture machines,AR-M,SESCO,annual,kg,237bf474-71b1-331e-b5ec-e977a7fdf471 +2020,Mendoza,II.5.1,1603.47516,TJ,CH4,3.9,kg/TJ,6253.553124,Gas Oil combustion consumption by agriculture machines,AR-M,SESCO,annual,kg,0aa36b6d-b75e-3626-8f14-6c6add34fdd3 +2020,Mendoza,II.5.1,1603.47516,TJ,N2O,3.9,kg/TJ,6253.553124,Gas Oil combustion consumption by agriculture machines,AR-M,SESCO,annual,kg,0aa36b6d-b75e-3626-8f14-6c6add34fdd3 +2020,Misiones,II.5.1,853.44336,TJ,CO2,74100.0,kg/TJ,63240152.975999996,Gas Oil combustion consumption by agriculture machines,AR-N,SESCO,annual,kg,26ff9528-4a3a-31ab-9b0c-28325ccd41db +2020,Misiones,II.5.1,853.44336,TJ,CH4,3.9,kg/TJ,3328.429104,Gas Oil combustion consumption by agriculture machines,AR-N,SESCO,annual,kg,e792df68-0fcb-33b7-b133-53bb971d22bb +2020,Misiones,II.5.1,853.44336,TJ,N2O,3.9,kg/TJ,3328.429104,Gas Oil combustion consumption by agriculture machines,AR-N,SESCO,annual,kg,e792df68-0fcb-33b7-b133-53bb971d22bb +2020,Rio Negro,II.5.1,222.93264,TJ,CO2,74100.0,kg/TJ,16519308.624,Gas Oil combustion consumption by agriculture machines,AR-R,SESCO,annual,kg,f30e5911-4bb6-3588-9dca-388e9a29b35e +2020,Rio Negro,II.5.1,222.93264,TJ,CH4,3.9,kg/TJ,869.437296,Gas Oil combustion consumption by agriculture machines,AR-R,SESCO,annual,kg,b05ff935-52e1-38ac-a4e7-edd699ed63b3 +2020,Rio Negro,II.5.1,222.93264,TJ,N2O,3.9,kg/TJ,869.437296,Gas Oil combustion consumption by agriculture machines,AR-R,SESCO,annual,kg,b05ff935-52e1-38ac-a4e7-edd699ed63b3 +2020,Salta,II.5.1,1250.9439599999998,TJ,CO2,74100.0,kg/TJ,92694947.43599999,Gas Oil combustion consumption by agriculture machines,AR-A,SESCO,annual,kg,18711059-cc40-32f9-a508-2444b0e0497e +2020,Salta,II.5.1,1250.9439599999998,TJ,CH4,3.9,kg/TJ,4878.681443999999,Gas Oil combustion consumption by agriculture machines,AR-A,SESCO,annual,kg,89bc6b72-db6a-3139-8044-7f6562a12ede +2020,Salta,II.5.1,1250.9439599999998,TJ,N2O,3.9,kg/TJ,4878.681443999999,Gas Oil combustion consumption by agriculture machines,AR-A,SESCO,annual,kg,89bc6b72-db6a-3139-8044-7f6562a12ede +2020,San Juan,II.5.1,321.90144,TJ,CO2,74100.0,kg/TJ,23852896.704,Gas Oil combustion consumption by agriculture machines,AR-J,SESCO,annual,kg,52c993ad-a47e-3726-9636-e06ce49664c7 +2020,San Juan,II.5.1,321.90144,TJ,CH4,3.9,kg/TJ,1255.415616,Gas Oil combustion consumption by agriculture machines,AR-J,SESCO,annual,kg,d482c0aa-2199-382f-847f-fca8cfd3a3c0 +2020,San Juan,II.5.1,321.90144,TJ,N2O,3.9,kg/TJ,1255.415616,Gas Oil combustion consumption by agriculture machines,AR-J,SESCO,annual,kg,d482c0aa-2199-382f-847f-fca8cfd3a3c0 +2020,San Luis,II.5.1,315.68879999999996,TJ,CO2,74100.0,kg/TJ,23392540.08,Gas Oil combustion consumption by agriculture machines,AR-D,SESCO,annual,kg,2bc6020b-9bfe-3091-bddc-9540c505b7af +2020,San Luis,II.5.1,315.68879999999996,TJ,CH4,3.9,kg/TJ,1231.1863199999998,Gas Oil combustion consumption by agriculture machines,AR-D,SESCO,annual,kg,a90c0c03-7067-3ffe-9860-5f95b7cfe32d +2020,San Luis,II.5.1,315.68879999999996,TJ,N2O,3.9,kg/TJ,1231.1863199999998,Gas Oil combustion consumption by agriculture machines,AR-D,SESCO,annual,kg,a90c0c03-7067-3ffe-9860-5f95b7cfe32d +2020,Santa Fe,II.5.1,6512.50824,TJ,CO2,74100.0,kg/TJ,482576860.584,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,4e38fbb7-65b7-32ba-a403-10767922cd0f +2020,Santa Fe,II.5.1,6512.50824,TJ,CH4,3.9,kg/TJ,25398.782136,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,b240ccba-5b5b-36f7-8836-80d3e36174bb +2020,Santa Fe,II.5.1,6512.50824,TJ,N2O,3.9,kg/TJ,25398.782136,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,b240ccba-5b5b-36f7-8836-80d3e36174bb +2020,Santiago del Estero,II.5.1,1623.30504,TJ,CO2,74100.0,kg/TJ,120286903.464,Gas Oil combustion consumption by agriculture machines,AR-G,SESCO,annual,kg,ca08f67c-1f37-3159-9db7-9812c40a95e0 +2020,Santiago del Estero,II.5.1,1623.30504,TJ,CH4,3.9,kg/TJ,6330.889655999999,Gas Oil combustion consumption by agriculture machines,AR-G,SESCO,annual,kg,faed062f-8b48-3a25-87cf-5dac7e26c979 +2020,Santiago del Estero,II.5.1,1623.30504,TJ,N2O,3.9,kg/TJ,6330.889655999999,Gas Oil combustion consumption by agriculture machines,AR-G,SESCO,annual,kg,faed062f-8b48-3a25-87cf-5dac7e26c979 +2020,Tucuman,II.5.1,1171.44384,TJ,CO2,74100.0,kg/TJ,86803988.544,Gas Oil combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,a01978a7-bd4f-3ba5-b7a5-9249c0c15fdf +2020,Tucuman,II.5.1,1171.44384,TJ,CH4,3.9,kg/TJ,4568.6309759999995,Gas Oil combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,578f12e3-b601-3da1-899f-7be45abeb861 +2020,Tucuman,II.5.1,1171.44384,TJ,N2O,3.9,kg/TJ,4568.6309759999995,Gas Oil combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,578f12e3-b601-3da1-899f-7be45abeb861 +2020,Buenos Aires,II.5.1,806.66796,TJ,CO2,74100.0,kg/TJ,59774095.836,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,673ae18d-d0ca-3552-9de1-097b32e9df19 +2020,Buenos Aires,II.5.1,806.66796,TJ,CH4,3.9,kg/TJ,3146.005044,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,9be0dc30-c66c-3972-abf8-15a1067d2483 +2020,Buenos Aires,II.5.1,806.66796,TJ,N2O,3.9,kg/TJ,3146.005044,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,9be0dc30-c66c-3972-abf8-15a1067d2483 +2020,Capital Federal,II.5.1,3.8648399999999996,TJ,CO2,74100.0,kg/TJ,286384.644,Gas Oil combustion consumption by agriculture machines,AR-C,SESCO,annual,kg,5a21f472-fd2e-3ab9-8963-4be4857cb29c +2020,Capital Federal,II.5.1,3.8648399999999996,TJ,CH4,3.9,kg/TJ,15.072875999999997,Gas Oil combustion consumption by agriculture machines,AR-C,SESCO,annual,kg,672f49b0-d0d6-3f68-9da6-20d7780ee9f6 +2020,Capital Federal,II.5.1,3.8648399999999996,TJ,N2O,3.9,kg/TJ,15.072875999999997,Gas Oil combustion consumption by agriculture machines,AR-C,SESCO,annual,kg,672f49b0-d0d6-3f68-9da6-20d7780ee9f6 +2020,Catamarca,II.5.1,20.62452,TJ,CO2,74100.0,kg/TJ,1528276.932,Gas Oil combustion consumption by agriculture machines,AR-K,SESCO,annual,kg,4588b479-4886-3793-8f3e-762ea0386777 +2020,Catamarca,II.5.1,20.62452,TJ,CH4,3.9,kg/TJ,80.435628,Gas Oil combustion consumption by agriculture machines,AR-K,SESCO,annual,kg,7e8e9dfe-4deb-3551-9670-db0c1aa2ab4a +2020,Catamarca,II.5.1,20.62452,TJ,N2O,3.9,kg/TJ,80.435628,Gas Oil combustion consumption by agriculture machines,AR-K,SESCO,annual,kg,7e8e9dfe-4deb-3551-9670-db0c1aa2ab4a +2020,Chaco,II.5.1,43.488479999999996,TJ,CO2,74100.0,kg/TJ,3222496.368,Gas Oil combustion consumption by agriculture machines,AR-H,SESCO,annual,kg,4a583fdc-3a89-3407-92ee-ec16bf94af6c +2020,Chaco,II.5.1,43.488479999999996,TJ,CH4,3.9,kg/TJ,169.60507199999998,Gas Oil combustion consumption by agriculture machines,AR-H,SESCO,annual,kg,aecb4a84-0ff8-3076-8a46-6d1daebd3c29 +2020,Chaco,II.5.1,43.488479999999996,TJ,N2O,3.9,kg/TJ,169.60507199999998,Gas Oil combustion consumption by agriculture machines,AR-H,SESCO,annual,kg,aecb4a84-0ff8-3076-8a46-6d1daebd3c29 +2020,Corrientes,II.5.1,39.1902,TJ,CO2,74100.0,kg/TJ,2903993.82,Gas Oil combustion consumption by agriculture machines,AR-W,SESCO,annual,kg,92ada96e-7d23-3a46-a148-becab486031c +2020,Corrientes,II.5.1,39.1902,TJ,CH4,3.9,kg/TJ,152.84178,Gas Oil combustion consumption by agriculture machines,AR-W,SESCO,annual,kg,a4db8cc9-7be0-35b4-a759-df9ddf51e5c2 +2020,Corrientes,II.5.1,39.1902,TJ,N2O,3.9,kg/TJ,152.84178,Gas Oil combustion consumption by agriculture machines,AR-W,SESCO,annual,kg,a4db8cc9-7be0-35b4-a759-df9ddf51e5c2 +2020,Córdoba,II.5.1,493.14635999999996,TJ,CO2,74100.0,kg/TJ,36542145.276,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,7b7192ec-c069-3bfe-a1df-16dee08cb72e +2020,Córdoba,II.5.1,493.14635999999996,TJ,CH4,3.9,kg/TJ,1923.2708039999998,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,27f13518-577c-3a3f-9e1e-592cf1beb5b9 +2020,Córdoba,II.5.1,493.14635999999996,TJ,N2O,3.9,kg/TJ,1923.2708039999998,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,27f13518-577c-3a3f-9e1e-592cf1beb5b9 +2020,Entre Rios,II.5.1,36.87852,TJ,CO2,74100.0,kg/TJ,2732698.332,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,24f0ee62-21c8-3195-aa83-271cf16ea6f8 +2020,Entre Rios,II.5.1,36.87852,TJ,CH4,3.9,kg/TJ,143.82622800000001,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,5c0cfb73-af3f-3a48-a14d-4948b2693d55 +2020,Entre Rios,II.5.1,36.87852,TJ,N2O,3.9,kg/TJ,143.82622800000001,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,5c0cfb73-af3f-3a48-a14d-4948b2693d55 +2020,Formosa,II.5.1,27.162239999999997,TJ,CO2,74100.0,kg/TJ,2012721.9839999997,Gas Oil combustion consumption by agriculture machines,AR-P,SESCO,annual,kg,a4c30c07-2c6b-379a-ab59-0a431a184988 +2020,Formosa,II.5.1,27.162239999999997,TJ,CH4,3.9,kg/TJ,105.93273599999999,Gas Oil combustion consumption by agriculture machines,AR-P,SESCO,annual,kg,5a75b230-635b-31fd-a00d-dbc9d3a8d9a1 +2020,Formosa,II.5.1,27.162239999999997,TJ,N2O,3.9,kg/TJ,105.93273599999999,Gas Oil combustion consumption by agriculture machines,AR-P,SESCO,annual,kg,5a75b230-635b-31fd-a00d-dbc9d3a8d9a1 +2020,Jujuy,II.5.1,44.933279999999996,TJ,CO2,74100.0,kg/TJ,3329556.048,Gas Oil combustion consumption by agriculture machines,AR-Y,SESCO,annual,kg,b84657e7-5367-3a71-b98e-7905f62fa8d2 +2020,Jujuy,II.5.1,44.933279999999996,TJ,CH4,3.9,kg/TJ,175.239792,Gas Oil combustion consumption by agriculture machines,AR-Y,SESCO,annual,kg,65923aa6-618d-32d9-be98-02a279c3a514 +2020,Jujuy,II.5.1,44.933279999999996,TJ,N2O,3.9,kg/TJ,175.239792,Gas Oil combustion consumption by agriculture machines,AR-Y,SESCO,annual,kg,65923aa6-618d-32d9-be98-02a279c3a514 +2020,La Pampa,II.5.1,140.00112,TJ,CO2,74100.0,kg/TJ,10374082.991999999,Gas Oil combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,43f891e4-fac0-33ab-ba05-ef10821ec571 +2020,La Pampa,II.5.1,140.00112,TJ,CH4,3.9,kg/TJ,546.0043679999999,Gas Oil combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,af144b9c-0e28-3888-8897-841d37ea9891 +2020,La Pampa,II.5.1,140.00112,TJ,N2O,3.9,kg/TJ,546.0043679999999,Gas Oil combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,af144b9c-0e28-3888-8897-841d37ea9891 +2020,La Rioja,II.5.1,1.3364399999999999,TJ,CO2,74100.0,kg/TJ,99030.20399999998,Gas Oil combustion consumption by agriculture machines,AR-F,SESCO,annual,kg,488bb5b9-49be-3186-bcb2-485d84188fef +2020,La Rioja,II.5.1,1.3364399999999999,TJ,CH4,3.9,kg/TJ,5.212115999999999,Gas Oil combustion consumption by agriculture machines,AR-F,SESCO,annual,kg,9bd6875b-1c7b-3388-ab17-d2553c103f4a +2020,La Rioja,II.5.1,1.3364399999999999,TJ,N2O,3.9,kg/TJ,5.212115999999999,Gas Oil combustion consumption by agriculture machines,AR-F,SESCO,annual,kg,9bd6875b-1c7b-3388-ab17-d2553c103f4a +2020,Mendoza,II.5.1,242.79863999999998,TJ,CO2,74100.0,kg/TJ,17991379.224,Gas Oil combustion consumption by agriculture machines,AR-M,SESCO,annual,kg,e3823fe4-2015-39d0-8777-d00e9d3d6520 +2020,Mendoza,II.5.1,242.79863999999998,TJ,CH4,3.9,kg/TJ,946.9146959999999,Gas Oil combustion consumption by agriculture machines,AR-M,SESCO,annual,kg,e41fcd78-c097-35ec-8098-0cb205089ab7 +2020,Mendoza,II.5.1,242.79863999999998,TJ,N2O,3.9,kg/TJ,946.9146959999999,Gas Oil combustion consumption by agriculture machines,AR-M,SESCO,annual,kg,e41fcd78-c097-35ec-8098-0cb205089ab7 +2020,Misiones,II.5.1,80.36699999999999,TJ,CO2,74100.0,kg/TJ,5955194.699999999,Gas Oil combustion consumption by agriculture machines,AR-N,SESCO,annual,kg,dc8e7aca-afa6-3531-9cd4-998bd9a83cc0 +2020,Misiones,II.5.1,80.36699999999999,TJ,CH4,3.9,kg/TJ,313.43129999999996,Gas Oil combustion consumption by agriculture machines,AR-N,SESCO,annual,kg,d0e6413c-3ad8-3c3e-b700-59aa686941b9 +2020,Misiones,II.5.1,80.36699999999999,TJ,N2O,3.9,kg/TJ,313.43129999999996,Gas Oil combustion consumption by agriculture machines,AR-N,SESCO,annual,kg,d0e6413c-3ad8-3c3e-b700-59aa686941b9 +2020,Rio Negro,II.5.1,39.370799999999996,TJ,CO2,74100.0,kg/TJ,2917376.28,Gas Oil combustion consumption by agriculture machines,AR-R,SESCO,annual,kg,7d64d26d-f93a-30c9-b9f1-84a2f674e60e +2020,Rio Negro,II.5.1,39.370799999999996,TJ,CH4,3.9,kg/TJ,153.54611999999997,Gas Oil combustion consumption by agriculture machines,AR-R,SESCO,annual,kg,75ef7126-97d7-3648-9564-10096a5593ec +2020,Rio Negro,II.5.1,39.370799999999996,TJ,N2O,3.9,kg/TJ,153.54611999999997,Gas Oil combustion consumption by agriculture machines,AR-R,SESCO,annual,kg,75ef7126-97d7-3648-9564-10096a5593ec +2020,Salta,II.5.1,189.55776,TJ,CO2,74100.0,kg/TJ,14046230.016,Gas Oil combustion consumption by agriculture machines,AR-A,SESCO,annual,kg,05a43bd6-e213-3d25-beda-438cce6d9ba0 +2020,Salta,II.5.1,189.55776,TJ,CH4,3.9,kg/TJ,739.275264,Gas Oil combustion consumption by agriculture machines,AR-A,SESCO,annual,kg,bbf934d6-e7ea-320c-8489-51deeee9da71 +2020,Salta,II.5.1,189.55776,TJ,N2O,3.9,kg/TJ,739.275264,Gas Oil combustion consumption by agriculture machines,AR-A,SESCO,annual,kg,bbf934d6-e7ea-320c-8489-51deeee9da71 +2020,San Juan,II.5.1,66.35244,TJ,CO2,74100.0,kg/TJ,4916715.8040000005,Gas Oil combustion consumption by agriculture machines,AR-J,SESCO,annual,kg,acbb9efe-fa82-3071-a436-94cd0e59b4ca +2020,San Juan,II.5.1,66.35244,TJ,CH4,3.9,kg/TJ,258.774516,Gas Oil combustion consumption by agriculture machines,AR-J,SESCO,annual,kg,b6a55c1b-41c0-3035-805f-8f7171d0867c +2020,San Juan,II.5.1,66.35244,TJ,N2O,3.9,kg/TJ,258.774516,Gas Oil combustion consumption by agriculture machines,AR-J,SESCO,annual,kg,b6a55c1b-41c0-3035-805f-8f7171d0867c +2020,San Luis,II.5.1,38.90124,TJ,CO2,74100.0,kg/TJ,2882581.884,Gas Oil combustion consumption by agriculture machines,AR-D,SESCO,annual,kg,1b48a316-be22-306e-8081-a1b95b3037eb +2020,San Luis,II.5.1,38.90124,TJ,CH4,3.9,kg/TJ,151.714836,Gas Oil combustion consumption by agriculture machines,AR-D,SESCO,annual,kg,42d2c456-1307-3d9c-9fc3-5f9038bc3194 +2020,San Luis,II.5.1,38.90124,TJ,N2O,3.9,kg/TJ,151.714836,Gas Oil combustion consumption by agriculture machines,AR-D,SESCO,annual,kg,42d2c456-1307-3d9c-9fc3-5f9038bc3194 +2020,Santa Fe,II.5.1,654.7472399999999,TJ,CO2,74100.0,kg/TJ,48516770.484,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,af2a30bc-505f-3dcf-beba-be51513b94e8 +2020,Santa Fe,II.5.1,654.7472399999999,TJ,CH4,3.9,kg/TJ,2553.5142359999995,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,88d8a941-073c-3d81-a736-2b305f9f569c +2020,Santa Fe,II.5.1,654.7472399999999,TJ,N2O,3.9,kg/TJ,2553.5142359999995,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,88d8a941-073c-3d81-a736-2b305f9f569c +2020,Santiago del Estero,II.5.1,203.57232,TJ,CO2,74100.0,kg/TJ,15084708.911999999,Gas Oil combustion consumption by agriculture machines,AR-G,SESCO,annual,kg,ae59cf59-8186-34f0-ba85-3f8589daf7ae +2020,Santiago del Estero,II.5.1,203.57232,TJ,CH4,3.9,kg/TJ,793.9320479999999,Gas Oil combustion consumption by agriculture machines,AR-G,SESCO,annual,kg,093d38a4-ea2f-300c-bb2f-4048eb535927 +2020,Santiago del Estero,II.5.1,203.57232,TJ,N2O,3.9,kg/TJ,793.9320479999999,Gas Oil combustion consumption by agriculture machines,AR-G,SESCO,annual,kg,093d38a4-ea2f-300c-bb2f-4048eb535927 +2020,Tucuman,II.5.1,129.56243999999998,TJ,CO2,74100.0,kg/TJ,9600576.803999998,Gas Oil combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,7a173b95-c949-3b22-ae97-713deceaf441 +2020,Tucuman,II.5.1,129.56243999999998,TJ,CH4,3.9,kg/TJ,505.2935159999999,Gas Oil combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,68134679-dca6-3aca-b733-5b2f0b109959 +2020,Tucuman,II.5.1,129.56243999999998,TJ,N2O,3.9,kg/TJ,505.2935159999999,Gas Oil combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,68134679-dca6-3aca-b733-5b2f0b109959 +2020,Buenos Aires,II.5.1,5.158291999999999,TJ,CO2,71500.0,kg/TJ,368817.87799999997,Jet Kerosene combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,18d693ff-6f6d-33a2-ac33-d9f99d252ae4 +2020,Buenos Aires,II.5.1,5.158291999999999,TJ,CH4,0.5,kg/TJ,2.5791459999999997,Jet Kerosene combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,812afa24-741e-3926-865a-68d2dfed32b5 +2020,Buenos Aires,II.5.1,5.158291999999999,TJ,N2O,2.0,kg/TJ,10.316583999999999,Jet Kerosene combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,7a77c70c-fa99-341f-bdc9-44a0e2a95d9e +2020,Córdoba,II.5.1,0.62906,TJ,CO2,71500.0,kg/TJ,44977.78999999999,Jet Kerosene combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,11b9baef-3706-3fd4-9f1c-cb581ac4b75b +2020,Córdoba,II.5.1,0.62906,TJ,CH4,0.5,kg/TJ,0.31453,Jet Kerosene combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,e4a00eb6-4649-3045-a36c-a3da6a04d8c6 +2020,Córdoba,II.5.1,0.62906,TJ,N2O,2.0,kg/TJ,1.25812,Jet Kerosene combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,845cbfb1-a493-3cfb-80e7-7a024903736c +2020,Santa Fe,II.5.1,0.849231,TJ,CO2,71500.0,kg/TJ,60720.0165,Jet Kerosene combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,5177c782-cd36-39cf-becf-492c933a0ec8 +2020,Santa Fe,II.5.1,0.849231,TJ,CH4,0.5,kg/TJ,0.4246155,Jet Kerosene combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,dec1b66c-2863-3eee-bb53-ecb7bbca91d8 +2020,Santa Fe,II.5.1,0.849231,TJ,N2O,2.0,kg/TJ,1.698462,Jet Kerosene combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,99b5539a-5bb9-3cb4-9690-945bd75bdcdb +2020,Buenos Aires,II.5.1,0.27412,TJ,CO2,73300.0,kg/TJ,20092.996,Naphtha combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,2426d1a8-ca6e-3dbc-8aa1-8e070f806aab +2020,Buenos Aires,II.5.1,0.27412,TJ,CH4,0.5,kg/TJ,0.13706,Naphtha combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,b4120277-dab0-391d-b45c-4a00c111c7f8 +2020,Buenos Aires,II.5.1,0.27412,TJ,N2O,2.0,kg/TJ,0.54824,Naphtha combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,fc4125f0-7101-3d8b-82fa-0660f9c55d98 +2020,Salta,II.5.1,0.75383,TJ,CO2,73300.0,kg/TJ,55255.739,Naphtha combustion consumption by agriculture machines,AR-A,SESCO,annual,kg,a979f5e1-c160-35d9-aaa6-bb39f4183227 +2020,Salta,II.5.1,0.75383,TJ,CH4,0.5,kg/TJ,0.376915,Naphtha combustion consumption by agriculture machines,AR-A,SESCO,annual,kg,4d2df10b-0af8-3598-a5e7-63a9fdc07bcf +2020,Salta,II.5.1,0.75383,TJ,N2O,2.0,kg/TJ,1.50766,Naphtha combustion consumption by agriculture machines,AR-A,SESCO,annual,kg,510c9d72-2304-3f4c-a87c-46dd7e21fcd3 +2020,Santa Fe,II.5.1,2.706935,TJ,CO2,73300.0,kg/TJ,198418.33550000002,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,77f5651e-84be-318c-be1a-4bb39122cc50 +2020,Santa Fe,II.5.1,2.706935,TJ,CH4,0.5,kg/TJ,1.3534675,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,dc28d3c0-739d-3f6e-be2a-48bdf0a3e5d3 +2020,Santa Fe,II.5.1,2.706935,TJ,N2O,2.0,kg/TJ,5.41387,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,4589a612-af59-32c4-9d2c-0a54003f3c24 +2020,Buenos Aires,II.1.1,8155.534799999999,TJ,CO2,74100.0,kg/TJ,604325128.68,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,9acfcf4d-7f2a-302d-8d8d-2e7f424784b2 +2020,Buenos Aires,II.1.1,8155.534799999999,TJ,CH4,3.9,kg/TJ,31806.585719999995,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,4756b67d-8868-3b73-9537-cdf068ea3ade +2020,Buenos Aires,II.1.1,8155.534799999999,TJ,N2O,3.9,kg/TJ,31806.585719999995,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,4756b67d-8868-3b73-9537-cdf068ea3ade +2020,Capital Federal,II.1.1,3115.06104,TJ,CO2,74100.0,kg/TJ,230826023.064,Gas Oil combustion consumption by freight transport,AR-C,SESCO,annual,kg,3047e72b-c7b3-31a3-bdb2-a3e318a09060 +2020,Capital Federal,II.1.1,3115.06104,TJ,CH4,3.9,kg/TJ,12148.738056,Gas Oil combustion consumption by freight transport,AR-C,SESCO,annual,kg,366327a7-4812-3e12-a308-07fe22c7f136 +2020,Capital Federal,II.1.1,3115.06104,TJ,N2O,3.9,kg/TJ,12148.738056,Gas Oil combustion consumption by freight transport,AR-C,SESCO,annual,kg,366327a7-4812-3e12-a308-07fe22c7f136 +2020,Catamarca,II.1.1,22.90008,TJ,CO2,74100.0,kg/TJ,1696895.9279999998,Gas Oil combustion consumption by freight transport,AR-K,SESCO,annual,kg,fd2e4ef3-5cbf-3112-a108-32c077237207 +2020,Catamarca,II.1.1,22.90008,TJ,CH4,3.9,kg/TJ,89.310312,Gas Oil combustion consumption by freight transport,AR-K,SESCO,annual,kg,6fd2f12f-1c9b-3398-86bd-3f4b4cab810f +2020,Catamarca,II.1.1,22.90008,TJ,N2O,3.9,kg/TJ,89.310312,Gas Oil combustion consumption by freight transport,AR-K,SESCO,annual,kg,6fd2f12f-1c9b-3398-86bd-3f4b4cab810f +2020,Chaco,II.1.1,280.1106,TJ,CO2,74100.0,kg/TJ,20756195.459999997,Gas Oil combustion consumption by freight transport,AR-H,SESCO,annual,kg,3ddc19c0-97cc-3f45-988c-e951ac9132d6 +2020,Chaco,II.1.1,280.1106,TJ,CH4,3.9,kg/TJ,1092.4313399999999,Gas Oil combustion consumption by freight transport,AR-H,SESCO,annual,kg,b9ab91d1-ecc8-34f6-a356-7c652bb11c7d +2020,Chaco,II.1.1,280.1106,TJ,N2O,3.9,kg/TJ,1092.4313399999999,Gas Oil combustion consumption by freight transport,AR-H,SESCO,annual,kg,b9ab91d1-ecc8-34f6-a356-7c652bb11c7d +2020,Chubut,II.1.1,198.40716,TJ,CO2,74100.0,kg/TJ,14701970.556,Gas Oil combustion consumption by freight transport,AR-U,SESCO,annual,kg,994a0d9b-9ed3-308b-ba13-1a056e73b573 +2020,Chubut,II.1.1,198.40716,TJ,CH4,3.9,kg/TJ,773.787924,Gas Oil combustion consumption by freight transport,AR-U,SESCO,annual,kg,273445bc-69e9-3b36-96fd-09df897c903e +2020,Chubut,II.1.1,198.40716,TJ,N2O,3.9,kg/TJ,773.787924,Gas Oil combustion consumption by freight transport,AR-U,SESCO,annual,kg,273445bc-69e9-3b36-96fd-09df897c903e +2020,Corrientes,II.1.1,409.2396,TJ,CO2,74100.0,kg/TJ,30324654.36,Gas Oil combustion consumption by freight transport,AR-W,SESCO,annual,kg,53a28b73-0c58-3028-b533-09be3b5ef77b +2020,Corrientes,II.1.1,409.2396,TJ,CH4,3.9,kg/TJ,1596.03444,Gas Oil combustion consumption by freight transport,AR-W,SESCO,annual,kg,4c92c881-5ece-326d-af1c-b343454f3034 +2020,Corrientes,II.1.1,409.2396,TJ,N2O,3.9,kg/TJ,1596.03444,Gas Oil combustion consumption by freight transport,AR-W,SESCO,annual,kg,4c92c881-5ece-326d-af1c-b343454f3034 +2020,Córdoba,II.1.1,2655.43404,TJ,CO2,74100.0,kg/TJ,196767662.364,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,2adfba99-c59a-3869-a456-23c7fb2ea41a +2020,Córdoba,II.1.1,2655.43404,TJ,CH4,3.9,kg/TJ,10356.192756,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,dcaae37e-42fb-3dbd-8189-a7c921ecd17c +2020,Córdoba,II.1.1,2655.43404,TJ,N2O,3.9,kg/TJ,10356.192756,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,dcaae37e-42fb-3dbd-8189-a7c921ecd17c +2020,Entre Rios,II.1.1,903.3611999999999,TJ,CO2,74100.0,kg/TJ,66939064.919999994,Gas Oil combustion consumption by freight transport,AR-E,SESCO,annual,kg,4bab3385-6fe5-3591-b417-e548ff19d226 +2020,Entre Rios,II.1.1,903.3611999999999,TJ,CH4,3.9,kg/TJ,3523.10868,Gas Oil combustion consumption by freight transport,AR-E,SESCO,annual,kg,e5efa5e4-d638-3792-8270-7d3d89fc27b4 +2020,Entre Rios,II.1.1,903.3611999999999,TJ,N2O,3.9,kg/TJ,3523.10868,Gas Oil combustion consumption by freight transport,AR-E,SESCO,annual,kg,e5efa5e4-d638-3792-8270-7d3d89fc27b4 +2020,Formosa,II.1.1,42.0798,TJ,CO2,74100.0,kg/TJ,3118113.1799999997,Gas Oil combustion consumption by freight transport,AR-P,SESCO,annual,kg,0d0437bd-1067-3e4d-bae2-f57c8e1fe4c5 +2020,Formosa,II.1.1,42.0798,TJ,CH4,3.9,kg/TJ,164.11122,Gas Oil combustion consumption by freight transport,AR-P,SESCO,annual,kg,c4d3f679-d5ca-3df0-acf8-fe020390402c +2020,Formosa,II.1.1,42.0798,TJ,N2O,3.9,kg/TJ,164.11122,Gas Oil combustion consumption by freight transport,AR-P,SESCO,annual,kg,c4d3f679-d5ca-3df0-acf8-fe020390402c +2020,Jujuy,II.1.1,202.95828,TJ,CO2,74100.0,kg/TJ,15039208.548,Gas Oil combustion consumption by freight transport,AR-Y,SESCO,annual,kg,9dada357-ad63-35f9-96a3-345dcaf0a1c3 +2020,Jujuy,II.1.1,202.95828,TJ,CH4,3.9,kg/TJ,791.537292,Gas Oil combustion consumption by freight transport,AR-Y,SESCO,annual,kg,26274984-8c21-3adc-b388-e4b8088a04a0 +2020,Jujuy,II.1.1,202.95828,TJ,N2O,3.9,kg/TJ,791.537292,Gas Oil combustion consumption by freight transport,AR-Y,SESCO,annual,kg,26274984-8c21-3adc-b388-e4b8088a04a0 +2020,La Pampa,II.1.1,269.27459999999996,TJ,CO2,74100.0,kg/TJ,19953247.859999996,Gas Oil combustion consumption by freight transport,AR-L,SESCO,annual,kg,ad120dd6-e4e4-3f3b-b2d6-0b30648a91ac +2020,La Pampa,II.1.1,269.27459999999996,TJ,CH4,3.9,kg/TJ,1050.1709399999997,Gas Oil combustion consumption by freight transport,AR-L,SESCO,annual,kg,160ae7dc-9048-3df8-9953-25eac84ccea7 +2020,La Pampa,II.1.1,269.27459999999996,TJ,N2O,3.9,kg/TJ,1050.1709399999997,Gas Oil combustion consumption by freight transport,AR-L,SESCO,annual,kg,160ae7dc-9048-3df8-9953-25eac84ccea7 +2020,La Rioja,II.1.1,17.37372,TJ,CO2,74100.0,kg/TJ,1287392.652,Gas Oil combustion consumption by freight transport,AR-F,SESCO,annual,kg,5f2f50c0-1b2c-3002-ab33-c1e00de67213 +2020,La Rioja,II.1.1,17.37372,TJ,CH4,3.9,kg/TJ,67.75750799999999,Gas Oil combustion consumption by freight transport,AR-F,SESCO,annual,kg,9de29fa1-5464-3013-b04e-bcd9ce9750c3 +2020,La Rioja,II.1.1,17.37372,TJ,N2O,3.9,kg/TJ,67.75750799999999,Gas Oil combustion consumption by freight transport,AR-F,SESCO,annual,kg,9de29fa1-5464-3013-b04e-bcd9ce9750c3 +2020,Mendoza,II.1.1,1659.64176,TJ,CO2,74100.0,kg/TJ,122979454.416,Gas Oil combustion consumption by freight transport,AR-M,SESCO,annual,kg,03c57cd6-44a7-3df8-967d-4e9cc40c6d15 +2020,Mendoza,II.1.1,1659.64176,TJ,CH4,3.9,kg/TJ,6472.6028639999995,Gas Oil combustion consumption by freight transport,AR-M,SESCO,annual,kg,4584c526-ba02-35e6-a356-6a937a34fdf1 +2020,Mendoza,II.1.1,1659.64176,TJ,N2O,3.9,kg/TJ,6472.6028639999995,Gas Oil combustion consumption by freight transport,AR-M,SESCO,annual,kg,4584c526-ba02-35e6-a356-6a937a34fdf1 +2020,Misiones,II.1.1,1016.12784,TJ,CO2,74100.0,kg/TJ,75295072.944,Gas Oil combustion consumption by freight transport,AR-N,SESCO,annual,kg,b901373a-552d-3f78-8a72-30a71879d59e +2020,Misiones,II.1.1,1016.12784,TJ,CH4,3.9,kg/TJ,3962.898576,Gas Oil combustion consumption by freight transport,AR-N,SESCO,annual,kg,f05454ed-bf01-329c-823c-7611a73c5988 +2020,Misiones,II.1.1,1016.12784,TJ,N2O,3.9,kg/TJ,3962.898576,Gas Oil combustion consumption by freight transport,AR-N,SESCO,annual,kg,f05454ed-bf01-329c-823c-7611a73c5988 +2020,Neuquén,II.1.1,571.4184,TJ,CO2,74100.0,kg/TJ,42342103.440000005,Gas Oil combustion consumption by freight transport,AR-Q,SESCO,annual,kg,1b8cb0a7-4c6b-3cf6-9ede-7c7dcfe85985 +2020,Neuquén,II.1.1,571.4184,TJ,CH4,3.9,kg/TJ,2228.53176,Gas Oil combustion consumption by freight transport,AR-Q,SESCO,annual,kg,7f2a7ab8-be5a-3fe3-a10b-a5c8c451bdca +2020,Neuquén,II.1.1,571.4184,TJ,N2O,3.9,kg/TJ,2228.53176,Gas Oil combustion consumption by freight transport,AR-Q,SESCO,annual,kg,7f2a7ab8-be5a-3fe3-a10b-a5c8c451bdca +2020,Rio Negro,II.1.1,379.26,TJ,CO2,74100.0,kg/TJ,28103166.0,Gas Oil combustion consumption by freight transport,AR-R,SESCO,annual,kg,a8229873-fa83-34f5-82ac-833c4169c8da +2020,Rio Negro,II.1.1,379.26,TJ,CH4,3.9,kg/TJ,1479.114,Gas Oil combustion consumption by freight transport,AR-R,SESCO,annual,kg,3a340795-4de5-3ff4-9f37-9fe1f4461de1 +2020,Rio Negro,II.1.1,379.26,TJ,N2O,3.9,kg/TJ,1479.114,Gas Oil combustion consumption by freight transport,AR-R,SESCO,annual,kg,3a340795-4de5-3ff4-9f37-9fe1f4461de1 +2020,Salta,II.1.1,385.07532,TJ,CO2,74100.0,kg/TJ,28534081.211999997,Gas Oil combustion consumption by freight transport,AR-A,SESCO,annual,kg,265a7a46-0948-3920-a181-589ba497f6fd +2020,Salta,II.1.1,385.07532,TJ,CH4,3.9,kg/TJ,1501.7937479999998,Gas Oil combustion consumption by freight transport,AR-A,SESCO,annual,kg,734f7f02-4e33-3960-a2d9-a41babf152f7 +2020,Salta,II.1.1,385.07532,TJ,N2O,3.9,kg/TJ,1501.7937479999998,Gas Oil combustion consumption by freight transport,AR-A,SESCO,annual,kg,734f7f02-4e33-3960-a2d9-a41babf152f7 +2020,San Juan,II.1.1,163.26239999999999,TJ,CO2,74100.0,kg/TJ,12097743.839999998,Gas Oil combustion consumption by freight transport,AR-J,SESCO,annual,kg,134f69d6-997a-3bb3-865f-5236e7c225ec +2020,San Juan,II.1.1,163.26239999999999,TJ,CH4,3.9,kg/TJ,636.72336,Gas Oil combustion consumption by freight transport,AR-J,SESCO,annual,kg,e30d8556-41b7-3fcc-8076-cce4ad2b3f1a +2020,San Juan,II.1.1,163.26239999999999,TJ,N2O,3.9,kg/TJ,636.72336,Gas Oil combustion consumption by freight transport,AR-J,SESCO,annual,kg,e30d8556-41b7-3fcc-8076-cce4ad2b3f1a +2020,San Luis,II.1.1,331.5816,TJ,CO2,74100.0,kg/TJ,24570196.56,Gas Oil combustion consumption by freight transport,AR-D,SESCO,annual,kg,314486e7-8f1d-3903-b223-4eed8953a6b0 +2020,San Luis,II.1.1,331.5816,TJ,CH4,3.9,kg/TJ,1293.16824,Gas Oil combustion consumption by freight transport,AR-D,SESCO,annual,kg,bbb0ef4e-1a7c-3c61-a3d8-e5a20c1d95ac +2020,San Luis,II.1.1,331.5816,TJ,N2O,3.9,kg/TJ,1293.16824,Gas Oil combustion consumption by freight transport,AR-D,SESCO,annual,kg,bbb0ef4e-1a7c-3c61-a3d8-e5a20c1d95ac +2020,Santa Cruz,II.1.1,157.26648,TJ,CO2,74100.0,kg/TJ,11653446.168,Gas Oil combustion consumption by freight transport,AR-Z,SESCO,annual,kg,3def2949-a1f2-3542-adde-31eef5c7cdc6 +2020,Santa Cruz,II.1.1,157.26648,TJ,CH4,3.9,kg/TJ,613.3392719999999,Gas Oil combustion consumption by freight transport,AR-Z,SESCO,annual,kg,a7ce0e26-0b38-39f9-ae57-63f8e5d40948 +2020,Santa Cruz,II.1.1,157.26648,TJ,N2O,3.9,kg/TJ,613.3392719999999,Gas Oil combustion consumption by freight transport,AR-Z,SESCO,annual,kg,a7ce0e26-0b38-39f9-ae57-63f8e5d40948 +2020,Santa Fe,II.1.1,3016.27284,TJ,CO2,74100.0,kg/TJ,223505817.444,Gas Oil combustion consumption by freight transport,AR-S,SESCO,annual,kg,9b2cff47-903b-304d-8d92-92e96c6876bb +2020,Santa Fe,II.1.1,3016.27284,TJ,CH4,3.9,kg/TJ,11763.464076,Gas Oil combustion consumption by freight transport,AR-S,SESCO,annual,kg,c107700c-4f4d-3481-8a29-1ee459148283 +2020,Santa Fe,II.1.1,3016.27284,TJ,N2O,3.9,kg/TJ,11763.464076,Gas Oil combustion consumption by freight transport,AR-S,SESCO,annual,kg,c107700c-4f4d-3481-8a29-1ee459148283 +2020,Santiago del Estero,II.1.1,326.27196,TJ,CO2,74100.0,kg/TJ,24176752.235999998,Gas Oil combustion consumption by freight transport,AR-G,SESCO,annual,kg,19b38b65-d7fc-374d-bca6-83c6c6f078c8 +2020,Santiago del Estero,II.1.1,326.27196,TJ,CH4,3.9,kg/TJ,1272.4606439999998,Gas Oil combustion consumption by freight transport,AR-G,SESCO,annual,kg,6b5432fe-76ff-3210-9352-0cf835437166 +2020,Santiago del Estero,II.1.1,326.27196,TJ,N2O,3.9,kg/TJ,1272.4606439999998,Gas Oil combustion consumption by freight transport,AR-G,SESCO,annual,kg,6b5432fe-76ff-3210-9352-0cf835437166 +2020,Tierra del Fuego,II.1.1,285.45635999999996,TJ,CO2,74100.0,kg/TJ,21152316.275999997,Gas Oil combustion consumption by freight transport,AR-V,SESCO,annual,kg,8c225bbe-c64b-3f13-8143-e79e8045eea2 +2020,Tierra del Fuego,II.1.1,285.45635999999996,TJ,CH4,3.9,kg/TJ,1113.2798039999998,Gas Oil combustion consumption by freight transport,AR-V,SESCO,annual,kg,a680149e-677b-3dd8-8a3f-9fb0f05b5e1f +2020,Tierra del Fuego,II.1.1,285.45635999999996,TJ,N2O,3.9,kg/TJ,1113.2798039999998,Gas Oil combustion consumption by freight transport,AR-V,SESCO,annual,kg,a680149e-677b-3dd8-8a3f-9fb0f05b5e1f +2020,Tucuman,II.1.1,571.4184,TJ,CO2,74100.0,kg/TJ,42342103.440000005,Gas Oil combustion consumption by freight transport,AR-T,SESCO,annual,kg,a69fb53a-c311-3d76-b620-cc4a81fb1ab3 +2020,Tucuman,II.1.1,571.4184,TJ,CH4,3.9,kg/TJ,2228.53176,Gas Oil combustion consumption by freight transport,AR-T,SESCO,annual,kg,d864443a-de76-367a-a3b6-a73e9e0d141e +2020,Tucuman,II.1.1,571.4184,TJ,N2O,3.9,kg/TJ,2228.53176,Gas Oil combustion consumption by freight transport,AR-T,SESCO,annual,kg,d864443a-de76-367a-a3b6-a73e9e0d141e +2020,Buenos Aires,II.1.1,2104.74852,TJ,CO2,74100.0,kg/TJ,155961865.33200002,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,19033275-d0f6-3467-9641-8504ccd2b7d3 +2020,Buenos Aires,II.1.1,2104.74852,TJ,CH4,3.9,kg/TJ,8208.519228000001,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,9141ec14-f721-3f78-97e5-9431f77a3278 +2020,Buenos Aires,II.1.1,2104.74852,TJ,N2O,3.9,kg/TJ,8208.519228000001,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,9141ec14-f721-3f78-97e5-9431f77a3278 +2020,Capital Federal,II.1.1,1857.6516,TJ,CO2,74100.0,kg/TJ,137651983.56,Gas Oil combustion consumption by freight transport,AR-C,SESCO,annual,kg,057dd5f1-8321-39d1-ad7b-928997f0ac1f +2020,Capital Federal,II.1.1,1857.6516,TJ,CH4,3.9,kg/TJ,7244.84124,Gas Oil combustion consumption by freight transport,AR-C,SESCO,annual,kg,9951d2d0-2e34-33d5-9b24-85ae9438bb9f +2020,Capital Federal,II.1.1,1857.6516,TJ,N2O,3.9,kg/TJ,7244.84124,Gas Oil combustion consumption by freight transport,AR-C,SESCO,annual,kg,9951d2d0-2e34-33d5-9b24-85ae9438bb9f +2020,Catamarca,II.1.1,9.64404,TJ,CO2,74100.0,kg/TJ,714623.3640000001,Gas Oil combustion consumption by freight transport,AR-K,SESCO,annual,kg,5ddc5b3b-6969-33f9-bcbe-2703daa089ef +2020,Catamarca,II.1.1,9.64404,TJ,CH4,3.9,kg/TJ,37.611756,Gas Oil combustion consumption by freight transport,AR-K,SESCO,annual,kg,633e3246-61f4-309e-bb81-012d0050e751 +2020,Catamarca,II.1.1,9.64404,TJ,N2O,3.9,kg/TJ,37.611756,Gas Oil combustion consumption by freight transport,AR-K,SESCO,annual,kg,633e3246-61f4-309e-bb81-012d0050e751 +2020,Chaco,II.1.1,79.6446,TJ,CO2,74100.0,kg/TJ,5901664.859999999,Gas Oil combustion consumption by freight transport,AR-H,SESCO,annual,kg,ef2d368e-4b84-36c2-a069-4949afaafaab +2020,Chaco,II.1.1,79.6446,TJ,CH4,3.9,kg/TJ,310.61393999999996,Gas Oil combustion consumption by freight transport,AR-H,SESCO,annual,kg,160cb0d5-f17d-328f-b276-6aeab9232ab1 +2020,Chaco,II.1.1,79.6446,TJ,N2O,3.9,kg/TJ,310.61393999999996,Gas Oil combustion consumption by freight transport,AR-H,SESCO,annual,kg,160cb0d5-f17d-328f-b276-6aeab9232ab1 +2020,Chubut,II.1.1,268.3716,TJ,CO2,74100.0,kg/TJ,19886335.56,Gas Oil combustion consumption by freight transport,AR-U,SESCO,annual,kg,179e51a5-e7b6-30da-9271-42c9d5fd1c88 +2020,Chubut,II.1.1,268.3716,TJ,CH4,3.9,kg/TJ,1046.64924,Gas Oil combustion consumption by freight transport,AR-U,SESCO,annual,kg,c2cd8c0e-187b-39d3-95b2-773fc4744c51 +2020,Chubut,II.1.1,268.3716,TJ,N2O,3.9,kg/TJ,1046.64924,Gas Oil combustion consumption by freight transport,AR-U,SESCO,annual,kg,c2cd8c0e-187b-39d3-95b2-773fc4744c51 +2020,Corrientes,II.1.1,126.27552,TJ,CO2,74100.0,kg/TJ,9357016.032,Gas Oil combustion consumption by freight transport,AR-W,SESCO,annual,kg,ed0f749f-13c7-3ee8-acda-35086600e255 +2020,Corrientes,II.1.1,126.27552,TJ,CH4,3.9,kg/TJ,492.47452799999996,Gas Oil combustion consumption by freight transport,AR-W,SESCO,annual,kg,5846b3c8-2653-3f4c-aa8c-1c31a4acb356 +2020,Corrientes,II.1.1,126.27552,TJ,N2O,3.9,kg/TJ,492.47452799999996,Gas Oil combustion consumption by freight transport,AR-W,SESCO,annual,kg,5846b3c8-2653-3f4c-aa8c-1c31a4acb356 +2020,Córdoba,II.1.1,552.20256,TJ,CO2,74100.0,kg/TJ,40918209.695999995,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,5e2fef8c-abe2-348e-ac44-288e452eb864 +2020,Córdoba,II.1.1,552.20256,TJ,CH4,3.9,kg/TJ,2153.5899839999997,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,2a887606-ff38-3ed1-be05-a025dc7b427e +2020,Córdoba,II.1.1,552.20256,TJ,N2O,3.9,kg/TJ,2153.5899839999997,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,2a887606-ff38-3ed1-be05-a025dc7b427e +2020,Entre Rios,II.1.1,208.62912,TJ,CO2,74100.0,kg/TJ,15459417.792,Gas Oil combustion consumption by freight transport,AR-E,SESCO,annual,kg,bc8e7a30-26c1-33b7-af10-45fb7e3fdfd2 +2020,Entre Rios,II.1.1,208.62912,TJ,CH4,3.9,kg/TJ,813.653568,Gas Oil combustion consumption by freight transport,AR-E,SESCO,annual,kg,d4158d0d-7d7a-3683-862d-b36c98fc9a97 +2020,Entre Rios,II.1.1,208.62912,TJ,N2O,3.9,kg/TJ,813.653568,Gas Oil combustion consumption by freight transport,AR-E,SESCO,annual,kg,d4158d0d-7d7a-3683-862d-b36c98fc9a97 +2020,Formosa,II.1.1,14.19516,TJ,CO2,74100.0,kg/TJ,1051861.356,Gas Oil combustion consumption by freight transport,AR-P,SESCO,annual,kg,ae5b042d-d8b4-33c5-a227-4d9362c8585f +2020,Formosa,II.1.1,14.19516,TJ,CH4,3.9,kg/TJ,55.361124,Gas Oil combustion consumption by freight transport,AR-P,SESCO,annual,kg,63df1291-18e5-34d0-9482-9b18230a0f90 +2020,Formosa,II.1.1,14.19516,TJ,N2O,3.9,kg/TJ,55.361124,Gas Oil combustion consumption by freight transport,AR-P,SESCO,annual,kg,63df1291-18e5-34d0-9482-9b18230a0f90 +2020,Jujuy,II.1.1,25.39236,TJ,CO2,74100.0,kg/TJ,1881573.876,Gas Oil combustion consumption by freight transport,AR-Y,SESCO,annual,kg,117d8350-6d31-3bd9-b5ad-ca3cf9fb8341 +2020,Jujuy,II.1.1,25.39236,TJ,CH4,3.9,kg/TJ,99.030204,Gas Oil combustion consumption by freight transport,AR-Y,SESCO,annual,kg,e3e4e3e8-24ed-36d8-9646-1f06af3d54c4 +2020,Jujuy,II.1.1,25.39236,TJ,N2O,3.9,kg/TJ,99.030204,Gas Oil combustion consumption by freight transport,AR-Y,SESCO,annual,kg,e3e4e3e8-24ed-36d8-9646-1f06af3d54c4 +2020,La Pampa,II.1.1,74.80452,TJ,CO2,74100.0,kg/TJ,5543014.932,Gas Oil combustion consumption by freight transport,AR-L,SESCO,annual,kg,35306b90-a242-3188-a703-a56bfe07cdc5 +2020,La Pampa,II.1.1,74.80452,TJ,CH4,3.9,kg/TJ,291.737628,Gas Oil combustion consumption by freight transport,AR-L,SESCO,annual,kg,586ba00e-9b4f-3f17-96ca-33e986ef28c6 +2020,La Pampa,II.1.1,74.80452,TJ,N2O,3.9,kg/TJ,291.737628,Gas Oil combustion consumption by freight transport,AR-L,SESCO,annual,kg,586ba00e-9b4f-3f17-96ca-33e986ef28c6 +2020,La Rioja,II.1.1,14.989799999999999,TJ,CO2,74100.0,kg/TJ,1110744.18,Gas Oil combustion consumption by freight transport,AR-F,SESCO,annual,kg,b9825eb4-a55a-3f95-beff-17b3ce8b1b00 +2020,La Rioja,II.1.1,14.989799999999999,TJ,CH4,3.9,kg/TJ,58.46021999999999,Gas Oil combustion consumption by freight transport,AR-F,SESCO,annual,kg,2958955a-5326-33e6-90fd-095f9e4f8eb9 +2020,La Rioja,II.1.1,14.989799999999999,TJ,N2O,3.9,kg/TJ,58.46021999999999,Gas Oil combustion consumption by freight transport,AR-F,SESCO,annual,kg,2958955a-5326-33e6-90fd-095f9e4f8eb9 +2020,Mendoza,II.1.1,419.13648,TJ,CO2,74100.0,kg/TJ,31058013.168,Gas Oil combustion consumption by freight transport,AR-M,SESCO,annual,kg,a9bdf671-278e-33cc-b5a4-095e8e3d5e8a +2020,Mendoza,II.1.1,419.13648,TJ,CH4,3.9,kg/TJ,1634.632272,Gas Oil combustion consumption by freight transport,AR-M,SESCO,annual,kg,876470be-ea82-3719-a108-ad70b12a19ec +2020,Mendoza,II.1.1,419.13648,TJ,N2O,3.9,kg/TJ,1634.632272,Gas Oil combustion consumption by freight transport,AR-M,SESCO,annual,kg,876470be-ea82-3719-a108-ad70b12a19ec +2020,Misiones,II.1.1,115.80072,TJ,CO2,74100.0,kg/TJ,8580833.352,Gas Oil combustion consumption by freight transport,AR-N,SESCO,annual,kg,bd233bdd-f031-3edb-a061-dbf9f76e34e2 +2020,Misiones,II.1.1,115.80072,TJ,CH4,3.9,kg/TJ,451.62280799999996,Gas Oil combustion consumption by freight transport,AR-N,SESCO,annual,kg,fd7bfd44-fc08-30a6-942f-ef4db5035a8a +2020,Misiones,II.1.1,115.80072,TJ,N2O,3.9,kg/TJ,451.62280799999996,Gas Oil combustion consumption by freight transport,AR-N,SESCO,annual,kg,fd7bfd44-fc08-30a6-942f-ef4db5035a8a +2020,Neuquén,II.1.1,739.3041599999999,TJ,CO2,74100.0,kg/TJ,54782438.25599999,Gas Oil combustion consumption by freight transport,AR-Q,SESCO,annual,kg,e63d7317-fe2f-39f0-b3d7-77f7221ee47c +2020,Neuquén,II.1.1,739.3041599999999,TJ,CH4,3.9,kg/TJ,2883.2862239999995,Gas Oil combustion consumption by freight transport,AR-Q,SESCO,annual,kg,577adc13-0e92-3e59-8832-3a10bfc7f275 +2020,Neuquén,II.1.1,739.3041599999999,TJ,N2O,3.9,kg/TJ,2883.2862239999995,Gas Oil combustion consumption by freight transport,AR-Q,SESCO,annual,kg,577adc13-0e92-3e59-8832-3a10bfc7f275 +2020,Rio Negro,II.1.1,254.82659999999998,TJ,CO2,74100.0,kg/TJ,18882651.06,Gas Oil combustion consumption by freight transport,AR-R,SESCO,annual,kg,bb0c8bb3-2027-3619-8ac6-9ed0e88a8ccb +2020,Rio Negro,II.1.1,254.82659999999998,TJ,CH4,3.9,kg/TJ,993.8237399999999,Gas Oil combustion consumption by freight transport,AR-R,SESCO,annual,kg,a7ae737f-93eb-3446-8c21-61b379563306 +2020,Rio Negro,II.1.1,254.82659999999998,TJ,N2O,3.9,kg/TJ,993.8237399999999,Gas Oil combustion consumption by freight transport,AR-R,SESCO,annual,kg,a7ae737f-93eb-3446-8c21-61b379563306 +2020,Salta,II.1.1,160.44504,TJ,CO2,74100.0,kg/TJ,11888977.464,Gas Oil combustion consumption by freight transport,AR-A,SESCO,annual,kg,337bb958-5796-3313-a850-f9ed70e9948c +2020,Salta,II.1.1,160.44504,TJ,CH4,3.9,kg/TJ,625.7356560000001,Gas Oil combustion consumption by freight transport,AR-A,SESCO,annual,kg,a0bee2e2-40da-3b61-81e9-2328132fd9f6 +2020,Salta,II.1.1,160.44504,TJ,N2O,3.9,kg/TJ,625.7356560000001,Gas Oil combustion consumption by freight transport,AR-A,SESCO,annual,kg,a0bee2e2-40da-3b61-81e9-2328132fd9f6 +2020,San Juan,II.1.1,34.96416,TJ,CO2,74100.0,kg/TJ,2590844.256,Gas Oil combustion consumption by freight transport,AR-J,SESCO,annual,kg,ff1a12f9-ad57-3b74-8979-8f214191bbe4 +2020,San Juan,II.1.1,34.96416,TJ,CH4,3.9,kg/TJ,136.360224,Gas Oil combustion consumption by freight transport,AR-J,SESCO,annual,kg,8d7a2f0c-6559-32d4-a291-eade27e84544 +2020,San Juan,II.1.1,34.96416,TJ,N2O,3.9,kg/TJ,136.360224,Gas Oil combustion consumption by freight transport,AR-J,SESCO,annual,kg,8d7a2f0c-6559-32d4-a291-eade27e84544 +2020,San Luis,II.1.1,73.21524,TJ,CO2,74100.0,kg/TJ,5425249.284,Gas Oil combustion consumption by freight transport,AR-D,SESCO,annual,kg,d558c730-0e29-3d53-acca-5b63cb56b0a6 +2020,San Luis,II.1.1,73.21524,TJ,CH4,3.9,kg/TJ,285.53943599999997,Gas Oil combustion consumption by freight transport,AR-D,SESCO,annual,kg,30ec6655-7c61-362c-9554-4e8dbae38b53 +2020,San Luis,II.1.1,73.21524,TJ,N2O,3.9,kg/TJ,285.53943599999997,Gas Oil combustion consumption by freight transport,AR-D,SESCO,annual,kg,30ec6655-7c61-362c-9554-4e8dbae38b53 +2020,Santa Cruz,II.1.1,79.68072,TJ,CO2,74100.0,kg/TJ,5904341.352,Gas Oil combustion consumption by freight transport,AR-Z,SESCO,annual,kg,fe26b398-ece3-3daa-86e5-3245348d508a +2020,Santa Cruz,II.1.1,79.68072,TJ,CH4,3.9,kg/TJ,310.75480799999997,Gas Oil combustion consumption by freight transport,AR-Z,SESCO,annual,kg,da965319-1e93-3847-aa09-e711990b162a +2020,Santa Cruz,II.1.1,79.68072,TJ,N2O,3.9,kg/TJ,310.75480799999997,Gas Oil combustion consumption by freight transport,AR-Z,SESCO,annual,kg,da965319-1e93-3847-aa09-e711990b162a +2020,Santa Fe,II.1.1,605.01,TJ,CO2,74100.0,kg/TJ,44831241.0,Gas Oil combustion consumption by freight transport,AR-S,SESCO,annual,kg,79bb1741-b9fe-3d57-98ba-dbeaf96ba4b8 +2020,Santa Fe,II.1.1,605.01,TJ,CH4,3.9,kg/TJ,2359.5389999999998,Gas Oil combustion consumption by freight transport,AR-S,SESCO,annual,kg,f5018d33-9b2b-3bf4-be9a-d200974fcd35 +2020,Santa Fe,II.1.1,605.01,TJ,N2O,3.9,kg/TJ,2359.5389999999998,Gas Oil combustion consumption by freight transport,AR-S,SESCO,annual,kg,f5018d33-9b2b-3bf4-be9a-d200974fcd35 +2020,Santiago del Estero,II.1.1,31.20768,TJ,CO2,74100.0,kg/TJ,2312489.088,Gas Oil combustion consumption by freight transport,AR-G,SESCO,annual,kg,61d9576c-f2fe-33f9-b852-6f6a3d8b4a29 +2020,Santiago del Estero,II.1.1,31.20768,TJ,CH4,3.9,kg/TJ,121.709952,Gas Oil combustion consumption by freight transport,AR-G,SESCO,annual,kg,0022d649-63b2-3576-b8fd-5e59276e8ec1 +2020,Santiago del Estero,II.1.1,31.20768,TJ,N2O,3.9,kg/TJ,121.709952,Gas Oil combustion consumption by freight transport,AR-G,SESCO,annual,kg,0022d649-63b2-3576-b8fd-5e59276e8ec1 +2020,Tierra del Fuego,II.1.1,76.50216,TJ,CO2,74100.0,kg/TJ,5668810.056,Gas Oil combustion consumption by freight transport,AR-V,SESCO,annual,kg,ad358f4f-6341-3d69-8a5d-c589aeca16ad +2020,Tierra del Fuego,II.1.1,76.50216,TJ,CH4,3.9,kg/TJ,298.358424,Gas Oil combustion consumption by freight transport,AR-V,SESCO,annual,kg,55263a89-391b-353e-b1c7-5fd36fac3337 +2020,Tierra del Fuego,II.1.1,76.50216,TJ,N2O,3.9,kg/TJ,298.358424,Gas Oil combustion consumption by freight transport,AR-V,SESCO,annual,kg,55263a89-391b-353e-b1c7-5fd36fac3337 +2020,Tucuman,II.1.1,119.15988,TJ,CO2,74100.0,kg/TJ,8829747.108000001,Gas Oil combustion consumption by freight transport,AR-T,SESCO,annual,kg,e9cc83fd-0c4c-35d9-8fce-1caa7b51797d +2020,Tucuman,II.1.1,119.15988,TJ,CH4,3.9,kg/TJ,464.723532,Gas Oil combustion consumption by freight transport,AR-T,SESCO,annual,kg,40218d9d-0704-3270-9cc3-0d49cc8a7801 +2020,Tucuman,II.1.1,119.15988,TJ,N2O,3.9,kg/TJ,464.723532,Gas Oil combustion consumption by freight transport,AR-T,SESCO,annual,kg,40218d9d-0704-3270-9cc3-0d49cc8a7801 +2020,Buenos Aires,II.1.1,0.22017099999999998,TJ,CO2,71500.0,kg/TJ,15742.226499999999,Jet Kerosene combustion consumption by freight transport,AR-B,SESCO,annual,kg,247f0ff9-6ab7-37e7-980e-925af7ff0737 +2020,Buenos Aires,II.1.1,0.22017099999999998,TJ,CH4,0.5,kg/TJ,0.11008549999999999,Jet Kerosene combustion consumption by freight transport,AR-B,SESCO,annual,kg,0ac29aff-93c9-32f3-bee2-1cb01e8f7166 +2020,Buenos Aires,II.1.1,0.22017099999999998,TJ,N2O,2.0,kg/TJ,0.44034199999999996,Jet Kerosene combustion consumption by freight transport,AR-B,SESCO,annual,kg,bf50ba2f-4e06-30f6-8f65-f0dad0ec0335 +2020,Buenos Aires,II.1.1,305.061295,TJ,CO2,73300.0,kg/TJ,22360992.923499998,Naphtha combustion consumption by freight transport,AR-B,SESCO,annual,kg,d2a4099b-89d1-3cc5-b3be-ee59f9cc4051 +2020,Buenos Aires,II.1.1,305.061295,TJ,CH4,0.5,kg/TJ,152.5306475,Naphtha combustion consumption by freight transport,AR-B,SESCO,annual,kg,2048d4d5-5e3d-3e2c-9e9f-8a6eb617ea5d +2020,Buenos Aires,II.1.1,305.061295,TJ,N2O,2.0,kg/TJ,610.12259,Naphtha combustion consumption by freight transport,AR-B,SESCO,annual,kg,a35a7b16-0e2d-30d0-9ad3-23afd758ec7e +2020,Capital Federal,II.1.1,342.821325,TJ,CO2,73300.0,kg/TJ,25128803.1225,Naphtha combustion consumption by freight transport,AR-C,SESCO,annual,kg,73927619-ba3f-3952-99eb-21443d3928b5 +2020,Capital Federal,II.1.1,342.821325,TJ,CH4,0.5,kg/TJ,171.4106625,Naphtha combustion consumption by freight transport,AR-C,SESCO,annual,kg,b63aafc8-c63e-3e3b-8d5f-ae838dd34eb4 +2020,Capital Federal,II.1.1,342.821325,TJ,N2O,2.0,kg/TJ,685.64265,Naphtha combustion consumption by freight transport,AR-C,SESCO,annual,kg,3b4b9b57-e566-3b1c-97b2-2b0ef6dd75fe +2020,Catamarca,II.1.1,0.23985499999999998,TJ,CO2,73300.0,kg/TJ,17581.371499999997,Naphtha combustion consumption by freight transport,AR-K,SESCO,annual,kg,8ad01320-37cf-38bf-953d-3adecb4ec3d0 +2020,Catamarca,II.1.1,0.23985499999999998,TJ,CH4,0.5,kg/TJ,0.11992749999999999,Naphtha combustion consumption by freight transport,AR-K,SESCO,annual,kg,11df5d99-06c8-3568-87c3-5b44df5b242a +2020,Catamarca,II.1.1,0.23985499999999998,TJ,N2O,2.0,kg/TJ,0.47970999999999997,Naphtha combustion consumption by freight transport,AR-K,SESCO,annual,kg,2b4079ed-57aa-3d93-913e-2cc06316fd5c +2020,Chaco,II.1.1,14.185709999999998,TJ,CO2,73300.0,kg/TJ,1039812.543,Naphtha combustion consumption by freight transport,AR-H,SESCO,annual,kg,afec34ac-d69d-35fa-b2a5-502aae4f12fd +2020,Chaco,II.1.1,14.185709999999998,TJ,CH4,0.5,kg/TJ,7.092854999999999,Naphtha combustion consumption by freight transport,AR-H,SESCO,annual,kg,0ec8a244-8515-3643-bb1c-7f67747e9a07 +2020,Chaco,II.1.1,14.185709999999998,TJ,N2O,2.0,kg/TJ,28.371419999999997,Naphtha combustion consumption by freight transport,AR-H,SESCO,annual,kg,8179bb3b-4643-3d25-8e37-8f24558a25c1 +2020,Chubut,II.1.1,21.826805,TJ,CO2,73300.0,kg/TJ,1599904.8065,Naphtha combustion consumption by freight transport,AR-U,SESCO,annual,kg,0bc48f24-ad41-3faf-bbc8-5b9dbba8e4c3 +2020,Chubut,II.1.1,21.826805,TJ,CH4,0.5,kg/TJ,10.9134025,Naphtha combustion consumption by freight transport,AR-U,SESCO,annual,kg,c24c8ebf-dbf4-3661-892b-666907cf92a7 +2020,Chubut,II.1.1,21.826805,TJ,N2O,2.0,kg/TJ,43.65361,Naphtha combustion consumption by freight transport,AR-U,SESCO,annual,kg,34ee152d-81e0-3cbd-aa98-03d87e6a80b8 +2020,Corrientes,II.1.1,8.874635,TJ,CO2,73300.0,kg/TJ,650510.7455,Naphtha combustion consumption by freight transport,AR-W,SESCO,annual,kg,afee585f-78a0-3d21-9acd-8f395564733b +2020,Corrientes,II.1.1,8.874635,TJ,CH4,0.5,kg/TJ,4.4373175,Naphtha combustion consumption by freight transport,AR-W,SESCO,annual,kg,6b3670c4-c24f-30af-9492-f04cccf45c6d +2020,Corrientes,II.1.1,8.874635,TJ,N2O,2.0,kg/TJ,17.74927,Naphtha combustion consumption by freight transport,AR-W,SESCO,annual,kg,f4da09f6-9515-3c79-90d9-c7f0732314f3 +2020,Córdoba,II.1.1,65.75453499999999,TJ,CO2,73300.0,kg/TJ,4819807.415499999,Naphtha combustion consumption by freight transport,AR-X,SESCO,annual,kg,ade4eee6-f99c-3815-993d-94339f491e6d +2020,Córdoba,II.1.1,65.75453499999999,TJ,CH4,0.5,kg/TJ,32.877267499999995,Naphtha combustion consumption by freight transport,AR-X,SESCO,annual,kg,30084b83-8b27-32ce-8881-f4a5aa154c2c +2020,Córdoba,II.1.1,65.75453499999999,TJ,N2O,2.0,kg/TJ,131.50906999999998,Naphtha combustion consumption by freight transport,AR-X,SESCO,annual,kg,b0d3364f-8e19-3d54-b859-df8fd5c3403f +2020,Entre Rios,II.1.1,21.107239999999997,TJ,CO2,73300.0,kg/TJ,1547160.6919999998,Naphtha combustion consumption by freight transport,AR-E,SESCO,annual,kg,7e1e038c-6031-3eb7-9980-e8c7c753a948 +2020,Entre Rios,II.1.1,21.107239999999997,TJ,CH4,0.5,kg/TJ,10.553619999999999,Naphtha combustion consumption by freight transport,AR-E,SESCO,annual,kg,23388823-4285-3203-95d1-042d8879f4e3 +2020,Entre Rios,II.1.1,21.107239999999997,TJ,N2O,2.0,kg/TJ,42.214479999999995,Naphtha combustion consumption by freight transport,AR-E,SESCO,annual,kg,ca50a495-927c-3162-a718-2da523718ff2 +2020,Formosa,II.1.1,0.5825049999999999,TJ,CO2,73300.0,kg/TJ,42697.6165,Naphtha combustion consumption by freight transport,AR-P,SESCO,annual,kg,0cb32d2b-e8a0-3bbe-8bfa-e9d8b8aee329 +2020,Formosa,II.1.1,0.5825049999999999,TJ,CH4,0.5,kg/TJ,0.29125249999999997,Naphtha combustion consumption by freight transport,AR-P,SESCO,annual,kg,4151f9f0-b1df-337a-b567-ef497c7dffd3 +2020,Formosa,II.1.1,0.5825049999999999,TJ,N2O,2.0,kg/TJ,1.1650099999999999,Naphtha combustion consumption by freight transport,AR-P,SESCO,annual,kg,0906fd25-a575-35b3-933a-29597648fe38 +2020,Jujuy,II.1.1,2.4670799999999997,TJ,CO2,73300.0,kg/TJ,180836.96399999998,Naphtha combustion consumption by freight transport,AR-Y,SESCO,annual,kg,992e02ba-4c23-3dc6-9437-69c2450fecbf +2020,Jujuy,II.1.1,2.4670799999999997,TJ,CH4,0.5,kg/TJ,1.2335399999999999,Naphtha combustion consumption by freight transport,AR-Y,SESCO,annual,kg,10cf0727-2a40-34c5-b933-a5e2a39323fd +2020,Jujuy,II.1.1,2.4670799999999997,TJ,N2O,2.0,kg/TJ,4.934159999999999,Naphtha combustion consumption by freight transport,AR-Y,SESCO,annual,kg,6cad5fec-649b-3f5a-ac3a-1ed1e94310f8 +2020,La Pampa,II.1.1,7.435505,TJ,CO2,73300.0,kg/TJ,545022.5165,Naphtha combustion consumption by freight transport,AR-L,SESCO,annual,kg,68daeb00-ce34-3e6a-93e5-7161ab651aa5 +2020,La Pampa,II.1.1,7.435505,TJ,CH4,0.5,kg/TJ,3.7177525,Naphtha combustion consumption by freight transport,AR-L,SESCO,annual,kg,8739c29e-c00d-358f-83bb-37793cc199d6 +2020,La Pampa,II.1.1,7.435505,TJ,N2O,2.0,kg/TJ,14.87101,Naphtha combustion consumption by freight transport,AR-L,SESCO,annual,kg,332bc60e-7136-3bcf-8fad-305fa60d1aa8 +2020,La Rioja,II.1.1,0.719565,TJ,CO2,73300.0,kg/TJ,52744.1145,Naphtha combustion consumption by freight transport,AR-F,SESCO,annual,kg,3460524f-e98b-3108-9287-e09d38505112 +2020,La Rioja,II.1.1,0.719565,TJ,CH4,0.5,kg/TJ,0.3597825,Naphtha combustion consumption by freight transport,AR-F,SESCO,annual,kg,4a16993c-1b1f-30b5-8af7-aa8c10946ad2 +2020,La Rioja,II.1.1,0.719565,TJ,N2O,2.0,kg/TJ,1.43913,Naphtha combustion consumption by freight transport,AR-F,SESCO,annual,kg,0251bc95-f6e3-3dd3-97db-68bb3e97b343 +2020,Mendoza,II.1.1,29.981875,TJ,CO2,73300.0,kg/TJ,2197671.4375,Naphtha combustion consumption by freight transport,AR-M,SESCO,annual,kg,aa20c41c-8d37-3715-a209-879de7692b1a +2020,Mendoza,II.1.1,29.981875,TJ,CH4,0.5,kg/TJ,14.9909375,Naphtha combustion consumption by freight transport,AR-M,SESCO,annual,kg,178124c6-f024-3299-9b82-890943be5f01 +2020,Mendoza,II.1.1,29.981875,TJ,N2O,2.0,kg/TJ,59.96375,Naphtha combustion consumption by freight transport,AR-M,SESCO,annual,kg,72650772-9996-337f-998a-da6b030eccb4 +2020,Misiones,II.1.1,6.92153,TJ,CO2,73300.0,kg/TJ,507348.149,Naphtha combustion consumption by freight transport,AR-N,SESCO,annual,kg,23e922fc-a2e7-3739-8a13-21e5fa464cfb +2020,Misiones,II.1.1,6.92153,TJ,CH4,0.5,kg/TJ,3.460765,Naphtha combustion consumption by freight transport,AR-N,SESCO,annual,kg,a97e8368-92cb-3f96-8380-faf8a5766d05 +2020,Misiones,II.1.1,6.92153,TJ,N2O,2.0,kg/TJ,13.84306,Naphtha combustion consumption by freight transport,AR-N,SESCO,annual,kg,7a614fc3-e49f-3204-95db-76b5ca6dfeb4 +2020,Neuquén,II.1.1,8.70331,TJ,CO2,73300.0,kg/TJ,637952.623,Naphtha combustion consumption by freight transport,AR-Q,SESCO,annual,kg,5d51ab61-eab7-36d2-91bb-471a89fce22e +2020,Neuquén,II.1.1,8.70331,TJ,CH4,0.5,kg/TJ,4.351655,Naphtha combustion consumption by freight transport,AR-Q,SESCO,annual,kg,554e4d55-f7c9-3382-93ff-010956cfe28f +2020,Neuquén,II.1.1,8.70331,TJ,N2O,2.0,kg/TJ,17.40662,Naphtha combustion consumption by freight transport,AR-Q,SESCO,annual,kg,43f920c2-c2da-3251-a614-959d2f61b5cc +2020,Rio Negro,II.1.1,15.898959999999999,TJ,CO2,73300.0,kg/TJ,1165393.768,Naphtha combustion consumption by freight transport,AR-R,SESCO,annual,kg,7e111267-92ed-3f99-b4b7-2d6fdd7c3b93 +2020,Rio Negro,II.1.1,15.898959999999999,TJ,CH4,0.5,kg/TJ,7.949479999999999,Naphtha combustion consumption by freight transport,AR-R,SESCO,annual,kg,887df99a-61fe-3d5b-926b-355f7a98cc38 +2020,Rio Negro,II.1.1,15.898959999999999,TJ,N2O,2.0,kg/TJ,31.797919999999998,Naphtha combustion consumption by freight transport,AR-R,SESCO,annual,kg,de816068-1376-308b-b111-1600dd7f2f15 +2020,Salta,II.1.1,17.26956,TJ,CO2,73300.0,kg/TJ,1265858.748,Naphtha combustion consumption by freight transport,AR-A,SESCO,annual,kg,9d593660-73a0-37b4-8ea4-3db623d88fe8 +2020,Salta,II.1.1,17.26956,TJ,CH4,0.5,kg/TJ,8.63478,Naphtha combustion consumption by freight transport,AR-A,SESCO,annual,kg,cdf34225-2ee4-30b1-8312-03c7f15adab2 +2020,Salta,II.1.1,17.26956,TJ,N2O,2.0,kg/TJ,34.53912,Naphtha combustion consumption by freight transport,AR-A,SESCO,annual,kg,842e12d8-4591-3db3-8302-e8d1e43ffa75 +2020,San Juan,II.1.1,4.38592,TJ,CO2,73300.0,kg/TJ,321487.936,Naphtha combustion consumption by freight transport,AR-J,SESCO,annual,kg,6e870dfe-288f-38da-a606-26befda32fd2 +2020,San Juan,II.1.1,4.38592,TJ,CH4,0.5,kg/TJ,2.19296,Naphtha combustion consumption by freight transport,AR-J,SESCO,annual,kg,a2eef555-34ee-3e0c-9324-f2e5cef9fc77 +2020,San Juan,II.1.1,4.38592,TJ,N2O,2.0,kg/TJ,8.77184,Naphtha combustion consumption by freight transport,AR-J,SESCO,annual,kg,ed912f56-433e-3515-8199-a0a9a0104745 +2020,San Luis,II.1.1,4.694305,TJ,CO2,73300.0,kg/TJ,344092.5565,Naphtha combustion consumption by freight transport,AR-D,SESCO,annual,kg,caf43eea-491a-3ac3-af4d-6a72fdfe81a0 +2020,San Luis,II.1.1,4.694305,TJ,CH4,0.5,kg/TJ,2.3471525,Naphtha combustion consumption by freight transport,AR-D,SESCO,annual,kg,8d93ff66-3ba2-32b4-a9dc-ba65a2238f1f +2020,San Luis,II.1.1,4.694305,TJ,N2O,2.0,kg/TJ,9.38861,Naphtha combustion consumption by freight transport,AR-D,SESCO,annual,kg,62f14a4c-d1dc-3af8-b9a0-6883b0c34f0c +2020,Santa Cruz,II.1.1,2.6041399999999997,TJ,CO2,73300.0,kg/TJ,190883.46199999997,Naphtha combustion consumption by freight transport,AR-Z,SESCO,annual,kg,bff6e1bf-a645-3713-98ca-9871d29fa07a +2020,Santa Cruz,II.1.1,2.6041399999999997,TJ,CH4,0.5,kg/TJ,1.3020699999999998,Naphtha combustion consumption by freight transport,AR-Z,SESCO,annual,kg,0b0754b8-0933-3f5d-a2a1-8151b90b5b8c +2020,Santa Cruz,II.1.1,2.6041399999999997,TJ,N2O,2.0,kg/TJ,5.208279999999999,Naphtha combustion consumption by freight transport,AR-Z,SESCO,annual,kg,7c3869e9-c0b8-3459-8349-19281ec4ef93 +2020,Santa Fe,II.1.1,59.27845,TJ,CO2,73300.0,kg/TJ,4345110.385,Naphtha combustion consumption by freight transport,AR-S,SESCO,annual,kg,d3687c51-08f2-3528-a6d4-e3681a868845 +2020,Santa Fe,II.1.1,59.27845,TJ,CH4,0.5,kg/TJ,29.639225,Naphtha combustion consumption by freight transport,AR-S,SESCO,annual,kg,53f5013f-eea9-3ef7-9443-4d884df25ce1 +2020,Santa Fe,II.1.1,59.27845,TJ,N2O,2.0,kg/TJ,118.5569,Naphtha combustion consumption by freight transport,AR-S,SESCO,annual,kg,d7ce1d93-69ef-361d-9bb5-30ddcd5d9049 +2020,Santiago del Estero,II.1.1,1.130745,TJ,CO2,73300.0,kg/TJ,82883.60849999999,Naphtha combustion consumption by freight transport,AR-G,SESCO,annual,kg,1556077b-2a47-3d9b-ae30-37a88fb1994e +2020,Santiago del Estero,II.1.1,1.130745,TJ,CH4,0.5,kg/TJ,0.5653725,Naphtha combustion consumption by freight transport,AR-G,SESCO,annual,kg,c7706b79-06ec-318e-abef-23b10bd9d6d9 +2020,Santiago del Estero,II.1.1,1.130745,TJ,N2O,2.0,kg/TJ,2.26149,Naphtha combustion consumption by freight transport,AR-G,SESCO,annual,kg,86038fc0-7d85-3ae1-898e-62e8031b1a8a +2020,Tierra del Fuego,II.1.1,8.77184,TJ,CO2,73300.0,kg/TJ,642975.872,Naphtha combustion consumption by freight transport,AR-V,SESCO,annual,kg,eb8ecb51-b507-3ace-a1a3-5299ee9669ec +2020,Tierra del Fuego,II.1.1,8.77184,TJ,CH4,0.5,kg/TJ,4.38592,Naphtha combustion consumption by freight transport,AR-V,SESCO,annual,kg,d256670a-263a-32d1-ad2b-5d0c1ec25a95 +2020,Tierra del Fuego,II.1.1,8.77184,TJ,N2O,2.0,kg/TJ,17.54368,Naphtha combustion consumption by freight transport,AR-V,SESCO,annual,kg,37e9412e-6b66-3ae6-a6b2-74d1246d48d0 +2020,Tucuman,II.1.1,16.070285,TJ,CO2,73300.0,kg/TJ,1177951.8905,Naphtha combustion consumption by freight transport,AR-T,SESCO,annual,kg,debfec48-c8b9-36fc-bb18-980acf8cfaf8 +2020,Tucuman,II.1.1,16.070285,TJ,CH4,0.5,kg/TJ,8.0351425,Naphtha combustion consumption by freight transport,AR-T,SESCO,annual,kg,2f189e49-9898-33d8-a492-c7a3601449ea +2020,Tucuman,II.1.1,16.070285,TJ,N2O,2.0,kg/TJ,32.14057,Naphtha combustion consumption by freight transport,AR-T,SESCO,annual,kg,3ca7e4e4-2fbc-3a4b-9f12-eda3d508523d +2020,Buenos Aires,II.1.1,200.58731,TJ,CO2,73300.0,kg/TJ,14703049.823,Naphtha combustion consumption by freight transport,AR-B,SESCO,annual,kg,038da3ce-2507-3eac-83b0-d181245b0e37 +2020,Buenos Aires,II.1.1,200.58731,TJ,CH4,0.5,kg/TJ,100.293655,Naphtha combustion consumption by freight transport,AR-B,SESCO,annual,kg,a29016e8-2fc6-3b54-a43d-b91b84d00c7a +2020,Buenos Aires,II.1.1,200.58731,TJ,N2O,2.0,kg/TJ,401.17462,Naphtha combustion consumption by freight transport,AR-B,SESCO,annual,kg,690befb3-6f0d-3271-87f1-2f7ec5fe2b63 +2020,Capital Federal,II.1.1,322.60497499999997,TJ,CO2,73300.0,kg/TJ,23646944.667499997,Naphtha combustion consumption by freight transport,AR-C,SESCO,annual,kg,1b451e9a-a5c0-3a58-bec4-26b78b150b46 +2020,Capital Federal,II.1.1,322.60497499999997,TJ,CH4,0.5,kg/TJ,161.30248749999998,Naphtha combustion consumption by freight transport,AR-C,SESCO,annual,kg,63f8aca8-6c5d-3849-81b1-819ff84aa003 +2020,Capital Federal,II.1.1,322.60497499999997,TJ,N2O,2.0,kg/TJ,645.2099499999999,Naphtha combustion consumption by freight transport,AR-C,SESCO,annual,kg,ee0a8e65-75cc-329d-819d-53942fa955a5 +2020,Catamarca,II.1.1,0.13706,TJ,CO2,73300.0,kg/TJ,10046.498,Naphtha combustion consumption by freight transport,AR-K,SESCO,annual,kg,72b89e92-6a40-38b4-ada6-b915654d6288 +2020,Catamarca,II.1.1,0.13706,TJ,CH4,0.5,kg/TJ,0.06853,Naphtha combustion consumption by freight transport,AR-K,SESCO,annual,kg,1d711ea2-d1f8-328c-ad2c-1564c3877c4a +2020,Catamarca,II.1.1,0.13706,TJ,N2O,2.0,kg/TJ,0.27412,Naphtha combustion consumption by freight transport,AR-K,SESCO,annual,kg,7125772f-a68d-325b-a75d-11430cb70e59 +2020,Chaco,II.1.1,5.55093,TJ,CO2,73300.0,kg/TJ,406883.169,Naphtha combustion consumption by freight transport,AR-H,SESCO,annual,kg,4ffd3762-25f8-3d22-a612-28d6cfa3abf7 +2020,Chaco,II.1.1,5.55093,TJ,CH4,0.5,kg/TJ,2.775465,Naphtha combustion consumption by freight transport,AR-H,SESCO,annual,kg,bc07619c-87be-3add-8f1c-a6729002e0f0 +2020,Chaco,II.1.1,5.55093,TJ,N2O,2.0,kg/TJ,11.10186,Naphtha combustion consumption by freight transport,AR-H,SESCO,annual,kg,896b18da-532a-3083-87cb-fba3ef4dccb2 +2020,Chubut,II.1.1,9.04596,TJ,CO2,73300.0,kg/TJ,663068.8679999999,Naphtha combustion consumption by freight transport,AR-U,SESCO,annual,kg,e051897d-cab3-3b37-8c47-84741fe14981 +2020,Chubut,II.1.1,9.04596,TJ,CH4,0.5,kg/TJ,4.52298,Naphtha combustion consumption by freight transport,AR-U,SESCO,annual,kg,d6ef7fca-ce0a-30ae-a7cb-3f2406dac3bc +2020,Chubut,II.1.1,9.04596,TJ,N2O,2.0,kg/TJ,18.09192,Naphtha combustion consumption by freight transport,AR-U,SESCO,annual,kg,ac48bc7c-e9f4-3265-b747-6fcbf7cf3c23 +2020,Corrientes,II.1.1,11.204654999999999,TJ,CO2,73300.0,kg/TJ,821301.2115,Naphtha combustion consumption by freight transport,AR-W,SESCO,annual,kg,bceb185f-c736-31a6-a1e2-0c63897fa224 +2020,Corrientes,II.1.1,11.204654999999999,TJ,CH4,0.5,kg/TJ,5.6023274999999995,Naphtha combustion consumption by freight transport,AR-W,SESCO,annual,kg,dcb684cc-daab-3395-bd55-aa4323d01ead +2020,Corrientes,II.1.1,11.204654999999999,TJ,N2O,2.0,kg/TJ,22.409309999999998,Naphtha combustion consumption by freight transport,AR-W,SESCO,annual,kg,9532bfaa-2566-3575-8368-6d9b18b23f8c +2020,Córdoba,II.1.1,137.19706,TJ,CO2,73300.0,kg/TJ,10056544.498,Naphtha combustion consumption by freight transport,AR-X,SESCO,annual,kg,0540e941-e9e6-32a9-8d14-9c9038a09616 +2020,Córdoba,II.1.1,137.19706,TJ,CH4,0.5,kg/TJ,68.59853,Naphtha combustion consumption by freight transport,AR-X,SESCO,annual,kg,0ec5664e-ef1e-3d71-b105-8f4723c0862d +2020,Córdoba,II.1.1,137.19706,TJ,N2O,2.0,kg/TJ,274.39412,Naphtha combustion consumption by freight transport,AR-X,SESCO,annual,kg,ded12499-72ac-3fa8-a786-e6d634062bd3 +2020,Entre Rios,II.1.1,18.674425,TJ,CO2,73300.0,kg/TJ,1368835.3525,Naphtha combustion consumption by freight transport,AR-E,SESCO,annual,kg,00b91d7e-c4ad-3136-95b3-3302615bbcc1 +2020,Entre Rios,II.1.1,18.674425,TJ,CH4,0.5,kg/TJ,9.3372125,Naphtha combustion consumption by freight transport,AR-E,SESCO,annual,kg,cebfdbb0-4eb5-34e6-8aba-40546b16b8c8 +2020,Entre Rios,II.1.1,18.674425,TJ,N2O,2.0,kg/TJ,37.34885,Naphtha combustion consumption by freight transport,AR-E,SESCO,annual,kg,678d2c21-369c-3835-a95c-952a3ecd2841 +2020,Formosa,II.1.1,0.41118,TJ,CO2,73300.0,kg/TJ,30139.494,Naphtha combustion consumption by freight transport,AR-P,SESCO,annual,kg,cfc5f0e2-b072-3f42-85a4-ff06ff44342b +2020,Formosa,II.1.1,0.41118,TJ,CH4,0.5,kg/TJ,0.20559,Naphtha combustion consumption by freight transport,AR-P,SESCO,annual,kg,c2996b02-c94a-3b62-bfe3-18945f5e1538 +2020,Formosa,II.1.1,0.41118,TJ,N2O,2.0,kg/TJ,0.82236,Naphtha combustion consumption by freight transport,AR-P,SESCO,annual,kg,936983df-702f-31f5-86ff-904e5534652a +2020,Jujuy,II.1.1,1.884575,TJ,CO2,73300.0,kg/TJ,138139.3475,Naphtha combustion consumption by freight transport,AR-Y,SESCO,annual,kg,54dee388-01f3-34b9-ba73-3dee7eb5a3f0 +2020,Jujuy,II.1.1,1.884575,TJ,CH4,0.5,kg/TJ,0.9422875,Naphtha combustion consumption by freight transport,AR-Y,SESCO,annual,kg,e78e827b-e8da-3d75-9084-e08538a6eaa8 +2020,Jujuy,II.1.1,1.884575,TJ,N2O,2.0,kg/TJ,3.76915,Naphtha combustion consumption by freight transport,AR-Y,SESCO,annual,kg,97057218-8f1f-359b-b27d-5d54fba32ad5 +2020,La Pampa,II.1.1,3.9062099999999997,TJ,CO2,73300.0,kg/TJ,286325.19299999997,Naphtha combustion consumption by freight transport,AR-L,SESCO,annual,kg,6b657626-6696-3907-aa46-dfc93bb3242c +2020,La Pampa,II.1.1,3.9062099999999997,TJ,CH4,0.5,kg/TJ,1.9531049999999999,Naphtha combustion consumption by freight transport,AR-L,SESCO,annual,kg,9e0e57d8-6b2f-3450-8791-97d4a7b10df8 +2020,La Pampa,II.1.1,3.9062099999999997,TJ,N2O,2.0,kg/TJ,7.8124199999999995,Naphtha combustion consumption by freight transport,AR-L,SESCO,annual,kg,51258215-060c-3fed-b20c-1bd4ef3d3dc3 +2020,La Rioja,II.1.1,2.3642849999999997,TJ,CO2,73300.0,kg/TJ,173302.0905,Naphtha combustion consumption by freight transport,AR-F,SESCO,annual,kg,d99e6b92-6b35-3b17-bcc2-e25ac405824d +2020,La Rioja,II.1.1,2.3642849999999997,TJ,CH4,0.5,kg/TJ,1.1821424999999999,Naphtha combustion consumption by freight transport,AR-F,SESCO,annual,kg,45a4dc48-6f69-3954-a7d5-52f3e38325d5 +2020,La Rioja,II.1.1,2.3642849999999997,TJ,N2O,2.0,kg/TJ,4.7285699999999995,Naphtha combustion consumption by freight transport,AR-F,SESCO,annual,kg,b80a2f04-529b-326f-9f51-c9994a5914fc +2020,Mendoza,II.1.1,49.27307,TJ,CO2,73300.0,kg/TJ,3611716.031,Naphtha combustion consumption by freight transport,AR-M,SESCO,annual,kg,4d7d5776-7ddc-3efb-81d3-bb4e9a1811de +2020,Mendoza,II.1.1,49.27307,TJ,CH4,0.5,kg/TJ,24.636535,Naphtha combustion consumption by freight transport,AR-M,SESCO,annual,kg,272d084f-3793-33a5-9c3f-b34345a3b485 +2020,Mendoza,II.1.1,49.27307,TJ,N2O,2.0,kg/TJ,98.54614,Naphtha combustion consumption by freight transport,AR-M,SESCO,annual,kg,b690e528-c8aa-3fb8-801e-ec2538923a85 +2020,Misiones,II.1.1,8.36066,TJ,CO2,73300.0,kg/TJ,612836.3779999999,Naphtha combustion consumption by freight transport,AR-N,SESCO,annual,kg,fb90927e-bf6f-3e6d-b785-b3248c59cdd6 +2020,Misiones,II.1.1,8.36066,TJ,CH4,0.5,kg/TJ,4.18033,Naphtha combustion consumption by freight transport,AR-N,SESCO,annual,kg,1de1a5c8-27d5-3744-8425-dab10cba6c96 +2020,Misiones,II.1.1,8.36066,TJ,N2O,2.0,kg/TJ,16.72132,Naphtha combustion consumption by freight transport,AR-N,SESCO,annual,kg,cead1fed-5ead-3e9f-88e6-2e7bd0d0576e +2020,Neuquén,II.1.1,24.773595,TJ,CO2,73300.0,kg/TJ,1815904.5135000001,Naphtha combustion consumption by freight transport,AR-Q,SESCO,annual,kg,a8b80955-70ed-3017-a63b-a8c1b6ea18e0 +2020,Neuquén,II.1.1,24.773595,TJ,CH4,0.5,kg/TJ,12.3867975,Naphtha combustion consumption by freight transport,AR-Q,SESCO,annual,kg,387fb11b-e88f-3b2f-9f0a-36810b942cba +2020,Neuquén,II.1.1,24.773595,TJ,N2O,2.0,kg/TJ,49.54719,Naphtha combustion consumption by freight transport,AR-Q,SESCO,annual,kg,02b73a29-0b9a-3a15-ada2-b84f2c4fc723 +2020,Rio Negro,II.1.1,47.731145,TJ,CO2,73300.0,kg/TJ,3498692.9285,Naphtha combustion consumption by freight transport,AR-R,SESCO,annual,kg,38b54af0-ba27-3c68-b519-97815183cf88 +2020,Rio Negro,II.1.1,47.731145,TJ,CH4,0.5,kg/TJ,23.8655725,Naphtha combustion consumption by freight transport,AR-R,SESCO,annual,kg,09544ccb-f401-31f4-8b1b-e7f23df615f7 +2020,Rio Negro,II.1.1,47.731145,TJ,N2O,2.0,kg/TJ,95.46229,Naphtha combustion consumption by freight transport,AR-R,SESCO,annual,kg,423ffe28-6329-3daa-a7ce-3dd98f3227fa +2020,Salta,II.1.1,14.151444999999999,TJ,CO2,73300.0,kg/TJ,1037300.9184999999,Naphtha combustion consumption by freight transport,AR-A,SESCO,annual,kg,ac50cf43-8026-355f-a711-03166f58c702 +2020,Salta,II.1.1,14.151444999999999,TJ,CH4,0.5,kg/TJ,7.0757224999999995,Naphtha combustion consumption by freight transport,AR-A,SESCO,annual,kg,62d4e627-26d5-343b-b4db-98f4cf44865a +2020,Salta,II.1.1,14.151444999999999,TJ,N2O,2.0,kg/TJ,28.302889999999998,Naphtha combustion consumption by freight transport,AR-A,SESCO,annual,kg,81e8a36a-3781-353a-8f52-4ea1d115d3b8 +2020,San Juan,II.1.1,1.747515,TJ,CO2,73300.0,kg/TJ,128092.8495,Naphtha combustion consumption by freight transport,AR-J,SESCO,annual,kg,ff0885ff-dc36-3720-80c0-20569672ea9c +2020,San Juan,II.1.1,1.747515,TJ,CH4,0.5,kg/TJ,0.8737575,Naphtha combustion consumption by freight transport,AR-J,SESCO,annual,kg,399b8043-293e-33cb-9830-e48e3cdfb269 +2020,San Juan,II.1.1,1.747515,TJ,N2O,2.0,kg/TJ,3.49503,Naphtha combustion consumption by freight transport,AR-J,SESCO,annual,kg,64fb1eb3-9e37-3ab5-bc30-b6c97482310d +2020,San Luis,II.1.1,4.24886,TJ,CO2,73300.0,kg/TJ,311441.43799999997,Naphtha combustion consumption by freight transport,AR-D,SESCO,annual,kg,e9d9abee-e72b-3c63-b47e-d85437e3c04e +2020,San Luis,II.1.1,4.24886,TJ,CH4,0.5,kg/TJ,2.12443,Naphtha combustion consumption by freight transport,AR-D,SESCO,annual,kg,29d28001-5717-3206-a464-ed56aa9b8b1b +2020,San Luis,II.1.1,4.24886,TJ,N2O,2.0,kg/TJ,8.49772,Naphtha combustion consumption by freight transport,AR-D,SESCO,annual,kg,27dad2e0-18b0-33a5-8f88-873f1efae466 +2020,Santa Cruz,II.1.1,1.9873699999999999,TJ,CO2,73300.0,kg/TJ,145674.221,Naphtha combustion consumption by freight transport,AR-Z,SESCO,annual,kg,3debc2e5-d408-31eb-a342-eee30ca76caa +2020,Santa Cruz,II.1.1,1.9873699999999999,TJ,CH4,0.5,kg/TJ,0.9936849999999999,Naphtha combustion consumption by freight transport,AR-Z,SESCO,annual,kg,7d5c9039-4952-3777-bfbe-106c3d6a5575 +2020,Santa Cruz,II.1.1,1.9873699999999999,TJ,N2O,2.0,kg/TJ,3.9747399999999997,Naphtha combustion consumption by freight transport,AR-Z,SESCO,annual,kg,b08d00d9-4627-3c48-acd1-31e0dda97409 +2020,Santa Fe,II.1.1,65.206295,TJ,CO2,73300.0,kg/TJ,4779621.4235,Naphtha combustion consumption by freight transport,AR-S,SESCO,annual,kg,d10ac975-3de4-36e7-9cea-621ac8263ff7 +2020,Santa Fe,II.1.1,65.206295,TJ,CH4,0.5,kg/TJ,32.6031475,Naphtha combustion consumption by freight transport,AR-S,SESCO,annual,kg,e9aec529-297e-3e46-af82-465e04e83c86 +2020,Santa Fe,II.1.1,65.206295,TJ,N2O,2.0,kg/TJ,130.41259,Naphtha combustion consumption by freight transport,AR-S,SESCO,annual,kg,8e9c1589-bad8-31aa-9519-fa8c4c494d67 +2020,Santiago del Estero,II.1.1,1.50766,TJ,CO2,73300.0,kg/TJ,110511.478,Naphtha combustion consumption by freight transport,AR-G,SESCO,annual,kg,152a231d-9362-3c09-b086-43d9af384359 +2020,Santiago del Estero,II.1.1,1.50766,TJ,CH4,0.5,kg/TJ,0.75383,Naphtha combustion consumption by freight transport,AR-G,SESCO,annual,kg,caadd134-432b-3b90-a51d-99750e6944bd +2020,Santiago del Estero,II.1.1,1.50766,TJ,N2O,2.0,kg/TJ,3.01532,Naphtha combustion consumption by freight transport,AR-G,SESCO,annual,kg,608559ff-1a78-39fa-b009-3bca3ed3b709 +2020,Tierra del Fuego,II.1.1,2.6041399999999997,TJ,CO2,73300.0,kg/TJ,190883.46199999997,Naphtha combustion consumption by freight transport,AR-V,SESCO,annual,kg,eb32a4b4-6aa3-36e7-b208-ba07e0417674 +2020,Tierra del Fuego,II.1.1,2.6041399999999997,TJ,CH4,0.5,kg/TJ,1.3020699999999998,Naphtha combustion consumption by freight transport,AR-V,SESCO,annual,kg,4d23d23b-eca4-37dd-a4b3-d4c2b3e771bb +2020,Tierra del Fuego,II.1.1,2.6041399999999997,TJ,N2O,2.0,kg/TJ,5.208279999999999,Naphtha combustion consumption by freight transport,AR-V,SESCO,annual,kg,b7b5c8eb-2c7d-37f8-be6c-6eb68a3c661b +2020,Tucuman,II.1.1,6.78447,TJ,CO2,73300.0,kg/TJ,497301.651,Naphtha combustion consumption by freight transport,AR-T,SESCO,annual,kg,266226eb-8753-3227-b8ec-b4348ae39b6f +2020,Tucuman,II.1.1,6.78447,TJ,CH4,0.5,kg/TJ,3.392235,Naphtha combustion consumption by freight transport,AR-T,SESCO,annual,kg,011235fa-fc55-37c8-b892-27b0f007fb71 +2020,Tucuman,II.1.1,6.78447,TJ,N2O,2.0,kg/TJ,13.56894,Naphtha combustion consumption by freight transport,AR-T,SESCO,annual,kg,86b047a5-ec63-30da-a16d-86f7b649e79a +2020,Buenos Aires,II.1.1,5307.00324,TJ,CO2,74100.0,kg/TJ,393248940.084,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,744178a3-0c4a-3601-aa75-6e0f2f5ab45f +2020,Buenos Aires,II.1.1,5307.00324,TJ,CH4,3.9,kg/TJ,20697.312636,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,64f28b26-35ac-30d9-b4eb-1cd4bf9add23 +2020,Buenos Aires,II.1.1,5307.00324,TJ,N2O,3.9,kg/TJ,20697.312636,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,64f28b26-35ac-30d9-b4eb-1cd4bf9add23 +2020,Capital Federal,II.1.1,868.36092,TJ,CO2,74100.0,kg/TJ,64345544.172,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,e527ca7b-6e6f-3299-b317-1cf957f7c02a +2020,Capital Federal,II.1.1,868.36092,TJ,CH4,3.9,kg/TJ,3386.607588,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,b96751f5-1363-398c-bd72-2250c406eeed +2020,Capital Federal,II.1.1,868.36092,TJ,N2O,3.9,kg/TJ,3386.607588,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,b96751f5-1363-398c-bd72-2250c406eeed +2020,Catamarca,II.1.1,28.281959999999998,TJ,CO2,74100.0,kg/TJ,2095693.2359999998,Gas Oil combustion consumption by public passenger transport,AR-K,SESCO,annual,kg,ee89927e-93ab-39dc-b2de-1a91a878e7bf +2020,Catamarca,II.1.1,28.281959999999998,TJ,CH4,3.9,kg/TJ,110.29964399999999,Gas Oil combustion consumption by public passenger transport,AR-K,SESCO,annual,kg,7cf240db-de0a-3aee-bb2d-f9286224ab11 +2020,Catamarca,II.1.1,28.281959999999998,TJ,N2O,3.9,kg/TJ,110.29964399999999,Gas Oil combustion consumption by public passenger transport,AR-K,SESCO,annual,kg,7cf240db-de0a-3aee-bb2d-f9286224ab11 +2020,Chaco,II.1.1,45.98076,TJ,CO2,74100.0,kg/TJ,3407174.3159999996,Gas Oil combustion consumption by public passenger transport,AR-H,SESCO,annual,kg,e4d3fe48-d5f5-3ba1-8502-7cae9bf50524 +2020,Chaco,II.1.1,45.98076,TJ,CH4,3.9,kg/TJ,179.324964,Gas Oil combustion consumption by public passenger transport,AR-H,SESCO,annual,kg,1f1dac85-d104-3548-9ede-3dc0b8e015c1 +2020,Chaco,II.1.1,45.98076,TJ,N2O,3.9,kg/TJ,179.324964,Gas Oil combustion consumption by public passenger transport,AR-H,SESCO,annual,kg,1f1dac85-d104-3548-9ede-3dc0b8e015c1 +2020,Chubut,II.1.1,18.49344,TJ,CO2,74100.0,kg/TJ,1370363.9039999999,Gas Oil combustion consumption by public passenger transport,AR-U,SESCO,annual,kg,6099c17a-5381-3559-baca-af93de667d79 +2020,Chubut,II.1.1,18.49344,TJ,CH4,3.9,kg/TJ,72.124416,Gas Oil combustion consumption by public passenger transport,AR-U,SESCO,annual,kg,37a5065c-701e-35ea-898e-e854fea8ab52 +2020,Chubut,II.1.1,18.49344,TJ,N2O,3.9,kg/TJ,72.124416,Gas Oil combustion consumption by public passenger transport,AR-U,SESCO,annual,kg,37a5065c-701e-35ea-898e-e854fea8ab52 +2020,Corrientes,II.1.1,17.77104,TJ,CO2,74100.0,kg/TJ,1316834.064,Gas Oil combustion consumption by public passenger transport,AR-W,SESCO,annual,kg,0e85c3a1-2b01-3082-973b-e99f26225018 +2020,Corrientes,II.1.1,17.77104,TJ,CH4,3.9,kg/TJ,69.30705599999999,Gas Oil combustion consumption by public passenger transport,AR-W,SESCO,annual,kg,a12b0023-41c1-302b-b8e2-5b09c7684f91 +2020,Corrientes,II.1.1,17.77104,TJ,N2O,3.9,kg/TJ,69.30705599999999,Gas Oil combustion consumption by public passenger transport,AR-W,SESCO,annual,kg,a12b0023-41c1-302b-b8e2-5b09c7684f91 +2020,Córdoba,II.1.1,279.17148,TJ,CO2,74100.0,kg/TJ,20686606.667999998,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,19acfadc-ea4a-33b9-b58b-451f458984a0 +2020,Córdoba,II.1.1,279.17148,TJ,CH4,3.9,kg/TJ,1088.768772,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,f927c891-d72a-3b8e-850d-bb9d03aaf550 +2020,Córdoba,II.1.1,279.17148,TJ,N2O,3.9,kg/TJ,1088.768772,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,f927c891-d72a-3b8e-850d-bb9d03aaf550 +2020,Entre Rios,II.1.1,66.0996,TJ,CO2,74100.0,kg/TJ,4897980.359999999,Gas Oil combustion consumption by public passenger transport,AR-E,SESCO,annual,kg,0d58aef9-e959-30c1-9aa2-c36016175c6a +2020,Entre Rios,II.1.1,66.0996,TJ,CH4,3.9,kg/TJ,257.78844,Gas Oil combustion consumption by public passenger transport,AR-E,SESCO,annual,kg,1c8bef34-0fb9-3d72-90ca-17fbb47d7232 +2020,Entre Rios,II.1.1,66.0996,TJ,N2O,3.9,kg/TJ,257.78844,Gas Oil combustion consumption by public passenger transport,AR-E,SESCO,annual,kg,1c8bef34-0fb9-3d72-90ca-17fbb47d7232 +2020,Formosa,II.1.1,5.02068,TJ,CO2,74100.0,kg/TJ,372032.388,Gas Oil combustion consumption by public passenger transport,AR-P,SESCO,annual,kg,05323c30-33fc-35fd-bec9-be991632e34d +2020,Formosa,II.1.1,5.02068,TJ,CH4,3.9,kg/TJ,19.580651999999997,Gas Oil combustion consumption by public passenger transport,AR-P,SESCO,annual,kg,7da50b21-e173-3c6a-b44d-56be0be24a1e +2020,Formosa,II.1.1,5.02068,TJ,N2O,3.9,kg/TJ,19.580651999999997,Gas Oil combustion consumption by public passenger transport,AR-P,SESCO,annual,kg,7da50b21-e173-3c6a-b44d-56be0be24a1e +2020,Jujuy,II.1.1,59.598,TJ,CO2,74100.0,kg/TJ,4416211.8,Gas Oil combustion consumption by public passenger transport,AR-Y,SESCO,annual,kg,44d971cd-90e0-381b-95b8-eb6e9f3f03c5 +2020,Jujuy,II.1.1,59.598,TJ,CH4,3.9,kg/TJ,232.4322,Gas Oil combustion consumption by public passenger transport,AR-Y,SESCO,annual,kg,824e93ae-f522-3aa6-bea1-2c819e14bec6 +2020,Jujuy,II.1.1,59.598,TJ,N2O,3.9,kg/TJ,232.4322,Gas Oil combustion consumption by public passenger transport,AR-Y,SESCO,annual,kg,824e93ae-f522-3aa6-bea1-2c819e14bec6 +2020,La Rioja,II.1.1,10.22196,TJ,CO2,74100.0,kg/TJ,757447.2359999999,Gas Oil combustion consumption by public passenger transport,AR-F,SESCO,annual,kg,d288d346-3d4b-3a46-8ff4-390d1b502f90 +2020,La Rioja,II.1.1,10.22196,TJ,CH4,3.9,kg/TJ,39.865643999999996,Gas Oil combustion consumption by public passenger transport,AR-F,SESCO,annual,kg,172a6e2e-c4d9-3ae7-89b8-cba04eb8bfbf +2020,La Rioja,II.1.1,10.22196,TJ,N2O,3.9,kg/TJ,39.865643999999996,Gas Oil combustion consumption by public passenger transport,AR-F,SESCO,annual,kg,172a6e2e-c4d9-3ae7-89b8-cba04eb8bfbf +2020,Mendoza,II.1.1,314.28012,TJ,CO2,74100.0,kg/TJ,23288156.892,Gas Oil combustion consumption by public passenger transport,AR-M,SESCO,annual,kg,8d754026-f4f8-398e-be64-569cd3abdc8b +2020,Mendoza,II.1.1,314.28012,TJ,CH4,3.9,kg/TJ,1225.692468,Gas Oil combustion consumption by public passenger transport,AR-M,SESCO,annual,kg,cc285397-5351-337b-9fec-71e489e99cbc +2020,Mendoza,II.1.1,314.28012,TJ,N2O,3.9,kg/TJ,1225.692468,Gas Oil combustion consumption by public passenger transport,AR-M,SESCO,annual,kg,cc285397-5351-337b-9fec-71e489e99cbc +2020,Misiones,II.1.1,200.64659999999998,TJ,CO2,74100.0,kg/TJ,14867913.059999999,Gas Oil combustion consumption by public passenger transport,AR-N,SESCO,annual,kg,72703bb4-4ff1-3c8a-8060-86684e5ecc5e +2020,Misiones,II.1.1,200.64659999999998,TJ,CH4,3.9,kg/TJ,782.5217399999999,Gas Oil combustion consumption by public passenger transport,AR-N,SESCO,annual,kg,cdf3ffa3-18c0-3586-b4df-e07dc9c339bd +2020,Misiones,II.1.1,200.64659999999998,TJ,N2O,3.9,kg/TJ,782.5217399999999,Gas Oil combustion consumption by public passenger transport,AR-N,SESCO,annual,kg,cdf3ffa3-18c0-3586-b4df-e07dc9c339bd +2020,Neuquén,II.1.1,27.595679999999998,TJ,CO2,74100.0,kg/TJ,2044839.8879999998,Gas Oil combustion consumption by public passenger transport,AR-Q,SESCO,annual,kg,8b8c406a-9d87-3c45-bc9e-5e3768d0fda5 +2020,Neuquén,II.1.1,27.595679999999998,TJ,CH4,3.9,kg/TJ,107.62315199999999,Gas Oil combustion consumption by public passenger transport,AR-Q,SESCO,annual,kg,4bca05d3-a1e2-33cf-889c-a1a9b303478c +2020,Neuquén,II.1.1,27.595679999999998,TJ,N2O,3.9,kg/TJ,107.62315199999999,Gas Oil combustion consumption by public passenger transport,AR-Q,SESCO,annual,kg,4bca05d3-a1e2-33cf-889c-a1a9b303478c +2020,Rio Negro,II.1.1,30.232439999999997,TJ,CO2,74100.0,kg/TJ,2240223.8039999995,Gas Oil combustion consumption by public passenger transport,AR-R,SESCO,annual,kg,529dc48a-9281-3531-8ac1-531656654562 +2020,Rio Negro,II.1.1,30.232439999999997,TJ,CH4,3.9,kg/TJ,117.90651599999998,Gas Oil combustion consumption by public passenger transport,AR-R,SESCO,annual,kg,119166ef-41c0-3686-ab11-1acb8000fa4c +2020,Rio Negro,II.1.1,30.232439999999997,TJ,N2O,3.9,kg/TJ,117.90651599999998,Gas Oil combustion consumption by public passenger transport,AR-R,SESCO,annual,kg,119166ef-41c0-3686-ab11-1acb8000fa4c +2020,Salta,II.1.1,48.184079999999994,TJ,CO2,74100.0,kg/TJ,3570440.3279999997,Gas Oil combustion consumption by public passenger transport,AR-A,SESCO,annual,kg,8b40845b-91ab-33ba-aa0f-c3609db5c552 +2020,Salta,II.1.1,48.184079999999994,TJ,CH4,3.9,kg/TJ,187.91791199999997,Gas Oil combustion consumption by public passenger transport,AR-A,SESCO,annual,kg,9e538784-1e35-3d18-8aa0-0b9555730f47 +2020,Salta,II.1.1,48.184079999999994,TJ,N2O,3.9,kg/TJ,187.91791199999997,Gas Oil combustion consumption by public passenger transport,AR-A,SESCO,annual,kg,9e538784-1e35-3d18-8aa0-0b9555730f47 +2020,San Juan,II.1.1,34.45848,TJ,CO2,74100.0,kg/TJ,2553373.3680000002,Gas Oil combustion consumption by public passenger transport,AR-J,SESCO,annual,kg,73dec076-4d24-3d84-a4cd-90519827fa0f +2020,San Juan,II.1.1,34.45848,TJ,CH4,3.9,kg/TJ,134.388072,Gas Oil combustion consumption by public passenger transport,AR-J,SESCO,annual,kg,c061d027-8413-3829-b829-325476e8777a +2020,San Juan,II.1.1,34.45848,TJ,N2O,3.9,kg/TJ,134.388072,Gas Oil combustion consumption by public passenger transport,AR-J,SESCO,annual,kg,c061d027-8413-3829-b829-325476e8777a +2020,Santa Fe,II.1.1,238.53647999999998,TJ,CO2,74100.0,kg/TJ,17675553.167999998,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,34e2d110-242b-3d95-baa0-39afd8c88617 +2020,Santa Fe,II.1.1,238.53647999999998,TJ,CH4,3.9,kg/TJ,930.2922719999999,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,f257aeb0-9626-34bd-b671-ca6cf9e73319 +2020,Santa Fe,II.1.1,238.53647999999998,TJ,N2O,3.9,kg/TJ,930.2922719999999,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,f257aeb0-9626-34bd-b671-ca6cf9e73319 +2020,Tierra del Fuego,II.1.1,3.50364,TJ,CO2,74100.0,kg/TJ,259619.724,Gas Oil combustion consumption by public passenger transport,AR-V,SESCO,annual,kg,d7749bdb-785d-34a8-b7d0-1f38c1aff197 +2020,Tierra del Fuego,II.1.1,3.50364,TJ,CH4,3.9,kg/TJ,13.664195999999999,Gas Oil combustion consumption by public passenger transport,AR-V,SESCO,annual,kg,4015280e-4d55-38d2-bedd-bc3ed16aa8d2 +2020,Tierra del Fuego,II.1.1,3.50364,TJ,N2O,3.9,kg/TJ,13.664195999999999,Gas Oil combustion consumption by public passenger transport,AR-V,SESCO,annual,kg,4015280e-4d55-38d2-bedd-bc3ed16aa8d2 +2020,Tucuman,II.1.1,2.60064,TJ,CO2,74100.0,kg/TJ,192707.424,Gas Oil combustion consumption by public passenger transport,AR-T,SESCO,annual,kg,176e1e9e-8610-3cdc-9a6a-da479aabb356 +2020,Tucuman,II.1.1,2.60064,TJ,CH4,3.9,kg/TJ,10.142496,Gas Oil combustion consumption by public passenger transport,AR-T,SESCO,annual,kg,fc11201c-29b5-3996-ae33-9fed88af63eb +2020,Tucuman,II.1.1,2.60064,TJ,N2O,3.9,kg/TJ,10.142496,Gas Oil combustion consumption by public passenger transport,AR-T,SESCO,annual,kg,fc11201c-29b5-3996-ae33-9fed88af63eb +2020,Buenos Aires,II.1.1,1958.28192,TJ,CO2,74100.0,kg/TJ,145108690.27199998,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,05059401-7c51-33ef-af25-bcd2c3c5a6a9 +2020,Buenos Aires,II.1.1,1958.28192,TJ,CH4,3.9,kg/TJ,7637.299488,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,da5efebe-294b-332a-a50d-ebefbb8b3088 +2020,Buenos Aires,II.1.1,1958.28192,TJ,N2O,3.9,kg/TJ,7637.299488,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,da5efebe-294b-332a-a50d-ebefbb8b3088 +2020,Capital Federal,II.1.1,415.45223999999996,TJ,CO2,74100.0,kg/TJ,30785010.983999997,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,055f94bc-bd7f-3276-a975-1351d8616c00 +2020,Capital Federal,II.1.1,415.45223999999996,TJ,CH4,3.9,kg/TJ,1620.2637359999999,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,20b57a6b-917f-3ac9-a8ea-39bab7ab064a +2020,Capital Federal,II.1.1,415.45223999999996,TJ,N2O,3.9,kg/TJ,1620.2637359999999,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,20b57a6b-917f-3ac9-a8ea-39bab7ab064a +2020,Chaco,II.1.1,6.24876,TJ,CO2,74100.0,kg/TJ,463033.116,Gas Oil combustion consumption by public passenger transport,AR-H,SESCO,annual,kg,7b0e2833-78ce-34e5-8fe2-8f11f2baf3d3 +2020,Chaco,II.1.1,6.24876,TJ,CH4,3.9,kg/TJ,24.370164,Gas Oil combustion consumption by public passenger transport,AR-H,SESCO,annual,kg,247bb280-bcc2-30b6-9b4b-773800050630 +2020,Chaco,II.1.1,6.24876,TJ,N2O,3.9,kg/TJ,24.370164,Gas Oil combustion consumption by public passenger transport,AR-H,SESCO,annual,kg,247bb280-bcc2-30b6-9b4b-773800050630 +2020,Chubut,II.1.1,31.641119999999997,TJ,CO2,74100.0,kg/TJ,2344606.9919999996,Gas Oil combustion consumption by public passenger transport,AR-U,SESCO,annual,kg,1a207f8c-5f1a-3ef1-ad33-4fc95b250b14 +2020,Chubut,II.1.1,31.641119999999997,TJ,CH4,3.9,kg/TJ,123.40036799999999,Gas Oil combustion consumption by public passenger transport,AR-U,SESCO,annual,kg,466e10d1-7d3c-36a0-994b-7eb334184819 +2020,Chubut,II.1.1,31.641119999999997,TJ,N2O,3.9,kg/TJ,123.40036799999999,Gas Oil combustion consumption by public passenger transport,AR-U,SESCO,annual,kg,466e10d1-7d3c-36a0-994b-7eb334184819 +2020,Corrientes,II.1.1,9.2106,TJ,CO2,74100.0,kg/TJ,682505.46,Gas Oil combustion consumption by public passenger transport,AR-W,SESCO,annual,kg,31939546-de6c-3f63-803c-96114a357038 +2020,Corrientes,II.1.1,9.2106,TJ,CH4,3.9,kg/TJ,35.921339999999994,Gas Oil combustion consumption by public passenger transport,AR-W,SESCO,annual,kg,06e2c62d-c263-3d08-a176-a653274d4fdd +2020,Corrientes,II.1.1,9.2106,TJ,N2O,3.9,kg/TJ,35.921339999999994,Gas Oil combustion consumption by public passenger transport,AR-W,SESCO,annual,kg,06e2c62d-c263-3d08-a176-a653274d4fdd +2020,Córdoba,II.1.1,132.09084,TJ,CO2,74100.0,kg/TJ,9787931.243999999,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,12f500e8-9fe7-36a4-9191-0f08ff3ee9b9 +2020,Córdoba,II.1.1,132.09084,TJ,CH4,3.9,kg/TJ,515.154276,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,d65083e4-f749-3600-93a3-16918a6f3265 +2020,Córdoba,II.1.1,132.09084,TJ,N2O,3.9,kg/TJ,515.154276,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,d65083e4-f749-3600-93a3-16918a6f3265 +2020,Entre Rios,II.1.1,14.88144,TJ,CO2,74100.0,kg/TJ,1102714.704,Gas Oil combustion consumption by public passenger transport,AR-E,SESCO,annual,kg,255a012c-2c36-30be-9007-28b7a3fe216c +2020,Entre Rios,II.1.1,14.88144,TJ,CH4,3.9,kg/TJ,58.037616,Gas Oil combustion consumption by public passenger transport,AR-E,SESCO,annual,kg,799ca722-d0d5-36ca-b81b-3798a6b06393 +2020,Entre Rios,II.1.1,14.88144,TJ,N2O,3.9,kg/TJ,58.037616,Gas Oil combustion consumption by public passenger transport,AR-E,SESCO,annual,kg,799ca722-d0d5-36ca-b81b-3798a6b06393 +2020,Mendoza,II.1.1,83.43719999999999,TJ,CO2,74100.0,kg/TJ,6182696.52,Gas Oil combustion consumption by public passenger transport,AR-M,SESCO,annual,kg,275c2ba9-6af2-3939-ab8a-67170fb9d161 +2020,Mendoza,II.1.1,83.43719999999999,TJ,CH4,3.9,kg/TJ,325.40507999999994,Gas Oil combustion consumption by public passenger transport,AR-M,SESCO,annual,kg,e80969b8-0b9c-3e6f-86e9-dfb7d285c442 +2020,Mendoza,II.1.1,83.43719999999999,TJ,N2O,3.9,kg/TJ,325.40507999999994,Gas Oil combustion consumption by public passenger transport,AR-M,SESCO,annual,kg,e80969b8-0b9c-3e6f-86e9-dfb7d285c442 +2020,Misiones,II.1.1,29.72676,TJ,CO2,74100.0,kg/TJ,2202752.9159999997,Gas Oil combustion consumption by public passenger transport,AR-N,SESCO,annual,kg,21ccdea5-97a9-3576-83c4-9ac82fd5206d +2020,Misiones,II.1.1,29.72676,TJ,CH4,3.9,kg/TJ,115.93436399999999,Gas Oil combustion consumption by public passenger transport,AR-N,SESCO,annual,kg,c9ac5860-8860-3fda-ae65-52929e3b8c27 +2020,Misiones,II.1.1,29.72676,TJ,N2O,3.9,kg/TJ,115.93436399999999,Gas Oil combustion consumption by public passenger transport,AR-N,SESCO,annual,kg,c9ac5860-8860-3fda-ae65-52929e3b8c27 +2020,Neuquén,II.1.1,15.459359999999998,TJ,CO2,74100.0,kg/TJ,1145538.576,Gas Oil combustion consumption by public passenger transport,AR-Q,SESCO,annual,kg,96d2d874-25cf-3e1c-8b8a-0397a4be89c7 +2020,Neuquén,II.1.1,15.459359999999998,TJ,CH4,3.9,kg/TJ,60.29150399999999,Gas Oil combustion consumption by public passenger transport,AR-Q,SESCO,annual,kg,2df8523a-d410-3925-9d65-a2d70d09aacf +2020,Neuquén,II.1.1,15.459359999999998,TJ,N2O,3.9,kg/TJ,60.29150399999999,Gas Oil combustion consumption by public passenger transport,AR-Q,SESCO,annual,kg,2df8523a-d410-3925-9d65-a2d70d09aacf +2020,Rio Negro,II.1.1,80.11416,TJ,CO2,74100.0,kg/TJ,5936459.256,Gas Oil combustion consumption by public passenger transport,AR-R,SESCO,annual,kg,d032dca9-c1b8-3f21-9414-218f12d44ac2 +2020,Rio Negro,II.1.1,80.11416,TJ,CH4,3.9,kg/TJ,312.445224,Gas Oil combustion consumption by public passenger transport,AR-R,SESCO,annual,kg,06746c9b-b17d-3257-bf6c-6a03a41cde4b +2020,Rio Negro,II.1.1,80.11416,TJ,N2O,3.9,kg/TJ,312.445224,Gas Oil combustion consumption by public passenger transport,AR-R,SESCO,annual,kg,06746c9b-b17d-3257-bf6c-6a03a41cde4b +2020,Salta,II.1.1,41.97144,TJ,CO2,74100.0,kg/TJ,3110083.704,Gas Oil combustion consumption by public passenger transport,AR-A,SESCO,annual,kg,f346bb5b-8f81-382b-ac8a-4700e50f39ba +2020,Salta,II.1.1,41.97144,TJ,CH4,3.9,kg/TJ,163.688616,Gas Oil combustion consumption by public passenger transport,AR-A,SESCO,annual,kg,335baaeb-6c38-3259-9cd0-825c8aa678c7 +2020,Salta,II.1.1,41.97144,TJ,N2O,3.9,kg/TJ,163.688616,Gas Oil combustion consumption by public passenger transport,AR-A,SESCO,annual,kg,335baaeb-6c38-3259-9cd0-825c8aa678c7 +2020,San Juan,II.1.1,43.19952,TJ,CO2,74100.0,kg/TJ,3201084.432,Gas Oil combustion consumption by public passenger transport,AR-J,SESCO,annual,kg,2fd403dc-1837-3e06-93e6-87b72230f2aa +2020,San Juan,II.1.1,43.19952,TJ,CH4,3.9,kg/TJ,168.478128,Gas Oil combustion consumption by public passenger transport,AR-J,SESCO,annual,kg,563facd3-fca1-344f-8039-67af33ac0e77 +2020,San Juan,II.1.1,43.19952,TJ,N2O,3.9,kg/TJ,168.478128,Gas Oil combustion consumption by public passenger transport,AR-J,SESCO,annual,kg,563facd3-fca1-344f-8039-67af33ac0e77 +2020,Santa Fe,II.1.1,115.51176,TJ,CO2,74100.0,kg/TJ,8559421.416,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,cb9ccf94-63e6-380a-8df8-670a8fae5d29 +2020,Santa Fe,II.1.1,115.51176,TJ,CH4,3.9,kg/TJ,450.495864,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,5184025b-1136-31eb-b0ca-837e7a609d9e +2020,Santa Fe,II.1.1,115.51176,TJ,N2O,3.9,kg/TJ,450.495864,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,5184025b-1136-31eb-b0ca-837e7a609d9e +2020,Tucuman,II.1.1,0.18059999999999998,TJ,CO2,74100.0,kg/TJ,13382.46,Gas Oil combustion consumption by public passenger transport,AR-T,SESCO,annual,kg,a74ed51b-db87-36ae-a815-65c0c266aaf9 +2020,Tucuman,II.1.1,0.18059999999999998,TJ,CH4,3.9,kg/TJ,0.70434,Gas Oil combustion consumption by public passenger transport,AR-T,SESCO,annual,kg,1d24498c-aa42-3cd5-b833-a0fd59b7614c +2020,Tucuman,II.1.1,0.18059999999999998,TJ,N2O,3.9,kg/TJ,0.70434,Gas Oil combustion consumption by public passenger transport,AR-T,SESCO,annual,kg,1d24498c-aa42-3cd5-b833-a0fd59b7614c +2021,Buenos Aires,II.5.1,567.3368399999999,TJ,CO2,74100.0,kg/TJ,42039659.844,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,38739a1c-4c8c-3e71-ad57-56c636eaf7df +2021,Buenos Aires,II.5.1,567.3368399999999,TJ,CH4,3.9,kg/TJ,2212.6136759999995,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,14e30095-1091-36ea-9d8e-fdec2e071c93 +2021,Buenos Aires,II.5.1,567.3368399999999,TJ,N2O,3.9,kg/TJ,2212.6136759999995,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,14e30095-1091-36ea-9d8e-fdec2e071c93 +2021,Córdoba,II.5.1,146.24988,TJ,CO2,74100.0,kg/TJ,10837116.108,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,66494737-c341-35c7-a588-af948b76553b +2021,Córdoba,II.5.1,146.24988,TJ,CH4,3.9,kg/TJ,570.3745319999999,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,b07237e0-597f-30e1-beee-6157e087e201 +2021,Córdoba,II.5.1,146.24988,TJ,N2O,3.9,kg/TJ,570.3745319999999,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,b07237e0-597f-30e1-beee-6157e087e201 +2021,Entre Rios,II.5.1,24.092039999999997,TJ,CO2,74100.0,kg/TJ,1785220.1639999999,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,544378db-82e1-36cb-a20e-5c1aa50dd882 +2021,Entre Rios,II.5.1,24.092039999999997,TJ,CH4,3.9,kg/TJ,93.95895599999999,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,8e6557b0-6474-3b8e-bc9d-2789dbc17e54 +2021,Entre Rios,II.5.1,24.092039999999997,TJ,N2O,3.9,kg/TJ,93.95895599999999,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,8e6557b0-6474-3b8e-bc9d-2789dbc17e54 +2021,La Pampa,II.5.1,17.8794,TJ,CO2,74100.0,kg/TJ,1324863.54,Gas Oil combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,29721295-2531-331c-a609-99a2de04a05a +2021,La Pampa,II.5.1,17.8794,TJ,CH4,3.9,kg/TJ,69.72966,Gas Oil combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,fa58962f-289b-3bee-b63f-92c6fa2059eb +2021,La Pampa,II.5.1,17.8794,TJ,N2O,3.9,kg/TJ,69.72966,Gas Oil combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,fa58962f-289b-3bee-b63f-92c6fa2059eb +2021,Santa Fe,II.5.1,372.65004,TJ,CO2,74100.0,kg/TJ,27613367.963999998,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,fcddbf27-87e0-34d5-8d5a-150dd295bead +2021,Santa Fe,II.5.1,372.65004,TJ,CH4,3.9,kg/TJ,1453.3351559999999,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,37409be0-6fbe-3e25-ab3f-ba84a26f1bf3 +2021,Santa Fe,II.5.1,372.65004,TJ,N2O,3.9,kg/TJ,1453.3351559999999,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,37409be0-6fbe-3e25-ab3f-ba84a26f1bf3 +2021,Buenos Aires,II.5.1,20.06466,TJ,CO2,74100.0,kg/TJ,1486791.306,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,257ffa8b-5e3b-338c-b712-ca34fdfc8a5a +2021,Buenos Aires,II.5.1,20.06466,TJ,CH4,3.9,kg/TJ,78.252174,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,9fcd37e3-803e-35ab-b135-417b3e450148 +2021,Buenos Aires,II.5.1,20.06466,TJ,N2O,3.9,kg/TJ,78.252174,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,9fcd37e3-803e-35ab-b135-417b3e450148 +2021,Córdoba,II.5.1,4.11768,TJ,CO2,74100.0,kg/TJ,305120.088,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,f1b09d03-f880-3820-9011-d44884ed6779 +2021,Córdoba,II.5.1,4.11768,TJ,CH4,3.9,kg/TJ,16.058951999999998,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,4d3c5302-5def-3aab-9c7a-b5d9b019c49e +2021,Córdoba,II.5.1,4.11768,TJ,N2O,3.9,kg/TJ,16.058951999999998,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,4d3c5302-5def-3aab-9c7a-b5d9b019c49e +2021,Santa Fe,II.5.1,6.10428,TJ,CO2,74100.0,kg/TJ,452327.148,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,61265b96-e74a-3aab-a847-7a4dc048f1b0 +2021,Santa Fe,II.5.1,6.10428,TJ,CH4,3.9,kg/TJ,23.806692,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,43cf9ab5-e596-3759-a523-2f633b6aeb70 +2021,Santa Fe,II.5.1,6.10428,TJ,N2O,3.9,kg/TJ,23.806692,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,43cf9ab5-e596-3759-a523-2f633b6aeb70 +2021,Buenos Aires,II.5.1,8.0104717,TJ,CO2,73300.0,kg/TJ,587167.57561,Naphtha combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,93458937-50b2-363f-9451-63ffeb5369a6 +2021,Buenos Aires,II.5.1,8.0104717,TJ,CH4,0.5,kg/TJ,4.00523585,Naphtha combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,1a834f2e-d3ba-3682-971a-a567706c21ee +2021,Buenos Aires,II.5.1,8.0104717,TJ,N2O,2.0,kg/TJ,16.0209434,Naphtha combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,9b75feb1-41ba-3e18-92a6-f332bf9c055f +2021,Córdoba,II.5.1,2.3300199999999998,TJ,CO2,73300.0,kg/TJ,170790.466,Naphtha combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,d20066f9-16d6-3337-a316-5bd738dcfb54 +2021,Córdoba,II.5.1,2.3300199999999998,TJ,CH4,0.5,kg/TJ,1.1650099999999999,Naphtha combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,72ccfb1f-8de7-3683-9e90-fcc77dff605f +2021,Córdoba,II.5.1,2.3300199999999998,TJ,N2O,2.0,kg/TJ,4.6600399999999995,Naphtha combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,4d9e7f3b-4fc1-34fc-8c34-d8ffa26c43b0 +2021,Santa Fe,II.5.1,6.887264999999999,TJ,CO2,73300.0,kg/TJ,504836.52449999994,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,ad7e350e-210f-3856-a7b2-13b4030dc6a8 +2021,Santa Fe,II.5.1,6.887264999999999,TJ,CH4,0.5,kg/TJ,3.4436324999999997,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,c34c22e8-8821-3712-b32d-b1c21c901a3a +2021,Santa Fe,II.5.1,6.887264999999999,TJ,N2O,2.0,kg/TJ,13.774529999999999,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,0396c7c8-85c7-3241-b430-59191a388c0a +2021,Buenos Aires,II.5.1,1.404865,TJ,CO2,73300.0,kg/TJ,102976.6045,Naphtha combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,61a107f0-3411-31af-a84a-6c71e3753fa1 +2021,Buenos Aires,II.5.1,1.404865,TJ,CH4,0.5,kg/TJ,0.7024325,Naphtha combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,6f7107f9-7e8b-3df4-a0e4-93bd71669b84 +2021,Buenos Aires,II.5.1,1.404865,TJ,N2O,2.0,kg/TJ,2.80973,Naphtha combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,a2f9863e-a211-3c5b-b042-9f76805829bd +2021,Córdoba,II.5.1,0.5825049999999999,TJ,CO2,73300.0,kg/TJ,42697.6165,Naphtha combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,c381a63d-5362-3449-b44c-efd1d521965d +2021,Córdoba,II.5.1,0.5825049999999999,TJ,CH4,0.5,kg/TJ,0.29125249999999997,Naphtha combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,cf5fd3c0-c9c4-310a-bed6-f28e30dd6610 +2021,Córdoba,II.5.1,0.5825049999999999,TJ,N2O,2.0,kg/TJ,1.1650099999999999,Naphtha combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,72ccfb1f-8de7-3683-9e90-fcc77dff605f +2021,Buenos Aires,II.5.1,359.71907999999996,TJ,CO2,74100.0,kg/TJ,26655183.827999998,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,9b92d037-1124-3af7-8a85-c5082bf63825 +2021,Buenos Aires,II.5.1,359.71907999999996,TJ,CH4,3.9,kg/TJ,1402.9044119999999,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,0b56de1d-1f9b-3ccb-be86-4ff98fde8d20 +2021,Buenos Aires,II.5.1,359.71907999999996,TJ,N2O,3.9,kg/TJ,1402.9044119999999,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,0b56de1d-1f9b-3ccb-be86-4ff98fde8d20 +2021,Corrientes,II.5.1,0.7223999999999999,TJ,CO2,74100.0,kg/TJ,53529.84,Gas Oil combustion consumption by agriculture machines,AR-W,SESCO,annual,kg,054f5c93-383f-3c91-8523-f61e49e4cf08 +2021,Corrientes,II.5.1,0.7223999999999999,TJ,CH4,3.9,kg/TJ,2.81736,Gas Oil combustion consumption by agriculture machines,AR-W,SESCO,annual,kg,930c9e36-d09e-31a8-a4e3-0e2b15c406c2 +2021,Corrientes,II.5.1,0.7223999999999999,TJ,N2O,3.9,kg/TJ,2.81736,Gas Oil combustion consumption by agriculture machines,AR-W,SESCO,annual,kg,930c9e36-d09e-31a8-a4e3-0e2b15c406c2 +2021,Córdoba,II.5.1,288.38208,TJ,CO2,74100.0,kg/TJ,21369112.128,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,8caa51c6-f688-3f55-9c77-cd985209c8a2 +2021,Córdoba,II.5.1,288.38208,TJ,CH4,3.9,kg/TJ,1124.6901119999998,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,59e2bb27-f0da-3b7e-a7d8-c2622481ac53 +2021,Córdoba,II.5.1,288.38208,TJ,N2O,3.9,kg/TJ,1124.6901119999998,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,59e2bb27-f0da-3b7e-a7d8-c2622481ac53 +2021,Entre Rios,II.5.1,279.027,TJ,CO2,74100.0,kg/TJ,20675900.7,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,c4aaac14-10d6-36aa-ae95-ab4e8b9c341d +2021,Entre Rios,II.5.1,279.027,TJ,CH4,3.9,kg/TJ,1088.2052999999999,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,7078aba7-351b-380a-bd31-7a60cdec13d7 +2021,Entre Rios,II.5.1,279.027,TJ,N2O,3.9,kg/TJ,1088.2052999999999,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,7078aba7-351b-380a-bd31-7a60cdec13d7 +2021,Mendoza,II.5.1,2.38392,TJ,CO2,74100.0,kg/TJ,176648.47199999998,Gas Oil combustion consumption by agriculture machines,AR-M,SESCO,annual,kg,69fbb83b-66d7-3ce3-97b2-ba174abc8743 +2021,Mendoza,II.5.1,2.38392,TJ,CH4,3.9,kg/TJ,9.297287999999998,Gas Oil combustion consumption by agriculture machines,AR-M,SESCO,annual,kg,1597884b-aa42-3ae7-95cb-5d3ab454445f +2021,Mendoza,II.5.1,2.38392,TJ,N2O,3.9,kg/TJ,9.297287999999998,Gas Oil combustion consumption by agriculture machines,AR-M,SESCO,annual,kg,1597884b-aa42-3ae7-95cb-5d3ab454445f +2021,Salta,II.5.1,463.56408,TJ,CO2,74100.0,kg/TJ,34350098.328,Gas Oil combustion consumption by agriculture machines,AR-A,SESCO,annual,kg,d106809a-53a1-3986-8b9f-c45a93090936 +2021,Salta,II.5.1,463.56408,TJ,CH4,3.9,kg/TJ,1807.8999119999999,Gas Oil combustion consumption by agriculture machines,AR-A,SESCO,annual,kg,b1157bc1-328f-36ff-bb74-ff648a667f7b +2021,Salta,II.5.1,463.56408,TJ,N2O,3.9,kg/TJ,1807.8999119999999,Gas Oil combustion consumption by agriculture machines,AR-A,SESCO,annual,kg,b1157bc1-328f-36ff-bb74-ff648a667f7b +2021,Santa Cruz,II.5.1,13.14768,TJ,CO2,74100.0,kg/TJ,974243.088,Gas Oil combustion consumption by agriculture machines,AR-Z,SESCO,annual,kg,98ead2d6-c662-3c69-a4ac-3ae844580206 +2021,Santa Cruz,II.5.1,13.14768,TJ,CH4,3.9,kg/TJ,51.275952,Gas Oil combustion consumption by agriculture machines,AR-Z,SESCO,annual,kg,004cf539-5352-3341-b3e5-a08c2bc5a2ce +2021,Santa Cruz,II.5.1,13.14768,TJ,N2O,3.9,kg/TJ,51.275952,Gas Oil combustion consumption by agriculture machines,AR-Z,SESCO,annual,kg,004cf539-5352-3341-b3e5-a08c2bc5a2ce +2021,Santa Fe,II.5.1,157.15812,TJ,CO2,74100.0,kg/TJ,11645416.692,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,84219182-5c03-3c4e-9e2c-0ee587f7ef69 +2021,Santa Fe,II.5.1,157.15812,TJ,CH4,3.9,kg/TJ,612.916668,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,500ceda6-d7a7-30c2-ab84-2c34773ddedc +2021,Santa Fe,II.5.1,157.15812,TJ,N2O,3.9,kg/TJ,612.916668,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,500ceda6-d7a7-30c2-ab84-2c34773ddedc +2021,Buenos Aires,II.5.1,4.37052,TJ,CO2,74100.0,kg/TJ,323855.532,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,c36d346a-db9b-3004-a55c-f23c3821aaed +2021,Buenos Aires,II.5.1,4.37052,TJ,CH4,3.9,kg/TJ,17.045028,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,e49d7bfe-39de-3668-ac19-2f4eee53d0ac +2021,Buenos Aires,II.5.1,4.37052,TJ,N2O,3.9,kg/TJ,17.045028,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,e49d7bfe-39de-3668-ac19-2f4eee53d0ac +2021,Córdoba,II.5.1,3.53976,TJ,CO2,74100.0,kg/TJ,262296.21599999996,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,c9074328-0739-3f19-8419-0bacb52f1ced +2021,Córdoba,II.5.1,3.53976,TJ,CH4,3.9,kg/TJ,13.805063999999998,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,6520de76-dd23-366a-aa20-a1cfcf7d1947 +2021,Córdoba,II.5.1,3.53976,TJ,N2O,3.9,kg/TJ,13.805063999999998,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,6520de76-dd23-366a-aa20-a1cfcf7d1947 +2021,Entre Rios,II.5.1,3.03408,TJ,CO2,74100.0,kg/TJ,224825.32799999998,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,7f4e18c7-19b2-374e-a183-ab61a951f4d0 +2021,Entre Rios,II.5.1,3.03408,TJ,CH4,3.9,kg/TJ,11.832911999999999,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,360740e7-ca0d-33d2-ba54-46dfdad2cb6c +2021,Entre Rios,II.5.1,3.03408,TJ,N2O,3.9,kg/TJ,11.832911999999999,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,360740e7-ca0d-33d2-ba54-46dfdad2cb6c +2021,Salta,II.5.1,0.46956,TJ,CO2,74100.0,kg/TJ,34794.396,Gas Oil combustion consumption by agriculture machines,AR-A,SESCO,annual,kg,994b1bce-2527-3f7d-9978-aa3e1ecfa834 +2021,Salta,II.5.1,0.46956,TJ,CH4,3.9,kg/TJ,1.831284,Gas Oil combustion consumption by agriculture machines,AR-A,SESCO,annual,kg,6e640d6c-c4e8-338d-8432-b751cf2a13a4 +2021,Salta,II.5.1,0.46956,TJ,N2O,3.9,kg/TJ,1.831284,Gas Oil combustion consumption by agriculture machines,AR-A,SESCO,annual,kg,6e640d6c-c4e8-338d-8432-b751cf2a13a4 +2021,Santa Fe,II.5.1,1.2642,TJ,CO2,74100.0,kg/TJ,93677.22,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,2f3a9191-03a3-3dbb-9951-f6eee56e65e0 +2021,Santa Fe,II.5.1,1.2642,TJ,CH4,3.9,kg/TJ,4.9303799999999995,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,a231cce5-e1d2-3a36-85af-b2907160379b +2021,Santa Fe,II.5.1,1.2642,TJ,N2O,3.9,kg/TJ,4.9303799999999995,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,a231cce5-e1d2-3a36-85af-b2907160379b +2021,Córdoba,II.5.1,6.2019649999999995,TJ,CO2,73300.0,kg/TJ,454604.03449999995,Naphtha combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,dece819d-3dd9-3d87-9f04-e98d74283c4e +2021,Córdoba,II.5.1,6.2019649999999995,TJ,CH4,0.5,kg/TJ,3.1009824999999998,Naphtha combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,fa27c1c1-f12d-3db4-9b11-e6570d6ca2de +2021,Córdoba,II.5.1,6.2019649999999995,TJ,N2O,2.0,kg/TJ,12.403929999999999,Naphtha combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,7882db78-b50a-3efb-8d73-706951e44b61 +2021,Mendoza,II.5.1,1.64472,TJ,CO2,73300.0,kg/TJ,120557.976,Naphtha combustion consumption by agriculture machines,AR-M,SESCO,annual,kg,48a9bd3c-4dc4-3d88-8890-057c82c23a53 +2021,Mendoza,II.5.1,1.64472,TJ,CH4,0.5,kg/TJ,0.82236,Naphtha combustion consumption by agriculture machines,AR-M,SESCO,annual,kg,8ec15d86-fdc1-351d-9e3b-68fbc83082b5 +2021,Mendoza,II.5.1,1.64472,TJ,N2O,2.0,kg/TJ,3.28944,Naphtha combustion consumption by agriculture machines,AR-M,SESCO,annual,kg,017c5091-96b6-3c7d-8508-e53f1601ff1e +2021,Salta,II.5.1,0.41118,TJ,CO2,73300.0,kg/TJ,30139.494,Naphtha combustion consumption by agriculture machines,AR-A,SESCO,annual,kg,7099f754-0ffa-32cd-876b-b66dd775a2c5 +2021,Salta,II.5.1,0.41118,TJ,CH4,0.5,kg/TJ,0.20559,Naphtha combustion consumption by agriculture machines,AR-A,SESCO,annual,kg,2d58c466-d18a-3183-9652-3744eded22ba +2021,Salta,II.5.1,0.41118,TJ,N2O,2.0,kg/TJ,0.82236,Naphtha combustion consumption by agriculture machines,AR-A,SESCO,annual,kg,e251583b-f67e-3c9a-a013-f29bb37c3602 +2021,Córdoba,II.5.1,0.54824,TJ,CO2,73300.0,kg/TJ,40185.992,Naphtha combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,8584904c-9ff5-349a-8f2c-159a1bd812e7 +2021,Córdoba,II.5.1,0.54824,TJ,CH4,0.5,kg/TJ,0.27412,Naphtha combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,49ec0c44-5e21-3f66-bc32-63110a46cdaa +2021,Córdoba,II.5.1,0.54824,TJ,N2O,2.0,kg/TJ,1.09648,Naphtha combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,91b4cf00-e7c7-3bfa-a059-07d043c6ebaa +2021,Chubut,II.1.1,0.1618176,TJ,CO2,74100.0,kg/TJ,11990.68416,Gas Oil combustion consumption by freight transport,AR-U,SESCO,annual,kg,67b4a931-4b71-36f0-b19c-cdf4d1d2be84 +2021,Chubut,II.1.1,0.1618176,TJ,CH4,3.9,kg/TJ,0.63108864,Gas Oil combustion consumption by freight transport,AR-U,SESCO,annual,kg,d49f9753-61be-306c-8550-aa7e04e1e5ca +2021,Chubut,II.1.1,0.1618176,TJ,N2O,3.9,kg/TJ,0.63108864,Gas Oil combustion consumption by freight transport,AR-U,SESCO,annual,kg,d49f9753-61be-306c-8550-aa7e04e1e5ca +2021,Buenos Aires,II.5.1,3872.20848,TJ,CO2,74100.0,kg/TJ,286930648.368,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,4c0456a7-5f10-36f1-aa69-bdec7e0804ee +2021,Buenos Aires,II.5.1,3872.20848,TJ,CH4,3.9,kg/TJ,15101.613071999998,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,fa6b3d83-40d4-3c34-946e-83678f59750e +2021,Buenos Aires,II.5.1,3872.20848,TJ,N2O,3.9,kg/TJ,15101.613071999998,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,fa6b3d83-40d4-3c34-946e-83678f59750e +2021,Catamarca,II.5.1,78.09143999999999,TJ,CO2,74100.0,kg/TJ,5786575.703999999,Gas Oil combustion consumption by agriculture machines,AR-K,SESCO,annual,kg,a123ef87-3d72-3efc-a07d-d1169067c6b2 +2021,Catamarca,II.5.1,78.09143999999999,TJ,CH4,3.9,kg/TJ,304.55661599999996,Gas Oil combustion consumption by agriculture machines,AR-K,SESCO,annual,kg,336f76aa-3e5f-3972-b4e7-adcd2ddfc063 +2021,Catamarca,II.5.1,78.09143999999999,TJ,N2O,3.9,kg/TJ,304.55661599999996,Gas Oil combustion consumption by agriculture machines,AR-K,SESCO,annual,kg,336f76aa-3e5f-3972-b4e7-adcd2ddfc063 +2021,Chaco,II.5.1,581.85708,TJ,CO2,74100.0,kg/TJ,43115609.628,Gas Oil combustion consumption by agriculture machines,AR-H,SESCO,annual,kg,5cf95378-995d-3edf-8f74-ece5dde1fafd +2021,Chaco,II.5.1,581.85708,TJ,CH4,3.9,kg/TJ,2269.242612,Gas Oil combustion consumption by agriculture machines,AR-H,SESCO,annual,kg,ea9dc890-f5a1-3dde-9ad0-4a00cd66141f +2021,Chaco,II.5.1,581.85708,TJ,N2O,3.9,kg/TJ,2269.242612,Gas Oil combustion consumption by agriculture machines,AR-H,SESCO,annual,kg,ea9dc890-f5a1-3dde-9ad0-4a00cd66141f +2021,Corrientes,II.5.1,1332.32232,TJ,CO2,74100.0,kg/TJ,98725083.912,Gas Oil combustion consumption by agriculture machines,AR-W,SESCO,annual,kg,9265482c-33b3-3163-b56c-2038a736cfa6 +2021,Corrientes,II.5.1,1332.32232,TJ,CH4,3.9,kg/TJ,5196.057048,Gas Oil combustion consumption by agriculture machines,AR-W,SESCO,annual,kg,0d78037c-bdaa-3661-817c-2dc608e7ee09 +2021,Corrientes,II.5.1,1332.32232,TJ,N2O,3.9,kg/TJ,5196.057048,Gas Oil combustion consumption by agriculture machines,AR-W,SESCO,annual,kg,0d78037c-bdaa-3661-817c-2dc608e7ee09 +2021,Córdoba,II.5.1,3175.1647199999998,TJ,CO2,74100.0,kg/TJ,235279705.75199997,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,71bb08d4-19c2-3119-971b-c3ee5ac964be +2021,Córdoba,II.5.1,3175.1647199999998,TJ,CH4,3.9,kg/TJ,12383.142407999998,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,6b4403e2-5027-32eb-a189-ab39ef38c558 +2021,Córdoba,II.5.1,3175.1647199999998,TJ,N2O,3.9,kg/TJ,12383.142407999998,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,6b4403e2-5027-32eb-a189-ab39ef38c558 +2021,Entre Rios,II.5.1,996.62304,TJ,CO2,74100.0,kg/TJ,73849767.264,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,8a1ddb17-ded6-3a4d-8bc0-dc44db37491b +2021,Entre Rios,II.5.1,996.62304,TJ,CH4,3.9,kg/TJ,3886.829856,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,fe7856d5-a226-387d-b0f8-152c240d7b38 +2021,Entre Rios,II.5.1,996.62304,TJ,N2O,3.9,kg/TJ,3886.829856,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,fe7856d5-a226-387d-b0f8-152c240d7b38 +2021,Jujuy,II.5.1,11.052719999999999,TJ,CO2,74100.0,kg/TJ,819006.5519999999,Gas Oil combustion consumption by agriculture machines,AR-Y,SESCO,annual,kg,a1e13cf3-bd21-3815-875f-3717b8d32f5a +2021,Jujuy,II.5.1,11.052719999999999,TJ,CH4,3.9,kg/TJ,43.105608,Gas Oil combustion consumption by agriculture machines,AR-Y,SESCO,annual,kg,591739fc-b912-3db8-8b08-0de2cfffde87 +2021,Jujuy,II.5.1,11.052719999999999,TJ,N2O,3.9,kg/TJ,43.105608,Gas Oil combustion consumption by agriculture machines,AR-Y,SESCO,annual,kg,591739fc-b912-3db8-8b08-0de2cfffde87 +2021,La Pampa,II.5.1,186.921,TJ,CO2,74100.0,kg/TJ,13850846.1,Gas Oil combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,4f6ec277-1c7d-3f61-821d-91643b6f5c1d +2021,La Pampa,II.5.1,186.921,TJ,CH4,3.9,kg/TJ,728.9919,Gas Oil combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,c9f04cd3-f43c-3721-9625-ec15aad95089 +2021,La Pampa,II.5.1,186.921,TJ,N2O,3.9,kg/TJ,728.9919,Gas Oil combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,c9f04cd3-f43c-3721-9625-ec15aad95089 +2021,Mendoza,II.5.1,433.00656,TJ,CO2,74100.0,kg/TJ,32085786.095999997,Gas Oil combustion consumption by agriculture machines,AR-M,SESCO,annual,kg,817d9e4c-db57-35e6-92d8-f8dca17550f3 +2021,Mendoza,II.5.1,433.00656,TJ,CH4,3.9,kg/TJ,1688.7255839999998,Gas Oil combustion consumption by agriculture machines,AR-M,SESCO,annual,kg,6be5f80a-903c-30fd-bb15-fb3589d1bbf2 +2021,Mendoza,II.5.1,433.00656,TJ,N2O,3.9,kg/TJ,1688.7255839999998,Gas Oil combustion consumption by agriculture machines,AR-M,SESCO,annual,kg,6be5f80a-903c-30fd-bb15-fb3589d1bbf2 +2021,Misiones,II.5.1,42.368759999999995,TJ,CO2,74100.0,kg/TJ,3139525.1159999995,Gas Oil combustion consumption by agriculture machines,AR-N,SESCO,annual,kg,bca7e559-8832-3ce8-b370-cf1e59a9f430 +2021,Misiones,II.5.1,42.368759999999995,TJ,CH4,3.9,kg/TJ,165.23816399999998,Gas Oil combustion consumption by agriculture machines,AR-N,SESCO,annual,kg,cd77ad69-b731-33d2-9c66-29db94d47639 +2021,Misiones,II.5.1,42.368759999999995,TJ,N2O,3.9,kg/TJ,165.23816399999998,Gas Oil combustion consumption by agriculture machines,AR-N,SESCO,annual,kg,cd77ad69-b731-33d2-9c66-29db94d47639 +2021,Neuquén,II.5.1,239.94516,TJ,CO2,74100.0,kg/TJ,17779936.356,Gas Oil combustion consumption by agriculture machines,AR-Q,SESCO,annual,kg,6660d61b-2aeb-3dff-a2c3-582e919ac92b +2021,Neuquén,II.5.1,239.94516,TJ,CH4,3.9,kg/TJ,935.786124,Gas Oil combustion consumption by agriculture machines,AR-Q,SESCO,annual,kg,ba3f6c3d-5f9a-39bf-947a-131db54ee3a1 +2021,Neuquén,II.5.1,239.94516,TJ,N2O,3.9,kg/TJ,935.786124,Gas Oil combustion consumption by agriculture machines,AR-Q,SESCO,annual,kg,ba3f6c3d-5f9a-39bf-947a-131db54ee3a1 +2021,Salta,II.5.1,99.90791999999999,TJ,CO2,74100.0,kg/TJ,7403176.8719999995,Gas Oil combustion consumption by agriculture machines,AR-A,SESCO,annual,kg,7a8a4856-060a-373f-98c1-17b3742b7b6c +2021,Salta,II.5.1,99.90791999999999,TJ,CH4,3.9,kg/TJ,389.64088799999996,Gas Oil combustion consumption by agriculture machines,AR-A,SESCO,annual,kg,2655d948-8ef4-3a2c-8469-9d7954fe5148 +2021,Salta,II.5.1,99.90791999999999,TJ,N2O,3.9,kg/TJ,389.64088799999996,Gas Oil combustion consumption by agriculture machines,AR-A,SESCO,annual,kg,2655d948-8ef4-3a2c-8469-9d7954fe5148 +2021,San Juan,II.5.1,44.535959999999996,TJ,CO2,74100.0,kg/TJ,3300114.6359999995,Gas Oil combustion consumption by agriculture machines,AR-J,SESCO,annual,kg,ae05a399-9fc1-3fe8-a9c4-44f207357424 +2021,San Juan,II.5.1,44.535959999999996,TJ,CH4,3.9,kg/TJ,173.69024399999998,Gas Oil combustion consumption by agriculture machines,AR-J,SESCO,annual,kg,21d567a7-3fb4-387f-b03f-bd3fc72b118f +2021,San Juan,II.5.1,44.535959999999996,TJ,N2O,3.9,kg/TJ,173.69024399999998,Gas Oil combustion consumption by agriculture machines,AR-J,SESCO,annual,kg,21d567a7-3fb4-387f-b03f-bd3fc72b118f +2021,San Luis,II.5.1,159.43367999999998,TJ,CO2,74100.0,kg/TJ,11814035.688,Gas Oil combustion consumption by agriculture machines,AR-D,SESCO,annual,kg,c4717924-be0e-3845-ada8-1f074b21ff55 +2021,San Luis,II.5.1,159.43367999999998,TJ,CH4,3.9,kg/TJ,621.791352,Gas Oil combustion consumption by agriculture machines,AR-D,SESCO,annual,kg,cc747d0b-f96e-34ff-b5a6-d79b1ce3bbd8 +2021,San Luis,II.5.1,159.43367999999998,TJ,N2O,3.9,kg/TJ,621.791352,Gas Oil combustion consumption by agriculture machines,AR-D,SESCO,annual,kg,cc747d0b-f96e-34ff-b5a6-d79b1ce3bbd8 +2021,Santa Cruz,II.5.1,129.67079999999999,TJ,CO2,74100.0,kg/TJ,9608606.28,Gas Oil combustion consumption by agriculture machines,AR-Z,SESCO,annual,kg,5288fa8f-fe09-3db9-a1b7-023797e8525c +2021,Santa Cruz,II.5.1,129.67079999999999,TJ,CH4,3.9,kg/TJ,505.71611999999993,Gas Oil combustion consumption by agriculture machines,AR-Z,SESCO,annual,kg,99b11259-bfa8-32b5-9ee8-0bb5298a1f1d +2021,Santa Cruz,II.5.1,129.67079999999999,TJ,N2O,3.9,kg/TJ,505.71611999999993,Gas Oil combustion consumption by agriculture machines,AR-Z,SESCO,annual,kg,99b11259-bfa8-32b5-9ee8-0bb5298a1f1d +2021,Santa Fe,II.5.1,5361.00264,TJ,CO2,74100.0,kg/TJ,397250295.62399995,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,02b6dcc7-94b9-3f26-bcfb-5b3d5599ae77 +2021,Santa Fe,II.5.1,5361.00264,TJ,CH4,3.9,kg/TJ,20907.910296,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,cd125830-aa43-31e4-a3a7-292f35f00320 +2021,Santa Fe,II.5.1,5361.00264,TJ,N2O,3.9,kg/TJ,20907.910296,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,cd125830-aa43-31e4-a3a7-292f35f00320 +2021,Santiago del Estero,II.5.1,471.98004,TJ,CO2,74100.0,kg/TJ,34973720.964,Gas Oil combustion consumption by agriculture machines,AR-G,SESCO,annual,kg,04f19271-30fb-3aaa-a42b-ec36777c0101 +2021,Santiago del Estero,II.5.1,471.98004,TJ,CH4,3.9,kg/TJ,1840.7221559999998,Gas Oil combustion consumption by agriculture machines,AR-G,SESCO,annual,kg,729bd52a-fc8a-3443-9d1c-933e3ed26fde +2021,Santiago del Estero,II.5.1,471.98004,TJ,N2O,3.9,kg/TJ,1840.7221559999998,Gas Oil combustion consumption by agriculture machines,AR-G,SESCO,annual,kg,729bd52a-fc8a-3443-9d1c-933e3ed26fde +2021,Tucuman,II.5.1,196.20383999999999,TJ,CO2,74100.0,kg/TJ,14538704.544,Gas Oil combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,285bad75-1060-3b95-a882-422303434981 +2021,Tucuman,II.5.1,196.20383999999999,TJ,CH4,3.9,kg/TJ,765.1949759999999,Gas Oil combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,e63086a1-f556-398a-9a86-0ba6097fda85 +2021,Tucuman,II.5.1,196.20383999999999,TJ,N2O,3.9,kg/TJ,765.1949759999999,Gas Oil combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,e63086a1-f556-398a-9a86-0ba6097fda85 +2021,Buenos Aires,II.5.1,429.97247999999996,TJ,CO2,74100.0,kg/TJ,31860960.767999995,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,ddc24d2d-04b1-31f2-b5e0-52654636021e +2021,Buenos Aires,II.5.1,429.97247999999996,TJ,CH4,3.9,kg/TJ,1676.8926719999997,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,b4a0b1c7-9ac2-3914-98ad-798981de0b11 +2021,Buenos Aires,II.5.1,429.97247999999996,TJ,N2O,3.9,kg/TJ,1676.8926719999997,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,b4a0b1c7-9ac2-3914-98ad-798981de0b11 +2021,Catamarca,II.5.1,26.873279999999998,TJ,CO2,74100.0,kg/TJ,1991310.0479999997,Gas Oil combustion consumption by agriculture machines,AR-K,SESCO,annual,kg,ac362425-4b30-34b3-9882-220ceb595c8c +2021,Catamarca,II.5.1,26.873279999999998,TJ,CH4,3.9,kg/TJ,104.80579199999998,Gas Oil combustion consumption by agriculture machines,AR-K,SESCO,annual,kg,dfa342de-570c-3bc7-a4ac-ea60d52f4dea +2021,Catamarca,II.5.1,26.873279999999998,TJ,N2O,3.9,kg/TJ,104.80579199999998,Gas Oil combustion consumption by agriculture machines,AR-K,SESCO,annual,kg,dfa342de-570c-3bc7-a4ac-ea60d52f4dea +2021,Chaco,II.5.1,151.19832,TJ,CO2,74100.0,kg/TJ,11203795.512,Gas Oil combustion consumption by agriculture machines,AR-H,SESCO,annual,kg,f7208f83-dcfe-353b-82a5-af05a91fa137 +2021,Chaco,II.5.1,151.19832,TJ,CH4,3.9,kg/TJ,589.673448,Gas Oil combustion consumption by agriculture machines,AR-H,SESCO,annual,kg,1f53b2a3-78f4-3060-85f5-ca79a4396904 +2021,Chaco,II.5.1,151.19832,TJ,N2O,3.9,kg/TJ,589.673448,Gas Oil combustion consumption by agriculture machines,AR-H,SESCO,annual,kg,1f53b2a3-78f4-3060-85f5-ca79a4396904 +2021,Corrientes,II.5.1,112.04423999999999,TJ,CO2,74100.0,kg/TJ,8302478.183999999,Gas Oil combustion consumption by agriculture machines,AR-W,SESCO,annual,kg,f5e847b4-3200-3a71-b0f3-99198bde38f0 +2021,Corrientes,II.5.1,112.04423999999999,TJ,CH4,3.9,kg/TJ,436.97253599999993,Gas Oil combustion consumption by agriculture machines,AR-W,SESCO,annual,kg,2c665e23-8558-3b49-b900-2191958d29f4 +2021,Corrientes,II.5.1,112.04423999999999,TJ,N2O,3.9,kg/TJ,436.97253599999993,Gas Oil combustion consumption by agriculture machines,AR-W,SESCO,annual,kg,2c665e23-8558-3b49-b900-2191958d29f4 +2021,Córdoba,II.5.1,315.47208,TJ,CO2,74100.0,kg/TJ,23376481.128,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,00b11d38-1bfb-3604-ae66-4855e80eb8c1 +2021,Córdoba,II.5.1,315.47208,TJ,CH4,3.9,kg/TJ,1230.341112,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,785f0bcc-fd6e-3d8a-86c4-9d2f1e55c8b8 +2021,Córdoba,II.5.1,315.47208,TJ,N2O,3.9,kg/TJ,1230.341112,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,785f0bcc-fd6e-3d8a-86c4-9d2f1e55c8b8 +2021,Entre Rios,II.5.1,21.45528,TJ,CO2,74100.0,kg/TJ,1589836.248,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,9a3b9648-6f44-3827-8bff-b172c88455f1 +2021,Entre Rios,II.5.1,21.45528,TJ,CH4,3.9,kg/TJ,83.675592,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,c8c5be3c-8191-3e7f-9872-0eb0eb49c5fc +2021,Entre Rios,II.5.1,21.45528,TJ,N2O,3.9,kg/TJ,83.675592,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,c8c5be3c-8191-3e7f-9872-0eb0eb49c5fc +2021,Jujuy,II.5.1,8.95776,TJ,CO2,74100.0,kg/TJ,663770.0160000001,Gas Oil combustion consumption by agriculture machines,AR-Y,SESCO,annual,kg,eaf129d9-dd96-35d1-a081-c6a50387e1d2 +2021,Jujuy,II.5.1,8.95776,TJ,CH4,3.9,kg/TJ,34.935264000000004,Gas Oil combustion consumption by agriculture machines,AR-Y,SESCO,annual,kg,2a0997e7-6976-354e-a0a5-4a9db39e6a4e +2021,Jujuy,II.5.1,8.95776,TJ,N2O,3.9,kg/TJ,34.935264000000004,Gas Oil combustion consumption by agriculture machines,AR-Y,SESCO,annual,kg,2a0997e7-6976-354e-a0a5-4a9db39e6a4e +2021,La Pampa,II.5.1,67.29156,TJ,CO2,74100.0,kg/TJ,4986304.596,Gas Oil combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,720e75fc-cae8-3f64-995d-5099f6797cc8 +2021,La Pampa,II.5.1,67.29156,TJ,CH4,3.9,kg/TJ,262.437084,Gas Oil combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,05fb3dcd-61e5-38a1-b38d-af0b32be5ef9 +2021,La Pampa,II.5.1,67.29156,TJ,N2O,3.9,kg/TJ,262.437084,Gas Oil combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,05fb3dcd-61e5-38a1-b38d-af0b32be5ef9 +2021,Mendoza,II.5.1,82.02852,TJ,CO2,74100.0,kg/TJ,6078313.332,Gas Oil combustion consumption by agriculture machines,AR-M,SESCO,annual,kg,20be34ee-8db2-3a2b-9f36-f0a1f55f1224 +2021,Mendoza,II.5.1,82.02852,TJ,CH4,3.9,kg/TJ,319.911228,Gas Oil combustion consumption by agriculture machines,AR-M,SESCO,annual,kg,fc6a55bb-9083-3186-af7a-af0248f3f73a +2021,Mendoza,II.5.1,82.02852,TJ,N2O,3.9,kg/TJ,319.911228,Gas Oil combustion consumption by agriculture machines,AR-M,SESCO,annual,kg,fc6a55bb-9083-3186-af7a-af0248f3f73a +2021,Misiones,II.5.1,1.6615199999999999,TJ,CO2,74100.0,kg/TJ,123118.632,Gas Oil combustion consumption by agriculture machines,AR-N,SESCO,annual,kg,d293994a-4ff9-3c62-96f9-cb13278d034a +2021,Misiones,II.5.1,1.6615199999999999,TJ,CH4,3.9,kg/TJ,6.479927999999999,Gas Oil combustion consumption by agriculture machines,AR-N,SESCO,annual,kg,46a2e9fb-cb14-353a-953f-0146c408a749 +2021,Misiones,II.5.1,1.6615199999999999,TJ,N2O,3.9,kg/TJ,6.479927999999999,Gas Oil combustion consumption by agriculture machines,AR-N,SESCO,annual,kg,46a2e9fb-cb14-353a-953f-0146c408a749 +2021,Neuquén,II.5.1,145.96092,TJ,CO2,74100.0,kg/TJ,10815704.171999998,Gas Oil combustion consumption by agriculture machines,AR-Q,SESCO,annual,kg,cf9ac957-98ac-3017-8b81-2ac44bf644cc +2021,Neuquén,II.5.1,145.96092,TJ,CH4,3.9,kg/TJ,569.247588,Gas Oil combustion consumption by agriculture machines,AR-Q,SESCO,annual,kg,280674fd-5f3b-3289-8008-d10ef06b95cf +2021,Neuquén,II.5.1,145.96092,TJ,N2O,3.9,kg/TJ,569.247588,Gas Oil combustion consumption by agriculture machines,AR-Q,SESCO,annual,kg,280674fd-5f3b-3289-8008-d10ef06b95cf +2021,Salta,II.5.1,36.697919999999996,TJ,CO2,74100.0,kg/TJ,2719315.8719999995,Gas Oil combustion consumption by agriculture machines,AR-A,SESCO,annual,kg,829c0645-232c-3d93-b3c3-0790cc74373e +2021,Salta,II.5.1,36.697919999999996,TJ,CH4,3.9,kg/TJ,143.12188799999998,Gas Oil combustion consumption by agriculture machines,AR-A,SESCO,annual,kg,7539089c-db24-3085-ad37-a949a9925b05 +2021,Salta,II.5.1,36.697919999999996,TJ,N2O,3.9,kg/TJ,143.12188799999998,Gas Oil combustion consumption by agriculture machines,AR-A,SESCO,annual,kg,7539089c-db24-3085-ad37-a949a9925b05 +2021,San Juan,II.5.1,11.052719999999999,TJ,CO2,74100.0,kg/TJ,819006.5519999999,Gas Oil combustion consumption by agriculture machines,AR-J,SESCO,annual,kg,7b78d8a4-6ce6-3996-9bdb-abc206024c89 +2021,San Juan,II.5.1,11.052719999999999,TJ,CH4,3.9,kg/TJ,43.105608,Gas Oil combustion consumption by agriculture machines,AR-J,SESCO,annual,kg,5d029e60-9862-34cb-8e0c-55e57bf95620 +2021,San Juan,II.5.1,11.052719999999999,TJ,N2O,3.9,kg/TJ,43.105608,Gas Oil combustion consumption by agriculture machines,AR-J,SESCO,annual,kg,5d029e60-9862-34cb-8e0c-55e57bf95620 +2021,San Luis,II.5.1,9.89688,TJ,CO2,74100.0,kg/TJ,733358.808,Gas Oil combustion consumption by agriculture machines,AR-D,SESCO,annual,kg,8ed35ffa-8616-3fd1-b219-8fe9550994be +2021,San Luis,II.5.1,9.89688,TJ,CH4,3.9,kg/TJ,38.597832,Gas Oil combustion consumption by agriculture machines,AR-D,SESCO,annual,kg,7c8e5a3b-5fe6-32cf-b007-a4b8190920cb +2021,San Luis,II.5.1,9.89688,TJ,N2O,3.9,kg/TJ,38.597832,Gas Oil combustion consumption by agriculture machines,AR-D,SESCO,annual,kg,7c8e5a3b-5fe6-32cf-b007-a4b8190920cb +2021,Santa Cruz,II.5.1,107.70984,TJ,CO2,74100.0,kg/TJ,7981299.144,Gas Oil combustion consumption by agriculture machines,AR-Z,SESCO,annual,kg,eff5591f-db5d-34f8-847b-de44881b9f35 +2021,Santa Cruz,II.5.1,107.70984,TJ,CH4,3.9,kg/TJ,420.068376,Gas Oil combustion consumption by agriculture machines,AR-Z,SESCO,annual,kg,cf52e543-4230-31cb-8473-418aa1c6d2d8 +2021,Santa Cruz,II.5.1,107.70984,TJ,N2O,3.9,kg/TJ,420.068376,Gas Oil combustion consumption by agriculture machines,AR-Z,SESCO,annual,kg,cf52e543-4230-31cb-8473-418aa1c6d2d8 +2021,Santa Fe,II.5.1,434.1624,TJ,CO2,74100.0,kg/TJ,32171433.84,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,0c343038-b468-397a-8a28-d8b69db69950 +2021,Santa Fe,II.5.1,434.1624,TJ,CH4,3.9,kg/TJ,1693.23336,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,58e41eaf-8795-3107-9660-6a333a531582 +2021,Santa Fe,II.5.1,434.1624,TJ,N2O,3.9,kg/TJ,1693.23336,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,58e41eaf-8795-3107-9660-6a333a531582 +2021,Santiago del Estero,II.5.1,145.34688,TJ,CO2,74100.0,kg/TJ,10770203.808,Gas Oil combustion consumption by agriculture machines,AR-G,SESCO,annual,kg,d119f761-48d4-3d35-aa9e-458376282da8 +2021,Santiago del Estero,II.5.1,145.34688,TJ,CH4,3.9,kg/TJ,566.852832,Gas Oil combustion consumption by agriculture machines,AR-G,SESCO,annual,kg,f7ff8384-d65f-3528-a813-88df29e860ff +2021,Santiago del Estero,II.5.1,145.34688,TJ,N2O,3.9,kg/TJ,566.852832,Gas Oil combustion consumption by agriculture machines,AR-G,SESCO,annual,kg,f7ff8384-d65f-3528-a813-88df29e860ff +2021,Tucuman,II.5.1,70.75908,TJ,CO2,74100.0,kg/TJ,5243247.828,Gas Oil combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,2f86e137-a284-3026-bb39-d429c5302c6c +2021,Tucuman,II.5.1,70.75908,TJ,CH4,3.9,kg/TJ,275.96041199999996,Gas Oil combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,911f5356-8fd3-3aa1-8778-98647a95d802 +2021,Tucuman,II.5.1,70.75908,TJ,N2O,3.9,kg/TJ,275.96041199999996,Gas Oil combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,911f5356-8fd3-3aa1-8778-98647a95d802 +2021,Santa Fe,II.5.1,12.06128,TJ,CO2,73300.0,kg/TJ,884091.824,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,1931366b-6fad-323a-9b7d-7a1a0cd08e03 +2021,Santa Fe,II.5.1,12.06128,TJ,CH4,0.5,kg/TJ,6.03064,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,0f54ffd5-e435-3950-bbde-d2306cc4c183 +2021,Santa Fe,II.5.1,12.06128,TJ,N2O,2.0,kg/TJ,24.12256,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,a995f7e9-7839-33d7-88fa-1d278c6338bf +2021,Santa Fe,II.5.1,4.38592,TJ,CO2,73300.0,kg/TJ,321487.936,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,fbd60f5e-49fb-34f2-b247-308fa3d7f427 +2021,Santa Fe,II.5.1,4.38592,TJ,CH4,0.5,kg/TJ,2.19296,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,d8c0616f-3ea4-3b92-be5d-19dea7c06e72 +2021,Santa Fe,II.5.1,4.38592,TJ,N2O,2.0,kg/TJ,8.77184,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,20fa20a1-7414-36f7-864b-60539701f67f +2021,Buenos Aires,II.2.1,101.136,TJ,CO2,74100.0,kg/TJ,7494177.6,Gas Oil combustion consumption by railway transport,AR-B,SESCO,annual,kg,0e716105-32bf-374f-a9e1-aa20703c5be3 +2021,Buenos Aires,II.2.1,101.136,TJ,CH4,3.9,kg/TJ,394.43039999999996,Gas Oil combustion consumption by railway transport,AR-B,SESCO,annual,kg,7b22458c-449f-38f1-a556-6f5caa3954f9 +2021,Buenos Aires,II.2.1,101.136,TJ,N2O,3.9,kg/TJ,394.43039999999996,Gas Oil combustion consumption by railway transport,AR-B,SESCO,annual,kg,7b22458c-449f-38f1-a556-6f5caa3954f9 +2021,Capital Federal,II.2.1,0.9029999999999999,TJ,CO2,74100.0,kg/TJ,66912.29999999999,Gas Oil combustion consumption by railway transport,AR-C,SESCO,annual,kg,b97fa89f-ae80-38e8-b865-a480384c90b2 +2021,Capital Federal,II.2.1,0.9029999999999999,TJ,CH4,3.9,kg/TJ,3.5216999999999996,Gas Oil combustion consumption by railway transport,AR-C,SESCO,annual,kg,b9af84b7-4d5a-3cce-931d-8cc186aa1fa3 +2021,Capital Federal,II.2.1,0.9029999999999999,TJ,N2O,3.9,kg/TJ,3.5216999999999996,Gas Oil combustion consumption by railway transport,AR-C,SESCO,annual,kg,b9af84b7-4d5a-3cce-931d-8cc186aa1fa3 +2021,Córdoba,II.2.1,2.6367599999999998,TJ,CO2,74100.0,kg/TJ,195383.916,Gas Oil combustion consumption by railway transport,AR-X,SESCO,annual,kg,35b7048c-f187-36a2-a922-a8779872b195 +2021,Córdoba,II.2.1,2.6367599999999998,TJ,CH4,3.9,kg/TJ,10.283363999999999,Gas Oil combustion consumption by railway transport,AR-X,SESCO,annual,kg,89c37af0-f2c6-3ba3-987b-a809ea562587 +2021,Córdoba,II.2.1,2.6367599999999998,TJ,N2O,3.9,kg/TJ,10.283363999999999,Gas Oil combustion consumption by railway transport,AR-X,SESCO,annual,kg,89c37af0-f2c6-3ba3-987b-a809ea562587 +2021,La Pampa,II.2.1,3.93708,TJ,CO2,74100.0,kg/TJ,291737.62799999997,Gas Oil combustion consumption by railway transport,AR-L,SESCO,annual,kg,3d53988e-3280-3593-8fc8-97e919c328ed +2021,La Pampa,II.2.1,3.93708,TJ,CH4,3.9,kg/TJ,15.354612,Gas Oil combustion consumption by railway transport,AR-L,SESCO,annual,kg,3a2390dc-30c4-34de-8960-6bf37de58289 +2021,La Pampa,II.2.1,3.93708,TJ,N2O,3.9,kg/TJ,15.354612,Gas Oil combustion consumption by railway transport,AR-L,SESCO,annual,kg,3a2390dc-30c4-34de-8960-6bf37de58289 +2021,Neuquén,II.2.1,2.709,TJ,CO2,74100.0,kg/TJ,200736.9,Gas Oil combustion consumption by railway transport,AR-Q,SESCO,annual,kg,9b95ac47-8e5e-33eb-875a-4da097391810 +2021,Neuquén,II.2.1,2.709,TJ,CH4,3.9,kg/TJ,10.5651,Gas Oil combustion consumption by railway transport,AR-Q,SESCO,annual,kg,612d3c4b-b817-3f2f-bbbc-158f57b51c8b +2021,Neuquén,II.2.1,2.709,TJ,N2O,3.9,kg/TJ,10.5651,Gas Oil combustion consumption by railway transport,AR-Q,SESCO,annual,kg,612d3c4b-b817-3f2f-bbbc-158f57b51c8b +2021,Santa Fe,II.2.1,39.5514,TJ,CO2,74100.0,kg/TJ,2930758.74,Gas Oil combustion consumption by railway transport,AR-S,SESCO,annual,kg,d86fe2a3-40b7-36bd-b6cb-1a1509c83e35 +2021,Santa Fe,II.2.1,39.5514,TJ,CH4,3.9,kg/TJ,154.25046,Gas Oil combustion consumption by railway transport,AR-S,SESCO,annual,kg,e4fcb35d-0628-3596-89c3-ffa97c1a1f6b +2021,Santa Fe,II.2.1,39.5514,TJ,N2O,3.9,kg/TJ,154.25046,Gas Oil combustion consumption by railway transport,AR-S,SESCO,annual,kg,e4fcb35d-0628-3596-89c3-ffa97c1a1f6b +2021,Santiago del Estero,II.2.1,4.11768,TJ,CO2,74100.0,kg/TJ,305120.088,Gas Oil combustion consumption by railway transport,AR-G,SESCO,annual,kg,cba14561-32e4-351b-9fe5-ea6b47375172 +2021,Santiago del Estero,II.2.1,4.11768,TJ,CH4,3.9,kg/TJ,16.058951999999998,Gas Oil combustion consumption by railway transport,AR-G,SESCO,annual,kg,c67f9d40-0fea-3367-bb19-df40bb693025 +2021,Santiago del Estero,II.2.1,4.11768,TJ,N2O,3.9,kg/TJ,16.058951999999998,Gas Oil combustion consumption by railway transport,AR-G,SESCO,annual,kg,c67f9d40-0fea-3367-bb19-df40bb693025 +2021,Tucuman,II.2.1,1.48092,TJ,CO2,74100.0,kg/TJ,109736.172,Gas Oil combustion consumption by railway transport,AR-T,SESCO,annual,kg,4828952c-857f-33c0-970f-d626c0f2ddee +2021,Tucuman,II.2.1,1.48092,TJ,CH4,3.9,kg/TJ,5.775588,Gas Oil combustion consumption by railway transport,AR-T,SESCO,annual,kg,1bdb27ea-7eb2-345a-9ff5-2ce79238ebb3 +2021,Tucuman,II.2.1,1.48092,TJ,N2O,3.9,kg/TJ,5.775588,Gas Oil combustion consumption by railway transport,AR-T,SESCO,annual,kg,1bdb27ea-7eb2-345a-9ff5-2ce79238ebb3 +2021,Buenos Aires,II.2.1,22.9362,TJ,CO2,74100.0,kg/TJ,1699572.42,Gas Oil combustion consumption by railway transport,AR-B,SESCO,annual,kg,f7f4286e-221b-3576-8afe-a64e5018e0e9 +2021,Buenos Aires,II.2.1,22.9362,TJ,CH4,3.9,kg/TJ,89.45118,Gas Oil combustion consumption by railway transport,AR-B,SESCO,annual,kg,03b9d782-9994-34f8-9630-99914872694a +2021,Buenos Aires,II.2.1,22.9362,TJ,N2O,3.9,kg/TJ,89.45118,Gas Oil combustion consumption by railway transport,AR-B,SESCO,annual,kg,03b9d782-9994-34f8-9630-99914872694a +2021,Capital Federal,II.2.1,2.8895999999999997,TJ,CO2,74100.0,kg/TJ,214119.36,Gas Oil combustion consumption by railway transport,AR-C,SESCO,annual,kg,7cc89b45-445b-323d-8f31-17fd983cb558 +2021,Capital Federal,II.2.1,2.8895999999999997,TJ,CH4,3.9,kg/TJ,11.26944,Gas Oil combustion consumption by railway transport,AR-C,SESCO,annual,kg,782ae6e8-ad35-3b0a-99ee-f0d48a0645b9 +2021,Capital Federal,II.2.1,2.8895999999999997,TJ,N2O,3.9,kg/TJ,11.26944,Gas Oil combustion consumption by railway transport,AR-C,SESCO,annual,kg,782ae6e8-ad35-3b0a-99ee-f0d48a0645b9 +2021,Buenos Aires,II.1.1,1279.04532,TJ,CO2,74100.0,kg/TJ,94777258.212,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,7ed12186-34c0-3d02-99ad-48c9ca865493 +2021,Buenos Aires,II.1.1,1279.04532,TJ,CH4,3.9,kg/TJ,4988.276747999999,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,d48bb42e-54e9-308f-8314-9a51c9577c7a +2021,Buenos Aires,II.1.1,1279.04532,TJ,N2O,3.9,kg/TJ,4988.276747999999,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,d48bb42e-54e9-308f-8314-9a51c9577c7a +2021,Capital Federal,II.1.1,320.45664,TJ,CO2,74100.0,kg/TJ,23745837.024,Gas Oil combustion consumption by freight transport,AR-C,SESCO,annual,kg,f73fd212-433d-3f4e-8b89-d7e7a40049d0 +2021,Capital Federal,II.1.1,320.45664,TJ,CH4,3.9,kg/TJ,1249.780896,Gas Oil combustion consumption by freight transport,AR-C,SESCO,annual,kg,020963f4-ffcd-37ca-a31a-3890f241ddf9 +2021,Capital Federal,II.1.1,320.45664,TJ,N2O,3.9,kg/TJ,1249.780896,Gas Oil combustion consumption by freight transport,AR-C,SESCO,annual,kg,020963f4-ffcd-37ca-a31a-3890f241ddf9 +2021,Catamarca,II.1.1,9.10224,TJ,CO2,74100.0,kg/TJ,674475.984,Gas Oil combustion consumption by freight transport,AR-K,SESCO,annual,kg,15f56ae1-582e-350d-acf2-039547b9724f +2021,Catamarca,II.1.1,9.10224,TJ,CH4,3.9,kg/TJ,35.498736,Gas Oil combustion consumption by freight transport,AR-K,SESCO,annual,kg,517ecd64-b352-33ae-a971-809d899fc129 +2021,Catamarca,II.1.1,9.10224,TJ,N2O,3.9,kg/TJ,35.498736,Gas Oil combustion consumption by freight transport,AR-K,SESCO,annual,kg,517ecd64-b352-33ae-a971-809d899fc129 +2021,Chaco,II.1.1,23.73084,TJ,CO2,74100.0,kg/TJ,1758455.244,Gas Oil combustion consumption by freight transport,AR-H,SESCO,annual,kg,13a1fd99-6ea2-3332-b73d-e21136dcdd7a +2021,Chaco,II.1.1,23.73084,TJ,CH4,3.9,kg/TJ,92.550276,Gas Oil combustion consumption by freight transport,AR-H,SESCO,annual,kg,d89ca209-8648-3905-8383-edce2fcdd175 +2021,Chaco,II.1.1,23.73084,TJ,N2O,3.9,kg/TJ,92.550276,Gas Oil combustion consumption by freight transport,AR-H,SESCO,annual,kg,d89ca209-8648-3905-8383-edce2fcdd175 +2021,Chubut,II.1.1,53.096399999999996,TJ,CO2,74100.0,kg/TJ,3934443.2399999998,Gas Oil combustion consumption by freight transport,AR-U,SESCO,annual,kg,46031eeb-54f2-3394-a5b5-9b1428d4762b +2021,Chubut,II.1.1,53.096399999999996,TJ,CH4,3.9,kg/TJ,207.07595999999998,Gas Oil combustion consumption by freight transport,AR-U,SESCO,annual,kg,f9f17796-0684-3bdb-9411-5e61b06ee1c0 +2021,Chubut,II.1.1,53.096399999999996,TJ,N2O,3.9,kg/TJ,207.07595999999998,Gas Oil combustion consumption by freight transport,AR-U,SESCO,annual,kg,f9f17796-0684-3bdb-9411-5e61b06ee1c0 +2021,Corrientes,II.1.1,63.46284,TJ,CO2,74100.0,kg/TJ,4702596.444,Gas Oil combustion consumption by freight transport,AR-W,SESCO,annual,kg,3728cd35-2577-3a2f-8b9d-4fe9ef4f4d0d +2021,Corrientes,II.1.1,63.46284,TJ,CH4,3.9,kg/TJ,247.505076,Gas Oil combustion consumption by freight transport,AR-W,SESCO,annual,kg,df780de8-27e0-3fb2-91b1-25b1764f49c9 +2021,Corrientes,II.1.1,63.46284,TJ,N2O,3.9,kg/TJ,247.505076,Gas Oil combustion consumption by freight transport,AR-W,SESCO,annual,kg,df780de8-27e0-3fb2-91b1-25b1764f49c9 +2021,Córdoba,II.1.1,184.97052,TJ,CO2,74100.0,kg/TJ,13706315.532,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,06155b3f-c823-3372-8357-4483ed314d04 +2021,Córdoba,II.1.1,184.97052,TJ,CH4,3.9,kg/TJ,721.3850279999999,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,061413ad-ae74-3f29-addf-6a6c17dad3eb +2021,Córdoba,II.1.1,184.97052,TJ,N2O,3.9,kg/TJ,721.3850279999999,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,061413ad-ae74-3f29-addf-6a6c17dad3eb +2021,Entre Rios,II.1.1,106.15668,TJ,CO2,74100.0,kg/TJ,7866209.988,Gas Oil combustion consumption by freight transport,AR-E,SESCO,annual,kg,81eded8d-4d5c-3e8e-a419-fadd0086eab2 +2021,Entre Rios,II.1.1,106.15668,TJ,CH4,3.9,kg/TJ,414.01105199999995,Gas Oil combustion consumption by freight transport,AR-E,SESCO,annual,kg,ef24c252-cbee-353b-b8d0-83d40cad1ac1 +2021,Entre Rios,II.1.1,106.15668,TJ,N2O,3.9,kg/TJ,414.01105199999995,Gas Oil combustion consumption by freight transport,AR-E,SESCO,annual,kg,ef24c252-cbee-353b-b8d0-83d40cad1ac1 +2021,Formosa,II.1.1,10.6554,TJ,CO2,74100.0,kg/TJ,789565.14,Gas Oil combustion consumption by freight transport,AR-P,SESCO,annual,kg,199724b1-129e-369a-878b-c7ba4c621768 +2021,Formosa,II.1.1,10.6554,TJ,CH4,3.9,kg/TJ,41.55606,Gas Oil combustion consumption by freight transport,AR-P,SESCO,annual,kg,8701830f-4aa2-36a8-a9a8-fdfc2ecbd1af +2021,Formosa,II.1.1,10.6554,TJ,N2O,3.9,kg/TJ,41.55606,Gas Oil combustion consumption by freight transport,AR-P,SESCO,annual,kg,8701830f-4aa2-36a8-a9a8-fdfc2ecbd1af +2021,Jujuy,II.1.1,7.7658,TJ,CO2,74100.0,kg/TJ,575445.78,Gas Oil combustion consumption by freight transport,AR-Y,SESCO,annual,kg,cd901963-94b0-395b-a67d-44f41aca9a32 +2021,Jujuy,II.1.1,7.7658,TJ,CH4,3.9,kg/TJ,30.28662,Gas Oil combustion consumption by freight transport,AR-Y,SESCO,annual,kg,01ac5490-6559-365c-880b-79207a82540f +2021,Jujuy,II.1.1,7.7658,TJ,N2O,3.9,kg/TJ,30.28662,Gas Oil combustion consumption by freight transport,AR-Y,SESCO,annual,kg,01ac5490-6559-365c-880b-79207a82540f +2021,La Pampa,II.1.1,25.825799999999997,TJ,CO2,74100.0,kg/TJ,1913691.7799999998,Gas Oil combustion consumption by freight transport,AR-L,SESCO,annual,kg,8d0d0e37-bb3c-3af7-a2f9-47392f23827a +2021,La Pampa,II.1.1,25.825799999999997,TJ,CH4,3.9,kg/TJ,100.72061999999998,Gas Oil combustion consumption by freight transport,AR-L,SESCO,annual,kg,4d54c39a-fc5f-3762-8c26-bdc35b0a6c77 +2021,La Pampa,II.1.1,25.825799999999997,TJ,N2O,3.9,kg/TJ,100.72061999999998,Gas Oil combustion consumption by freight transport,AR-L,SESCO,annual,kg,4d54c39a-fc5f-3762-8c26-bdc35b0a6c77 +2021,La Rioja,II.1.1,3.28692,TJ,CO2,74100.0,kg/TJ,243560.772,Gas Oil combustion consumption by freight transport,AR-F,SESCO,annual,kg,b68b5340-4082-3305-9537-42be7a1ed33e +2021,La Rioja,II.1.1,3.28692,TJ,CH4,3.9,kg/TJ,12.818988,Gas Oil combustion consumption by freight transport,AR-F,SESCO,annual,kg,545ac012-46dd-339f-8b2f-743feaa33a67 +2021,La Rioja,II.1.1,3.28692,TJ,N2O,3.9,kg/TJ,12.818988,Gas Oil combustion consumption by freight transport,AR-F,SESCO,annual,kg,545ac012-46dd-339f-8b2f-743feaa33a67 +2021,Mendoza,II.1.1,46.558679999999995,TJ,CO2,74100.0,kg/TJ,3449998.1879999996,Gas Oil combustion consumption by freight transport,AR-M,SESCO,annual,kg,6d5f8481-f488-3840-b9c0-ecfe6f3cecdb +2021,Mendoza,II.1.1,46.558679999999995,TJ,CH4,3.9,kg/TJ,181.57885199999998,Gas Oil combustion consumption by freight transport,AR-M,SESCO,annual,kg,9e8e49c8-3a05-30e8-af4b-157c8ea6c21a +2021,Mendoza,II.1.1,46.558679999999995,TJ,N2O,3.9,kg/TJ,181.57885199999998,Gas Oil combustion consumption by freight transport,AR-M,SESCO,annual,kg,9e8e49c8-3a05-30e8-af4b-157c8ea6c21a +2021,Misiones,II.1.1,102.4002,TJ,CO2,74100.0,kg/TJ,7587854.82,Gas Oil combustion consumption by freight transport,AR-N,SESCO,annual,kg,3e6793e5-3b63-39e9-9f5a-03c6489797d4 +2021,Misiones,II.1.1,102.4002,TJ,CH4,3.9,kg/TJ,399.36078,Gas Oil combustion consumption by freight transport,AR-N,SESCO,annual,kg,d68925b4-68d1-334b-8524-ecca45a5261a +2021,Misiones,II.1.1,102.4002,TJ,N2O,3.9,kg/TJ,399.36078,Gas Oil combustion consumption by freight transport,AR-N,SESCO,annual,kg,d68925b4-68d1-334b-8524-ecca45a5261a +2021,Neuquén,II.1.1,3.17856,TJ,CO2,74100.0,kg/TJ,235531.296,Gas Oil combustion consumption by freight transport,AR-Q,SESCO,annual,kg,374c5c0b-63ab-3c52-acd8-b1639f69a650 +2021,Neuquén,II.1.1,3.17856,TJ,CH4,3.9,kg/TJ,12.396384,Gas Oil combustion consumption by freight transport,AR-Q,SESCO,annual,kg,a5fcfe8b-3614-36fa-a714-4441399a2603 +2021,Neuquén,II.1.1,3.17856,TJ,N2O,3.9,kg/TJ,12.396384,Gas Oil combustion consumption by freight transport,AR-Q,SESCO,annual,kg,a5fcfe8b-3614-36fa-a714-4441399a2603 +2021,Rio Negro,II.1.1,111.17736,TJ,CO2,74100.0,kg/TJ,8238242.375999999,Gas Oil combustion consumption by freight transport,AR-R,SESCO,annual,kg,1e2d7d49-e7ac-3b94-b1e8-c8039fcb5b12 +2021,Rio Negro,II.1.1,111.17736,TJ,CH4,3.9,kg/TJ,433.59170399999994,Gas Oil combustion consumption by freight transport,AR-R,SESCO,annual,kg,fd07f225-e2d9-3a8e-8862-98b6cea21903 +2021,Rio Negro,II.1.1,111.17736,TJ,N2O,3.9,kg/TJ,433.59170399999994,Gas Oil combustion consumption by freight transport,AR-R,SESCO,annual,kg,fd07f225-e2d9-3a8e-8862-98b6cea21903 +2021,Salta,II.1.1,5.20128,TJ,CO2,74100.0,kg/TJ,385414.848,Gas Oil combustion consumption by freight transport,AR-A,SESCO,annual,kg,d7825e1b-d587-3894-a49f-50954c914175 +2021,Salta,II.1.1,5.20128,TJ,CH4,3.9,kg/TJ,20.284992,Gas Oil combustion consumption by freight transport,AR-A,SESCO,annual,kg,de2dab8d-7c8e-3f14-ae39-ce804d7664e4 +2021,Salta,II.1.1,5.20128,TJ,N2O,3.9,kg/TJ,20.284992,Gas Oil combustion consumption by freight transport,AR-A,SESCO,annual,kg,de2dab8d-7c8e-3f14-ae39-ce804d7664e4 +2021,San Juan,II.1.1,7.00728,TJ,CO2,74100.0,kg/TJ,519239.448,Gas Oil combustion consumption by freight transport,AR-J,SESCO,annual,kg,3e0f075c-6159-306f-a57f-c25f6196a204 +2021,San Juan,II.1.1,7.00728,TJ,CH4,3.9,kg/TJ,27.328391999999997,Gas Oil combustion consumption by freight transport,AR-J,SESCO,annual,kg,0cfc92b3-e995-339a-8340-20a4d585c4ee +2021,San Juan,II.1.1,7.00728,TJ,N2O,3.9,kg/TJ,27.328391999999997,Gas Oil combustion consumption by freight transport,AR-J,SESCO,annual,kg,0cfc92b3-e995-339a-8340-20a4d585c4ee +2021,San Luis,II.1.1,54.21612,TJ,CO2,74100.0,kg/TJ,4017414.4919999996,Gas Oil combustion consumption by freight transport,AR-D,SESCO,annual,kg,e0ec412a-841b-3016-969f-0621a14a1bef +2021,San Luis,II.1.1,54.21612,TJ,CH4,3.9,kg/TJ,211.44286799999998,Gas Oil combustion consumption by freight transport,AR-D,SESCO,annual,kg,922afda3-99b1-3fbc-adac-2108960bb111 +2021,San Luis,II.1.1,54.21612,TJ,N2O,3.9,kg/TJ,211.44286799999998,Gas Oil combustion consumption by freight transport,AR-D,SESCO,annual,kg,922afda3-99b1-3fbc-adac-2108960bb111 +2021,Santa Cruz,II.1.1,22.033199999999997,TJ,CO2,74100.0,kg/TJ,1632660.1199999999,Gas Oil combustion consumption by freight transport,AR-Z,SESCO,annual,kg,d568d8ec-8f68-394e-924e-f40edd761015 +2021,Santa Cruz,II.1.1,22.033199999999997,TJ,CH4,3.9,kg/TJ,85.92947999999998,Gas Oil combustion consumption by freight transport,AR-Z,SESCO,annual,kg,6a259a7a-f2b8-372e-8642-b14bffab2244 +2021,Santa Cruz,II.1.1,22.033199999999997,TJ,N2O,3.9,kg/TJ,85.92947999999998,Gas Oil combustion consumption by freight transport,AR-Z,SESCO,annual,kg,6a259a7a-f2b8-372e-8642-b14bffab2244 +2021,Santa Fe,II.1.1,406.49448,TJ,CO2,74100.0,kg/TJ,30121240.968000002,Gas Oil combustion consumption by freight transport,AR-S,SESCO,annual,kg,e79dacc6-1410-30e5-916b-aafc666c165f +2021,Santa Fe,II.1.1,406.49448,TJ,CH4,3.9,kg/TJ,1585.328472,Gas Oil combustion consumption by freight transport,AR-S,SESCO,annual,kg,4bda5d89-f9e0-3de9-856d-1808a9676af2 +2021,Santa Fe,II.1.1,406.49448,TJ,N2O,3.9,kg/TJ,1585.328472,Gas Oil combustion consumption by freight transport,AR-S,SESCO,annual,kg,4bda5d89-f9e0-3de9-856d-1808a9676af2 +2021,Santiago del Estero,II.1.1,87.01308,TJ,CO2,74100.0,kg/TJ,6447669.228,Gas Oil combustion consumption by freight transport,AR-G,SESCO,annual,kg,a572d272-7275-3058-b45c-ec9b6f154753 +2021,Santiago del Estero,II.1.1,87.01308,TJ,CH4,3.9,kg/TJ,339.351012,Gas Oil combustion consumption by freight transport,AR-G,SESCO,annual,kg,d5f65551-9c95-31d0-a1d8-8a0c90f8ea03 +2021,Santiago del Estero,II.1.1,87.01308,TJ,N2O,3.9,kg/TJ,339.351012,Gas Oil combustion consumption by freight transport,AR-G,SESCO,annual,kg,d5f65551-9c95-31d0-a1d8-8a0c90f8ea03 +2021,Tierra del Fuego,II.1.1,4.659479999999999,TJ,CO2,74100.0,kg/TJ,345267.46799999994,Gas Oil combustion consumption by freight transport,AR-V,SESCO,annual,kg,1642e008-91da-30b2-ba23-f96bb3867104 +2021,Tierra del Fuego,II.1.1,4.659479999999999,TJ,CH4,3.9,kg/TJ,18.171971999999997,Gas Oil combustion consumption by freight transport,AR-V,SESCO,annual,kg,a4bd8dca-d390-347e-98dc-46aea6a2ae12 +2021,Tierra del Fuego,II.1.1,4.659479999999999,TJ,N2O,3.9,kg/TJ,18.171971999999997,Gas Oil combustion consumption by freight transport,AR-V,SESCO,annual,kg,a4bd8dca-d390-347e-98dc-46aea6a2ae12 +2021,Tucuman,II.1.1,59.85084,TJ,CO2,74100.0,kg/TJ,4434947.244,Gas Oil combustion consumption by freight transport,AR-T,SESCO,annual,kg,0c25fc53-9d1a-3ffa-984d-06a58e1f8ddd +2021,Tucuman,II.1.1,59.85084,TJ,CH4,3.9,kg/TJ,233.418276,Gas Oil combustion consumption by freight transport,AR-T,SESCO,annual,kg,e65caaa0-78f1-31bb-8efd-bfcac8d1b8a8 +2021,Tucuman,II.1.1,59.85084,TJ,N2O,3.9,kg/TJ,233.418276,Gas Oil combustion consumption by freight transport,AR-T,SESCO,annual,kg,e65caaa0-78f1-31bb-8efd-bfcac8d1b8a8 +2021,Buenos Aires,II.1.1,118.36524,TJ,CO2,74100.0,kg/TJ,8770864.284,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,b6977628-f9c4-32ec-b689-5e497b6ce537 +2021,Buenos Aires,II.1.1,118.36524,TJ,CH4,3.9,kg/TJ,461.624436,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,8f5d2284-e28c-3b65-ae8c-9c3a824e2940 +2021,Buenos Aires,II.1.1,118.36524,TJ,N2O,3.9,kg/TJ,461.624436,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,8f5d2284-e28c-3b65-ae8c-9c3a824e2940 +2021,Capital Federal,II.1.1,23.18904,TJ,CO2,74100.0,kg/TJ,1718307.8639999998,Gas Oil combustion consumption by freight transport,AR-C,SESCO,annual,kg,a0e557cb-9b38-39d3-bce0-92119e938ef4 +2021,Capital Federal,II.1.1,23.18904,TJ,CH4,3.9,kg/TJ,90.43725599999999,Gas Oil combustion consumption by freight transport,AR-C,SESCO,annual,kg,6122e40e-6082-30a5-a7ac-11b473246e0e +2021,Capital Federal,II.1.1,23.18904,TJ,N2O,3.9,kg/TJ,90.43725599999999,Gas Oil combustion consumption by freight transport,AR-C,SESCO,annual,kg,6122e40e-6082-30a5-a7ac-11b473246e0e +2021,Catamarca,II.1.1,0.39732,TJ,CO2,74100.0,kg/TJ,29441.412,Gas Oil combustion consumption by freight transport,AR-K,SESCO,annual,kg,85a645da-c038-35a6-a5fd-0ac40b2ec5f6 +2021,Catamarca,II.1.1,0.39732,TJ,CH4,3.9,kg/TJ,1.549548,Gas Oil combustion consumption by freight transport,AR-K,SESCO,annual,kg,476f10f9-2789-32e6-bbd6-1a673558b1f6 +2021,Catamarca,II.1.1,0.39732,TJ,N2O,3.9,kg/TJ,1.549548,Gas Oil combustion consumption by freight transport,AR-K,SESCO,annual,kg,476f10f9-2789-32e6-bbd6-1a673558b1f6 +2021,Chaco,II.1.1,3.64812,TJ,CO2,74100.0,kg/TJ,270325.692,Gas Oil combustion consumption by freight transport,AR-H,SESCO,annual,kg,2e62f7dd-9a5b-3bfe-a716-917ee4814950 +2021,Chaco,II.1.1,3.64812,TJ,CH4,3.9,kg/TJ,14.227668,Gas Oil combustion consumption by freight transport,AR-H,SESCO,annual,kg,e41c5d58-702e-34b0-a689-7d8fbe158ba9 +2021,Chaco,II.1.1,3.64812,TJ,N2O,3.9,kg/TJ,14.227668,Gas Oil combustion consumption by freight transport,AR-H,SESCO,annual,kg,e41c5d58-702e-34b0-a689-7d8fbe158ba9 +2021,Chubut,II.1.1,8.993879999999999,TJ,CO2,74100.0,kg/TJ,666446.5079999999,Gas Oil combustion consumption by freight transport,AR-U,SESCO,annual,kg,126aa26c-a4ad-335e-ac57-74323834a81e +2021,Chubut,II.1.1,8.993879999999999,TJ,CH4,3.9,kg/TJ,35.076131999999994,Gas Oil combustion consumption by freight transport,AR-U,SESCO,annual,kg,7e64a6a2-b7f7-349f-ba93-b09ac893117d +2021,Chubut,II.1.1,8.993879999999999,TJ,N2O,3.9,kg/TJ,35.076131999999994,Gas Oil combustion consumption by freight transport,AR-U,SESCO,annual,kg,7e64a6a2-b7f7-349f-ba93-b09ac893117d +2021,Corrientes,II.1.1,17.77104,TJ,CO2,74100.0,kg/TJ,1316834.064,Gas Oil combustion consumption by freight transport,AR-W,SESCO,annual,kg,0e85c3a1-2b01-3082-973b-e99f26225018 +2021,Corrientes,II.1.1,17.77104,TJ,CH4,3.9,kg/TJ,69.30705599999999,Gas Oil combustion consumption by freight transport,AR-W,SESCO,annual,kg,a12b0023-41c1-302b-b8e2-5b09c7684f91 +2021,Corrientes,II.1.1,17.77104,TJ,N2O,3.9,kg/TJ,69.30705599999999,Gas Oil combustion consumption by freight transport,AR-W,SESCO,annual,kg,a12b0023-41c1-302b-b8e2-5b09c7684f91 +2021,Córdoba,II.1.1,12.53364,TJ,CO2,74100.0,kg/TJ,928742.724,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,0790802a-ab5d-3aff-a109-31e441ec2e5a +2021,Córdoba,II.1.1,12.53364,TJ,CH4,3.9,kg/TJ,48.881196,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,8c9d7ca9-7845-3429-adb4-ff78f13834e4 +2021,Córdoba,II.1.1,12.53364,TJ,N2O,3.9,kg/TJ,48.881196,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,8c9d7ca9-7845-3429-adb4-ff78f13834e4 +2021,Entre Rios,II.1.1,10.14972,TJ,CO2,74100.0,kg/TJ,752094.252,Gas Oil combustion consumption by freight transport,AR-E,SESCO,annual,kg,b228d64b-30cd-3d4e-9717-f5c62d654fed +2021,Entre Rios,II.1.1,10.14972,TJ,CH4,3.9,kg/TJ,39.583908,Gas Oil combustion consumption by freight transport,AR-E,SESCO,annual,kg,fb0f93b0-51f6-38eb-a02d-f6726519d7fe +2021,Entre Rios,II.1.1,10.14972,TJ,N2O,3.9,kg/TJ,39.583908,Gas Oil combustion consumption by freight transport,AR-E,SESCO,annual,kg,fb0f93b0-51f6-38eb-a02d-f6726519d7fe +2021,Formosa,II.1.1,2.6367599999999998,TJ,CO2,74100.0,kg/TJ,195383.916,Gas Oil combustion consumption by freight transport,AR-P,SESCO,annual,kg,2381488a-5231-3b02-baa5-49dae9541b34 +2021,Formosa,II.1.1,2.6367599999999998,TJ,CH4,3.9,kg/TJ,10.283363999999999,Gas Oil combustion consumption by freight transport,AR-P,SESCO,annual,kg,10a0b47c-6e8d-37e5-bc1b-d6a8a0ad8988 +2021,Formosa,II.1.1,2.6367599999999998,TJ,N2O,3.9,kg/TJ,10.283363999999999,Gas Oil combustion consumption by freight transport,AR-P,SESCO,annual,kg,10a0b47c-6e8d-37e5-bc1b-d6a8a0ad8988 +2021,Jujuy,II.1.1,2.23944,TJ,CO2,74100.0,kg/TJ,165942.50400000002,Gas Oil combustion consumption by freight transport,AR-Y,SESCO,annual,kg,700975ce-d717-3f81-9056-920f8c4fd565 +2021,Jujuy,II.1.1,2.23944,TJ,CH4,3.9,kg/TJ,8.733816000000001,Gas Oil combustion consumption by freight transport,AR-Y,SESCO,annual,kg,f616c99f-a5ae-3ec8-85fa-411994b7a43e +2021,Jujuy,II.1.1,2.23944,TJ,N2O,3.9,kg/TJ,8.733816000000001,Gas Oil combustion consumption by freight transport,AR-Y,SESCO,annual,kg,f616c99f-a5ae-3ec8-85fa-411994b7a43e +2021,La Pampa,II.1.1,1.48092,TJ,CO2,74100.0,kg/TJ,109736.172,Gas Oil combustion consumption by freight transport,AR-L,SESCO,annual,kg,de3dc1f3-0c65-3fa4-b192-da0daf9a68b3 +2021,La Pampa,II.1.1,1.48092,TJ,CH4,3.9,kg/TJ,5.775588,Gas Oil combustion consumption by freight transport,AR-L,SESCO,annual,kg,15f148aa-11ce-34ba-896c-642f48dfd274 +2021,La Pampa,II.1.1,1.48092,TJ,N2O,3.9,kg/TJ,5.775588,Gas Oil combustion consumption by freight transport,AR-L,SESCO,annual,kg,15f148aa-11ce-34ba-896c-642f48dfd274 +2021,La Rioja,II.1.1,0.25284,TJ,CO2,74100.0,kg/TJ,18735.444,Gas Oil combustion consumption by freight transport,AR-F,SESCO,annual,kg,49db72b4-e7a3-3d71-add8-5fa07912b723 +2021,La Rioja,II.1.1,0.25284,TJ,CH4,3.9,kg/TJ,0.9860760000000001,Gas Oil combustion consumption by freight transport,AR-F,SESCO,annual,kg,6abff1db-b6ac-3845-aef3-4514f1a3fdaf +2021,La Rioja,II.1.1,0.25284,TJ,N2O,3.9,kg/TJ,0.9860760000000001,Gas Oil combustion consumption by freight transport,AR-F,SESCO,annual,kg,6abff1db-b6ac-3845-aef3-4514f1a3fdaf +2021,Mendoza,II.1.1,9.78852,TJ,CO2,74100.0,kg/TJ,725329.332,Gas Oil combustion consumption by freight transport,AR-M,SESCO,annual,kg,c780afc5-1c5b-3300-878f-248c830393d8 +2021,Mendoza,II.1.1,9.78852,TJ,CH4,3.9,kg/TJ,38.175228,Gas Oil combustion consumption by freight transport,AR-M,SESCO,annual,kg,6b79507b-a7c3-300f-9863-e26e6aeea6b8 +2021,Mendoza,II.1.1,9.78852,TJ,N2O,3.9,kg/TJ,38.175228,Gas Oil combustion consumption by freight transport,AR-M,SESCO,annual,kg,6b79507b-a7c3-300f-9863-e26e6aeea6b8 +2021,Misiones,II.1.1,1.30032,TJ,CO2,74100.0,kg/TJ,96353.712,Gas Oil combustion consumption by freight transport,AR-N,SESCO,annual,kg,d2695a60-f5b2-31b9-9061-a352b1c3941b +2021,Misiones,II.1.1,1.30032,TJ,CH4,3.9,kg/TJ,5.071248,Gas Oil combustion consumption by freight transport,AR-N,SESCO,annual,kg,f7dba43f-d130-3573-b2e3-c4ad187aa377 +2021,Misiones,II.1.1,1.30032,TJ,N2O,3.9,kg/TJ,5.071248,Gas Oil combustion consumption by freight transport,AR-N,SESCO,annual,kg,f7dba43f-d130-3573-b2e3-c4ad187aa377 +2021,Neuquén,II.1.1,0.86688,TJ,CO2,74100.0,kg/TJ,64235.808,Gas Oil combustion consumption by freight transport,AR-Q,SESCO,annual,kg,42bc86c0-3e60-38cf-9617-d938044bbad4 +2021,Neuquén,II.1.1,0.86688,TJ,CH4,3.9,kg/TJ,3.380832,Gas Oil combustion consumption by freight transport,AR-Q,SESCO,annual,kg,0a85f544-5eb4-33da-83e1-c902397dc29e +2021,Neuquén,II.1.1,0.86688,TJ,N2O,3.9,kg/TJ,3.380832,Gas Oil combustion consumption by freight transport,AR-Q,SESCO,annual,kg,0a85f544-5eb4-33da-83e1-c902397dc29e +2021,Rio Negro,II.1.1,9.499559999999999,TJ,CO2,74100.0,kg/TJ,703917.396,Gas Oil combustion consumption by freight transport,AR-R,SESCO,annual,kg,727b6c04-6ba6-3ef5-903e-958c4b751a18 +2021,Rio Negro,II.1.1,9.499559999999999,TJ,CH4,3.9,kg/TJ,37.048283999999995,Gas Oil combustion consumption by freight transport,AR-R,SESCO,annual,kg,46334480-9a12-3f64-8c74-5c5edd887f0f +2021,Rio Negro,II.1.1,9.499559999999999,TJ,N2O,3.9,kg/TJ,37.048283999999995,Gas Oil combustion consumption by freight transport,AR-R,SESCO,annual,kg,46334480-9a12-3f64-8c74-5c5edd887f0f +2021,Salta,II.1.1,1.3364399999999999,TJ,CO2,74100.0,kg/TJ,99030.20399999998,Gas Oil combustion consumption by freight transport,AR-A,SESCO,annual,kg,b136273f-08ed-307b-9c9f-5695139c120b +2021,Salta,II.1.1,1.3364399999999999,TJ,CH4,3.9,kg/TJ,5.212115999999999,Gas Oil combustion consumption by freight transport,AR-A,SESCO,annual,kg,252b6692-1f9a-3603-a660-a43b5e8d6533 +2021,Salta,II.1.1,1.3364399999999999,TJ,N2O,3.9,kg/TJ,5.212115999999999,Gas Oil combustion consumption by freight transport,AR-A,SESCO,annual,kg,252b6692-1f9a-3603-a660-a43b5e8d6533 +2021,San Juan,II.1.1,0.07224,TJ,CO2,74100.0,kg/TJ,5352.9839999999995,Gas Oil combustion consumption by freight transport,AR-J,SESCO,annual,kg,a36341f0-2deb-3be0-be3c-127b591e8f2e +2021,San Juan,II.1.1,0.07224,TJ,CH4,3.9,kg/TJ,0.281736,Gas Oil combustion consumption by freight transport,AR-J,SESCO,annual,kg,f0c602d8-00e1-34de-9792-455335f749d0 +2021,San Juan,II.1.1,0.07224,TJ,N2O,3.9,kg/TJ,0.281736,Gas Oil combustion consumption by freight transport,AR-J,SESCO,annual,kg,f0c602d8-00e1-34de-9792-455335f749d0 +2021,San Luis,II.1.1,3.6119999999999997,TJ,CO2,74100.0,kg/TJ,267649.19999999995,Gas Oil combustion consumption by freight transport,AR-D,SESCO,annual,kg,d9a81be0-00ec-3f36-8f92-1db920c8d259 +2021,San Luis,II.1.1,3.6119999999999997,TJ,CH4,3.9,kg/TJ,14.086799999999998,Gas Oil combustion consumption by freight transport,AR-D,SESCO,annual,kg,8a457f7e-08e3-3354-8546-18c03b2249de +2021,San Luis,II.1.1,3.6119999999999997,TJ,N2O,3.9,kg/TJ,14.086799999999998,Gas Oil combustion consumption by freight transport,AR-D,SESCO,annual,kg,8a457f7e-08e3-3354-8546-18c03b2249de +2021,Santa Cruz,II.1.1,2.60064,TJ,CO2,74100.0,kg/TJ,192707.424,Gas Oil combustion consumption by freight transport,AR-Z,SESCO,annual,kg,1cbb3439-ec07-3e49-ad66-48961cb7f975 +2021,Santa Cruz,II.1.1,2.60064,TJ,CH4,3.9,kg/TJ,10.142496,Gas Oil combustion consumption by freight transport,AR-Z,SESCO,annual,kg,b69bcf9b-af15-32f2-84a5-4b0a0f1b4e05 +2021,Santa Cruz,II.1.1,2.60064,TJ,N2O,3.9,kg/TJ,10.142496,Gas Oil combustion consumption by freight transport,AR-Z,SESCO,annual,kg,b69bcf9b-af15-32f2-84a5-4b0a0f1b4e05 +2021,Santa Fe,II.1.1,25.42848,TJ,CO2,74100.0,kg/TJ,1884250.368,Gas Oil combustion consumption by freight transport,AR-S,SESCO,annual,kg,ba96ed6d-e178-3e71-aaec-43acd23151be +2021,Santa Fe,II.1.1,25.42848,TJ,CH4,3.9,kg/TJ,99.171072,Gas Oil combustion consumption by freight transport,AR-S,SESCO,annual,kg,41b8a768-fabe-34e2-b206-94ab4ba0ce0b +2021,Santa Fe,II.1.1,25.42848,TJ,N2O,3.9,kg/TJ,99.171072,Gas Oil combustion consumption by freight transport,AR-S,SESCO,annual,kg,41b8a768-fabe-34e2-b206-94ab4ba0ce0b +2021,Santiago del Estero,II.1.1,2.56452,TJ,CO2,74100.0,kg/TJ,190030.932,Gas Oil combustion consumption by freight transport,AR-G,SESCO,annual,kg,a63b7ca7-32c0-3333-83bc-ca30857698a8 +2021,Santiago del Estero,II.1.1,2.56452,TJ,CH4,3.9,kg/TJ,10.001628,Gas Oil combustion consumption by freight transport,AR-G,SESCO,annual,kg,bb0c6b8e-4ad9-3e10-93ed-8a5a8f89fd93 +2021,Santiago del Estero,II.1.1,2.56452,TJ,N2O,3.9,kg/TJ,10.001628,Gas Oil combustion consumption by freight transport,AR-G,SESCO,annual,kg,bb0c6b8e-4ad9-3e10-93ed-8a5a8f89fd93 +2021,Tierra del Fuego,II.1.1,0.07224,TJ,CO2,74100.0,kg/TJ,5352.9839999999995,Gas Oil combustion consumption by freight transport,AR-V,SESCO,annual,kg,9538ea72-cb1a-31e8-a3c1-d6e09531b470 +2021,Tierra del Fuego,II.1.1,0.07224,TJ,CH4,3.9,kg/TJ,0.281736,Gas Oil combustion consumption by freight transport,AR-V,SESCO,annual,kg,bac7c95d-2ce8-3ad1-87f4-8e0804123eab +2021,Tierra del Fuego,II.1.1,0.07224,TJ,N2O,3.9,kg/TJ,0.281736,Gas Oil combustion consumption by freight transport,AR-V,SESCO,annual,kg,bac7c95d-2ce8-3ad1-87f4-8e0804123eab +2021,Tucuman,II.1.1,5.345759999999999,TJ,CO2,74100.0,kg/TJ,396120.81599999993,Gas Oil combustion consumption by freight transport,AR-T,SESCO,annual,kg,44f46aa0-c60c-397b-b60f-e5d9911469eb +2021,Tucuman,II.1.1,5.345759999999999,TJ,CH4,3.9,kg/TJ,20.848463999999996,Gas Oil combustion consumption by freight transport,AR-T,SESCO,annual,kg,1de5e664-ac68-3000-a410-4cc87b445794 +2021,Tucuman,II.1.1,5.345759999999999,TJ,N2O,3.9,kg/TJ,20.848463999999996,Gas Oil combustion consumption by freight transport,AR-T,SESCO,annual,kg,1de5e664-ac68-3000-a410-4cc87b445794 +2021,Buenos Aires,II.1.1,12.643785,TJ,CO2,73300.0,kg/TJ,926789.4404999999,Naphtha combustion consumption by freight transport,AR-B,SESCO,annual,kg,6bc44e98-9ba7-382f-8258-916a583acb83 +2021,Buenos Aires,II.1.1,12.643785,TJ,CH4,0.5,kg/TJ,6.3218925,Naphtha combustion consumption by freight transport,AR-B,SESCO,annual,kg,ddaaa1fe-7431-3e1e-a54d-e54d305710dd +2021,Buenos Aires,II.1.1,12.643785,TJ,N2O,2.0,kg/TJ,25.28757,Naphtha combustion consumption by freight transport,AR-B,SESCO,annual,kg,4b57258c-5cf9-3e69-af35-60a59b701e4f +2021,Capital Federal,II.1.1,4.283125,TJ,CO2,73300.0,kg/TJ,313953.0625,Naphtha combustion consumption by freight transport,AR-C,SESCO,annual,kg,1aab076a-589a-3e74-91d9-4dc4c563ccbf +2021,Capital Federal,II.1.1,4.283125,TJ,CH4,0.5,kg/TJ,2.1415625,Naphtha combustion consumption by freight transport,AR-C,SESCO,annual,kg,40facf95-2bac-373a-be77-c332a74b2dcc +2021,Capital Federal,II.1.1,4.283125,TJ,N2O,2.0,kg/TJ,8.56625,Naphtha combustion consumption by freight transport,AR-C,SESCO,annual,kg,24c3dd1c-e89e-3514-94e3-01876ec1f0d4 +2021,Córdoba,II.1.1,1.1992749999999999,TJ,CO2,73300.0,kg/TJ,87906.85749999998,Naphtha combustion consumption by freight transport,AR-X,SESCO,annual,kg,ff162d71-9f39-3995-b6dd-6779ceb297e0 +2021,Córdoba,II.1.1,1.1992749999999999,TJ,CH4,0.5,kg/TJ,0.5996374999999999,Naphtha combustion consumption by freight transport,AR-X,SESCO,annual,kg,e7b10047-0e0b-31fa-9f14-2147de8c797a +2021,Córdoba,II.1.1,1.1992749999999999,TJ,N2O,2.0,kg/TJ,2.3985499999999997,Naphtha combustion consumption by freight transport,AR-X,SESCO,annual,kg,b074aae3-9dc6-36da-afa8-237ef33f0174 +2021,Entre Rios,II.1.1,0.54824,TJ,CO2,73300.0,kg/TJ,40185.992,Naphtha combustion consumption by freight transport,AR-E,SESCO,annual,kg,c0739aea-8f36-3efb-b024-55bb23c44ec5 +2021,Entre Rios,II.1.1,0.54824,TJ,CH4,0.5,kg/TJ,0.27412,Naphtha combustion consumption by freight transport,AR-E,SESCO,annual,kg,41e57c32-5543-3049-847a-9ee183c0e391 +2021,Entre Rios,II.1.1,0.54824,TJ,N2O,2.0,kg/TJ,1.09648,Naphtha combustion consumption by freight transport,AR-E,SESCO,annual,kg,82c08b6f-c044-3221-8d44-f50ce7ad562a +2021,Mendoza,II.1.1,0.102795,TJ,CO2,73300.0,kg/TJ,7534.8735,Naphtha combustion consumption by freight transport,AR-M,SESCO,annual,kg,1d1e2fa3-730b-38eb-a03f-b02fec245fc8 +2021,Mendoza,II.1.1,0.102795,TJ,CH4,0.5,kg/TJ,0.0513975,Naphtha combustion consumption by freight transport,AR-M,SESCO,annual,kg,42930f81-5468-39c8-8d74-9b86b7ae9476 +2021,Mendoza,II.1.1,0.102795,TJ,N2O,2.0,kg/TJ,0.20559,Naphtha combustion consumption by freight transport,AR-M,SESCO,annual,kg,b69636d5-c4ba-3aca-81d9-438a7f179024 +2021,Santa Fe,II.1.1,1.9531049999999999,TJ,CO2,73300.0,kg/TJ,143162.59649999999,Naphtha combustion consumption by freight transport,AR-S,SESCO,annual,kg,af454d4c-4697-3772-9a09-cc2b5ed59820 +2021,Santa Fe,II.1.1,1.9531049999999999,TJ,CH4,0.5,kg/TJ,0.9765524999999999,Naphtha combustion consumption by freight transport,AR-S,SESCO,annual,kg,8ede535c-3131-3185-96cd-65db9462a504 +2021,Santa Fe,II.1.1,1.9531049999999999,TJ,N2O,2.0,kg/TJ,3.9062099999999997,Naphtha combustion consumption by freight transport,AR-S,SESCO,annual,kg,ff27947c-57c6-3bab-a796-1c26fc9833e3 +2021,Buenos Aires,II.1.1,8.49772,TJ,CO2,73300.0,kg/TJ,622882.8759999999,Naphtha combustion consumption by freight transport,AR-B,SESCO,annual,kg,e4434b83-4825-3218-8476-72e50532dcda +2021,Buenos Aires,II.1.1,8.49772,TJ,CH4,0.5,kg/TJ,4.24886,Naphtha combustion consumption by freight transport,AR-B,SESCO,annual,kg,d74e2e6b-d8d6-30c4-9162-f287c31a97f5 +2021,Buenos Aires,II.1.1,8.49772,TJ,N2O,2.0,kg/TJ,16.99544,Naphtha combustion consumption by freight transport,AR-B,SESCO,annual,kg,44f4e817-05b1-39dc-8052-4b492a18a63a +2021,Capital Federal,II.1.1,3.323705,TJ,CO2,73300.0,kg/TJ,243627.5765,Naphtha combustion consumption by freight transport,AR-C,SESCO,annual,kg,9c9f976e-47ec-33e8-b7eb-f09e26de4a49 +2021,Capital Federal,II.1.1,3.323705,TJ,CH4,0.5,kg/TJ,1.6618525,Naphtha combustion consumption by freight transport,AR-C,SESCO,annual,kg,96d9e3e6-9575-33e2-99f4-1156152a6064 +2021,Capital Federal,II.1.1,3.323705,TJ,N2O,2.0,kg/TJ,6.64741,Naphtha combustion consumption by freight transport,AR-C,SESCO,annual,kg,5faa4967-75bb-3eb4-be00-7d5b574e619b +2021,Corrientes,II.1.1,0.034265,TJ,CO2,73300.0,kg/TJ,2511.6245,Naphtha combustion consumption by freight transport,AR-W,SESCO,annual,kg,6b0c2505-58ff-3fba-8c52-dd715f6849f0 +2021,Corrientes,II.1.1,0.034265,TJ,CH4,0.5,kg/TJ,0.0171325,Naphtha combustion consumption by freight transport,AR-W,SESCO,annual,kg,dc3b04b4-6fdc-3e61-833e-9765fb805565 +2021,Corrientes,II.1.1,0.034265,TJ,N2O,2.0,kg/TJ,0.06853,Naphtha combustion consumption by freight transport,AR-W,SESCO,annual,kg,fda6ddb2-27a2-3a76-84f0-e2f08da93338 +2021,Córdoba,II.1.1,0.6853,TJ,CO2,73300.0,kg/TJ,50232.49,Naphtha combustion consumption by freight transport,AR-X,SESCO,annual,kg,d8f6f03e-5841-3414-913e-eea8b23d75ca +2021,Córdoba,II.1.1,0.6853,TJ,CH4,0.5,kg/TJ,0.34265,Naphtha combustion consumption by freight transport,AR-X,SESCO,annual,kg,e5406a82-f9f7-3681-bd67-9978604ee9af +2021,Córdoba,II.1.1,0.6853,TJ,N2O,2.0,kg/TJ,1.3706,Naphtha combustion consumption by freight transport,AR-X,SESCO,annual,kg,4a55a632-9144-3d02-9755-b4b23fb25e96 +2021,Entre Rios,II.1.1,0.5825049999999999,TJ,CO2,73300.0,kg/TJ,42697.6165,Naphtha combustion consumption by freight transport,AR-E,SESCO,annual,kg,5722dcf6-7e75-3d22-b0b1-7b42c127793c +2021,Entre Rios,II.1.1,0.5825049999999999,TJ,CH4,0.5,kg/TJ,0.29125249999999997,Naphtha combustion consumption by freight transport,AR-E,SESCO,annual,kg,843656de-abbb-3d63-b894-db05f90d3786 +2021,Entre Rios,II.1.1,0.5825049999999999,TJ,N2O,2.0,kg/TJ,1.1650099999999999,Naphtha combustion consumption by freight transport,AR-E,SESCO,annual,kg,daf7339a-6cba-39f2-9cfb-8c3d9d38cd25 +2021,Rio Negro,II.1.1,0.034265,TJ,CO2,73300.0,kg/TJ,2511.6245,Naphtha combustion consumption by freight transport,AR-R,SESCO,annual,kg,cb6ea091-6ae8-32b3-aa29-f8132b8dfcd2 +2021,Rio Negro,II.1.1,0.034265,TJ,CH4,0.5,kg/TJ,0.0171325,Naphtha combustion consumption by freight transport,AR-R,SESCO,annual,kg,5bca9739-e77f-3808-b7fa-1c2f915c6cc6 +2021,Rio Negro,II.1.1,0.034265,TJ,N2O,2.0,kg/TJ,0.06853,Naphtha combustion consumption by freight transport,AR-R,SESCO,annual,kg,f837b103-1bf9-37be-8474-e165e048de0c +2021,Santa Fe,II.1.1,1.473395,TJ,CO2,73300.0,kg/TJ,107999.8535,Naphtha combustion consumption by freight transport,AR-S,SESCO,annual,kg,b47f3c99-a995-3d01-8215-8ac176c3901f +2021,Santa Fe,II.1.1,1.473395,TJ,CH4,0.5,kg/TJ,0.7366975,Naphtha combustion consumption by freight transport,AR-S,SESCO,annual,kg,f46568ec-4065-3eb1-913f-17ccd35bd09b +2021,Santa Fe,II.1.1,1.473395,TJ,N2O,2.0,kg/TJ,2.94679,Naphtha combustion consumption by freight transport,AR-S,SESCO,annual,kg,3ac678ff-cbe5-3855-a259-6b370bb3a1d4 +2021,Buenos Aires,II.1.1,966.5712,TJ,CO2,74100.0,kg/TJ,71622925.92,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,11156204-46a3-3045-908b-fc5d57bc67ea +2021,Buenos Aires,II.1.1,966.5712,TJ,CH4,3.9,kg/TJ,3769.6276799999996,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,c98f9055-4b11-384f-95be-3d935fc31bc8 +2021,Buenos Aires,II.1.1,966.5712,TJ,N2O,3.9,kg/TJ,3769.6276799999996,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,c98f9055-4b11-384f-95be-3d935fc31bc8 +2021,Capital Federal,II.1.1,577.7393999999999,TJ,CO2,74100.0,kg/TJ,42810489.53999999,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,21a6f804-3949-34dd-828a-05e01175a7d0 +2021,Capital Federal,II.1.1,577.7393999999999,TJ,CH4,3.9,kg/TJ,2253.1836599999997,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,0961a148-bb14-3e6f-bbde-47de38a20e8f +2021,Capital Federal,II.1.1,577.7393999999999,TJ,N2O,3.9,kg/TJ,2253.1836599999997,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,0961a148-bb14-3e6f-bbde-47de38a20e8f +2021,Chaco,II.1.1,49.050959999999996,TJ,CO2,74100.0,kg/TJ,3634676.136,Gas Oil combustion consumption by public passenger transport,AR-H,SESCO,annual,kg,231ce26e-ab5f-3097-a865-9a2889f34ebf +2021,Chaco,II.1.1,49.050959999999996,TJ,CH4,3.9,kg/TJ,191.29874399999997,Gas Oil combustion consumption by public passenger transport,AR-H,SESCO,annual,kg,1e7bb337-4944-325d-a012-ff26fd8fdecb +2021,Chaco,II.1.1,49.050959999999996,TJ,N2O,3.9,kg/TJ,191.29874399999997,Gas Oil combustion consumption by public passenger transport,AR-H,SESCO,annual,kg,1e7bb337-4944-325d-a012-ff26fd8fdecb +2021,Chubut,II.1.1,3.4314,TJ,CO2,74100.0,kg/TJ,254266.74,Gas Oil combustion consumption by public passenger transport,AR-U,SESCO,annual,kg,9076b835-e3db-359b-b797-9d43d096c8bb +2021,Chubut,II.1.1,3.4314,TJ,CH4,3.9,kg/TJ,13.38246,Gas Oil combustion consumption by public passenger transport,AR-U,SESCO,annual,kg,ca28291c-36ba-368e-b463-c964ccd9413c +2021,Chubut,II.1.1,3.4314,TJ,N2O,3.9,kg/TJ,13.38246,Gas Oil combustion consumption by public passenger transport,AR-U,SESCO,annual,kg,ca28291c-36ba-368e-b463-c964ccd9413c +2021,Corrientes,II.1.1,0.18059999999999998,TJ,CO2,74100.0,kg/TJ,13382.46,Gas Oil combustion consumption by public passenger transport,AR-W,SESCO,annual,kg,e7af1dcf-ed91-3a77-a017-6ab8af74a426 +2021,Corrientes,II.1.1,0.18059999999999998,TJ,CH4,3.9,kg/TJ,0.70434,Gas Oil combustion consumption by public passenger transport,AR-W,SESCO,annual,kg,fc930f5e-3d0d-32fd-9b2b-4e1794e28e4b +2021,Corrientes,II.1.1,0.18059999999999998,TJ,N2O,3.9,kg/TJ,0.70434,Gas Oil combustion consumption by public passenger transport,AR-W,SESCO,annual,kg,fc930f5e-3d0d-32fd-9b2b-4e1794e28e4b +2021,Córdoba,II.1.1,143.32416,TJ,CO2,74100.0,kg/TJ,10620320.256000001,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,3f2461c7-c780-372b-a584-c53efdab2fd6 +2021,Córdoba,II.1.1,143.32416,TJ,CH4,3.9,kg/TJ,558.9642240000001,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,cf1b67f4-6353-3a71-bc05-0bbe01bdca74 +2021,Córdoba,II.1.1,143.32416,TJ,N2O,3.9,kg/TJ,558.9642240000001,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,cf1b67f4-6353-3a71-bc05-0bbe01bdca74 +2021,Entre Rios,II.1.1,26.62044,TJ,CO2,74100.0,kg/TJ,1972574.6039999998,Gas Oil combustion consumption by public passenger transport,AR-E,SESCO,annual,kg,29913773-8fc0-3766-8b66-0c5969e490d3 +2021,Entre Rios,II.1.1,26.62044,TJ,CH4,3.9,kg/TJ,103.81971599999999,Gas Oil combustion consumption by public passenger transport,AR-E,SESCO,annual,kg,91727537-6ce1-3153-9b8f-28b4b2301aef +2021,Entre Rios,II.1.1,26.62044,TJ,N2O,3.9,kg/TJ,103.81971599999999,Gas Oil combustion consumption by public passenger transport,AR-E,SESCO,annual,kg,91727537-6ce1-3153-9b8f-28b4b2301aef +2021,Formosa,II.1.1,0.03612,TJ,CO2,74100.0,kg/TJ,2676.4919999999997,Gas Oil combustion consumption by public passenger transport,AR-P,SESCO,annual,kg,25c0bb22-0c7d-36b9-8d14-6bb55b21688b +2021,Formosa,II.1.1,0.03612,TJ,CH4,3.9,kg/TJ,0.140868,Gas Oil combustion consumption by public passenger transport,AR-P,SESCO,annual,kg,267aa4a1-dffe-3625-b49d-fa8efdcaa0a5 +2021,Formosa,II.1.1,0.03612,TJ,N2O,3.9,kg/TJ,0.140868,Gas Oil combustion consumption by public passenger transport,AR-P,SESCO,annual,kg,267aa4a1-dffe-3625-b49d-fa8efdcaa0a5 +2021,Jujuy,II.1.1,0.03612,TJ,CO2,74100.0,kg/TJ,2676.4919999999997,Gas Oil combustion consumption by public passenger transport,AR-Y,SESCO,annual,kg,3ff4451d-7617-3b97-a080-eaa02a384379 +2021,Jujuy,II.1.1,0.03612,TJ,CH4,3.9,kg/TJ,0.140868,Gas Oil combustion consumption by public passenger transport,AR-Y,SESCO,annual,kg,6f4c9fad-dbde-38f3-a1fc-be6512e67ea9 +2021,Jujuy,II.1.1,0.03612,TJ,N2O,3.9,kg/TJ,0.140868,Gas Oil combustion consumption by public passenger transport,AR-Y,SESCO,annual,kg,6f4c9fad-dbde-38f3-a1fc-be6512e67ea9 +2021,La Pampa,II.1.1,0.8307599999999999,TJ,CO2,74100.0,kg/TJ,61559.316,Gas Oil combustion consumption by public passenger transport,AR-L,SESCO,annual,kg,f13b35ca-684b-3109-ab9e-a63adb8f1c7d +2021,La Pampa,II.1.1,0.8307599999999999,TJ,CH4,3.9,kg/TJ,3.2399639999999996,Gas Oil combustion consumption by public passenger transport,AR-L,SESCO,annual,kg,300d52d1-a3e3-3446-bff5-704258a12062 +2021,La Pampa,II.1.1,0.8307599999999999,TJ,N2O,3.9,kg/TJ,3.2399639999999996,Gas Oil combustion consumption by public passenger transport,AR-L,SESCO,annual,kg,300d52d1-a3e3-3446-bff5-704258a12062 +2021,Mendoza,II.1.1,2.78124,TJ,CO2,74100.0,kg/TJ,206089.884,Gas Oil combustion consumption by public passenger transport,AR-M,SESCO,annual,kg,f07fdaaa-d3a3-3e32-b82c-905a16d38e07 +2021,Mendoza,II.1.1,2.78124,TJ,CH4,3.9,kg/TJ,10.846836,Gas Oil combustion consumption by public passenger transport,AR-M,SESCO,annual,kg,1f987115-38a2-3436-b857-e6f1fb700dbc +2021,Mendoza,II.1.1,2.78124,TJ,N2O,3.9,kg/TJ,10.846836,Gas Oil combustion consumption by public passenger transport,AR-M,SESCO,annual,kg,1f987115-38a2-3436-b857-e6f1fb700dbc +2021,Misiones,II.1.1,83.76227999999999,TJ,CO2,74100.0,kg/TJ,6206784.947999999,Gas Oil combustion consumption by public passenger transport,AR-N,SESCO,annual,kg,b4b286a0-9c08-3088-846a-f04c852ca649 +2021,Misiones,II.1.1,83.76227999999999,TJ,CH4,3.9,kg/TJ,326.67289199999993,Gas Oil combustion consumption by public passenger transport,AR-N,SESCO,annual,kg,df131137-d33f-3eff-a636-6af9f0ac64e5 +2021,Misiones,II.1.1,83.76227999999999,TJ,N2O,3.9,kg/TJ,326.67289199999993,Gas Oil combustion consumption by public passenger transport,AR-N,SESCO,annual,kg,df131137-d33f-3eff-a636-6af9f0ac64e5 +2021,Neuquén,II.1.1,2.05884,TJ,CO2,74100.0,kg/TJ,152560.044,Gas Oil combustion consumption by public passenger transport,AR-Q,SESCO,annual,kg,79aa7daa-fad2-3168-a157-127d38dcf435 +2021,Neuquén,II.1.1,2.05884,TJ,CH4,3.9,kg/TJ,8.029475999999999,Gas Oil combustion consumption by public passenger transport,AR-Q,SESCO,annual,kg,bdab5e1b-a72c-3f62-8d0b-a7df665ce8de +2021,Neuquén,II.1.1,2.05884,TJ,N2O,3.9,kg/TJ,8.029475999999999,Gas Oil combustion consumption by public passenger transport,AR-Q,SESCO,annual,kg,bdab5e1b-a72c-3f62-8d0b-a7df665ce8de +2021,Rio Negro,II.1.1,4.44276,TJ,CO2,74100.0,kg/TJ,329208.516,Gas Oil combustion consumption by public passenger transport,AR-R,SESCO,annual,kg,7abc533f-2fe8-3dfc-b9d1-d4289d78f562 +2021,Rio Negro,II.1.1,4.44276,TJ,CH4,3.9,kg/TJ,17.326763999999997,Gas Oil combustion consumption by public passenger transport,AR-R,SESCO,annual,kg,0ba59b94-185e-3f2a-b046-423567fda56e +2021,Rio Negro,II.1.1,4.44276,TJ,N2O,3.9,kg/TJ,17.326763999999997,Gas Oil combustion consumption by public passenger transport,AR-R,SESCO,annual,kg,0ba59b94-185e-3f2a-b046-423567fda56e +2021,Salta,II.1.1,149.46456,TJ,CO2,74100.0,kg/TJ,11075323.896,Gas Oil combustion consumption by public passenger transport,AR-A,SESCO,annual,kg,3214a2de-9213-3a72-a34e-8c576b781eca +2021,Salta,II.1.1,149.46456,TJ,CH4,3.9,kg/TJ,582.911784,Gas Oil combustion consumption by public passenger transport,AR-A,SESCO,annual,kg,c39ad814-2bcf-3353-a2c4-f8e69648715c +2021,Salta,II.1.1,149.46456,TJ,N2O,3.9,kg/TJ,582.911784,Gas Oil combustion consumption by public passenger transport,AR-A,SESCO,annual,kg,c39ad814-2bcf-3353-a2c4-f8e69648715c +2021,San Luis,II.1.1,0.36119999999999997,TJ,CO2,74100.0,kg/TJ,26764.92,Gas Oil combustion consumption by public passenger transport,AR-D,SESCO,annual,kg,3e15c984-2e8f-3f8d-94e0-6e21824cb623 +2021,San Luis,II.1.1,0.36119999999999997,TJ,CH4,3.9,kg/TJ,1.40868,Gas Oil combustion consumption by public passenger transport,AR-D,SESCO,annual,kg,166bcf8f-cfca-3d06-a441-bf9b914fed2a +2021,San Luis,II.1.1,0.36119999999999997,TJ,N2O,3.9,kg/TJ,1.40868,Gas Oil combustion consumption by public passenger transport,AR-D,SESCO,annual,kg,166bcf8f-cfca-3d06-a441-bf9b914fed2a +2021,Santa Cruz,II.1.1,0.03612,TJ,CO2,74100.0,kg/TJ,2676.4919999999997,Gas Oil combustion consumption by public passenger transport,AR-Z,SESCO,annual,kg,0a4f77ce-5e6c-3e44-ae37-2d8392a0fda4 +2021,Santa Cruz,II.1.1,0.03612,TJ,CH4,3.9,kg/TJ,0.140868,Gas Oil combustion consumption by public passenger transport,AR-Z,SESCO,annual,kg,f44d0187-48a6-3dee-8e71-89c418ca2cbb +2021,Santa Cruz,II.1.1,0.03612,TJ,N2O,3.9,kg/TJ,0.140868,Gas Oil combustion consumption by public passenger transport,AR-Z,SESCO,annual,kg,f44d0187-48a6-3dee-8e71-89c418ca2cbb +2021,Santa Fe,II.1.1,529.5914399999999,TJ,CO2,74100.0,kg/TJ,39242725.703999996,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,086a8346-917c-3751-9d9f-bbf54c93f5a8 +2021,Santa Fe,II.1.1,529.5914399999999,TJ,CH4,3.9,kg/TJ,2065.4066159999998,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,07cc2630-b3de-3c3e-ab32-1dbdb1a23fad +2021,Santa Fe,II.1.1,529.5914399999999,TJ,N2O,3.9,kg/TJ,2065.4066159999998,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,07cc2630-b3de-3c3e-ab32-1dbdb1a23fad +2021,Santiago del Estero,II.1.1,0.7223999999999999,TJ,CO2,74100.0,kg/TJ,53529.84,Gas Oil combustion consumption by public passenger transport,AR-G,SESCO,annual,kg,d42c0fbe-5b51-3d52-ad8f-0379dd78b030 +2021,Santiago del Estero,II.1.1,0.7223999999999999,TJ,CH4,3.9,kg/TJ,2.81736,Gas Oil combustion consumption by public passenger transport,AR-G,SESCO,annual,kg,bd845e7a-2cf6-3947-82b8-0b31867ec591 +2021,Santiago del Estero,II.1.1,0.7223999999999999,TJ,N2O,3.9,kg/TJ,2.81736,Gas Oil combustion consumption by public passenger transport,AR-G,SESCO,annual,kg,bd845e7a-2cf6-3947-82b8-0b31867ec591 +2021,Tucuman,II.1.1,46.45032,TJ,CO2,74100.0,kg/TJ,3441968.712,Gas Oil combustion consumption by public passenger transport,AR-T,SESCO,annual,kg,ce77fec4-b161-3bba-815b-89d29c325fa0 +2021,Tucuman,II.1.1,46.45032,TJ,CH4,3.9,kg/TJ,181.15624799999998,Gas Oil combustion consumption by public passenger transport,AR-T,SESCO,annual,kg,ea9def43-1ebf-3192-bbf1-945cdbe7d5ea +2021,Tucuman,II.1.1,46.45032,TJ,N2O,3.9,kg/TJ,181.15624799999998,Gas Oil combustion consumption by public passenger transport,AR-T,SESCO,annual,kg,ea9def43-1ebf-3192-bbf1-945cdbe7d5ea +2021,Buenos Aires,II.1.1,563.6526,TJ,CO2,74100.0,kg/TJ,41766657.660000004,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,04233f7c-5534-35b6-b3fb-544d5fdef9fd +2021,Buenos Aires,II.1.1,563.6526,TJ,CH4,3.9,kg/TJ,2198.24514,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,a48848df-40c1-32c4-a629-549b15ab122d +2021,Buenos Aires,II.1.1,563.6526,TJ,N2O,3.9,kg/TJ,2198.24514,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,a48848df-40c1-32c4-a629-549b15ab122d +2021,Capital Federal,II.1.1,325.87464,TJ,CO2,74100.0,kg/TJ,24147310.824,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,670031d4-4b26-30d2-baa7-f1853a4087d6 +2021,Capital Federal,II.1.1,325.87464,TJ,CH4,3.9,kg/TJ,1270.911096,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,2583b3dc-24f5-39a3-bab1-9473987c0d4d +2021,Capital Federal,II.1.1,325.87464,TJ,N2O,3.9,kg/TJ,1270.911096,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,2583b3dc-24f5-39a3-bab1-9473987c0d4d +2021,Chaco,II.1.1,0.28896,TJ,CO2,74100.0,kg/TJ,21411.935999999998,Gas Oil combustion consumption by public passenger transport,AR-H,SESCO,annual,kg,ea6544e9-3324-3421-8e1c-8331375dfc2f +2021,Chaco,II.1.1,0.28896,TJ,CH4,3.9,kg/TJ,1.126944,Gas Oil combustion consumption by public passenger transport,AR-H,SESCO,annual,kg,004e9435-b770-35ff-b69a-669eb91a2ff9 +2021,Chaco,II.1.1,0.28896,TJ,N2O,3.9,kg/TJ,1.126944,Gas Oil combustion consumption by public passenger transport,AR-H,SESCO,annual,kg,004e9435-b770-35ff-b69a-669eb91a2ff9 +2021,Corrientes,II.1.1,0.25284,TJ,CO2,74100.0,kg/TJ,18735.444,Gas Oil combustion consumption by public passenger transport,AR-W,SESCO,annual,kg,0354494c-5c8c-3661-957c-252edf68e61f +2021,Corrientes,II.1.1,0.25284,TJ,CH4,3.9,kg/TJ,0.9860760000000001,Gas Oil combustion consumption by public passenger transport,AR-W,SESCO,annual,kg,84fe2139-6d90-3674-99aa-dc1595dbd8cd +2021,Corrientes,II.1.1,0.25284,TJ,N2O,3.9,kg/TJ,0.9860760000000001,Gas Oil combustion consumption by public passenger transport,AR-W,SESCO,annual,kg,84fe2139-6d90-3674-99aa-dc1595dbd8cd +2021,Córdoba,II.1.1,0.97524,TJ,CO2,74100.0,kg/TJ,72265.284,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,a53e937c-d3c9-3f1b-9015-eeaf84540e7e +2021,Córdoba,II.1.1,0.97524,TJ,CH4,3.9,kg/TJ,3.803436,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,55880b0e-98a4-3a9f-9763-0855eaed1431 +2021,Córdoba,II.1.1,0.97524,TJ,N2O,3.9,kg/TJ,3.803436,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,55880b0e-98a4-3a9f-9763-0855eaed1431 +2021,Entre Rios,II.1.1,0.28896,TJ,CO2,74100.0,kg/TJ,21411.935999999998,Gas Oil combustion consumption by public passenger transport,AR-E,SESCO,annual,kg,197cece6-b538-3786-910b-03c87e2380c1 +2021,Entre Rios,II.1.1,0.28896,TJ,CH4,3.9,kg/TJ,1.126944,Gas Oil combustion consumption by public passenger transport,AR-E,SESCO,annual,kg,d69f8a4b-d332-390d-8aa2-c4247d0ee208 +2021,Entre Rios,II.1.1,0.28896,TJ,N2O,3.9,kg/TJ,1.126944,Gas Oil combustion consumption by public passenger transport,AR-E,SESCO,annual,kg,d69f8a4b-d332-390d-8aa2-c4247d0ee208 +2021,La Pampa,II.1.1,0.10836,TJ,CO2,74100.0,kg/TJ,8029.476,Gas Oil combustion consumption by public passenger transport,AR-L,SESCO,annual,kg,c2612667-eac5-3757-9219-dce0c9e1e3b5 +2021,La Pampa,II.1.1,0.10836,TJ,CH4,3.9,kg/TJ,0.422604,Gas Oil combustion consumption by public passenger transport,AR-L,SESCO,annual,kg,2d68e128-51fd-370c-b856-57439a5cec48 +2021,La Pampa,II.1.1,0.10836,TJ,N2O,3.9,kg/TJ,0.422604,Gas Oil combustion consumption by public passenger transport,AR-L,SESCO,annual,kg,2d68e128-51fd-370c-b856-57439a5cec48 +2021,Mendoza,II.1.1,0.07224,TJ,CO2,74100.0,kg/TJ,5352.9839999999995,Gas Oil combustion consumption by public passenger transport,AR-M,SESCO,annual,kg,28a6405b-b0d8-38e6-98eb-1d584c0c0253 +2021,Mendoza,II.1.1,0.07224,TJ,CH4,3.9,kg/TJ,0.281736,Gas Oil combustion consumption by public passenger transport,AR-M,SESCO,annual,kg,5f853727-cbde-3135-b2ea-4cc67abc8ce8 +2021,Mendoza,II.1.1,0.07224,TJ,N2O,3.9,kg/TJ,0.281736,Gas Oil combustion consumption by public passenger transport,AR-M,SESCO,annual,kg,5f853727-cbde-3135-b2ea-4cc67abc8ce8 +2021,Misiones,II.1.1,3.21468,TJ,CO2,74100.0,kg/TJ,238207.788,Gas Oil combustion consumption by public passenger transport,AR-N,SESCO,annual,kg,e52556cf-ced2-3a14-9e83-3e0f5ac42e6a +2021,Misiones,II.1.1,3.21468,TJ,CH4,3.9,kg/TJ,12.537252,Gas Oil combustion consumption by public passenger transport,AR-N,SESCO,annual,kg,10ba94dd-edb6-3e61-93ff-0b70945e8d94 +2021,Misiones,II.1.1,3.21468,TJ,N2O,3.9,kg/TJ,12.537252,Gas Oil combustion consumption by public passenger transport,AR-N,SESCO,annual,kg,10ba94dd-edb6-3e61-93ff-0b70945e8d94 +2021,Neuquén,II.1.1,14.628599999999999,TJ,CO2,74100.0,kg/TJ,1083979.26,Gas Oil combustion consumption by public passenger transport,AR-Q,SESCO,annual,kg,80cbf86c-f8e2-306d-96f2-3eca6207b06f +2021,Neuquén,II.1.1,14.628599999999999,TJ,CH4,3.9,kg/TJ,57.051539999999996,Gas Oil combustion consumption by public passenger transport,AR-Q,SESCO,annual,kg,042392b3-0ecb-3c4c-b120-4d6cb1f07675 +2021,Neuquén,II.1.1,14.628599999999999,TJ,N2O,3.9,kg/TJ,57.051539999999996,Gas Oil combustion consumption by public passenger transport,AR-Q,SESCO,annual,kg,042392b3-0ecb-3c4c-b120-4d6cb1f07675 +2021,Rio Negro,II.1.1,5.56248,TJ,CO2,74100.0,kg/TJ,412179.768,Gas Oil combustion consumption by public passenger transport,AR-R,SESCO,annual,kg,5b241c06-e142-3f8b-9438-937e22fa5b3c +2021,Rio Negro,II.1.1,5.56248,TJ,CH4,3.9,kg/TJ,21.693672,Gas Oil combustion consumption by public passenger transport,AR-R,SESCO,annual,kg,75603481-3ce0-3882-adeb-2f27fb08bd21 +2021,Rio Negro,II.1.1,5.56248,TJ,N2O,3.9,kg/TJ,21.693672,Gas Oil combustion consumption by public passenger transport,AR-R,SESCO,annual,kg,75603481-3ce0-3882-adeb-2f27fb08bd21 +2021,Salta,II.1.1,0.07224,TJ,CO2,74100.0,kg/TJ,5352.9839999999995,Gas Oil combustion consumption by public passenger transport,AR-A,SESCO,annual,kg,212bd55f-12db-3fb7-bc78-d29ed40064a0 +2021,Salta,II.1.1,0.07224,TJ,CH4,3.9,kg/TJ,0.281736,Gas Oil combustion consumption by public passenger transport,AR-A,SESCO,annual,kg,befcb5bb-3354-3370-890f-fd6c6d7ef843 +2021,Salta,II.1.1,0.07224,TJ,N2O,3.9,kg/TJ,0.281736,Gas Oil combustion consumption by public passenger transport,AR-A,SESCO,annual,kg,befcb5bb-3354-3370-890f-fd6c6d7ef843 +2021,San Juan,II.1.1,0.03612,TJ,CO2,74100.0,kg/TJ,2676.4919999999997,Gas Oil combustion consumption by public passenger transport,AR-J,SESCO,annual,kg,f1c36709-d37a-3179-ace9-0637f6c05a1f +2021,San Juan,II.1.1,0.03612,TJ,CH4,3.9,kg/TJ,0.140868,Gas Oil combustion consumption by public passenger transport,AR-J,SESCO,annual,kg,5e76d161-edcd-3406-a470-b0dd11894374 +2021,San Juan,II.1.1,0.03612,TJ,N2O,3.9,kg/TJ,0.140868,Gas Oil combustion consumption by public passenger transport,AR-J,SESCO,annual,kg,5e76d161-edcd-3406-a470-b0dd11894374 +2021,San Luis,II.1.1,0.21672,TJ,CO2,74100.0,kg/TJ,16058.952,Gas Oil combustion consumption by public passenger transport,AR-D,SESCO,annual,kg,0297c9e3-32c6-359f-ba87-29ec71f526ee +2021,San Luis,II.1.1,0.21672,TJ,CH4,3.9,kg/TJ,0.845208,Gas Oil combustion consumption by public passenger transport,AR-D,SESCO,annual,kg,8e62f738-8bc0-344b-98ad-5c132b233668 +2021,San Luis,II.1.1,0.21672,TJ,N2O,3.9,kg/TJ,0.845208,Gas Oil combustion consumption by public passenger transport,AR-D,SESCO,annual,kg,8e62f738-8bc0-344b-98ad-5c132b233668 +2021,Santa Fe,II.1.1,85.4238,TJ,CO2,74100.0,kg/TJ,6329903.58,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,37557973-4dcd-3be6-bb8a-6a30e5ab732c +2021,Santa Fe,II.1.1,85.4238,TJ,CH4,3.9,kg/TJ,333.15282,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,bfb16fac-d78f-3eea-b27e-3056e473813a +2021,Santa Fe,II.1.1,85.4238,TJ,N2O,3.9,kg/TJ,333.15282,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,bfb16fac-d78f-3eea-b27e-3056e473813a +2021,Santiago del Estero,II.1.1,0.57792,TJ,CO2,74100.0,kg/TJ,42823.871999999996,Gas Oil combustion consumption by public passenger transport,AR-G,SESCO,annual,kg,ec3cc0ae-daa0-3a13-becf-cc6727f5980f +2021,Santiago del Estero,II.1.1,0.57792,TJ,CH4,3.9,kg/TJ,2.253888,Gas Oil combustion consumption by public passenger transport,AR-G,SESCO,annual,kg,04d1d92f-9980-303e-874f-7ec0822d2e5a +2021,Santiago del Estero,II.1.1,0.57792,TJ,N2O,3.9,kg/TJ,2.253888,Gas Oil combustion consumption by public passenger transport,AR-G,SESCO,annual,kg,04d1d92f-9980-303e-874f-7ec0822d2e5a +2021,Tucuman,II.1.1,0.07224,TJ,CO2,74100.0,kg/TJ,5352.9839999999995,Gas Oil combustion consumption by public passenger transport,AR-T,SESCO,annual,kg,4342d217-5966-3509-9295-612f90685c55 +2021,Tucuman,II.1.1,0.07224,TJ,CH4,3.9,kg/TJ,0.281736,Gas Oil combustion consumption by public passenger transport,AR-T,SESCO,annual,kg,72b62858-a0a0-30c3-a79c-b52525c6f9e7 +2021,Tucuman,II.1.1,0.07224,TJ,N2O,3.9,kg/TJ,0.281736,Gas Oil combustion consumption by public passenger transport,AR-T,SESCO,annual,kg,72b62858-a0a0-30c3-a79c-b52525c6f9e7 +2021,Buenos Aires,II.1.1,0.20559,TJ,CO2,73300.0,kg/TJ,15069.747,Naphtha combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,0a926f9b-f281-34dc-af94-dff7aee59184 +2021,Buenos Aires,II.1.1,0.20559,TJ,CH4,0.5,kg/TJ,0.102795,Naphtha combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,4015fcd6-d637-3e30-8799-90d64c31ab6f +2021,Buenos Aires,II.1.1,0.20559,TJ,N2O,2.0,kg/TJ,0.41118,Naphtha combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,b7bae74b-2337-3a40-9f2d-f3b1dfec6d6c +2021,Santa Fe,II.1.1,0.376915,TJ,CO2,73300.0,kg/TJ,27627.8695,Naphtha combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,52a93700-297d-3434-a5cd-4c9a680a51e2 +2021,Santa Fe,II.1.1,0.376915,TJ,CH4,0.5,kg/TJ,0.1884575,Naphtha combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,04636ad3-2486-35fb-b741-a9f100dfb010 +2021,Santa Fe,II.1.1,0.376915,TJ,N2O,2.0,kg/TJ,0.75383,Naphtha combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,da04417c-d80c-3815-b347-c14ee5e73a2f +2021,Buenos Aires,II.1.1,0.34265,TJ,CO2,73300.0,kg/TJ,25116.245,Naphtha combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,f713911a-1fd7-31ac-b7d5-538be4ff14f3 +2021,Buenos Aires,II.1.1,0.34265,TJ,CH4,0.5,kg/TJ,0.171325,Naphtha combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,1eb66c82-8d1a-300b-aa84-1cd7f2a02dc4 +2021,Buenos Aires,II.1.1,0.34265,TJ,N2O,2.0,kg/TJ,0.6853,Naphtha combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,e9f277aa-735b-3afd-aed6-d29e19a98507 +2021,Capital Federal,II.1.1,0.06853,TJ,CO2,73300.0,kg/TJ,5023.249,Naphtha combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,40f78e06-a14c-358a-92f0-8745dd1e0048 +2021,Capital Federal,II.1.1,0.06853,TJ,CH4,0.5,kg/TJ,0.034265,Naphtha combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,edce0808-0c44-3316-9984-a1790c51bfcf +2021,Capital Federal,II.1.1,0.06853,TJ,N2O,2.0,kg/TJ,0.13706,Naphtha combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,5bee52ea-0818-390f-8164-73312d3b4719 +2021,Córdoba,II.1.1,0.41118,TJ,CO2,73300.0,kg/TJ,30139.494,Naphtha combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,52ed09ef-4784-3b6b-96ec-a2d869d10f51 +2021,Córdoba,II.1.1,0.41118,TJ,CH4,0.5,kg/TJ,0.20559,Naphtha combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,9b4080c5-d65b-3219-bb96-5aa7bda3e8db +2021,Córdoba,II.1.1,0.41118,TJ,N2O,2.0,kg/TJ,0.82236,Naphtha combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,8a683456-ffb1-3dfd-856d-50c661e8bdfa +2021,Santa Fe,II.1.1,0.034265,TJ,CO2,73300.0,kg/TJ,2511.6245,Naphtha combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,783929bf-faf4-3bbc-b659-85fa24ee96cd +2021,Santa Fe,II.1.1,0.034265,TJ,CH4,0.5,kg/TJ,0.0171325,Naphtha combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,d9a6fed4-2963-3987-ab93-abb7b97f1e0e +2021,Santa Fe,II.1.1,0.034265,TJ,N2O,2.0,kg/TJ,0.06853,Naphtha combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,898ad23a-e19d-3bab-9f81-ca9e842a7aff +2021,Buenos Aires,II.5.1,385.7616,TJ,CO2,74100.0,kg/TJ,28584934.56,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,a658bc70-3fb2-3149-a071-ad63714f906f +2021,Buenos Aires,II.5.1,385.7616,TJ,CH4,3.9,kg/TJ,1504.4702399999999,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,f7c4d151-09a3-39de-8302-ed3779075148 +2021,Buenos Aires,II.5.1,385.7616,TJ,N2O,3.9,kg/TJ,1504.4702399999999,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,f7c4d151-09a3-39de-8302-ed3779075148 +2021,Catamarca,II.5.1,0.5418,TJ,CO2,74100.0,kg/TJ,40147.38,Gas Oil combustion consumption by agriculture machines,AR-K,SESCO,annual,kg,e752a767-3513-3d15-acb3-9e4d9911fb4a +2021,Catamarca,II.5.1,0.5418,TJ,CH4,3.9,kg/TJ,2.1130199999999997,Gas Oil combustion consumption by agriculture machines,AR-K,SESCO,annual,kg,9a793ac8-a035-3f6d-b1d6-840f669d6293 +2021,Catamarca,II.5.1,0.5418,TJ,N2O,3.9,kg/TJ,2.1130199999999997,Gas Oil combustion consumption by agriculture machines,AR-K,SESCO,annual,kg,9a793ac8-a035-3f6d-b1d6-840f669d6293 +2021,Corrientes,II.5.1,39.5514,TJ,CO2,74100.0,kg/TJ,2930758.74,Gas Oil combustion consumption by agriculture machines,AR-W,SESCO,annual,kg,e78a981d-1780-3589-9908-913314f4531f +2021,Corrientes,II.5.1,39.5514,TJ,CH4,3.9,kg/TJ,154.25046,Gas Oil combustion consumption by agriculture machines,AR-W,SESCO,annual,kg,080f9a03-b230-386f-8afd-58a17c5dedf8 +2021,Corrientes,II.5.1,39.5514,TJ,N2O,3.9,kg/TJ,154.25046,Gas Oil combustion consumption by agriculture machines,AR-W,SESCO,annual,kg,080f9a03-b230-386f-8afd-58a17c5dedf8 +2021,Córdoba,II.5.1,20.11884,TJ,CO2,74100.0,kg/TJ,1490806.044,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,a56d6793-1c37-3427-a14a-a3b474f80205 +2021,Córdoba,II.5.1,20.11884,TJ,CH4,3.9,kg/TJ,78.463476,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,c8f4ed8d-4605-32e5-9557-cc04a95a3d26 +2021,Córdoba,II.5.1,20.11884,TJ,N2O,3.9,kg/TJ,78.463476,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,c8f4ed8d-4605-32e5-9557-cc04a95a3d26 +2021,Entre Rios,II.5.1,79.57236,TJ,CO2,74100.0,kg/TJ,5896311.876,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,bd03f21d-2444-3a39-811f-a3f5d5c0544c +2021,Entre Rios,II.5.1,79.57236,TJ,CH4,3.9,kg/TJ,310.332204,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,04df7c75-5456-3176-a097-60fae2e67d82 +2021,Entre Rios,II.5.1,79.57236,TJ,N2O,3.9,kg/TJ,310.332204,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,04df7c75-5456-3176-a097-60fae2e67d82 +2021,La Pampa,II.5.1,38.68452,TJ,CO2,74100.0,kg/TJ,2866522.932,Gas Oil combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,0baa07dd-8ab6-3480-b7ef-d8e829b5d73d +2021,La Pampa,II.5.1,38.68452,TJ,CH4,3.9,kg/TJ,150.869628,Gas Oil combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,9218ce53-dbe1-38d1-833b-da69235b0da2 +2021,La Pampa,II.5.1,38.68452,TJ,N2O,3.9,kg/TJ,150.869628,Gas Oil combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,9218ce53-dbe1-38d1-833b-da69235b0da2 +2021,Santa Fe,II.5.1,54.93852,TJ,CO2,74100.0,kg/TJ,4070944.332,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,15f07ed3-cd74-3811-8a29-bed1ed349658 +2021,Santa Fe,II.5.1,54.93852,TJ,CH4,3.9,kg/TJ,214.26022799999998,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,c55a4064-a712-3d05-ae11-1b808801c0ec +2021,Santa Fe,II.5.1,54.93852,TJ,N2O,3.9,kg/TJ,214.26022799999998,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,c55a4064-a712-3d05-ae11-1b808801c0ec +2021,Buenos Aires,II.5.1,23.26128,TJ,CO2,74100.0,kg/TJ,1723660.848,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,9306da24-089d-31a6-853f-9512da1a35f1 +2021,Buenos Aires,II.5.1,23.26128,TJ,CH4,3.9,kg/TJ,90.718992,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,cd83972c-a48f-3105-8f27-64aeb31e2a49 +2021,Buenos Aires,II.5.1,23.26128,TJ,N2O,3.9,kg/TJ,90.718992,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,cd83972c-a48f-3105-8f27-64aeb31e2a49 +2021,Entre Rios,II.5.1,27.6318,TJ,CO2,74100.0,kg/TJ,2047516.38,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,3d47c105-9175-3643-bcd1-e7b914f10760 +2021,Entre Rios,II.5.1,27.6318,TJ,CH4,3.9,kg/TJ,107.76401999999999,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,5f5006dd-ca9a-3ee0-94fc-e9861dab4d5f +2021,Entre Rios,II.5.1,27.6318,TJ,N2O,3.9,kg/TJ,107.76401999999999,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,5f5006dd-ca9a-3ee0-94fc-e9861dab4d5f +2021,La Pampa,II.5.1,5.2735199999999995,TJ,CO2,74100.0,kg/TJ,390767.832,Gas Oil combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,f94de946-d9a4-35ae-ab74-d148434c468e +2021,La Pampa,II.5.1,5.2735199999999995,TJ,CH4,3.9,kg/TJ,20.566727999999998,Gas Oil combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,589a05c8-bceb-3e61-8b5c-cdbe93d71f65 +2021,La Pampa,II.5.1,5.2735199999999995,TJ,N2O,3.9,kg/TJ,20.566727999999998,Gas Oil combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,589a05c8-bceb-3e61-8b5c-cdbe93d71f65 +2021,Santa Fe,II.5.1,5.5263599999999995,TJ,CO2,74100.0,kg/TJ,409503.27599999995,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,f07daf72-3c04-3c00-a170-68da99f652f4 +2021,Santa Fe,II.5.1,5.5263599999999995,TJ,CH4,3.9,kg/TJ,21.552804,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,ca123337-dc89-3355-b3f3-ee98490f40e7 +2021,Santa Fe,II.5.1,5.5263599999999995,TJ,N2O,3.9,kg/TJ,21.552804,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,ca123337-dc89-3355-b3f3-ee98490f40e7 +2021,Santa Fe,II.5.1,1.3706,TJ,CO2,73300.0,kg/TJ,100464.98,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,e10ac2a5-3948-30e8-8769-3a3827b343b1 +2021,Santa Fe,II.5.1,1.3706,TJ,CH4,0.5,kg/TJ,0.6853,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,f561a1f5-c9ce-3b8a-953f-d7f550770edc +2021,Santa Fe,II.5.1,1.3706,TJ,N2O,2.0,kg/TJ,2.7412,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,c640f268-3eac-31b1-980c-8ad06e010686 +2021,Santa Fe,II.5.1,0.6167699999999999,TJ,CO2,73300.0,kg/TJ,45209.240999999995,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,2a21d722-0b11-3e36-bf6f-41dd5feee660 +2021,Santa Fe,II.5.1,0.6167699999999999,TJ,CH4,0.5,kg/TJ,0.30838499999999996,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,adc619da-e0c6-3238-9d3e-7b7689956639 +2021,Santa Fe,II.5.1,0.6167699999999999,TJ,N2O,2.0,kg/TJ,1.2335399999999999,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,2b537ab6-5ecb-390e-a1b4-56a9f122b813 +2021,Córdoba,II.2.1,4.3857,TJ,CO2,69300.0,kg/TJ,303929.01,Motor Gasoline combustion consumption by railway transport,AR-X,SESCO,annual,kg,19ad0b7e-4054-3fc4-8529-8b48d72d7a65 +2021,Córdoba,II.2.1,4.3857,TJ,CH4,33.0,kg/TJ,144.72809999999998,Motor Gasoline combustion consumption by railway transport,AR-X,SESCO,annual,kg,bd006427-6691-36e8-82ef-acbef28149bc +2021,Córdoba,II.2.1,4.3857,TJ,N2O,3.2,kg/TJ,14.03424,Motor Gasoline combustion consumption by railway transport,AR-X,SESCO,annual,kg,658b46a2-516d-37f2-8aa0-c92b6f8cd207 +2021,Buenos Aires,II.2.1,174.78467999999998,TJ,CO2,74100.0,kg/TJ,12951544.787999999,Gas Oil combustion consumption by railway transport,AR-B,SESCO,annual,kg,1dc83e59-8e1b-3b5d-936e-9fd387df5a21 +2021,Buenos Aires,II.2.1,174.78467999999998,TJ,CH4,3.9,kg/TJ,681.6602519999999,Gas Oil combustion consumption by railway transport,AR-B,SESCO,annual,kg,f4071a86-2c3c-328b-99e0-e6bc6624da0d +2021,Buenos Aires,II.2.1,174.78467999999998,TJ,N2O,3.9,kg/TJ,681.6602519999999,Gas Oil combustion consumption by railway transport,AR-B,SESCO,annual,kg,f4071a86-2c3c-328b-99e0-e6bc6624da0d +2021,Santa Fe,II.1.1,5.9805,TJ,CO2,69300.0,kg/TJ,414448.65,Motor Gasoline combustion consumption by freight transport,AR-S,SESCO,annual,kg,b1573ce6-5542-3b57-a3f8-2d978121952e +2021,Santa Fe,II.1.1,5.9805,TJ,CH4,33.0,kg/TJ,197.3565,Motor Gasoline combustion consumption by freight transport,AR-S,SESCO,annual,kg,12da96c3-b069-39ea-8e05-9239e93582ec +2021,Santa Fe,II.1.1,5.9805,TJ,N2O,3.2,kg/TJ,19.137600000000003,Motor Gasoline combustion consumption by freight transport,AR-S,SESCO,annual,kg,93fd11cd-b744-3fde-92a3-601e7cbb3d2b +2021,Buenos Aires,II.1.1,90.87791999999999,TJ,CO2,74100.0,kg/TJ,6734053.8719999995,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,f88af000-172b-32a2-999d-250adf81b078 +2021,Buenos Aires,II.1.1,90.87791999999999,TJ,CH4,3.9,kg/TJ,354.423888,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,4524c1d4-7f32-3a95-aab5-7c1521288f39 +2021,Buenos Aires,II.1.1,90.87791999999999,TJ,N2O,3.9,kg/TJ,354.423888,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,4524c1d4-7f32-3a95-aab5-7c1521288f39 +2021,Capital Federal,II.1.1,3.1424399999999997,TJ,CO2,74100.0,kg/TJ,232854.80399999997,Gas Oil combustion consumption by freight transport,AR-C,SESCO,annual,kg,307563cf-f8b8-325a-9f98-77af167d8438 +2021,Capital Federal,II.1.1,3.1424399999999997,TJ,CH4,3.9,kg/TJ,12.255515999999998,Gas Oil combustion consumption by freight transport,AR-C,SESCO,annual,kg,948458e4-a229-3701-91f1-840156041398 +2021,Capital Federal,II.1.1,3.1424399999999997,TJ,N2O,3.9,kg/TJ,12.255515999999998,Gas Oil combustion consumption by freight transport,AR-C,SESCO,annual,kg,948458e4-a229-3701-91f1-840156041398 +2021,Santa Fe,II.1.1,9.860759999999999,TJ,CO2,74100.0,kg/TJ,730682.3159999999,Gas Oil combustion consumption by freight transport,AR-S,SESCO,annual,kg,4ccc5fe7-e54f-3ea3-bcaa-0168feae59dc +2021,Santa Fe,II.1.1,9.860759999999999,TJ,CH4,3.9,kg/TJ,38.45696399999999,Gas Oil combustion consumption by freight transport,AR-S,SESCO,annual,kg,bd793909-9b45-3c1c-8bf4-1e17e2752771 +2021,Santa Fe,II.1.1,9.860759999999999,TJ,N2O,3.9,kg/TJ,38.45696399999999,Gas Oil combustion consumption by freight transport,AR-S,SESCO,annual,kg,bd793909-9b45-3c1c-8bf4-1e17e2752771 +2021,Buenos Aires,II.1.1,6.4654799999999994,TJ,CO2,74100.0,kg/TJ,479092.06799999997,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,697fc95d-9c27-3c9d-a7ae-4721ce2a0e34 +2021,Buenos Aires,II.1.1,6.4654799999999994,TJ,CH4,3.9,kg/TJ,25.215372,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,ff76a210-940c-319d-997c-494aaf975a95 +2021,Buenos Aires,II.1.1,6.4654799999999994,TJ,N2O,3.9,kg/TJ,25.215372,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,ff76a210-940c-319d-997c-494aaf975a95 +2021,Capital Federal,II.1.1,1.19196,TJ,CO2,74100.0,kg/TJ,88324.23599999999,Gas Oil combustion consumption by freight transport,AR-C,SESCO,annual,kg,25186f57-2717-36de-95d3-bea73056acce +2021,Capital Federal,II.1.1,1.19196,TJ,CH4,3.9,kg/TJ,4.648643999999999,Gas Oil combustion consumption by freight transport,AR-C,SESCO,annual,kg,93e8b129-246a-362b-9406-1d509e37d694 +2021,Capital Federal,II.1.1,1.19196,TJ,N2O,3.9,kg/TJ,4.648643999999999,Gas Oil combustion consumption by freight transport,AR-C,SESCO,annual,kg,93e8b129-246a-362b-9406-1d509e37d694 +2021,Santa Fe,II.1.1,22.53888,TJ,CO2,74100.0,kg/TJ,1670131.008,Gas Oil combustion consumption by freight transport,AR-S,SESCO,annual,kg,e2c2e782-3fbc-36aa-bfca-3ab82d24a184 +2021,Santa Fe,II.1.1,22.53888,TJ,CH4,3.9,kg/TJ,87.90163199999999,Gas Oil combustion consumption by freight transport,AR-S,SESCO,annual,kg,332e644d-da62-3ef1-aa3f-f1ca847a8b57 +2021,Santa Fe,II.1.1,22.53888,TJ,N2O,3.9,kg/TJ,87.90163199999999,Gas Oil combustion consumption by freight transport,AR-S,SESCO,annual,kg,332e644d-da62-3ef1-aa3f-f1ca847a8b57 +2021,Buenos Aires,II.1.1,2819.3466,TJ,CO2,74100.0,kg/TJ,208913583.06,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,9d25d177-92da-389f-93f4-01f2ec6f8522 +2021,Buenos Aires,II.1.1,2819.3466,TJ,CH4,3.9,kg/TJ,10995.451739999999,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,dfd1212e-da2b-379a-9e78-0a8eb8a9e2e2 +2021,Buenos Aires,II.1.1,2819.3466,TJ,N2O,3.9,kg/TJ,10995.451739999999,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,dfd1212e-da2b-379a-9e78-0a8eb8a9e2e2 +2021,Capital Federal,II.1.1,112.54992,TJ,CO2,74100.0,kg/TJ,8339949.072,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,094b6da0-8eb9-36b8-841a-a26e335ee69e +2021,Capital Federal,II.1.1,112.54992,TJ,CH4,3.9,kg/TJ,438.944688,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,4e9362d3-4dc9-3afb-868e-af3647833be1 +2021,Capital Federal,II.1.1,112.54992,TJ,N2O,3.9,kg/TJ,438.944688,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,4e9362d3-4dc9-3afb-868e-af3647833be1 +2021,Córdoba,II.1.1,25.464599999999997,TJ,CO2,74100.0,kg/TJ,1886926.8599999999,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,602457f4-7bbb-3e46-a69f-a4ae61478ec0 +2021,Córdoba,II.1.1,25.464599999999997,TJ,CH4,3.9,kg/TJ,99.31193999999999,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,ae3a825b-94c4-3c39-a223-d68894d45b4f +2021,Córdoba,II.1.1,25.464599999999997,TJ,N2O,3.9,kg/TJ,99.31193999999999,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,ae3a825b-94c4-3c39-a223-d68894d45b4f +2021,Santa Fe,II.1.1,2.4200399999999997,TJ,CO2,74100.0,kg/TJ,179324.96399999998,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,e82451a6-5ef1-3a55-a0af-583e12b90af3 +2021,Santa Fe,II.1.1,2.4200399999999997,TJ,CH4,3.9,kg/TJ,9.438156,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,45c440d9-43b3-31ab-804f-7f3d4c0aa880 +2021,Santa Fe,II.1.1,2.4200399999999997,TJ,N2O,3.9,kg/TJ,9.438156,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,45c440d9-43b3-31ab-804f-7f3d4c0aa880 +2021,Buenos Aires,II.1.1,1209.94776,TJ,CO2,74100.0,kg/TJ,89657129.016,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,7a981c40-d72a-3e12-ad81-611ff42404d0 +2021,Buenos Aires,II.1.1,1209.94776,TJ,CH4,3.9,kg/TJ,4718.796264,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,f948c60f-6cc1-3ecb-b635-d20323107b1a +2021,Buenos Aires,II.1.1,1209.94776,TJ,N2O,3.9,kg/TJ,4718.796264,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,f948c60f-6cc1-3ecb-b635-d20323107b1a +2021,Capital Federal,II.1.1,63.89628,TJ,CO2,74100.0,kg/TJ,4734714.348,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,04e4eb66-f857-3e6d-a58d-dc92ae821188 +2021,Capital Federal,II.1.1,63.89628,TJ,CH4,3.9,kg/TJ,249.19549199999997,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,59d4875b-2a3a-38f6-9116-549331f67df0 +2021,Capital Federal,II.1.1,63.89628,TJ,N2O,3.9,kg/TJ,249.19549199999997,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,59d4875b-2a3a-38f6-9116-549331f67df0 +2021,Córdoba,II.1.1,20.08272,TJ,CO2,74100.0,kg/TJ,1488129.552,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,2e1bd3a9-d2cf-3831-9e77-7d396e2a20f7 +2021,Córdoba,II.1.1,20.08272,TJ,CH4,3.9,kg/TJ,78.32260799999999,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,2665e42a-4f07-3374-9d3d-c07284500547 +2021,Córdoba,II.1.1,20.08272,TJ,N2O,3.9,kg/TJ,78.32260799999999,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,2665e42a-4f07-3374-9d3d-c07284500547 +2021,Buenos Aires,II.5.1,3266.7477024,TJ,CO2,74100.0,kg/TJ,242066004.74784,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,c0ab5594-f4fe-31f1-855e-2fdfe2bb578e +2021,Buenos Aires,II.5.1,3266.7477024,TJ,CH4,3.9,kg/TJ,12740.31603936,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,c660be7c-2a99-3d02-89f4-05ba72678432 +2021,Buenos Aires,II.5.1,3266.7477024,TJ,N2O,3.9,kg/TJ,12740.31603936,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,c660be7c-2a99-3d02-89f4-05ba72678432 +2021,Capital Federal,II.5.1,802.72773756,TJ,CO2,74100.0,kg/TJ,59482125.353196,Gas Oil combustion consumption by agriculture machines,AR-C,SESCO,annual,kg,b59d1115-a1dd-3825-8ceb-dbd87c5d119e +2021,Capital Federal,II.5.1,802.72773756,TJ,CH4,3.9,kg/TJ,3130.6381764840003,Gas Oil combustion consumption by agriculture machines,AR-C,SESCO,annual,kg,77c08845-41dc-30da-b46d-dc43e63a67e8 +2021,Capital Federal,II.5.1,802.72773756,TJ,N2O,3.9,kg/TJ,3130.6381764840003,Gas Oil combustion consumption by agriculture machines,AR-C,SESCO,annual,kg,77c08845-41dc-30da-b46d-dc43e63a67e8 +2021,Córdoba,II.5.1,1285.4966048400001,TJ,CO2,74100.0,kg/TJ,95255298.41864401,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,e58c5e5a-aa95-3563-a8d0-b21f69f33782 +2021,Córdoba,II.5.1,1285.4966048400001,TJ,CH4,3.9,kg/TJ,5013.436758876001,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,303fa9f6-454c-3b30-b9f2-6ce42bfc677a +2021,Córdoba,II.5.1,1285.4966048400001,TJ,N2O,3.9,kg/TJ,5013.436758876001,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,303fa9f6-454c-3b30-b9f2-6ce42bfc677a +2021,Entre Rios,II.5.1,711.66936204,TJ,CO2,74100.0,kg/TJ,52734699.727164,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,d2003880-d6ca-3e2c-845d-5ac17d632ead +2021,Entre Rios,II.5.1,711.66936204,TJ,CH4,3.9,kg/TJ,2775.510511956,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,044cfe46-2796-3a10-b76e-13ed0384a802 +2021,Entre Rios,II.5.1,711.66936204,TJ,N2O,3.9,kg/TJ,2775.510511956,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,044cfe46-2796-3a10-b76e-13ed0384a802 +2021,Jujuy,II.5.1,24.46403988,TJ,CO2,74100.0,kg/TJ,1812785.355108,Gas Oil combustion consumption by agriculture machines,AR-Y,SESCO,annual,kg,f636c1b7-9c90-33a2-ad6a-cd4822281961 +2021,Jujuy,II.5.1,24.46403988,TJ,CH4,3.9,kg/TJ,95.409755532,Gas Oil combustion consumption by agriculture machines,AR-Y,SESCO,annual,kg,566675ab-d736-394d-bd00-e3c75013edee +2021,Jujuy,II.5.1,24.46403988,TJ,N2O,3.9,kg/TJ,95.409755532,Gas Oil combustion consumption by agriculture machines,AR-Y,SESCO,annual,kg,566675ab-d736-394d-bd00-e3c75013edee +2021,La Pampa,II.5.1,288.98141916000003,TJ,CO2,74100.0,kg/TJ,21413523.159756,Gas Oil combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,9881accd-c9c7-3ae8-b7e2-518591f41e0a +2021,La Pampa,II.5.1,288.98141916000003,TJ,CH4,3.9,kg/TJ,1127.0275347240001,Gas Oil combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,49865907-bb24-3722-bc72-03b3be0127d1 +2021,La Pampa,II.5.1,288.98141916000003,TJ,N2O,3.9,kg/TJ,1127.0275347240001,Gas Oil combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,49865907-bb24-3722-bc72-03b3be0127d1 +2021,Neuquén,II.5.1,12.690762,TJ,CO2,74100.0,kg/TJ,940385.4641999999,Gas Oil combustion consumption by agriculture machines,AR-Q,SESCO,annual,kg,250d002f-5142-31e7-8dfc-7f1c5397b105 +2021,Neuquén,II.5.1,12.690762,TJ,CH4,3.9,kg/TJ,49.4939718,Gas Oil combustion consumption by agriculture machines,AR-Q,SESCO,annual,kg,dca54c1d-aece-3040-bcbd-fd5079993cf1 +2021,Neuquén,II.5.1,12.690762,TJ,N2O,3.9,kg/TJ,49.4939718,Gas Oil combustion consumption by agriculture machines,AR-Q,SESCO,annual,kg,dca54c1d-aece-3040-bcbd-fd5079993cf1 +2021,Rio Negro,II.5.1,163.48081764,TJ,CO2,74100.0,kg/TJ,12113928.587124,Gas Oil combustion consumption by agriculture machines,AR-R,SESCO,annual,kg,55be9dd8-756b-34eb-a349-23590da0ff2f +2021,Rio Negro,II.5.1,163.48081764,TJ,CH4,3.9,kg/TJ,637.575188796,Gas Oil combustion consumption by agriculture machines,AR-R,SESCO,annual,kg,12e6912a-e39c-3812-9c18-349689829e2a +2021,Rio Negro,II.5.1,163.48081764,TJ,N2O,3.9,kg/TJ,637.575188796,Gas Oil combustion consumption by agriculture machines,AR-R,SESCO,annual,kg,12e6912a-e39c-3812-9c18-349689829e2a +2021,San Luis,II.5.1,13.879651799999998,TJ,CO2,74100.0,kg/TJ,1028482.1983799998,Gas Oil combustion consumption by agriculture machines,AR-D,SESCO,annual,kg,45a631da-bbe1-3faa-a0b2-03047b7a387f +2021,San Luis,II.5.1,13.879651799999998,TJ,CH4,3.9,kg/TJ,54.13064201999999,Gas Oil combustion consumption by agriculture machines,AR-D,SESCO,annual,kg,6dc23453-746a-37bd-9a08-6d00172888be +2021,San Luis,II.5.1,13.879651799999998,TJ,N2O,3.9,kg/TJ,54.13064201999999,Gas Oil combustion consumption by agriculture machines,AR-D,SESCO,annual,kg,6dc23453-746a-37bd-9a08-6d00172888be +2021,Santa Fe,II.5.1,4073.27995956,TJ,CO2,74100.0,kg/TJ,301830045.003396,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,bdfec494-feec-3c0d-baa2-d2594ffe1876 +2021,Santa Fe,II.5.1,4073.27995956,TJ,CH4,3.9,kg/TJ,15885.791842284,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,85da1155-6b14-305a-9a7a-58c4a683472c +2021,Santa Fe,II.5.1,4073.27995956,TJ,N2O,3.9,kg/TJ,15885.791842284,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,85da1155-6b14-305a-9a7a-58c4a683472c +2021,Santiago del Estero,II.5.1,134.31792695999997,TJ,CO2,74100.0,kg/TJ,9952958.387735998,Gas Oil combustion consumption by agriculture machines,AR-G,SESCO,annual,kg,aa299729-c34b-3fb4-a4d0-e6b8aa80f0d3 +2021,Santiago del Estero,II.5.1,134.31792695999997,TJ,CH4,3.9,kg/TJ,523.8399151439999,Gas Oil combustion consumption by agriculture machines,AR-G,SESCO,annual,kg,d67def31-bc4c-3220-928b-b2b6b9d73e85 +2021,Santiago del Estero,II.5.1,134.31792695999997,TJ,N2O,3.9,kg/TJ,523.8399151439999,Gas Oil combustion consumption by agriculture machines,AR-G,SESCO,annual,kg,d67def31-bc4c-3220-928b-b2b6b9d73e85 +2021,Tucuman,II.5.1,152.84441676,TJ,CO2,74100.0,kg/TJ,11325771.281916,Gas Oil combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,5cd507a9-9589-3c2e-ac40-027265d042dd +2021,Tucuman,II.5.1,152.84441676,TJ,CH4,3.9,kg/TJ,596.093225364,Gas Oil combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,3b1dac29-a209-310f-ad94-bc5f46fe030b +2021,Tucuman,II.5.1,152.84441676,TJ,N2O,3.9,kg/TJ,596.093225364,Gas Oil combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,3b1dac29-a209-310f-ad94-bc5f46fe030b +2021,Buenos Aires,II.5.1,370.2662644800001,TJ,CO2,74100.0,kg/TJ,27436730.197968006,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,854e06af-67ed-31a1-9094-f17822af7c13 +2021,Buenos Aires,II.5.1,370.2662644800001,TJ,CH4,3.9,kg/TJ,1444.0384314720002,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,153cc87a-23ae-3005-b701-207c3e994a12 +2021,Buenos Aires,II.5.1,370.2662644800001,TJ,N2O,3.9,kg/TJ,1444.0384314720002,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,153cc87a-23ae-3005-b701-207c3e994a12 +2021,Capital Federal,II.5.1,45.08122752,TJ,CO2,74100.0,kg/TJ,3340518.9592319997,Gas Oil combustion consumption by agriculture machines,AR-C,SESCO,annual,kg,85380fa6-34ea-341a-9102-f4b5ea0328ab +2021,Capital Federal,II.5.1,45.08122752,TJ,CH4,3.9,kg/TJ,175.816787328,Gas Oil combustion consumption by agriculture machines,AR-C,SESCO,annual,kg,2a4352aa-3a5e-3981-9a02-10fcb62e25be +2021,Capital Federal,II.5.1,45.08122752,TJ,N2O,3.9,kg/TJ,175.816787328,Gas Oil combustion consumption by agriculture machines,AR-C,SESCO,annual,kg,2a4352aa-3a5e-3981-9a02-10fcb62e25be +2021,Córdoba,II.5.1,104.01631716,TJ,CO2,74100.0,kg/TJ,7707609.101556,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,9b7cb17f-1bdc-3108-9d96-d688b2cde78e +2021,Córdoba,II.5.1,104.01631716,TJ,CH4,3.9,kg/TJ,405.663636924,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,5ec285bb-8707-30b1-aac7-94fc4d95ed54 +2021,Córdoba,II.5.1,104.01631716,TJ,N2O,3.9,kg/TJ,405.663636924,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,5ec285bb-8707-30b1-aac7-94fc4d95ed54 +2021,Entre Rios,II.5.1,137.44927812,TJ,CO2,74100.0,kg/TJ,10184991.508692,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,d7eced9a-6d35-3aab-964c-5bf4d44ad948 +2021,Entre Rios,II.5.1,137.44927812,TJ,CH4,3.9,kg/TJ,536.052184668,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,68162895-9a77-3375-b03e-fb5d1fdca84a +2021,Entre Rios,II.5.1,137.44927812,TJ,N2O,3.9,kg/TJ,536.052184668,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,68162895-9a77-3375-b03e-fb5d1fdca84a +2021,Jujuy,II.5.1,58.00608324000001,TJ,CO2,74100.0,kg/TJ,4298250.768084001,Gas Oil combustion consumption by agriculture machines,AR-Y,SESCO,annual,kg,fed25912-1dad-3b0e-9066-1bbee97c51ce +2021,Jujuy,II.5.1,58.00608324000001,TJ,CH4,3.9,kg/TJ,226.22372463600004,Gas Oil combustion consumption by agriculture machines,AR-Y,SESCO,annual,kg,0b635d7b-4ee2-3417-9f2c-2ba0229afd49 +2021,Jujuy,II.5.1,58.00608324000001,TJ,N2O,3.9,kg/TJ,226.22372463600004,Gas Oil combustion consumption by agriculture machines,AR-Y,SESCO,annual,kg,0b635d7b-4ee2-3417-9f2c-2ba0229afd49 +2021,La Pampa,II.5.1,51.718855440000006,TJ,CO2,74100.0,kg/TJ,3832367.1881040004,Gas Oil combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,c2c560cf-0bd6-3e76-9f16-6f97ce08290d +2021,La Pampa,II.5.1,51.718855440000006,TJ,CH4,3.9,kg/TJ,201.70353621600003,Gas Oil combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,c40fe7c9-f736-306d-86e2-04013b45bb69 +2021,La Pampa,II.5.1,51.718855440000006,TJ,N2O,3.9,kg/TJ,201.70353621600003,Gas Oil combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,c40fe7c9-f736-306d-86e2-04013b45bb69 +2021,Neuquén,II.5.1,7.1268372,TJ,CO2,74100.0,kg/TJ,528098.63652,Gas Oil combustion consumption by agriculture machines,AR-Q,SESCO,annual,kg,c3d6b5b0-5916-3d62-9dd6-988c5dfa526e +2021,Neuquén,II.5.1,7.1268372,TJ,CH4,3.9,kg/TJ,27.794665079999998,Gas Oil combustion consumption by agriculture machines,AR-Q,SESCO,annual,kg,9a249897-4b6b-3eef-8466-0feff4607223 +2021,Neuquén,II.5.1,7.1268372,TJ,N2O,3.9,kg/TJ,27.794665079999998,Gas Oil combustion consumption by agriculture machines,AR-Q,SESCO,annual,kg,9a249897-4b6b-3eef-8466-0feff4607223 +2021,Rio Negro,II.5.1,134.4841512,TJ,CO2,74100.0,kg/TJ,9965275.603920002,Gas Oil combustion consumption by agriculture machines,AR-R,SESCO,annual,kg,1673b087-6db4-37d8-94f4-ec6f41055663 +2021,Rio Negro,II.5.1,134.4841512,TJ,CH4,3.9,kg/TJ,524.48818968,Gas Oil combustion consumption by agriculture machines,AR-R,SESCO,annual,kg,1ba13efd-796b-3656-8288-4782c63e35ba +2021,Rio Negro,II.5.1,134.4841512,TJ,N2O,3.9,kg/TJ,524.48818968,Gas Oil combustion consumption by agriculture machines,AR-R,SESCO,annual,kg,1ba13efd-796b-3656-8288-4782c63e35ba +2021,San Luis,II.5.1,17.001539519999998,TJ,CO2,74100.0,kg/TJ,1259814.0784319998,Gas Oil combustion consumption by agriculture machines,AR-D,SESCO,annual,kg,ff5c87a7-6c99-3a62-ba9a-e15c34b3a167 +2021,San Luis,II.5.1,17.001539519999998,TJ,CH4,3.9,kg/TJ,66.30600412799998,Gas Oil combustion consumption by agriculture machines,AR-D,SESCO,annual,kg,c57f4b06-3958-3ef5-819f-05770191dbe4 +2021,San Luis,II.5.1,17.001539519999998,TJ,N2O,3.9,kg/TJ,66.30600412799998,Gas Oil combustion consumption by agriculture machines,AR-D,SESCO,annual,kg,c57f4b06-3958-3ef5-819f-05770191dbe4 +2021,Santa Fe,II.5.1,282.68169384,TJ,CO2,74100.0,kg/TJ,20946713.513543997,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,c0412dc1-85d1-3acc-a9eb-6570acbc6f1c +2021,Santa Fe,II.5.1,282.68169384,TJ,CH4,3.9,kg/TJ,1102.458605976,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,f0c3bd69-93ce-3469-a6ea-f2303b12745e +2021,Santa Fe,II.5.1,282.68169384,TJ,N2O,3.9,kg/TJ,1102.458605976,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,f0c3bd69-93ce-3469-a6ea-f2303b12745e +2021,Santiago del Estero,II.5.1,30.05379048,TJ,CO2,74100.0,kg/TJ,2226985.874568,Gas Oil combustion consumption by agriculture machines,AR-G,SESCO,annual,kg,329f3e44-03c3-38eb-9941-23c235f888cc +2021,Santiago del Estero,II.5.1,30.05379048,TJ,CH4,3.9,kg/TJ,117.20978287199999,Gas Oil combustion consumption by agriculture machines,AR-G,SESCO,annual,kg,7fd7dc37-d1b3-395f-942b-52d22eb991b6 +2021,Santiago del Estero,II.5.1,30.05379048,TJ,N2O,3.9,kg/TJ,117.20978287199999,Gas Oil combustion consumption by agriculture machines,AR-G,SESCO,annual,kg,7fd7dc37-d1b3-395f-942b-52d22eb991b6 +2021,Tucuman,II.5.1,18.415998719999997,TJ,CO2,74100.0,kg/TJ,1364625.5051519999,Gas Oil combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,fecb85d0-74fb-3bae-8a6e-f6d79bfb6acb +2021,Tucuman,II.5.1,18.415998719999997,TJ,CH4,3.9,kg/TJ,71.82239500799999,Gas Oil combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,72f8f998-1bbe-37c0-8e16-9d559d82e809 +2021,Tucuman,II.5.1,18.415998719999997,TJ,N2O,3.9,kg/TJ,71.82239500799999,Gas Oil combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,72f8f998-1bbe-37c0-8e16-9d559d82e809 +2021,Buenos Aires,II.5.1,70.56499835,TJ,CO2,73300.0,kg/TJ,5172414.379055,Naphtha combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,3dab492e-e3e0-35fc-a0e6-2b072bb907ca +2021,Buenos Aires,II.5.1,70.56499835,TJ,CH4,0.5,kg/TJ,35.282499175,Naphtha combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,3903f74f-5830-3bcd-97ba-556561af6278 +2021,Buenos Aires,II.5.1,70.56499835,TJ,N2O,2.0,kg/TJ,141.1299967,Naphtha combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,655c8f74-3ea7-38cf-b7b4-34a158759cda +2021,Capital Federal,II.5.1,19.624970365000003,TJ,CO2,73300.0,kg/TJ,1438510.3277545003,Naphtha combustion consumption by agriculture machines,AR-C,SESCO,annual,kg,a8aab627-e38c-3d51-9fe7-daf416c5e8b3 +2021,Capital Federal,II.5.1,19.624970365000003,TJ,CH4,0.5,kg/TJ,9.812485182500001,Naphtha combustion consumption by agriculture machines,AR-C,SESCO,annual,kg,f5e384f9-6e6e-397c-af22-d6dd9504e4bf +2021,Capital Federal,II.5.1,19.624970365000003,TJ,N2O,2.0,kg/TJ,39.249940730000006,Naphtha combustion consumption by agriculture machines,AR-C,SESCO,annual,kg,2a3193c9-969f-3cb6-890d-e443b365f206 +2021,Córdoba,II.5.1,11.078799655000001,TJ,CO2,73300.0,kg/TJ,812076.0147115,Naphtha combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,da2e6874-71cd-3ae0-9e5c-d0e4172a522a +2021,Córdoba,II.5.1,11.078799655000001,TJ,CH4,0.5,kg/TJ,5.5393998275000005,Naphtha combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,fdd0a0e1-c9bf-36d8-9878-2e52bb1e1f9f +2021,Córdoba,II.5.1,11.078799655000001,TJ,N2O,2.0,kg/TJ,22.157599310000002,Naphtha combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,779038c3-aa1f-3857-85b1-8e4fcbdb6f7d +2021,Santa Fe,II.5.1,279.44354746000005,TJ,CO2,73300.0,kg/TJ,20483212.028818004,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,9d94017b-99e5-3fb7-9270-5bdd39e7ba0f +2021,Santa Fe,II.5.1,279.44354746000005,TJ,CH4,0.5,kg/TJ,139.72177373000002,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,2820702f-4559-346a-b323-d461f228c910 +2021,Santa Fe,II.5.1,279.44354746000005,TJ,N2O,2.0,kg/TJ,558.8870949200001,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,c0406518-a5d6-31df-8832-11753bdaeefd +2021,Tucuman,II.5.1,0.6133434999999998,TJ,CO2,73300.0,kg/TJ,44958.078549999984,Naphtha combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,ae2b7d5f-e158-36a3-bc6f-e480b3d04fba +2021,Tucuman,II.5.1,0.6133434999999998,TJ,CH4,0.5,kg/TJ,0.3066717499999999,Naphtha combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,09a24080-e927-3c6e-ae3e-6d88c42c4122 +2021,Tucuman,II.5.1,0.6133434999999998,TJ,N2O,2.0,kg/TJ,1.2266869999999996,Naphtha combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,0de0661d-0ff6-3670-870d-8521ecfd8eba +2021,Buenos Aires,II.5.1,16.930370765,TJ,CO2,73300.0,kg/TJ,1240996.1770745,Naphtha combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,5a840735-c717-3a13-8218-58ae4ddc6070 +2021,Buenos Aires,II.5.1,16.930370765,TJ,CH4,0.5,kg/TJ,8.4651853825,Naphtha combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,a40a137f-75bf-3c80-837f-7ec9ff3f7a28 +2021,Buenos Aires,II.5.1,16.930370765,TJ,N2O,2.0,kg/TJ,33.86074153,Naphtha combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,4139212f-3fc2-3735-974f-bec7a33f5d96 +2021,Capital Federal,II.5.1,4.279390114999999,TJ,CO2,73300.0,kg/TJ,313679.29542949994,Naphtha combustion consumption by agriculture machines,AR-C,SESCO,annual,kg,ef9f0fe2-d442-34a3-9246-8d5010a06dd6 +2021,Capital Federal,II.5.1,4.279390114999999,TJ,CH4,0.5,kg/TJ,2.1396950574999996,Naphtha combustion consumption by agriculture machines,AR-C,SESCO,annual,kg,18256207-ce85-39a4-bb95-ed7c17a5a490 +2021,Capital Federal,II.5.1,4.279390114999999,TJ,N2O,2.0,kg/TJ,8.558780229999998,Naphtha combustion consumption by agriculture machines,AR-C,SESCO,annual,kg,127ff485-875e-3e89-93ac-034ea65d9b5c +2021,Córdoba,II.5.1,2.5572312150000003,TJ,CO2,73300.0,kg/TJ,187445.04805950003,Naphtha combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,6ca14d71-5579-3179-b74c-e16b30b246a5 +2021,Córdoba,II.5.1,2.5572312150000003,TJ,CH4,0.5,kg/TJ,1.2786156075000001,Naphtha combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,79ea1e75-93de-38fe-a338-f0117e369eee +2021,Córdoba,II.5.1,2.5572312150000003,TJ,N2O,2.0,kg/TJ,5.114462430000001,Naphtha combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,36013c2a-b5e7-398a-96e3-63703041e6d5 +2021,Santa Fe,II.5.1,29.158658374999998,TJ,CO2,73300.0,kg/TJ,2137329.6588875,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,94d03c5c-dd30-3938-ad38-8e1d7f1e349e +2021,Santa Fe,II.5.1,29.158658374999998,TJ,CH4,0.5,kg/TJ,14.579329187499999,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,b5687b82-6c17-3037-be42-92a957965f15 +2021,Santa Fe,II.5.1,29.158658374999998,TJ,N2O,2.0,kg/TJ,58.317316749999996,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,bb78a643-8f3f-3234-829f-061d7d3b1e42 +2021,Buenos Aires,II.5.1,40.6674,TJ,CO2,69300.0,kg/TJ,2818250.82,Motor Gasoline combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,3c0ba326-5f62-3458-84d2-1f30ffa2068e +2021,Buenos Aires,II.5.1,40.6674,TJ,CH4,33.0,kg/TJ,1342.0242,Motor Gasoline combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,82c88186-f412-356e-b690-1fb6a18f4148 +2021,Buenos Aires,II.5.1,40.6674,TJ,N2O,3.2,kg/TJ,130.13568,Motor Gasoline combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,7bdacd97-1717-3a70-9734-456bf1614e05 +2021,Buenos Aires,II.5.1,9945.75036,TJ,CO2,74100.0,kg/TJ,736980101.676,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,a248e754-2b25-3484-8fa0-7ff73fdfb61b +2021,Buenos Aires,II.5.1,9945.75036,TJ,CH4,3.9,kg/TJ,38788.426404,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,73207639-5891-3340-99e2-1b045f2ccd81 +2021,Buenos Aires,II.5.1,9945.75036,TJ,N2O,3.9,kg/TJ,38788.426404,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,73207639-5891-3340-99e2-1b045f2ccd81 +2021,Capital Federal,II.5.1,59.85084,TJ,CO2,74100.0,kg/TJ,4434947.244,Gas Oil combustion consumption by agriculture machines,AR-C,SESCO,annual,kg,3e7e2e13-89c2-373a-82de-ea51276c781d +2021,Capital Federal,II.5.1,59.85084,TJ,CH4,3.9,kg/TJ,233.418276,Gas Oil combustion consumption by agriculture machines,AR-C,SESCO,annual,kg,7c3f423f-aa2d-3e22-a6c6-c92b4b01567f +2021,Capital Federal,II.5.1,59.85084,TJ,N2O,3.9,kg/TJ,233.418276,Gas Oil combustion consumption by agriculture machines,AR-C,SESCO,annual,kg,7c3f423f-aa2d-3e22-a6c6-c92b4b01567f +2021,Catamarca,II.5.1,186.5598,TJ,CO2,74100.0,kg/TJ,13824081.18,Gas Oil combustion consumption by agriculture machines,AR-K,SESCO,annual,kg,5919b280-7167-3fb7-82e6-9201eae2a7e1 +2021,Catamarca,II.5.1,186.5598,TJ,CH4,3.9,kg/TJ,727.58322,Gas Oil combustion consumption by agriculture machines,AR-K,SESCO,annual,kg,4b93191c-5b5e-32f8-ac33-bfde77d4ef85 +2021,Catamarca,II.5.1,186.5598,TJ,N2O,3.9,kg/TJ,727.58322,Gas Oil combustion consumption by agriculture machines,AR-K,SESCO,annual,kg,4b93191c-5b5e-32f8-ac33-bfde77d4ef85 +2021,Chaco,II.5.1,869.8418399999999,TJ,CO2,74100.0,kg/TJ,64455280.344,Gas Oil combustion consumption by agriculture machines,AR-H,SESCO,annual,kg,ede8d717-69f8-39c6-ab94-78ea73da5ddf +2021,Chaco,II.5.1,869.8418399999999,TJ,CH4,3.9,kg/TJ,3392.383176,Gas Oil combustion consumption by agriculture machines,AR-H,SESCO,annual,kg,676bbd01-1f99-34a1-b603-4b473de9176e +2021,Chaco,II.5.1,869.8418399999999,TJ,N2O,3.9,kg/TJ,3392.383176,Gas Oil combustion consumption by agriculture machines,AR-H,SESCO,annual,kg,676bbd01-1f99-34a1-b603-4b473de9176e +2021,Chubut,II.5.1,0.03612,TJ,CO2,74100.0,kg/TJ,2676.4919999999997,Gas Oil combustion consumption by agriculture machines,AR-U,SESCO,annual,kg,51d6eecc-6bf1-3069-b000-335f4876f388 +2021,Chubut,II.5.1,0.03612,TJ,CH4,3.9,kg/TJ,0.140868,Gas Oil combustion consumption by agriculture machines,AR-U,SESCO,annual,kg,04b2eb3f-6357-332f-88bd-75395b880319 +2021,Chubut,II.5.1,0.03612,TJ,N2O,3.9,kg/TJ,0.140868,Gas Oil combustion consumption by agriculture machines,AR-U,SESCO,annual,kg,04b2eb3f-6357-332f-88bd-75395b880319 +2021,Corrientes,II.5.1,738.5456399999999,TJ,CO2,74100.0,kg/TJ,54726231.923999995,Gas Oil combustion consumption by agriculture machines,AR-W,SESCO,annual,kg,63dbad72-b037-3475-91e3-846b9aed0ba8 +2021,Corrientes,II.5.1,738.5456399999999,TJ,CH4,3.9,kg/TJ,2880.3279959999995,Gas Oil combustion consumption by agriculture machines,AR-W,SESCO,annual,kg,2cee9e09-9b22-3fcc-beba-9a9f7a2869b7 +2021,Corrientes,II.5.1,738.5456399999999,TJ,N2O,3.9,kg/TJ,2880.3279959999995,Gas Oil combustion consumption by agriculture machines,AR-W,SESCO,annual,kg,2cee9e09-9b22-3fcc-beba-9a9f7a2869b7 +2021,Córdoba,II.5.1,7531.48956,TJ,CO2,74100.0,kg/TJ,558083376.396,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,90bf2d74-89c8-3502-a1dc-dc1a9d8abd89 +2021,Córdoba,II.5.1,7531.48956,TJ,CH4,3.9,kg/TJ,29372.809284,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,7293f213-3f87-3800-81f3-fd19420ca93d +2021,Córdoba,II.5.1,7531.48956,TJ,N2O,3.9,kg/TJ,29372.809284,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,7293f213-3f87-3800-81f3-fd19420ca93d +2021,Entre Rios,II.5.1,2215.962,TJ,CO2,74100.0,kg/TJ,164202784.2,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,5977e7c9-bc40-3d44-b833-de6ea357a938 +2021,Entre Rios,II.5.1,2215.962,TJ,CH4,3.9,kg/TJ,8642.2518,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,b4ca981e-22d6-3552-9df9-d2383c1c0b06 +2021,Entre Rios,II.5.1,2215.962,TJ,N2O,3.9,kg/TJ,8642.2518,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,b4ca981e-22d6-3552-9df9-d2383c1c0b06 +2021,Formosa,II.5.1,285.60084,TJ,CO2,74100.0,kg/TJ,21163022.244,Gas Oil combustion consumption by agriculture machines,AR-P,SESCO,annual,kg,3d594888-1633-3b91-95d0-b6b90e65f524 +2021,Formosa,II.5.1,285.60084,TJ,CH4,3.9,kg/TJ,1113.843276,Gas Oil combustion consumption by agriculture machines,AR-P,SESCO,annual,kg,2c4aed0c-c426-36df-9c29-b3285a6f5d94 +2021,Formosa,II.5.1,285.60084,TJ,N2O,3.9,kg/TJ,1113.843276,Gas Oil combustion consumption by agriculture machines,AR-P,SESCO,annual,kg,2c4aed0c-c426-36df-9c29-b3285a6f5d94 +2021,Jujuy,II.5.1,1030.53972,TJ,CO2,74100.0,kg/TJ,76362993.252,Gas Oil combustion consumption by agriculture machines,AR-Y,SESCO,annual,kg,21679a9a-8373-3188-a98a-4ea278dacb5f +2021,Jujuy,II.5.1,1030.53972,TJ,CH4,3.9,kg/TJ,4019.104908,Gas Oil combustion consumption by agriculture machines,AR-Y,SESCO,annual,kg,82b298c6-8ea8-31cd-aaf4-d7dc8e5b10cc +2021,Jujuy,II.5.1,1030.53972,TJ,N2O,3.9,kg/TJ,4019.104908,Gas Oil combustion consumption by agriculture machines,AR-Y,SESCO,annual,kg,82b298c6-8ea8-31cd-aaf4-d7dc8e5b10cc +2021,La Pampa,II.5.1,1548.53664,TJ,CO2,74100.0,kg/TJ,114746565.024,Gas Oil combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,dfd2d573-480b-3426-801c-541984a74bff +2021,La Pampa,II.5.1,1548.53664,TJ,CH4,3.9,kg/TJ,6039.292896,Gas Oil combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,f85994ae-1b71-3759-92f1-07f4e8df2231 +2021,La Pampa,II.5.1,1548.53664,TJ,N2O,3.9,kg/TJ,6039.292896,Gas Oil combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,f85994ae-1b71-3759-92f1-07f4e8df2231 +2021,La Rioja,II.5.1,141.26532,TJ,CO2,74100.0,kg/TJ,10467760.212,Gas Oil combustion consumption by agriculture machines,AR-F,SESCO,annual,kg,d58a7436-39c3-35ef-af5f-cd2a4b00eee4 +2021,La Rioja,II.5.1,141.26532,TJ,CH4,3.9,kg/TJ,550.934748,Gas Oil combustion consumption by agriculture machines,AR-F,SESCO,annual,kg,d182fba2-8694-3f58-876e-673d5481ec26 +2021,La Rioja,II.5.1,141.26532,TJ,N2O,3.9,kg/TJ,550.934748,Gas Oil combustion consumption by agriculture machines,AR-F,SESCO,annual,kg,d182fba2-8694-3f58-876e-673d5481ec26 +2021,Mendoza,II.5.1,2160.59004,TJ,CO2,74100.0,kg/TJ,160099721.96400002,Gas Oil combustion consumption by agriculture machines,AR-M,SESCO,annual,kg,9224f984-dd5c-38ce-9826-f240d4e2b89e +2021,Mendoza,II.5.1,2160.59004,TJ,CH4,3.9,kg/TJ,8426.301156,Gas Oil combustion consumption by agriculture machines,AR-M,SESCO,annual,kg,219b3984-23fb-3748-ad8d-458391413d8f +2021,Mendoza,II.5.1,2160.59004,TJ,N2O,3.9,kg/TJ,8426.301156,Gas Oil combustion consumption by agriculture machines,AR-M,SESCO,annual,kg,219b3984-23fb-3748-ad8d-458391413d8f +2021,Misiones,II.5.1,1116.61368,TJ,CO2,74100.0,kg/TJ,82741073.688,Gas Oil combustion consumption by agriculture machines,AR-N,SESCO,annual,kg,74a3cf64-6f8c-359f-89b4-6ec0f52d897a +2021,Misiones,II.5.1,1116.61368,TJ,CH4,3.9,kg/TJ,4354.793352,Gas Oil combustion consumption by agriculture machines,AR-N,SESCO,annual,kg,4adf9e33-63a7-3576-9424-239142dbf077 +2021,Misiones,II.5.1,1116.61368,TJ,N2O,3.9,kg/TJ,4354.793352,Gas Oil combustion consumption by agriculture machines,AR-N,SESCO,annual,kg,4adf9e33-63a7-3576-9424-239142dbf077 +2021,Rio Negro,II.5.1,253.3818,TJ,CO2,74100.0,kg/TJ,18775591.38,Gas Oil combustion consumption by agriculture machines,AR-R,SESCO,annual,kg,15811c84-9a75-35f4-ba79-8f6b70664bb1 +2021,Rio Negro,II.5.1,253.3818,TJ,CH4,3.9,kg/TJ,988.18902,Gas Oil combustion consumption by agriculture machines,AR-R,SESCO,annual,kg,5a592aa2-0833-3988-8a1b-f49388815342 +2021,Rio Negro,II.5.1,253.3818,TJ,N2O,3.9,kg/TJ,988.18902,Gas Oil combustion consumption by agriculture machines,AR-R,SESCO,annual,kg,5a592aa2-0833-3988-8a1b-f49388815342 +2021,Salta,II.5.1,1486.73532,TJ,CO2,74100.0,kg/TJ,110167087.212,Gas Oil combustion consumption by agriculture machines,AR-A,SESCO,annual,kg,3aed6ef1-4512-3912-85d2-0a8605790bad +2021,Salta,II.5.1,1486.73532,TJ,CH4,3.9,kg/TJ,5798.267748,Gas Oil combustion consumption by agriculture machines,AR-A,SESCO,annual,kg,8d987d7b-3eaf-38a7-a398-55bddb3933f4 +2021,Salta,II.5.1,1486.73532,TJ,N2O,3.9,kg/TJ,5798.267748,Gas Oil combustion consumption by agriculture machines,AR-A,SESCO,annual,kg,8d987d7b-3eaf-38a7-a398-55bddb3933f4 +2021,San Juan,II.5.1,452.72808,TJ,CO2,74100.0,kg/TJ,33547150.728,Gas Oil combustion consumption by agriculture machines,AR-J,SESCO,annual,kg,1e5d7e8a-f39c-3ac4-b664-202011c3cbf7 +2021,San Juan,II.5.1,452.72808,TJ,CH4,3.9,kg/TJ,1765.639512,Gas Oil combustion consumption by agriculture machines,AR-J,SESCO,annual,kg,41cb1d5b-307e-30a2-8ff3-1acbba4f709b +2021,San Juan,II.5.1,452.72808,TJ,N2O,3.9,kg/TJ,1765.639512,Gas Oil combustion consumption by agriculture machines,AR-J,SESCO,annual,kg,41cb1d5b-307e-30a2-8ff3-1acbba4f709b +2021,San Luis,II.5.1,326.95824,TJ,CO2,74100.0,kg/TJ,24227605.584,Gas Oil combustion consumption by agriculture machines,AR-D,SESCO,annual,kg,14b8398e-7777-3909-b62c-f66a10695d28 +2021,San Luis,II.5.1,326.95824,TJ,CH4,3.9,kg/TJ,1275.1371359999998,Gas Oil combustion consumption by agriculture machines,AR-D,SESCO,annual,kg,6be77171-8613-3e9c-90e6-5349af0ea0e6 +2021,San Luis,II.5.1,326.95824,TJ,N2O,3.9,kg/TJ,1275.1371359999998,Gas Oil combustion consumption by agriculture machines,AR-D,SESCO,annual,kg,6be77171-8613-3e9c-90e6-5349af0ea0e6 +2021,Santa Fe,II.5.1,7490.27664,TJ,CO2,74100.0,kg/TJ,555029499.024,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,4f70296a-3e0c-3c93-a833-2329ecfb024f +2021,Santa Fe,II.5.1,7490.27664,TJ,CH4,3.9,kg/TJ,29212.078896,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,af6c0b34-ce90-3021-acbf-be3921a3a411 +2021,Santa Fe,II.5.1,7490.27664,TJ,N2O,3.9,kg/TJ,29212.078896,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,af6c0b34-ce90-3021-acbf-be3921a3a411 +2021,Santiago del Estero,II.5.1,1627.3865999999998,TJ,CO2,74100.0,kg/TJ,120589347.05999999,Gas Oil combustion consumption by agriculture machines,AR-G,SESCO,annual,kg,81863f75-8def-32b2-8911-877aa446954e +2021,Santiago del Estero,II.5.1,1627.3865999999998,TJ,CH4,3.9,kg/TJ,6346.807739999999,Gas Oil combustion consumption by agriculture machines,AR-G,SESCO,annual,kg,0c0955b1-7b77-3fd6-9235-7c58c7b40050 +2021,Santiago del Estero,II.5.1,1627.3865999999998,TJ,N2O,3.9,kg/TJ,6346.807739999999,Gas Oil combustion consumption by agriculture machines,AR-G,SESCO,annual,kg,0c0955b1-7b77-3fd6-9235-7c58c7b40050 +2021,Tucuman,II.5.1,1323.6896399999998,TJ,CO2,74100.0,kg/TJ,98085402.32399999,Gas Oil combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,778f3cc5-d798-3aa7-8bc0-8d111c900953 +2021,Tucuman,II.5.1,1323.6896399999998,TJ,CH4,3.9,kg/TJ,5162.389595999999,Gas Oil combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,22c76a19-6729-3873-9664-7003d61a6827 +2021,Tucuman,II.5.1,1323.6896399999998,TJ,N2O,3.9,kg/TJ,5162.389595999999,Gas Oil combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,22c76a19-6729-3873-9664-7003d61a6827 +2021,Buenos Aires,II.5.1,929.25924,TJ,CO2,74100.0,kg/TJ,68858109.684,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,25696e11-71f4-3379-a067-7b3413a63844 +2021,Buenos Aires,II.5.1,929.25924,TJ,CH4,3.9,kg/TJ,3624.111036,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,a828e021-983c-3239-8e6d-1e1be912f1be +2021,Buenos Aires,II.5.1,929.25924,TJ,N2O,3.9,kg/TJ,3624.111036,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,a828e021-983c-3239-8e6d-1e1be912f1be +2021,Capital Federal,II.5.1,7.729679999999999,TJ,CO2,74100.0,kg/TJ,572769.288,Gas Oil combustion consumption by agriculture machines,AR-C,SESCO,annual,kg,2ed99b05-9105-3a56-ac0f-4a9ee7c4b95e +2021,Capital Federal,II.5.1,7.729679999999999,TJ,CH4,3.9,kg/TJ,30.145751999999995,Gas Oil combustion consumption by agriculture machines,AR-C,SESCO,annual,kg,fb612bfc-01dc-319b-becc-55d74a6c6a2c +2021,Capital Federal,II.5.1,7.729679999999999,TJ,N2O,3.9,kg/TJ,30.145751999999995,Gas Oil combustion consumption by agriculture machines,AR-C,SESCO,annual,kg,fb612bfc-01dc-319b-becc-55d74a6c6a2c +2021,Catamarca,II.5.1,58.8756,TJ,CO2,74100.0,kg/TJ,4362681.96,Gas Oil combustion consumption by agriculture machines,AR-K,SESCO,annual,kg,089d7448-ec84-3315-b1a8-ff89c522838a +2021,Catamarca,II.5.1,58.8756,TJ,CH4,3.9,kg/TJ,229.61484,Gas Oil combustion consumption by agriculture machines,AR-K,SESCO,annual,kg,a93a1099-3d9d-386d-84e3-015352ae6190 +2021,Catamarca,II.5.1,58.8756,TJ,N2O,3.9,kg/TJ,229.61484,Gas Oil combustion consumption by agriculture machines,AR-K,SESCO,annual,kg,a93a1099-3d9d-386d-84e3-015352ae6190 +2021,Chaco,II.5.1,65.44944,TJ,CO2,74100.0,kg/TJ,4849803.504,Gas Oil combustion consumption by agriculture machines,AR-H,SESCO,annual,kg,0e29ffe1-3af8-3dda-a4f2-d36bfb134ba1 +2021,Chaco,II.5.1,65.44944,TJ,CH4,3.9,kg/TJ,255.25281599999997,Gas Oil combustion consumption by agriculture machines,AR-H,SESCO,annual,kg,3ee6e21d-78f0-36f2-b089-4b36cbb38171 +2021,Chaco,II.5.1,65.44944,TJ,N2O,3.9,kg/TJ,255.25281599999997,Gas Oil combustion consumption by agriculture machines,AR-H,SESCO,annual,kg,3ee6e21d-78f0-36f2-b089-4b36cbb38171 +2021,Corrientes,II.5.1,58.839479999999995,TJ,CO2,74100.0,kg/TJ,4360005.467999999,Gas Oil combustion consumption by agriculture machines,AR-W,SESCO,annual,kg,95fc0d89-f963-3f2c-8416-a111e4eb3099 +2021,Corrientes,II.5.1,58.839479999999995,TJ,CH4,3.9,kg/TJ,229.47397199999997,Gas Oil combustion consumption by agriculture machines,AR-W,SESCO,annual,kg,8d0c6987-6c0c-32d7-8cef-bfe088c0e842 +2021,Corrientes,II.5.1,58.839479999999995,TJ,N2O,3.9,kg/TJ,229.47397199999997,Gas Oil combustion consumption by agriculture machines,AR-W,SESCO,annual,kg,8d0c6987-6c0c-32d7-8cef-bfe088c0e842 +2021,Córdoba,II.5.1,764.73264,TJ,CO2,74100.0,kg/TJ,56666688.624,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,d6047409-6278-3241-b8ab-62d9a0e8a4ed +2021,Córdoba,II.5.1,764.73264,TJ,CH4,3.9,kg/TJ,2982.4572959999996,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,2ba21859-f503-3717-a5ba-d62c7a6b9947 +2021,Córdoba,II.5.1,764.73264,TJ,N2O,3.9,kg/TJ,2982.4572959999996,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,2ba21859-f503-3717-a5ba-d62c7a6b9947 +2021,Entre Rios,II.5.1,87.591,TJ,CO2,74100.0,kg/TJ,6490493.1,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,f379576b-6eba-3fa3-b8f3-f7c9d332f21f +2021,Entre Rios,II.5.1,87.591,TJ,CH4,3.9,kg/TJ,341.6049,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,123e2523-d0d4-3ee8-aada-c20dab0decb0 +2021,Entre Rios,II.5.1,87.591,TJ,N2O,3.9,kg/TJ,341.6049,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,123e2523-d0d4-3ee8-aada-c20dab0decb0 +2021,Formosa,II.5.1,50.78472,TJ,CO2,74100.0,kg/TJ,3763147.752,Gas Oil combustion consumption by agriculture machines,AR-P,SESCO,annual,kg,ea151082-bab8-3804-aa4b-64224791d3d4 +2021,Formosa,II.5.1,50.78472,TJ,CH4,3.9,kg/TJ,198.060408,Gas Oil combustion consumption by agriculture machines,AR-P,SESCO,annual,kg,915d31b3-c91a-33c1-a5e7-2a8def0eb6a7 +2021,Formosa,II.5.1,50.78472,TJ,N2O,3.9,kg/TJ,198.060408,Gas Oil combustion consumption by agriculture machines,AR-P,SESCO,annual,kg,915d31b3-c91a-33c1-a5e7-2a8def0eb6a7 +2021,Jujuy,II.5.1,48.509159999999994,TJ,CO2,74100.0,kg/TJ,3594528.7559999996,Gas Oil combustion consumption by agriculture machines,AR-Y,SESCO,annual,kg,45b16c1e-3e86-3f76-92d4-ce8916ecc8da +2021,Jujuy,II.5.1,48.509159999999994,TJ,CH4,3.9,kg/TJ,189.18572399999996,Gas Oil combustion consumption by agriculture machines,AR-Y,SESCO,annual,kg,56a6a629-afac-3bd3-836c-bbdf5f29cf2a +2021,Jujuy,II.5.1,48.509159999999994,TJ,N2O,3.9,kg/TJ,189.18572399999996,Gas Oil combustion consumption by agriculture machines,AR-Y,SESCO,annual,kg,56a6a629-afac-3bd3-836c-bbdf5f29cf2a +2021,La Pampa,II.5.1,200.35764,TJ,CO2,74100.0,kg/TJ,14846501.124,Gas Oil combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,b9b610e5-a2ab-3717-a46e-0ae3cafb6c0a +2021,La Pampa,II.5.1,200.35764,TJ,CH4,3.9,kg/TJ,781.394796,Gas Oil combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,8133a3a0-0a1c-392d-97ee-954d06808857 +2021,La Pampa,II.5.1,200.35764,TJ,N2O,3.9,kg/TJ,781.394796,Gas Oil combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,8133a3a0-0a1c-392d-97ee-954d06808857 +2021,La Rioja,II.5.1,22.90008,TJ,CO2,74100.0,kg/TJ,1696895.9279999998,Gas Oil combustion consumption by agriculture machines,AR-F,SESCO,annual,kg,11bc756a-69b6-3999-a36e-95eff748880c +2021,La Rioja,II.5.1,22.90008,TJ,CH4,3.9,kg/TJ,89.310312,Gas Oil combustion consumption by agriculture machines,AR-F,SESCO,annual,kg,be13f099-7be5-3309-b7f6-f95aee1e03d3 +2021,La Rioja,II.5.1,22.90008,TJ,N2O,3.9,kg/TJ,89.310312,Gas Oil combustion consumption by agriculture machines,AR-F,SESCO,annual,kg,be13f099-7be5-3309-b7f6-f95aee1e03d3 +2021,Mendoza,II.5.1,327.96959999999996,TJ,CO2,74100.0,kg/TJ,24302547.359999996,Gas Oil combustion consumption by agriculture machines,AR-M,SESCO,annual,kg,c221b0b7-b9e0-344b-ac41-7236f655d35d +2021,Mendoza,II.5.1,327.96959999999996,TJ,CH4,3.9,kg/TJ,1279.0814399999997,Gas Oil combustion consumption by agriculture machines,AR-M,SESCO,annual,kg,7184faac-f3f4-39a8-8305-bf6130ba8c8a +2021,Mendoza,II.5.1,327.96959999999996,TJ,N2O,3.9,kg/TJ,1279.0814399999997,Gas Oil combustion consumption by agriculture machines,AR-M,SESCO,annual,kg,7184faac-f3f4-39a8-8305-bf6130ba8c8a +2021,Misiones,II.5.1,149.78964,TJ,CO2,74100.0,kg/TJ,11099412.324,Gas Oil combustion consumption by agriculture machines,AR-N,SESCO,annual,kg,4624d6f6-3269-34f3-85e5-a0fcc9559056 +2021,Misiones,II.5.1,149.78964,TJ,CH4,3.9,kg/TJ,584.179596,Gas Oil combustion consumption by agriculture machines,AR-N,SESCO,annual,kg,c546682e-6879-32e7-87ea-b6dcc48755ac +2021,Misiones,II.5.1,149.78964,TJ,N2O,3.9,kg/TJ,584.179596,Gas Oil combustion consumption by agriculture machines,AR-N,SESCO,annual,kg,c546682e-6879-32e7-87ea-b6dcc48755ac +2021,Neuquén,II.5.1,20.732879999999998,TJ,CO2,74100.0,kg/TJ,1536306.4079999998,Gas Oil combustion consumption by agriculture machines,AR-Q,SESCO,annual,kg,50a855e4-4512-340e-8e4a-5bea50c7ac7a +2021,Neuquén,II.5.1,20.732879999999998,TJ,CH4,3.9,kg/TJ,80.85823199999999,Gas Oil combustion consumption by agriculture machines,AR-Q,SESCO,annual,kg,2c877421-832e-3669-bab6-5bb01143ae22 +2021,Neuquén,II.5.1,20.732879999999998,TJ,N2O,3.9,kg/TJ,80.85823199999999,Gas Oil combustion consumption by agriculture machines,AR-Q,SESCO,annual,kg,2c877421-832e-3669-bab6-5bb01143ae22 +2021,Rio Negro,II.5.1,64.79928,TJ,CO2,74100.0,kg/TJ,4801626.648,Gas Oil combustion consumption by agriculture machines,AR-R,SESCO,annual,kg,89faca66-ddcb-3214-b89c-c853922a51a9 +2021,Rio Negro,II.5.1,64.79928,TJ,CH4,3.9,kg/TJ,252.71719199999998,Gas Oil combustion consumption by agriculture machines,AR-R,SESCO,annual,kg,1373d0e2-b19d-372f-9aa8-be0d730d7e07 +2021,Rio Negro,II.5.1,64.79928,TJ,N2O,3.9,kg/TJ,252.71719199999998,Gas Oil combustion consumption by agriculture machines,AR-R,SESCO,annual,kg,1373d0e2-b19d-372f-9aa8-be0d730d7e07 +2021,Salta,II.5.1,336.06048,TJ,CO2,74100.0,kg/TJ,24902081.568,Gas Oil combustion consumption by agriculture machines,AR-A,SESCO,annual,kg,0889f0d1-805c-3c91-a913-75d7834b053a +2021,Salta,II.5.1,336.06048,TJ,CH4,3.9,kg/TJ,1310.6358719999998,Gas Oil combustion consumption by agriculture machines,AR-A,SESCO,annual,kg,320b3788-f6f5-3bbd-a641-f3d88909c29a +2021,Salta,II.5.1,336.06048,TJ,N2O,3.9,kg/TJ,1310.6358719999998,Gas Oil combustion consumption by agriculture machines,AR-A,SESCO,annual,kg,320b3788-f6f5-3bbd-a641-f3d88909c29a +2021,San Juan,II.5.1,80.22252,TJ,CO2,74100.0,kg/TJ,5944488.732,Gas Oil combustion consumption by agriculture machines,AR-J,SESCO,annual,kg,88983041-bd15-3dec-a1e8-f694362c6815 +2021,San Juan,II.5.1,80.22252,TJ,CH4,3.9,kg/TJ,312.86782800000003,Gas Oil combustion consumption by agriculture machines,AR-J,SESCO,annual,kg,526f8bdf-e9f0-395b-a470-059bea34983a +2021,San Juan,II.5.1,80.22252,TJ,N2O,3.9,kg/TJ,312.86782800000003,Gas Oil combustion consumption by agriculture machines,AR-J,SESCO,annual,kg,526f8bdf-e9f0-395b-a470-059bea34983a +2021,San Luis,II.5.1,57.90036,TJ,CO2,74100.0,kg/TJ,4290416.676,Gas Oil combustion consumption by agriculture machines,AR-D,SESCO,annual,kg,6486d4ce-244f-3ef9-8fea-470be9f585cf +2021,San Luis,II.5.1,57.90036,TJ,CH4,3.9,kg/TJ,225.81140399999998,Gas Oil combustion consumption by agriculture machines,AR-D,SESCO,annual,kg,ad8a48ff-748b-38a2-8b3f-9f403dd621f7 +2021,San Luis,II.5.1,57.90036,TJ,N2O,3.9,kg/TJ,225.81140399999998,Gas Oil combustion consumption by agriculture machines,AR-D,SESCO,annual,kg,ad8a48ff-748b-38a2-8b3f-9f403dd621f7 +2021,Santa Fe,II.5.1,1012.9492799999999,TJ,CO2,74100.0,kg/TJ,75059541.648,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,b18835c1-51aa-3109-aabb-808d4a9b554e +2021,Santa Fe,II.5.1,1012.9492799999999,TJ,CH4,3.9,kg/TJ,3950.5021919999995,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,61da16ab-1103-3ce9-8545-29ae9d2556fc +2021,Santa Fe,II.5.1,1012.9492799999999,TJ,N2O,3.9,kg/TJ,3950.5021919999995,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,61da16ab-1103-3ce9-8545-29ae9d2556fc +2021,Santiago del Estero,II.5.1,309.18719999999996,TJ,CO2,74100.0,kg/TJ,22910771.519999996,Gas Oil combustion consumption by agriculture machines,AR-G,SESCO,annual,kg,fd08af92-3cd3-354f-9b9d-28f4f880fdec +2021,Santiago del Estero,II.5.1,309.18719999999996,TJ,CH4,3.9,kg/TJ,1205.8300799999997,Gas Oil combustion consumption by agriculture machines,AR-G,SESCO,annual,kg,d8359ed0-09f1-30e2-a869-8144ee1cd2d6 +2021,Santiago del Estero,II.5.1,309.18719999999996,TJ,N2O,3.9,kg/TJ,1205.8300799999997,Gas Oil combustion consumption by agriculture machines,AR-G,SESCO,annual,kg,d8359ed0-09f1-30e2-a869-8144ee1cd2d6 +2021,Tucuman,II.5.1,150.2592,TJ,CO2,74100.0,kg/TJ,11134206.719999999,Gas Oil combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,7fcf63c2-d664-3d12-a242-41cf7cc6098d +2021,Tucuman,II.5.1,150.2592,TJ,CH4,3.9,kg/TJ,586.0108799999999,Gas Oil combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,3eb81cab-55c1-393d-84d7-2c55a4a4ea78 +2021,Tucuman,II.5.1,150.2592,TJ,N2O,3.9,kg/TJ,586.0108799999999,Gas Oil combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,3eb81cab-55c1-393d-84d7-2c55a4a4ea78 +2021,Buenos Aires,II.5.1,6.3220529999999995,TJ,CO2,71500.0,kg/TJ,452026.78949999996,Jet Kerosene combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,db7511a7-ccdc-3776-bdbc-ffff7e760415 +2021,Buenos Aires,II.5.1,6.3220529999999995,TJ,CH4,0.5,kg/TJ,3.1610264999999997,Jet Kerosene combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,c295222a-be1d-3cf3-8503-e98c3b8d828e +2021,Buenos Aires,II.5.1,6.3220529999999995,TJ,N2O,2.0,kg/TJ,12.644105999999999,Jet Kerosene combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,98bb9f0d-4da8-334e-8367-cae68ff7710c +2021,Córdoba,II.5.1,0.31453,TJ,CO2,71500.0,kg/TJ,22488.894999999997,Jet Kerosene combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,f15cf9af-afeb-31b9-a32e-757a60ba7346 +2021,Córdoba,II.5.1,0.31453,TJ,CH4,0.5,kg/TJ,0.157265,Jet Kerosene combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,cf48b8c3-2f61-3dd0-b123-b5d477ee9603 +2021,Córdoba,II.5.1,0.31453,TJ,N2O,2.0,kg/TJ,0.62906,Jet Kerosene combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,ba1ec442-4a67-3a2f-9a40-c16e4a8f5665 +2021,La Pampa,II.5.1,0.22017099999999998,TJ,CO2,71500.0,kg/TJ,15742.226499999999,Jet Kerosene combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,00b63c61-5ae1-3d1b-a97d-cb48a686ddc8 +2021,La Pampa,II.5.1,0.22017099999999998,TJ,CH4,0.5,kg/TJ,0.11008549999999999,Jet Kerosene combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,eaf44d86-d101-33a5-9bf6-d28271d76f0f +2021,La Pampa,II.5.1,0.22017099999999998,TJ,N2O,2.0,kg/TJ,0.44034199999999996,Jet Kerosene combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,5424336b-b984-3a8f-905e-32d5474f922d +2021,Santa Fe,II.5.1,0.25162399999999996,TJ,CO2,71500.0,kg/TJ,17991.115999999998,Jet Kerosene combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,9f968c3e-cbe5-3315-bc81-a6a88ff259f2 +2021,Santa Fe,II.5.1,0.25162399999999996,TJ,CH4,0.5,kg/TJ,0.12581199999999998,Jet Kerosene combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,00ff08c4-4804-379c-97b3-2b1ae630872a +2021,Santa Fe,II.5.1,0.25162399999999996,TJ,N2O,2.0,kg/TJ,0.5032479999999999,Jet Kerosene combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,a0907ad1-e862-3abd-a013-011f9aebfb24 +2021,Buenos Aires,II.5.1,5.516665,TJ,CO2,73300.0,kg/TJ,404371.54449999996,Naphtha combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,e31db194-c07d-330f-a8e6-749c1c53dc9c +2021,Buenos Aires,II.5.1,5.516665,TJ,CH4,0.5,kg/TJ,2.7583325,Naphtha combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,53c04084-39b7-3fea-9006-a14717ec1216 +2021,Buenos Aires,II.5.1,5.516665,TJ,N2O,2.0,kg/TJ,11.03333,Naphtha combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,23a047ff-5a53-3bfa-aead-558c4ab20ac8 +2021,Entre Rios,II.5.1,0.376915,TJ,CO2,73300.0,kg/TJ,27627.8695,Naphtha combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,c0e2fd71-d23c-3c65-9adf-c1c5cbaece78 +2021,Entre Rios,II.5.1,0.376915,TJ,CH4,0.5,kg/TJ,0.1884575,Naphtha combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,baab8fa3-0612-3926-9753-ea5db4ccca74 +2021,Entre Rios,II.5.1,0.376915,TJ,N2O,2.0,kg/TJ,0.75383,Naphtha combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,045b71fa-9838-308e-be74-1e73b7b803e8 +2021,Salta,II.5.1,0.719565,TJ,CO2,73300.0,kg/TJ,52744.1145,Naphtha combustion consumption by agriculture machines,AR-A,SESCO,annual,kg,1d8d9745-8ea4-3321-9a3f-bc8a4484b148 +2021,Salta,II.5.1,0.719565,TJ,CH4,0.5,kg/TJ,0.3597825,Naphtha combustion consumption by agriculture machines,AR-A,SESCO,annual,kg,ce2aecb3-b798-3fcb-bf07-7c923fe062c5 +2021,Salta,II.5.1,0.719565,TJ,N2O,2.0,kg/TJ,1.43913,Naphtha combustion consumption by agriculture machines,AR-A,SESCO,annual,kg,cfcf733e-1d9f-39a0-8513-b681b15e4317 +2021,Santa Fe,II.5.1,12.027014999999999,TJ,CO2,73300.0,kg/TJ,881580.1994999999,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,9b8a5a43-f067-3974-9699-81df427e6be6 +2021,Santa Fe,II.5.1,12.027014999999999,TJ,CH4,0.5,kg/TJ,6.013507499999999,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,97732e2b-fd9a-3007-a094-1cad61649261 +2021,Santa Fe,II.5.1,12.027014999999999,TJ,N2O,2.0,kg/TJ,24.054029999999997,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,d345dc94-4388-346b-9757-902aac95871d +2021,Santa Fe,II.5.1,0.82236,TJ,CO2,73300.0,kg/TJ,60278.988,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,9416bc52-6023-3030-887f-463101bec796 +2021,Santa Fe,II.5.1,0.82236,TJ,CH4,0.5,kg/TJ,0.41118,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,eb837b43-b15d-3258-b130-44d670bca2a0 +2021,Santa Fe,II.5.1,0.82236,TJ,N2O,2.0,kg/TJ,1.64472,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,b06be6c3-7fcb-3513-ae11-de597c4435b1 +2021,San Juan,II.2.1,3.0702,TJ,CO2,74100.0,kg/TJ,227501.81999999998,Gas Oil combustion consumption by railway transport,AR-J,SESCO,annual,kg,4de4ae97-b5bf-359c-93c4-db82289a5d94 +2021,San Juan,II.2.1,3.0702,TJ,CH4,3.9,kg/TJ,11.97378,Gas Oil combustion consumption by railway transport,AR-J,SESCO,annual,kg,f4458fcb-f8a8-319e-bfe4-0182e1ff1f87 +2021,San Juan,II.2.1,3.0702,TJ,N2O,3.9,kg/TJ,11.97378,Gas Oil combustion consumption by railway transport,AR-J,SESCO,annual,kg,f4458fcb-f8a8-319e-bfe4-0182e1ff1f87 +2021,San Juan,II.2.1,4.98456,TJ,CO2,74100.0,kg/TJ,369355.896,Gas Oil combustion consumption by railway transport,AR-J,SESCO,annual,kg,fe84da45-a4ba-39af-ab1c-749d38676f07 +2021,San Juan,II.2.1,4.98456,TJ,CH4,3.9,kg/TJ,19.439784,Gas Oil combustion consumption by railway transport,AR-J,SESCO,annual,kg,aacd1e09-3953-3876-a0d4-0eebbd4e1b38 +2021,San Juan,II.2.1,4.98456,TJ,N2O,3.9,kg/TJ,19.439784,Gas Oil combustion consumption by railway transport,AR-J,SESCO,annual,kg,aacd1e09-3953-3876-a0d4-0eebbd4e1b38 +2021,Buenos Aires,II.1.1,11169.96552,TJ,CO2,74100.0,kg/TJ,827694445.032,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,bd7d49e6-0607-3671-9548-91df665fab01 +2021,Buenos Aires,II.1.1,11169.96552,TJ,CH4,3.9,kg/TJ,43562.865527999995,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,a9fa3f54-4c58-3a52-adfe-8a0225761b9d +2021,Buenos Aires,II.1.1,11169.96552,TJ,N2O,3.9,kg/TJ,43562.865527999995,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,a9fa3f54-4c58-3a52-adfe-8a0225761b9d +2021,Capital Federal,II.1.1,884.14536,TJ,CO2,74100.0,kg/TJ,65515171.176,Gas Oil combustion consumption by freight transport,AR-C,SESCO,annual,kg,c84cdac8-094c-3046-89d9-d094ba56b145 +2021,Capital Federal,II.1.1,884.14536,TJ,CH4,3.9,kg/TJ,3448.1669039999997,Gas Oil combustion consumption by freight transport,AR-C,SESCO,annual,kg,55b03431-2813-3909-aac9-2be770cfde56 +2021,Capital Federal,II.1.1,884.14536,TJ,N2O,3.9,kg/TJ,3448.1669039999997,Gas Oil combustion consumption by freight transport,AR-C,SESCO,annual,kg,55b03431-2813-3909-aac9-2be770cfde56 +2021,Catamarca,II.1.1,37.2036,TJ,CO2,74100.0,kg/TJ,2756786.7600000002,Gas Oil combustion consumption by freight transport,AR-K,SESCO,annual,kg,4458cbba-0265-38d3-bca6-69260b833beb +2021,Catamarca,II.1.1,37.2036,TJ,CH4,3.9,kg/TJ,145.09404,Gas Oil combustion consumption by freight transport,AR-K,SESCO,annual,kg,9ba433a8-4633-3f7b-af7b-56bb2a9f71ea +2021,Catamarca,II.1.1,37.2036,TJ,N2O,3.9,kg/TJ,145.09404,Gas Oil combustion consumption by freight transport,AR-K,SESCO,annual,kg,9ba433a8-4633-3f7b-af7b-56bb2a9f71ea +2021,Chaco,II.1.1,418.19736,TJ,CO2,74100.0,kg/TJ,30988424.376000002,Gas Oil combustion consumption by freight transport,AR-H,SESCO,annual,kg,d7ddde96-7826-30cc-8f72-318d4752f84a +2021,Chaco,II.1.1,418.19736,TJ,CH4,3.9,kg/TJ,1630.9697039999999,Gas Oil combustion consumption by freight transport,AR-H,SESCO,annual,kg,c44c25d7-c2ae-3db2-a7d8-772820101460 +2021,Chaco,II.1.1,418.19736,TJ,N2O,3.9,kg/TJ,1630.9697039999999,Gas Oil combustion consumption by freight transport,AR-H,SESCO,annual,kg,c44c25d7-c2ae-3db2-a7d8-772820101460 +2021,Chubut,II.1.1,830.36268,TJ,CO2,74100.0,kg/TJ,61529874.588,Gas Oil combustion consumption by freight transport,AR-U,SESCO,annual,kg,92228826-7fcd-33b8-9355-817f12899958 +2021,Chubut,II.1.1,830.36268,TJ,CH4,3.9,kg/TJ,3238.4144519999995,Gas Oil combustion consumption by freight transport,AR-U,SESCO,annual,kg,09c5e210-186a-3cea-8388-4e217fd47df6 +2021,Chubut,II.1.1,830.36268,TJ,N2O,3.9,kg/TJ,3238.4144519999995,Gas Oil combustion consumption by freight transport,AR-U,SESCO,annual,kg,09c5e210-186a-3cea-8388-4e217fd47df6 +2021,Corrientes,II.1.1,754.908,TJ,CO2,74100.0,kg/TJ,55938682.800000004,Gas Oil combustion consumption by freight transport,AR-W,SESCO,annual,kg,32a87713-b381-3429-839b-97ca15d6c4ae +2021,Corrientes,II.1.1,754.908,TJ,CH4,3.9,kg/TJ,2944.1412,Gas Oil combustion consumption by freight transport,AR-W,SESCO,annual,kg,4f879946-fa2e-3bbe-a549-696684d3e62f +2021,Corrientes,II.1.1,754.908,TJ,N2O,3.9,kg/TJ,2944.1412,Gas Oil combustion consumption by freight transport,AR-W,SESCO,annual,kg,4f879946-fa2e-3bbe-a549-696684d3e62f +2021,Córdoba,II.1.1,2924.96148,TJ,CO2,74100.0,kg/TJ,216739645.66799998,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,bf4022bf-b14e-33bf-811b-fc0a01936498 +2021,Córdoba,II.1.1,2924.96148,TJ,CH4,3.9,kg/TJ,11407.349772,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,6bc2566d-dbde-3829-8f04-ee3fa7c012de +2021,Córdoba,II.1.1,2924.96148,TJ,N2O,3.9,kg/TJ,11407.349772,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,6bc2566d-dbde-3829-8f04-ee3fa7c012de +2021,Entre Rios,II.1.1,1238.6631599999998,TJ,CO2,74100.0,kg/TJ,91784940.15599999,Gas Oil combustion consumption by freight transport,AR-E,SESCO,annual,kg,27b4824f-1936-3a1e-8499-77e5eb583f7c +2021,Entre Rios,II.1.1,1238.6631599999998,TJ,CH4,3.9,kg/TJ,4830.786324,Gas Oil combustion consumption by freight transport,AR-E,SESCO,annual,kg,3218372d-e197-364b-85b6-473936956f69 +2021,Entre Rios,II.1.1,1238.6631599999998,TJ,N2O,3.9,kg/TJ,4830.786324,Gas Oil combustion consumption by freight transport,AR-E,SESCO,annual,kg,3218372d-e197-364b-85b6-473936956f69 +2021,Formosa,II.1.1,61.7652,TJ,CO2,74100.0,kg/TJ,4576801.32,Gas Oil combustion consumption by freight transport,AR-P,SESCO,annual,kg,ef560526-c4d4-3a01-b280-c8839e0b9823 +2021,Formosa,II.1.1,61.7652,TJ,CH4,3.9,kg/TJ,240.88428,Gas Oil combustion consumption by freight transport,AR-P,SESCO,annual,kg,8dc95a28-da09-30b6-8eb2-7d7ff21780bf +2021,Formosa,II.1.1,61.7652,TJ,N2O,3.9,kg/TJ,240.88428,Gas Oil combustion consumption by freight transport,AR-P,SESCO,annual,kg,8dc95a28-da09-30b6-8eb2-7d7ff21780bf +2021,Jujuy,II.1.1,199.16567999999998,TJ,CO2,74100.0,kg/TJ,14758176.887999998,Gas Oil combustion consumption by freight transport,AR-Y,SESCO,annual,kg,30eb1e5d-f57e-3e13-a997-f104bd093c6b +2021,Jujuy,II.1.1,199.16567999999998,TJ,CH4,3.9,kg/TJ,776.7461519999999,Gas Oil combustion consumption by freight transport,AR-Y,SESCO,annual,kg,46198f05-0579-368f-8415-d6e7bee42cb7 +2021,Jujuy,II.1.1,199.16567999999998,TJ,N2O,3.9,kg/TJ,776.7461519999999,Gas Oil combustion consumption by freight transport,AR-Y,SESCO,annual,kg,46198f05-0579-368f-8415-d6e7bee42cb7 +2021,La Pampa,II.1.1,1079.84352,TJ,CO2,74100.0,kg/TJ,80016404.83199999,Gas Oil combustion consumption by freight transport,AR-L,SESCO,annual,kg,d16780d5-e756-341e-b7fa-c349c5b02183 +2021,La Pampa,II.1.1,1079.84352,TJ,CH4,3.9,kg/TJ,4211.389727999999,Gas Oil combustion consumption by freight transport,AR-L,SESCO,annual,kg,7382be68-4a2a-3380-bd7a-9960059c81a5 +2021,La Pampa,II.1.1,1079.84352,TJ,N2O,3.9,kg/TJ,4211.389727999999,Gas Oil combustion consumption by freight transport,AR-L,SESCO,annual,kg,7382be68-4a2a-3380-bd7a-9960059c81a5 +2021,La Rioja,II.1.1,91.78092,TJ,CO2,74100.0,kg/TJ,6800966.171999999,Gas Oil combustion consumption by freight transport,AR-F,SESCO,annual,kg,f3ccf743-1036-38dc-b0f8-69050adca500 +2021,La Rioja,II.1.1,91.78092,TJ,CH4,3.9,kg/TJ,357.945588,Gas Oil combustion consumption by freight transport,AR-F,SESCO,annual,kg,f02dc9ae-aa2b-3e92-88c2-6ec741327058 +2021,La Rioja,II.1.1,91.78092,TJ,N2O,3.9,kg/TJ,357.945588,Gas Oil combustion consumption by freight transport,AR-F,SESCO,annual,kg,f02dc9ae-aa2b-3e92-88c2-6ec741327058 +2021,Mendoza,II.1.1,1813.54908,TJ,CO2,74100.0,kg/TJ,134383986.828,Gas Oil combustion consumption by freight transport,AR-M,SESCO,annual,kg,5391057a-0518-3813-9be1-fccec69c18ba +2021,Mendoza,II.1.1,1813.54908,TJ,CH4,3.9,kg/TJ,7072.841412,Gas Oil combustion consumption by freight transport,AR-M,SESCO,annual,kg,149cfa6e-1b42-3daa-906b-fc55b3e2bbc0 +2021,Mendoza,II.1.1,1813.54908,TJ,N2O,3.9,kg/TJ,7072.841412,Gas Oil combustion consumption by freight transport,AR-M,SESCO,annual,kg,149cfa6e-1b42-3daa-906b-fc55b3e2bbc0 +2021,Misiones,II.1.1,689.9281199999999,TJ,CO2,74100.0,kg/TJ,51123673.691999994,Gas Oil combustion consumption by freight transport,AR-N,SESCO,annual,kg,baaac962-8396-3fbd-954d-a0c07690d30a +2021,Misiones,II.1.1,689.9281199999999,TJ,CH4,3.9,kg/TJ,2690.7196679999997,Gas Oil combustion consumption by freight transport,AR-N,SESCO,annual,kg,7305c30d-458c-30c8-addd-d95771dcddcb +2021,Misiones,II.1.1,689.9281199999999,TJ,N2O,3.9,kg/TJ,2690.7196679999997,Gas Oil combustion consumption by freight transport,AR-N,SESCO,annual,kg,7305c30d-458c-30c8-addd-d95771dcddcb +2021,Neuquén,II.1.1,831.8435999999999,TJ,CO2,74100.0,kg/TJ,61639610.76,Gas Oil combustion consumption by freight transport,AR-Q,SESCO,annual,kg,38e6e034-5812-361b-b006-55b0d9063c2b +2021,Neuquén,II.1.1,831.8435999999999,TJ,CH4,3.9,kg/TJ,3244.1900399999995,Gas Oil combustion consumption by freight transport,AR-Q,SESCO,annual,kg,d4d18d77-a534-3571-a224-e0a74a8a5c62 +2021,Neuquén,II.1.1,831.8435999999999,TJ,N2O,3.9,kg/TJ,3244.1900399999995,Gas Oil combustion consumption by freight transport,AR-Q,SESCO,annual,kg,d4d18d77-a534-3571-a224-e0a74a8a5c62 +2021,Rio Negro,II.1.1,887.93796,TJ,CO2,74100.0,kg/TJ,65796202.835999995,Gas Oil combustion consumption by freight transport,AR-R,SESCO,annual,kg,053346e2-35ca-3cb3-b92b-a122bc695660 +2021,Rio Negro,II.1.1,887.93796,TJ,CH4,3.9,kg/TJ,3462.958044,Gas Oil combustion consumption by freight transport,AR-R,SESCO,annual,kg,dd116e92-2788-3056-a189-f1656f1cbf3b +2021,Rio Negro,II.1.1,887.93796,TJ,N2O,3.9,kg/TJ,3462.958044,Gas Oil combustion consumption by freight transport,AR-R,SESCO,annual,kg,dd116e92-2788-3056-a189-f1656f1cbf3b +2021,Salta,II.1.1,805.1509199999999,TJ,CO2,74100.0,kg/TJ,59661683.172,Gas Oil combustion consumption by freight transport,AR-A,SESCO,annual,kg,131b7e17-34ce-3e4d-a9e2-af20c5b7782a +2021,Salta,II.1.1,805.1509199999999,TJ,CH4,3.9,kg/TJ,3140.0885879999996,Gas Oil combustion consumption by freight transport,AR-A,SESCO,annual,kg,79896d3a-b7f1-39d9-990f-ca060e037b83 +2021,Salta,II.1.1,805.1509199999999,TJ,N2O,3.9,kg/TJ,3140.0885879999996,Gas Oil combustion consumption by freight transport,AR-A,SESCO,annual,kg,79896d3a-b7f1-39d9-990f-ca060e037b83 +2021,San Juan,II.1.1,138.55632,TJ,CO2,74100.0,kg/TJ,10267023.312,Gas Oil combustion consumption by freight transport,AR-J,SESCO,annual,kg,adcd7a8c-2568-34e8-b553-20e3f93a066d +2021,San Juan,II.1.1,138.55632,TJ,CH4,3.9,kg/TJ,540.369648,Gas Oil combustion consumption by freight transport,AR-J,SESCO,annual,kg,fa5a466b-2caa-336f-84ae-2d401c86347b +2021,San Juan,II.1.1,138.55632,TJ,N2O,3.9,kg/TJ,540.369648,Gas Oil combustion consumption by freight transport,AR-J,SESCO,annual,kg,fa5a466b-2caa-336f-84ae-2d401c86347b +2021,San Luis,II.1.1,571.09332,TJ,CO2,74100.0,kg/TJ,42318015.011999995,Gas Oil combustion consumption by freight transport,AR-D,SESCO,annual,kg,dbe1a8f3-9fb5-32c5-8f42-6a037aa48a4c +2021,San Luis,II.1.1,571.09332,TJ,CH4,3.9,kg/TJ,2227.263948,Gas Oil combustion consumption by freight transport,AR-D,SESCO,annual,kg,2eccf46e-23a8-3d70-9b83-7bdb158766a0 +2021,San Luis,II.1.1,571.09332,TJ,N2O,3.9,kg/TJ,2227.263948,Gas Oil combustion consumption by freight transport,AR-D,SESCO,annual,kg,2eccf46e-23a8-3d70-9b83-7bdb158766a0 +2021,Santa Cruz,II.1.1,592.1512799999999,TJ,CO2,74100.0,kg/TJ,43878409.848,Gas Oil combustion consumption by freight transport,AR-Z,SESCO,annual,kg,a87b82d5-8780-38c2-9cdf-bdeb70ae90ef +2021,Santa Cruz,II.1.1,592.1512799999999,TJ,CH4,3.9,kg/TJ,2309.389992,Gas Oil combustion consumption by freight transport,AR-Z,SESCO,annual,kg,2784913c-883b-311c-ac37-7c0dd0d79fae +2021,Santa Cruz,II.1.1,592.1512799999999,TJ,N2O,3.9,kg/TJ,2309.389992,Gas Oil combustion consumption by freight transport,AR-Z,SESCO,annual,kg,2784913c-883b-311c-ac37-7c0dd0d79fae +2021,Santa Fe,II.1.1,3219.48396,TJ,CO2,74100.0,kg/TJ,238563761.436,Gas Oil combustion consumption by freight transport,AR-S,SESCO,annual,kg,027bcb8c-1299-3798-939c-84224a9befed +2021,Santa Fe,II.1.1,3219.48396,TJ,CH4,3.9,kg/TJ,12555.987444,Gas Oil combustion consumption by freight transport,AR-S,SESCO,annual,kg,2a3b9f42-cea1-303c-a378-5af62ba8dcdc +2021,Santa Fe,II.1.1,3219.48396,TJ,N2O,3.9,kg/TJ,12555.987444,Gas Oil combustion consumption by freight transport,AR-S,SESCO,annual,kg,2a3b9f42-cea1-303c-a378-5af62ba8dcdc +2021,Santiago del Estero,II.1.1,702.3534,TJ,CO2,74100.0,kg/TJ,52044386.94,Gas Oil combustion consumption by freight transport,AR-G,SESCO,annual,kg,32002838-434f-3106-809a-48e2fb6fe8b8 +2021,Santiago del Estero,II.1.1,702.3534,TJ,CH4,3.9,kg/TJ,2739.1782599999997,Gas Oil combustion consumption by freight transport,AR-G,SESCO,annual,kg,6ff3dfda-936b-3597-a36e-f7d595ba56b8 +2021,Santiago del Estero,II.1.1,702.3534,TJ,N2O,3.9,kg/TJ,2739.1782599999997,Gas Oil combustion consumption by freight transport,AR-G,SESCO,annual,kg,6ff3dfda-936b-3597-a36e-f7d595ba56b8 +2021,Tierra del Fuego,II.1.1,285.05904,TJ,CO2,74100.0,kg/TJ,21122874.864,Gas Oil combustion consumption by freight transport,AR-V,SESCO,annual,kg,4a223a14-3e38-3085-a173-4df9f76e6dac +2021,Tierra del Fuego,II.1.1,285.05904,TJ,CH4,3.9,kg/TJ,1111.7302559999998,Gas Oil combustion consumption by freight transport,AR-V,SESCO,annual,kg,a09dabda-3554-3f11-88ff-0f4eafca62eb +2021,Tierra del Fuego,II.1.1,285.05904,TJ,N2O,3.9,kg/TJ,1111.7302559999998,Gas Oil combustion consumption by freight transport,AR-V,SESCO,annual,kg,a09dabda-3554-3f11-88ff-0f4eafca62eb +2021,Tucuman,II.1.1,405.2664,TJ,CO2,74100.0,kg/TJ,30030240.24,Gas Oil combustion consumption by freight transport,AR-T,SESCO,annual,kg,b8bf00bd-c4cd-3d43-82f4-6d953bfe440c +2021,Tucuman,II.1.1,405.2664,TJ,CH4,3.9,kg/TJ,1580.5389599999999,Gas Oil combustion consumption by freight transport,AR-T,SESCO,annual,kg,1811159b-4156-3c8f-92d4-60689e0671c6 +2021,Tucuman,II.1.1,405.2664,TJ,N2O,3.9,kg/TJ,1580.5389599999999,Gas Oil combustion consumption by freight transport,AR-T,SESCO,annual,kg,1811159b-4156-3c8f-92d4-60689e0671c6 +2021,Buenos Aires,II.1.1,4004.8411199999996,TJ,CO2,74100.0,kg/TJ,296758726.992,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,5cdf3a4b-f2d8-3d7d-a2b5-5cfedf3e65de +2021,Buenos Aires,II.1.1,4004.8411199999996,TJ,CH4,3.9,kg/TJ,15618.880367999998,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,206a055b-35f1-328e-b124-af6d8d5bd2b6 +2021,Buenos Aires,II.1.1,4004.8411199999996,TJ,N2O,3.9,kg/TJ,15618.880367999998,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,206a055b-35f1-328e-b124-af6d8d5bd2b6 +2021,Capital Federal,II.1.1,495.13295999999997,TJ,CO2,74100.0,kg/TJ,36689352.335999995,Gas Oil combustion consumption by freight transport,AR-C,SESCO,annual,kg,6433dbae-ec3e-366b-8d8e-3111f621f7a3 +2021,Capital Federal,II.1.1,495.13295999999997,TJ,CH4,3.9,kg/TJ,1931.0185439999998,Gas Oil combustion consumption by freight transport,AR-C,SESCO,annual,kg,146af22d-c0fd-3120-ba58-c50ed64cb84b +2021,Capital Federal,II.1.1,495.13295999999997,TJ,N2O,3.9,kg/TJ,1931.0185439999998,Gas Oil combustion consumption by freight transport,AR-C,SESCO,annual,kg,146af22d-c0fd-3120-ba58-c50ed64cb84b +2021,Catamarca,II.1.1,20.44392,TJ,CO2,74100.0,kg/TJ,1514894.4719999998,Gas Oil combustion consumption by freight transport,AR-K,SESCO,annual,kg,fb1a49b3-5dc9-374e-8241-ed3ddc8dba77 +2021,Catamarca,II.1.1,20.44392,TJ,CH4,3.9,kg/TJ,79.73128799999999,Gas Oil combustion consumption by freight transport,AR-K,SESCO,annual,kg,608e6c4e-0172-3086-8ded-a3054a75bb51 +2021,Catamarca,II.1.1,20.44392,TJ,N2O,3.9,kg/TJ,79.73128799999999,Gas Oil combustion consumption by freight transport,AR-K,SESCO,annual,kg,608e6c4e-0172-3086-8ded-a3054a75bb51 +2021,Chaco,II.1.1,160.58952,TJ,CO2,74100.0,kg/TJ,11899683.432,Gas Oil combustion consumption by freight transport,AR-H,SESCO,annual,kg,6bb89b8d-2350-3620-a372-39f632e5465d +2021,Chaco,II.1.1,160.58952,TJ,CH4,3.9,kg/TJ,626.299128,Gas Oil combustion consumption by freight transport,AR-H,SESCO,annual,kg,d16dffaa-6d05-3f95-b057-fa804a043a08 +2021,Chaco,II.1.1,160.58952,TJ,N2O,3.9,kg/TJ,626.299128,Gas Oil combustion consumption by freight transport,AR-H,SESCO,annual,kg,d16dffaa-6d05-3f95-b057-fa804a043a08 +2021,Chubut,II.1.1,435.9684,TJ,CO2,74100.0,kg/TJ,32305258.439999998,Gas Oil combustion consumption by freight transport,AR-U,SESCO,annual,kg,3a652a09-8e0a-352e-9cbc-88e54f3261f3 +2021,Chubut,II.1.1,435.9684,TJ,CH4,3.9,kg/TJ,1700.27676,Gas Oil combustion consumption by freight transport,AR-U,SESCO,annual,kg,1d38fd49-c46c-3fa6-b586-d15c24027df3 +2021,Chubut,II.1.1,435.9684,TJ,N2O,3.9,kg/TJ,1700.27676,Gas Oil combustion consumption by freight transport,AR-U,SESCO,annual,kg,1d38fd49-c46c-3fa6-b586-d15c24027df3 +2021,Corrientes,II.1.1,208.91808,TJ,CO2,74100.0,kg/TJ,15480829.728,Gas Oil combustion consumption by freight transport,AR-W,SESCO,annual,kg,0f6ae104-5a08-33ac-92fa-66d0864501d6 +2021,Corrientes,II.1.1,208.91808,TJ,CH4,3.9,kg/TJ,814.780512,Gas Oil combustion consumption by freight transport,AR-W,SESCO,annual,kg,6bbbe7f2-4b04-36dc-ade6-898ad92d9086 +2021,Corrientes,II.1.1,208.91808,TJ,N2O,3.9,kg/TJ,814.780512,Gas Oil combustion consumption by freight transport,AR-W,SESCO,annual,kg,6bbbe7f2-4b04-36dc-ade6-898ad92d9086 +2021,Córdoba,II.1.1,819.7795199999999,TJ,CO2,74100.0,kg/TJ,60745662.432,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,f70fe27c-447f-3444-8018-f93e205ae3ba +2021,Córdoba,II.1.1,819.7795199999999,TJ,CH4,3.9,kg/TJ,3197.1401279999995,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,2861b0a0-0458-3a9c-8433-ba9d16ff91f8 +2021,Córdoba,II.1.1,819.7795199999999,TJ,N2O,3.9,kg/TJ,3197.1401279999995,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,2861b0a0-0458-3a9c-8433-ba9d16ff91f8 +2021,Entre Rios,II.1.1,315.147,TJ,CO2,74100.0,kg/TJ,23352392.7,Gas Oil combustion consumption by freight transport,AR-E,SESCO,annual,kg,4ce558d7-6343-3a1a-af8f-7fb3d31cbffd +2021,Entre Rios,II.1.1,315.147,TJ,CH4,3.9,kg/TJ,1229.0733,Gas Oil combustion consumption by freight transport,AR-E,SESCO,annual,kg,468b0ebd-11b4-3a2d-a53e-f59a39967bcc +2021,Entre Rios,II.1.1,315.147,TJ,N2O,3.9,kg/TJ,1229.0733,Gas Oil combustion consumption by freight transport,AR-E,SESCO,annual,kg,468b0ebd-11b4-3a2d-a53e-f59a39967bcc +2021,Formosa,II.1.1,39.9126,TJ,CO2,74100.0,kg/TJ,2957523.6599999997,Gas Oil combustion consumption by freight transport,AR-P,SESCO,annual,kg,6bff51b0-2331-3ea4-af6e-72343a2589d1 +2021,Formosa,II.1.1,39.9126,TJ,CH4,3.9,kg/TJ,155.65913999999998,Gas Oil combustion consumption by freight transport,AR-P,SESCO,annual,kg,646ad33a-2235-38cd-b2dc-a0e6794b8376 +2021,Formosa,II.1.1,39.9126,TJ,N2O,3.9,kg/TJ,155.65913999999998,Gas Oil combustion consumption by freight transport,AR-P,SESCO,annual,kg,646ad33a-2235-38cd-b2dc-a0e6794b8376 +2021,Jujuy,II.1.1,60.17592,TJ,CO2,74100.0,kg/TJ,4459035.672,Gas Oil combustion consumption by freight transport,AR-Y,SESCO,annual,kg,9d6fd374-6d52-3b20-8b88-e12982887c7e +2021,Jujuy,II.1.1,60.17592,TJ,CH4,3.9,kg/TJ,234.68608799999998,Gas Oil combustion consumption by freight transport,AR-Y,SESCO,annual,kg,66ac95bd-9537-3197-a9f7-783ca538fdd7 +2021,Jujuy,II.1.1,60.17592,TJ,N2O,3.9,kg/TJ,234.68608799999998,Gas Oil combustion consumption by freight transport,AR-Y,SESCO,annual,kg,66ac95bd-9537-3197-a9f7-783ca538fdd7 +2021,La Pampa,II.1.1,203.64455999999998,TJ,CO2,74100.0,kg/TJ,15090061.896,Gas Oil combustion consumption by freight transport,AR-L,SESCO,annual,kg,26c71165-631d-3c39-869e-09fd7c897a86 +2021,La Pampa,II.1.1,203.64455999999998,TJ,CH4,3.9,kg/TJ,794.2137839999999,Gas Oil combustion consumption by freight transport,AR-L,SESCO,annual,kg,409048b5-a109-3644-bb56-5f451ed7b2cb +2021,La Pampa,II.1.1,203.64455999999998,TJ,N2O,3.9,kg/TJ,794.2137839999999,Gas Oil combustion consumption by freight transport,AR-L,SESCO,annual,kg,409048b5-a109-3644-bb56-5f451ed7b2cb +2021,La Rioja,II.1.1,47.281079999999996,TJ,CO2,74100.0,kg/TJ,3503528.0279999995,Gas Oil combustion consumption by freight transport,AR-F,SESCO,annual,kg,b389a5de-9ec3-3353-a10f-d5ce1f86a66c +2021,La Rioja,II.1.1,47.281079999999996,TJ,CH4,3.9,kg/TJ,184.396212,Gas Oil combustion consumption by freight transport,AR-F,SESCO,annual,kg,89dabcf6-f951-398b-b925-781796b1c69a +2021,La Rioja,II.1.1,47.281079999999996,TJ,N2O,3.9,kg/TJ,184.396212,Gas Oil combustion consumption by freight transport,AR-F,SESCO,annual,kg,89dabcf6-f951-398b-b925-781796b1c69a +2021,Mendoza,II.1.1,556.39248,TJ,CO2,74100.0,kg/TJ,41228682.768,Gas Oil combustion consumption by freight transport,AR-M,SESCO,annual,kg,0cc9b29d-339a-39e7-8cb4-662c604aa3d1 +2021,Mendoza,II.1.1,556.39248,TJ,CH4,3.9,kg/TJ,2169.930672,Gas Oil combustion consumption by freight transport,AR-M,SESCO,annual,kg,d23848b8-28ed-3c7f-b537-a87a820ac9b8 +2021,Mendoza,II.1.1,556.39248,TJ,N2O,3.9,kg/TJ,2169.930672,Gas Oil combustion consumption by freight transport,AR-M,SESCO,annual,kg,d23848b8-28ed-3c7f-b537-a87a820ac9b8 +2021,Misiones,II.1.1,164.59884,TJ,CO2,74100.0,kg/TJ,12196774.044,Gas Oil combustion consumption by freight transport,AR-N,SESCO,annual,kg,a2b7af1e-8e5d-3a66-bdf6-f6ad722ca8fc +2021,Misiones,II.1.1,164.59884,TJ,CH4,3.9,kg/TJ,641.935476,Gas Oil combustion consumption by freight transport,AR-N,SESCO,annual,kg,3bb5e42a-b84e-3d27-8ea4-7c7ad4fbc394 +2021,Misiones,II.1.1,164.59884,TJ,N2O,3.9,kg/TJ,641.935476,Gas Oil combustion consumption by freight transport,AR-N,SESCO,annual,kg,3bb5e42a-b84e-3d27-8ea4-7c7ad4fbc394 +2021,Neuquén,II.1.1,1197.41412,TJ,CO2,74100.0,kg/TJ,88728386.292,Gas Oil combustion consumption by freight transport,AR-Q,SESCO,annual,kg,997039f6-f33d-38a1-b502-c8bca0ad4586 +2021,Neuquén,II.1.1,1197.41412,TJ,CH4,3.9,kg/TJ,4669.915067999999,Gas Oil combustion consumption by freight transport,AR-Q,SESCO,annual,kg,09e4d48e-987b-3fc1-b628-61e3904b08c5 +2021,Neuquén,II.1.1,1197.41412,TJ,N2O,3.9,kg/TJ,4669.915067999999,Gas Oil combustion consumption by freight transport,AR-Q,SESCO,annual,kg,09e4d48e-987b-3fc1-b628-61e3904b08c5 +2021,Rio Negro,II.1.1,412.02083999999996,TJ,CO2,74100.0,kg/TJ,30530744.244,Gas Oil combustion consumption by freight transport,AR-R,SESCO,annual,kg,cd19faff-765c-3220-b6d8-f349c4c3c311 +2021,Rio Negro,II.1.1,412.02083999999996,TJ,CH4,3.9,kg/TJ,1606.8812759999998,Gas Oil combustion consumption by freight transport,AR-R,SESCO,annual,kg,a5a4560a-a0f5-3ec6-b1cf-91e78d786d23 +2021,Rio Negro,II.1.1,412.02083999999996,TJ,N2O,3.9,kg/TJ,1606.8812759999998,Gas Oil combustion consumption by freight transport,AR-R,SESCO,annual,kg,a5a4560a-a0f5-3ec6-b1cf-91e78d786d23 +2021,Salta,II.1.1,287.98476,TJ,CO2,74100.0,kg/TJ,21339670.716,Gas Oil combustion consumption by freight transport,AR-A,SESCO,annual,kg,71fa6f15-3e04-3b7c-b7e9-759fde469f52 +2021,Salta,II.1.1,287.98476,TJ,CH4,3.9,kg/TJ,1123.140564,Gas Oil combustion consumption by freight transport,AR-A,SESCO,annual,kg,d1128c8d-f6d5-36d5-9b81-fd388c4c31da +2021,Salta,II.1.1,287.98476,TJ,N2O,3.9,kg/TJ,1123.140564,Gas Oil combustion consumption by freight transport,AR-A,SESCO,annual,kg,d1128c8d-f6d5-36d5-9b81-fd388c4c31da +2021,San Juan,II.1.1,66.85812,TJ,CO2,74100.0,kg/TJ,4954186.692,Gas Oil combustion consumption by freight transport,AR-J,SESCO,annual,kg,6d0ef19c-af67-3471-a5fa-38371b933f0d +2021,San Juan,II.1.1,66.85812,TJ,CH4,3.9,kg/TJ,260.746668,Gas Oil combustion consumption by freight transport,AR-J,SESCO,annual,kg,deecda7b-1daf-3a72-8197-d59b337e1f79 +2021,San Juan,II.1.1,66.85812,TJ,N2O,3.9,kg/TJ,260.746668,Gas Oil combustion consumption by freight transport,AR-J,SESCO,annual,kg,deecda7b-1daf-3a72-8197-d59b337e1f79 +2021,San Luis,II.1.1,116.41476,TJ,CO2,74100.0,kg/TJ,8626333.716,Gas Oil combustion consumption by freight transport,AR-D,SESCO,annual,kg,ebc83cba-b501-3aae-83c8-06a62528076a +2021,San Luis,II.1.1,116.41476,TJ,CH4,3.9,kg/TJ,454.017564,Gas Oil combustion consumption by freight transport,AR-D,SESCO,annual,kg,f8d3923f-6008-3c01-b81a-c4630477f18f +2021,San Luis,II.1.1,116.41476,TJ,N2O,3.9,kg/TJ,454.017564,Gas Oil combustion consumption by freight transport,AR-D,SESCO,annual,kg,f8d3923f-6008-3c01-b81a-c4630477f18f +2021,Santa Cruz,II.1.1,299.18196,TJ,CO2,74100.0,kg/TJ,22169383.236,Gas Oil combustion consumption by freight transport,AR-Z,SESCO,annual,kg,98f9c6e3-52d5-3f76-8901-58054a1132a6 +2021,Santa Cruz,II.1.1,299.18196,TJ,CH4,3.9,kg/TJ,1166.809644,Gas Oil combustion consumption by freight transport,AR-Z,SESCO,annual,kg,30c4ef92-69e5-3ba5-af91-9b4b85a0c68a +2021,Santa Cruz,II.1.1,299.18196,TJ,N2O,3.9,kg/TJ,1166.809644,Gas Oil combustion consumption by freight transport,AR-Z,SESCO,annual,kg,30c4ef92-69e5-3ba5-af91-9b4b85a0c68a +2021,Santa Fe,II.1.1,792.72564,TJ,CO2,74100.0,kg/TJ,58740969.924,Gas Oil combustion consumption by freight transport,AR-S,SESCO,annual,kg,9d0812d6-59d5-38ec-a7c7-b362265959ba +2021,Santa Fe,II.1.1,792.72564,TJ,CH4,3.9,kg/TJ,3091.629996,Gas Oil combustion consumption by freight transport,AR-S,SESCO,annual,kg,5b20936d-826b-326e-b72b-8955bfb0411d +2021,Santa Fe,II.1.1,792.72564,TJ,N2O,3.9,kg/TJ,3091.629996,Gas Oil combustion consumption by freight transport,AR-S,SESCO,annual,kg,5b20936d-826b-326e-b72b-8955bfb0411d +2021,Santiago del Estero,II.1.1,142.38504,TJ,CO2,74100.0,kg/TJ,10550731.464,Gas Oil combustion consumption by freight transport,AR-G,SESCO,annual,kg,d0cac68d-1f0b-3df7-bcc7-2ed75e9e5783 +2021,Santiago del Estero,II.1.1,142.38504,TJ,CH4,3.9,kg/TJ,555.301656,Gas Oil combustion consumption by freight transport,AR-G,SESCO,annual,kg,f13479f7-0577-37a1-b9ca-de84a59b27c4 +2021,Santiago del Estero,II.1.1,142.38504,TJ,N2O,3.9,kg/TJ,555.301656,Gas Oil combustion consumption by freight transport,AR-G,SESCO,annual,kg,f13479f7-0577-37a1-b9ca-de84a59b27c4 +2021,Tierra del Fuego,II.1.1,109.69644,TJ,CO2,74100.0,kg/TJ,8128506.204,Gas Oil combustion consumption by freight transport,AR-V,SESCO,annual,kg,76cbdca2-c8f8-30b4-b63f-30f7c4d4db54 +2021,Tierra del Fuego,II.1.1,109.69644,TJ,CH4,3.9,kg/TJ,427.81611599999997,Gas Oil combustion consumption by freight transport,AR-V,SESCO,annual,kg,11a99b5c-4209-34ad-a989-aeb855ec24b3 +2021,Tierra del Fuego,II.1.1,109.69644,TJ,N2O,3.9,kg/TJ,427.81611599999997,Gas Oil combustion consumption by freight transport,AR-V,SESCO,annual,kg,11a99b5c-4209-34ad-a989-aeb855ec24b3 +2021,Tucuman,II.1.1,155.24375999999998,TJ,CO2,74100.0,kg/TJ,11503562.615999999,Gas Oil combustion consumption by freight transport,AR-T,SESCO,annual,kg,1851cb3f-c3bb-3c60-8a79-f724e2713321 +2021,Tucuman,II.1.1,155.24375999999998,TJ,CH4,3.9,kg/TJ,605.450664,Gas Oil combustion consumption by freight transport,AR-T,SESCO,annual,kg,121159d7-ad4c-3d20-b03f-68b693be44ff +2021,Tucuman,II.1.1,155.24375999999998,TJ,N2O,3.9,kg/TJ,605.450664,Gas Oil combustion consumption by freight transport,AR-T,SESCO,annual,kg,121159d7-ad4c-3d20-b03f-68b693be44ff +2021,Buenos Aires,II.1.1,666.38572,TJ,CO2,73300.0,kg/TJ,48846073.276,Naphtha combustion consumption by freight transport,AR-B,SESCO,annual,kg,1e2c18b2-1786-3ad5-9094-265b1bc3cd24 +2021,Buenos Aires,II.1.1,666.38572,TJ,CH4,0.5,kg/TJ,333.19286,Naphtha combustion consumption by freight transport,AR-B,SESCO,annual,kg,e005e0ff-30be-3687-bffe-7240a344aa86 +2021,Buenos Aires,II.1.1,666.38572,TJ,N2O,2.0,kg/TJ,1332.77144,Naphtha combustion consumption by freight transport,AR-B,SESCO,annual,kg,ea583439-89da-3967-b9e6-2480c0031df5 +2021,Capital Federal,II.1.1,103.240445,TJ,CO2,73300.0,kg/TJ,7567524.6185,Naphtha combustion consumption by freight transport,AR-C,SESCO,annual,kg,25e0b9b5-f399-34a2-b76c-f65b8225d8b7 +2021,Capital Federal,II.1.1,103.240445,TJ,CH4,0.5,kg/TJ,51.6202225,Naphtha combustion consumption by freight transport,AR-C,SESCO,annual,kg,0ea7ab13-6a9c-3b80-aa27-e339988caad4 +2021,Capital Federal,II.1.1,103.240445,TJ,N2O,2.0,kg/TJ,206.48089,Naphtha combustion consumption by freight transport,AR-C,SESCO,annual,kg,b22c1b93-776d-326a-9795-5707d14650a1 +2021,Catamarca,II.1.1,3.56356,TJ,CO2,73300.0,kg/TJ,261208.94799999997,Naphtha combustion consumption by freight transport,AR-K,SESCO,annual,kg,9527784d-7077-3d47-92f2-e7aab9f4c17e +2021,Catamarca,II.1.1,3.56356,TJ,CH4,0.5,kg/TJ,1.78178,Naphtha combustion consumption by freight transport,AR-K,SESCO,annual,kg,aece5efd-e908-35d0-aef3-e136841988e2 +2021,Catamarca,II.1.1,3.56356,TJ,N2O,2.0,kg/TJ,7.12712,Naphtha combustion consumption by freight transport,AR-K,SESCO,annual,kg,d8a54c5e-48fa-39ea-9e79-1afee240f5da +2021,Chaco,II.1.1,15.727635,TJ,CO2,73300.0,kg/TJ,1152835.6454999999,Naphtha combustion consumption by freight transport,AR-H,SESCO,annual,kg,01b391ca-6904-32d5-ac83-0be3b2e88934 +2021,Chaco,II.1.1,15.727635,TJ,CH4,0.5,kg/TJ,7.8638175,Naphtha combustion consumption by freight transport,AR-H,SESCO,annual,kg,e780336d-f21a-3c10-87c2-aa8555bd5b2a +2021,Chaco,II.1.1,15.727635,TJ,N2O,2.0,kg/TJ,31.45527,Naphtha combustion consumption by freight transport,AR-H,SESCO,annual,kg,0ef6f148-384d-3b9e-a3a0-b340fef2d44f +2021,Chubut,II.1.1,21.963865,TJ,CO2,73300.0,kg/TJ,1609951.3044999999,Naphtha combustion consumption by freight transport,AR-U,SESCO,annual,kg,55f8af91-d13e-32f1-8ac0-c8787a9221ba +2021,Chubut,II.1.1,21.963865,TJ,CH4,0.5,kg/TJ,10.9819325,Naphtha combustion consumption by freight transport,AR-U,SESCO,annual,kg,40bf24fc-7620-3f27-b719-aab65f84328e +2021,Chubut,II.1.1,21.963865,TJ,N2O,2.0,kg/TJ,43.92773,Naphtha combustion consumption by freight transport,AR-U,SESCO,annual,kg,d3232231-edd5-3dd0-9109-b7d94a0d3c80 +2021,Corrientes,II.1.1,16.789849999999998,TJ,CO2,73300.0,kg/TJ,1230696.005,Naphtha combustion consumption by freight transport,AR-W,SESCO,annual,kg,994b3807-85ce-3bb8-bf85-53a3bae93659 +2021,Corrientes,II.1.1,16.789849999999998,TJ,CH4,0.5,kg/TJ,8.394924999999999,Naphtha combustion consumption by freight transport,AR-W,SESCO,annual,kg,884928eb-27f9-3f0a-8b4b-cbf058ffd635 +2021,Corrientes,II.1.1,16.789849999999998,TJ,N2O,2.0,kg/TJ,33.579699999999995,Naphtha combustion consumption by freight transport,AR-W,SESCO,annual,kg,8b3e716e-dfa7-3d7a-8e21-dbe743b9222a +2021,Córdoba,II.1.1,102.349555,TJ,CO2,73300.0,kg/TJ,7502222.381499999,Naphtha combustion consumption by freight transport,AR-X,SESCO,annual,kg,2a076792-5034-3b88-87fc-a9f62bb5a74b +2021,Córdoba,II.1.1,102.349555,TJ,CH4,0.5,kg/TJ,51.1747775,Naphtha combustion consumption by freight transport,AR-X,SESCO,annual,kg,e2e549b5-0763-3179-96d4-ae07eaf5e92f +2021,Córdoba,II.1.1,102.349555,TJ,N2O,2.0,kg/TJ,204.69911,Naphtha combustion consumption by freight transport,AR-X,SESCO,annual,kg,cc716da4-5481-3ef0-9d87-5159b4e53618 +2021,Entre Rios,II.1.1,35.532804999999996,TJ,CO2,73300.0,kg/TJ,2604554.6064999998,Naphtha combustion consumption by freight transport,AR-E,SESCO,annual,kg,02143aba-67ac-3816-b9e0-6cb51c2b2d36 +2021,Entre Rios,II.1.1,35.532804999999996,TJ,CH4,0.5,kg/TJ,17.766402499999998,Naphtha combustion consumption by freight transport,AR-E,SESCO,annual,kg,86fe00db-7f8f-3dbd-859a-d5af49047f15 +2021,Entre Rios,II.1.1,35.532804999999996,TJ,N2O,2.0,kg/TJ,71.06560999999999,Naphtha combustion consumption by freight transport,AR-E,SESCO,annual,kg,9d99e6a0-0ab8-330a-aedc-0661d3370dc2 +2021,Formosa,II.1.1,4.214595,TJ,CO2,73300.0,kg/TJ,308929.8135,Naphtha combustion consumption by freight transport,AR-P,SESCO,annual,kg,ba4250ac-0b94-3312-b8bd-a2cd051f8cb0 +2021,Formosa,II.1.1,4.214595,TJ,CH4,0.5,kg/TJ,2.1072975,Naphtha combustion consumption by freight transport,AR-P,SESCO,annual,kg,01393982-d863-3c89-8d6c-5184159f1c0e +2021,Formosa,II.1.1,4.214595,TJ,N2O,2.0,kg/TJ,8.42919,Naphtha combustion consumption by freight transport,AR-P,SESCO,annual,kg,1a3fb8f4-c7ed-3851-8b39-d045a17cc9f0 +2021,Jujuy,II.1.1,7.641095,TJ,CO2,73300.0,kg/TJ,560092.2635,Naphtha combustion consumption by freight transport,AR-Y,SESCO,annual,kg,7765f865-0a8b-3d76-b634-39cf56c65fc1 +2021,Jujuy,II.1.1,7.641095,TJ,CH4,0.5,kg/TJ,3.8205475,Naphtha combustion consumption by freight transport,AR-Y,SESCO,annual,kg,869c65b7-d3c0-383e-ac7d-5f5f53afb26b +2021,Jujuy,II.1.1,7.641095,TJ,N2O,2.0,kg/TJ,15.28219,Naphtha combustion consumption by freight transport,AR-Y,SESCO,annual,kg,69c88051-0e04-3ab8-ac1e-983e7dd0d99b +2021,La Pampa,II.1.1,10.75921,TJ,CO2,73300.0,kg/TJ,788650.093,Naphtha combustion consumption by freight transport,AR-L,SESCO,annual,kg,725af8fc-40b5-3685-b00a-93520e1d7cc4 +2021,La Pampa,II.1.1,10.75921,TJ,CH4,0.5,kg/TJ,5.379605,Naphtha combustion consumption by freight transport,AR-L,SESCO,annual,kg,158346c7-5322-319f-bb39-33eb765602d1 +2021,La Pampa,II.1.1,10.75921,TJ,N2O,2.0,kg/TJ,21.51842,Naphtha combustion consumption by freight transport,AR-L,SESCO,annual,kg,8b91a4f4-284a-3be9-9758-a5af5eedbd08 +2021,La Rioja,II.1.1,5.585195,TJ,CO2,73300.0,kg/TJ,409394.79349999997,Naphtha combustion consumption by freight transport,AR-F,SESCO,annual,kg,3d648bb4-1d78-3bd4-acbd-c33a5de0ba14 +2021,La Rioja,II.1.1,5.585195,TJ,CH4,0.5,kg/TJ,2.7925975,Naphtha combustion consumption by freight transport,AR-F,SESCO,annual,kg,8a9d527f-c7c5-35d0-9187-725c8c7d1faf +2021,La Rioja,II.1.1,5.585195,TJ,N2O,2.0,kg/TJ,11.17039,Naphtha combustion consumption by freight transport,AR-F,SESCO,annual,kg,5a7bcebe-023f-303e-8ebc-76dbbf4e0305 +2021,Mendoza,II.1.1,48.210854999999995,TJ,CO2,73300.0,kg/TJ,3533855.6714999997,Naphtha combustion consumption by freight transport,AR-M,SESCO,annual,kg,97efaf34-c698-3f9b-9f9a-c319df71e973 +2021,Mendoza,II.1.1,48.210854999999995,TJ,CH4,0.5,kg/TJ,24.105427499999998,Naphtha combustion consumption by freight transport,AR-M,SESCO,annual,kg,1b640258-f01d-3d74-918d-2b5d7fbb33f1 +2021,Mendoza,II.1.1,48.210854999999995,TJ,N2O,2.0,kg/TJ,96.42170999999999,Naphtha combustion consumption by freight transport,AR-M,SESCO,annual,kg,75301547-e4fb-3f56-884c-a31f9d613aba +2021,Misiones,II.1.1,17.303825,TJ,CO2,73300.0,kg/TJ,1268370.3725,Naphtha combustion consumption by freight transport,AR-N,SESCO,annual,kg,cf13d884-6ad2-32b9-9086-aa9b67569e17 +2021,Misiones,II.1.1,17.303825,TJ,CH4,0.5,kg/TJ,8.6519125,Naphtha combustion consumption by freight transport,AR-N,SESCO,annual,kg,8ab1f737-53a8-3a3e-b939-7ce39f91306f +2021,Misiones,II.1.1,17.303825,TJ,N2O,2.0,kg/TJ,34.60765,Naphtha combustion consumption by freight transport,AR-N,SESCO,annual,kg,f6d34def-26e9-32aa-9bdf-a05c95dcb717 +2021,Neuquén,II.1.1,17.852065,TJ,CO2,73300.0,kg/TJ,1308556.3645,Naphtha combustion consumption by freight transport,AR-Q,SESCO,annual,kg,88b12205-7c50-34c6-8fb8-5aba88c37843 +2021,Neuquén,II.1.1,17.852065,TJ,CH4,0.5,kg/TJ,8.9260325,Naphtha combustion consumption by freight transport,AR-Q,SESCO,annual,kg,05acadef-11ac-36ff-a2b6-77fabede6ef8 +2021,Neuquén,II.1.1,17.852065,TJ,N2O,2.0,kg/TJ,35.70413,Naphtha combustion consumption by freight transport,AR-Q,SESCO,annual,kg,f2fbc82c-6407-308a-98f0-335b53490fe9 +2021,Rio Negro,II.1.1,21.415625,TJ,CO2,73300.0,kg/TJ,1569765.3125,Naphtha combustion consumption by freight transport,AR-R,SESCO,annual,kg,e3bd8882-10c2-3ce4-87d7-95eb3071db39 +2021,Rio Negro,II.1.1,21.415625,TJ,CH4,0.5,kg/TJ,10.7078125,Naphtha combustion consumption by freight transport,AR-R,SESCO,annual,kg,3ac79b65-d14e-39d5-8fff-3861fbb85f6c +2021,Rio Negro,II.1.1,21.415625,TJ,N2O,2.0,kg/TJ,42.83125,Naphtha combustion consumption by freight transport,AR-R,SESCO,annual,kg,5882cd3d-58e1-3e2f-aab4-48fd959df0d3 +2021,Salta,II.1.1,28.200094999999997,TJ,CO2,73300.0,kg/TJ,2067066.9634999998,Naphtha combustion consumption by freight transport,AR-A,SESCO,annual,kg,61959c7b-368e-3a5c-a725-db110d2fae86 +2021,Salta,II.1.1,28.200094999999997,TJ,CH4,0.5,kg/TJ,14.100047499999999,Naphtha combustion consumption by freight transport,AR-A,SESCO,annual,kg,691df8d5-ed72-30fa-8cb8-e52504b204e6 +2021,Salta,II.1.1,28.200094999999997,TJ,N2O,2.0,kg/TJ,56.400189999999995,Naphtha combustion consumption by freight transport,AR-A,SESCO,annual,kg,bbec2b2c-5da7-39c8-9ced-6907825946e9 +2021,San Juan,II.1.1,11.51304,TJ,CO2,73300.0,kg/TJ,843905.832,Naphtha combustion consumption by freight transport,AR-J,SESCO,annual,kg,193a027d-e354-3d16-9361-990d2e2f30b6 +2021,San Juan,II.1.1,11.51304,TJ,CH4,0.5,kg/TJ,5.75652,Naphtha combustion consumption by freight transport,AR-J,SESCO,annual,kg,905e1eb2-6a22-306f-b831-ef0967bf533f +2021,San Juan,II.1.1,11.51304,TJ,N2O,2.0,kg/TJ,23.02608,Naphtha combustion consumption by freight transport,AR-J,SESCO,annual,kg,20c88ba3-728f-34d0-9303-d89a7ce84e37 +2021,San Luis,II.1.1,10.89627,TJ,CO2,73300.0,kg/TJ,798696.591,Naphtha combustion consumption by freight transport,AR-D,SESCO,annual,kg,4619a466-49c6-3ed3-844c-87a3c0d3d02f +2021,San Luis,II.1.1,10.89627,TJ,CH4,0.5,kg/TJ,5.448135,Naphtha combustion consumption by freight transport,AR-D,SESCO,annual,kg,1042c983-b809-3aaa-88e0-67a08bf36801 +2021,San Luis,II.1.1,10.89627,TJ,N2O,2.0,kg/TJ,21.79254,Naphtha combustion consumption by freight transport,AR-D,SESCO,annual,kg,07e7b561-f35a-3ae1-99e4-06eea8d8e34a +2021,Santa Cruz,II.1.1,11.99275,TJ,CO2,73300.0,kg/TJ,879068.575,Naphtha combustion consumption by freight transport,AR-Z,SESCO,annual,kg,119beef9-98d0-3b35-a9fd-565607f5babe +2021,Santa Cruz,II.1.1,11.99275,TJ,CH4,0.5,kg/TJ,5.996375,Naphtha combustion consumption by freight transport,AR-Z,SESCO,annual,kg,5cb666fb-5660-3ca4-aef7-94a964353df9 +2021,Santa Cruz,II.1.1,11.99275,TJ,N2O,2.0,kg/TJ,23.9855,Naphtha combustion consumption by freight transport,AR-Z,SESCO,annual,kg,e7c222b9-bf5c-3cb4-8431-e96b62818d7c +2021,Santa Fe,II.1.1,95.942,TJ,CO2,73300.0,kg/TJ,7032548.6,Naphtha combustion consumption by freight transport,AR-S,SESCO,annual,kg,eea53e88-39ef-322b-8419-e1d7469ef785 +2021,Santa Fe,II.1.1,95.942,TJ,CH4,0.5,kg/TJ,47.971,Naphtha combustion consumption by freight transport,AR-S,SESCO,annual,kg,7f1ecf25-df95-3d81-9d9a-0554e7316924 +2021,Santa Fe,II.1.1,95.942,TJ,N2O,2.0,kg/TJ,191.884,Naphtha combustion consumption by freight transport,AR-S,SESCO,annual,kg,b8b66917-859c-373b-9e1b-3e6c3b1756da +2021,Santiago del Estero,II.1.1,7.6068299999999995,TJ,CO2,73300.0,kg/TJ,557580.639,Naphtha combustion consumption by freight transport,AR-G,SESCO,annual,kg,653b75c3-9924-3a09-a438-7148d5ee9e8d +2021,Santiago del Estero,II.1.1,7.6068299999999995,TJ,CH4,0.5,kg/TJ,3.8034149999999998,Naphtha combustion consumption by freight transport,AR-G,SESCO,annual,kg,3ea5ff50-29a8-3a68-84dc-5662722c870d +2021,Santiago del Estero,II.1.1,7.6068299999999995,TJ,N2O,2.0,kg/TJ,15.213659999999999,Naphtha combustion consumption by freight transport,AR-G,SESCO,annual,kg,2786d114-c2d6-3f5a-b88e-5cc6f23a9421 +2021,Tierra del Fuego,II.1.1,16.001755,TJ,CO2,73300.0,kg/TJ,1172928.6415,Naphtha combustion consumption by freight transport,AR-V,SESCO,annual,kg,203f7269-fce8-373e-ba74-55bf567a8723 +2021,Tierra del Fuego,II.1.1,16.001755,TJ,CH4,0.5,kg/TJ,8.0008775,Naphtha combustion consumption by freight transport,AR-V,SESCO,annual,kg,4732060f-6d1e-3be1-802a-74ff6e9f5037 +2021,Tierra del Fuego,II.1.1,16.001755,TJ,N2O,2.0,kg/TJ,32.00351,Naphtha combustion consumption by freight transport,AR-V,SESCO,annual,kg,3629f579-95d7-38db-8e0a-c827b3927306 +2021,Tucuman,II.1.1,30.118934999999997,TJ,CO2,73300.0,kg/TJ,2207717.9354999997,Naphtha combustion consumption by freight transport,AR-T,SESCO,annual,kg,6ff037f0-77a8-3f54-91d5-c82676a065e4 +2021,Tucuman,II.1.1,30.118934999999997,TJ,CH4,0.5,kg/TJ,15.059467499999998,Naphtha combustion consumption by freight transport,AR-T,SESCO,annual,kg,443c065f-1aed-37fc-a077-0369e6b1552c +2021,Tucuman,II.1.1,30.118934999999997,TJ,N2O,2.0,kg/TJ,60.237869999999994,Naphtha combustion consumption by freight transport,AR-T,SESCO,annual,kg,199cb006-9cb3-39c1-9894-ba6169260e80 +2021,Buenos Aires,II.1.1,581.785435,TJ,CO2,73300.0,kg/TJ,42644872.3855,Naphtha combustion consumption by freight transport,AR-B,SESCO,annual,kg,457ba203-1abe-33c2-b21d-c1992d23cbd4 +2021,Buenos Aires,II.1.1,581.785435,TJ,CH4,0.5,kg/TJ,290.8927175,Naphtha combustion consumption by freight transport,AR-B,SESCO,annual,kg,c3b3c071-e4c5-3a16-a7ec-02d133c6b4c1 +2021,Buenos Aires,II.1.1,581.785435,TJ,N2O,2.0,kg/TJ,1163.57087,Naphtha combustion consumption by freight transport,AR-B,SESCO,annual,kg,8c1233be-187e-37cb-b815-83089f21a33d +2021,Capital Federal,II.1.1,117.59747999999999,TJ,CO2,73300.0,kg/TJ,8619895.284,Naphtha combustion consumption by freight transport,AR-C,SESCO,annual,kg,14bbc556-cefe-3807-958c-3678000594ae +2021,Capital Federal,II.1.1,117.59747999999999,TJ,CH4,0.5,kg/TJ,58.798739999999995,Naphtha combustion consumption by freight transport,AR-C,SESCO,annual,kg,9324c8d2-60ba-3bec-8668-8a8f1e6572db +2021,Capital Federal,II.1.1,117.59747999999999,TJ,N2O,2.0,kg/TJ,235.19495999999998,Naphtha combustion consumption by freight transport,AR-C,SESCO,annual,kg,a5045181-ddcd-373b-a761-072bd761d4c4 +2021,Catamarca,II.1.1,1.1650099999999999,TJ,CO2,73300.0,kg/TJ,85395.233,Naphtha combustion consumption by freight transport,AR-K,SESCO,annual,kg,20f0bd71-b837-3480-ab6d-87a68f2d7cea +2021,Catamarca,II.1.1,1.1650099999999999,TJ,CH4,0.5,kg/TJ,0.5825049999999999,Naphtha combustion consumption by freight transport,AR-K,SESCO,annual,kg,306fe611-9e78-3c74-ae30-04e76afa8c95 +2021,Catamarca,II.1.1,1.1650099999999999,TJ,N2O,2.0,kg/TJ,2.3300199999999998,Naphtha combustion consumption by freight transport,AR-K,SESCO,annual,kg,2c31cd85-5d0c-3412-80b9-be5b6998628a +2021,Chaco,II.1.1,12.575255,TJ,CO2,73300.0,kg/TJ,921766.1915000001,Naphtha combustion consumption by freight transport,AR-H,SESCO,annual,kg,dcea377a-ee86-3b87-aa36-1736cde2b090 +2021,Chaco,II.1.1,12.575255,TJ,CH4,0.5,kg/TJ,6.2876275,Naphtha combustion consumption by freight transport,AR-H,SESCO,annual,kg,54e02e96-9fb6-3828-9f70-444821635fc0 +2021,Chaco,II.1.1,12.575255,TJ,N2O,2.0,kg/TJ,25.15051,Naphtha combustion consumption by freight transport,AR-H,SESCO,annual,kg,f0cadb7d-9794-3669-a616-860fbad8f809 +2021,Chubut,II.1.1,15.042335,TJ,CO2,73300.0,kg/TJ,1102603.1554999999,Naphtha combustion consumption by freight transport,AR-U,SESCO,annual,kg,64e9c240-cb50-3047-968f-9a771dc812ff +2021,Chubut,II.1.1,15.042335,TJ,CH4,0.5,kg/TJ,7.5211675,Naphtha combustion consumption by freight transport,AR-U,SESCO,annual,kg,28c8df2e-05f7-3875-ad31-ba9d6c756773 +2021,Chubut,II.1.1,15.042335,TJ,N2O,2.0,kg/TJ,30.08467,Naphtha combustion consumption by freight transport,AR-U,SESCO,annual,kg,23fe444a-2cd0-36e7-81f2-808d1fb506f0 +2021,Corrientes,II.1.1,16.92691,TJ,CO2,73300.0,kg/TJ,1240742.503,Naphtha combustion consumption by freight transport,AR-W,SESCO,annual,kg,bbf63881-8518-3141-b563-a3ef6b5fdd35 +2021,Corrientes,II.1.1,16.92691,TJ,CH4,0.5,kg/TJ,8.463455,Naphtha combustion consumption by freight transport,AR-W,SESCO,annual,kg,f8b7fc67-bcf2-3aad-a649-811ffbfc9ef7 +2021,Corrientes,II.1.1,16.92691,TJ,N2O,2.0,kg/TJ,33.85382,Naphtha combustion consumption by freight transport,AR-W,SESCO,annual,kg,d5f73ecc-1bf4-3b3b-978d-a502a1620210 +2021,Córdoba,II.1.1,213.23109499999998,TJ,CO2,73300.0,kg/TJ,15629839.2635,Naphtha combustion consumption by freight transport,AR-X,SESCO,annual,kg,d5427c88-e500-3040-8ed4-7daeb57937cf +2021,Córdoba,II.1.1,213.23109499999998,TJ,CH4,0.5,kg/TJ,106.61554749999999,Naphtha combustion consumption by freight transport,AR-X,SESCO,annual,kg,5d5d2988-270c-3f53-8d89-3bfe58a1a789 +2021,Córdoba,II.1.1,213.23109499999998,TJ,N2O,2.0,kg/TJ,426.46218999999996,Naphtha combustion consumption by freight transport,AR-X,SESCO,annual,kg,c786e79a-bee2-30e4-a4ba-62c9c1cc4500 +2021,Entre Rios,II.1.1,29.639225,TJ,CO2,73300.0,kg/TJ,2172555.1925,Naphtha combustion consumption by freight transport,AR-E,SESCO,annual,kg,022767b5-6f18-3317-a226-8d7f0a97cc45 +2021,Entre Rios,II.1.1,29.639225,TJ,CH4,0.5,kg/TJ,14.8196125,Naphtha combustion consumption by freight transport,AR-E,SESCO,annual,kg,c184cc6b-df60-3f9a-983e-207ce036c28f +2021,Entre Rios,II.1.1,29.639225,TJ,N2O,2.0,kg/TJ,59.27845,Naphtha combustion consumption by freight transport,AR-E,SESCO,annual,kg,34f12108-59fb-3f7e-babb-28156d04c95c +2021,Formosa,II.1.1,1.9188399999999999,TJ,CO2,73300.0,kg/TJ,140650.97199999998,Naphtha combustion consumption by freight transport,AR-P,SESCO,annual,kg,bd50c442-b5d4-3e66-a6aa-1b78fde2c388 +2021,Formosa,II.1.1,1.9188399999999999,TJ,CH4,0.5,kg/TJ,0.9594199999999999,Naphtha combustion consumption by freight transport,AR-P,SESCO,annual,kg,3fa356ff-5f41-303d-97b8-bba460c7c35c +2021,Formosa,II.1.1,1.9188399999999999,TJ,N2O,2.0,kg/TJ,3.8376799999999998,Naphtha combustion consumption by freight transport,AR-P,SESCO,annual,kg,afdc4362-1c2f-332f-9881-fbbf7a701cef +2021,Jujuy,II.1.1,3.666355,TJ,CO2,73300.0,kg/TJ,268743.82149999996,Naphtha combustion consumption by freight transport,AR-Y,SESCO,annual,kg,f87a53a0-700a-30fe-988a-dd77b1f308c6 +2021,Jujuy,II.1.1,3.666355,TJ,CH4,0.5,kg/TJ,1.8331775,Naphtha combustion consumption by freight transport,AR-Y,SESCO,annual,kg,0ccd525d-fa86-30bb-acb8-4a2ad00ffc45 +2021,Jujuy,II.1.1,3.666355,TJ,N2O,2.0,kg/TJ,7.33271,Naphtha combustion consumption by freight transport,AR-Y,SESCO,annual,kg,bb688b29-b582-3442-a833-6fe166248235 +2021,La Pampa,II.1.1,11.30745,TJ,CO2,73300.0,kg/TJ,828836.085,Naphtha combustion consumption by freight transport,AR-L,SESCO,annual,kg,c9328a01-1552-3d6a-9a5a-553a34d717af +2021,La Pampa,II.1.1,11.30745,TJ,CH4,0.5,kg/TJ,5.653725,Naphtha combustion consumption by freight transport,AR-L,SESCO,annual,kg,c60159d9-2e7f-30b3-b455-7bfd3b4695c2 +2021,La Pampa,II.1.1,11.30745,TJ,N2O,2.0,kg/TJ,22.6149,Naphtha combustion consumption by freight transport,AR-L,SESCO,annual,kg,0963adda-14ee-3438-bd8d-d8407cb7331e +2021,La Rioja,II.1.1,3.4265,TJ,CO2,73300.0,kg/TJ,251162.44999999998,Naphtha combustion consumption by freight transport,AR-F,SESCO,annual,kg,28fd8d19-81e6-3ea7-a181-404d90d13e87 +2021,La Rioja,II.1.1,3.4265,TJ,CH4,0.5,kg/TJ,1.71325,Naphtha combustion consumption by freight transport,AR-F,SESCO,annual,kg,57ffe93d-06c9-37e4-8662-d0425a8cec5b +2021,La Rioja,II.1.1,3.4265,TJ,N2O,2.0,kg/TJ,6.853,Naphtha combustion consumption by freight transport,AR-F,SESCO,annual,kg,49e41b85-9b68-3d66-9d0e-344470ef4b2a +2021,Mendoza,II.1.1,79.04935499999999,TJ,CO2,73300.0,kg/TJ,5794317.721499999,Naphtha combustion consumption by freight transport,AR-M,SESCO,annual,kg,739d60a8-31ee-3946-b380-50f43bfcec90 +2021,Mendoza,II.1.1,79.04935499999999,TJ,CH4,0.5,kg/TJ,39.524677499999996,Naphtha combustion consumption by freight transport,AR-M,SESCO,annual,kg,5547f560-88d0-33bb-9c6f-3f0b46e72a34 +2021,Mendoza,II.1.1,79.04935499999999,TJ,N2O,2.0,kg/TJ,158.09870999999998,Naphtha combustion consumption by freight transport,AR-M,SESCO,annual,kg,8df80249-50b4-3ac6-9eef-dd100b09f3c4 +2021,Misiones,II.1.1,13.98012,TJ,CO2,73300.0,kg/TJ,1024742.796,Naphtha combustion consumption by freight transport,AR-N,SESCO,annual,kg,618be3ab-1a18-38f6-8cab-3d478bb6ac6a +2021,Misiones,II.1.1,13.98012,TJ,CH4,0.5,kg/TJ,6.99006,Naphtha combustion consumption by freight transport,AR-N,SESCO,annual,kg,0a7ef94e-d586-3089-9bf8-66cc55442dc4 +2021,Misiones,II.1.1,13.98012,TJ,N2O,2.0,kg/TJ,27.96024,Naphtha combustion consumption by freight transport,AR-N,SESCO,annual,kg,24e36c32-0bed-3b31-ae05-900b497f9c0b +2021,Neuquén,II.1.1,37.657235,TJ,CO2,73300.0,kg/TJ,2760275.3255,Naphtha combustion consumption by freight transport,AR-Q,SESCO,annual,kg,e8c974ee-d811-3349-82b3-b184a3bd8bfe +2021,Neuquén,II.1.1,37.657235,TJ,CH4,0.5,kg/TJ,18.8286175,Naphtha combustion consumption by freight transport,AR-Q,SESCO,annual,kg,095d07bc-d2d6-3233-bb85-061cc79ad1b9 +2021,Neuquén,II.1.1,37.657235,TJ,N2O,2.0,kg/TJ,75.31447,Naphtha combustion consumption by freight transport,AR-Q,SESCO,annual,kg,6c4b90a4-739a-3fc8-b122-bf12c72c68e4 +2021,Rio Negro,II.1.1,47.35423,TJ,CO2,73300.0,kg/TJ,3471065.059,Naphtha combustion consumption by freight transport,AR-R,SESCO,annual,kg,02680201-fcd3-3d11-bb77-e618b699e03a +2021,Rio Negro,II.1.1,47.35423,TJ,CH4,0.5,kg/TJ,23.677115,Naphtha combustion consumption by freight transport,AR-R,SESCO,annual,kg,86017596-f0d0-31c2-b42c-23899d8d34a2 +2021,Rio Negro,II.1.1,47.35423,TJ,N2O,2.0,kg/TJ,94.70846,Naphtha combustion consumption by freight transport,AR-R,SESCO,annual,kg,2ef524a2-d4f4-3d9a-a634-7c97e5afbe82 +2021,Salta,II.1.1,21.312829999999998,TJ,CO2,73300.0,kg/TJ,1562230.4389999998,Naphtha combustion consumption by freight transport,AR-A,SESCO,annual,kg,1e166c56-cd1f-3a1f-9f66-2b6c86f336c5 +2021,Salta,II.1.1,21.312829999999998,TJ,CH4,0.5,kg/TJ,10.656414999999999,Naphtha combustion consumption by freight transport,AR-A,SESCO,annual,kg,689d739d-d50e-39c0-8936-f8921985ff7c +2021,Salta,II.1.1,21.312829999999998,TJ,N2O,2.0,kg/TJ,42.625659999999996,Naphtha combustion consumption by freight transport,AR-A,SESCO,annual,kg,13d0990f-4d01-3cb9-8b96-41d88fa250b8 +2021,San Juan,II.1.1,6.37329,TJ,CO2,73300.0,kg/TJ,467162.157,Naphtha combustion consumption by freight transport,AR-J,SESCO,annual,kg,2f5f289a-8f59-344a-bf3a-7975676e7ab9 +2021,San Juan,II.1.1,6.37329,TJ,CH4,0.5,kg/TJ,3.186645,Naphtha combustion consumption by freight transport,AR-J,SESCO,annual,kg,de33ebc8-ffd7-37ee-b97e-50a26a249834 +2021,San Juan,II.1.1,6.37329,TJ,N2O,2.0,kg/TJ,12.74658,Naphtha combustion consumption by freight transport,AR-J,SESCO,annual,kg,e9a544c0-0385-3057-bde5-6cd519f7e806 +2021,San Luis,II.1.1,8.052275,TJ,CO2,73300.0,kg/TJ,590231.7575,Naphtha combustion consumption by freight transport,AR-D,SESCO,annual,kg,0feca5e7-a04f-3a3d-ac5e-c24bac0cdfb5 +2021,San Luis,II.1.1,8.052275,TJ,CH4,0.5,kg/TJ,4.0261375,Naphtha combustion consumption by freight transport,AR-D,SESCO,annual,kg,c6ded1f8-1ac9-32cb-b635-8974a7f4ec35 +2021,San Luis,II.1.1,8.052275,TJ,N2O,2.0,kg/TJ,16.10455,Naphtha combustion consumption by freight transport,AR-D,SESCO,annual,kg,16a4ae47-e45b-372c-ab3e-2affb19e9c4e +2021,Santa Cruz,II.1.1,5.208279999999999,TJ,CO2,73300.0,kg/TJ,381766.92399999994,Naphtha combustion consumption by freight transport,AR-Z,SESCO,annual,kg,90f36f08-333a-36eb-834a-4a281d87ca3b +2021,Santa Cruz,II.1.1,5.208279999999999,TJ,CH4,0.5,kg/TJ,2.6041399999999997,Naphtha combustion consumption by freight transport,AR-Z,SESCO,annual,kg,1cba1a3f-60af-3015-87a6-f44c67901537 +2021,Santa Cruz,II.1.1,5.208279999999999,TJ,N2O,2.0,kg/TJ,10.416559999999999,Naphtha combustion consumption by freight transport,AR-Z,SESCO,annual,kg,c400f2dc-0a3c-39f1-94a7-5523321d1e9f +2021,Santa Fe,II.1.1,95.942,TJ,CO2,73300.0,kg/TJ,7032548.6,Naphtha combustion consumption by freight transport,AR-S,SESCO,annual,kg,eea53e88-39ef-322b-8419-e1d7469ef785 +2021,Santa Fe,II.1.1,95.942,TJ,CH4,0.5,kg/TJ,47.971,Naphtha combustion consumption by freight transport,AR-S,SESCO,annual,kg,7f1ecf25-df95-3d81-9d9a-0554e7316924 +2021,Santa Fe,II.1.1,95.942,TJ,N2O,2.0,kg/TJ,191.884,Naphtha combustion consumption by freight transport,AR-S,SESCO,annual,kg,b8b66917-859c-373b-9e1b-3e6c3b1756da +2021,Santiago del Estero,II.1.1,3.9062099999999997,TJ,CO2,73300.0,kg/TJ,286325.19299999997,Naphtha combustion consumption by freight transport,AR-G,SESCO,annual,kg,495f2462-c1b4-3623-be48-06ad3e9e90d8 +2021,Santiago del Estero,II.1.1,3.9062099999999997,TJ,CH4,0.5,kg/TJ,1.9531049999999999,Naphtha combustion consumption by freight transport,AR-G,SESCO,annual,kg,0a23b614-4648-3f66-89f9-a5b3cc95f395 +2021,Santiago del Estero,II.1.1,3.9062099999999997,TJ,N2O,2.0,kg/TJ,7.8124199999999995,Naphtha combustion consumption by freight transport,AR-G,SESCO,annual,kg,371033dc-6cbb-3eea-97c9-c1751476c032 +2021,Tierra del Fuego,II.1.1,7.915215,TJ,CO2,73300.0,kg/TJ,580185.2595,Naphtha combustion consumption by freight transport,AR-V,SESCO,annual,kg,4854ab77-8bd0-3b42-9ce0-95cd27cdc387 +2021,Tierra del Fuego,II.1.1,7.915215,TJ,CH4,0.5,kg/TJ,3.9576075,Naphtha combustion consumption by freight transport,AR-V,SESCO,annual,kg,9008e2d7-44cc-3b55-85cc-578d1dfc91d0 +2021,Tierra del Fuego,II.1.1,7.915215,TJ,N2O,2.0,kg/TJ,15.83043,Naphtha combustion consumption by freight transport,AR-V,SESCO,annual,kg,308a5f6e-e85e-38d2-8516-10914148031c +2021,Tucuman,II.1.1,14.52836,TJ,CO2,73300.0,kg/TJ,1064928.788,Naphtha combustion consumption by freight transport,AR-T,SESCO,annual,kg,d8aa5123-98b4-3906-ade5-0ba30612352c +2021,Tucuman,II.1.1,14.52836,TJ,CH4,0.5,kg/TJ,7.26418,Naphtha combustion consumption by freight transport,AR-T,SESCO,annual,kg,89861fd0-fd5b-3724-928e-716e2cb14534 +2021,Tucuman,II.1.1,14.52836,TJ,N2O,2.0,kg/TJ,29.05672,Naphtha combustion consumption by freight transport,AR-T,SESCO,annual,kg,50121f45-270a-39b3-adde-ed0d741496bb +2021,Buenos Aires,II.1.1,6476.53272,TJ,CO2,74100.0,kg/TJ,479911074.552,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,9b07f1ef-de2b-385b-bcf0-90e06a4ce8fe +2021,Buenos Aires,II.1.1,6476.53272,TJ,CH4,3.9,kg/TJ,25258.477608,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,b515c49d-eb27-3806-bbe2-4715453dd0a0 +2021,Buenos Aires,II.1.1,6476.53272,TJ,N2O,3.9,kg/TJ,25258.477608,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,b515c49d-eb27-3806-bbe2-4715453dd0a0 +2021,Capital Federal,II.1.1,1002.47448,TJ,CO2,74100.0,kg/TJ,74283358.968,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,e2d05f9f-c733-3837-b086-c30191974373 +2021,Capital Federal,II.1.1,1002.47448,TJ,CH4,3.9,kg/TJ,3909.650472,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,39774e48-9bbb-3120-9be2-a9a6be417b60 +2021,Capital Federal,II.1.1,1002.47448,TJ,N2O,3.9,kg/TJ,3909.650472,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,39774e48-9bbb-3120-9be2-a9a6be417b60 +2021,Catamarca,II.1.1,45.76404,TJ,CO2,74100.0,kg/TJ,3391115.364,Gas Oil combustion consumption by public passenger transport,AR-K,SESCO,annual,kg,4523dc5d-d822-32bd-beda-c5124ac757b9 +2021,Catamarca,II.1.1,45.76404,TJ,CH4,3.9,kg/TJ,178.479756,Gas Oil combustion consumption by public passenger transport,AR-K,SESCO,annual,kg,138ce513-1b1f-3b95-8bd5-bdbb6e946979 +2021,Catamarca,II.1.1,45.76404,TJ,N2O,3.9,kg/TJ,178.479756,Gas Oil combustion consumption by public passenger transport,AR-K,SESCO,annual,kg,138ce513-1b1f-3b95-8bd5-bdbb6e946979 +2021,Chaco,II.1.1,72.27611999999999,TJ,CO2,74100.0,kg/TJ,5355660.492,Gas Oil combustion consumption by public passenger transport,AR-H,SESCO,annual,kg,28954c0c-905a-346c-bb94-61451106ab61 +2021,Chaco,II.1.1,72.27611999999999,TJ,CH4,3.9,kg/TJ,281.87686799999994,Gas Oil combustion consumption by public passenger transport,AR-H,SESCO,annual,kg,c81d0206-e1c5-33fd-b3a5-23af6edf11f9 +2021,Chaco,II.1.1,72.27611999999999,TJ,N2O,3.9,kg/TJ,281.87686799999994,Gas Oil combustion consumption by public passenger transport,AR-H,SESCO,annual,kg,c81d0206-e1c5-33fd-b3a5-23af6edf11f9 +2021,Chubut,II.1.1,17.5182,TJ,CO2,74100.0,kg/TJ,1298098.62,Gas Oil combustion consumption by public passenger transport,AR-U,SESCO,annual,kg,e98b7f4c-cb45-36d0-8fae-0e7518ac0f33 +2021,Chubut,II.1.1,17.5182,TJ,CH4,3.9,kg/TJ,68.32098,Gas Oil combustion consumption by public passenger transport,AR-U,SESCO,annual,kg,d3a4e832-0eee-3319-9c87-6ee851567652 +2021,Chubut,II.1.1,17.5182,TJ,N2O,3.9,kg/TJ,68.32098,Gas Oil combustion consumption by public passenger transport,AR-U,SESCO,annual,kg,d3a4e832-0eee-3319-9c87-6ee851567652 +2021,Corrientes,II.1.1,58.117079999999994,TJ,CO2,74100.0,kg/TJ,4306475.628,Gas Oil combustion consumption by public passenger transport,AR-W,SESCO,annual,kg,d83cc8e8-711e-3746-9c1b-6faf4d86a8c4 +2021,Corrientes,II.1.1,58.117079999999994,TJ,CH4,3.9,kg/TJ,226.65661199999997,Gas Oil combustion consumption by public passenger transport,AR-W,SESCO,annual,kg,c33c4e55-4ea6-3570-a29f-d668bf3df68c +2021,Corrientes,II.1.1,58.117079999999994,TJ,N2O,3.9,kg/TJ,226.65661199999997,Gas Oil combustion consumption by public passenger transport,AR-W,SESCO,annual,kg,c33c4e55-4ea6-3570-a29f-d668bf3df68c +2021,Córdoba,II.1.1,482.9244,TJ,CO2,74100.0,kg/TJ,35784698.04,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,b6cb226c-98f9-34dc-a627-f9fe313cefbe +2021,Córdoba,II.1.1,482.9244,TJ,CH4,3.9,kg/TJ,1883.40516,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,9b647cb0-81af-3e7e-9a0c-92aab65008d6 +2021,Córdoba,II.1.1,482.9244,TJ,N2O,3.9,kg/TJ,1883.40516,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,9b647cb0-81af-3e7e-9a0c-92aab65008d6 +2021,Entre Rios,II.1.1,131.4768,TJ,CO2,74100.0,kg/TJ,9742430.879999999,Gas Oil combustion consumption by public passenger transport,AR-E,SESCO,annual,kg,40c8309d-106d-3fd9-bd2f-23a3dfe696ab +2021,Entre Rios,II.1.1,131.4768,TJ,CH4,3.9,kg/TJ,512.75952,Gas Oil combustion consumption by public passenger transport,AR-E,SESCO,annual,kg,bd0ebf9b-0d8e-3d86-8ff7-6ca49491a77c +2021,Entre Rios,II.1.1,131.4768,TJ,N2O,3.9,kg/TJ,512.75952,Gas Oil combustion consumption by public passenger transport,AR-E,SESCO,annual,kg,bd0ebf9b-0d8e-3d86-8ff7-6ca49491a77c +2021,Formosa,II.1.1,1.4447999999999999,TJ,CO2,74100.0,kg/TJ,107059.68,Gas Oil combustion consumption by public passenger transport,AR-P,SESCO,annual,kg,de7c6587-4e3d-37a4-bd5c-2c2305e01016 +2021,Formosa,II.1.1,1.4447999999999999,TJ,CH4,3.9,kg/TJ,5.63472,Gas Oil combustion consumption by public passenger transport,AR-P,SESCO,annual,kg,77c7a571-2292-3916-afc6-9aadbce7119e +2021,Formosa,II.1.1,1.4447999999999999,TJ,N2O,3.9,kg/TJ,5.63472,Gas Oil combustion consumption by public passenger transport,AR-P,SESCO,annual,kg,77c7a571-2292-3916-afc6-9aadbce7119e +2021,Jujuy,II.1.1,154.23239999999998,TJ,CO2,74100.0,kg/TJ,11428620.839999998,Gas Oil combustion consumption by public passenger transport,AR-Y,SESCO,annual,kg,dd07ae24-5236-3e8b-ad8e-aad374fb5c0e +2021,Jujuy,II.1.1,154.23239999999998,TJ,CH4,3.9,kg/TJ,601.50636,Gas Oil combustion consumption by public passenger transport,AR-Y,SESCO,annual,kg,b65b2cd8-b75b-3254-9c63-d33f9f91e5e0 +2021,Jujuy,II.1.1,154.23239999999998,TJ,N2O,3.9,kg/TJ,601.50636,Gas Oil combustion consumption by public passenger transport,AR-Y,SESCO,annual,kg,b65b2cd8-b75b-3254-9c63-d33f9f91e5e0 +2021,Mendoza,II.1.1,691.48128,TJ,CO2,74100.0,kg/TJ,51238762.848,Gas Oil combustion consumption by public passenger transport,AR-M,SESCO,annual,kg,bc963fa9-fc30-3d65-b7cf-26309a2ee4bd +2021,Mendoza,II.1.1,691.48128,TJ,CH4,3.9,kg/TJ,2696.7769919999996,Gas Oil combustion consumption by public passenger transport,AR-M,SESCO,annual,kg,f0490b93-705c-361d-af30-07058073e354 +2021,Mendoza,II.1.1,691.48128,TJ,N2O,3.9,kg/TJ,2696.7769919999996,Gas Oil combustion consumption by public passenger transport,AR-M,SESCO,annual,kg,f0490b93-705c-361d-af30-07058073e354 +2021,Misiones,II.1.1,303.11904,TJ,CO2,74100.0,kg/TJ,22461120.864,Gas Oil combustion consumption by public passenger transport,AR-N,SESCO,annual,kg,ac879865-7757-3bab-a652-edce5d021f80 +2021,Misiones,II.1.1,303.11904,TJ,CH4,3.9,kg/TJ,1182.164256,Gas Oil combustion consumption by public passenger transport,AR-N,SESCO,annual,kg,53411895-8d85-343d-b4f0-9c8f3d2820b1 +2021,Misiones,II.1.1,303.11904,TJ,N2O,3.9,kg/TJ,1182.164256,Gas Oil combustion consumption by public passenger transport,AR-N,SESCO,annual,kg,53411895-8d85-343d-b4f0-9c8f3d2820b1 +2021,Neuquén,II.1.1,26.62044,TJ,CO2,74100.0,kg/TJ,1972574.6039999998,Gas Oil combustion consumption by public passenger transport,AR-Q,SESCO,annual,kg,356a3c1d-0cfd-3ddd-aa39-a3b1e56779e4 +2021,Neuquén,II.1.1,26.62044,TJ,CH4,3.9,kg/TJ,103.81971599999999,Gas Oil combustion consumption by public passenger transport,AR-Q,SESCO,annual,kg,e04c4681-02a7-34b6-b029-ed49b2aa973f +2021,Neuquén,II.1.1,26.62044,TJ,N2O,3.9,kg/TJ,103.81971599999999,Gas Oil combustion consumption by public passenger transport,AR-Q,SESCO,annual,kg,e04c4681-02a7-34b6-b029-ed49b2aa973f +2021,Rio Negro,II.1.1,15.60384,TJ,CO2,74100.0,kg/TJ,1156244.544,Gas Oil combustion consumption by public passenger transport,AR-R,SESCO,annual,kg,17a4f9e4-d5c4-327c-baae-c7c98e04921b +2021,Rio Negro,II.1.1,15.60384,TJ,CH4,3.9,kg/TJ,60.854976,Gas Oil combustion consumption by public passenger transport,AR-R,SESCO,annual,kg,17ecd8c0-5b5d-3fca-9f74-cae0cbf16c4f +2021,Rio Negro,II.1.1,15.60384,TJ,N2O,3.9,kg/TJ,60.854976,Gas Oil combustion consumption by public passenger transport,AR-R,SESCO,annual,kg,17ecd8c0-5b5d-3fca-9f74-cae0cbf16c4f +2021,Salta,II.1.1,175.75992,TJ,CO2,74100.0,kg/TJ,13023810.071999999,Gas Oil combustion consumption by public passenger transport,AR-A,SESCO,annual,kg,b74c50df-a250-38ab-9712-da7427b78dab +2021,Salta,II.1.1,175.75992,TJ,CH4,3.9,kg/TJ,685.4636879999999,Gas Oil combustion consumption by public passenger transport,AR-A,SESCO,annual,kg,b29d53a8-8318-3ba3-9300-4dd2f4bc5836 +2021,Salta,II.1.1,175.75992,TJ,N2O,3.9,kg/TJ,685.4636879999999,Gas Oil combustion consumption by public passenger transport,AR-A,SESCO,annual,kg,b29d53a8-8318-3ba3-9300-4dd2f4bc5836 +2021,San Juan,II.1.1,36.58956,TJ,CO2,74100.0,kg/TJ,2711286.3959999997,Gas Oil combustion consumption by public passenger transport,AR-J,SESCO,annual,kg,8126fea2-3f62-3fab-997a-c7c2bde41f00 +2021,San Juan,II.1.1,36.58956,TJ,CH4,3.9,kg/TJ,142.699284,Gas Oil combustion consumption by public passenger transport,AR-J,SESCO,annual,kg,d9e7f6bf-d2ce-3291-bc39-4ed9dae8cae9 +2021,San Juan,II.1.1,36.58956,TJ,N2O,3.9,kg/TJ,142.699284,Gas Oil combustion consumption by public passenger transport,AR-J,SESCO,annual,kg,d9e7f6bf-d2ce-3291-bc39-4ed9dae8cae9 +2021,Santa Fe,II.1.1,471.04091999999997,TJ,CO2,74100.0,kg/TJ,34904132.172,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,cc83a842-3ffa-36d9-9689-fd3e0ef1dfb4 +2021,Santa Fe,II.1.1,471.04091999999997,TJ,CH4,3.9,kg/TJ,1837.0595879999998,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,a299960c-01e2-3101-ae2f-33bfacefc2bb +2021,Santa Fe,II.1.1,471.04091999999997,TJ,N2O,3.9,kg/TJ,1837.0595879999998,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,a299960c-01e2-3101-ae2f-33bfacefc2bb +2021,Tierra del Fuego,II.1.1,6.321,TJ,CO2,74100.0,kg/TJ,468386.1,Gas Oil combustion consumption by public passenger transport,AR-V,SESCO,annual,kg,0cb7c4c3-21df-306f-9250-e5cbe049a17c +2021,Tierra del Fuego,II.1.1,6.321,TJ,CH4,3.9,kg/TJ,24.651899999999998,Gas Oil combustion consumption by public passenger transport,AR-V,SESCO,annual,kg,b157c2e9-54b2-3dcb-82bf-6a1dc9a7a249 +2021,Tierra del Fuego,II.1.1,6.321,TJ,N2O,3.9,kg/TJ,24.651899999999998,Gas Oil combustion consumption by public passenger transport,AR-V,SESCO,annual,kg,b157c2e9-54b2-3dcb-82bf-6a1dc9a7a249 +2021,Tucuman,II.1.1,38.829,TJ,CO2,74100.0,kg/TJ,2877228.9,Gas Oil combustion consumption by public passenger transport,AR-T,SESCO,annual,kg,4ec928d5-7a96-3c04-a605-3bc91c3933f8 +2021,Tucuman,II.1.1,38.829,TJ,CH4,3.9,kg/TJ,151.4331,Gas Oil combustion consumption by public passenger transport,AR-T,SESCO,annual,kg,a22d6acf-6a82-32d5-9ae3-d72d5ce7deda +2021,Tucuman,II.1.1,38.829,TJ,N2O,3.9,kg/TJ,151.4331,Gas Oil combustion consumption by public passenger transport,AR-T,SESCO,annual,kg,a22d6acf-6a82-32d5-9ae3-d72d5ce7deda +2021,Buenos Aires,II.1.1,3687.99648,TJ,CO2,74100.0,kg/TJ,273280539.168,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,3a1be204-7b49-3a36-aae0-3bfca96351f6 +2021,Buenos Aires,II.1.1,3687.99648,TJ,CH4,3.9,kg/TJ,14383.186271999999,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,12676e90-8781-375f-ac66-3abef1bfa206 +2021,Buenos Aires,II.1.1,3687.99648,TJ,N2O,3.9,kg/TJ,14383.186271999999,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,12676e90-8781-375f-ac66-3abef1bfa206 +2021,Capital Federal,II.1.1,710.4803999999999,TJ,CO2,74100.0,kg/TJ,52646597.63999999,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,8e2e4555-f3bb-384d-90bc-b9eb6cc8cf60 +2021,Capital Federal,II.1.1,710.4803999999999,TJ,CH4,3.9,kg/TJ,2770.8735599999995,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,94dfda24-7777-3aec-888b-42d0e2f99b81 +2021,Capital Federal,II.1.1,710.4803999999999,TJ,N2O,3.9,kg/TJ,2770.8735599999995,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,94dfda24-7777-3aec-888b-42d0e2f99b81 +2021,Chaco,II.1.1,11.738999999999999,TJ,CO2,74100.0,kg/TJ,869859.8999999999,Gas Oil combustion consumption by public passenger transport,AR-H,SESCO,annual,kg,ed3065a7-69f7-3f4e-ba87-983816f649d0 +2021,Chaco,II.1.1,11.738999999999999,TJ,CH4,3.9,kg/TJ,45.78209999999999,Gas Oil combustion consumption by public passenger transport,AR-H,SESCO,annual,kg,aa35a296-575a-3a7b-adb3-cfa66608268f +2021,Chaco,II.1.1,11.738999999999999,TJ,N2O,3.9,kg/TJ,45.78209999999999,Gas Oil combustion consumption by public passenger transport,AR-H,SESCO,annual,kg,aa35a296-575a-3a7b-adb3-cfa66608268f +2021,Chubut,II.1.1,52.048919999999995,TJ,CO2,74100.0,kg/TJ,3856824.9719999996,Gas Oil combustion consumption by public passenger transport,AR-U,SESCO,annual,kg,18838868-8c4a-3d8a-9c7e-b5843afd142e +2021,Chubut,II.1.1,52.048919999999995,TJ,CH4,3.9,kg/TJ,202.99078799999998,Gas Oil combustion consumption by public passenger transport,AR-U,SESCO,annual,kg,bd52f808-9d73-31c7-932b-bac13cceece0 +2021,Chubut,II.1.1,52.048919999999995,TJ,N2O,3.9,kg/TJ,202.99078799999998,Gas Oil combustion consumption by public passenger transport,AR-U,SESCO,annual,kg,bd52f808-9d73-31c7-932b-bac13cceece0 +2021,Corrientes,II.1.1,33.66384,TJ,CO2,74100.0,kg/TJ,2494490.544,Gas Oil combustion consumption by public passenger transport,AR-W,SESCO,annual,kg,4d593498-da44-359f-addc-1c18d7d4b38d +2021,Corrientes,II.1.1,33.66384,TJ,CH4,3.9,kg/TJ,131.288976,Gas Oil combustion consumption by public passenger transport,AR-W,SESCO,annual,kg,33cfb358-ad3f-3f30-afcd-37c93e099e24 +2021,Corrientes,II.1.1,33.66384,TJ,N2O,3.9,kg/TJ,131.288976,Gas Oil combustion consumption by public passenger transport,AR-W,SESCO,annual,kg,33cfb358-ad3f-3f30-afcd-37c93e099e24 +2021,Córdoba,II.1.1,181.10567999999998,TJ,CO2,74100.0,kg/TJ,13419930.887999998,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,5eabc383-1436-378b-b18b-da18a642fb5c +2021,Córdoba,II.1.1,181.10567999999998,TJ,CH4,3.9,kg/TJ,706.3121519999999,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,e86848b7-261f-3ac5-8b58-3734d0448624 +2021,Córdoba,II.1.1,181.10567999999998,TJ,N2O,3.9,kg/TJ,706.3121519999999,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,e86848b7-261f-3ac5-8b58-3734d0448624 +2021,Entre Rios,II.1.1,31.027079999999998,TJ,CO2,74100.0,kg/TJ,2299106.628,Gas Oil combustion consumption by public passenger transport,AR-E,SESCO,annual,kg,6b7a148b-825a-3bb7-a875-758e7377530e +2021,Entre Rios,II.1.1,31.027079999999998,TJ,CH4,3.9,kg/TJ,121.00561199999999,Gas Oil combustion consumption by public passenger transport,AR-E,SESCO,annual,kg,996bed3b-cdca-39b9-8639-00f93f8d24d7 +2021,Entre Rios,II.1.1,31.027079999999998,TJ,N2O,3.9,kg/TJ,121.00561199999999,Gas Oil combustion consumption by public passenger transport,AR-E,SESCO,annual,kg,996bed3b-cdca-39b9-8639-00f93f8d24d7 +2021,Mendoza,II.1.1,163.94868,TJ,CO2,74100.0,kg/TJ,12148597.188,Gas Oil combustion consumption by public passenger transport,AR-M,SESCO,annual,kg,9d7861b0-b146-321d-aaf6-9a1185481d12 +2021,Mendoza,II.1.1,163.94868,TJ,CH4,3.9,kg/TJ,639.399852,Gas Oil combustion consumption by public passenger transport,AR-M,SESCO,annual,kg,16956f5e-5c93-37dc-8f46-eb6910f329df +2021,Mendoza,II.1.1,163.94868,TJ,N2O,3.9,kg/TJ,639.399852,Gas Oil combustion consumption by public passenger transport,AR-M,SESCO,annual,kg,16956f5e-5c93-37dc-8f46-eb6910f329df +2021,Misiones,II.1.1,59.45352,TJ,CO2,74100.0,kg/TJ,4405505.8319999995,Gas Oil combustion consumption by public passenger transport,AR-N,SESCO,annual,kg,17309640-4b25-3e98-9c7f-d925259ef942 +2021,Misiones,II.1.1,59.45352,TJ,CH4,3.9,kg/TJ,231.86872799999998,Gas Oil combustion consumption by public passenger transport,AR-N,SESCO,annual,kg,b8ece898-0ec3-3476-bb63-21f12e52d5a2 +2021,Misiones,II.1.1,59.45352,TJ,N2O,3.9,kg/TJ,231.86872799999998,Gas Oil combustion consumption by public passenger transport,AR-N,SESCO,annual,kg,b8ece898-0ec3-3476-bb63-21f12e52d5a2 +2021,Neuquén,II.1.1,12.20856,TJ,CO2,74100.0,kg/TJ,904654.296,Gas Oil combustion consumption by public passenger transport,AR-Q,SESCO,annual,kg,c646b7b9-c11f-3190-89a0-44cab804b22a +2021,Neuquén,II.1.1,12.20856,TJ,CH4,3.9,kg/TJ,47.613384,Gas Oil combustion consumption by public passenger transport,AR-Q,SESCO,annual,kg,e1dc3fb3-f30d-3db5-870b-2454d64ae3d9 +2021,Neuquén,II.1.1,12.20856,TJ,N2O,3.9,kg/TJ,47.613384,Gas Oil combustion consumption by public passenger transport,AR-Q,SESCO,annual,kg,e1dc3fb3-f30d-3db5-870b-2454d64ae3d9 +2021,Rio Negro,II.1.1,140.83187999999998,TJ,CO2,74100.0,kg/TJ,10435642.307999998,Gas Oil combustion consumption by public passenger transport,AR-R,SESCO,annual,kg,0559d741-53ef-3684-b7ba-f1601511dd36 +2021,Rio Negro,II.1.1,140.83187999999998,TJ,CH4,3.9,kg/TJ,549.2443319999999,Gas Oil combustion consumption by public passenger transport,AR-R,SESCO,annual,kg,be5b77f4-1162-3bf7-ad96-e529cd0d3e5a +2021,Rio Negro,II.1.1,140.83187999999998,TJ,N2O,3.9,kg/TJ,549.2443319999999,Gas Oil combustion consumption by public passenger transport,AR-R,SESCO,annual,kg,be5b77f4-1162-3bf7-ad96-e529cd0d3e5a +2021,Salta,II.1.1,106.15668,TJ,CO2,74100.0,kg/TJ,7866209.988,Gas Oil combustion consumption by public passenger transport,AR-A,SESCO,annual,kg,dac70011-de87-3c7d-b121-d9ace9dedfb2 +2021,Salta,II.1.1,106.15668,TJ,CH4,3.9,kg/TJ,414.01105199999995,Gas Oil combustion consumption by public passenger transport,AR-A,SESCO,annual,kg,7f669601-7392-38da-b3c0-de84eca19444 +2021,Salta,II.1.1,106.15668,TJ,N2O,3.9,kg/TJ,414.01105199999995,Gas Oil combustion consumption by public passenger transport,AR-A,SESCO,annual,kg,7f669601-7392-38da-b3c0-de84eca19444 +2021,San Juan,II.1.1,59.52576,TJ,CO2,74100.0,kg/TJ,4410858.816,Gas Oil combustion consumption by public passenger transport,AR-J,SESCO,annual,kg,0b73ef53-08cf-3d61-a06e-53fde30a2af9 +2021,San Juan,II.1.1,59.52576,TJ,CH4,3.9,kg/TJ,232.150464,Gas Oil combustion consumption by public passenger transport,AR-J,SESCO,annual,kg,3fed6664-1a53-3d6d-b0a4-6c06dc4ffb0b +2021,San Juan,II.1.1,59.52576,TJ,N2O,3.9,kg/TJ,232.150464,Gas Oil combustion consumption by public passenger transport,AR-J,SESCO,annual,kg,3fed6664-1a53-3d6d-b0a4-6c06dc4ffb0b +2021,Santa Fe,II.1.1,242.04012,TJ,CO2,74100.0,kg/TJ,17935172.892,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,6d7b71d0-ac2a-3606-92d2-754595ff0f5c +2021,Santa Fe,II.1.1,242.04012,TJ,CH4,3.9,kg/TJ,943.956468,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,73196694-bfaa-3602-a9d5-be895144a290 +2021,Santa Fe,II.1.1,242.04012,TJ,N2O,3.9,kg/TJ,943.956468,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,73196694-bfaa-3602-a9d5-be895144a290 +2021,Tucuman,II.1.1,13.68948,TJ,CO2,74100.0,kg/TJ,1014390.468,Gas Oil combustion consumption by public passenger transport,AR-T,SESCO,annual,kg,5aad2194-1c91-392e-8365-4b74a8793edd +2021,Tucuman,II.1.1,13.68948,TJ,CH4,3.9,kg/TJ,53.388971999999995,Gas Oil combustion consumption by public passenger transport,AR-T,SESCO,annual,kg,76e40e5d-e089-3866-bf9d-69165cc1b5c7 +2021,Tucuman,II.1.1,13.68948,TJ,N2O,3.9,kg/TJ,53.388971999999995,Gas Oil combustion consumption by public passenger transport,AR-T,SESCO,annual,kg,76e40e5d-e089-3866-bf9d-69165cc1b5c7 +2022,Buenos Aires,II.5.1,720.1605599999999,TJ,CO2,74100.0,kg/TJ,53363897.49599999,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,d46dc01a-e7eb-3de7-a905-6940be36df7c +2022,Buenos Aires,II.5.1,720.1605599999999,TJ,CH4,3.9,kg/TJ,2808.6261839999997,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,230d5cc5-0eac-3686-b859-3615d2bfe6f6 +2022,Buenos Aires,II.5.1,720.1605599999999,TJ,N2O,3.9,kg/TJ,2808.6261839999997,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,230d5cc5-0eac-3686-b859-3615d2bfe6f6 +2022,Córdoba,II.5.1,129.95976,TJ,CO2,74100.0,kg/TJ,9630018.216,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,14769f95-61b8-3e8e-bf4d-2e301b2a84fe +2022,Córdoba,II.5.1,129.95976,TJ,CH4,3.9,kg/TJ,506.84306399999997,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,842c2126-ccb3-3ef7-b97d-b3f46ac18343 +2022,Córdoba,II.5.1,129.95976,TJ,N2O,3.9,kg/TJ,506.84306399999997,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,842c2126-ccb3-3ef7-b97d-b3f46ac18343 +2022,Entre Rios,II.5.1,16.03728,TJ,CO2,74100.0,kg/TJ,1188362.4479999999,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,b1373625-ebe1-3de8-b8e0-7dacc3a928cd +2022,Entre Rios,II.5.1,16.03728,TJ,CH4,3.9,kg/TJ,62.54539199999999,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,c252d8a2-9e5c-3aa0-abc2-0bf879218fc3 +2022,Entre Rios,II.5.1,16.03728,TJ,N2O,3.9,kg/TJ,62.54539199999999,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,c252d8a2-9e5c-3aa0-abc2-0bf879218fc3 +2022,La Pampa,II.5.1,25.78968,TJ,CO2,74100.0,kg/TJ,1911015.288,Gas Oil combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,e7946e55-a306-3f55-98a1-7fdc95988425 +2022,La Pampa,II.5.1,25.78968,TJ,CH4,3.9,kg/TJ,100.579752,Gas Oil combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,1a650d84-fd88-3ea7-a2d0-e138ad0710a5 +2022,La Pampa,II.5.1,25.78968,TJ,N2O,3.9,kg/TJ,100.579752,Gas Oil combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,1a650d84-fd88-3ea7-a2d0-e138ad0710a5 +2022,Santa Fe,II.5.1,173.80944,TJ,CO2,74100.0,kg/TJ,12879279.503999999,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,5960c84b-c31d-3859-9741-3d9559fa5e75 +2022,Santa Fe,II.5.1,173.80944,TJ,CH4,3.9,kg/TJ,677.856816,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,db3639b1-e99d-3f01-a9e6-663ed76a8ff4 +2022,Santa Fe,II.5.1,173.80944,TJ,N2O,3.9,kg/TJ,677.856816,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,db3639b1-e99d-3f01-a9e6-663ed76a8ff4 +2022,Buenos Aires,II.5.1,30.593639999999997,TJ,CO2,74100.0,kg/TJ,2266988.724,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,089bee9b-35c5-31ca-94b8-897ae887028f +2022,Buenos Aires,II.5.1,30.593639999999997,TJ,CH4,3.9,kg/TJ,119.31519599999999,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,789801ff-f179-32e7-8a63-f1bf1b3f7bd0 +2022,Buenos Aires,II.5.1,30.593639999999997,TJ,N2O,3.9,kg/TJ,119.31519599999999,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,789801ff-f179-32e7-8a63-f1bf1b3f7bd0 +2022,Córdoba,II.5.1,10.691519999999999,TJ,CO2,74100.0,kg/TJ,792241.6319999999,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,170c2f05-03d2-34ae-b5fb-3d76c7122275 +2022,Córdoba,II.5.1,10.691519999999999,TJ,CH4,3.9,kg/TJ,41.69692799999999,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,d5bc6b82-c2ad-31be-83b2-140c2e20823b +2022,Córdoba,II.5.1,10.691519999999999,TJ,N2O,3.9,kg/TJ,41.69692799999999,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,d5bc6b82-c2ad-31be-83b2-140c2e20823b +2022,Santa Fe,II.5.1,18.312839999999998,TJ,CO2,74100.0,kg/TJ,1356981.444,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,f24c00dc-68f6-3697-9813-670eb4257e26 +2022,Santa Fe,II.5.1,18.312839999999998,TJ,CH4,3.9,kg/TJ,71.420076,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,33193b48-66ce-3357-a8d3-2a8cf65f304e +2022,Santa Fe,II.5.1,18.312839999999998,TJ,N2O,3.9,kg/TJ,71.420076,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,33193b48-66ce-3357-a8d3-2a8cf65f304e +2022,Buenos Aires,II.5.1,32.997195,TJ,CO2,73300.0,kg/TJ,2418694.3935,Naphtha combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,ff04e44c-be3a-33bf-aa8d-357e116e4161 +2022,Buenos Aires,II.5.1,32.997195,TJ,CH4,0.5,kg/TJ,16.4985975,Naphtha combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,78e072d5-0647-36bf-8fe2-1af115a49a73 +2022,Buenos Aires,II.5.1,32.997195,TJ,N2O,2.0,kg/TJ,65.99439,Naphtha combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,a2dfe34f-c728-33fb-8a47-01b68d10d94e +2022,Córdoba,II.5.1,9.731259999999999,TJ,CO2,73300.0,kg/TJ,713301.3579999999,Naphtha combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,2515239d-fd1d-3a8c-99dd-6508f5467ecf +2022,Córdoba,II.5.1,9.731259999999999,TJ,CH4,0.5,kg/TJ,4.8656299999999995,Naphtha combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,9fadce8d-598d-35dd-93d3-98b56c5e841e +2022,Córdoba,II.5.1,9.731259999999999,TJ,N2O,2.0,kg/TJ,19.462519999999998,Naphtha combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,ecbd567f-f2b9-36c0-84e6-22562775865c +2022,Santa Fe,II.5.1,5.927845,TJ,CO2,73300.0,kg/TJ,434511.03849999997,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,785930d3-acfa-3af7-8001-c5359e42282e +2022,Santa Fe,II.5.1,5.927845,TJ,CH4,0.5,kg/TJ,2.9639225,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,5ecc5da7-1c9a-3a14-97cd-7b7c71755ddd +2022,Santa Fe,II.5.1,5.927845,TJ,N2O,2.0,kg/TJ,11.85569,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,7134a774-8531-3ed9-9a0d-0b2abb2009ef +2022,Buenos Aires,II.5.1,4.283125,TJ,CO2,73300.0,kg/TJ,313953.0625,Naphtha combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,7e3849da-1e4e-32f8-8449-4fa41b58bfec +2022,Buenos Aires,II.5.1,4.283125,TJ,CH4,0.5,kg/TJ,2.1415625,Naphtha combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,9d85a8ba-58a6-3dd1-b2c9-f2753345a4a8 +2022,Buenos Aires,II.5.1,4.283125,TJ,N2O,2.0,kg/TJ,8.56625,Naphtha combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,d5a06fc1-9111-3fcf-9248-4e9e3c5ed2a1 +2022,Córdoba,II.5.1,2.5013449999999997,TJ,CO2,73300.0,kg/TJ,183348.58849999998,Naphtha combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,e2099bcf-c629-3687-94a8-58b9d075f2f5 +2022,Córdoba,II.5.1,2.5013449999999997,TJ,CH4,0.5,kg/TJ,1.2506724999999999,Naphtha combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,749a4d01-5e50-33dc-b69c-3030e4fa1811 +2022,Córdoba,II.5.1,2.5013449999999997,TJ,N2O,2.0,kg/TJ,5.002689999999999,Naphtha combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,5ceb6be1-f743-3c8e-aeaa-7f9412d7ce4d +2022,Buenos Aires,II.5.1,337.75811999999996,TJ,CO2,74100.0,kg/TJ,25027876.691999998,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,d70f053b-3d14-3467-8372-858869b8bc04 +2022,Buenos Aires,II.5.1,337.75811999999996,TJ,CH4,3.9,kg/TJ,1317.2566679999998,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,255d397b-f1f9-36d8-aaf0-b4c31b0ca066 +2022,Buenos Aires,II.5.1,337.75811999999996,TJ,N2O,3.9,kg/TJ,1317.2566679999998,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,255d397b-f1f9-36d8-aaf0-b4c31b0ca066 +2022,Capital Federal,II.5.1,2.60064,TJ,CO2,74100.0,kg/TJ,192707.424,Gas Oil combustion consumption by agriculture machines,AR-C,SESCO,annual,kg,003831e7-8530-343e-a9f7-c5cf8f22aec1 +2022,Capital Federal,II.5.1,2.60064,TJ,CH4,3.9,kg/TJ,10.142496,Gas Oil combustion consumption by agriculture machines,AR-C,SESCO,annual,kg,7590ccc9-113e-3d75-a4fd-67608737eec0 +2022,Capital Federal,II.5.1,2.60064,TJ,N2O,3.9,kg/TJ,10.142496,Gas Oil combustion consumption by agriculture machines,AR-C,SESCO,annual,kg,7590ccc9-113e-3d75-a4fd-67608737eec0 +2022,Córdoba,II.5.1,201.98304,TJ,CO2,74100.0,kg/TJ,14966943.263999999,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,55d4d8c5-a3a7-3ef8-b82b-f3f7095f9229 +2022,Córdoba,II.5.1,201.98304,TJ,CH4,3.9,kg/TJ,787.733856,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,d7cc065a-24ab-3f28-a6d0-a5bc433e386c +2022,Córdoba,II.5.1,201.98304,TJ,N2O,3.9,kg/TJ,787.733856,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,d7cc065a-24ab-3f28-a6d0-a5bc433e386c +2022,Entre Rios,II.5.1,246.01332,TJ,CO2,74100.0,kg/TJ,18229587.012,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,3162fb28-aef7-3c5f-916d-f59fc05e1274 +2022,Entre Rios,II.5.1,246.01332,TJ,CH4,3.9,kg/TJ,959.4519479999999,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,9adc8d30-aecd-30ca-9428-0b7b398bac07 +2022,Entre Rios,II.5.1,246.01332,TJ,N2O,3.9,kg/TJ,959.4519479999999,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,9adc8d30-aecd-30ca-9428-0b7b398bac07 +2022,Salta,II.5.1,321.17904,TJ,CO2,74100.0,kg/TJ,23799366.864,Gas Oil combustion consumption by agriculture machines,AR-A,SESCO,annual,kg,def3834e-12a9-3ef4-8c0b-1508434691f8 +2022,Salta,II.5.1,321.17904,TJ,CH4,3.9,kg/TJ,1252.598256,Gas Oil combustion consumption by agriculture machines,AR-A,SESCO,annual,kg,95671294-c189-3ecb-9e74-fc57975f0c83 +2022,Salta,II.5.1,321.17904,TJ,N2O,3.9,kg/TJ,1252.598256,Gas Oil combustion consumption by agriculture machines,AR-A,SESCO,annual,kg,95671294-c189-3ecb-9e74-fc57975f0c83 +2022,Santa Fe,II.5.1,169.98072,TJ,CO2,74100.0,kg/TJ,12595571.352,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,500eef46-f2fd-35de-a300-e0c591661449 +2022,Santa Fe,II.5.1,169.98072,TJ,CH4,3.9,kg/TJ,662.924808,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,1bbc79d9-8fa8-3ad6-9984-b5ca313301f2 +2022,Santa Fe,II.5.1,169.98072,TJ,N2O,3.9,kg/TJ,662.924808,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,1bbc79d9-8fa8-3ad6-9984-b5ca313301f2 +2022,Buenos Aires,II.5.1,20.046599999999998,TJ,CO2,74100.0,kg/TJ,1485453.0599999998,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,61624599-7100-34d1-be3d-6b8b54188085 +2022,Buenos Aires,II.5.1,20.046599999999998,TJ,CH4,3.9,kg/TJ,78.18173999999999,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,8cd36c6e-8896-3b9f-9bba-961452c3a88e +2022,Buenos Aires,II.5.1,20.046599999999998,TJ,N2O,3.9,kg/TJ,78.18173999999999,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,8cd36c6e-8896-3b9f-9bba-961452c3a88e +2022,Córdoba,II.5.1,18.20448,TJ,CO2,74100.0,kg/TJ,1348951.968,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,68795360-e27d-34bd-a5ea-ac906bacead9 +2022,Córdoba,II.5.1,18.20448,TJ,CH4,3.9,kg/TJ,70.997472,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,4071a909-697f-3905-8599-452f63a85782 +2022,Córdoba,II.5.1,18.20448,TJ,N2O,3.9,kg/TJ,70.997472,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,4071a909-697f-3905-8599-452f63a85782 +2022,Entre Rios,II.5.1,7.910279999999999,TJ,CO2,74100.0,kg/TJ,586151.7479999999,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,95faf834-d270-3055-ad85-ccfabf265205 +2022,Entre Rios,II.5.1,7.910279999999999,TJ,CH4,3.9,kg/TJ,30.850091999999997,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,e7f8b3a0-25f1-30ac-9a3f-ad7d8f97701b +2022,Entre Rios,II.5.1,7.910279999999999,TJ,N2O,3.9,kg/TJ,30.850091999999997,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,e7f8b3a0-25f1-30ac-9a3f-ad7d8f97701b +2022,Salta,II.5.1,0.43344,TJ,CO2,74100.0,kg/TJ,32117.904,Gas Oil combustion consumption by agriculture machines,AR-A,SESCO,annual,kg,4f9498cd-d48f-390c-8fda-4c9fe84a0d34 +2022,Salta,II.5.1,0.43344,TJ,CH4,3.9,kg/TJ,1.690416,Gas Oil combustion consumption by agriculture machines,AR-A,SESCO,annual,kg,a7996e8e-e586-33ea-bed5-96a03024f0ea +2022,Salta,II.5.1,0.43344,TJ,N2O,3.9,kg/TJ,1.690416,Gas Oil combustion consumption by agriculture machines,AR-A,SESCO,annual,kg,a7996e8e-e586-33ea-bed5-96a03024f0ea +2022,Santa Fe,II.5.1,6.6822,TJ,CO2,74100.0,kg/TJ,495151.02,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,ef1eba40-11a1-3d1a-9daf-0b01bc2166cc +2022,Santa Fe,II.5.1,6.6822,TJ,CH4,3.9,kg/TJ,26.060579999999998,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,e366a7cb-9594-31a8-8d1f-b0200c437154 +2022,Santa Fe,II.5.1,6.6822,TJ,N2O,3.9,kg/TJ,26.060579999999998,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,e366a7cb-9594-31a8-8d1f-b0200c437154 +2022,Buenos Aires,II.5.1,8.257864999999999,TJ,CO2,73300.0,kg/TJ,605301.5044999999,Naphtha combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,7bc2b1da-cfff-3bda-adfc-526d7b795ece +2022,Buenos Aires,II.5.1,8.257864999999999,TJ,CH4,0.5,kg/TJ,4.1289324999999995,Naphtha combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,414525f1-29c4-3f0b-83a7-22cbe3590585 +2022,Buenos Aires,II.5.1,8.257864999999999,TJ,N2O,2.0,kg/TJ,16.515729999999998,Naphtha combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,97404a9e-8aeb-3d1e-9d10-4829ece3061c +2022,Capital Federal,II.5.1,0.9936849999999999,TJ,CO2,73300.0,kg/TJ,72837.1105,Naphtha combustion consumption by agriculture machines,AR-C,SESCO,annual,kg,d0623544-6b98-3cba-a331-5a8db698c7de +2022,Capital Federal,II.5.1,0.9936849999999999,TJ,CH4,0.5,kg/TJ,0.49684249999999996,Naphtha combustion consumption by agriculture machines,AR-C,SESCO,annual,kg,c562f279-e7c3-3cb6-bf80-e358c8aa85ac +2022,Capital Federal,II.5.1,0.9936849999999999,TJ,N2O,2.0,kg/TJ,1.9873699999999999,Naphtha combustion consumption by agriculture machines,AR-C,SESCO,annual,kg,d37d7ccc-94ea-382c-b841-9a2dabb594a9 +2022,Córdoba,II.5.1,36.149575,TJ,CO2,73300.0,kg/TJ,2649763.8474999997,Naphtha combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,60d320c6-1a40-3a03-afbd-1863c8f55c82 +2022,Córdoba,II.5.1,36.149575,TJ,CH4,0.5,kg/TJ,18.0747875,Naphtha combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,fb4370f2-936e-3aa2-a093-71f49cac233d +2022,Córdoba,II.5.1,36.149575,TJ,N2O,2.0,kg/TJ,72.29915,Naphtha combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,5fa27735-2b8b-3e4c-ac0c-57041264a20b +2022,Santa Fe,II.5.1,8.56625,TJ,CO2,73300.0,kg/TJ,627906.125,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,cf2ef777-14ae-359a-bb80-d40b7204272d +2022,Santa Fe,II.5.1,8.56625,TJ,CH4,0.5,kg/TJ,4.283125,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,ab0cd108-864e-34e7-9165-82cc0b31ad3e +2022,Santa Fe,II.5.1,8.56625,TJ,N2O,2.0,kg/TJ,17.1325,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,2c328e21-0690-36fe-bf3d-af4ff12dfabd +2022,Buenos Aires,II.5.1,1.85031,TJ,CO2,73300.0,kg/TJ,135627.723,Naphtha combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,bafb45d3-37de-37c0-9727-692d3b1f263b +2022,Buenos Aires,II.5.1,1.85031,TJ,CH4,0.5,kg/TJ,0.925155,Naphtha combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,b13e5dab-c314-39c9-84f7-1f15d41eafbe +2022,Buenos Aires,II.5.1,1.85031,TJ,N2O,2.0,kg/TJ,3.70062,Naphtha combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,45beebe4-ebea-39c4-9606-c2715c878adc +2022,Capital Federal,II.5.1,0.102795,TJ,CO2,73300.0,kg/TJ,7534.8735,Naphtha combustion consumption by agriculture machines,AR-C,SESCO,annual,kg,42bd2e8a-21bb-3fd3-8f66-aef111f5746e +2022,Capital Federal,II.5.1,0.102795,TJ,CH4,0.5,kg/TJ,0.0513975,Naphtha combustion consumption by agriculture machines,AR-C,SESCO,annual,kg,ea91ed39-e1f8-3165-8bad-99934dab7fe7 +2022,Capital Federal,II.5.1,0.102795,TJ,N2O,2.0,kg/TJ,0.20559,Naphtha combustion consumption by agriculture machines,AR-C,SESCO,annual,kg,d5eac6e2-f379-3189-90f7-afc08d64d8bb +2022,Córdoba,II.5.1,3.01532,TJ,CO2,73300.0,kg/TJ,221022.956,Naphtha combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,010b0c2f-a346-3777-b828-76c1ff4d6f3b +2022,Córdoba,II.5.1,3.01532,TJ,CH4,0.5,kg/TJ,1.50766,Naphtha combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,99763b33-1aa7-335e-a4a3-4bf5319651f3 +2022,Córdoba,II.5.1,3.01532,TJ,N2O,2.0,kg/TJ,6.03064,Naphtha combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,e47c1675-92b7-3f12-8f0a-59e51db4f910 +2022,Buenos Aires,II.5.1,4489.21032,TJ,CO2,74100.0,kg/TJ,332650484.712,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,a25781ac-b61f-3a4a-91e0-8a0acf9144df +2022,Buenos Aires,II.5.1,4489.21032,TJ,CH4,3.9,kg/TJ,17507.920248,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,5ab91e62-7c35-3250-92de-6718d8fbb333 +2022,Buenos Aires,II.5.1,4489.21032,TJ,N2O,3.9,kg/TJ,17507.920248,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,5ab91e62-7c35-3250-92de-6718d8fbb333 +2022,Catamarca,II.5.1,108.32387999999999,TJ,CO2,74100.0,kg/TJ,8026799.507999999,Gas Oil combustion consumption by agriculture machines,AR-K,SESCO,annual,kg,f24094e7-c09b-3ddf-94db-63aac610f7ca +2022,Catamarca,II.5.1,108.32387999999999,TJ,CH4,3.9,kg/TJ,422.463132,Gas Oil combustion consumption by agriculture machines,AR-K,SESCO,annual,kg,811b91fb-4843-3c74-a2af-8e376873646d +2022,Catamarca,II.5.1,108.32387999999999,TJ,N2O,3.9,kg/TJ,422.463132,Gas Oil combustion consumption by agriculture machines,AR-K,SESCO,annual,kg,811b91fb-4843-3c74-a2af-8e376873646d +2022,Chaco,II.5.1,612.01728,TJ,CO2,74100.0,kg/TJ,45350480.448,Gas Oil combustion consumption by agriculture machines,AR-H,SESCO,annual,kg,0a1e8c97-f117-3bcc-8f9c-007d5fbf7192 +2022,Chaco,II.5.1,612.01728,TJ,CH4,3.9,kg/TJ,2386.867392,Gas Oil combustion consumption by agriculture machines,AR-H,SESCO,annual,kg,f79dfa34-67ce-3fd5-b8e5-1325be0731ae +2022,Chaco,II.5.1,612.01728,TJ,N2O,3.9,kg/TJ,2386.867392,Gas Oil combustion consumption by agriculture machines,AR-H,SESCO,annual,kg,f79dfa34-67ce-3fd5-b8e5-1325be0731ae +2022,Corrientes,II.5.1,1214.5349999999999,TJ,CO2,74100.0,kg/TJ,89997043.49999999,Gas Oil combustion consumption by agriculture machines,AR-W,SESCO,annual,kg,6808deb5-7a91-3bc6-89d6-b315a3e9dcb3 +2022,Corrientes,II.5.1,1214.5349999999999,TJ,CH4,3.9,kg/TJ,4736.686499999999,Gas Oil combustion consumption by agriculture machines,AR-W,SESCO,annual,kg,5fb07c6a-d15d-3cb5-8d28-cf00ebeb2820 +2022,Corrientes,II.5.1,1214.5349999999999,TJ,N2O,3.9,kg/TJ,4736.686499999999,Gas Oil combustion consumption by agriculture machines,AR-W,SESCO,annual,kg,5fb07c6a-d15d-3cb5-8d28-cf00ebeb2820 +2022,Córdoba,II.5.1,2632.245,TJ,CO2,74100.0,kg/TJ,195049354.5,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,23398214-e2f8-3615-82eb-307855182a88 +2022,Córdoba,II.5.1,2632.245,TJ,CH4,3.9,kg/TJ,10265.7555,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,ea7fbfb6-a5f9-33ac-a935-21a5b36d4a4d +2022,Córdoba,II.5.1,2632.245,TJ,N2O,3.9,kg/TJ,10265.7555,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,ea7fbfb6-a5f9-33ac-a935-21a5b36d4a4d +2022,Entre Rios,II.5.1,764.6604,TJ,CO2,74100.0,kg/TJ,56661335.64,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,51e93c77-6da2-3204-93b0-7206c7e4235f +2022,Entre Rios,II.5.1,764.6604,TJ,CH4,3.9,kg/TJ,2982.1755599999997,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,0cc1bfa8-7d35-334b-a88a-74a9f9da1641 +2022,Entre Rios,II.5.1,764.6604,TJ,N2O,3.9,kg/TJ,2982.1755599999997,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,0cc1bfa8-7d35-334b-a88a-74a9f9da1641 +2022,Jujuy,II.5.1,93.5508,TJ,CO2,74100.0,kg/TJ,6932114.279999999,Gas Oil combustion consumption by agriculture machines,AR-Y,SESCO,annual,kg,16d8ecf7-af54-39dd-85a5-15376ad42a30 +2022,Jujuy,II.5.1,93.5508,TJ,CH4,3.9,kg/TJ,364.84812,Gas Oil combustion consumption by agriculture machines,AR-Y,SESCO,annual,kg,e89827ac-8ec3-32e1-a005-9ebee8600bc7 +2022,Jujuy,II.5.1,93.5508,TJ,N2O,3.9,kg/TJ,364.84812,Gas Oil combustion consumption by agriculture machines,AR-Y,SESCO,annual,kg,e89827ac-8ec3-32e1-a005-9ebee8600bc7 +2022,La Pampa,II.5.1,198.94896,TJ,CO2,74100.0,kg/TJ,14742117.936,Gas Oil combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,df2fc841-b41e-3614-a6d3-d52e4e304774 +2022,La Pampa,II.5.1,198.94896,TJ,CH4,3.9,kg/TJ,775.900944,Gas Oil combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,2d5dedd8-2132-3ea8-b593-319cb6902a80 +2022,La Pampa,II.5.1,198.94896,TJ,N2O,3.9,kg/TJ,775.900944,Gas Oil combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,2d5dedd8-2132-3ea8-b593-319cb6902a80 +2022,Mendoza,II.5.1,330.31739999999996,TJ,CO2,74100.0,kg/TJ,24476519.339999996,Gas Oil combustion consumption by agriculture machines,AR-M,SESCO,annual,kg,ace1d461-cdc4-3412-9f09-70b07b7e812d +2022,Mendoza,II.5.1,330.31739999999996,TJ,CH4,3.9,kg/TJ,1288.2378599999997,Gas Oil combustion consumption by agriculture machines,AR-M,SESCO,annual,kg,23218d6c-1ae2-371c-a0b4-f808fa1a7940 +2022,Mendoza,II.5.1,330.31739999999996,TJ,N2O,3.9,kg/TJ,1288.2378599999997,Gas Oil combustion consumption by agriculture machines,AR-M,SESCO,annual,kg,23218d6c-1ae2-371c-a0b4-f808fa1a7940 +2022,Misiones,II.5.1,143.25191999999998,TJ,CO2,74100.0,kg/TJ,10614967.271999998,Gas Oil combustion consumption by agriculture machines,AR-N,SESCO,annual,kg,621b5510-5513-3284-8ba8-5315741b884f +2022,Misiones,II.5.1,143.25191999999998,TJ,CH4,3.9,kg/TJ,558.6824879999999,Gas Oil combustion consumption by agriculture machines,AR-N,SESCO,annual,kg,7601801f-7da7-336b-9742-c5dbe9677497 +2022,Misiones,II.5.1,143.25191999999998,TJ,N2O,3.9,kg/TJ,558.6824879999999,Gas Oil combustion consumption by agriculture machines,AR-N,SESCO,annual,kg,7601801f-7da7-336b-9742-c5dbe9677497 +2022,Neuquén,II.5.1,286.97339999999997,TJ,CO2,74100.0,kg/TJ,21264728.939999998,Gas Oil combustion consumption by agriculture machines,AR-Q,SESCO,annual,kg,f3e77c12-48a3-3e95-80ee-b022059bfab8 +2022,Neuquén,II.5.1,286.97339999999997,TJ,CH4,3.9,kg/TJ,1119.19626,Gas Oil combustion consumption by agriculture machines,AR-Q,SESCO,annual,kg,00abbdd4-78aa-3b4a-858f-a262be1b4266 +2022,Neuquén,II.5.1,286.97339999999997,TJ,N2O,3.9,kg/TJ,1119.19626,Gas Oil combustion consumption by agriculture machines,AR-Q,SESCO,annual,kg,00abbdd4-78aa-3b4a-858f-a262be1b4266 +2022,Salta,II.5.1,255.91019999999997,TJ,CO2,74100.0,kg/TJ,18962945.819999997,Gas Oil combustion consumption by agriculture machines,AR-A,SESCO,annual,kg,bdb660e2-e3dd-3fc6-a556-6384bdc5e43d +2022,Salta,II.5.1,255.91019999999997,TJ,CH4,3.9,kg/TJ,998.0497799999998,Gas Oil combustion consumption by agriculture machines,AR-A,SESCO,annual,kg,51378b21-d485-3460-a0be-b1afb1939ef0 +2022,Salta,II.5.1,255.91019999999997,TJ,N2O,3.9,kg/TJ,998.0497799999998,Gas Oil combustion consumption by agriculture machines,AR-A,SESCO,annual,kg,51378b21-d485-3460-a0be-b1afb1939ef0 +2022,San Juan,II.5.1,221.88515999999998,TJ,CO2,74100.0,kg/TJ,16441690.355999999,Gas Oil combustion consumption by agriculture machines,AR-J,SESCO,annual,kg,a39079a8-02a3-3500-a7cb-2017ecc0d2c7 +2022,San Juan,II.5.1,221.88515999999998,TJ,CH4,3.9,kg/TJ,865.3521239999999,Gas Oil combustion consumption by agriculture machines,AR-J,SESCO,annual,kg,9547e222-e09c-36e8-8d49-6c2d0b10631a +2022,San Juan,II.5.1,221.88515999999998,TJ,N2O,3.9,kg/TJ,865.3521239999999,Gas Oil combustion consumption by agriculture machines,AR-J,SESCO,annual,kg,9547e222-e09c-36e8-8d49-6c2d0b10631a +2022,San Luis,II.5.1,177.13248,TJ,CO2,74100.0,kg/TJ,13125516.768,Gas Oil combustion consumption by agriculture machines,AR-D,SESCO,annual,kg,b56c6fa4-c719-3de5-a3de-912c2f7dfd54 +2022,San Luis,II.5.1,177.13248,TJ,CH4,3.9,kg/TJ,690.8166719999999,Gas Oil combustion consumption by agriculture machines,AR-D,SESCO,annual,kg,a6a3294c-64f1-3d0a-8dab-333a68e1e7a7 +2022,San Luis,II.5.1,177.13248,TJ,N2O,3.9,kg/TJ,690.8166719999999,Gas Oil combustion consumption by agriculture machines,AR-D,SESCO,annual,kg,a6a3294c-64f1-3d0a-8dab-333a68e1e7a7 +2022,Santa Cruz,II.5.1,164.45435999999998,TJ,CO2,74100.0,kg/TJ,12186068.076,Gas Oil combustion consumption by agriculture machines,AR-Z,SESCO,annual,kg,c0485b92-f1f9-3120-9479-2d149db3251d +2022,Santa Cruz,II.5.1,164.45435999999998,TJ,CH4,3.9,kg/TJ,641.372004,Gas Oil combustion consumption by agriculture machines,AR-Z,SESCO,annual,kg,400f9675-4f25-3556-a62a-8c4df33febea +2022,Santa Cruz,II.5.1,164.45435999999998,TJ,N2O,3.9,kg/TJ,641.372004,Gas Oil combustion consumption by agriculture machines,AR-Z,SESCO,annual,kg,400f9675-4f25-3556-a62a-8c4df33febea +2022,Santa Fe,II.5.1,5091.69192,TJ,CO2,74100.0,kg/TJ,377294371.272,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,3d85771f-6b72-340a-bbd4-93ab411cacef +2022,Santa Fe,II.5.1,5091.69192,TJ,CH4,3.9,kg/TJ,19857.598488,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,0779d1d3-f70a-35cc-ad25-637229dc60a0 +2022,Santa Fe,II.5.1,5091.69192,TJ,N2O,3.9,kg/TJ,19857.598488,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,0779d1d3-f70a-35cc-ad25-637229dc60a0 +2022,Santiago del Estero,II.5.1,604.2876,TJ,CO2,74100.0,kg/TJ,44777711.16,Gas Oil combustion consumption by agriculture machines,AR-G,SESCO,annual,kg,0ee1e731-10c5-3633-9de7-6a234dbcdb2b +2022,Santiago del Estero,II.5.1,604.2876,TJ,CH4,3.9,kg/TJ,2356.7216399999998,Gas Oil combustion consumption by agriculture machines,AR-G,SESCO,annual,kg,32880c49-3921-303f-95e2-39524c6adf60 +2022,Santiago del Estero,II.5.1,604.2876,TJ,N2O,3.9,kg/TJ,2356.7216399999998,Gas Oil combustion consumption by agriculture machines,AR-G,SESCO,annual,kg,32880c49-3921-303f-95e2-39524c6adf60 +2022,Tucuman,II.5.1,256.59648,TJ,CO2,74100.0,kg/TJ,19013799.167999998,Gas Oil combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,2a88e784-c1b4-3128-ae09-4bc197124b00 +2022,Tucuman,II.5.1,256.59648,TJ,CH4,3.9,kg/TJ,1000.7262719999999,Gas Oil combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,99700534-b1ca-3e21-8e1f-682368515795 +2022,Tucuman,II.5.1,256.59648,TJ,N2O,3.9,kg/TJ,1000.7262719999999,Gas Oil combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,99700534-b1ca-3e21-8e1f-682368515795 +2022,Buenos Aires,II.5.1,434.41524,TJ,CO2,74100.0,kg/TJ,32190169.283999998,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,34d152d5-8200-34ff-949c-39990a6ef0f2 +2022,Buenos Aires,II.5.1,434.41524,TJ,CH4,3.9,kg/TJ,1694.2194359999999,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,ee82aa8a-a6af-377d-a1b8-0c1b8a585eb8 +2022,Buenos Aires,II.5.1,434.41524,TJ,N2O,3.9,kg/TJ,1694.2194359999999,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,ee82aa8a-a6af-377d-a1b8-0c1b8a585eb8 +2022,Catamarca,II.5.1,26.76492,TJ,CO2,74100.0,kg/TJ,1983280.572,Gas Oil combustion consumption by agriculture machines,AR-K,SESCO,annual,kg,c6285261-91f7-3ee9-9ca3-804e7c72af99 +2022,Catamarca,II.5.1,26.76492,TJ,CH4,3.9,kg/TJ,104.383188,Gas Oil combustion consumption by agriculture machines,AR-K,SESCO,annual,kg,85a1655d-bbaf-3bd2-8dff-869b3bf55f7e +2022,Catamarca,II.5.1,26.76492,TJ,N2O,3.9,kg/TJ,104.383188,Gas Oil combustion consumption by agriculture machines,AR-K,SESCO,annual,kg,85a1655d-bbaf-3bd2-8dff-869b3bf55f7e +2022,Chaco,II.5.1,143.54088,TJ,CO2,74100.0,kg/TJ,10636379.207999999,Gas Oil combustion consumption by agriculture machines,AR-H,SESCO,annual,kg,70d66ecc-4a0c-3e81-9855-17e4308622b5 +2022,Chaco,II.5.1,143.54088,TJ,CH4,3.9,kg/TJ,559.8094319999999,Gas Oil combustion consumption by agriculture machines,AR-H,SESCO,annual,kg,ef74d3ed-f834-336d-8199-17ea126cdbe4 +2022,Chaco,II.5.1,143.54088,TJ,N2O,3.9,kg/TJ,559.8094319999999,Gas Oil combustion consumption by agriculture machines,AR-H,SESCO,annual,kg,ef74d3ed-f834-336d-8199-17ea126cdbe4 +2022,Corrientes,II.5.1,135.84732,TJ,CO2,74100.0,kg/TJ,10066286.412,Gas Oil combustion consumption by agriculture machines,AR-W,SESCO,annual,kg,e0315b59-050c-3899-ac07-bd1e43aa046b +2022,Corrientes,II.5.1,135.84732,TJ,CH4,3.9,kg/TJ,529.804548,Gas Oil combustion consumption by agriculture machines,AR-W,SESCO,annual,kg,47fbd209-c781-3c3d-8f6c-4cdba6659c17 +2022,Corrientes,II.5.1,135.84732,TJ,N2O,3.9,kg/TJ,529.804548,Gas Oil combustion consumption by agriculture machines,AR-W,SESCO,annual,kg,47fbd209-c781-3c3d-8f6c-4cdba6659c17 +2022,Córdoba,II.5.1,203.17499999999998,TJ,CO2,74100.0,kg/TJ,15055267.499999998,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,c879712d-f3dd-382e-b3c9-961f0396cda9 +2022,Córdoba,II.5.1,203.17499999999998,TJ,CH4,3.9,kg/TJ,792.3824999999999,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,7e047d84-06a5-35c8-87ca-ab808126a210 +2022,Córdoba,II.5.1,203.17499999999998,TJ,N2O,3.9,kg/TJ,792.3824999999999,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,7e047d84-06a5-35c8-87ca-ab808126a210 +2022,Entre Rios,II.5.1,52.26564,TJ,CO2,74100.0,kg/TJ,3872883.9239999996,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,5f604852-43eb-3206-836b-0dabb2dda811 +2022,Entre Rios,II.5.1,52.26564,TJ,CH4,3.9,kg/TJ,203.835996,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,f9f64da1-d495-343a-a0fd-d46a51c37ba1 +2022,Entre Rios,II.5.1,52.26564,TJ,N2O,3.9,kg/TJ,203.835996,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,f9f64da1-d495-343a-a0fd-d46a51c37ba1 +2022,Jujuy,II.5.1,28.281959999999998,TJ,CO2,74100.0,kg/TJ,2095693.2359999998,Gas Oil combustion consumption by agriculture machines,AR-Y,SESCO,annual,kg,a57bea38-d7e4-3c6e-be06-7941db26ebab +2022,Jujuy,II.5.1,28.281959999999998,TJ,CH4,3.9,kg/TJ,110.29964399999999,Gas Oil combustion consumption by agriculture machines,AR-Y,SESCO,annual,kg,d8490651-1ae7-38f6-830e-df4840c54b14 +2022,Jujuy,II.5.1,28.281959999999998,TJ,N2O,3.9,kg/TJ,110.29964399999999,Gas Oil combustion consumption by agriculture machines,AR-Y,SESCO,annual,kg,d8490651-1ae7-38f6-830e-df4840c54b14 +2022,La Pampa,II.5.1,24.778319999999997,TJ,CO2,74100.0,kg/TJ,1836073.5119999999,Gas Oil combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,94e02194-783a-3b10-a28d-39612a44d636 +2022,La Pampa,II.5.1,24.778319999999997,TJ,CH4,3.9,kg/TJ,96.63544799999998,Gas Oil combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,f6ad24a3-ff69-35d8-8cd6-10533042d839 +2022,La Pampa,II.5.1,24.778319999999997,TJ,N2O,3.9,kg/TJ,96.63544799999998,Gas Oil combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,f6ad24a3-ff69-35d8-8cd6-10533042d839 +2022,Mendoza,II.5.1,99.58283999999999,TJ,CO2,74100.0,kg/TJ,7379088.443999999,Gas Oil combustion consumption by agriculture machines,AR-M,SESCO,annual,kg,29166df9-2b05-3ebf-8955-30517ea9eca6 +2022,Mendoza,II.5.1,99.58283999999999,TJ,CH4,3.9,kg/TJ,388.37307599999997,Gas Oil combustion consumption by agriculture machines,AR-M,SESCO,annual,kg,5380743e-43d5-3a97-8f71-d48d0bc248b7 +2022,Mendoza,II.5.1,99.58283999999999,TJ,N2O,3.9,kg/TJ,388.37307599999997,Gas Oil combustion consumption by agriculture machines,AR-M,SESCO,annual,kg,5380743e-43d5-3a97-8f71-d48d0bc248b7 +2022,Misiones,II.5.1,18.45732,TJ,CO2,74100.0,kg/TJ,1367687.412,Gas Oil combustion consumption by agriculture machines,AR-N,SESCO,annual,kg,f7f107a2-8f9e-3147-b26b-fcf16cd8bee9 +2022,Misiones,II.5.1,18.45732,TJ,CH4,3.9,kg/TJ,71.983548,Gas Oil combustion consumption by agriculture machines,AR-N,SESCO,annual,kg,777b8b32-e5ad-3a3b-b492-c76598ef4779 +2022,Misiones,II.5.1,18.45732,TJ,N2O,3.9,kg/TJ,71.983548,Gas Oil combustion consumption by agriculture machines,AR-N,SESCO,annual,kg,777b8b32-e5ad-3a3b-b492-c76598ef4779 +2022,Neuquén,II.5.1,73.8654,TJ,CO2,74100.0,kg/TJ,5473426.14,Gas Oil combustion consumption by agriculture machines,AR-Q,SESCO,annual,kg,e835bc23-3826-3c6c-b7fb-7f7841079c89 +2022,Neuquén,II.5.1,73.8654,TJ,CH4,3.9,kg/TJ,288.07505999999995,Gas Oil combustion consumption by agriculture machines,AR-Q,SESCO,annual,kg,11783656-f905-3ff1-b6e5-6887fd59ee5b +2022,Neuquén,II.5.1,73.8654,TJ,N2O,3.9,kg/TJ,288.07505999999995,Gas Oil combustion consumption by agriculture machines,AR-Q,SESCO,annual,kg,11783656-f905-3ff1-b6e5-6887fd59ee5b +2022,Salta,II.5.1,48.79812,TJ,CO2,74100.0,kg/TJ,3615940.692,Gas Oil combustion consumption by agriculture machines,AR-A,SESCO,annual,kg,a3bb8b65-9b84-3fc4-8aba-775779c58cca +2022,Salta,II.5.1,48.79812,TJ,CH4,3.9,kg/TJ,190.31266799999997,Gas Oil combustion consumption by agriculture machines,AR-A,SESCO,annual,kg,02ee9ab1-3df0-3220-9130-e08e555bff6a +2022,Salta,II.5.1,48.79812,TJ,N2O,3.9,kg/TJ,190.31266799999997,Gas Oil combustion consumption by agriculture machines,AR-A,SESCO,annual,kg,02ee9ab1-3df0-3220-9130-e08e555bff6a +2022,San Juan,II.5.1,25.71744,TJ,CO2,74100.0,kg/TJ,1905662.304,Gas Oil combustion consumption by agriculture machines,AR-J,SESCO,annual,kg,63415adb-3ad0-3b85-8d7c-fcd3130e1390 +2022,San Juan,II.5.1,25.71744,TJ,CH4,3.9,kg/TJ,100.298016,Gas Oil combustion consumption by agriculture machines,AR-J,SESCO,annual,kg,61bb9db3-1dd0-3216-a9af-28781b01bcdc +2022,San Juan,II.5.1,25.71744,TJ,N2O,3.9,kg/TJ,100.298016,Gas Oil combustion consumption by agriculture machines,AR-J,SESCO,annual,kg,61bb9db3-1dd0-3216-a9af-28781b01bcdc +2022,San Luis,II.5.1,14.88144,TJ,CO2,74100.0,kg/TJ,1102714.704,Gas Oil combustion consumption by agriculture machines,AR-D,SESCO,annual,kg,ada33c5a-71ac-3ff8-ad09-cd336c181b88 +2022,San Luis,II.5.1,14.88144,TJ,CH4,3.9,kg/TJ,58.037616,Gas Oil combustion consumption by agriculture machines,AR-D,SESCO,annual,kg,0431522f-7885-3f4e-8951-31a00e0dfdb9 +2022,San Luis,II.5.1,14.88144,TJ,N2O,3.9,kg/TJ,58.037616,Gas Oil combustion consumption by agriculture machines,AR-D,SESCO,annual,kg,0431522f-7885-3f4e-8951-31a00e0dfdb9 +2022,Santa Cruz,II.5.1,85.82112,TJ,CO2,74100.0,kg/TJ,6359344.992,Gas Oil combustion consumption by agriculture machines,AR-Z,SESCO,annual,kg,1ec82b94-3caa-3af9-897b-4d1b0a12dd71 +2022,Santa Cruz,II.5.1,85.82112,TJ,CH4,3.9,kg/TJ,334.702368,Gas Oil combustion consumption by agriculture machines,AR-Z,SESCO,annual,kg,2f92f50e-59b8-3028-826e-75d11934ad4d +2022,Santa Cruz,II.5.1,85.82112,TJ,N2O,3.9,kg/TJ,334.702368,Gas Oil combustion consumption by agriculture machines,AR-Z,SESCO,annual,kg,2f92f50e-59b8-3028-826e-75d11934ad4d +2022,Santa Fe,II.5.1,378.71819999999997,TJ,CO2,74100.0,kg/TJ,28063018.619999997,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,6ce2e390-0151-3424-8713-1535bba0fc9b +2022,Santa Fe,II.5.1,378.71819999999997,TJ,CH4,3.9,kg/TJ,1477.0009799999998,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,918af9db-08a7-355c-bceb-ac19e197be69 +2022,Santa Fe,II.5.1,378.71819999999997,TJ,N2O,3.9,kg/TJ,1477.0009799999998,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,918af9db-08a7-355c-bceb-ac19e197be69 +2022,Santiago del Estero,II.5.1,206.42579999999998,TJ,CO2,74100.0,kg/TJ,15296151.78,Gas Oil combustion consumption by agriculture machines,AR-G,SESCO,annual,kg,2915c44b-7a22-3349-b11a-35d8aa0808a1 +2022,Santiago del Estero,II.5.1,206.42579999999998,TJ,CH4,3.9,kg/TJ,805.0606199999999,Gas Oil combustion consumption by agriculture machines,AR-G,SESCO,annual,kg,90082ccf-b51d-32e7-ba12-6618adb05c3a +2022,Santiago del Estero,II.5.1,206.42579999999998,TJ,N2O,3.9,kg/TJ,805.0606199999999,Gas Oil combustion consumption by agriculture machines,AR-G,SESCO,annual,kg,90082ccf-b51d-32e7-ba12-6618adb05c3a +2022,Tucuman,II.5.1,46.73928,TJ,CO2,74100.0,kg/TJ,3463380.648,Gas Oil combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,d4ee8671-7606-38ab-b1d5-144150035071 +2022,Tucuman,II.5.1,46.73928,TJ,CH4,3.9,kg/TJ,182.28319199999999,Gas Oil combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,b5e6640f-2417-34e5-a19d-9955eeda8b46 +2022,Tucuman,II.5.1,46.73928,TJ,N2O,3.9,kg/TJ,182.28319199999999,Gas Oil combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,b5e6640f-2417-34e5-a19d-9955eeda8b46 +2022,Santa Fe,II.5.1,2.981055,TJ,CO2,73300.0,kg/TJ,218511.3315,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,349bc9de-bd3e-36bf-abc4-44627fa13cb9 +2022,Santa Fe,II.5.1,2.981055,TJ,CH4,0.5,kg/TJ,1.4905275,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,a626c07c-95b2-32b7-83f5-98fd94f21faf +2022,Santa Fe,II.5.1,2.981055,TJ,N2O,2.0,kg/TJ,5.96211,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,85cdb11a-eb76-35e2-a411-98d1e0046712 +2022,Santa Fe,II.5.1,1.09648,TJ,CO2,73300.0,kg/TJ,80371.984,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,2b770864-3570-3947-98ac-f5d84a309f12 +2022,Santa Fe,II.5.1,1.09648,TJ,CH4,0.5,kg/TJ,0.54824,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,ef6ab5b9-5681-345f-8454-5342f959cef4 +2022,Santa Fe,II.5.1,1.09648,TJ,N2O,2.0,kg/TJ,2.19296,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,d8c0616f-3ea4-3b92-be5d-19dea7c06e72 +2022,Buenos Aires,II.2.1,80.36699999999999,TJ,CO2,74100.0,kg/TJ,5955194.699999999,Gas Oil combustion consumption by railway transport,AR-B,SESCO,annual,kg,d76e600f-78ec-3e2f-b0a5-1b0cebc396ca +2022,Buenos Aires,II.2.1,80.36699999999999,TJ,CH4,3.9,kg/TJ,313.43129999999996,Gas Oil combustion consumption by railway transport,AR-B,SESCO,annual,kg,df056c79-f2ae-351e-8f6b-7857cb82de21 +2022,Buenos Aires,II.2.1,80.36699999999999,TJ,N2O,3.9,kg/TJ,313.43129999999996,Gas Oil combustion consumption by railway transport,AR-B,SESCO,annual,kg,df056c79-f2ae-351e-8f6b-7857cb82de21 +2022,Capital Federal,II.2.1,0.9029999999999999,TJ,CO2,74100.0,kg/TJ,66912.29999999999,Gas Oil combustion consumption by railway transport,AR-C,SESCO,annual,kg,b97fa89f-ae80-38e8-b865-a480384c90b2 +2022,Capital Federal,II.2.1,0.9029999999999999,TJ,CH4,3.9,kg/TJ,3.5216999999999996,Gas Oil combustion consumption by railway transport,AR-C,SESCO,annual,kg,b9af84b7-4d5a-3cce-931d-8cc186aa1fa3 +2022,Capital Federal,II.2.1,0.9029999999999999,TJ,N2O,3.9,kg/TJ,3.5216999999999996,Gas Oil combustion consumption by railway transport,AR-C,SESCO,annual,kg,b9af84b7-4d5a-3cce-931d-8cc186aa1fa3 +2022,Córdoba,II.2.1,2.6367599999999998,TJ,CO2,74100.0,kg/TJ,195383.916,Gas Oil combustion consumption by railway transport,AR-X,SESCO,annual,kg,35b7048c-f187-36a2-a922-a8779872b195 +2022,Córdoba,II.2.1,2.6367599999999998,TJ,CH4,3.9,kg/TJ,10.283363999999999,Gas Oil combustion consumption by railway transport,AR-X,SESCO,annual,kg,89c37af0-f2c6-3ba3-987b-a809ea562587 +2022,Córdoba,II.2.1,2.6367599999999998,TJ,N2O,3.9,kg/TJ,10.283363999999999,Gas Oil combustion consumption by railway transport,AR-X,SESCO,annual,kg,89c37af0-f2c6-3ba3-987b-a809ea562587 +2022,La Pampa,II.2.1,25.97028,TJ,CO2,74100.0,kg/TJ,1924397.748,Gas Oil combustion consumption by railway transport,AR-L,SESCO,annual,kg,2dc27361-365d-3d37-bb50-6bc73308e3a0 +2022,La Pampa,II.2.1,25.97028,TJ,CH4,3.9,kg/TJ,101.28409199999999,Gas Oil combustion consumption by railway transport,AR-L,SESCO,annual,kg,b3957907-b6c7-3a84-9d12-5b828a1e401d +2022,La Pampa,II.2.1,25.97028,TJ,N2O,3.9,kg/TJ,101.28409199999999,Gas Oil combustion consumption by railway transport,AR-L,SESCO,annual,kg,b3957907-b6c7-3a84-9d12-5b828a1e401d +2022,Neuquén,II.2.1,2.6728799999999997,TJ,CO2,74100.0,kg/TJ,198060.40799999997,Gas Oil combustion consumption by railway transport,AR-Q,SESCO,annual,kg,5238561e-a42e-3ea5-a0b8-35943a010a10 +2022,Neuquén,II.2.1,2.6728799999999997,TJ,CH4,3.9,kg/TJ,10.424231999999998,Gas Oil combustion consumption by railway transport,AR-Q,SESCO,annual,kg,2042fb71-88e2-35c6-a9a8-d2dc0a903ece +2022,Neuquén,II.2.1,2.6728799999999997,TJ,N2O,3.9,kg/TJ,10.424231999999998,Gas Oil combustion consumption by railway transport,AR-Q,SESCO,annual,kg,2042fb71-88e2-35c6-a9a8-d2dc0a903ece +2022,Santa Fe,II.2.1,48.36468,TJ,CO2,74100.0,kg/TJ,3583822.788,Gas Oil combustion consumption by railway transport,AR-S,SESCO,annual,kg,7386bedc-0c95-39f2-b334-2fc8e4362697 +2022,Santa Fe,II.2.1,48.36468,TJ,CH4,3.9,kg/TJ,188.622252,Gas Oil combustion consumption by railway transport,AR-S,SESCO,annual,kg,b599c795-9318-3f4c-a524-5892055e5648 +2022,Santa Fe,II.2.1,48.36468,TJ,N2O,3.9,kg/TJ,188.622252,Gas Oil combustion consumption by railway transport,AR-S,SESCO,annual,kg,b599c795-9318-3f4c-a524-5892055e5648 +2022,Santiago del Estero,II.2.1,4.3344,TJ,CO2,74100.0,kg/TJ,321179.04,Gas Oil combustion consumption by railway transport,AR-G,SESCO,annual,kg,1540a6f3-1328-34b6-a2bc-98dcbcf526d4 +2022,Santiago del Estero,II.2.1,4.3344,TJ,CH4,3.9,kg/TJ,16.904159999999997,Gas Oil combustion consumption by railway transport,AR-G,SESCO,annual,kg,c61eb61c-8a5b-3e85-8a3b-a54b8825b9f1 +2022,Santiago del Estero,II.2.1,4.3344,TJ,N2O,3.9,kg/TJ,16.904159999999997,Gas Oil combustion consumption by railway transport,AR-G,SESCO,annual,kg,c61eb61c-8a5b-3e85-8a3b-a54b8825b9f1 +2022,Tucuman,II.2.1,2.81736,TJ,CO2,74100.0,kg/TJ,208766.376,Gas Oil combustion consumption by railway transport,AR-T,SESCO,annual,kg,6aa0a0ab-e93c-31d7-9e98-88d0716c9e67 +2022,Tucuman,II.2.1,2.81736,TJ,CH4,3.9,kg/TJ,10.987703999999999,Gas Oil combustion consumption by railway transport,AR-T,SESCO,annual,kg,d320e35d-e874-3171-9ad3-02dc6f37cc21 +2022,Tucuman,II.2.1,2.81736,TJ,N2O,3.9,kg/TJ,10.987703999999999,Gas Oil combustion consumption by railway transport,AR-T,SESCO,annual,kg,d320e35d-e874-3171-9ad3-02dc6f37cc21 +2022,Buenos Aires,II.1.1,1334.634,TJ,CO2,74100.0,kg/TJ,98896379.4,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,0bbc4dbf-2810-3c8b-b954-88a1751e0006 +2022,Buenos Aires,II.1.1,1334.634,TJ,CH4,3.9,kg/TJ,5205.0725999999995,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,0c56768c-ce92-3e05-9646-5f8a5c69eada +2022,Buenos Aires,II.1.1,1334.634,TJ,N2O,3.9,kg/TJ,5205.0725999999995,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,0c56768c-ce92-3e05-9646-5f8a5c69eada +2022,Capital Federal,II.1.1,1026.0608399999999,TJ,CO2,74100.0,kg/TJ,76031108.24399999,Gas Oil combustion consumption by freight transport,AR-C,SESCO,annual,kg,e12bea3e-c860-31e3-82da-fda8d1bb1e0d +2022,Capital Federal,II.1.1,1026.0608399999999,TJ,CH4,3.9,kg/TJ,4001.6372759999995,Gas Oil combustion consumption by freight transport,AR-C,SESCO,annual,kg,24969856-7be6-3ab2-8dac-1d7643b69240 +2022,Capital Federal,II.1.1,1026.0608399999999,TJ,N2O,3.9,kg/TJ,4001.6372759999995,Gas Oil combustion consumption by freight transport,AR-C,SESCO,annual,kg,24969856-7be6-3ab2-8dac-1d7643b69240 +2022,Catamarca,II.1.1,1.58928,TJ,CO2,74100.0,kg/TJ,117765.648,Gas Oil combustion consumption by freight transport,AR-K,SESCO,annual,kg,b26c7a92-6a6a-3cf8-82fe-1e59dac5f58b +2022,Catamarca,II.1.1,1.58928,TJ,CH4,3.9,kg/TJ,6.198192,Gas Oil combustion consumption by freight transport,AR-K,SESCO,annual,kg,909fb543-b106-37a9-b031-8f982acc87ba +2022,Catamarca,II.1.1,1.58928,TJ,N2O,3.9,kg/TJ,6.198192,Gas Oil combustion consumption by freight transport,AR-K,SESCO,annual,kg,909fb543-b106-37a9-b031-8f982acc87ba +2022,Chaco,II.1.1,20.48004,TJ,CO2,74100.0,kg/TJ,1517570.964,Gas Oil combustion consumption by freight transport,AR-H,SESCO,annual,kg,9d44d99c-3cf5-39b0-a5b2-e7f4f46fbb1a +2022,Chaco,II.1.1,20.48004,TJ,CH4,3.9,kg/TJ,79.87215599999999,Gas Oil combustion consumption by freight transport,AR-H,SESCO,annual,kg,804551ba-00cc-33ca-9972-4432356fa573 +2022,Chaco,II.1.1,20.48004,TJ,N2O,3.9,kg/TJ,79.87215599999999,Gas Oil combustion consumption by freight transport,AR-H,SESCO,annual,kg,804551ba-00cc-33ca-9972-4432356fa573 +2022,Chubut,II.1.1,12.20856,TJ,CO2,74100.0,kg/TJ,904654.296,Gas Oil combustion consumption by freight transport,AR-U,SESCO,annual,kg,f1e87c4a-7838-3f45-84d6-9e3b7060600c +2022,Chubut,II.1.1,12.20856,TJ,CH4,3.9,kg/TJ,47.613384,Gas Oil combustion consumption by freight transport,AR-U,SESCO,annual,kg,88ef70f7-e83e-3449-9249-c94565512ae1 +2022,Chubut,II.1.1,12.20856,TJ,N2O,3.9,kg/TJ,47.613384,Gas Oil combustion consumption by freight transport,AR-U,SESCO,annual,kg,88ef70f7-e83e-3449-9249-c94565512ae1 +2022,Corrientes,II.1.1,43.84968,TJ,CO2,74100.0,kg/TJ,3249261.288,Gas Oil combustion consumption by freight transport,AR-W,SESCO,annual,kg,62c24a64-00ea-3674-80f6-026272f8928e +2022,Corrientes,II.1.1,43.84968,TJ,CH4,3.9,kg/TJ,171.01375199999998,Gas Oil combustion consumption by freight transport,AR-W,SESCO,annual,kg,969e43ce-4b38-38cc-93de-e627b03eea55 +2022,Corrientes,II.1.1,43.84968,TJ,N2O,3.9,kg/TJ,171.01375199999998,Gas Oil combustion consumption by freight transport,AR-W,SESCO,annual,kg,969e43ce-4b38-38cc-93de-e627b03eea55 +2022,Córdoba,II.1.1,228.60348,TJ,CO2,74100.0,kg/TJ,16939517.868,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,82013829-ff62-366c-93ef-c7864a01abf3 +2022,Córdoba,II.1.1,228.60348,TJ,CH4,3.9,kg/TJ,891.5535719999999,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,1aad1dd9-b7d8-36dc-ae51-96329d34d09e +2022,Córdoba,II.1.1,228.60348,TJ,N2O,3.9,kg/TJ,891.5535719999999,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,1aad1dd9-b7d8-36dc-ae51-96329d34d09e +2022,Entre Rios,II.1.1,51.326519999999995,TJ,CO2,74100.0,kg/TJ,3803295.1319999998,Gas Oil combustion consumption by freight transport,AR-E,SESCO,annual,kg,c63870d8-1346-371e-bd61-f4f2372d06ca +2022,Entre Rios,II.1.1,51.326519999999995,TJ,CH4,3.9,kg/TJ,200.17342799999997,Gas Oil combustion consumption by freight transport,AR-E,SESCO,annual,kg,ffeca996-88ee-3dee-99f0-dd10c644cf8e +2022,Entre Rios,II.1.1,51.326519999999995,TJ,N2O,3.9,kg/TJ,200.17342799999997,Gas Oil combustion consumption by freight transport,AR-E,SESCO,annual,kg,ffeca996-88ee-3dee-99f0-dd10c644cf8e +2022,Formosa,II.1.1,4.76784,TJ,CO2,74100.0,kg/TJ,353296.94399999996,Gas Oil combustion consumption by freight transport,AR-P,SESCO,annual,kg,fdda7b35-f9a1-3b32-820e-de060ced8689 +2022,Formosa,II.1.1,4.76784,TJ,CH4,3.9,kg/TJ,18.594575999999996,Gas Oil combustion consumption by freight transport,AR-P,SESCO,annual,kg,ac500c0d-27fc-392e-9b84-e0f9606f322a +2022,Formosa,II.1.1,4.76784,TJ,N2O,3.9,kg/TJ,18.594575999999996,Gas Oil combustion consumption by freight transport,AR-P,SESCO,annual,kg,ac500c0d-27fc-392e-9b84-e0f9606f322a +2022,Jujuy,II.1.1,1.6976399999999998,TJ,CO2,74100.0,kg/TJ,125795.12399999998,Gas Oil combustion consumption by freight transport,AR-Y,SESCO,annual,kg,b3976388-2891-3dd7-9c4b-fba22959be6c +2022,Jujuy,II.1.1,1.6976399999999998,TJ,CH4,3.9,kg/TJ,6.6207959999999995,Gas Oil combustion consumption by freight transport,AR-Y,SESCO,annual,kg,1a9d17d8-9857-3e21-a955-bdbb11042a0b +2022,Jujuy,II.1.1,1.6976399999999998,TJ,N2O,3.9,kg/TJ,6.6207959999999995,Gas Oil combustion consumption by freight transport,AR-Y,SESCO,annual,kg,1a9d17d8-9857-3e21-a955-bdbb11042a0b +2022,La Pampa,II.1.1,10.22196,TJ,CO2,74100.0,kg/TJ,757447.2359999999,Gas Oil combustion consumption by freight transport,AR-L,SESCO,annual,kg,c90e8e00-77f8-33f0-ac93-73dd79b56ad1 +2022,La Pampa,II.1.1,10.22196,TJ,CH4,3.9,kg/TJ,39.865643999999996,Gas Oil combustion consumption by freight transport,AR-L,SESCO,annual,kg,8b6eca42-c74a-369d-b57d-9ff114b2c143 +2022,La Pampa,II.1.1,10.22196,TJ,N2O,3.9,kg/TJ,39.865643999999996,Gas Oil combustion consumption by freight transport,AR-L,SESCO,annual,kg,8b6eca42-c74a-369d-b57d-9ff114b2c143 +2022,La Rioja,II.1.1,0.50568,TJ,CO2,74100.0,kg/TJ,37470.888,Gas Oil combustion consumption by freight transport,AR-F,SESCO,annual,kg,5b1c0e3c-6cbe-3802-a162-004a3ef6f56a +2022,La Rioja,II.1.1,0.50568,TJ,CH4,3.9,kg/TJ,1.9721520000000001,Gas Oil combustion consumption by freight transport,AR-F,SESCO,annual,kg,2a007deb-e99d-3e18-beca-6fdaa2603024 +2022,La Rioja,II.1.1,0.50568,TJ,N2O,3.9,kg/TJ,1.9721520000000001,Gas Oil combustion consumption by freight transport,AR-F,SESCO,annual,kg,2a007deb-e99d-3e18-beca-6fdaa2603024 +2022,Mendoza,II.1.1,135.30552,TJ,CO2,74100.0,kg/TJ,10026139.032,Gas Oil combustion consumption by freight transport,AR-M,SESCO,annual,kg,a2f64bc1-259f-3e19-9fcf-148824701bcc +2022,Mendoza,II.1.1,135.30552,TJ,CH4,3.9,kg/TJ,527.691528,Gas Oil combustion consumption by freight transport,AR-M,SESCO,annual,kg,563b27fc-9277-3020-8414-511402588775 +2022,Mendoza,II.1.1,135.30552,TJ,N2O,3.9,kg/TJ,527.691528,Gas Oil combustion consumption by freight transport,AR-M,SESCO,annual,kg,563b27fc-9277-3020-8414-511402588775 +2022,Misiones,II.1.1,135.01656,TJ,CO2,74100.0,kg/TJ,10004727.095999999,Gas Oil combustion consumption by freight transport,AR-N,SESCO,annual,kg,18a3b701-ecde-31cc-a20c-f4da5a483efa +2022,Misiones,II.1.1,135.01656,TJ,CH4,3.9,kg/TJ,526.564584,Gas Oil combustion consumption by freight transport,AR-N,SESCO,annual,kg,eab3107e-25ab-39a6-97bd-4fce0f564a49 +2022,Misiones,II.1.1,135.01656,TJ,N2O,3.9,kg/TJ,526.564584,Gas Oil combustion consumption by freight transport,AR-N,SESCO,annual,kg,eab3107e-25ab-39a6-97bd-4fce0f564a49 +2022,Neuquén,II.1.1,0.79464,TJ,CO2,74100.0,kg/TJ,58882.824,Gas Oil combustion consumption by freight transport,AR-Q,SESCO,annual,kg,df7a71ee-49da-3197-b54c-27576cc77386 +2022,Neuquén,II.1.1,0.79464,TJ,CH4,3.9,kg/TJ,3.099096,Gas Oil combustion consumption by freight transport,AR-Q,SESCO,annual,kg,6d92980b-7277-3523-bb77-070c1419c15c +2022,Neuquén,II.1.1,0.79464,TJ,N2O,3.9,kg/TJ,3.099096,Gas Oil combustion consumption by freight transport,AR-Q,SESCO,annual,kg,6d92980b-7277-3523-bb77-070c1419c15c +2022,Rio Negro,II.1.1,142.09608,TJ,CO2,74100.0,kg/TJ,10529319.528,Gas Oil combustion consumption by freight transport,AR-R,SESCO,annual,kg,8b4159aa-ba73-37a1-ab34-68a585f3602a +2022,Rio Negro,II.1.1,142.09608,TJ,CH4,3.9,kg/TJ,554.174712,Gas Oil combustion consumption by freight transport,AR-R,SESCO,annual,kg,8b245f74-61a1-326b-a070-a0c389bc6579 +2022,Rio Negro,II.1.1,142.09608,TJ,N2O,3.9,kg/TJ,554.174712,Gas Oil combustion consumption by freight transport,AR-R,SESCO,annual,kg,8b245f74-61a1-326b-a070-a0c389bc6579 +2022,Salta,II.1.1,195.30084,TJ,CO2,74100.0,kg/TJ,14471792.243999999,Gas Oil combustion consumption by freight transport,AR-A,SESCO,annual,kg,164a76f6-f4f8-3103-b480-14a230928e65 +2022,Salta,II.1.1,195.30084,TJ,CH4,3.9,kg/TJ,761.673276,Gas Oil combustion consumption by freight transport,AR-A,SESCO,annual,kg,ff3ab2c8-0fa6-345c-aff6-d935652b617c +2022,Salta,II.1.1,195.30084,TJ,N2O,3.9,kg/TJ,761.673276,Gas Oil combustion consumption by freight transport,AR-A,SESCO,annual,kg,ff3ab2c8-0fa6-345c-aff6-d935652b617c +2022,San Juan,II.1.1,4.5872399999999995,TJ,CO2,74100.0,kg/TJ,339914.48399999994,Gas Oil combustion consumption by freight transport,AR-J,SESCO,annual,kg,38cb020b-07ef-3f23-ade8-3f3d101155e8 +2022,San Juan,II.1.1,4.5872399999999995,TJ,CH4,3.9,kg/TJ,17.890235999999998,Gas Oil combustion consumption by freight transport,AR-J,SESCO,annual,kg,950b6d8e-6557-3dba-bd30-1a7f7244bb27 +2022,San Juan,II.1.1,4.5872399999999995,TJ,N2O,3.9,kg/TJ,17.890235999999998,Gas Oil combustion consumption by freight transport,AR-J,SESCO,annual,kg,950b6d8e-6557-3dba-bd30-1a7f7244bb27 +2022,San Luis,II.1.1,113.45291999999999,TJ,CO2,74100.0,kg/TJ,8406861.372,Gas Oil combustion consumption by freight transport,AR-D,SESCO,annual,kg,c58b3deb-ca63-31b3-8e54-d53c6a39f478 +2022,San Luis,II.1.1,113.45291999999999,TJ,CH4,3.9,kg/TJ,442.46638799999994,Gas Oil combustion consumption by freight transport,AR-D,SESCO,annual,kg,b705259f-5ea5-3160-8897-07cca48f94fe +2022,San Luis,II.1.1,113.45291999999999,TJ,N2O,3.9,kg/TJ,442.46638799999994,Gas Oil combustion consumption by freight transport,AR-D,SESCO,annual,kg,b705259f-5ea5-3160-8897-07cca48f94fe +2022,Santa Cruz,II.1.1,6.57384,TJ,CO2,74100.0,kg/TJ,487121.544,Gas Oil combustion consumption by freight transport,AR-Z,SESCO,annual,kg,c5799a37-d61d-32d5-b541-5ff55b00ea13 +2022,Santa Cruz,II.1.1,6.57384,TJ,CH4,3.9,kg/TJ,25.637976,Gas Oil combustion consumption by freight transport,AR-Z,SESCO,annual,kg,280f28a2-7293-32ef-b6c8-00569cd294e6 +2022,Santa Cruz,II.1.1,6.57384,TJ,N2O,3.9,kg/TJ,25.637976,Gas Oil combustion consumption by freight transport,AR-Z,SESCO,annual,kg,280f28a2-7293-32ef-b6c8-00569cd294e6 +2022,Santa Fe,II.1.1,583.6992,TJ,CO2,74100.0,kg/TJ,43252110.72,Gas Oil combustion consumption by freight transport,AR-S,SESCO,annual,kg,8fa4314c-b844-3b29-9636-633b717ef860 +2022,Santa Fe,II.1.1,583.6992,TJ,CH4,3.9,kg/TJ,2276.42688,Gas Oil combustion consumption by freight transport,AR-S,SESCO,annual,kg,b4cab9db-ff38-3f80-9577-7ecd17fc0a9b +2022,Santa Fe,II.1.1,583.6992,TJ,N2O,3.9,kg/TJ,2276.42688,Gas Oil combustion consumption by freight transport,AR-S,SESCO,annual,kg,b4cab9db-ff38-3f80-9577-7ecd17fc0a9b +2022,Santiago del Estero,II.1.1,82.31748,TJ,CO2,74100.0,kg/TJ,6099725.268,Gas Oil combustion consumption by freight transport,AR-G,SESCO,annual,kg,36d429fc-6cd3-3942-b516-4665f3d1bc3f +2022,Santiago del Estero,II.1.1,82.31748,TJ,CH4,3.9,kg/TJ,321.03817200000003,Gas Oil combustion consumption by freight transport,AR-G,SESCO,annual,kg,f26763f1-3919-3df6-964e-d54d960e29a9 +2022,Santiago del Estero,II.1.1,82.31748,TJ,N2O,3.9,kg/TJ,321.03817200000003,Gas Oil combustion consumption by freight transport,AR-G,SESCO,annual,kg,f26763f1-3919-3df6-964e-d54d960e29a9 +2022,Tierra del Fuego,II.1.1,1.2280799999999998,TJ,CO2,74100.0,kg/TJ,91000.72799999999,Gas Oil combustion consumption by freight transport,AR-V,SESCO,annual,kg,4e142355-f629-357b-a53d-4268c3140ca8 +2022,Tierra del Fuego,II.1.1,1.2280799999999998,TJ,CH4,3.9,kg/TJ,4.789511999999999,Gas Oil combustion consumption by freight transport,AR-V,SESCO,annual,kg,830e73cb-0fb4-3618-831a-6364340b0b40 +2022,Tierra del Fuego,II.1.1,1.2280799999999998,TJ,N2O,3.9,kg/TJ,4.789511999999999,Gas Oil combustion consumption by freight transport,AR-V,SESCO,annual,kg,830e73cb-0fb4-3618-831a-6364340b0b40 +2022,Tucuman,II.1.1,50.24292,TJ,CO2,74100.0,kg/TJ,3723000.372,Gas Oil combustion consumption by freight transport,AR-T,SESCO,annual,kg,c7b3346f-b905-3b39-977b-3523f1f7f0fc +2022,Tucuman,II.1.1,50.24292,TJ,CH4,3.9,kg/TJ,195.947388,Gas Oil combustion consumption by freight transport,AR-T,SESCO,annual,kg,8822c7bc-2f5f-33b0-8ec1-d1b696b1c1ef +2022,Tucuman,II.1.1,50.24292,TJ,N2O,3.9,kg/TJ,195.947388,Gas Oil combustion consumption by freight transport,AR-T,SESCO,annual,kg,8822c7bc-2f5f-33b0-8ec1-d1b696b1c1ef +2022,Buenos Aires,II.1.1,392.2632,TJ,CO2,74100.0,kg/TJ,29066703.119999997,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,e32ac433-3a84-3c14-a7c3-f3fcbb892386 +2022,Buenos Aires,II.1.1,392.2632,TJ,CH4,3.9,kg/TJ,1529.82648,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,03b8ddb5-a0b3-3b81-822c-7079dc94e0d1 +2022,Buenos Aires,II.1.1,392.2632,TJ,N2O,3.9,kg/TJ,1529.82648,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,03b8ddb5-a0b3-3b81-822c-7079dc94e0d1 +2022,Capital Federal,II.1.1,242.97923999999998,TJ,CO2,74100.0,kg/TJ,18004761.683999997,Gas Oil combustion consumption by freight transport,AR-C,SESCO,annual,kg,4cecb465-791e-3f17-890f-cfaf09944fe2 +2022,Capital Federal,II.1.1,242.97923999999998,TJ,CH4,3.9,kg/TJ,947.6190359999999,Gas Oil combustion consumption by freight transport,AR-C,SESCO,annual,kg,f7550fac-9d79-3747-91d4-6c34bcca1021 +2022,Capital Federal,II.1.1,242.97923999999998,TJ,N2O,3.9,kg/TJ,947.6190359999999,Gas Oil combustion consumption by freight transport,AR-C,SESCO,annual,kg,f7550fac-9d79-3747-91d4-6c34bcca1021 +2022,Catamarca,II.1.1,0.07224,TJ,CO2,74100.0,kg/TJ,5352.9839999999995,Gas Oil combustion consumption by freight transport,AR-K,SESCO,annual,kg,e7715d4e-3cad-3ba4-bcd1-97e6b3d55b5d +2022,Catamarca,II.1.1,0.07224,TJ,CH4,3.9,kg/TJ,0.281736,Gas Oil combustion consumption by freight transport,AR-K,SESCO,annual,kg,f578967a-25b0-3393-9bad-7347c26dd5bc +2022,Catamarca,II.1.1,0.07224,TJ,N2O,3.9,kg/TJ,0.281736,Gas Oil combustion consumption by freight transport,AR-K,SESCO,annual,kg,f578967a-25b0-3393-9bad-7347c26dd5bc +2022,Chaco,II.1.1,5.88756,TJ,CO2,74100.0,kg/TJ,436268.196,Gas Oil combustion consumption by freight transport,AR-H,SESCO,annual,kg,17c92d51-2c31-310f-a104-972b1a2b5587 +2022,Chaco,II.1.1,5.88756,TJ,CH4,3.9,kg/TJ,22.961484,Gas Oil combustion consumption by freight transport,AR-H,SESCO,annual,kg,7f1b6810-d9cf-3976-a652-1a7bfe06bdae +2022,Chaco,II.1.1,5.88756,TJ,N2O,3.9,kg/TJ,22.961484,Gas Oil combustion consumption by freight transport,AR-H,SESCO,annual,kg,7f1b6810-d9cf-3976-a652-1a7bfe06bdae +2022,Chubut,II.1.1,2.3478,TJ,CO2,74100.0,kg/TJ,173971.97999999998,Gas Oil combustion consumption by freight transport,AR-U,SESCO,annual,kg,413d030d-5c30-3b8c-b273-2120fb61d8b1 +2022,Chubut,II.1.1,2.3478,TJ,CH4,3.9,kg/TJ,9.156419999999999,Gas Oil combustion consumption by freight transport,AR-U,SESCO,annual,kg,edf8f763-1a46-3577-816d-5cb70ed18fc7 +2022,Chubut,II.1.1,2.3478,TJ,N2O,3.9,kg/TJ,9.156419999999999,Gas Oil combustion consumption by freight transport,AR-U,SESCO,annual,kg,edf8f763-1a46-3577-816d-5cb70ed18fc7 +2022,Corrientes,II.1.1,8.74104,TJ,CO2,74100.0,kg/TJ,647711.064,Gas Oil combustion consumption by freight transport,AR-W,SESCO,annual,kg,00ffe32a-f1a1-3f2d-b4a0-06b3b53002a2 +2022,Corrientes,II.1.1,8.74104,TJ,CH4,3.9,kg/TJ,34.090056,Gas Oil combustion consumption by freight transport,AR-W,SESCO,annual,kg,d78c5ba1-9d46-3522-b168-4f377dcbfe08 +2022,Corrientes,II.1.1,8.74104,TJ,N2O,3.9,kg/TJ,34.090056,Gas Oil combustion consumption by freight transport,AR-W,SESCO,annual,kg,d78c5ba1-9d46-3522-b168-4f377dcbfe08 +2022,Córdoba,II.1.1,22.64724,TJ,CO2,74100.0,kg/TJ,1678160.484,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,d5474aaa-ef7d-317c-8fef-74110b72549d +2022,Córdoba,II.1.1,22.64724,TJ,CH4,3.9,kg/TJ,88.324236,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,be6d447e-687a-3265-bee0-edf97c98054e +2022,Córdoba,II.1.1,22.64724,TJ,N2O,3.9,kg/TJ,88.324236,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,be6d447e-687a-3265-bee0-edf97c98054e +2022,Entre Rios,II.1.1,5.9597999999999995,TJ,CO2,74100.0,kg/TJ,441621.18,Gas Oil combustion consumption by freight transport,AR-E,SESCO,annual,kg,0329033e-ef31-31af-9034-3eacf87f1c31 +2022,Entre Rios,II.1.1,5.9597999999999995,TJ,CH4,3.9,kg/TJ,23.243219999999997,Gas Oil combustion consumption by freight transport,AR-E,SESCO,annual,kg,c34f43d5-7e83-321c-8ba8-7a449fc3bd6e +2022,Entre Rios,II.1.1,5.9597999999999995,TJ,N2O,3.9,kg/TJ,23.243219999999997,Gas Oil combustion consumption by freight transport,AR-E,SESCO,annual,kg,c34f43d5-7e83-321c-8ba8-7a449fc3bd6e +2022,Formosa,II.1.1,1.0836,TJ,CO2,74100.0,kg/TJ,80294.76,Gas Oil combustion consumption by freight transport,AR-P,SESCO,annual,kg,f0f98973-50ad-3baf-9989-f4390515350f +2022,Formosa,II.1.1,1.0836,TJ,CH4,3.9,kg/TJ,4.226039999999999,Gas Oil combustion consumption by freight transport,AR-P,SESCO,annual,kg,5356b9fb-06e9-3137-9e58-fbdaf4e4ffc7 +2022,Formosa,II.1.1,1.0836,TJ,N2O,3.9,kg/TJ,4.226039999999999,Gas Oil combustion consumption by freight transport,AR-P,SESCO,annual,kg,5356b9fb-06e9-3137-9e58-fbdaf4e4ffc7 +2022,Jujuy,II.1.1,0.32508,TJ,CO2,74100.0,kg/TJ,24088.428,Gas Oil combustion consumption by freight transport,AR-Y,SESCO,annual,kg,fcaf739a-dfa4-3954-8c9f-9a2df51659ee +2022,Jujuy,II.1.1,0.32508,TJ,CH4,3.9,kg/TJ,1.267812,Gas Oil combustion consumption by freight transport,AR-Y,SESCO,annual,kg,c3ebb5ba-1d7c-329e-adff-4e6c88a16b28 +2022,Jujuy,II.1.1,0.32508,TJ,N2O,3.9,kg/TJ,1.267812,Gas Oil combustion consumption by freight transport,AR-Y,SESCO,annual,kg,c3ebb5ba-1d7c-329e-adff-4e6c88a16b28 +2022,La Pampa,II.1.1,0.28896,TJ,CO2,74100.0,kg/TJ,21411.935999999998,Gas Oil combustion consumption by freight transport,AR-L,SESCO,annual,kg,5ba0f049-0653-35a9-8d48-7459ba7d4c3d +2022,La Pampa,II.1.1,0.28896,TJ,CH4,3.9,kg/TJ,1.126944,Gas Oil combustion consumption by freight transport,AR-L,SESCO,annual,kg,5dc698ce-7188-38fe-8b00-db5ec8b4c379 +2022,La Pampa,II.1.1,0.28896,TJ,N2O,3.9,kg/TJ,1.126944,Gas Oil combustion consumption by freight transport,AR-L,SESCO,annual,kg,5dc698ce-7188-38fe-8b00-db5ec8b4c379 +2022,Mendoza,II.1.1,9.89688,TJ,CO2,74100.0,kg/TJ,733358.808,Gas Oil combustion consumption by freight transport,AR-M,SESCO,annual,kg,a129c8a3-1a9b-3922-af8a-13425ba8280b +2022,Mendoza,II.1.1,9.89688,TJ,CH4,3.9,kg/TJ,38.597832,Gas Oil combustion consumption by freight transport,AR-M,SESCO,annual,kg,9a12e80f-a7d5-3961-b61d-08eaa52d6bae +2022,Mendoza,II.1.1,9.89688,TJ,N2O,3.9,kg/TJ,38.597832,Gas Oil combustion consumption by freight transport,AR-M,SESCO,annual,kg,9a12e80f-a7d5-3961-b61d-08eaa52d6bae +2022,Misiones,II.1.1,3.90096,TJ,CO2,74100.0,kg/TJ,289061.136,Gas Oil combustion consumption by freight transport,AR-N,SESCO,annual,kg,b908dc04-ab02-329c-8118-aedc81e0f36d +2022,Misiones,II.1.1,3.90096,TJ,CH4,3.9,kg/TJ,15.213744,Gas Oil combustion consumption by freight transport,AR-N,SESCO,annual,kg,f92fa711-5312-38bb-8407-ad4a55d2eb72 +2022,Misiones,II.1.1,3.90096,TJ,N2O,3.9,kg/TJ,15.213744,Gas Oil combustion consumption by freight transport,AR-N,SESCO,annual,kg,f92fa711-5312-38bb-8407-ad4a55d2eb72 +2022,Neuquén,II.1.1,0.43344,TJ,CO2,74100.0,kg/TJ,32117.904,Gas Oil combustion consumption by freight transport,AR-Q,SESCO,annual,kg,1e3b6236-f73d-325a-8379-482af95613db +2022,Neuquén,II.1.1,0.43344,TJ,CH4,3.9,kg/TJ,1.690416,Gas Oil combustion consumption by freight transport,AR-Q,SESCO,annual,kg,55af3c4b-c8d3-3866-86b9-b20a9624d563 +2022,Neuquén,II.1.1,0.43344,TJ,N2O,3.9,kg/TJ,1.690416,Gas Oil combustion consumption by freight transport,AR-Q,SESCO,annual,kg,55af3c4b-c8d3-3866-86b9-b20a9624d563 +2022,Rio Negro,II.1.1,27.523439999999997,TJ,CO2,74100.0,kg/TJ,2039486.9039999999,Gas Oil combustion consumption by freight transport,AR-R,SESCO,annual,kg,e972a9b1-472a-3585-9869-0631eb4d4fb3 +2022,Rio Negro,II.1.1,27.523439999999997,TJ,CH4,3.9,kg/TJ,107.34141599999998,Gas Oil combustion consumption by freight transport,AR-R,SESCO,annual,kg,a94760d4-55a7-332a-baef-b146cfc8076c +2022,Rio Negro,II.1.1,27.523439999999997,TJ,N2O,3.9,kg/TJ,107.34141599999998,Gas Oil combustion consumption by freight transport,AR-R,SESCO,annual,kg,a94760d4-55a7-332a-baef-b146cfc8076c +2022,Salta,II.1.1,0.32508,TJ,CO2,74100.0,kg/TJ,24088.428,Gas Oil combustion consumption by freight transport,AR-A,SESCO,annual,kg,dcb5295a-b55f-3469-9bba-8f90892a11e7 +2022,Salta,II.1.1,0.32508,TJ,CH4,3.9,kg/TJ,1.267812,Gas Oil combustion consumption by freight transport,AR-A,SESCO,annual,kg,bd8ab32d-d37f-393c-ac1b-21417de79e02 +2022,Salta,II.1.1,0.32508,TJ,N2O,3.9,kg/TJ,1.267812,Gas Oil combustion consumption by freight transport,AR-A,SESCO,annual,kg,bd8ab32d-d37f-393c-ac1b-21417de79e02 +2022,San Juan,II.1.1,1.30032,TJ,CO2,74100.0,kg/TJ,96353.712,Gas Oil combustion consumption by freight transport,AR-J,SESCO,annual,kg,b132ceb0-de21-39b2-8b53-66be0bffcc16 +2022,San Juan,II.1.1,1.30032,TJ,CH4,3.9,kg/TJ,5.071248,Gas Oil combustion consumption by freight transport,AR-J,SESCO,annual,kg,131b2c19-ac8b-3f4f-9b1a-14fb32d3c5e0 +2022,San Juan,II.1.1,1.30032,TJ,N2O,3.9,kg/TJ,5.071248,Gas Oil combustion consumption by freight transport,AR-J,SESCO,annual,kg,131b2c19-ac8b-3f4f-9b1a-14fb32d3c5e0 +2022,San Luis,II.1.1,2.709,TJ,CO2,74100.0,kg/TJ,200736.9,Gas Oil combustion consumption by freight transport,AR-D,SESCO,annual,kg,472c0f7f-5072-38cc-a38a-21e5438a8179 +2022,San Luis,II.1.1,2.709,TJ,CH4,3.9,kg/TJ,10.5651,Gas Oil combustion consumption by freight transport,AR-D,SESCO,annual,kg,6dd4241a-261d-36ae-932d-7d6b002ea3cf +2022,San Luis,II.1.1,2.709,TJ,N2O,3.9,kg/TJ,10.5651,Gas Oil combustion consumption by freight transport,AR-D,SESCO,annual,kg,6dd4241a-261d-36ae-932d-7d6b002ea3cf +2022,Santa Cruz,II.1.1,0.18059999999999998,TJ,CO2,74100.0,kg/TJ,13382.46,Gas Oil combustion consumption by freight transport,AR-Z,SESCO,annual,kg,3d248a3a-a0ca-396e-bbaf-e695d53f2c13 +2022,Santa Cruz,II.1.1,0.18059999999999998,TJ,CH4,3.9,kg/TJ,0.70434,Gas Oil combustion consumption by freight transport,AR-Z,SESCO,annual,kg,306a3ed5-391a-3f84-b349-fda58778f506 +2022,Santa Cruz,II.1.1,0.18059999999999998,TJ,N2O,3.9,kg/TJ,0.70434,Gas Oil combustion consumption by freight transport,AR-Z,SESCO,annual,kg,306a3ed5-391a-3f84-b349-fda58778f506 +2022,Santa Fe,II.1.1,49.881719999999994,TJ,CO2,74100.0,kg/TJ,3696235.4519999996,Gas Oil combustion consumption by freight transport,AR-S,SESCO,annual,kg,6a4424a2-401d-3dc2-82bd-66dce8cb8a43 +2022,Santa Fe,II.1.1,49.881719999999994,TJ,CH4,3.9,kg/TJ,194.53870799999999,Gas Oil combustion consumption by freight transport,AR-S,SESCO,annual,kg,7252ce42-74f6-3dac-b93b-773d668bb0a2 +2022,Santa Fe,II.1.1,49.881719999999994,TJ,N2O,3.9,kg/TJ,194.53870799999999,Gas Oil combustion consumption by freight transport,AR-S,SESCO,annual,kg,7252ce42-74f6-3dac-b93b-773d668bb0a2 +2022,Santiago del Estero,II.1.1,2.23944,TJ,CO2,74100.0,kg/TJ,165942.50400000002,Gas Oil combustion consumption by freight transport,AR-G,SESCO,annual,kg,50079bee-0551-3a94-87d5-fbe6f2b6f5ec +2022,Santiago del Estero,II.1.1,2.23944,TJ,CH4,3.9,kg/TJ,8.733816000000001,Gas Oil combustion consumption by freight transport,AR-G,SESCO,annual,kg,b8d9302d-cdc3-303c-a7ce-5b03a1b5777a +2022,Santiago del Estero,II.1.1,2.23944,TJ,N2O,3.9,kg/TJ,8.733816000000001,Gas Oil combustion consumption by freight transport,AR-G,SESCO,annual,kg,b8d9302d-cdc3-303c-a7ce-5b03a1b5777a +2022,Tucuman,II.1.1,3.64812,TJ,CO2,74100.0,kg/TJ,270325.692,Gas Oil combustion consumption by freight transport,AR-T,SESCO,annual,kg,017b65c1-bf04-3c88-834d-942f4a90268c +2022,Tucuman,II.1.1,3.64812,TJ,CH4,3.9,kg/TJ,14.227668,Gas Oil combustion consumption by freight transport,AR-T,SESCO,annual,kg,2ad9b0f0-1934-334b-ae76-984ee7fa9cc6 +2022,Tucuman,II.1.1,3.64812,TJ,N2O,3.9,kg/TJ,14.227668,Gas Oil combustion consumption by freight transport,AR-T,SESCO,annual,kg,2ad9b0f0-1934-334b-ae76-984ee7fa9cc6 +2022,Buenos Aires,II.1.1,23.128874999999997,TJ,CO2,73300.0,kg/TJ,1695346.5374999999,Naphtha combustion consumption by freight transport,AR-B,SESCO,annual,kg,4da9e2d6-2fd0-3e5a-89de-842489c2f2db +2022,Buenos Aires,II.1.1,23.128874999999997,TJ,CH4,0.5,kg/TJ,11.564437499999999,Naphtha combustion consumption by freight transport,AR-B,SESCO,annual,kg,af9c9770-6e55-3e0c-a4f9-cd2f1c9ca0c1 +2022,Buenos Aires,II.1.1,23.128874999999997,TJ,N2O,2.0,kg/TJ,46.257749999999994,Naphtha combustion consumption by freight transport,AR-B,SESCO,annual,kg,a15d8042-d6c7-3572-922a-2d2aead34b92 +2022,Capital Federal,II.1.1,24.328149999999997,TJ,CO2,73300.0,kg/TJ,1783253.3949999998,Naphtha combustion consumption by freight transport,AR-C,SESCO,annual,kg,aa97b8db-d795-3da9-b397-34b967ec15cf +2022,Capital Federal,II.1.1,24.328149999999997,TJ,CH4,0.5,kg/TJ,12.164074999999999,Naphtha combustion consumption by freight transport,AR-C,SESCO,annual,kg,d1578514-bbcf-3eb1-b9e0-038a957c5719 +2022,Capital Federal,II.1.1,24.328149999999997,TJ,N2O,2.0,kg/TJ,48.656299999999995,Naphtha combustion consumption by freight transport,AR-C,SESCO,annual,kg,6cba7fa2-e766-31db-b856-cf69ff2dce55 +2022,Chubut,II.1.1,0.171325,TJ,CO2,73300.0,kg/TJ,12558.1225,Naphtha combustion consumption by freight transport,AR-U,SESCO,annual,kg,63b15109-bbe9-39f3-a071-511663c4e508 +2022,Chubut,II.1.1,0.171325,TJ,CH4,0.5,kg/TJ,0.0856625,Naphtha combustion consumption by freight transport,AR-U,SESCO,annual,kg,de5c2311-1e10-3563-9b1c-db64f817acd3 +2022,Chubut,II.1.1,0.171325,TJ,N2O,2.0,kg/TJ,0.34265,Naphtha combustion consumption by freight transport,AR-U,SESCO,annual,kg,402bb23d-2814-3f76-81d1-f9ebbfd9c3d0 +2022,Corrientes,II.1.1,0.06853,TJ,CO2,73300.0,kg/TJ,5023.249,Naphtha combustion consumption by freight transport,AR-W,SESCO,annual,kg,a502f74d-8dea-3764-8571-42bbb32d46d6 +2022,Corrientes,II.1.1,0.06853,TJ,CH4,0.5,kg/TJ,0.034265,Naphtha combustion consumption by freight transport,AR-W,SESCO,annual,kg,32ab94a9-8753-3977-8195-67f485e170dd +2022,Corrientes,II.1.1,0.06853,TJ,N2O,2.0,kg/TJ,0.13706,Naphtha combustion consumption by freight transport,AR-W,SESCO,annual,kg,a51b10e6-1761-379a-9ed0-9ddccbe9b25d +2022,Córdoba,II.1.1,3.186645,TJ,CO2,73300.0,kg/TJ,233581.0785,Naphtha combustion consumption by freight transport,AR-X,SESCO,annual,kg,20ca72d7-9648-3297-9e67-fbf147145b39 +2022,Córdoba,II.1.1,3.186645,TJ,CH4,0.5,kg/TJ,1.5933225,Naphtha combustion consumption by freight transport,AR-X,SESCO,annual,kg,b69137d5-ea2d-3838-9196-d20c5942d18f +2022,Córdoba,II.1.1,3.186645,TJ,N2O,2.0,kg/TJ,6.37329,Naphtha combustion consumption by freight transport,AR-X,SESCO,annual,kg,936cc4e9-ce81-3a5a-942d-4b67d0a5ee22 +2022,Entre Rios,II.1.1,0.102795,TJ,CO2,73300.0,kg/TJ,7534.8735,Naphtha combustion consumption by freight transport,AR-E,SESCO,annual,kg,d1bc0c3c-76ab-30d0-a9ec-93eddb591822 +2022,Entre Rios,II.1.1,0.102795,TJ,CH4,0.5,kg/TJ,0.0513975,Naphtha combustion consumption by freight transport,AR-E,SESCO,annual,kg,70d5639d-21fd-365e-99f0-bcad720d00de +2022,Entre Rios,II.1.1,0.102795,TJ,N2O,2.0,kg/TJ,0.20559,Naphtha combustion consumption by freight transport,AR-E,SESCO,annual,kg,0ecd244a-6cb7-3be0-a46f-2ad42e970d33 +2022,Mendoza,II.1.1,0.171325,TJ,CO2,73300.0,kg/TJ,12558.1225,Naphtha combustion consumption by freight transport,AR-M,SESCO,annual,kg,d91dc4ee-a3b9-31c1-a016-25b6aae1bbd3 +2022,Mendoza,II.1.1,0.171325,TJ,CH4,0.5,kg/TJ,0.0856625,Naphtha combustion consumption by freight transport,AR-M,SESCO,annual,kg,aaadf474-a19e-3fa6-9ad5-5e75e19609a0 +2022,Mendoza,II.1.1,0.171325,TJ,N2O,2.0,kg/TJ,0.34265,Naphtha combustion consumption by freight transport,AR-M,SESCO,annual,kg,eee3fe52-a031-373a-8c3c-0f601e7b89ab +2022,Rio Negro,II.1.1,0.27412,TJ,CO2,73300.0,kg/TJ,20092.996,Naphtha combustion consumption by freight transport,AR-R,SESCO,annual,kg,19039d3a-befb-399b-935c-fce8e26a8249 +2022,Rio Negro,II.1.1,0.27412,TJ,CH4,0.5,kg/TJ,0.13706,Naphtha combustion consumption by freight transport,AR-R,SESCO,annual,kg,d524554a-5f87-3eea-a236-1dd223d0e431 +2022,Rio Negro,II.1.1,0.27412,TJ,N2O,2.0,kg/TJ,0.54824,Naphtha combustion consumption by freight transport,AR-R,SESCO,annual,kg,149a9746-26fa-3911-95c5-b397859c64aa +2022,Santa Fe,II.1.1,8.01801,TJ,CO2,73300.0,kg/TJ,587720.133,Naphtha combustion consumption by freight transport,AR-S,SESCO,annual,kg,cb6eb431-69af-35bc-8a61-7e6f97665739 +2022,Santa Fe,II.1.1,8.01801,TJ,CH4,0.5,kg/TJ,4.009005,Naphtha combustion consumption by freight transport,AR-S,SESCO,annual,kg,4f9bf09c-cf87-3db9-b5a7-3106c22e568f +2022,Santa Fe,II.1.1,8.01801,TJ,N2O,2.0,kg/TJ,16.03602,Naphtha combustion consumption by freight transport,AR-S,SESCO,annual,kg,1ddc66db-54a2-32b8-ba98-fbd19ad203fa +2022,Santiago del Estero,II.1.1,0.034265,TJ,CO2,73300.0,kg/TJ,2511.6245,Naphtha combustion consumption by freight transport,AR-G,SESCO,annual,kg,d14513d4-d09c-3859-beae-1ea19a611e3d +2022,Santiago del Estero,II.1.1,0.034265,TJ,CH4,0.5,kg/TJ,0.0171325,Naphtha combustion consumption by freight transport,AR-G,SESCO,annual,kg,a6393a37-1179-37f4-bc8f-75e9744032b8 +2022,Santiago del Estero,II.1.1,0.034265,TJ,N2O,2.0,kg/TJ,0.06853,Naphtha combustion consumption by freight transport,AR-G,SESCO,annual,kg,04bf7b7d-e407-3121-b429-d4ca02c2ed60 +2022,Buenos Aires,II.1.1,17.338089999999998,TJ,CO2,73300.0,kg/TJ,1270881.9969999997,Naphtha combustion consumption by freight transport,AR-B,SESCO,annual,kg,0d63df3c-d1ed-3290-8c5d-79d8dc120c06 +2022,Buenos Aires,II.1.1,17.338089999999998,TJ,CH4,0.5,kg/TJ,8.669044999999999,Naphtha combustion consumption by freight transport,AR-B,SESCO,annual,kg,c7e2d3e9-9768-3e1c-ac75-0d5658ab3d11 +2022,Buenos Aires,II.1.1,17.338089999999998,TJ,N2O,2.0,kg/TJ,34.676179999999995,Naphtha combustion consumption by freight transport,AR-B,SESCO,annual,kg,61fde77a-fdc5-3689-9cb3-aa6ac0c33651 +2022,Capital Federal,II.1.1,17.47515,TJ,CO2,73300.0,kg/TJ,1280928.4949999999,Naphtha combustion consumption by freight transport,AR-C,SESCO,annual,kg,bd00ca77-6df6-38aa-bf7a-51c8ed660641 +2022,Capital Federal,II.1.1,17.47515,TJ,CH4,0.5,kg/TJ,8.737575,Naphtha combustion consumption by freight transport,AR-C,SESCO,annual,kg,7119a2ab-3e0d-385a-8d6d-abd4888c4af1 +2022,Capital Federal,II.1.1,17.47515,TJ,N2O,2.0,kg/TJ,34.9503,Naphtha combustion consumption by freight transport,AR-C,SESCO,annual,kg,f27d11aa-1176-3463-be30-e71babe61965 +2022,Córdoba,II.1.1,1.473395,TJ,CO2,73300.0,kg/TJ,107999.8535,Naphtha combustion consumption by freight transport,AR-X,SESCO,annual,kg,89c7f1d8-9cd3-33b6-a11f-3790c5c856f7 +2022,Córdoba,II.1.1,1.473395,TJ,CH4,0.5,kg/TJ,0.7366975,Naphtha combustion consumption by freight transport,AR-X,SESCO,annual,kg,d6f6b3ff-e58f-3302-b5a5-6bc9147de688 +2022,Córdoba,II.1.1,1.473395,TJ,N2O,2.0,kg/TJ,2.94679,Naphtha combustion consumption by freight transport,AR-X,SESCO,annual,kg,3a319fb0-b8ff-32e7-8c55-4f8fb26518ab +2022,Entre Rios,II.1.1,0.47970999999999997,TJ,CO2,73300.0,kg/TJ,35162.742999999995,Naphtha combustion consumption by freight transport,AR-E,SESCO,annual,kg,e57c2932-976e-3e07-8730-824d0b3681e4 +2022,Entre Rios,II.1.1,0.47970999999999997,TJ,CH4,0.5,kg/TJ,0.23985499999999998,Naphtha combustion consumption by freight transport,AR-E,SESCO,annual,kg,db9d7155-146e-3840-8b0d-6f239787ce09 +2022,Entre Rios,II.1.1,0.47970999999999997,TJ,N2O,2.0,kg/TJ,0.9594199999999999,Naphtha combustion consumption by freight transport,AR-E,SESCO,annual,kg,3f8bafff-ea3f-30b6-861f-6d03fb6fd97b +2022,La Rioja,II.1.1,0.23985499999999998,TJ,CO2,73300.0,kg/TJ,17581.371499999997,Naphtha combustion consumption by freight transport,AR-F,SESCO,annual,kg,7060de9b-6950-354c-ae3b-8f103c61ad68 +2022,La Rioja,II.1.1,0.23985499999999998,TJ,CH4,0.5,kg/TJ,0.11992749999999999,Naphtha combustion consumption by freight transport,AR-F,SESCO,annual,kg,fc0e75d4-9fa3-31a9-addf-763355824b40 +2022,La Rioja,II.1.1,0.23985499999999998,TJ,N2O,2.0,kg/TJ,0.47970999999999997,Naphtha combustion consumption by freight transport,AR-F,SESCO,annual,kg,a4c49572-073f-38c9-a9a6-20b16992966f +2022,Mendoza,II.1.1,0.102795,TJ,CO2,73300.0,kg/TJ,7534.8735,Naphtha combustion consumption by freight transport,AR-M,SESCO,annual,kg,1d1e2fa3-730b-38eb-a03f-b02fec245fc8 +2022,Mendoza,II.1.1,0.102795,TJ,CH4,0.5,kg/TJ,0.0513975,Naphtha combustion consumption by freight transport,AR-M,SESCO,annual,kg,42930f81-5468-39c8-8d74-9b86b7ae9476 +2022,Mendoza,II.1.1,0.102795,TJ,N2O,2.0,kg/TJ,0.20559,Naphtha combustion consumption by freight transport,AR-M,SESCO,annual,kg,b69636d5-c4ba-3aca-81d9-438a7f179024 +2022,Rio Negro,II.1.1,0.34265,TJ,CO2,73300.0,kg/TJ,25116.245,Naphtha combustion consumption by freight transport,AR-R,SESCO,annual,kg,4870d6e1-c934-3098-82ca-3688ccbebe60 +2022,Rio Negro,II.1.1,0.34265,TJ,CH4,0.5,kg/TJ,0.171325,Naphtha combustion consumption by freight transport,AR-R,SESCO,annual,kg,08cb0bcb-50c3-3e45-bc84-810a258b425a +2022,Rio Negro,II.1.1,0.34265,TJ,N2O,2.0,kg/TJ,0.6853,Naphtha combustion consumption by freight transport,AR-R,SESCO,annual,kg,c1d43115-ebf7-3636-b65f-b7e50d7155af +2022,San Luis,II.1.1,0.034265,TJ,CO2,73300.0,kg/TJ,2511.6245,Naphtha combustion consumption by freight transport,AR-D,SESCO,annual,kg,d60c1094-0564-3a56-aea0-d0fa5ab87df1 +2022,San Luis,II.1.1,0.034265,TJ,CH4,0.5,kg/TJ,0.0171325,Naphtha combustion consumption by freight transport,AR-D,SESCO,annual,kg,cfc3f000-67c0-3b7c-a5d7-369037128a21 +2022,San Luis,II.1.1,0.034265,TJ,N2O,2.0,kg/TJ,0.06853,Naphtha combustion consumption by freight transport,AR-D,SESCO,annual,kg,ecd952a8-3a1b-39b1-a57c-9a3c96e0da84 +2022,Santa Fe,II.1.1,7.6068299999999995,TJ,CO2,73300.0,kg/TJ,557580.639,Naphtha combustion consumption by freight transport,AR-S,SESCO,annual,kg,f92cd6a8-02ba-3f09-b956-a77f4db5bdaf +2022,Santa Fe,II.1.1,7.6068299999999995,TJ,CH4,0.5,kg/TJ,3.8034149999999998,Naphtha combustion consumption by freight transport,AR-S,SESCO,annual,kg,30ca4051-2f6e-3f96-9346-15d1e0978750 +2022,Santa Fe,II.1.1,7.6068299999999995,TJ,N2O,2.0,kg/TJ,15.213659999999999,Naphtha combustion consumption by freight transport,AR-S,SESCO,annual,kg,0f1de8d2-09eb-3a32-93fe-23b0fe14a18e +2022,Santiago del Estero,II.1.1,0.034265,TJ,CO2,73300.0,kg/TJ,2511.6245,Naphtha combustion consumption by freight transport,AR-G,SESCO,annual,kg,d14513d4-d09c-3859-beae-1ea19a611e3d +2022,Santiago del Estero,II.1.1,0.034265,TJ,CH4,0.5,kg/TJ,0.0171325,Naphtha combustion consumption by freight transport,AR-G,SESCO,annual,kg,a6393a37-1179-37f4-bc8f-75e9744032b8 +2022,Santiago del Estero,II.1.1,0.034265,TJ,N2O,2.0,kg/TJ,0.06853,Naphtha combustion consumption by freight transport,AR-G,SESCO,annual,kg,04bf7b7d-e407-3121-b429-d4ca02c2ed60 +2022,Buenos Aires,II.1.1,350.47236,TJ,CO2,74100.0,kg/TJ,25970001.876,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,232db9e7-52f3-33b3-b895-fa4c6c1d63ea +2022,Buenos Aires,II.1.1,350.47236,TJ,CH4,3.9,kg/TJ,1366.8422039999998,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,c4cac453-9787-303c-8576-cdeb260f15be +2022,Buenos Aires,II.1.1,350.47236,TJ,N2O,3.9,kg/TJ,1366.8422039999998,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,c4cac453-9787-303c-8576-cdeb260f15be +2022,Capital Federal,II.1.1,312.69084,TJ,CO2,74100.0,kg/TJ,23170391.244,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,ec4a835f-6ccd-313b-a6f9-fca5d0776f3f +2022,Capital Federal,II.1.1,312.69084,TJ,CH4,3.9,kg/TJ,1219.494276,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,3522f151-15c3-319e-a547-91ea13697b1b +2022,Capital Federal,II.1.1,312.69084,TJ,N2O,3.9,kg/TJ,1219.494276,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,3522f151-15c3-319e-a547-91ea13697b1b +2022,Chaco,II.1.1,40.20156,TJ,CO2,74100.0,kg/TJ,2978935.596,Gas Oil combustion consumption by public passenger transport,AR-H,SESCO,annual,kg,10b75203-bc16-3f82-871c-4259c1c65cb4 +2022,Chaco,II.1.1,40.20156,TJ,CH4,3.9,kg/TJ,156.786084,Gas Oil combustion consumption by public passenger transport,AR-H,SESCO,annual,kg,f4eee748-9261-3f64-ae73-8d89c4a483ab +2022,Chaco,II.1.1,40.20156,TJ,N2O,3.9,kg/TJ,156.786084,Gas Oil combustion consumption by public passenger transport,AR-H,SESCO,annual,kg,f4eee748-9261-3f64-ae73-8d89c4a483ab +2022,Chubut,II.1.1,6.6460799999999995,TJ,CO2,74100.0,kg/TJ,492474.528,Gas Oil combustion consumption by public passenger transport,AR-U,SESCO,annual,kg,adba2fa7-a656-301a-9150-371c09a7c816 +2022,Chubut,II.1.1,6.6460799999999995,TJ,CH4,3.9,kg/TJ,25.919711999999997,Gas Oil combustion consumption by public passenger transport,AR-U,SESCO,annual,kg,fe5997a0-42fe-3a9d-9e6a-88b3ce49a349 +2022,Chubut,II.1.1,6.6460799999999995,TJ,N2O,3.9,kg/TJ,25.919711999999997,Gas Oil combustion consumption by public passenger transport,AR-U,SESCO,annual,kg,fe5997a0-42fe-3a9d-9e6a-88b3ce49a349 +2022,Corrientes,II.1.1,0.21672,TJ,CO2,74100.0,kg/TJ,16058.952,Gas Oil combustion consumption by public passenger transport,AR-W,SESCO,annual,kg,76f88d2e-e2ce-3c00-82e3-9ba287599ffc +2022,Corrientes,II.1.1,0.21672,TJ,CH4,3.9,kg/TJ,0.845208,Gas Oil combustion consumption by public passenger transport,AR-W,SESCO,annual,kg,1e202f1c-53f4-3bea-a4fb-24d63ed207cb +2022,Corrientes,II.1.1,0.21672,TJ,N2O,3.9,kg/TJ,0.845208,Gas Oil combustion consumption by public passenger transport,AR-W,SESCO,annual,kg,1e202f1c-53f4-3bea-a4fb-24d63ed207cb +2022,Córdoba,II.1.1,7.657439999999999,TJ,CO2,74100.0,kg/TJ,567416.304,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,b43a53aa-9876-3d74-852f-b866414a8787 +2022,Córdoba,II.1.1,7.657439999999999,TJ,CH4,3.9,kg/TJ,29.864015999999996,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,afc78d81-bd4b-3b0b-ae37-695dd80fed14 +2022,Córdoba,II.1.1,7.657439999999999,TJ,N2O,3.9,kg/TJ,29.864015999999996,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,afc78d81-bd4b-3b0b-ae37-695dd80fed14 +2022,Entre Rios,II.1.1,43.77744,TJ,CO2,74100.0,kg/TJ,3243908.304,Gas Oil combustion consumption by public passenger transport,AR-E,SESCO,annual,kg,8c68ad38-eee3-3928-98aa-5bbe40f0f007 +2022,Entre Rios,II.1.1,43.77744,TJ,CH4,3.9,kg/TJ,170.732016,Gas Oil combustion consumption by public passenger transport,AR-E,SESCO,annual,kg,27d4a9d1-8669-37f3-bd07-373b87df86da +2022,Entre Rios,II.1.1,43.77744,TJ,N2O,3.9,kg/TJ,170.732016,Gas Oil combustion consumption by public passenger transport,AR-E,SESCO,annual,kg,27d4a9d1-8669-37f3-bd07-373b87df86da +2022,La Pampa,II.1.1,2.5284,TJ,CO2,74100.0,kg/TJ,187354.44,Gas Oil combustion consumption by public passenger transport,AR-L,SESCO,annual,kg,f531ebcc-6e02-3e3e-bc40-1f9cfb816a70 +2022,La Pampa,II.1.1,2.5284,TJ,CH4,3.9,kg/TJ,9.860759999999999,Gas Oil combustion consumption by public passenger transport,AR-L,SESCO,annual,kg,ef6586e3-30d6-3ca1-a09b-3f7764a8e3ba +2022,La Pampa,II.1.1,2.5284,TJ,N2O,3.9,kg/TJ,9.860759999999999,Gas Oil combustion consumption by public passenger transport,AR-L,SESCO,annual,kg,ef6586e3-30d6-3ca1-a09b-3f7764a8e3ba +2022,Mendoza,II.1.1,8.52432,TJ,CO2,74100.0,kg/TJ,631652.112,Gas Oil combustion consumption by public passenger transport,AR-M,SESCO,annual,kg,c0479b22-9bd5-38f5-ae28-d4248d0c0f6f +2022,Mendoza,II.1.1,8.52432,TJ,CH4,3.9,kg/TJ,33.244848,Gas Oil combustion consumption by public passenger transport,AR-M,SESCO,annual,kg,95218887-12d2-3404-8c28-3457ef21508d +2022,Mendoza,II.1.1,8.52432,TJ,N2O,3.9,kg/TJ,33.244848,Gas Oil combustion consumption by public passenger transport,AR-M,SESCO,annual,kg,95218887-12d2-3404-8c28-3457ef21508d +2022,Misiones,II.1.1,11.702879999999999,TJ,CO2,74100.0,kg/TJ,867183.4079999999,Gas Oil combustion consumption by public passenger transport,AR-N,SESCO,annual,kg,2610062a-f54f-32f5-8679-1673f86053f5 +2022,Misiones,II.1.1,11.702879999999999,TJ,CH4,3.9,kg/TJ,45.641231999999995,Gas Oil combustion consumption by public passenger transport,AR-N,SESCO,annual,kg,f0740654-1cb5-373c-9045-9888f18affeb +2022,Misiones,II.1.1,11.702879999999999,TJ,N2O,3.9,kg/TJ,45.641231999999995,Gas Oil combustion consumption by public passenger transport,AR-N,SESCO,annual,kg,f0740654-1cb5-373c-9045-9888f18affeb +2022,Neuquén,II.1.1,0.03612,TJ,CO2,74100.0,kg/TJ,2676.4919999999997,Gas Oil combustion consumption by public passenger transport,AR-Q,SESCO,annual,kg,72f79e4f-cc41-3c96-90ab-f636da9fd693 +2022,Neuquén,II.1.1,0.03612,TJ,CH4,3.9,kg/TJ,0.140868,Gas Oil combustion consumption by public passenger transport,AR-Q,SESCO,annual,kg,a2c1117f-32e8-359f-bc8f-87f84ddd7b5b +2022,Neuquén,II.1.1,0.03612,TJ,N2O,3.9,kg/TJ,0.140868,Gas Oil combustion consumption by public passenger transport,AR-Q,SESCO,annual,kg,a2c1117f-32e8-359f-bc8f-87f84ddd7b5b +2022,Rio Negro,II.1.1,4.00932,TJ,CO2,74100.0,kg/TJ,297090.61199999996,Gas Oil combustion consumption by public passenger transport,AR-R,SESCO,annual,kg,3a20721e-07cd-3ff0-bdfb-b5ddbe425874 +2022,Rio Negro,II.1.1,4.00932,TJ,CH4,3.9,kg/TJ,15.636347999999998,Gas Oil combustion consumption by public passenger transport,AR-R,SESCO,annual,kg,7d934bf3-dfd8-36b6-92c5-c2f7f9def8f7 +2022,Rio Negro,II.1.1,4.00932,TJ,N2O,3.9,kg/TJ,15.636347999999998,Gas Oil combustion consumption by public passenger transport,AR-R,SESCO,annual,kg,7d934bf3-dfd8-36b6-92c5-c2f7f9def8f7 +2022,Santa Cruz,II.1.1,0.07224,TJ,CO2,74100.0,kg/TJ,5352.9839999999995,Gas Oil combustion consumption by public passenger transport,AR-Z,SESCO,annual,kg,3ffe332e-50be-3a00-8343-1c88cafa7f7f +2022,Santa Cruz,II.1.1,0.07224,TJ,CH4,3.9,kg/TJ,0.281736,Gas Oil combustion consumption by public passenger transport,AR-Z,SESCO,annual,kg,d5efa76d-1092-3ffe-a3b1-ecb8bf98463d +2022,Santa Cruz,II.1.1,0.07224,TJ,N2O,3.9,kg/TJ,0.281736,Gas Oil combustion consumption by public passenger transport,AR-Z,SESCO,annual,kg,d5efa76d-1092-3ffe-a3b1-ecb8bf98463d +2022,Santa Fe,II.1.1,314.31624,TJ,CO2,74100.0,kg/TJ,23290833.384,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,ea96c010-db26-34d5-8127-1279bf53c403 +2022,Santa Fe,II.1.1,314.31624,TJ,CH4,3.9,kg/TJ,1225.833336,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,42dd3465-f39a-30a1-bb72-fd6862fc0a4d +2022,Santa Fe,II.1.1,314.31624,TJ,N2O,3.9,kg/TJ,1225.833336,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,42dd3465-f39a-30a1-bb72-fd6862fc0a4d +2022,Santiago del Estero,II.1.1,0.07224,TJ,CO2,74100.0,kg/TJ,5352.9839999999995,Gas Oil combustion consumption by public passenger transport,AR-G,SESCO,annual,kg,02b10c80-f015-39cb-aa5e-0fa5fb8fab17 +2022,Santiago del Estero,II.1.1,0.07224,TJ,CH4,3.9,kg/TJ,0.281736,Gas Oil combustion consumption by public passenger transport,AR-G,SESCO,annual,kg,e5567771-8320-33a5-9f80-456ff2ef92f1 +2022,Santiago del Estero,II.1.1,0.07224,TJ,N2O,3.9,kg/TJ,0.281736,Gas Oil combustion consumption by public passenger transport,AR-G,SESCO,annual,kg,e5567771-8320-33a5-9f80-456ff2ef92f1 +2022,Tucuman,II.1.1,42.29652,TJ,CO2,74100.0,kg/TJ,3134172.132,Gas Oil combustion consumption by public passenger transport,AR-T,SESCO,annual,kg,19b4d3c6-b28c-3f39-8775-701d0d244064 +2022,Tucuman,II.1.1,42.29652,TJ,CH4,3.9,kg/TJ,164.956428,Gas Oil combustion consumption by public passenger transport,AR-T,SESCO,annual,kg,13288685-7ef2-3487-b2ad-c382e4a1eaea +2022,Tucuman,II.1.1,42.29652,TJ,N2O,3.9,kg/TJ,164.956428,Gas Oil combustion consumption by public passenger transport,AR-T,SESCO,annual,kg,13288685-7ef2-3487-b2ad-c382e4a1eaea +2022,Buenos Aires,II.1.1,570.29868,TJ,CO2,74100.0,kg/TJ,42259132.188,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,f276248c-1cf4-366b-b760-9558ec6eeaf4 +2022,Buenos Aires,II.1.1,570.29868,TJ,CH4,3.9,kg/TJ,2224.164852,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,c106b4f1-1508-3b4f-a1a6-d5d3ba658c47 +2022,Buenos Aires,II.1.1,570.29868,TJ,N2O,3.9,kg/TJ,2224.164852,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,c106b4f1-1508-3b4f-a1a6-d5d3ba658c47 +2022,Capital Federal,II.1.1,73.75704,TJ,CO2,74100.0,kg/TJ,5465396.664,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,2faf48ab-44b5-3016-82f9-42537bbc0150 +2022,Capital Federal,II.1.1,73.75704,TJ,CH4,3.9,kg/TJ,287.65245600000003,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,175b77df-d12d-3b2e-a6e5-0c5b6db66cd5 +2022,Capital Federal,II.1.1,73.75704,TJ,N2O,3.9,kg/TJ,287.65245600000003,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,175b77df-d12d-3b2e-a6e5-0c5b6db66cd5 +2022,Chaco,II.1.1,0.28896,TJ,CO2,74100.0,kg/TJ,21411.935999999998,Gas Oil combustion consumption by public passenger transport,AR-H,SESCO,annual,kg,ea6544e9-3324-3421-8e1c-8331375dfc2f +2022,Chaco,II.1.1,0.28896,TJ,CH4,3.9,kg/TJ,1.126944,Gas Oil combustion consumption by public passenger transport,AR-H,SESCO,annual,kg,004e9435-b770-35ff-b69a-669eb91a2ff9 +2022,Chaco,II.1.1,0.28896,TJ,N2O,3.9,kg/TJ,1.126944,Gas Oil combustion consumption by public passenger transport,AR-H,SESCO,annual,kg,004e9435-b770-35ff-b69a-669eb91a2ff9 +2022,Chubut,II.1.1,2.09496,TJ,CO2,74100.0,kg/TJ,155236.536,Gas Oil combustion consumption by public passenger transport,AR-U,SESCO,annual,kg,976ee592-3d31-3a0e-b4eb-88256b97e860 +2022,Chubut,II.1.1,2.09496,TJ,CH4,3.9,kg/TJ,8.170344,Gas Oil combustion consumption by public passenger transport,AR-U,SESCO,annual,kg,1b34120a-1bc8-3c2c-8036-6955f41c856d +2022,Chubut,II.1.1,2.09496,TJ,N2O,3.9,kg/TJ,8.170344,Gas Oil combustion consumption by public passenger transport,AR-U,SESCO,annual,kg,1b34120a-1bc8-3c2c-8036-6955f41c856d +2022,Corrientes,II.1.1,0.28896,TJ,CO2,74100.0,kg/TJ,21411.935999999998,Gas Oil combustion consumption by public passenger transport,AR-W,SESCO,annual,kg,1d213990-1928-3e61-bab6-4438771aa0c5 +2022,Corrientes,II.1.1,0.28896,TJ,CH4,3.9,kg/TJ,1.126944,Gas Oil combustion consumption by public passenger transport,AR-W,SESCO,annual,kg,448c3818-ab73-3189-a817-1656d5e760dd +2022,Corrientes,II.1.1,0.28896,TJ,N2O,3.9,kg/TJ,1.126944,Gas Oil combustion consumption by public passenger transport,AR-W,SESCO,annual,kg,448c3818-ab73-3189-a817-1656d5e760dd +2022,Córdoba,II.1.1,13.21992,TJ,CO2,74100.0,kg/TJ,979596.072,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,9721e705-4d27-35f6-a5d5-d8fa5fe46523 +2022,Córdoba,II.1.1,13.21992,TJ,CH4,3.9,kg/TJ,51.557688,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,aeae4db0-58cf-3596-b7c6-ccac3a8a4bf1 +2022,Córdoba,II.1.1,13.21992,TJ,N2O,3.9,kg/TJ,51.557688,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,aeae4db0-58cf-3596-b7c6-ccac3a8a4bf1 +2022,Entre Rios,II.1.1,4.44276,TJ,CO2,74100.0,kg/TJ,329208.516,Gas Oil combustion consumption by public passenger transport,AR-E,SESCO,annual,kg,ce369f6c-d425-3608-a7c6-4b85d86f6f62 +2022,Entre Rios,II.1.1,4.44276,TJ,CH4,3.9,kg/TJ,17.326763999999997,Gas Oil combustion consumption by public passenger transport,AR-E,SESCO,annual,kg,dacd5c93-3394-3811-bbd5-80e923948dce +2022,Entre Rios,II.1.1,4.44276,TJ,N2O,3.9,kg/TJ,17.326763999999997,Gas Oil combustion consumption by public passenger transport,AR-E,SESCO,annual,kg,dacd5c93-3394-3811-bbd5-80e923948dce +2022,Formosa,II.1.1,4.6956,TJ,CO2,74100.0,kg/TJ,347943.95999999996,Gas Oil combustion consumption by public passenger transport,AR-P,SESCO,annual,kg,e6ac4cb8-bce5-3a14-8a2d-cf992ff9c5cf +2022,Formosa,II.1.1,4.6956,TJ,CH4,3.9,kg/TJ,18.312839999999998,Gas Oil combustion consumption by public passenger transport,AR-P,SESCO,annual,kg,4f116e71-bacc-3c40-8355-5f18c3a91679 +2022,Formosa,II.1.1,4.6956,TJ,N2O,3.9,kg/TJ,18.312839999999998,Gas Oil combustion consumption by public passenger transport,AR-P,SESCO,annual,kg,4f116e71-bacc-3c40-8355-5f18c3a91679 +2022,La Pampa,II.1.1,0.03612,TJ,CO2,74100.0,kg/TJ,2676.4919999999997,Gas Oil combustion consumption by public passenger transport,AR-L,SESCO,annual,kg,5fa51960-36e1-3a0d-bce5-0dd2a833e98e +2022,La Pampa,II.1.1,0.03612,TJ,CH4,3.9,kg/TJ,0.140868,Gas Oil combustion consumption by public passenger transport,AR-L,SESCO,annual,kg,9bffa227-caae-3d79-9202-c83612263ab2 +2022,La Pampa,II.1.1,0.03612,TJ,N2O,3.9,kg/TJ,0.140868,Gas Oil combustion consumption by public passenger transport,AR-L,SESCO,annual,kg,9bffa227-caae-3d79-9202-c83612263ab2 +2022,Mendoza,II.1.1,0.8307599999999999,TJ,CO2,74100.0,kg/TJ,61559.316,Gas Oil combustion consumption by public passenger transport,AR-M,SESCO,annual,kg,7ba62d63-934c-35b6-bb62-b75ba989e98e +2022,Mendoza,II.1.1,0.8307599999999999,TJ,CH4,3.9,kg/TJ,3.2399639999999996,Gas Oil combustion consumption by public passenger transport,AR-M,SESCO,annual,kg,6fb51a12-1af4-3ff4-b2ba-8a94720a8a64 +2022,Mendoza,II.1.1,0.8307599999999999,TJ,N2O,3.9,kg/TJ,3.2399639999999996,Gas Oil combustion consumption by public passenger transport,AR-M,SESCO,annual,kg,6fb51a12-1af4-3ff4-b2ba-8a94720a8a64 +2022,Misiones,II.1.1,0.10836,TJ,CO2,74100.0,kg/TJ,8029.476,Gas Oil combustion consumption by public passenger transport,AR-N,SESCO,annual,kg,26712a07-f775-3efc-bcbf-af0c69415ce0 +2022,Misiones,II.1.1,0.10836,TJ,CH4,3.9,kg/TJ,0.422604,Gas Oil combustion consumption by public passenger transport,AR-N,SESCO,annual,kg,dcd3983d-6d10-3d48-a23e-adfef4ae73c8 +2022,Misiones,II.1.1,0.10836,TJ,N2O,3.9,kg/TJ,0.422604,Gas Oil combustion consumption by public passenger transport,AR-N,SESCO,annual,kg,dcd3983d-6d10-3d48-a23e-adfef4ae73c8 +2022,Neuquén,II.1.1,3.21468,TJ,CO2,74100.0,kg/TJ,238207.788,Gas Oil combustion consumption by public passenger transport,AR-Q,SESCO,annual,kg,899f7759-fd27-37f5-9760-9cc121b1fa1a +2022,Neuquén,II.1.1,3.21468,TJ,CH4,3.9,kg/TJ,12.537252,Gas Oil combustion consumption by public passenger transport,AR-Q,SESCO,annual,kg,069f678d-6727-3f05-a055-8d6183276770 +2022,Neuquén,II.1.1,3.21468,TJ,N2O,3.9,kg/TJ,12.537252,Gas Oil combustion consumption by public passenger transport,AR-Q,SESCO,annual,kg,069f678d-6727-3f05-a055-8d6183276770 +2022,Rio Negro,II.1.1,7.69356,TJ,CO2,74100.0,kg/TJ,570092.796,Gas Oil combustion consumption by public passenger transport,AR-R,SESCO,annual,kg,289f0de4-1a19-39a0-bcee-707b0edca1f0 +2022,Rio Negro,II.1.1,7.69356,TJ,CH4,3.9,kg/TJ,30.004883999999997,Gas Oil combustion consumption by public passenger transport,AR-R,SESCO,annual,kg,553a9dd4-3b2c-368c-acd0-ef29801f4ea5 +2022,Rio Negro,II.1.1,7.69356,TJ,N2O,3.9,kg/TJ,30.004883999999997,Gas Oil combustion consumption by public passenger transport,AR-R,SESCO,annual,kg,553a9dd4-3b2c-368c-acd0-ef29801f4ea5 +2022,Salta,II.1.1,0.10836,TJ,CO2,74100.0,kg/TJ,8029.476,Gas Oil combustion consumption by public passenger transport,AR-A,SESCO,annual,kg,81d68113-d191-36d2-959d-8c44c6334729 +2022,Salta,II.1.1,0.10836,TJ,CH4,3.9,kg/TJ,0.422604,Gas Oil combustion consumption by public passenger transport,AR-A,SESCO,annual,kg,53f60864-b496-3d8b-93da-a1aa1518f340 +2022,Salta,II.1.1,0.10836,TJ,N2O,3.9,kg/TJ,0.422604,Gas Oil combustion consumption by public passenger transport,AR-A,SESCO,annual,kg,53f60864-b496-3d8b-93da-a1aa1518f340 +2022,Santa Fe,II.1.1,223.944,TJ,CO2,74100.0,kg/TJ,16594250.399999999,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,7b03e744-d08f-35db-aeec-7a8a80920574 +2022,Santa Fe,II.1.1,223.944,TJ,CH4,3.9,kg/TJ,873.3815999999999,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,42bea29a-e52b-37b5-b758-6c4cbf55fbf6 +2022,Santa Fe,II.1.1,223.944,TJ,N2O,3.9,kg/TJ,873.3815999999999,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,42bea29a-e52b-37b5-b758-6c4cbf55fbf6 +2022,Santiago del Estero,II.1.1,0.43344,TJ,CO2,74100.0,kg/TJ,32117.904,Gas Oil combustion consumption by public passenger transport,AR-G,SESCO,annual,kg,00280202-632d-3114-a05f-c74e11008ac5 +2022,Santiago del Estero,II.1.1,0.43344,TJ,CH4,3.9,kg/TJ,1.690416,Gas Oil combustion consumption by public passenger transport,AR-G,SESCO,annual,kg,7ccda793-ff1d-39b4-9535-2c1f2b48ca15 +2022,Santiago del Estero,II.1.1,0.43344,TJ,N2O,3.9,kg/TJ,1.690416,Gas Oil combustion consumption by public passenger transport,AR-G,SESCO,annual,kg,7ccda793-ff1d-39b4-9535-2c1f2b48ca15 +2022,Tucuman,II.1.1,0.07224,TJ,CO2,74100.0,kg/TJ,5352.9839999999995,Gas Oil combustion consumption by public passenger transport,AR-T,SESCO,annual,kg,4342d217-5966-3509-9295-612f90685c55 +2022,Tucuman,II.1.1,0.07224,TJ,CH4,3.9,kg/TJ,0.281736,Gas Oil combustion consumption by public passenger transport,AR-T,SESCO,annual,kg,72b62858-a0a0-30c3-a79c-b52525c6f9e7 +2022,Tucuman,II.1.1,0.07224,TJ,N2O,3.9,kg/TJ,0.281736,Gas Oil combustion consumption by public passenger transport,AR-T,SESCO,annual,kg,72b62858-a0a0-30c3-a79c-b52525c6f9e7 +2022,Buenos Aires,II.1.1,0.13706,TJ,CO2,73300.0,kg/TJ,10046.498,Naphtha combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,1523e50d-2261-32e8-b348-7b1ed414e5e5 +2022,Buenos Aires,II.1.1,0.13706,TJ,CH4,0.5,kg/TJ,0.06853,Naphtha combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,9fb7bfa1-a6a7-3eed-a7ea-24a783ab1383 +2022,Buenos Aires,II.1.1,0.13706,TJ,N2O,2.0,kg/TJ,0.27412,Naphtha combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,7156c930-7a8f-3181-a163-d6b204e20d84 +2022,Capital Federal,II.1.1,0.102795,TJ,CO2,73300.0,kg/TJ,7534.8735,Naphtha combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,053f6177-1540-3c2f-a780-534f8e4adff5 +2022,Capital Federal,II.1.1,0.102795,TJ,CH4,0.5,kg/TJ,0.0513975,Naphtha combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,78757fd5-8cc4-3ce1-952f-767bb32c9289 +2022,Capital Federal,II.1.1,0.102795,TJ,N2O,2.0,kg/TJ,0.20559,Naphtha combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,e2e866a6-4572-3b29-a70b-003553aef4b0 +2022,Entre Rios,II.1.1,0.30838499999999996,TJ,CO2,73300.0,kg/TJ,22604.620499999997,Naphtha combustion consumption by public passenger transport,AR-E,SESCO,annual,kg,c8e9b621-406a-3211-8a7a-2c7ee7d21b3b +2022,Entre Rios,II.1.1,0.30838499999999996,TJ,CH4,0.5,kg/TJ,0.15419249999999998,Naphtha combustion consumption by public passenger transport,AR-E,SESCO,annual,kg,38f5897d-3a1a-365c-be6b-778fcaa517c5 +2022,Entre Rios,II.1.1,0.30838499999999996,TJ,N2O,2.0,kg/TJ,0.6167699999999999,Naphtha combustion consumption by public passenger transport,AR-E,SESCO,annual,kg,ea0e6d72-e90e-3f6d-b12d-860eed03e34a +2022,Santa Fe,II.1.1,0.34265,TJ,CO2,73300.0,kg/TJ,25116.245,Naphtha combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,5748572a-bb06-3993-a507-b6d4e1309df1 +2022,Santa Fe,II.1.1,0.34265,TJ,CH4,0.5,kg/TJ,0.171325,Naphtha combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,856467f0-8ee5-33a8-a14b-0f0eeb2051b9 +2022,Santa Fe,II.1.1,0.34265,TJ,N2O,2.0,kg/TJ,0.6853,Naphtha combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,c35b9279-9f62-38f6-96c2-54154186a2e8 +2022,Buenos Aires,II.1.1,0.13706,TJ,CO2,73300.0,kg/TJ,10046.498,Naphtha combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,1523e50d-2261-32e8-b348-7b1ed414e5e5 +2022,Buenos Aires,II.1.1,0.13706,TJ,CH4,0.5,kg/TJ,0.06853,Naphtha combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,9fb7bfa1-a6a7-3eed-a7ea-24a783ab1383 +2022,Buenos Aires,II.1.1,0.13706,TJ,N2O,2.0,kg/TJ,0.27412,Naphtha combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,7156c930-7a8f-3181-a163-d6b204e20d84 +2022,Capital Federal,II.1.1,0.788095,TJ,CO2,73300.0,kg/TJ,57767.3635,Naphtha combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,3e89928b-3445-3f6e-9539-b3b636a24e45 +2022,Capital Federal,II.1.1,0.788095,TJ,CH4,0.5,kg/TJ,0.3940475,Naphtha combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,481b2bea-d06a-39dc-9562-6ba6cb98f5bf +2022,Capital Federal,II.1.1,0.788095,TJ,N2O,2.0,kg/TJ,1.57619,Naphtha combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,2992673d-55af-373b-810f-1ab976730486 +2022,Córdoba,II.1.1,0.06853,TJ,CO2,73300.0,kg/TJ,5023.249,Naphtha combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,802a82ae-82f2-3478-89a7-035699ac7135 +2022,Córdoba,II.1.1,0.06853,TJ,CH4,0.5,kg/TJ,0.034265,Naphtha combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,b2dded86-3ca5-3995-a3e1-f4146de574eb +2022,Córdoba,II.1.1,0.06853,TJ,N2O,2.0,kg/TJ,0.13706,Naphtha combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,8f05cb19-47c0-3ccb-b8f8-6f0dd10f7cb3 +2022,Entre Rios,II.1.1,0.5825049999999999,TJ,CO2,73300.0,kg/TJ,42697.6165,Naphtha combustion consumption by public passenger transport,AR-E,SESCO,annual,kg,5722dcf6-7e75-3d22-b0b1-7b42c127793c +2022,Entre Rios,II.1.1,0.5825049999999999,TJ,CH4,0.5,kg/TJ,0.29125249999999997,Naphtha combustion consumption by public passenger transport,AR-E,SESCO,annual,kg,843656de-abbb-3d63-b894-db05f90d3786 +2022,Entre Rios,II.1.1,0.5825049999999999,TJ,N2O,2.0,kg/TJ,1.1650099999999999,Naphtha combustion consumption by public passenger transport,AR-E,SESCO,annual,kg,daf7339a-6cba-39f2-9cfb-8c3d9d38cd25 +2022,Entre Rios,II.5.1,13.03932,TJ,CO2,74100.0,kg/TJ,966213.612,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,f75dac07-2a77-35c4-9c9e-1fd6011e9c17 +2022,Entre Rios,II.5.1,13.03932,TJ,CH4,3.9,kg/TJ,50.853348,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,930fe0ce-59c7-3f9e-875b-10e0022aa7ed +2022,Entre Rios,II.5.1,13.03932,TJ,N2O,3.9,kg/TJ,50.853348,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,930fe0ce-59c7-3f9e-875b-10e0022aa7ed +2022,Entre Rios,II.5.1,0.5418,TJ,CO2,74100.0,kg/TJ,40147.38,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,b12f0701-b21d-3cb1-8e80-6e9eca8d8bb1 +2022,Entre Rios,II.5.1,0.5418,TJ,CH4,3.9,kg/TJ,2.1130199999999997,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,3b0354ae-4bba-3861-b80f-180450fbdb1d +2022,Entre Rios,II.5.1,0.5418,TJ,N2O,3.9,kg/TJ,2.1130199999999997,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,3b0354ae-4bba-3861-b80f-180450fbdb1d +2022,Entre Rios,II.5.1,1.9873699999999999,TJ,CO2,73300.0,kg/TJ,145674.221,Naphtha combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,c974913a-389f-389d-9b25-d39310de3337 +2022,Entre Rios,II.5.1,1.9873699999999999,TJ,CH4,0.5,kg/TJ,0.9936849999999999,Naphtha combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,134ecb30-269f-3d16-a640-2d32b6f59f0e +2022,Entre Rios,II.5.1,1.9873699999999999,TJ,N2O,2.0,kg/TJ,3.9747399999999997,Naphtha combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,263817e6-9b69-3313-8af6-2a05e91bc5fa +2022,Entre Rios,II.5.1,0.171325,TJ,CO2,73300.0,kg/TJ,12558.1225,Naphtha combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,e8b92790-d603-365d-8f9a-ca4d3b1c35ec +2022,Entre Rios,II.5.1,0.171325,TJ,CH4,0.5,kg/TJ,0.0856625,Naphtha combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,46ddae01-55d0-3c70-abd1-8e518fac78be +2022,Entre Rios,II.5.1,0.171325,TJ,N2O,2.0,kg/TJ,0.34265,Naphtha combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,a034fff5-eff2-3bec-8dcd-7293a3a51efa +2022,Buenos Aires,II.5.1,444.67332,TJ,CO2,74100.0,kg/TJ,32950293.012,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,596bcc06-53bc-32d2-8064-32b5be493125 +2022,Buenos Aires,II.5.1,444.67332,TJ,CH4,3.9,kg/TJ,1734.225948,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,1c0a9b89-58eb-36f9-ab5e-8eb0c9d7225e +2022,Buenos Aires,II.5.1,444.67332,TJ,N2O,3.9,kg/TJ,1734.225948,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,1c0a9b89-58eb-36f9-ab5e-8eb0c9d7225e +2022,Corrientes,II.5.1,51.1098,TJ,CO2,74100.0,kg/TJ,3787236.18,Gas Oil combustion consumption by agriculture machines,AR-W,SESCO,annual,kg,78e30614-bdb0-3e05-ab7f-8303583921d7 +2022,Corrientes,II.5.1,51.1098,TJ,CH4,3.9,kg/TJ,199.32822,Gas Oil combustion consumption by agriculture machines,AR-W,SESCO,annual,kg,f3d409dd-afd5-3b4e-9c08-cd4f717730c8 +2022,Corrientes,II.5.1,51.1098,TJ,N2O,3.9,kg/TJ,199.32822,Gas Oil combustion consumption by agriculture machines,AR-W,SESCO,annual,kg,f3d409dd-afd5-3b4e-9c08-cd4f717730c8 +2022,Córdoba,II.5.1,16.68744,TJ,CO2,74100.0,kg/TJ,1236539.304,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,8b74e209-4284-3fba-96b4-b4c711ed6976 +2022,Córdoba,II.5.1,16.68744,TJ,CH4,3.9,kg/TJ,65.08101599999999,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,f0a739b1-1656-3602-98ac-c5cdbed185e3 +2022,Córdoba,II.5.1,16.68744,TJ,N2O,3.9,kg/TJ,65.08101599999999,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,f0a739b1-1656-3602-98ac-c5cdbed185e3 +2022,Entre Rios,II.5.1,113.45291999999999,TJ,CO2,74100.0,kg/TJ,8406861.372,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,a90028da-68b0-3289-8da6-2abb5b5401c7 +2022,Entre Rios,II.5.1,113.45291999999999,TJ,CH4,3.9,kg/TJ,442.46638799999994,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,407bb597-647f-312d-809e-61ffd39cfc1a +2022,Entre Rios,II.5.1,113.45291999999999,TJ,N2O,3.9,kg/TJ,442.46638799999994,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,407bb597-647f-312d-809e-61ffd39cfc1a +2022,La Pampa,II.5.1,24.63384,TJ,CO2,74100.0,kg/TJ,1825367.544,Gas Oil combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,c515af30-e29d-3f0b-b82b-db74638cf3d5 +2022,La Pampa,II.5.1,24.63384,TJ,CH4,3.9,kg/TJ,96.07197599999999,Gas Oil combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,d2df41d6-d67d-38e8-9fa5-71c1854fd02e +2022,La Pampa,II.5.1,24.63384,TJ,N2O,3.9,kg/TJ,96.07197599999999,Gas Oil combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,d2df41d6-d67d-38e8-9fa5-71c1854fd02e +2022,Santa Fe,II.5.1,61.656839999999995,TJ,CO2,74100.0,kg/TJ,4568771.844,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,857e2b36-5aba-3b9d-ace2-da84b3eb3fcc +2022,Santa Fe,II.5.1,61.656839999999995,TJ,CH4,3.9,kg/TJ,240.46167599999998,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,8bfb07a4-7b4e-3b39-8823-c806d11aa4d3 +2022,Santa Fe,II.5.1,61.656839999999995,TJ,N2O,3.9,kg/TJ,240.46167599999998,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,8bfb07a4-7b4e-3b39-8823-c806d11aa4d3 +2022,Tucuman,II.5.1,23.2974,TJ,CO2,74100.0,kg/TJ,1726337.34,Gas Oil combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,8ee9aef6-c95b-3eea-ab77-b88617e86dc1 +2022,Tucuman,II.5.1,23.2974,TJ,CH4,3.9,kg/TJ,90.85986,Gas Oil combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,412b7863-28b9-391c-87a8-cd982d61b797 +2022,Tucuman,II.5.1,23.2974,TJ,N2O,3.9,kg/TJ,90.85986,Gas Oil combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,412b7863-28b9-391c-87a8-cd982d61b797 +2022,Buenos Aires,II.5.1,29.221079999999997,TJ,CO2,74100.0,kg/TJ,2165282.028,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,55c440d1-c500-3fc6-95db-cb73df4da5b2 +2022,Buenos Aires,II.5.1,29.221079999999997,TJ,CH4,3.9,kg/TJ,113.96221199999998,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,eabe5e2c-319e-387d-b480-5f11c1443b47 +2022,Buenos Aires,II.5.1,29.221079999999997,TJ,N2O,3.9,kg/TJ,113.96221199999998,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,eabe5e2c-319e-387d-b480-5f11c1443b47 +2022,Entre Rios,II.5.1,38.14272,TJ,CO2,74100.0,kg/TJ,2826375.5519999997,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,bd9af4e7-cbf0-3fcb-976a-5ef6518612fa +2022,Entre Rios,II.5.1,38.14272,TJ,CH4,3.9,kg/TJ,148.75660799999997,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,86875c61-696b-36fd-80db-1117f6ed2ba4 +2022,Entre Rios,II.5.1,38.14272,TJ,N2O,3.9,kg/TJ,148.75660799999997,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,86875c61-696b-36fd-80db-1117f6ed2ba4 +2022,La Pampa,II.5.1,8.488199999999999,TJ,CO2,74100.0,kg/TJ,628975.6199999999,Gas Oil combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,a38019cc-9958-3679-9e72-81b844443b35 +2022,La Pampa,II.5.1,8.488199999999999,TJ,CH4,3.9,kg/TJ,33.10397999999999,Gas Oil combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,bd70a64c-91e9-390b-821d-a84a1c3c93b9 +2022,La Pampa,II.5.1,8.488199999999999,TJ,N2O,3.9,kg/TJ,33.10397999999999,Gas Oil combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,bd70a64c-91e9-390b-821d-a84a1c3c93b9 +2022,Santa Fe,II.5.1,2.85348,TJ,CO2,74100.0,kg/TJ,211442.868,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,d1b906fc-705a-30f5-9b48-65141034d39a +2022,Santa Fe,II.5.1,2.85348,TJ,CH4,3.9,kg/TJ,11.128571999999998,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,d2ca74ac-26b2-3c71-a4d7-4ae4a0886623 +2022,Santa Fe,II.5.1,2.85348,TJ,N2O,3.9,kg/TJ,11.128571999999998,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,d2ca74ac-26b2-3c71-a4d7-4ae4a0886623 +2022,Tucuman,II.5.1,0.93912,TJ,CO2,74100.0,kg/TJ,69588.792,Gas Oil combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,5c98ed37-7849-3abe-bef3-e1a8f02504ff +2022,Tucuman,II.5.1,0.93912,TJ,CH4,3.9,kg/TJ,3.662568,Gas Oil combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,00d6a62e-c0a3-35de-993f-e8d3c929c459 +2022,Tucuman,II.5.1,0.93912,TJ,N2O,3.9,kg/TJ,3.662568,Gas Oil combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,00d6a62e-c0a3-35de-993f-e8d3c929c459 +2022,Santa Fe,II.5.1,3.255175,TJ,CO2,73300.0,kg/TJ,238604.32749999998,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,a78f4353-0ef1-365d-81a2-bd1401fbdea3 +2022,Santa Fe,II.5.1,3.255175,TJ,CH4,0.5,kg/TJ,1.6275875,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,b5dc45e4-c475-3d4a-965f-d7a9fef8cbd0 +2022,Santa Fe,II.5.1,3.255175,TJ,N2O,2.0,kg/TJ,6.51035,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,96c94823-56e7-3858-84bf-7f5a811d609f +2022,Santa Fe,II.5.1,1.473395,TJ,CO2,73300.0,kg/TJ,107999.8535,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,c6b50949-69b0-3684-80e0-bb876707dca5 +2022,Santa Fe,II.5.1,1.473395,TJ,CH4,0.5,kg/TJ,0.7366975,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,9e4ed563-3d58-3a4f-ac1a-c68906caae02 +2022,Santa Fe,II.5.1,1.473395,TJ,N2O,2.0,kg/TJ,2.94679,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,373a3c81-4fba-38c8-8183-40502d764b23 +2022,Tucuman,II.5.1,0.41118,TJ,CO2,73300.0,kg/TJ,30139.494,Naphtha combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,af14fe5c-f71b-3dcf-abdb-35f6641413f2 +2022,Tucuman,II.5.1,0.41118,TJ,CH4,0.5,kg/TJ,0.20559,Naphtha combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,c98bbcc6-509e-3eba-a4ce-97faec94641c +2022,Tucuman,II.5.1,0.41118,TJ,N2O,2.0,kg/TJ,0.82236,Naphtha combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,fea85925-54e1-3352-9cc0-e1c01325023a +2022,Buenos Aires,II.2.1,229.57871999999998,TJ,CO2,74100.0,kg/TJ,17011783.152,Gas Oil combustion consumption by railway transport,AR-B,SESCO,annual,kg,85778cf4-2058-3b70-a064-4ec21400eec7 +2022,Buenos Aires,II.2.1,229.57871999999998,TJ,CH4,3.9,kg/TJ,895.3570079999998,Gas Oil combustion consumption by railway transport,AR-B,SESCO,annual,kg,695bce87-93a6-3e94-88b9-f61020fbc2a3 +2022,Buenos Aires,II.2.1,229.57871999999998,TJ,N2O,3.9,kg/TJ,895.3570079999998,Gas Oil combustion consumption by railway transport,AR-B,SESCO,annual,kg,695bce87-93a6-3e94-88b9-f61020fbc2a3 +2022,Buenos Aires,II.1.1,6.9994,TJ,CO2,69300.0,kg/TJ,485058.42,Motor Gasoline combustion consumption by freight transport,AR-B,SESCO,annual,kg,4cabd140-8769-3857-ab01-bed3cb7a7a73 +2022,Buenos Aires,II.1.1,6.9994,TJ,CH4,33.0,kg/TJ,230.9802,Motor Gasoline combustion consumption by freight transport,AR-B,SESCO,annual,kg,4e907c92-c700-3a28-8cc9-66d06467f193 +2022,Buenos Aires,II.1.1,6.9994,TJ,N2O,3.2,kg/TJ,22.39808,Motor Gasoline combustion consumption by freight transport,AR-B,SESCO,annual,kg,6f4102f9-9ad6-3303-8b82-c59276b99e26 +2022,Santa Fe,II.1.1,3.4554,TJ,CO2,69300.0,kg/TJ,239459.22,Motor Gasoline combustion consumption by freight transport,AR-S,SESCO,annual,kg,96cee1ed-8f88-3b5f-88c3-c0238a95bda9 +2022,Santa Fe,II.1.1,3.4554,TJ,CH4,33.0,kg/TJ,114.0282,Motor Gasoline combustion consumption by freight transport,AR-S,SESCO,annual,kg,b5c10ae2-7963-34a3-9506-3f3b00d1a49e +2022,Santa Fe,II.1.1,3.4554,TJ,N2O,3.2,kg/TJ,11.05728,Motor Gasoline combustion consumption by freight transport,AR-S,SESCO,annual,kg,9a564f90-bc5c-3273-ba47-c1c5808b7571 +2022,Buenos Aires,II.1.1,7.29624,TJ,CO2,74100.0,kg/TJ,540651.384,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,143ee41e-5cd2-34f3-a3d8-2285d393125a +2022,Buenos Aires,II.1.1,7.29624,TJ,CH4,3.9,kg/TJ,28.455336,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,885dd945-f531-3aad-ad7d-9fa59c5f5248 +2022,Buenos Aires,II.1.1,7.29624,TJ,N2O,3.9,kg/TJ,28.455336,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,885dd945-f531-3aad-ad7d-9fa59c5f5248 +2022,Santa Fe,II.1.1,12.20856,TJ,CO2,74100.0,kg/TJ,904654.296,Gas Oil combustion consumption by freight transport,AR-S,SESCO,annual,kg,06a3a964-7197-348b-a239-6acc25a2e8cf +2022,Santa Fe,II.1.1,12.20856,TJ,CH4,3.9,kg/TJ,47.613384,Gas Oil combustion consumption by freight transport,AR-S,SESCO,annual,kg,b45625fb-93f0-3f4b-bf81-92eec59df1ca +2022,Santa Fe,II.1.1,12.20856,TJ,N2O,3.9,kg/TJ,47.613384,Gas Oil combustion consumption by freight transport,AR-S,SESCO,annual,kg,b45625fb-93f0-3f4b-bf81-92eec59df1ca +2022,Buenos Aires,II.1.1,17.48208,TJ,CO2,74100.0,kg/TJ,1295422.128,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,d8aa4d37-6b83-3d56-9f04-cefce3fd0a55 +2022,Buenos Aires,II.1.1,17.48208,TJ,CH4,3.9,kg/TJ,68.180112,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,0b702992-01ac-345e-8936-4d8fda16a702 +2022,Buenos Aires,II.1.1,17.48208,TJ,N2O,3.9,kg/TJ,68.180112,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,0b702992-01ac-345e-8936-4d8fda16a702 +2022,Santa Fe,II.1.1,11.016599999999999,TJ,CO2,74100.0,kg/TJ,816330.0599999999,Gas Oil combustion consumption by freight transport,AR-S,SESCO,annual,kg,fb56588e-78b3-3432-8a1e-26207f4f27a2 +2022,Santa Fe,II.1.1,11.016599999999999,TJ,CH4,3.9,kg/TJ,42.96473999999999,Gas Oil combustion consumption by freight transport,AR-S,SESCO,annual,kg,89e7cc2f-4ed1-35f8-8df8-f17b4232e8fe +2022,Santa Fe,II.1.1,11.016599999999999,TJ,N2O,3.9,kg/TJ,42.96473999999999,Gas Oil combustion consumption by freight transport,AR-S,SESCO,annual,kg,89e7cc2f-4ed1-35f8-8df8-f17b4232e8fe +2022,Salta,II.1.1,1.1518,TJ,CO2,69300.0,kg/TJ,79819.73999999999,Motor Gasoline combustion consumption by public passenger transport,AR-A,SESCO,annual,kg,4f2b9ae5-9f98-34ab-80c1-15b8489af00e +2022,Salta,II.1.1,1.1518,TJ,CH4,33.0,kg/TJ,38.0094,Motor Gasoline combustion consumption by public passenger transport,AR-A,SESCO,annual,kg,3b83d5ec-e13f-30e4-9a76-03401707c40c +2022,Salta,II.1.1,1.1518,TJ,N2O,3.2,kg/TJ,3.68576,Motor Gasoline combustion consumption by public passenger transport,AR-A,SESCO,annual,kg,35d9badf-6ec7-3da1-889a-e99d6e4da266 +2022,Buenos Aires,II.1.1,2741.61636,TJ,CO2,74100.0,kg/TJ,203153772.276,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,c8a04da5-dcbf-3cad-b702-c92265e84277 +2022,Buenos Aires,II.1.1,2741.61636,TJ,CH4,3.9,kg/TJ,10692.303804,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,5d03632b-865d-3f42-8bb7-7c805d025aae +2022,Buenos Aires,II.1.1,2741.61636,TJ,N2O,3.9,kg/TJ,10692.303804,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,5d03632b-865d-3f42-8bb7-7c805d025aae +2022,Capital Federal,II.1.1,137.256,TJ,CO2,74100.0,kg/TJ,10170669.6,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,497023be-276e-3df3-8571-a85bba57f539 +2022,Capital Federal,II.1.1,137.256,TJ,CH4,3.9,kg/TJ,535.2984,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,3e9ccf6c-3faf-3bff-ac53-023f00ac7d37 +2022,Capital Federal,II.1.1,137.256,TJ,N2O,3.9,kg/TJ,535.2984,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,3e9ccf6c-3faf-3bff-ac53-023f00ac7d37 +2022,Corrientes,II.1.1,0.18059999999999998,TJ,CO2,74100.0,kg/TJ,13382.46,Gas Oil combustion consumption by public passenger transport,AR-W,SESCO,annual,kg,e7af1dcf-ed91-3a77-a017-6ab8af74a426 +2022,Corrientes,II.1.1,0.18059999999999998,TJ,CH4,3.9,kg/TJ,0.70434,Gas Oil combustion consumption by public passenger transport,AR-W,SESCO,annual,kg,fc930f5e-3d0d-32fd-9b2b-4e1794e28e4b +2022,Corrientes,II.1.1,0.18059999999999998,TJ,N2O,3.9,kg/TJ,0.70434,Gas Oil combustion consumption by public passenger transport,AR-W,SESCO,annual,kg,fc930f5e-3d0d-32fd-9b2b-4e1794e28e4b +2022,Córdoba,II.1.1,3.1063199999999997,TJ,CO2,74100.0,kg/TJ,230178.31199999998,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,7f08e0fb-acf2-307b-9b9f-fe9e2698836e +2022,Córdoba,II.1.1,3.1063199999999997,TJ,CH4,3.9,kg/TJ,12.114647999999999,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,211a47ed-a32f-3942-831b-099ee1817cec +2022,Córdoba,II.1.1,3.1063199999999997,TJ,N2O,3.9,kg/TJ,12.114647999999999,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,211a47ed-a32f-3942-831b-099ee1817cec +2022,Buenos Aires,II.1.1,1707.28404,TJ,CO2,74100.0,kg/TJ,126509747.36400001,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,7ef8c942-e984-3e57-8481-a0b992f0d7c2 +2022,Buenos Aires,II.1.1,1707.28404,TJ,CH4,3.9,kg/TJ,6658.407756,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,b8699d52-50de-3c74-9079-a7363f1dabf4 +2022,Buenos Aires,II.1.1,1707.28404,TJ,N2O,3.9,kg/TJ,6658.407756,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,b8699d52-50de-3c74-9079-a7363f1dabf4 +2022,Capital Federal,II.1.1,68.88083999999999,TJ,CO2,74100.0,kg/TJ,5104070.243999999,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,64726197-1aab-317e-a854-1d7985029fea +2022,Capital Federal,II.1.1,68.88083999999999,TJ,CH4,3.9,kg/TJ,268.635276,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,956514f1-cdaa-3157-b8b8-087e8b6f93f4 +2022,Capital Federal,II.1.1,68.88083999999999,TJ,N2O,3.9,kg/TJ,268.635276,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,956514f1-cdaa-3157-b8b8-087e8b6f93f4 +2022,Corrientes,II.1.1,67.07484,TJ,CO2,74100.0,kg/TJ,4970245.643999999,Gas Oil combustion consumption by public passenger transport,AR-W,SESCO,annual,kg,a74aedfc-c437-3a9f-91cb-d6884b567b0c +2022,Corrientes,II.1.1,67.07484,TJ,CH4,3.9,kg/TJ,261.59187599999996,Gas Oil combustion consumption by public passenger transport,AR-W,SESCO,annual,kg,66c86eed-8407-3ba1-b32f-0e0dfeb8a7bb +2022,Corrientes,II.1.1,67.07484,TJ,N2O,3.9,kg/TJ,261.59187599999996,Gas Oil combustion consumption by public passenger transport,AR-W,SESCO,annual,kg,66c86eed-8407-3ba1-b32f-0e0dfeb8a7bb +2022,Córdoba,II.1.1,8.88552,TJ,CO2,74100.0,kg/TJ,658417.032,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,e6db708c-667a-311f-98fc-40628de0b97a +2022,Córdoba,II.1.1,8.88552,TJ,CH4,3.9,kg/TJ,34.653527999999994,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,072defc3-8ec4-3594-8d34-c0d9a1746e76 +2022,Córdoba,II.1.1,8.88552,TJ,N2O,3.9,kg/TJ,34.653527999999994,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,072defc3-8ec4-3594-8d34-c0d9a1746e76 +2022,Buenos Aires,II.5.1,3515.29704372,TJ,CO2,74100.0,kg/TJ,260483510.93965203,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,0c31dd2a-9131-3138-8dfd-d12c51d5be3c +2022,Buenos Aires,II.5.1,3515.29704372,TJ,CH4,3.9,kg/TJ,13709.658470508,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,9c2e40fd-a3c2-3455-ae3a-b0ece5095aa5 +2022,Buenos Aires,II.5.1,3515.29704372,TJ,N2O,3.9,kg/TJ,13709.658470508,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,9c2e40fd-a3c2-3455-ae3a-b0ece5095aa5 +2022,Capital Federal,II.5.1,150.57499715999998,TJ,CO2,74100.0,kg/TJ,11157607.289555999,Gas Oil combustion consumption by agriculture machines,AR-C,SESCO,annual,kg,90a3ffc0-dc0d-380f-b249-15bdac07e4a9 +2022,Capital Federal,II.5.1,150.57499715999998,TJ,CH4,3.9,kg/TJ,587.2424889239999,Gas Oil combustion consumption by agriculture machines,AR-C,SESCO,annual,kg,ea15cc69-aade-3223-bccc-0bb86f6e0e20 +2022,Capital Federal,II.5.1,150.57499715999998,TJ,N2O,3.9,kg/TJ,587.2424889239999,Gas Oil combustion consumption by agriculture machines,AR-C,SESCO,annual,kg,ea15cc69-aade-3223-bccc-0bb86f6e0e20 +2022,Córdoba,II.5.1,1656.6747548399997,TJ,CO2,74100.0,kg/TJ,122759599.33364397,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,59116f89-9d7e-3533-836d-b3adf0552961 +2022,Córdoba,II.5.1,1656.6747548399997,TJ,CH4,3.9,kg/TJ,6461.031543875998,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,41e61d51-f614-34c9-be5e-6173691b4eeb +2022,Córdoba,II.5.1,1656.6747548399997,TJ,N2O,3.9,kg/TJ,6461.031543875998,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,41e61d51-f614-34c9-be5e-6173691b4eeb +2022,Entre Rios,II.5.1,712.8776482799999,TJ,CO2,74100.0,kg/TJ,52824233.73754799,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,dfed4618-f741-377f-9c9a-42122019fa94 +2022,Entre Rios,II.5.1,712.8776482799999,TJ,CH4,3.9,kg/TJ,2780.2228282919996,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,30394c77-ca93-32e9-8a13-5e69eeffaccc +2022,Entre Rios,II.5.1,712.8776482799999,TJ,N2O,3.9,kg/TJ,2780.2228282919996,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,30394c77-ca93-32e9-8a13-5e69eeffaccc +2022,Jujuy,II.5.1,18.49929144,TJ,CO2,74100.0,kg/TJ,1370797.4957040001,Gas Oil combustion consumption by agriculture machines,AR-Y,SESCO,annual,kg,4d6648ef-be79-3cea-bc57-5565d8cea87d +2022,Jujuy,II.5.1,18.49929144,TJ,CH4,3.9,kg/TJ,72.147236616,Gas Oil combustion consumption by agriculture machines,AR-Y,SESCO,annual,kg,e5d06214-1ed5-3349-9c0d-f25016c89e2e +2022,Jujuy,II.5.1,18.49929144,TJ,N2O,3.9,kg/TJ,72.147236616,Gas Oil combustion consumption by agriculture machines,AR-Y,SESCO,annual,kg,e5d06214-1ed5-3349-9c0d-f25016c89e2e +2022,La Pampa,II.5.1,283.02248604,TJ,CO2,74100.0,kg/TJ,20971966.215563998,Gas Oil combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,b077361e-102a-30e5-b43b-6f81c7ca05cd +2022,La Pampa,II.5.1,283.02248604,TJ,CH4,3.9,kg/TJ,1103.787695556,Gas Oil combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,d6d80e3b-53f5-3744-ac83-9a04e2ff3684 +2022,La Pampa,II.5.1,283.02248604,TJ,N2O,3.9,kg/TJ,1103.787695556,Gas Oil combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,d6d80e3b-53f5-3744-ac83-9a04e2ff3684 +2022,Rio Negro,II.5.1,152.0198694,TJ,CO2,74100.0,kg/TJ,11264672.32254,Gas Oil combustion consumption by agriculture machines,AR-R,SESCO,annual,kg,fa954042-f72d-3c0e-8927-cd55b1b529be +2022,Rio Negro,II.5.1,152.0198694,TJ,CH4,3.9,kg/TJ,592.87749066,Gas Oil combustion consumption by agriculture machines,AR-R,SESCO,annual,kg,acb11504-f2d2-36f6-b00d-07f6eaf2568a +2022,Rio Negro,II.5.1,152.0198694,TJ,N2O,3.9,kg/TJ,592.87749066,Gas Oil combustion consumption by agriculture machines,AR-R,SESCO,annual,kg,acb11504-f2d2-36f6-b00d-07f6eaf2568a +2022,San Luis,II.5.1,45.827286120000004,TJ,CO2,74100.0,kg/TJ,3395801.901492,Gas Oil combustion consumption by agriculture machines,AR-D,SESCO,annual,kg,0eb0b4f7-9803-33c4-bdb7-8fc62acd3e89 +2022,San Luis,II.5.1,45.827286120000004,TJ,CH4,3.9,kg/TJ,178.726415868,Gas Oil combustion consumption by agriculture machines,AR-D,SESCO,annual,kg,7c8dfdd6-81f8-37f3-a902-93aea2fc0e46 +2022,San Luis,II.5.1,45.827286120000004,TJ,N2O,3.9,kg/TJ,178.726415868,Gas Oil combustion consumption by agriculture machines,AR-D,SESCO,annual,kg,7c8dfdd6-81f8-37f3-a902-93aea2fc0e46 +2022,Santa Fe,II.5.1,4227.63679296,TJ,CO2,74100.0,kg/TJ,313267886.35833603,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,4b333776-03bd-3cec-ab49-6988cb8f7885 +2022,Santa Fe,II.5.1,4227.63679296,TJ,CH4,3.9,kg/TJ,16487.783492544,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,2a3cce4c-6a07-38a4-aa08-d5b1bfc95a36 +2022,Santa Fe,II.5.1,4227.63679296,TJ,N2O,3.9,kg/TJ,16487.783492544,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,2a3cce4c-6a07-38a4-aa08-d5b1bfc95a36 +2022,Santiago del Estero,II.5.1,103.35380411999998,TJ,CO2,74100.0,kg/TJ,7658516.885291998,Gas Oil combustion consumption by agriculture machines,AR-G,SESCO,annual,kg,145e172f-2352-34a9-800f-da4196166c8b +2022,Santiago del Estero,II.5.1,103.35380411999998,TJ,CH4,3.9,kg/TJ,403.0798360679999,Gas Oil combustion consumption by agriculture machines,AR-G,SESCO,annual,kg,00d5545c-78d6-3af8-94ef-2786bc636e16 +2022,Santiago del Estero,II.5.1,103.35380411999998,TJ,N2O,3.9,kg/TJ,403.0798360679999,Gas Oil combustion consumption by agriculture machines,AR-G,SESCO,annual,kg,00d5545c-78d6-3af8-94ef-2786bc636e16 +2022,Tucuman,II.5.1,70.99562988,TJ,CO2,74100.0,kg/TJ,5260776.174108,Gas Oil combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,9187e23c-1d1e-3679-8eaf-4e08299a04d5 +2022,Tucuman,II.5.1,70.99562988,TJ,CH4,3.9,kg/TJ,276.882956532,Gas Oil combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,6790c906-ffcc-3259-9482-91278d84f0b6 +2022,Tucuman,II.5.1,70.99562988,TJ,N2O,3.9,kg/TJ,276.882956532,Gas Oil combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,6790c906-ffcc-3259-9482-91278d84f0b6 +2022,Buenos Aires,II.5.1,226.59957851999997,TJ,CO2,74100.0,kg/TJ,16791028.768331997,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,1e34dc36-6cf3-3482-b197-45c01fe705f0 +2022,Buenos Aires,II.5.1,226.59957851999997,TJ,CH4,3.9,kg/TJ,883.7383562279998,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,9a07e579-81d3-37d8-8a45-58f846c6209b +2022,Buenos Aires,II.5.1,226.59957851999997,TJ,N2O,3.9,kg/TJ,883.7383562279998,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,9a07e579-81d3-37d8-8a45-58f846c6209b +2022,Capital Federal,II.5.1,23.217105240000002,TJ,CO2,74100.0,kg/TJ,1720387.4982840002,Gas Oil combustion consumption by agriculture machines,AR-C,SESCO,annual,kg,cd111a23-c818-3240-967e-69ea03bba6bc +2022,Capital Federal,II.5.1,23.217105240000002,TJ,CH4,3.9,kg/TJ,90.54671043600001,Gas Oil combustion consumption by agriculture machines,AR-C,SESCO,annual,kg,cb52785f-edbf-3da9-b2d2-6f2ff6cd1ae2 +2022,Capital Federal,II.5.1,23.217105240000002,TJ,N2O,3.9,kg/TJ,90.54671043600001,Gas Oil combustion consumption by agriculture machines,AR-C,SESCO,annual,kg,cb52785f-edbf-3da9-b2d2-6f2ff6cd1ae2 +2022,Córdoba,II.5.1,70.93798235999999,TJ,CO2,74100.0,kg/TJ,5256504.492876,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,3412f8e8-3e87-30b8-ae62-414815f80cc1 +2022,Córdoba,II.5.1,70.93798235999999,TJ,CH4,3.9,kg/TJ,276.658131204,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,39c6dd2a-b198-3620-b361-432f57069893 +2022,Córdoba,II.5.1,70.93798235999999,TJ,N2O,3.9,kg/TJ,276.658131204,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,39c6dd2a-b198-3620-b361-432f57069893 +2022,Entre Rios,II.5.1,98.59604159999999,TJ,CO2,74100.0,kg/TJ,7305966.68256,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,07eb849f-cf1c-3dc5-a7cf-894ff99c6767 +2022,Entre Rios,II.5.1,98.59604159999999,TJ,CH4,3.9,kg/TJ,384.52456223999997,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,35f13758-964f-3bb1-ae91-868b9d8b7fce +2022,Entre Rios,II.5.1,98.59604159999999,TJ,N2O,3.9,kg/TJ,384.52456223999997,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,35f13758-964f-3bb1-ae91-868b9d8b7fce +2022,Jujuy,II.5.1,47.690138999999995,TJ,CO2,74100.0,kg/TJ,3533839.2998999995,Gas Oil combustion consumption by agriculture machines,AR-Y,SESCO,annual,kg,9f38efdc-ac74-3ab7-b9a7-672dfad67054 +2022,Jujuy,II.5.1,47.690138999999995,TJ,CH4,3.9,kg/TJ,185.99154209999998,Gas Oil combustion consumption by agriculture machines,AR-Y,SESCO,annual,kg,0956fcf4-165a-32cf-b368-9926023cf841 +2022,Jujuy,II.5.1,47.690138999999995,TJ,N2O,3.9,kg/TJ,185.99154209999998,Gas Oil combustion consumption by agriculture machines,AR-Y,SESCO,annual,kg,0956fcf4-165a-32cf-b368-9926023cf841 +2022,La Pampa,II.5.1,41.934633719999994,TJ,CO2,74100.0,kg/TJ,3107356.3586519994,Gas Oil combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,16e91598-6a8d-3c40-aa70-a088427f2182 +2022,La Pampa,II.5.1,41.934633719999994,TJ,CH4,3.9,kg/TJ,163.54507150799998,Gas Oil combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,1f61bcc4-672a-3750-bc66-32713287d53b +2022,La Pampa,II.5.1,41.934633719999994,TJ,N2O,3.9,kg/TJ,163.54507150799998,Gas Oil combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,1f61bcc4-672a-3750-bc66-32713287d53b +2022,Rio Negro,II.5.1,168.5917254,TJ,CO2,74100.0,kg/TJ,12492646.85214,Gas Oil combustion consumption by agriculture machines,AR-R,SESCO,annual,kg,370ff26a-67c3-3c0b-9f24-2980876dd698 +2022,Rio Negro,II.5.1,168.5917254,TJ,CH4,3.9,kg/TJ,657.50772906,Gas Oil combustion consumption by agriculture machines,AR-R,SESCO,annual,kg,65ca6225-476d-35b3-a0c5-a2809bbd5a95 +2022,Rio Negro,II.5.1,168.5917254,TJ,N2O,3.9,kg/TJ,657.50772906,Gas Oil combustion consumption by agriculture machines,AR-R,SESCO,annual,kg,65ca6225-476d-35b3-a0c5-a2809bbd5a95 +2022,San Luis,II.5.1,5.70016944,TJ,CO2,74100.0,kg/TJ,422382.555504,Gas Oil combustion consumption by agriculture machines,AR-D,SESCO,annual,kg,593f648d-6042-33d2-92db-4ca92ed2fd35 +2022,San Luis,II.5.1,5.70016944,TJ,CH4,3.9,kg/TJ,22.230660816,Gas Oil combustion consumption by agriculture machines,AR-D,SESCO,annual,kg,1afd16f3-c509-3af3-9880-8b3b97530b37 +2022,San Luis,II.5.1,5.70016944,TJ,N2O,3.9,kg/TJ,22.230660816,Gas Oil combustion consumption by agriculture machines,AR-D,SESCO,annual,kg,1afd16f3-c509-3af3-9880-8b3b97530b37 +2022,Santa Fe,II.5.1,335.99037108000005,TJ,CO2,74100.0,kg/TJ,24896886.497028004,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,a5346382-1f26-3fcb-84f7-7a501fa6bfbf +2022,Santa Fe,II.5.1,335.99037108000005,TJ,CH4,3.9,kg/TJ,1310.3624472120002,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,adb48355-734d-3c54-b9a3-759104f98605 +2022,Santa Fe,II.5.1,335.99037108000005,TJ,N2O,3.9,kg/TJ,1310.3624472120002,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,adb48355-734d-3c54-b9a3-759104f98605 +2022,Santiago del Estero,II.5.1,13.274280599999999,TJ,CO2,74100.0,kg/TJ,983624.1924599999,Gas Oil combustion consumption by agriculture machines,AR-G,SESCO,annual,kg,e4a2ed31-c862-366c-ba4d-18abb5eed70b +2022,Santiago del Estero,II.5.1,13.274280599999999,TJ,CH4,3.9,kg/TJ,51.769694339999994,Gas Oil combustion consumption by agriculture machines,AR-G,SESCO,annual,kg,269892fb-986f-3401-b3a0-bf932c6adde5 +2022,Santiago del Estero,II.5.1,13.274280599999999,TJ,N2O,3.9,kg/TJ,51.769694339999994,Gas Oil combustion consumption by agriculture machines,AR-G,SESCO,annual,kg,269892fb-986f-3401-b3a0-bf932c6adde5 +2022,Tucuman,II.5.1,3.9856613999999997,TJ,CO2,74100.0,kg/TJ,295337.50973999995,Gas Oil combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,3ee31f81-0a77-3f78-80d1-ad024cce2566 +2022,Tucuman,II.5.1,3.9856613999999997,TJ,CH4,3.9,kg/TJ,15.544079459999999,Gas Oil combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,92e18cbe-a5bd-3a8f-9b5e-25114ba3d2c2 +2022,Tucuman,II.5.1,3.9856613999999997,TJ,N2O,3.9,kg/TJ,15.544079459999999,Gas Oil combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,92e18cbe-a5bd-3a8f-9b5e-25114ba3d2c2 +2022,Buenos Aires,II.5.1,26.19888194,TJ,CO2,73300.0,kg/TJ,1920378.046202,Naphtha combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,e49fe422-3500-30c6-bab7-ac8d22ea769b +2022,Buenos Aires,II.5.1,26.19888194,TJ,CH4,0.5,kg/TJ,13.09944097,Naphtha combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,d5760659-60f8-3dfa-91e6-57a6908b8244 +2022,Buenos Aires,II.5.1,26.19888194,TJ,N2O,2.0,kg/TJ,52.39776388,Naphtha combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,c467e7a5-bce5-3989-a604-62757c700f55 +2022,Capital Federal,II.5.1,6.50863675,TJ,CO2,73300.0,kg/TJ,477083.073775,Naphtha combustion consumption by agriculture machines,AR-C,SESCO,annual,kg,733d3d7c-60b9-3d0c-a001-28259b90c8db +2022,Capital Federal,II.5.1,6.50863675,TJ,CH4,0.5,kg/TJ,3.254318375,Naphtha combustion consumption by agriculture machines,AR-C,SESCO,annual,kg,492837b2-2c5c-38bd-9c8e-3b307cfca6de +2022,Capital Federal,II.5.1,6.50863675,TJ,N2O,2.0,kg/TJ,13.0172735,Naphtha combustion consumption by agriculture machines,AR-C,SESCO,annual,kg,83689271-a32e-3ba1-85e4-b7cb547042c9 +2022,Córdoba,II.5.1,16.02752228,TJ,CO2,73300.0,kg/TJ,1174817.383124,Naphtha combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,5fcdbba2-556c-3655-95cd-9c11a5401f52 +2022,Córdoba,II.5.1,16.02752228,TJ,CH4,0.5,kg/TJ,8.01376114,Naphtha combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,c6a2faa9-d2a9-3305-90f8-28e428652063 +2022,Córdoba,II.5.1,16.02752228,TJ,N2O,2.0,kg/TJ,32.05504456,Naphtha combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,52811993-b825-3789-b37c-1618106cfe53 +2022,Santa Fe,II.5.1,103.55458651999999,TJ,CO2,73300.0,kg/TJ,7590551.191915999,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,8e80927a-1394-3a92-88dd-8a731cfbb6bb +2022,Santa Fe,II.5.1,103.55458651999999,TJ,CH4,0.5,kg/TJ,51.77729325999999,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,54b9b2eb-dfd3-3ef2-866d-5b632fe8b326 +2022,Santa Fe,II.5.1,103.55458651999999,TJ,N2O,2.0,kg/TJ,207.10917303999997,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,f78fab18-56ed-3ec7-b35e-79a5f76c7239 +2022,Buenos Aires,II.5.1,9.253366045,TJ,CO2,73300.0,kg/TJ,678271.7310985,Naphtha combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,212c93f3-96c2-3a5a-88aa-cc0914d3a902 +2022,Buenos Aires,II.5.1,9.253366045,TJ,CH4,0.5,kg/TJ,4.6266830225,Naphtha combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,2cedb603-4935-3b86-b80d-9e2e59c00a00 +2022,Buenos Aires,II.5.1,9.253366045,TJ,N2O,2.0,kg/TJ,18.50673209,Naphtha combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,3885288f-235a-3f31-84ed-2edb816e9952 +2022,Capital Federal,II.5.1,1.569337,TJ,CO2,73300.0,kg/TJ,115032.40209999999,Naphtha combustion consumption by agriculture machines,AR-C,SESCO,annual,kg,fb953863-872c-3706-bd62-aad3d24254b2 +2022,Capital Federal,II.5.1,1.569337,TJ,CH4,0.5,kg/TJ,0.7846685,Naphtha combustion consumption by agriculture machines,AR-C,SESCO,annual,kg,2fb4d6f6-416e-3e6f-9f84-112a893d4eab +2022,Capital Federal,II.5.1,1.569337,TJ,N2O,2.0,kg/TJ,3.138674,Naphtha combustion consumption by agriculture machines,AR-C,SESCO,annual,kg,d1e0e8ff-71c8-3e5b-bf9b-8df984c58f51 +2022,Córdoba,II.5.1,3.09926925,TJ,CO2,73300.0,kg/TJ,227176.436025,Naphtha combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,6a747845-6cbf-332b-88c3-0d257089a9d4 +2022,Córdoba,II.5.1,3.09926925,TJ,CH4,0.5,kg/TJ,1.549634625,Naphtha combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,6e14b21e-b06d-30cb-bd5e-81b462c97f82 +2022,Córdoba,II.5.1,3.09926925,TJ,N2O,2.0,kg/TJ,6.1985385,Naphtha combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,c1ac5cf3-a7ad-3944-be20-ea0bfb2f60a8 +2022,Santa Fe,II.5.1,14.216411439999998,TJ,CO2,73300.0,kg/TJ,1042062.9585519999,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,bfa8b15d-3f05-361e-b7b2-4893ba35c2c3 +2022,Santa Fe,II.5.1,14.216411439999998,TJ,CH4,0.5,kg/TJ,7.108205719999999,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,e579f575-0fd6-3f1e-9943-8a733a32c081 +2022,Santa Fe,II.5.1,14.216411439999998,TJ,N2O,2.0,kg/TJ,28.432822879999996,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,903012ad-468b-36f7-a094-5a28c1779084 +2022,Buenos Aires,II.5.1,9559.55532,TJ,CO2,74100.0,kg/TJ,708363049.212,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,993e9e73-a91c-3c8c-97cc-ccfaae53ed0d +2022,Buenos Aires,II.5.1,9559.55532,TJ,CH4,3.9,kg/TJ,37282.265748,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,2a99b7cc-8ebe-3e04-a208-bd2db5724e9c +2022,Buenos Aires,II.5.1,9559.55532,TJ,N2O,3.9,kg/TJ,37282.265748,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,2a99b7cc-8ebe-3e04-a208-bd2db5724e9c +2022,Capital Federal,II.5.1,69.3504,TJ,CO2,74100.0,kg/TJ,5138864.64,Gas Oil combustion consumption by agriculture machines,AR-C,SESCO,annual,kg,11bf5a50-7478-3a5e-896d-af1211a9ed11 +2022,Capital Federal,II.5.1,69.3504,TJ,CH4,3.9,kg/TJ,270.46655999999996,Gas Oil combustion consumption by agriculture machines,AR-C,SESCO,annual,kg,b3f5066a-7275-3fe9-867d-64a2a74bfbfa +2022,Capital Federal,II.5.1,69.3504,TJ,N2O,3.9,kg/TJ,270.46655999999996,Gas Oil combustion consumption by agriculture machines,AR-C,SESCO,annual,kg,b3f5066a-7275-3fe9-867d-64a2a74bfbfa +2022,Catamarca,II.5.1,190.60523999999998,TJ,CO2,74100.0,kg/TJ,14123848.283999998,Gas Oil combustion consumption by agriculture machines,AR-K,SESCO,annual,kg,a1e5d5c3-57b7-394f-af14-91fd9fc91072 +2022,Catamarca,II.5.1,190.60523999999998,TJ,CH4,3.9,kg/TJ,743.3604359999999,Gas Oil combustion consumption by agriculture machines,AR-K,SESCO,annual,kg,28052dbd-0542-35f6-be7c-9e594875df7c +2022,Catamarca,II.5.1,190.60523999999998,TJ,N2O,3.9,kg/TJ,743.3604359999999,Gas Oil combustion consumption by agriculture machines,AR-K,SESCO,annual,kg,28052dbd-0542-35f6-be7c-9e594875df7c +2022,Chaco,II.5.1,965.55984,TJ,CO2,74100.0,kg/TJ,71547984.144,Gas Oil combustion consumption by agriculture machines,AR-H,SESCO,annual,kg,8bf3049f-744e-3d6b-a327-5b0db8cd6dc5 +2022,Chaco,II.5.1,965.55984,TJ,CH4,3.9,kg/TJ,3765.683376,Gas Oil combustion consumption by agriculture machines,AR-H,SESCO,annual,kg,cad7ce34-d5b4-3e41-a018-728cae021ba3 +2022,Chaco,II.5.1,965.55984,TJ,N2O,3.9,kg/TJ,3765.683376,Gas Oil combustion consumption by agriculture machines,AR-H,SESCO,annual,kg,cad7ce34-d5b4-3e41-a018-728cae021ba3 +2022,Corrientes,II.5.1,784.77924,TJ,CO2,74100.0,kg/TJ,58152141.684,Gas Oil combustion consumption by agriculture machines,AR-W,SESCO,annual,kg,66e3d13f-1aed-3600-82db-b673b7da81a4 +2022,Corrientes,II.5.1,784.77924,TJ,CH4,3.9,kg/TJ,3060.6390359999996,Gas Oil combustion consumption by agriculture machines,AR-W,SESCO,annual,kg,534b0e05-80cd-35d2-b00c-72d6ccdf0ead +2022,Corrientes,II.5.1,784.77924,TJ,N2O,3.9,kg/TJ,3060.6390359999996,Gas Oil combustion consumption by agriculture machines,AR-W,SESCO,annual,kg,534b0e05-80cd-35d2-b00c-72d6ccdf0ead +2022,Córdoba,II.5.1,7741.780199999999,TJ,CO2,74100.0,kg/TJ,573665912.8199999,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,73585875-7955-33ab-b27a-129f759bb8fa +2022,Córdoba,II.5.1,7741.780199999999,TJ,CH4,3.9,kg/TJ,30192.942779999998,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,738ec52a-a5ed-3b2e-b35a-411d67231ac7 +2022,Córdoba,II.5.1,7741.780199999999,TJ,N2O,3.9,kg/TJ,30192.942779999998,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,738ec52a-a5ed-3b2e-b35a-411d67231ac7 +2022,Entre Rios,II.5.1,2110.7805599999997,TJ,CO2,74100.0,kg/TJ,156408839.496,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,e63d1134-d3dd-3967-94de-68485aa2d5e6 +2022,Entre Rios,II.5.1,2110.7805599999997,TJ,CH4,3.9,kg/TJ,8232.044183999998,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,53484be8-5eef-38d1-a861-d9f2e1131939 +2022,Entre Rios,II.5.1,2110.7805599999997,TJ,N2O,3.9,kg/TJ,8232.044183999998,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,53484be8-5eef-38d1-a861-d9f2e1131939 +2022,Formosa,II.5.1,320.52887999999996,TJ,CO2,74100.0,kg/TJ,23751190.007999998,Gas Oil combustion consumption by agriculture machines,AR-P,SESCO,annual,kg,fad92067-fbf2-3827-8b90-f5266d2af17d +2022,Formosa,II.5.1,320.52887999999996,TJ,CH4,3.9,kg/TJ,1250.062632,Gas Oil combustion consumption by agriculture machines,AR-P,SESCO,annual,kg,d5fb8aa1-b127-3b6b-8bbb-f120cd00332d +2022,Formosa,II.5.1,320.52887999999996,TJ,N2O,3.9,kg/TJ,1250.062632,Gas Oil combustion consumption by agriculture machines,AR-P,SESCO,annual,kg,d5fb8aa1-b127-3b6b-8bbb-f120cd00332d +2022,Jujuy,II.5.1,959.5639199999999,TJ,CO2,74100.0,kg/TJ,71103686.472,Gas Oil combustion consumption by agriculture machines,AR-Y,SESCO,annual,kg,fc8eb104-ea29-389e-ab70-cffcc0eee76b +2022,Jujuy,II.5.1,959.5639199999999,TJ,CH4,3.9,kg/TJ,3742.2992879999997,Gas Oil combustion consumption by agriculture machines,AR-Y,SESCO,annual,kg,bd787f78-aab8-303f-9e95-9de0c2f1f882 +2022,Jujuy,II.5.1,959.5639199999999,TJ,N2O,3.9,kg/TJ,3742.2992879999997,Gas Oil combustion consumption by agriculture machines,AR-Y,SESCO,annual,kg,bd787f78-aab8-303f-9e95-9de0c2f1f882 +2022,La Pampa,II.5.1,1567.13844,TJ,CO2,74100.0,kg/TJ,116124958.404,Gas Oil combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,06b5dc11-b266-3878-81ff-e487e2787642 +2022,La Pampa,II.5.1,1567.13844,TJ,CH4,3.9,kg/TJ,6111.839916,Gas Oil combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,6e39fc7f-fbc1-370b-b3de-4199da219092 +2022,La Pampa,II.5.1,1567.13844,TJ,N2O,3.9,kg/TJ,6111.839916,Gas Oil combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,6e39fc7f-fbc1-370b-b3de-4199da219092 +2022,La Rioja,II.5.1,126.34776,TJ,CO2,74100.0,kg/TJ,9362369.015999999,Gas Oil combustion consumption by agriculture machines,AR-F,SESCO,annual,kg,f65ea214-96e1-3140-8077-18941810af81 +2022,La Rioja,II.5.1,126.34776,TJ,CH4,3.9,kg/TJ,492.756264,Gas Oil combustion consumption by agriculture machines,AR-F,SESCO,annual,kg,950dc955-cff5-3e5e-be7c-562a71e1f77a +2022,La Rioja,II.5.1,126.34776,TJ,N2O,3.9,kg/TJ,492.756264,Gas Oil combustion consumption by agriculture machines,AR-F,SESCO,annual,kg,950dc955-cff5-3e5e-be7c-562a71e1f77a +2022,Mendoza,II.5.1,2384.1728399999997,TJ,CO2,74100.0,kg/TJ,176667207.44399998,Gas Oil combustion consumption by agriculture machines,AR-M,SESCO,annual,kg,02a5f759-a659-33a2-bb0d-804d6a1b26b1 +2022,Mendoza,II.5.1,2384.1728399999997,TJ,CH4,3.9,kg/TJ,9298.274075999998,Gas Oil combustion consumption by agriculture machines,AR-M,SESCO,annual,kg,b4f374ed-b59a-39f9-8957-c75df225455a +2022,Mendoza,II.5.1,2384.1728399999997,TJ,N2O,3.9,kg/TJ,9298.274075999998,Gas Oil combustion consumption by agriculture machines,AR-M,SESCO,annual,kg,b4f374ed-b59a-39f9-8957-c75df225455a +2022,Misiones,II.5.1,1143.81204,TJ,CO2,74100.0,kg/TJ,84756472.164,Gas Oil combustion consumption by agriculture machines,AR-N,SESCO,annual,kg,dbbd9b82-f59c-3a16-a275-9721da5ac6e5 +2022,Misiones,II.5.1,1143.81204,TJ,CH4,3.9,kg/TJ,4460.866956,Gas Oil combustion consumption by agriculture machines,AR-N,SESCO,annual,kg,45973dae-e1b1-3bcb-b010-2e816f35f6bf +2022,Misiones,II.5.1,1143.81204,TJ,N2O,3.9,kg/TJ,4460.866956,Gas Oil combustion consumption by agriculture machines,AR-N,SESCO,annual,kg,45973dae-e1b1-3bcb-b010-2e816f35f6bf +2022,Rio Negro,II.5.1,257.13828,TJ,CO2,74100.0,kg/TJ,19053946.548,Gas Oil combustion consumption by agriculture machines,AR-R,SESCO,annual,kg,c95b139a-cf13-34c2-a909-79d73d4ff3b2 +2022,Rio Negro,II.5.1,257.13828,TJ,CH4,3.9,kg/TJ,1002.839292,Gas Oil combustion consumption by agriculture machines,AR-R,SESCO,annual,kg,11b29e4b-b67b-3228-adca-ec1338bb9f78 +2022,Rio Negro,II.5.1,257.13828,TJ,N2O,3.9,kg/TJ,1002.839292,Gas Oil combustion consumption by agriculture machines,AR-R,SESCO,annual,kg,11b29e4b-b67b-3228-adca-ec1338bb9f78 +2022,Salta,II.5.1,1365.44436,TJ,CO2,74100.0,kg/TJ,101179427.07599999,Gas Oil combustion consumption by agriculture machines,AR-A,SESCO,annual,kg,e4b0c610-b1f6-3fe2-af12-def00cd38c2e +2022,Salta,II.5.1,1365.44436,TJ,CH4,3.9,kg/TJ,5325.233004,Gas Oil combustion consumption by agriculture machines,AR-A,SESCO,annual,kg,ef36d712-1bf3-39d5-89b6-95ba1b170328 +2022,Salta,II.5.1,1365.44436,TJ,N2O,3.9,kg/TJ,5325.233004,Gas Oil combustion consumption by agriculture machines,AR-A,SESCO,annual,kg,ef36d712-1bf3-39d5-89b6-95ba1b170328 +2022,San Juan,II.5.1,438.46067999999997,TJ,CO2,74100.0,kg/TJ,32489936.387999997,Gas Oil combustion consumption by agriculture machines,AR-J,SESCO,annual,kg,f0581eb3-bb66-35f5-acdf-711d93a543ba +2022,San Juan,II.5.1,438.46067999999997,TJ,CH4,3.9,kg/TJ,1709.9966519999998,Gas Oil combustion consumption by agriculture machines,AR-J,SESCO,annual,kg,e84d6d1e-09c6-33b0-95ee-fa6d71ba8261 +2022,San Juan,II.5.1,438.46067999999997,TJ,N2O,3.9,kg/TJ,1709.9966519999998,Gas Oil combustion consumption by agriculture machines,AR-J,SESCO,annual,kg,e84d6d1e-09c6-33b0-95ee-fa6d71ba8261 +2022,San Luis,II.5.1,287.47908,TJ,CO2,74100.0,kg/TJ,21302199.828,Gas Oil combustion consumption by agriculture machines,AR-D,SESCO,annual,kg,c8d61277-a1a7-382a-b112-e8ba8a12b3cc +2022,San Luis,II.5.1,287.47908,TJ,CH4,3.9,kg/TJ,1121.168412,Gas Oil combustion consumption by agriculture machines,AR-D,SESCO,annual,kg,c9e4ed80-7f33-388f-91e2-8e525f74ca76 +2022,San Luis,II.5.1,287.47908,TJ,N2O,3.9,kg/TJ,1121.168412,Gas Oil combustion consumption by agriculture machines,AR-D,SESCO,annual,kg,c9e4ed80-7f33-388f-91e2-8e525f74ca76 +2022,Santa Fe,II.5.1,6846.83496,TJ,CO2,74100.0,kg/TJ,507350470.536,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,f32b3e61-b53e-3542-a898-84d78e543d07 +2022,Santa Fe,II.5.1,6846.83496,TJ,CH4,3.9,kg/TJ,26702.656344,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,7a4e768f-32a9-37a8-80e1-e9709f9975bd +2022,Santa Fe,II.5.1,6846.83496,TJ,N2O,3.9,kg/TJ,26702.656344,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,7a4e768f-32a9-37a8-80e1-e9709f9975bd +2022,Santiago del Estero,II.5.1,1481.1006,TJ,CO2,74100.0,kg/TJ,109749554.46,Gas Oil combustion consumption by agriculture machines,AR-G,SESCO,annual,kg,20f0df4c-2d7a-346f-b755-650e301a0852 +2022,Santiago del Estero,II.5.1,1481.1006,TJ,CH4,3.9,kg/TJ,5776.29234,Gas Oil combustion consumption by agriculture machines,AR-G,SESCO,annual,kg,61ff1844-0e71-3874-8f0f-25ea8d91e06a +2022,Santiago del Estero,II.5.1,1481.1006,TJ,N2O,3.9,kg/TJ,5776.29234,Gas Oil combustion consumption by agriculture machines,AR-G,SESCO,annual,kg,61ff1844-0e71-3874-8f0f-25ea8d91e06a +2022,Tucuman,II.5.1,1101.8406,TJ,CO2,74100.0,kg/TJ,81646388.46,Gas Oil combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,81c7fdba-12fb-3cdb-87d5-ebb67d53eeb1 +2022,Tucuman,II.5.1,1101.8406,TJ,CH4,3.9,kg/TJ,4297.1783399999995,Gas Oil combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,55618f5a-d7c8-3f0c-9973-e94b5121889e +2022,Tucuman,II.5.1,1101.8406,TJ,N2O,3.9,kg/TJ,4297.1783399999995,Gas Oil combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,55618f5a-d7c8-3f0c-9973-e94b5121889e +2022,Buenos Aires,II.5.1,1051.995,TJ,CO2,74100.0,kg/TJ,77952829.49999999,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,e0ef2ea1-fe44-3657-aad2-9be1601881ff +2022,Buenos Aires,II.5.1,1051.995,TJ,CH4,3.9,kg/TJ,4102.7805,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,186db40d-1bb2-3471-a628-7605fe8a111c +2022,Buenos Aires,II.5.1,1051.995,TJ,N2O,3.9,kg/TJ,4102.7805,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,186db40d-1bb2-3471-a628-7605fe8a111c +2022,Capital Federal,II.5.1,10.6554,TJ,CO2,74100.0,kg/TJ,789565.14,Gas Oil combustion consumption by agriculture machines,AR-C,SESCO,annual,kg,2ef310b0-ee91-36ac-ae4e-f62899db45d0 +2022,Capital Federal,II.5.1,10.6554,TJ,CH4,3.9,kg/TJ,41.55606,Gas Oil combustion consumption by agriculture machines,AR-C,SESCO,annual,kg,5cd5f4a0-740e-3063-bf8d-5bc2af8ea949 +2022,Capital Federal,II.5.1,10.6554,TJ,N2O,3.9,kg/TJ,41.55606,Gas Oil combustion consumption by agriculture machines,AR-C,SESCO,annual,kg,5cd5f4a0-740e-3063-bf8d-5bc2af8ea949 +2022,Catamarca,II.5.1,100.08851999999999,TJ,CO2,74100.0,kg/TJ,7416559.3319999995,Gas Oil combustion consumption by agriculture machines,AR-K,SESCO,annual,kg,1a5a1e93-79a8-3452-bc43-babf26e51c36 +2022,Catamarca,II.5.1,100.08851999999999,TJ,CH4,3.9,kg/TJ,390.34522799999996,Gas Oil combustion consumption by agriculture machines,AR-K,SESCO,annual,kg,906e765f-c915-3400-bf6f-6d1b624842a1 +2022,Catamarca,II.5.1,100.08851999999999,TJ,N2O,3.9,kg/TJ,390.34522799999996,Gas Oil combustion consumption by agriculture machines,AR-K,SESCO,annual,kg,906e765f-c915-3400-bf6f-6d1b624842a1 +2022,Chaco,II.5.1,79.03056,TJ,CO2,74100.0,kg/TJ,5856164.495999999,Gas Oil combustion consumption by agriculture machines,AR-H,SESCO,annual,kg,faeb3dd7-180d-3939-8b23-5572060267d6 +2022,Chaco,II.5.1,79.03056,TJ,CH4,3.9,kg/TJ,308.219184,Gas Oil combustion consumption by agriculture machines,AR-H,SESCO,annual,kg,2a0abb2a-1d4c-3193-b628-45ad6d870a00 +2022,Chaco,II.5.1,79.03056,TJ,N2O,3.9,kg/TJ,308.219184,Gas Oil combustion consumption by agriculture machines,AR-H,SESCO,annual,kg,2a0abb2a-1d4c-3193-b628-45ad6d870a00 +2022,Corrientes,II.5.1,80.9088,TJ,CO2,74100.0,kg/TJ,5995342.08,Gas Oil combustion consumption by agriculture machines,AR-W,SESCO,annual,kg,8229b30b-6d8f-3139-a1f1-c6e30f00f980 +2022,Corrientes,II.5.1,80.9088,TJ,CH4,3.9,kg/TJ,315.54431999999997,Gas Oil combustion consumption by agriculture machines,AR-W,SESCO,annual,kg,1a3a7e03-d4f8-39bb-ac1f-18d9eadce026 +2022,Corrientes,II.5.1,80.9088,TJ,N2O,3.9,kg/TJ,315.54431999999997,Gas Oil combustion consumption by agriculture machines,AR-W,SESCO,annual,kg,1a3a7e03-d4f8-39bb-ac1f-18d9eadce026 +2022,Córdoba,II.5.1,864.49608,TJ,CO2,74100.0,kg/TJ,64059159.528,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,146c0145-7a46-378a-bc9e-2b4e3f468f89 +2022,Córdoba,II.5.1,864.49608,TJ,CH4,3.9,kg/TJ,3371.534712,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,d7dc2475-e453-3ebc-8b4b-bab2d01ce2b6 +2022,Córdoba,II.5.1,864.49608,TJ,N2O,3.9,kg/TJ,3371.534712,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,d7dc2475-e453-3ebc-8b4b-bab2d01ce2b6 +2022,Entre Rios,II.5.1,88.09667999999999,TJ,CO2,74100.0,kg/TJ,6527963.987999999,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,df7bbf1a-3a00-3577-ad70-6c00f95d250d +2022,Entre Rios,II.5.1,88.09667999999999,TJ,CH4,3.9,kg/TJ,343.577052,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,9384433a-fdc2-359b-8122-4904144bcf49 +2022,Entre Rios,II.5.1,88.09667999999999,TJ,N2O,3.9,kg/TJ,343.577052,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,9384433a-fdc2-359b-8122-4904144bcf49 +2022,Formosa,II.5.1,48.328559999999996,TJ,CO2,74100.0,kg/TJ,3581146.2959999996,Gas Oil combustion consumption by agriculture machines,AR-P,SESCO,annual,kg,685b73be-96c2-3f85-b8d0-7a124add38d9 +2022,Formosa,II.5.1,48.328559999999996,TJ,CH4,3.9,kg/TJ,188.481384,Gas Oil combustion consumption by agriculture machines,AR-P,SESCO,annual,kg,6d94f089-98fd-3050-95fb-c90d4d52723a +2022,Formosa,II.5.1,48.328559999999996,TJ,N2O,3.9,kg/TJ,188.481384,Gas Oil combustion consumption by agriculture machines,AR-P,SESCO,annual,kg,6d94f089-98fd-3050-95fb-c90d4d52723a +2022,Jujuy,II.5.1,72.52896,TJ,CO2,74100.0,kg/TJ,5374395.936,Gas Oil combustion consumption by agriculture machines,AR-Y,SESCO,annual,kg,706444c9-b99f-3c64-be26-480ef16dc3e0 +2022,Jujuy,II.5.1,72.52896,TJ,CH4,3.9,kg/TJ,282.86294399999997,Gas Oil combustion consumption by agriculture machines,AR-Y,SESCO,annual,kg,b901f115-7944-3167-8ad8-fd33d59b2ffa +2022,Jujuy,II.5.1,72.52896,TJ,N2O,3.9,kg/TJ,282.86294399999997,Gas Oil combustion consumption by agriculture machines,AR-Y,SESCO,annual,kg,b901f115-7944-3167-8ad8-fd33d59b2ffa +2022,La Pampa,II.5.1,206.31744,TJ,CO2,74100.0,kg/TJ,15288122.304,Gas Oil combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,f9a92dfe-4393-3da2-8963-62e04fde12e1 +2022,La Pampa,II.5.1,206.31744,TJ,CH4,3.9,kg/TJ,804.638016,Gas Oil combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,40863c9e-91d2-3911-8809-f358d1d73c43 +2022,La Pampa,II.5.1,206.31744,TJ,N2O,3.9,kg/TJ,804.638016,Gas Oil combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,40863c9e-91d2-3911-8809-f358d1d73c43 +2022,La Rioja,II.5.1,30.48528,TJ,CO2,74100.0,kg/TJ,2258959.248,Gas Oil combustion consumption by agriculture machines,AR-F,SESCO,annual,kg,c42997c6-f3d0-3889-b5d6-ce451c46ca74 +2022,La Rioja,II.5.1,30.48528,TJ,CH4,3.9,kg/TJ,118.892592,Gas Oil combustion consumption by agriculture machines,AR-F,SESCO,annual,kg,56b1ec22-a150-3239-9c88-784149fcb83c +2022,La Rioja,II.5.1,30.48528,TJ,N2O,3.9,kg/TJ,118.892592,Gas Oil combustion consumption by agriculture machines,AR-F,SESCO,annual,kg,56b1ec22-a150-3239-9c88-784149fcb83c +2022,Mendoza,II.5.1,376.9122,TJ,CO2,74100.0,kg/TJ,27929194.02,Gas Oil combustion consumption by agriculture machines,AR-M,SESCO,annual,kg,921a2c66-9632-3daf-9322-cac92beb4bf0 +2022,Mendoza,II.5.1,376.9122,TJ,CH4,3.9,kg/TJ,1469.95758,Gas Oil combustion consumption by agriculture machines,AR-M,SESCO,annual,kg,584295ca-7ee5-380d-9e22-de15e228350d +2022,Mendoza,II.5.1,376.9122,TJ,N2O,3.9,kg/TJ,1469.95758,Gas Oil combustion consumption by agriculture machines,AR-M,SESCO,annual,kg,584295ca-7ee5-380d-9e22-de15e228350d +2022,Misiones,II.5.1,190.64136,TJ,CO2,74100.0,kg/TJ,14126524.775999999,Gas Oil combustion consumption by agriculture machines,AR-N,SESCO,annual,kg,d2ecffae-14c8-3976-9587-fc6e9b5f2d54 +2022,Misiones,II.5.1,190.64136,TJ,CH4,3.9,kg/TJ,743.501304,Gas Oil combustion consumption by agriculture machines,AR-N,SESCO,annual,kg,11c22b80-936e-3d95-a551-0e918092b028 +2022,Misiones,II.5.1,190.64136,TJ,N2O,3.9,kg/TJ,743.501304,Gas Oil combustion consumption by agriculture machines,AR-N,SESCO,annual,kg,11c22b80-936e-3d95-a551-0e918092b028 +2022,Rio Negro,II.5.1,93.22572,TJ,CO2,74100.0,kg/TJ,6908025.852,Gas Oil combustion consumption by agriculture machines,AR-R,SESCO,annual,kg,85114eec-18f5-3db1-a254-fbff8f7e8e1d +2022,Rio Negro,II.5.1,93.22572,TJ,CH4,3.9,kg/TJ,363.580308,Gas Oil combustion consumption by agriculture machines,AR-R,SESCO,annual,kg,b8b848e0-8b2c-3d46-bb75-229b407049d6 +2022,Rio Negro,II.5.1,93.22572,TJ,N2O,3.9,kg/TJ,363.580308,Gas Oil combustion consumption by agriculture machines,AR-R,SESCO,annual,kg,b8b848e0-8b2c-3d46-bb75-229b407049d6 +2022,Salta,II.5.1,391.902,TJ,CO2,74100.0,kg/TJ,29039938.2,Gas Oil combustion consumption by agriculture machines,AR-A,SESCO,annual,kg,9c18c547-acc8-3cec-8f85-b042c704a042 +2022,Salta,II.5.1,391.902,TJ,CH4,3.9,kg/TJ,1528.4178,Gas Oil combustion consumption by agriculture machines,AR-A,SESCO,annual,kg,4f1ad5b2-9dde-3555-b671-77c62e1bcd52 +2022,Salta,II.5.1,391.902,TJ,N2O,3.9,kg/TJ,1528.4178,Gas Oil combustion consumption by agriculture machines,AR-A,SESCO,annual,kg,4f1ad5b2-9dde-3555-b671-77c62e1bcd52 +2022,San Juan,II.5.1,95.82636,TJ,CO2,74100.0,kg/TJ,7100733.276,Gas Oil combustion consumption by agriculture machines,AR-J,SESCO,annual,kg,fbf54cde-6fe3-3a8d-82e8-20045ab8dbab +2022,San Juan,II.5.1,95.82636,TJ,CH4,3.9,kg/TJ,373.722804,Gas Oil combustion consumption by agriculture machines,AR-J,SESCO,annual,kg,88a5a031-5f76-3d8b-bb20-6a1fde9c6f31 +2022,San Juan,II.5.1,95.82636,TJ,N2O,3.9,kg/TJ,373.722804,Gas Oil combustion consumption by agriculture machines,AR-J,SESCO,annual,kg,88a5a031-5f76-3d8b-bb20-6a1fde9c6f31 +2022,San Luis,II.5.1,56.816759999999995,TJ,CO2,74100.0,kg/TJ,4210121.915999999,Gas Oil combustion consumption by agriculture machines,AR-D,SESCO,annual,kg,a1e00f6f-a4f0-3663-9c71-72d77f3433b4 +2022,San Luis,II.5.1,56.816759999999995,TJ,CH4,3.9,kg/TJ,221.58536399999997,Gas Oil combustion consumption by agriculture machines,AR-D,SESCO,annual,kg,f102ab54-92fa-30a4-9f08-1fc3af160e20 +2022,San Luis,II.5.1,56.816759999999995,TJ,N2O,3.9,kg/TJ,221.58536399999997,Gas Oil combustion consumption by agriculture machines,AR-D,SESCO,annual,kg,f102ab54-92fa-30a4-9f08-1fc3af160e20 +2022,Santa Fe,II.5.1,955.04892,TJ,CO2,74100.0,kg/TJ,70769124.972,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,b1914241-9e2e-3616-b517-b9397e41e1ac +2022,Santa Fe,II.5.1,955.04892,TJ,CH4,3.9,kg/TJ,3724.690788,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,0bb2d34b-9e90-30da-9d78-b695bb6aaead +2022,Santa Fe,II.5.1,955.04892,TJ,N2O,3.9,kg/TJ,3724.690788,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,0bb2d34b-9e90-30da-9d78-b695bb6aaead +2022,Santiago del Estero,II.5.1,306.6588,TJ,CO2,74100.0,kg/TJ,22723417.08,Gas Oil combustion consumption by agriculture machines,AR-G,SESCO,annual,kg,9532a1bd-937a-3205-8b53-ef5b1839c396 +2022,Santiago del Estero,II.5.1,306.6588,TJ,CH4,3.9,kg/TJ,1195.96932,Gas Oil combustion consumption by agriculture machines,AR-G,SESCO,annual,kg,3dbfd496-1c27-3dd9-90d7-4aeb3fdf8adc +2022,Santiago del Estero,II.5.1,306.6588,TJ,N2O,3.9,kg/TJ,1195.96932,Gas Oil combustion consumption by agriculture machines,AR-G,SESCO,annual,kg,3dbfd496-1c27-3dd9-90d7-4aeb3fdf8adc +2022,Tucuman,II.5.1,198.2988,TJ,CO2,74100.0,kg/TJ,14693941.08,Gas Oil combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,ab88fb10-3dae-3ae0-b824-b34d833a73ce +2022,Tucuman,II.5.1,198.2988,TJ,CH4,3.9,kg/TJ,773.36532,Gas Oil combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,bed109ec-d579-3262-98bc-cdd3c98bdd87 +2022,Tucuman,II.5.1,198.2988,TJ,N2O,3.9,kg/TJ,773.36532,Gas Oil combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,bed109ec-d579-3262-98bc-cdd3c98bdd87 +2022,Buenos Aires,II.5.1,4.5292319999999995,TJ,CO2,71500.0,kg/TJ,323840.088,Jet Kerosene combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,40d65c8d-4638-391f-979f-6eb467f3354e +2022,Buenos Aires,II.5.1,4.5292319999999995,TJ,CH4,0.5,kg/TJ,2.2646159999999997,Jet Kerosene combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,6febe512-ac57-30f1-b0ae-7730b5c8fcdd +2022,Buenos Aires,II.5.1,4.5292319999999995,TJ,N2O,2.0,kg/TJ,9.058463999999999,Jet Kerosene combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,9874d6b7-f348-39bc-9eed-a138af9c4975 +2022,La Pampa,II.5.1,0.22017099999999998,TJ,CO2,71500.0,kg/TJ,15742.226499999999,Jet Kerosene combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,00b63c61-5ae1-3d1b-a97d-cb48a686ddc8 +2022,La Pampa,II.5.1,0.22017099999999998,TJ,CH4,0.5,kg/TJ,0.11008549999999999,Jet Kerosene combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,eaf44d86-d101-33a5-9bf6-d28271d76f0f +2022,La Pampa,II.5.1,0.22017099999999998,TJ,N2O,2.0,kg/TJ,0.44034199999999996,Jet Kerosene combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,5424336b-b984-3a8f-905e-32d5474f922d +2022,Santa Fe,II.5.1,0.5661539999999999,TJ,CO2,71500.0,kg/TJ,40480.011,Jet Kerosene combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,be2a9b83-fefc-3f00-9e41-dcce22a0788f +2022,Santa Fe,II.5.1,0.5661539999999999,TJ,CH4,0.5,kg/TJ,0.28307699999999997,Jet Kerosene combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,3d7cf76a-3a0b-32c3-9edf-0617086eb265 +2022,Santa Fe,II.5.1,0.5661539999999999,TJ,N2O,2.0,kg/TJ,1.1323079999999999,Jet Kerosene combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,287cd96d-70fb-34ea-924e-a52cb435fdc2 +2022,Buenos Aires,II.5.1,43.10537,TJ,CO2,73300.0,kg/TJ,3159623.6210000003,Naphtha combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,acea9c70-4c21-382e-b8e4-bec4d861ac73 +2022,Buenos Aires,II.5.1,43.10537,TJ,CH4,0.5,kg/TJ,21.552685,Naphtha combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,e04d2cf8-ab66-3012-9730-c6bad7b9c595 +2022,Buenos Aires,II.5.1,43.10537,TJ,N2O,2.0,kg/TJ,86.21074,Naphtha combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,45d92908-e04e-35f0-94e3-2ad6fcaf48c1 +2022,Salta,II.5.1,0.34265,TJ,CO2,73300.0,kg/TJ,25116.245,Naphtha combustion consumption by agriculture machines,AR-A,SESCO,annual,kg,9ddcde26-2f6a-33b5-94ce-5b34689662bc +2022,Salta,II.5.1,0.34265,TJ,CH4,0.5,kg/TJ,0.171325,Naphtha combustion consumption by agriculture machines,AR-A,SESCO,annual,kg,108415b5-7ea1-32fd-980d-3ff37a0c4b93 +2022,Salta,II.5.1,0.34265,TJ,N2O,2.0,kg/TJ,0.6853,Naphtha combustion consumption by agriculture machines,AR-A,SESCO,annual,kg,2a0d615c-b853-315a-897f-4eb694f22a00 +2022,Santa Fe,II.5.1,27.000819999999997,TJ,CO2,73300.0,kg/TJ,1979160.106,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,f6719469-bc05-3df5-9158-7b6d931a63c7 +2022,Santa Fe,II.5.1,27.000819999999997,TJ,CH4,0.5,kg/TJ,13.500409999999999,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,139973e6-96bf-3712-a026-02d07e6447d9 +2022,Santa Fe,II.5.1,27.000819999999997,TJ,N2O,2.0,kg/TJ,54.001639999999995,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,b6536b2b-3a62-3e5a-a21a-1a49f0b5039c +2022,Buenos Aires,II.5.1,1.3363349999999998,TJ,CO2,73300.0,kg/TJ,97953.35549999999,Naphtha combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,395af94c-5d39-3caf-bc0a-67e4669f7ac3 +2022,Buenos Aires,II.5.1,1.3363349999999998,TJ,CH4,0.5,kg/TJ,0.6681674999999999,Naphtha combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,f3f8e043-7385-3fbe-bce1-ad36abf05852 +2022,Buenos Aires,II.5.1,1.3363349999999998,TJ,N2O,2.0,kg/TJ,2.6726699999999997,Naphtha combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,0560d933-6ea6-3735-a462-3fc670c5064c +2022,Santa Fe,II.5.1,1.78178,TJ,CO2,73300.0,kg/TJ,130604.47399999999,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,626b256c-36d6-398e-aba2-e6d9a52fa547 +2022,Santa Fe,II.5.1,1.78178,TJ,CH4,0.5,kg/TJ,0.89089,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,4e832ac8-9d61-362a-8b90-aee484dff6d0 +2022,Santa Fe,II.5.1,1.78178,TJ,N2O,2.0,kg/TJ,3.56356,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,59187363-5ede-3a56-b4f7-1a5de8aebf20 +2022,Buenos Aires,II.1.1,11881.24056,TJ,CO2,74100.0,kg/TJ,880399925.496,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,9a46e9e5-76d8-3401-b147-5cb356a76637 +2022,Buenos Aires,II.1.1,11881.24056,TJ,CH4,3.9,kg/TJ,46336.838184,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,6fc8ffb2-957b-34bd-8811-1bf37a3a6506 +2022,Buenos Aires,II.1.1,11881.24056,TJ,N2O,3.9,kg/TJ,46336.838184,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,6fc8ffb2-957b-34bd-8811-1bf37a3a6506 +2022,Capital Federal,II.1.1,926.36964,TJ,CO2,74100.0,kg/TJ,68643990.324,Gas Oil combustion consumption by freight transport,AR-C,SESCO,annual,kg,567595e1-56bb-363d-9b0b-bc2de0914c9d +2022,Capital Federal,II.1.1,926.36964,TJ,CH4,3.9,kg/TJ,3612.8415959999998,Gas Oil combustion consumption by freight transport,AR-C,SESCO,annual,kg,fb87d2bb-cb40-32a1-8aa4-61859679e2b3 +2022,Capital Federal,II.1.1,926.36964,TJ,N2O,3.9,kg/TJ,3612.8415959999998,Gas Oil combustion consumption by freight transport,AR-C,SESCO,annual,kg,fb87d2bb-cb40-32a1-8aa4-61859679e2b3 +2022,Catamarca,II.1.1,60.97056,TJ,CO2,74100.0,kg/TJ,4517918.496,Gas Oil combustion consumption by freight transport,AR-K,SESCO,annual,kg,ed1f1d46-c236-3c65-add2-7e114126d5af +2022,Catamarca,II.1.1,60.97056,TJ,CH4,3.9,kg/TJ,237.785184,Gas Oil combustion consumption by freight transport,AR-K,SESCO,annual,kg,63f21f65-3165-36a3-bb72-b18adf72c4bb +2022,Catamarca,II.1.1,60.97056,TJ,N2O,3.9,kg/TJ,237.785184,Gas Oil combustion consumption by freight transport,AR-K,SESCO,annual,kg,63f21f65-3165-36a3-bb72-b18adf72c4bb +2022,Chaco,II.1.1,357.19068,TJ,CO2,74100.0,kg/TJ,26467829.388,Gas Oil combustion consumption by freight transport,AR-H,SESCO,annual,kg,af966add-c5bd-3e9c-94f0-6a40875cb4ac +2022,Chaco,II.1.1,357.19068,TJ,CH4,3.9,kg/TJ,1393.0436519999998,Gas Oil combustion consumption by freight transport,AR-H,SESCO,annual,kg,5e15718e-e204-3e65-98f6-48a672940472 +2022,Chaco,II.1.1,357.19068,TJ,N2O,3.9,kg/TJ,1393.0436519999998,Gas Oil combustion consumption by freight transport,AR-H,SESCO,annual,kg,5e15718e-e204-3e65-98f6-48a672940472 +2022,Chubut,II.1.1,989.00172,TJ,CO2,74100.0,kg/TJ,73285027.45199999,Gas Oil combustion consumption by freight transport,AR-U,SESCO,annual,kg,cc446ea6-0700-3445-b351-bced8f32b060 +2022,Chubut,II.1.1,989.00172,TJ,CH4,3.9,kg/TJ,3857.106708,Gas Oil combustion consumption by freight transport,AR-U,SESCO,annual,kg,fcf7339f-7dc4-3993-9e03-e6c31dfce0c4 +2022,Chubut,II.1.1,989.00172,TJ,N2O,3.9,kg/TJ,3857.106708,Gas Oil combustion consumption by freight transport,AR-U,SESCO,annual,kg,fcf7339f-7dc4-3993-9e03-e6c31dfce0c4 +2022,Corrientes,II.1.1,693.1428,TJ,CO2,74100.0,kg/TJ,51361881.48,Gas Oil combustion consumption by freight transport,AR-W,SESCO,annual,kg,53a33e49-cbbb-388b-9582-004fecfc35d7 +2022,Corrientes,II.1.1,693.1428,TJ,CH4,3.9,kg/TJ,2703.25692,Gas Oil combustion consumption by freight transport,AR-W,SESCO,annual,kg,06c17eb2-8657-3669-9db5-147c8d874fc3 +2022,Corrientes,II.1.1,693.1428,TJ,N2O,3.9,kg/TJ,2703.25692,Gas Oil combustion consumption by freight transport,AR-W,SESCO,annual,kg,06c17eb2-8657-3669-9db5-147c8d874fc3 +2022,Córdoba,II.1.1,3371.36856,TJ,CO2,74100.0,kg/TJ,249818410.296,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,504bcfe4-ef2d-39b5-8943-1a9b9ef7d779 +2022,Córdoba,II.1.1,3371.36856,TJ,CH4,3.9,kg/TJ,13148.337383999999,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,bc5330ba-1126-3418-bfa2-f73783ed9d34 +2022,Córdoba,II.1.1,3371.36856,TJ,N2O,3.9,kg/TJ,13148.337383999999,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,bc5330ba-1126-3418-bfa2-f73783ed9d34 +2022,Entre Rios,II.1.1,1240.79424,TJ,CO2,74100.0,kg/TJ,91942853.184,Gas Oil combustion consumption by freight transport,AR-E,SESCO,annual,kg,ae3bba37-5f4d-314e-b0be-cf29e168c5af +2022,Entre Rios,II.1.1,1240.79424,TJ,CH4,3.9,kg/TJ,4839.097535999999,Gas Oil combustion consumption by freight transport,AR-E,SESCO,annual,kg,67d5b1d6-452b-345b-9f7a-bbc731583f2c +2022,Entre Rios,II.1.1,1240.79424,TJ,N2O,3.9,kg/TJ,4839.097535999999,Gas Oil combustion consumption by freight transport,AR-E,SESCO,annual,kg,67d5b1d6-452b-345b-9f7a-bbc731583f2c +2022,Formosa,II.1.1,82.7148,TJ,CO2,74100.0,kg/TJ,6129166.68,Gas Oil combustion consumption by freight transport,AR-P,SESCO,annual,kg,f37aec70-d844-3349-854d-684bfbd4af6f +2022,Formosa,II.1.1,82.7148,TJ,CH4,3.9,kg/TJ,322.58772,Gas Oil combustion consumption by freight transport,AR-P,SESCO,annual,kg,03089df9-8511-32e9-81a9-ab8c0418e0a6 +2022,Formosa,II.1.1,82.7148,TJ,N2O,3.9,kg/TJ,322.58772,Gas Oil combustion consumption by freight transport,AR-P,SESCO,annual,kg,03089df9-8511-32e9-81a9-ab8c0418e0a6 +2022,Jujuy,II.1.1,152.46251999999998,TJ,CO2,74100.0,kg/TJ,11297472.731999999,Gas Oil combustion consumption by freight transport,AR-Y,SESCO,annual,kg,10982dd2-2413-3716-b70f-e21a8a7eecee +2022,Jujuy,II.1.1,152.46251999999998,TJ,CH4,3.9,kg/TJ,594.6038279999999,Gas Oil combustion consumption by freight transport,AR-Y,SESCO,annual,kg,2c2f474e-cae1-3909-8d32-b096869f6c93 +2022,Jujuy,II.1.1,152.46251999999998,TJ,N2O,3.9,kg/TJ,594.6038279999999,Gas Oil combustion consumption by freight transport,AR-Y,SESCO,annual,kg,2c2f474e-cae1-3909-8d32-b096869f6c93 +2022,La Pampa,II.1.1,1334.0922,TJ,CO2,74100.0,kg/TJ,98856232.02000001,Gas Oil combustion consumption by freight transport,AR-L,SESCO,annual,kg,e3977fb5-93fa-3b50-85d3-7746dae43908 +2022,La Pampa,II.1.1,1334.0922,TJ,CH4,3.9,kg/TJ,5202.95958,Gas Oil combustion consumption by freight transport,AR-L,SESCO,annual,kg,2db36dc7-dcd9-356f-bcf3-256e9d80ed1d +2022,La Pampa,II.1.1,1334.0922,TJ,N2O,3.9,kg/TJ,5202.95958,Gas Oil combustion consumption by freight transport,AR-L,SESCO,annual,kg,2db36dc7-dcd9-356f-bcf3-256e9d80ed1d +2022,La Rioja,II.1.1,103.15872,TJ,CO2,74100.0,kg/TJ,7644061.152,Gas Oil combustion consumption by freight transport,AR-F,SESCO,annual,kg,e6c6a4a1-543b-34ae-a56a-29c7661565bb +2022,La Rioja,II.1.1,103.15872,TJ,CH4,3.9,kg/TJ,402.319008,Gas Oil combustion consumption by freight transport,AR-F,SESCO,annual,kg,d4b2256d-0930-3cab-aaec-32e474327254 +2022,La Rioja,II.1.1,103.15872,TJ,N2O,3.9,kg/TJ,402.319008,Gas Oil combustion consumption by freight transport,AR-F,SESCO,annual,kg,d4b2256d-0930-3cab-aaec-32e474327254 +2022,Mendoza,II.1.1,1915.4797199999998,TJ,CO2,74100.0,kg/TJ,141937047.25199997,Gas Oil combustion consumption by freight transport,AR-M,SESCO,annual,kg,26b764aa-6fb9-30c6-be33-3da97425291c +2022,Mendoza,II.1.1,1915.4797199999998,TJ,CH4,3.9,kg/TJ,7470.370907999999,Gas Oil combustion consumption by freight transport,AR-M,SESCO,annual,kg,e0e03b39-113f-3dcc-a8e7-68b3e494516d +2022,Mendoza,II.1.1,1915.4797199999998,TJ,N2O,3.9,kg/TJ,7470.370907999999,Gas Oil combustion consumption by freight transport,AR-M,SESCO,annual,kg,e0e03b39-113f-3dcc-a8e7-68b3e494516d +2022,Misiones,II.1.1,428.92499999999995,TJ,CO2,74100.0,kg/TJ,31783342.499999996,Gas Oil combustion consumption by freight transport,AR-N,SESCO,annual,kg,7505af60-978e-3261-9cf6-3dd681ff7850 +2022,Misiones,II.1.1,428.92499999999995,TJ,CH4,3.9,kg/TJ,1672.8075,Gas Oil combustion consumption by freight transport,AR-N,SESCO,annual,kg,e52a3d92-5a57-3106-9e6f-cd4aedb17bd7 +2022,Misiones,II.1.1,428.92499999999995,TJ,N2O,3.9,kg/TJ,1672.8075,Gas Oil combustion consumption by freight transport,AR-N,SESCO,annual,kg,e52a3d92-5a57-3106-9e6f-cd4aedb17bd7 +2022,Neuquén,II.1.1,1151.07216,TJ,CO2,74100.0,kg/TJ,85294447.056,Gas Oil combustion consumption by freight transport,AR-Q,SESCO,annual,kg,dafec2f8-e3b0-346a-81ed-c134f91bf8ae +2022,Neuquén,II.1.1,1151.07216,TJ,CH4,3.9,kg/TJ,4489.181423999999,Gas Oil combustion consumption by freight transport,AR-Q,SESCO,annual,kg,365f45fc-784a-3e92-b98b-df40f377d87f +2022,Neuquén,II.1.1,1151.07216,TJ,N2O,3.9,kg/TJ,4489.181423999999,Gas Oil combustion consumption by freight transport,AR-Q,SESCO,annual,kg,365f45fc-784a-3e92-b98b-df40f377d87f +2022,Rio Negro,II.1.1,1269.58188,TJ,CO2,74100.0,kg/TJ,94076017.308,Gas Oil combustion consumption by freight transport,AR-R,SESCO,annual,kg,f3007e82-ece5-310f-adb9-8bf18b5bed03 +2022,Rio Negro,II.1.1,1269.58188,TJ,CH4,3.9,kg/TJ,4951.369331999999,Gas Oil combustion consumption by freight transport,AR-R,SESCO,annual,kg,d35962ff-2ce1-3f84-b6c2-3a48d83884c1 +2022,Rio Negro,II.1.1,1269.58188,TJ,N2O,3.9,kg/TJ,4951.369331999999,Gas Oil combustion consumption by freight transport,AR-R,SESCO,annual,kg,d35962ff-2ce1-3f84-b6c2-3a48d83884c1 +2022,Salta,II.1.1,1042.6399199999998,TJ,CO2,74100.0,kg/TJ,77259618.07199998,Gas Oil combustion consumption by freight transport,AR-A,SESCO,annual,kg,934da262-d66f-3315-b380-3856d3083570 +2022,Salta,II.1.1,1042.6399199999998,TJ,CH4,3.9,kg/TJ,4066.2956879999992,Gas Oil combustion consumption by freight transport,AR-A,SESCO,annual,kg,d5a81d96-cf73-3297-aa65-9adda69a9898 +2022,Salta,II.1.1,1042.6399199999998,TJ,N2O,3.9,kg/TJ,4066.2956879999992,Gas Oil combustion consumption by freight transport,AR-A,SESCO,annual,kg,d5a81d96-cf73-3297-aa65-9adda69a9898 +2022,San Juan,II.1.1,150.04247999999998,TJ,CO2,74100.0,kg/TJ,11118147.768,Gas Oil combustion consumption by freight transport,AR-J,SESCO,annual,kg,cef17e7f-dc50-33a3-a253-c576292fea68 +2022,San Juan,II.1.1,150.04247999999998,TJ,CH4,3.9,kg/TJ,585.165672,Gas Oil combustion consumption by freight transport,AR-J,SESCO,annual,kg,45775ce1-d35a-3530-993e-83fa7e1c9e75 +2022,San Juan,II.1.1,150.04247999999998,TJ,N2O,3.9,kg/TJ,585.165672,Gas Oil combustion consumption by freight transport,AR-J,SESCO,annual,kg,45775ce1-d35a-3530-993e-83fa7e1c9e75 +2022,San Luis,II.1.1,530.38608,TJ,CO2,74100.0,kg/TJ,39301608.528,Gas Oil combustion consumption by freight transport,AR-D,SESCO,annual,kg,0ef28ff9-6d10-3592-8a8a-6574a7734d32 +2022,San Luis,II.1.1,530.38608,TJ,CH4,3.9,kg/TJ,2068.505712,Gas Oil combustion consumption by freight transport,AR-D,SESCO,annual,kg,58c2abdc-2ea1-30be-ae44-0eec659f719c +2022,San Luis,II.1.1,530.38608,TJ,N2O,3.9,kg/TJ,2068.505712,Gas Oil combustion consumption by freight transport,AR-D,SESCO,annual,kg,58c2abdc-2ea1-30be-ae44-0eec659f719c +2022,Santa Cruz,II.1.1,797.31288,TJ,CO2,74100.0,kg/TJ,59080884.408,Gas Oil combustion consumption by freight transport,AR-Z,SESCO,annual,kg,264a2f96-9b7e-376a-885d-74de25b6a55a +2022,Santa Cruz,II.1.1,797.31288,TJ,CH4,3.9,kg/TJ,3109.520232,Gas Oil combustion consumption by freight transport,AR-Z,SESCO,annual,kg,70e81e10-8493-3c95-b395-ee95c81b356a +2022,Santa Cruz,II.1.1,797.31288,TJ,N2O,3.9,kg/TJ,3109.520232,Gas Oil combustion consumption by freight transport,AR-Z,SESCO,annual,kg,70e81e10-8493-3c95-b395-ee95c81b356a +2022,Santa Fe,II.1.1,3396.32748,TJ,CO2,74100.0,kg/TJ,251667866.268,Gas Oil combustion consumption by freight transport,AR-S,SESCO,annual,kg,9d8d627e-d915-3302-962f-259a9bb8cb61 +2022,Santa Fe,II.1.1,3396.32748,TJ,CH4,3.9,kg/TJ,13245.677172,Gas Oil combustion consumption by freight transport,AR-S,SESCO,annual,kg,f9ff8091-41b1-3345-8a80-10101e337ec1 +2022,Santa Fe,II.1.1,3396.32748,TJ,N2O,3.9,kg/TJ,13245.677172,Gas Oil combustion consumption by freight transport,AR-S,SESCO,annual,kg,f9ff8091-41b1-3345-8a80-10101e337ec1 +2022,Santiago del Estero,II.1.1,821.9467199999999,TJ,CO2,74100.0,kg/TJ,60906251.95199999,Gas Oil combustion consumption by freight transport,AR-G,SESCO,annual,kg,dc63a83f-33cc-3715-83b9-6f5cdd68db59 +2022,Santiago del Estero,II.1.1,821.9467199999999,TJ,CH4,3.9,kg/TJ,3205.5922079999996,Gas Oil combustion consumption by freight transport,AR-G,SESCO,annual,kg,790eb0ac-09ec-331e-a970-e62d24df607b +2022,Santiago del Estero,II.1.1,821.9467199999999,TJ,N2O,3.9,kg/TJ,3205.5922079999996,Gas Oil combustion consumption by freight transport,AR-G,SESCO,annual,kg,790eb0ac-09ec-331e-a970-e62d24df607b +2022,Tierra del Fuego,II.1.1,317.38644,TJ,CO2,74100.0,kg/TJ,23518335.204,Gas Oil combustion consumption by freight transport,AR-V,SESCO,annual,kg,69d8a47f-fc2e-3c2d-8fac-9f4f67d9ada9 +2022,Tierra del Fuego,II.1.1,317.38644,TJ,CH4,3.9,kg/TJ,1237.807116,Gas Oil combustion consumption by freight transport,AR-V,SESCO,annual,kg,c65aca5a-9b02-39ad-a6ee-dc7f7b6ea4d5 +2022,Tierra del Fuego,II.1.1,317.38644,TJ,N2O,3.9,kg/TJ,1237.807116,Gas Oil combustion consumption by freight transport,AR-V,SESCO,annual,kg,c65aca5a-9b02-39ad-a6ee-dc7f7b6ea4d5 +2022,Tucuman,II.1.1,402.08783999999997,TJ,CO2,74100.0,kg/TJ,29794708.944,Gas Oil combustion consumption by freight transport,AR-T,SESCO,annual,kg,159df942-b4b3-39ec-a5ec-9c2b84609fa5 +2022,Tucuman,II.1.1,402.08783999999997,TJ,CH4,3.9,kg/TJ,1568.142576,Gas Oil combustion consumption by freight transport,AR-T,SESCO,annual,kg,946b51cc-94ea-3e19-92a8-4bbcf55f2f0d +2022,Tucuman,II.1.1,402.08783999999997,TJ,N2O,3.9,kg/TJ,1568.142576,Gas Oil combustion consumption by freight transport,AR-T,SESCO,annual,kg,946b51cc-94ea-3e19-92a8-4bbcf55f2f0d +2022,Buenos Aires,II.1.1,5736.10884,TJ,CO2,74100.0,kg/TJ,425045665.04399997,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,811f9605-7306-3e84-a2c0-3c0069da9a8e +2022,Buenos Aires,II.1.1,5736.10884,TJ,CH4,3.9,kg/TJ,22370.824475999998,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,67f4b2a7-3145-3208-b4c5-ce16d4516c34 +2022,Buenos Aires,II.1.1,5736.10884,TJ,N2O,3.9,kg/TJ,22370.824475999998,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,67f4b2a7-3145-3208-b4c5-ce16d4516c34 +2022,Capital Federal,II.1.1,506.83583999999996,TJ,CO2,74100.0,kg/TJ,37556535.743999995,Gas Oil combustion consumption by freight transport,AR-C,SESCO,annual,kg,b3c1d46f-476a-3fc5-8908-e6d9224392a3 +2022,Capital Federal,II.1.1,506.83583999999996,TJ,CH4,3.9,kg/TJ,1976.6597759999997,Gas Oil combustion consumption by freight transport,AR-C,SESCO,annual,kg,a2344f30-108b-3b00-a8c2-d2056e0e6e74 +2022,Capital Federal,II.1.1,506.83583999999996,TJ,N2O,3.9,kg/TJ,1976.6597759999997,Gas Oil combustion consumption by freight transport,AR-C,SESCO,annual,kg,a2344f30-108b-3b00-a8c2-d2056e0e6e74 +2022,Catamarca,II.1.1,51.976679999999995,TJ,CO2,74100.0,kg/TJ,3851471.9879999994,Gas Oil combustion consumption by freight transport,AR-K,SESCO,annual,kg,3538c76e-75c8-367a-8b61-ad79b64166f0 +2022,Catamarca,II.1.1,51.976679999999995,TJ,CH4,3.9,kg/TJ,202.70905199999999,Gas Oil combustion consumption by freight transport,AR-K,SESCO,annual,kg,2661e815-cb25-3858-95f5-3d16a0c88c87 +2022,Catamarca,II.1.1,51.976679999999995,TJ,N2O,3.9,kg/TJ,202.70905199999999,Gas Oil combustion consumption by freight transport,AR-K,SESCO,annual,kg,2661e815-cb25-3858-95f5-3d16a0c88c87 +2022,Chaco,II.1.1,252.58715999999998,TJ,CO2,74100.0,kg/TJ,18716708.555999998,Gas Oil combustion consumption by freight transport,AR-H,SESCO,annual,kg,7adc8029-d76e-3d0f-a105-6bb869e4aafc +2022,Chaco,II.1.1,252.58715999999998,TJ,CH4,3.9,kg/TJ,985.0899239999999,Gas Oil combustion consumption by freight transport,AR-H,SESCO,annual,kg,94b83e4e-f457-3a89-9d34-eab5865b7697 +2022,Chaco,II.1.1,252.58715999999998,TJ,N2O,3.9,kg/TJ,985.0899239999999,Gas Oil combustion consumption by freight transport,AR-H,SESCO,annual,kg,94b83e4e-f457-3a89-9d34-eab5865b7697 +2022,Chubut,II.1.1,585.46908,TJ,CO2,74100.0,kg/TJ,43383258.827999994,Gas Oil combustion consumption by freight transport,AR-U,SESCO,annual,kg,76c6d5cf-2f3c-3677-b2b9-5caf99cdf608 +2022,Chubut,II.1.1,585.46908,TJ,CH4,3.9,kg/TJ,2283.3294119999996,Gas Oil combustion consumption by freight transport,AR-U,SESCO,annual,kg,8eaacc7b-cbb5-31b7-a335-a990eb28d614 +2022,Chubut,II.1.1,585.46908,TJ,N2O,3.9,kg/TJ,2283.3294119999996,Gas Oil combustion consumption by freight transport,AR-U,SESCO,annual,kg,8eaacc7b-cbb5-31b7-a335-a990eb28d614 +2022,Corrientes,II.1.1,368.17116,TJ,CO2,74100.0,kg/TJ,27281482.956,Gas Oil combustion consumption by freight transport,AR-W,SESCO,annual,kg,682dd1b3-6c7f-30bf-a6f1-49279cedf04b +2022,Corrientes,II.1.1,368.17116,TJ,CH4,3.9,kg/TJ,1435.867524,Gas Oil combustion consumption by freight transport,AR-W,SESCO,annual,kg,2b608fa0-7938-3f7e-af08-b8d7f1aec5be +2022,Corrientes,II.1.1,368.17116,TJ,N2O,3.9,kg/TJ,1435.867524,Gas Oil combustion consumption by freight transport,AR-W,SESCO,annual,kg,2b608fa0-7938-3f7e-af08-b8d7f1aec5be +2022,Córdoba,II.1.1,1125.8604,TJ,CO2,74100.0,kg/TJ,83426255.64,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,9f6b5691-5a8f-327b-9b25-f9a21b0c1d06 +2022,Córdoba,II.1.1,1125.8604,TJ,CH4,3.9,kg/TJ,4390.85556,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,578b51d3-53b1-3473-8eec-992b469b8072 +2022,Córdoba,II.1.1,1125.8604,TJ,N2O,3.9,kg/TJ,4390.85556,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,578b51d3-53b1-3473-8eec-992b469b8072 +2022,Entre Rios,II.1.1,503.22384,TJ,CO2,74100.0,kg/TJ,37288886.544,Gas Oil combustion consumption by freight transport,AR-E,SESCO,annual,kg,21be53ed-d3b3-305f-b01e-26753f2e49a7 +2022,Entre Rios,II.1.1,503.22384,TJ,CH4,3.9,kg/TJ,1962.572976,Gas Oil combustion consumption by freight transport,AR-E,SESCO,annual,kg,83839430-cefa-3cfc-acf4-ae57b074a8e0 +2022,Entre Rios,II.1.1,503.22384,TJ,N2O,3.9,kg/TJ,1962.572976,Gas Oil combustion consumption by freight transport,AR-E,SESCO,annual,kg,83839430-cefa-3cfc-acf4-ae57b074a8e0 +2022,Formosa,II.1.1,93.22572,TJ,CO2,74100.0,kg/TJ,6908025.852,Gas Oil combustion consumption by freight transport,AR-P,SESCO,annual,kg,cd5fc585-386b-3d7d-bde3-f93ab5571267 +2022,Formosa,II.1.1,93.22572,TJ,CH4,3.9,kg/TJ,363.580308,Gas Oil combustion consumption by freight transport,AR-P,SESCO,annual,kg,2d5cc57d-b1e2-3cdb-899f-f7a3375494d8 +2022,Formosa,II.1.1,93.22572,TJ,N2O,3.9,kg/TJ,363.580308,Gas Oil combustion consumption by freight transport,AR-P,SESCO,annual,kg,2d5cc57d-b1e2-3cdb-899f-f7a3375494d8 +2022,Jujuy,II.1.1,98.35476,TJ,CO2,74100.0,kg/TJ,7288087.716,Gas Oil combustion consumption by freight transport,AR-Y,SESCO,annual,kg,f4afa39d-9db7-33dc-9098-aa4e649fdaa7 +2022,Jujuy,II.1.1,98.35476,TJ,CH4,3.9,kg/TJ,383.58356399999997,Gas Oil combustion consumption by freight transport,AR-Y,SESCO,annual,kg,136e5a89-a8fe-3ab4-bffa-a78dd1d829b8 +2022,Jujuy,II.1.1,98.35476,TJ,N2O,3.9,kg/TJ,383.58356399999997,Gas Oil combustion consumption by freight transport,AR-Y,SESCO,annual,kg,136e5a89-a8fe-3ab4-bffa-a78dd1d829b8 +2022,La Pampa,II.1.1,325.22447999999997,TJ,CO2,74100.0,kg/TJ,24099133.968,Gas Oil combustion consumption by freight transport,AR-L,SESCO,annual,kg,b074bd9c-50f6-3113-8c24-966e02dea058 +2022,La Pampa,II.1.1,325.22447999999997,TJ,CH4,3.9,kg/TJ,1268.375472,Gas Oil combustion consumption by freight transport,AR-L,SESCO,annual,kg,05506725-950e-31ed-a187-cd3296d010a6 +2022,La Pampa,II.1.1,325.22447999999997,TJ,N2O,3.9,kg/TJ,1268.375472,Gas Oil combustion consumption by freight transport,AR-L,SESCO,annual,kg,05506725-950e-31ed-a187-cd3296d010a6 +2022,La Rioja,II.1.1,108.57672,TJ,CO2,74100.0,kg/TJ,8045534.952,Gas Oil combustion consumption by freight transport,AR-F,SESCO,annual,kg,43e53287-dd3d-3646-b72e-24c942284068 +2022,La Rioja,II.1.1,108.57672,TJ,CH4,3.9,kg/TJ,423.44920799999994,Gas Oil combustion consumption by freight transport,AR-F,SESCO,annual,kg,80d57fb8-9cd6-31f1-b376-e815de947452 +2022,La Rioja,II.1.1,108.57672,TJ,N2O,3.9,kg/TJ,423.44920799999994,Gas Oil combustion consumption by freight transport,AR-F,SESCO,annual,kg,80d57fb8-9cd6-31f1-b376-e815de947452 +2022,Mendoza,II.1.1,760.10928,TJ,CO2,74100.0,kg/TJ,56324097.648,Gas Oil combustion consumption by freight transport,AR-M,SESCO,annual,kg,9bc8e58c-3ea2-303a-9e18-12be68fb4166 +2022,Mendoza,II.1.1,760.10928,TJ,CH4,3.9,kg/TJ,2964.426192,Gas Oil combustion consumption by freight transport,AR-M,SESCO,annual,kg,cfe25618-219e-36a9-b50f-b72c3c0830cd +2022,Mendoza,II.1.1,760.10928,TJ,N2O,3.9,kg/TJ,2964.426192,Gas Oil combustion consumption by freight transport,AR-M,SESCO,annual,kg,cfe25618-219e-36a9-b50f-b72c3c0830cd +2022,Misiones,II.1.1,276.4986,TJ,CO2,74100.0,kg/TJ,20488546.26,Gas Oil combustion consumption by freight transport,AR-N,SESCO,annual,kg,682b1051-b11b-316c-9471-8c1ec59c09f0 +2022,Misiones,II.1.1,276.4986,TJ,CH4,3.9,kg/TJ,1078.34454,Gas Oil combustion consumption by freight transport,AR-N,SESCO,annual,kg,9ca7af0b-ab2c-38f0-ac64-99b0929ab00f +2022,Misiones,II.1.1,276.4986,TJ,N2O,3.9,kg/TJ,1078.34454,Gas Oil combustion consumption by freight transport,AR-N,SESCO,annual,kg,9ca7af0b-ab2c-38f0-ac64-99b0929ab00f +2022,Neuquén,II.1.1,1573.67616,TJ,CO2,74100.0,kg/TJ,116609403.456,Gas Oil combustion consumption by freight transport,AR-Q,SESCO,annual,kg,f6195692-b202-312e-9076-15b1b2cd777e +2022,Neuquén,II.1.1,1573.67616,TJ,CH4,3.9,kg/TJ,6137.3370239999995,Gas Oil combustion consumption by freight transport,AR-Q,SESCO,annual,kg,5a0d03bf-ebb5-321e-b19a-a3433e10581d +2022,Neuquén,II.1.1,1573.67616,TJ,N2O,3.9,kg/TJ,6137.3370239999995,Gas Oil combustion consumption by freight transport,AR-Q,SESCO,annual,kg,5a0d03bf-ebb5-321e-b19a-a3433e10581d +2022,Rio Negro,II.1.1,557.11488,TJ,CO2,74100.0,kg/TJ,41282212.607999995,Gas Oil combustion consumption by freight transport,AR-R,SESCO,annual,kg,d8fc0a57-ab4e-3a59-86b3-c856f8ddc785 +2022,Rio Negro,II.1.1,557.11488,TJ,CH4,3.9,kg/TJ,2172.748032,Gas Oil combustion consumption by freight transport,AR-R,SESCO,annual,kg,6d33a6db-bbbc-3aea-8f78-89a13196be71 +2022,Rio Negro,II.1.1,557.11488,TJ,N2O,3.9,kg/TJ,2172.748032,Gas Oil combustion consumption by freight transport,AR-R,SESCO,annual,kg,6d33a6db-bbbc-3aea-8f78-89a13196be71 +2022,Salta,II.1.1,402.70187999999996,TJ,CO2,74100.0,kg/TJ,29840209.308,Gas Oil combustion consumption by freight transport,AR-A,SESCO,annual,kg,e2232472-553b-3263-bd8d-4138bb522dfa +2022,Salta,II.1.1,402.70187999999996,TJ,CH4,3.9,kg/TJ,1570.5373319999999,Gas Oil combustion consumption by freight transport,AR-A,SESCO,annual,kg,787158f2-6808-3f3b-a443-ae9d3639bc5c +2022,Salta,II.1.1,402.70187999999996,TJ,N2O,3.9,kg/TJ,1570.5373319999999,Gas Oil combustion consumption by freight transport,AR-A,SESCO,annual,kg,787158f2-6808-3f3b-a443-ae9d3639bc5c +2022,San Juan,II.1.1,101.60556,TJ,CO2,74100.0,kg/TJ,7528971.995999999,Gas Oil combustion consumption by freight transport,AR-J,SESCO,annual,kg,b580eda3-d8d1-30e8-9e5f-7e1dda278daf +2022,San Juan,II.1.1,101.60556,TJ,CH4,3.9,kg/TJ,396.261684,Gas Oil combustion consumption by freight transport,AR-J,SESCO,annual,kg,3a1217e4-5477-366c-9b0d-2652e8b5df62 +2022,San Juan,II.1.1,101.60556,TJ,N2O,3.9,kg/TJ,396.261684,Gas Oil combustion consumption by freight transport,AR-J,SESCO,annual,kg,3a1217e4-5477-366c-9b0d-2652e8b5df62 +2022,San Luis,II.1.1,204.83651999999998,TJ,CO2,74100.0,kg/TJ,15178386.132,Gas Oil combustion consumption by freight transport,AR-D,SESCO,annual,kg,570322ac-7e0d-3a84-bec5-5c0814e5bb83 +2022,San Luis,II.1.1,204.83651999999998,TJ,CH4,3.9,kg/TJ,798.8624279999999,Gas Oil combustion consumption by freight transport,AR-D,SESCO,annual,kg,08ff1256-db81-3a70-a828-04dfeae3e01e +2022,San Luis,II.1.1,204.83651999999998,TJ,N2O,3.9,kg/TJ,798.8624279999999,Gas Oil combustion consumption by freight transport,AR-D,SESCO,annual,kg,08ff1256-db81-3a70-a828-04dfeae3e01e +2022,Santa Cruz,II.1.1,409.81752,TJ,CO2,74100.0,kg/TJ,30367478.232,Gas Oil combustion consumption by freight transport,AR-Z,SESCO,annual,kg,73c6f707-5834-3b05-b74c-a5b50764083e +2022,Santa Cruz,II.1.1,409.81752,TJ,CH4,3.9,kg/TJ,1598.2883279999999,Gas Oil combustion consumption by freight transport,AR-Z,SESCO,annual,kg,6991f408-2840-3c31-9ffe-ca787a30e548 +2022,Santa Cruz,II.1.1,409.81752,TJ,N2O,3.9,kg/TJ,1598.2883279999999,Gas Oil combustion consumption by freight transport,AR-Z,SESCO,annual,kg,6991f408-2840-3c31-9ffe-ca787a30e548 +2022,Santa Fe,II.1.1,1246.03164,TJ,CO2,74100.0,kg/TJ,92330944.52399999,Gas Oil combustion consumption by freight transport,AR-S,SESCO,annual,kg,3d89455b-1995-30cc-ab70-73a1eee62b94 +2022,Santa Fe,II.1.1,1246.03164,TJ,CH4,3.9,kg/TJ,4859.523396,Gas Oil combustion consumption by freight transport,AR-S,SESCO,annual,kg,a9239340-849f-3006-988e-d12e9ebf2123 +2022,Santa Fe,II.1.1,1246.03164,TJ,N2O,3.9,kg/TJ,4859.523396,Gas Oil combustion consumption by freight transport,AR-S,SESCO,annual,kg,a9239340-849f-3006-988e-d12e9ebf2123 +2022,Santiago del Estero,II.1.1,217.623,TJ,CO2,74100.0,kg/TJ,16125864.299999999,Gas Oil combustion consumption by freight transport,AR-G,SESCO,annual,kg,8790affc-12d8-318c-9e16-752857b56d35 +2022,Santiago del Estero,II.1.1,217.623,TJ,CH4,3.9,kg/TJ,848.7297,Gas Oil combustion consumption by freight transport,AR-G,SESCO,annual,kg,64ae34b6-e475-3293-95f6-af49dc7cbb97 +2022,Santiago del Estero,II.1.1,217.623,TJ,N2O,3.9,kg/TJ,848.7297,Gas Oil combustion consumption by freight transport,AR-G,SESCO,annual,kg,64ae34b6-e475-3293-95f6-af49dc7cbb97 +2022,Tierra del Fuego,II.1.1,144.44388,TJ,CO2,74100.0,kg/TJ,10703291.508000001,Gas Oil combustion consumption by freight transport,AR-V,SESCO,annual,kg,d24a2728-abfe-38d9-86ac-966ac67f5822 +2022,Tierra del Fuego,II.1.1,144.44388,TJ,CH4,3.9,kg/TJ,563.331132,Gas Oil combustion consumption by freight transport,AR-V,SESCO,annual,kg,998b1cb2-c83d-37ec-a7da-a1e25d16626e +2022,Tierra del Fuego,II.1.1,144.44388,TJ,N2O,3.9,kg/TJ,563.331132,Gas Oil combustion consumption by freight transport,AR-V,SESCO,annual,kg,998b1cb2-c83d-37ec-a7da-a1e25d16626e +2022,Tucuman,II.1.1,229.362,TJ,CO2,74100.0,kg/TJ,16995724.2,Gas Oil combustion consumption by freight transport,AR-T,SESCO,annual,kg,3ee7793e-e55f-372f-b989-4466d85d4a4f +2022,Tucuman,II.1.1,229.362,TJ,CH4,3.9,kg/TJ,894.5118,Gas Oil combustion consumption by freight transport,AR-T,SESCO,annual,kg,93ee88b5-0301-304e-b96f-d26474be486c +2022,Tucuman,II.1.1,229.362,TJ,N2O,3.9,kg/TJ,894.5118,Gas Oil combustion consumption by freight transport,AR-T,SESCO,annual,kg,93ee88b5-0301-304e-b96f-d26474be486c +2022,Neuquén,II.1.1,2.327522,TJ,CO2,71500.0,kg/TJ,166417.823,Jet Kerosene combustion consumption by freight transport,AR-Q,SESCO,annual,kg,a718028d-e6f9-372c-b528-ccb4b7b32e03 +2022,Neuquén,II.1.1,2.327522,TJ,CH4,0.5,kg/TJ,1.163761,Jet Kerosene combustion consumption by freight transport,AR-Q,SESCO,annual,kg,082c572d-b3f7-3ff9-b914-a787ef1048a7 +2022,Neuquén,II.1.1,2.327522,TJ,N2O,2.0,kg/TJ,4.655044,Jet Kerosene combustion consumption by freight transport,AR-Q,SESCO,annual,kg,3e9a4c02-f58f-3ecf-963a-f658169e9029 +2022,Buenos Aires,II.1.1,730.11862,TJ,CO2,73300.0,kg/TJ,53517694.846,Naphtha combustion consumption by freight transport,AR-B,SESCO,annual,kg,d0c89f85-154d-3075-a073-1157f85f7f73 +2022,Buenos Aires,II.1.1,730.11862,TJ,CH4,0.5,kg/TJ,365.05931,Naphtha combustion consumption by freight transport,AR-B,SESCO,annual,kg,1d8fa7a1-06c5-3c99-bf58-60fcb78ee4c4 +2022,Buenos Aires,II.1.1,730.11862,TJ,N2O,2.0,kg/TJ,1460.23724,Naphtha combustion consumption by freight transport,AR-B,SESCO,annual,kg,685f060d-b2e8-376f-a30e-cb500d19215a +2022,Capital Federal,II.1.1,97.82657499999999,TJ,CO2,73300.0,kg/TJ,7170687.9475,Naphtha combustion consumption by freight transport,AR-C,SESCO,annual,kg,b42a3fb7-7e79-33b1-8f9c-73228843587b +2022,Capital Federal,II.1.1,97.82657499999999,TJ,CH4,0.5,kg/TJ,48.913287499999996,Naphtha combustion consumption by freight transport,AR-C,SESCO,annual,kg,25b58b65-44e2-37e9-b2ad-a790deb37764 +2022,Capital Federal,II.1.1,97.82657499999999,TJ,N2O,2.0,kg/TJ,195.65314999999998,Naphtha combustion consumption by freight transport,AR-C,SESCO,annual,kg,c21b4f07-640d-3ad1-962e-ddede0ce7b1b +2022,Catamarca,II.1.1,5.311075,TJ,CO2,73300.0,kg/TJ,389301.7975,Naphtha combustion consumption by freight transport,AR-K,SESCO,annual,kg,f887c575-6c62-39b6-b087-31bd3105dcba +2022,Catamarca,II.1.1,5.311075,TJ,CH4,0.5,kg/TJ,2.6555375,Naphtha combustion consumption by freight transport,AR-K,SESCO,annual,kg,2531c7d8-6cf6-3b40-8702-50956f20da6e +2022,Catamarca,II.1.1,5.311075,TJ,N2O,2.0,kg/TJ,10.62215,Naphtha combustion consumption by freight transport,AR-K,SESCO,annual,kg,b38b83a5-3970-3dbb-be06-d086ec64b2b1 +2022,Chaco,II.1.1,20.07929,TJ,CO2,73300.0,kg/TJ,1471811.957,Naphtha combustion consumption by freight transport,AR-H,SESCO,annual,kg,6ca3288b-bb30-3b1c-b51f-7b43b848512d +2022,Chaco,II.1.1,20.07929,TJ,CH4,0.5,kg/TJ,10.039645,Naphtha combustion consumption by freight transport,AR-H,SESCO,annual,kg,451cad8d-20a9-37f1-9427-8206f68bc67d +2022,Chaco,II.1.1,20.07929,TJ,N2O,2.0,kg/TJ,40.15858,Naphtha combustion consumption by freight transport,AR-H,SESCO,annual,kg,88f0f400-4f4e-315e-b246-1fdaaf686ae8 +2022,Chubut,II.1.1,24.46521,TJ,CO2,73300.0,kg/TJ,1793299.893,Naphtha combustion consumption by freight transport,AR-U,SESCO,annual,kg,03514858-5a9b-3270-aa95-d8e2b6fca2c2 +2022,Chubut,II.1.1,24.46521,TJ,CH4,0.5,kg/TJ,12.232605,Naphtha combustion consumption by freight transport,AR-U,SESCO,annual,kg,8eafc880-5042-357b-917d-e3e170debd14 +2022,Chubut,II.1.1,24.46521,TJ,N2O,2.0,kg/TJ,48.93042,Naphtha combustion consumption by freight transport,AR-U,SESCO,annual,kg,d5f856d3-0fe7-369b-a1fa-cbe62d6abdb5 +2022,Corrientes,II.1.1,20.319145,TJ,CO2,73300.0,kg/TJ,1489393.3284999998,Naphtha combustion consumption by freight transport,AR-W,SESCO,annual,kg,15f23f67-6fdb-3531-ac55-1355a5b77644 +2022,Corrientes,II.1.1,20.319145,TJ,CH4,0.5,kg/TJ,10.1595725,Naphtha combustion consumption by freight transport,AR-W,SESCO,annual,kg,2d631684-62f6-3987-995a-bd0bfa20d7d1 +2022,Corrientes,II.1.1,20.319145,TJ,N2O,2.0,kg/TJ,40.63829,Naphtha combustion consumption by freight transport,AR-W,SESCO,annual,kg,052cc8c8-b649-3863-8d90-2c1b0ab6916d +2022,Córdoba,II.1.1,120.6128,TJ,CO2,73300.0,kg/TJ,8840918.24,Naphtha combustion consumption by freight transport,AR-X,SESCO,annual,kg,a4823a9d-4de4-3cac-97d9-eb320e8ef7d3 +2022,Córdoba,II.1.1,120.6128,TJ,CH4,0.5,kg/TJ,60.3064,Naphtha combustion consumption by freight transport,AR-X,SESCO,annual,kg,c8c1ef06-5815-306a-af28-b317c277abbc +2022,Córdoba,II.1.1,120.6128,TJ,N2O,2.0,kg/TJ,241.2256,Naphtha combustion consumption by freight transport,AR-X,SESCO,annual,kg,306dac2d-cd80-3a7c-a30a-d3045b272515 +2022,Entre Rios,II.1.1,43.413754999999995,TJ,CO2,73300.0,kg/TJ,3182228.2414999995,Naphtha combustion consumption by freight transport,AR-E,SESCO,annual,kg,3f605aea-0950-3b5c-b4a0-7553b7a703cb +2022,Entre Rios,II.1.1,43.413754999999995,TJ,CH4,0.5,kg/TJ,21.706877499999997,Naphtha combustion consumption by freight transport,AR-E,SESCO,annual,kg,b6bc23ff-a49d-3e8a-85d8-d771d5352a2d +2022,Entre Rios,II.1.1,43.413754999999995,TJ,N2O,2.0,kg/TJ,86.82750999999999,Naphtha combustion consumption by freight transport,AR-E,SESCO,annual,kg,05e7305f-0b9a-38ea-98b8-3c8798bb2a6a +2022,Formosa,II.1.1,6.476084999999999,TJ,CO2,73300.0,kg/TJ,474697.03049999994,Naphtha combustion consumption by freight transport,AR-P,SESCO,annual,kg,b10f9cd1-097e-3404-922d-9b08717bbc0a +2022,Formosa,II.1.1,6.476084999999999,TJ,CH4,0.5,kg/TJ,3.2380424999999997,Naphtha combustion consumption by freight transport,AR-P,SESCO,annual,kg,189c982f-f00c-393d-8b0c-7a283bf81230 +2022,Formosa,II.1.1,6.476084999999999,TJ,N2O,2.0,kg/TJ,12.952169999999999,Naphtha combustion consumption by freight transport,AR-P,SESCO,annual,kg,c56fcc04-9602-37ca-9209-06547edbf45a +2022,Jujuy,II.1.1,9.868319999999999,TJ,CO2,73300.0,kg/TJ,723347.8559999999,Naphtha combustion consumption by freight transport,AR-Y,SESCO,annual,kg,af75dd1f-6238-3223-918a-03d12a742296 +2022,Jujuy,II.1.1,9.868319999999999,TJ,CH4,0.5,kg/TJ,4.934159999999999,Naphtha combustion consumption by freight transport,AR-Y,SESCO,annual,kg,6cad5fec-649b-3f5a-ac3a-1ed1e94310f8 +2022,Jujuy,II.1.1,9.868319999999999,TJ,N2O,2.0,kg/TJ,19.736639999999998,Naphtha combustion consumption by freight transport,AR-Y,SESCO,annual,kg,c7259e87-a792-3f5d-b09e-f0efa19d316d +2022,La Pampa,II.1.1,12.301134999999999,TJ,CO2,73300.0,kg/TJ,901673.1954999999,Naphtha combustion consumption by freight transport,AR-L,SESCO,annual,kg,060a55ed-e4e8-3afd-a2b0-db0a868ad1e0 +2022,La Pampa,II.1.1,12.301134999999999,TJ,CH4,0.5,kg/TJ,6.150567499999999,Naphtha combustion consumption by freight transport,AR-L,SESCO,annual,kg,2529a69a-8d04-3cd0-9b77-ae75188f1c8e +2022,La Pampa,II.1.1,12.301134999999999,TJ,N2O,2.0,kg/TJ,24.602269999999997,Naphtha combustion consumption by freight transport,AR-L,SESCO,annual,kg,c55d3097-97d4-35cd-bfc0-4aeb134f78a9 +2022,La Rioja,II.1.1,9.148755,TJ,CO2,73300.0,kg/TJ,670603.7415,Naphtha combustion consumption by freight transport,AR-F,SESCO,annual,kg,7f8f040e-9cac-3e69-8b3d-d2ecc99600a9 +2022,La Rioja,II.1.1,9.148755,TJ,CH4,0.5,kg/TJ,4.5743775,Naphtha combustion consumption by freight transport,AR-F,SESCO,annual,kg,de927766-c806-31d9-a4ff-52e907385cd1 +2022,La Rioja,II.1.1,9.148755,TJ,N2O,2.0,kg/TJ,18.29751,Naphtha combustion consumption by freight transport,AR-F,SESCO,annual,kg,056cde6d-5d9e-3649-8ce3-4c8c2c3d3df2 +2022,Mendoza,II.1.1,55.509299999999996,TJ,CO2,73300.0,kg/TJ,4068831.69,Naphtha combustion consumption by freight transport,AR-M,SESCO,annual,kg,94bba056-cefe-3a1f-8a12-1925d35f14b0 +2022,Mendoza,II.1.1,55.509299999999996,TJ,CH4,0.5,kg/TJ,27.754649999999998,Naphtha combustion consumption by freight transport,AR-M,SESCO,annual,kg,a22b017a-3d06-3aba-b0d3-ab70d7a5f139 +2022,Mendoza,II.1.1,55.509299999999996,TJ,N2O,2.0,kg/TJ,111.01859999999999,Naphtha combustion consumption by freight transport,AR-M,SESCO,annual,kg,43167fa5-d5d2-3666-ba21-ff4cdbc0c611 +2022,Misiones,II.1.1,18.674425,TJ,CO2,73300.0,kg/TJ,1368835.3525,Naphtha combustion consumption by freight transport,AR-N,SESCO,annual,kg,73bc24b5-2f42-351e-ad94-61c1a7d5c07f +2022,Misiones,II.1.1,18.674425,TJ,CH4,0.5,kg/TJ,9.3372125,Naphtha combustion consumption by freight transport,AR-N,SESCO,annual,kg,a5355ca6-7140-34f0-bec4-53db9e545250 +2022,Misiones,II.1.1,18.674425,TJ,N2O,2.0,kg/TJ,37.34885,Naphtha combustion consumption by freight transport,AR-N,SESCO,annual,kg,65515d7f-8fb7-3d59-8844-076d3c55e0e3 +2022,Neuquén,II.1.1,22.47784,TJ,CO2,73300.0,kg/TJ,1647625.672,Naphtha combustion consumption by freight transport,AR-Q,SESCO,annual,kg,82103afd-57eb-3b01-b7c2-c6239eeb612b +2022,Neuquén,II.1.1,22.47784,TJ,CH4,0.5,kg/TJ,11.23892,Naphtha combustion consumption by freight transport,AR-Q,SESCO,annual,kg,08d0a458-04c6-372d-9d0d-31991c0a9aec +2022,Neuquén,II.1.1,22.47784,TJ,N2O,2.0,kg/TJ,44.95568,Naphtha combustion consumption by freight transport,AR-Q,SESCO,annual,kg,a414939d-b058-3609-a120-b0140ecd268e +2022,Rio Negro,II.1.1,25.56169,TJ,CO2,73300.0,kg/TJ,1873671.8769999999,Naphtha combustion consumption by freight transport,AR-R,SESCO,annual,kg,7554086c-144b-3a2d-b60c-64a12f16fed4 +2022,Rio Negro,II.1.1,25.56169,TJ,CH4,0.5,kg/TJ,12.780845,Naphtha combustion consumption by freight transport,AR-R,SESCO,annual,kg,5797febe-60fc-357a-9917-aa50cf13bd9e +2022,Rio Negro,II.1.1,25.56169,TJ,N2O,2.0,kg/TJ,51.12338,Naphtha combustion consumption by freight transport,AR-R,SESCO,annual,kg,0b85d226-7ff9-3a31-a073-ce20b18a2901 +2022,Salta,II.1.1,33.16852,TJ,CO2,73300.0,kg/TJ,2431252.5160000003,Naphtha combustion consumption by freight transport,AR-A,SESCO,annual,kg,c9540b6b-b838-34b2-a90d-d71a0978d56a +2022,Salta,II.1.1,33.16852,TJ,CH4,0.5,kg/TJ,16.58426,Naphtha combustion consumption by freight transport,AR-A,SESCO,annual,kg,b94835a3-6b2b-3616-a4cc-2f749fd85c68 +2022,Salta,II.1.1,33.16852,TJ,N2O,2.0,kg/TJ,66.33704,Naphtha combustion consumption by freight transport,AR-A,SESCO,annual,kg,e51d7ee2-90ef-3d8b-9b29-141264af5ac6 +2022,San Juan,II.1.1,14.699684999999999,TJ,CO2,73300.0,kg/TJ,1077486.9105,Naphtha combustion consumption by freight transport,AR-J,SESCO,annual,kg,e2dd2c17-e391-333f-8efe-7e2f23601ca7 +2022,San Juan,II.1.1,14.699684999999999,TJ,CH4,0.5,kg/TJ,7.349842499999999,Naphtha combustion consumption by freight transport,AR-J,SESCO,annual,kg,12b0ed15-817e-3dbc-989e-db465db1dce4 +2022,San Juan,II.1.1,14.699684999999999,TJ,N2O,2.0,kg/TJ,29.399369999999998,Naphtha combustion consumption by freight transport,AR-J,SESCO,annual,kg,cdb22fbe-1b85-3ac2-b076-4843fbc44467 +2022,San Luis,II.1.1,12.712315,TJ,CO2,73300.0,kg/TJ,931812.6895,Naphtha combustion consumption by freight transport,AR-D,SESCO,annual,kg,b40d838d-e35a-3bc2-a810-eb8612757ba5 +2022,San Luis,II.1.1,12.712315,TJ,CH4,0.5,kg/TJ,6.3561575,Naphtha combustion consumption by freight transport,AR-D,SESCO,annual,kg,13145368-db63-399b-afb3-0ed361648fbf +2022,San Luis,II.1.1,12.712315,TJ,N2O,2.0,kg/TJ,25.42463,Naphtha combustion consumption by freight transport,AR-D,SESCO,annual,kg,9d744d3f-2c8a-3779-b2b1-dcd31cefcf5b +2022,Santa Cruz,II.1.1,13.534675,TJ,CO2,73300.0,kg/TJ,992091.6775,Naphtha combustion consumption by freight transport,AR-Z,SESCO,annual,kg,6e971820-09cf-3e42-878d-73915a801172 +2022,Santa Cruz,II.1.1,13.534675,TJ,CH4,0.5,kg/TJ,6.7673375,Naphtha combustion consumption by freight transport,AR-Z,SESCO,annual,kg,5c3653ac-416f-3689-aea2-a857d345ae7c +2022,Santa Cruz,II.1.1,13.534675,TJ,N2O,2.0,kg/TJ,27.06935,Naphtha combustion consumption by freight transport,AR-Z,SESCO,annual,kg,48c50a26-7f93-3351-8b1a-8d043d5c89a0 +2022,Santa Fe,II.1.1,111.90948999999999,TJ,CO2,73300.0,kg/TJ,8202965.617,Naphtha combustion consumption by freight transport,AR-S,SESCO,annual,kg,b174d6da-c606-3c68-9a1b-17968533b85a +2022,Santa Fe,II.1.1,111.90948999999999,TJ,CH4,0.5,kg/TJ,55.954744999999996,Naphtha combustion consumption by freight transport,AR-S,SESCO,annual,kg,b3d73272-a185-3360-9003-0c2cae5d11a5 +2022,Santa Fe,II.1.1,111.90948999999999,TJ,N2O,2.0,kg/TJ,223.81897999999998,Naphtha combustion consumption by freight transport,AR-S,SESCO,annual,kg,bfaf356e-05ee-3d06-b722-e56d77e60ae5 +2022,Santiago del Estero,II.1.1,10.519355,TJ,CO2,73300.0,kg/TJ,771068.7215,Naphtha combustion consumption by freight transport,AR-G,SESCO,annual,kg,5ccc17d8-b45f-3cd1-9099-1b0bbcecf942 +2022,Santiago del Estero,II.1.1,10.519355,TJ,CH4,0.5,kg/TJ,5.2596775,Naphtha combustion consumption by freight transport,AR-G,SESCO,annual,kg,5bf3806c-3fda-3e55-b834-e7338bc30172 +2022,Santiago del Estero,II.1.1,10.519355,TJ,N2O,2.0,kg/TJ,21.03871,Naphtha combustion consumption by freight transport,AR-G,SESCO,annual,kg,a668826b-d628-398e-8c74-5a68a9cb8e8e +2022,Tierra del Fuego,II.1.1,12.88364,TJ,CO2,73300.0,kg/TJ,944370.812,Naphtha combustion consumption by freight transport,AR-V,SESCO,annual,kg,6f172269-b9bc-3944-a98d-f2c000260e6d +2022,Tierra del Fuego,II.1.1,12.88364,TJ,CH4,0.5,kg/TJ,6.44182,Naphtha combustion consumption by freight transport,AR-V,SESCO,annual,kg,ab7ceb3e-c676-3f9b-8ecc-3973d32a9a96 +2022,Tierra del Fuego,II.1.1,12.88364,TJ,N2O,2.0,kg/TJ,25.76728,Naphtha combustion consumption by freight transport,AR-V,SESCO,annual,kg,c5c0f7ce-3b82-3267-80f1-63370fb353f1 +2022,Tucuman,II.1.1,36.45796,TJ,CO2,73300.0,kg/TJ,2672368.468,Naphtha combustion consumption by freight transport,AR-T,SESCO,annual,kg,0454d7c2-b50f-399c-b3ab-92650dcd3650 +2022,Tucuman,II.1.1,36.45796,TJ,CH4,0.5,kg/TJ,18.22898,Naphtha combustion consumption by freight transport,AR-T,SESCO,annual,kg,e7d4931e-ba02-3473-be35-1733f6b8b67d +2022,Tucuman,II.1.1,36.45796,TJ,N2O,2.0,kg/TJ,72.91592,Naphtha combustion consumption by freight transport,AR-T,SESCO,annual,kg,c26e4c36-663b-3113-9918-1635540915a8 +2022,Buenos Aires,II.1.1,762.156395,TJ,CO2,73300.0,kg/TJ,55866063.7535,Naphtha combustion consumption by freight transport,AR-B,SESCO,annual,kg,1bc1d733-bbb9-3d98-8e30-bdcae257a237 +2022,Buenos Aires,II.1.1,762.156395,TJ,CH4,0.5,kg/TJ,381.0781975,Naphtha combustion consumption by freight transport,AR-B,SESCO,annual,kg,62044ca4-8856-3115-9b42-0f817683b0be +2022,Buenos Aires,II.1.1,762.156395,TJ,N2O,2.0,kg/TJ,1524.31279,Naphtha combustion consumption by freight transport,AR-B,SESCO,annual,kg,2b320de3-2d3c-3a63-9031-3a7dd8657814 +2022,Capital Federal,II.1.1,135.07263,TJ,CO2,73300.0,kg/TJ,9900823.779000001,Naphtha combustion consumption by freight transport,AR-C,SESCO,annual,kg,13b0e8a1-0b5a-3b42-9538-a797f04c9a94 +2022,Capital Federal,II.1.1,135.07263,TJ,CH4,0.5,kg/TJ,67.536315,Naphtha combustion consumption by freight transport,AR-C,SESCO,annual,kg,33e234fa-19a9-38b2-bafd-6e3b52396ba8 +2022,Capital Federal,II.1.1,135.07263,TJ,N2O,2.0,kg/TJ,270.14526,Naphtha combustion consumption by freight transport,AR-C,SESCO,annual,kg,64df3a67-2725-3552-82ad-e5543c6d1098 +2022,Catamarca,II.1.1,2.227225,TJ,CO2,73300.0,kg/TJ,163255.5925,Naphtha combustion consumption by freight transport,AR-K,SESCO,annual,kg,808f2e3b-4116-3e48-b118-23d24a50ef76 +2022,Catamarca,II.1.1,2.227225,TJ,CH4,0.5,kg/TJ,1.1136125,Naphtha combustion consumption by freight transport,AR-K,SESCO,annual,kg,bf4e7c7c-cb1f-374b-9f65-6f1bbe2dc535 +2022,Catamarca,II.1.1,2.227225,TJ,N2O,2.0,kg/TJ,4.45445,Naphtha combustion consumption by freight transport,AR-K,SESCO,annual,kg,1d207f9c-985e-3e35-ae14-c0533b79af1c +2022,Chaco,II.1.1,18.742955,TJ,CO2,73300.0,kg/TJ,1373858.6014999999,Naphtha combustion consumption by freight transport,AR-H,SESCO,annual,kg,8eb183fb-8527-33c7-a723-371bc7e28c9d +2022,Chaco,II.1.1,18.742955,TJ,CH4,0.5,kg/TJ,9.3714775,Naphtha combustion consumption by freight transport,AR-H,SESCO,annual,kg,587b4bcb-054e-3ad6-9a2c-468f7f3c43e9 +2022,Chaco,II.1.1,18.742955,TJ,N2O,2.0,kg/TJ,37.48591,Naphtha combustion consumption by freight transport,AR-H,SESCO,annual,kg,3f30a94e-6c2a-3b44-9a2d-ead87d0f703c +2022,Chubut,II.1.1,17.54368,TJ,CO2,73300.0,kg/TJ,1285951.744,Naphtha combustion consumption by freight transport,AR-U,SESCO,annual,kg,928ec66e-e2c9-36ab-a3bb-fb204932f022 +2022,Chubut,II.1.1,17.54368,TJ,CH4,0.5,kg/TJ,8.77184,Naphtha combustion consumption by freight transport,AR-U,SESCO,annual,kg,448571a0-a1a0-3a86-871e-cdb93eb109ba +2022,Chubut,II.1.1,17.54368,TJ,N2O,2.0,kg/TJ,35.08736,Naphtha combustion consumption by freight transport,AR-U,SESCO,annual,kg,cdb9fcfe-caec-3b0e-b64e-a0278de53946 +2022,Corrientes,II.1.1,24.259619999999998,TJ,CO2,73300.0,kg/TJ,1778230.146,Naphtha combustion consumption by freight transport,AR-W,SESCO,annual,kg,f7e62983-b2f3-3d0a-8529-3e55c2f11168 +2022,Corrientes,II.1.1,24.259619999999998,TJ,CH4,0.5,kg/TJ,12.129809999999999,Naphtha combustion consumption by freight transport,AR-W,SESCO,annual,kg,04829b8f-6914-3cb6-9f7a-79e667e00e36 +2022,Corrientes,II.1.1,24.259619999999998,TJ,N2O,2.0,kg/TJ,48.519239999999996,Naphtha combustion consumption by freight transport,AR-W,SESCO,annual,kg,fbe49c19-99bf-30e3-a10f-b237682a44be +2022,Córdoba,II.1.1,148.538775,TJ,CO2,73300.0,kg/TJ,10887892.2075,Naphtha combustion consumption by freight transport,AR-X,SESCO,annual,kg,8f3b493f-6304-340f-952d-bb0950270f3a +2022,Córdoba,II.1.1,148.538775,TJ,CH4,0.5,kg/TJ,74.2693875,Naphtha combustion consumption by freight transport,AR-X,SESCO,annual,kg,032280fa-b861-3f21-bffe-009437478a8e +2022,Córdoba,II.1.1,148.538775,TJ,N2O,2.0,kg/TJ,297.07755,Naphtha combustion consumption by freight transport,AR-X,SESCO,annual,kg,408afe42-37df-3701-beb5-7a9afea7fef1 +2022,Entre Rios,II.1.1,40.09005,TJ,CO2,73300.0,kg/TJ,2938600.665,Naphtha combustion consumption by freight transport,AR-E,SESCO,annual,kg,870f27b4-0237-31cf-a73e-28ec784c7fcd +2022,Entre Rios,II.1.1,40.09005,TJ,CH4,0.5,kg/TJ,20.045025,Naphtha combustion consumption by freight transport,AR-E,SESCO,annual,kg,4792ee63-d887-3407-97c5-9d45d6156164 +2022,Entre Rios,II.1.1,40.09005,TJ,N2O,2.0,kg/TJ,80.1801,Naphtha combustion consumption by freight transport,AR-E,SESCO,annual,kg,4d4004f0-6cd2-3df5-a93e-c54cede036df +2022,Formosa,II.1.1,4.18033,TJ,CO2,73300.0,kg/TJ,306418.18899999995,Naphtha combustion consumption by freight transport,AR-P,SESCO,annual,kg,da2f8357-a8ba-3d5f-9e6b-c5e5e33f720d +2022,Formosa,II.1.1,4.18033,TJ,CH4,0.5,kg/TJ,2.090165,Naphtha combustion consumption by freight transport,AR-P,SESCO,annual,kg,fdd3b6d7-22a4-3851-b31d-148c9b8ec402 +2022,Formosa,II.1.1,4.18033,TJ,N2O,2.0,kg/TJ,8.36066,Naphtha combustion consumption by freight transport,AR-P,SESCO,annual,kg,61186fcd-6db5-3bbc-9cac-b105bf7cea86 +2022,Jujuy,II.1.1,5.41387,TJ,CO2,73300.0,kg/TJ,396836.67100000003,Naphtha combustion consumption by freight transport,AR-Y,SESCO,annual,kg,b5caff98-ed52-33c0-b956-4d2ddab9b351 +2022,Jujuy,II.1.1,5.41387,TJ,CH4,0.5,kg/TJ,2.706935,Naphtha combustion consumption by freight transport,AR-Y,SESCO,annual,kg,f7baefe4-c314-3512-8463-f5e4ad47fda1 +2022,Jujuy,II.1.1,5.41387,TJ,N2O,2.0,kg/TJ,10.82774,Naphtha combustion consumption by freight transport,AR-Y,SESCO,annual,kg,5f0d0535-805f-3b21-9138-ecbd8d9bb1b6 +2022,La Pampa,II.1.1,15.247924999999999,TJ,CO2,73300.0,kg/TJ,1117672.9024999999,Naphtha combustion consumption by freight transport,AR-L,SESCO,annual,kg,5355e0fe-1728-3129-b42d-c608e4282db8 +2022,La Pampa,II.1.1,15.247924999999999,TJ,CH4,0.5,kg/TJ,7.623962499999999,Naphtha combustion consumption by freight transport,AR-L,SESCO,annual,kg,41b0cf2a-6664-398a-9ea1-a5599493554e +2022,La Pampa,II.1.1,15.247924999999999,TJ,N2O,2.0,kg/TJ,30.495849999999997,Naphtha combustion consumption by freight transport,AR-L,SESCO,annual,kg,815a5918-c261-3bcb-a4a0-29fce461905a +2022,La Rioja,II.1.1,7.8809499999999995,TJ,CO2,73300.0,kg/TJ,577673.635,Naphtha combustion consumption by freight transport,AR-F,SESCO,annual,kg,81c9464a-5d69-390b-9a04-1d14ced4c7a4 +2022,La Rioja,II.1.1,7.8809499999999995,TJ,CH4,0.5,kg/TJ,3.9404749999999997,Naphtha combustion consumption by freight transport,AR-F,SESCO,annual,kg,bbd6cf5c-476c-3902-9933-2fdb9a383d19 +2022,La Rioja,II.1.1,7.8809499999999995,TJ,N2O,2.0,kg/TJ,15.761899999999999,Naphtha combustion consumption by freight transport,AR-F,SESCO,annual,kg,4aa5f6b7-8068-3fbb-a0cc-e777037711b1 +2022,Mendoza,II.1.1,77.43889999999999,TJ,CO2,73300.0,kg/TJ,5676271.369999999,Naphtha combustion consumption by freight transport,AR-M,SESCO,annual,kg,17e004c7-578e-32b2-9206-6bc271890134 +2022,Mendoza,II.1.1,77.43889999999999,TJ,CH4,0.5,kg/TJ,38.719449999999995,Naphtha combustion consumption by freight transport,AR-M,SESCO,annual,kg,c00ee929-f048-3966-8e52-099e2a429792 +2022,Mendoza,II.1.1,77.43889999999999,TJ,N2O,2.0,kg/TJ,154.87779999999998,Naphtha combustion consumption by freight transport,AR-M,SESCO,annual,kg,ba99686e-b31e-36de-a946-2a86731dbfaa +2022,Misiones,II.1.1,19.428255,TJ,CO2,73300.0,kg/TJ,1424091.0915,Naphtha combustion consumption by freight transport,AR-N,SESCO,annual,kg,261c106d-9405-35d8-a6e9-9848054b85c7 +2022,Misiones,II.1.1,19.428255,TJ,CH4,0.5,kg/TJ,9.7141275,Naphtha combustion consumption by freight transport,AR-N,SESCO,annual,kg,cdb465ef-3f97-3edf-9afb-a769b8a7c7cb +2022,Misiones,II.1.1,19.428255,TJ,N2O,2.0,kg/TJ,38.85651,Naphtha combustion consumption by freight transport,AR-N,SESCO,annual,kg,2899e15c-b0eb-3c51-94ca-6de7623911f5 +2022,Neuquén,II.1.1,47.765409999999996,TJ,CO2,73300.0,kg/TJ,3501204.553,Naphtha combustion consumption by freight transport,AR-Q,SESCO,annual,kg,418c9af0-eb24-329b-8326-3dbc077dba63 +2022,Neuquén,II.1.1,47.765409999999996,TJ,CH4,0.5,kg/TJ,23.882704999999998,Naphtha combustion consumption by freight transport,AR-Q,SESCO,annual,kg,e7f80bde-0eef-3150-b68f-8d97c6f2f73a +2022,Neuquén,II.1.1,47.765409999999996,TJ,N2O,2.0,kg/TJ,95.53081999999999,Naphtha combustion consumption by freight transport,AR-Q,SESCO,annual,kg,96278038-504a-374a-afc5-e3191ead4e71 +2022,Rio Negro,II.1.1,43.345225,TJ,CO2,73300.0,kg/TJ,3177204.9925,Naphtha combustion consumption by freight transport,AR-R,SESCO,annual,kg,ab4c2afa-27d5-3f2a-b805-29c5f600ed01 +2022,Rio Negro,II.1.1,43.345225,TJ,CH4,0.5,kg/TJ,21.6726125,Naphtha combustion consumption by freight transport,AR-R,SESCO,annual,kg,57b0cdc8-9699-34b2-96da-13c7414b80de +2022,Rio Negro,II.1.1,43.345225,TJ,N2O,2.0,kg/TJ,86.69045,Naphtha combustion consumption by freight transport,AR-R,SESCO,annual,kg,73bba719-1ed1-3d7c-9ddd-2b5ef70f43ee +2022,Salta,II.1.1,25.76728,TJ,CO2,73300.0,kg/TJ,1888741.624,Naphtha combustion consumption by freight transport,AR-A,SESCO,annual,kg,3a8b6a2c-25f3-3cef-9603-8e7b8a646076 +2022,Salta,II.1.1,25.76728,TJ,CH4,0.5,kg/TJ,12.88364,Naphtha combustion consumption by freight transport,AR-A,SESCO,annual,kg,9322457a-227f-34b1-825f-e68d7440fb42 +2022,Salta,II.1.1,25.76728,TJ,N2O,2.0,kg/TJ,51.53456,Naphtha combustion consumption by freight transport,AR-A,SESCO,annual,kg,5d749db7-531a-3519-b7b5-f78e379b7fdf +2022,San Juan,II.1.1,10.039645,TJ,CO2,73300.0,kg/TJ,735905.9785,Naphtha combustion consumption by freight transport,AR-J,SESCO,annual,kg,746a15ea-9560-3254-a45d-fccc06bc4b93 +2022,San Juan,II.1.1,10.039645,TJ,CH4,0.5,kg/TJ,5.0198225,Naphtha combustion consumption by freight transport,AR-J,SESCO,annual,kg,76f3bb03-8c2a-3627-999c-c62d76fc31d2 +2022,San Juan,II.1.1,10.039645,TJ,N2O,2.0,kg/TJ,20.07929,Naphtha combustion consumption by freight transport,AR-J,SESCO,annual,kg,cb47adb2-4fd9-3bf6-9e0e-1747a9c3ad35 +2022,San Luis,II.1.1,10.75921,TJ,CO2,73300.0,kg/TJ,788650.093,Naphtha combustion consumption by freight transport,AR-D,SESCO,annual,kg,0174146c-4264-39cd-9f08-52a283febd97 +2022,San Luis,II.1.1,10.75921,TJ,CH4,0.5,kg/TJ,5.379605,Naphtha combustion consumption by freight transport,AR-D,SESCO,annual,kg,e754a7db-281a-3ab0-b295-ae229cf3e6ff +2022,San Luis,II.1.1,10.75921,TJ,N2O,2.0,kg/TJ,21.51842,Naphtha combustion consumption by freight transport,AR-D,SESCO,annual,kg,427907e6-27e4-34df-af78-a43a4a1f71a7 +2022,Santa Cruz,II.1.1,7.298445,TJ,CO2,73300.0,kg/TJ,534976.0185,Naphtha combustion consumption by freight transport,AR-Z,SESCO,annual,kg,dcce29f9-479b-36de-92da-618e8edcb811 +2022,Santa Cruz,II.1.1,7.298445,TJ,CH4,0.5,kg/TJ,3.6492225,Naphtha combustion consumption by freight transport,AR-Z,SESCO,annual,kg,08f32a63-d2c5-3fc1-8674-0e6cbf4b0153 +2022,Santa Cruz,II.1.1,7.298445,TJ,N2O,2.0,kg/TJ,14.59689,Naphtha combustion consumption by freight transport,AR-Z,SESCO,annual,kg,f0ea6625-3bb5-339e-9188-5935cf141f07 +2022,Santa Fe,II.1.1,125.06725,TJ,CO2,73300.0,kg/TJ,9167429.425,Naphtha combustion consumption by freight transport,AR-S,SESCO,annual,kg,c8039c26-81d7-3183-ac73-84c949b05204 +2022,Santa Fe,II.1.1,125.06725,TJ,CH4,0.5,kg/TJ,62.533625,Naphtha combustion consumption by freight transport,AR-S,SESCO,annual,kg,3a0cbe8d-deac-389a-b0d0-31aaa168a9ce +2022,Santa Fe,II.1.1,125.06725,TJ,N2O,2.0,kg/TJ,250.1345,Naphtha combustion consumption by freight transport,AR-S,SESCO,annual,kg,523fd0a9-b5e9-3d4b-988d-db24cd8094c3 +2022,Santiago del Estero,II.1.1,6.818734999999999,TJ,CO2,73300.0,kg/TJ,499813.27549999993,Naphtha combustion consumption by freight transport,AR-G,SESCO,annual,kg,b704e616-d3b9-3ed3-bf8a-91b622f6932b +2022,Santiago del Estero,II.1.1,6.818734999999999,TJ,CH4,0.5,kg/TJ,3.4093674999999997,Naphtha combustion consumption by freight transport,AR-G,SESCO,annual,kg,ca37d37e-6b04-397b-9c33-203d2d3842b7 +2022,Santiago del Estero,II.1.1,6.818734999999999,TJ,N2O,2.0,kg/TJ,13.637469999999999,Naphtha combustion consumption by freight transport,AR-G,SESCO,annual,kg,ca87903b-e97f-340e-8ed7-dcb587e80971 +2022,Tierra del Fuego,II.1.1,8.2236,TJ,CO2,73300.0,kg/TJ,602789.88,Naphtha combustion consumption by freight transport,AR-V,SESCO,annual,kg,f7841edc-82e7-30f7-a119-1573544d350d +2022,Tierra del Fuego,II.1.1,8.2236,TJ,CH4,0.5,kg/TJ,4.1118,Naphtha combustion consumption by freight transport,AR-V,SESCO,annual,kg,b511f33f-47c8-376c-8dda-5076f747a9e7 +2022,Tierra del Fuego,II.1.1,8.2236,TJ,N2O,2.0,kg/TJ,16.4472,Naphtha combustion consumption by freight transport,AR-V,SESCO,annual,kg,974cd13f-a21c-3a84-9cf3-c33545db5386 +2022,Tucuman,II.1.1,18.400305,TJ,CO2,73300.0,kg/TJ,1348742.3565,Naphtha combustion consumption by freight transport,AR-T,SESCO,annual,kg,3b11051e-8579-3b86-8349-08323f1f16df +2022,Tucuman,II.1.1,18.400305,TJ,CH4,0.5,kg/TJ,9.2001525,Naphtha combustion consumption by freight transport,AR-T,SESCO,annual,kg,7cb2b6b8-4d18-3eb3-a7b0-5d68c242bf01 +2022,Tucuman,II.1.1,18.400305,TJ,N2O,2.0,kg/TJ,36.80061,Naphtha combustion consumption by freight transport,AR-T,SESCO,annual,kg,1cadfb69-295b-31f4-994d-66d7bf46c780 +2022,Buenos Aires,II.1.1,6369.400799999999,TJ,CO2,74100.0,kg/TJ,471972599.28,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,c90cfde5-c29e-31ff-8090-c02dda6e80c9 +2022,Buenos Aires,II.1.1,6369.400799999999,TJ,CH4,3.9,kg/TJ,24840.663119999997,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,8c3cc1b0-affa-32e0-83cb-f0d2194c5a20 +2022,Buenos Aires,II.1.1,6369.400799999999,TJ,N2O,3.9,kg/TJ,24840.663119999997,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,8c3cc1b0-affa-32e0-83cb-f0d2194c5a20 +2022,Capital Federal,II.1.1,1473.3709199999998,TJ,CO2,74100.0,kg/TJ,109176785.17199999,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,c7e865de-2927-33d2-af28-3b7b822cc335 +2022,Capital Federal,II.1.1,1473.3709199999998,TJ,CH4,3.9,kg/TJ,5746.146588,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,4be98f6b-193a-378d-8339-50f04f66583b +2022,Capital Federal,II.1.1,1473.3709199999998,TJ,N2O,3.9,kg/TJ,5746.146588,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,4be98f6b-193a-378d-8339-50f04f66583b +2022,Catamarca,II.1.1,67.14708,TJ,CO2,74100.0,kg/TJ,4975598.6280000005,Gas Oil combustion consumption by public passenger transport,AR-K,SESCO,annual,kg,171709a3-deee-3cc3-8a52-f815361bda4f +2022,Catamarca,II.1.1,67.14708,TJ,CH4,3.9,kg/TJ,261.873612,Gas Oil combustion consumption by public passenger transport,AR-K,SESCO,annual,kg,08c0ddac-08e5-3afa-aaf3-08da82653674 +2022,Catamarca,II.1.1,67.14708,TJ,N2O,3.9,kg/TJ,261.873612,Gas Oil combustion consumption by public passenger transport,AR-K,SESCO,annual,kg,08c0ddac-08e5-3afa-aaf3-08da82653674 +2022,Chaco,II.1.1,187.2822,TJ,CO2,74100.0,kg/TJ,13877611.02,Gas Oil combustion consumption by public passenger transport,AR-H,SESCO,annual,kg,7c089baf-f565-34c5-918f-ed56afc6d4b0 +2022,Chaco,II.1.1,187.2822,TJ,CH4,3.9,kg/TJ,730.40058,Gas Oil combustion consumption by public passenger transport,AR-H,SESCO,annual,kg,fb265246-d50f-3789-b8e1-7aacf081b235 +2022,Chaco,II.1.1,187.2822,TJ,N2O,3.9,kg/TJ,730.40058,Gas Oil combustion consumption by public passenger transport,AR-H,SESCO,annual,kg,fb265246-d50f-3789-b8e1-7aacf081b235 +2022,Chubut,II.1.1,10.22196,TJ,CO2,74100.0,kg/TJ,757447.2359999999,Gas Oil combustion consumption by public passenger transport,AR-U,SESCO,annual,kg,1daf0a33-9dab-34d2-80e2-967533254f06 +2022,Chubut,II.1.1,10.22196,TJ,CH4,3.9,kg/TJ,39.865643999999996,Gas Oil combustion consumption by public passenger transport,AR-U,SESCO,annual,kg,b0ad4cbb-7040-31fa-b906-a08fa1dc60e4 +2022,Chubut,II.1.1,10.22196,TJ,N2O,3.9,kg/TJ,39.865643999999996,Gas Oil combustion consumption by public passenger transport,AR-U,SESCO,annual,kg,b0ad4cbb-7040-31fa-b906-a08fa1dc60e4 +2022,Corrientes,II.1.1,127.28688,TJ,CO2,74100.0,kg/TJ,9431957.808,Gas Oil combustion consumption by public passenger transport,AR-W,SESCO,annual,kg,94c82492-703c-3e50-9ea8-827782808a7d +2022,Corrientes,II.1.1,127.28688,TJ,CH4,3.9,kg/TJ,496.41883199999995,Gas Oil combustion consumption by public passenger transport,AR-W,SESCO,annual,kg,ea502fa5-bffd-3ab9-9c8c-4b12e339bb2d +2022,Corrientes,II.1.1,127.28688,TJ,N2O,3.9,kg/TJ,496.41883199999995,Gas Oil combustion consumption by public passenger transport,AR-W,SESCO,annual,kg,ea502fa5-bffd-3ab9-9c8c-4b12e339bb2d +2022,Córdoba,II.1.1,896.0649599999999,TJ,CO2,74100.0,kg/TJ,66398413.53599999,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,47c9cb8e-dfde-3995-bd94-b0e5065eee71 +2022,Córdoba,II.1.1,896.0649599999999,TJ,CH4,3.9,kg/TJ,3494.653344,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,8fc1c3f4-8689-3850-b65d-6f35319556a7 +2022,Córdoba,II.1.1,896.0649599999999,TJ,N2O,3.9,kg/TJ,3494.653344,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,8fc1c3f4-8689-3850-b65d-6f35319556a7 +2022,Entre Rios,II.1.1,227.80884,TJ,CO2,74100.0,kg/TJ,16880635.044,Gas Oil combustion consumption by public passenger transport,AR-E,SESCO,annual,kg,a2972221-7c17-3c1d-9419-efb98e7a4f02 +2022,Entre Rios,II.1.1,227.80884,TJ,CH4,3.9,kg/TJ,888.454476,Gas Oil combustion consumption by public passenger transport,AR-E,SESCO,annual,kg,84d4c2dc-02bc-3047-b8a3-348309093bad +2022,Entre Rios,II.1.1,227.80884,TJ,N2O,3.9,kg/TJ,888.454476,Gas Oil combustion consumption by public passenger transport,AR-E,SESCO,annual,kg,84d4c2dc-02bc-3047-b8a3-348309093bad +2022,Formosa,II.1.1,22.17768,TJ,CO2,74100.0,kg/TJ,1643366.088,Gas Oil combustion consumption by public passenger transport,AR-P,SESCO,annual,kg,9e2493fd-a041-358d-a486-ffd813abfdd0 +2022,Formosa,II.1.1,22.17768,TJ,CH4,3.9,kg/TJ,86.49295199999999,Gas Oil combustion consumption by public passenger transport,AR-P,SESCO,annual,kg,45479125-cdc7-32fc-8861-619263a63787 +2022,Formosa,II.1.1,22.17768,TJ,N2O,3.9,kg/TJ,86.49295199999999,Gas Oil combustion consumption by public passenger transport,AR-P,SESCO,annual,kg,45479125-cdc7-32fc-8861-619263a63787 +2022,Jujuy,II.1.1,210.14615999999998,TJ,CO2,74100.0,kg/TJ,15571830.455999998,Gas Oil combustion consumption by public passenger transport,AR-Y,SESCO,annual,kg,55398d27-e8dd-3a36-a1b6-db0d8feebee8 +2022,Jujuy,II.1.1,210.14615999999998,TJ,CH4,3.9,kg/TJ,819.5700239999999,Gas Oil combustion consumption by public passenger transport,AR-Y,SESCO,annual,kg,1313e23a-4e4a-3314-bdcf-3a3dbfbb8f3f +2022,Jujuy,II.1.1,210.14615999999998,TJ,N2O,3.9,kg/TJ,819.5700239999999,Gas Oil combustion consumption by public passenger transport,AR-Y,SESCO,annual,kg,1313e23a-4e4a-3314-bdcf-3a3dbfbb8f3f +2022,Mendoza,II.1.1,1057.19628,TJ,CO2,74100.0,kg/TJ,78338244.34799999,Gas Oil combustion consumption by public passenger transport,AR-M,SESCO,annual,kg,d6cbb6d8-694f-3259-8ed4-2094da8d93ea +2022,Mendoza,II.1.1,1057.19628,TJ,CH4,3.9,kg/TJ,4123.065492,Gas Oil combustion consumption by public passenger transport,AR-M,SESCO,annual,kg,0699fe54-10e5-30cf-8add-0c3f440d8048 +2022,Mendoza,II.1.1,1057.19628,TJ,N2O,3.9,kg/TJ,4123.065492,Gas Oil combustion consumption by public passenger transport,AR-M,SESCO,annual,kg,0699fe54-10e5-30cf-8add-0c3f440d8048 +2022,Misiones,II.1.1,612.52296,TJ,CO2,74100.0,kg/TJ,45387951.336,Gas Oil combustion consumption by public passenger transport,AR-N,SESCO,annual,kg,ebf195f7-bce3-305f-a8c7-2ce7b615724f +2022,Misiones,II.1.1,612.52296,TJ,CH4,3.9,kg/TJ,2388.839544,Gas Oil combustion consumption by public passenger transport,AR-N,SESCO,annual,kg,43a49c79-2630-3220-b74f-086f53fa60c3 +2022,Misiones,II.1.1,612.52296,TJ,N2O,3.9,kg/TJ,2388.839544,Gas Oil combustion consumption by public passenger transport,AR-N,SESCO,annual,kg,43a49c79-2630-3220-b74f-086f53fa60c3 +2022,Neuquén,II.1.1,49.77336,TJ,CO2,74100.0,kg/TJ,3688205.976,Gas Oil combustion consumption by public passenger transport,AR-Q,SESCO,annual,kg,7bc46125-3e7f-389b-aadb-befa40512129 +2022,Neuquén,II.1.1,49.77336,TJ,CH4,3.9,kg/TJ,194.11610399999998,Gas Oil combustion consumption by public passenger transport,AR-Q,SESCO,annual,kg,0e5b83a9-7a46-3047-a6b0-19338306a126 +2022,Neuquén,II.1.1,49.77336,TJ,N2O,3.9,kg/TJ,194.11610399999998,Gas Oil combustion consumption by public passenger transport,AR-Q,SESCO,annual,kg,0e5b83a9-7a46-3047-a6b0-19338306a126 +2022,Rio Negro,II.1.1,18.2406,TJ,CO2,74100.0,kg/TJ,1351628.46,Gas Oil combustion consumption by public passenger transport,AR-R,SESCO,annual,kg,e463c87e-ed09-3a47-b433-5fa9ec70e157 +2022,Rio Negro,II.1.1,18.2406,TJ,CH4,3.9,kg/TJ,71.13834,Gas Oil combustion consumption by public passenger transport,AR-R,SESCO,annual,kg,07b62f26-a768-31b5-a402-a49d654c78f1 +2022,Rio Negro,II.1.1,18.2406,TJ,N2O,3.9,kg/TJ,71.13834,Gas Oil combustion consumption by public passenger transport,AR-R,SESCO,annual,kg,07b62f26-a768-31b5-a402-a49d654c78f1 +2022,Salta,II.1.1,282.38615999999996,TJ,CO2,74100.0,kg/TJ,20924814.455999997,Gas Oil combustion consumption by public passenger transport,AR-A,SESCO,annual,kg,3b5b0f6f-2676-31bc-b15d-3a261b9a377d +2022,Salta,II.1.1,282.38615999999996,TJ,CH4,3.9,kg/TJ,1101.3060239999998,Gas Oil combustion consumption by public passenger transport,AR-A,SESCO,annual,kg,d918fb46-0fba-337d-9e92-b228eb28c76f +2022,Salta,II.1.1,282.38615999999996,TJ,N2O,3.9,kg/TJ,1101.3060239999998,Gas Oil combustion consumption by public passenger transport,AR-A,SESCO,annual,kg,d918fb46-0fba-337d-9e92-b228eb28c76f +2022,San Juan,II.1.1,53.6382,TJ,CO2,74100.0,kg/TJ,3974590.6199999996,Gas Oil combustion consumption by public passenger transport,AR-J,SESCO,annual,kg,e5dd5274-699f-3916-9409-62c3891c8903 +2022,San Juan,II.1.1,53.6382,TJ,CH4,3.9,kg/TJ,209.18898,Gas Oil combustion consumption by public passenger transport,AR-J,SESCO,annual,kg,be28ec09-0345-3c3a-9ad9-831514cd9045 +2022,San Juan,II.1.1,53.6382,TJ,N2O,3.9,kg/TJ,209.18898,Gas Oil combustion consumption by public passenger transport,AR-J,SESCO,annual,kg,be28ec09-0345-3c3a-9ad9-831514cd9045 +2022,Santa Fe,II.1.1,523.23432,TJ,CO2,74100.0,kg/TJ,38771663.112,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,94e1d1c8-34fe-3356-ac21-439d93970a1c +2022,Santa Fe,II.1.1,523.23432,TJ,CH4,3.9,kg/TJ,2040.613848,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,e1cb157a-42ad-38c1-afa6-c18a9f59ccb8 +2022,Santa Fe,II.1.1,523.23432,TJ,N2O,3.9,kg/TJ,2040.613848,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,e1cb157a-42ad-38c1-afa6-c18a9f59ccb8 +2022,Tierra del Fuego,II.1.1,10.2942,TJ,CO2,74100.0,kg/TJ,762800.22,Gas Oil combustion consumption by public passenger transport,AR-V,SESCO,annual,kg,b917dc6d-b369-33d1-826c-03f8ff363228 +2022,Tierra del Fuego,II.1.1,10.2942,TJ,CH4,3.9,kg/TJ,40.14738,Gas Oil combustion consumption by public passenger transport,AR-V,SESCO,annual,kg,eb514032-dc76-3b53-9c67-dcdbbe8dd0c7 +2022,Tierra del Fuego,II.1.1,10.2942,TJ,N2O,3.9,kg/TJ,40.14738,Gas Oil combustion consumption by public passenger transport,AR-V,SESCO,annual,kg,eb514032-dc76-3b53-9c67-dcdbbe8dd0c7 +2022,Tucuman,II.1.1,105.75936,TJ,CO2,74100.0,kg/TJ,7836768.576,Gas Oil combustion consumption by public passenger transport,AR-T,SESCO,annual,kg,3cced3cf-ad0b-3757-bcc0-a28e6e0a8bc7 +2022,Tucuman,II.1.1,105.75936,TJ,CH4,3.9,kg/TJ,412.461504,Gas Oil combustion consumption by public passenger transport,AR-T,SESCO,annual,kg,8c124421-62f5-3116-ab9c-3fbb4c1d1ef9 +2022,Tucuman,II.1.1,105.75936,TJ,N2O,3.9,kg/TJ,412.461504,Gas Oil combustion consumption by public passenger transport,AR-T,SESCO,annual,kg,8c124421-62f5-3116-ab9c-3fbb4c1d1ef9 +2022,Buenos Aires,II.1.1,5147.4612,TJ,CO2,74100.0,kg/TJ,381426874.91999996,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,89cdce2b-370b-3195-9df4-cf12061e1640 +2022,Buenos Aires,II.1.1,5147.4612,TJ,CH4,3.9,kg/TJ,20075.09868,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,25f3c1cc-54bf-3384-acc6-aa595adeac55 +2022,Buenos Aires,II.1.1,5147.4612,TJ,N2O,3.9,kg/TJ,20075.09868,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,25f3c1cc-54bf-3384-acc6-aa595adeac55 +2022,Capital Federal,II.1.1,1024.07424,TJ,CO2,74100.0,kg/TJ,75883901.184,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,ae800c76-3b5d-3e1c-8d77-f34e6b8076ff +2022,Capital Federal,II.1.1,1024.07424,TJ,CH4,3.9,kg/TJ,3993.8895359999997,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,9aedfd8e-efc7-3d70-99a7-c929de557920 +2022,Capital Federal,II.1.1,1024.07424,TJ,N2O,3.9,kg/TJ,3993.8895359999997,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,9aedfd8e-efc7-3d70-99a7-c929de557920 +2022,Chaco,II.1.1,18.637919999999998,TJ,CO2,74100.0,kg/TJ,1381069.8719999997,Gas Oil combustion consumption by public passenger transport,AR-H,SESCO,annual,kg,41405cc8-1c87-33bc-a58d-a27e46459de4 +2022,Chaco,II.1.1,18.637919999999998,TJ,CH4,3.9,kg/TJ,72.68788799999999,Gas Oil combustion consumption by public passenger transport,AR-H,SESCO,annual,kg,fe409d4c-675a-33d0-8aae-285c88e3031e +2022,Chaco,II.1.1,18.637919999999998,TJ,N2O,3.9,kg/TJ,72.68788799999999,Gas Oil combustion consumption by public passenger transport,AR-H,SESCO,annual,kg,fe409d4c-675a-33d0-8aae-285c88e3031e +2022,Chubut,II.1.1,34.205639999999995,TJ,CO2,74100.0,kg/TJ,2534637.9239999996,Gas Oil combustion consumption by public passenger transport,AR-U,SESCO,annual,kg,aa694f5d-a593-350f-8e3a-a0c2f435e8b8 +2022,Chubut,II.1.1,34.205639999999995,TJ,CH4,3.9,kg/TJ,133.40199599999997,Gas Oil combustion consumption by public passenger transport,AR-U,SESCO,annual,kg,7a305ea2-d7cf-3e1f-91c5-c887cfbd521c +2022,Chubut,II.1.1,34.205639999999995,TJ,N2O,3.9,kg/TJ,133.40199599999997,Gas Oil combustion consumption by public passenger transport,AR-U,SESCO,annual,kg,7a305ea2-d7cf-3e1f-91c5-c887cfbd521c +2022,Corrientes,II.1.1,40.59888,TJ,CO2,74100.0,kg/TJ,3008377.008,Gas Oil combustion consumption by public passenger transport,AR-W,SESCO,annual,kg,8c71911e-050e-3d4e-83bf-9cde4562574f +2022,Corrientes,II.1.1,40.59888,TJ,CH4,3.9,kg/TJ,158.335632,Gas Oil combustion consumption by public passenger transport,AR-W,SESCO,annual,kg,468899c1-a3b9-3662-bd59-cbc41e925ce2 +2022,Corrientes,II.1.1,40.59888,TJ,N2O,3.9,kg/TJ,158.335632,Gas Oil combustion consumption by public passenger transport,AR-W,SESCO,annual,kg,468899c1-a3b9-3662-bd59-cbc41e925ce2 +2022,Córdoba,II.1.1,287.94864,TJ,CO2,74100.0,kg/TJ,21336994.224,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,b3ed3834-c4f7-3d07-a134-3180d9d1b6f9 +2022,Córdoba,II.1.1,287.94864,TJ,CH4,3.9,kg/TJ,1122.999696,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,1768121c-7dd6-364b-b387-61d3ab1d4941 +2022,Córdoba,II.1.1,287.94864,TJ,N2O,3.9,kg/TJ,1122.999696,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,1768121c-7dd6-364b-b387-61d3ab1d4941 +2022,Entre Rios,II.1.1,36.4812,TJ,CO2,74100.0,kg/TJ,2703256.92,Gas Oil combustion consumption by public passenger transport,AR-E,SESCO,annual,kg,723f4f33-0050-31be-bf2c-b02f7938e76b +2022,Entre Rios,II.1.1,36.4812,TJ,CH4,3.9,kg/TJ,142.27668,Gas Oil combustion consumption by public passenger transport,AR-E,SESCO,annual,kg,094b949a-3055-3dc1-9885-43a13e387937 +2022,Entre Rios,II.1.1,36.4812,TJ,N2O,3.9,kg/TJ,142.27668,Gas Oil combustion consumption by public passenger transport,AR-E,SESCO,annual,kg,094b949a-3055-3dc1-9885-43a13e387937 +2022,Mendoza,II.1.1,110.3466,TJ,CO2,74100.0,kg/TJ,8176683.06,Gas Oil combustion consumption by public passenger transport,AR-M,SESCO,annual,kg,02ade1af-599d-3ee0-be29-42e97c1ebb60 +2022,Mendoza,II.1.1,110.3466,TJ,CH4,3.9,kg/TJ,430.35173999999995,Gas Oil combustion consumption by public passenger transport,AR-M,SESCO,annual,kg,e5b0ff0c-e110-34a5-bcd5-3eee60c45edb +2022,Mendoza,II.1.1,110.3466,TJ,N2O,3.9,kg/TJ,430.35173999999995,Gas Oil combustion consumption by public passenger transport,AR-M,SESCO,annual,kg,e5b0ff0c-e110-34a5-bcd5-3eee60c45edb +2022,Misiones,II.1.1,37.275839999999995,TJ,CO2,74100.0,kg/TJ,2762139.7439999995,Gas Oil combustion consumption by public passenger transport,AR-N,SESCO,annual,kg,1944d10d-81b4-3c36-b3a1-00a8992ed440 +2022,Misiones,II.1.1,37.275839999999995,TJ,CH4,3.9,kg/TJ,145.37577599999997,Gas Oil combustion consumption by public passenger transport,AR-N,SESCO,annual,kg,bc68b6fa-ab19-35f6-b7d8-2e19451e9fe1 +2022,Misiones,II.1.1,37.275839999999995,TJ,N2O,3.9,kg/TJ,145.37577599999997,Gas Oil combustion consumption by public passenger transport,AR-N,SESCO,annual,kg,bc68b6fa-ab19-35f6-b7d8-2e19451e9fe1 +2022,Neuquén,II.1.1,14.484119999999999,TJ,CO2,74100.0,kg/TJ,1073273.292,Gas Oil combustion consumption by public passenger transport,AR-Q,SESCO,annual,kg,d7a8d07c-303e-3a04-9027-b92d63a98c9f +2022,Neuquén,II.1.1,14.484119999999999,TJ,CH4,3.9,kg/TJ,56.48806799999999,Gas Oil combustion consumption by public passenger transport,AR-Q,SESCO,annual,kg,a03d76e6-7f28-3eef-9783-52b7a708a1d5 +2022,Neuquén,II.1.1,14.484119999999999,TJ,N2O,3.9,kg/TJ,56.48806799999999,Gas Oil combustion consumption by public passenger transport,AR-Q,SESCO,annual,kg,a03d76e6-7f28-3eef-9783-52b7a708a1d5 +2022,Rio Negro,II.1.1,127.35911999999999,TJ,CO2,74100.0,kg/TJ,9437310.792,Gas Oil combustion consumption by public passenger transport,AR-R,SESCO,annual,kg,7faa27e9-0bcb-304c-b656-ccba0db0fbb2 +2022,Rio Negro,II.1.1,127.35911999999999,TJ,CH4,3.9,kg/TJ,496.700568,Gas Oil combustion consumption by public passenger transport,AR-R,SESCO,annual,kg,7b34b222-6d7d-373b-96b1-b4353e4e3fa2 +2022,Rio Negro,II.1.1,127.35911999999999,TJ,N2O,3.9,kg/TJ,496.700568,Gas Oil combustion consumption by public passenger transport,AR-R,SESCO,annual,kg,7b34b222-6d7d-373b-96b1-b4353e4e3fa2 +2022,Salta,II.1.1,186.12636,TJ,CO2,74100.0,kg/TJ,13791963.276,Gas Oil combustion consumption by public passenger transport,AR-A,SESCO,annual,kg,ea339239-5f69-39a6-ae39-06cb7c32fac3 +2022,Salta,II.1.1,186.12636,TJ,CH4,3.9,kg/TJ,725.892804,Gas Oil combustion consumption by public passenger transport,AR-A,SESCO,annual,kg,e7567bfc-e4f5-3baf-9270-fc926c40073f +2022,Salta,II.1.1,186.12636,TJ,N2O,3.9,kg/TJ,725.892804,Gas Oil combustion consumption by public passenger transport,AR-A,SESCO,annual,kg,e7567bfc-e4f5-3baf-9270-fc926c40073f +2022,San Juan,II.1.1,42.9828,TJ,CO2,74100.0,kg/TJ,3185025.48,Gas Oil combustion consumption by public passenger transport,AR-J,SESCO,annual,kg,aa42dc5a-9baf-3ce7-ab4a-37a64c724f0c +2022,San Juan,II.1.1,42.9828,TJ,CH4,3.9,kg/TJ,167.63291999999998,Gas Oil combustion consumption by public passenger transport,AR-J,SESCO,annual,kg,ac5ceab3-4a0d-3643-b1e9-f4032315f10c +2022,San Juan,II.1.1,42.9828,TJ,N2O,3.9,kg/TJ,167.63291999999998,Gas Oil combustion consumption by public passenger transport,AR-J,SESCO,annual,kg,ac5ceab3-4a0d-3643-b1e9-f4032315f10c +2022,Santa Fe,II.1.1,179.8776,TJ,CO2,74100.0,kg/TJ,13328930.16,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,44d03ff7-a981-3357-9bc0-20b3f6a89432 +2022,Santa Fe,II.1.1,179.8776,TJ,CH4,3.9,kg/TJ,701.52264,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,3fe576ad-9f08-3558-8de0-6116ab098092 +2022,Santa Fe,II.1.1,179.8776,TJ,N2O,3.9,kg/TJ,701.52264,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,3fe576ad-9f08-3558-8de0-6116ab098092 +2022,Tucuman,II.1.1,3.1424399999999997,TJ,CO2,74100.0,kg/TJ,232854.80399999997,Gas Oil combustion consumption by public passenger transport,AR-T,SESCO,annual,kg,fa11db55-c33a-31e1-ab81-756110de4814 +2022,Tucuman,II.1.1,3.1424399999999997,TJ,CH4,3.9,kg/TJ,12.255515999999998,Gas Oil combustion consumption by public passenger transport,AR-T,SESCO,annual,kg,e7f09f8e-8052-3c36-878d-69f0aa7aeec6 +2022,Tucuman,II.1.1,3.1424399999999997,TJ,N2O,3.9,kg/TJ,12.255515999999998,Gas Oil combustion consumption by public passenger transport,AR-T,SESCO,annual,kg,e7f09f8e-8052-3c36-878d-69f0aa7aeec6 +2023,Buenos Aires,II.5.1,577.2698399999999,TJ,CO2,74100.0,kg/TJ,42775695.143999994,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,bb4f7b3d-b6f7-345d-8664-1361e27c6d2f +2023,Buenos Aires,II.5.1,577.2698399999999,TJ,CH4,3.9,kg/TJ,2251.352376,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,6c27e58f-e77e-32fe-8a67-f01a432dab2f +2023,Buenos Aires,II.5.1,577.2698399999999,TJ,N2O,3.9,kg/TJ,2251.352376,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,6c27e58f-e77e-32fe-8a67-f01a432dab2f +2023,Córdoba,II.5.1,178.79399999999998,TJ,CO2,74100.0,kg/TJ,13248635.399999999,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,44fc060d-9299-3f64-a073-12e28bbebc95 +2023,Córdoba,II.5.1,178.79399999999998,TJ,CH4,3.9,kg/TJ,697.2965999999999,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,987a825a-61f2-348f-bb1f-2f6b2987caab +2023,Córdoba,II.5.1,178.79399999999998,TJ,N2O,3.9,kg/TJ,697.2965999999999,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,987a825a-61f2-348f-bb1f-2f6b2987caab +2023,Entre Rios,II.5.1,13.83396,TJ,CO2,74100.0,kg/TJ,1025096.436,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,b1e3fe98-e938-3fc9-be0e-77e810876626 +2023,Entre Rios,II.5.1,13.83396,TJ,CH4,3.9,kg/TJ,53.952444,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,d9984e00-ee47-3fe0-86a9-c4c62bafc226 +2023,Entre Rios,II.5.1,13.83396,TJ,N2O,3.9,kg/TJ,53.952444,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,d9984e00-ee47-3fe0-86a9-c4c62bafc226 +2023,La Pampa,II.5.1,32.182919999999996,TJ,CO2,74100.0,kg/TJ,2384754.3719999995,Gas Oil combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,f54aebc2-f68f-3116-9bfc-a4b338c4a374 +2023,La Pampa,II.5.1,32.182919999999996,TJ,CH4,3.9,kg/TJ,125.51338799999998,Gas Oil combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,eda36320-fb2e-37a0-842b-7a4b86655cf6 +2023,La Pampa,II.5.1,32.182919999999996,TJ,N2O,3.9,kg/TJ,125.51338799999998,Gas Oil combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,eda36320-fb2e-37a0-842b-7a4b86655cf6 +2023,Santa Fe,II.5.1,159.75876,TJ,CO2,74100.0,kg/TJ,11838124.116,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,91d33ec7-e4e7-39d6-b1a3-4237435e3bad +2023,Santa Fe,II.5.1,159.75876,TJ,CH4,3.9,kg/TJ,623.059164,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,f87c6e4d-76f8-3715-84cf-85e43e8ef8c1 +2023,Santa Fe,II.5.1,159.75876,TJ,N2O,3.9,kg/TJ,623.059164,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,f87c6e4d-76f8-3715-84cf-85e43e8ef8c1 +2023,Tucuman,II.5.1,38.829,TJ,CO2,74100.0,kg/TJ,2877228.9,Gas Oil combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,8612a688-909d-3051-8aa0-b9495ffe6999 +2023,Tucuman,II.5.1,38.829,TJ,CH4,3.9,kg/TJ,151.4331,Gas Oil combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,ee7e4276-9b8c-36b4-88c0-55e855a0a264 +2023,Tucuman,II.5.1,38.829,TJ,N2O,3.9,kg/TJ,151.4331,Gas Oil combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,ee7e4276-9b8c-36b4-88c0-55e855a0a264 +2023,Buenos Aires,II.5.1,16.65132,TJ,CO2,74100.0,kg/TJ,1233862.812,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,f0686159-aa99-30e5-af6d-03b618056d27 +2023,Buenos Aires,II.5.1,16.65132,TJ,CH4,3.9,kg/TJ,64.940148,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,86fde6ac-3cd1-3fc5-9db0-f7e43da36df6 +2023,Buenos Aires,II.5.1,16.65132,TJ,N2O,3.9,kg/TJ,64.940148,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,86fde6ac-3cd1-3fc5-9db0-f7e43da36df6 +2023,Córdoba,II.5.1,11.233319999999999,TJ,CO2,74100.0,kg/TJ,832389.012,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,a2c90a56-ac7b-3db0-b5b2-a9149a1bff47 +2023,Córdoba,II.5.1,11.233319999999999,TJ,CH4,3.9,kg/TJ,43.809948,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,4b159f5d-3b8a-32b5-8aff-5f713b6bf6d4 +2023,Córdoba,II.5.1,11.233319999999999,TJ,N2O,3.9,kg/TJ,43.809948,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,4b159f5d-3b8a-32b5-8aff-5f713b6bf6d4 +2023,Santa Fe,II.5.1,11.48616,TJ,CO2,74100.0,kg/TJ,851124.456,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,fbe8f7dc-39bf-3e2c-8af3-d953dd895aa2 +2023,Santa Fe,II.5.1,11.48616,TJ,CH4,3.9,kg/TJ,44.796023999999996,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,a6fc9a68-e6bd-3eac-b635-3c49294e8684 +2023,Santa Fe,II.5.1,11.48616,TJ,N2O,3.9,kg/TJ,44.796023999999996,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,a6fc9a68-e6bd-3eac-b635-3c49294e8684 +2023,Tucuman,II.5.1,1.0836,TJ,CO2,74100.0,kg/TJ,80294.76,Gas Oil combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,fb074a7c-1256-3b58-a014-bb09195b4b7f +2023,Tucuman,II.5.1,1.0836,TJ,CH4,3.9,kg/TJ,4.226039999999999,Gas Oil combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,f8795533-a017-3628-bdb7-6e8d627d92ce +2023,Tucuman,II.5.1,1.0836,TJ,N2O,3.9,kg/TJ,4.226039999999999,Gas Oil combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,f8795533-a017-3628-bdb7-6e8d627d92ce +2023,Buenos Aires,II.5.1,37.999885,TJ,CO2,73300.0,kg/TJ,2785391.5705,Naphtha combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,b1952401-23a5-320e-a48b-f9802afaa7f6 +2023,Buenos Aires,II.5.1,37.999885,TJ,CH4,0.5,kg/TJ,18.9999425,Naphtha combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,56d9cb88-a917-3c89-90a2-7e05b6b3549e +2023,Buenos Aires,II.5.1,37.999885,TJ,N2O,2.0,kg/TJ,75.99977,Naphtha combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,ae9144ef-1145-3f22-9e6a-1be219bf66bd +2023,Córdoba,II.5.1,15.384984999999999,TJ,CO2,73300.0,kg/TJ,1127719.4005,Naphtha combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,af6f3b49-d2a5-33b1-9b02-b26fc8b17e2e +2023,Córdoba,II.5.1,15.384984999999999,TJ,CH4,0.5,kg/TJ,7.692492499999999,Naphtha combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,a7c3f900-8203-372e-ab3b-8a53ccc77971 +2023,Córdoba,II.5.1,15.384984999999999,TJ,N2O,2.0,kg/TJ,30.769969999999997,Naphtha combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,66f6fa93-3422-3c53-8959-7842519043f5 +2023,Tucuman,II.5.1,8.36066,TJ,CO2,73300.0,kg/TJ,612836.3779999999,Naphtha combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,04ada32f-86cc-366b-bb9c-52606d944188 +2023,Tucuman,II.5.1,8.36066,TJ,CH4,0.5,kg/TJ,4.18033,Naphtha combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,cf8dfd3c-eed2-3a40-b29e-be3a4526e864 +2023,Tucuman,II.5.1,8.36066,TJ,N2O,2.0,kg/TJ,16.72132,Naphtha combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,2d54f12e-2e54-3ef1-ab77-495a6ca0d6a8 +2023,Buenos Aires,II.5.1,4.899895,TJ,CO2,73300.0,kg/TJ,359162.3035,Naphtha combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,6b0e4006-cd5f-371d-8eed-00e096506b02 +2023,Buenos Aires,II.5.1,4.899895,TJ,CH4,0.5,kg/TJ,2.4499475,Naphtha combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,8502c0ff-0e9c-3c19-9e99-bcc4a12f95a3 +2023,Buenos Aires,II.5.1,4.899895,TJ,N2O,2.0,kg/TJ,9.79979,Naphtha combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,3645e16e-9d7b-31a3-baf2-410478e15d20 +2023,Córdoba,II.5.1,1.610455,TJ,CO2,73300.0,kg/TJ,118046.3515,Naphtha combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,1f8575c3-7cde-3dfe-ab6c-8681196ae6a4 +2023,Córdoba,II.5.1,1.610455,TJ,CH4,0.5,kg/TJ,0.8052275,Naphtha combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,fa1d93f2-b1a0-3bbb-9599-e1d3ef43ef96 +2023,Córdoba,II.5.1,1.610455,TJ,N2O,2.0,kg/TJ,3.22091,Naphtha combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,92c09eb6-7dce-30e5-8bde-b793c576dd66 +2023,Tucuman,II.5.1,0.20559,TJ,CO2,73300.0,kg/TJ,15069.747,Naphtha combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,be6a13d6-5570-3d94-b66a-85f07c6abf23 +2023,Tucuman,II.5.1,0.20559,TJ,CH4,0.5,kg/TJ,0.102795,Naphtha combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,55cd262f-1399-3409-a00b-77600616f5b2 +2023,Tucuman,II.5.1,0.20559,TJ,N2O,2.0,kg/TJ,0.41118,Naphtha combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,391d80c0-3803-3688-b68e-2ad29c716cf6 +2023,Buenos Aires,II.5.1,322.371,TJ,CO2,74100.0,kg/TJ,23887691.099999998,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,a41821f7-47c7-3613-9431-2a46bc8cebeb +2023,Buenos Aires,II.5.1,322.371,TJ,CH4,3.9,kg/TJ,1257.2468999999999,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,8a9c6b15-e9b0-3f47-9307-e5f2983fa763 +2023,Buenos Aires,II.5.1,322.371,TJ,N2O,3.9,kg/TJ,1257.2468999999999,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,8a9c6b15-e9b0-3f47-9307-e5f2983fa763 +2023,Capital Federal,II.5.1,10.79988,TJ,CO2,74100.0,kg/TJ,800271.108,Gas Oil combustion consumption by agriculture machines,AR-C,SESCO,annual,kg,858aa847-4b4a-31d9-8504-9258801fec82 +2023,Capital Federal,II.5.1,10.79988,TJ,CH4,3.9,kg/TJ,42.119532,Gas Oil combustion consumption by agriculture machines,AR-C,SESCO,annual,kg,738fe312-ef4a-311e-bbd9-0a084fb0d68c +2023,Capital Federal,II.5.1,10.79988,TJ,N2O,3.9,kg/TJ,42.119532,Gas Oil combustion consumption by agriculture machines,AR-C,SESCO,annual,kg,738fe312-ef4a-311e-bbd9-0a084fb0d68c +2023,Córdoba,II.5.1,280.97748,TJ,CO2,74100.0,kg/TJ,20820431.268,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,1e7c21c2-fdb3-367a-b14b-52bc307cd96a +2023,Córdoba,II.5.1,280.97748,TJ,CH4,3.9,kg/TJ,1095.812172,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,00fbc132-5d65-3760-85ea-e9f24c0cbe26 +2023,Córdoba,II.5.1,280.97748,TJ,N2O,3.9,kg/TJ,1095.812172,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,00fbc132-5d65-3760-85ea-e9f24c0cbe26 +2023,Entre Rios,II.5.1,273.57288,TJ,CO2,74100.0,kg/TJ,20271750.408,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,b52cdbeb-fdd0-3b0b-b741-0ca87a0f1744 +2023,Entre Rios,II.5.1,273.57288,TJ,CH4,3.9,kg/TJ,1066.934232,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,8b0ddd79-1040-39b9-a190-bf1c8ded32d8 +2023,Entre Rios,II.5.1,273.57288,TJ,N2O,3.9,kg/TJ,1066.934232,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,8b0ddd79-1040-39b9-a190-bf1c8ded32d8 +2023,Santa Fe,II.5.1,149.60904,TJ,CO2,74100.0,kg/TJ,11086029.864,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,01874680-a7d9-3c67-9e2c-123532c8ac78 +2023,Santa Fe,II.5.1,149.60904,TJ,CH4,3.9,kg/TJ,583.475256,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,17fc1cf1-c93a-31cc-b096-6d372aed1e56 +2023,Santa Fe,II.5.1,149.60904,TJ,N2O,3.9,kg/TJ,583.475256,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,17fc1cf1-c93a-31cc-b096-6d372aed1e56 +2023,Buenos Aires,II.5.1,23.116799999999998,TJ,CO2,74100.0,kg/TJ,1712954.88,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,bfa7d535-0860-3621-9acd-337d88d181ea +2023,Buenos Aires,II.5.1,23.116799999999998,TJ,CH4,3.9,kg/TJ,90.15552,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,361c9d66-3174-3dfb-8be8-e5a325b5021e +2023,Buenos Aires,II.5.1,23.116799999999998,TJ,N2O,3.9,kg/TJ,90.15552,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,361c9d66-3174-3dfb-8be8-e5a325b5021e +2023,Capital Federal,II.5.1,0.32508,TJ,CO2,74100.0,kg/TJ,24088.428,Gas Oil combustion consumption by agriculture machines,AR-C,SESCO,annual,kg,c6ddacfc-b433-34d3-9e3b-2cb8710446be +2023,Capital Federal,II.5.1,0.32508,TJ,CH4,3.9,kg/TJ,1.267812,Gas Oil combustion consumption by agriculture machines,AR-C,SESCO,annual,kg,04990360-e105-3789-8554-9d1a6c508756 +2023,Capital Federal,II.5.1,0.32508,TJ,N2O,3.9,kg/TJ,1.267812,Gas Oil combustion consumption by agriculture machines,AR-C,SESCO,annual,kg,04990360-e105-3789-8554-9d1a6c508756 +2023,Córdoba,II.5.1,16.976399999999998,TJ,CO2,74100.0,kg/TJ,1257951.2399999998,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,70070a3b-ccda-39a9-a66d-3e898a81871e +2023,Córdoba,II.5.1,16.976399999999998,TJ,CH4,3.9,kg/TJ,66.20795999999999,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,c3ec5096-5322-3ca8-a235-83968d79c335 +2023,Córdoba,II.5.1,16.976399999999998,TJ,N2O,3.9,kg/TJ,66.20795999999999,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,c3ec5096-5322-3ca8-a235-83968d79c335 +2023,Entre Rios,II.5.1,7.29624,TJ,CO2,74100.0,kg/TJ,540651.384,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,f5401885-e321-391f-a795-3856dfaa929f +2023,Entre Rios,II.5.1,7.29624,TJ,CH4,3.9,kg/TJ,28.455336,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,294c922a-22aa-344e-a299-53694513973d +2023,Entre Rios,II.5.1,7.29624,TJ,N2O,3.9,kg/TJ,28.455336,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,294c922a-22aa-344e-a299-53694513973d +2023,Santa Fe,II.5.1,7.62132,TJ,CO2,74100.0,kg/TJ,564739.812,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,b5c86a9c-a11f-3085-b44f-3b1f34a0518e +2023,Santa Fe,II.5.1,7.62132,TJ,CH4,3.9,kg/TJ,29.723148,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,295fa484-2599-3e3d-b430-9e3ce82c46dc +2023,Santa Fe,II.5.1,7.62132,TJ,N2O,3.9,kg/TJ,29.723148,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,295fa484-2599-3e3d-b430-9e3ce82c46dc +2023,Buenos Aires,II.5.1,6.955794999999999,TJ,CO2,73300.0,kg/TJ,509859.77349999995,Naphtha combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,6c445695-2f88-396f-abe1-fdc5c764e6aa +2023,Buenos Aires,II.5.1,6.955794999999999,TJ,CH4,0.5,kg/TJ,3.4778974999999996,Naphtha combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,75764012-85dc-32f5-a464-bee2704a636c +2023,Buenos Aires,II.5.1,6.955794999999999,TJ,N2O,2.0,kg/TJ,13.911589999999999,Naphtha combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,0bf971b7-bf72-3e55-a694-651cb6f3da6b +2023,Capital Federal,II.5.1,2.6726699999999997,TJ,CO2,73300.0,kg/TJ,195906.71099999998,Naphtha combustion consumption by agriculture machines,AR-C,SESCO,annual,kg,d4485738-5ec9-3d71-bcb4-a52b64faeca2 +2023,Capital Federal,II.5.1,2.6726699999999997,TJ,CH4,0.5,kg/TJ,1.3363349999999998,Naphtha combustion consumption by agriculture machines,AR-C,SESCO,annual,kg,2adb6075-7f18-3a5a-8374-1064e91e7352 +2023,Capital Federal,II.5.1,2.6726699999999997,TJ,N2O,2.0,kg/TJ,5.345339999999999,Naphtha combustion consumption by agriculture machines,AR-C,SESCO,annual,kg,a50aaf9e-da0d-3b13-acc7-217df7ad82d9 +2023,Córdoba,II.5.1,45.812304999999995,TJ,CO2,73300.0,kg/TJ,3358041.9565,Naphtha combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,804700b6-35b0-3fd3-ae69-5f6d5737b1e4 +2023,Córdoba,II.5.1,45.812304999999995,TJ,CH4,0.5,kg/TJ,22.906152499999997,Naphtha combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,1f670545-baad-3e31-9c1f-6abc21d9c5a5 +2023,Córdoba,II.5.1,45.812304999999995,TJ,N2O,2.0,kg/TJ,91.62460999999999,Naphtha combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,4cad5336-55d5-3535-9e51-9e3b863a1586 +2023,Santa Fe,II.5.1,23.779909999999997,TJ,CO2,73300.0,kg/TJ,1743067.4029999997,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,e76e4c32-b5f2-36ef-8a9c-b38b016255a5 +2023,Santa Fe,II.5.1,23.779909999999997,TJ,CH4,0.5,kg/TJ,11.889954999999999,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,aeeff82c-9021-30c1-98bb-193b9ac60265 +2023,Santa Fe,II.5.1,23.779909999999997,TJ,N2O,2.0,kg/TJ,47.559819999999995,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,58a18cf2-3f77-35c6-ba92-4a28d54d068b +2023,Buenos Aires,II.5.1,0.925155,TJ,CO2,73300.0,kg/TJ,67813.8615,Naphtha combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,6cecb4f2-2a85-33a7-9f93-8446725a7db7 +2023,Buenos Aires,II.5.1,0.925155,TJ,CH4,0.5,kg/TJ,0.4625775,Naphtha combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,def39c1c-e637-37c0-a22f-4bf6e2d623b3 +2023,Buenos Aires,II.5.1,0.925155,TJ,N2O,2.0,kg/TJ,1.85031,Naphtha combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,8d4bdfc6-2cf5-31ad-81ce-24292f4fabd5 +2023,Córdoba,II.5.1,2.3985499999999997,TJ,CO2,73300.0,kg/TJ,175813.71499999997,Naphtha combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,191f5f1f-3287-313b-a0ba-a40fef2557a0 +2023,Córdoba,II.5.1,2.3985499999999997,TJ,CH4,0.5,kg/TJ,1.1992749999999999,Naphtha combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,288dd4a1-7563-3860-862c-c23a82f07290 +2023,Córdoba,II.5.1,2.3985499999999997,TJ,N2O,2.0,kg/TJ,4.7970999999999995,Naphtha combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,3ee01da7-1423-315c-916c-af55ef6e94fa +2023,Santa Fe,II.5.1,1.404865,TJ,CO2,73300.0,kg/TJ,102976.6045,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,d84b363f-aec7-3cdc-a2e5-6d143ea08f12 +2023,Santa Fe,II.5.1,1.404865,TJ,CH4,0.5,kg/TJ,0.7024325,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,4bbac3ac-56f2-3f95-9e7b-a5d132114459 +2023,Santa Fe,II.5.1,1.404865,TJ,N2O,2.0,kg/TJ,2.80973,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,470bed0f-91f6-34af-888b-78f46923ff03 +2023,Chubut,II.1.1,1.30032,TJ,CO2,74100.0,kg/TJ,96353.712,Gas Oil combustion consumption by freight transport,AR-U,SESCO,annual,kg,cdbce76a-a4ef-3931-8a06-0f5ab4ef3a2a +2023,Chubut,II.1.1,1.30032,TJ,CH4,3.9,kg/TJ,5.071248,Gas Oil combustion consumption by freight transport,AR-U,SESCO,annual,kg,cee77155-31ff-3069-b2d5-0e6b8fdbe793 +2023,Chubut,II.1.1,1.30032,TJ,N2O,3.9,kg/TJ,5.071248,Gas Oil combustion consumption by freight transport,AR-U,SESCO,annual,kg,cee77155-31ff-3069-b2d5-0e6b8fdbe793 +2023,Buenos Aires,II.5.1,4776.47268,TJ,CO2,74100.0,kg/TJ,353936625.588,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,9a7b8166-0f7e-3d60-81dc-77364783cb4e +2023,Buenos Aires,II.5.1,4776.47268,TJ,CH4,3.9,kg/TJ,18628.243452,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,b65bb6c6-13ac-3cf1-99fe-29ae57db7f9d +2023,Buenos Aires,II.5.1,4776.47268,TJ,N2O,3.9,kg/TJ,18628.243452,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,b65bb6c6-13ac-3cf1-99fe-29ae57db7f9d +2023,Catamarca,II.5.1,289.17672,TJ,CO2,74100.0,kg/TJ,21427994.952,Gas Oil combustion consumption by agriculture machines,AR-K,SESCO,annual,kg,9127eadc-f6f7-32b5-bc2b-e530d6d7acb0 +2023,Catamarca,II.5.1,289.17672,TJ,CH4,3.9,kg/TJ,1127.789208,Gas Oil combustion consumption by agriculture machines,AR-K,SESCO,annual,kg,c64ae42f-e151-3f70-8e08-fbef0377797a +2023,Catamarca,II.5.1,289.17672,TJ,N2O,3.9,kg/TJ,1127.789208,Gas Oil combustion consumption by agriculture machines,AR-K,SESCO,annual,kg,c64ae42f-e151-3f70-8e08-fbef0377797a +2023,Chaco,II.5.1,568.02312,TJ,CO2,74100.0,kg/TJ,42090513.191999994,Gas Oil combustion consumption by agriculture machines,AR-H,SESCO,annual,kg,541fb8fa-a205-3b39-a812-3dd982ae4a45 +2023,Chaco,II.5.1,568.02312,TJ,CH4,3.9,kg/TJ,2215.2901679999995,Gas Oil combustion consumption by agriculture machines,AR-H,SESCO,annual,kg,5db92c32-9ec4-32f6-bdb8-6756d2e6d5c7 +2023,Chaco,II.5.1,568.02312,TJ,N2O,3.9,kg/TJ,2215.2901679999995,Gas Oil combustion consumption by agriculture machines,AR-H,SESCO,annual,kg,5db92c32-9ec4-32f6-bdb8-6756d2e6d5c7 +2023,Corrientes,II.5.1,880.35276,TJ,CO2,74100.0,kg/TJ,65234139.516,Gas Oil combustion consumption by agriculture machines,AR-W,SESCO,annual,kg,16c7ab5b-4bc1-3bb5-b03b-a92323d9c00e +2023,Corrientes,II.5.1,880.35276,TJ,CH4,3.9,kg/TJ,3433.375764,Gas Oil combustion consumption by agriculture machines,AR-W,SESCO,annual,kg,97f3bb6c-ab59-3f29-920e-512e381158fe +2023,Corrientes,II.5.1,880.35276,TJ,N2O,3.9,kg/TJ,3433.375764,Gas Oil combustion consumption by agriculture machines,AR-W,SESCO,annual,kg,97f3bb6c-ab59-3f29-920e-512e381158fe +2023,Córdoba,II.5.1,2496.72276,TJ,CO2,74100.0,kg/TJ,185007156.516,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,c5f71b9b-0ff8-3f45-93a3-579bbe88c251 +2023,Córdoba,II.5.1,2496.72276,TJ,CH4,3.9,kg/TJ,9737.218764000001,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,cdec1da2-b2a1-3431-9e28-36647baaa00c +2023,Córdoba,II.5.1,2496.72276,TJ,N2O,3.9,kg/TJ,9737.218764000001,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,cdec1da2-b2a1-3431-9e28-36647baaa00c +2023,Entre Rios,II.5.1,719.76324,TJ,CO2,74100.0,kg/TJ,53334456.084,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,b4725c0a-e8db-395a-a98b-df3aca3a6504 +2023,Entre Rios,II.5.1,719.76324,TJ,CH4,3.9,kg/TJ,2807.076636,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,b88c955a-fc53-32f4-bc57-43a2ca411a8a +2023,Entre Rios,II.5.1,719.76324,TJ,N2O,3.9,kg/TJ,2807.076636,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,b88c955a-fc53-32f4-bc57-43a2ca411a8a +2023,Jujuy,II.5.1,115.83684,TJ,CO2,74100.0,kg/TJ,8583509.844,Gas Oil combustion consumption by agriculture machines,AR-Y,SESCO,annual,kg,5f075a92-ebb4-3247-8216-fdb8aff641a4 +2023,Jujuy,II.5.1,115.83684,TJ,CH4,3.9,kg/TJ,451.763676,Gas Oil combustion consumption by agriculture machines,AR-Y,SESCO,annual,kg,e051d5c1-1bb5-3176-8369-a1e3e8007411 +2023,Jujuy,II.5.1,115.83684,TJ,N2O,3.9,kg/TJ,451.763676,Gas Oil combustion consumption by agriculture machines,AR-Y,SESCO,annual,kg,e051d5c1-1bb5-3176-8369-a1e3e8007411 +2023,La Pampa,II.5.1,245.86883999999998,TJ,CO2,74100.0,kg/TJ,18218881.044,Gas Oil combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,10cae01b-45e8-3d3d-adb1-2b07042b00a6 +2023,La Pampa,II.5.1,245.86883999999998,TJ,CH4,3.9,kg/TJ,958.8884759999999,Gas Oil combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,e4ae9fbd-397d-3755-a0c2-b9f7000eb041 +2023,La Pampa,II.5.1,245.86883999999998,TJ,N2O,3.9,kg/TJ,958.8884759999999,Gas Oil combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,e4ae9fbd-397d-3755-a0c2-b9f7000eb041 +2023,Mendoza,II.5.1,356.39603999999997,TJ,CO2,74100.0,kg/TJ,26408946.564,Gas Oil combustion consumption by agriculture machines,AR-M,SESCO,annual,kg,3b187e17-1f55-3ed3-9695-dedcb63c59eb +2023,Mendoza,II.5.1,356.39603999999997,TJ,CH4,3.9,kg/TJ,1389.944556,Gas Oil combustion consumption by agriculture machines,AR-M,SESCO,annual,kg,e438bbd9-212f-3bff-b874-5d30ede5d5a9 +2023,Mendoza,II.5.1,356.39603999999997,TJ,N2O,3.9,kg/TJ,1389.944556,Gas Oil combustion consumption by agriculture machines,AR-M,SESCO,annual,kg,e438bbd9-212f-3bff-b874-5d30ede5d5a9 +2023,Misiones,II.5.1,148.38096,TJ,CO2,74100.0,kg/TJ,10995029.136,Gas Oil combustion consumption by agriculture machines,AR-N,SESCO,annual,kg,23c57ab3-4248-3deb-adda-1ae5a0885f1e +2023,Misiones,II.5.1,148.38096,TJ,CH4,3.9,kg/TJ,578.6857439999999,Gas Oil combustion consumption by agriculture machines,AR-N,SESCO,annual,kg,2859e1bf-63ee-3134-83bc-194003fcb5c6 +2023,Misiones,II.5.1,148.38096,TJ,N2O,3.9,kg/TJ,578.6857439999999,Gas Oil combustion consumption by agriculture machines,AR-N,SESCO,annual,kg,2859e1bf-63ee-3134-83bc-194003fcb5c6 +2023,Neuquén,II.5.1,397.89792,TJ,CO2,74100.0,kg/TJ,29484235.872,Gas Oil combustion consumption by agriculture machines,AR-Q,SESCO,annual,kg,7fa3a05e-fbdb-3e2a-b25b-a7ecd371c83c +2023,Neuquén,II.5.1,397.89792,TJ,CH4,3.9,kg/TJ,1551.801888,Gas Oil combustion consumption by agriculture machines,AR-Q,SESCO,annual,kg,efd5cf47-4123-3080-a8d3-7f303a90117f +2023,Neuquén,II.5.1,397.89792,TJ,N2O,3.9,kg/TJ,1551.801888,Gas Oil combustion consumption by agriculture machines,AR-Q,SESCO,annual,kg,efd5cf47-4123-3080-a8d3-7f303a90117f +2023,Salta,II.5.1,392.55215999999996,TJ,CO2,74100.0,kg/TJ,29088115.055999998,Gas Oil combustion consumption by agriculture machines,AR-A,SESCO,annual,kg,25247c09-6edc-3088-a3bb-fe67c2fb9d32 +2023,Salta,II.5.1,392.55215999999996,TJ,CH4,3.9,kg/TJ,1530.9534239999998,Gas Oil combustion consumption by agriculture machines,AR-A,SESCO,annual,kg,622636f1-0ab3-3b17-95cf-074a2d5e5d1e +2023,Salta,II.5.1,392.55215999999996,TJ,N2O,3.9,kg/TJ,1530.9534239999998,Gas Oil combustion consumption by agriculture machines,AR-A,SESCO,annual,kg,622636f1-0ab3-3b17-95cf-074a2d5e5d1e +2023,San Juan,II.5.1,187.17383999999998,TJ,CO2,74100.0,kg/TJ,13869581.544,Gas Oil combustion consumption by agriculture machines,AR-J,SESCO,annual,kg,5cb8c995-647e-3b8f-a949-ce52fb6110ae +2023,San Juan,II.5.1,187.17383999999998,TJ,CH4,3.9,kg/TJ,729.9779759999999,Gas Oil combustion consumption by agriculture machines,AR-J,SESCO,annual,kg,d2415e25-f41e-3dcc-87a9-b851f5c62ed3 +2023,San Juan,II.5.1,187.17383999999998,TJ,N2O,3.9,kg/TJ,729.9779759999999,Gas Oil combustion consumption by agriculture machines,AR-J,SESCO,annual,kg,d2415e25-f41e-3dcc-87a9-b851f5c62ed3 +2023,San Luis,II.5.1,348.77472,TJ,CO2,74100.0,kg/TJ,25844206.752,Gas Oil combustion consumption by agriculture machines,AR-D,SESCO,annual,kg,e1d82d4d-5c8f-32ae-9f91-f6db2991f5df +2023,San Luis,II.5.1,348.77472,TJ,CH4,3.9,kg/TJ,1360.2214079999999,Gas Oil combustion consumption by agriculture machines,AR-D,SESCO,annual,kg,289f48eb-ab0c-30e1-9d58-7cd252c0757a +2023,San Luis,II.5.1,348.77472,TJ,N2O,3.9,kg/TJ,1360.2214079999999,Gas Oil combustion consumption by agriculture machines,AR-D,SESCO,annual,kg,289f48eb-ab0c-30e1-9d58-7cd252c0757a +2023,Santa Cruz,II.5.1,159.54204,TJ,CO2,74100.0,kg/TJ,11822065.163999999,Gas Oil combustion consumption by agriculture machines,AR-Z,SESCO,annual,kg,ebe95db2-7110-301d-bdad-5ae3ecb4bde9 +2023,Santa Cruz,II.5.1,159.54204,TJ,CH4,3.9,kg/TJ,622.2139559999999,Gas Oil combustion consumption by agriculture machines,AR-Z,SESCO,annual,kg,cdf0721b-63ba-3220-93f8-98215b62a841 +2023,Santa Cruz,II.5.1,159.54204,TJ,N2O,3.9,kg/TJ,622.2139559999999,Gas Oil combustion consumption by agriculture machines,AR-Z,SESCO,annual,kg,cdf0721b-63ba-3220-93f8-98215b62a841 +2023,Santa Fe,II.5.1,4504.5252,TJ,CO2,74100.0,kg/TJ,333785317.32,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,75028960-7318-34ca-9d6a-724ef704b5cc +2023,Santa Fe,II.5.1,4504.5252,TJ,CH4,3.9,kg/TJ,17567.64828,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,269bb254-fbbd-3d39-b1cd-b98a3aadd0eb +2023,Santa Fe,II.5.1,4504.5252,TJ,N2O,3.9,kg/TJ,17567.64828,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,269bb254-fbbd-3d39-b1cd-b98a3aadd0eb +2023,Santiago del Estero,II.5.1,536.34588,TJ,CO2,74100.0,kg/TJ,39743229.708,Gas Oil combustion consumption by agriculture machines,AR-G,SESCO,annual,kg,d3fa7323-3cbf-337f-8760-7822e2f391ab +2023,Santiago del Estero,II.5.1,536.34588,TJ,CH4,3.9,kg/TJ,2091.748932,Gas Oil combustion consumption by agriculture machines,AR-G,SESCO,annual,kg,d4da0f85-64e4-360f-9ca7-e3c5fbbb86a3 +2023,Santiago del Estero,II.5.1,536.34588,TJ,N2O,3.9,kg/TJ,2091.748932,Gas Oil combustion consumption by agriculture machines,AR-G,SESCO,annual,kg,d4da0f85-64e4-360f-9ca7-e3c5fbbb86a3 +2023,Tucuman,II.5.1,234.05759999999998,TJ,CO2,74100.0,kg/TJ,17343668.16,Gas Oil combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,502f2253-da4e-3956-8b56-cf8dafd68f5f +2023,Tucuman,II.5.1,234.05759999999998,TJ,CH4,3.9,kg/TJ,912.8246399999999,Gas Oil combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,27892663-16fd-3e8c-861c-7a339a200868 +2023,Tucuman,II.5.1,234.05759999999998,TJ,N2O,3.9,kg/TJ,912.8246399999999,Gas Oil combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,27892663-16fd-3e8c-861c-7a339a200868 +2023,Buenos Aires,II.5.1,396.92267999999996,TJ,CO2,74100.0,kg/TJ,29411970.587999996,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,9c770b5b-41d6-36b0-927d-4c8ed4c1f95e +2023,Buenos Aires,II.5.1,396.92267999999996,TJ,CH4,3.9,kg/TJ,1547.9984519999998,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,b1c4ac15-6393-39bc-af06-4755085ec41b +2023,Buenos Aires,II.5.1,396.92267999999996,TJ,N2O,3.9,kg/TJ,1547.9984519999998,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,b1c4ac15-6393-39bc-af06-4755085ec41b +2023,Catamarca,II.5.1,63.354479999999995,TJ,CO2,74100.0,kg/TJ,4694566.967999999,Gas Oil combustion consumption by agriculture machines,AR-K,SESCO,annual,kg,6832d6c0-2758-3bb2-81aa-45c30e14bf7a +2023,Catamarca,II.5.1,63.354479999999995,TJ,CH4,3.9,kg/TJ,247.08247199999997,Gas Oil combustion consumption by agriculture machines,AR-K,SESCO,annual,kg,593dcb30-02ad-304c-aca6-983d34e4a4ab +2023,Catamarca,II.5.1,63.354479999999995,TJ,N2O,3.9,kg/TJ,247.08247199999997,Gas Oil combustion consumption by agriculture machines,AR-K,SESCO,annual,kg,593dcb30-02ad-304c-aca6-983d34e4a4ab +2023,Chaco,II.5.1,153.40164,TJ,CO2,74100.0,kg/TJ,11367061.523999998,Gas Oil combustion consumption by agriculture machines,AR-H,SESCO,annual,kg,9c1be85b-c385-3681-869d-79dd6a4b1d1c +2023,Chaco,II.5.1,153.40164,TJ,CH4,3.9,kg/TJ,598.266396,Gas Oil combustion consumption by agriculture machines,AR-H,SESCO,annual,kg,542ba9af-5c24-362d-a12e-409319fd8b23 +2023,Chaco,II.5.1,153.40164,TJ,N2O,3.9,kg/TJ,598.266396,Gas Oil combustion consumption by agriculture machines,AR-H,SESCO,annual,kg,542ba9af-5c24-362d-a12e-409319fd8b23 +2023,Corrientes,II.5.1,78.59711999999999,TJ,CO2,74100.0,kg/TJ,5824046.591999999,Gas Oil combustion consumption by agriculture machines,AR-W,SESCO,annual,kg,c79c5b6a-b7ce-3bfa-bf3e-c9b224f535e7 +2023,Corrientes,II.5.1,78.59711999999999,TJ,CH4,3.9,kg/TJ,306.52876799999996,Gas Oil combustion consumption by agriculture machines,AR-W,SESCO,annual,kg,aceea790-1af7-3241-bf4d-82d3d77fed47 +2023,Corrientes,II.5.1,78.59711999999999,TJ,N2O,3.9,kg/TJ,306.52876799999996,Gas Oil combustion consumption by agriculture machines,AR-W,SESCO,annual,kg,aceea790-1af7-3241-bf4d-82d3d77fed47 +2023,Córdoba,II.5.1,159.03636,TJ,CO2,74100.0,kg/TJ,11784594.276,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,b4779036-8fbb-3ea0-ba70-60c42c8b11cf +2023,Córdoba,II.5.1,159.03636,TJ,CH4,3.9,kg/TJ,620.241804,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,f75bbbc4-6014-3e9c-926b-49cabea82397 +2023,Córdoba,II.5.1,159.03636,TJ,N2O,3.9,kg/TJ,620.241804,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,f75bbbc4-6014-3e9c-926b-49cabea82397 +2023,Entre Rios,II.5.1,44.68044,TJ,CO2,74100.0,kg/TJ,3310820.604,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,07bf56c9-2e7f-33ba-ad8e-af65bb050c71 +2023,Entre Rios,II.5.1,44.68044,TJ,CH4,3.9,kg/TJ,174.253716,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,da68e56a-ad55-3ec3-b562-191f3e5e2d4e +2023,Entre Rios,II.5.1,44.68044,TJ,N2O,3.9,kg/TJ,174.253716,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,da68e56a-ad55-3ec3-b562-191f3e5e2d4e +2023,Jujuy,II.5.1,29.00436,TJ,CO2,74100.0,kg/TJ,2149223.076,Gas Oil combustion consumption by agriculture machines,AR-Y,SESCO,annual,kg,439b795b-d175-3686-be7c-78b8378c260c +2023,Jujuy,II.5.1,29.00436,TJ,CH4,3.9,kg/TJ,113.117004,Gas Oil combustion consumption by agriculture machines,AR-Y,SESCO,annual,kg,b8029a18-ed4f-3274-91c6-d2be4b9fc48b +2023,Jujuy,II.5.1,29.00436,TJ,N2O,3.9,kg/TJ,113.117004,Gas Oil combustion consumption by agriculture machines,AR-Y,SESCO,annual,kg,b8029a18-ed4f-3274-91c6-d2be4b9fc48b +2023,La Pampa,II.5.1,15.350999999999999,TJ,CO2,74100.0,kg/TJ,1137509.0999999999,Gas Oil combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,95b7c8f8-15d6-30a8-af06-6781ad30e73f +2023,La Pampa,II.5.1,15.350999999999999,TJ,CH4,3.9,kg/TJ,59.8689,Gas Oil combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,44eec79b-7e0f-3c0b-b9b9-73ccd16b5448 +2023,La Pampa,II.5.1,15.350999999999999,TJ,N2O,3.9,kg/TJ,59.8689,Gas Oil combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,44eec79b-7e0f-3c0b-b9b9-73ccd16b5448 +2023,Mendoza,II.5.1,125.3364,TJ,CO2,74100.0,kg/TJ,9287427.24,Gas Oil combustion consumption by agriculture machines,AR-M,SESCO,annual,kg,f7ae6dbd-1998-364b-96e8-a825922ebdd5 +2023,Mendoza,II.5.1,125.3364,TJ,CH4,3.9,kg/TJ,488.81196,Gas Oil combustion consumption by agriculture machines,AR-M,SESCO,annual,kg,2c8bf724-90e3-35de-a3de-6c6b8b9f1b54 +2023,Mendoza,II.5.1,125.3364,TJ,N2O,3.9,kg/TJ,488.81196,Gas Oil combustion consumption by agriculture machines,AR-M,SESCO,annual,kg,2c8bf724-90e3-35de-a3de-6c6b8b9f1b54 +2023,Misiones,II.5.1,15.7122,TJ,CO2,74100.0,kg/TJ,1164274.02,Gas Oil combustion consumption by agriculture machines,AR-N,SESCO,annual,kg,453d65e3-b9d2-346d-987e-8b9f538ac667 +2023,Misiones,II.5.1,15.7122,TJ,CH4,3.9,kg/TJ,61.27757999999999,Gas Oil combustion consumption by agriculture machines,AR-N,SESCO,annual,kg,1e03892d-f623-3435-a005-9e4450cf56d6 +2023,Misiones,II.5.1,15.7122,TJ,N2O,3.9,kg/TJ,61.27757999999999,Gas Oil combustion consumption by agriculture machines,AR-N,SESCO,annual,kg,1e03892d-f623-3435-a005-9e4450cf56d6 +2023,Neuquén,II.5.1,25.139519999999997,TJ,CO2,74100.0,kg/TJ,1862838.4319999998,Gas Oil combustion consumption by agriculture machines,AR-Q,SESCO,annual,kg,356173d8-4055-3a84-afa3-1d548731c6d5 +2023,Neuquén,II.5.1,25.139519999999997,TJ,CH4,3.9,kg/TJ,98.04412799999999,Gas Oil combustion consumption by agriculture machines,AR-Q,SESCO,annual,kg,dacfe67e-8bfe-363b-b732-92aff5279d58 +2023,Neuquén,II.5.1,25.139519999999997,TJ,N2O,3.9,kg/TJ,98.04412799999999,Gas Oil combustion consumption by agriculture machines,AR-Q,SESCO,annual,kg,dacfe67e-8bfe-363b-b732-92aff5279d58 +2023,Salta,II.5.1,32.29128,TJ,CO2,74100.0,kg/TJ,2392783.848,Gas Oil combustion consumption by agriculture machines,AR-A,SESCO,annual,kg,b5455068-18e7-37dd-9ddd-a591f602ef31 +2023,Salta,II.5.1,32.29128,TJ,CH4,3.9,kg/TJ,125.935992,Gas Oil combustion consumption by agriculture machines,AR-A,SESCO,annual,kg,1b94004b-d890-324f-95ce-e9224fb11f9a +2023,Salta,II.5.1,32.29128,TJ,N2O,3.9,kg/TJ,125.935992,Gas Oil combustion consumption by agriculture machines,AR-A,SESCO,annual,kg,1b94004b-d890-324f-95ce-e9224fb11f9a +2023,San Juan,II.5.1,27.01776,TJ,CO2,74100.0,kg/TJ,2002016.0159999998,Gas Oil combustion consumption by agriculture machines,AR-J,SESCO,annual,kg,3bf5d693-42a6-3000-8635-f69f51c3fded +2023,San Juan,II.5.1,27.01776,TJ,CH4,3.9,kg/TJ,105.369264,Gas Oil combustion consumption by agriculture machines,AR-J,SESCO,annual,kg,cb40094d-1221-39ed-870e-97d2aa5a7e4e +2023,San Juan,II.5.1,27.01776,TJ,N2O,3.9,kg/TJ,105.369264,Gas Oil combustion consumption by agriculture machines,AR-J,SESCO,annual,kg,cb40094d-1221-39ed-870e-97d2aa5a7e4e +2023,San Luis,II.5.1,26.512079999999997,TJ,CO2,74100.0,kg/TJ,1964545.1279999998,Gas Oil combustion consumption by agriculture machines,AR-D,SESCO,annual,kg,45490173-664a-3e6b-98b3-9fe8536bbeb7 +2023,San Luis,II.5.1,26.512079999999997,TJ,CH4,3.9,kg/TJ,103.39711199999999,Gas Oil combustion consumption by agriculture machines,AR-D,SESCO,annual,kg,4fb58e12-1844-3fa5-a158-2ad52061c3d4 +2023,San Luis,II.5.1,26.512079999999997,TJ,N2O,3.9,kg/TJ,103.39711199999999,Gas Oil combustion consumption by agriculture machines,AR-D,SESCO,annual,kg,4fb58e12-1844-3fa5-a158-2ad52061c3d4 +2023,Santa Cruz,II.5.1,30.55752,TJ,CO2,74100.0,kg/TJ,2264312.232,Gas Oil combustion consumption by agriculture machines,AR-Z,SESCO,annual,kg,e6c48ec2-5d59-3cce-b7bb-626338469347 +2023,Santa Cruz,II.5.1,30.55752,TJ,CH4,3.9,kg/TJ,119.174328,Gas Oil combustion consumption by agriculture machines,AR-Z,SESCO,annual,kg,3f2c3413-9c7f-3a61-808e-02e5c12eaa24 +2023,Santa Cruz,II.5.1,30.55752,TJ,N2O,3.9,kg/TJ,119.174328,Gas Oil combustion consumption by agriculture machines,AR-Z,SESCO,annual,kg,3f2c3413-9c7f-3a61-808e-02e5c12eaa24 +2023,Santa Fe,II.5.1,279.35208,TJ,CO2,74100.0,kg/TJ,20699989.128,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,f40ff65d-b466-3ccf-81dc-79a69fc8fcd4 +2023,Santa Fe,II.5.1,279.35208,TJ,CH4,3.9,kg/TJ,1089.473112,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,02258fdb-b0c7-3cc8-b7a0-61d710329db0 +2023,Santa Fe,II.5.1,279.35208,TJ,N2O,3.9,kg/TJ,1089.473112,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,02258fdb-b0c7-3cc8-b7a0-61d710329db0 +2023,Santiago del Estero,II.5.1,199.52687999999998,TJ,CO2,74100.0,kg/TJ,14784941.807999998,Gas Oil combustion consumption by agriculture machines,AR-G,SESCO,annual,kg,b456e211-32a0-3e30-814d-27cc0d11512d +2023,Santiago del Estero,II.5.1,199.52687999999998,TJ,CH4,3.9,kg/TJ,778.1548319999999,Gas Oil combustion consumption by agriculture machines,AR-G,SESCO,annual,kg,ae72fd16-7b61-38d3-9e85-94c33fb51112 +2023,Santiago del Estero,II.5.1,199.52687999999998,TJ,N2O,3.9,kg/TJ,778.1548319999999,Gas Oil combustion consumption by agriculture machines,AR-G,SESCO,annual,kg,ae72fd16-7b61-38d3-9e85-94c33fb51112 +2023,Tucuman,II.5.1,42.440999999999995,TJ,CO2,74100.0,kg/TJ,3144878.0999999996,Gas Oil combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,47ff41f5-9a30-38fd-a425-0e7a42396b30 +2023,Tucuman,II.5.1,42.440999999999995,TJ,CH4,3.9,kg/TJ,165.51989999999998,Gas Oil combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,13f4e6c9-5a46-3219-be24-b185e98a4c6e +2023,Tucuman,II.5.1,42.440999999999995,TJ,N2O,3.9,kg/TJ,165.51989999999998,Gas Oil combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,13f4e6c9-5a46-3219-be24-b185e98a4c6e +2023,Santa Fe,II.5.1,1.816045,TJ,CO2,73300.0,kg/TJ,133116.0985,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,2c2546cb-1f28-325a-ab98-94951e0e47c9 +2023,Santa Fe,II.5.1,1.816045,TJ,CH4,0.5,kg/TJ,0.9080225,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,71fcd8c4-4abc-3e9b-8817-30b6512043c8 +2023,Santa Fe,II.5.1,1.816045,TJ,N2O,2.0,kg/TJ,3.63209,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,f8bae47b-e065-3e65-8a84-1a7ab2663000 +2023,Santa Fe,II.5.1,1.1650099999999999,TJ,CO2,73300.0,kg/TJ,85395.233,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,9eff493f-6c40-3648-8606-6c9468e10c4c +2023,Santa Fe,II.5.1,1.1650099999999999,TJ,CH4,0.5,kg/TJ,0.5825049999999999,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,1bfa5cff-cd5a-3a65-8457-33b81d34a697 +2023,Santa Fe,II.5.1,1.1650099999999999,TJ,N2O,2.0,kg/TJ,2.3300199999999998,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,dcd4c147-07c4-3145-b63f-ad1a21187238 +2023,Buenos Aires,II.2.1,111.71915999999999,TJ,CO2,74100.0,kg/TJ,8278389.755999999,Gas Oil combustion consumption by railway transport,AR-B,SESCO,annual,kg,1989f5be-c21f-3a3e-9e32-9be3c5c6b113 +2023,Buenos Aires,II.2.1,111.71915999999999,TJ,CH4,3.9,kg/TJ,435.70472399999994,Gas Oil combustion consumption by railway transport,AR-B,SESCO,annual,kg,dd624173-02a6-3bb9-a949-7956121d47a5 +2023,Buenos Aires,II.2.1,111.71915999999999,TJ,N2O,3.9,kg/TJ,435.70472399999994,Gas Oil combustion consumption by railway transport,AR-B,SESCO,annual,kg,dd624173-02a6-3bb9-a949-7956121d47a5 +2023,Córdoba,II.2.1,1.30032,TJ,CO2,74100.0,kg/TJ,96353.712,Gas Oil combustion consumption by railway transport,AR-X,SESCO,annual,kg,96b486d1-4a2f-3ada-9d3e-ec31571c80ad +2023,Córdoba,II.2.1,1.30032,TJ,CH4,3.9,kg/TJ,5.071248,Gas Oil combustion consumption by railway transport,AR-X,SESCO,annual,kg,d99cb075-cd87-3443-b941-99051d523c13 +2023,Córdoba,II.2.1,1.30032,TJ,N2O,3.9,kg/TJ,5.071248,Gas Oil combustion consumption by railway transport,AR-X,SESCO,annual,kg,d99cb075-cd87-3443-b941-99051d523c13 +2023,La Pampa,II.2.1,30.19632,TJ,CO2,74100.0,kg/TJ,2237547.312,Gas Oil combustion consumption by railway transport,AR-L,SESCO,annual,kg,4e62d6dd-ebcd-3cc0-a87d-d7c7b46b3735 +2023,La Pampa,II.2.1,30.19632,TJ,CH4,3.9,kg/TJ,117.765648,Gas Oil combustion consumption by railway transport,AR-L,SESCO,annual,kg,2a6f9074-3362-39d3-aae9-ae4ee9ba71c8 +2023,La Pampa,II.2.1,30.19632,TJ,N2O,3.9,kg/TJ,117.765648,Gas Oil combustion consumption by railway transport,AR-L,SESCO,annual,kg,2a6f9074-3362-39d3-aae9-ae4ee9ba71c8 +2023,Neuquén,II.2.1,2.81736,TJ,CO2,74100.0,kg/TJ,208766.376,Gas Oil combustion consumption by railway transport,AR-Q,SESCO,annual,kg,80149c20-2745-34bb-adb5-05560309138c +2023,Neuquén,II.2.1,2.81736,TJ,CH4,3.9,kg/TJ,10.987703999999999,Gas Oil combustion consumption by railway transport,AR-Q,SESCO,annual,kg,8420e818-7260-3c12-8c7a-e1e9b491d1c4 +2023,Neuquén,II.2.1,2.81736,TJ,N2O,3.9,kg/TJ,10.987703999999999,Gas Oil combustion consumption by railway transport,AR-Q,SESCO,annual,kg,8420e818-7260-3c12-8c7a-e1e9b491d1c4 +2023,Santa Fe,II.2.1,86.11008,TJ,CO2,74100.0,kg/TJ,6380756.927999999,Gas Oil combustion consumption by railway transport,AR-S,SESCO,annual,kg,8333c581-da37-3c5b-8518-1101a6f6fc0a +2023,Santa Fe,II.2.1,86.11008,TJ,CH4,3.9,kg/TJ,335.82931199999996,Gas Oil combustion consumption by railway transport,AR-S,SESCO,annual,kg,1ed5328e-9ff7-38f3-a339-cdf225491dd8 +2023,Santa Fe,II.2.1,86.11008,TJ,N2O,3.9,kg/TJ,335.82931199999996,Gas Oil combustion consumption by railway transport,AR-S,SESCO,annual,kg,1ed5328e-9ff7-38f3-a339-cdf225491dd8 +2023,Santiago del Estero,II.2.1,5.20128,TJ,CO2,74100.0,kg/TJ,385414.848,Gas Oil combustion consumption by railway transport,AR-G,SESCO,annual,kg,6bd6b07d-563a-3cb4-a789-f5f4fa90f72a +2023,Santiago del Estero,II.2.1,5.20128,TJ,CH4,3.9,kg/TJ,20.284992,Gas Oil combustion consumption by railway transport,AR-G,SESCO,annual,kg,41d41861-3c43-3883-bb5d-0e0a89dd10ba +2023,Santiago del Estero,II.2.1,5.20128,TJ,N2O,3.9,kg/TJ,20.284992,Gas Oil combustion consumption by railway transport,AR-G,SESCO,annual,kg,41d41861-3c43-3883-bb5d-0e0a89dd10ba +2023,Tucuman,II.2.1,2.6728799999999997,TJ,CO2,74100.0,kg/TJ,198060.40799999997,Gas Oil combustion consumption by railway transport,AR-T,SESCO,annual,kg,1e15bc02-26cf-31ce-9b9e-53664c7bacca +2023,Tucuman,II.2.1,2.6728799999999997,TJ,CH4,3.9,kg/TJ,10.424231999999998,Gas Oil combustion consumption by railway transport,AR-T,SESCO,annual,kg,927697b9-1705-3469-850e-4272c810b1a8 +2023,Tucuman,II.2.1,2.6728799999999997,TJ,N2O,3.9,kg/TJ,10.424231999999998,Gas Oil combustion consumption by railway transport,AR-T,SESCO,annual,kg,927697b9-1705-3469-850e-4272c810b1a8 +2023,Buenos Aires,II.1.1,1298.8752,TJ,CO2,74100.0,kg/TJ,96246652.32,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,9bf9381d-239f-3570-a645-7b46d398f440 +2023,Buenos Aires,II.1.1,1298.8752,TJ,CH4,3.9,kg/TJ,5065.61328,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,570811f5-55cd-3772-b231-415cb05a9996 +2023,Buenos Aires,II.1.1,1298.8752,TJ,N2O,3.9,kg/TJ,5065.61328,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,570811f5-55cd-3772-b231-415cb05a9996 +2023,Capital Federal,II.1.1,1383.25152,TJ,CO2,74100.0,kg/TJ,102498937.632,Gas Oil combustion consumption by freight transport,AR-C,SESCO,annual,kg,e7afa33a-433d-395e-86ed-0657158d6045 +2023,Capital Federal,II.1.1,1383.25152,TJ,CH4,3.9,kg/TJ,5394.680928,Gas Oil combustion consumption by freight transport,AR-C,SESCO,annual,kg,ad6f4781-0fab-3897-b0e8-e0c551482d3b +2023,Capital Federal,II.1.1,1383.25152,TJ,N2O,3.9,kg/TJ,5394.680928,Gas Oil combustion consumption by freight transport,AR-C,SESCO,annual,kg,ad6f4781-0fab-3897-b0e8-e0c551482d3b +2023,Chaco,II.1.1,24.850559999999998,TJ,CO2,74100.0,kg/TJ,1841426.4959999998,Gas Oil combustion consumption by freight transport,AR-H,SESCO,annual,kg,a69e1070-bc08-372b-a493-20b147889894 +2023,Chaco,II.1.1,24.850559999999998,TJ,CH4,3.9,kg/TJ,96.91718399999999,Gas Oil combustion consumption by freight transport,AR-H,SESCO,annual,kg,88bf00cc-378c-358f-8708-e44f49417952 +2023,Chaco,II.1.1,24.850559999999998,TJ,N2O,3.9,kg/TJ,96.91718399999999,Gas Oil combustion consumption by freight transport,AR-H,SESCO,annual,kg,88bf00cc-378c-358f-8708-e44f49417952 +2023,Chubut,II.1.1,11.377799999999999,TJ,CO2,74100.0,kg/TJ,843094.9799999999,Gas Oil combustion consumption by freight transport,AR-U,SESCO,annual,kg,197d4e49-93ca-348f-b54f-df3cee7d10ac +2023,Chubut,II.1.1,11.377799999999999,TJ,CH4,3.9,kg/TJ,44.373419999999996,Gas Oil combustion consumption by freight transport,AR-U,SESCO,annual,kg,9d67d207-9749-347d-acfc-b6a6d1e4815d +2023,Chubut,II.1.1,11.377799999999999,TJ,N2O,3.9,kg/TJ,44.373419999999996,Gas Oil combustion consumption by freight transport,AR-U,SESCO,annual,kg,9d67d207-9749-347d-acfc-b6a6d1e4815d +2023,Corrientes,II.1.1,51.471,TJ,CO2,74100.0,kg/TJ,3814001.0999999996,Gas Oil combustion consumption by freight transport,AR-W,SESCO,annual,kg,aaf5952d-e2c0-3a1d-b5e0-de40441710c7 +2023,Corrientes,II.1.1,51.471,TJ,CH4,3.9,kg/TJ,200.7369,Gas Oil combustion consumption by freight transport,AR-W,SESCO,annual,kg,c2b9fed4-7c6a-3d28-a6ba-1de89c308480 +2023,Corrientes,II.1.1,51.471,TJ,N2O,3.9,kg/TJ,200.7369,Gas Oil combustion consumption by freight transport,AR-W,SESCO,annual,kg,c2b9fed4-7c6a-3d28-a6ba-1de89c308480 +2023,Córdoba,II.1.1,247.34975999999997,TJ,CO2,74100.0,kg/TJ,18328617.216,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,bc20b65c-0277-3e3f-89d8-06b5def82593 +2023,Córdoba,II.1.1,247.34975999999997,TJ,CH4,3.9,kg/TJ,964.6640639999998,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,8ef930a3-1836-3278-94f4-82e6697b8455 +2023,Córdoba,II.1.1,247.34975999999997,TJ,N2O,3.9,kg/TJ,964.6640639999998,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,8ef930a3-1836-3278-94f4-82e6697b8455 +2023,Entre Rios,II.1.1,37.96212,TJ,CO2,74100.0,kg/TJ,2812993.0919999997,Gas Oil combustion consumption by freight transport,AR-E,SESCO,annual,kg,4b0d7a02-8ea2-3dc3-8f47-26a122d674bb +2023,Entre Rios,II.1.1,37.96212,TJ,CH4,3.9,kg/TJ,148.052268,Gas Oil combustion consumption by freight transport,AR-E,SESCO,annual,kg,16ec0783-facc-31de-b221-d03806f0ebea +2023,Entre Rios,II.1.1,37.96212,TJ,N2O,3.9,kg/TJ,148.052268,Gas Oil combustion consumption by freight transport,AR-E,SESCO,annual,kg,16ec0783-facc-31de-b221-d03806f0ebea +2023,Formosa,II.1.1,0.28896,TJ,CO2,74100.0,kg/TJ,21411.935999999998,Gas Oil combustion consumption by freight transport,AR-P,SESCO,annual,kg,b751b380-81d8-3e76-8144-642ee9fc0e30 +2023,Formosa,II.1.1,0.28896,TJ,CH4,3.9,kg/TJ,1.126944,Gas Oil combustion consumption by freight transport,AR-P,SESCO,annual,kg,2cd82097-6684-3c9f-be50-61ad2dd06ea7 +2023,Formosa,II.1.1,0.28896,TJ,N2O,3.9,kg/TJ,1.126944,Gas Oil combustion consumption by freight transport,AR-P,SESCO,annual,kg,2cd82097-6684-3c9f-be50-61ad2dd06ea7 +2023,La Pampa,II.1.1,7.36848,TJ,CO2,74100.0,kg/TJ,546004.368,Gas Oil combustion consumption by freight transport,AR-L,SESCO,annual,kg,514cc063-503d-3162-bf48-2f77de64b248 +2023,La Pampa,II.1.1,7.36848,TJ,CH4,3.9,kg/TJ,28.737071999999998,Gas Oil combustion consumption by freight transport,AR-L,SESCO,annual,kg,c339c038-c909-3678-8da1-e23c17a2637b +2023,La Pampa,II.1.1,7.36848,TJ,N2O,3.9,kg/TJ,28.737071999999998,Gas Oil combustion consumption by freight transport,AR-L,SESCO,annual,kg,c339c038-c909-3678-8da1-e23c17a2637b +2023,Mendoza,II.1.1,157.23036,TJ,CO2,74100.0,kg/TJ,11650769.675999999,Gas Oil combustion consumption by freight transport,AR-M,SESCO,annual,kg,e6960cbb-0585-385a-9f34-69047aa87b30 +2023,Mendoza,II.1.1,157.23036,TJ,CH4,3.9,kg/TJ,613.198404,Gas Oil combustion consumption by freight transport,AR-M,SESCO,annual,kg,7089906f-c8c2-3f13-b022-22c251101fcc +2023,Mendoza,II.1.1,157.23036,TJ,N2O,3.9,kg/TJ,613.198404,Gas Oil combustion consumption by freight transport,AR-M,SESCO,annual,kg,7089906f-c8c2-3f13-b022-22c251101fcc +2023,Misiones,II.1.1,205.3422,TJ,CO2,74100.0,kg/TJ,15215857.02,Gas Oil combustion consumption by freight transport,AR-N,SESCO,annual,kg,f96526d9-b38c-367a-9508-99b6883e9bff +2023,Misiones,II.1.1,205.3422,TJ,CH4,3.9,kg/TJ,800.83458,Gas Oil combustion consumption by freight transport,AR-N,SESCO,annual,kg,651873ce-f0e8-3668-be6a-acbf8f32de55 +2023,Misiones,II.1.1,205.3422,TJ,N2O,3.9,kg/TJ,800.83458,Gas Oil combustion consumption by freight transport,AR-N,SESCO,annual,kg,651873ce-f0e8-3668-be6a-acbf8f32de55 +2023,Rio Negro,II.1.1,365.5344,TJ,CO2,74100.0,kg/TJ,27086099.04,Gas Oil combustion consumption by freight transport,AR-R,SESCO,annual,kg,9f17be82-0d8b-3433-ab97-0b36b30f7695 +2023,Rio Negro,II.1.1,365.5344,TJ,CH4,3.9,kg/TJ,1425.5841599999999,Gas Oil combustion consumption by freight transport,AR-R,SESCO,annual,kg,ff419c55-3c33-3f12-9dec-8626f7963233 +2023,Rio Negro,II.1.1,365.5344,TJ,N2O,3.9,kg/TJ,1425.5841599999999,Gas Oil combustion consumption by freight transport,AR-R,SESCO,annual,kg,ff419c55-3c33-3f12-9dec-8626f7963233 +2023,Salta,II.1.1,207.61776,TJ,CO2,74100.0,kg/TJ,15384476.016,Gas Oil combustion consumption by freight transport,AR-A,SESCO,annual,kg,f23d4838-a990-3440-a281-ad2baba94a24 +2023,Salta,II.1.1,207.61776,TJ,CH4,3.9,kg/TJ,809.709264,Gas Oil combustion consumption by freight transport,AR-A,SESCO,annual,kg,13700889-9a15-3a01-9f93-0069fc39630b +2023,Salta,II.1.1,207.61776,TJ,N2O,3.9,kg/TJ,809.709264,Gas Oil combustion consumption by freight transport,AR-A,SESCO,annual,kg,13700889-9a15-3a01-9f93-0069fc39630b +2023,San Juan,II.1.1,2.09496,TJ,CO2,74100.0,kg/TJ,155236.536,Gas Oil combustion consumption by freight transport,AR-J,SESCO,annual,kg,4742dec7-34d3-385b-b06f-1542ea8a5ba8 +2023,San Juan,II.1.1,2.09496,TJ,CH4,3.9,kg/TJ,8.170344,Gas Oil combustion consumption by freight transport,AR-J,SESCO,annual,kg,45b99a74-103b-3f1f-8b27-b46cdce74d66 +2023,San Juan,II.1.1,2.09496,TJ,N2O,3.9,kg/TJ,8.170344,Gas Oil combustion consumption by freight transport,AR-J,SESCO,annual,kg,45b99a74-103b-3f1f-8b27-b46cdce74d66 +2023,San Luis,II.1.1,51.398759999999996,TJ,CO2,74100.0,kg/TJ,3808648.1159999995,Gas Oil combustion consumption by freight transport,AR-D,SESCO,annual,kg,dc414a10-d54a-339d-b896-c4e48fe0dae5 +2023,San Luis,II.1.1,51.398759999999996,TJ,CH4,3.9,kg/TJ,200.45516399999997,Gas Oil combustion consumption by freight transport,AR-D,SESCO,annual,kg,ac1b4f0c-408d-3110-a5bb-893e0e146c03 +2023,San Luis,II.1.1,51.398759999999996,TJ,N2O,3.9,kg/TJ,200.45516399999997,Gas Oil combustion consumption by freight transport,AR-D,SESCO,annual,kg,ac1b4f0c-408d-3110-a5bb-893e0e146c03 +2023,Santa Fe,II.1.1,436.76304,TJ,CO2,74100.0,kg/TJ,32364141.264,Gas Oil combustion consumption by freight transport,AR-S,SESCO,annual,kg,62acf951-3d55-323d-8cfe-5e6a0a0aa72a +2023,Santa Fe,II.1.1,436.76304,TJ,CH4,3.9,kg/TJ,1703.3758559999999,Gas Oil combustion consumption by freight transport,AR-S,SESCO,annual,kg,66be1654-777f-3b57-b52d-916fbcbd9582 +2023,Santa Fe,II.1.1,436.76304,TJ,N2O,3.9,kg/TJ,1703.3758559999999,Gas Oil combustion consumption by freight transport,AR-S,SESCO,annual,kg,66be1654-777f-3b57-b52d-916fbcbd9582 +2023,Santiago del Estero,II.1.1,52.08504,TJ,CO2,74100.0,kg/TJ,3859501.464,Gas Oil combustion consumption by freight transport,AR-G,SESCO,annual,kg,4fec1e8d-281c-3995-bc76-9309530f4efd +2023,Santiago del Estero,II.1.1,52.08504,TJ,CH4,3.9,kg/TJ,203.131656,Gas Oil combustion consumption by freight transport,AR-G,SESCO,annual,kg,9f8562f0-cf0f-34ba-a4a1-3dc270114997 +2023,Santiago del Estero,II.1.1,52.08504,TJ,N2O,3.9,kg/TJ,203.131656,Gas Oil combustion consumption by freight transport,AR-G,SESCO,annual,kg,9f8562f0-cf0f-34ba-a4a1-3dc270114997 +2023,Tucuman,II.1.1,44.71656,TJ,CO2,74100.0,kg/TJ,3313497.096,Gas Oil combustion consumption by freight transport,AR-T,SESCO,annual,kg,326c4467-7744-320e-a832-d2efb72efabc +2023,Tucuman,II.1.1,44.71656,TJ,CH4,3.9,kg/TJ,174.394584,Gas Oil combustion consumption by freight transport,AR-T,SESCO,annual,kg,d2f8fcfa-2326-3347-b16c-ecc60a7e063f +2023,Tucuman,II.1.1,44.71656,TJ,N2O,3.9,kg/TJ,174.394584,Gas Oil combustion consumption by freight transport,AR-T,SESCO,annual,kg,d2f8fcfa-2326-3347-b16c-ecc60a7e063f +2023,Buenos Aires,II.1.1,576.98088,TJ,CO2,74100.0,kg/TJ,42754283.208,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,80f25bfc-8b6f-3f79-ac17-e69e989f0758 +2023,Buenos Aires,II.1.1,576.98088,TJ,CH4,3.9,kg/TJ,2250.2254319999997,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,f6b38b46-9e4d-39f2-8bed-95c9f84cdf30 +2023,Buenos Aires,II.1.1,576.98088,TJ,N2O,3.9,kg/TJ,2250.2254319999997,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,f6b38b46-9e4d-39f2-8bed-95c9f84cdf30 +2023,Capital Federal,II.1.1,166.47708,TJ,CO2,74100.0,kg/TJ,12335951.628,Gas Oil combustion consumption by freight transport,AR-C,SESCO,annual,kg,fc7a6cd5-48fd-3b7e-ad01-e3709fa85c1c +2023,Capital Federal,II.1.1,166.47708,TJ,CH4,3.9,kg/TJ,649.260612,Gas Oil combustion consumption by freight transport,AR-C,SESCO,annual,kg,f42f2170-9d1d-33ba-b941-9c8806afeaa3 +2023,Capital Federal,II.1.1,166.47708,TJ,N2O,3.9,kg/TJ,649.260612,Gas Oil combustion consumption by freight transport,AR-C,SESCO,annual,kg,f42f2170-9d1d-33ba-b941-9c8806afeaa3 +2023,Chaco,II.1.1,4.94844,TJ,CO2,74100.0,kg/TJ,366679.404,Gas Oil combustion consumption by freight transport,AR-H,SESCO,annual,kg,52b66ca3-874b-34a8-a8d7-765bc72f4266 +2023,Chaco,II.1.1,4.94844,TJ,CH4,3.9,kg/TJ,19.298916,Gas Oil combustion consumption by freight transport,AR-H,SESCO,annual,kg,ff011b6a-1424-39ea-ad16-3adaec71ce4b +2023,Chaco,II.1.1,4.94844,TJ,N2O,3.9,kg/TJ,19.298916,Gas Oil combustion consumption by freight transport,AR-H,SESCO,annual,kg,ff011b6a-1424-39ea-ad16-3adaec71ce4b +2023,Chubut,II.1.1,1.01136,TJ,CO2,74100.0,kg/TJ,74941.776,Gas Oil combustion consumption by freight transport,AR-U,SESCO,annual,kg,2f662bd1-7503-3ba9-8533-9e7f4e67cb70 +2023,Chubut,II.1.1,1.01136,TJ,CH4,3.9,kg/TJ,3.9443040000000003,Gas Oil combustion consumption by freight transport,AR-U,SESCO,annual,kg,09541e54-6894-396e-a015-411ab926b7c1 +2023,Chubut,II.1.1,1.01136,TJ,N2O,3.9,kg/TJ,3.9443040000000003,Gas Oil combustion consumption by freight transport,AR-U,SESCO,annual,kg,09541e54-6894-396e-a015-411ab926b7c1 +2023,Corrientes,II.1.1,3.53976,TJ,CO2,74100.0,kg/TJ,262296.21599999996,Gas Oil combustion consumption by freight transport,AR-W,SESCO,annual,kg,edbbc741-0d5f-3111-afb8-6741cf8dec9c +2023,Corrientes,II.1.1,3.53976,TJ,CH4,3.9,kg/TJ,13.805063999999998,Gas Oil combustion consumption by freight transport,AR-W,SESCO,annual,kg,c034df8b-cfdc-3a45-8c7b-7829a1268ac9 +2023,Corrientes,II.1.1,3.53976,TJ,N2O,3.9,kg/TJ,13.805063999999998,Gas Oil combustion consumption by freight transport,AR-W,SESCO,annual,kg,c034df8b-cfdc-3a45-8c7b-7829a1268ac9 +2023,Córdoba,II.1.1,21.021839999999997,TJ,CO2,74100.0,kg/TJ,1557718.3439999998,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,28c1f6c0-1512-3a90-8102-98fbd839f460 +2023,Córdoba,II.1.1,21.021839999999997,TJ,CH4,3.9,kg/TJ,81.98517599999998,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,3c18dfb5-d6ba-377a-9409-7b3977b0e0e5 +2023,Córdoba,II.1.1,21.021839999999997,TJ,N2O,3.9,kg/TJ,81.98517599999998,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,3c18dfb5-d6ba-377a-9409-7b3977b0e0e5 +2023,Entre Rios,II.1.1,4.4066399999999994,TJ,CO2,74100.0,kg/TJ,326532.024,Gas Oil combustion consumption by freight transport,AR-E,SESCO,annual,kg,3b0abeb5-9fa3-33de-bcd9-2789ec24fcf7 +2023,Entre Rios,II.1.1,4.4066399999999994,TJ,CH4,3.9,kg/TJ,17.185895999999996,Gas Oil combustion consumption by freight transport,AR-E,SESCO,annual,kg,2eddbfb9-26c9-37d8-8dfc-699538f28640 +2023,Entre Rios,II.1.1,4.4066399999999994,TJ,N2O,3.9,kg/TJ,17.185895999999996,Gas Oil combustion consumption by freight transport,AR-E,SESCO,annual,kg,2eddbfb9-26c9-37d8-8dfc-699538f28640 +2023,La Pampa,II.1.1,0.18059999999999998,TJ,CO2,74100.0,kg/TJ,13382.46,Gas Oil combustion consumption by freight transport,AR-L,SESCO,annual,kg,a66bb4f5-d8cc-3169-8587-27e7a3bcf968 +2023,La Pampa,II.1.1,0.18059999999999998,TJ,CH4,3.9,kg/TJ,0.70434,Gas Oil combustion consumption by freight transport,AR-L,SESCO,annual,kg,cc3d68d1-8be3-34dc-972b-85794ae2c59f +2023,La Pampa,II.1.1,0.18059999999999998,TJ,N2O,3.9,kg/TJ,0.70434,Gas Oil combustion consumption by freight transport,AR-L,SESCO,annual,kg,cc3d68d1-8be3-34dc-972b-85794ae2c59f +2023,Mendoza,II.1.1,12.78648,TJ,CO2,74100.0,kg/TJ,947478.168,Gas Oil combustion consumption by freight transport,AR-M,SESCO,annual,kg,0bc313a2-fbda-3cf1-b288-4279959dcd8e +2023,Mendoza,II.1.1,12.78648,TJ,CH4,3.9,kg/TJ,49.86727199999999,Gas Oil combustion consumption by freight transport,AR-M,SESCO,annual,kg,0d0c5c23-0fc7-3ce8-aad8-8f2aace5d8cf +2023,Mendoza,II.1.1,12.78648,TJ,N2O,3.9,kg/TJ,49.86727199999999,Gas Oil combustion consumption by freight transport,AR-M,SESCO,annual,kg,0d0c5c23-0fc7-3ce8-aad8-8f2aace5d8cf +2023,Misiones,II.1.1,0.65016,TJ,CO2,74100.0,kg/TJ,48176.856,Gas Oil combustion consumption by freight transport,AR-N,SESCO,annual,kg,c60c3579-072a-3ac5-82c9-149085dbb675 +2023,Misiones,II.1.1,0.65016,TJ,CH4,3.9,kg/TJ,2.535624,Gas Oil combustion consumption by freight transport,AR-N,SESCO,annual,kg,dd800d76-7d32-3668-a53a-6e08506d8286 +2023,Misiones,II.1.1,0.65016,TJ,N2O,3.9,kg/TJ,2.535624,Gas Oil combustion consumption by freight transport,AR-N,SESCO,annual,kg,dd800d76-7d32-3668-a53a-6e08506d8286 +2023,Neuquén,II.1.1,0.03612,TJ,CO2,74100.0,kg/TJ,2676.4919999999997,Gas Oil combustion consumption by freight transport,AR-Q,SESCO,annual,kg,72f79e4f-cc41-3c96-90ab-f636da9fd693 +2023,Neuquén,II.1.1,0.03612,TJ,CH4,3.9,kg/TJ,0.140868,Gas Oil combustion consumption by freight transport,AR-Q,SESCO,annual,kg,a2c1117f-32e8-359f-bc8f-87f84ddd7b5b +2023,Neuquén,II.1.1,0.03612,TJ,N2O,3.9,kg/TJ,0.140868,Gas Oil combustion consumption by freight transport,AR-Q,SESCO,annual,kg,a2c1117f-32e8-359f-bc8f-87f84ddd7b5b +2023,Rio Negro,II.1.1,1.0836,TJ,CO2,74100.0,kg/TJ,80294.76,Gas Oil combustion consumption by freight transport,AR-R,SESCO,annual,kg,4c54c5be-1382-3e27-87ce-d225cd0df0f2 +2023,Rio Negro,II.1.1,1.0836,TJ,CH4,3.9,kg/TJ,4.226039999999999,Gas Oil combustion consumption by freight transport,AR-R,SESCO,annual,kg,14ef8d01-cef6-3444-9e0c-9a23c8c72ef5 +2023,Rio Negro,II.1.1,1.0836,TJ,N2O,3.9,kg/TJ,4.226039999999999,Gas Oil combustion consumption by freight transport,AR-R,SESCO,annual,kg,14ef8d01-cef6-3444-9e0c-9a23c8c72ef5 +2023,Salta,II.1.1,0.03612,TJ,CO2,74100.0,kg/TJ,2676.4919999999997,Gas Oil combustion consumption by freight transport,AR-A,SESCO,annual,kg,53ee0eef-d411-34c8-b139-89b5187ff052 +2023,Salta,II.1.1,0.03612,TJ,CH4,3.9,kg/TJ,0.140868,Gas Oil combustion consumption by freight transport,AR-A,SESCO,annual,kg,79a9c050-79d6-37f1-9982-1fee1612bbcb +2023,Salta,II.1.1,0.03612,TJ,N2O,3.9,kg/TJ,0.140868,Gas Oil combustion consumption by freight transport,AR-A,SESCO,annual,kg,79a9c050-79d6-37f1-9982-1fee1612bbcb +2023,San Juan,II.1.1,2.02272,TJ,CO2,74100.0,kg/TJ,149883.552,Gas Oil combustion consumption by freight transport,AR-J,SESCO,annual,kg,9e7ec3e4-3731-3861-9521-5bc1ce1762a9 +2023,San Juan,II.1.1,2.02272,TJ,CH4,3.9,kg/TJ,7.8886080000000005,Gas Oil combustion consumption by freight transport,AR-J,SESCO,annual,kg,d09591d1-c053-3e40-a3c2-e7f7e74be1eb +2023,San Juan,II.1.1,2.02272,TJ,N2O,3.9,kg/TJ,7.8886080000000005,Gas Oil combustion consumption by freight transport,AR-J,SESCO,annual,kg,d09591d1-c053-3e40-a3c2-e7f7e74be1eb +2023,San Luis,II.1.1,1.58928,TJ,CO2,74100.0,kg/TJ,117765.648,Gas Oil combustion consumption by freight transport,AR-D,SESCO,annual,kg,b6ff3edd-8022-3f75-9b82-6733a88c0653 +2023,San Luis,II.1.1,1.58928,TJ,CH4,3.9,kg/TJ,6.198192,Gas Oil combustion consumption by freight transport,AR-D,SESCO,annual,kg,7d1ab74c-81d8-3103-a18d-907da1fdf1c3 +2023,San Luis,II.1.1,1.58928,TJ,N2O,3.9,kg/TJ,6.198192,Gas Oil combustion consumption by freight transport,AR-D,SESCO,annual,kg,7d1ab74c-81d8-3103-a18d-907da1fdf1c3 +2023,Santa Cruz,II.1.1,0.03612,TJ,CO2,74100.0,kg/TJ,2676.4919999999997,Gas Oil combustion consumption by freight transport,AR-Z,SESCO,annual,kg,0a4f77ce-5e6c-3e44-ae37-2d8392a0fda4 +2023,Santa Cruz,II.1.1,0.03612,TJ,CH4,3.9,kg/TJ,0.140868,Gas Oil combustion consumption by freight transport,AR-Z,SESCO,annual,kg,f44d0187-48a6-3dee-8e71-89c418ca2cbb +2023,Santa Cruz,II.1.1,0.03612,TJ,N2O,3.9,kg/TJ,0.140868,Gas Oil combustion consumption by freight transport,AR-Z,SESCO,annual,kg,f44d0187-48a6-3dee-8e71-89c418ca2cbb +2023,Santa Fe,II.1.1,32.905319999999996,TJ,CO2,74100.0,kg/TJ,2438284.212,Gas Oil combustion consumption by freight transport,AR-S,SESCO,annual,kg,386dd14d-8d0d-39d1-b754-73f238c06b3c +2023,Santa Fe,II.1.1,32.905319999999996,TJ,CH4,3.9,kg/TJ,128.33074799999997,Gas Oil combustion consumption by freight transport,AR-S,SESCO,annual,kg,b1bfb6ba-e1d2-3026-a275-8aeb5020fa24 +2023,Santa Fe,II.1.1,32.905319999999996,TJ,N2O,3.9,kg/TJ,128.33074799999997,Gas Oil combustion consumption by freight transport,AR-S,SESCO,annual,kg,b1bfb6ba-e1d2-3026-a275-8aeb5020fa24 +2023,Santiago del Estero,II.1.1,1.15584,TJ,CO2,74100.0,kg/TJ,85647.74399999999,Gas Oil combustion consumption by freight transport,AR-G,SESCO,annual,kg,18d02d5e-9103-3585-a797-32e679054096 +2023,Santiago del Estero,II.1.1,1.15584,TJ,CH4,3.9,kg/TJ,4.507776,Gas Oil combustion consumption by freight transport,AR-G,SESCO,annual,kg,650d60c9-590e-3a16-9ea4-25e6e2d0f14f +2023,Santiago del Estero,II.1.1,1.15584,TJ,N2O,3.9,kg/TJ,4.507776,Gas Oil combustion consumption by freight transport,AR-G,SESCO,annual,kg,650d60c9-590e-3a16-9ea4-25e6e2d0f14f +2023,Tucuman,II.1.1,0.5418,TJ,CO2,74100.0,kg/TJ,40147.38,Gas Oil combustion consumption by freight transport,AR-T,SESCO,annual,kg,13483365-67da-3539-9ac3-063428d908e1 +2023,Tucuman,II.1.1,0.5418,TJ,CH4,3.9,kg/TJ,2.1130199999999997,Gas Oil combustion consumption by freight transport,AR-T,SESCO,annual,kg,a28d3e38-e279-3619-bbc3-920ba16d056c +2023,Tucuman,II.1.1,0.5418,TJ,N2O,3.9,kg/TJ,2.1130199999999997,Gas Oil combustion consumption by freight transport,AR-T,SESCO,annual,kg,a28d3e38-e279-3619-bbc3-920ba16d056c +2023,Buenos Aires,II.1.1,22.27225,TJ,CO2,73300.0,kg/TJ,1632555.925,Naphtha combustion consumption by freight transport,AR-B,SESCO,annual,kg,c292b08a-b431-3465-ab05-35a1ae479062 +2023,Buenos Aires,II.1.1,22.27225,TJ,CH4,0.5,kg/TJ,11.136125,Naphtha combustion consumption by freight transport,AR-B,SESCO,annual,kg,269a7883-1ca8-3c29-b08f-5a475bb60623 +2023,Buenos Aires,II.1.1,22.27225,TJ,N2O,2.0,kg/TJ,44.5445,Naphtha combustion consumption by freight transport,AR-B,SESCO,annual,kg,b3e0af3e-0bb3-3f8d-ac15-ed46755d2ae0 +2023,Capital Federal,II.1.1,28.851129999999998,TJ,CO2,73300.0,kg/TJ,2114787.829,Naphtha combustion consumption by freight transport,AR-C,SESCO,annual,kg,8a13ad47-c3d4-313f-80b8-142c34f88d47 +2023,Capital Federal,II.1.1,28.851129999999998,TJ,CH4,0.5,kg/TJ,14.425564999999999,Naphtha combustion consumption by freight transport,AR-C,SESCO,annual,kg,deafc53a-f4ab-366d-9f50-a54a723fc6dd +2023,Capital Federal,II.1.1,28.851129999999998,TJ,N2O,2.0,kg/TJ,57.702259999999995,Naphtha combustion consumption by freight transport,AR-C,SESCO,annual,kg,fd85ae2a-994e-3c3c-a65d-484cf9ee78be +2023,Chaco,II.1.1,0.034265,TJ,CO2,73300.0,kg/TJ,2511.6245,Naphtha combustion consumption by freight transport,AR-H,SESCO,annual,kg,9b3911a5-364c-30ff-ad52-a4c5f3f0eccd +2023,Chaco,II.1.1,0.034265,TJ,CH4,0.5,kg/TJ,0.0171325,Naphtha combustion consumption by freight transport,AR-H,SESCO,annual,kg,cf792043-323d-3be5-8e13-15cf4be88877 +2023,Chaco,II.1.1,0.034265,TJ,N2O,2.0,kg/TJ,0.06853,Naphtha combustion consumption by freight transport,AR-H,SESCO,annual,kg,560a6c85-e77d-3b4b-8c8b-cef597387b53 +2023,Corrientes,II.1.1,0.034265,TJ,CO2,73300.0,kg/TJ,2511.6245,Naphtha combustion consumption by freight transport,AR-W,SESCO,annual,kg,6b0c2505-58ff-3fba-8c52-dd715f6849f0 +2023,Corrientes,II.1.1,0.034265,TJ,CH4,0.5,kg/TJ,0.0171325,Naphtha combustion consumption by freight transport,AR-W,SESCO,annual,kg,dc3b04b4-6fdc-3e61-833e-9765fb805565 +2023,Corrientes,II.1.1,0.034265,TJ,N2O,2.0,kg/TJ,0.06853,Naphtha combustion consumption by freight transport,AR-W,SESCO,annual,kg,fda6ddb2-27a2-3a76-84f0-e2f08da93338 +2023,Córdoba,II.1.1,3.8034149999999998,TJ,CO2,73300.0,kg/TJ,278790.3195,Naphtha combustion consumption by freight transport,AR-X,SESCO,annual,kg,a0cbdbdf-0f2c-3142-81ad-f5bdfefff6f8 +2023,Córdoba,II.1.1,3.8034149999999998,TJ,CH4,0.5,kg/TJ,1.9017074999999999,Naphtha combustion consumption by freight transport,AR-X,SESCO,annual,kg,ad4caae6-e8a3-33c2-9d40-2a500cbcba0e +2023,Córdoba,II.1.1,3.8034149999999998,TJ,N2O,2.0,kg/TJ,7.6068299999999995,Naphtha combustion consumption by freight transport,AR-X,SESCO,annual,kg,51799e37-399a-3e9d-a8bb-ca6a535aff34 +2023,Mendoza,II.1.1,0.20559,TJ,CO2,73300.0,kg/TJ,15069.747,Naphtha combustion consumption by freight transport,AR-M,SESCO,annual,kg,2d1e5c65-2e61-3f5f-8482-da5f5fcffd6f +2023,Mendoza,II.1.1,0.20559,TJ,CH4,0.5,kg/TJ,0.102795,Naphtha combustion consumption by freight transport,AR-M,SESCO,annual,kg,37030ee2-52a4-3a79-9db9-28e6ac56f390 +2023,Mendoza,II.1.1,0.20559,TJ,N2O,2.0,kg/TJ,0.41118,Naphtha combustion consumption by freight transport,AR-M,SESCO,annual,kg,010b4174-aba4-3178-adbe-0e591d94c6d6 +2023,Rio Negro,II.1.1,0.445445,TJ,CO2,73300.0,kg/TJ,32651.118499999997,Naphtha combustion consumption by freight transport,AR-R,SESCO,annual,kg,c04016d1-2efa-3ec1-82d6-01c77885bdb9 +2023,Rio Negro,II.1.1,0.445445,TJ,CH4,0.5,kg/TJ,0.2227225,Naphtha combustion consumption by freight transport,AR-R,SESCO,annual,kg,2444281a-8def-35b0-9991-4e7c3776969d +2023,Rio Negro,II.1.1,0.445445,TJ,N2O,2.0,kg/TJ,0.89089,Naphtha combustion consumption by freight transport,AR-R,SESCO,annual,kg,16b09300-27ac-35c9-ba83-ed2c47bc9051 +2023,Santa Fe,II.1.1,11.410245,TJ,CO2,73300.0,kg/TJ,836370.9585,Naphtha combustion consumption by freight transport,AR-S,SESCO,annual,kg,d9ce5f40-c03d-3eea-bbda-f1e77322417e +2023,Santa Fe,II.1.1,11.410245,TJ,CH4,0.5,kg/TJ,5.7051225,Naphtha combustion consumption by freight transport,AR-S,SESCO,annual,kg,e589a828-7fd7-38ae-b424-2a0c7bc4a1de +2023,Santa Fe,II.1.1,11.410245,TJ,N2O,2.0,kg/TJ,22.82049,Naphtha combustion consumption by freight transport,AR-S,SESCO,annual,kg,8051e8e9-580b-3264-abb4-7c19e0497b22 +2023,Buenos Aires,II.1.1,13.192025,TJ,CO2,73300.0,kg/TJ,966975.4325,Naphtha combustion consumption by freight transport,AR-B,SESCO,annual,kg,337b3845-5443-32c1-984e-9ab08bbc5347 +2023,Buenos Aires,II.1.1,13.192025,TJ,CH4,0.5,kg/TJ,6.5960125,Naphtha combustion consumption by freight transport,AR-B,SESCO,annual,kg,14af49c1-a658-3198-8699-833883eed496 +2023,Buenos Aires,II.1.1,13.192025,TJ,N2O,2.0,kg/TJ,26.38405,Naphtha combustion consumption by freight transport,AR-B,SESCO,annual,kg,2f6c46cb-91f0-380e-ab67-3ef709aa9750 +2023,Capital Federal,II.1.1,21.72401,TJ,CO2,73300.0,kg/TJ,1592369.933,Naphtha combustion consumption by freight transport,AR-C,SESCO,annual,kg,84839d88-2328-3f39-9042-5b6ff8f51239 +2023,Capital Federal,II.1.1,21.72401,TJ,CH4,0.5,kg/TJ,10.862005,Naphtha combustion consumption by freight transport,AR-C,SESCO,annual,kg,121019d9-eec8-3590-b435-ac8a49000dea +2023,Capital Federal,II.1.1,21.72401,TJ,N2O,2.0,kg/TJ,43.44802,Naphtha combustion consumption by freight transport,AR-C,SESCO,annual,kg,63c1121e-2f32-3992-84af-dde1759b91cd +2023,Chubut,II.1.1,0.06853,TJ,CO2,73300.0,kg/TJ,5023.249,Naphtha combustion consumption by freight transport,AR-U,SESCO,annual,kg,490240b2-df84-3c0d-b9c7-d9eba866b5fe +2023,Chubut,II.1.1,0.06853,TJ,CH4,0.5,kg/TJ,0.034265,Naphtha combustion consumption by freight transport,AR-U,SESCO,annual,kg,5dd1e3f9-31bd-3bff-a714-5d130508fe00 +2023,Chubut,II.1.1,0.06853,TJ,N2O,2.0,kg/TJ,0.13706,Naphtha combustion consumption by freight transport,AR-U,SESCO,annual,kg,7b08d0c8-d3fe-31d1-bc57-7107459ada84 +2023,Córdoba,II.1.1,1.473395,TJ,CO2,73300.0,kg/TJ,107999.8535,Naphtha combustion consumption by freight transport,AR-X,SESCO,annual,kg,89c7f1d8-9cd3-33b6-a11f-3790c5c856f7 +2023,Córdoba,II.1.1,1.473395,TJ,CH4,0.5,kg/TJ,0.7366975,Naphtha combustion consumption by freight transport,AR-X,SESCO,annual,kg,d6f6b3ff-e58f-3302-b5a5-6bc9147de688 +2023,Córdoba,II.1.1,1.473395,TJ,N2O,2.0,kg/TJ,2.94679,Naphtha combustion consumption by freight transport,AR-X,SESCO,annual,kg,3a319fb0-b8ff-32e7-8c55-4f8fb26518ab +2023,Entre Rios,II.1.1,0.102795,TJ,CO2,73300.0,kg/TJ,7534.8735,Naphtha combustion consumption by freight transport,AR-E,SESCO,annual,kg,d1bc0c3c-76ab-30d0-a9ec-93eddb591822 +2023,Entre Rios,II.1.1,0.102795,TJ,CH4,0.5,kg/TJ,0.0513975,Naphtha combustion consumption by freight transport,AR-E,SESCO,annual,kg,70d5639d-21fd-365e-99f0-bcad720d00de +2023,Entre Rios,II.1.1,0.102795,TJ,N2O,2.0,kg/TJ,0.20559,Naphtha combustion consumption by freight transport,AR-E,SESCO,annual,kg,0ecd244a-6cb7-3be0-a46f-2ad42e970d33 +2023,La Rioja,II.1.1,0.41118,TJ,CO2,73300.0,kg/TJ,30139.494,Naphtha combustion consumption by freight transport,AR-F,SESCO,annual,kg,96a7a4e8-035c-3716-8b52-f753ca0b163f +2023,La Rioja,II.1.1,0.41118,TJ,CH4,0.5,kg/TJ,0.20559,Naphtha combustion consumption by freight transport,AR-F,SESCO,annual,kg,7b6fec65-e0ea-3381-a2b3-101d0586af2d +2023,La Rioja,II.1.1,0.41118,TJ,N2O,2.0,kg/TJ,0.82236,Naphtha combustion consumption by freight transport,AR-F,SESCO,annual,kg,2fc2ec4e-67b8-37b2-9fdb-84f3b208c3f3 +2023,Neuquén,II.1.1,0.034265,TJ,CO2,73300.0,kg/TJ,2511.6245,Naphtha combustion consumption by freight transport,AR-Q,SESCO,annual,kg,e77ba54c-02bc-3c6b-87fc-68f4af6b0f34 +2023,Neuquén,II.1.1,0.034265,TJ,CH4,0.5,kg/TJ,0.0171325,Naphtha combustion consumption by freight transport,AR-Q,SESCO,annual,kg,4d782512-402d-38a0-9a9c-ccbbf9dc5626 +2023,Neuquén,II.1.1,0.034265,TJ,N2O,2.0,kg/TJ,0.06853,Naphtha combustion consumption by freight transport,AR-Q,SESCO,annual,kg,96791ba1-94c7-37f1-8d0a-b8d60ede6541 +2023,Rio Negro,II.1.1,0.5825049999999999,TJ,CO2,73300.0,kg/TJ,42697.6165,Naphtha combustion consumption by freight transport,AR-R,SESCO,annual,kg,2989bd7c-d9a4-3f9e-9269-bf67d284a1e5 +2023,Rio Negro,II.1.1,0.5825049999999999,TJ,CH4,0.5,kg/TJ,0.29125249999999997,Naphtha combustion consumption by freight transport,AR-R,SESCO,annual,kg,746c6ed4-3b9c-3d91-b924-e7a3ecbb1c78 +2023,Rio Negro,II.1.1,0.5825049999999999,TJ,N2O,2.0,kg/TJ,1.1650099999999999,Naphtha combustion consumption by freight transport,AR-R,SESCO,annual,kg,64c9ae1e-e114-38f3-b1d2-55e7a015df44 +2023,San Luis,II.1.1,0.9936849999999999,TJ,CO2,73300.0,kg/TJ,72837.1105,Naphtha combustion consumption by freight transport,AR-D,SESCO,annual,kg,6c436c53-5758-3bd9-b6e8-5b557a6e63df +2023,San Luis,II.1.1,0.9936849999999999,TJ,CH4,0.5,kg/TJ,0.49684249999999996,Naphtha combustion consumption by freight transport,AR-D,SESCO,annual,kg,76ad54b7-89e9-3502-be15-add46714a368 +2023,San Luis,II.1.1,0.9936849999999999,TJ,N2O,2.0,kg/TJ,1.9873699999999999,Naphtha combustion consumption by freight transport,AR-D,SESCO,annual,kg,d1f92915-8116-3cb1-8816-e8dabe044896 +2023,Santa Fe,II.1.1,8.669044999999999,TJ,CO2,73300.0,kg/TJ,635440.9984999999,Naphtha combustion consumption by freight transport,AR-S,SESCO,annual,kg,2d73b982-56fd-352a-aa60-61a490f1884d +2023,Santa Fe,II.1.1,8.669044999999999,TJ,CH4,0.5,kg/TJ,4.334522499999999,Naphtha combustion consumption by freight transport,AR-S,SESCO,annual,kg,3f5570d9-2c6e-37c8-96d4-3bf2f801371a +2023,Santa Fe,II.1.1,8.669044999999999,TJ,N2O,2.0,kg/TJ,17.338089999999998,Naphtha combustion consumption by freight transport,AR-S,SESCO,annual,kg,9c5b45e5-f773-32fc-bc05-0e18e01aac36 +2023,Buenos Aires,II.1.1,587.6723999999999,TJ,CO2,74100.0,kg/TJ,43546524.839999996,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,7e061710-4ebc-3bda-9bea-d59264796c8e +2023,Buenos Aires,II.1.1,587.6723999999999,TJ,CH4,3.9,kg/TJ,2291.9223599999996,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,9d037027-40cd-3a26-a798-7149c1c17bcb +2023,Buenos Aires,II.1.1,587.6723999999999,TJ,N2O,3.9,kg/TJ,2291.9223599999996,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,9d037027-40cd-3a26-a798-7149c1c17bcb +2023,Capital Federal,II.1.1,201.69407999999999,TJ,CO2,74100.0,kg/TJ,14945531.328,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,df4b13bb-b11e-35f9-889a-6300a80fc26f +2023,Capital Federal,II.1.1,201.69407999999999,TJ,CH4,3.9,kg/TJ,786.606912,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,041fe182-d606-3355-8cd0-dd2c0a0895df +2023,Capital Federal,II.1.1,201.69407999999999,TJ,N2O,3.9,kg/TJ,786.606912,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,041fe182-d606-3355-8cd0-dd2c0a0895df +2023,Chaco,II.1.1,132.48816,TJ,CO2,74100.0,kg/TJ,9817372.656,Gas Oil combustion consumption by public passenger transport,AR-H,SESCO,annual,kg,49e51009-fe58-3bcb-b19f-45274f8f8066 +2023,Chaco,II.1.1,132.48816,TJ,CH4,3.9,kg/TJ,516.7038239999999,Gas Oil combustion consumption by public passenger transport,AR-H,SESCO,annual,kg,f26f5814-a690-3657-939e-c36593f77289 +2023,Chaco,II.1.1,132.48816,TJ,N2O,3.9,kg/TJ,516.7038239999999,Gas Oil combustion consumption by public passenger transport,AR-H,SESCO,annual,kg,f26f5814-a690-3657-939e-c36593f77289 +2023,Chubut,II.1.1,43.63296,TJ,CO2,74100.0,kg/TJ,3233202.3359999997,Gas Oil combustion consumption by public passenger transport,AR-U,SESCO,annual,kg,3ed7f9b0-426a-3e18-be71-ac2048cb35e3 +2023,Chubut,II.1.1,43.63296,TJ,CH4,3.9,kg/TJ,170.168544,Gas Oil combustion consumption by public passenger transport,AR-U,SESCO,annual,kg,fe269fe8-b6c4-38b1-bf46-e76a1c7603d8 +2023,Chubut,II.1.1,43.63296,TJ,N2O,3.9,kg/TJ,170.168544,Gas Oil combustion consumption by public passenger transport,AR-U,SESCO,annual,kg,fe269fe8-b6c4-38b1-bf46-e76a1c7603d8 +2023,Córdoba,II.1.1,57.4308,TJ,CO2,74100.0,kg/TJ,4255622.28,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,9d4037d4-c9f9-3a12-802f-f684658254df +2023,Córdoba,II.1.1,57.4308,TJ,CH4,3.9,kg/TJ,223.98012,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,64965240-35bb-309e-b8a6-3dca5ad9190f +2023,Córdoba,II.1.1,57.4308,TJ,N2O,3.9,kg/TJ,223.98012,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,64965240-35bb-309e-b8a6-3dca5ad9190f +2023,Entre Rios,II.1.1,45.836279999999995,TJ,CO2,74100.0,kg/TJ,3396468.3479999998,Gas Oil combustion consumption by public passenger transport,AR-E,SESCO,annual,kg,5cbddbb2-065a-3a1a-b802-d266cec26936 +2023,Entre Rios,II.1.1,45.836279999999995,TJ,CH4,3.9,kg/TJ,178.76149199999998,Gas Oil combustion consumption by public passenger transport,AR-E,SESCO,annual,kg,57b1d83a-68e8-3748-af63-0ed8a7c270e5 +2023,Entre Rios,II.1.1,45.836279999999995,TJ,N2O,3.9,kg/TJ,178.76149199999998,Gas Oil combustion consumption by public passenger transport,AR-E,SESCO,annual,kg,57b1d83a-68e8-3748-af63-0ed8a7c270e5 +2023,Mendoza,II.1.1,8.34372,TJ,CO2,74100.0,kg/TJ,618269.652,Gas Oil combustion consumption by public passenger transport,AR-M,SESCO,annual,kg,68c93889-0c59-3f5e-aa55-2e8cfc9b0d61 +2023,Mendoza,II.1.1,8.34372,TJ,CH4,3.9,kg/TJ,32.540507999999996,Gas Oil combustion consumption by public passenger transport,AR-M,SESCO,annual,kg,8bd18e55-7155-3a8f-97ca-ee1cae18af91 +2023,Mendoza,II.1.1,8.34372,TJ,N2O,3.9,kg/TJ,32.540507999999996,Gas Oil combustion consumption by public passenger transport,AR-M,SESCO,annual,kg,8bd18e55-7155-3a8f-97ca-ee1cae18af91 +2023,Rio Negro,II.1.1,42.0798,TJ,CO2,74100.0,kg/TJ,3118113.1799999997,Gas Oil combustion consumption by public passenger transport,AR-R,SESCO,annual,kg,b83ec1d6-8a19-34af-af8b-9ca25f6d7d0a +2023,Rio Negro,II.1.1,42.0798,TJ,CH4,3.9,kg/TJ,164.11122,Gas Oil combustion consumption by public passenger transport,AR-R,SESCO,annual,kg,cfd3388b-6e90-3f5c-b84c-1be77552999a +2023,Rio Negro,II.1.1,42.0798,TJ,N2O,3.9,kg/TJ,164.11122,Gas Oil combustion consumption by public passenger transport,AR-R,SESCO,annual,kg,cfd3388b-6e90-3f5c-b84c-1be77552999a +2023,Santa Fe,II.1.1,434.30688,TJ,CO2,74100.0,kg/TJ,32182139.808,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,0c409504-6d49-3aa5-8d76-2e4885a6452f +2023,Santa Fe,II.1.1,434.30688,TJ,CH4,3.9,kg/TJ,1693.7968319999998,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,908ce5c9-46e0-36a8-b5be-19aaacd138e3 +2023,Santa Fe,II.1.1,434.30688,TJ,N2O,3.9,kg/TJ,1693.7968319999998,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,908ce5c9-46e0-36a8-b5be-19aaacd138e3 +2023,Tucuman,II.1.1,157.66379999999998,TJ,CO2,74100.0,kg/TJ,11682887.579999998,Gas Oil combustion consumption by public passenger transport,AR-T,SESCO,annual,kg,cc402e31-fcfd-3964-a557-0c84a95fd8fb +2023,Tucuman,II.1.1,157.66379999999998,TJ,CH4,3.9,kg/TJ,614.8888199999999,Gas Oil combustion consumption by public passenger transport,AR-T,SESCO,annual,kg,628f4cd0-1643-3bab-bca7-80d5fd61fe88 +2023,Tucuman,II.1.1,157.66379999999998,TJ,N2O,3.9,kg/TJ,614.8888199999999,Gas Oil combustion consumption by public passenger transport,AR-T,SESCO,annual,kg,628f4cd0-1643-3bab-bca7-80d5fd61fe88 +2023,Buenos Aires,II.1.1,700.40292,TJ,CO2,74100.0,kg/TJ,51899856.372,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,e30f41f6-0f8b-393a-ad41-0f7b91513bc8 +2023,Buenos Aires,II.1.1,700.40292,TJ,CH4,3.9,kg/TJ,2731.571388,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,018663f2-9076-32cb-b505-823a09e39310 +2023,Buenos Aires,II.1.1,700.40292,TJ,N2O,3.9,kg/TJ,2731.571388,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,018663f2-9076-32cb-b505-823a09e39310 +2023,Capital Federal,II.1.1,77.62187999999999,TJ,CO2,74100.0,kg/TJ,5751781.307999999,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,a794d947-71fa-36ba-a391-7dfca3633145 +2023,Capital Federal,II.1.1,77.62187999999999,TJ,CH4,3.9,kg/TJ,302.725332,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,e08ee19e-c66e-3df0-a861-72b44cfebd28 +2023,Capital Federal,II.1.1,77.62187999999999,TJ,N2O,3.9,kg/TJ,302.725332,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,e08ee19e-c66e-3df0-a861-72b44cfebd28 +2023,Córdoba,II.1.1,103.62827999999999,TJ,CO2,74100.0,kg/TJ,7678855.5479999995,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,43fdc7b0-1bff-3cad-b714-a1e7a92a304f +2023,Córdoba,II.1.1,103.62827999999999,TJ,CH4,3.9,kg/TJ,404.1502919999999,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,c1c23e61-f84d-3415-80d1-22ba319a5c14 +2023,Córdoba,II.1.1,103.62827999999999,TJ,N2O,3.9,kg/TJ,404.1502919999999,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,c1c23e61-f84d-3415-80d1-22ba319a5c14 +2023,Entre Rios,II.1.1,3.03408,TJ,CO2,74100.0,kg/TJ,224825.32799999998,Gas Oil combustion consumption by public passenger transport,AR-E,SESCO,annual,kg,059ec413-8fd7-3b11-8f2f-68e76df3b0a3 +2023,Entre Rios,II.1.1,3.03408,TJ,CH4,3.9,kg/TJ,11.832911999999999,Gas Oil combustion consumption by public passenger transport,AR-E,SESCO,annual,kg,085f478e-9183-3181-9b7e-6cc510142d12 +2023,Entre Rios,II.1.1,3.03408,TJ,N2O,3.9,kg/TJ,11.832911999999999,Gas Oil combustion consumption by public passenger transport,AR-E,SESCO,annual,kg,085f478e-9183-3181-9b7e-6cc510142d12 +2023,Mendoza,II.1.1,0.50568,TJ,CO2,74100.0,kg/TJ,37470.888,Gas Oil combustion consumption by public passenger transport,AR-M,SESCO,annual,kg,7b5c3439-9baa-3189-ac25-9e10bd354237 +2023,Mendoza,II.1.1,0.50568,TJ,CH4,3.9,kg/TJ,1.9721520000000001,Gas Oil combustion consumption by public passenger transport,AR-M,SESCO,annual,kg,4863ff36-3f71-315f-afa9-228cba621265 +2023,Mendoza,II.1.1,0.50568,TJ,N2O,3.9,kg/TJ,1.9721520000000001,Gas Oil combustion consumption by public passenger transport,AR-M,SESCO,annual,kg,4863ff36-3f71-315f-afa9-228cba621265 +2023,Santa Fe,II.1.1,76.71888,TJ,CO2,74100.0,kg/TJ,5684869.007999999,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,03bade6f-c5d4-3064-b121-1c598fcfe1ec +2023,Santa Fe,II.1.1,76.71888,TJ,CH4,3.9,kg/TJ,299.20363199999997,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,a19fac7e-327d-347d-98b7-9bde216db568 +2023,Santa Fe,II.1.1,76.71888,TJ,N2O,3.9,kg/TJ,299.20363199999997,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,a19fac7e-327d-347d-98b7-9bde216db568 +2023,Buenos Aires,II.1.1,0.06853,TJ,CO2,73300.0,kg/TJ,5023.249,Naphtha combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,34989aa9-fd57-30cc-87ab-b9df38c22441 +2023,Buenos Aires,II.1.1,0.06853,TJ,CH4,0.5,kg/TJ,0.034265,Naphtha combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,a248df0f-843b-347e-bd7f-d919b5cc4bb9 +2023,Buenos Aires,II.1.1,0.06853,TJ,N2O,2.0,kg/TJ,0.13706,Naphtha combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,efff4a9a-dbad-3b75-8612-3b35c385973a +2023,Entre Rios,II.1.1,0.30838499999999996,TJ,CO2,73300.0,kg/TJ,22604.620499999997,Naphtha combustion consumption by public passenger transport,AR-E,SESCO,annual,kg,c8e9b621-406a-3211-8a7a-2c7ee7d21b3b +2023,Entre Rios,II.1.1,0.30838499999999996,TJ,CH4,0.5,kg/TJ,0.15419249999999998,Naphtha combustion consumption by public passenger transport,AR-E,SESCO,annual,kg,38f5897d-3a1a-365c-be6b-778fcaa517c5 +2023,Entre Rios,II.1.1,0.30838499999999996,TJ,N2O,2.0,kg/TJ,0.6167699999999999,Naphtha combustion consumption by public passenger transport,AR-E,SESCO,annual,kg,ea0e6d72-e90e-3f6d-b12d-860eed03e34a +2023,Buenos Aires,II.1.1,0.034265,TJ,CO2,73300.0,kg/TJ,2511.6245,Naphtha combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,da207a9a-c401-36a1-b813-a75d83aa1e40 +2023,Buenos Aires,II.1.1,0.034265,TJ,CH4,0.5,kg/TJ,0.0171325,Naphtha combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,9ae1d432-8fdc-32b3-b35a-79a503b0ab35 +2023,Buenos Aires,II.1.1,0.034265,TJ,N2O,2.0,kg/TJ,0.06853,Naphtha combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,9fb7bfa1-a6a7-3eed-a7ea-24a783ab1383 +2023,Capital Federal,II.1.1,0.75383,TJ,CO2,73300.0,kg/TJ,55255.739,Naphtha combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,5279b8c9-71ca-3223-bfdf-39cb2e905cd8 +2023,Capital Federal,II.1.1,0.75383,TJ,CH4,0.5,kg/TJ,0.376915,Naphtha combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,0460bc36-03c1-37e5-9ffb-7cc8bd10df44 +2023,Capital Federal,II.1.1,0.75383,TJ,N2O,2.0,kg/TJ,1.50766,Naphtha combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,b34e736b-5c77-3ee3-bb15-cb6db9d1d894 +2023,Entre Rios,II.1.1,0.788095,TJ,CO2,73300.0,kg/TJ,57767.3635,Naphtha combustion consumption by public passenger transport,AR-E,SESCO,annual,kg,947cc808-043d-30ee-b581-459592fbbc4d +2023,Entre Rios,II.1.1,0.788095,TJ,CH4,0.5,kg/TJ,0.3940475,Naphtha combustion consumption by public passenger transport,AR-E,SESCO,annual,kg,e6e5f1e3-4f3b-30f7-b7cb-c291dca81ace +2023,Entre Rios,II.1.1,0.788095,TJ,N2O,2.0,kg/TJ,1.57619,Naphtha combustion consumption by public passenger transport,AR-E,SESCO,annual,kg,77c5f9e9-e067-325e-a550-cc790f219de5 +2023,Capital Federal,II.5.1,60.15939999999999,TJ,CO2,69300.0,kg/TJ,4169046.4199999995,Motor Gasoline combustion consumption by agriculture machines,AR-C,SESCO,annual,kg,f6c5eae5-911f-352d-b04a-c4777d186203 +2023,Capital Federal,II.5.1,60.15939999999999,TJ,CH4,33.0,kg/TJ,1985.2601999999997,Motor Gasoline combustion consumption by agriculture machines,AR-C,SESCO,annual,kg,4bb97601-314b-32d1-9689-5069d8545f04 +2023,Capital Federal,II.5.1,60.15939999999999,TJ,N2O,3.2,kg/TJ,192.51008,Motor Gasoline combustion consumption by agriculture machines,AR-C,SESCO,annual,kg,6a3e936a-1893-32de-9d7b-49bd7b4df9b2 +2023,Buenos Aires,II.5.1,816.63708,TJ,CO2,74100.0,kg/TJ,60512807.628,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,51b7f418-52b3-354f-be0c-24c3ba661532 +2023,Buenos Aires,II.5.1,816.63708,TJ,CH4,3.9,kg/TJ,3184.884612,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,73351c39-f8c3-333e-81f3-2a78852721be +2023,Buenos Aires,II.5.1,816.63708,TJ,N2O,3.9,kg/TJ,3184.884612,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,73351c39-f8c3-333e-81f3-2a78852721be +2023,Chaco,II.5.1,58.22544,TJ,CO2,74100.0,kg/TJ,4314505.104,Gas Oil combustion consumption by agriculture machines,AR-H,SESCO,annual,kg,8a2185cb-901b-3c8a-a651-504980b0a44b +2023,Chaco,II.5.1,58.22544,TJ,CH4,3.9,kg/TJ,227.079216,Gas Oil combustion consumption by agriculture machines,AR-H,SESCO,annual,kg,c769450f-c298-313a-b512-cf303e4d2625 +2023,Chaco,II.5.1,58.22544,TJ,N2O,3.9,kg/TJ,227.079216,Gas Oil combustion consumption by agriculture machines,AR-H,SESCO,annual,kg,c769450f-c298-313a-b512-cf303e4d2625 +2023,Corrientes,II.5.1,48.256319999999995,TJ,CO2,74100.0,kg/TJ,3575793.3119999995,Gas Oil combustion consumption by agriculture machines,AR-W,SESCO,annual,kg,eccb99c5-8da8-35fb-b597-9da1271da4b7 +2023,Corrientes,II.5.1,48.256319999999995,TJ,CH4,3.9,kg/TJ,188.19964799999997,Gas Oil combustion consumption by agriculture machines,AR-W,SESCO,annual,kg,f69baf22-a7de-3a9e-9a07-16eb62cebb18 +2023,Corrientes,II.5.1,48.256319999999995,TJ,N2O,3.9,kg/TJ,188.19964799999997,Gas Oil combustion consumption by agriculture machines,AR-W,SESCO,annual,kg,f69baf22-a7de-3a9e-9a07-16eb62cebb18 +2023,Córdoba,II.5.1,375.28679999999997,TJ,CO2,74100.0,kg/TJ,27808751.88,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,7c18fa6b-84de-36a9-ba5c-4c09ce101361 +2023,Córdoba,II.5.1,375.28679999999997,TJ,CH4,3.9,kg/TJ,1463.6185199999998,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,757f74d3-1324-3483-bb95-6d8153daa34c +2023,Córdoba,II.5.1,375.28679999999997,TJ,N2O,3.9,kg/TJ,1463.6185199999998,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,757f74d3-1324-3483-bb95-6d8153daa34c +2023,Entre Rios,II.5.1,196.63728,TJ,CO2,74100.0,kg/TJ,14570822.448,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,3f42e127-765b-3156-b86f-ac2f08b98fe4 +2023,Entre Rios,II.5.1,196.63728,TJ,CH4,3.9,kg/TJ,766.885392,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,46da741e-6fd9-337f-b688-97bdacbad836 +2023,Entre Rios,II.5.1,196.63728,TJ,N2O,3.9,kg/TJ,766.885392,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,46da741e-6fd9-337f-b688-97bdacbad836 +2023,La Pampa,II.5.1,99.61896,TJ,CO2,74100.0,kg/TJ,7381764.936,Gas Oil combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,944bcdc5-d406-33dd-b955-e7ef7fa7c03e +2023,La Pampa,II.5.1,99.61896,TJ,CH4,3.9,kg/TJ,388.513944,Gas Oil combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,eb6f3bdc-88fb-3f96-937d-e86b58d86536 +2023,La Pampa,II.5.1,99.61896,TJ,N2O,3.9,kg/TJ,388.513944,Gas Oil combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,eb6f3bdc-88fb-3f96-937d-e86b58d86536 +2023,Salta,II.5.1,169.98072,TJ,CO2,74100.0,kg/TJ,12595571.352,Gas Oil combustion consumption by agriculture machines,AR-A,SESCO,annual,kg,db9a9aae-6218-3926-af7e-90078e2af68a +2023,Salta,II.5.1,169.98072,TJ,CH4,3.9,kg/TJ,662.924808,Gas Oil combustion consumption by agriculture machines,AR-A,SESCO,annual,kg,92c0e804-d882-3e23-8bb8-d68be8379246 +2023,Salta,II.5.1,169.98072,TJ,N2O,3.9,kg/TJ,662.924808,Gas Oil combustion consumption by agriculture machines,AR-A,SESCO,annual,kg,92c0e804-d882-3e23-8bb8-d68be8379246 +2023,Santa Fe,II.5.1,922.2880799999999,TJ,CO2,74100.0,kg/TJ,68341546.728,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,01acc37c-7089-3f01-8263-46f4e6276766 +2023,Santa Fe,II.5.1,922.2880799999999,TJ,CH4,3.9,kg/TJ,3596.9235119999994,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,d25e1f32-93e0-3788-a234-a7d8090fdba2 +2023,Santa Fe,II.5.1,922.2880799999999,TJ,N2O,3.9,kg/TJ,3596.9235119999994,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,d25e1f32-93e0-3788-a234-a7d8090fdba2 +2023,Tucuman,II.5.1,226.00284,TJ,CO2,74100.0,kg/TJ,16746810.444,Gas Oil combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,139a8503-924b-379e-a313-1c988306eaaf +2023,Tucuman,II.5.1,226.00284,TJ,CH4,3.9,kg/TJ,881.411076,Gas Oil combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,d227f109-356d-3252-86e6-697a82c28e7a +2023,Tucuman,II.5.1,226.00284,TJ,N2O,3.9,kg/TJ,881.411076,Gas Oil combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,d227f109-356d-3252-86e6-697a82c28e7a +2023,Buenos Aires,II.5.1,70.83131999999999,TJ,CO2,74100.0,kg/TJ,5248600.811999999,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,c7c9df8f-f94e-3362-b01e-7b70e839295d +2023,Buenos Aires,II.5.1,70.83131999999999,TJ,CH4,3.9,kg/TJ,276.242148,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,74dc5c99-dd4e-3b1c-a297-35b5803a5583 +2023,Buenos Aires,II.5.1,70.83131999999999,TJ,N2O,3.9,kg/TJ,276.242148,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,74dc5c99-dd4e-3b1c-a297-35b5803a5583 +2023,Córdoba,II.5.1,25.139519999999997,TJ,CO2,74100.0,kg/TJ,1862838.4319999998,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,2c94d2dd-1478-34ee-853a-622f122f418e +2023,Córdoba,II.5.1,25.139519999999997,TJ,CH4,3.9,kg/TJ,98.04412799999999,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,4d0e9f15-d80b-3699-bbe6-d3ad19b6289a +2023,Córdoba,II.5.1,25.139519999999997,TJ,N2O,3.9,kg/TJ,98.04412799999999,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,4d0e9f15-d80b-3699-bbe6-d3ad19b6289a +2023,Entre Rios,II.5.1,52.33788,TJ,CO2,74100.0,kg/TJ,3878236.908,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,da6e81b0-a1a0-343e-8668-dbba8cd44851 +2023,Entre Rios,II.5.1,52.33788,TJ,CH4,3.9,kg/TJ,204.117732,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,123aee52-243b-3541-9cdd-3252dadeee34 +2023,Entre Rios,II.5.1,52.33788,TJ,N2O,3.9,kg/TJ,204.117732,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,123aee52-243b-3541-9cdd-3252dadeee34 +2023,La Pampa,II.5.1,8.09088,TJ,CO2,74100.0,kg/TJ,599534.208,Gas Oil combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,725f5f64-44ce-3811-bab2-38a76b5ac587 +2023,La Pampa,II.5.1,8.09088,TJ,CH4,3.9,kg/TJ,31.554432000000002,Gas Oil combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,369e9e03-2be1-3015-a67d-a7769e20eb15 +2023,La Pampa,II.5.1,8.09088,TJ,N2O,3.9,kg/TJ,31.554432000000002,Gas Oil combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,369e9e03-2be1-3015-a67d-a7769e20eb15 +2023,Santa Fe,II.5.1,135.30552,TJ,CO2,74100.0,kg/TJ,10026139.032,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,49d03cf2-1a14-3b3b-905c-07957a308ee4 +2023,Santa Fe,II.5.1,135.30552,TJ,CH4,3.9,kg/TJ,527.691528,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,ae511163-2ec1-3d5b-a554-5524d6e00285 +2023,Santa Fe,II.5.1,135.30552,TJ,N2O,3.9,kg/TJ,527.691528,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,ae511163-2ec1-3d5b-a554-5524d6e00285 +2023,Tucuman,II.5.1,4.659479999999999,TJ,CO2,74100.0,kg/TJ,345267.46799999994,Gas Oil combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,152cbf9d-146b-3fc9-a8b5-a19c366f9134 +2023,Tucuman,II.5.1,4.659479999999999,TJ,CH4,3.9,kg/TJ,18.171971999999997,Gas Oil combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,3d6a3835-a557-3bae-a53e-1866d640a271 +2023,Tucuman,II.5.1,4.659479999999999,TJ,N2O,3.9,kg/TJ,18.171971999999997,Gas Oil combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,3d6a3835-a557-3bae-a53e-1866d640a271 +2023,Corrientes,II.5.1,1.2335399999999999,TJ,CO2,73300.0,kg/TJ,90418.48199999999,Naphtha combustion consumption by agriculture machines,AR-W,SESCO,annual,kg,25ae34ed-267b-3e3d-851a-599d3de2372f +2023,Corrientes,II.5.1,1.2335399999999999,TJ,CH4,0.5,kg/TJ,0.6167699999999999,Naphtha combustion consumption by agriculture machines,AR-W,SESCO,annual,kg,9ff35404-da6c-3263-ab8a-8183bc574fc3 +2023,Corrientes,II.5.1,1.2335399999999999,TJ,N2O,2.0,kg/TJ,2.4670799999999997,Naphtha combustion consumption by agriculture machines,AR-W,SESCO,annual,kg,f089606b-25b8-3bb7-b048-a3dd2a7d883f +2023,Córdoba,II.5.1,13.0207,TJ,CO2,73300.0,kg/TJ,954417.3099999999,Naphtha combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,66f064a7-91da-3452-9b76-40404b68d482 +2023,Córdoba,II.5.1,13.0207,TJ,CH4,0.5,kg/TJ,6.51035,Naphtha combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,de2394bb-5e98-3f4a-ae72-19c4c6d6000c +2023,Córdoba,II.5.1,13.0207,TJ,N2O,2.0,kg/TJ,26.0414,Naphtha combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,2cf620f2-ba23-36d7-815b-6b82f612b0a1 +2023,Salta,II.5.1,0.23985499999999998,TJ,CO2,73300.0,kg/TJ,17581.371499999997,Naphtha combustion consumption by agriculture machines,AR-A,SESCO,annual,kg,907eec37-5ecb-3f74-b9d8-490004c7520e +2023,Salta,II.5.1,0.23985499999999998,TJ,CH4,0.5,kg/TJ,0.11992749999999999,Naphtha combustion consumption by agriculture machines,AR-A,SESCO,annual,kg,934f44bb-6bcb-37fa-994c-f6006432b84e +2023,Salta,II.5.1,0.23985499999999998,TJ,N2O,2.0,kg/TJ,0.47970999999999997,Naphtha combustion consumption by agriculture machines,AR-A,SESCO,annual,kg,9deb1794-083e-37e0-a47a-7cec40dce6a9 +2023,Santa Fe,II.5.1,111.29271999999999,TJ,CO2,73300.0,kg/TJ,8157756.375999999,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,18c1e591-63ff-3b9d-b206-934d0e3a3035 +2023,Santa Fe,II.5.1,111.29271999999999,TJ,CH4,0.5,kg/TJ,55.646359999999994,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,8cd5b956-f6c8-358b-b053-1199c49ba28b +2023,Santa Fe,II.5.1,111.29271999999999,TJ,N2O,2.0,kg/TJ,222.58543999999998,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,21109993-1449-3d3e-859a-bdb00dad207c +2023,Córdoba,II.5.1,2.3300199999999998,TJ,CO2,73300.0,kg/TJ,170790.466,Naphtha combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,d20066f9-16d6-3337-a316-5bd738dcfb54 +2023,Córdoba,II.5.1,2.3300199999999998,TJ,CH4,0.5,kg/TJ,1.1650099999999999,Naphtha combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,72ccfb1f-8de7-3683-9e90-fcc77dff605f +2023,Córdoba,II.5.1,2.3300199999999998,TJ,N2O,2.0,kg/TJ,4.6600399999999995,Naphtha combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,4d9e7f3b-4fc1-34fc-8c34-d8ffa26c43b0 +2023,Santa Fe,II.5.1,22.54637,TJ,CO2,73300.0,kg/TJ,1652648.9209999999,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,2bcbb5af-55d1-3705-88c1-1ce716701368 +2023,Santa Fe,II.5.1,22.54637,TJ,CH4,0.5,kg/TJ,11.273185,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,7fedb728-bbff-3951-ac5f-721bab66d305 +2023,Santa Fe,II.5.1,22.54637,TJ,N2O,2.0,kg/TJ,45.09274,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,7ead56d4-64a7-3b97-b6e1-803921eb325c +2023,Tucuman,II.5.1,1.1992749999999999,TJ,CO2,73300.0,kg/TJ,87906.85749999998,Naphtha combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,2d55b4cd-9b6f-3037-aaf3-5b38ec5f8a9d +2023,Tucuman,II.5.1,1.1992749999999999,TJ,CH4,0.5,kg/TJ,0.5996374999999999,Naphtha combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,3f792f81-5d61-3695-9a96-0eea4ecd6f0a +2023,Tucuman,II.5.1,1.1992749999999999,TJ,N2O,2.0,kg/TJ,2.3985499999999997,Naphtha combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,905d627e-3fbf-34bd-ac24-a7b923bea618 +2023,Buenos Aires,II.2.1,140.07335999999998,TJ,CO2,74100.0,kg/TJ,10379435.975999998,Gas Oil combustion consumption by railway transport,AR-B,SESCO,annual,kg,87fe669e-bd22-3e0f-ae9a-ca7740e669e0 +2023,Buenos Aires,II.2.1,140.07335999999998,TJ,CH4,3.9,kg/TJ,546.2861039999999,Gas Oil combustion consumption by railway transport,AR-B,SESCO,annual,kg,ad8993cc-a732-3d1e-b252-c74f4e6b1add +2023,Buenos Aires,II.2.1,140.07335999999998,TJ,N2O,3.9,kg/TJ,546.2861039999999,Gas Oil combustion consumption by railway transport,AR-B,SESCO,annual,kg,ad8993cc-a732-3d1e-b252-c74f4e6b1add +2023,Buenos Aires,II.1.1,1.1961,TJ,CO2,69300.0,kg/TJ,82889.73,Motor Gasoline combustion consumption by freight transport,AR-B,SESCO,annual,kg,62afde42-3063-301e-85f1-4065eb644840 +2023,Buenos Aires,II.1.1,1.1961,TJ,CH4,33.0,kg/TJ,39.4713,Motor Gasoline combustion consumption by freight transport,AR-B,SESCO,annual,kg,786ebfd4-c51f-35df-9c5b-e8a871a86484 +2023,Buenos Aires,II.1.1,1.1961,TJ,N2O,3.2,kg/TJ,3.82752,Motor Gasoline combustion consumption by freight transport,AR-B,SESCO,annual,kg,19a14e4d-1496-3233-be72-a0d23f54fa09 +2023,Buenos Aires,II.1.1,3.90096,TJ,CO2,74100.0,kg/TJ,289061.136,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,64494855-31b7-3c00-b78b-d67576679464 +2023,Buenos Aires,II.1.1,3.90096,TJ,CH4,3.9,kg/TJ,15.213744,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,4af3ae56-b4f5-3760-bf34-c0b7003b66c9 +2023,Buenos Aires,II.1.1,3.90096,TJ,N2O,3.9,kg/TJ,15.213744,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,4af3ae56-b4f5-3760-bf34-c0b7003b66c9 +2023,Entre Rios,II.1.1,15.60384,TJ,CO2,74100.0,kg/TJ,1156244.544,Gas Oil combustion consumption by freight transport,AR-E,SESCO,annual,kg,a50b8522-09af-336b-b040-4564e26b2fbf +2023,Entre Rios,II.1.1,15.60384,TJ,CH4,3.9,kg/TJ,60.854976,Gas Oil combustion consumption by freight transport,AR-E,SESCO,annual,kg,1bc1d193-d309-3290-923a-a7c914c87195 +2023,Entre Rios,II.1.1,15.60384,TJ,N2O,3.9,kg/TJ,60.854976,Gas Oil combustion consumption by freight transport,AR-E,SESCO,annual,kg,1bc1d193-d309-3290-923a-a7c914c87195 +2023,Buenos Aires,II.1.1,2.78124,TJ,CO2,74100.0,kg/TJ,206089.884,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,e1663f3a-07e0-38aa-a8ee-461d90389c2a +2023,Buenos Aires,II.1.1,2.78124,TJ,CH4,3.9,kg/TJ,10.846836,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,7313a014-e16d-333a-96ff-a7e82c55af01 +2023,Buenos Aires,II.1.1,2.78124,TJ,N2O,3.9,kg/TJ,10.846836,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,7313a014-e16d-333a-96ff-a7e82c55af01 +2023,Buenos Aires,II.1.1,2707.84416,TJ,CO2,74100.0,kg/TJ,200651252.256,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,3d8ff9ac-50e3-3a4b-aa5b-1fad36431691 +2023,Buenos Aires,II.1.1,2707.84416,TJ,CH4,3.9,kg/TJ,10560.592224,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,5a3f3d52-f8d7-351f-a3d1-bd9df6d6a56d +2023,Buenos Aires,II.1.1,2707.84416,TJ,N2O,3.9,kg/TJ,10560.592224,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,5a3f3d52-f8d7-351f-a3d1-bd9df6d6a56d +2023,Capital Federal,II.1.1,141.37368,TJ,CO2,74100.0,kg/TJ,10475789.688000001,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,3a48334f-faaa-3c1f-944b-1a77bc321c42 +2023,Capital Federal,II.1.1,141.37368,TJ,CH4,3.9,kg/TJ,551.357352,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,9b9a49b1-d029-3601-af2f-1a62ab4ea9d5 +2023,Capital Federal,II.1.1,141.37368,TJ,N2O,3.9,kg/TJ,551.357352,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,9b9a49b1-d029-3601-af2f-1a62ab4ea9d5 +2023,Corrientes,II.1.1,0.57792,TJ,CO2,74100.0,kg/TJ,42823.871999999996,Gas Oil combustion consumption by public passenger transport,AR-W,SESCO,annual,kg,9ab138d4-546f-33bc-8972-d411d127d675 +2023,Corrientes,II.1.1,0.57792,TJ,CH4,3.9,kg/TJ,2.253888,Gas Oil combustion consumption by public passenger transport,AR-W,SESCO,annual,kg,4617c8f5-b0e3-39b3-b5f2-4b8d79287972 +2023,Corrientes,II.1.1,0.57792,TJ,N2O,3.9,kg/TJ,2.253888,Gas Oil combustion consumption by public passenger transport,AR-W,SESCO,annual,kg,4617c8f5-b0e3-39b3-b5f2-4b8d79287972 +2023,Buenos Aires,II.1.1,2397.06768,TJ,CO2,74100.0,kg/TJ,177622715.088,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,1a8ecf0c-9d12-39b1-b506-a8425decb608 +2023,Buenos Aires,II.1.1,2397.06768,TJ,CH4,3.9,kg/TJ,9348.563952,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,4c3666a1-51df-31bb-8e5a-42eb2d6f1a42 +2023,Buenos Aires,II.1.1,2397.06768,TJ,N2O,3.9,kg/TJ,9348.563952,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,4c3666a1-51df-31bb-8e5a-42eb2d6f1a42 +2023,Capital Federal,II.1.1,36.228359999999995,TJ,CO2,74100.0,kg/TJ,2684521.476,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,c1c81b94-3de8-3f31-a3f3-d92db71a31e2 +2023,Capital Federal,II.1.1,36.228359999999995,TJ,CH4,3.9,kg/TJ,141.29060399999997,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,bf34f3de-b036-3328-ba93-ec069ee14a9c +2023,Capital Federal,II.1.1,36.228359999999995,TJ,N2O,3.9,kg/TJ,141.29060399999997,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,bf34f3de-b036-3328-ba93-ec069ee14a9c +2023,Corrientes,II.1.1,43.45236,TJ,CO2,74100.0,kg/TJ,3219819.8759999997,Gas Oil combustion consumption by public passenger transport,AR-W,SESCO,annual,kg,6cf948d0-7bdc-325d-8efc-d45d1325ce93 +2023,Corrientes,II.1.1,43.45236,TJ,CH4,3.9,kg/TJ,169.464204,Gas Oil combustion consumption by public passenger transport,AR-W,SESCO,annual,kg,1e305462-7568-3265-86f1-ac8e74228731 +2023,Corrientes,II.1.1,43.45236,TJ,N2O,3.9,kg/TJ,169.464204,Gas Oil combustion consumption by public passenger transport,AR-W,SESCO,annual,kg,1e305462-7568-3265-86f1-ac8e74228731 +2023,Buenos Aires,II.5.1,2761.7173567199998,TJ,CO2,74100.0,kg/TJ,204643256.13295197,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,8063c84b-3419-3665-a9c6-07e4589f717a +2023,Buenos Aires,II.5.1,2761.7173567199998,TJ,CH4,3.9,kg/TJ,10770.697691207999,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,ec3860e2-e26f-323c-bb4e-eecef314b8fa +2023,Buenos Aires,II.5.1,2761.7173567199998,TJ,N2O,3.9,kg/TJ,10770.697691207999,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,ec3860e2-e26f-323c-bb4e-eecef314b8fa +2023,Capital Federal,II.5.1,207.4935072,TJ,CO2,74100.0,kg/TJ,15375268.883520002,Gas Oil combustion consumption by agriculture machines,AR-C,SESCO,annual,kg,d20a25fa-13ca-3995-b5a5-0d90130d7cee +2023,Capital Federal,II.5.1,207.4935072,TJ,CH4,3.9,kg/TJ,809.22467808,Gas Oil combustion consumption by agriculture machines,AR-C,SESCO,annual,kg,c3858901-00e6-38ff-a638-01ebd35edbe5 +2023,Capital Federal,II.5.1,207.4935072,TJ,N2O,3.9,kg/TJ,809.22467808,Gas Oil combustion consumption by agriculture machines,AR-C,SESCO,annual,kg,c3858901-00e6-38ff-a638-01ebd35edbe5 +2023,Córdoba,II.5.1,1519.1913072,TJ,CO2,74100.0,kg/TJ,112572075.86352,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,2754051c-023f-3051-94b9-f2aad0cb36ed +2023,Córdoba,II.5.1,1519.1913072,TJ,CH4,3.9,kg/TJ,5924.84609808,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,4096e805-5f7d-3dbb-8bcf-e46ca8ec79f6 +2023,Córdoba,II.5.1,1519.1913072,TJ,N2O,3.9,kg/TJ,5924.84609808,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,4096e805-5f7d-3dbb-8bcf-e46ca8ec79f6 +2023,Entre Rios,II.5.1,415.32390564,TJ,CO2,74100.0,kg/TJ,30775501.407924,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,b5127e93-fe55-3bd4-a767-b29b4e3e45ed +2023,Entre Rios,II.5.1,415.32390564,TJ,CH4,3.9,kg/TJ,1619.763231996,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,e3cf4510-b439-34b4-8e0e-4dfb7f0532a5 +2023,Entre Rios,II.5.1,415.32390564,TJ,N2O,3.9,kg/TJ,1619.763231996,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,e3cf4510-b439-34b4-8e0e-4dfb7f0532a5 +2023,Jujuy,II.5.1,5.06236248,TJ,CO2,74100.0,kg/TJ,375121.059768,Gas Oil combustion consumption by agriculture machines,AR-Y,SESCO,annual,kg,884f2c09-38f2-3a44-9c02-395a897f865d +2023,Jujuy,II.5.1,5.06236248,TJ,CH4,3.9,kg/TJ,19.743213672,Gas Oil combustion consumption by agriculture machines,AR-Y,SESCO,annual,kg,a1c3bbdc-bfe6-33a4-af76-71e9ab5a1ca3 +2023,Jujuy,II.5.1,5.06236248,TJ,N2O,3.9,kg/TJ,19.743213672,Gas Oil combustion consumption by agriculture machines,AR-Y,SESCO,annual,kg,a1c3bbdc-bfe6-33a4-af76-71e9ab5a1ca3 +2023,La Pampa,II.5.1,229.78323143999998,TJ,CO2,74100.0,kg/TJ,17026937.449704,Gas Oil combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,1ad2cda7-1f0c-3a86-84fb-31949b145039 +2023,La Pampa,II.5.1,229.78323143999998,TJ,CH4,3.9,kg/TJ,896.1546026159999,Gas Oil combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,84be14ab-0c8f-331d-9c38-6b44c8f1455b +2023,La Pampa,II.5.1,229.78323143999998,TJ,N2O,3.9,kg/TJ,896.1546026159999,Gas Oil combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,84be14ab-0c8f-331d-9c38-6b44c8f1455b +2023,Rio Negro,II.5.1,156.66193956,TJ,CO2,74100.0,kg/TJ,11608649.721396001,Gas Oil combustion consumption by agriculture machines,AR-R,SESCO,annual,kg,9ca78019-9bfb-399a-963f-1a4bba1c03ec +2023,Rio Negro,II.5.1,156.66193956,TJ,CH4,3.9,kg/TJ,610.981564284,Gas Oil combustion consumption by agriculture machines,AR-R,SESCO,annual,kg,b1343d37-53a1-38a6-a1ab-bd778d041313 +2023,Rio Negro,II.5.1,156.66193956,TJ,N2O,3.9,kg/TJ,610.981564284,Gas Oil combustion consumption by agriculture machines,AR-R,SESCO,annual,kg,b1343d37-53a1-38a6-a1ab-bd778d041313 +2023,San Luis,II.5.1,16.8618996,TJ,CO2,74100.0,kg/TJ,1249466.7603600002,Gas Oil combustion consumption by agriculture machines,AR-D,SESCO,annual,kg,448129ac-8704-30ce-8e4f-e46ec19ad129 +2023,San Luis,II.5.1,16.8618996,TJ,CH4,3.9,kg/TJ,65.76140844,Gas Oil combustion consumption by agriculture machines,AR-D,SESCO,annual,kg,57a38a0d-c910-3e88-926c-3233c73d3821 +2023,San Luis,II.5.1,16.8618996,TJ,N2O,3.9,kg/TJ,65.76140844,Gas Oil combustion consumption by agriculture machines,AR-D,SESCO,annual,kg,57a38a0d-c910-3e88-926c-3233c73d3821 +2023,Santa Fe,II.5.1,3773.3627408399993,TJ,CO2,74100.0,kg/TJ,279606179.096244,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,66871ea4-e9a8-3ffb-934a-c756e4f35dfd +2023,Santa Fe,II.5.1,3773.3627408399993,TJ,CH4,3.9,kg/TJ,14716.114689275997,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,2928fb60-62dd-3691-ac24-ba4898d3c957 +2023,Santa Fe,II.5.1,3773.3627408399993,TJ,N2O,3.9,kg/TJ,14716.114689275997,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,2928fb60-62dd-3691-ac24-ba4898d3c957 +2023,Santiago del Estero,II.5.1,108.144183,TJ,CO2,74100.0,kg/TJ,8013483.960299999,Gas Oil combustion consumption by agriculture machines,AR-G,SESCO,annual,kg,110523e4-6b1d-30c0-a77f-ba5f830fa79e +2023,Santiago del Estero,II.5.1,108.144183,TJ,CH4,3.9,kg/TJ,421.7623137,Gas Oil combustion consumption by agriculture machines,AR-G,SESCO,annual,kg,b63db65e-5db5-3920-b78f-2199bb53c9bc +2023,Santiago del Estero,II.5.1,108.144183,TJ,N2O,3.9,kg/TJ,421.7623137,Gas Oil combustion consumption by agriculture machines,AR-G,SESCO,annual,kg,b63db65e-5db5-3920-b78f-2199bb53c9bc +2023,Tucuman,II.5.1,56.525849519999994,TJ,CO2,74100.0,kg/TJ,4188565.4494319996,Gas Oil combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,1bc9f96c-afb4-3a69-80f2-217f57121efc +2023,Tucuman,II.5.1,56.525849519999994,TJ,CH4,3.9,kg/TJ,220.45081312799996,Gas Oil combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,6e250afe-6dc8-34cd-a4f0-76e3ca137aa5 +2023,Tucuman,II.5.1,56.525849519999994,TJ,N2O,3.9,kg/TJ,220.45081312799996,Gas Oil combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,6e250afe-6dc8-34cd-a4f0-76e3ca137aa5 +2023,Buenos Aires,II.5.1,151.70728692,TJ,CO2,74100.0,kg/TJ,11241509.960772,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,6023ec96-21f8-3ada-be77-ffb4667e6f9b +2023,Buenos Aires,II.5.1,151.70728692,TJ,CH4,3.9,kg/TJ,591.658418988,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,7fadf842-9b45-30c6-a81a-169f2b6e7539 +2023,Buenos Aires,II.5.1,151.70728692,TJ,N2O,3.9,kg/TJ,591.658418988,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,7fadf842-9b45-30c6-a81a-169f2b6e7539 +2023,Capital Federal,II.5.1,21.19308492,TJ,CO2,74100.0,kg/TJ,1570407.592572,Gas Oil combustion consumption by agriculture machines,AR-C,SESCO,annual,kg,74467e28-9747-35ef-93e3-e88462300c3a +2023,Capital Federal,II.5.1,21.19308492,TJ,CH4,3.9,kg/TJ,82.653031188,Gas Oil combustion consumption by agriculture machines,AR-C,SESCO,annual,kg,ffa5b623-2ed3-33db-879d-e263bbb5997f +2023,Capital Federal,II.5.1,21.19308492,TJ,N2O,3.9,kg/TJ,82.653031188,Gas Oil combustion consumption by agriculture machines,AR-C,SESCO,annual,kg,ffa5b623-2ed3-33db-879d-e263bbb5997f +2023,Córdoba,II.5.1,54.02266128,TJ,CO2,74100.0,kg/TJ,4003079.200848,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,71b0aeb4-0950-3d8f-a031-03e8486548db +2023,Córdoba,II.5.1,54.02266128,TJ,CH4,3.9,kg/TJ,210.688378992,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,46b49caa-5849-36d0-bf7e-a3eda693418a +2023,Córdoba,II.5.1,54.02266128,TJ,N2O,3.9,kg/TJ,210.688378992,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,46b49caa-5849-36d0-bf7e-a3eda693418a +2023,Entre Rios,II.5.1,34.52858892,TJ,CO2,74100.0,kg/TJ,2558568.4389719996,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,8b5d2fcf-329f-3518-881d-55df6145d7a7 +2023,Entre Rios,II.5.1,34.52858892,TJ,CH4,3.9,kg/TJ,134.661496788,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,924d6385-5f3c-399e-85ad-de697e7b5001 +2023,Entre Rios,II.5.1,34.52858892,TJ,N2O,3.9,kg/TJ,134.661496788,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,924d6385-5f3c-399e-85ad-de697e7b5001 +2023,Jujuy,II.5.1,33.1316118,TJ,CO2,74100.0,kg/TJ,2455052.43438,Gas Oil combustion consumption by agriculture machines,AR-Y,SESCO,annual,kg,16c6b80d-38c6-37dd-85b3-e683c9be49bb +2023,Jujuy,II.5.1,33.1316118,TJ,CH4,3.9,kg/TJ,129.21328602,Gas Oil combustion consumption by agriculture machines,AR-Y,SESCO,annual,kg,46d6a79f-e40f-32bb-be91-7f038c0c3f3e +2023,Jujuy,II.5.1,33.1316118,TJ,N2O,3.9,kg/TJ,129.21328602,Gas Oil combustion consumption by agriculture machines,AR-Y,SESCO,annual,kg,46d6a79f-e40f-32bb-be91-7f038c0c3f3e +2023,La Pampa,II.5.1,10.032691199999999,TJ,CO2,74100.0,kg/TJ,743422.4179199999,Gas Oil combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,80859af7-7fed-3a12-ac40-ec3bbe5f0936 +2023,La Pampa,II.5.1,10.032691199999999,TJ,CH4,3.9,kg/TJ,39.127495679999996,Gas Oil combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,4b010210-ec21-3430-a296-adf4467e67f2 +2023,La Pampa,II.5.1,10.032691199999999,TJ,N2O,3.9,kg/TJ,39.127495679999996,Gas Oil combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,4b010210-ec21-3430-a296-adf4467e67f2 +2023,Rio Negro,II.5.1,237.68408412,TJ,CO2,74100.0,kg/TJ,17612390.633292,Gas Oil combustion consumption by agriculture machines,AR-R,SESCO,annual,kg,2e0eb131-972d-30ec-aafd-63ae85839dad +2023,Rio Negro,II.5.1,237.68408412,TJ,CH4,3.9,kg/TJ,926.967928068,Gas Oil combustion consumption by agriculture machines,AR-R,SESCO,annual,kg,b71aa281-1ce4-39aa-a70d-fdf87fc65dcc +2023,Rio Negro,II.5.1,237.68408412,TJ,N2O,3.9,kg/TJ,926.967928068,Gas Oil combustion consumption by agriculture machines,AR-R,SESCO,annual,kg,b71aa281-1ce4-39aa-a70d-fdf87fc65dcc +2023,San Luis,II.5.1,3.7010358,TJ,CO2,74100.0,kg/TJ,274246.75278,Gas Oil combustion consumption by agriculture machines,AR-D,SESCO,annual,kg,8765ebd3-b6e6-36df-8bd0-2327d8c46efc +2023,San Luis,II.5.1,3.7010358,TJ,CH4,3.9,kg/TJ,14.43403962,Gas Oil combustion consumption by agriculture machines,AR-D,SESCO,annual,kg,f8ec632e-fab5-3758-9add-365cfb40a220 +2023,San Luis,II.5.1,3.7010358,TJ,N2O,3.9,kg/TJ,14.43403962,Gas Oil combustion consumption by agriculture machines,AR-D,SESCO,annual,kg,f8ec632e-fab5-3758-9add-365cfb40a220 +2023,Santa Fe,II.5.1,174.20462891999998,TJ,CO2,74100.0,kg/TJ,12908563.002971997,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,1e64b400-61d6-388a-9b63-bbe00aa069e0 +2023,Santa Fe,II.5.1,174.20462891999998,TJ,CH4,3.9,kg/TJ,679.3980527879999,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,2dd35e43-5f37-3c0b-bdc7-25589d6317d2 +2023,Santa Fe,II.5.1,174.20462891999998,TJ,N2O,3.9,kg/TJ,679.3980527879999,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,2dd35e43-5f37-3c0b-bdc7-25589d6317d2 +2023,Santiago del Estero,II.5.1,2.61465456,TJ,CO2,74100.0,kg/TJ,193745.90289599999,Gas Oil combustion consumption by agriculture machines,AR-G,SESCO,annual,kg,e655b8a0-5976-307c-890a-d4c7f460ac9c +2023,Santiago del Estero,II.5.1,2.61465456,TJ,CH4,3.9,kg/TJ,10.197152784,Gas Oil combustion consumption by agriculture machines,AR-G,SESCO,annual,kg,b5a2c5e6-c604-3cbf-b3da-c92886204c85 +2023,Santiago del Estero,II.5.1,2.61465456,TJ,N2O,3.9,kg/TJ,10.197152784,Gas Oil combustion consumption by agriculture machines,AR-G,SESCO,annual,kg,b5a2c5e6-c604-3cbf-b3da-c92886204c85 +2023,Tucuman,II.5.1,0.6075384,TJ,CO2,74100.0,kg/TJ,45018.595440000005,Gas Oil combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,cc5d8f9f-f2b2-3e9c-b125-797bc02f8df6 +2023,Tucuman,II.5.1,0.6075384,TJ,CH4,3.9,kg/TJ,2.3693997600000003,Gas Oil combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,8c0d57dc-c91a-3cb9-a7f7-cd3d8d135a23 +2023,Tucuman,II.5.1,0.6075384,TJ,N2O,3.9,kg/TJ,2.3693997600000003,Gas Oil combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,8c0d57dc-c91a-3cb9-a7f7-cd3d8d135a23 +2023,Buenos Aires,II.5.1,7.001504509999999,TJ,CO2,73300.0,kg/TJ,513210.2805829999,Naphtha combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,105d42cb-c43b-38d6-8450-b282d4ea35a0 +2023,Buenos Aires,II.5.1,7.001504509999999,TJ,CH4,0.5,kg/TJ,3.5007522549999996,Naphtha combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,7fd2e6fd-d8e2-3718-91aa-dfa6748cd279 +2023,Buenos Aires,II.5.1,7.001504509999999,TJ,N2O,2.0,kg/TJ,14.003009019999999,Naphtha combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,8156764a-4a99-3e75-aaa1-fa057fc27776 +2023,Capital Federal,II.5.1,6.023067435,TJ,CO2,73300.0,kg/TJ,441490.8429855,Naphtha combustion consumption by agriculture machines,AR-C,SESCO,annual,kg,5842603b-1708-3e04-accf-cd92e481ff42 +2023,Capital Federal,II.5.1,6.023067435,TJ,CH4,0.5,kg/TJ,3.0115337175,Naphtha combustion consumption by agriculture machines,AR-C,SESCO,annual,kg,7d1aec64-cc3b-3c7e-892b-d44bf8eeca64 +2023,Capital Federal,II.5.1,6.023067435,TJ,N2O,2.0,kg/TJ,12.04613487,Naphtha combustion consumption by agriculture machines,AR-C,SESCO,annual,kg,4d810809-17da-34e2-a22d-9ccc40413761 +2023,Córdoba,II.5.1,8.137766175,TJ,CO2,73300.0,kg/TJ,596498.2606275,Naphtha combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,207d7591-b9ad-349b-914b-612dc4a8c353 +2023,Córdoba,II.5.1,8.137766175,TJ,CH4,0.5,kg/TJ,4.0688830875,Naphtha combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,39e2efc4-1615-38b4-9293-58acb4b88be9 +2023,Córdoba,II.5.1,8.137766175,TJ,N2O,2.0,kg/TJ,16.27553235,Naphtha combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,fd88d51e-f178-394c-abf5-c326deb73348 +2023,Santa Fe,II.5.1,16.182297285,TJ,CO2,73300.0,kg/TJ,1186162.3909905,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,f1b89796-62e0-3ed4-89f0-11a671608599 +2023,Santa Fe,II.5.1,16.182297285,TJ,CH4,0.5,kg/TJ,8.0911486425,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,d730a91d-c525-37d8-b631-1cee3abdd418 +2023,Santa Fe,II.5.1,16.182297285,TJ,N2O,2.0,kg/TJ,32.36459457,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,3bd0ab2b-b0a0-3648-969a-4942a03c556a +2023,Buenos Aires,II.5.1,4.739294944999999,TJ,CO2,73300.0,kg/TJ,347390.3194684999,Naphtha combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,ce0be3f2-9994-336b-b245-fb7930ecc303 +2023,Buenos Aires,II.5.1,4.739294944999999,TJ,CH4,0.5,kg/TJ,2.3696474724999996,Naphtha combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,518d0b0c-9960-31a3-ab4f-9502c335478e +2023,Buenos Aires,II.5.1,4.739294944999999,TJ,N2O,2.0,kg/TJ,9.478589889999999,Naphtha combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,52c43aee-1c47-3e02-b3b4-152a4756957f +2023,Capital Federal,II.5.1,1.42939874,TJ,CO2,73300.0,kg/TJ,104774.927642,Naphtha combustion consumption by agriculture machines,AR-C,SESCO,annual,kg,732315d7-19ae-3208-920b-03b3c91a6c78 +2023,Capital Federal,II.5.1,1.42939874,TJ,CH4,0.5,kg/TJ,0.71469937,Naphtha combustion consumption by agriculture machines,AR-C,SESCO,annual,kg,2614e342-6c2f-3c74-af8b-168566faf1ef +2023,Capital Federal,II.5.1,1.42939874,TJ,N2O,2.0,kg/TJ,2.85879748,Naphtha combustion consumption by agriculture machines,AR-C,SESCO,annual,kg,6b076860-cd7c-3f6b-8540-68fdc0a06dda +2023,Córdoba,II.5.1,3.06884193,TJ,CO2,73300.0,kg/TJ,224946.113469,Naphtha combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,66e81ca3-f472-3139-95c8-af07ffb35cb5 +2023,Córdoba,II.5.1,3.06884193,TJ,CH4,0.5,kg/TJ,1.534420965,Naphtha combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,ddeab449-570a-314c-b74c-3ec6451bd1c3 +2023,Córdoba,II.5.1,3.06884193,TJ,N2O,2.0,kg/TJ,6.13768386,Naphtha combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,f509e526-134a-37b6-8a1d-3f38b6704412 +2023,Santa Fe,II.5.1,4.19766809,TJ,CO2,73300.0,kg/TJ,307689.070997,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,d765c4ba-db00-31b2-a792-6dfb475aa55c +2023,Santa Fe,II.5.1,4.19766809,TJ,CH4,0.5,kg/TJ,2.098834045,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,01b5bae2-e66e-3362-9150-0d8548e062e0 +2023,Santa Fe,II.5.1,4.19766809,TJ,N2O,2.0,kg/TJ,8.39533618,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,caa67c95-dbcc-3076-99d2-1c1508c2fd52 +2023,Buenos Aires,II.5.1,8991.56832,TJ,CO2,74100.0,kg/TJ,666275212.512,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,2f922cef-5acc-3276-8a2d-256f97b35186 +2023,Buenos Aires,II.5.1,8991.56832,TJ,CH4,3.9,kg/TJ,35067.116448,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,8b1270b7-cd17-3c0f-aa17-ce0a4f790a53 +2023,Buenos Aires,II.5.1,8991.56832,TJ,N2O,3.9,kg/TJ,35067.116448,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,8b1270b7-cd17-3c0f-aa17-ce0a4f790a53 +2023,Capital Federal,II.5.1,89.18028,TJ,CO2,74100.0,kg/TJ,6608258.748,Gas Oil combustion consumption by agriculture machines,AR-C,SESCO,annual,kg,e000c3c6-3297-3238-998d-2c82133f39a0 +2023,Capital Federal,II.5.1,89.18028,TJ,CH4,3.9,kg/TJ,347.803092,Gas Oil combustion consumption by agriculture machines,AR-C,SESCO,annual,kg,0ab6a520-bdf0-31b3-b0c6-359fee1136fd +2023,Capital Federal,II.5.1,89.18028,TJ,N2O,3.9,kg/TJ,347.803092,Gas Oil combustion consumption by agriculture machines,AR-C,SESCO,annual,kg,0ab6a520-bdf0-31b3-b0c6-359fee1136fd +2023,Catamarca,II.5.1,250.81727999999998,TJ,CO2,74100.0,kg/TJ,18585560.448,Gas Oil combustion consumption by agriculture machines,AR-K,SESCO,annual,kg,15d59397-cd33-38a6-a672-896a31a30d7e +2023,Catamarca,II.5.1,250.81727999999998,TJ,CH4,3.9,kg/TJ,978.1873919999999,Gas Oil combustion consumption by agriculture machines,AR-K,SESCO,annual,kg,8decbaa5-a05f-3591-8f9a-c64e7ee1ee95 +2023,Catamarca,II.5.1,250.81727999999998,TJ,N2O,3.9,kg/TJ,978.1873919999999,Gas Oil combustion consumption by agriculture machines,AR-K,SESCO,annual,kg,8decbaa5-a05f-3591-8f9a-c64e7ee1ee95 +2023,Chaco,II.5.1,1158.87408,TJ,CO2,74100.0,kg/TJ,85872569.32800001,Gas Oil combustion consumption by agriculture machines,AR-H,SESCO,annual,kg,bf095aa4-69c8-31b5-8aa9-95144f58bde5 +2023,Chaco,II.5.1,1158.87408,TJ,CH4,3.9,kg/TJ,4519.608912,Gas Oil combustion consumption by agriculture machines,AR-H,SESCO,annual,kg,7c27a69e-d4c9-3579-ac87-ba98e2654555 +2023,Chaco,II.5.1,1158.87408,TJ,N2O,3.9,kg/TJ,4519.608912,Gas Oil combustion consumption by agriculture machines,AR-H,SESCO,annual,kg,7c27a69e-d4c9-3579-ac87-ba98e2654555 +2023,Corrientes,II.5.1,726.012,TJ,CO2,74100.0,kg/TJ,53797489.199999996,Gas Oil combustion consumption by agriculture machines,AR-W,SESCO,annual,kg,3f641dcd-7828-3889-99dd-a8dd4dd94e23 +2023,Corrientes,II.5.1,726.012,TJ,CH4,3.9,kg/TJ,2831.4467999999997,Gas Oil combustion consumption by agriculture machines,AR-W,SESCO,annual,kg,70e59184-1311-32d8-8815-9ecf4477ff9b +2023,Corrientes,II.5.1,726.012,TJ,N2O,3.9,kg/TJ,2831.4467999999997,Gas Oil combustion consumption by agriculture machines,AR-W,SESCO,annual,kg,70e59184-1311-32d8-8815-9ecf4477ff9b +2023,Córdoba,II.5.1,7244.98572,TJ,CO2,74100.0,kg/TJ,536853441.852,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,49accdcb-580d-3834-8f46-d5c90605d770 +2023,Córdoba,II.5.1,7244.98572,TJ,CH4,3.9,kg/TJ,28255.444308,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,51fe9a11-390c-3436-bb1b-2b24edea32ca +2023,Córdoba,II.5.1,7244.98572,TJ,N2O,3.9,kg/TJ,28255.444308,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,51fe9a11-390c-3436-bb1b-2b24edea32ca +2023,Entre Rios,II.5.1,2012.1729599999999,TJ,CO2,74100.0,kg/TJ,149102016.336,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,10eaec50-fdf7-3d73-b25f-552da802f6c0 +2023,Entre Rios,II.5.1,2012.1729599999999,TJ,CH4,3.9,kg/TJ,7847.474544,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,7dcdb88b-4dc8-34d2-b436-f1869b6f8530 +2023,Entre Rios,II.5.1,2012.1729599999999,TJ,N2O,3.9,kg/TJ,7847.474544,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,7dcdb88b-4dc8-34d2-b436-f1869b6f8530 +2023,Formosa,II.5.1,322.44324,TJ,CO2,74100.0,kg/TJ,23893044.084,Gas Oil combustion consumption by agriculture machines,AR-P,SESCO,annual,kg,835f8a9a-a71a-3162-948b-6268ed27f2df +2023,Formosa,II.5.1,322.44324,TJ,CH4,3.9,kg/TJ,1257.528636,Gas Oil combustion consumption by agriculture machines,AR-P,SESCO,annual,kg,0cb529c1-b0d3-3d55-a5e4-1d05e754dcd6 +2023,Formosa,II.5.1,322.44324,TJ,N2O,3.9,kg/TJ,1257.528636,Gas Oil combustion consumption by agriculture machines,AR-P,SESCO,annual,kg,0cb529c1-b0d3-3d55-a5e4-1d05e754dcd6 +2023,Jujuy,II.5.1,932.6906399999999,TJ,CO2,74100.0,kg/TJ,69112376.424,Gas Oil combustion consumption by agriculture machines,AR-Y,SESCO,annual,kg,c95aeed9-abf2-3dcf-82a2-67273184b2ff +2023,Jujuy,II.5.1,932.6906399999999,TJ,CH4,3.9,kg/TJ,3637.4934959999996,Gas Oil combustion consumption by agriculture machines,AR-Y,SESCO,annual,kg,09cbc3af-34bb-3156-8084-f777f4c52d7d +2023,Jujuy,II.5.1,932.6906399999999,TJ,N2O,3.9,kg/TJ,3637.4934959999996,Gas Oil combustion consumption by agriculture machines,AR-Y,SESCO,annual,kg,09cbc3af-34bb-3156-8084-f777f4c52d7d +2023,La Pampa,II.5.1,1452.78252,TJ,CO2,74100.0,kg/TJ,107651184.732,Gas Oil combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,76aae08a-7012-3c57-83a4-ba4e268cf3cf +2023,La Pampa,II.5.1,1452.78252,TJ,CH4,3.9,kg/TJ,5665.851828,Gas Oil combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,8cec8e68-08c2-34e0-8a84-6c9637eb2517 +2023,La Pampa,II.5.1,1452.78252,TJ,N2O,3.9,kg/TJ,5665.851828,Gas Oil combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,8cec8e68-08c2-34e0-8a84-6c9637eb2517 +2023,La Rioja,II.5.1,84.55691999999999,TJ,CO2,74100.0,kg/TJ,6265667.771999999,Gas Oil combustion consumption by agriculture machines,AR-F,SESCO,annual,kg,bc6556e1-7a7a-3f79-a84e-5a342c5e275b +2023,La Rioja,II.5.1,84.55691999999999,TJ,CH4,3.9,kg/TJ,329.77198799999996,Gas Oil combustion consumption by agriculture machines,AR-F,SESCO,annual,kg,7f23f65f-ef6c-30ae-ae96-518474af5966 +2023,La Rioja,II.5.1,84.55691999999999,TJ,N2O,3.9,kg/TJ,329.77198799999996,Gas Oil combustion consumption by agriculture machines,AR-F,SESCO,annual,kg,7f23f65f-ef6c-30ae-ae96-518474af5966 +2023,Mendoza,II.5.1,2486.3202,TJ,CO2,74100.0,kg/TJ,184236326.82000002,Gas Oil combustion consumption by agriculture machines,AR-M,SESCO,annual,kg,f9199add-e498-3845-a04e-be3cf48a7d9d +2023,Mendoza,II.5.1,2486.3202,TJ,CH4,3.9,kg/TJ,9696.64878,Gas Oil combustion consumption by agriculture machines,AR-M,SESCO,annual,kg,08c04a98-5050-3acb-9083-c4815d56c5f0 +2023,Mendoza,II.5.1,2486.3202,TJ,N2O,3.9,kg/TJ,9696.64878,Gas Oil combustion consumption by agriculture machines,AR-M,SESCO,annual,kg,08c04a98-5050-3acb-9083-c4815d56c5f0 +2023,Misiones,II.5.1,1237.8324,TJ,CO2,74100.0,kg/TJ,91723380.84,Gas Oil combustion consumption by agriculture machines,AR-N,SESCO,annual,kg,789efae0-2a63-34cd-a6a4-b67ddbbd814c +2023,Misiones,II.5.1,1237.8324,TJ,CH4,3.9,kg/TJ,4827.54636,Gas Oil combustion consumption by agriculture machines,AR-N,SESCO,annual,kg,44d4e11a-51df-3461-8343-ff5054b7afa5 +2023,Misiones,II.5.1,1237.8324,TJ,N2O,3.9,kg/TJ,4827.54636,Gas Oil combustion consumption by agriculture machines,AR-N,SESCO,annual,kg,44d4e11a-51df-3461-8343-ff5054b7afa5 +2023,Neuquén,II.5.1,0.10836,TJ,CO2,74100.0,kg/TJ,8029.476,Gas Oil combustion consumption by agriculture machines,AR-Q,SESCO,annual,kg,0795293b-ff9e-3e0f-95ba-2c869f527796 +2023,Neuquén,II.5.1,0.10836,TJ,CH4,3.9,kg/TJ,0.422604,Gas Oil combustion consumption by agriculture machines,AR-Q,SESCO,annual,kg,95119bda-fa96-3950-817a-b1b57e2ef13e +2023,Neuquén,II.5.1,0.10836,TJ,N2O,3.9,kg/TJ,0.422604,Gas Oil combustion consumption by agriculture machines,AR-Q,SESCO,annual,kg,95119bda-fa96-3950-817a-b1b57e2ef13e +2023,Rio Negro,II.5.1,158.2056,TJ,CO2,74100.0,kg/TJ,11723034.96,Gas Oil combustion consumption by agriculture machines,AR-R,SESCO,annual,kg,0bc358f8-45fb-3520-a543-72ce8064040b +2023,Rio Negro,II.5.1,158.2056,TJ,CH4,3.9,kg/TJ,617.00184,Gas Oil combustion consumption by agriculture machines,AR-R,SESCO,annual,kg,20e9d325-7b09-35a4-9b25-bc92db859c34 +2023,Rio Negro,II.5.1,158.2056,TJ,N2O,3.9,kg/TJ,617.00184,Gas Oil combustion consumption by agriculture machines,AR-R,SESCO,annual,kg,20e9d325-7b09-35a4-9b25-bc92db859c34 +2023,Salta,II.5.1,1736.8301999999999,TJ,CO2,74100.0,kg/TJ,128699117.82,Gas Oil combustion consumption by agriculture machines,AR-A,SESCO,annual,kg,1bf11900-3515-3aaf-8eb4-8b87d7838cac +2023,Salta,II.5.1,1736.8301999999999,TJ,CH4,3.9,kg/TJ,6773.637779999999,Gas Oil combustion consumption by agriculture machines,AR-A,SESCO,annual,kg,51852086-ae0a-3647-974d-e64a6a977953 +2023,Salta,II.5.1,1736.8301999999999,TJ,N2O,3.9,kg/TJ,6773.637779999999,Gas Oil combustion consumption by agriculture machines,AR-A,SESCO,annual,kg,51852086-ae0a-3647-974d-e64a6a977953 +2023,San Juan,II.5.1,373.51691999999997,TJ,CO2,74100.0,kg/TJ,27677603.771999996,Gas Oil combustion consumption by agriculture machines,AR-J,SESCO,annual,kg,f7c700d2-6f9b-3930-b05c-23295c9c49e1 +2023,San Juan,II.5.1,373.51691999999997,TJ,CH4,3.9,kg/TJ,1456.715988,Gas Oil combustion consumption by agriculture machines,AR-J,SESCO,annual,kg,eba45198-092e-382a-be96-dab2b6af08a8 +2023,San Juan,II.5.1,373.51691999999997,TJ,N2O,3.9,kg/TJ,1456.715988,Gas Oil combustion consumption by agriculture machines,AR-J,SESCO,annual,kg,eba45198-092e-382a-be96-dab2b6af08a8 +2023,San Luis,II.5.1,274.72872,TJ,CO2,74100.0,kg/TJ,20357398.152000003,Gas Oil combustion consumption by agriculture machines,AR-D,SESCO,annual,kg,16f5f5f6-6a35-3457-97bb-efbbf4590439 +2023,San Luis,II.5.1,274.72872,TJ,CH4,3.9,kg/TJ,1071.442008,Gas Oil combustion consumption by agriculture machines,AR-D,SESCO,annual,kg,cba69cc3-f12e-3a08-a649-3b83fdd0c351 +2023,San Luis,II.5.1,274.72872,TJ,N2O,3.9,kg/TJ,1071.442008,Gas Oil combustion consumption by agriculture machines,AR-D,SESCO,annual,kg,cba69cc3-f12e-3a08-a649-3b83fdd0c351 +2023,Santa Fe,II.5.1,6257.212079999999,TJ,CO2,74100.0,kg/TJ,463659415.12799996,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,edf884ec-7d37-3959-830b-add7663d2a06 +2023,Santa Fe,II.5.1,6257.212079999999,TJ,CH4,3.9,kg/TJ,24403.127112,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,eed55759-0a50-35d5-9777-0a1577c152de +2023,Santa Fe,II.5.1,6257.212079999999,TJ,N2O,3.9,kg/TJ,24403.127112,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,eed55759-0a50-35d5-9777-0a1577c152de +2023,Santiago del Estero,II.5.1,1488.07176,TJ,CO2,74100.0,kg/TJ,110266117.41600001,Gas Oil combustion consumption by agriculture machines,AR-G,SESCO,annual,kg,2162f475-6456-35ee-a186-da9d2c735113 +2023,Santiago del Estero,II.5.1,1488.07176,TJ,CH4,3.9,kg/TJ,5803.479864,Gas Oil combustion consumption by agriculture machines,AR-G,SESCO,annual,kg,9c2582dc-f6cd-317d-b403-69d66e050b84 +2023,Santiago del Estero,II.5.1,1488.07176,TJ,N2O,3.9,kg/TJ,5803.479864,Gas Oil combustion consumption by agriculture machines,AR-G,SESCO,annual,kg,9c2582dc-f6cd-317d-b403-69d66e050b84 +2023,Tucuman,II.5.1,1130.3754,TJ,CO2,74100.0,kg/TJ,83760817.13999999,Gas Oil combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,b0b35ee9-2922-38d9-a05a-3d19ff9dbb06 +2023,Tucuman,II.5.1,1130.3754,TJ,CH4,3.9,kg/TJ,4408.464059999999,Gas Oil combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,0fbffb63-ead8-300d-9fda-438208d26e32 +2023,Tucuman,II.5.1,1130.3754,TJ,N2O,3.9,kg/TJ,4408.464059999999,Gas Oil combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,0fbffb63-ead8-300d-9fda-438208d26e32 +2023,Buenos Aires,II.5.1,2140.8324,TJ,CO2,74100.0,kg/TJ,158635680.83999997,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,1a0b7d95-9aa5-3199-a098-e4bfab4567ad +2023,Buenos Aires,II.5.1,2140.8324,TJ,CH4,3.9,kg/TJ,8349.24636,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,f6ab8a3c-71e4-3ce5-bcf5-f3a38c64aa43 +2023,Buenos Aires,II.5.1,2140.8324,TJ,N2O,3.9,kg/TJ,8349.24636,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,f6ab8a3c-71e4-3ce5-bcf5-f3a38c64aa43 +2023,Capital Federal,II.5.1,10.510919999999999,TJ,CO2,74100.0,kg/TJ,778859.1719999999,Gas Oil combustion consumption by agriculture machines,AR-C,SESCO,annual,kg,db933d9c-bc23-3edd-9425-8b4333e0edf2 +2023,Capital Federal,II.5.1,10.510919999999999,TJ,CH4,3.9,kg/TJ,40.99258799999999,Gas Oil combustion consumption by agriculture machines,AR-C,SESCO,annual,kg,1ec4f59b-36f0-31a8-8389-5eb9df918600 +2023,Capital Federal,II.5.1,10.510919999999999,TJ,N2O,3.9,kg/TJ,40.99258799999999,Gas Oil combustion consumption by agriculture machines,AR-C,SESCO,annual,kg,1ec4f59b-36f0-31a8-8389-5eb9df918600 +2023,Catamarca,II.5.1,59.12844,TJ,CO2,74100.0,kg/TJ,4381417.404,Gas Oil combustion consumption by agriculture machines,AR-K,SESCO,annual,kg,03a71b6b-f8e7-3c73-b219-05e2b692f926 +2023,Catamarca,II.5.1,59.12844,TJ,CH4,3.9,kg/TJ,230.60091599999998,Gas Oil combustion consumption by agriculture machines,AR-K,SESCO,annual,kg,bb3499c0-26c9-3dd1-9d6a-0f149c3790f4 +2023,Catamarca,II.5.1,59.12844,TJ,N2O,3.9,kg/TJ,230.60091599999998,Gas Oil combustion consumption by agriculture machines,AR-K,SESCO,annual,kg,bb3499c0-26c9-3dd1-9d6a-0f149c3790f4 +2023,Chaco,II.5.1,27.48732,TJ,CO2,74100.0,kg/TJ,2036810.412,Gas Oil combustion consumption by agriculture machines,AR-H,SESCO,annual,kg,39ae083f-9075-3f0b-885b-e8f684befae4 +2023,Chaco,II.5.1,27.48732,TJ,CH4,3.9,kg/TJ,107.200548,Gas Oil combustion consumption by agriculture machines,AR-H,SESCO,annual,kg,ffb002bf-a13e-37bd-bced-5527af7126b7 +2023,Chaco,II.5.1,27.48732,TJ,N2O,3.9,kg/TJ,107.200548,Gas Oil combustion consumption by agriculture machines,AR-H,SESCO,annual,kg,ffb002bf-a13e-37bd-bced-5527af7126b7 +2023,Corrientes,II.5.1,29.799,TJ,CO2,74100.0,kg/TJ,2208105.9,Gas Oil combustion consumption by agriculture machines,AR-W,SESCO,annual,kg,11be6a2e-6ffd-39f3-a432-8d5bc7a30bbb +2023,Corrientes,II.5.1,29.799,TJ,CH4,3.9,kg/TJ,116.2161,Gas Oil combustion consumption by agriculture machines,AR-W,SESCO,annual,kg,7579e02d-ce20-36c5-983a-7286b83b2980 +2023,Corrientes,II.5.1,29.799,TJ,N2O,3.9,kg/TJ,116.2161,Gas Oil combustion consumption by agriculture machines,AR-W,SESCO,annual,kg,7579e02d-ce20-36c5-983a-7286b83b2980 +2023,Córdoba,II.5.1,479.493,TJ,CO2,74100.0,kg/TJ,35530431.3,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,dbcd01bf-6294-370b-b330-731404ed7aff +2023,Córdoba,II.5.1,479.493,TJ,CH4,3.9,kg/TJ,1870.0227,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,fa653478-e733-3bd6-91cb-f92a3309a8dc +2023,Córdoba,II.5.1,479.493,TJ,N2O,3.9,kg/TJ,1870.0227,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,fa653478-e733-3bd6-91cb-f92a3309a8dc +2023,Entre Rios,II.5.1,37.09524,TJ,CO2,74100.0,kg/TJ,2748757.284,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,5ab0f6f2-68da-3119-a2f9-6ef882f29bd6 +2023,Entre Rios,II.5.1,37.09524,TJ,CH4,3.9,kg/TJ,144.67143599999997,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,49a620b5-95b6-3937-995b-368608cd0171 +2023,Entre Rios,II.5.1,37.09524,TJ,N2O,3.9,kg/TJ,144.67143599999997,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,49a620b5-95b6-3937-995b-368608cd0171 +2023,Formosa,II.5.1,35.0364,TJ,CO2,74100.0,kg/TJ,2596197.24,Gas Oil combustion consumption by agriculture machines,AR-P,SESCO,annual,kg,4a494f7a-14f5-37e4-a12f-1857b98cab08 +2023,Formosa,II.5.1,35.0364,TJ,CH4,3.9,kg/TJ,136.64196,Gas Oil combustion consumption by agriculture machines,AR-P,SESCO,annual,kg,e34c42ae-a5a6-32c2-ac16-f3f837382d8c +2023,Formosa,II.5.1,35.0364,TJ,N2O,3.9,kg/TJ,136.64196,Gas Oil combustion consumption by agriculture machines,AR-P,SESCO,annual,kg,e34c42ae-a5a6-32c2-ac16-f3f837382d8c +2023,Jujuy,II.5.1,30.81036,TJ,CO2,74100.0,kg/TJ,2283047.676,Gas Oil combustion consumption by agriculture machines,AR-Y,SESCO,annual,kg,d40e0eb6-ab57-39e2-ba85-b43f81f0c43f +2023,Jujuy,II.5.1,30.81036,TJ,CH4,3.9,kg/TJ,120.160404,Gas Oil combustion consumption by agriculture machines,AR-Y,SESCO,annual,kg,78e6a5a0-1879-33b5-a78c-6ddafa020eab +2023,Jujuy,II.5.1,30.81036,TJ,N2O,3.9,kg/TJ,120.160404,Gas Oil combustion consumption by agriculture machines,AR-Y,SESCO,annual,kg,78e6a5a0-1879-33b5-a78c-6ddafa020eab +2023,La Pampa,II.5.1,121.79664,TJ,CO2,74100.0,kg/TJ,9025131.024,Gas Oil combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,faa03e97-564a-39a5-b329-33287bcb08f9 +2023,La Pampa,II.5.1,121.79664,TJ,CH4,3.9,kg/TJ,475.006896,Gas Oil combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,6439dd36-b058-3d4d-a384-b8ba96d3c519 +2023,La Pampa,II.5.1,121.79664,TJ,N2O,3.9,kg/TJ,475.006896,Gas Oil combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,6439dd36-b058-3d4d-a384-b8ba96d3c519 +2023,La Rioja,II.5.1,47.75064,TJ,CO2,74100.0,kg/TJ,3538322.4239999996,Gas Oil combustion consumption by agriculture machines,AR-F,SESCO,annual,kg,17d06eb0-6983-362d-b3af-8308775d4323 +2023,La Rioja,II.5.1,47.75064,TJ,CH4,3.9,kg/TJ,186.22749599999997,Gas Oil combustion consumption by agriculture machines,AR-F,SESCO,annual,kg,17a5467a-f37f-3df1-b2e6-a6d2b70353d2 +2023,La Rioja,II.5.1,47.75064,TJ,N2O,3.9,kg/TJ,186.22749599999997,Gas Oil combustion consumption by agriculture machines,AR-F,SESCO,annual,kg,17a5467a-f37f-3df1-b2e6-a6d2b70353d2 +2023,Mendoza,II.5.1,236.11643999999998,TJ,CO2,74100.0,kg/TJ,17496228.204,Gas Oil combustion consumption by agriculture machines,AR-M,SESCO,annual,kg,a6f4a954-8d85-3e3d-a593-0256f3e4c28c +2023,Mendoza,II.5.1,236.11643999999998,TJ,CH4,3.9,kg/TJ,920.8541159999999,Gas Oil combustion consumption by agriculture machines,AR-M,SESCO,annual,kg,43f1eec1-bbd4-363d-acba-b64b11ef28d4 +2023,Mendoza,II.5.1,236.11643999999998,TJ,N2O,3.9,kg/TJ,920.8541159999999,Gas Oil combustion consumption by agriculture machines,AR-M,SESCO,annual,kg,43f1eec1-bbd4-363d-acba-b64b11ef28d4 +2023,Misiones,II.5.1,67.5444,TJ,CO2,74100.0,kg/TJ,5005040.04,Gas Oil combustion consumption by agriculture machines,AR-N,SESCO,annual,kg,4b786a41-aa79-3f96-962b-5e4b7f12fee1 +2023,Misiones,II.5.1,67.5444,TJ,CH4,3.9,kg/TJ,263.42316,Gas Oil combustion consumption by agriculture machines,AR-N,SESCO,annual,kg,8e695b2a-7844-3f86-b116-1115a06aac06 +2023,Misiones,II.5.1,67.5444,TJ,N2O,3.9,kg/TJ,263.42316,Gas Oil combustion consumption by agriculture machines,AR-N,SESCO,annual,kg,8e695b2a-7844-3f86-b116-1115a06aac06 +2023,Rio Negro,II.5.1,58.1532,TJ,CO2,74100.0,kg/TJ,4309152.12,Gas Oil combustion consumption by agriculture machines,AR-R,SESCO,annual,kg,1cacfa1f-1843-38f5-9a39-0c89c5d5f3bf +2023,Rio Negro,II.5.1,58.1532,TJ,CH4,3.9,kg/TJ,226.79747999999998,Gas Oil combustion consumption by agriculture machines,AR-R,SESCO,annual,kg,4ebb658c-def2-318b-afe1-53ce53bdbe89 +2023,Rio Negro,II.5.1,58.1532,TJ,N2O,3.9,kg/TJ,226.79747999999998,Gas Oil combustion consumption by agriculture machines,AR-R,SESCO,annual,kg,4ebb658c-def2-318b-afe1-53ce53bdbe89 +2023,Salta,II.5.1,274.76484,TJ,CO2,74100.0,kg/TJ,20360074.644,Gas Oil combustion consumption by agriculture machines,AR-A,SESCO,annual,kg,c89505bb-edf0-35bb-babd-e21da5f80133 +2023,Salta,II.5.1,274.76484,TJ,CH4,3.9,kg/TJ,1071.582876,Gas Oil combustion consumption by agriculture machines,AR-A,SESCO,annual,kg,a8cafd0b-532d-3b71-a1af-6517a418f96d +2023,Salta,II.5.1,274.76484,TJ,N2O,3.9,kg/TJ,1071.582876,Gas Oil combustion consumption by agriculture machines,AR-A,SESCO,annual,kg,a8cafd0b-532d-3b71-a1af-6517a418f96d +2023,San Juan,II.5.1,61.54848,TJ,CO2,74100.0,kg/TJ,4560742.368,Gas Oil combustion consumption by agriculture machines,AR-J,SESCO,annual,kg,6eee679c-558f-32da-a099-bc8064cccbf3 +2023,San Juan,II.5.1,61.54848,TJ,CH4,3.9,kg/TJ,240.03907199999998,Gas Oil combustion consumption by agriculture machines,AR-J,SESCO,annual,kg,62447040-bc32-3b4d-a3c3-ae0111ae9e92 +2023,San Juan,II.5.1,61.54848,TJ,N2O,3.9,kg/TJ,240.03907199999998,Gas Oil combustion consumption by agriculture machines,AR-J,SESCO,annual,kg,62447040-bc32-3b4d-a3c3-ae0111ae9e92 +2023,San Luis,II.5.1,31.46052,TJ,CO2,74100.0,kg/TJ,2331224.532,Gas Oil combustion consumption by agriculture machines,AR-D,SESCO,annual,kg,88ee4502-49d5-3b28-a20e-a05a62763834 +2023,San Luis,II.5.1,31.46052,TJ,CH4,3.9,kg/TJ,122.696028,Gas Oil combustion consumption by agriculture machines,AR-D,SESCO,annual,kg,22de3b5f-c791-3bfa-8052-d25d0419a588 +2023,San Luis,II.5.1,31.46052,TJ,N2O,3.9,kg/TJ,122.696028,Gas Oil combustion consumption by agriculture machines,AR-D,SESCO,annual,kg,22de3b5f-c791-3bfa-8052-d25d0419a588 +2023,Santa Fe,II.5.1,377.05668,TJ,CO2,74100.0,kg/TJ,27939899.987999998,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,5c0b9229-72b9-3cff-aecf-a0ea0aaf85f8 +2023,Santa Fe,II.5.1,377.05668,TJ,CH4,3.9,kg/TJ,1470.5210519999998,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,d15bc6d8-1921-3de6-b200-7af8e7e7d5c2 +2023,Santa Fe,II.5.1,377.05668,TJ,N2O,3.9,kg/TJ,1470.5210519999998,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,d15bc6d8-1921-3de6-b200-7af8e7e7d5c2 +2023,Santiago del Estero,II.5.1,223.79952,TJ,CO2,74100.0,kg/TJ,16583544.432,Gas Oil combustion consumption by agriculture machines,AR-G,SESCO,annual,kg,12f06a57-1d8f-3807-8b82-f89be01ebde0 +2023,Santiago del Estero,II.5.1,223.79952,TJ,CH4,3.9,kg/TJ,872.818128,Gas Oil combustion consumption by agriculture machines,AR-G,SESCO,annual,kg,0c1307f5-4ac9-3950-b3ee-9032734d141c +2023,Santiago del Estero,II.5.1,223.79952,TJ,N2O,3.9,kg/TJ,872.818128,Gas Oil combustion consumption by agriculture machines,AR-G,SESCO,annual,kg,0c1307f5-4ac9-3950-b3ee-9032734d141c +2023,Tucuman,II.5.1,67.76111999999999,TJ,CO2,74100.0,kg/TJ,5021098.992,Gas Oil combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,1a00570f-84d3-3143-926e-7ba27c5983c8 +2023,Tucuman,II.5.1,67.76111999999999,TJ,CH4,3.9,kg/TJ,264.26836799999995,Gas Oil combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,669b4238-910f-3c43-8cdb-885fd17e2374 +2023,Tucuman,II.5.1,67.76111999999999,TJ,N2O,3.9,kg/TJ,264.26836799999995,Gas Oil combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,669b4238-910f-3c43-8cdb-885fd17e2374 +2023,Buenos Aires,II.5.1,3.9630779999999994,TJ,CO2,71500.0,kg/TJ,283360.07699999993,Jet Kerosene combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,61b8f565-df72-3d25-a65d-b60347335663 +2023,Buenos Aires,II.5.1,3.9630779999999994,TJ,CH4,0.5,kg/TJ,1.9815389999999997,Jet Kerosene combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,68c29c88-49ca-3c56-9b55-8adc938e9781 +2023,Buenos Aires,II.5.1,3.9630779999999994,TJ,N2O,2.0,kg/TJ,7.926155999999999,Jet Kerosene combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,33564f2c-3350-3e2e-85f8-64045f55d2c7 +2023,Córdoba,II.5.1,0.31453,TJ,CO2,71500.0,kg/TJ,22488.894999999997,Jet Kerosene combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,f15cf9af-afeb-31b9-a32e-757a60ba7346 +2023,Córdoba,II.5.1,0.31453,TJ,CH4,0.5,kg/TJ,0.157265,Jet Kerosene combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,cf48b8c3-2f61-3dd0-b123-b5d477ee9603 +2023,Córdoba,II.5.1,0.31453,TJ,N2O,2.0,kg/TJ,0.62906,Jet Kerosene combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,ba1ec442-4a67-3a2f-9a40-c16e4a8f5665 +2023,Santa Fe,II.5.1,0.25162399999999996,TJ,CO2,71500.0,kg/TJ,17991.115999999998,Jet Kerosene combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,9f968c3e-cbe5-3315-bc81-a6a88ff259f2 +2023,Santa Fe,II.5.1,0.25162399999999996,TJ,CH4,0.5,kg/TJ,0.12581199999999998,Jet Kerosene combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,00ff08c4-4804-379c-97b3-2b1ae630872a +2023,Santa Fe,II.5.1,0.25162399999999996,TJ,N2O,2.0,kg/TJ,0.5032479999999999,Jet Kerosene combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,a0907ad1-e862-3abd-a013-011f9aebfb24 +2023,Buenos Aires,II.5.1,108.14034,TJ,CO2,73300.0,kg/TJ,7926686.921999999,Naphtha combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,cf76e8e5-7d9e-39c0-bff2-e6adc778dd68 +2023,Buenos Aires,II.5.1,108.14034,TJ,CH4,0.5,kg/TJ,54.07017,Naphtha combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,232b048d-a71b-30c7-809e-ce841270b3b7 +2023,Buenos Aires,II.5.1,108.14034,TJ,N2O,2.0,kg/TJ,216.28068,Naphtha combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,3ff96167-f5b9-312b-a1bb-db4a95d97b10 +2023,Salta,II.5.1,0.9594199999999999,TJ,CO2,73300.0,kg/TJ,70325.48599999999,Naphtha combustion consumption by agriculture machines,AR-A,SESCO,annual,kg,a5987929-668c-3854-acf3-b8f9a845d46d +2023,Salta,II.5.1,0.9594199999999999,TJ,CH4,0.5,kg/TJ,0.47970999999999997,Naphtha combustion consumption by agriculture machines,AR-A,SESCO,annual,kg,9deb1794-083e-37e0-a47a-7cec40dce6a9 +2023,Salta,II.5.1,0.9594199999999999,TJ,N2O,2.0,kg/TJ,1.9188399999999999,Naphtha combustion consumption by agriculture machines,AR-A,SESCO,annual,kg,23578ac5-8a6d-3e49-b76c-9659ec3ca21c +2023,Santa Fe,II.5.1,42.55713,TJ,CO2,73300.0,kg/TJ,3119437.629,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,39910d86-8818-366c-9c6a-035d0cc2b85b +2023,Santa Fe,II.5.1,42.55713,TJ,CH4,0.5,kg/TJ,21.278565,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,1812137b-e165-322d-8b3a-544092f497cd +2023,Santa Fe,II.5.1,42.55713,TJ,N2O,2.0,kg/TJ,85.11426,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,adf8f902-3f6f-3fec-83fb-f950bb501b55 +2023,Buenos Aires,II.5.1,8.600515,TJ,CO2,73300.0,kg/TJ,630417.7495,Naphtha combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,7994ee1d-5f75-35f3-b5a3-ec76cdfa386e +2023,Buenos Aires,II.5.1,8.600515,TJ,CH4,0.5,kg/TJ,4.3002575,Naphtha combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,1de9d049-b121-330c-8ff1-e7d6917cd8bf +2023,Buenos Aires,II.5.1,8.600515,TJ,N2O,2.0,kg/TJ,17.20103,Naphtha combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,b521c12d-917e-3dba-9eed-86993a2a0531 +2023,Santa Fe,II.5.1,4.5915099999999995,TJ,CO2,73300.0,kg/TJ,336557.68299999996,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,21cc319e-78c2-342d-b550-c697a40ad960 +2023,Santa Fe,II.5.1,4.5915099999999995,TJ,CH4,0.5,kg/TJ,2.2957549999999998,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,29e45b0a-15af-3796-ae31-0910bedefc79 +2023,Santa Fe,II.5.1,4.5915099999999995,TJ,N2O,2.0,kg/TJ,9.183019999999999,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,1b5dceee-c0ee-3d12-9e70-26cf792db738 +2023,Buenos Aires,II.1.1,12976.2906,TJ,CO2,74100.0,kg/TJ,961543133.46,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,761f39a9-d94a-3044-9b07-fe4fbac70261 +2023,Buenos Aires,II.1.1,12976.2906,TJ,CH4,3.9,kg/TJ,50607.53334,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,06cb629b-b390-3c53-8406-898bb7b679fa +2023,Buenos Aires,II.1.1,12976.2906,TJ,N2O,3.9,kg/TJ,50607.53334,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,06cb629b-b390-3c53-8406-898bb7b679fa +2023,Capital Federal,II.1.1,964.69296,TJ,CO2,74100.0,kg/TJ,71483748.336,Gas Oil combustion consumption by freight transport,AR-C,SESCO,annual,kg,a8d810cf-c90a-345c-8fdb-60a126e316b6 +2023,Capital Federal,II.1.1,964.69296,TJ,CH4,3.9,kg/TJ,3762.3025439999997,Gas Oil combustion consumption by freight transport,AR-C,SESCO,annual,kg,47658663-14b6-3595-9099-6b1c1dc2a669 +2023,Capital Federal,II.1.1,964.69296,TJ,N2O,3.9,kg/TJ,3762.3025439999997,Gas Oil combustion consumption by freight transport,AR-C,SESCO,annual,kg,47658663-14b6-3595-9099-6b1c1dc2a669 +2023,Catamarca,II.1.1,81.95627999999999,TJ,CO2,74100.0,kg/TJ,6072960.347999999,Gas Oil combustion consumption by freight transport,AR-K,SESCO,annual,kg,4114cc78-6aa3-3960-8572-bea2f64effc0 +2023,Catamarca,II.1.1,81.95627999999999,TJ,CH4,3.9,kg/TJ,319.62949199999997,Gas Oil combustion consumption by freight transport,AR-K,SESCO,annual,kg,6e8c38df-ca81-3b20-8b82-8f37d69728d1 +2023,Catamarca,II.1.1,81.95627999999999,TJ,N2O,3.9,kg/TJ,319.62949199999997,Gas Oil combustion consumption by freight transport,AR-K,SESCO,annual,kg,6e8c38df-ca81-3b20-8b82-8f37d69728d1 +2023,Chaco,II.1.1,436.04064,TJ,CO2,74100.0,kg/TJ,32310611.424,Gas Oil combustion consumption by freight transport,AR-H,SESCO,annual,kg,91b6e799-87a0-3985-9694-e41b35472b84 +2023,Chaco,II.1.1,436.04064,TJ,CH4,3.9,kg/TJ,1700.5584959999999,Gas Oil combustion consumption by freight transport,AR-H,SESCO,annual,kg,1b229275-e104-388c-88cf-9f4c1577be95 +2023,Chaco,II.1.1,436.04064,TJ,N2O,3.9,kg/TJ,1700.5584959999999,Gas Oil combustion consumption by freight transport,AR-H,SESCO,annual,kg,1b229275-e104-388c-88cf-9f4c1577be95 +2023,Chubut,II.1.1,892.164,TJ,CO2,74100.0,kg/TJ,66109352.4,Gas Oil combustion consumption by freight transport,AR-U,SESCO,annual,kg,dd6dc6d1-cb73-384d-bc83-5a087b623d60 +2023,Chubut,II.1.1,892.164,TJ,CH4,3.9,kg/TJ,3479.4395999999997,Gas Oil combustion consumption by freight transport,AR-U,SESCO,annual,kg,87dca691-502f-3732-a3fb-9ccd76392bcd +2023,Chubut,II.1.1,892.164,TJ,N2O,3.9,kg/TJ,3479.4395999999997,Gas Oil combustion consumption by freight transport,AR-U,SESCO,annual,kg,87dca691-502f-3732-a3fb-9ccd76392bcd +2023,Corrientes,II.1.1,836.86428,TJ,CO2,74100.0,kg/TJ,62011643.148,Gas Oil combustion consumption by freight transport,AR-W,SESCO,annual,kg,9c6dc021-9214-3882-ac3b-0a29b7373b0f +2023,Corrientes,II.1.1,836.86428,TJ,CH4,3.9,kg/TJ,3263.770692,Gas Oil combustion consumption by freight transport,AR-W,SESCO,annual,kg,ab178dee-3e52-3e38-ad0f-417869475502 +2023,Corrientes,II.1.1,836.86428,TJ,N2O,3.9,kg/TJ,3263.770692,Gas Oil combustion consumption by freight transport,AR-W,SESCO,annual,kg,ab178dee-3e52-3e38-ad0f-417869475502 +2023,Córdoba,II.1.1,3070.23612,TJ,CO2,74100.0,kg/TJ,227504496.492,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,d4220e58-75fc-3254-8d38-29e85a942a25 +2023,Córdoba,II.1.1,3070.23612,TJ,CH4,3.9,kg/TJ,11973.920868,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,11c33551-3b33-353a-bcc3-5ef462566d45 +2023,Córdoba,II.1.1,3070.23612,TJ,N2O,3.9,kg/TJ,11973.920868,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,11c33551-3b33-353a-bcc3-5ef462566d45 +2023,Entre Rios,II.1.1,1276.33632,TJ,CO2,74100.0,kg/TJ,94576521.31199999,Gas Oil combustion consumption by freight transport,AR-E,SESCO,annual,kg,5350117f-081e-3bd9-aa61-f54994c9b328 +2023,Entre Rios,II.1.1,1276.33632,TJ,CH4,3.9,kg/TJ,4977.7116479999995,Gas Oil combustion consumption by freight transport,AR-E,SESCO,annual,kg,6c4b0551-1745-32c3-b207-779a0c228f2b +2023,Entre Rios,II.1.1,1276.33632,TJ,N2O,3.9,kg/TJ,4977.7116479999995,Gas Oil combustion consumption by freight transport,AR-E,SESCO,annual,kg,6c4b0551-1745-32c3-b207-779a0c228f2b +2023,Formosa,II.1.1,87.37428,TJ,CO2,74100.0,kg/TJ,6474434.148,Gas Oil combustion consumption by freight transport,AR-P,SESCO,annual,kg,adce6dbf-9e10-3f49-b913-2bb1467581ca +2023,Formosa,II.1.1,87.37428,TJ,CH4,3.9,kg/TJ,340.759692,Gas Oil combustion consumption by freight transport,AR-P,SESCO,annual,kg,ff596419-2588-3287-84dc-c73553ea03d9 +2023,Formosa,II.1.1,87.37428,TJ,N2O,3.9,kg/TJ,340.759692,Gas Oil combustion consumption by freight transport,AR-P,SESCO,annual,kg,ff596419-2588-3287-84dc-c73553ea03d9 +2023,Jujuy,II.1.1,194.79515999999998,TJ,CO2,74100.0,kg/TJ,14434321.355999999,Gas Oil combustion consumption by freight transport,AR-Y,SESCO,annual,kg,c8708075-7465-32b4-a242-32f2184cfb09 +2023,Jujuy,II.1.1,194.79515999999998,TJ,CH4,3.9,kg/TJ,759.7011239999999,Gas Oil combustion consumption by freight transport,AR-Y,SESCO,annual,kg,b2752f39-4cd9-331f-9bb4-b9a31bb44c20 +2023,Jujuy,II.1.1,194.79515999999998,TJ,N2O,3.9,kg/TJ,759.7011239999999,Gas Oil combustion consumption by freight transport,AR-Y,SESCO,annual,kg,b2752f39-4cd9-331f-9bb4-b9a31bb44c20 +2023,La Pampa,II.1.1,1265.0307599999999,TJ,CO2,74100.0,kg/TJ,93738779.31599998,Gas Oil combustion consumption by freight transport,AR-L,SESCO,annual,kg,9b7071b7-5011-3e6c-a4e8-c3a055603e08 +2023,La Pampa,II.1.1,1265.0307599999999,TJ,CH4,3.9,kg/TJ,4933.6199639999995,Gas Oil combustion consumption by freight transport,AR-L,SESCO,annual,kg,7b6685b0-e194-3e2e-9e6e-bde91be241d0 +2023,La Pampa,II.1.1,1265.0307599999999,TJ,N2O,3.9,kg/TJ,4933.6199639999995,Gas Oil combustion consumption by freight transport,AR-L,SESCO,annual,kg,7b6685b0-e194-3e2e-9e6e-bde91be241d0 +2023,La Rioja,II.1.1,107.457,TJ,CO2,74100.0,kg/TJ,7962563.699999999,Gas Oil combustion consumption by freight transport,AR-F,SESCO,annual,kg,24e7f61c-d13b-3186-8efa-9a0c63197a29 +2023,La Rioja,II.1.1,107.457,TJ,CH4,3.9,kg/TJ,419.0823,Gas Oil combustion consumption by freight transport,AR-F,SESCO,annual,kg,2b417467-530d-39cc-b393-9713341cba06 +2023,La Rioja,II.1.1,107.457,TJ,N2O,3.9,kg/TJ,419.0823,Gas Oil combustion consumption by freight transport,AR-F,SESCO,annual,kg,2b417467-530d-39cc-b393-9713341cba06 +2023,Mendoza,II.1.1,1688.93508,TJ,CO2,74100.0,kg/TJ,125150089.428,Gas Oil combustion consumption by freight transport,AR-M,SESCO,annual,kg,cf9f96f6-aca6-34de-8af8-da0bc6c2eb38 +2023,Mendoza,II.1.1,1688.93508,TJ,CH4,3.9,kg/TJ,6586.846812,Gas Oil combustion consumption by freight transport,AR-M,SESCO,annual,kg,3eeb8144-c8af-3ea8-9465-2be8f55e7054 +2023,Mendoza,II.1.1,1688.93508,TJ,N2O,3.9,kg/TJ,6586.846812,Gas Oil combustion consumption by freight transport,AR-M,SESCO,annual,kg,3eeb8144-c8af-3ea8-9465-2be8f55e7054 +2023,Misiones,II.1.1,492.38784,TJ,CO2,74100.0,kg/TJ,36485938.944,Gas Oil combustion consumption by freight transport,AR-N,SESCO,annual,kg,ebadc4a0-7795-30fd-b945-826d7375e45b +2023,Misiones,II.1.1,492.38784,TJ,CH4,3.9,kg/TJ,1920.3125759999998,Gas Oil combustion consumption by freight transport,AR-N,SESCO,annual,kg,596a1243-52c9-3f17-9a4e-7e2e25e4752c +2023,Misiones,II.1.1,492.38784,TJ,N2O,3.9,kg/TJ,1920.3125759999998,Gas Oil combustion consumption by freight transport,AR-N,SESCO,annual,kg,596a1243-52c9-3f17-9a4e-7e2e25e4752c +2023,Neuquén,II.1.1,1243.10592,TJ,CO2,74100.0,kg/TJ,92114148.67199999,Gas Oil combustion consumption by freight transport,AR-Q,SESCO,annual,kg,76ea7ac0-10a3-35e4-9ed5-ac21b15e53d4 +2023,Neuquén,II.1.1,1243.10592,TJ,CH4,3.9,kg/TJ,4848.113088,Gas Oil combustion consumption by freight transport,AR-Q,SESCO,annual,kg,d6a99a34-049a-3ab5-9885-38df64894434 +2023,Neuquén,II.1.1,1243.10592,TJ,N2O,3.9,kg/TJ,4848.113088,Gas Oil combustion consumption by freight transport,AR-Q,SESCO,annual,kg,d6a99a34-049a-3ab5-9885-38df64894434 +2023,Rio Negro,II.1.1,1537.33944,TJ,CO2,74100.0,kg/TJ,113916852.504,Gas Oil combustion consumption by freight transport,AR-R,SESCO,annual,kg,05fed763-ddd9-3099-91cb-6623065750b6 +2023,Rio Negro,II.1.1,1537.33944,TJ,CH4,3.9,kg/TJ,5995.623815999999,Gas Oil combustion consumption by freight transport,AR-R,SESCO,annual,kg,8c07c68d-76e9-38ad-a0a8-c6f0888fa6eb +2023,Rio Negro,II.1.1,1537.33944,TJ,N2O,3.9,kg/TJ,5995.623815999999,Gas Oil combustion consumption by freight transport,AR-R,SESCO,annual,kg,8c07c68d-76e9-38ad-a0a8-c6f0888fa6eb +2023,Salta,II.1.1,1033.28484,TJ,CO2,74100.0,kg/TJ,76566406.64400001,Gas Oil combustion consumption by freight transport,AR-A,SESCO,annual,kg,5cf0f470-471a-3665-985b-746dca00bc1e +2023,Salta,II.1.1,1033.28484,TJ,CH4,3.9,kg/TJ,4029.810876,Gas Oil combustion consumption by freight transport,AR-A,SESCO,annual,kg,078bf65f-0f86-3aeb-8903-cd95c6f77e3b +2023,Salta,II.1.1,1033.28484,TJ,N2O,3.9,kg/TJ,4029.810876,Gas Oil combustion consumption by freight transport,AR-A,SESCO,annual,kg,078bf65f-0f86-3aeb-8903-cd95c6f77e3b +2023,San Juan,II.1.1,150.801,TJ,CO2,74100.0,kg/TJ,11174354.1,Gas Oil combustion consumption by freight transport,AR-J,SESCO,annual,kg,6fbc82ca-e549-3125-bbff-0ce67951682f +2023,San Juan,II.1.1,150.801,TJ,CH4,3.9,kg/TJ,588.1238999999999,Gas Oil combustion consumption by freight transport,AR-J,SESCO,annual,kg,cbaaa239-467f-3bde-90a5-97c629b05007 +2023,San Juan,II.1.1,150.801,TJ,N2O,3.9,kg/TJ,588.1238999999999,Gas Oil combustion consumption by freight transport,AR-J,SESCO,annual,kg,cbaaa239-467f-3bde-90a5-97c629b05007 +2023,San Luis,II.1.1,516.47988,TJ,CO2,74100.0,kg/TJ,38271159.107999995,Gas Oil combustion consumption by freight transport,AR-D,SESCO,annual,kg,6b380a57-c678-3b84-b798-c90a65de7444 +2023,San Luis,II.1.1,516.47988,TJ,CH4,3.9,kg/TJ,2014.271532,Gas Oil combustion consumption by freight transport,AR-D,SESCO,annual,kg,40101bdb-3d37-3ace-b306-9e5a123b5fe4 +2023,San Luis,II.1.1,516.47988,TJ,N2O,3.9,kg/TJ,2014.271532,Gas Oil combustion consumption by freight transport,AR-D,SESCO,annual,kg,40101bdb-3d37-3ace-b306-9e5a123b5fe4 +2023,Santa Cruz,II.1.1,798.0713999999999,TJ,CO2,74100.0,kg/TJ,59137090.739999995,Gas Oil combustion consumption by freight transport,AR-Z,SESCO,annual,kg,2dcaed76-19fc-3553-81e4-c7cadf9c4cab +2023,Santa Cruz,II.1.1,798.0713999999999,TJ,CH4,3.9,kg/TJ,3112.47846,Gas Oil combustion consumption by freight transport,AR-Z,SESCO,annual,kg,08d0978a-f01e-34df-8722-7cfc50980d8d +2023,Santa Cruz,II.1.1,798.0713999999999,TJ,N2O,3.9,kg/TJ,3112.47846,Gas Oil combustion consumption by freight transport,AR-Z,SESCO,annual,kg,08d0978a-f01e-34df-8722-7cfc50980d8d +2023,Santa Fe,II.1.1,3231.04236,TJ,CO2,74100.0,kg/TJ,239420238.876,Gas Oil combustion consumption by freight transport,AR-S,SESCO,annual,kg,46bff1cc-c899-3239-a60d-5b2fc62b0310 +2023,Santa Fe,II.1.1,3231.04236,TJ,CH4,3.9,kg/TJ,12601.065203999999,Gas Oil combustion consumption by freight transport,AR-S,SESCO,annual,kg,a1187abd-d004-37f5-b37f-9e6d3f387c67 +2023,Santa Fe,II.1.1,3231.04236,TJ,N2O,3.9,kg/TJ,12601.065203999999,Gas Oil combustion consumption by freight transport,AR-S,SESCO,annual,kg,a1187abd-d004-37f5-b37f-9e6d3f387c67 +2023,Santiago del Estero,II.1.1,782.5398,TJ,CO2,74100.0,kg/TJ,57986199.18,Gas Oil combustion consumption by freight transport,AR-G,SESCO,annual,kg,5558f0d3-c481-3b77-9866-89c1a638b5e7 +2023,Santiago del Estero,II.1.1,782.5398,TJ,CH4,3.9,kg/TJ,3051.90522,Gas Oil combustion consumption by freight transport,AR-G,SESCO,annual,kg,f5bcb47b-5560-31eb-a84d-456a7dc1ec2e +2023,Santiago del Estero,II.1.1,782.5398,TJ,N2O,3.9,kg/TJ,3051.90522,Gas Oil combustion consumption by freight transport,AR-G,SESCO,annual,kg,f5bcb47b-5560-31eb-a84d-456a7dc1ec2e +2023,Tierra del Fuego,II.1.1,304.27488,TJ,CO2,74100.0,kg/TJ,22546768.608,Gas Oil combustion consumption by freight transport,AR-V,SESCO,annual,kg,cf55bb30-d3e8-3349-bd21-548d170b592e +2023,Tierra del Fuego,II.1.1,304.27488,TJ,CH4,3.9,kg/TJ,1186.672032,Gas Oil combustion consumption by freight transport,AR-V,SESCO,annual,kg,74a83a03-4621-3b43-a852-5652a5b1d091 +2023,Tierra del Fuego,II.1.1,304.27488,TJ,N2O,3.9,kg/TJ,1186.672032,Gas Oil combustion consumption by freight transport,AR-V,SESCO,annual,kg,74a83a03-4621-3b43-a852-5652a5b1d091 +2023,Tucuman,II.1.1,449.11607999999995,TJ,CO2,74100.0,kg/TJ,33279501.527999997,Gas Oil combustion consumption by freight transport,AR-T,SESCO,annual,kg,2a6944b4-926a-34a6-bd15-19a626da1c14 +2023,Tucuman,II.1.1,449.11607999999995,TJ,CH4,3.9,kg/TJ,1751.5527119999997,Gas Oil combustion consumption by freight transport,AR-T,SESCO,annual,kg,28721c93-74d8-3078-9472-c3f606642b12 +2023,Tucuman,II.1.1,449.11607999999995,TJ,N2O,3.9,kg/TJ,1751.5527119999997,Gas Oil combustion consumption by freight transport,AR-T,SESCO,annual,kg,28721c93-74d8-3078-9472-c3f606642b12 +2023,Buenos Aires,II.1.1,5763.704519999999,TJ,CO2,74100.0,kg/TJ,427090504.9319999,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,65067c76-08b0-3bfc-b367-ab48a7d29287 +2023,Buenos Aires,II.1.1,5763.704519999999,TJ,CH4,3.9,kg/TJ,22478.447627999998,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,6f7a221b-ff9a-3c71-a5b3-f63aa38b67f4 +2023,Buenos Aires,II.1.1,5763.704519999999,TJ,N2O,3.9,kg/TJ,22478.447627999998,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,6f7a221b-ff9a-3c71-a5b3-f63aa38b67f4 +2023,Capital Federal,II.1.1,374.9256,TJ,CO2,74100.0,kg/TJ,27781986.959999997,Gas Oil combustion consumption by freight transport,AR-C,SESCO,annual,kg,9b9f9e0a-63bd-31aa-8076-8b2c1f4ae000 +2023,Capital Federal,II.1.1,374.9256,TJ,CH4,3.9,kg/TJ,1462.2098399999998,Gas Oil combustion consumption by freight transport,AR-C,SESCO,annual,kg,ae2498b6-2b57-39bd-beef-c66dd4435b24 +2023,Capital Federal,II.1.1,374.9256,TJ,N2O,3.9,kg/TJ,1462.2098399999998,Gas Oil combustion consumption by freight transport,AR-C,SESCO,annual,kg,ae2498b6-2b57-39bd-beef-c66dd4435b24 +2023,Catamarca,II.1.1,48.256319999999995,TJ,CO2,74100.0,kg/TJ,3575793.3119999995,Gas Oil combustion consumption by freight transport,AR-K,SESCO,annual,kg,440a0744-60ef-3991-8c0b-2fe1494d63d0 +2023,Catamarca,II.1.1,48.256319999999995,TJ,CH4,3.9,kg/TJ,188.19964799999997,Gas Oil combustion consumption by freight transport,AR-K,SESCO,annual,kg,76bfdf6e-08e0-36b3-8b86-ab0b5e4d0b9c +2023,Catamarca,II.1.1,48.256319999999995,TJ,N2O,3.9,kg/TJ,188.19964799999997,Gas Oil combustion consumption by freight transport,AR-K,SESCO,annual,kg,76bfdf6e-08e0-36b3-8b86-ab0b5e4d0b9c +2023,Chaco,II.1.1,230.15663999999998,TJ,CO2,74100.0,kg/TJ,17054607.024,Gas Oil combustion consumption by freight transport,AR-H,SESCO,annual,kg,71e7251a-550f-3b5d-85f5-80754131ab28 +2023,Chaco,II.1.1,230.15663999999998,TJ,CH4,3.9,kg/TJ,897.6108959999999,Gas Oil combustion consumption by freight transport,AR-H,SESCO,annual,kg,349fed4e-ce94-3466-998b-829862a712cb +2023,Chaco,II.1.1,230.15663999999998,TJ,N2O,3.9,kg/TJ,897.6108959999999,Gas Oil combustion consumption by freight transport,AR-H,SESCO,annual,kg,349fed4e-ce94-3466-998b-829862a712cb +2023,Chubut,II.1.1,583.98816,TJ,CO2,74100.0,kg/TJ,43273522.656,Gas Oil combustion consumption by freight transport,AR-U,SESCO,annual,kg,7af6f95a-ae25-3a0c-8ee4-3f44056d2305 +2023,Chubut,II.1.1,583.98816,TJ,CH4,3.9,kg/TJ,2277.553824,Gas Oil combustion consumption by freight transport,AR-U,SESCO,annual,kg,454f2c73-2c34-3bd3-a7a5-4e4fedf0acf7 +2023,Chubut,II.1.1,583.98816,TJ,N2O,3.9,kg/TJ,2277.553824,Gas Oil combustion consumption by freight transport,AR-U,SESCO,annual,kg,454f2c73-2c34-3bd3-a7a5-4e4fedf0acf7 +2023,Corrientes,II.1.1,307.95912,TJ,CO2,74100.0,kg/TJ,22819770.792,Gas Oil combustion consumption by freight transport,AR-W,SESCO,annual,kg,3bd96c5f-150d-33b4-a992-032849bdf3c3 +2023,Corrientes,II.1.1,307.95912,TJ,CH4,3.9,kg/TJ,1201.040568,Gas Oil combustion consumption by freight transport,AR-W,SESCO,annual,kg,4b91b395-9f55-39c3-9ee4-151afcba9c68 +2023,Corrientes,II.1.1,307.95912,TJ,N2O,3.9,kg/TJ,1201.040568,Gas Oil combustion consumption by freight transport,AR-W,SESCO,annual,kg,4b91b395-9f55-39c3-9ee4-151afcba9c68 +2023,Córdoba,II.1.1,996.5508,TJ,CO2,74100.0,kg/TJ,73844414.28,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,a8d5b07f-9c04-3935-8bc3-88a658ee2054 +2023,Córdoba,II.1.1,996.5508,TJ,CH4,3.9,kg/TJ,3886.54812,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,bbc08672-bfbd-3933-b6f5-a0aff1ecde99 +2023,Córdoba,II.1.1,996.5508,TJ,N2O,3.9,kg/TJ,3886.54812,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,bbc08672-bfbd-3933-b6f5-a0aff1ecde99 +2023,Entre Rios,II.1.1,399.05375999999995,TJ,CO2,74100.0,kg/TJ,29569883.615999997,Gas Oil combustion consumption by freight transport,AR-E,SESCO,annual,kg,b60623ea-0453-3933-880e-5a9264c49cb5 +2023,Entre Rios,II.1.1,399.05375999999995,TJ,CH4,3.9,kg/TJ,1556.3096639999999,Gas Oil combustion consumption by freight transport,AR-E,SESCO,annual,kg,c4aa7767-bfd0-3fa7-8d08-b52011a28311 +2023,Entre Rios,II.1.1,399.05375999999995,TJ,N2O,3.9,kg/TJ,1556.3096639999999,Gas Oil combustion consumption by freight transport,AR-E,SESCO,annual,kg,c4aa7767-bfd0-3fa7-8d08-b52011a28311 +2023,Formosa,II.1.1,72.27611999999999,TJ,CO2,74100.0,kg/TJ,5355660.492,Gas Oil combustion consumption by freight transport,AR-P,SESCO,annual,kg,5bdd66c9-fb61-3c64-a8d7-78622a7ade89 +2023,Formosa,II.1.1,72.27611999999999,TJ,CH4,3.9,kg/TJ,281.87686799999994,Gas Oil combustion consumption by freight transport,AR-P,SESCO,annual,kg,73eb304a-adc0-39f0-a5de-0685feea5d1e +2023,Formosa,II.1.1,72.27611999999999,TJ,N2O,3.9,kg/TJ,281.87686799999994,Gas Oil combustion consumption by freight transport,AR-P,SESCO,annual,kg,73eb304a-adc0-39f0-a5de-0685feea5d1e +2023,Jujuy,II.1.1,96.8016,TJ,CO2,74100.0,kg/TJ,7172998.56,Gas Oil combustion consumption by freight transport,AR-Y,SESCO,annual,kg,5302fcb8-2442-303a-bd5d-878bbfbccfdc +2023,Jujuy,II.1.1,96.8016,TJ,CH4,3.9,kg/TJ,377.52624,Gas Oil combustion consumption by freight transport,AR-Y,SESCO,annual,kg,aab528d0-d102-38d2-874e-ffde9f983dd4 +2023,Jujuy,II.1.1,96.8016,TJ,N2O,3.9,kg/TJ,377.52624,Gas Oil combustion consumption by freight transport,AR-Y,SESCO,annual,kg,aab528d0-d102-38d2-874e-ffde9f983dd4 +2023,La Pampa,II.1.1,260.49744,TJ,CO2,74100.0,kg/TJ,19302860.303999998,Gas Oil combustion consumption by freight transport,AR-L,SESCO,annual,kg,40c3937a-c7a4-3387-804a-394373f41cc3 +2023,La Pampa,II.1.1,260.49744,TJ,CH4,3.9,kg/TJ,1015.9400159999999,Gas Oil combustion consumption by freight transport,AR-L,SESCO,annual,kg,127cbee2-9973-3037-a801-f718a2e14013 +2023,La Pampa,II.1.1,260.49744,TJ,N2O,3.9,kg/TJ,1015.9400159999999,Gas Oil combustion consumption by freight transport,AR-L,SESCO,annual,kg,127cbee2-9973-3037-a801-f718a2e14013 +2023,La Rioja,II.1.1,101.28048,TJ,CO2,74100.0,kg/TJ,7504883.568,Gas Oil combustion consumption by freight transport,AR-F,SESCO,annual,kg,5a454fd9-60f9-3c20-8a21-082636cbbd3d +2023,La Rioja,II.1.1,101.28048,TJ,CH4,3.9,kg/TJ,394.99387199999995,Gas Oil combustion consumption by freight transport,AR-F,SESCO,annual,kg,df889c89-9d39-39eb-96cc-fa7768f45f56 +2023,La Rioja,II.1.1,101.28048,TJ,N2O,3.9,kg/TJ,394.99387199999995,Gas Oil combustion consumption by freight transport,AR-F,SESCO,annual,kg,df889c89-9d39-39eb-96cc-fa7768f45f56 +2023,Mendoza,II.1.1,715.5372,TJ,CO2,74100.0,kg/TJ,53021306.519999996,Gas Oil combustion consumption by freight transport,AR-M,SESCO,annual,kg,9d80afc6-55bd-3b71-a919-2f47843554e6 +2023,Mendoza,II.1.1,715.5372,TJ,CH4,3.9,kg/TJ,2790.59508,Gas Oil combustion consumption by freight transport,AR-M,SESCO,annual,kg,2625f05b-c409-371a-8023-ac03ef756856 +2023,Mendoza,II.1.1,715.5372,TJ,N2O,3.9,kg/TJ,2790.59508,Gas Oil combustion consumption by freight transport,AR-M,SESCO,annual,kg,2625f05b-c409-371a-8023-ac03ef756856 +2023,Misiones,II.1.1,210.9408,TJ,CO2,74100.0,kg/TJ,15630713.28,Gas Oil combustion consumption by freight transport,AR-N,SESCO,annual,kg,e6ea362a-fba2-30c5-9c60-9b6ce30499d4 +2023,Misiones,II.1.1,210.9408,TJ,CH4,3.9,kg/TJ,822.66912,Gas Oil combustion consumption by freight transport,AR-N,SESCO,annual,kg,3744768f-b35b-3d18-aa6a-e3fbba9bd0ea +2023,Misiones,II.1.1,210.9408,TJ,N2O,3.9,kg/TJ,822.66912,Gas Oil combustion consumption by freight transport,AR-N,SESCO,annual,kg,3744768f-b35b-3d18-aa6a-e3fbba9bd0ea +2023,Neuquén,II.1.1,1647.46932,TJ,CO2,74100.0,kg/TJ,122077476.61199999,Gas Oil combustion consumption by freight transport,AR-Q,SESCO,annual,kg,d63f37b3-314c-36f9-bff9-63067fc5d2e3 +2023,Neuquén,II.1.1,1647.46932,TJ,CH4,3.9,kg/TJ,6425.130348,Gas Oil combustion consumption by freight transport,AR-Q,SESCO,annual,kg,59d6a31d-dcf1-34fe-bd50-d565ccd3e138 +2023,Neuquén,II.1.1,1647.46932,TJ,N2O,3.9,kg/TJ,6425.130348,Gas Oil combustion consumption by freight transport,AR-Q,SESCO,annual,kg,59d6a31d-dcf1-34fe-bd50-d565ccd3e138 +2023,Rio Negro,II.1.1,601.07292,TJ,CO2,74100.0,kg/TJ,44539503.371999994,Gas Oil combustion consumption by freight transport,AR-R,SESCO,annual,kg,1f982feb-c8fe-33a3-ba59-5c2d6dd004dd +2023,Rio Negro,II.1.1,601.07292,TJ,CH4,3.9,kg/TJ,2344.1843879999997,Gas Oil combustion consumption by freight transport,AR-R,SESCO,annual,kg,95a13d2c-8139-353a-983a-8b27afca3db4 +2023,Rio Negro,II.1.1,601.07292,TJ,N2O,3.9,kg/TJ,2344.1843879999997,Gas Oil combustion consumption by freight transport,AR-R,SESCO,annual,kg,95a13d2c-8139-353a-983a-8b27afca3db4 +2023,Salta,II.1.1,378.5376,TJ,CO2,74100.0,kg/TJ,28049636.16,Gas Oil combustion consumption by freight transport,AR-A,SESCO,annual,kg,d2d6f8b8-5525-32ce-ab16-9241991c4f2f +2023,Salta,II.1.1,378.5376,TJ,CH4,3.9,kg/TJ,1476.29664,Gas Oil combustion consumption by freight transport,AR-A,SESCO,annual,kg,23870403-beb3-3704-b32c-6aede457ae0a +2023,Salta,II.1.1,378.5376,TJ,N2O,3.9,kg/TJ,1476.29664,Gas Oil combustion consumption by freight transport,AR-A,SESCO,annual,kg,23870403-beb3-3704-b32c-6aede457ae0a +2023,San Juan,II.1.1,92.21436,TJ,CO2,74100.0,kg/TJ,6833084.076,Gas Oil combustion consumption by freight transport,AR-J,SESCO,annual,kg,0bb5732e-846f-3c28-8940-286567a05d88 +2023,San Juan,II.1.1,92.21436,TJ,CH4,3.9,kg/TJ,359.636004,Gas Oil combustion consumption by freight transport,AR-J,SESCO,annual,kg,3739a081-e5ee-38fd-98c5-4043039a5661 +2023,San Juan,II.1.1,92.21436,TJ,N2O,3.9,kg/TJ,359.636004,Gas Oil combustion consumption by freight transport,AR-J,SESCO,annual,kg,3739a081-e5ee-38fd-98c5-4043039a5661 +2023,San Luis,II.1.1,161.96208,TJ,CO2,74100.0,kg/TJ,12001390.127999999,Gas Oil combustion consumption by freight transport,AR-D,SESCO,annual,kg,95aeeb02-bf13-3b56-95bd-dbb8f4a5d7b9 +2023,San Luis,II.1.1,161.96208,TJ,CH4,3.9,kg/TJ,631.6521119999999,Gas Oil combustion consumption by freight transport,AR-D,SESCO,annual,kg,eaaa3026-8d06-35d9-99f3-e9afff1c25a6 +2023,San Luis,II.1.1,161.96208,TJ,N2O,3.9,kg/TJ,631.6521119999999,Gas Oil combustion consumption by freight transport,AR-D,SESCO,annual,kg,eaaa3026-8d06-35d9-99f3-e9afff1c25a6 +2023,Santa Cruz,II.1.1,479.34851999999995,TJ,CO2,74100.0,kg/TJ,35519725.331999995,Gas Oil combustion consumption by freight transport,AR-Z,SESCO,annual,kg,34529141-8044-37a2-9aa9-2a996eaa10d9 +2023,Santa Cruz,II.1.1,479.34851999999995,TJ,CH4,3.9,kg/TJ,1869.4592279999997,Gas Oil combustion consumption by freight transport,AR-Z,SESCO,annual,kg,a96439d8-7adf-345a-b8c9-81c71de1edff +2023,Santa Cruz,II.1.1,479.34851999999995,TJ,N2O,3.9,kg/TJ,1869.4592279999997,Gas Oil combustion consumption by freight transport,AR-Z,SESCO,annual,kg,a96439d8-7adf-345a-b8c9-81c71de1edff +2023,Santa Fe,II.1.1,976.17912,TJ,CO2,74100.0,kg/TJ,72334872.792,Gas Oil combustion consumption by freight transport,AR-S,SESCO,annual,kg,50c7a0b0-e059-34ed-9b1c-f473ce8e25b5 +2023,Santa Fe,II.1.1,976.17912,TJ,CH4,3.9,kg/TJ,3807.098568,Gas Oil combustion consumption by freight transport,AR-S,SESCO,annual,kg,6f1ea800-8d67-3a5d-a819-1200cd06e9b0 +2023,Santa Fe,II.1.1,976.17912,TJ,N2O,3.9,kg/TJ,3807.098568,Gas Oil combustion consumption by freight transport,AR-S,SESCO,annual,kg,6f1ea800-8d67-3a5d-a819-1200cd06e9b0 +2023,Santiago del Estero,II.1.1,191.94168,TJ,CO2,74100.0,kg/TJ,14222878.488,Gas Oil combustion consumption by freight transport,AR-G,SESCO,annual,kg,89b2663d-90ad-36c3-81eb-4b9d61e0732a +2023,Santiago del Estero,II.1.1,191.94168,TJ,CH4,3.9,kg/TJ,748.572552,Gas Oil combustion consumption by freight transport,AR-G,SESCO,annual,kg,7c21ca75-09ea-38b5-b340-75821c5a7a7a +2023,Santiago del Estero,II.1.1,191.94168,TJ,N2O,3.9,kg/TJ,748.572552,Gas Oil combustion consumption by freight transport,AR-G,SESCO,annual,kg,7c21ca75-09ea-38b5-b340-75821c5a7a7a +2023,Tierra del Fuego,II.1.1,148.23648,TJ,CO2,74100.0,kg/TJ,10984323.168,Gas Oil combustion consumption by freight transport,AR-V,SESCO,annual,kg,924ed928-09b4-3b3c-a37d-13bb4de3a00c +2023,Tierra del Fuego,II.1.1,148.23648,TJ,CH4,3.9,kg/TJ,578.122272,Gas Oil combustion consumption by freight transport,AR-V,SESCO,annual,kg,a3bf831e-90db-3aca-b3b1-1f03c8547fe6 +2023,Tierra del Fuego,II.1.1,148.23648,TJ,N2O,3.9,kg/TJ,578.122272,Gas Oil combustion consumption by freight transport,AR-V,SESCO,annual,kg,a3bf831e-90db-3aca-b3b1-1f03c8547fe6 +2023,Tucuman,II.1.1,230.69843999999998,TJ,CO2,74100.0,kg/TJ,17094754.404,Gas Oil combustion consumption by freight transport,AR-T,SESCO,annual,kg,3534cb96-ddb1-3839-918b-fdfa4367c7dc +2023,Tucuman,II.1.1,230.69843999999998,TJ,CH4,3.9,kg/TJ,899.7239159999999,Gas Oil combustion consumption by freight transport,AR-T,SESCO,annual,kg,cb2f8d89-d4fd-38c5-aaac-549b8b3d82f0 +2023,Tucuman,II.1.1,230.69843999999998,TJ,N2O,3.9,kg/TJ,899.7239159999999,Gas Oil combustion consumption by freight transport,AR-T,SESCO,annual,kg,cb2f8d89-d4fd-38c5-aaac-549b8b3d82f0 +2023,Buenos Aires,II.1.1,808.345615,TJ,CO2,73300.0,kg/TJ,59251733.5795,Naphtha combustion consumption by freight transport,AR-B,SESCO,annual,kg,56bbf372-fe54-314a-8ea3-bff6c20c8e0a +2023,Buenos Aires,II.1.1,808.345615,TJ,CH4,0.5,kg/TJ,404.1728075,Naphtha combustion consumption by freight transport,AR-B,SESCO,annual,kg,7f7587d7-8a13-3cc5-a0c4-59ce55b05657 +2023,Buenos Aires,II.1.1,808.345615,TJ,N2O,2.0,kg/TJ,1616.69123,Naphtha combustion consumption by freight transport,AR-B,SESCO,annual,kg,bdf3b0fe-e2c1-3d5b-a558-3a69f98a57e8 +2023,Capital Federal,II.1.1,123.456795,TJ,CO2,73300.0,kg/TJ,9049383.0735,Naphtha combustion consumption by freight transport,AR-C,SESCO,annual,kg,b93fef22-6ec3-3d8b-9ec4-f9ab3964ed38 +2023,Capital Federal,II.1.1,123.456795,TJ,CH4,0.5,kg/TJ,61.7283975,Naphtha combustion consumption by freight transport,AR-C,SESCO,annual,kg,ed48bf22-9582-34e6-931d-75b91651c836 +2023,Capital Federal,II.1.1,123.456795,TJ,N2O,2.0,kg/TJ,246.91359,Naphtha combustion consumption by freight transport,AR-C,SESCO,annual,kg,0ba95957-cb18-3def-98fc-1fb628c0db93 +2023,Catamarca,II.1.1,5.4824,TJ,CO2,73300.0,kg/TJ,401859.92,Naphtha combustion consumption by freight transport,AR-K,SESCO,annual,kg,0f022759-28d7-3c03-aeff-85a2029642d2 +2023,Catamarca,II.1.1,5.4824,TJ,CH4,0.5,kg/TJ,2.7412,Naphtha combustion consumption by freight transport,AR-K,SESCO,annual,kg,15a7409b-fe9b-3048-a201-53bf149c6da0 +2023,Catamarca,II.1.1,5.4824,TJ,N2O,2.0,kg/TJ,10.9648,Naphtha combustion consumption by freight transport,AR-K,SESCO,annual,kg,73d20885-8897-3178-995d-032ca9534628 +2023,Chaco,II.1.1,22.20372,TJ,CO2,73300.0,kg/TJ,1627532.676,Naphtha combustion consumption by freight transport,AR-H,SESCO,annual,kg,7960d131-e716-31d7-9420-5331d9f185c7 +2023,Chaco,II.1.1,22.20372,TJ,CH4,0.5,kg/TJ,11.10186,Naphtha combustion consumption by freight transport,AR-H,SESCO,annual,kg,896b18da-532a-3083-87cb-fba3ef4dccb2 +2023,Chaco,II.1.1,22.20372,TJ,N2O,2.0,kg/TJ,44.40744,Naphtha combustion consumption by freight transport,AR-H,SESCO,annual,kg,b63d7997-6223-3a73-8e5c-2e274e3a59b9 +2023,Chubut,II.1.1,23.745645,TJ,CO2,73300.0,kg/TJ,1740555.7785,Naphtha combustion consumption by freight transport,AR-U,SESCO,annual,kg,1e819e6b-6bbb-3e53-99ae-edf9775555bb +2023,Chubut,II.1.1,23.745645,TJ,CH4,0.5,kg/TJ,11.8728225,Naphtha combustion consumption by freight transport,AR-U,SESCO,annual,kg,eb1c9e0a-14ac-357b-bdd2-5f4007771cff +2023,Chubut,II.1.1,23.745645,TJ,N2O,2.0,kg/TJ,47.49129,Naphtha combustion consumption by freight transport,AR-U,SESCO,annual,kg,fba5e052-03e2-3a21-9e1e-2d9c9eb83669 +2023,Corrientes,II.1.1,21.415625,TJ,CO2,73300.0,kg/TJ,1569765.3125,Naphtha combustion consumption by freight transport,AR-W,SESCO,annual,kg,334a423c-8317-3a85-a72c-9c84d610468e +2023,Corrientes,II.1.1,21.415625,TJ,CH4,0.5,kg/TJ,10.7078125,Naphtha combustion consumption by freight transport,AR-W,SESCO,annual,kg,8d37fd92-2854-37e7-95c2-c6b0452de1af +2023,Corrientes,II.1.1,21.415625,TJ,N2O,2.0,kg/TJ,42.83125,Naphtha combustion consumption by freight transport,AR-W,SESCO,annual,kg,44416d3c-8176-3f33-84fc-c8599028ecf1 +2023,Córdoba,II.1.1,137.06,TJ,CO2,73300.0,kg/TJ,10046498.0,Naphtha combustion consumption by freight transport,AR-X,SESCO,annual,kg,165b942e-cdd4-300d-af03-2e2d530d62d2 +2023,Córdoba,II.1.1,137.06,TJ,CH4,0.5,kg/TJ,68.53,Naphtha combustion consumption by freight transport,AR-X,SESCO,annual,kg,c61b473c-90eb-3d16-8261-323f23a27abf +2023,Córdoba,II.1.1,137.06,TJ,N2O,2.0,kg/TJ,274.12,Naphtha combustion consumption by freight transport,AR-X,SESCO,annual,kg,f1b9e5a6-339d-30c0-bfab-66026ea804a3 +2023,Entre Rios,II.1.1,44.68156,TJ,CO2,73300.0,kg/TJ,3275158.3479999998,Naphtha combustion consumption by freight transport,AR-E,SESCO,annual,kg,28416528-2e92-3f91-84f6-61c162e992cf +2023,Entre Rios,II.1.1,44.68156,TJ,CH4,0.5,kg/TJ,22.34078,Naphtha combustion consumption by freight transport,AR-E,SESCO,annual,kg,86240adb-5432-37d3-94b7-230f04d3293c +2023,Entre Rios,II.1.1,44.68156,TJ,N2O,2.0,kg/TJ,89.36312,Naphtha combustion consumption by freight transport,AR-E,SESCO,annual,kg,51498c55-5918-3cdc-b2d2-083aa3879f39 +2023,Formosa,II.1.1,7.641095,TJ,CO2,73300.0,kg/TJ,560092.2635,Naphtha combustion consumption by freight transport,AR-P,SESCO,annual,kg,798afe62-f433-3f7f-84a6-3f76f4298c8a +2023,Formosa,II.1.1,7.641095,TJ,CH4,0.5,kg/TJ,3.8205475,Naphtha combustion consumption by freight transport,AR-P,SESCO,annual,kg,11a15d49-f4b9-39f2-a909-fc3160685fc4 +2023,Formosa,II.1.1,7.641095,TJ,N2O,2.0,kg/TJ,15.28219,Naphtha combustion consumption by freight transport,AR-P,SESCO,annual,kg,6cfdc78f-84f4-3f55-820e-f9c1ce29588b +2023,Jujuy,II.1.1,10.07391,TJ,CO2,73300.0,kg/TJ,738417.603,Naphtha combustion consumption by freight transport,AR-Y,SESCO,annual,kg,3323f528-336f-3755-a222-3e1e74247a11 +2023,Jujuy,II.1.1,10.07391,TJ,CH4,0.5,kg/TJ,5.036955,Naphtha combustion consumption by freight transport,AR-Y,SESCO,annual,kg,4b692e95-7649-3eda-8720-10cf6c91746d +2023,Jujuy,II.1.1,10.07391,TJ,N2O,2.0,kg/TJ,20.14782,Naphtha combustion consumption by freight transport,AR-Y,SESCO,annual,kg,ab9b2837-a23d-399e-bf93-b8352081648f +2023,La Pampa,II.1.1,14.288504999999999,TJ,CO2,73300.0,kg/TJ,1047347.4164999999,Naphtha combustion consumption by freight transport,AR-L,SESCO,annual,kg,aa78d89d-3633-3938-b87b-91ca968710b8 +2023,La Pampa,II.1.1,14.288504999999999,TJ,CH4,0.5,kg/TJ,7.1442524999999995,Naphtha combustion consumption by freight transport,AR-L,SESCO,annual,kg,c986acac-b907-3671-9779-c309501e57cd +2023,La Pampa,II.1.1,14.288504999999999,TJ,N2O,2.0,kg/TJ,28.577009999999998,Naphtha combustion consumption by freight transport,AR-L,SESCO,annual,kg,1e85e9ff-1322-32ae-8ee6-6eb7493e0511 +2023,La Rioja,II.1.1,8.737575,TJ,CO2,73300.0,kg/TJ,640464.2474999999,Naphtha combustion consumption by freight transport,AR-F,SESCO,annual,kg,26846e0b-4232-3db2-ad6a-5e6111b13ae5 +2023,La Rioja,II.1.1,8.737575,TJ,CH4,0.5,kg/TJ,4.3687875,Naphtha combustion consumption by freight transport,AR-F,SESCO,annual,kg,07d77919-508c-3cc1-87f5-0a1cea5b9a5d +2023,La Rioja,II.1.1,8.737575,TJ,N2O,2.0,kg/TJ,17.47515,Naphtha combustion consumption by freight transport,AR-F,SESCO,annual,kg,0d37d9d5-0159-3145-a129-e865d38ac450 +2023,Mendoza,II.1.1,59.48404,TJ,CO2,73300.0,kg/TJ,4360180.132,Naphtha combustion consumption by freight transport,AR-M,SESCO,annual,kg,e4abe703-ea69-39f0-9902-23257b6bc3f2 +2023,Mendoza,II.1.1,59.48404,TJ,CH4,0.5,kg/TJ,29.74202,Naphtha combustion consumption by freight transport,AR-M,SESCO,annual,kg,a969541f-8bba-359f-b12e-867226024816 +2023,Mendoza,II.1.1,59.48404,TJ,N2O,2.0,kg/TJ,118.96808,Naphtha combustion consumption by freight transport,AR-M,SESCO,annual,kg,b75f47ad-e57f-30cf-9030-c69696add502 +2023,Misiones,II.1.1,17.8178,TJ,CO2,73300.0,kg/TJ,1306044.74,Naphtha combustion consumption by freight transport,AR-N,SESCO,annual,kg,df0cc66b-f7ee-3698-9dec-f2da7248da21 +2023,Misiones,II.1.1,17.8178,TJ,CH4,0.5,kg/TJ,8.9089,Naphtha combustion consumption by freight transport,AR-N,SESCO,annual,kg,4e88f396-95d5-3019-9f6d-6750877fdbc7 +2023,Misiones,II.1.1,17.8178,TJ,N2O,2.0,kg/TJ,35.6356,Naphtha combustion consumption by freight transport,AR-N,SESCO,annual,kg,21222fda-b128-3fe7-85c4-77afcb898259 +2023,Neuquén,II.1.1,24.12256,TJ,CO2,73300.0,kg/TJ,1768183.648,Naphtha combustion consumption by freight transport,AR-Q,SESCO,annual,kg,b7c75860-712a-38ae-8016-4c77209f999c +2023,Neuquén,II.1.1,24.12256,TJ,CH4,0.5,kg/TJ,12.06128,Naphtha combustion consumption by freight transport,AR-Q,SESCO,annual,kg,8441d0e8-080b-3301-b533-d959187b1ec9 +2023,Neuquén,II.1.1,24.12256,TJ,N2O,2.0,kg/TJ,48.24512,Naphtha combustion consumption by freight transport,AR-Q,SESCO,annual,kg,3236b9a6-db86-38cd-b659-44d7c2015d03 +2023,Rio Negro,II.1.1,27.035085,TJ,CO2,73300.0,kg/TJ,1981671.7304999998,Naphtha combustion consumption by freight transport,AR-R,SESCO,annual,kg,e57e1372-be25-3c11-bf4a-887589e65109 +2023,Rio Negro,II.1.1,27.035085,TJ,CH4,0.5,kg/TJ,13.5175425,Naphtha combustion consumption by freight transport,AR-R,SESCO,annual,kg,dd7d0e29-6d37-3e5e-8a7d-c9f98f1f13fc +2023,Rio Negro,II.1.1,27.035085,TJ,N2O,2.0,kg/TJ,54.07017,Naphtha combustion consumption by freight transport,AR-R,SESCO,annual,kg,f5eb3072-7b87-35d8-92c8-3d8693b84fd7 +2023,Salta,II.1.1,30.1532,TJ,CO2,73300.0,kg/TJ,2210229.56,Naphtha combustion consumption by freight transport,AR-A,SESCO,annual,kg,28c70248-778d-32cf-9b2c-18ec2fe4f690 +2023,Salta,II.1.1,30.1532,TJ,CH4,0.5,kg/TJ,15.0766,Naphtha combustion consumption by freight transport,AR-A,SESCO,annual,kg,f1a5c01f-deb9-37ee-8e02-3bfc19b03508 +2023,Salta,II.1.1,30.1532,TJ,N2O,2.0,kg/TJ,60.3064,Naphtha combustion consumption by freight transport,AR-A,SESCO,annual,kg,ddafd2b1-c06f-31fe-aa83-d924e88f12bf +2023,San Juan,II.1.1,16.10455,TJ,CO2,73300.0,kg/TJ,1180463.515,Naphtha combustion consumption by freight transport,AR-J,SESCO,annual,kg,adf23d79-e9b5-3be2-a4e3-beee28c6fa76 +2023,San Juan,II.1.1,16.10455,TJ,CH4,0.5,kg/TJ,8.052275,Naphtha combustion consumption by freight transport,AR-J,SESCO,annual,kg,4f9a915f-6851-3f6c-86bc-0891cced4c8e +2023,San Juan,II.1.1,16.10455,TJ,N2O,2.0,kg/TJ,32.2091,Naphtha combustion consumption by freight transport,AR-J,SESCO,annual,kg,5dbfcc4f-8515-3e52-b786-97e33e964233 +2023,San Luis,II.1.1,13.0207,TJ,CO2,73300.0,kg/TJ,954417.3099999999,Naphtha combustion consumption by freight transport,AR-D,SESCO,annual,kg,1be1b5ea-2f81-3dbf-8edf-7410f261ef35 +2023,San Luis,II.1.1,13.0207,TJ,CH4,0.5,kg/TJ,6.51035,Naphtha combustion consumption by freight transport,AR-D,SESCO,annual,kg,422a1fb7-05ed-3c78-91bf-ff00baa82181 +2023,San Luis,II.1.1,13.0207,TJ,N2O,2.0,kg/TJ,26.0414,Naphtha combustion consumption by freight transport,AR-D,SESCO,annual,kg,edc6ed3f-7ecc-3a5d-afe4-be114e0669c1 +2023,Santa Cruz,II.1.1,13.43188,TJ,CO2,73300.0,kg/TJ,984556.804,Naphtha combustion consumption by freight transport,AR-Z,SESCO,annual,kg,86e49885-0e7a-3334-b61d-13f3429eb438 +2023,Santa Cruz,II.1.1,13.43188,TJ,CH4,0.5,kg/TJ,6.71594,Naphtha combustion consumption by freight transport,AR-Z,SESCO,annual,kg,751eecbd-b7f2-30fa-af2b-86babdf52e07 +2023,Santa Cruz,II.1.1,13.43188,TJ,N2O,2.0,kg/TJ,26.86376,Naphtha combustion consumption by freight transport,AR-Z,SESCO,annual,kg,932ab429-0594-3f76-9dd9-3f3eef6de32e +2023,Santa Fe,II.1.1,125.58122499999999,TJ,CO2,73300.0,kg/TJ,9205103.792499999,Naphtha combustion consumption by freight transport,AR-S,SESCO,annual,kg,fe79aaf0-5eb8-35f5-af11-0554da440ab0 +2023,Santa Fe,II.1.1,125.58122499999999,TJ,CH4,0.5,kg/TJ,62.790612499999995,Naphtha combustion consumption by freight transport,AR-S,SESCO,annual,kg,5e137354-addf-3ec8-acfd-0bcf6870b05f +2023,Santa Fe,II.1.1,125.58122499999999,TJ,N2O,2.0,kg/TJ,251.16244999999998,Naphtha combustion consumption by freight transport,AR-S,SESCO,annual,kg,b5d93bb3-6cca-3d88-b56d-cadf8c582731 +2023,Santiago del Estero,II.1.1,10.553619999999999,TJ,CO2,73300.0,kg/TJ,773580.3459999999,Naphtha combustion consumption by freight transport,AR-G,SESCO,annual,kg,ac17e692-531b-3afa-9f1d-d3299806c042 +2023,Santiago del Estero,II.1.1,10.553619999999999,TJ,CH4,0.5,kg/TJ,5.276809999999999,Naphtha combustion consumption by freight transport,AR-G,SESCO,annual,kg,f2e6408f-3326-3786-b8f8-687dcbaa2d1b +2023,Santiago del Estero,II.1.1,10.553619999999999,TJ,N2O,2.0,kg/TJ,21.107239999999997,Naphtha combustion consumption by freight transport,AR-G,SESCO,annual,kg,2fa50200-f18e-3941-a973-4d63306c2e02 +2023,Tierra del Fuego,II.1.1,10.690679999999999,TJ,CO2,73300.0,kg/TJ,783626.8439999999,Naphtha combustion consumption by freight transport,AR-V,SESCO,annual,kg,467216e6-930c-3ad0-8129-4b52c0e7320e +2023,Tierra del Fuego,II.1.1,10.690679999999999,TJ,CH4,0.5,kg/TJ,5.345339999999999,Naphtha combustion consumption by freight transport,AR-V,SESCO,annual,kg,925596e5-6592-3129-ae69-a762a8981756 +2023,Tierra del Fuego,II.1.1,10.690679999999999,TJ,N2O,2.0,kg/TJ,21.381359999999997,Naphtha combustion consumption by freight transport,AR-V,SESCO,annual,kg,1a2d8b64-a0df-314c-bc16-9efffe545652 +2023,Tucuman,II.1.1,37.828559999999996,TJ,CO2,73300.0,kg/TJ,2772833.448,Naphtha combustion consumption by freight transport,AR-T,SESCO,annual,kg,5b3ee9fd-bb02-369f-b472-11a40c55687c +2023,Tucuman,II.1.1,37.828559999999996,TJ,CH4,0.5,kg/TJ,18.914279999999998,Naphtha combustion consumption by freight transport,AR-T,SESCO,annual,kg,fb5b3284-edca-3a15-ace5-038aad18f1a0 +2023,Tucuman,II.1.1,37.828559999999996,TJ,N2O,2.0,kg/TJ,75.65711999999999,Naphtha combustion consumption by freight transport,AR-T,SESCO,annual,kg,64b52cb1-88f8-31a2-bd3e-def56b21f32a +2023,Buenos Aires,II.1.1,804.0967549999999,TJ,CO2,73300.0,kg/TJ,58940292.141499996,Naphtha combustion consumption by freight transport,AR-B,SESCO,annual,kg,5a6c9465-52bd-388a-b3b0-e27aeb7ad78a +2023,Buenos Aires,II.1.1,804.0967549999999,TJ,CH4,0.5,kg/TJ,402.04837749999996,Naphtha combustion consumption by freight transport,AR-B,SESCO,annual,kg,6ccc7f36-0373-34d3-8be1-44a4e8cd12db +2023,Buenos Aires,II.1.1,804.0967549999999,TJ,N2O,2.0,kg/TJ,1608.1935099999998,Naphtha combustion consumption by freight transport,AR-B,SESCO,annual,kg,a9347eed-204b-3fe4-8067-fffa69406139 +2023,Capital Federal,II.1.1,128.90493,TJ,CO2,73300.0,kg/TJ,9448731.369,Naphtha combustion consumption by freight transport,AR-C,SESCO,annual,kg,cf09f67f-5e08-3370-bf48-c9b37393866a +2023,Capital Federal,II.1.1,128.90493,TJ,CH4,0.5,kg/TJ,64.452465,Naphtha combustion consumption by freight transport,AR-C,SESCO,annual,kg,3dd55cfb-4874-3e33-8028-783854975a1c +2023,Capital Federal,II.1.1,128.90493,TJ,N2O,2.0,kg/TJ,257.80986,Naphtha combustion consumption by freight transport,AR-C,SESCO,annual,kg,e6f9cd6d-d67a-312f-8244-c4f3458714cb +2023,Catamarca,II.1.1,2.5013449999999997,TJ,CO2,73300.0,kg/TJ,183348.58849999998,Naphtha combustion consumption by freight transport,AR-K,SESCO,annual,kg,179e13e2-252b-3123-82ed-89d8b058a59c +2023,Catamarca,II.1.1,2.5013449999999997,TJ,CH4,0.5,kg/TJ,1.2506724999999999,Naphtha combustion consumption by freight transport,AR-K,SESCO,annual,kg,8f62c34e-cd9f-3b50-9745-c7db38cfab80 +2023,Catamarca,II.1.1,2.5013449999999997,TJ,N2O,2.0,kg/TJ,5.002689999999999,Naphtha combustion consumption by freight transport,AR-K,SESCO,annual,kg,e239c41f-2405-3823-baa9-9fd7f499c248 +2023,Chaco,II.1.1,17.920595,TJ,CO2,73300.0,kg/TJ,1313579.6135,Naphtha combustion consumption by freight transport,AR-H,SESCO,annual,kg,59657944-64db-3162-8839-b3f4500da067 +2023,Chaco,II.1.1,17.920595,TJ,CH4,0.5,kg/TJ,8.9602975,Naphtha combustion consumption by freight transport,AR-H,SESCO,annual,kg,4941ca2b-4061-3e5b-9ccc-6f5ebf7c9ffa +2023,Chaco,II.1.1,17.920595,TJ,N2O,2.0,kg/TJ,35.84119,Naphtha combustion consumption by freight transport,AR-H,SESCO,annual,kg,125beb8a-2f98-3433-a4ff-46e111eba934 +2023,Chubut,II.1.1,17.440884999999998,TJ,CO2,73300.0,kg/TJ,1278416.8705,Naphtha combustion consumption by freight transport,AR-U,SESCO,annual,kg,ae8c0729-96d2-3ead-a129-cbdd38713198 +2023,Chubut,II.1.1,17.440884999999998,TJ,CH4,0.5,kg/TJ,8.720442499999999,Naphtha combustion consumption by freight transport,AR-U,SESCO,annual,kg,e756d243-2edd-31bf-8b5c-0628eba79bd3 +2023,Chubut,II.1.1,17.440884999999998,TJ,N2O,2.0,kg/TJ,34.881769999999996,Naphtha combustion consumption by freight transport,AR-U,SESCO,annual,kg,a9d282bc-619e-3f12-a75f-8a2b8ca28f39 +2023,Corrientes,II.1.1,23.09461,TJ,CO2,73300.0,kg/TJ,1692834.913,Naphtha combustion consumption by freight transport,AR-W,SESCO,annual,kg,b950e0f8-60a5-3b08-bfa9-bae76be3bfdc +2023,Corrientes,II.1.1,23.09461,TJ,CH4,0.5,kg/TJ,11.547305,Naphtha combustion consumption by freight transport,AR-W,SESCO,annual,kg,0da0dcdf-d083-3e61-aab6-8d001c98f5e1 +2023,Corrientes,II.1.1,23.09461,TJ,N2O,2.0,kg/TJ,46.18922,Naphtha combustion consumption by freight transport,AR-W,SESCO,annual,kg,42ff44b5-56e3-32d8-87f7-8721efa87f17 +2023,Córdoba,II.1.1,118.728225,TJ,CO2,73300.0,kg/TJ,8702778.8925,Naphtha combustion consumption by freight transport,AR-X,SESCO,annual,kg,49854a3a-70b7-38ba-95dd-fe567d23632a +2023,Córdoba,II.1.1,118.728225,TJ,CH4,0.5,kg/TJ,59.3641125,Naphtha combustion consumption by freight transport,AR-X,SESCO,annual,kg,569a6eaa-a368-3807-8b09-07f7efa26515 +2023,Córdoba,II.1.1,118.728225,TJ,N2O,2.0,kg/TJ,237.45645,Naphtha combustion consumption by freight transport,AR-X,SESCO,annual,kg,7408f6ef-aad2-39b7-88d4-b832ccb29e8e +2023,Entre Rios,II.1.1,43.65361,TJ,CO2,73300.0,kg/TJ,3199809.613,Naphtha combustion consumption by freight transport,AR-E,SESCO,annual,kg,6b6cd652-1ca9-35b8-be18-3890209c5085 +2023,Entre Rios,II.1.1,43.65361,TJ,CH4,0.5,kg/TJ,21.826805,Naphtha combustion consumption by freight transport,AR-E,SESCO,annual,kg,4f0ace4f-1dfe-36a2-9af3-222ae844148b +2023,Entre Rios,II.1.1,43.65361,TJ,N2O,2.0,kg/TJ,87.30722,Naphtha combustion consumption by freight transport,AR-E,SESCO,annual,kg,408a9d7f-87f6-3bb8-9534-52662806568f +2023,Formosa,II.1.1,3.8034149999999998,TJ,CO2,73300.0,kg/TJ,278790.3195,Naphtha combustion consumption by freight transport,AR-P,SESCO,annual,kg,786a0a9e-9321-3e54-b581-f4e2d297f4db +2023,Formosa,II.1.1,3.8034149999999998,TJ,CH4,0.5,kg/TJ,1.9017074999999999,Naphtha combustion consumption by freight transport,AR-P,SESCO,annual,kg,dab57ab0-4f3c-3a65-95d9-40edd0638a30 +2023,Formosa,II.1.1,3.8034149999999998,TJ,N2O,2.0,kg/TJ,7.6068299999999995,Naphtha combustion consumption by freight transport,AR-P,SESCO,annual,kg,c019d368-4df2-3cdc-af2c-0d7d62aee169 +2023,Jujuy,II.1.1,4.5915099999999995,TJ,CO2,73300.0,kg/TJ,336557.68299999996,Naphtha combustion consumption by freight transport,AR-Y,SESCO,annual,kg,7a89635c-0970-38eb-a947-38dd6d497bdc +2023,Jujuy,II.1.1,4.5915099999999995,TJ,CH4,0.5,kg/TJ,2.2957549999999998,Naphtha combustion consumption by freight transport,AR-Y,SESCO,annual,kg,f2b8f3ae-7d42-3889-8b68-bb27d0ae4691 +2023,Jujuy,II.1.1,4.5915099999999995,TJ,N2O,2.0,kg/TJ,9.183019999999999,Naphtha combustion consumption by freight transport,AR-Y,SESCO,annual,kg,97088566-c9dc-36c5-9830-fbeaee34f9ab +2023,La Pampa,II.1.1,15.727635,TJ,CO2,73300.0,kg/TJ,1152835.6454999999,Naphtha combustion consumption by freight transport,AR-L,SESCO,annual,kg,9e4496bf-ea5a-3df0-b2fb-fa76a92858c0 +2023,La Pampa,II.1.1,15.727635,TJ,CH4,0.5,kg/TJ,7.8638175,Naphtha combustion consumption by freight transport,AR-L,SESCO,annual,kg,2e0fc790-0384-332a-b6d1-f358499cd02c +2023,La Pampa,II.1.1,15.727635,TJ,N2O,2.0,kg/TJ,31.45527,Naphtha combustion consumption by freight transport,AR-L,SESCO,annual,kg,7e354fc0-3825-3155-94ed-5bdc7ae6cce7 +2023,La Rioja,II.1.1,6.681674999999999,TJ,CO2,73300.0,kg/TJ,489766.77749999997,Naphtha combustion consumption by freight transport,AR-F,SESCO,annual,kg,5e683c28-d67d-3e96-9346-3185bad0963e +2023,La Rioja,II.1.1,6.681674999999999,TJ,CH4,0.5,kg/TJ,3.3408374999999997,Naphtha combustion consumption by freight transport,AR-F,SESCO,annual,kg,a3503182-9e9f-3dcf-a349-329087cd9e3f +2023,La Rioja,II.1.1,6.681674999999999,TJ,N2O,2.0,kg/TJ,13.363349999999999,Naphtha combustion consumption by freight transport,AR-F,SESCO,annual,kg,7e411ca4-29b9-33f1-a7fc-92fbfc0dfa9f +2023,Mendoza,II.1.1,69.592215,TJ,CO2,73300.0,kg/TJ,5101109.359499999,Naphtha combustion consumption by freight transport,AR-M,SESCO,annual,kg,fc59ba2c-7c9b-31c4-84a0-621e2f46728e +2023,Mendoza,II.1.1,69.592215,TJ,CH4,0.5,kg/TJ,34.7961075,Naphtha combustion consumption by freight transport,AR-M,SESCO,annual,kg,18fe1cc3-4a68-3cfe-b9ec-028d0e696754 +2023,Mendoza,II.1.1,69.592215,TJ,N2O,2.0,kg/TJ,139.18443,Naphtha combustion consumption by freight transport,AR-M,SESCO,annual,kg,43bbda20-db88-3ffd-8a8e-709f1d709131 +2023,Misiones,II.1.1,18.742955,TJ,CO2,73300.0,kg/TJ,1373858.6014999999,Naphtha combustion consumption by freight transport,AR-N,SESCO,annual,kg,653dce69-8a0c-37ab-b3a6-bd14844b1773 +2023,Misiones,II.1.1,18.742955,TJ,CH4,0.5,kg/TJ,9.3714775,Naphtha combustion consumption by freight transport,AR-N,SESCO,annual,kg,72483d79-f31e-315e-a807-17dbed9329e3 +2023,Misiones,II.1.1,18.742955,TJ,N2O,2.0,kg/TJ,37.48591,Naphtha combustion consumption by freight transport,AR-N,SESCO,annual,kg,21abaa77-fd5a-30ab-bd9e-9b3ecf7fa6fc +2023,Neuquén,II.1.1,46.908784999999995,TJ,CO2,73300.0,kg/TJ,3438413.9404999996,Naphtha combustion consumption by freight transport,AR-Q,SESCO,annual,kg,0b63f0d0-522d-32bd-b16b-37bab1c0e0c6 +2023,Neuquén,II.1.1,46.908784999999995,TJ,CH4,0.5,kg/TJ,23.454392499999997,Naphtha combustion consumption by freight transport,AR-Q,SESCO,annual,kg,914e3a01-5463-3797-a34c-5a48d6c6ddb0 +2023,Neuquén,II.1.1,46.908784999999995,TJ,N2O,2.0,kg/TJ,93.81756999999999,Naphtha combustion consumption by freight transport,AR-Q,SESCO,annual,kg,03f9643a-009b-33c3-9743-421a6f1e359f +2023,Rio Negro,II.1.1,34.74471,TJ,CO2,73300.0,kg/TJ,2546787.243,Naphtha combustion consumption by freight transport,AR-R,SESCO,annual,kg,24febfa7-b8f4-3615-8e36-d2853c8a3e52 +2023,Rio Negro,II.1.1,34.74471,TJ,CH4,0.5,kg/TJ,17.372355,Naphtha combustion consumption by freight transport,AR-R,SESCO,annual,kg,39ad55dd-4fc9-37ce-b74c-725e1dc5e8b0 +2023,Rio Negro,II.1.1,34.74471,TJ,N2O,2.0,kg/TJ,69.48942,Naphtha combustion consumption by freight transport,AR-R,SESCO,annual,kg,2c7f5e50-aada-387b-8896-e457b31fdfca +2023,Salta,II.1.1,25.527424999999997,TJ,CO2,73300.0,kg/TJ,1871160.2524999997,Naphtha combustion consumption by freight transport,AR-A,SESCO,annual,kg,a5c4c764-9b86-3e8b-9d0d-28302acd13e5 +2023,Salta,II.1.1,25.527424999999997,TJ,CH4,0.5,kg/TJ,12.763712499999999,Naphtha combustion consumption by freight transport,AR-A,SESCO,annual,kg,0c1385e1-066d-38c2-ba62-40e4c68a19bb +2023,Salta,II.1.1,25.527424999999997,TJ,N2O,2.0,kg/TJ,51.054849999999995,Naphtha combustion consumption by freight transport,AR-A,SESCO,annual,kg,367eb5e0-c560-3f37-b191-d07d3455eea9 +2023,San Juan,II.1.1,9.731259999999999,TJ,CO2,73300.0,kg/TJ,713301.3579999999,Naphtha combustion consumption by freight transport,AR-J,SESCO,annual,kg,1c436836-e391-3678-b6b1-f1ac09cdfe05 +2023,San Juan,II.1.1,9.731259999999999,TJ,CH4,0.5,kg/TJ,4.8656299999999995,Naphtha combustion consumption by freight transport,AR-J,SESCO,annual,kg,f45336fa-3dc3-320d-9dc0-a9afebfbc899 +2023,San Juan,II.1.1,9.731259999999999,TJ,N2O,2.0,kg/TJ,19.462519999999998,Naphtha combustion consumption by freight transport,AR-J,SESCO,annual,kg,4fb1b813-7b48-31c9-90e3-8deff178a0ef +2023,San Luis,II.1.1,10.245235,TJ,CO2,73300.0,kg/TJ,750975.7255,Naphtha combustion consumption by freight transport,AR-D,SESCO,annual,kg,2870a450-c352-3d08-8f8c-334f75924c23 +2023,San Luis,II.1.1,10.245235,TJ,CH4,0.5,kg/TJ,5.1226175,Naphtha combustion consumption by freight transport,AR-D,SESCO,annual,kg,182839b8-ae1a-3968-a67c-4d0bd699a3b3 +2023,San Luis,II.1.1,10.245235,TJ,N2O,2.0,kg/TJ,20.49047,Naphtha combustion consumption by freight transport,AR-D,SESCO,annual,kg,8f5087f4-db2a-33c5-865f-9b174c4ef97e +2023,Santa Cruz,II.1.1,6.37329,TJ,CO2,73300.0,kg/TJ,467162.157,Naphtha combustion consumption by freight transport,AR-Z,SESCO,annual,kg,6412b911-e0ca-3cf0-82c6-b480cb4a2429 +2023,Santa Cruz,II.1.1,6.37329,TJ,CH4,0.5,kg/TJ,3.186645,Naphtha combustion consumption by freight transport,AR-Z,SESCO,annual,kg,b49a5904-2b6c-331c-9e4b-84bb1a2c239a +2023,Santa Cruz,II.1.1,6.37329,TJ,N2O,2.0,kg/TJ,12.74658,Naphtha combustion consumption by freight transport,AR-Z,SESCO,annual,kg,a6640717-7588-3749-abf1-c06b0bc08e32 +2023,Santa Fe,II.1.1,124.07356499999999,TJ,CO2,73300.0,kg/TJ,9094592.314499998,Naphtha combustion consumption by freight transport,AR-S,SESCO,annual,kg,20ddc48a-e6d0-3d3d-9221-b78a520a28cd +2023,Santa Fe,II.1.1,124.07356499999999,TJ,CH4,0.5,kg/TJ,62.036782499999994,Naphtha combustion consumption by freight transport,AR-S,SESCO,annual,kg,2a6d7aa8-d8b7-360e-af58-934033a5f1f7 +2023,Santa Fe,II.1.1,124.07356499999999,TJ,N2O,2.0,kg/TJ,248.14712999999998,Naphtha combustion consumption by freight transport,AR-S,SESCO,annual,kg,e8f6e5f6-1a85-3114-9f59-fd6b5658abca +2023,Santiago del Estero,II.1.1,6.818734999999999,TJ,CO2,73300.0,kg/TJ,499813.27549999993,Naphtha combustion consumption by freight transport,AR-G,SESCO,annual,kg,b704e616-d3b9-3ed3-bf8a-91b622f6932b +2023,Santiago del Estero,II.1.1,6.818734999999999,TJ,CH4,0.5,kg/TJ,3.4093674999999997,Naphtha combustion consumption by freight transport,AR-G,SESCO,annual,kg,ca37d37e-6b04-397b-9c33-203d2d3842b7 +2023,Santiago del Estero,II.1.1,6.818734999999999,TJ,N2O,2.0,kg/TJ,13.637469999999999,Naphtha combustion consumption by freight transport,AR-G,SESCO,annual,kg,ca87903b-e97f-340e-8ed7-dcb587e80971 +2023,Tierra del Fuego,II.1.1,4.420185,TJ,CO2,73300.0,kg/TJ,323999.5605,Naphtha combustion consumption by freight transport,AR-V,SESCO,annual,kg,3e616596-210c-3dda-a39d-6dff2ef23f19 +2023,Tierra del Fuego,II.1.1,4.420185,TJ,CH4,0.5,kg/TJ,2.2100925,Naphtha combustion consumption by freight transport,AR-V,SESCO,annual,kg,e1ce17fb-3c4b-3b5d-a04e-51f2dbd250c5 +2023,Tierra del Fuego,II.1.1,4.420185,TJ,N2O,2.0,kg/TJ,8.84037,Naphtha combustion consumption by freight transport,AR-V,SESCO,annual,kg,12093b4a-3ed3-3144-8859-535483c439b0 +2023,Tucuman,II.1.1,21.004445,TJ,CO2,73300.0,kg/TJ,1539625.8185,Naphtha combustion consumption by freight transport,AR-T,SESCO,annual,kg,8bfe4099-69ba-395c-80ca-509a9c39690a +2023,Tucuman,II.1.1,21.004445,TJ,CH4,0.5,kg/TJ,10.5022225,Naphtha combustion consumption by freight transport,AR-T,SESCO,annual,kg,3c4768bc-4096-39ac-b98d-574654215047 +2023,Tucuman,II.1.1,21.004445,TJ,N2O,2.0,kg/TJ,42.00889,Naphtha combustion consumption by freight transport,AR-T,SESCO,annual,kg,b0a3a2e3-e7d3-34d1-8d13-e9732c17609d +2023,Buenos Aires,II.1.1,5703.4202399999995,TJ,CO2,74100.0,kg/TJ,422623439.784,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,f80543b9-d0a6-308b-80af-f2b9e31e7246 +2023,Buenos Aires,II.1.1,5703.4202399999995,TJ,CH4,3.9,kg/TJ,22243.338935999996,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,25ae312c-99e1-3966-9aeb-4d6a44ac6172 +2023,Buenos Aires,II.1.1,5703.4202399999995,TJ,N2O,3.9,kg/TJ,22243.338935999996,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,25ae312c-99e1-3966-9aeb-4d6a44ac6172 +2023,Capital Federal,II.1.1,1664.48184,TJ,CO2,74100.0,kg/TJ,123338104.344,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,be0315ff-0c0e-32ed-8017-0e515ffc96f0 +2023,Capital Federal,II.1.1,1664.48184,TJ,CH4,3.9,kg/TJ,6491.479176,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,4b1bd794-2913-3cd1-ad9c-dd513f59e0b2 +2023,Capital Federal,II.1.1,1664.48184,TJ,N2O,3.9,kg/TJ,6491.479176,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,4b1bd794-2913-3cd1-ad9c-dd513f59e0b2 +2023,Catamarca,II.1.1,70.14504,TJ,CO2,74100.0,kg/TJ,5197747.464,Gas Oil combustion consumption by public passenger transport,AR-K,SESCO,annual,kg,06504179-0741-3648-803b-436c501dbc6e +2023,Catamarca,II.1.1,70.14504,TJ,CH4,3.9,kg/TJ,273.565656,Gas Oil combustion consumption by public passenger transport,AR-K,SESCO,annual,kg,6995b8db-999e-32db-b580-a5d6b798aaba +2023,Catamarca,II.1.1,70.14504,TJ,N2O,3.9,kg/TJ,273.565656,Gas Oil combustion consumption by public passenger transport,AR-K,SESCO,annual,kg,6995b8db-999e-32db-b580-a5d6b798aaba +2023,Chaco,II.1.1,83.00376,TJ,CO2,74100.0,kg/TJ,6150578.616,Gas Oil combustion consumption by public passenger transport,AR-H,SESCO,annual,kg,4e4a5008-8663-3e7c-ba0a-f563a75c8a7b +2023,Chaco,II.1.1,83.00376,TJ,CH4,3.9,kg/TJ,323.71466399999997,Gas Oil combustion consumption by public passenger transport,AR-H,SESCO,annual,kg,482cb67e-715e-3362-ae57-f1af7ce213ea +2023,Chaco,II.1.1,83.00376,TJ,N2O,3.9,kg/TJ,323.71466399999997,Gas Oil combustion consumption by public passenger transport,AR-H,SESCO,annual,kg,482cb67e-715e-3362-ae57-f1af7ce213ea +2023,Chubut,II.1.1,5.49024,TJ,CO2,74100.0,kg/TJ,406826.784,Gas Oil combustion consumption by public passenger transport,AR-U,SESCO,annual,kg,620708a5-a7c1-359f-9e18-172479b3c3df +2023,Chubut,II.1.1,5.49024,TJ,CH4,3.9,kg/TJ,21.411936,Gas Oil combustion consumption by public passenger transport,AR-U,SESCO,annual,kg,a51eca68-bf6e-3dd5-8384-c31674e8405c +2023,Chubut,II.1.1,5.49024,TJ,N2O,3.9,kg/TJ,21.411936,Gas Oil combustion consumption by public passenger transport,AR-U,SESCO,annual,kg,a51eca68-bf6e-3dd5-8384-c31674e8405c +2023,Corrientes,II.1.1,124.32504,TJ,CO2,74100.0,kg/TJ,9212485.464,Gas Oil combustion consumption by public passenger transport,AR-W,SESCO,annual,kg,63d99530-68aa-3973-a7fd-f8ebf76e19e3 +2023,Corrientes,II.1.1,124.32504,TJ,CH4,3.9,kg/TJ,484.867656,Gas Oil combustion consumption by public passenger transport,AR-W,SESCO,annual,kg,0c0c65c6-1eb0-3f3f-8f67-7716c94790d2 +2023,Corrientes,II.1.1,124.32504,TJ,N2O,3.9,kg/TJ,484.867656,Gas Oil combustion consumption by public passenger transport,AR-W,SESCO,annual,kg,0c0c65c6-1eb0-3f3f-8f67-7716c94790d2 +2023,Córdoba,II.1.1,782.86488,TJ,CO2,74100.0,kg/TJ,58010287.607999995,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,d24b63d9-8b8f-3132-a535-2c543f13ffae +2023,Córdoba,II.1.1,782.86488,TJ,CH4,3.9,kg/TJ,3053.1730319999997,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,efcf033d-e4e0-3a8b-af60-56f0fc1cee73 +2023,Córdoba,II.1.1,782.86488,TJ,N2O,3.9,kg/TJ,3053.1730319999997,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,efcf033d-e4e0-3a8b-af60-56f0fc1cee73 +2023,Entre Rios,II.1.1,187.39056,TJ,CO2,74100.0,kg/TJ,13885640.496,Gas Oil combustion consumption by public passenger transport,AR-E,SESCO,annual,kg,7aea0725-cd72-312d-a976-41539f17f7ec +2023,Entre Rios,II.1.1,187.39056,TJ,CH4,3.9,kg/TJ,730.823184,Gas Oil combustion consumption by public passenger transport,AR-E,SESCO,annual,kg,61fc4724-4a37-342b-8262-083863c8fa61 +2023,Entre Rios,II.1.1,187.39056,TJ,N2O,3.9,kg/TJ,730.823184,Gas Oil combustion consumption by public passenger transport,AR-E,SESCO,annual,kg,61fc4724-4a37-342b-8262-083863c8fa61 +2023,Formosa,II.1.1,37.96212,TJ,CO2,74100.0,kg/TJ,2812993.0919999997,Gas Oil combustion consumption by public passenger transport,AR-P,SESCO,annual,kg,7493a0e8-ee10-3982-beef-eed0b3b08a90 +2023,Formosa,II.1.1,37.96212,TJ,CH4,3.9,kg/TJ,148.052268,Gas Oil combustion consumption by public passenger transport,AR-P,SESCO,annual,kg,79d13e8a-d8e8-3584-8e3d-4a8c781c227a +2023,Formosa,II.1.1,37.96212,TJ,N2O,3.9,kg/TJ,148.052268,Gas Oil combustion consumption by public passenger transport,AR-P,SESCO,annual,kg,79d13e8a-d8e8-3584-8e3d-4a8c781c227a +2023,Jujuy,II.1.1,198.51551999999998,TJ,CO2,74100.0,kg/TJ,14710000.031999998,Gas Oil combustion consumption by public passenger transport,AR-Y,SESCO,annual,kg,37c926f7-1a36-3c5c-aa22-ad1725ae7b83 +2023,Jujuy,II.1.1,198.51551999999998,TJ,CH4,3.9,kg/TJ,774.210528,Gas Oil combustion consumption by public passenger transport,AR-Y,SESCO,annual,kg,3884ce6c-e54a-3b45-a524-c59f89b0cc24 +2023,Jujuy,II.1.1,198.51551999999998,TJ,N2O,3.9,kg/TJ,774.210528,Gas Oil combustion consumption by public passenger transport,AR-Y,SESCO,annual,kg,3884ce6c-e54a-3b45-a524-c59f89b0cc24 +2023,Mendoza,II.1.1,1214.0654399999999,TJ,CO2,74100.0,kg/TJ,89962249.10399999,Gas Oil combustion consumption by public passenger transport,AR-M,SESCO,annual,kg,ea15720d-33ba-3f0b-9d95-5c2c9e04887d +2023,Mendoza,II.1.1,1214.0654399999999,TJ,CH4,3.9,kg/TJ,4734.855215999999,Gas Oil combustion consumption by public passenger transport,AR-M,SESCO,annual,kg,98a3d296-5538-3f2f-b374-3ae95a36fc60 +2023,Mendoza,II.1.1,1214.0654399999999,TJ,N2O,3.9,kg/TJ,4734.855215999999,Gas Oil combustion consumption by public passenger transport,AR-M,SESCO,annual,kg,98a3d296-5538-3f2f-b374-3ae95a36fc60 +2023,Misiones,II.1.1,650.59344,TJ,CO2,74100.0,kg/TJ,48208973.904,Gas Oil combustion consumption by public passenger transport,AR-N,SESCO,annual,kg,6b79c211-071e-3a7d-bc57-2a09ad53d188 +2023,Misiones,II.1.1,650.59344,TJ,CH4,3.9,kg/TJ,2537.3144159999997,Gas Oil combustion consumption by public passenger transport,AR-N,SESCO,annual,kg,025f8972-a315-3834-ae7a-49f86fbfa440 +2023,Misiones,II.1.1,650.59344,TJ,N2O,3.9,kg/TJ,2537.3144159999997,Gas Oil combustion consumption by public passenger transport,AR-N,SESCO,annual,kg,025f8972-a315-3834-ae7a-49f86fbfa440 +2023,Neuquén,II.1.1,21.708119999999997,TJ,CO2,74100.0,kg/TJ,1608571.6919999998,Gas Oil combustion consumption by public passenger transport,AR-Q,SESCO,annual,kg,e0b1a1e6-eb51-3a8c-94e0-d14a487087cc +2023,Neuquén,II.1.1,21.708119999999997,TJ,CH4,3.9,kg/TJ,84.66166799999999,Gas Oil combustion consumption by public passenger transport,AR-Q,SESCO,annual,kg,5354aecd-e423-38e1-8855-db8d6d085e67 +2023,Neuquén,II.1.1,21.708119999999997,TJ,N2O,3.9,kg/TJ,84.66166799999999,Gas Oil combustion consumption by public passenger transport,AR-Q,SESCO,annual,kg,5354aecd-e423-38e1-8855-db8d6d085e67 +2023,Rio Negro,II.1.1,28.1736,TJ,CO2,74100.0,kg/TJ,2087663.76,Gas Oil combustion consumption by public passenger transport,AR-R,SESCO,annual,kg,f670640a-89e7-3f91-9d62-aa6d2e3d2f11 +2023,Rio Negro,II.1.1,28.1736,TJ,CH4,3.9,kg/TJ,109.87704,Gas Oil combustion consumption by public passenger transport,AR-R,SESCO,annual,kg,8e635a25-77e3-3cd2-b016-625148d21776 +2023,Rio Negro,II.1.1,28.1736,TJ,N2O,3.9,kg/TJ,109.87704,Gas Oil combustion consumption by public passenger transport,AR-R,SESCO,annual,kg,8e635a25-77e3-3cd2-b016-625148d21776 +2023,Salta,II.1.1,287.37072,TJ,CO2,74100.0,kg/TJ,21294170.352,Gas Oil combustion consumption by public passenger transport,AR-A,SESCO,annual,kg,6ff70493-81ef-315d-8c47-786d49ab8058 +2023,Salta,II.1.1,287.37072,TJ,CH4,3.9,kg/TJ,1120.745808,Gas Oil combustion consumption by public passenger transport,AR-A,SESCO,annual,kg,76e0a0e5-1f79-3137-b906-fff3d492c550 +2023,Salta,II.1.1,287.37072,TJ,N2O,3.9,kg/TJ,1120.745808,Gas Oil combustion consumption by public passenger transport,AR-A,SESCO,annual,kg,76e0a0e5-1f79-3137-b906-fff3d492c550 +2023,San Juan,II.1.1,3.0702,TJ,CO2,74100.0,kg/TJ,227501.81999999998,Gas Oil combustion consumption by public passenger transport,AR-J,SESCO,annual,kg,9b7b353a-68e3-3c1d-b14a-d6ed4224e523 +2023,San Juan,II.1.1,3.0702,TJ,CH4,3.9,kg/TJ,11.97378,Gas Oil combustion consumption by public passenger transport,AR-J,SESCO,annual,kg,026ca2c4-03ca-30e4-a19a-2badf58d9a8d +2023,San Juan,II.1.1,3.0702,TJ,N2O,3.9,kg/TJ,11.97378,Gas Oil combustion consumption by public passenger transport,AR-J,SESCO,annual,kg,026ca2c4-03ca-30e4-a19a-2badf58d9a8d +2023,Santa Fe,II.1.1,419.49768,TJ,CO2,74100.0,kg/TJ,31084778.088,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,209148d4-43a0-3aa0-8c2b-98d728d0ea6a +2023,Santa Fe,II.1.1,419.49768,TJ,CH4,3.9,kg/TJ,1636.040952,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,b8be8dc4-17e1-346e-a2c3-f67265b359c4 +2023,Santa Fe,II.1.1,419.49768,TJ,N2O,3.9,kg/TJ,1636.040952,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,b8be8dc4-17e1-346e-a2c3-f67265b359c4 +2023,Tierra del Fuego,II.1.1,9.53568,TJ,CO2,74100.0,kg/TJ,706593.8879999999,Gas Oil combustion consumption by public passenger transport,AR-V,SESCO,annual,kg,08cd1f88-5341-3a47-9736-4743d9c979cd +2023,Tierra del Fuego,II.1.1,9.53568,TJ,CH4,3.9,kg/TJ,37.18915199999999,Gas Oil combustion consumption by public passenger transport,AR-V,SESCO,annual,kg,c9cdc773-abc1-3803-bda7-b84ca150abf0 +2023,Tierra del Fuego,II.1.1,9.53568,TJ,N2O,3.9,kg/TJ,37.18915199999999,Gas Oil combustion consumption by public passenger transport,AR-V,SESCO,annual,kg,c9cdc773-abc1-3803-bda7-b84ca150abf0 +2023,Tucuman,II.1.1,47.3172,TJ,CO2,74100.0,kg/TJ,3506204.52,Gas Oil combustion consumption by public passenger transport,AR-T,SESCO,annual,kg,8bcef5b6-91d4-3c35-a0cf-8f580115303f +2023,Tucuman,II.1.1,47.3172,TJ,CH4,3.9,kg/TJ,184.53708,Gas Oil combustion consumption by public passenger transport,AR-T,SESCO,annual,kg,5f287ff0-16a9-3b29-b797-f84519f32ee3 +2023,Tucuman,II.1.1,47.3172,TJ,N2O,3.9,kg/TJ,184.53708,Gas Oil combustion consumption by public passenger transport,AR-T,SESCO,annual,kg,5f287ff0-16a9-3b29-b797-f84519f32ee3 +2023,Buenos Aires,II.1.1,5114.8809599999995,TJ,CO2,74100.0,kg/TJ,379012679.136,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,fe15e951-61a2-3baf-844a-5d09f638fe5e +2023,Buenos Aires,II.1.1,5114.8809599999995,TJ,CH4,3.9,kg/TJ,19948.035743999997,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,9f34c8d7-809f-35ce-b918-f0b63fd69e4e +2023,Buenos Aires,II.1.1,5114.8809599999995,TJ,N2O,3.9,kg/TJ,19948.035743999997,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,9f34c8d7-809f-35ce-b918-f0b63fd69e4e +2023,Capital Federal,II.1.1,1080.1686,TJ,CO2,74100.0,kg/TJ,80040493.25999999,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,507278d1-2a4b-39e3-8ab2-a0de75923cc9 +2023,Capital Federal,II.1.1,1080.1686,TJ,CH4,3.9,kg/TJ,4212.65754,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,4931be1f-1f31-3330-800e-e7988ab36316 +2023,Capital Federal,II.1.1,1080.1686,TJ,N2O,3.9,kg/TJ,4212.65754,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,4931be1f-1f31-3330-800e-e7988ab36316 +2023,Chaco,II.1.1,32.1468,TJ,CO2,74100.0,kg/TJ,2382077.88,Gas Oil combustion consumption by public passenger transport,AR-H,SESCO,annual,kg,6010d215-1254-3ce1-ac5b-7c229ce54624 +2023,Chaco,II.1.1,32.1468,TJ,CH4,3.9,kg/TJ,125.37252,Gas Oil combustion consumption by public passenger transport,AR-H,SESCO,annual,kg,b90df145-15a6-3931-a410-5026ec5a7af9 +2023,Chaco,II.1.1,32.1468,TJ,N2O,3.9,kg/TJ,125.37252,Gas Oil combustion consumption by public passenger transport,AR-H,SESCO,annual,kg,b90df145-15a6-3931-a410-5026ec5a7af9 +2023,Chubut,II.1.1,5.418,TJ,CO2,74100.0,kg/TJ,401473.8,Gas Oil combustion consumption by public passenger transport,AR-U,SESCO,annual,kg,6399b07b-8513-32ff-88cf-62a9680e39dc +2023,Chubut,II.1.1,5.418,TJ,CH4,3.9,kg/TJ,21.1302,Gas Oil combustion consumption by public passenger transport,AR-U,SESCO,annual,kg,7eb87fd9-c8d4-3f88-b8e0-cdd1e7650121 +2023,Chubut,II.1.1,5.418,TJ,N2O,3.9,kg/TJ,21.1302,Gas Oil combustion consumption by public passenger transport,AR-U,SESCO,annual,kg,7eb87fd9-c8d4-3f88-b8e0-cdd1e7650121 +2023,Corrientes,II.1.1,55.371959999999994,TJ,CO2,74100.0,kg/TJ,4103062.2359999996,Gas Oil combustion consumption by public passenger transport,AR-W,SESCO,annual,kg,9143c494-bc71-369b-aff9-70416be8bab7 +2023,Corrientes,II.1.1,55.371959999999994,TJ,CH4,3.9,kg/TJ,215.95064399999998,Gas Oil combustion consumption by public passenger transport,AR-W,SESCO,annual,kg,2ae79a36-e284-343a-8881-5a857caae3e6 +2023,Corrientes,II.1.1,55.371959999999994,TJ,N2O,3.9,kg/TJ,215.95064399999998,Gas Oil combustion consumption by public passenger transport,AR-W,SESCO,annual,kg,2ae79a36-e284-343a-8881-5a857caae3e6 +2023,Córdoba,II.1.1,237.74184,TJ,CO2,74100.0,kg/TJ,17616670.344,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,76e555b7-6d19-3c7a-9b93-8b0ab2be6bf4 +2023,Córdoba,II.1.1,237.74184,TJ,CH4,3.9,kg/TJ,927.193176,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,2e216069-8371-3d2a-b811-deb92a91c12d +2023,Córdoba,II.1.1,237.74184,TJ,N2O,3.9,kg/TJ,927.193176,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,2e216069-8371-3d2a-b811-deb92a91c12d +2023,Entre Rios,II.1.1,34.89192,TJ,CO2,74100.0,kg/TJ,2585491.272,Gas Oil combustion consumption by public passenger transport,AR-E,SESCO,annual,kg,b1c45e4b-705f-34a0-af3b-d4b86566ad63 +2023,Entre Rios,II.1.1,34.89192,TJ,CH4,3.9,kg/TJ,136.078488,Gas Oil combustion consumption by public passenger transport,AR-E,SESCO,annual,kg,1a86c305-a031-314d-b83f-0119b8983b2f +2023,Entre Rios,II.1.1,34.89192,TJ,N2O,3.9,kg/TJ,136.078488,Gas Oil combustion consumption by public passenger transport,AR-E,SESCO,annual,kg,1a86c305-a031-314d-b83f-0119b8983b2f +2023,Mendoza,II.1.1,43.01892,TJ,CO2,74100.0,kg/TJ,3187701.972,Gas Oil combustion consumption by public passenger transport,AR-M,SESCO,annual,kg,34210070-4f25-3191-a738-abd91f533e93 +2023,Mendoza,II.1.1,43.01892,TJ,CH4,3.9,kg/TJ,167.773788,Gas Oil combustion consumption by public passenger transport,AR-M,SESCO,annual,kg,4277ca58-a60a-3fc9-854c-618f327ada18 +2023,Mendoza,II.1.1,43.01892,TJ,N2O,3.9,kg/TJ,167.773788,Gas Oil combustion consumption by public passenger transport,AR-M,SESCO,annual,kg,4277ca58-a60a-3fc9-854c-618f327ada18 +2023,Misiones,II.1.1,10.25808,TJ,CO2,74100.0,kg/TJ,760123.728,Gas Oil combustion consumption by public passenger transport,AR-N,SESCO,annual,kg,4f7bcde3-f7e1-3619-93f2-8ec8159a1ee2 +2023,Misiones,II.1.1,10.25808,TJ,CH4,3.9,kg/TJ,40.006512,Gas Oil combustion consumption by public passenger transport,AR-N,SESCO,annual,kg,c94ed515-b424-38de-89a3-8026054396c9 +2023,Misiones,II.1.1,10.25808,TJ,N2O,3.9,kg/TJ,40.006512,Gas Oil combustion consumption by public passenger transport,AR-N,SESCO,annual,kg,c94ed515-b424-38de-89a3-8026054396c9 +2023,Neuquén,II.1.1,15.459359999999998,TJ,CO2,74100.0,kg/TJ,1145538.576,Gas Oil combustion consumption by public passenger transport,AR-Q,SESCO,annual,kg,96d2d874-25cf-3e1c-8b8a-0397a4be89c7 +2023,Neuquén,II.1.1,15.459359999999998,TJ,CH4,3.9,kg/TJ,60.29150399999999,Gas Oil combustion consumption by public passenger transport,AR-Q,SESCO,annual,kg,2df8523a-d410-3925-9d65-a2d70d09aacf +2023,Neuquén,II.1.1,15.459359999999998,TJ,N2O,3.9,kg/TJ,60.29150399999999,Gas Oil combustion consumption by public passenger transport,AR-Q,SESCO,annual,kg,2df8523a-d410-3925-9d65-a2d70d09aacf +2023,Rio Negro,II.1.1,76.28544,TJ,CO2,74100.0,kg/TJ,5652751.103999999,Gas Oil combustion consumption by public passenger transport,AR-R,SESCO,annual,kg,c62a2c0e-1126-3d59-b16f-3ddff8d52c83 +2023,Rio Negro,II.1.1,76.28544,TJ,CH4,3.9,kg/TJ,297.51321599999994,Gas Oil combustion consumption by public passenger transport,AR-R,SESCO,annual,kg,17ebeb4b-49ce-3a11-b765-738791233c19 +2023,Rio Negro,II.1.1,76.28544,TJ,N2O,3.9,kg/TJ,297.51321599999994,Gas Oil combustion consumption by public passenger transport,AR-R,SESCO,annual,kg,17ebeb4b-49ce-3a11-b765-738791233c19 +2023,Salta,II.1.1,178.75788,TJ,CO2,74100.0,kg/TJ,13245958.908,Gas Oil combustion consumption by public passenger transport,AR-A,SESCO,annual,kg,15e7c7f7-6e5a-39f3-95f6-ea1aed259607 +2023,Salta,II.1.1,178.75788,TJ,CH4,3.9,kg/TJ,697.155732,Gas Oil combustion consumption by public passenger transport,AR-A,SESCO,annual,kg,1743d341-eeac-3298-bd78-9db7f21967c4 +2023,Salta,II.1.1,178.75788,TJ,N2O,3.9,kg/TJ,697.155732,Gas Oil combustion consumption by public passenger transport,AR-A,SESCO,annual,kg,1743d341-eeac-3298-bd78-9db7f21967c4 +2023,San Juan,II.1.1,1.51704,TJ,CO2,74100.0,kg/TJ,112412.66399999999,Gas Oil combustion consumption by public passenger transport,AR-J,SESCO,annual,kg,d7f94d48-f094-37be-b6b9-d63a587d0775 +2023,San Juan,II.1.1,1.51704,TJ,CH4,3.9,kg/TJ,5.916455999999999,Gas Oil combustion consumption by public passenger transport,AR-J,SESCO,annual,kg,b13c3e27-4fb7-3565-acee-777d9fddf2eb +2023,San Juan,II.1.1,1.51704,TJ,N2O,3.9,kg/TJ,5.916455999999999,Gas Oil combustion consumption by public passenger transport,AR-J,SESCO,annual,kg,b13c3e27-4fb7-3565-acee-777d9fddf2eb +2023,Santa Fe,II.1.1,49.881719999999994,TJ,CO2,74100.0,kg/TJ,3696235.4519999996,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,6a4424a2-401d-3dc2-82bd-66dce8cb8a43 +2023,Santa Fe,II.1.1,49.881719999999994,TJ,CH4,3.9,kg/TJ,194.53870799999999,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,7252ce42-74f6-3dac-b93b-773d668bb0a2 +2023,Santa Fe,II.1.1,49.881719999999994,TJ,N2O,3.9,kg/TJ,194.53870799999999,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,7252ce42-74f6-3dac-b93b-773d668bb0a2 diff --git a/global-api/importer/argentinian_datasets/SESCO/transformation_SESCO_AR.py b/global-api/importer/argentinian_datasets/SESCO/transformation_SESCO_AR.py new file mode 100644 index 000000000..b90a555f6 --- /dev/null +++ b/global-api/importer/argentinian_datasets/SESCO/transformation_SESCO_AR.py @@ -0,0 +1,379 @@ +import pandas as pd +import argparse +import uuid +import os + +def uuid_generate_v3(name, namespace=uuid.NAMESPACE_OID): + """generate a version 3 UUID from namespace and name""" + assert isinstance(name, str), "name needs to be a string" + assert isinstance(namespace, uuid.UUID), "namespace needs to be a uuid.UUID" + return str(uuid.uuid3(namespace, name)) + +if __name__ == "__main__": + parser = argparse.ArgumentParser(description='Transform files with a specified location.') + parser.add_argument("--filepath", help="path to the files location", required=True) + args = parser.parse_args() + + absolute_path = os.path.abspath(args.filepath) + # read the file + df = pd.read_csv(f'{absolute_path}/raw_fuel_sales_SESCO_AR.csv') + + #------------------------------------------------------------------------ + ### Pre-process + #------------------------------------------------------------------------ + + # clean the dataset + df = df.drop(columns=['pais', 'indice_tiempo', 'tipodecomercializacion']) + + # list of "province" values to delete + filter_values = ['S/D', 'no aplica', 'Provincia', 'Estado Nacional'] + df = df[~df['provincia'].isin(filter_values)] + + # matching the 'suptipo' from SESCO to the GPC subsectors + suptipo_to_gpc = { + 'Industrias Petroquímicas':'I.3.1', + 'transporte Público de Pasajeros':'II.1.1', + 'Transporte de Carga':'II.1.1', + 'Agro':'II.5.1', + 'Transporte Ferroviario':'II.2.1' + } + df['GPC_refno'] = df['subtipodecomercializacion'].map(suptipo_to_gpc) + + # delete rows without a GPC reference number + df = df.dropna(subset=['GPC_refno']) + + # calculate annual values + df = df.groupby(['anio', 'empresa', 'subtipodecomercializacion', 'producto', 'provincia', 'GPC_refno'])['cantidad'].sum().reset_index() + + #------------------------------------------------------------------------ + ### Emission Calculation + #------------------------------------------------------------------------ + # diccionary with the data needed to convert the raw units (volume) into energy content by fuel type + fuel_dic = { + 'Aerokerosene (Jet)(m3)': { + 'units': 'm3', + 'ef_fuel_name': 'Jet Kerosene', + 'fuel_density': 710, + 'fuel_density_units': 'kg/m3', + 'NCV_value': 44.3, + 'NCV_units': 'TJ/Gg' + }, + 'Aeronaftas(m3)': { + 'units': 'm3', + 'ef_fuel_name': 'Aviation Gasoline', + 'fuel_density': 710, + 'fuel_density_units': 'kg/m3', + 'NCV_value': 44.3, + 'NCV_units': 'TJ/Gg' + }, + 'Diesel Oil(m3)': { + 'units': 'm3', + 'ef_fuel_name': 'Diesel Oil', + 'fuel_density': 840, + 'fuel_density_units': 'kg/m3', + 'NCV_value': 43, + 'NCV_units': 'TJ/Gg' + }, + 'Fueloil(Ton)': { + 'units': 'tonne', + 'ef_fuel_name': 'Motor Gasoline', + 'fuel_density': 1000, + 'fuel_density_units': 'kg', + 'NCV_value': 44.3, + 'NCV_units': 'TJ/Gg' + }, + 'Gasoil Grado 1 (Agrogasoil)(m3)': { + 'units': 'm3', + 'ef_fuel_name': 'Gas Oil', + 'fuel_density': 840, + 'fuel_density_units': 'kg/m3', + 'NCV_value': 43, + 'NCV_units': 'TJ/Gg' + }, + 'Gasoil Grado 2 (Común)(m3)': { + 'units': 'm3', + 'ef_fuel_name': 'Gas Oil', + 'fuel_density': 840, + 'fuel_density_units': 'kg/m3', + 'NCV_value': 43, + 'NCV_units': 'TJ/Gg' + }, + 'Gasoil Grado 3 (Ultra) (m3)': { + 'units': 'm3', + 'ef_fuel_name': 'Gas Oil', + 'fuel_density': 840, + 'fuel_density_units': 'kg/m3', + 'NCV_value': 43, + 'NCV_units': 'TJ/Gg' + }, + 'Gasolina Natural(m3)': { + 'units': 'm3', + 'ef_fuel_name': 'Gas Oil', + 'fuel_density': 840, + 'fuel_density_units': 'kg/m3', + 'NCV_value': 43, + 'NCV_units': 'TJ/Gg' + }, + 'Kerosene(m3)': { + 'units': 'm3', + 'ef_fuel_name': 'Jet Kerosene', + 'fuel_density': 710, + 'fuel_density_units': 'kg/m3', + 'NCV_value': 44.3, + 'NCV_units': 'TJ/Gg' + }, + 'Nafta Grado 1 (Común)(m3)': { + 'units': 'm3', + 'ef_fuel_name': 'Naphtha', + 'fuel_density': 770, + 'fuel_density_units': 'kg/m3', + 'NCV_value': 44.5, + 'NCV_units': 'TJ/Gg' + }, + 'Nafta Grado 2 (Súper)(m3)': { + 'units': 'm3', + 'ef_fuel_name': 'Naphtha', + 'fuel_density': 770, + 'fuel_density_units': 'kg/m3', + 'NCV_value': 44.5, + 'NCV_units': 'TJ/Gg' + }, + 'Nafta Grado 3 (Ultra)(m3)': { + 'units': 'm3', + 'ef_fuel_name': 'Naphtha', + 'fuel_density': 770, + 'fuel_density_units': 'kg/m3', + 'NCV_value': 44.5, + 'NCV_units': 'TJ/Gg' + }, + 'Nafta Virgen(m3)': { + 'units': 'm3', + 'ef_fuel_name': 'Naphtha', + 'fuel_density': 770, + 'fuel_density_units': 'kg/m3', + 'NCV_value': 44.5, + 'NCV_units': 'TJ/Gg' + } + } + + # apply a filter to select specific fuels + df = df[df['producto'].isin(fuel_dic.keys())] + + # assigning needed values to each row based on the fuel type + for index, row in df.iterrows(): + producto = row['producto'] + if producto in fuel_dic.keys(): + #print(fuel_dic[producto]['units']) + df.loc[index, 'units'] = fuel_dic[producto]['units'] + df.loc[index, 'fuel_ipcc'] = fuel_dic[producto]['ef_fuel_name'] + df.loc[index, 'fuel_density'] = fuel_dic[producto]['fuel_density'] + df.loc[index, 'fuel_density_units'] = fuel_dic[producto]['fuel_density_units'] + df.loc[index, 'NCV_value'] = fuel_dic[producto]['NCV_value'] + df.loc[index, 'NCV_units'] = fuel_dic[producto]['NCV_units'] + + # to calculate TJ for activity_values + # volume to mass, mass to energy content + df.loc[:, 'activity_value'] = df['cantidad'] * df['fuel_density'] * df['NCV_value'] * 1e-6 # changing Gg to kg + df.loc[:, 'activity_units'] = 'TJ' + + #------------------------------------------------------------------------ + ### Subsector I.3.1 + #------------------------------------------------------------------------ + I31 = df[df['subtipodecomercializacion'] == 'Industrias Petroquímicas'] + + # diccionary to assign the emission factor values to each row based on the sector and fuel type + dic_ef_I31 = { + 'Jet Kerosene' : { + 'CO2': 71500, + 'CH4': 3, + 'N2O': 0.6 + }, + 'Aviation Gasoline' : { + 'CO2': 70000, + 'CH4': 3, + 'N2O': 0.6 + }, + 'Diesel Oil' : { + 'CO2': 74100, + 'CH4': 3, + 'N2O': 0.6 + }, + 'Motor Gasoline': { + 'CO2': 69300, + 'CH4': 3, + 'N2O': 0.6 + }, + 'Gas Oil' : { + 'CO2': 74100, + 'CH4': 3, + 'N2O': 0.6 + }, + 'Naphtha' : { + 'CO2': 73300, + 'CH4': 3, + 'N2O': 0.6 + } + } + new_rows = [] + + for index, row in I31.iterrows(): + fuel = row['fuel_ipcc'] + if fuel in dic_ef_I31.keys(): + ef_gas = dic_ef_I31[fuel] + for gas, ef_value in ef_gas.items(): + # Create a new row with gas name and emission factor value + new_row = row.copy() # Copy the original row + new_row['gas_name'] = gas + new_row['emission_factor_value'] = ef_value + new_row['emission_factor_units'] = 'kg/TJ' + # Append the new row to the list + new_rows.append(new_row) + + # Create a new DataFrame from the list of new rows + I31 = pd.DataFrame(new_rows) + I31 = I31.reset_index(drop=True) + + # calculating the emission values for this subsector + I31.loc[:, 'emissions_value'] = I31['activity_value'] * I31['emission_factor_value'] + + #------------------------------------------------------------------------ + ### Sector II + #------------------------------------------------------------------------ + II = df[df['subtipodecomercializacion'] != 'Industrias Petroquímicas'] + # diccionary to assign the emission factor values to each row based on the sector and fuel type + dic_ef_II21 = { + 'Jet Kerosene' : { + 'CO2': 71500, + 'CH4': 0.5, + 'N2O': 2 + }, + 'Aviation Gasoline' : { + 'CO2': 72000, + 'CH4': 0.5, + 'N2O': 2 + }, + 'Diesel Oil' : { + 'CO2': 74100, + 'CH4': 5, + 'N2O': 0.6 + }, + 'Motor Gasoline': { + 'CO2': 69300, + 'CH4': 33, + 'N2O': 3.2 + }, + 'Gas Oil' : { + 'CO2': 74100, + 'CH4': 3.9, + 'N2O': 3.9 + }, + 'Naphtha' : { + 'CO2': 73300, + 'CH4': 0.5, + 'N2O': 2 + } + } + new_rows = [] + + for index, row in II.iterrows(): + fuel = row['fuel_ipcc'] + if fuel in dic_ef_II21.keys(): + ef_gas = dic_ef_II21[fuel] + for gas, ef_value in ef_gas.items(): + # Create a new row with gas name and emission factor value + new_row = row.copy() # Copy the original row + new_row['gas_name'] = gas + new_row['emission_factor_value'] = ef_value + new_row['emission_factor_units'] = 'kg/TJ' + # Append the new row to the list + new_rows.append(new_row) + + # Create a new DataFrame from the list of new rows + II = pd.DataFrame(new_rows) + II = II.reset_index(drop=True) + + # calculating the emission values for this subsector + II.loc[:, 'emissions_value'] = II['activity_value'] * II['emission_factor_value'] + + #------------------------------------------------------------------------ + ### Final Details + #------------------------------------------------------------------------ + # concatenate both dataframes + final_df = pd.concat([I31, II], ignore_index=True) + + # add the activity name based on the subtype of commercialization + translate_dic = { + 'Industrias Petroquímicas': 'petrochemical industries', + 'Agro': 'agriculture machines', + 'Transporte de Carga': 'freight transport', + 'transporte Público de Pasajeros': 'public passenger transport', + 'Transporte Ferroviario': 'railway transport' + } + for index, row in final_df.iterrows(): + subsector = row['subtipodecomercializacion'] + fuel = row['fuel_ipcc'] + if subsector in translate_dic.keys(): + final_df.loc[index, 'activity_name'] = f'{fuel} combustion consumption by {translate_dic[subsector]}' + + # delete extra columns + columns_to_drop = ['empresa', 'subtipodecomercializacion', 'producto', 'cantidad', 'units', 'fuel_ipcc', 'fuel_density', 'fuel_density_units', 'NCV_value', 'NCV_units'] + final_df = final_df.drop(columns=columns_to_drop) + + # assigning province CODE based on the province name + province_code_dic = { + 'Buenos Aires':'AR-B', + 'Capital Federal':'AR-C', + 'Catamarca':'AR-K', + 'Chubut':'AR-U', + 'Córdoba':'AR-X', + 'Corrientes':'AR-W', + 'Entre Rios':'AR-E', + 'Jujuy':'AR-Y', + 'La Pampa':'AR-L', + 'La Rioja':'AR-F', + 'Mendoza':'AR-M', + 'Neuquén':'AR-Q', + 'Rio Negro':'AR-R', + 'Salta':'AR-A', + 'San Juan':'AR-J', + 'San Luis':'AR-D', + 'Santa Cruz':'AR-Z', + 'Santa Fe':'AR-S', + 'Santiago del Estero':'AR-G', + 'Tierra del Fuego':'AR-V', + 'Tucuman':'AR-T', + 'Chaco':'AR-H', + 'Misiones':'AR-N', + 'Formosa':'AR-P' + } + for index, row in final_df.iterrows(): + province_name = row['provincia'] + if province_name in province_code_dic.keys(): + final_df.at[index, 'province_code'] = province_code_dic[province_name] + + # this year is not complete ( we're in 2024 :) ) + final_df = final_df[final_df['anio'] != 2024] + # rename columns + columns_to_rename = { + 'anio': 'year', + 'provincia': 'province_name' + } + final_df.rename(columns=columns_to_rename, inplace=True) + # adding extra columns + final_df.loc[:, 'source_name'] = 'SESCO' + final_df.loc[:, 'temporal_granularity'] = 'annual' + final_df.loc[:, 'emissions_units'] = 'kg' + + # Define a function to generate UUID for each row + def generate_uuid(row): + id_string = str(row['province_code']) + str(row['emissions_value']) + str(row['GPC_refno']) + return uuid_generate_v3(id_string) + # Apply the function to each row and assign the result to a new column 'id' + final_df['id'] = final_df.apply(generate_uuid, axis=1) + + col_order = ['id', 'source_name', 'GPC_refno', 'province_name', 'province_code', 'temporal_granularity', 'year', 'activity_name', 'activity_value', + 'activity_units', 'gas_name', 'emission_factor_value', 'emission_factor_units', 'emissions_value', 'emissions_units'] + final_df = final_df.reindex(columns=col_order) + + # Save the file + final_df.to_csv(f'{absolute_path}/processed_SESCO_AR.csv', sep=",", decimal=".", index=False) \ No newline at end of file From 2f31020a66b81d5b60fc3b33c0d744f0ed20bb5c Mon Sep 17 00:00:00 2001 From: Maureen Fonseca Mora <107511484+mfonsecaOEF@users.noreply.github.com> Date: Tue, 16 Apr 2024 06:40:39 -0600 Subject: [PATCH 06/45] fix:change_province_to_region --- .../SESCO/processed_SESCO_AR.csv | 2 +- .../SESCO/transformation_SESCO_AR.py | 14 +++++++------- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/global-api/importer/argentinian_datasets/SESCO/processed_SESCO_AR.csv b/global-api/importer/argentinian_datasets/SESCO/processed_SESCO_AR.csv index f9a0fffb4..585c27ff5 100644 --- a/global-api/importer/argentinian_datasets/SESCO/processed_SESCO_AR.csv +++ b/global-api/importer/argentinian_datasets/SESCO/processed_SESCO_AR.csv @@ -1,4 +1,4 @@ -year,province_name,GPC_refno,activity_value,activity_units,gas_name,emission_factor_value,emission_factor_units,emissions_value,activity_name,province_code,source_name,temporal_granularity,emissions_units,id +year,region_name,GPC_refno,activity_value,activity_units,gas_name,emission_factor_value,emission_factor_units,emissions_value,activity_name,region_code,source_name,temporal_granularity,emissions_units,id 2010,Buenos Aires,I.3.1,12.85872,TJ,CO2,74100.0,kg/TJ,952831.152,Gas Oil combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,307e8111-cc48-3b1e-9826-ba331db99535 2010,Buenos Aires,I.3.1,12.85872,TJ,CH4,3.0,kg/TJ,38.57616,Gas Oil combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,2b1ff6a0-81b5-3c30-9644-274f8d90d1b3 2010,Buenos Aires,I.3.1,12.85872,TJ,N2O,0.6,kg/TJ,7.715231999999999,Gas Oil combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,b938ed42-ab66-3e03-8064-06cf80d6e962 diff --git a/global-api/importer/argentinian_datasets/SESCO/transformation_SESCO_AR.py b/global-api/importer/argentinian_datasets/SESCO/transformation_SESCO_AR.py index b90a555f6..eacfa1a8a 100644 --- a/global-api/importer/argentinian_datasets/SESCO/transformation_SESCO_AR.py +++ b/global-api/importer/argentinian_datasets/SESCO/transformation_SESCO_AR.py @@ -320,7 +320,7 @@ def uuid_generate_v3(name, namespace=uuid.NAMESPACE_OID): final_df = final_df.drop(columns=columns_to_drop) # assigning province CODE based on the province name - province_code_dic = { + region_code_dic = { 'Buenos Aires':'AR-B', 'Capital Federal':'AR-C', 'Catamarca':'AR-K', @@ -347,16 +347,16 @@ def uuid_generate_v3(name, namespace=uuid.NAMESPACE_OID): 'Formosa':'AR-P' } for index, row in final_df.iterrows(): - province_name = row['provincia'] - if province_name in province_code_dic.keys(): - final_df.at[index, 'province_code'] = province_code_dic[province_name] + region_name = row['provincia'] + if region_name in region_code_dic.keys(): + final_df.at[index, 'region_code'] = region_code_dic[region_name] # this year is not complete ( we're in 2024 :) ) final_df = final_df[final_df['anio'] != 2024] # rename columns columns_to_rename = { 'anio': 'year', - 'provincia': 'province_name' + 'provincia': 'region_name' } final_df.rename(columns=columns_to_rename, inplace=True) # adding extra columns @@ -366,12 +366,12 @@ def uuid_generate_v3(name, namespace=uuid.NAMESPACE_OID): # Define a function to generate UUID for each row def generate_uuid(row): - id_string = str(row['province_code']) + str(row['emissions_value']) + str(row['GPC_refno']) + id_string = str(row['region_code']) + str(row['emissions_value']) + str(row['GPC_refno']) return uuid_generate_v3(id_string) # Apply the function to each row and assign the result to a new column 'id' final_df['id'] = final_df.apply(generate_uuid, axis=1) - col_order = ['id', 'source_name', 'GPC_refno', 'province_name', 'province_code', 'temporal_granularity', 'year', 'activity_name', 'activity_value', + col_order = ['id', 'source_name', 'GPC_refno', 'region_name', 'region_code', 'temporal_granularity', 'year', 'activity_name', 'activity_value', 'activity_units', 'gas_name', 'emission_factor_value', 'emission_factor_units', 'emissions_value', 'emissions_units'] final_df = final_df.reindex(columns=col_order) From 740518f8c082bccde2de24dba0fe649eef61fcce Mon Sep 17 00:00:00 2001 From: Maureen Fonseca Mora <107511484+mfonsecaOEF@users.noreply.github.com> Date: Tue, 16 Apr 2024 06:46:23 -0600 Subject: [PATCH 07/45] feat: loading_script --- .../argentinian_datasets/SESCO/load_SESCO.sql | 33 +++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100644 global-api/importer/argentinian_datasets/SESCO/load_SESCO.sql diff --git a/global-api/importer/argentinian_datasets/SESCO/load_SESCO.sql b/global-api/importer/argentinian_datasets/SESCO/load_SESCO.sql new file mode 100644 index 000000000..d7bec1074 --- /dev/null +++ b/global-api/importer/argentinian_datasets/SESCO/load_SESCO.sql @@ -0,0 +1,33 @@ +-- Create a staging table +CREATE TEMP TABLE IF NOT EXISTS region_code_staging (LIKE regionwide_emissions INCLUDING ALL); + +-- Clear the staging table +TRUNCATE region_code_staging; + +-- Load the staging table from the downloaded file +\copy region_code_staging (id,source_name,"GPC_refno",region_name,region_code,temporal_granularity,year,activity_name,activity_value,activity_units,gas_name,emission_factor_value,emission_factor_units,emissions_value,emissions_units) FROM 'processed_SESCO_AR.csv' WITH (FORMAT CSV, HEADER); + +-- Update the main table with the staging table +INSERT INTO regionwide_emissions (id,source_name,"GPC_refno",region_name,region_code,temporal_granularity,year,activity_name,activity_value,activity_units,gas_name,emission_factor_value,emission_factor_units,emissions_value,emissions_units) + SELECT id,source_name,"GPC_refno",region_name,region_code,temporal_granularity,year,activity_name,activity_value,activity_units,gas_name,emission_factor_value,emission_factor_units,emissions_value,emissions_units + FROM region_code_staging + ON CONFLICT ON CONSTRAINT regionwide_emissions_pkey + DO UPDATE SET + id = excluded.id, + source_name = excluded.source_name, + "GPC_refno" = excluded."GPC_refno", + region_name = excluded.region_name, + region_code = excluded.region_code, + temporal_granularity = excluded.temporal_granularity, + year = excluded.year, + activity_name = excluded.activity_name, + activity_value = excluded.activity_value, + activity_units = excluded.activity_units, + gas_name = excluded.gas_name, + emission_factor_value = excluded.emission_factor_value, + emission_factor_units = excluded.emission_factor_units, + emissions_value = excluded.emissions_value, + emissions_units = excluded.emissions_units; + +-- Drop the staging table +DROP TABLE region_code_staging; \ No newline at end of file From f86c9bffabfa9e56b94ae511be1a1f60035626f6 Mon Sep 17 00:00:00 2001 From: Maureen Fonseca Mora <107511484+mfonsecaOEF@users.noreply.github.com> Date: Tue, 16 Apr 2024 06:47:56 -0600 Subject: [PATCH 08/45] fix: processed_file_path --- .../importer/argentinian_datasets/ENARGAS/load_ENERGAS.sql | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/global-api/importer/argentinian_datasets/ENARGAS/load_ENERGAS.sql b/global-api/importer/argentinian_datasets/ENARGAS/load_ENERGAS.sql index 3fcc66507..120fb425e 100644 --- a/global-api/importer/argentinian_datasets/ENARGAS/load_ENERGAS.sql +++ b/global-api/importer/argentinian_datasets/ENARGAS/load_ENERGAS.sql @@ -5,7 +5,7 @@ CREATE TEMP TABLE IF NOT EXISTS ENARGAS_staging (LIKE regionwide_emissions INCLU TRUNCATE ENARGAS_staging; -- Load the staging table from the downloaded file -\copy ENARGAS_staging ("GPC_refno",activity_name,activity_units,activity_value,emission_factor_units,emission_factor_value,emissions_units,emissions_value,gas_name,id,region_name,region_code,source_name,temporal_granularity,year) FROM '/Users/maureenfonseca/Documents/OEF/Cities/CityCatalyst/global-api/importer/argentinian_datasets/ENARGAS/processed_enargas_gas_consumption_AR.csv' WITH (FORMAT CSV, HEADER); +\copy ENARGAS_staging ("GPC_refno",activity_name,activity_units,activity_value,emission_factor_units,emission_factor_value,emissions_units,emissions_value,gas_name,id,region_name,region_code,source_name,temporal_granularity,year) FROM 'processed_enargas_gas_consumption_AR.csv' WITH (FORMAT CSV, HEADER); -- Update the main table with the staging table INSERT INTO regionwide_emissions ("GPC_refno",activity_name,activity_units,activity_value,emission_factor_units,emission_factor_value,emissions_units,emissions_value,gas_name,id,region_name,region_code,source_name,temporal_granularity,year) From d93a9014a47f5147900f4a78ec495ec0390e2123 Mon Sep 17 00:00:00 2001 From: mfonsecaOEF Date: Tue, 16 Apr 2024 14:43:00 -0600 Subject: [PATCH 09/45] feat:transformation_process --- .../argentinian_datasets/cammesa/README | 21 ++- .../cammesa/load_cammesa.sql | 33 ++++ .../cammesa/processed_cammesa_AR.csv | 151 +++++++++++++++++ ...ammesa_monthly_electricity_generation.xlsx | Bin 2507185 -> 1933618 bytes .../cammesa/transformation_cammesa.py | 152 ++++++++++++++---- 5 files changed, 319 insertions(+), 38 deletions(-) create mode 100644 global-api/importer/argentinian_datasets/cammesa/load_cammesa.sql create mode 100644 global-api/importer/argentinian_datasets/cammesa/processed_cammesa_AR.csv diff --git a/global-api/importer/argentinian_datasets/cammesa/README b/global-api/importer/argentinian_datasets/cammesa/README index 0af950e7d..c81081edf 100644 --- a/global-api/importer/argentinian_datasets/cammesa/README +++ b/global-api/importer/argentinian_datasets/cammesa/README @@ -1,16 +1,21 @@ -# cammesa -Electricity consumption data for argentinian provinces +# cammesa - Argentina +Local data of energy generation by power plants in Argentina. This source is used to calculate GHG emissions for subsector of Energy industries in Stationary Energy sector (I.4.4). -1. Extract the activity data from the source [cammesa](https://cammesaweb.cammesa.com/estadistica-informe-sintesis-mem/) - * Offer -> Generation -> monthly local generation +1. Extract the activity data from the source [cammesa](https://cammesaweb.cammesa.com/download/factor-de-emision/) - -2. Transform activity data into emissions data aligned with the global API schema: +2. Transform the activity into emission data align with the Global API schema: ```bash - +python ./importer/argentinian_datasets/cammesa/transformation_cammesa.py --filepath [path where the transformed data will be saved] ``` - 3. Extract the activity row from the source: ```bash +psql -U ccglobal -d ccglobal -f ./importer/argentinian_datasets/cammesa/loading_cammesa.sql +``` +### Directory tree +```sh +. +├── README.md # top level readme +├── transformation_cammesa.py # transformation script +└── load_cammesa.sql # loading script ``` \ No newline at end of file diff --git a/global-api/importer/argentinian_datasets/cammesa/load_cammesa.sql b/global-api/importer/argentinian_datasets/cammesa/load_cammesa.sql new file mode 100644 index 000000000..d7bec1074 --- /dev/null +++ b/global-api/importer/argentinian_datasets/cammesa/load_cammesa.sql @@ -0,0 +1,33 @@ +-- Create a staging table +CREATE TEMP TABLE IF NOT EXISTS region_code_staging (LIKE regionwide_emissions INCLUDING ALL); + +-- Clear the staging table +TRUNCATE region_code_staging; + +-- Load the staging table from the downloaded file +\copy region_code_staging (id,source_name,"GPC_refno",region_name,region_code,temporal_granularity,year,activity_name,activity_value,activity_units,gas_name,emission_factor_value,emission_factor_units,emissions_value,emissions_units) FROM 'processed_SESCO_AR.csv' WITH (FORMAT CSV, HEADER); + +-- Update the main table with the staging table +INSERT INTO regionwide_emissions (id,source_name,"GPC_refno",region_name,region_code,temporal_granularity,year,activity_name,activity_value,activity_units,gas_name,emission_factor_value,emission_factor_units,emissions_value,emissions_units) + SELECT id,source_name,"GPC_refno",region_name,region_code,temporal_granularity,year,activity_name,activity_value,activity_units,gas_name,emission_factor_value,emission_factor_units,emissions_value,emissions_units + FROM region_code_staging + ON CONFLICT ON CONSTRAINT regionwide_emissions_pkey + DO UPDATE SET + id = excluded.id, + source_name = excluded.source_name, + "GPC_refno" = excluded."GPC_refno", + region_name = excluded.region_name, + region_code = excluded.region_code, + temporal_granularity = excluded.temporal_granularity, + year = excluded.year, + activity_name = excluded.activity_name, + activity_value = excluded.activity_value, + activity_units = excluded.activity_units, + gas_name = excluded.gas_name, + emission_factor_value = excluded.emission_factor_value, + emission_factor_units = excluded.emission_factor_units, + emissions_value = excluded.emissions_value, + emissions_units = excluded.emissions_units; + +-- Drop the staging table +DROP TABLE region_code_staging; \ No newline at end of file diff --git a/global-api/importer/argentinian_datasets/cammesa/processed_cammesa_AR.csv b/global-api/importer/argentinian_datasets/cammesa/processed_cammesa_AR.csv new file mode 100644 index 000000000..ca5c00075 --- /dev/null +++ b/global-api/importer/argentinian_datasets/cammesa/processed_cammesa_AR.csv @@ -0,0 +1,151 @@ +id,source_name,GPC_refno,region_name,region_code,temporal_granularity,year,activity_name,activity_value,activity_units,gas_name,emission_factor_value,emission_factor_units,emissions_value,emissions_units +af16c0fa-acbc-360c-b446-588f98f5e6d4,CAMMESA,I.4.4,BUENOS AIRES,AR-B,annual,2020,natural gas combustion consumption for energy generation from renewable plants,22.345,tonne,CO2,1.94819592,tonne/tonne,43532.4378324,kg +0141aef1-5174-39d8-a98b-17d3a55b1cc4,CAMMESA,I.4.4,BUENOS AIRES,AR-B,annual,2020,mineral coal combustion consumption for energy generation from thermal plants,474987.63099999994,tonne,CO2,2.33525776,tonne/tonne,1109218551.1967666,kg +f96c70a8-a520-3f46-be4e-2ab8663d3e43,CAMMESA,I.4.4,BUENOS AIRES,AR-B,annual,2020,fuel oil combustion consumption for energy generation from thermal plants,512110.41399999976,tonne,CO2,3.17228090666667,tonne/tonne,1624558088.4373636,kg +904ba002-aaec-3276-928a-1f18a8c06025,CAMMESA,I.4.4,BUENOS AIRES,AR-B,annual,2020,natural gas combustion consumption for energy generation from thermal plants,8184855.087999998,tonne,CO2,1.94819592,tonne/tonne,15945701288.232832,kg +d3549de1-9c70-3c9c-b6b9-e259b7ff6756,CAMMESA,I.4.4,BUENOS AIRES,AR-B,annual,2020,gas oil combustion consumption for energy generation from thermal plants,444723.68699999986,tonne,CO2,2.69717055226667,tonne/tonne,1199495632.4718597,kg +a584a88f-833d-3ca4-9c21-bbdc15ce76af,CAMMESA,I.4.4,CATAMARCA,AR-K,annual,2020,gas oil combustion consumption for energy generation from thermal plants,16947.797,tonne,CO2,2.69717055226667,tonne/tonne,45711098.99419343,kg +05b038bc-7fb2-3f70-a95d-224485b65c98,CAMMESA,I.4.4,CHACO,AR-H,annual,2020,gas oil combustion consumption for energy generation from thermal plants,17739.31799999999,tonne,CO2,2.69717055226667,tonne/tonne,47845966.12689407,kg +a7ed0a95-7d35-38ea-b69b-d2ab2d883b46,CAMMESA,I.4.4,CHUBUT,AR-U,annual,2020,natural gas combustion consumption for energy generation from thermal plants,274810.66699999996,tonne,CO2,1.94819592,tonne/tonne,535385020.22187865,kg +e094b677-66ce-3190-9f5c-9f876dd184fa,CAMMESA,I.4.4,CORDOBA,AR-X,annual,2020,natural gas combustion consumption for energy generation from thermal plants,806137.133,tonne,CO2,1.94819592,tonne/tonne,1570513073.471098,kg +f8045081-a96e-3a2e-984a-bfd3650d9bd1,CAMMESA,I.4.4,CORDOBA,AR-X,annual,2020,gas oil combustion consumption for energy generation from thermal plants,67012.03100000002,tonne,CO2,2.69717055226667,tonne/tonne,180742876.6607812,kg +e1f62bb9-af79-3182-aed7-b1ab029bda9a,CAMMESA,I.4.4,CORRIENTES,AR-W,annual,2020,gas oil combustion consumption for energy generation from thermal plants,6151.191,tonne,CO2,2.69717055226667,tonne/tonne,16590811.22656777,kg +7765e28b-b265-3b4d-a994-27348e0110b7,CAMMESA,I.4.4,ENTRE RIOS,AR-E,annual,2020,natural gas combustion consumption for energy generation from thermal plants,1232.869,tonne,CO2,1.94819592,tonne/tonne,2401870.3556944807,kg +a10588fe-731e-304f-9ed7-d0716f3da33a,CAMMESA,I.4.4,ENTRE RIOS,AR-E,annual,2020,gas oil combustion consumption for energy generation from thermal plants,2372.669000000001,tonne,CO2,2.69717055226667,tonne/tonne,6399492.9570760075,kg +bee1caa0-1833-371b-8b26-bb5941c2ac58,CAMMESA,I.4.4,FORMOSA,AR-P,annual,2020,gas oil combustion consumption for energy generation from thermal plants,9416.939000000002,tonne,CO2,2.69717055226667,tonne/tonne,25399090.563291542,kg +aa134137-d055-32c7-becb-551fe212b425,CAMMESA,I.4.4,JUJUY,AR-Y,annual,2020,natural gas combustion consumption for energy generation from thermal plants,39171.81800000001,tonne,CO2,1.94819592,tonne/tonne,76314376.00658259,kg +c9658d79-504c-35f1-82f4-4f4eb1e93919,CAMMESA,I.4.4,JUJUY,AR-Y,annual,2020,gas oil combustion consumption for energy generation from thermal plants,415.524,tonne,CO2,2.69717055226667,tonne/tonne,1120739.0965600559,kg +6b6af7cd-efe5-3190-b56f-96adfeb8b2a4,CAMMESA,I.4.4,LA PAMPA,AR-L,annual,2020,gas oil combustion consumption for energy generation from thermal plants,2267.353,tonne,CO2,2.69717055226667,tonne/tonne,6115437.743193491,kg +fb9ad847-e41f-3bf6-826f-5c2bb3ed2356,CAMMESA,I.4.4,LA RIOJA,AR-F,annual,2020,natural gas combustion consumption for energy generation from thermal plants,9555.98,tonne,CO2,1.94819592,tonne/tonne,18616921.2476016,kg +26eea387-841c-300e-8e1f-88ba53ec3dea,CAMMESA,I.4.4,LA RIOJA,AR-F,annual,2020,gas oil combustion consumption for energy generation from thermal plants,11672.243000000006,tonne,CO2,2.69717055226667,tonne/tonne,31482030.09850077,kg +8a93de0b-7742-330d-b02e-d8084bfbc603,CAMMESA,I.4.4,MENDOZA,AR-M,annual,2020,fuel oil combustion consumption for energy generation from thermal plants,10542.007000000001,tonne,CO2,3.17228090666667,tonne/tonne,33442207.52404638,kg +a3337c3c-dfd6-3228-aaa0-908614d97592,CAMMESA,I.4.4,MENDOZA,AR-M,annual,2020,natural gas combustion consumption for energy generation from thermal plants,584141.1800000002,tonne,CO2,1.94819592,tonne/tonne,1138021463.5799856,kg +e1c7f6fd-f59b-3f5c-8c74-4df3be8132ba,CAMMESA,I.4.4,MENDOZA,AR-M,annual,2020,gas oil combustion consumption for energy generation from thermal plants,75.36600000000001,tonne,CO2,2.69717055226667,tonne/tonne,203274.9558421299,kg +1badd155-5684-3b76-975e-5b669b0989d7,CAMMESA,I.4.4,MISIONES,AR-N,annual,2020,gas oil combustion consumption for energy generation from thermal plants,23590.670000000002,tonne,CO2,2.69717055226667,tonne/tonne,63628060.43224075,kg +2246104e-8923-3f3b-93fc-21403ba1a01e,CAMMESA,I.4.4,NEUQUEN,AR-Q,annual,2020,natural gas combustion consumption for energy generation from thermal plants,2167818.7319999984,tonne,CO2,1.94819592,tonne/tonne,4223335608.9819736,kg +fe050a35-7f97-3205-9d37-89406ff8a4d3,CAMMESA,I.4.4,RIO NEGRO,AR-R,annual,2020,natural gas combustion consumption for energy generation from thermal plants,277398.344,tonne,CO2,1.94819592,tonne/tonne,540426321.9955565,kg +420721f2-890c-34a6-a873-2b8454036713,CAMMESA,I.4.4,RIO NEGRO,AR-R,annual,2020,gas oil combustion consumption for energy generation from thermal plants,3029.3309999999997,tonne,CO2,2.69717055226667,tonne/tonne,8170622.366268545,kg +bd668ec8-dc9c-35b3-a6d3-db101697b4c1,CAMMESA,I.4.4,SALTA,AR-A,annual,2020,natural gas combustion consumption for energy generation from thermal plants,919528.8870000001,tonne,CO2,1.94819592,tonne/tonne,1791422425.975541,kg +789a4c3a-8c52-30a7-b656-be5bb2bc0fb4,CAMMESA,I.4.4,SALTA,AR-A,annual,2020,gas oil combustion consumption for energy generation from thermal plants,536.072,tonne,CO2,2.69717055226667,tonne/tonne,1445877.6122946984,kg +fc838388-f8c4-3079-805b-e425f77e7b85,CAMMESA,I.4.4,SAN JUAN,AR-J,annual,2020,natural gas combustion consumption for energy generation from thermal plants,13155.313,tonne,CO2,1.94819592,tonne/tonne,25629127.112922963,kg +125e36bc-afc5-39ac-9b8a-08769ae58bd1,CAMMESA,I.4.4,SAN JUAN,AR-J,annual,2020,gas oil combustion consumption for energy generation from thermal plants,205.378,tonne,CO2,2.69717055226667,tonne/tonne,553939.4936834242,kg +852baf4b-d4af-3c2e-8db6-c6a7eefa8266,CAMMESA,I.4.4,SANTA CRUZ,AR-Z,annual,2020,natural gas combustion consumption for energy generation from thermal plants,64018.56599999999,tonne,CO2,1.94819592,tonne/tonne,124720709.08545071,kg +a37e87a3-4239-33ae-9b86-a90145a495bc,CAMMESA,I.4.4,SANTA FE,AR-S,annual,2020,fuel oil combustion consumption for energy generation from thermal plants,57156.34800000001,tonne,CO2,3.17228090666667,tonne/tonne,181315991.4551957,kg +16d489f8-d809-34d2-811f-14feac372772,CAMMESA,I.4.4,SANTA FE,AR-S,annual,2020,natural gas combustion consumption for energy generation from thermal plants,1857557.2429999986,tonne,CO2,1.94819592,tonne/tonne,3618885441.9790516,kg +74f1dc2d-66f6-39ea-b21a-b30a1ed94fdf,CAMMESA,I.4.4,SANTA FE,AR-S,annual,2020,gas oil combustion consumption for energy generation from thermal plants,228029.44100000022,tonne,CO2,2.69717055226667,tonne/tonne,615034293.3150303,kg +73356a1d-4a37-3fb2-b1d5-93833e02566b,CAMMESA,I.4.4,SANTIAGO DEL ESTERO,AR-G,annual,2020,natural gas combustion consumption for energy generation from thermal plants,6184.717000000001,tonne,CO2,1.94819592,tonne/tonne,12049040.425754644,kg +35244a03-2a3a-322e-85d1-7406da2d0433,CAMMESA,I.4.4,SANTIAGO DEL ESTERO,AR-G,annual,2020,gas oil combustion consumption for energy generation from thermal plants,12885.184,tonne,CO2,2.69717055226667,tonne/tonne,34753538.84533767,kg +202f9734-7952-3435-b50e-1096453e9181,CAMMESA,I.4.4,TUCUMAN,AR-T,annual,2020,natural gas combustion consumption for energy generation from thermal plants,1088569.8280000002,tonne,CO2,1.94819592,tonne/tonne,2120747297.5447025,kg +ed3790a2-b977-38dd-98be-ff805a491391,CAMMESA,I.4.4,TUCUMAN,AR-T,annual,2020,gas oil combustion consumption for energy generation from thermal plants,5346.113,tonne,CO2,2.69717055226667,tonne/tonne,14419378.552690024,kg +d3a4035c-d3e2-3369-95b6-000c98acae26,CAMMESA,I.4.4,BUENOS AIRES,AR-B,annual,2021,natural gas combustion consumption for energy generation from renewable plants,10.517000000000001,tonne,CO2,1.94819592,tonne/tonne,20489.176490640002,kg +82f8a241-98d1-3852-be55-98482a29b8e4,CAMMESA,I.4.4,BUENOS AIRES,AR-B,annual,2021,mineral coal combustion consumption for energy generation from thermal plants,865711.1340000001,tonne,CO2,2.33525776,tonne/tonne,2021658643.5918999,kg +4cdeee06-7f94-3a1a-a959-c8e75f1705a7,CAMMESA,I.4.4,BUENOS AIRES,AR-B,annual,2021,fuel oil combustion consumption for energy generation from thermal plants,660403.5649999997,tonne,CO2,3.17228090666667,tonne/tonne,2094985619.9441023,kg +78349837-eec3-3944-9283-fe971c0ab423,CAMMESA,I.4.4,BUENOS AIRES,AR-B,annual,2021,natural gas combustion consumption for energy generation from thermal plants,8286703.057999996,tonne,CO2,1.94819592,tonne/tonne,16144121087.84714,kg +a600879c-b5ba-30e9-90b6-4aa921be284a,CAMMESA,I.4.4,BUENOS AIRES,AR-B,annual,2021,gas oil combustion consumption for energy generation from thermal plants,1075477.3369999998,tonne,CO2,2.69717055226667,tonne/tonne,2900745802.986577,kg +78e6d596-f7a4-3e79-8881-aa0858412f65,CAMMESA,I.4.4,CATAMARCA,AR-K,annual,2021,gas oil combustion consumption for energy generation from thermal plants,10986.753000000002,tonne,CO2,2.69717055226667,tonne/tonne,29633146.65662749,kg +c6786c96-bd0d-3c04-83f4-4dc30754bbee,CAMMESA,I.4.4,CHACO,AR-H,annual,2021,gas oil combustion consumption for energy generation from thermal plants,13548.824999999999,tonne,CO2,2.69717055226667,tonne/tonne,36543491.80781447,kg +930ff556-763b-3792-8a6b-3817de3916cc,CAMMESA,I.4.4,CHUBUT,AR-U,annual,2021,natural gas combustion consumption for energy generation from thermal plants,243422.06400000007,tonne,CO2,1.94819592,tonne/tonne,474233871.922779,kg +2b21eed1-c3a7-3df6-99bb-deace5d2e7d9,CAMMESA,I.4.4,CORDOBA,AR-X,annual,2021,natural gas combustion consumption for energy generation from thermal plants,725089.6580000004,tonne,CO2,1.94819592,tonne/tonne,1412616713.3497958,kg +45ed6eba-b1f5-3ed7-8b3e-31a363f6dd3a,CAMMESA,I.4.4,CORDOBA,AR-X,annual,2021,gas oil combustion consumption for energy generation from thermal plants,196832.04699999996,tonne,CO2,2.69717055226667,tonne/tonne,530889600.9107693,kg +98cae30e-0d55-3ec9-a8f7-774bc26c947f,CAMMESA,I.4.4,CORRIENTES,AR-W,annual,2021,gas oil combustion consumption for energy generation from thermal plants,6167.226,tonne,CO2,2.69717055226667,tonne/tonne,16634060.356373379,kg +0ab89af0-5a80-392a-843d-067716d8162c,CAMMESA,I.4.4,ENTRE RIOS,AR-E,annual,2021,gas oil combustion consumption for energy generation from thermal plants,3343.46,tonne,CO2,2.69717055226667,tonne/tonne,9017881.85468152,kg +4e8117c1-3dfd-3ed9-bd63-83c2f3b77b9d,CAMMESA,I.4.4,FORMOSA,AR-P,annual,2021,gas oil combustion consumption for energy generation from thermal plants,8464.559999999998,tonne,CO2,2.69717055226667,tonne/tonne,22830361.969894364,kg +d7e6cf56-3152-3453-8588-bbb1d0ce1fb2,CAMMESA,I.4.4,JUJUY,AR-Y,annual,2021,natural gas combustion consumption for energy generation from thermal plants,35989.787,tonne,CO2,1.94819592,tonne/tonne,70115156.19506904,kg +af8bab3c-ccfa-3340-bdd6-f63c252e9bc0,CAMMESA,I.4.4,JUJUY,AR-Y,annual,2021,gas oil combustion consumption for energy generation from thermal plants,1234.867,tonne,CO2,2.69717055226667,tonne/tonne,3330646.9083658857,kg +3a2f96c5-5eb9-3438-9890-7c34b3a56aa0,CAMMESA,I.4.4,LA PAMPA,AR-L,annual,2021,gas oil combustion consumption for energy generation from thermal plants,2492.04,tonne,CO2,2.69717055226667,tonne/tonne,6721456.903070632,kg +45ae332f-ae4f-3951-93e5-b3d5900e2c5c,CAMMESA,I.4.4,LA RIOJA,AR-F,annual,2021,natural gas combustion consumption for energy generation from thermal plants,2744.18,tonne,CO2,1.94819592,tonne/tonne,5346200.2797456,kg +3f71aef2-0880-3c57-846c-b95f34197512,CAMMESA,I.4.4,LA RIOJA,AR-F,annual,2021,gas oil combustion consumption for energy generation from thermal plants,15765.767000000003,tonne,CO2,2.69717055226667,tonne/tonne,42522962.48629767,kg +5d4414e8-a775-3998-8b61-f96a8ebd0019,CAMMESA,I.4.4,MENDOZA,AR-M,annual,2021,fuel oil combustion consumption for energy generation from thermal plants,12214.807,tonne,CO2,3.17228090666667,tonne/tonne,38748799.02471839,kg +254b11d5-bd6c-3a80-a7dc-1485f31fdd69,CAMMESA,I.4.4,MENDOZA,AR-M,annual,2021,natural gas combustion consumption for energy generation from thermal plants,700400.2900000002,tonne,CO2,1.94819592,tonne/tonne,1364516987.3448172,kg +a87913dd-4ec5-39b4-b504-7b04e29b2271,CAMMESA,I.4.4,MISIONES,AR-N,annual,2021,gas oil combustion consumption for energy generation from thermal plants,26154.880000000005,tonne,CO2,2.69717055226667,tonne/tonne,70544172.13406849,kg +29021063-d931-3d25-a57b-b0abf4e434f7,CAMMESA,I.4.4,NEUQUEN,AR-Q,annual,2021,natural gas combustion consumption for energy generation from thermal plants,2500392.559999999,tonne,CO2,1.94819592,tonne/tonne,4871254583.790359,kg +1cd64fa0-c867-3650-bcde-5d8f7a2caeca,CAMMESA,I.4.4,RIO NEGRO,AR-R,annual,2021,natural gas combustion consumption for energy generation from thermal plants,265750.0710000001,tonne,CO2,1.94819592,tonne/tonne,517733204.06191033,kg +4a62573c-3a6a-32d3-be7c-7e258105128f,CAMMESA,I.4.4,RIO NEGRO,AR-R,annual,2021,gas oil combustion consumption for energy generation from thermal plants,5141.706999999997,tonne,CO2,2.69717055226667,tonne/tonne,13868060.708783403,kg +c5c803ff-b871-362b-8e48-99e9b6af4c8d,CAMMESA,I.4.4,SALTA,AR-A,annual,2021,natural gas combustion consumption for energy generation from thermal plants,640557.5859999999,tonne,CO2,1.94819592,tonne/tonne,1247931675.5702496,kg +7e452144-d76c-3c8f-808a-249e2009b0fb,CAMMESA,I.4.4,SALTA,AR-A,annual,2021,gas oil combustion consumption for energy generation from thermal plants,1378.2620000000002,tonne,CO2,2.69717055226667,tonne/tonne,3717407.6797081647,kg +cc3f6884-aca2-3356-a7d5-9e164378c8d1,CAMMESA,I.4.4,SAN JUAN,AR-J,annual,2021,natural gas combustion consumption for energy generation from thermal plants,2494.6740000000004,tonne,CO2,1.94819592,tonne/tonne,4860113.708530081,kg +987e9e10-4736-3b60-80e6-8ebd0bcca2d7,CAMMESA,I.4.4,SAN JUAN,AR-J,annual,2021,gas oil combustion consumption for energy generation from thermal plants,447.84700000000004,tonne,CO2,2.69717055226667,tonne/tonne,1207919.7403209715,kg +d8dc565c-7eb9-3bc6-961e-612fcc183d81,CAMMESA,I.4.4,SANTA CRUZ,AR-Z,annual,2021,natural gas combustion consumption for energy generation from thermal plants,64693.95100000001,tonne,CO2,1.94819592,tonne/tonne,126036491.38687995,kg +8bbe898a-377c-3cda-833e-472de33427ec,CAMMESA,I.4.4,SANTA FE,AR-S,annual,2021,fuel oil combustion consumption for energy generation from thermal plants,75406.38900000005,tonne,CO2,3.17228090666667,tonne/tonne,239210248.0653796,kg +df42993e-f927-3c4c-9550-9441651a72e3,CAMMESA,I.4.4,SANTA FE,AR-S,annual,2021,natural gas combustion consumption for energy generation from thermal plants,1513299.3140000002,tonne,CO2,1.94819592,tonne/tonne,2948203549.273599,kg +bf31a346-4c50-33d6-98ca-24baf5be13bc,CAMMESA,I.4.4,SANTA FE,AR-S,annual,2021,gas oil combustion consumption for energy generation from thermal plants,636858.7280000005,tonne,CO2,2.69717055226667,tonne/tonne,1717716607.1156106,kg +8b298da2-ae6b-3fd9-83ba-ce1cb7757e53,CAMMESA,I.4.4,SANTIAGO DEL ESTERO,AR-G,annual,2021,natural gas combustion consumption for energy generation from thermal plants,5130.555000000001,tonne,CO2,1.94819592,tonne/tonne,9995326.3183356,kg +ef17ede1-9c31-306c-9761-1cc7e9126d34,CAMMESA,I.4.4,SANTIAGO DEL ESTERO,AR-G,annual,2021,gas oil combustion consumption for energy generation from thermal plants,12646.344999999994,tonne,CO2,2.69717055226667,tonne/tonne,34109349.32780485,kg +5bf81380-3e46-34ed-9f63-a916a564cf83,CAMMESA,I.4.4,TUCUMAN,AR-T,annual,2021,natural gas combustion consumption for energy generation from thermal plants,1374691.3709999993,tonne,CO2,1.94819592,tonne/tonne,2678168120.2414064,kg +83fa060d-94ac-371a-a789-82fec413c0e2,CAMMESA,I.4.4,TUCUMAN,AR-T,annual,2021,gas oil combustion consumption for energy generation from thermal plants,8327.862000000001,tonne,CO2,2.69717055226667,tonne/tonne,22461664.149740618,kg +b2c68b00-e809-3a09-92f0-04475d579c62,CAMMESA,I.4.4,BUENOS AIRES,AR-B,annual,2022,natural gas combustion consumption for energy generation from renewable plants,0.14200000000000002,tonne,CO2,1.94819592,tonne/tonne,276.64382064000006,kg +0afe1eaf-1d66-3967-9ba1-ce1723d74494,CAMMESA,I.4.4,BUENOS AIRES,AR-B,annual,2022,mineral coal combustion consumption for energy generation from thermal plants,760837.2079999999,tonne,CO2,2.33525776,tonne/tonne,1776750994.0787344,kg +9ba776c5-44e5-3176-89e3-53486042100b,CAMMESA,I.4.4,BUENOS AIRES,AR-B,annual,2022,fuel oil combustion consumption for energy generation from thermal plants,991997.6370000005,tonne,CO2,3.17228090666667,tonne/tonne,3146895163.3135567,kg +36b9e188-14bd-32f6-9bdd-5459639a7c58,CAMMESA,I.4.4,BUENOS AIRES,AR-B,annual,2022,natural gas combustion consumption for energy generation from thermal plants,6937728.819000004,tonne,CO2,1.94819592,tonne/tonne,13516054979.242233,kg +b1ea2bb8-9343-3f91-8fa9-49205eb8b490,CAMMESA,I.4.4,BUENOS AIRES,AR-B,annual,2022,gas oil combustion consumption for energy generation from thermal plants,1156035.2349999996,tonne,CO2,2.69717055226667,tonne/tonne,3118024193.2246766,kg +b753cde6-8be0-3fec-8dfb-e78d0a05c5e5,CAMMESA,I.4.4,CATAMARCA,AR-K,annual,2022,gas oil combustion consumption for energy generation from thermal plants,12825.825,tonne,CO2,2.69717055226667,tonne/tonne,34593437.49852565,kg +dcb11336-845f-3bad-b3f9-62b3d21f3f87,CAMMESA,I.4.4,CHACO,AR-H,annual,2022,gas oil combustion consumption for energy generation from thermal plants,11506.268,tonne,CO2,2.69717055226667,tonne/tonne,31034367.216088314,kg +f0d39005-cb4d-32b1-81cb-9228a0500bbb,CAMMESA,I.4.4,CHUBUT,AR-U,annual,2022,natural gas combustion consumption for energy generation from thermal plants,142729.99799999996,tonne,CO2,1.94819592,tonne/tonne,278065999.7652082,kg +47246afb-86aa-31b0-99a6-25a478906147,CAMMESA,I.4.4,CORDOBA,AR-X,annual,2022,natural gas combustion consumption for energy generation from thermal plants,585592.6449999998,tonne,CO2,1.94819592,tonne/tonne,1140849201.771008,kg +5cb79792-99b5-3c2f-9bfc-a2c4828ee626,CAMMESA,I.4.4,CORDOBA,AR-X,annual,2022,gas oil combustion consumption for energy generation from thermal plants,241381.04199999987,tonne,CO2,2.69717055226667,tonne/tonne,651045838.3578441,kg +2c4e7bfc-3634-3cd7-8672-f6176545d284,CAMMESA,I.4.4,CORRIENTES,AR-W,annual,2022,gas oil combustion consumption for energy generation from thermal plants,3614.338999999999,tonne,CO2,2.69717055226667,tonne/tonne,9748488.716708964,kg +e78e82d1-6a2e-3a8c-ac94-867d7317a0ff,CAMMESA,I.4.4,ENTRE RIOS,AR-E,annual,2022,gas oil combustion consumption for energy generation from thermal plants,2116.8799999999997,tonne,CO2,2.69717055226667,tonne/tonne,5709586.398682267,kg +39c1e022-654c-3e9e-89d4-a2a122f73aec,CAMMESA,I.4.4,FORMOSA,AR-P,annual,2022,gas oil combustion consumption for energy generation from thermal plants,8482.392,tonne,CO2,2.69717055226667,tonne/tonne,22878457.915182374,kg +d3b01e3e-6522-3911-adf9-6a982616b555,CAMMESA,I.4.4,JUJUY,AR-Y,annual,2022,natural gas combustion consumption for energy generation from thermal plants,31363.389000000006,tonne,CO2,1.94819592,tonne/tonne,61102026.487172864,kg +3a0c1b71-ee8a-3e9f-ac95-6ddcfaa7d6ee,CAMMESA,I.4.4,JUJUY,AR-Y,annual,2022,gas oil combustion consumption for energy generation from thermal plants,1082.685,tonne,CO2,2.69717055226667,tonne/tonne,2920186.09938084,kg +c16cdbf4-1e62-3588-8a13-c2b019bad9e2,CAMMESA,I.4.4,LA PAMPA,AR-L,annual,2022,gas oil combustion consumption for energy generation from thermal plants,1776.569,tonne,CO2,2.69717055226667,tonne/tonne,4791709.590869846,kg +f697c80b-007e-3879-a0cc-47af428762bc,CAMMESA,I.4.4,LA RIOJA,AR-F,annual,2022,natural gas combustion consumption for energy generation from thermal plants,3255.0950000000003,tonne,CO2,1.94819592,tonne/tonne,6341562.798212402,kg +5141ec0a-eec2-3460-a188-7aae9c87224f,CAMMESA,I.4.4,LA RIOJA,AR-F,annual,2022,gas oil combustion consumption for energy generation from thermal plants,18227.644000000008,tonne,CO2,2.69717055226667,tonne/tonne,49163064.63400024,kg +a7a9c66a-0744-34c5-88d7-bfc0e329fccf,CAMMESA,I.4.4,MENDOZA,AR-M,annual,2022,fuel oil combustion consumption for energy generation from thermal plants,4148.32,tonne,CO2,3.17228090666667,tonne/tonne,13159636.33074348,kg +dd80ef70-7f49-33cf-a2b3-31b01ec5c455,CAMMESA,I.4.4,MENDOZA,AR-M,annual,2022,natural gas combustion consumption for energy generation from thermal plants,653827.842,tonne,CO2,1.94819592,tonne/tonne,1273784734.1668046,kg +b7e41b98-a62e-3f9b-9884-42fac6043802,CAMMESA,I.4.4,MISIONES,AR-N,annual,2022,gas oil combustion consumption for energy generation from thermal plants,20783.602000000006,tonne,CO2,2.69717055226667,tonne/tonne,56056919.28443066,kg +a71ac06a-aea7-39e7-b785-c0cbc4402ee4,CAMMESA,I.4.4,NEUQUEN,AR-Q,annual,2022,natural gas combustion consumption for energy generation from thermal plants,2782792.5679999995,tonne,CO2,1.94819592,tonne/tonne,5421425127.183923,kg +9ea2032d-7b0d-3b4c-94dd-e8a03e9aeb9e,CAMMESA,I.4.4,RIO NEGRO,AR-R,annual,2022,natural gas combustion consumption for energy generation from thermal plants,253419.84500000003,tonne,CO2,1.94819592,tonne/tonne,493711508.0760323,kg +5cc408f9-38ce-3a9e-99ca-99981a3f9d6c,CAMMESA,I.4.4,RIO NEGRO,AR-R,annual,2022,gas oil combustion consumption for energy generation from thermal plants,3678.4049999999997,tonne,CO2,2.69717055226667,tonne/tonne,9921285.645310482,kg +2133a9f9-c845-3ef7-98d5-399e2ecd3f9d,CAMMESA,I.4.4,SALTA,AR-A,annual,2022,natural gas combustion consumption for energy generation from thermal plants,760696.2310000001,tonne,CO2,1.94819592,tonne/tonne,1481985293.5935779,kg +ae026c78-be2a-34de-926e-2b3243d34b17,CAMMESA,I.4.4,SALTA,AR-A,annual,2022,gas oil combustion consumption for energy generation from thermal plants,1955.149,tonne,CO2,2.69717055226667,tonne/tonne,5273370.308093628,kg +6ee1321c-2c49-370f-8146-025ae5e65a7d,CAMMESA,I.4.4,SAN JUAN,AR-J,annual,2022,natural gas combustion consumption for energy generation from thermal plants,17524.354999999996,tonne,CO2,1.94819592,tonne/tonne,34140876.91163161,kg +148c6e71-2d6b-303e-a2ae-7043311f789b,CAMMESA,I.4.4,SAN JUAN,AR-J,annual,2022,gas oil combustion consumption for energy generation from thermal plants,109.96399999999998,tonne,CO2,2.69717055226667,tonne/tonne,296591.6626094521,kg +c33a85af-5074-3936-ae5f-a37910029557,CAMMESA,I.4.4,SANTA CRUZ,AR-Z,annual,2022,mineral coal combustion consumption for energy generation from thermal plants,16188.056999999999,tonne,CO2,2.33525776,tonne/tonne,37803285.72857232,kg +98855faf-eb81-3a81-93b8-01f8051bc419,CAMMESA,I.4.4,SANTA CRUZ,AR-Z,annual,2022,natural gas combustion consumption for energy generation from thermal plants,59196.99200000001,tonne,CO2,1.94819592,tonne/tonne,115327338.29067262,kg +8e382ae7-661e-3c3b-94cf-39c5aa8490ed,CAMMESA,I.4.4,SANTA CRUZ,AR-Z,annual,2022,gas oil combustion consumption for energy generation from thermal plants,77.458,tonne,CO2,2.69717055226667,tonne/tonne,208917.43663747172,kg +24db7f6c-797d-38f7-b9ab-d35fc3dc313e,CAMMESA,I.4.4,SANTA FE,AR-S,annual,2022,fuel oil combustion consumption for energy generation from thermal plants,116442.62100000001,tonne,CO2,3.17228090666667,tonne/tonne,369388703.32052356,kg +3ec5266c-f45d-36d3-a3aa-f92445e83fd6,CAMMESA,I.4.4,SANTA FE,AR-S,annual,2022,natural gas combustion consumption for energy generation from thermal plants,983906.056,tonne,CO2,1.94819592,tonne/tonne,1916841763.9624913,kg +eba3872a-0dda-3511-a947-7fe901064828,CAMMESA,I.4.4,SANTA FE,AR-S,annual,2022,gas oil combustion consumption for energy generation from thermal plants,919287.6060000004,tonne,CO2,2.69717055226667,tonne/tonne,2479475459.9669256,kg +895b9114-ad22-3982-a2fc-cb5c05562df3,CAMMESA,I.4.4,SANTIAGO DEL ESTERO,AR-G,annual,2022,natural gas combustion consumption for energy generation from thermal plants,3729.1640000000007,tonne,CO2,1.94819592,tonne/tonne,7265142.089810882,kg +be3e1382-05b3-31e9-a38b-28a881a6846c,CAMMESA,I.4.4,SANTIAGO DEL ESTERO,AR-G,annual,2022,gas oil combustion consumption for energy generation from thermal plants,11531.387,tonne,CO2,2.69717055226667,tonne/tonne,31102117.44319071,kg +86e612f1-3867-3df5-aa2c-8d292571ef8f,CAMMESA,I.4.4,TUCUMAN,AR-T,annual,2022,natural gas combustion consumption for energy generation from thermal plants,1004089.7229999998,tonne,CO2,1.94819592,tonne/tonne,1956163501.6625304,kg +f3d0417f-0de7-3efa-b30a-52636e309fb4,CAMMESA,I.4.4,TUCUMAN,AR-T,annual,2022,gas oil combustion consumption for energy generation from thermal plants,21230.516000000003,tonne,CO2,2.69717055226667,tonne/tonne,57262322.56462637,kg +4e8d13f9-9036-34f5-b957-e110c4daa134,CAMMESA,I.4.4,BUENOS AIRES,AR-B,annual,2023,natural gas combustion consumption for energy generation from renewable plants,1.5150000000000001,tonne,CO2,1.94819592,tonne/tonne,2951.5168188000002,kg +dd069bbf-fc14-31d5-8909-5ec114ed2259,CAMMESA,I.4.4,BUENOS AIRES,AR-B,annual,2023,mineral coal combustion consumption for energy generation from thermal plants,485634.10500000004,tonne,CO2,2.33525776,tonne/tonne,1134080812.221905,kg +23fd6eb4-27dd-37a3-ac28-81f053e248bc,CAMMESA,I.4.4,BUENOS AIRES,AR-B,annual,2023,fuel oil combustion consumption for energy generation from thermal plants,593673.2980000007,tonne,CO2,3.17228090666667,tonne/tonne,1883298468.0432324,kg +d00a9cf0-f5f9-3a58-8bf8-acac370a4829,CAMMESA,I.4.4,BUENOS AIRES,AR-B,annual,2023,natural gas combustion consumption for energy generation from thermal plants,7335921.393999997,tonne,CO2,1.94819592,tonne/tonne,14291812129.231487,kg +c7b13663-a52c-3855-bd7f-1c88f392e105,CAMMESA,I.4.4,BUENOS AIRES,AR-B,annual,2023,gas oil combustion consumption for energy generation from thermal plants,537495.7640000004,tonne,CO2,2.69717055226667,tonne/tonne,1449717746.6288762,kg +0e3d759a-b3b5-3ce4-9b07-1dd96e86d595,CAMMESA,I.4.4,CATAMARCA,AR-K,annual,2023,gas oil combustion consumption for energy generation from thermal plants,15901.704000000005,tonne,CO2,2.69717055226667,tonne/tonne,42889607.75966112,kg +0aad7293-2ab0-367f-be4f-b0facccb014f,CAMMESA,I.4.4,CHACO,AR-H,annual,2023,gas oil combustion consumption for energy generation from thermal plants,9928.574999999997,tonne,CO2,2.69717055226667,tonne/tonne,26779060.11597104,kg +4ae99465-e478-3ddb-9a0f-cf7640021cba,CAMMESA,I.4.4,CHUBUT,AR-U,annual,2023,natural gas combustion consumption for energy generation from thermal plants,132777.20699999997,tonne,CO2,1.94819592,tonne/tonne,258676012.94639543,kg +eeec0746-d93b-3922-81cb-df29b61df797,CAMMESA,I.4.4,CORDOBA,AR-X,annual,2023,natural gas combustion consumption for energy generation from thermal plants,552413.3419999998,tonne,CO2,1.94819592,tonne/tonne,1076209419.0379643,kg +a1f450d1-4072-39fd-a5a1-1496fd49e603,CAMMESA,I.4.4,CORDOBA,AR-X,annual,2023,gas oil combustion consumption for energy generation from thermal plants,129529.175,tonne,CO2,2.69717055226667,tonne/tonne,349362276.4693959,kg +ee2df6b8-9a4b-3cdd-a3db-a19b520fc3b3,CAMMESA,I.4.4,CORRIENTES,AR-W,annual,2023,gas oil combustion consumption for energy generation from thermal plants,2335.2909999999993,tonne,CO2,2.69717055226667,tonne/tonne,6298678.116173383,kg +d914efab-cea3-3d81-ade5-f9f529d7f1b2,CAMMESA,I.4.4,ENTRE RIOS,AR-E,annual,2023,gas oil combustion consumption for energy generation from thermal plants,1881.6360000000002,tonne,CO2,2.69717055226667,tonne/tonne,5075093.209284848,kg +b82e262a-3850-39eb-be7a-37276ec132e7,CAMMESA,I.4.4,FORMOSA,AR-P,annual,2023,gas oil combustion consumption for energy generation from thermal plants,7938.676000000002,tonne,CO2,2.69717055226667,tonne/tonne,21411963.131186157,kg +ed9c2f39-ca5f-389c-8cff-2c61512b6b15,CAMMESA,I.4.4,JUJUY,AR-Y,annual,2023,natural gas combustion consumption for energy generation from thermal plants,33233.528,tonne,CO2,1.94819592,tonne/tonne,64745423.65680578,kg +ca74af92-a6cf-3a94-8a43-12b90f4ee31f,CAMMESA,I.4.4,JUJUY,AR-Y,annual,2023,gas oil combustion consumption for energy generation from thermal plants,1573.0549999999998,tonne,CO2,2.69717055226667,tonne/tonne,4242797.623095847,kg +b8e2c115-fa62-30c7-bb01-65bd548d0581,CAMMESA,I.4.4,LA PAMPA,AR-L,annual,2023,gas oil combustion consumption for energy generation from thermal plants,2389.8120000000004,tonne,CO2,2.69717055226667,tonne/tonne,6445730.551853516,kg +213b8640-75f4-35e1-9736-94cb02ad96f8,CAMMESA,I.4.4,LA RIOJA,AR-F,annual,2023,natural gas combustion consumption for energy generation from thermal plants,3521.1800000000007,tonne,CO2,1.94819592,tonne/tonne,6859948.509585599,kg +e1329a60-8213-3161-a483-400a6de014b1,CAMMESA,I.4.4,LA RIOJA,AR-F,annual,2023,gas oil combustion consumption for energy generation from thermal plants,17047.241000000005,tonne,CO2,2.69717055226667,tonne/tonne,45979316.422593005,kg +72f584e5-8b72-3f87-a6d1-74b92ad9bb4c,CAMMESA,I.4.4,MENDOZA,AR-M,annual,2023,fuel oil combustion consumption for energy generation from thermal plants,3797.4579999999996,tonne,CO2,3.17228090666667,tonne/tonne,12046603.507268598,kg +bf97e478-9f54-3328-9836-161e69cdc719,CAMMESA,I.4.4,MENDOZA,AR-M,annual,2023,natural gas combustion consumption for energy generation from thermal plants,699420.9059999997,tonne,CO2,1.94819592,tonne/tonne,1362608955.431904,kg +d2e245b9-bb8a-33a9-8de2-c4ad75d1a2f8,CAMMESA,I.4.4,MISIONES,AR-N,annual,2023,gas oil combustion consumption for energy generation from thermal plants,17791.75,tonne,CO2,2.69717055226667,tonne/tonne,47987384.17329052,kg +adf9a3e9-ab4c-3194-84e1-ad3dc4df8a61,CAMMESA,I.4.4,NEUQUEN,AR-Q,annual,2023,natural gas combustion consumption for energy generation from thermal plants,2346750.051,tonne,CO2,1.94819592,tonne/tonne,4571928874.617994,kg +f7991494-9438-321f-9455-33b804001c20,CAMMESA,I.4.4,RIO NEGRO,AR-R,annual,2023,natural gas combustion consumption for energy generation from thermal plants,265776.68500000006,tonne,CO2,1.94819592,tonne/tonne,517785053.3481252,kg +bf67aa9c-c24a-3212-9ff0-48c3d34ff4fc,CAMMESA,I.4.4,RIO NEGRO,AR-R,annual,2023,gas oil combustion consumption for energy generation from thermal plants,653.9250000000001,tonne,CO2,2.69717055226667,tonne/tonne,1763747.2533909823,kg +a936cf64-8bbc-36be-911e-145a2a6a4782,CAMMESA,I.4.4,SALTA,AR-A,annual,2023,natural gas combustion consumption for energy generation from thermal plants,605525.5920000001,tonne,CO2,1.94819592,tonne/tonne,1179682487.7899852,kg +04c8354e-7252-3c9c-b8a5-315923506dbf,CAMMESA,I.4.4,SALTA,AR-A,annual,2023,gas oil combustion consumption for energy generation from thermal plants,2666.992,tonne,CO2,2.69717055226667,tonne/tonne,7193332.285530792,kg +2cf935b2-dc09-368d-8102-ace1dc66819e,CAMMESA,I.4.4,SAN JUAN,AR-J,annual,2023,natural gas combustion consumption for energy generation from thermal plants,15430.463000000002,tonne,CO2,1.94819592,tonne/tonne,30061565.06031097,kg +559a498b-0a6a-33a5-b184-e398d2e2bf43,CAMMESA,I.4.4,SAN JUAN,AR-J,annual,2023,gas oil combustion consumption for energy generation from thermal plants,58.821000000000005,tonne,CO2,2.69717055226667,tonne/tonne,158650.2690548778,kg +16f193f4-4201-3a3e-97c0-f779a11dd3fc,CAMMESA,I.4.4,SAN LUIS,AR-D,annual,2023,gas oil combustion consumption for energy generation from thermal plants,59.2,tonne,CO2,2.69717055226667,tonne/tonne,159672.49669418685,kg +e0e623fd-7afc-3641-a86a-cd79465c92b6,CAMMESA,I.4.4,SANTA CRUZ,AR-Z,annual,2023,mineral coal combustion consumption for energy generation from thermal plants,34998.48,tonne,CO2,2.33525776,tonne/tonne,81730472.00820482,kg +14fc4583-1dc0-35e7-aed6-c9e5c748b598,CAMMESA,I.4.4,SANTA CRUZ,AR-Z,annual,2023,natural gas combustion consumption for energy generation from thermal plants,53059.244999999995,tonne,CO2,1.94819592,tonne/tonne,103369804.62728037,kg +5ae6c5b9-27fe-34cc-8b8a-f69a29447330,CAMMESA,I.4.4,SANTA FE,AR-S,annual,2023,fuel oil combustion consumption for energy generation from thermal plants,76185.45000000001,tonne,CO2,3.17228090666667,tonne/tonne,241681648.40080833,kg +26ac38b6-4cbe-3bae-bb18-e54ca938c3a0,CAMMESA,I.4.4,SANTA FE,AR-S,annual,2023,natural gas combustion consumption for energy generation from thermal plants,894936.5869999999,tonne,CO2,1.94819592,tonne/tonne,1743511807.4521253,kg +ed505b40-ac5b-3d60-a1b3-9ce6e9a7eff8,CAMMESA,I.4.4,SANTA FE,AR-S,annual,2023,gas oil combustion consumption for energy generation from thermal plants,519887.4309999999,tonne,CO2,2.69717055226667,tonne/tonne,1402225069.3867698,kg +84ad6ec2-9a35-3ef6-9ef8-ccc786168d7c,CAMMESA,I.4.4,SANTIAGO DEL ESTERO,AR-G,annual,2023,natural gas combustion consumption for energy generation from thermal plants,5468.402000000001,tonne,CO2,1.94819592,tonne/tonne,10653518.465319842,kg +632091bb-10da-35f2-9bf8-817084860d21,CAMMESA,I.4.4,SANTIAGO DEL ESTERO,AR-G,annual,2023,gas oil combustion consumption for energy generation from thermal plants,9351.693000000001,tonne,CO2,2.69717055226667,tonne/tonne,25223110.973438356,kg +944c37a7-e3ea-3247-a1bf-4c58682f74ed,CAMMESA,I.4.4,TUCUMAN,AR-T,annual,2023,natural gas combustion consumption for energy generation from thermal plants,999303.0639999999,tonne,CO2,1.94819592,tonne/tonne,1946838152.1282992,kg +a6eb86fd-45dd-31b6-87ef-2df7b98f7277,CAMMESA,I.4.4,TUCUMAN,AR-T,annual,2023,gas oil combustion consumption for energy generation from thermal plants,23735.155999999995,tonne,CO2,2.69717055226667,tonne/tonne,64017763.816655576,kg diff --git a/global-api/importer/argentinian_datasets/cammesa/raw_cammesa_monthly_electricity_generation.xlsx b/global-api/importer/argentinian_datasets/cammesa/raw_cammesa_monthly_electricity_generation.xlsx index 84a3d3f2ccc793a946d3490c459f5fa5afbf9241..aa931b5ef9a5a56f12881e9b74575a11ed8809bc 100644 GIT binary patch literal 1933618 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 {`s(9i9$`DR8AK3?Loge(b0B->)$8B`;#2H2*UF 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ⅅ38 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 DBh;AhvVX|H=_tvw5S}ozrDak0 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

IZ5u5H| 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

&4tfM%Jn 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%0D!k?N_9U#k_d# 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 z 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 t`k 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

?Uglun)LoqP-1%4F*(W8=5hmWs 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

    H)jp|uCgeS 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%0AD%^{pNX-hk&ZwK8^sU1cx5_Vc(kfzV=g4 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

    b#i-v6ydbD%l2>z>EzgLvG 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%0ApVpUbN1*7yfUzK+br)Sni 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

    Erc3x^h^!1bWNgKk4Ba<;5K2?XG= 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�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 YQ5{u$zE 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�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

    WQs&p(u18Xs5SD-E3sp=yjz&$y}7unoRP5^K-@` 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̾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Ν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�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%0AnvW&2uZGA?Z9w(9WJ02M)VMgk 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 Bv8xTfA-B)9Egt2>_ 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 z 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%0Af%?Y{riRv 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≈u+kM34)7Ds)rq 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%0AHQ=Z$0R*Wc}A^A->4Q?5JShlb6*eRuNn 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∓t~+@pLI7XZbG7Tf^@ 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 z�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�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 ayKrs8S)z9rlR&m&VQQ+H_u_a|g<#2XD}~HH zWz0wY_V0PDpvvo|8&26nx2I8&Q#bT!-JLpXQ53Nbi#S%` zRU7Mw?Fv(?!!KiGx8qphU#o$h%8W*;;C7AG4G`#?S^ zC&ObLkInUdqsKFq?mKo^?;@9&G3~Ji^}@)RW?WwlPSZwQ3iNGndq}$1cyK36=n)v) zpRLZnvqdqmM2G!5TQifNi{NaxR$nReIo!q?X7;LaS?O+zyN18Bt0a&3id8<*Vab%r zsaVB(v$;f(Sb>a`#Ubr++KIp75nN4Mxa!#ZyYdwh~P|Nbu^H1TP4 zgmY?*QQjT4OP2|hn&}RZF)MwuOeHr_uc(+MT$&0l!m9`q)~`$=DD{vm#xf*eblFMb zsI1MG6?9LRph|Ry#}iwQP>UI)j(mpRd>sInz5W*qK$$4!+9+E<>S)TrYbGkI9|z50 z=+)`|_#;N6URn=J2kgXpoc`ktvO{<@bF-dFdJ<39&e2dbo{N}%SLZ_)3K)!4VXL9o zD}yo1xwCQ9JL=oe&?4T@Tb!fV?-XG(?Gf66Ww*}cHsPk)66N0CuQ=7?V7ov9x#Z{H z3XIa|DW%i>9RKMEQ8tbVAJ%Wb)S4PgJCu2>TqwyOTSEeK3OkxQ#xqi3Gmww|v5&F#@eB1FJ?_)f8ZYHd?37)G z@ou^{z!1DXNxM!VW=3NzyehTFWeR;{3d6r6(~QR(L{|IAjK}GjhoCE6YNS)_Cgt2z zdU2sHEyg2ab5?EgxL-0?P|SYjA1f8EuHVe-X7^%t=yN5qiyKofsWI${$Ulvx#(YUB zJ7>`3hPATMc_E;|UyP$?9J5a4A}Fm9x=y7#1!a5kyfKbdFOI<#O}~=-@mw`RqY!-r z`uKbpI(>ap)3@D*$5mg^JcAg4+RZ=C6+|=f`6qMiwNbbLIM$Rq$n9XU29|$j*zo8Z zFuR?3!)_M+(U~>A8vQ^cNwO51!1c+(zyw1?BigFdty7Zy@t1lG1LSXRB@=$cUz%w$ z>XIWHeAxL}v26gZT;0d5mfG)G0J{9>4D*`>N?^5(TJXegG(tGdd?ar*>bF~6@%olj zD)%baKra;}Cv5ao?!kJIoKc?C_Z^LqA;Fhd16=xF(x@NL4jl)G{`{eCBaD68{&s}4 zf1$)&>jKY{y`F{X2j2jka-|>j|H2ymjX~!6&5uNnNZV4{{!gT+zb@C3)Si+# zKL{S`uZHi)$J@9Wz}jq}E=?Z=A}Nb_W>~-Fll6~RtYqD?jP#c2dTgRi?cIyGv40|N za?dHm0h}mV{~Ojo2S@Hk^OfYZWwfDwjvk;+uwZKba!IDPdvcj$lwNW1A%DX1afu^1 z*mzY~d6_b$>YhnRetSlYC�Cr~z=!`ukFb@lv|cXYb~rv($V5XMS<3%+}Pa4wbez zJ<)4}=afroZXY&huBeZm#BxDaUJKkrrh9Aa4nrB+!9F-a)-Nz-;BpO+V*M(BI>UdD9Z+8Sz9qWAZ=RP*p{X1bP`gE!7hYCPp z9VD|-3Eq_S5*s2fHNbHjKu@hCm@Q-nm7Phk(nE4yp3b~wQelRmBi)Q{;Cj2J^TKXh zh{RwM&1R25>*60!?wOmVCcg*Dv`TycCvS%b9pwvbHivpwaRXhHP%>VwJKU8445G&vu_r`D1CJ%*ADMx`rrAqx#{5#UN@~2(NrKau_S%3R>XV&k?kj4Nc>Qt_6(CqtdDX*nLiOA4fZFb|X#cId*v zv>ShZJrS{%%epjG1ca6Ic+<#6lK(+@Mp{TLn}c$mS*X{3EPqmsS6kaF68#A$0=rpX zd(XX70qW9#TwCLhf7`$3M-%qXc8RoW#kVx|;spd!_sjx5MO&U>e<9q9Wmx)5s~D5B zK`X#b$tC-H7Ct8%i(W(ogEvP`A13PB83au~)=JW~zzWSCy@k9(%cUpdq3$=Fhn)=G z6rnxsiX->;uRbDkNY!;HJwODz(FKUF+lKd{1K1jx_TV{?0Im=CSWEC25O^4bD$2xh zE6!-C5G7AxPBvmX1Rg{A5s(1QREobp(MDnMlIvz%Jy)Xxov4zDMCeYvF^Usj2FI5w z)16Xot-AFmXV?z^4tsx)Dx*LssII?}sII6+&^YkJ~F&3JPkVg>1Dams{aEir3z|ocAF$!&R;RpHME(RKKUEkry@hoi$B=Gb1h!L zyXi`KPCtP=U{bPH>P!G8zjy*BwFFEWRQtt~Qje$mZ&819N*VUQin-eO}|^uOyhB(&N!tW3*)cce_oG+Za0lBJPX1-APfnsv7Yq z>RM>C0X@)gLx92HgQnwoJ3cfOY5Lmr=1tl%){r9Ej=BcCu(+5L)}p0kD2ZEB@s?em zPlNulx(m)_48Ub}(bkUL?uDo5kNSj))J2of-1b*`VOw=kBqE}xZWv|YXqjITYIUJs z`hL9MdKAg0isKB^^yJfw%wL}Rm8*({EKit=DP}0S5A|em*o@`44{ZS<8o;Q_DC?`| z-;WJ>Nj^Kanf=4-jg_9D*Y@@pKvlq}NqT@!AMgE|X+_cke99hHELykl8Vano*MQm3B3oW#%o3Vj(zPsfzp`VO7T_8}$hW$-ybC^nvp#VFbU<7hw zhtOcD2~USQhcRf4>tDDv92S3dI0<#41!)M`KLZoYK`80oN6Y}F zl%Q9b0Sru?Z_!LZyqJal4_9viRmJ;-jnW+Y(DCEIp=I)6 zYvdYW@oSPbnSu5BZ74eoIm*xuhVb@nQjX{N+C@6dMQK_>m#f!?+M`jE>cx7DiN4A# z?DyAY)IN&w`)q|3+0j8>uclfksxQ9_Q44VeW*z${ruis8Utm!4MET%R9dla~T=7~o z{t+cfM8gmH)lSO;I|_5kox@BI`E!0!B-dzkFtW|thkWc{+z;BHbFxPNuw}VigW|pf z?=#mFF@(cB>QJJrQudK`CwE_q)l@VReLepODSt0?0rvkRDGpW;DjrD+$r?Z6z#5(_ z217}!`z;ys8iHb{3LK}^k$r~n?XwwpmGj!fxWiuw!ztYl#xbC{C4 zpTZ`h6j{od%(}_Y;XX=>yPpc1BT;FMowjRAO{fZO&__JwIog?uDPz+;a`zi6HvGnE z;8yi^o7WZSs6n6r8qiDJn+YD%>6n0vep!~qf;-Rw*wh9t*ak2Wm_^0r%j9= zzt9MN0lN}4J@-e@23NrbN#^ax*3nJ7SJ}X1lcHU)_VXg3msZHaf3habNoL}T8t#fp z(Ypr4jPzz4X7pDIAx>md>lTg0s6HO~bIq;#p7NyqY{rqbbpoqkUN*B;`ELGC4_f7y z-?{U^Qn9(E%NHeot)xbbY@qV&-9CLwTG7`N!&zvt@iy@+is zOUkZRAns&%2&?dWPuXP3tgH3?f@={$iyNvQ@LZkvm%wwM{WP7wK-31FOCDl)70XX) z{~;zYmdWo~$jB(mU8`)Te4&X7OA31^M*o~1A6=^)G_*qhm=AC+Md|djKiM+!&T_3y z|27WXwCYqrM9`t?z`qdiAIYa0Wc77)D8SdEL6Q0<>U!@TD4j>p_g@&RjVXR3gyGf@ z%qp=P%_loWnKpCa)_;PEkyS8MA?wJhuT&FGc1lolidQXeDy13+OIfHb(t zkPdi|v<0Pckj!; z1nl`CGQPzKS9s)UVoKOsmWsI`vv}q5Wc^iE7%%F`{HAvDds}V()b|GDP{3Pki5;S6 zJxKLOSFey|_F2m5B|IbZPpfDf*MN8fkN+NW=Mn6}D*$HZlA98axM zLr~7AB@!_a(kir)3Rp|%OH)p0P{E|q!miXfNdp3Hl&+kMw zY%#c#oyES}Vt!!1wAAPx%?AO&H{?f*>*rp+Nvp)bOAUnEv&+37UZUOos?{7@OElXs4=|%s)5O%dKKFcm zenj_omq*gW#MPoAI#8_?Pb;to9;@>cVLlE~4R~yebjhVpPuXJQ(1L^>d6lzLh0h%U zVYzYPoQM@71T5)eezL+>vGW?b6IeyH`)Cw=SL%Q76;_N|(rT zQ8rUq$`f!OnmHS4Y-qkyuWJimiB_oZuEEG5KQug1KQ#o5n9? z{nzKF(meW7VMhB>B1!`bt|r>e#+;`S<*&4~1{V)_J80h|!@Hhr)H6V83>;s*gCX2- zBh&z5uU&d_QCej+@w(i>-x8c@mJzP0}j zU+@_(E`32gtbjvVG1rBtfJ=$yzJa)(NUHS=mr`c#0~r}!xzJgJ8IwGYy7eW(!mQYi z$m^6grwQ(kNBHV#RF?5?`P;^7LX9NQmO#jSg*Lra{uEkEa%D!%ev|B)J$mW)jFvmH z&Dxl#7j0fc(O6HO!`ljGh4~Vn37a{400%RI5KULS5LKKEwxWX^Fp0%Dzw-r~TCU93 zaXb9^ik>NYX#jRSK$lHHT}S634Au4@DpBirPC_g&pX#z)A`~XKmnG|;u)>x@?S|U9 z21>7pg!A}@N|#M{!U?LCnAd*Xk8ijye|>I5`^GzuZf07Kw)hDR1#&nG0GMw70H%9# zne{A@eQun|%^4CW-COP*^C(UQ2eP~TzPIWujWOx1bLoZk^jS(YS=tx1t6!@7(A+$z zk_0PB^fa>HpWlv^7V`&^IWEp_-|L35|oU4QgQ&xAMCmQVC z`SQeOCaOqdae}B|PB!y7nDolkk5(9P^auqxHKWxI9=WD8kxnzrx?Qmy@}e37w)8KF zvBaR%Br@;k>4z6+xA66oeX7ll64$j;G2vV_Kg_b%Ybyo`rvrFaQ0~EWE%PhrcKudRiG9 z(ZVQzf^2`lRaDZ7v`sa5C3c%O?C8f`xH_E{65kqG&jKk0rXB^0zZOO)1*T4fGIG^b z&J~_mY;Y|a&Qj2>lp17|F`a7uqxkNd28%6b?W>;&reb6K@=VV;U_a972~#c30lB4< zd}%tjd-E$GyVzts4au}>F1H@#5g;f&0)z8EAr*7&|+=ug=(+8&rZ@!a2)!EMbyPW&ohnwFI zf5F>tS2`zCUP*9PUfr17gWtdAJZ+(M`Q60%EuF)JFZk)VzX7MKq*mF8IsV7W%k{0V zN3!SjFig}+RPEIvCTdJ3YD+hpitXP>t4wp~Z*6Lt_c_=VyML#6+uRvL0>u7W=70O( zr_LGp1IsXrT%c;=%Vl%=waV=AB>CUNZzf;JOqY~%7f3%-E&6Nz4Ly8465xENyo^^> zDziS^dPbTvjN;*r3axEb!3Ilgyzb%p*t+bK`u^Li@Q|>@NeR$5qU67BGw4DYae?R$XD-9nOW(dZW6g~-J37M;QfotL7T5W~ek%S1?v)L);7 z-wK11batN`)UP?xT28$9Z}Qn;(a^$EA(X2OjWx!UDks83zHoP*ezImy0~<_~M3y=8 zbZKHOAGJ`csQmJxW>|5rhd4qLwc=dSn<8j)6)?TvLpu4YDh zcbMNX=Gv9?S?k-$FVK$rDbFvLZa(6$z}dsk)+?lzGgsnKmfQu=REbFnB-*TclEao# zLaWtx_SxU@3`(NLNT4Gm(Zw`PH4P4VOrIRo-L0g4-d(oCVs~*w)Tz~Xqj2RXhpM9L z*+d+p+0p^nBFVfc=2d-db49$YJeUtS4n$Yu6Y?t1k7lcwYwl5qVaqLGE6^lWnA2&I z<}YA@C$f;K7OA0HVe;!1F}HqXExK{foa8y2EG(^7-VI;8^KL3_qo`M2oBt#2)_B^J zvvs(C`JV}x*k=s48(^tX{_x9rvot%wqHNc)&__jWld!O2=W4lnyGG4gvinF#ikX)y zdkldFeR*o*zrx>WqypRqX7^6}Ba9#Yt*v!_?-|kr81)N3i!=$e5!JaB?gaPq3f#|M zm;~F!*4Y(5Nj>TDnG|C>=& zsTrW=mP8$OWc6;v>^^(hF7iqZNojz1Xajv0(Y_(;@(#Gb2mZp;gzS* z&K=k2ULMh^ckn8pv$O%7MJmvIZj1gI6i!y*_)Z;YcI$uq!roY-;x8IJ?GbG^WoT6} zQFx&vuaNm#SU%#EqcVYXiUhaxWlbH@77H7sViaqJg^kEauiM2x8~5`{d(Yk>Dg6Q6 zfs&MyQF@NDl+&7B8%k}cK@M6ofMHA!mpOxb6}`vWF9J_fH%)~71H3{h@J0^W(>yG8 znpZu0ZA#HI^_!znrAV?xpr7os_8nwz37RGiZpG#Ig^Mk#r{TGJhY`z*8le+J+dw?= z?;HSWe+MsJa{7m~&)PTWw{1C2=!y%dTewgyHtDxHxhL=BhqUY}bL_ka^(DZlbV-Be z1y#f(7BW2hJ6)+XX|ncp#^Zn>t6Q$uoZ_phzq$D*%1ht;OH=dXAX$NOnT5ptBEswF zj4|oIXYcZt1;WV=IH->((#+)mtf^ZUU|gK8h-!17;)wUX@; z9{vBlbZXAGX)>aT^yw9@nH?TEvj+aH6nM2Kp||{+&U~NJ^!<6+1HgcYSvRWC5u)f~ zsc_a3Et;%rRoM%kex8D%-alkUomyG=#wn*tns4~6(_72ATb-&rpD#&O?55vaeS7Wx zWh~>}{bZmp^{MEwNy>T(xVDhg<6qJKk1Y*}odaHO>!*TT(WZshN*Z>R)a9j(0R(l6 zVIN&`mv3Aq{dc`TElOve(X}vd@-!%QK>-p z-1HyyuG$IX4ugjbyxTba;KCp5->3CzSivJXw{NjY_pk89ojHVCu6&-%KlKB{C@Jej z8BHI&QXBQSqw>w&0d(_NXq@iwf(N$(jq^jBgOt8epRhr^_UEse9225806g~+zpPIK zl{NKiE*}+(5e5U@cf6dPEYofpN-feNts&C%SOcVXL)Yen;X=y9!#R0Agp*ZGRDb>a+W0dv76Tg@Uv*nR8u(=w27xGmJL#ZHwc%D^94qtgtMn)aSWoH zTccYSE}1`7&@@;Sgw5~eMOuYoI~;}6G<7_8X8F%7tyslHWYl;FvG;lqXNDiQsbNG+ zCUm)f8?3mv3TD1<%Kv$ zszk~Sj}biZsBt40=icvIch1%~lhYEqTW`Sbkk|!DYGqRQnB z|AUl+o$EHAbTzy3%YA6JY1A}tsE&AKCz1HNTye6bv(+;EuidL~*w__MS0<6+Qvli)(ij_Xp+0y#kbO%o}I!%c1w;5|8m^ zzEWq$2YArS*HbL;jil^ zRk+}+S;D_cFoSG^^Z74x?g`SC*)%E}GwGg-y~Hyd-M3hSqvy^OCbuyTe=wI?g2P%+ z#+~41Ah`eM3H>pOU|Ed45$}(>VUsGlC7wz5+HG(|t?~e%JWeP#ee&=0E})(EXfQ z@vge)6}O8cpKz!`|y^#W!EqAc;Ic$NwkQGyPU{J**E-XBy00>B;)g- z$0T{a6T>9jMA4X#xYv>OG|b064^67^s|7u`Tp4+M zlN!#=4n-`JK}kqmKfJUGHKnw8@Xl4(OUz8m=xFlOPh5ov^2o9k$TIdUt`^{W;rJk_ z(l1EHkROR`8jmPGMR{`^60TcsMw9HI7TH)aW1E8Ku_qv(^4X0&(08HwBG}TK(S3Ql z_n;eXE^ihL301zhb7`ZF{q01U{3b=z)s;CV0gSdA=asjtn)eJ?>Mk$-msB zQ?_eJt~N4(^bH#OPJG71JY-zGRE02{mXM%qRwk=1G;EJgn5qsrye^#TvxqXk>2ZH1 zIc_oA57YNmZpatUNnI$U&va6%G<+M~dT~|6J1}-Gs=&i#ZBhmvzpv=HH~#s60yfQp zbpvkOFiw=bpq!kbq@1AK3qeU{L9Xmoc;0Fk$yP<-b%TkM?ogjudiHCv4+pI^?;e#< zCyz>~N4fzgK>XMDML?GtYi^{ke1YD!ACBSyjHX9xwGWznA<9D5PwfNArR7SmityKX z)@8CpR6d>QBkn}0`;7mS33E!!d0Bn2ZG}12vwVAS*0*o@#EZ%e$Yf2Z1t7!qes(R* zA`Af6)r8QmpGLrF^>j6KG4PA?=(r`1a2V zQ_R_lsbdDDZSsiY3W9jh>(<8X@kkA$BF7k`_9Lt`+kVyS%=;MhzzBzGY@0GTOj99lP+O-?=U|>NIGWWC?r!+j~Xsf4)U4yxNckHaKU|kWM@&RS5>$<{JKp$S<$*T25z&d)CUsFEe!LX7 ze(9h0d@tKEcAl4kE75^?d^=_G>mk-IT2BRS6x}60y?5ct8VAU(GaqCjpfxt-eTI;y zfx5-=vLplq1_feS9TDY=(@YlE3qI=<W#P<3!SQM+(jqWf7MSN~ZGcGB$MaC~Ra1mW)(ZR7CvN6m zP63=%pg}CtlIZ}N!x{h{*UI`f*7xHo0WHv@ECq|!${%V2P?O}6wqxN_$eHXr$9b(8 z5*z5^Ulv-&;Gk9Bf}lOlT0n0%>vm^+26T0~WX zJEbg;Mt=8Bkg5rB4X*)GC4OTw=;y;@u0YSv>nvLCS;Rvn?}ZG4qX9e1Vvhdl%a`Hp z3q()~8w878g%}kA=hc=QsR=Q6Jxb!{^!_1O0VjH|9!5KZ8O6j_!a*ThVyYK>%#~~X z%rYDZbGDMy`}WV8DT_v1FaIm@l0AA<>-4KdDIzYDr zlYJE|cMlGm+beM;?x7Om4@E#;R6(O09K;iz{rT+zXk+EQWtQ;cIw0pVc^xr&Y?#8! zqS^k~NHP7_NHP7_$3j?GL^OS@uHlB+GqWZ?GQh%UT3T6R4x+?g5)evCEBs=y>T4IW z?{+6}WzQR!B8Gy86NNtRM^c3ALRIx0T>XhupYv3S;_9saAz=N@67J$g8SNiBa z{+Z!=uIr~2Exr|NsC38f>$os-Ki!;knnqoeN4{PoN^H z{-+}O1ym$&D#Kvl9O!J_kGg{G|7svCjWZrHq@`x@FYDhbff+7ek1c^<$2wjGR)nYR z@00!ebeC|Eqd<3GzwB#TNX28*V5sb|X@L6e&NkMIa3qFOoewM#$ArO)9wKc!8^=N= zvqB{r1~-(j3H*@u5&W6LCYh)p6*cJ%=dkscB7oL-OP&uIEs9*(aB=9AjHz@h#LQwd z4(3VNs}jH~oPJ(r(*PQ)riX_JO&}=iKq+@wPCziAFfb^ssyE# zR7ctLKJvgeC^ww!D5G)hhc{KBE}pL!_qw-L?xteMrJ4YMNwf_VbxO6})vrY_LG_9( zr!`*00;*Tvr5dE(nr# z_YSKTszOC#W`$yi4B|9%(dWu`G2rMTo{}Q&*|*RHXW=(N=Lt-6#@_jR#@Sth4GO_o zs6(aig<{~>48aEEX<{yhRDe4yA5lSBdD z&c-fwgm>KYD+boN1&XI8q|3sEUzMl=glYTp5H{xQx2Q9=YH*|Lj2Be#Dz>IjvGR^g zHjS1VBukN4)qcBbzVZ~2#0QHj29}+L^VN%epsm-G)r|q#!V1Y-Ly)-pCLa?w?ycW{ zU6YT3&Z$wqAC_m)1)805BIi*BnmLfx_H?cacvb~hWY!{jyMB(gT1!nxdd5d9>^Ss1 z-f|{3Kgr#dW1gJc<7P*gfg$Z1ZMgfR%1wIrQROD}IxwC1TZs!D8xhEGUF?m|e=}x1 z9`12VEdTc{xg7W7K?>u4pG+!T%}~P=h_%E$;)ztXnOk+VQzs#*rC(jfG57HZ>3%H2 zvWNkBrkmIHRV+a!ee^#f9Z|NQ@bS-xGlu*t+6X0?VR!`z#Q)oJEwtlRw4td<#99)1 zQae4Em>`V%)P-ygW6J6Xggkw+yLEe4>#qJS9b{;j@gyemW+pLsl0WQ+T~m)g zx(Og-gTS!7h8~KNeTeCj608Eu4F((d^#Arn(Yg}4!8?DoO@(xW=R=9f@U%->c|3fC z$BV5pPjsE-(PUF$YEOzSr%a4KN(FkjNCH^eg`4gd_^j{uT|N**BG?op+gGDH#U+>a z+N6m@Czn3!j1&=;JR=^KJm!-zZE;43nzzy0;M2E0-wwiyycNp&p_(yf|3~19gT~`x zzkITphz)!)9H-20T`CFqb7uH)3*}3j zWazLz#u9p-Kpd-07B(Es#Fpq~g?s)q@Y?R%?BA!cWWHY&wkI$PMrAWAC0keR+A3;7 zpRA+rxq=QpDtPpJ${5RmJt2FWCqlvKdfup+$75I@OC|S-o_(57KG;jy&eWO|?1prR zvXkls+uSD`f3rG>L`*1tcvQQd+qLt^rRtPV8Z1*S6{&?~p+l123;70_w#<7{Eg>fV zMmBA+YZ6CbO`ClVSQlrq3;o)8w$Iy1e}Xm{s>9G_l!NEAsunUeinH-YtR^8M71f%x zO6Yb~18AXKEy*{oU3V@%R8^nPEh5Pn0T;&R-siPEp#6wcNBgl=%c}#j{HYr zR*fo9-3$gX0Ft0CgsZHAEBC!Smt4xcvAz@^Y##y0Gv*VB(e_;(2NpeuWv4o>!iHrt z*Zq37wO2Z>L`_fp5g2vG|7PHgq%DR$Cx};h{l(qqv~V_q^RiqpP?GfZJzU9{+IjYP zHq{iHk&SZQ@1-jE6MK?G|$n9T~URu~32=`FQkVhH~khk1{z7{PDtO zY7QC_FC+R;S>-GKr7~zKDei|5LC`jA+(mi9h}LNKv~|O*r=t79z$3wXvxoK>)krt zauFZ5XDfr%P*=7aWRZj9DYaKMfG6{YzeqWwJd2#<%im&audO~DUJwn)yBJQ3J$kTb z3R5`1G3aWG$(R%)o@xE=Y2*oY=Lz+y9D~D>v+Dx5LVH-i!v<`UFF<=EO(5%s%Zay- zgMV)&UrD_*a;Q$GVV^Lk`_~$2H-3YST4W|5h=fSbJLsF?GB6*N; zs6|X8dF&?{0*a~oU02r^_DDX7&sTA+VCvC=5zaZ zmFP8dbJ9u_dXai`7>zI25o^n&rE&2tow;5Y1W{0P8DDqnX}<)x9TCZ{JRs)6*xX$> z(`m*3(I4HD ziL{&h`;@osL(mfG;E8l(sO-*y$~W+ezlT0$vll-xV160!f8Npk<5h+l$R}=L|3l(2!ACb;13-) zwySlM&e|t}--np*2}*qL-X*;k>b&n8sciDSdt(Z$LmTLe7peVR?;%(x2;m42`}y=I zTK7aw*m1T9EyW{a1@-dTrZzHVwEk6{W%T_nbAg{>d%4c*%ABR>te?Z ztJBNDHZ76$u*hV9awEbU?r4;K+q*XhwA7~^R;0#w11)Il5X1MYiPmT_6S{kFi5Nrs z-SNXjI0F2cCF+7VZEM)Ge*SroZ(C&0k%D7>dd;_E_)+-F!+V&er2Ivc#_(-J6OPDT z_$XSKiV$T=78e{#WJ=ix#{WE$oUV-A#KX9YbNgra08G`h+hiKQ>Kd;_49M zW~}^W#cgZx3VAl0xrLB&!b_#A<&ui8P02jR94s9}0H0$V51i>XO^&TZ-n4BD-?WX+ z-QBUnLcNXN)pu&cr%xPQ^{5QKyfZx7@eRA_(&Lp6Oj4GavTy>gyE{vL;Ye@p-)m8I zVeB<#qS6OE9oN9LQ#N+0YeK+9l4l&a61xmgV?o+oftyg1L2Y+zw!chADdwMFe z!TV-h82ZO(w5MMzNJxQl=v{d<8#L;Y0~E>7lecD^B~f3?pJfG^qN1XNA%z^Hgi+~A z$}z#yt2l>lT2kmXJ3B9uNWC{?ePuBqt>em+`jLK(NZc}VlIf~YA)hhq)GUtmkboY~)*Bkj zzly~_bHF&-A^i-dtUBs`o*Sl)SHz=vJxLda@vn)skajK6O4@feWv3`Q|mw&##+A3Gnzb zGK5Yf>%Hd~slIV#EMnBR*iU%JBU5}PUU;X8S*yNL@-_9xW-z{)02^&3KMFnGOeuf- zaz$Q{l2df_dHc2$u%(${Ih)qq@!+hTzu&gxguI75=#^f1M?+^im0otNQr@ol9zx<0&W+IE@_u>W=JZIfHT^Ffiwh@J!c5Yh zyRYTW6i~uxrWMg`OTKn3y}o>teB4cF_N`5xh9Zo`h@46{IRIE#kH*!*I!h>)7>DJ8v{S;q$Ts6$?x`po8 zzafEufbj6}Z&$FkQgznunzdn|r%O6@bT^#coG&Pj>; zjlkRA`wvGErB@HxRe=w?owvUqe!qU$$a%QMdl2HM#@k(?ez;Z*%*MOR@cc=%!^3|+ zYLXMTJDPL9X>t$#;dpoCwmi0lZWYyGmba%ul~u+yexVXboI>({l6s>U`#Bl|ZSh3A}% zsJG`iBIK)YhD@LS&A?`@=Lmh1tAbX|YsrN~LJq~2SGSbpqPO^f*kv%3osZ-~<2#Z= zOeve|B~`Se%6YU4V{gel^k41mc*3LB1;3$1cD~5H&JP*kU~SHt9Gu%#P0YeS#*?V-$-BxeyC=|FfP+e zH&Pme0%(``GxX7QD#PY*S;)cq7FAUNL<*4sWi8G52W{90hqRE9$!;%)sVo{+vSkh5 z3-W@6BW)RScZZMNe9-Ij5}W`3%8b!AVpG(oA-a|bfBdi|G-T0Go+)$kOqJ$P5ZA_0 z5bw`X5C?z4?UF}7$nnSxnnA4A-O9&&A`SUmAZLpB5heKtbMTx#eZ2nr%eDpj;6+@F zvB7`@NvkG?Ke!DFrs=OtW%!UtFc8H0sgGz8Ln!bOwhc95>w9FylN70 zdVXAmy`e%P&Q6+r25x|O!9sq-oc`HVBcpicn>{nI{#4*rM}S+6m&%celHG$BFpb>p zJiD9sk?yVfS1|)xi#X=6#Qy)tX_ky^LkPeEcW zYXj8Zk{y^mHu=%f&$~1*AaB2Fum*Rzm2eaiAj}n9^#yIbsMbOX)(BR?rj}w_AVSA8!@(3O7v`1rCga^jGo8XVR3E7!0oi&#gsam(Zi1?O07*&oK zzC3XHE&rNyKTJIUjlh6@sc!9}Wh%8Ax?6w+^H}Aarwiu@b;bxbdZ8 z-XR#*6mRwgd56M;F%XV*5$7Zzk{i-Z$w;}QYKTx$R!2RKO2bp^?CO=RKh5Y;NiS!@ zm3Va1Ef~Pa@2P9%Lqq3{SzBZ+Xq0&PSU z|Hwvruga6bfHYD*YfW7HTqk$e?)EPDwkgz=3nC0jq@?5;4W`_NACXjf-Otts>f!cO z#Ur<&3&)32QY@DBYaPi_?ze37`vaFC1lu*}6_L3jh3*IEkF?YSFX>0>N>QhMqJ**1ko_R6Gfn8M=| z;Aevga9~WEKG`WT3v16^+?EZg?eIRrZCG`L#wc754XLje=p$i8C*ECJPGe1QOVa_9 zN?J%r86L_@YDn2rNMD6n2TO;wI<=Si5F+Ivvd}Q%(mq+2_t&n&cq(_;%(ER5al<0w zx!$e1mf`%r@O>IE{F=SBM;(tZ)mLEOtZ6Mk*grK}?dE`;&)NX*OrP6dcXElrpn*j( z*i?pWEEW=~_g(fJ@zv9{kS+y(Q&Jj;v;GSWbhAo~j7(G(B&IKBFnRpy4MDqXIl(H{ z%@aRLr(Ne_MWdR2L%cX-2K})#4iB?l^K5OA!0OP?pD(>Bj5Y%e)EuYcUXHV|TZeAE z)^vwI{C(?K67AI+QYPv6#iEN&VEsxz7uk43wF>)VcPSSbpe(fL0 z&m8ONjlnz{(>x81+)=~drWL5}X}$vUA+RT>XOPnieXdQO>fqL#OCbbi3p$bdnII5` za`_PADbytGOsA~=jt8SbRVk)y3lUvrf{xzv{h750P=5A_*K>8gT$whv)^LM4q%T<- z1W){*T*;HKRb4(oqsd0?bB$3zjKv>9`+{0SgcP!o@=74t|9~r=nfHg3MH=E(P8)XQ zoNOihSVQ`2vO+GEImWwVQ;t&w`cNtRmj3cW)32^?I_$(OLtCg|gU|Rqfu!OaHGGDUS3gkqyN z2RT0mT8*7VUv`~}hh?st(8MQf`5YWDiBVq+UOD?4mwn2eo_3Ydka3M4byc_HK;>yn zt^*4vJGQX$n)uk0LXb#3%~5u!E;{a*SQd&cp)HG#Qv2&j3A%EGqJa@~7zcuid18KPWO4 zsH>yUf#et=7fZ(Y=~OHje%pZWl+BTl07uKw(-xaU&L&ZO{)JQGa6s%SExKr>%X`X+ zS%a8~NyQaEzPpQ8+qCEs^@hl@!hh0s#z=%6#OnQ)%{WsmI*B6>Se-_tNOq8KI6we# z?YfkMoBTG1{;iV~FMW<%Z*3g44fiF-D?4uY{uQ}6N{)M8^1I=1%Rt{QJ{!*RP$HQa9n@nlBS!J>Yft!%KT7d@+hyi(4e}E1Y~Nr z)p-{u-QCXKRXjcY5k>NP_#&dI>yZvbtmt(6dS(MO$x=nSING5!QPmnqBcR_*pk-4t(3PKW0 z8OP2!#&T`9p-F0-V#74v!&Y)K5iM^aag4xxa78JB`Sb$w5grk1zDA&-j5X%aEIQ>fDa0X|vxy-)cWHkYF#*H77y_D}E;Do9i#5 z3bZq@Foh2w1$)Y!{bdn+E0eUW5_nZ{oOki@9%+lOmOXPsdM7?IcZM2X9^6_2EdC6A z@J#0+{=U_?sPnqmwMznHrqeZNHV{$cnseMGkFSwr9p0FX;j)-M6X>}dka7PS&xP)e ztv>6Xhr=Wtie-6?d{!+XRoLmLe+M4>RS0xZ2y|8oJjdIw25%%S4^#-emyf?sD*u$X zbuRp?Io8*C^kff-k(_;8{V|!t8%fCBE7j2!VQ*c9|Bkk*SqNCwpdI{ZyOzY28kU4x znL>G>C9GXfq|v~FxO_ysNwMlWOu}B080rfA$R0Z2Ux7p%xo?v3?0R=W_|EMx^WNWH z;Q@AZ?9nCe^k@_`F$O}rQd2$yoQKj#S@%Nxi{V5c_9tId1{U>-G5jcGzQd2($HUb$ z|3+3Mad+WBeWMz3R(<@mxN~ijLZV1wZF4O7Y~A^Nwdm@m>(9?75BQ(GaONJaEdp7j z?ynEi48{?OruX9_l>&v=ug}4PrWi!0yxfycyl>@J3KY4N3v^i$pT7QF@Zj%*+v2O! ze;j$Ya2~0JYeNEZ_B%KG>E5?`erskVz_<7F^utzmBnNE$G_6_CkxJ3M^XHJIV%{QX z;2q?jaoLbm3wqyGnhL8ua8V!?5o=^=vq^8$M^I}YH;9S&Tbx73|9Y#aAu|$Bu~j*1 zA$DwLD~IO8jE~P9MFX-afLo)UaGG$90=M3w3pyQ%@8&AV`aDOD9XPPePFSK`gc~`C z3n^p&{$sBexxbfD(=1?_6WN^bgODSSqv0B_i-=Km#Nz241)VPHd1L|P>mYG#RIdMO zJ&1xow+@5+|3$&{nBR;X9>H*`=LT&H9GQcHJ4CWv`3Fc{m)zgIFTy4$v;OcXlQqN< zt4@$tlX*yeX*K>^?!}JX%E^kIRK8VU`(o|a)i+mvv9~!P8Z^mtAF1}}7muEcPstxG z7ev5RPCUBg0k)yq4jC}eI+IlMfk*x#I^;j=`9KBz-~%PK)1B_kO{l=tz_U=P>&YsK zkYdwA++qy!mXO_gs+y5PSaeqGX85W9Ow}Qc(Y=!8?v2pkBI0f{_sTw}j==vz)mwl? z`NVCb#L}?~(z&FHbV$b%(jg(zC5f~bUm2-4jkAfbeGN;eCf;s3tp zeBZgQhiBL2a(H%TesSNwduE0T)h_Pn|L=wU>>@_*0xHqHrD=ZLdo&q|V(1aK1GCy# z_}6hMgZ_@!1)rSS%`)yV{oPHo*Bkj$$=7CJ`b|H%Eb{Sv^)`zB5CrJrX4B#Kt9X#K z>;JhhvaT0XuRTpgq%pcdoA9g9^GS;Et@VrG1j2XkTpuDyoTVC8P+DrcjZ$c5h zp~dM87`mj3?0B@*_i*dU#c>-zVp^PLgL3D>T@)sBo$0pL2~EA~y`N`~MM>HTuT9^c z-%D_lL@xnjwB}!AE)Tu1hD9xLT-q*n4fmv5%fX=Ym*akC=9YoFmgdxq3#&eG&%U7Z zDnD8xKFD;ryWd&fteyavfF=#!kUK$=48zXiEkEvUlBtqbCp=(SNt|Lul3bpBYnK5@ zLrQz}s|MW7l@L6as1{bdtdDmou|qF3K5KokkL%1m-h31`iXBjbjGIQRBZ9=4AKJ;$ z*e@Pccq~yVnGQ|f7;o;7iDBB z70JOmY`Q@(95%`)5T?N`KQuLh%idAZ$tPI;$U$H#yhcykq_2(l{ne|{HqAXiZ(uJ7G?KKBjUVKte{uP%R;!tU3)Kt-jBu1H}XtJt_OmBoCA zggIHHushr}6jKZH1vo}^yCTI6+ZW&%4weVPycHCxu_3lIiaKNXVcCy}fA?-_8r^yN z=Rt>uCc&C?=h1zldl;1qDr?e=?d}f1ok-qOTJLf&_~_}w>XDDsTpLVS9A{!jj97wr z3n5v}(+ta;t+g;Ft_8XOw6()6hKcVIi3J$O*nqXzS9nu3AK_(YAt_ zo4IJk7>ZzD%t7~t-vMitumC`r4pnH{Wy9xcjQdxTFa3^bHfLjibqXfz80%dO@BDEa zyZOiCS{Q8m4Jg-2nmz~K@q2P>^M~Wc`W(?m83LdFuh7_%bG?~AYLNp1V-17p2g4ku zNmXIZsFmnKfE=@lKh})*{4a4b5H#aX;>obNC*8l`9nW8M46f)#EAS!BoZgoTQ|4!P=Qg*_sx2!>&b zN25FpAQ^`XG|duXF(~WDkQ(u5c(fmz}&pPTQstOj(M^H|A< z4X2Vs5$vJiVXb@Jd3SMfS+J&iXlU=}+4U{n!iAcZ6)G&s6x_A6!)^XzwMY! zmQ$l616EX_!l(xfc7$~`>sIX{O}qT4{>u3`ZPA#GxSL}P@oy0u2;3v30Qfy=SOn8@ zj~aAQpW^@S3nT)s{%WJNZZA+vC~_mEkKRI|M44TBB(%(Z9Gh`HPxIIciTx`0ZC1WL zVcc{X^lK=em5Ls&D&U`h86y7c;`nfOk5O!~O~h3=69wsy!-?kSwPhUQ>w@}BT!wdt z*1DIjC1#E&BLY_0v40Oy#tWkUf%t_h>9Tei@(;u>+8+M6;4N0{Q0iMIK~6^yj!zr% zp14C5H~holMfbYegJ&rBiW-bAqCg)NkubN+<1C%9!P-XT8zpz#hTN@#fJcYt2~&&cHvzZ}KzCAjL9f{%`v z0iKWcF9i4-V=glDJHy>as<7=RUqtzPLpZ%a+U_8D3YggKma9>N@6A`8adm)mw1tNY z2Z7Nz%gio}#?$wE^ zxawY}x|&~XRYhvjTOUtmKjWu&YffwZV?UFKxNZ5pa8OKRPY8TqRT6Pdh~;)b35gQQ zaKebsAJ?ZgB3)ixWWhBT^hUY+MTgF&kixWgC7kxD7^QaC+Be1HCQ=2MC)T!*?E>X?$2!3n!<1zgL3 z{vsJZuWa`Maqkl$TizjENjc%(6n@tai)A?82~(755f_X&IM@F?y0|MM)bx8QYcyim zXkXZE)t@E$F?d&<({~+tY3L*`z27}JEuy0qY&<|2zo8vdXRjwRWhEes%e~s=Vu(Hc zeqXdyA3My-*JLywb$eNWD`zx##M<2L;AG5s(UKE?DV-=(BiMgJ?S`4j>ntU$bp#9G zzZ%n*)MNP*p2HuG@?U+k&`Mx-Gub~p`Y(I?a}v+!w?+Fyu+<{?(SJD{k^XH0*Prss zUB%qJCr^-c!he4YI_fi>(4OZ$1NeF;igZ2VS9{*YsCftIy@Xu?59crB{RCDJLMZM zSwguK-bJd>0e)0d(qZ6F5Kf6Rq?*oGoL2L+kQ!{_qy9sePcv2&LRmBnun#69F1>D@YpOWWTw znVRCCL+dTp>}iyS#vtK|;fS7A_%d9_lV-tgI0R6HgqAjoDQWp16DSS)v?Dlu&@@!b z%dQ{p*zOp#oxqL^foF9 zPv*I~?N`-JWd19~NbxLvw@{W*#FnzqM9tFU7PlLcS8Mv&@Ta5BJUzv|7^4~SdZ_Kb z3R9Wg;NPb--n}|uI|VYL{X|I=xYDasyG!Zs3E6Q*%mEt5_y@=&!YM00S-fpPCOwcV z^9bxH!Vj@j$xgn3v|Cm$%OV;WgBqs{?hOQ={~8Dm?E}n#bpfe$e^P~m%U~Xzc#&-V zX$w^hRXJ&_>)0guUuJzS$B-`1$oIGo+@~(1Eu=Q*;+EXNEU^#xEx52C2H5zEEGx%! z5~o|Gb(pN1s=~NZ$Q&LK49vP`ka!Wfj95CjeU^yaRSLeh%^uwNhd>PeP{!EN(3>-T zeOh9k{bb^Gu1OS_ENL$v_F5u8p&8uM=&N|JC5p3I`z2nf;>MQT7et)nVcf@_{+t>r zmxkq@LlHaOx5fPY*VWORll*}DHK283ZyPWXn*^C;N~G1#wdw2H1a2JJPF)6WCQ0dU zZBc6`a}aHTeLS4e@`y_83*rX7G^oI$taweYcuk~#9V7YRhJf{^^Zt#$nuLVwU~4O zgg7^lv>S}98$tc78?3aOa9qJ%k^|<2oSV)30}Ihd=Qm@BAgyxW9P`<uP!|fz0dQUILhWeJ#G9KY(kNA?e?Lp@S@Hhe{|^^ZMln7)aBfip z=4h4JOxv6+T2A)Ge!J*>TT65%v(UQ<6&zi%gD1x;wm9SHOa{tOA$77%IHkZk=cjP} z4yfpPkUvA&JVhk~0Gpz9zHD4!t^ltoZM&yfV7r0`KqO zMS^l3jK~hT(6T>2>n>-!_7Fe$19$9@1#Zcxqz-F#c<+ZHL{2B1J*0S}t~LL)9tEJU zmd>o({#u(0QTAlRW2l-!7h6UDI_^7gipM2+Tl|IB`l(;b<_&Kx97#3i8+2X23s5Y@ z_fCGm@Bk|ppjk>QWD1(jJ(<4BjOsIc*?3euab|09KxmsgK*%7P(Z%l!4YuaKFr=v%oZa6Soz}z zKZ*#~Sjgi#r_$V=({_%apVkk5ZTbVh&0{Fm7cvJrpLTmM-2!_KbiOV8Qdp)}cM}V- zUHa1t@T6|QK18bm_VA2&S_GBbNtr6(+>v!x8F31Z(1 z%V;U5zO;3T2;s#64pu8LF5iYPI8b~f6L`h_SWSx7`p%Q<@ zXlEK8a=Cvxbl|yt;&MLdLVzL~zk0T`)yLdo3Xuu%PnpHzr^XBmK*k^%+9Tn1{i_Eq zS*A?H;-+O-;O%+)an#S{BXleM=kS8Vqu%O`{ed`b$8T(5tj34K$srRPhL~UURL_29 zQ|!MiKMz9hh&11pd-md(*)rASUv!yE)UgL*c&YN!*uNh;AVauFauh$G#I5SJ(+X?R zOocyVQHR+)soGVa^SxO8-QG96k>cn-SYo9L@yw=2S8=0iqW@Nn1@Hq_;cp@7mt7Z$Z>ETo96oA*vwz-%+p-*Lj1o!%y-U@eTjQY<%-3#@MG_i-OEvg zYZ+iNoR~NNFjR66nENpKLb@?zgM#*Gd$xF73)Jx96%rTE}TvrT%FAt2MPW0OeA9vEu|KR4GbAi)@YIb zOyE%pB|AJ}d-UwFoE&wefOFQ}t}rt34McGoQ&%ilp%fPzMAKi~f9xTaHvtV>MtT`9 z7b2JMYrDO2aUWN(?uT#upZ)w(sgoR$T$*O~A3=Bj=S!m)cD`2*cjPv2?HDInkD04G#eX9~ z-nu)xa=HKG2ioqN5G4qRTBHQC01h&;c%Ou@EVcF`dCJOg4W!EhP@4cqNvE2Q)Of&+!+E=j0RSvZEEPszU z7;%?BTMc;l;uYa_=)D?=>n*=rbi9w(@t%Rp(D2D{_ttrkUk9H}Y8_VG+C;&<@Mi)U zw5hRc%w*O^;OM@*{z{8yBbl1CpF=OUyOyWntAtp?Ttv8!sUW4?i3&!4Ukmu#HK5i0 zI(7&&mXx9eCSKyx;*Z_QjlIiw59K}bUHg*vH^EX#2^00GZ0*oSzR4QbNbQHC`31pz zTvGtw0G+++pf;$tavW<>8X{NRJTP7b>Pce&zggUUa`7N?}gi1=G8^Q87PwTe%e2;mPBYKlUT!^!NTDH_DO4hKFSFG zbYv(6Dog(wy!*B~;VKNlXb)q%;FaHP8~zvEZ6ZxB?o8Of?%bsuvA8XFT!92j$r9Nd zNVf+{y=IVS^vboR6qsRCww1nLCMkW5XgYX_LNoX^-WFpmSMA0P@th4lM)4g%l9C=w?^GbmfOl4Bx3}?}I3=X`2 z$!RC`Iv2L&y=_)dX9>w0^B?)dfp=SK>;o(iMtnF&)~{^A^@haoGDA_l)AaiM0B-cYyAs>@f>+m`=3} z@;z_z{c?Ffj(IVs_9@N4Fz=lXg}2ODQ4N`*j2i=~q1#TqmILM!j*af@mnISz)Gtgk zRB!vnUrK7>-sBty$;e~C_hB%C(WIMNxR;O10Mcb=xp=`QPBDYg2AQBZi}{=vPw{iM z`}3P)m9PbU6Gk!QWU4;s$UvdI&?MB<&jf^uNZ(gymX87nk%^T+*$M?42h23&JrtUCjv_uXEGVNv2SAD@cAK0(;&J!uO-(DsM0t-yGC{u1OIL%l4x#TZ;TV&sW3V}DV zUFCI-BLAw85V$)C2{AEQIh#_pE(!nZk#Uvzs+XYRiP|+?;P>hIqC`sHbm))VH3hMh z;!)t5h)({>`AXs`OGOW+@4ATA<{Jk5MIUMjk(e+n83PL3IQ!f)+MwKi?E>P>hBt-o zL3YZ|0yj5y?W~qMvSmeGA9wit&VTj2>n=*&=;kz~%=VaVZ3 z=D)9SNs9Tjdhi`^-nS;j>J3s;?0>#rEjL7s@6^gz|UT5=& z%YW`UA%aW<>1t?dsGo59XCbK3O?u8WK_we?Wx7y8@OxPLt#D;~kPLKc7$i#(Qa{DA zxfO~)CX8EGJPtt&6imjLtvG1HSu@fol7w&}&pa@wyYy`fQP`sL&qtmmy07pUh};F%566hnKT^U6{lp)T=N??_6mABNz~WQ@VrU zCh#kU6F*9yZ;2ypLAgqU`B`6-V^@QMW8?i#zKg=|HJEXw9lFMjtOmmE#5Di+9}7sl zR}xx(j^ZG%O7z*+E1dNp6(JG?@lFw6dMyXAlbC(fQXup-GS zdO&KNLLm+#-gvT%0V_}6b?xIqo*f^7>Qw`saHwRbc4cb5ycxkG%~q`}&QoVY<}|{0R&B;U8lW30jWs z{ykCl#nE5Vu`!LTW{wN*Bwq8g#4$%evl7|Y&LVsd-HuGrFV_p7R$h3P!Z!1`6jw?~ zUPv*2;7bGxGSlF&h>v08ByY_ zc}D`#cV9ueUcfVGBhahx3RWb-!g%eMWc!qCY^Jv{IAtU`T&%ai(+zuZum1Uu(c`dW zhIKWN@3T|_Qz<*LMLsZ#zhXspxlABMbolVL=jpN5Xn~=VX4}IcONK93X(QxlVas7( z?ZuGDJ)VTgq_@?1x#Yi*A z=ZWGxow7y-BdL%0$y?UavAQq#Qw6nWX>a^H09;AYg2b>=km)($cEn~g%tawcp{ zGx^z9<&JX) zJLzRQ4JjL^Cyl^-y9xhiw%fhk$(TD@`KK0i^5OPrr%NxA z{{(cohIkPy#R@*NRve_qcbdaU3`3oM@(*vYAj#@z^&0{EeNku~;(BnwfM^1i_KEF7 z|Ix3*KlKI*!#CqZY5^z_vxO2o<1y*CM-}baO~g;ffXfRFJdt|Zr%RLKQ=FWkt(VB9%&!9qgzpCz^jQ7_#BH3Y&TJWhP?8-o4c9qqX(#ORmmwB%O_6Jh1Up-a6922#Vn&J z+S$cl_Q6bJcSdKklOI0#1yGg4BVe4jEk6=BeUbSSC>@?C*gSjyDmEDkXK#loTPjt%s}*DAI-+Zze_uI*7wXTtri%Z#h(XeM|Z;sq3Ndw;UQ1=OA6 zs`Dd5h|NW~-UardH{wc999Dc(Zpz4{S-uvp?L|q#tv}i_%215|u||VT*O`{w=Zh*f zDA#WNSFR=Lx%?$MGAR`F0P~Fs2`m+NxlIil+w^A(YU{K5hg;DujZdzRc{+v}QW$7N ziAs(m?q4|yf;ftiJs|ydG#J?%$jA>8r`&7L05@X+))I1f;)b@)2H%*$hHOjP5%W>z zl+Q1+YCh=!S$X7(ENSF)ZwTCiC@70>m_c50K)9##hyT) z4$W{J>pY(xOjIz8VY(GRrLT%fseQ5aOEvD_D{@+vYztv$hh}y8d0Y6l zt9}v-=9lM}A|z(nI#`2&B3*RMJ5H#aAlpC$xd&4BqJxM#m-bX{=h)8So&%8gjaig6 z#;k-~-+t)meuGp3G^~m4GvQa4&}ZTEeYzTU1Ng}fUwU;XG383`!zKb<>RTi2rVpZnSDq7EK9wv@Ih&N+M7!HWN=qkS+w zy7(}mjgXs#({=Pc5S#Q4S zf)2B%b5eU$e&C;lyC7-*g(Q;&yDi%LpRrMj_gppFsDEQUXqU#V#5RDxK#`A=>gO4U zCE7ed#ESPxeSru#+`9~DXUv&QpgZ#j0gFj6=s;Bq3l$1#eN5Z@iEh}qfDPOVHJv#d zs$s^g4Iu0Q-fZ~@j_4vPv(i?VDFy2)Y#VW?Y<#~oP9+o6VlK6<{S?3sWD>XMx z;9;V3VIf8UXp<0y1QQLjs`f-3dVcZ^D*Li0Zu$vEV9#3_ryqHh<&?S@Y-*U0B8;qZ z{SY}Wxt&jH7-C!)ITWaCN4+H1hmMvM0GLo->wG z#wVkSK>Os9+$(=Vioirx?V0?Ad=5-41#qIbIwJqd)Cf5>>k<74B|UPR4`17UD#27# z_rf?{GnXA4z0RBzcAG;}DEyO8hCE*-R8}3a12pSv#)pT`TkOD~u`eHYxs9fKkRv|7 zFEiV!z9XA1B%5i;kN!Rc<;0iT;3>sb;CLXkhIpT4)}dA^WheBN70w1(I9b)k$sdogKQ=Qoq6T&*Wc&}@E>{1= zS)Qr#3E_qL#g(!}_4+-IU@)d42<0aK>LB8Z)y;~j^+xAL%vJZMIAXUQ+C-sUs^~dQY^^)dY z4L(Tz@p7b+<3{q~$_**<{NZ1IQ9H?-m3LjmE$Y{II_?ZOPhKG9DqGv&40fU36u69b zU3%A0iGer8Tp{k>nbWdGH>mboiwu?=IR2h_-K);Kp^dCdfQ{WWwOav`^nm@3NnVSJ zq4!shM5B-Hf>i;yN!M6u*K9LVJaBN15}p7L40%M|bp)y`*US7o4l~_H<#G&HbH;WZDOOzZjdnNebX z%|(CPE33;6P}#gYC1b_^?6`r;3FcOPr>8YRY5|^-d>uYlIrK7aSD81>LR4V*6(ire zW8URKn8?M?$n~|Gw=Yb!GY|6TJR)tb$0T>AQ*R_2mM%kH0Fa7CUWzr6Jd_P?$nzMy zfebmz;#M|}TY{ZR|0!DrGC9miAxPhc*P2QyG<{)k%I;Z?NK_v|31>`;W65Y~oA(idoO;EA!xM?a#L-!9EWnj|Oif45^ zVU~&nVJHYo3~jlX0rgV2LJ^$!qAT_;q9hm=;bKlCkI8{QhrnMfb_>jJS`6}&jxWF9 zGacO~9aq;5L%H3yf6?_{`=U+Iv##6rbGl!mXP#s+Cxj^7);hw-BeP|gi= z%X64FS#Gu=g@^Jm&o~}@oK(0U9!qrJuSTVWNv~4a)MI@Cc{{SrEl!Mvr2avof3N_+R#OBD!@q zDwtSx8LjP_`Z|nPQSk4VsQ+r>4RdQRYNU+K@RQWdp2n+$sc5;Af#sI6q#tXz89*uk zlQae6;SBr}qQ$SFTl-~3z1-FlB4tQ>bm>42!D3xCC=9KvH#RSRcP+i64igNoaffJq z!_-{Ippq^L&K84acl~P$G#C5oXqpfMK3}?(d-KQbN^0CHOnt^S@4FVu#&*9HK2X0H zOES1kT)+jC!Qek`4Q_4Y0Go6C?5B3~cq|i$c)_PU=DDI4x5}glH^L{pl%dOb8LV=< z-=pwN?p{nhg)o5`-trix%4O!3co56fh7qz2RYkdx=t0{2Rl6{W{lbtpZZU+9G~1pws} zG7C+^p8}{LJerKtv75X9%u`J5eeMwt-%B%D6O29_3>NF=gx%R7DEM|+?5t#2n~oFI zN_yvG4VMegNf*MPLMO;_>;OCBbfojxqtv(w$yBDDP&l@vzfq0Sm(a)Q{k|1)mBQ?8 zCf~j_HcnN3!D71LqpL%C|3)?Clh{D=;ZGm^ac0f)=5WsW`Ih}l?mEY=bEv1kq*Z!D z&D5Ig+=(ko`lu0pHg|zcCg_6tVMf^I4u(2!LZ*=3ALDJ!kgH6Jymo%) zTw0T8o^x{ZFe5dxmO9gl;Ya&VArWsvVHA8%i)LVCuIKC&nP1B_VArQBuajgiEn@YE;#;^=OQW`FktA%y6;u489#-{+P#wszDYdHHXi!4uOhll$GTrQ zv@MaPlZ+zj&$3!pZOZIG$qSmt)Qf3WWON_cP)il~5(YStM7`f-xJDfvmT0vNt0I2y zOe!mh==24#u5iUqYZuNq>z(Y%fv-|HBfPXtofbP;|4cTrFNpB}-ZVn7?~l@)Y4^6W zl&$QueG_kv%U{xQuf6O0uA!({K8Eo_jcM&5(@ufQ-h`LW`>q+$XELn`Z|!ofv?g>C@#q_b+{J8w>cn9ZaBma)*90C2m^V z<@VXiA^(^w_peBZ@$M{^(%LuoEE#!)(pu4;tN8si4Ur$jfiIiNNetqkmU{5&#ZtJ( z1}!8yq~5ky*)eFMW5h_(`7Gp z5w0m0rp#nsjm>=T`V{0h$9sxHYiVRglIfDDvadE&Dn=Dm$OFa2MV~c=GiS_Sv)T)x z{fNeGYh~WL6sUwo9~l&e$R}appBL&&9fQ5UB&eU@;*6*0V!G<%MvkTEZV2;^`Vh=M zNQf@ou?+`1e}A9N5IOv(z5Mq$W*IMeIY8t+bMm*d0!h05HXA%u-sYBq!mV0MI%W{6TgUzd>TQ#NEiQci*T!j`)s2-oaNXoN?3COY6?k3305!O|s-R z0%nyLZ+0h)y45tFK4@R5Z#cQ4o75{4TI14qr1IG>S5V(W7^}{+T=UUXYZ~(%Q(!BP zV21G)5R3dmS03L-(W;e0IXoSyt@0YQ?Bl5j3Enak?9;!JcJTIG&Ll>_*0QRUIJ&r# zl4q_Tclh%7>v-g8hTLLK>DdCM_<5*4z*a$UgPodQsALIvbT07dQ28Gh?yD2lyLcpN zG>;WH2n}f9CCGYf^XB9$3LS{TVb8PUuNs4c6NiLr82ez zp9UHSC!ytrOgn!HArCu|{=1*H^U?eS*(MF;{oJMSB3XnNW%tothn*Ub zDut|eLmXVQJuYHS<|R{X29*kyGL#ENg& z9aqo8ghgjhk3=2Inq#2xD4P-m^g`Ba_sk_IkZM{Mvg$@Nf5oSnu}be?H$cbv!(wzD}@> zvYaqAiOqvM5B)w^cWB9GmVD}U{*SLjhiqx;4r{vyn}3#oUUZGJ$>hVsoF&(k5F27?5g|ml)XM14SK$$yDTP4;zg;o-E}rcW+InX2|l-% zNvkNZ%dc_8-`>sNI(3k)qx}xM5OF2hmCTAkZecDIeNg!iN7#`8VeB6s$nwL{@LV(o z;}z=KDjJdnUV6bsF;IikSJ6l0g-5}R@hfmf9)&{h>eTQZ2aTIG(k|1W%l8bzgZx*u za#uZfi9bzxTC$8<$fsiyC0&y{)qcfZJt`*M;L9D&zv|!MqaDk?Qn=7V9=X*UURVtE zOM>0I``>=HBGJ84I#Q5kKqn@Y1@$N!$^sK)_N`c5gE#{dWQGJT-L;BgzDGRii9={I z8Gy99&lGvOCuhgVq*{VkGMc-TQgn>T6)6~z$;X7^VhX`}+lj5exs2z{7j*2s;soY4 zbaJJCv3n(Vd$)OH%%@)Gb_R}`c3SzRCQ!)|s~mdaIRaN=z|1wtaEUM#<22cCkF7Wh zm6wv69V!sgLI+dH!rxIjKR`WnRVxO6(y{WPPYHDK@67j&2X}~nxXz^N#MHbkxs4)ctk#h>bzU_$Zz|kf`5K`bp!c2l#pK(rM@s(R!gLs1> zVChIcHk$s@IRs14dETG-noPv*9c)}va}0*>pdis1vWnGw z@!v-cI?l=}Eb}F0<9?W9vZN3^-E2>T-&wAz3_oSY=wBCKe!7u&+^O`I_-4p9Pb zp%;GwXqq$7)Hd-(Pj_xu%Zz;sKfJn8R$P_!9tv(X8pNm2IhV!D@@Z?j`4k-Rrj+PC z`X*$c-(+Fe!^}1dr$N6L0_i_CeMf+w{_;5&)&rl*?oQ=lQ9U$i`dd3w2*%wEN}}_$ z7bY={CVPF7giC}dpMuE9r-AG&s#rrxyV3?yT3E1z{KtB7npiZ@@&+3`TdZ9E3F}%v zpO~RzZ*g>^EUVABdG1BbGyHd}T=7wGr=6NsSifC;@WYO++NILHiCE&FIGYD(+G|yH zgUma;2BB?wXx#nv8Vdu0k!tC22Fb#;qd*?^YNub5;Cb(c ziD75%ToYA2Ml^L1vf z$hN-~5p635)H~)(Tt*pdL~drY-+V7jWcV^$JySTS@wr7kyhB?KkPm-F2IKXgF1b~p zCt|m-EZ1}gM}M)xEGA(sa;=mY@&m zv537kM2H30xT8=y*c^l+I$?=XiM+e!TfF9?s8KOhRCZK|PL!n-tu-n4p<)QxT)jlN z`4b}st$xB^yUfo_r>=_*pnd3b!H(u|pxY6B8syv+g^}IBETZ*JXNjG#{naOZ zd_obeFj&k!7#fZXz4k)!itP}84=x}7jih$R%)*_Ia?vl>P8FN}e8E{fm*V*|eH|6# zr=%4Gvv*y1&)ks(o*Q~Il$8-{miOo?TT~w;3Ub*m0-e4%SJDe8S>1<)6?zaqLCaYM zb@Y9xX&#f`-YrbD;UwEh%(Cr)!5ZHQ^FmH*=2jhhp>C(#^`N^Piujl+*Byf7Bm! zqg6ybK2xxcGXK`Uf1Rr`pWsGyPTAEcVq=KmG`IBWeV@=It<^^g*mWnLahe*76RLH-U*xvNt+SFh4cy-Nqz2l~^ZZ!6( zxEC5W#uIoH{`Uy^@M57FTMK05G!I1vN1!GsnU{x7akc?JIr*>`jN#k^mohy1p*o7^ z2#E`XJh&soH~3R5Z^Tk8<@E74mZLv>B3=w^20dv5Kl%tK&w+i-lKU^H&Du)AsXJinlVay-vt2VwX*yZx8^eC%SIMMO2#D#dZmOVUyVY8n=oxjs+ zv$5y92W_AwEoUcurDn?AsA@In%sT5iPPG?%Se zitSW$6(Qt}!^jR_{7KJ}z%{Fm_+FOBeSh(FIt-(W+ZfZ4pd*FDo3*-w9d$y`PtF_> z&*H$}C!a0a~=<@pAb2kjLVcEHxJ5Ic(!C31u@_jdq7#G5rD1c;dutxTi zH0o~jGEdKDYRh~cy?zgCV_tOh6VQcCH;73)yYGhlKWWNN>MscAxFI*7J1C~QF-s> ziw8-*tQeD%7VDi}H+0?!D7+xd#Z`SaEE2@Po+N$xTc7<2@u?d%{3-+;Cd5^LuFyk*Qcu&aE*3U2Qb9S|BupH94aKa-{G8SO_V zXAbVaj#}YS{m0j=|JCep8NY4q_v|{jn*$V$EtAjr*XtHVW5q%P=4z>aC??E{a~sH$ zu}$A^=OnBgLugj1Mc=Pd(`d678NgG0w{(v@Y$-6Y@Y-<-!sx8{%b=?wu;yRT{6ytf z#Y~w=B66hWYoQE($c7g)3*BNvxXk}+w=iJ0!nZkJ@a_Xy@m8sEw;u=n3k^!^|Bt;Ak=T5I2!YSshQln8H#@kASOXFGS;)e;s5ZU=YR-7tGi z%}FXdZXxH-OJ$|cum#t-;vd4pcWOTJZd-y!#syQp9uA8wH=M1dl5C#AU|?U~!6mBv zfsp6zN9hn}YdRN3d}?pw??z3_YBEmAQsN?>KR z#H9i2kKm2tE(obsq@3uh*nT8tx@aQT2iqu8uLS7mc_woQw=lgGWPkH<<^lPcrAE3z~=;#6-WM9>cGJeShw%1>)L+h zXX8#txi`L@C9g>ZUtVH=Y$0tiTQ;}qL>Ky(fkF#&1+wp>P37Guh~=Fl8yvEM#$9|V z9lji*m=lBDQ{WsuL~W}h{C8xHk)a-aGU@FfrQjA?ZxV?1)%OU=+%`Le5LWW{YT8&O zN1T0LFst{XdHeYXP01KHrhOX=nKvCdVzpZtcHm#?U5agBSo>0@ETP?#o;mP+v01?~ zp5S_bxQ)_(gUR~;4dxp-?kgx;)*=$bSbU1bL4iNwM^8H5+OR)Uf`!{DCF+38=bI_h z2e6ZEi{FBEIUn^H?HCz;PuN~7N;{$ZpikAss$`Ip9wuezQH|LOD8z?Tn0do@{sK_& z5O&p>;h#<-HRT?{cNj=!{o*Yf_=)&E%Q-7Pgs*Ov2^l6X@%YK$XD7xz`Cd!NR`^rn zbDp`$l~RMmQQ3keK`vIiGM2@XlCiF%=Ixe&m0HhZd;;>|yBVk(* zZ+dPQiBDy14lfv;#}wdx2QvtfC~Wqop%P#i&6g;YEhjP$`{`{l)=X%9G1L^n` z(HiKTOL3&Ecd;ANmqAeSAHgvFi)bCpll+KhW_Sqlyrp8O`UO#LS6daYmVqKkSP7A1 z)f{?S!B$q{URam!VJTa0gK!$A!2NVB8`OtSCTQ*81ckr{!xx#=eaS>B$)ChxLqRMJ z!&GhBhW7%$`=*6h6~xlsxSB^))=n-gAG*K`cfp6QQAa0@TvNCo)4Z|qP6*7Jv*k|w zj7=^L_k<$!E*E8Qrp#|zyfzmFYxfc-X|8D7X7ZMcHBZ)||SzK*xPj2D^0JTCnU&y0GI zytHfrX`8>b;4yo$7h#clv3H?#(7xrK^RV!Jk;8}gozU5z`pmxWEBz3|TMnXH`(e<_ ziZcX8b`a`+x%#8L*4eYqUVE+e zzH9C6Hb{(1`M4qJFs_M3aww%-diQI_!Z2V~o=gAaSfQ$-EE~?wt$)tOE;bO8Jy(bP!m2c=~p0UN8xDr9qczO2&Nkr=_9ufjRu&L42KEG z*uy9u+vGaS%#eK~1FhcHEdY;Lq(S1tmRbOSw=e&|z9vHgP?H=d*sJFZE9rl_mn~D+ z?pHP8E2A^vOA2$Kyim9tMYjlc0eipDTt5W~DouZI_n4k;W$QY52qr`)eQ^}g$Cg|e zPeIPoVSTy&+yATB=KWUtoo#H%%N3$vnk$3QlSb$kk16eBmH938LKwW)Tj z7E$Y9p^b#J<<~XL8OResQ>R&Q?;g?$8cSash* z8!3E+rK;nJa?}OTWMc*)r;;=$9a%-z^Vy~^3HnLglm&%~D}}zDASE9pz2C`+C)c;k zZ1j5|{;MvFiV`e~GZ#5d8b7Rivx*~>e(>(OdqWDX)RUL_@;I?1XY*@*bdl#GouTPg zyJ-IN=W1;7{xapIKbmF??$|N2PHjv*T$A$%U`oEuw&<}y&HYSXO(kEQ8HxYtvw?1TD%(m zlVP?3hvI#%Vk&d!r|kvu@UOFPpOwfLO&pGsc$S32Bci@b3d^|bsj2#!uFjkAq18Cu zRltPa1E8HB-Q2l|e-v0Jp*?R_-}GugSrgFzYdr=wXn3+*>`bPlv<}H0%HIm&(XBdb zRv@&REST3A{Q~NIXr2EA(V_$;e!SV?zZfCFxtn9#hYf8Nw^NnMCHSwQF)pbh3e~Zp z&eQzVBHC!17HFqx_#ue<{C?kLu}hl%Xa*$1sDHT%NwBFX48>0%>XpNr^T*MAMaP^j z_K3B|_+>F)`(H9bXGZiw+5Cf3NY$w%TfY$bKWqsZI1Z046z!K+w?of?UZ~LtGAM;y zzY=;aQAC6ZGfE!YAN-cKpNO2b{IhQU;8nkMhpU0~|1Z?L)(%Mmw4x;LW}kz8<%2u` zH3}Uzr*nwbLGN_RkYho%aB8&vi%Ty|iI{i9%=QdtKWMN>=6pYQD_sfsSoY)fw;}Fy zrB}GGyUWF&`oNSbSKv~E3K0z0oEHu_O8?MZE8QcC5;YgcAU4y(K*6Ey+|v7T1<#&F zOXUh-q$e>ta?fX1xzD8xBM%E*2|{l!B+UJSn9BuLknZ#={jrLsaE;3L=wSb+!gdiP zBKGVAqOnIySQ>z0FokMF8@q7@`*%4uvp>m!{@I@YmU{+UoMvLg50rX+eQ8C_`izy~ zX>k`?CblA8vH!$F_1~`JQl))m%%6>jV>W-AVQ8+;EAmUP^jjk2J_2oK);*k;R878J z6gs>@00)K{E%{|%T=q~yIE1yQEc{cY>leEAwFU`z1N@q7=(Y5);O5|KX->h-a2)2; zS`jLS!bIO2T1_h<4--|1NdQa5~r&{n}pM>nCdwJFG8Mq`GH?;@JWA z6!@SI|3bG2KVD9cC9m-X0F^zPye$4YN*Fb&t#~coDEh-qEB(#-ias_p&KK@=3(!Ll%3I+900g4|3Z&FniLO*Y7MdPvNFlR#R z5Hw7=zVnHr`!<)6?kBR-t=EnsNJE~X^u^Wun3cd}J}vCH_4yH9>Zbr&J?bQ?1y2B= z>MmyWfPxpo$O~qAy=eu|i1)cVhv>ma=s_p`LLA<(Ty{*vNhhuDBGM*3dkfQ5O=8To z^9P%Lvuk1RlI2Ybv;6^H%4?~%m-$cb#qt1M3#9Y9a0uW5jy85ci|?|L_G=iUeMcxb zfTI>YsNTPX*B&00+*l^oH#AX7o1-@m$U#Dcp+z8ZlUH*V{aN>xo6TxI^h-kUELdMc z(|5irNJ1Zjg)1bn=Vs^nVuTv!c;h4W6?(@}F0nQ8c?kqFI1R22K7s&@v-6D18lpu} zFe&>G<;_fD>5E)Q&&vChGzp4%W)L?D(QtCRZ^hw*8pnr>bX*{;s#hj$${)YeNH+}3 z4UVRDS}y)4sf9<`=hOKO?7E@PFoF-o>vw*Am3eUo@@2D2hO;SFy$)-OUnGu5&_t+Z zD0(4~u%z3ipr|Z%&$B6mcy#AV7RHKyN;wWab%e`FG|}8=FeDsjPO(iR_fYa=Mv0Q+ zy`#6{KeK+!K9Xh9ha7yV^JMy+f}tGI4659+%y_&`bHHd2km2C-I>oA! z;cR_N1E*6+Do?!Xjb~uqdeqD!3CqeV`{d3e`7>*yyY|S21A1=p0+@N(fT3PutZ@Ok zUj#Sf{ATm$c@AVSfGPPvjiVngf#7EO(#v&6{|^qQK_T3yuP!oW3gNhdm$z`lqNOig zkD%qrUC?~_SLewP6r-hdLDTEYJl^7*G_?%nlRJ6aZQMU935%{-Jb)KT{4@(>9^BHc zT?k48a3kZktKF$oZNL|=#=&$)Kl#?_)FM^p(fy=S_7$e$jYN%(_pJG1xyZ zJ_U*bAcBTL>!;A)z+ZpphF&yMT=5fkXK4^a50Nj#)h93YL(_hraB?ewtLeivI>akUcGbWf~{R0b^htIehhgl5FM~vfMp`XUe@n;^#Nt z#_rX>i(jFh>f3?R2z&S?Bjd&jP5?l(fS(QZPDcaL_uoM41G=5KPZYiv=p=hM0xFWq z0oJbLJ}Fq^cwaZ3g%)4JA$ilB{Yvq$rrt6R9fyspQ^%iDi1SyJl2mf2o zBykMdVrMb1%fD8!OVWtR$Q!hji_q+^oW~$`rRIU;_fa+`Tma3L#Qki>c;@!pr~GB1 zIvH-(@y2k@^`G3yYid4US53M|;<{UdSJ+K_QsXLTM!5*lm)xt=LAeM*ayn_&%mzzr zUcZSmI&~0$_Y>sVypNv4aDD9K9pt6>SwyC5J#6t6eMNLN)YvphJv%pXpLWTvPC_FO z8vRQ+B=>q7*A1>#%2fA&3VQXkVDhaspeMhbH{WIwCyTmyX`6c0zaYkWu$I5jiyNc; z&YqL-j1CSSluW`NKzmPm^PFVDjf)U4QRWBM16__RJWos}SqZ~SqTWm#Mxl`p;s&(p z<`=kAvDfI8KL>|^*r3e)rFH2RyRGgb$*1z=MK^vlfhpsMlCknSPVQ4_F_po&l4;k~ zf$~dBDVKC(Sy=8$n< z%pUmg3BhgA3J%`k(L;d|LLyS56@!zA2h1Mz7~3Pfuc<7hM{Fs?2lBs*Q?CRnWJhnT z1Z{P1`V}bvbDa9Rj7MOjesG6eW#vfGL8+ z&To+1Tc!mUC&BHxs}&dHD^d!xoxq@vq!Z($E(V3vL>va+#f8nB%McMd*^NfGNsa2r z-n(Ht)}?sy#7_&$gv6{y6e5VRMGF{2OAsIzh2ce$FgKx8&gkcXvU5L~i~ky$%oX^- zBu)v$B+W`=I4&>Kme&HGaaXv%8ZJq%blz$|-trO>UyMoVpaby}<5wV=Cg5e$Y*ANr zppqo>XRuTfqJO%GY$lIjd?@DMZEv`vI0D%@r7xA36cQ4f$l;(bz*r6PNVof&O8wdARL29#L#O>#vt3#`}B}!ZV zkvXVe`snA8HY&3xpCw!tnq~lv+9d`;1I!8ZC$DuPl*e@i>JSO(=0R3uHQrqgcVF0 z9<S3~ zdH;-iL@7T+N#&fc+x%i;dhdIy%!9e&Vc2kqU5-#ZbN;t^zCbGYc0bV*LxAI8^LCds zN*R94K5Uupa^#9&ky6d(UDjsa2>nPL@ZCN5J%&;6+QR}SW=60TRSQ3U>37MI0#{Rh zlS{v;(MgZ*eBO9XW`W7viP(8t^8>mxai8W){E8Sv$53zi-U}Fb%Q-n}-slLsnlt>d z`e3O^3JevcO%F`f_tyF(TbR6NBlo7@eb3^p(|{*St|oXcH#x+im+foLZ}={j-~;TW zNjpD0pE2$emD&Hvm3{F>STHEm<(l(V>SJ}*O|)gMZ*q!;InXQLPw@*aUp+7}7G=W> zbZlAa_h3?-qEf}RIgV*h)SPXMC`PDlTSQ(7aqpb*8^XgYqk3{lo+D-`@CnpU%yGg& z9B1ht&d^T*HH~)o%R`Z)F8cu29v#mT9oGhZ%L0AV`rq9GJvjbOfu{V})*yz~Y|+SB zck9w|KFhNz>41Bf0#CVr@OGI%ttr8d#|5p>k^e~3FsCdSQwyN#CBoh zqYzR+w;aJbya*{95^(TjN$*OkQ`MH7gKS&|%ghw@}>%}sroN>&kCC*Pl{qVA+S(fq!oB`k^12k6(3T!rmo8RUJRwxQ-?MYts z`3+15`Vxq7@3Q!CRh~w=6JvUMx>Yq}j>wltJkx}BDc@(O+v^>e;u;`pJjHunmE(dFR_=^)p|*#M`ch<)xQ> zk`ty{pT4Cw{;N3)iJvZ?^o?WT$Z2~qfw2F+V3SJ3(6}KxSB%P@i)D2_#Qg3|IR2&J z+_WPpo5T95-|{=475Zco*`hZv(Gt|Wuiflw9!FbsM}`)bL{crq8CZ3Pmwc~A1mFZT zvg3>$4rz&yampn|8dt`}t}+^Jk9xRM6MK)XxAz}AdL!-s==5T=%m-TFPJpcKI{}C< zv+pr#gif*v4=?xTpbjHnp@tw7T&1*5#yFHu!Fg&N^hL^x%kvXiDxJEIhef`}9(x4&Mtq8co#`XQ-AHr-sKQ>Aye{66iKpdT__4?_Q ziJ!5pTG8PQJ7gCVIb{3p%s2CJ4-Gc&FjWcIc3EI`u7QLlY$5%~13G5O=v$(ARKgM= zvxzfh$><+-xRL<$GRoj#1j$pAW9Qd`-qG1hy6+YC&FSf%zZJoL#dR>uHH7N|Pd$7= z_}iqmx!5+x_nFbl!|1cxPH(*^?*)m~zmdjG9KoohU1|82;20mMGIFe_>);Rk!s(hY zehCFpjYk=$bNS@JtNQkvX2^6eq+cicsDq*d#NTdOWu!CvmaO>H0I>`F`^X@16ZcU! zj8(+hBaL~AwL#(gAf-^eZ4#6Uc>9X7uE1(if(^k!uf zXBng@9d);_uJ<24HUcS1KG4;^bmxy1#5_A9;;d8WwklRLLl-M9`^TY9fiP`)wC^v7)9v zH-BdnOatI={hNN+Ul-}rpdD-)w>(dblgd@Z2(I;0ujhmXDB%y2SQ*jos^zFsq&yss z>`%+V&ref#{c{8H4LN`A&-Wbm>P>5yT5L~hE*JM^eJQk@V1Maz*XlWQq_OZ1gGbz0 z0j=jNF0*D1$-{Tsa3ASZ!+k_*lrw^z)-jg9=WrbV79JiZn!wUbNnP&w&RPIL&{IEZ zU-dSy8pkTd#eMYHi4&u1m|;Evc^jPy20H}|cClpaZ!%-9UH$7sWH^=N2ZKK8*CHlA z?ltx;2ViKS_>!>-(2@OO0-#eXDKprVLi(D^A;oyx3HX zIUYaVUt&<%Y7eB(X5Iv43X{es=l&reZ(R~wl7ju_d;J81Oi{Zajrl=7y;;m7pEt+jaY#%nuldeMU?dlAUZnsazx~Sm5G%OlD#F6{V6`X_ z8T$2vGG6Oaskm7Z@$W9NZk_kYM-Iq{-t)S?! zU}^@BkWO>E!`X#wPQACjf)ytrv0FS?WhdDWdqgb%b&j%gX3ltTdw|$g@s?OFvc{J% zVITRhON;goxVM6HM2PNtrNO#X9;y2JFDfjW9L%BKwOqgA|4Li=2(s3@{zqEK@LS(g zwYR=o2}lMx-T%HT8u+e7lIV_AVBj#(vYF8wQ3K~Fus_bBX^deacDB?sb0xPm3cl=0 znfpO$lJIHfT6=i^N%m?x-UblfA!b|%?49?)F^adluBhk(_dQfbeaF(|y({m2BUJAW zyU!~R~FK-+Q?Vb;Jv-o`&;HFd_L~MdLubkwT~=n zYhZBNRohN)u-q2SX^Z%dOubB6LZ)46vkIyDK3_V2-WrD_H}lw>Y1rRqczzY$%1N-* zWX1zI%spgVQ1qr&(=^WDoAiyo{HV8dBkv+`o?6gWu{^tQ>m^P{+}M6qb7SgZeIw6~ z)6)UUh|qb#D6E^{U`wc&{6b+$oPs|1g&?i_!oTbK<3zt3QLEEh2&AQX7n~sw{hpb( zTI8uDj2>Ry^_@7LN*6uYA7CbTnldXxG^=l$$V&#}Ah>~LLTP?*zzC7;`gImR#-WW2 zvoblLC>fO#C%)ShWn5@vTK(YtJAF31NGe-THoSOnG}I(kKnXkQr@cX}I(W)PZXO&G zXwU+f7oD60WKbunh`Z~T5h&tr!Nf+T`j82XRAU3ubk|IF|)}E`}Zm@ImDL zgdvl|C@>y^1cw`TvtbaVeuAv1oB9Hwx*Bm)IZsIz6A^9xOqiyiknEx}j z;)NQ`%iiU`*)d7i3}e5JiD-b^v-4L{Hn363K$~aD4`22w?l!N52Fbb>e=!<5c>9dD zJSp`yUP$*a<<>vCfLUu~XxAVZ~@edp&69W9- znJ@34xfheufGPFPqbBF{qvH_NPfb0om*7Y(_OEWj2c=Se!D^_`gI(SHCo~JL-m@^%*Bf zS!ri=43|W{tkRWcA%{FIC5|5ha{=FFEQLjeM_I-kyQe>vK}9z^eo?Kso9Q|`f^s-| zrz)S4l!@C2CJO59cy>+tHz00+7~{dUrdLa2(+zt&YM;4d7#IV92Ugh|)(3?U?w958 zftcyqBvmB^mf=J5EO=(l@z_(FIEKdeJ68|shm;zVxVXAM#Q8fDl8Z~{WHea*g`*8_ z&`AMAeRkIao7KTz;)wF#SA<4P44Q~q|9Lh~9S(IB-REcdKTCga`Fx&HsaUmWhAAn4Tksg@%ATDb5E_Ag*_`Do=jx2 zZMjTJTwOYvSRDE^eE&L67nLIoA^klcWex5|>6|rz@N5=bkaWkzxa%Pn!K>~O$5ftx zYI2%dOw0&NBHm}Ijrih59xRz3gK`=;bN6k2@k3G#&Ww`In}6OC#kB9dTYtW3QxjC` zLP(CI8pe}604N6rM*WrAKoOJ@3V}RXQiB|yUx+@7l?c-KFrGojg<1beN+xD94GB}o zR^?$7Mj6Y)sn-D_Era?Z?g7gOeB9f=AV!oep(R^JS-SMi+}ZENxz*IS8MIfYjeGc> z6XU3@<(IJ>jl1#z&LnHjKaYou6_5j2u<+2gr`6AODftq#u020k;1K|I6$ zcxV{!YHN#omts^(&RXa*lhg;yBt~L(6E^)TdQWg%3euMO&C;-@!;5E=1r6zV=^T=~ zS9yQ7gIGdLTHO#x$C_>xj7o9y+aAIyK`Ciy_$tf&!O*b5Ix*8iD-!KNGW7|vF%Jsf zXCE6m7Q|a7IL)G8JjxK`g?zjllXVU{_T$)D=+>SA+CSX%L^bOvRnrvY{tiu^i()BR zrl5xzPHmeqY^R9&UBK7NfaD+cD#&uO$N>@4LNRnEar8`a-e={m^W|hNJpj`RduCGM zegaY)Jx-Tyn!E(|#4_~m8O~y_4ySF3*hR32*dO%}A-q$iW&x{!<&XF&t-g(wSWc$> zQB{{sP3oDN)GM{n3)|g?ncF?I&5KAU!|xwhn8zEy(js7V+H>kIN_&fZe+{%^0bnNQGRBcHnKEP zh1}LMKFAA0bfEICT1+}(FvCKv%P!l|JpdF|AA3W}IOs>Oj(RifPlAX)PLJ7~$axy} zIz5s01S!LXbJA5jWG7(WB?epzabs~*`b|_iKK;_A_(evsNk*p0jMUgc$8&hQAf97N zvdJvYxNISQ=1RcSwb$c2rT06|?6z`W=U{Xr-A=mBm z#7sTSNKNW|O=WcPfmD)CN96nyyJg*x6HT^WPe~P zpUFc^ZsZ}#3QQ`wWZ{o88~9l7t1v#~)Rbb;WX(`!%v1&w=*L!@vXcnU@wUt3sy^LP z5hp8Dgc zh;Ck75tOKyjd`mbukT&zijR@@)xxJ~9|fr}8sXG{13*o% z;Z}k2GIG&hr>7%=?d|4(TS*K!Kj(Rw&*znQ^ik2YkUco@Be})|Il1jQ|Ffz_C2?j~ zRF%4C(QL&d!rQy%qs{6#(*xExxW7)mOm@@Xi}sI zlg4C5ezFmx^pNhj(k|W@M-HO0UK)q8+PfbXIcAN2(RskBVRA9!AdOEOtyk&_6p&-GgL2ZWFGupk>`<$ z9&N>#b^KkCa!-*Cu(R7zdF-LZ5?(>?*+Jtoun~%uq;BbDr{XlR#snVuAYNd#XX~_a zIUKu;T2-4WXgZRG3w?gHO*aH@!q72lU&Xg&Y zn*o1X;<|vqSQ&uWYO7LVP3>l7#IAa09Jnv4p4krhyHL>-A9Z?(Jf@n&yg-zxY~@Y} z7729}7o$rU@_TE>sx1j@*cK|A{%ed(D$=>iyrCtt1~-<&{O?PsRg0(|PDQe4zQ#TE zPMh_YEKAcbI?oulz`MWmGb#nV9X@#+y(MDU4q`u8d?;qj))c+6W)qtqarHGAp*ao=IhwgRS5?tkJ8u%;{5Gy}9N*>e)2Bu-4Dzyuy zUsSDulD5nIs25hNEp>N(0@cH`kwNlsFuJj)J4Zq)qqfZ2-7MWZKWl`%Y~ijn5+p{m zBs7||ezRxj?x?o~WspRxnq_WJ>w5a1z~I?kW))uCs=Kj8RDrVu#c5_xqeofFHU6_z z7Z1WGTTB;5B~!Z&z}r_DH`%tp>)H{KF%QQ)xI_jDo>4x&tFlDi(@)%i>SPf-E{P4O z)01U^=4YA&U3Pa0*!q3}4J8je02&%j*pl^jS;TPrJ4^Zb(1-M8GF~@|e$>6fUfBuF ze90H~s-OG;)jPuaQZ~Pu3JVo!p^-E&jArEKb?N-Qus&_6G&2J8M;Ty#)ljPy&6(`Z z+B3TC*dg?PCp>suWbJoa`{_YMKA2PN^`cZ)K4|7ZKrM_!w zFP?PWt|AzH#h(Nl{kCEaIoj3#u@;6Yb|ukK7f~eXe*d{oxQ1?6jCxgOnLWjljA2su zKC3LVT9VYxd|DvMQfK1;S)h;s`l)j%;$y8VCHP$FT_C-6+Muv?0DVedacaw0F@8AG zMPs&6XHG2*ss}WkH>Gy3KpE_}nX_Y)PQt8Gnb6cepolV3i|hArQ#df3luEpb-aEn)~cKH0}!>Ex(LuiVM z`Z6ybr+|2F%L20b;#swCbAzVBc$)-jiv+GRf@wjg5LaY^StG1k1Mm9gWbe1#v3G7Q{Llg;7>`p)07w)t+ zlCROLWg!E&FWM}y`Ux7O`2rI80zNyscYyys?R$aWWEmv=rox@Si>gr@9B&23t@LPB zB)aG5-8#&ZB2hM=LzqHP=@MA;9`^Z7gH6W^n|o@sXtOcsj$p{upmhCuBWnDMFfwLRDd#`G~)TiVOGdMhqZ;+aE% zWi?BKeFFVuA~FH}{RH~Ugd4q-5@eWut*`y)w^CBIMiP`fiAnCAWtg;eMHxkXl4_EA zU2PAn-s;RE447-N4Z@M4aQz|D>_;?8Q2mWJa^OBY-$#m*bGnLS>t>bqBF-+EZsMl+6EEEM)72HnEJ|f`XpRvIXiHR#mlf(K=RX+>f%a_#7`Y#&rY6MBYBo z4;X8j5lj+7t6;z!YqGx73t+vB>Qw=LMIDwopOP+{lGMOQeNO!(DvOyWTPw&Zu~tJ` zB2$6pbFNIz53aqWLsz6uE4HRH7tZ${@FPUDrY&ZK= zuR3Qy@i%syHBF}?HM$}Vx`+nuR>HjkvS9UF6RhBPl7fG&wvx)!C;iPLPy1O#?)AnS zPU)AKy}Xa1IOtAL+>Y*@*4HmUncG&O*`nU&O>(;61N+`$EN1U!Uz=O<55M3DnTX7clQgIcTsm!FgmEO9t2A#C;# zRvVy#VbV`p7dMd!Wr*4!)C-7b%E@OE4825pWxttj46bi9Zp&d-fl)hKQ=;{o9!1v$Dx!o-X}prxt|Io~12& zej&b~iscC`{kK-Xebj^$HM-W5o$%E?ReGv|$!!xaod=2I_e5@*z8SQ&RqbeFy5GI8 z@a70(3qjG}A|+yIm)_#&rz(lFi5NdoVU+OtQj+ujh>q+jJ3VU;zRZq%x!}A0lN!$T zct;;5_p7>e&fK!`d(+`x>;3%B99`m=utq;nz#@#Vm7=MFCR+%GKT#MO4LxpWdn-AT z{q~PnDu4F4P=KRIME(QZVmtfQP)x^5VYK3iqCdFH%R@{F0X78|mMQgWN!5JUq=g^i z5fB7p8@K^fjq7&EKsmfGlWXsK&@^y0hh-1);}s^Vc5 ztNMsOht}24dBP^zCRVjhZ-kd{VvF>Td6-9^tI_n?rdqSl{l_)|86qJuHhJSkwt3y9 z**HQ#-3$bHyGm!JT%#O&e>jUOzP@V8@1ZH8V-gZbq!opDyX^8m{W#6HRFR~9iZ$=u zccwbAX%nkeW>{g)-W0=CG<$l|q9vLfEUCs`D=BXMT3S1^Tfrb!3+OYO5sofOpSgfO zvjKfJ_!TA0!Sj_|RM8?lbLInELF5o$k}_|eLHO(KShf<`qF7+umf@$0bbNPQSy{um zUxgndnik4hV`bNRNiQO;!@PtDvgY%LewB(hS%hC&n}=ZzUkY@TqZEs8ha>54h04tD zTqdgH`%0f(^<;Lb$_%HKDy;KVQL9@xixO)FCu1h6p%%8r$zzQ@eP*Q;y^Wp7Bv{>> zh5^#VPc=R0RyY4eU|6ZHFLA$2k%6_6t23oO$RL>s%gHhf-EfdJa9CfbV!Co-0Q>}; zP*NcKb;{}SU$M+$WCz<>&H$;!j2nf@_sG;XMq#spl23jTIIiubMwBH>uti^ z4`&7H-^CO{HTeXi6BsN7iYxyVE{e zb}ZV#eU@{GMdC)GpawOaoo7~|m71$U4>IJx;g=5b?#7?7i@$gFl`NV~?LQdkDT^8| zDTfNKNQiMHzao|STwB;t53EO9iff0p>DsMlH*BX_e?R1L`7w1A3vNxFkY@n2c}6fx z2(88#6WR<^1f~^r&!yP5OVQ)MhN0*wBjRBOHLH5uL|jv-nI%=HKbz|~->592f4?!E zi?^Kz@lI>9x;BW~?G0R;%wn!WkT8?o9!xEQD}jz`)YQ^gOD{65_=lDPz%-`-wK!w> zCNk%&jzIv(xZK6{(qsYbH@WQ@m4Wy|BW!6{({qZ5up`pcy7?ebn%niw7rD@mTyAVv zW0G^>UmyByeI)H#f7prccysBWcJ&7zL=reFEy)I-*VzPg*<@Z70`nF*s>jYK=cJ`Y zys4ojj`B=ym;_*1ULE)|jyAFSWxkwcE-f)6^cyxJDrXyN5R#@eF;iO*Qh&)^o*W=6 z025?0>ItY;pk?N@Q@i);8aQ~Ejr~Bj3)5SWl~cwy`xHD##A1Z_Bt-QvO{a= zZft3&$r%VX9Sv6!dzT;OiS~{r^K3Eh&~WgZcvACOI+Yat$REI?dwC<_R|foy3E3wJ z-W*UWHCDPA=EpJi=Q|HMgsjfT6}7AR#6ANcv<3o z*wXaU!Kv%U!&5@rgl@2DEewRQWNXvHUMF(-Dp{Kc+h^!TV2pl;kr=gNf6P7+ecBUE zx_2+rJN25GIxrbf+aSl=s*nb}V0KP$7S_ zN#bJV7ii1<4v|)`aIf#8D*1bdLy{oQ)~ISQgx29~eVewV2CWm=H-r=%SZRD(w8=jV z^j{>)UhsS4$0jUxt0+@cYy401)A;eX;&D-05`p%!yZkG>_oNi?OMLeXT(;>ScW=0| z(rt=Z_!Fk|Au+ym_F=4z>CtjY5&e_;YwQm?5m-y`W3iTMUfKZL9KnSzRK#gg$O-#a z#tHM`z$b9FHWc83_vLz%CEmdnuE(%7YuNl-*HH{a^?Vc7uSctKsj%mCL=$btsdgDZ z;gUMIceejb&u_39B?dG!raC{zT26RqCh)Xh;ZKw@|GG1Tv7KG(hZw}Tw_na_GMrJx zp_)$msB!)UJ_3IHPTJx2sJI=uN8E1cWx4f9MV@Rd-A?*mAM*HK z9UCJ>7_w#;xRE#THp{kc93D4p8NJCyG@_${!%T>HxA`e_aco88}m+ebdUhl#W@_NQnrgTbE6O zX%(V4r#`<&@17~KW^wXjXMC^Z%ym>GGH>~wT(%awYN_3j!!*K=4H8hO@mYG+EiOkB{bZ%MC0mVe)m&a$p&6Wv_} z(r2BHH-0*NXC&)uV+nnqy*!#)iWvk#o(RG6 z?@atRLpFGaZZWP$J=l-cVm#{n&Rci*l`p^2Jirx6{*+IGmHBv{S@>E6k@c7`Yv+%{ zldmAW4fW36OV8GdH=bGFW7CqYJ3VhL@>sZI&L@o9_33lxVFGPm&ZAW};d8eK!kZ$f z-;UL8B?gv7{tz8l8X5`b9|o}^NEFmUWgP0GSbQ>NMvwb3vw&olum0J4FYTt+ioW7L zQa{!&5Vt&!D6*Zez&U%UCKcxD@#fyn5o?bk!FCGWd-%y>t3O*GoFCK7bTMY%JbX*! z&&*{@RfJaesI(&a+60q&hM6rcBF&66c~Q<<`Eci@=OVsO2f5zl<6voQ3K@K@1N`P1t&N~OnMk7zCEV%Ozl%Pw@5?Z!t2re=tuB}uUd~N6=A-( zY&5#$a}Lp6JVcSZiN8y(8n3jSg{{(Jq{oPVTw?Q$u=w4}*wmJTaRKwf zaQ0irt)ugv8jXAvqmpPro8{RrCs)^*O1IXRHvSgpg#fZHyu-1MYHV9~AX~w_e1;3# z`vFYbYj^mE>fzW$-*&{NELn@bRMpVn{tqWDRF~-u{e=ILqX-+Yj-##25aD@a7kY zcSE{Lf#c{GE$}C{G2H7i?+{K>-u%CVhtTh%tdpNI#}yGwJX(H^ud_)|?;VrRJ1;g$ zw}icB`*(u}o1E(bW@cqnJM$H0C7O^5w?i$?zIaURu=+HunvNg$an{_<=nhEuiC}); zD&EtM(W?+`qHPYLqx}<2f`&4DJCC(l_E^z#-X^5zEj-7NQW~IzqkYsQqQV+`ts{&E zN}mPFXyLdyATizqGiSp=(ZOv>G=!eBS0?(WZooqj5ivc@v$KyUCyL!1LJI?!y9Sgd zbK}RSN8W5~y5HLlu8l++=XYuB>MilWRwfwscKTZA>1t=p3IqYxXO8b&CSt)ua0NIN zo)$m)*s+b&m`ZAe2N1fX*mRp@+l|k%_2~@o5?291(OZfXNYE^Favo(wb$}c9e zSsTHg$yfTE*{PHSxyN^U%yK(Nwvzp!P0?dQD`-J&1X7!MTcR>APCWY_PRv^fl-MQ= zkVI1>HQ0EcUbqLhd$Utu|2hhwm{O`x&r@Bm^$ZMwb>nZUsf>D%j+Q;Bo8D9 zIJ#28H+-jN?W*f~eBEPel{8rJx0Mv;r@4Uf3CASA+qcGvI z3Dh+$rVciz=_SSr@at!-^hjUo1*v}mux4^R7cjt8R2jLrbv%`gmUW)LHp=aOj=|P1 z471--C_IKr0yv2f=ivC~WYtbWc+ns1@u400!tPkULR^kc>Y1UEN!9C~cZwvT0~Zgs z__O(Ov%kw0;bJ9FA{tvdg9`OeKj*=_ zz_p~Q@SAptazF=1=k zM;~Nn=QrQ)pyL6(h@%fL+IcT9W;I3n=2AmCl8y55F6(n?)b*4N14OMYQgnm1f7Q*I zA~@Z-xXO;H$H^}opOWm2ujAy2H$|py=SQ&- z`EBhG|N5Ej&6U>1hE-IhLr!WJ-{76cmx{rgt>zIRqleLT&e2McHq~Etgc*Ek9E==Yy1lIIjB|MpkPswRyPaMSNMBV-qtmdh|B?V)d^xU8ZjhFT=Ab=}7His)+LIwZ3jEnQdh zhSO=yW9I?Cz~aG!TM6Kl2+UuXB50KWPQhQ<6l(n7#ap15)8O*<6d0!74^?$!^`x4Rsz(PyVj$TpG zS4TzleQysXFd!f>Gzcg;w19-9bm!0=5+Z_xATd(XBHhhULxadrN{4i-h?F!)NviMR z^Zottt~Fe6xz@RJ_dUCw{p@`{J6Jubne~nTmL7rzg5Vmc_|Gh$FF}p<#w>U`1Ze(g z7d3f%S|pUwCHP;F6-$lx(2l>UM_V2v|Jj&K9!o^a_K~L0?Jk$5%G&v5^!aF@*&Sf`WaX6L{P8vrE z9!{9|+Z$FTWZTo>&SEm3Ts!(@`YX#WVAnrsOLVyXhVCaa$|&|!gY8E@_1N5_USTPO zRTyrLW7cQ%i~LO@p&dk4fUa}aQxBwx6@I$+#7P5QxuA6Rm1P#1kurtLObivFgK#0h zV|$}B=}aJ^g7%wXkdM3L+D}oUk1sM;Of*Zzy))#9z47%zShM}lg{M+042RsYSk zDh~C5QFabgX$A|OFeqajHzseMH5z?B6sXb=G!^xbsj1yA0CSc(2}QyRwZN};a0b%H zoX}KT?Y?-@~5nUJp&9u_8ycR4_Pk5Xsw_2DmDTuDx|*vV~j zfvc5(Jgtol2}k+Ypq3RN_cW(>g1Tq6>Afl?$jjYs@^TqnGQp)f-UU!!$}iLCc>Y;{ zM7;xK%$i(=1ivFJQ3e2eDz_ywJ+3fRQQIRQO?g29HR61W1- zMTD<%>V`A`Z-VIl%sFNs_>aGvFR;N3t`MmJDY9}J)Dw;RL;tPcwt z@UT!CB6~cv28Gu}*tN%gaVABtB6R8inr|*n=~rK7mf)HJKD`QnH0P%TWS#WvZdA#?~vpkici;nRESBV~aSF$$|j-AShP z**DIPVe1BEtnKpd+O)U2|F(&M2Ds~M-y;U~V!zq$=fdmIqo3#HAHV~As$KNI9TJXnZCLXC4F# zy@ZNW-r$6@ppI31&D3iFlzDb-QIBanBipQ}3YRIz;^}R3Wfm7gA6-NOSrL1GC~RJC z4S$Or(potDqIT*+BskhAPj#@%DI!3uIQ;h}cJeBz}d=JRXcUp^F zld>Agp1l$ZwJWUs9u?JPs+K}FSyzkFab#}o+mYY3kvtpn5m{6y_$+WC#{DHARX|^bx(OO@^!4ypQmPORRs*7Qzeho;y+}by zvm{?6JY<%)Vz!#!-_%ww)n5 zH>#x2bBUY<8?vQWVJBWM>Qfb5P=$7*Ayu4B^smkcGSUmjON-bp(v;E5RtJCm)|QTR zT7=BA5A8oKEUn(Ya>sfpU8H))e#V4BAJ+uXHGq*f)W$)BFaMsIH@;JlOOcpMKe|?r zD`ZFvqsoP?h5|J})?2!#{za8{ai}H<$|wuqv$pIa=w6LULB*#!rzZh2+H)?i)HND^ z4#aUqRy2rZhLnMdB}xogQHo^%;3$1Ec)!UTdnnvc*Q`AHi<;rI&Ub+c%=h$DmRaeG z>GFJ~)=^5kV$(ed{Ts|IQb;lWY>;y5A}Evk!uxD#;2phwg259HVLVmvg*Cu=SO1eX zirH{B?dL4}4wiudN@F>lPS&Ixi!#}CrpI#IkcCh@h>i_ZvkU~)Di-A8^1PnZR+RS) zuacPVr3`+~FK%Q1e=JOhV-}U8p6b zSYibkJ}CH;H)sDh%yR^cM-(QqN`Xjy>hE0cwz&DWyg=jGC0 zjF%ym9i+7&R5Ft@zo1fHRCj0>Z4uP`kTnR6kE-JJwY7Cs2bq0=LpxmoQjKhS0_tRf zV7^L)-A{()Po-+E%O6>9T^Rq&s*U8@q2nhreBz-(v^TL9PErA=NHah*&NjG)plZQk zp7(`LpPfH4=R4o|^sJUfn-y=#E%ix{+WRc+`7smLs#xoIeci0=K021NvbR&!+S&$A zMN7knUoHATLQ4XaR-r;WJn_}c4b@GW5una}fb$vbaawueQ|cG^mYO+$O;&?PZBey84z`3X}Z}#!Y^MaW~@n zfn7h@jb#~l_s0yN6^5N}@m9xcrzRX7L5JTave7&ULUNjPskNE4TRu<87G6>-m_1V+ zzhJ^~R{ zlL>WLbX!Ze*s5fh%Q;;40Y{WVCmgkeZCvvZMT#z;!cFoYP_rdAuC#bYI!ZDG!wAv| zyCF~4{X0gi_Tqw*))(`?JzvH1+y(+-E(QLSn&kQR6{HmSQ)-21cMqrBHpn{fv!g`x zkAw<9V1!M7Kr=%byqrJZ&p|^Nr$R61I*982E+9&`UE3#}#VNdn^G1C?IJ(a1GM?;5n}wkgF;@~O(9znI3=wdi zzW?TLS5cSJVa?0(Mq`_G3MZ_hoK~Ac({@3PbbQOL#q*Qj=M(?YP*nfUMvQ!>)1|^Q z^Z)9gM#5hV%zcf)E3O2u7+$Sx3^*OR(iq!U!-5W;c!XZpO1g9pOv=^d@6)^@E=vn= ziK$(~a;4fThHQpfR(3=7(Z8 zTudu-UExJ@z#p`@W5s5oq-{6U3zJk^i)Li=3{MUrpSF?u;H3uJEzk=OQ-Q_5G5AE% zMcHOeoFC1{9~daT@pf!6SEgFFV&I8_{#y5I(`IFAmqjKEJ;lIA!CowvKQ#G(llKsh z@c4GQt(&La-KU#R92lbb%WajT3|LCan!M&*UrMAEhR7E~x0AW=C&QJ>Md(xEx5|M> z#n+kp>W~|=*CCNS=437x1YD{iaH(*K>q`%$6`-k=MBfRzfuK&scr?r9f1DnDG>y+m zf2j@@Z@ynlSx!H}rvJkwojYH@q{>I|4m^X~%`$?gU|6Sc0MoTKdQ7GH_Uuv>8{h*!C2g!A`-u}wUy`@bOWpsbGa{gTKdW+hJ zx5Q^9pRWg${O#wWm6e%u846wz2p2etoB=|5RN?SxPk>CRpVcqR6cA=J$c2G0`;NkV z(|eB|tgt`la%opDv=yg(aaoSS&hE{!S7slw{Av(%Y}@@kVFdI&c34^ zkBk+UU(}CB#>Wp}RwC#2{4n40Wb$|w;{`sAp53FOxLsMjuUewnjZ*sxFsM&K#ALew zg9;(`(-Q=#uxg0f-b%BjQqKLxn7ri7I0uE1KD7alB)$kX(J*dy8f~`U%w4nLPNMHO z>*1qQtHRWj?STYGw3@lhp8(>-p;G%_DvS>cEOe02Nw0CoB;5q|;+JGLGu4-Eo+% z{$MAFPS&8r9#o^m?yRUSu?v?{s`X|x((KbKGkEQj!7YmW%JMSUKc`ar!d6K1EME{$ z7X;P%WDY=+DDicE+d&*aq(NCccsV%^A`PrQ(|JZVwqdyJ=xIux*^&vPZ zjOL*@Q=jH8bDw6%$}ehj(GH%jxBR)sN*5mWfvRLCuy&BF4x)Z<3N1`CS+HjT7>OFt z1^lbvahc8~gy zgVL%dYk8K;^;n12>Y-_b<}<0FHrr({y^3n!m_YdD`dg=)ozMZgNPj!)B?};uxAGkh z`OjZn_)Ay?KYeYZFAdnf3&8N|Cs+Us$&kT%ZVbx@U`PgX;|#t`S||WaWzUYzsImpA z!ZShySE*wXx$^BRbQDm4J6{#EJolX~86H;Se*UF(r93@B%j^ZEg%+&TyL)WIK`P)9qQQlgTYLp9lLS_Vi zSK?Uv9={u50)OW=*HDV*M(Bi6W>JT*wr(B;Ou6M6OIX}J_KD65HYU#+bJCdjwe8>< z!V`~jYIG);DVQI_p#*eGH-Z#FrzOh!qjg?d3teiTyQ*`{_KqVZgNyB7C%iqUvLAwx z^<~#T)yPjR`ZNVm3o}kl;44NN7|OqKVBEG02y|UYM@rnz^D>ifEys*v9_^f@H=n<1 zpM46-`9LMeaOYcE!Tc6rb_U7uA-`Whtbt09g^i3oKTBeXNG=Dmlgz40s~dbYzo4N; zl82k!)R2K)Kgq;44=r1!SPj3*F=r_-$6|b=4bro~j)NDe#=b8m=eJ&faEE+1;9>%H z|Hh{EVuk!+V4epC4Uf5Q!{!8&@GT z7qB47M1HV1HNw^bEKYA_?eHcU%@r182rL3ta&@>!FHQGP*o#{(2{y-lWvF?9-HR;q zG{3Q5-qcyohbhp2NuM4fEa`hMGej7$Ku}_`4S6`ifCYkL){dw5ysrErvA5!X z_QxrD4l5JH#d=PFLqQ3ER69b1Aj(|B#^L^udP#dxPiv`x3$9{;)B7+wIl=s=EG$Yo z@%U!7p|#;PG{UU}52`FS#>s=E2Rw>M9xkhC$x%$!xAfEPDBC_vq z5Kld)z<4J&&juB!{VQd{dcgf(NYy(Py|?{Bfqaq*BiGnVv*3g85F=MVB1!R=dzi;y z!ogf{L|JQWL;F*lN!d-@nz+Y9vH*C%<`XPmYjEsuc)(_{344GCY|_8uV>gt{tKjZ_ z$#BPRG<0!~;h&Hoyd*;B9>&2oRbm>p%cA)@22oAJ_H{SkvzK{+@6fX%-S-%iyMNpj zc2pC%%9jTuZhvFuRNjM94>w7|-W+5BlzJ-22y;&i3!4W0ZBz`{^~Kn!aQAz9LS%u+ zv0SHNpao*n)Co%90PWL9jfW3VP8L*iQkx@iz8@T16j98rM3MP%y$7ToE|sR64A9_z zud~St$Kd95lFj6fE*~04?==k$QKoTy8?lG>6TeldfTMeqqoyS^1yz~=C0_Q?o?-q= z*_Rzr>8TF?)(9_f~IH&N2 zTUU{L;td`^voL{!fr8kbgPn#c1>H0u<{ZviU&cI7@?O)BEldqOikS+h*``knA{jo~ zxFUW~6i_oeY+I)+U37@I06d{pf*bH!)cEtiU6F1;MX6WDlR69h?@CGz0D0_VlXAi2@3)$ zRQ~+c9T-OL2yeB#k*4_Tb@w>6_zw=NZ&t@Xt8;n0d83!a&q)^7h$i=V;x9tHfZYH8 zwcFjK@zPv~;N6>?7hOZYO0}EtQVw76Ia9eHP5Fm$=I9$R4`-RV%!nu5dK=(#m!f7S;6XB%#%Rq6eP@G%S?i3o+2!-RBTd3tCrlge{OW9 z<-YXWLBjZ`rq$R%;(~2LW&Z4{P0YvNt5!k!-cNukrGskC%}*@`Fb$(| zaId6pf+lw;)|V|PqFJ=1j#NoiQY|(S9h+BStfZ>va?3}dIX1EE@!m&(b=pC`-t^KS zZ?Ztowrk4?Z%f`Ff1Zb||6ENhZm@ocWK1`*Tq;vz0&D&N2XdpS`mvB*5uHC}OSOLe z=|T?Bj!edW++if>2QUWT9zOx|3nxoM@Z9D7O1pg9NtRe&jo+s+5_SXl6NoHAfd*e;OXmqV~nf~;n%oRor$MeRo z>92oC^v60fe*kZlmIS$T2KfNqDs5!^>S#}SDyYj5+mu9T8Yl^5M`-E@JtkO-Rz&;O zW`<9GP{le`dWStk6pOFaPg0RCD~pQc#pHHMdIbIDiC~K!kOE197l^T83UmMYBd7Jr%IYrWFRG&lCK9ph>mzh%Lk@*a$!Ak(U-qWI;5EuNx*n;?;#b-uro(VNPkaY+6_5%)$@umeqzXude;{U6q9d90f8Ne}>OXJios`TVR^Wz;ltWbc zn3z^t*b^+$rOiUiCg~(lk+&;yA9B9Td)BNxM+tfa^vMi2t|&F-3;z7Uk(j4iR)ePis7Q@OYz{? zb!kH)F=W*X008v>o~ni1Q?RNL!^hbJtfv5RGa_Ty=?1IP8(G^-#p^xhY_4WWPG*po z+axTNds)OG8zTORLz5Xkjwe=s3YXQ^wXMc%*D(~<0Rq*9onZN7q!GDLX zHo7-1EZ#2t-Iw`y;rs9M&C*}#s*%jGJ)tOu;90M4wb4H>>RU28N8GMEJ6kn8$`1QA zlPZs>9txblVO(CP>fiq7U`5MR@DDTh^4#RgT@vFXlEmLy#g2~2)4I%i^(SVP{f%p< zP4iTHAAuw$VzLU8x95twnCd+E_4s%2+|E2IJn#6S()h$S!r;rlrdwLd^!KiX>T<7s zr5M)$@{R)f;H`jxrc%Dpv+K-kYljEM75qi@%Tmv#(z2PEzi9}G+nUK4D{~Mq;FqFg zWV}WsA4`rz44*Fzzj)A7S>>v%R>{{Xz$Zp_@PzbbR4i2mj<{fhIjX8~CDe<-9cu?PGs-Sm3- z@9l{18`-zJT$YE7pHBp2ls&8W(J^4R0wo+NwT{|)lk@G_uQl2Gn<2jcu8z!jn7;jr z%&B}X*Z0mWaqEoRwYzBH&o~EMwpp9<*~6ni#)BT3-~K`?Z91W)osPmBENgdp@XiaSIbf3soil4>w|TEuHN`y zwQyRo)f$p5K05+p=Tv2-`shaFp3H-i6HFC6?MsBXdzSWk% zLXz3y-D;p`udBc1#%+S1Q^ztRl7XX6o_GVN+7E53AuT{wM%O|uKvryXl^{LW`}w4y zu;^L6f5=$cPdf_9p|5P$qa}BeO*<{R4iKK0JZeb7TaXcUgX5#Aj^Y$Ca^wE17RVp`lf-f(t)rTWsAQBJu7)u@A;8!|3ltU zi0${4SCfNS2$xJ%HLVA#1I{QGt-T!-KAAQXGM0&^a9T2$N=wL1ph*KziP#}2f1O1$ zAqHS4Y5W>C@Q=SrQ3J|BI1rx4O$!ViuHN_kk)eZ2A#S^oVV9MksfhRP@Afw{n^me- zH7cvaU#Q*F@ZX3QFBR@7_T@8je4)FQAC*vT zvAzBBDD2toRLnl^(^QNphk*s3eW2O1zn^V4h`eP$5ds+SUpD8{Oq!_8{Ow^Z1Mnb@ z(RU0$4c;D#{$48-KbpivkiYst6!bg)lX3PN zz$*`}0k_zoo*!zQJgpL{@(L`9y}MzFIIH{hL7{TqHo*X%FR4SoX(rouO3y8JcYKYi zU*CX=WMXB;{P54q&sVA&LH}CEuKs>|_f*c&;-)ji1WbjG`Cps6W`jGC?y9T#rQuV- zVxAT-41*gzU4}h$?VWPLPq^6T?J4QQUri>7sHbt5 zkbCThvAlof|B`t=qg{JfYFQ_?gwV_lU>b}OXpWeIG(5`;G>YW6S{<+aV5?$c4q_4* z!o?Vi&4T5=h7qyQ&Z%mRg~n5=%s-Jx&+wr*xK|omEswDUrxb0A?JzoT>Fn#=v3T&w z&yjbUG9oH1tR9;Vw<-`1e}W2uWtKT0IcS60fb(w)mX3h9criHJn$wWG|j3KR53kR-|;0FCY*z*qs>mUfV`1kl3BCF*% zCGQCkocVfqtImy5Dpd<)aqk~a`~NjvZCktyx}r5ICPjaKAF%jNLoOB!525UtZ@-BI z`*Lpy_)P6)$xok2gv&fph3RP-@wl79o9nbC2A&4(^GRJl=OYp?wy$9BCE-`4MG)&f zh4Do5GIGARFPxwB(0T3Hqx~#ZuJ@L$OwHNV>Q3FLT$EwD%UpD?oZ`xygN|IqqOuBT zU}`GGssNiRm#nG1Z(XsM0%40kVcPPY!t~3bQu#iGnv9)C5-a%+LOQsvY?@4u$ScI@ za7;H_5!>Z#pq;HJoqBlZ|_uLIhIE(j7Fc-B1e-}!+kwz zpEQKfJUJe;c6&M1?wI%NZ0E=Wlc)RMM`K#D5Wc;hz|PJu))b3j677xE?nxmNQR^tWf#`JYa?jn7F_e=U;^=A$&lw<8@k`# ziZaVy)}MB9Riba;{j7H1F{O#Ia&*Dw$1? zKfsU+Jc4R4?*113$5UsB`NNT*yQ&En{(ZLdO#|O~bWQ4C+l45$MG;c5lu&i+z3Hu; zbdI8M9e64bQN^geAZu>Hj@&PJs^jezdfKM$q;zNA#=F(VIt_nxc zW#4;#6krTez;;*{!dS(s=GZ zn^m3Hd6bSU7-5iU8(NVzcADGDsBrOMwt>si_dc-dMxeB;3-tA- zVy%r+25f<*9GZbNi3>%eN2RYryRkR?{EJ##DL&arJ+4onz#@0C0GgLVJ-T$_gtG$i zDbtuvapq}c1i1_Np*N7SU^>3zICb&lPedQ3(oB94kmHyf!X=MT_&-SBy3MX%7MvLPmt-KYc}puvk`}fucIkb zlk{G(&2mhg_BR^I%ab(Xn>4L}P8e#-LHYGtCL&oZ`cDBYo@T zagpS2ACu;r$A8F^oLoNqcdYlDpaRe|H16bXCvx>At8Z+@k#l$(({@hRqmPsHo`*<$ zB;0a}(lw|;(&*OqN|cAflDTx`K1EU0?3cIZZ5V29O?Q{f8H5iK-8==kLWgNvZFj{O zXlZOY(+{Ds0i??BL>_Fehat6_B7Y62_>H3+=-t)&W#!d)9TVeYGB|sFnM&|ECh9nT z>|TBsgwFqrL`qE7^j5}X{Cwci`SUp8EdHd@_r4LC)s4+R1bc{f1=1l+`eO&Ra3Fd| zq#rQUKwSpL;JPlVh0_sKgxi7Aa~0#9rXwNDxHtZ6zZD_75ON5qHIZA852mSFal)$P z&wX37vDd;hd1u?Sz8CIw1gbN)?*_^xgQ>y%B>B6?kRkATt;i(%j|Zap%VJ+FvzZwa zx-^Rx`RY81={(7%OzJ?AS$)rZML;%5J-$FqHbfoEVO17#6wY)zP&YiqacoDTV{C^? zpZBnAjPrukW5*%M8K!J?-)&3L+X&oa9Nc5%<{k-;mTK<@@OmDTxTf!=(>a=z+lVIb zDyqIYCYYwfU>|;qqU&DZp3C7}_Gyv7-531}@m%uf?nU^bykT;HED~56d|cqCE`C5h zN(00KwQz=Ib1e1fSK{4>WHuS&s1hyL2cq;3YNu7z;?cT3k4mdFL~mn1oz)rsd*8rk zykU936qZanZLRsx4f0!FWWz3-Pv%LMjrdD9T_HRy9~h`vS%X+48V7Rq2vVB`%#6ao z;pbJ`Xch;cNZZ0DH+Kj%x*Dg9RM98KewrdVK}o==AB+7Ih7K$V5D@CUWu5m^%Inxh zWNM6Db{qr73$e;=P1>=3tY(p@OlHzA1x5h^7+cvvmoCo0&xSy*3Yd~owgpYf|NEsn z_%1Ar!G@G|_f)sW=R^e?VCe%d>ocGz-uabZsr*+}W*;SPziP4QWJmujtGAE9Esvp% ztagobieU5#ltxw$x973jz|r3x;w*av_^CzE=%oVGMJOy~hzvk33B-2GOP9E<4tF!d z3}G3p%*oU=+C|%PK2;G3Do^K6uf;>BoGnRPzqect*c zE3k>Cuzn$@zd&2WEl=A8g%ZR z)%$7@l~gdH0!%(h1YsX}FP3K@E%TgaLmp?Cl=~rViq=#@J+PJmg&uB7o%SM3pWDbJ zxSR=-HPvO6)ysHyh2_c~eR{bqTpl76PRFBfU}5&lH}i>gskmXA49-?Sn4rTtHS^c|wyY%m}`Qqp- zzMqu;OIu zsJ^cV2pk(ahy{R=dKg}IxM!AA3KRxU)yurhOhOxByT0`0$C+7ZYM}Q$O!$m0hkjWE zsJ1j9T9S+z;hg%BZo`y@My=X!oiinM#_~vKU(d|Y0Y7Se<43W4Zu}^umLCVw3j8Qb zzJCnIt27N8ws@oke9kv|g>a~sGM+Z*z1kU}8l!J{z4tdZZy~&)QvrIwn*b>e4etEY zNR2wI`Qzo9<37yBr5j)Eja~xm^JeTu5nA<5WeAjyFc4Nx_ zq5$hTA4Pp&0;TsLyTe#WpgY262A_U*a4E=a+1pMCTJhyc7ucm^ozM-14*&>_l|W#gl{m3E9aD2o5_?l2FgigeWg-G>@- z2_T08Hxle68R%eu+{BD18Y~bqj<`lWw(d{vrL=8&7|(^CPM1#?Tgw$fk^PP1gO|(8 zpXL?EC~qWlEeIx5^}n3thy?X=oocOG=R?bCvEZeRD(^J!rLarwTMHsOVZMYWzNBnC z2b=eL{!X1j2Kdf`o-0o6qM}8{`(Vq;&s1UV$@7{gO0<6q)&Bv%+8R|nJuz?((|hBp zC+q&*XVD8^E%?_1?V_A6_&4q4t>vTSn>PNK9k?O^?2Xm-Q8z(OK*8k#HI&n; zw%3^WYp%`6ou%Wsnhg=0S4$UFzW1%j9F06q@NB?_y;y;K?jZRH9Ml*!?wEukaCxiD z-q{TLj2!S8j}X1PYkIue9&$=s;RR&6XCTgYmi5(}gmHeYCgV?qPt#N#>D&ejC&6#M7R`$_ufzJ1 zc0rs~(|;yWPhiM$;fU>R=%`cj+UEa#8S(f5P zJshJQ-OVEbBziX@jehssZfLpwj>62-NXCNsdgK>1+7Q-^1#Q~`(w$i3`kE>m-j znQz!_jCLQ```MYAKQNzV$)12itJp|>0KxZsqcw>A0qQdU^s8P#mN>iZ4G+Vf|89dz z2RFtGmVS6$Ps~l06bsN6f9=UZiplW1Ge;Y5NX)pVe^9*F)8SAr^B*ENJgdi*HZda7 zP<;&s9NOtIw*o_tg+G6Kif_CxW*ue$_@X2qqj24mhoG#JKFE~Jr{wYo1kE@MpSaMq z$uujfI0?r9&A^;<^U?86Q4g@{%$*}O@A`px|9~AYWCzV_UO1(s{tZ-OJP+{sCWKr6 z6a#f7r;%#Ywf&o-W(s2L)C4_M8--@$5Q+PE+XlHsrmnXoG{I*1yEZ(pqw}$ zq~`xw8G{3q6AM2Qu<(t6a^eicdjD8AwckkDqW#OG-n%C!Y) zRDO&Hnhq(oNswA3I%49o5;vdxZA+35qmMUUq*1K=?REHNepja+*Tx(6CP=Ttl&21- z(jDLWCZg7(c?}|JX|5g-+hG@!phI2Q=GISD&v zn4}s$Da;TP81Uw#o{KDAHU7G+WFsZhm~)!IxjEvdBpk>3QWS#9a+KjEyS>vk*EA4k z*5z(>h_s8iyO>CYCYEVs;4!uwPr{0OcDSt+`St8#=c>^ssaCS=J5U-r5bwf@ zCjcXM1rpbBdwdhM;EU(?{Q9MtM{h#?hmfIH={<15E;Y251%2D)8$x+vBYGCfg!cQN zzW?$}^|TITuZysCyzU@b0N{25YnuZr-=9r&1-Ux5sjl)-we8SD2q;VUNQzwK|% zYVB{qyXkcwS+gPR(IfNcP`FUpw5dC^Y1T~s5>mD7!;EL}%=!_}pf%o%&E)DVQzTVw zUBuSk(*Wy0y_u3AJ^8_57GXn%E7hJ+Ae&`~PseTR4IrCPvco-=hs0bl^k`ytB~?Pi ziao07Q>D9@KiQl0O`8PCO6#}9cL2%1e^$j*J_8F=szgeE^eE5*<32XhdUsm;znGWO zB2V87PuJ@PZbKHjkYF-%_UFHMo+h|6fKpEuC@*096C3CV_b3)hRFI2$IYGocG-k)K1S!JNp1pDwrjzyX-t}?4OF|t44v+JYg#`I4CnD2}a6j&$N z9w%s@-O&T&>e2(803h`TxP*rkIFUe4-2{;NM+|B5yxlJF)wK&DWP;wg9OeS&=f#UV zl-!C0_ESWxt9~iBhG!rl@+FaSvWqK*aE;^Kt(vVP9A<$9g98;V&_fVy7Y#6zra>6K z&S@aT5a=pAEagCgKA6|jyZ0hQk)FzSBqE$e5~iM?D6wFO)s*;FLL7VD@^NYPHETtX z0It19(s{jg=uFaGh4#9{nqJqF<-y4u{say*y8Iiky>wi9+Va+gy&p!kfA#I z#Uoc@SR4)kxmr!f52wtM{+oDYhmOjnJdg2UNSTB%%ASZ|9T2nlZ`p|4z5Rw<c*XNXaD8#IX+D`H zvZ_+dk-!$@O4-jLW=r_B-c!4hazDzrsV28yp0OFaq|33}!75=Vs4b?6=2L&8}B?f!c6!<&B^=#&@sRvv4m9bCQmo9{hv z(o4)fcly^UqNgE-c5=oxg3J7h@`7=h}<}98`^60J@Jjp7E&mjRBtYi z?k145;zez;78Bn*!z}_3Kt3V3v->K$i2wg!PttClMW6rz0dBusEPb+YvqJ~fnpGt- zD20Yc1hmon=y!wjb&9wj=2)cPOKkRXDXcaFu0Fh~q$E!sg$!Iq~bNI$(@&@?at zkDofIntmAeowKeXQ!Nwg_KJjzVlk~!K@)aGr!ch2M6Sh#(zF@L|L|K!-m$_|W03!y z81ZdJE>$v9BM%Mouvq|Dtw0)st|22iEZ#G_S0VGpOJt@oyMcFJ9hG#ir6XtEZEgQl zCNqE|Dk{2#BhiM{%6IGrz@Cq$QJ96k)O+Ln7(G^ce7(MXa5_Bm!%M_dNYQr6fl|)a z;&Ip@*qk7Pwf#fGJbRPDPOiUrsZ_E7tPLt*GN}gPa^#(0TtoWvk5f@B>#eA!6-@?3 z=6t`Xb(oDct82WNIynec<=<8mMv>*Vb^yeYYU=v3KFuNen=gN);SU$ z=hd--L?#KG=(!q4?)nfND|O`MO`5Q`5+-LmLN`fh*Yo9Y?dEU%qLW&-+2e=I z`^OJMe|Hoc-s8}}54D)YiSoXEXX^0{4knAfi_`NTIPMrg*!h@EikM5?zgCY1K+FW3 zP3>NR0y*BRm*|yfIomyC0k4CAxDuLCyPD=cAjC}JXI760No}Ms43XB@Ccz@hT|cLT z^F=>5`xq6$a`6Q~0ErU@sy}e_>r1OY=Z1;BP|*JX1zD>8rBaksiGhnTXx*40cQGDG zOkugNU^RI70}nwK$aZV`zCML0`@<3a>ai=*^1ecpzw!ydmQh(pGwal>Ru%yhR+@kj zSCI!=^qhYO%2hD<)>B%6u!A2>d@vw%h5^9oIv#_(+G&=OmwH4#2}6iTF?`&qMSe`_ z9sxq9noL!>6P!IjyAsrH+4+<7*1BPhVR~D_kK;*;ij{8woj5>cFK`MZjdiD^M z0nFM{Aw8MPk~wJBx8ZwFGBty~WkRAjw)_UcJL?uX%y{aN9RZ_Q7*l))xk64`K7KcG z9ox)Y{~RUx6gG=X-5_D{lp#Y-LSrwXq}Qb%QVXE&;sr+of6%hh40BVI9L7--C#EfN ztpb_v^{y&QrtK@eOzY)x0+5Io^@dm}FdFSZHr*$nqe!dyvc10RxG_L>zb>eXG3Iic zageg-zhbclC>9%SK~O;?*4qFF!jn6^4Y!zMz4CC;cwbVvmd;ET>(}{ORz+1m|7oT? z2s$L>TxR+Cx9mdk%Gsv(nYX9)EB4ByN_K?iqEG2W%!TB;MoaP(6u=gDE&*G-3rpb- zgX}ce;<&8a^gm7KSY_xw2|D1y9dJ3Faj~rP#hN1SIrmKI;zXBPCekrSlEHWKn%Xr(t{HDE)hGrvBJGB-5kuHI zlh~ocrd0)axEUT_B31^mT?BXq2#OX+OssK=9A2k^dfIMFDjjb^qeJYtg(j8Q$J{)e z-4^HHyt0K1GIKh81doR%8SC{PR3KcGU}~SjPd^19iO45$Y+Jvq<|FCu3s?#S4&sFV zGFgZ6fdk(gA8MD3wkphdFJ@|sys3V@65zr*>HvMs0NffVC_k3L7Xx3jHH1MTXujY> z*U)$!Uv;hC3l)S5iR#dN_*HX>zMKtBW-9HB9C;OzN%HMGr~avVzXSz%J{7l!MN{wU z&TsQHuE3q5=+pRQ9+kpMG4_~Z-a*?p3V_qU3Bm}%l4zkbH#w>R{3y$q-O{MS`gwUl zKkK`8x#9))N9lL<%~^sf+o!lQ2j#Icc=}X?hi4+hpdwDPEnmn0EM@M|K9WcGXASyz zi;j~$CM-|Ao;i8{UYNaL@a#^r%=K#L-=pT>>#gRkw;K!6|1Oq}|2?xhe!dor8nz1h zw;FtX(E0cDZs)&K_v7`0nyJamrGLN9Wd8i#@cU}l((J2vKJs@%>v%Q#CGuD2Q*7_y z#V-E2Y;Fv;k%f7?lw=p?n_oSjZw`96-&N;L#{HcmjYMzS2Ool**$0z}&cR%_kQL2b;PHO{%a_=e$5@VQqZD;r?Xy|u`)DhHvRqXnf00|gG@6${PS0_?MO zK6pL|f*Pf|kd^g<#?|%Ljo!=d(j2#TJl(<69=vUV@@-EWyhl_FW?S2X&}ix))xYj% z#@mUpS6dPzuO0`hJpR5l?vj9JCSL6M+Cg4T1#jygpE|3t+nj69tC#N?{|wDfKYTiy z2rC}$ep78*=}^lxjd|pi&&Suuiy*^Ih4uYt*r7(*5ApvX3-I~yi!~LU5AJmNVgO42 zI{+iI5l%DayrHm)n6k(7*kq4KkiGftq>niFCXovKH{OrgQZ`}nbTY-Fp%^x5#cnk+ zN9eRYiuZYBf_3PGw`GrKW9FSOO=2Rq&I;$uMhhtA{W-S}r>k)c?|&h!_tSsWHPQ6r z8boe`J)VTj>$_7DP7tHSSby?ZcZ~L6zRT|`#gK}OMsK{J=g5^oEIn@z4gQmUHo!lZ@0g?hXSU8ihuv>#~|#gOkn)JUQUkf8V{Z#S`MiaKF-AOm=w=U*b35(@roupF8fu+A7a;9n^yAG1Yfp^SgkOKi zD%czUJxJu%5Y(T~Z#n!c7Mz)3Bc?CmK}`DqRKzkzqJ4z<=;XA`Vfq^@JJJ1sNBrHc zEAw~BU4YQ>f*3`{zK-EX+=vG2aH7qm0RFt`qe$>hKjv37jHv9}uT^1pZ=bf$lW3yU zOsogq*+PbYj&ilqh=>x(`;F>8QeMV8-~2kp>!?q|-wQR5f+?H0aYzkKVx z3^^n?n2;7X{oxn;2rK;0$AnLD93zn#4-~tShVUoD^HRDs)ayEF=531@D&mZ_}xABqO{H*i6TV{OH#hBcTJm^s-Rc&4;LFEs?r738v%~bMtTTS8*tehNK7= zL5j#HK{#O~oF(|R(nojVbIzMO9g=kpA`xY2-JC2|7D|K{+d^uaHSBPP{Glm`A&6Mu z5bf{s)b_LjHF!R$?{4-=f))Z9e}kaiY%19|jL-nS`YzD)ZP%y8NEHKnDTBexI*FT} z&IXoY6@{CI+T-c1bCWO@2Q(Smyy4cyFY^Sb6oRH;$Tfc-HnwxXzJ27QwR7aCwY|c6 zmk!dxdT%=!c48cYmxf2hYiVZfAsIOG z@{EIjEiQX6{^mw>(x$HsTINvb=SXgC90TA?8n6X^N?og^q6PBJ`k=182-ig{^8ZKH zTSrCtg=?V1&@~{PgLJ2K%pk3lf^?^dNJ@xw2}qaZ&?TXCBcXI7jUo-wAPsl(JLlYW z*Sc$cvuEa?{q1_=dER&LU5u_AtN!$(#2}qYQ9!kuE`CPI0J?2oVKe41h(892J+g^0 zXpt~zSjw)yV80aO<}%LH?Y2S-T%#6A^EYb*x2|#L?@~->smq!j-i(82o+v7|_4S^% zK!Dpa3l~W7AfD+Kd{-l4_Go}9o9`)|8b5Zj4zC)lGqScQqNpOSlY;?2(3-3aXR`2} zzS*tviIn@~`%YX}rBl$0Kyc6K3z*(L9fs#}rNedY-$Tcx4Ja`B_cJV0 z5oi2mBFxy6<;k>i(?La2MO<&WA`Z}=$xo)Sn_B!{r@_*X5uW@5@}-HoPxDnN>bFyd zwRjreM)OYZA5Z&K99+c|)>AVJF*~*l(ofmT3o*Z@Vsq0?pd#P=S7vi=9wlj0oc3M_ z<;C~vkO(SdWVRT)O)TL%64tFMwg8F0DoEaz)gJu72Eib=e!Ni*KK6{GK(}q`t;3LQ zGA?c7UF!EEks2e@Uhm*HVIec82v#m;N2AZN70C?YKLcoz@@h?EXY+rc3|jeW&njCD>g6 zB}5ey>T>G_*NqQwQ^kDPs%M>}#DrDVx=mT)+mAW^fkk_90PVsvvP1;ddIRa#q5b6x z2#oZlTXeV=HA=r)_1(Xqr^7oh>nCUnn1mm4%ifXNXNAkDks`wLcnVK*P6&HQ@NmSH zZ3rIe03?PPMdACZzt=35tBi3Fm8Rl4b-1W<-?3e=?%`x_AMq-90bN{8f#js|$7nIS z-~DS#M39`9Z|S~ZZZGBH3}}P}M>27D|L%}uhTyDWV|J??ea@v__IC;nb_!nkMobb> za@c3)KkDZ0@6@!gzOp|o8%%{B?5*S`-%5Mn($<6z1z{oLo2k`sbk7T6{}cfGh<|4Z z5%h{%@O-IPS7z-YjtZw;4(}xqd|{{@#v4CR^K2%bQBT$_uJ|!U z$=1@_xKdc_tvqNmiCmk3$sG`E3I9akWRrAaKLb$s%_ET_ee7_!`Sr6CLAfd@B|^^J zdRs1#qw)^+;sv10y$P9D47|5oYx1!&3V2Ys}0Vw(C}OE>wQ5F`DQkd7#Cq90*7aAc6#<> zMuc%N^(4@d-rtK2o<8LEoZ#fA5_e6tSNrxs@pRa!Wnyyy{y>5yX;B7?P&>dHd5bcZ zq05=;3MTR`QnL#K_mL4)>N{`dX^vZSc-6R^L^Qc(#R~)WEKEFmK3xO$-=svr#{bxr z*@qY0+;NsHWn_GBe-4jyGI4(cStm-dLLkNj5qGUri`J`}=gY0VIH-(~%6a*ZjuEBw zar94;W{5MP-}xVG#co1%rS7&zIGHn7Fp?hT zKaZHHS|8YTN%L?X{!!5OYs@q~3m@^*sAmjnHFSULe88J_`*4Pz=UI=kf$4<$CqJiU zPNshlvYgURDJQqP;&7Voy5rONOLl$b=JuDYnk|(a3VEy=>a686sngUM5-Kz~u>Zme zTSqfARy`El?0s$_bMfkSL0zieTt8Ab+w2Gt_yf-l#I}O+dD<}+r&fc|kr%=!X<#8? z!P1`(*7abKhSq;M_wPI~NQ^@dVVp{g3o@%{QXMZT6UI)T4r`%KI##x<(qFdu-n^TX z?3It08@x1Ev!AGaq&%{<<83Uu7u;@s*j0wvN5nkx$mayT4~(C$7(7b@eHAG28yG!x zJFea}Jm-HOl$@VM6+~-YqvlX)F8Ukf<(k4AeweYtII$2?FPcVV)l0&7^9M1}+*<*})>ydKSlBPIwi4+f z-cxFU(Qh>ytAaZF2!m)1{D|kwyK**!7&kPy7k(0b36V1V+6BCru%+v_YW-RFP!c#ER!`kf8x7(a{4apQ{7dy zH>D6iy~Go>vu$qUwvC`!zPK`8*5W3+KyPv6hL5`dqOBQA8wr z-aO%REyGoo#imDZ`x1E21&g#fUB&8t&QQ|xu9+kccYH_V#Hi=+l+AmumV<^CKC*#& z0z_*Tel5C}YJfTT>O-c+pV{XF*x%%;MDV`NF_Y?3jwRKb4w5rLdMriYQb^l6itLB0 z4<^Gu?e<97Pqg~om=Y*g%4)fOBscZT1$Ql)+@Tj=Ncn?BcXvv07e#|Nu%p3P$N5=j z=Y8&UHu34@1BLZr%?QtJVTj)gxr+G=T_#sraG8RPCDCJm)%J&9z;=kul_*Q7K#5#)v{VVIdP^lvMm+H5CMc7JqsX!+Ae zWY2fQ-bvwSlhg>El_r)?*ZKe7;@)>ZUJTcE@15Q9((vaxz;hg6OPnvW40TXxa zKy>)$}l?n2~f?#i?J{RW$jc6#JV-v|f=@55behqVs3h~_O+8GZU4@9XL@1!(+ z@g+k_M@ZNxR$bq`D*(qy*Ina#Ia)ctG38lQ$38f_4lXzJ8Z=9Ti zp?sGrxaZhp+_ItJVecJ2GiZb-K4X(V>iazzSy<+^EWwa{LubXp*D@F90Pi%iRHTXJ zKbuRWAcU?DpqM+R-L$|uKTmZ0Bzf0vR@okWyq&zeZ`Fr~*6LjOx(~0^QmXkYGo}bD zsj&}#Z|W5JB{)zPeQHET6K;)Jr$?91>GR~%tLK0g`cx)n;GYPrD;_O!Fa@l&!H^4 zWyk+p5;NT;Plr#9OX|SGwK^^zYi61 z5Rh(Y#6vi6;KK-g3tm(DKh@1-jS0~*BeO=sNW}ThFBF-CgUM0-XR8HZ1D23aOg>;g zP2$MBXuWZxpq1|w>>?nsF*L>(W(@!W5f=NgwZ9-xFATw)mZo3b62T~QXj0OHlm4Gj zj*M|Vw!s!p>i5r?)>IrM=_lgUb1fM+??Cy~{;2lWYnp*!n3nM&7QPNJSJx!W=*;#; zinv?$pJbls4k!Z;9lz>#ohkER3PaO**1Zlx4d&3G=8wUSL}ka99q2(JweP@Ze1L`? z%5Y$Tf@6)c=?0m(oZej0r9@d?qJ(3-LL%AnN+wFnR)TjfB!p_OMko}7)j=)`?HJ>q z|0AdV05~A_(3mHBvqDkHhzPz8(kxO(g`1=G(A}jO=!jpMZ;oEg>nmGeP%sx3u9GQ%I;3n*z@0luLaUApqNYX;Q?D57M8ZsY$Y;LwO{0qeWy66U^?MbVd7CiX27Fv@{Mi~S zlrM9h`L=y1q`4aTxt1Lmd5sbCZGGb`x$2msie}u>);BIG%7W!hmZym*C)ZWm6+N%8 zm%ZK(4(#nspJnR-CsGp11r$B{7oat%mQh}`5t^-mEGTTW&xiRF7WYmHu7JGW{HUbX zTe$pO081BPkfuJFRhaT=5FIR!PFs2wAu((IIB{bnTGr8nx1xAgjTfd5bUa!-(D6q1 zvr5Zu>X-WGD!>IWqVU8=Sq271@SOjBP#BFn{G9+a!bNMDX>Yj|cp>>p&)>-n_!Jb% zY!uqYYPcI)&fbH+rW)&OXT1K@h_KHxYOPo&0+*B!Fj2}tO2g2DFC^fpKuQTM$`2iu zK&!hZ_}(+)3OF~_<@{oKa0#n?5Q08)KVa;OT9)e?i z`-w;_%7!mBFC8h4x?sjHq+U!3O@_@$FwwKFAR; z>UEX7_Wz=nD8LSR9-|^*jV(>V4Ywb9-Tbz~wCJjTcE-|ML7nR1^6GfyQ{86UajznL zMsPiF7uvG#6p`$p^A94O>U}J&nHe5-Usy#F10`{!b|q;)5pS);Zd)hdEAyD=PFGhbxv{{)H1k*SqHHL;WtP_HEDQ z8#95GR2V}AiZ$89&$>6bqUI3t<1>BfjpU7Y0G=A;v2DZuGF-Kc2qX<(xu zF%6q|^IS8MiM>0A0vO$xMW@Y>kZ(~v#Owx7;z^yxMF;i2(&mU*+Nd1HQY`!~caC7t z{(Ozx2*gk+Ur1q4KNeTMVS9BNH|(u+gzoG{78d8$)?^iaYk$;*O8fo_5x0M(0^Wip zphid4m^{YFJiK;R4fU**77vtf3XO?|#R0WVj1>;joRsgq!r(`5 zatt*EAt8FX^)Jfn36nSV!&$sZ#)*p`ZY1k{<<1e|dK|_0Qk0U)0;&R#P8DL@9ADSu zF6ADCkJV0|Up`Pcn>)GWGuorT8m?!+Z%lxe0uPz(tUHVpV9ol=XcljBPR1%b7D$dA zQZ(uBv|p?O7qak0!E;6Umn;Ko_~+4tXv~?>&EqZMH!d=}d%K_G5}58IJQ9JzAO}O~ z|4nL&hK@$jK%U4UHI12ZyYQYhDU*g8X@}yk&d)Q9V<=VINWZBjcf!fyVg<6vG4v|Fsgy>`AKG>iPYjde1i==h_JGn-5uKVr{o7hK1T5qsOmNUD_`%?=*j8PPg0tGxakc4r7gF zpM;PEA77e3EqTV?jgmv|nu2AZyc%{Gn3h}5Ao2R8W~28N8SnKdX(w`fYj?xc>MA28 z&&=SI(@RDg9IE+hTzH$y%mvZe$AXhzhEY>c)&uZ+Dr67fND$lgc1$y-0Q|A&Mu16N zh*LnYTflwkf?7uThv#acI0!F40Z*@8>ZzGnga1?z-Ze!ZuU*r2;J`{FEiw6R_ke>v znIgsH0IKLlStK4{nJ@s$6o}q%A>*G8R6mAXy0g%spq|N-zq=19V7bP?!~o-htn0-X z@52~(T?!w;drWqU1dGM5dbT^=o zP5s8!8Wh@EZWj#7rcFonjB{!U7LCRpSIRy-I@KjRy?jzMZR$pKH8%-uz4hjwt4DfX z(lWZw)Q`GVPTyVJ`1lx)$eMEK7J<~jYj_>7S436=AhTc@#SomJ32f|Hkl6YIrWJ4i z_!c}k#TTjR3vD83!eFV2I0~BMmWBUt;}1>NkuC~C)cuvk8UF^rS@!YZmgQ3K#BBfz zVDpHAhjeIf;4=%a5*P?O)~`?;0MQ^D-n?ze^y)+QH7s9MR+C*8TV#O9KJuEsH*L!5 z5^>rEL+o1nYTisr$E#nM2c>=anJXgPddmz3!PM{GWCQGLbs+;!{tx?RMg1;wi|G}Z zk`5frL&v=bzI$UR0lb!0TZx3=SenYq{o6|t0%%IZv|0;z=i`BQ>k|;*i#IDxbzb|5VP(Z$Ysx;_O4 zvgMB*^#x#jm9VkuG|2p~8{lc1Yp7=YDkUGZktV^Exh@D%t3Q@!d z{j!i$!k3-{`;3AO-tYR)#KLpp(b94Wa3aFiisHQ=opW<I_byZ_wUsov3H9=UeF9S7fD4rF}% z70J1!q4~cLQS26<`j)I6tdhv<=B3%?j$-U>N5-vv_PFU;*~y(XY??-GO9Q>JGv_!V zCi&zSe{8lS{;JDfrRkl$o?}t_;4D)p`VQHZV9trHe1R;YKo(xuE>>`d4EStl^IvU( zu^No!8$E7K6%w+4{%j+?1dLbO?k@Rwo@{BfHz-Elm$nm?cZBWd;=d_GZ6t5j+`rS& z_gBgyS`4a0%BOKmcwnBLip6N3ZtX0L$Ry8h$YL@Xx-BnbE_#|ivxdz`-JI{dJzcpo zr|6Jr`jHBm)kW&tX zi2)t+f^Zm?w^%HMU*luHgYHMojs|GkQ$ii5xb77<>6YJw(?8;^;9&Z+Fx|j__nFlV z-%6-@(ge}u1@}7)z{y|#4JM_6CgQKQKEs5tpwE_G=B_`7StFl3!TimRE=}7D-(4Xs znPa0m2<>9x7A*e#Flb(zvSNa$?@A+HZ&*2AkMKv%V+n&$!Y#W){H8oDl1jR0XYsQz z+tE}t6<{EFH8T(yECP_>2}R5=rYQ(~I*9%6r-bOX&S}DA9uck>$9E>MWT?2wCfZOT zDh;;6L8yT9WW$_J+FN!Bqc@a-+PwWpdP2corDmnEFV*;*vH1uqNa|2YfZ4IMW#9p&e$$) zvTK*<9gOFf6XF$4o0MyLEH|PVE7OD<4H;KuxKUz1ULkq)S41XRZmeUnl5QbMw?I}P zaknnPUn&gF208sbpWX><=%u({?#LwG{z<$|GK}ar_6~1$8LlLs{KWj|cmll){@P212p}{= zx#4Et;<4?xrqe$>M3yg9t3V_j)~5Z-7gApn_s+MPNuPT6w4sM+*iz#MP0s2GQQpp4 z>vf38L5?h00uhG#1Xk_JyN|U{Y>4qM`|VAy_0w!4sq0T7D=O!g-3&dDqgYPcR4PP$ zQdz(Fik&9WKdxt~dC!;&w_`@Fe|OkH+&cTDmyu!wj-!KCBTwK^@7QBbX?*IToyWIY zq?0n6sHvyOe(=V@KDvH)>bu@nM z+`PD7-*wZvB=@{%fJ%k%B>9z4F6}1InL~UR;hT#`zj;J$3<+HnER~SGh~Ek>Fm`ch zA}zKYp^Fs@mUEf}#t)hJIV^E@TJo%lyZPY^U6s+-%7hGUM>RY>r_NGOrPG^crqiw8ql`)5biSXkS|Y;}HX9(Ir-r+OIl-7V?Y`!h#hTkB;a? z41ZpQsk@*Q@o@h1Qxr`Lq=iOLA%+rYyHyC2%BGeD-p~E^Zm|Dnhnj#Z@%&u&?);bE z&9Pqu?)X@4pj%BbQj%Jm|26A{EgAQQBMt5wn{y||UkyP8~pjlH!FHprvG3xnBI+k6uoQ}WZ4qB77G?oVL?E1DbWNkc2*SK-m z61K9lg^1U5W&ab5R(I(bQz2wfN}#=US8h^vdt4w9uYf|mOyIPqLA zjaU)ea2ZEmt#1UugrvOf#o!fKU%v%OOQ;pKt>~m*xX3K*?-XSpY35|cuEGWyziAPE z&5)hZCcAYM&yH#5*$}NZCR@Gw?yj#u2sw6{taw@0p`Ie8eU7%C6NunedKA7^3@O2C z>~^kbJi%F2e+-RE(f!pJ@GKb3LjRwnS*BKNoBGC9`X?_cd-Md-RS{7!RfOX)R(k${ zNBxD*^{zf`&Ee>!`yCI$g5mFcxBQHXlK;B72*Y!6VyEz> zuo)cQ^0mv;i;7dA?dyvFMG~Ehv+nRS8ky_$t2H;Ng_s>K$z_kylO#Lodc5z9j|D#s zj0An&h{0AN_N&ht`SI)Lar*3wV26nYKXa{aY&}xcgF@mUF#^i&kUR6Spax{+!!UuB z#&_Li4(wRQ6z+)c$1C)T!V_N|OwL)wVGozg-u*D#?yTXw^7K?jf6|~$W+hsm`h~OC z@zyK>^VU%mjM?tGXmvTNe!<}f3Ign?m=-&Kv(2RBQaHa`V?TF1{3Ato$SMaXWp#RU zSj$#T+`y~Y@IFUY?6RTV3D2CR{rc%kLuBHuU>XhWgsCDJsqwpgMKI^{cD_RMTYL$^ zxBN*bY?PSwEH^lu_YVf=O%KP-kEr!M#yjOZ#=K9<_kI>8mP)OR%Zmi5}UvKBPe%d`r;h>&oOFm&M{@;h9_=KY9B!#Jr5mih* zZM$g`9o6-+?7gaAt;UvVBS;d&iyik9r^Q0qvZF%D&$IqoBbhetS2ul|cKhamGt&)M zb>^+$%YBf4F`jL+Zc)S)!`oC=K}d1Old`N%Yb^@+RrYJ2C) zui6>orXwsTP5u52F76PgtevMS zUhB!^YF?~If@Zvi8|Ex0V-Q@m%$fbRp?__`G{n4H2V^^hpwbmER$(Llxn`uLOR7d= z@55nrRc7$NS5KndQ9S}52vs_P+f0tmy&b1J15jTtMW7|BqI;oxww4a zsP%qbg;+S5ivY!#sqB%5v3Z^w4t+oWp~kbIo4vjbm#^88Qj~8ftd;tA=yyV0{7W zE+KiecD(SbXi^=EG(1gMkV>i)2&g%2q`z&ZR<`FBpmVapr@(MWJfX08DI{5sFUt8K}>TB`Qjw!u>{~HnPL|Ut1Rl*?Fti;L@{0lL_TRIYMyG@FDm>l)H12X`vMAG??+nVex(2Q-i*0Rw%&Z- zuQ0T%TZ8Al;0@{!(|OLCK&h3<>{T{BDw}Rxe`?cw`)L*FACJy={fTVNL!+=Fbhyb< z8!IG%c2Y_Q%efR7%FO(g6|vSfD);A?%6O^TqvAjIr$y&wSxRAF3fMsxaBUd&Dmgvp zqiHyc2kUUH(%X(~JSYB%P;(ZuL$$SF#knv|&RAP6vhWEAi5MZ-q)agiWf-n~mNrbC zv)G7+)5v7v?cu~ZW{(+T0)BFrb8&2Ra*mvYfz>G8M?taus*Hg~*^H3y4*g~XldbBm z&0$3{Bed@syIive0(u9C-+U(S7R8{_Dy&A!%EJ*Dp(73^>3&($A=#(;8|<7sbY#d! z`a4fdc#$ctwDHQ7!nNVjw4|{y!??XlwiqW$320yrHc%6Q6M-A+L2K&Gfd-?DFI<)V zc2F(!?$wU8TWiKS+QSWddqS@%N+*iU61(~#y;et(n-%P$H^dIXd_U8;$zwH z+_8(;61`z_ZXH|J3B0l~l!z|Rr)JZ<>y^y@LE1oLJ7;J3bPMKo!ZQp6xyv>6lQDF} z6ng7u*>b>K@!4c|=EyjDWyTLI++J^_VJN+oNHu-&`%=| z2EdaroTy<3vv5pokBBFaH^BaZ7Fl~b$!O(=IcoXpV6x+AXp+y8IZKMGpLl~hkSgV+7CwJ35UP6QAhYpe-H5&OdXhv z_&ah@f(seHPXl85Z$IM(Hh8WHs-Qv3G-o>+^p&@W2`>9_iz)um=%!f6z6qPRTx^r8 z+?f=5M)9G|CB*W+9AQ=Xdyq7O-UggzGRA5lU#UvBIK_@!>_BRc3ELhM)19FTi~NUH zz0Zh)zJKNQDSQakj2Lw<2}iurC&+&&^Lg!R*UfVuS4tPB0q2p+Gf4Rwu9Cv2!QO0s z_^i{_tB;=Z5j2l-1?MA>zo>k5BOm@(cMhNS`ZJtRTocS8loD*Oa_wOF6t=T=utB&M z`btQto_#R8>NBmFEn^b^rR1gZBJ(LiL^?+nY=o4LM}A%#JcQD4hauCW zp8*w<`?r|*1YNY4d>Pm|&zyUPL8+zVk1X~7tN$8WDUwyw6A6zdT0OI9`Rqx}z@E|H zfgJjKMSzw$tuI_fm|7$qlQm-V)oUWpTk)Cv*VK)A5l&jNxS4UjIsPm@$*2uLxcQES z9|Ar0fNp0Wzm&OGBii(s8{HgJQyK6YuA>t*>qjXAPICb`^A z^fd|hTln(X*UbQ!iS9%}2^OSf;R{C=+E@6f$L-(CMEZE%DEjzL6{4UDp=`XLwxSgT zDMe#POt+B(pT}GlwaGRgO(VZ>j=tKPoz$3Heq@T-0x)zLJanI|jPEDcKhBOFd(6Y8 zG(<}Ut0qlLl#_Lpl-(nttO&F}B`Ns>s*oT>p>!=S#hiI zyv9x~Lg6$(51Ie_eY;t0yhOO-kzEcDslSfbN7GC86`R0=*`I~(O&|6gIB=uFdz2%3 zbN&5!agUs*RB{EPa*=p>?CcpQF!cnb-!m$uMm)F^j-FvFFLzl~hybW2>U+W)6zWz( z+V5857T=VoLR5`@rYqe-@Pj~F+s2T{#r~8da{yaULgn5q;pe4c55n{}@XTTT9wJj9 z)jO3$ySg3P!hPp`j~3V8Kl5UmVbjU@X)Ih3O}$Q(Xu7{sjB1EAEff#4lhhR>$DSLO zronJtG?xTI5JgR0%@O`c^UT#ZY`}*9x?wO7>KXlxa}cA`?7V#>5Xz2-?c&5Yp$z=Z z(`EG_>^7c1&B1{IH&|>d$61HyZ2soJADfe0L6ayf$5lq+PIxuXRcABio^$}Q?ia52 zq(i%|>9l_3Oqs&N*qA58&_ryMXOKV4frz3{_1wf!;zPK$#KrGPP{ksUE^3gNof?_b z3*UP2D4}(P+iUxAbe;{|u-w=fa%l&>;c2>Lpm}t)D8FP(!{4V_x@RG_5Wc*pa7}L% z<$Lx9lg@VO>k0q57*_`1MpTG?7l-xpcsI~hCeRluAa?oWdA$MI;ElX8+UMF1*aO0P zS=IHvjj&t#Au(T2gbzrJ@1ioN#bDj%({t+Tma6mJsQt1v!5ZWI zpA}-9#g=66nnzD!*z{y^EI*7+{p9rZ3*T&Q`@uSTD=ejY`z)*bHxM0Zm0$tJ2)>QT zI6>k)A&Ov=j-nd#4*c1Ld{FK``S_!*?&jiNQCC5A?xT#l2gZDqVH0k-LWU<*%krik zVq*Y;bcGSKc>~4RC^MpXP_Z0@zkW_vFIXh6xya%_86>uaP_H~edX9Ic5)ZKz?~Nmg z%RLi8y-GweTTFNpXR}p~&6rPh0@U3?EOn3%7OP7*|2pMXqN}@E)|CZjY;L|v0-$$Q z{*yjS_$lR%^a)zGH-13MXk5DNoC@K9K=(^=OqyauSL%Zyr)S@g4~9IK83g&JUm5K( zOEXODnH9Zc`>{W7F)0*JyD6_L)(>7Z!YV#kvA~d7zcU}au*s|g@Q0I7B@y?aUgZp1 z&n2q& zbspC;44VQPCb0^q_D|i-b*KQ?Z5zbDm9s9Vz3mg!YqV@pvw3rz!Ue`>Z@G zju{~YWQasK@14k0IGxSO>y9W8PWc%7nA(Gd)0ibNKKQeVY9Nvsbu=DYEQ*-^QGW}q zQr;|N`5+)^kg|4!U#AiOn;=X{Y=o!Q-~ELDeZj8tUK_Y)_@+fB@4ouS|5cy=PDI5* zWaCz>-tFDHxL+H|)YUvVscF;asC5r<0+)YjmqNac5_9PU!tfhTZKfeM^&e2DUZW{1 zgm)Rr+9M-^JC}I?iedz~pgaMbrqR9Q)1Y4Kx}!7dtvHTOu!XB6JsJ!Ay)e2^(1lpX zdofl1VLFwI70CY^7>k>#bFzk9EJb`TVZQAb@~sfj&LpjFB;$~0d{-*tkP}!<3`3rt zI2F!QF*2FMVLzOA1kCC*W%~`7$@qUF`k)r}3LMsret)qQJ+= zjS&#NAHZ91S>(pM9VTyd9=tJidHf)0_Gd8uu&(E&!UL3|MTg_)1kw8$zkCAe@+-n; zu=*Kl{=LOTMK`)DO3+7BibF0Vl<2o`+6yrPhVGZ%D&SvInazUhobwUYRb@eSjgtyw zV3{2-%Hc3No`;*!io^>ZV&iKI3_+pa9U=gz)vW_D08|3O!I0Y z0Z(5f5}r|**q!<3?cVWSmPh=RYBYtf)B4vAOgYRJ^IoL$P=fE^{JwPR>mcjmi9Momj7W3p zW3|XBq1Fi6ezdL}?$`u+Cz?6c!k#j3Pc?8qY9{k*6{8Vg6dxHc^QR3fZJ>?aQ(fk2 zzkX${o|!zetUE<3E2WT|3g-NaB9-8$@FFwG`_J*p1_U* z{fFHu(BI71Aqg<>X-WM#82eu6(b!E+kvIXPWLGI?HSSfjKub_#oF|sJVo&Be6XD?J-Id z8pqvBIbE@JS+&h9wTt$y;5MSv(T}skeqvem=f)l5vec*pC z55Lm)u1Tws1o77Je%?P1pKwB?=-er1Tq^ypscC-nW~^)SLVDqpwGQLm!{Re|M_c9-0h;s2?cTy z4g`?hIk46;0cMl8R~hJO7)uifh$Psmmx&w!Pasqo0ZoKqt3pvYurI!nLg2V)v>2%B zftpwB*tHs<<~Xp1rfo8aDsAf{PAR>s75-aC|5GzIz@^fKdv+w<4kI@@&^JUbkD*C` z8WOui%>a+03jf4dxBKm&`ww=6paPj znKT%#gYA-PL579krwxSyYFUP2GsoFonFm#y85aa-(Et^Nx|&ywa+#-sA}O``!ygMQ zd(_^bHZzPJurxUikOa98DdiPl;rc8tlyZ@lw=1)D>Pgc>396k^Mg9J%+9X9P1>dJ4 z4qE7WNA~jGENcxL=X)!XK-4yI!&C}}qJ^+m^d#JtRYzTD;v=lYldk8Qy zg!tPt;?*eoi_(W#D`id9eX!U8T^#!hPQH&a@nWiS8pQD^{}f1Y*;UwcO=2BAj;3sj z;qfT1H*l43M&AMg>cQKY;TY6;KopV0?tb2<2O)hH|8h(GP?=7tN_(i`5A4KUZuK&q zJ{6RpI-z+iRQ8NZdGPBEdY$WvefFli)WXPOF;!&!4hSOFWOC82!RJAcmiGUx)+P3= zj0gs*U4!1H7d+&**eoFxhvMIjJR`PxV0l=VrYw#>HylwUP%TD4Y$f?>aPVrB5^=^T ztqlO@+CNXa!d6t7Q-ezdycBKtaifS}ssFm`2rJp3;sQfaH2s@jhgXwYmUTMtGRjK+ z&$`zIXo`ur*s2&`BMSmi9qY2)xoFv8^g1Z&oUvC=$u?#3(VU+l*0wG3x86yIZ5-}O zznVzB434L_lhGC14!Eyc`Y(Sr1Nu6EIHxeI^U$7BfMlf?s`Qe6>v)eARE`G?>TQ|( zb9qyqWVy3VqW@7LI{ID`hB(&Wjr@g{>JjzQ=-sE~YcV7BQrx!B(9e?l%>=5=$orD65e4LM=`4m+siYibNieo(O0?HLiI0Bg2HZ6h;WZq*vd-- zHi_tB^K+Pw+t0^-!dvEHjUag>1tgDPeHu7S*HpM~U%(^?uOs%E@@PL36&U`YYRC=y zc9u>S;|-VE`Y*t)Li8sem>Ov*-lDFH1_PY&E*Ie8wXR*Jc4lbF7y#hJBkSQg0D#k} zdAA|Z(5I-8Jou_aZe;?t-Qj6MB)yj~T|;kZ(Iryyo5{(2=NZHtMFiVBx~`Jw-5ACn zuazb^eUj;Oiss_BWy>)UEdg=+kUU&FzB7kXT*<#{8~&{esk^1Hcj9|^x}|7{693Rz zZMdcm!ndrn6GgW)P^<(_kciu%g3)oV5PF*3e3OhOUV=1fAS59?dsn|?=bb{3w@xjA z6Nm`{2rxVTGY67x!k`OrGk#znp)Ou4z99-ww3WchSu>OLx?4$&n1+(Azx;lTk9mj4 ztCe4WWZoK*FZJ?ANw)8yyyehS*b*(aN;vao{Ee41;rQgS! zs)2Ane49Enf?5r9MnvoijcGei1dQ@_M}Zh}SbFSDWX!M|?U4y+FJU_op)A$lKOn|! zBgDrgj_*Ab#U}3KIW%Dr*~KHXHm+t+m5)k2csi$rE}Z&KZ>yTbv_H za!~^gEw>cVqu2?ciI}T{GC_|e+7H@gk}6;?8B5{h7)GDEHUuI+?I!dL{wv|!?6ae@ z$2)hIs6|sj?NiM9wO{F^4YwF@^6E139Uh)%SPTaA*RsngX+0S%OxN_psB#AE!Vu=h zHIwJ?N0P#HlX0QS7`@3lbSO#~{?F@`ck|FDWjOprqdo@D`|UTQB`br9g?Mp6CIiG? z!hjT5@keI=fROmt*PbtGynA6|hOhDePP$BN*8E4BQeNLG{halcVJ$HTUwI}-K+S-N#J59!QM8 zg&d+C&(+)(h=>hhF7xAAT@pzQMirefxTTV5Y{_o(SA!7wBA+5Q&(hh6DO$lvQMOTD z4=6zZ=EmdyvXr*?(#0HkjmNW*AmuW7vHWawM}CWsf*g+<92&~d^Zas0ogeoOKp%|;FPdfdis!Pq6prP;M?9ZT< zUk$SkAQZKQfZda2lujRPnO?tVpC8cdQz5cP0>+GW=PTfdG6%0>>1F;}InbD*gNDX| zT*O=9_;(@&cZ5tAkIb0=%a>el>vT|80l|BvQhZG8(7XPYCcD-!U)n&PHpo}eV6JM~ z@aLBUiqVqY$seGLf|y-VVeePGx=OK{h}Znq+C0L@VQaFlSLd2i?`q=SiLBi@RNagT zc(&ej?MEXl>y8-|SG750@4Q&-pXiACQk1;)hy~ zbKa5h_op2(6}6u_D;$!h;C?FRmE9 ze_m=g-mzutX4QYTTgVNXzmW0jt6aId5q9{iGol=*{O_QpDYsJ#S_1|P$3kT4mNUFQ ztbsAS-vJNJW>uP3jW5I;!W{@>zjt=6HZAriQp9lNFu{R(o+QCy*l05p2zDecdNvHA z)u;g7SUG*fQ<3^_t=x|U_|f1aHfOVC$C0vS_l2M-4*{JBMe`%?cG;_YePB}u8N)Dm z$9QJx>*s}^0Xf7NR6nBNm+XURF%DWIVuNCy5=v%YHmN|n8;(oRZ4f?Qfhy296}%!6 zvKo~yC4YbXl=oHflZqU3CK(Mf0+6Ts3^OrU3w@PQU)Z3l1>4U9=aqYrAtC- z5Re7|0cj~|=|({X>5%SJ1f@HNk%oKl`~Q3IT8EkW*0((CeNXMZpS{oXz$IhvBQEC^ zTWA6=dYyrVsA1ecEdQ?adZTJqV_+ry1Fw0SVP-gyS=)iC#91#^E!kFTP|g|u9ooTF zd<4(l<&$faceu~}cZ-7VD}PrLJ~fED1-SoK7`~&l$$PJ%J%^T=hI{j7UZI8N#)*j+ zKu8cwVK>T>YKYH>V#sFYj5gHT>HBl;+nQleFgy~Z6zHmQ!+$S5P63n-GhJwLUiCa* zdD(Q{a&#uS>kKaUWQP~2SFhAPNTgfgd?>PoXgPws?{EL@zdCUErTWtL^8k8NpO~cP zg2|!&qug)hZvWxMF=zcP6q^=<`nKYm7Nh!J7X=agW@oh3M7eP%_Du)I7mDMcDDN(t zS6pJDu|q-38mJe720qN-?fI<$>V>8;2m3FSm$5^9p6yiGn{>Y!;8gWD?|NRr&)AYJ zyGJ9HW_Ye>rTz(X?L@FonYi(JfW}1XJ33-0{U5)ca?aY3q!B-fW<>(m^O{Kr^$@q_ zr0mD!XgX`bKshDf({E#bkFJF?egojh++krkyw>I`A4bY`V%zEbA&A2*)=CK}tygg7 z)gDyL%NoA(#xrSUgitkFhDGG`P-jD#am2AAZt!Sk)+oHlyKqN-t0OTAy-d7-)qen23rE_h5j$>p;x!L16!nh+w*^jr10{m_o=9;ESIHf%`r@-4igu-uLKxE z?>YAT@b$AH16ch2azvj>mqw*5MFxu!Wp5%!SOlH3#T<-HihLVroKl^vqFt5&@_So* z>ko>B*;hd+*1bKXeZ&QL30-=HU+Y4eIcqMIgdHY)uAtV~JGa+zJ ztVCuRJB1c$_gsTYIO6m7;QQjOXrAAZ|b< z)9cwqsT`ck_3zL1anDBdV`xE!Z#;n!rWFNelkff7?PX3`KNc15UQUW08x=20B+r&f zp0`#ix6!UiLQxU*b)N2veego%Pl8j97q60)N&0lNi<7t9>`sgc@PjExGo)^A~TxteQTy5>C*Fk{5RKeV2Le+&cjxY% zUmxdk(m)80bN{&<&~w2*h+CJ#2J3gH^NUS762d;sMn$x&Ypl)@L**L;)YqS_TqZ{a z{4zQe37UQjzY2bI1$k_@P(6Or88-Z?U2VSb$SPwzXV3k$)%k?~-jC$#PxL1UN~H-0U{Vs<&x=rXt_3b=pswkeizgC#v| z2O@nsBS3jj9;kEjm3#YRvJ2d@K^>T7sDe^iRZ{Qir%pKhmUm0O_|ovTt||~k5f@W2 zf96favheFm+U>**rcseu-ikc)&9IH9J5;cxdcv0y?kmy@r_Xv70jecJukE<*tkeDl zsnJxzGH4SwW_tHwlCk`4aa>ReI-*Z{pA=F!j2Q|vA`-s~TdXl-8m9_qUcfQUQ-bMY ztl{bcCB{!vj(sJFPS#U?=;c_CWA1{iYnAqGcxxe*^Ky0sxX`|^+8mH|HN>6Y&W9Le zoqRja)ps+zi>m?^cv%R+kuxM_l?eJk_kHl0gu^ysH;JxG835%2{Mpr;jzc{?b-dk2 z5v#EJQe~)M4krx?pft~P{AVpBb0C9YC(l40wVfOsMAP9~HZ1(CGqo_NQam8R@j~_* z=HA!t&RQ1O_wgY`;K|(QyRS_FB`a;>x~~nKS3A?o6o)^FS#vefkTC7>7O`Bn5 zw@fBzVx^3y0zcR#(^yyBhro~TAp71-IPr|VV$izPx%iy^K6nSLgv%91T;CBPxr3kQ zA4=tR4zfou7Xajh&476tjPeC16J7`j3vLMMEo_>J&ET#df~JUw@fqO#|ugyJ3UR{F;y-O>4=z z9;9Ixj&wzCJs^3Kg9pcEc$rEevsZ=1a6s2qy8vuel(!$Pxb_h$3{!1ED`*fWjWga3N}AZG;g z8Vmpu{6FJQnm9vP?{3fD5*zsx#hKG&yC>8;yg3 z60p^qh_e_JB`SpdCaK(50qZ!!F;awa_8@~-tZB_{FOI>@N*Ebejf<1F4WhnqatV`&K%k|YmSopB}O@z5ImSDA%KqN{L!-g@QV1B#df+=#9oo_*}J z0Z}<=SL6UF)xjc>YBR=SNTo7!XklAo57?{3#URnBJ_yW#U`3UX)K`hg&HSitL9=<@ z#Ah+Q!e+qM`rLjF>^^N0Axck`ZRj+AwQsD@!GGc1$7SD@OC{ z<4B&EIGwW`Qc}wo$=_^DrrhL9HKWYlN*%)u}F6}O&S7!p| zya1OXaeI3>H9P>oagxPnO>7|~oq);>tNj3}PtIWWmyU6G`*8BRedn(xG-Ws^W)+PY zA@{tsi_3(!VZ|4Cadu)xal$PaN`4z`4*d%@1(R-rO`->9M}JvbTT4gNb}u8^A6-51 zD^lBpy$xcy!CQ;_WHSBAfC3fSs?KsllE7r+>aC?nY5RBJ@@)_OGuCY$Kk>5_o+POYJg-Wk3qOm z12d*kFGZ|C?rU%f2}g`;WgzG^xP(O27UoA&%k`?+k{1&d4b!?}4A}yuSs%rOTz!=Z z=JOE*>FBkDx|xmgjTMdZOHb~uxLD2fPB(qt*z@?BHC>kL91Dsl=r-7H5$#w|^eD08 zlFW-43!WE+rgN0%tPL^;$HeX98i^+54@D^s{U&3|G7Wa|iXwlJ#iUM;8m7GH9URxf zC~nNXcSx9s;eew|f>L<)ZCReIdVSl^dtrLN?sZPNfS0KZ>*G-yFvs^d1WulhcM+wY z3H%WNb4(rQ{egOx&smq{0}u-uU=$nY{HgSg~NrjNZn2D^EpW+bTTR?h7oB;pRLI^m~ z6d)`9<1iaZETWGe{N=Q{+(+S!`DM(Mc>Z0s@?hg$luwjyro!ZsV0Zt$zC_|Rc0C-q ztUq@;?d^=Y$=2tNg|gRCSIxqNEL&7s#9*I)K#rY7Fw$pXkI}!iS!(Qz`ELhOHREhy zlhBQccUu!j^Am>Cxs!xdOnwzE#+7jut9jy)sLL1_p}2ni-A%85qf6bNtA zrZE2`X+VMXkppeg+vsr}E^)k##c0sSIbZb-r3O9xgtuFxeRi|ZT%C; zZT%Ctsrf(kPnEc{=}`Z#FPbfLS`F$IHGfwKL>|^j?@=pgF53quV`US)Qn4}>oGZ4O zdrog_;@>%I`z_dPegmHwd-QFU%M-MDkaNYKT~siG{Mz{boKt$i)i1Sd5-a!+=~Q^1 zkI^=H`qhRYMe6I63^=9!1C^*=L%rZ9XjN+1K@$duhceh`E9MAvp{z-#)Bm8^x*W&4 z611Nq67R`tIs;mWW`Xh33ljhH)kjMUt(~uf3m*xIe)&i%6-)v~IBfYy$sC!}=?VKq0JTqZN&~=sD`}r^Wg9LuP2lAB|-6lU0whKZxg? zIpqhRCqFmd*hBPrPOjm&k3Vg`5z?GlY_ODHh<7;*dp*0_+i}qO*;_`21Z(pvW1Nh) zjOb9R3Pe?D?MxddjHQ4KVb_>J?KE?-==#3(&shtJX)}{(zA2F*kPG-I*V4#Wf9>Gb zMN}i+JhpM-OqpRjN0R?dwAh`y_LI7JOO1#O$#SWaYKlu2A31ldw4DD?QP3bMc|Xbd zAeGq}CtagT;vr|?G}NDEGnpx)3L~rs<@(iBKPZS?YhNiGZe6t$&j^HhBJcEy?*X^WC4$i3~u-ST>%2rY9~OZUtBoWp~U6C(x{%GIj|W7->?sxt1gAyUeIU zNNjNNZE#8SW0;=EKf}c;V8E(;$B>)E0RP1BM2ZSSlzNGb-;6%Ba~CG+IpEUR(q@f$ z%MdL5k0BUGtnEk;4e&zD;b07i#<+m72qt2x(-hVmI}9ox*9ti(P-dYRQf9&1#7rKn z#q^*S+dzChSE87FdE-Z{#wlb%D>j%@S9w+7Bgn1Vw3Wey7&q=zRE-w|>`HHF3w)^I zLytebz;j*nwl(M@BoBE2_!ifEj(0;|r#*WY@5s$IX+&_hvb_^-uP0s@t~EY*&Mp*_ zxOTUuN>xGviWIKcRwgjW2TCw0aNk>*&-`_u8BmKUp@F#p79%&qb$L?hH0cEwgDRX+ zYF$e%VCjAyH^XOD)soncSROQz(m>}ez{sy%pGox~xc0IHyJ9&4iEMokm|#s&#YJx%Re*=TLE!wcCMx@F1}D=c)X5kM_r~-qGpQboocw- zc8(P)O+47!>>!lR@DyD%wy=C}yFca}i=C5sxM_#oxSO9dUKuE|1ktMbQk#!I{aioq)~L6Zt0I$WuZE2~MVYI=QIVR1eFCaxuh11^2POBEiUn zxWR_)yHUlmmtBNfyb#5e@_E(GI)Z?0KxriA4JeHi!Kg6F#d+=w8(BW1rTu2b&|>$A z@3M|(qJnfQT6lBVwRHYyQ|h%_m}H~^C17Y`G~i0v(_)p%^%V^->%RDjC<~dqRL&_E z@rXZ~8ozwFfqVh+2j__jF4Hl%1W@m=TPwlLg%`Xbcsa~Fz)yZilck?=1NYZ!!wa>& zTQMEy)(tb@84v#RfC>}SG6+tKY-jZkpwWo%d6;%WIouB^8Ub=gP|{~SXF5dGp{(2A|Ku7 zL~HDK#B!ye4D`?xZ!w@{fvCscB$h$8iLsavL1fa|13m%MEQ6QJ#vEFNQ^pHfT%4W{ z#QpKX9S47bn29EpO#H*~hC~LqHAFd0f1R|-+4+^JuISsmLLCSm>YF7iOiv?V^i@0L z1_<&(k$o?bnOm!;3woro8@IGo3?3AUQp7S~*+kG113A7tu>YZLY3>R`@13hz{^H35 z5Ld=N%>o?2(M08eQS|Tv`bcY8ih&?>8Sa762NTdpRw-Qj0cctFW$p>1)DshvWd0oa z05Ri{;x_v7Hr5qd_*vxhk1LS8t<&YF|7g~@i~@q< z1K@G*=yA}G&r`&_g5q)tljyrXtwMBfUm$_LtZFS{y-8xc>D|gJ74}JwU?)^?B0Vn9 z&NvT--zt3VpaFs=;(5Wj0JMAlcD(2HUG*=-W2vS2@^OgC9njD%Xkc79?WIvP(tv=O zc$8lvGSKQ0PRPB|wjNJ^OhYZ@CvBIxWJsVkB;~sD`m3(%^J{CMXeV?-J9sACmigZH z+Zm>jWGo{gdD)px$(lx9Mk}%FDGBEg;EMHC4DI#t@00q7zQlenQl!T$ql5B^lu+R2 zRFIeC(&4?r zS91T$PYh?|lp@@SqA$=94N`wGR^V!uD%tQ>8Wng`5P2L5ceP9FhK~0^N5`O}ebD$H z&@#YYlm$rP%u3z;+e^=qMD<-^%q!)EXU>}I7ergedspv>6iSfPC4iMJEKKHY0{0Un z<)jUgvPYpD-ijfmk;RU5UU- zOhw4tu5VGmP)g(_y?%k_0gR>xn$wxcYboDNIxX1s&H&ApQ9Y6QW~VU0p~d^K%cuw$ z|L)HGRb25p+qdKzvC<*|$ieeI68sYGCr{hPh_HT({Khwg$zQUJC``4wG*4k~)hnAv2 z=8x)T1=wI%1KW?QYbYa7 zR@$(zfiik1$McSTb+Sq~-X=p#Jfj(wQb-hJ5C z{X%vg=;`3)c??c}-dv6ZULwtIe9u!?UFL2MTYpA^{(0V_RZDB@0+tP ztv6OJe&U&_&raveu4jN`&F_>h)b}^PPhy^Dyr2wHmGsz}G_suex_nq^<2@L;sPAg% zwjRl#n)*Y#-N1jYI`S93vP@+|QY^C2>Pb3kIcyBByXJ1!u@TB)r6qqSnNT_s3>{in zFW^Quhsd=+rB{l62nQ)SUDlKrpyPMSX#)iS0nmarIPXXUwiOlL0~OeA6J@?-ZrbutvClIf!S&Hc&X4E=Dah92-_q3i2*I7OvQ0% z*ew|(Cg6kY=({}(e0lSJEk!^JF4JNomUpibGKlC(Z#l(DfkWyA*8*Oy#16ba4n6;u z;M^u6_Y@AY%o%?hAQzn@ zlj)(n!^lRs`@uV;WAuwrQNr}I4U_PpIA-f8;`!KhsuZ52u#aILDkP)qAiJdf?^o@> z6Hi{LUsdi=kxWIF7*=cNe?Q=nYVx$+=^FG8vksw6JL3-m1jBP!`8}>bn~swJ+byCS zi`=sH1ByzN%vg4reHjPwE0=Q_r~OARCmk$ouq;=dBUznJv-YSBZe@!SjJcK`EcRKR z?L_6bBUMv<6|n~D4`#&}Z&f|8fX{A)#syp@Jgk&zgBNuvvkwhXu`vG2TGjixe3wfU zWYQ(hDZ27b=kj?1==d$)6P}!5hiNtgNUIe(@XVni*DZK~u*Jyfki+1;Ms9{io>9+8 zdo2q$OmIe;pPRYhS97xZ({qI^z+?uo3m^=-J?6qr4}~tjCf7+b#MYRUPaCpk|JI|) zi#$Y@F5%*C;s)!#2rcGt3!p%k&!EuoK`b6nNR_inZ8Y~nb@iom-XoAr`(sQk?Ms*+ z){OEtLb2XOLnAYQ*dIhp6KRDe1l|UU6~1ijdl(#cNYgnkVc8Y*FdE9%mG}W=q5o_Q zf>C!I9M(@bItH;SFdWI7k1Zg3w)`pqDk+Ub`WWghR<3*EL{LaI?I}sHB(591oz-FV zxn(#O>qS}xiG%Lx!vc#BKImP-8LrwQf%kEQ8Fn1%EpWw$n?3WT=}vZ`j;VC*acEg_ z)2&bA=dwOwzbBDRRQ$E2=(G*3QPOOX0Bh9n>AB)PwDSf`X|UP;ye|52d~02Y%)87P z6bSEH{`(>YYCTyRu!lO4P13Y$u?3+}7}2ur)*s9k%G2CU>VWLEh7V42&tr18Y5934 z2il=$TjLu2`jk?~`c|gidu<~ib_{^Ek2vNoKw-QFk%t(sT_4UB=2$Zvg@hT$TQJuP0$qP72f0lz@^Ah&(G9yM`t%X#ruj+l7tTbDmPD=$lB`y?f{?^CAITs zcm#b9oG}5!EU~Q(g&#l!M$3XJ4fzs5IG{%SL?jhw(>54skW&_!dhm>AmmZy$`o46}UtXD*U2cQcChi*R z%S0WSSh6Rr2b6}>#h<4@1@-=InkrMUZ$_^q$wu@C$ynx5XuJCz@*V=Lk=ym2C4BaOr}%H^#=b<;A@48id%NiJd@l=k9N3|sagL|yWJ4PuZp1aK^;+> z*Wj1S4$GaTwY$}^85$FQX-Z!n6nqS+1rK^9y^~qb!s*vD?4EMIoW*N;;jf4$0ai^ZR0O$+mNFTNQ@cut?s>~o83`SYW}91Ve+yV|LWL&;gk zKsh&Dsz1<=9kxEvvOMM5>E1|JWKa7rY*6r7q?aP>VckGZY}?dcrC;nl$vOsE>^ntJH}_|UzP$uw8bQs?`k89S=DnAfR& z{dcsFB;MaO45Oc9bg}E_3Fb^;*@!&@h@dd>=4ks!WJVufKKc|^?jC#kHG}4G9rxVV z@4-m*H>PHxxknfW$0X4EIf_IkZ<;-i2FEG$+_0kcVn-=k7GJ)|Hni;fiPt9cNTxtE z3FrHO|9#5$%AuYIayGrB#Fu|rC=*l{KfX`w<;4F1FDy%{t`93PHmkbl z_v~5a58>chXX7$$HE9bv5f9z%dD81}7H&RE*r((=cq28nA%A;N)p1fm5(Ko|BnY`W zT|8(!ov%;m3wTDvXqI=BT+xEvzdiJd!OG0zw*MpM(n3dh`uExUmFB&xDgLrd*E#h3 z7FVY6B{aO{nd3q$tVNG^m~6?ISmvui=q9c~9zX{!O={~JR=&Q97Di@nE>4(LnS?DF zgtX6C*O?f`@5bge>BsCCtUO4Agr!T>u|qE(*|yLHTCIJtox^5)=Ssh}gn^Ig!NEi9 zUP!=}OaSi+FP&F4e9EMLw^p4;y1@h8!!5W(NSM&;DjE0KbR`7Z@0THE`99A4mCk4H zW0yl95wQZXSl6510H096g`H!yzJ2)6E5Pyd75wkTAZxS-i`P7@Ew-G8-YwJXeLWy+ z_O602JnO9YIMn53$1ve~1<=a7^?Y<^TDHaMq3$*d;iJc6|8@M=cnqri)K?h@;zUUG z49_e(?_5qlzd-Cf9M((ukBNM7{YwlP8{yS~fO=5;8Bp#5G1O5f%yaJ=HrLD?_KE(9 z)EPqbEN{y+Agx$%A6cX{^HeN~Pmbqo(NpnA7V_5Yo6*Ps-_K=5Ddrc4vM+_s7DsB4 zsMC95twP}RyYOF=NN6OzxFlY%+2rN7JbgeRrI~gjXE}Br5ZvK&k~EUDwG_#}HyAWa z{2iM~w#49VX3y78fLa~cN93-H*ihB18Zq-|Wt&LM-Qe)gu>6VpvX_s7!8DL5R_DIZC-{?0e1m;tNfkvwh!r#u@x zcF{+_CSd%5Gn$L&3p%~IJ*7vCi))EYSb0w)BYz3QkL@90!23)ybjWzD3b++*TwK%Y z4LW2DfL0MpU*u2KL>VI)`R(Vzly_9waurC%+es^O6sG(lYQpG6oLSBS{(NEKp=Z@u z^`zR3wR>Y^*-Lu1CBulEVo?PaI7MVPcNAFQ6jBN<LNlamV{E2q^h3Z0CYbHr4Lo7B}A2z7r zYvEW~s!s5zJtk(R9qF-RbaDWUD4>n_eXnkaB4JDZp9ZfZVH^B?ZagzH^VTi-9&x+^ zEOd+`MFAEz=0`}C_q{xQ(YMtUdg3#eat?K`5_0P&e1qU!j^Kz*XRueborO;n(^@zF zx+wo7C{qNaMfOGR)@plqWR|~PEaY`pyBnTUo=6quQOknHB>I5xqrI+{yV^MWgA#*5 z{#pYYobDtB$GG)PjnMUM!wys#!vf;YqVy}{v?E00eYwEa<_26y^6!j zv@_!iy)AZ*t4_3y;TIW)G1G~u;c?GwOHoN^s{4Dp^NQ!SVUIlTkaH(QdYl+_(CE-J zfH=8W@{SA8&HapJuucYmOnm5b0Uo~WdaiefOd%eAd)Z9HZjJeZz%s|YAOD9(c#m@F z!lt5%ohH~SY_BGrW!g4oeMW*#qD#X?Mk44ORQHNhJ0Xl)MtvfF@Oo*y-%AeefG3fyFeWz{r9>Y|VdeT|sSgqwnK6}ghg_pG z0xIY4L$kJg(wMGyhd!pnvD?xVo2D$8IbY2!-Y40~# zr=gd$DZ&^?Vt-+m~Yo=#=uufP7si*CE>PLaHJ=?;~*7~)#fpRXLT z0q`6UD+51vVjW%b7W*V-j-{^yXLn@jbiG5fE8mogg*aK&DdLzi2a7#dGU0>zCL+zi z3-)1xOK%e>NI#%cn0S2hQFb8$WrSUdB2&!|HFKu*$#Ae~q_E6d~5YmGqU(60X0Y-8mC)%LbiaMU!hRvR2gv;!j<(6AtD5 z`@vv+5iz_=FY`GNyKDWb7Dc@puU(@LyIiNLQB7sd(Mu& z(anbbWd4L`R5e~y`VD#NUSOk9QN;Mv`1QB)(yRSkK$%qrf`nZ&yO;R;jdg(})8Bqd zy>_@EFT0YxJ$trQHv=MSMRY~4uc0zFDbc@gv`PlgOV7#!e3;HpUfE9+7BBl`^Z5rN z-{{^2B683!K*$ck>bhl&w}6;RLjM3v?r*610eOH<6g@cKd?RJ-B}e!rRtYruQo0EwoDjFtDH{<3 zL`@)|Y=>spK0s6i`%0O2i8C8tnlrSl*Ao9mDwWVi6fVbhk~7NIm~*KW@|>hGBOPAg zbj5a#+xILMmCNmVweS=-yk<337}kZo)#QyxaBpdhp#h-Q3XsWCm_<+Fb^d!Q!7n)U znFNhL=OtIyQ`H?`OrywW40o3dBVT)yIy~^*R9CD}e5WZ3*%Wk3A$k*xnwVtYju>pC z41IU^vA)#vSHlExPBWgR*uES6!}Wi3Y&y`g8ArGWWtvdI5*h zP!7By$_mM<1U4o84q9I-dOTP+XVQKK_eMZIMG{@~HQk z1ya64W+eL#*IY(J^fK4yvOR0OSs;U@G+nOcY)8(_nZ5S5Lc5c}XT#DV5kQ7MX0r-y-KzZ6fGxhLct-?V15GJZV!WG57e`{S}ZqVofn z8N-H_2n@E;8&$j(=W>mjaW6qKWn~0T`QM-(DpZY7Ksvj64WDM*;3%|kMeahShPh6z z9j+q_wlFsOZf!Pg<+$mYO_H3mH)bw*8>BX zMGsOf5cZFzZv(Cr**`ATB0sEaBC8wshi+KFtc-r0=J5)^efw`9a}RCMsQ(S*OFuh~ zCt&P!O3VW9R<1!A#H2#n&r$SY-?vp4Ol6rtq5&rOOh#AgR=8m8rah)MvQARk;aaXs zm*#!oc#7H0o&%T}V$dPUzYdH2&F_r;|4$bYKV)X7I}{jCyq)mlOzUd&EO;<02O(E+ z-Ywgk%0l+|L1?Bg@%~(F2ZDX1W1#Zk<_O$To zp?+OLr1;j5WoI+qzu(`e#%D;CI&%wM0wJv1RL$>gqOGTUSEy|%8UGn+lk(WP!c?=s z_FvwxZW(`ClDTRFSOzMjnR${#o2k)eDM?i52C-G{y>X$sw#J)LZU+8q4!^2AxawqJ zaq>lLh%PY-1X-4UZfzP4*gmv7ZEZ8?gtz#wG?(z+qRu4%93h6~(_(4?=5l8UgD0Ej zAPVA(3`Q}lL9Ac~i#rhr!ipejLXfzk@W_sXH4POPJ%9evivwzq|)!d-2ljYYH=8z8D#9GZrk5v~ES@ z1U5V7p-*e~7`T$_a)BXi96KXR2!^ITt&5dwi9WGg128Keyiz?Z5on?LJ+-oUB!#6Jg4L3aa_3BdzjL;Ao2H($LcoVi%q543Ev zaZ9%T8W;cbhDgAV7TyV#)%9!6I8knQZnqc4#moGH)rn{{4?Ot#(b`m=|Ed~)BrB*C zL8V~=@A`n9t3zp*O!O(>V;h{->Cp79w{iANr-xLPV((g~#1<_(D>0?M>mXiNceAjM zC4{Gi=+6?ck72O2!^l-q#{?;f#k8ZacSl`l_@;m7wYeX0!Q{S2DQd(pShdJ`MdKv! z=jhMpQ&;=u?})k@J*=FrD5Y}a=39Fs7pK0^G2-Bh(fl-`PJtHn8Z} z^_HN?Nv-Ug@Ksc!0P2qNK;0447=@2qO<70NKKG$E2QqOl2wVmy4#VbIrx{;iX4OcI zQQFussh(^`lit%*D&3oibVA3U%)4Nwea!zo^{h>>8*aAd4%Zc&A0YcOAed80V?EIG zS2ra_x*veJBLKu@dak)<53vD}Z$FeN+2_vjSW_?wcyRE?pLm_$rD>!>jaZ?Owf~+( zf}{LtiCv7%_;kupxC%ggG&qP`h_C(3`;jTpNYAT%2aohE+CEY&AU4B|82#m_<1~w& zQH(wc_FV(Iru*<6X#&Rt`n3cW8l99H?G#wpP+4I($z&fXTWW&^p>VkYZROxrAE__5 z${k&OZhl(&;!fmU@u!KMs%e?hUB-@7S<+n~TS(>wU$aN!2Z0D#mqgs*V82bGC-+e? z8SKGdY!%)icCa(0T~Yer=>AGtF-jRWSS=uk1XN^zPLSg`)aBYVRacz&f0`= zpEX{1reqAS04NqevVgqE#<2sqp%?=97&c4keLwK8= zpP=n%dxJAxnp0p|Ye5_Rj^fy~hFdH86QvWBVF*yRPf8+;~b} zCr(JV7aR!NR_Ar%hJc&?t!J*O9ZPr}Ti)gaA@G*2CsKXMo zzxR@-;+7bR?#$Nr7BVf*>c`o$!DYq3Wfq*vhI6$h@YudG=Qt=Lq(uHA^hyrteENqLm55r-`z~Zxujo z(FCY13XLrKA=p7(a?{sp{z{C~CX81Fwir#S5U;HeAFB|r`2lw;o~EF)Eo0Ff3;a4Y zji0TK)6J&yz}Sr97JTyu6Q0?9cHFG7jAdPKO;67eDD-NQ5sgDe|CqZbtSS~Nk1-8=F}1iWD@N7dF9Jn&Ax1@VfF#KBW?r z?+W&m#)ImpV#E8J>c<_B50dja0|$%#Ek>6=3%_>M0Q}+AV?5PVQ!)zxKr~oFDq8Ne zfsVbfU0ub8tF3X_szqI0D(4i(+hz1Qmj`V(1>aytPi#rs_8N{e{t1oC~*=fdnXS zLAR^&WB!nLX-|zfXT%oE7DKHZl(<(P1H9A}7B=Ne9ZOHFab`iR_sPKX9XXUZzx$Qp zVnFjyh3{jc!>2Wgw5AD3?6~EQr*`-qTc+>TYBBYGFT@;Oc%g$67Jq4pbGo5QK0wej zsDW4I-`^t+dwdB^nzdvshQV_6B##U`>dq-&VlCV)>nMcL{F1KDAX(MAn5}U+*CPgt zb(V^~d&O-%N{ zc&!2rjW-$@I_ASErBa_zEz8b?XN`BVerQ>M7Sl(JO=sNKVWu`wLnxTYdg!rFsNRb? z{~W3XGKPTuW=VgIumND87GS&E%N~tu8N)Ao^i#Ek`y3a(apYt^33dHl(RAGO&zmKt9 z!JTf2Y4H0c+P2$%oZ6V+`yvBOe~&1>_!{k^)BG^@7B&lf4jX&|3w%7G2{~FEQeYbS zXw(q20@$8>@)PxAs9*lRRh*Yg*X+^kTeSQ-Ah$_=wk2?qQO#4dQT<)b^*5pdgdb{J z46C2ndt;XS{-_oiL|+Pl-n-J4qDigrZznHaVJ1pRCz5u6e6)`|6eye}v6E{Qok~xS ztS<)m1{>cqgeg+>*1AVnAXUD6lP z+C{|966yl4lLfI~_miJ>tbza$zE3rZuj($S_uowO{FU4h*gJI0dNja%mw9-rhjV_BgQH^mc-C$b?UrCddwZzv=W@-wh)-$o_iWy(h4XmNQzN-g@ z4>&8-XWPs7F`GbvU6!<^U*`z|9Q$@eP3O_1|Nb&mL@ko_IT;~Pj1IRBSha0!KOTpk zI&5XC^4GLR22{+)t4UOjClrF*qGpRNAxr0BayZ(OlmUy&)Sv#()a~Lr+PWu6Y!rQI zkN?0Wy+b8E1V$Y#V(>V&1maVV;da3Hy_`zDND~EinCX0fn`_ z!OGS%=f6FmFeXGFSp<`t!B^6OXNOOQZe(_->ueeJaf#u@R?sgmF!J${_FM* z{bPj3yrWLhY;e^+<^~wf2iS|QG%qQ1U=Ie!_4;qyhYer<2U!F5Q3#L9Ai-`}qpgSy z_&wy^Pfova?v+K4&WQN!xK_^fsW2qL?1nht7C}8Effzi-G zGkHpty3EUY19nvuuS!~o%AGpyuH>XJYCD~X;Ljet9iQB)q+mNMm-x& z^owAK8OPi>HFS?Fd8(f_edJi%T~x>byw=VEYFGB zoEo6=nlQvsPa{RTNhGJm&tZOP>JDzUdv>Jb-&Dg{4pm8b6^PC-m%u>=G=_|?U~OQn zWzpcq>`Rk5CNx{^iFlqz3lNG#L5+Rwq`M)S4y;5eSA@3Q3b2AH{F1B7f+UjTuJf`d zhsTBW9zTmqH_OP1e0UF#%ZH|&Bo!uVhh+`|*nOV26YB=5Y1zHvw|meUK;@cFJZ(>0 zg-Tps|ADZoTaCbRM-+PnVQWY?xwgYiFlxwSVd@%_R6rtk<$`Ip;y9gw&>1jf!FXfb zQ>>T_5G=UO)Gwq*G4#CsA7w$2lrv|e4P_wf(hOb)XMEfA{jZu(Qz@Jc;D~(-J{F}D z(D}tzz~xj!dO=hXH&&dbsHE9_$Fh@JvSjCUNKu(2zs2Bt9*3mNdoELHaUTTgThHd6 zB@Q;>{(;op3F+c2NXA|kQ&H#HNA)&KPn~9_21bTWo3hfV51f(JuU@!y6ZwI$n*pf= ze2f*y0m^7ak>LB~Hf5p06pzUVhxSF{T0*#-duUafC9&zYq2L8a*7;)&J+jB42N_cn zayoDICpw!R4lRyX`oCiVb*iewrZWz5;PYPv|G_ywS~akVq+LDGp%$Yz8fr8B{%Ne2 zjVVq^R^hGo%H%SgAH&kBx%eZiP+T-BF?o(H)I=;eKk6~ESKmOr{Cx)%l?Ge)_VdET z4{rt2cN+DWe8K0;eT^OSnYf3wzta3@EpC_B-)Q+7v*aVJHy%5~lo|$9iBAs0dTYcP zk~u-P#Zf{C_`+3Zq?>qC8q1MjtKtW&zCj-T6&H^)zVySQ--FSNacpdF-AtKe8e39j-NskU#)tV{@K)^{RAm(?l zg=~TxHQ6V*b*QFhN~@R<#HlO&6i5Yni|XEcxs$+C-2uU47N~-sdzm?8j5DeCJqebA zj-q4%JSoXAQ6;JqJJWEY@y*dkTYT9?L_5K#fgE{27DzP7z@i!9q&-oeUN~^((%Gf` zPM#hppQ-_Y@vhs_+T7L*zZy(6DM*_KKq-RkPN|IK4$MVWEuf-&;zaG6KIw%p72GihpFoAK8sg zzxrGtkx021+_M|32lfKf0b+UriSvQ2q$dxs9s(_DG4Zo{gr*20CkrFPNAadP#FR@9 z6Zawy6MKd*r~m!apMTryJdSrf?_!**eLpyai8`%M{a%h9>;WRL|8}?kiwD-uL`XZJ zAY;4o%=XflW8($K_G3+%<$l4WMj6EyHM+OfP8qr>f;DNJ8!wV+#P%&Gvwpa((62nw z`o^{KMS#BAz4rLO58+B5LK;G7#eWvqo?E;#lr5DRdz73Ln`Ie0CzZ%C2(Amx43P$3 zL-*kO)C3YO_!=dIL^Ay}D$yK+u^aOk{SX7|lrPs5IUKDBeN`U&VtgEv;zAD8h!mQ> zkpvoaAK^+iHTqn##%AvnA+xRO^b?a}PE}s|5a3df8Nu-sAeDj2Vi1Cz(IH283271J z=B4K?!Kq5dDQd()6g^zCi%xWQUC>d^*7gh+DwKV#9Exgkyc0rz?C-yVUpkq@`IuRE z+eA6rSi`UFxw6i-jC?~k{@yJ$VjM(x6t^|qp9%fw%zcf)DGkBN%}B|O!SIG|dQS_> zGlEAk+AkuK@X*0qqo>eCEX-?PcLZeTu-uw4m5$2Y0!BcHQ1+j*xV(}G%6o7Y$e&9K z?F_0>11z{M1R$S(6!EEYYbFZP9_ypy^?bhM*E?R2m6u+BF-LI6^s(=^-Eg`Up=_mD zwUu*w8e7k0^>Z|jZC}e#>?r=UD!IcIB}}sPiMRLrmVd8g?@#IOZ|6Vd{@oOm+6lZp zx(YlsejRu>a{t);{?zsU#Pa@V?f&n?r@K44)6I?bPQAabfmfFI*Ykl=d6pM0y$`}5 zWOGE^R^~h-9_Kbg5BVlXT-GO!Q*2z$4bGlLIllkfG|P!410dLJg_H>^}dp3y6$6Ug(KM?j48${3z`>39q?sh-!hx{17dPJw#w^;CX zikO|eizzM3SILrA{36y&)<^yv=iT8J0P7%I#6AaU*B5DD@GkKb9? z=hH}0+bCI#iJ4AL)Nx0)!{k}094Lm!i9F-?c~8A;HP_j>Kozfy!8 z3rA4&P6iOZX8?z=oWC`lUmxJhC-8uXW{RoY;`kIi1MQP|{!%Mz4XnvsS1&e${LU;) zR}d}5?WFxIw@R<%)$T9^Ca8t?(81$vI{%5%pF~h`xEZ>9?w#KJy6B~daw=iG%a3#_)FL3t zA`ZkaD&26Uzngn$8X_m@@>7=^%EDt+%)LHsi$!E&Y%OP~(@PP5XmQ3GRj8Q?t5?Od zkz1NgVvz|tyX{(DUvk~fk-c$9NMa#=mHT?!9-N`;-X(Bu=*#Qf-MxII2?m==pBa_bnhN2+}HIHW_yVnTjOd<<#Hb*l^&h4;cx4{CQ~hg z?uvIEg3)HX%)SNBzmu$Lw-VW4^RJ(Q&5t!b{b7(gr7H1OCI7RSydxAuugjTUn}m#=o7yvycJ_zylryz5A*R#a)rJ!SqL z2y=pFLHvDM;2_FVkG{ti&+B6|y!%ejRsBjML#*Vs1lQStftb_0E>rTex6)IV0N?7a)v65Lw&xhh zDaK68;WMwQ%`$zBT>3VkmiGi|c{b6(a|evJ2h^5?>8CG1ZKqG$KR#ek^lh=0o!mdK z)zp2E1$MD^e`4*Vv!M?){EBlBRVZssfDJ!I+#0ws&d51Bjx--AER1R~~& zB!JAs3fbq3O{H%Iq>0ACfAghCuRz#w2ob*~rkWD`Z1L_kgOys>0YrIZRTFthWBEQq z2V}{T2dPqc5{uqrTdc=54dB43+UUTcW|H6UL>4+`OkeR3y!@qDb>>yqJ6pqVR&w;Ls(_bZKE3%9{hCQ|yi zyJ8~liXX9UWBw_hA*|k$hu=43LDESrcj5C~Db2z|d5Ed4y$KM&*o^@e7LZj2Sfy@0 za@v%}J*_$6P8>R_3+8Sj;k45hH4^7K)+f^?&9+bl%vKGC??r_1zZJms)KPLe z%9W29<4LA-pEATlrm1TQ7qE6OVeiXDAcTlOm-TgdcG_yp?8|NUURf|Y{ot6uZ&Z7q z7B*&l9Z3=TxnV&`@}E^0f|x6VIt6*dgk21RivkVa81cVp4-Wz*9wM92zHNi^H$E!r zPS!HNB6!}sEJJ=5dIJuXb{fOmUNqW`SN`|@h(yy$Y7?Jqh155m`XkXu?i7^xbvP$S zY5Wk66Vg^487x+xemm>&Gcd|=>PRrkZKW$8|B2c^S6zlwZxpLHKclXC;KZpB&KoQlTQAC_d@qau(1pIGk8J}MMsV@*6X{#DNXd{yYCv;pBm zMDph1Hht?g12!to_FR@*l-xS?hx6;Q5p+Tq%0T3?s_KoDOh#i9N=5B$$r)j_-R(F{mQM7p}Gj{5mGiBpz>LlzqDYakEx3 z7Ych6Vr(HAYvNsn$6%Tuemu4r;aZc|Wg__8?{p4!uW%o%^~zm1b>!PFR7ZJIEN-IH z=#M6N$!&Z9De*8?RFSj6ec01!QIA%6Mu)8VKXWg5{6GEm`>2@Ieyh`jhJw{N#v`35 zx4iP=iCe2xmRgT!ZN}-3XLsc(C`ruSDhc0nDnBi{-^mCaD;H~ZB!yvDyyiZ!z3)pP92VZYg4th%_;LKxr5kfkOM+Vo&9dowT} z{52dUNsEU%`)g0P3J-Psb2sImd)6ir3<>bDW!dLXw3WTvFRrcH@}a*}M1|N`y&BqX z?A-5?1{da%=-@~J5b-CtD+UwhmslypsvePGlB|K)g zhQuZ}e2n*c3UMu@|z4m^C?*6Ja@M2(Q%_2AOwm0x5Zzgb+pauLbFt6tRGVRk{?fv%A{cdgG zRcT-@J{`gKGDx{gKaH0D&GJ2jYzorc&dcV-ZSUv(-Lic6! z&59a1KNgoh+P8Z_7|k6D!)GJBE)>GNo1zT+V~^3}fPs11CL0VBUZ(d$u9j;(A6mDz zZO=jqN!gvCpf}3+8;^vX%*TvjvB`yoOH9aLx^VSE3rPj}M-=J>1@q4J(-0T+>(jBt z{68BSJ?EZ2G`zJlm4BajvA=-BIvDGOjO{qfj6#oL`!E7oUI&S$JV;ZI-K<^2W2h(~ z8x8Fy3mKhM;j-k1mvk3?%f^+iQ1K{5`44|ZrT&{&B?aKNY`9Wr^p?F+zbytS_;T9X z!pnMo$W40E0QTf-xMmw?SIAc?>;rsYxTONVd`S#7mm#8N7h~v-{>u%NhXT?VGiQLM{Wc189 zlL=@$eIY$jXy&;_&jS19iBgIBPJLvuC)6U8FQm)7^QN?qWwOgbi=?YlhysZvZ2=9A zJFk*m!Mqz1QiTs1{cJF`ezj06PQKm0N~_Op+mE!xj5BCU%CZoCC6zG^D(%AGqbjf@ z1(8;H&YAz-PDWu3)>zA@v9W$N$E$dE`2OiN3l8$Pkl3J$b#=MdjcsTS7Uk0AxrXgW z^v}Q&AV=F}1!*B7f=;!4tduEHjWTlQ>E(uRgzm~i|6`Y^6-MA77tM4g*8EP-t-ri^ zlI}|_8x@nLC@0`Pi588t+b1`b()da$FE?`F>Y7r^CU)0f5d%zqM1j=ON;0lO;jif) z8w?1TdnlND7}!_{W!WNu>}H*$Y6HiHSyhc@)gfyYc``LZK>@kfV~hN`|6zusZ4|4M z80{d3qrIteFUK62T!%~1(#CDSkgIkF9SndDwjMf283i4*rgyelrm2B0+&~v*V0q25 zb>#7QBa#!itG?3rsNyjqp0_dQ472Pghu6dpA)U@nLuX&Q*P)uY1tImNyQ2g0809VB zaNnqO5JIOZF|5{OSV;(nI2vuwWtVuHO-}wf+JG9trWuzuCY867MOjKk9q&Rb9l^xR zoi11KJ9ovc0%}dOGo`GKM8{%-tkYi4=KX-Sw;bblQSXTIe6bpTFs>H18Bpn>lb=|Z z2AjDK`A0=EXZP$JQZ3NmF^Y!&PoT~!6lVYaVRVvTmNwG{+% z>*8TXas!+dJHvxNZl%>v>++`l5Y0W^^;PPZg8e_f@8$MgYINM2HmJhXOI-%bbHAxU zWYsPKcnbazj&@{Ac+rNOX@rZT82ZvQ7RF9vjmmta2z8XtbvwCLvg5;=0*iU@~j|xl;dRyN1!GvNgg^pq@(1Kud ziIfECD4MT)O;0hkLpgC0=nh-463FNJ`4(ATUo)nZD4Z7t+xcRDQoi#I))`y7u`V-q zGZ(n4V{-!RJdN>Nq!46vN||VNDhN2o;fs-d6n;PwRj?4f?{%lEqjFnssG3PnRg}2r2pf2G71YGSvRpptKT#;4Qi_EtB z6s;EKnG}ZTIhI4?Bcu$WQC!vYwB>huBLfbd@3smMnT`*_l6yIf&y-%UgHR6nHH9Bd zqxt98hGl>jnf?bnH1ln)y^`V~QW+IWm^kZR37>$rm`Ztj6p_A|iZbUC|~$VjJZydJB18!1zLyFRijM|tNoY`FC!lr*G`4e!JkN$x;|ikj4}?;ZY#XSAsQ zK?AM&pmR*I2%Ae=o`<~Ux5wDcw^7pM@N{@04ClXcwNJgLFnLKvDBGLIDiGPINvr9o zv68$XpMDZgWaKf6`oFbbxKN@__Z!?B(E6m@F;M*vh-FZqbRDx^atFWbT~TDbW?!N} z*{(8a3;qike)NssoVP}UU5p$5zM${ND^8IT1k45-3k&UfER7Wc^9ecrJ&no-Gn#B0 zNH0LI;?u~kjT|9b{t7WyLRsBs92cJKa%rN$`w)6DLImc>$OWPSB5Y{YgoEtcfa00y zpL>*A!|a*VLU#vB0d<0ppPXWvR*$4mOeuuKi^NbG{mEp)LWSV$)u-OqGg(7vrj)I1 z>~Sw|9R__hxb7z2=^*=lwB?OtWvWT+e^w^~rYKM%SedBvjm=kEC-vf~hk=h~<9B zq`E;;rA5gtH>BMJr_vuGAj4^wZ}>0Y=$Z8U3eRBBHW`kB;c)ScL#EGTSsBrs;bP!9 zAi#6ztt%Lui$KsaY9sMY+xkO=M z!H2SKtOdsL@`4$3(nnv;o&OvKWO2%PZ7Noo+Wm}RzO>t{ZT?y3lkXY)Lg#dS^oMt6=a2a zlWn{|)X{RlbZtg24&U&Q(sj6p0?RIu*F3t)4R8vHX0U}>v3wKlGS2ubpTLFq`i>;p zp7S~GJM3K$$_asOy93)smekRPyK>SFY;>}?e-cq@3#P$-e{}mTRf-tg1TqXR+hTsZ zWgppd@a>K)JkGQ&Sbpkdq1@4BZuFEKSP*t2tnF*XO{Ot3G;A0#+G3Z40V-&*J{!ZWy_MIOb8d$O zA3bMZ>eQn;ZpYJ>XXlku=#J~be1=exefX_x|7MNrDVHyn5UoltKczWAsf97U#1cq- zB^^`e6C4yG8B@dP5|@d!P0GVbiVVgv}HxCYkG zy5Ke`dHi*$I-W^zYIztt#g36p8oq^}+1=e4?w$P%nQAaE1w@CvZtd=JS5>iR5}K9U>6#&3j(3+uO7(;YWke zv-x%A&c-4j&$lAenf-ZXZk`cFhj5#3&WNA zCkZXA2O#>0Ni=MnUExvQb}_Q~4dDxThx0t_NJx@f(!)15fk#Zn2Fe8dp3wn+!x4%i z@Ow5;E{Xevr!`;!$P73QVHsSxW%-EbHSwBl@}l*KNmBP@ynMtnX=pwU1hQ9$U~m7S zp>Am`A$?d|os&3nIs=_*og4{!N%VqU(iyiUtB?jF<#%us6lX5744d>AH_ZdJR*98~ zoKE#e zVzI~y>uXFJpO0EzMufnodM`Okb~~SHrx#Cg1mU##DXq$fKpwCs`Lt~?v5-PH^38sr zA)|kzOjgr3#F$H)+2HrzZNX>c#{xlFFS&Q<(_!4W9tg~wONBI~Qn&j9L4jcE^#(P& zc4o}flDGnAOT3^zgG0QG$ zoH}(RR_W$q2OMM8e&I)$@Ti+0AGorZ-rPzH>9Hab^tQ ztf|^LqDS>*;8pSY*@%RprcNUE)p!wTTEOx7K5)w$`LA@Of0^}4g&sehO=;f^@TaXA zD9UnfFW5Ii_?!1-pe@Z;H;)iX9f0BcgW*%kf7?#hxJgq_V>NYb5HxzF-syhF!fMf$ zn&?Tg

    *u+Qol;Yku^9ek`Owu}7m{zfgsqwiVa^ZV|PrE9W|2vZ)0Zt<|jTcA!T zTd)EOlhFsiAaA$Fa$oe%<&c83YppD+3S@FX*4aei)g~~O&ADY!t{XxjQcDVh#bnNR z%0crV6?Q+JN>tQYse?1=nlMy(QJg$8)O zH&kxbbe-37`g?s55nY24{7`lfK9n8!VT)Ban_>GK8yW$5uc|Yh34dlmJDrHhoJ4h4Uunwbum#di^75tOz53-+V{ z$IkV28YA52I+m{^|5|yK5EJCm6D{-SzTz_a^j+cRI^Yi88bLNR$?5856stem0jBi+ zW`pmM%k7(?2sXbtWiV`Jqw<816eu}ogbR#ENZVWU|~EhO{_mNa(l?2!==r&UMCPM|EBS$5Yq zB)=<-cMC z&=ezLgWY=bsikJ=_OHn?iiszCC*-?w2om!?N>s_IhusrNa!38D0HipmzTJi|S6YPI zq?^#Y8PGyfkdahF=yT*KgbNlOf`hz~kpwjwD~!i@RFnu+J8Z@MeKl{eq+|1(%~Pnp zy?{TROyo^Vh(fTeI!ZBm83AFATDxO&6oR9QpoCkaCSYKOg2^4l#&Jew;A@G$j^mdU zB9RSFhJl$q+<_TFM{r*`l@@{T^xj*bvaW%s$Bi`Re73n-pdQ_Q$Zp1VAF`WlP*adf zje^Z0@o%%xj?-a8hdBJpjzy}~#7w4LjAl4lNW!J9S+IRRRiqbfjP9pPR0pWzBwru3 z>6T?;{Swr#8r>anTe`n#KDe*GOCKhM!{Fnmodb#>eE)Mb(KNj09-oVWwX)ko_MPO_ zk}5I8Q!tUjZF)-n5|fBFB~u%XwDcz$d?A7C;RvCH4MSo|)$?O9qoIZEUai~~zS(p$ zgT6kICg({s`^4W&hrWicok`Uc|jkSp8Cb!s}Wa>ft{rY zPY2cylg2aM$awpr@^-A^UolkJC55xVZo)p*b?v9S+W}xpsMa!hHz9jFqbONK ziKa?oS2+1QDJN9M|Z`V%;9xZg+O>j zfvlvd$G@sK;N0nR?Zfo!@N9F;`momvFMjtJz4?p|iH&kbqd0XRXhzm^91{ySIptxf zmve2!OG3uR`9eZQ==g2u@t2AtPCt)hZ}qhWN3kzj%wt0Z*;8)Nk@mMU_64$3W-pEA zYH3nEvu|`8DC(=y(Mc6y+UkPa8OqCB2ai+W zJRq4^I6lk6WTB~^zkX*$?_YU)Z_y#-)@f><1jl+tWoRR8fYCzgd+P)6#OHv~GXCVX zq%-OQ!DMl?6n9sP!YW%_IzWS}tf3(cFl5?H%a~hcJ#BkTM3=6NP z%(%XDA{GLyyz>sYZkgY3IPa6`z9mSp?--~3ro{H0t8NCB!;3qr-&GHl1J&sDm$~Vm zoJpV4>jVQOxDX&lIng4aC65wB58m?cm{bbg#&-bNr1>0;&fQQtRij zyc^}WH~KI?it9dnL;5|oluCuXY?MAn@hjKJwJ>Q^Y479OXgsn5y)>K&l-=>9*kIwD zJyCgpzLs8#eAfdxJq|qOG*Z?2Gk*~-Syf-Inwpq_U$GJsF|xHF!{FL%u9{;e3Od?X z^-5$;27X#~2@Axt$sBEYkQeK%<<<7?d)^%!r{&Px6N+de5g z#UqDK4*+l2T+`mFF%otQ^XlSF399ZGp7FFLL>VuDj(E_!Z zkGG!AAPmQVLr5|7@6ue$kkX*by1CsKv*k?aP@j^RI&COn9M1@;@vPK~__E@-mJyJA zH|0MUN|zV;w|I|p9~S?_ynnwhs4%$ab>wxxZP$}KnTygs{_ilcU;_g0`-Vw`APn&& z=TjbS6m-~uxadY2+f=DZxF{=vaPE9I@r?#?1nwT+@zb7k=&#tb*=Z$1m2{b#H|ePz z0kx@n0DC#9s1$#~Q0rU#>!kOnYwzaxMeTJVIMj5Oa-5P}GBj5?J{;5|aI>ktX8mU* zql_7XlItZWu%&;4jnyA-c*l|pD!>W@s?!QtyifV9YZf!hMYX%S@6PF>S$$_kV7!@< zhLX{&KC_jWG>}gh6-NVkU3+oBQhhoM{g{g#8iIeoH3CaP7rKmb>Q=V*36N$@_UF)x z4aWi9lK7^TPlm(ZcW;UcFU6po z<8oH&Il|j_n0`t1_FhkjbW9YhA*QzNTdrL?Sb|+Bv$&n>wEw%sEVzL?|NAetO8kri z1nyz$(*lSu1P?2~?X*U`~RK5#_MZY$k$_1>LMA7M~u?UThq_-@9m&#bb&VX?q_Mv*4g+R)oo=>p;S8vhTnbg4djVIko$Gt$=HR5; zsw#75s#!wdNrpz z)Wtt{_?-U`b)TnOOw?_rvKn3@)UOMkW<0n3CKou4r&FO$HH8K_2~42$4iB>)MR-X= z1?*uTdP55O-aK(@&(4eMJ(Ij8g8(RmeMdiSL^%V5Ti8qQ*-{#dhj3d$aa@rm_p2~> zn}$($(r|ou5Mt1idNVEgQi7x2YB8t%4CN7Q5St7#xv6#3=lUaEe+*yt#B^*%iEK3i zbwbu}%8EQws}s3jI8$cjxM`|lAGiVY_9Sh@6A*WA>w5EL@Wj7@xJ$RgYB~Lch}|fP zRDGns`nS&1&veerqOS|k_cI~!@wOx;TXH5y`l154f_(_3vE}OWIZkfjPHXx*A8pJI zp;Z8rljj^u$CbYm_kbpW>eK9izg!E26;z)d&@Azzd@8`{Few-T@O`-R$nUELOi*F4 zF$JZ5rQ7bKs)Rh!<|qfE?wPc>N2lC-R>F7*Yg=6{OZzf?_8Q8~+08k5jSY2(_O>1-A^ryAzN2}~nWgFgJS!h!1r#dnwmqs=@>4 zn#nKsuRq?}vI;BPIGHp?~IvLmU^=)TvDRG76u?cS-Q~qh54L`KDJxm$h{7oa1 zRivRm)$a;WDWkUcFVNqA6ke2RGNxn}XPpxQoaVW@P9mytC$&0m=B(r8Xm{U3#HD)p z4O3`G64D_jb?bMo5CvJ{=2L=MYKq01&nkI%z`DzfO`{KV$pvhobB0Ds$GN|MY? zZ*G#_tgb0E0Y$An;*EKT9o3FS%ThMexYWwN_yq=4g`JQR5O{#NBx9(iW6>ZWU5Xje z`4idSV*E@YgEpTMUG&?Lxgw2MQzJf;Q&ZNbV?k5m&W|6B5^?F4Pd1TI`$t&!16_D) zU%it2RMX<{JjdlsT|O#Zg*`IKc9qWgP@y8#1bBb^k!$H^#vrT0YN&F(&_keO>21+) zqM&hU^YEi9!8hBg~F*cbklMXm!})ozXJ$+i(N(~f+h2V?DRQj zy=_Sc&e~T_rjpC8dq!qAWAL%4<`l9Mp9I2rQvmcuEQPy&IzV@Ky_)=H_9YY4<0?X* z8dNXBiQlo9DTMBe8KsP(%*7VkOTY#KIkS)=r zO+~Wim{RlfnzT;86np?}b)Q(q1A6h#(q7e0pd9|QwEN3%floHU!n-G=bOUU8b3ZM; z+&4-uIQ^2AsrDpsA*VF`t6(|IQuw$cs37E+|9BV&LW=ozLLfl$Hp1HE;3EAG^1uyY z@hU#r!}rieSb^FR;zcpHjnoTjM{R^{HrGg5W<+vuPn{J=wnUbr@5G9}QYXQ$8|QN5 z-_tANIax475Ee#=@WHrospdq!Wrc5_nVcVgP1a2J;d!7v>K~2nIRSA~3NSlwLSPaq7_?!@KKHk~p&qYy$9;~ypTC6;m>^x*g@p|h+FwNb zAFq;V2M5K0YwZSoH;wWpz)KxpNx4=B@;u%vL)ZZP4qFl={)N_&HvY7)K;oZ;-9F;8 zLak?%p?VKG;odN6pVCRVFVPldU@eayQ{!aTs|gy{i=mv`Ybd7>29=#&viFhMvA9g_ zOv`H8^L(FDz(bLqRgTy`=iD*;=ZFH%ef||*oI5*PCl7(a z=7zPS^P0KyioUnJI{gUCYVYh21?e#<=obzn^IYO^xVLtJSK+7>%|z+)dP3=hjnN(c zLW10<_NQaa@TGJY$5=1sgWr`CC;?!BljK|_0!;-@LX&kx+IiDLQ91ao-tW?Pt7?d; z4DGUFNvsOn8}YTY8-Gf3Hy`b0%ry#%;l^E>ZSN#u%Q6T!KZ9;;tS^mlE&+r(th? zl*U=`jV~oONn=lhEej;1e<*H(Pgxz0xumLawQFi28nss%?fVVUPlW24tJOjmtM+mC zE{hS)tBQj#vwxn1pc#Cfl4uqfj>6xPp={2N>@!-U4?lDnL`%Ur%F8*O3VW)lF$EG& z3KeA~OL_U2S{eeOx=y)djju@26X405k(Jmxq^qoEQDUt7<-! z8qj8oYsnF!iz+(JbMdea(IM<+~VKv}S3eA?IA$p&q z;qFgULvu=5_1a`jU5$|eMxCEN^xES)2!yM7U-|RB2lR^1#M0}5=h9ltzsvwsg2Xtf z?{f@Jk0{#3ZdLA0u%kj!({jdGl9EU9?M*8)DYO=?zBU=i*qrNGO8y7(42N>Gg()?NPosI{q(SfmoaP57*cAz2dp8{I!%nog z{lB4G^~8N;4%Mj&{ov_c^dKRSUiJ{NsLre*A+Mb;|40=)8?YG@i=7D^MLEI&I0{a$ z^tm*o8Q>_&o!ESy4`+suI*Rd4<;;I> zuu1_Xc7e6CiELc$jMdV*yUk3AI~onCaP>QJUFZyOb9x8-U|mbVy6Q57UZrlM{0sU} z+ix<`c9~US9QAN-A90m%X*(SOdy`5lT>(22DGT4F&}isP=4(Z841eFjXXMJWb*omU z|MQZCrvuxBsAmm)RCKD+g$d4o@VkN!#R9b6OW$(o)zdRyJkvm>xrWycKn8iz9NJn*Wfn#b z-U;6QvT4Su7J4$-q#1aEu%2w1V{t@_gukk0Npj+$86a-w8z$hIxrY0Fvux=Vacw2W z>ap`|LuAuSno5Ef$ovo7@ZnnUnZX0xAZX*t)+qpBFyEfzFYzfRJ;w^=j#%?P-8V(i zgBgZ>8*mc1PhivK>HhUIC3dqtmt@s;>0#PcS0nHM&!GWsUFbcJGJPX@ZVd$wKZ^diZRd*M+Bi02M1K zc)SE6OAENp?O$YBi;=Nm27uB@Qp%|^csl`86rXAgbJ162>!;)}#F{FkQ~o_OGX&DU zMx|266e3RpttdPG1~ZFmIX(UDr}<|4)4dgX^8<#x2JkTDe+l~K+&s<4hXlQX;<)-D zK@aHG`6OT~$FO$o)s1_QmYyD*qN8?Krq+eU{``Vdw~Q|gSsvQ$&Aw9}Y;(ITE#GK=&`r65A+%-T{VW9rf zIYm8~ey{(hy92J{7*678w9ZT;gmzs(s`;{oPN%NdY`rfC{9lfNxW2jZsGB663ty*` z`EweqMqo%ua?8Mwm=EfzYf&EjZ<5@Gc;FnfGO$rB18d_M(6D?v?A#u#~ zv?{O;dT7fRW_E;fP%JaVoMByt$En?4+Noxfy`?M^;3W?bt;xdQyj{M_^pgM75z zmL2p@nH1GT4I(-08Bb(#7_u`7Fh-MK#Mn(Z>~JUCaAa)k9nAjW#$1`3SFLM#BgjUh z5-ByWVUvx#KX8HHGI+pw8b9KvgLTA1bKdAIR{MwZl#M2(X$u)gIV=?Sjzwdu_r~s6 z(+lhvbA1!e{}ixd<7GSg!AlyC8U3-7mk~--%8SQcND{yHF9u};KCoybdvU{M&Tjvj z5xpSWF$O_AoF*5H`~w&{*$&_KYCs4Yht`E&76y)vMNOtdgN~2}ip5zcDq!K(GO)-% zqy0%zY&0tpLqEssA7#Fvf>$|pHcTHKcWSJ`Kgo#B2|q9fJ4O$TK`g)r;}_PAEHS77 zwEXaUfFBALm#qpopVgykOswN*eChroQ;^$rl@f+)GKbBcrzr^yw!;eN)q*LPp4By1 z(baByUKb35>%vNh3{B^Y^A-~jo~uqaCrwkJW~r;GMVSLj`2@Oevi9C6^X0q0orLr! zVK&&^6(kZl+%Smab-4rmwfA1D; zMB`&Apt;~*2y8s47QV{Zf!s3s#`!v+Z?m;iKaJN@lk{IWnpen1Ck1LP>)y_fzxV;a zomWO7P@5)K`GRKT*(dgTk_Q-IAHV?fdX5*Y*iCPe!qmy?vaV{%AMj1xhWJms+&?3o z?n``wJu5Re)@NPF@bB9n0P*{WV(tuxEz)?rF6Ud2?m?vcfY!CuIj{2^hx63T`#BER z`VuH1%10l?D`6F<|3sD#a8-6r!a)@#CyWMoJ2|1FF@`H+8#~fFw~KUx|14zrG&(JQ zv#ajJ;%AWv3l$;Bo0=_N9`K7xOh;X z+JAzqFJInEE2 z;T0Kek9w>r3q9Qu5qXx8)J0o66TR>kWnN*fTaK>dtq|^6y{R)sFFxIk=yw|s>TuzS zr@bVUz+F-HsM=z30n+|?1VSUGX?=v|LO4d*^6*{2pJkE;LMLets|u;Y|;R__y40tpcXSV$(YkmZP!?0G+Q(kH{9 z@_5fs^_2oyRfi!*TI#AVMBY%DogM;-VPl5}gZM)RQ7}xE&as#uS@&7;ZK{!$rGdQ1 zTa}xl!JDX&qJjx42|+Gs6uq)Nj<0M_6%taJTF;4$q# zpl@%08gp z{wX;V_Eqn{mHvYJ(tIrnhD)_@P&ZskTszt;Q#-%C{&S9GqZ||PoXQ-ExAQ$N~m1E z>Hn3bmQS3bv79t+o}93u(Z8Yw}tPb}fKjf98E_+TWahjuY|uipK2G8VKm1I)a1u9_$gkLFllycv>C z?QIStyM4TVTV;ot1=@Kz_M<|$6jSmHrc~*`Mt=IP!JP^aQ zK*kXYgb)cDfoYVX0-I(6#u+WR*-H49$z|zfU#DfTn;Ny`7u}{E_=I+0g2&gbX_P1> zvZJzo9Z|m8W$4^nz2~n2glRp!vg~+=DKp-=ix)@!-N~i}6|pay8nS<8IpXj zy$*dFN&iP-uPyu#t2z<(1&L;5Zth47ZSe%zI_A>+G zuryIxWG?7y-JMA(OV=mwbo3!LNqU1JtfZk9 zO}q(fPRTI6GIJe<2Z1jUDOauU3E$B`ud|1S_pY`QS{JCa^(HI-NftWy27(NMap_G4 z&#|VfCGn6NQ?~U8=sz(or^5dK*t^z%CeEzgn`Kv8*=?(IwZe8=OY4ogEuvgZ(a(0N zl~^fKMU$=W>MCly0TLv$Ek(AX(v>O-Ld2pGD5Mq@k;|;2Qme?Fh$s9WeZ<#pkh=%Y~U`BK>j|4N8Z zEvrg9?3@AY{R{7AL{59n;~l8N{L7uUGwh#U4wnBlkGkotGd@52^`Bn|-@UnHlj8k3 zQH|?%&9~ooz^kI{z&;?e_Re-2$v)+j@Xz`0&3(_qp*lVA*7LLZFOEC>ne=m)XQ58= zAN!umL6>v*bC0)g>{a+W-}&u?vix@(SI<}d?Y$8{ zy!`U9^osO?ie;6@>ke6OKYPIXlcn&Me||vq=LO3~FK`svm;UBVWx#L0$^Gpjkany8 ztMhlNf)Of!tSd(Zo;?NJm0dvL>C#hq`KPECyf=QoGkN-_Z%(g%y`brvA9t+R9SBOh zym#9a_0@*|I|sl2)3I=BT8>I{_uVwvKR5^T|15eTYtG0`Q1mYv?oyQoe3Wd2gX?AT z^KB_rAB~)IVC2YkKNNhkG3EOQ|DLahNoJmJQH$> z|J9QpJ9>)v$;zK@;;pLtZq8fBZkRp&HSdo{h!&UF$FI2rPw50hf#jAuGDB_ZC&e2D zAaGOqw~IwjPsqpLoKg)gz3Pqex0iXpY410){CzEl6?9SpT-EfYXLC7E9WQG3ez!Opl1RT_ zaMg;r&2bgH2k!ezac$l ztX39qQ?W?)ap3erb6z+mj-0mJi!AvM^h1pMYHTBv=H$WC`MO6d@%aTHPJDL#XXh*2 zZ}x^B|1&RZdejexULW=6(67!N2u<5M{Q&gsY`-d5{pqLAU6nX-7CtpCG)!K);qxbF zL+Sk&jfNBt*Ravs|654${89F$OA!u_ed+KTNAloD7l*&L@MJ&^7mA5yroWr~@-cD6 z_sQ=;LtEhSBVo@+4u9rvKfHO$d1Pi;EwMWJFTsD_5Pny+;j^qSmD`m+9ylhh{tZ+t z-BHO5C7quXue!XOKhNXulPkXc@`o4F&zA1kbIkSx{>^;#-0kxEEC=N$9*K^2UfZ)I zt762l51twpzIyYg0Zuhzw#gKMn{#7t-~4c-`o|?Hkk2?H`^3P=Ln=uuG%)hBJepik z`77oj<&KOSWK--^nK~e0<`$rIR9k-n%{geEv5Rp?5=GDW9}$ z^!MqJ?(DxV-ou`ALvt8H8tX;C3}hV$H$(=XUMYIg+7KCB-_P=V(O}5matw}AzL|LB z(mUIxeE;>gk-qGhF=cLd_eYP_e*cHBKi$6X%1(!gn?66Yv^YQg`IzZdb$11gndOqU>7bV`db?8l?Px3{;F-z8{zlX|I?qXG22`v=#h%N#$CT}1uc`N;NLf4rFG{jAl3rNPZH zl}Fw7e>iIHs{NH`4@9NyL0IX%zdEO{%@Q}KzASzE$E5%J_paYtt=r}CzQC&P>U;0M z|JM~?=Y;abOGFDv?zshZ+Od;giu*t&3XS`2Rznv4U`r_z~vDoY@}ece7VCF;kGA5X6tw^%afu!u~D?LG5jsC}+Aye#TdhZ$zwkQS&!y=V{%fv+qv78)vuAul4ZywaxsMv16L%mfhGi zerv1yy}0w%`@PQH|Duf7;>r=*&CS8Kv{C}H!pYGwKQDR4%!s9W-z!e9@J6M-vdy*V zD8_1dB`%6Ai#zvP(NPxn2=c*ppw!yJrTlvRzwzQ-&XK_znoAXtMKf|2eiVg8@cwkz zcYoejFUtzb?PM=jzr>Q_p+$%o6_C@7Og35&0cEJeN z%^hE6M$|fqghU)?y*?RVzs_ZN-M96%4lajn_t)6lg>G`^+}QNeR@?morFwI2=u4CF z?KkSua@{||E8vTYmTuX!BtLjOTs(9E_g(h}InnfVRC?6DR?$-aW_^Q8=sOL?uZxz( z!uMRZ$9oEU#GJ!Ltaa5QFSSisbZxEG*#b%2h;y65%UDz5IqO_rs#87B(m2B<-#pB^ zucg*$ZV{~)Z;SFB*{|IrmHJapjUDd3gM-c<+p3wjot@tL-H3B9vf=CAzeViL!rnYA zx@6xXwhK<({EuC;rm(lZ6tOg6f6e&AR{8n)|0)`ziHP`p9o)mi4*7M?SEAfc*|F4G z%`5a%te9EsiJbhEG#`DON`tJfs-sb=F^*!J{WyY!WTDOsP->PP$dN-W?RwcD@ zJ2hkZJ>fP*mh1zHzs&2L+jRXmWwLWR$H)gwKW-RbFL_1q(@K7!g3DoVtjm0%?CD#I zdCzUsWWJDpL%U!~UJV?U(BCmjk#?|N`PEsmnw3XVIt}3(9pSJkU_!u~=Vg^n`y-Za zS$lm&z?%u1*OIND%PI>lk+Y__Pp5u7^m@e2M9-S>=P$sh+*h{2_L<&L#JX>vCx}gG z^y0GIo3HSRoH}fnVD$bG=d=z9g4qSlRtfN{)xHt43o8;&>SZN0_-*X7ZM^Sg5fuT` zv#_!D3qtnrzOVjn=b0C6QejEIrw{K&Owf1p4 z#nWfR?B#6OGI@%-GQQ^3!yjB~U_Z0)Kdi>He0|tQc-*ql`vpr1o4+WVb!yr7d*WJB%o71Kur*>RBIW-V9%QEu65Hewc6Uhmj?Uko*4x5h5r zve})ixz*x?J%_Gt+W$(_x%(Figw3#Dw=8ycpJj)~ZN5{hYYr|@zhMV|S`*u__?lY| z)zY}WrSO6}2JKZeuuy3%e`Vn3xKT)&nGT>6UE*NdBz zfXDB3Eapxx+(`YTaPj4hvX9|jX{Zro?UPR28TGGO>u*&%M<#M=W=8OXGfpPEyd)ET z#ufZYz2N}0>CIL3RN~9R&tygT;=K5O2p`lppXDZ9jDy{jwhWKex&-cjCE+vHyFtNQ z-HYZ%EIq}_cM05bS}||C*m>+WMU{5bn|2{vLv!=^?>A^}KNwjqvpGGY==-Rs;>5iP zpV{YUs$ZIQd)^lExz-2K8`(MDi-n5?E%tw{5@XY+HQAhN&S{B2B?{f`$wf=4A{M0+ zVrgtW@$cwYwzW8sVPm;D%c&3DYu7AJuv7fZnQBsM0&;y&mSL_pEuU?)359&uz8NB5>ul3aW#)6BwKh($1YWPpx zoyM7@nDDz6TJzTVi1O(d68Acg+i#{8-COZe-L3mPFPZNp`G9_s7>1)6gzJU?a{gfxtf|oR^xx7(j!oRzXv~e#^KxgY>=9St1&1GcSHTXP*Pv4brd5$c}(|5(r z^9l|r=Y3>z48Gt?Wl!IYTR3)`#^xCP1>d8;;Joco-)#K&M|we@hF!k4=BdN#3FjrR zP=$)-*t%y|@$+2AZY!|+N0czA<~?^UXgy2f^1k5T`Mk0Di+r2yT$yshk(f+-so>Ve z7xLC#75aYg8Gn0d&OhwJ6;m1u!927ST(Nh=1lvR7Y5QPxK}}8hPvcwF-1{;5kC)Zh z*Gu;AIjXsJZ2QnO*nVrZ=>=hzH*PELfND+rkqe|M~9n*%nz9ebof|s&AZk z_(@%Mb!F`SqOlH{YlV2uY+WE@cas6h&)(|FUq2j5k_Vy)}4)%TxKcnoqp#em_2MW^Dao-k8Hy zrPRo0>aOpr83pcZ^D}lK>)Zu34c19kw8 z=B(GAZx-2&`cR`fm&jE=U3cUDjJIp{HJ^<^+Z8%pW9xrz7wnrX9hY;x#p;Cut6Paj zifp5jmqp9wu5%liZ@p9M%66Oewh>^X*f z^nf!Zw_ZEv(q!~WYxAq$G{(kouZFa~>F<6d;f)AvsmtZL=~YgSMMf2|tBTItx7OmZ`)mGG4*+cTM{JDb$_U(w#Pg>$%v`G9NU<9E7BWM%`jG$3StP7Ws=q2oV6$zfk+HEYPl+7&ANG5PEI;3{PqjElkgeZbuM_Uc z`-uHVL&DhI@590TYw;o-A*>PiT&nXm~X$U`~ zfA7TPNyzczC{FdTg8E$i3%PLfA46K^EJDA#u{Cd1vHvK(kK8BGH=HxF?U&nLDKo{x zbH{5_ihZ9amINq+y!aJ?r#+?1XQQ(l3nZ$#!()gPXbJ6hRyb$3YjWFJsWZ7w@}QCA zWl!0Ic2%D+fp3X=zc%IW7twiz zZ;(w63GXxn;uycP?9~FFPW`AbuX#&EqmRbyj7*XBlwcQ z(;m_l@QKU5QA?gDo)4`!AejhXsr@R3Uw(@Jq~n8#M{BdU31msWYi##x*DTPo-KI1P zmb@q}<_dqWMfpt=wfte-zVAb;G#lSontH<8i`rBUnn*OjM!%D;f zMTm;Qa6Nyg1Z!Tu@Cm*6BJbJFxq62JipWN-L?dkA2#mx~osGyqic;l(^pv&GJJ4td%HZix+ z2X-dEuw$2YEbcYWj*Sf4lRnM3Z}Cd^6^i5HFaC?|-np=GT2{i9`i7%d>&NQ$)MRwo zaPlQ>yD+HKxCiA?{5f1F#RRKd|LhwF)ENi4s)T3}718LUD!1?7ZCTW`|Bxhact0Pp z0bG~~#PNI6=ZHf`YJI{u8Qq>JFaSaG+wDj=thRbQ5g*MtzGPi#=E4%z(Zbd#Yc)GZ zYwM;KiJ!<_o(P*uFpS=NE9hSn!r_05s&>Plfmd|)0egh(n2mL z@b9Kh)6o|-Y!JhSnJNA$8Eh9AAH&nU+gm(5v|^f$ewf{KU_&(JaAnx63*p=Y@Ra}e zrpIu}Qh)BSewmJ`3aQzHOxxJPEA_cMs&l@5mONRgneZNL3ODQCwoVRz zSV>fM&giv2!amBGVc4i4%H!gj<+Q!%urUU^A)?)#;VZW7CGlvH!S9IZ-I_p~anm-r zNn7m=vdG~?@RsjR1b>iwsOiqb4o<#A62Hml^N4S2N`2=NKY6IZyUJU?lf$EbD;Xt+ zR=DUs_~p&wfG&(_&mg$()f&Ohhc*qpe7zPuj$!|JwLclMWEwY!@(NA;ye2(|o`^a-H7cqCTzIB7!MHyRn8@IwPDOXZB&^(z zNb%%OmoKRvW)&(NNy5|Urc+<_P4mXe`vr|m`mD4+95|a{nlnUar>aA*)sJ;DprI$b zpds2h-S%2Fihj%YpRj>o*RXh+RnrtSCNcmF`V7k8;P0+QD&` zO(W_8HV1G;=Mqt7Tbkm$Rq@2PgV$r2cK1!fhyeCa1lt=xG?)ootttuW%r!OmG4Uc1)du;yL5)7*#sR&PrYwx9(31LUO^tYcTu?b3Uv-1PU|fRt zxK5{0PMgDW8l%;~fXqeoR&0i7Mv+psV|w+>qa4oX>W5ud;AHi{@oWTQ`vHwe~!8esKO5Brky`bcU5%01)-NXR=Yc_1_Hq1CWB?a z;Eht4u&N6yx?002SX1+HSoatz*Z_J2mYqwql4p_ZfGg)|7 z->dQQqIo0QU(r~3Bu$*s{Bf|djT)^;rlSWG(SORxBxgr+&gMqr>CCq2wr%oYLv*8X z+Q1FHSFT;?q@4i`IZc2l%Qye|EFcY~RrR6ttrr1DMaSBbiER-S&8c^A#K8K(?rD3S zdOn#Zs@lSFpz%cm>76}M-B)Yu>{H?S;3?d*A2KzNst9ms=Z(SoP!O{FMCWZN&OTv1 zf@ou^f|b}mxW~Q7kNd@{nzY4D!*iy>787It7prp~8(MV)=^UV5AW5-q)>;V10qd|T z`@%Z^jky^hf^&5#?rttdj$^V6-LecJV={w3c-~0Xw7Vxmo*^r`-95F1>8lpdl;74d z8-UoxGYUiehK{k(m~CuUF~+7#^0hig_&6S?S7Xy>U^TdmjoATtHe+nM8ymnZrWuG1n9ocI{>4=N~(WMH?XCZyow2R5lGHam#dGJl%oqMzGKmy(%4X{BQbFDq=FAwGzteYw+hN;L>~HM%{_$lU|9%p_ zJQ1CDQi}`xYeXZ60{;a3cVwMYQI*_Y9DMnGw7GEO3C9*VPNn}XqlCrLT%M?nlH|Oz z)@$tiy2UeU&6TQz~qe?FEuI8`OmY+zt8k2NFS1wOpTY;qg)?!uo+8V4HhsCNohQIw(ifwDz<)$|TaoF-YBxpOrCb$=I`1ULZ^t$z za~1JRw3V}Y-442OX^}OjVe=z3SpmiL_lr*8yKgS#W)u(D*Rv*FnsN@wI3r=2TS8Ua0vbOfcUQ;4vd3z( zXX2V95eIG^RJW1g}*#~nR8_8~mHOA@8QrQY;1`;Q_5?gh^&${i1nfqMr1ICWXB zyw^J(GkEOi1@>gaK370d-+--eI7K?C)tLJd4V4^5DPo)MTbHn4^v3dUu~YT#m)=L4 z3PbkZoin5RTdkL7!auY=$NiBu9|*xd#4EF8cPlrFSE=Yd(RCw%F{t#0U2y`e!ErE3 znDUBYh1Rz3i>iTJA_o%3*B7dIS@oexUp`c%29)@9JA`_w4rWf~(+7f0euycPSi!}9 zVk;XW#Be9Gbf}(l`~)>fZ{`5*P*}%SGmMWwUsl5d3v$BnF!|9Qql*E8$I0lqL_5=H zD?lAO+C_D4n!ML(%VK~#LYET;2jbUmOHT~g zLs8|4RPZ&)Ns=6}9qKzBmc(FA=tH{WN+Z-kfPUEVS_d1xN_WEpE26=aV&Y7yKd|shORqrVY>J-RcI7T{Gxib@_hy7Jz%`R&0|BP}p_Avug}6ti$sd z;V^fX(b}-b`q7xSD6Jie`I!Q0O?qbUB%!4?{6czHt!SQ^2WSi1P}sT#klk9-y-|Nbtw~5SuoO`{{5jY~0Q`8VYj#_N z)EO(Kspc#)Vi`>7OL#kw7s6^F04kOmQ18Vw6dzJ?mH5RmyGdVfAb~O+XE&J0IQujcXVc^X9cLGq5odoo1mf&?Eheaol}N!Df~UD`^gHdr5MM>?>Lh9a3{&Nv zp!l1~v9Z%ahaJ!t8&v2P6B*I5I~^Hm8i3vkqX`+u|D&n9PSS2a1k)T%yI(T!ch6TN( zXZFaXNE8C?2j&La;Y^_2kOqX6BB561llS9EhZ+k1xtoRppA!` z8E9j5OrYHnXx}wG(8kk-M4&A-H)D-&WCCrv#)b~GDboXODb!>PfdU76a|3PGNhZ*y z>vrfsd$Z|*w*62Dw4#)zM*Jn)Hg`X4Wu2J`UWVV45#ZG za68lM8zjFP?}B1pa{bG$x&<%1xp~}IyYiA+xvT$W_04l*6Y^&_HZJ_+#XW0J&wlQ| zugs06q_hPxr(}l9Y^jbdg>{z9^smC|oReBQ6fBSjYUQcL!L6B^*d{JH6TRIU4JE)y zP!X)KSF)iZxXa5T$Ci0mDXUxvwZ9Hf5$uWRGaxG$jl;XD(_969iB9yWPf$(LlfL9N z0`;Sg-NbAUpo0DvdJkXWu{|BOM{0)ck>QO3)00x9jj+G16Q(>-UW6gGGN%~WhS@G1+r{2k zu7~Qr4C=&GUAl zed#kmk%3Kph~_~#@FDbP194jo|LJ-$0qy)17Nq51T19!2B*)%-%C|0aDC7@3Q7fIn zG^gd(m1()9wSVZATeTS+o`xHOo8He)MGT0fiUS#CZic{$*)AR1CCXR{+|Lee2)Tv` zhex;En#JMWU~q5;4z4o;2M?i^TXS$Q#^7Lsd>YN+fi_-y4`sh`@K9>GHLHh`DeW{! zvVl*h_{P%C{4D-YBQWs=Fs5qXjx9PunVJ%XUq_^nz3Dm zf-Gme7Hu(?!&}F2cpV&`#&qn0z8exq8WR5e!%+Y@!(Z82EdTzM&;Zx6u%f(ev zC|dr_(?1NmJvx7OdF9y&zy0k<*_mHf_IM!6Md^AOwJ}B6|0KdtXrmmfWeGyC!fMP_ z9E>U)wKf?&Q~-A{!}?tv6~OJxFntE7>#$lTkh5~_^t-8x1`VUNDolSqS1GGRzJpV& z*EE6`h}r%t5KC!|h(-|k6^|f9{x$g!RMAqvZ6&~C$TBDOXP`&^&|9Do0sqjhNRE(` zx?qSD0%PWO%`sTHvzn$8EB8ARXQAUwrc09F#Rf_sf>C0mCk2=1XAuqGP1FvFUdVNIQ5 z4f-6`M0ceOAy(KNq>GqBU}F-Yvk1S5cR|U4J66k<^3Yo_RS@Xm_E{`?8*jisIaZ*kH~%$fvOI}j5YVYHW_aNHbLhS3T!vNBz?Li#QK&^k0&8Cv|o ztXWNr_=B;5va=Gn-$0l(G{%xLs+}-oxZB`glcd|tQ|*Kd0i)X4%h>LLtY0xjoXNzA zJ&*QOMw&J+*NHT?2moKK=}IAii1&cE=||g=HByJO_m>!O!T8K*Y)sI%qM?W!IkNQaI~M)M;pIU5FNX%$819v|a02QWDkb&p~TA8mhvX$iEXw&Esk#h=Z(hTQV_EZljxx9dRUP zg@#_36X|MCQU001|6exIoU)T_rFlxs!F<`u-OS4TyCT ztW+`kd48es&)a|5;@S3PIU|W=4|IKWz>8G%1RDq@57hEtmgT`$c9UEs0HTXq5Y``IW0s(#WUK81 z{<>1S09f@we8}2NPSf}kaI^jQq`^kr-Su#LPRb8D*v<5Ty(3LMp17Q)OHrNn#Frn} z1>DOzB*`5P>jq<0jho!?%WlWy_U%6tzEk$Lyp5%)=~fP8?8s2Kpdvv01%16y?HkST zaKL$RwT|1vex67_sNSz_yH+$Mvy!+`3nV$Byt0rJ@+FZq$GaX>b54!Q^)Jb$4=i20 zU{xu51Ye@NaX^}J5N`hMN>rYka)SEhKj>_j`|iiTo_YZGZfwUB(f;)NwCpn41@ExD zRJp4|t`hEp*s!(tz)b)Hk-NOZSad9CUQ&lWfd`Mi0iNPhcKfyd3$!M!KWQb&q1~8w z7}ykz<9nU<#$ah~&w+|8gT2vA)WV;^h5^%48=eD~lrGkA&{eWh#W`0=KT5`(Vb~t@ z0Uo9k^v#3=k$hA~+kwpX$LR#U$5Cy6?T2ZPh9^>m`P*Ts@HM3hcRy|VZ1tk92i>^N z9V8^YSWXHDt6UX-U9sA5FE*$!1;@t^(T4TEHFTzZP!f3D_3D}bcBxA%dnu**8V0CEAlCUBXw$kzi zw2^tv@fIK=R3F=v4MxHbkcl7d2`^Rxiu$SR0kBjR?K9|u=zJxOPOi11sjDWz6Vskr zPb4$XydXJaUJOul8*N^MCYu**h?p0y{bEhC-x5s%;iaxR7&M75>3T?WR2aPzDi0!( zJz3M`OC(`of+Bi<#`vK_AwFx!UmmQ_MD|ZS@dQGKL(-MPlr^4#drN%ZdhleDzG&jd zFMKl*Rc|O;^YN&Y5WGcJ*x&+9Hfq6HlvcylYYWwsI*3K(3n?Y0$MMzz7E;(F#cNor ztrTesrTSX7N`!4814-Y!mW$q~F@;4fK!u_VtZ5~gDXgS_Gzlxw{gq@C{Lro>i{QtD zm84i$iKAmwW-6tvR_U9tG%5MOkE}a>AHPgBENV`Xobk;al}_D`AmADYQG>Nsm01dH zGhI7Pb6-CmlhnAYoU?1RyAywv7PRWx6|ln%W2FjYWOFJP-%a%}`8=ivuKtXn@LlFu zES7$V^)Sw4&ZC5_f31P6x@aqx@L=+K@jGJ-pQK!#T;lz$=zaFxaqYkCfDeIB(7Lku z%H#J9j72jmy8x^0_oZ6<{qejAAs*@_6kLbx`-^`IKp`3_eXPnCOO4-RB%25j}BDT!m-a53LdQBYus-$RB&GG~$T9bD;3CP!1ZJb1aI?6ggWe(?LL zXm>~jq2%_*C_;cP()Kc^yjM%goYd}825cc5NHxCBAW6Z2kgRGpZ;7_D+re?A@g0<+ z){4A{XscW>^~KVRV%Wj?VyX#7U;3hyM{{eAo;wnHcIPflZii%?kx=W9P}SjI+y9n1 zY0xZ$s~n>mTby_(kfRZ#^0dNBf?{kwOU_ER*9yyR2)5FSbkM;dIl=>ZlAAAde|-R@ z<(1&d1K8~#_{-z>UCC;LHMx_DTKw+$*mFr9V^1v3Mmmr|+>`Y>m<}d}80^l$%*lLJ z*F$>DG2=S`VhL{t@xwPUr3)hsk|-Z8L)-$BFy$RA@_V#sTdO>SX|T-uVonmn5_C-rE6}+L(vPo?u1OMctPSd@P=xnkFY4;dNo}y+NZ0*(s~1>`wBc>@B_TSw zY{V8u+`;!W;tvACUsgb=&`q8uITJ=D(AAlC0v!wVUAbgxKk2G(5_%rC+9$`woJ31K z0@*hp3jv}aE!L78!9^!Ec#L>s9BYhmb-OxaU4W~YGKm#j>?aPlBHaykRIkK9%r%ej z9jm?cKD#5BH4vX6o{zTePcpPD1BiXgy(xvZC(KEMb|IjX?V@el2o#1e?V#=ljFF_7 zqe09ZGlVJoktElEF_JWzAH>WtLzwoEp0&J~!=yM02-B8dgfP9$5T=Gq``|VWCRr|q zFiq&v^E$wcB;77Kh?!%CFm-n#ysgOeVzrwhSz;*aVJbe_7J?y68647EuACuEp~#Hk zbKC0|yDvm9geh`3=e6OPg@MofmXmxqy_T|7CB>eL7&gwAIx*bky}kc&eub|p_KT=- z(N+d~cKnuzl5qv^y4Kl|ugbW85L=Nb+*nkAQ!oV}7NBS3L$deas|8A)1XA7vz&lL_xc zR&bfOFx;7h$qf5L@(dM&m9vXh8)^~T)61jXp#-&^d^Tjv~3}OdPc@TyWW) zYe+Dw4)&3iPK%^Ik+W;GQ)p8TSuk%jpI5 zrAz8yeflV=QypZDB%+<&bqhC_u`-H_vSbrzrVZAocghhyhHyA}AufTKn4=Ibl*_JZ zcGDa-Fy+hX`c~t5%ac1f?C!Ve&S9j+pjrsB`z)PvZpJL$SmUlp%p8#$z$u0OVfams zDS3pSGg%l}1J{#F4cBWBBi=n9jRci5Yv13sALNh7buH4^qz8ur*Dj(C2L;O0x^Irl za~2tl2W$?KP0qzshwhHj2|zoOI12OU(1NxQo5UN{G_)9mW_Z5Hyz%A}_hJdU<30^FcTZyA^%DmtOKgk3y zgPhkg$vi>uf}812uxqLHVwB9Vmjl9Hnsk><3X`%Gs1=kbh&}!_z;&tbv=isX@HRf? zSO*J2K;TPN&c!qbGiO*k5W_$uedYI&j1?GMuDMa0Eby9E176+pgT#o+SO4Fe>Bv;uZ zU#i*l2!SdlA|Y2#2=#Gr;=*QU5>!SZIeb?P__mItlZlbsg;RSh z1+g=h7N#O+*gzFMl@`u5ihUX@G-anBSJwH4QSH-Mp{cp?n6l0_(MC~BRY!$p@Z-ul zPZ&GNJ1aEZ9#_^`ZB)|itkAT3Tv_Luc5&5mx=^&ekk;mL)wjLfus(^=xE=~=!yZ?C z+uLn|=$CSCYt`DO zaD`YMDB|{3bz0S9fE#S=Vh~d-s5$hk<2v}~a`xG7T=+r(1NL82a%^n@Q&Pp)NRd{fWxV z$kvyMYzG&KPCzNCW7ZcFvp;_(Gl@6nDms5k{(IT0Bhuav7L9o0y)R#N*bbWE##&C( z)i$Ag%uKN$j1dd6RHakQ%>F3E=zjFgr8e$*v|4&#^=wUQs)F*dB9?igg*J?6p+!nQ zuLaRUD@jgXZ{^6caXpp+o#`k?Mg+Real(2kNA8?A*V!dtvW~M!`@YXAyiO(h&bAIl zZo5-%8*+2z`V&ShXdtD|2ksHcmZLgp9#?ZYvo*Gf?!|Y^=uzR+*wXLV(k6Lod_zk& z{&z5`^M&D98H%Oz+fs@^&CnHvQ3O`OD6U(c;yPufD9B|-6vRSB3t4807P6S&#ZrS8 znVG?h0~5ShYVbms8N5KYp9x+pZ&nZlFH$qfFexJzWT|37=1%ZnLHdQ62-QbnVQJ!3A1jhOVodeMky-}~`*FRmTvq3b}Ta?K=C zxeSqNsYEI>GU}9^9Zubv%MPW{*&wGk`xKCv^QhvmIaTV+$S6NsGPzioqew0~^EjQb zpLOjAH^l}43^Ou{31AEw&JV@-5Wp}aqnPYViTAgn_p$DeNF>EVzu3qq5IbZ>Mp1n? z;SNm?MaxT>8N4tfqb#(9U4hKa+A&oiioTn0hi(-}gPBC?X{JiuQmfR_X(w^76B>d& zRULz~Q8KRJUDrB0@>Lne2@SYmLIby_2@RYcCfzUJqYR)?~HMGYOlAV*+=%>agUDD%y`^X%wNBL`OZNk##%w+ zRC>?923I-~_$4Y4%^_!@huiP5WJAM#&MmIep1{jl+V(e!Q7Uy1B}Y;Yplv!QbQCog z`5Q`@T2%-{%Y4Ze74msh;gktp+7wQI{ViZp3L1i!Rx^VaS0;F|)ZoS3q+Aq(Lo5`B zV0!a#2)2&FAr^^44#Nbwb%iRw^x&Q+qjO4KI_4f@N*>|oOcqAg5EG4)(Zz_(wAh-H zTtUe5XxK|08(x0m3vp}}LaRT%`uy5+Y4x#3-kWwL@}%!?{O(2PL1gmG2FbC>q5w->C1!&-lCKdT)gEv(o5|zqQy}_)CZxa zY#t)hQecA3{Bxyd0gtpX8@&B~-O7f^mOzGR~qA#F9j5aH+RA+<}B4LM}~ihh&_QWb%K1lB)tk;r<-_ zw!I$idr)ABpKWeH*MnrvBI7%_(v?h(rfzxga!1)|ni*EIK2k$Y2$t^)7R_P{T@ zvlUqYAeoZ}^FoXugm|c+uo{n-{7HH*G}W+0Ta_5KC#0gl7x{HJdyjo8-h!Pbf5=ucCynk* zJM?b!z@`ky>Q#B7>$d5^Bt&1Sd1bEI^0dgBQ(X_Lah>mQb@5cWC-&e#Cdb-_2pL5L z+zW25zzT9#h3a7A{P%7^ys^lef6u3+U%rDmsojYV*g`~8t&VLo&`kC<2_Y4PlG`6x z!IdS5=nP%Iun2QfJ185lg>WEkxG-G;*gi4grM~kJK0TP39&^lySh0#A!rOto5LN?_ zPOe@krxBAcdYZu@0KF{`TX_-oI55GPi!~fwd`;DC-V$wPw}azK<2!VKBl04mt#ZM- z6-zUU!Mf#(sSf~6r(zZVeZ&+lh!069-6-DHpD>F#sUt=mu+@v#vO;TPB~VSBt8~rH zcnEF4OHQc~e^5SB1v_5rV8d4(zkdKy~20fjCAVm~a(9S;l)bJE~lh`>_xz(9P&Huawp1M6ld(BbREi@0R! z2>x=q+^Y*`)!7sP0ZCA}K<3HL9hIP!7zmSZ5<+~mBIYE`;9ZD2Nl0fc$q`(1QiI2c zH)0DT?$GV(#2)}xF=Y}fxY$n|ZbiBqEVf>W-R2z6BYYWxV_;|pLkKWX1c%u{EJK*m zIRXm|R7McoykCScZD9ygL+)mvXv_h%Ck$Zw=VdxK)9atcwFbO6xgsHpJLlrO#HQP?jGK49VSp5u@GnPorLNyRW zm@<5BdqGL}h4>#MOzGx_n8hA}V?Dm`OHmSPY+3v!g`2#1!%IQRzdrHhb5maJ((F4# zTQ&!Du0X4qa#$A`IV=m6!$M{bZAQ${X3HGfT!PeiC|)1WYjRR^b+#mTIVwhndRHUh zJaE+6kloY>e6SK!J{v`2W$4fhYtSQrGU@#xd87`t@~)*)dL2rM?4!aub28zb$O!c%=!CwJGKw!kOMq`|lY zH#x$j=>>5V%S;@?VsMCM;*c^VGgH~dfl;=xRAn2&On-8dk>#||u>n#uWjUoxPq}G5 z9imB?N#rh~;DvZ%TEa!?xZ;mXq!+^&5=x=`ee> z#mpj)3rupwLW?|bGm|SglU%XXz};$i97DnymR8=nbW+KfBoUNM@qb_U+<_Um7bEb!>Ln2ql8UE`73^^W-QqZbK+KYE@~rg5m>br1bFcoaH>|J1jT4@r zjBB{hFl$LToV*a1K)7vw%wXx>ZW9dk=3;dQ*&wo9s=aJbd2Zho5j8MZpehMupWEI* z@CTV|i8$L_U9fQotC*qziEmFsSpS!vumQVaeWvt&Rzuk6OyXo2D>SeEx-{Lt1|4xE zh0Bo)qr6Ej^(lx-SE9R7It(o%S@5z5UaF#Wh*}1==2I94UWwGnjwGh81>+;*YO$1} zFepJypzVn;kHD$PO(|$4mDNK4$LyOnEB>=S=mWQJVE$DduT9-jNW|4tbqL0{xf(Dk zaXrqRu;FOchIw1f6(}sEVv7!F_=h#Kdv$OY`1tjiQ6I86goVt*As7trWpGGe!+VD; z4skRShj1Aj(l;?Obo~ho%QPtB_B{V;>Pq9B68Hl$Esm<6&4Z{>E;Ts4hExP21T+=U z{_@C}h+jW6V?37`5i}6(jm~W%>phRSn!Csl!~g^#;SVs?VLZ6RPiSQvaiv5%7^q>P zlm~7u)PS5m12rrXYS^0zHRuKxhVl?@Eb^s?O#oB-@Pvw?3pHeBLJfMkacf1WF!%MMtbcPueu3Tvqou+1YJ#37$b0{MPv* zx`d2zHx}t`^k%x7eT=)YNOuEiIlY-AI#h!&k*!5Wwqi3QTW%H;*)F$0P8O1~)n-Pv z&J5J(yIOtdMz)lhPyU7$pLTW=cUyqpyHPDTp8ETMFN}79X_z!oU zec{@!yh$t37}dcK_D4)RHu`qF%ibq`zjgoDZS%-Ft2!CQy0#+0iI1zJ?Ht$DS$sR{ zadotu9*S?Rp^g?jj@rz6cE_fa78S|%NhG!zd%TwZr~+@nS38Fc-4Ux4^$m3*$6jqFh)85@*$U6Moh z;$!>BSty2xpdJx4oo|pp4ZeVvv!GQUlcTmb5)s|_?`=!6skw0C#7-tvf(r2UVnQQ9 zsgGtQepb^r$REGKy#@L#RPF6H-8qb!%xuODg78MtQ;kqe4?Q1e9@oAx=h2>z6}69P z-}v<(KaN6};M2LorGAb63O8NAps!Asu_m_zgtf#8KQvl$n9 z7_gptDMNbb>>Jpiok6bdx`mJHrR?oCK`$jE7S!1n&0yrV_H~*;gZM;fW_)7L#3y~H zUwVrT2Y-CROoUpZ70tvR92U)>nPbKYwL76W%4~nahy@KGdpUsdNePnuaucCin2AuP zV!(mh0w!5WW+GHF-LBFuEM#(S)1YWEE4Z1-6`V<~SZ452hRmJdfiV-In2AtC9920N(;Up4VQm!j zP@(^7B2>4b_L%S8M~2$hwu^f*Bz7l>%@C=g_dA7EO->UHa*AM(hp8r&A~Hnk=uYin zrVg!3t|71lNq#vZRmTvi43SEJ3TjV41)8SxJ&Bw$WuWcC?7x1af=QLq43X*tV|hB% z@fiT!380}0gdtK@2U#PDXlFC(tSk{g)ACXbk;+toc*8V_hhoe)iXl>sgHxE`rEBm~ z24fdM8F`Wdpd9$aV?zvUu(rV7MTt3WjNFhOpQe@)M0U1EBiAlJ1DB$^3cEHrq*Nb`ah zY&{daSZMH~HnU2d#{@4H8N5JpMPnuzmd{kFTWFO!GTEQdMWjKm{Asl^)>Prv*0^S>K?veu<3N3TLRImao2H};Xi>76PPtbk(maPo3=0)LX5LcCBe z$&yWSZ%UD~nUezTD=kW40F=pT?hw~h3X8k zZJsWsrfN2CiMF!a!EvSW9h8P^MP5X-RjzK)=3;3^v3O(AMVtb?50w~IdOR|-v{R4J z+lovtR=X*ZC1;|k*lg2dT>^|LC-FnvcsP|FXw6p+zOjK61=W`1<_w@O=UV~b$<9eO56lpb? z(ojt{3yHC25esIXNy!QuT%gHDEjWwPYPfoBp_)<$v8a3@rNs0&-deyy3VWn@4QsW9 z^9!Z=TDD4rZ6O=$@CW(MSg=yc(G^IQc*~|n^^7#sSVqu4s4~JHel(O3Lio{AMsVSW zu8e3BR-(WPp&%q4QDR*-SCES3jG`n}ERHo-x2QQqa;5^;&qHyn#ab!$xqw_icw4z= zl+c9}Y`SppcuW$A&T)2KZKuWHY3OD_QLVLBm02oud1Po|7p*$w0qIC0-oYK7$Wm@b zF=`%0==>D@a>y)dKBf;Mi8QTf#3MuSI@>+ra|DG8WS;EYQ3+a@`Nit#J2`b19EQ)4 zJrma?i8$75!haOO&3g|QOdylP5~|u%_u5th&gv|o6pbL3Buaxzy~W`Uq?0vSfXnQV z4fe?LJ?2t9E_t8l1eRh=cQ+COYce&j%r#q{7Flzu>p?ZH^Bt}(o+|gm9vsNzSlbXG zqX@^vnmj*zcYiIKo!th!j&poOmbgE68SJh%J_v#+!vPEkJsuk*#!2LP{Av5Nj7 zjL4kS9xM;kLflD0I%`Re;G&ZnJVv~cx--&xx?P?09>7&hnZyb%_7jI&k?z(cSU0^A zyUjVCNBH)W(tpd8JOFc2dlqFt76S4BZ9%Lg$K)Uu?lKdoSYq%s0=T(QL18t`^-7gv zNQVr2t+3pNU@NUi2VEEyO?V(r@&HN_6l3#QoCn=s%du3R7AP!kOFR|LpQQIfQw`Rn zRf)Ci38^UXMShGukqyXGZlDwf1>!OI*ogel|=A1=3G_*_HX2}77dM)~3Loq=K`4Hcw=mpNt#Qz%I5p{{#C7=(f2 zDonZ(LzqID;;$A7{Cq4c!sg!@=lk`N55B&!C*>5?D*e=9iHnWPu~*K;yS)6*_hxUbR>kQ>9w(z( z{kkEI3LdF*ypdgwqVIODHM>T;x19!wtae=~8<2q1g$PzeS0-kT$PJLE%|hN-ne>!`$I({GPDfJl^!4l!(W?*v zv-WMZ*H?R6ds^m0OqX2Z0VNN2t^E3rNY&%U_Ez;ML=fC%3_R+sr}%&A2^-vZxlhs1 z-fj~Jwnp{YQ#^I$SiY**FQUdp%hEZMX>nBjY+k5cj$CTEUV|9f^wv|{n}ajSx>?}b z4{|32J;g13_7uO7HjCG`IVcfz7!N3u=E&2E!fZ)bdcwjCN{24=(o@U;fc8$FA^M1b zU@LXnNemUJWVuv(xeZjb?*%Xvm5=u)cyD8ShbZ`B%u^di4lF}WeG0b5^(bs((?zh= zxhbVZh4mnmHZ;MPNp5+Ny9Sdy_*w$B^d*$``1l0X_9B$V#3w^NKEeAGN?TnDPNgk) z#gsh4&zUTYtRdXG2&Lh@38nq|aXI4}%%D$ToVU79p|rV+=+K1T93&{IVXDJ;aEYJL zs>`^%-c+7{{kWWQ4dyV6wj?5}oBV590=XK>2P;8;Z?qw~N_(I@dlYV65sf8dax@*<(@AC-ggfGgHRdW%B&gUwNxJZ2JktTX3cp2)!i?q+Ny^jxG zq`i&pWrCNs7UUuNh(Petw>tRa$*^9>_A)r6tv`K;LUq6)b!Os_uwDdP865IUWKm5D zQB8vCFb%KIX%iWq?fiLVB1*;;yz5$LN4`pPV>Y@>UoQ&O;d`4l(Hm=TiS&R;Yv0$b z++W`bL2^ZGW^%=mNv>FAh98nEq?yT;LMFLlT7k{LxdxNWQyhhvnOwn`z{xGiU_v5k-ZK;wSJ3<7a?BstQ;R^!p zk6rjt_`3Z!e)`*s^V-Ed$zN*@D6T-HkWy%z)KuUS4fR2&0=?VHLK>kGJt!b>>L|s- zzC*3{D%4OwVDOR)FPq?{rhq{35@W*|tz!jcD2SSkM8rgWBn2wa8}GGfE08WI%a>$p zimpG(rgo7eRWWmuLEUwTjTVoi>@m=R?zI#oxX0)>!&q77-J+aw`7%cVy>uJW1l|LlDWTvTQH|AwKv;${1<3TVlimE|QAycHr_{j@DL zD)W}gXeee1XkJim6YHvNVx*Rr2(U7|OKOTDFqkW-C}>_#5eAnG6}cz^0}M0&=Xu|A z&YUxxGv^(%Ec5fJ5r%Vl-}kwHpXYsEnR00-waRBp2VNf??HOI_dv-ZitPZ>~}$~pj5rC6YVwym4hMkp(I^YJ@#dC z&M?`m?qa^QFtXbGecF5JxW{1~U#rjULwI0Mxa{2TR1wCSH0Dgwz_0%lemzdH@n^akUJqOi+rY?O^$mYbSHo=hnXbmc2d;)~p#692YWVz2R|6Bb z4_pl!dmn$lu13<&bTu>&T#ftF)wpWD>8np#Sd!fEd9A+MxzR1a{FV8o#$~3q)$a8^ zXLMK1uS>u1yVc|`x>8|(zR#Iym-V;d+`EK1xyb;Ang5%1Jt@hgEB(sGnI88FB*x;{ z9@wxMcGDlHaVEbhf28HKN7w_M(6aGpYL35^(rv>~OBc>@Y7I5-JzzKglsQWmq5CN=xVB$~2C!63fM|36n);=%D_^pu z-|v>y7gx==@&C*a^D6CW^EZQ?%!y_=`5nrb8mrAWA=_^uo>65Xoer0e|u-;W3U+)Kz7}O z@-gLpw!c#mf%36jo11a{WSdO&6m>fFRoaaEJ1u~Ckj~qj`#p4Aht0UvHaFv{lp{l@ z)58jzaqoTE5N{HbVbSMMSk(kh(olY!;-n zrRLWwo4h0E>prA%hx+Gg!^!Do+u6fNh)+s>W_+^rL3}dpj@JG+E+PXO%{H3_scmo3 zHky^11^tm~sqRDd1o4UO=5y-y#OFbLV!K(;?^HzKM5sEuPJ~)x6rTo#JyEr1HMaro zGXJQ*t%aaRbRv}2#)(i5w%O9tqkgBZy4s0QY89t8PK3Jm$%FgRJNVTcXgCqd&1T2- zRM``u#)&$vW7~$L2W=bfyMlNKUaEd(@UrSb@N%C9FWSbRnOspiM(%g&nc3_Y^#}5v zAb6?xnaP#l2f@pI8N5Jp#r6pv>dAUHC@Yjb5$X>lVfSMiN9{x?_4q{bM5qVx33npY z?^8q|KCyiwlzM!kdk~-8uVv~#*PbYy2=zOyY_Zccn9Uo$81_-mVe^MUX`VDUIKH zeNWPhjT=U!?GnEYF82Gh+cWT9{HYxdY0;~V857g4&ObDF7 zbfnwW5fSSxzm&bwT>PE>+M@a)vGt4H&bCM?sQkKq>9#X@DJ2)rXj9+S%!{q}vTqRN z<}IORTVMB?J~F8%x4_)kH#uK<hvW^w&1 zv7u85U4+|U6@1?mhz9G@;<>)uVb(`Ti|_4c(D=J(lsy%2RmZO8%!e zU`Rfj&a}OBc3IGXOJ{?}ZBCk(JF5EPm@k2Ne&fV%!*L&5)sA0%7*hQU-$WMe@cSe2 z(-?E;w#N>Cw^1--I>_cp{L&re*5}}(pNs`e;n5MRm}BnW!Jj} zT_2I$Dd>7F;e-F3(Y>b`HB$HP15SA3_pDj&T&NG!Coc-@ocCUA^3|_HrwvP+Zp}r$ zKUf&bIpQs!>0^9mj|>KlFj6-SHG=a-(};#GpM!>apc8%rHs;Pb;f~dN{#l*d%&L8( z^HYboo%I@jeS|d^g|4)yCEeAp>t8ug|DV{<(`8Fy>%EC>7+76#am?8>?hmZPUGz5Y z0VmwCp}(-hR6Hp*YtO}>dev_#yg-bXgp1Ct>MIzxdSEl(i)Vc=orwi6;Y8(#l*;5j6a@zt#M<`sD9PU?%xRHkHHCd98B)rYJUFwPqVl0UAS!UmXN&`N1E3~ z)lXQATO_dAs`=G_8&I8?-+DlG7>Pt@U)Oz?v}LpAHy?{W;DlcYR+!jWd$51Zj6EmD z-+m))w$zRd#wlh~}^jhMu;k>>3Yqee7-^(&zg4>;i$ z;)FW}n98neAN#ou^#e6zL8FGOm~zJ9r!B1lKl!B3^i^N>^!UFOT|R2{#*_~qf2p18 zS4aLjWXaR~SHnM_dgj$1x3nso%XI0=|G`toFrIY^4r3f%K}_SZFheyGiH9Xey+>5Uqd>$?u_zU7JWV=Zb;_t=B7C(Gxnd;CBh$8AI0mQ>e_$Sv~~FBsd%;U zW#wllR_z>6nHRg)Y)tSm->k3Rn6GWDD9zHDuOyg?&8D&>Z9}%kT)ISKx?NM3r88D( zOqX?LW0vk*MIw%6)gztu`A(8NRQjd`=Q6Z4%}od3l9K=Cr}l+`Cf#UoGY@>SD-LP} z+`rp;F1Z~IxrG_pF+*n-eeo{dFcV+Xs&+Xd%JcCYY2Ea zG&cGl!Fu@L!yzrg(;@BXpKsTk`19?jx}MA*(DkJ7$MU`ro`W@Hd~Y^$>sE7g-)UX$ zpFG}d)^^;K4b406I`YrfgQl!l(Q(0%$Gi5c{A9?`_ljy~u7)Mkf3~8dp=8*5MIjfJ zF6^=_`b@yQ58?NG^P-gX`uf{qAv@Wa94?CAh<{(^pAeZMkr1 zPZ*p@>+v={`VzS1lnCU6VCnNs(G z&vbZpSTplP*XwJO3(gEY$0@&7v@!6#qAuBF`om#iq(2VA*W`6F>^tY}KmYhsF#lN&%IliBs=2A|{j{i< z8NFDp1{Mzm79Z`=A>z}^Gb21v%58mSesweUCf;$*BcN)g$C;Or?Q(|zf8{*hgbUMm zjmvzYnRa>W@KaB{L_}jW=ty7=>pWb+aNch!<2N!*X0#fq$OXCI?!8_m!;QZ_sgFt+MoHL4& zTD1NG)~$bTe;mTYQ=Ude5aA#rlwCS(lS;^Z+$KJl# z@5)S~ovTlvj#l_wmKmH$?#NcsdE5$uI`e4L(J+2y(Xzd$_qz24l@9bx_y8v$AvaxT zW3T>|Lt^QqC|MqALKg0!WiibU`R21;>>j*|tXZtp0(^R4Pj(lSQGhWySXh&=hk=Dj?bcpxM@b_fHe&r zv5wkQJ+Z9TpF7_*2BhL0dzuiyN}X#i^ekQE*8@8sk@^W zH8*wcWcX?X%xf?uS*xiiq`v>)Sbz5?A`??7GdYgPVZb?Hv2UU1m5@)di9L4f zp%@rU8Tx&L2AQ+ZV0Y2Pf|Agqk|4v4%6m(qc8uRG zw^(Q(MI(};8%|hcu=74`vJhZc$spbq&lpyfDk3qFLEy3^0=GTyQ*estr<~ZKz>zx` z1@2{$z*+bZJVjw4faR!KHGha|)k-F*mKC%GM_}N1F@XsOS@8o$U|3~AFt4D<`4-6t zo@rZ@_EF%)YEE+!k)sUZK~!Pnh-U=Nsktx+^so`1oR9MIx3xr``?Z(&A)MX>Quwq1 zeh8IOxu`eA3o&R$ksHz1VwUDTIg!{eiw0h(LSC5Cv)=Ie`+KLXJvZYR_^{$nkiGf< z^lI@ldPwnrVseK_kcp3^p!__glM}m!7K(67jMs9Ck}R3tU($->3=FK@6+87diagR z0Hob78swl;JCwBBr&(6l&2F z(q*#@(&{yI$@It!mL;&iH|Q>jlmLh zUZH9e$%bZ=SS(7ly6K%jp^B)?3oAG~d1pY3M`vyGIXmvV5me2TH1*awPJ6mI4^7;N z%&%fRzCfGyxrfcqxBH?T>CW_-;n5+`gTW;?ju95mGBL5rM9E!;%ti*HOAN@GDY1XD zfjVW(<4x9%ECX5-PFwMh&0c$AH}PyG9uco7K1Jhac)p9)6TILgEA2{zQsRFCr*PVJ z*ojpd@F=~qlb(q~EkT0^@@|n+nVJX^Lex~_=O6Lt1J#^O{7>N79uP6Ek20hBsln@Q zdgDV~eNbZp3^VxHti4ZhU=4LI21Ngt{yP*9L%-fe(ppC+N|FA7Fkv z22{@8KK1xd7t-<1U>@awCDgAYo9Plh@hJk(Bu@aAUIU|v^Sk^o@lK@+BcMj)2DodoRtI7C(Kjh>tF-YF8rWy+W?*=T@*Ea>!E`6i;!=O~yB4T-jh6(K$x z5L6+cg;=N5B5M|9&?M%Q0u~l;&f@v<5h{3d6k#F0*_W%2$#|)}1`g=2&1l=vFat%W z?E+D7%6mE19)7hn+T$#xfOA;1YtqbkbkRD3i$(!pkqRTO(K@kz-Dzs-V-V_`h1lWg zLl-_L!TBmgzGo2dn-EfDAE`AY$byv-r~1b-Y6^Mj!MXcR(GJnjT|gi>Wr~rLGVwq^ z5hO&`lM)keNk@aZ*`NMoHvb7fHmn&DH06!?os%EG?eN6PbyEUb_IfBNd!_dF?j=Kq zeK2&_m;EPAug&?};bDC>4;OwAGJ4)$-CI<5dA56GLxs7)+;~A}J{w#(cyM8%wrZNz z=%X_y`T-P|jCEDM=9{67jc%q}3FfL`)0G&lVU0E{USl%8Vy+H0 z_f9aasV=J;^Q^9JS#D{C>BrE<6jR<5^HWLYUP;>6JY9CFHn-G#q||)8)O@T|UsCOM zt3GC7<3^wT>AAWb&7crNsor$d#jTV7@#N0MRiQ2~_4L1b%q7KR$&TnRd&vEGb75JZ zAp0&ax9{@K_FR6V&$I46Zi|BZWu`>B9l8;Hxm4x9ojbfUOEX=nwr3eqJ7@ki+tyrR z1;YKpqLY{R`DuL2&4u34T~_y*JGIqB*O$g*p8QPiM?-3j%NqMG&$I9HPL7f5g1s|K zs(UXPt1t+DXvI|*{b#l_Jn0lZv914NR8r|dc#_#cJXx5A zF#3T#Dock(Rc$|^xHRNy=llRz?tZx3@T3N3TqMZ?a?ix&9)Qc8InBQ_47k?4w`J(C z@U9jz?RL-wwHv4p#fc6Y34dFd2&1|+d}>tem37Bps-B+#5vO%`3g6i{JkYL}E7FCd zb>HHMuQTdK`)?}^@jRa6lK!!4y3Nm0!fat33@NH}(&|}>qs?{D$^8{po13R*W-Rbd1rzh)#Lp3CXtk$@qT~RVlM4lbQX)|L`N+inEsfsD7`bnC z*r$ES!dg;}`l7v|frZgx1HxwlTf7%NuQ6!J1=mA)eGcW>`t+X|2Apm_0*iUb1s9Ww ziImq+CBS03F)yYY(_(_k;1-ipBVx(oroSxE6Bei|i{xl=;ukHC`mYBNSQ|z3m_>@F zIhugl;ib~Ad11NK6Ui_xesj;t!!@3J-Y6n7SpcHd=tPLvMD@X#f!s_}8Q~d(E7;M0 zqAqsw{LIRE$1CUA`W&0r8J-)AYl-?%qh<|m{X-ehCeQ&~M z(9TmqJ6{G>SL!sbfrjs#o_QxKjmWK{7Jx~j{nQhMZv9HB`lt4jO$DVh zQ<_Ob)+$l@9W*u^&lPXWAeywZ#r_D)C$>78nLZMGS{CAfJ>IS!X@wEC2R2#@mB_LvW%%2!S17q&@mWQbknKHHT-Q~v@?`l zDRDHFj*qo|41WptGH?!VRypX>-ip$K@Ag(y7N|M7x5I6--z?(RBT(rQ@-m>@DtID{ zRU1*-XG_MSsnOjlC%Jyza?se!O%82Wi@!21E1Pz`1eRd4gE^&h{O0bJ21opyv@j8F zys~Z!Tt96K+)2LdQ@jD@4=bwyI|vu`!Dk+aXLj&}s}GC6GQV>=`c7QzBqnP#kJ+*_ z`NYK26BKpB*a0Jv#sW`2GXP5Rb8=c*65225+E$!evs^%*^{tPeO!y;veTIcu!2 zoM>ZJBcNm@6C&2*#92tj01e{Ba!rQCPm@v;7KquGF|7u5*20rIdTXQ}9p^-Z@AO8t zzIW~tojC+pVE|B+2NuXoM#5;UOM(h3l*meg($8aHsFxuQiQYw?-I;Mwx?qXiASA>|l^8cc!6ELj zok}f+1#%-1Hxs9u&_QhhAc##Z#O`SOFeyp)IN)U~$q`~=K*u>8l}e7y0E9#7z~025 z=_K|>Y>0UHj@NN$aq{oL;*i+fI?4tcB83rUVsmR9M=g$?X)yztEe^HbDzpw}wm7z( z3!>vnokJ1VwRi&xQB(Y84mhyb82iSpvx4?m}6eS|yuWgjbcP~0gOenFk zO0$p#<;giVU=YUSm;xF=Qb21-7D(|EQ$Rzbh|;jKdRDL~A9X9`1tjPtlTKp?SBc71 zb)wHR1L^30srvX-MH*%vS4D}5N{hh^lEu4$Rt?jAG~BN-_DsXDYe% z=&y7M_cGo2{>6X^XbC0&gN%V_N+H?@K%hbl2)tBw3_zBfP9lIsz+3>osHJ$0w}8Rq zz6D^%ppkIRt>L2pq469As0(~)aE{GALo#3JFXVp8oN1t8auat`oO}diFo{{|vw7OT zFFc|tGLAMIqAwDFc%yL^)RBzakbXWqv5;4L+CEQ@4wm0Gi(GXkW!& z&@+RuZ0-#4yR6c?JoYN&%YkKypCW^gOO#;c;h#L`T>#B|)}^$*ah(TdwsSvC@?4Ts zHM~wC!A(=!B%GEHqj_$C^a(ziEw#<0^a;vgHFr_gpM)?pwM{Astb!IP!t*Ou5?Fk3 zP%B`m2?nC*>2cBQvJ=y;V?d6GTZ89ROwYwXgOFRvx?7l~qrXT{I1Y3B95HnOpBkO4 zG7Jd46Br6amtCXfS%4Gi3R;|Up!Dydh`};o37#edv*2S3B@7BnN4>b*GbHzIF*OSl z5pau}b_{ddl3%!VH%)7k8Ua;@rGnYmR4}ErEj0p4^cz>C9O_H&0jVL*E*tngjm49z zRYhw-z3p}&l^8OqSTUgt?^La;M@Lghok?^X{lz~Ml0TgsNuaMPHNU|?p9^aM7T)b( zW_GekfrTo9#~uT?y?0zc;+$ZA(A#bTe=j=$<#zqzig&y1dPm8 zi9;+NQ*Djy$ehGVpwck+&t|-svJ!HJTi$q)q=}mGV)rW`TLfir)Ch%$pcYZa+&R|& z5|#x_6>1X)jl>!%&QFv5We6+u5P-$5-Ny9$bD!Q0q1WG$2NVlML1F=;en9GKh` z5wX4+qYM~BOW*tF)6V_y@stgisGo>;W zp-Ztwv#z01PCv0Bt4wuKq{Pb_B$27!(#%|ba{;LZsChRtuR7o5pjEX&)`z84>pmj& z2ML?^4VL_xG$RHQ`Px*H$cNH`EGVs%RvL%{;TReS+fL-eqaf)F5XQ|n9ZitegzP?4 zzA6+bWWEyR;|BnP4s@KtC0x~j>F{1x$l+&^>IkehFgl3q93%w_-5gDHMHs6i+!(7P zitVY6;1<=oIs)7XL{a#f1|0|%NzDapE3NHwylK&BQ~gI(9?9ve*7C4tznC0slBH)$ zS)l)~nzCTe9g>`zYF?MU>exEjC!4Z(E|Zwc;{fLPuT@HCi(PJ-(k6yoEh@D;pZ^<( z@Z}u^rdmfWvmc|iS&B)*r1Z!xS^F^YeGCeE2QRr`yPB5-Lx1pM18MwZ2|@2NI%1eI zCz{BhZIKa)5~T}~M#YqzQTs#o6Z=;O9t|4#&cwN=-`eo$Gt*7GA9<|yd5y;hZmr9A zboyW49FLiv#9uk!pnZ=)FxGOP*oY}3*Rcu$hE z?KJI<3{4w`og*`2XTM(LKCUP%&2~y7#L@Kr>+1CqQ}d%2IcSeM=u2^Lit@&deLbLw z5aeFh?aWJ1)_5ZF)qEb1+8G2fG+MWOp{O)grXseyrLlTFl(r+}#P5)iN%v>(b#38j z0_%~7Rm(QEF^qwoehk|f_MRB{bR`(KG(X#kHsBj?X1)nv;hR!szJWR$b-vLf-%QQ) z(|$a8{&CwS^6=O5Gd{mLA2@?n^e?&inIaSiEM&RRq8TLMRCLcu%0k(|LRgDrqplqm z(u;W^r?M<$KJ!9C%*wcsYFoF607A^lAb^pu%so77>gTlD?Y{(3Yg?b0ey5{rQN&0t zkf0L^iH#l5G6*OxO>8tRA0h(<2reuQw*#1<4i+M6xmq=#Gmccvd!uyDWlV#2~*i(HWv?bvkR&U>u81Gd+6fhGOnbs7TnE*B2Tk zadrc%`$hXOC6WWSD_1I5NE0C?$V-kpVaRDXP%O>UMoCgpV$nfL<4~Dc(uav9$wXAD zBd7sf$6^2zmd@&%3}07kLQRk()x%6w?A zD-0pY?PCXX38;~lsgVzP!s`#?>+#pI@Ot+S^eb2uO@c8c!yGw7@fv!Y(G98^=0#~6 zXSFlb$HyvN!wug2ZD1x&Zt2$<=KX#!v?M5OkQpg{ z1-iryjfP!r!UDlfkO+(gqlK7j_L!m=8SQ9|uxp67m4(cPcF62tRsCwo%O8#gKVcB7 zpWwsfa1}HA34K`n1hSG$enJeBR-S9GpRmz}I^(J1p6?I#bydeIeL#amH(Jv&{6c3i zhzW8Asmb=}>pLM~T zmogIfwOe@-7RZ`+*K=6RdkM37pTlC_eVE<21SXq##a=hgok>w;L0GuP!fFy%LMTx{ zKMuu4gJNR|Z!Ky}ye|W!hQ#(nYRDg~_uW#@JpJAU_iLC*4cl_mJvp7-o}7RHSb1_{ zZAGQQ8UYY*yyegZs`~&t@^k0Q%xT4(m@1^M{|rPII9BVzi%Kfh;vk1Ts)cQg8-{gAC}l zOgUGMH$c?ytF@?89HDq44Zj@>i0#8_xgpKXfX+5BJAIJmRtJYjC~lYgjKQ{5-waFD z0p)rs4Yq@AVu19Tt9<}R20=^0jhl+Ka|;tWeB+!PRV@A-8Xy`^LLylmP$d9}TI~vP z@uAvY9Z)q7WFwRU}h&RL0v^_i6=nfe2XX0#OH&GBOncl^KFxcv>zaz z0K>aM5ErtV2lH_j^FW{yCQOGwCAP7<5m7#ajp-TY@UVWx4fX!flXS;FEX{M7-RRME zhsOWE)!EVeB9}js=kEEx`hG(vNd6eE$&Suis&_Ud0D7QMd4T-^pf*9f+dH!Y$_l=0 zX>16^P5cnHTW{d!_ZY-FXu}N=QD*3*V+=fwEfnOd`^lp(wKEhSf+y!Dcg8&i%AEwT zy@2jQWMZVID5mYGB0Wfy&4vn=2di#g0JyN$(PVht(G-!UQZgZ|w(91MSb$JihuYpi z!e@J8pw7(V#TFnV5JBN-m3)O1u~3SZG|&(Sd=L}|^_0bL8;T&&xLsBW!3HL)q&>!> zE(jE1Q5W*j5};3Hpwg6uOt6#=4RIjgMc@F{AlDE_E?NTI>5q;a*z5}dh9O*#8jI7_ zBv^tpHi0;@M4_!*tP~E~4IGf?&;dbUT-*@HDp&$DSBJQ~)z{Xr1a&_U+fdEt5@3VL z{U~8^KS&+GXRcw5_2VEu@H()3J{>2JD3l2~<38G2|xFVioHmB1y&f(50bay~s_ z*wr}vv33R$m!oH4J8_}I6ctnAff_4ZQf zVF?{BZ}dB{0CV$7OGL7$7$ACMO$QTHY%@2{hf1J)$Uv=9f)dahj8Em%hIP+#H3n#l zcs$te-Y zzyjVWN)0IxAgLmP2^|I~wrOn;1@9Ot1P(ZunZqP4gBfmTI8DRuF`ns3KAC^6v4Imv zL4?fOJ;xV>(g0tvMK0^57V+n$K+G-inF$)3-jn);!4S{b z6`LxA?`WWfia5GN7`&@m#RTT;Wv)$96F;KC2_r8b%-6_v7so~&n6u4=JS-^>u+GC; zIT#R*()vlZ3W2)}L%7==oZ5=trNJpvp5v}=IG|}k0vkw^@z*N(9K-+(je; z3kd9rfe>q8i-BP4y*jEykO(IHP!WkJHm~w4-?y{pEA8@EZa9}0*XaIUyHxjwH~sU| zFXuMfHowiPNCT9kc{16Z49D?p@Tm3x*zu7b$~WK(7uJmgAFyr5lOvuix(y^hCT zuxzuq%jNeZRST6ode$9T;aKVvDs~K{umT!mTFLX9saoeDR{>k)i|=KofudnK+-D86 zf?uCOCW4w!WupbN*Ta^S2c972D2#RMPZF~^8Y2^}NW*trB2>9d;IB@uW~&LzU#bA} zOY(i7d~8iaut)Csh`wqS(N|Hv55U(vX4I#Lx__IP;pVG#uhi=OP8jx^I(9uD45bI& zP!^S*P_*Mt!ncC4d&%7*;_4f-MeM?Qgq{p)gIwa}5ASB267Kp=co9d zBnrhvB*#hcUtv!}A4tx^+GUMwZ@_&Qqo5~5rKHOt*ZPp2H!*u;QOri2vq1-?kP0V2 zV2uS}7r2iBR^aAaj;1+kB@SGeV3$22QGm3}kn_Fe3ax+jWF!WBHv9O{v<4~0R`pj= zut>PYlGY%Rqe>$f>e4esj-!9v0kHo<0D)CP{%;gou^08hOkqX9VNC zSqnu-rkJTvQx+UHSF5$9o5l5B-~ubu`{qZhV~S%O>% z96kW`9K~IkVtNu{+ojO3zMQR6zN~v3OT8^z~SVKC0g;Kgu9A%RG_KBeOa>T z9uJ4(={^*9)iaffVCak+>}!9{274jm<0?2bdvRyhJ*h9h3yEjTnK7byfF+VWvX%q# zIIu!?0}RoDSe=EZV$rG~`}Wu~!#PTO?8SvOv>xHt- zb!%)skNYjjJQM*{qA~!wBWQ(9G@KstNOoChE-E{pdMgDb%5zmjSIxrc^kV|CV=f#%i33812mvQ^+ZM=$lBLBXd~EQ0}UOj zYR^UJlyC<_y{Yl{gZ_pwaNfAW5st-)8Qc&E93d)lkU3fb7R0K_1c9&{WId9yOsFfn)O`LH!;-1#>W2w5RmcOYt9zfcLa7ph!C~yF#&t?xm zk|nar#z}o~02u)oCoW{uz|ay5;qgBlVX&@KwEYEtl$H)bti;9bcF7Eh%$a279;UqI zfFbL`9P1VUq5^rYD+!+$m-9ZvV_PM? z_$Yi9=GWMnE!~bzr7Hnb3^EX(I8@?0s&OVs?rbLOPT1J@`o5_*VDhr>0tR6zj%277 zr&u^v@?);g25GF%2E-Q2G0gREn5S3W#Xyqua>1X-AEz5|n6f5hMocZ;nDSF(Qz%n) zp6%KS@g56g2^p!ecwU%=)u5lEN*PX^P=Ziuus(nd1-&Q5pD}nOsZd}FfkL$S7c7HswL`*8uUYtaw z=Mz?fZS7N2pWkXX9I;?I8(8KrP2$4c=$EjW-P$mj2X=k#!(_STKxL8P5|zsQA}s*! z)(#4+92o6?qdM6YPt#OA8ZbKTC(r8N!WMh3s=~U#HNW$K$=LWX85>dCf7oC2)4m;K ze^L2{gJq5GTiS>FIMV$^J&z8Yd@W_@gV~qzaDF#H~gjKp|Dr zt004r)6$p@M>Sd(fJvQjD0BFty#Ws*9PPiY^ni$THV8O2FFdg`9-gYE?q>>W4Ma!@0r1oY>ZOaqze(_M>*eg<~L$ z(m9us!pJY$8LDqBj50UW49qO84;cDwF2D$VyY6WE&!h0=wC>~&;fepNhoc0yPrDvk zmkP0eX&>l~*c3+)zA_%JaY=ACRKp>SDVF;hw>0rBQ*8~6_zW`Tkd76ulZ0Wz)Ds*4`9 z4I63HB|sa<;CRDLiL0s55(XksepM zqyI$xiQZoRhUaZJ9rH)JkUN+Zot}vfBhHnQ0C`+4; z6P$m3L2auK?16YEKYF=?`6$a_#$<`qK#rNQxG+qNIE{r7M|ei!QQZA9Q_^E6&(Ex! zhcJPS&#~mNXYKBcyz1VzcVXCh50O%T#d0A~rU!tBX!CKUEHa!1O=hlRnt2Gz z%*naS1DF^mh*bp50W7Lf&mw~TPZ;nh)w3?8^+8K6z}cp@4?peWKQRnB4G&d41bxX( zj+uPsU6k;k`(p@YbOL22$wd1EItI!l3zQ-CmzJ^!k=I%Yh8qs-Uc+(_u(>}ln_5^& z9ANV%pZE&Y6F@YIu#$E{9Mw~`BR{ZpirAz8&H#{p8Ifz2`M1~#&QRhvQQO$PhVenc}_ z7&Ql-?F8w*#d~2{w)Qz!ZQC#7{I$%K8kbIvks_H9WJThrqo;z}460I6I?Gh~i(SmP5rh*vFn+-OWx==jEA}7YF3x-< zO8+e23F-|Cewl%e@JvTv$4Ld0i1l=g?w96b9 zMWT9AL9SHSPY!7c-`O}ku$=)4gc!n}i>x}&e2gXR(J%|vUBpFzI(HEE=t$V3Mx9!V zPx{^%8E=6qJ|H8xP^h|;uRDS&a!Q*Jqzx)Vo3Q9TiSCK}AIG9Zb&LiHLsxmcTIOu$ z=y?_lK;&P`$^*dwM2Nq*cpNLzXsI>?KD*JqmWm)>JP!R0xr56p57&4CE=9s|Y&p&~ zB@(%V!j5(DKA7Th5|y&U8KS9JXOze;Ut%xKOo(~{V^oT9g1u4c30uwrhMx%C>0}gv z#m^&q)L~c5xF|D*<3y+NrOC7e)#53jC^l+G*kdng(`6k zY$f9WgQZwyBtCq^3T7zYmhk{GfCCLMw4tswkruIuw;34=^ntikL2QKGDHf@L(we+# zlo$Dv6u4%B^61Q8L%ScTGZ{8!>-3b{UU_dLl;ov>Y;|eA$N5@#UWyl08dZz5_Jt=^go|$_G`2~{aS0&C} z$n#s0eKeDlAkDr?y%f%0;8BPs5(S2ifJMTo+;_Vu;BJEu(=#jXfH=WwiG!(-IJjGp zyEtQ^w?!P{LZaXhxI#{FM9B;AtM7W4f4A!vre~7i-cGef(&?&_!;~5%6*8EEwGFG_ z?h8nxv%grm(V76Y(gHLcORA5QLNEoVce4_rZ!yNicIM_tbj%fjG|kQNa2r!}OhQE1 z@S>g;An?M)XmiIZ)v$OTX6DfEw-_6d%m~rava)IKan%qHkOL`pNJ__Pai_g0e_IDw zaJYfcqC@N|kX_IK)*<+9c&B0AMXnqI$z?Mok#9+dNa{5?e27ep=Cq;rsCu2Mo~eSU zZ!wm}+bcJ@poCQArj{9631gBQtNKo*j0Ax!r2S51#D}8{c{8Pq6`*Pfq5%=KdbJ3D z5cVd}jJqBIK~+>If+gcV!jtSQuoKlG;kJx3%fn*>vR%Mk`W5yVSR6SH5dyF+2020y z8q1I*SOZ5HQVk)Z4AFL0vCzHR-r!L@n`|ivgZ%{&o?XwExXh0D{Ee{Mn<6(A19 zWQ&1HL%=pwMsP+qt4)plQZjPpX5VtEIk07)tG=Yw*PleHT zuS6_d?sx=I#ewi#)mDp85DZ%^W^Z=Tg090e8z#vDCs5BY`^}=5?2;x;A*u}(`hZU@>(RDiY#+7XWf6}&EkQnq~Y(SmsYft?Pn@$QS2!Sqi7y1@o zgAQw*7EeO6H>v04WVi19eocQLNX7;A=F*y>2 zC|9gPn&hdz`4>2LfNKJ>d}m%lz}mPz;g5NS+x)D#D6|8yU5>z=exjCFxzHarkR~u~ zKxA(RvMtk?T-Oc#Ic3SA4V_Am!>lb<69U2c(4&wq{#$4Ps_^H zAa(xKEvFsfHB392nR<~Vx+bAT=;)v1!?GDG;Km;82%pEK(7bKg2C91L@gq>IUQw;e zYUI!kmAYGcbPl$RsOqaEQPo1KSqwNd6I zITsVqoWnLeKFDOJ`B_&PNb^dxU6j&1#IY`(KY|@R8ik53QPH?~cIl)eJnRi%@M)MD zd7h3YttRYr1xV8gHCKS$NAqD)(RZQggeBIc?V@bXgJvn9T@;y!?EV)?tV`7?Q}-vf zc1@q(#AXxNI^?v?J=y%;AHOiL+~gz&bV$t(vUZksd(LI?-}3{Y3EVW6{<~V{9!EYl zy*^@qYMn!w<`KV{J6%Hs76%1NEvJ^rax!(^Z0$MNWUQMPWo|5+8m--7J{$dxIsfY& zX740(*CexNk~u!l{8^qkF3)_VRQpr4`NwKAd^WC`5p%QD!Cb#J+QD1`-LP7wLe;=m z8Ox?dKV1pBqh;#Y%nu#hSJSVw6N@wn#*_@R>0H47ML92XeWU2`J44$o*tzx*N57up zuM9rWy#Swk`RPhL(DAE`Qs>_IwBzu!4)E);!}x+e zoT8w6wlc}>V;nBt4n+adr&(U0yU@89ADuNM$~-468pa4`3d4{+@FnfJwtJ< zbTN!>{ZA~wnEb3uSmSi2EvZT5xOg1Rb6d zFep&l`9!RPFOzkkfPg9JxT^a@P!Lkg$5)991xDbP3Wz#)e)loyxm+?9^p6N1@G6MS z(pk<9RB0`R;DH4}S0WER&X&9yox(;ZrH~2OjHxdnhz%YJYOmNRo%SUW8>SdJ(6dcT zBh#6m3CxX;bD6{jPh1g2(DFOdLHfxwgq<*CgNzJ$C{{#}5K0+>Ldfm509Tg@3Q2Tz zzk?8U4O58v9CO^lbgm=`;h92IJP1U!qozhiL0Xj&L4pIIL!5?1Xapxo3II`=(aD{L zY84gW2@OnWWZzP*ppcVt{J%CDje zV5hr)MTk-oWEz63NUOVO0g-T^62T%EQW8wPJWog0VyI$gd$-aZMS$@EOc%p^t9^YIgG#pyR!(hL_x#h91hP=Uy$_>?^kGr-(=$mnB=dZ! zFH_Huu(Cd2v@twZ?Pkgr9>;>4#FpK$_)}ccj&rLmr33sih(}nwSAv)@b&Xxxu}c4w zPcZ0Lp*MgeSA;1&3VcJkJlnb37BHd-aA(27*NpHS%y)#fBlVWRlte&KLgWI80C%D7 zqdkX8-eV|&x(Ffi^r0sR;|Uv-XQe&@53JJT6u3h+2!v8ha6!$<3 za5UX6sdY5vC99pKpo1hITzGq9OJhSQZd|ajpCHyjTVK`SU@lcXEK(0ZM+00v($N%= z#%;juS}sFbr>-BuZn1s=$*-7xC=E5;yjfPbMiu_7DFz1L1vyl30t4Kx)h_RW>fh)FqjRO_n8RT_9i~oAI+CMS#?$&!i_@ z*qH~?Vt|a!rp-JMQ+Q1BKzA`!Pe^Su4@6*akm|d7*2Mrj&bq*SmU6~Va09{5CMR6j zS>gr(0YkA4Q+!N{b+TEamSpCXA8eq%S4VCd3mDG2K)LZopIW{Ih3g`aK9f7)!p?FX z5+$qFA2Nl=ftfEv=@b>Zpg908CZ~QfVWH3_PaO-rXJ=hV!3ZV#X!>&}Tp+BI`zcE= zSdw@nL9%M%jkteIYsuuLvAb2j1u#OcL@2Pema*+F$6f2Md37NHfvJ4SXKBl*#v>NM!1?fftfCX@0!MD+~ zM;68S=-exH;IUd`1w!9K5*C|IKz)FFWfs9Bur}Y|DBrLEO7#JcxM>%1U=YXn3ggHe z0aKzuyCP&kZ#4|a4}c5Zv|BQCpg*w}12#F3ZLqNK8JH5_EE+hr%X+`TqQj81z&4E; z&{*=IhiCv+tBAcD$yc7E;3sG#38+Et8B!DgkZJC;W7wI89FvtUIZaF2dYOWzSRkMZ znkLBPzpR5rT0Uk^fdGw7Ea#g`&TXMEpZ4yh{E4SIlEwY-LHtD#yyvA1;Bl;Tumz8! zl%YN1K?7yVaAe}TDeWXhib?@88Y!;z9*p5$)c6y}kSPz#URTG2j;ovB|9bFfh14E3 z!C=uE<;q$krL(i(d<<%jNR7Xm7iTtah&vec#L*Rw+97M(j@@~n`>GASJzGrH{-4XW z?!Edt-6+?)7f&4;(&xnEiK)e3Ey{Izd9GK_*r%qAF6hu|(6m>UbR4+5%S)}lxbVrB z&2wfRdA-@R{!=zZd3N$Rld-O~>w87srBiyk7)G>C9pet)?|!N26~~vf>NhLkrOe|Q z!A{NNcRyj{VR&g}{5+2it&EAy3%5GMOD=SgypDSq8I^xPQL6VSaLIYl7Rz<9jE6d$IG#ZR-D|T|YFocjbYO3zGbnzzo~C;-qCiU}-Dt zSlS&-OH0PgxU^%KmbSr;rQI4;dwntR&HO(D#iWbRv*KD;L&U+1Ija@<0{b@1&yVhAFZj$IBJty7?c>7|^fMFAW8+jj{-OHq+Z7sBB_ohY;w` z;JU)1di|S-Igv~&5kKB4e0=Z9FP>B+B`0pR+g9zIR1}LGk7{J;Cs8vMIDbLz_1-nS zP%S+;v+JU>{acOB?>#m!<{2CRZ1$_34B83>V9jLIR`_`GjwT*Rw^zNr&hzx9R<0c$fQy25YluukxFOh&JZi^l%p0B%Fo#%Qp+io zrhI#G$-(zJHQ!p+=dj#AXSWUp1*;v!CQ+sAiiJE<-3sKf+ZEFmCUu%*hk_o(M0*V` zE2DkhYLO{U!GIb6d#pqT3U@yro!msGI=K>4b!5_>)>Ov)KO&;W|FdOGgo{&i6Y3QP zks{A$Gb-ef>K=eSJ_VbXVvjl%=_<>*iru5*OQP3B>3Xrty|T);kP9hABp+Q0LHkK4 zHMBV~TVh{>`V&NG(N%fO0~L{{+y@TX4pn8X2jo`5vzb=IZUWfUsmTsqMa{pOnKIg; z@^!ZLDN%-nUgvuUx%&haWnJjus^5~Zq|1f29vkZWwAvi`Ntd%RlmA)02!3q!(iXQV z|E%_Rd9(5F@Z+IRu4nb$P=9l6{pjk+#(hzGzvCIYQSOI&H(LWfpzFRVo~=A*9Sv{^ zC|Y@<_wkG;V<)eT8rJ{NS{Fmvm8{mrfx|rD%TBgFbW`J^-3C)KzH zFMq0eWLVwoWsAaSsClQkX?tjwL#-w}|8K?1qyGaFi@cN(v-=6S za2H;!^kE!-?xmD>QW7>&!FenMPRP`;!LQWo` z)m6RM22!7pdh#;1jL_@qs3(i@o^0@3JYy$kOho%N{|E$K>rPmI1T>GtsN;(8J;D_- zp(Ga{qD0+V`zD4Ras~`<1-odEbHL_q*yF&kMQ?UES&X0viQJD|J)3)I(q08!*J`wg zW?zr_ESlW26qk|)S#r?<;2Au2@hHYk7IdR&yi0>a;%f{_#2`E78HAPO!mZ=2jCQyN zY|cic9qtR8Lu8MOMNl9b6Wd@;!b*18r%@hz(c^D}0lP@$H6y=>Jw#xA@^mXQ5rRo* zB?2x)WU4~Jk^+ZBoa|tJ0r`zGYvq?OY>uzP9tffgou0Wc|)2#_A z(3jV3luXvrM9E|=SbtO~gun`RYCYn5D6W1hUa&C2dKQAh_Z5Ih3Qk(kaDoURUFIM0 ze-&gEMQhy&%a7Ew@lR!hn8sM)H*%T<;x;?1KBKdf!tU{D*!&2T`VLcWUoV;5JD)-o zw*B){TVKu0Kbv8$&29|VHD0MO*Cv<^jmcVLl}=lC?TXLf!CzMAC1@K?kjDZU;_GT3~K-XjMT# z&(tyFjznEo zZxy4bTsC=3zHF+TSLM5N)}t}8!F(*KYdTWcfQp+rM-FLz6AYa1FnuXhFp$}eDdP@@t-ZO%0JM& zU`x+0G_PJM=$syT{kaY~6}}zkZrwF2ve!v+L8qDYg5w_KMQv7)2afS?MP77x^2zPT zzOTFT@S>nm9ddF{xsh83rG|tV{%$B4JJ9E7IJw}V0(!y9&g6psyG5RTI=ltG-0e*- z^6Wup$+NTmO(x-U3MK*1eqniG+2yXT3I3Oj!w-@RUcS;AU+!}@kX$f%Dt-1@I_?Q) z$g@{1C*yWI?@69La~-`kaY6FZwl6RIcyZNfZ+gMoeaHpji|NaolZokPk(s3L^Tt1h zXDuLax_*N^x>qi_G3Kw}Mtp%x~O&?8P?Gri3!!mgjokfJX-I z3Q5iY`sU?3(g&UKP7S{O{c)7J08WKhrJm{>}dDo`S^SAE$WJvY5a7E88 zOX05LaMQLGJ@R*6;I3by{h_B?+v?Xhep=SK#n36<;f}XaKfqOWVXaKV@$Z3 zWtSIS6TQB&@>G#;A)Pxsbb(>kPu(iW%YT4}zEzt;N044RNBhHt!i8am4}JiZhzoYB zmaKx?BXy$JFKv4*Og!_f4c?ZSe@W?Cc6rt6_=Z(EH97f*UUu}pKwkctE}1<3+ts4i z4+@`UdKTp>iRspV^J!wJm^~lM< zUt7XTiZd#M4pTakKh1@k$--T40LBHuXjlxx*_uw-^Vs(mE(Yc=L>ApK=qL~iSQPl( zv>}Wz^86mD-b&ch{CB)|?#PAH438#Pe|i#IaL4?RK9l9 zxV8M1_;8%fR=OagIs{aBRan+TG+xjt4LNj@g`lEuLsSM8NW~BTg#R&}!*(#yusBuLNIp(&1`jgrGC;a%d zV8qAYWWVt5%iG6>JoI{9!hdGA{cEQemOS(K=!b8_8$B-mzh*BVNt(9l!yB7MXPtPy zG;t+}>}mb@0oW|MmFu z)16|2E<4T~AbdH`Yp#>~B;T*c51j6_l>5`Fy|b>;>jz%*8;E~DaH`iAbKM_JS?v66 z!PO40?Q=fY_R_x`67%b$#=o8s-#q!-$nVp>jV$WW?%RT*4(EKizwhmI>HGS>)P7H{ zn!jlLSf9&&V|`{hwcHo97+!T_`dp_cFF9>J*(>#fvZ2YdG*6#TSTXv`@e3ZxUmo=3 zzr!ZC=ic|~K4;#AO@94!+UwlpHeK`E=YH{2kFTp8_I4_GaYXHl z-*C@LK`0~a0Bfi47_Qj3dD>jCGd794SZ*J0SulcQohZm*v z!sl*0)oa^a_nzDYKR1x0ae4kzDnoh$ z8LxI&>E(VsrzI}I(KzRM(+Jc2n6oTpx5JK3^GZIuw9tF#Q`$oAs)|nwh08+Sp9t|g z6W1OdlJ?1^g>Qt62G*;6@%@q!1>+t%9XJwxk8fVFIPTIy{Bi!G+V5X0Pu=X*W72_x zVUxRs6p~wu(!O2g6$}H|7jz~r3W)3@ZeE_CwRUzJ$C?Ss;x1qQzyuRT_lfN8?J%G#(hmG%^Rj|pc z;>VnZJ|1SZN0l$QGy!8Dm<>8wsdt81ZWH84bvsQY! z5&o?78%S@!rR=u9>PsLx$jB#`>Ru04G=4$kW&ATxR_^xZ z8n1-gsZ|SsD*xtQseh&bSQv*yiHAd!ys=_2cL&gs3{wA0c$#ID)xtCgC2^F%nsxky zKvd#G1_PJw;^svq3g0qw01_1+iL9CMW6n~->}k$FROOUVE+tcq+=$#lmr8gCWm3EY z3Al=1lvbiS03}35> z(iN6Pu83%pne>78^1#dSKl!*_i(HZBX8;X!zC-zRQ^ijO?z{4GbRY%?oZ)xR$>q)$ zIz+<4&Ue3b+Bog|OYXaR89~#WjH}RmZpicpbNJ_k-4WVnQWh8G)Phl{d@djV;eJW2 z@?IX)Wgqz*R1wZyjsKK~o13>ybN;?$rXDo!zr67C`zrDXdavB$B+rIlDiTihdN?E< zboswa;wr#M9u$3Ep0n5TmBKIj_zh(IbVT@>OGZM+!;MNZMC)I44a1UQeZf@zHJ*%w zj)xmn?gbp2&0n;0;)1$_=hQS=sB*Gg^b?lYGDPcN5)Q1#^|T(nWHqH^v0lf`T?C3r z{!}4ajPG@ne)L7=bP;8Z4LP;zfP>{oCguRj2Y9uGL+C43dO3rJa+%QsRo2FXy*~Xh zXE71oOE11sK7p#VreC4}J$p3HDZH?5aQO}M#Q26GC`Nc^O)c=<{yBp5?B_Kcc^ZEs zQ5pO#=%&11@*+`NP45NCn?OfN?Yxufy`Z!9KN0dQQNrjW;0$fw3qHmie!8c?GN|8+ znrh`G>EzG_RlXM$@so-RBX=*_!C}e^gO-9L5&vFPzH4|2+FDf0y(yz`bxs%Q4{mC^ zrEK~vr+)kAe1qnxdGhP4yvC5Fllc^^xbg3o)VS0Io1ds@$n73kytANax4GIQ@ zzI-wS2n|N6sKeXumkdQ}3tu9$CI6VSoDekCng2Tx|F3xmXFqkVfm1JmGC_(49gXWG zP?X+`+(4c!b1zWz(n>E_4o-yC??sC8!$$E}zZWSwj0}*9A)T_Vdy%56FG(k7`(C7I zul;ir7Dnz~q$p5EX<>*6Ud`#cziK@(00j%5 z2R=-Ee-k z?*&F4WIZ_=N+{h6jEu`EFtT)Ed;V{@naU##MYu(?j4@|3ao5c$GIiz zE-fU6dr|qIRbIY?YA55SyB7j}i)_Xd z#nz%)?mZodCOW=(!NMmwNNl}V5(UxrcAASI8ZqIE%2Ro??POeD*gq~J`T08l3FH4* z={J_g;ug4X*d4KpKz@pKo(BX1uujBDk(QC5JmetFGCA}Vm!QxZw4+18 z=h5XuK$I9L@?u;9{>8WiQov8{UR(kmp~WQ#7Whi(UYrLH@1g}N6nIkUUQ|i^%Ai_F z6;zVay~vXs+H08{@feiuMV{mqT5e%v?nRyyNQXSBw5XPQQy#^jZUCkiJ`7@f~E`UOHD3R|65^yH0wr_wh?E)p=p|?qrAb)9D|0x87eBf_c9$ zdxdX|05$M_Nk!iVK$YA*LQKOl=J}T!<5us@fO~ocMtN7@FO?8v_P<&2-FJ>Z<>;qR zcZyl@Ml$}aN&aqe){#x)FFMRANg|(NpNEuGEW7Qu;GyJgSx0`XJ#nBa5AqF!@FD+z?NP4ld+&J%Rnrk8tqDd{siX08#XwI_=)_UnRg$Jr? z0nj38wgt+^@_a?Rpf3SHL$;U{xEOe* zG2L-S56iFfoX(Bz-1Y0AgBS4`mlFPJLDaz9@NnFsS_^a;hR-9SS(NrVMFLSqB&Zr@ zP?mj4u{_ANOxqwl$fxUP6ih?e6~0Y!ew7F1OwrtZM6xCb5{<7!ZM?=VEDlvFqN>Dq zMh}4^v8d|qcW`ugGNOSPhwwPrqV(5KSLJ*bku(25Of$r!*6%rcJC%bbw{K4@;jq1T z1N(VbOaS|ft9O^sLU>O^bgSVLh(`iXcLScgT+tPg(tQ=5TF}3Pc^0%(<9>z*H^b8e z-I$9$)eD-d zz!R@go=86lY6Q{69i1Wy?-`W1L96F6Rlu%H5hW%U*LhC4rVw7G2$RYafJI2~3;17n z*(Dw~t=z-Gn@Cy#fkktngrQpCJ`@Z7Iq2Q~Uh&uA$q4G9xey@8ip?MMz+JfSJRWH) z3fsctjm;xCWDLrBdAO}bRL>f;^*8|kl?*q83*qp=TalipQ2nHO$LxIipBjYIkhDx6Q zmSD+3&Qb}OM6dBz0SF=NT9hQbs&)GOcpfq|TojPKq8U6Q3KBi&mqrLN*8S~4wrhhB zK&$C{Rlxdyz7u(n%n*N_hZ(_6@Yr7K^o=PL6hnIQ-~Q$hza%IHt2&Csi5;*$5~wYp zut~zGfi?W-Y>}IJytBFf<+u4Yumv)rRNDs>A{X#Wiin4wfOsf@j2JcX11Bh%5FaVs zE1n6FOI74{Z4e@r$OSyQ1}kup#|eQ8cwi5>fJf7i3nYb`>Npvx>?q`-I{Pp-RMLg~ zfRH47t)VhL2SP0YJ)xL%k_cnlBcPRFE2Jf)G}LYQr`%#ReK(SnU!UJI@Y%bd4Z##d zFlBnoTpq@&jM%{AZi^~5$MXncxNo&g#UlCxO1Po`pCL&Hv*3!v?h-r`NP5>WNx)pC z>>xp8DcWfm{DT0r)(SvtYtgds=qAeCFO4#y%Owy71)`0$ApMPrq*XXDyH$tWfaxSCT7<@*1C+Qe_dF88^m zH|=QfhDv=X;GBNVZ$Wf)$~R#TrBs!zE+^P$iZg_|L6$$vsayC^vLim@JNgM%{aD*; zUsdBbSJR-%zZT$796_i%mfKfA31Bi5P$R@y`{JyUTg?jU#$?O`2;X6RV>O4yu`lZ*J1Slu;CpB3CFrya}1mN31ikCzajiOONBcj&=A}Ub?ED=EkG#1NW) z)jP-IR{*3tlYUo#4DCkk#mK~UOk(%_hvwD@q}40fjL4lO zedyiy;9%~^1jDa$-lh#tLwe4Zpx{P`=XzG_BK<%oAo^+~tdZ38 zO$;9S+V@XiKYbWi*_WsLG@{#SX<3i^5!=1w9oLu&KW1jbwSDKaE8?(K((~L}??1&! zUe>M?MSZ>}CZsF#U(UDVJlbCf_mWRYH|x?E@6rBxxU{{wa$H#@knZZORgi`Q@TQ>h z63gc};Oi_mh^Sx z73Gset8WS8EjhAHj2_Dhp+2&Nl}v%(*)9LH9N2kSVg3(@`rRcmTo!_^A`PUz&=^Am z^ES85%YYL$ig6cEO3Ae$27=0KAokJ~n%7V%nVeGaDKS3!3W^eFaWOYV_wxE(k4Flz$zC`_mm>F>{mBN_-7k}az-`Yclp$V|-V03Ezl$t>6 zN&W+t;LCgiI0I27RyJVRSg8&}x$*`BTu_jPJYlSv%y4YuJfGgY9$vMzjhh(SP=x;r z+!x!W-O{@yQH2=^%k7w=}f5G zrL5-3Fwi`=&ihY^=37tlAG?HJ|D7u@llsWwv}^PNo<%{Lm}swR>m-FgiHA1M-~G-_ zj1=rhRIeUq1#}*?k;|+V;DlKCaI3uclomd%Cpnpee!20mr#xIzPb|tnsqN}6rxp_L zd^0(M+TPp1JOf@LP5q5qnZXd2>e;(Upp4VL#$YuOfOP?OB~q4hF@w(i{w!$EZY)8_ z6BkG*z3wlx;(jt-_xP zlK$*aEV4f&R1HU%_L-Mytxpv8zEEixK)FnfMO&&KS)A5IP)R)1HrHreK^hwf-s~~6 zBw8(KPMV}>B90zftHlh)_1L>uNd$6Pp1y=sYYYzOL~mwS!fa5_88Dsu{aLWiwqyyy zh@mllO=M|33&fZvmhSgSpjA@qS^gIpNf+OLHKqbq5-bOom`C(GpbL-L;KvT%w=Tx7e#zFR?di z9%wyKbMK8vxZ5%#Lj7^c>a+-1rs|WD)vj8~)%*_CBWu4YHZOPkHL~c&o5&i|8TKAA zA-Syv@I=f52Os;!-lwAljazH4i8gsdda00WJ;^NV@mqwl4ei2qT(B1Y?FnwzPgV;xjl35NeL3nubdXj+`6Tz&0h z@-Hm&kYlDK9citHa;pu-#CpYPYAE`V_7{YM7fIs#D_{v_*cFGm_SNzgvF#L1z&S1_ zC1kkfX<>wZnU){yDd%r`YKwfj5N=(7r>h{k+G!}H29I|H){=;dDRGse@udbW*zU_u zuYn&?F`I_+^jldU5A#aR_`BB4?V@N3{JU_g(G0cLWljgUa9syQlWJ09WC<$D?<`7& z`42C`a|}^ic3ax?3RR3#{liS8e#9~422sxljSX&t-cj0Zalg+s48l#xYIiNzB@T$< z=>inPUIz+qtvyk?bXmn&gG~()4~8u&NXr)AKij)52?hr8U0-T3|G6AuT8-NT3*|UN zce!RaiMLw-pyo)PE*&cT*eAEX+`zg20A%Mk zfQ*=pTK%^aVuQPT%$&K32xp~fmwlg3k44_j4+C{=%z_nBTeN)`?jscuWvnd{X#GIs zLQ?XdWd!70ITSJ^eQpvx6xNxFo8?hUg)E{|}YawGb2kMm}ty&X~-dOklN zNnyKY%K{7`H-41*Qc&>yYyV9($|o(rP%jSo%!W)zuvG{vEaK+pNU_0|;33%*b2}(q z&SF|)s#u}0xFU+G^;5dDZZ*kYYzg?W8zc`jJ`Ql^3gauj;$2k8fzeMn`IK^~ZZ#vl zmVBST9`X)wOAVtH`a2`e7F{j##C2N^db2tVFfIWc!C`G1%yTHd=)ZepaqT*L;+bzp zWt@;*HHU&3y(N+zkJ}3tz629saY=xonbMlMiEhkdqv-f_(%->D$tr&WEu{{N>;7L{ z;t>H)wYu43>i-qwZwa~lrQilaoedFF*M?IGwPf9f2dC;(51yRJTinFb7*$<-0}Chw zwC+c+(Vauv;thwo%V{P^v|7kwaQ?fm(Xm*b?v(g)XC_XZQ)+@Y7ca>$uxoA|EPPu( zC7ZFhUBs3IFDf)FJXjRxe_K#3;Z)cn zYk*Eq79@?6Vwi?U9Qx<3LDgI}_+=>zuz81O{};+6b;X~-Wb0yF)gQI^L0HEimy{*5 z^DZum_~hk-BcdJaEc=e#{CUhjZd#95CLg~1l~GW?V0rm{ojJ8Xd1N)zEUFGx=Zl(S zM9snchSG!S395!1_<>k{LkwRXEh-X4@te!}!IhTHDI#^cT5hQd6RA`9^)YJrZPP_0zoR%Z$7W)Qk11($#fpd%wVf)y}_0jxJj*+O+Y7s^rPM zh9&?nwwsp&RAE+5?k=}){NhQbtKSPiF>0P=26m{vmK|9GNX7GE;{d04u@-jlC9A!) zj9l`r)BSkTGzXt@x=($R(Zh+^y~bbLn$7HKja(MvPW-70{=4z8H0hWhxd9dV;>QV> zm_6>L*G}^pfMY)V9w|-}mtg6x1$Amck6gW*+PQjyt*`+VY_0uNv9)%JYd_edy5==+ z^2=)uaj=GyWCtJqOD7+GK@Vt;U|v}a)Gmz0f05=6img0#{E5H@7=6{D=X#^~+YE{L zu-!`1XS?NbaOQzPtOz4ABS3+AnigyD=3hQklw zB2T5>I3w~qp*9IgKsmMhqXRxBYV}5xEr@)3FX>x56VoVET zb8rqoom}IzT^SxFo<(e?MkO>qcE>Jz>`uh~Uc*w4gI}4DXh1FPhk(_p@_FHRoi)~j|#O_5M^Sw1}s$b&NgQv=BdC=Pnan)R{^G4ySll4 zYx8!5DH}&3nj3If+J2le9%4#6UM@sbz{FZU@Tc!P>;Ynq53`0Lk9$~HsbWQEpGQAV z=qvS&da8a{qnh-)Q{@Au88to!aMS<-h*}_^>loA)^a#=e4}3}ime#F=|6PLgj*R1u zbN?-ZvIlAJb4BO|&zqqIj_IefRhebgPw+CgbzRK%AG&LC9dZr_-^YL;)3GD}3$eY2 zHnv2|{t8%Ryrpj)l>LsY*0n#Gqq;QD@0)RrB1^+e0OeK6E`6>=H-AzxZ?M#tf3J6h zLF^^V0XywNqqbbOT=}zIsKc|UCljNSSE_4QIzEE)pvKJhFGrT9!JpTVblm0Wx8)+I z#xXhI;S_Dht^y7b_UABh3ovFZd@SxqP;16I0&mh#pvRSH8e2z<9WjAFGqq+GtPAwu z!yi)Lu{6>E^&tYGYVij&;sYd5piC2?a2BkoCMa5Sry+qheg5ScL6kS69Kl+1IBB$j zpQR@fIDwz<$i??3s^LVO{g1P~Z&t330w^%>q`MZh597N}A6h8kLnr!H0sgl9?_DBz zfguRXOM7=Y3+2&Ac5+(^(_A<7%?JA0XG2He9WC|dUA)NaDL66s3yxJjNoVbp|SR$4}mS9 zf+n9cXtpqunJ*n+H}kuf=yCtt$s>9kJ0*50u?v6rkQYM-cl!BzUt@5Gycjy1*`reo z9q$}lbH}qJJ(F)b{!cK1-EN*jbQb&2r`~MO+X*un*B+O~wa0NCZpb-16dlVAk^u2f ztR^8Eu+Q4ML_u?t*MC#|XSx_soh%hZ5nKl@>DD7KX(H$FG6-d@RzY=Y8gIE1g?G9b z-(!l4Ik8;KX*~i~c3}?NQW*NQhHc|Jq3HqSS{0FVcIZ2O zg9sKs~>}^JqY}-rOy3_{kJ~=y{Pr^JY=W; zu`UPbCd6*ffp21XIsDiDfILPPop*`C(;30AGCZppxzeTanryuJLzl(m_L#LfxOIg7 zRC;?sjs>3ecsM+R+b^J+OxIg4M}(4TEX~z)9L9s2{-$gR_Icbuh>&8L(Ah^wd8E<` zK>#sOJPTkj{Fn#372|g@M+MNI%G0!MDm3k%l?0`P&Pxsy%eL0*ug*~i+_%{6)ZYfN z&$WQF%`x4$TVLwSJC2XfxmJB+6IZFQiU}bNt)upO$}8ns*BGdj0*(N`D`6u97+(UM z`qTo9{W47mrvunXsRRsG3U`p(T0qPr+FiHex0i%SzTN&xWl|Ez+T5uxf z#O61U9AbRfwaVeF053j=SrJ}@j@d+P;Z$mxc3a5SU-d3fe2rMs zcdfetQU@dvPOL<3sH7H@@-!W#Q3RXCKHWyrY73+@-LlQ|@R+C}fI!o&t$=hIGd+8r zy=mxi?pcsF3AUC7P%jMo++E%;ikB;WX`TgLYx4u(L}9-J41iCBv%bikrSsNT-W;%{ zb~f(!U(`ZL0)Qn^6Ga^1On~dw^EHCW2nJxAtHpd73@$YeP+1R(Q{YhnLfO!Kgf{|D zLS@1Npk;8jKoPm*Z0iY!?p3tyR2=_fRQc6)4%_RTASKlo07;9KugJYNz9Q*Wtzs)fcEMk!K z6xp7>ZR_*ra)S#l@c*5g6_{3Y2nrMU)i0)X5E8O4JkS6H+|HhD9elS-5EF7+J%lh} zQ_lr;6G?wKbRLo(xnAj{M{fUvY-aNY`MgmPXUL&xk()B>o6+ zhnp08=+1m0ryuh}cP7DENOg(q)5=r>c~Io#pZvaHAckOio|vk(GSI1ji&n_BVNrje+=Jv z)wrb`g-(weW$&YzCydHu&&Ee54=YQL-=2BiOc`8$3XbMpLj^LWdkUVe*G}<$0cWgu z)~+{E;g7CT{zMh{K0Ju^m}OBr=ufXdAyfJX?pmkv>rYWfksHCcDINjA{~cfv-bCcI z#uv@e&*+hoXHl+%b-?R?g_&N+l=SOjk*xljNJh6S5HPMqU5y|XdLsQf3vND=uZybj zxIy9sFk#QaFjb8a>2Q`) zAqReCii;cU@_QK2_kC;?aSjG4{#|%igRNqe0_<56>spi0)+~%5xj6azATgHH8RfV| zF^6AV@q|-++WJs$kpbA^a}t6J8m$pEM64TsKms;5VF9@m@#n@MvzlEEodc7kW*fvd zUi_6H%Qtw)rz&HBR}?k}c2WV*?+umxxz9&h+-5OX3{{DLhI^_llr@G_7DN7ve3e7M z4%)8>Kc&KbaqX|iL6L3VCd~gezioE=Gw>z_NiD5ugg}c77QhUJU#Vg- zU(o&U-$vJCL0$p?bKCs?9ITYUfu4SN3~3L{o3q#*FwY^9ZQcgv|GM8e|1thZ4loGw z3?noX(Ql%m&}Jc11KE^~?Dx-Y-o_H)KOQYblyILb!gD37->&4~MP!}@H-UK;b=2HO z<~a!S{}i$an5~Z;`K={r$lQ1s;vx%fLR{n!VeU4@#XwF}=2@($-iKB-=qTnN(Yxp_ z#mZYltJGGp@IYH-VPcFpsJFJDRn07TMlns%#8oXH!iecCn7&Wu(DFc4#zAfMSF!by zlo(JPupcHtxL`m^T!bBfWNGSw*6DB%a z!1x{|h*Oq+3f-SarR|#nTXbz&tn|YsP(VPhI{ZUUnm}80s{#h9u6_YHrn3e(ye6x_ zj&Y0A7omd{2zd1&^qAqIz5y|7{DlJSXC)n!=2^iZ>T-3_$|x)4nW=c+?<|3LBhPxu zrMq)yHNy{s9j~2z67bWi$P)Z^Jt2Cqw7#LfbyFq$Oh8fNCkTA{84>UjL0!cPCHa8f zkEpVi{Cq+}JB5Gqzl^z3+%3ZeH{+28d?yC`gwNVrV4tHh;71V8TWo6B{{R6|076SX zi3!;TZJ&JE%TXDKTQnw;UtI(|qB5XA{b@+&GnkVIN@$?mI)Ozm{T9>qP4vGupvd=7 zL>iCYLm;6CLzmljX>b(|BH+F^eivgT8w2u`1jN>p;HHrSIsb48z@`I_!TGd4SY;;x*|mgBZkdDVsunJQ7YBx!;C_q%y7z65*!?61OpEkxwqb2V{bg{0L+%U6aD zN#46ue&Orf_D_oQ)DykF=(yXj%S4-5onH6oySny@=QfiJqb^-ug~xxS7ZkdpNBjz1 z`Lvzd&9!O$R;@jr@KTjfxl`pQ|MJ@P$4=`LD|a?9_x5Vz&L) zbGsYTjO1pb)5<=ZZ;XDSmBtI4DI3$##pRmz5oOb{M32v2yjW%QoveOx05{!qxEy)? z;S*lx35_G`6ywZfzNg5*m%_?2fB7M@+7@Nn)yjyKxW(AHls?5^1?T##q;`1nJ;sF?fL}%;x?~|Rp4;OK;D0|tr0B-x43M*;-7nOBC()h zj0GiL`cCG1lv+?@(kp-YR@Q=cRz_&E7G#vhb3!XcOJJ|5*^t|Rc=_M=P(+H_h_Do^ zPa=JYU*DARoD6&S%32W^^+T-ZpSUJ=z>Oz%K&SbG%YWs)slT*JGD4LtQ+0?p`iTU-eEG2{4K=IZT)dRk zoLD)PPXgb1=lMp*;{v`Z|5$DoL){B6gQGGwMa52IV&@PHqghq~@(l@z#UGcL#e{*E zDj<3~VUS~N@xzyBi!pz8aEsagquvYqHQ<|O-Q@Z-BCMxYqABhmWY)60*z3p2kR!_Y zABgO$%;qpcpVzxOVqPl+w9v)xT>cC1xuKG0<$yB3yk@^esTE!sVagiKx-?!cO^tPl zm&V9^kF!=*Zp4>Pjy|RrMgC`Zph{z5?_#tx=ZtQ?^VtV7JglxuWI^un^L#d z;jx7x{X(8l+&uSMaN||IL_dk!bE!qi0ZK z+P~A?^pIt<2OgDrJGuJUzEwq>2J_cUn&tzefy@wBw1&FX7&0vqG@mCss@`^V^tL$UdRU2dt^83`%bC0 zUN5!`oZlFF$E&HZL}s)|w!0u*rvd+SOXoVn3!RA}1<6?~-czrSFDeu1^(wB6>~I&qiH z{Jl4WM5{Vh6>of_6{UYMUvKtpUS_qtm@IwQ@KVVAAW^T+5)6ETMW=UMG0B}7(NS5^ zW%Mf(M;LqO4sY$ZW~z;LIRkIz>*?QJi4*wW<@FEI;hRVIPVOMA8=SmFct1okQ}CwC zH~B(+_h3Ckd61{!*$mp_r%xIlX7Fm`DgVL=fy6V2>z>6e5Mt-gTEgf~=@fQ7o z!Iu-^W?5b7m~s@3Pe{7;BC+M5y-F)Wf$82)7rmXc_fyBc{RPLbh1VdiBsSHxXN9hH`}{u%lUdk4Pifr6T%?kQNql+N-DZo$W6LtS9Dn; z7ot2-0=%XzMfJN-pB444`d3(9f8-Nh`)+1ew?ui*e1wjvj_-`i31`y%u zbOOTWRT08mswiQE*9rXskk?xV0WEkPK8+f~^p?E-lu3A%WNP%ay#e&K{Q>Cfc}170 z;58g!zeW?nemqMEYm6RH<(U`6zciQ3`{jHxZ$Q7Fb&;$?)kv0>Xri;H#Xm0Cca^7^ z55K59HLbovUVWsd|Mcd%%1u0=QX=@YsyfTs@a}0})fa=8?KK;$t-7^2APnqv_s_+k z4x`iOgFr+dZ$4_D-9e{udRXH{)kpgROda0}8%oDWqf3+SJp+}<>JB+|lT>J5nwyQI z4_ywqZ?4*wRb~A~m!Ie2rSBRn`g!E&t^%=aS$LmL203Y;K0lzB2f^S+o?=7RgMm9d z*~zHv8r!hKRXPnwi#FPRc_$SBE^L|@7YyHowjRl zU!A|Z!Z&;+H6L(;tUF zt&0NjPL8;!G7r?hrNjUGn!SO+dN$x#t|j&7aV%WRJf%@arBJlq)_TN^I+`l=IU>ndo^HB2@sKd&dqo9r_CRpr zn~MiE-Wkq2ZYZhvMc`){?Fb6{MbO)3k$6^->o_|_#Wq22@D%ba0tT5n)|UC)mbi!p zdDPC`7i5|$-SaX?R2(O_{@lZK?@M!_M=AGQ3u{z-_q^rH=osM_8!sDx);}BjX35w! z2cjFy2CK*aP~@r~qSJ!d7o&jjOfSo)cgidF333AeUZm)@pUzmX+hQEU6q55rCxy>l zNkSBHVB2hSOGhBPJ3|cwtLO$;+IX)jTsZTiRwJ8x?kM$n0PKA2QM=chbc_o-J>?p4kHwZd#SDD z44CbVs6j=pyY3`Vy+oGaK%Zdpa{1wx=BWJhJ96^>?h)JkL#lM(;96j7w>a56cQ|hn zF_RCgMV#(Zn7yU7#QeY@t-y1L6~uY8u!3;I-;tM=0=oR{^pxT^N-EET2^Ovwh@AGe(p`oIQEBxow26|gAHxafzcJ;*}Ux8LRE3ZTPoec7Avei=H%*s7UX9A zDi@?>syk4Yuj665xXAEpOIg0j*|C8eo3`bc>gfG)_>O0j=U1L5dQF-c+Oz%2jZLp| zc>QNaH~83979Td;9JKp;FaL4TwiC?)_og~pRVQTzMd^El&5ZcTyGj3$a2Hf2`2&+B z%b|wxBR3xC9~6Ys5rH12HbsWV$99skL!ujOM(}!N*}OhOX7d8w?-hiTNZ~Ysm#LEl zQkz!fI-*wMl6m*RQBl%f!A`j+f2%Q_$vtkkhv^wV#SK{YX8r&VQz^tRUi>nJfmmXD zP@pw=jP-X#uE%O6yPt>o#V=JDq)N6P3%cV!&(iUHpOS9LlDi&p7PnHRgm8Q9Ty_d2 zQqhNsXL%kYr%^l1vX&OPBG-k7f20>)UE`6yIN*uAdT zRvTyIxtDTk-u+ zMtF8%8{|Za`WsTEKOGXzc%rYE9Zcujuf<$2T0^NQfHd2pNTEwos^g%NBw>)4k#=#C z4zqThInFPTyApP<7{KTdsOpHO{a7(w?8M27eUB)7Opz;@IXcB_9B}WiTd1pK*yz7O z$x2J`hPA;~*1<@-rMA8F73R7oywGKe5oe>dgdU7F%Fr@6<*t1-HWD=XV6U=*W$l4= zsyVtl)dV}mU`t1C;a02UNlkfGk;00ZGu0Lr$2Wq%qLqt=nUy4=?(cfM2p(>c1^3)j zrCMN5b%Hm&=B#~-tgh)=sjH?Jw4#(yf_YCG!&kbNN z%(FzTU%G{Q2@}c{U|loziIR$9m&aLGd00w7w zge9nx66TgFoG_>?=q8pVyfFtaw}D)@LgDl_6684wyw*3Jl8d(P*^8%`%y;nCnr!=O zESMCTD5g^&dK$~^^e|>h+gEngAP|(XyX|nwzgJiPv&`5AU~^E(;hVF}+0}}Pog}2X zr3Br|r~ZFWzXUcCVIW|MIb~%iggioV3kuMYoc0P*uowfsGXhp#yQR1uJq<>URQjev zP=8PIRCsH@#iUV-#`nOw54~6eI|+tz5?D}hEp*CKj($Ha7xIL;Bl>MEW7nslIAvvH z2g+k8Lw93`3|jl@pisLRenj%?Q9JyC*?AxUV%#v|rAxJB7$zMR=8>u!W%Iigi_MCN z5k7$(Ck_WwCZQ=TUXIBJeUuZ?`5pBx&&$zdpTKUh0tAQpj)6g-%TkDpbwcn*GTc8M zw0iian}X2~NC^d>0C{35rqSpj$Jgka&`>|Cc^8>-n;_hnc&KL+y>TysxpAaqCF`>E z$*Fw#&R_fg=nM{iRh&-zwYJVD&3ah)S0=oxM5>R>0}p`5dUbsuc}P?^vAJ#mbyUBm zp(Ocw21gAb*;rA*yi>~#;Z(X~0&VJu2{Q8(rSFbdH3L&(dh z(>N&U!MccWij!JS5&`)$AB2e{pivivU-WC*@(a``kY<4+q3l2e&Tz%RbVu}*%_2c) zsJo>u&%XJM& z(1N5)AqWST#Mq=UM3i;B+?6#lB5V*SE;q_i3*4{5Lmw+jUD2X_PPR+N2Ht{&*L1xt z8AeQcNlo3ySfJUY`ZaAPjGW5XW<8PKC^Bc>$*jQnpmL)(rtS^D6RN}i%JV1PMKt$~ z;O(T2>89vG@&wep-x5Epnk}*>rEYVPYY6e#II$7+S^MhNFQFgOmq--`(GCe5#25DQ zi2V_ae-ufHu{hmE*gJrvK?mSOT9c7?&{qh0v%NOPwP9c?+QcnA1*o5$=$2R|$KI#8 z7F}kiQ0|ICd2kpqa}ON7rYr9(*z&g+4V=1>k{0wcjOeG>J$hrRWLVfSgAL?@b%|kw z8{!hff&>m&h+HvXE@+|ZfI>p74zd`-6~y}*P%?QJGcdyp-(fWRxGp5#!c(QX9qp+7 zg@}fQ6NGQCzybFJm=?4|IQ1B2y zWFADCmqu)iR(^n^;3 zTADl!TnC4cT>@1;$0=Ies11rfE2zQPYpX7{nx7;%w1x-8Nvv6rM8}eVagNYpK+0Q2 z#;u05rgB!oGDQzDwf+c0jh>Gff*wdL)F)esyHaXy%WYk|+6R*Y+<~z`#H`Rf(6VW$ z(@aP$5V+0qyZ{cyz}J3FgNYkl%g^4Kajw5{s`MA)Yb%1CX+De>$53}18+e!a=T-Jb zZvH&#jyj?x#QLAp8@S=1lYoCFd^Way4HUc^&>e>+3uE=3-rE@J^VThU@}tZ8%3M_l zK_ve4({ zx_zn+!riq4&8E2Toy$zNz^C=BG)%V~!I%Ow8Kx5U-3Y^4bVMQ!+$vH&-k9>h3w1nV zU->~ue0s;2R|*?)o)vCZtkz&vhoHxjl7qtT7+$Hr5m`iQwO$wNMMClz*c`P*JLF(S zB8h_AsZv5BR@ccARuWL`;ii*Nmbulwno@@5vOErKmfB6@MF@aM0jcAuT4q=>8jBY@ z?{jkOMsh7tOK?ZN$G}6vEMwjfjQPshR-o#h5CMoy49Z z4M{bxkq;L9?}{O+1OnXHB3E>Y2ZtfF+{KdM@EsD59>@+ngy>ACfpUR7V0?7$b3ZI{?p_fC{!GU>N|G@I_WG5ODw-iU7af@Vft5#mCl zb`;k!H_im!W}MUwP1OcMCVjF9^G_(|A5}TTD+B5TvV2o4U%a|*JS!`JnvY~-y4ibF zTW5>gfQX+WOPE1%VmEZS=@86q*<#j!O`=jy>1|g$`f|JT%y4Q@~w3dmSw4hmX?L!!G)w~n~0j3wKvIM}&`6CWj;C6^#U4$WP#eWXm0I+P5C z@Q=I5hsHbg3Os&NKB-SH<9Xtf*j0Q z=8hy)7IE)js&qlwV5}w=bki2TR6%rzxqvDYYTiV-YbXSxYCuJ?p#ECpm-_)G65DGLtAVm9qOp5xk5kS?IPic1<@aTSv4X6G2Yx^=csbhW za$DwtDU!$}wr|i)M~fvcXsk>)W6Xk-5Rj_To=a#s{jP*t4k1oRZJ%ULVwW@)v4+EV zATvM4A|y_;BQ&EWNG zWGI0u9KmV!^MxQn+&Ycz6c8*U2?0Ee#}=iA)St`)!$`gYzobJH6+#S2k|T%!T6lim`CKp_#AnHyTU_4_6Zsp6(QgvVExDdDY-;nGbkSN zc6Q2Uq7%qm%uW)M8=*FHEAFmXTE;q(A_pZ!YA-4>;*ko{MudTh8n; z(GF|OT8Ni;B+EdLT#f;BH9~DRHE$&Y&#s2>5LgVmbu|^){+9MWfeH@%)Q?g zDdM9O zkqcT$kP(cV-KG*`QX73j-Hd&LZbpO=O5jIAJ%Wgo4T7EoVJ8cg9xT<4KIHHjg#wm_ zd(Ph{7GWA5BWnz~jL?>LaBk)njV`5LcsYbV&*~PLtKvyP~L${E`tQk0!9YVK|Ed7jX zBfucCoaj=EfP-9mWZx(9p4_ zq))KiQ0&8CE`zcsf^{f+)}dxmpVQ@I!Hwz8l1+Ea5Wl9sV-Sa(kr{oGD2}4D*jGmr z&z(URpvR47IvzZvtuW@&Qicx#A==RphxsZ390~IklOxFVxIf1Wdh*B{TckjKi0&w3 zq+lQ;MiDQu6H8EnP>^VzP%~toAc#kXP`s2-FEC))AejM)bvobY@`Fh;v*A=6Bo)s9 zL_E6xASp7_m^Y9XtXN! z#3nMgiq1iKs#!-ehFJ&eXKF~BTMi)!onzpTkj%1{Kw9klEi}$RAFQ$%N5glBqfxUY zr6)TCcZiHWvHWL+i|)z}X)z0&v|^=V1}zSOU2C$P`HfxP>@RnySQ=+B(|B)%WuC5j z?i2myGlAAWilKebCLLNTs`6#O96lk--`+8@1h15J{h*V_VP)bds3GIezfKU|jH>&$Y}2ceMW zSVCJ~H1rO+1?OrB(m4G$Qn}QdcxbU>F$He z#e4DH8s~iizabCsG;tE(l}6+Y1s1zfpv#|9m;`+#(DlQIy&35@IwL(3i48DsXS*q& z;iyR$NP)H`o)sZ4NJIc%vV@L3Z7t%>4ua0AMz*sGc||SE?cBU+Ha2(E(Eb;;L+R_n zE(M%WmPmE^m)+Od7My|Bl;iFF&qARL2P;6q@u9wFaWO~}D0#Cipi_M^(4nT={{Eze zYFt)09G=2~069~HkY;-~yU}MqlC(zzBf6S9zEqbWDj&8Z<4kM0t80$^aVvXeCVSfwDHM8GGWQH{z-a zbFc@}BBT!?n{*w4m`TZjZ;-wqHR%hQ;(pnEl`XdD5KCs;om3Z9KkO4Za(pat6chSL z$4+->@d62vp0IrbWIzgH<5c6^VujX&JYvZjPy=Bf7_s^Nlk^s&YT!%~_3IvNN;}5B zK54IjS%{)%o;S-Pi}{{~r>EPY(M15F53=7kpcbqT_W~f$GY@qwNuLfmU}Snpf}&`l z>e)n_Fzy92H_9sB8S%jzVII%s=owao~fV8ZHz8+}W zfipW0B)oP4?3MxqKR}lam?CuMKtqldITa4af*DWx$psd+adOuvI4_0nn=z-h;YlOg zL_+pnga$llgvJ(QUN`9H7ZDd< zdRPWMe9d%$0CCXEQbYP(Xx*%7Wy#4eHs>vkd*bI0W$I(Xpy>}nECVy4o9<1?t_LAp zpATtF0@6_vg;)s|FDZO9VIp?cge=5J07n^cs7ryPXjD;)KcdfkR5) z-gMFp@p77duFo+u-9y3wO*hJ}uPVCO=XkGf9D*Zy$6MpO?ZU|*X~^rzd~`q$gx%~x_C!2?66>n z*k_<~*Dl%LoA9(o@GiLj95|PbFTDNWOz_5KiW0BD#?#qwsFUh=ZjqsReu%)Kt4A!7 zQRzHytaxn^S;jETLfqdYR-aO0B}mlQP3-niGVH$O`h$KO?`a;b5M+waSqp*lyosL3$(Dpy3T^R z_)Z*ylYQ1nG|Z3AVxtqI6gY$k)^@iPR+;mL5Q#5W%w48fSooz`{yg&6FUT22?4MM2 zF>o?!@UjW>S6nVyH_m{tafR&fdE-X#)-F-ZeJI(#^r8*X0uq;Ul2W;Uk|$~v#EYEW zI}GZjEWXGBy(4i>-K3ze3!pC)%7Tm6&Vi}?qA?XPR219sMa7Xql<~oStLL#IK$~Oe z?FBY>SRrtzHYY|(v{ex)oGVzgaUS!?^869s({o`7&mdf)R&t$~1FqHQ80z!_E+GRd zE*mi9^x7LKSq*5tA4qr9W4X^V1rdo7bTV|_M)&ALLX;=F#z9J8;Z)(qhms2**mvh= zW^FOOcQr^7>GZX&x(LD@1);daj~JYHwccF2hq&Y&YC--3&*X!1qM{7J2j|AiS?6RK z@3|J-lnRL(8nZ*uVveEn(7=(l2Zb4gA7=7F^B5&=JK+%zpc|@Y5%}K)pL7&YI_iiO zkHDa~PYla?Lmw0`$GV)Ez6I;#-S=51DxyXdg)xCq^wmWlocwRX23zzpvlDX$XP+X@ zH9X%GEpJ=LBG*jfIM=~#}Zz3Z{leY74)yU*o`=j_dHQQ;yAsSzaCBaLeFC`6IjNWJBkuh;*x0O zE+9Z#w6BW4A5jQ$zel>viR8=~`&?)QOebPveShC*h zpeaSJ(?r9B0rSUHHrtH3mo$)-0P(EbvI8#Qo#~+Z8&x@1!r>UyJ=OiBW5No>=q8uv zXtEemPs$ERtK3o!EIlx!90PxzIq$*}0W5+S?muHBB}9Wr!M56@*#xY%{G9vGxfo9& zkDwZg4ucWFO2GMDckmw~%f~o!m@zLLW8G7I=3-LDE)+k=EZ%^S#7qHEo_#=bMh@f* z)acbkL}EDQ&@j42;g^_H*a1sznUN;?55X8+P=ITXt%Nw`utYH$t>wUw2y`SAWZ1N* ze39teMsasfhX$ADXgfU%r-H0W47ZV`75h;(Mm?rR@}OVC0`pudIaCw)LXM!zkm$$@ zeKqWxL6oKj;G5@#@sDB3O2Cok#ma|FOhOO_S5`jR`s{#0_hOH>X+JQ{gh#EBWKL!c z5@V?^klc!ba_Sa9>?Ku7OyB(^tDW~IKa$S_3FRyI%ssP6NR!eo8O>G)g^t9tj*=lu zxBcYNbdm8vdF(bXJTfe$@tdj}P4E$#aCi^MGvFsJz#4l1L<*Xz1XB>(C9Z24A z|5=))qyz5JzmTeMz_wNFOu_~o^fZ!*{FW%Zkrw~IfjeZAfPg6}N0Y1A5eJ5#agenO zGtloMDStf+8}|Ct*@15&!R|jRe4r=EK2=Isr4B?0cQ3|_!@P8mhJ0o=v~zP~9+5%H zevI(AKBUA$!uKgXZ^Mwh?L;rI85{tqU>A5dF3NYf!5X|6Jv!wi+HvE&yI(T2_aoVj zrClqERTA+Ll(bVf;u{cL*J_*x9~g$AcbD%Fp|fp#+Psi@uj1TFEKZQn33MqtzRX+^eN*@it&su zb!L1?hw&voR`A=O^cPYP0>u7#;3P=nEDGyXDK4~YlnuQ|-GlbbLovjV z4S~)Mff<`tnFnFhFg>!14$2O@bDQ^eabfD5K~!3bI^5;d*)lV_pB%_z)}(IOCj038 z{f&7_>aQ&rW*<<0W!absdoLoZ&uy^c;v`Ge zhxHUYg@dyu&?QOt~#*R_6?@X`%!3QdOH2Mr`1vs__E zTuXS)5_8C;vR%yIP$9m7^_@K#V3tq+`UT+tEYz5p9GiC#Az(x@G3Fut#ui(}gCa%KCHHM1 zgT#wMi67N(NZms&kPupB;UF@LAmbwBX5?p}LwLq#N)-HK>tLq+)} zj>b*?H+dZ-duBrggaKMHJl}|9q>e?34B|eo$&iEn^7`=E4Hdp~u-{Q;B-DYeUnL29 zE7;mIAV`SmVp3VCP>Zd_vJ*Ct znMk<@dsag(MNx9me8`$KMX@8O`8eX5RKWWW3Xu(xqA2;qMUaS_1}xbmwLtYk28^=7 zZ9OvuhNV&npI9O}?hpv+R)AzDBoCEEId3@y$xd`JlAVw-nw{7w7F^^W(Ch?0-=Y63H4^>JiuhQfio0LWspw0<7s0xNh%r2tXleuJ2g04qk# z%)||mU)(t&afM&vzMPdl`V!G(uf3o3VMMo}64!Z_C1Z0FK1$v5s3Mlufn!v3#6jl9L@_f`UgtoZYw!ff(v2ti{Q8 z#uc3b4V4Iv7%Fh9fPMY89wT_wW0g}Y%pU8gk5&~WMPn5xM3!VbaIe67f2sN4sf0J0 zkeLCvnV>{j{~5tDQX%X;0Mn*+L6R^E0+asxYcRkIvcqicHA+LwgXkYOc+?;WQjgkW zK~EupPx}=&)&c9ICHEy#@CX!By&dr#Tv?TU5^EV&2Pyl}+i*ToK@bxqwIZWy67;B5 zJi*vZ?TN1k4$IgLQ}8j?fS{z}jzo%{Gj!f}VoSV`^}FzcK$j#Y!0(O|XZlTIPQ6P< zje7$V{UiB$bVM)ahG!EUxju+bw_Pik8%T&B1{gCSy$f-o0QXw5XPRH6Acr28!*~?FfjXj$ zk}9u~*?C1W)Zq?*O0^}Km|j8;3a4OXDxAvF4;2u)G|M3trerZ<-M>%fy;46SG_X;e z8>zt5#j*@#7N#x~Cn@%}V7MbrX}?54tN@EWY7PW7L6(_fk0Ga(I9tjBi#;M&T6&W; za7#**O?IKIEEa`gE+)dFxtM)0lpIH9+AsW)Bm-6!xC^DGR}}!MmW&t$$tqw_ z0^>+%LV*Ku>%=mBbrC}LWI1$Ds$SfkvCGa6<#dBJA>|qKn?}uDH^Hh@|D@34l-AJP zN9|-^8>4QrR}bi^&=WiNQ%6q}4`WIn%-NkMH8f0+Bd4?PA@X1OBQY@oWD zBnka26PndA_f?j7D%8!RcH4;{^_QL{9bgx1s_)gb{Z|hhF;DP=nE%;W?YEgZ{H?^5-S73H`}S_??t90oCOs1DiON+CY4IMM-N7Q-zbz5-=d8QeWkPgrCu4Fl zs5dulYg1KCRN>#C$wB*dFZIb%6-?)LNLZVm6r?_jIRnVCiVjj=a(A`8l;6RlR`v15 zd;C62R|OED?2aUXzpey=qWr;D9X;sfa9y5oPMzV!S9R;0D(wxYM|$G_x*GE5|A=*BOT8 zW)T7PLL%3A9;tBdF58hHSA22HG2lmq(@yfZa;)gW4xF>GxZKjRFHpU(YK$tsr`{fC zg8jp9@K}z1h@t#2?5#n>lmOs(k)gB#czV409)JFrd4@+SHVORrUgOgV;$fNh8|Vtz z&yRXD@9wC}AhnfwyVPgV2U&^Q4Z}s+2^lgE}Zl{wLufYg97Wpyx7 z4_v7^J}pN1eR^G&lctS;%7dCLzu9b}I=3VW;_Vl=KqQC&0llxQ3eraKlqq?;x}-|i zJ~jbvw1~V=L8{Ay-sR+yqad+~7pLkF9JH8>>3;A#K9i{2pm_q>3a;@1mMdNuei@H;EP%KJhF_;;d&N6x{u!2wuVc>i& zGO$?uX_4YOIYw>vjgXDz5jjO=ZHM18*cr)*gh!-^mK8k~?L|MpY$a&C@J)^&=0O11 z717c>w1U|3OZlR~iJ>s`=}*M878LmC3T}vj-HmV~r+4|&jw>~kL#9U3qL5lh zKE0>~azfiOi8dptWH0CX>kNeN!2G9KU2`(?s}z1JRvutR}SJry(FXz`+pS z>_^TrAHgXE5Ko*9^nff;#*8YzIQXToDXc2HQmAj{jrG4)qb3Y+WHPFHs8o zv?d7~;MOz8W}F|C4A3{`Y*9DiIcK_I9TRvI+9TXgA`xVEJHVy6yv|O<9~7Awft4Tz z>H|zW#534%xL$^d3%`AE11#y}I_)^QVz(V8PVA5X$fHF^MNb6nsZdG!Mrv_u_ugW{ z6yt1ta!Q9}giS;IKx;Tp{nlAsucxk%so^IPRbo+dmv-&isnz74MKg0;lZJoZy#Kzk z|A0#$b)WFf^w65&<(rJ|FATF{&r*Tum={WU$%eyRPS+8`>!vH4SVgs=I~ka zC~v3nS!ehsMy`t796LNYqq{}OU2V15k=l8AVeS&Yi=v+`?M7b+{0ODhq1}vW9Xfv9 z?vr+(f#CYJ+hV)!{@hR7wY%T9UAt~@$7h|9=c?r{%jv(yhCVLq$`&{T_a60i;FMRE z^D85ZMu(=H{riLK(}X#5rPqF*;`VBpqEcjcLb`W-j<53XH5@aO#t%l4B04>CuiCXx9za+RmUem6F#x+6lWg(xKpQ# z7qYtaN(~u&=2L^|eO4Fhhh4su8G6?0{{AwPO?Jkm9fxP`i`tz$se9jTCpYVjop875 zV#@uc4FOJF>r6eiXD&WnrEvCPI zuIG|>+(~G%BFu`p?mAVwHsPPLmVc((A6Kf*>Lv2n;$Lgp!K#YIx2FUDla)- zFUtSTtx&P7$fNh1Ac=*Y{Dws79MB}zRvwons^8YyTRc2v5gayJ_1sj?qOm?q^h1{+ zhKnkyt|}v&-$*mlEgPy!?Z>?kw%5yfV{H5L_p$eT#iewc|EoCAeW;V&l0HjItY7x@ z^qbvfPFXv*3&Sh(Hs0~d3;1Ygeg`LKi}mZwf4Td^%=A>#{5v1%x~FYim#GMbjRqtGi!+I(|~$#nmrnca8XzUVk1;rU~Sw1_7b zeSgX`88@J#)Guf0gkYmSQQB6rpEu2^*f$SGQK;Mdzz6?ujicuUHT zI5sS3sPr0eq%PsU?v{Z1m&OW6{rp{?(f3t? zHFpj;2@VNY?;JjUalsR_PPS1FO-F|K9pj%WtI!^yMXcXh-ME45FSMGaZ+ou}He z{9!wzOtX%5dtK7v&aW{%clagWIjihNO4#+(<-(sG z-|%0t?{fd^OA5vxz8L(I>EYtfKCv}>P^E7=?6=9EJ6C=Zx+Pp|-LgF|OLWe@I^NUh z*HN=aJxmj%&PgAzaD6A8{wC`VpD8%vn#o&eu-*T#*VuD&q*a;@v}+^R|PQz>zy$EPIj`s(Sji(h#KfAz4s@Ar8zyM_-DemUfY?vRBGo5#*B z9pt*`qf;)&+Q&#fb9!Pn;p-JT%U0c+;A@e!;lbhL($^&~7p*$M8x#7xSGxf|p} z9ee$PSy=SEu#+#ezJFnyG}ScwvmswB_4z98YNo5edD;1#$<{iR*M>Y59vy!C`9__~ zPxak{de2{D^6|9C3kI%w(*NeXLoX)}JUBtzGtofnzRnq0-0<+*cT>LKvF^6$Z&!!@ zG`qvl{M5W{o+CzEpZ>PJ@nO&Q2~D=6FFjfR^W_T*J4~$0{wDjAh4rz$KAphZGJS=~ zh?(BcE__v9T=rE@i~PSSW2~C8ZY|tv)K4;{qUv*7gj>OQ#&W$_zuW$leoi3Y zRWj%xvxUxvK)nz?hO^K(wDG%=ofF?lx}(>>_fE(lWQWBha0R)>{qAQU>B=SW!S?Fk zVK%f=ml{^y9{{5U0M8+k#f6Zhn`+Q7!aB~tX>(wfaUqm7h!~p{qBE$HRW4(Ek@Eo@%mH2G>_L@PQ5HIdDV9pwK49A zr)5yR)-!BsZmC*KFL^n`#tgq1^YEdFopgyk6&hkpR@qWZbb1`EPBkM4IsuKqi{R9tCF z(V{b!1{y*xO*k{~Qyw3|MB{)md`!Gz$-vh$uJ~B~C0m@%CD`v;p*R=b?Fg3<=bB`* zd@fz}Sg!N3(|$SB%%Rsn!-nj)cdJsja)m^BmaurP0q#dc^fTq}5&U-H*VNsZXN(l6 z*wOH8cb(*WNiDj4k4%vvVV)68&$Q#;Q4+32OkJspIMPtf6w;0h^qSmJV#QEUDQ26& zVpwxC5p8HEf4L~fQb`Iu4;z(8qv&jm)np3nfaFp}qxFr#G|ed`p}s%T5x?t)s7M*6 zB0SZ#0j#)lWW*y|2;bXlMC}A2OYub@+1vH1FMY(}3k}avcoB;GQEAWc#U`}o?v}h+ zH463A(IhhI>g!9|D+q->+tMDCHWX0vj`Vl{+jh))C~CaD9>-hhBRMZ0OCD999#4L9 z|5tTnUR724zcL;UC1vhYa{1Ak9$8$mTMTn+y?J76i7PHQZ{iw&$iNw5tEU;9M&Q6M z&||Wk#?H$oDw-}*VCV@)s)C0bi&U@=9Sd9*D1Hd0>1)qNC)D5ZK^NGqbfqEE=PnU7 z*peaIEoeK0C8W);{DrmQoc7dqJmwyCV5RN-D;{4tdb|lB>hM&v9_Q{ zyUv4@q#)MiY4Hy4Za69d7AZ*G4~?SsfGs<~b0L`bik-u@8WUewRM!W~y$L*4EHdGc zSnz$skrWM^o~}f}9r%@nQ(O&i2(QnxLX;5b7ARj$10>9{3*ycfHzLuLM;1@bxK})a zHFu{Iwsk!H`8;s49%TZWAUBbX*3GWB;1CNg?iKQ32NlBJ?dsVp_Ow1fXq_}lW0;>( zHF=@Li4HSz?G#T+hb48%d<}w6FdlKyCVpP+4Pq^~7VwCt0dm`=L z0pV7Bcy0WqLx3}G-vC3DNkmF^!1ZB@KYem(ixVR9qQPB}g+=mW0DHHlz8X+RMJch) z7AiC6_rF@$O9GwK_Mj;(39QBog8;4Ptcl|d0%sZ1#b&={*M(@WQ5zlK)~B9ev^p8= zms|ZwOw4g7pEre(_cd}%-a9NR6sw_hX=ofS4_y)6I}#2I1siVU8ySLd|3 z;5bJ~#TlM?1UZQ8bcr~D!G9_1dX0n+{F2ev>l|@QzY7w%*XRsP7f!UCDN3n?S*Pma z0u@jxw)PWHpsFn>?SWINS0Py%K`4>QW|K%0@le@ev9t7Iyu}V`Fa|Rj z<8~#5ZE9HLR6EbCgt7|S(s@{P+5JQu3IftoL}9(~)24-JRQ$sGqk`bf(QK^g;b-iT zSL3#B*!$l4O*7taW@0}#aYTi7`64=L~5(vC-D@A<6ynut5ehDKz#X2j89qqXS zIq8QAGMx~((~$o=4yx|fpJcXPUHL5o`y*B{IZ?=G-yN|qe4c3Tk5&~>pLDWxLl~>2 zgfr&&h8&eVP!wdgNJL?$me)nu)IBE`VFZeh+SD5#-d%jc>CYXFAqd^7clB69-?AOkNx4R^b30BYw!$dDB@y+q^Qj z;ob#HXwLL&7@(=TkN^S*uYupa$>koFt*M;*_Gvqzg0i4%DZ)UivyBScMUgR6e`J%i z136p^aCIkEy%w0Of8v`wBZ4VsV%dAmi8%rAG(QV?5gCYlEj<^wPBs?Dz(FS#;A_of zk|D@3^Nk7`89dN}fE5##yp{CXjBo4NZ}fkMZmwj2Sa(za0KJ_604V<(-AwiDjSLkX z?ai!B{t0r4UeXSS!^vCQh+pub+ESy=wIuOx?o9Dyauf)lP@sG-6tEupXi6^P`l-_6 zB=18D7o89KXmrQulk?Cu#wS+a3^@sWaZ7CAMYq8;S(D>ZhTENP_ufaWKHn)WEps_8 z@G-2ETAojo>swuIJ{}Iw6D>7wSNn(Os&fYmk6Rn(8}A)kEj8Xd+}&^Q*I)NO zZ^yT{zxr*i@p`--&leVKeBS?-#MpRmb#-`aZhkj+2#(D>!(UhD-1NZrc)q=C3|zfk z9@KPfEp%+i&hWfnOvvtN?QC|1Z*TVWc)UF=t*M%v=y<+Ty8F1?^KM_q19E+y$>#LD zU1f}9Tz9*@(MnDCE(VxddW9M&FbgK3sP1NX1B7`u(dSf4s4R{pEpp zf6BW(S|)%0`0v-=8`^i1C%nE#Zn&`Yjt`F-9-X$ojR+Tuu;XeJrvw6T?fsW;X6639^w)Qdlqt;fg zEx80I>1;^O+A&h{Zt8Xav^UVx)zjtXKo@cI<2( zUG(FJ8@MAJ4O(bynMiVt#c)}y+5rPX8!E+nQhw1=(NiBiWpsklsj8@41%?gn76(H> zJVzmL7{d|k%U4PPMLgm~kQu5dF(J#33282&ms+Kc*e(lig?ukr_I?pBj(523l5oUJ zr?=Ta)p{bsCsESO7h0^^Wl zmz?WdU0XYi0)Rm!(_ zGH%90^UXoT#!&t~|)`0Ve}mvpw+~T&Ruswhv7Tpa`MJ3o z|Gm0;(YsG3Nh1n+Roo@6&u%x+Xdu~iOV0MTMg;PK{Gp{A{S}d^G;WpN*^~j$x&|WM z{b(3`rqy%-%x&{4C#MlLBwp*UrFG&hYX$}rA-T&us$Ij}qij2bQqauSu1)TRBQRi* zj+u${8E=hzS$RYT*&{g!RQv~#m8>xw$pVSa0%a`n}43NV>V34uEJcsSm*BGsnpWA2~zUVF&&5C6)z}bhYHu zjNN&5(RVnn_&wJdqVHTWb0+4I;H&N*%5$pG=kDJ2dae(%yEW15TDadA8nyQC;+SpR zjj^NdgtJOo^@2I}%JHsCRr`<<$(yRuJGNe zpd?NI3SEad)XI6dDt@iw<5{Gf@{A#63~FUEvoXuE$8yy2!0w2Pk@lMv|@_ZtI1CJe?kZ z@uMAd_aN-*cC;EmloR>H!v5*9n#NKa@^7SF2?o>WrUeb5!}!*u=EWq%qkWX$e~Z>o z#MPg*ih+dHD!^y~m-+0-57u+C@>ZR3Ip#75Id`(h_0kKqY00dc<<}dt6XmkbFUKG< z$Lq`=2$A8t5v`#Yy3bt|N8~B|t=CTnb1~}+p)^6a<+FTpF(Z&v2Fr-?yP~l>R(vxc zfzHSwKv%6r;S%!jwOXCL-3eO`4}ro9r^*lm>2fJ{Xl-LgStT*#hzR#)0C+46-E9bW;h@)Szx09&zUif9AZ!T{Bb~4SC(`}frI~jn zE|@S?ApCQEkICssLFjhrt_yIbif6a{1H+av zgRHJ_E{i4BvkBkUGoE^u@{4TA_}80bY9u?qgzI37iGG2^dfGi?>lzK8i6K9PD8i&% z_g;0{Q8Nmk!kPSI;iftxQ24PS;@BygIDFEx?kINoRA^*HM7N`h#Qs7I&iVNKKyI_b z(d8SIiKu=s>#ls)DpktBwX#9mxR0+=i8=m0$G6Z)ixNdsdu$#0y?mZa-br0|Z6vBv z0Y=pS>qNspv6RR$U!p&XZ2bDvdC)mCn$Z{;K$5C%>Q9q(qK&a@|5PQjRmkH?D;Q zK{Z!pCr!U$x4c6`7)=(=-=1?-nN?pA`1=F$3 z>r4^z3k{YrP$d+ZNTTXMkVTCsHMu?Nz(jf00aRg2TmxLpTY4bEI%u}tR78NKOV?VV z4@?=sRxdG8tM0j?_EXLVUyJ@A`?9b){n90!hvSzn*KbF!4v+8qkZ(?0v1X~fOI2ra zPxY1o*y7PdI5PL~DI%o^GZB^?o+k*9K$KYOOKp8C#3_j4J zs?1~qR*uR%55nbH!z%QU+35GkvvDLBFimmj(iOxy-K+hi$G^kVD7Fj2IqiE5umgt) z(N!4*_6%n_`Eplf+%S`=rXrfh&RR)d(YQ4g1}>KBAF4Nr1E{~E?~r{Wa~~$PcjsCe zOlhCcUt+L$Gi*LQt8ed#*ZqEk919$(-4|l6VMDKt&dTL34g%OGq|hOKT|Wz7?y}Gc z9%9o6HtCmpi`c2zM}M&U0UOg9|fWHTqR7i z$sxt$eZ>S|F|XT7g3NiX_cE5)5?&%@t4wWFDK8_iCd{JMEkztsgf^Q6ctPg3ZS!=I!5YHBu=Wt@o91raWvFolDCWN%rNv%bT=03>{l1eXLze= zRWq@P*gneNv)OS+L;Z1C%5<)kuH`BPbUun6ucKQd1g-3_4nbJCCN?Lp4{hic`WDvg zmp2ko)2xiwCjBX_BF|!n^A)`TT&vhW5prYUz@=c2s`S3_ogidbPN7-~Js-k3pqUCw zpL+^rs$kTFQjBdq$eo`8iuOyhj4vTnkl<^-Y%d#_r;{jS-CCIbotVQ|lXbgr9 zrbm|a1wsiY;E*}JS0AgiVN-o*uqp!G63h~9gs%OR(gpEXxScu5^7A6Ey2AqHb^cC% z-?#$cQ3DhdHk$OM(}c!L!GsG6dJuXw3v$y*m5gaCNe+zadTmhTIl=?rhPM-cmM-Ek z@R z#tYmfB;v~U@_nUSD!D7jGsbmrFk`DKBc5yHY!Ic=Z`I{|@tWm{zlR{-uit1id1XdI zk+pcOo@+B;SI2I{Cl=SK93Eu)yY|cAs>=l?pK=3glF%q>dHTIcUhu8;*O(>pjWuU_ z?Y8dcxA)I2UQFa@4=Ezbeg{2#ezUYgKzNE2RDaufB%4E9=9PoeN2)39w3Ku0E}h{k z1Y>~0PEw6c8}wUa@HPgE8ZaCn%;aoSkxE7J!=uz(E`%1lGf*p$(%u+zQ&$rVq9V)a4 z0x%#zdeCBg7r3fh99xsdQnl9zayAwDh^04(*ODGO^a$A#<|FXPr4;bdHEr6dsDc58 ze@W4Dvb__WNS534>+b9L$(_TH1Gp8Fgq8`SjKV5P2e80A_uTLhqx?_Q z^lHpSk8g&D3+z#B9;fRWbCSC!oC6Zn-V>w^k@``mM0a;rcZZupgP>;L*2dPrRD#Ty z`{TL{|4zZHrT)8;D}%KbI?JiUKpBSz7c};~xf`@6+yjpQer4&)p3#p9|bX z%P#OMHrM$1Z#jr;b>2P>&&Qut4-j>eh>n*;I2~By=906-CL(q_&bGO^-LHf0TFdOp zv}e{5nl1?P26mTxw-0v(!GRswIE%64nl^GuYz)~;6U6cW%!xQxw8EOfzZaJv1Nb*6xF>q6h0SaHBqs#5 z;)2!CsdWnPv2c22;B1-L?ZAU;USfZfltLoRV&l(=EjC3U6F@=NZ|`7`!_G^-F+wpP zI@oM~xD)GYspAJ=y);_WmpHHA4=UR+;3M>@WP!!1ab>y+d2&FFyMh84;YM2srqQsq zNI^5MHXTNE9HTUn>np)}7FXkZRYtHJ-qd)w2DT9cwML>_Lf+@?^qF=N4t^J2m4iOV zmugv@vpxX}lsZWwT(YJJ(8sFi8HT74CxSZ{wRDkn*TVR<&a=o*Ap8MHIc2ZQ5A)%2 z;_vU(U?y9MU~o!87@H1YvBi}cs6WlV> z+I0&njz<5^)YR%xBUypxB@`Z<;e=hn_E?O2KvyX>^Ua6@V18<%)pv5I=hhNM?@$XO z9UTWlZEWPn=psNG1Cb~!U_s3)Vw-`t9Xg@{sU&)$L)EUBDtOc#TY z8NRue&tSPV`#y&wZe1LL-Zu5nAuvw0B{VV+tv4p7Jt51auim63;=%o6yQ%qQN8z-% zeSwEpjc<4V`uQebjQ(tpB%_`?P97?-Qb>j2C>OvqDmPNw^aOM(8f=D?!Vl}@wEpv# z-3gc9gl8NkpdC{@{=HUNb#Yg>@LQhWqi91}kNV~at{~Z!0w72_-5!23ypHw#gNyQK zbr-QdwB|AJD%5l}oC#DpR(WLXmEklg7GY#vyV;WCqq%Y_zv7%;EE)!JSO%UkZ6;Ej zX0ovs1PKeWF8Nr9zgu^JrcyKV?)c%lv>N+$1Kb>s9H-z!1~IV|=r-QpFF-n$U&Eo} z4+TYO{9~8^q5uv9=B#eV8uaM0lekYgIh;QPz3YDck8-Y@doWAZELd~`o=+YMyvqD! z^=P@9J)I{&<%lhv-G(jVK=~RogOv6Rb`;{>meC~xc2L`f<;e>JnQXyju7nSAM?)@6 z5l!$(KP%ZJ3;5Pe%VFn3>eYd59AD>U|> zlW*wy$gbL;n@`8~iH>Zo+U}gjy;d1#;0`LRNzx^O>%)vPi)X4}&uWSL?d;cAbJh;$ zphBBoc5O}yGEyM;J0Qz?3<~{c9k!<55@HHpLon2Ip~-A z4xhfAIr1)_3y&EVbJ;|{qwFN}7YTSS83Msq&tdyTgAJ|{>fmq&2gMkjNdqx$2WaOO zml0X*vOIIQ4j02?>vY`;j~VJb#U(b&A`zVS0@p@7h*O zhDk6Ax2!T*zlKr~A~$KKi#zOwD;NhvTaw+mNBkCTX4+j>3l_05X;npuAe4m{3yx;t zaXDc*h^sjvx;1k#&|>cw)vU}Tu14&@#S#Tb@Rq@#ugamImC2pVSB)98v~s8^Beq@! zKAm*$h5S1@Ir)-k86^wJP;!T7$Nt>1G!N#1$f^Udm@TORu}mnz2E{COxU(8(8DX{J zK?!UPHcN=JMvI==8k-0`G&;sOlC9_RyPZ2f3UPd4$ev%36gucu0QvEK;7WX(v&xZl2l>6MTM>s3(0OFUFshYLoGl zUhlHe7PnTrVbBRMtlR};ANU2A8X9itufDC(qj$Tl-i_IZR6W-3^O|k4A_fB{+!T}F z!5RwtZ$Uy)gWEy5(Yrf$6JBpGAdg2E%6P{lRMbc-aAE4r3WCv?RSL82*jo^H#%gK! zt!iz(YA_{Sv2yV`HPZfP<-(EajLvLA<}mtVEG24VsTyBuxUdqQGMucqvcMIEOCB8` zO!T2dbWsN6N*p1Tz=otE1x(Hb>Bo5NK-le`>FLMjKLO*>nq*hBa0w#_HpJB4N72x<$9f45N|+IYT;gk*Dy5S3!_JUa`B7?zS2FpX&S!15+4*`3AuQ_EwA~7a8N$?qlB{ns(z*+`<}Utk3|iz88(iZ?ESU zgJ|YUob%-*5$|~ps~{B5T>J9PD1gOskz@#nihP)#c3f0SS-^d z1OB;)%m=GmdBw5!# z`nYh93ltu3-H3hd;+Cg#NUf1rE^fW+2dBgl`zf9glg(g{(xg?pL?%~s5P1fEjZ?E6 z*@+Z_qek83GX6x$gU6dCrGXQ*6cq{8#pHDvt$pvVke7TBnjCcOx_YmfPpRE9mq(GU zw5;+TlnnslUIQFixRuDBz9#O!O}tG9y=L^zLzL)u+O13UjGf+LUo^e8yaj(wVC&`_ zACEGY8J;LLPp7DOsJ%JCRiFiMUp_7Wc)OEv^5|C2{m=<=wA~gNIpS&({>7_pTcCOb z^Q=>pX#K~bhn1UQt{jIqr8=QZo`6<%2MdUH=@cTuuqu@B8G4klnERO$dRMP+I|PxM z7vss;pE!4+zSe{g&xd|tYz6;9&GqGKfb6}{H^u=yf*O#jnz;forAaW|uUTbkCwoyJ z>?Ce`FuOnRATkyb+pY@*?lEY7_>Hm>?$L;8NO*=SXOVnciZ^DLOa;AF4%2;#zdi_R zsPl%^`8O*7yVS^=eJWAnIu?FdMpa<1g{)QNC>}GcXCGkv*0`f;~@x2qPjJ4=poqhM7M2e2TKhEWy|HV#r+9haxvQ&4WFotj{}c!6YW?f>*V4PK{<}hU>GB46;dmpx0HT2Ka8(2pEwtBFvr+Ug* z%)XMB{cYnU(Axa29aATZtD)&0HGMp|lbiMEpivgWT5|GnxPr1+6%4QZhaM~!8W8yo6ypIJafV3r*EvlzY-J9Ga5^ROFObM2Cp;fjO|?4ooEZ3NXpn~JM1 zO4_p>cLBX6EfYobR&Ok#Q`N{s1J_ti5-t~@?vVb}-%`_32c1}g%HEPV>dZE~N%=4x zzvekq;@Hc9M2tGa<3^;PxTmQhSceLo1=!+F5hsE;MxgMuuUoj`w+m9jjZS8FNxrxTLp#KI z3Dj4d?b|bS2taGJuuJ_0g*{5Yh^S}z8uI*cEWGv@!B&17Js1~iUgxzD@+glYU1Aoq zG?wTu_1y$N8Rh`6xcP-VMe^u#@E``(E|Nhp&x9}519_h#S_hwmftgJ1)(I@rlfK81 zPhR*Cn@(T&m;o?GZGG?2a?3UhD07NlghSfF$gqoq-%NANa2ZJrjgQnBk`HPK;iPSX z4l1LNm3s#Z62LAL1lw!cr#&ro-3OP@SVr2p-syWQ45Kp;r5!d}R^D^k;d1AY$-yt! zJ-}`XaA;1+2kmV+ztC$XS=+2o-x#u44%fzDU_!F~US_U-{T#lWfX=>Rdbc0l`J@IE zGGP(|7WEk6O6iTc;XoVU#fMkn1E;eLtX{At3&l5*q~lq!SI8Z$C;K|2u;4IN#2PaB z6Mk@#Ci3jRC#pkd2>$MyHLuH>N`4TNovawfp1QkKyfL?FZPOWY{6x_Q+~7(_E?x{9 zqbjpNPuJYM*Vn+IX{oc$-G|*lHpJT5ozyNP!zrWG%>o*pCp4>wNCjx^7{BgdJa60fu(vcd>t?gMfs!WWAL(|HUc` z%?~@z8=*f(2aON+fRKeU9Y*+$)J!stx)*r7L5Syg810hDu|wRa=&P7ekKABM?d|RZ zM)U2|t*YK`boa7!e#&k0_$d*f`lsIIXGUg&aYkA@WUzzG4S|OCXTvUHi;p=PRrtB? zm(6Z$ek>QD+1B;}wAF?0$vq~8B+EiX_~v**y0FZZMnO(oC4b=e#ao)BNtw2D<;Drl z?+bieR4m&C2H7g^2(Aejp)jmaUn-e>B7QL3xQv@*Zai0)wvnY499cPqG9pc`zscCg zf5jznMg+6|{%NqcCm-L*FwPpg9UXxFfFZCm5k6Rj=RsoAM6G4nmrP}o- z%!SyCAi|-=q6Z&`SCJn%jd2f{1o=3HWVoV-r11ZvCu@<} zGu-~-DZ2&-7PpIn8Euio$?({0L_1~&=UQtzb#?VM(~q`35v4q*e>RD|2o8mfqB_T( z5L)&}RuBhMr~Y=%;n=>$4R)m*4rBQ z7^izcIz)9wsCy%JMCV{pg2zwjTw+qj(ZHC|yh6jWu5pAqWP+U!oT;ayStck&(Uc8f zTK%OWx}M3SQnhH-TZH_ZI7u@^0BFCJ_5`s+u9Y5&#Ou-Q_fyK@pxAG3BM@*MkUojE zRV@yD(yQe(m%}pj+W+7#B?Ln`#VFqg1aVuDv2ih3V^?xlAVYnSE&d4?oO!{?R(CbI zV<3>(C@t&+dyka}>2O7WqQsz0kh&A>6L)te$B%;vK6NCC4~}udSBR((0VAoj0AU|8 z79zIB;E>Bew5qu}nQ?C&JOc$7qs(0G1gZWE1VIa)!%s!Us6u7bywJJGZbs5aiOj`Q zq5zX!F6xQtld%n?!%sytzTQGOzRXup;>~XwP`(yUZE4Bjkg@#Y**{JNDKF_09U-yU zRZb7k)ge}TNohuCGo>B8c{c*o9}DS4R>NC9yTv^RQwPu4KipdxN?IZ_mm)9SQ=&hajRB%)!!Ck0jfz z1p37hMh)M`Y+h@`0_{}cHmavplcbZOU>H@aU{?`!H5N?v@pi?*%IEWYrJ1cS|GwsU z{mZ=gQh)6L4{P`>skX?;Y#ST7R;i8ZK@io)m6&mj_8MC$_>{58T>j5#5sglwH zy>XBSc0Pr604h{unc^^*st1J#&(`*Xj@R3Lv%+W1zGaCzp8(!Lgxt1`GSUNYTQ4LM z*HNVPoba0Gs7?`%iMzdr{WFcZ@ zFwU)RYA=+r{RO(F4|th&g&My(dwJ+%W72L=OUrPW-g+3ZqM#I?dn2vrR*jwfg6(1n6XwmUAPdSw^+?)*vNv_AP2@SdnCv*j##Gx>p}?lx zTQS#)2h49G+r+h#@z)!=_lx#PL8>TU652`|L|Z{VTOGOnw@}~H-CC&y=mVnE-75QQ z+mCfk3s&sr3IkUaG)tC|%;JU>lWmGVDV^vJuyH+h)@*EgMm0=_Fd!;}J0rYKIVeQqMtOcuKN{g{EopZ%4Vih#8UQ#N za;}~=M)RpA7#)aIO5toO<4Ho{NTAPTbULAJ!xtsjpN|Hn=J41EVt#HVYN)_hcSL&XGTou@eFt<}ooJpVc-%6164gAFMNoAsAA zX71bjQN8JXb=Cf+u^168l8W|fJLZkq7IU_cOJ~SSBkd$@GwrR}76XZ}DbKm=l!v!m zP($xkF@IYT+!#t-7X-zj{EkcfdTOUm-fw?bVrV{o^UKPcr z4?JT+2WogSY@Ru!AaSmNIt63p!Lxqr_RaE&WZOA=s06c(lR3r;0WE2aU^@?$Vfir> zTxu^@t>EQu6Rg;_9cad7+LTzOn5vVLvWirIvII{X_GndNw;P5p@ww z*8@KRmr|e!%IIH5DdNdEhHTfj51TZ2OB-DatdE7q#?P$*?#x~v(m79o6V)0cyW^Y% z&YA6ZXHWhuNl}!!=*xA$aIy-!TU)v{uy7g+W>R}E8wJI3b(TZ_5tNh^>}1P`T_bV^8fwfyyas z{RD*9xXi4q16?D>*^0V@r+aB2Zwq+v^ZY%JUdO}JXl(D3T8UdR{`g?C@v4;_4#Zk? z;q8qbO$G;MIBE;FQ#!G+L6E*tXf5SJ$Hn;hWZk|5Ez>s8(jua`2h0rUISvp}ZtrlN z6&myKez}n`T4ZHsVB-Z)q!NsFTf}6jA3u09Rpffn>Sfi}0o+`&kTjlL3=l^B#*R&# z1Jd+999`}2>ur+K{It>5?EYh!o&Q;5_kex>z#BN2d+i(}wT=GmU+MKccR<@eP||Yk zvm@NHGB=%}ppxV-7M>bDm@E60=_) zyp#*P@-gM^c$0oxXfb_Zl?7)b8u*6r&D+}1hZd;BchVD~=m^aVRiP6z(XVOsB-t!m z%GHU?RHVoyZI#qDcoeAX>5^COi}0+46LvPuH@M6Nt;r5!f$uU1!7QR&GR(+?KhvOoyX~fve~mRG8hXsa>u^k-YDc` zf@|uG5Hmwb=rOIC>#j;FQqJ*x*KiYHR?_>kyf|Ygk7PNsj1{I?P$DRs6q2ajh%;e=HGmaC#*R-dtSevI#kuR)rb_&;8etb3 zdkY6sBO^x#Ivsl>O9#4t3jgG!(*8pZjOh#Sr$-Tf2L2Ls^+;F_f)P|?C2CbZ0oH$8 z2ir)AeMb58XuvV*Jvy?TIbz9p=PJWChKr+KYzGQDG(b14z42J5>EW+qJKIEoq~VIy zTcGVu2bPhM2pft0g9=?2Bv0~*G2lJ8Ru>If7Rz(ICLZQSKlU1dJzH6BZgr;v-bg3Y zbWMHer5eD&t)TXG5$%P~WnIuSEp|5(D9#?M%abq0J}P{9=c~_u?(&pv;ROd$Y&AJ? z{{;E(dSC?P0>kTv9Ypr?l;~eQVC3p(WN)o!DP?AD;XwDFrGNH9X7Wb#Iz2-0HPs_7 z^^TyvU<)*mN}i!|;Sm9xf{iqNY_$RLhTPNTd8(EGkYbg4z)d7K(>E(m;l1NH2#39u z0%=F;qF`jJ)FMaH2CX)2w#849IdPZ{N$Q5)V;7L)uG8cAGGVD%zUQk-ZF7I)k&}mc2e7+nT2!OiVO%V7@mJvA#4V5UF|N70CS-x#EV9L zEql!|DSWZ}^$&)TxJPS}L_?D8P_`IymW+RV%*(WG0)ZrQRpk0=J2Xb=6q)pkRaRB5 za`|G&XV0HR5V&mHO&C}$t1jq?ZiQ>=jW;HO=^;2J`_a}$lgxBzaAENV$!9R)EtwUq z%8+xe7`pbU!0XH-Nt(%_Rz?Y&&Z<9xcC+UoE~>9+(Q3n5ffGKChWQa82Pb2eC?^(F z*_bJ3sV&0*G9>UHrB`g=bNY;;4X)idLk6=uG1~dJF&NTm#-%eb;3jaQ3+f*hZ!>8T zrQb+X*MTo(-b{A@Y^KQeuIZ>mZWQaj_Kmr6gogyrC?f@?T%og$jDit+jzC5pfjB#a zBdnu<3f0G$#_06oq^+NT;3`h0EfZ~N=(qP9zeo3<$335V zGBoN9W2oOBR}35K9xD@$TMX^?Ymvdx5!?~?xKMGy~<@-J&$;LJ~s01?^RK1I^E2d5|@Uo zsRUKHKe=zy)Gim#rn>jsXEKhpX2K_+w7w^!)HVp@)n-1EBI@K`Hb;17R5-40Q(Zc3 zB;NL1^fjz@e&}~k989wID`?;MjbcvgE$2Ne-`Z`&+REZ)bMLVy{`r$L_^z92lU*Ad zL&D3?R+r)M&u~?m2g^D87DYC&Sjrj> zmM?Uk19n){OB;GNOuJ^gQk8cO&Uir=TsG9UuX^;oT398&ZX*rMMexM)GbNJ?Gq+z` zpU>K}JKW8o6PxfxQkS6~OtDv?R& zzHnE1OR&X#;nDtnX`_ZT>*?sz(ed>><|t=k`>=a_$3vr3U>8&+W#~B&vpn*GZS)0gS_vNdT z1eu4|3p8y;hdWam=J<)XjBK?aAzW%rE1E%}`ZL}QUh zF%N<4K?w!Uh?iXcDEAN+-_%0NX56%zX;&$4)mb~mz4!cEjpQ&9XaD)pi1m+4Lj-^T zG_*00v$wHzpfj+sH~NQ42=YMyDRKdRUip9f@Qjz24WLH}+L8W%FT9o;FV+X9mT4%V zVL&Xntunj*LyR)-T>t3-Z8@5MTgQFk&3#flwl9~ojc!V8kwkX|+|Rq*bwbH-N1jUL<;=dHY3X{(woml`qC9(Hn>!-L{! zSYoJ?83PV7TWkwU()eQ7%9DzpI%ZA89*p!pS>x9OS#1&2`7f6)^B*elBl9%`JnQ z=ZGp%SP$iOZZxaX{E<{Fc}5DkM(!%E4aNMjvYkc^@fLN?E;K<`Znjba1 zv%35@0*NVc{1cC>339+n^TinDo|P+_cICDf^Ol^uh` zKa=CS>admMSM96otzU!CE@kbu-dIfPOOyM%NOe9u#+a`DT7Oaeb!fj-Xraq0U%KI% zQPEQ!;JDc)l+KFCLDkAT7;e}^ek+nIfg`F4`kvt^_=uY1w}raf)@{+q6oa8Isf|Fb z2=I|=d5wr@j;FMx-K=R5Mg-$RmHc%2AS(xROH}A>e36l@%5eFH6Dv(&R625*5M)A8(DW7VYp&R#PuF z9>(Y?59Uj3d)w_*Oc*XTHu5cu`qZm)RG~NUpV`Q5CYV*=>5`$X{f()Q`_C<^;jhQn z=AMs}ZphteH8x?L$oDk7{^1>Y&pQ01@4g+p1;wn@RLW~Q|3UaLCyD>oWP zj~h1Xj&yD5a2MgPeR=8dlqMC~ALaZ{drq8}5@7qW=dd65O7ru^&#FWJIl1|deD6Qs z`#))4r-HP_06k0>{1d*v-pG;}yg_6!spDUWhX|G~(C}l5Fx3&bW{r6tUMtJm=;%H; z&Od*|+}*G9_F65JY=zDX=Mc}I1<-QQieuZuS6MQ)w;OuhWI`n@L%K!@IVZ3TKDMJ&S4tIq9Hbz zG3fF;o15KVuNG4m^@S#r*k&isX=eA_|Qqgr}I{ zIKKtckK7eDw~Zy-1N4g`x3<2R4T7KS@UMQm=1jsCmzrhsEp<#)>Cs%LbkDO1TK3-1 zVFKxriCX6xH)(_+uI&6#{>rZvFUGVC|3)%=F3cWFiEkgNy&c0_e8XGb(R~x}-|nFQ zp#nf4njik{e=Pk3*CZ|){i6iTpQz&>OF#YBLqpK!CwjMb)KPM?HFD7UhnJC){I5UI zq)boz@Y71_M~l$^rS-^6})BL(MLYjqvVLz~^3p&IL0p0-J0!$2` zo_|t)el|8+x2=%y5(hf_CeRKkgiavK1n3B$W{AbeMqqUW!&c6YOHWl9u1PyEN}!n2 z4J?D9j(`q7AO;@Ly@Gyz7Q&#(pH)Gopr59NZUFkp9|!}aeuE7_oCAWc6@6PZLhBDk zHIUuK=$ow3O+X)XL6{(;2R4Dw5DdD3=wlcN1LgF=1|nx^EF&7|=Am~h5$4@C1e=G} zsl?jJL^l+@xs5PX!W3*MO5+<{H)_)mp_hSSm6;j?Mne%@J8D&qtliQQNjtP+N7s#B la3b_`+F%J^NLD}&b3`#3;LQrmY@iGXguu+$W2*+_0RY`b$>IP2 diff --git a/global-api/importer/argentinian_datasets/cammesa/transformation_cammesa.py b/global-api/importer/argentinian_datasets/cammesa/transformation_cammesa.py index 104e93e30..3e3ef6a75 100644 --- a/global-api/importer/argentinian_datasets/cammesa/transformation_cammesa.py +++ b/global-api/importer/argentinian_datasets/cammesa/transformation_cammesa.py @@ -2,33 +2,125 @@ import argparse import uuid import os -import duckdb - - -#-------------------------------------------------------------------------- - # Pre Process -#-------------------------------------------------------------------------- - -con = duckdb.connect() -con.install_extension("spatial") -con.load_extension("spatial") - -df = con.execute("""SELECT Field1 AS Year, - Field2 AS Month, - Field3 AS Machine, - Field4 AS Center, - Field5 AS Agent, - Field6 AS Agent_Desc, - Field7 AS Region, - Field8 AS Provence, - Field9 AS Country, - Field10 AS Machine_Type, - Field11 AS Source_Generation, - Field12 AS Technology, - Field13 AS Hydraulic_Category, - Field14 AS Category_Region, - Field15 AS Net_Generation_MWh - FROM ST_read("raw_cammesa_monthly_electricity_generation.xlsx") WHERE Field1 IS NOT NULL OFFSET 13""").df() - -# Close the connection -con.close() \ No newline at end of file + +def uuid_generate_v3(name, namespace=uuid.NAMESPACE_OID): + """generate a version 3 UUID from namespace and name""" + assert isinstance(name, str), "name needs to be a string" + assert isinstance(namespace, uuid.UUID), "namespace needs to be a uuid.UUID" + return str(uuid.uuid3(namespace, name)) + +if __name__ == "__main__": + parser = argparse.ArgumentParser() + parser.add_argument("--filepath", help="path to the files location", required=True) + args = parser.parse_args() + absolute_path = os.path.abspath(args.filepath) + + # read the raw data + raw_data = f'{absolute_path}/raw_cammesa_monthly_electricity_generation.xlsx' + df = pd.read_excel(raw_data) + + #-------------------------------------------------------------------------- + # Pre-Process + #-------------------------------------------------------------------------- + + # assign column names + df.columns = df.loc[57] + + # cleaning the df + df= df[58:] + df = df.reset_index(drop=True) + + # select specific columns + df = df[['AÑO','PROVINCIA','FUENTE GENERACION','COMBUSTIBLE','CONSUMO', 'Factor CO2 por Combustible','EMISIÓN [Ton CO2]']] + + # Calculate annual values + df = df.groupby(['AÑO', 'PROVINCIA', 'FUENTE GENERACION', 'COMBUSTIBLE', 'Factor CO2 por Combustible'])[['CONSUMO', 'EMISIÓN [Ton CO2]']].sum().reset_index() + + # rename columns + df = df.rename(columns={ + 'AÑO': 'year', + 'PROVINCIA': 'region_name', + 'FUENTE GENERACION': 'source_generation', + 'COMBUSTIBLE': 'fuel', + 'Factor CO2 por Combustible': 'emission_factor_value', + 'CONSUMO': 'activity_value', + 'EMISIÓN [Ton CO2]': 'emissions_value' + }) + + # translation of generation sources + generation_source_dict = { + 'Renovable': 'renewable', + 'Térmica': 'thermal' + } + df['source_generation'] = df['source_generation'].replace(generation_source_dict) + + # translation of fuel types + fuel_dict = { + 'GAS NATURAL': 'natural gas', + 'CARBÓN MINERAL': 'mineral coal', + 'FUEL OIL': 'fuel oil', + 'GAS OIL': 'gas oil' + } + df['fuel'] = df['fuel'].replace(fuel_dict) + + # create a activity name column + df['activity_name'] = df['fuel'] + ' combustion consumption for energy generation from ' + df['source_generation'] + ' plants' + + # convert tonnes to kg + df['emissions_value'] *= 1000 + + # change province name + df['region_name'] = df['region_name'].replace('SGO.DEL ESTERO', 'SANTIAGO DEL ESTERO') + + # assigning province CODE based on the province name + region_code_dic = { + 'BUENOS AIRES':'AR-B', + 'CATAMARCA':'AR-K', + 'CHUBUT':'AR-U', + 'CORDOBA':'AR-X', + 'CORRIENTES':'AR-W', + 'ENTRE RIOS':'AR-E', + 'JUJUY':'AR-Y', + 'LA PAMPA':'AR-L', + 'LA RIOJA':'AR-F', + 'MENDOZA':'AR-M', + 'NEUQUEN':'AR-Q', + 'RIO NEGRO':'AR-R', + 'SALTA':'AR-A', + 'SAN JUAN':'AR-J', + 'SAN LUIS':'AR-D', + 'SANTA CRUZ':'AR-Z', + 'SANTA FE':'AR-S', + 'SANTIAGO DEL ESTERO':'AR-G', + 'TIERRA DEL FUEGO':'AR-V', + 'TUCUMAN':'AR-T', + 'MISIONES': 'AR-N', + 'FORMOSA': 'AR-P', + 'CHACO': 'AR-H' + } + df['region_code'] = df['region_name'].map(region_code_dic) + + df = df.drop(columns=['source_generation', 'fuel']) + + df.loc[:, 'emission_factor_units'] = 'tonne/tonne' + df.loc[:, 'activity_units'] = 'tonne' + df.loc[:, 'emissions_units'] = 'kg' + df.loc[:, 'source_name'] = 'CAMMESA' + df.loc[:, 'temporal_granularity'] = 'annual' + df.loc[:, 'gas_name'] = 'CO2' + df.loc[:, 'GPC_refno'] = 'I.4.4' + + + # Define a function to generate UUID for each row + def generate_uuid(row): + id_string = str(row['region_code']) + str(row['emissions_value']) + str(row['year']) + str(row['gas_name']) + str(row['GPC_refno']) + return uuid_generate_v3(id_string) + + # Apply the function to each row and assign the result to a new column 'id' + df['id'] = df.apply(generate_uuid, axis=1) + + col_order = ['id', 'source_name', 'GPC_refno', 'region_name', 'region_code', 'temporal_granularity', 'year', 'activity_name', 'activity_value', + 'activity_units', 'gas_name', 'emission_factor_value', 'emission_factor_units', 'emissions_value', 'emissions_units'] + df = df.reindex(columns=col_order) + + df.to_csv(f'{absolute_path}/processed_cammesa_AR.csv', sep=",", decimal=".", index=False) \ No newline at end of file From 888fc34f37700861ccbff764e28f3a4bdf1e3868 Mon Sep 17 00:00:00 2001 From: Maureen Fonseca Mora <107511484+mfonsecaOEF@users.noreply.github.com> Date: Tue, 16 Apr 2024 14:46:04 -0600 Subject: [PATCH 10/45] update --- .../argentinian_datasets/cammesa/README.md | 21 +++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 global-api/importer/argentinian_datasets/cammesa/README.md diff --git a/global-api/importer/argentinian_datasets/cammesa/README.md b/global-api/importer/argentinian_datasets/cammesa/README.md new file mode 100644 index 000000000..c81081edf --- /dev/null +++ b/global-api/importer/argentinian_datasets/cammesa/README.md @@ -0,0 +1,21 @@ +# cammesa - Argentina +Local data of energy generation by power plants in Argentina. This source is used to calculate GHG emissions for subsector of Energy industries in Stationary Energy sector (I.4.4). + +1. Extract the activity data from the source [cammesa](https://cammesaweb.cammesa.com/download/factor-de-emision/) + +2. Transform the activity into emission data align with the Global API schema: +```bash +python ./importer/argentinian_datasets/cammesa/transformation_cammesa.py --filepath [path where the transformed data will be saved] +``` +3. Extract the activity row from the source: +```bash +psql -U ccglobal -d ccglobal -f ./importer/argentinian_datasets/cammesa/loading_cammesa.sql +``` + +### Directory tree +```sh +. +├── README.md # top level readme +├── transformation_cammesa.py # transformation script +└── load_cammesa.sql # loading script +``` \ No newline at end of file From 1527466e12d37f8a7a1f5dbd5af27051065cf4e6 Mon Sep 17 00:00:00 2001 From: mfonsecaOEF Date: Tue, 16 Apr 2024 14:47:46 -0600 Subject: [PATCH 11/45] fix:wrong_extention --- .../argentinian_datasets/cammesa/README | 21 ------------------- 1 file changed, 21 deletions(-) delete mode 100644 global-api/importer/argentinian_datasets/cammesa/README diff --git a/global-api/importer/argentinian_datasets/cammesa/README b/global-api/importer/argentinian_datasets/cammesa/README deleted file mode 100644 index c81081edf..000000000 --- a/global-api/importer/argentinian_datasets/cammesa/README +++ /dev/null @@ -1,21 +0,0 @@ -# cammesa - Argentina -Local data of energy generation by power plants in Argentina. This source is used to calculate GHG emissions for subsector of Energy industries in Stationary Energy sector (I.4.4). - -1. Extract the activity data from the source [cammesa](https://cammesaweb.cammesa.com/download/factor-de-emision/) - -2. Transform the activity into emission data align with the Global API schema: -```bash -python ./importer/argentinian_datasets/cammesa/transformation_cammesa.py --filepath [path where the transformed data will be saved] -``` -3. Extract the activity row from the source: -```bash -psql -U ccglobal -d ccglobal -f ./importer/argentinian_datasets/cammesa/loading_cammesa.sql -``` - -### Directory tree -```sh -. -├── README.md # top level readme -├── transformation_cammesa.py # transformation script -└── load_cammesa.sql # loading script -``` \ No newline at end of file From 65d9789fafbb3fb4a19b54db7cfcff4309239ccd Mon Sep 17 00:00:00 2001 From: Amanda Eames Date: Thu, 25 Apr 2024 02:00:29 +1200 Subject: [PATCH 12/45] added route, datasoure seeder and import script --- global-api/import_argentiniandatasets.sh | 45 +++++++++ .../BEN/loading_BEN_AR.sql | 4 +- .../argentinian_datasets/SESCO/load_SESCO.sql | 4 +- .../datasource_seeder/datasource_seeder.csv | 34 ++++--- global-api/main.py | 6 ++ global-api/routes/region_code_endpoint.py | 99 +++++++++++++++++++ 6 files changed, 178 insertions(+), 14 deletions(-) create mode 100755 global-api/import_argentiniandatasets.sh create mode 100644 global-api/routes/region_code_endpoint.py diff --git a/global-api/import_argentiniandatasets.sh b/global-api/import_argentiniandatasets.sh new file mode 100755 index 000000000..ba8591e16 --- /dev/null +++ b/global-api/import_argentiniandatasets.sh @@ -0,0 +1,45 @@ +#!/bin/bash + +if command -v python3 &>/dev/null; then + python_cmd=python3 +else + python_cmd=python +fi + +export PGPASSWORD=$CC_GLOBAL_API_DB_PASSWORD +export DB_URI="postgresql://$CC_GLOBAL_API_DB_USER:$CC_GLOBAL_API_DB_PASSWORD@$CC_GLOBAL_API_DB_HOST/$CC_GLOBAL_API_DB_NAME" + +# Argentinian +pushd importer/argentinian_datasets/BEN/ +$python_cmd ./extraction_BEN_AR.py --filepath ./ + +$python_cmd ./transformation_BEN_AR.py --filepath ./ + +psql -h $CC_GLOBAL_API_DB_HOST \ + -U $CC_GLOBAL_API_DB_USER \ + -d $CC_GLOBAL_API_DB_NAME \ + -f loading_BEN_AR.sql + +popd + +pushd importer/argentinian_datasets/ENARGAS/ +$python_cmd ./transformation_ENARGAS.py --filepath ./ + +psql -h $CC_GLOBAL_API_DB_HOST \ + -U $CC_GLOBAL_API_DB_USER \ + -d $CC_GLOBAL_API_DB_NAME \ + -f load_ENERGAS.sql + +popd + +pushd importer/argentinian_datasets/SESCO/ +$python_cmd ./extraction_SESCO_AR.py --filepath ./ + +$python_cmd ./transformation_SESCO_AR.py --filepath ./ + +psql -h $CC_GLOBAL_API_DB_HOST \ + -U $CC_GLOBAL_API_DB_USER \ + -d $CC_GLOBAL_API_DB_NAME \ + -f load_SESCO.sql + +popd \ No newline at end of file diff --git a/global-api/importer/argentinian_datasets/BEN/loading_BEN_AR.sql b/global-api/importer/argentinian_datasets/BEN/loading_BEN_AR.sql index 59b6ff2aa..a58f53895 100644 --- a/global-api/importer/argentinian_datasets/BEN/loading_BEN_AR.sql +++ b/global-api/importer/argentinian_datasets/BEN/loading_BEN_AR.sql @@ -1,5 +1,7 @@ +DROP TABLE IF EXISTS country_code_staging; + -- Create a staging table -CREATE TEMP TABLE IF NOT EXISTS country_code_staging (LIKE country_code INCLUDING ALL); +CREATE TABLE country_code_staging (LIKE country_code INCLUDING ALL); -- Clear the staging table TRUNCATE country_code_staging; diff --git a/global-api/importer/argentinian_datasets/SESCO/load_SESCO.sql b/global-api/importer/argentinian_datasets/SESCO/load_SESCO.sql index d7bec1074..569d96563 100644 --- a/global-api/importer/argentinian_datasets/SESCO/load_SESCO.sql +++ b/global-api/importer/argentinian_datasets/SESCO/load_SESCO.sql @@ -7,7 +7,7 @@ TRUNCATE region_code_staging; -- Load the staging table from the downloaded file \copy region_code_staging (id,source_name,"GPC_refno",region_name,region_code,temporal_granularity,year,activity_name,activity_value,activity_units,gas_name,emission_factor_value,emission_factor_units,emissions_value,emissions_units) FROM 'processed_SESCO_AR.csv' WITH (FORMAT CSV, HEADER); --- Update the main table with the staging table +-- -- Update the main table with the staging table INSERT INTO regionwide_emissions (id,source_name,"GPC_refno",region_name,region_code,temporal_granularity,year,activity_name,activity_value,activity_units,gas_name,emission_factor_value,emission_factor_units,emissions_value,emissions_units) SELECT id,source_name,"GPC_refno",region_name,region_code,temporal_granularity,year,activity_name,activity_value,activity_units,gas_name,emission_factor_value,emission_factor_units,emissions_value,emissions_units FROM region_code_staging @@ -29,5 +29,5 @@ INSERT INTO regionwide_emissions (id,source_name,"GPC_refno",region_name,region_ emissions_value = excluded.emissions_value, emissions_units = excluded.emissions_units; --- Drop the staging table +-- -- Drop the staging table DROP TABLE region_code_staging; \ No newline at end of file diff --git a/global-api/importer/datasource_seeder/datasource_seeder.csv b/global-api/importer/datasource_seeder/datasource_seeder.csv index 6a62ae10a..196363024 100644 --- a/global-api/importer/datasource_seeder/datasource_seeder.csv +++ b/global-api/importer/datasource_seeder/datasource_seeder.csv @@ -1,23 +1,23 @@ datasource_id,publisher_id,datasource_name,dataset_name,dataset_descrption,source_type,access_type,dataset_url,geographical_location,start_year,end_year,latest_accounting_year,frequency_of_update,spatial_resolution,language,accessibility,data_quality,notes,units,methodology_description,methodology_url,transformation_description,retrieval_method,api_endpoint,gpc_reference_number,scope -143F3378-17E7-4732-BF17-4253160A7CFE,EPA,Environmental Protection Agency,Manufacturing Industries and Construction Direct Emitters reported in the Greenhouse Gas Reporting Program," +143F3378-17E7-4732-BF17-4253160A7CFE,EPA,Environmental Protection Agency,Manufacturing Industries and Construction Direct Emitters reported in the Greenhouse Gas Reporting Program," EPA provides information about GHG emissions from large facilities in the U.S. These facilities are required to report annual data about GHG emissions to EPA as part of the Greenhouse Gas Reporting Program (GHGRP). ",third_party,public,https://www.epa.gov/,US,2019,2022,2023,annual,point source,en,,high,Initial import,kg,"Direct-emitting facilities report emissions from combustion or process sources, such as fuel combustion and chemical transformations, using methods like continuous emission monitoring systems (CEMS) or default emission factors. ",https://www.epa.gov/ghgreporting/learn-about-greenhouse-gas-reporting-program-ghgrp,"Facility emissions in the GHGRP are adjusted to fit the GPC format. The EPA categorizes facilities into nine industry groups, and they report direct emissions from 23 facility-level processes. Facilities often engage in multiple emission-generating processes. If a facility reports emissions from a single activity, it's placed in that industry group. If reporting includes stationary combustion, those emissions are added, and the facility is categorized accordingly. In cases of multiple activities with stationary combustion, the highest-emission activity determines the industry group, while others are classified separately.",global_api,https://ccglobal.openearth.dev/api/v0/ghgrp_epa/city/:locode/:year/:gpcReferenceNumber,I.3.1,1 -06BB5C1D-E554-40D7-B619-DA768A5FD607,EPA,Environmental Protection Agency,Power Plant Auxiliary Operations as Direct Emitters reported in the Greenhouse Gas Reporting Program ," +06BB5C1D-E554-40D7-B619-DA768A5FD607,EPA,Environmental Protection Agency,Power Plant Auxiliary Operations as Direct Emitters reported in the Greenhouse Gas Reporting Program ," EPA provides information about GHG emissions from large facilities in the U.S. These facilities are required to report annual data about GHG emissions to EPA as part of the Greenhouse Gas Reporting Program (GHGRP). ",third_party,public,https://www.epa.gov/,US,2019,2022,2023,annual,point source,en,,high,Initial import,kg,"Direct-emitting facilities report emissions from combustion or process sources, such as fuel combustion and chemical transformations, using methods like continuous emission monitoring systems (CEMS) or default emission factors. ",https://www.epa.gov/ghgreporting/learn-about-greenhouse-gas-reporting-program-ghgrp,"Facility emissions in the GHGRP are adjusted to fit the GPC format. The EPA categorizes facilities into nine industry groups, and they report direct emissions from 23 facility-level processes. Facilities often engage in multiple emission-generating processes. If a facility reports emissions from a single activity, it's placed in that industry group. If reporting includes stationary combustion, those emissions are added, and the facility is categorized accordingly. In cases of multiple activities with stationary combustion, the highest-emission activity determines the industry group, while others are classified separately.",global_api,https://ccglobal.openearth.dev/api/v0/ghgrp_epa/city/:locode/:year/:gpcReferenceNumber,I.4.1,1 -C309DE81-6D75-4782-98B0-A9229D43F042,EPA,Environmental Protection Agency,Solid Waste emissions by landfills as Direct Emitters reported in the Greenhouse Gas Reporting Program," +C309DE81-6D75-4782-98B0-A9229D43F042,EPA,Environmental Protection Agency,Solid Waste emissions by landfills as Direct Emitters reported in the Greenhouse Gas Reporting Program," EPA provides information about GHG emissions from large facilities in the U.S. These facilities are required to report annual data about GHG emissions to EPA as part of the Greenhouse Gas Reporting Program (GHGRP). ",third_party,public,https://www.epa.gov/,US,2019,2022,2023,annual,point source,en,,high,Initial import,kg,"Direct-emitting facilities report emissions from combustion or process sources, such as fuel combustion and chemical transformations, using methods like continuous emission monitoring systems (CEMS) or default emission factors. ",https://www.epa.gov/ghgreporting/learn-about-greenhouse-gas-reporting-program-ghgrp,"Facility emissions in the GHGRP are adjusted to fit the GPC format. The EPA categorizes facilities into nine industry groups, and they report direct emissions from 23 facility-level processes. Facilities often engage in multiple emission-generating processes. If a facility reports emissions from a single activity, it's placed in that industry group. If reporting includes stationary combustion, those emissions are added, and the facility is categorized accordingly. In cases of multiple activities with stationary combustion, the highest-emission activity determines the industry group, while others are classified separately.",global_api,https://ccglobal.openearth.dev/api/v0/ghgrp_epa/city/:locode/:year/:gpcReferenceNumber,III.1.1,1 -8F3E7542-3C50-4E33-B2F7-57F326CBF9A6,EPA,Environmental Protection Agency,Power Plants as Direct Emitters reported in the Greenhouse Gas Reporting Program ," +8F3E7542-3C50-4E33-B2F7-57F326CBF9A6,EPA,Environmental Protection Agency,Power Plants as Direct Emitters reported in the Greenhouse Gas Reporting Program ," EPA provides information about GHG emissions from large facilities in the U.S. These facilities are required to report annual data about GHG emissions to EPA as part of the Greenhouse Gas Reporting Program (GHGRP). ",third_party,public,https://www.epa.gov/,US,2019,2022,2023,annual,point source,en,,high,Initial import,kg,"Direct-emitting facilities report emissions from combustion or process sources, such as fuel combustion and chemical transformations, using methods like continuous emission monitoring systems (CEMS) or default emission factors. ",https://www.epa.gov/ghgreporting/learn-about-greenhouse-gas-reporting-program-ghgrp,"Facility emissions in the GHGRP are adjusted to fit the GPC format. The EPA categorizes facilities into nine industry groups, and they report direct emissions from 23 facility-level processes. Facilities often engage in multiple emission-generating processes. If a facility reports emissions from a single activity, it's placed in that industry group. If reporting includes stationary combustion, those emissions are added, and the facility is categorized accordingly. In cases of multiple activities with stationary combustion, the highest-emission activity determines the industry group, while others are classified separately.",global_api,https://ccglobal.openearth.dev/api/v0/ghgrp_epa/city/:locode/:year/:gpcReferenceNumber,I.4.4,1 -C57F697D-2659-450E-BAF6-6F142D18A9AF,EPA,Environmental Protection Agency,Industries as Direct Emitters reported in the Greenhouse Gas Reporting Program ," +C57F697D-2659-450E-BAF6-6F142D18A9AF,EPA,Environmental Protection Agency,Industries as Direct Emitters reported in the Greenhouse Gas Reporting Program ," EPA provides information about GHG emissions from large facilities in the U.S. These facilities are required to report annual data about GHG emissions to EPA as part of the Greenhouse Gas Reporting Program (GHGRP). ",third_party,public,https://www.epa.gov/,US,2019,2022,2023,annual,point source,en,,high,Initial import,kg,Process emissions are determined through mass balance approaches or emission factors specific to each source category.,https://www.epa.gov/ghgreporting/learn-about-greenhouse-gas-reporting-program-ghgrp,"Facility emissions in the GHGRP are adjusted to fit the GPC format. The EPA categorizes facilities into nine industry groups, and they report direct emissions from 23 facility-level processes. Facilities often engage in multiple emission-generating processes. If a facility reports emissions from a single activity, it's placed in that industry group. If reporting includes stationary combustion, those emissions are added, and the facility is categorized accordingly. In cases of multiple activities with stationary combustion, the highest-emission activity determines the industry group, while others are classified separately.",global_api,https://ccglobal.openearth.dev/api/v0/ghgrp_epa/city/:locode/:year/:gpcReferenceNumber,IV.1,1 -930F05CF-1796-4E25-B391-686BEA746A88,EPA,Environmental Protection Agency,Solid Waste Treatment Plants as Direct Emitters reported in the Greenhouse Gas Reporting Program ," +930F05CF-1796-4E25-B391-686BEA746A88,EPA,Environmental Protection Agency,Solid Waste Treatment Plants as Direct Emitters reported in the Greenhouse Gas Reporting Program ," EPA provides information about GHG emissions from large facilities in the U.S. These facilities are required to report annual data about GHG emissions to EPA as part of the Greenhouse Gas Reporting Program (GHGRP). ",third_party,public,https://www.epa.gov/,US,2019,2022,2023,annual,point source,en,,high,Initial import,kg,"Direct-emitting facilities report emissions from combustion or process sources, such as fuel combustion and chemical transformations, using methods like continuous emission monitoring systems (CEMS) or default emission factors. ",https://www.epa.gov/ghgreporting/learn-about-greenhouse-gas-reporting-program-ghgrp,"Facility emissions in the GHGRP are adjusted to fit the GPC format. The EPA categorizes facilities into nine industry groups, and they report direct emissions from 23 facility-level processes. Facilities often engage in multiple emission-generating processes. If a facility reports emissions from a single activity, it's placed in that industry group. If reporting includes stationary combustion, those emissions are added, and the facility is categorized accordingly. In cases of multiple activities with stationary combustion, the highest-emission activity determines the industry group, while others are classified separately.",global_api,https://ccglobal.openearth.dev/api/v0/ghgrp_epa/city/:locode/:year/:gpcReferenceNumber,III.3.1,1 -0D7F6F31-D483-4170-B36C-C9CFC0434A09,EPA,Environmental Protection Agency,Fugitive emissions of Natural Gas as Direct Emitters reported in the Greenhouse Gas Reporting Program," +0D7F6F31-D483-4170-B36C-C9CFC0434A09,EPA,Environmental Protection Agency,Fugitive emissions of Natural Gas as Direct Emitters reported in the Greenhouse Gas Reporting Program," EPA provides information about GHG emissions from large facilities in the U.S. These facilities are required to report annual data about GHG emissions to EPA as part of the Greenhouse Gas Reporting Program (GHGRP). ",third_party,public,https://www.epa.gov/,US,2019,2022,2023,annual,point source,en,,high,Initial import,kg,source category. Suppliers report emissions based on mass balance methods or direct measurement of carbon quantities. CO2 injection facilities report CO2 quantities received for injection and must develop EPA-approved monitoring plans.,https://www.epa.gov/ghgreporting/learn-about-greenhouse-gas-reporting-program-ghgrp,"Facility emissions in the GHGRP are adjusted to fit the GPC format. The EPA categorizes facilities into nine industry groups, and they report direct emissions from 23 facility-level processes. Facilities often engage in multiple emission-generating processes. If a facility reports emissions from a single activity, it's placed in that industry group. If reporting includes stationary combustion, those emissions are added, and the facility is categorized accordingly. In cases of multiple activities with stationary combustion, the highest-emission activity determines the industry group, while others are classified separately.",global_api,https://ccglobal.openearth.dev/api/v0/ghgrp_epa/city/:locode/:year/:gpcReferenceNumber,I.8.1,1 -4E235B19-E4FD-4E64-A674-9ED9D9CBA9AA,EPA,Environmental Protection Agency,Fugitive emissions of coal as Direct Emitters reported in the Greenhouse Gas Reporting Program ," +4E235B19-E4FD-4E64-A674-9ED9D9CBA9AA,EPA,Environmental Protection Agency,Fugitive emissions of coal as Direct Emitters reported in the Greenhouse Gas Reporting Program ," EPA provides information about GHG emissions from large facilities in the U.S. These facilities are required to report annual data about GHG emissions to EPA as part of the Greenhouse Gas Reporting Program (GHGRP). ",third_party,public,https://www.epa.gov/,US,2019,2022,2023,annual,point source,en,,high,Initial import,kg,source category. Suppliers report emissions based on mass balance methods or direct measurement of carbon quantities. CO2 injection facilities report CO2 quantities received for injection and must develop EPA-approved monitoring plans.,https://www.epa.gov/ghgreporting/learn-about-greenhouse-gas-reporting-program-ghgrp,"Facility emissions in the GHGRP are adjusted to fit the GPC format. The EPA categorizes facilities into nine industry groups, and they report direct emissions from 23 facility-level processes. Facilities often engage in multiple emission-generating processes. If a facility reports emissions from a single activity, it's placed in that industry group. If reporting includes stationary combustion, those emissions are added, and the facility is categorized accordingly. In cases of multiple activities with stationary combustion, the highest-emission activity determines the industry group, while others are classified separately.",global_api,https://ccglobal.openearth.dev/api/v0/ghgrp_epa/city/:locode/:year/:gpcReferenceNumber,I.7.1,1 -B7BCFC69-3E7F-4B5B-A7BE-B8C945BE073F,EPA,Environmental Protection Agency,Wastewater Treatment Plants as Direct Emitters reported in the Greenhouse Gas Reporting Program," +B7BCFC69-3E7F-4B5B-A7BE-B8C945BE073F,EPA,Environmental Protection Agency,Wastewater Treatment Plants as Direct Emitters reported in the Greenhouse Gas Reporting Program," EPA provides information about GHG emissions from large facilities in the U.S. These facilities are required to report annual data about GHG emissions to EPA as part of the Greenhouse Gas Reporting Program (GHGRP). ",third_party,public,https://www.epa.gov/,US,2019,2022,2023,annual,point source,en,,high,Initial import,kg,"Direct-emitting facilities report emissions from combustion or process sources, such as fuel combustion and chemical transformations, using methods like continuous emission monitoring systems (CEMS) or default emission factors. ",https://www.epa.gov/ghgreporting/learn-about-greenhouse-gas-reporting-program-ghgrp,"Facility emissions in the GHGRP are adjusted to fit the GPC format. The EPA categorizes facilities into nine industry groups, and they report direct emissions from 23 facility-level processes. Facilities often engage in multiple emission-generating processes. If a facility reports emissions from a single activity, it's placed in that industry group. If reporting includes stationary combustion, those emissions are added, and the facility is categorized accordingly. In cases of multiple activities with stationary combustion, the highest-emission activity determines the industry group, while others are classified separately.",global_api,https://ccglobal.openearth.dev/api/v0/ghgrp_epa/city/:locode/:year/:gpcReferenceNumber,III.4.1,1 -D213BD2F-0164-4411-84BC-1339A9D7EB94,EPA,Environmental Protection Agency,Non-specifed sources as Direct Emitters reported in the Greenhouse Gas Reporting Program ," +D213BD2F-0164-4411-84BC-1339A9D7EB94,EPA,Environmental Protection Agency,Non-specifed sources as Direct Emitters reported in the Greenhouse Gas Reporting Program ," EPA provides information about GHG emissions from large facilities in the U.S. These facilities are required to report annual data about GHG emissions to EPA as part of the Greenhouse Gas Reporting Program (GHGRP). ",third_party,public,https://www.epa.gov/,US,2019,2022,2023,annual,point source,en,,high,Initial import,kg,"Direct-emitting facilities report emissions from combustion or process sources, such as fuel combustion and chemical transformations, using methods like continuous emission monitoring systems (CEMS) or default emission factors. ",https://www.epa.gov/ghgreporting/learn-about-greenhouse-gas-reporting-program-ghgrp,"Facility emissions in the GHGRP are adjusted to fit the GPC format. The EPA categorizes facilities into nine industry groups, and they report direct emissions from 23 facility-level processes. Facilities often engage in multiple emission-generating processes. If a facility reports emissions from a single activity, it's placed in that industry group. If reporting includes stationary combustion, those emissions are added, and the facility is categorized accordingly. In cases of multiple activities with stationary combustion, the highest-emission activity determines the industry group, while others are classified separately.",global_api,https://ccglobal.openearth.dev/api/v0/ghgrp_epa/city/:locode/:year/:gpcReferenceNumber,I.6.1,1 124A1F4B-13FD-439B-9175-A8C40CC36E79,IEA,International Energy Agency,Energy generation supplied to the grid reported by the International Energy Agency ,"Electricity and heat production contains the sum of emissions from electricity production, combined heat and power plants and heat plants. It is the sum of main activity producers and autoproducers. Emissions from own on-site use of fuel are included. ",third_party,public,https://www.iea.org/statistics/co2emissions/,EARTH,2020,2022,2023,annual,country,en,,high,Initial import,tonnes,"IEA estimates CO2 emissions from fuel combustion using a Tier 1 method with globally collected energy data. Average net calorific values are applied, varying for oil and coal types. The IEA uses default carbon content values but recognizes country experts may have better information. Autoproducer emissions are unallocated, forming a category called ""Unallocated autoproducers."" The estimates encompass all CO2 emissions from fuel combustion, even though countries may categorize some differently. ",https://iea.blob.core.windows.net/assets/e6e332ed-24ab-4977-9ef9-cf3865934d63/Databasedocumentation2023Worldedition.pdf,"A reassignment of the categories proposed by IEA was carried out to consider some of the subsectors of the GPC. For this case, the reassignment was ""Electricity and heat production"" as 'I.4.4'",global_api_downscaled_by_population,https://ccglobal.openearth.dev/api/v0/source/IEA_energy/country/:country/:year/:gpcReferenceNumber,I.4.4,1 1087D232-BC25-498B-BE38-92DC330F0B15,IEA,International Energy Agency,Off-road grid energy consumption reported by the International Energy Agency ,Includes all emissions from transport not elsewhere specified. International marine bunkers and international aviation bunkers are not included in transport at a country or regional level (except for World transport emissions). And this flow is included for CO2 emissions from fuel combustion and excludes non-CO2 greenhouse gases. ,third_party,public,https://www.iea.org/statistics/co2emissions/,EARTH,2020,2022,2023,annual,country,en,,high,Initial import,tonnes,"IEA estimates CO2 emissions from fuel combustion using a Tier 1 method with globally collected energy data. Average net calorific values are applied, varying for oil and coal types. The IEA uses default carbon content values but recognizes country experts may have better information. Autoproducer emissions are unallocated, forming a category called ""Unallocated autoproducers."" The estimates encompass all CO2 emissions from fuel combustion, even though countries may categorize some differently. ",https://iea.blob.core.windows.net/assets/e6e332ed-24ab-4977-9ef9-cf3865934d63/Databasedocumentation2023Worldedition.pdf,"A reassignment of the categories proposed by IEA was carried out to consider some of the subsectors of the GPC. For this case, the reassignment was ""Other Transport"" as 'I.5.1'",global_api_downscaled_by_population,https://ccglobal.openearth.dev/api/v0/source/IEA_energy/country/:country/:year/:gpcReferenceNumber,II.5.1,1 @@ -43,4 +43,16 @@ ef052fea-4b6c-4421-8911-c31e01f0cc89,DEIE Mendoza,Direccion de Estadisticas e In ba4e85e8-8292-4a5d-93a7-2cec57e7dee7,DEIE Mendoza,Direccion de Estadisticas e Investigaciones Economicas Gobierno Mendoza,Manufactoring Industries and Construction electricity consumption in Mendoza cities,"Electric energy users by tariff category, according to year reported in the Directorate of Statistics and Economic Research based on data provided by Epre (Provincial Electrical Regulatory Entity)",third_party,public,https://deie.mendoza.gov.ar/#!/,AR,2013,2022,2022,annual,city,en,,high,,kg,The Directorate of Statistics and Economic Research is a public technical body that coordinates the statistical activities carried out in the territory of the province of Mendoza. Compiling and systematizing economic data relevant to the territory.,https://deie.mendoza.gov.ar/#!/,Emissions data calculated using the grid energy consumed methodology for manufacturing industries and construction according to the sector proposed by GPC. AR5 emission factors for Argentina were applied.,global_api,https://ccglobal.openearth.dev/api/v0/deie_mendoza/city/:locode/:year/:gpcReferenceNumber,I.3.2,2 ff4c21b4-574b-4f4d-bd19-7d3f9dda9093,DEIE Mendoza,Direccion de Estadisticas e Investigaciones Economicas Gobierno Mendoza,Natural Gas consumption by Residential Buildings in Mendoza cities,"Gas distributed by type of user, according to year reported in the Directorate of Statistics and Economic Research based on data provided by Epre (Provincial Electrical Regulatory Entity)",third_party,public,https://deie.mendoza.gov.ar/#!/,AR,2018,2022,2022,annual,city,en,,high,,kg,The Directorate of Statistics and Economic Research is a public technical body that coordinates the statistical activities carried out in the territory of the province of Mendoza. Compiling and systematizing economic data relevant to the territory.,https://deie.mendoza.gov.ar/#!/,Emissions data calculated for natural gas consumption using the fuel sales methodology for residential buildings proposed by GPC. AR5 emission factors for Argentina were applied.,global_api,https://ccglobal.openearth.dev/api/v0/deie_mendoza/city/:locode/:year/:gpcReferenceNumber,I.1.1,1 ae849774-309e-4091-8461-1be91db5a958,DEIE Mendoza,Direccion de Estadisticas e Investigaciones Economicas Gobierno Mendoza,Natural Gas consumption by Commercial Buildings in Mendoza cities,"Gas distributed by type of user, according to year reported in the Directorate of Statistics and Economic Research based on data provided by Epre (Provincial Electrical Regulatory Entity)",third_party,public,https://deie.mendoza.gov.ar/#!/,AR,2018,2022,2022,annual,city,en,,high,,kg,The Directorate of Statistics and Economic Research is a public technical body that coordinates the statistical activities carried out in the territory of the province of Mendoza. Compiling and systematizing economic data relevant to the territory.,https://deie.mendoza.gov.ar/#!/,Emissions data calculated for natural gas consumption using the fuel sales methodology for commercial buildings proposed by GPC. AR5 emission factors for Argentina were applied.,global_api,https://ccglobal.openearth.dev/api/v0/deie_mendoza/city/:locode/:year/:gpcReferenceNumber,I.2.1,1 -70f80ab9-622a-4665-8176-e4e21bf9a634,DEIE Mendoza,Direccion de Estadisticas e Investigaciones Economicas Gobierno Mendoza,Natural Gas consumption by Manufactoring Industries and Construction in Mendoza cities,"Gas distributed by type of user, according to year reported in the Directorate of Statistics and Economic Research based on data provided by Epre (Provincial Electrical Regulatory Entity)",third_party,public,https://deie.mendoza.gov.ar/#!/,AR,2018,2022,2022,annual,city,en,,high,,kg,The Directorate of Statistics and Economic Research is a public technical body that coordinates the statistical activities carried out in the territory of the province of Mendoza. Compiling and systematizing economic data relevant to the territory.,https://deie.mendoza.gov.ar/#!/,Emissions data calculated for natural gas consumption using the fuel sales methodology for manufacturing industries and construction proposed by GPC. AR5 emission factors for Argentina were applied.,global_api,https://ccglobal.openearth.dev/api/v0/deie_mendoza/city/:locode/:year/:gpcReferenceNumber,I.3.1,1 \ No newline at end of file +70f80ab9-622a-4665-8176-e4e21bf9a634,DEIE Mendoza,Direccion de Estadisticas e Investigaciones Economicas Gobierno Mendoza,Natural Gas consumption by Manufactoring Industries and Construction in Mendoza cities,"Gas distributed by type of user, according to year reported in the Directorate of Statistics and Economic Research based on data provided by Epre (Provincial Electrical Regulatory Entity)",third_party,public,https://deie.mendoza.gov.ar/#!/,AR,2018,2022,2022,annual,city,en,,high,,kg,The Directorate of Statistics and Economic Research is a public technical body that coordinates the statistical activities carried out in the territory of the province of Mendoza. Compiling and systematizing economic data relevant to the territory.,https://deie.mendoza.gov.ar/#!/,Emissions data calculated for natural gas consumption using the fuel sales methodology for manufacturing industries and construction proposed by GPC. AR5 emission factors for Argentina were applied.,global_api,https://ccglobal.openearth.dev/api/v0/deie_mendoza/city/:locode/:year/:gpcReferenceNumber,I.3.1,1 +"492537be-6eca-4508-ba27-ea6c7c42b019",BEN,Energy Balances Argentina,National Energy Balances for Argentina,"The BEN summarizes the information related to the production, import, export, transformation and consumption of energy in Argentina, being the main statistical instrument for national energy planning. The fuels included are LPG, kerosene, firewoodm charcoal.",Third-party,Public,http://datos.energia.gob.ar/dataset/balances-energeticos,AR,2018,2022,2022,annual,country,es,,high,,kg,"The Energy Balance is a methodology that analyzes and records energy flows throughout different events, from its production to its final consumption, in a national territory during a specific year. The physical flows of energy are converted into caloric flows in order to compare different sources, using the calorific values of the different fuel sources and expressing them in Tons of Oil Equivalent (TEP).",https://www.energia.gob.ar/contenidos/archivos/Reorganizacion/informacion_del_mercado/publicaciones/energia_en_gral/balances_2021/sintesisbalancesenergeticos2021v1.pdf,"The information is scaled-down at the city level using different scaling factors depending on the sector or subsector, then the corresponding emission factor is applied according to the type of fuel and gas.",global_api_downscaled_by_population,https://ccglobal.openearth.dev/api/v0/source/BEN/country/:country/:year/:gpcReferenceNumber,I.1.1,1 +"38918e8a-bb0a-466a-91c7-d085c8e26992",BEN,Energy Balances Argentina,National Energy Balances for Argentina,"The BEN summarizes the information related to the production, import, export, transformation and consumption of energy in Argentina, being the main statistical instrument for national energy planning. The fuels included are LPG, kerosene, firewoodm charcoal.",Third-party,Public,http://datos.energia.gob.ar/dataset/balances-energeticos,AR,2018,2022,2022,annual,country,es,,high,,kg,"The Energy Balance is a methodology that analyzes and records energy flows throughout different events, from its production to its final consumption, in a national territory during a specific year. The physical flows of energy are converted into caloric flows in order to compare different sources, using the calorific values of the different fuel sources and expressing them in Tons of Oil Equivalent (TEP).",https://www.energia.gob.ar/contenidos/archivos/Reorganizacion/informacion_del_mercado/publicaciones/energia_en_gral/balances_2021/sintesisbalancesenergeticos2021v1.pdf,"The information is scaled-down at the city level using different scaling factors depending on the sector or subsector, then the corresponding emission factor is applied according to the type of fuel and gas.",global_api_downscaled_by_population,https://ccglobal.openearth.dev/api/v0/source/BEN/country/:country/:year/:gpcReferenceNumber,I.2.1,1 +"8bff6600-e3b3-4d1c-85b7-f1aa2edbc1f3",BEN,Energy Balances Argentina,National Energy Balances for Argentina,"The BEN summarizes the information related to the production, import, export, transformation and consumption of energy in Argentina, being the main statistical instrument for national energy planning. The fuels included are LPG, kerosene, firewoodm charcoal.",Third-party,Public,http://datos.energia.gob.ar/dataset/balances-energeticos,AR,2018,2022,2022,annual,country,es,,high,,kg,"The Energy Balance is a methodology that analyzes and records energy flows throughout different events, from its production to its final consumption, in a national territory during a specific year. The physical flows of energy are converted into caloric flows in order to compare different sources, using the calorific values of the different fuel sources and expressing them in Tons of Oil Equivalent (TEP).",https://www.energia.gob.ar/contenidos/archivos/Reorganizacion/informacion_del_mercado/publicaciones/energia_en_gral/balances_2021/sintesisbalancesenergeticos2021v1.pdf,"The information is scaled-down at the city level using different scaling factors depending on the sector or subsector, then the corresponding emission factor is applied according to the type of fuel and gas.",global_api_downscaled_by_population,https://ccglobal.openearth.dev/api/v0/source/BEN/country/:country/:year/:gpcReferenceNumber,I.5.1,1 +"059c5cb5-98d4-4b7f-a1c2-9e94756365a4",BEN,Energy Balances Argentina,National Energy Balances for Argentina,"The BEN summarizes the information related to the production, import, export, transformation and consumption of energy in Argentina, being the main statistical instrument for national energy planning. The fuels included are LPG, kerosene, firewoodm charcoal.",Third-party,Public,http://datos.energia.gob.ar/dataset/balances-energeticos,AR,2018,2022,2022,annual,country,es,,high,,kg,"The Energy Balance is a methodology that analyzes and records energy flows throughout different events, from its production to its final consumption, in a national territory during a specific year. The physical flows of energy are converted into caloric flows in order to compare different sources, using the calorific values of the different fuel sources and expressing them in Tons of Oil Equivalent (TEP).",https://www.energia.gob.ar/contenidos/archivos/Reorganizacion/informacion_del_mercado/publicaciones/energia_en_gral/balances_2021/sintesisbalancesenergeticos2021v1.pdf,"The information is scaled-down at the city level using different scaling factors depending on the sector or subsector, then the corresponding emission factor is applied according to the type of fuel and gas.",global_api_downscaled_by_population,https://ccglobal.openearth.dev/api/v0/source/BEN/country/:country/:year/:gpcReferenceNumber,I.3.1,1 +"96bd45c8-259b-4e41-89f1-cd4e2dbff959",ENARGAS,National Gas Regulatory Entity,Gas consumption data for Argentinian provinces,Volume of gas actually delivered by the Distributors in each province per end user,Third-party,Public,https://www.enargas.gob.ar/secciones/transporte-y-distribucion/datos-operativos-subsec.php?sec=1&subsec=10&subsecord=10,AR,2018,2022,2022,annual,region,es,,high,,kg,"Table I-7 of the Operational Data contains information on the Distribution Service Licensees. This table includes the so-called ""commercial by pass"" (customers who buy gas on their own, as provided for in Article 13 of Law No. 24,076 and its regulations), or gas delivered on behalf of third parties.",https://www.enargas.gob.ar/secciones/transporte-y-distribucion/glosario.pdfdf,"The information is scaled-down at the city level using different scaling factors depending on the sector or subsector, then the corresponding emission factor is applied according to the type of fuel and gas.",global_api_downscaled_by_population,https://ccglobal.openearth.dev/api/v0/source/ENARGAS/region/:region/:year/:gpcReferenceNumber,I.1.1,1 +"775c21ad-d203-4fd6-bdbd-a778a7cac07e",ENARGAS,National Gas Regulatory Entity,Gas consumption data for Argentinian provinces,Volume of gas actually delivered by the Distributors in each province per end user,Third-party,Public,https://www.enargas.gob.ar/secciones/transporte-y-distribucion/datos-operativos-subsec.php?sec=1&subsec=10&subsecord=10,AR,2018,2022,2022,annual,region,es,,high,,kg,"Table I-7 of the Operational Data contains information on the Distribution Service Licensees. This table includes the so-called ""commercial by pass"" (customers who buy gas on their own, as provided for in Article 13 of Law No. 24,076 and its regulations), or gas delivered on behalf of third parties.",https://www.enargas.gob.ar/secciones/transporte-y-distribucion/glosario.pdfdf,"The information is scaled-down at the city level using different scaling factors depending on the sector or subsector, then the corresponding emission factor is applied according to the type of fuel and gas.",global_api_downscaled_by_population,https://ccglobal.openearth.dev/api/v0/source/ENARGAS/region/:region/:year/:gpcReferenceNumber,I.2.1,1 +"04ee4655-5d9a-4778-a6e4-4ed15052a8a5",ENARGAS,National Gas Regulatory Entity,Gas consumption data for Argentinian provinces,Volume of gas actually delivered by the Distributors in each province per end user,Third-party,Public,https://www.enargas.gob.ar/secciones/transporte-y-distribucion/datos-operativos-subsec.php?sec=1&subsec=10&subsecord=10,AR,2018,2022,2022,annual,region,es,,high,,kg,"Table I-7 of the Operational Data contains information on the Distribution Service Licensees. This table includes the so-called ""commercial by pass"" (customers who buy gas on their own, as provided for in Article 13 of Law No. 24,076 and its regulations), or gas delivered on behalf of third parties.",https://www.enargas.gob.ar/secciones/transporte-y-distribucion/glosario.pdfdf,"The information is scaled-down at the city level using different scaling factors depending on the sector or subsector, then the corresponding emission factor is applied according to the type of fuel and gas.",global_api_downscaled_by_population,https://ccglobal.openearth.dev/api/v0/source/ENARGAS/region/:region/:year/:gpcReferenceNumber,I.3.1,1 +"75ac9523-3079-4fd7-8d2e-9547f2eda010",ENARGAS,National Gas Regulatory Entity,Gas consumption data for Argentinian provinces,Volume of gas actually delivered by the Distributors in each province per end user,Third-party,Public,https://www.enargas.gob.ar/secciones/transporte-y-distribucion/datos-operativos-subsec.php?sec=1&subsec=10&subsecord=10,AR,2018,2022,2022,annual,region,es,,high,,kg,"Table I-7 of the Operational Data contains information on the Distribution Service Licensees. This table includes the so-called ""commercial by pass"" (customers who buy gas on their own, as provided for in Article 13 of Law No. 24,076 and its regulations), or gas delivered on behalf of third parties.",https://www.enargas.gob.ar/secciones/transporte-y-distribucion/glosario.pdfdf,"The information is scaled-down at the city level using different scaling factors depending on the sector or subsector, then the corresponding emission factor is applied according to the type of fuel and gas.",global_api_downscaled_by_population,https://ccglobal.openearth.dev/api/v0/source/ENARGAS/region/:region/:year/:gpcReferenceNumber,II.1.1,1 +cfb06d16-381a-4dfe-bf6c-53900950845a,SESCO,SESCO,Fuel sales data in Argentina by region and sector,"Refining and Marketing of oil, gas and derivatives. Market Sales by sector and province reported by the Secretary of Energy, National Government",Third-party,Public,http://datos.energia.gob.ar,AR,2010,2023,2023,annual,region,es,,high,,kg,Accounting of market sales by the Undersecretary of Hydrocarbons,https://www.argentina.gob.ar/economia/energia/hidrocarburos/produccion-de-petroleo-y-gas,"The information is scaled-down at the city level using different scaling factors depending on the sector or subsector, then the corresponding emission factor is applied according to the type of fuel and gas.",global_api_downscaled_by_population,https://ccglobal.openearth.dev/api/v0/source/SESCO/region/:region/:year/:gpcReferenceNumber,I.3.1,1 +"9bdb03c4-1fbb-40a7-becf-61262d1f488c",SESCO,SESCO,Fuel sales data in Argentina by region and sector,"Refining and Marketing of oil, gas and derivatives. Market Sales by sector and province reported by the Secretary of Energy, National Government",Third-party,Public,http://datos.energia.gob.ar,AR,2010,2023,2023,annual,region,es,,high,,kg,Accounting of market sales by the Undersecretary of Hydrocarbons,https://www.argentina.gob.ar/economia/energia/hidrocarburos/produccion-de-petroleo-y-gas,"The information is scaled-down at the city level using different scaling factors depending on the sector or subsector, then the corresponding emission factor is applied according to the type of fuel and gas.",global_api_downscaled_by_population,https://ccglobal.openearth.dev/api/v0/source/SESCO/region/:region/:year/:gpcReferenceNumber,II.1.1,1 +cf301691-f6db-4c69-90c6-5be062cf2454,SESCO,SESCO,Fuel sales data in Argentina by region and sector,"Refining and Marketing of oil, gas and derivatives. Market Sales by sector and province reported by the Secretary of Energy, National Government",Third-party,Public,http://datos.energia.gob.ar,AR,2010,2023,2023,annual,region,es,,high,,kg,Accounting of market sales by the Undersecretary of Hydrocarbons,https://www.argentina.gob.ar/economia/energia/hidrocarburos/produccion-de-petroleo-y-gas,"The information is scaled-down at the city level using different scaling factors depending on the sector or subsector, then the corresponding emission factor is applied according to the type of fuel and gas.",global_api_downscaled_by_population,https://ccglobal.openearth.dev/api/v0/source/SESCO/region/:region/:year/:gpcReferenceNumber,II.5.1,1 +ef6d15ea-66a3-43c0-9a9a-fe8596ab6447,SESCO,SESCO,Fuel sales data in Argentina by region and sector,"Refining and Marketing of oil, gas and derivatives. Market Sales by sector and province reported by the Secretary of Energy, National Government",Third-party,Public,http://datos.energia.gob.ar,AR,2010,2023,2023,annual,region,es,,high,,kg,Accounting of market sales by the Undersecretary of Hydrocarbons,https://www.argentina.gob.ar/economia/energia/hidrocarburos/produccion-de-petroleo-y-gas,"The information is scaled-down at the city level using different scaling factors depending on the sector or subsector, then the corresponding emission factor is applied according to the type of fuel and gas.",global_api_downscaled_by_population,https://ccglobal.openearth.dev/api/v0/source/SESCO/region/:region/:year/:gpcReferenceNumber,II.2.1,1 diff --git a/global-api/main.py b/global-api/main.py index 0601945cb..c6a79578d 100644 --- a/global-api/main.py +++ b/global-api/main.py @@ -16,6 +16,7 @@ from routes.city_locode_endpoint_ghgrp import api_router as ghgrp_city_locode_route from routes.city_locode_endpoint_mendoza_stationary_energy import api_router as mendoza_stationary_energy_city_locode_route from routes.country_code_IEA_energy import api_router as country_code_IEA_energy_route +from routes.region_code_endpoint import api_router as region_code_endpoint """ Logger instance initialized and configured @@ -136,6 +137,11 @@ def read_root(): tags=["Mendoza cities - Stationary Energy"], ) +app.include_router( + region_code_endpoint, + tags=["Region"], +) + """ Entry point of the fastapi application (Drive Code) - change the port number if port is already occupied diff --git a/global-api/routes/region_code_endpoint.py b/global-api/routes/region_code_endpoint.py new file mode 100644 index 000000000..924b208e9 --- /dev/null +++ b/global-api/routes/region_code_endpoint.py @@ -0,0 +1,99 @@ +#!/usr/bin/env python3 +# -*- coding: utf-8 -*- + +from fastapi import APIRouter, HTTPException +import math +from sqlalchemy import text +from db.database import SessionLocal + +api_router = APIRouter(prefix="/api/v0") + +gpc_quality_data = "low" + +gas_to_gwp100 = {"co2": 1, "ch4": 29.8, "n2o": 273} +gas_to_gwp20 = {"co2": 1, "ch4": 82.5, "n2o": 273} + +def not_nan_or_none(value): + """return true if value is not nan, none, or empty""" + if isinstance(value, float | int): + return not math.isnan(value) + return value is not None and value != "" + + +# Extract the data by locode, year and sector/subsector +def db_query(source_name, region_name, year, GPC_refno): + rows = [] + with SessionLocal() as session: + query = text( + """ + SELECT * FROM regionwide_emissions + WHERE source_name = :source_name + AND "GPC_refno" = :GPC_refno + AND region_name = :region_name + AND year = :year; + """ + ) + params = {"source_name": source_name, "region_name": region_name, "year": year, "GPC_refno": GPC_refno} + result = session.execute(query, params) + rows = [row._asdict() for row in result] + + return rows + + +@api_router.get("/source/{source_name}/region/{region_name}/{year}/{GPC_refno}") +def get_emissions_by_country_and_year(source_name: str, region_name: str, year: str, GPC_refno: str): + + records = db_query(source_name, region_name, year, GPC_refno) + + if not records: + raise HTTPException(status_code=404, detail="No data available") + + totals = { + "totals": { + "emissions": { + "co2_mass": "0", + "co2_co2eq": "0", + "ch4_mass": "0", + "ch4_co2eq_100yr": "0", + "ch4_co2eq_20yr": "0", + "n2o_mass": "0", + "n2o_co2eq_100yr": "0", + "n2o_co2eq_20yr": "0", + "gpc_quality": str(gpc_quality_data), + } + } + } + + emissions = totals["totals"]["emissions"] + + co2e = list(filter(lambda x: x["gas_name"] == "co2e", records)) + + if (len(co2e) > 0): + val = str(int(round(float(co2e[0]["emissions_value"])))) + emissions["co2eq_100yr"] = val + emissions["co2eq_20yr"] = val + + co2 = list(filter(lambda x: x["gas_name"] == "co2", records)) + + if (len(co2) > 0): + val = str(int(round(float(co2[0]["emissions_value"])))) + emissions["co2_mass"] = val + emissions["co2_co2eq"] = val + + ch4 = list(filter(lambda x: x["gas_name"] == "ch4", records)) + + if (len(ch4) > 0): + val = str(int(round(float(ch4[0]["emissions_value"])))) + emissions["ch4_mass"] = val + emissions["ch4_co2eq_100yr"] = str(int(round(float(ch4[0]["emissions_value"] * gas_to_gwp100["ch4"])))) + emissions["ch4_co2eq_20yr"] = str(int(round(float(ch4[0]["emissions_value"] * gas_to_gwp20["ch4"])))) + + n2o = list(filter(lambda x: x["gas_name"] == "n2o", records)) + + if (len(n2o) > 0): + val = str(int(round(float(n2o[0]["emissions_value"])))) + emissions["n2o_mass"] = val + emissions["n2o_co2eq_100yr"] = str(int(round(float(n2o[0]["emissions_value"] * gas_to_gwp100["n2o"])))) + emissions["n2o_co2eq_20yr"] = str(int(round(float(n2o[0]["emissions_value"] * gas_to_gwp20["n2o"])))) + + return {**totals} \ No newline at end of file From e206bb0ade018f16a1a6d57ce80a3acf421c07b5 Mon Sep 17 00:00:00 2001 From: Amanda Eames Date: Thu, 25 Apr 2024 02:16:37 +1200 Subject: [PATCH 13/45] changed route name --- global-api/main.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/global-api/main.py b/global-api/main.py index c6a79578d..3aa17ab0e 100644 --- a/global-api/main.py +++ b/global-api/main.py @@ -16,7 +16,7 @@ from routes.city_locode_endpoint_ghgrp import api_router as ghgrp_city_locode_route from routes.city_locode_endpoint_mendoza_stationary_energy import api_router as mendoza_stationary_energy_city_locode_route from routes.country_code_IEA_energy import api_router as country_code_IEA_energy_route -from routes.region_code_endpoint import api_router as region_code_endpoint +from routes.region_code_endpoint import api_router as region_code_endpoint_route """ Logger instance initialized and configured @@ -138,7 +138,7 @@ def read_root(): ) app.include_router( - region_code_endpoint, + region_code_endpoint_route, tags=["Region"], ) From 65013217238e91308f1de069769829d0edce1ceb Mon Sep 17 00:00:00 2001 From: Maureen Fonseca Mora <107511484+mfonsecaOEF@users.noreply.github.com> Date: Wed, 24 Apr 2024 14:44:39 -0600 Subject: [PATCH 14/45] feat: new_subsector_added_I.8.1 --- .../processed_enargas_gas_consumption_AR.csv | 210 ++++++++++++++++++ .../ENARGAS/transformation_ENARGAS.py | 67 ++++-- 2 files changed, 261 insertions(+), 16 deletions(-) diff --git a/global-api/importer/argentinian_datasets/ENARGAS/processed_enargas_gas_consumption_AR.csv b/global-api/importer/argentinian_datasets/ENARGAS/processed_enargas_gas_consumption_AR.csv index 4b332ab92..2b818dd2b 100644 --- a/global-api/importer/argentinian_datasets/ENARGAS/processed_enargas_gas_consumption_AR.csv +++ b/global-api/importer/argentinian_datasets/ENARGAS/processed_enargas_gas_consumption_AR.csv @@ -1,4 +1,214 @@ GPC_refno,activity_name,activity_units,activity_value,emission_factor_units,emission_factor_value,emissions_units,emissions_value,gas_name,id,region_code,region_name,source_name,temporal_granularity,year +I.8.1,fugitive emissions from natural gas distribution,m3,12779299223.30907,kg/m3,0.0031,kg,39615827.59225812,CO2,109004ea-ce40-3a7f-a866-eb1db75073d0,AR-B,BUENOS AIRES,ENARGAS,annual,2018 +I.8.1,fugitive emissions from natural gas distribution,m3,12722758982.0,kg/m3,0.0031,kg,39440552.8442,CO2,09c151ef-6008-3396-83b0-662d0cf08c37,AR-B,BUENOS AIRES,ENARGAS,annual,2019 +I.8.1,fugitive emissions from natural gas distribution,m3,12652871103.0,kg/m3,0.0031,kg,39223900.4193,CO2,f037b884-e3e7-3a83-a109-048d74ffb5eb,AR-B,BUENOS AIRES,ENARGAS,annual,2020 +I.8.1,fugitive emissions from natural gas distribution,m3,12361596490.0,kg/m3,0.0031,kg,38320949.118999995,CO2,879071a4-b482-3ec5-9f23-61ae9d4d3a79,AR-B,BUENOS AIRES,ENARGAS,annual,2021 +I.8.1,fugitive emissions from natural gas distribution,m3,12663416420.0,kg/m3,0.0031,kg,39256590.901999995,CO2,7f33b276-9238-3cfd-b6b9-2e4bc3219097,AR-B,BUENOS AIRES,ENARGAS,annual,2022 +I.8.1,fugitive emissions from natural gas distribution,m3,4164667000.0,kg/m3,0.0031,kg,12910467.7,CO2,5b375fb2-0ec1-317d-992b-529960c29916,AR-C,CAPITAL FEDERAL,ENARGAS,annual,2018 +I.8.1,fugitive emissions from natural gas distribution,m3,4101290000.0,kg/m3,0.0031,kg,12713999.0,CO2,9df983c5-9793-344c-a502-c712802034c8,AR-C,CAPITAL FEDERAL,ENARGAS,annual,2019 +I.8.1,fugitive emissions from natural gas distribution,m3,3610580000.0,kg/m3,0.0031,kg,11192798.0,CO2,44626219-e739-3ff6-898d-815009bc4a97,AR-C,CAPITAL FEDERAL,ENARGAS,annual,2020 +I.8.1,fugitive emissions from natural gas distribution,m3,3295466000.0,kg/m3,0.0031,kg,10215944.6,CO2,0e1a3e74-8043-3f9f-bda7-b49fdcd25997,AR-C,CAPITAL FEDERAL,ENARGAS,annual,2021 +I.8.1,fugitive emissions from natural gas distribution,m3,3429099000.0,kg/m3,0.0031,kg,10630206.9,CO2,468ba106-6480-38a8-a678-a50b41c0e354,AR-C,CAPITAL FEDERAL,ENARGAS,annual,2022 +I.8.1,fugitive emissions from natural gas distribution,m3,117903000.0,kg/m3,0.0031,kg,365499.3,CO2,80ca3500-6889-3c82-a09c-a14c20394162,AR-K,CATAMARCA,ENARGAS,annual,2018 +I.8.1,fugitive emissions from natural gas distribution,m3,109019000.0,kg/m3,0.0031,kg,337958.89999999997,CO2,81f074b5-5c3e-3bec-b0b1-f809f2d2e597,AR-K,CATAMARCA,ENARGAS,annual,2019 +I.8.1,fugitive emissions from natural gas distribution,m3,108706000.0,kg/m3,0.0031,kg,336988.6,CO2,67541561-1cb0-3ed2-b8fb-6a3059921245,AR-K,CATAMARCA,ENARGAS,annual,2020 +I.8.1,fugitive emissions from natural gas distribution,m3,114937000.0,kg/m3,0.0031,kg,356304.7,CO2,c372b044-ccf1-3ddf-926f-95bde49ed7ab,AR-K,CATAMARCA,ENARGAS,annual,2021 +I.8.1,fugitive emissions from natural gas distribution,m3,133455000.0,kg/m3,0.0031,kg,413710.5,CO2,8177436e-338f-3a25-ad0c-573624f06f31,AR-K,CATAMARCA,ENARGAS,annual,2022 +I.8.1,fugitive emissions from natural gas distribution,m3,1519440000.0,kg/m3,0.0031,kg,4710264.0,CO2,b8bed5a1-ef8a-38d7-acff-24bb864feb47,AR-U,CHUBUT,ENARGAS,annual,2018 +I.8.1,fugitive emissions from natural gas distribution,m3,1575875000.0,kg/m3,0.0031,kg,4885212.5,CO2,3ab6fc3b-585a-3504-849f-316a0af7b9dc,AR-U,CHUBUT,ENARGAS,annual,2019 +I.8.1,fugitive emissions from natural gas distribution,m3,1595652000.0,kg/m3,0.0031,kg,4946521.2,CO2,f8a45c27-a76c-3c76-bd07-2133835ef9c4,AR-U,CHUBUT,ENARGAS,annual,2020 +I.8.1,fugitive emissions from natural gas distribution,m3,1453111000.0,kg/m3,0.0031,kg,4504644.1,CO2,6754cef9-c7a4-37be-9b19-1140fa71ae3b,AR-U,CHUBUT,ENARGAS,annual,2021 +I.8.1,fugitive emissions from natural gas distribution,m3,1349716550.0,kg/m3,0.0031,kg,4184121.3049999997,CO2,329e2223-ebdc-3461-8091-c1cbcedc0ae0,AR-U,CHUBUT,ENARGAS,annual,2022 +I.8.1,fugitive emissions from natural gas distribution,m3,2297329000.0,kg/m3,0.0031,kg,7121719.899999999,CO2,40effc5e-f6fb-3871-9990-2cb3024fdc6a,AR-X,CORDOBA,ENARGAS,annual,2018 +I.8.1,fugitive emissions from natural gas distribution,m3,2043539000.0,kg/m3,0.0031,kg,6334970.899999999,CO2,1f7bfb6c-81b9-386d-9cd9-f0dc0f2a0b3b,AR-X,CORDOBA,ENARGAS,annual,2019 +I.8.1,fugitive emissions from natural gas distribution,m3,1876255000.0,kg/m3,0.0031,kg,5816390.5,CO2,8555af18-cfe2-3f45-9992-aec9ba3a4c40,AR-X,CORDOBA,ENARGAS,annual,2020 +I.8.1,fugitive emissions from natural gas distribution,m3,1971507000.0,kg/m3,0.0031,kg,6111671.7,CO2,c57c20ff-04bb-3f03-b68a-63c2e6fa66d4,AR-X,CORDOBA,ENARGAS,annual,2021 +I.8.1,fugitive emissions from natural gas distribution,m3,2025445000.0,kg/m3,0.0031,kg,6278879.5,CO2,d434c2f3-456f-36c9-a1d6-77e35394fea9,AR-X,CORDOBA,ENARGAS,annual,2022 +I.8.1,fugitive emissions from natural gas distribution,m3,443350.0,kg/m3,0.0031,kg,1374.385,CO2,df4e6f23-eaa1-35f3-86a4-c4ae1dce43ce,AR-W,CORRIENTES,ENARGAS,annual,2018 +I.8.1,fugitive emissions from natural gas distribution,m3,566000.0,kg/m3,0.0031,kg,1754.6,CO2,54f78634-13d8-3ca9-be21-0b199a4908a5,AR-W,CORRIENTES,ENARGAS,annual,2019 +I.8.1,fugitive emissions from natural gas distribution,m3,1201000.0,kg/m3,0.0031,kg,3723.1,CO2,b8476696-7704-3832-83a7-0684834e8215,AR-W,CORRIENTES,ENARGAS,annual,2020 +I.8.1,fugitive emissions from natural gas distribution,m3,3628000.0,kg/m3,0.0031,kg,11246.8,CO2,c225ed85-a834-366d-8fa3-26e10ec640df,AR-W,CORRIENTES,ENARGAS,annual,2021 +I.8.1,fugitive emissions from natural gas distribution,m3,4705000.0,kg/m3,0.0031,kg,14585.5,CO2,611f2b0e-c98e-3422-b72f-cb58b43be6f1,AR-W,CORRIENTES,ENARGAS,annual,2022 +I.8.1,fugitive emissions from natural gas distribution,m3,272814000.0,kg/m3,0.0031,kg,845723.4,CO2,fbbaafec-fa5d-396f-82a2-69e60d5192b2,AR-E,ENTRE RIOS,ENARGAS,annual,2018 +I.8.1,fugitive emissions from natural gas distribution,m3,264763000.0,kg/m3,0.0031,kg,820765.2999999999,CO2,dd2df635-d8f0-347b-8bb4-325524236957,AR-E,ENTRE RIOS,ENARGAS,annual,2019 +I.8.1,fugitive emissions from natural gas distribution,m3,247678000.0,kg/m3,0.0031,kg,767801.7999999999,CO2,d6d03203-df5a-3777-addf-2af0abac2e28,AR-E,ENTRE RIOS,ENARGAS,annual,2020 +I.8.1,fugitive emissions from natural gas distribution,m3,276881000.0,kg/m3,0.0031,kg,858331.1,CO2,a038d770-f173-33b7-ae44-f3b16e0fff3d,AR-E,ENTRE RIOS,ENARGAS,annual,2021 +I.8.1,fugitive emissions from natural gas distribution,m3,289026000.0,kg/m3,0.0031,kg,895980.6,CO2,5671a26e-edb4-3103-a7d1-b264eba7b435,AR-E,ENTRE RIOS,ENARGAS,annual,2022 +I.8.1,fugitive emissions from natural gas distribution,m3,335727678.0,kg/m3,0.0031,kg,1040755.8018,CO2,cba5bcd9-3b46-3545-814d-243ed2fb2799,AR-Y,JUJUY,ENARGAS,annual,2018 +I.8.1,fugitive emissions from natural gas distribution,m3,272565174.0,kg/m3,0.0031,kg,844952.0394,CO2,d8dda8d6-315a-3c64-807b-a09639588d6d,AR-Y,JUJUY,ENARGAS,annual,2019 +I.8.1,fugitive emissions from natural gas distribution,m3,238192000.0,kg/m3,0.0031,kg,738395.2,CO2,6b6dbe81-5813-3686-a4a3-9546cf11707c,AR-Y,JUJUY,ENARGAS,annual,2020 +I.8.1,fugitive emissions from natural gas distribution,m3,254375768.84,kg/m3,0.0031,kg,788564.883404,CO2,0377b044-b729-38fe-8940-f05cfc059c68,AR-Y,JUJUY,ENARGAS,annual,2021 +I.8.1,fugitive emissions from natural gas distribution,m3,255760593.99,kg/m3,0.0031,kg,792857.841369,CO2,a7736382-56d4-3933-8b60-a06f0654499c,AR-Y,JUJUY,ENARGAS,annual,2022 +I.8.1,fugitive emissions from natural gas distribution,m3,306359000.0,kg/m3,0.0031,kg,949712.9,CO2,e710a71b-fa16-3d59-a827-e46795541693,AR-L,LA PAMPA,ENARGAS,annual,2018 +I.8.1,fugitive emissions from natural gas distribution,m3,302094000.0,kg/m3,0.0031,kg,936491.4,CO2,05b4b7b1-4996-35e6-903b-9068be3fb239,AR-L,LA PAMPA,ENARGAS,annual,2019 +I.8.1,fugitive emissions from natural gas distribution,m3,313766000.0,kg/m3,0.0031,kg,972674.6,CO2,6d83b033-8462-34a7-a57f-e269f8f1ea4a,AR-L,LA PAMPA,ENARGAS,annual,2020 +I.8.1,fugitive emissions from natural gas distribution,m3,322930000.0,kg/m3,0.0031,kg,1001083.0,CO2,93d77d37-2d5c-3cd9-9880-d29399b65605,AR-L,LA PAMPA,ENARGAS,annual,2021 +I.8.1,fugitive emissions from natural gas distribution,m3,345258100.0,kg/m3,0.0031,kg,1070300.1099999999,CO2,7ee728a4-01a1-3bb7-b08f-69add443a6cc,AR-L,LA PAMPA,ENARGAS,annual,2022 +I.8.1,fugitive emissions from natural gas distribution,m3,39869000.0,kg/m3,0.0031,kg,123593.9,CO2,9f51bd1b-984c-3d9e-8250-a64535cb5f1a,AR-F,LA RIOJA,ENARGAS,annual,2018 +I.8.1,fugitive emissions from natural gas distribution,m3,46601000.0,kg/m3,0.0031,kg,144463.1,CO2,8173d76f-ef1d-37af-931d-83c8eea3342e,AR-F,LA RIOJA,ENARGAS,annual,2019 +I.8.1,fugitive emissions from natural gas distribution,m3,33851000.0,kg/m3,0.0031,kg,104938.09999999999,CO2,6263ad37-bf99-3be4-91f9-cb5c3d6e3ab4,AR-F,LA RIOJA,ENARGAS,annual,2020 +I.8.1,fugitive emissions from natural gas distribution,m3,31539000.0,kg/m3,0.0031,kg,97770.9,CO2,4437bd56-0ecd-3740-bb6c-bbb72ffc906d,AR-F,LA RIOJA,ENARGAS,annual,2021 +I.8.1,fugitive emissions from natural gas distribution,m3,34148000.0,kg/m3,0.0031,kg,105858.8,CO2,72c628d1-90e0-328b-985c-139b4bfb811e,AR-F,LA RIOJA,ENARGAS,annual,2022 +I.8.1,fugitive emissions from natural gas distribution,m3,1822117000.0,kg/m3,0.0031,kg,5648562.7,CO2,3d0fb388-1dd3-36d5-a6e1-473e49976b3c,AR-M,MENDOZA,ENARGAS,annual,2018 +I.8.1,fugitive emissions from natural gas distribution,m3,1803196000.0,kg/m3,0.0031,kg,5589907.6,CO2,d7ac9139-2776-3aff-bc72-88c09ddc8121,AR-M,MENDOZA,ENARGAS,annual,2019 +I.8.1,fugitive emissions from natural gas distribution,m3,1656968000.0,kg/m3,0.0031,kg,5136600.8,CO2,22ca1c03-fddd-3bcf-ae0c-92d9c0e49ad4,AR-M,MENDOZA,ENARGAS,annual,2020 +I.8.1,fugitive emissions from natural gas distribution,m3,1848327000.0,kg/m3,0.0031,kg,5729813.7,CO2,8fd2654f-6379-3df2-9849-fff187dd1716,AR-M,MENDOZA,ENARGAS,annual,2021 +I.8.1,fugitive emissions from natural gas distribution,m3,1852687000.0,kg/m3,0.0031,kg,5743329.7,CO2,30fa8741-e747-3672-bb81-7be24654031f,AR-M,MENDOZA,ENARGAS,annual,2022 +I.8.1,fugitive emissions from natural gas distribution,m3,786657000.0,kg/m3,0.0031,kg,2438636.6999999997,CO2,adf17328-f51a-3207-b5e2-c14aca75028b,AR-Q,NEUQUEN,ENARGAS,annual,2018 +I.8.1,fugitive emissions from natural gas distribution,m3,940225000.0,kg/m3,0.0031,kg,2914697.5,CO2,615f7cfd-313c-3405-86cf-bdedbf407be5,AR-Q,NEUQUEN,ENARGAS,annual,2019 +I.8.1,fugitive emissions from natural gas distribution,m3,935532000.0,kg/m3,0.0031,kg,2900149.1999999997,CO2,e8df5ffb-87a7-3418-ad0f-a0ed68b7a9bf,AR-Q,NEUQUEN,ENARGAS,annual,2020 +I.8.1,fugitive emissions from natural gas distribution,m3,908115000.0,kg/m3,0.0031,kg,2815156.5,CO2,23a20153-e031-3c0c-9862-51210155533d,AR-Q,NEUQUEN,ENARGAS,annual,2021 +I.8.1,fugitive emissions from natural gas distribution,m3,885949030.0,kg/m3,0.0031,kg,2746441.993,CO2,dc2156eb-a527-3f54-92d6-e0f6b09b9a23,AR-Q,NEUQUEN,ENARGAS,annual,2022 +I.8.1,fugitive emissions from natural gas distribution,m3,955088000.0,kg/m3,0.0031,kg,2960772.8,CO2,371348e1-7026-3f3a-a58d-4184937e5ee4,AR-R,RIO NEGRO,ENARGAS,annual,2018 +I.8.1,fugitive emissions from natural gas distribution,m3,917647000.0,kg/m3,0.0031,kg,2844705.6999999997,CO2,279d5b9a-34b6-3070-b84c-e10d3e18b1cb,AR-R,RIO NEGRO,ENARGAS,annual,2019 +I.8.1,fugitive emissions from natural gas distribution,m3,925287000.0,kg/m3,0.0031,kg,2868389.6999999997,CO2,1c7f4a8d-e85f-384b-9426-96b08b3f021c,AR-R,RIO NEGRO,ENARGAS,annual,2020 +I.8.1,fugitive emissions from natural gas distribution,m3,953438000.0,kg/m3,0.0031,kg,2955657.8,CO2,941abd6f-60ef-369e-94b0-223e42eb4d3f,AR-R,RIO NEGRO,ENARGAS,annual,2021 +I.8.1,fugitive emissions from natural gas distribution,m3,974251520.0,kg/m3,0.0031,kg,3020179.712,CO2,719a55ee-54df-38d6-8e4f-ec73e21b20d8,AR-R,RIO NEGRO,ENARGAS,annual,2022 +I.8.1,fugitive emissions from natural gas distribution,m3,784663726.0,kg/m3,0.0031,kg,2432457.5505999997,CO2,34aa449f-830d-3f06-8003-e564a8b08710,AR-A,SALTA,ENARGAS,annual,2018 +I.8.1,fugitive emissions from natural gas distribution,m3,530568631.0,kg/m3,0.0031,kg,1644762.7560999999,CO2,45624b65-4430-3259-9188-42e84fb7d5f0,AR-A,SALTA,ENARGAS,annual,2019 +I.8.1,fugitive emissions from natural gas distribution,m3,413491000.0,kg/m3,0.0031,kg,1281822.0999999999,CO2,b2aa7f37-bfa8-389b-8492-ac05f3d5ddb4,AR-A,SALTA,ENARGAS,annual,2020 +I.8.1,fugitive emissions from natural gas distribution,m3,464156489.15999997,kg/m3,0.0031,kg,1438885.116396,CO2,b5bf5cf7-5185-35d7-a952-a90c19969b83,AR-A,SALTA,ENARGAS,annual,2021 +I.8.1,fugitive emissions from natural gas distribution,m3,447942240.0,kg/m3,0.0031,kg,1388620.944,CO2,4a20bb50-4abe-326c-984c-9aeccb63163b,AR-A,SALTA,ENARGAS,annual,2022 +I.8.1,fugitive emissions from natural gas distribution,m3,329072000.0,kg/m3,0.0031,kg,1020123.2,CO2,c6d9f6a8-777a-3516-a670-e48048617cb6,AR-J,SAN JUAN,ENARGAS,annual,2018 +I.8.1,fugitive emissions from natural gas distribution,m3,332687000.0,kg/m3,0.0031,kg,1031329.7,CO2,a407da27-2c1b-3aef-a3fd-0daa264f6ffd,AR-J,SAN JUAN,ENARGAS,annual,2019 +I.8.1,fugitive emissions from natural gas distribution,m3,297125000.0,kg/m3,0.0031,kg,921087.5,CO2,00d87a1d-1cc0-3cb7-81ab-500c90eea3b1,AR-J,SAN JUAN,ENARGAS,annual,2020 +I.8.1,fugitive emissions from natural gas distribution,m3,307443000.0,kg/m3,0.0031,kg,953073.2999999999,CO2,450df754-5b34-306c-8273-daf2d4049963,AR-J,SAN JUAN,ENARGAS,annual,2021 +I.8.1,fugitive emissions from natural gas distribution,m3,352869000.0,kg/m3,0.0031,kg,1093893.9,CO2,3a3f95ca-86cc-3294-b83f-0ab223f39f37,AR-J,SAN JUAN,ENARGAS,annual,2022 +I.8.1,fugitive emissions from natural gas distribution,m3,283235000.0,kg/m3,0.0031,kg,878028.5,CO2,843dbbc8-ee87-36aa-858b-2133bb9fb346,AR-D,SAN LUIS,ENARGAS,annual,2018 +I.8.1,fugitive emissions from natural gas distribution,m3,268056000.0,kg/m3,0.0031,kg,830973.6,CO2,5dba813f-51be-38e1-b71a-3b258dce3600,AR-D,SAN LUIS,ENARGAS,annual,2019 +I.8.1,fugitive emissions from natural gas distribution,m3,240668000.0,kg/m3,0.0031,kg,746070.7999999999,CO2,94bbc00b-14f4-37c4-8eaa-5ac5f0db05aa,AR-D,SAN LUIS,ENARGAS,annual,2020 +I.8.1,fugitive emissions from natural gas distribution,m3,281194000.0,kg/m3,0.0031,kg,871701.4,CO2,3164e656-6b18-3a1a-9b16-da0bcb2a4eef,AR-D,SAN LUIS,ENARGAS,annual,2021 +I.8.1,fugitive emissions from natural gas distribution,m3,288237000.0,kg/m3,0.0031,kg,893534.7,CO2,d7441876-7859-3e9b-86e0-4097a2e00118,AR-D,SAN LUIS,ENARGAS,annual,2022 +I.8.1,fugitive emissions from natural gas distribution,m3,578418000.0,kg/m3,0.0031,kg,1793095.8,CO2,aae7d535-4da0-36e6-a43e-6d9f4378016e,AR-Z,SANTA CRUZ,ENARGAS,annual,2018 +I.8.1,fugitive emissions from natural gas distribution,m3,553561000.0,kg/m3,0.0031,kg,1716039.0999999999,CO2,5690ef22-4c9b-38bd-935c-09a173ec6720,AR-Z,SANTA CRUZ,ENARGAS,annual,2019 +I.8.1,fugitive emissions from natural gas distribution,m3,563988000.0,kg/m3,0.0031,kg,1748362.8,CO2,58a781ba-e24b-3ec0-81ed-e8c5313b7910,AR-Z,SANTA CRUZ,ENARGAS,annual,2020 +I.8.1,fugitive emissions from natural gas distribution,m3,552555000.0,kg/m3,0.0031,kg,1712920.5,CO2,31ab4833-fc72-3ba1-96db-6a29b689d258,AR-Z,SANTA CRUZ,ENARGAS,annual,2021 +I.8.1,fugitive emissions from natural gas distribution,m3,576469910.0,kg/m3,0.0031,kg,1787056.721,CO2,2d468e83-abf3-301e-91dd-2a6990a0e3d4,AR-Z,SANTA CRUZ,ENARGAS,annual,2022 +I.8.1,fugitive emissions from natural gas distribution,m3,2703024496.9725533,kg/m3,0.0031,kg,8379375.9406149145,CO2,3ffa123d-fcee-3e48-aaa2-734f46c4530a,AR-S,SANTA FE,ENARGAS,annual,2018 +I.8.1,fugitive emissions from natural gas distribution,m3,2482166844.0,kg/m3,0.0031,kg,7694717.216399999,CO2,7d19ad8b-2dec-3ff5-991e-3ce58b4db956,AR-S,SANTA FE,ENARGAS,annual,2019 +I.8.1,fugitive emissions from natural gas distribution,m3,2173486145.0,kg/m3,0.0031,kg,6737807.0495,CO2,33cfca58-3352-3a93-8a90-1750b98f0c3f,AR-S,SANTA FE,ENARGAS,annual,2020 +I.8.1,fugitive emissions from natural gas distribution,m3,2552566030.0,kg/m3,0.0031,kg,7912954.693,CO2,315f79bd-d0fe-3cf7-90b1-44a113387e45,AR-S,SANTA FE,ENARGAS,annual,2021 +I.8.1,fugitive emissions from natural gas distribution,m3,2484660910.0,kg/m3,0.0031,kg,7702448.8209999995,CO2,5af7b91d-63be-3282-ad95-8135db4e249f,AR-S,SANTA FE,ENARGAS,annual,2022 +I.8.1,fugitive emissions from natural gas distribution,m3,156922353.0,kg/m3,0.0031,kg,486459.2943,CO2,d1ea2dea-dbfc-36b0-bb21-6f9eb6acf911,AR-G,SANTIAGO DEL ESTERO,ENARGAS,annual,2018 +I.8.1,fugitive emissions from natural gas distribution,m3,117421551.0,kg/m3,0.0031,kg,364006.80809999997,CO2,47a8a3e8-69e0-3000-9f51-7120b9c12b74,AR-G,SANTIAGO DEL ESTERO,ENARGAS,annual,2019 +I.8.1,fugitive emissions from natural gas distribution,m3,82903000.0,kg/m3,0.0031,kg,256999.3,CO2,c7cb48c4-98ec-3cbf-a901-53b7c635a919,AR-G,SANTIAGO DEL ESTERO,ENARGAS,annual,2020 +I.8.1,fugitive emissions from natural gas distribution,m3,94194647.0,kg/m3,0.0031,kg,292003.4057,CO2,cbb68953-6c65-346c-9dee-f49afe2e4741,AR-G,SANTIAGO DEL ESTERO,ENARGAS,annual,2021 +I.8.1,fugitive emissions from natural gas distribution,m3,95420433.0,kg/m3,0.0031,kg,295803.3423,CO2,e402b2c6-ac44-324e-ada6-7c574fadfdac,AR-G,SANTIAGO DEL ESTERO,ENARGAS,annual,2022 +I.8.1,fugitive emissions from natural gas distribution,m3,609907000.0,kg/m3,0.0031,kg,1890711.7,CO2,910af95b-3afb-3f85-b512-1b13a5f0c3cf,AR-V,TIERRA DEL FUEGO,ENARGAS,annual,2018 +I.8.1,fugitive emissions from natural gas distribution,m3,672793000.0,kg/m3,0.0031,kg,2085658.2999999998,CO2,0ffed631-29cb-31d5-a03f-00d111b596fe,AR-V,TIERRA DEL FUEGO,ENARGAS,annual,2019 +I.8.1,fugitive emissions from natural gas distribution,m3,672872000.0,kg/m3,0.0031,kg,2085903.2,CO2,e77e71eb-cf3b-3a74-a4c7-9a9a7b05d1f8,AR-V,TIERRA DEL FUEGO,ENARGAS,annual,2020 +I.8.1,fugitive emissions from natural gas distribution,m3,726069000.0,kg/m3,0.0031,kg,2250813.9,CO2,140eb1dd-c14c-3604-aa6d-b9e5341ef3b3,AR-V,TIERRA DEL FUEGO,ENARGAS,annual,2021 +I.8.1,fugitive emissions from natural gas distribution,m3,766720460.0,kg/m3,0.0031,kg,2376833.426,CO2,dd6f8543-ef88-38f3-a0e0-f5f5d2d611cc,AR-V,TIERRA DEL FUEGO,ENARGAS,annual,2022 +I.8.1,fugitive emissions from natural gas distribution,m3,789097418.0,kg/m3,0.0031,kg,2446201.9957999997,CO2,eb90851a-7237-3c13-9e29-e8e8bf49baf9,AR-T,TUCUMAN,ENARGAS,annual,2018 +I.8.1,fugitive emissions from natural gas distribution,m3,617010133.0,kg/m3,0.0031,kg,1912731.4123,CO2,6b424534-d97f-3676-8f96-e9277d4af0c9,AR-T,TUCUMAN,ENARGAS,annual,2019 +I.8.1,fugitive emissions from natural gas distribution,m3,630329000.0,kg/m3,0.0031,kg,1954019.9,CO2,f0233bec-f04b-37f2-881d-7864253c8d0e,AR-T,TUCUMAN,ENARGAS,annual,2020 +I.8.1,fugitive emissions from natural gas distribution,m3,1636651485.2,kg/m3,0.0031,kg,5073619.60412,CO2,ce6ebfa5-ef08-30e0-8000-b7906262f40c,AR-T,TUCUMAN,ENARGAS,annual,2021 +I.8.1,fugitive emissions from natural gas distribution,m3,1371805505.45,kg/m3,0.0031,kg,4252597.066895,CO2,37969b66-6c7a-3d25-8e8f-bb0bacf8a4d6,AR-T,TUCUMAN,ENARGAS,annual,2022 +I.8.1,fugitive emissions from natural gas distribution,m3,12779299223.30907,kg/m3,0.2,kg,2555859844.661814,CH4,faf15c69-3a7d-3fe5-851a-961c0c646e4b,AR-B,BUENOS AIRES,ENARGAS,annual,2018 +I.8.1,fugitive emissions from natural gas distribution,m3,12722758982.0,kg/m3,0.2,kg,2544551796.4,CH4,6a1a1a15-52e3-33c1-a47b-69d0532eb716,AR-B,BUENOS AIRES,ENARGAS,annual,2019 +I.8.1,fugitive emissions from natural gas distribution,m3,12652871103.0,kg/m3,0.2,kg,2530574220.6,CH4,899a83bf-0fed-3a84-b689-c811439aa7e7,AR-B,BUENOS AIRES,ENARGAS,annual,2020 +I.8.1,fugitive emissions from natural gas distribution,m3,12361596490.0,kg/m3,0.2,kg,2472319298.0,CH4,02d6f0cd-1f17-3559-b573-cecc5dc9e971,AR-B,BUENOS AIRES,ENARGAS,annual,2021 +I.8.1,fugitive emissions from natural gas distribution,m3,12663416420.0,kg/m3,0.2,kg,2532683284.0,CH4,3fbaf17f-1147-3c27-b08d-7f3f02cef59a,AR-B,BUENOS AIRES,ENARGAS,annual,2022 +I.8.1,fugitive emissions from natural gas distribution,m3,4164667000.0,kg/m3,0.2,kg,832933400.0,CH4,851e970d-5c5c-3883-acae-e8816c206efe,AR-C,CAPITAL FEDERAL,ENARGAS,annual,2018 +I.8.1,fugitive emissions from natural gas distribution,m3,4101290000.0,kg/m3,0.2,kg,820258000.0,CH4,4594f94b-6547-3034-b698-78046b414b97,AR-C,CAPITAL FEDERAL,ENARGAS,annual,2019 +I.8.1,fugitive emissions from natural gas distribution,m3,3610580000.0,kg/m3,0.2,kg,722116000.0,CH4,40c76371-0753-3565-b25e-41cab179f5af,AR-C,CAPITAL FEDERAL,ENARGAS,annual,2020 +I.8.1,fugitive emissions from natural gas distribution,m3,3295466000.0,kg/m3,0.2,kg,659093200.0,CH4,8be39d17-a0c4-309e-8f63-9763871e5f66,AR-C,CAPITAL FEDERAL,ENARGAS,annual,2021 +I.8.1,fugitive emissions from natural gas distribution,m3,3429099000.0,kg/m3,0.2,kg,685819800.0,CH4,179bf72f-ed1c-36ef-a97c-03fb3b3fabaa,AR-C,CAPITAL FEDERAL,ENARGAS,annual,2022 +I.8.1,fugitive emissions from natural gas distribution,m3,117903000.0,kg/m3,0.2,kg,23580600.0,CH4,c40c67d1-2c66-39f6-be62-832f522f3f85,AR-K,CATAMARCA,ENARGAS,annual,2018 +I.8.1,fugitive emissions from natural gas distribution,m3,109019000.0,kg/m3,0.2,kg,21803800.0,CH4,db1c9ba1-23ed-3024-ad11-156d30c3414a,AR-K,CATAMARCA,ENARGAS,annual,2019 +I.8.1,fugitive emissions from natural gas distribution,m3,108706000.0,kg/m3,0.2,kg,21741200.0,CH4,370bbc6b-2c31-3918-b3d7-f7564d4fcbfb,AR-K,CATAMARCA,ENARGAS,annual,2020 +I.8.1,fugitive emissions from natural gas distribution,m3,114937000.0,kg/m3,0.2,kg,22987400.0,CH4,f36cb251-6cb2-3290-9262-6ccd2a5cc69e,AR-K,CATAMARCA,ENARGAS,annual,2021 +I.8.1,fugitive emissions from natural gas distribution,m3,133455000.0,kg/m3,0.2,kg,26691000.0,CH4,b0a8d719-9c53-36bd-a5d6-ddb66132539b,AR-K,CATAMARCA,ENARGAS,annual,2022 +I.8.1,fugitive emissions from natural gas distribution,m3,1519440000.0,kg/m3,0.2,kg,303888000.0,CH4,0eeaa2f6-550c-3d8c-b65d-7541b568fa22,AR-U,CHUBUT,ENARGAS,annual,2018 +I.8.1,fugitive emissions from natural gas distribution,m3,1575875000.0,kg/m3,0.2,kg,315175000.0,CH4,90936f8d-617f-3d12-8644-09ac0d4c508f,AR-U,CHUBUT,ENARGAS,annual,2019 +I.8.1,fugitive emissions from natural gas distribution,m3,1595652000.0,kg/m3,0.2,kg,319130400.0,CH4,39bb232f-6bc0-3d52-a08e-465364290f75,AR-U,CHUBUT,ENARGAS,annual,2020 +I.8.1,fugitive emissions from natural gas distribution,m3,1453111000.0,kg/m3,0.2,kg,290622200.0,CH4,85d646d2-2e39-3ffb-85b6-ef1abd51dbcb,AR-U,CHUBUT,ENARGAS,annual,2021 +I.8.1,fugitive emissions from natural gas distribution,m3,1349716550.0,kg/m3,0.2,kg,269943310.0,CH4,55202f2a-ddb6-33b2-9d53-302b06d51dac,AR-U,CHUBUT,ENARGAS,annual,2022 +I.8.1,fugitive emissions from natural gas distribution,m3,2297329000.0,kg/m3,0.2,kg,459465800.0,CH4,89691e39-2e34-3cf8-a0b0-b2882882a3b9,AR-X,CORDOBA,ENARGAS,annual,2018 +I.8.1,fugitive emissions from natural gas distribution,m3,2043539000.0,kg/m3,0.2,kg,408707800.0,CH4,ff0a86a5-2cf8-3948-81d8-ed05323a8a95,AR-X,CORDOBA,ENARGAS,annual,2019 +I.8.1,fugitive emissions from natural gas distribution,m3,1876255000.0,kg/m3,0.2,kg,375251000.0,CH4,374eefd9-44d4-3705-ad01-649530b6d6f6,AR-X,CORDOBA,ENARGAS,annual,2020 +I.8.1,fugitive emissions from natural gas distribution,m3,1971507000.0,kg/m3,0.2,kg,394301400.0,CH4,5e81c352-ba60-30d7-8212-d58963b6a6e7,AR-X,CORDOBA,ENARGAS,annual,2021 +I.8.1,fugitive emissions from natural gas distribution,m3,2025445000.0,kg/m3,0.2,kg,405089000.0,CH4,fcf5ab4b-5f97-3e4f-924d-ae8a49cc0051,AR-X,CORDOBA,ENARGAS,annual,2022 +I.8.1,fugitive emissions from natural gas distribution,m3,443350.0,kg/m3,0.2,kg,88670.0,CH4,fd25973d-5d03-344f-98c3-915f58411a5b,AR-W,CORRIENTES,ENARGAS,annual,2018 +I.8.1,fugitive emissions from natural gas distribution,m3,566000.0,kg/m3,0.2,kg,113200.0,CH4,f293081c-c857-3e85-bfa3-bffd9498db88,AR-W,CORRIENTES,ENARGAS,annual,2019 +I.8.1,fugitive emissions from natural gas distribution,m3,1201000.0,kg/m3,0.2,kg,240200.0,CH4,ba26e62e-b2fb-3b47-b122-333675102244,AR-W,CORRIENTES,ENARGAS,annual,2020 +I.8.1,fugitive emissions from natural gas distribution,m3,3628000.0,kg/m3,0.2,kg,725600.0,CH4,cfd69162-fbb2-3141-8c79-a0c50278c9d6,AR-W,CORRIENTES,ENARGAS,annual,2021 +I.8.1,fugitive emissions from natural gas distribution,m3,4705000.0,kg/m3,0.2,kg,941000.0,CH4,506301cf-05e0-3adc-820d-7031bbbe038a,AR-W,CORRIENTES,ENARGAS,annual,2022 +I.8.1,fugitive emissions from natural gas distribution,m3,272814000.0,kg/m3,0.2,kg,54562800.0,CH4,266c6ab6-2221-3e75-968c-db805b1bec0f,AR-E,ENTRE RIOS,ENARGAS,annual,2018 +I.8.1,fugitive emissions from natural gas distribution,m3,264763000.0,kg/m3,0.2,kg,52952600.0,CH4,b0602c29-f619-3e96-a9a3-cd9decb15df3,AR-E,ENTRE RIOS,ENARGAS,annual,2019 +I.8.1,fugitive emissions from natural gas distribution,m3,247678000.0,kg/m3,0.2,kg,49535600.0,CH4,c1f49cde-8c8a-3417-a1a9-92039ba41f28,AR-E,ENTRE RIOS,ENARGAS,annual,2020 +I.8.1,fugitive emissions from natural gas distribution,m3,276881000.0,kg/m3,0.2,kg,55376200.0,CH4,936fb158-f6e9-3432-b314-2ca28be9f72a,AR-E,ENTRE RIOS,ENARGAS,annual,2021 +I.8.1,fugitive emissions from natural gas distribution,m3,289026000.0,kg/m3,0.2,kg,57805200.0,CH4,805e5d34-505b-3b1f-b670-6744fd609b6b,AR-E,ENTRE RIOS,ENARGAS,annual,2022 +I.8.1,fugitive emissions from natural gas distribution,m3,335727678.0,kg/m3,0.2,kg,67145535.60000001,CH4,cc1fccb9-9231-3d31-8c88-b9e7e2e68cf9,AR-Y,JUJUY,ENARGAS,annual,2018 +I.8.1,fugitive emissions from natural gas distribution,m3,272565174.0,kg/m3,0.2,kg,54513034.800000004,CH4,28525627-3bff-3401-848e-2b2b390006d3,AR-Y,JUJUY,ENARGAS,annual,2019 +I.8.1,fugitive emissions from natural gas distribution,m3,238192000.0,kg/m3,0.2,kg,47638400.0,CH4,a79dcc7e-bf0d-3236-91dc-6488f2d05637,AR-Y,JUJUY,ENARGAS,annual,2020 +I.8.1,fugitive emissions from natural gas distribution,m3,254375768.84,kg/m3,0.2,kg,50875153.76800001,CH4,ade39f27-c56d-3ada-9c71-33a5dd073a78,AR-Y,JUJUY,ENARGAS,annual,2021 +I.8.1,fugitive emissions from natural gas distribution,m3,255760593.99,kg/m3,0.2,kg,51152118.79800001,CH4,f70820ab-6dd7-3674-a955-1ca1f4f6a2d6,AR-Y,JUJUY,ENARGAS,annual,2022 +I.8.1,fugitive emissions from natural gas distribution,m3,306359000.0,kg/m3,0.2,kg,61271800.0,CH4,b5260aa7-37c7-3e89-91a5-0f0e7c3f0c1f,AR-L,LA PAMPA,ENARGAS,annual,2018 +I.8.1,fugitive emissions from natural gas distribution,m3,302094000.0,kg/m3,0.2,kg,60418800.0,CH4,a0de5fa5-17f0-3196-be6e-1d91f19aa77e,AR-L,LA PAMPA,ENARGAS,annual,2019 +I.8.1,fugitive emissions from natural gas distribution,m3,313766000.0,kg/m3,0.2,kg,62753200.0,CH4,faf31f99-0c96-33fc-911a-060a0d6abbae,AR-L,LA PAMPA,ENARGAS,annual,2020 +I.8.1,fugitive emissions from natural gas distribution,m3,322930000.0,kg/m3,0.2,kg,64586000.0,CH4,f7cbdb1c-4cab-3e47-acd2-c6da1b3a97c1,AR-L,LA PAMPA,ENARGAS,annual,2021 +I.8.1,fugitive emissions from natural gas distribution,m3,345258100.0,kg/m3,0.2,kg,69051620.0,CH4,8d70d710-ae63-3bab-8828-33157e48ac75,AR-L,LA PAMPA,ENARGAS,annual,2022 +I.8.1,fugitive emissions from natural gas distribution,m3,39869000.0,kg/m3,0.2,kg,7973800.0,CH4,d29f1059-7da3-3e01-a99b-19be2abf3dc8,AR-F,LA RIOJA,ENARGAS,annual,2018 +I.8.1,fugitive emissions from natural gas distribution,m3,46601000.0,kg/m3,0.2,kg,9320200.0,CH4,b1044874-8e0c-34f2-889c-b8160aa0696d,AR-F,LA RIOJA,ENARGAS,annual,2019 +I.8.1,fugitive emissions from natural gas distribution,m3,33851000.0,kg/m3,0.2,kg,6770200.0,CH4,d6a0da02-1685-3db5-8e62-d72033c9f548,AR-F,LA RIOJA,ENARGAS,annual,2020 +I.8.1,fugitive emissions from natural gas distribution,m3,31539000.0,kg/m3,0.2,kg,6307800.0,CH4,0be252f2-15e1-367f-aca7-8adc5262a81a,AR-F,LA RIOJA,ENARGAS,annual,2021 +I.8.1,fugitive emissions from natural gas distribution,m3,34148000.0,kg/m3,0.2,kg,6829600.0,CH4,1fdcc518-6054-34ad-aaa5-e872acf9e7b9,AR-F,LA RIOJA,ENARGAS,annual,2022 +I.8.1,fugitive emissions from natural gas distribution,m3,1822117000.0,kg/m3,0.2,kg,364423400.0,CH4,cd7d32cc-1963-3e98-8ed5-7b6aeeeb2d8a,AR-M,MENDOZA,ENARGAS,annual,2018 +I.8.1,fugitive emissions from natural gas distribution,m3,1803196000.0,kg/m3,0.2,kg,360639200.0,CH4,d50802bc-83bc-31b4-a39b-0f949800da12,AR-M,MENDOZA,ENARGAS,annual,2019 +I.8.1,fugitive emissions from natural gas distribution,m3,1656968000.0,kg/m3,0.2,kg,331393600.0,CH4,c2cae84e-8628-371b-a16f-1d4d51baead1,AR-M,MENDOZA,ENARGAS,annual,2020 +I.8.1,fugitive emissions from natural gas distribution,m3,1848327000.0,kg/m3,0.2,kg,369665400.0,CH4,5dab0755-f776-3e8d-ac99-418ee25b62a6,AR-M,MENDOZA,ENARGAS,annual,2021 +I.8.1,fugitive emissions from natural gas distribution,m3,1852687000.0,kg/m3,0.2,kg,370537400.0,CH4,78c9acb8-6549-3873-991a-d8248f9bbf5b,AR-M,MENDOZA,ENARGAS,annual,2022 +I.8.1,fugitive emissions from natural gas distribution,m3,786657000.0,kg/m3,0.2,kg,157331400.0,CH4,31d2db72-7b92-3cd4-a27d-ca6dd569c22a,AR-Q,NEUQUEN,ENARGAS,annual,2018 +I.8.1,fugitive emissions from natural gas distribution,m3,940225000.0,kg/m3,0.2,kg,188045000.0,CH4,c2ad073d-d3de-3b82-91e7-d49b338cf466,AR-Q,NEUQUEN,ENARGAS,annual,2019 +I.8.1,fugitive emissions from natural gas distribution,m3,935532000.0,kg/m3,0.2,kg,187106400.0,CH4,49d627a1-5a4d-3c33-b4e1-99efe22364fb,AR-Q,NEUQUEN,ENARGAS,annual,2020 +I.8.1,fugitive emissions from natural gas distribution,m3,908115000.0,kg/m3,0.2,kg,181623000.0,CH4,12fb0fa4-b813-31e8-9268-a5875ebe75a0,AR-Q,NEUQUEN,ENARGAS,annual,2021 +I.8.1,fugitive emissions from natural gas distribution,m3,885949030.0,kg/m3,0.2,kg,177189806.0,CH4,ffb2b35e-0ec1-3586-a37a-04d446d5b3af,AR-Q,NEUQUEN,ENARGAS,annual,2022 +I.8.1,fugitive emissions from natural gas distribution,m3,955088000.0,kg/m3,0.2,kg,191017600.0,CH4,919fc376-260d-340f-8c7e-e7233838a522,AR-R,RIO NEGRO,ENARGAS,annual,2018 +I.8.1,fugitive emissions from natural gas distribution,m3,917647000.0,kg/m3,0.2,kg,183529400.0,CH4,97653fa1-55af-3972-86cb-4baef3fe282d,AR-R,RIO NEGRO,ENARGAS,annual,2019 +I.8.1,fugitive emissions from natural gas distribution,m3,925287000.0,kg/m3,0.2,kg,185057400.0,CH4,681493bb-a06a-3166-b102-42179ea51128,AR-R,RIO NEGRO,ENARGAS,annual,2020 +I.8.1,fugitive emissions from natural gas distribution,m3,953438000.0,kg/m3,0.2,kg,190687600.0,CH4,ce647edb-a40c-39fc-ae2f-35c587e42439,AR-R,RIO NEGRO,ENARGAS,annual,2021 +I.8.1,fugitive emissions from natural gas distribution,m3,974251520.0,kg/m3,0.2,kg,194850304.0,CH4,6253a4d6-6527-3b91-a670-6cbb4269ad61,AR-R,RIO NEGRO,ENARGAS,annual,2022 +I.8.1,fugitive emissions from natural gas distribution,m3,784663726.0,kg/m3,0.2,kg,156932745.20000002,CH4,6abe948c-1bfb-3a58-a6ee-c12e34292151,AR-A,SALTA,ENARGAS,annual,2018 +I.8.1,fugitive emissions from natural gas distribution,m3,530568631.0,kg/m3,0.2,kg,106113726.2,CH4,fee5dcf3-5c3a-3778-99a7-a9eade96ada0,AR-A,SALTA,ENARGAS,annual,2019 +I.8.1,fugitive emissions from natural gas distribution,m3,413491000.0,kg/m3,0.2,kg,82698200.0,CH4,440c5cbd-bd9c-3108-a07c-1efdcdf20678,AR-A,SALTA,ENARGAS,annual,2020 +I.8.1,fugitive emissions from natural gas distribution,m3,464156489.15999997,kg/m3,0.2,kg,92831297.832,CH4,aa9ff707-52aa-33da-adbd-7c725d41db4a,AR-A,SALTA,ENARGAS,annual,2021 +I.8.1,fugitive emissions from natural gas distribution,m3,447942240.0,kg/m3,0.2,kg,89588448.0,CH4,74069f4e-192e-3b79-b3fb-af2bb98acae6,AR-A,SALTA,ENARGAS,annual,2022 +I.8.1,fugitive emissions from natural gas distribution,m3,329072000.0,kg/m3,0.2,kg,65814400.0,CH4,72e8e604-d836-3733-9556-0160a4440c2c,AR-J,SAN JUAN,ENARGAS,annual,2018 +I.8.1,fugitive emissions from natural gas distribution,m3,332687000.0,kg/m3,0.2,kg,66537400.0,CH4,97277f04-d2e1-3427-9bca-5f3fc4df47fe,AR-J,SAN JUAN,ENARGAS,annual,2019 +I.8.1,fugitive emissions from natural gas distribution,m3,297125000.0,kg/m3,0.2,kg,59425000.0,CH4,7149b93f-ac4a-30c4-be32-b287d97146a8,AR-J,SAN JUAN,ENARGAS,annual,2020 +I.8.1,fugitive emissions from natural gas distribution,m3,307443000.0,kg/m3,0.2,kg,61488600.0,CH4,718aaafa-f7b1-380b-9f35-d02dcb5499ed,AR-J,SAN JUAN,ENARGAS,annual,2021 +I.8.1,fugitive emissions from natural gas distribution,m3,352869000.0,kg/m3,0.2,kg,70573800.0,CH4,8e0b21a6-2712-38a1-85c2-0fb8e7133114,AR-J,SAN JUAN,ENARGAS,annual,2022 +I.8.1,fugitive emissions from natural gas distribution,m3,283235000.0,kg/m3,0.2,kg,56647000.0,CH4,7b913ff0-ab74-3958-9a72-80bd190f4ecd,AR-D,SAN LUIS,ENARGAS,annual,2018 +I.8.1,fugitive emissions from natural gas distribution,m3,268056000.0,kg/m3,0.2,kg,53611200.0,CH4,3b92dd93-c988-309c-92ff-030ae4285425,AR-D,SAN LUIS,ENARGAS,annual,2019 +I.8.1,fugitive emissions from natural gas distribution,m3,240668000.0,kg/m3,0.2,kg,48133600.0,CH4,a56dc9eb-8e97-382c-9825-62b70fd32985,AR-D,SAN LUIS,ENARGAS,annual,2020 +I.8.1,fugitive emissions from natural gas distribution,m3,281194000.0,kg/m3,0.2,kg,56238800.0,CH4,1e01b3ff-9ec8-33ac-b10b-a6e46be6e70c,AR-D,SAN LUIS,ENARGAS,annual,2021 +I.8.1,fugitive emissions from natural gas distribution,m3,288237000.0,kg/m3,0.2,kg,57647400.0,CH4,c2cfd378-98b1-3d2a-81e2-49d9e31398f9,AR-D,SAN LUIS,ENARGAS,annual,2022 +I.8.1,fugitive emissions from natural gas distribution,m3,578418000.0,kg/m3,0.2,kg,115683600.0,CH4,6733ceb7-6c5f-3ef8-ada5-f017dfde8ff9,AR-Z,SANTA CRUZ,ENARGAS,annual,2018 +I.8.1,fugitive emissions from natural gas distribution,m3,553561000.0,kg/m3,0.2,kg,110712200.0,CH4,a8cd565c-0d26-3954-9ee2-4021b20bfb1b,AR-Z,SANTA CRUZ,ENARGAS,annual,2019 +I.8.1,fugitive emissions from natural gas distribution,m3,563988000.0,kg/m3,0.2,kg,112797600.0,CH4,6b11fbb1-bebe-30fa-8def-3da0e83121c9,AR-Z,SANTA CRUZ,ENARGAS,annual,2020 +I.8.1,fugitive emissions from natural gas distribution,m3,552555000.0,kg/m3,0.2,kg,110511000.0,CH4,5671f0a2-eefd-343c-a4c8-92db0da84a84,AR-Z,SANTA CRUZ,ENARGAS,annual,2021 +I.8.1,fugitive emissions from natural gas distribution,m3,576469910.0,kg/m3,0.2,kg,115293982.0,CH4,2ebe679b-c0e9-3b77-8838-76222c103b8d,AR-Z,SANTA CRUZ,ENARGAS,annual,2022 +I.8.1,fugitive emissions from natural gas distribution,m3,2703024496.9725533,kg/m3,0.2,kg,540604899.3945106,CH4,ebd37e19-98ad-3d2d-9778-84da035c0feb,AR-S,SANTA FE,ENARGAS,annual,2018 +I.8.1,fugitive emissions from natural gas distribution,m3,2482166844.0,kg/m3,0.2,kg,496433368.8,CH4,708d98ed-580d-3b61-abfd-eaedaa4aeaf7,AR-S,SANTA FE,ENARGAS,annual,2019 +I.8.1,fugitive emissions from natural gas distribution,m3,2173486145.0,kg/m3,0.2,kg,434697229.0,CH4,77013308-cdce-3256-b475-d3e6fa6487cd,AR-S,SANTA FE,ENARGAS,annual,2020 +I.8.1,fugitive emissions from natural gas distribution,m3,2552566030.0,kg/m3,0.2,kg,510513206.0,CH4,44f3264e-e7a2-31f8-ab09-718f3a22fa10,AR-S,SANTA FE,ENARGAS,annual,2021 +I.8.1,fugitive emissions from natural gas distribution,m3,2484660910.0,kg/m3,0.2,kg,496932182.0,CH4,14bcb96d-b927-3c3b-8345-626506759c42,AR-S,SANTA FE,ENARGAS,annual,2022 +I.8.1,fugitive emissions from natural gas distribution,m3,156922353.0,kg/m3,0.2,kg,31384470.6,CH4,601bb30c-9f01-369f-b982-1999216364c9,AR-G,SANTIAGO DEL ESTERO,ENARGAS,annual,2018 +I.8.1,fugitive emissions from natural gas distribution,m3,117421551.0,kg/m3,0.2,kg,23484310.200000003,CH4,8c95a680-2463-3db5-8036-da7fe4794df2,AR-G,SANTIAGO DEL ESTERO,ENARGAS,annual,2019 +I.8.1,fugitive emissions from natural gas distribution,m3,82903000.0,kg/m3,0.2,kg,16580600.0,CH4,11e623fa-12cd-36b1-a9ef-001eac75c6dc,AR-G,SANTIAGO DEL ESTERO,ENARGAS,annual,2020 +I.8.1,fugitive emissions from natural gas distribution,m3,94194647.0,kg/m3,0.2,kg,18838929.400000002,CH4,c82e979d-3f76-3fab-b18e-6193c70545fe,AR-G,SANTIAGO DEL ESTERO,ENARGAS,annual,2021 +I.8.1,fugitive emissions from natural gas distribution,m3,95420433.0,kg/m3,0.2,kg,19084086.6,CH4,732e8a23-fabe-37b5-b3f5-ae3a6b9309ee,AR-G,SANTIAGO DEL ESTERO,ENARGAS,annual,2022 +I.8.1,fugitive emissions from natural gas distribution,m3,609907000.0,kg/m3,0.2,kg,121981400.0,CH4,fb9c1e26-ca6e-377a-899d-0411b697d893,AR-V,TIERRA DEL FUEGO,ENARGAS,annual,2018 +I.8.1,fugitive emissions from natural gas distribution,m3,672793000.0,kg/m3,0.2,kg,134558600.0,CH4,245f754a-fd70-3e33-9d07-902e24b3219a,AR-V,TIERRA DEL FUEGO,ENARGAS,annual,2019 +I.8.1,fugitive emissions from natural gas distribution,m3,672872000.0,kg/m3,0.2,kg,134574400.0,CH4,8eac9988-1bf0-3781-ba4c-2603dc28c8e3,AR-V,TIERRA DEL FUEGO,ENARGAS,annual,2020 +I.8.1,fugitive emissions from natural gas distribution,m3,726069000.0,kg/m3,0.2,kg,145213800.0,CH4,0d41ee3f-fe26-33fb-b988-56df01b1a40d,AR-V,TIERRA DEL FUEGO,ENARGAS,annual,2021 +I.8.1,fugitive emissions from natural gas distribution,m3,766720460.0,kg/m3,0.2,kg,153344092.0,CH4,cbf1e6f0-ae0a-3356-af70-1aa8ca842550,AR-V,TIERRA DEL FUEGO,ENARGAS,annual,2022 +I.8.1,fugitive emissions from natural gas distribution,m3,789097418.0,kg/m3,0.2,kg,157819483.6,CH4,c308e4ab-2215-304d-8680-879c64db5016,AR-T,TUCUMAN,ENARGAS,annual,2018 +I.8.1,fugitive emissions from natural gas distribution,m3,617010133.0,kg/m3,0.2,kg,123402026.60000001,CH4,83e7f738-83e7-3040-965a-5ce3f81a022d,AR-T,TUCUMAN,ENARGAS,annual,2019 +I.8.1,fugitive emissions from natural gas distribution,m3,630329000.0,kg/m3,0.2,kg,126065800.0,CH4,ea399aa6-6506-3cd4-bf92-1f514c5349c6,AR-T,TUCUMAN,ENARGAS,annual,2020 +I.8.1,fugitive emissions from natural gas distribution,m3,1636651485.2,kg/m3,0.2,kg,327330297.04,CH4,00354f48-dc00-35fe-975c-aa2599dc451e,AR-T,TUCUMAN,ENARGAS,annual,2021 +I.8.1,fugitive emissions from natural gas distribution,m3,1371805505.45,kg/m3,0.2,kg,274361101.09000003,CH4,414dd0c2-2bee-3878-b74c-f4e518c10e2f,AR-T,TUCUMAN,ENARGAS,annual,2022 I.2.1,natural gas consumption by commercial buildings,TJ,16809.542802669082,kg/TJ,56100.0,kg,943015351.2297355,CO2,8e3ace5b-883d-357b-a1df-3211049b1223,AR-B,BUENOS AIRES,ENARGAS,annual,2018 I.1.1,natural gas consumption by residential buildings,TJ,146786.40084474,kg/TJ,56100.0,kg,8234717087.3899145,CO2,d95b11e6-7d11-360d-a2a2-8cf32219a8db,AR-B,BUENOS AIRES,ENARGAS,annual,2018 I.2.1,natural gas consumption by official entities,TJ,5984.119720620001,kg/TJ,56100.0,kg,335709116.32678205,CO2,af51fc6e-273d-3db1-b32a-ef5893dd0ca0,AR-B,BUENOS AIRES,ENARGAS,annual,2018 diff --git a/global-api/importer/argentinian_datasets/ENARGAS/transformation_ENARGAS.py b/global-api/importer/argentinian_datasets/ENARGAS/transformation_ENARGAS.py index fde47f4a4..72e95b388 100644 --- a/global-api/importer/argentinian_datasets/ENARGAS/transformation_ENARGAS.py +++ b/global-api/importer/argentinian_datasets/ENARGAS/transformation_ENARGAS.py @@ -33,6 +33,46 @@ def uuid_generate_v3(name, namespace=uuid.NAMESPACE_OID): ] df.columns = column_names + # convert activity_value column into numeric type + df['activity_value'] = df['activity_value'].str.replace(',', '.') + df['activity_value'] = pd.to_numeric(df['activity_value'], errors='coerce') + + # from thousands of m3 to m3 + df['activity_value'] = df['activity_value']*1000 + + #-------------------------------------------------------------------------- + # Emissions Calculation for subsector I.8.1 + #-------------------------------------------------------------------------- + # calculate the total gas natural consumption for the entire region by year + subsector_I81 = df.groupby(['region_name', 'year']).agg({'activity_value': 'sum'}).reset_index() + + # Emision Factors source: 2006 IPCC Guidelines for National Greenhouse Gas Inventories + ef_df = pd.DataFrame() + ef_df['gas_name'] = ['CO2', 'CH4'] + # for CH4 the original values are 0.000044-0.00032 + # here we take the mean value from them + ef_df['emission_factor_value'] = [0.0000031*1e-6*1e9, 0.0002*1e-6*1e9] # 10^6 m3 to m3 and Gg to kg + #original EF units = Gg per 10^6 m^3 of marketable gas + ef_df['emission_factor_units'] = 'kg/m3' + + result_df1 = pd.DataFrame() + for gas in ef_df['gas_name']: + temp_df = subsector_I81.copy() + # assign the corresponding values + temp_df['gas_name'] = gas + temp_df['emission_factor_value'] = ef_df[(ef_df['gas_name'] == gas)]['emission_factor_value'].iloc[0] + temp_df['emission_factor_units'] = ef_df[ef_df['gas_name'] == gas]['emission_factor_units'].iloc[0] + # Concatenate the temporary DataFrame to the result_df1 + result_df1 = pd.concat([result_df1, temp_df], ignore_index=True) + result_df1['emissions_value'] = result_df1['activity_value']*result_df1['emission_factor_value'] + + result_df1.loc[:, 'GPC_refno'] = 'I.8.1' + result_df1.loc[:, 'activity_name'] = 'fugitive emissions from natural gas distribution' + result_df1.loc[:, 'activity_units'] = 'm3' + + #-------------------------------------------------------------------------- + # Emissions Calculation for subsector I.1.1, I.2.1, 1.3.1, II.1.1 + #-------------------------------------------------------------------------- # delete the subsectors that don't apply for this transformation subsectors_uncovered = ['CENTRALES ELECTRICAS', 'SDB'] df = df[~df['user_type'].isin(subsectors_uncovered)] @@ -66,23 +106,13 @@ def uuid_generate_v3(name, namespace=uuid.NAMESPACE_OID): if user_type in subsector_dic.keys(): df.at[index, 'activity_name'] = subsector_dic[user_type]['description'] df.at[index, 'GPC_refno'] = subsector_dic[user_type]['GPC_refno'] - - df = df.drop(columns='user_type', axis=1) - - #-------------------------------------------------------------------------- - # Emissions Calculation - #-------------------------------------------------------------------------- - df['activity_value'] = df['activity_value'].str.replace(',', '.') - df['activity_value'] = pd.to_numeric(df['activity_value'], errors='coerce') - - # from thousands of m3 to m3 - df['activity_value'] = df['activity_value']*1000 # from m3 of gas to TJ # gas: 9300 kcal/m3 # 1 kcal = 4.1858e-9 TJ factor = 9300*4.1858*1e-9 df['activity_value'] = df['activity_value']*factor + df['activity_units'] = 'TJ' # Emision Factors source: 2006 IPCC Guidelines for National Greenhouse Gas Inventories ef_df = pd.DataFrame() @@ -91,7 +121,7 @@ def uuid_generate_v3(name, namespace=uuid.NAMESPACE_OID): ef_df['emission_factor_units'] = 'kg/TJ' ef_df['sector'] = ['I','I','I', 'II','II','II'] - result_df = pd.DataFrame() + result_df2 = pd.DataFrame() for gas in ef_df['gas_name'].unique(): for sector in ['I', 'II']: @@ -109,14 +139,19 @@ def uuid_generate_v3(name, namespace=uuid.NAMESPACE_OID): temp_df['emission_factor_units'] = ef[ef['gas_name'] == gas]['emission_factor_units'].iloc[0] # Concatenate the temporary DataFrame to the result_df - result_df = pd.concat([result_df, temp_df], ignore_index=True) + result_df2 = pd.concat([result_df2, temp_df], ignore_index=True) - result_df['emissions_value'] = result_df['activity_value']*result_df['emission_factor_value'] - result_df['emissions_units'] = 'kg' + result_df2['emissions_value'] = result_df2['activity_value']*result_df2['emission_factor_value'] #-------------------------------------------------------------------------- # Final details #-------------------------------------------------------------------------- + # concat both dataframes + result_df = pd.concat([result_df1, result_df2], ignore_index=True) + + # delete column + result_df = result_df.drop(columns='user_type', axis=1) + # assigning region CODE based on the region name locode_dic = { 'BUENOS AIRES':'AR-B', @@ -148,7 +183,7 @@ def uuid_generate_v3(name, namespace=uuid.NAMESPACE_OID): result_df.at[index, 'region_code'] = locode_dic[region_name] # adding new columns - result_df['activity_units'] = 'TJ' + result_df['emissions_units'] = 'kg' result_df['temporal_granularity'] = 'annual' result_df['source_name'] = 'ENARGAS' From c75b15940856b9a29bd88f0a8d0fb7be1737e9ee Mon Sep 17 00:00:00 2001 From: Cephas Chapa Date: Thu, 25 Apr 2024 11:28:41 +0200 Subject: [PATCH 15/45] fix(api):reverted to admin email template --- app/src/app/api/v0/city/[city]/file/route.ts | 58 ++++++------------- .../lib/emails/AdminNotificationTemplate.tsx | 5 +- 2 files changed, 21 insertions(+), 42 deletions(-) diff --git a/app/src/app/api/v0/city/[city]/file/route.ts b/app/src/app/api/v0/city/[city]/file/route.ts index 05877b3ca..a95c45891 100644 --- a/app/src/app/api/v0/city/[city]/file/route.ts +++ b/app/src/app/api/v0/city/[city]/file/route.ts @@ -128,47 +128,23 @@ export const POST = apiHandler( fileType: userFile.fileType!, }, }; - const host = process.env.HOST ?? "http://localhost:3000"; - - const emailTemplate = ` - - - - - - Email Notification - - - - - - `; - - if (process.env.NODE_ENV !== "test") { - await service.sendEmail({ - to: process.env.ADMIN_EMAILS!, - subject: "CityCatalyst File Upload", - text: "City Catalyst", - html: emailTemplate, - }); - } + + await service.sendEmail({ + to: process.env.ADMIN_EMAILS!, + subject: "CityCatalyst File Upload", + text: "City Catalyst", + html: render( + AdminNotificationTemplate({ + adminNames: process.env.ADMIN_NAMES!, + file: newFileData, + user: { + cityName: city.name!, + email: user?.email!, + name: user?.name!, + }, + }), + ), + }); return NextResponse.json({ data: newFileData, diff --git a/app/src/lib/emails/AdminNotificationTemplate.tsx b/app/src/lib/emails/AdminNotificationTemplate.tsx index 2dbd19f0e..a8cd00ce3 100644 --- a/app/src/lib/emails/AdminNotificationTemplate.tsx +++ b/app/src/lib/emails/AdminNotificationTemplate.tsx @@ -128,11 +128,14 @@ export default function AdminNotificationTemplate({ const tag = { padding: "6px", paddingLeft: "8px", + paddingRight: "8px", display: "flex", alignItems: "center", width: "150px", - overflow: "ellipsis", + whiteSpace: "nowrap", borderRadius: "30px", + overflow: "hidden", + textOverflow: "ellipsis", background: "#e8eafb", color: "#2351dc", marginRight: "8px", From d180f6e5a5d7d423d54a37548974a441c1e116bb Mon Sep 17 00:00:00 2001 From: Cephas Chapa Date: Thu, 25 Apr 2024 14:52:58 +0200 Subject: [PATCH 16/45] fix(api): added mock transporter to userfiles --- app/src/app/api/v0/city/[city]/file/route.ts | 36 +++++++++++--------- app/src/backend/NotificationService.ts | 19 ++++++++--- app/tests/api/userfile.test.ts | 28 +++++++++++---- app/tests/helpers.ts | 8 +++++ 4 files changed, 63 insertions(+), 28 deletions(-) diff --git a/app/src/app/api/v0/city/[city]/file/route.ts b/app/src/app/api/v0/city/[city]/file/route.ts index a95c45891..9f682ba05 100644 --- a/app/src/app/api/v0/city/[city]/file/route.ts +++ b/app/src/app/api/v0/city/[city]/file/route.ts @@ -61,7 +61,7 @@ export const GET = apiHandler(async (_req: Request, context) => { export const POST = apiHandler( async (req: NextRequest, { params, session }) => { - const service = new NotificationService(); // TODO cache this/ make it a singleton + const service = NotificationService.getInstance(); // TODO cache this/ make it a singleton const user = session?.user; const cityId = params.city; @@ -129,22 +129,24 @@ export const POST = apiHandler( }, }; - await service.sendEmail({ - to: process.env.ADMIN_EMAILS!, - subject: "CityCatalyst File Upload", - text: "City Catalyst", - html: render( - AdminNotificationTemplate({ - adminNames: process.env.ADMIN_NAMES!, - file: newFileData, - user: { - cityName: city.name!, - email: user?.email!, - name: user?.name!, - }, - }), - ), - }); + if (!userFile) { + await service.sendEmail({ + to: process.env.ADMIN_EMAILS!, + subject: "CityCatalyst File Upload", + text: "City Catalyst", + html: render( + AdminNotificationTemplate({ + adminNames: process.env.ADMIN_NAMES!, + file: newFileData, + user: { + cityName: city.name!, + email: user?.email!, + name: user?.name!, + }, + }), + ), + }); + } return NextResponse.json({ data: newFileData, diff --git a/app/src/backend/NotificationService.ts b/app/src/backend/NotificationService.ts index 140d6808e..822aabf46 100644 --- a/app/src/backend/NotificationService.ts +++ b/app/src/backend/NotificationService.ts @@ -1,23 +1,34 @@ import { smtpOptions } from "@/lib/email"; import nodemailer, { Transporter } from "nodemailer"; -interface EmailOptions { +export interface EmailOptions { to: string; subject: string; text: string; html: string; } -interface SendEmailResponse { +export interface SendEmailResponse { success: boolean; messageId?: string; error?: any; } class NotificationService { + private static instance: NotificationService; private transporter: Transporter; - constructor() { - this.transporter = nodemailer.createTransport({ ...smtpOptions }); + + private constructor(transporter?: Transporter) { + this.transporter = + transporter || nodemailer.createTransport({ ...smtpOptions }); + } + + static getInstance(transporter?: Transporter): NotificationService { + if (!NotificationService.instance) { + NotificationService.instance = new NotificationService(transporter); + } + + return NotificationService.instance; } async sendEmail({ diff --git a/app/tests/api/userfile.test.ts b/app/tests/api/userfile.test.ts index fab3892f1..1ec70600f 100644 --- a/app/tests/api/userfile.test.ts +++ b/app/tests/api/userfile.test.ts @@ -10,7 +10,15 @@ import { import { db } from "@/models"; import assert from "node:assert"; -import { after, before, describe, it } from "node:test"; +import { + after, + afterEach, + before, + beforeEach, + describe, + it, + mock, +} from "node:test"; import { testFileFormat, filePath, @@ -20,6 +28,7 @@ import { setupTests, testUserID, testCityID, + mockTransporter, } from "../helpers"; import { randomUUID } from "node:crypto"; import fs from "fs"; @@ -74,11 +83,6 @@ describe("UserFile API", () => { name: "TEST_CITY", }); await user.addCity(city); - - const service = new NotificationService(); - service.sendEmail = async () => { - return { success: true, messageId: "send" }; - }; }); after(async () => { if (db.sequelize) await db.sequelize.close(); @@ -110,8 +114,18 @@ describe("UserFile API", () => { const res = await createUserFile(req, { params: { city: testCityID }, }); - assert.equal(res.status, 200); + + const service = NotificationService.getInstance(mockTransporter); + + await service.sendEmail({ + to: "text@example.com", + subject: "Test Email", + text: "This is a test", + html: "

    This is a test

    ", + }); + const { data } = await res.json(); + assert.equal(res.status, 200); assert.equal(data?.sector, fileData?.sector); assert.equal(data?.url, fileData.url); assert.equal(data?.status, fileData.status); diff --git a/app/tests/helpers.ts b/app/tests/helpers.ts index 26fe93901..f3f62a311 100644 --- a/app/tests/helpers.ts +++ b/app/tests/helpers.ts @@ -35,6 +35,14 @@ export function mockRequestFormData(formData: FormData) { return request; } +const MOCK_ID = ""; + +export const mockTransporter = { + sendMail: async (mailOptions: any) => { + return { messageId: MOCK_ID }; // Return a fake message ID + }, +}; + const finished = promisify(stream.finished); export async function getFileDataFromStream(filePath: string): Promise { From df48b95b6c31bc77a324e868f81bf409f06f3374 Mon Sep 17 00:00:00 2001 From: Amanda Eames Date: Fri, 26 Apr 2024 09:55:14 +1000 Subject: [PATCH 17/45] updated load sql file --- .../importer/argentinian_datasets/cammesa/load_cammesa.sql | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/global-api/importer/argentinian_datasets/cammesa/load_cammesa.sql b/global-api/importer/argentinian_datasets/cammesa/load_cammesa.sql index d7bec1074..d673b844d 100644 --- a/global-api/importer/argentinian_datasets/cammesa/load_cammesa.sql +++ b/global-api/importer/argentinian_datasets/cammesa/load_cammesa.sql @@ -5,7 +5,7 @@ CREATE TEMP TABLE IF NOT EXISTS region_code_staging (LIKE regionwide_emissions I TRUNCATE region_code_staging; -- Load the staging table from the downloaded file -\copy region_code_staging (id,source_name,"GPC_refno",region_name,region_code,temporal_granularity,year,activity_name,activity_value,activity_units,gas_name,emission_factor_value,emission_factor_units,emissions_value,emissions_units) FROM 'processed_SESCO_AR.csv' WITH (FORMAT CSV, HEADER); +\copy region_code_staging (id,source_name,"GPC_refno",region_name,region_code,temporal_granularity,year,activity_name,activity_value,activity_units,gas_name,emission_factor_value,emission_factor_units,emissions_value,emissions_units) FROM 'processed_cammesa_AR.csv' WITH (FORMAT CSV, HEADER); -- Update the main table with the staging table INSERT INTO regionwide_emissions (id,source_name,"GPC_refno",region_name,region_code,temporal_granularity,year,activity_name,activity_value,activity_units,gas_name,emission_factor_value,emission_factor_units,emissions_value,emissions_units) From 63107559ed8354a48001474cd1403c088b3a8c75 Mon Sep 17 00:00:00 2001 From: Amanda Eames Date: Fri, 26 Apr 2024 12:53:10 +1000 Subject: [PATCH 18/45] added pilot city extract for edgar v8 --- global-api/import_everything.sh | 7 ++ .../datasource_seeder/datasource_seeder.csv | 3 +- .../pilot_cities/load_edgar_pilot_city.py | 93 +++++++++++++++++++ .../edgar/pilot_cities/pilot_city_extract.csv | 85 +++++++++++++++++ 4 files changed, 187 insertions(+), 1 deletion(-) create mode 100644 global-api/importer/edgar/pilot_cities/load_edgar_pilot_city.py create mode 100644 global-api/importer/edgar/pilot_cities/pilot_city_extract.csv diff --git a/global-api/import_everything.sh b/global-api/import_everything.sh index 9f8f04be6..8303e3a52 100755 --- a/global-api/import_everything.sh +++ b/global-api/import_everything.sh @@ -131,3 +131,10 @@ psql -h $CC_GLOBAL_API_DB_HOST \ -d $CC_GLOBAL_API_DB_NAME \ -f ./import_datasource_seeder.sql popd + + +# Import EDGAR extract + +pushd importer/edgar/pilot_cities +$python_cmd load_edgar_pilot_city.py --database_uri $DB_URI +popd \ No newline at end of file diff --git a/global-api/importer/datasource_seeder/datasource_seeder.csv b/global-api/importer/datasource_seeder/datasource_seeder.csv index 0b24302a7..44be9c544 100644 --- a/global-api/importer/datasource_seeder/datasource_seeder.csv +++ b/global-api/importer/datasource_seeder/datasource_seeder.csv @@ -36,7 +36,7 @@ d8bf703a-0b3f-305d-b2a0-6d1c9419044e,ClimateTRACE,ClimateTRACE,Domestic Aviation e6d533a4-0020-30bc-bbac-90627e499663,ClimateTRACE,ClimateTRACE,Manure Management Estimated Emissions,"Point source estimates of GHG emissions from beef and dairy feedlots, employing IPCC equations, default regional emission factors, and Climate Trace's approach incorporating temperature data, facility-level population counts, and regional manure management variations.",third_party,globalapi,https://climatetrace.org/,EARTH,2020,2021,2021,annual,point source,en,,medium,,kg,"The manure management calculation process involves the estimation of methane and nitrous oxide emissions from beef and dairy feedlots using IPCC equations and default regional emission factors. Climate Trace's approach incorporates temperature data, ground-truthed facility-level population counts, and regional variations in manure management practices to develop emission estimates. These estimates are presented for different regions, highlighting the significant contributions of beef and dairy feedlots to greenhouse gas emissions",https://github.com/climatetracecoalition/methodology-documents/blob/main/Agriculture/Agriculture%20sector-%20Enteric%20fermentation%20and%20Manure%20management%20(asset)%20Methodology.pdf,"Latitude and longitude information are utilized to apply a reverse geocode methodology, assigning the corresponding city locode to each emission point. Once identified, all data points within the city boundary are aggregated to calculate the total emissions for the sector.",global_api,https://ccglobal.openearth.dev/api/v0/climatetrace/city/:locode/:year/:gpcReferenceNumber,V.1,1 3b18e434-cd0e-3686-9537-6ae38ccb5c0c,ClimateTRACE,ClimateTRACE,Enteric Fermentation Estimated Emissions,"Point source estimates of GHG emissions from beef and dairy feedlots, utilizing advanced spatial data processing techniques and machine learning algorithms to predict methane and nitrous oxide emissions, considering factors such as cattle populations, feedlot area size, and regional variations in manure management practices, with accuracy validated through statistical measures.",third_party,globalapi,https://climatetrace.org/,EARTH,2020,2021,2021,annual,point source,en,,medium,,kg,"The enteric fermentation calculation process involves the utilization of advanced spatial data processing techniques and machine learning algorithms to estimate methane and nitrous oxide emissions from beef and dairy feedlots. This method, developed by Climate Trace, involves spatially joining data, adding ancillary information, and performing data cleaning to create training datasets for model development. The models developed utilize linear regression to predict cattle populations at individual facilities, with separate models for beef and dairy feedlots, while also considering factors such as feedlot area size and regional variations in manure management practices. The accuracy of the models is evaluated through various statistical measures, and emission estimates are provided for different regions",https://github.com/climatetracecoalition/methodology-documents/blob/main/Agriculture/Agriculture%20sector-%20Enteric%20fermentation%20and%20Manure%20management%20(asset)%20Methodology.pdf,"Latitude and longitude information are utilized to apply a reverse geocode methodology, assigning the corresponding city locode to each emission point. Once identified, all data points within the city boundary are aggregated to calculate the total emissions for the sector.",global_api,https://ccglobal.openearth.dev/api/v0/climatetrace/city/:locode/:year/:gpcReferenceNumber,V.1,1 3bfaac71-953d-354b-8e0c-dc3bb8ec34c3,EDGAR,Emissions Database for Global Atmospheric Research,Grid Manufacturing Combustion Estimated Emissions,"Grid cell estimates of GHG emissions (CO2, CH4, N2O) from manufacturing combustion, derived from EDGARv7.0 annual gridmaps (1970-2022) expressed in ton substance per 0.1-degree x 0.1-degree per year and sector specification using IPCC 1996 and 2006 codes",third_party,globalapi,https://joint-research-centre.ec.europa.eu/index_en,EARTH,2021,2021,2021,annual,0.1 degree,en,,medium,,kg,"The emission calculation method utilizes a standardized approach across all countries, employing technology-based emission factors to estimate annual emissions for each compound and sector. This involves multiplying country-specific activity data with the mix of technologies and their associated abatement measures, considering both emission factors and reductions due to installed abatement measures. Spatial allocation of emissions is achieved through a grid system, utilizing geographical databases and spatial proxy datasets to distribute emissions across a country's area based on relevant spatial factors such as population density and land use.",https://edgar.jrc.ec.europa.eu/dataset_ghg70#intro,"Utilizing the central latitude and longitude coordinates of the grid, the assignment of the corresponding city locode is performed. Following identification, the aggregation of all the grid cells within the city boundary ensues to derive the total sector emissions. In instances where the grid extends beyond the city limits, the proportional fraction is calculated, and that specific emission fraction is assigned to the respective city.",global_api,https://ccglobal.openearth.dev/api/v0/edgar/city/:locode/:year/:gpcReferenceNumber,I.3.1,1 -9e7138c0-510a-3f17-9464-c245842d9862,EDGAR,Emissions Database for Global Atmospheric Research,Grid Road Transportation Estimated Emissions (No Resuspension),"Grid cell estimates of GHG emissions from road transportation, employing a standardized method utilizing technology-based emission factors and spatial allocation through a grid system, considering country-specific activity data and relevant spatial factors.",third_party,globalapi,https://joint-research-centre.ec.europa.eu/index_en,EARTH,2021,2021,2021,annual,0.1 degree,en,,medium,,kg,"The emission calculation method utilizes a standardized approach across all countries, employing technology-based emission factors to estimate annual emissions for each compound and sector. This involves multiplying country-specific activity data with the mix of technologies and their associated abatement measures, considering both emission factors and reductions due to installed abatement measures. Spatial allocation of emissions is achieved through a grid system, utilizing geographical databases and spatial proxy datasets to distribute emissions across a country's area based on relevant spatial factors such as population density and land use.",https://edgar.jrc.ec.europa.eu/dataset_ghg70#intro,"Utilizing the central latitude and longitude coordinates of the grid, the assignment of the corresponding city locode is performed. Following identification, the aggregation of all the grid cells within the city boundary ensues to derive the total sector emissions. In instances where the grid extends beyond the city limits, the proportional fraction is calculated, and that specific emission fraction is assigned to the respective city.",global_api,https://ccglobal.openearth.dev/api/v0/edgar/city/:locode/:year/:gpcReferenceNumber,II.1.1,1 +9e7138c0-510a-3f17-9464-c245842d9862,EDGAR,Emissions Database for Global Atmospheric Research,Grid Road Transportation Estimated Emissions (No Resuspension),"Grid cell estimates of GHG emissions from road transportation, employing a standardized method utilizing technology-based emission factors and spatial allocation through a grid system, considering country-specific activity data and relevant spatial factors.",third_party,globalapi,https://joint-research-centre.ec.europa.eu/index_en,EARTH,2021,2022,2022,annual,0.1 degree,en,,medium,,kg,"The emission calculation method utilizes a standardized approach across all countries, employing technology-based emission factors to estimate annual emissions for each compound and sector. This involves multiplying country-specific activity data with the mix of technologies and their associated abatement measures, considering both emission factors and reductions due to installed abatement measures. Spatial allocation of emissions is achieved through a grid system, utilizing geographical databases and spatial proxy datasets to distribute emissions across a country's area based on relevant spatial factors such as population density and land use.",https://edgar.jrc.ec.europa.eu/dataset_ghg70#intro,"Utilizing the central latitude and longitude coordinates of the grid, the assignment of the corresponding city locode is performed. Following identification, the aggregation of all the grid cells within the city boundary ensues to derive the total sector emissions. In instances where the grid extends beyond the city limits, the proportional fraction is calculated, and that specific emission fraction is assigned to the respective city.",global_api,https://ccglobal.openearth.dev/api/v0/edgar/city/:locode/:year/:gpcReferenceNumber,II.1.1,1 66403f84-41cf-4c24-8dd8-ae980e8ad687,DEIE Mendoza,Direccion de Estadisticas e Investigaciones Economicas Gobierno Mendoza,Residential electricity consumption in Mendoza cities,"Electric energy users by tariff category, according to year reported in the Directorate of Statistics and Economic Research based on data provided by Epre (Provincial Electrical Regulatory Entity)",third_party,public,https://deie.mendoza.gov.ar/#!/,AR,2013,2022,2022,annual,city,en,,high,,kg,The Directorate of Statistics and Economic Research is a public technical body that coordinates the statistical activities carried out in the territory of the province of Mendoza. Compiling and systematizing economic data relevant to the territory.,https://deie.mendoza.gov.ar/#!/,Emissions data calculated using the grid energy consumed methodology for residential buildings according to the sector proposed by GPC. AR5 emission factors for Argentina were applied.,global_api,https://ccglobal.openearth.dev/api/v0/source/deie_mendoza/city/:locode/:year/:gpcReferenceNumber,I.1.2,2 ef052fea-4b6c-4421-8911-c31e01f0cc89,DEIE Mendoza,Direccion de Estadisticas e Investigaciones Economicas Gobierno Mendoza,Commercial electricity consumption in Mendoza cities,"Electric energy users by tariff category, according to year reported in the Directorate of Statistics and Economic Research based on data provided by Epre (Provincial Electrical Regulatory Entity)",third_party,public,https://deie.mendoza.gov.ar/#!/,AR,2013,2022,2022,annual,city,en,,high,,kg,The Directorate of Statistics and Economic Research is a public technical body that coordinates the statistical activities carried out in the territory of the province of Mendoza. Compiling and systematizing economic data relevant to the territory.,https://deie.mendoza.gov.ar/#!/,Emissions data calculated using the grid energy consumed methodology for commercial and institutional buildings according to the sector proposed by GPC. AR5 emission factors for Argentina were applied.,global_api,https://ccglobal.openearth.dev/api/v0/source/deie_mendoza/city/:locode/:year/:gpcReferenceNumber,I.2.2,2 56eab4cc-b26e-44a6-b9ac-65815736b6f0,DEIE Mendoza,Direccion de Estadisticas e Investigaciones Economicas Gobierno Mendoza,Agriculture activities electricity consumption in Mendoza cities,"Electric energy users by tariff category, according to year reported in the Directorate of Statistics and Economic Research based on data provided by Epre (Provincial Electrical Regulatory Entity)",third_party,public,https://deie.mendoza.gov.ar/#!/,AR,2013,2022,2022,annual,city,en,,high,,kg,The Directorate of Statistics and Economic Research is a public technical body that coordinates the statistical activities carried out in the territory of the province of Mendoza. Compiling and systematizing economic data relevant to the territory.,https://deie.mendoza.gov.ar/#!/,Emissions data calculated using the grid energy consumed methodology for agriculture industries according to the sector proposed by GPC. AR5 emission factors for Argentina were applied.,global_api,https://ccglobal.openearth.dev/api/v0/source/deie_mendoza/city/:locode/:year/:gpcReferenceNumber,I.5.2,2 @@ -48,3 +48,4 @@ de8dc6b3-6c78-4fc7-9b4a-df24a2326634,Google EIE,Google Environmental Insights Ex fdf77b4a-5fb8-4b33-92b5-07b92f839c9b,Carbon Monitor,Carbon Monitor Cities,Carbon Monitor Cities Residential Energy,Estimation of residential energy emissions from Carbon Monitor. Carbon Monitor Cities is a global initiative to provide real-time and historical data on CO2 emissions from cities around the world.,third_party,public,https://carbonmonitor.org/,EARTH,2019,2021,2022,annual,city,en,,medium,,kg,The data is based on satellite observations of CO2 concentrations and a data-driven model to estimate emissions.,https://carbonmonitor.org/,Emissions data are matched to cities by name and ISO code for the region.,global_api,https://ccglobal.openearth.dev/api/v0/source/Carbon Monitor Cities/city/:locode/:year/:gpcReferenceNumber,I.1.1,1 e2143a90-0e5f-48fa-9a1d-85505f90b95f,Carbon Monitor,Carbon Monitor Cities,Carbon Monitor Cities On-Road Transportation,Estimation of on-road transportation emissions from Carbon Monitor. Carbon Monitor Cities is a global initiative to provide real-time and historical data on CO2 emissions from cities around the world.,third_party,public,https://carbonmonitor.org/,EARTH,2019,2021,2022,annual,city,en,,medium,,kg,The data is based on satellite observations of CO2 concentrations and a data-driven model to estimate emissions.,https://carbonmonitor.org/,Emissions data are matched to cities by name and ISO code for the region.,global_api,https://ccglobal.openearth.dev/api/v0/source/Carbon Monitor Cities/city/:locode/:year/:gpcReferenceNumber,II.1.1,1 1007a979-3c3c-4115-b61a-c85e3e39b165,Carbon Monitor,Carbon Monitor Cities,Carbon Monitor Cities Aviation,Estimation of aviation emissions from Carbon Monitor. Carbon Monitor Cities is a global initiative to provide real-time and historical data on CO2 emissions from cities around the world.,third_party,public,https://carbonmonitor.org/,EARTH,2019,2021,2022,annual,city,en,,medium,,kg,The data is based on satellite observations of CO2 concentrations and a data-driven model to estimate emissions.,https://carbonmonitor.org/,Emissions data are matched to cities by name and ISO code for the region.,global_api,https://ccglobal.openearth.dev/api/v0/source/Carbon Monitor Cities/city/:locode/:year/:gpcReferenceNumber,II.4.1,1 +c0ef94f0-5ecf-45bc-9e3e-f273396b101d,EDGAR,Emissions Database for Global Atmospheric Research,Aviation Estimated Emissions,"Grid cell estimates of GHG emissions for aviation, employing a standardized method utilizing technology-based emission factors and spatial allocation through a grid system, considering country-specific activity data and relevant spatial factors.",Third-party,globalapi,https://joint-research-centre.ec.europa.eu/index_en,EARTH,2021,2022,2022,annual,"0.1 degree",en,"",medium,"",kg,"The emission calculation method utilizes a standardized approach across all countries, employing technology-based emission factors to estimate annual emissions for each compound and sector. This involves multiplying country-specific activity data with the mix of technologies and their associated abatement measures, considering both emission factors and reductions due to installed abatement measures. Spatial allocation of emissions is achieved through a grid system, utilizing geographical databases and spatial proxy datasets to distribute emissions across a country's area based on relevant spatial factors such as population density and land use.",https://edgar.jrc.ec.europa.eu/dataset_ghg70#intro,"Utilizing the central latitude and longitude coordinates of the grid, the assignment of the corresponding city locode is performed. Following identification, the aggregation of all the grid cells within the city boundary ensues to derive the total sector emissions. In instances where the grid extends beyond the city limits, the proportional fraction is calculated, and that specific emission fraction is assigned to the respective city.",global_api,https://ccglobal.openearth.dev/api/v0/edgar/city/:locode/:year/:gpcReferenceNumber,II.4.1,1 diff --git a/global-api/importer/edgar/pilot_cities/load_edgar_pilot_city.py b/global-api/importer/edgar/pilot_cities/load_edgar_pilot_city.py new file mode 100644 index 000000000..eac69be6e --- /dev/null +++ b/global-api/importer/edgar/pilot_cities/load_edgar_pilot_city.py @@ -0,0 +1,93 @@ +import pandas as pd +import argparse +import os +from sqlalchemy import create_engine +from sqlalchemy.sql import text + +if __name__ == "__main__": + parser = argparse.ArgumentParser() + parser.add_argument( + "--database_uri", + help="database URI (e.g. postgresql://ccglobal:@localhost/ccglobal)", + default=os.environ.get("DB_URI"), + ) + args = parser.parse_args() + + df = pd.read_csv('./pilot_city_extract.csv') + + # Create a SQLAlchemy engine + engine = create_engine(args.database_uri) + + # Write the DataFrame to the database table + df.to_sql('edgar_emissions_extract', engine, if_exists='replace', index=False) + + sql_query = f""" + INSERT INTO public."GridCellEdgar" + SELECT gen_random_uuid() as ID, a.* + FROM ( + SELECT DISTINCT ee.cell_lat, ee.cell_lon, ee.geometry, ee.area, current_timestamp as created_date, current_timestamp as modified_date + FROM edgar_emissions_extract ee + LEFT JOIN public."GridCellEdgar" gce ON ee.cell_lat = gce.lat_center AND ee.cell_lon = gce.lon_center + WHERE gce.lat_center IS NULL AND gce.lon_center IS NULL + ) a; + + INSERT INTO public."CityCellOverlapEdgar" + SELECT gen_random_uuid() as ID, a.* + FROM ( + SELECT DISTINCT + e.locode, + e.fraction_in_city, + id.id as cell_id, + current_timestamp as created_date, + current_timestamp as modified_date, + e.cell_lat, + e.cell_lon + FROM edgar_emissions_extract e + LEFT JOIN public."GridCellEdgar" id + ON id.lat_center = e.cell_lat AND id.lon_center = e.cell_lon + LEFT JOIN public."CityCellOverlapEdgar" ccoe + ON e.locode = cast(ccoe.locode as text) + AND e.fraction_in_city = cast(ccoe.fraction_in_city as double precision) + AND cast(e.cell_lat as int) = ccoe.cell_lat + AND cast(e.cell_lon as int) = ccoe.cell_lon + WHERE ccoe.locode IS NULL + AND ccoe.fraction_in_city IS NULL + AND ccoe.cell_lat IS NULL + AND ccoe.cell_lon IS NULL) a; + + INSERT INTO public."GridCellEmissionsEdgar" + SELECT gen_random_uuid() as ID, a.* + FROM ( + SELECT DISTINCT + e.year, + e.reference_number, + e.gas, + e.emissions_quantity, + e.emissions_quantity_units, + id.id as cell_id, + current_timestamp as created_date, + current_timestamp as modified_date, + e.cell_lat, + e.cell_lon + FROM edgar_emissions_extract e + LEFT JOIN public."GridCellEdgar" id + ON id.lat_center = e.cell_lat AND id.lon_center = e.cell_lon + LEFT JOIN public."GridCellEmissionsEdgar" eem + ON eem.year = e.year + AND eem.reference_number = e.reference_number + AND eem.gas = e.gas + AND eem.cell_lat = cast(e.cell_lat as int) + AND eem.cell_lon = cast(e.cell_lon as int) + WHERE eem.id IS NULL + ) a; + + DROP TABLE edgar_emissions_extract; + """ + + with engine.connect() as connection: + try: + result = connection.execute(text(sql_query)) + connection.commit() + print("Query completed successfully.") + except Exception as e: + print("Error updating osm table:", e) diff --git a/global-api/importer/edgar/pilot_cities/pilot_city_extract.csv b/global-api/importer/edgar/pilot_cities/pilot_city_extract.csv new file mode 100644 index 000000000..c3d62a3c7 --- /dev/null +++ b/global-api/importer/edgar/pilot_cities/pilot_city_extract.csv @@ -0,0 +1,85 @@ +"locode","fraction_in_city","cell_lat","cell_lon","geometry","area","year","reference_number","gas","emissions_quantity","emissions_quantity_units" +AR VLO,0.19425174692847447,-34.55,-58.55,"POLYGON((-58.599999999999994 -34.599999999999994,-58.599999999999994 -34.5,-58.5 -34.5,-58.5 -34.599999999999994,-58.599999999999994 -34.599999999999994))",0.009999999999998864,2022,II.4.1,N2O,0.0246168,kg +AR VLO,0.1308721996164394,-34.55,-58.45,"POLYGON((-58.5 -34.599999999999994,-58.5 -34.5,-58.400000000000006 -34.5,-58.400000000000006 -34.599999999999994,-58.5 -34.599999999999994))",0.009999999999998864,2022,II.4.1,N2O,0.0246168,kg +AR VLO,0.19425174692847447,-34.55,-58.55,"POLYGON((-58.599999999999994 -34.599999999999994,-58.599999999999994 -34.5,-58.5 -34.5,-58.5 -34.599999999999994,-58.599999999999994 -34.599999999999994))",0.009999999999998864,2022,II.4.1,CH4,0.00615421,kg +AR VLO,0.1308721996164394,-34.55,-58.45,"POLYGON((-58.5 -34.599999999999994,-58.5 -34.5,-58.400000000000006 -34.5,-58.400000000000006 -34.599999999999994,-58.5 -34.599999999999994))",0.009999999999998864,2022,II.4.1,CH4,0.00615421,kg +AR VLO,0.1308721996164394,-34.55,-58.45,"POLYGON((-58.5 -34.599999999999994,-58.5 -34.5,-58.400000000000006 -34.5,-58.400000000000006 -34.599999999999994,-58.5 -34.599999999999994))",0.009999999999998864,2022,II.4.1,CH4,328.98,kg +AR VLO,0.1308721996164394,-34.55,-58.45,"POLYGON((-58.5 -34.599999999999994,-58.5 -34.5,-58.400000000000006 -34.5,-58.400000000000006 -34.599999999999994,-58.5 -34.599999999999994))",0.009999999999998864,2022,II.4.1,N2O,1314.83,kg +AR VLO,0.1308721996164394,-34.55,-58.45,"POLYGON((-58.5 -34.599999999999994,-58.5 -34.5,-58.400000000000006 -34.5,-58.400000000000006 -34.599999999999994,-58.5 -34.599999999999994))",0.009999999999998864,2022,II.4.1,CO2,46993000,kg +AR VLO,0.19425174692847447,-34.55,-58.55,"POLYGON((-58.599999999999994 -34.599999999999994,-58.599999999999994 -34.5,-58.5 -34.5,-58.5 -34.599999999999994,-58.599999999999994 -34.599999999999994))",0.009999999999998864,2021,II.4.1,CH4,24.7322,kg +AR VLO,0.1308721996164394,-34.55,-58.45,"POLYGON((-58.5 -34.599999999999994,-58.5 -34.5,-58.400000000000006 -34.5,-58.400000000000006 -34.599999999999994,-58.5 -34.599999999999994))",0.009999999999998864,2021,II.4.1,CH4,57.9041,kg +AR VLO,0.000148181023109,-34.45,-58.55,"POLYGON((-58.599999999999994 -34.5,-58.599999999999994 -34.400000000000006,-58.5 -34.400000000000006,-58.5 -34.5,-58.599999999999994 -34.5))",0.009999999999998864,2021,II.4.1,CH4,16.1158,kg +AR VLO,0.013010616900012038,-34.45,-58.45,"POLYGON((-58.5 -34.5,-58.5 -34.400000000000006,-58.400000000000006 -34.400000000000006,-58.400000000000006 -34.5,-58.5 -34.5))",0.009999999999998864,2021,II.4.1,CH4,20.2597,kg +AR VLO,0.19425174692847447,-34.55,-58.55,"POLYGON((-58.599999999999994 -34.599999999999994,-58.599999999999994 -34.5,-58.5 -34.5,-58.5 -34.599999999999994,-58.599999999999994 -34.599999999999994))",0.009999999999998864,2021,II.4.1,CO2,3532090.0,kg +AR VLO,0.1308721996164394,-34.55,-58.45,"POLYGON((-58.5 -34.599999999999994,-58.5 -34.5,-58.400000000000006 -34.5,-58.400000000000006 -34.599999999999994,-58.5 -34.599999999999994))",0.009999999999998864,2021,II.4.1,CO2,8272750.0,kg +AR VLO,0.000148181023109,-34.45,-58.55,"POLYGON((-58.599999999999994 -34.5,-58.599999999999994 -34.400000000000006,-58.5 -34.400000000000006,-58.5 -34.5,-58.599999999999994 -34.5))",0.009999999999998864,2021,II.4.1,CO2,2303050.0,kg +AR VLO,0.013010616900012038,-34.45,-58.45,"POLYGON((-58.5 -34.5,-58.5 -34.400000000000006,-58.400000000000006 -34.400000000000006,-58.400000000000006 -34.5,-58.5 -34.5))",0.009999999999998864,2021,II.4.1,CO2,2894310.0,kg +AR VLO,0.19425174692847447,-34.55,-58.55,"POLYGON((-58.599999999999994 -34.599999999999994,-58.599999999999994 -34.5,-58.5 -34.5,-58.5 -34.599999999999994,-58.599999999999994 -34.599999999999994))",0.009999999999998864,2021,II.4.1,N2O,98.8057,kg +AR VLO,0.1308721996164394,-34.55,-58.45,"POLYGON((-58.5 -34.599999999999994,-58.5 -34.5,-58.400000000000006 -34.5,-58.400000000000006 -34.599999999999994,-58.5 -34.599999999999994))",0.009999999999998864,2021,II.4.1,N2O,231.504,kg +AR VLO,0.000148181023109,-34.45,-58.55,"POLYGON((-58.599999999999994 -34.5,-58.599999999999994 -34.400000000000006,-58.5 -34.400000000000006,-58.5 -34.5,-58.599999999999994 -34.5))",0.009999999999998864,2021,II.4.1,N2O,64.4631,kg +AR VLO,0.013010616900012038,-34.45,-58.45,"POLYGON((-58.5 -34.5,-58.5 -34.400000000000006,-58.400000000000006 -34.400000000000006,-58.400000000000006 -34.5,-58.5 -34.5))",0.009999999999998864,2021,II.4.1,N2O,80.9894,kg +AR VLO,0.19425174692847447,-34.55,-58.55,"POLYGON((-58.599999999999994 -34.599999999999994,-58.599999999999994 -34.5,-58.5 -34.5,-58.5 -34.599999999999994,-58.599999999999994 -34.599999999999994))",0.009999999999998864,2021,II.4.1,CH4,0.0045753799999999996,kg +AR VLO,0.1308721996164394,-34.55,-58.45,"POLYGON((-58.5 -34.599999999999994,-58.5 -34.5,-58.400000000000006 -34.5,-58.400000000000006 -34.599999999999994,-58.5 -34.599999999999994))",0.009999999999998864,2021,II.4.1,CH4,0.0045753799999999996,kg +AR VLO,0.19425174692847447,-34.55,-58.55,"POLYGON((-58.599999999999994 -34.599999999999994,-58.599999999999994 -34.5,-58.5 -34.5,-58.5 -34.599999999999994,-58.599999999999994 -34.599999999999994))",0.009999999999998864,2021,II.4.1,CO2,653.851,kg +AR VLO,0.1308721996164394,-34.55,-58.45,"POLYGON((-58.5 -34.599999999999994,-58.5 -34.5,-58.400000000000006 -34.5,-58.400000000000006 -34.599999999999994,-58.5 -34.599999999999994))",0.009999999999998864,2021,II.4.1,CO2,653.851,kg +AR VLO,0.19425174692847447,-34.55,-58.55,"POLYGON((-58.599999999999994 -34.599999999999994,-58.599999999999994 -34.5,-58.5 -34.5,-58.5 -34.599999999999994,-58.599999999999994 -34.599999999999994))",0.009999999999998864,2021,II.4.1,N2O,0.018301500000000002,kg +AR VLO,0.1308721996164394,-34.55,-58.45,"POLYGON((-58.5 -34.599999999999994,-58.5 -34.5,-58.400000000000006 -34.5,-58.400000000000006 -34.599999999999994,-58.5 -34.599999999999994))",0.009999999999998864,2021,II.4.1,N2O,0.018301500000000002,kg +AR VLO,0.1308721996164394,-34.55,-58.45,"POLYGON((-58.5 -34.599999999999994,-58.5 -34.5,-58.400000000000006 -34.5,-58.400000000000006 -34.599999999999994,-58.5 -34.599999999999994))",0.009999999999998864,2021,II.4.1,CH4,254.6,kg +AR VLO,0.1308721996164394,-34.55,-58.45,"POLYGON((-58.5 -34.599999999999994,-58.5 -34.5,-58.400000000000006 -34.5,-58.400000000000006 -34.599999999999994,-58.5 -34.599999999999994))",0.009999999999998864,2021,II.4.1,CO2,36367600,kg +AR VLO,0.1308721996164394,-34.55,-58.45,"POLYGON((-58.5 -34.599999999999994,-58.5 -34.5,-58.400000000000006 -34.5,-58.400000000000006 -34.599999999999994,-58.5 -34.599999999999994))",0.009999999999998864,2021,II.4.1,N2O,1017.52,kg +AR VLO,0.19425174692847447,-34.55,-58.55,"POLYGON((-58.599999999999994 -34.599999999999994,-58.599999999999994 -34.5,-58.5 -34.5,-58.5 -34.599999999999994,-58.599999999999994 -34.599999999999994))",0.009999999999998864,2021,II.1.1,CH4,20264.7,kg +AR VLO,0.1308721996164394,-34.55,-58.45,"POLYGON((-58.5 -34.599999999999994,-58.5 -34.5,-58.400000000000006 -34.5,-58.400000000000006 -34.599999999999994,-58.5 -34.599999999999994))",0.009999999999998864,2021,II.1.1,CH4,17238.1,kg +AR VLO,0.000148181023109,-34.45,-58.55,"POLYGON((-58.599999999999994 -34.5,-58.599999999999994 -34.400000000000006,-58.5 -34.400000000000006,-58.5 -34.5,-58.599999999999994 -34.5))",0.009999999999998864,2021,II.1.1,CH4,17498.4,kg +AR VLO,0.013010616900012038,-34.45,-58.45,"POLYGON((-58.5 -34.5,-58.5 -34.400000000000006,-58.400000000000006 -34.400000000000006,-58.400000000000006 -34.5,-58.5 -34.5))",0.009999999999998864,2021,II.1.1,CH4,796.679,kg +AR VLO,0.19425174692847447,-34.55,-58.55,"POLYGON((-58.599999999999994 -34.599999999999994,-58.599999999999994 -34.5,-58.5 -34.5,-58.5 -34.599999999999994,-58.599999999999994 -34.599999999999994))",0.009999999999998864,2021,II.1.1,CO2,97516400,kg +AR VLO,0.1308721996164394,-34.55,-58.45,"POLYGON((-58.5 -34.599999999999994,-58.5 -34.5,-58.400000000000006 -34.5,-58.400000000000006 -34.599999999999994,-58.5 -34.599999999999994))",0.009999999999998864,2021,II.1.1,CO2,85788700,kg +AR VLO,0.000148181023109,-34.45,-58.55,"POLYGON((-58.599999999999994 -34.5,-58.599999999999994 -34.400000000000006,-58.5 -34.400000000000006,-58.5 -34.5,-58.599999999999994 -34.5))",0.009999999999998864,2021,II.1.1,CO2,87374300,kg +AR VLO,0.013010616900012038,-34.45,-58.45,"POLYGON((-58.5 -34.5,-58.5 -34.400000000000006,-58.400000000000006 -34.400000000000006,-58.400000000000006 -34.5,-58.5 -34.5))",0.009999999999998864,2021,II.1.1,CO2,3690080.0,kg +AR VLO,0.19425174692847447,-34.55,-58.55,"POLYGON((-58.599999999999994 -34.599999999999994,-58.599999999999994 -34.5,-58.5 -34.5,-58.5 -34.599999999999994,-58.599999999999994 -34.599999999999994))",0.009999999999998864,2021,II.1.1,N2O,4305.88,kg +AR VLO,0.1308721996164394,-34.55,-58.45,"POLYGON((-58.5 -34.599999999999994,-58.5 -34.5,-58.400000000000006 -34.5,-58.400000000000006 -34.599999999999994,-58.5 -34.599999999999994))",0.009999999999998864,2021,II.1.1,N2O,4050.7099999999996,kg +AR VLO,0.000148181023109,-34.45,-58.55,"POLYGON((-58.599999999999994 -34.5,-58.599999999999994 -34.400000000000006,-58.5 -34.400000000000006,-58.5 -34.5,-58.599999999999994 -34.5))",0.009999999999998864,2021,II.1.1,N2O,4151.679999999999,kg +AR VLO,0.013010616900012038,-34.45,-58.45,"POLYGON((-58.5 -34.5,-58.5 -34.400000000000006,-58.400000000000006 -34.400000000000006,-58.400000000000006 -34.5,-58.5 -34.5))",0.009999999999998864,2021,II.1.1,N2O,149.52599999999998,kg +AR VLO,0.19425174692847447,-34.55,-58.55,"POLYGON((-58.599999999999994 -34.599999999999994,-58.599999999999994 -34.5,-58.5 -34.5,-58.5 -34.599999999999994,-58.599999999999994 -34.599999999999994))",0.009999999999998864,2022,II.1.1,CO2,102795000,kg +AR VLO,0.1308721996164394,-34.55,-58.45,"POLYGON((-58.5 -34.599999999999994,-58.5 -34.5,-58.400000000000006 -34.5,-58.400000000000006 -34.599999999999994,-58.5 -34.599999999999994))",0.009999999999998864,2022,II.1.1,CO2,90734200,kg +AR VLO,0.000148181023109,-34.45,-58.55,"POLYGON((-58.599999999999994 -34.5,-58.599999999999994 -34.400000000000006,-58.5 -34.400000000000006,-58.5 -34.5,-58.599999999999994 -34.5))",0.009999999999998864,2022,II.1.1,CO2,92441000,kg +AR VLO,0.013010616900012038,-34.45,-58.45,"POLYGON((-58.5 -34.5,-58.5 -34.400000000000006,-58.400000000000006 -34.400000000000006,-58.400000000000006 -34.5,-58.5 -34.5))",0.009999999999998864,2022,II.1.1,CO2,3874550.0,kg +AR VLO,0.19425174692847447,-34.55,-58.55,"POLYGON((-58.599999999999994 -34.599999999999994,-58.599999999999994 -34.5,-58.5 -34.5,-58.5 -34.599999999999994,-58.599999999999994 -34.599999999999994))",0.009999999999998864,2022,II.1.1,CH4,21302.800000000003,kg +AR VLO,0.1308721996164394,-34.55,-58.45,"POLYGON((-58.5 -34.599999999999994,-58.5 -34.5,-58.400000000000006 -34.5,-58.400000000000006 -34.599999999999994,-58.5 -34.599999999999994))",0.009999999999998864,2022,II.1.1,CH4,18190.3,kg +AR VLO,0.000148181023109,-34.45,-58.55,"POLYGON((-58.599999999999994 -34.5,-58.599999999999994 -34.400000000000006,-58.5 -34.400000000000006,-58.5 -34.5,-58.599999999999994 -34.5))",0.009999999999998864,2022,II.1.1,CH4,18472.0,kg +AR VLO,0.013010616900012038,-34.45,-58.45,"POLYGON((-58.5 -34.5,-58.5 -34.400000000000006,-58.400000000000006 -34.400000000000006,-58.400000000000006 -34.5,-58.5 -34.5))",0.009999999999998864,2022,II.1.1,CH4,833.991,kg +AR VLO,0.19425174692847447,-34.55,-58.55,"POLYGON((-58.599999999999994 -34.599999999999994,-58.599999999999994 -34.5,-58.5 -34.5,-58.5 -34.599999999999994,-58.599999999999994 -34.599999999999994))",0.009999999999998864,2022,II.1.1,N2O,4592.469999999999,kg +AR VLO,0.1308721996164394,-34.55,-58.45,"POLYGON((-58.5 -34.599999999999994,-58.5 -34.5,-58.400000000000006 -34.5,-58.400000000000006 -34.599999999999994,-58.5 -34.599999999999994))",0.009999999999998864,2022,II.1.1,N2O,4324.01,kg +AR VLO,0.000148181023109,-34.45,-58.55,"POLYGON((-58.599999999999994 -34.5,-58.599999999999994 -34.400000000000006,-58.5 -34.400000000000006,-58.5 -34.5,-58.599999999999994 -34.5))",0.009999999999998864,2022,II.1.1,N2O,4432.13,kg +AR VLO,0.013010616900012038,-34.45,-58.45,"POLYGON((-58.5 -34.5,-58.5 -34.400000000000006,-58.400000000000006 -34.400000000000006,-58.400000000000006 -34.5,-58.5 -34.5))",0.009999999999998864,2022,II.1.1,N2O,159.292,kg +AR VLO,0.19425174692847447,-34.55,-58.55,"POLYGON((-58.599999999999994 -34.599999999999994,-58.599999999999994 -34.5,-58.5 -34.5,-58.5 -34.599999999999994,-58.599999999999994 -34.599999999999994))",0.009999999999998864,2022,II.4.1,N2O,125.367,kg +AR VLO,0.1308721996164394,-34.55,-58.45,"POLYGON((-58.5 -34.599999999999994,-58.5 -34.5,-58.400000000000006 -34.5,-58.400000000000006 -34.599999999999994,-58.5 -34.599999999999994))",0.009999999999998864,2022,II.4.1,N2O,304.491,kg +AR VLO,0.000148181023109,-34.45,-58.55,"POLYGON((-58.599999999999994 -34.5,-58.599999999999994 -34.400000000000006,-58.5 -34.400000000000006,-58.5 -34.5,-58.599999999999994 -34.5))",0.009999999999998864,2022,II.4.1,N2O,86.70750000000001,kg +AR VLO,0.013010616900012038,-34.45,-58.45,"POLYGON((-58.5 -34.5,-58.5 -34.400000000000006,-58.400000000000006 -34.400000000000006,-58.400000000000006 -34.5,-58.5 -34.5))",0.009999999999998864,2022,II.4.1,N2O,105.929,kg +AR VLO,0.19425174692847447,-34.55,-58.55,"POLYGON((-58.599999999999994 -34.599999999999994,-58.599999999999994 -34.5,-58.5 -34.5,-58.5 -34.599999999999994,-58.599999999999994 -34.599999999999994))",0.009999999999998864,2022,II.4.1,CH4,31.3798,kg +AR VLO,0.1308721996164394,-34.55,-58.45,"POLYGON((-58.5 -34.599999999999994,-58.5 -34.5,-58.400000000000006 -34.5,-58.400000000000006 -34.599999999999994,-58.5 -34.599999999999994))",0.009999999999998864,2022,II.4.1,CH4,76.1575,kg +AR VLO,0.000148181023109,-34.45,-58.55,"POLYGON((-58.599999999999994 -34.5,-58.599999999999994 -34.400000000000006,-58.5 -34.400000000000006,-58.5 -34.5,-58.599999999999994 -34.5))",0.009999999999998864,2022,II.4.1,CH4,21.6769,kg +AR VLO,0.013010616900012038,-34.45,-58.45,"POLYGON((-58.5 -34.5,-58.5 -34.400000000000006,-58.400000000000006 -34.400000000000006,-58.400000000000006 -34.5,-58.5 -34.5))",0.009999999999998864,2022,II.4.1,CH4,26.497300000000003,kg +AR VLO,0.19425174692847447,-34.55,-58.55,"POLYGON((-58.599999999999994 -34.599999999999994,-58.599999999999994 -34.5,-58.5 -34.5,-58.5 -34.599999999999994,-58.599999999999994 -34.599999999999994))",0.009999999999998864,2022,II.4.1,CO2,4481530.0,kg +AR VLO,0.1308721996164394,-34.55,-58.45,"POLYGON((-58.5 -34.599999999999994,-58.5 -34.5,-58.400000000000006 -34.5,-58.400000000000006 -34.599999999999994,-58.5 -34.599999999999994))",0.009999999999998864,2022,II.4.1,CO2,10880800,kg +AR VLO,0.000148181023109,-34.45,-58.55,"POLYGON((-58.599999999999994 -34.5,-58.599999999999994 -34.400000000000006,-58.5 -34.400000000000006,-58.5 -34.5,-58.599999999999994 -34.5))",0.009999999999998864,2022,II.4.1,CO2,3097760.0,kg +AR VLO,0.013010616900012038,-34.45,-58.45,"POLYGON((-58.5 -34.5,-58.5 -34.400000000000006,-58.400000000000006 -34.400000000000006,-58.400000000000006 -34.5,-58.5 -34.5))",0.009999999999998864,2022,II.4.1,CO2,3785500.0,kg +AR VLO,0.19425174692847447,-34.55,-58.55,"POLYGON((-58.599999999999994 -34.599999999999994,-58.599999999999994 -34.5,-58.5 -34.5,-58.5 -34.599999999999994,-58.599999999999994 -34.599999999999994))",0.009999999999998864,2022,II.4.1,CO2,879.476,kg +AR VLO,0.1308721996164394,-34.55,-58.45,"POLYGON((-58.5 -34.599999999999994,-58.5 -34.5,-58.400000000000006 -34.5,-58.400000000000006 -34.599999999999994,-58.5 -34.599999999999994))",0.009999999999998864,2022,II.4.1,CO2,879.476,kg +US PVK,0.04452965612400705,37.85,-122.25,"POLYGON((-122.3 37.800000000000004,-122.3 37.9,-122.2 37.9,-122.2 37.800000000000004,-122.3 37.800000000000004))",0.009999999999998864,2022,II.4.1,N2O,0.0013785499999999999,kg +US PVK,0.04452965612400705,37.85,-122.25,"POLYGON((-122.3 37.800000000000004,-122.3 37.9,-122.2 37.9,-122.2 37.800000000000004,-122.3 37.800000000000004))",0.009999999999998864,2022,II.4.1,CH4,0.000344639,kg +US PVK,0.04452965612400705,37.85,-122.25,"POLYGON((-122.3 37.800000000000004,-122.3 37.9,-122.2 37.9,-122.2 37.800000000000004,-122.3 37.800000000000004))",0.009999999999998864,2021,II.4.1,CH4,90.89949999999999,kg +US PVK,0.04452965612400705,37.85,-122.25,"POLYGON((-122.3 37.800000000000004,-122.3 37.9,-122.2 37.9,-122.2 37.800000000000004,-122.3 37.800000000000004))",0.009999999999998864,2021,II.4.1,CO2,12987400,kg +US PVK,0.04452965612400705,37.85,-122.25,"POLYGON((-122.3 37.800000000000004,-122.3 37.9,-122.2 37.9,-122.2 37.800000000000004,-122.3 37.800000000000004))",0.009999999999998864,2021,II.4.1,N2O,363.302,kg +US PVK,0.04452965612400705,37.85,-122.25,"POLYGON((-122.3 37.800000000000004,-122.3 37.9,-122.2 37.9,-122.2 37.800000000000004,-122.3 37.800000000000004))",0.009999999999998864,2021,II.4.1,CH4,0.0003036,kg +US PVK,0.04452965612400705,37.85,-122.25,"POLYGON((-122.3 37.800000000000004,-122.3 37.9,-122.2 37.9,-122.2 37.800000000000004,-122.3 37.800000000000004))",0.009999999999998864,2021,II.4.1,CO2,43.4035,kg +US PVK,0.04452965612400705,37.85,-122.25,"POLYGON((-122.3 37.800000000000004,-122.3 37.9,-122.2 37.9,-122.2 37.800000000000004,-122.3 37.800000000000004))",0.009999999999998864,2021,II.4.1,N2O,0.0012144,kg +US PVK,0.04452965612400705,37.85,-122.25,"POLYGON((-122.3 37.800000000000004,-122.3 37.9,-122.2 37.9,-122.2 37.800000000000004,-122.3 37.800000000000004))",0.009999999999998864,2021,II.1.1,CH4,33625.3,kg +US PVK,0.04452965612400705,37.85,-122.25,"POLYGON((-122.3 37.800000000000004,-122.3 37.9,-122.2 37.9,-122.2 37.800000000000004,-122.3 37.800000000000004))",0.009999999999998864,2021,II.1.1,CO2,424543000,kg +US PVK,0.04452965612400705,37.85,-122.25,"POLYGON((-122.3 37.800000000000004,-122.3 37.9,-122.2 37.9,-122.2 37.800000000000004,-122.3 37.800000000000004))",0.009999999999998864,2021,II.1.1,N2O,19727.2,kg +US PVK,0.04452965612400705,37.85,-122.25,"POLYGON((-122.3 37.800000000000004,-122.3 37.9,-122.2 37.9,-122.2 37.800000000000004,-122.3 37.800000000000004))",0.009999999999998864,2022,II.1.1,CO2,432229000,kg +US PVK,0.04452965612400705,37.85,-122.25,"POLYGON((-122.3 37.800000000000004,-122.3 37.9,-122.2 37.9,-122.2 37.800000000000004,-122.3 37.800000000000004))",0.009999999999998864,2022,II.1.1,CH4,34247.100000000006,kg +US PVK,0.04452965612400705,37.85,-122.25,"POLYGON((-122.3 37.800000000000004,-122.3 37.9,-122.2 37.9,-122.2 37.800000000000004,-122.3 37.800000000000004))",0.009999999999998864,2022,II.1.1,N2O,20121.300000000003,kg +US PVK,0.04452965612400705,37.85,-122.25,"POLYGON((-122.3 37.800000000000004,-122.3 37.9,-122.2 37.9,-122.2 37.800000000000004,-122.3 37.800000000000004))",0.009999999999998864,2022,II.4.1,N2O,428.312,kg +US PVK,0.04452965612400705,37.85,-122.25,"POLYGON((-122.3 37.800000000000004,-122.3 37.9,-122.2 37.9,-122.2 37.800000000000004,-122.3 37.800000000000004))",0.009999999999998864,2022,II.4.1,CH4,107.169,kg +US PVK,0.04452965612400705,37.85,-122.25,"POLYGON((-122.3 37.800000000000004,-122.3 37.9,-122.2 37.9,-122.2 37.800000000000004,-122.3 37.800000000000004))",0.009999999999998864,2022,II.4.1,CO2,15311600,kg +US PVK,0.04452965612400705,37.85,-122.25,"POLYGON((-122.3 37.800000000000004,-122.3 37.9,-122.2 37.9,-122.2 37.800000000000004,-122.3 37.800000000000004))",0.009999999999998864,2022,II.4.1,CO2,49.2705,kg From 4045020d54888e3ed1511d65ae168197d28ee287 Mon Sep 17 00:00:00 2001 From: Amanda Eames Date: Fri, 26 Apr 2024 13:04:32 +1000 Subject: [PATCH 19/45] added mendoza --- .../edgar/pilot_cities/pilot_city_extract.csv | 90 +++++++++++++++++++ 1 file changed, 90 insertions(+) diff --git a/global-api/importer/edgar/pilot_cities/pilot_city_extract.csv b/global-api/importer/edgar/pilot_cities/pilot_city_extract.csv index c3d62a3c7..30c94307f 100644 --- a/global-api/importer/edgar/pilot_cities/pilot_city_extract.csv +++ b/global-api/importer/edgar/pilot_cities/pilot_city_extract.csv @@ -1,4 +1,94 @@ "locode","fraction_in_city","cell_lat","cell_lon","geometry","area","year","reference_number","gas","emissions_quantity","emissions_quantity_units" +AR MDZ,0.05426244548040082,-32.95,-69.05,"POLYGON((-69.1 -33,-69.1 -32.900000000000006,-69 -32.900000000000006,-69 -33,-69.1 -33))",0.009999999999998864,2022,II.4.1,N2O,2.73856,kg +AR MDZ,0.06484086638131017,-32.95,-68.95,"POLYGON((-69 -33,-69 -32.900000000000006,-68.9 -32.900000000000006,-68.9 -33,-69 -33))",0.009999999999998864,2022,II.4.1,N2O,2.2825699999999998,kg +AR MDZ,0.023345706988452262,-32.95,-68.85,"POLYGON((-68.89999999999999 -33,-68.89999999999999 -32.900000000000006,-68.8 -32.900000000000006,-68.8 -33,-68.89999999999999 -33))",0.009999999999998864,2022,II.4.1,N2O,1.18463,kg +AR MDZ,0.28431280031119266,-32.85,-69.05,"POLYGON((-69.1 -32.9,-69.1 -32.800000000000004,-69 -32.800000000000004,-69 -32.9,-69.1 -32.9))",0.009999999999998864,2022,II.4.1,N2O,5.27257,kg +AR MDZ,0.3469062938407161,-32.85,-68.95,"POLYGON((-69 -32.9,-69 -32.800000000000004,-68.9 -32.800000000000004,-68.9 -32.9,-69 -32.9))",0.009999999999998864,2022,II.4.1,N2O,6.40088,kg +AR MDZ,0.24929008818384366,-32.85,-68.85,"POLYGON((-68.89999999999999 -32.9,-68.89999999999999 -32.800000000000004,-68.8 -32.800000000000004,-68.8 -32.9,-68.89999999999999 -32.9))",0.009999999999998864,2022,II.4.1,N2O,7.69743,kg +AR MDZ,0.05426244548040082,-32.95,-69.05,"POLYGON((-69.1 -33,-69.1 -32.900000000000006,-69 -32.900000000000006,-69 -33,-69.1 -33))",0.009999999999998864,2022,II.4.1,CH4,0.6858920000000001,kg +AR MDZ,0.06484086638131017,-32.95,-68.95,"POLYGON((-69 -33,-69 -32.900000000000006,-68.9 -32.900000000000006,-68.9 -33,-69 -33))",0.009999999999998864,2022,II.4.1,CH4,0.5716859999999999,kg +AR MDZ,0.023345706988452262,-32.95,-68.85,"POLYGON((-68.89999999999999 -33,-68.89999999999999 -32.900000000000006,-68.8 -32.900000000000006,-68.8 -33,-68.89999999999999 -33))",0.009999999999998864,2022,II.4.1,CH4,0.296699,kg +AR MDZ,0.28431280031119266,-32.85,-69.05,"POLYGON((-69.1 -32.9,-69.1 -32.800000000000004,-69 -32.800000000000004,-69 -32.9,-69.1 -32.9))",0.009999999999998864,2022,II.4.1,CH4,1.32055,kg +AR MDZ,0.3469062938407161,-32.85,-68.95,"POLYGON((-69 -32.9,-69 -32.800000000000004,-68.9 -32.800000000000004,-68.9 -32.9,-69 -32.9))",0.009999999999998864,2022,II.4.1,CH4,1.60314,kg +AR MDZ,0.24929008818384366,-32.85,-68.85,"POLYGON((-68.89999999999999 -32.9,-68.89999999999999 -32.800000000000004,-68.8 -32.800000000000004,-68.8 -32.9,-68.89999999999999 -32.9))",0.009999999999998864,2022,II.4.1,CH4,1.92787,kg +AR MDZ,0.05426244548040082,-32.95,-69.05,"POLYGON((-69.1 -33,-69.1 -32.900000000000006,-69 -32.900000000000006,-69 -33,-69.1 -33))",0.009999999999998864,2021,II.4.1,CH4,3.52149,kg +AR MDZ,0.28431280031119266,-32.85,-69.05,"POLYGON((-69.1 -32.9,-69.1 -32.800000000000004,-69 -32.800000000000004,-69 -32.9,-69.1 -32.9))",0.009999999999998864,2021,II.4.1,CH4,2.32926,kg +AR MDZ,0.3469062938407161,-32.85,-68.95,"POLYGON((-69 -32.9,-69 -32.800000000000004,-68.9 -32.800000000000004,-68.9 -32.9,-69 -32.9))",0.009999999999998864,2021,II.4.1,CH4,4.56161,kg +AR MDZ,0.24929008818384366,-32.85,-68.85,"POLYGON((-68.89999999999999 -32.9,-68.89999999999999 -32.800000000000004,-68.8 -32.800000000000004,-68.8 -32.9,-68.89999999999999 -32.9))",0.009999999999998864,2021,II.4.1,CH4,5.031,kg +AR MDZ,0.05426244548040082,-32.95,-69.05,"POLYGON((-69.1 -33,-69.1 -32.900000000000006,-69 -32.900000000000006,-69 -33,-69.1 -33))",0.009999999999998864,2021,II.4.1,CO2,502762.0,kg +AR MDZ,0.28431280031119266,-32.85,-69.05,"POLYGON((-69.1 -32.9,-69.1 -32.800000000000004,-69 -32.800000000000004,-69 -32.9,-69.1 -32.9))",0.009999999999998864,2021,II.4.1,CO2,332548.0,kg +AR MDZ,0.3469062938407161,-32.85,-68.95,"POLYGON((-69 -32.9,-69 -32.800000000000004,-68.9 -32.800000000000004,-68.9 -32.9,-69 -32.9))",0.009999999999998864,2021,II.4.1,CO2,651261.0,kg +AR MDZ,0.24929008818384366,-32.85,-68.85,"POLYGON((-68.89999999999999 -32.9,-68.89999999999999 -32.800000000000004,-68.8 -32.800000000000004,-68.8 -32.9,-68.89999999999999 -32.9))",0.009999999999998864,2021,II.4.1,CO2,718275.0,kg +AR MDZ,0.05426244548040082,-32.95,-69.05,"POLYGON((-69.1 -33,-69.1 -32.900000000000006,-69 -32.900000000000006,-69 -33,-69.1 -33))",0.009999999999998864,2021,II.4.1,N2O,14.0603,kg +AR MDZ,0.28431280031119266,-32.85,-69.05,"POLYGON((-69.1 -32.9,-69.1 -32.800000000000004,-69 -32.800000000000004,-69 -32.9,-69.1 -32.9))",0.009999999999998864,2021,II.4.1,N2O,9.30005,kg +AR MDZ,0.3469062938407161,-32.85,-68.95,"POLYGON((-69 -32.9,-69 -32.800000000000004,-68.9 -32.800000000000004,-68.9 -32.9,-69 -32.9))",0.009999999999998864,2021,II.4.1,N2O,18.2132,kg +AR MDZ,0.24929008818384366,-32.85,-68.85,"POLYGON((-68.89999999999999 -32.9,-68.89999999999999 -32.800000000000004,-68.8 -32.800000000000004,-68.8 -32.9,-68.89999999999999 -32.9))",0.009999999999998864,2021,II.4.1,N2O,20.0873,kg +AR MDZ,0.05426244548040082,-32.95,-69.05,"POLYGON((-69.1 -33,-69.1 -32.900000000000006,-69 -32.900000000000006,-69 -33,-69.1 -33))",0.009999999999998864,2021,II.4.1,CH4,0.5561290000000001,kg +AR MDZ,0.06484086638131017,-32.95,-68.95,"POLYGON((-69 -33,-69 -32.900000000000006,-68.9 -32.900000000000006,-68.9 -33,-69 -33))",0.009999999999998864,2021,II.4.1,CH4,0.463529,kg +AR MDZ,0.023345706988452262,-32.95,-68.85,"POLYGON((-68.89999999999999 -33,-68.89999999999999 -32.900000000000006,-68.8 -32.900000000000006,-68.8 -33,-68.89999999999999 -33))",0.009999999999998864,2021,II.4.1,CH4,0.24056699999999998,kg +AR MDZ,0.28431280031119266,-32.85,-69.05,"POLYGON((-69.1 -32.9,-69.1 -32.800000000000004,-69 -32.800000000000004,-69 -32.9,-69.1 -32.9))",0.009999999999998864,2021,II.4.1,CH4,1.0707200000000001,kg +AR MDZ,0.3469062938407161,-32.85,-68.95,"POLYGON((-69 -32.9,-69 -32.800000000000004,-68.9 -32.800000000000004,-68.9 -32.9,-69 -32.9))",0.009999999999998864,2021,II.4.1,CH4,1.29985,kg +AR MDZ,0.24929008818384366,-32.85,-68.85,"POLYGON((-68.89999999999999 -32.9,-68.89999999999999 -32.800000000000004,-68.8 -32.800000000000004,-68.8 -32.9,-68.89999999999999 -32.9))",0.009999999999998864,2021,II.4.1,CH4,1.56314,kg +AR MDZ,0.05426244548040082,-32.95,-69.05,"POLYGON((-69.1 -33,-69.1 -32.900000000000006,-69 -32.900000000000006,-69 -33,-69.1 -33))",0.009999999999998864,2021,II.4.1,CO2,79398.4,kg +AR MDZ,0.06484086638131017,-32.95,-68.95,"POLYGON((-69 -33,-69 -32.900000000000006,-68.9 -32.900000000000006,-68.9 -33,-69 -33))",0.009999999999998864,2021,II.4.1,CO2,66178.0,kg +AR MDZ,0.023345706988452262,-32.95,-68.85,"POLYGON((-68.89999999999999 -33,-68.89999999999999 -32.900000000000006,-68.8 -32.900000000000006,-68.8 -33,-68.89999999999999 -33))",0.009999999999998864,2021,II.4.1,CO2,34345.700000000004,kg +AR MDZ,0.28431280031119266,-32.85,-69.05,"POLYGON((-69.1 -32.9,-69.1 -32.800000000000004,-69 -32.800000000000004,-69 -32.9,-69.1 -32.9))",0.009999999999998864,2021,II.4.1,CO2,152866.0,kg +AR MDZ,0.3469062938407161,-32.85,-68.95,"POLYGON((-69 -32.9,-69 -32.800000000000004,-68.9 -32.800000000000004,-68.9 -32.9,-69 -32.9))",0.009999999999998864,2021,II.4.1,CO2,185579.0,kg +AR MDZ,0.24929008818384366,-32.85,-68.85,"POLYGON((-68.89999999999999 -32.9,-68.89999999999999 -32.800000000000004,-68.8 -32.800000000000004,-68.8 -32.9,-68.89999999999999 -32.9))",0.009999999999998864,2021,II.4.1,CO2,223169.0,kg +AR MDZ,0.05426244548040082,-32.95,-69.05,"POLYGON((-69.1 -33,-69.1 -32.900000000000006,-69 -32.900000000000006,-69 -33,-69.1 -33))",0.009999999999998864,2021,II.4.1,N2O,2.22046,kg +AR MDZ,0.06484086638131017,-32.95,-68.95,"POLYGON((-69 -33,-69 -32.900000000000006,-68.9 -32.900000000000006,-68.9 -33,-69 -33))",0.009999999999998864,2021,II.4.1,N2O,1.85074,kg +AR MDZ,0.023345706988452262,-32.95,-68.85,"POLYGON((-68.89999999999999 -33,-68.89999999999999 -32.900000000000006,-68.8 -32.900000000000006,-68.8 -33,-68.89999999999999 -33))",0.009999999999998864,2021,II.4.1,N2O,0.960513,kg +AR MDZ,0.28431280031119266,-32.85,-69.05,"POLYGON((-69.1 -32.9,-69.1 -32.800000000000004,-69 -32.800000000000004,-69 -32.9,-69.1 -32.9))",0.009999999999998864,2021,II.4.1,N2O,4.27506,kg +AR MDZ,0.3469062938407161,-32.85,-68.95,"POLYGON((-69 -32.9,-69 -32.800000000000004,-68.9 -32.800000000000004,-68.9 -32.9,-69 -32.9))",0.009999999999998864,2021,II.4.1,N2O,5.1899,kg +AR MDZ,0.24929008818384366,-32.85,-68.85,"POLYGON((-68.89999999999999 -32.9,-68.89999999999999 -32.800000000000004,-68.8 -32.800000000000004,-68.8 -32.9,-68.89999999999999 -32.9))",0.009999999999998864,2021,II.4.1,N2O,6.24116,kg +AR MDZ,0.06484086638131017,-32.95,-68.95,"POLYGON((-69 -33,-69 -32.900000000000006,-68.9 -32.900000000000006,-68.9 -33,-69 -33))",0.009999999999998864,2021,II.1.1,CH4,292.885,kg +AR MDZ,0.023345706988452262,-32.95,-68.85,"POLYGON((-68.89999999999999 -33,-68.89999999999999 -32.900000000000006,-68.8 -32.900000000000006,-68.8 -33,-68.89999999999999 -33))",0.009999999999998864,2021,II.1.1,CH4,18289.2,kg +AR MDZ,0.28431280031119266,-32.85,-69.05,"POLYGON((-69.1 -32.9,-69.1 -32.800000000000004,-69 -32.800000000000004,-69 -32.9,-69.1 -32.9))",0.009999999999998864,2021,II.1.1,CH4,106.101,kg +AR MDZ,0.3469062938407161,-32.85,-68.95,"POLYGON((-69 -32.9,-69 -32.800000000000004,-68.9 -32.800000000000004,-68.9 -32.9,-69 -32.9))",0.009999999999998864,2021,II.1.1,CH4,320.496,kg +AR MDZ,0.24929008818384366,-32.85,-68.85,"POLYGON((-68.89999999999999 -32.9,-68.89999999999999 -32.800000000000004,-68.8 -32.800000000000004,-68.8 -32.9,-68.89999999999999 -32.9))",0.009999999999998864,2021,II.1.1,CH4,14193.0,kg +AR MDZ,0.06484086638131017,-32.95,-68.95,"POLYGON((-69 -33,-69 -32.900000000000006,-68.9 -32.900000000000006,-68.9 -33,-69 -33))",0.009999999999998864,2021,II.1.1,CO2,1506640.0,kg +AR MDZ,0.023345706988452262,-32.95,-68.85,"POLYGON((-68.89999999999999 -33,-68.89999999999999 -32.900000000000006,-68.8 -32.900000000000006,-68.8 -33,-68.89999999999999 -33))",0.009999999999998864,2021,II.1.1,CO2,90773200,kg +AR MDZ,0.28431280031119266,-32.85,-69.05,"POLYGON((-69.1 -32.9,-69.1 -32.800000000000004,-69 -32.800000000000004,-69 -32.9,-69.1 -32.9))",0.009999999999998864,2021,II.1.1,CO2,558566.0,kg +AR MDZ,0.3469062938407161,-32.85,-68.95,"POLYGON((-69 -32.9,-69 -32.800000000000004,-68.9 -32.800000000000004,-68.9 -32.9,-69 -32.9))",0.009999999999998864,2021,II.1.1,CO2,1650460.0,kg +AR MDZ,0.24929008818384366,-32.85,-68.85,"POLYGON((-68.89999999999999 -32.9,-68.89999999999999 -32.800000000000004,-68.8 -32.800000000000004,-68.8 -32.9,-68.89999999999999 -32.9))",0.009999999999998864,2021,II.1.1,CO2,70502900,kg +AR MDZ,0.06484086638131017,-32.95,-68.95,"POLYGON((-69 -33,-69 -32.900000000000006,-68.9 -32.900000000000006,-68.9 -33,-69 -33))",0.009999999999998864,2021,II.1.1,N2O,101.737,kg +AR MDZ,0.023345706988452262,-32.95,-68.85,"POLYGON((-68.89999999999999 -33,-68.89999999999999 -32.900000000000006,-68.8 -32.900000000000006,-68.8 -33,-68.89999999999999 -33))",0.009999999999998864,2021,II.1.1,N2O,4573.15,kg +AR MDZ,0.28431280031119266,-32.85,-69.05,"POLYGON((-69.1 -32.9,-69.1 -32.800000000000004,-69 -32.800000000000004,-69 -32.9,-69.1 -32.9))",0.009999999999998864,2021,II.1.1,N2O,29.1201,kg +AR MDZ,0.3469062938407161,-32.85,-68.95,"POLYGON((-69 -32.9,-69 -32.800000000000004,-68.9 -32.800000000000004,-68.9 -32.9,-69 -32.9))",0.009999999999998864,2021,II.1.1,N2O,110.847,kg +AR MDZ,0.24929008818384366,-32.85,-68.85,"POLYGON((-68.89999999999999 -32.9,-68.89999999999999 -32.800000000000004,-68.8 -32.800000000000004,-68.8 -32.9,-68.89999999999999 -32.9))",0.009999999999998864,2021,II.1.1,N2O,3501.12,kg +AR MDZ,0.06484086638131017,-32.95,-68.95,"POLYGON((-69 -33,-69 -32.900000000000006,-68.9 -32.900000000000006,-68.9 -33,-69 -33))",0.009999999999998864,2022,II.1.1,CO2,1602570.0,kg +AR MDZ,0.023345706988452262,-32.95,-68.85,"POLYGON((-68.89999999999999 -33,-68.89999999999999 -32.900000000000006,-68.8 -32.900000000000006,-68.8 -33,-68.89999999999999 -33))",0.009999999999998864,2022,II.1.1,CO2,96028400,kg +AR MDZ,0.28431280031119266,-32.85,-69.05,"POLYGON((-69.1 -32.9,-69.1 -32.800000000000004,-69 -32.800000000000004,-69 -32.9,-69.1 -32.9))",0.009999999999998864,2022,II.1.1,CO2,593906.0,kg +AR MDZ,0.3469062938407161,-32.85,-68.95,"POLYGON((-69 -32.9,-69 -32.800000000000004,-68.9 -32.800000000000004,-68.9 -32.9,-69 -32.9))",0.009999999999998864,2022,II.1.1,CO2,1755610.0,kg +AR MDZ,0.24929008818384366,-32.85,-68.85,"POLYGON((-68.89999999999999 -32.9,-68.89999999999999 -32.800000000000004,-68.8 -32.800000000000004,-68.8 -32.9,-68.89999999999999 -32.9))",0.009999999999998864,2022,II.1.1,CO2,74582100,kg +AR MDZ,0.06484086638131017,-32.95,-68.95,"POLYGON((-69 -33,-69 -32.900000000000006,-68.9 -32.900000000000006,-68.9 -33,-69 -33))",0.009999999999998864,2022,II.1.1,CH4,310.52299999999997,kg +AR MDZ,0.023345706988452262,-32.95,-68.85,"POLYGON((-68.89999999999999 -33,-68.89999999999999 -32.900000000000006,-68.8 -32.900000000000006,-68.8 -33,-68.89999999999999 -33))",0.009999999999998864,2022,II.1.1,CH4,19296.5,kg +AR MDZ,0.28431280031119266,-32.85,-69.05,"POLYGON((-69.1 -32.9,-69.1 -32.800000000000004,-69 -32.800000000000004,-69 -32.9,-69.1 -32.9))",0.009999999999998864,2022,II.1.1,CH4,112.705,kg +AR MDZ,0.3469062938407161,-32.85,-68.95,"POLYGON((-69 -32.9,-69 -32.800000000000004,-68.9 -32.800000000000004,-68.9 -32.9,-69 -32.9))",0.009999999999998864,2022,II.1.1,CH4,339.83299999999997,kg +AR MDZ,0.24929008818384366,-32.85,-68.85,"POLYGON((-68.89999999999999 -32.9,-68.89999999999999 -32.800000000000004,-68.8 -32.800000000000004,-68.8 -32.9,-68.89999999999999 -32.9))",0.009999999999998864,2022,II.1.1,CH4,14975.6,kg +AR MDZ,0.06484086638131017,-32.95,-68.95,"POLYGON((-69 -33,-69 -32.900000000000006,-68.9 -32.900000000000006,-68.9 -33,-69 -33))",0.009999999999998864,2022,II.1.1,N2O,108.521,kg +AR MDZ,0.023345706988452262,-32.95,-68.85,"POLYGON((-68.89999999999999 -33,-68.89999999999999 -32.900000000000006,-68.8 -32.900000000000006,-68.8 -33,-68.89999999999999 -33))",0.009999999999998864,2022,II.1.1,N2O,4879.780000000001,kg +AR MDZ,0.28431280031119266,-32.85,-69.05,"POLYGON((-69.1 -32.9,-69.1 -32.800000000000004,-69 -32.800000000000004,-69 -32.9,-69.1 -32.9))",0.009999999999998864,2022,II.1.1,N2O,31.1207,kg +AR MDZ,0.3469062938407161,-32.85,-68.95,"POLYGON((-69 -32.9,-69 -32.800000000000004,-68.9 -32.800000000000004,-68.9 -32.9,-69 -32.9))",0.009999999999998864,2022,II.1.1,N2O,118.244,kg +AR MDZ,0.24929008818384366,-32.85,-68.85,"POLYGON((-68.89999999999999 -32.9,-68.89999999999999 -32.800000000000004,-68.8 -32.800000000000004,-68.8 -32.9,-68.89999999999999 -32.9))",0.009999999999998864,2022,II.1.1,N2O,3736.21,kg +AR MDZ,0.05426244548040082,-32.95,-69.05,"POLYGON((-69.1 -33,-69.1 -32.900000000000006,-69 -32.900000000000006,-69 -33,-69.1 -33))",0.009999999999998864,2022,II.4.1,N2O,17.340999999999998,kg +AR MDZ,0.28431280031119266,-32.85,-69.05,"POLYGON((-69.1 -32.9,-69.1 -32.800000000000004,-69 -32.800000000000004,-69 -32.9,-69.1 -32.9))",0.009999999999998864,2022,II.4.1,N2O,11.4701,kg +AR MDZ,0.3469062938407161,-32.85,-68.95,"POLYGON((-69 -32.9,-69 -32.800000000000004,-68.9 -32.800000000000004,-68.9 -32.9,-69 -32.9))",0.009999999999998864,2022,II.4.1,N2O,22.4629,kg +AR MDZ,0.24929008818384366,-32.85,-68.85,"POLYGON((-68.89999999999999 -32.9,-68.89999999999999 -32.800000000000004,-68.8 -32.800000000000004,-68.8 -32.9,-68.89999999999999 -32.9))",0.009999999999998864,2022,II.4.1,N2O,24.7743,kg +AR MDZ,0.05426244548040082,-32.95,-69.05,"POLYGON((-69.1 -33,-69.1 -32.900000000000006,-69 -32.900000000000006,-69 -33,-69.1 -33))",0.009999999999998864,2022,II.4.1,CH4,4.343170000000001,kg +AR MDZ,0.28431280031119266,-32.85,-69.05,"POLYGON((-69.1 -32.9,-69.1 -32.800000000000004,-69 -32.800000000000004,-69 -32.9,-69.1 -32.9))",0.009999999999998864,2022,II.4.1,CH4,2.87275,kg +AR MDZ,0.3469062938407161,-32.85,-68.95,"POLYGON((-69 -32.9,-69 -32.800000000000004,-68.9 -32.800000000000004,-68.9 -32.9,-69 -32.9))",0.009999999999998864,2022,II.4.1,CH4,5.62599,kg +AR MDZ,0.24929008818384366,-32.85,-68.85,"POLYGON((-68.89999999999999 -32.9,-68.89999999999999 -32.800000000000004,-68.8 -32.800000000000004,-68.8 -32.9,-68.89999999999999 -32.9))",0.009999999999998864,2022,II.4.1,CH4,6.2049,kg +AR MDZ,0.05426244548040082,-32.95,-69.05,"POLYGON((-69.1 -33,-69.1 -32.900000000000006,-69 -32.900000000000006,-69 -33,-69.1 -33))",0.009999999999998864,2022,II.4.1,CO2,620073.0,kg +AR MDZ,0.28431280031119266,-32.85,-69.05,"POLYGON((-69.1 -32.9,-69.1 -32.800000000000004,-69 -32.800000000000004,-69 -32.9,-69.1 -32.9))",0.009999999999998864,2022,II.4.1,CO2,410143.0,kg +AR MDZ,0.3469062938407161,-32.85,-68.95,"POLYGON((-69 -32.9,-69 -32.800000000000004,-68.9 -32.800000000000004,-68.9 -32.9,-69 -32.9))",0.009999999999998864,2022,II.4.1,CO2,803222.0,kg +AR MDZ,0.24929008818384366,-32.85,-68.85,"POLYGON((-68.89999999999999 -32.9,-68.89999999999999 -32.800000000000004,-68.8 -32.800000000000004,-68.8 -32.9,-68.89999999999999 -32.9))",0.009999999999998864,2022,II.4.1,CO2,885873.0,kg +AR MDZ,0.05426244548040082,-32.95,-69.05,"POLYGON((-69.1 -33,-69.1 -32.900000000000006,-69 -32.900000000000006,-69 -33,-69.1 -33))",0.009999999999998864,2022,II.4.1,CO2,97924.7,kg +AR MDZ,0.06484086638131017,-32.95,-68.95,"POLYGON((-69 -33,-69 -32.900000000000006,-68.9 -32.900000000000006,-68.9 -33,-69 -33))",0.009999999999998864,2022,II.4.1,CO2,81619.5,kg +AR MDZ,0.023345706988452262,-32.95,-68.85,"POLYGON((-68.89999999999999 -33,-68.89999999999999 -32.900000000000006,-68.8 -32.900000000000006,-68.8 -33,-68.89999999999999 -33))",0.009999999999998864,2022,II.4.1,CO2,42359.7,kg +AR MDZ,0.28431280031119266,-32.85,-69.05,"POLYGON((-69.1 -32.9,-69.1 -32.800000000000004,-69 -32.800000000000004,-69 -32.9,-69.1 -32.9))",0.009999999999998864,2022,II.4.1,CO2,188535.0,kg +AR MDZ,0.3469062938407161,-32.85,-68.95,"POLYGON((-69 -32.9,-69 -32.800000000000004,-68.9 -32.800000000000004,-68.9 -32.9,-69 -32.9))",0.009999999999998864,2022,II.4.1,CO2,228881.0,kg +AR MDZ,0.24929008818384366,-32.85,-68.85,"POLYGON((-68.89999999999999 -32.9,-68.89999999999999 -32.800000000000004,-68.8 -32.800000000000004,-68.8 -32.9,-68.89999999999999 -32.9))",0.009999999999998864,2022,II.4.1,CO2,275242.0,kg AR VLO,0.19425174692847447,-34.55,-58.55,"POLYGON((-58.599999999999994 -34.599999999999994,-58.599999999999994 -34.5,-58.5 -34.5,-58.5 -34.599999999999994,-58.599999999999994 -34.599999999999994))",0.009999999999998864,2022,II.4.1,N2O,0.0246168,kg AR VLO,0.1308721996164394,-34.55,-58.45,"POLYGON((-58.5 -34.599999999999994,-58.5 -34.5,-58.400000000000006 -34.5,-58.400000000000006 -34.599999999999994,-58.5 -34.599999999999994))",0.009999999999998864,2022,II.4.1,N2O,0.0246168,kg AR VLO,0.19425174692847447,-34.55,-58.55,"POLYGON((-58.599999999999994 -34.599999999999994,-58.599999999999994 -34.5,-58.5 -34.5,-58.5 -34.599999999999994,-58.599999999999994 -34.599999999999994))",0.009999999999998864,2022,II.4.1,CH4,0.00615421,kg From 86b02e509722d4931aeb4ee7e6fefe4b57ff020f Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 29 Apr 2024 07:57:01 +0000 Subject: [PATCH 20/45] chore(deps): bump geopandas from 0.14.3 to 0.14.4 in /global-api Bumps [geopandas](https://github.com/geopandas/geopandas) from 0.14.3 to 0.14.4. - [Release notes](https://github.com/geopandas/geopandas/releases) - [Changelog](https://github.com/geopandas/geopandas/blob/main/CHANGELOG.md) - [Commits](https://github.com/geopandas/geopandas/compare/v0.14.3...v0.14.4) --- updated-dependencies: - dependency-name: geopandas dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- global-api/requirements.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/global-api/requirements.txt b/global-api/requirements.txt index fc539490e..b19a35483 100644 --- a/global-api/requirements.txt +++ b/global-api/requirements.txt @@ -4,7 +4,7 @@ black==24.4.0 fastapi==0.110.2 flake8==7.0.0 fsspec==2024.* -geopandas==0.14.3 +geopandas==0.14.4 mypy==1.9.0 osmnx==1.9.2 pandas==2.2.2 From 8242c9559a92b8c32faf540fa222e41a6e829f0b Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 29 Apr 2024 07:57:18 +0000 Subject: [PATCH 21/45] chore(deps): bump black from 24.4.0 to 24.4.2 in /global-api Bumps [black](https://github.com/psf/black) from 24.4.0 to 24.4.2. - [Release notes](https://github.com/psf/black/releases) - [Changelog](https://github.com/psf/black/blob/main/CHANGES.md) - [Commits](https://github.com/psf/black/compare/24.4.0...24.4.2) --- updated-dependencies: - dependency-name: black dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- global-api/requirements.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/global-api/requirements.txt b/global-api/requirements.txt index fc539490e..0411159ff 100644 --- a/global-api/requirements.txt +++ b/global-api/requirements.txt @@ -1,6 +1,6 @@ aiohttp==3.9.* alembic==1.13.1 -black==24.4.0 +black==24.4.2 fastapi==0.110.2 flake8==7.0.0 fsspec==2024.* From 507ab7b5e1535897edcb7c966b4f0d488e9305a1 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 29 Apr 2024 07:57:23 +0000 Subject: [PATCH 22/45] chore(deps): bump pytest from 8.1.1 to 8.2.0 in /global-api Bumps [pytest](https://github.com/pytest-dev/pytest) from 8.1.1 to 8.2.0. - [Release notes](https://github.com/pytest-dev/pytest/releases) - [Changelog](https://github.com/pytest-dev/pytest/blob/main/CHANGELOG.rst) - [Commits](https://github.com/pytest-dev/pytest/compare/8.1.1...8.2.0) --- updated-dependencies: - dependency-name: pytest dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- global-api/requirements.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/global-api/requirements.txt b/global-api/requirements.txt index fc539490e..7d5e6c580 100644 --- a/global-api/requirements.txt +++ b/global-api/requirements.txt @@ -10,7 +10,7 @@ osmnx==1.9.2 pandas==2.2.2 psycopg2-binary==2.9.9 pydantic-settings==2.* -pytest==8.1.1 +pytest==8.2.0 rioxarray==0.15.* scipy==1.13.* shapely==2.0.4 @@ -24,7 +24,7 @@ nest_asyncio==1.6.* xlrd==2.0.* dns-cache==0.3.* openpyxl==3.1.* -pytest==8.1.1 +pytest==8.2.0 pytest-cov==5.0.0 httpx==0.27.0 pyproj==3.6.* \ No newline at end of file From bd06d4fbaf4922cde5fac93ab0b1aff8fda5bb02 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 29 Apr 2024 08:02:35 +0000 Subject: [PATCH 23/45] chore(deps): bump @react-email/components from 0.0.11 to 0.0.16 in /app Bumps [@react-email/components](https://github.com/resend/react-email/tree/HEAD/packages/components) from 0.0.11 to 0.0.16. - [Release notes](https://github.com/resend/react-email/releases) - [Commits](https://github.com/resend/react-email/commits/@react-email/components@0.0.16/packages/components) --- updated-dependencies: - dependency-name: "@react-email/components" dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- app/package-lock.json | 515 +++++++++--------------------------------- app/package.json | 2 +- 2 files changed, 111 insertions(+), 406 deletions(-) diff --git a/app/package-lock.json b/app/package-lock.json index 3c59a2aa4..a8d9151b3 100644 --- a/app/package-lock.json +++ b/app/package-lock.json @@ -12,7 +12,7 @@ "@chakra-ui/next-js": "^2.2.0", "@chakra-ui/react": "^2.8.2", "@huggingface/inference": "^2.6.4", - "@react-email/components": "^0.0.11", + "@react-email/components": "^0.0.16", "@reduxjs/toolkit": "^2.2.3", "@storybook/cli": "^8.0.8", "@storybook/react": "^7.4.5", @@ -5665,17 +5665,17 @@ } }, "node_modules/@react-email/body": { - "version": "0.0.4", - "resolved": "https://registry.npmjs.org/@react-email/body/-/body-0.0.4.tgz", - "integrity": "sha512-NmHOumdmyjWvOXomqhQt06KbgRxhHrVznxQp/oWiPWes8nAJo2Y4L27aPHR9nTcs7JF7NmcJe9YSN42pswK+GQ==", + "version": "0.0.7", + "resolved": "https://registry.npmjs.org/@react-email/body/-/body-0.0.7.tgz", + "integrity": "sha512-vjJ5P1MUNWV0KNivaEWA6MGj/I3c764qQJMsKjCHlW6mkFJ4SXbm2OlQFtKAb++Bj8LDqBlnE6oW77bWcMc0NA==", "peerDependencies": { "react": "18.2.0" } }, "node_modules/@react-email/button": { - "version": "0.0.11", - "resolved": "https://registry.npmjs.org/@react-email/button/-/button-0.0.11.tgz", - "integrity": "sha512-mB5ySfZifwE5ybtIWwXGbmKk1uKkH4655gftL4+mMxZAZCkINVa2KXTi5pO+xZhMtJI9xtAsikOrOEU1gTDoww==", + "version": "0.0.14", + "resolved": "https://registry.npmjs.org/@react-email/button/-/button-0.0.14.tgz", + "integrity": "sha512-SMk40moGcAvkHIALX4XercQlK0PNeeEIam6OXHw68ea9WtzzqVwiK4pzLY0iiMI9B4xWHcaS2lCPf3cKbQBf1Q==", "engines": { "node": ">=18.0.0" }, @@ -5709,9 +5709,9 @@ } }, "node_modules/@react-email/column": { - "version": "0.0.8", - "resolved": "https://registry.npmjs.org/@react-email/column/-/column-0.0.8.tgz", - "integrity": "sha512-blChqGU8e/L6KZiB5EPww8bkZfdyHDuS0vKIvU+iS14uK+xfAw+5P5CU9BYXccEuJh2Gftfngu1bWMFp2Sc6ag==", + "version": "0.0.9", + "resolved": "https://registry.npmjs.org/@react-email/column/-/column-0.0.9.tgz", + "integrity": "sha512-1ekqNBgmbS6m97/sUFOnVvQtLYljUWamw8Y44VId95v6SjiJ4ca+hMcdOteHWBH67xkRofEOWTvqDRea5SBV8w==", "engines": { "node": ">=18.0.0" }, @@ -5720,27 +5720,30 @@ } }, "node_modules/@react-email/components": { - "version": "0.0.11", - "resolved": "https://registry.npmjs.org/@react-email/components/-/components-0.0.11.tgz", - "integrity": "sha512-wj9Sra/AGQvadb3ZABz44ll9Fb9FvXPEmODXRWbNRSc8pJTFGWorrsm4M/yj8dnewd4HtnbLkV1eDOvuiLAVLA==", - "dependencies": { - "@react-email/body": "0.0.4", - "@react-email/button": "0.0.11", - "@react-email/column": "0.0.8", - "@react-email/container": "0.0.10", - "@react-email/font": "0.0.4", - "@react-email/head": "0.0.6", - "@react-email/heading": "0.0.9", - "@react-email/hr": "0.0.6", - "@react-email/html": "0.0.6", - "@react-email/img": "0.0.6", - "@react-email/link": "0.0.6", - "@react-email/preview": "0.0.7", - "@react-email/render": "0.0.9", - "@react-email/row": "0.0.6", - "@react-email/section": "0.0.10", - "@react-email/tailwind": "0.0.12", - "@react-email/text": "0.0.6" + "version": "0.0.16", + "resolved": "https://registry.npmjs.org/@react-email/components/-/components-0.0.16.tgz", + "integrity": "sha512-1WATpMSH03cRvhfNjGl/Up3seZJOzN9KLzlk3Q9g/cqNhZEJ7HYxoZM4AQKAI0V3ttXzzxKv8Oj+AZQLHDiICA==", + "dependencies": { + "@react-email/body": "0.0.7", + "@react-email/button": "0.0.14", + "@react-email/code-block": "0.0.3", + "@react-email/code-inline": "0.0.1", + "@react-email/column": "0.0.9", + "@react-email/container": "0.0.11", + "@react-email/font": "0.0.5", + "@react-email/head": "0.0.7", + "@react-email/heading": "0.0.11", + "@react-email/hr": "0.0.7", + "@react-email/html": "0.0.7", + "@react-email/img": "0.0.7", + "@react-email/link": "0.0.7", + "@react-email/markdown": "0.0.9", + "@react-email/preview": "0.0.8", + "@react-email/render": "0.0.12", + "@react-email/row": "0.0.7", + "@react-email/section": "0.0.11", + "@react-email/tailwind": "0.0.15", + "@react-email/text": "0.0.7" }, "engines": { "node": ">=18.0.0" @@ -5749,10 +5752,35 @@ "react": "18.2.0" } }, + "node_modules/@react-email/components/node_modules/@react-email/markdown": { + "version": "0.0.9", + "resolved": "https://registry.npmjs.org/@react-email/markdown/-/markdown-0.0.9.tgz", + "integrity": "sha512-t//19Zz+W5svKqrSrqoOLpf6dq70jbwYxX8Z+NEMi4LqylklccOaYAyKrkYyulfZwhW7KDH9d2wjVk5jfUABxQ==", + "dependencies": { + "md-to-react-email": "5.0.2" + }, + "engines": { + "node": ">=18.0.0" + }, + "peerDependencies": { + "react": "18.2.0" + } + }, + "node_modules/@react-email/components/node_modules/md-to-react-email": { + "version": "5.0.2", + "resolved": "https://registry.npmjs.org/md-to-react-email/-/md-to-react-email-5.0.2.tgz", + "integrity": "sha512-x6kkpdzIzUhecda/yahltfEl53mH26QdWu4abUF9+S0Jgam8P//Ciro8cdhyMHnT5MQUJYrIbO6ORM2UxPiNNA==", + "dependencies": { + "marked": "7.0.4" + }, + "peerDependencies": { + "react": "18.x" + } + }, "node_modules/@react-email/container": { - "version": "0.0.10", - "resolved": "https://registry.npmjs.org/@react-email/container/-/container-0.0.10.tgz", - "integrity": "sha512-goishY7ocq+lord0043/LZK268bqvMFW/sxpUt/dSCPJyrrZZNCbpW2t8w8HztU38cYj0qGQLxO5Qvpn/RER3w==", + "version": "0.0.11", + "resolved": "https://registry.npmjs.org/@react-email/container/-/container-0.0.11.tgz", + "integrity": "sha512-jzl/EHs0ClXIRFamfH+NR/cqv4GsJJscqRhdYtnWYuRAsWpKBM1muycrrPqIVhWvWi6sFHInWTt07jX+bDc3SQ==", "engines": { "node": ">=18.0.0" }, @@ -5761,17 +5789,17 @@ } }, "node_modules/@react-email/font": { - "version": "0.0.4", - "resolved": "https://registry.npmjs.org/@react-email/font/-/font-0.0.4.tgz", - "integrity": "sha512-rN/pFlAcDNmfYFxpufT/rFRrM5KYBJM4nTA2uylTehlVOro6fb/q6n0zUwLF6OmQ4QIuRbqdEy7DI9mmJiNHxA==", + "version": "0.0.5", + "resolved": "https://registry.npmjs.org/@react-email/font/-/font-0.0.5.tgz", + "integrity": "sha512-if/qKYmH3rJ2egQJoKbV8SfKCPavu+ikUq/naT/UkCr8Q0lkk309tRA0x7fXG/WeIrmcipjMzFRGTm2TxTecDw==", "peerDependencies": { "react": "18.2.0" } }, "node_modules/@react-email/head": { - "version": "0.0.6", - "resolved": "https://registry.npmjs.org/@react-email/head/-/head-0.0.6.tgz", - "integrity": "sha512-9BrBDalb34nBOmmQVQc7/pjJotcuAeC3rhBl4G88Ohiipuv15vPIKqwy8vPJcFNi4l7yGlitfG3EESIjkLkoIw==", + "version": "0.0.7", + "resolved": "https://registry.npmjs.org/@react-email/head/-/head-0.0.7.tgz", + "integrity": "sha512-IcXL4jc0H1qzAXJCD9ajcRFBQdbUHkjKJyiUeogpaYSVZSq6cVDWQuGaI23TA9k+pI2TFeQimogUFb3Kgeeudw==", "engines": { "node": ">=18.0.0" }, @@ -5780,21 +5808,23 @@ } }, "node_modules/@react-email/heading": { - "version": "0.0.9", - "resolved": "https://registry.npmjs.org/@react-email/heading/-/heading-0.0.9.tgz", - "integrity": "sha512-xzkcGlm+/aFrNlJZBKzxRKkRYJ2cRx92IqmSKAuGnwuKQ/uMKomXzPsHPu3Dclmnhn3wVKj4uprkgQOoxP6uXQ==", + "version": "0.0.11", + "resolved": "https://registry.npmjs.org/@react-email/heading/-/heading-0.0.11.tgz", + "integrity": "sha512-EF5ZtRCxhHPw3m+8iibKKg0RAvAeHj1AP68sjU7s6+J+kvRgllr/E972Wi5Y8UvcIGossCvpX1WrSMDzeB4puA==", "dependencies": { - "@radix-ui/react-slot": "1.0.2", - "react": "18.2.0" + "@radix-ui/react-slot": "1.0.2" }, "engines": { - "node": ">=16.0.0" + "node": ">=18.0.0" + }, + "peerDependencies": { + "react": "18.2.0" } }, "node_modules/@react-email/hr": { - "version": "0.0.6", - "resolved": "https://registry.npmjs.org/@react-email/hr/-/hr-0.0.6.tgz", - "integrity": "sha512-W+wINBz7z7BRv3i9GS+QoJBae1PESNhv6ZY6eLnEpqtBI/2++suuRNJOU/KpZzE6pykeTp6I/Z7UcL0LEYKgyg==", + "version": "0.0.7", + "resolved": "https://registry.npmjs.org/@react-email/hr/-/hr-0.0.7.tgz", + "integrity": "sha512-8suK0M/deXHt0DBSeKhSC4bnCBCBm37xk6KJh9M0/FIKlvdltQBem52YUiuqVl1XLB87Y6v6tvspn3SZ9fuxEA==", "engines": { "node": ">=18.0.0" }, @@ -5803,9 +5833,9 @@ } }, "node_modules/@react-email/html": { - "version": "0.0.6", - "resolved": "https://registry.npmjs.org/@react-email/html/-/html-0.0.6.tgz", - "integrity": "sha512-8Fo20VOqxqc087gGEPjT8uos06fTXIC8NSoiJxpiwAkwiKtQnQH/jOdoLv6XaWh5Zt2clj1uokaoklnaM5rY1w==", + "version": "0.0.7", + "resolved": "https://registry.npmjs.org/@react-email/html/-/html-0.0.7.tgz", + "integrity": "sha512-oy7OoRtoOKApVI/5Lz1OZptMKmMYJu9Xn6+lOmdBQchAuSdQtWJqxhrSj/iI/mm8HZWo6MZEQ6SFpfOuf8/P6Q==", "engines": { "node": ">=18.0.0" }, @@ -5814,9 +5844,9 @@ } }, "node_modules/@react-email/img": { - "version": "0.0.6", - "resolved": "https://registry.npmjs.org/@react-email/img/-/img-0.0.6.tgz", - "integrity": "sha512-Wd7xKI3b1Jvb2ZEHyVpJ9D98u0GHrRl+578b8LV24PavM/65V61Q5LN5Fr9sAhj+4VGqnHDIVeXIYEzVbWaa3Q==", + "version": "0.0.7", + "resolved": "https://registry.npmjs.org/@react-email/img/-/img-0.0.7.tgz", + "integrity": "sha512-up9tM2/dJ24u/CFjcvioKbyGuPw1yeJg605QA7VkrygEhd0CoQEjjgumfugpJ+VJgIt4ZjT9xMVCK5QWTIWoaA==", "engines": { "node": ">=18.0.0" }, @@ -5825,9 +5855,9 @@ } }, "node_modules/@react-email/link": { - "version": "0.0.6", - "resolved": "https://registry.npmjs.org/@react-email/link/-/link-0.0.6.tgz", - "integrity": "sha512-bYYHroWGS//nDl9yhh8V6K2BrNwAsyX7N/XClSCRku3x56NrZ6D0nBKWewYDPlJ9rW9TIaJm1jDYtO9XBzLlkQ==", + "version": "0.0.7", + "resolved": "https://registry.npmjs.org/@react-email/link/-/link-0.0.7.tgz", + "integrity": "sha512-hXPChT3ZMyKnUSA60BLEMD2maEgyB2A37yg5bASbLMrXmsExHi6/IS1h2XiUPLDK4KqH5KFaFxi2cdNo1JOKwA==", "engines": { "node": ">=18.0.0" }, @@ -5850,9 +5880,9 @@ } }, "node_modules/@react-email/preview": { - "version": "0.0.7", - "resolved": "https://registry.npmjs.org/@react-email/preview/-/preview-0.0.7.tgz", - "integrity": "sha512-YLfIwHdexPi8IgP1pSuVXdAmKzMQ8ctCCLEjkMttT2vkSFqT6m/e6UFWK2l30rKm2dDsLvQyEvo923mPXjnNzg==", + "version": "0.0.8", + "resolved": "https://registry.npmjs.org/@react-email/preview/-/preview-0.0.8.tgz", + "integrity": "sha512-Jm0KUYBZQd2w0s2QRMQy0zfHdo3Ns+9bYSE1OybjknlvhANirjuZw9E5KfWgdzO7PyrRtB1OBOQD8//Obc4uIQ==", "engines": { "node": ">=18.0.0" }, @@ -5861,12 +5891,12 @@ } }, "node_modules/@react-email/render": { - "version": "0.0.9", - "resolved": "https://registry.npmjs.org/@react-email/render/-/render-0.0.9.tgz", - "integrity": "sha512-nrim7wiACnaXsGtL7GF6jp3Qmml8J6vAjAH88jkC8lIbfNZaCyuPQHANjyYIXlvQeAbsWADQJFZgOHUqFqjh/A==", + "version": "0.0.12", + "resolved": "https://registry.npmjs.org/@react-email/render/-/render-0.0.12.tgz", + "integrity": "sha512-S8WRv/PqECEi6x0QJBj0asnAb5GFtJaHlnByxLETLkgJjc76cxMYDH4r9wdbuJ4sjkcbpwP3LPnVzwS+aIjT7g==", "dependencies": { "html-to-text": "9.0.5", - "pretty": "2.0.0", + "js-beautify": "^1.14.11", "react": "18.2.0", "react-dom": "18.2.0" }, @@ -5875,9 +5905,9 @@ } }, "node_modules/@react-email/row": { - "version": "0.0.6", - "resolved": "https://registry.npmjs.org/@react-email/row/-/row-0.0.6.tgz", - "integrity": "sha512-msJ2TnDJNwpgDfDzUO63CvhusJHeaGLMM+8Zz86VPvxzwe/DkT7N48QKRWRCkt8urxVz5U+EgivORA9Dum9p3Q==", + "version": "0.0.7", + "resolved": "https://registry.npmjs.org/@react-email/row/-/row-0.0.7.tgz", + "integrity": "sha512-h7pwrLVGk5CIx7Ai/oPxBgCCAGY7BEpCUQ7FCzi4+eThcs5IdjSwDPefLEkwaFS8KZc56UNwTAH92kNq5B7blg==", "engines": { "node": ">=18.0.0" }, @@ -5886,9 +5916,9 @@ } }, "node_modules/@react-email/section": { - "version": "0.0.10", - "resolved": "https://registry.npmjs.org/@react-email/section/-/section-0.0.10.tgz", - "integrity": "sha512-x9B2KYFqj+d8I1fK9bgeVm/3mLE4Qgn4mm/GbDtcJeSzKU/G7bTb7/3+BMDk9SARPGkg5XAuZm1XgcqQQutt2A==", + "version": "0.0.11", + "resolved": "https://registry.npmjs.org/@react-email/section/-/section-0.0.11.tgz", + "integrity": "sha512-3bZ/DuvX1julATI7oqYza6pOtWZgLJDBaa62LFFEvYjisyN+k6lrP2KOucPsDKu2DOkUzlQgK0FOm6VQJX+C0w==", "engines": { "node": ">=18.0.0" }, @@ -5897,13 +5927,11 @@ } }, "node_modules/@react-email/tailwind": { - "version": "0.0.12", - "resolved": "https://registry.npmjs.org/@react-email/tailwind/-/tailwind-0.0.12.tgz", - "integrity": "sha512-s8Ch7GL30qRKScn9NWwItMqxjtzbyUtCnXfC6sL2YTVtulbfvZZ06W+aA0S6f7fdrVlOOlQzZuK/sVaQCHhcSw==", + "version": "0.0.15", + "resolved": "https://registry.npmjs.org/@react-email/tailwind/-/tailwind-0.0.15.tgz", + "integrity": "sha512-TE3NQ7VKhhvv3Zv0Z1NtoV6AF7aOWiG4juVezMZw1hZCG0mkN6iXC63u23vPQi12y6xCp20ZUHfg67kQeDSP/g==", "dependencies": { - "react": "18.2.0", - "react-dom": "18.2.0", - "tw-to-css": "0.0.12" + "react": "18.2.0" }, "engines": { "node": ">=18.0.0" @@ -5913,9 +5941,9 @@ } }, "node_modules/@react-email/text": { - "version": "0.0.6", - "resolved": "https://registry.npmjs.org/@react-email/text/-/text-0.0.6.tgz", - "integrity": "sha512-PDUTAD1PjlzXFOIUrR1zuV2xxguL62yne5YLcn1k+u/dVUyzn6iU/5lFShxCfzuh3QDWCf4+JRNnXN9rmV6jzw==", + "version": "0.0.7", + "resolved": "https://registry.npmjs.org/@react-email/text/-/text-0.0.7.tgz", + "integrity": "sha512-eHCx0mdllGcgK9X7wiLKjNZCBRfxRVNjD3NNYRmOc3Icbl8M9JHriJIfxBuGCmGg2UAORK5P3KmaLQ8b99/pbA==", "engines": { "node": ">=18.0.0" }, @@ -13561,19 +13589,6 @@ "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", "integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==" }, - "node_modules/condense-newlines": { - "version": "0.2.1", - "resolved": "https://registry.npmjs.org/condense-newlines/-/condense-newlines-0.2.1.tgz", - "integrity": "sha512-P7X+QL9Hb9B/c8HI5BFFKmjgBu2XpQuF98WZ9XkO+dBGgk5XgwiQz7o1SmpglNWId3581UcS0SFAWfoIhMHPfg==", - "dependencies": { - "extend-shallow": "^2.0.1", - "is-whitespace": "^0.3.0", - "kind-of": "^3.0.2" - }, - "engines": { - "node": ">=0.10.0" - } - }, "node_modules/config-chain": { "version": "1.1.13", "resolved": "https://registry.npmjs.org/config-chain/-/config-chain-1.1.13.tgz", @@ -16562,18 +16577,8 @@ "node_modules/extend": { "version": "3.0.2", "resolved": "https://registry.npmjs.org/extend/-/extend-3.0.2.tgz", - "integrity": "sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==" - }, - "node_modules/extend-shallow": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", - "integrity": "sha512-zCnTtlxNoAiDc3gqY2aYAWFx7XWWiasuF2K8Me5WbN8otHKTUKBwjPtNpRs/rbUZm7KxWAaNj7P1a/p52GbVug==", - "dependencies": { - "is-extendable": "^0.1.0" - }, - "engines": { - "node": ">=0.10.0" - } + "integrity": "sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==", + "dev": true }, "node_modules/extract-zip": { "version": "2.0.1", @@ -18502,11 +18507,6 @@ "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/is-buffer": { - "version": "1.1.6", - "resolved": "https://registry.npmjs.org/is-buffer/-/is-buffer-1.1.6.tgz", - "integrity": "sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w==" - }, "node_modules/is-callable": { "version": "1.2.7", "resolved": "https://registry.npmjs.org/is-callable/-/is-callable-1.2.7.tgz", @@ -18574,14 +18574,6 @@ "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/is-extendable": { - "version": "0.1.1", - "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-0.1.1.tgz", - "integrity": "sha512-5BMULNob1vgFX6EjQw5izWDxrecWK9AM72rugNr0TFldMOi0fj6Jk+zeKIt0xGj4cEfQIJth4w3OKWOJ4f+AFw==", - "engines": { - "node": ">=0.10.0" - } - }, "node_modules/is-extglob": { "version": "2.1.1", "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", @@ -18908,14 +18900,6 @@ "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/is-whitespace": { - "version": "0.3.0", - "resolved": "https://registry.npmjs.org/is-whitespace/-/is-whitespace-0.3.0.tgz", - "integrity": "sha512-RydPhl4S6JwAyj0JJjshWJEFG6hNye3pZFBRZaTUfZFwGHxzppNaNOVgQuS/E/SlhrApuMXrpnK1EEIXfdo3Dg==", - "engines": { - "node": ">=0.10.0" - } - }, "node_modules/is-wsl": { "version": "2.2.0", "resolved": "https://registry.npmjs.org/is-wsl/-/is-wsl-2.2.0.tgz", @@ -19531,17 +19515,6 @@ "json-buffer": "3.0.1" } }, - "node_modules/kind-of": { - "version": "3.2.2", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", - "integrity": "sha512-NOW9QQXMoZGg/oqnVNoNTTIFEIid1627WCffUBJEdMxYApq7mNE7CpzucIPc+ZQg25Phej7IJSmX3hO+oblOtQ==", - "dependencies": { - "is-buffer": "^1.1.5" - }, - "engines": { - "node": ">=0.10.0" - } - }, "node_modules/kleur": { "version": "3.0.3", "resolved": "https://registry.npmjs.org/kleur/-/kleur-3.0.3.tgz", @@ -21831,27 +21804,6 @@ "node": "^10 || ^12 || >=14" } }, - "node_modules/postcss-css-variables": { - "version": "0.18.0", - "resolved": "https://registry.npmjs.org/postcss-css-variables/-/postcss-css-variables-0.18.0.tgz", - "integrity": "sha512-lYS802gHbzn1GI+lXvy9MYIYDuGnl1WB4FTKoqMQqJ3Mab09A7a/1wZvGTkCEZJTM8mSbIyb1mJYn8f0aPye0Q==", - "dependencies": { - "balanced-match": "^1.0.0", - "escape-string-regexp": "^1.0.3", - "extend": "^3.0.1" - }, - "peerDependencies": { - "postcss": "^8.2.6" - } - }, - "node_modules/postcss-css-variables/node_modules/escape-string-regexp": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", - "integrity": "sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==", - "engines": { - "node": ">=0.8.0" - } - }, "node_modules/postcss-import": { "version": "15.1.0", "resolved": "https://registry.npmjs.org/postcss-import/-/postcss-import-15.1.0.tgz", @@ -22228,19 +22180,6 @@ "url": "https://github.com/prettier/prettier?sponsor=1" } }, - "node_modules/pretty": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/pretty/-/pretty-2.0.0.tgz", - "integrity": "sha512-G9xUchgTEiNpormdYBl+Pha50gOUovT18IvAe7EYMZ1/f9W/WWMPRn+xI68yXNMUk3QXHDwo/1wV/4NejVNe1w==", - "dependencies": { - "condense-newlines": "^0.2.1", - "extend-shallow": "^2.0.1", - "js-beautify": "^1.6.12" - }, - "engines": { - "node": ">=0.10.0" - } - }, "node_modules/pretty-bytes": { "version": "5.6.0", "resolved": "https://registry.npmjs.org/pretty-bytes/-/pretty-bytes-5.6.0.tgz", @@ -22982,36 +22921,6 @@ "node": ">= 10" } }, - "node_modules/react-email/node_modules/@react-email/body": { - "version": "0.0.7", - "resolved": "https://registry.npmjs.org/@react-email/body/-/body-0.0.7.tgz", - "integrity": "sha512-vjJ5P1MUNWV0KNivaEWA6MGj/I3c764qQJMsKjCHlW6mkFJ4SXbm2OlQFtKAb++Bj8LDqBlnE6oW77bWcMc0NA==", - "peerDependencies": { - "react": "18.2.0" - } - }, - "node_modules/react-email/node_modules/@react-email/button": { - "version": "0.0.14", - "resolved": "https://registry.npmjs.org/@react-email/button/-/button-0.0.14.tgz", - "integrity": "sha512-SMk40moGcAvkHIALX4XercQlK0PNeeEIam6OXHw68ea9WtzzqVwiK4pzLY0iiMI9B4xWHcaS2lCPf3cKbQBf1Q==", - "engines": { - "node": ">=18.0.0" - }, - "peerDependencies": { - "react": "18.2.0" - } - }, - "node_modules/react-email/node_modules/@react-email/column": { - "version": "0.0.9", - "resolved": "https://registry.npmjs.org/@react-email/column/-/column-0.0.9.tgz", - "integrity": "sha512-1ekqNBgmbS6m97/sUFOnVvQtLYljUWamw8Y44VId95v6SjiJ4ca+hMcdOteHWBH67xkRofEOWTvqDRea5SBV8w==", - "engines": { - "node": ">=18.0.0" - }, - "peerDependencies": { - "react": "18.2.0" - } - }, "node_modules/react-email/node_modules/@react-email/components": { "version": "0.0.15", "resolved": "https://registry.npmjs.org/@react-email/components/-/components-0.0.15.tgz", @@ -23045,141 +22954,6 @@ "react": "18.2.0" } }, - "node_modules/react-email/node_modules/@react-email/container": { - "version": "0.0.11", - "resolved": "https://registry.npmjs.org/@react-email/container/-/container-0.0.11.tgz", - "integrity": "sha512-jzl/EHs0ClXIRFamfH+NR/cqv4GsJJscqRhdYtnWYuRAsWpKBM1muycrrPqIVhWvWi6sFHInWTt07jX+bDc3SQ==", - "engines": { - "node": ">=18.0.0" - }, - "peerDependencies": { - "react": "18.2.0" - } - }, - "node_modules/react-email/node_modules/@react-email/font": { - "version": "0.0.5", - "resolved": "https://registry.npmjs.org/@react-email/font/-/font-0.0.5.tgz", - "integrity": "sha512-if/qKYmH3rJ2egQJoKbV8SfKCPavu+ikUq/naT/UkCr8Q0lkk309tRA0x7fXG/WeIrmcipjMzFRGTm2TxTecDw==", - "peerDependencies": { - "react": "18.2.0" - } - }, - "node_modules/react-email/node_modules/@react-email/head": { - "version": "0.0.7", - "resolved": "https://registry.npmjs.org/@react-email/head/-/head-0.0.7.tgz", - "integrity": "sha512-IcXL4jc0H1qzAXJCD9ajcRFBQdbUHkjKJyiUeogpaYSVZSq6cVDWQuGaI23TA9k+pI2TFeQimogUFb3Kgeeudw==", - "engines": { - "node": ">=18.0.0" - }, - "peerDependencies": { - "react": "18.2.0" - } - }, - "node_modules/react-email/node_modules/@react-email/heading": { - "version": "0.0.11", - "resolved": "https://registry.npmjs.org/@react-email/heading/-/heading-0.0.11.tgz", - "integrity": "sha512-EF5ZtRCxhHPw3m+8iibKKg0RAvAeHj1AP68sjU7s6+J+kvRgllr/E972Wi5Y8UvcIGossCvpX1WrSMDzeB4puA==", - "dependencies": { - "@radix-ui/react-slot": "1.0.2" - }, - "engines": { - "node": ">=18.0.0" - }, - "peerDependencies": { - "react": "18.2.0" - } - }, - "node_modules/react-email/node_modules/@react-email/hr": { - "version": "0.0.7", - "resolved": "https://registry.npmjs.org/@react-email/hr/-/hr-0.0.7.tgz", - "integrity": "sha512-8suK0M/deXHt0DBSeKhSC4bnCBCBm37xk6KJh9M0/FIKlvdltQBem52YUiuqVl1XLB87Y6v6tvspn3SZ9fuxEA==", - "engines": { - "node": ">=18.0.0" - }, - "peerDependencies": { - "react": "18.2.0" - } - }, - "node_modules/react-email/node_modules/@react-email/html": { - "version": "0.0.7", - "resolved": "https://registry.npmjs.org/@react-email/html/-/html-0.0.7.tgz", - "integrity": "sha512-oy7OoRtoOKApVI/5Lz1OZptMKmMYJu9Xn6+lOmdBQchAuSdQtWJqxhrSj/iI/mm8HZWo6MZEQ6SFpfOuf8/P6Q==", - "engines": { - "node": ">=18.0.0" - }, - "peerDependencies": { - "react": "18.2.0" - } - }, - "node_modules/react-email/node_modules/@react-email/img": { - "version": "0.0.7", - "resolved": "https://registry.npmjs.org/@react-email/img/-/img-0.0.7.tgz", - "integrity": "sha512-up9tM2/dJ24u/CFjcvioKbyGuPw1yeJg605QA7VkrygEhd0CoQEjjgumfugpJ+VJgIt4ZjT9xMVCK5QWTIWoaA==", - "engines": { - "node": ">=18.0.0" - }, - "peerDependencies": { - "react": "18.2.0" - } - }, - "node_modules/react-email/node_modules/@react-email/link": { - "version": "0.0.7", - "resolved": "https://registry.npmjs.org/@react-email/link/-/link-0.0.7.tgz", - "integrity": "sha512-hXPChT3ZMyKnUSA60BLEMD2maEgyB2A37yg5bASbLMrXmsExHi6/IS1h2XiUPLDK4KqH5KFaFxi2cdNo1JOKwA==", - "engines": { - "node": ">=18.0.0" - }, - "peerDependencies": { - "react": "18.2.0" - } - }, - "node_modules/react-email/node_modules/@react-email/preview": { - "version": "0.0.8", - "resolved": "https://registry.npmjs.org/@react-email/preview/-/preview-0.0.8.tgz", - "integrity": "sha512-Jm0KUYBZQd2w0s2QRMQy0zfHdo3Ns+9bYSE1OybjknlvhANirjuZw9E5KfWgdzO7PyrRtB1OBOQD8//Obc4uIQ==", - "engines": { - "node": ">=18.0.0" - }, - "peerDependencies": { - "react": "18.2.0" - } - }, - "node_modules/react-email/node_modules/@react-email/render": { - "version": "0.0.12", - "resolved": "https://registry.npmjs.org/@react-email/render/-/render-0.0.12.tgz", - "integrity": "sha512-S8WRv/PqECEi6x0QJBj0asnAb5GFtJaHlnByxLETLkgJjc76cxMYDH4r9wdbuJ4sjkcbpwP3LPnVzwS+aIjT7g==", - "dependencies": { - "html-to-text": "9.0.5", - "js-beautify": "^1.14.11", - "react": "18.2.0", - "react-dom": "18.2.0" - }, - "engines": { - "node": ">=18.0.0" - } - }, - "node_modules/react-email/node_modules/@react-email/row": { - "version": "0.0.7", - "resolved": "https://registry.npmjs.org/@react-email/row/-/row-0.0.7.tgz", - "integrity": "sha512-h7pwrLVGk5CIx7Ai/oPxBgCCAGY7BEpCUQ7FCzi4+eThcs5IdjSwDPefLEkwaFS8KZc56UNwTAH92kNq5B7blg==", - "engines": { - "node": ">=18.0.0" - }, - "peerDependencies": { - "react": "18.2.0" - } - }, - "node_modules/react-email/node_modules/@react-email/section": { - "version": "0.0.11", - "resolved": "https://registry.npmjs.org/@react-email/section/-/section-0.0.11.tgz", - "integrity": "sha512-3bZ/DuvX1julATI7oqYza6pOtWZgLJDBaa62LFFEvYjisyN+k6lrP2KOucPsDKu2DOkUzlQgK0FOm6VQJX+C0w==", - "engines": { - "node": ">=18.0.0" - }, - "peerDependencies": { - "react": "18.2.0" - } - }, "node_modules/react-email/node_modules/@react-email/tailwind": { "version": "0.0.14", "resolved": "https://registry.npmjs.org/@react-email/tailwind/-/tailwind-0.0.14.tgz", @@ -23194,17 +22968,6 @@ "react": "18.2.0" } }, - "node_modules/react-email/node_modules/@react-email/text": { - "version": "0.0.7", - "resolved": "https://registry.npmjs.org/@react-email/text/-/text-0.0.7.tgz", - "integrity": "sha512-eHCx0mdllGcgK9X7wiLKjNZCBRfxRVNjD3NNYRmOc3Icbl8M9JHriJIfxBuGCmGg2UAORK5P3KmaLQ8b99/pbA==", - "engines": { - "node": ">=18.0.0" - }, - "peerDependencies": { - "react": "18.2.0" - } - }, "node_modules/react-email/node_modules/autoprefixer": { "version": "10.4.14", "resolved": "https://registry.npmjs.org/autoprefixer/-/autoprefixer-10.4.14.tgz", @@ -27634,64 +27397,6 @@ "node": "*" } }, - "node_modules/tw-to-css": { - "version": "0.0.12", - "resolved": "https://registry.npmjs.org/tw-to-css/-/tw-to-css-0.0.12.tgz", - "integrity": "sha512-rQAsQvOtV1lBkyCw+iypMygNHrShYAItES5r8fMsrhhaj5qrV2LkZyXc8ccEH+u5bFjHjQ9iuxe90I7Kykf6pw==", - "dependencies": { - "postcss": "8.4.31", - "postcss-css-variables": "0.18.0", - "tailwindcss": "3.3.2" - }, - "engines": { - "node": ">=16.0.0" - } - }, - "node_modules/tw-to-css/node_modules/object-hash": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/object-hash/-/object-hash-3.0.0.tgz", - "integrity": "sha512-RSn9F68PjH9HqtltsSnqYC1XXoWe9Bju5+213R98cNGttag9q9yAOTzdbsqvIa7aNm5WffBZFpWYr2aWrklWAw==", - "engines": { - "node": ">= 6" - } - }, - "node_modules/tw-to-css/node_modules/tailwindcss": { - "version": "3.3.2", - "resolved": "https://registry.npmjs.org/tailwindcss/-/tailwindcss-3.3.2.tgz", - "integrity": "sha512-9jPkMiIBXvPc2KywkraqsUfbfj+dHDb+JPWtSJa9MLFdrPyazI7q6WX2sUrm7R9eVR7qqv3Pas7EvQFzxKnI6w==", - "dependencies": { - "@alloc/quick-lru": "^5.2.0", - "arg": "^5.0.2", - "chokidar": "^3.5.3", - "didyoumean": "^1.2.2", - "dlv": "^1.1.3", - "fast-glob": "^3.2.12", - "glob-parent": "^6.0.2", - "is-glob": "^4.0.3", - "jiti": "^1.18.2", - "lilconfig": "^2.1.0", - "micromatch": "^4.0.5", - "normalize-path": "^3.0.0", - "object-hash": "^3.0.0", - "picocolors": "^1.0.0", - "postcss": "^8.4.23", - "postcss-import": "^15.1.0", - "postcss-js": "^4.0.1", - "postcss-load-config": "^4.0.1", - "postcss-nested": "^6.0.1", - "postcss-selector-parser": "^6.0.11", - "postcss-value-parser": "^4.2.0", - "resolve": "^1.22.2", - "sucrase": "^3.32.0" - }, - "bin": { - "tailwind": "lib/cli.js", - "tailwindcss": "lib/cli.js" - }, - "engines": { - "node": ">=14.0.0" - } - }, "node_modules/tweetnacl": { "version": "0.14.5", "resolved": "https://registry.npmjs.org/tweetnacl/-/tweetnacl-0.14.5.tgz", diff --git a/app/package.json b/app/package.json index 08a7a8846..322cdbc4f 100644 --- a/app/package.json +++ b/app/package.json @@ -33,7 +33,7 @@ "@chakra-ui/next-js": "^2.2.0", "@chakra-ui/react": "^2.8.2", "@huggingface/inference": "^2.6.4", - "@react-email/components": "^0.0.11", + "@react-email/components": "^0.0.16", "@reduxjs/toolkit": "^2.2.3", "@storybook/cli": "^8.0.8", "@storybook/react": "^7.4.5", From a68fc2146a169a4aa9ab09c92a32e221908bf916 Mon Sep 17 00:00:00 2001 From: Maureen Fonseca Mora <107511484+mfonsecaOEF@users.noreply.github.com> Date: Mon, 29 Apr 2024 07:14:16 -0600 Subject: [PATCH 24/45] feat: biofuels_emissions_calculations_added --- .../SESCO/processed_SESCO_AR.csv | 67651 ++++++++++++---- .../SESCO/transformation_SESCO_AR.py | 441 +- 2 files changed, 50311 insertions(+), 17781 deletions(-) diff --git a/global-api/importer/argentinian_datasets/SESCO/processed_SESCO_AR.csv b/global-api/importer/argentinian_datasets/SESCO/processed_SESCO_AR.csv index 585c27ff5..35a566957 100644 --- a/global-api/importer/argentinian_datasets/SESCO/processed_SESCO_AR.csv +++ b/global-api/importer/argentinian_datasets/SESCO/processed_SESCO_AR.csv @@ -1,17572 +1,50079 @@ -year,region_name,GPC_refno,activity_value,activity_units,gas_name,emission_factor_value,emission_factor_units,emissions_value,activity_name,region_code,source_name,temporal_granularity,emissions_units,id -2010,Buenos Aires,I.3.1,12.85872,TJ,CO2,74100.0,kg/TJ,952831.152,Gas Oil combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,307e8111-cc48-3b1e-9826-ba331db99535 -2010,Buenos Aires,I.3.1,12.85872,TJ,CH4,3.0,kg/TJ,38.57616,Gas Oil combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,2b1ff6a0-81b5-3c30-9644-274f8d90d1b3 -2010,Buenos Aires,I.3.1,12.85872,TJ,N2O,0.6,kg/TJ,7.715231999999999,Gas Oil combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,b938ed42-ab66-3e03-8064-06cf80d6e962 -2010,Capital Federal,I.3.1,3.28692,TJ,CO2,74100.0,kg/TJ,243560.772,Gas Oil combustion consumption by petrochemical industries,AR-C,SESCO,annual,kg,de8d2d98-5f79-3cfc-ad8f-9e7942fa1aa7 -2010,Capital Federal,I.3.1,3.28692,TJ,CH4,3.0,kg/TJ,9.860759999999999,Gas Oil combustion consumption by petrochemical industries,AR-C,SESCO,annual,kg,353d42ed-2c3b-3de4-959c-fc1cbe2d83d7 -2010,Capital Federal,I.3.1,3.28692,TJ,N2O,0.6,kg/TJ,1.972152,Gas Oil combustion consumption by petrochemical industries,AR-C,SESCO,annual,kg,4f7e2ebd-d937-3dab-a07f-616cd3c6228e -2010,Buenos Aires,I.3.1,2.660215,TJ,CO2,69300.0,kg/TJ,184352.8995,Motor Gasoline combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,378c40bf-b65a-357c-b6a5-021b763c708a -2010,Buenos Aires,I.3.1,2.660215,TJ,CH4,3.0,kg/TJ,7.980645,Motor Gasoline combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,b0d18ad5-1bc1-314f-861e-f0d651164cdb -2010,Buenos Aires,I.3.1,2.660215,TJ,N2O,0.6,kg/TJ,1.596129,Motor Gasoline combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,06038793-58a9-3427-a445-dfafefe0cf5a -2010,Buenos Aires,I.3.1,6.29122906,TJ,CO2,71500.0,kg/TJ,449822.87779,Jet Kerosene combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,d563d431-ffaf-39a7-9a89-4b08f3af9fdc -2010,Buenos Aires,I.3.1,6.29122906,TJ,CH4,3.0,kg/TJ,18.87368718,Jet Kerosene combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,0ae65231-b9b2-3608-8ef2-436fc1ff5ee8 -2010,Buenos Aires,I.3.1,6.29122906,TJ,N2O,0.6,kg/TJ,3.7747374359999997,Jet Kerosene combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,b93fde4b-2472-3a71-ae68-fc77e33404d0 -2010,Tucuman,I.3.1,2.5834107599999996,TJ,CO2,74100.0,kg/TJ,191430.73731599996,Gas Oil combustion consumption by petrochemical industries,AR-T,SESCO,annual,kg,3f63fba6-7b6f-3294-a275-0ad83e91ba5b -2010,Tucuman,I.3.1,2.5834107599999996,TJ,CH4,3.0,kg/TJ,7.750232279999999,Gas Oil combustion consumption by petrochemical industries,AR-T,SESCO,annual,kg,f34fe109-114c-36a6-9c65-a7b33d8009da -2010,Tucuman,I.3.1,2.5834107599999996,TJ,N2O,0.6,kg/TJ,1.5500464559999998,Gas Oil combustion consumption by petrochemical industries,AR-T,SESCO,annual,kg,6eaf76c0-d199-305e-8494-fdb5dda19f2c -2010,Córdoba,I.3.1,1.1999064,TJ,CO2,74100.0,kg/TJ,88913.06423999999,Diesel Oil combustion consumption by petrochemical industries,AR-X,SESCO,annual,kg,ee8147fa-ef75-3fd2-a868-5e00e13dc002 -2010,Córdoba,I.3.1,1.1999064,TJ,CH4,3.0,kg/TJ,3.5997192,Diesel Oil combustion consumption by petrochemical industries,AR-X,SESCO,annual,kg,976dfa48-2d7b-3c45-8038-fe76f47e4080 -2010,Córdoba,I.3.1,1.1999064,TJ,N2O,0.6,kg/TJ,0.7199438399999999,Diesel Oil combustion consumption by petrochemical industries,AR-X,SESCO,annual,kg,ddd5c2db-bda3-3b60-83e0-abe903e33d0f -2010,Córdoba,I.3.1,0.0299796,TJ,CO2,74100.0,kg/TJ,2221.48836,Gas Oil combustion consumption by petrochemical industries,AR-X,SESCO,annual,kg,4b1ca251-8ed2-3d4a-a252-40fc40f53c9d -2010,Córdoba,I.3.1,0.0299796,TJ,CH4,3.0,kg/TJ,0.0899388,Gas Oil combustion consumption by petrochemical industries,AR-X,SESCO,annual,kg,fa3d6cf3-d1a6-341c-be63-a2857aff0ae6 -2010,Córdoba,I.3.1,0.0299796,TJ,N2O,0.6,kg/TJ,0.01798776,Gas Oil combustion consumption by petrochemical industries,AR-X,SESCO,annual,kg,cda8b2f4-181d-3228-8fe1-40671346de15 -2010,Buenos Aires,I.3.1,410.73542399999997,TJ,CO2,69300.0,kg/TJ,28463964.883199997,Motor Gasoline combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,c05f3763-d40a-3e0a-8a9f-bc04a707f044 -2010,Buenos Aires,I.3.1,410.73542399999997,TJ,CH4,3.0,kg/TJ,1232.206272,Motor Gasoline combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,ab1b8b1f-d218-3d6d-8178-35f48960b690 -2010,Buenos Aires,I.3.1,410.73542399999997,TJ,N2O,0.6,kg/TJ,246.44125439999996,Motor Gasoline combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,d51b8931-dd94-328d-802e-17c43098aea8 -2010,Chaco,I.3.1,16.930574,TJ,CO2,69300.0,kg/TJ,1173288.7782,Motor Gasoline combustion consumption by petrochemical industries,AR-H,SESCO,annual,kg,5bb412ca-ffff-3f67-a1f4-ae751ab86442 -2010,Chaco,I.3.1,16.930574,TJ,CH4,3.0,kg/TJ,50.791722,Motor Gasoline combustion consumption by petrochemical industries,AR-H,SESCO,annual,kg,816ef94a-3abb-3584-b7e2-722c253a1ee1 -2010,Chaco,I.3.1,16.930574,TJ,N2O,0.6,kg/TJ,10.158344399999999,Motor Gasoline combustion consumption by petrochemical industries,AR-H,SESCO,annual,kg,9c6a8af8-b1c6-39f1-abf4-62f166102903 -2010,Córdoba,I.3.1,44.023125,TJ,CO2,69300.0,kg/TJ,3050802.5625,Motor Gasoline combustion consumption by petrochemical industries,AR-X,SESCO,annual,kg,c1a8ff75-8c82-386a-9c37-bfd410897334 -2010,Córdoba,I.3.1,44.023125,TJ,CH4,3.0,kg/TJ,132.069375,Motor Gasoline combustion consumption by petrochemical industries,AR-X,SESCO,annual,kg,a3ef6e0c-1014-31be-ad1f-5cbc3b8ff572 -2010,Córdoba,I.3.1,44.023125,TJ,N2O,0.6,kg/TJ,26.413875,Motor Gasoline combustion consumption by petrochemical industries,AR-X,SESCO,annual,kg,946fe760-dc9c-3ea0-a32d-c32f48ae9a4d -2010,Santa Fe,I.3.1,26.752326999999998,TJ,CO2,69300.0,kg/TJ,1853936.2610999998,Motor Gasoline combustion consumption by petrochemical industries,AR-S,SESCO,annual,kg,2f4972bf-c7b9-3b76-9887-1dd2f430017f -2010,Santa Fe,I.3.1,26.752326999999998,TJ,CH4,3.0,kg/TJ,80.256981,Motor Gasoline combustion consumption by petrochemical industries,AR-S,SESCO,annual,kg,92ae9366-9e19-39e1-a8e7-c8a140c701e4 -2010,Santa Fe,I.3.1,26.752326999999998,TJ,N2O,0.6,kg/TJ,16.0513962,Motor Gasoline combustion consumption by petrochemical industries,AR-S,SESCO,annual,kg,58f9fd60-7050-3923-8f8e-ac010835663f -2010,Buenos Aires,I.3.1,0.18059999999999998,TJ,CO2,74100.0,kg/TJ,13382.46,Gas Oil combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,fccbff91-77d2-3d8a-863d-228e27cb5f68 -2010,Buenos Aires,I.3.1,0.18059999999999998,TJ,CH4,3.0,kg/TJ,0.5418,Gas Oil combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,7555ac37-4bb1-3e7f-9746-6fe968874b03 -2010,Buenos Aires,I.3.1,0.18059999999999998,TJ,N2O,0.6,kg/TJ,0.10835999999999998,Gas Oil combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,bbf29b8f-14ed-36c6-af4e-fabe01bfed5d -2010,Capital Federal,I.3.1,1.37256,TJ,CO2,74100.0,kg/TJ,101706.696,Gas Oil combustion consumption by petrochemical industries,AR-C,SESCO,annual,kg,3de08342-2466-3a68-ba16-d7420fb24112 -2010,Capital Federal,I.3.1,1.37256,TJ,CH4,3.0,kg/TJ,4.11768,Gas Oil combustion consumption by petrochemical industries,AR-C,SESCO,annual,kg,8bdb37bc-b8c0-3e8d-8779-39171e7c3bb9 -2010,Capital Federal,I.3.1,1.37256,TJ,N2O,0.6,kg/TJ,0.8235359999999999,Gas Oil combustion consumption by petrochemical industries,AR-C,SESCO,annual,kg,0a8294a5-fba1-3fa2-b554-a9095be49ddd -2010,Capital Federal,I.3.1,0.18059999999999998,TJ,CO2,74100.0,kg/TJ,13382.46,Gas Oil combustion consumption by petrochemical industries,AR-C,SESCO,annual,kg,9f325c73-2b72-3859-b004-63b6b18ea35b -2010,Capital Federal,I.3.1,0.18059999999999998,TJ,CH4,3.0,kg/TJ,0.5418,Gas Oil combustion consumption by petrochemical industries,AR-C,SESCO,annual,kg,512c0c82-2d25-3d10-9921-019283502209 -2010,Capital Federal,I.3.1,0.18059999999999998,TJ,N2O,0.6,kg/TJ,0.10835999999999998,Gas Oil combustion consumption by petrochemical industries,AR-C,SESCO,annual,kg,96d424a4-ac17-3d1f-957c-ba08c2dfad49 -2010,Buenos Aires,I.3.1,22.107607199999997,TJ,CO2,74100.0,kg/TJ,1638173.6935199997,Gas Oil combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,d704a869-39a2-3a53-bf43-2c3a5851816b -2010,Buenos Aires,I.3.1,22.107607199999997,TJ,CH4,3.0,kg/TJ,66.3228216,Gas Oil combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,0c76b863-273e-3030-92a9-3f1f7198780f -2010,Buenos Aires,I.3.1,22.107607199999997,TJ,N2O,0.6,kg/TJ,13.264564319999998,Gas Oil combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,8dabef8d-0b1c-33f9-bcce-af8b60e79881 -2011,Buenos Aires,I.3.1,33.715697785,TJ,CO2,73300.0,kg/TJ,2471360.6476405,Naphtha combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,a1dfd5af-0ad6-3690-a638-9ced10d43a2c -2011,Buenos Aires,I.3.1,33.715697785,TJ,CH4,3.0,kg/TJ,101.14709335500001,Naphtha combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,956779ec-aa98-3163-94a5-ba7917923c4c -2011,Buenos Aires,I.3.1,33.715697785,TJ,N2O,0.6,kg/TJ,20.229418671,Naphtha combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,1b3e041a-c029-3310-90ed-4375d7879341 -2011,Buenos Aires,I.3.1,127.42717799999998,TJ,CO2,69300.0,kg/TJ,8830703.435399998,Motor Gasoline combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,ff7b3470-6172-324d-b7ca-100dd793ec06 -2011,Buenos Aires,I.3.1,127.42717799999998,TJ,CH4,3.0,kg/TJ,382.28153399999997,Motor Gasoline combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,f96debdb-a5a8-3cb7-8578-71116871bff6 -2011,Buenos Aires,I.3.1,127.42717799999998,TJ,N2O,0.6,kg/TJ,76.4563068,Motor Gasoline combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,22dfd4b1-20ef-3b5f-b361-79eebeb8aa33 -2011,Santa Fe,I.3.1,1.142054,TJ,CO2,69300.0,kg/TJ,79144.3422,Motor Gasoline combustion consumption by petrochemical industries,AR-S,SESCO,annual,kg,c2fe842b-bbed-3ea6-8113-2a4da97b8bc1 -2011,Santa Fe,I.3.1,1.142054,TJ,CH4,3.0,kg/TJ,3.4261619999999997,Motor Gasoline combustion consumption by petrochemical industries,AR-S,SESCO,annual,kg,4e4d6540-71d5-3560-bb00-5a9fc34f9fac -2011,Santa Fe,I.3.1,1.142054,TJ,N2O,0.6,kg/TJ,0.6852324,Motor Gasoline combustion consumption by petrochemical industries,AR-S,SESCO,annual,kg,713e213e-7cb8-31a7-a07e-22b644d9b56a -2011,Santa Fe,I.3.1,6.119967474999999,TJ,CO2,71500.0,kg/TJ,437577.67446249997,Jet Kerosene combustion consumption by petrochemical industries,AR-S,SESCO,annual,kg,68f2a48d-d66b-3396-8da7-9c815c26fd09 -2011,Santa Fe,I.3.1,6.119967474999999,TJ,CH4,3.0,kg/TJ,18.359902424999998,Jet Kerosene combustion consumption by petrochemical industries,AR-S,SESCO,annual,kg,bff3d18a-835c-3cfa-a8c4-32eb12694e98 -2011,Santa Fe,I.3.1,6.119967474999999,TJ,N2O,0.6,kg/TJ,3.6719804849999993,Jet Kerosene combustion consumption by petrochemical industries,AR-S,SESCO,annual,kg,f4113da3-1fb2-3649-905f-1d7bccec3383 -2011,La Pampa,I.3.1,12.890180519999998,TJ,CO2,74100.0,kg/TJ,955162.3765319998,Gas Oil combustion consumption by petrochemical industries,AR-L,SESCO,annual,kg,51149317-b843-3b6c-a825-27cb6f316a72 -2011,La Pampa,I.3.1,12.890180519999998,TJ,CH4,3.0,kg/TJ,38.67054155999999,Gas Oil combustion consumption by petrochemical industries,AR-L,SESCO,annual,kg,732c94d6-8b63-34ca-94c8-71d1cb72f695 -2011,La Pampa,I.3.1,12.890180519999998,TJ,N2O,0.6,kg/TJ,7.734108311999998,Gas Oil combustion consumption by petrochemical industries,AR-L,SESCO,annual,kg,ebb9bf1a-891e-3b3a-b6c8-0f2deb75ce3b -2011,La Pampa,I.3.1,0.549507805,TJ,CO2,73300.0,kg/TJ,40278.922106499995,Naphtha combustion consumption by petrochemical industries,AR-L,SESCO,annual,kg,b6a406c8-c2f1-3d8f-b402-fad51aa8875c -2011,La Pampa,I.3.1,0.549507805,TJ,CH4,3.0,kg/TJ,1.6485234149999999,Naphtha combustion consumption by petrochemical industries,AR-L,SESCO,annual,kg,da329a0f-b663-3e83-9046-21e5477721ac -2011,La Pampa,I.3.1,0.549507805,TJ,N2O,0.6,kg/TJ,0.32970468299999994,Naphtha combustion consumption by petrochemical industries,AR-L,SESCO,annual,kg,0bce7c7c-aeef-37b5-8b90-321615bc3f55 -2011,La Pampa,I.3.1,0.6847860249999999,TJ,CO2,73300.0,kg/TJ,50194.81563249999,Naphtha combustion consumption by petrochemical industries,AR-L,SESCO,annual,kg,60f7041c-ab15-3ac8-acf8-9f4da058b885 -2011,La Pampa,I.3.1,0.6847860249999999,TJ,CH4,3.0,kg/TJ,2.0543580749999997,Naphtha combustion consumption by petrochemical industries,AR-L,SESCO,annual,kg,0015bddd-da5e-39a4-85af-d98931e8ed2b -2011,La Pampa,I.3.1,0.6847860249999999,TJ,N2O,0.6,kg/TJ,0.4108716149999999,Naphtha combustion consumption by petrochemical industries,AR-L,SESCO,annual,kg,a58b336e-3455-3cc7-8110-e5e916cb317a -2011,Buenos Aires,I.3.1,143.27816099999998,TJ,CO2,69300.0,kg/TJ,9929176.5573,Motor Gasoline combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,3affc3de-a8a9-38d9-973c-fef252324aa3 -2011,Buenos Aires,I.3.1,143.27816099999998,TJ,CH4,3.0,kg/TJ,429.834483,Motor Gasoline combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,ea309250-007f-3a9a-a45c-e2b036f8b232 -2011,Buenos Aires,I.3.1,143.27816099999998,TJ,N2O,0.6,kg/TJ,85.96689659999998,Motor Gasoline combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,6d0abccb-ffd9-3aad-887f-bdd306452aa4 -2011,Chaco,I.3.1,1.1907839999999998,TJ,CO2,69300.0,kg/TJ,82521.33119999999,Motor Gasoline combustion consumption by petrochemical industries,AR-H,SESCO,annual,kg,197a70a4-3497-3639-bcea-9f9bdc41817c -2011,Chaco,I.3.1,1.1907839999999998,TJ,CH4,3.0,kg/TJ,3.5723519999999995,Motor Gasoline combustion consumption by petrochemical industries,AR-H,SESCO,annual,kg,cab0d27a-b926-33ee-89aa-a090e2c3a978 -2011,Chaco,I.3.1,1.1907839999999998,TJ,N2O,0.6,kg/TJ,0.7144703999999998,Motor Gasoline combustion consumption by petrochemical industries,AR-H,SESCO,annual,kg,e5f7293d-37c1-363c-a802-296428da50c2 -2011,Santa Fe,I.3.1,14.936187999999996,TJ,CO2,69300.0,kg/TJ,1035077.8283999998,Motor Gasoline combustion consumption by petrochemical industries,AR-S,SESCO,annual,kg,65d9e673-073c-366a-a236-8dcf7eeaceda -2011,Santa Fe,I.3.1,14.936187999999996,TJ,CH4,3.0,kg/TJ,44.80856399999999,Motor Gasoline combustion consumption by petrochemical industries,AR-S,SESCO,annual,kg,7f64c564-a3e0-3687-b4e3-dc6d41f71c51 -2011,Santa Fe,I.3.1,14.936187999999996,TJ,N2O,0.6,kg/TJ,8.961712799999997,Motor Gasoline combustion consumption by petrochemical industries,AR-S,SESCO,annual,kg,93f432c2-6860-3840-856a-a9caeaaa474d -2011,Buenos Aires,I.3.1,74.9113,TJ,CO2,69300.0,kg/TJ,5191353.09,Motor Gasoline combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,c2a75594-d16f-38b8-bc01-588c20324ede -2011,Buenos Aires,I.3.1,74.9113,TJ,CH4,3.0,kg/TJ,224.7339,Motor Gasoline combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,aeb59113-9a04-3d4e-b10b-32d975d3fe98 -2011,Buenos Aires,I.3.1,74.9113,TJ,N2O,0.6,kg/TJ,44.94678,Motor Gasoline combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,305bd213-504a-3e4a-b1fc-f55dae904cee -2011,Capital Federal,I.3.1,2.3478,TJ,CO2,74100.0,kg/TJ,173971.97999999998,Gas Oil combustion consumption by petrochemical industries,AR-C,SESCO,annual,kg,46f5160d-9457-38c3-87d8-ec2203319c46 -2011,Capital Federal,I.3.1,2.3478,TJ,CH4,3.0,kg/TJ,7.0434,Gas Oil combustion consumption by petrochemical industries,AR-C,SESCO,annual,kg,02ae970b-ec54-3591-b0b4-b5ec294b202c -2011,Capital Federal,I.3.1,2.3478,TJ,N2O,0.6,kg/TJ,1.40868,Gas Oil combustion consumption by petrochemical industries,AR-C,SESCO,annual,kg,3ff0feb0-7237-3e81-b0e7-e43fa3a476d3 -2012,Buenos Aires,I.3.1,85.7648,TJ,CO2,69300.0,kg/TJ,5943500.64,Motor Gasoline combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,becb83b2-cd78-3286-8131-20766b8af396 -2012,Buenos Aires,I.3.1,85.7648,TJ,CH4,3.0,kg/TJ,257.2944,Motor Gasoline combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,4de19472-915e-3f21-8129-15811e715ec1 -2012,Buenos Aires,I.3.1,85.7648,TJ,N2O,0.6,kg/TJ,51.45887999999999,Motor Gasoline combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,508cccb4-36ee-3e72-ba97-69bd22cab968 -2012,Buenos Aires,I.3.1,9.058463999999999,TJ,CO2,71500.0,kg/TJ,647680.176,Jet Kerosene combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,a87b8989-5a69-32d1-9a2c-328e8e6024f1 -2012,Buenos Aires,I.3.1,9.058463999999999,TJ,CH4,3.0,kg/TJ,27.175391999999995,Jet Kerosene combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,4aff30af-96b1-3515-a52f-f09fb75da097 -2012,Buenos Aires,I.3.1,9.058463999999999,TJ,N2O,0.6,kg/TJ,5.435078399999999,Jet Kerosene combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,b4fa34dd-a21b-3b23-ae0b-7eb3587133d5 -2012,Buenos Aires,I.3.1,117.23153299999998,TJ,CO2,69300.0,kg/TJ,8124145.236899999,Motor Gasoline combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,ac070f10-be0c-3887-9caf-919009cb71d2 -2012,Buenos Aires,I.3.1,117.23153299999998,TJ,CH4,3.0,kg/TJ,351.6945989999999,Motor Gasoline combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,794990f4-c8aa-3a52-974e-d0c3e5d06c46 -2012,Buenos Aires,I.3.1,117.23153299999998,TJ,N2O,0.6,kg/TJ,70.33891979999999,Motor Gasoline combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,5177c902-90f5-3f8d-aee6-7ef1b155ea16 -2012,Santa Fe,I.3.1,17.485653,TJ,CO2,69300.0,kg/TJ,1211755.7529,Motor Gasoline combustion consumption by petrochemical industries,AR-S,SESCO,annual,kg,c0f64b2d-92f0-342a-95de-e4fe7a158728 -2012,Santa Fe,I.3.1,17.485653,TJ,CH4,3.0,kg/TJ,52.456959,Motor Gasoline combustion consumption by petrochemical industries,AR-S,SESCO,annual,kg,430326c4-fae1-3c66-8bf9-fe3dc604eca5 -2012,Santa Fe,I.3.1,17.485653,TJ,N2O,0.6,kg/TJ,10.491391799999999,Motor Gasoline combustion consumption by petrochemical industries,AR-S,SESCO,annual,kg,3a1099e3-3d38-3973-8d63-b3b0f87c76cf -2012,Tucuman,I.3.1,26.792196999999998,TJ,CO2,69300.0,kg/TJ,1856699.2521,Motor Gasoline combustion consumption by petrochemical industries,AR-T,SESCO,annual,kg,f6db3d68-35f9-391d-8c5e-f7df05fcc874 -2012,Tucuman,I.3.1,26.792196999999998,TJ,CH4,3.0,kg/TJ,80.37659099999999,Motor Gasoline combustion consumption by petrochemical industries,AR-T,SESCO,annual,kg,c2eaf327-838a-3a8b-968b-d0f297f32ec9 -2012,Tucuman,I.3.1,26.792196999999998,TJ,N2O,0.6,kg/TJ,16.075318199999998,Motor Gasoline combustion consumption by petrochemical industries,AR-T,SESCO,annual,kg,0f0da85c-510d-305f-8107-17a2e3b75fa7 -2012,Buenos Aires,I.3.1,145.92419999999998,TJ,CO2,69300.0,kg/TJ,10112547.059999999,Motor Gasoline combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,1aa2180f-4d32-3364-a7ec-b3b6c69c1592 -2012,Buenos Aires,I.3.1,145.92419999999998,TJ,CH4,3.0,kg/TJ,437.77259999999995,Motor Gasoline combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,62d13b0e-e819-3fc2-bbbf-245e8c343c40 -2012,Buenos Aires,I.3.1,145.92419999999998,TJ,N2O,0.6,kg/TJ,87.55451999999998,Motor Gasoline combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,9bf6e1c4-97e6-325d-b77b-15f7e8c57fdd -2012,Capital Federal,I.3.1,2.709,TJ,CO2,74100.0,kg/TJ,200736.9,Gas Oil combustion consumption by petrochemical industries,AR-C,SESCO,annual,kg,e7d2fda0-3cf5-3e94-b273-2f0f41aaa38f -2012,Capital Federal,I.3.1,2.709,TJ,CH4,3.0,kg/TJ,8.127,Gas Oil combustion consumption by petrochemical industries,AR-C,SESCO,annual,kg,2011dca0-115a-34b8-93dc-16c07a06eaad -2012,Capital Federal,I.3.1,2.709,TJ,N2O,0.6,kg/TJ,1.6254,Gas Oil combustion consumption by petrochemical industries,AR-C,SESCO,annual,kg,d99473ea-f897-34a3-99ab-4a2e7fd411d9 -2012,Entre Rios,I.3.1,2.60064,TJ,CO2,74100.0,kg/TJ,192707.424,Gas Oil combustion consumption by petrochemical industries,AR-E,SESCO,annual,kg,4959a717-02f5-394f-a6cc-a260ef46ef63 -2012,Entre Rios,I.3.1,2.60064,TJ,CH4,3.0,kg/TJ,7.801919999999999,Gas Oil combustion consumption by petrochemical industries,AR-E,SESCO,annual,kg,1d47be69-fd72-348c-8087-b99bc9844f9b -2012,Entre Rios,I.3.1,2.60064,TJ,N2O,0.6,kg/TJ,1.5603839999999998,Gas Oil combustion consumption by petrochemical industries,AR-E,SESCO,annual,kg,058a6fdc-e9fd-3fb9-99d9-9fc3c8e85af6 -2013,Buenos Aires,I.3.1,69.888123,TJ,CO2,69300.0,kg/TJ,4843246.9239,Motor Gasoline combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,260a6289-7a22-3cc9-90b8-2342910ed24d -2013,Buenos Aires,I.3.1,69.888123,TJ,CH4,3.0,kg/TJ,209.66436899999997,Motor Gasoline combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,b893490e-4788-3047-b941-be1401737da1 -2013,Buenos Aires,I.3.1,69.888123,TJ,N2O,0.6,kg/TJ,41.932873799999996,Motor Gasoline combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,9c1a7c94-f400-3b52-b03b-b3fda70c27c5 -2013,Buenos Aires,I.3.1,11.95572,TJ,CO2,74100.0,kg/TJ,885918.852,Gas Oil combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,c97e21ae-5372-328b-bc99-93861368c70c -2013,Buenos Aires,I.3.1,11.95572,TJ,CH4,3.0,kg/TJ,35.86716,Gas Oil combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,56d18f36-8c75-3a7a-9903-1ab4a931b4cf -2013,Buenos Aires,I.3.1,11.95572,TJ,N2O,0.6,kg/TJ,7.173431999999999,Gas Oil combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,b97aac26-fd3f-3d91-a62c-3877c36768ff -2013,Buenos Aires,I.3.1,4.04544,TJ,CO2,74100.0,kg/TJ,299767.104,Gas Oil combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,ba3a4b67-855b-3723-8189-0f92c1a118f3 -2013,Buenos Aires,I.3.1,4.04544,TJ,CH4,3.0,kg/TJ,12.136320000000001,Gas Oil combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,bd1cfa62-673d-389f-8b3a-b6ba368b4d2f -2013,Buenos Aires,I.3.1,4.04544,TJ,N2O,0.6,kg/TJ,2.427264,Gas Oil combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,49f39d6f-f651-3ed4-ad43-13d1f9b20fcc -2013,Buenos Aires,I.3.1,19.154135,TJ,CO2,73300.0,kg/TJ,1403998.0955,Naphtha combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,3b76a6a6-ce10-35ea-a7f9-959f63aba21b -2013,Buenos Aires,I.3.1,19.154135,TJ,CH4,3.0,kg/TJ,57.462405000000004,Naphtha combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,36f3a397-e9c0-319b-bddd-cd06e4097d02 -2013,Buenos Aires,I.3.1,19.154135,TJ,N2O,0.6,kg/TJ,11.492481,Naphtha combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,261dbb67-8e16-3fc2-a5df-78530f26499b -2013,Buenos Aires,I.3.1,1.541925,TJ,CO2,73300.0,kg/TJ,113023.1025,Naphtha combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,c7aaa0e2-fbad-3de6-8b98-12ad6f598433 -2013,Buenos Aires,I.3.1,1.541925,TJ,CH4,3.0,kg/TJ,4.625775,Naphtha combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,dec46fea-36c4-314e-a134-86b1088edcff -2013,Buenos Aires,I.3.1,1.541925,TJ,N2O,0.6,kg/TJ,0.925155,Naphtha combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,1d6021f4-734c-32a1-ae2b-2a7442c7c229 -2013,Córdoba,I.3.1,28.086643,TJ,CO2,69300.0,kg/TJ,1946404.3598999998,Motor Gasoline combustion consumption by petrochemical industries,AR-X,SESCO,annual,kg,6830ab01-d902-36f0-b092-4e2c4b3b718b -2013,Córdoba,I.3.1,28.086643,TJ,CH4,3.0,kg/TJ,84.259929,Motor Gasoline combustion consumption by petrochemical industries,AR-X,SESCO,annual,kg,80c75451-e4fd-3a71-b3d9-7c794528370f -2013,Córdoba,I.3.1,28.086643,TJ,N2O,0.6,kg/TJ,16.851985799999998,Motor Gasoline combustion consumption by petrochemical industries,AR-X,SESCO,annual,kg,624ec27c-9c2e-389c-8987-7743725e1add -2013,Buenos Aires,I.3.1,52.88091,TJ,CO2,69300.0,kg/TJ,3664647.063,Motor Gasoline combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,f1605a02-9c4b-37ad-9146-d1fa42571eff -2013,Buenos Aires,I.3.1,52.88091,TJ,CH4,3.0,kg/TJ,158.64273,Motor Gasoline combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,9b3c100a-9473-3f2c-b861-7459381570f9 -2013,Buenos Aires,I.3.1,52.88091,TJ,N2O,0.6,kg/TJ,31.728545999999998,Motor Gasoline combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,f097b45f-4c2b-3681-9f8c-778c73ca4019 -2013,Santa Fe,I.3.1,4.663904,TJ,CO2,69300.0,kg/TJ,323208.5472,Motor Gasoline combustion consumption by petrochemical industries,AR-S,SESCO,annual,kg,036afb20-974a-37a7-a3ff-7dff43c75529 -2013,Santa Fe,I.3.1,4.663904,TJ,CH4,3.0,kg/TJ,13.991712,Motor Gasoline combustion consumption by petrochemical industries,AR-S,SESCO,annual,kg,4787363a-8bdc-3cbb-aae8-76f5fdc435db -2013,Santa Fe,I.3.1,4.663904,TJ,N2O,0.6,kg/TJ,2.7983423999999997,Motor Gasoline combustion consumption by petrochemical industries,AR-S,SESCO,annual,kg,2a658f50-989a-3348-9b5d-a8a74fcd1b46 -2013,Buenos Aires,I.3.1,438.25791625,TJ,CO2,73300.0,kg/TJ,32124305.261125,Naphtha combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,99fb115b-4fe9-3613-8e1d-68f0101c95f2 -2013,Buenos Aires,I.3.1,438.25791625,TJ,CH4,3.0,kg/TJ,1314.7737487499999,Naphtha combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,12e2a0f1-e941-3616-b8a8-80c6394b1978 -2013,Buenos Aires,I.3.1,438.25791625,TJ,N2O,0.6,kg/TJ,262.95474974999996,Naphtha combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,72ff5b46-f0b0-302d-a50f-0df9fbe7ffd3 -2013,Buenos Aires,I.3.1,183.0033,TJ,CO2,69300.0,kg/TJ,12682128.69,Motor Gasoline combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,3ad2e17f-04be-3897-a12c-f18a9e630a7b -2013,Buenos Aires,I.3.1,183.0033,TJ,CH4,3.0,kg/TJ,549.0099,Motor Gasoline combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,e9b1b49d-9739-3d19-a696-70e8a9cb2a32 -2013,Buenos Aires,I.3.1,183.0033,TJ,N2O,0.6,kg/TJ,109.80198,Motor Gasoline combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,08b70b2f-f58f-3493-bfb8-4c671042de61 -2013,Capital Federal,I.3.1,2.5284,TJ,CO2,74100.0,kg/TJ,187354.44,Gas Oil combustion consumption by petrochemical industries,AR-C,SESCO,annual,kg,74be579b-9890-31f4-bb19-0d781fab6c12 -2013,Capital Federal,I.3.1,2.5284,TJ,CH4,3.0,kg/TJ,7.5852,Gas Oil combustion consumption by petrochemical industries,AR-C,SESCO,annual,kg,b3a3bd59-b6c5-3ae8-a2ff-21868db22c27 -2013,Capital Federal,I.3.1,2.5284,TJ,N2O,0.6,kg/TJ,1.51704,Gas Oil combustion consumption by petrochemical industries,AR-C,SESCO,annual,kg,892861fc-67cd-3bf5-8d26-e6b308271ae0 -2013,Neuquén,I.3.1,2.704958,TJ,CO2,70000.0,kg/TJ,189347.06,Aviation Gasoline combustion consumption by petrochemical industries,AR-Q,SESCO,annual,kg,f8df5035-2af2-3104-83a4-e55e92e0b11d -2013,Neuquén,I.3.1,2.704958,TJ,CH4,3.0,kg/TJ,8.114874,Aviation Gasoline combustion consumption by petrochemical industries,AR-Q,SESCO,annual,kg,62e817e3-e65e-3ef5-b763-09f6f78089ef -2013,Neuquén,I.3.1,2.704958,TJ,N2O,0.6,kg/TJ,1.6229748,Aviation Gasoline combustion consumption by petrochemical industries,AR-Q,SESCO,annual,kg,58015497-2a8e-3968-bbba-116af32fd1ca -2013,Neuquén,I.3.1,0.5418,TJ,CO2,74100.0,kg/TJ,40147.38,Gas Oil combustion consumption by petrochemical industries,AR-Q,SESCO,annual,kg,6b57dee5-386c-38ae-825d-d1d37961b6b1 -2013,Neuquén,I.3.1,0.5418,TJ,CH4,3.0,kg/TJ,1.6254,Gas Oil combustion consumption by petrochemical industries,AR-Q,SESCO,annual,kg,7f7f636c-c727-3851-a8bd-ba20818eee7e -2013,Neuquén,I.3.1,0.5418,TJ,N2O,0.6,kg/TJ,0.32508,Gas Oil combustion consumption by petrochemical industries,AR-Q,SESCO,annual,kg,064176e9-5c26-3b74-9cef-874d9a85c4ca -2013,Neuquén,I.3.1,2.31168,TJ,CO2,74100.0,kg/TJ,171295.48799999998,Gas Oil combustion consumption by petrochemical industries,AR-Q,SESCO,annual,kg,f8941dab-21f1-3c31-af4c-ce83a95ca389 -2013,Neuquén,I.3.1,2.31168,TJ,CH4,3.0,kg/TJ,6.93504,Gas Oil combustion consumption by petrochemical industries,AR-Q,SESCO,annual,kg,cd018c53-d850-3b5b-bd69-45fdf5b600c9 -2013,Neuquén,I.3.1,2.31168,TJ,N2O,0.6,kg/TJ,1.387008,Gas Oil combustion consumption by petrochemical industries,AR-Q,SESCO,annual,kg,10c1bbfc-052f-316a-a286-52b36379756a -2013,Neuquén,I.3.1,0.34265,TJ,CO2,73300.0,kg/TJ,25116.245,Naphtha combustion consumption by petrochemical industries,AR-Q,SESCO,annual,kg,cc9659bd-fd9e-3954-a942-d4c69b694bd9 -2013,Neuquén,I.3.1,0.34265,TJ,CH4,3.0,kg/TJ,1.0279500000000001,Naphtha combustion consumption by petrochemical industries,AR-Q,SESCO,annual,kg,02b618c0-7015-3770-a725-950bf27a104d -2013,Neuquén,I.3.1,0.34265,TJ,N2O,0.6,kg/TJ,0.20559,Naphtha combustion consumption by petrochemical industries,AR-Q,SESCO,annual,kg,bd910ab9-75a4-3557-96fb-6dac7d3d7b6b -2014,Buenos Aires,I.3.1,31.674499999999995,TJ,CO2,69300.0,kg/TJ,2195042.8499999996,Motor Gasoline combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,ffa54a30-0261-32b1-a24f-6b9ec7a5f546 -2014,Buenos Aires,I.3.1,31.674499999999995,TJ,CH4,3.0,kg/TJ,95.02349999999998,Motor Gasoline combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,1b4cef76-40f2-31ab-9636-45195a9567a7 -2014,Buenos Aires,I.3.1,31.674499999999995,TJ,N2O,0.6,kg/TJ,19.004699999999996,Motor Gasoline combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,69b15568-014e-38d5-a21e-ec8363ea7b22 -2014,Buenos Aires,I.3.1,33.483239999999995,TJ,CO2,74100.0,kg/TJ,2481108.084,Gas Oil combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,c73a79c2-e516-3d2c-b0e0-dc376854d6f9 -2014,Buenos Aires,I.3.1,33.483239999999995,TJ,CH4,3.0,kg/TJ,100.44971999999999,Gas Oil combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,dc57695b-9f5e-328c-991c-4c394929079b -2014,Buenos Aires,I.3.1,33.483239999999995,TJ,N2O,0.6,kg/TJ,20.089943999999996,Gas Oil combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,18cf2caa-f0d0-363e-ba29-04ea0c956b61 -2014,Buenos Aires,I.3.1,13.870472,TJ,CO2,73300.0,kg/TJ,1016705.5976,Naphtha combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,3e02a665-1344-3508-bb28-ff95a9511748 -2014,Buenos Aires,I.3.1,13.870472,TJ,CH4,3.0,kg/TJ,41.611416,Naphtha combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,355a1f12-dd5d-3129-b961-cb453c99490e -2014,Buenos Aires,I.3.1,13.870472,TJ,N2O,0.6,kg/TJ,8.3222832,Naphtha combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,612fd046-4523-33c3-a721-9390ae70bd8c -2014,Córdoba,I.3.1,2.843995,TJ,CO2,73300.0,kg/TJ,208464.8335,Naphtha combustion consumption by petrochemical industries,AR-X,SESCO,annual,kg,8c99b0e5-c9a5-344d-8c24-0cc055b371ae -2014,Córdoba,I.3.1,2.843995,TJ,CH4,3.0,kg/TJ,8.531985,Naphtha combustion consumption by petrochemical industries,AR-X,SESCO,annual,kg,a82594ee-c733-3d68-a702-a7ed38103928 -2014,Córdoba,I.3.1,2.843995,TJ,N2O,0.6,kg/TJ,1.706397,Naphtha combustion consumption by petrochemical industries,AR-X,SESCO,annual,kg,711d1e93-88f2-3929-981b-8dfa8b22c234 -2014,Buenos Aires,I.3.1,0.513975,TJ,CO2,73300.0,kg/TJ,37674.3675,Naphtha combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,0d58afc5-40dc-32fb-9df8-3c48919c3468 -2014,Buenos Aires,I.3.1,0.513975,TJ,CH4,3.0,kg/TJ,1.541925,Naphtha combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,d5434efe-2934-3016-8d1b-613a19444f15 -2014,Buenos Aires,I.3.1,0.513975,TJ,N2O,0.6,kg/TJ,0.30838499999999996,Naphtha combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,9eaa2f0e-5227-3a4a-9e52-15a887bf10fe -2014,Buenos Aires,I.3.1,2.2504399999999998,TJ,CO2,69300.0,kg/TJ,155955.492,Motor Gasoline combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,e19bf225-cc69-38da-9081-4622ff7a8b35 -2014,Buenos Aires,I.3.1,2.2504399999999998,TJ,CH4,3.0,kg/TJ,6.75132,Motor Gasoline combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,5f702c99-e279-3f3e-b45a-6c47b5f62339 -2014,Buenos Aires,I.3.1,2.2504399999999998,TJ,N2O,0.6,kg/TJ,1.350264,Motor Gasoline combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,200cb4ab-f49c-3caf-ab7b-640d1662f5ee -2014,Córdoba,I.3.1,66.67327199999998,TJ,CO2,69300.0,kg/TJ,4620457.749599999,Motor Gasoline combustion consumption by petrochemical industries,AR-X,SESCO,annual,kg,ee348b32-c17d-3a8f-98c8-e71f399948ce -2014,Córdoba,I.3.1,66.67327199999998,TJ,CH4,3.0,kg/TJ,200.01981599999993,Motor Gasoline combustion consumption by petrochemical industries,AR-X,SESCO,annual,kg,cc91da7c-e416-3b47-a0b1-bfba9ad793da -2014,Córdoba,I.3.1,66.67327199999998,TJ,N2O,0.6,kg/TJ,40.00396319999999,Motor Gasoline combustion consumption by petrochemical industries,AR-X,SESCO,annual,kg,52179520-fc35-3c7c-90b9-5d7c80e9ba15 -2014,Buenos Aires,I.3.1,469.62546784999995,TJ,CO2,73300.0,kg/TJ,34423546.793405,Naphtha combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,c7b9ba90-53b4-3fc9-9d48-6bdd8db7b259 -2014,Buenos Aires,I.3.1,469.62546784999995,TJ,CH4,3.0,kg/TJ,1408.8764035499998,Naphtha combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,d12eff2f-5fbd-3ed0-9a49-497f860f585c -2014,Buenos Aires,I.3.1,469.62546784999995,TJ,N2O,0.6,kg/TJ,281.77528070999995,Naphtha combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,0076c34a-cad2-36f4-8aea-f7eeac57caef -2014,Buenos Aires,I.3.1,42.1736,TJ,CO2,69300.0,kg/TJ,2922630.48,Motor Gasoline combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,138ad2f2-a7b4-3cd7-a5d8-3b4240a041a6 -2014,Buenos Aires,I.3.1,42.1736,TJ,CH4,3.0,kg/TJ,126.52080000000001,Motor Gasoline combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,ec563490-fc8a-3f43-8b28-382f5cc6d59d -2014,Buenos Aires,I.3.1,42.1736,TJ,N2O,0.6,kg/TJ,25.30416,Motor Gasoline combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,5c781770-e657-347f-8736-57cf159a70e8 -2014,Capital Federal,I.3.1,2.9257199999999997,TJ,CO2,74100.0,kg/TJ,216795.85199999998,Gas Oil combustion consumption by petrochemical industries,AR-C,SESCO,annual,kg,844e5aac-1eb5-351b-b0e9-525c9b411dbd -2014,Capital Federal,I.3.1,2.9257199999999997,TJ,CH4,3.0,kg/TJ,8.777159999999999,Gas Oil combustion consumption by petrochemical industries,AR-C,SESCO,annual,kg,e455137f-8316-34ad-9491-18287e66f7a0 -2014,Capital Federal,I.3.1,2.9257199999999997,TJ,N2O,0.6,kg/TJ,1.7554319999999997,Gas Oil combustion consumption by petrochemical industries,AR-C,SESCO,annual,kg,6fe13a51-fa35-384e-94a7-8c63128443f3 -2015,Buenos Aires,I.3.1,64.72229999999999,TJ,CO2,69300.0,kg/TJ,4485255.39,Motor Gasoline combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,2967acd0-2a1e-317f-9fc8-3ac21bc55be5 -2015,Buenos Aires,I.3.1,64.72229999999999,TJ,CH4,3.0,kg/TJ,194.16689999999997,Motor Gasoline combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,541930d1-f31c-34a7-a16a-f81c85dbfa58 -2015,Buenos Aires,I.3.1,64.72229999999999,TJ,N2O,0.6,kg/TJ,38.83337999999999,Motor Gasoline combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,7c4d34ff-e34f-3e2f-a2ab-2ce34dd4f744 -2015,Buenos Aires,I.3.1,1830.59772,TJ,CO2,74100.0,kg/TJ,135647291.052,Gas Oil combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,c8b46d57-fd2b-3e4a-8891-b729ed3a1939 -2015,Buenos Aires,I.3.1,1830.59772,TJ,CH4,3.0,kg/TJ,5491.79316,Gas Oil combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,9a5f54d8-dcba-3d39-ab4d-85ad77d12a0f -2015,Buenos Aires,I.3.1,1830.59772,TJ,N2O,0.6,kg/TJ,1098.358632,Gas Oil combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,5badeffe-d957-378d-aa54-e0ea211ed4c8 -2015,Buenos Aires,I.3.1,116.88431999999999,TJ,CO2,74100.0,kg/TJ,8661128.112,Gas Oil combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,60ef1ac7-0388-3535-a7d1-bffe45e00b8f -2015,Buenos Aires,I.3.1,116.88431999999999,TJ,CH4,3.0,kg/TJ,350.65295999999995,Gas Oil combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,cb587723-d48a-3504-bf91-763eff2e6ec4 -2015,Buenos Aires,I.3.1,116.88431999999999,TJ,N2O,0.6,kg/TJ,70.130592,Gas Oil combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,131e5e1e-2fe5-3f26-8bf2-64d476ee39b3 -2015,Buenos Aires,I.3.1,5.850257999999999,TJ,CO2,71500.0,kg/TJ,418293.4469999999,Jet Kerosene combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,4fd13449-99c4-39f5-96a5-cb136c369a50 -2015,Buenos Aires,I.3.1,5.850257999999999,TJ,CH4,3.0,kg/TJ,17.550773999999997,Jet Kerosene combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,55a574ee-63af-3bdd-b500-55c7fe1486cc -2015,Buenos Aires,I.3.1,5.850257999999999,TJ,N2O,0.6,kg/TJ,3.5101547999999996,Jet Kerosene combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,57f25e47-283a-3286-8ee1-a7f9070732fb -2015,Buenos Aires,I.3.1,562.734095,TJ,CO2,73300.0,kg/TJ,41248409.1635,Naphtha combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,07ee884b-dacf-3d8a-95d3-6eee350a2e32 -2015,Buenos Aires,I.3.1,562.734095,TJ,CH4,3.0,kg/TJ,1688.202285,Naphtha combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,2d01ca25-a90c-3b6a-88ba-e71949181166 -2015,Buenos Aires,I.3.1,562.734095,TJ,N2O,0.6,kg/TJ,337.640457,Naphtha combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,f0aa7380-6e34-39bb-88b2-e08624edc2b4 -2015,Buenos Aires,I.3.1,48.553505,TJ,CO2,73300.0,kg/TJ,3558971.9165000003,Naphtha combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,4d3e6ad3-95f3-3e8c-8bc4-f8754d86c720 -2015,Buenos Aires,I.3.1,48.553505,TJ,CH4,3.0,kg/TJ,145.660515,Naphtha combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,b11fd33d-4466-324d-961c-7d344d2d897c -2015,Buenos Aires,I.3.1,48.553505,TJ,N2O,0.6,kg/TJ,29.132103,Naphtha combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,b93c6662-cf52-3393-b077-601f5c858fea -2015,Buenos Aires,I.3.1,4.479616,TJ,CO2,69300.0,kg/TJ,310437.3888,Motor Gasoline combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,04b7bc36-0cb4-3760-84db-00c25532068c -2015,Buenos Aires,I.3.1,4.479616,TJ,CH4,3.0,kg/TJ,13.438848,Motor Gasoline combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,020a9e21-bd12-38a8-80d7-20b0af22a545 -2015,Buenos Aires,I.3.1,4.479616,TJ,N2O,0.6,kg/TJ,2.6877695999999998,Motor Gasoline combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,59120422-7996-30da-b2af-799012c57022 -2015,Buenos Aires,I.3.1,1309.0782204499997,TJ,CO2,73300.0,kg/TJ,95955433.55898498,Naphtha combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,a5bd06bf-fc14-3f24-9862-088db96b6c2c -2015,Buenos Aires,I.3.1,1309.0782204499997,TJ,CH4,3.0,kg/TJ,3927.234661349999,Naphtha combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,a2a184df-6800-3ef7-9f48-fb565cc1472f -2015,Buenos Aires,I.3.1,1309.0782204499997,TJ,N2O,0.6,kg/TJ,785.4469322699998,Naphtha combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,1e35ff17-1957-3540-bcea-1a915a987f06 -2015,Buenos Aires,I.3.1,41.5091,TJ,CO2,69300.0,kg/TJ,2876580.63,Motor Gasoline combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,0743bd13-7a4e-3d4f-9e84-b54595a3fed3 -2015,Buenos Aires,I.3.1,41.5091,TJ,CH4,3.0,kg/TJ,124.5273,Motor Gasoline combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,6f3a5b41-185f-3b2f-9f49-4c273408e345 -2015,Buenos Aires,I.3.1,41.5091,TJ,N2O,0.6,kg/TJ,24.905459999999998,Motor Gasoline combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,524a2787-41a6-33e3-909e-ca19e0e85252 -2015,Buenos Aires,I.3.1,1.0836,TJ,CO2,74100.0,kg/TJ,80294.76,Gas Oil combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,55176457-cb25-3049-8c4f-35d4c082a082 -2015,Buenos Aires,I.3.1,1.0836,TJ,CH4,3.0,kg/TJ,3.2508,Gas Oil combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,5434ef6f-4312-3865-ac2b-9a54ab2b5bed -2015,Buenos Aires,I.3.1,1.0836,TJ,N2O,0.6,kg/TJ,0.65016,Gas Oil combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,46bcfc91-1927-3cfe-8fb9-05fd769757dc -2015,Capital Federal,I.3.1,2.3478,TJ,CO2,74100.0,kg/TJ,173971.97999999998,Gas Oil combustion consumption by petrochemical industries,AR-C,SESCO,annual,kg,46f5160d-9457-38c3-87d8-ec2203319c46 -2015,Capital Federal,I.3.1,2.3478,TJ,CH4,3.0,kg/TJ,7.0434,Gas Oil combustion consumption by petrochemical industries,AR-C,SESCO,annual,kg,02ae970b-ec54-3591-b0b4-b5ec294b202c -2015,Capital Federal,I.3.1,2.3478,TJ,N2O,0.6,kg/TJ,1.40868,Gas Oil combustion consumption by petrochemical industries,AR-C,SESCO,annual,kg,3ff0feb0-7237-3e81-b0e7-e43fa3a476d3 -2016,Buenos Aires,I.3.1,19.5363,TJ,CO2,69300.0,kg/TJ,1353865.59,Motor Gasoline combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,67776745-117d-36bb-8a97-0c0d6922fc37 -2016,Buenos Aires,I.3.1,19.5363,TJ,CH4,3.0,kg/TJ,58.608900000000006,Motor Gasoline combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,ad5745fa-8e64-36b6-8d5a-4954751dd113 -2016,Buenos Aires,I.3.1,19.5363,TJ,N2O,0.6,kg/TJ,11.72178,Motor Gasoline combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,0d659777-a9d3-3a10-a98c-dad80c27f9cf -2016,Buenos Aires,I.3.1,9.318959999999999,TJ,CO2,74100.0,kg/TJ,690534.9359999999,Gas Oil combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,a696f293-9ec8-32a1-9784-f5091083715a -2016,Buenos Aires,I.3.1,9.318959999999999,TJ,CH4,3.0,kg/TJ,27.956879999999998,Gas Oil combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,bbcf613e-5e37-3556-9fa5-26502761f044 -2016,Buenos Aires,I.3.1,9.318959999999999,TJ,N2O,0.6,kg/TJ,5.5913759999999995,Gas Oil combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,9e1dc308-c873-3d5a-a797-ca8247b2bca6 -2016,San Luis,I.3.1,2.6367599999999998,TJ,CO2,74100.0,kg/TJ,195383.916,Gas Oil combustion consumption by petrochemical industries,AR-D,SESCO,annual,kg,9c8989c5-eb6b-3868-b307-2149eca7b4c9 -2016,San Luis,I.3.1,2.6367599999999998,TJ,CH4,3.0,kg/TJ,7.910279999999999,Gas Oil combustion consumption by petrochemical industries,AR-D,SESCO,annual,kg,79460aa2-ee94-347d-8279-440bdce5f440 -2016,San Luis,I.3.1,2.6367599999999998,TJ,N2O,0.6,kg/TJ,1.582056,Gas Oil combustion consumption by petrochemical industries,AR-D,SESCO,annual,kg,97563799-db9b-386b-a0de-5c2fca576b10 -2016,Capital Federal,I.3.1,2.799317,TJ,CO2,71500.0,kg/TJ,200151.16549999997,Jet Kerosene combustion consumption by petrochemical industries,AR-C,SESCO,annual,kg,328b56c0-33ee-3cb1-8765-01d729dfd36e -2016,Capital Federal,I.3.1,2.799317,TJ,CH4,3.0,kg/TJ,8.397950999999999,Jet Kerosene combustion consumption by petrochemical industries,AR-C,SESCO,annual,kg,43ebb573-ffbc-3088-adf4-fb83e991c79e -2016,Capital Federal,I.3.1,2.799317,TJ,N2O,0.6,kg/TJ,1.6795901999999998,Jet Kerosene combustion consumption by petrochemical industries,AR-C,SESCO,annual,kg,f9f262ca-989a-3356-aea3-f2b14eaaacdd -2016,Buenos Aires,I.3.1,28.017535,TJ,CO2,69300.0,kg/TJ,1941615.1755,Motor Gasoline combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,0f4164ce-e8d6-3d2b-b83b-6972085a17ed -2016,Buenos Aires,I.3.1,28.017535,TJ,CH4,3.0,kg/TJ,84.052605,Motor Gasoline combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,d463775b-c946-341e-83ed-17cd88604164 -2016,Buenos Aires,I.3.1,28.017535,TJ,N2O,0.6,kg/TJ,16.810520999999998,Motor Gasoline combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,cfb4393d-b4b2-394b-bf1c-84f4c2974e62 -2016,Buenos Aires,I.3.1,1240.74832805,TJ,CO2,73300.0,kg/TJ,90946852.44606501,Naphtha combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,e4de054b-1e54-39ef-bbdc-21bd0625feac -2016,Buenos Aires,I.3.1,1240.74832805,TJ,CH4,3.0,kg/TJ,3722.24498415,Naphtha combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,7e0473bd-fba9-342d-9f45-41a1efd9d792 -2016,Buenos Aires,I.3.1,1240.74832805,TJ,N2O,0.6,kg/TJ,744.44899683,Naphtha combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,61694da0-e738-318b-a5ea-654a0323265d -2016,Buenos Aires,I.3.1,18.9604,TJ,CO2,69300.0,kg/TJ,1313955.72,Motor Gasoline combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,a0737e12-179b-305e-8caf-f24f7efbbb7f -2016,Buenos Aires,I.3.1,18.9604,TJ,CH4,3.0,kg/TJ,56.8812,Motor Gasoline combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,d847da44-6725-3855-a133-cf3e431d3753 -2016,Buenos Aires,I.3.1,18.9604,TJ,N2O,0.6,kg/TJ,11.37624,Motor Gasoline combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,2842c178-726c-31f1-8eab-f8c9257d8bc4 -2016,Capital Federal,I.3.1,2.31168,TJ,CO2,74100.0,kg/TJ,171295.48799999998,Gas Oil combustion consumption by petrochemical industries,AR-C,SESCO,annual,kg,fbf8fb9b-c812-3757-ab22-0aa463c99018 -2016,Capital Federal,I.3.1,2.31168,TJ,CH4,3.0,kg/TJ,6.93504,Gas Oil combustion consumption by petrochemical industries,AR-C,SESCO,annual,kg,9186dff6-8ec6-3e5c-9fdc-d345ca5f2d2b -2016,Capital Federal,I.3.1,2.31168,TJ,N2O,0.6,kg/TJ,1.387008,Gas Oil combustion consumption by petrochemical industries,AR-C,SESCO,annual,kg,1b4ae7c9-d341-3d34-b634-fdd7105f1b8b -2017,San Luis,I.3.1,9.10224,TJ,CO2,74100.0,kg/TJ,674475.984,Gas Oil combustion consumption by petrochemical industries,AR-D,SESCO,annual,kg,d49ae266-0b4a-32f4-9538-7536f1c4a2e5 -2017,San Luis,I.3.1,9.10224,TJ,CH4,3.0,kg/TJ,27.30672,Gas Oil combustion consumption by petrochemical industries,AR-D,SESCO,annual,kg,4e72ce10-0dba-3264-860d-f3806c269f60 -2017,San Luis,I.3.1,9.10224,TJ,N2O,0.6,kg/TJ,5.4613439999999995,Gas Oil combustion consumption by petrochemical industries,AR-D,SESCO,annual,kg,f72a830d-b966-3530-a1ac-14c6445c7380 -2017,Capital Federal,I.3.1,10.316583999999999,TJ,CO2,71500.0,kg/TJ,737635.7559999999,Jet Kerosene combustion consumption by petrochemical industries,AR-C,SESCO,annual,kg,47cd41f8-913b-3271-808a-18b4d60238fb -2017,Capital Federal,I.3.1,10.316583999999999,TJ,CH4,3.0,kg/TJ,30.949751999999997,Jet Kerosene combustion consumption by petrochemical industries,AR-C,SESCO,annual,kg,597d370b-8b08-314e-91a7-b6bc9e397282 -2017,Capital Federal,I.3.1,10.316583999999999,TJ,N2O,0.6,kg/TJ,6.189950399999999,Jet Kerosene combustion consumption by petrochemical industries,AR-C,SESCO,annual,kg,51d33187-a94a-3805-9572-fd8abfc373a4 -2017,Santa Cruz,I.3.1,39.098419080000006,TJ,CO2,74100.0,kg/TJ,2897192.8538280004,Gas Oil combustion consumption by petrochemical industries,AR-Z,SESCO,annual,kg,38b89409-ece1-3d5e-a20e-fd37228457ea -2017,Santa Cruz,I.3.1,39.098419080000006,TJ,CH4,3.0,kg/TJ,117.29525724000001,Gas Oil combustion consumption by petrochemical industries,AR-Z,SESCO,annual,kg,b0a4d2ea-0dfd-3478-b7ff-24d069d3c735 -2017,Santa Cruz,I.3.1,39.098419080000006,TJ,N2O,0.6,kg/TJ,23.459051448000004,Gas Oil combustion consumption by petrochemical industries,AR-Z,SESCO,annual,kg,f9f6b719-34f1-3ddf-a69d-47f1267314f3 -2017,Santa Cruz,I.3.1,0.18164747999999997,TJ,CO2,74100.0,kg/TJ,13460.078267999997,Gas Oil combustion consumption by petrochemical industries,AR-Z,SESCO,annual,kg,8f04b000-ebee-3fad-a254-72beaf4ccf13 -2017,Santa Cruz,I.3.1,0.18164747999999997,TJ,CH4,3.0,kg/TJ,0.5449424399999999,Gas Oil combustion consumption by petrochemical industries,AR-Z,SESCO,annual,kg,989ef071-eebe-3dab-8abb-8882051aa174 -2017,Santa Cruz,I.3.1,0.18164747999999997,TJ,N2O,0.6,kg/TJ,0.10898848799999998,Gas Oil combustion consumption by petrochemical industries,AR-Z,SESCO,annual,kg,e68ccb64-9426-3b71-b3af-cd981380edef -2017,Santa Cruz,I.3.1,0.41316737,TJ,CO2,73300.0,kg/TJ,30285.168221,Naphtha combustion consumption by petrochemical industries,AR-Z,SESCO,annual,kg,9312622e-68ef-315a-a3b2-830747be94b7 -2017,Santa Cruz,I.3.1,0.41316737,TJ,CH4,3.0,kg/TJ,1.2395021099999999,Naphtha combustion consumption by petrochemical industries,AR-Z,SESCO,annual,kg,9d5e696a-15af-336a-a004-3b06ca37e89e -2017,Santa Cruz,I.3.1,0.41316737,TJ,N2O,0.6,kg/TJ,0.24790042199999998,Naphtha combustion consumption by petrochemical industries,AR-Z,SESCO,annual,kg,f9cedf50-9428-32d5-89d8-4712e9fbb7ad -2017,Buenos Aires,I.3.1,46.30679,TJ,CO2,69300.0,kg/TJ,3209060.547,Motor Gasoline combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,5cb15411-0fb8-31a1-a365-5a4bfcb7443d -2017,Buenos Aires,I.3.1,46.30679,TJ,CH4,3.0,kg/TJ,138.92037,Motor Gasoline combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,8ff2a866-4f9e-34aa-ab3b-37b44101c219 -2017,Buenos Aires,I.3.1,46.30679,TJ,N2O,0.6,kg/TJ,27.784074,Motor Gasoline combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,584c132c-c3f1-3bc6-bcc4-2fcc780ecb47 -2017,Buenos Aires,I.3.1,144.86111254999997,TJ,CO2,73300.0,kg/TJ,10618319.549914999,Naphtha combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,9803b159-5702-3b70-8a2b-e05dc238bb72 -2017,Buenos Aires,I.3.1,144.86111254999997,TJ,CH4,3.0,kg/TJ,434.5833376499999,Naphtha combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,f071a5ab-070a-3649-b1c4-c53aa051b39f -2017,Buenos Aires,I.3.1,144.86111254999997,TJ,N2O,0.6,kg/TJ,86.91666752999998,Naphtha combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,e3980ee2-aae0-3303-bfdb-cef2721f69a7 -2017,Buenos Aires,I.3.1,12.0496,TJ,CO2,69300.0,kg/TJ,835037.28,Motor Gasoline combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,0c23bba5-392f-320f-8e11-2270b4fa00fd -2017,Buenos Aires,I.3.1,12.0496,TJ,CH4,3.0,kg/TJ,36.1488,Motor Gasoline combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,22b4a0d6-bb95-332b-ae47-ecc71bdf20a4 -2017,Buenos Aires,I.3.1,12.0496,TJ,N2O,0.6,kg/TJ,7.22976,Motor Gasoline combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,aac2063a-0566-3c77-bbd1-844ebf48df31 -2017,Capital Federal,I.3.1,2.5284,TJ,CO2,74100.0,kg/TJ,187354.44,Gas Oil combustion consumption by petrochemical industries,AR-C,SESCO,annual,kg,74be579b-9890-31f4-bb19-0d781fab6c12 -2017,Capital Federal,I.3.1,2.5284,TJ,CH4,3.0,kg/TJ,7.5852,Gas Oil combustion consumption by petrochemical industries,AR-C,SESCO,annual,kg,b3a3bd59-b6c5-3ae8-a2ff-21868db22c27 -2017,Capital Federal,I.3.1,2.5284,TJ,N2O,0.6,kg/TJ,1.51704,Gas Oil combustion consumption by petrochemical industries,AR-C,SESCO,annual,kg,892861fc-67cd-3bf5-8d26-e6b308271ae0 -2018,San Luis,I.3.1,3.90096,TJ,CO2,74100.0,kg/TJ,289061.136,Gas Oil combustion consumption by petrochemical industries,AR-D,SESCO,annual,kg,1068470e-690c-32df-a951-9a99e115df7a -2018,San Luis,I.3.1,3.90096,TJ,CH4,3.0,kg/TJ,11.70288,Gas Oil combustion consumption by petrochemical industries,AR-D,SESCO,annual,kg,4ca96629-f718-3e46-b19f-250534b79a5b -2018,San Luis,I.3.1,3.90096,TJ,N2O,0.6,kg/TJ,2.340576,Gas Oil combustion consumption by petrochemical industries,AR-D,SESCO,annual,kg,3a31e200-9710-38d4-a0c1-bc2b500f8c5a -2018,Capital Federal,I.3.1,2.51624,TJ,CO2,71500.0,kg/TJ,179911.15999999997,Jet Kerosene combustion consumption by petrochemical industries,AR-C,SESCO,annual,kg,3f0c2fab-ed26-3a66-b74c-609eb76cf471 -2018,Capital Federal,I.3.1,2.51624,TJ,CH4,3.0,kg/TJ,7.548719999999999,Jet Kerosene combustion consumption by petrochemical industries,AR-C,SESCO,annual,kg,d87e8113-3d16-3841-98d7-7cafe389e3db -2018,Capital Federal,I.3.1,2.51624,TJ,N2O,0.6,kg/TJ,1.5097439999999998,Jet Kerosene combustion consumption by petrochemical industries,AR-C,SESCO,annual,kg,fe58e32a-c7a2-318a-abaf-4c16a6b4420d -2018,San Luis,I.3.1,5.30964,TJ,CO2,74100.0,kg/TJ,393444.324,Gas Oil combustion consumption by petrochemical industries,AR-D,SESCO,annual,kg,f6a38ac4-24c7-3e1f-992a-65cd619eb287 -2018,San Luis,I.3.1,5.30964,TJ,CH4,3.0,kg/TJ,15.92892,Gas Oil combustion consumption by petrochemical industries,AR-D,SESCO,annual,kg,0e207ede-1c87-35e0-a419-03e8085dc0d3 -2018,San Luis,I.3.1,5.30964,TJ,N2O,0.6,kg/TJ,3.185784,Gas Oil combustion consumption by petrochemical industries,AR-D,SESCO,annual,kg,5791d9b3-d3c8-3085-8320-5d336af1571f -2018,Capital Federal,I.3.1,2.20171,TJ,CO2,71500.0,kg/TJ,157422.26499999998,Jet Kerosene combustion consumption by petrochemical industries,AR-C,SESCO,annual,kg,4395b925-557e-3a41-8502-31b192ed04fd -2018,Capital Federal,I.3.1,2.20171,TJ,CH4,3.0,kg/TJ,6.605129999999999,Jet Kerosene combustion consumption by petrochemical industries,AR-C,SESCO,annual,kg,bb657e57-16cd-38c8-96b1-4e43d4a500aa -2018,Capital Federal,I.3.1,2.20171,TJ,N2O,0.6,kg/TJ,1.3210259999999998,Jet Kerosene combustion consumption by petrochemical industries,AR-C,SESCO,annual,kg,88fdc312-1be7-3099-b038-587be422092d -2018,Buenos Aires,I.3.1,33.777864,TJ,CO2,69300.0,kg/TJ,2340805.9752,Motor Gasoline combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,ffadf701-35ea-3e03-bd0a-8da4c93ed175 -2018,Buenos Aires,I.3.1,33.777864,TJ,CH4,3.0,kg/TJ,101.33359200000001,Motor Gasoline combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,81295ed5-def5-38ff-86fa-b73f5a6769af -2018,Buenos Aires,I.3.1,33.777864,TJ,N2O,0.6,kg/TJ,20.2667184,Motor Gasoline combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,954650f2-0fff-34bd-96da-b5608248973d -2018,Capital Federal,I.3.1,1.30032,TJ,CO2,74100.0,kg/TJ,96353.712,Gas Oil combustion consumption by petrochemical industries,AR-C,SESCO,annual,kg,effc26e8-1e44-3feb-89c8-1931c98daa56 -2018,Capital Federal,I.3.1,1.30032,TJ,CH4,3.0,kg/TJ,3.9009599999999995,Gas Oil combustion consumption by petrochemical industries,AR-C,SESCO,annual,kg,85b89b6f-aa07-3a54-aa06-59cf67683103 -2018,Capital Federal,I.3.1,1.30032,TJ,N2O,0.6,kg/TJ,0.7801919999999999,Gas Oil combustion consumption by petrochemical industries,AR-C,SESCO,annual,kg,e649779f-b78a-3802-8571-477ae4de4a85 -2019,Buenos Aires,I.3.1,27.234479999999998,TJ,CO2,74100.0,kg/TJ,2018074.9679999999,Gas Oil combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,42e3c708-5be6-3955-b9d0-1e43173d8e4a -2019,Buenos Aires,I.3.1,27.234479999999998,TJ,CH4,3.0,kg/TJ,81.70344,Gas Oil combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,779d070f-aa55-3493-8067-16db76da7b1b -2019,Buenos Aires,I.3.1,27.234479999999998,TJ,N2O,0.6,kg/TJ,16.340687999999997,Gas Oil combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,6e887437-fb52-3871-a3c3-62f008b82bea -2019,Capital Federal,I.3.1,1.4447999999999999,TJ,CO2,74100.0,kg/TJ,107059.68,Gas Oil combustion consumption by petrochemical industries,AR-C,SESCO,annual,kg,bacc9905-1153-32b2-8303-b1ad786252e3 -2019,Capital Federal,I.3.1,1.4447999999999999,TJ,CH4,3.0,kg/TJ,4.3344,Gas Oil combustion consumption by petrochemical industries,AR-C,SESCO,annual,kg,1bbb706e-4fe0-3b29-9ca1-a842e7b3e517 -2019,Capital Federal,I.3.1,1.4447999999999999,TJ,N2O,0.6,kg/TJ,0.8668799999999999,Gas Oil combustion consumption by petrochemical industries,AR-C,SESCO,annual,kg,ad7af4ad-ad81-3d0c-91b2-3aa3b7360f60 -2019,Buenos Aires,I.3.1,5.276809999999999,TJ,CO2,73300.0,kg/TJ,386790.17299999995,Naphtha combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,70c72495-c77d-3b67-9502-f685c0e2f2c9 -2019,Buenos Aires,I.3.1,5.276809999999999,TJ,CH4,3.0,kg/TJ,15.830429999999998,Naphtha combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,6b14320c-d4e1-3b7d-ae4d-e90254e34107 -2019,Buenos Aires,I.3.1,5.276809999999999,TJ,N2O,0.6,kg/TJ,3.1660859999999995,Naphtha combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,50d105d1-9816-3755-aa08-b5ccc9aa227b -2019,Buenos Aires,I.3.1,31.046768999999994,TJ,CO2,69300.0,kg/TJ,2151541.0916999998,Motor Gasoline combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,27c7b8a1-6182-3e38-92cd-6b41ee1e0bfb -2019,Buenos Aires,I.3.1,31.046768999999994,TJ,CH4,3.0,kg/TJ,93.14030699999998,Motor Gasoline combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,401a269a-20f0-30bc-8f6c-f652f03abb37 -2019,Buenos Aires,I.3.1,31.046768999999994,TJ,N2O,0.6,kg/TJ,18.628061399999996,Motor Gasoline combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,3c85451d-932b-3d9e-9964-8a41a79b6cb5 -2019,Capital Federal,I.3.1,1.6254,TJ,CO2,74100.0,kg/TJ,120442.14,Gas Oil combustion consumption by petrochemical industries,AR-C,SESCO,annual,kg,1dbfdf65-3f0c-3d37-ad5f-35cb95e15ada -2019,Capital Federal,I.3.1,1.6254,TJ,CH4,3.0,kg/TJ,4.8762,Gas Oil combustion consumption by petrochemical industries,AR-C,SESCO,annual,kg,e01491ef-2a74-344d-a009-58e28f53f974 -2019,Capital Federal,I.3.1,1.6254,TJ,N2O,0.6,kg/TJ,0.9752399999999999,Gas Oil combustion consumption by petrochemical industries,AR-C,SESCO,annual,kg,4e48569b-f0af-3258-b222-27180876e47b -2019,Neuquén,I.3.1,0.6530134799999999,TJ,CO2,74100.0,kg/TJ,48388.29886799999,Gas Oil combustion consumption by petrochemical industries,AR-Q,SESCO,annual,kg,e6d1e476-39bc-3557-b09c-b0d44915b467 -2019,Neuquén,I.3.1,0.6530134799999999,TJ,CH4,3.0,kg/TJ,1.9590404399999999,Gas Oil combustion consumption by petrochemical industries,AR-Q,SESCO,annual,kg,ce7c16aa-a5a6-38ce-9231-72d189255a56 -2019,Neuquén,I.3.1,0.6530134799999999,TJ,N2O,0.6,kg/TJ,0.39180808799999994,Gas Oil combustion consumption by petrochemical industries,AR-Q,SESCO,annual,kg,05e40115-28e7-3223-aaa8-3158594a08f2 -2019,Neuquén,I.3.1,4.158160544999999,TJ,CO2,73300.0,kg/TJ,304793.16794849996,Naphtha combustion consumption by petrochemical industries,AR-Q,SESCO,annual,kg,651c83d8-dfb9-343c-875f-eb3176527984 -2019,Neuquén,I.3.1,4.158160544999999,TJ,CH4,3.0,kg/TJ,12.474481634999998,Naphtha combustion consumption by petrochemical industries,AR-Q,SESCO,annual,kg,2cc0de76-6a10-38b3-a1c1-bd7c3846a525 -2019,Neuquén,I.3.1,4.158160544999999,TJ,N2O,0.6,kg/TJ,2.4948963269999997,Naphtha combustion consumption by petrochemical industries,AR-Q,SESCO,annual,kg,4329a72d-bb5a-3b01-b9e9-67cea193deda -2019,Neuquén,I.3.1,0.3439863349999999,TJ,CO2,73300.0,kg/TJ,25214.198355499993,Naphtha combustion consumption by petrochemical industries,AR-Q,SESCO,annual,kg,953aa405-1fda-3c89-b005-4c4fa921ab16 -2019,Neuquén,I.3.1,0.3439863349999999,TJ,CH4,3.0,kg/TJ,1.0319590049999998,Naphtha combustion consumption by petrochemical industries,AR-Q,SESCO,annual,kg,93ef1dd1-3913-3962-bb8d-1ef11f4874a0 -2019,Neuquén,I.3.1,0.3439863349999999,TJ,N2O,0.6,kg/TJ,0.20639180099999996,Naphtha combustion consumption by petrochemical industries,AR-Q,SESCO,annual,kg,b64834a8-8025-3609-a073-6bbdbc7071a9 -2020,Santa Fe,I.3.1,22.353337,TJ,CO2,69300.0,kg/TJ,1549086.2541,Motor Gasoline combustion consumption by petrochemical industries,AR-S,SESCO,annual,kg,f8cf024d-6b80-332e-bfa3-376e91a3d2be -2020,Santa Fe,I.3.1,22.353337,TJ,CH4,3.0,kg/TJ,67.060011,Motor Gasoline combustion consumption by petrochemical industries,AR-S,SESCO,annual,kg,096fbc4a-9125-3725-9ebc-90457fbe4f6a -2020,Santa Fe,I.3.1,22.353337,TJ,N2O,0.6,kg/TJ,13.4120022,Motor Gasoline combustion consumption by petrochemical industries,AR-S,SESCO,annual,kg,1d2861fa-0790-349e-8614-e2f749fb39ad -2020,Buenos Aires,I.3.1,11.59452,TJ,CO2,74100.0,kg/TJ,859153.9319999999,Gas Oil combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,42dbda09-c0b9-3e28-80fe-a2ed4b5c846f -2020,Buenos Aires,I.3.1,11.59452,TJ,CH4,3.0,kg/TJ,34.783559999999994,Gas Oil combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,28acefcf-de39-3cc4-849a-c9cce2c4e1fc -2020,Buenos Aires,I.3.1,11.59452,TJ,N2O,0.6,kg/TJ,6.956712,Gas Oil combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,a6c20b8f-d41b-3104-a878-51b9994b2c37 -2020,Capital Federal,I.3.1,1.2642,TJ,CO2,74100.0,kg/TJ,93677.22,Gas Oil combustion consumption by petrochemical industries,AR-C,SESCO,annual,kg,d8154348-900e-3622-a481-c899293659f7 -2020,Capital Federal,I.3.1,1.2642,TJ,CH4,3.0,kg/TJ,3.7926,Gas Oil combustion consumption by petrochemical industries,AR-C,SESCO,annual,kg,aab08a0b-9872-3024-ae46-8b1a8392eff5 -2020,Capital Federal,I.3.1,1.2642,TJ,N2O,0.6,kg/TJ,0.75852,Gas Oil combustion consumption by petrochemical industries,AR-C,SESCO,annual,kg,8a38b426-eb5c-384b-ac96-7b91e410d623 -2020,La Rioja,I.3.1,0.50568,TJ,CO2,74100.0,kg/TJ,37470.888,Gas Oil combustion consumption by petrochemical industries,AR-F,SESCO,annual,kg,60759001-0c8e-3de3-b13a-3fe4b9843bfc -2020,La Rioja,I.3.1,0.50568,TJ,CH4,3.0,kg/TJ,1.5170400000000002,Gas Oil combustion consumption by petrochemical industries,AR-F,SESCO,annual,kg,904ccdbe-825e-3d8c-b409-8cb1c574c2c2 -2020,La Rioja,I.3.1,0.50568,TJ,N2O,0.6,kg/TJ,0.303408,Gas Oil combustion consumption by petrochemical industries,AR-F,SESCO,annual,kg,ff51d51a-44fa-30c5-816f-e0c25da8b3ea -2020,Buenos Aires,I.3.1,0.50568,TJ,CO2,74100.0,kg/TJ,37470.888,Gas Oil combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,62beaf4d-b4af-3a6f-b946-c95ad8d1e0b7 -2020,Buenos Aires,I.3.1,0.50568,TJ,CH4,3.0,kg/TJ,1.5170400000000002,Gas Oil combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,1bf22369-9088-3429-8d2b-77e8c40e499e -2020,Buenos Aires,I.3.1,0.50568,TJ,N2O,0.6,kg/TJ,0.303408,Gas Oil combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,508bf9bd-f23a-3e05-bedb-dcebe17b03fd -2020,Buenos Aires,I.3.1,1.3706,TJ,CO2,73300.0,kg/TJ,100464.98,Naphtha combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,cd1a6c8f-eee0-30a4-9490-8b4c03e20128 -2020,Buenos Aires,I.3.1,1.3706,TJ,CH4,3.0,kg/TJ,4.111800000000001,Naphtha combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,4cf2fa53-7a34-38e4-a941-f8bffba7d1d2 -2020,Buenos Aires,I.3.1,1.3706,TJ,N2O,0.6,kg/TJ,0.82236,Naphtha combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,f5a19303-519a-30f0-8818-fed306415fb4 -2020,Buenos Aires,I.3.1,7.186789,TJ,CO2,69300.0,kg/TJ,498044.4777,Motor Gasoline combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,f629e6bd-1627-3383-acbc-e06ce31edfc1 -2020,Buenos Aires,I.3.1,7.186789,TJ,CH4,3.0,kg/TJ,21.560367,Motor Gasoline combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,ffcb2ceb-4015-3269-9146-29b7ba28a459 -2020,Buenos Aires,I.3.1,7.186789,TJ,N2O,0.6,kg/TJ,4.3120734,Motor Gasoline combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,1e543a39-1aa9-34e0-9e37-35d2894f8bd8 -2020,Jujuy,I.3.1,0.25284,TJ,CO2,74100.0,kg/TJ,18735.444,Gas Oil combustion consumption by petrochemical industries,AR-Y,SESCO,annual,kg,b9b84e85-9e59-376c-abd1-93dc30371bcf -2020,Jujuy,I.3.1,0.25284,TJ,CH4,3.0,kg/TJ,0.7585200000000001,Gas Oil combustion consumption by petrochemical industries,AR-Y,SESCO,annual,kg,a4a0d858-68f8-3ab2-8fa5-274b21365d32 -2020,Jujuy,I.3.1,0.25284,TJ,N2O,0.6,kg/TJ,0.151704,Gas Oil combustion consumption by petrochemical industries,AR-Y,SESCO,annual,kg,f2d6983e-7bae-3e2a-b028-07f5861c13ee -2020,Jujuy,I.3.1,3.460765,TJ,CO2,73300.0,kg/TJ,253674.0745,Naphtha combustion consumption by petrochemical industries,AR-Y,SESCO,annual,kg,1ec7f2c5-55cc-30b6-ac1f-4d2513859e8c -2020,Jujuy,I.3.1,3.460765,TJ,CH4,3.0,kg/TJ,10.382295,Naphtha combustion consumption by petrochemical industries,AR-Y,SESCO,annual,kg,d55b5dfd-e6f3-301d-a1e7-3bb0d91f13b0 -2020,Jujuy,I.3.1,3.460765,TJ,N2O,0.6,kg/TJ,2.076459,Naphtha combustion consumption by petrochemical industries,AR-Y,SESCO,annual,kg,d1603b8f-6859-3555-bd70-5ab3fc15c3d2 -2020,Buenos Aires,I.3.1,4.5629,TJ,CO2,69300.0,kg/TJ,316208.97,Motor Gasoline combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,94f76054-960d-3740-8e1c-62526446c784 -2020,Buenos Aires,I.3.1,4.5629,TJ,CH4,3.0,kg/TJ,13.6887,Motor Gasoline combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,42b2cf22-2b60-3000-a390-d7ef09902dec -2020,Buenos Aires,I.3.1,4.5629,TJ,N2O,0.6,kg/TJ,2.73774,Motor Gasoline combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,da2765db-7fb4-34ec-af6a-981823af551b -2020,Capital Federal,I.3.1,98.6118,TJ,CO2,69300.0,kg/TJ,6833797.74,Motor Gasoline combustion consumption by petrochemical industries,AR-C,SESCO,annual,kg,4d6b7cf9-640a-3ca2-b27c-c3422b79fa9a -2020,Capital Federal,I.3.1,98.6118,TJ,CH4,3.0,kg/TJ,295.8354,Motor Gasoline combustion consumption by petrochemical industries,AR-C,SESCO,annual,kg,df564e37-0144-35b8-8442-119eef670c5d -2020,Capital Federal,I.3.1,98.6118,TJ,N2O,0.6,kg/TJ,59.16708,Motor Gasoline combustion consumption by petrochemical industries,AR-C,SESCO,annual,kg,80a94bb7-8dbd-3758-a03e-dfd227b2e287 -2020,Córdoba,I.3.1,192.262,TJ,CO2,69300.0,kg/TJ,13323756.6,Motor Gasoline combustion consumption by petrochemical industries,AR-X,SESCO,annual,kg,9977d788-9388-3dc3-b9ad-0ce66c34d9f8 -2020,Córdoba,I.3.1,192.262,TJ,CH4,3.0,kg/TJ,576.7860000000001,Motor Gasoline combustion consumption by petrochemical industries,AR-X,SESCO,annual,kg,47269128-8c84-33c0-8752-9729a0c040af -2020,Córdoba,I.3.1,192.262,TJ,N2O,0.6,kg/TJ,115.35719999999999,Motor Gasoline combustion consumption by petrochemical industries,AR-X,SESCO,annual,kg,b126f530-8cd2-31db-bd39-15bacb2aed7f -2020,Entre Rios,I.3.1,28.086199999999998,TJ,CO2,69300.0,kg/TJ,1946373.66,Motor Gasoline combustion consumption by petrochemical industries,AR-E,SESCO,annual,kg,a6a7138f-ae3d-3d1f-b728-38fae6ccdb17 -2020,Entre Rios,I.3.1,28.086199999999998,TJ,CH4,3.0,kg/TJ,84.2586,Motor Gasoline combustion consumption by petrochemical industries,AR-E,SESCO,annual,kg,6d655a36-6401-371b-abbd-378897d386a0 -2020,Entre Rios,I.3.1,28.086199999999998,TJ,N2O,0.6,kg/TJ,16.851719999999997,Motor Gasoline combustion consumption by petrochemical industries,AR-E,SESCO,annual,kg,6e486101-04d8-349d-837c-afc248d9f666 -2020,Misiones,I.3.1,119.83149999999998,TJ,CO2,69300.0,kg/TJ,8304322.949999998,Motor Gasoline combustion consumption by petrochemical industries,AR-N,SESCO,annual,kg,930aadf7-aec1-336f-b78d-45bc89630dc5 -2020,Misiones,I.3.1,119.83149999999998,TJ,CH4,3.0,kg/TJ,359.4944999999999,Motor Gasoline combustion consumption by petrochemical industries,AR-N,SESCO,annual,kg,7d5aec60-cbf5-3b32-bc91-40fd4919f09b -2020,Misiones,I.3.1,119.83149999999998,TJ,N2O,0.6,kg/TJ,71.89889999999998,Motor Gasoline combustion consumption by petrochemical industries,AR-N,SESCO,annual,kg,ecc20f3a-7cc1-3909-9ba0-b9c95f976e06 -2020,Neuquén,I.3.1,13.9102,TJ,CO2,69300.0,kg/TJ,963976.86,Motor Gasoline combustion consumption by petrochemical industries,AR-Q,SESCO,annual,kg,4786eb58-44fe-36ef-a1bc-557c171366e8 -2020,Neuquén,I.3.1,13.9102,TJ,CH4,3.0,kg/TJ,41.730599999999995,Motor Gasoline combustion consumption by petrochemical industries,AR-Q,SESCO,annual,kg,fd373231-19c7-3eef-b6e2-21f6dba47935 -2020,Neuquén,I.3.1,13.9102,TJ,N2O,0.6,kg/TJ,8.346119999999999,Motor Gasoline combustion consumption by petrochemical industries,AR-Q,SESCO,annual,kg,31afc79e-68e2-38a0-9b09-ed41ceb491e2 -2020,Santa Fe,I.3.1,1.1961,TJ,CO2,69300.0,kg/TJ,82889.73,Motor Gasoline combustion consumption by petrochemical industries,AR-S,SESCO,annual,kg,8367c190-efcf-3ddc-b380-ba1dcf757ab2 -2020,Santa Fe,I.3.1,1.1961,TJ,CH4,3.0,kg/TJ,3.5883,Motor Gasoline combustion consumption by petrochemical industries,AR-S,SESCO,annual,kg,b67ab928-7c53-3054-9d69-f1ebc2ef63fe -2020,Santa Fe,I.3.1,1.1961,TJ,N2O,0.6,kg/TJ,0.71766,Motor Gasoline combustion consumption by petrochemical industries,AR-S,SESCO,annual,kg,dd37466f-d042-30e3-8f72-e6b4b587b76d -2020,Buenos Aires,I.3.1,70.86744,TJ,CO2,74100.0,kg/TJ,5251277.3040000005,Gas Oil combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,8214ce23-cfa3-3193-b60f-1a97865a7143 -2020,Buenos Aires,I.3.1,70.86744,TJ,CH4,3.0,kg/TJ,212.60232000000002,Gas Oil combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,eca94682-d348-3151-ab86-688cbbd7ae7d -2020,Buenos Aires,I.3.1,70.86744,TJ,N2O,0.6,kg/TJ,42.520464,Gas Oil combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,8a6a1ca6-2638-3063-a304-329f9db549e9 -2020,Capital Federal,I.3.1,5.0568,TJ,CO2,74100.0,kg/TJ,374708.88,Gas Oil combustion consumption by petrochemical industries,AR-C,SESCO,annual,kg,973aafdf-5f8c-3fc6-a349-0c2cbbef1f0c -2020,Capital Federal,I.3.1,5.0568,TJ,CH4,3.0,kg/TJ,15.1704,Gas Oil combustion consumption by petrochemical industries,AR-C,SESCO,annual,kg,54a7ce36-9bd2-3a1c-82e8-f5cdbf16e203 -2020,Capital Federal,I.3.1,5.0568,TJ,N2O,0.6,kg/TJ,3.03408,Gas Oil combustion consumption by petrochemical industries,AR-C,SESCO,annual,kg,8f26ab03-adde-3847-80ba-17e5d4591ea1 -2020,Córdoba,I.3.1,15.78444,TJ,CO2,74100.0,kg/TJ,1169627.004,Gas Oil combustion consumption by petrochemical industries,AR-X,SESCO,annual,kg,a9aa0d22-9414-3300-a956-f2d1499cbffb -2020,Córdoba,I.3.1,15.78444,TJ,CH4,3.0,kg/TJ,47.35332,Gas Oil combustion consumption by petrochemical industries,AR-X,SESCO,annual,kg,1c1b1d2a-5a30-382e-a7d0-b78aed20f1ab -2020,Córdoba,I.3.1,15.78444,TJ,N2O,0.6,kg/TJ,9.470664,Gas Oil combustion consumption by petrochemical industries,AR-X,SESCO,annual,kg,30a12d8a-ab8d-3ad0-9e4b-4515c081e64a -2020,Entre Rios,I.3.1,10.58316,TJ,CO2,74100.0,kg/TJ,784212.156,Gas Oil combustion consumption by petrochemical industries,AR-E,SESCO,annual,kg,6f783b40-754e-30ee-a0ef-2790ebfea410 -2020,Entre Rios,I.3.1,10.58316,TJ,CH4,3.0,kg/TJ,31.74948,Gas Oil combustion consumption by petrochemical industries,AR-E,SESCO,annual,kg,2eef217b-5946-39fb-ac1e-d37a9996117a -2020,Entre Rios,I.3.1,10.58316,TJ,N2O,0.6,kg/TJ,6.349895999999999,Gas Oil combustion consumption by petrochemical industries,AR-E,SESCO,annual,kg,c5ed1492-54fb-369e-8cf3-aa91339efe97 -2020,Jujuy,I.3.1,27.270599999999998,TJ,CO2,74100.0,kg/TJ,2020751.46,Gas Oil combustion consumption by petrochemical industries,AR-Y,SESCO,annual,kg,ddb8b773-7712-3c69-898b-e4b6c8bc177f -2020,Jujuy,I.3.1,27.270599999999998,TJ,CH4,3.0,kg/TJ,81.81179999999999,Gas Oil combustion consumption by petrochemical industries,AR-Y,SESCO,annual,kg,c0ba2e39-7997-3ffc-a92a-1d26a56ac0f1 -2020,Jujuy,I.3.1,27.270599999999998,TJ,N2O,0.6,kg/TJ,16.36236,Gas Oil combustion consumption by petrochemical industries,AR-Y,SESCO,annual,kg,8c9f8ae6-6884-3fd5-bc82-4fa815f3a47b -2020,Mendoza,I.3.1,9.10224,TJ,CO2,74100.0,kg/TJ,674475.984,Gas Oil combustion consumption by petrochemical industries,AR-M,SESCO,annual,kg,b3636ae9-eb78-34a2-bf42-3ee615ec0ee4 -2020,Mendoza,I.3.1,9.10224,TJ,CH4,3.0,kg/TJ,27.30672,Gas Oil combustion consumption by petrochemical industries,AR-M,SESCO,annual,kg,5421a82b-0537-34cc-a3d7-cccf4ca16d53 -2020,Mendoza,I.3.1,9.10224,TJ,N2O,0.6,kg/TJ,5.4613439999999995,Gas Oil combustion consumption by petrochemical industries,AR-M,SESCO,annual,kg,ea3dbd88-7f2d-345d-96ae-1026308c2e17 -2020,Misiones,I.3.1,9.10224,TJ,CO2,74100.0,kg/TJ,674475.984,Gas Oil combustion consumption by petrochemical industries,AR-N,SESCO,annual,kg,501330f5-f793-3bc5-9d4b-6ef6163a524b -2020,Misiones,I.3.1,9.10224,TJ,CH4,3.0,kg/TJ,27.30672,Gas Oil combustion consumption by petrochemical industries,AR-N,SESCO,annual,kg,9b1b7984-5cc4-34b9-984a-b0ed20f8fb93 -2020,Misiones,I.3.1,9.10224,TJ,N2O,0.6,kg/TJ,5.4613439999999995,Gas Oil combustion consumption by petrochemical industries,AR-N,SESCO,annual,kg,bbdae8d3-b502-39a6-955c-a7bb61964b36 -2020,Neuquén,I.3.1,63.82404,TJ,CO2,74100.0,kg/TJ,4729361.364,Gas Oil combustion consumption by petrochemical industries,AR-Q,SESCO,annual,kg,99af1ee8-2a8c-3e9d-871c-ece4b4020a88 -2020,Neuquén,I.3.1,63.82404,TJ,CH4,3.0,kg/TJ,191.47212,Gas Oil combustion consumption by petrochemical industries,AR-Q,SESCO,annual,kg,2d3a7782-d60b-33d9-b106-3372795e171b -2020,Neuquén,I.3.1,63.82404,TJ,N2O,0.6,kg/TJ,38.294424,Gas Oil combustion consumption by petrochemical industries,AR-Q,SESCO,annual,kg,f6cc5216-d5b8-3c26-915c-fc7b4a8a6f80 -2020,Salta,I.3.1,102.54468,TJ,CO2,74100.0,kg/TJ,7598560.788,Gas Oil combustion consumption by petrochemical industries,AR-A,SESCO,annual,kg,3e94a55c-1e70-3516-a50b-5c0d880688fa -2020,Salta,I.3.1,102.54468,TJ,CH4,3.0,kg/TJ,307.63404,Gas Oil combustion consumption by petrochemical industries,AR-A,SESCO,annual,kg,3b643995-d857-3b2b-8719-98b6390d7747 -2020,Salta,I.3.1,102.54468,TJ,N2O,0.6,kg/TJ,61.526807999999996,Gas Oil combustion consumption by petrochemical industries,AR-A,SESCO,annual,kg,b8a7fd82-450d-302a-99a8-6a7a208f74e6 -2020,San Juan,I.3.1,22.35828,TJ,CO2,74100.0,kg/TJ,1656748.548,Gas Oil combustion consumption by petrochemical industries,AR-J,SESCO,annual,kg,7ae2a0a0-a4d4-3a06-a5e8-d1e73ec81acd -2020,San Juan,I.3.1,22.35828,TJ,CH4,3.0,kg/TJ,67.07484,Gas Oil combustion consumption by petrochemical industries,AR-J,SESCO,annual,kg,6897019c-0e5f-3354-947f-0b15ca9ac929 -2020,San Juan,I.3.1,22.35828,TJ,N2O,0.6,kg/TJ,13.414968,Gas Oil combustion consumption by petrochemical industries,AR-J,SESCO,annual,kg,779a4df7-ea1b-31d5-8792-6d0517ec9486 -2020,Santa Fe,I.3.1,17.265359999999998,TJ,CO2,74100.0,kg/TJ,1279363.1759999997,Gas Oil combustion consumption by petrochemical industries,AR-S,SESCO,annual,kg,745e5c7f-23ff-39ac-8801-05844ae51e11 -2020,Santa Fe,I.3.1,17.265359999999998,TJ,CH4,3.0,kg/TJ,51.79607999999999,Gas Oil combustion consumption by petrochemical industries,AR-S,SESCO,annual,kg,a8975609-cef4-3821-81ea-beca40bc8825 -2020,Santa Fe,I.3.1,17.265359999999998,TJ,N2O,0.6,kg/TJ,10.359215999999998,Gas Oil combustion consumption by petrochemical industries,AR-S,SESCO,annual,kg,25faf206-f335-34d1-9acf-928e22c1e5a4 -2020,Tucuman,I.3.1,109.9854,TJ,CO2,74100.0,kg/TJ,8149918.14,Gas Oil combustion consumption by petrochemical industries,AR-T,SESCO,annual,kg,bcd68f11-ba3c-3f00-9822-1b06d47cf6c4 -2020,Tucuman,I.3.1,109.9854,TJ,CH4,3.0,kg/TJ,329.95619999999997,Gas Oil combustion consumption by petrochemical industries,AR-T,SESCO,annual,kg,c6021a58-34a7-35e3-8b91-872bc6f9ffb8 -2020,Tucuman,I.3.1,109.9854,TJ,N2O,0.6,kg/TJ,65.99123999999999,Gas Oil combustion consumption by petrochemical industries,AR-T,SESCO,annual,kg,ecf9fb5a-3cf7-3195-9b39-ddf86f14a60b -2020,Buenos Aires,I.3.1,14.953679999999999,TJ,CO2,74100.0,kg/TJ,1108067.6879999998,Gas Oil combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,3c859912-5312-3f68-a49b-efa37e428cfc -2020,Buenos Aires,I.3.1,14.953679999999999,TJ,CH4,3.0,kg/TJ,44.861039999999996,Gas Oil combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,bb3866e5-56ca-3086-a924-d9c5c438ccbe -2020,Buenos Aires,I.3.1,14.953679999999999,TJ,N2O,0.6,kg/TJ,8.972207999999998,Gas Oil combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,04091a1c-7d10-3a0d-b471-cd6a00b251e4 -2020,Capital Federal,I.3.1,1.30032,TJ,CO2,74100.0,kg/TJ,96353.712,Gas Oil combustion consumption by petrochemical industries,AR-C,SESCO,annual,kg,effc26e8-1e44-3feb-89c8-1931c98daa56 -2020,Capital Federal,I.3.1,1.30032,TJ,CH4,3.0,kg/TJ,3.9009599999999995,Gas Oil combustion consumption by petrochemical industries,AR-C,SESCO,annual,kg,85b89b6f-aa07-3a54-aa06-59cf67683103 -2020,Capital Federal,I.3.1,1.30032,TJ,N2O,0.6,kg/TJ,0.7801919999999999,Gas Oil combustion consumption by petrochemical industries,AR-C,SESCO,annual,kg,e649779f-b78a-3802-8571-477ae4de4a85 -2020,Córdoba,I.3.1,0.65016,TJ,CO2,74100.0,kg/TJ,48176.856,Gas Oil combustion consumption by petrochemical industries,AR-X,SESCO,annual,kg,edecf887-be74-3fa5-ab88-ea03933a8fa3 -2020,Córdoba,I.3.1,0.65016,TJ,CH4,3.0,kg/TJ,1.9504799999999998,Gas Oil combustion consumption by petrochemical industries,AR-X,SESCO,annual,kg,e9d8ebb6-3014-3a2c-b2c2-9c69af44f883 -2020,Córdoba,I.3.1,0.65016,TJ,N2O,0.6,kg/TJ,0.39009599999999994,Gas Oil combustion consumption by petrochemical industries,AR-X,SESCO,annual,kg,7a1db73b-5b66-3c94-bb34-8643f19f208c -2020,Mendoza,I.3.1,0.21672,TJ,CO2,74100.0,kg/TJ,16058.952,Gas Oil combustion consumption by petrochemical industries,AR-M,SESCO,annual,kg,f6b79873-9309-3bf4-93e5-e7e19ada4b74 -2020,Mendoza,I.3.1,0.21672,TJ,CH4,3.0,kg/TJ,0.65016,Gas Oil combustion consumption by petrochemical industries,AR-M,SESCO,annual,kg,594b8979-7f4d-3be8-82a2-debbf17a806d -2020,Mendoza,I.3.1,0.21672,TJ,N2O,0.6,kg/TJ,0.13003199999999998,Gas Oil combustion consumption by petrochemical industries,AR-M,SESCO,annual,kg,17cd6377-a236-3eb2-a01d-b559ced89e6f -2020,Neuquén,I.3.1,8.16312,TJ,CO2,74100.0,kg/TJ,604887.1919999999,Gas Oil combustion consumption by petrochemical industries,AR-Q,SESCO,annual,kg,f39f5be5-9ad0-3f84-86d9-6834a2eba0c4 -2020,Neuquén,I.3.1,8.16312,TJ,CH4,3.0,kg/TJ,24.489359999999998,Gas Oil combustion consumption by petrochemical industries,AR-Q,SESCO,annual,kg,5858dd6a-8059-36b3-a23b-057cef3c2a6a -2020,Neuquén,I.3.1,8.16312,TJ,N2O,0.6,kg/TJ,4.897872,Gas Oil combustion consumption by petrochemical industries,AR-Q,SESCO,annual,kg,d6297a6c-ef49-3a37-863f-85fe249b263d -2020,San Luis,I.3.1,1.3364399999999999,TJ,CO2,74100.0,kg/TJ,99030.20399999998,Gas Oil combustion consumption by petrochemical industries,AR-D,SESCO,annual,kg,e067cef1-16bf-30e8-a9a4-d03a722415f5 -2020,San Luis,I.3.1,1.3364399999999999,TJ,CH4,3.0,kg/TJ,4.00932,Gas Oil combustion consumption by petrochemical industries,AR-D,SESCO,annual,kg,53578be8-2b61-3380-8a2c-146aa18d2683 -2020,San Luis,I.3.1,1.3364399999999999,TJ,N2O,0.6,kg/TJ,0.8018639999999999,Gas Oil combustion consumption by petrochemical industries,AR-D,SESCO,annual,kg,079f0097-6521-37ae-ba48-a1b4a0dd3abe -2020,Santiago del Estero,I.3.1,6.321,TJ,CO2,74100.0,kg/TJ,468386.1,Gas Oil combustion consumption by petrochemical industries,AR-G,SESCO,annual,kg,73d1b5e5-c1d2-3689-8b82-2b15577453ab -2020,Santiago del Estero,I.3.1,6.321,TJ,CH4,3.0,kg/TJ,18.963,Gas Oil combustion consumption by petrochemical industries,AR-G,SESCO,annual,kg,357a420c-c10e-3934-affc-9ed2b13ea4d2 -2020,Santiago del Estero,I.3.1,6.321,TJ,N2O,0.6,kg/TJ,3.7925999999999997,Gas Oil combustion consumption by petrochemical industries,AR-G,SESCO,annual,kg,af10b9f6-ad42-3a6c-8b0f-edb5727cd0e9 -2020,Tucuman,I.3.1,1.2280799999999998,TJ,CO2,74100.0,kg/TJ,91000.72799999999,Gas Oil combustion consumption by petrochemical industries,AR-T,SESCO,annual,kg,3ac8db5e-c96a-3182-b16b-7c8a88bb6843 -2020,Tucuman,I.3.1,1.2280799999999998,TJ,CH4,3.0,kg/TJ,3.6842399999999995,Gas Oil combustion consumption by petrochemical industries,AR-T,SESCO,annual,kg,963fd066-15ba-3121-b263-7241f8b4d49d -2020,Tucuman,I.3.1,1.2280799999999998,TJ,N2O,0.6,kg/TJ,0.7368479999999998,Gas Oil combustion consumption by petrochemical industries,AR-T,SESCO,annual,kg,d647e389-7683-3710-8134-13a099b8a434 -2020,Buenos Aires,I.3.1,19.839434999999998,TJ,CO2,73300.0,kg/TJ,1454230.5854999998,Naphtha combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,93baa483-23d7-39bb-9425-e6be54d50c80 -2020,Buenos Aires,I.3.1,19.839434999999998,TJ,CH4,3.0,kg/TJ,59.518305,Naphtha combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,6be8cf54-d180-3f91-9141-62782497755c -2020,Buenos Aires,I.3.1,19.839434999999998,TJ,N2O,0.6,kg/TJ,11.903660999999998,Naphtha combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,518429cd-bee1-36f6-b04e-78e7c65019f7 -2020,Misiones,I.3.1,0.171325,TJ,CO2,73300.0,kg/TJ,12558.1225,Naphtha combustion consumption by petrochemical industries,AR-N,SESCO,annual,kg,23c338f2-cf6b-3f20-93b3-4a5f16f1c628 -2020,Misiones,I.3.1,0.171325,TJ,CH4,3.0,kg/TJ,0.5139750000000001,Naphtha combustion consumption by petrochemical industries,AR-N,SESCO,annual,kg,36617784-4557-3d7f-b81f-cc5e85a075a3 -2020,Misiones,I.3.1,0.171325,TJ,N2O,0.6,kg/TJ,0.102795,Naphtha combustion consumption by petrochemical industries,AR-N,SESCO,annual,kg,85318ac9-dc08-3c1e-980c-9fba73a38cf9 -2020,Tucuman,I.3.1,0.20559,TJ,CO2,73300.0,kg/TJ,15069.747,Naphtha combustion consumption by petrochemical industries,AR-T,SESCO,annual,kg,f014d3f7-2a2e-3d34-a841-8b1a53f49976 -2020,Tucuman,I.3.1,0.20559,TJ,CH4,3.0,kg/TJ,0.61677,Naphtha combustion consumption by petrochemical industries,AR-T,SESCO,annual,kg,dcec4209-975e-348a-a10d-5066a27bcf18 -2020,Tucuman,I.3.1,0.20559,TJ,N2O,0.6,kg/TJ,0.12335399999999999,Naphtha combustion consumption by petrochemical industries,AR-T,SESCO,annual,kg,81e37be2-7d5c-3ca2-90c1-61ee52cb67e7 -2020,Buenos Aires,I.3.1,5.996375,TJ,CO2,73300.0,kg/TJ,439534.2875,Naphtha combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,474bcd6e-80a6-3575-af6f-47ecd7d991ca -2020,Buenos Aires,I.3.1,5.996375,TJ,CH4,3.0,kg/TJ,17.989124999999998,Naphtha combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,59159b4a-af70-3faa-948a-f191ee176615 -2020,Buenos Aires,I.3.1,5.996375,TJ,N2O,0.6,kg/TJ,3.597825,Naphtha combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,d548fd02-e4df-35ad-bb26-0be0dccdb5d7 -2020,San Juan,I.3.1,0.9594199999999999,TJ,CO2,73300.0,kg/TJ,70325.48599999999,Naphtha combustion consumption by petrochemical industries,AR-J,SESCO,annual,kg,3858154a-71d4-36f5-adb5-2e25d8d71f03 -2020,San Juan,I.3.1,0.9594199999999999,TJ,CH4,3.0,kg/TJ,2.87826,Naphtha combustion consumption by petrochemical industries,AR-J,SESCO,annual,kg,0437d965-d78d-3fa2-9402-c608ea7a2047 -2020,San Juan,I.3.1,0.9594199999999999,TJ,N2O,0.6,kg/TJ,0.5756519999999999,Naphtha combustion consumption by petrochemical industries,AR-J,SESCO,annual,kg,f91324f7-2d5b-3537-9051-7fdcaac843c7 -2020,Tucuman,I.3.1,0.23985499999999998,TJ,CO2,73300.0,kg/TJ,17581.371499999997,Naphtha combustion consumption by petrochemical industries,AR-T,SESCO,annual,kg,80d5f47b-3847-3bde-b12c-f63d7f4a7fbc -2020,Tucuman,I.3.1,0.23985499999999998,TJ,CH4,3.0,kg/TJ,0.719565,Naphtha combustion consumption by petrochemical industries,AR-T,SESCO,annual,kg,351a4c23-b530-3c94-83c7-193164ca276e -2020,Tucuman,I.3.1,0.23985499999999998,TJ,N2O,0.6,kg/TJ,0.14391299999999999,Naphtha combustion consumption by petrochemical industries,AR-T,SESCO,annual,kg,1c955753-246e-3860-bd7b-0489bb570032 -2020,Buenos Aires,I.3.1,28.073366999999998,TJ,CO2,74100.0,kg/TJ,2080236.4947,Gas Oil combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,d1648762-36cd-377f-b6ec-888f42f30428 -2020,Buenos Aires,I.3.1,28.073366999999998,TJ,CH4,3.0,kg/TJ,84.220101,Gas Oil combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,444ecffb-2c8d-3c09-8075-313d67115712 -2020,Buenos Aires,I.3.1,28.073366999999998,TJ,N2O,0.6,kg/TJ,16.8440202,Gas Oil combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,b0a908eb-82a5-3444-868e-e9d0798b54f7 -2020,Capital Federal,I.3.1,1.6957978799999998,TJ,CO2,74100.0,kg/TJ,125658.62290799998,Gas Oil combustion consumption by petrochemical industries,AR-C,SESCO,annual,kg,57ed1221-0047-3725-a018-26c232c1cc55 -2020,Capital Federal,I.3.1,1.6957978799999998,TJ,CH4,3.0,kg/TJ,5.087393639999999,Gas Oil combustion consumption by petrochemical industries,AR-C,SESCO,annual,kg,6b8bac0b-5ca5-3d55-badf-0a9b6964eff2 -2020,Capital Federal,I.3.1,1.6957978799999998,TJ,N2O,0.6,kg/TJ,1.0174787279999997,Gas Oil combustion consumption by petrochemical industries,AR-C,SESCO,annual,kg,78243d49-f91e-3e56-ae42-3f55e8634db8 -2020,Catamarca,I.3.1,0.36163344,TJ,CO2,74100.0,kg/TJ,26797.037903999997,Gas Oil combustion consumption by petrochemical industries,AR-K,SESCO,annual,kg,89cc1ba9-79c7-387c-97ec-536613d9ad80 -2020,Catamarca,I.3.1,0.36163344,TJ,CH4,3.0,kg/TJ,1.08490032,Gas Oil combustion consumption by petrochemical industries,AR-K,SESCO,annual,kg,ad67cbcd-b0c3-3fd8-b862-6e5069c35379 -2020,Catamarca,I.3.1,0.36163344,TJ,N2O,0.6,kg/TJ,0.21698006399999997,Gas Oil combustion consumption by petrochemical industries,AR-K,SESCO,annual,kg,f5943295-efbb-3a65-8926-55f9f6c864f0 -2020,Chaco,I.3.1,1.9492880399999999,TJ,CO2,74100.0,kg/TJ,144442.24376399998,Gas Oil combustion consumption by petrochemical industries,AR-H,SESCO,annual,kg,ad49b0c6-56bc-3659-be2b-3eb5295ecbb5 -2020,Chaco,I.3.1,1.9492880399999999,TJ,CH4,3.0,kg/TJ,5.84786412,Gas Oil combustion consumption by petrochemical industries,AR-H,SESCO,annual,kg,2fbe319f-bc7f-3dcf-aaf8-9d5f05fb06eb -2020,Chaco,I.3.1,1.9492880399999999,TJ,N2O,0.6,kg/TJ,1.1695728239999998,Gas Oil combustion consumption by petrochemical industries,AR-H,SESCO,annual,kg,e759261e-fa34-3618-9d2f-0dc76c91d0dd -2020,Chubut,I.3.1,0.54281136,TJ,CO2,74100.0,kg/TJ,40222.321776,Gas Oil combustion consumption by petrochemical industries,AR-U,SESCO,annual,kg,5f87bc61-846a-3ce1-b167-d2a50869f5e7 -2020,Chubut,I.3.1,0.54281136,TJ,CH4,3.0,kg/TJ,1.62843408,Gas Oil combustion consumption by petrochemical industries,AR-U,SESCO,annual,kg,8d623b70-ea20-3b85-b1b4-90d489d3531a -2020,Chubut,I.3.1,0.54281136,TJ,N2O,0.6,kg/TJ,0.325686816,Gas Oil combustion consumption by petrochemical industries,AR-U,SESCO,annual,kg,9ea57ada-aa84-3834-adb6-df5a114894eb -2020,Corrientes,I.3.1,1.2976471200000002,TJ,CO2,74100.0,kg/TJ,96155.65159200001,Gas Oil combustion consumption by petrochemical industries,AR-W,SESCO,annual,kg,b6660d10-f470-3ea2-ba86-a2f8d628572c -2020,Corrientes,I.3.1,1.2976471200000002,TJ,CH4,3.0,kg/TJ,3.8929413600000005,Gas Oil combustion consumption by petrochemical industries,AR-W,SESCO,annual,kg,410fb411-12e6-3038-892f-d307205b7da5 -2020,Corrientes,I.3.1,1.2976471200000002,TJ,N2O,0.6,kg/TJ,0.778588272,Gas Oil combustion consumption by petrochemical industries,AR-W,SESCO,annual,kg,e27a2efa-3fb6-3546-b9dc-c25a6343de20 -2020,Córdoba,I.3.1,6.889239839999999,TJ,CO2,74100.0,kg/TJ,510492.67214399995,Gas Oil combustion consumption by petrochemical industries,AR-X,SESCO,annual,kg,c8be0454-d60f-386e-bf97-43911717efeb -2020,Córdoba,I.3.1,6.889239839999999,TJ,CH4,3.0,kg/TJ,20.66771952,Gas Oil combustion consumption by petrochemical industries,AR-X,SESCO,annual,kg,71ec7d26-db9c-3608-b8fb-91e74ecdc34f -2020,Córdoba,I.3.1,6.889239839999999,TJ,N2O,0.6,kg/TJ,4.133543904,Gas Oil combustion consumption by petrochemical industries,AR-X,SESCO,annual,kg,e23e13a3-284f-34fb-9017-20870a42b712 -2020,Entre Rios,I.3.1,4.90303716,TJ,CO2,74100.0,kg/TJ,363315.053556,Gas Oil combustion consumption by petrochemical industries,AR-E,SESCO,annual,kg,fd02fe17-3426-3158-860d-3df43a33178d -2020,Entre Rios,I.3.1,4.90303716,TJ,CH4,3.0,kg/TJ,14.70911148,Gas Oil combustion consumption by petrochemical industries,AR-E,SESCO,annual,kg,646d8bcb-01d9-3601-a464-392ef484d3a0 -2020,Entre Rios,I.3.1,4.90303716,TJ,N2O,0.6,kg/TJ,2.9418222960000002,Gas Oil combustion consumption by petrochemical industries,AR-E,SESCO,annual,kg,6e15b0b1-d997-35c3-bec9-d278bceddf77 -2020,La Pampa,I.3.1,11.56298724,TJ,CO2,74100.0,kg/TJ,856817.354484,Gas Oil combustion consumption by petrochemical industries,AR-L,SESCO,annual,kg,db0eeb04-3b05-3d6e-8de2-3094ec1b5182 -2020,La Pampa,I.3.1,11.56298724,TJ,CH4,3.0,kg/TJ,34.68896172,Gas Oil combustion consumption by petrochemical industries,AR-L,SESCO,annual,kg,e2ef4b99-1a60-3c3a-8ae9-35488d20d127 -2020,La Pampa,I.3.1,11.56298724,TJ,N2O,0.6,kg/TJ,6.937792344,Gas Oil combustion consumption by petrochemical industries,AR-L,SESCO,annual,kg,2fb5a5c1-8b67-30d1-91a2-e5cf628bd677 -2020,Mendoza,I.3.1,0.18110568000000002,TJ,CO2,74100.0,kg/TJ,13419.930888,Gas Oil combustion consumption by petrochemical industries,AR-M,SESCO,annual,kg,fb22e6eb-00ba-3224-9fa7-4d43b08cd5d3 -2020,Mendoza,I.3.1,0.18110568000000002,TJ,CH4,3.0,kg/TJ,0.54331704,Gas Oil combustion consumption by petrochemical industries,AR-M,SESCO,annual,kg,e0728860-4568-3b92-af4f-0eccf9349077 -2020,Mendoza,I.3.1,0.18110568000000002,TJ,N2O,0.6,kg/TJ,0.108663408,Gas Oil combustion consumption by petrochemical industries,AR-M,SESCO,annual,kg,809d7664-5afe-377d-9288-4494bdf46098 -2020,Rio Negro,I.3.1,0.79464,TJ,CO2,74100.0,kg/TJ,58882.824,Gas Oil combustion consumption by petrochemical industries,AR-R,SESCO,annual,kg,6d4a6a8e-e6f1-38e6-99a1-2d8e028b76b1 -2020,Rio Negro,I.3.1,0.79464,TJ,CH4,3.0,kg/TJ,2.38392,Gas Oil combustion consumption by petrochemical industries,AR-R,SESCO,annual,kg,1e0c1b50-46e8-3641-8452-4cc0861d7b92 -2020,Rio Negro,I.3.1,0.79464,TJ,N2O,0.6,kg/TJ,0.476784,Gas Oil combustion consumption by petrochemical industries,AR-R,SESCO,annual,kg,336a050c-f83b-3716-b38c-ce65e6525519 -2020,Santa Fe,I.3.1,25.365450599999996,TJ,CO2,74100.0,kg/TJ,1879579.8894599997,Gas Oil combustion consumption by petrochemical industries,AR-S,SESCO,annual,kg,8c5ac378-646d-34c9-aa35-2501eb231bee -2020,Santa Fe,I.3.1,25.365450599999996,TJ,CH4,3.0,kg/TJ,76.09635179999998,Gas Oil combustion consumption by petrochemical industries,AR-S,SESCO,annual,kg,0e965036-66d2-3930-a858-04965e511b15 -2020,Santa Fe,I.3.1,25.365450599999996,TJ,N2O,0.6,kg/TJ,15.219270359999996,Gas Oil combustion consumption by petrochemical industries,AR-S,SESCO,annual,kg,c438bdd2-019a-3942-b08a-09137138006d -2020,Santiago del Estero,I.3.1,0.14386596000000001,TJ,CO2,74100.0,kg/TJ,10660.467636000001,Gas Oil combustion consumption by petrochemical industries,AR-G,SESCO,annual,kg,5674295c-bbfb-33bc-b84c-bb51ee4496f3 -2020,Santiago del Estero,I.3.1,0.14386596000000001,TJ,CH4,3.0,kg/TJ,0.43159788000000004,Gas Oil combustion consumption by petrochemical industries,AR-G,SESCO,annual,kg,3b436118-20bb-3da1-b0b2-73e0d0cbce99 -2020,Santiago del Estero,I.3.1,0.14386596000000001,TJ,N2O,0.6,kg/TJ,0.08631957600000001,Gas Oil combustion consumption by petrochemical industries,AR-G,SESCO,annual,kg,c5703954-22de-38cf-960d-e9471df4c090 -2020,Tucuman,I.3.1,0.2526594,TJ,CO2,74100.0,kg/TJ,18722.06154,Gas Oil combustion consumption by petrochemical industries,AR-T,SESCO,annual,kg,883bd798-692c-3301-b427-2b82f4c310fd -2020,Tucuman,I.3.1,0.2526594,TJ,CH4,3.0,kg/TJ,0.7579781999999999,Gas Oil combustion consumption by petrochemical industries,AR-T,SESCO,annual,kg,f8cce8d2-55b0-3d35-b6ba-212190bd31e1 -2020,Tucuman,I.3.1,0.2526594,TJ,N2O,0.6,kg/TJ,0.15159563999999998,Gas Oil combustion consumption by petrochemical industries,AR-T,SESCO,annual,kg,6e767f1a-e696-377e-997c-1ad7015fa2b4 -2020,Buenos Aires,I.3.1,56.1527967,TJ,CO2,73300.0,kg/TJ,4115999.99811,Naphtha combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,e0b5bc86-5afd-3b3a-9f9d-0b4778564420 -2020,Buenos Aires,I.3.1,56.1527967,TJ,CH4,3.0,kg/TJ,168.4583901,Naphtha combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,4872009e-3626-30c9-9b12-d4c5637932b8 -2020,Buenos Aires,I.3.1,56.1527967,TJ,N2O,0.6,kg/TJ,33.69167802,Naphtha combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,abcdb5f0-1199-3c3e-aaff-5a5a2a9734df -2020,Capital Federal,I.3.1,8.486515344999999,TJ,CO2,73300.0,kg/TJ,622061.5747885,Naphtha combustion consumption by petrochemical industries,AR-C,SESCO,annual,kg,7623769c-6538-3cd6-ba5b-a0e67fb49c13 -2020,Capital Federal,I.3.1,8.486515344999999,TJ,CH4,3.0,kg/TJ,25.459546034999995,Naphtha combustion consumption by petrochemical industries,AR-C,SESCO,annual,kg,812da18e-1f7c-3421-8ce8-5e2b3bd58c83 -2020,Capital Federal,I.3.1,8.486515344999999,TJ,N2O,0.6,kg/TJ,5.091909207,Naphtha combustion consumption by petrochemical industries,AR-C,SESCO,annual,kg,3581789e-f8e4-3037-8220-3447ee469cf3 -2020,Catamarca,I.3.1,5.006424885,TJ,CO2,73300.0,kg/TJ,366970.94407050003,Naphtha combustion consumption by petrochemical industries,AR-K,SESCO,annual,kg,26c09dfb-63be-3ff6-8300-faa79766be83 -2020,Catamarca,I.3.1,5.006424885,TJ,CH4,3.0,kg/TJ,15.019274655,Naphtha combustion consumption by petrochemical industries,AR-K,SESCO,annual,kg,d921f3d0-0c7d-3f65-8229-f2faa9ad9f22 -2020,Catamarca,I.3.1,5.006424885,TJ,N2O,0.6,kg/TJ,3.0038549310000002,Naphtha combustion consumption by petrochemical industries,AR-K,SESCO,annual,kg,47eef66c-4584-3ba7-84c5-f22af80643b0 -2020,Chaco,I.3.1,6.34080678,TJ,CO2,73300.0,kg/TJ,464781.136974,Naphtha combustion consumption by petrochemical industries,AR-H,SESCO,annual,kg,8939b969-870d-3c60-87ba-ffb0154d8219 -2020,Chaco,I.3.1,6.34080678,TJ,CH4,3.0,kg/TJ,19.02242034,Naphtha combustion consumption by petrochemical industries,AR-H,SESCO,annual,kg,10704e7f-2ece-32d2-907a-d97ac619e2c7 -2020,Chaco,I.3.1,6.34080678,TJ,N2O,0.6,kg/TJ,3.804484068,Naphtha combustion consumption by petrochemical industries,AR-H,SESCO,annual,kg,76f47627-e403-36e7-a268-c2e667aa94d2 -2020,Chubut,I.3.1,1.0640310450000001,TJ,CO2,73300.0,kg/TJ,77993.47559850001,Naphtha combustion consumption by petrochemical industries,AR-U,SESCO,annual,kg,9eb17483-4d22-35d6-a1cd-e1b6d8541eab -2020,Chubut,I.3.1,1.0640310450000001,TJ,CH4,3.0,kg/TJ,3.1920931350000004,Naphtha combustion consumption by petrochemical industries,AR-U,SESCO,annual,kg,030d32e0-1245-3c16-b726-fdad06bc1259 -2020,Chubut,I.3.1,1.0640310450000001,TJ,N2O,0.6,kg/TJ,0.6384186270000001,Naphtha combustion consumption by petrochemical industries,AR-U,SESCO,annual,kg,f0a3864c-a4ef-310c-9f2d-dd2b1ef753ad -2020,Córdoba,I.3.1,20.184072369999996,TJ,CO2,73300.0,kg/TJ,1479492.5047209996,Naphtha combustion consumption by petrochemical industries,AR-X,SESCO,annual,kg,2557632d-9009-34a8-a8a9-5274a5b8885f -2020,Córdoba,I.3.1,20.184072369999996,TJ,CH4,3.0,kg/TJ,60.55221710999999,Naphtha combustion consumption by petrochemical industries,AR-X,SESCO,annual,kg,bd904d36-46fb-34d8-84ab-07180db96b93 -2020,Córdoba,I.3.1,20.184072369999996,TJ,N2O,0.6,kg/TJ,12.110443421999998,Naphtha combustion consumption by petrochemical industries,AR-X,SESCO,annual,kg,2bd2bed2-2f16-3c22-816a-0f35bd79002f -2020,Entre Rios,I.3.1,12.369253819999999,TJ,CO2,73300.0,kg/TJ,906666.305006,Naphtha combustion consumption by petrochemical industries,AR-E,SESCO,annual,kg,e53e9100-978c-316e-b25a-7ca6b12a9f70 -2020,Entre Rios,I.3.1,12.369253819999999,TJ,CH4,3.0,kg/TJ,37.10776146,Naphtha combustion consumption by petrochemical industries,AR-E,SESCO,annual,kg,fa155582-ad4b-3509-adf6-1a55d1417352 -2020,Entre Rios,I.3.1,12.369253819999999,TJ,N2O,0.6,kg/TJ,7.421552291999999,Naphtha combustion consumption by petrochemical industries,AR-E,SESCO,annual,kg,e3dda788-ac5a-3b08-b6c6-9b26fbc596b4 -2020,La Pampa,I.3.1,14.871866625,TJ,CO2,73300.0,kg/TJ,1090107.8236125,Naphtha combustion consumption by petrochemical industries,AR-L,SESCO,annual,kg,1d5a5c5b-424c-3d65-9b6e-0310585e54de -2020,La Pampa,I.3.1,14.871866625,TJ,CH4,3.0,kg/TJ,44.615599875,Naphtha combustion consumption by petrochemical industries,AR-L,SESCO,annual,kg,5c21ccdd-ef5a-3f12-96e6-357abe0e5b22 -2020,La Pampa,I.3.1,14.871866625,TJ,N2O,0.6,kg/TJ,8.923119974999999,Naphtha combustion consumption by petrochemical industries,AR-L,SESCO,annual,kg,deab9fef-bd51-3afc-9c89-7a1110aee33d -2020,Mendoza,I.3.1,2.63031846,TJ,CO2,73300.0,kg/TJ,192802.343118,Naphtha combustion consumption by petrochemical industries,AR-M,SESCO,annual,kg,f861a10e-162f-3684-b11e-f25d92de3e05 -2020,Mendoza,I.3.1,2.63031846,TJ,CH4,3.0,kg/TJ,7.890955379999999,Naphtha combustion consumption by petrochemical industries,AR-M,SESCO,annual,kg,9f2187fc-bbbd-359c-ac35-5112237fa203 -2020,Mendoza,I.3.1,2.63031846,TJ,N2O,0.6,kg/TJ,1.5781910759999997,Naphtha combustion consumption by petrochemical industries,AR-M,SESCO,annual,kg,2fdbd830-68ee-38c1-beeb-dd2a8ed1b5d5 -2020,Misiones,I.3.1,3.4187218449999994,TJ,CO2,73300.0,kg/TJ,250592.31123849997,Naphtha combustion consumption by petrochemical industries,AR-N,SESCO,annual,kg,120f47a1-47a3-35d3-ab5a-5cd1077cf297 -2020,Misiones,I.3.1,3.4187218449999994,TJ,CH4,3.0,kg/TJ,10.256165534999997,Naphtha combustion consumption by petrochemical industries,AR-N,SESCO,annual,kg,d2ecd7d2-0358-3a7e-a2bd-434837f4c2b8 -2020,Misiones,I.3.1,3.4187218449999994,TJ,N2O,0.6,kg/TJ,2.0512331069999994,Naphtha combustion consumption by petrochemical industries,AR-N,SESCO,annual,kg,8742b9af-9e95-3659-a262-cc33bfb0a50c -2020,Neuquén,I.3.1,4.456814284999999,TJ,CO2,73300.0,kg/TJ,326684.48709049996,Naphtha combustion consumption by petrochemical industries,AR-Q,SESCO,annual,kg,235ce732-b0d5-303d-811b-3e48005431f1 -2020,Neuquén,I.3.1,4.456814284999999,TJ,CH4,3.0,kg/TJ,13.370442854999997,Naphtha combustion consumption by petrochemical industries,AR-Q,SESCO,annual,kg,1ede4108-3e93-3001-a783-39c3ee09305f -2020,Neuquén,I.3.1,4.456814284999999,TJ,N2O,0.6,kg/TJ,2.6740885709999995,Naphtha combustion consumption by petrochemical industries,AR-Q,SESCO,annual,kg,116c44c0-35cd-399d-80d3-0b0dddcc238e -2020,Rio Negro,I.3.1,10.71247254,TJ,CO2,73300.0,kg/TJ,785224.2371820001,Naphtha combustion consumption by petrochemical industries,AR-R,SESCO,annual,kg,87d2db19-2ddf-38dd-a442-d8d113cb3223 -2020,Rio Negro,I.3.1,10.71247254,TJ,CH4,3.0,kg/TJ,32.13741762,Naphtha combustion consumption by petrochemical industries,AR-R,SESCO,annual,kg,a6808ce4-c387-3b7f-bcce-3e2e1b0af3fe -2020,Rio Negro,I.3.1,10.71247254,TJ,N2O,0.6,kg/TJ,6.427483524,Naphtha combustion consumption by petrochemical industries,AR-R,SESCO,annual,kg,8683d08a-cc21-3045-a728-2519fbde5c1f -2020,San Luis,I.3.1,2.198819315,TJ,CO2,73300.0,kg/TJ,161173.4557895,Naphtha combustion consumption by petrochemical industries,AR-D,SESCO,annual,kg,447ac649-9db6-31df-acae-bfcb6554d306 -2020,San Luis,I.3.1,2.198819315,TJ,CH4,3.0,kg/TJ,6.596457945000001,Naphtha combustion consumption by petrochemical industries,AR-D,SESCO,annual,kg,a539c8d8-c550-3fa3-9105-f75f05d1e538 -2020,San Luis,I.3.1,2.198819315,TJ,N2O,0.6,kg/TJ,1.319291589,Naphtha combustion consumption by petrochemical industries,AR-D,SESCO,annual,kg,ab9a239e-e83d-31b2-b929-0c2b52cae86f -2020,Santa Fe,I.3.1,56.817846085,TJ,CO2,73300.0,kg/TJ,4164748.1180305,Naphtha combustion consumption by petrochemical industries,AR-S,SESCO,annual,kg,152f143e-6aa6-3900-989a-c048ce9d86e9 -2020,Santa Fe,I.3.1,56.817846085,TJ,CH4,3.0,kg/TJ,170.453538255,Naphtha combustion consumption by petrochemical industries,AR-S,SESCO,annual,kg,0f998650-5d0f-3d0d-8ad6-e8802b172167 -2020,Santa Fe,I.3.1,56.817846085,TJ,N2O,0.6,kg/TJ,34.090707650999995,Naphtha combustion consumption by petrochemical industries,AR-S,SESCO,annual,kg,629eda62-256f-3f64-8126-8478b4221979 -2020,Santiago del Estero,I.3.1,0.853781005,TJ,CO2,73300.0,kg/TJ,62582.1476665,Naphtha combustion consumption by petrochemical industries,AR-G,SESCO,annual,kg,71925126-82f0-301d-b024-a1ca242f9fac -2020,Santiago del Estero,I.3.1,0.853781005,TJ,CH4,3.0,kg/TJ,2.561343015,Naphtha combustion consumption by petrochemical industries,AR-G,SESCO,annual,kg,defafeec-fd6b-3465-8f67-6b4c25c72697 -2020,Santiago del Estero,I.3.1,0.853781005,TJ,N2O,0.6,kg/TJ,0.512268603,Naphtha combustion consumption by petrochemical industries,AR-G,SESCO,annual,kg,faf6071a-1a95-35e6-b683-0f3bb1b56993 -2020,Tucuman,I.3.1,4.681661214999999,TJ,CO2,73300.0,kg/TJ,343165.7670594999,Naphtha combustion consumption by petrochemical industries,AR-T,SESCO,annual,kg,d368ab8a-1edf-392c-8c67-b11412ae0e86 -2020,Tucuman,I.3.1,4.681661214999999,TJ,CH4,3.0,kg/TJ,14.044983644999999,Naphtha combustion consumption by petrochemical industries,AR-T,SESCO,annual,kg,2d67e741-54a3-3422-bf31-006dcd46f08d -2020,Tucuman,I.3.1,4.681661214999999,TJ,N2O,0.6,kg/TJ,2.8089967289999995,Naphtha combustion consumption by petrochemical industries,AR-T,SESCO,annual,kg,fc143514-6174-31aa-8ba6-ca5567436a65 -2020,Buenos Aires,I.3.1,2.29568647,TJ,CO2,73300.0,kg/TJ,168273.81825100002,Naphtha combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,8de9ffa1-be35-3823-99c6-002395f0ed52 -2020,Buenos Aires,I.3.1,2.29568647,TJ,CH4,3.0,kg/TJ,6.887059410000001,Naphtha combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,fe3b4bf8-e53c-344c-acee-1325de3af75a -2020,Buenos Aires,I.3.1,2.29568647,TJ,N2O,0.6,kg/TJ,1.377411882,Naphtha combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,829a2edc-b45b-3137-9907-67ff4e03d5b2 -2020,Capital Federal,I.3.1,0.994678685,TJ,CO2,73300.0,kg/TJ,72909.9476105,Naphtha combustion consumption by petrochemical industries,AR-C,SESCO,annual,kg,ed372389-de6b-303e-a29f-8573da13d5f4 -2020,Capital Federal,I.3.1,0.994678685,TJ,CH4,3.0,kg/TJ,2.984036055,Naphtha combustion consumption by petrochemical industries,AR-C,SESCO,annual,kg,d20da0a7-ab49-3b9a-a902-c035737eb588 -2020,Capital Federal,I.3.1,0.994678685,TJ,N2O,0.6,kg/TJ,0.596807211,Naphtha combustion consumption by petrochemical industries,AR-C,SESCO,annual,kg,b8cd0f5c-6942-30ae-af62-83e52531e189 -2020,Chubut,I.3.1,0.17228441999999997,TJ,CO2,73300.0,kg/TJ,12628.447985999997,Naphtha combustion consumption by petrochemical industries,AR-U,SESCO,annual,kg,a68027e5-7c10-3b67-944b-5dee46a75001 -2020,Chubut,I.3.1,0.17228441999999997,TJ,CH4,3.0,kg/TJ,0.5168532599999999,Naphtha combustion consumption by petrochemical industries,AR-U,SESCO,annual,kg,549c518b-3a07-36f6-b273-1fe0ef489570 -2020,Chubut,I.3.1,0.17228441999999997,TJ,N2O,0.6,kg/TJ,0.10337065199999998,Naphtha combustion consumption by petrochemical industries,AR-U,SESCO,annual,kg,d83a7a80-af71-32ff-8b85-c7b42aa670c8 -2020,Córdoba,I.3.1,1.268524565,TJ,CO2,73300.0,kg/TJ,92982.85061450001,Naphtha combustion consumption by petrochemical industries,AR-X,SESCO,annual,kg,e4c17e76-8d9f-33f6-b98c-e32676a0011a -2020,Córdoba,I.3.1,1.268524565,TJ,CH4,3.0,kg/TJ,3.8055736950000005,Naphtha combustion consumption by petrochemical industries,AR-X,SESCO,annual,kg,93d09105-e8fe-3907-86e5-2abaf1f853de -2020,Córdoba,I.3.1,1.268524565,TJ,N2O,0.6,kg/TJ,0.761114739,Naphtha combustion consumption by petrochemical industries,AR-X,SESCO,annual,kg,324f7738-b099-3736-861f-7a3a3eb34add -2020,Entre Rios,I.3.1,0.92522353,TJ,CO2,73300.0,kg/TJ,67818.884749,Naphtha combustion consumption by petrochemical industries,AR-E,SESCO,annual,kg,f10d20ca-3be4-3784-a91d-f1983360dab6 -2020,Entre Rios,I.3.1,0.92522353,TJ,CH4,3.0,kg/TJ,2.77567059,Naphtha combustion consumption by petrochemical industries,AR-E,SESCO,annual,kg,f7d245fb-7b9a-3959-acd1-1216cc90555b -2020,Entre Rios,I.3.1,0.92522353,TJ,N2O,0.6,kg/TJ,0.555134118,Naphtha combustion consumption by petrochemical industries,AR-E,SESCO,annual,kg,e2e09ed5-a346-397f-9e6b-581227b52356 -2020,La Pampa,I.3.1,3.506577305,TJ,CO2,73300.0,kg/TJ,257032.1164565,Naphtha combustion consumption by petrochemical industries,AR-L,SESCO,annual,kg,8b7fcc76-2f1b-3188-ae48-df2bff963aeb -2020,La Pampa,I.3.1,3.506577305,TJ,CH4,3.0,kg/TJ,10.519731915,Naphtha combustion consumption by petrochemical industries,AR-L,SESCO,annual,kg,2af18f1d-e339-33cd-80c6-1167e116a00f -2020,La Pampa,I.3.1,3.506577305,TJ,N2O,0.6,kg/TJ,2.103946383,Naphtha combustion consumption by petrochemical industries,AR-L,SESCO,annual,kg,5c860d2e-a3d8-385d-b902-94eae9d9832b -2020,Santa Fe,I.3.1,2.67040851,TJ,CO2,73300.0,kg/TJ,195740.943783,Naphtha combustion consumption by petrochemical industries,AR-S,SESCO,annual,kg,fd9a375d-463b-3842-bb84-77269d18c3d4 -2020,Santa Fe,I.3.1,2.67040851,TJ,CH4,3.0,kg/TJ,8.01122553,Naphtha combustion consumption by petrochemical industries,AR-S,SESCO,annual,kg,0a20c220-2270-3178-b192-a4a6a8dab31c -2020,Santa Fe,I.3.1,2.67040851,TJ,N2O,0.6,kg/TJ,1.602245106,Naphtha combustion consumption by petrochemical industries,AR-S,SESCO,annual,kg,b5d94edb-d3e6-35e0-8a48-625e13b95581 -2020,Santiago del Estero,I.3.1,0.135997785,TJ,CO2,73300.0,kg/TJ,9968.637640500001,Naphtha combustion consumption by petrochemical industries,AR-G,SESCO,annual,kg,c508beb1-6bca-35a8-9043-53a0d9e2e631 -2020,Santiago del Estero,I.3.1,0.135997785,TJ,CH4,3.0,kg/TJ,0.407993355,Naphtha combustion consumption by petrochemical industries,AR-G,SESCO,annual,kg,09d9c850-2750-3a28-b2b4-d4d1acb0f522 -2020,Santiago del Estero,I.3.1,0.135997785,TJ,N2O,0.6,kg/TJ,0.081598671,Naphtha combustion consumption by petrochemical industries,AR-G,SESCO,annual,kg,86a68576-0e1a-3bb5-be5b-8b8ddf833b10 -2020,Tucuman,I.3.1,0.137711035,TJ,CO2,73300.0,kg/TJ,10094.2188655,Naphtha combustion consumption by petrochemical industries,AR-T,SESCO,annual,kg,364e03fd-84fe-3001-9441-01c054e06fbd -2020,Tucuman,I.3.1,0.137711035,TJ,CH4,3.0,kg/TJ,0.413133105,Naphtha combustion consumption by petrochemical industries,AR-T,SESCO,annual,kg,34c89550-47c7-39a0-a439-1fbe9b53aeb9 -2020,Tucuman,I.3.1,0.137711035,TJ,N2O,0.6,kg/TJ,0.082626621,Naphtha combustion consumption by petrochemical industries,AR-T,SESCO,annual,kg,689b72a1-fd53-3f00-93c5-107554d253af -2021,Buenos Aires,I.3.1,7.657439999999999,TJ,CO2,74100.0,kg/TJ,567416.304,Gas Oil combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,0e102e6b-dcee-3618-874d-fede17c2982c -2021,Buenos Aires,I.3.1,7.657439999999999,TJ,CH4,3.0,kg/TJ,22.972319999999996,Gas Oil combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,9d60b62c-7d0e-31d5-badf-65608a76179b -2021,Buenos Aires,I.3.1,7.657439999999999,TJ,N2O,0.6,kg/TJ,4.594463999999999,Gas Oil combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,cfc1cb8e-00d1-36f8-bb17-4cf2acaf493f -2021,Buenos Aires,I.3.1,2.4561599999999997,TJ,CO2,74100.0,kg/TJ,182001.45599999998,Gas Oil combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,fb18e9b9-2414-3959-8ac8-d660ac854e2e -2021,Buenos Aires,I.3.1,2.4561599999999997,TJ,CH4,3.0,kg/TJ,7.368479999999999,Gas Oil combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,e77287bf-0493-3fff-8602-6b0680f03d17 -2021,Buenos Aires,I.3.1,2.4561599999999997,TJ,N2O,0.6,kg/TJ,1.4736959999999997,Gas Oil combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,30e3af70-2ff9-3f0a-aa53-621de6f0dc58 -2021,Capital Federal,I.3.1,1.01136,TJ,CO2,74100.0,kg/TJ,74941.776,Gas Oil combustion consumption by petrochemical industries,AR-C,SESCO,annual,kg,c4fc5e6c-066e-3daa-b4bd-6e969e917a50 -2021,Capital Federal,I.3.1,1.01136,TJ,CH4,3.0,kg/TJ,3.0340800000000003,Gas Oil combustion consumption by petrochemical industries,AR-C,SESCO,annual,kg,ed8c6b6e-2c83-3f12-88ac-553635f17a38 -2021,Capital Federal,I.3.1,1.01136,TJ,N2O,0.6,kg/TJ,0.606816,Gas Oil combustion consumption by petrochemical industries,AR-C,SESCO,annual,kg,ac4f1d08-23ad-3215-a27b-0e97ca39a82c -2021,Buenos Aires,I.3.1,0.41118,TJ,CO2,73300.0,kg/TJ,30139.494,Naphtha combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,bf916502-6210-379f-9df9-ba2b45a7152b -2021,Buenos Aires,I.3.1,0.41118,TJ,CH4,3.0,kg/TJ,1.23354,Naphtha combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,bd7df63d-7601-3f5b-bb8e-0c6039a20d2a -2021,Buenos Aires,I.3.1,0.41118,TJ,N2O,0.6,kg/TJ,0.24670799999999998,Naphtha combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,0eaac26f-2e1e-3249-a5a3-76d0344b04b5 -2021,Buenos Aires,I.3.1,3.6246259999999997,TJ,CO2,69300.0,kg/TJ,251186.58179999999,Motor Gasoline combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,f80d0ccc-8823-3db6-9bf7-8fd1c5810a14 -2021,Buenos Aires,I.3.1,3.6246259999999997,TJ,CH4,3.0,kg/TJ,10.873878,Motor Gasoline combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,778879d1-9cb2-3a49-ada5-399d9f48e16d -2021,Buenos Aires,I.3.1,3.6246259999999997,TJ,N2O,0.6,kg/TJ,2.1747756,Motor Gasoline combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,e355f6f7-8efa-364a-bcc6-d25c655eff40 -2021,Chaco,I.3.1,14.245994,TJ,CO2,69300.0,kg/TJ,987247.3842,Motor Gasoline combustion consumption by petrochemical industries,AR-H,SESCO,annual,kg,faae3a81-c50d-3edd-8401-80b451af4e17 -2021,Chaco,I.3.1,14.245994,TJ,CH4,3.0,kg/TJ,42.737982,Motor Gasoline combustion consumption by petrochemical industries,AR-H,SESCO,annual,kg,1314d4c8-567f-3847-9d9b-2eca6a394be9 -2021,Chaco,I.3.1,14.245994,TJ,N2O,0.6,kg/TJ,8.5475964,Motor Gasoline combustion consumption by petrochemical industries,AR-H,SESCO,annual,kg,f13d1757-12bb-3320-b48c-249db3f3381d -2021,La Pampa,I.3.1,1.1961,TJ,CO2,69300.0,kg/TJ,82889.73,Motor Gasoline combustion consumption by petrochemical industries,AR-L,SESCO,annual,kg,64645af3-a5ba-30e3-aed8-71e96fc11b63 -2021,La Pampa,I.3.1,1.1961,TJ,CH4,3.0,kg/TJ,3.5883,Motor Gasoline combustion consumption by petrochemical industries,AR-L,SESCO,annual,kg,8095581a-5c50-3509-8937-cacc4369d541 -2021,La Pampa,I.3.1,1.1961,TJ,N2O,0.6,kg/TJ,0.71766,Motor Gasoline combustion consumption by petrochemical industries,AR-L,SESCO,annual,kg,bd8877dc-c826-3de7-83ca-c85fa26819b6 -2021,La Pampa,I.3.1,54.83016,TJ,CO2,74100.0,kg/TJ,4062914.856,Gas Oil combustion consumption by petrochemical industries,AR-L,SESCO,annual,kg,c580614e-d090-3a3a-9bf4-a7008278d344 -2021,La Pampa,I.3.1,54.83016,TJ,CH4,3.0,kg/TJ,164.49048,Gas Oil combustion consumption by petrochemical industries,AR-L,SESCO,annual,kg,f091b873-a94f-30fa-be6a-d7200aedfc51 -2021,La Pampa,I.3.1,54.83016,TJ,N2O,0.6,kg/TJ,32.898095999999995,Gas Oil combustion consumption by petrochemical industries,AR-L,SESCO,annual,kg,220eabc7-aa2d-3f86-acb0-4802c2c282ea -2021,La Pampa,I.3.1,16.21788,TJ,CO2,74100.0,kg/TJ,1201744.908,Gas Oil combustion consumption by petrochemical industries,AR-L,SESCO,annual,kg,901f2b55-a726-3f5e-b92e-24b5b4aa5de2 -2021,La Pampa,I.3.1,16.21788,TJ,CH4,3.0,kg/TJ,48.65364,Gas Oil combustion consumption by petrochemical industries,AR-L,SESCO,annual,kg,03236f5b-5f31-3aff-bd4a-453134b12e2a -2021,La Pampa,I.3.1,16.21788,TJ,N2O,0.6,kg/TJ,9.730728000000001,Gas Oil combustion consumption by petrochemical industries,AR-L,SESCO,annual,kg,bc54405a-a965-3e7b-8a4f-feb5dd79bf40 -2021,La Pampa,I.3.1,16.961175,TJ,CO2,73300.0,kg/TJ,1243254.1275,Naphtha combustion consumption by petrochemical industries,AR-L,SESCO,annual,kg,ea92c41e-e783-303e-9f10-79021c32f06f -2021,La Pampa,I.3.1,16.961175,TJ,CH4,3.0,kg/TJ,50.883525000000006,Naphtha combustion consumption by petrochemical industries,AR-L,SESCO,annual,kg,bb1ca9ee-71c3-3dba-914b-14dd0405faa5 -2021,La Pampa,I.3.1,16.961175,TJ,N2O,0.6,kg/TJ,10.176705,Naphtha combustion consumption by petrochemical industries,AR-L,SESCO,annual,kg,9fa439d4-827d-3d44-b76b-d7562fc380e1 -2021,La Pampa,I.3.1,4.488715,TJ,CO2,73300.0,kg/TJ,329022.8095,Naphtha combustion consumption by petrochemical industries,AR-L,SESCO,annual,kg,8f64cecd-1c11-3f7d-bc0a-c3bf223fc9f6 -2021,La Pampa,I.3.1,4.488715,TJ,CH4,3.0,kg/TJ,13.466145000000001,Naphtha combustion consumption by petrochemical industries,AR-L,SESCO,annual,kg,fe0da2b5-9303-330d-9cd9-faf605418ccc -2021,La Pampa,I.3.1,4.488715,TJ,N2O,0.6,kg/TJ,2.693229,Naphtha combustion consumption by petrochemical industries,AR-L,SESCO,annual,kg,c50e6e9b-9003-30bf-ba5f-e4bfd3467270 -2021,Buenos Aires,I.3.1,108.04769999999999,TJ,CO2,69300.0,kg/TJ,7487705.609999999,Motor Gasoline combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,f27eae09-84b5-3405-8a01-44a490738c84 -2021,Buenos Aires,I.3.1,108.04769999999999,TJ,CH4,3.0,kg/TJ,324.1431,Motor Gasoline combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,66d42d27-844d-3f60-af8b-f747086b3bb1 -2021,Buenos Aires,I.3.1,108.04769999999999,TJ,N2O,0.6,kg/TJ,64.82861999999999,Motor Gasoline combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,7c5ee93e-b46a-3134-a792-9bdd232a1f65 -2021,Capital Federal,I.3.1,89.8847,TJ,CO2,69300.0,kg/TJ,6229009.71,Motor Gasoline combustion consumption by petrochemical industries,AR-C,SESCO,annual,kg,7da776ef-38de-358c-9f54-4acd6cc09dbf -2021,Capital Federal,I.3.1,89.8847,TJ,CH4,3.0,kg/TJ,269.65409999999997,Motor Gasoline combustion consumption by petrochemical industries,AR-C,SESCO,annual,kg,dff54b46-5375-3973-964d-221555aadfe1 -2021,Capital Federal,I.3.1,89.8847,TJ,N2O,0.6,kg/TJ,53.93082,Motor Gasoline combustion consumption by petrochemical industries,AR-C,SESCO,annual,kg,45b73c99-76da-3bb8-a5b1-c713fc4096cb -2021,Chaco,I.3.1,26.2699,TJ,CO2,69300.0,kg/TJ,1820504.07,Motor Gasoline combustion consumption by petrochemical industries,AR-H,SESCO,annual,kg,42858185-52b5-3b2c-b181-7aa08f9cae32 -2021,Chaco,I.3.1,26.2699,TJ,CH4,3.0,kg/TJ,78.80969999999999,Motor Gasoline combustion consumption by petrochemical industries,AR-H,SESCO,annual,kg,2dfb1534-2fdc-3eee-a9d2-ee0ca1499c36 -2021,Chaco,I.3.1,26.2699,TJ,N2O,0.6,kg/TJ,15.76194,Motor Gasoline combustion consumption by petrochemical industries,AR-H,SESCO,annual,kg,42da9538-9d64-3f92-a99a-151db89754fd -2021,Córdoba,I.3.1,363.30429999999996,TJ,CO2,69300.0,kg/TJ,25176987.99,Motor Gasoline combustion consumption by petrochemical industries,AR-X,SESCO,annual,kg,76efb9dc-33f0-3c4c-9c03-005a826e8d04 -2021,Córdoba,I.3.1,363.30429999999996,TJ,CH4,3.0,kg/TJ,1089.9128999999998,Motor Gasoline combustion consumption by petrochemical industries,AR-X,SESCO,annual,kg,be73abf5-d735-3013-a333-86782991f1cf -2021,Córdoba,I.3.1,363.30429999999996,TJ,N2O,0.6,kg/TJ,217.98257999999996,Motor Gasoline combustion consumption by petrochemical industries,AR-X,SESCO,annual,kg,55e75854-4f40-3c24-b7f7-5dbf733b0f15 -2021,Entre Rios,I.3.1,33.224999999999994,TJ,CO2,69300.0,kg/TJ,2302492.4999999995,Motor Gasoline combustion consumption by petrochemical industries,AR-E,SESCO,annual,kg,103065c5-5dca-3ca5-8f14-5dcd490fae7e -2021,Entre Rios,I.3.1,33.224999999999994,TJ,CH4,3.0,kg/TJ,99.67499999999998,Motor Gasoline combustion consumption by petrochemical industries,AR-E,SESCO,annual,kg,aa05dbd2-7cb7-38eb-a6e8-82b30b7c9b5f -2021,Entre Rios,I.3.1,33.224999999999994,TJ,N2O,0.6,kg/TJ,19.934999999999995,Motor Gasoline combustion consumption by petrochemical industries,AR-E,SESCO,annual,kg,d132160c-2293-3ebb-b057-1ac2599a105f -2021,Misiones,I.3.1,258.04749999999996,TJ,CO2,69300.0,kg/TJ,17882691.749999996,Motor Gasoline combustion consumption by petrochemical industries,AR-N,SESCO,annual,kg,5be5dbf8-e3af-3122-a0dc-baaf185da39a -2021,Misiones,I.3.1,258.04749999999996,TJ,CH4,3.0,kg/TJ,774.1424999999999,Motor Gasoline combustion consumption by petrochemical industries,AR-N,SESCO,annual,kg,86f80482-9b50-3151-858a-6097481fa6aa -2021,Misiones,I.3.1,258.04749999999996,TJ,N2O,0.6,kg/TJ,154.82849999999996,Motor Gasoline combustion consumption by petrochemical industries,AR-N,SESCO,annual,kg,9474c15d-cb41-35c5-89ac-457c0364298a -2021,Neuquén,I.3.1,37.344899999999996,TJ,CO2,69300.0,kg/TJ,2588001.57,Motor Gasoline combustion consumption by petrochemical industries,AR-Q,SESCO,annual,kg,8e9bdac0-f8c7-38d8-984d-989d43d63fcf -2021,Neuquén,I.3.1,37.344899999999996,TJ,CH4,3.0,kg/TJ,112.03469999999999,Motor Gasoline combustion consumption by petrochemical industries,AR-Q,SESCO,annual,kg,bab3ab09-eda1-3488-b355-126c1af2121d -2021,Neuquén,I.3.1,37.344899999999996,TJ,N2O,0.6,kg/TJ,22.406939999999995,Motor Gasoline combustion consumption by petrochemical industries,AR-Q,SESCO,annual,kg,05c63c94-160b-3bb2-a608-f1d0e5d6885b -2021,San Juan,I.3.1,3.544,TJ,CO2,69300.0,kg/TJ,245599.2,Motor Gasoline combustion consumption by petrochemical industries,AR-J,SESCO,annual,kg,f5ba1eee-0a13-348a-ac4b-f6ba78f4acc3 -2021,San Juan,I.3.1,3.544,TJ,CH4,3.0,kg/TJ,10.632,Motor Gasoline combustion consumption by petrochemical industries,AR-J,SESCO,annual,kg,ea67bab9-ce24-356e-938f-ec0dd66247fb -2021,San Juan,I.3.1,3.544,TJ,N2O,0.6,kg/TJ,2.1264,Motor Gasoline combustion consumption by petrochemical industries,AR-J,SESCO,annual,kg,ec25c444-d817-3d40-aabd-c1a904c1af66 -2021,Santa Fe,I.3.1,139.05769999999998,TJ,CO2,69300.0,kg/TJ,9636698.61,Motor Gasoline combustion consumption by petrochemical industries,AR-S,SESCO,annual,kg,11bc7a96-ff45-3c42-8b6b-689f3db332b4 -2021,Santa Fe,I.3.1,139.05769999999998,TJ,CH4,3.0,kg/TJ,417.1731,Motor Gasoline combustion consumption by petrochemical industries,AR-S,SESCO,annual,kg,b831adaf-611e-3bca-ae41-27d6c977d4d2 -2021,Santa Fe,I.3.1,139.05769999999998,TJ,N2O,0.6,kg/TJ,83.43461999999998,Motor Gasoline combustion consumption by petrochemical industries,AR-S,SESCO,annual,kg,08681970-e10a-3bd4-b06e-304ac7a55c0a -2021,Santiago del Estero,I.3.1,1.1961,TJ,CO2,69300.0,kg/TJ,82889.73,Motor Gasoline combustion consumption by petrochemical industries,AR-G,SESCO,annual,kg,ae01f25c-7c86-3367-bd36-31c4b4261a30 -2021,Santiago del Estero,I.3.1,1.1961,TJ,CH4,3.0,kg/TJ,3.5883,Motor Gasoline combustion consumption by petrochemical industries,AR-G,SESCO,annual,kg,7738b84f-097a-3096-829c-b003f8c0ed7d -2021,Santiago del Estero,I.3.1,1.1961,TJ,N2O,0.6,kg/TJ,0.71766,Motor Gasoline combustion consumption by petrochemical industries,AR-G,SESCO,annual,kg,b0a4baaf-b024-326c-9f7e-34846f29332a -2021,Buenos Aires,I.3.1,352.7118,TJ,CO2,74100.0,kg/TJ,26135944.38,Gas Oil combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,46d1cc5e-d64e-3b9b-bc86-d4fcbd1d125c -2021,Buenos Aires,I.3.1,352.7118,TJ,CH4,3.0,kg/TJ,1058.1354,Gas Oil combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,b054658f-a4c3-34d8-8319-e7046fd345b0 -2021,Buenos Aires,I.3.1,352.7118,TJ,N2O,0.6,kg/TJ,211.62707999999998,Gas Oil combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,10fef172-e7e4-3a70-99f0-4b5c6f76f8e3 -2021,Capital Federal,I.3.1,37.7454,TJ,CO2,74100.0,kg/TJ,2796934.1399999997,Gas Oil combustion consumption by petrochemical industries,AR-C,SESCO,annual,kg,20ebbf8b-77bd-3631-b318-7df7579aea9f -2021,Capital Federal,I.3.1,37.7454,TJ,CH4,3.0,kg/TJ,113.2362,Gas Oil combustion consumption by petrochemical industries,AR-C,SESCO,annual,kg,df6ce6bb-b748-3166-9996-3d35a6452edb -2021,Capital Federal,I.3.1,37.7454,TJ,N2O,0.6,kg/TJ,22.647239999999996,Gas Oil combustion consumption by petrochemical industries,AR-C,SESCO,annual,kg,5f0b454e-5886-3780-8254-b3a7db0c2939 -2021,Córdoba,I.3.1,65.48555999999999,TJ,CO2,74100.0,kg/TJ,4852479.995999999,Gas Oil combustion consumption by petrochemical industries,AR-X,SESCO,annual,kg,698158ae-c320-3dda-a3d0-93a0f004795f -2021,Córdoba,I.3.1,65.48555999999999,TJ,CH4,3.0,kg/TJ,196.45667999999998,Gas Oil combustion consumption by petrochemical industries,AR-X,SESCO,annual,kg,2e87542e-a6e9-3833-b101-176e05fa4e7f -2021,Córdoba,I.3.1,65.48555999999999,TJ,N2O,0.6,kg/TJ,39.291335999999994,Gas Oil combustion consumption by petrochemical industries,AR-X,SESCO,annual,kg,8aab5f87-7f79-3c81-b91c-aba2c98472b3 -2021,Entre Rios,I.3.1,13.111559999999999,TJ,CO2,74100.0,kg/TJ,971566.5959999999,Gas Oil combustion consumption by petrochemical industries,AR-E,SESCO,annual,kg,b63d0505-edc8-34de-8441-ad7e34084428 -2021,Entre Rios,I.3.1,13.111559999999999,TJ,CH4,3.0,kg/TJ,39.33468,Gas Oil combustion consumption by petrochemical industries,AR-E,SESCO,annual,kg,e5b831ea-6e88-3418-a70b-7bca6c8fb66b -2021,Entre Rios,I.3.1,13.111559999999999,TJ,N2O,0.6,kg/TJ,7.866935999999999,Gas Oil combustion consumption by petrochemical industries,AR-E,SESCO,annual,kg,0b2ed4a1-ebb7-3f64-97b2-d8196ee0de5e -2021,Mendoza,I.3.1,22.35828,TJ,CO2,74100.0,kg/TJ,1656748.548,Gas Oil combustion consumption by petrochemical industries,AR-M,SESCO,annual,kg,51b0858a-633a-38b1-8da0-b3cdbf8906c5 -2021,Mendoza,I.3.1,22.35828,TJ,CH4,3.0,kg/TJ,67.07484,Gas Oil combustion consumption by petrochemical industries,AR-M,SESCO,annual,kg,644af527-9a0f-350c-a2a5-36fab5737b04 -2021,Mendoza,I.3.1,22.35828,TJ,N2O,0.6,kg/TJ,13.414968,Gas Oil combustion consumption by petrochemical industries,AR-M,SESCO,annual,kg,0daaaf05-2e9b-3462-9851-a35b32b2c8af -2021,Misiones,I.3.1,24.489359999999998,TJ,CO2,74100.0,kg/TJ,1814661.576,Gas Oil combustion consumption by petrochemical industries,AR-N,SESCO,annual,kg,66e79f08-f865-3204-bfaa-e63491bc86fe -2021,Misiones,I.3.1,24.489359999999998,TJ,CH4,3.0,kg/TJ,73.46807999999999,Gas Oil combustion consumption by petrochemical industries,AR-N,SESCO,annual,kg,e4d24fdd-d0cb-34e0-a43e-4af83182a6e8 -2021,Misiones,I.3.1,24.489359999999998,TJ,N2O,0.6,kg/TJ,14.693615999999999,Gas Oil combustion consumption by petrochemical industries,AR-N,SESCO,annual,kg,0a6a6f62-4da8-3f1c-9487-ebb645e5f551 -2021,Neuquén,I.3.1,50.09844,TJ,CO2,74100.0,kg/TJ,3712294.4039999996,Gas Oil combustion consumption by petrochemical industries,AR-Q,SESCO,annual,kg,e962493d-1736-36a4-a73b-ba09f8955362 -2021,Neuquén,I.3.1,50.09844,TJ,CH4,3.0,kg/TJ,150.29532,Gas Oil combustion consumption by petrochemical industries,AR-Q,SESCO,annual,kg,ffa1fc4a-8e7a-3c38-b603-35870dabec05 -2021,Neuquén,I.3.1,50.09844,TJ,N2O,0.6,kg/TJ,30.059063999999996,Gas Oil combustion consumption by petrochemical industries,AR-Q,SESCO,annual,kg,2695ca76-7d77-3a27-b2f5-07af3cbe7219 -2021,Salta,I.3.1,92.75616,TJ,CO2,74100.0,kg/TJ,6873231.455999999,Gas Oil combustion consumption by petrochemical industries,AR-A,SESCO,annual,kg,d80d86f4-46bf-3d88-a993-56d740fc07ba -2021,Salta,I.3.1,92.75616,TJ,CH4,3.0,kg/TJ,278.26847999999995,Gas Oil combustion consumption by petrochemical industries,AR-A,SESCO,annual,kg,54e4b435-5c44-31f6-a005-2f4fa42d064a -2021,Salta,I.3.1,92.75616,TJ,N2O,0.6,kg/TJ,55.653696,Gas Oil combustion consumption by petrochemical industries,AR-A,SESCO,annual,kg,86326507-ed4a-3fd3-b70a-0b0e5ff961fd -2021,San Juan,I.3.1,48.47304,TJ,CO2,74100.0,kg/TJ,3591852.264,Gas Oil combustion consumption by petrochemical industries,AR-J,SESCO,annual,kg,e63b8a24-dbd7-324f-84bc-5d047facdbfc -2021,San Juan,I.3.1,48.47304,TJ,CH4,3.0,kg/TJ,145.41912,Gas Oil combustion consumption by petrochemical industries,AR-J,SESCO,annual,kg,9e58abe8-050f-30e3-ae80-04407c0871fc -2021,San Juan,I.3.1,48.47304,TJ,N2O,0.6,kg/TJ,29.083823999999996,Gas Oil combustion consumption by petrochemical industries,AR-J,SESCO,annual,kg,9e6b11d1-e611-39ed-a61b-5c03fc069cff -2021,Santa Fe,I.3.1,113.34456,TJ,CO2,74100.0,kg/TJ,8398831.896,Gas Oil combustion consumption by petrochemical industries,AR-S,SESCO,annual,kg,411f8615-5b1c-35fb-aec9-3117f0484a14 -2021,Santa Fe,I.3.1,113.34456,TJ,CH4,3.0,kg/TJ,340.03368,Gas Oil combustion consumption by petrochemical industries,AR-S,SESCO,annual,kg,71b0484c-9ea1-310f-8cae-909cd0cfec29 -2021,Santa Fe,I.3.1,113.34456,TJ,N2O,0.6,kg/TJ,68.006736,Gas Oil combustion consumption by petrochemical industries,AR-S,SESCO,annual,kg,f00a50b2-fcb2-3d12-a41f-b95a574f5ac5 -2021,Tucuman,I.3.1,122.41068,TJ,CO2,74100.0,kg/TJ,9070631.388,Gas Oil combustion consumption by petrochemical industries,AR-T,SESCO,annual,kg,0b055e61-88c1-38a4-a4d9-81da3d59e77c -2021,Tucuman,I.3.1,122.41068,TJ,CH4,3.0,kg/TJ,367.23204,Gas Oil combustion consumption by petrochemical industries,AR-T,SESCO,annual,kg,806bc6ac-5ba3-3ba7-b8a4-f6d2cbfe530c -2021,Tucuman,I.3.1,122.41068,TJ,N2O,0.6,kg/TJ,73.44640799999999,Gas Oil combustion consumption by petrochemical industries,AR-T,SESCO,annual,kg,930cbc91-e2cf-3a34-aba8-5c9d40921e31 -2021,Buenos Aires,I.3.1,65.30496,TJ,CO2,74100.0,kg/TJ,4839097.535999999,Gas Oil combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,dee0a686-8a98-39bc-9168-56276f423022 -2021,Buenos Aires,I.3.1,65.30496,TJ,CH4,3.0,kg/TJ,195.91487999999998,Gas Oil combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,04fab6db-491d-3468-ac77-52ed98172e3e -2021,Buenos Aires,I.3.1,65.30496,TJ,N2O,0.6,kg/TJ,39.182976,Gas Oil combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,329eb756-0743-3e0d-8d0f-2b4d506b53db -2021,Capital Federal,I.3.1,50.09844,TJ,CO2,74100.0,kg/TJ,3712294.4039999996,Gas Oil combustion consumption by petrochemical industries,AR-C,SESCO,annual,kg,7be25857-5055-3f82-9117-cace117a8dd0 -2021,Capital Federal,I.3.1,50.09844,TJ,CH4,3.0,kg/TJ,150.29532,Gas Oil combustion consumption by petrochemical industries,AR-C,SESCO,annual,kg,524b6afe-e2a8-3d9f-bd52-cc4bda51e335 -2021,Capital Federal,I.3.1,50.09844,TJ,N2O,0.6,kg/TJ,30.059063999999996,Gas Oil combustion consumption by petrochemical industries,AR-C,SESCO,annual,kg,b5498bb1-ba01-3583-b087-03a5ddca2d8d -2021,Córdoba,I.3.1,5.12904,TJ,CO2,74100.0,kg/TJ,380061.864,Gas Oil combustion consumption by petrochemical industries,AR-X,SESCO,annual,kg,ad9989e5-3bc8-367d-8dcb-3325d0dc700d -2021,Córdoba,I.3.1,5.12904,TJ,CH4,3.0,kg/TJ,15.38712,Gas Oil combustion consumption by petrochemical industries,AR-X,SESCO,annual,kg,1f677e72-3fca-36dd-9986-3ab76d5e8dc3 -2021,Córdoba,I.3.1,5.12904,TJ,N2O,0.6,kg/TJ,3.0774239999999997,Gas Oil combustion consumption by petrochemical industries,AR-X,SESCO,annual,kg,c4df2fd8-8116-31e3-8e9c-6bd53345d24b -2021,Jujuy,I.3.1,1.3364399999999999,TJ,CO2,74100.0,kg/TJ,99030.20399999998,Gas Oil combustion consumption by petrochemical industries,AR-Y,SESCO,annual,kg,37e79b38-918d-310d-9272-fbf3d46c4331 -2021,Jujuy,I.3.1,1.3364399999999999,TJ,CH4,3.0,kg/TJ,4.00932,Gas Oil combustion consumption by petrochemical industries,AR-Y,SESCO,annual,kg,1d8152e3-b692-37d9-b2cf-bbd83070222b -2021,Jujuy,I.3.1,1.3364399999999999,TJ,N2O,0.6,kg/TJ,0.8018639999999999,Gas Oil combustion consumption by petrochemical industries,AR-Y,SESCO,annual,kg,c75c8b8b-df0b-3993-ac36-aee0675ddab2 -2021,Salta,I.3.1,4.22604,TJ,CO2,74100.0,kg/TJ,313149.564,Gas Oil combustion consumption by petrochemical industries,AR-A,SESCO,annual,kg,5afb96cd-b07e-3295-916d-2f87ba8cd302 -2021,Salta,I.3.1,4.22604,TJ,CH4,3.0,kg/TJ,12.67812,Gas Oil combustion consumption by petrochemical industries,AR-A,SESCO,annual,kg,bc32d2ac-1ec6-37db-a9c2-8ec7c609b67b -2021,Salta,I.3.1,4.22604,TJ,N2O,0.6,kg/TJ,2.535624,Gas Oil combustion consumption by petrochemical industries,AR-A,SESCO,annual,kg,2645d6be-887b-3543-91ab-4e75e025b087 -2021,Santa Fe,I.3.1,14.15904,TJ,CO2,74100.0,kg/TJ,1049184.8639999998,Gas Oil combustion consumption by petrochemical industries,AR-S,SESCO,annual,kg,6e99e3ce-e21c-348f-a9fa-0441fb43e53c -2021,Santa Fe,I.3.1,14.15904,TJ,CH4,3.0,kg/TJ,42.47712,Gas Oil combustion consumption by petrochemical industries,AR-S,SESCO,annual,kg,741e95e7-8e5e-3288-9e78-2b99e192f39d -2021,Santa Fe,I.3.1,14.15904,TJ,N2O,0.6,kg/TJ,8.495424,Gas Oil combustion consumption by petrochemical industries,AR-S,SESCO,annual,kg,2ffb3ef2-a2ea-3fa5-a2dd-cff4b9fc6b34 -2021,Tucuman,I.3.1,1.58928,TJ,CO2,74100.0,kg/TJ,117765.648,Gas Oil combustion consumption by petrochemical industries,AR-T,SESCO,annual,kg,b9f396e5-41bc-3d76-b1c1-a8f813c45dd6 -2021,Tucuman,I.3.1,1.58928,TJ,CH4,3.0,kg/TJ,4.76784,Gas Oil combustion consumption by petrochemical industries,AR-T,SESCO,annual,kg,992859f0-baae-3552-a605-602f765a7164 -2021,Tucuman,I.3.1,1.58928,TJ,N2O,0.6,kg/TJ,0.953568,Gas Oil combustion consumption by petrochemical industries,AR-T,SESCO,annual,kg,1b1cfbf7-c27d-3ee7-a7e6-aa962773d81e -2021,Santa Fe,I.3.1,5.66154,TJ,CO2,71500.0,kg/TJ,404800.11,Jet Kerosene combustion consumption by petrochemical industries,AR-S,SESCO,annual,kg,301c1010-5d7e-3ce2-8c6a-f142d5d92aa1 -2021,Santa Fe,I.3.1,5.66154,TJ,CH4,3.0,kg/TJ,16.98462,Jet Kerosene combustion consumption by petrochemical industries,AR-S,SESCO,annual,kg,0df4d14d-2a88-398e-8c79-6deedbfd37a4 -2021,Santa Fe,I.3.1,5.66154,TJ,N2O,0.6,kg/TJ,3.396924,Jet Kerosene combustion consumption by petrochemical industries,AR-S,SESCO,annual,kg,2f555625-6c5a-3e7d-ad26-73c446153f10 -2021,Buenos Aires,I.3.1,49.170275,TJ,CO2,73300.0,kg/TJ,3604181.1574999997,Naphtha combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,d1be6e39-dded-358b-8fd6-25124d8757d6 -2021,Buenos Aires,I.3.1,49.170275,TJ,CH4,3.0,kg/TJ,147.51082499999998,Naphtha combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,2663279b-2ee8-3545-8826-46fc6853565f -2021,Buenos Aires,I.3.1,49.170275,TJ,N2O,0.6,kg/TJ,29.502164999999998,Naphtha combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,74555b40-de34-39ce-ad56-f6bcff052d94 -2021,Misiones,I.3.1,1.78178,TJ,CO2,73300.0,kg/TJ,130604.47399999999,Naphtha combustion consumption by petrochemical industries,AR-N,SESCO,annual,kg,b8364ffc-c95b-3783-9d88-8a0c86a6ec10 -2021,Misiones,I.3.1,1.78178,TJ,CH4,3.0,kg/TJ,5.34534,Naphtha combustion consumption by petrochemical industries,AR-N,SESCO,annual,kg,63fa2ffd-dd6c-3f59-bb8f-90d7ea529f52 -2021,Misiones,I.3.1,1.78178,TJ,N2O,0.6,kg/TJ,1.069068,Naphtha combustion consumption by petrochemical industries,AR-N,SESCO,annual,kg,1d3ba7d1-6689-3939-98ef-d815f87188ef -2021,Buenos Aires,I.3.1,15.384984999999999,TJ,CO2,73300.0,kg/TJ,1127719.4005,Naphtha combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,258da882-198c-3085-b55d-015777bc672e -2021,Buenos Aires,I.3.1,15.384984999999999,TJ,CH4,3.0,kg/TJ,46.154954999999994,Naphtha combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,85f61998-1b6e-3525-8747-23ddf52c7749 -2021,Buenos Aires,I.3.1,15.384984999999999,TJ,N2O,0.6,kg/TJ,9.230991,Naphtha combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,9225a47f-18ee-3502-8fe9-d658799287a0 -2021,Capital Federal,I.3.1,0.513975,TJ,CO2,73300.0,kg/TJ,37674.3675,Naphtha combustion consumption by petrochemical industries,AR-C,SESCO,annual,kg,8d77cf10-913c-35aa-b1a7-a4eaaf0c5109 -2021,Capital Federal,I.3.1,0.513975,TJ,CH4,3.0,kg/TJ,1.541925,Naphtha combustion consumption by petrochemical industries,AR-C,SESCO,annual,kg,4de0dc0d-3285-328e-9597-0404f2d510b6 -2021,Capital Federal,I.3.1,0.513975,TJ,N2O,0.6,kg/TJ,0.30838499999999996,Naphtha combustion consumption by petrochemical industries,AR-C,SESCO,annual,kg,525aee09-dd74-31ca-9193-d91c655e8f06 -2021,Entre Rios,I.3.1,1.541925,TJ,CO2,73300.0,kg/TJ,113023.1025,Naphtha combustion consumption by petrochemical industries,AR-E,SESCO,annual,kg,b1b55acf-1824-38bf-9c5e-e2f3b8374eb5 -2021,Entre Rios,I.3.1,1.541925,TJ,CH4,3.0,kg/TJ,4.625775,Naphtha combustion consumption by petrochemical industries,AR-E,SESCO,annual,kg,3d6e78eb-93a8-3290-96cf-5dd5dc514748 -2021,Entre Rios,I.3.1,1.541925,TJ,N2O,0.6,kg/TJ,0.925155,Naphtha combustion consumption by petrochemical industries,AR-E,SESCO,annual,kg,fcee33e4-9b44-3fd0-9a47-625867d66553 -2021,La Pampa,I.3.1,0.27412,TJ,CO2,73300.0,kg/TJ,20092.996,Naphtha combustion consumption by petrochemical industries,AR-L,SESCO,annual,kg,33c7dbdd-197c-30a1-9405-458e14e0bdd2 -2021,La Pampa,I.3.1,0.27412,TJ,CH4,3.0,kg/TJ,0.82236,Naphtha combustion consumption by petrochemical industries,AR-L,SESCO,annual,kg,dca4e26c-0286-303d-89ad-b71c6923b26c -2021,La Pampa,I.3.1,0.27412,TJ,N2O,0.6,kg/TJ,0.16447199999999998,Naphtha combustion consumption by petrochemical industries,AR-L,SESCO,annual,kg,a86a2f19-23e3-3878-98cc-1a7e764a49fa -2021,Misiones,I.3.1,0.47970999999999997,TJ,CO2,73300.0,kg/TJ,35162.742999999995,Naphtha combustion consumption by petrochemical industries,AR-N,SESCO,annual,kg,0e9fd8aa-11a6-353c-9f6b-f945e1da409e -2021,Misiones,I.3.1,0.47970999999999997,TJ,CH4,3.0,kg/TJ,1.43913,Naphtha combustion consumption by petrochemical industries,AR-N,SESCO,annual,kg,441a4356-dbfd-3d77-877d-7894a73ba865 -2021,Misiones,I.3.1,0.47970999999999997,TJ,N2O,0.6,kg/TJ,0.28782599999999997,Naphtha combustion consumption by petrochemical industries,AR-N,SESCO,annual,kg,7909e333-cfc3-3727-b756-e60731c94a95 -2021,Rio Negro,I.3.1,1.2678049999999998,TJ,CO2,73300.0,kg/TJ,92930.1065,Naphtha combustion consumption by petrochemical industries,AR-R,SESCO,annual,kg,07cf12f5-a6c2-3b41-99d8-2e3bb049c531 -2021,Rio Negro,I.3.1,1.2678049999999998,TJ,CH4,3.0,kg/TJ,3.8034149999999993,Naphtha combustion consumption by petrochemical industries,AR-R,SESCO,annual,kg,82298713-2e68-34b1-901b-9b251dfd4985 -2021,Rio Negro,I.3.1,1.2678049999999998,TJ,N2O,0.6,kg/TJ,0.7606829999999999,Naphtha combustion consumption by petrochemical industries,AR-R,SESCO,annual,kg,d6490c06-6762-35d9-ab80-4a7b4cf07da4 -2021,San Juan,I.3.1,3.76915,TJ,CO2,73300.0,kg/TJ,276278.695,Naphtha combustion consumption by petrochemical industries,AR-J,SESCO,annual,kg,77dbab30-fca3-3a37-8c87-2e7c49295484 -2021,San Juan,I.3.1,3.76915,TJ,CH4,3.0,kg/TJ,11.30745,Naphtha combustion consumption by petrochemical industries,AR-J,SESCO,annual,kg,73da8d51-421b-3c2d-9a4a-15a9a1f072ab -2021,San Juan,I.3.1,3.76915,TJ,N2O,0.6,kg/TJ,2.26149,Naphtha combustion consumption by petrochemical industries,AR-J,SESCO,annual,kg,4012054d-3912-34ca-94eb-39ddf74e0f96 -2021,San Luis,I.3.1,0.856625,TJ,CO2,73300.0,kg/TJ,62790.612499999996,Naphtha combustion consumption by petrochemical industries,AR-D,SESCO,annual,kg,7991b607-4702-36b1-b140-2cf1bf975393 -2021,San Luis,I.3.1,0.856625,TJ,CH4,3.0,kg/TJ,2.5698749999999997,Naphtha combustion consumption by petrochemical industries,AR-D,SESCO,annual,kg,8d9d00b4-6390-3add-8591-88d9fa985896 -2021,San Luis,I.3.1,0.856625,TJ,N2O,0.6,kg/TJ,0.513975,Naphtha combustion consumption by petrochemical industries,AR-D,SESCO,annual,kg,dc2f9405-d43a-3bf8-b777-bd458a811d6b -2021,Santa Fe,I.3.1,0.513975,TJ,CO2,73300.0,kg/TJ,37674.3675,Naphtha combustion consumption by petrochemical industries,AR-S,SESCO,annual,kg,3b6d8ef4-1fa2-3ee8-b61b-3da837891d82 -2021,Santa Fe,I.3.1,0.513975,TJ,CH4,3.0,kg/TJ,1.541925,Naphtha combustion consumption by petrochemical industries,AR-S,SESCO,annual,kg,4021816c-b138-30f9-937f-c6c55c22586f -2021,Santa Fe,I.3.1,0.513975,TJ,N2O,0.6,kg/TJ,0.30838499999999996,Naphtha combustion consumption by petrochemical industries,AR-S,SESCO,annual,kg,6a9a0ebf-f209-398b-96d5-44a9782ed74b -2021,Tucuman,I.3.1,0.925155,TJ,CO2,73300.0,kg/TJ,67813.8615,Naphtha combustion consumption by petrochemical industries,AR-T,SESCO,annual,kg,05edc37f-ecb3-3c87-983f-82a3f513fc7c -2021,Tucuman,I.3.1,0.925155,TJ,CH4,3.0,kg/TJ,2.7754649999999996,Naphtha combustion consumption by petrochemical industries,AR-T,SESCO,annual,kg,1745d64b-9c7c-3e91-ba06-dcdc7173f110 -2021,Tucuman,I.3.1,0.925155,TJ,N2O,0.6,kg/TJ,0.555093,Naphtha combustion consumption by petrochemical industries,AR-T,SESCO,annual,kg,ad22969a-777f-38a5-a72a-d68f402a29d1 -2021,Capital Federal,I.3.1,1187.83049,TJ,CO2,73300.0,kg/TJ,87067974.91700001,Naphtha combustion consumption by petrochemical industries,AR-C,SESCO,annual,kg,28179a18-e6dd-3df0-b053-1a19588ad04c -2021,Capital Federal,I.3.1,1187.83049,TJ,CH4,3.0,kg/TJ,3563.49147,Naphtha combustion consumption by petrochemical industries,AR-C,SESCO,annual,kg,762b06ce-6af0-39b3-85bd-590ca4baef6f -2021,Capital Federal,I.3.1,1187.83049,TJ,N2O,0.6,kg/TJ,712.698294,Naphtha combustion consumption by petrochemical industries,AR-C,SESCO,annual,kg,cd73d943-ac29-3f48-a802-a988be1f10f5 -2022,Buenos Aires,I.3.1,7.8380399999999995,TJ,CO2,74100.0,kg/TJ,580798.764,Gas Oil combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,12d92b52-e861-3df7-84bf-625db1105b65 -2022,Buenos Aires,I.3.1,7.8380399999999995,TJ,CH4,3.0,kg/TJ,23.51412,Gas Oil combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,816bab19-6fd7-3f1e-a10b-f2f83ffb6d2e -2022,Buenos Aires,I.3.1,7.8380399999999995,TJ,N2O,0.6,kg/TJ,4.702824,Gas Oil combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,ddfbdd57-6fd1-3585-bf19-0a5e09429f75 -2022,San Luis,I.3.1,1.30032,TJ,CO2,74100.0,kg/TJ,96353.712,Gas Oil combustion consumption by petrochemical industries,AR-D,SESCO,annual,kg,b5e4a8dc-92ad-3519-a0a2-c57f23329fc9 -2022,San Luis,I.3.1,1.30032,TJ,CH4,3.0,kg/TJ,3.9009599999999995,Gas Oil combustion consumption by petrochemical industries,AR-D,SESCO,annual,kg,e9c74cb5-a1aa-3bc4-a299-931814e50157 -2022,San Luis,I.3.1,1.30032,TJ,N2O,0.6,kg/TJ,0.7801919999999999,Gas Oil combustion consumption by petrochemical industries,AR-D,SESCO,annual,kg,946f3b75-8b50-34f0-9bf4-a6f94a6592a0 -2022,Capital Federal,I.3.1,0.25162399999999996,TJ,CO2,71500.0,kg/TJ,17991.115999999998,Jet Kerosene combustion consumption by petrochemical industries,AR-C,SESCO,annual,kg,62865a33-398c-3e39-bcf5-2a4e18046d58 -2022,Capital Federal,I.3.1,0.25162399999999996,TJ,CH4,3.0,kg/TJ,0.7548719999999999,Jet Kerosene combustion consumption by petrochemical industries,AR-C,SESCO,annual,kg,ecc6600a-6992-3e94-9847-2d2a995c780d -2022,Capital Federal,I.3.1,0.25162399999999996,TJ,N2O,0.6,kg/TJ,0.15097439999999998,Jet Kerosene combustion consumption by petrochemical industries,AR-C,SESCO,annual,kg,e2c30392-61e2-3279-b08a-d5c3fc782d51 -2022,Chaco,I.3.1,11.090062,TJ,CO2,69300.0,kg/TJ,768541.2966,Motor Gasoline combustion consumption by petrochemical industries,AR-H,SESCO,annual,kg,021a75a7-9ed0-33b8-8b64-8dfff9fad6ee -2022,Chaco,I.3.1,11.090062,TJ,CH4,3.0,kg/TJ,33.270185999999995,Motor Gasoline combustion consumption by petrochemical industries,AR-H,SESCO,annual,kg,445825ab-4dec-31b5-b28a-97f7d32116af -2022,Chaco,I.3.1,11.090062,TJ,N2O,0.6,kg/TJ,6.654037199999999,Motor Gasoline combustion consumption by petrochemical industries,AR-H,SESCO,annual,kg,be1c19fb-86a3-3be4-bc05-51b04368e5d7 -2022,Buenos Aires,I.3.1,99.18769999999999,TJ,CO2,69300.0,kg/TJ,6873707.609999999,Motor Gasoline combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,968e565e-65d2-3611-8854-d0a2e0e393e2 -2022,Buenos Aires,I.3.1,99.18769999999999,TJ,CH4,3.0,kg/TJ,297.56309999999996,Motor Gasoline combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,2b62de18-df1b-32cd-af59-0395d4ecbb1e -2022,Buenos Aires,I.3.1,99.18769999999999,TJ,N2O,0.6,kg/TJ,59.51261999999999,Motor Gasoline combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,4bf64659-2485-3dd5-80ef-fd1452dce736 -2022,Capital Federal,I.3.1,81.6006,TJ,CO2,69300.0,kg/TJ,5654921.58,Motor Gasoline combustion consumption by petrochemical industries,AR-C,SESCO,annual,kg,5d39eb38-8f50-3b0f-a895-30f5a1e51c2a -2022,Capital Federal,I.3.1,81.6006,TJ,CH4,3.0,kg/TJ,244.80180000000001,Motor Gasoline combustion consumption by petrochemical industries,AR-C,SESCO,annual,kg,dedf4344-723d-3755-9fd2-d4c6dc192106 -2022,Capital Federal,I.3.1,81.6006,TJ,N2O,0.6,kg/TJ,48.96036,Motor Gasoline combustion consumption by petrochemical industries,AR-C,SESCO,annual,kg,cc06e1d0-54ef-324b-996f-118e23815b14 -2022,Chaco,I.3.1,2.4808,TJ,CO2,69300.0,kg/TJ,171919.44,Motor Gasoline combustion consumption by petrochemical industries,AR-H,SESCO,annual,kg,d9fc90ee-b08c-3886-b355-8e9f2dd4ebde -2022,Chaco,I.3.1,2.4808,TJ,CH4,3.0,kg/TJ,7.442399999999999,Motor Gasoline combustion consumption by petrochemical industries,AR-H,SESCO,annual,kg,53737d42-b2bb-3719-9733-faf17ee5861d -2022,Chaco,I.3.1,2.4808,TJ,N2O,0.6,kg/TJ,1.4884799999999998,Motor Gasoline combustion consumption by petrochemical industries,AR-H,SESCO,annual,kg,a1d97440-ef32-33b6-8cb0-be311cf9dd43 -2022,Córdoba,I.3.1,151.9047,TJ,CO2,69300.0,kg/TJ,10526995.709999999,Motor Gasoline combustion consumption by petrochemical industries,AR-X,SESCO,annual,kg,0c64ff51-7c9f-37ff-b628-71483fd146c5 -2022,Córdoba,I.3.1,151.9047,TJ,CH4,3.0,kg/TJ,455.7141,Motor Gasoline combustion consumption by petrochemical industries,AR-X,SESCO,annual,kg,cfb7d9ce-c193-39af-97e3-74467f0a4f78 -2022,Córdoba,I.3.1,151.9047,TJ,N2O,0.6,kg/TJ,91.14281999999999,Motor Gasoline combustion consumption by petrochemical industries,AR-X,SESCO,annual,kg,0d401a5f-79b4-32ce-81dd-17d7b8cc81ca -2022,Entre Rios,I.3.1,87.49249999999999,TJ,CO2,69300.0,kg/TJ,6063230.249999999,Motor Gasoline combustion consumption by petrochemical industries,AR-E,SESCO,annual,kg,b6e9eb04-5d1c-3985-b7ee-a2e9fa35cd09 -2022,Entre Rios,I.3.1,87.49249999999999,TJ,CH4,3.0,kg/TJ,262.47749999999996,Motor Gasoline combustion consumption by petrochemical industries,AR-E,SESCO,annual,kg,ecbf0ae4-abfd-30ad-9231-f3263c66d65d -2022,Entre Rios,I.3.1,87.49249999999999,TJ,N2O,0.6,kg/TJ,52.49549999999999,Motor Gasoline combustion consumption by petrochemical industries,AR-E,SESCO,annual,kg,82432199-f1aa-30b4-9765-303324cab470 -2022,Misiones,I.3.1,242.32099999999997,TJ,CO2,69300.0,kg/TJ,16792845.299999997,Motor Gasoline combustion consumption by petrochemical industries,AR-N,SESCO,annual,kg,13cd5577-236e-38f1-abc5-e891a38101a3 -2022,Misiones,I.3.1,242.32099999999997,TJ,CH4,3.0,kg/TJ,726.963,Motor Gasoline combustion consumption by petrochemical industries,AR-N,SESCO,annual,kg,64c47687-4266-375b-b8dd-0e68f8b88965 -2022,Misiones,I.3.1,242.32099999999997,TJ,N2O,0.6,kg/TJ,145.3926,Motor Gasoline combustion consumption by petrochemical industries,AR-N,SESCO,annual,kg,0227046b-96bf-3463-a580-626a61f6d21c -2022,Neuquén,I.3.1,31.497299999999996,TJ,CO2,69300.0,kg/TJ,2182762.8899999997,Motor Gasoline combustion consumption by petrochemical industries,AR-Q,SESCO,annual,kg,60b90bde-a17f-3b39-a6d2-690e3aa35d68 -2022,Neuquén,I.3.1,31.497299999999996,TJ,CH4,3.0,kg/TJ,94.49189999999999,Motor Gasoline combustion consumption by petrochemical industries,AR-Q,SESCO,annual,kg,662ddf1c-1657-3bb9-8a04-f254ca316c49 -2022,Neuquén,I.3.1,31.497299999999996,TJ,N2O,0.6,kg/TJ,18.898379999999996,Motor Gasoline combustion consumption by petrochemical industries,AR-Q,SESCO,annual,kg,825ed57a-eba5-31e0-898c-e80d0916bd11 -2022,Santa Fe,I.3.1,113.4523,TJ,CO2,69300.0,kg/TJ,7862244.39,Motor Gasoline combustion consumption by petrochemical industries,AR-S,SESCO,annual,kg,a581eca8-a732-3948-8c2f-701d5ebcadda -2022,Santa Fe,I.3.1,113.4523,TJ,CH4,3.0,kg/TJ,340.3569,Motor Gasoline combustion consumption by petrochemical industries,AR-S,SESCO,annual,kg,d5895230-33c0-39b0-9692-9c4efb42e84a -2022,Santa Fe,I.3.1,113.4523,TJ,N2O,0.6,kg/TJ,68.07137999999999,Motor Gasoline combustion consumption by petrochemical industries,AR-S,SESCO,annual,kg,67f61661-8b6a-317a-92a6-04125ea0730e -2022,Buenos Aires,I.3.1,473.09976,TJ,CO2,74100.0,kg/TJ,35056692.216,Gas Oil combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,3623d107-60bc-3e80-be2b-37372bd9d05a -2022,Buenos Aires,I.3.1,473.09976,TJ,CH4,3.0,kg/TJ,1419.29928,Gas Oil combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,010cedc0-b879-3b8a-a564-b25dfcf1e743 -2022,Buenos Aires,I.3.1,473.09976,TJ,N2O,0.6,kg/TJ,283.859856,Gas Oil combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,46de2989-0c15-319a-9be5-9bd3bacd7469 -2022,Capital Federal,I.3.1,17.08476,TJ,CO2,74100.0,kg/TJ,1265980.716,Gas Oil combustion consumption by petrochemical industries,AR-C,SESCO,annual,kg,902f43ee-f480-367b-9b5f-0c85fff64dcb -2022,Capital Federal,I.3.1,17.08476,TJ,CH4,3.0,kg/TJ,51.254279999999994,Gas Oil combustion consumption by petrochemical industries,AR-C,SESCO,annual,kg,8c86991b-9b80-313c-aa27-4a1b2718cca4 -2022,Capital Federal,I.3.1,17.08476,TJ,N2O,0.6,kg/TJ,10.250855999999999,Gas Oil combustion consumption by petrochemical industries,AR-C,SESCO,annual,kg,cb6dbdbf-6de9-32d5-8a45-e9f459d94929 -2022,Córdoba,I.3.1,57.32244,TJ,CO2,74100.0,kg/TJ,4247592.8040000005,Gas Oil combustion consumption by petrochemical industries,AR-X,SESCO,annual,kg,99a53f94-17cc-3e33-a4ff-fb5dabd038a9 -2022,Córdoba,I.3.1,57.32244,TJ,CH4,3.0,kg/TJ,171.96732,Gas Oil combustion consumption by petrochemical industries,AR-X,SESCO,annual,kg,0242733f-eee0-3ced-931f-17e0c25e4d99 -2022,Córdoba,I.3.1,57.32244,TJ,N2O,0.6,kg/TJ,34.393464,Gas Oil combustion consumption by petrochemical industries,AR-X,SESCO,annual,kg,cb816d85-a44d-3bb4-9863-ac0c5fc222b3 -2022,Entre Rios,I.3.1,25.71744,TJ,CO2,74100.0,kg/TJ,1905662.304,Gas Oil combustion consumption by petrochemical industries,AR-E,SESCO,annual,kg,08fc1251-0955-302f-95f3-643aa207cfaa -2022,Entre Rios,I.3.1,25.71744,TJ,CH4,3.0,kg/TJ,77.15232,Gas Oil combustion consumption by petrochemical industries,AR-E,SESCO,annual,kg,243ed565-0dc7-3e44-819f-85dcff776eb9 -2022,Entre Rios,I.3.1,25.71744,TJ,N2O,0.6,kg/TJ,15.430463999999999,Gas Oil combustion consumption by petrochemical industries,AR-E,SESCO,annual,kg,7969e277-e895-313d-8d5d-cc15403dccfa -2022,Mendoza,I.3.1,24.850559999999998,TJ,CO2,74100.0,kg/TJ,1841426.4959999998,Gas Oil combustion consumption by petrochemical industries,AR-M,SESCO,annual,kg,6985562a-c5d4-31fa-bb69-20c51f6c61a3 -2022,Mendoza,I.3.1,24.850559999999998,TJ,CH4,3.0,kg/TJ,74.55167999999999,Gas Oil combustion consumption by petrochemical industries,AR-M,SESCO,annual,kg,7d2a8e14-8cee-3d58-94de-a9fa34c3cdb9 -2022,Mendoza,I.3.1,24.850559999999998,TJ,N2O,0.6,kg/TJ,14.910335999999997,Gas Oil combustion consumption by petrochemical industries,AR-M,SESCO,annual,kg,5d8dfa0b-c880-374c-9f2f-15390a03fa4b -2022,Misiones,I.3.1,20.51616,TJ,CO2,74100.0,kg/TJ,1520247.456,Gas Oil combustion consumption by petrochemical industries,AR-N,SESCO,annual,kg,4fc92e43-b550-3511-91bf-e3bf55b3e811 -2022,Misiones,I.3.1,20.51616,TJ,CH4,3.0,kg/TJ,61.54848,Gas Oil combustion consumption by petrochemical industries,AR-N,SESCO,annual,kg,fed4b591-7993-36b8-bf4c-c9142df837bb -2022,Misiones,I.3.1,20.51616,TJ,N2O,0.6,kg/TJ,12.309695999999999,Gas Oil combustion consumption by petrochemical industries,AR-N,SESCO,annual,kg,e409bb53-210e-3550-a2f9-c2faa8ab5247 -2022,Neuquén,I.3.1,384.64187999999996,TJ,CO2,74100.0,kg/TJ,28501963.308,Gas Oil combustion consumption by petrochemical industries,AR-Q,SESCO,annual,kg,c5a0461c-ae04-3bac-b45f-c4e0971b6abd -2022,Neuquén,I.3.1,384.64187999999996,TJ,CH4,3.0,kg/TJ,1153.92564,Gas Oil combustion consumption by petrochemical industries,AR-Q,SESCO,annual,kg,4ed42759-bd2a-3446-85d2-69d629961a31 -2022,Neuquén,I.3.1,384.64187999999996,TJ,N2O,0.6,kg/TJ,230.78512799999996,Gas Oil combustion consumption by petrochemical industries,AR-Q,SESCO,annual,kg,f08e356f-bf4e-387a-b0aa-5429325f5537 -2022,Salta,I.3.1,137.58108,TJ,CO2,74100.0,kg/TJ,10194758.027999999,Gas Oil combustion consumption by petrochemical industries,AR-A,SESCO,annual,kg,f893ae21-d929-31c0-948f-568b3080dc04 -2022,Salta,I.3.1,137.58108,TJ,CH4,3.0,kg/TJ,412.74323999999996,Gas Oil combustion consumption by petrochemical industries,AR-A,SESCO,annual,kg,283a3bcf-a8f0-3928-8948-5d481749da5f -2022,Salta,I.3.1,137.58108,TJ,N2O,0.6,kg/TJ,82.54864799999999,Gas Oil combustion consumption by petrochemical industries,AR-A,SESCO,annual,kg,5e1a6709-d1a7-3d12-90db-e021538e1cef -2022,San Juan,I.3.1,53.20476,TJ,CO2,74100.0,kg/TJ,3942472.716,Gas Oil combustion consumption by petrochemical industries,AR-J,SESCO,annual,kg,b75ae798-d28a-32f1-aef1-34934f1ff883 -2022,San Juan,I.3.1,53.20476,TJ,CH4,3.0,kg/TJ,159.61428,Gas Oil combustion consumption by petrochemical industries,AR-J,SESCO,annual,kg,c39153a3-2199-34d6-b322-10fa7f1defcc -2022,San Juan,I.3.1,53.20476,TJ,N2O,0.6,kg/TJ,31.922856,Gas Oil combustion consumption by petrochemical industries,AR-J,SESCO,annual,kg,b7953ef8-27c9-390c-9dce-de8256ce8f17 -2022,Santa Fe,I.3.1,97.66848,TJ,CO2,74100.0,kg/TJ,7237234.368,Gas Oil combustion consumption by petrochemical industries,AR-S,SESCO,annual,kg,63d92394-7516-339e-83ad-feea07671e0a -2022,Santa Fe,I.3.1,97.66848,TJ,CH4,3.0,kg/TJ,293.00544,Gas Oil combustion consumption by petrochemical industries,AR-S,SESCO,annual,kg,42b41c86-1ebb-3e22-8abc-e92afabe332e -2022,Santa Fe,I.3.1,97.66848,TJ,N2O,0.6,kg/TJ,58.601088,Gas Oil combustion consumption by petrochemical industries,AR-S,SESCO,annual,kg,c5a5855f-411d-396f-b6f7-7250872e70b1 -2022,Tucuman,I.3.1,107.2764,TJ,CO2,74100.0,kg/TJ,7949181.239999999,Gas Oil combustion consumption by petrochemical industries,AR-T,SESCO,annual,kg,caf0251f-841a-3fbd-96b0-576b71d1ce24 -2022,Tucuman,I.3.1,107.2764,TJ,CH4,3.0,kg/TJ,321.8292,Gas Oil combustion consumption by petrochemical industries,AR-T,SESCO,annual,kg,2c2409bc-0d89-3019-ace2-21667a011c3c -2022,Tucuman,I.3.1,107.2764,TJ,N2O,0.6,kg/TJ,64.36583999999999,Gas Oil combustion consumption by petrochemical industries,AR-T,SESCO,annual,kg,e64f734c-cfda-339a-a8e3-054629b9ac96 -2022,Buenos Aires,I.3.1,51.86832,TJ,CO2,74100.0,kg/TJ,3843442.5119999996,Gas Oil combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,4300c65f-006e-311c-8485-43f8830ee634 -2022,Buenos Aires,I.3.1,51.86832,TJ,CH4,3.0,kg/TJ,155.60496,Gas Oil combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,9f0f2529-f67c-3a0f-9dd1-99559abbdd6a -2022,Buenos Aires,I.3.1,51.86832,TJ,N2O,0.6,kg/TJ,31.120991999999998,Gas Oil combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,616aadba-0115-36dd-a35d-f496a249d279 -2022,Capital Federal,I.3.1,27.993,TJ,CO2,74100.0,kg/TJ,2074281.2999999998,Gas Oil combustion consumption by petrochemical industries,AR-C,SESCO,annual,kg,65e40cee-60f2-3e9f-92fa-cd723c763e61 -2022,Capital Federal,I.3.1,27.993,TJ,CH4,3.0,kg/TJ,83.979,Gas Oil combustion consumption by petrochemical industries,AR-C,SESCO,annual,kg,d7b68c6e-a22d-3c05-be1b-8a15ca7acc87 -2022,Capital Federal,I.3.1,27.993,TJ,N2O,0.6,kg/TJ,16.7958,Gas Oil combustion consumption by petrochemical industries,AR-C,SESCO,annual,kg,bd4df396-499b-3fa7-b285-e2a1a0ead1f5 -2022,Córdoba,I.3.1,1.30032,TJ,CO2,74100.0,kg/TJ,96353.712,Gas Oil combustion consumption by petrochemical industries,AR-X,SESCO,annual,kg,970d3eae-0f58-3dcf-89e1-5ece150b55a1 -2022,Córdoba,I.3.1,1.30032,TJ,CH4,3.0,kg/TJ,3.9009599999999995,Gas Oil combustion consumption by petrochemical industries,AR-X,SESCO,annual,kg,3fdb7657-7e4a-31eb-9101-0c9e95df1605 -2022,Córdoba,I.3.1,1.30032,TJ,N2O,0.6,kg/TJ,0.7801919999999999,Gas Oil combustion consumption by petrochemical industries,AR-X,SESCO,annual,kg,83821e8c-f7d1-3b17-af82-b7f6863c986b -2022,Entre Rios,I.3.1,7.51296,TJ,CO2,74100.0,kg/TJ,556710.336,Gas Oil combustion consumption by petrochemical industries,AR-E,SESCO,annual,kg,3a55a036-ef63-3cb0-a7b2-64e3c1ec9845 -2022,Entre Rios,I.3.1,7.51296,TJ,CH4,3.0,kg/TJ,22.53888,Gas Oil combustion consumption by petrochemical industries,AR-E,SESCO,annual,kg,1bbfa9b1-f124-3a4e-bf24-23dd1a9c5b9a -2022,Entre Rios,I.3.1,7.51296,TJ,N2O,0.6,kg/TJ,4.507776,Gas Oil combustion consumption by petrochemical industries,AR-E,SESCO,annual,kg,ebcab55b-fab7-35ed-a6ca-0612f418028a -2022,Jujuy,I.3.1,1.30032,TJ,CO2,74100.0,kg/TJ,96353.712,Gas Oil combustion consumption by petrochemical industries,AR-Y,SESCO,annual,kg,b1112592-01c6-34a0-bd93-f4400724d5fb -2022,Jujuy,I.3.1,1.30032,TJ,CH4,3.0,kg/TJ,3.9009599999999995,Gas Oil combustion consumption by petrochemical industries,AR-Y,SESCO,annual,kg,c8a4d729-3f85-3a2e-9f3d-0cc7cace5823 -2022,Jujuy,I.3.1,1.30032,TJ,N2O,0.6,kg/TJ,0.7801919999999999,Gas Oil combustion consumption by petrochemical industries,AR-Y,SESCO,annual,kg,5b554611-21bd-328a-bfcb-e566202cbe71 -2022,Neuquén,I.3.1,307.99523999999997,TJ,CO2,74100.0,kg/TJ,22822447.283999998,Gas Oil combustion consumption by petrochemical industries,AR-Q,SESCO,annual,kg,1b3a0015-d0cd-3d7a-8ee2-5c507a786d2b -2022,Neuquén,I.3.1,307.99523999999997,TJ,CH4,3.0,kg/TJ,923.9857199999999,Gas Oil combustion consumption by petrochemical industries,AR-Q,SESCO,annual,kg,fdc7146e-3bb5-322b-af1d-fe84758d797e -2022,Neuquén,I.3.1,307.99523999999997,TJ,N2O,0.6,kg/TJ,184.79714399999997,Gas Oil combustion consumption by petrochemical industries,AR-Q,SESCO,annual,kg,ce9a3baf-e11a-36db-810d-47a90cea5ee2 -2022,Salta,I.3.1,5.2374,TJ,CO2,74100.0,kg/TJ,388091.34,Gas Oil combustion consumption by petrochemical industries,AR-A,SESCO,annual,kg,3b86829d-2a19-3b41-ab2f-719d82e294c6 -2022,Salta,I.3.1,5.2374,TJ,CH4,3.0,kg/TJ,15.7122,Gas Oil combustion consumption by petrochemical industries,AR-A,SESCO,annual,kg,0a9125d1-0ead-3637-98ad-97af91dcf710 -2022,Salta,I.3.1,5.2374,TJ,N2O,0.6,kg/TJ,3.14244,Gas Oil combustion consumption by petrochemical industries,AR-A,SESCO,annual,kg,d92292d4-eed2-37c9-8255-8d4f9ffd264c -2022,Santa Fe,I.3.1,8.6688,TJ,CO2,74100.0,kg/TJ,642358.08,Gas Oil combustion consumption by petrochemical industries,AR-S,SESCO,annual,kg,74ea1a11-1c62-3361-bceb-f8d1681b76b3 -2022,Santa Fe,I.3.1,8.6688,TJ,CH4,3.0,kg/TJ,26.0064,Gas Oil combustion consumption by petrochemical industries,AR-S,SESCO,annual,kg,2e1a93e5-c52b-330a-a7fa-f7688667b1b1 -2022,Santa Fe,I.3.1,8.6688,TJ,N2O,0.6,kg/TJ,5.20128,Gas Oil combustion consumption by petrochemical industries,AR-S,SESCO,annual,kg,f61c44f4-9650-3602-93e8-1fa5518b9b16 -2022,Tucuman,I.3.1,11.197199999999999,TJ,CO2,74100.0,kg/TJ,829712.5199999999,Gas Oil combustion consumption by petrochemical industries,AR-T,SESCO,annual,kg,193fdf24-1525-3313-a2be-a583e5ff5e54 -2022,Tucuman,I.3.1,11.197199999999999,TJ,CH4,3.0,kg/TJ,33.5916,Gas Oil combustion consumption by petrochemical industries,AR-T,SESCO,annual,kg,d17c5352-8d18-356e-9f9c-7f21c898b93a -2022,Tucuman,I.3.1,11.197199999999999,TJ,N2O,0.6,kg/TJ,6.718319999999999,Gas Oil combustion consumption by petrochemical industries,AR-T,SESCO,annual,kg,d3fc3944-7ada-32c7-b433-50ab11001d15 -2022,Santa Fe,I.3.1,11.260174,TJ,CO2,71500.0,kg/TJ,805102.441,Jet Kerosene combustion consumption by petrochemical industries,AR-S,SESCO,annual,kg,f180a0e9-7023-3442-9108-47902eb7750f -2022,Santa Fe,I.3.1,11.260174,TJ,CH4,3.0,kg/TJ,33.780522,Jet Kerosene combustion consumption by petrochemical industries,AR-S,SESCO,annual,kg,4d845581-70af-329e-ba9c-b5487af0dae2 -2022,Santa Fe,I.3.1,11.260174,TJ,N2O,0.6,kg/TJ,6.756104399999999,Jet Kerosene combustion consumption by petrochemical industries,AR-S,SESCO,annual,kg,815d8611-b5cf-326c-97c4-3e1fc231a6d1 -2022,Buenos Aires,I.3.1,43.139635,TJ,CO2,73300.0,kg/TJ,3162135.2454999997,Naphtha combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,5624156a-fe37-3ab9-b5ab-a6b9af5b704e -2022,Buenos Aires,I.3.1,43.139635,TJ,CH4,3.0,kg/TJ,129.418905,Naphtha combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,f1459663-1f4c-3c0e-9238-c97c910fcdaf -2022,Buenos Aires,I.3.1,43.139635,TJ,N2O,0.6,kg/TJ,25.883781,Naphtha combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,53dc5342-9c88-37d0-b12b-6ead2f59af99 -2022,Misiones,I.3.1,0.6853,TJ,CO2,73300.0,kg/TJ,50232.49,Naphtha combustion consumption by petrochemical industries,AR-N,SESCO,annual,kg,5c04130d-475a-3849-8a10-7c53d10d3c0b -2022,Misiones,I.3.1,0.6853,TJ,CH4,3.0,kg/TJ,2.0559000000000003,Naphtha combustion consumption by petrochemical industries,AR-N,SESCO,annual,kg,f0b14f09-a430-3319-beed-7687c6ea8312 -2022,Misiones,I.3.1,0.6853,TJ,N2O,0.6,kg/TJ,0.41118,Naphtha combustion consumption by petrochemical industries,AR-N,SESCO,annual,kg,33c71f22-4b83-3712-a98c-e4a1aa513cbc -2022,Buenos Aires,I.3.1,13.911589999999999,TJ,CO2,73300.0,kg/TJ,1019719.5469999999,Naphtha combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,4abba499-8a02-3abf-889a-c803b9ada2c3 -2022,Buenos Aires,I.3.1,13.911589999999999,TJ,CH4,3.0,kg/TJ,41.73477,Naphtha combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,1da6c494-2a83-33d2-87ce-9064d96e8714 -2022,Buenos Aires,I.3.1,13.911589999999999,TJ,N2O,0.6,kg/TJ,8.346953999999998,Naphtha combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,e805512f-8382-33d2-9559-886e26bae119 -2022,Chubut,I.3.1,0.54824,TJ,CO2,73300.0,kg/TJ,40185.992,Naphtha combustion consumption by petrochemical industries,AR-U,SESCO,annual,kg,e42b3e90-ccc5-3d49-b55c-c75566647744 -2022,Chubut,I.3.1,0.54824,TJ,CH4,3.0,kg/TJ,1.64472,Naphtha combustion consumption by petrochemical industries,AR-U,SESCO,annual,kg,0e98d0ff-3da7-38c6-9904-f82c461f60d2 -2022,Chubut,I.3.1,0.54824,TJ,N2O,0.6,kg/TJ,0.32894399999999996,Naphtha combustion consumption by petrochemical industries,AR-U,SESCO,annual,kg,d6368835-c3f0-33d2-a9bd-cdf2710f7f5e -2022,Córdoba,I.3.1,2.158695,TJ,CO2,73300.0,kg/TJ,158232.3435,Naphtha combustion consumption by petrochemical industries,AR-X,SESCO,annual,kg,fa899f50-678c-399e-bdc0-1b15e7bc4ee1 -2022,Córdoba,I.3.1,2.158695,TJ,CH4,3.0,kg/TJ,6.476084999999999,Naphtha combustion consumption by petrochemical industries,AR-X,SESCO,annual,kg,9af556a0-f071-3386-add4-f1af42b6cc23 -2022,Córdoba,I.3.1,2.158695,TJ,N2O,0.6,kg/TJ,1.2952169999999998,Naphtha combustion consumption by petrochemical industries,AR-X,SESCO,annual,kg,0f0da848-20a2-382d-b624-69043e2de764 -2022,Entre Rios,I.3.1,2.090165,TJ,CO2,73300.0,kg/TJ,153209.09449999998,Naphtha combustion consumption by petrochemical industries,AR-E,SESCO,annual,kg,d473240c-fa75-3807-952f-98555e38dd54 -2022,Entre Rios,I.3.1,2.090165,TJ,CH4,3.0,kg/TJ,6.2704949999999995,Naphtha combustion consumption by petrochemical industries,AR-E,SESCO,annual,kg,216090a0-bab6-31f3-8bc3-34d444b5ccce -2022,Entre Rios,I.3.1,2.090165,TJ,N2O,0.6,kg/TJ,1.2540989999999999,Naphtha combustion consumption by petrochemical industries,AR-E,SESCO,annual,kg,1d8bfee8-7525-3d40-9a32-99b2cb449d4b -2022,La Pampa,I.3.1,1.3363349999999998,TJ,CO2,73300.0,kg/TJ,97953.35549999999,Naphtha combustion consumption by petrochemical industries,AR-L,SESCO,annual,kg,2fc47e62-1f54-30b0-bc6e-ce08f8681141 -2022,La Pampa,I.3.1,1.3363349999999998,TJ,CH4,3.0,kg/TJ,4.009004999999999,Naphtha combustion consumption by petrochemical industries,AR-L,SESCO,annual,kg,83c43892-f465-34d2-8c2f-ef617e6dcd78 -2022,La Pampa,I.3.1,1.3363349999999998,TJ,N2O,0.6,kg/TJ,0.8018009999999999,Naphtha combustion consumption by petrochemical industries,AR-L,SESCO,annual,kg,f3b50fb7-3a2d-303e-b6bc-9c85fb3ebf15 -2022,Misiones,I.3.1,1.1650099999999999,TJ,CO2,73300.0,kg/TJ,85395.233,Naphtha combustion consumption by petrochemical industries,AR-N,SESCO,annual,kg,8ccfcddd-1b0d-3dd5-b7f1-6c85932f3ef6 -2022,Misiones,I.3.1,1.1650099999999999,TJ,CH4,3.0,kg/TJ,3.49503,Naphtha combustion consumption by petrochemical industries,AR-N,SESCO,annual,kg,00075a4b-c00a-396e-90a9-6a364f8ea353 -2022,Misiones,I.3.1,1.1650099999999999,TJ,N2O,0.6,kg/TJ,0.6990059999999999,Naphtha combustion consumption by petrochemical industries,AR-N,SESCO,annual,kg,d40bf6f5-600f-317f-a0ff-73ce173787b3 -2022,Neuquén,I.3.1,1.473395,TJ,CO2,73300.0,kg/TJ,107999.8535,Naphtha combustion consumption by petrochemical industries,AR-Q,SESCO,annual,kg,08494281-b2c4-34d1-b821-f867c22a05cf -2022,Neuquén,I.3.1,1.473395,TJ,CH4,3.0,kg/TJ,4.420185,Naphtha combustion consumption by petrochemical industries,AR-Q,SESCO,annual,kg,5bb54a36-a5b0-3e42-b228-da894d0aba9f -2022,Neuquén,I.3.1,1.473395,TJ,N2O,0.6,kg/TJ,0.884037,Naphtha combustion consumption by petrochemical industries,AR-Q,SESCO,annual,kg,9a61cacc-3fb8-34f2-9592-cb665ce64a54 -2022,Rio Negro,I.3.1,0.5825049999999999,TJ,CO2,73300.0,kg/TJ,42697.6165,Naphtha combustion consumption by petrochemical industries,AR-R,SESCO,annual,kg,ed5d9d75-c5fe-30a7-9d8d-c1e8c4ed864c -2022,Rio Negro,I.3.1,0.5825049999999999,TJ,CH4,3.0,kg/TJ,1.747515,Naphtha combustion consumption by petrochemical industries,AR-R,SESCO,annual,kg,3a217a60-c3e2-3538-bc3c-4d4a300af253 -2022,Rio Negro,I.3.1,0.5825049999999999,TJ,N2O,0.6,kg/TJ,0.34950299999999995,Naphtha combustion consumption by petrochemical industries,AR-R,SESCO,annual,kg,e42cafdf-0b93-3d1e-85be-3a307d8ee764 -2022,San Juan,I.3.1,1.43913,TJ,CO2,73300.0,kg/TJ,105488.229,Naphtha combustion consumption by petrochemical industries,AR-J,SESCO,annual,kg,89eef653-04a0-3e91-98a7-7c4b8006dd81 -2022,San Juan,I.3.1,1.43913,TJ,CH4,3.0,kg/TJ,4.31739,Naphtha combustion consumption by petrochemical industries,AR-J,SESCO,annual,kg,dede45d5-19fb-3664-9f55-5d5f2ecc26db -2022,San Juan,I.3.1,1.43913,TJ,N2O,0.6,kg/TJ,0.863478,Naphtha combustion consumption by petrochemical industries,AR-J,SESCO,annual,kg,113832db-691b-3e8c-8f31-65d92bd764f5 -2022,San Luis,I.3.1,0.6510349999999999,TJ,CO2,73300.0,kg/TJ,47720.86549999999,Naphtha combustion consumption by petrochemical industries,AR-D,SESCO,annual,kg,bc972c26-f5bf-3864-95f5-370fa5910c85 -2022,San Luis,I.3.1,0.6510349999999999,TJ,CH4,3.0,kg/TJ,1.9531049999999999,Naphtha combustion consumption by petrochemical industries,AR-D,SESCO,annual,kg,8b63d1f4-152e-337f-b867-f9b1afb8bbbf -2022,San Luis,I.3.1,0.6510349999999999,TJ,N2O,0.6,kg/TJ,0.39062099999999994,Naphtha combustion consumption by petrochemical industries,AR-D,SESCO,annual,kg,e682ce45-cc74-30cc-9e9b-901bef117a94 -2022,Santa Fe,I.3.1,0.856625,TJ,CO2,73300.0,kg/TJ,62790.612499999996,Naphtha combustion consumption by petrochemical industries,AR-S,SESCO,annual,kg,c68e5013-b0d4-395d-b085-dae0af2e02c4 -2022,Santa Fe,I.3.1,0.856625,TJ,CH4,3.0,kg/TJ,2.5698749999999997,Naphtha combustion consumption by petrochemical industries,AR-S,SESCO,annual,kg,8174c497-492e-31dc-b5b8-6e05b002ecb7 -2022,Santa Fe,I.3.1,0.856625,TJ,N2O,0.6,kg/TJ,0.513975,Naphtha combustion consumption by petrochemical industries,AR-S,SESCO,annual,kg,ea03b350-eb4e-3639-94d8-fd97e54914d4 -2022,Santiago del Estero,I.3.1,0.6167699999999999,TJ,CO2,73300.0,kg/TJ,45209.240999999995,Naphtha combustion consumption by petrochemical industries,AR-G,SESCO,annual,kg,fc15b9bc-c95d-3747-acd6-78e081f85bf2 -2022,Santiago del Estero,I.3.1,0.6167699999999999,TJ,CH4,3.0,kg/TJ,1.85031,Naphtha combustion consumption by petrochemical industries,AR-G,SESCO,annual,kg,ef9983c9-981f-3229-a76d-2316b437b57e -2022,Santiago del Estero,I.3.1,0.6167699999999999,TJ,N2O,0.6,kg/TJ,0.37006199999999995,Naphtha combustion consumption by petrochemical industries,AR-G,SESCO,annual,kg,0ec5bc78-0f0a-3711-970a-0b432e664cff -2022,Tucuman,I.3.1,0.376915,TJ,CO2,73300.0,kg/TJ,27627.8695,Naphtha combustion consumption by petrochemical industries,AR-T,SESCO,annual,kg,a2fd449c-eed6-34a4-826f-1d90ab45a336 -2022,Tucuman,I.3.1,0.376915,TJ,CH4,3.0,kg/TJ,1.1307450000000001,Naphtha combustion consumption by petrochemical industries,AR-T,SESCO,annual,kg,94cfbc95-26fb-365e-a749-5e551f07350c -2022,Tucuman,I.3.1,0.376915,TJ,N2O,0.6,kg/TJ,0.226149,Naphtha combustion consumption by petrochemical industries,AR-T,SESCO,annual,kg,b31d81ba-daa0-396f-be7a-d64b4c562d4d -2022,Capital Federal,I.3.1,1865.6949849999999,TJ,CO2,73300.0,kg/TJ,136755442.4005,Naphtha combustion consumption by petrochemical industries,AR-C,SESCO,annual,kg,43f5a43f-edae-35ed-b1bc-f22d8823533f -2022,Capital Federal,I.3.1,1865.6949849999999,TJ,CH4,3.0,kg/TJ,5597.084954999999,Naphtha combustion consumption by petrochemical industries,AR-C,SESCO,annual,kg,8e17b975-0c75-3585-b44e-369c18a321c5 -2022,Capital Federal,I.3.1,1865.6949849999999,TJ,N2O,0.6,kg/TJ,1119.4169909999998,Naphtha combustion consumption by petrochemical industries,AR-C,SESCO,annual,kg,519360e3-0af1-3675-80f4-d00c64eed56a -2023,Buenos Aires,I.3.1,6.10428,TJ,CO2,74100.0,kg/TJ,452327.148,Gas Oil combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,38d50a01-4c02-3e61-b960-eed817530016 -2023,Buenos Aires,I.3.1,6.10428,TJ,CH4,3.0,kg/TJ,18.31284,Gas Oil combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,4502772f-fb8b-3635-9532-7de5f077f52c -2023,Buenos Aires,I.3.1,6.10428,TJ,N2O,0.6,kg/TJ,3.662568,Gas Oil combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,d3056a9a-eb13-31ea-89bc-d40223f070dc -2023,Buenos Aires,I.3.1,0.93912,TJ,CO2,74100.0,kg/TJ,69588.792,Gas Oil combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,10105257-5bf4-32d5-b89e-2e9e60bd79e3 -2023,Buenos Aires,I.3.1,0.93912,TJ,CH4,3.0,kg/TJ,2.81736,Gas Oil combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,09678e73-de89-36c6-8659-025029d8de89 -2023,Buenos Aires,I.3.1,0.93912,TJ,N2O,0.6,kg/TJ,0.563472,Gas Oil combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,7f902a92-7b05-3ef4-9365-2b9757c677cb -2023,La Rioja,I.3.1,5.99592,TJ,CO2,74100.0,kg/TJ,444297.672,Gas Oil combustion consumption by petrochemical industries,AR-F,SESCO,annual,kg,dcb2ef54-0606-3fb7-9c50-6e655740a436 -2023,La Rioja,I.3.1,5.99592,TJ,CH4,3.0,kg/TJ,17.98776,Gas Oil combustion consumption by petrochemical industries,AR-F,SESCO,annual,kg,923fcbb8-bfad-38dc-a374-8a0ece589fab -2023,La Rioja,I.3.1,5.99592,TJ,N2O,0.6,kg/TJ,3.597552,Gas Oil combustion consumption by petrochemical industries,AR-F,SESCO,annual,kg,050b2480-9513-3e9f-bcfe-0fb788fd5e9c -2023,Capital Federal,I.3.1,0.25162399999999996,TJ,CO2,71500.0,kg/TJ,17991.115999999998,Jet Kerosene combustion consumption by petrochemical industries,AR-C,SESCO,annual,kg,62865a33-398c-3e39-bcf5-2a4e18046d58 -2023,Capital Federal,I.3.1,0.25162399999999996,TJ,CH4,3.0,kg/TJ,0.7548719999999999,Jet Kerosene combustion consumption by petrochemical industries,AR-C,SESCO,annual,kg,ecc6600a-6992-3e94-9847-2d2a995c780d -2023,Capital Federal,I.3.1,0.25162399999999996,TJ,N2O,0.6,kg/TJ,0.15097439999999998,Jet Kerosene combustion consumption by petrochemical industries,AR-C,SESCO,annual,kg,e2c30392-61e2-3279-b08a-d5c3fc782d51 -2023,San Juan,I.3.1,15.134279999999999,TJ,CO2,74100.0,kg/TJ,1121450.1479999998,Gas Oil combustion consumption by petrochemical industries,AR-J,SESCO,annual,kg,e2232609-5b78-3db5-ba64-fed03067f1c8 -2023,San Juan,I.3.1,15.134279999999999,TJ,CH4,3.0,kg/TJ,45.40284,Gas Oil combustion consumption by petrochemical industries,AR-J,SESCO,annual,kg,af878345-ec07-375c-a85c-14d521476fd5 -2023,San Juan,I.3.1,15.134279999999999,TJ,N2O,0.6,kg/TJ,9.080568,Gas Oil combustion consumption by petrochemical industries,AR-J,SESCO,annual,kg,600fb8e9-2083-37cf-b135-221b882f9922 -2023,Buenos Aires,I.3.1,15.504999999999997,TJ,CO2,69300.0,kg/TJ,1074496.4999999998,Motor Gasoline combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,88b0ec71-a61c-3a07-a730-efffc711d345 -2023,Buenos Aires,I.3.1,15.504999999999997,TJ,CH4,3.0,kg/TJ,46.51499999999999,Motor Gasoline combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,dfd143e2-73ff-3ccc-ae02-838016b6cf95 -2023,Buenos Aires,I.3.1,15.504999999999997,TJ,N2O,0.6,kg/TJ,9.302999999999997,Motor Gasoline combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,622528bc-b0ef-3f33-ae61-55981bddb9ae -2023,Capital Federal,I.3.1,11.7838,TJ,CO2,69300.0,kg/TJ,816617.34,Motor Gasoline combustion consumption by petrochemical industries,AR-C,SESCO,annual,kg,d1ec0dbd-d30d-3221-bba6-25eea9ff6caf -2023,Capital Federal,I.3.1,11.7838,TJ,CH4,3.0,kg/TJ,35.3514,Motor Gasoline combustion consumption by petrochemical industries,AR-C,SESCO,annual,kg,31726889-dead-3638-831b-c97f14dc933d -2023,Capital Federal,I.3.1,11.7838,TJ,N2O,0.6,kg/TJ,7.0702799999999995,Motor Gasoline combustion consumption by petrochemical industries,AR-C,SESCO,annual,kg,fa033db4-be80-3935-add4-745a126c659f -2023,Córdoba,I.3.1,21.7956,TJ,CO2,69300.0,kg/TJ,1510435.08,Motor Gasoline combustion consumption by petrochemical industries,AR-X,SESCO,annual,kg,69c42cde-bdcc-3f08-a7ba-3c9d2e2f73c5 -2023,Córdoba,I.3.1,21.7956,TJ,CH4,3.0,kg/TJ,65.3868,Motor Gasoline combustion consumption by petrochemical industries,AR-X,SESCO,annual,kg,21967917-6434-3c7b-921f-56a0a5049fef -2023,Córdoba,I.3.1,21.7956,TJ,N2O,0.6,kg/TJ,13.07736,Motor Gasoline combustion consumption by petrochemical industries,AR-X,SESCO,annual,kg,c452df03-bbab-35bc-b249-be671515e4ec -2023,Entre Rios,I.3.1,14.043099999999999,TJ,CO2,69300.0,kg/TJ,973186.83,Motor Gasoline combustion consumption by petrochemical industries,AR-E,SESCO,annual,kg,9c2ef8b4-db87-3a59-abbd-e0539c9296df -2023,Entre Rios,I.3.1,14.043099999999999,TJ,CH4,3.0,kg/TJ,42.1293,Motor Gasoline combustion consumption by petrochemical industries,AR-E,SESCO,annual,kg,67cf3223-78e0-3e45-b0eb-e856b2a3c3e9 -2023,Entre Rios,I.3.1,14.043099999999999,TJ,N2O,0.6,kg/TJ,8.425859999999998,Motor Gasoline combustion consumption by petrochemical industries,AR-E,SESCO,annual,kg,da981a75-a304-3a45-8b94-6e9c758e2f31 -2023,Misiones,I.3.1,50.059,TJ,CO2,69300.0,kg/TJ,3469088.6999999997,Motor Gasoline combustion consumption by petrochemical industries,AR-N,SESCO,annual,kg,8d4a8af3-b305-332c-9311-75af556f8234 -2023,Misiones,I.3.1,50.059,TJ,CH4,3.0,kg/TJ,150.177,Motor Gasoline combustion consumption by petrochemical industries,AR-N,SESCO,annual,kg,fc3f3e2e-53c0-3766-8f74-141b985f8ed5 -2023,Misiones,I.3.1,50.059,TJ,N2O,0.6,kg/TJ,30.035399999999996,Motor Gasoline combustion consumption by petrochemical industries,AR-N,SESCO,annual,kg,6c958d3c-0050-3175-aa4a-04f1015c6390 -2023,Neuquén,I.3.1,7.1323,TJ,CO2,69300.0,kg/TJ,494268.39,Motor Gasoline combustion consumption by petrochemical industries,AR-Q,SESCO,annual,kg,172dd75b-7117-3fbf-af5d-51895d063c28 -2023,Neuquén,I.3.1,7.1323,TJ,CH4,3.0,kg/TJ,21.3969,Motor Gasoline combustion consumption by petrochemical industries,AR-Q,SESCO,annual,kg,a8204468-35d7-3cd7-9832-8d2b60a108a5 -2023,Neuquén,I.3.1,7.1323,TJ,N2O,0.6,kg/TJ,4.27938,Motor Gasoline combustion consumption by petrochemical industries,AR-Q,SESCO,annual,kg,0a846964-1049-3934-8fe4-32405889ba46 -2023,Santa Fe,I.3.1,30.877099999999995,TJ,CO2,69300.0,kg/TJ,2139783.03,Motor Gasoline combustion consumption by petrochemical industries,AR-S,SESCO,annual,kg,a376646d-e1fa-3314-be70-b434c496d8c2 -2023,Santa Fe,I.3.1,30.877099999999995,TJ,CH4,3.0,kg/TJ,92.63129999999998,Motor Gasoline combustion consumption by petrochemical industries,AR-S,SESCO,annual,kg,cc967238-91ab-302e-9aba-707a44d4d14c -2023,Santa Fe,I.3.1,30.877099999999995,TJ,N2O,0.6,kg/TJ,18.526259999999997,Motor Gasoline combustion consumption by petrochemical industries,AR-S,SESCO,annual,kg,73d9c2c5-f21f-38f8-94fe-7f59a1695eda -2023,Buenos Aires,I.3.1,82.46195999999999,TJ,CO2,74100.0,kg/TJ,6110431.236,Gas Oil combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,026b73a9-200f-39fc-afcb-9f49902bcb59 -2023,Buenos Aires,I.3.1,82.46195999999999,TJ,CH4,3.0,kg/TJ,247.38588,Gas Oil combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,8c39d1bf-8cc3-3229-bbad-6e3d240a2827 -2023,Buenos Aires,I.3.1,82.46195999999999,TJ,N2O,0.6,kg/TJ,49.47717599999999,Gas Oil combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,001061ad-80c4-336e-b9ac-68df9e0cb167 -2023,Córdoba,I.3.1,8.56044,TJ,CO2,74100.0,kg/TJ,634328.6039999999,Gas Oil combustion consumption by petrochemical industries,AR-X,SESCO,annual,kg,b0a4daae-79f4-3410-822a-2e8e0be45772 -2023,Córdoba,I.3.1,8.56044,TJ,CH4,3.0,kg/TJ,25.68132,Gas Oil combustion consumption by petrochemical industries,AR-X,SESCO,annual,kg,1d3b8e73-5834-3e4c-8247-481947ae1d3f -2023,Córdoba,I.3.1,8.56044,TJ,N2O,0.6,kg/TJ,5.136264,Gas Oil combustion consumption by petrochemical industries,AR-X,SESCO,annual,kg,0dc0de14-7052-3825-97b0-ed35821f192a -2023,Entre Rios,I.3.1,3.90096,TJ,CO2,74100.0,kg/TJ,289061.136,Gas Oil combustion consumption by petrochemical industries,AR-E,SESCO,annual,kg,1789b9ed-ba28-3442-ae90-86914f72e73e -2023,Entre Rios,I.3.1,3.90096,TJ,CH4,3.0,kg/TJ,11.70288,Gas Oil combustion consumption by petrochemical industries,AR-E,SESCO,annual,kg,a87fea10-d250-3825-beaa-000da86f5c15 -2023,Entre Rios,I.3.1,3.90096,TJ,N2O,0.6,kg/TJ,2.340576,Gas Oil combustion consumption by petrochemical industries,AR-E,SESCO,annual,kg,6cc654e1-b670-3e7a-adae-eecb46787b4e -2023,Mendoza,I.3.1,5.0929199999999994,TJ,CO2,74100.0,kg/TJ,377385.372,Gas Oil combustion consumption by petrochemical industries,AR-M,SESCO,annual,kg,042bc767-8a12-3f6e-8f18-3bd0ea2bfb6a -2023,Mendoza,I.3.1,5.0929199999999994,TJ,CH4,3.0,kg/TJ,15.278759999999998,Gas Oil combustion consumption by petrochemical industries,AR-M,SESCO,annual,kg,02dbf394-bd4c-3fd2-8e78-b64d7a3e5f1b -2023,Mendoza,I.3.1,5.0929199999999994,TJ,N2O,0.6,kg/TJ,3.0557519999999996,Gas Oil combustion consumption by petrochemical industries,AR-M,SESCO,annual,kg,145f482e-4396-3124-a0c1-a072c9056b88 -2023,Misiones,I.3.1,7.5851999999999995,TJ,CO2,74100.0,kg/TJ,562063.32,Gas Oil combustion consumption by petrochemical industries,AR-N,SESCO,annual,kg,0f187344-64fe-3a0e-9bae-3230a2f4e57d -2023,Misiones,I.3.1,7.5851999999999995,TJ,CH4,3.0,kg/TJ,22.755599999999998,Gas Oil combustion consumption by petrochemical industries,AR-N,SESCO,annual,kg,4c09304d-8eb7-3abc-bbf1-8d8f9643e3a2 -2023,Misiones,I.3.1,7.5851999999999995,TJ,N2O,0.6,kg/TJ,4.551119999999999,Gas Oil combustion consumption by petrochemical industries,AR-N,SESCO,annual,kg,f5ca7aeb-2980-3426-8b8e-8b27692a2cf1 -2023,Neuquén,I.3.1,718.67964,TJ,CO2,74100.0,kg/TJ,53254161.32399999,Gas Oil combustion consumption by petrochemical industries,AR-Q,SESCO,annual,kg,07a2b9e8-d847-3c6e-be32-f3910da5b65c -2023,Neuquén,I.3.1,718.67964,TJ,CH4,3.0,kg/TJ,2156.03892,Gas Oil combustion consumption by petrochemical industries,AR-Q,SESCO,annual,kg,b922f4dd-ba42-3e8a-a052-45c8d9e6eb0f -2023,Neuquén,I.3.1,718.67964,TJ,N2O,0.6,kg/TJ,431.20778399999995,Gas Oil combustion consumption by petrochemical industries,AR-Q,SESCO,annual,kg,eae67df7-eb24-38f4-aeb5-742c814bc567 -2023,San Juan,I.3.1,7.87416,TJ,CO2,74100.0,kg/TJ,583475.2559999999,Gas Oil combustion consumption by petrochemical industries,AR-J,SESCO,annual,kg,047b8428-b4b2-3eb0-b890-468fc8a7337d -2023,San Juan,I.3.1,7.87416,TJ,CH4,3.0,kg/TJ,23.62248,Gas Oil combustion consumption by petrochemical industries,AR-J,SESCO,annual,kg,a257bd76-2d35-3b88-8bf9-6f289f841fbc -2023,San Juan,I.3.1,7.87416,TJ,N2O,0.6,kg/TJ,4.724495999999999,Gas Oil combustion consumption by petrochemical industries,AR-J,SESCO,annual,kg,3ce5aece-e842-3615-9912-f5d559812ea5 -2023,Santa Fe,I.3.1,5.30964,TJ,CO2,74100.0,kg/TJ,393444.324,Gas Oil combustion consumption by petrochemical industries,AR-S,SESCO,annual,kg,bc4dfb81-4ac8-3192-bfa7-d4bf771df5a1 -2023,Santa Fe,I.3.1,5.30964,TJ,CH4,3.0,kg/TJ,15.92892,Gas Oil combustion consumption by petrochemical industries,AR-S,SESCO,annual,kg,bfa5c238-541a-37db-888c-1b385efc668c -2023,Santa Fe,I.3.1,5.30964,TJ,N2O,0.6,kg/TJ,3.185784,Gas Oil combustion consumption by petrochemical industries,AR-S,SESCO,annual,kg,74e49197-4aa6-3416-baa7-c7af28ce89a3 -2023,Buenos Aires,I.3.1,10.14972,TJ,CO2,74100.0,kg/TJ,752094.252,Gas Oil combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,3600e742-062b-3c2d-a996-b0ef7de5f169 -2023,Buenos Aires,I.3.1,10.14972,TJ,CH4,3.0,kg/TJ,30.44916,Gas Oil combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,f23dba14-2650-3a27-a999-f11afd95c143 -2023,Buenos Aires,I.3.1,10.14972,TJ,N2O,0.6,kg/TJ,6.089832,Gas Oil combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,ae38faac-08ff-3a70-b696-115a69d28ae9 -2023,Córdoba,I.3.1,0.57792,TJ,CO2,74100.0,kg/TJ,42823.871999999996,Gas Oil combustion consumption by petrochemical industries,AR-X,SESCO,annual,kg,402639a4-2404-31dc-bb9c-fa3c4f13bfd4 -2023,Córdoba,I.3.1,0.57792,TJ,CH4,3.0,kg/TJ,1.73376,Gas Oil combustion consumption by petrochemical industries,AR-X,SESCO,annual,kg,12e97b29-ddb9-3b79-b97a-8591a9f90601 -2023,Córdoba,I.3.1,0.57792,TJ,N2O,0.6,kg/TJ,0.346752,Gas Oil combustion consumption by petrochemical industries,AR-X,SESCO,annual,kg,eacd2b96-2ce9-3f0d-af31-a00907352a18 -2023,Neuquén,I.3.1,945.6938399999999,TJ,CO2,74100.0,kg/TJ,70075913.544,Gas Oil combustion consumption by petrochemical industries,AR-Q,SESCO,annual,kg,509235b0-76c6-3111-889a-97fe9f1a8dc1 -2023,Neuquén,I.3.1,945.6938399999999,TJ,CH4,3.0,kg/TJ,2837.0815199999997,Gas Oil combustion consumption by petrochemical industries,AR-Q,SESCO,annual,kg,4c3b2dea-eb81-3368-a194-3b8efc17d4ee -2023,Neuquén,I.3.1,945.6938399999999,TJ,N2O,0.6,kg/TJ,567.416304,Gas Oil combustion consumption by petrochemical industries,AR-Q,SESCO,annual,kg,863ab1ae-4655-3959-b9e9-cf041da3be04 -2023,Santa Fe,I.3.1,2.20171,TJ,CO2,71500.0,kg/TJ,157422.26499999998,Jet Kerosene combustion consumption by petrochemical industries,AR-S,SESCO,annual,kg,d30315e1-d545-3eee-9c05-ff3cd7892cee -2023,Santa Fe,I.3.1,2.20171,TJ,CH4,3.0,kg/TJ,6.605129999999999,Jet Kerosene combustion consumption by petrochemical industries,AR-S,SESCO,annual,kg,9ac1f04f-4937-34f9-975c-7c53de08cd0d -2023,Santa Fe,I.3.1,2.20171,TJ,N2O,0.6,kg/TJ,1.3210259999999998,Jet Kerosene combustion consumption by petrochemical industries,AR-S,SESCO,annual,kg,004941eb-493f-3ba4-910f-29c7a9bf6dfa -2023,Buenos Aires,I.3.1,10.48509,TJ,CO2,73300.0,kg/TJ,768557.097,Naphtha combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,649fdd07-82ae-36a2-a7a6-a1cb3ac7dc1d -2023,Buenos Aires,I.3.1,10.48509,TJ,CH4,3.0,kg/TJ,31.45527,Naphtha combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,66071a7c-9e18-3e8b-9515-f50f93c60bd0 -2023,Buenos Aires,I.3.1,10.48509,TJ,N2O,0.6,kg/TJ,6.291054,Naphtha combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,4bcb7c15-a212-3d24-8216-d095afaaf659 -2023,Misiones,I.3.1,0.20559,TJ,CO2,73300.0,kg/TJ,15069.747,Naphtha combustion consumption by petrochemical industries,AR-N,SESCO,annual,kg,5579e2cd-50d5-39d6-b13e-6c857f008a7c -2023,Misiones,I.3.1,0.20559,TJ,CH4,3.0,kg/TJ,0.61677,Naphtha combustion consumption by petrochemical industries,AR-N,SESCO,annual,kg,be9c51f7-b8f7-3e2f-bb28-d43a3730f8e2 -2023,Misiones,I.3.1,0.20559,TJ,N2O,0.6,kg/TJ,0.12335399999999999,Naphtha combustion consumption by petrochemical industries,AR-N,SESCO,annual,kg,b4dc7590-7ce8-3d93-b0a6-daed078eedf6 -2023,Buenos Aires,I.3.1,4.7285699999999995,TJ,CO2,73300.0,kg/TJ,346604.181,Naphtha combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,8dc8d676-a116-39d2-9ac6-d7fc752158d0 -2023,Buenos Aires,I.3.1,4.7285699999999995,TJ,CH4,3.0,kg/TJ,14.185709999999998,Naphtha combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,42fcf129-03b5-318b-ae7d-6232f988789d -2023,Buenos Aires,I.3.1,4.7285699999999995,TJ,N2O,0.6,kg/TJ,2.8371419999999996,Naphtha combustion consumption by petrochemical industries,AR-B,SESCO,annual,kg,93df46d2-9213-3a56-9bd4-7f5d2393d279 -2023,Entre Rios,I.3.1,0.34265,TJ,CO2,73300.0,kg/TJ,25116.245,Naphtha combustion consumption by petrochemical industries,AR-E,SESCO,annual,kg,b2f154fd-570b-331e-b87f-cfcaf87f3d8f -2023,Entre Rios,I.3.1,0.34265,TJ,CH4,3.0,kg/TJ,1.0279500000000001,Naphtha combustion consumption by petrochemical industries,AR-E,SESCO,annual,kg,49973127-8a8f-30c3-b17d-547b4f148769 -2023,Entre Rios,I.3.1,0.34265,TJ,N2O,0.6,kg/TJ,0.20559,Naphtha combustion consumption by petrochemical industries,AR-E,SESCO,annual,kg,31bc3868-9eb6-3719-ac0f-f83bdd221193 -2023,La Pampa,I.3.1,0.9936849999999999,TJ,CO2,73300.0,kg/TJ,72837.1105,Naphtha combustion consumption by petrochemical industries,AR-L,SESCO,annual,kg,b61b4cfa-e770-3cc9-9fc9-2775b2ef19cc -2023,La Pampa,I.3.1,0.9936849999999999,TJ,CH4,3.0,kg/TJ,2.9810549999999996,Naphtha combustion consumption by petrochemical industries,AR-L,SESCO,annual,kg,d91e258c-257a-3f57-9227-a05bade876f1 -2023,La Pampa,I.3.1,0.9936849999999999,TJ,N2O,0.6,kg/TJ,0.5962109999999999,Naphtha combustion consumption by petrochemical industries,AR-L,SESCO,annual,kg,a34e5498-2393-35ca-8e96-3dbf57ff9dd8 -2023,Neuquén,I.3.1,0.6510349999999999,TJ,CO2,73300.0,kg/TJ,47720.86549999999,Naphtha combustion consumption by petrochemical industries,AR-Q,SESCO,annual,kg,e0b4a3af-759b-3347-bc2d-bf1f16737530 -2023,Neuquén,I.3.1,0.6510349999999999,TJ,CH4,3.0,kg/TJ,1.9531049999999999,Naphtha combustion consumption by petrochemical industries,AR-Q,SESCO,annual,kg,ca3ac8aa-72f3-377f-b662-5f2fd062b7d7 -2023,Neuquén,I.3.1,0.6510349999999999,TJ,N2O,0.6,kg/TJ,0.39062099999999994,Naphtha combustion consumption by petrochemical industries,AR-Q,SESCO,annual,kg,7e8b69bf-36ea-351d-8836-41b2053ddca3 -2023,Rio Negro,I.3.1,0.719565,TJ,CO2,73300.0,kg/TJ,52744.1145,Naphtha combustion consumption by petrochemical industries,AR-R,SESCO,annual,kg,de44540f-2d4c-3a89-be1e-a1e2bd052558 -2023,Rio Negro,I.3.1,0.719565,TJ,CH4,3.0,kg/TJ,2.158695,Naphtha combustion consumption by petrochemical industries,AR-R,SESCO,annual,kg,3291d786-7ced-3cbe-9f0e-e6c644520c0a -2023,Rio Negro,I.3.1,0.719565,TJ,N2O,0.6,kg/TJ,0.431739,Naphtha combustion consumption by petrochemical industries,AR-R,SESCO,annual,kg,80ed85a9-d1d5-334f-a4aa-c305ec5667e9 -2010,Buenos Aires,II.5.1,1.19196,TJ,CO2,74100.0,kg/TJ,88324.23599999999,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,82b75e42-a452-3483-8fbf-4360a5dd1d0b -2010,Buenos Aires,II.5.1,1.19196,TJ,CH4,3.9,kg/TJ,4.648643999999999,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,21294e22-d2e0-3633-8026-6a6e1d459f91 -2010,Buenos Aires,II.5.1,1.19196,TJ,N2O,3.9,kg/TJ,4.648643999999999,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,21294e22-d2e0-3633-8026-6a6e1d459f91 -2010,Córdoba,II.5.1,1.2280799999999998,TJ,CO2,74100.0,kg/TJ,91000.72799999999,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,2f7d9edd-1403-3683-a10f-2b30184aba8e -2010,Córdoba,II.5.1,1.2280799999999998,TJ,CH4,3.9,kg/TJ,4.789511999999999,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,89fdc79d-c063-36a7-ab43-ddaf62fabda4 -2010,Córdoba,II.5.1,1.2280799999999998,TJ,N2O,3.9,kg/TJ,4.789511999999999,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,89fdc79d-c063-36a7-ab43-ddaf62fabda4 -2010,Entre Rios,II.5.1,14.953679999999999,TJ,CO2,74100.0,kg/TJ,1108067.6879999998,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,9377ea8d-c204-38e9-bd2e-45a87818d195 -2010,Entre Rios,II.5.1,14.953679999999999,TJ,CH4,3.9,kg/TJ,58.319351999999995,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,d466a2da-3937-3ffa-8303-171aaa6ca885 -2010,Entre Rios,II.5.1,14.953679999999999,TJ,N2O,3.9,kg/TJ,58.319351999999995,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,d466a2da-3937-3ffa-8303-171aaa6ca885 -2010,Capital Federal,II.1.1,1.2642,TJ,CO2,74100.0,kg/TJ,93677.22,Gas Oil combustion consumption by freight transport,AR-C,SESCO,annual,kg,ab94e4a9-8c3a-3701-b9e6-a1508d6e80fd -2010,Capital Federal,II.1.1,1.2642,TJ,CH4,3.9,kg/TJ,4.9303799999999995,Gas Oil combustion consumption by freight transport,AR-C,SESCO,annual,kg,711c8d47-8b0c-336d-a927-486b6975cf5e -2010,Capital Federal,II.1.1,1.2642,TJ,N2O,3.9,kg/TJ,4.9303799999999995,Gas Oil combustion consumption by freight transport,AR-C,SESCO,annual,kg,711c8d47-8b0c-336d-a927-486b6975cf5e -2010,Buenos Aires,II.1.1,3652.02096,TJ,CO2,74100.0,kg/TJ,270614753.136,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,06c09900-d71a-3df3-84c7-57614862480c -2010,Buenos Aires,II.1.1,3652.02096,TJ,CH4,3.9,kg/TJ,14242.881743999998,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,df2a449c-b403-3d1e-9022-5632945450e8 -2010,Buenos Aires,II.1.1,3652.02096,TJ,N2O,3.9,kg/TJ,14242.881743999998,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,df2a449c-b403-3d1e-9022-5632945450e8 -2010,Capital Federal,II.1.1,1197.12516,TJ,CO2,74100.0,kg/TJ,88706974.356,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,d3965184-4b80-3387-82a4-f1afcf7da5ee -2010,Capital Federal,II.1.1,1197.12516,TJ,CH4,3.9,kg/TJ,4668.788124,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,1aa4cc80-779e-323f-8ebd-b209b05546f6 -2010,Capital Federal,II.1.1,1197.12516,TJ,N2O,3.9,kg/TJ,4668.788124,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,1aa4cc80-779e-323f-8ebd-b209b05546f6 -2010,Córdoba,II.1.1,95.03171999999999,TJ,CO2,74100.0,kg/TJ,7041850.452,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,e1b493b2-5753-3da7-9de5-5decdc9b3922 -2010,Córdoba,II.1.1,95.03171999999999,TJ,CH4,3.9,kg/TJ,370.62370799999997,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,9343f9b1-353b-3649-af90-e7cd96e99ff9 -2010,Córdoba,II.1.1,95.03171999999999,TJ,N2O,3.9,kg/TJ,370.62370799999997,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,9343f9b1-353b-3649-af90-e7cd96e99ff9 -2010,Entre Rios,II.1.1,389.08464,TJ,CO2,74100.0,kg/TJ,28831171.823999997,Gas Oil combustion consumption by public passenger transport,AR-E,SESCO,annual,kg,f1b1ea8d-94f5-3258-8b26-5a5e57bd470e -2010,Entre Rios,II.1.1,389.08464,TJ,CH4,3.9,kg/TJ,1517.4300959999998,Gas Oil combustion consumption by public passenger transport,AR-E,SESCO,annual,kg,8241ab46-c6a8-3342-bb3a-35901a0f108f -2010,Entre Rios,II.1.1,389.08464,TJ,N2O,3.9,kg/TJ,1517.4300959999998,Gas Oil combustion consumption by public passenger transport,AR-E,SESCO,annual,kg,8241ab46-c6a8-3342-bb3a-35901a0f108f -2010,Mendoza,II.1.1,192.66407999999998,TJ,CO2,74100.0,kg/TJ,14276408.328,Gas Oil combustion consumption by public passenger transport,AR-M,SESCO,annual,kg,41b46fa5-435e-328e-b218-c94aeee8eb01 -2010,Mendoza,II.1.1,192.66407999999998,TJ,CH4,3.9,kg/TJ,751.3899119999999,Gas Oil combustion consumption by public passenger transport,AR-M,SESCO,annual,kg,95f90a60-daa9-3a57-9bf5-f62beeada642 -2010,Mendoza,II.1.1,192.66407999999998,TJ,N2O,3.9,kg/TJ,751.3899119999999,Gas Oil combustion consumption by public passenger transport,AR-M,SESCO,annual,kg,95f90a60-daa9-3a57-9bf5-f62beeada642 -2010,Misiones,II.1.1,206.06459999999998,TJ,CO2,74100.0,kg/TJ,15269386.86,Gas Oil combustion consumption by public passenger transport,AR-N,SESCO,annual,kg,6982e42a-dd8b-3437-add8-77a512c4cfbe -2010,Misiones,II.1.1,206.06459999999998,TJ,CH4,3.9,kg/TJ,803.65194,Gas Oil combustion consumption by public passenger transport,AR-N,SESCO,annual,kg,437f138f-fa16-3f47-8805-9a7eb7e4d7ac -2010,Misiones,II.1.1,206.06459999999998,TJ,N2O,3.9,kg/TJ,803.65194,Gas Oil combustion consumption by public passenger transport,AR-N,SESCO,annual,kg,437f138f-fa16-3f47-8805-9a7eb7e4d7ac -2010,Salta,II.1.1,70.14504,TJ,CO2,74100.0,kg/TJ,5197747.464,Gas Oil combustion consumption by public passenger transport,AR-A,SESCO,annual,kg,935beb1e-2ddf-3796-9814-5857ef5fc129 -2010,Salta,II.1.1,70.14504,TJ,CH4,3.9,kg/TJ,273.565656,Gas Oil combustion consumption by public passenger transport,AR-A,SESCO,annual,kg,686e09b8-c871-3fd9-a9fd-a1fac7e12730 -2010,Salta,II.1.1,70.14504,TJ,N2O,3.9,kg/TJ,273.565656,Gas Oil combustion consumption by public passenger transport,AR-A,SESCO,annual,kg,686e09b8-c871-3fd9-a9fd-a1fac7e12730 -2010,San Juan,II.1.1,70.7952,TJ,CO2,74100.0,kg/TJ,5245924.319999999,Gas Oil combustion consumption by public passenger transport,AR-J,SESCO,annual,kg,ec41350c-adf3-3382-8281-8df1080f026e -2010,San Juan,II.1.1,70.7952,TJ,CH4,3.9,kg/TJ,276.10128,Gas Oil combustion consumption by public passenger transport,AR-J,SESCO,annual,kg,132f1e98-c0e8-3535-9950-e2757f0292ab -2010,San Juan,II.1.1,70.7952,TJ,N2O,3.9,kg/TJ,276.10128,Gas Oil combustion consumption by public passenger transport,AR-J,SESCO,annual,kg,132f1e98-c0e8-3535-9950-e2757f0292ab -2010,San Luis,II.1.1,5.56248,TJ,CO2,74100.0,kg/TJ,412179.768,Gas Oil combustion consumption by public passenger transport,AR-D,SESCO,annual,kg,53435db9-7ed3-3ee9-8c9e-eb1ae5d8a279 -2010,San Luis,II.1.1,5.56248,TJ,CH4,3.9,kg/TJ,21.693672,Gas Oil combustion consumption by public passenger transport,AR-D,SESCO,annual,kg,05367247-4faa-3909-b82e-277584e68487 -2010,San Luis,II.1.1,5.56248,TJ,N2O,3.9,kg/TJ,21.693672,Gas Oil combustion consumption by public passenger transport,AR-D,SESCO,annual,kg,05367247-4faa-3909-b82e-277584e68487 -2010,Santa Fe,II.1.1,235.03284,TJ,CO2,74100.0,kg/TJ,17415933.444,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,3b2cb5f7-909e-3b31-b5e8-783a0ed0fae1 -2010,Santa Fe,II.1.1,235.03284,TJ,CH4,3.9,kg/TJ,916.628076,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,9fddf7ad-f83e-35b4-8a97-dbcdf05b7af7 -2010,Santa Fe,II.1.1,235.03284,TJ,N2O,3.9,kg/TJ,916.628076,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,9fddf7ad-f83e-35b4-8a97-dbcdf05b7af7 -2010,Córdoba,II.5.1,5.968184599999999,TJ,CO2,69300.0,kg/TJ,413595.1927799999,Motor Gasoline combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,320c2953-ad56-3b54-a560-aed527d7f6f8 -2010,Córdoba,II.5.1,5.968184599999999,TJ,CH4,33.0,kg/TJ,196.95009179999997,Motor Gasoline combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,0c93a720-0ab9-3310-9e80-dc90139f4412 -2010,Córdoba,II.5.1,5.968184599999999,TJ,N2O,3.2,kg/TJ,19.098190719999998,Motor Gasoline combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,d0a1671f-7125-3881-94c5-625af36ad0f9 -2010,Santa Fe,II.5.1,205.476247,TJ,CO2,69300.0,kg/TJ,14239503.9171,Motor Gasoline combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,6c0a036e-bdf7-3c27-bc29-90a7fdb327b7 -2010,Santa Fe,II.5.1,205.476247,TJ,CH4,33.0,kg/TJ,6780.716151,Motor Gasoline combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,0c667dc1-9604-3089-b7f9-0b4ec2ddfd3b -2010,Santa Fe,II.5.1,205.476247,TJ,N2O,3.2,kg/TJ,657.5239904,Motor Gasoline combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,5c9cc714-43f6-33e0-b9cf-90f5bffa11c3 -2010,Buenos Aires,II.5.1,204.1235112,TJ,CO2,74100.0,kg/TJ,15125552.17992,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,fc1d6e11-1690-3194-baa2-e79efd8856d6 -2010,Buenos Aires,II.5.1,204.1235112,TJ,CH4,3.9,kg/TJ,796.08169368,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,1dee880f-e138-3a4d-9781-54625f26504d -2010,Buenos Aires,II.5.1,204.1235112,TJ,N2O,3.9,kg/TJ,796.08169368,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,1dee880f-e138-3a4d-9781-54625f26504d -2010,Capital Federal,II.5.1,6.032039999999999,TJ,CO2,74100.0,kg/TJ,446974.16399999993,Gas Oil combustion consumption by agriculture machines,AR-C,SESCO,annual,kg,7ea9d952-3178-379e-a766-712cce5a49df -2010,Capital Federal,II.5.1,6.032039999999999,TJ,CH4,3.9,kg/TJ,23.524955999999996,Gas Oil combustion consumption by agriculture machines,AR-C,SESCO,annual,kg,bcd35ef7-f006-38bb-8577-2cdc03263183 -2010,Capital Federal,II.5.1,6.032039999999999,TJ,N2O,3.9,kg/TJ,23.524955999999996,Gas Oil combustion consumption by agriculture machines,AR-C,SESCO,annual,kg,bcd35ef7-f006-38bb-8577-2cdc03263183 -2010,Chaco,II.5.1,25.533227999999998,TJ,CO2,74100.0,kg/TJ,1892012.1947999997,Gas Oil combustion consumption by agriculture machines,AR-H,SESCO,annual,kg,2c1b42ff-b58d-3674-9b6f-34f984713855 -2010,Chaco,II.5.1,25.533227999999998,TJ,CH4,3.9,kg/TJ,99.57958919999999,Gas Oil combustion consumption by agriculture machines,AR-H,SESCO,annual,kg,b332a4a8-568d-3b94-8c8c-894388318b23 -2010,Chaco,II.5.1,25.533227999999998,TJ,N2O,3.9,kg/TJ,99.57958919999999,Gas Oil combustion consumption by agriculture machines,AR-H,SESCO,annual,kg,b332a4a8-568d-3b94-8c8c-894388318b23 -2010,Córdoba,II.5.1,51.602838,TJ,CO2,74100.0,kg/TJ,3823770.2958,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,72ee22ca-f2c8-3956-b773-ff8b34976b47 -2010,Córdoba,II.5.1,51.602838,TJ,CH4,3.9,kg/TJ,201.2510682,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,0e2a65a1-baa6-33c5-bd56-f7d37463155f -2010,Córdoba,II.5.1,51.602838,TJ,N2O,3.9,kg/TJ,201.2510682,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,0e2a65a1-baa6-33c5-bd56-f7d37463155f -2010,La Pampa,II.5.1,18.3142848,TJ,CO2,74100.0,kg/TJ,1357088.5036799998,Gas Oil combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,7a4f9a66-a5fb-391d-9e13-3a25ff7b5bbc -2010,La Pampa,II.5.1,18.3142848,TJ,CH4,3.9,kg/TJ,71.42571072,Gas Oil combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,3159597d-9596-3350-813a-9e78777c526c -2010,La Pampa,II.5.1,18.3142848,TJ,N2O,3.9,kg/TJ,71.42571072,Gas Oil combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,3159597d-9596-3350-813a-9e78777c526c -2010,Santa Fe,II.5.1,375.100782,TJ,CO2,74100.0,kg/TJ,27794967.9462,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,82ef3e92-522f-39c3-849b-9eb7c3f1efe8 -2010,Santa Fe,II.5.1,375.100782,TJ,CH4,3.9,kg/TJ,1462.8930498,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,4fd28983-1257-39cf-b9ca-164a64bed012 -2010,Santa Fe,II.5.1,375.100782,TJ,N2O,3.9,kg/TJ,1462.8930498,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,4fd28983-1257-39cf-b9ca-164a64bed012 -2010,Buenos Aires,II.5.1,14.288504999999999,TJ,CO2,73300.0,kg/TJ,1047347.4164999999,Naphtha combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,5ebc1695-e2d2-39d1-b2ae-e48cd83a56a9 -2010,Buenos Aires,II.5.1,14.288504999999999,TJ,CH4,0.5,kg/TJ,7.1442524999999995,Naphtha combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,01e27fb0-4364-38f6-b72e-4313cfcf72a7 -2010,Buenos Aires,II.5.1,14.288504999999999,TJ,N2O,2.0,kg/TJ,28.577009999999998,Naphtha combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,1f7573c8-6aa4-324a-a974-348febb59a8e -2010,Córdoba,II.5.1,8.703652649999999,TJ,CO2,73300.0,kg/TJ,637977.739245,Naphtha combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,f29b3e23-64e5-3419-94a5-3cf9c6b32c10 -2010,Córdoba,II.5.1,8.703652649999999,TJ,CH4,0.5,kg/TJ,4.351826324999999,Naphtha combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,0bef4eae-5216-3296-b5b3-a79079a620a9 -2010,Córdoba,II.5.1,8.703652649999999,TJ,N2O,2.0,kg/TJ,17.407305299999997,Naphtha combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,05d875d1-f22d-3cc2-acaa-eca06cd4e311 -2010,Santa Fe,II.5.1,17.003320950000003,TJ,CO2,73300.0,kg/TJ,1246343.4256350002,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,fb31d8fc-bbdb-34b4-ba27-f4f2739a36d2 -2010,Santa Fe,II.5.1,17.003320950000003,TJ,CH4,0.5,kg/TJ,8.501660475000001,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,1f7bb2a8-3d76-33e4-b7bc-3bc602d89c07 -2010,Santa Fe,II.5.1,17.003320950000003,TJ,N2O,2.0,kg/TJ,34.006641900000005,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,d22f9f34-73a9-3dbc-bfc1-749748a5be53 -2010,Córdoba,II.5.1,4.420185,TJ,CO2,73300.0,kg/TJ,323999.5605,Naphtha combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,c9368141-aad6-373b-a0e0-eae785bf41b3 -2010,Córdoba,II.5.1,4.420185,TJ,CH4,0.5,kg/TJ,2.2100925,Naphtha combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,47e7c30b-c529-3ab0-921a-b1c6edf58e93 -2010,Córdoba,II.5.1,4.420185,TJ,N2O,2.0,kg/TJ,8.84037,Naphtha combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,3d4b9447-fe3f-3f32-a177-f6375223094e -2010,Santa Fe,II.5.1,1.1238919999999997,TJ,CO2,73300.0,kg/TJ,82381.28359999998,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,b04d2b1c-6224-31cf-a671-0b24b2b5823f -2010,Santa Fe,II.5.1,1.1238919999999997,TJ,CH4,0.5,kg/TJ,0.5619459999999998,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,4f53d4d0-46fb-3bed-a83c-89039ca4a4bf -2010,Santa Fe,II.5.1,1.1238919999999997,TJ,N2O,2.0,kg/TJ,2.2477839999999993,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,fa70a917-b342-3bcf-93d2-e09a9d236051 -2010,Capital Federal,II.2.1,115.95170159999999,TJ,CO2,74100.0,kg/TJ,8592021.08856,Gas Oil combustion consumption by railway transport,AR-C,SESCO,annual,kg,75e68619-2560-3f48-91e3-3597d691e521 -2010,Capital Federal,II.2.1,115.95170159999999,TJ,CH4,3.9,kg/TJ,452.21163623999996,Gas Oil combustion consumption by railway transport,AR-C,SESCO,annual,kg,dbe39aa9-daad-3100-aec0-ec493782b805 -2010,Capital Federal,II.2.1,115.95170159999999,TJ,N2O,3.9,kg/TJ,452.21163623999996,Gas Oil combustion consumption by railway transport,AR-C,SESCO,annual,kg,dbe39aa9-daad-3100-aec0-ec493782b805 -2010,Mendoza,II.2.1,17.9530848,TJ,CO2,74100.0,kg/TJ,1330323.58368,Gas Oil combustion consumption by railway transport,AR-M,SESCO,annual,kg,4f3b4bfc-dfd3-32b3-80fa-bf608bd58a49 -2010,Mendoza,II.2.1,17.9530848,TJ,CH4,3.9,kg/TJ,70.01703072,Gas Oil combustion consumption by railway transport,AR-M,SESCO,annual,kg,d1c3b8aa-7287-3f90-a19c-9f0344105910 -2010,Mendoza,II.2.1,17.9530848,TJ,N2O,3.9,kg/TJ,70.01703072,Gas Oil combustion consumption by railway transport,AR-M,SESCO,annual,kg,d1c3b8aa-7287-3f90-a19c-9f0344105910 -2010,Tucuman,II.2.1,0.3048528,TJ,CO2,74100.0,kg/TJ,22589.59248,Gas Oil combustion consumption by railway transport,AR-T,SESCO,annual,kg,a1eecf3c-4287-3369-9691-a16b0a60d421 -2010,Tucuman,II.2.1,0.3048528,TJ,CH4,3.9,kg/TJ,1.18892592,Gas Oil combustion consumption by railway transport,AR-T,SESCO,annual,kg,aa88f922-8577-369a-95fb-0c5ca6d06690 -2010,Tucuman,II.2.1,0.3048528,TJ,N2O,3.9,kg/TJ,1.18892592,Gas Oil combustion consumption by railway transport,AR-T,SESCO,annual,kg,aa88f922-8577-369a-95fb-0c5ca6d06690 -2010,Buenos Aires,II.1.1,1540.98727104,TJ,CO2,74100.0,kg/TJ,114187156.784064,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,6027e3da-b9be-3adf-8f2f-2c5e3a73b560 -2010,Buenos Aires,II.1.1,1540.98727104,TJ,CH4,3.9,kg/TJ,6009.850357056,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,00cf7205-92da-3ce3-903d-11aca2a1d664 -2010,Buenos Aires,II.1.1,1540.98727104,TJ,N2O,3.9,kg/TJ,6009.850357056,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,00cf7205-92da-3ce3-903d-11aca2a1d664 -2010,Capital Federal,II.1.1,1331.6643580799998,TJ,CO2,74100.0,kg/TJ,98676328.933728,Gas Oil combustion consumption by freight transport,AR-C,SESCO,annual,kg,f1465e9b-f688-32bc-940e-7213d3dc872b -2010,Capital Federal,II.1.1,1331.6643580799998,TJ,CH4,3.9,kg/TJ,5193.490996512,Gas Oil combustion consumption by freight transport,AR-C,SESCO,annual,kg,3aae4751-3391-37aa-aff1-904a4bdcb94f -2010,Capital Federal,II.1.1,1331.6643580799998,TJ,N2O,3.9,kg/TJ,5193.490996512,Gas Oil combustion consumption by freight transport,AR-C,SESCO,annual,kg,3aae4751-3391-37aa-aff1-904a4bdcb94f -2010,Chaco,II.1.1,55.8743892,TJ,CO2,74100.0,kg/TJ,4140292.2397200004,Gas Oil combustion consumption by freight transport,AR-H,SESCO,annual,kg,96fa843c-2f92-3fde-9810-216364b021ea -2010,Chaco,II.1.1,55.8743892,TJ,CH4,3.9,kg/TJ,217.91011788,Gas Oil combustion consumption by freight transport,AR-H,SESCO,annual,kg,50dba2ae-8ce2-315a-9813-4b2a77ed72a6 -2010,Chaco,II.1.1,55.8743892,TJ,N2O,3.9,kg/TJ,217.91011788,Gas Oil combustion consumption by freight transport,AR-H,SESCO,annual,kg,50dba2ae-8ce2-315a-9813-4b2a77ed72a6 -2010,Chubut,II.1.1,3.5787695999999998,TJ,CO2,74100.0,kg/TJ,265186.82736,Gas Oil combustion consumption by freight transport,AR-U,SESCO,annual,kg,268aa20b-e31f-3404-ba53-4962da55fb05 -2010,Chubut,II.1.1,3.5787695999999998,TJ,CH4,3.9,kg/TJ,13.957201439999999,Gas Oil combustion consumption by freight transport,AR-U,SESCO,annual,kg,a0d51934-1920-3195-836c-834e4aa07025 -2010,Chubut,II.1.1,3.5787695999999998,TJ,N2O,3.9,kg/TJ,13.957201439999999,Gas Oil combustion consumption by freight transport,AR-U,SESCO,annual,kg,a0d51934-1920-3195-836c-834e4aa07025 -2010,Corrientes,II.1.1,137.2520268,TJ,CO2,74100.0,kg/TJ,10170375.185880002,Gas Oil combustion consumption by freight transport,AR-W,SESCO,annual,kg,6c4fb162-e18d-3b38-9996-71c9a81d0577 -2010,Corrientes,II.1.1,137.2520268,TJ,CH4,3.9,kg/TJ,535.28290452,Gas Oil combustion consumption by freight transport,AR-W,SESCO,annual,kg,2f150bf2-2f46-3c2f-924d-4cdfea82ebbc -2010,Corrientes,II.1.1,137.2520268,TJ,N2O,3.9,kg/TJ,535.28290452,Gas Oil combustion consumption by freight transport,AR-W,SESCO,annual,kg,2f150bf2-2f46-3c2f-924d-4cdfea82ebbc -2010,Córdoba,II.1.1,265.40795399999996,TJ,CO2,74100.0,kg/TJ,19666729.3914,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,f323359b-ae34-398b-a7c0-6259ff718696 -2010,Córdoba,II.1.1,265.40795399999996,TJ,CH4,3.9,kg/TJ,1035.0910205999999,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,893874df-3519-3be0-a684-a9c4f53e5820 -2010,Córdoba,II.1.1,265.40795399999996,TJ,N2O,3.9,kg/TJ,1035.0910205999999,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,893874df-3519-3be0-a684-a9c4f53e5820 -2010,Entre Rios,II.1.1,238.068726,TJ,CO2,74100.0,kg/TJ,17640892.5966,Gas Oil combustion consumption by freight transport,AR-E,SESCO,annual,kg,f9d497fe-af54-3c90-9328-733e83f3cfa2 -2010,Entre Rios,II.1.1,238.068726,TJ,CH4,3.9,kg/TJ,928.4680314,Gas Oil combustion consumption by freight transport,AR-E,SESCO,annual,kg,60abf862-a20d-348a-b6b6-edbbe11de407 -2010,Entre Rios,II.1.1,238.068726,TJ,N2O,3.9,kg/TJ,928.4680314,Gas Oil combustion consumption by freight transport,AR-E,SESCO,annual,kg,60abf862-a20d-348a-b6b6-edbbe11de407 -2010,La Pampa,II.1.1,0.039370800000000004,TJ,CO2,74100.0,kg/TJ,2917.3762800000004,Gas Oil combustion consumption by freight transport,AR-L,SESCO,annual,kg,c8ddfcc2-0abf-3deb-b992-e2d4f45fc8ae -2010,La Pampa,II.1.1,0.039370800000000004,TJ,CH4,3.9,kg/TJ,0.15354612,Gas Oil combustion consumption by freight transport,AR-L,SESCO,annual,kg,8e618e43-4cc5-3a2b-a729-08cf12199947 -2010,La Pampa,II.1.1,0.039370800000000004,TJ,N2O,3.9,kg/TJ,0.15354612,Gas Oil combustion consumption by freight transport,AR-L,SESCO,annual,kg,8e618e43-4cc5-3a2b-a729-08cf12199947 -2010,Mendoza,II.1.1,345.2436288,TJ,CO2,74100.0,kg/TJ,25582552.89408,Gas Oil combustion consumption by freight transport,AR-M,SESCO,annual,kg,6c7a3f71-3c27-349e-97b9-369495f0a66e -2010,Mendoza,II.1.1,345.2436288,TJ,CH4,3.9,kg/TJ,1346.45015232,Gas Oil combustion consumption by freight transport,AR-M,SESCO,annual,kg,046d6032-a900-3b22-8139-410efbe950f4 -2010,Mendoza,II.1.1,345.2436288,TJ,N2O,3.9,kg/TJ,1346.45015232,Gas Oil combustion consumption by freight transport,AR-M,SESCO,annual,kg,046d6032-a900-3b22-8139-410efbe950f4 -2010,Misiones,II.1.1,120.2897136,TJ,CO2,74100.0,kg/TJ,8913467.777759999,Gas Oil combustion consumption by freight transport,AR-N,SESCO,annual,kg,0c7df5f2-4cfa-39a2-8dee-bf0374fb9241 -2010,Misiones,II.1.1,120.2897136,TJ,CH4,3.9,kg/TJ,469.12988304,Gas Oil combustion consumption by freight transport,AR-N,SESCO,annual,kg,6d4a5f81-4949-3099-8999-c6ca64723d27 -2010,Misiones,II.1.1,120.2897136,TJ,N2O,3.9,kg/TJ,469.12988304,Gas Oil combustion consumption by freight transport,AR-N,SESCO,annual,kg,6d4a5f81-4949-3099-8999-c6ca64723d27 -2010,Rio Negro,II.1.1,14.3577,TJ,CO2,74100.0,kg/TJ,1063905.57,Gas Oil combustion consumption by freight transport,AR-R,SESCO,annual,kg,22a8362d-edda-3c67-8717-1a0ecf82a9ed -2010,Rio Negro,II.1.1,14.3577,TJ,CH4,3.9,kg/TJ,55.99503,Gas Oil combustion consumption by freight transport,AR-R,SESCO,annual,kg,0980d985-f46d-311a-8fd4-4656ba0e4af8 -2010,Rio Negro,II.1.1,14.3577,TJ,N2O,3.9,kg/TJ,55.99503,Gas Oil combustion consumption by freight transport,AR-R,SESCO,annual,kg,0980d985-f46d-311a-8fd4-4656ba0e4af8 -2010,Salta,II.1.1,6.451032,TJ,CO2,74100.0,kg/TJ,478021.47119999997,Gas Oil combustion consumption by freight transport,AR-A,SESCO,annual,kg,796a70fb-c3ed-3871-9cdf-3be3b6fd1e7a -2010,Salta,II.1.1,6.451032,TJ,CH4,3.9,kg/TJ,25.159024799999997,Gas Oil combustion consumption by freight transport,AR-A,SESCO,annual,kg,fa3c8ea2-6bfc-36a7-a670-3c8262a7fa22 -2010,Salta,II.1.1,6.451032,TJ,N2O,3.9,kg/TJ,25.159024799999997,Gas Oil combustion consumption by freight transport,AR-A,SESCO,annual,kg,fa3c8ea2-6bfc-36a7-a670-3c8262a7fa22 -2010,San Juan,II.1.1,18.420477599999998,TJ,CO2,74100.0,kg/TJ,1364957.39016,Gas Oil combustion consumption by freight transport,AR-J,SESCO,annual,kg,83ad76bb-c184-3fc1-9408-031d8d9290d6 -2010,San Juan,II.1.1,18.420477599999998,TJ,CH4,3.9,kg/TJ,71.83986263999999,Gas Oil combustion consumption by freight transport,AR-J,SESCO,annual,kg,05a51916-4e36-32e5-bae1-c4d1a1c1f38f -2010,San Juan,II.1.1,18.420477599999998,TJ,N2O,3.9,kg/TJ,71.83986263999999,Gas Oil combustion consumption by freight transport,AR-J,SESCO,annual,kg,05a51916-4e36-32e5-bae1-c4d1a1c1f38f -2010,San Luis,II.1.1,147.20850480000001,TJ,CO2,74100.0,kg/TJ,10908150.205680002,Gas Oil combustion consumption by freight transport,AR-D,SESCO,annual,kg,ae7580b9-3d79-389d-b1c8-2769756d9429 -2010,San Luis,II.1.1,147.20850480000001,TJ,CH4,3.9,kg/TJ,574.1131687200001,Gas Oil combustion consumption by freight transport,AR-D,SESCO,annual,kg,21d95ea7-2a21-38e8-929c-0555cfed3ba2 -2010,San Luis,II.1.1,147.20850480000001,TJ,N2O,3.9,kg/TJ,574.1131687200001,Gas Oil combustion consumption by freight transport,AR-D,SESCO,annual,kg,21d95ea7-2a21-38e8-929c-0555cfed3ba2 -2010,Santa Fe,II.1.1,1080.7400184,TJ,CO2,74100.0,kg/TJ,80082835.36344,Gas Oil combustion consumption by freight transport,AR-S,SESCO,annual,kg,170e3f79-d5a8-3344-b36c-0c3f76ffb865 -2010,Santa Fe,II.1.1,1080.7400184,TJ,CH4,3.9,kg/TJ,4214.88607176,Gas Oil combustion consumption by freight transport,AR-S,SESCO,annual,kg,7218e98c-5146-307d-96bb-f17430bb20c3 -2010,Santa Fe,II.1.1,1080.7400184,TJ,N2O,3.9,kg/TJ,4214.88607176,Gas Oil combustion consumption by freight transport,AR-S,SESCO,annual,kg,7218e98c-5146-307d-96bb-f17430bb20c3 -2010,Santiago del Estero,II.1.1,0.429828,TJ,CO2,74100.0,kg/TJ,31850.2548,Gas Oil combustion consumption by freight transport,AR-G,SESCO,annual,kg,4df94e83-e21a-3d6d-becd-3f4e7fda2dba -2010,Santiago del Estero,II.1.1,0.429828,TJ,CH4,3.9,kg/TJ,1.6763291999999999,Gas Oil combustion consumption by freight transport,AR-G,SESCO,annual,kg,03f53f40-00c9-3832-9943-3356b95a5898 -2010,Santiago del Estero,II.1.1,0.429828,TJ,N2O,3.9,kg/TJ,1.6763291999999999,Gas Oil combustion consumption by freight transport,AR-G,SESCO,annual,kg,03f53f40-00c9-3832-9943-3356b95a5898 -2010,Tierra del Fuego,II.1.1,39.2378784,TJ,CO2,74100.0,kg/TJ,2907526.78944,Gas Oil combustion consumption by freight transport,AR-V,SESCO,annual,kg,82179f9f-9e0b-33c9-b85f-e1756d5bff17 -2010,Tierra del Fuego,II.1.1,39.2378784,TJ,CH4,3.9,kg/TJ,153.02772575999998,Gas Oil combustion consumption by freight transport,AR-V,SESCO,annual,kg,d7fa711c-6130-3579-868a-075a061db305 -2010,Tierra del Fuego,II.1.1,39.2378784,TJ,N2O,3.9,kg/TJ,153.02772575999998,Gas Oil combustion consumption by freight transport,AR-V,SESCO,annual,kg,d7fa711c-6130-3579-868a-075a061db305 -2010,Tucuman,II.1.1,220.194744,TJ,CO2,74100.0,kg/TJ,16316430.530399999,Gas Oil combustion consumption by freight transport,AR-T,SESCO,annual,kg,7ef65946-4b1a-3cb3-959a-947a2ebfc2ac -2010,Tucuman,II.1.1,220.194744,TJ,CH4,3.9,kg/TJ,858.7595015999999,Gas Oil combustion consumption by freight transport,AR-T,SESCO,annual,kg,a737b73b-b9a3-3657-8df5-269f21dc1888 -2010,Tucuman,II.1.1,220.194744,TJ,N2O,3.9,kg/TJ,858.7595015999999,Gas Oil combustion consumption by freight transport,AR-T,SESCO,annual,kg,a737b73b-b9a3-3657-8df5-269f21dc1888 -2010,Buenos Aires,II.1.1,25.457376,TJ,CO2,74100.0,kg/TJ,1886391.5616,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,3ff923a7-5ef7-3474-8760-7981c1db4b2d -2010,Buenos Aires,II.1.1,25.457376,TJ,CH4,3.9,kg/TJ,99.2837664,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,d9f2a292-c100-3636-955e-411fc0aedc59 -2010,Buenos Aires,II.1.1,25.457376,TJ,N2O,3.9,kg/TJ,99.2837664,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,d9f2a292-c100-3636-955e-411fc0aedc59 -2010,Capital Federal,II.1.1,35.4413052,TJ,CO2,74100.0,kg/TJ,2626200.71532,Gas Oil combustion consumption by freight transport,AR-C,SESCO,annual,kg,0be3211b-bf98-35a0-b02a-3a7d2a378b10 -2010,Capital Federal,II.1.1,35.4413052,TJ,CH4,3.9,kg/TJ,138.22109028,Gas Oil combustion consumption by freight transport,AR-C,SESCO,annual,kg,ff7b877d-5dd6-3f02-9707-82923b823674 -2010,Capital Federal,II.1.1,35.4413052,TJ,N2O,3.9,kg/TJ,138.22109028,Gas Oil combustion consumption by freight transport,AR-C,SESCO,annual,kg,ff7b877d-5dd6-3f02-9707-82923b823674 -2010,Chaco,II.1.1,0.47570039999999997,TJ,CO2,74100.0,kg/TJ,35249.399639999996,Gas Oil combustion consumption by freight transport,AR-H,SESCO,annual,kg,150956d0-5fae-3f2e-9dfb-85a653f98cd7 -2010,Chaco,II.1.1,0.47570039999999997,TJ,CH4,3.9,kg/TJ,1.8552315599999998,Gas Oil combustion consumption by freight transport,AR-H,SESCO,annual,kg,65eb001c-1dcb-3891-8ce3-5e1fba418ba7 -2010,Chaco,II.1.1,0.47570039999999997,TJ,N2O,3.9,kg/TJ,1.8552315599999998,Gas Oil combustion consumption by freight transport,AR-H,SESCO,annual,kg,65eb001c-1dcb-3891-8ce3-5e1fba418ba7 -2010,Chubut,II.1.1,0.0718788,TJ,CO2,74100.0,kg/TJ,5326.219080000001,Gas Oil combustion consumption by freight transport,AR-U,SESCO,annual,kg,23f83d10-84ce-34b3-9744-92e1072fe79f -2010,Chubut,II.1.1,0.0718788,TJ,CH4,3.9,kg/TJ,0.28032732000000005,Gas Oil combustion consumption by freight transport,AR-U,SESCO,annual,kg,498e5345-addc-36cb-8114-21e9eda5ef3a -2010,Chubut,II.1.1,0.0718788,TJ,N2O,3.9,kg/TJ,0.28032732000000005,Gas Oil combustion consumption by freight transport,AR-U,SESCO,annual,kg,498e5345-addc-36cb-8114-21e9eda5ef3a -2010,Corrientes,II.1.1,2.318904,TJ,CO2,74100.0,kg/TJ,171830.78639999998,Gas Oil combustion consumption by freight transport,AR-W,SESCO,annual,kg,a6c2c93d-0178-3683-9a3d-5eb1f7ee7c6c -2010,Corrientes,II.1.1,2.318904,TJ,CH4,3.9,kg/TJ,9.043725599999998,Gas Oil combustion consumption by freight transport,AR-W,SESCO,annual,kg,cf49962d-8909-352d-9464-b16ee428c704 -2010,Corrientes,II.1.1,2.318904,TJ,N2O,3.9,kg/TJ,9.043725599999998,Gas Oil combustion consumption by freight transport,AR-W,SESCO,annual,kg,cf49962d-8909-352d-9464-b16ee428c704 -2010,Córdoba,II.1.1,2.8675668,TJ,CO2,74100.0,kg/TJ,212486.69988,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,6cae47d2-ca8e-3b2d-82b7-d3fd87ef6769 -2010,Córdoba,II.1.1,2.8675668,TJ,CH4,3.9,kg/TJ,11.18351052,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,351de90b-4efb-3eac-a9c6-d0175590edea -2010,Córdoba,II.1.1,2.8675668,TJ,N2O,3.9,kg/TJ,11.18351052,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,351de90b-4efb-3eac-a9c6-d0175590edea -2010,Entre Rios,II.1.1,7.694282399999999,TJ,CO2,74100.0,kg/TJ,570146.32584,Gas Oil combustion consumption by freight transport,AR-E,SESCO,annual,kg,53a0dc4a-1b1d-3fad-bf8e-c9db7a84c430 -2010,Entre Rios,II.1.1,7.694282399999999,TJ,CH4,3.9,kg/TJ,30.007701359999995,Gas Oil combustion consumption by freight transport,AR-E,SESCO,annual,kg,de1b94a2-edea-3040-92df-2d6f17e3eca9 -2010,Entre Rios,II.1.1,7.694282399999999,TJ,N2O,3.9,kg/TJ,30.007701359999995,Gas Oil combustion consumption by freight transport,AR-E,SESCO,annual,kg,de1b94a2-edea-3040-92df-2d6f17e3eca9 -2010,Mendoza,II.1.1,1.3151291999999999,TJ,CO2,74100.0,kg/TJ,97451.07371999999,Gas Oil combustion consumption by freight transport,AR-M,SESCO,annual,kg,cd1457b2-1091-30d2-93db-272bfed19892 -2010,Mendoza,II.1.1,1.3151291999999999,TJ,CH4,3.9,kg/TJ,5.129003879999999,Gas Oil combustion consumption by freight transport,AR-M,SESCO,annual,kg,97049504-eef0-3aa0-ade7-cb8881bfb02a -2010,Mendoza,II.1.1,1.3151291999999999,TJ,N2O,3.9,kg/TJ,5.129003879999999,Gas Oil combustion consumption by freight transport,AR-M,SESCO,annual,kg,97049504-eef0-3aa0-ade7-cb8881bfb02a -2010,Misiones,II.1.1,1.6821084000000002,TJ,CO2,74100.0,kg/TJ,124644.23244,Gas Oil combustion consumption by freight transport,AR-N,SESCO,annual,kg,7237b459-e056-37c7-8369-11cf64c22972 -2010,Misiones,II.1.1,1.6821084000000002,TJ,CH4,3.9,kg/TJ,6.56022276,Gas Oil combustion consumption by freight transport,AR-N,SESCO,annual,kg,ab707faf-f45b-3562-a356-14bed5d29790 -2010,Misiones,II.1.1,1.6821084000000002,TJ,N2O,3.9,kg/TJ,6.56022276,Gas Oil combustion consumption by freight transport,AR-N,SESCO,annual,kg,ab707faf-f45b-3562-a356-14bed5d29790 -2010,Rio Negro,II.1.1,0.37348079999999995,TJ,CO2,74100.0,kg/TJ,27674.927279999996,Gas Oil combustion consumption by freight transport,AR-R,SESCO,annual,kg,ee8b90d6-456c-322f-b74b-d414d5b20361 -2010,Rio Negro,II.1.1,0.37348079999999995,TJ,CH4,3.9,kg/TJ,1.4565751199999997,Gas Oil combustion consumption by freight transport,AR-R,SESCO,annual,kg,4af368ef-e51c-3211-907a-2d29ba0730b1 -2010,Rio Negro,II.1.1,0.37348079999999995,TJ,N2O,3.9,kg/TJ,1.4565751199999997,Gas Oil combustion consumption by freight transport,AR-R,SESCO,annual,kg,4af368ef-e51c-3211-907a-2d29ba0730b1 -2010,Salta,II.1.1,0.016253999999999998,TJ,CO2,74100.0,kg/TJ,1204.4213999999997,Gas Oil combustion consumption by freight transport,AR-A,SESCO,annual,kg,3dc7ce06-a35b-3bad-9481-9410078d6a33 -2010,Salta,II.1.1,0.016253999999999998,TJ,CH4,3.9,kg/TJ,0.06339059999999999,Gas Oil combustion consumption by freight transport,AR-A,SESCO,annual,kg,11b174e1-94b6-3283-a480-d4d7ab174fce -2010,Salta,II.1.1,0.016253999999999998,TJ,N2O,3.9,kg/TJ,0.06339059999999999,Gas Oil combustion consumption by freight transport,AR-A,SESCO,annual,kg,11b174e1-94b6-3283-a480-d4d7ab174fce -2010,San Juan,II.1.1,0.0989688,TJ,CO2,74100.0,kg/TJ,7333.5880799999995,Gas Oil combustion consumption by freight transport,AR-J,SESCO,annual,kg,cfa44bbc-8f01-3c24-a8d7-a96719cd1a7e -2010,San Juan,II.1.1,0.0989688,TJ,CH4,3.9,kg/TJ,0.38597832,Gas Oil combustion consumption by freight transport,AR-J,SESCO,annual,kg,09233483-0b94-3f43-a6a8-2552581bc768 -2010,San Juan,II.1.1,0.0989688,TJ,N2O,3.9,kg/TJ,0.38597832,Gas Oil combustion consumption by freight transport,AR-J,SESCO,annual,kg,09233483-0b94-3f43-a6a8-2552581bc768 -2010,San Luis,II.1.1,0.6913368,TJ,CO2,74100.0,kg/TJ,51228.05688,Gas Oil combustion consumption by freight transport,AR-D,SESCO,annual,kg,5e3effd7-e345-3900-963b-fb14835861f4 -2010,San Luis,II.1.1,0.6913368,TJ,CH4,3.9,kg/TJ,2.6962135199999997,Gas Oil combustion consumption by freight transport,AR-D,SESCO,annual,kg,e22337c7-4df9-38c3-a202-d50db0368c67 -2010,San Luis,II.1.1,0.6913368,TJ,N2O,3.9,kg/TJ,2.6962135199999997,Gas Oil combustion consumption by freight transport,AR-D,SESCO,annual,kg,e22337c7-4df9-38c3-a202-d50db0368c67 -2010,Santa Fe,II.1.1,4.2083412,TJ,CO2,74100.0,kg/TJ,311838.08291999996,Gas Oil combustion consumption by freight transport,AR-S,SESCO,annual,kg,053d56a7-6d71-3c75-920d-84e19dd17fa7 -2010,Santa Fe,II.1.1,4.2083412,TJ,CH4,3.9,kg/TJ,16.412530679999996,Gas Oil combustion consumption by freight transport,AR-S,SESCO,annual,kg,a6fe05e6-0e74-33c8-bcc0-095ec572d454 -2010,Santa Fe,II.1.1,4.2083412,TJ,N2O,3.9,kg/TJ,16.412530679999996,Gas Oil combustion consumption by freight transport,AR-S,SESCO,annual,kg,a6fe05e6-0e74-33c8-bcc0-095ec572d454 -2010,Santiago del Estero,II.1.1,0.0278124,TJ,CO2,74100.0,kg/TJ,2060.8988400000003,Gas Oil combustion consumption by freight transport,AR-G,SESCO,annual,kg,c2a5c162-ce1c-3507-9915-707cf21b44fb -2010,Santiago del Estero,II.1.1,0.0278124,TJ,CH4,3.9,kg/TJ,0.10846836,Gas Oil combustion consumption by freight transport,AR-G,SESCO,annual,kg,f443b69e-e7ce-3cff-9323-f202a25a8b7b -2010,Santiago del Estero,II.1.1,0.0278124,TJ,N2O,3.9,kg/TJ,0.10846836,Gas Oil combustion consumption by freight transport,AR-G,SESCO,annual,kg,f443b69e-e7ce-3cff-9323-f202a25a8b7b -2010,Tierra del Fuego,II.1.1,0.8080044,TJ,CO2,74100.0,kg/TJ,59873.126039999996,Gas Oil combustion consumption by freight transport,AR-V,SESCO,annual,kg,dc1161cc-b48d-34d8-8a2a-f10c40798b67 -2010,Tierra del Fuego,II.1.1,0.8080044,TJ,CH4,3.9,kg/TJ,3.15121716,Gas Oil combustion consumption by freight transport,AR-V,SESCO,annual,kg,3770878c-07b5-392d-b1ce-05b8f81114a2 -2010,Tierra del Fuego,II.1.1,0.8080044,TJ,N2O,3.9,kg/TJ,3.15121716,Gas Oil combustion consumption by freight transport,AR-V,SESCO,annual,kg,3770878c-07b5-392d-b1ce-05b8f81114a2 -2010,Tucuman,II.1.1,0.6053711999999999,TJ,CO2,74100.0,kg/TJ,44858.00591999999,Gas Oil combustion consumption by freight transport,AR-T,SESCO,annual,kg,0b7d48d3-2807-3bc5-bfa7-956d2bb0fb3f -2010,Tucuman,II.1.1,0.6053711999999999,TJ,CH4,3.9,kg/TJ,2.3609476799999993,Gas Oil combustion consumption by freight transport,AR-T,SESCO,annual,kg,5714fd42-3be8-30e6-b54f-15d3e4aac801 -2010,Tucuman,II.1.1,0.6053711999999999,TJ,N2O,3.9,kg/TJ,2.3609476799999993,Gas Oil combustion consumption by freight transport,AR-T,SESCO,annual,kg,5714fd42-3be8-30e6-b54f-15d3e4aac801 -2010,Buenos Aires,II.1.1,0.0010279499999999997,TJ,CO2,73300.0,kg/TJ,75.34873499999998,Naphtha combustion consumption by freight transport,AR-B,SESCO,annual,kg,3f24a021-7875-3f24-ba69-876dfe7ca701 -2010,Buenos Aires,II.1.1,0.0010279499999999997,TJ,CH4,0.5,kg/TJ,0.0005139749999999998,Naphtha combustion consumption by freight transport,AR-B,SESCO,annual,kg,79802b8a-6324-3f6f-8b1c-bd1865dd8c62 -2010,Buenos Aires,II.1.1,0.0010279499999999997,TJ,N2O,2.0,kg/TJ,0.0020558999999999994,Naphtha combustion consumption by freight transport,AR-B,SESCO,annual,kg,6cc348dc-11bc-3f2e-9315-74605f73bd2b -2010,Capital Federal,II.1.1,0.01610455,TJ,CO2,73300.0,kg/TJ,1180.463515,Naphtha combustion consumption by freight transport,AR-C,SESCO,annual,kg,9e5027cc-6ba3-396a-8e1d-c8012a54b879 -2010,Capital Federal,II.1.1,0.01610455,TJ,CH4,0.5,kg/TJ,0.008052275,Naphtha combustion consumption by freight transport,AR-C,SESCO,annual,kg,b3812970-48a8-3c42-8994-4e32f7d48390 -2010,Capital Federal,II.1.1,0.01610455,TJ,N2O,2.0,kg/TJ,0.0322091,Naphtha combustion consumption by freight transport,AR-C,SESCO,annual,kg,6dd378fb-fc28-3c67-8342-1b965a2ac4a1 -2010,Misiones,II.1.1,0.00239855,TJ,CO2,73300.0,kg/TJ,175.813715,Naphtha combustion consumption by freight transport,AR-N,SESCO,annual,kg,68f4ac3c-71c9-3be3-a175-a106bbab8938 -2010,Misiones,II.1.1,0.00239855,TJ,CH4,0.5,kg/TJ,0.001199275,Naphtha combustion consumption by freight transport,AR-N,SESCO,annual,kg,3a1dd1f4-6ebb-349c-980e-88fcee81a8a1 -2010,Misiones,II.1.1,0.00239855,TJ,N2O,2.0,kg/TJ,0.0047971,Naphtha combustion consumption by freight transport,AR-N,SESCO,annual,kg,b8e3ce02-ea76-365b-a952-044a108073d8 -2010,Santa Fe,II.1.1,0.07846684999999999,TJ,CO2,73300.0,kg/TJ,5751.620104999999,Naphtha combustion consumption by freight transport,AR-S,SESCO,annual,kg,593a6d73-cdcb-3098-8af4-25db85613c5a -2010,Santa Fe,II.1.1,0.07846684999999999,TJ,CH4,0.5,kg/TJ,0.039233424999999995,Naphtha combustion consumption by freight transport,AR-S,SESCO,annual,kg,99c6ee55-9c61-30a6-90f1-bb9b2e3c06a3 -2010,Santa Fe,II.1.1,0.07846684999999999,TJ,N2O,2.0,kg/TJ,0.15693369999999998,Naphtha combustion consumption by freight transport,AR-S,SESCO,annual,kg,f509ad97-0ea0-3ac5-b0a8-3d66eec41a07 -2010,Buenos Aires,II.1.1,4.488715,TJ,CO2,73300.0,kg/TJ,329022.8095,Naphtha combustion consumption by freight transport,AR-B,SESCO,annual,kg,e98cca17-da78-31e6-b2d9-aee2d59bc147 -2010,Buenos Aires,II.1.1,4.488715,TJ,CH4,0.5,kg/TJ,2.2443575,Naphtha combustion consumption by freight transport,AR-B,SESCO,annual,kg,209cd5f4-b439-3ba8-9a94-a7142d84019a -2010,Buenos Aires,II.1.1,4.488715,TJ,N2O,2.0,kg/TJ,8.97743,Naphtha combustion consumption by freight transport,AR-B,SESCO,annual,kg,625799c9-cfe0-357f-8162-573b44fa8431 -2010,Capital Federal,II.1.1,15.88559665,TJ,CO2,73300.0,kg/TJ,1164414.234445,Naphtha combustion consumption by freight transport,AR-C,SESCO,annual,kg,6706d359-f869-3e9c-9ec0-5875fdcf8131 -2010,Capital Federal,II.1.1,15.88559665,TJ,CH4,0.5,kg/TJ,7.942798325,Naphtha combustion consumption by freight transport,AR-C,SESCO,annual,kg,1e96d499-c8f3-3c63-ae00-527cd92aef94 -2010,Capital Federal,II.1.1,15.88559665,TJ,N2O,2.0,kg/TJ,31.7711933,Naphtha combustion consumption by freight transport,AR-C,SESCO,annual,kg,18a5afa8-938d-31f3-92a3-edb330b9755a -2010,Corrientes,II.1.1,0.0089089,TJ,CO2,73300.0,kg/TJ,653.02237,Naphtha combustion consumption by freight transport,AR-W,SESCO,annual,kg,5028d749-ac8e-3451-a1cd-a8726d078da7 -2010,Corrientes,II.1.1,0.0089089,TJ,CH4,0.5,kg/TJ,0.00445445,Naphtha combustion consumption by freight transport,AR-W,SESCO,annual,kg,2d9c18f3-9374-3e9e-811b-f4d8d508c79e -2010,Corrientes,II.1.1,0.0089089,TJ,N2O,2.0,kg/TJ,0.0178178,Naphtha combustion consumption by freight transport,AR-W,SESCO,annual,kg,a1548b43-9f16-3c77-a93c-78076771d93b -2010,Córdoba,II.1.1,0.4708011,TJ,CO2,73300.0,kg/TJ,34509.720629999996,Naphtha combustion consumption by freight transport,AR-X,SESCO,annual,kg,4cf9f83c-5c2c-3e95-8fd0-c70cb75e7bd5 -2010,Córdoba,II.1.1,0.4708011,TJ,CH4,0.5,kg/TJ,0.23540055,Naphtha combustion consumption by freight transport,AR-X,SESCO,annual,kg,ece7d76b-683c-3e66-9963-0c84fb65c658 -2010,Córdoba,II.1.1,0.4708011,TJ,N2O,2.0,kg/TJ,0.9416022,Naphtha combustion consumption by freight transport,AR-X,SESCO,annual,kg,a9159876-3d0d-3bf2-8567-b4cd5e966d56 -2010,Entre Rios,II.1.1,36.573090400000005,TJ,CO2,73300.0,kg/TJ,2680807.52632,Naphtha combustion consumption by freight transport,AR-E,SESCO,annual,kg,af4edf69-9162-3c1b-a572-6c7da5352d77 -2010,Entre Rios,II.1.1,36.573090400000005,TJ,CH4,0.5,kg/TJ,18.286545200000003,Naphtha combustion consumption by freight transport,AR-E,SESCO,annual,kg,8d520522-6a38-380e-97d9-e0a7749b8554 -2010,Entre Rios,II.1.1,36.573090400000005,TJ,N2O,2.0,kg/TJ,73.14618080000001,Naphtha combustion consumption by freight transport,AR-E,SESCO,annual,kg,94144fe5-7bcf-3a93-88df-95061eb6c1fc -2010,Misiones,II.1.1,0.0226149,TJ,CO2,73300.0,kg/TJ,1657.67217,Naphtha combustion consumption by freight transport,AR-N,SESCO,annual,kg,a7479bc8-eea0-3efd-b566-8586853b0a2d -2010,Misiones,II.1.1,0.0226149,TJ,CH4,0.5,kg/TJ,0.01130745,Naphtha combustion consumption by freight transport,AR-N,SESCO,annual,kg,864891d4-af02-38aa-afbf-9dfcfaa7f976 -2010,Misiones,II.1.1,0.0226149,TJ,N2O,2.0,kg/TJ,0.0452298,Naphtha combustion consumption by freight transport,AR-N,SESCO,annual,kg,c71f03b9-f0ca-3a33-838a-92023eee4c6d -2010,Salta,II.1.1,1.0334324,TJ,CO2,73300.0,kg/TJ,75750.59491999999,Naphtha combustion consumption by freight transport,AR-A,SESCO,annual,kg,ece8e709-5652-31aa-bff7-d68b22457b70 -2010,Salta,II.1.1,1.0334324,TJ,CH4,0.5,kg/TJ,0.5167162,Naphtha combustion consumption by freight transport,AR-A,SESCO,annual,kg,38c25837-b907-34f7-8a32-dc2492ec722a -2010,Salta,II.1.1,1.0334324,TJ,N2O,2.0,kg/TJ,2.0668648,Naphtha combustion consumption by freight transport,AR-A,SESCO,annual,kg,f1593c18-0d8f-375f-82ed-d27d0be354e5 -2010,San Luis,II.1.1,0.07024324999999998,TJ,CO2,73300.0,kg/TJ,5148.830224999999,Naphtha combustion consumption by freight transport,AR-D,SESCO,annual,kg,a4eb5cfc-9fd1-3718-8cca-e2b1ad4f1443 -2010,San Luis,II.1.1,0.07024324999999998,TJ,CH4,0.5,kg/TJ,0.03512162499999999,Naphtha combustion consumption by freight transport,AR-D,SESCO,annual,kg,cfb0c057-8f1e-3f5d-bc9d-4aa287d5411b -2010,San Luis,II.1.1,0.07024324999999998,TJ,N2O,2.0,kg/TJ,0.14048649999999996,Naphtha combustion consumption by freight transport,AR-D,SESCO,annual,kg,93c34e91-3e04-3322-959f-752db6757e6d -2010,Santa Fe,II.1.1,0.77815815,TJ,CO2,73300.0,kg/TJ,57038.992395,Naphtha combustion consumption by freight transport,AR-S,SESCO,annual,kg,388ffc62-48b5-3c04-915d-960bb475cea2 -2010,Santa Fe,II.1.1,0.77815815,TJ,CH4,0.5,kg/TJ,0.389079075,Naphtha combustion consumption by freight transport,AR-S,SESCO,annual,kg,91662ef3-02a1-337d-afe6-db142a34fb68 -2010,Santa Fe,II.1.1,0.77815815,TJ,N2O,2.0,kg/TJ,1.5563163,Naphtha combustion consumption by freight transport,AR-S,SESCO,annual,kg,162f43a2-03f4-32ec-a5e5-1019471793a9 -2010,Santiago del Estero,II.1.1,0.030153199999999998,TJ,CO2,73300.0,kg/TJ,2210.2295599999998,Naphtha combustion consumption by freight transport,AR-G,SESCO,annual,kg,3d657dd3-61a0-3fd1-90ab-621dee230f22 -2010,Santiago del Estero,II.1.1,0.030153199999999998,TJ,CH4,0.5,kg/TJ,0.015076599999999999,Naphtha combustion consumption by freight transport,AR-G,SESCO,annual,kg,0c19da1e-ac0c-352f-98eb-0cb79bf58528 -2010,Santiago del Estero,II.1.1,0.030153199999999998,TJ,N2O,2.0,kg/TJ,0.060306399999999996,Naphtha combustion consumption by freight transport,AR-G,SESCO,annual,kg,1f6ca08d-df31-32ca-b11f-70c8fd9ff640 -2010,Tierra del Fuego,II.1.1,0.0185031,TJ,CO2,73300.0,kg/TJ,1356.2772300000001,Naphtha combustion consumption by freight transport,AR-V,SESCO,annual,kg,ab673624-8363-332d-a5c1-d4662ac1127d -2010,Tierra del Fuego,II.1.1,0.0185031,TJ,CH4,0.5,kg/TJ,0.00925155,Naphtha combustion consumption by freight transport,AR-V,SESCO,annual,kg,dbcc454d-adbe-3d54-963f-bf9d5868ff7e -2010,Tierra del Fuego,II.1.1,0.0185031,TJ,N2O,2.0,kg/TJ,0.0370062,Naphtha combustion consumption by freight transport,AR-V,SESCO,annual,kg,cf73dc1c-bc04-3f56-a52d-e4e79341342a -2010,Tucuman,II.1.1,0.15453514999999998,TJ,CO2,73300.0,kg/TJ,11327.426494999998,Naphtha combustion consumption by freight transport,AR-T,SESCO,annual,kg,a607d211-af78-33cd-873d-871e16beb931 -2010,Tucuman,II.1.1,0.15453514999999998,TJ,CH4,0.5,kg/TJ,0.07726757499999999,Naphtha combustion consumption by freight transport,AR-T,SESCO,annual,kg,90968d46-0214-38f3-86b9-134f33023281 -2010,Tucuman,II.1.1,0.15453514999999998,TJ,N2O,2.0,kg/TJ,0.30907029999999996,Naphtha combustion consumption by freight transport,AR-T,SESCO,annual,kg,1c12e326-6ad4-337b-a9a9-33bc9e748d5f -2010,Buenos Aires,II.1.1,3.21645555,TJ,CO2,73300.0,kg/TJ,235766.191815,Naphtha combustion consumption by freight transport,AR-B,SESCO,annual,kg,e4455b89-7465-32c6-995a-488abc902b9d -2010,Buenos Aires,II.1.1,3.21645555,TJ,CH4,0.5,kg/TJ,1.608227775,Naphtha combustion consumption by freight transport,AR-B,SESCO,annual,kg,5df300d6-a0c2-3952-8f00-4a83acfae4fc -2010,Buenos Aires,II.1.1,3.21645555,TJ,N2O,2.0,kg/TJ,6.4329111,Naphtha combustion consumption by freight transport,AR-B,SESCO,annual,kg,a5406212-abe7-3aab-946a-8f11d89d42c1 -2010,Capital Federal,II.1.1,16.32281805,TJ,CO2,73300.0,kg/TJ,1196462.5630649999,Naphtha combustion consumption by freight transport,AR-C,SESCO,annual,kg,7da0b75f-050f-3108-9ae4-9878708d1394 -2010,Capital Federal,II.1.1,16.32281805,TJ,CH4,0.5,kg/TJ,8.161409025,Naphtha combustion consumption by freight transport,AR-C,SESCO,annual,kg,45bf64b7-fea4-3c98-b899-edfb834aafac -2010,Capital Federal,II.1.1,16.32281805,TJ,N2O,2.0,kg/TJ,32.6456361,Naphtha combustion consumption by freight transport,AR-C,SESCO,annual,kg,edf96b16-71ab-343c-b476-4f6bc286141c -2010,Chaco,II.1.1,0.0116501,TJ,CO2,73300.0,kg/TJ,853.95233,Naphtha combustion consumption by freight transport,AR-H,SESCO,annual,kg,8a8f88a7-122d-3d00-9784-94fa9c229216 -2010,Chaco,II.1.1,0.0116501,TJ,CH4,0.5,kg/TJ,0.00582505,Naphtha combustion consumption by freight transport,AR-H,SESCO,annual,kg,4cbaab44-6f9f-3f8c-beda-899aee368e7c -2010,Chaco,II.1.1,0.0116501,TJ,N2O,2.0,kg/TJ,0.0233002,Naphtha combustion consumption by freight transport,AR-H,SESCO,annual,kg,6ac653ff-67d6-3e7a-a2be-21cc23f1b794 -2010,Corrientes,II.1.1,0.05242544999999999,TJ,CO2,73300.0,kg/TJ,3842.7854849999994,Naphtha combustion consumption by freight transport,AR-W,SESCO,annual,kg,2687f371-17e9-3d15-b108-2d7321858213 -2010,Corrientes,II.1.1,0.05242544999999999,TJ,CH4,0.5,kg/TJ,0.026212724999999996,Naphtha combustion consumption by freight transport,AR-W,SESCO,annual,kg,d5bf28a6-85b0-31a8-a052-b477800e319d -2010,Corrientes,II.1.1,0.05242544999999999,TJ,N2O,2.0,kg/TJ,0.10485089999999998,Naphtha combustion consumption by freight transport,AR-W,SESCO,annual,kg,e325db8c-759b-3b63-ae74-ae260bfa575c -2010,Córdoba,II.1.1,0.30427319999999997,TJ,CO2,73300.0,kg/TJ,22303.22556,Naphtha combustion consumption by freight transport,AR-X,SESCO,annual,kg,61c8473d-0f0f-308a-a835-16d0de395bc8 -2010,Córdoba,II.1.1,0.30427319999999997,TJ,CH4,0.5,kg/TJ,0.15213659999999998,Naphtha combustion consumption by freight transport,AR-X,SESCO,annual,kg,3d547a7c-9339-3233-beea-f1bca32ce824 -2010,Córdoba,II.1.1,0.30427319999999997,TJ,N2O,2.0,kg/TJ,0.6085463999999999,Naphtha combustion consumption by freight transport,AR-X,SESCO,annual,kg,66381ab2-023d-3904-949a-e0fef5dffcc0 -2010,Entre Rios,II.1.1,1.13588475,TJ,CO2,73300.0,kg/TJ,83260.35217499999,Naphtha combustion consumption by freight transport,AR-E,SESCO,annual,kg,11c9c264-6af8-3605-884c-14a3cff49ee5 -2010,Entre Rios,II.1.1,1.13588475,TJ,CH4,0.5,kg/TJ,0.567942375,Naphtha combustion consumption by freight transport,AR-E,SESCO,annual,kg,cc21a93b-8931-33b5-be4a-da9f1b267cc2 -2010,Entre Rios,II.1.1,1.13588475,TJ,N2O,2.0,kg/TJ,2.2717695,Naphtha combustion consumption by freight transport,AR-E,SESCO,annual,kg,622285d2-cfe2-3262-8528-e73f89b86382 -2010,Misiones,II.1.1,0.024328149999999996,TJ,CO2,73300.0,kg/TJ,1783.2533949999997,Naphtha combustion consumption by freight transport,AR-N,SESCO,annual,kg,f92a7236-5d3e-3993-afd1-ed45819197cb -2010,Misiones,II.1.1,0.024328149999999996,TJ,CH4,0.5,kg/TJ,0.012164074999999998,Naphtha combustion consumption by freight transport,AR-N,SESCO,annual,kg,6f82107e-a39c-302d-9f47-57b60474bff1 -2010,Misiones,II.1.1,0.024328149999999996,TJ,N2O,2.0,kg/TJ,0.04865629999999999,Naphtha combustion consumption by freight transport,AR-N,SESCO,annual,kg,371263cd-7ead-3387-bbd7-0288435ca9ac -2010,San Luis,II.1.1,0.030838499999999998,TJ,CO2,73300.0,kg/TJ,2260.4620499999996,Naphtha combustion consumption by freight transport,AR-D,SESCO,annual,kg,d5d334d3-bf16-3e85-a6b6-5e5e0c7e5195 -2010,San Luis,II.1.1,0.030838499999999998,TJ,CH4,0.5,kg/TJ,0.015419249999999999,Naphtha combustion consumption by freight transport,AR-D,SESCO,annual,kg,f0786fbf-d6d5-3a9e-b3c1-372352f2fb28 -2010,San Luis,II.1.1,0.030838499999999998,TJ,N2O,2.0,kg/TJ,0.061676999999999996,Naphtha combustion consumption by freight transport,AR-D,SESCO,annual,kg,720ffae1-6470-3718-81dd-554753719100 -2010,Santa Fe,II.1.1,0.28679804999999997,TJ,CO2,73300.0,kg/TJ,21022.297065,Naphtha combustion consumption by freight transport,AR-S,SESCO,annual,kg,95c49b08-d091-330b-b9fb-7fd16463b417 -2010,Santa Fe,II.1.1,0.28679804999999997,TJ,CH4,0.5,kg/TJ,0.14339902499999999,Naphtha combustion consumption by freight transport,AR-S,SESCO,annual,kg,ee7eddf6-d9fe-3827-904d-b40fe386cf61 -2010,Santa Fe,II.1.1,0.28679804999999997,TJ,N2O,2.0,kg/TJ,0.5735960999999999,Naphtha combustion consumption by freight transport,AR-S,SESCO,annual,kg,9c4ee0c3-0602-3496-afaa-e70e2fb5251c -2010,Tierra del Fuego,II.1.1,0.18948545,TJ,CO2,73300.0,kg/TJ,13889.283485,Naphtha combustion consumption by freight transport,AR-V,SESCO,annual,kg,bba7e68d-a174-3d9e-92e2-88012b584b79 -2010,Tierra del Fuego,II.1.1,0.18948545,TJ,CH4,0.5,kg/TJ,0.094742725,Naphtha combustion consumption by freight transport,AR-V,SESCO,annual,kg,f37d8eb3-d5de-3e04-a9c0-ad974acc8db0 -2010,Tierra del Fuego,II.1.1,0.18948545,TJ,N2O,2.0,kg/TJ,0.3789709,Naphtha combustion consumption by freight transport,AR-V,SESCO,annual,kg,1a2d928e-3df4-3cdb-a238-487def7d7310 -2010,Tucuman,II.1.1,0.07435504999999998,TJ,CO2,73300.0,kg/TJ,5450.225164999998,Naphtha combustion consumption by freight transport,AR-T,SESCO,annual,kg,af909896-d69e-3f12-9834-c2fe0ace54b7 -2010,Tucuman,II.1.1,0.07435504999999998,TJ,CH4,0.5,kg/TJ,0.03717752499999999,Naphtha combustion consumption by freight transport,AR-T,SESCO,annual,kg,69df8fab-0721-336e-be56-5d0b9769c8d3 -2010,Tucuman,II.1.1,0.07435504999999998,TJ,N2O,2.0,kg/TJ,0.14871009999999996,Naphtha combustion consumption by freight transport,AR-T,SESCO,annual,kg,f0d7e04f-ec20-3146-936f-6c9ad1ed3c27 -2010,Buenos Aires,II.1.1,682.1652452000001,TJ,CO2,71500.0,kg/TJ,48774815.0318,Jet Kerosene combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,f2758fec-4299-300b-9af0-f40f455553f2 -2010,Buenos Aires,II.1.1,682.1652452000001,TJ,CH4,0.5,kg/TJ,341.08262260000004,Jet Kerosene combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,980acc52-6581-3c10-9614-33582b3c6104 -2010,Buenos Aires,II.1.1,682.1652452000001,TJ,N2O,2.0,kg/TJ,1364.3304904000001,Jet Kerosene combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,5c7e229e-6d54-3387-ac19-e86dadde3023 -2010,Capital Federal,II.1.1,119.32324609999999,TJ,CO2,71500.0,kg/TJ,8531612.09615,Jet Kerosene combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,bc5d41d8-ee50-38b7-bd8d-a8e327d9a3a3 -2010,Capital Federal,II.1.1,119.32324609999999,TJ,CH4,0.5,kg/TJ,59.661623049999996,Jet Kerosene combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,78fb33a4-f922-3d6a-8162-dc84c5cb6322 -2010,Capital Federal,II.1.1,119.32324609999999,TJ,N2O,2.0,kg/TJ,238.64649219999998,Jet Kerosene combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,b913b59c-7241-31d3-b56c-68aa5563a453 -2010,Córdoba,II.1.1,21.328279299999995,TJ,CO2,71500.0,kg/TJ,1524971.9699499996,Jet Kerosene combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,6ea3143d-5b8d-3981-b25f-46633095f52a -2010,Córdoba,II.1.1,21.328279299999995,TJ,CH4,0.5,kg/TJ,10.664139649999997,Jet Kerosene combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,ef614b15-c62e-3dd7-866e-f38072d17ea1 -2010,Córdoba,II.1.1,21.328279299999995,TJ,N2O,2.0,kg/TJ,42.65655859999999,Jet Kerosene combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,c482e956-b441-34b8-9a17-f7651d51956d -2010,Buenos Aires,II.1.1,1015.5936251999999,TJ,CO2,74100.0,kg/TJ,75255487.62731999,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,5a0f37ca-3522-32e4-971d-8b599c7cb0a2 -2010,Buenos Aires,II.1.1,1015.5936251999999,TJ,CH4,3.9,kg/TJ,3960.8151382799997,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,d04b0b00-5689-3532-98ce-6527c497a7c1 -2010,Buenos Aires,II.1.1,1015.5936251999999,TJ,N2O,3.9,kg/TJ,3960.8151382799997,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,d04b0b00-5689-3532-98ce-6527c497a7c1 -2010,Capital Federal,II.1.1,823.6680186,TJ,CO2,74100.0,kg/TJ,61033800.17826,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,d6788c03-79f2-382b-b2db-0c8f475fa918 -2010,Capital Federal,II.1.1,823.6680186,TJ,CH4,3.9,kg/TJ,3212.30527254,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,d8fc04ea-d950-3a5a-a573-58420c63802a -2010,Capital Federal,II.1.1,823.6680186,TJ,N2O,3.9,kg/TJ,3212.30527254,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,d8fc04ea-d950-3a5a-a573-58420c63802a -2010,Catamarca,II.1.1,7.245672,TJ,CO2,74100.0,kg/TJ,536904.2951999999,Gas Oil combustion consumption by public passenger transport,AR-K,SESCO,annual,kg,bb1a299e-fb35-3075-9e14-94cd8925557f -2010,Catamarca,II.1.1,7.245672,TJ,CH4,3.9,kg/TJ,28.2581208,Gas Oil combustion consumption by public passenger transport,AR-K,SESCO,annual,kg,01cfeb2e-0fbe-399b-bca6-1dd641d46a4a -2010,Catamarca,II.1.1,7.245672,TJ,N2O,3.9,kg/TJ,28.2581208,Gas Oil combustion consumption by public passenger transport,AR-K,SESCO,annual,kg,01cfeb2e-0fbe-399b-bca6-1dd641d46a4a -2010,Chubut,II.1.1,252.12157319999997,TJ,CO2,74100.0,kg/TJ,18682208.574119996,Gas Oil combustion consumption by public passenger transport,AR-U,SESCO,annual,kg,a0d6a0b0-9032-3b3a-8315-96cbb4af1371 -2010,Chubut,II.1.1,252.12157319999997,TJ,CH4,3.9,kg/TJ,983.2741354799998,Gas Oil combustion consumption by public passenger transport,AR-U,SESCO,annual,kg,5b9a19e8-6ae3-36ee-a914-e92464e742f9 -2010,Chubut,II.1.1,252.12157319999997,TJ,N2O,3.9,kg/TJ,983.2741354799998,Gas Oil combustion consumption by public passenger transport,AR-U,SESCO,annual,kg,5b9a19e8-6ae3-36ee-a914-e92464e742f9 -2010,Córdoba,II.1.1,21.5405232,TJ,CO2,74100.0,kg/TJ,1596152.7691199998,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,592b9061-6745-330d-9708-afe692c06be3 -2010,Córdoba,II.1.1,21.5405232,TJ,CH4,3.9,kg/TJ,84.00804047999999,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,5c0392e5-4bad-38a2-bb9c-4f12cb713b2e -2010,Córdoba,II.1.1,21.5405232,TJ,N2O,3.9,kg/TJ,84.00804047999999,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,5c0392e5-4bad-38a2-bb9c-4f12cb713b2e -2010,Entre Rios,II.1.1,204.067164,TJ,CO2,74100.0,kg/TJ,15121376.8524,Gas Oil combustion consumption by public passenger transport,AR-E,SESCO,annual,kg,78a001f0-edfb-316d-8c22-f442aa295630 -2010,Entre Rios,II.1.1,204.067164,TJ,CH4,3.9,kg/TJ,795.8619395999999,Gas Oil combustion consumption by public passenger transport,AR-E,SESCO,annual,kg,eba6b6ee-9102-30ad-985f-9f1ea6516e3f -2010,Entre Rios,II.1.1,204.067164,TJ,N2O,3.9,kg/TJ,795.8619395999999,Gas Oil combustion consumption by public passenger transport,AR-E,SESCO,annual,kg,eba6b6ee-9102-30ad-985f-9f1ea6516e3f -2010,La Pampa,II.1.1,69.980694,TJ,CO2,74100.0,kg/TJ,5185569.4254,Gas Oil combustion consumption by public passenger transport,AR-L,SESCO,annual,kg,64403689-251a-3405-af52-924b06434f0b -2010,La Pampa,II.1.1,69.980694,TJ,CH4,3.9,kg/TJ,272.9247066,Gas Oil combustion consumption by public passenger transport,AR-L,SESCO,annual,kg,db4df392-23b1-3c5e-a710-088f87b17782 -2010,La Pampa,II.1.1,69.980694,TJ,N2O,3.9,kg/TJ,272.9247066,Gas Oil combustion consumption by public passenger transport,AR-L,SESCO,annual,kg,db4df392-23b1-3c5e-a710-088f87b17782 -2010,Mendoza,II.1.1,91.4688432,TJ,CO2,74100.0,kg/TJ,6777841.2811199995,Gas Oil combustion consumption by public passenger transport,AR-M,SESCO,annual,kg,048fe61c-ed35-320a-9b4a-e438c06edda7 -2010,Mendoza,II.1.1,91.4688432,TJ,CH4,3.9,kg/TJ,356.72848847999995,Gas Oil combustion consumption by public passenger transport,AR-M,SESCO,annual,kg,28c6914a-c463-33ac-a1eb-ef6c0c2c4d81 -2010,Mendoza,II.1.1,91.4688432,TJ,N2O,3.9,kg/TJ,356.72848847999995,Gas Oil combustion consumption by public passenger transport,AR-M,SESCO,annual,kg,28c6914a-c463-33ac-a1eb-ef6c0c2c4d81 -2010,Misiones,II.1.1,474.05838480000006,TJ,CO2,74100.0,kg/TJ,35127726.31368,Gas Oil combustion consumption by public passenger transport,AR-N,SESCO,annual,kg,0d158071-baf3-3642-ba3e-82dd6ad938a9 -2010,Misiones,II.1.1,474.05838480000006,TJ,CH4,3.9,kg/TJ,1848.8277007200002,Gas Oil combustion consumption by public passenger transport,AR-N,SESCO,annual,kg,f4678183-7de4-3cc3-b4ac-cab37325e78c -2010,Misiones,II.1.1,474.05838480000006,TJ,N2O,3.9,kg/TJ,1848.8277007200002,Gas Oil combustion consumption by public passenger transport,AR-N,SESCO,annual,kg,f4678183-7de4-3cc3-b4ac-cab37325e78c -2010,Neuquén,II.1.1,38.2832268,TJ,CO2,74100.0,kg/TJ,2836787.10588,Gas Oil combustion consumption by public passenger transport,AR-Q,SESCO,annual,kg,df010449-abc5-3a30-b860-ebde6123acfb -2010,Neuquén,II.1.1,38.2832268,TJ,CH4,3.9,kg/TJ,149.30458452,Gas Oil combustion consumption by public passenger transport,AR-Q,SESCO,annual,kg,27b8d4d8-e58c-359c-8efe-c7e6a6fe37d4 -2010,Neuquén,II.1.1,38.2832268,TJ,N2O,3.9,kg/TJ,149.30458452,Gas Oil combustion consumption by public passenger transport,AR-Q,SESCO,annual,kg,27b8d4d8-e58c-359c-8efe-c7e6a6fe37d4 -2010,Rio Negro,II.1.1,165.220104,TJ,CO2,74100.0,kg/TJ,12242809.7064,Gas Oil combustion consumption by public passenger transport,AR-R,SESCO,annual,kg,ca602253-38dd-341d-ac2b-6cc6d0a7c439 -2010,Rio Negro,II.1.1,165.220104,TJ,CH4,3.9,kg/TJ,644.3584056,Gas Oil combustion consumption by public passenger transport,AR-R,SESCO,annual,kg,b3bf2a01-836c-3614-b37c-b2a492f11f85 -2010,Rio Negro,II.1.1,165.220104,TJ,N2O,3.9,kg/TJ,644.3584056,Gas Oil combustion consumption by public passenger transport,AR-R,SESCO,annual,kg,b3bf2a01-836c-3614-b37c-b2a492f11f85 -2010,Salta,II.1.1,8.26245,TJ,CO2,74100.0,kg/TJ,612247.5449999999,Gas Oil combustion consumption by public passenger transport,AR-A,SESCO,annual,kg,3cd035f9-6b9d-3068-841e-6a85e4aa4aef -2010,Salta,II.1.1,8.26245,TJ,CH4,3.9,kg/TJ,32.223555,Gas Oil combustion consumption by public passenger transport,AR-A,SESCO,annual,kg,a9781d2d-c1a6-3aeb-adf3-06076c79bbd3 -2010,Salta,II.1.1,8.26245,TJ,N2O,3.9,kg/TJ,32.223555,Gas Oil combustion consumption by public passenger transport,AR-A,SESCO,annual,kg,a9781d2d-c1a6-3aeb-adf3-06076c79bbd3 -2010,San Juan,II.1.1,5.191888799999999,TJ,CO2,74100.0,kg/TJ,384718.96007999993,Gas Oil combustion consumption by public passenger transport,AR-J,SESCO,annual,kg,025706e8-e630-3e75-8b84-9ad7f0dce1e2 -2010,San Juan,II.1.1,5.191888799999999,TJ,CH4,3.9,kg/TJ,20.248366319999995,Gas Oil combustion consumption by public passenger transport,AR-J,SESCO,annual,kg,b6b935ce-0c6b-3749-8668-d620da1a49c9 -2010,San Juan,II.1.1,5.191888799999999,TJ,N2O,3.9,kg/TJ,20.248366319999995,Gas Oil combustion consumption by public passenger transport,AR-J,SESCO,annual,kg,b6b935ce-0c6b-3749-8668-d620da1a49c9 -2010,San Luis,II.1.1,21.702702,TJ,CO2,74100.0,kg/TJ,1608170.2182,Gas Oil combustion consumption by public passenger transport,AR-D,SESCO,annual,kg,f2187f6a-7136-3a0c-b37d-5d91e06b7c16 -2010,San Luis,II.1.1,21.702702,TJ,CH4,3.9,kg/TJ,84.64053779999999,Gas Oil combustion consumption by public passenger transport,AR-D,SESCO,annual,kg,fc69319a-56a4-3ae4-8857-3cfab1570e43 -2010,San Luis,II.1.1,21.702702,TJ,N2O,3.9,kg/TJ,84.64053779999999,Gas Oil combustion consumption by public passenger transport,AR-D,SESCO,annual,kg,fc69319a-56a4-3ae4-8857-3cfab1570e43 -2010,Santa Fe,II.1.1,107.40065279999999,TJ,CO2,74100.0,kg/TJ,7958388.372479999,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,30670841-2478-3dd4-9036-4257493bba65 -2010,Santa Fe,II.1.1,107.40065279999999,TJ,CH4,3.9,kg/TJ,418.86254591999995,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,1e6e14d9-6823-3b92-ab0b-1f252d19a716 -2010,Santa Fe,II.1.1,107.40065279999999,TJ,N2O,3.9,kg/TJ,418.86254591999995,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,1e6e14d9-6823-3b92-ab0b-1f252d19a716 -2010,Santiago del Estero,II.1.1,7.192936799999998,TJ,CO2,74100.0,kg/TJ,532996.6168799999,Gas Oil combustion consumption by public passenger transport,AR-G,SESCO,annual,kg,3f45be92-f06b-3f9b-92cb-4bf13fc4ab1d -2010,Santiago del Estero,II.1.1,7.192936799999998,TJ,CH4,3.9,kg/TJ,28.052453519999993,Gas Oil combustion consumption by public passenger transport,AR-G,SESCO,annual,kg,0cf436da-cf9f-33cf-880b-189739d01781 -2010,Santiago del Estero,II.1.1,7.192936799999998,TJ,N2O,3.9,kg/TJ,28.052453519999993,Gas Oil combustion consumption by public passenger transport,AR-G,SESCO,annual,kg,0cf436da-cf9f-33cf-880b-189739d01781 -2010,Buenos Aires,II.1.1,12.9822504,TJ,CO2,74100.0,kg/TJ,961984.7546399999,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,6b0893bc-9cb0-317f-9003-61f15f70a26b -2010,Buenos Aires,II.1.1,12.9822504,TJ,CH4,3.9,kg/TJ,50.63077656,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,a06cbcdf-5ed4-3b5d-86cd-d0f01d33a0f7 -2010,Buenos Aires,II.1.1,12.9822504,TJ,N2O,3.9,kg/TJ,50.63077656,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,a06cbcdf-5ed4-3b5d-86cd-d0f01d33a0f7 -2010,Capital Federal,II.1.1,16.2167964,TJ,CO2,74100.0,kg/TJ,1201664.61324,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,bdf5097e-a1b9-3aac-b623-3453602b1182 -2010,Capital Federal,II.1.1,16.2167964,TJ,CH4,3.9,kg/TJ,63.245505959999996,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,1ac768a1-23ec-3c7b-bc9e-ed82e6efa1fb -2010,Capital Federal,II.1.1,16.2167964,TJ,N2O,3.9,kg/TJ,63.245505959999996,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,1ac768a1-23ec-3c7b-bc9e-ed82e6efa1fb -2010,Córdoba,II.1.1,0.049484400000000005,TJ,CO2,74100.0,kg/TJ,3666.79404,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,971323dd-9b0f-3715-a209-049ab56965cb -2010,Córdoba,II.1.1,0.049484400000000005,TJ,CH4,3.9,kg/TJ,0.19298916000000002,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,99282454-b725-39d2-80a6-423ba6c1fcea -2010,Córdoba,II.1.1,0.049484400000000005,TJ,N2O,3.9,kg/TJ,0.19298916000000002,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,99282454-b725-39d2-80a6-423ba6c1fcea -2010,Entre Rios,II.1.1,7.971684,TJ,CO2,74100.0,kg/TJ,590701.7844,Gas Oil combustion consumption by public passenger transport,AR-E,SESCO,annual,kg,e6b52afe-3188-3b24-afcb-ea3dade12d70 -2010,Entre Rios,II.1.1,7.971684,TJ,CH4,3.9,kg/TJ,31.0895676,Gas Oil combustion consumption by public passenger transport,AR-E,SESCO,annual,kg,73d8843a-2fc6-3f99-92b6-3226ef300731 -2010,Entre Rios,II.1.1,7.971684,TJ,N2O,3.9,kg/TJ,31.0895676,Gas Oil combustion consumption by public passenger transport,AR-E,SESCO,annual,kg,73d8843a-2fc6-3f99-92b6-3226ef300731 -2010,Misiones,II.1.1,8.0128608,TJ,CO2,74100.0,kg/TJ,593752.98528,Gas Oil combustion consumption by public passenger transport,AR-N,SESCO,annual,kg,6663f9fd-5f50-327a-a843-088076ae48e4 -2010,Misiones,II.1.1,8.0128608,TJ,CH4,3.9,kg/TJ,31.25015712,Gas Oil combustion consumption by public passenger transport,AR-N,SESCO,annual,kg,b35c31cc-54e1-34de-ab28-904870238599 -2010,Misiones,II.1.1,8.0128608,TJ,N2O,3.9,kg/TJ,31.25015712,Gas Oil combustion consumption by public passenger transport,AR-N,SESCO,annual,kg,b35c31cc-54e1-34de-ab28-904870238599 -2010,Neuquén,II.1.1,0.36156119999999997,TJ,CO2,74100.0,kg/TJ,26791.68492,Gas Oil combustion consumption by public passenger transport,AR-Q,SESCO,annual,kg,05191746-72a9-3d9c-9e3c-7de4638aea2d -2010,Neuquén,II.1.1,0.36156119999999997,TJ,CH4,3.9,kg/TJ,1.4100886799999999,Gas Oil combustion consumption by public passenger transport,AR-Q,SESCO,annual,kg,210a406e-dd46-35c5-8f76-378949f715c4 -2010,Neuquén,II.1.1,0.36156119999999997,TJ,N2O,3.9,kg/TJ,1.4100886799999999,Gas Oil combustion consumption by public passenger transport,AR-Q,SESCO,annual,kg,210a406e-dd46-35c5-8f76-378949f715c4 -2010,Salta,II.1.1,0.0140868,TJ,CO2,74100.0,kg/TJ,1043.83188,Gas Oil combustion consumption by public passenger transport,AR-A,SESCO,annual,kg,f23e4162-c420-312b-b8d7-995d25a9787e -2010,Salta,II.1.1,0.0140868,TJ,CH4,3.9,kg/TJ,0.05493852,Gas Oil combustion consumption by public passenger transport,AR-A,SESCO,annual,kg,abfd8d0d-095e-3077-aa05-a17df3ce9a90 -2010,Salta,II.1.1,0.0140868,TJ,N2O,3.9,kg/TJ,0.05493852,Gas Oil combustion consumption by public passenger transport,AR-A,SESCO,annual,kg,abfd8d0d-095e-3077-aa05-a17df3ce9a90 -2010,San Luis,II.1.1,0.0061404,TJ,CO2,74100.0,kg/TJ,455.00363999999996,Gas Oil combustion consumption by public passenger transport,AR-D,SESCO,annual,kg,6510ffcc-e89b-38b0-b140-f5db66675d58 -2010,San Luis,II.1.1,0.0061404,TJ,CH4,3.9,kg/TJ,0.02394756,Gas Oil combustion consumption by public passenger transport,AR-D,SESCO,annual,kg,ca29f564-d1db-3822-9c66-a3eb80e57ed0 -2010,San Luis,II.1.1,0.0061404,TJ,N2O,3.9,kg/TJ,0.02394756,Gas Oil combustion consumption by public passenger transport,AR-D,SESCO,annual,kg,ca29f564-d1db-3822-9c66-a3eb80e57ed0 -2010,Santa Fe,II.1.1,0.0155316,TJ,CO2,74100.0,kg/TJ,1150.89156,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,74836ac1-c239-3eff-a5be-faf50f7a7d53 -2010,Santa Fe,II.1.1,0.0155316,TJ,CH4,3.9,kg/TJ,0.06057324,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,6b097977-468a-3115-bdbf-c6db6692abb8 -2010,Santa Fe,II.1.1,0.0155316,TJ,N2O,3.9,kg/TJ,0.06057324,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,6b097977-468a-3115-bdbf-c6db6692abb8 -2010,Buenos Aires,II.1.1,0.20867385,TJ,CO2,73300.0,kg/TJ,15295.793205,Naphtha combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,ae594dd4-ca68-35af-b85c-1c51cdc9bfdc -2010,Buenos Aires,II.1.1,0.20867385,TJ,CH4,0.5,kg/TJ,0.104336925,Naphtha combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,8c61ffad-1fb2-3109-9f0b-8b11e865e035 -2010,Buenos Aires,II.1.1,0.20867385,TJ,N2O,2.0,kg/TJ,0.4173477,Naphtha combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,60b68257-1711-3918-9bd6-715a767bd553 -2010,Buenos Aires,II.1.1,145.46486184999998,TJ,CO2,73300.0,kg/TJ,10662574.373604998,Naphtha combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,7dfe9a3b-ac89-3b7a-b4a2-cceb9c0c6b5c -2010,Buenos Aires,II.1.1,145.46486184999998,TJ,CH4,0.5,kg/TJ,72.73243092499999,Naphtha combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,e122a736-e899-32f3-94a6-91b378e2d462 -2010,Buenos Aires,II.1.1,145.46486184999998,TJ,N2O,2.0,kg/TJ,290.92972369999995,Naphtha combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,4b8e5a93-05f9-3228-8881-08b49bf9eac8 -2010,Capital Federal,II.1.1,0.025356099999999996,TJ,CO2,73300.0,kg/TJ,1858.6021299999998,Naphtha combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,30565d8c-03c9-3390-b350-d1c6d622e087 -2010,Capital Federal,II.1.1,0.025356099999999996,TJ,CH4,0.5,kg/TJ,0.012678049999999998,Naphtha combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,b308e459-aa37-347b-8190-668406bf18a5 -2010,Capital Federal,II.1.1,0.025356099999999996,TJ,N2O,2.0,kg/TJ,0.05071219999999999,Naphtha combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,c15304eb-001c-3e2c-8f2b-8678f536a867 -2010,Córdoba,II.1.1,0.030838499999999998,TJ,CO2,73300.0,kg/TJ,2260.4620499999996,Naphtha combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,ee396754-823f-3662-a82c-743518684113 -2010,Córdoba,II.1.1,0.030838499999999998,TJ,CH4,0.5,kg/TJ,0.015419249999999999,Naphtha combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,f0398eef-fdcc-3197-a73a-a74f03900791 -2010,Córdoba,II.1.1,0.030838499999999998,TJ,N2O,2.0,kg/TJ,0.061676999999999996,Naphtha combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,8c4a111d-d08d-3f9a-8694-27062f3021d1 -2010,Buenos Aires,II.1.1,32.63364335,TJ,CO2,73300.0,kg/TJ,2392046.057555,Naphtha combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,8c09c681-509f-3d87-b26e-dc265af8e816 -2010,Buenos Aires,II.1.1,32.63364335,TJ,CH4,0.5,kg/TJ,16.316821675,Naphtha combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,e3c72e9b-a90f-3ab2-ab1e-c373afe083b6 -2010,Buenos Aires,II.1.1,32.63364335,TJ,N2O,2.0,kg/TJ,65.2672867,Naphtha combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,9b67fa3f-3290-374a-affc-7586fced4f55 -2010,Capital Federal,II.1.1,0.43071105,TJ,CO2,73300.0,kg/TJ,31571.119964999998,Naphtha combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,6a5e9ab5-9d30-31d6-9f41-6dc6df44650f -2010,Capital Federal,II.1.1,0.43071105,TJ,CH4,0.5,kg/TJ,0.215355525,Naphtha combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,270272ad-4a3f-36d6-83cd-b6238b22ff82 -2010,Capital Federal,II.1.1,0.43071105,TJ,N2O,2.0,kg/TJ,0.8614221,Naphtha combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,d3f360f4-f843-3f29-b9fd-3a163dca18c4 -2010,Córdoba,II.1.1,0.07092854999999998,TJ,CO2,73300.0,kg/TJ,5199.062714999998,Naphtha combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,04aa9ced-858d-3ba6-997b-2eadb21b253c -2010,Córdoba,II.1.1,0.07092854999999998,TJ,CH4,0.5,kg/TJ,0.03546427499999999,Naphtha combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,09b41976-cee2-3e86-8708-9c37c37c8d49 -2010,Córdoba,II.1.1,0.07092854999999998,TJ,N2O,2.0,kg/TJ,0.14185709999999996,Naphtha combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,97ad13f3-26f0-309a-83cb-5993dd9502fa -2010,Buenos Aires,II.5.1,1.16952,TJ,CO2,69300.0,kg/TJ,81047.73599999999,Motor Gasoline combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,82efda5c-76bd-3d49-8630-1a698b6aa470 -2010,Buenos Aires,II.5.1,1.16952,TJ,CH4,33.0,kg/TJ,38.594159999999995,Motor Gasoline combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,f77c4cb3-2acc-3846-8997-7ebf1cbdfb03 -2010,Buenos Aires,II.5.1,1.16952,TJ,N2O,3.2,kg/TJ,3.742464,Motor Gasoline combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,23f87942-d89a-3577-a26b-70a32db95f4e -2010,Buenos Aires,II.5.1,1281.23877924,TJ,CO2,74100.0,kg/TJ,94939793.541684,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,15785e0b-18df-3d99-a486-eb18c6a810ae -2010,Buenos Aires,II.5.1,1281.23877924,TJ,CH4,3.9,kg/TJ,4996.831239036,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,0e19ac30-1f5d-330f-b5e1-5ef0b907c215 -2010,Buenos Aires,II.5.1,1281.23877924,TJ,N2O,3.9,kg/TJ,4996.831239036,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,0e19ac30-1f5d-330f-b5e1-5ef0b907c215 -2010,Corrientes,II.5.1,37.18322832,TJ,CO2,74100.0,kg/TJ,2755277.218512,Gas Oil combustion consumption by agriculture machines,AR-W,SESCO,annual,kg,11591787-cc71-3c9e-aab1-64a9964f5856 -2010,Corrientes,II.5.1,37.18322832,TJ,CH4,3.9,kg/TJ,145.01459044799998,Gas Oil combustion consumption by agriculture machines,AR-W,SESCO,annual,kg,103bd715-328a-33a2-8e88-513edfe77101 -2010,Corrientes,II.5.1,37.18322832,TJ,N2O,3.9,kg/TJ,145.01459044799998,Gas Oil combustion consumption by agriculture machines,AR-W,SESCO,annual,kg,103bd715-328a-33a2-8e88-513edfe77101 -2010,Córdoba,II.5.1,669.1155954,TJ,CO2,74100.0,kg/TJ,49581465.61914,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,aa49b5c0-6a18-3962-991f-1a8dbe3994fe -2010,Córdoba,II.5.1,669.1155954,TJ,CH4,3.9,kg/TJ,2609.55082206,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,f0709788-56b6-302b-957c-d1a642ae62b2 -2010,Córdoba,II.5.1,669.1155954,TJ,N2O,3.9,kg/TJ,2609.55082206,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,f0709788-56b6-302b-957c-d1a642ae62b2 -2010,Entre Rios,II.5.1,573.03599808,TJ,CO2,74100.0,kg/TJ,42461967.457728,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,7bc09a47-3a08-37b5-952d-645acb6767cd -2010,Entre Rios,II.5.1,573.03599808,TJ,CH4,3.9,kg/TJ,2234.840392512,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,d7b0b12f-f127-3761-9993-61669b65ebfd -2010,Entre Rios,II.5.1,573.03599808,TJ,N2O,3.9,kg/TJ,2234.840392512,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,d7b0b12f-f127-3761-9993-61669b65ebfd -2010,La Pampa,II.5.1,56.79953075999999,TJ,CO2,74100.0,kg/TJ,4208845.229315999,Gas Oil combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,6c3d1c96-72d1-3d0c-8ed9-ee943352688f -2010,La Pampa,II.5.1,56.79953075999999,TJ,CH4,3.9,kg/TJ,221.51816996399995,Gas Oil combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,e2cbb6e3-2c43-320d-b878-af72c0789174 -2010,La Pampa,II.5.1,56.79953075999999,TJ,N2O,3.9,kg/TJ,221.51816996399995,Gas Oil combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,e2cbb6e3-2c43-320d-b878-af72c0789174 -2010,Neuquén,II.5.1,13.5516822,TJ,CO2,74100.0,kg/TJ,1004179.65102,Gas Oil combustion consumption by agriculture machines,AR-Q,SESCO,annual,kg,8e788e5e-eb76-38c0-a0cf-88212c0c6ce2 -2010,Neuquén,II.5.1,13.5516822,TJ,CH4,3.9,kg/TJ,52.85156058,Gas Oil combustion consumption by agriculture machines,AR-Q,SESCO,annual,kg,5d259937-c866-3da7-b8b2-ec0cdd8e2ea7 -2010,Neuquén,II.5.1,13.5516822,TJ,N2O,3.9,kg/TJ,52.85156058,Gas Oil combustion consumption by agriculture machines,AR-Q,SESCO,annual,kg,5d259937-c866-3da7-b8b2-ec0cdd8e2ea7 -2010,Rio Negro,II.5.1,3.7399731600000004,TJ,CO2,74100.0,kg/TJ,277132.011156,Gas Oil combustion consumption by agriculture machines,AR-R,SESCO,annual,kg,be23264a-dcd3-3ef2-b62f-5bdc92deb96d -2010,Rio Negro,II.5.1,3.7399731600000004,TJ,CH4,3.9,kg/TJ,14.585895324,Gas Oil combustion consumption by agriculture machines,AR-R,SESCO,annual,kg,1e54aed5-a91c-3d8e-ad60-9fc5e5130242 -2010,Rio Negro,II.5.1,3.7399731600000004,TJ,N2O,3.9,kg/TJ,14.585895324,Gas Oil combustion consumption by agriculture machines,AR-R,SESCO,annual,kg,1e54aed5-a91c-3d8e-ad60-9fc5e5130242 -2010,Salta,II.5.1,294.13209504,TJ,CO2,74100.0,kg/TJ,21795188.242464002,Gas Oil combustion consumption by agriculture machines,AR-A,SESCO,annual,kg,d7c89363-054e-3566-b02a-2acb35838084 -2010,Salta,II.5.1,294.13209504,TJ,CH4,3.9,kg/TJ,1147.1151706560001,Gas Oil combustion consumption by agriculture machines,AR-A,SESCO,annual,kg,e754aee9-9c27-3df9-940d-12bce97b2ade -2010,Salta,II.5.1,294.13209504,TJ,N2O,3.9,kg/TJ,1147.1151706560001,Gas Oil combustion consumption by agriculture machines,AR-A,SESCO,annual,kg,e754aee9-9c27-3df9-940d-12bce97b2ade -2010,San Luis,II.5.1,3.65631924,TJ,CO2,74100.0,kg/TJ,270933.25568400003,Gas Oil combustion consumption by agriculture machines,AR-D,SESCO,annual,kg,8d57e6b3-50c3-38fb-b28d-542517d3d784 -2010,San Luis,II.5.1,3.65631924,TJ,CH4,3.9,kg/TJ,14.259645036,Gas Oil combustion consumption by agriculture machines,AR-D,SESCO,annual,kg,c239e335-d04a-3eca-b2aa-ea131d710d70 -2010,San Luis,II.5.1,3.65631924,TJ,N2O,3.9,kg/TJ,14.259645036,Gas Oil combustion consumption by agriculture machines,AR-D,SESCO,annual,kg,c239e335-d04a-3eca-b2aa-ea131d710d70 -2010,Santa Cruz,II.5.1,1.2311501999999999,TJ,CO2,74100.0,kg/TJ,91228.22982,Gas Oil combustion consumption by agriculture machines,AR-Z,SESCO,annual,kg,2aa94386-a64d-380c-88a2-e44ae4020440 -2010,Santa Cruz,II.5.1,1.2311501999999999,TJ,CH4,3.9,kg/TJ,4.801485779999999,Gas Oil combustion consumption by agriculture machines,AR-Z,SESCO,annual,kg,0d292baa-f484-3cf2-80dc-615de24b8999 -2010,Santa Cruz,II.5.1,1.2311501999999999,TJ,N2O,3.9,kg/TJ,4.801485779999999,Gas Oil combustion consumption by agriculture machines,AR-Z,SESCO,annual,kg,0d292baa-f484-3cf2-80dc-615de24b8999 -2010,Santa Fe,II.5.1,340.30208772000003,TJ,CO2,74100.0,kg/TJ,25216384.700052,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,d8adf129-8670-3b37-971b-1d6168270d62 -2010,Santa Fe,II.5.1,340.30208772000003,TJ,CH4,3.9,kg/TJ,1327.1781421080002,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,a575ee17-a4e2-3d66-8524-9ba5c41d9d73 -2010,Santa Fe,II.5.1,340.30208772000003,TJ,N2O,3.9,kg/TJ,1327.1781421080002,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,a575ee17-a4e2-3d66-8524-9ba5c41d9d73 -2010,Santiago del Estero,II.5.1,549.08916048,TJ,CO2,74100.0,kg/TJ,40687506.791568,Gas Oil combustion consumption by agriculture machines,AR-G,SESCO,annual,kg,37c7399c-90bf-33c7-8780-cc8205a1ae8c -2010,Santiago del Estero,II.5.1,549.08916048,TJ,CH4,3.9,kg/TJ,2141.447725872,Gas Oil combustion consumption by agriculture machines,AR-G,SESCO,annual,kg,0b2aee6f-80ae-3e37-b431-a6641fa5aaa0 -2010,Santiago del Estero,II.5.1,549.08916048,TJ,N2O,3.9,kg/TJ,2141.447725872,Gas Oil combustion consumption by agriculture machines,AR-G,SESCO,annual,kg,0b2aee6f-80ae-3e37-b431-a6641fa5aaa0 -2010,Buenos Aires,II.5.1,7.058041759999999,TJ,CO2,73300.0,kg/TJ,517354.46100799995,Naphtha combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,592f311c-d1a1-324b-865e-82acaffa7b5b -2010,Buenos Aires,II.5.1,7.058041759999999,TJ,CH4,0.5,kg/TJ,3.5290208799999996,Naphtha combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,6bbda9aa-2427-3d3f-93be-1919a5b552b8 -2010,Buenos Aires,II.5.1,7.058041759999999,TJ,N2O,2.0,kg/TJ,14.116083519999998,Naphtha combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,34ba3092-159c-338d-b169-3b0abf68aac9 -2010,Córdoba,II.5.1,1.319922065,TJ,CO2,73300.0,kg/TJ,96750.2873645,Naphtha combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,2f5c9844-d215-355d-aba4-334a19a451da -2010,Córdoba,II.5.1,1.319922065,TJ,CH4,0.5,kg/TJ,0.6599610325,Naphtha combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,8a80112c-85c7-3b3b-83ce-012c56ecfbc3 -2010,Córdoba,II.5.1,1.319922065,TJ,N2O,2.0,kg/TJ,2.63984413,Naphtha combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,7046d94b-8639-3195-b620-3e6c90370cf6 -2010,La Pampa,II.5.1,0.446986925,TJ,CO2,73300.0,kg/TJ,32764.1416025,Naphtha combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,4b4dfc7a-e128-30d0-a95c-2304ab11236d -2010,La Pampa,II.5.1,0.446986925,TJ,CH4,0.5,kg/TJ,0.2234934625,Naphtha combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,996214e8-d680-3d94-b988-2b4b6bd5e0b1 -2010,La Pampa,II.5.1,0.446986925,TJ,N2O,2.0,kg/TJ,0.89397385,Naphtha combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,0098629b-94e9-3d52-9096-a85a1adac196 -2010,San Luis,II.5.1,12.8144247,TJ,CO2,73300.0,kg/TJ,939297.33051,Naphtha combustion consumption by agriculture machines,AR-D,SESCO,annual,kg,114cd6d7-1758-3f58-8656-52dc3da8784e -2010,San Luis,II.5.1,12.8144247,TJ,CH4,0.5,kg/TJ,6.40721235,Naphtha combustion consumption by agriculture machines,AR-D,SESCO,annual,kg,e2950431-a24b-3d5f-b2b0-97233459b7c2 -2010,San Luis,II.5.1,12.8144247,TJ,N2O,2.0,kg/TJ,25.6288494,Naphtha combustion consumption by agriculture machines,AR-D,SESCO,annual,kg,9d0c8c1c-f077-30ad-86af-1fbfe56bfb85 -2010,Santa Fe,II.5.1,2.1583523499999995,TJ,CO2,73300.0,kg/TJ,158207.22725499995,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,616f8122-58f1-3c47-81b8-09cf939ee331 -2010,Santa Fe,II.5.1,2.1583523499999995,TJ,CH4,0.5,kg/TJ,1.0791761749999997,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,a875d005-a12b-3beb-a896-7143a28c7686 -2010,Santa Fe,II.5.1,2.1583523499999995,TJ,N2O,2.0,kg/TJ,4.316704699999999,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,475d9db6-af8f-390a-9931-5ead13b01548 -2010,Santiago del Estero,II.5.1,7.010618999999999,TJ,CO2,73300.0,kg/TJ,513878.37269999995,Naphtha combustion consumption by agriculture machines,AR-G,SESCO,annual,kg,4fe00f4f-4be4-3c7d-a353-c4eb1059c469 -2010,Santiago del Estero,II.5.1,7.010618999999999,TJ,CH4,0.5,kg/TJ,3.5053094999999996,Naphtha combustion consumption by agriculture machines,AR-G,SESCO,annual,kg,a7d22398-0838-343c-8bc3-1e3875ce3b22 -2010,Santiago del Estero,II.5.1,7.010618999999999,TJ,N2O,2.0,kg/TJ,14.021237999999999,Naphtha combustion consumption by agriculture machines,AR-G,SESCO,annual,kg,24813693-01e9-3e88-84d5-4b04ca33ff09 -2010,Santa Fe,II.5.1,0.8432273849999999,TJ,CO2,73300.0,kg/TJ,61808.5673205,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,f0d57e79-abe4-3c1b-83a6-b255c6cdfb82 -2010,Santa Fe,II.5.1,0.8432273849999999,TJ,CH4,0.5,kg/TJ,0.42161369249999997,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,11d37047-c55f-37cb-b53c-b8449a1b9e1f -2010,Santa Fe,II.5.1,0.8432273849999999,TJ,N2O,2.0,kg/TJ,1.6864547699999999,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,afe24d49-cfdf-339d-8827-5fa94d00f0ea -2010,Rio Negro,II.2.1,21.56931084,TJ,CO2,74100.0,kg/TJ,1598285.933244,Gas Oil combustion consumption by railway transport,AR-R,SESCO,annual,kg,b2cd757c-778a-37dc-8604-0856a739ee2e -2010,Rio Negro,II.2.1,21.56931084,TJ,CH4,3.9,kg/TJ,84.12031227599999,Gas Oil combustion consumption by railway transport,AR-R,SESCO,annual,kg,55c10729-c76b-3c4b-ad94-6e5c9c323aba -2010,Rio Negro,II.2.1,21.56931084,TJ,N2O,3.9,kg/TJ,84.12031227599999,Gas Oil combustion consumption by railway transport,AR-R,SESCO,annual,kg,55c10729-c76b-3c4b-ad94-6e5c9c323aba -2010,Capital Federal,II.1.1,10.816863899999998,TJ,CO2,69300.0,kg/TJ,749608.6682699998,Motor Gasoline combustion consumption by freight transport,AR-C,SESCO,annual,kg,89c2ae54-12b9-3b76-b34e-24314e3e6ebf -2010,Capital Federal,II.1.1,10.816863899999998,TJ,CH4,33.0,kg/TJ,356.9565086999999,Motor Gasoline combustion consumption by freight transport,AR-C,SESCO,annual,kg,4dd7937c-3fd1-3c3e-af0a-554517f9007f -2010,Capital Federal,II.1.1,10.816863899999998,TJ,N2O,3.2,kg/TJ,34.61396447999999,Motor Gasoline combustion consumption by freight transport,AR-C,SESCO,annual,kg,6ee79540-e4e0-3397-aba7-317727bbc577 -2010,Buenos Aires,II.1.1,441.81514439999995,TJ,CO2,74100.0,kg/TJ,32738502.200039998,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,714da5b3-c7c1-36a6-9d3c-1de56e419c8d -2010,Buenos Aires,II.1.1,441.81514439999995,TJ,CH4,3.9,kg/TJ,1723.0790631599998,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,be256157-741b-3873-9562-990f1f5e86db -2010,Buenos Aires,II.1.1,441.81514439999995,TJ,N2O,3.9,kg/TJ,1723.0790631599998,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,be256157-741b-3873-9562-990f1f5e86db -2010,Capital Federal,II.1.1,2.75115204,TJ,CO2,74100.0,kg/TJ,203860.366164,Gas Oil combustion consumption by freight transport,AR-C,SESCO,annual,kg,5f34f61a-edc2-3859-880d-00a84c9fab07 -2010,Capital Federal,II.1.1,2.75115204,TJ,CH4,3.9,kg/TJ,10.729492956,Gas Oil combustion consumption by freight transport,AR-C,SESCO,annual,kg,0fa2c04c-53eb-37f7-ba3c-f757a55a39d9 -2010,Capital Federal,II.1.1,2.75115204,TJ,N2O,3.9,kg/TJ,10.729492956,Gas Oil combustion consumption by freight transport,AR-C,SESCO,annual,kg,0fa2c04c-53eb-37f7-ba3c-f757a55a39d9 -2010,Chubut,II.1.1,11.89893936,TJ,CO2,74100.0,kg/TJ,881711.406576,Gas Oil combustion consumption by freight transport,AR-U,SESCO,annual,kg,f0743c80-56b0-37ea-8afb-6f7dffe2dfb8 -2010,Chubut,II.1.1,11.89893936,TJ,CH4,3.9,kg/TJ,46.405863503999996,Gas Oil combustion consumption by freight transport,AR-U,SESCO,annual,kg,f75e4424-34c4-3413-ad1f-5636f51ade94 -2010,Chubut,II.1.1,11.89893936,TJ,N2O,3.9,kg/TJ,46.405863503999996,Gas Oil combustion consumption by freight transport,AR-U,SESCO,annual,kg,f75e4424-34c4-3413-ad1f-5636f51ade94 -2010,Córdoba,II.1.1,82.29324348,TJ,CO2,74100.0,kg/TJ,6097929.341868,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,5bafaa80-2f3c-3cf8-99a7-c773ae9d1509 -2010,Córdoba,II.1.1,82.29324348,TJ,CH4,3.9,kg/TJ,320.94364957199997,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,a5530255-87d3-3e05-ab43-53d22c07a4ce -2010,Córdoba,II.1.1,82.29324348,TJ,N2O,3.9,kg/TJ,320.94364957199997,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,a5530255-87d3-3e05-ab43-53d22c07a4ce -2010,San Luis,II.1.1,28.2366294,TJ,CO2,74100.0,kg/TJ,2092334.23854,Gas Oil combustion consumption by freight transport,AR-D,SESCO,annual,kg,951afc8b-b92c-3d7c-9e94-ec46518c2e98 -2010,San Luis,II.1.1,28.2366294,TJ,CH4,3.9,kg/TJ,110.12285466,Gas Oil combustion consumption by freight transport,AR-D,SESCO,annual,kg,251e9939-e302-3526-b3e6-b77006c88f63 -2010,San Luis,II.1.1,28.2366294,TJ,N2O,3.9,kg/TJ,110.12285466,Gas Oil combustion consumption by freight transport,AR-D,SESCO,annual,kg,251e9939-e302-3526-b3e6-b77006c88f63 -2010,Santa Fe,II.1.1,6.103088039999999,TJ,CO2,74100.0,kg/TJ,452238.823764,Gas Oil combustion consumption by freight transport,AR-S,SESCO,annual,kg,902850c4-f70c-3ff0-a9ce-44fdcdb272bf -2010,Santa Fe,II.1.1,6.103088039999999,TJ,CH4,3.9,kg/TJ,23.802043356,Gas Oil combustion consumption by freight transport,AR-S,SESCO,annual,kg,da8e052a-ca83-325d-86fa-7dd9f6a6a2fb -2010,Santa Fe,II.1.1,6.103088039999999,TJ,N2O,3.9,kg/TJ,23.802043356,Gas Oil combustion consumption by freight transport,AR-S,SESCO,annual,kg,da8e052a-ca83-325d-86fa-7dd9f6a6a2fb -2010,Rio Negro,II.1.1,2.341698,TJ,CO2,69300.0,kg/TJ,162279.6714,Motor Gasoline combustion consumption by public passenger transport,AR-R,SESCO,annual,kg,da8fe3e5-6e1f-37ec-a21b-10b48f9b7c5e -2010,Rio Negro,II.1.1,2.341698,TJ,CH4,33.0,kg/TJ,77.276034,Motor Gasoline combustion consumption by public passenger transport,AR-R,SESCO,annual,kg,67a954a1-5758-3d6c-92f8-c673c5dcf09c -2010,Rio Negro,II.1.1,2.341698,TJ,N2O,3.2,kg/TJ,7.4934336,Motor Gasoline combustion consumption by public passenger transport,AR-R,SESCO,annual,kg,b4e2ea4a-0e2a-3c63-8a28-ec9fe1f0d19c -2010,Santa Fe,II.1.1,52.44340319999999,TJ,CO2,69300.0,kg/TJ,3634327.8417599993,Motor Gasoline combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,c7b19dc3-47e8-3448-8c2c-bc90cf5dfcd0 -2010,Santa Fe,II.1.1,52.44340319999999,TJ,CH4,33.0,kg/TJ,1730.6323055999997,Motor Gasoline combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,502e158a-75e3-322e-90e7-c7798a79aa63 -2010,Santa Fe,II.1.1,52.44340319999999,TJ,N2O,3.2,kg/TJ,167.81889023999997,Motor Gasoline combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,2f84ee75-5132-3984-842f-f47bb4b02017 -2010,Buenos Aires,II.1.1,728.0233060800001,TJ,CO2,74100.0,kg/TJ,53946526.98052801,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,98705562-3325-35fd-b256-af116781bc72 -2010,Buenos Aires,II.1.1,728.0233060800001,TJ,CH4,3.9,kg/TJ,2839.2908937120005,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,a7ef5092-1034-34bd-8eb6-f5c40b769bae -2010,Buenos Aires,II.1.1,728.0233060800001,TJ,N2O,3.9,kg/TJ,2839.2908937120005,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,a7ef5092-1034-34bd-8eb6-f5c40b769bae -2010,Capital Federal,II.1.1,198.36226284,TJ,CO2,74100.0,kg/TJ,14698643.676444,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,87083595-3197-3fa6-aa2a-5d83615e822f -2010,Capital Federal,II.1.1,198.36226284,TJ,CH4,3.9,kg/TJ,773.612825076,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,7ea15497-e3d4-331b-8d7d-65ae30b9861e -2010,Capital Federal,II.1.1,198.36226284,TJ,N2O,3.9,kg/TJ,773.612825076,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,7ea15497-e3d4-331b-8d7d-65ae30b9861e -2010,Corrientes,II.1.1,0.35484287999999997,TJ,CO2,74100.0,kg/TJ,26293.857407999996,Gas Oil combustion consumption by public passenger transport,AR-W,SESCO,annual,kg,c9a8358c-18d6-31c4-809c-962fbe244156 -2010,Corrientes,II.1.1,0.35484287999999997,TJ,CH4,3.9,kg/TJ,1.383887232,Gas Oil combustion consumption by public passenger transport,AR-W,SESCO,annual,kg,94b784e2-fc82-3190-ad30-091cedc4274d -2010,Corrientes,II.1.1,0.35484287999999997,TJ,N2O,3.9,kg/TJ,1.383887232,Gas Oil combustion consumption by public passenger transport,AR-W,SESCO,annual,kg,94b784e2-fc82-3190-ad30-091cedc4274d -2010,Córdoba,II.1.1,62.506599120000004,TJ,CO2,74100.0,kg/TJ,4631738.994792,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,c486efd8-d16a-30b7-a727-5e950c4e5aed -2010,Córdoba,II.1.1,62.506599120000004,TJ,CH4,3.9,kg/TJ,243.775736568,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,d06611f5-6936-3aff-832d-2a60a247da0b -2010,Córdoba,II.1.1,62.506599120000004,TJ,N2O,3.9,kg/TJ,243.775736568,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,d06611f5-6936-3aff-832d-2a60a247da0b -2010,Entre Rios,II.1.1,65.70935951999999,TJ,CO2,74100.0,kg/TJ,4869063.540432,Gas Oil combustion consumption by public passenger transport,AR-E,SESCO,annual,kg,140474bb-45de-380d-b659-cb276d24a3f4 -2010,Entre Rios,II.1.1,65.70935951999999,TJ,CH4,3.9,kg/TJ,256.26650212799996,Gas Oil combustion consumption by public passenger transport,AR-E,SESCO,annual,kg,0c1de430-4c69-3280-afd4-4f019a032417 -2010,Entre Rios,II.1.1,65.70935951999999,TJ,N2O,3.9,kg/TJ,256.26650212799996,Gas Oil combustion consumption by public passenger transport,AR-E,SESCO,annual,kg,0c1de430-4c69-3280-afd4-4f019a032417 -2010,Formosa,II.1.1,6.57640452,TJ,CO2,74100.0,kg/TJ,487311.57493199996,Gas Oil combustion consumption by public passenger transport,AR-P,SESCO,annual,kg,88d65b23-4843-3ddd-8046-e1d29aeefdf2 -2010,Formosa,II.1.1,6.57640452,TJ,CH4,3.9,kg/TJ,25.647977628,Gas Oil combustion consumption by public passenger transport,AR-P,SESCO,annual,kg,a4ceec25-6669-363b-a2c9-0c2be5ea346a -2010,Formosa,II.1.1,6.57640452,TJ,N2O,3.9,kg/TJ,25.647977628,Gas Oil combustion consumption by public passenger transport,AR-P,SESCO,annual,kg,a4ceec25-6669-363b-a2c9-0c2be5ea346a -2010,Neuquén,II.1.1,18.797859359999997,TJ,CO2,74100.0,kg/TJ,1392921.3785759998,Gas Oil combustion consumption by public passenger transport,AR-Q,SESCO,annual,kg,c6da526e-637b-38c5-b179-18d7af835b52 -2010,Neuquén,II.1.1,18.797859359999997,TJ,CH4,3.9,kg/TJ,73.31165150399998,Gas Oil combustion consumption by public passenger transport,AR-Q,SESCO,annual,kg,9409ffe1-d880-36a1-9ec2-60e708d10e15 -2010,Neuquén,II.1.1,18.797859359999997,TJ,N2O,3.9,kg/TJ,73.31165150399998,Gas Oil combustion consumption by public passenger transport,AR-Q,SESCO,annual,kg,9409ffe1-d880-36a1-9ec2-60e708d10e15 -2010,Rio Negro,II.1.1,81.22651151999999,TJ,CO2,74100.0,kg/TJ,6018884.503631999,Gas Oil combustion consumption by public passenger transport,AR-R,SESCO,annual,kg,6022dfa0-ce5e-3e4c-a412-805851a9d377 -2010,Rio Negro,II.1.1,81.22651151999999,TJ,CH4,3.9,kg/TJ,316.78339492799995,Gas Oil combustion consumption by public passenger transport,AR-R,SESCO,annual,kg,9d56e398-d38a-37f3-8bf9-0e0f4d349278 -2010,Rio Negro,II.1.1,81.22651151999999,TJ,N2O,3.9,kg/TJ,316.78339492799995,Gas Oil combustion consumption by public passenger transport,AR-R,SESCO,annual,kg,9d56e398-d38a-37f3-8bf9-0e0f4d349278 -2010,San Juan,II.1.1,13.246395960000001,TJ,CO2,74100.0,kg/TJ,981557.940636,Gas Oil combustion consumption by public passenger transport,AR-J,SESCO,annual,kg,767cfb7c-90ad-35b2-9dff-129320f7d192 -2010,San Juan,II.1.1,13.246395960000001,TJ,CH4,3.9,kg/TJ,51.660944244,Gas Oil combustion consumption by public passenger transport,AR-J,SESCO,annual,kg,871ba153-363f-385a-93a9-2a0a0ef33857 -2010,San Juan,II.1.1,13.246395960000001,TJ,N2O,3.9,kg/TJ,51.660944244,Gas Oil combustion consumption by public passenger transport,AR-J,SESCO,annual,kg,871ba153-363f-385a-93a9-2a0a0ef33857 -2010,San Luis,II.1.1,48.646307639999996,TJ,CO2,74100.0,kg/TJ,3604691.3961239997,Gas Oil combustion consumption by public passenger transport,AR-D,SESCO,annual,kg,a13546e8-2089-3b45-810e-211e13376e5a -2010,San Luis,II.1.1,48.646307639999996,TJ,CH4,3.9,kg/TJ,189.720599796,Gas Oil combustion consumption by public passenger transport,AR-D,SESCO,annual,kg,d942a3dd-fa1f-3058-9162-95ad341d8c81 -2010,San Luis,II.1.1,48.646307639999996,TJ,N2O,3.9,kg/TJ,189.720599796,Gas Oil combustion consumption by public passenger transport,AR-D,SESCO,annual,kg,d942a3dd-fa1f-3058-9162-95ad341d8c81 -2010,Santa Fe,II.1.1,681.7063049999999,TJ,CO2,74100.0,kg/TJ,50514437.2005,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,76621829-b590-315e-b47c-ee9788e9a647 -2010,Santa Fe,II.1.1,681.7063049999999,TJ,CH4,3.9,kg/TJ,2658.6545894999995,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,abe03b6e-f601-3387-84ff-daafa8188c59 -2010,Santa Fe,II.1.1,681.7063049999999,TJ,N2O,3.9,kg/TJ,2658.6545894999995,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,abe03b6e-f601-3387-84ff-daafa8188c59 -2010,Buenos Aires,II.5.1,349.31651999999997,TJ,CO2,74100.0,kg/TJ,25884354.132,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,73da8713-cc6c-3d48-8b24-1e4e2001faa8 -2010,Buenos Aires,II.5.1,349.31651999999997,TJ,CH4,3.9,kg/TJ,1362.334428,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,79328e29-152c-3e6b-8306-b80eef164173 -2010,Buenos Aires,II.5.1,349.31651999999997,TJ,N2O,3.9,kg/TJ,1362.334428,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,79328e29-152c-3e6b-8306-b80eef164173 -2010,Capital Federal,II.5.1,95.60964,TJ,CO2,74100.0,kg/TJ,7084674.324,Gas Oil combustion consumption by agriculture machines,AR-C,SESCO,annual,kg,8b190951-d07f-36b3-ae05-a257f14c32e4 -2010,Capital Federal,II.5.1,95.60964,TJ,CH4,3.9,kg/TJ,372.877596,Gas Oil combustion consumption by agriculture machines,AR-C,SESCO,annual,kg,b63c8ad7-8c41-3b37-b108-1033d94f0c29 -2010,Capital Federal,II.5.1,95.60964,TJ,N2O,3.9,kg/TJ,372.877596,Gas Oil combustion consumption by agriculture machines,AR-C,SESCO,annual,kg,b63c8ad7-8c41-3b37-b108-1033d94f0c29 -2010,Corrientes,II.5.1,12.67812,TJ,CO2,74100.0,kg/TJ,939448.692,Gas Oil combustion consumption by agriculture machines,AR-W,SESCO,annual,kg,01dd232f-3f68-3ca9-970d-b8e9e5999474 -2010,Corrientes,II.5.1,12.67812,TJ,CH4,3.9,kg/TJ,49.444668,Gas Oil combustion consumption by agriculture machines,AR-W,SESCO,annual,kg,bdbd8008-3afc-32c2-83db-59cf22cbba3a -2010,Corrientes,II.5.1,12.67812,TJ,N2O,3.9,kg/TJ,49.444668,Gas Oil combustion consumption by agriculture machines,AR-W,SESCO,annual,kg,bdbd8008-3afc-32c2-83db-59cf22cbba3a -2010,Córdoba,II.5.1,72.31224,TJ,CO2,74100.0,kg/TJ,5358336.984,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,dad278e1-67dd-3f40-a3d2-e406bdec79c2 -2010,Córdoba,II.5.1,72.31224,TJ,CH4,3.9,kg/TJ,282.017736,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,0d479e44-4d41-3c69-b2d7-bcc10cc028e2 -2010,Córdoba,II.5.1,72.31224,TJ,N2O,3.9,kg/TJ,282.017736,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,0d479e44-4d41-3c69-b2d7-bcc10cc028e2 -2010,Entre Rios,II.5.1,32.65248,TJ,CO2,74100.0,kg/TJ,2419548.7679999997,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,981c45c9-bb98-39ca-a73d-513468410ec9 -2010,Entre Rios,II.5.1,32.65248,TJ,CH4,3.9,kg/TJ,127.34467199999999,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,bc5f3170-367f-342c-8825-eeea975f1572 -2010,Entre Rios,II.5.1,32.65248,TJ,N2O,3.9,kg/TJ,127.34467199999999,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,bc5f3170-367f-342c-8825-eeea975f1572 -2010,Formosa,II.5.1,12.85872,TJ,CO2,74100.0,kg/TJ,952831.152,Gas Oil combustion consumption by agriculture machines,AR-P,SESCO,annual,kg,ac15516b-8d35-3f9a-8ba0-94e22cc32a0d -2010,Formosa,II.5.1,12.85872,TJ,CH4,3.9,kg/TJ,50.149008,Gas Oil combustion consumption by agriculture machines,AR-P,SESCO,annual,kg,66501b0d-ef7a-3574-9a30-708fc6f3f0aa -2010,Formosa,II.5.1,12.85872,TJ,N2O,3.9,kg/TJ,50.149008,Gas Oil combustion consumption by agriculture machines,AR-P,SESCO,annual,kg,66501b0d-ef7a-3574-9a30-708fc6f3f0aa -2010,La Pampa,II.5.1,17.91552,TJ,CO2,74100.0,kg/TJ,1327540.0320000001,Gas Oil combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,11a6edb5-1352-3b5f-97e5-118280cc7431 -2010,La Pampa,II.5.1,17.91552,TJ,CH4,3.9,kg/TJ,69.87052800000001,Gas Oil combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,d15f3bf5-effa-3872-ad7a-d884bacdc565 -2010,La Pampa,II.5.1,17.91552,TJ,N2O,3.9,kg/TJ,69.87052800000001,Gas Oil combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,d15f3bf5-effa-3872-ad7a-d884bacdc565 -2010,Salta,II.5.1,11.48616,TJ,CO2,74100.0,kg/TJ,851124.456,Gas Oil combustion consumption by agriculture machines,AR-A,SESCO,annual,kg,383f98ad-e753-39b7-b712-4337996a6480 -2010,Salta,II.5.1,11.48616,TJ,CH4,3.9,kg/TJ,44.796023999999996,Gas Oil combustion consumption by agriculture machines,AR-A,SESCO,annual,kg,85103960-4aa8-382d-9bdd-413ac97841d9 -2010,Salta,II.5.1,11.48616,TJ,N2O,3.9,kg/TJ,44.796023999999996,Gas Oil combustion consumption by agriculture machines,AR-A,SESCO,annual,kg,85103960-4aa8-382d-9bdd-413ac97841d9 -2010,Santa Fe,II.5.1,465.44232,TJ,CO2,74100.0,kg/TJ,34489275.912,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,5b2cfc6d-c969-35a1-af34-8f6121df090e -2010,Santa Fe,II.5.1,465.44232,TJ,CH4,3.9,kg/TJ,1815.225048,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,b55beb54-e30a-31a0-a973-402661cdceed -2010,Santa Fe,II.5.1,465.44232,TJ,N2O,3.9,kg/TJ,1815.225048,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,b55beb54-e30a-31a0-a973-402661cdceed -2010,Buenos Aires,II.5.1,5.02068,TJ,CO2,74100.0,kg/TJ,372032.388,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,32903e43-3ecb-308c-90e5-ed601bad5526 -2010,Buenos Aires,II.5.1,5.02068,TJ,CH4,3.9,kg/TJ,19.580651999999997,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,7a064fe6-89cd-38db-b3e4-99884d32db11 -2010,Buenos Aires,II.5.1,5.02068,TJ,N2O,3.9,kg/TJ,19.580651999999997,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,7a064fe6-89cd-38db-b3e4-99884d32db11 -2010,Buenos Aires,II.5.1,0.31453,TJ,CO2,71500.0,kg/TJ,22488.894999999997,Jet Kerosene combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,c639eeec-a750-32b7-98fd-7835a75905a7 -2010,Buenos Aires,II.5.1,0.31453,TJ,CH4,0.5,kg/TJ,0.157265,Jet Kerosene combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,a9a2a44c-3501-33bc-9d51-3b6d602712ec -2010,Buenos Aires,II.5.1,0.31453,TJ,N2O,2.0,kg/TJ,0.62906,Jet Kerosene combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,2bd2b710-ce07-33fb-9593-758c52165496 -2010,Misiones,II.5.1,8.531984999999999,TJ,CO2,73300.0,kg/TJ,625394.5005,Naphtha combustion consumption by agriculture machines,AR-N,SESCO,annual,kg,1c9cff2b-8065-34c1-9c6d-270d03ce77ca -2010,Misiones,II.5.1,8.531984999999999,TJ,CH4,0.5,kg/TJ,4.265992499999999,Naphtha combustion consumption by agriculture machines,AR-N,SESCO,annual,kg,1fbbdd11-adce-3ff0-a70c-465da3fee4d8 -2010,Misiones,II.5.1,8.531984999999999,TJ,N2O,2.0,kg/TJ,17.063969999999998,Naphtha combustion consumption by agriculture machines,AR-N,SESCO,annual,kg,46153400-626f-3932-88ad-030c5298484b -2010,Capital Federal,II.5.1,0.54824,TJ,CO2,73300.0,kg/TJ,40185.992,Naphtha combustion consumption by agriculture machines,AR-C,SESCO,annual,kg,1ad9ff69-060b-31ce-ad32-9111bce64f3b -2010,Capital Federal,II.5.1,0.54824,TJ,CH4,0.5,kg/TJ,0.27412,Naphtha combustion consumption by agriculture machines,AR-C,SESCO,annual,kg,fc302db8-afda-3373-a9a6-2c64b9c68706 -2010,Capital Federal,II.5.1,0.54824,TJ,N2O,2.0,kg/TJ,1.09648,Naphtha combustion consumption by agriculture machines,AR-C,SESCO,annual,kg,ba274e32-a7fa-3647-8922-efb12bf91188 -2010,Salta,II.5.1,0.20559,TJ,CO2,73300.0,kg/TJ,15069.747,Naphtha combustion consumption by agriculture machines,AR-A,SESCO,annual,kg,e27938a3-3f2b-3e96-8076-66ab09ab4ebd -2010,Salta,II.5.1,0.20559,TJ,CH4,0.5,kg/TJ,0.102795,Naphtha combustion consumption by agriculture machines,AR-A,SESCO,annual,kg,168ea20a-6352-3169-994f-90a5ce59b7b1 -2010,Salta,II.5.1,0.20559,TJ,N2O,2.0,kg/TJ,0.41118,Naphtha combustion consumption by agriculture machines,AR-A,SESCO,annual,kg,f42e3987-4546-3b4c-a52c-17e7ce478cd1 -2010,Buenos Aires,II.2.1,875.44044,TJ,CO2,74100.0,kg/TJ,64870136.603999995,Gas Oil combustion consumption by railway transport,AR-B,SESCO,annual,kg,4ef98a12-fa50-3473-abb9-2dce62e25df0 -2010,Buenos Aires,II.2.1,875.44044,TJ,CH4,3.9,kg/TJ,3414.2177159999997,Gas Oil combustion consumption by railway transport,AR-B,SESCO,annual,kg,aec0e1d7-7b90-3520-8b84-3a98dc63053f -2010,Buenos Aires,II.2.1,875.44044,TJ,N2O,3.9,kg/TJ,3414.2177159999997,Gas Oil combustion consumption by railway transport,AR-B,SESCO,annual,kg,aec0e1d7-7b90-3520-8b84-3a98dc63053f -2010,Capital Federal,II.2.1,1494.8262,TJ,CO2,74100.0,kg/TJ,110766621.42,Gas Oil combustion consumption by railway transport,AR-C,SESCO,annual,kg,bb44e1a5-b071-3dd4-be1a-f0367b4b0bdf -2010,Capital Federal,II.2.1,1494.8262,TJ,CH4,3.9,kg/TJ,5829.82218,Gas Oil combustion consumption by railway transport,AR-C,SESCO,annual,kg,e00226de-805d-3713-b10e-074c8007e0e7 -2010,Capital Federal,II.2.1,1494.8262,TJ,N2O,3.9,kg/TJ,5829.82218,Gas Oil combustion consumption by railway transport,AR-C,SESCO,annual,kg,e00226de-805d-3713-b10e-074c8007e0e7 -2010,Córdoba,II.2.1,17.157,TJ,CO2,74100.0,kg/TJ,1271333.7,Gas Oil combustion consumption by railway transport,AR-X,SESCO,annual,kg,8a05f4a3-1498-3532-9f11-2192c16cb780 -2010,Córdoba,II.2.1,17.157,TJ,CH4,3.9,kg/TJ,66.9123,Gas Oil combustion consumption by railway transport,AR-X,SESCO,annual,kg,c4f37b6a-01f8-3556-9e9d-7d2e2560083b -2010,Córdoba,II.2.1,17.157,TJ,N2O,3.9,kg/TJ,66.9123,Gas Oil combustion consumption by railway transport,AR-X,SESCO,annual,kg,c4f37b6a-01f8-3556-9e9d-7d2e2560083b -2010,Santa Fe,II.2.1,256.27139999999997,TJ,CO2,74100.0,kg/TJ,18989710.74,Gas Oil combustion consumption by railway transport,AR-S,SESCO,annual,kg,3bbdb347-9fc5-3b86-99d5-ae4969188fda -2010,Santa Fe,II.2.1,256.27139999999997,TJ,CH4,3.9,kg/TJ,999.4584599999998,Gas Oil combustion consumption by railway transport,AR-S,SESCO,annual,kg,664d2e87-e4df-3485-934f-566c4d2b7886 -2010,Santa Fe,II.2.1,256.27139999999997,TJ,N2O,3.9,kg/TJ,999.4584599999998,Gas Oil combustion consumption by railway transport,AR-S,SESCO,annual,kg,664d2e87-e4df-3485-934f-566c4d2b7886 -2010,Santiago del Estero,II.2.1,7.36848,TJ,CO2,74100.0,kg/TJ,546004.368,Gas Oil combustion consumption by railway transport,AR-G,SESCO,annual,kg,aee0e807-fe14-3f2e-8466-7c9e65037c94 -2010,Santiago del Estero,II.2.1,7.36848,TJ,CH4,3.9,kg/TJ,28.737071999999998,Gas Oil combustion consumption by railway transport,AR-G,SESCO,annual,kg,13aa7f93-ad76-3868-ad03-d7d0d6dc9c0d -2010,Santiago del Estero,II.2.1,7.36848,TJ,N2O,3.9,kg/TJ,28.737071999999998,Gas Oil combustion consumption by railway transport,AR-G,SESCO,annual,kg,13aa7f93-ad76-3868-ad03-d7d0d6dc9c0d -2010,Tucuman,II.2.1,7.62132,TJ,CO2,74100.0,kg/TJ,564739.812,Gas Oil combustion consumption by railway transport,AR-T,SESCO,annual,kg,46b9a657-5683-30de-b2da-384f14a55001 -2010,Tucuman,II.2.1,7.62132,TJ,CH4,3.9,kg/TJ,29.723148,Gas Oil combustion consumption by railway transport,AR-T,SESCO,annual,kg,ffcc70f3-01e0-357f-a17c-441bc9de9267 -2010,Tucuman,II.2.1,7.62132,TJ,N2O,3.9,kg/TJ,29.723148,Gas Oil combustion consumption by railway transport,AR-T,SESCO,annual,kg,ffcc70f3-01e0-357f-a17c-441bc9de9267 -2010,Buenos Aires,II.2.1,186.74425,TJ,CO2,73300.0,kg/TJ,13688353.525,Naphtha combustion consumption by railway transport,AR-B,SESCO,annual,kg,a2668e6b-88dd-348a-bb71-afe5eea5255d -2010,Buenos Aires,II.2.1,186.74425,TJ,CH4,0.5,kg/TJ,93.372125,Naphtha combustion consumption by railway transport,AR-B,SESCO,annual,kg,83e4ba75-2b11-38ea-84e8-01a65d114d79 -2010,Buenos Aires,II.2.1,186.74425,TJ,N2O,2.0,kg/TJ,373.4885,Naphtha combustion consumption by railway transport,AR-B,SESCO,annual,kg,5d6297f2-8809-3a7d-bb6c-40be152c1c50 -2010,Buenos Aires,II.1.1,4.7844,TJ,CO2,69300.0,kg/TJ,331558.92,Motor Gasoline combustion consumption by freight transport,AR-B,SESCO,annual,kg,f522c101-adf4-39db-ba79-fbbc8e1b01ff -2010,Buenos Aires,II.1.1,4.7844,TJ,CH4,33.0,kg/TJ,157.8852,Motor Gasoline combustion consumption by freight transport,AR-B,SESCO,annual,kg,754108c6-5882-3a57-8b36-7ae3361392c2 -2010,Buenos Aires,II.1.1,4.7844,TJ,N2O,3.2,kg/TJ,15.31008,Motor Gasoline combustion consumption by freight transport,AR-B,SESCO,annual,kg,0e4c3d01-9519-3df8-bc82-69c19e5803e2 -2010,Capital Federal,II.1.1,2.215,TJ,CO2,69300.0,kg/TJ,153499.5,Motor Gasoline combustion consumption by freight transport,AR-C,SESCO,annual,kg,908ec396-06af-309b-943f-22822d61158a -2010,Capital Federal,II.1.1,2.215,TJ,CH4,33.0,kg/TJ,73.095,Motor Gasoline combustion consumption by freight transport,AR-C,SESCO,annual,kg,f9ae3f64-b722-3e03-99c9-bcc21c824381 -2010,Capital Federal,II.1.1,2.215,TJ,N2O,3.2,kg/TJ,7.088,Motor Gasoline combustion consumption by freight transport,AR-C,SESCO,annual,kg,b2454f96-300c-3f0c-a6fd-c5a21595705a -2010,Buenos Aires,II.1.1,953.2067999999999,TJ,CO2,74100.0,kg/TJ,70632623.88,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,8be79666-4252-3420-99c5-d1e0b4262190 -2010,Buenos Aires,II.1.1,953.2067999999999,TJ,CH4,3.9,kg/TJ,3717.5065199999995,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,2378a78f-5048-3f31-b7e0-1bb5d1afdd61 -2010,Buenos Aires,II.1.1,953.2067999999999,TJ,N2O,3.9,kg/TJ,3717.5065199999995,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,2378a78f-5048-3f31-b7e0-1bb5d1afdd61 -2010,Capital Federal,II.1.1,201.29675999999998,TJ,CO2,74100.0,kg/TJ,14916089.916,Gas Oil combustion consumption by freight transport,AR-C,SESCO,annual,kg,03dd56a3-d5b8-3558-be42-81dc1ed3c9db -2010,Capital Federal,II.1.1,201.29675999999998,TJ,CH4,3.9,kg/TJ,785.0573639999999,Gas Oil combustion consumption by freight transport,AR-C,SESCO,annual,kg,9d4e3c47-c814-3926-bd7d-611d28055ba6 -2010,Capital Federal,II.1.1,201.29675999999998,TJ,N2O,3.9,kg/TJ,785.0573639999999,Gas Oil combustion consumption by freight transport,AR-C,SESCO,annual,kg,9d4e3c47-c814-3926-bd7d-611d28055ba6 -2010,Córdoba,II.1.1,148.23648,TJ,CO2,74100.0,kg/TJ,10984323.168,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,2b3ca24f-b438-33aa-bc7f-c8f87f9882e3 -2010,Córdoba,II.1.1,148.23648,TJ,CH4,3.9,kg/TJ,578.122272,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,e238a20a-68f2-36e1-baad-3e5eaeb20c4d -2010,Córdoba,II.1.1,148.23648,TJ,N2O,3.9,kg/TJ,578.122272,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,e238a20a-68f2-36e1-baad-3e5eaeb20c4d -2010,Entre Rios,II.1.1,29.0766,TJ,CO2,74100.0,kg/TJ,2154576.06,Gas Oil combustion consumption by freight transport,AR-E,SESCO,annual,kg,827963a8-fb6e-35e0-91c5-5a914d0cb404 -2010,Entre Rios,II.1.1,29.0766,TJ,CH4,3.9,kg/TJ,113.39873999999999,Gas Oil combustion consumption by freight transport,AR-E,SESCO,annual,kg,3a09208c-3f0f-3f12-bec6-7fdccb0ef77a -2010,Entre Rios,II.1.1,29.0766,TJ,N2O,3.9,kg/TJ,113.39873999999999,Gas Oil combustion consumption by freight transport,AR-E,SESCO,annual,kg,3a09208c-3f0f-3f12-bec6-7fdccb0ef77a -2010,Jujuy,II.1.1,6.284879999999999,TJ,CO2,74100.0,kg/TJ,465709.60799999995,Gas Oil combustion consumption by freight transport,AR-Y,SESCO,annual,kg,525fe868-1faf-3fb5-97ac-e49a70b69e7f -2010,Jujuy,II.1.1,6.284879999999999,TJ,CH4,3.9,kg/TJ,24.511031999999997,Gas Oil combustion consumption by freight transport,AR-Y,SESCO,annual,kg,ec7ca848-49c3-3575-a906-bbda9e6f7977 -2010,Jujuy,II.1.1,6.284879999999999,TJ,N2O,3.9,kg/TJ,24.511031999999997,Gas Oil combustion consumption by freight transport,AR-Y,SESCO,annual,kg,ec7ca848-49c3-3575-a906-bbda9e6f7977 -2010,La Pampa,II.1.1,12.71424,TJ,CO2,74100.0,kg/TJ,942125.184,Gas Oil combustion consumption by freight transport,AR-L,SESCO,annual,kg,2af8742e-b53d-3ccc-9916-d404ddeec640 -2010,La Pampa,II.1.1,12.71424,TJ,CH4,3.9,kg/TJ,49.585536,Gas Oil combustion consumption by freight transport,AR-L,SESCO,annual,kg,99113fd5-ee2b-3646-877f-741a9bf63640 -2010,La Pampa,II.1.1,12.71424,TJ,N2O,3.9,kg/TJ,49.585536,Gas Oil combustion consumption by freight transport,AR-L,SESCO,annual,kg,99113fd5-ee2b-3646-877f-741a9bf63640 -2010,Mendoza,II.1.1,9.10224,TJ,CO2,74100.0,kg/TJ,674475.984,Gas Oil combustion consumption by freight transport,AR-M,SESCO,annual,kg,bd88b844-c355-3a23-88ca-f3b0da3fd15e -2010,Mendoza,II.1.1,9.10224,TJ,CH4,3.9,kg/TJ,35.498736,Gas Oil combustion consumption by freight transport,AR-M,SESCO,annual,kg,6c84c0b9-fec1-34d2-8bbc-3d86d6ffc516 -2010,Mendoza,II.1.1,9.10224,TJ,N2O,3.9,kg/TJ,35.498736,Gas Oil combustion consumption by freight transport,AR-M,SESCO,annual,kg,6c84c0b9-fec1-34d2-8bbc-3d86d6ffc516 -2010,Salta,II.1.1,40.635,TJ,CO2,74100.0,kg/TJ,3011053.5,Gas Oil combustion consumption by freight transport,AR-A,SESCO,annual,kg,9541f626-e86e-38e8-adc1-0ad06c404fed -2010,Salta,II.1.1,40.635,TJ,CH4,3.9,kg/TJ,158.4765,Gas Oil combustion consumption by freight transport,AR-A,SESCO,annual,kg,70f0aebe-208c-3d78-87a3-80476f8a8d90 -2010,Salta,II.1.1,40.635,TJ,N2O,3.9,kg/TJ,158.4765,Gas Oil combustion consumption by freight transport,AR-A,SESCO,annual,kg,70f0aebe-208c-3d78-87a3-80476f8a8d90 -2010,San Luis,II.1.1,14.19516,TJ,CO2,74100.0,kg/TJ,1051861.356,Gas Oil combustion consumption by freight transport,AR-D,SESCO,annual,kg,c76e817b-4a23-3760-9b24-286292b9b42e -2010,San Luis,II.1.1,14.19516,TJ,CH4,3.9,kg/TJ,55.361124,Gas Oil combustion consumption by freight transport,AR-D,SESCO,annual,kg,e2c3240a-0ff9-324b-bae3-4fbd92d9da44 -2010,San Luis,II.1.1,14.19516,TJ,N2O,3.9,kg/TJ,55.361124,Gas Oil combustion consumption by freight transport,AR-D,SESCO,annual,kg,e2c3240a-0ff9-324b-bae3-4fbd92d9da44 -2010,Santa Fe,II.1.1,85.6044,TJ,CO2,74100.0,kg/TJ,6343286.04,Gas Oil combustion consumption by freight transport,AR-S,SESCO,annual,kg,de4dd313-0def-3220-b260-f6493c62ef74 -2010,Santa Fe,II.1.1,85.6044,TJ,CH4,3.9,kg/TJ,333.85715999999996,Gas Oil combustion consumption by freight transport,AR-S,SESCO,annual,kg,65de742c-f87e-3e37-9051-b3d2ef255cbd -2010,Santa Fe,II.1.1,85.6044,TJ,N2O,3.9,kg/TJ,333.85715999999996,Gas Oil combustion consumption by freight transport,AR-S,SESCO,annual,kg,65de742c-f87e-3e37-9051-b3d2ef255cbd -2010,Santiago del Estero,II.1.1,4.22604,TJ,CO2,74100.0,kg/TJ,313149.564,Gas Oil combustion consumption by freight transport,AR-G,SESCO,annual,kg,67d7a300-9399-3667-94db-b484da112b40 -2010,Santiago del Estero,II.1.1,4.22604,TJ,CH4,3.9,kg/TJ,16.481556,Gas Oil combustion consumption by freight transport,AR-G,SESCO,annual,kg,f79a8b39-7b68-34cd-a663-063d8eacce5c -2010,Santiago del Estero,II.1.1,4.22604,TJ,N2O,3.9,kg/TJ,16.481556,Gas Oil combustion consumption by freight transport,AR-G,SESCO,annual,kg,f79a8b39-7b68-34cd-a663-063d8eacce5c -2010,Buenos Aires,II.1.1,2128.707587,TJ,CO2,71500.0,kg/TJ,152202592.4705,Jet Kerosene combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,ad3a2614-0df2-32bc-8732-46d9de8f15f7 -2010,Buenos Aires,II.1.1,2128.707587,TJ,CH4,0.5,kg/TJ,1064.3537935,Jet Kerosene combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,d09f4f09-ac04-32d7-a017-cb033ff64221 -2010,Buenos Aires,II.1.1,2128.707587,TJ,N2O,2.0,kg/TJ,4257.415174,Jet Kerosene combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,4a248f36-7c3b-3b6b-baf0-41c421be1533 -2010,Capital Federal,II.1.1,368.25172399999997,TJ,CO2,71500.0,kg/TJ,26329998.266,Jet Kerosene combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,c357f40a-0b72-39a3-a445-26ffdf619086 -2010,Capital Federal,II.1.1,368.25172399999997,TJ,CH4,0.5,kg/TJ,184.12586199999998,Jet Kerosene combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,4f65834d-645f-3742-84f7-6757c9f938a1 -2010,Capital Federal,II.1.1,368.25172399999997,TJ,N2O,2.0,kg/TJ,736.5034479999999,Jet Kerosene combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,5d98fef8-b244-3fb8-a11d-1cadfefe64a3 -2010,Buenos Aires,II.1.1,4252.47984,TJ,CO2,74100.0,kg/TJ,315108756.144,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,b748ee08-660d-379a-ac45-a5aa6f8b1665 -2010,Buenos Aires,II.1.1,4252.47984,TJ,CH4,3.9,kg/TJ,16584.671376,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,1e2ebfbf-5d5e-331c-942a-478abf70d76a -2010,Buenos Aires,II.1.1,4252.47984,TJ,N2O,3.9,kg/TJ,16584.671376,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,1e2ebfbf-5d5e-331c-942a-478abf70d76a -2010,Capital Federal,II.1.1,381.68003999999996,TJ,CO2,74100.0,kg/TJ,28282490.963999998,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,42172915-0045-3c68-b22e-bbaa6e736837 -2010,Capital Federal,II.1.1,381.68003999999996,TJ,CH4,3.9,kg/TJ,1488.5521559999997,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,f495f9a9-1d96-395f-a6e6-6226147fe08b -2010,Capital Federal,II.1.1,381.68003999999996,TJ,N2O,3.9,kg/TJ,1488.5521559999997,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,f495f9a9-1d96-395f-a6e6-6226147fe08b -2010,Córdoba,II.1.1,12.71424,TJ,CO2,74100.0,kg/TJ,942125.184,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,1c62990e-3c1b-39b7-b564-6d39402d26ff -2010,Córdoba,II.1.1,12.71424,TJ,CH4,3.9,kg/TJ,49.585536,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,28f5d0b4-74bc-3b22-947a-45cf832eb3b0 -2010,Córdoba,II.1.1,12.71424,TJ,N2O,3.9,kg/TJ,49.585536,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,28f5d0b4-74bc-3b22-947a-45cf832eb3b0 -2010,Entre Rios,II.1.1,9.96912,TJ,CO2,74100.0,kg/TJ,738711.792,Gas Oil combustion consumption by public passenger transport,AR-E,SESCO,annual,kg,732767db-c57d-3c5e-b1c4-1da8918d1577 -2010,Entre Rios,II.1.1,9.96912,TJ,CH4,3.9,kg/TJ,38.879568,Gas Oil combustion consumption by public passenger transport,AR-E,SESCO,annual,kg,af18329c-9681-3293-9363-8a52c4a1dcfd -2010,Entre Rios,II.1.1,9.96912,TJ,N2O,3.9,kg/TJ,38.879568,Gas Oil combustion consumption by public passenger transport,AR-E,SESCO,annual,kg,af18329c-9681-3293-9363-8a52c4a1dcfd -2010,Misiones,II.1.1,15.350999999999999,TJ,CO2,74100.0,kg/TJ,1137509.0999999999,Gas Oil combustion consumption by public passenger transport,AR-N,SESCO,annual,kg,66b872b5-e3a1-3a56-8469-a6d2b618a40c -2010,Misiones,II.1.1,15.350999999999999,TJ,CH4,3.9,kg/TJ,59.8689,Gas Oil combustion consumption by public passenger transport,AR-N,SESCO,annual,kg,2a04c13d-46d8-30e6-bd5b-c53fdd92711b -2010,Misiones,II.1.1,15.350999999999999,TJ,N2O,3.9,kg/TJ,59.8689,Gas Oil combustion consumption by public passenger transport,AR-N,SESCO,annual,kg,2a04c13d-46d8-30e6-bd5b-c53fdd92711b -2010,Tucuman,II.1.1,11.59452,TJ,CO2,74100.0,kg/TJ,859153.9319999999,Gas Oil combustion consumption by public passenger transport,AR-T,SESCO,annual,kg,238e11b1-e874-3167-8990-c5b9c406caa4 -2010,Tucuman,II.1.1,11.59452,TJ,CH4,3.9,kg/TJ,45.218627999999995,Gas Oil combustion consumption by public passenger transport,AR-T,SESCO,annual,kg,6b9244f1-56eb-3812-bb78-9c7dae655fe9 -2010,Tucuman,II.1.1,11.59452,TJ,N2O,3.9,kg/TJ,45.218627999999995,Gas Oil combustion consumption by public passenger transport,AR-T,SESCO,annual,kg,6b9244f1-56eb-3812-bb78-9c7dae655fe9 -2010,Buenos Aires,II.5.1,126.43219999999998,TJ,CO2,69300.0,kg/TJ,8761751.459999999,Motor Gasoline combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,f7444b8b-e738-31f2-80f5-37b9df0354d9 -2010,Buenos Aires,II.5.1,126.43219999999998,TJ,CH4,33.0,kg/TJ,4172.262599999999,Motor Gasoline combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,d91fb2e8-f3da-3c0f-9d6b-d3947bb78077 -2010,Buenos Aires,II.5.1,126.43219999999998,TJ,N2O,3.2,kg/TJ,404.58304,Motor Gasoline combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,3d9b535b-bd75-308b-ba63-0b57e1945b0c -2010,La Pampa,II.5.1,1.1518,TJ,CO2,69300.0,kg/TJ,79819.73999999999,Motor Gasoline combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,a0c545bb-6a9d-3241-bd7c-19ba2a61dfc1 -2010,La Pampa,II.5.1,1.1518,TJ,CH4,33.0,kg/TJ,38.0094,Motor Gasoline combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,1d9771a7-bc96-3308-a489-6c0159f30e60 -2010,La Pampa,II.5.1,1.1518,TJ,N2O,3.2,kg/TJ,3.68576,Motor Gasoline combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,80d93d03-4d5b-3f88-a303-35b2eec299da -2010,Salta,II.5.1,1.5505,TJ,CO2,69300.0,kg/TJ,107449.65,Motor Gasoline combustion consumption by agriculture machines,AR-A,SESCO,annual,kg,8e50bde7-ff78-349b-94f1-021db20ea052 -2010,Salta,II.5.1,1.5505,TJ,CH4,33.0,kg/TJ,51.1665,Motor Gasoline combustion consumption by agriculture machines,AR-A,SESCO,annual,kg,06e7fe2a-80f3-304e-bc04-85ae4849779e -2010,Salta,II.5.1,1.5505,TJ,N2O,3.2,kg/TJ,4.961600000000001,Motor Gasoline combustion consumption by agriculture machines,AR-A,SESCO,annual,kg,d2c6f7ec-dba4-30b2-ac89-d048809312cf -2010,Buenos Aires,II.5.1,3637.1034,TJ,CO2,74100.0,kg/TJ,269509361.94,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,3a396b8a-50fa-38d4-943a-135d39ed71bc -2010,Buenos Aires,II.5.1,3637.1034,TJ,CH4,3.9,kg/TJ,14184.70326,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,1907341e-1ae1-3c1c-9352-f6a02c72bcfe -2010,Buenos Aires,II.5.1,3637.1034,TJ,N2O,3.9,kg/TJ,14184.70326,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,1907341e-1ae1-3c1c-9352-f6a02c72bcfe -2010,Capital Federal,II.5.1,26.07864,TJ,CO2,74100.0,kg/TJ,1932427.224,Gas Oil combustion consumption by agriculture machines,AR-C,SESCO,annual,kg,d2ac4149-efed-344b-8181-208e311c26d3 -2010,Capital Federal,II.5.1,26.07864,TJ,CH4,3.9,kg/TJ,101.706696,Gas Oil combustion consumption by agriculture machines,AR-C,SESCO,annual,kg,a44317ca-5ad7-3db6-9ff0-55c5215fce90 -2010,Capital Federal,II.5.1,26.07864,TJ,N2O,3.9,kg/TJ,101.706696,Gas Oil combustion consumption by agriculture machines,AR-C,SESCO,annual,kg,a44317ca-5ad7-3db6-9ff0-55c5215fce90 -2010,Chaco,II.5.1,90.5174424,TJ,CO2,74100.0,kg/TJ,6707342.48184,Gas Oil combustion consumption by agriculture machines,AR-H,SESCO,annual,kg,885c1aa9-c1c8-3144-ab6d-e5d40b3ee0ac -2010,Chaco,II.5.1,90.5174424,TJ,CH4,3.9,kg/TJ,353.01802535999997,Gas Oil combustion consumption by agriculture machines,AR-H,SESCO,annual,kg,1cdf3724-4cb3-320f-922a-81fe81ea820e -2010,Chaco,II.5.1,90.5174424,TJ,N2O,3.9,kg/TJ,353.01802535999997,Gas Oil combustion consumption by agriculture machines,AR-H,SESCO,annual,kg,1cdf3724-4cb3-320f-922a-81fe81ea820e -2010,Corrientes,II.5.1,52.471523999999995,TJ,CO2,74100.0,kg/TJ,3888139.9283999996,Gas Oil combustion consumption by agriculture machines,AR-W,SESCO,annual,kg,22783fb8-3105-3f29-9ec2-b599e54578e5 -2010,Corrientes,II.5.1,52.471523999999995,TJ,CH4,3.9,kg/TJ,204.63894359999998,Gas Oil combustion consumption by agriculture machines,AR-W,SESCO,annual,kg,e3263453-8259-3d35-bdfd-b4c420f919b0 -2010,Corrientes,II.5.1,52.471523999999995,TJ,N2O,3.9,kg/TJ,204.63894359999998,Gas Oil combustion consumption by agriculture machines,AR-W,SESCO,annual,kg,e3263453-8259-3d35-bdfd-b4c420f919b0 -2010,Córdoba,II.5.1,1267.34244,TJ,CO2,74100.0,kg/TJ,93910074.80399999,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,bd5514dd-0291-3332-930b-6f0e046b6514 -2010,Córdoba,II.5.1,1267.34244,TJ,CH4,3.9,kg/TJ,4942.635515999999,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,d2e1239c-1f84-32c5-8b56-1f2cd9e1f951 -2010,Córdoba,II.5.1,1267.34244,TJ,N2O,3.9,kg/TJ,4942.635515999999,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,d2e1239c-1f84-32c5-8b56-1f2cd9e1f951 -2010,Entre Rios,II.5.1,1100.1790799999999,TJ,CO2,74100.0,kg/TJ,81523269.828,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,861383f7-eb63-3bd0-8e91-1a742d5ff347 -2010,Entre Rios,II.5.1,1100.1790799999999,TJ,CH4,3.9,kg/TJ,4290.698412,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,e676b899-f276-34fc-9a14-c2b37d026321 -2010,Entre Rios,II.5.1,1100.1790799999999,TJ,N2O,3.9,kg/TJ,4290.698412,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,e676b899-f276-34fc-9a14-c2b37d026321 -2010,Formosa,II.5.1,10.04136,TJ,CO2,74100.0,kg/TJ,744064.776,Gas Oil combustion consumption by agriculture machines,AR-P,SESCO,annual,kg,7fcb18b0-f730-3440-bb55-e7b608b14566 -2010,Formosa,II.5.1,10.04136,TJ,CH4,3.9,kg/TJ,39.161303999999994,Gas Oil combustion consumption by agriculture machines,AR-P,SESCO,annual,kg,555cd33a-2efd-38e6-bd0d-e07e6df05a9b -2010,Formosa,II.5.1,10.04136,TJ,N2O,3.9,kg/TJ,39.161303999999994,Gas Oil combustion consumption by agriculture machines,AR-P,SESCO,annual,kg,555cd33a-2efd-38e6-bd0d-e07e6df05a9b -2010,Jujuy,II.5.1,573.33276,TJ,CO2,74100.0,kg/TJ,42483957.516,Gas Oil combustion consumption by agriculture machines,AR-Y,SESCO,annual,kg,7a5a51f1-5122-3a2a-8666-333e9944eaa9 -2010,Jujuy,II.5.1,573.33276,TJ,CH4,3.9,kg/TJ,2235.997764,Gas Oil combustion consumption by agriculture machines,AR-Y,SESCO,annual,kg,c6cbf47a-8771-399b-b4e1-52824c382f1a -2010,Jujuy,II.5.1,573.33276,TJ,N2O,3.9,kg/TJ,2235.997764,Gas Oil combustion consumption by agriculture machines,AR-Y,SESCO,annual,kg,c6cbf47a-8771-399b-b4e1-52824c382f1a -2010,La Pampa,II.5.1,178.97459999999998,TJ,CO2,74100.0,kg/TJ,13262017.86,Gas Oil combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,93c44282-7dbf-3114-823f-89446f4c86fc -2010,La Pampa,II.5.1,178.97459999999998,TJ,CH4,3.9,kg/TJ,698.0009399999999,Gas Oil combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,bb2a9cbf-31d0-3173-af0d-74dc28fb1ef7 -2010,La Pampa,II.5.1,178.97459999999998,TJ,N2O,3.9,kg/TJ,698.0009399999999,Gas Oil combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,bb2a9cbf-31d0-3173-af0d-74dc28fb1ef7 -2010,Mendoza,II.5.1,19.514913599999996,TJ,CO2,74100.0,kg/TJ,1446055.0977599998,Gas Oil combustion consumption by agriculture machines,AR-M,SESCO,annual,kg,89b7529e-989e-3eee-a987-55a61b60ae4b -2010,Mendoza,II.5.1,19.514913599999996,TJ,CH4,3.9,kg/TJ,76.10816303999998,Gas Oil combustion consumption by agriculture machines,AR-M,SESCO,annual,kg,e34cb897-405a-3621-93f8-174a92871bd0 -2010,Mendoza,II.5.1,19.514913599999996,TJ,N2O,3.9,kg/TJ,76.10816303999998,Gas Oil combustion consumption by agriculture machines,AR-M,SESCO,annual,kg,e34cb897-405a-3621-93f8-174a92871bd0 -2010,Misiones,II.5.1,13.40052,TJ,CO2,74100.0,kg/TJ,992978.532,Gas Oil combustion consumption by agriculture machines,AR-N,SESCO,annual,kg,7fee873a-b5ac-34d1-951a-8402b07cc640 -2010,Misiones,II.5.1,13.40052,TJ,CH4,3.9,kg/TJ,52.262028,Gas Oil combustion consumption by agriculture machines,AR-N,SESCO,annual,kg,07d4be11-b728-3af5-a949-6ae76f1e2351 -2010,Misiones,II.5.1,13.40052,TJ,N2O,3.9,kg/TJ,52.262028,Gas Oil combustion consumption by agriculture machines,AR-N,SESCO,annual,kg,07d4be11-b728-3af5-a949-6ae76f1e2351 -2010,Neuquén,II.5.1,5.345759999999999,TJ,CO2,74100.0,kg/TJ,396120.81599999993,Gas Oil combustion consumption by agriculture machines,AR-Q,SESCO,annual,kg,cced7c52-3265-303e-a92d-fa8dc8b6b4bc -2010,Neuquén,II.5.1,5.345759999999999,TJ,CH4,3.9,kg/TJ,20.848463999999996,Gas Oil combustion consumption by agriculture machines,AR-Q,SESCO,annual,kg,023ce143-1083-3272-b44d-c056ee262b84 -2010,Neuquén,II.5.1,5.345759999999999,TJ,N2O,3.9,kg/TJ,20.848463999999996,Gas Oil combustion consumption by agriculture machines,AR-Q,SESCO,annual,kg,023ce143-1083-3272-b44d-c056ee262b84 -2010,Rio Negro,II.5.1,21.094079999999998,TJ,CO2,74100.0,kg/TJ,1563071.328,Gas Oil combustion consumption by agriculture machines,AR-R,SESCO,annual,kg,e6e2b45a-2a8e-3b54-9f36-a1b2f3ca8052 -2010,Rio Negro,II.5.1,21.094079999999998,TJ,CH4,3.9,kg/TJ,82.26691199999999,Gas Oil combustion consumption by agriculture machines,AR-R,SESCO,annual,kg,37a78e89-7e18-3f58-8002-18659fcd831f -2010,Rio Negro,II.5.1,21.094079999999998,TJ,N2O,3.9,kg/TJ,82.26691199999999,Gas Oil combustion consumption by agriculture machines,AR-R,SESCO,annual,kg,37a78e89-7e18-3f58-8002-18659fcd831f -2010,Salta,II.5.1,303.80532,TJ,CO2,74100.0,kg/TJ,22511974.212,Gas Oil combustion consumption by agriculture machines,AR-A,SESCO,annual,kg,4f6f459c-6fba-36e0-b92d-eaf00a8c9ad4 -2010,Salta,II.5.1,303.80532,TJ,CH4,3.9,kg/TJ,1184.8407479999998,Gas Oil combustion consumption by agriculture machines,AR-A,SESCO,annual,kg,55ec696e-a0b8-3907-8c56-f6fe1c63efe4 -2010,Salta,II.5.1,303.80532,TJ,N2O,3.9,kg/TJ,1184.8407479999998,Gas Oil combustion consumption by agriculture machines,AR-A,SESCO,annual,kg,55ec696e-a0b8-3907-8c56-f6fe1c63efe4 -2010,San Juan,II.5.1,9.860759999999999,TJ,CO2,74100.0,kg/TJ,730682.3159999999,Gas Oil combustion consumption by agriculture machines,AR-J,SESCO,annual,kg,e9694837-862a-3ee2-bf6b-265d21d34834 -2010,San Juan,II.5.1,9.860759999999999,TJ,CH4,3.9,kg/TJ,38.45696399999999,Gas Oil combustion consumption by agriculture machines,AR-J,SESCO,annual,kg,1d14f153-ba52-3379-934b-003e152d6455 -2010,San Juan,II.5.1,9.860759999999999,TJ,N2O,3.9,kg/TJ,38.45696399999999,Gas Oil combustion consumption by agriculture machines,AR-J,SESCO,annual,kg,1d14f153-ba52-3379-934b-003e152d6455 -2010,San Luis,II.5.1,19.360319999999998,TJ,CO2,74100.0,kg/TJ,1434599.7119999998,Gas Oil combustion consumption by agriculture machines,AR-D,SESCO,annual,kg,4a0d4e98-a4f5-3455-92b2-78d65752a30e -2010,San Luis,II.5.1,19.360319999999998,TJ,CH4,3.9,kg/TJ,75.505248,Gas Oil combustion consumption by agriculture machines,AR-D,SESCO,annual,kg,8f7e85b7-b9b3-3d17-ae9f-cb3f9e0f6a9c -2010,San Luis,II.5.1,19.360319999999998,TJ,N2O,3.9,kg/TJ,75.505248,Gas Oil combustion consumption by agriculture machines,AR-D,SESCO,annual,kg,8f7e85b7-b9b3-3d17-ae9f-cb3f9e0f6a9c -2010,Santa Fe,II.5.1,1769.0492399999998,TJ,CO2,74100.0,kg/TJ,131086548.68399999,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,ffc0f159-5ca9-3805-a2cd-1592227a317f -2010,Santa Fe,II.5.1,1769.0492399999998,TJ,CH4,3.9,kg/TJ,6899.292035999999,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,99c50f5e-451a-3860-92a3-06637ee346e6 -2010,Santa Fe,II.5.1,1769.0492399999998,TJ,N2O,3.9,kg/TJ,6899.292035999999,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,99c50f5e-451a-3860-92a3-06637ee346e6 -2010,Santiago del Estero,II.5.1,106.554,TJ,CO2,74100.0,kg/TJ,7895651.4,Gas Oil combustion consumption by agriculture machines,AR-G,SESCO,annual,kg,99257d5f-5be2-3dd7-bc68-8d0db4462160 -2010,Santiago del Estero,II.5.1,106.554,TJ,CH4,3.9,kg/TJ,415.5606,Gas Oil combustion consumption by agriculture machines,AR-G,SESCO,annual,kg,621060b9-1e5e-30d3-939d-f2d268432108 -2010,Santiago del Estero,II.5.1,106.554,TJ,N2O,3.9,kg/TJ,415.5606,Gas Oil combustion consumption by agriculture machines,AR-G,SESCO,annual,kg,621060b9-1e5e-30d3-939d-f2d268432108 -2010,Tierra del Fuego,II.5.1,26.94552,TJ,CO2,74100.0,kg/TJ,1996663.032,Gas Oil combustion consumption by agriculture machines,AR-V,SESCO,annual,kg,2fe21338-fb7a-3211-aaf6-e151029ac6d2 -2010,Tierra del Fuego,II.5.1,26.94552,TJ,CH4,3.9,kg/TJ,105.08752799999999,Gas Oil combustion consumption by agriculture machines,AR-V,SESCO,annual,kg,ed82dd21-1e75-3e3d-a444-01160705c869 -2010,Tierra del Fuego,II.5.1,26.94552,TJ,N2O,3.9,kg/TJ,105.08752799999999,Gas Oil combustion consumption by agriculture machines,AR-V,SESCO,annual,kg,ed82dd21-1e75-3e3d-a444-01160705c869 -2010,Tucuman,II.5.1,171.46164,TJ,CO2,74100.0,kg/TJ,12705307.523999998,Gas Oil combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,9518847e-61d9-36ca-97a8-bf1f56dae699 -2010,Tucuman,II.5.1,171.46164,TJ,CH4,3.9,kg/TJ,668.700396,Gas Oil combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,a47be1ca-2b1f-3cb2-8cad-bb6c4d18bec1 -2010,Tucuman,II.5.1,171.46164,TJ,N2O,3.9,kg/TJ,668.700396,Gas Oil combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,a47be1ca-2b1f-3cb2-8cad-bb6c4d18bec1 -2010,Buenos Aires,II.5.1,0.5418,TJ,CO2,74100.0,kg/TJ,40147.38,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,0606044e-b345-31e6-9582-d5cbfc0a34c0 -2010,Buenos Aires,II.5.1,0.5418,TJ,CH4,3.9,kg/TJ,2.1130199999999997,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,8c22cee4-1a1f-312c-82c6-21032fdd7e86 -2010,Buenos Aires,II.5.1,0.5418,TJ,N2O,3.9,kg/TJ,2.1130199999999997,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,8c22cee4-1a1f-312c-82c6-21032fdd7e86 -2010,Santiago del Estero,II.5.1,1.37256,TJ,CO2,74100.0,kg/TJ,101706.696,Gas Oil combustion consumption by agriculture machines,AR-G,SESCO,annual,kg,cdeae499-7d51-3011-beee-012daa1032dc -2010,Santiago del Estero,II.5.1,1.37256,TJ,CH4,3.9,kg/TJ,5.352984,Gas Oil combustion consumption by agriculture machines,AR-G,SESCO,annual,kg,13c2d3bd-081b-37ce-88ac-60a1745599ca -2010,Santiago del Estero,II.5.1,1.37256,TJ,N2O,3.9,kg/TJ,5.352984,Gas Oil combustion consumption by agriculture machines,AR-G,SESCO,annual,kg,13c2d3bd-081b-37ce-88ac-60a1745599ca -2010,Buenos Aires,II.5.1,16.921713999999998,TJ,CO2,71500.0,kg/TJ,1209902.5509999997,Jet Kerosene combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,3e51841f-b89e-35db-a1c6-0555118ff560 -2010,Buenos Aires,II.5.1,16.921713999999998,TJ,CH4,0.5,kg/TJ,8.460856999999999,Jet Kerosene combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,d170dcda-7a61-3662-bdf3-608cca1dba36 -2010,Buenos Aires,II.5.1,16.921713999999998,TJ,N2O,2.0,kg/TJ,33.843427999999996,Jet Kerosene combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,e54079ea-c75c-364f-b425-578a64473519 -2010,Chubut,II.5.1,0.31453,TJ,CO2,71500.0,kg/TJ,22488.894999999997,Jet Kerosene combustion consumption by agriculture machines,AR-U,SESCO,annual,kg,a8463086-0191-3923-a161-ef690f18e95c -2010,Chubut,II.5.1,0.31453,TJ,CH4,0.5,kg/TJ,0.157265,Jet Kerosene combustion consumption by agriculture machines,AR-U,SESCO,annual,kg,da91a37c-277a-3b98-a7d7-9e8dfee68afa -2010,Chubut,II.5.1,0.31453,TJ,N2O,2.0,kg/TJ,0.62906,Jet Kerosene combustion consumption by agriculture machines,AR-U,SESCO,annual,kg,a3bab00b-4093-3f29-9cfe-6949391cbac4 -2010,Córdoba,II.5.1,1.0064959999999998,TJ,CO2,71500.0,kg/TJ,71964.46399999999,Jet Kerosene combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,b1fdfe89-3a5f-30d1-830c-a23346655eec -2010,Córdoba,II.5.1,1.0064959999999998,TJ,CH4,0.5,kg/TJ,0.5032479999999999,Jet Kerosene combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,4a505f02-abd5-35d4-a751-9d58fbb05ebd -2010,Córdoba,II.5.1,1.0064959999999998,TJ,N2O,2.0,kg/TJ,2.0129919999999997,Jet Kerosene combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,73ab0400-df58-3843-aa7f-44a8cecc4cc3 -2010,Entre Rios,II.5.1,0.25162399999999996,TJ,CO2,71500.0,kg/TJ,17991.115999999998,Jet Kerosene combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,c247d568-d08f-34e4-a0ba-d36c112f6006 -2010,Entre Rios,II.5.1,0.25162399999999996,TJ,CH4,0.5,kg/TJ,0.12581199999999998,Jet Kerosene combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,aac76367-1829-3b9f-993d-5226ea127951 -2010,Entre Rios,II.5.1,0.25162399999999996,TJ,N2O,2.0,kg/TJ,0.5032479999999999,Jet Kerosene combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,0fc0f7c0-95fb-373d-a5e2-370892b16287 -2010,La Pampa,II.5.1,1.541197,TJ,CO2,71500.0,kg/TJ,110195.5855,Jet Kerosene combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,d5b1dcdc-b088-31bf-b848-f24d821ab9e9 -2010,La Pampa,II.5.1,1.541197,TJ,CH4,0.5,kg/TJ,0.7705985,Jet Kerosene combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,4e364074-0057-3484-b53c-45b9f0413bd4 -2010,La Pampa,II.5.1,1.541197,TJ,N2O,2.0,kg/TJ,3.082394,Jet Kerosene combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,8283b490-76a6-3976-b376-52b2572f5667 -2010,Santa Fe,II.5.1,4.780856,TJ,CO2,71500.0,kg/TJ,341831.204,Jet Kerosene combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,f480d329-9beb-3b37-824c-5cc3acc9cd32 -2010,Santa Fe,II.5.1,4.780856,TJ,CH4,0.5,kg/TJ,2.390428,Jet Kerosene combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,90943418-2fc7-3489-a4a2-b05034f4e415 -2010,Santa Fe,II.5.1,4.780856,TJ,N2O,2.0,kg/TJ,9.561712,Jet Kerosene combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,a222b56c-bda8-3830-99d2-f9545fc194f8 -2010,Buenos Aires,II.5.1,1.9873699999999999,TJ,CO2,73300.0,kg/TJ,145674.221,Naphtha combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,64d2ef75-c1a5-3112-908f-13c83ef3ce70 -2010,Buenos Aires,II.5.1,1.9873699999999999,TJ,CH4,0.5,kg/TJ,0.9936849999999999,Naphtha combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,adf03671-b397-3451-9629-ae69fc118ad5 -2010,Buenos Aires,II.5.1,1.9873699999999999,TJ,N2O,2.0,kg/TJ,3.9747399999999997,Naphtha combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,01711b92-2a1b-3d0c-b4f7-86792b52ba72 -2010,Entre Rios,II.5.1,1.130745,TJ,CO2,73300.0,kg/TJ,82883.60849999999,Naphtha combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,6a9d1b8d-3317-302b-ae3a-590a59ca77eb -2010,Entre Rios,II.5.1,1.130745,TJ,CH4,0.5,kg/TJ,0.5653725,Naphtha combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,4717db0e-2f07-3ed3-a32d-0dfcd82c84c3 -2010,Entre Rios,II.5.1,1.130745,TJ,N2O,2.0,kg/TJ,2.26149,Naphtha combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,bf1c4d94-bc0a-3edf-8390-dab7f007d660 -2010,Santa Fe,II.5.1,21.278565,TJ,CO2,73300.0,kg/TJ,1559718.8145,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,decad2ef-b9d7-3c0d-a8f1-559afbc3038d -2010,Santa Fe,II.5.1,21.278565,TJ,CH4,0.5,kg/TJ,10.6392825,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,18094234-7055-3310-b324-3c63dd85e5d7 -2010,Santa Fe,II.5.1,21.278565,TJ,N2O,2.0,kg/TJ,42.55713,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,0b2ff9db-4d20-34f2-b27d-5da2b2018a73 -2010,Santiago del Estero,II.5.1,0.513975,TJ,CO2,73300.0,kg/TJ,37674.3675,Naphtha combustion consumption by agriculture machines,AR-G,SESCO,annual,kg,84cee769-a2ee-3f2c-a6f0-32b62fb58842 -2010,Santiago del Estero,II.5.1,0.513975,TJ,CH4,0.5,kg/TJ,0.2569875,Naphtha combustion consumption by agriculture machines,AR-G,SESCO,annual,kg,78a615c7-70e0-3f51-b11a-539378873164 -2010,Santiago del Estero,II.5.1,0.513975,TJ,N2O,2.0,kg/TJ,1.02795,Naphtha combustion consumption by agriculture machines,AR-G,SESCO,annual,kg,1d19bb97-f467-32d4-b289-a79638f07507 -2010,Buenos Aires,II.5.1,0.171325,TJ,CO2,73300.0,kg/TJ,12558.1225,Naphtha combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,8cc46ddd-7b28-3efc-ad05-e410621c7e69 -2010,Buenos Aires,II.5.1,0.171325,TJ,CH4,0.5,kg/TJ,0.0856625,Naphtha combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,0f8bbfb3-e710-3fa6-acd5-0458723fbe21 -2010,Buenos Aires,II.5.1,0.171325,TJ,N2O,2.0,kg/TJ,0.34265,Naphtha combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,52c1e932-ac9b-3c09-a179-c4f359c6896d -2010,Entre Rios,II.5.1,0.23985499999999998,TJ,CO2,73300.0,kg/TJ,17581.371499999997,Naphtha combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,a08b5be5-1b5a-3c6b-a46d-063f59db8d7d -2010,Entre Rios,II.5.1,0.23985499999999998,TJ,CH4,0.5,kg/TJ,0.11992749999999999,Naphtha combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,b0d45100-c3aa-3247-aaa6-3e93f279bcb7 -2010,Entre Rios,II.5.1,0.23985499999999998,TJ,N2O,2.0,kg/TJ,0.47970999999999997,Naphtha combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,3eb02623-3729-35b4-96cd-37ffbb50b50c -2010,Santa Fe,II.5.1,2.158695,TJ,CO2,73300.0,kg/TJ,158232.3435,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,c29267be-029f-3665-af7f-2a42e8a918b7 -2010,Santa Fe,II.5.1,2.158695,TJ,CH4,0.5,kg/TJ,1.0793475,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,9aa50557-5af5-3c01-a5b1-bb3110cc6521 -2010,Santa Fe,II.5.1,2.158695,TJ,N2O,2.0,kg/TJ,4.31739,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,63314c2d-a2a2-3dbc-a9d4-ad05b5e49db8 -2010,Buenos Aires,II.1.1,10.9421,TJ,CO2,69300.0,kg/TJ,758287.53,Motor Gasoline combustion consumption by freight transport,AR-B,SESCO,annual,kg,596a50b4-b363-3acc-ae8e-a612d99779ed -2010,Buenos Aires,II.1.1,10.9421,TJ,CH4,33.0,kg/TJ,361.0893,Motor Gasoline combustion consumption by freight transport,AR-B,SESCO,annual,kg,910db66d-5283-3733-87bf-bfe08ab618ba -2010,Buenos Aires,II.1.1,10.9421,TJ,N2O,3.2,kg/TJ,35.014720000000004,Motor Gasoline combustion consumption by freight transport,AR-B,SESCO,annual,kg,8ce0b643-d7ad-379f-9f9d-d18ceb948323 -2010,Buenos Aires,II.1.1,9295.26528,TJ,CO2,74100.0,kg/TJ,688779157.248,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,e638da2c-0ad2-30e6-b865-daac95c6165a -2010,Buenos Aires,II.1.1,9295.26528,TJ,CH4,3.9,kg/TJ,36251.534591999996,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,e347bcc3-ea6b-3496-a0e7-829c39d49638 -2010,Buenos Aires,II.1.1,9295.26528,TJ,N2O,3.9,kg/TJ,36251.534591999996,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,e347bcc3-ea6b-3496-a0e7-829c39d49638 -2010,Capital Federal,II.1.1,770.0061599999999,TJ,CO2,74100.0,kg/TJ,57057456.45599999,Gas Oil combustion consumption by freight transport,AR-C,SESCO,annual,kg,96c9091b-d958-3df2-96f9-4db0069aa5d0 -2010,Capital Federal,II.1.1,770.0061599999999,TJ,CH4,3.9,kg/TJ,3003.0240239999994,Gas Oil combustion consumption by freight transport,AR-C,SESCO,annual,kg,d027ed1e-c3ce-3c21-9030-b829a6ed5c4f -2010,Capital Federal,II.1.1,770.0061599999999,TJ,N2O,3.9,kg/TJ,3003.0240239999994,Gas Oil combustion consumption by freight transport,AR-C,SESCO,annual,kg,d027ed1e-c3ce-3c21-9030-b829a6ed5c4f -2010,Catamarca,II.1.1,33.30264,TJ,CO2,74100.0,kg/TJ,2467725.624,Gas Oil combustion consumption by freight transport,AR-K,SESCO,annual,kg,f2bf0ecb-adb6-311c-8e94-20e1531ec732 -2010,Catamarca,II.1.1,33.30264,TJ,CH4,3.9,kg/TJ,129.880296,Gas Oil combustion consumption by freight transport,AR-K,SESCO,annual,kg,362cd3b9-dd7b-3535-87fc-b868522d7371 -2010,Catamarca,II.1.1,33.30264,TJ,N2O,3.9,kg/TJ,129.880296,Gas Oil combustion consumption by freight transport,AR-K,SESCO,annual,kg,362cd3b9-dd7b-3535-87fc-b868522d7371 -2010,Chaco,II.1.1,265.01243999999997,TJ,CO2,74100.0,kg/TJ,19637421.803999998,Gas Oil combustion consumption by freight transport,AR-H,SESCO,annual,kg,8dcf0e13-7a3f-3a1f-886c-130e35a6c975 -2010,Chaco,II.1.1,265.01243999999997,TJ,CH4,3.9,kg/TJ,1033.5485159999998,Gas Oil combustion consumption by freight transport,AR-H,SESCO,annual,kg,400b2d62-e482-3271-b033-51dec5ebf4e8 -2010,Chaco,II.1.1,265.01243999999997,TJ,N2O,3.9,kg/TJ,1033.5485159999998,Gas Oil combustion consumption by freight transport,AR-H,SESCO,annual,kg,400b2d62-e482-3271-b033-51dec5ebf4e8 -2010,Chubut,II.1.1,371.8554,TJ,CO2,74100.0,kg/TJ,27554485.139999997,Gas Oil combustion consumption by freight transport,AR-U,SESCO,annual,kg,4e8e6352-133b-36b3-8183-848f4a8a1e58 -2010,Chubut,II.1.1,371.8554,TJ,CH4,3.9,kg/TJ,1450.23606,Gas Oil combustion consumption by freight transport,AR-U,SESCO,annual,kg,7889a208-0379-392b-8d94-b0da352ba204 -2010,Chubut,II.1.1,371.8554,TJ,N2O,3.9,kg/TJ,1450.23606,Gas Oil combustion consumption by freight transport,AR-U,SESCO,annual,kg,7889a208-0379-392b-8d94-b0da352ba204 -2010,Corrientes,II.1.1,392.40767999999997,TJ,CO2,74100.0,kg/TJ,29077409.088,Gas Oil combustion consumption by freight transport,AR-W,SESCO,annual,kg,6fd4d2f1-84a2-358e-a7d1-51a1d641fa5e -2010,Corrientes,II.1.1,392.40767999999997,TJ,CH4,3.9,kg/TJ,1530.3899519999998,Gas Oil combustion consumption by freight transport,AR-W,SESCO,annual,kg,ef4a3df0-bb0c-35ec-ae90-ae17196b1165 -2010,Corrientes,II.1.1,392.40767999999997,TJ,N2O,3.9,kg/TJ,1530.3899519999998,Gas Oil combustion consumption by freight transport,AR-W,SESCO,annual,kg,ef4a3df0-bb0c-35ec-ae90-ae17196b1165 -2010,Córdoba,II.1.1,2138.8458,TJ,CO2,74100.0,kg/TJ,158488473.78,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,abe03600-779a-371f-a8d3-83ebcdbfbac7 -2010,Córdoba,II.1.1,2138.8458,TJ,CH4,3.9,kg/TJ,8341.49862,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,b5506e9c-e379-3ed6-a016-0ffe2be6f10f -2010,Córdoba,II.1.1,2138.8458,TJ,N2O,3.9,kg/TJ,8341.49862,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,b5506e9c-e379-3ed6-a016-0ffe2be6f10f -2010,Entre Rios,II.1.1,307.30896,TJ,CO2,74100.0,kg/TJ,22771593.936,Gas Oil combustion consumption by freight transport,AR-E,SESCO,annual,kg,6fe92f62-98e7-3a58-8976-b377e8fa0c85 -2010,Entre Rios,II.1.1,307.30896,TJ,CH4,3.9,kg/TJ,1198.504944,Gas Oil combustion consumption by freight transport,AR-E,SESCO,annual,kg,5075ae2b-a979-3555-9b16-3d558ee03402 -2010,Entre Rios,II.1.1,307.30896,TJ,N2O,3.9,kg/TJ,1198.504944,Gas Oil combustion consumption by freight transport,AR-E,SESCO,annual,kg,5075ae2b-a979-3555-9b16-3d558ee03402 -2010,Formosa,II.1.1,38.90124,TJ,CO2,74100.0,kg/TJ,2882581.884,Gas Oil combustion consumption by freight transport,AR-P,SESCO,annual,kg,d616d053-4f25-332c-955c-83e24774dc4f -2010,Formosa,II.1.1,38.90124,TJ,CH4,3.9,kg/TJ,151.714836,Gas Oil combustion consumption by freight transport,AR-P,SESCO,annual,kg,1a4127e3-cc4a-3363-bbfd-72c0d6f76765 -2010,Formosa,II.1.1,38.90124,TJ,N2O,3.9,kg/TJ,151.714836,Gas Oil combustion consumption by freight transport,AR-P,SESCO,annual,kg,1a4127e3-cc4a-3363-bbfd-72c0d6f76765 -2010,Jujuy,II.1.1,101.56944,TJ,CO2,74100.0,kg/TJ,7526295.504,Gas Oil combustion consumption by freight transport,AR-Y,SESCO,annual,kg,db73513f-3c06-3f14-abfa-ef9d2fda7738 -2010,Jujuy,II.1.1,101.56944,TJ,CH4,3.9,kg/TJ,396.120816,Gas Oil combustion consumption by freight transport,AR-Y,SESCO,annual,kg,fa9d81db-e737-314d-81dc-3601fcb47df9 -2010,Jujuy,II.1.1,101.56944,TJ,N2O,3.9,kg/TJ,396.120816,Gas Oil combustion consumption by freight transport,AR-Y,SESCO,annual,kg,fa9d81db-e737-314d-81dc-3601fcb47df9 -2010,La Pampa,II.1.1,281.77212,TJ,CO2,74100.0,kg/TJ,20879314.091999996,Gas Oil combustion consumption by freight transport,AR-L,SESCO,annual,kg,99040028-52d5-3b9f-897e-83910512435d -2010,La Pampa,II.1.1,281.77212,TJ,CH4,3.9,kg/TJ,1098.9112679999998,Gas Oil combustion consumption by freight transport,AR-L,SESCO,annual,kg,75ee3031-2575-36d7-be6f-a1c51b47cde7 -2010,La Pampa,II.1.1,281.77212,TJ,N2O,3.9,kg/TJ,1098.9112679999998,Gas Oil combustion consumption by freight transport,AR-L,SESCO,annual,kg,75ee3031-2575-36d7-be6f-a1c51b47cde7 -2010,La Rioja,II.1.1,53.92716,TJ,CO2,74100.0,kg/TJ,3996002.556,Gas Oil combustion consumption by freight transport,AR-F,SESCO,annual,kg,34727a41-76d3-3a75-a5e1-9e044c0cd979 -2010,La Rioja,II.1.1,53.92716,TJ,CH4,3.9,kg/TJ,210.315924,Gas Oil combustion consumption by freight transport,AR-F,SESCO,annual,kg,be32681f-8586-33ac-b412-7f14e79060a5 -2010,La Rioja,II.1.1,53.92716,TJ,N2O,3.9,kg/TJ,210.315924,Gas Oil combustion consumption by freight transport,AR-F,SESCO,annual,kg,be32681f-8586-33ac-b412-7f14e79060a5 -2010,Mendoza,II.1.1,1168.2291599999999,TJ,CO2,74100.0,kg/TJ,86565780.756,Gas Oil combustion consumption by freight transport,AR-M,SESCO,annual,kg,85051099-6506-3134-8dc4-8b13bcbda9fa -2010,Mendoza,II.1.1,1168.2291599999999,TJ,CH4,3.9,kg/TJ,4556.093723999999,Gas Oil combustion consumption by freight transport,AR-M,SESCO,annual,kg,7e7488e6-7172-32d5-846b-99fca5b4cb97 -2010,Mendoza,II.1.1,1168.2291599999999,TJ,N2O,3.9,kg/TJ,4556.093723999999,Gas Oil combustion consumption by freight transport,AR-M,SESCO,annual,kg,7e7488e6-7172-32d5-846b-99fca5b4cb97 -2010,Misiones,II.1.1,229.21751999999998,TJ,CO2,74100.0,kg/TJ,16985018.231999997,Gas Oil combustion consumption by freight transport,AR-N,SESCO,annual,kg,782d229b-2296-3b5a-9092-bca701715173 -2010,Misiones,II.1.1,229.21751999999998,TJ,CH4,3.9,kg/TJ,893.948328,Gas Oil combustion consumption by freight transport,AR-N,SESCO,annual,kg,8fa8b9e8-6226-3611-8a7c-ba4552a40b55 -2010,Misiones,II.1.1,229.21751999999998,TJ,N2O,3.9,kg/TJ,893.948328,Gas Oil combustion consumption by freight transport,AR-N,SESCO,annual,kg,8fa8b9e8-6226-3611-8a7c-ba4552a40b55 -2010,Neuquén,II.1.1,488.66747999999995,TJ,CO2,74100.0,kg/TJ,36210260.268,Gas Oil combustion consumption by freight transport,AR-Q,SESCO,annual,kg,b6ac07a9-c65a-3f29-b672-5f770db9897a -2010,Neuquén,II.1.1,488.66747999999995,TJ,CH4,3.9,kg/TJ,1905.8031719999997,Gas Oil combustion consumption by freight transport,AR-Q,SESCO,annual,kg,a3442fff-a660-33f4-9f54-3419f9ee848a -2010,Neuquén,II.1.1,488.66747999999995,TJ,N2O,3.9,kg/TJ,1905.8031719999997,Gas Oil combustion consumption by freight transport,AR-Q,SESCO,annual,kg,a3442fff-a660-33f4-9f54-3419f9ee848a -2010,Rio Negro,II.1.1,207.90671999999998,TJ,CO2,74100.0,kg/TJ,15405887.951999998,Gas Oil combustion consumption by freight transport,AR-R,SESCO,annual,kg,380e4365-5ca7-3d89-929d-8445b76f52b9 -2010,Rio Negro,II.1.1,207.90671999999998,TJ,CH4,3.9,kg/TJ,810.8362079999999,Gas Oil combustion consumption by freight transport,AR-R,SESCO,annual,kg,0988e8c1-afd3-32c6-9a70-2909593e0b24 -2010,Rio Negro,II.1.1,207.90671999999998,TJ,N2O,3.9,kg/TJ,810.8362079999999,Gas Oil combustion consumption by freight transport,AR-R,SESCO,annual,kg,0988e8c1-afd3-32c6-9a70-2909593e0b24 -2010,Salta,II.1.1,395.18892,TJ,CO2,74100.0,kg/TJ,29283498.972,Gas Oil combustion consumption by freight transport,AR-A,SESCO,annual,kg,88a36a28-0450-316a-b6a2-de6763472ec6 -2010,Salta,II.1.1,395.18892,TJ,CH4,3.9,kg/TJ,1541.236788,Gas Oil combustion consumption by freight transport,AR-A,SESCO,annual,kg,4cb754af-7003-358c-908d-c2329cac2540 -2010,Salta,II.1.1,395.18892,TJ,N2O,3.9,kg/TJ,1541.236788,Gas Oil combustion consumption by freight transport,AR-A,SESCO,annual,kg,4cb754af-7003-358c-908d-c2329cac2540 -2010,San Juan,II.1.1,80.07804,TJ,CO2,74100.0,kg/TJ,5933782.764,Gas Oil combustion consumption by freight transport,AR-J,SESCO,annual,kg,5b2ed6a4-fc1c-3741-a533-ae6814131696 -2010,San Juan,II.1.1,80.07804,TJ,CH4,3.9,kg/TJ,312.304356,Gas Oil combustion consumption by freight transport,AR-J,SESCO,annual,kg,b3607e36-5224-30b7-8f38-9af8f594b444 -2010,San Juan,II.1.1,80.07804,TJ,N2O,3.9,kg/TJ,312.304356,Gas Oil combustion consumption by freight transport,AR-J,SESCO,annual,kg,b3607e36-5224-30b7-8f38-9af8f594b444 -2010,San Luis,II.1.1,473.38872,TJ,CO2,74100.0,kg/TJ,35078104.151999995,Gas Oil combustion consumption by freight transport,AR-D,SESCO,annual,kg,b8d3caeb-3f31-3ebb-93d7-43b0eed82dce -2010,San Luis,II.1.1,473.38872,TJ,CH4,3.9,kg/TJ,1846.2160079999999,Gas Oil combustion consumption by freight transport,AR-D,SESCO,annual,kg,4dcd12f9-b83b-3ceb-8a32-ecde4e0b3883 -2010,San Luis,II.1.1,473.38872,TJ,N2O,3.9,kg/TJ,1846.2160079999999,Gas Oil combustion consumption by freight transport,AR-D,SESCO,annual,kg,4dcd12f9-b83b-3ceb-8a32-ecde4e0b3883 -2010,Santa Cruz,II.1.1,207.58164,TJ,CO2,74100.0,kg/TJ,15381799.524,Gas Oil combustion consumption by freight transport,AR-Z,SESCO,annual,kg,10501a53-6e93-369c-a0b3-f3822e5ee9f9 -2010,Santa Cruz,II.1.1,207.58164,TJ,CH4,3.9,kg/TJ,809.568396,Gas Oil combustion consumption by freight transport,AR-Z,SESCO,annual,kg,b7970ad8-f53e-3c87-8ea4-05e9aca49ba9 -2010,Santa Cruz,II.1.1,207.58164,TJ,N2O,3.9,kg/TJ,809.568396,Gas Oil combustion consumption by freight transport,AR-Z,SESCO,annual,kg,b7970ad8-f53e-3c87-8ea4-05e9aca49ba9 -2010,Santa Fe,II.1.1,2097.9579599999997,TJ,CO2,74100.0,kg/TJ,155458684.83599997,Gas Oil combustion consumption by freight transport,AR-S,SESCO,annual,kg,81c22714-f2de-3596-ba22-6d866a2704d9 -2010,Santa Fe,II.1.1,2097.9579599999997,TJ,CH4,3.9,kg/TJ,8182.036043999999,Gas Oil combustion consumption by freight transport,AR-S,SESCO,annual,kg,2f94bb74-ae7e-33ef-bf01-26547dea6554 -2010,Santa Fe,II.1.1,2097.9579599999997,TJ,N2O,3.9,kg/TJ,8182.036043999999,Gas Oil combustion consumption by freight transport,AR-S,SESCO,annual,kg,2f94bb74-ae7e-33ef-bf01-26547dea6554 -2010,Santiago del Estero,II.1.1,338.95007999999996,TJ,CO2,74100.0,kg/TJ,25116200.927999996,Gas Oil combustion consumption by freight transport,AR-G,SESCO,annual,kg,06759aba-2cc9-38ec-8531-88c295d8987d -2010,Santiago del Estero,II.1.1,338.95007999999996,TJ,CH4,3.9,kg/TJ,1321.9053119999999,Gas Oil combustion consumption by freight transport,AR-G,SESCO,annual,kg,fbeebc19-660f-3f3d-b166-c09bf7d21bb8 -2010,Santiago del Estero,II.1.1,338.95007999999996,TJ,N2O,3.9,kg/TJ,1321.9053119999999,Gas Oil combustion consumption by freight transport,AR-G,SESCO,annual,kg,fbeebc19-660f-3f3d-b166-c09bf7d21bb8 -2010,Tierra del Fuego,II.1.1,39.370799999999996,TJ,CO2,74100.0,kg/TJ,2917376.28,Gas Oil combustion consumption by freight transport,AR-V,SESCO,annual,kg,08433876-25b9-3230-85db-5a3e81cdfad1 -2010,Tierra del Fuego,II.1.1,39.370799999999996,TJ,CH4,3.9,kg/TJ,153.54611999999997,Gas Oil combustion consumption by freight transport,AR-V,SESCO,annual,kg,f6db136a-8ef2-3017-88e6-10385055de2d -2010,Tierra del Fuego,II.1.1,39.370799999999996,TJ,N2O,3.9,kg/TJ,153.54611999999997,Gas Oil combustion consumption by freight transport,AR-V,SESCO,annual,kg,f6db136a-8ef2-3017-88e6-10385055de2d -2010,Tucuman,II.1.1,373.98648,TJ,CO2,74100.0,kg/TJ,27712398.167999998,Gas Oil combustion consumption by freight transport,AR-T,SESCO,annual,kg,01b7621c-1427-3135-bf95-2df7a11de085 -2010,Tucuman,II.1.1,373.98648,TJ,CH4,3.9,kg/TJ,1458.5472719999998,Gas Oil combustion consumption by freight transport,AR-T,SESCO,annual,kg,0431cdb8-7771-358a-b46d-646f8346811d -2010,Tucuman,II.1.1,373.98648,TJ,N2O,3.9,kg/TJ,1458.5472719999998,Gas Oil combustion consumption by freight transport,AR-T,SESCO,annual,kg,0431cdb8-7771-358a-b46d-646f8346811d -2010,Buenos Aires,II.1.1,63.96852,TJ,CO2,74100.0,kg/TJ,4740067.3319999995,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,716719b7-d790-3227-b481-229e336fa8be -2010,Buenos Aires,II.1.1,63.96852,TJ,CH4,3.9,kg/TJ,249.477228,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,b0f7fd76-5eb8-330b-ba7b-e78e329fd561 -2010,Buenos Aires,II.1.1,63.96852,TJ,N2O,3.9,kg/TJ,249.477228,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,b0f7fd76-5eb8-330b-ba7b-e78e329fd561 -2010,Capital Federal,II.1.1,18.52956,TJ,CO2,74100.0,kg/TJ,1373040.396,Gas Oil combustion consumption by freight transport,AR-C,SESCO,annual,kg,23f8f4c1-5e5b-3af0-9b96-43e3e3fa158a -2010,Capital Federal,II.1.1,18.52956,TJ,CH4,3.9,kg/TJ,72.265284,Gas Oil combustion consumption by freight transport,AR-C,SESCO,annual,kg,1d960f5a-cbd0-35a1-b165-d106a5e9efdd -2010,Capital Federal,II.1.1,18.52956,TJ,N2O,3.9,kg/TJ,72.265284,Gas Oil combustion consumption by freight transport,AR-C,SESCO,annual,kg,1d960f5a-cbd0-35a1-b165-d106a5e9efdd -2010,Chaco,II.1.1,5.63472,TJ,CO2,74100.0,kg/TJ,417532.752,Gas Oil combustion consumption by freight transport,AR-H,SESCO,annual,kg,cb361035-83e1-3a31-8b75-c5b2268cb3be -2010,Chaco,II.1.1,5.63472,TJ,CH4,3.9,kg/TJ,21.975407999999998,Gas Oil combustion consumption by freight transport,AR-H,SESCO,annual,kg,7f2c88aa-691e-31db-b8ca-8a48273e2a92 -2010,Chaco,II.1.1,5.63472,TJ,N2O,3.9,kg/TJ,21.975407999999998,Gas Oil combustion consumption by freight transport,AR-H,SESCO,annual,kg,7f2c88aa-691e-31db-b8ca-8a48273e2a92 -2010,Chubut,II.1.1,2.81736,TJ,CO2,74100.0,kg/TJ,208766.376,Gas Oil combustion consumption by freight transport,AR-U,SESCO,annual,kg,bc5d501f-b80a-3253-b4d3-46dca5be1ae4 -2010,Chubut,II.1.1,2.81736,TJ,CH4,3.9,kg/TJ,10.987703999999999,Gas Oil combustion consumption by freight transport,AR-U,SESCO,annual,kg,5a4d17be-6849-3d1c-aa7d-66e886f178b3 -2010,Chubut,II.1.1,2.81736,TJ,N2O,3.9,kg/TJ,10.987703999999999,Gas Oil combustion consumption by freight transport,AR-U,SESCO,annual,kg,5a4d17be-6849-3d1c-aa7d-66e886f178b3 -2010,Corrientes,II.1.1,1.37256,TJ,CO2,74100.0,kg/TJ,101706.696,Gas Oil combustion consumption by freight transport,AR-W,SESCO,annual,kg,26a967ca-ce7a-39ef-8193-cb04f8ff6f6f -2010,Corrientes,II.1.1,1.37256,TJ,CH4,3.9,kg/TJ,5.352984,Gas Oil combustion consumption by freight transport,AR-W,SESCO,annual,kg,976f7a0d-e830-33fb-80d3-201c5da4b636 -2010,Corrientes,II.1.1,1.37256,TJ,N2O,3.9,kg/TJ,5.352984,Gas Oil combustion consumption by freight transport,AR-W,SESCO,annual,kg,976f7a0d-e830-33fb-80d3-201c5da4b636 -2010,Córdoba,II.1.1,9.42732,TJ,CO2,74100.0,kg/TJ,698564.412,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,a7bb97fa-e8b4-3805-973b-1a7e09741a59 -2010,Córdoba,II.1.1,9.42732,TJ,CH4,3.9,kg/TJ,36.766548,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,12155fe1-c3a4-305f-bcdf-ec7f422a0402 -2010,Córdoba,II.1.1,9.42732,TJ,N2O,3.9,kg/TJ,36.766548,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,12155fe1-c3a4-305f-bcdf-ec7f422a0402 -2010,Entre Rios,II.1.1,7.07952,TJ,CO2,74100.0,kg/TJ,524592.4319999999,Gas Oil combustion consumption by freight transport,AR-E,SESCO,annual,kg,f42d650d-5409-376d-8afe-0be282119419 -2010,Entre Rios,II.1.1,7.07952,TJ,CH4,3.9,kg/TJ,27.610127999999996,Gas Oil combustion consumption by freight transport,AR-E,SESCO,annual,kg,0d53db6a-c166-327e-ba34-5655bcef0496 -2010,Entre Rios,II.1.1,7.07952,TJ,N2O,3.9,kg/TJ,27.610127999999996,Gas Oil combustion consumption by freight transport,AR-E,SESCO,annual,kg,0d53db6a-c166-327e-ba34-5655bcef0496 -2010,Formosa,II.1.1,0.39732,TJ,CO2,74100.0,kg/TJ,29441.412,Gas Oil combustion consumption by freight transport,AR-P,SESCO,annual,kg,f7d0fc73-b46e-346d-8f12-8fa3fec0c5ac -2010,Formosa,II.1.1,0.39732,TJ,CH4,3.9,kg/TJ,1.549548,Gas Oil combustion consumption by freight transport,AR-P,SESCO,annual,kg,83498105-6c41-36ad-b581-bb69b5c8d561 -2010,Formosa,II.1.1,0.39732,TJ,N2O,3.9,kg/TJ,1.549548,Gas Oil combustion consumption by freight transport,AR-P,SESCO,annual,kg,83498105-6c41-36ad-b581-bb69b5c8d561 -2010,Jujuy,II.1.1,0.28896,TJ,CO2,74100.0,kg/TJ,21411.935999999998,Gas Oil combustion consumption by freight transport,AR-Y,SESCO,annual,kg,af3a1ef4-ef4e-3cd1-9367-655b29438884 -2010,Jujuy,II.1.1,0.28896,TJ,CH4,3.9,kg/TJ,1.126944,Gas Oil combustion consumption by freight transport,AR-Y,SESCO,annual,kg,6cb174f1-6558-3ef0-abfc-e5b1e4e229c6 -2010,Jujuy,II.1.1,0.28896,TJ,N2O,3.9,kg/TJ,1.126944,Gas Oil combustion consumption by freight transport,AR-Y,SESCO,annual,kg,6cb174f1-6558-3ef0-abfc-e5b1e4e229c6 -2010,La Pampa,II.1.1,1.37256,TJ,CO2,74100.0,kg/TJ,101706.696,Gas Oil combustion consumption by freight transport,AR-L,SESCO,annual,kg,0d0f3400-0d0a-3d9f-8fe6-55f9d0171cb6 -2010,La Pampa,II.1.1,1.37256,TJ,CH4,3.9,kg/TJ,5.352984,Gas Oil combustion consumption by freight transport,AR-L,SESCO,annual,kg,0988c533-39ec-38e2-8e1c-74ae436b913f -2010,La Pampa,II.1.1,1.37256,TJ,N2O,3.9,kg/TJ,5.352984,Gas Oil combustion consumption by freight transport,AR-L,SESCO,annual,kg,0988c533-39ec-38e2-8e1c-74ae436b913f -2010,La Rioja,II.1.1,0.5418,TJ,CO2,74100.0,kg/TJ,40147.38,Gas Oil combustion consumption by freight transport,AR-F,SESCO,annual,kg,0104c4c5-27f8-3182-a942-51ffd83fdbe3 -2010,La Rioja,II.1.1,0.5418,TJ,CH4,3.9,kg/TJ,2.1130199999999997,Gas Oil combustion consumption by freight transport,AR-F,SESCO,annual,kg,d3a3ea1f-316c-37e0-b863-59b76f8421a3 -2010,La Rioja,II.1.1,0.5418,TJ,N2O,3.9,kg/TJ,2.1130199999999997,Gas Oil combustion consumption by freight transport,AR-F,SESCO,annual,kg,d3a3ea1f-316c-37e0-b863-59b76f8421a3 -2010,Mendoza,II.1.1,7.0434,TJ,CO2,74100.0,kg/TJ,521915.94,Gas Oil combustion consumption by freight transport,AR-M,SESCO,annual,kg,86c55a1d-a33f-3362-85cc-8bf78381d6bf -2010,Mendoza,II.1.1,7.0434,TJ,CH4,3.9,kg/TJ,27.46926,Gas Oil combustion consumption by freight transport,AR-M,SESCO,annual,kg,eb78a874-6c73-3c4f-8b66-a5c2aa656ef5 -2010,Mendoza,II.1.1,7.0434,TJ,N2O,3.9,kg/TJ,27.46926,Gas Oil combustion consumption by freight transport,AR-M,SESCO,annual,kg,eb78a874-6c73-3c4f-8b66-a5c2aa656ef5 -2010,Misiones,II.1.1,0.68628,TJ,CO2,74100.0,kg/TJ,50853.348,Gas Oil combustion consumption by freight transport,AR-N,SESCO,annual,kg,84dee5fa-056a-37fe-8b95-4ce2cd9c2738 -2010,Misiones,II.1.1,0.68628,TJ,CH4,3.9,kg/TJ,2.676492,Gas Oil combustion consumption by freight transport,AR-N,SESCO,annual,kg,9dcdd8b7-4f24-3db8-954a-386b0e69ccde -2010,Misiones,II.1.1,0.68628,TJ,N2O,3.9,kg/TJ,2.676492,Gas Oil combustion consumption by freight transport,AR-N,SESCO,annual,kg,9dcdd8b7-4f24-3db8-954a-386b0e69ccde -2010,Neuquén,II.1.1,3.72036,TJ,CO2,74100.0,kg/TJ,275678.676,Gas Oil combustion consumption by freight transport,AR-Q,SESCO,annual,kg,30678c7e-e8b9-3284-852c-acd7d8a20a4d -2010,Neuquén,II.1.1,3.72036,TJ,CH4,3.9,kg/TJ,14.509404,Gas Oil combustion consumption by freight transport,AR-Q,SESCO,annual,kg,2e1af95c-9e58-364a-bf9b-b17a305f9cc3 -2010,Neuquén,II.1.1,3.72036,TJ,N2O,3.9,kg/TJ,14.509404,Gas Oil combustion consumption by freight transport,AR-Q,SESCO,annual,kg,2e1af95c-9e58-364a-bf9b-b17a305f9cc3 -2010,Rio Negro,II.1.1,1.84212,TJ,CO2,74100.0,kg/TJ,136501.092,Gas Oil combustion consumption by freight transport,AR-R,SESCO,annual,kg,46457e9e-2000-3a82-895e-ddd757c38ea7 -2010,Rio Negro,II.1.1,1.84212,TJ,CH4,3.9,kg/TJ,7.184267999999999,Gas Oil combustion consumption by freight transport,AR-R,SESCO,annual,kg,8e025840-4fa4-3520-a3fb-106dad4458e4 -2010,Rio Negro,II.1.1,1.84212,TJ,N2O,3.9,kg/TJ,7.184267999999999,Gas Oil combustion consumption by freight transport,AR-R,SESCO,annual,kg,8e025840-4fa4-3520-a3fb-106dad4458e4 -2010,Salta,II.1.1,3.17856,TJ,CO2,74100.0,kg/TJ,235531.296,Gas Oil combustion consumption by freight transport,AR-A,SESCO,annual,kg,f19d56fc-14b5-3c84-8640-1b00653bd5ea -2010,Salta,II.1.1,3.17856,TJ,CH4,3.9,kg/TJ,12.396384,Gas Oil combustion consumption by freight transport,AR-A,SESCO,annual,kg,62b3fdf2-5fdd-30b3-a57a-5da5a1793d89 -2010,Salta,II.1.1,3.17856,TJ,N2O,3.9,kg/TJ,12.396384,Gas Oil combustion consumption by freight transport,AR-A,SESCO,annual,kg,62b3fdf2-5fdd-30b3-a57a-5da5a1793d89 -2010,San Juan,II.1.1,0.93912,TJ,CO2,74100.0,kg/TJ,69588.792,Gas Oil combustion consumption by freight transport,AR-J,SESCO,annual,kg,b2e6cbf0-6c42-3a71-a4e6-b9690683f59b -2010,San Juan,II.1.1,0.93912,TJ,CH4,3.9,kg/TJ,3.662568,Gas Oil combustion consumption by freight transport,AR-J,SESCO,annual,kg,38b45504-0529-318a-91e1-889bcbd5ecd8 -2010,San Juan,II.1.1,0.93912,TJ,N2O,3.9,kg/TJ,3.662568,Gas Oil combustion consumption by freight transport,AR-J,SESCO,annual,kg,38b45504-0529-318a-91e1-889bcbd5ecd8 -2010,San Luis,II.1.1,1.19196,TJ,CO2,74100.0,kg/TJ,88324.23599999999,Gas Oil combustion consumption by freight transport,AR-D,SESCO,annual,kg,bb2c759c-61d0-39f3-b514-310c2328e749 -2010,San Luis,II.1.1,1.19196,TJ,CH4,3.9,kg/TJ,4.648643999999999,Gas Oil combustion consumption by freight transport,AR-D,SESCO,annual,kg,993547b1-b733-3d55-937b-c1ae654e5a5c -2010,San Luis,II.1.1,1.19196,TJ,N2O,3.9,kg/TJ,4.648643999999999,Gas Oil combustion consumption by freight transport,AR-D,SESCO,annual,kg,993547b1-b733-3d55-937b-c1ae654e5a5c -2010,Santa Cruz,II.1.1,0.7223999999999999,TJ,CO2,74100.0,kg/TJ,53529.84,Gas Oil combustion consumption by freight transport,AR-Z,SESCO,annual,kg,f6405d10-10ce-3ba4-9536-44e8606ef4f2 -2010,Santa Cruz,II.1.1,0.7223999999999999,TJ,CH4,3.9,kg/TJ,2.81736,Gas Oil combustion consumption by freight transport,AR-Z,SESCO,annual,kg,256100b3-07ab-3776-9029-c1bdaeecd2e9 -2010,Santa Cruz,II.1.1,0.7223999999999999,TJ,N2O,3.9,kg/TJ,2.81736,Gas Oil combustion consumption by freight transport,AR-Z,SESCO,annual,kg,256100b3-07ab-3776-9029-c1bdaeecd2e9 -2010,Santa Fe,II.1.1,20.98572,TJ,CO2,74100.0,kg/TJ,1555041.852,Gas Oil combustion consumption by freight transport,AR-S,SESCO,annual,kg,5d801c16-627d-3587-bf46-18b2008b2800 -2010,Santa Fe,II.1.1,20.98572,TJ,CH4,3.9,kg/TJ,81.844308,Gas Oil combustion consumption by freight transport,AR-S,SESCO,annual,kg,5a435e98-dc67-316d-ae66-5ad0e217323f -2010,Santa Fe,II.1.1,20.98572,TJ,N2O,3.9,kg/TJ,81.844308,Gas Oil combustion consumption by freight transport,AR-S,SESCO,annual,kg,5a435e98-dc67-316d-ae66-5ad0e217323f -2010,Santiago del Estero,II.1.1,1.3364399999999999,TJ,CO2,74100.0,kg/TJ,99030.20399999998,Gas Oil combustion consumption by freight transport,AR-G,SESCO,annual,kg,354e8437-c227-34df-96e8-16a3906a7887 -2010,Santiago del Estero,II.1.1,1.3364399999999999,TJ,CH4,3.9,kg/TJ,5.212115999999999,Gas Oil combustion consumption by freight transport,AR-G,SESCO,annual,kg,46d15141-d3c1-3152-ba6c-faaa848bee1c -2010,Santiago del Estero,II.1.1,1.3364399999999999,TJ,N2O,3.9,kg/TJ,5.212115999999999,Gas Oil combustion consumption by freight transport,AR-G,SESCO,annual,kg,46d15141-d3c1-3152-ba6c-faaa848bee1c -2010,Tucuman,II.1.1,1.6254,TJ,CO2,74100.0,kg/TJ,120442.14,Gas Oil combustion consumption by freight transport,AR-T,SESCO,annual,kg,90482549-7bba-304d-8207-5715fc912b3a -2010,Tucuman,II.1.1,1.6254,TJ,CH4,3.9,kg/TJ,6.33906,Gas Oil combustion consumption by freight transport,AR-T,SESCO,annual,kg,055abed5-5f2a-35cd-bb88-711d97a9daa3 -2010,Tucuman,II.1.1,1.6254,TJ,N2O,3.9,kg/TJ,6.33906,Gas Oil combustion consumption by freight transport,AR-T,SESCO,annual,kg,055abed5-5f2a-35cd-bb88-711d97a9daa3 -2010,Buenos Aires,II.1.1,0.62906,TJ,CO2,71500.0,kg/TJ,44977.78999999999,Jet Kerosene combustion consumption by freight transport,AR-B,SESCO,annual,kg,91f9c7cd-5773-3730-abc7-6d535027698f -2010,Buenos Aires,II.1.1,0.62906,TJ,CH4,0.5,kg/TJ,0.31453,Jet Kerosene combustion consumption by freight transport,AR-B,SESCO,annual,kg,a166714a-d954-3d9e-87f2-6ca9ac8a9f35 -2010,Buenos Aires,II.1.1,0.62906,TJ,N2O,2.0,kg/TJ,1.25812,Jet Kerosene combustion consumption by freight transport,AR-B,SESCO,annual,kg,c51bb30d-95d8-34fd-9f32-a368c69b6bd9 -2010,Buenos Aires,II.1.1,0.27412,TJ,CO2,73300.0,kg/TJ,20092.996,Naphtha combustion consumption by freight transport,AR-B,SESCO,annual,kg,b6b1dee2-b0c1-3761-973b-282805620f85 -2010,Buenos Aires,II.1.1,0.27412,TJ,CH4,0.5,kg/TJ,0.13706,Naphtha combustion consumption by freight transport,AR-B,SESCO,annual,kg,efff4a9a-dbad-3b75-8612-3b35c385973a -2010,Buenos Aires,II.1.1,0.27412,TJ,N2O,2.0,kg/TJ,0.54824,Naphtha combustion consumption by freight transport,AR-B,SESCO,annual,kg,8a74ff95-1308-38de-b946-d7f1b93f533f -2010,Santa Fe,II.1.1,0.06853,TJ,CO2,73300.0,kg/TJ,5023.249,Naphtha combustion consumption by freight transport,AR-S,SESCO,annual,kg,97f63c58-49eb-3fde-a1db-e06312868e58 -2010,Santa Fe,II.1.1,0.06853,TJ,CH4,0.5,kg/TJ,0.034265,Naphtha combustion consumption by freight transport,AR-S,SESCO,annual,kg,5ec7fffb-d3bb-39b7-b899-030c098bb4b0 -2010,Santa Fe,II.1.1,0.06853,TJ,N2O,2.0,kg/TJ,0.13706,Naphtha combustion consumption by freight transport,AR-S,SESCO,annual,kg,0f38e31c-39fb-3154-b8a0-7ef0a19d21ad -2010,Buenos Aires,II.1.1,117.837335,TJ,CO2,73300.0,kg/TJ,8637476.6555,Naphtha combustion consumption by freight transport,AR-B,SESCO,annual,kg,4004a23c-0eee-3a7a-a028-7e2403b3c3b4 -2010,Buenos Aires,II.1.1,117.837335,TJ,CH4,0.5,kg/TJ,58.9186675,Naphtha combustion consumption by freight transport,AR-B,SESCO,annual,kg,3b790b7a-700d-34a3-b9be-7c3a1e6bf14b -2010,Buenos Aires,II.1.1,117.837335,TJ,N2O,2.0,kg/TJ,235.67467,Naphtha combustion consumption by freight transport,AR-B,SESCO,annual,kg,35eeec5c-5b59-3a71-a8a6-fec6b3ef7980 -2010,Capital Federal,II.1.1,20.798855,TJ,CO2,73300.0,kg/TJ,1524556.0715,Naphtha combustion consumption by freight transport,AR-C,SESCO,annual,kg,d45750db-05b0-38d6-aa55-2e9659cab3e7 -2010,Capital Federal,II.1.1,20.798855,TJ,CH4,0.5,kg/TJ,10.3994275,Naphtha combustion consumption by freight transport,AR-C,SESCO,annual,kg,58b3a41a-afe9-34f7-a68a-aee3456794b1 -2010,Capital Federal,II.1.1,20.798855,TJ,N2O,2.0,kg/TJ,41.59771,Naphtha combustion consumption by freight transport,AR-C,SESCO,annual,kg,24d74109-c06d-3980-9968-19b92ac5c065 -2010,Catamarca,II.1.1,0.13706,TJ,CO2,73300.0,kg/TJ,10046.498,Naphtha combustion consumption by freight transport,AR-K,SESCO,annual,kg,72b89e92-6a40-38b4-ada6-b915654d6288 -2010,Catamarca,II.1.1,0.13706,TJ,CH4,0.5,kg/TJ,0.06853,Naphtha combustion consumption by freight transport,AR-K,SESCO,annual,kg,1d711ea2-d1f8-328c-ad2c-1564c3877c4a -2010,Catamarca,II.1.1,0.13706,TJ,N2O,2.0,kg/TJ,0.27412,Naphtha combustion consumption by freight transport,AR-K,SESCO,annual,kg,7125772f-a68d-325b-a75d-11430cb70e59 -2010,Chaco,II.1.1,3.4265,TJ,CO2,73300.0,kg/TJ,251162.44999999998,Naphtha combustion consumption by freight transport,AR-H,SESCO,annual,kg,902cff2a-f859-38b9-9390-b60261d30498 -2010,Chaco,II.1.1,3.4265,TJ,CH4,0.5,kg/TJ,1.71325,Naphtha combustion consumption by freight transport,AR-H,SESCO,annual,kg,8ad246d0-697b-355a-a80e-7537df5035f4 -2010,Chaco,II.1.1,3.4265,TJ,N2O,2.0,kg/TJ,6.853,Naphtha combustion consumption by freight transport,AR-H,SESCO,annual,kg,9631b980-28fc-3425-b92d-02a1a69576d3 -2010,Chubut,II.1.1,4.24886,TJ,CO2,73300.0,kg/TJ,311441.43799999997,Naphtha combustion consumption by freight transport,AR-U,SESCO,annual,kg,ca8efb9a-3dac-31fd-b449-2a5c2c521628 -2010,Chubut,II.1.1,4.24886,TJ,CH4,0.5,kg/TJ,2.12443,Naphtha combustion consumption by freight transport,AR-U,SESCO,annual,kg,db431937-2c8e-3394-8a20-267e22dbfd28 -2010,Chubut,II.1.1,4.24886,TJ,N2O,2.0,kg/TJ,8.49772,Naphtha combustion consumption by freight transport,AR-U,SESCO,annual,kg,4c64265c-24eb-3bd6-aa6e-2776228e0996 -2010,Corrientes,II.1.1,4.351655,TJ,CO2,73300.0,kg/TJ,318976.3115,Naphtha combustion consumption by freight transport,AR-W,SESCO,annual,kg,f330f6d1-ae74-327a-9ebd-d6aca674b6bf -2010,Corrientes,II.1.1,4.351655,TJ,CH4,0.5,kg/TJ,2.1758275,Naphtha combustion consumption by freight transport,AR-W,SESCO,annual,kg,874fa10e-bf32-3d38-8017-aa86dd3f858d -2010,Corrientes,II.1.1,4.351655,TJ,N2O,2.0,kg/TJ,8.70331,Naphtha combustion consumption by freight transport,AR-W,SESCO,annual,kg,e03e7adc-dbaa-3cd6-b15d-8a2d6f0b907a -2010,Córdoba,II.1.1,15.0766,TJ,CO2,73300.0,kg/TJ,1105114.78,Naphtha combustion consumption by freight transport,AR-X,SESCO,annual,kg,77c0e3a1-60f5-3c6e-b940-9f8436907a95 -2010,Córdoba,II.1.1,15.0766,TJ,CH4,0.5,kg/TJ,7.5383,Naphtha combustion consumption by freight transport,AR-X,SESCO,annual,kg,d8cbab9f-56aa-369a-8206-9166211dd09b -2010,Córdoba,II.1.1,15.0766,TJ,N2O,2.0,kg/TJ,30.1532,Naphtha combustion consumption by freight transport,AR-X,SESCO,annual,kg,f1f6dd4b-84fd-38ba-827e-1a53fc88b094 -2010,Entre Rios,II.1.1,5.96211,TJ,CO2,73300.0,kg/TJ,437022.663,Naphtha combustion consumption by freight transport,AR-E,SESCO,annual,kg,e485ff56-c237-300c-b909-37be877abb68 -2010,Entre Rios,II.1.1,5.96211,TJ,CH4,0.5,kg/TJ,2.981055,Naphtha combustion consumption by freight transport,AR-E,SESCO,annual,kg,924ed5fa-8d99-3cb2-b449-5f18c813e58c -2010,Entre Rios,II.1.1,5.96211,TJ,N2O,2.0,kg/TJ,11.92422,Naphtha combustion consumption by freight transport,AR-E,SESCO,annual,kg,aa63c946-5798-3747-952a-d68813acdbfa -2010,Formosa,II.1.1,0.27412,TJ,CO2,73300.0,kg/TJ,20092.996,Naphtha combustion consumption by freight transport,AR-P,SESCO,annual,kg,5622eda9-4106-36cc-a3f7-87713cc6a1dc -2010,Formosa,II.1.1,0.27412,TJ,CH4,0.5,kg/TJ,0.13706,Naphtha combustion consumption by freight transport,AR-P,SESCO,annual,kg,806662b5-214a-3059-9953-56e2beada00c -2010,Formosa,II.1.1,0.27412,TJ,N2O,2.0,kg/TJ,0.54824,Naphtha combustion consumption by freight transport,AR-P,SESCO,annual,kg,59963010-8ff3-3baf-a317-562bc7261851 -2010,Jujuy,II.1.1,2.843995,TJ,CO2,73300.0,kg/TJ,208464.8335,Naphtha combustion consumption by freight transport,AR-Y,SESCO,annual,kg,0f885e53-a5c8-39c2-9045-5e78343f3e06 -2010,Jujuy,II.1.1,2.843995,TJ,CH4,0.5,kg/TJ,1.4219975,Naphtha combustion consumption by freight transport,AR-Y,SESCO,annual,kg,991c6bb0-b661-3e95-8d98-704b2d0cfba0 -2010,Jujuy,II.1.1,2.843995,TJ,N2O,2.0,kg/TJ,5.68799,Naphtha combustion consumption by freight transport,AR-Y,SESCO,annual,kg,ccd368d9-a047-38de-a5c4-92c15e8a09cd -2010,La Pampa,II.1.1,1.9188399999999999,TJ,CO2,73300.0,kg/TJ,140650.97199999998,Naphtha combustion consumption by freight transport,AR-L,SESCO,annual,kg,3241adc5-c682-377e-bd35-2c083e5e1ab7 -2010,La Pampa,II.1.1,1.9188399999999999,TJ,CH4,0.5,kg/TJ,0.9594199999999999,Naphtha combustion consumption by freight transport,AR-L,SESCO,annual,kg,b412d111-c022-3540-87b3-42f63686040f -2010,La Pampa,II.1.1,1.9188399999999999,TJ,N2O,2.0,kg/TJ,3.8376799999999998,Naphtha combustion consumption by freight transport,AR-L,SESCO,annual,kg,a32d0af0-b57a-37d8-af12-06aab7100c76 -2010,La Rioja,II.1.1,1.1992749999999999,TJ,CO2,73300.0,kg/TJ,87906.85749999998,Naphtha combustion consumption by freight transport,AR-F,SESCO,annual,kg,737609d3-c24e-3556-80d5-fe3553fc2bc8 -2010,La Rioja,II.1.1,1.1992749999999999,TJ,CH4,0.5,kg/TJ,0.5996374999999999,Naphtha combustion consumption by freight transport,AR-F,SESCO,annual,kg,f1340262-6964-3cb9-936c-79bf887e28a7 -2010,La Rioja,II.1.1,1.1992749999999999,TJ,N2O,2.0,kg/TJ,2.3985499999999997,Naphtha combustion consumption by freight transport,AR-F,SESCO,annual,kg,b05e9bcd-3d75-3090-8fbb-3a732925cd56 -2010,Mendoza,II.1.1,15.659104999999998,TJ,CO2,73300.0,kg/TJ,1147812.3964999998,Naphtha combustion consumption by freight transport,AR-M,SESCO,annual,kg,f164ec76-409d-3590-a926-e5e98c8e8aa1 -2010,Mendoza,II.1.1,15.659104999999998,TJ,CH4,0.5,kg/TJ,7.829552499999999,Naphtha combustion consumption by freight transport,AR-M,SESCO,annual,kg,45c20a53-8437-3e9b-b0da-9f0fe89cd535 -2010,Mendoza,II.1.1,15.659104999999998,TJ,N2O,2.0,kg/TJ,31.318209999999997,Naphtha combustion consumption by freight transport,AR-M,SESCO,annual,kg,dff8f05d-8083-3592-bc7f-9d86462e07f3 -2010,Misiones,II.1.1,4.146065,TJ,CO2,73300.0,kg/TJ,303906.56450000004,Naphtha combustion consumption by freight transport,AR-N,SESCO,annual,kg,7ee74d3f-b6aa-3a46-9fe6-b98aaff90083 -2010,Misiones,II.1.1,4.146065,TJ,CH4,0.5,kg/TJ,2.0730325,Naphtha combustion consumption by freight transport,AR-N,SESCO,annual,kg,4bc4e850-96b9-3934-82fd-9f929358d123 -2010,Misiones,II.1.1,4.146065,TJ,N2O,2.0,kg/TJ,8.29213,Naphtha combustion consumption by freight transport,AR-N,SESCO,annual,kg,e5a55515-6ba3-332c-bb1c-999d036edd41 -2010,Neuquén,II.1.1,4.899895,TJ,CO2,73300.0,kg/TJ,359162.3035,Naphtha combustion consumption by freight transport,AR-Q,SESCO,annual,kg,ffe946d6-4229-39dd-9c86-5273d50ad380 -2010,Neuquén,II.1.1,4.899895,TJ,CH4,0.5,kg/TJ,2.4499475,Naphtha combustion consumption by freight transport,AR-Q,SESCO,annual,kg,a58d73d9-f602-392e-b327-e77cfec6b072 -2010,Neuquén,II.1.1,4.899895,TJ,N2O,2.0,kg/TJ,9.79979,Naphtha combustion consumption by freight transport,AR-Q,SESCO,annual,kg,5f06d749-f7d7-36e5-a97b-3968cb359bb7 -2010,Rio Negro,II.1.1,3.4265,TJ,CO2,73300.0,kg/TJ,251162.44999999998,Naphtha combustion consumption by freight transport,AR-R,SESCO,annual,kg,ee38d393-e1bc-3144-ba56-4e7d488779fd -2010,Rio Negro,II.1.1,3.4265,TJ,CH4,0.5,kg/TJ,1.71325,Naphtha combustion consumption by freight transport,AR-R,SESCO,annual,kg,be1c3e60-7b17-3a8f-bc19-390d7dd27a8a -2010,Rio Negro,II.1.1,3.4265,TJ,N2O,2.0,kg/TJ,6.853,Naphtha combustion consumption by freight transport,AR-R,SESCO,annual,kg,4769c7d1-5acf-3a72-8056-0f9366768aa4 -2010,Salta,II.1.1,3.049585,TJ,CO2,73300.0,kg/TJ,223534.5805,Naphtha combustion consumption by freight transport,AR-A,SESCO,annual,kg,b56ed2eb-3075-32e5-950f-cdd80004d1dd -2010,Salta,II.1.1,3.049585,TJ,CH4,0.5,kg/TJ,1.5247925,Naphtha combustion consumption by freight transport,AR-A,SESCO,annual,kg,e760dfb5-d221-306f-a1fe-8ee3f5f4104c -2010,Salta,II.1.1,3.049585,TJ,N2O,2.0,kg/TJ,6.09917,Naphtha combustion consumption by freight transport,AR-A,SESCO,annual,kg,8da0e23c-94e0-3841-ab3c-e4c2ee7cd521 -2010,San Juan,II.1.1,1.2335399999999999,TJ,CO2,73300.0,kg/TJ,90418.48199999999,Naphtha combustion consumption by freight transport,AR-J,SESCO,annual,kg,6347fa8a-1c40-3a7a-8733-ca8a2977b15d -2010,San Juan,II.1.1,1.2335399999999999,TJ,CH4,0.5,kg/TJ,0.6167699999999999,Naphtha combustion consumption by freight transport,AR-J,SESCO,annual,kg,218f500c-7cde-35c1-b60d-709c4014b020 -2010,San Juan,II.1.1,1.2335399999999999,TJ,N2O,2.0,kg/TJ,2.4670799999999997,Naphtha combustion consumption by freight transport,AR-J,SESCO,annual,kg,161d2d82-92f4-3b3e-9ea1-66e710bcdea8 -2010,San Luis,II.1.1,2.80973,TJ,CO2,73300.0,kg/TJ,205953.209,Naphtha combustion consumption by freight transport,AR-D,SESCO,annual,kg,e3df5556-d8b4-3d8d-a7fd-19646681d0d8 -2010,San Luis,II.1.1,2.80973,TJ,CH4,0.5,kg/TJ,1.404865,Naphtha combustion consumption by freight transport,AR-D,SESCO,annual,kg,84acf316-ebc4-369e-9932-0a32a8083470 -2010,San Luis,II.1.1,2.80973,TJ,N2O,2.0,kg/TJ,5.61946,Naphtha combustion consumption by freight transport,AR-D,SESCO,annual,kg,58bf5008-2bfa-352d-990c-814b85d6db9c -2010,Santa Cruz,II.1.1,2.19296,TJ,CO2,73300.0,kg/TJ,160743.968,Naphtha combustion consumption by freight transport,AR-Z,SESCO,annual,kg,3656bd8a-e37d-302c-a343-62ac58a7d8f3 -2010,Santa Cruz,II.1.1,2.19296,TJ,CH4,0.5,kg/TJ,1.09648,Naphtha combustion consumption by freight transport,AR-Z,SESCO,annual,kg,13ed9a65-a200-3cbf-89dc-f9ea73c90757 -2010,Santa Cruz,II.1.1,2.19296,TJ,N2O,2.0,kg/TJ,4.38592,Naphtha combustion consumption by freight transport,AR-Z,SESCO,annual,kg,5621e15c-1bbc-3e24-9711-9aa60d98b942 -2010,Santa Fe,II.1.1,23.43726,TJ,CO2,73300.0,kg/TJ,1717951.1579999998,Naphtha combustion consumption by freight transport,AR-S,SESCO,annual,kg,760e9a86-8ff6-3e44-9346-83c1774050d4 -2010,Santa Fe,II.1.1,23.43726,TJ,CH4,0.5,kg/TJ,11.71863,Naphtha combustion consumption by freight transport,AR-S,SESCO,annual,kg,331d3e5d-21dc-360e-b9cf-61f2f629bf9b -2010,Santa Fe,II.1.1,23.43726,TJ,N2O,2.0,kg/TJ,46.87452,Naphtha combustion consumption by freight transport,AR-S,SESCO,annual,kg,d16eb125-1a70-3dd6-83e3-dfa107e576ff -2010,Santiago del Estero,II.1.1,1.610455,TJ,CO2,73300.0,kg/TJ,118046.3515,Naphtha combustion consumption by freight transport,AR-G,SESCO,annual,kg,228f5e5f-a343-38db-90d4-df88d38cbe2f -2010,Santiago del Estero,II.1.1,1.610455,TJ,CH4,0.5,kg/TJ,0.8052275,Naphtha combustion consumption by freight transport,AR-G,SESCO,annual,kg,32ffc2a3-9ae4-3195-a6f2-f07824395ecf -2010,Santiago del Estero,II.1.1,1.610455,TJ,N2O,2.0,kg/TJ,3.22091,Naphtha combustion consumption by freight transport,AR-G,SESCO,annual,kg,0d1e2e25-1258-3302-9ad7-51e044386ed8 -2010,Tierra del Fuego,II.1.1,0.6510349999999999,TJ,CO2,73300.0,kg/TJ,47720.86549999999,Naphtha combustion consumption by freight transport,AR-V,SESCO,annual,kg,e3d6f4e2-9c0f-3983-85a4-4de381030ca9 -2010,Tierra del Fuego,II.1.1,0.6510349999999999,TJ,CH4,0.5,kg/TJ,0.32551749999999996,Naphtha combustion consumption by freight transport,AR-V,SESCO,annual,kg,dd5ea713-8a5f-340b-a417-483a3e3933e8 -2010,Tierra del Fuego,II.1.1,0.6510349999999999,TJ,N2O,2.0,kg/TJ,1.3020699999999998,Naphtha combustion consumption by freight transport,AR-V,SESCO,annual,kg,4d23d23b-eca4-37dd-a4b3-d4c2b3e771bb -2010,Tucuman,II.1.1,3.63209,TJ,CO2,73300.0,kg/TJ,266232.197,Naphtha combustion consumption by freight transport,AR-T,SESCO,annual,kg,7201924a-d5b2-3e94-a936-92f4d0dd1b7a -2010,Tucuman,II.1.1,3.63209,TJ,CH4,0.5,kg/TJ,1.816045,Naphtha combustion consumption by freight transport,AR-T,SESCO,annual,kg,cbbbb36f-bd6e-3ef5-b158-9837d367bb91 -2010,Tucuman,II.1.1,3.63209,TJ,N2O,2.0,kg/TJ,7.26418,Naphtha combustion consumption by freight transport,AR-T,SESCO,annual,kg,89861fd0-fd5b-3724-928e-716e2cb14534 -2010,Buenos Aires,II.1.1,149.94364,TJ,CO2,73300.0,kg/TJ,10990868.811999999,Naphtha combustion consumption by freight transport,AR-B,SESCO,annual,kg,1c0fc7f9-9eba-38da-b4e9-f45134646532 -2010,Buenos Aires,II.1.1,149.94364,TJ,CH4,0.5,kg/TJ,74.97182,Naphtha combustion consumption by freight transport,AR-B,SESCO,annual,kg,024eefd7-613a-31ea-9f51-45fd0de01aeb -2010,Buenos Aires,II.1.1,149.94364,TJ,N2O,2.0,kg/TJ,299.88728,Naphtha combustion consumption by freight transport,AR-B,SESCO,annual,kg,13b12036-c73d-34a0-98de-b3c42a746159 -2010,Capital Federal,II.1.1,41.52918,TJ,CO2,73300.0,kg/TJ,3044088.894,Naphtha combustion consumption by freight transport,AR-C,SESCO,annual,kg,c2abe146-4794-30f5-8dec-94763155222c -2010,Capital Federal,II.1.1,41.52918,TJ,CH4,0.5,kg/TJ,20.76459,Naphtha combustion consumption by freight transport,AR-C,SESCO,annual,kg,feae707c-4646-32e2-8a04-bdbf58434bcd -2010,Capital Federal,II.1.1,41.52918,TJ,N2O,2.0,kg/TJ,83.05836,Naphtha combustion consumption by freight transport,AR-C,SESCO,annual,kg,3e8e381e-3a2e-30dc-bb0f-cc142b8d5dc9 -2010,Chaco,II.1.1,3.460765,TJ,CO2,73300.0,kg/TJ,253674.0745,Naphtha combustion consumption by freight transport,AR-H,SESCO,annual,kg,5820104b-c560-3765-a0f4-46b7d98811f4 -2010,Chaco,II.1.1,3.460765,TJ,CH4,0.5,kg/TJ,1.7303825,Naphtha combustion consumption by freight transport,AR-H,SESCO,annual,kg,edd767c3-4b5b-35c1-9247-5ed62496cb09 -2010,Chaco,II.1.1,3.460765,TJ,N2O,2.0,kg/TJ,6.92153,Naphtha combustion consumption by freight transport,AR-H,SESCO,annual,kg,fc762caf-7275-37f9-b61e-ef1e8b814e38 -2010,Chubut,II.1.1,3.15238,TJ,CO2,73300.0,kg/TJ,231069.454,Naphtha combustion consumption by freight transport,AR-U,SESCO,annual,kg,f47b2525-f1de-3020-b7cd-4dcfd2a01f23 -2010,Chubut,II.1.1,3.15238,TJ,CH4,0.5,kg/TJ,1.57619,Naphtha combustion consumption by freight transport,AR-U,SESCO,annual,kg,6c5b8903-2269-3f40-9df9-27a6ee13c327 -2010,Chubut,II.1.1,3.15238,TJ,N2O,2.0,kg/TJ,6.30476,Naphtha combustion consumption by freight transport,AR-U,SESCO,annual,kg,e7e60f56-d34d-319e-bb1f-b02d66c4d971 -2010,Corrientes,II.1.1,2.6041399999999997,TJ,CO2,73300.0,kg/TJ,190883.46199999997,Naphtha combustion consumption by freight transport,AR-W,SESCO,annual,kg,4ce53e41-71a8-3ec0-ba5e-e7d313b6de47 -2010,Corrientes,II.1.1,2.6041399999999997,TJ,CH4,0.5,kg/TJ,1.3020699999999998,Naphtha combustion consumption by freight transport,AR-W,SESCO,annual,kg,e1dde77f-d8b4-337e-98dc-6ae43ffa4f75 -2010,Corrientes,II.1.1,2.6041399999999997,TJ,N2O,2.0,kg/TJ,5.208279999999999,Naphtha combustion consumption by freight transport,AR-W,SESCO,annual,kg,d91e3ed7-c4ec-3074-82ba-18e6a56e68b9 -2010,Córdoba,II.1.1,12.917905,TJ,CO2,73300.0,kg/TJ,946882.4365,Naphtha combustion consumption by freight transport,AR-X,SESCO,annual,kg,78b985e7-210d-3899-829c-03dd1107ea19 -2010,Córdoba,II.1.1,12.917905,TJ,CH4,0.5,kg/TJ,6.4589525,Naphtha combustion consumption by freight transport,AR-X,SESCO,annual,kg,b04bf8fb-085e-347e-bb31-a6291c6cc15b -2010,Córdoba,II.1.1,12.917905,TJ,N2O,2.0,kg/TJ,25.83581,Naphtha combustion consumption by freight transport,AR-X,SESCO,annual,kg,e04a4a13-b32a-3e3f-9284-5a6d6c9a6677 -2010,Entre Rios,II.1.1,5.448135,TJ,CO2,73300.0,kg/TJ,399348.2955,Naphtha combustion consumption by freight transport,AR-E,SESCO,annual,kg,a0e48d0f-8434-3eb2-85b3-f06362c5c547 -2010,Entre Rios,II.1.1,5.448135,TJ,CH4,0.5,kg/TJ,2.7240675,Naphtha combustion consumption by freight transport,AR-E,SESCO,annual,kg,c34693ad-d273-3f9e-b97a-055e78f9925c -2010,Entre Rios,II.1.1,5.448135,TJ,N2O,2.0,kg/TJ,10.89627,Naphtha combustion consumption by freight transport,AR-E,SESCO,annual,kg,f30d6095-305e-3b66-b20b-567f14cb80de -2010,Formosa,II.1.1,0.376915,TJ,CO2,73300.0,kg/TJ,27627.8695,Naphtha combustion consumption by freight transport,AR-P,SESCO,annual,kg,494188e2-f3ea-33d0-9256-2ee3048948c1 -2010,Formosa,II.1.1,0.376915,TJ,CH4,0.5,kg/TJ,0.1884575,Naphtha combustion consumption by freight transport,AR-P,SESCO,annual,kg,257249dc-7817-379f-9417-ac1e2903461e -2010,Formosa,II.1.1,0.376915,TJ,N2O,2.0,kg/TJ,0.75383,Naphtha combustion consumption by freight transport,AR-P,SESCO,annual,kg,5deb5508-c2c1-333c-aaef-3af41f9cafe6 -2010,Jujuy,II.1.1,0.20559,TJ,CO2,73300.0,kg/TJ,15069.747,Naphtha combustion consumption by freight transport,AR-Y,SESCO,annual,kg,ec59d807-a33f-3efc-97ef-f437ccbef84f -2010,Jujuy,II.1.1,0.20559,TJ,CH4,0.5,kg/TJ,0.102795,Naphtha combustion consumption by freight transport,AR-Y,SESCO,annual,kg,547d3624-21f5-37c2-8868-3f0092459074 -2010,Jujuy,II.1.1,0.20559,TJ,N2O,2.0,kg/TJ,0.41118,Naphtha combustion consumption by freight transport,AR-Y,SESCO,annual,kg,e2e49c68-6a56-36a4-a8a3-e5ee6517cce6 -2010,La Pampa,II.1.1,1.50766,TJ,CO2,73300.0,kg/TJ,110511.478,Naphtha combustion consumption by freight transport,AR-L,SESCO,annual,kg,8eae10b5-992e-39a8-b20e-21837f84242d -2010,La Pampa,II.1.1,1.50766,TJ,CH4,0.5,kg/TJ,0.75383,Naphtha combustion consumption by freight transport,AR-L,SESCO,annual,kg,b7cbe52b-4981-3b61-a6e0-6a6b50a3f7c2 -2010,La Pampa,II.1.1,1.50766,TJ,N2O,2.0,kg/TJ,3.01532,Naphtha combustion consumption by freight transport,AR-L,SESCO,annual,kg,706f99fe-c64d-346d-bae8-8d7112c6b9e6 -2010,La Rioja,II.1.1,0.376915,TJ,CO2,73300.0,kg/TJ,27627.8695,Naphtha combustion consumption by freight transport,AR-F,SESCO,annual,kg,b2baee71-b013-3181-976b-bf34533c05fa -2010,La Rioja,II.1.1,0.376915,TJ,CH4,0.5,kg/TJ,0.1884575,Naphtha combustion consumption by freight transport,AR-F,SESCO,annual,kg,4f14cccf-5006-31be-bef9-39d9c759955b -2010,La Rioja,II.1.1,0.376915,TJ,N2O,2.0,kg/TJ,0.75383,Naphtha combustion consumption by freight transport,AR-F,SESCO,annual,kg,de57740d-29dd-3783-8f59-53ed7ab02ce0 -2010,Mendoza,II.1.1,10.587885,TJ,CO2,73300.0,kg/TJ,776091.9705,Naphtha combustion consumption by freight transport,AR-M,SESCO,annual,kg,93c5ab08-5e12-302a-828c-cf5f249dbd4c -2010,Mendoza,II.1.1,10.587885,TJ,CH4,0.5,kg/TJ,5.2939425,Naphtha combustion consumption by freight transport,AR-M,SESCO,annual,kg,b047e062-6e09-329b-ba6f-8e0e6a608564 -2010,Mendoza,II.1.1,10.587885,TJ,N2O,2.0,kg/TJ,21.17577,Naphtha combustion consumption by freight transport,AR-M,SESCO,annual,kg,862f6173-d343-365e-a0fd-693ba11758fe -2010,Misiones,II.1.1,1.9873699999999999,TJ,CO2,73300.0,kg/TJ,145674.221,Naphtha combustion consumption by freight transport,AR-N,SESCO,annual,kg,7cd84f4b-2ed0-3bef-8918-cca0e9344a39 -2010,Misiones,II.1.1,1.9873699999999999,TJ,CH4,0.5,kg/TJ,0.9936849999999999,Naphtha combustion consumption by freight transport,AR-N,SESCO,annual,kg,3e067395-2633-347a-9849-1cd8c1943861 -2010,Misiones,II.1.1,1.9873699999999999,TJ,N2O,2.0,kg/TJ,3.9747399999999997,Naphtha combustion consumption by freight transport,AR-N,SESCO,annual,kg,a39e21ca-fdd1-3292-89e2-7395076b2e16 -2010,Neuquén,II.1.1,3.49503,TJ,CO2,73300.0,kg/TJ,256185.699,Naphtha combustion consumption by freight transport,AR-Q,SESCO,annual,kg,1d8515e7-fcca-3a4d-8c60-827791328a62 -2010,Neuquén,II.1.1,3.49503,TJ,CH4,0.5,kg/TJ,1.747515,Naphtha combustion consumption by freight transport,AR-Q,SESCO,annual,kg,47ac4ece-480f-3930-8ee2-2e413def5e5b -2010,Neuquén,II.1.1,3.49503,TJ,N2O,2.0,kg/TJ,6.99006,Naphtha combustion consumption by freight transport,AR-Q,SESCO,annual,kg,01b4c15c-e778-37c2-a5d0-d4f9b2782734 -2010,Rio Negro,II.1.1,2.3985499999999997,TJ,CO2,73300.0,kg/TJ,175813.71499999997,Naphtha combustion consumption by freight transport,AR-R,SESCO,annual,kg,156da97f-4431-31b8-8148-9afba8b39fdd -2010,Rio Negro,II.1.1,2.3985499999999997,TJ,CH4,0.5,kg/TJ,1.1992749999999999,Naphtha combustion consumption by freight transport,AR-R,SESCO,annual,kg,5928f8aa-411b-3b83-9b58-6a2cf0df3eca -2010,Rio Negro,II.1.1,2.3985499999999997,TJ,N2O,2.0,kg/TJ,4.7970999999999995,Naphtha combustion consumption by freight transport,AR-R,SESCO,annual,kg,7d82412b-f4f5-305f-a387-25d6402260fb -2010,Salta,II.1.1,1.9873699999999999,TJ,CO2,73300.0,kg/TJ,145674.221,Naphtha combustion consumption by freight transport,AR-A,SESCO,annual,kg,75878c06-bab5-3253-8d91-7519690a352a -2010,Salta,II.1.1,1.9873699999999999,TJ,CH4,0.5,kg/TJ,0.9936849999999999,Naphtha combustion consumption by freight transport,AR-A,SESCO,annual,kg,fb27434e-b8dd-345c-936c-b64d7d0d4f25 -2010,Salta,II.1.1,1.9873699999999999,TJ,N2O,2.0,kg/TJ,3.9747399999999997,Naphtha combustion consumption by freight transport,AR-A,SESCO,annual,kg,08a69ab2-d9f2-39d6-8b91-5c53d1c3b98f -2010,San Juan,II.1.1,1.1992749999999999,TJ,CO2,73300.0,kg/TJ,87906.85749999998,Naphtha combustion consumption by freight transport,AR-J,SESCO,annual,kg,bb7fbc6d-0a96-399c-95a0-ef06a96b60d5 -2010,San Juan,II.1.1,1.1992749999999999,TJ,CH4,0.5,kg/TJ,0.5996374999999999,Naphtha combustion consumption by freight transport,AR-J,SESCO,annual,kg,c7d9603e-36ba-3e21-acee-ae29b9f17d6d -2010,San Juan,II.1.1,1.1992749999999999,TJ,N2O,2.0,kg/TJ,2.3985499999999997,Naphtha combustion consumption by freight transport,AR-J,SESCO,annual,kg,98d53413-e0ae-3bce-8948-9184e10ab00d -2010,San Luis,II.1.1,1.473395,TJ,CO2,73300.0,kg/TJ,107999.8535,Naphtha combustion consumption by freight transport,AR-D,SESCO,annual,kg,8d5e2a64-979b-3611-bb96-efa759b2fd43 -2010,San Luis,II.1.1,1.473395,TJ,CH4,0.5,kg/TJ,0.7366975,Naphtha combustion consumption by freight transport,AR-D,SESCO,annual,kg,75879dc0-c01a-3a57-bfc1-07eebbf8c2fb -2010,San Luis,II.1.1,1.473395,TJ,N2O,2.0,kg/TJ,2.94679,Naphtha combustion consumption by freight transport,AR-D,SESCO,annual,kg,4c584b21-4a92-385c-9b10-65ad436471c9 -2010,Santa Cruz,II.1.1,0.719565,TJ,CO2,73300.0,kg/TJ,52744.1145,Naphtha combustion consumption by freight transport,AR-Z,SESCO,annual,kg,4fef5eab-cb46-37d5-ad03-08097d6d4a43 -2010,Santa Cruz,II.1.1,0.719565,TJ,CH4,0.5,kg/TJ,0.3597825,Naphtha combustion consumption by freight transport,AR-Z,SESCO,annual,kg,bec25cef-6dba-3900-b00d-7b44480be72b -2010,Santa Cruz,II.1.1,0.719565,TJ,N2O,2.0,kg/TJ,1.43913,Naphtha combustion consumption by freight transport,AR-Z,SESCO,annual,kg,6c2707e1-1319-3ac7-b88b-22b4bcc9e7b7 -2010,Santa Fe,II.1.1,19.907965,TJ,CO2,73300.0,kg/TJ,1459253.8345,Naphtha combustion consumption by freight transport,AR-S,SESCO,annual,kg,871433f2-f3a3-3db4-a8a9-3f6113efd260 -2010,Santa Fe,II.1.1,19.907965,TJ,CH4,0.5,kg/TJ,9.9539825,Naphtha combustion consumption by freight transport,AR-S,SESCO,annual,kg,ad807e90-fd19-3057-88b9-2d2535e8abaa -2010,Santa Fe,II.1.1,19.907965,TJ,N2O,2.0,kg/TJ,39.81593,Naphtha combustion consumption by freight transport,AR-S,SESCO,annual,kg,36e47877-693c-34ac-a797-6b8bbabbc669 -2010,Santiago del Estero,II.1.1,0.6853,TJ,CO2,73300.0,kg/TJ,50232.49,Naphtha combustion consumption by freight transport,AR-G,SESCO,annual,kg,aa6df591-702e-369c-bc9c-98b771232b7e -2010,Santiago del Estero,II.1.1,0.6853,TJ,CH4,0.5,kg/TJ,0.34265,Naphtha combustion consumption by freight transport,AR-G,SESCO,annual,kg,5031b853-4992-321c-94fd-6ddb6986e59c -2010,Santiago del Estero,II.1.1,0.6853,TJ,N2O,2.0,kg/TJ,1.3706,Naphtha combustion consumption by freight transport,AR-G,SESCO,annual,kg,066fbf25-de71-3a97-bf52-bae46680ce20 -2010,Tucuman,II.1.1,2.706935,TJ,CO2,73300.0,kg/TJ,198418.33550000002,Naphtha combustion consumption by freight transport,AR-T,SESCO,annual,kg,c650fc7c-9dfd-3dfd-89f2-df8f0b561b03 -2010,Tucuman,II.1.1,2.706935,TJ,CH4,0.5,kg/TJ,1.3534675,Naphtha combustion consumption by freight transport,AR-T,SESCO,annual,kg,cda1f1e9-fce1-34cb-8696-262d2af36bae -2010,Tucuman,II.1.1,2.706935,TJ,N2O,2.0,kg/TJ,5.41387,Naphtha combustion consumption by freight transport,AR-T,SESCO,annual,kg,2250475d-de87-3797-aeb9-26274c9ab285 -2010,Buenos Aires,II.1.1,12384.60888,TJ,CO2,74100.0,kg/TJ,917699518.008,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,706b3455-dc4d-3e10-b83e-06ef54db7ff0 -2010,Buenos Aires,II.1.1,12384.60888,TJ,CH4,3.9,kg/TJ,48299.974632,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,51c5f5be-d21e-3854-a82d-cb85e0afb95d -2010,Buenos Aires,II.1.1,12384.60888,TJ,N2O,3.9,kg/TJ,48299.974632,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,51c5f5be-d21e-3854-a82d-cb85e0afb95d -2010,Capital Federal,II.1.1,3183.50844,TJ,CO2,74100.0,kg/TJ,235897975.404,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,34c45bff-1a1a-36ba-b9d6-379b5a8b0e8b -2010,Capital Federal,II.1.1,3183.50844,TJ,CH4,3.9,kg/TJ,12415.682916,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,8b40346c-1030-32b3-be9e-7840316b53b9 -2010,Capital Federal,II.1.1,3183.50844,TJ,N2O,3.9,kg/TJ,12415.682916,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,8b40346c-1030-32b3-be9e-7840316b53b9 -2010,Catamarca,II.1.1,151.52339999999998,TJ,CO2,74100.0,kg/TJ,11227883.94,Gas Oil combustion consumption by public passenger transport,AR-K,SESCO,annual,kg,1384d7a0-cd0f-3388-b62d-e30108d068fb -2010,Catamarca,II.1.1,151.52339999999998,TJ,CH4,3.9,kg/TJ,590.9412599999999,Gas Oil combustion consumption by public passenger transport,AR-K,SESCO,annual,kg,710e0dd1-acd1-3037-9b08-e548a57d793f -2010,Catamarca,II.1.1,151.52339999999998,TJ,N2O,3.9,kg/TJ,590.9412599999999,Gas Oil combustion consumption by public passenger transport,AR-K,SESCO,annual,kg,710e0dd1-acd1-3037-9b08-e548a57d793f -2010,Chaco,II.1.1,582.2182799999999,TJ,CO2,74100.0,kg/TJ,43142374.54799999,Gas Oil combustion consumption by public passenger transport,AR-H,SESCO,annual,kg,38464fee-c857-3f61-8c65-a37bd9051892 -2010,Chaco,II.1.1,582.2182799999999,TJ,CH4,3.9,kg/TJ,2270.6512919999996,Gas Oil combustion consumption by public passenger transport,AR-H,SESCO,annual,kg,505905e1-223c-3882-8a1a-f807a23cd593 -2010,Chaco,II.1.1,582.2182799999999,TJ,N2O,3.9,kg/TJ,2270.6512919999996,Gas Oil combustion consumption by public passenger transport,AR-H,SESCO,annual,kg,505905e1-223c-3882-8a1a-f807a23cd593 -2010,Chubut,II.1.1,265.3014,TJ,CO2,74100.0,kg/TJ,19658833.74,Gas Oil combustion consumption by public passenger transport,AR-U,SESCO,annual,kg,d9acd73b-12d3-30fa-8763-005fe7df913a -2010,Chubut,II.1.1,265.3014,TJ,CH4,3.9,kg/TJ,1034.67546,Gas Oil combustion consumption by public passenger transport,AR-U,SESCO,annual,kg,d7252140-7f27-3c12-94ad-9d3502dcf084 -2010,Chubut,II.1.1,265.3014,TJ,N2O,3.9,kg/TJ,1034.67546,Gas Oil combustion consumption by public passenger transport,AR-U,SESCO,annual,kg,d7252140-7f27-3c12-94ad-9d3502dcf084 -2010,Corrientes,II.1.1,573.36888,TJ,CO2,74100.0,kg/TJ,42486634.008,Gas Oil combustion consumption by public passenger transport,AR-W,SESCO,annual,kg,7d743c41-ae3e-3a0e-adfb-51bfccf49bee -2010,Corrientes,II.1.1,573.36888,TJ,CH4,3.9,kg/TJ,2236.1386319999997,Gas Oil combustion consumption by public passenger transport,AR-W,SESCO,annual,kg,4d11dd15-8138-3d7f-9acd-4c0f3b06235a -2010,Corrientes,II.1.1,573.36888,TJ,N2O,3.9,kg/TJ,2236.1386319999997,Gas Oil combustion consumption by public passenger transport,AR-W,SESCO,annual,kg,4d11dd15-8138-3d7f-9acd-4c0f3b06235a -2010,Córdoba,II.1.1,2941.5044399999997,TJ,CO2,74100.0,kg/TJ,217965479.00399998,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,8f9c1b49-40cb-3b02-994a-fcd80917b704 -2010,Córdoba,II.1.1,2941.5044399999997,TJ,CH4,3.9,kg/TJ,11471.867315999998,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,c1a66e88-e69b-38c9-9462-a8cd9eaa566a -2010,Córdoba,II.1.1,2941.5044399999997,TJ,N2O,3.9,kg/TJ,11471.867315999998,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,c1a66e88-e69b-38c9-9462-a8cd9eaa566a -2010,Entre Rios,II.1.1,465.08112,TJ,CO2,74100.0,kg/TJ,34462510.992,Gas Oil combustion consumption by public passenger transport,AR-E,SESCO,annual,kg,6498974c-6e83-358c-9015-f3cf30522f22 -2010,Entre Rios,II.1.1,465.08112,TJ,CH4,3.9,kg/TJ,1813.816368,Gas Oil combustion consumption by public passenger transport,AR-E,SESCO,annual,kg,33e19798-3ba8-32bf-9f92-f6e0bb8f0b35 -2010,Entre Rios,II.1.1,465.08112,TJ,N2O,3.9,kg/TJ,1813.816368,Gas Oil combustion consumption by public passenger transport,AR-E,SESCO,annual,kg,33e19798-3ba8-32bf-9f92-f6e0bb8f0b35 -2010,Formosa,II.1.1,83.03988,TJ,CO2,74100.0,kg/TJ,6153255.108,Gas Oil combustion consumption by public passenger transport,AR-P,SESCO,annual,kg,ff085f77-7713-3862-89b6-e17efa9b7c73 -2010,Formosa,II.1.1,83.03988,TJ,CH4,3.9,kg/TJ,323.855532,Gas Oil combustion consumption by public passenger transport,AR-P,SESCO,annual,kg,34f2d5e2-a692-3732-8ec8-6128363a519b -2010,Formosa,II.1.1,83.03988,TJ,N2O,3.9,kg/TJ,323.855532,Gas Oil combustion consumption by public passenger transport,AR-P,SESCO,annual,kg,34f2d5e2-a692-3732-8ec8-6128363a519b -2010,Jujuy,II.1.1,696.5380799999999,TJ,CO2,74100.0,kg/TJ,51613471.72799999,Gas Oil combustion consumption by public passenger transport,AR-Y,SESCO,annual,kg,8f63a586-40fc-326a-ad01-3ba3916291d0 -2010,Jujuy,II.1.1,696.5380799999999,TJ,CH4,3.9,kg/TJ,2716.4985119999997,Gas Oil combustion consumption by public passenger transport,AR-Y,SESCO,annual,kg,9104bb9c-37ea-3beb-a5b0-9496421ef8e1 -2010,Jujuy,II.1.1,696.5380799999999,TJ,N2O,3.9,kg/TJ,2716.4985119999997,Gas Oil combustion consumption by public passenger transport,AR-Y,SESCO,annual,kg,9104bb9c-37ea-3beb-a5b0-9496421ef8e1 -2010,La Pampa,II.1.1,148.85052,TJ,CO2,74100.0,kg/TJ,11029823.532,Gas Oil combustion consumption by public passenger transport,AR-L,SESCO,annual,kg,c8bad5c9-da5f-35f4-8855-7e3d99a3bfa4 -2010,La Pampa,II.1.1,148.85052,TJ,CH4,3.9,kg/TJ,580.517028,Gas Oil combustion consumption by public passenger transport,AR-L,SESCO,annual,kg,c62da93c-3b11-3466-ab28-5050a2f63444 -2010,La Pampa,II.1.1,148.85052,TJ,N2O,3.9,kg/TJ,580.517028,Gas Oil combustion consumption by public passenger transport,AR-L,SESCO,annual,kg,c62da93c-3b11-3466-ab28-5050a2f63444 -2010,La Rioja,II.1.1,162.32327999999998,TJ,CO2,74100.0,kg/TJ,12028155.047999999,Gas Oil combustion consumption by public passenger transport,AR-F,SESCO,annual,kg,96be2eb2-6b68-3dcd-abc1-9bd844e1b881 -2010,La Rioja,II.1.1,162.32327999999998,TJ,CH4,3.9,kg/TJ,633.0607919999999,Gas Oil combustion consumption by public passenger transport,AR-F,SESCO,annual,kg,fb2f48d5-b05a-3161-80ec-247027f14a5a -2010,La Rioja,II.1.1,162.32327999999998,TJ,N2O,3.9,kg/TJ,633.0607919999999,Gas Oil combustion consumption by public passenger transport,AR-F,SESCO,annual,kg,fb2f48d5-b05a-3161-80ec-247027f14a5a -2010,Mendoza,II.1.1,2112.87552,TJ,CO2,74100.0,kg/TJ,156564076.032,Gas Oil combustion consumption by public passenger transport,AR-M,SESCO,annual,kg,ec5b3511-a55a-343a-acbc-d7c24f28daa9 -2010,Mendoza,II.1.1,2112.87552,TJ,CH4,3.9,kg/TJ,8240.214528,Gas Oil combustion consumption by public passenger transport,AR-M,SESCO,annual,kg,7597e62a-2083-32a2-ab8c-447f0fd4ac0a -2010,Mendoza,II.1.1,2112.87552,TJ,N2O,3.9,kg/TJ,8240.214528,Gas Oil combustion consumption by public passenger transport,AR-M,SESCO,annual,kg,7597e62a-2083-32a2-ab8c-447f0fd4ac0a -2010,Misiones,II.1.1,828.88176,TJ,CO2,74100.0,kg/TJ,61420138.416,Gas Oil combustion consumption by public passenger transport,AR-N,SESCO,annual,kg,cd881edc-f507-3b05-a0c4-2b2cf086c39b -2010,Misiones,II.1.1,828.88176,TJ,CH4,3.9,kg/TJ,3232.638864,Gas Oil combustion consumption by public passenger transport,AR-N,SESCO,annual,kg,ed584f40-ee99-3080-ab98-42edaaad38e3 -2010,Misiones,II.1.1,828.88176,TJ,N2O,3.9,kg/TJ,3232.638864,Gas Oil combustion consumption by public passenger transport,AR-N,SESCO,annual,kg,ed584f40-ee99-3080-ab98-42edaaad38e3 -2010,Neuquén,II.1.1,472.88304,TJ,CO2,74100.0,kg/TJ,35040633.264,Gas Oil combustion consumption by public passenger transport,AR-Q,SESCO,annual,kg,c78c47a0-5b66-3ecb-b49f-d66b47abcfce -2010,Neuquén,II.1.1,472.88304,TJ,CH4,3.9,kg/TJ,1844.2438559999998,Gas Oil combustion consumption by public passenger transport,AR-Q,SESCO,annual,kg,3d5a2b7c-cdc0-352c-9511-43fceb25b784 -2010,Neuquén,II.1.1,472.88304,TJ,N2O,3.9,kg/TJ,1844.2438559999998,Gas Oil combustion consumption by public passenger transport,AR-Q,SESCO,annual,kg,3d5a2b7c-cdc0-352c-9511-43fceb25b784 -2010,Rio Negro,II.1.1,354.44556,TJ,CO2,74100.0,kg/TJ,26264415.996,Gas Oil combustion consumption by public passenger transport,AR-R,SESCO,annual,kg,66bb1808-e4b5-38f4-98ed-1e1c1efd7093 -2010,Rio Negro,II.1.1,354.44556,TJ,CH4,3.9,kg/TJ,1382.337684,Gas Oil combustion consumption by public passenger transport,AR-R,SESCO,annual,kg,c7f002a9-1605-3cdf-89e9-f01e71c04676 -2010,Rio Negro,II.1.1,354.44556,TJ,N2O,3.9,kg/TJ,1382.337684,Gas Oil combustion consumption by public passenger transport,AR-R,SESCO,annual,kg,c7f002a9-1605-3cdf-89e9-f01e71c04676 -2010,Salta,II.1.1,1047.62448,TJ,CO2,74100.0,kg/TJ,77628973.968,Gas Oil combustion consumption by public passenger transport,AR-A,SESCO,annual,kg,90fcb19a-958c-3609-a540-be10eb7b3681 -2010,Salta,II.1.1,1047.62448,TJ,CH4,3.9,kg/TJ,4085.735472,Gas Oil combustion consumption by public passenger transport,AR-A,SESCO,annual,kg,b3055f31-5fc1-3661-987c-835d93751aa8 -2010,Salta,II.1.1,1047.62448,TJ,N2O,3.9,kg/TJ,4085.735472,Gas Oil combustion consumption by public passenger transport,AR-A,SESCO,annual,kg,b3055f31-5fc1-3661-987c-835d93751aa8 -2010,San Juan,II.1.1,558.6319199999999,TJ,CO2,74100.0,kg/TJ,41394625.27199999,Gas Oil combustion consumption by public passenger transport,AR-J,SESCO,annual,kg,0c42badf-6e55-3693-b78a-92d44de2f7e4 -2010,San Juan,II.1.1,558.6319199999999,TJ,CH4,3.9,kg/TJ,2178.6644879999994,Gas Oil combustion consumption by public passenger transport,AR-J,SESCO,annual,kg,5d271cc6-1d69-3907-8b45-0979b2142dda -2010,San Juan,II.1.1,558.6319199999999,TJ,N2O,3.9,kg/TJ,2178.6644879999994,Gas Oil combustion consumption by public passenger transport,AR-J,SESCO,annual,kg,5d271cc6-1d69-3907-8b45-0979b2142dda -2010,San Luis,II.1.1,184.60932,TJ,CO2,74100.0,kg/TJ,13679550.612,Gas Oil combustion consumption by public passenger transport,AR-D,SESCO,annual,kg,0b161e61-ffb3-3326-a11d-e2f9bc0013f4 -2010,San Luis,II.1.1,184.60932,TJ,CH4,3.9,kg/TJ,719.9763479999999,Gas Oil combustion consumption by public passenger transport,AR-D,SESCO,annual,kg,34509a13-1d88-3ee6-a056-e23604f1ef93 -2010,San Luis,II.1.1,184.60932,TJ,N2O,3.9,kg/TJ,719.9763479999999,Gas Oil combustion consumption by public passenger transport,AR-D,SESCO,annual,kg,34509a13-1d88-3ee6-a056-e23604f1ef93 -2010,Santa Cruz,II.1.1,143.7576,TJ,CO2,74100.0,kg/TJ,10652438.16,Gas Oil combustion consumption by public passenger transport,AR-Z,SESCO,annual,kg,5388d8c2-53b5-3b02-8e37-9853a88e018b -2010,Santa Cruz,II.1.1,143.7576,TJ,CH4,3.9,kg/TJ,560.65464,Gas Oil combustion consumption by public passenger transport,AR-Z,SESCO,annual,kg,bba13126-64dc-368e-a7ca-ba13b1b08163 -2010,Santa Cruz,II.1.1,143.7576,TJ,N2O,3.9,kg/TJ,560.65464,Gas Oil combustion consumption by public passenger transport,AR-Z,SESCO,annual,kg,bba13126-64dc-368e-a7ca-ba13b1b08163 -2010,Santa Fe,II.1.1,1572.80928,TJ,CO2,74100.0,kg/TJ,116545167.648,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,5e5353ae-b292-3728-88c2-f6ac1f011377 -2010,Santa Fe,II.1.1,1572.80928,TJ,CH4,3.9,kg/TJ,6133.956192,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,d0685512-8017-3349-9adf-ae9fcaa77a45 -2010,Santa Fe,II.1.1,1572.80928,TJ,N2O,3.9,kg/TJ,6133.956192,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,d0685512-8017-3349-9adf-ae9fcaa77a45 -2010,Santiago del Estero,II.1.1,430.11696,TJ,CO2,74100.0,kg/TJ,31871666.736,Gas Oil combustion consumption by public passenger transport,AR-G,SESCO,annual,kg,d6bc1cb2-e143-393d-9b81-f91ed66a5960 -2010,Santiago del Estero,II.1.1,430.11696,TJ,CH4,3.9,kg/TJ,1677.456144,Gas Oil combustion consumption by public passenger transport,AR-G,SESCO,annual,kg,69a96136-9245-37a7-a890-7fcc72ee1ede -2010,Santiago del Estero,II.1.1,430.11696,TJ,N2O,3.9,kg/TJ,1677.456144,Gas Oil combustion consumption by public passenger transport,AR-G,SESCO,annual,kg,69a96136-9245-37a7-a890-7fcc72ee1ede -2010,Tierra del Fuego,II.1.1,31.53276,TJ,CO2,74100.0,kg/TJ,2336577.516,Gas Oil combustion consumption by public passenger transport,AR-V,SESCO,annual,kg,a3757712-3e00-314b-9a18-6bf591454581 -2010,Tierra del Fuego,II.1.1,31.53276,TJ,CH4,3.9,kg/TJ,122.977764,Gas Oil combustion consumption by public passenger transport,AR-V,SESCO,annual,kg,61c44f4f-cf1d-363e-bc18-fc76f82036b4 -2010,Tierra del Fuego,II.1.1,31.53276,TJ,N2O,3.9,kg/TJ,122.977764,Gas Oil combustion consumption by public passenger transport,AR-V,SESCO,annual,kg,61c44f4f-cf1d-363e-bc18-fc76f82036b4 -2010,Tucuman,II.1.1,1267.9926,TJ,CO2,74100.0,kg/TJ,93958251.66,Gas Oil combustion consumption by public passenger transport,AR-T,SESCO,annual,kg,bb504b83-4673-3cd6-a928-e90c32082741 -2010,Tucuman,II.1.1,1267.9926,TJ,CH4,3.9,kg/TJ,4945.17114,Gas Oil combustion consumption by public passenger transport,AR-T,SESCO,annual,kg,9bb0ef38-fe48-33e8-a854-58c202a4729c -2010,Tucuman,II.1.1,1267.9926,TJ,N2O,3.9,kg/TJ,4945.17114,Gas Oil combustion consumption by public passenger transport,AR-T,SESCO,annual,kg,9bb0ef38-fe48-33e8-a854-58c202a4729c -2010,Buenos Aires,II.1.1,3.53976,TJ,CO2,74100.0,kg/TJ,262296.21599999996,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,d0c90f39-cbcc-3e6d-9ba9-24d4410f9d33 -2010,Buenos Aires,II.1.1,3.53976,TJ,CH4,3.9,kg/TJ,13.805063999999998,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,02e6781a-926c-3534-a05c-0b82cff0ac1c -2010,Buenos Aires,II.1.1,3.53976,TJ,N2O,3.9,kg/TJ,13.805063999999998,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,02e6781a-926c-3534-a05c-0b82cff0ac1c -2010,Capital Federal,II.1.1,0.303408,TJ,CO2,74100.0,kg/TJ,22482.5328,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,6d9e1a49-7714-3976-bba5-11e784f584e1 -2010,Capital Federal,II.1.1,0.303408,TJ,CH4,3.9,kg/TJ,1.1832912,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,b8275c77-01fa-3a3d-9958-db772566c335 -2010,Capital Federal,II.1.1,0.303408,TJ,N2O,3.9,kg/TJ,1.1832912,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,b8275c77-01fa-3a3d-9958-db772566c335 -2010,Chubut,II.1.1,0.33591600000000005,TJ,CO2,74100.0,kg/TJ,24891.375600000003,Gas Oil combustion consumption by public passenger transport,AR-U,SESCO,annual,kg,5082cec1-f844-3ae4-99f0-079956d6fc0a -2010,Chubut,II.1.1,0.33591600000000005,TJ,CH4,3.9,kg/TJ,1.3100724000000001,Gas Oil combustion consumption by public passenger transport,AR-U,SESCO,annual,kg,9311553d-67f3-3ac6-ac2a-3fc5d3e49708 -2010,Chubut,II.1.1,0.33591600000000005,TJ,N2O,3.9,kg/TJ,1.3100724000000001,Gas Oil combustion consumption by public passenger transport,AR-U,SESCO,annual,kg,9311553d-67f3-3ac6-ac2a-3fc5d3e49708 -2010,Corrientes,II.1.1,0.03612,TJ,CO2,74100.0,kg/TJ,2676.4919999999997,Gas Oil combustion consumption by public passenger transport,AR-W,SESCO,annual,kg,c5e118e1-115a-3af4-b7e8-aeef6af1e466 -2010,Corrientes,II.1.1,0.03612,TJ,CH4,3.9,kg/TJ,0.140868,Gas Oil combustion consumption by public passenger transport,AR-W,SESCO,annual,kg,fe070851-74ff-31b5-8b70-6122da117dd5 -2010,Corrientes,II.1.1,0.03612,TJ,N2O,3.9,kg/TJ,0.140868,Gas Oil combustion consumption by public passenger transport,AR-W,SESCO,annual,kg,fe070851-74ff-31b5-8b70-6122da117dd5 -2010,Córdoba,II.1.1,0.43344,TJ,CO2,74100.0,kg/TJ,32117.904,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,ccd5f9db-8161-346d-9201-c6059cc7752e -2010,Córdoba,II.1.1,0.43344,TJ,CH4,3.9,kg/TJ,1.690416,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,554ea7f7-14ed-35d7-b80d-798498353c6f -2010,Córdoba,II.1.1,0.43344,TJ,N2O,3.9,kg/TJ,1.690416,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,554ea7f7-14ed-35d7-b80d-798498353c6f -2010,Entre Rios,II.1.1,0.03612,TJ,CO2,74100.0,kg/TJ,2676.4919999999997,Gas Oil combustion consumption by public passenger transport,AR-E,SESCO,annual,kg,8a2ab565-8480-33cc-94b5-deeec94bbeed -2010,Entre Rios,II.1.1,0.03612,TJ,CH4,3.9,kg/TJ,0.140868,Gas Oil combustion consumption by public passenger transport,AR-E,SESCO,annual,kg,30287ab8-554a-3903-93ab-b6be9fc95809 -2010,Entre Rios,II.1.1,0.03612,TJ,N2O,3.9,kg/TJ,0.140868,Gas Oil combustion consumption by public passenger transport,AR-E,SESCO,annual,kg,30287ab8-554a-3903-93ab-b6be9fc95809 -2010,Jujuy,II.1.1,0.014447999999999999,TJ,CO2,74100.0,kg/TJ,1070.5968,Gas Oil combustion consumption by public passenger transport,AR-Y,SESCO,annual,kg,f3419e1c-f85d-38f1-a9c1-a6ef04a2cdda -2010,Jujuy,II.1.1,0.014447999999999999,TJ,CH4,3.9,kg/TJ,0.05634719999999999,Gas Oil combustion consumption by public passenger transport,AR-Y,SESCO,annual,kg,158560f9-0650-3754-8cb4-a3e13f5840fe -2010,Jujuy,II.1.1,0.014447999999999999,TJ,N2O,3.9,kg/TJ,0.05634719999999999,Gas Oil combustion consumption by public passenger transport,AR-Y,SESCO,annual,kg,158560f9-0650-3754-8cb4-a3e13f5840fe -2010,La Pampa,II.1.1,0.122808,TJ,CO2,74100.0,kg/TJ,9100.0728,Gas Oil combustion consumption by public passenger transport,AR-L,SESCO,annual,kg,ec818dca-537f-32ae-9de1-93a24811edbd -2010,La Pampa,II.1.1,0.122808,TJ,CH4,3.9,kg/TJ,0.47895119999999997,Gas Oil combustion consumption by public passenger transport,AR-L,SESCO,annual,kg,c621e44a-5f70-3196-8d8a-94d1a32a1476 -2010,La Pampa,II.1.1,0.122808,TJ,N2O,3.9,kg/TJ,0.47895119999999997,Gas Oil combustion consumption by public passenger transport,AR-L,SESCO,annual,kg,c621e44a-5f70-3196-8d8a-94d1a32a1476 -2010,Mendoza,II.1.1,0.34314,TJ,CO2,74100.0,kg/TJ,25426.674,Gas Oil combustion consumption by public passenger transport,AR-M,SESCO,annual,kg,4aaee44c-7ca3-3f0b-af59-988d3c8d95ba -2010,Mendoza,II.1.1,0.34314,TJ,CH4,3.9,kg/TJ,1.338246,Gas Oil combustion consumption by public passenger transport,AR-M,SESCO,annual,kg,f8084e86-983e-3396-ae22-f989e06ffcdf -2010,Mendoza,II.1.1,0.34314,TJ,N2O,3.9,kg/TJ,1.338246,Gas Oil combustion consumption by public passenger transport,AR-M,SESCO,annual,kg,f8084e86-983e-3396-ae22-f989e06ffcdf -2010,Neuquén,II.1.1,0.07224,TJ,CO2,74100.0,kg/TJ,5352.9839999999995,Gas Oil combustion consumption by public passenger transport,AR-Q,SESCO,annual,kg,b6be1176-369f-37e3-ba74-545b16711859 -2010,Neuquén,II.1.1,0.07224,TJ,CH4,3.9,kg/TJ,0.281736,Gas Oil combustion consumption by public passenger transport,AR-Q,SESCO,annual,kg,70557f9e-bcad-3fd5-86fd-f132e3468700 -2010,Neuquén,II.1.1,0.07224,TJ,N2O,3.9,kg/TJ,0.281736,Gas Oil combustion consumption by public passenger transport,AR-Q,SESCO,annual,kg,70557f9e-bcad-3fd5-86fd-f132e3468700 -2010,Rio Negro,II.1.1,0.375648,TJ,CO2,74100.0,kg/TJ,27835.516799999998,Gas Oil combustion consumption by public passenger transport,AR-R,SESCO,annual,kg,7e26b0ad-292a-3571-86d4-2e0e6b249243 -2010,Rio Negro,II.1.1,0.375648,TJ,CH4,3.9,kg/TJ,1.4650272,Gas Oil combustion consumption by public passenger transport,AR-R,SESCO,annual,kg,2d1e8184-4b4c-3234-bdaf-143549826526 -2010,Rio Negro,II.1.1,0.375648,TJ,N2O,3.9,kg/TJ,1.4650272,Gas Oil combustion consumption by public passenger transport,AR-R,SESCO,annual,kg,2d1e8184-4b4c-3234-bdaf-143549826526 -2010,San Luis,II.1.1,0.10836,TJ,CO2,74100.0,kg/TJ,8029.476,Gas Oil combustion consumption by public passenger transport,AR-D,SESCO,annual,kg,3600f67b-a0b2-345b-972d-249534285155 -2010,San Luis,II.1.1,0.10836,TJ,CH4,3.9,kg/TJ,0.422604,Gas Oil combustion consumption by public passenger transport,AR-D,SESCO,annual,kg,f86ab7df-63aa-30ba-b5cf-0c1359d6935a -2010,San Luis,II.1.1,0.10836,TJ,N2O,3.9,kg/TJ,0.422604,Gas Oil combustion consumption by public passenger transport,AR-D,SESCO,annual,kg,f86ab7df-63aa-30ba-b5cf-0c1359d6935a -2010,Santa Cruz,II.1.1,0.050567999999999995,TJ,CO2,74100.0,kg/TJ,3747.0887999999995,Gas Oil combustion consumption by public passenger transport,AR-Z,SESCO,annual,kg,3517372f-6831-3776-b725-c80bf84d945f -2010,Santa Cruz,II.1.1,0.050567999999999995,TJ,CH4,3.9,kg/TJ,0.19721519999999998,Gas Oil combustion consumption by public passenger transport,AR-Z,SESCO,annual,kg,596a3d53-1414-34de-a1f8-58e148e99f0e -2010,Santa Cruz,II.1.1,0.050567999999999995,TJ,N2O,3.9,kg/TJ,0.19721519999999998,Gas Oil combustion consumption by public passenger transport,AR-Z,SESCO,annual,kg,596a3d53-1414-34de-a1f8-58e148e99f0e -2010,Santa Fe,II.1.1,1.19196,TJ,CO2,74100.0,kg/TJ,88324.23599999999,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,944e2c7d-6f33-37c3-a03a-635baccfc51d -2010,Santa Fe,II.1.1,1.19196,TJ,CH4,3.9,kg/TJ,4.648643999999999,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,7faa324a-5f81-3c03-94e6-64335edd3c9d -2010,Santa Fe,II.1.1,1.19196,TJ,N2O,3.9,kg/TJ,4.648643999999999,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,7faa324a-5f81-3c03-94e6-64335edd3c9d -2010,Santiago del Estero,II.1.1,0.010836,TJ,CO2,74100.0,kg/TJ,802.9476,Gas Oil combustion consumption by public passenger transport,AR-G,SESCO,annual,kg,41b1152d-d09c-36b8-8bce-5e1bf854b324 -2010,Santiago del Estero,II.1.1,0.010836,TJ,CH4,3.9,kg/TJ,0.0422604,Gas Oil combustion consumption by public passenger transport,AR-G,SESCO,annual,kg,8d2530fc-20ef-3749-a9d9-4e76a2ef4433 -2010,Santiago del Estero,II.1.1,0.010836,TJ,N2O,3.9,kg/TJ,0.0422604,Gas Oil combustion consumption by public passenger transport,AR-G,SESCO,annual,kg,8d2530fc-20ef-3749-a9d9-4e76a2ef4433 -2010,Buenos Aires,II.1.1,1.2660917500000002,TJ,CO2,73300.0,kg/TJ,92804.525275,Naphtha combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,750746fb-96c6-3961-847f-cb7d2701c8ce -2010,Buenos Aires,II.1.1,1.2660917500000002,TJ,CH4,0.5,kg/TJ,0.6330458750000001,Naphtha combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,e5d05a24-8ae3-3f31-bcb7-3037b44496ab -2010,Buenos Aires,II.1.1,1.2660917500000002,TJ,N2O,2.0,kg/TJ,2.5321835000000004,Naphtha combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,7b03bc2f-6dc1-3ea5-9df8-0d511c29afeb -2010,Capital Federal,II.1.1,0.2014782,TJ,CO2,73300.0,kg/TJ,14768.35206,Naphtha combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,b40d5c0d-498e-39ee-9676-ec68e900032a -2010,Capital Federal,II.1.1,0.2014782,TJ,CH4,0.5,kg/TJ,0.1007391,Naphtha combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,19292cf1-58e7-3a29-bde4-e6d7ba05ac3b -2010,Capital Federal,II.1.1,0.2014782,TJ,N2O,2.0,kg/TJ,0.4029564,Naphtha combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,d2384590-8ef0-377d-87cd-802847815664 -2010,Chubut,II.1.1,0.075383,TJ,CO2,73300.0,kg/TJ,5525.5739,Naphtha combustion consumption by public passenger transport,AR-U,SESCO,annual,kg,e93beb8f-65a8-34cc-b7ba-3013bbe1c9d9 -2010,Chubut,II.1.1,0.075383,TJ,CH4,0.5,kg/TJ,0.0376915,Naphtha combustion consumption by public passenger transport,AR-U,SESCO,annual,kg,2630f4e8-7314-3efb-b095-164235268593 -2010,Chubut,II.1.1,0.075383,TJ,N2O,2.0,kg/TJ,0.150766,Naphtha combustion consumption by public passenger transport,AR-U,SESCO,annual,kg,cbb19ce4-94f6-3a20-b639-879f6916e0ad -2010,Córdoba,II.1.1,0.035978249999999996,TJ,CO2,73300.0,kg/TJ,2637.205725,Naphtha combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,c10840ac-6933-3550-a4d6-a2ac43139a09 -2010,Córdoba,II.1.1,0.035978249999999996,TJ,CH4,0.5,kg/TJ,0.017989124999999998,Naphtha combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,c0fbc072-6cdb-36b1-a533-984501f8ab2d -2010,Córdoba,II.1.1,0.035978249999999996,TJ,N2O,2.0,kg/TJ,0.07195649999999999,Naphtha combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,304a732a-333c-31c2-b335-d5d958d9ef49 -2010,Entre Rios,II.1.1,0.034265,TJ,CO2,73300.0,kg/TJ,2511.6245,Naphtha combustion consumption by public passenger transport,AR-E,SESCO,annual,kg,96cc6fc3-a281-3430-b801-cb1736102d3a -2010,Entre Rios,II.1.1,0.034265,TJ,CH4,0.5,kg/TJ,0.0171325,Naphtha combustion consumption by public passenger transport,AR-E,SESCO,annual,kg,90c92359-fae5-3ded-90cf-9048030bf4f5 -2010,Entre Rios,II.1.1,0.034265,TJ,N2O,2.0,kg/TJ,0.06853,Naphtha combustion consumption by public passenger transport,AR-E,SESCO,annual,kg,1dc0ab39-cd89-38e1-84d2-deaf7ec9461c -2010,La Pampa,II.1.1,0.021244299999999997,TJ,CO2,73300.0,kg/TJ,1557.2071899999999,Naphtha combustion consumption by public passenger transport,AR-L,SESCO,annual,kg,d5b6d325-9831-3a00-955e-20d943716359 -2010,La Pampa,II.1.1,0.021244299999999997,TJ,CH4,0.5,kg/TJ,0.010622149999999999,Naphtha combustion consumption by public passenger transport,AR-L,SESCO,annual,kg,7d30763c-ec64-366a-b0f3-2ca969f2f9a1 -2010,La Pampa,II.1.1,0.021244299999999997,TJ,N2O,2.0,kg/TJ,0.042488599999999994,Naphtha combustion consumption by public passenger transport,AR-L,SESCO,annual,kg,1399894e-b4bd-3f65-8543-ca8aecc3872a -2010,Mendoza,II.1.1,0.54172965,TJ,CO2,73300.0,kg/TJ,39708.783344999996,Naphtha combustion consumption by public passenger transport,AR-M,SESCO,annual,kg,1a0594d8-8844-3e73-8efc-7806d09a4381 -2010,Mendoza,II.1.1,0.54172965,TJ,CH4,0.5,kg/TJ,0.270864825,Naphtha combustion consumption by public passenger transport,AR-M,SESCO,annual,kg,91714bed-8b52-3440-8f08-0a1ce95734aa -2010,Mendoza,II.1.1,0.54172965,TJ,N2O,2.0,kg/TJ,1.0834593,Naphtha combustion consumption by public passenger transport,AR-M,SESCO,annual,kg,82eb4290-faf7-3d37-8e39-33c53cf5b1fc -2010,Misiones,II.1.1,0.12335399999999999,TJ,CO2,73300.0,kg/TJ,9041.848199999999,Naphtha combustion consumption by public passenger transport,AR-N,SESCO,annual,kg,28959713-c647-39aa-9c86-01efb961406e -2010,Misiones,II.1.1,0.12335399999999999,TJ,CH4,0.5,kg/TJ,0.061676999999999996,Naphtha combustion consumption by public passenger transport,AR-N,SESCO,annual,kg,e334804e-07c2-3d55-bd3b-91d8aadb6415 -2010,Misiones,II.1.1,0.12335399999999999,TJ,N2O,2.0,kg/TJ,0.24670799999999998,Naphtha combustion consumption by public passenger transport,AR-N,SESCO,annual,kg,274b9bd0-85d3-31d5-a8d9-c2a6c9926362 -2010,Neuquén,II.1.1,0.32140569999999996,TJ,CO2,73300.0,kg/TJ,23559.037809999998,Naphtha combustion consumption by public passenger transport,AR-Q,SESCO,annual,kg,a8fa15ae-9abc-358f-a5fe-f069f99ea9f0 -2010,Neuquén,II.1.1,0.32140569999999996,TJ,CH4,0.5,kg/TJ,0.16070284999999998,Naphtha combustion consumption by public passenger transport,AR-Q,SESCO,annual,kg,415297e9-a15f-3c32-aba9-0b1e6ba7b05e -2010,Neuquén,II.1.1,0.32140569999999996,TJ,N2O,2.0,kg/TJ,0.6428113999999999,Naphtha combustion consumption by public passenger transport,AR-Q,SESCO,annual,kg,bdb57eda-1b80-3def-abcc-7bb176d92c59 -2010,Rio Negro,II.1.1,0.5221986,TJ,CO2,73300.0,kg/TJ,38277.15738,Naphtha combustion consumption by public passenger transport,AR-R,SESCO,annual,kg,e1d6bf23-d048-3672-8635-f184c1c81ab1 -2010,Rio Negro,II.1.1,0.5221986,TJ,CH4,0.5,kg/TJ,0.2610993,Naphtha combustion consumption by public passenger transport,AR-R,SESCO,annual,kg,0630d3a0-fcb4-3bef-82cb-ae6744ef522e -2010,Rio Negro,II.1.1,0.5221986,TJ,N2O,2.0,kg/TJ,1.0443972,Naphtha combustion consumption by public passenger transport,AR-R,SESCO,annual,kg,3a93966f-1f70-3043-b27b-ce340ceb3874 -2010,San Juan,II.1.1,0.0013706,TJ,CO2,73300.0,kg/TJ,100.46498,Naphtha combustion consumption by public passenger transport,AR-J,SESCO,annual,kg,1a9de593-c0bb-3003-a2a3-e77f82810597 -2010,San Juan,II.1.1,0.0013706,TJ,CH4,0.5,kg/TJ,0.0006853,Naphtha combustion consumption by public passenger transport,AR-J,SESCO,annual,kg,f6c788a9-1d0e-3c2e-b180-cd404865a8a1 -2010,San Juan,II.1.1,0.0013706,TJ,N2O,2.0,kg/TJ,0.0027412,Naphtha combustion consumption by public passenger transport,AR-J,SESCO,annual,kg,5479ca58-6ef7-3aa9-9d1a-beeee86d9bc7 -2010,San Luis,II.1.1,0.0054824,TJ,CO2,73300.0,kg/TJ,401.85992,Naphtha combustion consumption by public passenger transport,AR-D,SESCO,annual,kg,61959ea2-7174-394e-b820-a5bc6812bec8 -2010,San Luis,II.1.1,0.0054824,TJ,CH4,0.5,kg/TJ,0.0027412,Naphtha combustion consumption by public passenger transport,AR-D,SESCO,annual,kg,11b5de09-adf0-39c8-917d-7a77667b7cb2 -2010,San Luis,II.1.1,0.0054824,TJ,N2O,2.0,kg/TJ,0.0109648,Naphtha combustion consumption by public passenger transport,AR-D,SESCO,annual,kg,f50b3128-d615-3f21-8b2f-90fec1f9fcbd -2010,Santa Fe,II.1.1,0.32243364999999996,TJ,CO2,73300.0,kg/TJ,23634.386544999998,Naphtha combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,717bb53b-261a-36ff-af50-feed832fd6c2 -2010,Santa Fe,II.1.1,0.32243364999999996,TJ,CH4,0.5,kg/TJ,0.16121682499999998,Naphtha combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,8a240b8e-412a-365f-b429-c99f5168db29 -2010,Santa Fe,II.1.1,0.32243364999999996,TJ,N2O,2.0,kg/TJ,0.6448672999999999,Naphtha combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,496907c7-2d08-3a3d-850f-50c33b3beed0 -2010,Buenos Aires,II.1.1,3.5628747,TJ,CO2,73300.0,kg/TJ,261158.71551,Naphtha combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,d02872dc-d016-3520-800b-9ec5e7eef715 -2010,Buenos Aires,II.1.1,3.5628747,TJ,CH4,0.5,kg/TJ,1.78143735,Naphtha combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,d0edb860-6b74-32d5-8e7c-66f0b95b37a8 -2010,Buenos Aires,II.1.1,3.5628747,TJ,N2O,2.0,kg/TJ,7.1257494,Naphtha combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,c931b82e-2583-309b-a825-d83ba5defb4f -2010,Capital Federal,II.1.1,0.418033,TJ,CO2,73300.0,kg/TJ,30641.8189,Naphtha combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,5ffdaf07-cd94-3f9f-9a9a-cfb2a0d7d07d -2010,Capital Federal,II.1.1,0.418033,TJ,CH4,0.5,kg/TJ,0.2090165,Naphtha combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,b12c9014-3928-3991-8607-af851de279d2 -2010,Capital Federal,II.1.1,0.418033,TJ,N2O,2.0,kg/TJ,0.836066,Naphtha combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,1256470c-0d80-3e3a-b805-59be85ec8edc -2010,Chaco,II.1.1,0.04728569999999999,TJ,CO2,73300.0,kg/TJ,3466.0418099999997,Naphtha combustion consumption by public passenger transport,AR-H,SESCO,annual,kg,93bda85f-4533-3a79-92d8-eadf1d7fefd7 -2010,Chaco,II.1.1,0.04728569999999999,TJ,CH4,0.5,kg/TJ,0.023642849999999997,Naphtha combustion consumption by public passenger transport,AR-H,SESCO,annual,kg,5c7e29fc-e240-39c5-82b4-d243b2eb8ade -2010,Chaco,II.1.1,0.04728569999999999,TJ,N2O,2.0,kg/TJ,0.09457139999999999,Naphtha combustion consumption by public passenger transport,AR-H,SESCO,annual,kg,ec8c8a16-1f02-3365-9c93-c328c1f23610 -2010,Chubut,II.1.1,0.0061677,TJ,CO2,73300.0,kg/TJ,452.09241,Naphtha combustion consumption by public passenger transport,AR-U,SESCO,annual,kg,46a9dada-0d47-35ea-8e25-f456566d900e -2010,Chubut,II.1.1,0.0061677,TJ,CH4,0.5,kg/TJ,0.00308385,Naphtha combustion consumption by public passenger transport,AR-U,SESCO,annual,kg,cf456b3a-20f0-3100-bf28-3f60fd259810 -2010,Chubut,II.1.1,0.0061677,TJ,N2O,2.0,kg/TJ,0.0123354,Naphtha combustion consumption by public passenger transport,AR-U,SESCO,annual,kg,c2dfdc3d-fe34-321a-b7c2-808543beac4f -2010,Córdoba,II.1.1,0.24979184999999998,TJ,CO2,73300.0,kg/TJ,18309.742605,Naphtha combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,85cd50a8-2ea0-3634-a7bb-3c691d292556 -2010,Córdoba,II.1.1,0.24979184999999998,TJ,CH4,0.5,kg/TJ,0.12489592499999999,Naphtha combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,e688f061-14bc-3231-bf1e-86c38efad459 -2010,Córdoba,II.1.1,0.24979184999999998,TJ,N2O,2.0,kg/TJ,0.49958369999999996,Naphtha combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,f1d76d24-f80d-361c-8908-37ad55588e96 -2010,Entre Rios,II.1.1,0.24602269999999998,TJ,CO2,73300.0,kg/TJ,18033.46391,Naphtha combustion consumption by public passenger transport,AR-E,SESCO,annual,kg,6ece103e-e829-3423-89c8-951971787864 -2010,Entre Rios,II.1.1,0.24602269999999998,TJ,CH4,0.5,kg/TJ,0.12301134999999999,Naphtha combustion consumption by public passenger transport,AR-E,SESCO,annual,kg,e9b1e0f8-2f6d-36d9-9e66-a668eb6a050e -2010,Entre Rios,II.1.1,0.24602269999999998,TJ,N2O,2.0,kg/TJ,0.49204539999999997,Naphtha combustion consumption by public passenger transport,AR-E,SESCO,annual,kg,32ecb9bc-b3a2-3682-bd2a-1dae30d82b87 -2010,Formosa,II.1.1,0.0010279499999999997,TJ,CO2,73300.0,kg/TJ,75.34873499999998,Naphtha combustion consumption by public passenger transport,AR-P,SESCO,annual,kg,6d91bcb4-c953-3667-9b08-b604038e7650 -2010,Formosa,II.1.1,0.0010279499999999997,TJ,CH4,0.5,kg/TJ,0.0005139749999999998,Naphtha combustion consumption by public passenger transport,AR-P,SESCO,annual,kg,298661a0-391e-3ac7-a1ea-fb0f3f5d9ed8 -2010,Formosa,II.1.1,0.0010279499999999997,TJ,N2O,2.0,kg/TJ,0.0020558999999999994,Naphtha combustion consumption by public passenger transport,AR-P,SESCO,annual,kg,eacf2e5b-49f7-3d5b-9fdf-7ea1d0ecbc0e -2010,Jujuy,II.1.1,0.0013706,TJ,CO2,73300.0,kg/TJ,100.46498,Naphtha combustion consumption by public passenger transport,AR-Y,SESCO,annual,kg,75a12679-8cd8-3727-8695-b378bcb35fe2 -2010,Jujuy,II.1.1,0.0013706,TJ,CH4,0.5,kg/TJ,0.0006853,Naphtha combustion consumption by public passenger transport,AR-Y,SESCO,annual,kg,1a03bd2e-aee1-3271-b5a7-0f0d56c9ea47 -2010,Jujuy,II.1.1,0.0013706,TJ,N2O,2.0,kg/TJ,0.0027412,Naphtha combustion consumption by public passenger transport,AR-Y,SESCO,annual,kg,6b7a5f8c-c64c-3902-b68a-f85b60cf8e67 -2010,La Pampa,II.1.1,0.00171325,TJ,CO2,73300.0,kg/TJ,125.58122499999999,Naphtha combustion consumption by public passenger transport,AR-L,SESCO,annual,kg,f3abf4ea-ba17-3c3c-8732-cbd00778bb30 -2010,La Pampa,II.1.1,0.00171325,TJ,CH4,0.5,kg/TJ,0.000856625,Naphtha combustion consumption by public passenger transport,AR-L,SESCO,annual,kg,c838fff4-e9be-3cab-b544-aaeadd0ed143 -2010,La Pampa,II.1.1,0.00171325,TJ,N2O,2.0,kg/TJ,0.0034265,Naphtha combustion consumption by public passenger transport,AR-L,SESCO,annual,kg,30fcfcd3-5a94-364f-a129-9ee94e8de0cc -2010,La Rioja,II.1.1,0.0010279499999999997,TJ,CO2,73300.0,kg/TJ,75.34873499999998,Naphtha combustion consumption by public passenger transport,AR-F,SESCO,annual,kg,d81a04d1-5fef-322d-8086-326a85f5f5e0 -2010,La Rioja,II.1.1,0.0010279499999999997,TJ,CH4,0.5,kg/TJ,0.0005139749999999998,Naphtha combustion consumption by public passenger transport,AR-F,SESCO,annual,kg,d11331d9-7d88-30f3-b023-680946339f7c -2010,La Rioja,II.1.1,0.0010279499999999997,TJ,N2O,2.0,kg/TJ,0.0020558999999999994,Naphtha combustion consumption by public passenger transport,AR-F,SESCO,annual,kg,0994a80b-0e79-30b6-b66e-b29f5cc384aa -2010,Mendoza,II.1.1,0.5407017000000001,TJ,CO2,73300.0,kg/TJ,39633.434610000004,Naphtha combustion consumption by public passenger transport,AR-M,SESCO,annual,kg,01601ace-e612-3bf5-8890-a97c7a217233 -2010,Mendoza,II.1.1,0.5407017000000001,TJ,CH4,0.5,kg/TJ,0.27035085000000003,Naphtha combustion consumption by public passenger transport,AR-M,SESCO,annual,kg,9900da4a-2f59-3e26-8bb2-879c65bece23 -2010,Mendoza,II.1.1,0.5407017000000001,TJ,N2O,2.0,kg/TJ,1.0814034000000001,Naphtha combustion consumption by public passenger transport,AR-M,SESCO,annual,kg,1cad0a32-7230-34b8-9d6b-7bd2d0a39dea -2010,Misiones,II.1.1,0.02021635,TJ,CO2,73300.0,kg/TJ,1481.858455,Naphtha combustion consumption by public passenger transport,AR-N,SESCO,annual,kg,81fbc33e-efee-353d-9b15-8618d8767517 -2010,Misiones,II.1.1,0.02021635,TJ,CH4,0.5,kg/TJ,0.010108175,Naphtha combustion consumption by public passenger transport,AR-N,SESCO,annual,kg,4994b66e-4de2-3a66-a50b-dac0a1224ed2 -2010,Misiones,II.1.1,0.02021635,TJ,N2O,2.0,kg/TJ,0.0404327,Naphtha combustion consumption by public passenger transport,AR-N,SESCO,annual,kg,c3ef2c4b-7c20-3e8d-8336-600381b109a5 -2010,Neuquén,II.1.1,0.02227225,TJ,CO2,73300.0,kg/TJ,1632.5559250000001,Naphtha combustion consumption by public passenger transport,AR-Q,SESCO,annual,kg,b904317d-7956-399e-8f61-f9b007b39d79 -2010,Neuquén,II.1.1,0.02227225,TJ,CH4,0.5,kg/TJ,0.011136125,Naphtha combustion consumption by public passenger transport,AR-Q,SESCO,annual,kg,132f978c-8ccc-310d-bc2e-2bddbe23121d -2010,Neuquén,II.1.1,0.02227225,TJ,N2O,2.0,kg/TJ,0.0445445,Naphtha combustion consumption by public passenger transport,AR-Q,SESCO,annual,kg,aea09c16-9542-33bd-8d55-7d71795e17b2 -2010,Rio Negro,II.1.1,0.17303825,TJ,CO2,73300.0,kg/TJ,12683.703725000001,Naphtha combustion consumption by public passenger transport,AR-R,SESCO,annual,kg,56441afe-4408-36c1-96b2-39ac12ecff53 -2010,Rio Negro,II.1.1,0.17303825,TJ,CH4,0.5,kg/TJ,0.086519125,Naphtha combustion consumption by public passenger transport,AR-R,SESCO,annual,kg,18ff5c55-5632-34a1-9227-26cd5edd2097 -2010,Rio Negro,II.1.1,0.17303825,TJ,N2O,2.0,kg/TJ,0.3460765,Naphtha combustion consumption by public passenger transport,AR-R,SESCO,annual,kg,968806a1-4303-3bbe-a3fb-fcdd0a6f5b20 -2010,Salta,II.1.1,0.00171325,TJ,CO2,73300.0,kg/TJ,125.58122499999999,Naphtha combustion consumption by public passenger transport,AR-A,SESCO,annual,kg,a1e0a23c-269b-3d88-b430-e9f295e8828f -2010,Salta,II.1.1,0.00171325,TJ,CH4,0.5,kg/TJ,0.000856625,Naphtha combustion consumption by public passenger transport,AR-A,SESCO,annual,kg,bf7b56d6-e4dc-3a4c-ad50-02c76bc77961 -2010,Salta,II.1.1,0.00171325,TJ,N2O,2.0,kg/TJ,0.0034265,Naphtha combustion consumption by public passenger transport,AR-A,SESCO,annual,kg,df2417d2-50ce-3036-be4b-8f9fb181fbf0 -2010,San Juan,II.1.1,0.0013706,TJ,CO2,73300.0,kg/TJ,100.46498,Naphtha combustion consumption by public passenger transport,AR-J,SESCO,annual,kg,1a9de593-c0bb-3003-a2a3-e77f82810597 -2010,San Juan,II.1.1,0.0013706,TJ,CH4,0.5,kg/TJ,0.0006853,Naphtha combustion consumption by public passenger transport,AR-J,SESCO,annual,kg,f6c788a9-1d0e-3c2e-b180-cd404865a8a1 -2010,San Juan,II.1.1,0.0013706,TJ,N2O,2.0,kg/TJ,0.0027412,Naphtha combustion consumption by public passenger transport,AR-J,SESCO,annual,kg,5479ca58-6ef7-3aa9-9d1a-beeee86d9bc7 -2010,San Luis,II.1.1,0.043516549999999994,TJ,CO2,73300.0,kg/TJ,3189.7631149999997,Naphtha combustion consumption by public passenger transport,AR-D,SESCO,annual,kg,0b573aa7-d3fc-337e-b686-12855c5e95ef -2010,San Luis,II.1.1,0.043516549999999994,TJ,CH4,0.5,kg/TJ,0.021758274999999997,Naphtha combustion consumption by public passenger transport,AR-D,SESCO,annual,kg,53efa0dd-b38a-396d-87b6-e00d1aa067ac -2010,San Luis,II.1.1,0.043516549999999994,TJ,N2O,2.0,kg/TJ,0.08703309999999999,Naphtha combustion consumption by public passenger transport,AR-D,SESCO,annual,kg,ed72d8d3-af99-318a-a14f-2369396904f8 -2010,Santa Fe,II.1.1,0.77336105,TJ,CO2,73300.0,kg/TJ,56687.364965,Naphtha combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,4de931c7-292d-34ab-aee5-473cf4848946 -2010,Santa Fe,II.1.1,0.77336105,TJ,CH4,0.5,kg/TJ,0.386680525,Naphtha combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,77999602-78f1-3b64-b7ad-2478ca707fac -2010,Santa Fe,II.1.1,0.77336105,TJ,N2O,2.0,kg/TJ,1.5467221,Naphtha combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,dbd31e4a-4db0-3c96-a171-8983f5f0ce3e -2010,Tucuman,II.1.1,0.0010279499999999997,TJ,CO2,73300.0,kg/TJ,75.34873499999998,Naphtha combustion consumption by public passenger transport,AR-T,SESCO,annual,kg,c58509ec-953f-3c30-b24b-d15b117d61fc -2010,Tucuman,II.1.1,0.0010279499999999997,TJ,CH4,0.5,kg/TJ,0.0005139749999999998,Naphtha combustion consumption by public passenger transport,AR-T,SESCO,annual,kg,7e235a24-2b05-3a12-8a35-6b4a4e00edd3 -2010,Tucuman,II.1.1,0.0010279499999999997,TJ,N2O,2.0,kg/TJ,0.0020558999999999994,Naphtha combustion consumption by public passenger transport,AR-T,SESCO,annual,kg,a482e26c-bf1b-336c-a4b0-2aa5352b6824 -2011,Buenos Aires,II.5.1,0.21672,TJ,CO2,74100.0,kg/TJ,16058.952,Diesel Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,d9a5e561-d4e6-34b1-8681-27cb8e18b6ff -2011,Buenos Aires,II.5.1,0.21672,TJ,CH4,5.0,kg/TJ,1.0836,Diesel Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,c1cc3285-2302-39d9-9bab-80bea150d2a4 -2011,Buenos Aires,II.5.1,0.21672,TJ,N2O,0.6,kg/TJ,0.13003199999999998,Diesel Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,a829a3b1-1f00-3c9d-b09b-0cdf98151996 -2011,Buenos Aires,II.1.1,2677.9729199999997,TJ,CO2,74100.0,kg/TJ,198437793.37199998,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,21af977f-f359-30cd-9b1b-d99d3734c1f0 -2011,Buenos Aires,II.1.1,2677.9729199999997,TJ,CH4,3.9,kg/TJ,10444.094387999998,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,7fe94464-22a3-36fc-9450-4908a04f3e3c -2011,Buenos Aires,II.1.1,2677.9729199999997,TJ,N2O,3.9,kg/TJ,10444.094387999998,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,7fe94464-22a3-36fc-9450-4908a04f3e3c -2011,Capital Federal,II.1.1,1084.10568,TJ,CO2,74100.0,kg/TJ,80332230.888,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,37b23eb6-c11a-3fff-9101-38b52a1ec563 -2011,Capital Federal,II.1.1,1084.10568,TJ,CH4,3.9,kg/TJ,4228.012151999999,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,5b8fb719-9b0c-3001-9598-f6b0c119b75d -2011,Capital Federal,II.1.1,1084.10568,TJ,N2O,3.9,kg/TJ,4228.012151999999,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,5b8fb719-9b0c-3001-9598-f6b0c119b75d -2011,Córdoba,II.1.1,96.36815999999999,TJ,CO2,74100.0,kg/TJ,7140880.6559999995,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,6137d594-0e6c-3a02-90dd-ef6d94a9fe48 -2011,Córdoba,II.1.1,96.36815999999999,TJ,CH4,3.9,kg/TJ,375.83582399999995,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,c0b0b860-4f28-3d8e-85a6-00d0c731e16e -2011,Córdoba,II.1.1,96.36815999999999,TJ,N2O,3.9,kg/TJ,375.83582399999995,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,c0b0b860-4f28-3d8e-85a6-00d0c731e16e -2011,Entre Rios,II.1.1,453.37824,TJ,CO2,74100.0,kg/TJ,33595327.584,Gas Oil combustion consumption by public passenger transport,AR-E,SESCO,annual,kg,a05716c3-6cfa-31e7-bd6c-c5d682fedb0a -2011,Entre Rios,II.1.1,453.37824,TJ,CH4,3.9,kg/TJ,1768.175136,Gas Oil combustion consumption by public passenger transport,AR-E,SESCO,annual,kg,4d809033-74a5-3ad7-84d3-9455a387b184 -2011,Entre Rios,II.1.1,453.37824,TJ,N2O,3.9,kg/TJ,1768.175136,Gas Oil combustion consumption by public passenger transport,AR-E,SESCO,annual,kg,4d809033-74a5-3ad7-84d3-9455a387b184 -2011,Mendoza,II.1.1,177.27696,TJ,CO2,74100.0,kg/TJ,13136222.736,Gas Oil combustion consumption by public passenger transport,AR-M,SESCO,annual,kg,33905345-05f0-32df-a2eb-7230d0a06e65 -2011,Mendoza,II.1.1,177.27696,TJ,CH4,3.9,kg/TJ,691.380144,Gas Oil combustion consumption by public passenger transport,AR-M,SESCO,annual,kg,33dd560d-174f-37c5-b9d3-7060cd543b0e -2011,Mendoza,II.1.1,177.27696,TJ,N2O,3.9,kg/TJ,691.380144,Gas Oil combustion consumption by public passenger transport,AR-M,SESCO,annual,kg,33dd560d-174f-37c5-b9d3-7060cd543b0e -2011,Misiones,II.1.1,227.15868,TJ,CO2,74100.0,kg/TJ,16832458.188,Gas Oil combustion consumption by public passenger transport,AR-N,SESCO,annual,kg,60cd84ed-718e-35da-9d41-6a32b5bc42b0 -2011,Misiones,II.1.1,227.15868,TJ,CH4,3.9,kg/TJ,885.918852,Gas Oil combustion consumption by public passenger transport,AR-N,SESCO,annual,kg,9ddacf94-bb2c-311b-9347-1127356a66d8 -2011,Misiones,II.1.1,227.15868,TJ,N2O,3.9,kg/TJ,885.918852,Gas Oil combustion consumption by public passenger transport,AR-N,SESCO,annual,kg,9ddacf94-bb2c-311b-9347-1127356a66d8 -2011,Salta,II.1.1,71.8788,TJ,CO2,74100.0,kg/TJ,5326219.08,Gas Oil combustion consumption by public passenger transport,AR-A,SESCO,annual,kg,0033862a-97b9-37e0-ba77-c27d4658e352 -2011,Salta,II.1.1,71.8788,TJ,CH4,3.9,kg/TJ,280.32732,Gas Oil combustion consumption by public passenger transport,AR-A,SESCO,annual,kg,2022963f-eced-3c7b-ab7a-b47f17babab1 -2011,Salta,II.1.1,71.8788,TJ,N2O,3.9,kg/TJ,280.32732,Gas Oil combustion consumption by public passenger transport,AR-A,SESCO,annual,kg,2022963f-eced-3c7b-ab7a-b47f17babab1 -2011,San Juan,II.1.1,88.16892,TJ,CO2,74100.0,kg/TJ,6533316.972,Gas Oil combustion consumption by public passenger transport,AR-J,SESCO,annual,kg,6769c758-d30b-36ff-bd32-7fb879debbfb -2011,San Juan,II.1.1,88.16892,TJ,CH4,3.9,kg/TJ,343.858788,Gas Oil combustion consumption by public passenger transport,AR-J,SESCO,annual,kg,22d34b8f-1e08-3aca-a407-412942ca13df -2011,San Juan,II.1.1,88.16892,TJ,N2O,3.9,kg/TJ,343.858788,Gas Oil combustion consumption by public passenger transport,AR-J,SESCO,annual,kg,22d34b8f-1e08-3aca-a407-412942ca13df -2011,Santa Fe,II.1.1,254.4654,TJ,CO2,74100.0,kg/TJ,18855886.14,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,d7b1c3c7-b947-3665-a969-02abee9e429d -2011,Santa Fe,II.1.1,254.4654,TJ,CH4,3.9,kg/TJ,992.4150599999999,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,9ef0e37e-8973-3803-9eca-8019d6274524 -2011,Santa Fe,II.1.1,254.4654,TJ,N2O,3.9,kg/TJ,992.4150599999999,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,9ef0e37e-8973-3803-9eca-8019d6274524 -2011,Santa Fe,II.5.1,185.3512,TJ,CO2,69300.0,kg/TJ,12844838.16,Motor Gasoline combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,5324cf59-b4b7-36f8-becc-42df3a731a55 -2011,Santa Fe,II.5.1,185.3512,TJ,CH4,33.0,kg/TJ,6116.5896,Motor Gasoline combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,eb259dd3-70c0-313a-bda5-2abf46fcee6e -2011,Santa Fe,II.5.1,185.3512,TJ,N2O,3.2,kg/TJ,593.1238400000001,Motor Gasoline combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,92d7cc2a-5987-3778-bde1-abb360252fa5 -2011,Buenos Aires,II.5.1,128.40840599999999,TJ,CO2,74100.0,kg/TJ,9515062.884599999,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,1277cc69-543a-3eb3-8977-d1385ee7e3cf -2011,Buenos Aires,II.5.1,128.40840599999999,TJ,CH4,3.9,kg/TJ,500.7927833999999,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,f0e27281-26b8-3aed-b2df-0aee35923150 -2011,Buenos Aires,II.5.1,128.40840599999999,TJ,N2O,3.9,kg/TJ,500.7927833999999,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,f0e27281-26b8-3aed-b2df-0aee35923150 -2011,Chaco,II.5.1,90.9180132,TJ,CO2,74100.0,kg/TJ,6737024.77812,Gas Oil combustion consumption by agriculture machines,AR-H,SESCO,annual,kg,509ffea3-7f2e-3a56-bd03-196fcbb7ed8f -2011,Chaco,II.5.1,90.9180132,TJ,CH4,3.9,kg/TJ,354.58025148,Gas Oil combustion consumption by agriculture machines,AR-H,SESCO,annual,kg,60c6e69e-9053-3a49-a752-7036a8850775 -2011,Chaco,II.5.1,90.9180132,TJ,N2O,3.9,kg/TJ,354.58025148,Gas Oil combustion consumption by agriculture machines,AR-H,SESCO,annual,kg,60c6e69e-9053-3a49-a752-7036a8850775 -2011,Córdoba,II.5.1,57.6561888,TJ,CO2,74100.0,kg/TJ,4272323.59008,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,26f976f5-35b8-3a49-b9f0-cd886a0d1cda -2011,Córdoba,II.5.1,57.6561888,TJ,CH4,3.9,kg/TJ,224.85913632,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,a6965113-db55-3789-8e68-5b06ea088f00 -2011,Córdoba,II.5.1,57.6561888,TJ,N2O,3.9,kg/TJ,224.85913632,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,a6965113-db55-3789-8e68-5b06ea088f00 -2011,Santa Fe,II.5.1,374.66842560000003,TJ,CO2,74100.0,kg/TJ,27762930.336960003,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,8557b262-101d-3b1c-8ece-1430bd94497f -2011,Santa Fe,II.5.1,374.66842560000003,TJ,CH4,3.9,kg/TJ,1461.20685984,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,cee69c90-aecc-3afd-ac42-a6fc4544262a -2011,Santa Fe,II.5.1,374.66842560000003,TJ,N2O,3.9,kg/TJ,1461.20685984,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,cee69c90-aecc-3afd-ac42-a6fc4544262a -2011,Córdoba,II.5.1,10.1842433,TJ,CO2,73300.0,kg/TJ,746505.0338900001,Naphtha combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,15c0206f-de5a-3f1e-867b-4bd58b3833f7 -2011,Córdoba,II.5.1,10.1842433,TJ,CH4,0.5,kg/TJ,5.09212165,Naphtha combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,6709f342-0291-3a5a-ba77-d652bfc95735 -2011,Córdoba,II.5.1,10.1842433,TJ,N2O,2.0,kg/TJ,20.3684866,Naphtha combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,e0c3cb6d-9e6e-3368-ae15-bb51c925fa52 -2011,Santa Fe,II.5.1,21.319683,TJ,CO2,73300.0,kg/TJ,1562732.7639000001,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,af35882c-fe7f-3ade-821b-aab3dd938415 -2011,Santa Fe,II.5.1,21.319683,TJ,CH4,0.5,kg/TJ,10.6598415,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,bd5e66eb-3226-3e0d-a47a-fca8de38401e -2011,Santa Fe,II.5.1,21.319683,TJ,N2O,2.0,kg/TJ,42.639366,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,55cf500b-8b6b-3868-a6bb-246b0ecf7b46 -2011,Córdoba,II.5.1,5.4553306500000005,TJ,CO2,73300.0,kg/TJ,399875.73664500006,Naphtha combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,72c914af-3a31-3a2a-bf05-f2cdaba6b89a -2011,Córdoba,II.5.1,5.4553306500000005,TJ,CH4,0.5,kg/TJ,2.7276653250000003,Naphtha combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,0d622a8d-9866-3b0b-a038-8a77d468a161 -2011,Córdoba,II.5.1,5.4553306500000005,TJ,N2O,2.0,kg/TJ,10.910661300000001,Naphtha combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,914136ef-2ae5-3575-9bbd-370e918ba429 -2011,Santa Fe,II.5.1,1.02795,TJ,CO2,73300.0,kg/TJ,75348.735,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,07be9c6a-655e-3323-8157-c006cb1bb308 -2011,Santa Fe,II.5.1,1.02795,TJ,CH4,0.5,kg/TJ,0.513975,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,ecfaecf7-2d3d-3da7-b272-e28e00e2290b -2011,Santa Fe,II.5.1,1.02795,TJ,N2O,2.0,kg/TJ,2.0559,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,77652e78-b42a-3e73-8b3f-c4c0576d5aa1 -2011,Capital Federal,II.2.1,68.234292,TJ,CO2,74100.0,kg/TJ,5056161.0372,Gas Oil combustion consumption by railway transport,AR-C,SESCO,annual,kg,9528bff5-486a-317c-958b-f269474b9476 -2011,Capital Federal,II.2.1,68.234292,TJ,CH4,3.9,kg/TJ,266.11373879999996,Gas Oil combustion consumption by railway transport,AR-C,SESCO,annual,kg,ec52cde9-a5bb-37bc-8592-dedc5517e830 -2011,Capital Federal,II.2.1,68.234292,TJ,N2O,3.9,kg/TJ,266.11373879999996,Gas Oil combustion consumption by railway transport,AR-C,SESCO,annual,kg,ec52cde9-a5bb-37bc-8592-dedc5517e830 -2011,Chaco,II.2.1,6.1776036,TJ,CO2,74100.0,kg/TJ,457760.42676,Gas Oil combustion consumption by railway transport,AR-H,SESCO,annual,kg,6dc60b34-317f-35de-9b12-6083aeee7d51 -2011,Chaco,II.2.1,6.1776036,TJ,CH4,3.9,kg/TJ,24.09265404,Gas Oil combustion consumption by railway transport,AR-H,SESCO,annual,kg,92e881d7-d3b7-3670-9644-959983ffef69 -2011,Chaco,II.2.1,6.1776036,TJ,N2O,3.9,kg/TJ,24.09265404,Gas Oil combustion consumption by railway transport,AR-H,SESCO,annual,kg,92e881d7-d3b7-3670-9644-959983ffef69 -2011,Mendoza,II.2.1,42.081606,TJ,CO2,74100.0,kg/TJ,3118247.0046,Gas Oil combustion consumption by railway transport,AR-M,SESCO,annual,kg,2a87d4bb-e63b-3a6c-b703-a885e7100c0d -2011,Mendoza,II.2.1,42.081606,TJ,CH4,3.9,kg/TJ,164.1182634,Gas Oil combustion consumption by railway transport,AR-M,SESCO,annual,kg,64af9bb7-2deb-3d2f-b7b3-802cb35d71b9 -2011,Mendoza,II.2.1,42.081606,TJ,N2O,3.9,kg/TJ,164.1182634,Gas Oil combustion consumption by railway transport,AR-M,SESCO,annual,kg,64af9bb7-2deb-3d2f-b7b3-802cb35d71b9 -2011,Buenos Aires,II.1.1,1452.7088352,TJ,CO2,74100.0,kg/TJ,107645724.68832001,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,61c71ef2-a6e9-3f87-ae97-c36de604a202 -2011,Buenos Aires,II.1.1,1452.7088352,TJ,CH4,3.9,kg/TJ,5665.56445728,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,ac50272a-f57f-3e58-b549-4f6ae67465e6 -2011,Buenos Aires,II.1.1,1452.7088352,TJ,N2O,3.9,kg/TJ,5665.56445728,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,ac50272a-f57f-3e58-b549-4f6ae67465e6 -2011,Capital Federal,II.1.1,1286.1988860000001,TJ,CO2,74100.0,kg/TJ,95307337.4526,Gas Oil combustion consumption by freight transport,AR-C,SESCO,annual,kg,0b987eb5-749e-3e47-ab61-3f00e022f129 -2011,Capital Federal,II.1.1,1286.1988860000001,TJ,CH4,3.9,kg/TJ,5016.1756554,Gas Oil combustion consumption by freight transport,AR-C,SESCO,annual,kg,87b87c64-ef96-3f45-8a2b-d03e158725b6 -2011,Capital Federal,II.1.1,1286.1988860000001,TJ,N2O,3.9,kg/TJ,5016.1756554,Gas Oil combustion consumption by freight transport,AR-C,SESCO,annual,kg,87b87c64-ef96-3f45-8a2b-d03e158725b6 -2011,Chaco,II.1.1,121.4379684,TJ,CO2,74100.0,kg/TJ,8998553.45844,Gas Oil combustion consumption by freight transport,AR-H,SESCO,annual,kg,357483d9-df3d-3be9-8058-08f699dcc571 -2011,Chaco,II.1.1,121.4379684,TJ,CH4,3.9,kg/TJ,473.60807676,Gas Oil combustion consumption by freight transport,AR-H,SESCO,annual,kg,9418e234-2a99-39b7-8691-b1aa0f98ce41 -2011,Chaco,II.1.1,121.4379684,TJ,N2O,3.9,kg/TJ,473.60807676,Gas Oil combustion consumption by freight transport,AR-H,SESCO,annual,kg,9418e234-2a99-39b7-8691-b1aa0f98ce41 -2011,Chubut,II.1.1,19.1880276,TJ,CO2,74100.0,kg/TJ,1421832.84516,Gas Oil combustion consumption by freight transport,AR-U,SESCO,annual,kg,8abe9dda-1583-3780-8041-add5704fe2ab -2011,Chubut,II.1.1,19.1880276,TJ,CH4,3.9,kg/TJ,74.83330764,Gas Oil combustion consumption by freight transport,AR-U,SESCO,annual,kg,787ccf47-e5eb-3258-b634-94483188a1a0 -2011,Chubut,II.1.1,19.1880276,TJ,N2O,3.9,kg/TJ,74.83330764,Gas Oil combustion consumption by freight transport,AR-U,SESCO,annual,kg,787ccf47-e5eb-3258-b634-94483188a1a0 -2011,Corrientes,II.1.1,90.7663092,TJ,CO2,74100.0,kg/TJ,6725783.51172,Gas Oil combustion consumption by freight transport,AR-W,SESCO,annual,kg,40bc651a-ef41-3c66-9326-8d3c89517e94 -2011,Corrientes,II.1.1,90.7663092,TJ,CH4,3.9,kg/TJ,353.98860587999997,Gas Oil combustion consumption by freight transport,AR-W,SESCO,annual,kg,a2b2a90c-92aa-3627-91bc-9466a7d7045c -2011,Corrientes,II.1.1,90.7663092,TJ,N2O,3.9,kg/TJ,353.98860587999997,Gas Oil combustion consumption by freight transport,AR-W,SESCO,annual,kg,a2b2a90c-92aa-3627-91bc-9466a7d7045c -2011,Córdoba,II.1.1,179.2411656,TJ,CO2,74100.0,kg/TJ,13281770.370959999,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,a869d0f6-594c-3051-9959-0c5a528584a2 -2011,Córdoba,II.1.1,179.2411656,TJ,CH4,3.9,kg/TJ,699.0405458399999,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,7eee9ece-ded9-349a-8c18-6a32d77fee59 -2011,Córdoba,II.1.1,179.2411656,TJ,N2O,3.9,kg/TJ,699.0405458399999,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,7eee9ece-ded9-349a-8c18-6a32d77fee59 -2011,Entre Rios,II.1.1,244.96186679999997,TJ,CO2,74100.0,kg/TJ,18151674.32988,Gas Oil combustion consumption by freight transport,AR-E,SESCO,annual,kg,ceaebe35-b605-3c6a-9a5e-0922b8db03cf -2011,Entre Rios,II.1.1,244.96186679999997,TJ,CH4,3.9,kg/TJ,955.3512805199998,Gas Oil combustion consumption by freight transport,AR-E,SESCO,annual,kg,250fe80d-da6a-39e7-8d39-a8b6964c6f90 -2011,Entre Rios,II.1.1,244.96186679999997,TJ,N2O,3.9,kg/TJ,955.3512805199998,Gas Oil combustion consumption by freight transport,AR-E,SESCO,annual,kg,250fe80d-da6a-39e7-8d39-a8b6964c6f90 -2011,Mendoza,II.1.1,409.28583359999993,TJ,CO2,74100.0,kg/TJ,30328080.269759994,Gas Oil combustion consumption by freight transport,AR-M,SESCO,annual,kg,24590e63-e20f-3c2d-8f90-5b81f74ee1ae -2011,Mendoza,II.1.1,409.28583359999993,TJ,CH4,3.9,kg/TJ,1596.2147510399998,Gas Oil combustion consumption by freight transport,AR-M,SESCO,annual,kg,e8bb547e-5502-3e8b-93bc-e78a9dcf4743 -2011,Mendoza,II.1.1,409.28583359999993,TJ,N2O,3.9,kg/TJ,1596.2147510399998,Gas Oil combustion consumption by freight transport,AR-M,SESCO,annual,kg,e8bb547e-5502-3e8b-93bc-e78a9dcf4743 -2011,Misiones,II.1.1,85.8557952,TJ,CO2,74100.0,kg/TJ,6361914.42432,Gas Oil combustion consumption by freight transport,AR-N,SESCO,annual,kg,bc413545-76c8-33fe-a70a-06bb516a7da8 -2011,Misiones,II.1.1,85.8557952,TJ,CH4,3.9,kg/TJ,334.83760128,Gas Oil combustion consumption by freight transport,AR-N,SESCO,annual,kg,3f79d32c-8285-3663-bb3d-1f2e8efb5751 -2011,Misiones,II.1.1,85.8557952,TJ,N2O,3.9,kg/TJ,334.83760128,Gas Oil combustion consumption by freight transport,AR-N,SESCO,annual,kg,3f79d32c-8285-3663-bb3d-1f2e8efb5751 -2011,Rio Negro,II.1.1,11.5645404,TJ,CO2,74100.0,kg/TJ,856932.4436400001,Gas Oil combustion consumption by freight transport,AR-R,SESCO,annual,kg,7cbfea1b-5a2d-3675-926a-f01dea4a38f9 -2011,Rio Negro,II.1.1,11.5645404,TJ,CH4,3.9,kg/TJ,45.10170756,Gas Oil combustion consumption by freight transport,AR-R,SESCO,annual,kg,0db96a17-eab3-38ee-ae7e-845d9b2e6659 -2011,Rio Negro,II.1.1,11.5645404,TJ,N2O,3.9,kg/TJ,45.10170756,Gas Oil combustion consumption by freight transport,AR-R,SESCO,annual,kg,0db96a17-eab3-38ee-ae7e-845d9b2e6659 -2011,Salta,II.1.1,5.1601032,TJ,CO2,74100.0,kg/TJ,382363.64712,Gas Oil combustion consumption by freight transport,AR-A,SESCO,annual,kg,20947830-066d-3198-9365-1b1069562852 -2011,Salta,II.1.1,5.1601032,TJ,CH4,3.9,kg/TJ,20.12440248,Gas Oil combustion consumption by freight transport,AR-A,SESCO,annual,kg,ca896d6e-522b-30e8-8223-57aa3a9662ce -2011,Salta,II.1.1,5.1601032,TJ,N2O,3.9,kg/TJ,20.12440248,Gas Oil combustion consumption by freight transport,AR-A,SESCO,annual,kg,ca896d6e-522b-30e8-8223-57aa3a9662ce -2011,San Juan,II.1.1,7.3161059999999996,TJ,CO2,74100.0,kg/TJ,542123.4545999999,Gas Oil combustion consumption by freight transport,AR-J,SESCO,annual,kg,7b60f742-300f-355d-892f-39cead5bedb9 -2011,San Juan,II.1.1,7.3161059999999996,TJ,CH4,3.9,kg/TJ,28.5328134,Gas Oil combustion consumption by freight transport,AR-J,SESCO,annual,kg,faf19499-bad5-3366-9ecd-8ccdecf01a7e -2011,San Juan,II.1.1,7.3161059999999996,TJ,N2O,3.9,kg/TJ,28.5328134,Gas Oil combustion consumption by freight transport,AR-J,SESCO,annual,kg,faf19499-bad5-3366-9ecd-8ccdecf01a7e -2011,San Luis,II.1.1,126.611436,TJ,CO2,74100.0,kg/TJ,9381907.4076,Gas Oil combustion consumption by freight transport,AR-D,SESCO,annual,kg,eb34fd46-ae3d-323b-a5df-c7e0ea03cb0a -2011,San Luis,II.1.1,126.611436,TJ,CH4,3.9,kg/TJ,493.7846004,Gas Oil combustion consumption by freight transport,AR-D,SESCO,annual,kg,c8a11355-4e10-3f90-84c0-41b33f418b78 -2011,San Luis,II.1.1,126.611436,TJ,N2O,3.9,kg/TJ,493.7846004,Gas Oil combustion consumption by freight transport,AR-D,SESCO,annual,kg,c8a11355-4e10-3f90-84c0-41b33f418b78 -2011,Santa Fe,II.1.1,847.2039912,TJ,CO2,74100.0,kg/TJ,62777815.74792,Gas Oil combustion consumption by freight transport,AR-S,SESCO,annual,kg,a4ce9bd9-7820-39b9-8912-9134451d1c61 -2011,Santa Fe,II.1.1,847.2039912,TJ,CH4,3.9,kg/TJ,3304.09556568,Gas Oil combustion consumption by freight transport,AR-S,SESCO,annual,kg,988cb440-a0cc-389b-b019-3871b8b2d349 -2011,Santa Fe,II.1.1,847.2039912,TJ,N2O,3.9,kg/TJ,3304.09556568,Gas Oil combustion consumption by freight transport,AR-S,SESCO,annual,kg,988cb440-a0cc-389b-b019-3871b8b2d349 -2011,Santiago del Estero,II.1.1,0.28281959999999995,TJ,CO2,74100.0,kg/TJ,20956.932359999995,Gas Oil combustion consumption by freight transport,AR-G,SESCO,annual,kg,54337a25-2114-31c6-b782-16cff6a1bee2 -2011,Santiago del Estero,II.1.1,0.28281959999999995,TJ,CH4,3.9,kg/TJ,1.1029964399999999,Gas Oil combustion consumption by freight transport,AR-G,SESCO,annual,kg,dddbb98e-fd5f-3fe2-8b30-dd8ac0636eb4 -2011,Santiago del Estero,II.1.1,0.28281959999999995,TJ,N2O,3.9,kg/TJ,1.1029964399999999,Gas Oil combustion consumption by freight transport,AR-G,SESCO,annual,kg,dddbb98e-fd5f-3fe2-8b30-dd8ac0636eb4 -2011,Tierra del Fuego,II.1.1,34.257652799999995,TJ,CO2,74100.0,kg/TJ,2538492.0724799996,Gas Oil combustion consumption by freight transport,AR-V,SESCO,annual,kg,f6c57e3d-2e12-35b5-9447-58c1fc0c32ce -2011,Tierra del Fuego,II.1.1,34.257652799999995,TJ,CH4,3.9,kg/TJ,133.60484591999997,Gas Oil combustion consumption by freight transport,AR-V,SESCO,annual,kg,708bbf39-213d-3ade-8660-1659a4838d0a -2011,Tierra del Fuego,II.1.1,34.257652799999995,TJ,N2O,3.9,kg/TJ,133.60484591999997,Gas Oil combustion consumption by freight transport,AR-V,SESCO,annual,kg,708bbf39-213d-3ade-8660-1659a4838d0a -2011,Tucuman,II.1.1,76.9384896,TJ,CO2,74100.0,kg/TJ,5701142.07936,Gas Oil combustion consumption by freight transport,AR-T,SESCO,annual,kg,c94f1d58-9d8e-3f66-aeaf-0056ea074bd6 -2011,Tucuman,II.1.1,76.9384896,TJ,CH4,3.9,kg/TJ,300.06010943999996,Gas Oil combustion consumption by freight transport,AR-T,SESCO,annual,kg,440efd4c-d39f-3047-babc-bd738d0ba36c -2011,Tucuman,II.1.1,76.9384896,TJ,N2O,3.9,kg/TJ,300.06010943999996,Gas Oil combustion consumption by freight transport,AR-T,SESCO,annual,kg,440efd4c-d39f-3047-babc-bd738d0ba36c -2011,Buenos Aires,II.1.1,89.3904984,TJ,CO2,74100.0,kg/TJ,6623835.9314399995,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,d6778ecc-03b6-3c8f-a977-8a05e120e476 -2011,Buenos Aires,II.1.1,89.3904984,TJ,CH4,3.9,kg/TJ,348.62294376,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,ba96a283-29d2-3625-9fc2-6f256e672dd2 -2011,Buenos Aires,II.1.1,89.3904984,TJ,N2O,3.9,kg/TJ,348.62294376,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,ba96a283-29d2-3625-9fc2-6f256e672dd2 -2011,Capital Federal,II.1.1,79.3617804,TJ,CO2,74100.0,kg/TJ,5880707.92764,Gas Oil combustion consumption by freight transport,AR-C,SESCO,annual,kg,f3613124-2703-370c-a322-d19e4a22290f -2011,Capital Federal,II.1.1,79.3617804,TJ,CH4,3.9,kg/TJ,309.51094356,Gas Oil combustion consumption by freight transport,AR-C,SESCO,annual,kg,9f54cfae-c715-3934-9d82-659228eb7225 -2011,Capital Federal,II.1.1,79.3617804,TJ,N2O,3.9,kg/TJ,309.51094356,Gas Oil combustion consumption by freight transport,AR-C,SESCO,annual,kg,9f54cfae-c715-3934-9d82-659228eb7225 -2011,Chaco,II.1.1,0.22647239999999996,TJ,CO2,74100.0,kg/TJ,16781.604839999996,Gas Oil combustion consumption by freight transport,AR-H,SESCO,annual,kg,d6cfd9ad-2115-35df-8550-c3f16c7f0ae9 -2011,Chaco,II.1.1,0.22647239999999996,TJ,CH4,3.9,kg/TJ,0.8832423599999998,Gas Oil combustion consumption by freight transport,AR-H,SESCO,annual,kg,364ca191-cd72-3e90-8f17-36c64d50bd6f -2011,Chaco,II.1.1,0.22647239999999996,TJ,N2O,3.9,kg/TJ,0.8832423599999998,Gas Oil combustion consumption by freight transport,AR-H,SESCO,annual,kg,364ca191-cd72-3e90-8f17-36c64d50bd6f -2011,Chubut,II.1.1,0.5551644,TJ,CO2,74100.0,kg/TJ,41137.68204,Gas Oil combustion consumption by freight transport,AR-U,SESCO,annual,kg,f8d3cbeb-8ac2-3dd7-a81e-dd5d611b0657 -2011,Chubut,II.1.1,0.5551644,TJ,CH4,3.9,kg/TJ,2.16514116,Gas Oil combustion consumption by freight transport,AR-U,SESCO,annual,kg,1d41e956-6306-3614-a101-95dbfdb85bc2 -2011,Chubut,II.1.1,0.5551644,TJ,N2O,3.9,kg/TJ,2.16514116,Gas Oil combustion consumption by freight transport,AR-U,SESCO,annual,kg,1d41e956-6306-3614-a101-95dbfdb85bc2 -2011,Corrientes,II.1.1,3.8384723999999997,TJ,CO2,74100.0,kg/TJ,284430.80484,Gas Oil combustion consumption by freight transport,AR-W,SESCO,annual,kg,7f5f65f8-7a06-358c-a693-29dbc3b2fe15 -2011,Corrientes,II.1.1,3.8384723999999997,TJ,CH4,3.9,kg/TJ,14.970042359999999,Gas Oil combustion consumption by freight transport,AR-W,SESCO,annual,kg,4362353f-518a-39bf-bfbb-b62a7b243d4c -2011,Corrientes,II.1.1,3.8384723999999997,TJ,N2O,3.9,kg/TJ,14.970042359999999,Gas Oil combustion consumption by freight transport,AR-W,SESCO,annual,kg,4362353f-518a-39bf-bfbb-b62a7b243d4c -2011,Córdoba,II.1.1,6.1599048,TJ,CO2,74100.0,kg/TJ,456448.94567999995,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,107b511d-760b-3e33-8bf6-403312baf46f -2011,Córdoba,II.1.1,6.1599048,TJ,CH4,3.9,kg/TJ,24.023628719999998,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,ca8cab6b-639a-3592-a38b-d453f3e3019f -2011,Córdoba,II.1.1,6.1599048,TJ,N2O,3.9,kg/TJ,24.023628719999998,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,ca8cab6b-639a-3592-a38b-d453f3e3019f -2011,Entre Rios,II.1.1,3.0008496,TJ,CO2,74100.0,kg/TJ,222362.95536,Gas Oil combustion consumption by freight transport,AR-E,SESCO,annual,kg,f322056a-dfcd-3b24-8c53-3ecc7a4c4f6d -2011,Entre Rios,II.1.1,3.0008496,TJ,CH4,3.9,kg/TJ,11.70331344,Gas Oil combustion consumption by freight transport,AR-E,SESCO,annual,kg,47826bf7-7b2c-3b54-9b76-cd9e44ffc1ac -2011,Entre Rios,II.1.1,3.0008496,TJ,N2O,3.9,kg/TJ,11.70331344,Gas Oil combustion consumption by freight transport,AR-E,SESCO,annual,kg,47826bf7-7b2c-3b54-9b76-cd9e44ffc1ac -2011,Mendoza,II.1.1,3.1796436,TJ,CO2,74100.0,kg/TJ,235611.59076,Gas Oil combustion consumption by freight transport,AR-M,SESCO,annual,kg,6caf5df5-9547-3a0f-b049-22a9b9cfc13f -2011,Mendoza,II.1.1,3.1796436,TJ,CH4,3.9,kg/TJ,12.40061004,Gas Oil combustion consumption by freight transport,AR-M,SESCO,annual,kg,79eb4633-e8cf-3843-869e-49c495daa119 -2011,Mendoza,II.1.1,3.1796436,TJ,N2O,3.9,kg/TJ,12.40061004,Gas Oil combustion consumption by freight transport,AR-M,SESCO,annual,kg,79eb4633-e8cf-3843-869e-49c495daa119 -2011,Misiones,II.1.1,3.1579716,TJ,CO2,74100.0,kg/TJ,234005.69556000002,Gas Oil combustion consumption by freight transport,AR-N,SESCO,annual,kg,8fca8d71-a4f9-3462-bc20-dff02cda3dbf -2011,Misiones,II.1.1,3.1579716,TJ,CH4,3.9,kg/TJ,12.31608924,Gas Oil combustion consumption by freight transport,AR-N,SESCO,annual,kg,a557dc39-97a3-3ef8-9e22-dcb1cbae3267 -2011,Misiones,II.1.1,3.1579716,TJ,N2O,3.9,kg/TJ,12.31608924,Gas Oil combustion consumption by freight transport,AR-N,SESCO,annual,kg,a557dc39-97a3-3ef8-9e22-dcb1cbae3267 -2011,Rio Negro,II.1.1,0.59598,TJ,CO2,74100.0,kg/TJ,44162.117999999995,Gas Oil combustion consumption by freight transport,AR-R,SESCO,annual,kg,da5642a5-7fc4-35d2-8345-e4c954760c98 -2011,Rio Negro,II.1.1,0.59598,TJ,CH4,3.9,kg/TJ,2.3243219999999996,Gas Oil combustion consumption by freight transport,AR-R,SESCO,annual,kg,67e03775-841c-3dc7-ae7e-7030031bfa0f -2011,Rio Negro,II.1.1,0.59598,TJ,N2O,3.9,kg/TJ,2.3243219999999996,Gas Oil combustion consumption by freight transport,AR-R,SESCO,annual,kg,67e03775-841c-3dc7-ae7e-7030031bfa0f -2011,Salta,II.1.1,0.0964404,TJ,CO2,74100.0,kg/TJ,7146.2336399999995,Gas Oil combustion consumption by freight transport,AR-A,SESCO,annual,kg,53792ecd-291e-37b9-84a9-060a915c5c0e -2011,Salta,II.1.1,0.0964404,TJ,CH4,3.9,kg/TJ,0.37611755999999996,Gas Oil combustion consumption by freight transport,AR-A,SESCO,annual,kg,941d3148-684a-3a5b-b92f-77a9f44e3378 -2011,Salta,II.1.1,0.0964404,TJ,N2O,3.9,kg/TJ,0.37611755999999996,Gas Oil combustion consumption by freight transport,AR-A,SESCO,annual,kg,941d3148-684a-3a5b-b92f-77a9f44e3378 -2011,San Juan,II.1.1,0.8105327999999999,TJ,CO2,74100.0,kg/TJ,60060.48048,Gas Oil combustion consumption by freight transport,AR-J,SESCO,annual,kg,d47c4621-a9ff-3224-a584-f61b68e4a17b -2011,San Juan,II.1.1,0.8105327999999999,TJ,CH4,3.9,kg/TJ,3.16107792,Gas Oil combustion consumption by freight transport,AR-J,SESCO,annual,kg,d4fb4b2c-380c-3b38-b8e6-ae6f3ef19930 -2011,San Juan,II.1.1,0.8105327999999999,TJ,N2O,3.9,kg/TJ,3.16107792,Gas Oil combustion consumption by freight transport,AR-J,SESCO,annual,kg,d4fb4b2c-380c-3b38-b8e6-ae6f3ef19930 -2011,San Luis,II.1.1,1.2645612,TJ,CO2,74100.0,kg/TJ,93703.98492,Gas Oil combustion consumption by freight transport,AR-D,SESCO,annual,kg,74dfc718-f93b-3044-b20b-9272f51f617b -2011,San Luis,II.1.1,1.2645612,TJ,CH4,3.9,kg/TJ,4.9317886799999995,Gas Oil combustion consumption by freight transport,AR-D,SESCO,annual,kg,b98ed6a9-4a8f-37f8-b978-56d741124230 -2011,San Luis,II.1.1,1.2645612,TJ,N2O,3.9,kg/TJ,4.9317886799999995,Gas Oil combustion consumption by freight transport,AR-D,SESCO,annual,kg,b98ed6a9-4a8f-37f8-b978-56d741124230 -2011,Santa Fe,II.1.1,7.899805199999999,TJ,CO2,74100.0,kg/TJ,585375.5653199999,Gas Oil combustion consumption by freight transport,AR-S,SESCO,annual,kg,5e6353aa-24bd-3469-9259-f2713f265d42 -2011,Santa Fe,II.1.1,7.899805199999999,TJ,CH4,3.9,kg/TJ,30.809240279999997,Gas Oil combustion consumption by freight transport,AR-S,SESCO,annual,kg,1fc8bec3-a9bb-382e-a12f-04978e03aacd -2011,Santa Fe,II.1.1,7.899805199999999,TJ,N2O,3.9,kg/TJ,30.809240279999997,Gas Oil combustion consumption by freight transport,AR-S,SESCO,annual,kg,1fc8bec3-a9bb-382e-a12f-04978e03aacd -2011,Santiago del Estero,II.1.1,0.08921639999999999,TJ,CO2,74100.0,kg/TJ,6610.935239999999,Gas Oil combustion consumption by freight transport,AR-G,SESCO,annual,kg,d9067a38-1d95-33d4-8a79-832c7a4406ad -2011,Santiago del Estero,II.1.1,0.08921639999999999,TJ,CH4,3.9,kg/TJ,0.34794395999999994,Gas Oil combustion consumption by freight transport,AR-G,SESCO,annual,kg,98572289-d68d-3c9f-bfec-d79388c08a3f -2011,Santiago del Estero,II.1.1,0.08921639999999999,TJ,N2O,3.9,kg/TJ,0.34794395999999994,Gas Oil combustion consumption by freight transport,AR-G,SESCO,annual,kg,98572289-d68d-3c9f-bfec-d79388c08a3f -2011,Tierra del Fuego,II.1.1,2.9770103999999997,TJ,CO2,74100.0,kg/TJ,220596.47063999998,Gas Oil combustion consumption by freight transport,AR-V,SESCO,annual,kg,337c7857-6675-38bb-b730-99a3fcddbe0d -2011,Tierra del Fuego,II.1.1,2.9770103999999997,TJ,CH4,3.9,kg/TJ,11.61034056,Gas Oil combustion consumption by freight transport,AR-V,SESCO,annual,kg,c9c3f079-1e3c-325c-b199-700bfb71f4c7 -2011,Tierra del Fuego,II.1.1,2.9770103999999997,TJ,N2O,3.9,kg/TJ,11.61034056,Gas Oil combustion consumption by freight transport,AR-V,SESCO,annual,kg,c9c3f079-1e3c-325c-b199-700bfb71f4c7 -2011,Tucuman,II.1.1,1.7691575999999998,TJ,CO2,74100.0,kg/TJ,131094.57815999998,Gas Oil combustion consumption by freight transport,AR-T,SESCO,annual,kg,8aa0100a-bc1b-3bc9-b419-41446ea57896 -2011,Tucuman,II.1.1,1.7691575999999998,TJ,CH4,3.9,kg/TJ,6.899714639999999,Gas Oil combustion consumption by freight transport,AR-T,SESCO,annual,kg,ef8b1d9c-9225-37fe-be7b-c70f020e2356 -2011,Tucuman,II.1.1,1.7691575999999998,TJ,N2O,3.9,kg/TJ,6.899714639999999,Gas Oil combustion consumption by freight transport,AR-T,SESCO,annual,kg,ef8b1d9c-9225-37fe-be7b-c70f020e2356 -2011,Capital Federal,II.1.1,0.02364285,TJ,CO2,73300.0,kg/TJ,1733.020905,Naphtha combustion consumption by freight transport,AR-C,SESCO,annual,kg,2507b1f2-d1da-3ff4-ba6e-8ca3208922a1 -2011,Capital Federal,II.1.1,0.02364285,TJ,CH4,0.5,kg/TJ,0.011821425,Naphtha combustion consumption by freight transport,AR-C,SESCO,annual,kg,9fbc536f-a7bc-3e73-9fbf-d1062e7f509d -2011,Capital Federal,II.1.1,0.02364285,TJ,N2O,2.0,kg/TJ,0.0472857,Naphtha combustion consumption by freight transport,AR-C,SESCO,annual,kg,03d61c62-60b6-31f9-b9d1-46edfb659c87 -2011,Misiones,II.1.1,0.0010279499999999997,TJ,CO2,73300.0,kg/TJ,75.34873499999998,Naphtha combustion consumption by freight transport,AR-N,SESCO,annual,kg,0e399a06-86b9-36bd-ab3a-dff4cdcb0dce -2011,Misiones,II.1.1,0.0010279499999999997,TJ,CH4,0.5,kg/TJ,0.0005139749999999998,Naphtha combustion consumption by freight transport,AR-N,SESCO,annual,kg,f8a94eb8-cfb8-3564-9cdc-1de56e7b659b -2011,Misiones,II.1.1,0.0010279499999999997,TJ,N2O,2.0,kg/TJ,0.0020558999999999994,Naphtha combustion consumption by freight transport,AR-N,SESCO,annual,kg,9ddd844d-221a-3839-ab5a-0fcbefea97b9 -2011,Buenos Aires,II.1.1,5.36898285,TJ,CO2,73300.0,kg/TJ,393546.442905,Naphtha combustion consumption by freight transport,AR-B,SESCO,annual,kg,a2f4261d-fa48-3456-8685-37da3f3147dc -2011,Buenos Aires,II.1.1,5.36898285,TJ,CH4,0.5,kg/TJ,2.684491425,Naphtha combustion consumption by freight transport,AR-B,SESCO,annual,kg,bf895e8a-2b1b-3d26-87e1-5f5462d11ae2 -2011,Buenos Aires,II.1.1,5.36898285,TJ,N2O,2.0,kg/TJ,10.7379657,Naphtha combustion consumption by freight transport,AR-B,SESCO,annual,kg,f710b2e6-e4c1-3386-9f4a-4714934dbbce -2011,Capital Federal,II.1.1,112.9847257,TJ,CO2,73300.0,kg/TJ,8281780.39381,Naphtha combustion consumption by freight transport,AR-C,SESCO,annual,kg,f55c9be6-125c-34f0-a5e7-1ecc86891a7e -2011,Capital Federal,II.1.1,112.9847257,TJ,CH4,0.5,kg/TJ,56.49236285,Naphtha combustion consumption by freight transport,AR-C,SESCO,annual,kg,8f9f90ca-86c2-3d4a-94f3-9b18e20f3e9a -2011,Capital Federal,II.1.1,112.9847257,TJ,N2O,2.0,kg/TJ,225.9694514,Naphtha combustion consumption by freight transport,AR-C,SESCO,annual,kg,7c1455a1-3fb5-34b7-9780-da9a0a589e7b -2011,Chaco,II.1.1,0.006853,TJ,CO2,73300.0,kg/TJ,502.32489999999996,Naphtha combustion consumption by freight transport,AR-H,SESCO,annual,kg,f9167392-6169-341e-ae0e-81b19820e3d8 -2011,Chaco,II.1.1,0.006853,TJ,CH4,0.5,kg/TJ,0.0034265,Naphtha combustion consumption by freight transport,AR-H,SESCO,annual,kg,a9ed263f-255e-3299-b8ae-661d6e780717 -2011,Chaco,II.1.1,0.006853,TJ,N2O,2.0,kg/TJ,0.013706,Naphtha combustion consumption by freight transport,AR-H,SESCO,annual,kg,e2c320bf-52b9-329e-8e75-365f22d49293 -2011,Corrientes,II.1.1,0.0294679,TJ,CO2,73300.0,kg/TJ,2159.9970700000003,Naphtha combustion consumption by freight transport,AR-W,SESCO,annual,kg,c8501fdd-6c9c-3002-a3cc-e82dd8a91e10 -2011,Corrientes,II.1.1,0.0294679,TJ,CH4,0.5,kg/TJ,0.01473395,Naphtha combustion consumption by freight transport,AR-W,SESCO,annual,kg,bfd81837-71ea-37c6-aa67-7dccdcbe89ff -2011,Corrientes,II.1.1,0.0294679,TJ,N2O,2.0,kg/TJ,0.0589358,Naphtha combustion consumption by freight transport,AR-W,SESCO,annual,kg,3d8138d8-3e67-3be1-b044-1fddb159076a -2011,Córdoba,II.1.1,0.4851924,TJ,CO2,73300.0,kg/TJ,35564.602920000005,Naphtha combustion consumption by freight transport,AR-X,SESCO,annual,kg,4f49c947-1cf1-3b5c-ada1-5522f4b993b4 -2011,Córdoba,II.1.1,0.4851924,TJ,CH4,0.5,kg/TJ,0.2425962,Naphtha combustion consumption by freight transport,AR-X,SESCO,annual,kg,3b5fbd96-d05a-3dcd-8bdb-b00c0fd70118 -2011,Córdoba,II.1.1,0.4851924,TJ,N2O,2.0,kg/TJ,0.9703848,Naphtha combustion consumption by freight transport,AR-X,SESCO,annual,kg,4362ef68-81cc-3d55-994d-2cd5bb887c2e -2011,Entre Rios,II.1.1,18.8327293,TJ,CO2,73300.0,kg/TJ,1380439.05769,Naphtha combustion consumption by freight transport,AR-E,SESCO,annual,kg,81d844a4-b806-3d36-9f12-987ecbb7b46d -2011,Entre Rios,II.1.1,18.8327293,TJ,CH4,0.5,kg/TJ,9.41636465,Naphtha combustion consumption by freight transport,AR-E,SESCO,annual,kg,e5c59ef0-4b70-3c09-9852-9652e30e7a91 -2011,Entre Rios,II.1.1,18.8327293,TJ,N2O,2.0,kg/TJ,37.6654586,Naphtha combustion consumption by freight transport,AR-E,SESCO,annual,kg,b503f701-4a25-3b76-8d07-ef06ca686cdc -2011,Mendoza,II.1.1,0.00171325,TJ,CO2,73300.0,kg/TJ,125.58122499999999,Naphtha combustion consumption by freight transport,AR-M,SESCO,annual,kg,f2cddae2-7a60-35b1-94b4-f6cebdc54b4b -2011,Mendoza,II.1.1,0.00171325,TJ,CH4,0.5,kg/TJ,0.000856625,Naphtha combustion consumption by freight transport,AR-M,SESCO,annual,kg,fb47f5a0-33c0-3e15-bfe7-269510c32a91 -2011,Mendoza,II.1.1,0.00171325,TJ,N2O,2.0,kg/TJ,0.0034265,Naphtha combustion consumption by freight transport,AR-M,SESCO,annual,kg,65dc5524-e219-3bf9-b74a-75b8e1305629 -2011,Misiones,II.1.1,0.0013706,TJ,CO2,73300.0,kg/TJ,100.46498,Naphtha combustion consumption by freight transport,AR-N,SESCO,annual,kg,cd02507f-ea7c-3883-953f-0e52885288be -2011,Misiones,II.1.1,0.0013706,TJ,CH4,0.5,kg/TJ,0.0006853,Naphtha combustion consumption by freight transport,AR-N,SESCO,annual,kg,afe80d52-644e-344c-b5e7-31e68f9a9475 -2011,Misiones,II.1.1,0.0013706,TJ,N2O,2.0,kg/TJ,0.0027412,Naphtha combustion consumption by freight transport,AR-N,SESCO,annual,kg,4fdd8c9d-8340-32cf-936a-36dfd7f8e10e -2011,San Luis,II.1.1,0.020558999999999997,TJ,CO2,73300.0,kg/TJ,1506.9746999999998,Naphtha combustion consumption by freight transport,AR-D,SESCO,annual,kg,d679f321-5ae9-3498-8644-d30ab6842952 -2011,San Luis,II.1.1,0.020558999999999997,TJ,CH4,0.5,kg/TJ,0.010279499999999999,Naphtha combustion consumption by freight transport,AR-D,SESCO,annual,kg,976df112-5196-3fbb-9d76-2dbc8ac6bb20 -2011,San Luis,II.1.1,0.020558999999999997,TJ,N2O,2.0,kg/TJ,0.041117999999999995,Naphtha combustion consumption by freight transport,AR-D,SESCO,annual,kg,a2719d0d-9e2c-3450-95f7-2b7dff8093c1 -2011,Santa Fe,II.1.1,0.72059295,TJ,CO2,73300.0,kg/TJ,52819.463235,Naphtha combustion consumption by freight transport,AR-S,SESCO,annual,kg,2203c219-2b28-34cf-9271-fa56229f8c6b -2011,Santa Fe,II.1.1,0.72059295,TJ,CH4,0.5,kg/TJ,0.360296475,Naphtha combustion consumption by freight transport,AR-S,SESCO,annual,kg,d6fc3dbb-10d3-3bd1-83a9-f9a45d27691d -2011,Santa Fe,II.1.1,0.72059295,TJ,N2O,2.0,kg/TJ,1.4411859,Naphtha combustion consumption by freight transport,AR-S,SESCO,annual,kg,75682e6e-fa59-3f47-849a-24c452f9f9ed -2011,Tierra del Fuego,II.1.1,0.02638405,TJ,CO2,73300.0,kg/TJ,1933.950865,Naphtha combustion consumption by freight transport,AR-V,SESCO,annual,kg,1a4bf7c6-3110-3101-8bcf-a2f20f29912f -2011,Tierra del Fuego,II.1.1,0.02638405,TJ,CH4,0.5,kg/TJ,0.013192025,Naphtha combustion consumption by freight transport,AR-V,SESCO,annual,kg,8abaadf8-9dae-355d-a8c3-73fbb5cd9d97 -2011,Tierra del Fuego,II.1.1,0.02638405,TJ,N2O,2.0,kg/TJ,0.0527681,Naphtha combustion consumption by freight transport,AR-V,SESCO,annual,kg,a9a753af-bd31-3b1f-b621-a93de1329626 -2011,Tucuman,II.1.1,0.04625775,TJ,CO2,73300.0,kg/TJ,3390.693075,Naphtha combustion consumption by freight transport,AR-T,SESCO,annual,kg,10e08a7b-1dc9-3951-adc0-c76f2e8aca1f -2011,Tucuman,II.1.1,0.04625775,TJ,CH4,0.5,kg/TJ,0.023128875,Naphtha combustion consumption by freight transport,AR-T,SESCO,annual,kg,c01e58de-6bdb-3c4a-bb7e-6da0994c6b8c -2011,Tucuman,II.1.1,0.04625775,TJ,N2O,2.0,kg/TJ,0.0925155,Naphtha combustion consumption by freight transport,AR-T,SESCO,annual,kg,ba80ffe6-8759-3da5-9fa8-81631e51f28b -2011,Buenos Aires,II.1.1,3.4456884,TJ,CO2,73300.0,kg/TJ,252568.95971999998,Naphtha combustion consumption by freight transport,AR-B,SESCO,annual,kg,ecc52136-7e64-3846-8288-fe738284be77 -2011,Buenos Aires,II.1.1,3.4456884,TJ,CH4,0.5,kg/TJ,1.7228442,Naphtha combustion consumption by freight transport,AR-B,SESCO,annual,kg,f1420fba-2c40-3d71-9eb6-fc34fc4592e1 -2011,Buenos Aires,II.1.1,3.4456884,TJ,N2O,2.0,kg/TJ,6.8913768,Naphtha combustion consumption by freight transport,AR-B,SESCO,annual,kg,45aaa304-cbb9-3616-9fa7-d4cd9cadef59 -2011,Capital Federal,II.1.1,20.26397835,TJ,CO2,73300.0,kg/TJ,1485349.6130549998,Naphtha combustion consumption by freight transport,AR-C,SESCO,annual,kg,dc08d232-8284-3701-890e-61b7e07f042e -2011,Capital Federal,II.1.1,20.26397835,TJ,CH4,0.5,kg/TJ,10.131989175,Naphtha combustion consumption by freight transport,AR-C,SESCO,annual,kg,eb5bdac8-3ad5-335f-9b88-abb2c77102d3 -2011,Capital Federal,II.1.1,20.26397835,TJ,N2O,2.0,kg/TJ,40.5279567,Naphtha combustion consumption by freight transport,AR-C,SESCO,annual,kg,2f6979b9-df4f-309b-82cc-0a6b42a63e37 -2011,Chaco,II.1.1,0.04283125,TJ,CO2,73300.0,kg/TJ,3139.530625,Naphtha combustion consumption by freight transport,AR-H,SESCO,annual,kg,2f1cc5b0-78df-3f94-90a9-d0a7d7c65b4a -2011,Chaco,II.1.1,0.04283125,TJ,CH4,0.5,kg/TJ,0.021415625,Naphtha combustion consumption by freight transport,AR-H,SESCO,annual,kg,edb06cb2-f11f-3ba0-90f5-3dffb211b6a1 -2011,Chaco,II.1.1,0.04283125,TJ,N2O,2.0,kg/TJ,0.0856625,Naphtha combustion consumption by freight transport,AR-H,SESCO,annual,kg,a652e474-fce6-3af9-a4e2-d342b0b45ba8 -2011,Corrientes,II.1.1,0.029810549999999998,TJ,CO2,73300.0,kg/TJ,2185.113315,Naphtha combustion consumption by freight transport,AR-W,SESCO,annual,kg,4e9eb252-5696-3c0d-81ff-de884eead7a6 -2011,Corrientes,II.1.1,0.029810549999999998,TJ,CH4,0.5,kg/TJ,0.014905274999999999,Naphtha combustion consumption by freight transport,AR-W,SESCO,annual,kg,6445c37a-2049-3a02-9bca-4674303ee483 -2011,Corrientes,II.1.1,0.029810549999999998,TJ,N2O,2.0,kg/TJ,0.059621099999999996,Naphtha combustion consumption by freight transport,AR-W,SESCO,annual,kg,40fb5d8a-af0b-3d45-9518-0958eda2bc11 -2011,Córdoba,II.1.1,0.60546255,TJ,CO2,73300.0,kg/TJ,44380.40491500001,Naphtha combustion consumption by freight transport,AR-X,SESCO,annual,kg,fcc80619-c2b0-31a0-b461-92c98f299be8 -2011,Córdoba,II.1.1,0.60546255,TJ,CH4,0.5,kg/TJ,0.302731275,Naphtha combustion consumption by freight transport,AR-X,SESCO,annual,kg,69b780fa-5613-32a2-ae70-15b5e7b092f2 -2011,Córdoba,II.1.1,0.60546255,TJ,N2O,2.0,kg/TJ,1.2109251,Naphtha combustion consumption by freight transport,AR-X,SESCO,annual,kg,0bd2193f-d218-3604-ae3a-d06227d40452 -2011,Entre Rios,II.1.1,0.3789709,TJ,CO2,73300.0,kg/TJ,27778.56697,Naphtha combustion consumption by freight transport,AR-E,SESCO,annual,kg,03041fdb-b75a-3229-828b-17e4ef4bcff8 -2011,Entre Rios,II.1.1,0.3789709,TJ,CH4,0.5,kg/TJ,0.18948545,Naphtha combustion consumption by freight transport,AR-E,SESCO,annual,kg,d006d0a1-6520-38e9-bfc5-5c1419e27a56 -2011,Entre Rios,II.1.1,0.3789709,TJ,N2O,2.0,kg/TJ,0.7579418,Naphtha combustion consumption by freight transport,AR-E,SESCO,annual,kg,1d992173-e1c6-3b62-8a86-bea006801efd -2011,Misiones,II.1.1,0.0157619,TJ,CO2,73300.0,kg/TJ,1155.34727,Naphtha combustion consumption by freight transport,AR-N,SESCO,annual,kg,8a513b09-b1b4-3bfd-9274-982e8d8ca0c8 -2011,Misiones,II.1.1,0.0157619,TJ,CH4,0.5,kg/TJ,0.00788095,Naphtha combustion consumption by freight transport,AR-N,SESCO,annual,kg,4636aa7b-9684-3a1a-95c3-d456ac29f08b -2011,Misiones,II.1.1,0.0157619,TJ,N2O,2.0,kg/TJ,0.0315238,Naphtha combustion consumption by freight transport,AR-N,SESCO,annual,kg,fe48c6ba-9f19-35f0-a5e8-3126145b628d -2011,San Luis,II.1.1,0.0047971,TJ,CO2,73300.0,kg/TJ,351.62743,Naphtha combustion consumption by freight transport,AR-D,SESCO,annual,kg,f09219e9-1e2b-3188-97a6-4d9672df1cd0 -2011,San Luis,II.1.1,0.0047971,TJ,CH4,0.5,kg/TJ,0.00239855,Naphtha combustion consumption by freight transport,AR-D,SESCO,annual,kg,ddddba18-487c-3871-882c-30eddc0d3ae4 -2011,San Luis,II.1.1,0.0047971,TJ,N2O,2.0,kg/TJ,0.0095942,Naphtha combustion consumption by freight transport,AR-D,SESCO,annual,kg,f0898f12-52b4-3c54-ab37-32972e5a8dca -2011,Santa Fe,II.1.1,0.5454988,TJ,CO2,73300.0,kg/TJ,39985.06204,Naphtha combustion consumption by freight transport,AR-S,SESCO,annual,kg,9213fffe-858d-3c6d-91d8-bb36eb7809b7 -2011,Santa Fe,II.1.1,0.5454988,TJ,CH4,0.5,kg/TJ,0.2727494,Naphtha combustion consumption by freight transport,AR-S,SESCO,annual,kg,d3421af6-ee7b-3d4e-9f27-f939743ec277 -2011,Santa Fe,II.1.1,0.5454988,TJ,N2O,2.0,kg/TJ,1.0909976,Naphtha combustion consumption by freight transport,AR-S,SESCO,annual,kg,f4f3027b-5011-393e-b9a7-a43370ab8420 -2011,Tierra del Fuego,II.1.1,0.9035680499999998,TJ,CO2,73300.0,kg/TJ,66231.53806499999,Naphtha combustion consumption by freight transport,AR-V,SESCO,annual,kg,b4740e14-9ff6-3854-9f06-1426cc1fe5e5 -2011,Tierra del Fuego,II.1.1,0.9035680499999998,TJ,CH4,0.5,kg/TJ,0.4517840249999999,Naphtha combustion consumption by freight transport,AR-V,SESCO,annual,kg,66d0aa7d-4523-380d-8b18-143e5112683d -2011,Tierra del Fuego,II.1.1,0.9035680499999998,TJ,N2O,2.0,kg/TJ,1.8071360999999997,Naphtha combustion consumption by freight transport,AR-V,SESCO,annual,kg,a11252cc-f984-3514-a021-5951fdcc74d9 -2011,Tucuman,II.1.1,0.055851950000000004,TJ,CO2,73300.0,kg/TJ,4093.947935,Naphtha combustion consumption by freight transport,AR-T,SESCO,annual,kg,aa6b214c-c267-3a87-9bca-b98dd4bd7be5 -2011,Tucuman,II.1.1,0.055851950000000004,TJ,CH4,0.5,kg/TJ,0.027925975000000002,Naphtha combustion consumption by freight transport,AR-T,SESCO,annual,kg,c7eb5cef-1583-3109-bed1-ab3019ef5725 -2011,Tucuman,II.1.1,0.055851950000000004,TJ,N2O,2.0,kg/TJ,0.11170390000000001,Naphtha combustion consumption by freight transport,AR-T,SESCO,annual,kg,2814a4ba-e6e4-36a2-af59-f9266adb4b4a -2011,Buenos Aires,II.1.1,1340.8408608,TJ,CO2,74100.0,kg/TJ,99356307.78528,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,bcfe09b6-56eb-306a-af28-c170dcef8260 -2011,Buenos Aires,II.1.1,1340.8408608,TJ,CH4,3.9,kg/TJ,5229.27935712,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,5b794ea9-4c7e-3faf-8dfc-4641a9e42c9a -2011,Buenos Aires,II.1.1,1340.8408608,TJ,N2O,3.9,kg/TJ,5229.27935712,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,5b794ea9-4c7e-3faf-8dfc-4641a9e42c9a -2011,Capital Federal,II.1.1,826.4609976,TJ,CO2,74100.0,kg/TJ,61240759.92216,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,ab96f945-6f9c-3f81-82e1-db5d7d7916bf -2011,Capital Federal,II.1.1,826.4609976,TJ,CH4,3.9,kg/TJ,3223.19789064,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,925daf8b-bc1c-31f2-88ef-ee88782b01e7 -2011,Capital Federal,II.1.1,826.4609976,TJ,N2O,3.9,kg/TJ,3223.19789064,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,925daf8b-bc1c-31f2-88ef-ee88782b01e7 -2011,Chubut,II.1.1,235.36080959999998,TJ,CO2,74100.0,kg/TJ,17440235.991359998,Gas Oil combustion consumption by public passenger transport,AR-U,SESCO,annual,kg,ac5de0c4-caf8-396d-a0f0-32a1b67c138e -2011,Chubut,II.1.1,235.36080959999998,TJ,CH4,3.9,kg/TJ,917.9071574399999,Gas Oil combustion consumption by public passenger transport,AR-U,SESCO,annual,kg,7139fb7e-3d8a-35ac-8afc-bf06a455759c -2011,Chubut,II.1.1,235.36080959999998,TJ,N2O,3.9,kg/TJ,917.9071574399999,Gas Oil combustion consumption by public passenger transport,AR-U,SESCO,annual,kg,7139fb7e-3d8a-35ac-8afc-bf06a455759c -2011,Córdoba,II.1.1,13.96941,TJ,CO2,74100.0,kg/TJ,1035133.281,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,428889fa-684f-39f0-9576-01fb3be82b74 -2011,Córdoba,II.1.1,13.96941,TJ,CH4,3.9,kg/TJ,54.480699,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,dd0aef25-7d14-3003-b9dd-788824b46131 -2011,Córdoba,II.1.1,13.96941,TJ,N2O,3.9,kg/TJ,54.480699,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,dd0aef25-7d14-3003-b9dd-788824b46131 -2011,Entre Rios,II.1.1,234.65791439999998,TJ,CO2,74100.0,kg/TJ,17388151.457039997,Gas Oil combustion consumption by public passenger transport,AR-E,SESCO,annual,kg,47596a0d-35fc-3584-8e3b-82948bab8fa5 -2011,Entre Rios,II.1.1,234.65791439999998,TJ,CH4,3.9,kg/TJ,915.16586616,Gas Oil combustion consumption by public passenger transport,AR-E,SESCO,annual,kg,2437ffbd-6ce3-3f12-9708-f3027bac61c9 -2011,Entre Rios,II.1.1,234.65791439999998,TJ,N2O,3.9,kg/TJ,915.16586616,Gas Oil combustion consumption by public passenger transport,AR-E,SESCO,annual,kg,2437ffbd-6ce3-3f12-9708-f3027bac61c9 -2011,La Pampa,II.1.1,68.714688,TJ,CO2,74100.0,kg/TJ,5091758.380799999,Gas Oil combustion consumption by public passenger transport,AR-L,SESCO,annual,kg,146f4ebb-b478-3957-8d7e-d46eabefd045 -2011,La Pampa,II.1.1,68.714688,TJ,CH4,3.9,kg/TJ,267.9872832,Gas Oil combustion consumption by public passenger transport,AR-L,SESCO,annual,kg,d3587fef-235e-3887-8baf-d8e0b6b511bd -2011,La Pampa,II.1.1,68.714688,TJ,N2O,3.9,kg/TJ,267.9872832,Gas Oil combustion consumption by public passenger transport,AR-L,SESCO,annual,kg,d3587fef-235e-3887-8baf-d8e0b6b511bd -2011,Mendoza,II.1.1,97.9354068,TJ,CO2,74100.0,kg/TJ,7257013.643879999,Gas Oil combustion consumption by public passenger transport,AR-M,SESCO,annual,kg,0f19e6b4-4a6d-3eb7-898f-194c33b93c28 -2011,Mendoza,II.1.1,97.9354068,TJ,CH4,3.9,kg/TJ,381.94808651999995,Gas Oil combustion consumption by public passenger transport,AR-M,SESCO,annual,kg,094fb7e6-4f2d-34f2-8511-35490a769939 -2011,Mendoza,II.1.1,97.9354068,TJ,N2O,3.9,kg/TJ,381.94808651999995,Gas Oil combustion consumption by public passenger transport,AR-M,SESCO,annual,kg,094fb7e6-4f2d-34f2-8511-35490a769939 -2011,Misiones,II.1.1,470.65660319999995,TJ,CO2,74100.0,kg/TJ,34875654.29712,Gas Oil combustion consumption by public passenger transport,AR-N,SESCO,annual,kg,c9320f26-14a5-394a-95b0-99d6a8f078e4 -2011,Misiones,II.1.1,470.65660319999995,TJ,CH4,3.9,kg/TJ,1835.5607524799998,Gas Oil combustion consumption by public passenger transport,AR-N,SESCO,annual,kg,f1792697-0de7-38d9-aa98-6da325ea5414 -2011,Misiones,II.1.1,470.65660319999995,TJ,N2O,3.9,kg/TJ,1835.5607524799998,Gas Oil combustion consumption by public passenger transport,AR-N,SESCO,annual,kg,f1792697-0de7-38d9-aa98-6da325ea5414 -2011,Neuquén,II.1.1,25.062584400000002,TJ,CO2,74100.0,kg/TJ,1857137.5040400003,Gas Oil combustion consumption by public passenger transport,AR-Q,SESCO,annual,kg,0dd555bc-a6a7-31ce-9397-0ddbf5fd4356 -2011,Neuquén,II.1.1,25.062584400000002,TJ,CH4,3.9,kg/TJ,97.74407916000001,Gas Oil combustion consumption by public passenger transport,AR-Q,SESCO,annual,kg,7a2e945d-6c43-3657-8d19-39eb20f1a1cf -2011,Neuquén,II.1.1,25.062584400000002,TJ,N2O,3.9,kg/TJ,97.74407916000001,Gas Oil combustion consumption by public passenger transport,AR-Q,SESCO,annual,kg,7a2e945d-6c43-3657-8d19-39eb20f1a1cf -2011,Rio Negro,II.1.1,168.5384484,TJ,CO2,74100.0,kg/TJ,12488699.02644,Gas Oil combustion consumption by public passenger transport,AR-R,SESCO,annual,kg,7db80599-f60e-3bdf-b62f-7b289e8ece4d -2011,Rio Negro,II.1.1,168.5384484,TJ,CH4,3.9,kg/TJ,657.29994876,Gas Oil combustion consumption by public passenger transport,AR-R,SESCO,annual,kg,50a50c52-369a-3520-a6a8-35a9dac563cb -2011,Rio Negro,II.1.1,168.5384484,TJ,N2O,3.9,kg/TJ,657.29994876,Gas Oil combustion consumption by public passenger transport,AR-R,SESCO,annual,kg,50a50c52-369a-3520-a6a8-35a9dac563cb -2011,Salta,II.1.1,20.057435999999996,TJ,CO2,74100.0,kg/TJ,1486256.0075999997,Gas Oil combustion consumption by public passenger transport,AR-A,SESCO,annual,kg,b4e73d07-c207-3aaf-9194-49aec8f9983a -2011,Salta,II.1.1,20.057435999999996,TJ,CH4,3.9,kg/TJ,78.22400039999998,Gas Oil combustion consumption by public passenger transport,AR-A,SESCO,annual,kg,d2dc29f9-1dbe-3fb3-b77c-e865622df547 -2011,Salta,II.1.1,20.057435999999996,TJ,N2O,3.9,kg/TJ,78.22400039999998,Gas Oil combustion consumption by public passenger transport,AR-A,SESCO,annual,kg,d2dc29f9-1dbe-3fb3-b77c-e865622df547 -2011,San Juan,II.1.1,5.3020548,TJ,CO2,74100.0,kg/TJ,392882.26067999995,Gas Oil combustion consumption by public passenger transport,AR-J,SESCO,annual,kg,1a6bcf2e-9006-367a-8656-79b6bf93f0c0 -2011,San Juan,II.1.1,5.3020548,TJ,CH4,3.9,kg/TJ,20.67801372,Gas Oil combustion consumption by public passenger transport,AR-J,SESCO,annual,kg,1d9ded26-1d21-3382-8145-78bafc10ab9a -2011,San Juan,II.1.1,5.3020548,TJ,N2O,3.9,kg/TJ,20.67801372,Gas Oil combustion consumption by public passenger transport,AR-J,SESCO,annual,kg,1d9ded26-1d21-3382-8145-78bafc10ab9a -2011,San Luis,II.1.1,14.354087999999999,TJ,CO2,74100.0,kg/TJ,1063637.9208,Gas Oil combustion consumption by public passenger transport,AR-D,SESCO,annual,kg,274529bc-f234-3c49-99e2-85f205c5abbd -2011,San Luis,II.1.1,14.354087999999999,TJ,CH4,3.9,kg/TJ,55.98094319999999,Gas Oil combustion consumption by public passenger transport,AR-D,SESCO,annual,kg,a81363a2-36a8-3cb4-9492-3b25fe85500d -2011,San Luis,II.1.1,14.354087999999999,TJ,N2O,3.9,kg/TJ,55.98094319999999,Gas Oil combustion consumption by public passenger transport,AR-D,SESCO,annual,kg,a81363a2-36a8-3cb4-9492-3b25fe85500d -2011,Santa Fe,II.1.1,86.3564184,TJ,CO2,74100.0,kg/TJ,6399010.60344,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,63bcced5-b536-31b3-a197-e911bccac908 -2011,Santa Fe,II.1.1,86.3564184,TJ,CH4,3.9,kg/TJ,336.79003176,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,d4642b0e-8b67-3450-9a38-66a20b46ebe8 -2011,Santa Fe,II.1.1,86.3564184,TJ,N2O,3.9,kg/TJ,336.79003176,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,d4642b0e-8b67-3450-9a38-66a20b46ebe8 -2011,Tucuman,II.1.1,4.7862612,TJ,CO2,74100.0,kg/TJ,354661.95492,Gas Oil combustion consumption by public passenger transport,AR-T,SESCO,annual,kg,e532787b-353d-341b-a0c0-aa9e4368a438 -2011,Tucuman,II.1.1,4.7862612,TJ,CH4,3.9,kg/TJ,18.66641868,Gas Oil combustion consumption by public passenger transport,AR-T,SESCO,annual,kg,a8d05470-c989-3c12-8627-374e970f8f7a -2011,Tucuman,II.1.1,4.7862612,TJ,N2O,3.9,kg/TJ,18.66641868,Gas Oil combustion consumption by public passenger transport,AR-T,SESCO,annual,kg,a8d05470-c989-3c12-8627-374e970f8f7a -2011,Buenos Aires,II.1.1,1.2725076,TJ,CO2,74100.0,kg/TJ,94292.81315999999,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,662ad627-4dc7-3d27-ac78-8ceff0a1f8a5 -2011,Buenos Aires,II.1.1,1.2725076,TJ,CH4,3.9,kg/TJ,4.96277964,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,1cc1d8e2-ae47-3447-9506-3932221c9660 -2011,Buenos Aires,II.1.1,1.2725076,TJ,N2O,3.9,kg/TJ,4.96277964,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,1cc1d8e2-ae47-3447-9506-3932221c9660 -2011,Capital Federal,II.1.1,26.194946400000003,TJ,CO2,74100.0,kg/TJ,1941045.5282400001,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,748b136d-5188-3b46-987e-25bf724683da -2011,Capital Federal,II.1.1,26.194946400000003,TJ,CH4,3.9,kg/TJ,102.16029096000001,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,e5ab069f-8784-3655-8224-1eb58f3fdc86 -2011,Capital Federal,II.1.1,26.194946400000003,TJ,N2O,3.9,kg/TJ,102.16029096000001,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,e5ab069f-8784-3655-8224-1eb58f3fdc86 -2011,Chubut,II.1.1,2.5576572,TJ,CO2,74100.0,kg/TJ,189522.39852,Gas Oil combustion consumption by public passenger transport,AR-U,SESCO,annual,kg,e5b9154b-6259-3ffd-9a15-e9c43a9601a8 -2011,Chubut,II.1.1,2.5576572,TJ,CH4,3.9,kg/TJ,9.97486308,Gas Oil combustion consumption by public passenger transport,AR-U,SESCO,annual,kg,21e6ce2b-3edc-3894-b380-7f2b345aa5c3 -2011,Chubut,II.1.1,2.5576572,TJ,N2O,3.9,kg/TJ,9.97486308,Gas Oil combustion consumption by public passenger transport,AR-U,SESCO,annual,kg,21e6ce2b-3edc-3894-b380-7f2b345aa5c3 -2011,Córdoba,II.1.1,0.16506839999999998,TJ,CO2,74100.0,kg/TJ,12231.56844,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,25287059-77bd-36a5-b999-c01d11fd5c92 -2011,Córdoba,II.1.1,0.16506839999999998,TJ,CH4,3.9,kg/TJ,0.6437667599999999,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,3cb46e09-de86-32ca-b314-3e14fe3e44ff -2011,Córdoba,II.1.1,0.16506839999999998,TJ,N2O,3.9,kg/TJ,0.6437667599999999,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,3cb46e09-de86-32ca-b314-3e14fe3e44ff -2011,Entre Rios,II.1.1,19.0392132,TJ,CO2,74100.0,kg/TJ,1410805.6981199998,Gas Oil combustion consumption by public passenger transport,AR-E,SESCO,annual,kg,8d653517-8355-342f-8323-7cc7e0640380 -2011,Entre Rios,II.1.1,19.0392132,TJ,CH4,3.9,kg/TJ,74.25293148,Gas Oil combustion consumption by public passenger transport,AR-E,SESCO,annual,kg,652cf498-300a-3ec4-b6f1-44514cfc08a6 -2011,Entre Rios,II.1.1,19.0392132,TJ,N2O,3.9,kg/TJ,74.25293148,Gas Oil combustion consumption by public passenger transport,AR-E,SESCO,annual,kg,652cf498-300a-3ec4-b6f1-44514cfc08a6 -2011,Mendoza,II.1.1,0.1874628,TJ,CO2,74100.0,kg/TJ,13890.993480000001,Gas Oil combustion consumption by public passenger transport,AR-M,SESCO,annual,kg,5e9e4fe5-4809-3347-ab03-3e1377446c81 -2011,Mendoza,II.1.1,0.1874628,TJ,CH4,3.9,kg/TJ,0.73110492,Gas Oil combustion consumption by public passenger transport,AR-M,SESCO,annual,kg,3fe5eb41-4765-36ab-8358-1c152ac36428 -2011,Mendoza,II.1.1,0.1874628,TJ,N2O,3.9,kg/TJ,0.73110492,Gas Oil combustion consumption by public passenger transport,AR-M,SESCO,annual,kg,3fe5eb41-4765-36ab-8358-1c152ac36428 -2011,Misiones,II.1.1,1.6329851999999998,TJ,CO2,74100.0,kg/TJ,121004.20331999999,Gas Oil combustion consumption by public passenger transport,AR-N,SESCO,annual,kg,96874d3e-ae22-353d-a368-606ae9b5e8ff -2011,Misiones,II.1.1,1.6329851999999998,TJ,CH4,3.9,kg/TJ,6.368642279999999,Gas Oil combustion consumption by public passenger transport,AR-N,SESCO,annual,kg,9dbb418c-b91a-3417-a129-48096a884ab7 -2011,Misiones,II.1.1,1.6329851999999998,TJ,N2O,3.9,kg/TJ,6.368642279999999,Gas Oil combustion consumption by public passenger transport,AR-N,SESCO,annual,kg,9dbb418c-b91a-3417-a129-48096a884ab7 -2011,Neuquén,II.1.1,0.3525312,TJ,CO2,74100.0,kg/TJ,26122.56192,Gas Oil combustion consumption by public passenger transport,AR-Q,SESCO,annual,kg,165e5d07-ccea-306e-abcb-a91f9903a1b5 -2011,Neuquén,II.1.1,0.3525312,TJ,CH4,3.9,kg/TJ,1.3748716799999998,Gas Oil combustion consumption by public passenger transport,AR-Q,SESCO,annual,kg,58cc3032-9f95-3d8f-8717-434826e537c2 -2011,Neuquén,II.1.1,0.3525312,TJ,N2O,3.9,kg/TJ,1.3748716799999998,Gas Oil combustion consumption by public passenger transport,AR-Q,SESCO,annual,kg,58cc3032-9f95-3d8f-8717-434826e537c2 -2011,Rio Negro,II.1.1,0.0476784,TJ,CO2,74100.0,kg/TJ,3532.9694400000003,Gas Oil combustion consumption by public passenger transport,AR-R,SESCO,annual,kg,350e51ef-c633-3ec6-8dc7-2fd0ee719afd -2011,Rio Negro,II.1.1,0.0476784,TJ,CH4,3.9,kg/TJ,0.18594576000000002,Gas Oil combustion consumption by public passenger transport,AR-R,SESCO,annual,kg,e159ca78-cbd2-3c02-a579-d6002338fe96 -2011,Rio Negro,II.1.1,0.0476784,TJ,N2O,3.9,kg/TJ,0.18594576000000002,Gas Oil combustion consumption by public passenger transport,AR-R,SESCO,annual,kg,e159ca78-cbd2-3c02-a579-d6002338fe96 -2011,Salta,II.1.1,0.15459359999999997,TJ,CO2,74100.0,kg/TJ,11455.385759999997,Gas Oil combustion consumption by public passenger transport,AR-A,SESCO,annual,kg,69559ae2-5659-392b-bc25-5132b47ead70 -2011,Salta,II.1.1,0.15459359999999997,TJ,CH4,3.9,kg/TJ,0.6029150399999998,Gas Oil combustion consumption by public passenger transport,AR-A,SESCO,annual,kg,d9b3052e-10b7-3e5c-b142-687d70a0c85c -2011,Salta,II.1.1,0.15459359999999997,TJ,N2O,3.9,kg/TJ,0.6029150399999998,Gas Oil combustion consumption by public passenger transport,AR-A,SESCO,annual,kg,d9b3052e-10b7-3e5c-b142-687d70a0c85c -2011,San Juan,II.1.1,0.03864839999999999,TJ,CO2,74100.0,kg/TJ,2863.8464399999993,Gas Oil combustion consumption by public passenger transport,AR-J,SESCO,annual,kg,93c0d158-4bd0-3b11-9c6a-1f14f41c3601 -2011,San Juan,II.1.1,0.03864839999999999,TJ,CH4,3.9,kg/TJ,0.15072875999999996,Gas Oil combustion consumption by public passenger transport,AR-J,SESCO,annual,kg,1604c40e-7ba5-3b88-9aac-9667645158e4 -2011,San Juan,II.1.1,0.03864839999999999,TJ,N2O,3.9,kg/TJ,0.15072875999999996,Gas Oil combustion consumption by public passenger transport,AR-J,SESCO,annual,kg,1604c40e-7ba5-3b88-9aac-9667645158e4 -2011,San Luis,II.1.1,0.0242004,TJ,CO2,74100.0,kg/TJ,1793.24964,Gas Oil combustion consumption by public passenger transport,AR-D,SESCO,annual,kg,ab591f3d-2958-3f74-bece-c0232a32154c -2011,San Luis,II.1.1,0.0242004,TJ,CH4,3.9,kg/TJ,0.09438156,Gas Oil combustion consumption by public passenger transport,AR-D,SESCO,annual,kg,84c07d94-9177-37bb-b996-5c3e0c9dd32b -2011,San Luis,II.1.1,0.0242004,TJ,N2O,3.9,kg/TJ,0.09438156,Gas Oil combustion consumption by public passenger transport,AR-D,SESCO,annual,kg,84c07d94-9177-37bb-b996-5c3e0c9dd32b -2011,Santa Fe,II.1.1,0.0122808,TJ,CO2,74100.0,kg/TJ,910.0072799999999,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,2af9d74c-15ea-3182-895c-c0c1acf1bddc -2011,Santa Fe,II.1.1,0.0122808,TJ,CH4,3.9,kg/TJ,0.04789512,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,0715a717-dd66-3431-b9d0-f86a6616316e -2011,Santa Fe,II.1.1,0.0122808,TJ,N2O,3.9,kg/TJ,0.04789512,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,0715a717-dd66-3431-b9d0-f86a6616316e -2011,Tucuman,II.1.1,0.059598,TJ,CO2,74100.0,kg/TJ,4416.2118,Gas Oil combustion consumption by public passenger transport,AR-T,SESCO,annual,kg,b4439a41-5faf-350a-af19-68284f1fe06c -2011,Tucuman,II.1.1,0.059598,TJ,CH4,3.9,kg/TJ,0.23243219999999998,Gas Oil combustion consumption by public passenger transport,AR-T,SESCO,annual,kg,3fefd840-1a91-3a4b-8ab4-ad8ee951833e -2011,Tucuman,II.1.1,0.059598,TJ,N2O,3.9,kg/TJ,0.23243219999999998,Gas Oil combustion consumption by public passenger transport,AR-T,SESCO,annual,kg,3fefd840-1a91-3a4b-8ab4-ad8ee951833e -2011,Capital Federal,II.1.1,0.00171325,TJ,CO2,73300.0,kg/TJ,125.58122499999999,Naphtha combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,5489bc26-2ede-3769-b3c8-a99d01654edf -2011,Capital Federal,II.1.1,0.00171325,TJ,CH4,0.5,kg/TJ,0.000856625,Naphtha combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,983ce1a7-f5cb-301a-b2c5-88d448fa5304 -2011,Capital Federal,II.1.1,0.00171325,TJ,N2O,2.0,kg/TJ,0.0034265,Naphtha combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,e45c64d9-0e6d-38d0-954a-b6a20d4a3dd6 -2011,Capital Federal,II.1.1,0.020559000000000004,TJ,CO2,73300.0,kg/TJ,1506.9747000000002,Naphtha combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,0839258f-ae09-3cbe-b2a0-afe912c3156e -2011,Capital Federal,II.1.1,0.020559000000000004,TJ,CH4,0.5,kg/TJ,0.010279500000000002,Naphtha combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,86c4d340-6b35-3635-99cf-93be9ea09d8e -2011,Capital Federal,II.1.1,0.020559000000000004,TJ,N2O,2.0,kg/TJ,0.04111800000000001,Naphtha combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,7e4a13ab-b9b0-31e8-8128-dec33c03dc02 -2011,Córdoba,II.1.1,0.0322091,TJ,CO2,73300.0,kg/TJ,2360.92703,Naphtha combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,422b88a5-f15e-3b87-8aa5-49249e031a8d -2011,Córdoba,II.1.1,0.0322091,TJ,CH4,0.5,kg/TJ,0.01610455,Naphtha combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,7ee631a4-5fc8-3fa1-9412-31bfd70170fb -2011,Córdoba,II.1.1,0.0322091,TJ,N2O,2.0,kg/TJ,0.0644182,Naphtha combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,3b729ae9-7cc0-3422-82a9-1150c7c26656 -2011,Tucuman,II.1.1,0.00171325,TJ,CO2,73300.0,kg/TJ,125.58122499999999,Naphtha combustion consumption by public passenger transport,AR-T,SESCO,annual,kg,f5cc1e9d-7e39-3dec-b77e-bad2b0608026 -2011,Tucuman,II.1.1,0.00171325,TJ,CH4,0.5,kg/TJ,0.000856625,Naphtha combustion consumption by public passenger transport,AR-T,SESCO,annual,kg,8b766c8b-b726-3096-9b86-ea6239093267 -2011,Tucuman,II.1.1,0.00171325,TJ,N2O,2.0,kg/TJ,0.0034265,Naphtha combustion consumption by public passenger transport,AR-T,SESCO,annual,kg,817328d1-9171-37a2-bd89-54ec27a668fa -2011,Capital Federal,II.1.1,0.37314585,TJ,CO2,73300.0,kg/TJ,27351.590805,Naphtha combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,4834f926-d326-3fe8-8fd5-b98759cdc083 -2011,Capital Federal,II.1.1,0.37314585,TJ,CH4,0.5,kg/TJ,0.186572925,Naphtha combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,8ee1afc9-fea7-30c9-8d9d-11867ac69c95 -2011,Capital Federal,II.1.1,0.37314585,TJ,N2O,2.0,kg/TJ,0.7462917,Naphtha combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,d28f880a-5565-3904-bbdf-dc8bb53b32e4 -2011,Córdoba,II.1.1,0.020558999999999997,TJ,CO2,73300.0,kg/TJ,1506.9746999999998,Naphtha combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,0a63d8e6-6777-3866-bd6a-8a55b62a3132 -2011,Córdoba,II.1.1,0.020558999999999997,TJ,CH4,0.5,kg/TJ,0.010279499999999999,Naphtha combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,f63e8349-d3ed-375c-bb91-1452274e721c -2011,Córdoba,II.1.1,0.020558999999999997,TJ,N2O,2.0,kg/TJ,0.041117999999999995,Naphtha combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,280a70b3-54f4-32f7-ba19-24bf8338b352 -2011,Tucuman,II.1.1,0.00788095,TJ,CO2,73300.0,kg/TJ,577.673635,Naphtha combustion consumption by public passenger transport,AR-T,SESCO,annual,kg,48c4c980-a882-31c1-acc5-a4d8a6b707eb -2011,Tucuman,II.1.1,0.00788095,TJ,CH4,0.5,kg/TJ,0.003940475,Naphtha combustion consumption by public passenger transport,AR-T,SESCO,annual,kg,ac61c562-d8dd-309b-870d-c3e70c6cbaea -2011,Tucuman,II.1.1,0.00788095,TJ,N2O,2.0,kg/TJ,0.0157619,Naphtha combustion consumption by public passenger transport,AR-T,SESCO,annual,kg,ac20ecf7-9fed-38bf-a4ef-8b5fb8d38bb9 -2011,Mendoza,II.1.1,70.66027199999999,TJ,CO2,69300.0,kg/TJ,4896756.849599999,Motor Gasoline combustion consumption by public passenger transport,AR-M,SESCO,annual,kg,d72380e2-9c34-3f09-b53b-2c4c63e252a7 -2011,Mendoza,II.1.1,70.66027199999999,TJ,CH4,33.0,kg/TJ,2331.788976,Motor Gasoline combustion consumption by public passenger transport,AR-M,SESCO,annual,kg,e8de0528-d641-336a-85c5-49411e43d232 -2011,Mendoza,II.1.1,70.66027199999999,TJ,N2O,3.2,kg/TJ,226.1128704,Motor Gasoline combustion consumption by public passenger transport,AR-M,SESCO,annual,kg,8e3ac6c2-15a1-3b92-95d5-b1541529abf2 -2011,Buenos Aires,II.5.1,191.10635081999996,TJ,CO2,74100.0,kg/TJ,14160980.595761998,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,5cae9e7a-f206-3a80-9576-4496824ce6ce -2011,Buenos Aires,II.5.1,191.10635081999996,TJ,CH4,3.9,kg/TJ,745.3147681979998,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,11cd3ef1-0dfb-30e3-a811-241847c4da9d -2011,Buenos Aires,II.5.1,191.10635081999996,TJ,N2O,3.9,kg/TJ,745.3147681979998,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,11cd3ef1-0dfb-30e3-a811-241847c4da9d -2011,Córdoba,II.5.1,321.058283616,TJ,CO2,74100.0,kg/TJ,23790418.8159456,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,17436fbd-8306-3344-b5a2-41f30271d250 -2011,Córdoba,II.5.1,321.058283616,TJ,CH4,3.9,kg/TJ,1252.1273061023999,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,1166a2c0-84bb-36f0-bfc3-c0e68c8864f9 -2011,Córdoba,II.5.1,321.058283616,TJ,N2O,3.9,kg/TJ,1252.1273061023999,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,1166a2c0-84bb-36f0-bfc3-c0e68c8864f9 -2011,Entre Rios,II.5.1,277.385425464,TJ,CO2,74100.0,kg/TJ,20554260.0268824,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,4748b2cf-0a3a-3d10-b102-7a0677ba6841 -2011,Entre Rios,II.5.1,277.385425464,TJ,CH4,3.9,kg/TJ,1081.8031593096,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,97a14368-95fd-3046-a746-d3266152509f -2011,Entre Rios,II.5.1,277.385425464,TJ,N2O,3.9,kg/TJ,1081.8031593096,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,97a14368-95fd-3046-a746-d3266152509f -2011,La Pampa,II.5.1,14.617149959999999,TJ,CO2,74100.0,kg/TJ,1083130.812036,Gas Oil combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,9bdc48ba-06d7-3207-a1de-e15b9b0b1c2f -2011,La Pampa,II.5.1,14.617149959999999,TJ,CH4,3.9,kg/TJ,57.006884844,Gas Oil combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,c0efd6bd-f22d-3791-9dde-405bfabfbeda -2011,La Pampa,II.5.1,14.617149959999999,TJ,N2O,3.9,kg/TJ,57.006884844,Gas Oil combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,c0efd6bd-f22d-3791-9dde-405bfabfbeda -2011,Salta,II.5.1,56.501331264,TJ,CO2,74100.0,kg/TJ,4186748.6466624,Gas Oil combustion consumption by agriculture machines,AR-A,SESCO,annual,kg,3de0ab25-31e1-3a98-8f3f-d3bd84c582af -2011,Salta,II.5.1,56.501331264,TJ,CH4,3.9,kg/TJ,220.3551919296,Gas Oil combustion consumption by agriculture machines,AR-A,SESCO,annual,kg,4abe56c9-94ca-3821-b5b0-5be5e920121f -2011,Salta,II.5.1,56.501331264,TJ,N2O,3.9,kg/TJ,220.3551919296,Gas Oil combustion consumption by agriculture machines,AR-A,SESCO,annual,kg,4abe56c9-94ca-3821-b5b0-5be5e920121f -2011,Santa Fe,II.5.1,248.768069592,TJ,CO2,74100.0,kg/TJ,18433713.956767198,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,59b5db2d-bb77-3d3e-957d-009756edba55 -2011,Santa Fe,II.5.1,248.768069592,TJ,CH4,3.9,kg/TJ,970.1954714087999,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,85360e45-8e33-321e-8bbb-acf3849955db -2011,Santa Fe,II.5.1,248.768069592,TJ,N2O,3.9,kg/TJ,970.1954714087999,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,85360e45-8e33-321e-8bbb-acf3849955db -2011,Santiago del Estero,II.5.1,104.99442147599999,TJ,CO2,74100.0,kg/TJ,7780086.631371599,Gas Oil combustion consumption by agriculture machines,AR-G,SESCO,annual,kg,c638f968-e0af-3592-8093-29068e69a023 -2011,Santiago del Estero,II.5.1,104.99442147599999,TJ,CH4,3.9,kg/TJ,409.47824375639993,Gas Oil combustion consumption by agriculture machines,AR-G,SESCO,annual,kg,83c2d3a3-dd3b-307e-b867-0dbb1ff6b205 -2011,Santiago del Estero,II.5.1,104.99442147599999,TJ,N2O,3.9,kg/TJ,409.47824375639993,Gas Oil combustion consumption by agriculture machines,AR-G,SESCO,annual,kg,83c2d3a3-dd3b-307e-b867-0dbb1ff6b205 -2011,Córdoba,II.5.1,1.7076442459999999,TJ,CO2,73300.0,kg/TJ,125170.3232318,Naphtha combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,daee4a41-73cc-3927-882a-f9fdae710dbc -2011,Córdoba,II.5.1,1.7076442459999999,TJ,CH4,0.5,kg/TJ,0.8538221229999999,Naphtha combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,f0308184-65fb-31da-a15e-4415679408e4 -2011,Córdoba,II.5.1,1.7076442459999999,TJ,N2O,2.0,kg/TJ,3.4152884919999997,Naphtha combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,bc6ef69e-32f6-3d3f-a2af-1387ce1b3607 -2011,Buenos Aires,II.1.1,160.139295036,TJ,CO2,74100.0,kg/TJ,11866321.762167599,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,0ce1b0d0-67fc-375a-84e9-0de4260b8c8d -2011,Buenos Aires,II.1.1,160.139295036,TJ,CH4,3.9,kg/TJ,624.5432506404,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,a4ce5b22-f27f-3364-850b-e1979353e231 -2011,Buenos Aires,II.1.1,160.139295036,TJ,N2O,3.9,kg/TJ,624.5432506404,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,a4ce5b22-f27f-3364-850b-e1979353e231 -2011,Capital Federal,II.1.1,54.60554055600001,TJ,CO2,74100.0,kg/TJ,4046270.5551996008,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,0bfa9748-a763-381b-8a49-059d8e930151 -2011,Capital Federal,II.1.1,54.60554055600001,TJ,CH4,3.9,kg/TJ,212.96160816840003,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,594ad9c7-839b-3cc5-8d7b-f6d9b549b49d -2011,Capital Federal,II.1.1,54.60554055600001,TJ,N2O,3.9,kg/TJ,212.96160816840003,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,594ad9c7-839b-3cc5-8d7b-f6d9b549b49d -2011,Córdoba,II.1.1,16.585162608,TJ,CO2,74100.0,kg/TJ,1228960.5492528002,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,b80f4174-0b26-31d4-a18c-25d37edca007 -2011,Córdoba,II.1.1,16.585162608,TJ,CH4,3.9,kg/TJ,64.6821341712,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,50a3dffb-3377-31a5-a8b3-fc725925b549 -2011,Córdoba,II.1.1,16.585162608,TJ,N2O,3.9,kg/TJ,64.6821341712,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,50a3dffb-3377-31a5-a8b3-fc725925b549 -2011,Entre Rios,II.1.1,47.282864328,TJ,CO2,74100.0,kg/TJ,3503660.2467048,Gas Oil combustion consumption by public passenger transport,AR-E,SESCO,annual,kg,aa453193-38c4-3e74-a399-c6a331ab5541 -2011,Entre Rios,II.1.1,47.282864328,TJ,CH4,3.9,kg/TJ,184.40317087920002,Gas Oil combustion consumption by public passenger transport,AR-E,SESCO,annual,kg,b5bdd0f9-89c6-3efc-ad52-0a2876b88df6 -2011,Entre Rios,II.1.1,47.282864328,TJ,N2O,3.9,kg/TJ,184.40317087920002,Gas Oil combustion consumption by public passenger transport,AR-E,SESCO,annual,kg,b5bdd0f9-89c6-3efc-ad52-0a2876b88df6 -2011,San Juan,II.1.1,2.98833402,TJ,CO2,74100.0,kg/TJ,221435.55088199998,Gas Oil combustion consumption by public passenger transport,AR-J,SESCO,annual,kg,e135256d-9837-3b1e-8506-73b7a208cbd3 -2011,San Juan,II.1.1,2.98833402,TJ,CH4,3.9,kg/TJ,11.654502678,Gas Oil combustion consumption by public passenger transport,AR-J,SESCO,annual,kg,b9e2e277-f103-3efd-97cd-f0acb0a38855 -2011,San Juan,II.1.1,2.98833402,TJ,N2O,3.9,kg/TJ,11.654502678,Gas Oil combustion consumption by public passenger transport,AR-J,SESCO,annual,kg,b9e2e277-f103-3efd-97cd-f0acb0a38855 -2011,Santa Fe,II.1.1,306.308966964,TJ,CO2,74100.0,kg/TJ,22697494.4520324,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,270695ea-2834-39cc-b71d-1e576c4b7bca -2011,Santa Fe,II.1.1,306.308966964,TJ,CH4,3.9,kg/TJ,1194.6049711596,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,22d661c2-e80d-309d-8c3d-09c59bcdd67f -2011,Santa Fe,II.1.1,306.308966964,TJ,N2O,3.9,kg/TJ,1194.6049711596,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,22d661c2-e80d-309d-8c3d-09c59bcdd67f -2011,Buenos Aires,II.5.1,1.122562,TJ,CO2,69300.0,kg/TJ,77793.5466,Motor Gasoline combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,6a9bba89-4036-3204-9ccb-179845b2ca6f -2011,Buenos Aires,II.5.1,1.122562,TJ,CH4,33.0,kg/TJ,37.044546000000004,Motor Gasoline combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,a1eea6b2-dde1-3975-b432-7eaf2ef6602e -2011,Buenos Aires,II.5.1,1.122562,TJ,N2O,3.2,kg/TJ,3.5921984000000005,Motor Gasoline combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,e8ede0b6-45f9-30e1-9c53-0b4f4c5a5a5d -2011,Buenos Aires,II.5.1,790.515999,TJ,CO2,74100.0,kg/TJ,58577235.5259,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,371a3675-217f-3b38-ae98-17b3708cf09b -2011,Buenos Aires,II.5.1,790.515999,TJ,CH4,3.9,kg/TJ,3083.0123961,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,7e6de7c3-b32e-3b7a-84bb-c09d3259a032 -2011,Buenos Aires,II.5.1,790.515999,TJ,N2O,3.9,kg/TJ,3083.0123961,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,7e6de7c3-b32e-3b7a-84bb-c09d3259a032 -2011,Corrientes,II.5.1,26.23019952,TJ,CO2,74100.0,kg/TJ,1943657.784432,Gas Oil combustion consumption by agriculture machines,AR-W,SESCO,annual,kg,4f8765ad-5df9-395e-b049-bd5d44012482 -2011,Corrientes,II.5.1,26.23019952,TJ,CH4,3.9,kg/TJ,102.29777812799999,Gas Oil combustion consumption by agriculture machines,AR-W,SESCO,annual,kg,068f33c2-031b-3681-8a37-5058cefe687d -2011,Corrientes,II.5.1,26.23019952,TJ,N2O,3.9,kg/TJ,102.29777812799999,Gas Oil combustion consumption by agriculture machines,AR-W,SESCO,annual,kg,068f33c2-031b-3681-8a37-5058cefe687d -2011,Córdoba,II.5.1,277.35363264,TJ,CO2,74100.0,kg/TJ,20551904.178624,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,3ea6fbc7-bb6d-31ea-8608-206f1caad863 -2011,Córdoba,II.5.1,277.35363264,TJ,CH4,3.9,kg/TJ,1081.679167296,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,4160e508-d3af-33d4-8328-22c980bf8db8 -2011,Córdoba,II.5.1,277.35363264,TJ,N2O,3.9,kg/TJ,1081.679167296,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,4160e508-d3af-33d4-8328-22c980bf8db8 -2011,Entre Rios,II.5.1,180.15514608,TJ,CO2,74100.0,kg/TJ,13349496.324528001,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,5597e492-9758-3d61-9b53-75ae24f11641 -2011,Entre Rios,II.5.1,180.15514608,TJ,CH4,3.9,kg/TJ,702.605069712,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,de6d916e-f383-3567-9537-5f03cc3c8a18 -2011,Entre Rios,II.5.1,180.15514608,TJ,N2O,3.9,kg/TJ,702.605069712,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,de6d916e-f383-3567-9537-5f03cc3c8a18 -2011,La Pampa,II.5.1,17.00869128,TJ,CO2,74100.0,kg/TJ,1260344.023848,Gas Oil combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,28d9e286-581f-3bd1-8197-0e47450819a4 -2011,La Pampa,II.5.1,17.00869128,TJ,CH4,3.9,kg/TJ,66.333895992,Gas Oil combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,eee427d5-8892-3d3f-8e5d-c1da1e00b1b8 -2011,La Pampa,II.5.1,17.00869128,TJ,N2O,3.9,kg/TJ,66.333895992,Gas Oil combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,eee427d5-8892-3d3f-8e5d-c1da1e00b1b8 -2011,Rio Negro,II.5.1,1.8865114799999998,TJ,CO2,74100.0,kg/TJ,139790.500668,Gas Oil combustion consumption by agriculture machines,AR-R,SESCO,annual,kg,7509f8f5-03e5-387c-a062-0c9ce60c6a81 -2011,Rio Negro,II.5.1,1.8865114799999998,TJ,CH4,3.9,kg/TJ,7.357394771999999,Gas Oil combustion consumption by agriculture machines,AR-R,SESCO,annual,kg,03772ea3-ef6d-3e0b-b9d7-8bcbe4b0a9c2 -2011,Rio Negro,II.5.1,1.8865114799999998,TJ,N2O,3.9,kg/TJ,7.357394771999999,Gas Oil combustion consumption by agriculture machines,AR-R,SESCO,annual,kg,03772ea3-ef6d-3e0b-b9d7-8bcbe4b0a9c2 -2011,Salta,II.5.1,136.04919467999997,TJ,CO2,74100.0,kg/TJ,10081245.325787999,Gas Oil combustion consumption by agriculture machines,AR-A,SESCO,annual,kg,76a93ab3-6730-335f-9204-767af9eda4f2 -2011,Salta,II.5.1,136.04919467999997,TJ,CH4,3.9,kg/TJ,530.5918592519998,Gas Oil combustion consumption by agriculture machines,AR-A,SESCO,annual,kg,7f18915f-6ca2-3091-b2b9-38725b5ff9fe -2011,Salta,II.5.1,136.04919467999997,TJ,N2O,3.9,kg/TJ,530.5918592519998,Gas Oil combustion consumption by agriculture machines,AR-A,SESCO,annual,kg,7f18915f-6ca2-3091-b2b9-38725b5ff9fe -2011,Santa Cruz,II.5.1,14.322627479999998,TJ,CO2,74100.0,kg/TJ,1061306.696268,Gas Oil combustion consumption by agriculture machines,AR-Z,SESCO,annual,kg,2a644335-4386-3737-8135-13150bc8b050 -2011,Santa Cruz,II.5.1,14.322627479999998,TJ,CH4,3.9,kg/TJ,55.85824717199999,Gas Oil combustion consumption by agriculture machines,AR-Z,SESCO,annual,kg,a8075189-9843-37dd-befc-cad47810d104 -2011,Santa Cruz,II.5.1,14.322627479999998,TJ,N2O,3.9,kg/TJ,55.85824717199999,Gas Oil combustion consumption by agriculture machines,AR-Z,SESCO,annual,kg,a8075189-9843-37dd-befc-cad47810d104 -2011,Santa Fe,II.5.1,103.9188654,TJ,CO2,74100.0,kg/TJ,7700387.92614,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,03dfe5bc-c55d-3ffd-a0f7-76eace1c4c5d -2011,Santa Fe,II.5.1,103.9188654,TJ,CH4,3.9,kg/TJ,405.28357506,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,86d39460-83a8-3540-ab52-cd47f92ac59b -2011,Santa Fe,II.5.1,103.9188654,TJ,N2O,3.9,kg/TJ,405.28357506,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,86d39460-83a8-3540-ab52-cd47f92ac59b -2011,Santiago del Estero,II.5.1,31.133417279999996,TJ,CO2,74100.0,kg/TJ,2306986.220448,Gas Oil combustion consumption by agriculture machines,AR-G,SESCO,annual,kg,b3e0684f-fe62-3a72-ad9d-4fcfded4de82 -2011,Santiago del Estero,II.5.1,31.133417279999996,TJ,CH4,3.9,kg/TJ,121.42032739199998,Gas Oil combustion consumption by agriculture machines,AR-G,SESCO,annual,kg,ad77dc2a-6df4-3aa2-aa3a-8879769aaede -2011,Santiago del Estero,II.5.1,31.133417279999996,TJ,N2O,3.9,kg/TJ,121.42032739199998,Gas Oil combustion consumption by agriculture machines,AR-G,SESCO,annual,kg,ad77dc2a-6df4-3aa2-aa3a-8879769aaede -2011,Santiago del Estero,II.5.1,1.7927105349999999,TJ,CO2,73300.0,kg/TJ,131405.68221549998,Naphtha combustion consumption by agriculture machines,AR-G,SESCO,annual,kg,dd84d0b9-2eb7-39e7-b1d4-db13f7d5426a -2011,Santiago del Estero,II.5.1,1.7927105349999999,TJ,CH4,0.5,kg/TJ,0.8963552674999999,Naphtha combustion consumption by agriculture machines,AR-G,SESCO,annual,kg,8392dc6e-b95b-31c3-977c-d4e33fbd3e9e -2011,Santiago del Estero,II.5.1,1.7927105349999999,TJ,N2O,2.0,kg/TJ,3.5854210699999998,Naphtha combustion consumption by agriculture machines,AR-G,SESCO,annual,kg,a92aaeb6-0757-3ed3-954f-e3d0d2a0aac4 -2011,Rio Negro,II.2.1,15.248057999999999,TJ,CO2,74100.0,kg/TJ,1129881.0977999999,Gas Oil combustion consumption by railway transport,AR-R,SESCO,annual,kg,00f71a62-e943-3bde-82c6-e57acaca770f -2011,Rio Negro,II.2.1,15.248057999999999,TJ,CH4,3.9,kg/TJ,59.46742619999999,Gas Oil combustion consumption by railway transport,AR-R,SESCO,annual,kg,a38c5d5d-7ea5-3d1c-8f24-ab1061f52ce8 -2011,Rio Negro,II.2.1,15.248057999999999,TJ,N2O,3.9,kg/TJ,59.46742619999999,Gas Oil combustion consumption by railway transport,AR-R,SESCO,annual,kg,a38c5d5d-7ea5-3d1c-8f24-ab1061f52ce8 -2011,Buenos Aires,II.1.1,2.0484319999999996,TJ,CO2,69300.0,kg/TJ,141956.33759999997,Motor Gasoline combustion consumption by freight transport,AR-B,SESCO,annual,kg,8ad22042-4c15-3fc8-8241-f5d69ce7edde -2011,Buenos Aires,II.1.1,2.0484319999999996,TJ,CH4,33.0,kg/TJ,67.59825599999999,Motor Gasoline combustion consumption by freight transport,AR-B,SESCO,annual,kg,c3488938-7668-3855-af67-4a582481e39f -2011,Buenos Aires,II.1.1,2.0484319999999996,TJ,N2O,3.2,kg/TJ,6.554982399999999,Motor Gasoline combustion consumption by freight transport,AR-B,SESCO,annual,kg,02c2d67d-c5b8-37a2-9d99-9eedc0f9df73 -2011,Buenos Aires,II.1.1,439.54074024,TJ,CO2,74100.0,kg/TJ,32569968.851784,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,05cb1f8a-8db0-30fb-9c9f-8b2bcdb68724 -2011,Buenos Aires,II.1.1,439.54074024,TJ,CH4,3.9,kg/TJ,1714.208886936,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,45f16c9e-8b64-31ab-9df2-ca87c0f4d60a -2011,Buenos Aires,II.1.1,439.54074024,TJ,N2O,3.9,kg/TJ,1714.208886936,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,45f16c9e-8b64-31ab-9df2-ca87c0f4d60a -2011,Chubut,II.1.1,10.1152254,TJ,CO2,74100.0,kg/TJ,749538.20214,Gas Oil combustion consumption by freight transport,AR-U,SESCO,annual,kg,18e6601d-103b-3fd0-87b8-11780540482e -2011,Chubut,II.1.1,10.1152254,TJ,CH4,3.9,kg/TJ,39.44937906,Gas Oil combustion consumption by freight transport,AR-U,SESCO,annual,kg,a7244136-0496-350f-a5a5-e1d786b9f693 -2011,Chubut,II.1.1,10.1152254,TJ,N2O,3.9,kg/TJ,39.44937906,Gas Oil combustion consumption by freight transport,AR-U,SESCO,annual,kg,a7244136-0496-350f-a5a5-e1d786b9f693 -2011,Córdoba,II.1.1,67.45915679999999,TJ,CO2,74100.0,kg/TJ,4998723.518879999,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,126fdfdc-e036-3eea-ad38-8bb22a0bb83b -2011,Córdoba,II.1.1,67.45915679999999,TJ,CH4,3.9,kg/TJ,263.09071151999996,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,4560a04d-3d0b-316b-aa16-e7ecac6c880d -2011,Córdoba,II.1.1,67.45915679999999,TJ,N2O,3.9,kg/TJ,263.09071151999996,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,4560a04d-3d0b-316b-aa16-e7ecac6c880d -2011,San Luis,II.1.1,29.720077800000002,TJ,CO2,74100.0,kg/TJ,2202257.76498,Gas Oil combustion consumption by freight transport,AR-D,SESCO,annual,kg,fafe7a81-94b4-3eed-a5ff-91c9cf15421d -2011,San Luis,II.1.1,29.720077800000002,TJ,CH4,3.9,kg/TJ,115.90830342000001,Gas Oil combustion consumption by freight transport,AR-D,SESCO,annual,kg,da5c02bb-cc5b-3a31-a967-385b4cb60503 -2011,San Luis,II.1.1,29.720077800000002,TJ,N2O,3.9,kg/TJ,115.90830342000001,Gas Oil combustion consumption by freight transport,AR-D,SESCO,annual,kg,da5c02bb-cc5b-3a31-a967-385b4cb60503 -2011,Santa Fe,II.1.1,1.78779552,TJ,CO2,74100.0,kg/TJ,132475.648032,Gas Oil combustion consumption by freight transport,AR-S,SESCO,annual,kg,6b4360ff-72e8-3a32-8cbc-b7d9a3fa70e9 -2011,Santa Fe,II.1.1,1.78779552,TJ,CH4,3.9,kg/TJ,6.972402528,Gas Oil combustion consumption by freight transport,AR-S,SESCO,annual,kg,b6595520-2ec0-3277-9bde-e1309b90a140 -2011,Santa Fe,II.1.1,1.78779552,TJ,N2O,3.9,kg/TJ,6.972402528,Gas Oil combustion consumption by freight transport,AR-S,SESCO,annual,kg,b6595520-2ec0-3277-9bde-e1309b90a140 -2011,Buenos Aires,II.1.1,343.15090824,TJ,CO2,74100.0,kg/TJ,25427482.300584,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,b80949d7-672b-3518-9bfc-4f275b670b2f -2011,Buenos Aires,II.1.1,343.15090824,TJ,CH4,3.9,kg/TJ,1338.288542136,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,a3f8e50f-2a8c-3b92-aa24-d8d4a80f652b -2011,Buenos Aires,II.1.1,343.15090824,TJ,N2O,3.9,kg/TJ,1338.288542136,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,a3f8e50f-2a8c-3b92-aa24-d8d4a80f652b -2011,Capital Federal,II.1.1,112.68948768,TJ,CO2,74100.0,kg/TJ,8350291.037088,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,1cc46c9c-f7bc-33e6-a1fe-fb0b2ab6dd37 -2011,Capital Federal,II.1.1,112.68948768,TJ,CH4,3.9,kg/TJ,439.48900195199997,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,b6508c13-6e74-3833-8d83-48eb0a418d46 -2011,Capital Federal,II.1.1,112.68948768,TJ,N2O,3.9,kg/TJ,439.48900195199997,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,b6508c13-6e74-3833-8d83-48eb0a418d46 -2011,Córdoba,II.1.1,19.42616676,TJ,CO2,74100.0,kg/TJ,1439478.956916,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,7954ce6e-be2f-3e3e-825b-f7422a0527ee -2011,Córdoba,II.1.1,19.42616676,TJ,CH4,3.9,kg/TJ,75.762050364,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,d35adcf7-7c74-3748-a02d-2ac1ee516e3c -2011,Córdoba,II.1.1,19.42616676,TJ,N2O,3.9,kg/TJ,75.762050364,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,d35adcf7-7c74-3748-a02d-2ac1ee516e3c -2011,Entre Rios,II.1.1,26.12657124,TJ,CO2,74100.0,kg/TJ,1935978.928884,Gas Oil combustion consumption by public passenger transport,AR-E,SESCO,annual,kg,436250d3-ed39-311f-97e6-1e6b4a1215dd -2011,Entre Rios,II.1.1,26.12657124,TJ,CH4,3.9,kg/TJ,101.893627836,Gas Oil combustion consumption by public passenger transport,AR-E,SESCO,annual,kg,cb1d7c1d-06e6-3dfe-b72f-a56a98bba884 -2011,Entre Rios,II.1.1,26.12657124,TJ,N2O,3.9,kg/TJ,101.893627836,Gas Oil combustion consumption by public passenger transport,AR-E,SESCO,annual,kg,cb1d7c1d-06e6-3dfe-b72f-a56a98bba884 -2011,Formosa,II.1.1,14.387499,TJ,CO2,74100.0,kg/TJ,1066113.6759,Gas Oil combustion consumption by public passenger transport,AR-P,SESCO,annual,kg,05a07f34-e109-3825-89c1-5698a65f6c59 -2011,Formosa,II.1.1,14.387499,TJ,CH4,3.9,kg/TJ,56.111246099999995,Gas Oil combustion consumption by public passenger transport,AR-P,SESCO,annual,kg,37d90070-69b1-30ad-95ea-f99fa130d0b3 -2011,Formosa,II.1.1,14.387499,TJ,N2O,3.9,kg/TJ,56.111246099999995,Gas Oil combustion consumption by public passenger transport,AR-P,SESCO,annual,kg,37d90070-69b1-30ad-95ea-f99fa130d0b3 -2011,Neuquén,II.1.1,9.39546216,TJ,CO2,74100.0,kg/TJ,696203.7460559999,Gas Oil combustion consumption by public passenger transport,AR-Q,SESCO,annual,kg,832d7ef2-1f9c-3997-9490-774777429e0a -2011,Neuquén,II.1.1,9.39546216,TJ,CH4,3.9,kg/TJ,36.64230242399999,Gas Oil combustion consumption by public passenger transport,AR-Q,SESCO,annual,kg,e542813d-059b-3bef-8e33-6d697c7fe66d -2011,Neuquén,II.1.1,9.39546216,TJ,N2O,3.9,kg/TJ,36.64230242399999,Gas Oil combustion consumption by public passenger transport,AR-Q,SESCO,annual,kg,e542813d-059b-3bef-8e33-6d697c7fe66d -2011,Rio Negro,II.1.1,91.746606,TJ,CO2,74100.0,kg/TJ,6798423.5046,Gas Oil combustion consumption by public passenger transport,AR-R,SESCO,annual,kg,cb3dbdf8-5345-37e9-8b5e-fda580346d22 -2011,Rio Negro,II.1.1,91.746606,TJ,CH4,3.9,kg/TJ,357.8117634,Gas Oil combustion consumption by public passenger transport,AR-R,SESCO,annual,kg,cbf0a217-6bb1-3944-b336-c1bf12bb284d -2011,Rio Negro,II.1.1,91.746606,TJ,N2O,3.9,kg/TJ,357.8117634,Gas Oil combustion consumption by public passenger transport,AR-R,SESCO,annual,kg,cbf0a217-6bb1-3944-b336-c1bf12bb284d -2011,San Juan,II.1.1,4.18060104,TJ,CO2,74100.0,kg/TJ,309782.537064,Gas Oil combustion consumption by public passenger transport,AR-J,SESCO,annual,kg,d50e64e8-4e9b-323d-aacc-adca09a44d0d -2011,San Juan,II.1.1,4.18060104,TJ,CH4,3.9,kg/TJ,16.304344055999998,Gas Oil combustion consumption by public passenger transport,AR-J,SESCO,annual,kg,44abf9da-c694-3936-b9d5-ba57437e3c0c -2011,San Juan,II.1.1,4.18060104,TJ,N2O,3.9,kg/TJ,16.304344055999998,Gas Oil combustion consumption by public passenger transport,AR-J,SESCO,annual,kg,44abf9da-c694-3936-b9d5-ba57437e3c0c -2011,San Luis,II.1.1,25.851011759999995,TJ,CO2,74100.0,kg/TJ,1915559.9714159996,Gas Oil combustion consumption by public passenger transport,AR-D,SESCO,annual,kg,3395b4ed-b02e-383e-976e-8e108ffe2aa8 -2011,San Luis,II.1.1,25.851011759999995,TJ,CH4,3.9,kg/TJ,100.81894586399999,Gas Oil combustion consumption by public passenger transport,AR-D,SESCO,annual,kg,d69bd707-31e6-30b1-952e-aa6e6aaa0772 -2011,San Luis,II.1.1,25.851011759999995,TJ,N2O,3.9,kg/TJ,100.81894586399999,Gas Oil combustion consumption by public passenger transport,AR-D,SESCO,annual,kg,d69bd707-31e6-30b1-952e-aa6e6aaa0772 -2011,Santa Fe,II.1.1,209.14950084,TJ,CO2,74100.0,kg/TJ,15497978.012244001,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,ccb9b890-3ebd-3b3f-9707-27a880c178a2 -2011,Santa Fe,II.1.1,209.14950084,TJ,CH4,3.9,kg/TJ,815.683053276,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,be54f64e-39b0-345f-a494-0d0b48dac748 -2011,Santa Fe,II.1.1,209.14950084,TJ,N2O,3.9,kg/TJ,815.683053276,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,be54f64e-39b0-345f-a494-0d0b48dac748 -2011,Buenos Aires,II.5.1,399.23436,TJ,CO2,74100.0,kg/TJ,29583266.075999998,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,4d485571-d6db-3298-8b30-c71cdea924d8 -2011,Buenos Aires,II.5.1,399.23436,TJ,CH4,3.9,kg/TJ,1557.0140039999999,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,4108a433-41f1-3b77-b0e3-19eab9a5dd61 -2011,Buenos Aires,II.5.1,399.23436,TJ,N2O,3.9,kg/TJ,1557.0140039999999,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,4108a433-41f1-3b77-b0e3-19eab9a5dd61 -2011,Capital Federal,II.5.1,96.36815999999999,TJ,CO2,74100.0,kg/TJ,7140880.6559999995,Gas Oil combustion consumption by agriculture machines,AR-C,SESCO,annual,kg,5b3fd096-bf52-3b25-9b63-95b0f2a18834 -2011,Capital Federal,II.5.1,96.36815999999999,TJ,CH4,3.9,kg/TJ,375.83582399999995,Gas Oil combustion consumption by agriculture machines,AR-C,SESCO,annual,kg,b7828fbc-0bfb-3000-86bf-f0729bd796af -2011,Capital Federal,II.5.1,96.36815999999999,TJ,N2O,3.9,kg/TJ,375.83582399999995,Gas Oil combustion consumption by agriculture machines,AR-C,SESCO,annual,kg,b7828fbc-0bfb-3000-86bf-f0729bd796af -2011,Córdoba,II.5.1,149.82576,TJ,CO2,74100.0,kg/TJ,11102088.816,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,3ffdd473-2270-34e9-aca9-adc1fb24a36b -2011,Córdoba,II.5.1,149.82576,TJ,CH4,3.9,kg/TJ,584.320464,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,e3a89eb3-82a7-369f-8dd3-4b40b03d29e2 -2011,Córdoba,II.5.1,149.82576,TJ,N2O,3.9,kg/TJ,584.320464,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,e3a89eb3-82a7-369f-8dd3-4b40b03d29e2 -2011,La Pampa,II.5.1,10.90824,TJ,CO2,74100.0,kg/TJ,808300.5839999999,Gas Oil combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,75905586-909a-3191-a161-0c69da72568b -2011,La Pampa,II.5.1,10.90824,TJ,CH4,3.9,kg/TJ,42.542136,Gas Oil combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,60af8a50-eac6-394b-b1eb-4426b887bbb5 -2011,La Pampa,II.5.1,10.90824,TJ,N2O,3.9,kg/TJ,42.542136,Gas Oil combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,60af8a50-eac6-394b-b1eb-4426b887bbb5 -2011,Santa Fe,II.5.1,437.26872,TJ,CO2,74100.0,kg/TJ,32401612.152,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,ebf7c8be-4cce-3d18-92b5-b24f64e3d723 -2011,Santa Fe,II.5.1,437.26872,TJ,CH4,3.9,kg/TJ,1705.348008,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,69f2b4a1-7f9d-3417-8f71-b9b8c84d348a -2011,Santa Fe,II.5.1,437.26872,TJ,N2O,3.9,kg/TJ,1705.348008,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,69f2b4a1-7f9d-3417-8f71-b9b8c84d348a -2011,Buenos Aires,II.5.1,5.45412,TJ,CO2,74100.0,kg/TJ,404150.29199999996,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,904321a0-c766-3c8b-9c09-08ee7561f927 -2011,Buenos Aires,II.5.1,5.45412,TJ,CH4,3.9,kg/TJ,21.271068,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,30c615d9-7731-312b-b38f-83cdfa9ec271 -2011,Buenos Aires,II.5.1,5.45412,TJ,N2O,3.9,kg/TJ,21.271068,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,30c615d9-7731-312b-b38f-83cdfa9ec271 -2011,Buenos Aires,II.5.1,0.22017099999999998,TJ,CO2,71500.0,kg/TJ,15742.226499999999,Jet Kerosene combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,af1ff594-7975-3892-8ee8-57f5d3797116 -2011,Buenos Aires,II.5.1,0.22017099999999998,TJ,CH4,0.5,kg/TJ,0.11008549999999999,Jet Kerosene combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,968e7aea-8b3a-311c-acbf-fb3d53361967 -2011,Buenos Aires,II.5.1,0.22017099999999998,TJ,N2O,2.0,kg/TJ,0.44034199999999996,Jet Kerosene combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,d069242c-8d49-37e6-898f-d72a17716dec -2011,Capital Federal,II.5.1,1.02795,TJ,CO2,73300.0,kg/TJ,75348.735,Naphtha combustion consumption by agriculture machines,AR-C,SESCO,annual,kg,9921e651-5f76-3797-a577-07321592ae98 -2011,Capital Federal,II.5.1,1.02795,TJ,CH4,0.5,kg/TJ,0.513975,Naphtha combustion consumption by agriculture machines,AR-C,SESCO,annual,kg,4d82d119-938b-34ec-af09-fa1a91dd3f9e -2011,Capital Federal,II.5.1,1.02795,TJ,N2O,2.0,kg/TJ,2.0559,Naphtha combustion consumption by agriculture machines,AR-C,SESCO,annual,kg,f5f363cc-a8cc-3d4c-8347-72bdef6a680a -2011,Buenos Aires,II.2.1,387.24251999999996,TJ,CO2,74100.0,kg/TJ,28694670.731999997,Gas Oil combustion consumption by railway transport,AR-B,SESCO,annual,kg,3e996fa9-04e9-343b-9492-e307f1d7a022 -2011,Buenos Aires,II.2.1,387.24251999999996,TJ,CH4,3.9,kg/TJ,1510.2458279999998,Gas Oil combustion consumption by railway transport,AR-B,SESCO,annual,kg,9d4355de-9a0c-3d44-974f-ead0095c047c -2011,Buenos Aires,II.2.1,387.24251999999996,TJ,N2O,3.9,kg/TJ,1510.2458279999998,Gas Oil combustion consumption by railway transport,AR-B,SESCO,annual,kg,9d4355de-9a0c-3d44-974f-ead0095c047c -2011,Capital Federal,II.2.1,2252.15424,TJ,CO2,74100.0,kg/TJ,166884629.184,Gas Oil combustion consumption by railway transport,AR-C,SESCO,annual,kg,e5fff69d-79ac-3961-bb3c-b59f3ed37b3f -2011,Capital Federal,II.2.1,2252.15424,TJ,CH4,3.9,kg/TJ,8783.401536,Gas Oil combustion consumption by railway transport,AR-C,SESCO,annual,kg,29528a8e-74a4-3d21-89d9-bd9910b7b8d6 -2011,Capital Federal,II.2.1,2252.15424,TJ,N2O,3.9,kg/TJ,8783.401536,Gas Oil combustion consumption by railway transport,AR-C,SESCO,annual,kg,29528a8e-74a4-3d21-89d9-bd9910b7b8d6 -2011,Santa Fe,II.2.1,317.71152,TJ,CO2,74100.0,kg/TJ,23542423.632,Gas Oil combustion consumption by railway transport,AR-S,SESCO,annual,kg,85633c98-a905-3c3f-b9a4-73c8c84ea327 -2011,Santa Fe,II.2.1,317.71152,TJ,CH4,3.9,kg/TJ,1239.074928,Gas Oil combustion consumption by railway transport,AR-S,SESCO,annual,kg,f1638e3f-3898-38ed-9135-024886821f03 -2011,Santa Fe,II.2.1,317.71152,TJ,N2O,3.9,kg/TJ,1239.074928,Gas Oil combustion consumption by railway transport,AR-S,SESCO,annual,kg,f1638e3f-3898-38ed-9135-024886821f03 -2011,Capital Federal,II.2.1,0.5418,TJ,CO2,74100.0,kg/TJ,40147.38,Gas Oil combustion consumption by railway transport,AR-C,SESCO,annual,kg,9d20fe4c-e425-3dbd-8077-7c29f00ce4c3 -2011,Capital Federal,II.2.1,0.5418,TJ,CH4,3.9,kg/TJ,2.1130199999999997,Gas Oil combustion consumption by railway transport,AR-C,SESCO,annual,kg,0458878e-61ca-3248-af7b-f874e8e1fe8a -2011,Capital Federal,II.2.1,0.5418,TJ,N2O,3.9,kg/TJ,2.1130199999999997,Gas Oil combustion consumption by railway transport,AR-C,SESCO,annual,kg,0458878e-61ca-3248-af7b-f874e8e1fe8a -2011,Buenos Aires,II.1.1,5.6704,TJ,CO2,69300.0,kg/TJ,392958.72,Motor Gasoline combustion consumption by freight transport,AR-B,SESCO,annual,kg,e9ecf68e-bafd-3eaa-92dc-c185f502e256 -2011,Buenos Aires,II.1.1,5.6704,TJ,CH4,33.0,kg/TJ,187.1232,Motor Gasoline combustion consumption by freight transport,AR-B,SESCO,annual,kg,d36cb0c4-2d13-3562-9987-52e7bcb90641 -2011,Buenos Aires,II.1.1,5.6704,TJ,N2O,3.2,kg/TJ,18.14528,Motor Gasoline combustion consumption by freight transport,AR-B,SESCO,annual,kg,5d82299b-7bc6-3f9d-99bb-abc35f05b2e9 -2011,Capital Federal,II.1.1,5.8476,TJ,CO2,69300.0,kg/TJ,405238.68,Motor Gasoline combustion consumption by freight transport,AR-C,SESCO,annual,kg,ce425ff8-ad91-3169-bba9-2f469cfbecf0 -2011,Capital Federal,II.1.1,5.8476,TJ,CH4,33.0,kg/TJ,192.9708,Motor Gasoline combustion consumption by freight transport,AR-C,SESCO,annual,kg,197f1b6f-e53b-307c-a74d-f02a9a849ebe -2011,Capital Federal,II.1.1,5.8476,TJ,N2O,3.2,kg/TJ,18.712320000000002,Motor Gasoline combustion consumption by freight transport,AR-C,SESCO,annual,kg,ea2706e7-f02c-31fb-9c2c-c35e5b94fbe3 -2011,Buenos Aires,II.1.1,1015.40544,TJ,CO2,74100.0,kg/TJ,75241543.104,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,5c5cf758-2567-36f4-b36e-3adf7d5bcbb4 -2011,Buenos Aires,II.1.1,1015.40544,TJ,CH4,3.9,kg/TJ,3960.081216,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,afa6669b-4a47-3310-af80-1a2db5522187 -2011,Buenos Aires,II.1.1,1015.40544,TJ,N2O,3.9,kg/TJ,3960.081216,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,afa6669b-4a47-3310-af80-1a2db5522187 -2011,Capital Federal,II.1.1,362.78927999999996,TJ,CO2,74100.0,kg/TJ,26882685.648,Gas Oil combustion consumption by freight transport,AR-C,SESCO,annual,kg,2735dac4-37c9-37d9-946d-4cd6a8d0dc30 -2011,Capital Federal,II.1.1,362.78927999999996,TJ,CH4,3.9,kg/TJ,1414.878192,Gas Oil combustion consumption by freight transport,AR-C,SESCO,annual,kg,03b12414-b9c8-3fca-bd72-5e7027d4631e -2011,Capital Federal,II.1.1,362.78927999999996,TJ,N2O,3.9,kg/TJ,1414.878192,Gas Oil combustion consumption by freight transport,AR-C,SESCO,annual,kg,03b12414-b9c8-3fca-bd72-5e7027d4631e -2011,Corrientes,II.1.1,0.39732,TJ,CO2,74100.0,kg/TJ,29441.412,Gas Oil combustion consumption by freight transport,AR-W,SESCO,annual,kg,cb5f3107-29ae-345a-87c8-ead06de6f3a1 -2011,Corrientes,II.1.1,0.39732,TJ,CH4,3.9,kg/TJ,1.549548,Gas Oil combustion consumption by freight transport,AR-W,SESCO,annual,kg,ce536de0-e32d-3279-afe4-6a9a9bff6bf3 -2011,Corrientes,II.1.1,0.39732,TJ,N2O,3.9,kg/TJ,1.549548,Gas Oil combustion consumption by freight transport,AR-W,SESCO,annual,kg,ce536de0-e32d-3279-afe4-6a9a9bff6bf3 -2011,Córdoba,II.1.1,200.8272,TJ,CO2,74100.0,kg/TJ,14881295.52,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,970d4d9f-806b-3e64-98c3-e5bd48ec0a1c -2011,Córdoba,II.1.1,200.8272,TJ,CH4,3.9,kg/TJ,783.22608,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,0856219d-7a5c-35c5-bcf1-5b4e2c0466bb -2011,Córdoba,II.1.1,200.8272,TJ,N2O,3.9,kg/TJ,783.22608,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,0856219d-7a5c-35c5-bcf1-5b4e2c0466bb -2011,Entre Rios,II.1.1,9.824639999999999,TJ,CO2,74100.0,kg/TJ,728005.8239999999,Gas Oil combustion consumption by freight transport,AR-E,SESCO,annual,kg,02a25ad8-6c7e-3a1e-a0a2-1c44783cd198 -2011,Entre Rios,II.1.1,9.824639999999999,TJ,CH4,3.9,kg/TJ,38.316095999999995,Gas Oil combustion consumption by freight transport,AR-E,SESCO,annual,kg,eda26890-8fe2-3d78-b079-0519af339225 -2011,Entre Rios,II.1.1,9.824639999999999,TJ,N2O,3.9,kg/TJ,38.316095999999995,Gas Oil combustion consumption by freight transport,AR-E,SESCO,annual,kg,eda26890-8fe2-3d78-b079-0519af339225 -2011,Santa Fe,II.1.1,25.93416,TJ,CO2,74100.0,kg/TJ,1921721.2559999998,Gas Oil combustion consumption by freight transport,AR-S,SESCO,annual,kg,162b8986-906a-3d52-8c73-916e6ba90789 -2011,Santa Fe,II.1.1,25.93416,TJ,CH4,3.9,kg/TJ,101.14322399999999,Gas Oil combustion consumption by freight transport,AR-S,SESCO,annual,kg,f1729af7-dc75-38af-8802-302d7d99fc36 -2011,Santa Fe,II.1.1,25.93416,TJ,N2O,3.9,kg/TJ,101.14322399999999,Gas Oil combustion consumption by freight transport,AR-S,SESCO,annual,kg,f1729af7-dc75-38af-8802-302d7d99fc36 -2011,Santiago del Estero,II.1.1,6.1404,TJ,CO2,74100.0,kg/TJ,455003.63999999996,Gas Oil combustion consumption by freight transport,AR-G,SESCO,annual,kg,a5d45857-5023-3f59-9e69-a22beb353e63 -2011,Santiago del Estero,II.1.1,6.1404,TJ,CH4,3.9,kg/TJ,23.94756,Gas Oil combustion consumption by freight transport,AR-G,SESCO,annual,kg,1464dfd3-3e6c-30a2-b54f-7524a0541d96 -2011,Santiago del Estero,II.1.1,6.1404,TJ,N2O,3.9,kg/TJ,23.94756,Gas Oil combustion consumption by freight transport,AR-G,SESCO,annual,kg,1464dfd3-3e6c-30a2-b54f-7524a0541d96 -2011,Buenos Aires,II.1.1,4982.9346,TJ,CO2,74100.0,kg/TJ,369235453.85999995,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,62252673-914d-3820-beb4-736c6074fa95 -2011,Buenos Aires,II.1.1,4982.9346,TJ,CH4,3.9,kg/TJ,19433.444939999998,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,2e3234ce-5c11-3176-8d52-9c7240479ea9 -2011,Buenos Aires,II.1.1,4982.9346,TJ,N2O,3.9,kg/TJ,19433.444939999998,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,2e3234ce-5c11-3176-8d52-9c7240479ea9 -2011,Capital Federal,II.1.1,654.92784,TJ,CO2,74100.0,kg/TJ,48530152.944,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,87806fa5-d98e-3887-a189-ecd9374d3239 -2011,Capital Federal,II.1.1,654.92784,TJ,CH4,3.9,kg/TJ,2554.2185759999998,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,67cf2e69-f8a8-3b76-9aaf-263a1c671726 -2011,Capital Federal,II.1.1,654.92784,TJ,N2O,3.9,kg/TJ,2554.2185759999998,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,67cf2e69-f8a8-3b76-9aaf-263a1c671726 -2011,Córdoba,II.1.1,12.930959999999999,TJ,CO2,74100.0,kg/TJ,958184.1359999999,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,4adeaeb6-79d6-34fe-834d-a8881d563594 -2011,Córdoba,II.1.1,12.930959999999999,TJ,CH4,3.9,kg/TJ,50.430744,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,bb471230-168a-3e80-9e06-7cabc91f73c4 -2011,Córdoba,II.1.1,12.930959999999999,TJ,N2O,3.9,kg/TJ,50.430744,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,bb471230-168a-3e80-9e06-7cabc91f73c4 -2011,Misiones,II.1.1,18.637919999999998,TJ,CO2,74100.0,kg/TJ,1381069.8719999997,Gas Oil combustion consumption by public passenger transport,AR-N,SESCO,annual,kg,48c80bb8-094e-3df7-8af3-81cc023faee4 -2011,Misiones,II.1.1,18.637919999999998,TJ,CH4,3.9,kg/TJ,72.68788799999999,Gas Oil combustion consumption by public passenger transport,AR-N,SESCO,annual,kg,0ed00dfa-5c31-336b-8214-b2536ba0b06a -2011,Misiones,II.1.1,18.637919999999998,TJ,N2O,3.9,kg/TJ,72.68788799999999,Gas Oil combustion consumption by public passenger transport,AR-N,SESCO,annual,kg,0ed00dfa-5c31-336b-8214-b2536ba0b06a -2011,Buenos Aires,II.5.1,27.333099999999998,TJ,CO2,69300.0,kg/TJ,1894183.8299999998,Motor Gasoline combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,7b76be45-4207-31b9-86ab-421ea7773348 -2011,Buenos Aires,II.5.1,27.333099999999998,TJ,CH4,33.0,kg/TJ,901.9922999999999,Motor Gasoline combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,2c675b5c-8a82-3ff7-8798-4f442fd1eac4 -2011,Buenos Aires,II.5.1,27.333099999999998,TJ,N2O,3.2,kg/TJ,87.46592,Motor Gasoline combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,add48363-0a8a-357a-a367-33276dbd5bf7 -2011,La Pampa,II.5.1,1.1518,TJ,CO2,69300.0,kg/TJ,79819.73999999999,Motor Gasoline combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,a0c545bb-6a9d-3241-bd7c-19ba2a61dfc1 -2011,La Pampa,II.5.1,1.1518,TJ,CH4,33.0,kg/TJ,38.0094,Motor Gasoline combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,1d9771a7-bc96-3308-a489-6c0159f30e60 -2011,La Pampa,II.5.1,1.1518,TJ,N2O,3.2,kg/TJ,3.68576,Motor Gasoline combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,80d93d03-4d5b-3f88-a303-35b2eec299da -2011,Salta,II.5.1,9.0372,TJ,CO2,69300.0,kg/TJ,626277.9600000001,Motor Gasoline combustion consumption by agriculture machines,AR-A,SESCO,annual,kg,4d809d0b-00a3-35c8-977b-89f2c3986d86 -2011,Salta,II.5.1,9.0372,TJ,CH4,33.0,kg/TJ,298.2276,Motor Gasoline combustion consumption by agriculture machines,AR-A,SESCO,annual,kg,ccb10a74-9b3e-33a1-ba29-8cfcf9dab886 -2011,Salta,II.5.1,9.0372,TJ,N2O,3.2,kg/TJ,28.919040000000003,Motor Gasoline combustion consumption by agriculture machines,AR-A,SESCO,annual,kg,f867804f-9921-3a51-a661-bdf25f818f40 -2011,Buenos Aires,II.5.1,10858.177679999999,TJ,CO2,74100.0,kg/TJ,804590966.0879999,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,a377a5d4-ee15-3414-9fb5-75eb1043ddc8 -2011,Buenos Aires,II.5.1,10858.177679999999,TJ,CH4,3.9,kg/TJ,42346.892951999995,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,fd1ad9b2-3712-334c-ab95-680ea7471f2f -2011,Buenos Aires,II.5.1,10858.177679999999,TJ,N2O,3.9,kg/TJ,42346.892951999995,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,fd1ad9b2-3712-334c-ab95-680ea7471f2f -2011,Capital Federal,II.5.1,44.57208,TJ,CO2,74100.0,kg/TJ,3302791.128,Gas Oil combustion consumption by agriculture machines,AR-C,SESCO,annual,kg,57a6f1f4-cf18-351d-8db6-f2b000f8d4d8 -2011,Capital Federal,II.5.1,44.57208,TJ,CH4,3.9,kg/TJ,173.831112,Gas Oil combustion consumption by agriculture machines,AR-C,SESCO,annual,kg,0f4b578c-f36c-3d4d-88dd-16d6268731fd -2011,Capital Federal,II.5.1,44.57208,TJ,N2O,3.9,kg/TJ,173.831112,Gas Oil combustion consumption by agriculture machines,AR-C,SESCO,annual,kg,0f4b578c-f36c-3d4d-88dd-16d6268731fd -2011,Catamarca,II.5.1,143.46864,TJ,CO2,74100.0,kg/TJ,10631026.224,Gas Oil combustion consumption by agriculture machines,AR-K,SESCO,annual,kg,a34c5134-0be8-3440-a349-4779744d684c -2011,Catamarca,II.5.1,143.46864,TJ,CH4,3.9,kg/TJ,559.527696,Gas Oil combustion consumption by agriculture machines,AR-K,SESCO,annual,kg,e4a83d71-e36f-3f58-a348-d0ca7cf7a96a -2011,Catamarca,II.5.1,143.46864,TJ,N2O,3.9,kg/TJ,559.527696,Gas Oil combustion consumption by agriculture machines,AR-K,SESCO,annual,kg,e4a83d71-e36f-3f58-a348-d0ca7cf7a96a -2011,Chaco,II.5.1,1360.8932399999999,TJ,CO2,74100.0,kg/TJ,100842189.08399999,Gas Oil combustion consumption by agriculture machines,AR-H,SESCO,annual,kg,dd9184bd-678d-34fc-8449-8fb18e6b2364 -2011,Chaco,II.5.1,1360.8932399999999,TJ,CH4,3.9,kg/TJ,5307.483635999999,Gas Oil combustion consumption by agriculture machines,AR-H,SESCO,annual,kg,e6996bda-79dd-3e0e-a051-b187aec4f1fe -2011,Chaco,II.5.1,1360.8932399999999,TJ,N2O,3.9,kg/TJ,5307.483635999999,Gas Oil combustion consumption by agriculture machines,AR-H,SESCO,annual,kg,e6996bda-79dd-3e0e-a051-b187aec4f1fe -2011,Corrientes,II.5.1,418.66692,TJ,CO2,74100.0,kg/TJ,31023218.772,Gas Oil combustion consumption by agriculture machines,AR-W,SESCO,annual,kg,58583bcb-ce84-3f41-bb2b-b6ca4910df0e -2011,Corrientes,II.5.1,418.66692,TJ,CH4,3.9,kg/TJ,1632.800988,Gas Oil combustion consumption by agriculture machines,AR-W,SESCO,annual,kg,4dd42e11-22e9-3c35-9d43-af95a2979e14 -2011,Corrientes,II.5.1,418.66692,TJ,N2O,3.9,kg/TJ,1632.800988,Gas Oil combustion consumption by agriculture machines,AR-W,SESCO,annual,kg,4dd42e11-22e9-3c35-9d43-af95a2979e14 -2011,Córdoba,II.5.1,8535.40884,TJ,CO2,74100.0,kg/TJ,632473795.044,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,08925eda-d7a3-39f2-b240-4f6bdd164bf5 -2011,Córdoba,II.5.1,8535.40884,TJ,CH4,3.9,kg/TJ,33288.094476,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,ba19581b-dae5-39b6-8752-a88d6bfa19a5 -2011,Córdoba,II.5.1,8535.40884,TJ,N2O,3.9,kg/TJ,33288.094476,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,ba19581b-dae5-39b6-8752-a88d6bfa19a5 -2011,Entre Rios,II.5.1,2520.70644,TJ,CO2,74100.0,kg/TJ,186784347.204,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,6053c758-7202-3617-aad5-f61301a4d638 -2011,Entre Rios,II.5.1,2520.70644,TJ,CH4,3.9,kg/TJ,9830.755116,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,25858783-a31f-3fc0-9553-7f11737ef3f1 -2011,Entre Rios,II.5.1,2520.70644,TJ,N2O,3.9,kg/TJ,9830.755116,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,25858783-a31f-3fc0-9553-7f11737ef3f1 -2011,Formosa,II.5.1,333.42372,TJ,CO2,74100.0,kg/TJ,24706697.652,Gas Oil combustion consumption by agriculture machines,AR-P,SESCO,annual,kg,9539952f-7b36-3cfb-8ce5-3d649d95b8b9 -2011,Formosa,II.5.1,333.42372,TJ,CH4,3.9,kg/TJ,1300.352508,Gas Oil combustion consumption by agriculture machines,AR-P,SESCO,annual,kg,f9c3f3b2-9747-3003-819e-5576e4bd7580 -2011,Formosa,II.5.1,333.42372,TJ,N2O,3.9,kg/TJ,1300.352508,Gas Oil combustion consumption by agriculture machines,AR-P,SESCO,annual,kg,f9c3f3b2-9747-3003-819e-5576e4bd7580 -2011,Jujuy,II.5.1,944.10456,TJ,CO2,74100.0,kg/TJ,69958147.896,Gas Oil combustion consumption by agriculture machines,AR-Y,SESCO,annual,kg,a23a97a1-d558-3c52-8d0a-44e131795286 -2011,Jujuy,II.5.1,944.10456,TJ,CH4,3.9,kg/TJ,3682.007784,Gas Oil combustion consumption by agriculture machines,AR-Y,SESCO,annual,kg,cdfc0206-30e5-31d1-a0f4-a515d353c2ba -2011,Jujuy,II.5.1,944.10456,TJ,N2O,3.9,kg/TJ,3682.007784,Gas Oil combustion consumption by agriculture machines,AR-Y,SESCO,annual,kg,cdfc0206-30e5-31d1-a0f4-a515d353c2ba -2011,La Pampa,II.5.1,2846.2198799999996,TJ,CO2,74100.0,kg/TJ,210904893.10799998,Gas Oil combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,93c2566d-37fe-33d2-be7f-44b25ff34447 -2011,La Pampa,II.5.1,2846.2198799999996,TJ,CH4,3.9,kg/TJ,11100.257531999998,Gas Oil combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,c1c15c3d-b347-37a8-96a0-c462aa854b05 -2011,La Pampa,II.5.1,2846.2198799999996,TJ,N2O,3.9,kg/TJ,11100.257531999998,Gas Oil combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,c1c15c3d-b347-37a8-96a0-c462aa854b05 -2011,Mendoza,II.5.1,477.79535999999996,TJ,CO2,74100.0,kg/TJ,35404636.176,Gas Oil combustion consumption by agriculture machines,AR-M,SESCO,annual,kg,f59c58ea-34fb-301f-b037-e99f185aa9eb -2011,Mendoza,II.5.1,477.79535999999996,TJ,CH4,3.9,kg/TJ,1863.4019039999998,Gas Oil combustion consumption by agriculture machines,AR-M,SESCO,annual,kg,29f2f437-7f6a-37d0-b833-deb0f8178069 -2011,Mendoza,II.5.1,477.79535999999996,TJ,N2O,3.9,kg/TJ,1863.4019039999998,Gas Oil combustion consumption by agriculture machines,AR-M,SESCO,annual,kg,29f2f437-7f6a-37d0-b833-deb0f8178069 -2011,Misiones,II.5.1,845.46084,TJ,CO2,74100.0,kg/TJ,62648648.243999995,Gas Oil combustion consumption by agriculture machines,AR-N,SESCO,annual,kg,663ea7a1-9824-3f2f-ab4c-2e9931d0ac3f -2011,Misiones,II.5.1,845.46084,TJ,CH4,3.9,kg/TJ,3297.297276,Gas Oil combustion consumption by agriculture machines,AR-N,SESCO,annual,kg,7a556bfa-b68f-3fb5-aa32-9dd268df7e47 -2011,Misiones,II.5.1,845.46084,TJ,N2O,3.9,kg/TJ,3297.297276,Gas Oil combustion consumption by agriculture machines,AR-N,SESCO,annual,kg,7a556bfa-b68f-3fb5-aa32-9dd268df7e47 -2011,Rio Negro,II.5.1,199.88808,TJ,CO2,74100.0,kg/TJ,14811706.728,Gas Oil combustion consumption by agriculture machines,AR-R,SESCO,annual,kg,0006136a-e871-3eca-a30b-6e313a9d8e6c -2011,Rio Negro,II.5.1,199.88808,TJ,CH4,3.9,kg/TJ,779.563512,Gas Oil combustion consumption by agriculture machines,AR-R,SESCO,annual,kg,22ba5aa0-34ed-3570-8ae7-8f1f63f693a0 -2011,Rio Negro,II.5.1,199.88808,TJ,N2O,3.9,kg/TJ,779.563512,Gas Oil combustion consumption by agriculture machines,AR-R,SESCO,annual,kg,22ba5aa0-34ed-3570-8ae7-8f1f63f693a0 -2011,Salta,II.5.1,2341.479,TJ,CO2,74100.0,kg/TJ,173503593.89999998,Gas Oil combustion consumption by agriculture machines,AR-A,SESCO,annual,kg,0c9f04f8-f66a-3681-ae98-931e22332dc2 -2011,Salta,II.5.1,2341.479,TJ,CH4,3.9,kg/TJ,9131.7681,Gas Oil combustion consumption by agriculture machines,AR-A,SESCO,annual,kg,633e2f51-8d6d-32c2-a421-c9572bb25fa7 -2011,Salta,II.5.1,2341.479,TJ,N2O,3.9,kg/TJ,9131.7681,Gas Oil combustion consumption by agriculture machines,AR-A,SESCO,annual,kg,633e2f51-8d6d-32c2-a421-c9572bb25fa7 -2011,San Juan,II.5.1,40.56276,TJ,CO2,74100.0,kg/TJ,3005700.516,Gas Oil combustion consumption by agriculture machines,AR-J,SESCO,annual,kg,381890a2-cb41-36ed-92d5-cd8241cb10ec -2011,San Juan,II.5.1,40.56276,TJ,CH4,3.9,kg/TJ,158.194764,Gas Oil combustion consumption by agriculture machines,AR-J,SESCO,annual,kg,0aafefc2-d568-3f16-9e74-7b69bcbc0dac -2011,San Juan,II.5.1,40.56276,TJ,N2O,3.9,kg/TJ,158.194764,Gas Oil combustion consumption by agriculture machines,AR-J,SESCO,annual,kg,0aafefc2-d568-3f16-9e74-7b69bcbc0dac -2011,San Luis,II.5.1,640.70580672,TJ,CO2,74100.0,kg/TJ,47476300.277952,Gas Oil combustion consumption by agriculture machines,AR-D,SESCO,annual,kg,5c8e210b-1c1e-3ce2-a9f1-b142700bd156 -2011,San Luis,II.5.1,640.70580672,TJ,CH4,3.9,kg/TJ,2498.752646208,Gas Oil combustion consumption by agriculture machines,AR-D,SESCO,annual,kg,8bdc4459-f047-3cc0-9f95-26dc5ed1d672 -2011,San Luis,II.5.1,640.70580672,TJ,N2O,3.9,kg/TJ,2498.752646208,Gas Oil combustion consumption by agriculture machines,AR-D,SESCO,annual,kg,8bdc4459-f047-3cc0-9f95-26dc5ed1d672 -2011,Santa Fe,II.5.1,7754.964,TJ,CO2,74100.0,kg/TJ,574642832.4,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,e167721a-740c-31d5-ae44-e3e0082af734 -2011,Santa Fe,II.5.1,7754.964,TJ,CH4,3.9,kg/TJ,30244.3596,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,d7bac018-c169-38ae-982a-6c1aca59cdbc -2011,Santa Fe,II.5.1,7754.964,TJ,N2O,3.9,kg/TJ,30244.3596,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,d7bac018-c169-38ae-982a-6c1aca59cdbc -2011,Santiago del Estero,II.5.1,1885.8252,TJ,CO2,74100.0,kg/TJ,139739647.32,Gas Oil combustion consumption by agriculture machines,AR-G,SESCO,annual,kg,f6cc134d-0f2e-3167-a428-9053aa146797 -2011,Santiago del Estero,II.5.1,1885.8252,TJ,CH4,3.9,kg/TJ,7354.71828,Gas Oil combustion consumption by agriculture machines,AR-G,SESCO,annual,kg,7bbd9d52-7695-3a41-8e5f-99c064f0b485 -2011,Santiago del Estero,II.5.1,1885.8252,TJ,N2O,3.9,kg/TJ,7354.71828,Gas Oil combustion consumption by agriculture machines,AR-G,SESCO,annual,kg,7bbd9d52-7695-3a41-8e5f-99c064f0b485 -2011,Tucuman,II.5.1,1664.48184,TJ,CO2,74100.0,kg/TJ,123338104.344,Gas Oil combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,8bbe4f56-3c23-3367-81c0-7cebd9e8c5e3 -2011,Tucuman,II.5.1,1664.48184,TJ,CH4,3.9,kg/TJ,6491.479176,Gas Oil combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,24cb669b-d4be-3fe4-8a0d-494820c98917 -2011,Tucuman,II.5.1,1664.48184,TJ,N2O,3.9,kg/TJ,6491.479176,Gas Oil combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,24cb669b-d4be-3fe4-8a0d-494820c98917 -2011,Buenos Aires,II.5.1,39.9126,TJ,CO2,74100.0,kg/TJ,2957523.6599999997,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,76d5af0e-67a7-3723-bb88-90f2e30ff2cd -2011,Buenos Aires,II.5.1,39.9126,TJ,CH4,3.9,kg/TJ,155.65913999999998,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,02de41da-bd36-3f6c-af98-de29c9952de7 -2011,Buenos Aires,II.5.1,39.9126,TJ,N2O,3.9,kg/TJ,155.65913999999998,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,02de41da-bd36-3f6c-af98-de29c9952de7 -2011,Chaco,II.5.1,0.7223999999999999,TJ,CO2,74100.0,kg/TJ,53529.84,Gas Oil combustion consumption by agriculture machines,AR-H,SESCO,annual,kg,ed5efba0-778f-3b26-af2d-22efe0265797 -2011,Chaco,II.5.1,0.7223999999999999,TJ,CH4,3.9,kg/TJ,2.81736,Gas Oil combustion consumption by agriculture machines,AR-H,SESCO,annual,kg,ca12e847-7bd4-3d12-901f-712b448f3a97 -2011,Chaco,II.5.1,0.7223999999999999,TJ,N2O,3.9,kg/TJ,2.81736,Gas Oil combustion consumption by agriculture machines,AR-H,SESCO,annual,kg,ca12e847-7bd4-3d12-901f-712b448f3a97 -2011,Corrientes,II.5.1,12.244679999999999,TJ,CO2,74100.0,kg/TJ,907330.788,Gas Oil combustion consumption by agriculture machines,AR-W,SESCO,annual,kg,7eeb371c-ca7a-3ca8-836c-26db52975e85 -2011,Corrientes,II.5.1,12.244679999999999,TJ,CH4,3.9,kg/TJ,47.754251999999994,Gas Oil combustion consumption by agriculture machines,AR-W,SESCO,annual,kg,0df161fc-2881-3da3-b935-e00a007a0ecb -2011,Corrientes,II.5.1,12.244679999999999,TJ,N2O,3.9,kg/TJ,47.754251999999994,Gas Oil combustion consumption by agriculture machines,AR-W,SESCO,annual,kg,0df161fc-2881-3da3-b935-e00a007a0ecb -2011,Córdoba,II.5.1,6.537719999999999,TJ,CO2,74100.0,kg/TJ,484445.05199999997,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,63cda772-d4d9-3258-9a01-20fa3c33bf75 -2011,Córdoba,II.5.1,6.537719999999999,TJ,CH4,3.9,kg/TJ,25.497107999999997,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,dc79ec04-62ae-3bce-8081-60de027c83b9 -2011,Córdoba,II.5.1,6.537719999999999,TJ,N2O,3.9,kg/TJ,25.497107999999997,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,dc79ec04-62ae-3bce-8081-60de027c83b9 -2011,La Pampa,II.5.1,19.10748,TJ,CO2,74100.0,kg/TJ,1415864.268,Gas Oil combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,54766041-8b43-3d06-a614-4b96e3939867 -2011,La Pampa,II.5.1,19.10748,TJ,CH4,3.9,kg/TJ,74.519172,Gas Oil combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,7b5e8cf0-3c12-3110-9f97-33373c92ef88 -2011,La Pampa,II.5.1,19.10748,TJ,N2O,3.9,kg/TJ,74.519172,Gas Oil combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,7b5e8cf0-3c12-3110-9f97-33373c92ef88 -2011,Misiones,II.5.1,26.40372,TJ,CO2,74100.0,kg/TJ,1956515.652,Gas Oil combustion consumption by agriculture machines,AR-N,SESCO,annual,kg,1d76f53c-8ce4-3d8d-abe6-6458d43704d9 -2011,Misiones,II.5.1,26.40372,TJ,CH4,3.9,kg/TJ,102.974508,Gas Oil combustion consumption by agriculture machines,AR-N,SESCO,annual,kg,c2be4756-73cf-3037-9b71-da9c22020d46 -2011,Misiones,II.5.1,26.40372,TJ,N2O,3.9,kg/TJ,102.974508,Gas Oil combustion consumption by agriculture machines,AR-N,SESCO,annual,kg,c2be4756-73cf-3037-9b71-da9c22020d46 -2011,Salta,II.5.1,30.701999999999998,TJ,CO2,74100.0,kg/TJ,2275018.1999999997,Gas Oil combustion consumption by agriculture machines,AR-A,SESCO,annual,kg,36866b47-2b06-323a-9de5-357e6c42302a -2011,Salta,II.5.1,30.701999999999998,TJ,CH4,3.9,kg/TJ,119.7378,Gas Oil combustion consumption by agriculture machines,AR-A,SESCO,annual,kg,41784343-d070-3bc0-982c-3d0dae85aa80 -2011,Salta,II.5.1,30.701999999999998,TJ,N2O,3.9,kg/TJ,119.7378,Gas Oil combustion consumption by agriculture machines,AR-A,SESCO,annual,kg,41784343-d070-3bc0-982c-3d0dae85aa80 -2011,Santa Fe,II.5.1,23.62248,TJ,CO2,74100.0,kg/TJ,1750425.768,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,1e764e4b-5a61-319a-8645-73a9456a6621 -2011,Santa Fe,II.5.1,23.62248,TJ,CH4,3.9,kg/TJ,92.12767199999999,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,d7419c36-4d26-3137-94c2-0c5fcf797251 -2011,Santa Fe,II.5.1,23.62248,TJ,N2O,3.9,kg/TJ,92.12767199999999,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,d7419c36-4d26-3137-94c2-0c5fcf797251 -2011,Santiago del Estero,II.5.1,41.068439999999995,TJ,CO2,74100.0,kg/TJ,3043171.4039999996,Gas Oil combustion consumption by agriculture machines,AR-G,SESCO,annual,kg,fff07b5d-0373-37be-86cd-f341bbb8dc3f -2011,Santiago del Estero,II.5.1,41.068439999999995,TJ,CH4,3.9,kg/TJ,160.166916,Gas Oil combustion consumption by agriculture machines,AR-G,SESCO,annual,kg,f63a65ee-7fc1-30a4-8be4-08020296b841 -2011,Santiago del Estero,II.5.1,41.068439999999995,TJ,N2O,3.9,kg/TJ,160.166916,Gas Oil combustion consumption by agriculture machines,AR-G,SESCO,annual,kg,f63a65ee-7fc1-30a4-8be4-08020296b841 -2011,Tucuman,II.5.1,27.70404,TJ,CO2,74100.0,kg/TJ,2052869.3639999998,Gas Oil combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,0c15f9f1-172c-32c4-8edd-eb188fb8bbad -2011,Tucuman,II.5.1,27.70404,TJ,CH4,3.9,kg/TJ,108.045756,Gas Oil combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,62059cdb-290b-3620-b82a-81898eea36d1 -2011,Tucuman,II.5.1,27.70404,TJ,N2O,3.9,kg/TJ,108.045756,Gas Oil combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,62059cdb-290b-3620-b82a-81898eea36d1 -2011,Buenos Aires,II.5.1,25.068040999999997,TJ,CO2,71500.0,kg/TJ,1792364.9314999997,Jet Kerosene combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,c6bfefb2-f574-30b7-a05a-cd80839ec7ed -2011,Buenos Aires,II.5.1,25.068040999999997,TJ,CH4,0.5,kg/TJ,12.534020499999999,Jet Kerosene combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,93c7a2f0-958f-3a0e-a9bd-425bdb38f33f -2011,Buenos Aires,II.5.1,25.068040999999997,TJ,N2O,2.0,kg/TJ,50.136081999999995,Jet Kerosene combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,1000a6c6-fc39-3a09-a495-d5d94d61d8c7 -2011,Córdoba,II.5.1,1.0064959999999998,TJ,CO2,71500.0,kg/TJ,71964.46399999999,Jet Kerosene combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,b1fdfe89-3a5f-30d1-830c-a23346655eec -2011,Córdoba,II.5.1,1.0064959999999998,TJ,CH4,0.5,kg/TJ,0.5032479999999999,Jet Kerosene combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,4a505f02-abd5-35d4-a751-9d58fbb05ebd -2011,Córdoba,II.5.1,1.0064959999999998,TJ,N2O,2.0,kg/TJ,2.0129919999999997,Jet Kerosene combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,73ab0400-df58-3843-aa7f-44a8cecc4cc3 -2011,Entre Rios,II.5.1,0.25162399999999996,TJ,CO2,71500.0,kg/TJ,17991.115999999998,Jet Kerosene combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,c247d568-d08f-34e4-a0ba-d36c112f6006 -2011,Entre Rios,II.5.1,0.25162399999999996,TJ,CH4,0.5,kg/TJ,0.12581199999999998,Jet Kerosene combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,aac76367-1829-3b9f-993d-5226ea127951 -2011,Entre Rios,II.5.1,0.25162399999999996,TJ,N2O,2.0,kg/TJ,0.5032479999999999,Jet Kerosene combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,0fc0f7c0-95fb-373d-a5e2-370892b16287 -2011,La Pampa,II.5.1,6.730942,TJ,CO2,71500.0,kg/TJ,481262.353,Jet Kerosene combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,85a9d936-e300-36c8-956a-abf968ca3369 -2011,La Pampa,II.5.1,6.730942,TJ,CH4,0.5,kg/TJ,3.365471,Jet Kerosene combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,aaed3a23-f0a1-322a-92e7-3f56a32a06dd -2011,La Pampa,II.5.1,6.730942,TJ,N2O,2.0,kg/TJ,13.461884,Jet Kerosene combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,9f45c3e3-e1af-3552-b31b-011cef1b2735 -2011,Misiones,II.5.1,2.390428,TJ,CO2,71500.0,kg/TJ,170915.602,Jet Kerosene combustion consumption by agriculture machines,AR-N,SESCO,annual,kg,f094c6bf-b79e-3bde-b745-36543298cbe8 -2011,Misiones,II.5.1,2.390428,TJ,CH4,0.5,kg/TJ,1.195214,Jet Kerosene combustion consumption by agriculture machines,AR-N,SESCO,annual,kg,ea7823c3-7536-3fce-b6a2-8c2223d5957b -2011,Misiones,II.5.1,2.390428,TJ,N2O,2.0,kg/TJ,4.780856,Jet Kerosene combustion consumption by agriculture machines,AR-N,SESCO,annual,kg,5bfd156c-17d8-352f-9383-1b0dba5de804 -2011,Santa Cruz,II.5.1,0.157265,TJ,CO2,71500.0,kg/TJ,11244.447499999998,Jet Kerosene combustion consumption by agriculture machines,AR-Z,SESCO,annual,kg,1e25bc62-5365-36b6-899d-175f3c967028 -2011,Santa Cruz,II.5.1,0.157265,TJ,CH4,0.5,kg/TJ,0.0786325,Jet Kerosene combustion consumption by agriculture machines,AR-Z,SESCO,annual,kg,59873547-cef1-3082-b4e9-8e9023e909df -2011,Santa Cruz,II.5.1,0.157265,TJ,N2O,2.0,kg/TJ,0.31453,Jet Kerosene combustion consumption by agriculture machines,AR-Z,SESCO,annual,kg,e1e096a1-7290-3eff-a80d-3413938a9738 -2011,Santa Fe,II.5.1,16.890261,TJ,CO2,71500.0,kg/TJ,1207653.6615,Jet Kerosene combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,84375df9-ce2a-3b95-8eda-c9f9b4118aff -2011,Santa Fe,II.5.1,16.890261,TJ,CH4,0.5,kg/TJ,8.4451305,Jet Kerosene combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,a45a9b56-5e41-33e4-9288-09b16186f171 -2011,Santa Fe,II.5.1,16.890261,TJ,N2O,2.0,kg/TJ,33.780522,Jet Kerosene combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,16bcab40-d5f2-3450-a966-026d8409c946 -2011,Buenos Aires,II.5.1,17.646475,TJ,CO2,73300.0,kg/TJ,1293486.6175,Naphtha combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,1eb74892-81d4-32c2-ac65-d9d7022b7723 -2011,Buenos Aires,II.5.1,17.646475,TJ,CH4,0.5,kg/TJ,8.8232375,Naphtha combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,10a69d08-bdb0-37d3-874d-339a5c1d38f9 -2011,Buenos Aires,II.5.1,17.646475,TJ,N2O,2.0,kg/TJ,35.29295,Naphtha combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,1495cac6-f7a0-3448-873e-ba7984475cb1 -2011,Entre Rios,II.5.1,3.9747399999999997,TJ,CO2,73300.0,kg/TJ,291348.442,Naphtha combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,d53833a8-4a51-31b9-a910-6b509c4f23b7 -2011,Entre Rios,II.5.1,3.9747399999999997,TJ,CH4,0.5,kg/TJ,1.9873699999999999,Naphtha combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,66d40dc7-0da0-373f-9392-16bb929007ed -2011,Entre Rios,II.5.1,3.9747399999999997,TJ,N2O,2.0,kg/TJ,7.949479999999999,Naphtha combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,5b07dd04-ca66-3898-adcd-a31d677e3a78 -2011,Jujuy,II.5.1,0.788095,TJ,CO2,73300.0,kg/TJ,57767.3635,Naphtha combustion consumption by agriculture machines,AR-Y,SESCO,annual,kg,042a8b2e-b98e-391e-9c48-f642940e9440 -2011,Jujuy,II.5.1,0.788095,TJ,CH4,0.5,kg/TJ,0.3940475,Naphtha combustion consumption by agriculture machines,AR-Y,SESCO,annual,kg,fe1a0800-5ce3-3bc1-8535-25bc9625ce23 -2011,Jujuy,II.5.1,0.788095,TJ,N2O,2.0,kg/TJ,1.57619,Naphtha combustion consumption by agriculture machines,AR-Y,SESCO,annual,kg,c4f7ae84-9f27-311a-8314-84c44e193460 -2011,La Pampa,II.5.1,1.610455,TJ,CO2,73300.0,kg/TJ,118046.3515,Naphtha combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,556c9148-0fff-3a4e-93cd-41209cfc2a2b -2011,La Pampa,II.5.1,1.610455,TJ,CH4,0.5,kg/TJ,0.8052275,Naphtha combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,ae0f812a-773f-3550-b5d1-a983f544eed0 -2011,La Pampa,II.5.1,1.610455,TJ,N2O,2.0,kg/TJ,3.22091,Naphtha combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,a5a6ada9-50fa-3789-87d7-feeed3558262 -2011,Salta,II.5.1,0.89089,TJ,CO2,73300.0,kg/TJ,65302.236999999994,Naphtha combustion consumption by agriculture machines,AR-A,SESCO,annual,kg,0e9ea60e-d77e-3b13-83f8-e1fab7a6d89a -2011,Salta,II.5.1,0.89089,TJ,CH4,0.5,kg/TJ,0.445445,Naphtha combustion consumption by agriculture machines,AR-A,SESCO,annual,kg,0c1cf849-1b03-3e65-b508-29a21c265213 -2011,Salta,II.5.1,0.89089,TJ,N2O,2.0,kg/TJ,1.78178,Naphtha combustion consumption by agriculture machines,AR-A,SESCO,annual,kg,2da72c97-628c-3751-a5ea-a4c1bc5221e2 -2011,Santa Fe,II.5.1,78.8095,TJ,CO2,73300.0,kg/TJ,5776736.35,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,3cdee612-5c97-3169-956c-90514e18fc9a -2011,Santa Fe,II.5.1,78.8095,TJ,CH4,0.5,kg/TJ,39.40475,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,54a04b25-5f31-3dba-ae01-ed6dd2606c68 -2011,Santa Fe,II.5.1,78.8095,TJ,N2O,2.0,kg/TJ,157.619,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,5d9aeef8-3957-3642-a635-b0ade9ecb2cd -2011,Santiago del Estero,II.5.1,1.3020699999999998,TJ,CO2,73300.0,kg/TJ,95441.73099999999,Naphtha combustion consumption by agriculture machines,AR-G,SESCO,annual,kg,a83cff08-3c0a-35f2-82d7-7405c243cfd2 -2011,Santiago del Estero,II.5.1,1.3020699999999998,TJ,CH4,0.5,kg/TJ,0.6510349999999999,Naphtha combustion consumption by agriculture machines,AR-G,SESCO,annual,kg,76dd34a7-ca3e-3b4c-a044-52762f408263 -2011,Santiago del Estero,II.5.1,1.3020699999999998,TJ,N2O,2.0,kg/TJ,2.6041399999999997,Naphtha combustion consumption by agriculture machines,AR-G,SESCO,annual,kg,19a83485-f434-3aef-b0dd-725b9f5c3fff -2011,Buenos Aires,II.5.1,0.47970999999999997,TJ,CO2,73300.0,kg/TJ,35162.742999999995,Naphtha combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,4e0cb8e7-ddec-31bf-8c7a-2329cf0524e7 -2011,Buenos Aires,II.5.1,0.47970999999999997,TJ,CH4,0.5,kg/TJ,0.23985499999999998,Naphtha combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,cc9b4950-c8e2-3f1f-8e9e-e571229e1e8e -2011,Buenos Aires,II.5.1,0.47970999999999997,TJ,N2O,2.0,kg/TJ,0.9594199999999999,Naphtha combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,4bb28b17-573c-378c-ad28-b560771665e5 -2011,Buenos Aires,II.1.1,34.111,TJ,CO2,69300.0,kg/TJ,2363892.3,Motor Gasoline combustion consumption by freight transport,AR-B,SESCO,annual,kg,c76812d3-9a5b-36b3-84d4-c4611cee0c62 -2011,Buenos Aires,II.1.1,34.111,TJ,CH4,33.0,kg/TJ,1125.663,Motor Gasoline combustion consumption by freight transport,AR-B,SESCO,annual,kg,9f58ed59-2d24-370e-abc0-10341b78ab3c -2011,Buenos Aires,II.1.1,34.111,TJ,N2O,3.2,kg/TJ,109.1552,Motor Gasoline combustion consumption by freight transport,AR-B,SESCO,annual,kg,e90c69b9-4c15-379f-9553-dbd51f31f9cd -2011,Capital Federal,II.1.1,3.4997,TJ,CO2,69300.0,kg/TJ,242529.21,Motor Gasoline combustion consumption by freight transport,AR-C,SESCO,annual,kg,2e5732e8-de59-3006-adbf-b551d2f36d89 -2011,Capital Federal,II.1.1,3.4997,TJ,CH4,33.0,kg/TJ,115.4901,Motor Gasoline combustion consumption by freight transport,AR-C,SESCO,annual,kg,1253dbcd-491a-3769-a8a1-eb20eccc6867 -2011,Capital Federal,II.1.1,3.4997,TJ,N2O,3.2,kg/TJ,11.19904,Motor Gasoline combustion consumption by freight transport,AR-C,SESCO,annual,kg,333c7b5a-bcce-38e0-9d3c-2cedcee5c9fd -2011,Buenos Aires,II.1.1,6696.53964,TJ,CO2,74100.0,kg/TJ,496213587.324,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,c69c1eea-9e49-32de-9b85-c77f9620eda6 -2011,Buenos Aires,II.1.1,6696.53964,TJ,CH4,3.9,kg/TJ,26116.504596,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,a8daac81-7338-34cd-bc2f-eeed5c0aea3e -2011,Buenos Aires,II.1.1,6696.53964,TJ,N2O,3.9,kg/TJ,26116.504596,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,a8daac81-7338-34cd-bc2f-eeed5c0aea3e -2011,Capital Federal,II.1.1,713.2977599999999,TJ,CO2,74100.0,kg/TJ,52855364.015999995,Gas Oil combustion consumption by freight transport,AR-C,SESCO,annual,kg,0d027582-c5f4-329f-ac24-0616c6e662f9 -2011,Capital Federal,II.1.1,713.2977599999999,TJ,CH4,3.9,kg/TJ,2781.8612639999997,Gas Oil combustion consumption by freight transport,AR-C,SESCO,annual,kg,d356e37f-0644-3b2c-bb20-e441dfd15677 -2011,Capital Federal,II.1.1,713.2977599999999,TJ,N2O,3.9,kg/TJ,2781.8612639999997,Gas Oil combustion consumption by freight transport,AR-C,SESCO,annual,kg,d356e37f-0644-3b2c-bb20-e441dfd15677 -2011,Catamarca,II.1.1,26.07864,TJ,CO2,74100.0,kg/TJ,1932427.224,Gas Oil combustion consumption by freight transport,AR-K,SESCO,annual,kg,2bb42240-35bd-3c08-97bc-c37afcac0ddd -2011,Catamarca,II.1.1,26.07864,TJ,CH4,3.9,kg/TJ,101.706696,Gas Oil combustion consumption by freight transport,AR-K,SESCO,annual,kg,2e522ac1-b46b-30c6-a2f2-1ee717bd9912 -2011,Catamarca,II.1.1,26.07864,TJ,N2O,3.9,kg/TJ,101.706696,Gas Oil combustion consumption by freight transport,AR-K,SESCO,annual,kg,2e522ac1-b46b-30c6-a2f2-1ee717bd9912 -2011,Chaco,II.1.1,111.89976,TJ,CO2,74100.0,kg/TJ,8291772.216,Gas Oil combustion consumption by freight transport,AR-H,SESCO,annual,kg,9a40a1f0-9fa6-33a5-9517-34471b964860 -2011,Chaco,II.1.1,111.89976,TJ,CH4,3.9,kg/TJ,436.409064,Gas Oil combustion consumption by freight transport,AR-H,SESCO,annual,kg,da2a6807-a087-347b-9e05-755616151460 -2011,Chaco,II.1.1,111.89976,TJ,N2O,3.9,kg/TJ,436.409064,Gas Oil combustion consumption by freight transport,AR-H,SESCO,annual,kg,da2a6807-a087-347b-9e05-755616151460 -2011,Chubut,II.1.1,230.30112,TJ,CO2,74100.0,kg/TJ,17065312.992,Gas Oil combustion consumption by freight transport,AR-U,SESCO,annual,kg,e3219bf5-f1ad-32bb-8cc4-b4abe3fa3b9a -2011,Chubut,II.1.1,230.30112,TJ,CH4,3.9,kg/TJ,898.174368,Gas Oil combustion consumption by freight transport,AR-U,SESCO,annual,kg,25adaacc-78b3-3db4-8147-6af5c37b44b0 -2011,Chubut,II.1.1,230.30112,TJ,N2O,3.9,kg/TJ,898.174368,Gas Oil combustion consumption by freight transport,AR-U,SESCO,annual,kg,25adaacc-78b3-3db4-8147-6af5c37b44b0 -2011,Corrientes,II.1.1,458.76012,TJ,CO2,74100.0,kg/TJ,33994124.892,Gas Oil combustion consumption by freight transport,AR-W,SESCO,annual,kg,2d45eeec-d6d9-380b-b2ee-fae3cae5a4f0 -2011,Corrientes,II.1.1,458.76012,TJ,CH4,3.9,kg/TJ,1789.164468,Gas Oil combustion consumption by freight transport,AR-W,SESCO,annual,kg,06416850-46f4-38f1-8e50-b2dbdab9b23b -2011,Corrientes,II.1.1,458.76012,TJ,N2O,3.9,kg/TJ,1789.164468,Gas Oil combustion consumption by freight transport,AR-W,SESCO,annual,kg,06416850-46f4-38f1-8e50-b2dbdab9b23b -2011,Córdoba,II.1.1,1535.6779199999999,TJ,CO2,74100.0,kg/TJ,113793733.872,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,eb2f7b61-b2a2-348e-b861-f690e05d073a -2011,Córdoba,II.1.1,1535.6779199999999,TJ,CH4,3.9,kg/TJ,5989.143888,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,e01e62b9-da78-3ebe-becf-3d5fc4db26b5 -2011,Córdoba,II.1.1,1535.6779199999999,TJ,N2O,3.9,kg/TJ,5989.143888,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,e01e62b9-da78-3ebe-becf-3d5fc4db26b5 -2011,Entre Rios,II.1.1,171.0282,TJ,CO2,74100.0,kg/TJ,12673189.62,Gas Oil combustion consumption by freight transport,AR-E,SESCO,annual,kg,603814e3-ede6-306c-a1ce-aeb24332771a -2011,Entre Rios,II.1.1,171.0282,TJ,CH4,3.9,kg/TJ,667.0099799999999,Gas Oil combustion consumption by freight transport,AR-E,SESCO,annual,kg,4c4f0730-0bd1-3af2-b4f7-a6f8311d0a98 -2011,Entre Rios,II.1.1,171.0282,TJ,N2O,3.9,kg/TJ,667.0099799999999,Gas Oil combustion consumption by freight transport,AR-E,SESCO,annual,kg,4c4f0730-0bd1-3af2-b4f7-a6f8311d0a98 -2011,Formosa,II.1.1,5.56248,TJ,CO2,74100.0,kg/TJ,412179.768,Gas Oil combustion consumption by freight transport,AR-P,SESCO,annual,kg,b2396f77-23e6-30f3-b01e-671320d39669 -2011,Formosa,II.1.1,5.56248,TJ,CH4,3.9,kg/TJ,21.693672,Gas Oil combustion consumption by freight transport,AR-P,SESCO,annual,kg,2e1858f4-834d-3f7c-9554-193012ed8010 -2011,Formosa,II.1.1,5.56248,TJ,N2O,3.9,kg/TJ,21.693672,Gas Oil combustion consumption by freight transport,AR-P,SESCO,annual,kg,2e1858f4-834d-3f7c-9554-193012ed8010 -2011,Jujuy,II.1.1,30.701999999999998,TJ,CO2,74100.0,kg/TJ,2275018.1999999997,Gas Oil combustion consumption by freight transport,AR-Y,SESCO,annual,kg,4f73da51-99d2-33fd-935f-fd8862dee7f6 -2011,Jujuy,II.1.1,30.701999999999998,TJ,CH4,3.9,kg/TJ,119.7378,Gas Oil combustion consumption by freight transport,AR-Y,SESCO,annual,kg,35c15289-7658-3731-8c20-b85c9af13c26 -2011,Jujuy,II.1.1,30.701999999999998,TJ,N2O,3.9,kg/TJ,119.7378,Gas Oil combustion consumption by freight transport,AR-Y,SESCO,annual,kg,35c15289-7658-3731-8c20-b85c9af13c26 -2011,La Pampa,II.1.1,143.90207999999998,TJ,CO2,74100.0,kg/TJ,10663144.127999999,Gas Oil combustion consumption by freight transport,AR-L,SESCO,annual,kg,e6d5e221-8f0e-359e-ad01-865cd126a03c -2011,La Pampa,II.1.1,143.90207999999998,TJ,CH4,3.9,kg/TJ,561.2181119999999,Gas Oil combustion consumption by freight transport,AR-L,SESCO,annual,kg,1e7c9103-2918-35d8-858f-0cbcf72536f9 -2011,La Pampa,II.1.1,143.90207999999998,TJ,N2O,3.9,kg/TJ,561.2181119999999,Gas Oil combustion consumption by freight transport,AR-L,SESCO,annual,kg,1e7c9103-2918-35d8-858f-0cbcf72536f9 -2011,La Rioja,II.1.1,11.41392,TJ,CO2,74100.0,kg/TJ,845771.472,Gas Oil combustion consumption by freight transport,AR-F,SESCO,annual,kg,512aff53-cbe0-3415-8927-df5099455ace -2011,La Rioja,II.1.1,11.41392,TJ,CH4,3.9,kg/TJ,44.51428799999999,Gas Oil combustion consumption by freight transport,AR-F,SESCO,annual,kg,9934bc0d-53b2-3bbd-9530-6012220c0c52 -2011,La Rioja,II.1.1,11.41392,TJ,N2O,3.9,kg/TJ,44.51428799999999,Gas Oil combustion consumption by freight transport,AR-F,SESCO,annual,kg,9934bc0d-53b2-3bbd-9530-6012220c0c52 -2011,Mendoza,II.1.1,805.1148,TJ,CO2,74100.0,kg/TJ,59659006.67999999,Gas Oil combustion consumption by freight transport,AR-M,SESCO,annual,kg,40414cac-b3de-38cc-9376-6cf7d0d4d453 -2011,Mendoza,II.1.1,805.1148,TJ,CH4,3.9,kg/TJ,3139.9477199999997,Gas Oil combustion consumption by freight transport,AR-M,SESCO,annual,kg,bd0e8352-492b-35e6-8a5e-885293d7a9db -2011,Mendoza,II.1.1,805.1148,TJ,N2O,3.9,kg/TJ,3139.9477199999997,Gas Oil combustion consumption by freight transport,AR-M,SESCO,annual,kg,bd0e8352-492b-35e6-8a5e-885293d7a9db -2011,Misiones,II.1.1,121.36319999999999,TJ,CO2,74100.0,kg/TJ,8993013.12,Gas Oil combustion consumption by freight transport,AR-N,SESCO,annual,kg,9dba301c-9954-39ed-9287-d68b575f34bc -2011,Misiones,II.1.1,121.36319999999999,TJ,CH4,3.9,kg/TJ,473.31647999999996,Gas Oil combustion consumption by freight transport,AR-N,SESCO,annual,kg,34986d83-d729-3aae-be1f-d7dae92e513b -2011,Misiones,II.1.1,121.36319999999999,TJ,N2O,3.9,kg/TJ,473.31647999999996,Gas Oil combustion consumption by freight transport,AR-N,SESCO,annual,kg,34986d83-d729-3aae-be1f-d7dae92e513b -2011,Neuquén,II.1.1,416.49971999999997,TJ,CO2,74100.0,kg/TJ,30862629.251999997,Gas Oil combustion consumption by freight transport,AR-Q,SESCO,annual,kg,4831b9b8-4d4f-398e-8951-c58f63fb6fad -2011,Neuquén,II.1.1,416.49971999999997,TJ,CH4,3.9,kg/TJ,1624.348908,Gas Oil combustion consumption by freight transport,AR-Q,SESCO,annual,kg,7553f31e-ee5e-3878-a73c-29a0814f315e -2011,Neuquén,II.1.1,416.49971999999997,TJ,N2O,3.9,kg/TJ,1624.348908,Gas Oil combustion consumption by freight transport,AR-Q,SESCO,annual,kg,7553f31e-ee5e-3878-a73c-29a0814f315e -2011,Rio Negro,II.1.1,55.841519999999996,TJ,CO2,74100.0,kg/TJ,4137856.6319999998,Gas Oil combustion consumption by freight transport,AR-R,SESCO,annual,kg,28a377d5-94b3-3539-9715-a631ee8ff227 -2011,Rio Negro,II.1.1,55.841519999999996,TJ,CH4,3.9,kg/TJ,217.78192799999997,Gas Oil combustion consumption by freight transport,AR-R,SESCO,annual,kg,78249f5d-93fc-387a-8890-e679dcc25625 -2011,Rio Negro,II.1.1,55.841519999999996,TJ,N2O,3.9,kg/TJ,217.78192799999997,Gas Oil combustion consumption by freight transport,AR-R,SESCO,annual,kg,78249f5d-93fc-387a-8890-e679dcc25625 -2011,Salta,II.1.1,166.54932,TJ,CO2,74100.0,kg/TJ,12341304.612,Gas Oil combustion consumption by freight transport,AR-A,SESCO,annual,kg,1a157bab-e866-3e81-935d-f13902aca82e -2011,Salta,II.1.1,166.54932,TJ,CH4,3.9,kg/TJ,649.542348,Gas Oil combustion consumption by freight transport,AR-A,SESCO,annual,kg,f329140b-f9e7-36a4-935a-967634fc90a1 -2011,Salta,II.1.1,166.54932,TJ,N2O,3.9,kg/TJ,649.542348,Gas Oil combustion consumption by freight transport,AR-A,SESCO,annual,kg,f329140b-f9e7-36a4-935a-967634fc90a1 -2011,San Juan,II.1.1,67.83336,TJ,CO2,74100.0,kg/TJ,5026451.976,Gas Oil combustion consumption by freight transport,AR-J,SESCO,annual,kg,36936686-095f-30fe-8728-2f2ee7f846cf -2011,San Juan,II.1.1,67.83336,TJ,CH4,3.9,kg/TJ,264.550104,Gas Oil combustion consumption by freight transport,AR-J,SESCO,annual,kg,4b040d41-bc05-3949-b205-2a54f17ac537 -2011,San Juan,II.1.1,67.83336,TJ,N2O,3.9,kg/TJ,264.550104,Gas Oil combustion consumption by freight transport,AR-J,SESCO,annual,kg,4b040d41-bc05-3949-b205-2a54f17ac537 -2011,San Luis,II.1.1,162.9012,TJ,CO2,74100.0,kg/TJ,12070978.92,Gas Oil combustion consumption by freight transport,AR-D,SESCO,annual,kg,4216ba21-16b1-34ec-b050-638fc992e086 -2011,San Luis,II.1.1,162.9012,TJ,CH4,3.9,kg/TJ,635.31468,Gas Oil combustion consumption by freight transport,AR-D,SESCO,annual,kg,0f129a7b-d483-3358-b45f-276dc3875784 -2011,San Luis,II.1.1,162.9012,TJ,N2O,3.9,kg/TJ,635.31468,Gas Oil combustion consumption by freight transport,AR-D,SESCO,annual,kg,0f129a7b-d483-3358-b45f-276dc3875784 -2011,Santa Cruz,II.1.1,91.05852,TJ,CO2,74100.0,kg/TJ,6747436.332,Gas Oil combustion consumption by freight transport,AR-Z,SESCO,annual,kg,eacb6c31-0dc3-3a56-ab2c-cdf928aab3ff -2011,Santa Cruz,II.1.1,91.05852,TJ,CH4,3.9,kg/TJ,355.128228,Gas Oil combustion consumption by freight transport,AR-Z,SESCO,annual,kg,d70799a8-c357-3ff0-97f8-98e2acc07548 -2011,Santa Cruz,II.1.1,91.05852,TJ,N2O,3.9,kg/TJ,355.128228,Gas Oil combustion consumption by freight transport,AR-Z,SESCO,annual,kg,d70799a8-c357-3ff0-97f8-98e2acc07548 -2011,Santa Fe,II.1.1,1220.2058399999999,TJ,CO2,74100.0,kg/TJ,90417252.74399999,Gas Oil combustion consumption by freight transport,AR-S,SESCO,annual,kg,3bccfbd5-ec95-3f4e-9d81-7dfb4e495762 -2011,Santa Fe,II.1.1,1220.2058399999999,TJ,CH4,3.9,kg/TJ,4758.8027759999995,Gas Oil combustion consumption by freight transport,AR-S,SESCO,annual,kg,6bfed357-db9c-320a-97ad-f5f3245d3381 -2011,Santa Fe,II.1.1,1220.2058399999999,TJ,N2O,3.9,kg/TJ,4758.8027759999995,Gas Oil combustion consumption by freight transport,AR-S,SESCO,annual,kg,6bfed357-db9c-320a-97ad-f5f3245d3381 -2011,Santiago del Estero,II.1.1,140.03724,TJ,CO2,74100.0,kg/TJ,10376759.484,Gas Oil combustion consumption by freight transport,AR-G,SESCO,annual,kg,88f03754-2e8b-3403-8203-8edb0ece890b -2011,Santiago del Estero,II.1.1,140.03724,TJ,CH4,3.9,kg/TJ,546.145236,Gas Oil combustion consumption by freight transport,AR-G,SESCO,annual,kg,5aee66f6-9968-31bc-9c77-9a35919e6819 -2011,Santiago del Estero,II.1.1,140.03724,TJ,N2O,3.9,kg/TJ,546.145236,Gas Oil combustion consumption by freight transport,AR-G,SESCO,annual,kg,5aee66f6-9968-31bc-9c77-9a35919e6819 -2011,Tierra del Fuego,II.1.1,5.2374,TJ,CO2,74100.0,kg/TJ,388091.34,Gas Oil combustion consumption by freight transport,AR-V,SESCO,annual,kg,caab15c0-d86e-354c-bf90-917fe6eb4712 -2011,Tierra del Fuego,II.1.1,5.2374,TJ,CH4,3.9,kg/TJ,20.42586,Gas Oil combustion consumption by freight transport,AR-V,SESCO,annual,kg,efeb422d-e8ad-3212-a529-248281eedc17 -2011,Tierra del Fuego,II.1.1,5.2374,TJ,N2O,3.9,kg/TJ,20.42586,Gas Oil combustion consumption by freight transport,AR-V,SESCO,annual,kg,efeb422d-e8ad-3212-a529-248281eedc17 -2011,Tucuman,II.1.1,150.6204,TJ,CO2,74100.0,kg/TJ,11160971.639999999,Gas Oil combustion consumption by freight transport,AR-T,SESCO,annual,kg,770b5122-e4a5-3291-852a-99c7ea735f05 -2011,Tucuman,II.1.1,150.6204,TJ,CH4,3.9,kg/TJ,587.4195599999999,Gas Oil combustion consumption by freight transport,AR-T,SESCO,annual,kg,725478be-c678-30b6-a74f-f73f339fe333 -2011,Tucuman,II.1.1,150.6204,TJ,N2O,3.9,kg/TJ,587.4195599999999,Gas Oil combustion consumption by freight transport,AR-T,SESCO,annual,kg,725478be-c678-30b6-a74f-f73f339fe333 -2011,Buenos Aires,II.1.1,20.9496,TJ,CO2,74100.0,kg/TJ,1552365.36,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,003bdc22-6238-3139-88fc-b752471c6def -2011,Buenos Aires,II.1.1,20.9496,TJ,CH4,3.9,kg/TJ,81.70344,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,788104ba-7ad0-36dd-a1d9-9b31795a216a -2011,Buenos Aires,II.1.1,20.9496,TJ,N2O,3.9,kg/TJ,81.70344,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,788104ba-7ad0-36dd-a1d9-9b31795a216a -2011,Capital Federal,II.1.1,29.907359999999997,TJ,CO2,74100.0,kg/TJ,2216135.3759999997,Gas Oil combustion consumption by freight transport,AR-C,SESCO,annual,kg,287db2c8-536e-3e1a-8722-48966e86363f -2011,Capital Federal,II.1.1,29.907359999999997,TJ,CH4,3.9,kg/TJ,116.63870399999999,Gas Oil combustion consumption by freight transport,AR-C,SESCO,annual,kg,adb39718-a3f2-32a2-8f48-1243224cde67 -2011,Capital Federal,II.1.1,29.907359999999997,TJ,N2O,3.9,kg/TJ,116.63870399999999,Gas Oil combustion consumption by freight transport,AR-C,SESCO,annual,kg,adb39718-a3f2-32a2-8f48-1243224cde67 -2011,Chaco,II.1.1,2.02272,TJ,CO2,74100.0,kg/TJ,149883.552,Gas Oil combustion consumption by freight transport,AR-H,SESCO,annual,kg,ca4b26c1-3201-3021-be28-1a083987c666 -2011,Chaco,II.1.1,2.02272,TJ,CH4,3.9,kg/TJ,7.8886080000000005,Gas Oil combustion consumption by freight transport,AR-H,SESCO,annual,kg,a78a7b4e-ddda-3369-9f2e-5e6d45726575 -2011,Chaco,II.1.1,2.02272,TJ,N2O,3.9,kg/TJ,7.8886080000000005,Gas Oil combustion consumption by freight transport,AR-H,SESCO,annual,kg,a78a7b4e-ddda-3369-9f2e-5e6d45726575 -2011,Chubut,II.1.1,1.11972,TJ,CO2,74100.0,kg/TJ,82971.25200000001,Gas Oil combustion consumption by freight transport,AR-U,SESCO,annual,kg,76efd5a8-b86c-3606-90e0-5e7ddce2a446 -2011,Chubut,II.1.1,1.11972,TJ,CH4,3.9,kg/TJ,4.3669080000000005,Gas Oil combustion consumption by freight transport,AR-U,SESCO,annual,kg,53964884-3fe5-3988-93cd-9b0fcccd26c7 -2011,Chubut,II.1.1,1.11972,TJ,N2O,3.9,kg/TJ,4.3669080000000005,Gas Oil combustion consumption by freight transport,AR-U,SESCO,annual,kg,53964884-3fe5-3988-93cd-9b0fcccd26c7 -2011,Corrientes,II.1.1,0.46956,TJ,CO2,74100.0,kg/TJ,34794.396,Gas Oil combustion consumption by freight transport,AR-W,SESCO,annual,kg,882ff5ab-57f8-3b4a-bf4b-dfef3901bdb1 -2011,Corrientes,II.1.1,0.46956,TJ,CH4,3.9,kg/TJ,1.831284,Gas Oil combustion consumption by freight transport,AR-W,SESCO,annual,kg,78b7d7e6-4d08-3f17-ae8f-870329136b14 -2011,Corrientes,II.1.1,0.46956,TJ,N2O,3.9,kg/TJ,1.831284,Gas Oil combustion consumption by freight transport,AR-W,SESCO,annual,kg,78b7d7e6-4d08-3f17-ae8f-870329136b14 -2011,Córdoba,II.1.1,3.28692,TJ,CO2,74100.0,kg/TJ,243560.772,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,6c8b044f-3c3b-3032-94e5-b93dae4fb485 -2011,Córdoba,II.1.1,3.28692,TJ,CH4,3.9,kg/TJ,12.818988,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,540a0142-92cd-3370-9dc9-20e4bf9b045e -2011,Córdoba,II.1.1,3.28692,TJ,N2O,3.9,kg/TJ,12.818988,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,540a0142-92cd-3370-9dc9-20e4bf9b045e -2011,Entre Rios,II.1.1,1.6976399999999998,TJ,CO2,74100.0,kg/TJ,125795.12399999998,Gas Oil combustion consumption by freight transport,AR-E,SESCO,annual,kg,3613c20a-7a3c-3a94-92c4-491f86ffc911 -2011,Entre Rios,II.1.1,1.6976399999999998,TJ,CH4,3.9,kg/TJ,6.6207959999999995,Gas Oil combustion consumption by freight transport,AR-E,SESCO,annual,kg,3df5472d-9df4-3823-8e9f-55d882fc10f4 -2011,Entre Rios,II.1.1,1.6976399999999998,TJ,N2O,3.9,kg/TJ,6.6207959999999995,Gas Oil combustion consumption by freight transport,AR-E,SESCO,annual,kg,3df5472d-9df4-3823-8e9f-55d882fc10f4 -2011,Formosa,II.1.1,0.14448,TJ,CO2,74100.0,kg/TJ,10705.967999999999,Gas Oil combustion consumption by freight transport,AR-P,SESCO,annual,kg,3266a5f0-7e94-35e3-a244-85b6bdee65bf -2011,Formosa,II.1.1,0.14448,TJ,CH4,3.9,kg/TJ,0.563472,Gas Oil combustion consumption by freight transport,AR-P,SESCO,annual,kg,b850ec85-6d63-361b-a71b-bd582ee6fb00 -2011,Formosa,II.1.1,0.14448,TJ,N2O,3.9,kg/TJ,0.563472,Gas Oil combustion consumption by freight transport,AR-P,SESCO,annual,kg,b850ec85-6d63-361b-a71b-bd582ee6fb00 -2011,Jujuy,II.1.1,0.10836,TJ,CO2,74100.0,kg/TJ,8029.476,Gas Oil combustion consumption by freight transport,AR-Y,SESCO,annual,kg,2f2bef49-8cda-3d75-b58f-b70bb7287f1c -2011,Jujuy,II.1.1,0.10836,TJ,CH4,3.9,kg/TJ,0.422604,Gas Oil combustion consumption by freight transport,AR-Y,SESCO,annual,kg,425adcec-7882-367e-94d7-8815ba9d4ba0 -2011,Jujuy,II.1.1,0.10836,TJ,N2O,3.9,kg/TJ,0.422604,Gas Oil combustion consumption by freight transport,AR-Y,SESCO,annual,kg,425adcec-7882-367e-94d7-8815ba9d4ba0 -2011,La Pampa,II.1.1,0.43344,TJ,CO2,74100.0,kg/TJ,32117.904,Gas Oil combustion consumption by freight transport,AR-L,SESCO,annual,kg,c7274959-0671-3111-9342-6b90ae4e5586 -2011,La Pampa,II.1.1,0.43344,TJ,CH4,3.9,kg/TJ,1.690416,Gas Oil combustion consumption by freight transport,AR-L,SESCO,annual,kg,db47159f-9f3f-3a6c-a080-5ba571848ee9 -2011,La Pampa,II.1.1,0.43344,TJ,N2O,3.9,kg/TJ,1.690416,Gas Oil combustion consumption by freight transport,AR-L,SESCO,annual,kg,db47159f-9f3f-3a6c-a080-5ba571848ee9 -2011,La Rioja,II.1.1,0.07224,TJ,CO2,74100.0,kg/TJ,5352.9839999999995,Gas Oil combustion consumption by freight transport,AR-F,SESCO,annual,kg,2b86252a-aa17-3524-af2d-d11552b7975e -2011,La Rioja,II.1.1,0.07224,TJ,CH4,3.9,kg/TJ,0.281736,Gas Oil combustion consumption by freight transport,AR-F,SESCO,annual,kg,3a77a225-7610-3b5b-9287-3a8a6a499a15 -2011,La Rioja,II.1.1,0.07224,TJ,N2O,3.9,kg/TJ,0.281736,Gas Oil combustion consumption by freight transport,AR-F,SESCO,annual,kg,3a77a225-7610-3b5b-9287-3a8a6a499a15 -2011,Mendoza,II.1.1,2.13108,TJ,CO2,74100.0,kg/TJ,157913.028,Gas Oil combustion consumption by freight transport,AR-M,SESCO,annual,kg,dc128501-b7d0-3119-9776-1dd72524cc8a -2011,Mendoza,II.1.1,2.13108,TJ,CH4,3.9,kg/TJ,8.311212,Gas Oil combustion consumption by freight transport,AR-M,SESCO,annual,kg,b3e120b2-7c18-311b-af75-5283a53fc8ad -2011,Mendoza,II.1.1,2.13108,TJ,N2O,3.9,kg/TJ,8.311212,Gas Oil combustion consumption by freight transport,AR-M,SESCO,annual,kg,b3e120b2-7c18-311b-af75-5283a53fc8ad -2011,Misiones,II.1.1,0.36119999999999997,TJ,CO2,74100.0,kg/TJ,26764.92,Gas Oil combustion consumption by freight transport,AR-N,SESCO,annual,kg,179d168f-321a-38e9-a771-65c7884ee55c -2011,Misiones,II.1.1,0.36119999999999997,TJ,CH4,3.9,kg/TJ,1.40868,Gas Oil combustion consumption by freight transport,AR-N,SESCO,annual,kg,26e5e1e2-9348-3821-9b8d-d4412b028f6a -2011,Misiones,II.1.1,0.36119999999999997,TJ,N2O,3.9,kg/TJ,1.40868,Gas Oil combustion consumption by freight transport,AR-N,SESCO,annual,kg,26e5e1e2-9348-3821-9b8d-d4412b028f6a -2011,Neuquén,II.1.1,1.15584,TJ,CO2,74100.0,kg/TJ,85647.74399999999,Gas Oil combustion consumption by freight transport,AR-Q,SESCO,annual,kg,a828ec74-074f-330c-992f-c4fc2e507200 -2011,Neuquén,II.1.1,1.15584,TJ,CH4,3.9,kg/TJ,4.507776,Gas Oil combustion consumption by freight transport,AR-Q,SESCO,annual,kg,38097382-31fd-3b6c-998c-0f1b61652d93 -2011,Neuquén,II.1.1,1.15584,TJ,N2O,3.9,kg/TJ,4.507776,Gas Oil combustion consumption by freight transport,AR-Q,SESCO,annual,kg,38097382-31fd-3b6c-998c-0f1b61652d93 -2011,Rio Negro,II.1.1,0.50568,TJ,CO2,74100.0,kg/TJ,37470.888,Gas Oil combustion consumption by freight transport,AR-R,SESCO,annual,kg,5216dbcd-5fe7-388e-a706-ae560f6a92b4 -2011,Rio Negro,II.1.1,0.50568,TJ,CH4,3.9,kg/TJ,1.9721520000000001,Gas Oil combustion consumption by freight transport,AR-R,SESCO,annual,kg,6fc81f89-141d-3277-819a-5016a2ebac5d -2011,Rio Negro,II.1.1,0.50568,TJ,N2O,3.9,kg/TJ,1.9721520000000001,Gas Oil combustion consumption by freight transport,AR-R,SESCO,annual,kg,6fc81f89-141d-3277-819a-5016a2ebac5d -2011,Salta,II.1.1,1.04748,TJ,CO2,74100.0,kg/TJ,77618.268,Gas Oil combustion consumption by freight transport,AR-A,SESCO,annual,kg,8ac1c000-9866-327e-97f4-54cb28750c29 -2011,Salta,II.1.1,1.04748,TJ,CH4,3.9,kg/TJ,4.085172,Gas Oil combustion consumption by freight transport,AR-A,SESCO,annual,kg,a762e3fa-2f03-33d9-8443-135af5aca062 -2011,Salta,II.1.1,1.04748,TJ,N2O,3.9,kg/TJ,4.085172,Gas Oil combustion consumption by freight transport,AR-A,SESCO,annual,kg,a762e3fa-2f03-33d9-8443-135af5aca062 -2011,San Juan,II.1.1,0.18059999999999998,TJ,CO2,74100.0,kg/TJ,13382.46,Gas Oil combustion consumption by freight transport,AR-J,SESCO,annual,kg,fcd1acb9-004f-3a44-bc57-e0ea3fa984f4 -2011,San Juan,II.1.1,0.18059999999999998,TJ,CH4,3.9,kg/TJ,0.70434,Gas Oil combustion consumption by freight transport,AR-J,SESCO,annual,kg,915fe689-ba13-3c17-95cb-6c71a83471b5 -2011,San Juan,II.1.1,0.18059999999999998,TJ,N2O,3.9,kg/TJ,0.70434,Gas Oil combustion consumption by freight transport,AR-J,SESCO,annual,kg,915fe689-ba13-3c17-95cb-6c71a83471b5 -2011,San Luis,II.1.1,0.36119999999999997,TJ,CO2,74100.0,kg/TJ,26764.92,Gas Oil combustion consumption by freight transport,AR-D,SESCO,annual,kg,3e15c984-2e8f-3f8d-94e0-6e21824cb623 -2011,San Luis,II.1.1,0.36119999999999997,TJ,CH4,3.9,kg/TJ,1.40868,Gas Oil combustion consumption by freight transport,AR-D,SESCO,annual,kg,166bcf8f-cfca-3d06-a441-bf9b914fed2a -2011,San Luis,II.1.1,0.36119999999999997,TJ,N2O,3.9,kg/TJ,1.40868,Gas Oil combustion consumption by freight transport,AR-D,SESCO,annual,kg,166bcf8f-cfca-3d06-a441-bf9b914fed2a -2011,Santa Cruz,II.1.1,0.28896,TJ,CO2,74100.0,kg/TJ,21411.935999999998,Gas Oil combustion consumption by freight transport,AR-Z,SESCO,annual,kg,242475b1-39c7-3f77-8def-a06fd3e4cad9 -2011,Santa Cruz,II.1.1,0.28896,TJ,CH4,3.9,kg/TJ,1.126944,Gas Oil combustion consumption by freight transport,AR-Z,SESCO,annual,kg,c063cf8a-f210-3de5-8334-89b44a5e068c -2011,Santa Cruz,II.1.1,0.28896,TJ,N2O,3.9,kg/TJ,1.126944,Gas Oil combustion consumption by freight transport,AR-Z,SESCO,annual,kg,c063cf8a-f210-3de5-8334-89b44a5e068c -2011,Santa Fe,II.1.1,5.92368,TJ,CO2,74100.0,kg/TJ,438944.688,Gas Oil combustion consumption by freight transport,AR-S,SESCO,annual,kg,e9cf7dc9-0745-331f-9935-436d0af77ea7 -2011,Santa Fe,II.1.1,5.92368,TJ,CH4,3.9,kg/TJ,23.102352,Gas Oil combustion consumption by freight transport,AR-S,SESCO,annual,kg,f3fe4f16-0f97-3063-961e-9216d7199f1a -2011,Santa Fe,II.1.1,5.92368,TJ,N2O,3.9,kg/TJ,23.102352,Gas Oil combustion consumption by freight transport,AR-S,SESCO,annual,kg,f3fe4f16-0f97-3063-961e-9216d7199f1a -2011,Santiago del Estero,II.1.1,0.36119999999999997,TJ,CO2,74100.0,kg/TJ,26764.92,Gas Oil combustion consumption by freight transport,AR-G,SESCO,annual,kg,30214e35-51c6-34fe-b4ed-f3140282a42c -2011,Santiago del Estero,II.1.1,0.36119999999999997,TJ,CH4,3.9,kg/TJ,1.40868,Gas Oil combustion consumption by freight transport,AR-G,SESCO,annual,kg,6773ee25-a1e6-3f80-ab5d-27ea533b7ef9 -2011,Santiago del Estero,II.1.1,0.36119999999999997,TJ,N2O,3.9,kg/TJ,1.40868,Gas Oil combustion consumption by freight transport,AR-G,SESCO,annual,kg,6773ee25-a1e6-3f80-ab5d-27ea533b7ef9 -2011,Tucuman,II.1.1,0.6140399999999999,TJ,CO2,74100.0,kg/TJ,45500.363999999994,Gas Oil combustion consumption by freight transport,AR-T,SESCO,annual,kg,0dfea52d-e6e0-3a83-954a-be4a36a084e3 -2011,Tucuman,II.1.1,0.6140399999999999,TJ,CH4,3.9,kg/TJ,2.3947559999999997,Gas Oil combustion consumption by freight transport,AR-T,SESCO,annual,kg,152dffc0-f558-3269-ab34-b9cdcb3ad4e5 -2011,Tucuman,II.1.1,0.6140399999999999,TJ,N2O,3.9,kg/TJ,2.3947559999999997,Gas Oil combustion consumption by freight transport,AR-T,SESCO,annual,kg,152dffc0-f558-3269-ab34-b9cdcb3ad4e5 -2011,Buenos Aires,II.1.1,1.8871799999999996,TJ,CO2,71500.0,kg/TJ,134933.36999999997,Jet Kerosene combustion consumption by freight transport,AR-B,SESCO,annual,kg,8812585f-aa4f-33ad-aade-32a79a17ca4e -2011,Buenos Aires,II.1.1,1.8871799999999996,TJ,CH4,0.5,kg/TJ,0.9435899999999998,Jet Kerosene combustion consumption by freight transport,AR-B,SESCO,annual,kg,8df51a08-c2c4-34f6-ab32-e2f6d1f44958 -2011,Buenos Aires,II.1.1,1.8871799999999996,TJ,N2O,2.0,kg/TJ,3.7743599999999993,Jet Kerosene combustion consumption by freight transport,AR-B,SESCO,annual,kg,327f8496-d160-33f4-b559-80f5779b4a69 -2011,Buenos Aires,II.1.1,27.89171,TJ,CO2,73300.0,kg/TJ,2044462.3429999999,Naphtha combustion consumption by freight transport,AR-B,SESCO,annual,kg,fd3fa75d-9981-3e66-9fea-361593ed342c -2011,Buenos Aires,II.1.1,27.89171,TJ,CH4,0.5,kg/TJ,13.945855,Naphtha combustion consumption by freight transport,AR-B,SESCO,annual,kg,f8619ece-9755-3546-b8b2-2a6a0a8b2f63 -2011,Buenos Aires,II.1.1,27.89171,TJ,N2O,2.0,kg/TJ,55.78342,Naphtha combustion consumption by freight transport,AR-B,SESCO,annual,kg,19d635d9-8dd5-37a8-bee9-123f99197a2c -2011,Capital Federal,II.1.1,4.45445,TJ,CO2,73300.0,kg/TJ,326511.185,Naphtha combustion consumption by freight transport,AR-C,SESCO,annual,kg,d3dc0f3d-05eb-32d3-b51b-38c07e03b21a -2011,Capital Federal,II.1.1,4.45445,TJ,CH4,0.5,kg/TJ,2.227225,Naphtha combustion consumption by freight transport,AR-C,SESCO,annual,kg,89464308-9e64-3bf9-be6a-49222c7cefd8 -2011,Capital Federal,II.1.1,4.45445,TJ,N2O,2.0,kg/TJ,8.9089,Naphtha combustion consumption by freight transport,AR-C,SESCO,annual,kg,49455814-2bbb-324f-9b66-2737aa4482e8 -2011,Catamarca,II.1.1,0.034265,TJ,CO2,73300.0,kg/TJ,2511.6245,Naphtha combustion consumption by freight transport,AR-K,SESCO,annual,kg,dda362b9-fbc1-3e7d-95ed-175fb43398a8 -2011,Catamarca,II.1.1,0.034265,TJ,CH4,0.5,kg/TJ,0.0171325,Naphtha combustion consumption by freight transport,AR-K,SESCO,annual,kg,aaf2e257-2b54-3581-9f59-0f312799765d -2011,Catamarca,II.1.1,0.034265,TJ,N2O,2.0,kg/TJ,0.06853,Naphtha combustion consumption by freight transport,AR-K,SESCO,annual,kg,1d711ea2-d1f8-328c-ad2c-1564c3877c4a -2011,Chaco,II.1.1,0.513975,TJ,CO2,73300.0,kg/TJ,37674.3675,Naphtha combustion consumption by freight transport,AR-H,SESCO,annual,kg,f6d9a1f2-4732-3f82-b3d6-933ec78d8968 -2011,Chaco,II.1.1,0.513975,TJ,CH4,0.5,kg/TJ,0.2569875,Naphtha combustion consumption by freight transport,AR-H,SESCO,annual,kg,af925b67-9bce-3718-af94-94bbd1de885b -2011,Chaco,II.1.1,0.513975,TJ,N2O,2.0,kg/TJ,1.02795,Naphtha combustion consumption by freight transport,AR-H,SESCO,annual,kg,a890db4d-613f-3b03-b5ab-f31196ed0004 -2011,Chubut,II.1.1,0.75383,TJ,CO2,73300.0,kg/TJ,55255.739,Naphtha combustion consumption by freight transport,AR-U,SESCO,annual,kg,78fe3af2-323a-3c5d-855f-36f0cfc96e51 -2011,Chubut,II.1.1,0.75383,TJ,CH4,0.5,kg/TJ,0.376915,Naphtha combustion consumption by freight transport,AR-U,SESCO,annual,kg,5aacf393-eecd-3f4a-895d-548127288364 -2011,Chubut,II.1.1,0.75383,TJ,N2O,2.0,kg/TJ,1.50766,Naphtha combustion consumption by freight transport,AR-U,SESCO,annual,kg,30c4404f-2449-3b0f-8c27-e7b42ef42b91 -2011,Corrientes,II.1.1,0.6853,TJ,CO2,73300.0,kg/TJ,50232.49,Naphtha combustion consumption by freight transport,AR-W,SESCO,annual,kg,38a5b98f-94b7-308b-ae5b-c29171cef2d1 -2011,Corrientes,II.1.1,0.6853,TJ,CH4,0.5,kg/TJ,0.34265,Naphtha combustion consumption by freight transport,AR-W,SESCO,annual,kg,2b8c432e-0450-393b-9e90-520c7f07f363 -2011,Corrientes,II.1.1,0.6853,TJ,N2O,2.0,kg/TJ,1.3706,Naphtha combustion consumption by freight transport,AR-W,SESCO,annual,kg,288abf4f-d620-3e57-a1d8-3cca4b3b109a -2011,Córdoba,II.1.1,2.6041399999999997,TJ,CO2,73300.0,kg/TJ,190883.46199999997,Naphtha combustion consumption by freight transport,AR-X,SESCO,annual,kg,c848e1f3-4a1f-39df-b23b-5f43c8800e6c -2011,Córdoba,II.1.1,2.6041399999999997,TJ,CH4,0.5,kg/TJ,1.3020699999999998,Naphtha combustion consumption by freight transport,AR-X,SESCO,annual,kg,95d91de0-762d-3f68-8a3e-4db732910e22 -2011,Córdoba,II.1.1,2.6041399999999997,TJ,N2O,2.0,kg/TJ,5.208279999999999,Naphtha combustion consumption by freight transport,AR-X,SESCO,annual,kg,169aba64-ccc7-3008-b205-46340682ac73 -2011,Entre Rios,II.1.1,1.02795,TJ,CO2,73300.0,kg/TJ,75348.735,Naphtha combustion consumption by freight transport,AR-E,SESCO,annual,kg,17e8c4c0-0188-3c7e-806e-e3a3ab5c9df1 -2011,Entre Rios,II.1.1,1.02795,TJ,CH4,0.5,kg/TJ,0.513975,Naphtha combustion consumption by freight transport,AR-E,SESCO,annual,kg,d6cc9793-fe69-3208-bc89-177b3e645422 -2011,Entre Rios,II.1.1,1.02795,TJ,N2O,2.0,kg/TJ,2.0559,Naphtha combustion consumption by freight transport,AR-E,SESCO,annual,kg,4cf5899f-dd70-32f1-adb0-eab80909198d -2011,Formosa,II.1.1,0.034265,TJ,CO2,73300.0,kg/TJ,2511.6245,Naphtha combustion consumption by freight transport,AR-P,SESCO,annual,kg,399bdcda-3081-3ecf-bd9a-9bf4d8e45b3e -2011,Formosa,II.1.1,0.034265,TJ,CH4,0.5,kg/TJ,0.0171325,Naphtha combustion consumption by freight transport,AR-P,SESCO,annual,kg,a8e50fad-042e-31c9-87bb-b4ff86cc079f -2011,Formosa,II.1.1,0.034265,TJ,N2O,2.0,kg/TJ,0.06853,Naphtha combustion consumption by freight transport,AR-P,SESCO,annual,kg,1f38cba7-5564-3737-b849-cf14cca58c97 -2011,Jujuy,II.1.1,0.13706,TJ,CO2,73300.0,kg/TJ,10046.498,Naphtha combustion consumption by freight transport,AR-Y,SESCO,annual,kg,eac9b2e2-3b3e-3637-9067-1562458ccf41 -2011,Jujuy,II.1.1,0.13706,TJ,CH4,0.5,kg/TJ,0.06853,Naphtha combustion consumption by freight transport,AR-Y,SESCO,annual,kg,70642e49-49c0-3107-aafe-758b99450560 -2011,Jujuy,II.1.1,0.13706,TJ,N2O,2.0,kg/TJ,0.27412,Naphtha combustion consumption by freight transport,AR-Y,SESCO,annual,kg,84e4b892-6c5d-34d3-96f5-6f5d0a1d916c -2011,La Pampa,II.1.1,0.23985499999999998,TJ,CO2,73300.0,kg/TJ,17581.371499999997,Naphtha combustion consumption by freight transport,AR-L,SESCO,annual,kg,97a16840-f060-3b8c-941b-43b27cbec0b7 -2011,La Pampa,II.1.1,0.23985499999999998,TJ,CH4,0.5,kg/TJ,0.11992749999999999,Naphtha combustion consumption by freight transport,AR-L,SESCO,annual,kg,56145fc0-37c6-3ed5-8513-aa12a098e0e9 -2011,La Pampa,II.1.1,0.23985499999999998,TJ,N2O,2.0,kg/TJ,0.47970999999999997,Naphtha combustion consumption by freight transport,AR-L,SESCO,annual,kg,7c1ef8fc-1210-3443-870d-7f8565508887 -2011,La Rioja,II.1.1,0.102795,TJ,CO2,73300.0,kg/TJ,7534.8735,Naphtha combustion consumption by freight transport,AR-F,SESCO,annual,kg,8a59db8d-2066-3301-aea2-b177cf4e1a0c -2011,La Rioja,II.1.1,0.102795,TJ,CH4,0.5,kg/TJ,0.0513975,Naphtha combustion consumption by freight transport,AR-F,SESCO,annual,kg,c568f1ae-9d71-3d3c-aa41-4c26f5435755 -2011,La Rioja,II.1.1,0.102795,TJ,N2O,2.0,kg/TJ,0.20559,Naphtha combustion consumption by freight transport,AR-F,SESCO,annual,kg,7b6fec65-e0ea-3381-a2b3-101d0586af2d -2011,Mendoza,II.1.1,2.6041399999999997,TJ,CO2,73300.0,kg/TJ,190883.46199999997,Naphtha combustion consumption by freight transport,AR-M,SESCO,annual,kg,5e39143e-8f96-3f48-916e-c2ac341cfd31 -2011,Mendoza,II.1.1,2.6041399999999997,TJ,CH4,0.5,kg/TJ,1.3020699999999998,Naphtha combustion consumption by freight transport,AR-M,SESCO,annual,kg,85faec7c-fd01-36b6-86cc-175fbc979af9 -2011,Mendoza,II.1.1,2.6041399999999997,TJ,N2O,2.0,kg/TJ,5.208279999999999,Naphtha combustion consumption by freight transport,AR-M,SESCO,annual,kg,54316c61-7c61-37f0-aaa6-13388a012f07 -2011,Misiones,II.1.1,0.6510349999999999,TJ,CO2,73300.0,kg/TJ,47720.86549999999,Naphtha combustion consumption by freight transport,AR-N,SESCO,annual,kg,a1d3fcdf-e568-36cb-b66c-ced5543a73ad -2011,Misiones,II.1.1,0.6510349999999999,TJ,CH4,0.5,kg/TJ,0.32551749999999996,Naphtha combustion consumption by freight transport,AR-N,SESCO,annual,kg,6d847b55-52c9-35f3-9436-d13d33d2628b -2011,Misiones,II.1.1,0.6510349999999999,TJ,N2O,2.0,kg/TJ,1.3020699999999998,Naphtha combustion consumption by freight transport,AR-N,SESCO,annual,kg,059684c4-84f7-3ff5-8719-169ffe71aa57 -2011,Neuquén,II.1.1,0.856625,TJ,CO2,73300.0,kg/TJ,62790.612499999996,Naphtha combustion consumption by freight transport,AR-Q,SESCO,annual,kg,aa9b7d67-9791-3f7a-ac31-719c84b4ab98 -2011,Neuquén,II.1.1,0.856625,TJ,CH4,0.5,kg/TJ,0.4283125,Naphtha combustion consumption by freight transport,AR-Q,SESCO,annual,kg,5c5c998e-ca3e-334b-aac9-e5743a62e919 -2011,Neuquén,II.1.1,0.856625,TJ,N2O,2.0,kg/TJ,1.71325,Naphtha combustion consumption by freight transport,AR-Q,SESCO,annual,kg,5f583cc4-0d27-3b81-8100-7b01b9322caf -2011,Rio Negro,II.1.1,0.856625,TJ,CO2,73300.0,kg/TJ,62790.612499999996,Naphtha combustion consumption by freight transport,AR-R,SESCO,annual,kg,86142431-772f-326e-a740-34a79556b564 -2011,Rio Negro,II.1.1,0.856625,TJ,CH4,0.5,kg/TJ,0.4283125,Naphtha combustion consumption by freight transport,AR-R,SESCO,annual,kg,4420f583-4f43-32d9-9902-1bcecf41e48e -2011,Rio Negro,II.1.1,0.856625,TJ,N2O,2.0,kg/TJ,1.71325,Naphtha combustion consumption by freight transport,AR-R,SESCO,annual,kg,be1c3e60-7b17-3a8f-bc19-390d7dd27a8a -2011,Salta,II.1.1,0.6853,TJ,CO2,73300.0,kg/TJ,50232.49,Naphtha combustion consumption by freight transport,AR-A,SESCO,annual,kg,ac0843b3-99a1-3e42-9009-03b61577b324 -2011,Salta,II.1.1,0.6853,TJ,CH4,0.5,kg/TJ,0.34265,Naphtha combustion consumption by freight transport,AR-A,SESCO,annual,kg,b84f7999-3dde-3106-8255-28f8ec8db973 -2011,Salta,II.1.1,0.6853,TJ,N2O,2.0,kg/TJ,1.3706,Naphtha combustion consumption by freight transport,AR-A,SESCO,annual,kg,307f56cc-47e5-38cc-8dfb-a330405c595a -2011,San Juan,II.1.1,0.171325,TJ,CO2,73300.0,kg/TJ,12558.1225,Naphtha combustion consumption by freight transport,AR-J,SESCO,annual,kg,6d8ca4b4-c8e8-3a73-bcd0-e15172ba6cbe -2011,San Juan,II.1.1,0.171325,TJ,CH4,0.5,kg/TJ,0.0856625,Naphtha combustion consumption by freight transport,AR-J,SESCO,annual,kg,ed9106c4-75d5-3236-8536-501590a497a9 -2011,San Juan,II.1.1,0.171325,TJ,N2O,2.0,kg/TJ,0.34265,Naphtha combustion consumption by freight transport,AR-J,SESCO,annual,kg,1e80980c-d196-322f-b75a-80401e539ff9 -2011,San Luis,II.1.1,0.376915,TJ,CO2,73300.0,kg/TJ,27627.8695,Naphtha combustion consumption by freight transport,AR-D,SESCO,annual,kg,73b2b3e8-e402-30e4-aa20-8a2f5b593491 -2011,San Luis,II.1.1,0.376915,TJ,CH4,0.5,kg/TJ,0.1884575,Naphtha combustion consumption by freight transport,AR-D,SESCO,annual,kg,a5315a90-3247-34bd-b290-957d5017b7df -2011,San Luis,II.1.1,0.376915,TJ,N2O,2.0,kg/TJ,0.75383,Naphtha combustion consumption by freight transport,AR-D,SESCO,annual,kg,4f739b11-b223-3a52-ab5c-abfb16a64e44 -2011,Santa Cruz,II.1.1,0.23985499999999998,TJ,CO2,73300.0,kg/TJ,17581.371499999997,Naphtha combustion consumption by freight transport,AR-Z,SESCO,annual,kg,eee8726e-d753-3856-947d-0a327a56353d -2011,Santa Cruz,II.1.1,0.23985499999999998,TJ,CH4,0.5,kg/TJ,0.11992749999999999,Naphtha combustion consumption by freight transport,AR-Z,SESCO,annual,kg,a7ba8d19-24ca-395a-901a-deb50586e6eb -2011,Santa Cruz,II.1.1,0.23985499999999998,TJ,N2O,2.0,kg/TJ,0.47970999999999997,Naphtha combustion consumption by freight transport,AR-Z,SESCO,annual,kg,8af59631-ef40-305d-9455-dce141dd685a -2011,Santa Fe,II.1.1,4.146065,TJ,CO2,73300.0,kg/TJ,303906.56450000004,Naphtha combustion consumption by freight transport,AR-S,SESCO,annual,kg,3e43ac07-60d7-3bb4-a6f8-1a15fd7defa8 -2011,Santa Fe,II.1.1,4.146065,TJ,CH4,0.5,kg/TJ,2.0730325,Naphtha combustion consumption by freight transport,AR-S,SESCO,annual,kg,b9aa79bb-7d6d-3b1a-96e3-68c212de8244 -2011,Santa Fe,II.1.1,4.146065,TJ,N2O,2.0,kg/TJ,8.29213,Naphtha combustion consumption by freight transport,AR-S,SESCO,annual,kg,217a8f61-111b-3db5-bca0-8f1e1b870158 -2011,Santiago del Estero,II.1.1,0.20559,TJ,CO2,73300.0,kg/TJ,15069.747,Naphtha combustion consumption by freight transport,AR-G,SESCO,annual,kg,db65d87e-e180-3630-aed2-6324bc800bdd -2011,Santiago del Estero,II.1.1,0.20559,TJ,CH4,0.5,kg/TJ,0.102795,Naphtha combustion consumption by freight transport,AR-G,SESCO,annual,kg,52ce6313-e853-3306-afc3-a70e78d9a945 -2011,Santiago del Estero,II.1.1,0.20559,TJ,N2O,2.0,kg/TJ,0.41118,Naphtha combustion consumption by freight transport,AR-G,SESCO,annual,kg,da5e0e19-9683-3b6d-a9d8-06ca1886240a -2011,Tierra del Fuego,II.1.1,0.102795,TJ,CO2,73300.0,kg/TJ,7534.8735,Naphtha combustion consumption by freight transport,AR-V,SESCO,annual,kg,4aa5ef5a-428c-38e3-9811-54fbd2cef8c9 -2011,Tierra del Fuego,II.1.1,0.102795,TJ,CH4,0.5,kg/TJ,0.0513975,Naphtha combustion consumption by freight transport,AR-V,SESCO,annual,kg,a4c85dcc-ea65-32cb-a3e4-c9cefd201938 -2011,Tierra del Fuego,II.1.1,0.102795,TJ,N2O,2.0,kg/TJ,0.20559,Naphtha combustion consumption by freight transport,AR-V,SESCO,annual,kg,44426ace-0f06-3577-b0b5-5604267eec37 -2011,Tucuman,II.1.1,0.5825049999999999,TJ,CO2,73300.0,kg/TJ,42697.6165,Naphtha combustion consumption by freight transport,AR-T,SESCO,annual,kg,05e663be-2d7c-3ce5-9877-d704b2cfffe9 -2011,Tucuman,II.1.1,0.5825049999999999,TJ,CH4,0.5,kg/TJ,0.29125249999999997,Naphtha combustion consumption by freight transport,AR-T,SESCO,annual,kg,f8758db5-49c1-326c-b33b-4f022ad06710 -2011,Tucuman,II.1.1,0.5825049999999999,TJ,N2O,2.0,kg/TJ,1.1650099999999999,Naphtha combustion consumption by freight transport,AR-T,SESCO,annual,kg,ddfb92fe-5543-35d4-a805-ba1e362a4c5f -2011,Buenos Aires,II.1.1,31.044089999999997,TJ,CO2,73300.0,kg/TJ,2275531.797,Naphtha combustion consumption by freight transport,AR-B,SESCO,annual,kg,eab336fd-14be-30ad-9f55-368865ead109 -2011,Buenos Aires,II.1.1,31.044089999999997,TJ,CH4,0.5,kg/TJ,15.522044999999999,Naphtha combustion consumption by freight transport,AR-B,SESCO,annual,kg,796fbced-5691-3e1c-ad1c-a78db1fd2a97 -2011,Buenos Aires,II.1.1,31.044089999999997,TJ,N2O,2.0,kg/TJ,62.088179999999994,Naphtha combustion consumption by freight transport,AR-B,SESCO,annual,kg,2d5a1154-d972-3dc2-adaf-e768456a9a77 -2011,Capital Federal,II.1.1,8.394924999999999,TJ,CO2,73300.0,kg/TJ,615348.0025,Naphtha combustion consumption by freight transport,AR-C,SESCO,annual,kg,0910a4c4-6492-3d16-a00f-493dd56a5d76 -2011,Capital Federal,II.1.1,8.394924999999999,TJ,CH4,0.5,kg/TJ,4.197462499999999,Naphtha combustion consumption by freight transport,AR-C,SESCO,annual,kg,9648a66c-01ea-32c2-b46f-c779591cfdbe -2011,Capital Federal,II.1.1,8.394924999999999,TJ,N2O,2.0,kg/TJ,16.789849999999998,Naphtha combustion consumption by freight transport,AR-C,SESCO,annual,kg,2ba4f08b-ed7e-3fd9-87ce-a26be5b3d149 -2011,Catamarca,II.1.1,0.034265,TJ,CO2,73300.0,kg/TJ,2511.6245,Naphtha combustion consumption by freight transport,AR-K,SESCO,annual,kg,dda362b9-fbc1-3e7d-95ed-175fb43398a8 -2011,Catamarca,II.1.1,0.034265,TJ,CH4,0.5,kg/TJ,0.0171325,Naphtha combustion consumption by freight transport,AR-K,SESCO,annual,kg,aaf2e257-2b54-3581-9f59-0f312799765d -2011,Catamarca,II.1.1,0.034265,TJ,N2O,2.0,kg/TJ,0.06853,Naphtha combustion consumption by freight transport,AR-K,SESCO,annual,kg,1d711ea2-d1f8-328c-ad2c-1564c3877c4a -2011,Chaco,II.1.1,0.82236,TJ,CO2,73300.0,kg/TJ,60278.988,Naphtha combustion consumption by freight transport,AR-H,SESCO,annual,kg,667be57b-52c0-333a-bb23-3519ab338964 -2011,Chaco,II.1.1,0.82236,TJ,CH4,0.5,kg/TJ,0.41118,Naphtha combustion consumption by freight transport,AR-H,SESCO,annual,kg,396e1867-6292-38a7-bc69-f4c9ccd93471 -2011,Chaco,II.1.1,0.82236,TJ,N2O,2.0,kg/TJ,1.64472,Naphtha combustion consumption by freight transport,AR-H,SESCO,annual,kg,5381cd7a-c6a1-326a-babc-b9d1ee35c5f4 -2011,Chubut,II.1.1,0.6167699999999999,TJ,CO2,73300.0,kg/TJ,45209.240999999995,Naphtha combustion consumption by freight transport,AR-U,SESCO,annual,kg,ec4e815d-d7ff-3d82-97e6-ddd1572f8d4c -2011,Chubut,II.1.1,0.6167699999999999,TJ,CH4,0.5,kg/TJ,0.30838499999999996,Naphtha combustion consumption by freight transport,AR-U,SESCO,annual,kg,b968e661-f520-307a-8524-1603bf47dbb1 -2011,Chubut,II.1.1,0.6167699999999999,TJ,N2O,2.0,kg/TJ,1.2335399999999999,Naphtha combustion consumption by freight transport,AR-U,SESCO,annual,kg,12c39a33-fe8c-3b6e-aea2-648d4181863d -2011,Corrientes,II.1.1,0.54824,TJ,CO2,73300.0,kg/TJ,40185.992,Naphtha combustion consumption by freight transport,AR-W,SESCO,annual,kg,ff1ab1be-e4b2-3a76-a677-ee597b97b5bf -2011,Corrientes,II.1.1,0.54824,TJ,CH4,0.5,kg/TJ,0.27412,Naphtha combustion consumption by freight transport,AR-W,SESCO,annual,kg,ad60e335-be1c-3b21-ad19-678c161b83d5 -2011,Corrientes,II.1.1,0.54824,TJ,N2O,2.0,kg/TJ,1.09648,Naphtha combustion consumption by freight transport,AR-W,SESCO,annual,kg,341be329-6b5f-3159-9c56-87b99b212335 -2011,Córdoba,II.1.1,2.4670799999999997,TJ,CO2,73300.0,kg/TJ,180836.96399999998,Naphtha combustion consumption by freight transport,AR-X,SESCO,annual,kg,1d118505-7195-3ca8-8200-21b84d51705c -2011,Córdoba,II.1.1,2.4670799999999997,TJ,CH4,0.5,kg/TJ,1.2335399999999999,Naphtha combustion consumption by freight transport,AR-X,SESCO,annual,kg,aef9cc69-1a09-3335-a361-00dc058e51f8 -2011,Córdoba,II.1.1,2.4670799999999997,TJ,N2O,2.0,kg/TJ,4.934159999999999,Naphtha combustion consumption by freight transport,AR-X,SESCO,annual,kg,02215d96-7840-3042-b414-45c14a6c57e8 -2011,Entre Rios,II.1.1,0.9594199999999999,TJ,CO2,73300.0,kg/TJ,70325.48599999999,Naphtha combustion consumption by freight transport,AR-E,SESCO,annual,kg,672cd771-f0b3-3c61-82f3-060061ebfa31 -2011,Entre Rios,II.1.1,0.9594199999999999,TJ,CH4,0.5,kg/TJ,0.47970999999999997,Naphtha combustion consumption by freight transport,AR-E,SESCO,annual,kg,d02d8087-e00b-3bc5-8e2b-5e4a916f1138 -2011,Entre Rios,II.1.1,0.9594199999999999,TJ,N2O,2.0,kg/TJ,1.9188399999999999,Naphtha combustion consumption by freight transport,AR-E,SESCO,annual,kg,dd646882-bfb7-371d-8332-875a47ea17d6 -2011,Formosa,II.1.1,0.06853,TJ,CO2,73300.0,kg/TJ,5023.249,Naphtha combustion consumption by freight transport,AR-P,SESCO,annual,kg,711529f5-32af-3f51-ba64-bca6284ac585 -2011,Formosa,II.1.1,0.06853,TJ,CH4,0.5,kg/TJ,0.034265,Naphtha combustion consumption by freight transport,AR-P,SESCO,annual,kg,5f7bf246-c548-3a9c-80ac-ebc9c48e8dfc -2011,Formosa,II.1.1,0.06853,TJ,N2O,2.0,kg/TJ,0.13706,Naphtha combustion consumption by freight transport,AR-P,SESCO,annual,kg,806662b5-214a-3059-9953-56e2beada00c -2011,Jujuy,II.1.1,0.06853,TJ,CO2,73300.0,kg/TJ,5023.249,Naphtha combustion consumption by freight transport,AR-Y,SESCO,annual,kg,fd718b23-be92-3015-9f76-01676a603076 -2011,Jujuy,II.1.1,0.06853,TJ,CH4,0.5,kg/TJ,0.034265,Naphtha combustion consumption by freight transport,AR-Y,SESCO,annual,kg,aa693055-394f-3a27-8160-b499bc8021a0 -2011,Jujuy,II.1.1,0.06853,TJ,N2O,2.0,kg/TJ,0.13706,Naphtha combustion consumption by freight transport,AR-Y,SESCO,annual,kg,09b4e6ea-1781-39c6-92e2-52378fe71af2 -2011,La Pampa,II.1.1,0.20559,TJ,CO2,73300.0,kg/TJ,15069.747,Naphtha combustion consumption by freight transport,AR-L,SESCO,annual,kg,6b974914-73c0-3021-b376-1f60c1e23bd7 -2011,La Pampa,II.1.1,0.20559,TJ,CH4,0.5,kg/TJ,0.102795,Naphtha combustion consumption by freight transport,AR-L,SESCO,annual,kg,e1c9a9e1-62fe-3faf-b897-369cafcf2fcc -2011,La Pampa,II.1.1,0.20559,TJ,N2O,2.0,kg/TJ,0.41118,Naphtha combustion consumption by freight transport,AR-L,SESCO,annual,kg,71ef0840-ddb4-3f26-9bbf-fa17490622d4 -2011,La Rioja,II.1.1,0.06853,TJ,CO2,73300.0,kg/TJ,5023.249,Naphtha combustion consumption by freight transport,AR-F,SESCO,annual,kg,6516eb96-9e15-3e26-ac01-7c6f9748a7b9 -2011,La Rioja,II.1.1,0.06853,TJ,CH4,0.5,kg/TJ,0.034265,Naphtha combustion consumption by freight transport,AR-F,SESCO,annual,kg,975385f9-dd02-30c7-872a-05ef16488e67 -2011,La Rioja,II.1.1,0.06853,TJ,N2O,2.0,kg/TJ,0.13706,Naphtha combustion consumption by freight transport,AR-F,SESCO,annual,kg,f2281f7e-1e5a-3682-b253-d676922fa4b6 -2011,Mendoza,II.1.1,1.678985,TJ,CO2,73300.0,kg/TJ,123069.6005,Naphtha combustion consumption by freight transport,AR-M,SESCO,annual,kg,d31898ee-94a6-3677-a911-b5bd26832940 -2011,Mendoza,II.1.1,1.678985,TJ,CH4,0.5,kg/TJ,0.8394925,Naphtha combustion consumption by freight transport,AR-M,SESCO,annual,kg,b161ecd8-5ac9-325d-bec0-0029dcea122b -2011,Mendoza,II.1.1,1.678985,TJ,N2O,2.0,kg/TJ,3.35797,Naphtha combustion consumption by freight transport,AR-M,SESCO,annual,kg,9f75d27e-f454-3a20-a434-25a95886682b -2011,Misiones,II.1.1,0.47970999999999997,TJ,CO2,73300.0,kg/TJ,35162.742999999995,Naphtha combustion consumption by freight transport,AR-N,SESCO,annual,kg,d55b6618-2cf8-305b-ae6e-f5052ddbf9d7 -2011,Misiones,II.1.1,0.47970999999999997,TJ,CH4,0.5,kg/TJ,0.23985499999999998,Naphtha combustion consumption by freight transport,AR-N,SESCO,annual,kg,5554b538-9c3c-36a7-bf46-8b6a29341324 -2011,Misiones,II.1.1,0.47970999999999997,TJ,N2O,2.0,kg/TJ,0.9594199999999999,Naphtha combustion consumption by freight transport,AR-N,SESCO,annual,kg,3036853a-388b-35b4-a8be-56c8786fb20a -2011,Neuquén,II.1.1,0.6510349999999999,TJ,CO2,73300.0,kg/TJ,47720.86549999999,Naphtha combustion consumption by freight transport,AR-Q,SESCO,annual,kg,9eb9f654-9c41-3341-b9b0-77876c7c89f5 -2011,Neuquén,II.1.1,0.6510349999999999,TJ,CH4,0.5,kg/TJ,0.32551749999999996,Naphtha combustion consumption by freight transport,AR-Q,SESCO,annual,kg,0df2742e-e6fe-31c8-b31c-1a79dca3b653 -2011,Neuquén,II.1.1,0.6510349999999999,TJ,N2O,2.0,kg/TJ,1.3020699999999998,Naphtha combustion consumption by freight transport,AR-Q,SESCO,annual,kg,20c8184c-a778-30a8-9efa-66eac36c18d8 -2011,Rio Negro,II.1.1,0.6167699999999999,TJ,CO2,73300.0,kg/TJ,45209.240999999995,Naphtha combustion consumption by freight transport,AR-R,SESCO,annual,kg,a14832e0-c51f-35d6-bbb4-c10851d18e1c -2011,Rio Negro,II.1.1,0.6167699999999999,TJ,CH4,0.5,kg/TJ,0.30838499999999996,Naphtha combustion consumption by freight transport,AR-R,SESCO,annual,kg,10c8f481-a2dc-3b22-a5d5-a02820baeaf6 -2011,Rio Negro,II.1.1,0.6167699999999999,TJ,N2O,2.0,kg/TJ,1.2335399999999999,Naphtha combustion consumption by freight transport,AR-R,SESCO,annual,kg,29ce6b8c-1749-380d-b9b8-6bd5e5ec7892 -2011,Salta,II.1.1,0.445445,TJ,CO2,73300.0,kg/TJ,32651.118499999997,Naphtha combustion consumption by freight transport,AR-A,SESCO,annual,kg,40a17e66-4505-33e1-955f-beafc4bcf0a1 -2011,Salta,II.1.1,0.445445,TJ,CH4,0.5,kg/TJ,0.2227225,Naphtha combustion consumption by freight transport,AR-A,SESCO,annual,kg,3b13310e-da7b-338f-b3c0-0a35e006f5f3 -2011,Salta,II.1.1,0.445445,TJ,N2O,2.0,kg/TJ,0.89089,Naphtha combustion consumption by freight transport,AR-A,SESCO,annual,kg,66a3e59f-8991-3469-b0b7-70e89842c88a -2011,San Juan,II.1.1,0.13706,TJ,CO2,73300.0,kg/TJ,10046.498,Naphtha combustion consumption by freight transport,AR-J,SESCO,annual,kg,3752940e-0e5c-3931-bf53-f7d66dc55035 -2011,San Juan,II.1.1,0.13706,TJ,CH4,0.5,kg/TJ,0.06853,Naphtha combustion consumption by freight transport,AR-J,SESCO,annual,kg,15bcefe6-963c-3365-8162-932699c3631d -2011,San Juan,II.1.1,0.13706,TJ,N2O,2.0,kg/TJ,0.27412,Naphtha combustion consumption by freight transport,AR-J,SESCO,annual,kg,6eabb755-c474-3f17-9146-cabf61dc334b -2011,San Luis,II.1.1,0.27412,TJ,CO2,73300.0,kg/TJ,20092.996,Naphtha combustion consumption by freight transport,AR-D,SESCO,annual,kg,1b92a263-fab2-3761-a191-ff6e18f82523 -2011,San Luis,II.1.1,0.27412,TJ,CH4,0.5,kg/TJ,0.13706,Naphtha combustion consumption by freight transport,AR-D,SESCO,annual,kg,68813455-f436-3fae-ad9d-c58aca3a0673 -2011,San Luis,II.1.1,0.27412,TJ,N2O,2.0,kg/TJ,0.54824,Naphtha combustion consumption by freight transport,AR-D,SESCO,annual,kg,ee254adc-2079-3379-b7f2-da929c5f561a -2011,Santa Cruz,II.1.1,0.13706,TJ,CO2,73300.0,kg/TJ,10046.498,Naphtha combustion consumption by freight transport,AR-Z,SESCO,annual,kg,807566c0-ebaa-37f7-85dc-aaf0e9c847d7 -2011,Santa Cruz,II.1.1,0.13706,TJ,CH4,0.5,kg/TJ,0.06853,Naphtha combustion consumption by freight transport,AR-Z,SESCO,annual,kg,f6079e01-5c5d-3d17-bf8b-eaa10daecabf -2011,Santa Cruz,II.1.1,0.13706,TJ,N2O,2.0,kg/TJ,0.27412,Naphtha combustion consumption by freight transport,AR-Z,SESCO,annual,kg,ae5f516a-c3e1-3ef1-a8bf-9a5f668364ec -2011,Santa Fe,II.1.1,3.8376799999999998,TJ,CO2,73300.0,kg/TJ,281301.94399999996,Naphtha combustion consumption by freight transport,AR-S,SESCO,annual,kg,678144b5-2672-3642-a031-e77acf163362 -2011,Santa Fe,II.1.1,3.8376799999999998,TJ,CH4,0.5,kg/TJ,1.9188399999999999,Naphtha combustion consumption by freight transport,AR-S,SESCO,annual,kg,413ed9f2-16b2-3b8a-aa62-0cf103dc2f3e -2011,Santa Fe,II.1.1,3.8376799999999998,TJ,N2O,2.0,kg/TJ,7.6753599999999995,Naphtha combustion consumption by freight transport,AR-S,SESCO,annual,kg,7cd353bf-2da1-39d3-a31f-68048fcf4d17 -2011,Santiago del Estero,II.1.1,0.102795,TJ,CO2,73300.0,kg/TJ,7534.8735,Naphtha combustion consumption by freight transport,AR-G,SESCO,annual,kg,a90cae4c-93a1-32c5-9685-b63d22830728 -2011,Santiago del Estero,II.1.1,0.102795,TJ,CH4,0.5,kg/TJ,0.0513975,Naphtha combustion consumption by freight transport,AR-G,SESCO,annual,kg,02db2bba-d51d-350e-9ab8-556219555435 -2011,Santiago del Estero,II.1.1,0.102795,TJ,N2O,2.0,kg/TJ,0.20559,Naphtha combustion consumption by freight transport,AR-G,SESCO,annual,kg,d6d0ac53-a3b4-3aa6-9610-016f426c8a07 -2011,Tucuman,II.1.1,0.6510349999999999,TJ,CO2,73300.0,kg/TJ,47720.86549999999,Naphtha combustion consumption by freight transport,AR-T,SESCO,annual,kg,f1abd563-1cec-3866-930a-7a3445b4345b -2011,Tucuman,II.1.1,0.6510349999999999,TJ,CH4,0.5,kg/TJ,0.32551749999999996,Naphtha combustion consumption by freight transport,AR-T,SESCO,annual,kg,45fa20eb-8c8b-3543-a7b8-f66929261773 -2011,Tucuman,II.1.1,0.6510349999999999,TJ,N2O,2.0,kg/TJ,1.3020699999999998,Naphtha combustion consumption by freight transport,AR-T,SESCO,annual,kg,1386092d-c2a2-38c5-a5d5-ea8867d63621 -2011,Buenos Aires,II.1.1,11361.257039999999,TJ,CO2,74100.0,kg/TJ,841869146.6639999,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,6a95265c-9c9b-3440-aa40-2afdb44689ab -2011,Buenos Aires,II.1.1,11361.257039999999,TJ,CH4,3.9,kg/TJ,44308.902455999996,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,27bd68e5-29af-3fdb-9937-48cf600494f6 -2011,Buenos Aires,II.1.1,11361.257039999999,TJ,N2O,3.9,kg/TJ,44308.902455999996,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,27bd68e5-29af-3fdb-9937-48cf600494f6 -2011,Capital Federal,II.1.1,2923.011,TJ,CO2,74100.0,kg/TJ,216595115.1,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,80ac7d7e-59a5-3f0c-8349-136888053096 -2011,Capital Federal,II.1.1,2923.011,TJ,CH4,3.9,kg/TJ,11399.7429,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,df2ae4b8-cfed-33cc-af2b-0d91f43326ac -2011,Capital Federal,II.1.1,2923.011,TJ,N2O,3.9,kg/TJ,11399.7429,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,df2ae4b8-cfed-33cc-af2b-0d91f43326ac -2011,Catamarca,II.1.1,169.87236,TJ,CO2,74100.0,kg/TJ,12587541.875999998,Gas Oil combustion consumption by public passenger transport,AR-K,SESCO,annual,kg,2f22b2e1-22ef-35cf-a99c-dc3d1a0a249f -2011,Catamarca,II.1.1,169.87236,TJ,CH4,3.9,kg/TJ,662.5022039999999,Gas Oil combustion consumption by public passenger transport,AR-K,SESCO,annual,kg,f8e7e788-d90f-301c-b7d2-fedcab68ff09 -2011,Catamarca,II.1.1,169.87236,TJ,N2O,3.9,kg/TJ,662.5022039999999,Gas Oil combustion consumption by public passenger transport,AR-K,SESCO,annual,kg,f8e7e788-d90f-301c-b7d2-fedcab68ff09 -2011,Chaco,II.1.1,504.19908,TJ,CO2,74100.0,kg/TJ,37361151.828,Gas Oil combustion consumption by public passenger transport,AR-H,SESCO,annual,kg,4d059f8c-cc2d-3478-a328-102f0e03ddf5 -2011,Chaco,II.1.1,504.19908,TJ,CH4,3.9,kg/TJ,1966.3764119999998,Gas Oil combustion consumption by public passenger transport,AR-H,SESCO,annual,kg,b31ada9c-c0f0-36da-8d22-36e7d45a19bd -2011,Chaco,II.1.1,504.19908,TJ,N2O,3.9,kg/TJ,1966.3764119999998,Gas Oil combustion consumption by public passenger transport,AR-H,SESCO,annual,kg,b31ada9c-c0f0-36da-8d22-36e7d45a19bd -2011,Chubut,II.1.1,176.59068,TJ,CO2,74100.0,kg/TJ,13085369.388,Gas Oil combustion consumption by public passenger transport,AR-U,SESCO,annual,kg,6227ec8f-666d-336f-8b6d-bf2215a75406 -2011,Chubut,II.1.1,176.59068,TJ,CH4,3.9,kg/TJ,688.7036519999999,Gas Oil combustion consumption by public passenger transport,AR-U,SESCO,annual,kg,d5735e30-2076-390d-9b47-f9970a58936d -2011,Chubut,II.1.1,176.59068,TJ,N2O,3.9,kg/TJ,688.7036519999999,Gas Oil combustion consumption by public passenger transport,AR-U,SESCO,annual,kg,d5735e30-2076-390d-9b47-f9970a58936d -2011,Corrientes,II.1.1,483.71903999999995,TJ,CO2,74100.0,kg/TJ,35843580.86399999,Gas Oil combustion consumption by public passenger transport,AR-W,SESCO,annual,kg,e0aca66f-f511-30dd-9456-1bf2efd82f4b -2011,Corrientes,II.1.1,483.71903999999995,TJ,CH4,3.9,kg/TJ,1886.5042559999997,Gas Oil combustion consumption by public passenger transport,AR-W,SESCO,annual,kg,74dcc96e-808b-30cd-b900-3754b8ff38f5 -2011,Corrientes,II.1.1,483.71903999999995,TJ,N2O,3.9,kg/TJ,1886.5042559999997,Gas Oil combustion consumption by public passenger transport,AR-W,SESCO,annual,kg,74dcc96e-808b-30cd-b900-3754b8ff38f5 -2011,Córdoba,II.1.1,2434.34352,TJ,CO2,74100.0,kg/TJ,180384854.832,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,e1982034-b344-3229-907d-74cb8d2db195 -2011,Córdoba,II.1.1,2434.34352,TJ,CH4,3.9,kg/TJ,9493.939728,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,d0d488c1-98f0-3b34-8ff0-9a6476d0a0bc -2011,Córdoba,II.1.1,2434.34352,TJ,N2O,3.9,kg/TJ,9493.939728,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,d0d488c1-98f0-3b34-8ff0-9a6476d0a0bc -2011,Entre Rios,II.1.1,419.20871999999997,TJ,CO2,74100.0,kg/TJ,31063366.152,Gas Oil combustion consumption by public passenger transport,AR-E,SESCO,annual,kg,286022d7-72b3-31d5-b08e-b3cb269f78e8 -2011,Entre Rios,II.1.1,419.20871999999997,TJ,CH4,3.9,kg/TJ,1634.9140079999997,Gas Oil combustion consumption by public passenger transport,AR-E,SESCO,annual,kg,05db1d2d-0610-3f9e-ba83-dc6c3716c4fc -2011,Entre Rios,II.1.1,419.20871999999997,TJ,N2O,3.9,kg/TJ,1634.9140079999997,Gas Oil combustion consumption by public passenger transport,AR-E,SESCO,annual,kg,05db1d2d-0610-3f9e-ba83-dc6c3716c4fc -2011,Formosa,II.1.1,50.06232,TJ,CO2,74100.0,kg/TJ,3709617.912,Gas Oil combustion consumption by public passenger transport,AR-P,SESCO,annual,kg,f402b1d1-5d29-38dc-935b-43d3c88745af -2011,Formosa,II.1.1,50.06232,TJ,CH4,3.9,kg/TJ,195.243048,Gas Oil combustion consumption by public passenger transport,AR-P,SESCO,annual,kg,dcfcd39f-ddfd-3441-9506-7bca40e8abdd -2011,Formosa,II.1.1,50.06232,TJ,N2O,3.9,kg/TJ,195.243048,Gas Oil combustion consumption by public passenger transport,AR-P,SESCO,annual,kg,dcfcd39f-ddfd-3441-9506-7bca40e8abdd -2011,Jujuy,II.1.1,516.6966,TJ,CO2,74100.0,kg/TJ,38287218.06,Gas Oil combustion consumption by public passenger transport,AR-Y,SESCO,annual,kg,a05a82a8-523b-3991-a005-4b9cad4b3deb -2011,Jujuy,II.1.1,516.6966,TJ,CH4,3.9,kg/TJ,2015.11674,Gas Oil combustion consumption by public passenger transport,AR-Y,SESCO,annual,kg,d1459bde-9e14-3df5-b499-b4a3652f6019 -2011,Jujuy,II.1.1,516.6966,TJ,N2O,3.9,kg/TJ,2015.11674,Gas Oil combustion consumption by public passenger transport,AR-Y,SESCO,annual,kg,d1459bde-9e14-3df5-b499-b4a3652f6019 -2011,La Pampa,II.1.1,14.33964,TJ,CO2,74100.0,kg/TJ,1062567.324,Gas Oil combustion consumption by public passenger transport,AR-L,SESCO,annual,kg,3b8a749c-8f7a-347b-a57f-9acf8619de4d -2011,La Pampa,II.1.1,14.33964,TJ,CH4,3.9,kg/TJ,55.924595999999994,Gas Oil combustion consumption by public passenger transport,AR-L,SESCO,annual,kg,59198d0b-9225-3c6f-b255-662b5b1aa671 -2011,La Pampa,II.1.1,14.33964,TJ,N2O,3.9,kg/TJ,55.924595999999994,Gas Oil combustion consumption by public passenger transport,AR-L,SESCO,annual,kg,59198d0b-9225-3c6f-b255-662b5b1aa671 -2011,La Rioja,II.1.1,115.43952,TJ,CO2,74100.0,kg/TJ,8554068.432,Gas Oil combustion consumption by public passenger transport,AR-F,SESCO,annual,kg,2ad4fcee-aaed-3625-8300-6cb4592bee56 -2011,La Rioja,II.1.1,115.43952,TJ,CH4,3.9,kg/TJ,450.214128,Gas Oil combustion consumption by public passenger transport,AR-F,SESCO,annual,kg,08dd3cef-3e26-3ee9-bd83-66c7e71367c2 -2011,La Rioja,II.1.1,115.43952,TJ,N2O,3.9,kg/TJ,450.214128,Gas Oil combustion consumption by public passenger transport,AR-F,SESCO,annual,kg,08dd3cef-3e26-3ee9-bd83-66c7e71367c2 -2011,Mendoza,II.1.1,1557.8555999999999,TJ,CO2,74100.0,kg/TJ,115437099.96,Gas Oil combustion consumption by public passenger transport,AR-M,SESCO,annual,kg,9d808706-9173-3312-8396-6ae236c54488 -2011,Mendoza,II.1.1,1557.8555999999999,TJ,CH4,3.9,kg/TJ,6075.636839999999,Gas Oil combustion consumption by public passenger transport,AR-M,SESCO,annual,kg,b827a316-b747-3e08-9e9c-18f0aae350e6 -2011,Mendoza,II.1.1,1557.8555999999999,TJ,N2O,3.9,kg/TJ,6075.636839999999,Gas Oil combustion consumption by public passenger transport,AR-M,SESCO,annual,kg,b827a316-b747-3e08-9e9c-18f0aae350e6 -2011,Misiones,II.1.1,814.90332,TJ,CO2,74100.0,kg/TJ,60384336.012,Gas Oil combustion consumption by public passenger transport,AR-N,SESCO,annual,kg,fccc423d-6fb0-3b64-852a-cce9afe3f529 -2011,Misiones,II.1.1,814.90332,TJ,CH4,3.9,kg/TJ,3178.122948,Gas Oil combustion consumption by public passenger transport,AR-N,SESCO,annual,kg,e5223648-b8a6-33ce-bf27-4a43e78c98fc -2011,Misiones,II.1.1,814.90332,TJ,N2O,3.9,kg/TJ,3178.122948,Gas Oil combustion consumption by public passenger transport,AR-N,SESCO,annual,kg,e5223648-b8a6-33ce-bf27-4a43e78c98fc -2011,Neuquén,II.1.1,229.75932,TJ,CO2,74100.0,kg/TJ,17025165.612,Gas Oil combustion consumption by public passenger transport,AR-Q,SESCO,annual,kg,93ff211d-ca75-3720-bdb0-03176c4c83be -2011,Neuquén,II.1.1,229.75932,TJ,CH4,3.9,kg/TJ,896.061348,Gas Oil combustion consumption by public passenger transport,AR-Q,SESCO,annual,kg,2d344fd0-674e-3a36-a255-16b9df88a2b3 -2011,Neuquén,II.1.1,229.75932,TJ,N2O,3.9,kg/TJ,896.061348,Gas Oil combustion consumption by public passenger transport,AR-Q,SESCO,annual,kg,2d344fd0-674e-3a36-a255-16b9df88a2b3 -2011,Rio Negro,II.1.1,231.45695999999998,TJ,CO2,74100.0,kg/TJ,17150960.735999998,Gas Oil combustion consumption by public passenger transport,AR-R,SESCO,annual,kg,1f8c16b8-eff3-34c9-9163-34515fcb8ca7 -2011,Rio Negro,II.1.1,231.45695999999998,TJ,CH4,3.9,kg/TJ,902.6821439999999,Gas Oil combustion consumption by public passenger transport,AR-R,SESCO,annual,kg,5724ef0d-660d-3fc7-888b-4b7927c5f941 -2011,Rio Negro,II.1.1,231.45695999999998,TJ,N2O,3.9,kg/TJ,902.6821439999999,Gas Oil combustion consumption by public passenger transport,AR-R,SESCO,annual,kg,5724ef0d-660d-3fc7-888b-4b7927c5f941 -2011,Salta,II.1.1,929.76492,TJ,CO2,74100.0,kg/TJ,68895580.572,Gas Oil combustion consumption by public passenger transport,AR-A,SESCO,annual,kg,91812040-29b0-36ff-8e9f-edbe04449898 -2011,Salta,II.1.1,929.76492,TJ,CH4,3.9,kg/TJ,3626.0831879999996,Gas Oil combustion consumption by public passenger transport,AR-A,SESCO,annual,kg,6cb3e639-52ad-3800-acc2-4b7f50699969 -2011,Salta,II.1.1,929.76492,TJ,N2O,3.9,kg/TJ,3626.0831879999996,Gas Oil combustion consumption by public passenger transport,AR-A,SESCO,annual,kg,6cb3e639-52ad-3800-acc2-4b7f50699969 -2011,San Juan,II.1.1,474.29172,TJ,CO2,74100.0,kg/TJ,35145016.452,Gas Oil combustion consumption by public passenger transport,AR-J,SESCO,annual,kg,56198d8c-bc39-3cfd-bc38-aef3c6fe8293 -2011,San Juan,II.1.1,474.29172,TJ,CH4,3.9,kg/TJ,1849.7377079999999,Gas Oil combustion consumption by public passenger transport,AR-J,SESCO,annual,kg,1e992e14-8926-30ca-bc41-a1a8b1a4f13c -2011,San Juan,II.1.1,474.29172,TJ,N2O,3.9,kg/TJ,1849.7377079999999,Gas Oil combustion consumption by public passenger transport,AR-J,SESCO,annual,kg,1e992e14-8926-30ca-bc41-a1a8b1a4f13c -2011,San Luis,II.1.1,103.37544,TJ,CO2,74100.0,kg/TJ,7660120.104,Gas Oil combustion consumption by public passenger transport,AR-D,SESCO,annual,kg,064b6576-d9a6-3b95-b8c3-37c9bb9ac1dd -2011,San Luis,II.1.1,103.37544,TJ,CH4,3.9,kg/TJ,403.16421599999995,Gas Oil combustion consumption by public passenger transport,AR-D,SESCO,annual,kg,790dc665-17ee-313a-b3bf-4c09b7889dc2 -2011,San Luis,II.1.1,103.37544,TJ,N2O,3.9,kg/TJ,403.16421599999995,Gas Oil combustion consumption by public passenger transport,AR-D,SESCO,annual,kg,790dc665-17ee-313a-b3bf-4c09b7889dc2 -2011,Santa Cruz,II.1.1,80.36699999999999,TJ,CO2,74100.0,kg/TJ,5955194.699999999,Gas Oil combustion consumption by public passenger transport,AR-Z,SESCO,annual,kg,25cf3e12-ac73-36db-a9d1-5b48ae9570f1 -2011,Santa Cruz,II.1.1,80.36699999999999,TJ,CH4,3.9,kg/TJ,313.43129999999996,Gas Oil combustion consumption by public passenger transport,AR-Z,SESCO,annual,kg,d39bf09a-a2f0-3ce0-bfa7-b0f3b8fac2ef -2011,Santa Cruz,II.1.1,80.36699999999999,TJ,N2O,3.9,kg/TJ,313.43129999999996,Gas Oil combustion consumption by public passenger transport,AR-Z,SESCO,annual,kg,d39bf09a-a2f0-3ce0-bfa7-b0f3b8fac2ef -2011,Santa Fe,II.1.1,1399.90284,TJ,CO2,74100.0,kg/TJ,103732800.44399999,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,f5227bf6-792f-3c72-b3d7-ca27dd0863a0 -2011,Santa Fe,II.1.1,1399.90284,TJ,CH4,3.9,kg/TJ,5459.621075999999,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,f5a310d9-ab33-3849-839a-6e096901ac4a -2011,Santa Fe,II.1.1,1399.90284,TJ,N2O,3.9,kg/TJ,5459.621075999999,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,f5a310d9-ab33-3849-839a-6e096901ac4a -2011,Santiago del Estero,II.1.1,364.16184,TJ,CO2,74100.0,kg/TJ,26984392.344,Gas Oil combustion consumption by public passenger transport,AR-G,SESCO,annual,kg,0156e03e-3780-3508-bbc0-c7dd2d6c6e0e -2011,Santiago del Estero,II.1.1,364.16184,TJ,CH4,3.9,kg/TJ,1420.231176,Gas Oil combustion consumption by public passenger transport,AR-G,SESCO,annual,kg,eb44ae64-c122-3e0d-8020-b6d53ff245d9 -2011,Santiago del Estero,II.1.1,364.16184,TJ,N2O,3.9,kg/TJ,1420.231176,Gas Oil combustion consumption by public passenger transport,AR-G,SESCO,annual,kg,eb44ae64-c122-3e0d-8020-b6d53ff245d9 -2011,Tierra del Fuego,II.1.1,17.987759999999998,TJ,CO2,74100.0,kg/TJ,1332893.0159999998,Gas Oil combustion consumption by public passenger transport,AR-V,SESCO,annual,kg,0526708d-37fa-3304-a932-75d49c1ba877 -2011,Tierra del Fuego,II.1.1,17.987759999999998,TJ,CH4,3.9,kg/TJ,70.15226399999999,Gas Oil combustion consumption by public passenger transport,AR-V,SESCO,annual,kg,a32d0e72-4134-343d-90ac-db43cd7aa747 -2011,Tierra del Fuego,II.1.1,17.987759999999998,TJ,N2O,3.9,kg/TJ,70.15226399999999,Gas Oil combustion consumption by public passenger transport,AR-V,SESCO,annual,kg,a32d0e72-4134-343d-90ac-db43cd7aa747 -2011,Tucuman,II.1.1,1098.55368,TJ,CO2,74100.0,kg/TJ,81402827.688,Gas Oil combustion consumption by public passenger transport,AR-T,SESCO,annual,kg,99bf8494-73ba-3ebb-b605-9885209ff768 -2011,Tucuman,II.1.1,1098.55368,TJ,CH4,3.9,kg/TJ,4284.3593519999995,Gas Oil combustion consumption by public passenger transport,AR-T,SESCO,annual,kg,4c33477b-7f98-3e2d-8a9f-28b884137176 -2011,Tucuman,II.1.1,1098.55368,TJ,N2O,3.9,kg/TJ,4284.3593519999995,Gas Oil combustion consumption by public passenger transport,AR-T,SESCO,annual,kg,4c33477b-7f98-3e2d-8a9f-28b884137176 -2012,Buenos Aires,II.5.1,0.65016,TJ,CO2,74100.0,kg/TJ,48176.856,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,84e0bbcf-ed29-315f-a85e-2187553b0672 -2012,Buenos Aires,II.5.1,0.65016,TJ,CH4,3.9,kg/TJ,2.535624,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,f44555ee-7e37-32ed-9acd-3edc0dac4830 -2012,Buenos Aires,II.5.1,0.65016,TJ,N2O,3.9,kg/TJ,2.535624,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,f44555ee-7e37-32ed-9acd-3edc0dac4830 -2012,Santa Fe,II.5.1,0.68628,TJ,CO2,74100.0,kg/TJ,50853.348,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,ec772ab6-b665-3635-b61f-6e30883d8ce8 -2012,Santa Fe,II.5.1,0.68628,TJ,CH4,3.9,kg/TJ,2.676492,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,1baa35d5-422d-3f0c-8898-e96487689493 -2012,Santa Fe,II.5.1,0.68628,TJ,N2O,3.9,kg/TJ,2.676492,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,1baa35d5-422d-3f0c-8898-e96487689493 -2012,Capital Federal,II.1.1,0.44680439999999993,TJ,CO2,74100.0,kg/TJ,33108.20604,Diesel Oil combustion consumption by freight transport,AR-C,SESCO,annual,kg,74ee81dd-d9ba-38b4-b2fc-45c27c0cdcab -2012,Capital Federal,II.1.1,0.44680439999999993,TJ,CH4,5.0,kg/TJ,2.2340219999999995,Diesel Oil combustion consumption by freight transport,AR-C,SESCO,annual,kg,d988ba08-7c6c-3804-b520-93e6583f7c62 -2012,Capital Federal,II.1.1,0.44680439999999993,TJ,N2O,0.6,kg/TJ,0.2680826399999999,Diesel Oil combustion consumption by freight transport,AR-C,SESCO,annual,kg,b6489002-471a-3647-9cd7-522bc81f185c -2012,Capital Federal,II.1.1,0.5418,TJ,CO2,74100.0,kg/TJ,40147.38,Gas Oil combustion consumption by freight transport,AR-C,SESCO,annual,kg,087f4d69-6aea-3ac0-9203-17fe797695bb -2012,Capital Federal,II.1.1,0.5418,TJ,CH4,3.9,kg/TJ,2.1130199999999997,Gas Oil combustion consumption by freight transport,AR-C,SESCO,annual,kg,c2451603-da4a-396a-a18e-a8408c6f6210 -2012,Capital Federal,II.1.1,0.5418,TJ,N2O,3.9,kg/TJ,2.1130199999999997,Gas Oil combustion consumption by freight transport,AR-C,SESCO,annual,kg,c2451603-da4a-396a-a18e-a8408c6f6210 -2012,Capital Federal,II.1.1,2.13108,TJ,CO2,74100.0,kg/TJ,157913.028,Diesel Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,4b9f9852-3af4-3661-874a-62f3a53b5256 -2012,Capital Federal,II.1.1,2.13108,TJ,CH4,5.0,kg/TJ,10.6554,Diesel Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,540b9fd9-a285-39a5-830d-1f723e7d56cb -2012,Capital Federal,II.1.1,2.13108,TJ,N2O,0.6,kg/TJ,1.2786479999999998,Diesel Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,9355edfa-f5e3-36b4-a8f5-54f1b669750c -2012,Buenos Aires,II.5.1,266.45724,TJ,CO2,74100.0,kg/TJ,19744481.484,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,a028fc3e-2a8e-3fd6-8c7a-5f48d4131508 -2012,Buenos Aires,II.5.1,266.45724,TJ,CH4,3.9,kg/TJ,1039.183236,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,31cf76e4-e095-3251-b884-b2573e85abbe -2012,Buenos Aires,II.5.1,266.45724,TJ,N2O,3.9,kg/TJ,1039.183236,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,31cf76e4-e095-3251-b884-b2573e85abbe -2012,Buenos Aires,II.1.1,256.05467999999996,TJ,CO2,74100.0,kg/TJ,18973651.788,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,fe369169-c399-355c-8aaa-cad9613bf755 -2012,Buenos Aires,II.1.1,256.05467999999996,TJ,CH4,3.9,kg/TJ,998.6132519999999,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,871d014f-b0d8-33bf-81e6-51124e038bfc -2012,Buenos Aires,II.1.1,256.05467999999996,TJ,N2O,3.9,kg/TJ,998.6132519999999,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,871d014f-b0d8-33bf-81e6-51124e038bfc -2012,Capital Federal,II.1.1,105.50652,TJ,CO2,74100.0,kg/TJ,7818033.131999999,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,77411db6-e928-3b48-8915-6ee287d8a008 -2012,Capital Federal,II.1.1,105.50652,TJ,CH4,3.9,kg/TJ,411.47542799999997,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,afa40f11-2773-39ea-a108-29f598acd34b -2012,Capital Federal,II.1.1,105.50652,TJ,N2O,3.9,kg/TJ,411.47542799999997,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,afa40f11-2773-39ea-a108-29f598acd34b -2012,Córdoba,II.1.1,8.813279999999999,TJ,CO2,74100.0,kg/TJ,653064.048,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,4314f886-0e74-31de-b610-73bb44281fc3 -2012,Córdoba,II.1.1,8.813279999999999,TJ,CH4,3.9,kg/TJ,34.37179199999999,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,51a376b9-ad36-3923-a55b-1be8fce013cf -2012,Córdoba,II.1.1,8.813279999999999,TJ,N2O,3.9,kg/TJ,34.37179199999999,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,51a376b9-ad36-3923-a55b-1be8fce013cf -2012,Entre Rios,II.1.1,42.838319999999996,TJ,CO2,74100.0,kg/TJ,3174319.5119999996,Gas Oil combustion consumption by public passenger transport,AR-E,SESCO,annual,kg,0488adce-f4a5-3755-b197-f1d95bcaec2d -2012,Entre Rios,II.1.1,42.838319999999996,TJ,CH4,3.9,kg/TJ,167.069448,Gas Oil combustion consumption by public passenger transport,AR-E,SESCO,annual,kg,97cfd320-e325-3894-89a1-283d91f450df -2012,Entre Rios,II.1.1,42.838319999999996,TJ,N2O,3.9,kg/TJ,167.069448,Gas Oil combustion consumption by public passenger transport,AR-E,SESCO,annual,kg,97cfd320-e325-3894-89a1-283d91f450df -2012,Mendoza,II.1.1,16.7958,TJ,CO2,74100.0,kg/TJ,1244568.78,Gas Oil combustion consumption by public passenger transport,AR-M,SESCO,annual,kg,1b9c7390-9565-3f00-b58f-e62bb6f6df9a -2012,Mendoza,II.1.1,16.7958,TJ,CH4,3.9,kg/TJ,65.50362,Gas Oil combustion consumption by public passenger transport,AR-M,SESCO,annual,kg,88971981-8806-3092-bfce-910a162f2cbd -2012,Mendoza,II.1.1,16.7958,TJ,N2O,3.9,kg/TJ,65.50362,Gas Oil combustion consumption by public passenger transport,AR-M,SESCO,annual,kg,88971981-8806-3092-bfce-910a162f2cbd -2012,Misiones,II.1.1,21.45528,TJ,CO2,74100.0,kg/TJ,1589836.248,Gas Oil combustion consumption by public passenger transport,AR-N,SESCO,annual,kg,9ad1be9c-5dc7-3dcd-8d19-4bdcbbcd41f3 -2012,Misiones,II.1.1,21.45528,TJ,CH4,3.9,kg/TJ,83.675592,Gas Oil combustion consumption by public passenger transport,AR-N,SESCO,annual,kg,fb755524-196a-3468-a419-7bcc8cfcab22 -2012,Misiones,II.1.1,21.45528,TJ,N2O,3.9,kg/TJ,83.675592,Gas Oil combustion consumption by public passenger transport,AR-N,SESCO,annual,kg,fb755524-196a-3468-a419-7bcc8cfcab22 -2012,Salta,II.1.1,6.57384,TJ,CO2,74100.0,kg/TJ,487121.544,Gas Oil combustion consumption by public passenger transport,AR-A,SESCO,annual,kg,2256f562-811a-3c2b-9b3e-dc6ae64ef779 -2012,Salta,II.1.1,6.57384,TJ,CH4,3.9,kg/TJ,25.637976,Gas Oil combustion consumption by public passenger transport,AR-A,SESCO,annual,kg,1564c4e0-1fc7-3be1-920a-8934934f313c -2012,Salta,II.1.1,6.57384,TJ,N2O,3.9,kg/TJ,25.637976,Gas Oil combustion consumption by public passenger transport,AR-A,SESCO,annual,kg,1564c4e0-1fc7-3be1-920a-8934934f313c -2012,San Juan,II.1.1,8.126999999999999,TJ,CO2,74100.0,kg/TJ,602210.7,Gas Oil combustion consumption by public passenger transport,AR-J,SESCO,annual,kg,c5cf53ea-7070-3d26-9a75-60949f4a1e97 -2012,San Juan,II.1.1,8.126999999999999,TJ,CH4,3.9,kg/TJ,31.695299999999996,Gas Oil combustion consumption by public passenger transport,AR-J,SESCO,annual,kg,2c0e9cf1-514d-3f98-849f-4c060fe5b96e -2012,San Juan,II.1.1,8.126999999999999,TJ,N2O,3.9,kg/TJ,31.695299999999996,Gas Oil combustion consumption by public passenger transport,AR-J,SESCO,annual,kg,2c0e9cf1-514d-3f98-849f-4c060fe5b96e -2012,Santa Fe,II.1.1,24.453239999999997,TJ,CO2,74100.0,kg/TJ,1811985.0839999998,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,afd40732-f8c2-34f5-a84d-b163ab8724f1 -2012,Santa Fe,II.1.1,24.453239999999997,TJ,CH4,3.9,kg/TJ,95.36763599999999,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,428be613-fc04-33d2-b532-8d5c8f4d4041 -2012,Santa Fe,II.1.1,24.453239999999997,TJ,N2O,3.9,kg/TJ,95.36763599999999,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,428be613-fc04-33d2-b532-8d5c8f4d4041 -2012,Buenos Aires,II.5.1,199.1728,TJ,CO2,69300.0,kg/TJ,13802675.04,Motor Gasoline combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,49990c35-5374-30ca-98a1-f61796c7f25b -2012,Buenos Aires,II.5.1,199.1728,TJ,CH4,33.0,kg/TJ,6572.7024,Motor Gasoline combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,d7dd125f-79ee-3214-a623-6829b382ab45 -2012,Buenos Aires,II.5.1,199.1728,TJ,N2O,3.2,kg/TJ,637.35296,Motor Gasoline combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,24d18294-c897-36bd-baab-331833d7bac6 -2012,Córdoba,II.5.1,88.6,TJ,CO2,69300.0,kg/TJ,6139980.0,Motor Gasoline combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,7ae424fa-8e3b-39bb-80e9-3c021e892046 -2012,Córdoba,II.5.1,88.6,TJ,CH4,33.0,kg/TJ,2923.7999999999997,Motor Gasoline combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,1395dce2-9e5d-349c-9c55-4acdac56240f -2012,Córdoba,II.5.1,88.6,TJ,N2O,3.2,kg/TJ,283.52,Motor Gasoline combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,d74c6134-6f41-365b-83e1-89bf659912fe -2012,Santa Fe,II.5.1,259.90189799999996,TJ,CO2,69300.0,kg/TJ,18011201.5314,Motor Gasoline combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,bd321ca1-d109-3995-a634-7353d4bb1dde -2012,Santa Fe,II.5.1,259.90189799999996,TJ,CH4,33.0,kg/TJ,8576.762633999999,Motor Gasoline combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,091e388a-7ddc-3317-b829-b9fb274e24c4 -2012,Santa Fe,II.5.1,259.90189799999996,TJ,N2O,3.2,kg/TJ,831.6860735999999,Motor Gasoline combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,d65146c3-abef-3e0e-93b5-5067f6ba3260 -2012,Buenos Aires,II.5.1,79.370088,TJ,CO2,74100.0,kg/TJ,5881323.5208,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,d3036eaa-b718-3d48-992c-a184344566b5 -2012,Buenos Aires,II.5.1,79.370088,TJ,CH4,3.9,kg/TJ,309.5433432,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,89db2a94-48d1-3e0d-b0b2-1ad53ae511c8 -2012,Buenos Aires,II.5.1,79.370088,TJ,N2O,3.9,kg/TJ,309.5433432,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,89db2a94-48d1-3e0d-b0b2-1ad53ae511c8 -2012,Capital Federal,II.5.1,7.223999999999999,TJ,CO2,74100.0,kg/TJ,535298.3999999999,Gas Oil combustion consumption by agriculture machines,AR-C,SESCO,annual,kg,ddb962f1-565c-3128-b5ec-ceb0e50c07d4 -2012,Capital Federal,II.5.1,7.223999999999999,TJ,CH4,3.9,kg/TJ,28.173599999999997,Gas Oil combustion consumption by agriculture machines,AR-C,SESCO,annual,kg,7adc3e58-98ee-3a00-b3c4-2a384ce0f71e -2012,Capital Federal,II.5.1,7.223999999999999,TJ,N2O,3.9,kg/TJ,28.173599999999997,Gas Oil combustion consumption by agriculture machines,AR-C,SESCO,annual,kg,7adc3e58-98ee-3a00-b3c4-2a384ce0f71e -2012,Chaco,II.5.1,77.0461272,TJ,CO2,74100.0,kg/TJ,5709118.02552,Gas Oil combustion consumption by agriculture machines,AR-H,SESCO,annual,kg,ddc2ae4e-78d0-302d-a9a3-6300b1c2ed6d -2012,Chaco,II.5.1,77.0461272,TJ,CH4,3.9,kg/TJ,300.47989608,Gas Oil combustion consumption by agriculture machines,AR-H,SESCO,annual,kg,a6efbddd-601a-39a3-b9ed-24b447773814 -2012,Chaco,II.5.1,77.0461272,TJ,N2O,3.9,kg/TJ,300.47989608,Gas Oil combustion consumption by agriculture machines,AR-H,SESCO,annual,kg,a6efbddd-601a-39a3-b9ed-24b447773814 -2012,Córdoba,II.5.1,36.560663999999996,TJ,CO2,74100.0,kg/TJ,2709145.2024,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,dbc2b35f-c2aa-3852-ab41-a65ba9bcd7e3 -2012,Córdoba,II.5.1,36.560663999999996,TJ,CH4,3.9,kg/TJ,142.58658959999997,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,bc558ee0-8741-3e2b-bda1-54c496dd2635 -2012,Córdoba,II.5.1,36.560663999999996,TJ,N2O,3.9,kg/TJ,142.58658959999997,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,bc558ee0-8741-3e2b-bda1-54c496dd2635 -2012,La Pampa,II.5.1,22.86396,TJ,CO2,74100.0,kg/TJ,1694219.436,Gas Oil combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,5a9ff3f6-636b-32fb-b70f-02ddffcebb71 -2012,La Pampa,II.5.1,22.86396,TJ,CH4,3.9,kg/TJ,89.169444,Gas Oil combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,9543368e-645b-3626-bb10-0f0eae63e27d -2012,La Pampa,II.5.1,22.86396,TJ,N2O,3.9,kg/TJ,89.169444,Gas Oil combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,9543368e-645b-3626-bb10-0f0eae63e27d -2012,Mendoza,II.5.1,1.15584,TJ,CO2,74100.0,kg/TJ,85647.74399999999,Gas Oil combustion consumption by agriculture machines,AR-M,SESCO,annual,kg,0fc1d836-f315-383c-bf28-d22e6ce2c419 -2012,Mendoza,II.5.1,1.15584,TJ,CH4,3.9,kg/TJ,4.507776,Gas Oil combustion consumption by agriculture machines,AR-M,SESCO,annual,kg,3f039bd9-a42c-3251-8853-84e0a05af018 -2012,Mendoza,II.5.1,1.15584,TJ,N2O,3.9,kg/TJ,4.507776,Gas Oil combustion consumption by agriculture machines,AR-M,SESCO,annual,kg,3f039bd9-a42c-3251-8853-84e0a05af018 -2012,Rio Negro,II.5.1,16.976399999999998,TJ,CO2,74100.0,kg/TJ,1257951.2399999998,Gas Oil combustion consumption by agriculture machines,AR-R,SESCO,annual,kg,d5dbdd10-24c3-36f1-8d6a-25d27630ad8e -2012,Rio Negro,II.5.1,16.976399999999998,TJ,CH4,3.9,kg/TJ,66.20795999999999,Gas Oil combustion consumption by agriculture machines,AR-R,SESCO,annual,kg,3edd096c-3ca2-35d9-b842-f9a1dbb85fdd -2012,Rio Negro,II.5.1,16.976399999999998,TJ,N2O,3.9,kg/TJ,66.20795999999999,Gas Oil combustion consumption by agriculture machines,AR-R,SESCO,annual,kg,3edd096c-3ca2-35d9-b842-f9a1dbb85fdd -2012,Santa Fe,II.5.1,363.3101304,TJ,CO2,74100.0,kg/TJ,26921280.662639998,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,9ee29d39-1001-3aae-be5a-9be9fe5682e3 -2012,Santa Fe,II.5.1,363.3101304,TJ,CH4,3.9,kg/TJ,1416.90950856,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,6b6e3422-f2d9-36b0-bc60-f5aeabd61bec -2012,Santa Fe,II.5.1,363.3101304,TJ,N2O,3.9,kg/TJ,1416.90950856,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,6b6e3422-f2d9-36b0-bc60-f5aeabd61bec -2012,Córdoba,II.5.1,7.874097,TJ,CO2,73300.0,kg/TJ,577171.3101,Naphtha combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,a3e215b9-2852-3f40-98a5-d4b7e12f8132 -2012,Córdoba,II.5.1,7.874097,TJ,CH4,0.5,kg/TJ,3.9370485,Naphtha combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,be46af68-bcea-3fa2-b476-58262339cf34 -2012,Córdoba,II.5.1,7.874097,TJ,N2O,2.0,kg/TJ,15.748194,Naphtha combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,2d22632d-95ef-3b49-92b5-3bb967fef647 -2012,Santa Fe,II.5.1,21.340241999999996,TJ,CO2,73300.0,kg/TJ,1564239.7385999998,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,20cc3830-c339-3538-8342-3fd9382e491e -2012,Santa Fe,II.5.1,21.340241999999996,TJ,CH4,0.5,kg/TJ,10.670120999999998,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,7b544067-0ed7-3296-8786-8555192f9b41 -2012,Santa Fe,II.5.1,21.340241999999996,TJ,N2O,2.0,kg/TJ,42.68048399999999,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,6e318bfc-fa7d-3b5a-82fa-502e6bacb94c -2012,Córdoba,II.5.1,3.755444,TJ,CO2,73300.0,kg/TJ,275274.0452,Naphtha combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,14b45390-ca7a-398a-9141-6af1e8352a8c -2012,Córdoba,II.5.1,3.755444,TJ,CH4,0.5,kg/TJ,1.877722,Naphtha combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,d7ff07dc-a48c-3de4-a940-e4854c3fec9c -2012,Córdoba,II.5.1,3.755444,TJ,N2O,2.0,kg/TJ,7.510888,Naphtha combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,b1bff9f3-73df-3fc1-99ea-95273b774ad2 -2012,Santa Fe,II.5.1,0.6167699999999999,TJ,CO2,73300.0,kg/TJ,45209.240999999995,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,2a21d722-0b11-3e36-bf6f-41dd5feee660 -2012,Santa Fe,II.5.1,0.6167699999999999,TJ,CH4,0.5,kg/TJ,0.30838499999999996,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,adc619da-e0c6-3238-9d3e-7b7689956639 -2012,Santa Fe,II.5.1,0.6167699999999999,TJ,N2O,2.0,kg/TJ,1.2335399999999999,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,2b537ab6-5ecb-390e-a1b4-56a9f122b813 -2012,Capital Federal,II.2.1,61.260242399999996,TJ,CO2,74100.0,kg/TJ,4539383.96184,Gas Oil combustion consumption by railway transport,AR-C,SESCO,annual,kg,4b680641-33ba-3a62-9207-ea7ce5624d7f -2012,Capital Federal,II.2.1,61.260242399999996,TJ,CH4,3.9,kg/TJ,238.91494536,Gas Oil combustion consumption by railway transport,AR-C,SESCO,annual,kg,e48245e2-e295-315a-9d03-244557ef9e27 -2012,Capital Federal,II.2.1,61.260242399999996,TJ,N2O,3.9,kg/TJ,238.91494536,Gas Oil combustion consumption by railway transport,AR-C,SESCO,annual,kg,e48245e2-e295-315a-9d03-244557ef9e27 -2012,Córdoba,II.2.1,7.51296,TJ,CO2,74100.0,kg/TJ,556710.336,Gas Oil combustion consumption by railway transport,AR-X,SESCO,annual,kg,6abf2e59-f464-3475-b4be-ae7ab505283c -2012,Córdoba,II.2.1,7.51296,TJ,CH4,3.9,kg/TJ,29.300544,Gas Oil combustion consumption by railway transport,AR-X,SESCO,annual,kg,c9effdf8-507e-3bd9-9a9f-b0fe9c1d214a -2012,Córdoba,II.2.1,7.51296,TJ,N2O,3.9,kg/TJ,29.300544,Gas Oil combustion consumption by railway transport,AR-X,SESCO,annual,kg,c9effdf8-507e-3bd9-9a9f-b0fe9c1d214a -2012,Mendoza,II.2.1,16.615199999999998,TJ,CO2,74100.0,kg/TJ,1231186.3199999998,Gas Oil combustion consumption by railway transport,AR-M,SESCO,annual,kg,6d4fd9b0-df05-3e93-b273-c906dd3209d2 -2012,Mendoza,II.2.1,16.615199999999998,TJ,CH4,3.9,kg/TJ,64.79928,Gas Oil combustion consumption by railway transport,AR-M,SESCO,annual,kg,ce17a550-c71a-3e41-806a-27de2506226a -2012,Mendoza,II.2.1,16.615199999999998,TJ,N2O,3.9,kg/TJ,64.79928,Gas Oil combustion consumption by railway transport,AR-M,SESCO,annual,kg,ce17a550-c71a-3e41-806a-27de2506226a -2012,Buenos Aires,II.1.1,1136.3952783959999,TJ,CO2,74100.0,kg/TJ,84206890.1291436,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,ec82e15c-8d16-3617-96b6-f2aea3885baf -2012,Buenos Aires,II.1.1,1136.3952783959999,TJ,CH4,3.9,kg/TJ,4431.941585744399,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,79e0c7ae-3f30-3dc9-91f5-329d1c74a410 -2012,Buenos Aires,II.1.1,1136.3952783959999,TJ,N2O,3.9,kg/TJ,4431.941585744399,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,79e0c7ae-3f30-3dc9-91f5-329d1c74a410 -2012,Capital Federal,II.1.1,280.9146312,TJ,CO2,74100.0,kg/TJ,20815774.171919998,Gas Oil combustion consumption by freight transport,AR-C,SESCO,annual,kg,9d53b80d-2d53-36d8-aebd-3045ee6d2d35 -2012,Capital Federal,II.1.1,280.9146312,TJ,CH4,3.9,kg/TJ,1095.5670616799998,Gas Oil combustion consumption by freight transport,AR-C,SESCO,annual,kg,c21e6c24-14e8-3a98-a093-3fd48454efd3 -2012,Capital Federal,II.1.1,280.9146312,TJ,N2O,3.9,kg/TJ,1095.5670616799998,Gas Oil combustion consumption by freight transport,AR-C,SESCO,annual,kg,c21e6c24-14e8-3a98-a093-3fd48454efd3 -2012,Chaco,II.1.1,125.32256604,TJ,CO2,74100.0,kg/TJ,9286402.143564,Gas Oil combustion consumption by freight transport,AR-H,SESCO,annual,kg,3b377db2-f38b-3355-8427-32e3900b7a21 -2012,Chaco,II.1.1,125.32256604,TJ,CH4,3.9,kg/TJ,488.758007556,Gas Oil combustion consumption by freight transport,AR-H,SESCO,annual,kg,20000e3f-842e-37ff-bfa2-46220d02da7e -2012,Chaco,II.1.1,125.32256604,TJ,N2O,3.9,kg/TJ,488.758007556,Gas Oil combustion consumption by freight transport,AR-H,SESCO,annual,kg,20000e3f-842e-37ff-bfa2-46220d02da7e -2012,Chubut,II.1.1,21.426665736,TJ,CO2,74100.0,kg/TJ,1587715.9310376,Gas Oil combustion consumption by freight transport,AR-U,SESCO,annual,kg,d8b19744-ac35-38bc-8976-4b08341b1830 -2012,Chubut,II.1.1,21.426665736,TJ,CH4,3.9,kg/TJ,83.5639963704,Gas Oil combustion consumption by freight transport,AR-U,SESCO,annual,kg,b50d3db0-3bb4-3936-a4f4-1022d4b51182 -2012,Chubut,II.1.1,21.426665736,TJ,N2O,3.9,kg/TJ,83.5639963704,Gas Oil combustion consumption by freight transport,AR-U,SESCO,annual,kg,b50d3db0-3bb4-3936-a4f4-1022d4b51182 -2012,Corrientes,II.1.1,285.8135868,TJ,CO2,74100.0,kg/TJ,21178786.78188,Gas Oil combustion consumption by freight transport,AR-W,SESCO,annual,kg,5857f1ee-afcc-30d1-8612-e87af9d2bb74 -2012,Corrientes,II.1.1,285.8135868,TJ,CH4,3.9,kg/TJ,1114.67298852,Gas Oil combustion consumption by freight transport,AR-W,SESCO,annual,kg,3fe05538-8476-3825-a8b9-a68fd3220b2a -2012,Corrientes,II.1.1,285.8135868,TJ,N2O,3.9,kg/TJ,1114.67298852,Gas Oil combustion consumption by freight transport,AR-W,SESCO,annual,kg,3fe05538-8476-3825-a8b9-a68fd3220b2a -2012,Córdoba,II.1.1,75.85199999999999,TJ,CO2,74100.0,kg/TJ,5620633.199999999,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,6017a3e8-d29c-35d6-b7c7-2b1f5317687b -2012,Córdoba,II.1.1,75.85199999999999,TJ,CH4,3.9,kg/TJ,295.8228,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,c300c4c4-785a-3167-9fea-6c8daeaf535b -2012,Córdoba,II.1.1,75.85199999999999,TJ,N2O,3.9,kg/TJ,295.8228,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,c300c4c4-785a-3167-9fea-6c8daeaf535b -2012,Entre Rios,II.1.1,31.5649068,TJ,CO2,74100.0,kg/TJ,2338959.59388,Gas Oil combustion consumption by freight transport,AR-E,SESCO,annual,kg,1d9429c4-7138-3c8e-88a0-d41597fceb88 -2012,Entre Rios,II.1.1,31.5649068,TJ,CH4,3.9,kg/TJ,123.10313651999999,Gas Oil combustion consumption by freight transport,AR-E,SESCO,annual,kg,ded90f6c-dded-3166-aa28-a5411e718dc1 -2012,Entre Rios,II.1.1,31.5649068,TJ,N2O,3.9,kg/TJ,123.10313651999999,Gas Oil combustion consumption by freight transport,AR-E,SESCO,annual,kg,ded90f6c-dded-3166-aa28-a5411e718dc1 -2012,Formosa,II.1.1,86.48031,TJ,CO2,74100.0,kg/TJ,6408190.971,Gas Oil combustion consumption by freight transport,AR-P,SESCO,annual,kg,81e21a98-2226-31d2-8c97-abe1a579775b -2012,Formosa,II.1.1,86.48031,TJ,CH4,3.9,kg/TJ,337.273209,Gas Oil combustion consumption by freight transport,AR-P,SESCO,annual,kg,18dc882d-6638-31ab-967d-749cbdb8e7b5 -2012,Formosa,II.1.1,86.48031,TJ,N2O,3.9,kg/TJ,337.273209,Gas Oil combustion consumption by freight transport,AR-P,SESCO,annual,kg,18dc882d-6638-31ab-967d-749cbdb8e7b5 -2012,Jujuy,II.1.1,17.307620399999998,TJ,CO2,74100.0,kg/TJ,1282494.6716399998,Gas Oil combustion consumption by freight transport,AR-Y,SESCO,annual,kg,bacce298-bc8d-30c9-8dd3-3f08e93d6d3c -2012,Jujuy,II.1.1,17.307620399999998,TJ,CH4,3.9,kg/TJ,67.49971955999999,Gas Oil combustion consumption by freight transport,AR-Y,SESCO,annual,kg,5829f7e4-3f79-3584-bf5d-2b94378747a6 -2012,Jujuy,II.1.1,17.307620399999998,TJ,N2O,3.9,kg/TJ,67.49971955999999,Gas Oil combustion consumption by freight transport,AR-Y,SESCO,annual,kg,5829f7e4-3f79-3584-bf5d-2b94378747a6 -2012,La Pampa,II.1.1,1.7268971999999998,TJ,CO2,74100.0,kg/TJ,127963.08251999998,Gas Oil combustion consumption by freight transport,AR-L,SESCO,annual,kg,fa25d385-2826-3a72-b327-88933b614e0f -2012,La Pampa,II.1.1,1.7268971999999998,TJ,CH4,3.9,kg/TJ,6.734899079999999,Gas Oil combustion consumption by freight transport,AR-L,SESCO,annual,kg,d95af07b-ed62-35c1-b9d3-e7e7189552fe -2012,La Pampa,II.1.1,1.7268971999999998,TJ,N2O,3.9,kg/TJ,6.734899079999999,Gas Oil combustion consumption by freight transport,AR-L,SESCO,annual,kg,d95af07b-ed62-35c1-b9d3-e7e7189552fe -2012,La Rioja,II.1.1,97.6460856,TJ,CO2,74100.0,kg/TJ,7235574.942960001,Gas Oil combustion consumption by freight transport,AR-F,SESCO,annual,kg,3b4d3bf0-74c5-37c9-aa0b-5f0eefca8610 -2012,La Rioja,II.1.1,97.6460856,TJ,CH4,3.9,kg/TJ,380.81973384,Gas Oil combustion consumption by freight transport,AR-F,SESCO,annual,kg,dd92f719-814f-3727-971a-6486d9135bf6 -2012,La Rioja,II.1.1,97.6460856,TJ,N2O,3.9,kg/TJ,380.81973384,Gas Oil combustion consumption by freight transport,AR-F,SESCO,annual,kg,dd92f719-814f-3727-971a-6486d9135bf6 -2012,Mendoza,II.1.1,37.4011764,TJ,CO2,74100.0,kg/TJ,2771427.1712399996,Gas Oil combustion consumption by freight transport,AR-M,SESCO,annual,kg,c2fdd2e5-71a7-3dc7-9064-560461931782 -2012,Mendoza,II.1.1,37.4011764,TJ,CH4,3.9,kg/TJ,145.86458796,Gas Oil combustion consumption by freight transport,AR-M,SESCO,annual,kg,f25ec3ac-8608-3cda-9231-d7b121a3cf8b -2012,Mendoza,II.1.1,37.4011764,TJ,N2O,3.9,kg/TJ,145.86458796,Gas Oil combustion consumption by freight transport,AR-M,SESCO,annual,kg,f25ec3ac-8608-3cda-9231-d7b121a3cf8b -2012,Misiones,II.1.1,103.3801356,TJ,CO2,74100.0,kg/TJ,7660468.04796,Gas Oil combustion consumption by freight transport,AR-N,SESCO,annual,kg,cfa962c6-20af-3681-8c61-e0ad32cee75c -2012,Misiones,II.1.1,103.3801356,TJ,CH4,3.9,kg/TJ,403.18252884,Gas Oil combustion consumption by freight transport,AR-N,SESCO,annual,kg,826b0677-876c-3596-a1d6-149cf734b0c6 -2012,Misiones,II.1.1,103.3801356,TJ,N2O,3.9,kg/TJ,403.18252884,Gas Oil combustion consumption by freight transport,AR-N,SESCO,annual,kg,826b0677-876c-3596-a1d6-149cf734b0c6 -2012,Rio Negro,II.1.1,0.7563528,TJ,CO2,74100.0,kg/TJ,56045.74248,Gas Oil combustion consumption by freight transport,AR-R,SESCO,annual,kg,adf6fa5a-3a21-3f6d-bfb5-73ccf537a175 -2012,Rio Negro,II.1.1,0.7563528,TJ,CH4,3.9,kg/TJ,2.94977592,Gas Oil combustion consumption by freight transport,AR-R,SESCO,annual,kg,71272d9b-106d-3cae-8f80-9af9b7483042 -2012,Rio Negro,II.1.1,0.7563528,TJ,N2O,3.9,kg/TJ,2.94977592,Gas Oil combustion consumption by freight transport,AR-R,SESCO,annual,kg,71272d9b-106d-3cae-8f80-9af9b7483042 -2012,Salta,II.1.1,825.3625558919999,TJ,CO2,74100.0,kg/TJ,61159365.3915972,Gas Oil combustion consumption by freight transport,AR-A,SESCO,annual,kg,610fb37a-9e42-3d2a-81be-df01e3a7a36f -2012,Salta,II.1.1,825.3625558919999,TJ,CH4,3.9,kg/TJ,3218.9139679787995,Gas Oil combustion consumption by freight transport,AR-A,SESCO,annual,kg,90a51d57-85b9-36e4-8a56-ad3df538dcfd -2012,Salta,II.1.1,825.3625558919999,TJ,N2O,3.9,kg/TJ,3218.9139679787995,Gas Oil combustion consumption by freight transport,AR-A,SESCO,annual,kg,90a51d57-85b9-36e4-8a56-ad3df538dcfd -2012,San Juan,II.1.1,2.3651376,TJ,CO2,74100.0,kg/TJ,175256.69616000002,Gas Oil combustion consumption by freight transport,AR-J,SESCO,annual,kg,f8bda04c-7f1a-314f-a834-aa28dc6eeca8 -2012,San Juan,II.1.1,2.3651376,TJ,CH4,3.9,kg/TJ,9.224036640000001,Gas Oil combustion consumption by freight transport,AR-J,SESCO,annual,kg,bde7705c-ec40-385d-a24f-51379483d975 -2012,San Juan,II.1.1,2.3651376,TJ,N2O,3.9,kg/TJ,9.224036640000001,Gas Oil combustion consumption by freight transport,AR-J,SESCO,annual,kg,bde7705c-ec40-385d-a24f-51379483d975 -2012,San Luis,II.1.1,111.594629076,TJ,CO2,74100.0,kg/TJ,8269162.0145316,Gas Oil combustion consumption by freight transport,AR-D,SESCO,annual,kg,b9236c3b-40c1-3a80-983f-540cedc9855a -2012,San Luis,II.1.1,111.594629076,TJ,CH4,3.9,kg/TJ,435.2190533964,Gas Oil combustion consumption by freight transport,AR-D,SESCO,annual,kg,d8b09969-55cf-3d33-b2be-425f2399a37b -2012,San Luis,II.1.1,111.594629076,TJ,N2O,3.9,kg/TJ,435.2190533964,Gas Oil combustion consumption by freight transport,AR-D,SESCO,annual,kg,d8b09969-55cf-3d33-b2be-425f2399a37b -2012,Santa Cruz,II.1.1,54.522778800000005,TJ,CO2,74100.0,kg/TJ,4040137.90908,Gas Oil combustion consumption by freight transport,AR-Z,SESCO,annual,kg,11b8d853-6a22-37bc-ab7e-5d8b26b1d891 -2012,Santa Cruz,II.1.1,54.522778800000005,TJ,CH4,3.9,kg/TJ,212.63883732000002,Gas Oil combustion consumption by freight transport,AR-Z,SESCO,annual,kg,9aa58213-b4ce-361a-b200-7edfe8948333 -2012,Santa Cruz,II.1.1,54.522778800000005,TJ,N2O,3.9,kg/TJ,212.63883732000002,Gas Oil combustion consumption by freight transport,AR-Z,SESCO,annual,kg,9aa58213-b4ce-361a-b200-7edfe8948333 -2012,Santa Fe,II.1.1,152.5394556,TJ,CO2,74100.0,kg/TJ,11303173.65996,Gas Oil combustion consumption by freight transport,AR-S,SESCO,annual,kg,8fceff44-b6a9-3137-991f-6f334a028255 -2012,Santa Fe,II.1.1,152.5394556,TJ,CH4,3.9,kg/TJ,594.90387684,Gas Oil combustion consumption by freight transport,AR-S,SESCO,annual,kg,a77e0b8e-2745-3598-bc48-cd88db36d61e -2012,Santa Fe,II.1.1,152.5394556,TJ,N2O,3.9,kg/TJ,594.90387684,Gas Oil combustion consumption by freight transport,AR-S,SESCO,annual,kg,a77e0b8e-2745-3598-bc48-cd88db36d61e -2012,Santiago del Estero,II.1.1,39.8201328,TJ,CO2,74100.0,kg/TJ,2950671.8404800002,Gas Oil combustion consumption by freight transport,AR-G,SESCO,annual,kg,c515bf20-92c6-347e-b2d3-6de7a3f409b9 -2012,Santiago del Estero,II.1.1,39.8201328,TJ,CH4,3.9,kg/TJ,155.29851792000002,Gas Oil combustion consumption by freight transport,AR-G,SESCO,annual,kg,fd40a7fb-68e6-3c13-9bac-e92030d5097a -2012,Santiago del Estero,II.1.1,39.8201328,TJ,N2O,3.9,kg/TJ,155.29851792000002,Gas Oil combustion consumption by freight transport,AR-G,SESCO,annual,kg,fd40a7fb-68e6-3c13-9bac-e92030d5097a -2012,Tierra del Fuego,II.1.1,10.964226,TJ,CO2,74100.0,kg/TJ,812449.1466,Gas Oil combustion consumption by freight transport,AR-V,SESCO,annual,kg,0b57e888-60cf-3de7-a5d8-2f1c3226cf90 -2012,Tierra del Fuego,II.1.1,10.964226,TJ,CH4,3.9,kg/TJ,42.760481399999996,Gas Oil combustion consumption by freight transport,AR-V,SESCO,annual,kg,62013b30-c45e-364e-8679-c0e1de99bc5c -2012,Tierra del Fuego,II.1.1,10.964226,TJ,N2O,3.9,kg/TJ,42.760481399999996,Gas Oil combustion consumption by freight transport,AR-V,SESCO,annual,kg,62013b30-c45e-364e-8679-c0e1de99bc5c -2012,Tucuman,II.1.1,42.97051919999999,TJ,CO2,74100.0,kg/TJ,3184115.4727199995,Gas Oil combustion consumption by freight transport,AR-T,SESCO,annual,kg,7e06f190-9bfb-30f2-bcfc-5385b3e90c39 -2012,Tucuman,II.1.1,42.97051919999999,TJ,CH4,3.9,kg/TJ,167.58502487999996,Gas Oil combustion consumption by freight transport,AR-T,SESCO,annual,kg,a06b669a-15be-302f-a3a3-370070ca0698 -2012,Tucuman,II.1.1,42.97051919999999,TJ,N2O,3.9,kg/TJ,167.58502487999996,Gas Oil combustion consumption by freight transport,AR-T,SESCO,annual,kg,a06b669a-15be-302f-a3a3-370070ca0698 -2012,Buenos Aires,II.1.1,57.635600399999994,TJ,CO2,74100.0,kg/TJ,4270797.989639999,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,963af583-4fd9-31be-84bc-050f07d3a016 -2012,Buenos Aires,II.1.1,57.635600399999994,TJ,CH4,3.9,kg/TJ,224.77884155999996,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,1c6a76be-dd86-3dc6-96ce-af1c29b4a0fa -2012,Buenos Aires,II.1.1,57.635600399999994,TJ,N2O,3.9,kg/TJ,224.77884155999996,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,1c6a76be-dd86-3dc6-96ce-af1c29b4a0fa -2012,Capital Federal,II.1.1,44.42290439999999,TJ,CO2,74100.0,kg/TJ,3291737.2160399994,Gas Oil combustion consumption by freight transport,AR-C,SESCO,annual,kg,0e6f5670-1667-386e-8370-4f3c9a8e4ae4 -2012,Capital Federal,II.1.1,44.42290439999999,TJ,CH4,3.9,kg/TJ,173.24932715999998,Gas Oil combustion consumption by freight transport,AR-C,SESCO,annual,kg,96838a48-d385-3f89-b81c-aaf3c56bf3e4 -2012,Capital Federal,II.1.1,44.42290439999999,TJ,N2O,3.9,kg/TJ,173.24932715999998,Gas Oil combustion consumption by freight transport,AR-C,SESCO,annual,kg,96838a48-d385-3f89-b81c-aaf3c56bf3e4 -2012,Chaco,II.1.1,0.1509816,TJ,CO2,74100.0,kg/TJ,11187.73656,Gas Oil combustion consumption by freight transport,AR-H,SESCO,annual,kg,adf1c7bb-620b-31d5-8353-2eabf419c7b0 -2012,Chaco,II.1.1,0.1509816,TJ,CH4,3.9,kg/TJ,0.58882824,Gas Oil combustion consumption by freight transport,AR-H,SESCO,annual,kg,331db740-2b0a-3ca0-b935-674e3a9b5932 -2012,Chaco,II.1.1,0.1509816,TJ,N2O,3.9,kg/TJ,0.58882824,Gas Oil combustion consumption by freight transport,AR-H,SESCO,annual,kg,331db740-2b0a-3ca0-b935-674e3a9b5932 -2012,Chubut,II.1.1,0.7227612,TJ,CO2,74100.0,kg/TJ,53556.60492,Gas Oil combustion consumption by freight transport,AR-U,SESCO,annual,kg,f875ea55-3d83-30a2-a9a2-54783074d2fe -2012,Chubut,II.1.1,0.7227612,TJ,CH4,3.9,kg/TJ,2.81876868,Gas Oil combustion consumption by freight transport,AR-U,SESCO,annual,kg,7afc484e-2e2e-313e-b5f8-56c6bc58f90b -2012,Chubut,II.1.1,0.7227612,TJ,N2O,3.9,kg/TJ,2.81876868,Gas Oil combustion consumption by freight transport,AR-U,SESCO,annual,kg,7afc484e-2e2e-313e-b5f8-56c6bc58f90b -2012,Corrientes,II.1.1,3.0322739999999997,TJ,CO2,74100.0,kg/TJ,224691.5034,Gas Oil combustion consumption by freight transport,AR-W,SESCO,annual,kg,0163d742-ca0a-321e-925b-5352991c38e7 -2012,Corrientes,II.1.1,3.0322739999999997,TJ,CH4,3.9,kg/TJ,11.825868599999998,Gas Oil combustion consumption by freight transport,AR-W,SESCO,annual,kg,63e3f741-5683-3034-9825-f993f12a54b1 -2012,Corrientes,II.1.1,3.0322739999999997,TJ,N2O,3.9,kg/TJ,11.825868599999998,Gas Oil combustion consumption by freight transport,AR-W,SESCO,annual,kg,63e3f741-5683-3034-9825-f993f12a54b1 -2012,Córdoba,II.1.1,1.5390731999999998,TJ,CO2,74100.0,kg/TJ,114045.32411999999,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,667d5924-acda-379c-affe-eb2e970b216b -2012,Córdoba,II.1.1,1.5390731999999998,TJ,CH4,3.9,kg/TJ,6.002385479999999,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,b392a983-6130-3bec-a206-9aa14415cb6f -2012,Córdoba,II.1.1,1.5390731999999998,TJ,N2O,3.9,kg/TJ,6.002385479999999,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,b392a983-6130-3bec-a206-9aa14415cb6f -2012,Entre Rios,II.1.1,0.8751876,TJ,CO2,74100.0,kg/TJ,64851.401159999994,Gas Oil combustion consumption by freight transport,AR-E,SESCO,annual,kg,260c0dbe-4d42-3e3a-b7a9-4abbbc8c4aec -2012,Entre Rios,II.1.1,0.8751876,TJ,CH4,3.9,kg/TJ,3.41323164,Gas Oil combustion consumption by freight transport,AR-E,SESCO,annual,kg,ae0d9355-df41-3d33-b174-36230e81ac30 -2012,Entre Rios,II.1.1,0.8751876,TJ,N2O,3.9,kg/TJ,3.41323164,Gas Oil combustion consumption by freight transport,AR-E,SESCO,annual,kg,ae0d9355-df41-3d33-b174-36230e81ac30 -2012,Mendoza,II.1.1,0.19251959999999999,TJ,CO2,74100.0,kg/TJ,14265.70236,Gas Oil combustion consumption by freight transport,AR-M,SESCO,annual,kg,8925bf43-0ddc-38dc-8338-671875e0441e -2012,Mendoza,II.1.1,0.19251959999999999,TJ,CH4,3.9,kg/TJ,0.7508264399999999,Gas Oil combustion consumption by freight transport,AR-M,SESCO,annual,kg,e1c145b4-b4be-3be9-b71a-8b8577d22761 -2012,Mendoza,II.1.1,0.19251959999999999,TJ,N2O,3.9,kg/TJ,0.7508264399999999,Gas Oil combustion consumption by freight transport,AR-M,SESCO,annual,kg,e1c145b4-b4be-3be9-b71a-8b8577d22761 -2012,Misiones,II.1.1,0.1834896,TJ,CO2,74100.0,kg/TJ,13596.57936,Gas Oil combustion consumption by freight transport,AR-N,SESCO,annual,kg,a429f988-2d0f-3a02-a0b2-f87364d15912 -2012,Misiones,II.1.1,0.1834896,TJ,CH4,3.9,kg/TJ,0.71560944,Gas Oil combustion consumption by freight transport,AR-N,SESCO,annual,kg,d44ed1cc-64e5-3e38-b831-8c09b84924a0 -2012,Misiones,II.1.1,0.1834896,TJ,N2O,3.9,kg/TJ,0.71560944,Gas Oil combustion consumption by freight transport,AR-N,SESCO,annual,kg,d44ed1cc-64e5-3e38-b831-8c09b84924a0 -2012,Rio Negro,II.1.1,0.0036119999999999998,TJ,CO2,74100.0,kg/TJ,267.6492,Gas Oil combustion consumption by freight transport,AR-R,SESCO,annual,kg,340c9985-46a6-3074-8d59-1dd96e82e2c5 -2012,Rio Negro,II.1.1,0.0036119999999999998,TJ,CH4,3.9,kg/TJ,0.014086799999999998,Gas Oil combustion consumption by freight transport,AR-R,SESCO,annual,kg,251a5283-ef78-354b-b75c-06f37738e824 -2012,Rio Negro,II.1.1,0.0036119999999999998,TJ,N2O,3.9,kg/TJ,0.014086799999999998,Gas Oil combustion consumption by freight transport,AR-R,SESCO,annual,kg,251a5283-ef78-354b-b75c-06f37738e824 -2012,San Juan,II.1.1,0.034675199999999996,TJ,CO2,74100.0,kg/TJ,2569.43232,Gas Oil combustion consumption by freight transport,AR-J,SESCO,annual,kg,eca3b929-7eb2-3d24-a488-32b93c79b9ad -2012,San Juan,II.1.1,0.034675199999999996,TJ,CH4,3.9,kg/TJ,0.13523327999999998,Gas Oil combustion consumption by freight transport,AR-J,SESCO,annual,kg,c146a4e7-5676-391a-9b47-b31e38cf7358 -2012,San Juan,II.1.1,0.034675199999999996,TJ,N2O,3.9,kg/TJ,0.13523327999999998,Gas Oil combustion consumption by freight transport,AR-J,SESCO,annual,kg,c146a4e7-5676-391a-9b47-b31e38cf7358 -2012,San Luis,II.1.1,0.18926880000000001,TJ,CO2,74100.0,kg/TJ,14024.818080000001,Gas Oil combustion consumption by freight transport,AR-D,SESCO,annual,kg,ce689071-5cb6-3fd6-a2c1-a2b802443388 -2012,San Luis,II.1.1,0.18926880000000001,TJ,CH4,3.9,kg/TJ,0.7381483200000001,Gas Oil combustion consumption by freight transport,AR-D,SESCO,annual,kg,b2ede6a9-735f-3d32-b315-ee790406d29b -2012,San Luis,II.1.1,0.18926880000000001,TJ,N2O,3.9,kg/TJ,0.7381483200000001,Gas Oil combustion consumption by freight transport,AR-D,SESCO,annual,kg,b2ede6a9-735f-3d32-b315-ee790406d29b -2012,Santa Fe,II.1.1,1.8630695999999998,TJ,CO2,74100.0,kg/TJ,138053.45735999997,Gas Oil combustion consumption by freight transport,AR-S,SESCO,annual,kg,03e4a329-7b75-3208-8cba-451598544f6b -2012,Santa Fe,II.1.1,1.8630695999999998,TJ,CH4,3.9,kg/TJ,7.265971439999999,Gas Oil combustion consumption by freight transport,AR-S,SESCO,annual,kg,8f8ff21b-4ccf-3f19-8094-0a1a260fe556 -2012,Santa Fe,II.1.1,1.8630695999999998,TJ,N2O,3.9,kg/TJ,7.265971439999999,Gas Oil combustion consumption by freight transport,AR-S,SESCO,annual,kg,8f8ff21b-4ccf-3f19-8094-0a1a260fe556 -2012,Tierra del Fuego,II.1.1,0.9217824,TJ,CO2,74100.0,kg/TJ,68304.07584,Gas Oil combustion consumption by freight transport,AR-V,SESCO,annual,kg,8cb3b9f1-af6f-37fe-8b7c-0a9125b08ea2 -2012,Tierra del Fuego,II.1.1,0.9217824,TJ,CH4,3.9,kg/TJ,3.59495136,Gas Oil combustion consumption by freight transport,AR-V,SESCO,annual,kg,54b939f5-3c33-3334-b6be-470292c55135 -2012,Tierra del Fuego,II.1.1,0.9217824,TJ,N2O,3.9,kg/TJ,3.59495136,Gas Oil combustion consumption by freight transport,AR-V,SESCO,annual,kg,54b939f5-3c33-3334-b6be-470292c55135 -2012,Tucuman,II.1.1,0.2481444,TJ,CO2,74100.0,kg/TJ,18387.50004,Gas Oil combustion consumption by freight transport,AR-T,SESCO,annual,kg,42b8bc28-2157-3ddd-89ca-049f8c3b966e -2012,Tucuman,II.1.1,0.2481444,TJ,CH4,3.9,kg/TJ,0.96776316,Gas Oil combustion consumption by freight transport,AR-T,SESCO,annual,kg,5c715d4b-953a-36c2-aa65-8bb1b7b47c67 -2012,Tucuman,II.1.1,0.2481444,TJ,N2O,3.9,kg/TJ,0.96776316,Gas Oil combustion consumption by freight transport,AR-T,SESCO,annual,kg,5c715d4b-953a-36c2-aa65-8bb1b7b47c67 -2012,Buenos Aires,II.1.1,0.37211789999999995,TJ,CO2,73300.0,kg/TJ,27276.242069999997,Naphtha combustion consumption by freight transport,AR-B,SESCO,annual,kg,fabbbaa9-e32f-399a-ac9a-f16baa4510de -2012,Buenos Aires,II.1.1,0.37211789999999995,TJ,CH4,0.5,kg/TJ,0.18605894999999997,Naphtha combustion consumption by freight transport,AR-B,SESCO,annual,kg,0d6a896b-19fe-34a3-892d-ce6e18663586 -2012,Buenos Aires,II.1.1,0.37211789999999995,TJ,N2O,2.0,kg/TJ,0.7442357999999999,Naphtha combustion consumption by freight transport,AR-B,SESCO,annual,kg,7c88f9e2-aba1-37b0-aecb-105edb323d83 -2012,Capital Federal,II.1.1,13.60354765,TJ,CO2,73300.0,kg/TJ,997140.042745,Naphtha combustion consumption by freight transport,AR-C,SESCO,annual,kg,82aa5a38-e8ba-32e0-b350-afb62c9785c5 -2012,Capital Federal,II.1.1,13.60354765,TJ,CH4,0.5,kg/TJ,6.801773825,Naphtha combustion consumption by freight transport,AR-C,SESCO,annual,kg,261fed11-2624-3f84-aaeb-675740a9070e -2012,Capital Federal,II.1.1,13.60354765,TJ,N2O,2.0,kg/TJ,27.2070953,Naphtha combustion consumption by freight transport,AR-C,SESCO,annual,kg,a287174c-3550-399f-a2bc-4b6318c498c3 -2012,Misiones,II.1.1,2.4670799999999997,TJ,CO2,73300.0,kg/TJ,180836.96399999998,Naphtha combustion consumption by freight transport,AR-N,SESCO,annual,kg,ede7c382-af8f-34fb-a711-e151a7e0c7b6 -2012,Misiones,II.1.1,2.4670799999999997,TJ,CH4,0.5,kg/TJ,1.2335399999999999,Naphtha combustion consumption by freight transport,AR-N,SESCO,annual,kg,d730cbcd-3399-3af4-a287-18cd1c306cbf -2012,Misiones,II.1.1,2.4670799999999997,TJ,N2O,2.0,kg/TJ,4.934159999999999,Naphtha combustion consumption by freight transport,AR-N,SESCO,annual,kg,91d27b30-3a23-3642-8508-70bca5e7b0e3 -2012,Santa Fe,II.1.1,0.034265,TJ,CO2,73300.0,kg/TJ,2511.6245,Naphtha combustion consumption by freight transport,AR-S,SESCO,annual,kg,783929bf-faf4-3bbc-b659-85fa24ee96cd -2012,Santa Fe,II.1.1,0.034265,TJ,CH4,0.5,kg/TJ,0.0171325,Naphtha combustion consumption by freight transport,AR-S,SESCO,annual,kg,d9a6fed4-2963-3987-ab93-abb7b97f1e0e -2012,Santa Fe,II.1.1,0.034265,TJ,N2O,2.0,kg/TJ,0.06853,Naphtha combustion consumption by freight transport,AR-S,SESCO,annual,kg,898ad23a-e19d-3bab-9f81-ca9e842a7aff -2012,Buenos Aires,II.1.1,4.70081535,TJ,CO2,73300.0,kg/TJ,344569.76515500003,Naphtha combustion consumption by freight transport,AR-B,SESCO,annual,kg,64006f91-bce4-3131-a80d-a7271340e52c -2012,Buenos Aires,II.1.1,4.70081535,TJ,CH4,0.5,kg/TJ,2.350407675,Naphtha combustion consumption by freight transport,AR-B,SESCO,annual,kg,ab8e1c3b-8d3d-3a8d-b253-e2d17119e38d -2012,Buenos Aires,II.1.1,4.70081535,TJ,N2O,2.0,kg/TJ,9.4016307,Naphtha combustion consumption by freight transport,AR-B,SESCO,annual,kg,3eae629b-df62-3954-ba45-6a2f9167ab55 -2012,Capital Federal,II.1.1,11.919080249999999,TJ,CO2,73300.0,kg/TJ,873668.5823249999,Naphtha combustion consumption by freight transport,AR-C,SESCO,annual,kg,6ca66724-70e2-3f45-8822-64b7cc8da89b -2012,Capital Federal,II.1.1,11.919080249999999,TJ,CH4,0.5,kg/TJ,5.959540124999999,Naphtha combustion consumption by freight transport,AR-C,SESCO,annual,kg,a7e57a48-9a51-386f-8704-fadc943e7a2d -2012,Capital Federal,II.1.1,11.919080249999999,TJ,N2O,2.0,kg/TJ,23.838160499999997,Naphtha combustion consumption by freight transport,AR-C,SESCO,annual,kg,218a02f3-ffa8-3840-8fae-f68724778c11 -2012,Chaco,II.1.1,0.043516549999999994,TJ,CO2,73300.0,kg/TJ,3189.7631149999997,Naphtha combustion consumption by freight transport,AR-H,SESCO,annual,kg,f52d3182-61e4-3d55-b0e1-46ae7db6f03d -2012,Chaco,II.1.1,0.043516549999999994,TJ,CH4,0.5,kg/TJ,0.021758274999999997,Naphtha combustion consumption by freight transport,AR-H,SESCO,annual,kg,499b3192-a53c-38e3-aece-c69a8f2a8619 -2012,Chaco,II.1.1,0.043516549999999994,TJ,N2O,2.0,kg/TJ,0.08703309999999999,Naphtha combustion consumption by freight transport,AR-H,SESCO,annual,kg,3efcdc9a-47ef-390e-bed2-c0f7a21577ee -2012,Corrientes,II.1.1,0.00239855,TJ,CO2,73300.0,kg/TJ,175.813715,Naphtha combustion consumption by freight transport,AR-W,SESCO,annual,kg,e31f77b2-91ce-3e78-92ab-ccf0355f23a0 -2012,Corrientes,II.1.1,0.00239855,TJ,CH4,0.5,kg/TJ,0.001199275,Naphtha combustion consumption by freight transport,AR-W,SESCO,annual,kg,91982dff-4b3d-3efb-85b7-423597aeaf10 -2012,Corrientes,II.1.1,0.00239855,TJ,N2O,2.0,kg/TJ,0.0047971,Naphtha combustion consumption by freight transport,AR-W,SESCO,annual,kg,6983602c-28f3-327d-a3c7-d7fc7e44591c -2012,Córdoba,II.1.1,0.4625775,TJ,CO2,73300.0,kg/TJ,33906.93075,Naphtha combustion consumption by freight transport,AR-X,SESCO,annual,kg,e379f5ba-c5f6-31cb-b703-c7dbef447cdd -2012,Córdoba,II.1.1,0.4625775,TJ,CH4,0.5,kg/TJ,0.23128875,Naphtha combustion consumption by freight transport,AR-X,SESCO,annual,kg,0c16e3fe-29bc-3c2c-b01d-418908af552f -2012,Córdoba,II.1.1,0.4625775,TJ,N2O,2.0,kg/TJ,0.925155,Naphtha combustion consumption by freight transport,AR-X,SESCO,annual,kg,1da36a55-8724-37e1-8ccb-03b94752cfee -2012,Entre Rios,II.1.1,0.00171325,TJ,CO2,73300.0,kg/TJ,125.58122499999999,Naphtha combustion consumption by freight transport,AR-E,SESCO,annual,kg,6cc1fe0a-e295-31a2-8ea0-d7195472fa06 -2012,Entre Rios,II.1.1,0.00171325,TJ,CH4,0.5,kg/TJ,0.000856625,Naphtha combustion consumption by freight transport,AR-E,SESCO,annual,kg,d2564eb1-7d14-30e7-bf2d-ee3ea3158410 -2012,Entre Rios,II.1.1,0.00171325,TJ,N2O,2.0,kg/TJ,0.0034265,Naphtha combustion consumption by freight transport,AR-E,SESCO,annual,kg,099820e1-9187-36ed-80af-8e6598cd3aca -2012,Misiones,II.1.1,0.0037691499999999998,TJ,CO2,73300.0,kg/TJ,276.27869499999997,Naphtha combustion consumption by freight transport,AR-N,SESCO,annual,kg,42162f2b-e747-3b26-8dd4-f2976b441cea -2012,Misiones,II.1.1,0.0037691499999999998,TJ,CH4,0.5,kg/TJ,0.0018845749999999999,Naphtha combustion consumption by freight transport,AR-N,SESCO,annual,kg,526ae60e-0f2f-30cf-81cb-f89a83d5efdf -2012,Misiones,II.1.1,0.0037691499999999998,TJ,N2O,2.0,kg/TJ,0.0075382999999999995,Naphtha combustion consumption by freight transport,AR-N,SESCO,annual,kg,7e0be719-40b0-3ba3-91d2-5b11b0572a3e -2012,San Luis,II.1.1,0.01610455,TJ,CO2,73300.0,kg/TJ,1180.463515,Naphtha combustion consumption by freight transport,AR-D,SESCO,annual,kg,a56c25d0-edc5-36a3-9695-7a67038f9d43 -2012,San Luis,II.1.1,0.01610455,TJ,CH4,0.5,kg/TJ,0.008052275,Naphtha combustion consumption by freight transport,AR-D,SESCO,annual,kg,16ed6476-9685-3ef9-9ba4-e84bd9dd1579 -2012,San Luis,II.1.1,0.01610455,TJ,N2O,2.0,kg/TJ,0.0322091,Naphtha combustion consumption by freight transport,AR-D,SESCO,annual,kg,f1a9bd2c-30e6-31e0-b64a-09d0686b1bc1 -2012,Santa Fe,II.1.1,0.6880411999999999,TJ,CO2,73300.0,kg/TJ,50433.41995999999,Naphtha combustion consumption by freight transport,AR-S,SESCO,annual,kg,95b27935-3e73-37a8-ab54-e38660133ed2 -2012,Santa Fe,II.1.1,0.6880411999999999,TJ,CH4,0.5,kg/TJ,0.34402059999999995,Naphtha combustion consumption by freight transport,AR-S,SESCO,annual,kg,1a9daa10-58d8-34cc-a648-ba4ca20b340d -2012,Santa Fe,II.1.1,0.6880411999999999,TJ,N2O,2.0,kg/TJ,1.3760823999999998,Naphtha combustion consumption by freight transport,AR-S,SESCO,annual,kg,31343fa8-071d-3baa-bc55-bf12faaf387b -2012,Tierra del Fuego,II.1.1,0.0071956500000000005,TJ,CO2,73300.0,kg/TJ,527.441145,Naphtha combustion consumption by freight transport,AR-V,SESCO,annual,kg,e6410cca-2bbc-3a22-8086-3806595feea7 -2012,Tierra del Fuego,II.1.1,0.0071956500000000005,TJ,CH4,0.5,kg/TJ,0.0035978250000000002,Naphtha combustion consumption by freight transport,AR-V,SESCO,annual,kg,b772ec73-dd05-3b8d-a1ce-aec5940557bb -2012,Tierra del Fuego,II.1.1,0.0071956500000000005,TJ,N2O,2.0,kg/TJ,0.014391300000000001,Naphtha combustion consumption by freight transport,AR-V,SESCO,annual,kg,56070dbe-d975-3de2-991a-6b15f5e5a6ef -2012,Tucuman,II.1.1,0.0390621,TJ,CO2,73300.0,kg/TJ,2863.2519300000004,Naphtha combustion consumption by freight transport,AR-T,SESCO,annual,kg,7a0a8033-a303-3f39-98dc-71ee03a0c043 -2012,Tucuman,II.1.1,0.0390621,TJ,CH4,0.5,kg/TJ,0.01953105,Naphtha combustion consumption by freight transport,AR-T,SESCO,annual,kg,d9634ab3-0e15-3093-9dc6-b3229c0ac91b -2012,Tucuman,II.1.1,0.0390621,TJ,N2O,2.0,kg/TJ,0.0781242,Naphtha combustion consumption by freight transport,AR-T,SESCO,annual,kg,f1e4fe53-6d4f-35a2-b62c-d34f5663af7a -2012,Buenos Aires,II.1.1,2.72235425,TJ,CO2,73300.0,kg/TJ,199548.566525,Naphtha combustion consumption by freight transport,AR-B,SESCO,annual,kg,633eabea-764e-3681-9b59-57b60831e4b1 -2012,Buenos Aires,II.1.1,2.72235425,TJ,CH4,0.5,kg/TJ,1.361177125,Naphtha combustion consumption by freight transport,AR-B,SESCO,annual,kg,ec68c373-a131-3713-a64e-242fa6dbed43 -2012,Buenos Aires,II.1.1,2.72235425,TJ,N2O,2.0,kg/TJ,5.4447085,Naphtha combustion consumption by freight transport,AR-B,SESCO,annual,kg,1d28b310-2e89-3872-80ee-99f0f1af8f49 -2012,Capital Federal,II.1.1,11.043609499999999,TJ,CO2,73300.0,kg/TJ,809496.5763499999,Naphtha combustion consumption by freight transport,AR-C,SESCO,annual,kg,68fff1ac-15d5-3093-840c-c8d6a788c048 -2012,Capital Federal,II.1.1,11.043609499999999,TJ,CH4,0.5,kg/TJ,5.521804749999999,Naphtha combustion consumption by freight transport,AR-C,SESCO,annual,kg,4b8f8443-8174-3b42-8f15-74c7e502e075 -2012,Capital Federal,II.1.1,11.043609499999999,TJ,N2O,2.0,kg/TJ,22.087218999999997,Naphtha combustion consumption by freight transport,AR-C,SESCO,annual,kg,cb4d8edd-1851-35bf-b4b6-087acbc57be7 -2012,Chaco,II.1.1,0.0219296,TJ,CO2,73300.0,kg/TJ,1607.43968,Naphtha combustion consumption by freight transport,AR-H,SESCO,annual,kg,38cf6421-1400-323b-bcc8-5ce473f1bfa2 -2012,Chaco,II.1.1,0.0219296,TJ,CH4,0.5,kg/TJ,0.0109648,Naphtha combustion consumption by freight transport,AR-H,SESCO,annual,kg,8c4f7ee3-928c-35dc-a957-6ef0bfbfb376 -2012,Chaco,II.1.1,0.0219296,TJ,N2O,2.0,kg/TJ,0.0438592,Naphtha combustion consumption by freight transport,AR-H,SESCO,annual,kg,eb09ac45-4db5-38fe-9a60-ac8407d5c846 -2012,Córdoba,II.1.1,0.39713134999999994,TJ,CO2,73300.0,kg/TJ,29109.727954999995,Naphtha combustion consumption by freight transport,AR-X,SESCO,annual,kg,fb7d2250-e6ce-3349-89e4-935907ffde0e -2012,Córdoba,II.1.1,0.39713134999999994,TJ,CH4,0.5,kg/TJ,0.19856567499999997,Naphtha combustion consumption by freight transport,AR-X,SESCO,annual,kg,198e90d9-f34a-32ea-908e-3515d61e7964 -2012,Córdoba,II.1.1,0.39713134999999994,TJ,N2O,2.0,kg/TJ,0.7942626999999999,Naphtha combustion consumption by freight transport,AR-X,SESCO,annual,kg,d7e883f5-183b-397c-9108-f0a32c155e72 -2012,Entre Rios,II.1.1,0.09902585,TJ,CO2,73300.0,kg/TJ,7258.594805,Naphtha combustion consumption by freight transport,AR-E,SESCO,annual,kg,b54c2c8b-7bba-3045-bf7c-366566bbdf43 -2012,Entre Rios,II.1.1,0.09902585,TJ,CH4,0.5,kg/TJ,0.049512925,Naphtha combustion consumption by freight transport,AR-E,SESCO,annual,kg,9fc0f38f-eb29-343c-9d55-dc908219ef0e -2012,Entre Rios,II.1.1,0.09902585,TJ,N2O,2.0,kg/TJ,0.1980517,Naphtha combustion consumption by freight transport,AR-E,SESCO,annual,kg,7df2cbe8-6dfb-39fd-9e71-0df123dc594a -2012,Misiones,II.1.1,0.010279499999999999,TJ,CO2,73300.0,kg/TJ,753.4873499999999,Naphtha combustion consumption by freight transport,AR-N,SESCO,annual,kg,649c32e5-924c-3085-9424-8a6b98ef4f8b -2012,Misiones,II.1.1,0.010279499999999999,TJ,CH4,0.5,kg/TJ,0.005139749999999999,Naphtha combustion consumption by freight transport,AR-N,SESCO,annual,kg,1fe127a3-f82c-35d7-8a98-c05986c57596 -2012,Misiones,II.1.1,0.010279499999999999,TJ,N2O,2.0,kg/TJ,0.020558999999999997,Naphtha combustion consumption by freight transport,AR-N,SESCO,annual,kg,eb8f001e-b926-3269-8efc-29bd09274f41 -2012,San Luis,II.1.1,0.0013706,TJ,CO2,73300.0,kg/TJ,100.46498,Naphtha combustion consumption by freight transport,AR-D,SESCO,annual,kg,417343e6-1836-3cc8-90ef-e44ee64ba202 -2012,San Luis,II.1.1,0.0013706,TJ,CH4,0.5,kg/TJ,0.0006853,Naphtha combustion consumption by freight transport,AR-D,SESCO,annual,kg,4c8e5ac2-a7da-3d5c-b00d-6b784d2f6eb9 -2012,San Luis,II.1.1,0.0013706,TJ,N2O,2.0,kg/TJ,0.0027412,Naphtha combustion consumption by freight transport,AR-D,SESCO,annual,kg,11b5de09-adf0-39c8-917d-7a77667b7cb2 -2012,Santa Fe,II.1.1,0.46360545,TJ,CO2,73300.0,kg/TJ,33982.279485,Naphtha combustion consumption by freight transport,AR-S,SESCO,annual,kg,a805a380-fc99-3c7b-8d24-6703f52e818e -2012,Santa Fe,II.1.1,0.46360545,TJ,CH4,0.5,kg/TJ,0.231802725,Naphtha combustion consumption by freight transport,AR-S,SESCO,annual,kg,6a1b8daf-1a17-3722-93fe-0b133c00506d -2012,Santa Fe,II.1.1,0.46360545,TJ,N2O,2.0,kg/TJ,0.9272109,Naphtha combustion consumption by freight transport,AR-S,SESCO,annual,kg,4a6425ca-af70-3b90-bbde-8b068f87308c -2012,Tierra del Fuego,II.1.1,0.2295755,TJ,CO2,73300.0,kg/TJ,16827.884149999998,Naphtha combustion consumption by freight transport,AR-V,SESCO,annual,kg,639ef2b1-cfe2-3ce8-a699-5c1cb5517cc0 -2012,Tierra del Fuego,II.1.1,0.2295755,TJ,CH4,0.5,kg/TJ,0.11478775,Naphtha combustion consumption by freight transport,AR-V,SESCO,annual,kg,f40fc47d-053b-3096-a6d3-f85e9927537c -2012,Tierra del Fuego,II.1.1,0.2295755,TJ,N2O,2.0,kg/TJ,0.459151,Naphtha combustion consumption by freight transport,AR-V,SESCO,annual,kg,e7b85158-a88f-323d-b800-4a5bb92aebd2 -2012,Tucuman,II.1.1,0.029810549999999998,TJ,CO2,73300.0,kg/TJ,2185.113315,Naphtha combustion consumption by freight transport,AR-T,SESCO,annual,kg,0e064270-34cf-3f0b-b3a7-e4eaf4613d5c -2012,Tucuman,II.1.1,0.029810549999999998,TJ,CH4,0.5,kg/TJ,0.014905274999999999,Naphtha combustion consumption by freight transport,AR-T,SESCO,annual,kg,ca680e10-865f-3556-9e3d-1b328f57d5b5 -2012,Tucuman,II.1.1,0.029810549999999998,TJ,N2O,2.0,kg/TJ,0.059621099999999996,Naphtha combustion consumption by freight transport,AR-T,SESCO,annual,kg,2ee0d138-2d96-398a-a499-a04342072eba -2012,Buenos Aires,II.1.1,972.6371927999999,TJ,CO2,74100.0,kg/TJ,72072415.98647998,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,20672faa-edca-30e6-9925-78b54a539a18 -2012,Buenos Aires,II.1.1,972.6371927999999,TJ,CH4,3.9,kg/TJ,3793.285051919999,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,a16c0a51-37df-388e-b040-e203b2783a8f -2012,Buenos Aires,II.1.1,972.6371927999999,TJ,N2O,3.9,kg/TJ,3793.285051919999,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,a16c0a51-37df-388e-b040-e203b2783a8f -2012,Capital Federal,II.1.1,604.11841392,TJ,CO2,74100.0,kg/TJ,44765174.471471995,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,5bbf975e-cbc3-38d9-b013-ca5a6ce793d9 -2012,Capital Federal,II.1.1,604.11841392,TJ,CH4,3.9,kg/TJ,2356.061814288,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,29c75748-5599-39d3-b2dd-fa8eb79692af -2012,Capital Federal,II.1.1,604.11841392,TJ,N2O,3.9,kg/TJ,2356.061814288,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,29c75748-5599-39d3-b2dd-fa8eb79692af -2012,Chubut,II.1.1,119.85591239999998,TJ,CO2,74100.0,kg/TJ,8881323.108839998,Gas Oil combustion consumption by public passenger transport,AR-U,SESCO,annual,kg,85bb5d73-380e-3faf-b99c-ea912af9d948 -2012,Chubut,II.1.1,119.85591239999998,TJ,CH4,3.9,kg/TJ,467.4380583599999,Gas Oil combustion consumption by public passenger transport,AR-U,SESCO,annual,kg,3f9f8d50-39a4-36ae-9151-b1a5004f82f5 -2012,Chubut,II.1.1,119.85591239999998,TJ,N2O,3.9,kg/TJ,467.4380583599999,Gas Oil combustion consumption by public passenger transport,AR-U,SESCO,annual,kg,3f9f8d50-39a4-36ae-9151-b1a5004f82f5 -2012,Corrientes,II.1.1,1.15584,TJ,CO2,74100.0,kg/TJ,85647.74399999999,Gas Oil combustion consumption by public passenger transport,AR-W,SESCO,annual,kg,fc626a22-7e3e-3b45-b9e7-e23085f1e28b -2012,Corrientes,II.1.1,1.15584,TJ,CH4,3.9,kg/TJ,4.507776,Gas Oil combustion consumption by public passenger transport,AR-W,SESCO,annual,kg,855f7de2-c9ce-3cea-aa4f-097805014b06 -2012,Corrientes,II.1.1,1.15584,TJ,N2O,3.9,kg/TJ,4.507776,Gas Oil combustion consumption by public passenger transport,AR-W,SESCO,annual,kg,855f7de2-c9ce-3cea-aa4f-097805014b06 -2012,Córdoba,II.1.1,10.4274828,TJ,CO2,74100.0,kg/TJ,772676.47548,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,01e9ceef-3b73-32b8-a04a-5c5df04bc42f -2012,Córdoba,II.1.1,10.4274828,TJ,CH4,3.9,kg/TJ,40.66718292,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,0afafbbf-4cd6-3dca-8c2a-c87639b0a21c -2012,Córdoba,II.1.1,10.4274828,TJ,N2O,3.9,kg/TJ,40.66718292,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,0afafbbf-4cd6-3dca-8c2a-c87639b0a21c -2012,Entre Rios,II.1.1,105.6701436,TJ,CO2,74100.0,kg/TJ,7830157.64076,Gas Oil combustion consumption by public passenger transport,AR-E,SESCO,annual,kg,967d04d9-1eda-345f-9f31-0cbd7ca67578 -2012,Entre Rios,II.1.1,105.6701436,TJ,CH4,3.9,kg/TJ,412.11356004,Gas Oil combustion consumption by public passenger transport,AR-E,SESCO,annual,kg,5a806990-d35a-33eb-a7f5-02895c0a7e47 -2012,Entre Rios,II.1.1,105.6701436,TJ,N2O,3.9,kg/TJ,412.11356004,Gas Oil combustion consumption by public passenger transport,AR-E,SESCO,annual,kg,5a806990-d35a-33eb-a7f5-02895c0a7e47 -2012,La Pampa,II.1.1,7.610484,TJ,CO2,74100.0,kg/TJ,563936.8644,Gas Oil combustion consumption by public passenger transport,AR-L,SESCO,annual,kg,bb884dae-c167-3518-91d9-7238f70cd5e8 -2012,La Pampa,II.1.1,7.610484,TJ,CH4,3.9,kg/TJ,29.6808876,Gas Oil combustion consumption by public passenger transport,AR-L,SESCO,annual,kg,b2ca7884-0a30-36bd-80af-da6d57896eb0 -2012,La Pampa,II.1.1,7.610484,TJ,N2O,3.9,kg/TJ,29.6808876,Gas Oil combustion consumption by public passenger transport,AR-L,SESCO,annual,kg,b2ca7884-0a30-36bd-80af-da6d57896eb0 -2012,Mendoza,II.1.1,25.542619199999997,TJ,CO2,74100.0,kg/TJ,1892708.0827199998,Gas Oil combustion consumption by public passenger transport,AR-M,SESCO,annual,kg,dfe18174-93ce-34a3-b71f-5b18c4df7417 -2012,Mendoza,II.1.1,25.542619199999997,TJ,CH4,3.9,kg/TJ,99.61621487999999,Gas Oil combustion consumption by public passenger transport,AR-M,SESCO,annual,kg,cffa942f-7664-31a8-a590-2040679c86d0 -2012,Mendoza,II.1.1,25.542619199999997,TJ,N2O,3.9,kg/TJ,99.61621487999999,Gas Oil combustion consumption by public passenger transport,AR-M,SESCO,annual,kg,cffa942f-7664-31a8-a590-2040679c86d0 -2012,Misiones,II.1.1,251.02204428,TJ,CO2,74100.0,kg/TJ,18600733.481148,Gas Oil combustion consumption by public passenger transport,AR-N,SESCO,annual,kg,c543cc91-4458-3f51-b9be-5b0ed6cc2655 -2012,Misiones,II.1.1,251.02204428,TJ,CH4,3.9,kg/TJ,978.9859726919999,Gas Oil combustion consumption by public passenger transport,AR-N,SESCO,annual,kg,777af6e0-015a-341d-ad95-0b055ac6df6e -2012,Misiones,II.1.1,251.02204428,TJ,N2O,3.9,kg/TJ,978.9859726919999,Gas Oil combustion consumption by public passenger transport,AR-N,SESCO,annual,kg,777af6e0-015a-341d-ad95-0b055ac6df6e -2012,Neuquén,II.1.1,8.4426888,TJ,CO2,74100.0,kg/TJ,625603.24008,Gas Oil combustion consumption by public passenger transport,AR-Q,SESCO,annual,kg,92be0c30-56ff-3407-884a-72878bf1c458 -2012,Neuquén,II.1.1,8.4426888,TJ,CH4,3.9,kg/TJ,32.92648632,Gas Oil combustion consumption by public passenger transport,AR-Q,SESCO,annual,kg,7a1f95d0-ae0d-3610-bee6-47697a544111 -2012,Neuquén,II.1.1,8.4426888,TJ,N2O,3.9,kg/TJ,32.92648632,Gas Oil combustion consumption by public passenger transport,AR-Q,SESCO,annual,kg,7a1f95d0-ae0d-3610-bee6-47697a544111 -2012,Rio Negro,II.1.1,28.49868,TJ,CO2,74100.0,kg/TJ,2111752.188,Gas Oil combustion consumption by public passenger transport,AR-R,SESCO,annual,kg,e58db8eb-f32b-344f-8ea0-141e5ddc2e90 -2012,Rio Negro,II.1.1,28.49868,TJ,CH4,3.9,kg/TJ,111.144852,Gas Oil combustion consumption by public passenger transport,AR-R,SESCO,annual,kg,3cf112cf-8b0a-396f-8068-d71aaf51fc2c -2012,Rio Negro,II.1.1,28.49868,TJ,N2O,3.9,kg/TJ,111.144852,Gas Oil combustion consumption by public passenger transport,AR-R,SESCO,annual,kg,3cf112cf-8b0a-396f-8068-d71aaf51fc2c -2012,Salta,II.1.1,4.815879600000001,TJ,CO2,74100.0,kg/TJ,356856.67836,Gas Oil combustion consumption by public passenger transport,AR-A,SESCO,annual,kg,56f64520-61f0-3759-9691-8a32b40e300b -2012,Salta,II.1.1,4.815879600000001,TJ,CH4,3.9,kg/TJ,18.781930440000004,Gas Oil combustion consumption by public passenger transport,AR-A,SESCO,annual,kg,6af7e95f-b462-3150-b3aa-176fb67c085d -2012,Salta,II.1.1,4.815879600000001,TJ,N2O,3.9,kg/TJ,18.781930440000004,Gas Oil combustion consumption by public passenger transport,AR-A,SESCO,annual,kg,6af7e95f-b462-3150-b3aa-176fb67c085d -2012,San Juan,II.1.1,2.74512,TJ,CO2,74100.0,kg/TJ,203413.392,Gas Oil combustion consumption by public passenger transport,AR-J,SESCO,annual,kg,fd2d2353-2ace-3c0c-9819-720d3b2c3097 -2012,San Juan,II.1.1,2.74512,TJ,CH4,3.9,kg/TJ,10.705968,Gas Oil combustion consumption by public passenger transport,AR-J,SESCO,annual,kg,bda9f380-90c6-3e58-bbe8-f714ebf55d2b -2012,San Juan,II.1.1,2.74512,TJ,N2O,3.9,kg/TJ,10.705968,Gas Oil combustion consumption by public passenger transport,AR-J,SESCO,annual,kg,bda9f380-90c6-3e58-bbe8-f714ebf55d2b -2012,San Luis,II.1.1,9.299094000000002,TJ,CO2,74100.0,kg/TJ,689062.8654000001,Gas Oil combustion consumption by public passenger transport,AR-D,SESCO,annual,kg,975b640a-a248-37f7-ba4c-3afa8368dffd -2012,San Luis,II.1.1,9.299094000000002,TJ,CH4,3.9,kg/TJ,36.26646660000001,Gas Oil combustion consumption by public passenger transport,AR-D,SESCO,annual,kg,39c8e01e-d5fc-3bc4-a724-267d615e92a1 -2012,San Luis,II.1.1,9.299094000000002,TJ,N2O,3.9,kg/TJ,36.26646660000001,Gas Oil combustion consumption by public passenger transport,AR-D,SESCO,annual,kg,39c8e01e-d5fc-3bc4-a724-267d615e92a1 -2012,Santa Fe,II.1.1,77.7306012,TJ,CO2,74100.0,kg/TJ,5759837.54892,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,aa183dae-96c3-3cd2-a01a-94b636527639 -2012,Santa Fe,II.1.1,77.7306012,TJ,CH4,3.9,kg/TJ,303.14934467999996,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,a08f5b85-66ce-3c39-b720-7addfafa9f75 -2012,Santa Fe,II.1.1,77.7306012,TJ,N2O,3.9,kg/TJ,303.14934467999996,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,a08f5b85-66ce-3c39-b720-7addfafa9f75 -2012,Buenos Aires,II.1.1,0.187824,TJ,CO2,74100.0,kg/TJ,13917.758399999999,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,209989f8-bf91-3796-8779-55419d3a8aea -2012,Buenos Aires,II.1.1,0.187824,TJ,CH4,3.9,kg/TJ,0.7325136,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,793ac937-1ea5-3078-aa7e-fbdf6d4ba891 -2012,Buenos Aires,II.1.1,0.187824,TJ,N2O,3.9,kg/TJ,0.7325136,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,793ac937-1ea5-3078-aa7e-fbdf6d4ba891 -2012,Capital Federal,II.1.1,14.971739999999999,TJ,CO2,74100.0,kg/TJ,1109405.934,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,d5203c57-54ff-332b-976b-f72d19fbcb50 -2012,Capital Federal,II.1.1,14.971739999999999,TJ,CH4,3.9,kg/TJ,58.389785999999994,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,d61819b2-e7cf-3573-a0ed-4b92ce62216b -2012,Capital Federal,II.1.1,14.971739999999999,TJ,N2O,3.9,kg/TJ,58.389785999999994,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,d61819b2-e7cf-3573-a0ed-4b92ce62216b -2012,Chubut,II.1.1,0.16615199999999997,TJ,CO2,74100.0,kg/TJ,12311.863199999998,Gas Oil combustion consumption by public passenger transport,AR-U,SESCO,annual,kg,561a2b31-18f2-37b1-beb1-1c71d4812074 -2012,Chubut,II.1.1,0.16615199999999997,TJ,CH4,3.9,kg/TJ,0.6479927999999998,Gas Oil combustion consumption by public passenger transport,AR-U,SESCO,annual,kg,c49a0302-1e7f-3ea1-a6de-0c68b0a85efb -2012,Chubut,II.1.1,0.16615199999999997,TJ,N2O,3.9,kg/TJ,0.6479927999999998,Gas Oil combustion consumption by public passenger transport,AR-U,SESCO,annual,kg,c49a0302-1e7f-3ea1-a6de-0c68b0a85efb -2012,Córdoba,II.1.1,0.1459248,TJ,CO2,74100.0,kg/TJ,10813.02768,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,d78b322d-6716-31db-ae69-12dbfb35ddd4 -2012,Córdoba,II.1.1,0.1459248,TJ,CH4,3.9,kg/TJ,0.56910672,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,8963ae0b-b78c-3c35-b0cd-e546e82ecef3 -2012,Córdoba,II.1.1,0.1459248,TJ,N2O,3.9,kg/TJ,0.56910672,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,8963ae0b-b78c-3c35-b0cd-e546e82ecef3 -2012,Entre Rios,II.1.1,13.590511199999998,TJ,CO2,74100.0,kg/TJ,1007056.8799199999,Gas Oil combustion consumption by public passenger transport,AR-E,SESCO,annual,kg,03024d77-3d21-373c-8ef7-ca4c2686c6f5 -2012,Entre Rios,II.1.1,13.590511199999998,TJ,CH4,3.9,kg/TJ,53.00299367999999,Gas Oil combustion consumption by public passenger transport,AR-E,SESCO,annual,kg,f155b1df-e8b3-3d42-a8e5-ae2d30296d00 -2012,Entre Rios,II.1.1,13.590511199999998,TJ,N2O,3.9,kg/TJ,53.00299367999999,Gas Oil combustion consumption by public passenger transport,AR-E,SESCO,annual,kg,f155b1df-e8b3-3d42-a8e5-ae2d30296d00 -2012,Mendoza,II.1.1,0.0093912,TJ,CO2,74100.0,kg/TJ,695.88792,Gas Oil combustion consumption by public passenger transport,AR-M,SESCO,annual,kg,655c40eb-ff36-36b4-b38c-4e6a3b286e66 -2012,Mendoza,II.1.1,0.0093912,TJ,CH4,3.9,kg/TJ,0.03662568,Gas Oil combustion consumption by public passenger transport,AR-M,SESCO,annual,kg,74f8838d-da0c-3cfd-9ee6-7ee750df7d6a -2012,Mendoza,II.1.1,0.0093912,TJ,N2O,3.9,kg/TJ,0.03662568,Gas Oil combustion consumption by public passenger transport,AR-M,SESCO,annual,kg,74f8838d-da0c-3cfd-9ee6-7ee750df7d6a -2012,Neuquén,II.1.1,0.0057792,TJ,CO2,74100.0,kg/TJ,428.23872,Gas Oil combustion consumption by public passenger transport,AR-Q,SESCO,annual,kg,b001bb9a-730b-36b2-baa6-d7aecaa242f1 -2012,Neuquén,II.1.1,0.0057792,TJ,CH4,3.9,kg/TJ,0.02253888,Gas Oil combustion consumption by public passenger transport,AR-Q,SESCO,annual,kg,9cb0e2d6-a6d7-3297-a04e-5cc1c73532b0 -2012,Neuquén,II.1.1,0.0057792,TJ,N2O,3.9,kg/TJ,0.02253888,Gas Oil combustion consumption by public passenger transport,AR-Q,SESCO,annual,kg,9cb0e2d6-a6d7-3297-a04e-5cc1c73532b0 -2012,Salta,II.1.1,0.03612,TJ,CO2,74100.0,kg/TJ,2676.4919999999997,Gas Oil combustion consumption by public passenger transport,AR-A,SESCO,annual,kg,53ee0eef-d411-34c8-b139-89b5187ff052 -2012,Salta,II.1.1,0.03612,TJ,CH4,3.9,kg/TJ,0.140868,Gas Oil combustion consumption by public passenger transport,AR-A,SESCO,annual,kg,79a9c050-79d6-37f1-9982-1fee1612bbcb -2012,Salta,II.1.1,0.03612,TJ,N2O,3.9,kg/TJ,0.140868,Gas Oil combustion consumption by public passenger transport,AR-A,SESCO,annual,kg,79a9c050-79d6-37f1-9982-1fee1612bbcb -2012,Santa Fe,II.1.1,0.2232216,TJ,CO2,74100.0,kg/TJ,16540.720559999998,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,fabe2e97-510d-3a64-b097-abffe74f3787 -2012,Santa Fe,II.1.1,0.2232216,TJ,CH4,3.9,kg/TJ,0.87056424,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,6aa71744-1247-3b34-8ddd-e088a9bfaa6a -2012,Santa Fe,II.1.1,0.2232216,TJ,N2O,3.9,kg/TJ,0.87056424,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,6aa71744-1247-3b34-8ddd-e088a9bfaa6a -2012,Capital Federal,II.1.1,20.12965955,TJ,CO2,73300.0,kg/TJ,1475504.045015,Naphtha combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,5a91e570-85a7-32e1-8405-014fef55ff47 -2012,Capital Federal,II.1.1,20.12965955,TJ,CH4,0.5,kg/TJ,10.064829775,Naphtha combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,186908d9-3b2f-3f2a-838b-14b7bbb9b55b -2012,Capital Federal,II.1.1,20.12965955,TJ,N2O,2.0,kg/TJ,40.2593191,Naphtha combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,6fce63c7-8dea-39c5-b0e6-ec3222ccd9f4 -2012,Córdoba,II.1.1,0.015419249999999997,TJ,CO2,73300.0,kg/TJ,1130.2310249999998,Naphtha combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,dcbf72d9-ddaa-391a-ab7f-434b0ce8526e -2012,Córdoba,II.1.1,0.015419249999999997,TJ,CH4,0.5,kg/TJ,0.007709624999999999,Naphtha combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,649aaccc-4896-3f06-8980-636e4fc2c028 -2012,Córdoba,II.1.1,0.015419249999999997,TJ,N2O,2.0,kg/TJ,0.030838499999999994,Naphtha combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,ba0c9683-dc17-3e2f-826d-93b0d05ade7f -2012,Misiones,II.1.1,20.42194,TJ,CO2,73300.0,kg/TJ,1496928.202,Naphtha combustion consumption by public passenger transport,AR-N,SESCO,annual,kg,e1101fbd-9f1e-3723-93b8-a9af667dd0f7 -2012,Misiones,II.1.1,20.42194,TJ,CH4,0.5,kg/TJ,10.21097,Naphtha combustion consumption by public passenger transport,AR-N,SESCO,annual,kg,338de100-1c89-3976-afd7-3a104c692353 -2012,Misiones,II.1.1,20.42194,TJ,N2O,2.0,kg/TJ,40.84388,Naphtha combustion consumption by public passenger transport,AR-N,SESCO,annual,kg,ba04e707-223f-3079-a608-16834b487d37 -2012,Santa Fe,II.1.1,0.10142439999999998,TJ,CO2,73300.0,kg/TJ,7434.408519999999,Naphtha combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,a98bfb43-273b-33f4-a012-22adfc405ef8 -2012,Santa Fe,II.1.1,0.10142439999999998,TJ,CH4,0.5,kg/TJ,0.05071219999999999,Naphtha combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,8d05fe51-d099-39c4-a463-ab706e1f6f81 -2012,Santa Fe,II.1.1,0.10142439999999998,TJ,N2O,2.0,kg/TJ,0.20284879999999997,Naphtha combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,13c382ac-bf71-3886-a206-e02cc89b3473 -2012,Buenos Aires,II.1.1,0.004111799999999999,TJ,CO2,73300.0,kg/TJ,301.3949399999999,Naphtha combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,55c19f00-77f6-3d98-8763-75941d8659f1 -2012,Buenos Aires,II.1.1,0.004111799999999999,TJ,CH4,0.5,kg/TJ,0.0020558999999999994,Naphtha combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,6cc348dc-11bc-3f2e-9315-74605f73bd2b -2012,Buenos Aires,II.1.1,0.004111799999999999,TJ,N2O,2.0,kg/TJ,0.008223599999999998,Naphtha combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,b1560bf2-6ec7-32f3-8a04-bafe378b8272 -2012,Capital Federal,II.1.1,0.23540055,TJ,CO2,73300.0,kg/TJ,17254.860314999998,Naphtha combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,7f534060-6882-3115-bdf5-bb78941f2aab -2012,Capital Federal,II.1.1,0.23540055,TJ,CH4,0.5,kg/TJ,0.117700275,Naphtha combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,b597626b-5cf8-3716-8ca2-95682e6765b0 -2012,Capital Federal,II.1.1,0.23540055,TJ,N2O,2.0,kg/TJ,0.4708011,Naphtha combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,548d9fd0-37c4-376f-b428-198faefc4d32 -2012,Córdoba,II.1.1,0.00788095,TJ,CO2,73300.0,kg/TJ,577.673635,Naphtha combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,0eb8830d-346a-347f-bed3-87e030868d55 -2012,Córdoba,II.1.1,0.00788095,TJ,CH4,0.5,kg/TJ,0.003940475,Naphtha combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,0fac1108-e71a-3a40-a46e-af900551b401 -2012,Córdoba,II.1.1,0.00788095,TJ,N2O,2.0,kg/TJ,0.0157619,Naphtha combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,a81e0bfb-5163-3fba-a876-65b69659ea12 -2012,Santa Fe,II.1.1,0.08703309999999999,TJ,CO2,73300.0,kg/TJ,6379.5262299999995,Naphtha combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,f0200f23-6ece-3d9e-8c54-f7dc493d7876 -2012,Santa Fe,II.1.1,0.08703309999999999,TJ,CH4,0.5,kg/TJ,0.043516549999999994,Naphtha combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,abbbf6cc-6f4b-333d-a9d7-5ac564c4e892 -2012,Santa Fe,II.1.1,0.08703309999999999,TJ,N2O,2.0,kg/TJ,0.17406619999999998,Naphtha combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,b6e56313-ff00-3f5b-a758-81d7d294af72 -2012,Buenos Aires,II.5.1,326.51660437199996,TJ,CO2,74100.0,kg/TJ,24194880.383965198,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,b30e320a-c63a-3bc9-9a65-f44234ed3994 -2012,Buenos Aires,II.5.1,326.51660437199996,TJ,CH4,3.9,kg/TJ,1273.4147570507998,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,f2ef7bae-08a9-3137-9ea2-9d5927eef0e8 -2012,Buenos Aires,II.5.1,326.51660437199996,TJ,N2O,3.9,kg/TJ,1273.4147570507998,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,f2ef7bae-08a9-3137-9ea2-9d5927eef0e8 -2012,Córdoba,II.5.1,581.1971531519999,TJ,CO2,74100.0,kg/TJ,43066709.0485632,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,73ec29c3-6ba5-3aa4-97c2-ef19b398bc9d -2012,Córdoba,II.5.1,581.1971531519999,TJ,CH4,3.9,kg/TJ,2266.6688972927996,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,8fe10a7f-2125-3793-9c3f-f581c39d0736 -2012,Córdoba,II.5.1,581.1971531519999,TJ,N2O,3.9,kg/TJ,2266.6688972927996,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,8fe10a7f-2125-3793-9c3f-f581c39d0736 -2012,Entre Rios,II.5.1,602.1314418840001,TJ,CO2,74100.0,kg/TJ,44617939.84360441,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,764e7e57-bd56-39b8-ab91-eb9a7852db26 -2012,Entre Rios,II.5.1,602.1314418840001,TJ,CH4,3.9,kg/TJ,2348.3126233476005,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,31583dac-bf1d-3b81-89c9-be64a8e8baf2 -2012,Entre Rios,II.5.1,602.1314418840001,TJ,N2O,3.9,kg/TJ,2348.3126233476005,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,31583dac-bf1d-3b81-89c9-be64a8e8baf2 -2012,La Pampa,II.5.1,18.098052420000002,TJ,CO2,74100.0,kg/TJ,1341065.6843220002,Gas Oil combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,557dc598-9c57-3743-a2b6-880a6ae9b38d -2012,La Pampa,II.5.1,18.098052420000002,TJ,CH4,3.9,kg/TJ,70.58240443800001,Gas Oil combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,21e81202-436b-3f6c-b9a5-8ff90c801a77 -2012,La Pampa,II.5.1,18.098052420000002,TJ,N2O,3.9,kg/TJ,70.58240443800001,Gas Oil combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,21e81202-436b-3f6c-b9a5-8ff90c801a77 -2012,Santa Fe,II.5.1,452.237108064,TJ,CO2,74100.0,kg/TJ,33510769.707542397,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,1544019a-dcaf-3373-bc03-d3785eafff89 -2012,Santa Fe,II.5.1,452.237108064,TJ,CH4,3.9,kg/TJ,1763.7247214495999,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,6eab9214-91d5-36db-88c6-276f0d0e2e31 -2012,Santa Fe,II.5.1,452.237108064,TJ,N2O,3.9,kg/TJ,1763.7247214495999,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,6eab9214-91d5-36db-88c6-276f0d0e2e31 -2012,Santiago del Estero,II.5.1,111.05105919600001,TJ,CO2,74100.0,kg/TJ,8228883.4864236,Gas Oil combustion consumption by agriculture machines,AR-G,SESCO,annual,kg,d78aef6d-c8da-3b4d-b473-e92383b1fccc -2012,Santiago del Estero,II.5.1,111.05105919600001,TJ,CH4,3.9,kg/TJ,433.0991308644,Gas Oil combustion consumption by agriculture machines,AR-G,SESCO,annual,kg,32243880-79d0-3b06-9d70-81fe7879b0b8 -2012,Santiago del Estero,II.5.1,111.05105919600001,TJ,N2O,3.9,kg/TJ,433.0991308644,Gas Oil combustion consumption by agriculture machines,AR-G,SESCO,annual,kg,32243880-79d0-3b06-9d70-81fe7879b0b8 -2012,Córdoba,II.5.1,0.8797778605000001,TJ,CO2,73300.0,kg/TJ,64487.71717465,Naphtha combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,7a8e38e9-d56f-3923-939f-4dbe88207b4a -2012,Córdoba,II.5.1,0.8797778605000001,TJ,CH4,0.5,kg/TJ,0.43988893025000003,Naphtha combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,43664d36-4c88-38c2-9958-57c8b1edf321 -2012,Córdoba,II.5.1,0.8797778605000001,TJ,N2O,2.0,kg/TJ,1.7595557210000001,Naphtha combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,ceb4b527-cb1c-35ab-9e6b-b8dc72717d2f -2012,Santa Fe,II.5.1,1.8306898610000002,TJ,CO2,73300.0,kg/TJ,134189.56681130003,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,192dd6a0-1d34-3f45-af51-2e7bf37e76f8 -2012,Santa Fe,II.5.1,1.8306898610000002,TJ,CH4,0.5,kg/TJ,0.9153449305000001,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,2d00a8ac-682e-3de6-a8eb-71ad918c157f -2012,Santa Fe,II.5.1,1.8306898610000002,TJ,N2O,2.0,kg/TJ,3.6613797220000004,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,dce2786f-5a98-3d7c-aad7-8da32e3178ee -2012,Buenos Aires,II.1.1,183.97929328799998,TJ,CO2,74100.0,kg/TJ,13632865.632640798,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,0d197305-e262-3a89-9fe9-14448aada770 -2012,Buenos Aires,II.1.1,183.97929328799998,TJ,CH4,3.9,kg/TJ,717.5192438231999,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,fef6a88d-fd90-3062-9291-6d0ce2129e68 -2012,Buenos Aires,II.1.1,183.97929328799998,TJ,N2O,3.9,kg/TJ,717.5192438231999,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,fef6a88d-fd90-3062-9291-6d0ce2129e68 -2012,Capital Federal,II.1.1,2.5117847999999996,TJ,CO2,74100.0,kg/TJ,186123.25367999997,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,201e0e45-73e4-31fd-9157-cf787f1d4be6 -2012,Capital Federal,II.1.1,2.5117847999999996,TJ,CH4,3.9,kg/TJ,9.795960719999998,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,a4627bdd-b6b3-3568-a6eb-6f0c071ecab8 -2012,Capital Federal,II.1.1,2.5117847999999996,TJ,N2O,3.9,kg/TJ,9.795960719999998,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,a4627bdd-b6b3-3568-a6eb-6f0c071ecab8 -2012,Corrientes,II.1.1,6.182021076,TJ,CO2,74100.0,kg/TJ,458087.7617316,Gas Oil combustion consumption by public passenger transport,AR-W,SESCO,annual,kg,d01bb936-5142-34d9-abab-59513d6f9cdd -2012,Corrientes,II.1.1,6.182021076,TJ,CH4,3.9,kg/TJ,24.109882196399997,Gas Oil combustion consumption by public passenger transport,AR-W,SESCO,annual,kg,cb642e42-b11b-3585-a8f3-ffac54380f7b -2012,Corrientes,II.1.1,6.182021076,TJ,N2O,3.9,kg/TJ,24.109882196399997,Gas Oil combustion consumption by public passenger transport,AR-W,SESCO,annual,kg,cb642e42-b11b-3585-a8f3-ffac54380f7b -2012,Córdoba,II.1.1,79.173457944,TJ,CO2,74100.0,kg/TJ,5866753.2336504,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,5c16b767-ba74-3a2f-9d3c-f96c22527b41 -2012,Córdoba,II.1.1,79.173457944,TJ,CH4,3.9,kg/TJ,308.7764859816,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,aacb3ba9-d7cb-3a2d-be1c-7a7eda20ec36 -2012,Córdoba,II.1.1,79.173457944,TJ,N2O,3.9,kg/TJ,308.7764859816,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,aacb3ba9-d7cb-3a2d-be1c-7a7eda20ec36 -2012,Entre Rios,II.1.1,48.41835070799999,TJ,CO2,74100.0,kg/TJ,3587799.7874627993,Gas Oil combustion consumption by public passenger transport,AR-E,SESCO,annual,kg,a98e5a1c-d71f-324e-a8f0-e8424fb54f69 -2012,Entre Rios,II.1.1,48.41835070799999,TJ,CH4,3.9,kg/TJ,188.83156776119995,Gas Oil combustion consumption by public passenger transport,AR-E,SESCO,annual,kg,1e99d374-add0-3575-8b05-143fbe155b75 -2012,Entre Rios,II.1.1,48.41835070799999,TJ,N2O,3.9,kg/TJ,188.83156776119995,Gas Oil combustion consumption by public passenger transport,AR-E,SESCO,annual,kg,1e99d374-add0-3575-8b05-143fbe155b75 -2012,Jujuy,II.1.1,34.054799268000004,TJ,CO2,74100.0,kg/TJ,2523460.6257588,Gas Oil combustion consumption by public passenger transport,AR-Y,SESCO,annual,kg,99e6b816-f6e4-3120-90a2-a3fb5329a523 -2012,Jujuy,II.1.1,34.054799268000004,TJ,CH4,3.9,kg/TJ,132.8137171452,Gas Oil combustion consumption by public passenger transport,AR-Y,SESCO,annual,kg,1223d03f-9131-3887-8b6e-1ff7dad69aa9 -2012,Jujuy,II.1.1,34.054799268000004,TJ,N2O,3.9,kg/TJ,132.8137171452,Gas Oil combustion consumption by public passenger transport,AR-Y,SESCO,annual,kg,1223d03f-9131-3887-8b6e-1ff7dad69aa9 -2012,Misiones,II.1.1,23.190517307999993,TJ,CO2,74100.0,kg/TJ,1718417.3325227995,Gas Oil combustion consumption by public passenger transport,AR-N,SESCO,annual,kg,492a12dd-0548-3a24-9d01-4ff0e189773a -2012,Misiones,II.1.1,23.190517307999993,TJ,CH4,3.9,kg/TJ,90.44301750119998,Gas Oil combustion consumption by public passenger transport,AR-N,SESCO,annual,kg,b5a64b4a-f871-304c-ae42-cecd7f36fe9f -2012,Misiones,II.1.1,23.190517307999993,TJ,N2O,3.9,kg/TJ,90.44301750119998,Gas Oil combustion consumption by public passenger transport,AR-N,SESCO,annual,kg,b5a64b4a-f871-304c-ae42-cecd7f36fe9f -2012,Salta,II.1.1,13.618551155999999,TJ,CO2,74100.0,kg/TJ,1009134.6406595999,Gas Oil combustion consumption by public passenger transport,AR-A,SESCO,annual,kg,ca935c8d-0760-351a-a384-061f034a4d9c -2012,Salta,II.1.1,13.618551155999999,TJ,CH4,3.9,kg/TJ,53.112349508399994,Gas Oil combustion consumption by public passenger transport,AR-A,SESCO,annual,kg,8d367e2d-549e-3a28-9f66-05cd3e6a8459 -2012,Salta,II.1.1,13.618551155999999,TJ,N2O,3.9,kg/TJ,53.112349508399994,Gas Oil combustion consumption by public passenger transport,AR-A,SESCO,annual,kg,8d367e2d-549e-3a28-9f66-05cd3e6a8459 -2012,San Juan,II.1.1,6.250609344,TJ,CO2,74100.0,kg/TJ,463170.1523904,Gas Oil combustion consumption by public passenger transport,AR-J,SESCO,annual,kg,3e023cab-7119-3ce9-bf72-02076853a251 -2012,San Juan,II.1.1,6.250609344,TJ,CH4,3.9,kg/TJ,24.3773764416,Gas Oil combustion consumption by public passenger transport,AR-J,SESCO,annual,kg,a6cc0616-e7ae-345b-ad0a-6fb0ac6d9e78 -2012,San Juan,II.1.1,6.250609344,TJ,N2O,3.9,kg/TJ,24.3773764416,Gas Oil combustion consumption by public passenger transport,AR-J,SESCO,annual,kg,a6cc0616-e7ae-345b-ad0a-6fb0ac6d9e78 -2012,Santa Fe,II.1.1,424.18383100799997,TJ,CO2,74100.0,kg/TJ,31432021.877692796,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,7fed313a-2945-3289-8af1-cf9a288ecf6f -2012,Santa Fe,II.1.1,424.18383100799997,TJ,CH4,3.9,kg/TJ,1654.3169409312,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,b6d1a393-e6ba-34d7-a9be-ff486ce1b0e7 -2012,Santa Fe,II.1.1,424.18383100799997,TJ,N2O,3.9,kg/TJ,1654.3169409312,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,b6d1a393-e6ba-34d7-a9be-ff486ce1b0e7 -2012,Santiago del Estero,II.1.1,13.973628816000002,TJ,CO2,74100.0,kg/TJ,1035445.8952656001,Gas Oil combustion consumption by public passenger transport,AR-G,SESCO,annual,kg,52266b67-412f-379b-a64a-1c272fa5666d -2012,Santiago del Estero,II.1.1,13.973628816000002,TJ,CH4,3.9,kg/TJ,54.4971523824,Gas Oil combustion consumption by public passenger transport,AR-G,SESCO,annual,kg,1aed4590-1762-30f7-8bd9-58104e4adf16 -2012,Santiago del Estero,II.1.1,13.973628816000002,TJ,N2O,3.9,kg/TJ,54.4971523824,Gas Oil combustion consumption by public passenger transport,AR-G,SESCO,annual,kg,1aed4590-1762-30f7-8bd9-58104e4adf16 -2012,Tucuman,II.1.1,5.578683432,TJ,CO2,74100.0,kg/TJ,413380.4423112,Gas Oil combustion consumption by public passenger transport,AR-T,SESCO,annual,kg,4d93be0d-8349-37b7-9b3d-30b294597723 -2012,Tucuman,II.1.1,5.578683432,TJ,CH4,3.9,kg/TJ,21.7568653848,Gas Oil combustion consumption by public passenger transport,AR-T,SESCO,annual,kg,9a551afc-27e9-3393-8598-50d03b7f0924 -2012,Tucuman,II.1.1,5.578683432,TJ,N2O,3.9,kg/TJ,21.7568653848,Gas Oil combustion consumption by public passenger transport,AR-T,SESCO,annual,kg,9a551afc-27e9-3393-8598-50d03b7f0924 -2012,Buenos Aires,II.5.1,668.0527644,TJ,CO2,74100.0,kg/TJ,49502709.84204,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,c027cfa2-f042-360c-a102-5a3460112d2e -2012,Buenos Aires,II.5.1,668.0527644,TJ,CH4,3.9,kg/TJ,2605.40578116,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,5c886852-3f5d-3c2d-b3ae-18495609e99b -2012,Buenos Aires,II.5.1,668.0527644,TJ,N2O,3.9,kg/TJ,2605.40578116,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,5c886852-3f5d-3c2d-b3ae-18495609e99b -2012,Córdoba,II.5.1,47.80305012,TJ,CO2,74100.0,kg/TJ,3542206.013892,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,8ad7faa8-a679-39f6-93ca-e528b11f75d9 -2012,Córdoba,II.5.1,47.80305012,TJ,CH4,3.9,kg/TJ,186.431895468,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,63c4a254-1196-3b0d-b3bc-c9a525cc8abd -2012,Córdoba,II.5.1,47.80305012,TJ,N2O,3.9,kg/TJ,186.431895468,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,63c4a254-1196-3b0d-b3bc-c9a525cc8abd -2012,Neuquén,II.5.1,14.72764104,TJ,CO2,74100.0,kg/TJ,1091318.201064,Gas Oil combustion consumption by agriculture machines,AR-Q,SESCO,annual,kg,4d65d824-c749-3fda-8033-a96fdc111bb6 -2012,Neuquén,II.5.1,14.72764104,TJ,CH4,3.9,kg/TJ,57.437800056,Gas Oil combustion consumption by agriculture machines,AR-Q,SESCO,annual,kg,5ce0d0d8-d2fc-3be2-a15e-40f54f0296dc -2012,Neuquén,II.5.1,14.72764104,TJ,N2O,3.9,kg/TJ,57.437800056,Gas Oil combustion consumption by agriculture machines,AR-Q,SESCO,annual,kg,5ce0d0d8-d2fc-3be2-a15e-40f54f0296dc -2012,Rio Negro,II.5.1,3.32531556,TJ,CO2,74100.0,kg/TJ,246405.882996,Gas Oil combustion consumption by agriculture machines,AR-R,SESCO,annual,kg,07783935-b39c-3669-950b-38029c6f0a1f -2012,Rio Negro,II.5.1,3.32531556,TJ,CH4,3.9,kg/TJ,12.968730683999999,Gas Oil combustion consumption by agriculture machines,AR-R,SESCO,annual,kg,c3c912ef-0bb9-3c13-a10d-8c1acf30f5e3 -2012,Rio Negro,II.5.1,3.32531556,TJ,N2O,3.9,kg/TJ,12.968730683999999,Gas Oil combustion consumption by agriculture machines,AR-R,SESCO,annual,kg,c3c912ef-0bb9-3c13-a10d-8c1acf30f5e3 -2012,Santa Cruz,II.5.1,6.126891119999998,TJ,CO2,74100.0,kg/TJ,454002.63199199986,Gas Oil combustion consumption by agriculture machines,AR-Z,SESCO,annual,kg,8bb61ee8-27a7-3141-8787-749aa5b3e456 -2012,Santa Cruz,II.5.1,6.126891119999998,TJ,CH4,3.9,kg/TJ,23.89487536799999,Gas Oil combustion consumption by agriculture machines,AR-Z,SESCO,annual,kg,01400d97-1dc9-3cac-a4e1-65b642eb78bb -2012,Santa Cruz,II.5.1,6.126891119999998,TJ,N2O,3.9,kg/TJ,23.89487536799999,Gas Oil combustion consumption by agriculture machines,AR-Z,SESCO,annual,kg,01400d97-1dc9-3cac-a4e1-65b642eb78bb -2012,Santa Fe,II.5.1,1.9079667599999999,TJ,CO2,74100.0,kg/TJ,141380.336916,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,e155433b-8eef-32cd-b372-d1de5db3e892 -2012,Santa Fe,II.5.1,1.9079667599999999,TJ,CH4,3.9,kg/TJ,7.441070364,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,42e29197-369a-3c7a-abe6-7ede4cbcb0a5 -2012,Santa Fe,II.5.1,1.9079667599999999,TJ,N2O,3.9,kg/TJ,7.441070364,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,42e29197-369a-3c7a-abe6-7ede4cbcb0a5 -2012,Buenos Aires,II.5.1,2.11243725,TJ,CO2,73300.0,kg/TJ,154841.650425,Naphtha combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,d119bb14-415e-385d-9ccb-f639664a2d51 -2012,Buenos Aires,II.5.1,2.11243725,TJ,CH4,0.5,kg/TJ,1.056218625,Naphtha combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,84493353-af3b-366c-9a6a-3b3aa0df11f3 -2012,Buenos Aires,II.5.1,2.11243725,TJ,N2O,2.0,kg/TJ,4.2248745,Naphtha combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,14245e7c-3958-34ef-8357-bf995ede1d21 -2012,Santa Cruz,II.5.1,2.3259767300000003,TJ,CO2,73300.0,kg/TJ,170494.094309,Naphtha combustion consumption by agriculture machines,AR-Z,SESCO,annual,kg,b17c1b15-2eae-36db-ae87-e309f0039354 -2012,Santa Cruz,II.5.1,2.3259767300000003,TJ,CH4,0.5,kg/TJ,1.1629883650000001,Naphtha combustion consumption by agriculture machines,AR-Z,SESCO,annual,kg,b335da12-c686-3d1b-a095-6f176878ad98 -2012,Santa Cruz,II.5.1,2.3259767300000003,TJ,N2O,2.0,kg/TJ,4.6519534600000005,Naphtha combustion consumption by agriculture machines,AR-Z,SESCO,annual,kg,39377718-fe4b-3dca-90cb-7ab81c35ce62 -2012,Buenos Aires,II.2.1,35.88345012,TJ,CO2,74100.0,kg/TJ,2658963.6538919997,Gas Oil combustion consumption by railway transport,AR-B,SESCO,annual,kg,bc7cbfa1-3e1d-37a0-a217-78c43b7dba0f -2012,Buenos Aires,II.2.1,35.88345012,TJ,CH4,3.9,kg/TJ,139.945455468,Gas Oil combustion consumption by railway transport,AR-B,SESCO,annual,kg,5ca43814-0b4f-3f64-8a9b-fa128670166b -2012,Buenos Aires,II.2.1,35.88345012,TJ,N2O,3.9,kg/TJ,139.945455468,Gas Oil combustion consumption by railway transport,AR-B,SESCO,annual,kg,5ca43814-0b4f-3f64-8a9b-fa128670166b -2012,La Pampa,II.2.1,8.746132919999999,TJ,CO2,74100.0,kg/TJ,648088.449372,Gas Oil combustion consumption by railway transport,AR-L,SESCO,annual,kg,d1fda863-5791-3d92-b91e-1cc39981f936 -2012,La Pampa,II.2.1,8.746132919999999,TJ,CH4,3.9,kg/TJ,34.109918388,Gas Oil combustion consumption by railway transport,AR-L,SESCO,annual,kg,9b534524-434b-3fec-b120-18ffdaefc075 -2012,La Pampa,II.2.1,8.746132919999999,TJ,N2O,3.9,kg/TJ,34.109918388,Gas Oil combustion consumption by railway transport,AR-L,SESCO,annual,kg,9b534524-434b-3fec-b120-18ffdaefc075 -2012,Rio Negro,II.2.1,5.8570386,TJ,CO2,74100.0,kg/TJ,434006.56026,Gas Oil combustion consumption by railway transport,AR-R,SESCO,annual,kg,9d030060-e9b9-39ea-8cd2-cb004fe45cae -2012,Rio Negro,II.2.1,5.8570386,TJ,CH4,3.9,kg/TJ,22.84245054,Gas Oil combustion consumption by railway transport,AR-R,SESCO,annual,kg,0d3a520b-e658-3021-aad9-b10d94ec672d -2012,Rio Negro,II.2.1,5.8570386,TJ,N2O,3.9,kg/TJ,22.84245054,Gas Oil combustion consumption by railway transport,AR-R,SESCO,annual,kg,0d3a520b-e658-3021-aad9-b10d94ec672d -2012,Buenos Aires,II.1.1,4.007377999999999,TJ,CO2,69300.0,kg/TJ,277711.29539999994,Motor Gasoline combustion consumption by freight transport,AR-B,SESCO,annual,kg,1efb3860-a95f-36cf-a7ae-5e95659efee0 -2012,Buenos Aires,II.1.1,4.007377999999999,TJ,CH4,33.0,kg/TJ,132.24347399999996,Motor Gasoline combustion consumption by freight transport,AR-B,SESCO,annual,kg,e747cd0f-047e-31b5-85de-8bdcad8446ea -2012,Buenos Aires,II.1.1,4.007377999999999,TJ,N2O,3.2,kg/TJ,12.823609599999997,Motor Gasoline combustion consumption by freight transport,AR-B,SESCO,annual,kg,d22de109-4f57-3434-813f-763ac7f633fc -2012,Buenos Aires,II.1.1,385.51616459999997,TJ,CO2,74100.0,kg/TJ,28566747.79686,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,64546453-79e2-3e53-80be-e8a407ef4602 -2012,Buenos Aires,II.1.1,385.51616459999997,TJ,CH4,3.9,kg/TJ,1503.5130419399998,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,80c851ff-91f1-3ff0-b54f-65507d86adcb -2012,Buenos Aires,II.1.1,385.51616459999997,TJ,N2O,3.9,kg/TJ,1503.5130419399998,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,80c851ff-91f1-3ff0-b54f-65507d86adcb -2012,Capital Federal,II.1.1,25.416271440000003,TJ,CO2,74100.0,kg/TJ,1883345.7137040002,Gas Oil combustion consumption by freight transport,AR-C,SESCO,annual,kg,e5dcaec6-917b-398b-8059-61965055bdad -2012,Capital Federal,II.1.1,25.416271440000003,TJ,CH4,3.9,kg/TJ,99.12345861600001,Gas Oil combustion consumption by freight transport,AR-C,SESCO,annual,kg,ef1aff0f-54f7-3a9f-8958-bdd28cb08bb1 -2012,Capital Federal,II.1.1,25.416271440000003,TJ,N2O,3.9,kg/TJ,99.12345861600001,Gas Oil combustion consumption by freight transport,AR-C,SESCO,annual,kg,ef1aff0f-54f7-3a9f-8958-bdd28cb08bb1 -2012,Chubut,II.1.1,11.179609559999998,TJ,CO2,74100.0,kg/TJ,828409.0683959998,Gas Oil combustion consumption by freight transport,AR-U,SESCO,annual,kg,8d582e6b-1c9e-3aae-a8d6-75df2421b790 -2012,Chubut,II.1.1,11.179609559999998,TJ,CH4,3.9,kg/TJ,43.60047728399999,Gas Oil combustion consumption by freight transport,AR-U,SESCO,annual,kg,381c5b07-b98f-3aea-ad96-60602ff6fc06 -2012,Chubut,II.1.1,11.179609559999998,TJ,N2O,3.9,kg/TJ,43.60047728399999,Gas Oil combustion consumption by freight transport,AR-U,SESCO,annual,kg,381c5b07-b98f-3aea-ad96-60602ff6fc06 -2012,Córdoba,II.1.1,16.05458148,TJ,CO2,74100.0,kg/TJ,1189644.487668,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,0b0aa758-c2ec-3601-846f-cf3639f6b227 -2012,Córdoba,II.1.1,16.05458148,TJ,CH4,3.9,kg/TJ,62.612867771999994,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,f14fe2db-7fcd-3209-9d45-6c833014f8d0 -2012,Córdoba,II.1.1,16.05458148,TJ,N2O,3.9,kg/TJ,62.612867771999994,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,f14fe2db-7fcd-3209-9d45-6c833014f8d0 -2012,San Luis,II.1.1,53.391428160000004,TJ,CO2,74100.0,kg/TJ,3956304.826656,Gas Oil combustion consumption by freight transport,AR-D,SESCO,annual,kg,e55d5a69-1fc1-383f-9eed-b07395839f23 -2012,San Luis,II.1.1,53.391428160000004,TJ,CH4,3.9,kg/TJ,208.22656982400002,Gas Oil combustion consumption by freight transport,AR-D,SESCO,annual,kg,5cc1ec3d-7ad1-3a4a-afbf-79675a370685 -2012,San Luis,II.1.1,53.391428160000004,TJ,N2O,3.9,kg/TJ,208.22656982400002,Gas Oil combustion consumption by freight transport,AR-D,SESCO,annual,kg,5cc1ec3d-7ad1-3a4a-afbf-79675a370685 -2012,Buenos Aires,II.1.1,140.88327876000002,TJ,CO2,74100.0,kg/TJ,10439450.956116002,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,8a7277cb-b4f2-3d86-9d06-9882a24f9244 -2012,Buenos Aires,II.1.1,140.88327876000002,TJ,CH4,3.9,kg/TJ,549.4447871640001,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,2c31da9e-17e5-31f0-9727-7bfa967bf88d -2012,Buenos Aires,II.1.1,140.88327876000002,TJ,N2O,3.9,kg/TJ,549.4447871640001,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,2c31da9e-17e5-31f0-9727-7bfa967bf88d -2012,Capital Federal,II.1.1,21.971073599999997,TJ,CO2,74100.0,kg/TJ,1628056.5537599998,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,cea9583e-ab70-3d79-bbe7-5f4ab8e965f0 -2012,Capital Federal,II.1.1,21.971073599999997,TJ,CH4,3.9,kg/TJ,85.68718703999998,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,f88e36c9-5809-3ee2-8cba-9f63169028bc -2012,Capital Federal,II.1.1,21.971073599999997,TJ,N2O,3.9,kg/TJ,85.68718703999998,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,f88e36c9-5809-3ee2-8cba-9f63169028bc -2012,Chubut,II.1.1,8.531832960000001,TJ,CO2,74100.0,kg/TJ,632208.822336,Gas Oil combustion consumption by public passenger transport,AR-U,SESCO,annual,kg,2954b5c7-e674-34aa-b66a-caac976bfc37 -2012,Chubut,II.1.1,8.531832960000001,TJ,CH4,3.9,kg/TJ,33.274148544000006,Gas Oil combustion consumption by public passenger transport,AR-U,SESCO,annual,kg,40796487-4105-35d5-8d97-d72328f3559b -2012,Chubut,II.1.1,8.531832960000001,TJ,N2O,3.9,kg/TJ,33.274148544000006,Gas Oil combustion consumption by public passenger transport,AR-U,SESCO,annual,kg,40796487-4105-35d5-8d97-d72328f3559b -2012,Córdoba,II.1.1,50.11754748,TJ,CO2,74100.0,kg/TJ,3713710.268268,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,a7236701-0da0-3405-a2a2-f789c0db5f70 -2012,Córdoba,II.1.1,50.11754748,TJ,CH4,3.9,kg/TJ,195.45843517199998,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,575d0a46-68b6-3d57-9f82-12ba8c850110 -2012,Córdoba,II.1.1,50.11754748,TJ,N2O,3.9,kg/TJ,195.45843517199998,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,575d0a46-68b6-3d57-9f82-12ba8c850110 -2012,Entre Rios,II.1.1,2.4380638799999996,TJ,CO2,74100.0,kg/TJ,180660.53350799996,Gas Oil combustion consumption by public passenger transport,AR-E,SESCO,annual,kg,4a9e06eb-4f4e-382f-8429-30a63284859b -2012,Entre Rios,II.1.1,2.4380638799999996,TJ,CH4,3.9,kg/TJ,9.508449131999999,Gas Oil combustion consumption by public passenger transport,AR-E,SESCO,annual,kg,1c5c5b67-cd49-3c20-8eed-96c235aff13f -2012,Entre Rios,II.1.1,2.4380638799999996,TJ,N2O,3.9,kg/TJ,9.508449131999999,Gas Oil combustion consumption by public passenger transport,AR-E,SESCO,annual,kg,1c5c5b67-cd49-3c20-8eed-96c235aff13f -2012,Formosa,II.1.1,18.35759268,TJ,CO2,74100.0,kg/TJ,1360297.617588,Gas Oil combustion consumption by public passenger transport,AR-P,SESCO,annual,kg,cf42cf27-1b41-3938-aa54-462f38e76cae -2012,Formosa,II.1.1,18.35759268,TJ,CH4,3.9,kg/TJ,71.594611452,Gas Oil combustion consumption by public passenger transport,AR-P,SESCO,annual,kg,02ecba40-059d-3cc3-8763-0cb8d02ebf92 -2012,Formosa,II.1.1,18.35759268,TJ,N2O,3.9,kg/TJ,71.594611452,Gas Oil combustion consumption by public passenger transport,AR-P,SESCO,annual,kg,02ecba40-059d-3cc3-8763-0cb8d02ebf92 -2012,Neuquén,II.1.1,6.791029559999999,TJ,CO2,74100.0,kg/TJ,503215.29039599997,Gas Oil combustion consumption by public passenger transport,AR-Q,SESCO,annual,kg,8ab91f94-3a48-32bb-a894-389096b8cdee -2012,Neuquén,II.1.1,6.791029559999999,TJ,CH4,3.9,kg/TJ,26.485015283999996,Gas Oil combustion consumption by public passenger transport,AR-Q,SESCO,annual,kg,3abbbd2a-6e5c-3c23-bcae-acd371a40347 -2012,Neuquén,II.1.1,6.791029559999999,TJ,N2O,3.9,kg/TJ,26.485015283999996,Gas Oil combustion consumption by public passenger transport,AR-Q,SESCO,annual,kg,3abbbd2a-6e5c-3c23-bcae-acd371a40347 -2012,Rio Negro,II.1.1,39.57917628,TJ,CO2,74100.0,kg/TJ,2932816.9623479997,Gas Oil combustion consumption by public passenger transport,AR-R,SESCO,annual,kg,8919e25a-b2dc-3b3d-a409-6a47bd66b980 -2012,Rio Negro,II.1.1,39.57917628,TJ,CH4,3.9,kg/TJ,154.358787492,Gas Oil combustion consumption by public passenger transport,AR-R,SESCO,annual,kg,a119bd97-4c39-3654-989b-83faf6f2bf65 -2012,Rio Negro,II.1.1,39.57917628,TJ,N2O,3.9,kg/TJ,154.358787492,Gas Oil combustion consumption by public passenger transport,AR-R,SESCO,annual,kg,a119bd97-4c39-3654-989b-83faf6f2bf65 -2012,San Luis,II.1.1,2.2616537999999995,TJ,CO2,74100.0,kg/TJ,167588.54657999997,Gas Oil combustion consumption by public passenger transport,AR-D,SESCO,annual,kg,2dc83844-ce10-35cd-90a4-46f76fd0889f -2012,San Luis,II.1.1,2.2616537999999995,TJ,CH4,3.9,kg/TJ,8.820449819999999,Gas Oil combustion consumption by public passenger transport,AR-D,SESCO,annual,kg,7fa27363-f132-3771-a31a-21fae6d387cd -2012,San Luis,II.1.1,2.2616537999999995,TJ,N2O,3.9,kg/TJ,8.820449819999999,Gas Oil combustion consumption by public passenger transport,AR-D,SESCO,annual,kg,7fa27363-f132-3771-a31a-21fae6d387cd -2012,Santa Cruz,II.1.1,5.30270496,TJ,CO2,74100.0,kg/TJ,392930.437536,Gas Oil combustion consumption by public passenger transport,AR-Z,SESCO,annual,kg,7efa8f38-9ca9-352b-be6c-fcec3fcfc0a6 -2012,Santa Cruz,II.1.1,5.30270496,TJ,CH4,3.9,kg/TJ,20.680549344,Gas Oil combustion consumption by public passenger transport,AR-Z,SESCO,annual,kg,48910dd7-c0f2-395e-a400-ff740d9a2ff5 -2012,Santa Cruz,II.1.1,5.30270496,TJ,N2O,3.9,kg/TJ,20.680549344,Gas Oil combustion consumption by public passenger transport,AR-Z,SESCO,annual,kg,48910dd7-c0f2-395e-a400-ff740d9a2ff5 -2012,Santa Fe,II.1.1,0.50112888,TJ,CO2,74100.0,kg/TJ,37133.650008,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,9c843ccd-b020-3f99-8181-2e81bae65ebc -2012,Santa Fe,II.1.1,0.50112888,TJ,CH4,3.9,kg/TJ,1.9544026319999999,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,85b684c9-3fac-3ccb-8ca6-06c6805d2d5a -2012,Santa Fe,II.1.1,0.50112888,TJ,N2O,3.9,kg/TJ,1.9544026319999999,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,85b684c9-3fac-3ccb-8ca6-06c6805d2d5a -2012,Buenos Aires,II.5.1,358.56324,TJ,CO2,74100.0,kg/TJ,26569536.084,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,91f5d102-5f40-3026-887f-646f99c67ab4 -2012,Buenos Aires,II.5.1,358.56324,TJ,CH4,3.9,kg/TJ,1398.396636,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,abe17d28-f34d-3340-bae3-074884dfbb7c -2012,Buenos Aires,II.5.1,358.56324,TJ,N2O,3.9,kg/TJ,1398.396636,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,abe17d28-f34d-3340-bae3-074884dfbb7c -2012,Capital Federal,II.5.1,101.3166,TJ,CO2,74100.0,kg/TJ,7507560.06,Gas Oil combustion consumption by agriculture machines,AR-C,SESCO,annual,kg,1e3ad353-4d05-375f-b3e2-7de6618502b6 -2012,Capital Federal,II.5.1,101.3166,TJ,CH4,3.9,kg/TJ,395.13473999999997,Gas Oil combustion consumption by agriculture machines,AR-C,SESCO,annual,kg,e9eca6bb-fc2c-3587-93a9-2243ec16aa09 -2012,Capital Federal,II.5.1,101.3166,TJ,N2O,3.9,kg/TJ,395.13473999999997,Gas Oil combustion consumption by agriculture machines,AR-C,SESCO,annual,kg,e9eca6bb-fc2c-3587-93a9-2243ec16aa09 -2012,Chubut,II.5.1,12.750359999999999,TJ,CO2,74100.0,kg/TJ,944801.6759999999,Gas Oil combustion consumption by agriculture machines,AR-U,SESCO,annual,kg,48fb23fd-d1d0-3f8f-9e76-89fcd3d53cc9 -2012,Chubut,II.5.1,12.750359999999999,TJ,CH4,3.9,kg/TJ,49.726403999999995,Gas Oil combustion consumption by agriculture machines,AR-U,SESCO,annual,kg,1b5ec700-da3d-315d-b0ff-74de81ddca8e -2012,Chubut,II.5.1,12.750359999999999,TJ,N2O,3.9,kg/TJ,49.726403999999995,Gas Oil combustion consumption by agriculture machines,AR-U,SESCO,annual,kg,1b5ec700-da3d-315d-b0ff-74de81ddca8e -2012,Córdoba,II.5.1,129.63468,TJ,CO2,74100.0,kg/TJ,9605929.788,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,3299d377-b13f-3cc3-afd7-8d7f2ea638b3 -2012,Córdoba,II.5.1,129.63468,TJ,CH4,3.9,kg/TJ,505.575252,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,6827cb5e-ba37-3d8a-9062-eccb49eeb8c0 -2012,Córdoba,II.5.1,129.63468,TJ,N2O,3.9,kg/TJ,505.575252,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,6827cb5e-ba37-3d8a-9062-eccb49eeb8c0 -2012,Santa Fe,II.5.1,413.21279999999996,TJ,CO2,74100.0,kg/TJ,30619068.479999997,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,a2cc2437-871c-3b01-9a2c-9919430fdfc0 -2012,Santa Fe,II.5.1,413.21279999999996,TJ,CH4,3.9,kg/TJ,1611.5299199999997,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,746c793b-1b85-34bc-b860-7615000bf796 -2012,Santa Fe,II.5.1,413.21279999999996,TJ,N2O,3.9,kg/TJ,1611.5299199999997,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,746c793b-1b85-34bc-b860-7615000bf796 -2012,Buenos Aires,II.5.1,5.74308,TJ,CO2,74100.0,kg/TJ,425562.228,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,53905f71-d54a-39df-bd3b-e05c2b70fe52 -2012,Buenos Aires,II.5.1,5.74308,TJ,CH4,3.9,kg/TJ,22.398011999999998,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,0039c135-62ce-3a95-bd77-11bb029b48c6 -2012,Buenos Aires,II.5.1,5.74308,TJ,N2O,3.9,kg/TJ,22.398011999999998,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,0039c135-62ce-3a95-bd77-11bb029b48c6 -2012,Santa Fe,II.5.1,0.36119999999999997,TJ,CO2,74100.0,kg/TJ,26764.92,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,3d22136b-cca5-3264-a6a1-9e0dda494b63 -2012,Santa Fe,II.5.1,0.36119999999999997,TJ,CH4,3.9,kg/TJ,1.40868,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,6c844705-4cb9-3299-8693-173047f30dfc -2012,Santa Fe,II.5.1,0.36119999999999997,TJ,N2O,3.9,kg/TJ,1.40868,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,6c844705-4cb9-3299-8693-173047f30dfc -2012,Capital Federal,II.5.1,0.41118,TJ,CO2,73300.0,kg/TJ,30139.494,Naphtha combustion consumption by agriculture machines,AR-C,SESCO,annual,kg,332cb377-846e-3a62-87f5-a159daaffc74 -2012,Capital Federal,II.5.1,0.41118,TJ,CH4,0.5,kg/TJ,0.20559,Naphtha combustion consumption by agriculture machines,AR-C,SESCO,annual,kg,d5eac6e2-f379-3189-90f7-afc08d64d8bb -2012,Capital Federal,II.5.1,0.41118,TJ,N2O,2.0,kg/TJ,0.82236,Naphtha combustion consumption by agriculture machines,AR-C,SESCO,annual,kg,7a45f00a-5677-3b50-bbbb-cce93bb13762 -2012,Santa Fe,II.5.1,4.694305,TJ,CO2,73300.0,kg/TJ,344092.5565,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,da54c4ba-aecd-3e1b-aac4-e6c693bcd9d0 -2012,Santa Fe,II.5.1,4.694305,TJ,CH4,0.5,kg/TJ,2.3471525,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,f10800d4-3218-3704-9cd8-c7da72073e90 -2012,Santa Fe,II.5.1,4.694305,TJ,N2O,2.0,kg/TJ,9.38861,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,1c181353-6215-3bb1-a37c-63b908a05f31 -2012,Buenos Aires,II.2.1,481.299,TJ,CO2,74100.0,kg/TJ,35664255.9,Gas Oil combustion consumption by railway transport,AR-B,SESCO,annual,kg,95db9de5-b044-3819-b2f7-9654a80c90b7 -2012,Buenos Aires,II.2.1,481.299,TJ,CH4,3.9,kg/TJ,1877.0660999999998,Gas Oil combustion consumption by railway transport,AR-B,SESCO,annual,kg,a394393e-c61d-3987-b8d8-689056668f5a -2012,Buenos Aires,II.2.1,481.299,TJ,N2O,3.9,kg/TJ,1877.0660999999998,Gas Oil combustion consumption by railway transport,AR-B,SESCO,annual,kg,a394393e-c61d-3987-b8d8-689056668f5a -2012,Capital Federal,II.2.1,2135.08932,TJ,CO2,74100.0,kg/TJ,158210118.612,Gas Oil combustion consumption by railway transport,AR-C,SESCO,annual,kg,0ecec63b-e3b2-3778-b9a1-51524846dfda -2012,Capital Federal,II.2.1,2135.08932,TJ,CH4,3.9,kg/TJ,8326.848348,Gas Oil combustion consumption by railway transport,AR-C,SESCO,annual,kg,3913a77d-d8a9-34be-96e5-965f89118e4a -2012,Capital Federal,II.2.1,2135.08932,TJ,N2O,3.9,kg/TJ,8326.848348,Gas Oil combustion consumption by railway transport,AR-C,SESCO,annual,kg,3913a77d-d8a9-34be-96e5-965f89118e4a -2012,Santa Fe,II.2.1,202.74156,TJ,CO2,74100.0,kg/TJ,15023149.595999999,Gas Oil combustion consumption by railway transport,AR-S,SESCO,annual,kg,37eee7fe-badc-37c6-911b-4b9383059554 -2012,Santa Fe,II.2.1,202.74156,TJ,CH4,3.9,kg/TJ,790.6920839999999,Gas Oil combustion consumption by railway transport,AR-S,SESCO,annual,kg,c4a9470f-88fa-3d44-ac4c-40b7412a4cad -2012,Santa Fe,II.2.1,202.74156,TJ,N2O,3.9,kg/TJ,790.6920839999999,Gas Oil combustion consumption by railway transport,AR-S,SESCO,annual,kg,c4a9470f-88fa-3d44-ac4c-40b7412a4cad -2012,Capital Federal,II.2.1,0.5418,TJ,CO2,74100.0,kg/TJ,40147.38,Gas Oil combustion consumption by railway transport,AR-C,SESCO,annual,kg,9d20fe4c-e425-3dbd-8077-7c29f00ce4c3 -2012,Capital Federal,II.2.1,0.5418,TJ,CH4,3.9,kg/TJ,2.1130199999999997,Gas Oil combustion consumption by railway transport,AR-C,SESCO,annual,kg,0458878e-61ca-3248-af7b-f874e8e1fe8a -2012,Capital Federal,II.2.1,0.5418,TJ,N2O,3.9,kg/TJ,2.1130199999999997,Gas Oil combustion consumption by railway transport,AR-C,SESCO,annual,kg,0458878e-61ca-3248-af7b-f874e8e1fe8a -2012,Buenos Aires,II.1.1,4.9616,TJ,CO2,69300.0,kg/TJ,343838.88,Motor Gasoline combustion consumption by freight transport,AR-B,SESCO,annual,kg,5a50e96b-f8d9-3f6c-b85d-d6eed52a828f -2012,Buenos Aires,II.1.1,4.9616,TJ,CH4,33.0,kg/TJ,163.7328,Motor Gasoline combustion consumption by freight transport,AR-B,SESCO,annual,kg,403609de-de83-355b-8ba0-0ed65c25acd7 -2012,Buenos Aires,II.1.1,4.9616,TJ,N2O,3.2,kg/TJ,15.87712,Motor Gasoline combustion consumption by freight transport,AR-B,SESCO,annual,kg,d6e8871a-30d5-36a8-b4b2-e34d56031486 -2012,Capital Federal,II.1.1,9.9232,TJ,CO2,69300.0,kg/TJ,687677.76,Motor Gasoline combustion consumption by freight transport,AR-C,SESCO,annual,kg,2b1bdaee-ecfa-3085-9018-b18a89e5146d -2012,Capital Federal,II.1.1,9.9232,TJ,CH4,33.0,kg/TJ,327.4656,Motor Gasoline combustion consumption by freight transport,AR-C,SESCO,annual,kg,17df7821-95bd-3750-9604-7721566d1094 -2012,Capital Federal,II.1.1,9.9232,TJ,N2O,3.2,kg/TJ,31.75424,Motor Gasoline combustion consumption by freight transport,AR-C,SESCO,annual,kg,16bd17f0-7f30-3e69-a61f-eb1fce5076bc -2012,Buenos Aires,II.1.1,813.1695599999999,TJ,CO2,74100.0,kg/TJ,60255864.396,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,7f400c36-2803-3a3e-9de3-cdc39c8c6076 -2012,Buenos Aires,II.1.1,813.1695599999999,TJ,CH4,3.9,kg/TJ,3171.3612839999996,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,10189ee2-b97b-3536-a7d7-6f99f9e36130 -2012,Buenos Aires,II.1.1,813.1695599999999,TJ,N2O,3.9,kg/TJ,3171.3612839999996,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,10189ee2-b97b-3536-a7d7-6f99f9e36130 -2012,Capital Federal,II.1.1,342.16476,TJ,CO2,74100.0,kg/TJ,25354408.716000002,Gas Oil combustion consumption by freight transport,AR-C,SESCO,annual,kg,110f1a4e-8ba4-3c92-9944-1bbdac2b6e71 -2012,Capital Federal,II.1.1,342.16476,TJ,CH4,3.9,kg/TJ,1334.442564,Gas Oil combustion consumption by freight transport,AR-C,SESCO,annual,kg,5f54abeb-614f-31c1-aaa6-d7211eade235 -2012,Capital Federal,II.1.1,342.16476,TJ,N2O,3.9,kg/TJ,1334.442564,Gas Oil combustion consumption by freight transport,AR-C,SESCO,annual,kg,5f54abeb-614f-31c1-aaa6-d7211eade235 -2012,Córdoba,II.1.1,203.06663999999998,TJ,CO2,74100.0,kg/TJ,15047238.023999998,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,19cf7c49-29a0-3751-9c1d-f4378a5ede35 -2012,Córdoba,II.1.1,203.06663999999998,TJ,CH4,3.9,kg/TJ,791.9598959999998,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,96ab20b4-4308-331d-9cdb-fed6a0f8ad35 -2012,Córdoba,II.1.1,203.06663999999998,TJ,N2O,3.9,kg/TJ,791.9598959999998,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,96ab20b4-4308-331d-9cdb-fed6a0f8ad35 -2012,Santiago del Estero,II.1.1,2.3478,TJ,CO2,74100.0,kg/TJ,173971.97999999998,Gas Oil combustion consumption by freight transport,AR-G,SESCO,annual,kg,a77b1388-9819-361e-a6ea-a4d3f8fbbfb1 -2012,Santiago del Estero,II.1.1,2.3478,TJ,CH4,3.9,kg/TJ,9.156419999999999,Gas Oil combustion consumption by freight transport,AR-G,SESCO,annual,kg,1d17f3e5-f8a7-373c-8ca4-a3b9b146039c -2012,Santiago del Estero,II.1.1,2.3478,TJ,N2O,3.9,kg/TJ,9.156419999999999,Gas Oil combustion consumption by freight transport,AR-G,SESCO,annual,kg,1d17f3e5-f8a7-373c-8ca4-a3b9b146039c -2012,Buenos Aires,II.1.1,4735.5126,TJ,CO2,74100.0,kg/TJ,350901483.66,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,123b50ce-2fc7-3d54-abcc-f0aca801d6c0 -2012,Buenos Aires,II.1.1,4735.5126,TJ,CH4,3.9,kg/TJ,18468.49914,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,26ed70b0-0e5a-35d9-84ac-5e1b1304ab48 -2012,Buenos Aires,II.1.1,4735.5126,TJ,N2O,3.9,kg/TJ,18468.49914,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,26ed70b0-0e5a-35d9-84ac-5e1b1304ab48 -2012,Capital Federal,II.1.1,661.899,TJ,CO2,74100.0,kg/TJ,49046715.9,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,2e822fc0-634f-30dc-af59-eeb9d19deb29 -2012,Capital Federal,II.1.1,661.899,TJ,CH4,3.9,kg/TJ,2581.4061,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,a1b2d137-4552-3c3a-8975-b41d40f77984 -2012,Capital Federal,II.1.1,661.899,TJ,N2O,3.9,kg/TJ,2581.4061,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,a1b2d137-4552-3c3a-8975-b41d40f77984 -2012,Córdoba,II.1.1,5.63472,TJ,CO2,74100.0,kg/TJ,417532.752,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,e1cacb83-bbdb-3a47-a0b3-810c1ffa34a6 -2012,Córdoba,II.1.1,5.63472,TJ,CH4,3.9,kg/TJ,21.975407999999998,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,3df9bc1a-0d57-3c6b-897d-9b803f5663c3 -2012,Córdoba,II.1.1,5.63472,TJ,N2O,3.9,kg/TJ,21.975407999999998,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,3df9bc1a-0d57-3c6b-897d-9b803f5663c3 -2012,Misiones,II.1.1,1.3364399999999999,TJ,CO2,74100.0,kg/TJ,99030.20399999998,Gas Oil combustion consumption by public passenger transport,AR-N,SESCO,annual,kg,7c2241a8-1ac9-3952-8705-3e640fb536cb -2012,Misiones,II.1.1,1.3364399999999999,TJ,CH4,3.9,kg/TJ,5.212115999999999,Gas Oil combustion consumption by public passenger transport,AR-N,SESCO,annual,kg,a628d1c6-227f-3017-b892-db83e9ea7937 -2012,Misiones,II.1.1,1.3364399999999999,TJ,N2O,3.9,kg/TJ,5.212115999999999,Gas Oil combustion consumption by public passenger transport,AR-N,SESCO,annual,kg,a628d1c6-227f-3017-b892-db83e9ea7937 -2012,Buenos Aires,II.5.1,8.7714,TJ,CO2,69300.0,kg/TJ,607858.02,Motor Gasoline combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,eeb8205d-77cd-3f2a-8932-d43d75a1c545 -2012,Buenos Aires,II.5.1,8.7714,TJ,CH4,33.0,kg/TJ,289.45619999999997,Motor Gasoline combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,b317fb0b-521a-3f20-ab2a-93fab46f1447 -2012,Buenos Aires,II.5.1,8.7714,TJ,N2O,3.2,kg/TJ,28.06848,Motor Gasoline combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,c3ec9538-cdd4-3188-b323-3581c89c4abd -2012,Salta,II.5.1,3.4111,TJ,CO2,69300.0,kg/TJ,236389.22999999998,Motor Gasoline combustion consumption by agriculture machines,AR-A,SESCO,annual,kg,4923e7a7-f4e7-3ab8-86d3-baabd51cf654 -2012,Salta,II.5.1,3.4111,TJ,CH4,33.0,kg/TJ,112.5663,Motor Gasoline combustion consumption by agriculture machines,AR-A,SESCO,annual,kg,02d4c0d6-0eb1-3d4f-b48f-72226e0476a8 -2012,Salta,II.5.1,3.4111,TJ,N2O,3.2,kg/TJ,10.91552,Motor Gasoline combustion consumption by agriculture machines,AR-A,SESCO,annual,kg,54c775fc-eae4-30f4-ac90-9cbf96fc0915 -2012,Buenos Aires,II.5.1,8663.237519999999,TJ,CO2,74100.0,kg/TJ,641945900.2319999,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,9205a28d-87ec-30ef-a20d-05081277b2f4 -2012,Buenos Aires,II.5.1,8663.237519999999,TJ,CH4,3.9,kg/TJ,33786.62632799999,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,541527fa-bef5-3aae-9e90-2932001cdd1a -2012,Buenos Aires,II.5.1,8663.237519999999,TJ,N2O,3.9,kg/TJ,33786.62632799999,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,541527fa-bef5-3aae-9e90-2932001cdd1a -2012,Capital Federal,II.5.1,35.61432,TJ,CO2,74100.0,kg/TJ,2639021.1119999997,Gas Oil combustion consumption by agriculture machines,AR-C,SESCO,annual,kg,1098f363-9edf-3725-8e5a-5e63ee2e8ccc -2012,Capital Federal,II.5.1,35.61432,TJ,CH4,3.9,kg/TJ,138.895848,Gas Oil combustion consumption by agriculture machines,AR-C,SESCO,annual,kg,7b3b91cb-6489-3224-81d1-daa2b8b11158 -2012,Capital Federal,II.5.1,35.61432,TJ,N2O,3.9,kg/TJ,138.895848,Gas Oil combustion consumption by agriculture machines,AR-C,SESCO,annual,kg,7b3b91cb-6489-3224-81d1-daa2b8b11158 -2012,Catamarca,II.5.1,195.7704,TJ,CO2,74100.0,kg/TJ,14506586.639999999,Gas Oil combustion consumption by agriculture machines,AR-K,SESCO,annual,kg,dcb13266-e297-3c80-847f-b8e66a15ed4f -2012,Catamarca,II.5.1,195.7704,TJ,CH4,3.9,kg/TJ,763.50456,Gas Oil combustion consumption by agriculture machines,AR-K,SESCO,annual,kg,9653fb1f-c4b8-322c-ad92-6c21540fd096 -2012,Catamarca,II.5.1,195.7704,TJ,N2O,3.9,kg/TJ,763.50456,Gas Oil combustion consumption by agriculture machines,AR-K,SESCO,annual,kg,9653fb1f-c4b8-322c-ad92-6c21540fd096 -2012,Chaco,II.5.1,1276.3002,TJ,CO2,74100.0,kg/TJ,94573844.82,Gas Oil combustion consumption by agriculture machines,AR-H,SESCO,annual,kg,68da3984-3549-33b9-a9f4-76f1459abae7 -2012,Chaco,II.5.1,1276.3002,TJ,CH4,3.9,kg/TJ,4977.570779999999,Gas Oil combustion consumption by agriculture machines,AR-H,SESCO,annual,kg,7ec7c20a-abb9-3424-a226-e5027d54737c -2012,Chaco,II.5.1,1276.3002,TJ,N2O,3.9,kg/TJ,4977.570779999999,Gas Oil combustion consumption by agriculture machines,AR-H,SESCO,annual,kg,7ec7c20a-abb9-3424-a226-e5027d54737c -2012,Chubut,II.5.1,8.34372,TJ,CO2,74100.0,kg/TJ,618269.652,Gas Oil combustion consumption by agriculture machines,AR-U,SESCO,annual,kg,fedbcd65-2676-3d64-8c04-5bd0176e313d -2012,Chubut,II.5.1,8.34372,TJ,CH4,3.9,kg/TJ,32.540507999999996,Gas Oil combustion consumption by agriculture machines,AR-U,SESCO,annual,kg,52ef6529-3dd0-362f-b4f8-a7c87d612d68 -2012,Chubut,II.5.1,8.34372,TJ,N2O,3.9,kg/TJ,32.540507999999996,Gas Oil combustion consumption by agriculture machines,AR-U,SESCO,annual,kg,52ef6529-3dd0-362f-b4f8-a7c87d612d68 -2012,Corrientes,II.5.1,395.58624,TJ,CO2,74100.0,kg/TJ,29312940.384,Gas Oil combustion consumption by agriculture machines,AR-W,SESCO,annual,kg,224bf67d-bd48-39eb-a012-af236f3e64fc -2012,Corrientes,II.5.1,395.58624,TJ,CH4,3.9,kg/TJ,1542.786336,Gas Oil combustion consumption by agriculture machines,AR-W,SESCO,annual,kg,7ce5a0ea-e1f8-3f2e-8340-4170e01296d6 -2012,Corrientes,II.5.1,395.58624,TJ,N2O,3.9,kg/TJ,1542.786336,Gas Oil combustion consumption by agriculture machines,AR-W,SESCO,annual,kg,7ce5a0ea-e1f8-3f2e-8340-4170e01296d6 -2012,Córdoba,II.5.1,7313.14416,TJ,CO2,74100.0,kg/TJ,541903982.256,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,8c12cecf-0c3e-3b3d-8d19-2562bf7bf31d -2012,Córdoba,II.5.1,7313.14416,TJ,CH4,3.9,kg/TJ,28521.262224,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,fac1210f-ed8a-38cd-bd87-968df11c93df -2012,Córdoba,II.5.1,7313.14416,TJ,N2O,3.9,kg/TJ,28521.262224,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,fac1210f-ed8a-38cd-bd87-968df11c93df -2012,Entre Rios,II.5.1,1986.45552,TJ,CO2,74100.0,kg/TJ,147196354.032,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,df0d4147-1145-394c-b521-d6108cf7a617 -2012,Entre Rios,II.5.1,1986.45552,TJ,CH4,3.9,kg/TJ,7747.176528,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,da8e2701-e810-352f-ac9d-d50ddb84e981 -2012,Entre Rios,II.5.1,1986.45552,TJ,N2O,3.9,kg/TJ,7747.176528,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,da8e2701-e810-352f-ac9d-d50ddb84e981 -2012,Formosa,II.5.1,353.976,TJ,CO2,74100.0,kg/TJ,26229621.6,Gas Oil combustion consumption by agriculture machines,AR-P,SESCO,annual,kg,03be6eef-7126-38fa-8913-e3afb6f4593e -2012,Formosa,II.5.1,353.976,TJ,CH4,3.9,kg/TJ,1380.5064,Gas Oil combustion consumption by agriculture machines,AR-P,SESCO,annual,kg,2bcc1c9f-bbd1-38de-9939-487a3e6ac001 -2012,Formosa,II.5.1,353.976,TJ,N2O,3.9,kg/TJ,1380.5064,Gas Oil combustion consumption by agriculture machines,AR-P,SESCO,annual,kg,2bcc1c9f-bbd1-38de-9939-487a3e6ac001 -2012,Jujuy,II.5.1,780.9144,TJ,CO2,74100.0,kg/TJ,57865757.04,Gas Oil combustion consumption by agriculture machines,AR-Y,SESCO,annual,kg,fe2a30d3-7d80-3cda-ae5e-6584b710c765 -2012,Jujuy,II.5.1,780.9144,TJ,CH4,3.9,kg/TJ,3045.56616,Gas Oil combustion consumption by agriculture machines,AR-Y,SESCO,annual,kg,b3eb22c5-2824-37a3-8b84-c9385e2c5e98 -2012,Jujuy,II.5.1,780.9144,TJ,N2O,3.9,kg/TJ,3045.56616,Gas Oil combustion consumption by agriculture machines,AR-Y,SESCO,annual,kg,b3eb22c5-2824-37a3-8b84-c9385e2c5e98 -2012,La Pampa,II.5.1,2319.15684,TJ,CO2,74100.0,kg/TJ,171849521.844,Gas Oil combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,8fa59509-f8ce-39f2-8a7a-17b5884b95d6 -2012,La Pampa,II.5.1,2319.15684,TJ,CH4,3.9,kg/TJ,9044.711676,Gas Oil combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,fe516c25-1e1a-3800-adb5-f00de7ac3553 -2012,La Pampa,II.5.1,2319.15684,TJ,N2O,3.9,kg/TJ,9044.711676,Gas Oil combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,fe516c25-1e1a-3800-adb5-f00de7ac3553 -2012,Mendoza,II.5.1,393.31068,TJ,CO2,74100.0,kg/TJ,29144321.388,Gas Oil combustion consumption by agriculture machines,AR-M,SESCO,annual,kg,f45a9073-f4db-34eb-b9bd-603349cc9fd7 -2012,Mendoza,II.5.1,393.31068,TJ,CH4,3.9,kg/TJ,1533.911652,Gas Oil combustion consumption by agriculture machines,AR-M,SESCO,annual,kg,d699d258-7e67-33ab-994e-15ee69771dd1 -2012,Mendoza,II.5.1,393.31068,TJ,N2O,3.9,kg/TJ,1533.911652,Gas Oil combustion consumption by agriculture machines,AR-M,SESCO,annual,kg,d699d258-7e67-33ab-994e-15ee69771dd1 -2012,Misiones,II.5.1,952.37604,TJ,CO2,74100.0,kg/TJ,70571064.564,Gas Oil combustion consumption by agriculture machines,AR-N,SESCO,annual,kg,cd1399e0-5a26-32d4-848d-dde1235337fd -2012,Misiones,II.5.1,952.37604,TJ,CH4,3.9,kg/TJ,3714.266556,Gas Oil combustion consumption by agriculture machines,AR-N,SESCO,annual,kg,17c78c81-e40a-3671-813b-2ea8141d2487 -2012,Misiones,II.5.1,952.37604,TJ,N2O,3.9,kg/TJ,3714.266556,Gas Oil combustion consumption by agriculture machines,AR-N,SESCO,annual,kg,17c78c81-e40a-3671-813b-2ea8141d2487 -2012,Neuquén,II.5.1,30.990959999999998,TJ,CO2,74100.0,kg/TJ,2296430.136,Gas Oil combustion consumption by agriculture machines,AR-Q,SESCO,annual,kg,bef43400-0819-316c-8cbd-f92865b11f83 -2012,Neuquén,II.5.1,30.990959999999998,TJ,CH4,3.9,kg/TJ,120.86474399999999,Gas Oil combustion consumption by agriculture machines,AR-Q,SESCO,annual,kg,f9dc0006-3a16-3bd0-9f76-5d3a83214c3c -2012,Neuquén,II.5.1,30.990959999999998,TJ,N2O,3.9,kg/TJ,120.86474399999999,Gas Oil combustion consumption by agriculture machines,AR-Q,SESCO,annual,kg,f9dc0006-3a16-3bd0-9f76-5d3a83214c3c -2012,Rio Negro,II.5.1,150.76488,TJ,CO2,74100.0,kg/TJ,11171677.608000001,Gas Oil combustion consumption by agriculture machines,AR-R,SESCO,annual,kg,874df751-4753-3e64-897f-072f4a5ed895 -2012,Rio Negro,II.5.1,150.76488,TJ,CH4,3.9,kg/TJ,587.983032,Gas Oil combustion consumption by agriculture machines,AR-R,SESCO,annual,kg,ed678122-e072-3df4-97f3-17e6d186584b -2012,Rio Negro,II.5.1,150.76488,TJ,N2O,3.9,kg/TJ,587.983032,Gas Oil combustion consumption by agriculture machines,AR-R,SESCO,annual,kg,ed678122-e072-3df4-97f3-17e6d186584b -2012,Salta,II.5.1,1968.07044,TJ,CO2,74100.0,kg/TJ,145834019.604,Gas Oil combustion consumption by agriculture machines,AR-A,SESCO,annual,kg,37db892e-d417-355e-9531-5f499d2ab5ed -2012,Salta,II.5.1,1968.07044,TJ,CH4,3.9,kg/TJ,7675.474716,Gas Oil combustion consumption by agriculture machines,AR-A,SESCO,annual,kg,6a31b34a-3610-3a13-94d5-2ecc270d3ad5 -2012,Salta,II.5.1,1968.07044,TJ,N2O,3.9,kg/TJ,7675.474716,Gas Oil combustion consumption by agriculture machines,AR-A,SESCO,annual,kg,6a31b34a-3610-3a13-94d5-2ecc270d3ad5 -2012,San Juan,II.5.1,116.41476,TJ,CO2,74100.0,kg/TJ,8626333.716,Gas Oil combustion consumption by agriculture machines,AR-J,SESCO,annual,kg,c187100c-886d-3bff-8f49-63a21f097f59 -2012,San Juan,II.5.1,116.41476,TJ,CH4,3.9,kg/TJ,454.017564,Gas Oil combustion consumption by agriculture machines,AR-J,SESCO,annual,kg,85b02a65-67a6-3b0a-9581-5d0f276bc9c8 -2012,San Juan,II.5.1,116.41476,TJ,N2O,3.9,kg/TJ,454.017564,Gas Oil combustion consumption by agriculture machines,AR-J,SESCO,annual,kg,85b02a65-67a6-3b0a-9581-5d0f276bc9c8 -2012,San Luis,II.5.1,463.20288,TJ,CO2,74100.0,kg/TJ,34323333.408,Gas Oil combustion consumption by agriculture machines,AR-D,SESCO,annual,kg,aa043c13-e454-357a-9607-b99c2cd277e3 -2012,San Luis,II.5.1,463.20288,TJ,CH4,3.9,kg/TJ,1806.4912319999999,Gas Oil combustion consumption by agriculture machines,AR-D,SESCO,annual,kg,bff40811-6676-3084-b3f4-14c0079fcb05 -2012,San Luis,II.5.1,463.20288,TJ,N2O,3.9,kg/TJ,1806.4912319999999,Gas Oil combustion consumption by agriculture machines,AR-D,SESCO,annual,kg,bff40811-6676-3084-b3f4-14c0079fcb05 -2012,Santa Fe,II.5.1,6100.848599999999,TJ,CO2,74100.0,kg/TJ,452072881.25999993,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,c49f40a6-1547-3430-ba3a-edfb9cdd8533 -2012,Santa Fe,II.5.1,6100.848599999999,TJ,CH4,3.9,kg/TJ,23793.30954,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,dc3ae95d-1490-39dc-9527-3a6ee55f38cb -2012,Santa Fe,II.5.1,6100.848599999999,TJ,N2O,3.9,kg/TJ,23793.30954,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,dc3ae95d-1490-39dc-9527-3a6ee55f38cb -2012,Santiago del Estero,II.5.1,1517.47344,TJ,CO2,74100.0,kg/TJ,112444781.904,Gas Oil combustion consumption by agriculture machines,AR-G,SESCO,annual,kg,964619e9-0f76-3b99-9875-ccec6ef5e36e -2012,Santiago del Estero,II.5.1,1517.47344,TJ,CH4,3.9,kg/TJ,5918.146416,Gas Oil combustion consumption by agriculture machines,AR-G,SESCO,annual,kg,3087eda9-7352-30cc-b741-ee0fa78c4974 -2012,Santiago del Estero,II.5.1,1517.47344,TJ,N2O,3.9,kg/TJ,5918.146416,Gas Oil combustion consumption by agriculture machines,AR-G,SESCO,annual,kg,3087eda9-7352-30cc-b741-ee0fa78c4974 -2012,Tucuman,II.5.1,1475.7548399999998,TJ,CO2,74100.0,kg/TJ,109353433.644,Gas Oil combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,d9de0d5e-fea3-38f5-867b-8dfb4642b911 -2012,Tucuman,II.5.1,1475.7548399999998,TJ,CH4,3.9,kg/TJ,5755.443875999999,Gas Oil combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,d02348af-4b98-3622-9b8f-a5c930fe948b -2012,Tucuman,II.5.1,1475.7548399999998,TJ,N2O,3.9,kg/TJ,5755.443875999999,Gas Oil combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,d02348af-4b98-3622-9b8f-a5c930fe948b -2012,Buenos Aires,II.5.1,40.05708,TJ,CO2,74100.0,kg/TJ,2968229.628,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,c9251dbf-66da-3340-a41c-5a7ccb168538 -2012,Buenos Aires,II.5.1,40.05708,TJ,CH4,3.9,kg/TJ,156.222612,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,ff2a3481-4391-3222-9930-f148029075c6 -2012,Buenos Aires,II.5.1,40.05708,TJ,N2O,3.9,kg/TJ,156.222612,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,ff2a3481-4391-3222-9930-f148029075c6 -2012,Chaco,II.5.1,8.95776,TJ,CO2,74100.0,kg/TJ,663770.0160000001,Gas Oil combustion consumption by agriculture machines,AR-H,SESCO,annual,kg,cf2591c3-49f8-3a92-8e5a-2611384552d7 -2012,Chaco,II.5.1,8.95776,TJ,CH4,3.9,kg/TJ,34.935264000000004,Gas Oil combustion consumption by agriculture machines,AR-H,SESCO,annual,kg,67cd9fdc-4339-3d20-95f1-0be8cd96c734 -2012,Chaco,II.5.1,8.95776,TJ,N2O,3.9,kg/TJ,34.935264000000004,Gas Oil combustion consumption by agriculture machines,AR-H,SESCO,annual,kg,67cd9fdc-4339-3d20-95f1-0be8cd96c734 -2012,Corrientes,II.5.1,2.56452,TJ,CO2,74100.0,kg/TJ,190030.932,Gas Oil combustion consumption by agriculture machines,AR-W,SESCO,annual,kg,48b124e6-baff-389e-932f-22b4a4fd0a48 -2012,Corrientes,II.5.1,2.56452,TJ,CH4,3.9,kg/TJ,10.001628,Gas Oil combustion consumption by agriculture machines,AR-W,SESCO,annual,kg,5d9f019d-18b7-3345-a801-6ba735844cc5 -2012,Corrientes,II.5.1,2.56452,TJ,N2O,3.9,kg/TJ,10.001628,Gas Oil combustion consumption by agriculture machines,AR-W,SESCO,annual,kg,5d9f019d-18b7-3345-a801-6ba735844cc5 -2012,Córdoba,II.5.1,10.6554,TJ,CO2,74100.0,kg/TJ,789565.14,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,bf6804c3-0d3d-3954-a067-9cfdd2a82115 -2012,Córdoba,II.5.1,10.6554,TJ,CH4,3.9,kg/TJ,41.55606,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,7c97b52a-f5de-3b43-ab58-6a2a522f9736 -2012,Córdoba,II.5.1,10.6554,TJ,N2O,3.9,kg/TJ,41.55606,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,7c97b52a-f5de-3b43-ab58-6a2a522f9736 -2012,Entre Rios,II.5.1,1.9866,TJ,CO2,74100.0,kg/TJ,147207.06,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,24caa789-b58a-3ef0-ba9d-9bb65ddd57c8 -2012,Entre Rios,II.5.1,1.9866,TJ,CH4,3.9,kg/TJ,7.747739999999999,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,ddc872aa-b96c-3120-903c-9f823b6c1f70 -2012,Entre Rios,II.5.1,1.9866,TJ,N2O,3.9,kg/TJ,7.747739999999999,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,ddc872aa-b96c-3120-903c-9f823b6c1f70 -2012,Jujuy,II.5.1,1.3364399999999999,TJ,CO2,74100.0,kg/TJ,99030.20399999998,Gas Oil combustion consumption by agriculture machines,AR-Y,SESCO,annual,kg,0044b8b3-d622-3f4a-8a79-ba3c7d24f2b8 -2012,Jujuy,II.5.1,1.3364399999999999,TJ,CH4,3.9,kg/TJ,5.212115999999999,Gas Oil combustion consumption by agriculture machines,AR-Y,SESCO,annual,kg,ab628184-9e32-32bc-b3f3-ebdaa5ff1981 -2012,Jujuy,II.5.1,1.3364399999999999,TJ,N2O,3.9,kg/TJ,5.212115999999999,Gas Oil combustion consumption by agriculture machines,AR-Y,SESCO,annual,kg,ab628184-9e32-32bc-b3f3-ebdaa5ff1981 -2012,La Pampa,II.5.1,55.083,TJ,CO2,74100.0,kg/TJ,4081650.3,Gas Oil combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,edf02dd9-842d-3dc3-9881-37738c7533e2 -2012,La Pampa,II.5.1,55.083,TJ,CH4,3.9,kg/TJ,214.8237,Gas Oil combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,10a118c4-88cc-3ace-8393-ac0ecb98a76b -2012,La Pampa,II.5.1,55.083,TJ,N2O,3.9,kg/TJ,214.8237,Gas Oil combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,10a118c4-88cc-3ace-8393-ac0ecb98a76b -2012,Misiones,II.5.1,3.03408,TJ,CO2,74100.0,kg/TJ,224825.32799999998,Gas Oil combustion consumption by agriculture machines,AR-N,SESCO,annual,kg,67d1d61f-ede2-3b65-9225-c5feecad5c33 -2012,Misiones,II.5.1,3.03408,TJ,CH4,3.9,kg/TJ,11.832911999999999,Gas Oil combustion consumption by agriculture machines,AR-N,SESCO,annual,kg,35b4f497-3825-351c-a21f-8da85fdda7f8 -2012,Misiones,II.5.1,3.03408,TJ,N2O,3.9,kg/TJ,11.832911999999999,Gas Oil combustion consumption by agriculture machines,AR-N,SESCO,annual,kg,35b4f497-3825-351c-a21f-8da85fdda7f8 -2012,Salta,II.5.1,55.083,TJ,CO2,74100.0,kg/TJ,4081650.3,Gas Oil combustion consumption by agriculture machines,AR-A,SESCO,annual,kg,a9246211-e975-3687-820d-2877342746e4 -2012,Salta,II.5.1,55.083,TJ,CH4,3.9,kg/TJ,214.8237,Gas Oil combustion consumption by agriculture machines,AR-A,SESCO,annual,kg,8858cfc7-64c2-38c1-9deb-42d19ee1b58a -2012,Salta,II.5.1,55.083,TJ,N2O,3.9,kg/TJ,214.8237,Gas Oil combustion consumption by agriculture machines,AR-A,SESCO,annual,kg,8858cfc7-64c2-38c1-9deb-42d19ee1b58a -2012,Santa Fe,II.5.1,45.61956,TJ,CO2,74100.0,kg/TJ,3380409.396,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,6a387918-b7be-3113-b395-106977e4f753 -2012,Santa Fe,II.5.1,45.61956,TJ,CH4,3.9,kg/TJ,177.916284,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,903fa0f5-b9ee-3816-8f14-093c941bd41d -2012,Santa Fe,II.5.1,45.61956,TJ,N2O,3.9,kg/TJ,177.916284,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,903fa0f5-b9ee-3816-8f14-093c941bd41d -2012,Santiago del Estero,II.5.1,60.57324,TJ,CO2,74100.0,kg/TJ,4488477.084,Gas Oil combustion consumption by agriculture machines,AR-G,SESCO,annual,kg,ba0099f8-ac1a-346d-aef8-3099e4f4db4b -2012,Santiago del Estero,II.5.1,60.57324,TJ,CH4,3.9,kg/TJ,236.235636,Gas Oil combustion consumption by agriculture machines,AR-G,SESCO,annual,kg,1b91d313-e125-3c28-ac11-ed86395032e9 -2012,Santiago del Estero,II.5.1,60.57324,TJ,N2O,3.9,kg/TJ,236.235636,Gas Oil combustion consumption by agriculture machines,AR-G,SESCO,annual,kg,1b91d313-e125-3c28-ac11-ed86395032e9 -2012,Tucuman,II.5.1,25.35624,TJ,CO2,74100.0,kg/TJ,1878897.384,Gas Oil combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,e3d27008-f320-3490-99d9-5db4ff176784 -2012,Tucuman,II.5.1,25.35624,TJ,CH4,3.9,kg/TJ,98.889336,Gas Oil combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,44db70ac-33ae-38bb-b9ae-7ad3ef9be930 -2012,Tucuman,II.5.1,25.35624,TJ,N2O,3.9,kg/TJ,98.889336,Gas Oil combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,44db70ac-33ae-38bb-b9ae-7ad3ef9be930 -2012,Buenos Aires,II.5.1,17.047525999999998,TJ,CO2,71500.0,kg/TJ,1218898.109,Jet Kerosene combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,d811cee4-865c-3980-b088-a2f85b3c9ec4 -2012,Buenos Aires,II.5.1,17.047525999999998,TJ,CH4,0.5,kg/TJ,8.523762999999999,Jet Kerosene combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,2568d848-45dd-3174-80f1-26db6512f45d -2012,Buenos Aires,II.5.1,17.047525999999998,TJ,N2O,2.0,kg/TJ,34.095051999999995,Jet Kerosene combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,5e324690-8491-3cc0-a9a3-4116ea82a36a -2012,Córdoba,II.5.1,0.31453,TJ,CO2,71500.0,kg/TJ,22488.894999999997,Jet Kerosene combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,f15cf9af-afeb-31b9-a32e-757a60ba7346 -2012,Córdoba,II.5.1,0.31453,TJ,CH4,0.5,kg/TJ,0.157265,Jet Kerosene combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,cf48b8c3-2f61-3dd0-b123-b5d477ee9603 -2012,Córdoba,II.5.1,0.31453,TJ,N2O,2.0,kg/TJ,0.62906,Jet Kerosene combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,ba1ec442-4a67-3a2f-9a40-c16e4a8f5665 -2012,Entre Rios,II.5.1,0.28307699999999997,TJ,CO2,71500.0,kg/TJ,20240.0055,Jet Kerosene combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,cc792cdc-d228-338a-bb13-ca68e37f94ef -2012,Entre Rios,II.5.1,0.28307699999999997,TJ,CH4,0.5,kg/TJ,0.14153849999999998,Jet Kerosene combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,dc4b07dd-66f0-3b8c-b844-1bd9cba8b39e -2012,Entre Rios,II.5.1,0.28307699999999997,TJ,N2O,2.0,kg/TJ,0.5661539999999999,Jet Kerosene combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,37f2b4ef-68e3-3354-a06c-2e31094aa7bb -2012,La Pampa,II.5.1,2.83077,TJ,CO2,71500.0,kg/TJ,202400.055,Jet Kerosene combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,5e825d1a-adf2-3ee2-a9fe-426b8597671d -2012,La Pampa,II.5.1,2.83077,TJ,CH4,0.5,kg/TJ,1.415385,Jet Kerosene combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,056a7c38-a0ff-3fe4-ba3e-72d77ec38a84 -2012,La Pampa,II.5.1,2.83077,TJ,N2O,2.0,kg/TJ,5.66154,Jet Kerosene combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,1627d847-d6bd-34fb-b121-5a48e969b30b -2012,Santa Fe,II.5.1,7.485813999999999,TJ,CO2,71500.0,kg/TJ,535235.7009999999,Jet Kerosene combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,87038111-3f31-3dc1-8f99-f0774615edc2 -2012,Santa Fe,II.5.1,7.485813999999999,TJ,CH4,0.5,kg/TJ,3.7429069999999993,Jet Kerosene combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,06d86841-67db-3c48-98b8-734f1e95c25d -2012,Santa Fe,II.5.1,7.485813999999999,TJ,N2O,2.0,kg/TJ,14.971627999999997,Jet Kerosene combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,6dc73c96-2157-3b9c-ad1e-86ae2775252e -2012,Buenos Aires,II.5.1,5.002689999999999,TJ,CO2,73300.0,kg/TJ,366697.17699999997,Naphtha combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,574599ee-3f3c-3ad9-bf0e-30ffb8e0a16e -2012,Buenos Aires,II.5.1,5.002689999999999,TJ,CH4,0.5,kg/TJ,2.5013449999999997,Naphtha combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,51605329-6077-3eb4-b30d-0308a278011e -2012,Buenos Aires,II.5.1,5.002689999999999,TJ,N2O,2.0,kg/TJ,10.005379999999999,Naphtha combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,9a31f936-c85d-314d-9300-6698d2936bc2 -2012,Chubut,II.5.1,8.84037,TJ,CO2,73300.0,kg/TJ,647999.121,Naphtha combustion consumption by agriculture machines,AR-U,SESCO,annual,kg,e0ace2f4-2aeb-3798-9ecf-2edf39b2141f -2012,Chubut,II.5.1,8.84037,TJ,CH4,0.5,kg/TJ,4.420185,Naphtha combustion consumption by agriculture machines,AR-U,SESCO,annual,kg,36e71f5d-e7a9-3a6f-8133-a400eee2ecfd -2012,Chubut,II.5.1,8.84037,TJ,N2O,2.0,kg/TJ,17.68074,Naphtha combustion consumption by agriculture machines,AR-U,SESCO,annual,kg,bc11a545-4f0f-32a4-8292-2f6948e493b3 -2012,Corrientes,II.5.1,0.75383,TJ,CO2,73300.0,kg/TJ,55255.739,Naphtha combustion consumption by agriculture machines,AR-W,SESCO,annual,kg,2f948506-82fc-370b-b2db-4b5ffc8b98bd -2012,Corrientes,II.5.1,0.75383,TJ,CH4,0.5,kg/TJ,0.376915,Naphtha combustion consumption by agriculture machines,AR-W,SESCO,annual,kg,3673a0fd-6865-3917-92e4-ed48f0089c42 -2012,Corrientes,II.5.1,0.75383,TJ,N2O,2.0,kg/TJ,1.50766,Naphtha combustion consumption by agriculture machines,AR-W,SESCO,annual,kg,af366ace-205d-365c-b969-95b55cffe039 -2012,Entre Rios,II.5.1,7.229915,TJ,CO2,73300.0,kg/TJ,529952.7695,Naphtha combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,19172106-eda0-3bea-850e-71be1d105335 -2012,Entre Rios,II.5.1,7.229915,TJ,CH4,0.5,kg/TJ,3.6149575,Naphtha combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,9ba54f4e-3457-3875-9c8c-2cc6f4930a87 -2012,Entre Rios,II.5.1,7.229915,TJ,N2O,2.0,kg/TJ,14.45983,Naphtha combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,7b0ba5ce-2de4-3f1c-b0e9-f489bf3a08cd -2012,Jujuy,II.5.1,0.54824,TJ,CO2,73300.0,kg/TJ,40185.992,Naphtha combustion consumption by agriculture machines,AR-Y,SESCO,annual,kg,301fd872-116b-3b1d-9402-b2a489c916c5 -2012,Jujuy,II.5.1,0.54824,TJ,CH4,0.5,kg/TJ,0.27412,Naphtha combustion consumption by agriculture machines,AR-Y,SESCO,annual,kg,4d2f5757-c60b-31f1-ac98-751005f57d37 -2012,Jujuy,II.5.1,0.54824,TJ,N2O,2.0,kg/TJ,1.09648,Naphtha combustion consumption by agriculture machines,AR-Y,SESCO,annual,kg,6d8e1212-98b8-302a-8820-dd0c1dfb5ee2 -2012,Salta,II.5.1,0.20559,TJ,CO2,73300.0,kg/TJ,15069.747,Naphtha combustion consumption by agriculture machines,AR-A,SESCO,annual,kg,e27938a3-3f2b-3e96-8076-66ab09ab4ebd -2012,Salta,II.5.1,0.20559,TJ,CH4,0.5,kg/TJ,0.102795,Naphtha combustion consumption by agriculture machines,AR-A,SESCO,annual,kg,168ea20a-6352-3169-994f-90a5ce59b7b1 -2012,Salta,II.5.1,0.20559,TJ,N2O,2.0,kg/TJ,0.41118,Naphtha combustion consumption by agriculture machines,AR-A,SESCO,annual,kg,f42e3987-4546-3b4c-a52c-17e7ce478cd1 -2012,Santa Fe,II.5.1,88.917675,TJ,CO2,73300.0,kg/TJ,6517665.577500001,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,61210433-544b-37bb-be72-fb65e0a7be9f -2012,Santa Fe,II.5.1,88.917675,TJ,CH4,0.5,kg/TJ,44.4588375,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,1ae57a8c-4d28-3813-883a-9525b72fb576 -2012,Santa Fe,II.5.1,88.917675,TJ,N2O,2.0,kg/TJ,177.83535,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,161caef5-06b5-3a7f-beee-cfb63ec57bf7 -2012,Santiago del Estero,II.5.1,0.513975,TJ,CO2,73300.0,kg/TJ,37674.3675,Naphtha combustion consumption by agriculture machines,AR-G,SESCO,annual,kg,84cee769-a2ee-3f2c-a6f0-32b62fb58842 -2012,Santiago del Estero,II.5.1,0.513975,TJ,CH4,0.5,kg/TJ,0.2569875,Naphtha combustion consumption by agriculture machines,AR-G,SESCO,annual,kg,78a615c7-70e0-3f51-b11a-539378873164 -2012,Santiago del Estero,II.5.1,0.513975,TJ,N2O,2.0,kg/TJ,1.02795,Naphtha combustion consumption by agriculture machines,AR-G,SESCO,annual,kg,1d19bb97-f467-32d4-b289-a79638f07507 -2012,Buenos Aires,II.5.1,1.02795,TJ,CO2,73300.0,kg/TJ,75348.735,Naphtha combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,24b99cb5-7acd-38a7-8678-396d59c3664b -2012,Buenos Aires,II.5.1,1.02795,TJ,CH4,0.5,kg/TJ,0.513975,Naphtha combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,8ef8184f-e8bc-35c7-81f6-ceaab78605da -2012,Buenos Aires,II.5.1,1.02795,TJ,N2O,2.0,kg/TJ,2.0559,Naphtha combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,0b63130e-7544-3e47-b6a1-e526ec5ca54c -2012,Santa Fe,II.5.1,1.2678049999999998,TJ,CO2,73300.0,kg/TJ,92930.1065,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,6c48878f-9e54-323a-a33b-3978f4beb46a -2012,Santa Fe,II.5.1,1.2678049999999998,TJ,CH4,0.5,kg/TJ,0.6339024999999999,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,c7db734e-7070-3e15-9aeb-a6ed324d410e -2012,Santa Fe,II.5.1,1.2678049999999998,TJ,N2O,2.0,kg/TJ,2.5356099999999997,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,3f20900a-5aa0-3e98-862c-97a655ae01e7 -2012,Buenos Aires,II.1.1,24.0992,TJ,CO2,69300.0,kg/TJ,1670074.56,Motor Gasoline combustion consumption by freight transport,AR-B,SESCO,annual,kg,db3e31cb-063a-30bc-a9d5-8ca7a0f24e22 -2012,Buenos Aires,II.1.1,24.0992,TJ,CH4,33.0,kg/TJ,795.2736,Motor Gasoline combustion consumption by freight transport,AR-B,SESCO,annual,kg,978fa113-ed08-3ad2-9911-ba8a1987fc1d -2012,Buenos Aires,II.1.1,24.0992,TJ,N2O,3.2,kg/TJ,77.11744,Motor Gasoline combustion consumption by freight transport,AR-B,SESCO,annual,kg,dea9245f-8c50-3a9a-8e0f-2d75772a4601 -2012,Capital Federal,II.1.1,11.872399999999999,TJ,CO2,69300.0,kg/TJ,822757.32,Motor Gasoline combustion consumption by freight transport,AR-C,SESCO,annual,kg,3ae3d11c-aceb-376b-af15-89b37f5747c6 -2012,Capital Federal,II.1.1,11.872399999999999,TJ,CH4,33.0,kg/TJ,391.78919999999994,Motor Gasoline combustion consumption by freight transport,AR-C,SESCO,annual,kg,9d8b6b89-7547-3a5a-a01c-d118983a6e6d -2012,Capital Federal,II.1.1,11.872399999999999,TJ,N2O,3.2,kg/TJ,37.991679999999995,Motor Gasoline combustion consumption by freight transport,AR-C,SESCO,annual,kg,cf79dfa4-3a68-39bc-a9c5-19890cc7b76c -2012,Buenos Aires,II.1.1,4691.51844,TJ,CO2,74100.0,kg/TJ,347641516.404,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,94b51570-0d3c-3cde-9f54-b11ef5a94dd9 -2012,Buenos Aires,II.1.1,4691.51844,TJ,CH4,3.9,kg/TJ,18296.921916,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,522c1df0-cdd4-3690-a21a-9935cbd4049f -2012,Buenos Aires,II.1.1,4691.51844,TJ,N2O,3.9,kg/TJ,18296.921916,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,522c1df0-cdd4-3690-a21a-9935cbd4049f -2012,Capital Federal,II.1.1,558.1262399999999,TJ,CO2,74100.0,kg/TJ,41357154.383999996,Gas Oil combustion consumption by freight transport,AR-C,SESCO,annual,kg,4c40d46c-0501-32ea-bfee-41546549667c -2012,Capital Federal,II.1.1,558.1262399999999,TJ,CH4,3.9,kg/TJ,2176.6923359999996,Gas Oil combustion consumption by freight transport,AR-C,SESCO,annual,kg,de0defbe-8af5-3329-b1c5-4130b6b043dd -2012,Capital Federal,II.1.1,558.1262399999999,TJ,N2O,3.9,kg/TJ,2176.6923359999996,Gas Oil combustion consumption by freight transport,AR-C,SESCO,annual,kg,de0defbe-8af5-3329-b1c5-4130b6b043dd -2012,Catamarca,II.1.1,22.35828,TJ,CO2,74100.0,kg/TJ,1656748.548,Gas Oil combustion consumption by freight transport,AR-K,SESCO,annual,kg,58327837-3ce8-3cdc-a86c-e0a007d2fac3 -2012,Catamarca,II.1.1,22.35828,TJ,CH4,3.9,kg/TJ,87.197292,Gas Oil combustion consumption by freight transport,AR-K,SESCO,annual,kg,89463f64-45c2-3fe0-85d7-0be3ef01cc49 -2012,Catamarca,II.1.1,22.35828,TJ,N2O,3.9,kg/TJ,87.197292,Gas Oil combustion consumption by freight transport,AR-K,SESCO,annual,kg,89463f64-45c2-3fe0-85d7-0be3ef01cc49 -2012,Chaco,II.1.1,16.940279999999998,TJ,CO2,74100.0,kg/TJ,1255274.748,Gas Oil combustion consumption by freight transport,AR-H,SESCO,annual,kg,042aaeac-dcae-362d-b37e-8973910d4e18 -2012,Chaco,II.1.1,16.940279999999998,TJ,CH4,3.9,kg/TJ,66.06709199999999,Gas Oil combustion consumption by freight transport,AR-H,SESCO,annual,kg,a14b05a7-4f25-3972-b365-274ac2ebbeda -2012,Chaco,II.1.1,16.940279999999998,TJ,N2O,3.9,kg/TJ,66.06709199999999,Gas Oil combustion consumption by freight transport,AR-H,SESCO,annual,kg,a14b05a7-4f25-3972-b365-274ac2ebbeda -2012,Chubut,II.1.1,164.41824,TJ,CO2,74100.0,kg/TJ,12183391.583999999,Gas Oil combustion consumption by freight transport,AR-U,SESCO,annual,kg,03a65f7c-dcbd-3456-b507-eec6d90859a9 -2012,Chubut,II.1.1,164.41824,TJ,CH4,3.9,kg/TJ,641.231136,Gas Oil combustion consumption by freight transport,AR-U,SESCO,annual,kg,c212e4f1-302e-3528-8d26-0cb7f35f470d -2012,Chubut,II.1.1,164.41824,TJ,N2O,3.9,kg/TJ,641.231136,Gas Oil combustion consumption by freight transport,AR-U,SESCO,annual,kg,c212e4f1-302e-3528-8d26-0cb7f35f470d -2012,Corrientes,II.1.1,185.72904,TJ,CO2,74100.0,kg/TJ,13762521.864,Gas Oil combustion consumption by freight transport,AR-W,SESCO,annual,kg,df74a3ad-7408-3c31-8cb2-56e247686c65 -2012,Corrientes,II.1.1,185.72904,TJ,CH4,3.9,kg/TJ,724.343256,Gas Oil combustion consumption by freight transport,AR-W,SESCO,annual,kg,3dd25615-ec01-3d86-8c83-648ec1f67790 -2012,Corrientes,II.1.1,185.72904,TJ,N2O,3.9,kg/TJ,724.343256,Gas Oil combustion consumption by freight transport,AR-W,SESCO,annual,kg,3dd25615-ec01-3d86-8c83-648ec1f67790 -2012,Córdoba,II.1.1,1015.94724,TJ,CO2,74100.0,kg/TJ,75281690.484,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,9aa754a9-481e-3039-a47d-9a56d3410e97 -2012,Córdoba,II.1.1,1015.94724,TJ,CH4,3.9,kg/TJ,3962.194236,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,834b3674-ca35-31cc-a780-a35b2baba311 -2012,Córdoba,II.1.1,1015.94724,TJ,N2O,3.9,kg/TJ,3962.194236,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,834b3674-ca35-31cc-a780-a35b2baba311 -2012,Entre Rios,II.1.1,107.70984,TJ,CO2,74100.0,kg/TJ,7981299.144,Gas Oil combustion consumption by freight transport,AR-E,SESCO,annual,kg,d86ea670-89a6-30c9-8b09-f29ce9f8a542 -2012,Entre Rios,II.1.1,107.70984,TJ,CH4,3.9,kg/TJ,420.068376,Gas Oil combustion consumption by freight transport,AR-E,SESCO,annual,kg,f46f494e-56c6-3ba6-a0f1-35579994ed0a -2012,Entre Rios,II.1.1,107.70984,TJ,N2O,3.9,kg/TJ,420.068376,Gas Oil combustion consumption by freight transport,AR-E,SESCO,annual,kg,f46f494e-56c6-3ba6-a0f1-35579994ed0a -2012,Jujuy,II.1.1,15.314879999999999,TJ,CO2,74100.0,kg/TJ,1134832.608,Gas Oil combustion consumption by freight transport,AR-Y,SESCO,annual,kg,8467d8cd-0c1a-38bc-84a2-fae2c1e1b106 -2012,Jujuy,II.1.1,15.314879999999999,TJ,CH4,3.9,kg/TJ,59.72803199999999,Gas Oil combustion consumption by freight transport,AR-Y,SESCO,annual,kg,4c56b0c4-1c53-32ab-bd68-206737696b4e -2012,Jujuy,II.1.1,15.314879999999999,TJ,N2O,3.9,kg/TJ,59.72803199999999,Gas Oil combustion consumption by freight transport,AR-Y,SESCO,annual,kg,4c56b0c4-1c53-32ab-bd68-206737696b4e -2012,La Pampa,II.1.1,70.03667999999999,TJ,CO2,74100.0,kg/TJ,5189717.987999999,Gas Oil combustion consumption by freight transport,AR-L,SESCO,annual,kg,27085164-1cec-3270-89d6-969d3339eef9 -2012,La Pampa,II.1.1,70.03667999999999,TJ,CH4,3.9,kg/TJ,273.14305199999995,Gas Oil combustion consumption by freight transport,AR-L,SESCO,annual,kg,235decc0-d108-3e8b-ab8c-ff35a02e7104 -2012,La Pampa,II.1.1,70.03667999999999,TJ,N2O,3.9,kg/TJ,273.14305199999995,Gas Oil combustion consumption by freight transport,AR-L,SESCO,annual,kg,235decc0-d108-3e8b-ab8c-ff35a02e7104 -2012,La Rioja,II.1.1,0.10836,TJ,CO2,74100.0,kg/TJ,8029.476,Gas Oil combustion consumption by freight transport,AR-F,SESCO,annual,kg,e07b9a20-8fa8-3e7c-a9d5-2e54dc7741fa -2012,La Rioja,II.1.1,0.10836,TJ,CH4,3.9,kg/TJ,0.422604,Gas Oil combustion consumption by freight transport,AR-F,SESCO,annual,kg,6788104c-c872-3539-869a-ed0f648f867f -2012,La Rioja,II.1.1,0.10836,TJ,N2O,3.9,kg/TJ,0.422604,Gas Oil combustion consumption by freight transport,AR-F,SESCO,annual,kg,6788104c-c872-3539-869a-ed0f648f867f -2012,Mendoza,II.1.1,672.12096,TJ,CO2,74100.0,kg/TJ,49804163.136,Gas Oil combustion consumption by freight transport,AR-M,SESCO,annual,kg,5dd087c5-8a9e-3c11-ab9e-de8870fa6dc7 -2012,Mendoza,II.1.1,672.12096,TJ,CH4,3.9,kg/TJ,2621.2717439999997,Gas Oil combustion consumption by freight transport,AR-M,SESCO,annual,kg,19b03564-0455-36b7-99b7-66c45ed62745 -2012,Mendoza,II.1.1,672.12096,TJ,N2O,3.9,kg/TJ,2621.2717439999997,Gas Oil combustion consumption by freight transport,AR-M,SESCO,annual,kg,19b03564-0455-36b7-99b7-66c45ed62745 -2012,Misiones,II.1.1,145.81644,TJ,CO2,74100.0,kg/TJ,10804998.204,Gas Oil combustion consumption by freight transport,AR-N,SESCO,annual,kg,880b7c7a-98a1-3731-a954-d507886ab2c3 -2012,Misiones,II.1.1,145.81644,TJ,CH4,3.9,kg/TJ,568.684116,Gas Oil combustion consumption by freight transport,AR-N,SESCO,annual,kg,2cf81ce2-1c02-3bd0-8c19-4f462d269e0e -2012,Misiones,II.1.1,145.81644,TJ,N2O,3.9,kg/TJ,568.684116,Gas Oil combustion consumption by freight transport,AR-N,SESCO,annual,kg,2cf81ce2-1c02-3bd0-8c19-4f462d269e0e -2012,Neuquén,II.1.1,336.60228,TJ,CO2,74100.0,kg/TJ,24942228.948,Gas Oil combustion consumption by freight transport,AR-Q,SESCO,annual,kg,62aa44bb-ede1-32db-bf85-32d8ffa96890 -2012,Neuquén,II.1.1,336.60228,TJ,CH4,3.9,kg/TJ,1312.748892,Gas Oil combustion consumption by freight transport,AR-Q,SESCO,annual,kg,0c51c0c1-92f0-3aaa-9194-b52da6252af3 -2012,Neuquén,II.1.1,336.60228,TJ,N2O,3.9,kg/TJ,1312.748892,Gas Oil combustion consumption by freight transport,AR-Q,SESCO,annual,kg,0c51c0c1-92f0-3aaa-9194-b52da6252af3 -2012,Rio Negro,II.1.1,4.8400799999999995,TJ,CO2,74100.0,kg/TJ,358649.92799999996,Gas Oil combustion consumption by freight transport,AR-R,SESCO,annual,kg,3b1022c3-ea8d-32a3-a856-4395b6a75dba -2012,Rio Negro,II.1.1,4.8400799999999995,TJ,CH4,3.9,kg/TJ,18.876312,Gas Oil combustion consumption by freight transport,AR-R,SESCO,annual,kg,79fdd900-ca2e-31f2-8582-84e0396be498 -2012,Rio Negro,II.1.1,4.8400799999999995,TJ,N2O,3.9,kg/TJ,18.876312,Gas Oil combustion consumption by freight transport,AR-R,SESCO,annual,kg,79fdd900-ca2e-31f2-8582-84e0396be498 -2012,Salta,II.1.1,62.41536,TJ,CO2,74100.0,kg/TJ,4624978.176,Gas Oil combustion consumption by freight transport,AR-A,SESCO,annual,kg,0412c1b7-104d-308c-9ba6-d307001028df -2012,Salta,II.1.1,62.41536,TJ,CH4,3.9,kg/TJ,243.419904,Gas Oil combustion consumption by freight transport,AR-A,SESCO,annual,kg,966cc9ac-5b45-3c1d-a0a1-800d95e633c6 -2012,Salta,II.1.1,62.41536,TJ,N2O,3.9,kg/TJ,243.419904,Gas Oil combustion consumption by freight transport,AR-A,SESCO,annual,kg,966cc9ac-5b45-3c1d-a0a1-800d95e633c6 -2012,San Juan,II.1.1,81.19776,TJ,CO2,74100.0,kg/TJ,6016754.016,Gas Oil combustion consumption by freight transport,AR-J,SESCO,annual,kg,664e36f4-92a9-386a-9da3-2789a1e77fb4 -2012,San Juan,II.1.1,81.19776,TJ,CH4,3.9,kg/TJ,316.671264,Gas Oil combustion consumption by freight transport,AR-J,SESCO,annual,kg,0b2c6fe8-469b-37a8-97cb-9bd23857a5c7 -2012,San Juan,II.1.1,81.19776,TJ,N2O,3.9,kg/TJ,316.671264,Gas Oil combustion consumption by freight transport,AR-J,SESCO,annual,kg,0b2c6fe8-469b-37a8-97cb-9bd23857a5c7 -2012,San Luis,II.1.1,81.95627999999999,TJ,CO2,74100.0,kg/TJ,6072960.347999999,Gas Oil combustion consumption by freight transport,AR-D,SESCO,annual,kg,8880cc16-1e4c-349c-bf08-dd9b36acb5aa -2012,San Luis,II.1.1,81.95627999999999,TJ,CH4,3.9,kg/TJ,319.62949199999997,Gas Oil combustion consumption by freight transport,AR-D,SESCO,annual,kg,33b60c68-bc0c-3cff-ada3-e29c64a96305 -2012,San Luis,II.1.1,81.95627999999999,TJ,N2O,3.9,kg/TJ,319.62949199999997,Gas Oil combustion consumption by freight transport,AR-D,SESCO,annual,kg,33b60c68-bc0c-3cff-ada3-e29c64a96305 -2012,Santa Cruz,II.1.1,81.59508,TJ,CO2,74100.0,kg/TJ,6046195.427999999,Gas Oil combustion consumption by freight transport,AR-Z,SESCO,annual,kg,c1d44d07-2c20-3409-98eb-c95f08df59cb -2012,Santa Cruz,II.1.1,81.59508,TJ,CH4,3.9,kg/TJ,318.22081199999997,Gas Oil combustion consumption by freight transport,AR-Z,SESCO,annual,kg,1469295d-9b35-3c61-94d9-1fe4837b7bcf -2012,Santa Cruz,II.1.1,81.59508,TJ,N2O,3.9,kg/TJ,318.22081199999997,Gas Oil combustion consumption by freight transport,AR-Z,SESCO,annual,kg,1469295d-9b35-3c61-94d9-1fe4837b7bcf -2012,Santa Fe,II.1.1,555.8868,TJ,CO2,74100.0,kg/TJ,41191211.88,Gas Oil combustion consumption by freight transport,AR-S,SESCO,annual,kg,03aac554-ea7c-35e5-8eeb-ddfe8e07204f -2012,Santa Fe,II.1.1,555.8868,TJ,CH4,3.9,kg/TJ,2167.95852,Gas Oil combustion consumption by freight transport,AR-S,SESCO,annual,kg,427fc5e7-7e6c-35d8-b178-edc112eb2d18 -2012,Santa Fe,II.1.1,555.8868,TJ,N2O,3.9,kg/TJ,2167.95852,Gas Oil combustion consumption by freight transport,AR-S,SESCO,annual,kg,427fc5e7-7e6c-35d8-b178-edc112eb2d18 -2012,Santiago del Estero,II.1.1,42.6216,TJ,CO2,74100.0,kg/TJ,3158260.56,Gas Oil combustion consumption by freight transport,AR-G,SESCO,annual,kg,a15511ef-6877-3220-a680-b801df080d43 -2012,Santiago del Estero,II.1.1,42.6216,TJ,CH4,3.9,kg/TJ,166.22424,Gas Oil combustion consumption by freight transport,AR-G,SESCO,annual,kg,12777238-3044-381e-9cdb-7a8d5ccc8417 -2012,Santiago del Estero,II.1.1,42.6216,TJ,N2O,3.9,kg/TJ,166.22424,Gas Oil combustion consumption by freight transport,AR-G,SESCO,annual,kg,12777238-3044-381e-9cdb-7a8d5ccc8417 -2012,Tierra del Fuego,II.1.1,0.36119999999999997,TJ,CO2,74100.0,kg/TJ,26764.92,Gas Oil combustion consumption by freight transport,AR-V,SESCO,annual,kg,59a79577-2eff-3cdf-82bd-57955338ae90 -2012,Tierra del Fuego,II.1.1,0.36119999999999997,TJ,CH4,3.9,kg/TJ,1.40868,Gas Oil combustion consumption by freight transport,AR-V,SESCO,annual,kg,39723431-6851-3518-9b28-3af5203aba97 -2012,Tierra del Fuego,II.1.1,0.36119999999999997,TJ,N2O,3.9,kg/TJ,1.40868,Gas Oil combustion consumption by freight transport,AR-V,SESCO,annual,kg,39723431-6851-3518-9b28-3af5203aba97 -2012,Tucuman,II.1.1,98.0658,TJ,CO2,74100.0,kg/TJ,7266675.779999999,Gas Oil combustion consumption by freight transport,AR-T,SESCO,annual,kg,75fb2883-a7f3-3999-b61d-9c82beecd147 -2012,Tucuman,II.1.1,98.0658,TJ,CH4,3.9,kg/TJ,382.45662,Gas Oil combustion consumption by freight transport,AR-T,SESCO,annual,kg,4ae8189c-04cf-3ba7-ae2d-afe5317b2d30 -2012,Tucuman,II.1.1,98.0658,TJ,N2O,3.9,kg/TJ,382.45662,Gas Oil combustion consumption by freight transport,AR-T,SESCO,annual,kg,4ae8189c-04cf-3ba7-ae2d-afe5317b2d30 -2012,Buenos Aires,II.1.1,10.862005,TJ,CO2,73300.0,kg/TJ,796184.9665,Naphtha combustion consumption by freight transport,AR-B,SESCO,annual,kg,31644ec7-44c6-3155-9764-eb918fc70605 -2012,Buenos Aires,II.1.1,10.862005,TJ,CH4,0.5,kg/TJ,5.4310025,Naphtha combustion consumption by freight transport,AR-B,SESCO,annual,kg,01d7d92a-981d-3995-a542-59daf7d67c0e -2012,Buenos Aires,II.1.1,10.862005,TJ,N2O,2.0,kg/TJ,21.72401,Naphtha combustion consumption by freight transport,AR-B,SESCO,annual,kg,a290b2c6-c671-3e85-86bb-add7c4bd5811 -2012,Buenos Aires,II.1.1,10829.96796,TJ,CO2,74100.0,kg/TJ,802500625.836,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,a342ac72-511a-38b6-a677-3461f1ea64c3 -2012,Buenos Aires,II.1.1,10829.96796,TJ,CH4,3.9,kg/TJ,42236.875044,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,bfe337c4-45a2-364c-8747-86b5ce257ddb -2012,Buenos Aires,II.1.1,10829.96796,TJ,N2O,3.9,kg/TJ,42236.875044,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,bfe337c4-45a2-364c-8747-86b5ce257ddb -2012,Capital Federal,II.1.1,3347.6016,TJ,CO2,74100.0,kg/TJ,248057278.56,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,6ca058da-443e-3713-9f6b-c1997faddabf -2012,Capital Federal,II.1.1,3347.6016,TJ,CH4,3.9,kg/TJ,13055.64624,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,29c98ba9-a983-3073-9014-45fb1241930a -2012,Capital Federal,II.1.1,3347.6016,TJ,N2O,3.9,kg/TJ,13055.64624,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,29c98ba9-a983-3073-9014-45fb1241930a -2012,Catamarca,II.1.1,130.97111999999998,TJ,CO2,74100.0,kg/TJ,9704959.991999999,Gas Oil combustion consumption by public passenger transport,AR-K,SESCO,annual,kg,36f4f650-37f8-332b-90b2-42fe5982ebdd -2012,Catamarca,II.1.1,130.97111999999998,TJ,CH4,3.9,kg/TJ,510.7873679999999,Gas Oil combustion consumption by public passenger transport,AR-K,SESCO,annual,kg,16ecc409-c6b0-3285-b3f1-bc762e9a4758 -2012,Catamarca,II.1.1,130.97111999999998,TJ,N2O,3.9,kg/TJ,510.7873679999999,Gas Oil combustion consumption by public passenger transport,AR-K,SESCO,annual,kg,16ecc409-c6b0-3285-b3f1-bc762e9a4758 -2012,Chaco,II.1.1,481.15452,TJ,CO2,74100.0,kg/TJ,35653549.932,Gas Oil combustion consumption by public passenger transport,AR-H,SESCO,annual,kg,16b41e5b-f658-316e-b0cd-5e3cf7b89b64 -2012,Chaco,II.1.1,481.15452,TJ,CH4,3.9,kg/TJ,1876.502628,Gas Oil combustion consumption by public passenger transport,AR-H,SESCO,annual,kg,30a1d792-0ef8-3247-9f79-09bc46b8f9fc -2012,Chaco,II.1.1,481.15452,TJ,N2O,3.9,kg/TJ,1876.502628,Gas Oil combustion consumption by public passenger transport,AR-H,SESCO,annual,kg,30a1d792-0ef8-3247-9f79-09bc46b8f9fc -2012,Chubut,II.1.1,145.67195999999998,TJ,CO2,74100.0,kg/TJ,10794292.236,Gas Oil combustion consumption by public passenger transport,AR-U,SESCO,annual,kg,0e32ae73-7bc4-3461-91fd-d5147f987940 -2012,Chubut,II.1.1,145.67195999999998,TJ,CH4,3.9,kg/TJ,568.120644,Gas Oil combustion consumption by public passenger transport,AR-U,SESCO,annual,kg,e42ba659-eb2b-3eb7-80d1-6247e5c28d3b -2012,Chubut,II.1.1,145.67195999999998,TJ,N2O,3.9,kg/TJ,568.120644,Gas Oil combustion consumption by public passenger transport,AR-U,SESCO,annual,kg,e42ba659-eb2b-3eb7-80d1-6247e5c28d3b -2012,Corrientes,II.1.1,420.798,TJ,CO2,74100.0,kg/TJ,31181131.8,Gas Oil combustion consumption by public passenger transport,AR-W,SESCO,annual,kg,56f530e0-85c5-3d9c-84f8-c8183e5d620d -2012,Corrientes,II.1.1,420.798,TJ,CH4,3.9,kg/TJ,1641.1122,Gas Oil combustion consumption by public passenger transport,AR-W,SESCO,annual,kg,cc7cd5aa-e7d2-30ef-a38e-761628580047 -2012,Corrientes,II.1.1,420.798,TJ,N2O,3.9,kg/TJ,1641.1122,Gas Oil combustion consumption by public passenger transport,AR-W,SESCO,annual,kg,cc7cd5aa-e7d2-30ef-a38e-761628580047 -2012,Córdoba,II.1.1,2047.53444,TJ,CO2,74100.0,kg/TJ,151722302.00399998,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,7a3b169b-4426-3949-874a-1dc85e702dbf -2012,Córdoba,II.1.1,2047.53444,TJ,CH4,3.9,kg/TJ,7985.384316,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,a3252b4e-3bdc-3740-8956-bb948f1e343a -2012,Córdoba,II.1.1,2047.53444,TJ,N2O,3.9,kg/TJ,7985.384316,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,a3252b4e-3bdc-3740-8956-bb948f1e343a -2012,Entre Rios,II.1.1,438.42456,TJ,CO2,74100.0,kg/TJ,32487259.895999998,Gas Oil combustion consumption by public passenger transport,AR-E,SESCO,annual,kg,53679511-9894-3f11-aa66-7313df70a562 -2012,Entre Rios,II.1.1,438.42456,TJ,CH4,3.9,kg/TJ,1709.8557839999999,Gas Oil combustion consumption by public passenger transport,AR-E,SESCO,annual,kg,bf6a8012-0143-3291-a063-58f2c0555a43 -2012,Entre Rios,II.1.1,438.42456,TJ,N2O,3.9,kg/TJ,1709.8557839999999,Gas Oil combustion consumption by public passenger transport,AR-E,SESCO,annual,kg,bf6a8012-0143-3291-a063-58f2c0555a43 -2012,Formosa,II.1.1,115.80072,TJ,CO2,74100.0,kg/TJ,8580833.352,Gas Oil combustion consumption by public passenger transport,AR-P,SESCO,annual,kg,8cfe4aa5-b884-3ccc-a586-6c74d56154cd -2012,Formosa,II.1.1,115.80072,TJ,CH4,3.9,kg/TJ,451.62280799999996,Gas Oil combustion consumption by public passenger transport,AR-P,SESCO,annual,kg,fe0b9123-d84c-30a6-b1c3-851a976c797b -2012,Formosa,II.1.1,115.80072,TJ,N2O,3.9,kg/TJ,451.62280799999996,Gas Oil combustion consumption by public passenger transport,AR-P,SESCO,annual,kg,fe0b9123-d84c-30a6-b1c3-851a976c797b -2012,Jujuy,II.1.1,418.8114,TJ,CO2,74100.0,kg/TJ,31033924.74,Gas Oil combustion consumption by public passenger transport,AR-Y,SESCO,annual,kg,fb7bc855-5323-3c06-8ee8-5ca326341637 -2012,Jujuy,II.1.1,418.8114,TJ,CH4,3.9,kg/TJ,1633.36446,Gas Oil combustion consumption by public passenger transport,AR-Y,SESCO,annual,kg,b2135812-cd09-3c80-bd76-8a7c698032a6 -2012,Jujuy,II.1.1,418.8114,TJ,N2O,3.9,kg/TJ,1633.36446,Gas Oil combustion consumption by public passenger transport,AR-Y,SESCO,annual,kg,b2135812-cd09-3c80-bd76-8a7c698032a6 -2012,La Pampa,II.1.1,10.185839999999999,TJ,CO2,74100.0,kg/TJ,754770.744,Gas Oil combustion consumption by public passenger transport,AR-L,SESCO,annual,kg,70db5ef6-335f-37db-a292-37746d678e8f -2012,La Pampa,II.1.1,10.185839999999999,TJ,CH4,3.9,kg/TJ,39.72477599999999,Gas Oil combustion consumption by public passenger transport,AR-L,SESCO,annual,kg,f5faa8d2-9379-3f39-a262-9451eb06c25b -2012,La Pampa,II.1.1,10.185839999999999,TJ,N2O,3.9,kg/TJ,39.72477599999999,Gas Oil combustion consumption by public passenger transport,AR-L,SESCO,annual,kg,f5faa8d2-9379-3f39-a262-9451eb06c25b -2012,La Rioja,II.1.1,77.80248,TJ,CO2,74100.0,kg/TJ,5765163.768,Gas Oil combustion consumption by public passenger transport,AR-F,SESCO,annual,kg,7cb6b36b-1c2a-339b-9373-00cf222d9105 -2012,La Rioja,II.1.1,77.80248,TJ,CH4,3.9,kg/TJ,303.429672,Gas Oil combustion consumption by public passenger transport,AR-F,SESCO,annual,kg,7f82fb34-6964-36ee-84c2-a02b6acd81b9 -2012,La Rioja,II.1.1,77.80248,TJ,N2O,3.9,kg/TJ,303.429672,Gas Oil combustion consumption by public passenger transport,AR-F,SESCO,annual,kg,7f82fb34-6964-36ee-84c2-a02b6acd81b9 -2012,Mendoza,II.1.1,1664.7708,TJ,CO2,74100.0,kg/TJ,123359516.28,Gas Oil combustion consumption by public passenger transport,AR-M,SESCO,annual,kg,cc3c07b6-3911-3fba-9baa-93ce4e313462 -2012,Mendoza,II.1.1,1664.7708,TJ,CH4,3.9,kg/TJ,6492.6061199999995,Gas Oil combustion consumption by public passenger transport,AR-M,SESCO,annual,kg,60b2d07f-6a9d-3522-9757-f801049ee3d7 -2012,Mendoza,II.1.1,1664.7708,TJ,N2O,3.9,kg/TJ,6492.6061199999995,Gas Oil combustion consumption by public passenger transport,AR-M,SESCO,annual,kg,60b2d07f-6a9d-3522-9757-f801049ee3d7 -2012,Misiones,II.1.1,739.44864,TJ,CO2,74100.0,kg/TJ,54793144.224,Gas Oil combustion consumption by public passenger transport,AR-N,SESCO,annual,kg,b64d75d8-fad5-3c36-bde8-9116a497fc77 -2012,Misiones,II.1.1,739.44864,TJ,CH4,3.9,kg/TJ,2883.8496959999998,Gas Oil combustion consumption by public passenger transport,AR-N,SESCO,annual,kg,cf42b492-15bf-3c23-a1ec-d95d26bff3f9 -2012,Misiones,II.1.1,739.44864,TJ,N2O,3.9,kg/TJ,2883.8496959999998,Gas Oil combustion consumption by public passenger transport,AR-N,SESCO,annual,kg,cf42b492-15bf-3c23-a1ec-d95d26bff3f9 -2012,Neuquén,II.1.1,240.45084,TJ,CO2,74100.0,kg/TJ,17817407.244,Gas Oil combustion consumption by public passenger transport,AR-Q,SESCO,annual,kg,af90b41d-5122-3317-8d00-8c7a788137ce -2012,Neuquén,II.1.1,240.45084,TJ,CH4,3.9,kg/TJ,937.758276,Gas Oil combustion consumption by public passenger transport,AR-Q,SESCO,annual,kg,0b2f840f-76e3-3e59-898d-fdedbc84ef67 -2012,Neuquén,II.1.1,240.45084,TJ,N2O,3.9,kg/TJ,937.758276,Gas Oil combustion consumption by public passenger transport,AR-Q,SESCO,annual,kg,0b2f840f-76e3-3e59-898d-fdedbc84ef67 -2012,Rio Negro,II.1.1,305.90028,TJ,CO2,74100.0,kg/TJ,22667210.748,Gas Oil combustion consumption by public passenger transport,AR-R,SESCO,annual,kg,7e79036b-c539-3682-a2bb-cd580ea560ad -2012,Rio Negro,II.1.1,305.90028,TJ,CH4,3.9,kg/TJ,1193.011092,Gas Oil combustion consumption by public passenger transport,AR-R,SESCO,annual,kg,c91b9dca-e623-3ca6-ace2-8e66e1cffad1 -2012,Rio Negro,II.1.1,305.90028,TJ,N2O,3.9,kg/TJ,1193.011092,Gas Oil combustion consumption by public passenger transport,AR-R,SESCO,annual,kg,c91b9dca-e623-3ca6-ace2-8e66e1cffad1 -2012,Salta,II.1.1,918.0259199999999,TJ,CO2,74100.0,kg/TJ,68025720.67199999,Gas Oil combustion consumption by public passenger transport,AR-A,SESCO,annual,kg,90f375f2-675c-3eb5-8911-b94d2e436e28 -2012,Salta,II.1.1,918.0259199999999,TJ,CH4,3.9,kg/TJ,3580.3010879999997,Gas Oil combustion consumption by public passenger transport,AR-A,SESCO,annual,kg,4ab30d5a-aa21-3aaf-8514-e9a03cb942c7 -2012,Salta,II.1.1,918.0259199999999,TJ,N2O,3.9,kg/TJ,3580.3010879999997,Gas Oil combustion consumption by public passenger transport,AR-A,SESCO,annual,kg,4ab30d5a-aa21-3aaf-8514-e9a03cb942c7 -2012,San Juan,II.1.1,492.31559999999996,TJ,CO2,74100.0,kg/TJ,36480585.95999999,Gas Oil combustion consumption by public passenger transport,AR-J,SESCO,annual,kg,0f7a7f61-9f5e-39ee-9b4c-8590b37316a2 -2012,San Juan,II.1.1,492.31559999999996,TJ,CH4,3.9,kg/TJ,1920.03084,Gas Oil combustion consumption by public passenger transport,AR-J,SESCO,annual,kg,49c68530-910e-37bb-bdc7-4cd1ea6d0b60 -2012,San Juan,II.1.1,492.31559999999996,TJ,N2O,3.9,kg/TJ,1920.03084,Gas Oil combustion consumption by public passenger transport,AR-J,SESCO,annual,kg,49c68530-910e-37bb-bdc7-4cd1ea6d0b60 -2012,San Luis,II.1.1,68.05008,TJ,CO2,74100.0,kg/TJ,5042510.927999999,Gas Oil combustion consumption by public passenger transport,AR-D,SESCO,annual,kg,f843bb91-150c-3858-8561-7a66e41e19b3 -2012,San Luis,II.1.1,68.05008,TJ,CH4,3.9,kg/TJ,265.395312,Gas Oil combustion consumption by public passenger transport,AR-D,SESCO,annual,kg,92cc1646-be9b-33cb-9fab-f260ac8d3c06 -2012,San Luis,II.1.1,68.05008,TJ,N2O,3.9,kg/TJ,265.395312,Gas Oil combustion consumption by public passenger transport,AR-D,SESCO,annual,kg,92cc1646-be9b-33cb-9fab-f260ac8d3c06 -2012,Santa Cruz,II.1.1,45.22224,TJ,CO2,74100.0,kg/TJ,3350967.984,Gas Oil combustion consumption by public passenger transport,AR-Z,SESCO,annual,kg,dd67629c-03e1-3d4d-bc40-6f65493d117c -2012,Santa Cruz,II.1.1,45.22224,TJ,CH4,3.9,kg/TJ,176.366736,Gas Oil combustion consumption by public passenger transport,AR-Z,SESCO,annual,kg,4a3578be-cade-3574-ae22-4f0eb55f595a -2012,Santa Cruz,II.1.1,45.22224,TJ,N2O,3.9,kg/TJ,176.366736,Gas Oil combustion consumption by public passenger transport,AR-Z,SESCO,annual,kg,4a3578be-cade-3574-ae22-4f0eb55f595a -2012,Santa Fe,II.1.1,1295.51604,TJ,CO2,74100.0,kg/TJ,95997738.564,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,3bfff277-ff68-3134-9c0d-c61070c052a6 -2012,Santa Fe,II.1.1,1295.51604,TJ,CH4,3.9,kg/TJ,5052.512556,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,10a8475f-3e76-3137-ae33-b2c3528b25f4 -2012,Santa Fe,II.1.1,1295.51604,TJ,N2O,3.9,kg/TJ,5052.512556,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,10a8475f-3e76-3137-ae33-b2c3528b25f4 -2012,Santiago del Estero,II.1.1,302.1438,TJ,CO2,74100.0,kg/TJ,22388855.58,Gas Oil combustion consumption by public passenger transport,AR-G,SESCO,annual,kg,a5ac3881-d231-3323-bff8-0825b00ec1a0 -2012,Santiago del Estero,II.1.1,302.1438,TJ,CH4,3.9,kg/TJ,1178.3608199999999,Gas Oil combustion consumption by public passenger transport,AR-G,SESCO,annual,kg,0d1d79ae-78c6-3612-b588-93cc6d6a6336 -2012,Santiago del Estero,II.1.1,302.1438,TJ,N2O,3.9,kg/TJ,1178.3608199999999,Gas Oil combustion consumption by public passenger transport,AR-G,SESCO,annual,kg,0d1d79ae-78c6-3612-b588-93cc6d6a6336 -2012,Tierra del Fuego,II.1.1,10.61928,TJ,CO2,74100.0,kg/TJ,786888.648,Gas Oil combustion consumption by public passenger transport,AR-V,SESCO,annual,kg,4bd578b8-627e-36c1-9400-b72d6cd6266a -2012,Tierra del Fuego,II.1.1,10.61928,TJ,CH4,3.9,kg/TJ,41.415192,Gas Oil combustion consumption by public passenger transport,AR-V,SESCO,annual,kg,03f4dd79-3983-32cd-8743-d1398d465e50 -2012,Tierra del Fuego,II.1.1,10.61928,TJ,N2O,3.9,kg/TJ,41.415192,Gas Oil combustion consumption by public passenger transport,AR-V,SESCO,annual,kg,03f4dd79-3983-32cd-8743-d1398d465e50 -2012,Tucuman,II.1.1,1101.1543199999999,TJ,CO2,74100.0,kg/TJ,81595535.11199999,Gas Oil combustion consumption by public passenger transport,AR-T,SESCO,annual,kg,adbb2021-563a-363e-aa7e-e1127fbe303f -2012,Tucuman,II.1.1,1101.1543199999999,TJ,CH4,3.9,kg/TJ,4294.501847999999,Gas Oil combustion consumption by public passenger transport,AR-T,SESCO,annual,kg,a3427255-5adc-3b6c-bd3c-bf2500963949 -2012,Tucuman,II.1.1,1101.1543199999999,TJ,N2O,3.9,kg/TJ,4294.501847999999,Gas Oil combustion consumption by public passenger transport,AR-T,SESCO,annual,kg,a3427255-5adc-3b6c-bd3c-bf2500963949 -2013,La Pampa,II.5.1,0.75852,TJ,CO2,74100.0,kg/TJ,56206.331999999995,Diesel Oil combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,441d64c0-2860-3c99-a0fe-6f83e91c3ce3 -2013,La Pampa,II.5.1,0.75852,TJ,CH4,5.0,kg/TJ,3.7925999999999997,Diesel Oil combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,dc4b73da-ee91-32fe-b121-b23dbb5d8c09 -2013,La Pampa,II.5.1,0.75852,TJ,N2O,0.6,kg/TJ,0.45511199999999996,Diesel Oil combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,4a1a1331-086a-3253-ae9b-3ddcc6fc1ec6 -2013,Buenos Aires,II.5.1,212.65035959999997,TJ,CO2,74100.0,kg/TJ,15757391.646359999,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,58433107-68bb-3568-b1d1-e74f159dc514 -2013,Buenos Aires,II.5.1,212.65035959999997,TJ,CH4,3.9,kg/TJ,829.3364024399999,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,05cf5343-fff2-33a6-9994-fcd3e241c44f -2013,Buenos Aires,II.5.1,212.65035959999997,TJ,N2O,3.9,kg/TJ,829.3364024399999,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,05cf5343-fff2-33a6-9994-fcd3e241c44f -2013,Chaco,II.5.1,15.350999999999999,TJ,CO2,74100.0,kg/TJ,1137509.0999999999,Gas Oil combustion consumption by agriculture machines,AR-H,SESCO,annual,kg,b6ac0a7b-eb2b-37dc-9b91-9ace9e42dcc9 -2013,Chaco,II.5.1,15.350999999999999,TJ,CH4,3.9,kg/TJ,59.8689,Gas Oil combustion consumption by agriculture machines,AR-H,SESCO,annual,kg,e970af7c-66f2-385f-9ea0-e9dc22dac0cb -2013,Chaco,II.5.1,15.350999999999999,TJ,N2O,3.9,kg/TJ,59.8689,Gas Oil combustion consumption by agriculture machines,AR-H,SESCO,annual,kg,e970af7c-66f2-385f-9ea0-e9dc22dac0cb -2013,Córdoba,II.5.1,28.997135999999998,TJ,CO2,74100.0,kg/TJ,2148687.7775999997,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,89dbb157-65d4-377a-8a09-79b243e8f926 -2013,Córdoba,II.5.1,28.997135999999998,TJ,CH4,3.9,kg/TJ,113.08883039999999,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,4b446a58-fba1-3fdb-9044-10f11f9d902a -2013,Córdoba,II.5.1,28.997135999999998,TJ,N2O,3.9,kg/TJ,113.08883039999999,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,4b446a58-fba1-3fdb-9044-10f11f9d902a -2013,La Pampa,II.5.1,5.02068,TJ,CO2,74100.0,kg/TJ,372032.388,Gas Oil combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,8200891e-5a69-346b-abb1-ffb3e85ae504 -2013,La Pampa,II.5.1,5.02068,TJ,CH4,3.9,kg/TJ,19.580651999999997,Gas Oil combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,8924b912-60e1-3ea8-b190-4d4586f81a6d -2013,La Pampa,II.5.1,5.02068,TJ,N2O,3.9,kg/TJ,19.580651999999997,Gas Oil combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,8924b912-60e1-3ea8-b190-4d4586f81a6d -2013,Santa Fe,II.5.1,369.1706004,TJ,CO2,74100.0,kg/TJ,27355541.48964,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,249e3848-c14b-3369-85f7-a97a0f0f601f -2013,Santa Fe,II.5.1,369.1706004,TJ,CH4,3.9,kg/TJ,1439.76534156,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,677dc339-3048-3733-8b22-5074227adb80 -2013,Santa Fe,II.5.1,369.1706004,TJ,N2O,3.9,kg/TJ,1439.76534156,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,677dc339-3048-3733-8b22-5074227adb80 -2013,Buenos Aires,II.5.1,0.5771976,TJ,CO2,74100.0,kg/TJ,42770.34216,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,bc051f33-29bc-39f6-beba-1934f6f3dd1b -2013,Buenos Aires,II.5.1,0.5771976,TJ,CH4,3.9,kg/TJ,2.25107064,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,402a14f6-97c9-3e85-95fe-50a0046c4c0e -2013,Buenos Aires,II.5.1,0.5771976,TJ,N2O,3.9,kg/TJ,2.25107064,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,402a14f6-97c9-3e85-95fe-50a0046c4c0e -2013,Santa Fe,II.5.1,6.7725,TJ,CO2,74100.0,kg/TJ,501842.25,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,ec64d929-a1d5-36ca-9f09-ca5d8468fef2 -2013,Santa Fe,II.5.1,6.7725,TJ,CH4,3.9,kg/TJ,26.41275,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,273108b4-6030-3e58-a930-d6ad53f3f93e -2013,Santa Fe,II.5.1,6.7725,TJ,N2O,3.9,kg/TJ,26.41275,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,273108b4-6030-3e58-a930-d6ad53f3f93e -2013,Buenos Aires,II.5.1,5.154141300000001,TJ,CO2,73300.0,kg/TJ,377798.5572900001,Naphtha combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,d46f498c-21dc-3506-a26f-972d1415938b -2013,Buenos Aires,II.5.1,5.154141300000001,TJ,CH4,0.5,kg/TJ,2.5770706500000005,Naphtha combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,b93815a5-426f-37d8-b820-3de1b57771d1 -2013,Buenos Aires,II.5.1,5.154141300000001,TJ,N2O,2.0,kg/TJ,10.308282600000002,Naphtha combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,02308e95-9de0-3534-9136-4f4eb5e49b0a -2013,Córdoba,II.5.1,5.729107999999999,TJ,CO2,73300.0,kg/TJ,419943.61639999994,Naphtha combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,236748fa-ee7d-3a8b-993f-05b8162e19aa -2013,Córdoba,II.5.1,5.729107999999999,TJ,CH4,0.5,kg/TJ,2.8645539999999996,Naphtha combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,be6f53de-553d-3085-b916-5e6ece373d9e -2013,Córdoba,II.5.1,5.729107999999999,TJ,N2O,2.0,kg/TJ,11.458215999999998,Naphtha combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,161a95ed-6906-3e73-a3e6-63fbc1f7fbe7 -2013,Santa Fe,II.5.1,17.564239,TJ,CO2,73300.0,kg/TJ,1287458.7187,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,9e6ab790-dc51-3087-8754-983c6003bc93 -2013,Santa Fe,II.5.1,17.564239,TJ,CH4,0.5,kg/TJ,8.7821195,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,cf54e2c0-833b-343b-bfa6-500fa1a9c7b6 -2013,Santa Fe,II.5.1,17.564239,TJ,N2O,2.0,kg/TJ,35.128478,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,4085891e-4f00-3342-9bb8-c005d7dd117a -2013,Buenos Aires,II.5.1,0.23985499999999998,TJ,CO2,73300.0,kg/TJ,17581.371499999997,Naphtha combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,739d99b5-0cb0-3a7c-b438-5b1051bcc50d -2013,Buenos Aires,II.5.1,0.23985499999999998,TJ,CH4,0.5,kg/TJ,0.11992749999999999,Naphtha combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,5de28142-9c58-3c05-a6f0-0f617f6bc21b -2013,Buenos Aires,II.5.1,0.23985499999999998,TJ,N2O,2.0,kg/TJ,0.47970999999999997,Naphtha combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,b3db598f-8cc0-3f74-846b-835dfc246f3a -2013,Capital Federal,II.5.1,0.02912525,TJ,CO2,73300.0,kg/TJ,2134.8808249999997,Naphtha combustion consumption by agriculture machines,AR-C,SESCO,annual,kg,8022199d-a78b-3a28-b3da-7f159eb98b67 -2013,Capital Federal,II.5.1,0.02912525,TJ,CH4,0.5,kg/TJ,0.014562625,Naphtha combustion consumption by agriculture machines,AR-C,SESCO,annual,kg,e9bb0b6d-f85d-39fa-9875-b22cd981130d -2013,Capital Federal,II.5.1,0.02912525,TJ,N2O,2.0,kg/TJ,0.0582505,Naphtha combustion consumption by agriculture machines,AR-C,SESCO,annual,kg,d3845fea-a86c-32f5-b7eb-038f678c30c1 -2013,Córdoba,II.5.1,2.967349,TJ,CO2,73300.0,kg/TJ,217506.68170000002,Naphtha combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,3bc9fff5-8644-322c-802d-a22a727df19b -2013,Córdoba,II.5.1,2.967349,TJ,CH4,0.5,kg/TJ,1.4836745,Naphtha combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,2323af8d-329e-3aa5-b2d2-6d674a264742 -2013,Córdoba,II.5.1,2.967349,TJ,N2O,2.0,kg/TJ,5.934698,Naphtha combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,340f6b8c-dcc4-397d-ab01-29cd381671a5 -2013,Santa Fe,II.5.1,1.3054964999999998,TJ,CO2,73300.0,kg/TJ,95692.89344999999,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,3afbb743-106b-34b9-ae64-1edecdcd87c1 -2013,Santa Fe,II.5.1,1.3054964999999998,TJ,CH4,0.5,kg/TJ,0.6527482499999999,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,f480669d-6b9d-33e0-9bff-e0d803ecf656 -2013,Santa Fe,II.5.1,1.3054964999999998,TJ,N2O,2.0,kg/TJ,2.6109929999999997,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,f0c9596e-60ea-3c65-9126-41a582dcdd97 -2013,Buenos Aires,II.2.1,27.12612,TJ,CO2,74100.0,kg/TJ,2010045.492,Gas Oil combustion consumption by railway transport,AR-B,SESCO,annual,kg,ce00d195-0c03-35a6-b6b0-63754acfd661 -2013,Buenos Aires,II.2.1,27.12612,TJ,CH4,3.9,kg/TJ,105.791868,Gas Oil combustion consumption by railway transport,AR-B,SESCO,annual,kg,e5e79b07-7136-3739-bb86-7e9bf9eb047d -2013,Buenos Aires,II.2.1,27.12612,TJ,N2O,3.9,kg/TJ,105.791868,Gas Oil combustion consumption by railway transport,AR-B,SESCO,annual,kg,e5e79b07-7136-3739-bb86-7e9bf9eb047d -2013,Capital Federal,II.2.1,0.75852,TJ,CO2,74100.0,kg/TJ,56206.331999999995,Gas Oil combustion consumption by railway transport,AR-C,SESCO,annual,kg,06087d13-9db0-342f-b420-c2eb377c4e63 -2013,Capital Federal,II.2.1,0.75852,TJ,CH4,3.9,kg/TJ,2.9582279999999996,Gas Oil combustion consumption by railway transport,AR-C,SESCO,annual,kg,30883a31-1d68-3863-9f27-ee145973d778 -2013,Capital Federal,II.2.1,0.75852,TJ,N2O,3.9,kg/TJ,2.9582279999999996,Gas Oil combustion consumption by railway transport,AR-C,SESCO,annual,kg,30883a31-1d68-3863-9f27-ee145973d778 -2013,Córdoba,II.2.1,1.072764,TJ,CO2,74100.0,kg/TJ,79491.81240000001,Gas Oil combustion consumption by railway transport,AR-X,SESCO,annual,kg,ea6a50a3-794e-31cb-a522-c911809f08d6 -2013,Córdoba,II.2.1,1.072764,TJ,CH4,3.9,kg/TJ,4.1837796,Gas Oil combustion consumption by railway transport,AR-X,SESCO,annual,kg,6ea9f494-a802-3a59-8d5b-00769a555ea9 -2013,Córdoba,II.2.1,1.072764,TJ,N2O,3.9,kg/TJ,4.1837796,Gas Oil combustion consumption by railway transport,AR-X,SESCO,annual,kg,6ea9f494-a802-3a59-8d5b-00769a555ea9 -2013,Buenos Aires,II.1.1,1617.4546835999997,TJ,CO2,74100.0,kg/TJ,119853392.05475998,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,79c6e7f9-ef9c-3dbe-a6af-4d816dbcfad0 -2013,Buenos Aires,II.1.1,1617.4546835999997,TJ,CH4,3.9,kg/TJ,6308.073266039999,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,6055e75c-c5c3-3134-98ad-77aeb1746450 -2013,Buenos Aires,II.1.1,1617.4546835999997,TJ,N2O,3.9,kg/TJ,6308.073266039999,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,6055e75c-c5c3-3134-98ad-77aeb1746450 -2013,Capital Federal,II.1.1,734.4619127999999,TJ,CO2,74100.0,kg/TJ,54423627.738479994,Gas Oil combustion consumption by freight transport,AR-C,SESCO,annual,kg,d9435cb1-8f12-3a37-b871-3248208382e8 -2013,Capital Federal,II.1.1,734.4619127999999,TJ,CH4,3.9,kg/TJ,2864.4014599199995,Gas Oil combustion consumption by freight transport,AR-C,SESCO,annual,kg,0ced35e3-cfe2-3ce2-b64e-b50b2f9b6cd4 -2013,Capital Federal,II.1.1,734.4619127999999,TJ,N2O,3.9,kg/TJ,2864.4014599199995,Gas Oil combustion consumption by freight transport,AR-C,SESCO,annual,kg,0ced35e3-cfe2-3ce2-b64e-b50b2f9b6cd4 -2013,Chaco,II.1.1,111.525672384,TJ,CO2,74100.0,kg/TJ,8264052.3236544,Gas Oil combustion consumption by freight transport,AR-H,SESCO,annual,kg,811527fa-705b-3e46-b4d1-aab4240b245a -2013,Chaco,II.1.1,111.525672384,TJ,CH4,3.9,kg/TJ,434.9501222976,Gas Oil combustion consumption by freight transport,AR-H,SESCO,annual,kg,a5816ffd-0796-376e-b8b1-ba759ec7bba5 -2013,Chaco,II.1.1,111.525672384,TJ,N2O,3.9,kg/TJ,434.9501222976,Gas Oil combustion consumption by freight transport,AR-H,SESCO,annual,kg,a5816ffd-0796-376e-b8b1-ba759ec7bba5 -2013,Chubut,II.1.1,2.8752495239999996,TJ,CO2,74100.0,kg/TJ,213055.98972839996,Gas Oil combustion consumption by freight transport,AR-U,SESCO,annual,kg,78477da4-5d14-378e-b396-9815ea546479 -2013,Chubut,II.1.1,2.8752495239999996,TJ,CH4,3.9,kg/TJ,11.213473143599998,Gas Oil combustion consumption by freight transport,AR-U,SESCO,annual,kg,6e7a9519-b1c1-3cef-8742-700d084bc3c5 -2013,Chubut,II.1.1,2.8752495239999996,TJ,N2O,3.9,kg/TJ,11.213473143599998,Gas Oil combustion consumption by freight transport,AR-U,SESCO,annual,kg,6e7a9519-b1c1-3cef-8742-700d084bc3c5 -2013,Corrientes,II.1.1,139.498470468,TJ,CO2,74100.0,kg/TJ,10336836.6616788,Gas Oil combustion consumption by freight transport,AR-W,SESCO,annual,kg,24c8891b-dbef-351d-92e4-c4cbad9dff64 -2013,Corrientes,II.1.1,139.498470468,TJ,CH4,3.9,kg/TJ,544.0440348252,Gas Oil combustion consumption by freight transport,AR-W,SESCO,annual,kg,94cbe06a-bbea-3b10-bcbf-978e2027754c -2013,Corrientes,II.1.1,139.498470468,TJ,N2O,3.9,kg/TJ,544.0440348252,Gas Oil combustion consumption by freight transport,AR-W,SESCO,annual,kg,94cbe06a-bbea-3b10-bcbf-978e2027754c -2013,Córdoba,II.1.1,223.13758849199996,TJ,CO2,74100.0,kg/TJ,16534495.307257198,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,6f13514a-96e1-3212-9467-5590ae0b80cd -2013,Córdoba,II.1.1,223.13758849199996,TJ,CH4,3.9,kg/TJ,870.2365951187999,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,24811004-b3d4-3ce0-ab66-4d1255684adf -2013,Córdoba,II.1.1,223.13758849199996,TJ,N2O,3.9,kg/TJ,870.2365951187999,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,24811004-b3d4-3ce0-ab66-4d1255684adf -2013,Entre Rios,II.1.1,61.537123871999995,TJ,CO2,74100.0,kg/TJ,4559900.8789152,Gas Oil combustion consumption by freight transport,AR-E,SESCO,annual,kg,23b39f9f-f89d-3d75-aa1a-a0b011bd45a8 -2013,Entre Rios,II.1.1,61.537123871999995,TJ,CH4,3.9,kg/TJ,239.99478310079996,Gas Oil combustion consumption by freight transport,AR-E,SESCO,annual,kg,2f4c948a-3539-33de-b66b-2ae895d37140 -2013,Entre Rios,II.1.1,61.537123871999995,TJ,N2O,3.9,kg/TJ,239.99478310079996,Gas Oil combustion consumption by freight transport,AR-E,SESCO,annual,kg,2f4c948a-3539-33de-b66b-2ae895d37140 -2013,La Pampa,II.1.1,8.211932567999998,TJ,CO2,74100.0,kg/TJ,608504.2032887999,Gas Oil combustion consumption by freight transport,AR-L,SESCO,annual,kg,4e8f3b43-e25c-34d7-91fc-ec95a3d67554 -2013,La Pampa,II.1.1,8.211932567999998,TJ,CH4,3.9,kg/TJ,32.02653701519999,Gas Oil combustion consumption by freight transport,AR-L,SESCO,annual,kg,81e0cba8-8e30-32c7-b86c-87706bc89b5c -2013,La Pampa,II.1.1,8.211932567999998,TJ,N2O,3.9,kg/TJ,32.02653701519999,Gas Oil combustion consumption by freight transport,AR-L,SESCO,annual,kg,81e0cba8-8e30-32c7-b86c-87706bc89b5c -2013,Mendoza,II.1.1,59.668238951999996,TJ,CO2,74100.0,kg/TJ,4421416.5063432,Gas Oil combustion consumption by freight transport,AR-M,SESCO,annual,kg,00229041-212d-3226-994b-4637cc53c6cb -2013,Mendoza,II.1.1,59.668238951999996,TJ,CH4,3.9,kg/TJ,232.70613191279998,Gas Oil combustion consumption by freight transport,AR-M,SESCO,annual,kg,705eac14-7ecf-39b8-8ed2-de0a11b392dd -2013,Mendoza,II.1.1,59.668238951999996,TJ,N2O,3.9,kg/TJ,232.70613191279998,Gas Oil combustion consumption by freight transport,AR-M,SESCO,annual,kg,705eac14-7ecf-39b8-8ed2-de0a11b392dd -2013,Misiones,II.1.1,42.809875500000004,TJ,CO2,74100.0,kg/TJ,3172211.77455,Gas Oil combustion consumption by freight transport,AR-N,SESCO,annual,kg,5e13c4a6-2814-3b92-abf4-c89bc3b8e8a8 -2013,Misiones,II.1.1,42.809875500000004,TJ,CH4,3.9,kg/TJ,166.95851445000002,Gas Oil combustion consumption by freight transport,AR-N,SESCO,annual,kg,067a95cc-de58-36e8-b78a-808569f3bf61 -2013,Misiones,II.1.1,42.809875500000004,TJ,N2O,3.9,kg/TJ,166.95851445000002,Gas Oil combustion consumption by freight transport,AR-N,SESCO,annual,kg,067a95cc-de58-36e8-b78a-808569f3bf61 -2013,Rio Negro,II.1.1,0.025283999999999997,TJ,CO2,74100.0,kg/TJ,1873.5443999999998,Gas Oil combustion consumption by freight transport,AR-R,SESCO,annual,kg,c1af3bf5-dc76-3da0-92a7-58d9d45c9382 -2013,Rio Negro,II.1.1,0.025283999999999997,TJ,CH4,3.9,kg/TJ,0.09860759999999999,Gas Oil combustion consumption by freight transport,AR-R,SESCO,annual,kg,d142ea21-3ccb-3a59-89e1-66b1d123a85a -2013,Rio Negro,II.1.1,0.025283999999999997,TJ,N2O,3.9,kg/TJ,0.09860759999999999,Gas Oil combustion consumption by freight transport,AR-R,SESCO,annual,kg,d142ea21-3ccb-3a59-89e1-66b1d123a85a -2013,Salta,II.1.1,1.0175004,TJ,CO2,74100.0,kg/TJ,75396.77964000001,Gas Oil combustion consumption by freight transport,AR-A,SESCO,annual,kg,fa296bdd-5723-331a-85b0-adffba62fe1c -2013,Salta,II.1.1,1.0175004,TJ,CH4,3.9,kg/TJ,3.96825156,Gas Oil combustion consumption by freight transport,AR-A,SESCO,annual,kg,e972f54f-c096-3c3a-8078-d2e5f47cdf53 -2013,Salta,II.1.1,1.0175004,TJ,N2O,3.9,kg/TJ,3.96825156,Gas Oil combustion consumption by freight transport,AR-A,SESCO,annual,kg,e972f54f-c096-3c3a-8078-d2e5f47cdf53 -2013,San Juan,II.1.1,3.0208203479999995,TJ,CO2,74100.0,kg/TJ,223842.78778679998,Gas Oil combustion consumption by freight transport,AR-J,SESCO,annual,kg,a454299f-b6f1-32cd-94dc-cc69e335c1ae -2013,San Juan,II.1.1,3.0208203479999995,TJ,CH4,3.9,kg/TJ,11.781199357199998,Gas Oil combustion consumption by freight transport,AR-J,SESCO,annual,kg,bc497df9-c31a-3814-8274-820510f0c46c -2013,San Juan,II.1.1,3.0208203479999995,TJ,N2O,3.9,kg/TJ,11.781199357199998,Gas Oil combustion consumption by freight transport,AR-J,SESCO,annual,kg,bc497df9-c31a-3814-8274-820510f0c46c -2013,San Luis,II.1.1,56.784613199999995,TJ,CO2,74100.0,kg/TJ,4207739.8381199995,Gas Oil combustion consumption by freight transport,AR-D,SESCO,annual,kg,e3bbada2-aa0f-32ea-b69e-315663f464d2 -2013,San Luis,II.1.1,56.784613199999995,TJ,CH4,3.9,kg/TJ,221.45999147999999,Gas Oil combustion consumption by freight transport,AR-D,SESCO,annual,kg,810ce514-9ba6-3ceb-9887-91b87aa40251 -2013,San Luis,II.1.1,56.784613199999995,TJ,N2O,3.9,kg/TJ,221.45999147999999,Gas Oil combustion consumption by freight transport,AR-D,SESCO,annual,kg,810ce514-9ba6-3ceb-9887-91b87aa40251 -2013,Santa Fe,II.1.1,417.39807135599995,TJ,CO2,74100.0,kg/TJ,30929197.087479595,Gas Oil combustion consumption by freight transport,AR-S,SESCO,annual,kg,f7cf9bdc-db96-3557-a7e7-76174a691de5 -2013,Santa Fe,II.1.1,417.39807135599995,TJ,CH4,3.9,kg/TJ,1627.8524782883997,Gas Oil combustion consumption by freight transport,AR-S,SESCO,annual,kg,032c0863-dc94-3ef1-87e0-7db8729c2af6 -2013,Santa Fe,II.1.1,417.39807135599995,TJ,N2O,3.9,kg/TJ,1627.8524782883997,Gas Oil combustion consumption by freight transport,AR-S,SESCO,annual,kg,032c0863-dc94-3ef1-87e0-7db8729c2af6 -2013,Santiago del Estero,II.1.1,2.7060273239999995,TJ,CO2,74100.0,kg/TJ,200516.62470839996,Gas Oil combustion consumption by freight transport,AR-G,SESCO,annual,kg,2c2ca660-03bd-35ee-8b43-4a238cdfb8a5 -2013,Santiago del Estero,II.1.1,2.7060273239999995,TJ,CH4,3.9,kg/TJ,10.553506563599997,Gas Oil combustion consumption by freight transport,AR-G,SESCO,annual,kg,69c10dd0-82bc-380f-abeb-f6f6855ef457 -2013,Santiago del Estero,II.1.1,2.7060273239999995,TJ,N2O,3.9,kg/TJ,10.553506563599997,Gas Oil combustion consumption by freight transport,AR-G,SESCO,annual,kg,69c10dd0-82bc-380f-abeb-f6f6855ef457 -2013,Tierra del Fuego,II.1.1,13.586812512,TJ,CO2,74100.0,kg/TJ,1006782.8071392,Gas Oil combustion consumption by freight transport,AR-V,SESCO,annual,kg,407fc896-4b29-33f4-bf8a-1806d92d9422 -2013,Tierra del Fuego,II.1.1,13.586812512,TJ,CH4,3.9,kg/TJ,52.988568796799996,Gas Oil combustion consumption by freight transport,AR-V,SESCO,annual,kg,23656fbd-24c1-3217-ba7c-41418ff3d6e9 -2013,Tierra del Fuego,II.1.1,13.586812512,TJ,N2O,3.9,kg/TJ,52.988568796799996,Gas Oil combustion consumption by freight transport,AR-V,SESCO,annual,kg,23656fbd-24c1-3217-ba7c-41418ff3d6e9 -2013,Tucuman,II.1.1,68.819522688,TJ,CO2,74100.0,kg/TJ,5099526.6311808005,Gas Oil combustion consumption by freight transport,AR-T,SESCO,annual,kg,34a445c7-2097-34fd-8fab-00fdbd9adc9e -2013,Tucuman,II.1.1,68.819522688,TJ,CH4,3.9,kg/TJ,268.3961384832,Gas Oil combustion consumption by freight transport,AR-T,SESCO,annual,kg,97427e90-8948-3dca-bf46-8e031ec992fc -2013,Tucuman,II.1.1,68.819522688,TJ,N2O,3.9,kg/TJ,268.3961384832,Gas Oil combustion consumption by freight transport,AR-T,SESCO,annual,kg,97427e90-8948-3dca-bf46-8e031ec992fc -2013,Buenos Aires,II.1.1,30.625425599999996,TJ,CO2,74100.0,kg/TJ,2269344.0369599997,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,bb828320-8e33-34c2-92be-b4f237d0a4a4 -2013,Buenos Aires,II.1.1,30.625425599999996,TJ,CH4,3.9,kg/TJ,119.43915983999999,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,b4fe1b65-dc1c-3769-8c79-11e997b3e459 -2013,Buenos Aires,II.1.1,30.625425599999996,TJ,N2O,3.9,kg/TJ,119.43915983999999,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,b4fe1b65-dc1c-3769-8c79-11e997b3e459 -2013,Capital Federal,II.1.1,31.5988596,TJ,CO2,74100.0,kg/TJ,2341475.49636,Gas Oil combustion consumption by freight transport,AR-C,SESCO,annual,kg,9cb3d895-5cc5-3f1a-bfcb-ed4fc95a5589 -2013,Capital Federal,II.1.1,31.5988596,TJ,CH4,3.9,kg/TJ,123.23555244,Gas Oil combustion consumption by freight transport,AR-C,SESCO,annual,kg,2d7b4d34-3668-3994-858f-0643f25d0d74 -2013,Capital Federal,II.1.1,31.5988596,TJ,N2O,3.9,kg/TJ,123.23555244,Gas Oil combustion consumption by freight transport,AR-C,SESCO,annual,kg,2d7b4d34-3668-3994-858f-0643f25d0d74 -2013,Chaco,II.1.1,0.7901394479999999,TJ,CO2,74100.0,kg/TJ,58549.333096799994,Gas Oil combustion consumption by freight transport,AR-H,SESCO,annual,kg,7319f218-2a71-3825-8301-47b5139528ca -2013,Chaco,II.1.1,0.7901394479999999,TJ,CH4,3.9,kg/TJ,3.0815438471999994,Gas Oil combustion consumption by freight transport,AR-H,SESCO,annual,kg,8ccada2b-6a40-33da-b73b-470b511a3cb8 -2013,Chaco,II.1.1,0.7901394479999999,TJ,N2O,3.9,kg/TJ,3.0815438471999994,Gas Oil combustion consumption by freight transport,AR-H,SESCO,annual,kg,8ccada2b-6a40-33da-b73b-470b511a3cb8 -2013,Chubut,II.1.1,0.082126044,TJ,CO2,74100.0,kg/TJ,6085.539860399999,Gas Oil combustion consumption by freight transport,AR-U,SESCO,annual,kg,afff09b1-df9c-3352-ad70-6a9f7d3282f8 -2013,Chubut,II.1.1,0.082126044,TJ,CH4,3.9,kg/TJ,0.3202915716,Gas Oil combustion consumption by freight transport,AR-U,SESCO,annual,kg,38bf3cae-168d-34a7-9627-9f094e139e15 -2013,Chubut,II.1.1,0.082126044,TJ,N2O,3.9,kg/TJ,0.3202915716,Gas Oil combustion consumption by freight transport,AR-U,SESCO,annual,kg,38bf3cae-168d-34a7-9627-9f094e139e15 -2013,Corrientes,II.1.1,3.336808944,TJ,CO2,74100.0,kg/TJ,247257.5427504,Gas Oil combustion consumption by freight transport,AR-W,SESCO,annual,kg,4e082d67-8bf7-3b85-a73a-4bb3fad6fb07 -2013,Corrientes,II.1.1,3.336808944,TJ,CH4,3.9,kg/TJ,13.0135548816,Gas Oil combustion consumption by freight transport,AR-W,SESCO,annual,kg,c43e7817-9f2e-3bb2-a81e-76c23d4120c5 -2013,Corrientes,II.1.1,3.336808944,TJ,N2O,3.9,kg/TJ,13.0135548816,Gas Oil combustion consumption by freight transport,AR-W,SESCO,annual,kg,c43e7817-9f2e-3bb2-a81e-76c23d4120c5 -2013,Córdoba,II.1.1,1.014491604,TJ,CO2,74100.0,kg/TJ,75173.8278564,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,ba09887f-7d56-33f1-bbf9-e1b734588c2f -2013,Córdoba,II.1.1,1.014491604,TJ,CH4,3.9,kg/TJ,3.9565172556,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,121209fe-8f46-3132-99f0-6030425937d0 -2013,Córdoba,II.1.1,1.014491604,TJ,N2O,3.9,kg/TJ,3.9565172556,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,121209fe-8f46-3132-99f0-6030425937d0 -2013,Entre Rios,II.1.1,1.165079496,TJ,CO2,74100.0,kg/TJ,86332.3906536,Gas Oil combustion consumption by freight transport,AR-E,SESCO,annual,kg,c7b1dfe5-1867-3017-88ce-695e5c60eb95 -2013,Entre Rios,II.1.1,1.165079496,TJ,CH4,3.9,kg/TJ,4.5438100344,Gas Oil combustion consumption by freight transport,AR-E,SESCO,annual,kg,047565dd-8700-3008-8469-ffd7aa74f384 -2013,Entre Rios,II.1.1,1.165079496,TJ,N2O,3.9,kg/TJ,4.5438100344,Gas Oil combustion consumption by freight transport,AR-E,SESCO,annual,kg,047565dd-8700-3008-8469-ffd7aa74f384 -2013,Mendoza,II.1.1,0.09319682399999998,TJ,CO2,74100.0,kg/TJ,6905.884658399998,Gas Oil combustion consumption by freight transport,AR-M,SESCO,annual,kg,c4e4e1e2-75a8-3756-8c4f-109cd4215f62 -2013,Mendoza,II.1.1,0.09319682399999998,TJ,CH4,3.9,kg/TJ,0.3634676135999999,Gas Oil combustion consumption by freight transport,AR-M,SESCO,annual,kg,1307f599-bf9a-3c77-a1ad-1ef3262c130f -2013,Mendoza,II.1.1,0.09319682399999998,TJ,N2O,3.9,kg/TJ,0.3634676135999999,Gas Oil combustion consumption by freight transport,AR-M,SESCO,annual,kg,1307f599-bf9a-3c77-a1ad-1ef3262c130f -2013,Misiones,II.1.1,0.146816964,TJ,CO2,74100.0,kg/TJ,10879.1370324,Gas Oil combustion consumption by freight transport,AR-N,SESCO,annual,kg,067b78dd-2263-30b2-953b-6fa1739fde5a -2013,Misiones,II.1.1,0.146816964,TJ,CH4,3.9,kg/TJ,0.5725861595999999,Gas Oil combustion consumption by freight transport,AR-N,SESCO,annual,kg,1501406c-82a0-362b-b9ad-399094edd024 -2013,Misiones,II.1.1,0.146816964,TJ,N2O,3.9,kg/TJ,0.5725861595999999,Gas Oil combustion consumption by freight transport,AR-N,SESCO,annual,kg,1501406c-82a0-362b-b9ad-399094edd024 -2013,San Juan,II.1.1,0.0061404,TJ,CO2,74100.0,kg/TJ,455.00363999999996,Gas Oil combustion consumption by freight transport,AR-J,SESCO,annual,kg,e32708e1-fc6d-3cb2-9d4f-bbe79999b7bd -2013,San Juan,II.1.1,0.0061404,TJ,CH4,3.9,kg/TJ,0.02394756,Gas Oil combustion consumption by freight transport,AR-J,SESCO,annual,kg,4cf2fb4c-c5a3-37a1-ab0a-7edc9512820d -2013,San Juan,II.1.1,0.0061404,TJ,N2O,3.9,kg/TJ,0.02394756,Gas Oil combustion consumption by freight transport,AR-J,SESCO,annual,kg,4cf2fb4c-c5a3-37a1-ab0a-7edc9512820d -2013,San Luis,II.1.1,0.2206932,TJ,CO2,74100.0,kg/TJ,16353.36612,Gas Oil combustion consumption by freight transport,AR-D,SESCO,annual,kg,6b0b69cf-1e6b-3e6c-8287-773ac7e11719 -2013,San Luis,II.1.1,0.2206932,TJ,CH4,3.9,kg/TJ,0.86070348,Gas Oil combustion consumption by freight transport,AR-D,SESCO,annual,kg,1777bd85-9327-31f5-8a7a-ae39cb7c2bbb -2013,San Luis,II.1.1,0.2206932,TJ,N2O,3.9,kg/TJ,0.86070348,Gas Oil combustion consumption by freight transport,AR-D,SESCO,annual,kg,1777bd85-9327-31f5-8a7a-ae39cb7c2bbb -2013,Santa Fe,II.1.1,2.104383708,TJ,CO2,74100.0,kg/TJ,155934.83276279998,Gas Oil combustion consumption by freight transport,AR-S,SESCO,annual,kg,0f527012-d4fc-38e9-b4fe-3ebe955a70d4 -2013,Santa Fe,II.1.1,2.104383708,TJ,CH4,3.9,kg/TJ,8.207096461199999,Gas Oil combustion consumption by freight transport,AR-S,SESCO,annual,kg,d07433fc-5c9d-353b-bbf7-134994c25a81 -2013,Santa Fe,II.1.1,2.104383708,TJ,N2O,3.9,kg/TJ,8.207096461199999,Gas Oil combustion consumption by freight transport,AR-S,SESCO,annual,kg,d07433fc-5c9d-353b-bbf7-134994c25a81 -2013,Santiago del Estero,II.1.1,0.014447999999999999,TJ,CO2,74100.0,kg/TJ,1070.5968,Gas Oil combustion consumption by freight transport,AR-G,SESCO,annual,kg,e4c3aba3-2279-3ab8-be47-e57bd36fb4c2 -2013,Santiago del Estero,II.1.1,0.014447999999999999,TJ,CH4,3.9,kg/TJ,0.05634719999999999,Gas Oil combustion consumption by freight transport,AR-G,SESCO,annual,kg,3970216c-b6d5-3e5e-90ba-b0be5495c884 -2013,Santiago del Estero,II.1.1,0.014447999999999999,TJ,N2O,3.9,kg/TJ,0.05634719999999999,Gas Oil combustion consumption by freight transport,AR-G,SESCO,annual,kg,3970216c-b6d5-3e5e-90ba-b0be5495c884 -2013,Tierra del Fuego,II.1.1,0.23538320399999998,TJ,CO2,74100.0,kg/TJ,17441.8954164,Gas Oil combustion consumption by freight transport,AR-V,SESCO,annual,kg,2c0ba49a-140a-3f14-80c5-86648ec3e47f -2013,Tierra del Fuego,II.1.1,0.23538320399999998,TJ,CH4,3.9,kg/TJ,0.9179944955999999,Gas Oil combustion consumption by freight transport,AR-V,SESCO,annual,kg,8d6c6a86-0915-3a0a-b551-2f1994b88499 -2013,Tierra del Fuego,II.1.1,0.23538320399999998,TJ,N2O,3.9,kg/TJ,0.9179944955999999,Gas Oil combustion consumption by freight transport,AR-V,SESCO,annual,kg,8d6c6a86-0915-3a0a-b551-2f1994b88499 -2013,Tucuman,II.1.1,0.25348293599999994,TJ,CO2,74100.0,kg/TJ,18783.085557599996,Gas Oil combustion consumption by freight transport,AR-T,SESCO,annual,kg,be6ac401-8a98-30f5-b935-6a2bd5e713b7 -2013,Tucuman,II.1.1,0.25348293599999994,TJ,CH4,3.9,kg/TJ,0.9885834503999997,Gas Oil combustion consumption by freight transport,AR-T,SESCO,annual,kg,d141cf16-8a7c-3c27-8018-ef58ad10c69b -2013,Tucuman,II.1.1,0.25348293599999994,TJ,N2O,3.9,kg/TJ,0.9885834503999997,Gas Oil combustion consumption by freight transport,AR-T,SESCO,annual,kg,d141cf16-8a7c-3c27-8018-ef58ad10c69b -2013,Buenos Aires,II.1.1,5.361081340999999,TJ,CO2,73300.0,kg/TJ,392967.26229529997,Naphtha combustion consumption by freight transport,AR-B,SESCO,annual,kg,28f76c14-95ae-3e65-84fa-e52dbdeccfde -2013,Buenos Aires,II.1.1,5.361081340999999,TJ,CH4,0.5,kg/TJ,2.6805406704999997,Naphtha combustion consumption by freight transport,AR-B,SESCO,annual,kg,d4860f3a-cfac-38ec-a092-aaf07627a89f -2013,Buenos Aires,II.1.1,5.361081340999999,TJ,N2O,2.0,kg/TJ,10.722162681999999,Naphtha combustion consumption by freight transport,AR-B,SESCO,annual,kg,ff8b7a71-f2d4-31eb-bef1-fac2ba836df0 -2013,Capital Federal,II.1.1,13.534551645999999,TJ,CO2,73300.0,kg/TJ,992082.6356518,Naphtha combustion consumption by freight transport,AR-C,SESCO,annual,kg,fad1263f-24a9-31f4-b4df-21bdfbf34cac -2013,Capital Federal,II.1.1,13.534551645999999,TJ,CH4,0.5,kg/TJ,6.767275822999999,Naphtha combustion consumption by freight transport,AR-C,SESCO,annual,kg,9fb5e52b-d78f-314e-a3c7-e69a1a9b13bc -2013,Capital Federal,II.1.1,13.534551645999999,TJ,N2O,2.0,kg/TJ,27.069103291999998,Naphtha combustion consumption by freight transport,AR-C,SESCO,annual,kg,abdfa405-5790-30dd-b0b4-8cf6b741c377 -2013,Chaco,II.1.1,0.257830419,TJ,CO2,73300.0,kg/TJ,18898.9697127,Naphtha combustion consumption by freight transport,AR-H,SESCO,annual,kg,6ac89981-bb0a-3e22-8478-cfca7acf0ac9 -2013,Chaco,II.1.1,0.257830419,TJ,CH4,0.5,kg/TJ,0.1289152095,Naphtha combustion consumption by freight transport,AR-H,SESCO,annual,kg,ebfdd134-e7e2-3e55-a279-0cae2104aa30 -2013,Chaco,II.1.1,0.257830419,TJ,N2O,2.0,kg/TJ,0.515660838,Naphtha combustion consumption by freight transport,AR-H,SESCO,annual,kg,8b632e88-deae-335b-a0fd-e7382071ac07 -2013,Corrientes,II.1.1,0.0180816405,TJ,CO2,73300.0,kg/TJ,1325.38424865,Naphtha combustion consumption by freight transport,AR-W,SESCO,annual,kg,99a07a97-7547-3d3b-a85f-25d7658cca7a -2013,Corrientes,II.1.1,0.0180816405,TJ,CH4,0.5,kg/TJ,0.00904082025,Naphtha combustion consumption by freight transport,AR-W,SESCO,annual,kg,e4d76513-766e-3644-932f-6c88c3fd8b08 -2013,Corrientes,II.1.1,0.0180816405,TJ,N2O,2.0,kg/TJ,0.036163281,Naphtha combustion consumption by freight transport,AR-W,SESCO,annual,kg,24a66d73-6e24-3d15-9208-04b3796eb3b2 -2013,Córdoba,II.1.1,0.46625070799999996,TJ,CO2,73300.0,kg/TJ,34176.1768964,Naphtha combustion consumption by freight transport,AR-X,SESCO,annual,kg,48a2c60c-8aa8-3274-8801-43b54e213f9e -2013,Córdoba,II.1.1,0.46625070799999996,TJ,CH4,0.5,kg/TJ,0.23312535399999998,Naphtha combustion consumption by freight transport,AR-X,SESCO,annual,kg,f1f3bc20-f6c6-3856-a412-c8641b1a7f65 -2013,Córdoba,II.1.1,0.46625070799999996,TJ,N2O,2.0,kg/TJ,0.9325014159999999,Naphtha combustion consumption by freight transport,AR-X,SESCO,annual,kg,c82ce4f0-4753-3501-b67e-63e78fadbb41 -2013,Entre Rios,II.1.1,0.00171325,TJ,CO2,73300.0,kg/TJ,125.58122499999999,Naphtha combustion consumption by freight transport,AR-E,SESCO,annual,kg,6cc1fe0a-e295-31a2-8ea0-d7195472fa06 -2013,Entre Rios,II.1.1,0.00171325,TJ,CH4,0.5,kg/TJ,0.000856625,Naphtha combustion consumption by freight transport,AR-E,SESCO,annual,kg,d2564eb1-7d14-30e7-bf2d-ee3ea3158410 -2013,Entre Rios,II.1.1,0.00171325,TJ,N2O,2.0,kg/TJ,0.0034265,Naphtha combustion consumption by freight transport,AR-E,SESCO,annual,kg,099820e1-9187-36ed-80af-8e6598cd3aca -2013,Misiones,II.1.1,0.00651035,TJ,CO2,73300.0,kg/TJ,477.20865499999996,Naphtha combustion consumption by freight transport,AR-N,SESCO,annual,kg,31ad8325-73ba-3a44-8141-480001477844 -2013,Misiones,II.1.1,0.00651035,TJ,CH4,0.5,kg/TJ,0.003255175,Naphtha combustion consumption by freight transport,AR-N,SESCO,annual,kg,08c6394d-0c17-37ef-b0dd-16a4a77a720d -2013,Misiones,II.1.1,0.00651035,TJ,N2O,2.0,kg/TJ,0.0130207,Naphtha combustion consumption by freight transport,AR-N,SESCO,annual,kg,781a4a0b-b5b1-38ca-88c3-0df0fe51f618 -2013,San Luis,II.1.1,0.105543053,TJ,CO2,73300.0,kg/TJ,7736.3057849,Naphtha combustion consumption by freight transport,AR-D,SESCO,annual,kg,1dd13129-1b6b-3ff5-a16e-6cea56283927 -2013,San Luis,II.1.1,0.105543053,TJ,CH4,0.5,kg/TJ,0.0527715265,Naphtha combustion consumption by freight transport,AR-D,SESCO,annual,kg,46711cdc-7054-3c1f-843f-88c2e52c465f -2013,San Luis,II.1.1,0.105543053,TJ,N2O,2.0,kg/TJ,0.211086106,Naphtha combustion consumption by freight transport,AR-D,SESCO,annual,kg,180bb8e7-6e2f-37c2-b437-05be36731488 -2013,Santa Fe,II.1.1,0.9999623479999998,TJ,CO2,73300.0,kg/TJ,73297.24010839999,Naphtha combustion consumption by freight transport,AR-S,SESCO,annual,kg,e06f7b98-d407-35b5-acc2-77c212ae3b46 -2013,Santa Fe,II.1.1,0.9999623479999998,TJ,CH4,0.5,kg/TJ,0.4999811739999999,Naphtha combustion consumption by freight transport,AR-S,SESCO,annual,kg,121c5465-5e2c-3179-8040-e57db6f068f3 -2013,Santa Fe,II.1.1,0.9999623479999998,TJ,N2O,2.0,kg/TJ,1.9999246959999997,Naphtha combustion consumption by freight transport,AR-S,SESCO,annual,kg,0908fb97-a1fd-3669-8324-c97f1859ca9f -2013,Tierra del Fuego,II.1.1,0.030166905999999997,TJ,CO2,73300.0,kg/TJ,2211.2342098,Naphtha combustion consumption by freight transport,AR-V,SESCO,annual,kg,663aac85-bfa5-3cf4-8102-57b2aef2a043 -2013,Tierra del Fuego,II.1.1,0.030166905999999997,TJ,CH4,0.5,kg/TJ,0.015083452999999998,Naphtha combustion consumption by freight transport,AR-V,SESCO,annual,kg,4d049a0b-f6c2-3cd4-85e5-38deaf554615 -2013,Tierra del Fuego,II.1.1,0.030166905999999997,TJ,N2O,2.0,kg/TJ,0.060333811999999994,Naphtha combustion consumption by freight transport,AR-V,SESCO,annual,kg,e8e1b009-c1bc-33fd-807a-965fe1887e0b -2013,Tucuman,II.1.1,0.0544779235,TJ,CO2,73300.0,kg/TJ,3993.2317925499997,Naphtha combustion consumption by freight transport,AR-T,SESCO,annual,kg,0c6372a9-2771-3e74-a2c3-836d59056b47 -2013,Tucuman,II.1.1,0.0544779235,TJ,CH4,0.5,kg/TJ,0.02723896175,Naphtha combustion consumption by freight transport,AR-T,SESCO,annual,kg,6b3acab6-d1e7-381a-8b4a-dd1be6e302b9 -2013,Tucuman,II.1.1,0.0544779235,TJ,N2O,2.0,kg/TJ,0.108955847,Naphtha combustion consumption by freight transport,AR-T,SESCO,annual,kg,e0d93d50-4611-3d9a-bde7-509dedbdab28 -2013,Buenos Aires,II.1.1,26.24664735,TJ,CO2,73300.0,kg/TJ,1923879.250755,Naphtha combustion consumption by freight transport,AR-B,SESCO,annual,kg,295dbbf2-cf31-3b78-9fc1-bfaee8663f92 -2013,Buenos Aires,II.1.1,26.24664735,TJ,CH4,0.5,kg/TJ,13.123323675,Naphtha combustion consumption by freight transport,AR-B,SESCO,annual,kg,2fde78b0-e8b5-3ae0-844b-97ab0bea2f7b -2013,Buenos Aires,II.1.1,26.24664735,TJ,N2O,2.0,kg/TJ,52.4932947,Naphtha combustion consumption by freight transport,AR-B,SESCO,annual,kg,c18b0cec-3d79-3c4a-8961-94ebbe665f44 -2013,Capital Federal,II.1.1,8.5169084,TJ,CO2,73300.0,kg/TJ,624289.38572,Naphtha combustion consumption by freight transport,AR-C,SESCO,annual,kg,5210b094-cc2a-3220-843f-5183d299696c -2013,Capital Federal,II.1.1,8.5169084,TJ,CH4,0.5,kg/TJ,4.2584542,Naphtha combustion consumption by freight transport,AR-C,SESCO,annual,kg,4d206eb4-a4c5-3125-9261-a4ba500efa3d -2013,Capital Federal,II.1.1,8.5169084,TJ,N2O,2.0,kg/TJ,17.0338168,Naphtha combustion consumption by freight transport,AR-C,SESCO,annual,kg,e608117e-1f2d-380c-b2dc-45bf979103f8 -2013,Chaco,II.1.1,0.063177807,TJ,CO2,73300.0,kg/TJ,4630.9332531,Naphtha combustion consumption by freight transport,AR-H,SESCO,annual,kg,5b79215e-7ea9-3416-9fc9-656609799d70 -2013,Chaco,II.1.1,0.063177807,TJ,CH4,0.5,kg/TJ,0.0315889035,Naphtha combustion consumption by freight transport,AR-H,SESCO,annual,kg,031d341e-5778-334b-a894-d29684503982 -2013,Chaco,II.1.1,0.063177807,TJ,N2O,2.0,kg/TJ,0.126355614,Naphtha combustion consumption by freight transport,AR-H,SESCO,annual,kg,8a35212e-d559-3dfb-94cc-48c0fca0916e -2013,Corrientes,II.1.1,0.0047971,TJ,CO2,73300.0,kg/TJ,351.62743,Naphtha combustion consumption by freight transport,AR-W,SESCO,annual,kg,bbcfa918-3238-3ae4-aa02-3d31397db35e -2013,Corrientes,II.1.1,0.0047971,TJ,CH4,0.5,kg/TJ,0.00239855,Naphtha combustion consumption by freight transport,AR-W,SESCO,annual,kg,2f8cbfce-862f-3a18-ac49-d5be75c38c41 -2013,Corrientes,II.1.1,0.0047971,TJ,N2O,2.0,kg/TJ,0.0095942,Naphtha combustion consumption by freight transport,AR-W,SESCO,annual,kg,f6103d01-a3ce-3a14-9481-7f579716c2f0 -2013,Córdoba,II.1.1,0.34467163500000003,TJ,CO2,73300.0,kg/TJ,25264.430845500003,Naphtha combustion consumption by freight transport,AR-X,SESCO,annual,kg,68ceadef-0091-3f68-af93-03266213bca3 -2013,Córdoba,II.1.1,0.34467163500000003,TJ,CH4,0.5,kg/TJ,0.17233581750000002,Naphtha combustion consumption by freight transport,AR-X,SESCO,annual,kg,7196dc3f-3447-3098-84d5-4a8a31df89c1 -2013,Córdoba,II.1.1,0.34467163500000003,TJ,N2O,2.0,kg/TJ,0.6893432700000001,Naphtha combustion consumption by freight transport,AR-X,SESCO,annual,kg,3d6529a9-8817-3887-ad5e-39294a279954 -2013,Entre Rios,II.1.1,0.027412,TJ,CO2,73300.0,kg/TJ,2009.2995999999998,Naphtha combustion consumption by freight transport,AR-E,SESCO,annual,kg,025f364e-1ba4-3622-b970-8a360a9c4acc -2013,Entre Rios,II.1.1,0.027412,TJ,CH4,0.5,kg/TJ,0.013706,Naphtha combustion consumption by freight transport,AR-E,SESCO,annual,kg,498037c0-019a-36af-96a2-53746b56578c -2013,Entre Rios,II.1.1,0.027412,TJ,N2O,2.0,kg/TJ,0.054824,Naphtha combustion consumption by freight transport,AR-E,SESCO,annual,kg,e70db586-a130-36a4-a319-a413292aaa63 -2013,Mendoza,II.1.1,0.005633166,TJ,CO2,73300.0,kg/TJ,412.9110678,Naphtha combustion consumption by freight transport,AR-M,SESCO,annual,kg,8e6794ab-b7aa-33c7-8968-a02e47de1761 -2013,Mendoza,II.1.1,0.005633166,TJ,CH4,0.5,kg/TJ,0.002816583,Naphtha combustion consumption by freight transport,AR-M,SESCO,annual,kg,930cfbab-be8f-3998-86bc-79d5baddb8a6 -2013,Mendoza,II.1.1,0.005633166,TJ,N2O,2.0,kg/TJ,0.011266332,Naphtha combustion consumption by freight transport,AR-M,SESCO,annual,kg,437088c6-3055-37d2-a642-a37272a3eca8 -2013,Misiones,II.1.1,0.004111799999999999,TJ,CO2,73300.0,kg/TJ,301.3949399999999,Naphtha combustion consumption by freight transport,AR-N,SESCO,annual,kg,38fb324a-060c-323f-8909-92f67696738a -2013,Misiones,II.1.1,0.004111799999999999,TJ,CH4,0.5,kg/TJ,0.0020558999999999994,Naphtha combustion consumption by freight transport,AR-N,SESCO,annual,kg,9ddd844d-221a-3839-ab5a-0fcbefea97b9 -2013,Misiones,II.1.1,0.004111799999999999,TJ,N2O,2.0,kg/TJ,0.008223599999999998,Naphtha combustion consumption by freight transport,AR-N,SESCO,annual,kg,64529b94-ac6e-3841-99e2-647f300bd35f -2013,San Luis,II.1.1,0.009936850000000002,TJ,CO2,73300.0,kg/TJ,728.3711050000002,Naphtha combustion consumption by freight transport,AR-D,SESCO,annual,kg,33d1e08e-7ecc-3423-8ec6-a6e91f2cd73f -2013,San Luis,II.1.1,0.009936850000000002,TJ,CH4,0.5,kg/TJ,0.004968425000000001,Naphtha combustion consumption by freight transport,AR-D,SESCO,annual,kg,718bca7a-372e-3f2b-9d9c-c7b0b13a50e7 -2013,San Luis,II.1.1,0.009936850000000002,TJ,N2O,2.0,kg/TJ,0.019873700000000005,Naphtha combustion consumption by freight transport,AR-D,SESCO,annual,kg,5404d0a6-13e9-322e-8406-8652b3998fc0 -2013,Santa Fe,II.1.1,0.723005206,TJ,CO2,73300.0,kg/TJ,52996.28159979999,Naphtha combustion consumption by freight transport,AR-S,SESCO,annual,kg,35316a84-5b00-3e6a-ad19-48e8a988e647 -2013,Santa Fe,II.1.1,0.723005206,TJ,CH4,0.5,kg/TJ,0.361502603,Naphtha combustion consumption by freight transport,AR-S,SESCO,annual,kg,3d51bd49-d1d2-3ca5-bf11-254587d2e0f3 -2013,Santa Fe,II.1.1,0.723005206,TJ,N2O,2.0,kg/TJ,1.446010412,Naphtha combustion consumption by freight transport,AR-S,SESCO,annual,kg,6723f7ea-8670-3f7f-b7b0-bbc3717211c8 -2013,Tierra del Fuego,II.1.1,0.26459432999999993,TJ,CO2,73300.0,kg/TJ,19394.764388999996,Naphtha combustion consumption by freight transport,AR-V,SESCO,annual,kg,3ebe9608-d66f-3cc6-8be0-fdf201f6b2eb -2013,Tierra del Fuego,II.1.1,0.26459432999999993,TJ,CH4,0.5,kg/TJ,0.13229716499999997,Naphtha combustion consumption by freight transport,AR-V,SESCO,annual,kg,5a606f15-ddfb-3720-9267-f1a6350b342d -2013,Tierra del Fuego,II.1.1,0.26459432999999993,TJ,N2O,2.0,kg/TJ,0.5291886599999999,Naphtha combustion consumption by freight transport,AR-V,SESCO,annual,kg,0209d008-9087-3d06-a400-13ef11249f4b -2013,Tucuman,II.1.1,0.05068821450000001,TJ,CO2,73300.0,kg/TJ,3715.446122850001,Naphtha combustion consumption by freight transport,AR-T,SESCO,annual,kg,4af87b19-c010-3d3e-86d2-4fdd9848f331 -2013,Tucuman,II.1.1,0.05068821450000001,TJ,CH4,0.5,kg/TJ,0.025344107250000004,Naphtha combustion consumption by freight transport,AR-T,SESCO,annual,kg,6c57723f-f8ad-3835-8861-89f7459b7cbb -2013,Tucuman,II.1.1,0.05068821450000001,TJ,N2O,2.0,kg/TJ,0.10137642900000002,Naphtha combustion consumption by freight transport,AR-T,SESCO,annual,kg,e1698c54-be65-38d9-93c3-66e210edd598 -2013,Buenos Aires,II.1.1,1983.1216439999998,TJ,CO2,74100.0,kg/TJ,146949313.8204,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,c4890808-f558-3274-8697-bd48821e86af -2013,Buenos Aires,II.1.1,1983.1216439999998,TJ,CH4,3.9,kg/TJ,7734.174411599999,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,9cb0ffa0-1c2a-3101-a331-c40f02437ccd -2013,Buenos Aires,II.1.1,1983.1216439999998,TJ,N2O,3.9,kg/TJ,7734.174411599999,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,9cb0ffa0-1c2a-3101-a331-c40f02437ccd -2013,Capital Federal,II.1.1,485.0623428,TJ,CO2,74100.0,kg/TJ,35943119.60148,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,91a5f5e9-6f70-35c2-8e34-213a5aec5bc3 -2013,Capital Federal,II.1.1,485.0623428,TJ,CH4,3.9,kg/TJ,1891.74313692,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,e9a9dcb4-62d8-3982-a8e6-b000cfe90c1e -2013,Capital Federal,II.1.1,485.0623428,TJ,N2O,3.9,kg/TJ,1891.74313692,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,e9a9dcb4-62d8-3982-a8e6-b000cfe90c1e -2013,Chubut,II.1.1,18.038328,TJ,CO2,74100.0,kg/TJ,1336640.1048,Gas Oil combustion consumption by public passenger transport,AR-U,SESCO,annual,kg,17519f81-eb27-36a0-a2aa-3ad7bd6e2d39 -2013,Chubut,II.1.1,18.038328,TJ,CH4,3.9,kg/TJ,70.3494792,Gas Oil combustion consumption by public passenger transport,AR-U,SESCO,annual,kg,01a6b590-f9e2-3665-87f3-5d5122e1eabf -2013,Chubut,II.1.1,18.038328,TJ,N2O,3.9,kg/TJ,70.3494792,Gas Oil combustion consumption by public passenger transport,AR-U,SESCO,annual,kg,01a6b590-f9e2-3665-87f3-5d5122e1eabf -2013,Córdoba,II.1.1,35.844267144,TJ,CO2,74100.0,kg/TJ,2656060.1953704,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,6f8ac9ab-3d5c-3428-b263-cc6a1ef24ec2 -2013,Córdoba,II.1.1,35.844267144,TJ,CH4,3.9,kg/TJ,139.7926418616,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,ce2fdb54-4c28-3302-9c0c-2a46035c0f88 -2013,Córdoba,II.1.1,35.844267144,TJ,N2O,3.9,kg/TJ,139.7926418616,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,ce2fdb54-4c28-3302-9c0c-2a46035c0f88 -2013,Entre Rios,II.1.1,63.225343775999995,TJ,CO2,74100.0,kg/TJ,4684997.9738016,Gas Oil combustion consumption by public passenger transport,AR-E,SESCO,annual,kg,369dfc52-cc96-32d8-b248-46ab0bf06297 -2013,Entre Rios,II.1.1,63.225343775999995,TJ,CH4,3.9,kg/TJ,246.5788407264,Gas Oil combustion consumption by public passenger transport,AR-E,SESCO,annual,kg,29dc4f3d-796b-35a9-949c-54eb61100e28 -2013,Entre Rios,II.1.1,63.225343775999995,TJ,N2O,3.9,kg/TJ,246.5788407264,Gas Oil combustion consumption by public passenger transport,AR-E,SESCO,annual,kg,29dc4f3d-796b-35a9-949c-54eb61100e28 -2013,La Pampa,II.1.1,7.744128,TJ,CO2,74100.0,kg/TJ,573839.8848,Gas Oil combustion consumption by public passenger transport,AR-L,SESCO,annual,kg,eaeb5740-6e57-3c0f-8856-262c8d11c9b2 -2013,La Pampa,II.1.1,7.744128,TJ,CH4,3.9,kg/TJ,30.2020992,Gas Oil combustion consumption by public passenger transport,AR-L,SESCO,annual,kg,be56b5bf-1a0e-38af-b8ec-8d6e2dcc20e5 -2013,La Pampa,II.1.1,7.744128,TJ,N2O,3.9,kg/TJ,30.2020992,Gas Oil combustion consumption by public passenger transport,AR-L,SESCO,annual,kg,be56b5bf-1a0e-38af-b8ec-8d6e2dcc20e5 -2013,Mendoza,II.1.1,0.0404544,TJ,CO2,74100.0,kg/TJ,2997.67104,Gas Oil combustion consumption by public passenger transport,AR-M,SESCO,annual,kg,041ce957-f0e0-3ffe-9a51-7949770509ba -2013,Mendoza,II.1.1,0.0404544,TJ,CH4,3.9,kg/TJ,0.15777216,Gas Oil combustion consumption by public passenger transport,AR-M,SESCO,annual,kg,929a4e3f-30be-30d5-ae94-6273281234d9 -2013,Mendoza,II.1.1,0.0404544,TJ,N2O,3.9,kg/TJ,0.15777216,Gas Oil combustion consumption by public passenger transport,AR-M,SESCO,annual,kg,929a4e3f-30be-30d5-ae94-6273281234d9 -2013,Misiones,II.1.1,59.6771028,TJ,CO2,74100.0,kg/TJ,4422073.31748,Gas Oil combustion consumption by public passenger transport,AR-N,SESCO,annual,kg,a8af94bc-043c-3067-8327-b10ca11d2c08 -2013,Misiones,II.1.1,59.6771028,TJ,CH4,3.9,kg/TJ,232.74070092,Gas Oil combustion consumption by public passenger transport,AR-N,SESCO,annual,kg,d31098a0-a339-3886-aa02-9846844acd36 -2013,Misiones,II.1.1,59.6771028,TJ,N2O,3.9,kg/TJ,232.74070092,Gas Oil combustion consumption by public passenger transport,AR-N,SESCO,annual,kg,d31098a0-a339-3886-aa02-9846844acd36 -2013,Rio Negro,II.1.1,43.322714483999995,TJ,CO2,74100.0,kg/TJ,3210213.1432644,Gas Oil combustion consumption by public passenger transport,AR-R,SESCO,annual,kg,0840c162-7be7-378e-9ce3-4cffa58f702e -2013,Rio Negro,II.1.1,43.322714483999995,TJ,CH4,3.9,kg/TJ,168.95858648759997,Gas Oil combustion consumption by public passenger transport,AR-R,SESCO,annual,kg,ed369790-2f8a-33c6-b947-4e571beb5632 -2013,Rio Negro,II.1.1,43.322714483999995,TJ,N2O,3.9,kg/TJ,168.95858648759997,Gas Oil combustion consumption by public passenger transport,AR-R,SESCO,annual,kg,ed369790-2f8a-33c6-b947-4e571beb5632 -2013,San Juan,II.1.1,15.740016012,TJ,CO2,74100.0,kg/TJ,1166335.1864892,Gas Oil combustion consumption by public passenger transport,AR-J,SESCO,annual,kg,2c3df3da-65ea-3c15-9d34-2849ec41542d -2013,San Juan,II.1.1,15.740016012,TJ,CH4,3.9,kg/TJ,61.3860624468,Gas Oil combustion consumption by public passenger transport,AR-J,SESCO,annual,kg,b48e142d-1920-32d4-a059-bf6d4d627ece -2013,San Juan,II.1.1,15.740016012,TJ,N2O,3.9,kg/TJ,61.3860624468,Gas Oil combustion consumption by public passenger transport,AR-J,SESCO,annual,kg,b48e142d-1920-32d4-a059-bf6d4d627ece -2013,San Luis,II.1.1,19.620384,TJ,CO2,74100.0,kg/TJ,1453870.4544000002,Gas Oil combustion consumption by public passenger transport,AR-D,SESCO,annual,kg,9f0c627a-437a-3fdb-8be3-8cb0646319de -2013,San Luis,II.1.1,19.620384,TJ,CH4,3.9,kg/TJ,76.51949760000001,Gas Oil combustion consumption by public passenger transport,AR-D,SESCO,annual,kg,acbd79da-be37-3822-8c0e-3baf4c7ca9ef -2013,San Luis,II.1.1,19.620384,TJ,N2O,3.9,kg/TJ,76.51949760000001,Gas Oil combustion consumption by public passenger transport,AR-D,SESCO,annual,kg,acbd79da-be37-3822-8c0e-3baf4c7ca9ef -2013,Santa Fe,II.1.1,83.30655757199999,TJ,CO2,74100.0,kg/TJ,6173015.916085199,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,1a18cccc-1351-39eb-9afe-17cb7888cd37 -2013,Santa Fe,II.1.1,83.30655757199999,TJ,CH4,3.9,kg/TJ,324.89557453079993,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,0a0e6d8c-7ba5-3e2c-8a26-00a290ce3358 -2013,Santa Fe,II.1.1,83.30655757199999,TJ,N2O,3.9,kg/TJ,324.89557453079993,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,0a0e6d8c-7ba5-3e2c-8a26-00a290ce3358 -2013,Buenos Aires,II.1.1,1.4401044,TJ,CO2,74100.0,kg/TJ,106711.73604,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,5aad6e30-e302-37a7-b173-ae2364bb0249 -2013,Buenos Aires,II.1.1,1.4401044,TJ,CH4,3.9,kg/TJ,5.6164071600000005,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,c5ed194f-c196-3779-b021-fcbfd57249c9 -2013,Buenos Aires,II.1.1,1.4401044,TJ,N2O,3.9,kg/TJ,5.6164071600000005,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,c5ed194f-c196-3779-b021-fcbfd57249c9 -2013,Capital Federal,II.1.1,12.127651199999999,TJ,CO2,74100.0,kg/TJ,898658.9539199999,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,161437c3-0eeb-3f5d-8207-158c129a5aca -2013,Capital Federal,II.1.1,12.127651199999999,TJ,CH4,3.9,kg/TJ,47.297839679999996,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,652afed7-b7f1-343d-9a1c-86f202881d88 -2013,Capital Federal,II.1.1,12.127651199999999,TJ,N2O,3.9,kg/TJ,47.297839679999996,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,652afed7-b7f1-343d-9a1c-86f202881d88 -2013,Chaco,II.1.1,0.07693559999999999,TJ,CO2,74100.0,kg/TJ,5700.927959999999,Gas Oil combustion consumption by public passenger transport,AR-H,SESCO,annual,kg,8acd2a01-c194-3b52-9bd1-e0817713c408 -2013,Chaco,II.1.1,0.07693559999999999,TJ,CH4,3.9,kg/TJ,0.30004884,Gas Oil combustion consumption by public passenger transport,AR-H,SESCO,annual,kg,7dacf16f-0d52-33b1-8027-56133b3e21d4 -2013,Chaco,II.1.1,0.07693559999999999,TJ,N2O,3.9,kg/TJ,0.30004884,Gas Oil combustion consumption by public passenger transport,AR-H,SESCO,annual,kg,7dacf16f-0d52-33b1-8027-56133b3e21d4 -2013,Córdoba,II.1.1,0.20188551599999996,TJ,CO2,74100.0,kg/TJ,14959.716735599997,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,11ddb628-01fc-379d-9980-b4a996f83697 -2013,Córdoba,II.1.1,0.20188551599999996,TJ,CH4,3.9,kg/TJ,0.7873535123999998,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,b4b543f2-1a67-3ec4-8135-87d9c45de151 -2013,Córdoba,II.1.1,0.20188551599999996,TJ,N2O,3.9,kg/TJ,0.7873535123999998,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,b4b543f2-1a67-3ec4-8135-87d9c45de151 -2013,Entre Rios,II.1.1,0.423875424,TJ,CO2,74100.0,kg/TJ,31409.1689184,Gas Oil combustion consumption by public passenger transport,AR-E,SESCO,annual,kg,c4e8858e-2878-3211-bafb-c7709d046680 -2013,Entre Rios,II.1.1,0.423875424,TJ,CH4,3.9,kg/TJ,1.6531141536,Gas Oil combustion consumption by public passenger transport,AR-E,SESCO,annual,kg,e9219431-8e50-3266-bfcb-7324162b8aba -2013,Entre Rios,II.1.1,0.423875424,TJ,N2O,3.9,kg/TJ,1.6531141536,Gas Oil combustion consumption by public passenger transport,AR-E,SESCO,annual,kg,e9219431-8e50-3266-bfcb-7324162b8aba -2013,Misiones,II.1.1,0.0390096,TJ,CO2,74100.0,kg/TJ,2890.61136,Gas Oil combustion consumption by public passenger transport,AR-N,SESCO,annual,kg,fd52f168-f5f1-3998-b112-1e54114d431c -2013,Misiones,II.1.1,0.0390096,TJ,CH4,3.9,kg/TJ,0.15213743999999998,Gas Oil combustion consumption by public passenger transport,AR-N,SESCO,annual,kg,364a4a1f-ae88-3f5d-9270-6284f710a2c5 -2013,Misiones,II.1.1,0.0390096,TJ,N2O,3.9,kg/TJ,0.15213743999999998,Gas Oil combustion consumption by public passenger transport,AR-N,SESCO,annual,kg,364a4a1f-ae88-3f5d-9270-6284f710a2c5 -2013,Santa Fe,II.1.1,0.1061928,TJ,CO2,74100.0,kg/TJ,7868.88648,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,0c38e7e9-b871-3c1e-80c2-ab7b70217c61 -2013,Santa Fe,II.1.1,0.1061928,TJ,CH4,3.9,kg/TJ,0.41415192,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,8c66af4b-952e-3134-9e4a-5a610759389a -2013,Santa Fe,II.1.1,0.1061928,TJ,N2O,3.9,kg/TJ,0.41415192,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,8c66af4b-952e-3134-9e4a-5a610759389a -2013,Buenos Aires,II.1.1,2.36462765,TJ,CO2,73300.0,kg/TJ,173327.206745,Naphtha combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,58b46f03-8627-3bc7-bca6-8d8b250af4c3 -2013,Buenos Aires,II.1.1,2.36462765,TJ,CH4,0.5,kg/TJ,1.182313825,Naphtha combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,af587901-ff4f-3839-b538-238695741800 -2013,Buenos Aires,II.1.1,2.36462765,TJ,N2O,2.0,kg/TJ,4.7292553,Naphtha combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,29d26e33-55af-33fb-8742-b91384838da5 -2013,Capital Federal,II.1.1,0.042488599999999994,TJ,CO2,73300.0,kg/TJ,3114.4143799999997,Naphtha combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,7cbdf25b-7356-3fcd-a1eb-5f7bb95e4f1b -2013,Capital Federal,II.1.1,0.042488599999999994,TJ,CH4,0.5,kg/TJ,0.021244299999999997,Naphtha combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,bc486bb5-e79f-38b2-97ec-1e65b086ee34 -2013,Capital Federal,II.1.1,0.042488599999999994,TJ,N2O,2.0,kg/TJ,0.08497719999999999,Naphtha combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,aed58cea-9354-3a5a-8060-70cf03dded4a -2013,Córdoba,II.1.1,0.0013706,TJ,CO2,73300.0,kg/TJ,100.46498,Naphtha combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,8581eb34-1863-3595-9b97-cffdfd303a69 -2013,Córdoba,II.1.1,0.0013706,TJ,CH4,0.5,kg/TJ,0.0006853,Naphtha combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,04f9e2af-aba3-3c4d-978f-dba52d84e04d -2013,Córdoba,II.1.1,0.0013706,TJ,N2O,2.0,kg/TJ,0.0027412,Naphtha combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,bbe350a0-fe30-3786-8a9c-0b404210901b -2013,Entre Rios,II.1.1,0.0010279499999999997,TJ,CO2,73300.0,kg/TJ,75.34873499999998,Naphtha combustion consumption by public passenger transport,AR-E,SESCO,annual,kg,868cd764-ae01-333a-a8dc-77bf9c3862bd -2013,Entre Rios,II.1.1,0.0010279499999999997,TJ,CH4,0.5,kg/TJ,0.0005139749999999998,Naphtha combustion consumption by public passenger transport,AR-E,SESCO,annual,kg,0e76b9bf-9c00-32b5-abec-1c1d299c95ae -2013,Entre Rios,II.1.1,0.0010279499999999997,TJ,N2O,2.0,kg/TJ,0.0020558999999999994,Naphtha combustion consumption by public passenger transport,AR-E,SESCO,annual,kg,e28a1148-67f4-34ec-8091-2e1e582ebb7f -2013,Santa Fe,II.1.1,0.056489278999999996,TJ,CO2,73300.0,kg/TJ,4140.6641506999995,Naphtha combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,b9b1e7aa-4a6d-3343-913a-c63dd32a0abc -2013,Santa Fe,II.1.1,0.056489278999999996,TJ,CH4,0.5,kg/TJ,0.028244639499999998,Naphtha combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,26467d38-d3b3-3166-92c6-a798d38327fc -2013,Santa Fe,II.1.1,0.056489278999999996,TJ,N2O,2.0,kg/TJ,0.11297855799999999,Naphtha combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,4c01b8d1-315b-3adb-bd77-ecb8ce556d9a -2013,Buenos Aires,II.1.1,0.445445,TJ,CO2,73300.0,kg/TJ,32651.118499999997,Naphtha combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,27a29e58-9e32-361e-93f9-ed0a70b1a24f -2013,Buenos Aires,II.1.1,0.445445,TJ,CH4,0.5,kg/TJ,0.2227225,Naphtha combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,0330a20b-10d0-3ed8-bcc9-af585e33db41 -2013,Buenos Aires,II.1.1,0.445445,TJ,N2O,2.0,kg/TJ,0.89089,Naphtha combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,48fccd58-336e-327b-9143-5ba79f4f7617 -2013,Capital Federal,II.1.1,0.20456204999999997,TJ,CO2,73300.0,kg/TJ,14994.398264999998,Naphtha combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,7fef816b-901d-3fbe-90ba-4a4b5c3d8ca7 -2013,Capital Federal,II.1.1,0.20456204999999997,TJ,CH4,0.5,kg/TJ,0.10228102499999998,Naphtha combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,d70ed820-5a02-3c55-a7bd-8ed8f464bf2a -2013,Capital Federal,II.1.1,0.20456204999999997,TJ,N2O,2.0,kg/TJ,0.40912409999999994,Naphtha combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,74f5bc63-5449-3685-b0df-4f9be9375439 -2013,Entre Rios,II.1.1,0.0013706,TJ,CO2,73300.0,kg/TJ,100.46498,Naphtha combustion consumption by public passenger transport,AR-E,SESCO,annual,kg,26586499-9dc7-3603-b1f6-1eea1752edfe -2013,Entre Rios,II.1.1,0.0013706,TJ,CH4,0.5,kg/TJ,0.0006853,Naphtha combustion consumption by public passenger transport,AR-E,SESCO,annual,kg,6361b685-ccf5-3bdd-a819-89500c82a4d0 -2013,Entre Rios,II.1.1,0.0013706,TJ,N2O,2.0,kg/TJ,0.0027412,Naphtha combustion consumption by public passenger transport,AR-E,SESCO,annual,kg,3723ac85-ef7e-3b6d-86ec-243ab2a7b858 -2013,Santa Fe,II.1.1,0.01199275,TJ,CO2,73300.0,kg/TJ,879.068575,Naphtha combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,2fa941a7-6259-3106-b8d1-dc31989288fe -2013,Santa Fe,II.1.1,0.01199275,TJ,CH4,0.5,kg/TJ,0.005996375,Naphtha combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,60d9f258-5087-3743-bb12-a8433a6ed35c -2013,Santa Fe,II.1.1,0.01199275,TJ,N2O,2.0,kg/TJ,0.0239855,Naphtha combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,7b95c4ee-b873-3346-a58a-641030b666dc -2013,Buenos Aires,II.5.1,410.11053266399995,TJ,CO2,74100.0,kg/TJ,30389190.470402397,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,0634f40c-97cb-30bc-80d8-7de4523ec43c -2013,Buenos Aires,II.5.1,410.11053266399995,TJ,CH4,3.9,kg/TJ,1599.4310773895997,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,86f36573-6620-3cfd-ab2e-c8f18f6904ed -2013,Buenos Aires,II.5.1,410.11053266399995,TJ,N2O,3.9,kg/TJ,1599.4310773895997,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,86f36573-6620-3cfd-ab2e-c8f18f6904ed -2013,Córdoba,II.5.1,588.7556460239999,TJ,CO2,74100.0,kg/TJ,43626793.3703784,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,feb4f611-8bec-3860-8386-9083c5fccb88 -2013,Córdoba,II.5.1,588.7556460239999,TJ,CH4,3.9,kg/TJ,2296.1470194935996,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,cae08fac-1a03-3385-bd27-85e95cbc44be -2013,Córdoba,II.5.1,588.7556460239999,TJ,N2O,3.9,kg/TJ,2296.1470194935996,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,cae08fac-1a03-3385-bd27-85e95cbc44be -2013,Entre Rios,II.5.1,530.8959246359999,TJ,CO2,74100.0,kg/TJ,39339388.01552759,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,83db395b-bd95-3074-9b55-d78114370441 -2013,Entre Rios,II.5.1,530.8959246359999,TJ,CH4,3.9,kg/TJ,2070.4941060803994,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,233b762a-eee3-3e48-86e4-b393749ee6c6 -2013,Entre Rios,II.5.1,530.8959246359999,TJ,N2O,3.9,kg/TJ,2070.4941060803994,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,233b762a-eee3-3e48-86e4-b393749ee6c6 -2013,Santa Fe,II.5.1,713.868860544,TJ,CO2,74100.0,kg/TJ,52897682.5663104,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,2b0d54c5-338b-3b5b-a6e6-1b9eadb0b54b -2013,Santa Fe,II.5.1,713.868860544,TJ,CH4,3.9,kg/TJ,2784.0885561216,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,d7fdede1-d08d-3c18-9c88-38f4fdd68e99 -2013,Santa Fe,II.5.1,713.868860544,TJ,N2O,3.9,kg/TJ,2784.0885561216,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,d7fdede1-d08d-3c18-9c88-38f4fdd68e99 -2013,Santiago del Estero,II.5.1,145.69543438799997,TJ,CO2,74100.0,kg/TJ,10796031.688150797,Gas Oil combustion consumption by agriculture machines,AR-G,SESCO,annual,kg,a3507173-eed5-369c-9bae-9d52f1d4476e -2013,Santiago del Estero,II.5.1,145.69543438799997,TJ,CH4,3.9,kg/TJ,568.2121941131999,Gas Oil combustion consumption by agriculture machines,AR-G,SESCO,annual,kg,9ccaf804-6612-350e-86b2-6b7becfe248c -2013,Santiago del Estero,II.5.1,145.69543438799997,TJ,N2O,3.9,kg/TJ,568.2121941131999,Gas Oil combustion consumption by agriculture machines,AR-G,SESCO,annual,kg,9ccaf804-6612-350e-86b2-6b7becfe248c -2013,Córdoba,II.5.1,6.752045030499999,TJ,CO2,73300.0,kg/TJ,494924.9007356499,Naphtha combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,4f481aa6-36b1-346d-9dbe-434995158d62 -2013,Córdoba,II.5.1,6.752045030499999,TJ,CH4,0.5,kg/TJ,3.3760225152499994,Naphtha combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,b8c7bfef-38d3-33c0-b605-4189e25a5b8c -2013,Córdoba,II.5.1,6.752045030499999,TJ,N2O,2.0,kg/TJ,13.504090060999998,Naphtha combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,271cd56b-e093-3931-a72e-7d495740e90d -2013,Santa Fe,II.5.1,1.5133000189999999,TJ,CO2,73300.0,kg/TJ,110924.8913927,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,14551f24-6d9c-3efa-9e37-c9b7bea080a3 -2013,Santa Fe,II.5.1,1.5133000189999999,TJ,CH4,0.5,kg/TJ,0.7566500094999999,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,7e5d8a5b-f241-357e-a314-498b7e7f45ee -2013,Santa Fe,II.5.1,1.5133000189999999,TJ,N2O,2.0,kg/TJ,3.0266000379999998,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,d5d0a2a5-3476-324d-a24f-8e39ff86e79c -2013,Buenos Aires,II.1.1,339.633647388,TJ,CO2,74100.0,kg/TJ,25166853.2714508,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,357299e6-5eea-3f2c-aba0-e6400d02f6b9 -2013,Buenos Aires,II.1.1,339.633647388,TJ,CH4,3.9,kg/TJ,1324.5712248132,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,3a25d8d7-1580-35e5-9d56-6fd074d6c1c8 -2013,Buenos Aires,II.1.1,339.633647388,TJ,N2O,3.9,kg/TJ,1324.5712248132,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,3a25d8d7-1580-35e5-9d56-6fd074d6c1c8 -2013,Chaco,II.1.1,10.026767520000002,TJ,CO2,74100.0,kg/TJ,742983.4732320001,Gas Oil combustion consumption by public passenger transport,AR-H,SESCO,annual,kg,2b5285f4-e94c-3829-ae44-8005bbf8b8e0 -2013,Chaco,II.1.1,10.026767520000002,TJ,CH4,3.9,kg/TJ,39.10439332800001,Gas Oil combustion consumption by public passenger transport,AR-H,SESCO,annual,kg,a9200029-bf97-39a2-b8f3-aef16ec94591 -2013,Chaco,II.1.1,10.026767520000002,TJ,N2O,3.9,kg/TJ,39.10439332800001,Gas Oil combustion consumption by public passenger transport,AR-H,SESCO,annual,kg,a9200029-bf97-39a2-b8f3-aef16ec94591 -2013,Corrientes,II.1.1,34.60019320799999,TJ,CO2,74100.0,kg/TJ,2563874.3167127995,Gas Oil combustion consumption by public passenger transport,AR-W,SESCO,annual,kg,3b14ceea-d061-3d13-9c2a-fcb64baf75fc -2013,Corrientes,II.1.1,34.60019320799999,TJ,CH4,3.9,kg/TJ,134.94075351119997,Gas Oil combustion consumption by public passenger transport,AR-W,SESCO,annual,kg,4609fbf6-f26c-3413-ad67-15395e98d874 -2013,Corrientes,II.1.1,34.60019320799999,TJ,N2O,3.9,kg/TJ,134.94075351119997,Gas Oil combustion consumption by public passenger transport,AR-W,SESCO,annual,kg,4609fbf6-f26c-3413-ad67-15395e98d874 -2013,Córdoba,II.1.1,307.84952108400006,TJ,CO2,74100.0,kg/TJ,22811649.512324404,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,63adfcde-4e79-3b2e-a764-8f8b583241b3 -2013,Córdoba,II.1.1,307.84952108400006,TJ,CH4,3.9,kg/TJ,1200.6131322276003,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,55392cb6-6012-3e01-b5d5-9b02db1cf4b4 -2013,Córdoba,II.1.1,307.84952108400006,TJ,N2O,3.9,kg/TJ,1200.6131322276003,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,55392cb6-6012-3e01-b5d5-9b02db1cf4b4 -2013,Entre Rios,II.1.1,89.19846642,TJ,CO2,74100.0,kg/TJ,6609606.361722,Gas Oil combustion consumption by public passenger transport,AR-E,SESCO,annual,kg,7e4235ff-cab9-364b-aa91-0f81642eb1ba -2013,Entre Rios,II.1.1,89.19846642,TJ,CH4,3.9,kg/TJ,347.87401903800003,Gas Oil combustion consumption by public passenger transport,AR-E,SESCO,annual,kg,da3aace1-d475-3b2d-87d7-1a249f2ef3b7 -2013,Entre Rios,II.1.1,89.19846642,TJ,N2O,3.9,kg/TJ,347.87401903800003,Gas Oil combustion consumption by public passenger transport,AR-E,SESCO,annual,kg,da3aace1-d475-3b2d-87d7-1a249f2ef3b7 -2013,Jujuy,II.1.1,198.589067544,TJ,CO2,74100.0,kg/TJ,14715449.905010398,Gas Oil combustion consumption by public passenger transport,AR-Y,SESCO,annual,kg,06b4e73c-6792-373a-b557-7db8f9e535f8 -2013,Jujuy,II.1.1,198.589067544,TJ,CH4,3.9,kg/TJ,774.4973634216,Gas Oil combustion consumption by public passenger transport,AR-Y,SESCO,annual,kg,8a0a4c50-98e1-3dc9-8725-451e3496ec30 -2013,Jujuy,II.1.1,198.589067544,TJ,N2O,3.9,kg/TJ,774.4973634216,Gas Oil combustion consumption by public passenger transport,AR-Y,SESCO,annual,kg,8a0a4c50-98e1-3dc9-8725-451e3496ec30 -2013,Misiones,II.1.1,106.31385979199999,TJ,CO2,74100.0,kg/TJ,7877857.010587199,Gas Oil combustion consumption by public passenger transport,AR-N,SESCO,annual,kg,2bb92191-832d-3b2f-bf97-536ae4b2cfd1 -2013,Misiones,II.1.1,106.31385979199999,TJ,CH4,3.9,kg/TJ,414.62405318879996,Gas Oil combustion consumption by public passenger transport,AR-N,SESCO,annual,kg,f56965f5-51cf-31bf-828f-44c565b110a7 -2013,Misiones,II.1.1,106.31385979199999,TJ,N2O,3.9,kg/TJ,414.62405318879996,Gas Oil combustion consumption by public passenger transport,AR-N,SESCO,annual,kg,f56965f5-51cf-31bf-828f-44c565b110a7 -2013,Salta,II.1.1,77.47766006399999,TJ,CO2,74100.0,kg/TJ,5741094.6107423995,Gas Oil combustion consumption by public passenger transport,AR-A,SESCO,annual,kg,de3cea44-6177-32de-adbb-46c98f23ac2e -2013,Salta,II.1.1,77.47766006399999,TJ,CH4,3.9,kg/TJ,302.16287424959995,Gas Oil combustion consumption by public passenger transport,AR-A,SESCO,annual,kg,88b5f2d0-b6cc-3e44-9e53-137bf5f7cf91 -2013,Salta,II.1.1,77.47766006399999,TJ,N2O,3.9,kg/TJ,302.16287424959995,Gas Oil combustion consumption by public passenger transport,AR-A,SESCO,annual,kg,88b5f2d0-b6cc-3e44-9e53-137bf5f7cf91 -2013,Santa Fe,II.1.1,231.107311176,TJ,CO2,74100.0,kg/TJ,17125051.7581416,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,f2919f2d-1231-34e8-ae62-d8f61cddcd73 -2013,Santa Fe,II.1.1,231.107311176,TJ,CH4,3.9,kg/TJ,901.3185135864,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,b9636763-46ea-3ffc-9ab5-77114c2d02d9 -2013,Santa Fe,II.1.1,231.107311176,TJ,N2O,3.9,kg/TJ,901.3185135864,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,b9636763-46ea-3ffc-9ab5-77114c2d02d9 -2013,Santiago del Estero,II.1.1,108.047999052,TJ,CO2,74100.0,kg/TJ,8006356.7297532,Gas Oil combustion consumption by public passenger transport,AR-G,SESCO,annual,kg,b442a47b-c6ca-307c-b3fe-d23e24a698c9 -2013,Santiago del Estero,II.1.1,108.047999052,TJ,CH4,3.9,kg/TJ,421.38719630279996,Gas Oil combustion consumption by public passenger transport,AR-G,SESCO,annual,kg,7315bcc9-145b-3e67-ac3a-c51ce397652d -2013,Santiago del Estero,II.1.1,108.047999052,TJ,N2O,3.9,kg/TJ,421.38719630279996,Gas Oil combustion consumption by public passenger transport,AR-G,SESCO,annual,kg,7315bcc9-145b-3e67-ac3a-c51ce397652d -2013,Tucuman,II.1.1,32.633217204,TJ,CO2,74100.0,kg/TJ,2418121.3948164,Gas Oil combustion consumption by public passenger transport,AR-T,SESCO,annual,kg,952a272f-1320-3e66-baa5-612f680967a1 -2013,Tucuman,II.1.1,32.633217204,TJ,CH4,3.9,kg/TJ,127.26954709559999,Gas Oil combustion consumption by public passenger transport,AR-T,SESCO,annual,kg,09339339-5d14-30e9-b566-1734b97df6b2 -2013,Tucuman,II.1.1,32.633217204,TJ,N2O,3.9,kg/TJ,127.26954709559999,Gas Oil combustion consumption by public passenger transport,AR-T,SESCO,annual,kg,09339339-5d14-30e9-b566-1734b97df6b2 -2013,Buenos Aires,II.5.1,559.6196936399999,TJ,CO2,74100.0,kg/TJ,41467819.298723996,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,e7ff39cc-db93-3d2e-8387-5ea1d9519f91 -2013,Buenos Aires,II.5.1,559.6196936399999,TJ,CH4,3.9,kg/TJ,2182.5168051959995,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,cbcd5975-2f22-396d-8e34-ac9ce670b236 -2013,Buenos Aires,II.5.1,559.6196936399999,TJ,N2O,3.9,kg/TJ,2182.5168051959995,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,cbcd5975-2f22-396d-8e34-ac9ce670b236 -2013,Córdoba,II.5.1,51.13634819999999,TJ,CO2,74100.0,kg/TJ,3789203.4016199997,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,1d6c392c-d113-306f-9a24-f2bd84467f91 -2013,Córdoba,II.5.1,51.13634819999999,TJ,CH4,3.9,kg/TJ,199.43175797999996,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,e6b3996b-97ee-3ca5-b91c-35d4e2ed17c0 -2013,Córdoba,II.5.1,51.13634819999999,TJ,N2O,3.9,kg/TJ,199.43175797999996,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,e6b3996b-97ee-3ca5-b91c-35d4e2ed17c0 -2013,Neuquén,II.5.1,109.79089379999998,TJ,CO2,74100.0,kg/TJ,8135505.230579998,Gas Oil combustion consumption by agriculture machines,AR-Q,SESCO,annual,kg,aee15524-8ffa-3c17-bc08-e7081eb59567 -2013,Neuquén,II.5.1,109.79089379999998,TJ,CH4,3.9,kg/TJ,428.1844858199999,Gas Oil combustion consumption by agriculture machines,AR-Q,SESCO,annual,kg,e8757970-68cb-3e1f-923c-a6192f01aaed -2013,Neuquén,II.5.1,109.79089379999998,TJ,N2O,3.9,kg/TJ,428.1844858199999,Gas Oil combustion consumption by agriculture machines,AR-Q,SESCO,annual,kg,e8757970-68cb-3e1f-923c-a6192f01aaed -2013,Rio Negro,II.5.1,3.6378258000000003,TJ,CO2,74100.0,kg/TJ,269562.89178,Gas Oil combustion consumption by agriculture machines,AR-R,SESCO,annual,kg,36fee0c3-ec9d-37a7-9396-7c61dcb70938 -2013,Rio Negro,II.5.1,3.6378258000000003,TJ,CH4,3.9,kg/TJ,14.18752062,Gas Oil combustion consumption by agriculture machines,AR-R,SESCO,annual,kg,9c3f7f16-1097-3f3f-ba4c-199fa2489e24 -2013,Rio Negro,II.5.1,3.6378258000000003,TJ,N2O,3.9,kg/TJ,14.18752062,Gas Oil combustion consumption by agriculture machines,AR-R,SESCO,annual,kg,9c3f7f16-1097-3f3f-ba4c-199fa2489e24 -2013,Santa Cruz,II.5.1,0.68566596,TJ,CO2,74100.0,kg/TJ,50807.847636,Gas Oil combustion consumption by agriculture machines,AR-Z,SESCO,annual,kg,6b733a5a-2035-3db9-b27b-784e0cc44b2f -2013,Santa Cruz,II.5.1,0.68566596,TJ,CH4,3.9,kg/TJ,2.674097244,Gas Oil combustion consumption by agriculture machines,AR-Z,SESCO,annual,kg,0f1332d1-1300-39ae-937d-c8f57064ca50 -2013,Santa Cruz,II.5.1,0.68566596,TJ,N2O,3.9,kg/TJ,2.674097244,Gas Oil combustion consumption by agriculture machines,AR-Z,SESCO,annual,kg,0f1332d1-1300-39ae-937d-c8f57064ca50 -2013,Santa Fe,II.5.1,3.1048751999999995,TJ,CO2,74100.0,kg/TJ,230071.25231999997,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,4c128b43-d8b2-3845-bf8f-53910b5956cf -2013,Santa Fe,II.5.1,3.1048751999999995,TJ,CH4,3.9,kg/TJ,12.109013279999997,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,a2583d68-5ef0-37bb-88eb-174d3d1b3c5a -2013,Santa Fe,II.5.1,3.1048751999999995,TJ,N2O,3.9,kg/TJ,12.109013279999997,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,a2583d68-5ef0-37bb-88eb-174d3d1b3c5a -2013,Buenos Aires,II.5.1,4.773114500000001,TJ,CO2,73300.0,kg/TJ,349869.2928500001,Naphtha combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,e7bce809-c251-3acf-9c42-42154e05a563 -2013,Buenos Aires,II.5.1,4.773114500000001,TJ,CH4,0.5,kg/TJ,2.3865572500000005,Naphtha combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,2feccc1f-e2e2-3f33-b99a-2aff4996953d -2013,Buenos Aires,II.5.1,4.773114500000001,TJ,N2O,2.0,kg/TJ,9.546229000000002,Naphtha combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,5c9cb3bb-81f7-3600-bd1e-d6fca073bcce -2013,Buenos Aires,II.2.1,41.328215039999996,TJ,CO2,74100.0,kg/TJ,3062420.7344639995,Gas Oil combustion consumption by railway transport,AR-B,SESCO,annual,kg,be69c9dd-b6e6-306b-8601-067039a1c705 -2013,Buenos Aires,II.2.1,41.328215039999996,TJ,CH4,3.9,kg/TJ,161.180038656,Gas Oil combustion consumption by railway transport,AR-B,SESCO,annual,kg,a233079f-6928-3e4e-9e65-40ad69dd7391 -2013,Buenos Aires,II.2.1,41.328215039999996,TJ,N2O,3.9,kg/TJ,161.180038656,Gas Oil combustion consumption by railway transport,AR-B,SESCO,annual,kg,a233079f-6928-3e4e-9e65-40ad69dd7391 -2013,La Pampa,II.2.1,22.206901079999998,TJ,CO2,74100.0,kg/TJ,1645531.3700279999,Gas Oil combustion consumption by railway transport,AR-L,SESCO,annual,kg,75f010ad-71e2-329a-852e-49c7705893a5 -2013,La Pampa,II.2.1,22.206901079999998,TJ,CH4,3.9,kg/TJ,86.60691421199999,Gas Oil combustion consumption by railway transport,AR-L,SESCO,annual,kg,06f37679-e6f3-36e8-848c-c87e1bf143d8 -2013,La Pampa,II.2.1,22.206901079999998,TJ,N2O,3.9,kg/TJ,86.60691421199999,Gas Oil combustion consumption by railway transport,AR-L,SESCO,annual,kg,06f37679-e6f3-36e8-848c-c87e1bf143d8 -2013,Buenos Aires,II.1.1,4.696686,TJ,CO2,69300.0,kg/TJ,325480.33979999996,Motor Gasoline combustion consumption by freight transport,AR-B,SESCO,annual,kg,da0fd13f-6190-3900-82a4-6d64e1cc79c4 -2013,Buenos Aires,II.1.1,4.696686,TJ,CH4,33.0,kg/TJ,154.990638,Motor Gasoline combustion consumption by freight transport,AR-B,SESCO,annual,kg,8a43fdb4-0081-388b-9db6-d0c3845160f9 -2013,Buenos Aires,II.1.1,4.696686,TJ,N2O,3.2,kg/TJ,15.0293952,Motor Gasoline combustion consumption by freight transport,AR-B,SESCO,annual,kg,a5bd7577-3e76-390f-a039-5e95ff04f891 -2013,Buenos Aires,II.1.1,333.48631595999996,TJ,CO2,74100.0,kg/TJ,24711336.012636,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,754b2cf6-a136-3367-86a2-2290d7a82fe5 -2013,Buenos Aires,II.1.1,333.48631595999996,TJ,CH4,3.9,kg/TJ,1300.5966322439997,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,e87a9d7e-5207-3cac-b21e-a3a2a784728d -2013,Buenos Aires,II.1.1,333.48631595999996,TJ,N2O,3.9,kg/TJ,1300.5966322439997,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,e87a9d7e-5207-3cac-b21e-a3a2a784728d -2013,Capital Federal,II.1.1,26.602163280000003,TJ,CO2,74100.0,kg/TJ,1971220.2990480002,Gas Oil combustion consumption by freight transport,AR-C,SESCO,annual,kg,32f18e3b-b4a7-3113-ab4e-3efef32fccf4 -2013,Capital Federal,II.1.1,26.602163280000003,TJ,CH4,3.9,kg/TJ,103.748436792,Gas Oil combustion consumption by freight transport,AR-C,SESCO,annual,kg,b31e5099-ae2f-35c6-b1da-a7c879f76228 -2013,Capital Federal,II.1.1,26.602163280000003,TJ,N2O,3.9,kg/TJ,103.748436792,Gas Oil combustion consumption by freight transport,AR-C,SESCO,annual,kg,b31e5099-ae2f-35c6-b1da-a7c879f76228 -2013,Chubut,II.1.1,0.32461044,TJ,CO2,74100.0,kg/TJ,24053.633604,Gas Oil combustion consumption by freight transport,AR-U,SESCO,annual,kg,302b72da-9595-3236-8121-67a60aeeccff -2013,Chubut,II.1.1,0.32461044,TJ,CH4,3.9,kg/TJ,1.265980716,Gas Oil combustion consumption by freight transport,AR-U,SESCO,annual,kg,91b68d23-2a15-325b-8827-0eadf02980dd -2013,Chubut,II.1.1,0.32461044,TJ,N2O,3.9,kg/TJ,1.265980716,Gas Oil combustion consumption by freight transport,AR-U,SESCO,annual,kg,91b68d23-2a15-325b-8827-0eadf02980dd -2013,Córdoba,II.1.1,10.93868916,TJ,CO2,74100.0,kg/TJ,810556.866756,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,f1e2d234-cd47-32db-8b44-29354afedac4 -2013,Córdoba,II.1.1,10.93868916,TJ,CH4,3.9,kg/TJ,42.660887724,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,fa058c34-8f8e-3edd-92ac-a0952dff2aed -2013,Córdoba,II.1.1,10.93868916,TJ,N2O,3.9,kg/TJ,42.660887724,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,fa058c34-8f8e-3edd-92ac-a0952dff2aed -2013,San Luis,II.1.1,57.27432816,TJ,CO2,74100.0,kg/TJ,4244027.716656,Gas Oil combustion consumption by freight transport,AR-D,SESCO,annual,kg,3ce60eab-4ea3-3cba-8434-0a0e0540295f -2013,San Luis,II.1.1,57.27432816,TJ,CH4,3.9,kg/TJ,223.369879824,Gas Oil combustion consumption by freight transport,AR-D,SESCO,annual,kg,54ab74ba-2358-3cd6-b2ea-ae22765fd851 -2013,San Luis,II.1.1,57.27432816,TJ,N2O,3.9,kg/TJ,223.369879824,Gas Oil combustion consumption by freight transport,AR-D,SESCO,annual,kg,54ab74ba-2358-3cd6-b2ea-ae22765fd851 -2013,Buenos Aires,II.1.1,1.29786384,TJ,CO2,74100.0,kg/TJ,96171.710544,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,ecd2058d-292a-36b0-a9b7-fe77c2de3d62 -2013,Buenos Aires,II.1.1,1.29786384,TJ,CH4,3.9,kg/TJ,5.061668976,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,14afde7e-0d1e-3c8b-8394-c6164ce19078 -2013,Buenos Aires,II.1.1,1.29786384,TJ,N2O,3.9,kg/TJ,5.061668976,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,14afde7e-0d1e-3c8b-8394-c6164ce19078 -2013,Buenos Aires,II.1.1,0.13493557,TJ,CO2,73300.0,kg/TJ,9890.777281,Naphtha combustion consumption by freight transport,AR-B,SESCO,annual,kg,17bc1b43-98b6-382f-9a05-203a2ca01ace -2013,Buenos Aires,II.1.1,0.13493557,TJ,CH4,0.5,kg/TJ,0.067467785,Naphtha combustion consumption by freight transport,AR-B,SESCO,annual,kg,278a2bba-e56e-3a40-ba40-059021f097d4 -2013,Buenos Aires,II.1.1,0.13493557,TJ,N2O,2.0,kg/TJ,0.26987114,Naphtha combustion consumption by freight transport,AR-B,SESCO,annual,kg,95e8fe11-d0c8-316e-9906-133673f58c31 -2013,Buenos Aires,II.1.1,331.2811899599999,TJ,CO2,74100.0,kg/TJ,24547936.176035993,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,eb23e55f-1d89-3e0f-8e8c-02dc7f43fb34 -2013,Buenos Aires,II.1.1,331.2811899599999,TJ,CH4,3.9,kg/TJ,1291.9966408439996,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,0fb3c891-651c-31a5-8811-b3dfdf817009 -2013,Buenos Aires,II.1.1,331.2811899599999,TJ,N2O,3.9,kg/TJ,1291.9966408439996,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,0fb3c891-651c-31a5-8811-b3dfdf817009 -2013,Capital Federal,II.1.1,16.471586879999997,TJ,CO2,74100.0,kg/TJ,1220544.5878079997,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,3dbd0b93-9a02-3906-ab98-bf0a056f8a2c -2013,Capital Federal,II.1.1,16.471586879999997,TJ,CH4,3.9,kg/TJ,64.23918883199998,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,2d6185f8-429b-3341-84e8-d976b7c9f07a -2013,Capital Federal,II.1.1,16.471586879999997,TJ,N2O,3.9,kg/TJ,64.23918883199998,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,2d6185f8-429b-3341-84e8-d976b7c9f07a -2013,Chubut,II.1.1,58.18960896,TJ,CO2,74100.0,kg/TJ,4311850.023936,Gas Oil combustion consumption by public passenger transport,AR-U,SESCO,annual,kg,1056a869-48df-3b85-8a5b-965d953c39c5 -2013,Chubut,II.1.1,58.18960896,TJ,CH4,3.9,kg/TJ,226.939474944,Gas Oil combustion consumption by public passenger transport,AR-U,SESCO,annual,kg,281b8c62-d813-317c-8ffa-14b692ce30f7 -2013,Chubut,II.1.1,58.18960896,TJ,N2O,3.9,kg/TJ,226.939474944,Gas Oil combustion consumption by public passenger transport,AR-U,SESCO,annual,kg,281b8c62-d813-317c-8ffa-14b692ce30f7 -2013,Córdoba,II.1.1,258.03517572,TJ,CO2,74100.0,kg/TJ,19120406.520852,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,e43d5a41-c51d-35fe-b5f7-0e39669c8242 -2013,Córdoba,II.1.1,258.03517572,TJ,CH4,3.9,kg/TJ,1006.3371853079999,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,54b04279-0b96-3c35-8c5f-af28fb7de579 -2013,Córdoba,II.1.1,258.03517572,TJ,N2O,3.9,kg/TJ,1006.3371853079999,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,54b04279-0b96-3c35-8c5f-af28fb7de579 -2013,Neuquén,II.1.1,32.7249006,TJ,CO2,74100.0,kg/TJ,2424915.13446,Gas Oil combustion consumption by public passenger transport,AR-Q,SESCO,annual,kg,ff027fde-a4f2-388b-ae87-2cf733fc3bdc -2013,Neuquén,II.1.1,32.7249006,TJ,CH4,3.9,kg/TJ,127.62711233999998,Gas Oil combustion consumption by public passenger transport,AR-Q,SESCO,annual,kg,4883f5c6-822d-38dc-9dc2-15a3e52c37cc -2013,Neuquén,II.1.1,32.7249006,TJ,N2O,3.9,kg/TJ,127.62711233999998,Gas Oil combustion consumption by public passenger transport,AR-Q,SESCO,annual,kg,4883f5c6-822d-38dc-9dc2-15a3e52c37cc -2013,Rio Negro,II.1.1,203.11839995999998,TJ,CO2,74100.0,kg/TJ,15051073.437035998,Gas Oil combustion consumption by public passenger transport,AR-R,SESCO,annual,kg,7274b77f-dbcd-382b-bdee-8604d357de61 -2013,Rio Negro,II.1.1,203.11839995999998,TJ,CH4,3.9,kg/TJ,792.1617598439999,Gas Oil combustion consumption by public passenger transport,AR-R,SESCO,annual,kg,3fa916ea-3322-39ef-8358-5ba253d6e535 -2013,Rio Negro,II.1.1,203.11839995999998,TJ,N2O,3.9,kg/TJ,792.1617598439999,Gas Oil combustion consumption by public passenger transport,AR-R,SESCO,annual,kg,3fa916ea-3322-39ef-8358-5ba253d6e535 -2013,Santa Cruz,II.1.1,31.995276599999997,TJ,CO2,74100.0,kg/TJ,2370849.99606,Gas Oil combustion consumption by public passenger transport,AR-Z,SESCO,annual,kg,b356f9c7-bcab-3b9f-b410-974c847034ba -2013,Santa Cruz,II.1.1,31.995276599999997,TJ,CH4,3.9,kg/TJ,124.78157873999999,Gas Oil combustion consumption by public passenger transport,AR-Z,SESCO,annual,kg,c76f0ed6-b953-33bd-a052-7407326b6c97 -2013,Santa Cruz,II.1.1,31.995276599999997,TJ,N2O,3.9,kg/TJ,124.78157873999999,Gas Oil combustion consumption by public passenger transport,AR-Z,SESCO,annual,kg,c76f0ed6-b953-33bd-a052-7407326b6c97 -2013,Santa Fe,II.1.1,5.46827904,TJ,CO2,74100.0,kg/TJ,405199.47686399997,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,d1cc20e1-227b-39ec-863a-e6b4ceef2348 -2013,Santa Fe,II.1.1,5.46827904,TJ,CH4,3.9,kg/TJ,21.326288255999998,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,695c3cdf-b9a8-3797-8452-220b8ce5062b -2013,Santa Fe,II.1.1,5.46827904,TJ,N2O,3.9,kg/TJ,21.326288255999998,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,695c3cdf-b9a8-3797-8452-220b8ce5062b -2013,Buenos Aires,II.5.1,407.54195999999996,TJ,CO2,74100.0,kg/TJ,30198859.235999998,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,90707006-8f17-35f0-a7ac-5f25ead77f92 -2013,Buenos Aires,II.5.1,407.54195999999996,TJ,CH4,3.9,kg/TJ,1589.4136439999997,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,802b0135-2d1c-3515-9c1c-04fc2cbda542 -2013,Buenos Aires,II.5.1,407.54195999999996,TJ,N2O,3.9,kg/TJ,1589.4136439999997,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,802b0135-2d1c-3515-9c1c-04fc2cbda542 -2013,Capital Federal,II.5.1,87.33816,TJ,CO2,74100.0,kg/TJ,6471757.656,Gas Oil combustion consumption by agriculture machines,AR-C,SESCO,annual,kg,d9d70abd-3753-3ede-9bdd-82350413cb11 -2013,Capital Federal,II.5.1,87.33816,TJ,CH4,3.9,kg/TJ,340.618824,Gas Oil combustion consumption by agriculture machines,AR-C,SESCO,annual,kg,06322cd8-d529-3e82-8c06-5e1091365da7 -2013,Capital Federal,II.5.1,87.33816,TJ,N2O,3.9,kg/TJ,340.618824,Gas Oil combustion consumption by agriculture machines,AR-C,SESCO,annual,kg,06322cd8-d529-3e82-8c06-5e1091365da7 -2013,Córdoba,II.5.1,156.86916,TJ,CO2,74100.0,kg/TJ,11624004.756,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,51505052-e7cc-3643-bb07-5150d86a1485 -2013,Córdoba,II.5.1,156.86916,TJ,CH4,3.9,kg/TJ,611.789724,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,c2423173-fe05-3ee7-a8d9-be83c0c7b40e -2013,Córdoba,II.5.1,156.86916,TJ,N2O,3.9,kg/TJ,611.789724,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,c2423173-fe05-3ee7-a8d9-be83c0c7b40e -2013,Santa Fe,II.5.1,606.88824,TJ,CO2,74100.0,kg/TJ,44970418.584,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,024469e2-5583-3949-b2fd-9eea25743c7d -2013,Santa Fe,II.5.1,606.88824,TJ,CH4,3.9,kg/TJ,2366.864136,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,24236ebe-c44c-384b-8371-599bae45aa24 -2013,Santa Fe,II.5.1,606.88824,TJ,N2O,3.9,kg/TJ,2366.864136,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,24236ebe-c44c-384b-8371-599bae45aa24 -2013,Buenos Aires,II.5.1,3.90096,TJ,CO2,74100.0,kg/TJ,289061.136,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,d113f0ab-dfbd-3999-8b01-9f72fcf4d211 -2013,Buenos Aires,II.5.1,3.90096,TJ,CH4,3.9,kg/TJ,15.213744,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,7928a8e8-1873-356b-a5cd-4495eec8a987 -2013,Buenos Aires,II.5.1,3.90096,TJ,N2O,3.9,kg/TJ,15.213744,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,7928a8e8-1873-356b-a5cd-4495eec8a987 -2013,Capital Federal,II.5.1,3.8287199999999997,TJ,CO2,74100.0,kg/TJ,283708.152,Gas Oil combustion consumption by agriculture machines,AR-C,SESCO,annual,kg,752ccbdc-bc28-3a66-943f-c80529d7645c -2013,Capital Federal,II.5.1,3.8287199999999997,TJ,CH4,3.9,kg/TJ,14.932007999999998,Gas Oil combustion consumption by agriculture machines,AR-C,SESCO,annual,kg,bd364d3c-ebf8-3aac-bf9e-10e402f14a4c -2013,Capital Federal,II.5.1,3.8287199999999997,TJ,N2O,3.9,kg/TJ,14.932007999999998,Gas Oil combustion consumption by agriculture machines,AR-C,SESCO,annual,kg,bd364d3c-ebf8-3aac-bf9e-10e402f14a4c -2013,Santa Fe,II.5.1,20.15496,TJ,CO2,74100.0,kg/TJ,1493482.5359999998,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,9b5b91d0-810b-355e-8a1a-ad79d408dd2e -2013,Santa Fe,II.5.1,20.15496,TJ,CH4,3.9,kg/TJ,78.604344,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,2b1b94c7-b79b-3394-8c18-132eb7916bb9 -2013,Santa Fe,II.5.1,20.15496,TJ,N2O,3.9,kg/TJ,78.604344,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,2b1b94c7-b79b-3394-8c18-132eb7916bb9 -2013,Capital Federal,II.5.1,0.41118,TJ,CO2,73300.0,kg/TJ,30139.494,Naphtha combustion consumption by agriculture machines,AR-C,SESCO,annual,kg,332cb377-846e-3a62-87f5-a159daaffc74 -2013,Capital Federal,II.5.1,0.41118,TJ,CH4,0.5,kg/TJ,0.20559,Naphtha combustion consumption by agriculture machines,AR-C,SESCO,annual,kg,d5eac6e2-f379-3189-90f7-afc08d64d8bb -2013,Capital Federal,II.5.1,0.41118,TJ,N2O,2.0,kg/TJ,0.82236,Naphtha combustion consumption by agriculture machines,AR-C,SESCO,annual,kg,7a45f00a-5677-3b50-bbbb-cce93bb13762 -2013,Santa Fe,II.5.1,34.504855,TJ,CO2,73300.0,kg/TJ,2529205.8715,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,dd4cbecb-dc02-36c0-9f35-36c2150f8ae3 -2013,Santa Fe,II.5.1,34.504855,TJ,CH4,0.5,kg/TJ,17.2524275,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,9a2ed960-b8b1-3c88-9dbb-e7831db22f9e -2013,Santa Fe,II.5.1,34.504855,TJ,N2O,2.0,kg/TJ,69.00971,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,4c967114-9674-328c-a86e-9ec2acc6aa9d -2013,Buenos Aires,II.2.1,443.08403999999996,TJ,CO2,74100.0,kg/TJ,32832527.363999996,Gas Oil combustion consumption by railway transport,AR-B,SESCO,annual,kg,0c881810-bae7-3c7c-a900-bcc83d3515cb -2013,Buenos Aires,II.2.1,443.08403999999996,TJ,CH4,3.9,kg/TJ,1728.0277559999997,Gas Oil combustion consumption by railway transport,AR-B,SESCO,annual,kg,b1eeb60a-1d9b-38b2-9520-459528216b18 -2013,Buenos Aires,II.2.1,443.08403999999996,TJ,N2O,3.9,kg/TJ,1728.0277559999997,Gas Oil combustion consumption by railway transport,AR-B,SESCO,annual,kg,b1eeb60a-1d9b-38b2-9520-459528216b18 -2013,Capital Federal,II.2.1,1630.38456,TJ,CO2,74100.0,kg/TJ,120811495.896,Gas Oil combustion consumption by railway transport,AR-C,SESCO,annual,kg,7b9ab22e-9097-3a11-ae91-160fba969637 -2013,Capital Federal,II.2.1,1630.38456,TJ,CH4,3.9,kg/TJ,6358.499784,Gas Oil combustion consumption by railway transport,AR-C,SESCO,annual,kg,c8ee5a44-2d3c-35b0-81bd-5ddcec96d666 -2013,Capital Federal,II.2.1,1630.38456,TJ,N2O,3.9,kg/TJ,6358.499784,Gas Oil combustion consumption by railway transport,AR-C,SESCO,annual,kg,c8ee5a44-2d3c-35b0-81bd-5ddcec96d666 -2013,Santa Fe,II.2.1,303.62471999999997,TJ,CO2,74100.0,kg/TJ,22498591.751999997,Gas Oil combustion consumption by railway transport,AR-S,SESCO,annual,kg,d1da070e-e768-3221-adcc-7bf1c5fa6401 -2013,Santa Fe,II.2.1,303.62471999999997,TJ,CH4,3.9,kg/TJ,1184.1364079999998,Gas Oil combustion consumption by railway transport,AR-S,SESCO,annual,kg,9f2b0a48-85cc-33fd-b7eb-30830a7ab6ef -2013,Santa Fe,II.2.1,303.62471999999997,TJ,N2O,3.9,kg/TJ,1184.1364079999998,Gas Oil combustion consumption by railway transport,AR-S,SESCO,annual,kg,9f2b0a48-85cc-33fd-b7eb-30830a7ab6ef -2013,Capital Federal,II.2.1,0.68628,TJ,CO2,74100.0,kg/TJ,50853.348,Gas Oil combustion consumption by railway transport,AR-C,SESCO,annual,kg,46972f21-d00f-3017-87d5-e043e7c0b7d3 -2013,Capital Federal,II.2.1,0.68628,TJ,CH4,3.9,kg/TJ,2.676492,Gas Oil combustion consumption by railway transport,AR-C,SESCO,annual,kg,47b2f874-8eba-3024-b2eb-54c34fb88df1 -2013,Capital Federal,II.2.1,0.68628,TJ,N2O,3.9,kg/TJ,2.676492,Gas Oil combustion consumption by railway transport,AR-C,SESCO,annual,kg,47b2f874-8eba-3024-b2eb-54c34fb88df1 -2013,Buenos Aires,II.1.1,4.5629,TJ,CO2,69300.0,kg/TJ,316208.97,Motor Gasoline combustion consumption by freight transport,AR-B,SESCO,annual,kg,19fa4822-4490-3a0b-8275-e45fb9178343 -2013,Buenos Aires,II.1.1,4.5629,TJ,CH4,33.0,kg/TJ,150.5757,Motor Gasoline combustion consumption by freight transport,AR-B,SESCO,annual,kg,d8cfb1e4-ee14-3699-8fdf-ef22f9e29f8f -2013,Buenos Aires,II.1.1,4.5629,TJ,N2O,3.2,kg/TJ,14.601280000000001,Motor Gasoline combustion consumption by freight transport,AR-B,SESCO,annual,kg,9094cffb-c094-313d-b7bb-cbede110c6d7 -2013,Capital Federal,II.1.1,11.916699999999999,TJ,CO2,69300.0,kg/TJ,825827.3099999999,Motor Gasoline combustion consumption by freight transport,AR-C,SESCO,annual,kg,9772a4e3-39c9-3629-bd9d-31e48bad6532 -2013,Capital Federal,II.1.1,11.916699999999999,TJ,CH4,33.0,kg/TJ,393.25109999999995,Motor Gasoline combustion consumption by freight transport,AR-C,SESCO,annual,kg,7e5d11cf-9bc7-3915-a3e6-d2374541009c -2013,Capital Federal,II.1.1,11.916699999999999,TJ,N2O,3.2,kg/TJ,38.13344,Motor Gasoline combustion consumption by freight transport,AR-C,SESCO,annual,kg,94e183b5-d8ba-3429-838c-cc21cd61d04a -2013,Buenos Aires,II.1.1,668.83404,TJ,CO2,74100.0,kg/TJ,49560602.364,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,a3ab51da-fbd1-337b-88c7-9bff16f1bf78 -2013,Buenos Aires,II.1.1,668.83404,TJ,CH4,3.9,kg/TJ,2608.4527559999997,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,6bd22d26-468b-380c-82a5-3638d3c3e160 -2013,Buenos Aires,II.1.1,668.83404,TJ,N2O,3.9,kg/TJ,2608.4527559999997,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,6bd22d26-468b-380c-82a5-3638d3c3e160 -2013,Capital Federal,II.1.1,255.58512,TJ,CO2,74100.0,kg/TJ,18938857.392,Gas Oil combustion consumption by freight transport,AR-C,SESCO,annual,kg,ef07cecb-882b-3f77-83ce-0f36cbf7038f -2013,Capital Federal,II.1.1,255.58512,TJ,CH4,3.9,kg/TJ,996.7819679999999,Gas Oil combustion consumption by freight transport,AR-C,SESCO,annual,kg,03d8632e-5b2f-32b8-82ec-ba477f66c7a3 -2013,Capital Federal,II.1.1,255.58512,TJ,N2O,3.9,kg/TJ,996.7819679999999,Gas Oil combustion consumption by freight transport,AR-C,SESCO,annual,kg,03d8632e-5b2f-32b8-82ec-ba477f66c7a3 -2013,Córdoba,II.1.1,195.48144,TJ,CO2,74100.0,kg/TJ,14485174.704,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,91723061-ec58-35f1-985b-6dfc269492f6 -2013,Córdoba,II.1.1,195.48144,TJ,CH4,3.9,kg/TJ,762.377616,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,daf7f40b-b681-330c-8ba5-7e51ac259c4f -2013,Córdoba,II.1.1,195.48144,TJ,N2O,3.9,kg/TJ,762.377616,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,daf7f40b-b681-330c-8ba5-7e51ac259c4f -2013,Capital Federal,II.1.1,143.07132,TJ,CO2,74100.0,kg/TJ,10601584.811999999,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,525ee814-2a3e-3579-9469-627720741736 -2013,Capital Federal,II.1.1,143.07132,TJ,CH4,3.9,kg/TJ,557.9781479999999,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,8e819522-036b-367f-9665-1d88dc3e4957 -2013,Capital Federal,II.1.1,143.07132,TJ,N2O,3.9,kg/TJ,557.9781479999999,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,8e819522-036b-367f-9665-1d88dc3e4957 -2013,Misiones,II.1.1,129.77916,TJ,CO2,74100.0,kg/TJ,9616635.756,Gas Oil combustion consumption by public passenger transport,AR-N,SESCO,annual,kg,1266e2ac-affd-3ac4-b3cd-7e61a7c50e33 -2013,Misiones,II.1.1,129.77916,TJ,CH4,3.9,kg/TJ,506.13872399999997,Gas Oil combustion consumption by public passenger transport,AR-N,SESCO,annual,kg,60565ebd-0215-35db-a2d5-c662e8826d0c -2013,Misiones,II.1.1,129.77916,TJ,N2O,3.9,kg/TJ,506.13872399999997,Gas Oil combustion consumption by public passenger transport,AR-N,SESCO,annual,kg,60565ebd-0215-35db-a2d5-c662e8826d0c -2013,Buenos Aires,II.5.1,13.4229,TJ,CO2,69300.0,kg/TJ,930206.97,Motor Gasoline combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,df6fb6a7-e165-3f0b-9ec2-2d0f038e312b -2013,Buenos Aires,II.5.1,13.4229,TJ,CH4,33.0,kg/TJ,442.95570000000004,Motor Gasoline combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,076e0942-5906-3747-af82-d0b71985f5f7 -2013,Buenos Aires,II.5.1,13.4229,TJ,N2O,3.2,kg/TJ,42.95328000000001,Motor Gasoline combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,675cf6b3-ce8b-30cd-a274-01610a809abd -2013,Buenos Aires,II.5.1,9182.28192,TJ,CO2,74100.0,kg/TJ,680407090.272,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,c6f79b74-69f7-38ef-ab1e-6363036a1b07 -2013,Buenos Aires,II.5.1,9182.28192,TJ,CH4,3.9,kg/TJ,35810.899487999995,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,e201dabe-c0e6-3358-8e3e-3d9a7fe8d9c4 -2013,Buenos Aires,II.5.1,9182.28192,TJ,N2O,3.9,kg/TJ,35810.899487999995,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,e201dabe-c0e6-3358-8e3e-3d9a7fe8d9c4 -2013,Capital Federal,II.5.1,10.25808,TJ,CO2,74100.0,kg/TJ,760123.728,Gas Oil combustion consumption by agriculture machines,AR-C,SESCO,annual,kg,546c9ed8-5182-3c57-a6cd-0841765ba4d6 -2013,Capital Federal,II.5.1,10.25808,TJ,CH4,3.9,kg/TJ,40.006512,Gas Oil combustion consumption by agriculture machines,AR-C,SESCO,annual,kg,668eaafa-2007-37d4-87c4-ea46e7bae8ac -2013,Capital Federal,II.5.1,10.25808,TJ,N2O,3.9,kg/TJ,40.006512,Gas Oil combustion consumption by agriculture machines,AR-C,SESCO,annual,kg,668eaafa-2007-37d4-87c4-ea46e7bae8ac -2013,Catamarca,II.5.1,107.52924,TJ,CO2,74100.0,kg/TJ,7967916.684,Gas Oil combustion consumption by agriculture machines,AR-K,SESCO,annual,kg,83e3b390-1816-33b2-b7d0-c539c5d41448 -2013,Catamarca,II.5.1,107.52924,TJ,CH4,3.9,kg/TJ,419.364036,Gas Oil combustion consumption by agriculture machines,AR-K,SESCO,annual,kg,5f331f7c-992e-3bc7-ab9e-f93be501db5d -2013,Catamarca,II.5.1,107.52924,TJ,N2O,3.9,kg/TJ,419.364036,Gas Oil combustion consumption by agriculture machines,AR-K,SESCO,annual,kg,5f331f7c-992e-3bc7-ab9e-f93be501db5d -2013,Chaco,II.5.1,1361.68788,TJ,CO2,74100.0,kg/TJ,100901071.90799999,Gas Oil combustion consumption by agriculture machines,AR-H,SESCO,annual,kg,9a303c16-2425-353b-9bac-e51383f25ad7 -2013,Chaco,II.5.1,1361.68788,TJ,CH4,3.9,kg/TJ,5310.582732,Gas Oil combustion consumption by agriculture machines,AR-H,SESCO,annual,kg,97242177-4dec-328a-9a9c-e80524e58d46 -2013,Chaco,II.5.1,1361.68788,TJ,N2O,3.9,kg/TJ,5310.582732,Gas Oil combustion consumption by agriculture machines,AR-H,SESCO,annual,kg,97242177-4dec-328a-9a9c-e80524e58d46 -2013,Chubut,II.5.1,17.265359999999998,TJ,CO2,74100.0,kg/TJ,1279363.1759999997,Gas Oil combustion consumption by agriculture machines,AR-U,SESCO,annual,kg,a4a19dfa-6439-3b18-a1f6-f1415cb7660a -2013,Chubut,II.5.1,17.265359999999998,TJ,CH4,3.9,kg/TJ,67.334904,Gas Oil combustion consumption by agriculture machines,AR-U,SESCO,annual,kg,966f2316-955f-349d-8415-4ecde0a4737e -2013,Chubut,II.5.1,17.265359999999998,TJ,N2O,3.9,kg/TJ,67.334904,Gas Oil combustion consumption by agriculture machines,AR-U,SESCO,annual,kg,966f2316-955f-349d-8415-4ecde0a4737e -2013,Corrientes,II.5.1,386.77295999999996,TJ,CO2,74100.0,kg/TJ,28659876.335999995,Gas Oil combustion consumption by agriculture machines,AR-W,SESCO,annual,kg,6d681cb3-097f-3cc7-a321-72cf8011ae81 -2013,Corrientes,II.5.1,386.77295999999996,TJ,CH4,3.9,kg/TJ,1508.4145439999998,Gas Oil combustion consumption by agriculture machines,AR-W,SESCO,annual,kg,2f550134-fc93-314e-88ac-273e98fa6b39 -2013,Corrientes,II.5.1,386.77295999999996,TJ,N2O,3.9,kg/TJ,1508.4145439999998,Gas Oil combustion consumption by agriculture machines,AR-W,SESCO,annual,kg,2f550134-fc93-314e-88ac-273e98fa6b39 -2013,Córdoba,II.5.1,7703.240159999999,TJ,CO2,74100.0,kg/TJ,570810095.856,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,c95690e8-1ea9-3d5b-8ed7-6878170a0579 -2013,Córdoba,II.5.1,7703.240159999999,TJ,CH4,3.9,kg/TJ,30042.636623999995,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,d1b21f6e-927f-30e5-9139-c016d1daee02 -2013,Córdoba,II.5.1,7703.240159999999,TJ,N2O,3.9,kg/TJ,30042.636623999995,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,d1b21f6e-927f-30e5-9139-c016d1daee02 -2013,Entre Rios,II.5.1,2400.02952,TJ,CO2,74100.0,kg/TJ,177842187.432,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,86cf46df-fbe6-3c42-bbd3-20afda986b58 -2013,Entre Rios,II.5.1,2400.02952,TJ,CH4,3.9,kg/TJ,9360.115128,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,27f7e57f-7c31-3a02-8957-f0b94d1327df -2013,Entre Rios,II.5.1,2400.02952,TJ,N2O,3.9,kg/TJ,9360.115128,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,27f7e57f-7c31-3a02-8957-f0b94d1327df -2013,Formosa,II.5.1,416.60808,TJ,CO2,74100.0,kg/TJ,30870658.727999996,Gas Oil combustion consumption by agriculture machines,AR-P,SESCO,annual,kg,835e118e-e1f2-3843-b6b2-f1557ede98e1 -2013,Formosa,II.5.1,416.60808,TJ,CH4,3.9,kg/TJ,1624.7715119999998,Gas Oil combustion consumption by agriculture machines,AR-P,SESCO,annual,kg,2ff53d3d-4248-3a2c-97b5-ddcab2a7e078 -2013,Formosa,II.5.1,416.60808,TJ,N2O,3.9,kg/TJ,1624.7715119999998,Gas Oil combustion consumption by agriculture machines,AR-P,SESCO,annual,kg,2ff53d3d-4248-3a2c-97b5-ddcab2a7e078 -2013,Jujuy,II.5.1,961.91172,TJ,CO2,74100.0,kg/TJ,71277658.45199999,Gas Oil combustion consumption by agriculture machines,AR-Y,SESCO,annual,kg,bce4ea19-dfa6-309a-8ea7-eb33b7bdfb8b -2013,Jujuy,II.5.1,961.91172,TJ,CH4,3.9,kg/TJ,3751.4557079999995,Gas Oil combustion consumption by agriculture machines,AR-Y,SESCO,annual,kg,708f22c8-a559-32ff-988b-a03623f72437 -2013,Jujuy,II.5.1,961.91172,TJ,N2O,3.9,kg/TJ,3751.4557079999995,Gas Oil combustion consumption by agriculture machines,AR-Y,SESCO,annual,kg,708f22c8-a559-32ff-988b-a03623f72437 -2013,La Pampa,II.5.1,2224.5946799999997,TJ,CO2,74100.0,kg/TJ,164842465.788,Gas Oil combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,0ab45deb-504d-3eba-a181-4b11c3951330 -2013,La Pampa,II.5.1,2224.5946799999997,TJ,CH4,3.9,kg/TJ,8675.919251999998,Gas Oil combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,b46edce8-25fd-308c-93a5-4b040311cfe6 -2013,La Pampa,II.5.1,2224.5946799999997,TJ,N2O,3.9,kg/TJ,8675.919251999998,Gas Oil combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,b46edce8-25fd-308c-93a5-4b040311cfe6 -2013,Mendoza,II.5.1,514.4571599999999,TJ,CO2,74100.0,kg/TJ,38121275.555999994,Gas Oil combustion consumption by agriculture machines,AR-M,SESCO,annual,kg,62ace1f3-5be1-317d-b6c0-200f91842d64 -2013,Mendoza,II.5.1,514.4571599999999,TJ,CH4,3.9,kg/TJ,2006.3829239999998,Gas Oil combustion consumption by agriculture machines,AR-M,SESCO,annual,kg,5629a370-adfc-35bd-8156-f63791a3c2ff -2013,Mendoza,II.5.1,514.4571599999999,TJ,N2O,3.9,kg/TJ,2006.3829239999998,Gas Oil combustion consumption by agriculture machines,AR-M,SESCO,annual,kg,5629a370-adfc-35bd-8156-f63791a3c2ff -2013,Misiones,II.5.1,1131.49512,TJ,CO2,74100.0,kg/TJ,83843788.392,Gas Oil combustion consumption by agriculture machines,AR-N,SESCO,annual,kg,d891d44d-8fcc-3150-9e33-ee3f5ec4792c -2013,Misiones,II.5.1,1131.49512,TJ,CH4,3.9,kg/TJ,4412.830968,Gas Oil combustion consumption by agriculture machines,AR-N,SESCO,annual,kg,4fe09dd1-5c0d-3b4c-a3d8-8f9e0aa244dc -2013,Misiones,II.5.1,1131.49512,TJ,N2O,3.9,kg/TJ,4412.830968,Gas Oil combustion consumption by agriculture machines,AR-N,SESCO,annual,kg,4fe09dd1-5c0d-3b4c-a3d8-8f9e0aa244dc -2013,Rio Negro,II.5.1,181.75583999999998,TJ,CO2,74100.0,kg/TJ,13468107.743999999,Gas Oil combustion consumption by agriculture machines,AR-R,SESCO,annual,kg,b04659e2-ea50-34b0-b65e-c1c158fe4246 -2013,Rio Negro,II.5.1,181.75583999999998,TJ,CH4,3.9,kg/TJ,708.847776,Gas Oil combustion consumption by agriculture machines,AR-R,SESCO,annual,kg,af931b1f-f62d-3e88-802c-7b324c238b7a -2013,Rio Negro,II.5.1,181.75583999999998,TJ,N2O,3.9,kg/TJ,708.847776,Gas Oil combustion consumption by agriculture machines,AR-R,SESCO,annual,kg,af931b1f-f62d-3e88-802c-7b324c238b7a -2013,Salta,II.5.1,1749.94176,TJ,CO2,74100.0,kg/TJ,129670684.416,Gas Oil combustion consumption by agriculture machines,AR-A,SESCO,annual,kg,e87ac00e-cbec-3670-9e56-8dbcb092bf90 -2013,Salta,II.5.1,1749.94176,TJ,CH4,3.9,kg/TJ,6824.772864,Gas Oil combustion consumption by agriculture machines,AR-A,SESCO,annual,kg,b3321821-9e5b-388b-bdd7-f4def2b481b8 -2013,Salta,II.5.1,1749.94176,TJ,N2O,3.9,kg/TJ,6824.772864,Gas Oil combustion consumption by agriculture machines,AR-A,SESCO,annual,kg,b3321821-9e5b-388b-bdd7-f4def2b481b8 -2013,San Luis,II.5.1,579.22032,TJ,CO2,74100.0,kg/TJ,42920225.712,Gas Oil combustion consumption by agriculture machines,AR-D,SESCO,annual,kg,9410f745-e2aa-32df-8b23-b85814d686b2 -2013,San Luis,II.5.1,579.22032,TJ,CH4,3.9,kg/TJ,2258.959248,Gas Oil combustion consumption by agriculture machines,AR-D,SESCO,annual,kg,ef347b1d-22c0-329e-838a-54960666f1d3 -2013,San Luis,II.5.1,579.22032,TJ,N2O,3.9,kg/TJ,2258.959248,Gas Oil combustion consumption by agriculture machines,AR-D,SESCO,annual,kg,ef347b1d-22c0-329e-838a-54960666f1d3 -2013,Santa Cruz,II.5.1,2.05884,TJ,CO2,74100.0,kg/TJ,152560.044,Gas Oil combustion consumption by agriculture machines,AR-Z,SESCO,annual,kg,078ad81a-ac82-352c-bb7b-12aaf1d058f3 -2013,Santa Cruz,II.5.1,2.05884,TJ,CH4,3.9,kg/TJ,8.029475999999999,Gas Oil combustion consumption by agriculture machines,AR-Z,SESCO,annual,kg,7eb054d7-338c-3e62-9ef0-4f481a710008 -2013,Santa Cruz,II.5.1,2.05884,TJ,N2O,3.9,kg/TJ,8.029475999999999,Gas Oil combustion consumption by agriculture machines,AR-Z,SESCO,annual,kg,7eb054d7-338c-3e62-9ef0-4f481a710008 -2013,Santa Fe,II.5.1,6246.37608,TJ,CO2,74100.0,kg/TJ,462856467.528,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,e5b3f34c-c515-3577-8448-92d98e684428 -2013,Santa Fe,II.5.1,6246.37608,TJ,CH4,3.9,kg/TJ,24360.866712,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,3bb3f757-fcc4-3151-95e8-9b12f8f9d1d7 -2013,Santa Fe,II.5.1,6246.37608,TJ,N2O,3.9,kg/TJ,24360.866712,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,3bb3f757-fcc4-3151-95e8-9b12f8f9d1d7 -2013,Santiago del Estero,II.5.1,1476.80232,TJ,CO2,74100.0,kg/TJ,109431051.912,Gas Oil combustion consumption by agriculture machines,AR-G,SESCO,annual,kg,d9580bdb-6203-35a4-8a7f-91527438a421 -2013,Santiago del Estero,II.5.1,1476.80232,TJ,CH4,3.9,kg/TJ,5759.529048,Gas Oil combustion consumption by agriculture machines,AR-G,SESCO,annual,kg,67242214-e3ba-3c29-af8a-1fec37da41ae -2013,Santiago del Estero,II.5.1,1476.80232,TJ,N2O,3.9,kg/TJ,5759.529048,Gas Oil combustion consumption by agriculture machines,AR-G,SESCO,annual,kg,67242214-e3ba-3c29-af8a-1fec37da41ae -2013,Tucuman,II.5.1,1382.1679199999999,TJ,CO2,74100.0,kg/TJ,102418642.872,Gas Oil combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,b31053b0-9735-3697-b500-47c2278be2fe -2013,Tucuman,II.5.1,1382.1679199999999,TJ,CH4,3.9,kg/TJ,5390.454887999999,Gas Oil combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,fedb805e-1fa7-3865-ac6f-ad2dea754704 -2013,Tucuman,II.5.1,1382.1679199999999,TJ,N2O,3.9,kg/TJ,5390.454887999999,Gas Oil combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,fedb805e-1fa7-3865-ac6f-ad2dea754704 -2013,Buenos Aires,II.5.1,100.34136,TJ,CO2,74100.0,kg/TJ,7435294.776,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,23bdfc6d-fb37-35e8-a7ff-235950ebcab5 -2013,Buenos Aires,II.5.1,100.34136,TJ,CH4,3.9,kg/TJ,391.331304,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,6b87e87e-1304-3606-9ce8-3e273503d9f5 -2013,Buenos Aires,II.5.1,100.34136,TJ,N2O,3.9,kg/TJ,391.331304,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,6b87e87e-1304-3606-9ce8-3e273503d9f5 -2013,Chaco,II.5.1,7.8380399999999995,TJ,CO2,74100.0,kg/TJ,580798.764,Gas Oil combustion consumption by agriculture machines,AR-H,SESCO,annual,kg,05fcc22f-0885-37c4-b9d6-a4c8b48d8cf4 -2013,Chaco,II.5.1,7.8380399999999995,TJ,CH4,3.9,kg/TJ,30.568355999999998,Gas Oil combustion consumption by agriculture machines,AR-H,SESCO,annual,kg,04b3e18a-fa6d-3f08-b9aa-a9558c569d42 -2013,Chaco,II.5.1,7.8380399999999995,TJ,N2O,3.9,kg/TJ,30.568355999999998,Gas Oil combustion consumption by agriculture machines,AR-H,SESCO,annual,kg,04b3e18a-fa6d-3f08-b9aa-a9558c569d42 -2013,Corrientes,II.5.1,18.56568,TJ,CO2,74100.0,kg/TJ,1375716.888,Gas Oil combustion consumption by agriculture machines,AR-W,SESCO,annual,kg,76dc9ab2-986b-3efb-8d7d-b437336d86ec -2013,Corrientes,II.5.1,18.56568,TJ,CH4,3.9,kg/TJ,72.406152,Gas Oil combustion consumption by agriculture machines,AR-W,SESCO,annual,kg,09bb5dbe-8bb8-358e-88d2-aa435a85c443 -2013,Corrientes,II.5.1,18.56568,TJ,N2O,3.9,kg/TJ,72.406152,Gas Oil combustion consumption by agriculture machines,AR-W,SESCO,annual,kg,09bb5dbe-8bb8-358e-88d2-aa435a85c443 -2013,Córdoba,II.5.1,22.61112,TJ,CO2,74100.0,kg/TJ,1675483.992,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,ab2a3acc-7187-3af1-8f55-a8264c6bfd11 -2013,Córdoba,II.5.1,22.61112,TJ,CH4,3.9,kg/TJ,88.183368,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,23a6d479-d20b-385e-8b41-57db297a0076 -2013,Córdoba,II.5.1,22.61112,TJ,N2O,3.9,kg/TJ,88.183368,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,23a6d479-d20b-385e-8b41-57db297a0076 -2013,Entre Rios,II.5.1,6.42936,TJ,CO2,74100.0,kg/TJ,476415.576,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,52da28e2-6270-3eef-a0f9-bf6970979f95 -2013,Entre Rios,II.5.1,6.42936,TJ,CH4,3.9,kg/TJ,25.074504,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,bc577fab-4b3b-3780-87c7-8d699452775b -2013,Entre Rios,II.5.1,6.42936,TJ,N2O,3.9,kg/TJ,25.074504,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,bc577fab-4b3b-3780-87c7-8d699452775b -2013,Jujuy,II.5.1,17.6988,TJ,CO2,74100.0,kg/TJ,1311481.0799999998,Gas Oil combustion consumption by agriculture machines,AR-Y,SESCO,annual,kg,02c37a66-d759-3bf8-97c2-68e42c7608de -2013,Jujuy,II.5.1,17.6988,TJ,CH4,3.9,kg/TJ,69.02532,Gas Oil combustion consumption by agriculture machines,AR-Y,SESCO,annual,kg,e91c7cf0-34bc-361d-bf62-ba7070588d5a -2013,Jujuy,II.5.1,17.6988,TJ,N2O,3.9,kg/TJ,69.02532,Gas Oil combustion consumption by agriculture machines,AR-Y,SESCO,annual,kg,e91c7cf0-34bc-361d-bf62-ba7070588d5a -2013,La Pampa,II.5.1,90.73344,TJ,CO2,74100.0,kg/TJ,6723347.904,Gas Oil combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,c2dcb365-f01e-39ba-8bdb-f011dc4f28a2 -2013,La Pampa,II.5.1,90.73344,TJ,CH4,3.9,kg/TJ,353.860416,Gas Oil combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,3b1c2e68-3b5c-3479-b48b-fcb3272d7488 -2013,La Pampa,II.5.1,90.73344,TJ,N2O,3.9,kg/TJ,353.860416,Gas Oil combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,3b1c2e68-3b5c-3479-b48b-fcb3272d7488 -2013,Misiones,II.5.1,18.09612,TJ,CO2,74100.0,kg/TJ,1340922.4919999999,Gas Oil combustion consumption by agriculture machines,AR-N,SESCO,annual,kg,6d1001a5-985f-37cc-85b1-cab23e9300b1 -2013,Misiones,II.5.1,18.09612,TJ,CH4,3.9,kg/TJ,70.574868,Gas Oil combustion consumption by agriculture machines,AR-N,SESCO,annual,kg,c000a905-a2d5-39ba-beba-6ac0f7d23d78 -2013,Misiones,II.5.1,18.09612,TJ,N2O,3.9,kg/TJ,70.574868,Gas Oil combustion consumption by agriculture machines,AR-N,SESCO,annual,kg,c000a905-a2d5-39ba-beba-6ac0f7d23d78 -2013,Salta,II.5.1,123.31367999999999,TJ,CO2,74100.0,kg/TJ,9137543.688,Gas Oil combustion consumption by agriculture machines,AR-A,SESCO,annual,kg,6b90243f-565b-3580-9751-0a4ab72272be -2013,Salta,II.5.1,123.31367999999999,TJ,CH4,3.9,kg/TJ,480.92335199999997,Gas Oil combustion consumption by agriculture machines,AR-A,SESCO,annual,kg,95e40b21-e2a1-3487-afa1-c97cd42a5640 -2013,Salta,II.5.1,123.31367999999999,TJ,N2O,3.9,kg/TJ,480.92335199999997,Gas Oil combustion consumption by agriculture machines,AR-A,SESCO,annual,kg,95e40b21-e2a1-3487-afa1-c97cd42a5640 -2013,Santa Fe,II.5.1,88.96356,TJ,CO2,74100.0,kg/TJ,6592199.796,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,758ef544-1e0a-3afd-abe7-7f21d40a3084 -2013,Santa Fe,II.5.1,88.96356,TJ,CH4,3.9,kg/TJ,346.957884,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,b2f35b30-7722-3677-865d-f1012ea10f08 -2013,Santa Fe,II.5.1,88.96356,TJ,N2O,3.9,kg/TJ,346.957884,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,b2f35b30-7722-3677-865d-f1012ea10f08 -2013,Santiago del Estero,II.5.1,97.19892,TJ,CO2,74100.0,kg/TJ,7202439.972,Gas Oil combustion consumption by agriculture machines,AR-G,SESCO,annual,kg,1b3b26f5-140e-34ce-bcdb-01974f9ac873 -2013,Santiago del Estero,II.5.1,97.19892,TJ,CH4,3.9,kg/TJ,379.075788,Gas Oil combustion consumption by agriculture machines,AR-G,SESCO,annual,kg,4c73ea1b-37dd-3f19-8ee6-8171006119f9 -2013,Santiago del Estero,II.5.1,97.19892,TJ,N2O,3.9,kg/TJ,379.075788,Gas Oil combustion consumption by agriculture machines,AR-G,SESCO,annual,kg,4c73ea1b-37dd-3f19-8ee6-8171006119f9 -2013,Tucuman,II.5.1,92.50332,TJ,CO2,74100.0,kg/TJ,6854496.012,Gas Oil combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,32ed3c0a-23c4-3f63-bc35-d6c9f5170946 -2013,Tucuman,II.5.1,92.50332,TJ,CH4,3.9,kg/TJ,360.762948,Gas Oil combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,80940d21-863e-3e5a-a369-319079325d97 -2013,Tucuman,II.5.1,92.50332,TJ,N2O,3.9,kg/TJ,360.762948,Gas Oil combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,80940d21-863e-3e5a-a369-319079325d97 -2013,Buenos Aires,II.5.1,10.662567,TJ,CO2,71500.0,kg/TJ,762373.5405,Jet Kerosene combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,418c4411-458c-30d6-ad4f-60605d97a716 -2013,Buenos Aires,II.5.1,10.662567,TJ,CH4,0.5,kg/TJ,5.3312835,Jet Kerosene combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,72675234-50ad-36dc-81a2-8286ef6422b3 -2013,Buenos Aires,II.5.1,10.662567,TJ,N2O,2.0,kg/TJ,21.325134,Jet Kerosene combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,92f30965-e91d-3786-abd5-b99d224b6db6 -2013,Córdoba,II.5.1,0.62906,TJ,CO2,71500.0,kg/TJ,44977.78999999999,Jet Kerosene combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,11b9baef-3706-3fd4-9f1c-cb581ac4b75b -2013,Córdoba,II.5.1,0.62906,TJ,CH4,0.5,kg/TJ,0.31453,Jet Kerosene combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,e4a00eb6-4649-3045-a36c-a3da6a04d8c6 -2013,Córdoba,II.5.1,0.62906,TJ,N2O,2.0,kg/TJ,1.25812,Jet Kerosene combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,845cbfb1-a493-3cfb-80e7-7a024903736c -2013,Entre Rios,II.5.1,0.28307699999999997,TJ,CO2,71500.0,kg/TJ,20240.0055,Jet Kerosene combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,cc792cdc-d228-338a-bb13-ca68e37f94ef -2013,Entre Rios,II.5.1,0.28307699999999997,TJ,CH4,0.5,kg/TJ,0.14153849999999998,Jet Kerosene combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,dc4b07dd-66f0-3b8c-b844-1bd9cba8b39e -2013,Entre Rios,II.5.1,0.28307699999999997,TJ,N2O,2.0,kg/TJ,0.5661539999999999,Jet Kerosene combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,37f2b4ef-68e3-3354-a06c-2e31094aa7bb -2013,La Pampa,II.5.1,3.050941,TJ,CO2,71500.0,kg/TJ,218142.28149999998,Jet Kerosene combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,928df6a6-5e75-3045-aa77-d7d4f8f1d3b9 -2013,La Pampa,II.5.1,3.050941,TJ,CH4,0.5,kg/TJ,1.5254705,Jet Kerosene combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,f6e08f47-40fa-37cf-9ec0-289198924de0 -2013,La Pampa,II.5.1,3.050941,TJ,N2O,2.0,kg/TJ,6.101882,Jet Kerosene combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,5a3f7f9f-3732-3fde-b551-d8272f00c0c1 -2013,Santa Fe,II.5.1,4.277608,TJ,CO2,71500.0,kg/TJ,305848.972,Jet Kerosene combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,7abfcf92-91d8-3b95-8f33-b49a7c2f3c76 -2013,Santa Fe,II.5.1,4.277608,TJ,CH4,0.5,kg/TJ,2.138804,Jet Kerosene combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,08d4cfdf-d282-39bd-bf2d-29cc0133bf9f -2013,Santa Fe,II.5.1,4.277608,TJ,N2O,2.0,kg/TJ,8.555216,Jet Kerosene combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,b0210b15-ab4a-3cf5-8b76-e642732bfecd -2013,Buenos Aires,II.5.1,4.420185,TJ,CO2,73300.0,kg/TJ,323999.5605,Naphtha combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,fe367594-a8bf-3936-86f3-7b9e442df89f -2013,Buenos Aires,II.5.1,4.420185,TJ,CH4,0.5,kg/TJ,2.2100925,Naphtha combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,14fa37f4-973f-38e6-8151-32cc4129e76f -2013,Buenos Aires,II.5.1,4.420185,TJ,N2O,2.0,kg/TJ,8.84037,Naphtha combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,085b4fe5-a00e-3100-a896-7451aecf52af -2013,Chubut,II.5.1,13.466145,TJ,CO2,73300.0,kg/TJ,987068.4284999999,Naphtha combustion consumption by agriculture machines,AR-U,SESCO,annual,kg,a8557e58-c40c-38c2-92b4-d31320b7d4de -2013,Chubut,II.5.1,13.466145,TJ,CH4,0.5,kg/TJ,6.7330725,Naphtha combustion consumption by agriculture machines,AR-U,SESCO,annual,kg,9a001e28-de12-323e-bdc4-e64bb62d29d9 -2013,Chubut,II.5.1,13.466145,TJ,N2O,2.0,kg/TJ,26.93229,Naphtha combustion consumption by agriculture machines,AR-U,SESCO,annual,kg,11d2915c-7d2f-3d55-a3c0-a5db0eedb4b8 -2013,Entre Rios,II.5.1,3.9747399999999997,TJ,CO2,73300.0,kg/TJ,291348.442,Naphtha combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,d53833a8-4a51-31b9-a910-6b509c4f23b7 -2013,Entre Rios,II.5.1,3.9747399999999997,TJ,CH4,0.5,kg/TJ,1.9873699999999999,Naphtha combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,66d40dc7-0da0-373f-9392-16bb929007ed -2013,Entre Rios,II.5.1,3.9747399999999997,TJ,N2O,2.0,kg/TJ,7.949479999999999,Naphtha combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,5b07dd04-ca66-3898-adcd-a31d677e3a78 -2013,La Pampa,II.5.1,0.925155,TJ,CO2,73300.0,kg/TJ,67813.8615,Naphtha combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,7a34a702-908d-3cfe-bb66-d082140e3a5f -2013,La Pampa,II.5.1,0.925155,TJ,CH4,0.5,kg/TJ,0.4625775,Naphtha combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,8a02bb0e-aabd-3069-90eb-52d017c4a570 -2013,La Pampa,II.5.1,0.925155,TJ,N2O,2.0,kg/TJ,1.85031,Naphtha combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,5d5f008a-b0ce-32f3-a125-9dcb26b32298 -2013,Santa Fe,II.5.1,31.352475,TJ,CO2,73300.0,kg/TJ,2298136.4175,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,b42ed581-09e7-3e0b-a319-5496cb345e36 -2013,Santa Fe,II.5.1,31.352475,TJ,CH4,0.5,kg/TJ,15.6762375,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,adec9bb1-4595-3a87-b039-2fa77fc220e3 -2013,Santa Fe,II.5.1,31.352475,TJ,N2O,2.0,kg/TJ,62.70495,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,8fc8c276-279a-33d6-a83c-8308d33127a7 -2013,Santiago del Estero,II.5.1,0.445445,TJ,CO2,73300.0,kg/TJ,32651.118499999997,Naphtha combustion consumption by agriculture machines,AR-G,SESCO,annual,kg,3be055b5-4287-3f6f-a0fd-97ffecc30220 -2013,Santiago del Estero,II.5.1,0.445445,TJ,CH4,0.5,kg/TJ,0.2227225,Naphtha combustion consumption by agriculture machines,AR-G,SESCO,annual,kg,269c9357-6ece-3dff-826b-be3912569165 -2013,Santiago del Estero,II.5.1,0.445445,TJ,N2O,2.0,kg/TJ,0.89089,Naphtha combustion consumption by agriculture machines,AR-G,SESCO,annual,kg,7b08acc9-d21c-3264-a90e-3159be093d24 -2013,Buenos Aires,II.5.1,0.9594199999999999,TJ,CO2,73300.0,kg/TJ,70325.48599999999,Naphtha combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,34ee2ed7-cf4f-34a7-96ed-61fb814ce475 -2013,Buenos Aires,II.5.1,0.9594199999999999,TJ,CH4,0.5,kg/TJ,0.47970999999999997,Naphtha combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,b3db598f-8cc0-3f74-846b-835dfc246f3a -2013,Buenos Aires,II.5.1,0.9594199999999999,TJ,N2O,2.0,kg/TJ,1.9188399999999999,Naphtha combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,b068cdea-6315-3559-a4f6-5670c182c5d4 -2013,Santa Fe,II.5.1,2.26149,TJ,CO2,73300.0,kg/TJ,165767.21699999998,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,4e1129de-4979-3bda-910b-57f561a98bc7 -2013,Santa Fe,II.5.1,2.26149,TJ,CH4,0.5,kg/TJ,1.130745,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,a5f6adc7-2bbf-3217-9e69-26f1ba98c26d -2013,Santa Fe,II.5.1,2.26149,TJ,N2O,2.0,kg/TJ,4.52298,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,c0288695-de95-3afc-ba15-22e1efe7dcb0 -2013,Buenos Aires,II.1.1,43.192499999999995,TJ,CO2,69300.0,kg/TJ,2993240.2499999995,Motor Gasoline combustion consumption by freight transport,AR-B,SESCO,annual,kg,42f39cc2-88b7-309e-b49e-ea4a1f148c46 -2013,Buenos Aires,II.1.1,43.192499999999995,TJ,CH4,33.0,kg/TJ,1425.3525,Motor Gasoline combustion consumption by freight transport,AR-B,SESCO,annual,kg,4052bb14-c2db-380a-8b68-9f4f102c1e7e -2013,Buenos Aires,II.1.1,43.192499999999995,TJ,N2O,3.2,kg/TJ,138.21599999999998,Motor Gasoline combustion consumption by freight transport,AR-B,SESCO,annual,kg,7625451a-33a3-3f7e-b408-18f13720b98f -2013,Capital Federal,II.1.1,15.504999999999997,TJ,CO2,69300.0,kg/TJ,1074496.4999999998,Motor Gasoline combustion consumption by freight transport,AR-C,SESCO,annual,kg,62d904cc-ab3d-3726-8281-2d1f744ee945 -2013,Capital Federal,II.1.1,15.504999999999997,TJ,CH4,33.0,kg/TJ,511.6649999999999,Motor Gasoline combustion consumption by freight transport,AR-C,SESCO,annual,kg,c5500f26-c6f7-3f83-bb3e-a6fd312bca37 -2013,Capital Federal,II.1.1,15.504999999999997,TJ,N2O,3.2,kg/TJ,49.61599999999999,Motor Gasoline combustion consumption by freight transport,AR-C,SESCO,annual,kg,47b647f3-6438-390e-95c2-511cbfc0ea74 -2013,Buenos Aires,II.1.1,6913.22352,TJ,CO2,74100.0,kg/TJ,512269862.83199996,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,58a31817-623e-3908-b1c5-0a4c680e6bba -2013,Buenos Aires,II.1.1,6913.22352,TJ,CH4,3.9,kg/TJ,26961.571728,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,2a48b68b-b282-37c3-a3ad-354f88a9e4f4 -2013,Buenos Aires,II.1.1,6913.22352,TJ,N2O,3.9,kg/TJ,26961.571728,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,2a48b68b-b282-37c3-a3ad-354f88a9e4f4 -2013,Capital Federal,II.1.1,4009.7895599999997,TJ,CO2,74100.0,kg/TJ,297125406.39599997,Gas Oil combustion consumption by freight transport,AR-C,SESCO,annual,kg,28d9bc12-4c0c-3357-8140-2499457c04cc -2013,Capital Federal,II.1.1,4009.7895599999997,TJ,CH4,3.9,kg/TJ,15638.179283999998,Gas Oil combustion consumption by freight transport,AR-C,SESCO,annual,kg,2b695d44-4218-3c64-b0d7-c0b254508429 -2013,Capital Federal,II.1.1,4009.7895599999997,TJ,N2O,3.9,kg/TJ,15638.179283999998,Gas Oil combustion consumption by freight transport,AR-C,SESCO,annual,kg,2b695d44-4218-3c64-b0d7-c0b254508429 -2013,Catamarca,II.1.1,19.28808,TJ,CO2,74100.0,kg/TJ,1429246.7280000001,Gas Oil combustion consumption by freight transport,AR-K,SESCO,annual,kg,243457bb-72b1-3c23-bb17-a359f21613b2 -2013,Catamarca,II.1.1,19.28808,TJ,CH4,3.9,kg/TJ,75.223512,Gas Oil combustion consumption by freight transport,AR-K,SESCO,annual,kg,84884a7b-dedd-3734-bd0b-daaa12f39305 -2013,Catamarca,II.1.1,19.28808,TJ,N2O,3.9,kg/TJ,75.223512,Gas Oil combustion consumption by freight transport,AR-K,SESCO,annual,kg,84884a7b-dedd-3734-bd0b-daaa12f39305 -2013,Chaco,II.1.1,195.7704,TJ,CO2,74100.0,kg/TJ,14506586.639999999,Gas Oil combustion consumption by freight transport,AR-H,SESCO,annual,kg,9815914e-8025-3c58-b11b-dc596e167a2d -2013,Chaco,II.1.1,195.7704,TJ,CH4,3.9,kg/TJ,763.50456,Gas Oil combustion consumption by freight transport,AR-H,SESCO,annual,kg,d77925be-93bd-301e-9bbe-883e10422cda -2013,Chaco,II.1.1,195.7704,TJ,N2O,3.9,kg/TJ,763.50456,Gas Oil combustion consumption by freight transport,AR-H,SESCO,annual,kg,d77925be-93bd-301e-9bbe-883e10422cda -2013,Chubut,II.1.1,212.89128,TJ,CO2,74100.0,kg/TJ,15775243.848,Gas Oil combustion consumption by freight transport,AR-U,SESCO,annual,kg,6664c558-3aed-3b27-9867-96f84a97915b -2013,Chubut,II.1.1,212.89128,TJ,CH4,3.9,kg/TJ,830.275992,Gas Oil combustion consumption by freight transport,AR-U,SESCO,annual,kg,dcb96f3e-4553-39cc-a180-00d0f3562fb6 -2013,Chubut,II.1.1,212.89128,TJ,N2O,3.9,kg/TJ,830.275992,Gas Oil combustion consumption by freight transport,AR-U,SESCO,annual,kg,dcb96f3e-4553-39cc-a180-00d0f3562fb6 -2013,Corrientes,II.1.1,297.05088,TJ,CO2,74100.0,kg/TJ,22011470.208,Gas Oil combustion consumption by freight transport,AR-W,SESCO,annual,kg,3bb9e608-7e4b-3eb8-b753-5c0fa5e232a1 -2013,Corrientes,II.1.1,297.05088,TJ,CH4,3.9,kg/TJ,1158.498432,Gas Oil combustion consumption by freight transport,AR-W,SESCO,annual,kg,d5dcd818-3b7b-3694-83a1-f202f3191756 -2013,Corrientes,II.1.1,297.05088,TJ,N2O,3.9,kg/TJ,1158.498432,Gas Oil combustion consumption by freight transport,AR-W,SESCO,annual,kg,d5dcd818-3b7b-3694-83a1-f202f3191756 -2013,Córdoba,II.1.1,1935.2012399999999,TJ,CO2,74100.0,kg/TJ,143398411.884,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,d84b24d4-8d56-3c30-adf7-fc1ab182e391 -2013,Córdoba,II.1.1,1935.2012399999999,TJ,CH4,3.9,kg/TJ,7547.284835999999,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,f5459c5c-7a7e-39ab-a350-3871dc76ffbd -2013,Córdoba,II.1.1,1935.2012399999999,TJ,N2O,3.9,kg/TJ,7547.284835999999,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,f5459c5c-7a7e-39ab-a350-3871dc76ffbd -2013,Entre Rios,II.1.1,301.602,TJ,CO2,74100.0,kg/TJ,22348708.2,Gas Oil combustion consumption by freight transport,AR-E,SESCO,annual,kg,05d78a72-00f1-39c4-86ea-a68d32372cfb -2013,Entre Rios,II.1.1,301.602,TJ,CH4,3.9,kg/TJ,1176.2477999999999,Gas Oil combustion consumption by freight transport,AR-E,SESCO,annual,kg,caa3f3e8-7dd8-38be-b0ec-3f2172e77530 -2013,Entre Rios,II.1.1,301.602,TJ,N2O,3.9,kg/TJ,1176.2477999999999,Gas Oil combustion consumption by freight transport,AR-E,SESCO,annual,kg,caa3f3e8-7dd8-38be-b0ec-3f2172e77530 -2013,Formosa,II.1.1,1.2280799999999998,TJ,CO2,74100.0,kg/TJ,91000.72799999999,Gas Oil combustion consumption by freight transport,AR-P,SESCO,annual,kg,460c3f3e-4a99-338d-805c-0c684ec260bb -2013,Formosa,II.1.1,1.2280799999999998,TJ,CH4,3.9,kg/TJ,4.789511999999999,Gas Oil combustion consumption by freight transport,AR-P,SESCO,annual,kg,b6a218cc-b647-3fa3-86ca-4d28dfa9f637 -2013,Formosa,II.1.1,1.2280799999999998,TJ,N2O,3.9,kg/TJ,4.789511999999999,Gas Oil combustion consumption by freight transport,AR-P,SESCO,annual,kg,b6a218cc-b647-3fa3-86ca-4d28dfa9f637 -2013,Jujuy,II.1.1,93.1896,TJ,CO2,74100.0,kg/TJ,6905349.36,Gas Oil combustion consumption by freight transport,AR-Y,SESCO,annual,kg,c8ef4f7b-cd37-3380-a433-ba1cbc4dc550 -2013,Jujuy,II.1.1,93.1896,TJ,CH4,3.9,kg/TJ,363.43944,Gas Oil combustion consumption by freight transport,AR-Y,SESCO,annual,kg,a2c9b583-3f3e-33cb-9c2b-41202b888d11 -2013,Jujuy,II.1.1,93.1896,TJ,N2O,3.9,kg/TJ,363.43944,Gas Oil combustion consumption by freight transport,AR-Y,SESCO,annual,kg,a2c9b583-3f3e-33cb-9c2b-41202b888d11 -2013,La Pampa,II.1.1,69.67548,TJ,CO2,74100.0,kg/TJ,5162953.067999999,Gas Oil combustion consumption by freight transport,AR-L,SESCO,annual,kg,2e67cc2b-6ca2-3eb3-bd21-81e4e6bb4c3f -2013,La Pampa,II.1.1,69.67548,TJ,CH4,3.9,kg/TJ,271.73437199999995,Gas Oil combustion consumption by freight transport,AR-L,SESCO,annual,kg,ede50abe-9bed-3567-898a-bf81179cb3c0 -2013,La Pampa,II.1.1,69.67548,TJ,N2O,3.9,kg/TJ,271.73437199999995,Gas Oil combustion consumption by freight transport,AR-L,SESCO,annual,kg,ede50abe-9bed-3567-898a-bf81179cb3c0 -2013,La Rioja,II.1.1,1.40868,TJ,CO2,74100.0,kg/TJ,104383.188,Gas Oil combustion consumption by freight transport,AR-F,SESCO,annual,kg,d4a3dd28-9e19-3a6c-9994-09db10d88e15 -2013,La Rioja,II.1.1,1.40868,TJ,CH4,3.9,kg/TJ,5.4938519999999995,Gas Oil combustion consumption by freight transport,AR-F,SESCO,annual,kg,488c47cf-a431-38ae-9819-8da40fb4e6ac -2013,La Rioja,II.1.1,1.40868,TJ,N2O,3.9,kg/TJ,5.4938519999999995,Gas Oil combustion consumption by freight transport,AR-F,SESCO,annual,kg,488c47cf-a431-38ae-9819-8da40fb4e6ac -2013,Mendoza,II.1.1,1598.1294,TJ,CO2,74100.0,kg/TJ,118421388.54,Gas Oil combustion consumption by freight transport,AR-M,SESCO,annual,kg,d5cc99e7-9144-3888-b4c8-c905caa902cb -2013,Mendoza,II.1.1,1598.1294,TJ,CH4,3.9,kg/TJ,6232.70466,Gas Oil combustion consumption by freight transport,AR-M,SESCO,annual,kg,9d109c5f-1064-3f7a-9385-4ce7e6b32147 -2013,Mendoza,II.1.1,1598.1294,TJ,N2O,3.9,kg/TJ,6232.70466,Gas Oil combustion consumption by freight transport,AR-M,SESCO,annual,kg,9d109c5f-1064-3f7a-9385-4ce7e6b32147 -2013,Misiones,II.1.1,474.72515999999996,TJ,CO2,74100.0,kg/TJ,35177134.356,Gas Oil combustion consumption by freight transport,AR-N,SESCO,annual,kg,07905e67-45be-3546-b885-fa1c5da8949c -2013,Misiones,II.1.1,474.72515999999996,TJ,CH4,3.9,kg/TJ,1851.4281239999998,Gas Oil combustion consumption by freight transport,AR-N,SESCO,annual,kg,9d2a63d8-c53c-3ce1-a7ad-6e8203066dd6 -2013,Misiones,II.1.1,474.72515999999996,TJ,N2O,3.9,kg/TJ,1851.4281239999998,Gas Oil combustion consumption by freight transport,AR-N,SESCO,annual,kg,9d2a63d8-c53c-3ce1-a7ad-6e8203066dd6 -2013,Neuquén,II.1.1,676.49148,TJ,CO2,74100.0,kg/TJ,50128018.668000005,Gas Oil combustion consumption by freight transport,AR-Q,SESCO,annual,kg,5de01d9e-de76-3947-953c-ee258234adf5 -2013,Neuquén,II.1.1,676.49148,TJ,CH4,3.9,kg/TJ,2638.316772,Gas Oil combustion consumption by freight transport,AR-Q,SESCO,annual,kg,59f6c520-5c5c-30db-b56f-c4a3c2085f5a -2013,Neuquén,II.1.1,676.49148,TJ,N2O,3.9,kg/TJ,2638.316772,Gas Oil combustion consumption by freight transport,AR-Q,SESCO,annual,kg,59f6c520-5c5c-30db-b56f-c4a3c2085f5a -2013,Rio Negro,II.1.1,119.44883999999999,TJ,CO2,74100.0,kg/TJ,8851159.044,Gas Oil combustion consumption by freight transport,AR-R,SESCO,annual,kg,367338d6-ff15-3366-8f92-e1d5ed475f6b -2013,Rio Negro,II.1.1,119.44883999999999,TJ,CH4,3.9,kg/TJ,465.85047599999996,Gas Oil combustion consumption by freight transport,AR-R,SESCO,annual,kg,cd4b3ff9-0670-390e-90a8-fbd1c5db9112 -2013,Rio Negro,II.1.1,119.44883999999999,TJ,N2O,3.9,kg/TJ,465.85047599999996,Gas Oil combustion consumption by freight transport,AR-R,SESCO,annual,kg,cd4b3ff9-0670-390e-90a8-fbd1c5db9112 -2013,Salta,II.1.1,234.63551999999999,TJ,CO2,74100.0,kg/TJ,17386492.031999998,Gas Oil combustion consumption by freight transport,AR-A,SESCO,annual,kg,c2f997dc-fed0-3969-bca8-62315963351a -2013,Salta,II.1.1,234.63551999999999,TJ,CH4,3.9,kg/TJ,915.0785279999999,Gas Oil combustion consumption by freight transport,AR-A,SESCO,annual,kg,2a90ab1c-6fef-3654-90bb-a93e7306dd98 -2013,Salta,II.1.1,234.63551999999999,TJ,N2O,3.9,kg/TJ,915.0785279999999,Gas Oil combustion consumption by freight transport,AR-A,SESCO,annual,kg,2a90ab1c-6fef-3654-90bb-a93e7306dd98 -2013,San Juan,II.1.1,107.67371999999999,TJ,CO2,74100.0,kg/TJ,7978622.651999999,Gas Oil combustion consumption by freight transport,AR-J,SESCO,annual,kg,b74efe5e-2523-3a8c-90eb-a32e98cb10ed -2013,San Juan,II.1.1,107.67371999999999,TJ,CH4,3.9,kg/TJ,419.92750799999993,Gas Oil combustion consumption by freight transport,AR-J,SESCO,annual,kg,462ddb05-4b5f-30f8-bbc3-265c678e9870 -2013,San Juan,II.1.1,107.67371999999999,TJ,N2O,3.9,kg/TJ,419.92750799999993,Gas Oil combustion consumption by freight transport,AR-J,SESCO,annual,kg,462ddb05-4b5f-30f8-bbc3-265c678e9870 -2013,San Luis,II.1.1,134.33028,TJ,CO2,74100.0,kg/TJ,9953873.748,Gas Oil combustion consumption by freight transport,AR-D,SESCO,annual,kg,e6fc2df3-1422-37f2-958c-f1fcaeabb4db -2013,San Luis,II.1.1,134.33028,TJ,CH4,3.9,kg/TJ,523.8880919999999,Gas Oil combustion consumption by freight transport,AR-D,SESCO,annual,kg,24c96caf-a5e9-3949-be1b-74437dea0002 -2013,San Luis,II.1.1,134.33028,TJ,N2O,3.9,kg/TJ,523.8880919999999,Gas Oil combustion consumption by freight transport,AR-D,SESCO,annual,kg,24c96caf-a5e9-3949-be1b-74437dea0002 -2013,Santa Cruz,II.1.1,95.60964,TJ,CO2,74100.0,kg/TJ,7084674.324,Gas Oil combustion consumption by freight transport,AR-Z,SESCO,annual,kg,408e45a0-76b3-3acf-a70c-03f9760c3332 -2013,Santa Cruz,II.1.1,95.60964,TJ,CH4,3.9,kg/TJ,372.877596,Gas Oil combustion consumption by freight transport,AR-Z,SESCO,annual,kg,72af24b0-1c77-3baa-b76a-008d484be343 -2013,Santa Cruz,II.1.1,95.60964,TJ,N2O,3.9,kg/TJ,372.877596,Gas Oil combustion consumption by freight transport,AR-Z,SESCO,annual,kg,72af24b0-1c77-3baa-b76a-008d484be343 -2013,Santa Fe,II.1.1,1899.4063199999998,TJ,CO2,74100.0,kg/TJ,140746008.31199998,Gas Oil combustion consumption by freight transport,AR-S,SESCO,annual,kg,4c8ced39-479a-3b1e-a1ff-90740f7564a3 -2013,Santa Fe,II.1.1,1899.4063199999998,TJ,CH4,3.9,kg/TJ,7407.6846479999995,Gas Oil combustion consumption by freight transport,AR-S,SESCO,annual,kg,7a808217-b982-3f1c-8de6-fc02a4d2b371 -2013,Santa Fe,II.1.1,1899.4063199999998,TJ,N2O,3.9,kg/TJ,7407.6846479999995,Gas Oil combustion consumption by freight transport,AR-S,SESCO,annual,kg,7a808217-b982-3f1c-8de6-fc02a4d2b371 -2013,Santiago del Estero,II.1.1,56.491679999999995,TJ,CO2,74100.0,kg/TJ,4186033.4879999994,Gas Oil combustion consumption by freight transport,AR-G,SESCO,annual,kg,d3a3d422-e637-37ac-b97a-dc62dc253f13 -2013,Santiago del Estero,II.1.1,56.491679999999995,TJ,CH4,3.9,kg/TJ,220.31755199999998,Gas Oil combustion consumption by freight transport,AR-G,SESCO,annual,kg,be4c3381-3bc7-3a0b-89b4-e578d9764c2c -2013,Santiago del Estero,II.1.1,56.491679999999995,TJ,N2O,3.9,kg/TJ,220.31755199999998,Gas Oil combustion consumption by freight transport,AR-G,SESCO,annual,kg,be4c3381-3bc7-3a0b-89b4-e578d9764c2c -2013,Tierra del Fuego,II.1.1,1.8059999999999998,TJ,CO2,74100.0,kg/TJ,133824.59999999998,Gas Oil combustion consumption by freight transport,AR-V,SESCO,annual,kg,00fed2e0-336c-3f11-ae61-843265d7b56e -2013,Tierra del Fuego,II.1.1,1.8059999999999998,TJ,CH4,3.9,kg/TJ,7.043399999999999,Gas Oil combustion consumption by freight transport,AR-V,SESCO,annual,kg,5e70f2a7-f481-30db-a036-58f8e684c557 -2013,Tierra del Fuego,II.1.1,1.8059999999999998,TJ,N2O,3.9,kg/TJ,7.043399999999999,Gas Oil combustion consumption by freight transport,AR-V,SESCO,annual,kg,5e70f2a7-f481-30db-a036-58f8e684c557 -2013,Tucuman,II.1.1,272.74212,TJ,CO2,74100.0,kg/TJ,20210191.092,Gas Oil combustion consumption by freight transport,AR-T,SESCO,annual,kg,d874257d-5ab8-3d60-89ab-2776d54779b0 -2013,Tucuman,II.1.1,272.74212,TJ,CH4,3.9,kg/TJ,1063.694268,Gas Oil combustion consumption by freight transport,AR-T,SESCO,annual,kg,10d20593-b244-3ab8-924c-33d299b51b41 -2013,Tucuman,II.1.1,272.74212,TJ,N2O,3.9,kg/TJ,1063.694268,Gas Oil combustion consumption by freight transport,AR-T,SESCO,annual,kg,10d20593-b244-3ab8-924c-33d299b51b41 -2013,Buenos Aires,II.1.1,243.52104,TJ,CO2,74100.0,kg/TJ,18044909.064,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,98b8d372-d2d2-3326-a998-254c106c55a0 -2013,Buenos Aires,II.1.1,243.52104,TJ,CH4,3.9,kg/TJ,949.732056,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,622cba15-07f9-308d-b5ec-c37fe464bbc1 -2013,Buenos Aires,II.1.1,243.52104,TJ,N2O,3.9,kg/TJ,949.732056,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,622cba15-07f9-308d-b5ec-c37fe464bbc1 -2013,Capital Federal,II.1.1,444.02315999999996,TJ,CO2,74100.0,kg/TJ,32902116.155999996,Gas Oil combustion consumption by freight transport,AR-C,SESCO,annual,kg,c4d0687c-cc14-38f6-8489-db936d2ac99d -2013,Capital Federal,II.1.1,444.02315999999996,TJ,CH4,3.9,kg/TJ,1731.690324,Gas Oil combustion consumption by freight transport,AR-C,SESCO,annual,kg,d2b5d1ad-46e4-3cae-9416-95c725907d9f -2013,Capital Federal,II.1.1,444.02315999999996,TJ,N2O,3.9,kg/TJ,1731.690324,Gas Oil combustion consumption by freight transport,AR-C,SESCO,annual,kg,d2b5d1ad-46e4-3cae-9416-95c725907d9f -2013,Chaco,II.1.1,7.7658,TJ,CO2,74100.0,kg/TJ,575445.78,Gas Oil combustion consumption by freight transport,AR-H,SESCO,annual,kg,53841e57-48e1-339d-b047-7a112356ab38 -2013,Chaco,II.1.1,7.7658,TJ,CH4,3.9,kg/TJ,30.28662,Gas Oil combustion consumption by freight transport,AR-H,SESCO,annual,kg,733cdd07-8699-3e43-a99d-496be7b8eea4 -2013,Chaco,II.1.1,7.7658,TJ,N2O,3.9,kg/TJ,30.28662,Gas Oil combustion consumption by freight transport,AR-H,SESCO,annual,kg,733cdd07-8699-3e43-a99d-496be7b8eea4 -2013,Chubut,II.1.1,5.70696,TJ,CO2,74100.0,kg/TJ,422885.736,Gas Oil combustion consumption by freight transport,AR-U,SESCO,annual,kg,cb90f215-b38e-32c2-9f5e-311fedc4a69b -2013,Chubut,II.1.1,5.70696,TJ,CH4,3.9,kg/TJ,22.257143999999997,Gas Oil combustion consumption by freight transport,AR-U,SESCO,annual,kg,61c39b14-81ae-3aa3-b41a-d0c25e05bcb8 -2013,Chubut,II.1.1,5.70696,TJ,N2O,3.9,kg/TJ,22.257143999999997,Gas Oil combustion consumption by freight transport,AR-U,SESCO,annual,kg,61c39b14-81ae-3aa3-b41a-d0c25e05bcb8 -2013,Corrientes,II.1.1,2.4561599999999997,TJ,CO2,74100.0,kg/TJ,182001.45599999998,Gas Oil combustion consumption by freight transport,AR-W,SESCO,annual,kg,0b905464-5fa6-3101-b4d2-8b1a039dbfc0 -2013,Corrientes,II.1.1,2.4561599999999997,TJ,CH4,3.9,kg/TJ,9.579023999999999,Gas Oil combustion consumption by freight transport,AR-W,SESCO,annual,kg,6c9355f6-c341-3930-9b4a-ca0266ad6739 -2013,Corrientes,II.1.1,2.4561599999999997,TJ,N2O,3.9,kg/TJ,9.579023999999999,Gas Oil combustion consumption by freight transport,AR-W,SESCO,annual,kg,6c9355f6-c341-3930-9b4a-ca0266ad6739 -2013,Córdoba,II.1.1,9.35508,TJ,CO2,74100.0,kg/TJ,693211.428,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,0c46753a-658b-3fb1-94a1-7af2873302cd -2013,Córdoba,II.1.1,9.35508,TJ,CH4,3.9,kg/TJ,36.484812,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,0b79e4d5-7a43-3e85-a94d-e48895d506ad -2013,Córdoba,II.1.1,9.35508,TJ,N2O,3.9,kg/TJ,36.484812,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,0b79e4d5-7a43-3e85-a94d-e48895d506ad -2013,Entre Rios,II.1.1,12.569759999999999,TJ,CO2,74100.0,kg/TJ,931419.2159999999,Gas Oil combustion consumption by freight transport,AR-E,SESCO,annual,kg,349eaebd-cea2-3147-9367-cf3ff70caaf2 -2013,Entre Rios,II.1.1,12.569759999999999,TJ,CH4,3.9,kg/TJ,49.02206399999999,Gas Oil combustion consumption by freight transport,AR-E,SESCO,annual,kg,fd28061d-f350-38c4-afdd-e6190ef5f5ac -2013,Entre Rios,II.1.1,12.569759999999999,TJ,N2O,3.9,kg/TJ,49.02206399999999,Gas Oil combustion consumption by freight transport,AR-E,SESCO,annual,kg,fd28061d-f350-38c4-afdd-e6190ef5f5ac -2013,La Pampa,II.1.1,0.32508,TJ,CO2,74100.0,kg/TJ,24088.428,Gas Oil combustion consumption by freight transport,AR-L,SESCO,annual,kg,3cc7a3d7-3ec1-35f3-b910-cd13ade9bd29 -2013,La Pampa,II.1.1,0.32508,TJ,CH4,3.9,kg/TJ,1.267812,Gas Oil combustion consumption by freight transport,AR-L,SESCO,annual,kg,17c36316-a6c4-3bf7-a27b-15791fa3c06a -2013,La Pampa,II.1.1,0.32508,TJ,N2O,3.9,kg/TJ,1.267812,Gas Oil combustion consumption by freight transport,AR-L,SESCO,annual,kg,17c36316-a6c4-3bf7-a27b-15791fa3c06a -2013,La Rioja,II.1.1,1.73376,TJ,CO2,74100.0,kg/TJ,128471.616,Gas Oil combustion consumption by freight transport,AR-F,SESCO,annual,kg,abe9be6a-3b4f-3db7-91c5-686f0274e36e -2013,La Rioja,II.1.1,1.73376,TJ,CH4,3.9,kg/TJ,6.761664,Gas Oil combustion consumption by freight transport,AR-F,SESCO,annual,kg,86ff24a2-569f-34a9-a097-02c4a4b8c62f -2013,La Rioja,II.1.1,1.73376,TJ,N2O,3.9,kg/TJ,6.761664,Gas Oil combustion consumption by freight transport,AR-F,SESCO,annual,kg,86ff24a2-569f-34a9-a097-02c4a4b8c62f -2013,Mendoza,II.1.1,13.978439999999999,TJ,CO2,74100.0,kg/TJ,1035802.404,Gas Oil combustion consumption by freight transport,AR-M,SESCO,annual,kg,d0e6710d-a3e9-3cb2-bdae-94dc4f9e4f0e -2013,Mendoza,II.1.1,13.978439999999999,TJ,CH4,3.9,kg/TJ,54.515916,Gas Oil combustion consumption by freight transport,AR-M,SESCO,annual,kg,1ee55afb-3eeb-30f2-9779-3c95176cebd1 -2013,Mendoza,II.1.1,13.978439999999999,TJ,N2O,3.9,kg/TJ,54.515916,Gas Oil combustion consumption by freight transport,AR-M,SESCO,annual,kg,1ee55afb-3eeb-30f2-9779-3c95176cebd1 -2013,Misiones,II.1.1,5.70696,TJ,CO2,74100.0,kg/TJ,422885.736,Gas Oil combustion consumption by freight transport,AR-N,SESCO,annual,kg,e0536112-588b-3a40-8344-9c9b3e7da2b9 -2013,Misiones,II.1.1,5.70696,TJ,CH4,3.9,kg/TJ,22.257143999999997,Gas Oil combustion consumption by freight transport,AR-N,SESCO,annual,kg,1db85fc2-b5ae-30b3-8666-324010674dc6 -2013,Misiones,II.1.1,5.70696,TJ,N2O,3.9,kg/TJ,22.257143999999997,Gas Oil combustion consumption by freight transport,AR-N,SESCO,annual,kg,1db85fc2-b5ae-30b3-8666-324010674dc6 -2013,Neuquén,II.1.1,8.09088,TJ,CO2,74100.0,kg/TJ,599534.208,Gas Oil combustion consumption by freight transport,AR-Q,SESCO,annual,kg,37ab93e9-9bd0-3b7e-b98c-5fc0636ab478 -2013,Neuquén,II.1.1,8.09088,TJ,CH4,3.9,kg/TJ,31.554432000000002,Gas Oil combustion consumption by freight transport,AR-Q,SESCO,annual,kg,6dc5f9bb-91a0-3903-b7d8-856f564b0572 -2013,Neuquén,II.1.1,8.09088,TJ,N2O,3.9,kg/TJ,31.554432000000002,Gas Oil combustion consumption by freight transport,AR-Q,SESCO,annual,kg,6dc5f9bb-91a0-3903-b7d8-856f564b0572 -2013,Rio Negro,II.1.1,2.05884,TJ,CO2,74100.0,kg/TJ,152560.044,Gas Oil combustion consumption by freight transport,AR-R,SESCO,annual,kg,c815995b-868f-3ed0-a1bb-c790c336661e -2013,Rio Negro,II.1.1,2.05884,TJ,CH4,3.9,kg/TJ,8.029475999999999,Gas Oil combustion consumption by freight transport,AR-R,SESCO,annual,kg,ec0a4c42-3760-3a08-86fc-bb901da4000f -2013,Rio Negro,II.1.1,2.05884,TJ,N2O,3.9,kg/TJ,8.029475999999999,Gas Oil combustion consumption by freight transport,AR-R,SESCO,annual,kg,ec0a4c42-3760-3a08-86fc-bb901da4000f -2013,Salta,II.1.1,5.74308,TJ,CO2,74100.0,kg/TJ,425562.228,Gas Oil combustion consumption by freight transport,AR-A,SESCO,annual,kg,1b565d69-23ce-3159-9b95-42fb7c9b9c48 -2013,Salta,II.1.1,5.74308,TJ,CH4,3.9,kg/TJ,22.398011999999998,Gas Oil combustion consumption by freight transport,AR-A,SESCO,annual,kg,1ce952b2-d973-3749-88c8-c17f8085d05e -2013,Salta,II.1.1,5.74308,TJ,N2O,3.9,kg/TJ,22.398011999999998,Gas Oil combustion consumption by freight transport,AR-A,SESCO,annual,kg,1ce952b2-d973-3749-88c8-c17f8085d05e -2013,San Juan,II.1.1,1.84212,TJ,CO2,74100.0,kg/TJ,136501.092,Gas Oil combustion consumption by freight transport,AR-J,SESCO,annual,kg,3a1d06cc-b3de-3bb9-a51d-2ab2c2c37807 -2013,San Juan,II.1.1,1.84212,TJ,CH4,3.9,kg/TJ,7.184267999999999,Gas Oil combustion consumption by freight transport,AR-J,SESCO,annual,kg,6be1b85f-d063-3f01-9da6-6784707f2219 -2013,San Juan,II.1.1,1.84212,TJ,N2O,3.9,kg/TJ,7.184267999999999,Gas Oil combustion consumption by freight transport,AR-J,SESCO,annual,kg,6be1b85f-d063-3f01-9da6-6784707f2219 -2013,San Luis,II.1.1,0.7223999999999999,TJ,CO2,74100.0,kg/TJ,53529.84,Gas Oil combustion consumption by freight transport,AR-D,SESCO,annual,kg,eb81d4cf-131d-3f0c-94c8-971f5f44bacc -2013,San Luis,II.1.1,0.7223999999999999,TJ,CH4,3.9,kg/TJ,2.81736,Gas Oil combustion consumption by freight transport,AR-D,SESCO,annual,kg,7e5d937e-766b-3587-8992-45b28338d71e -2013,San Luis,II.1.1,0.7223999999999999,TJ,N2O,3.9,kg/TJ,2.81736,Gas Oil combustion consumption by freight transport,AR-D,SESCO,annual,kg,7e5d937e-766b-3587-8992-45b28338d71e -2013,Santa Fe,II.1.1,113.16395999999999,TJ,CO2,74100.0,kg/TJ,8385449.435999999,Gas Oil combustion consumption by freight transport,AR-S,SESCO,annual,kg,0f48afc8-b7e8-34c3-8042-a9818b763db8 -2013,Santa Fe,II.1.1,113.16395999999999,TJ,CH4,3.9,kg/TJ,441.33944399999996,Gas Oil combustion consumption by freight transport,AR-S,SESCO,annual,kg,00426ab6-cf6e-3197-8308-c7ee4c1ddd00 -2013,Santa Fe,II.1.1,113.16395999999999,TJ,N2O,3.9,kg/TJ,441.33944399999996,Gas Oil combustion consumption by freight transport,AR-S,SESCO,annual,kg,00426ab6-cf6e-3197-8308-c7ee4c1ddd00 -2013,Tierra del Fuego,II.1.1,0.07224,TJ,CO2,74100.0,kg/TJ,5352.9839999999995,Gas Oil combustion consumption by freight transport,AR-V,SESCO,annual,kg,9538ea72-cb1a-31e8-a3c1-d6e09531b470 -2013,Tierra del Fuego,II.1.1,0.07224,TJ,CH4,3.9,kg/TJ,0.281736,Gas Oil combustion consumption by freight transport,AR-V,SESCO,annual,kg,bac7c95d-2ce8-3ad1-87f4-8e0804123eab -2013,Tierra del Fuego,II.1.1,0.07224,TJ,N2O,3.9,kg/TJ,0.281736,Gas Oil combustion consumption by freight transport,AR-V,SESCO,annual,kg,bac7c95d-2ce8-3ad1-87f4-8e0804123eab -2013,Tucuman,II.1.1,5.38188,TJ,CO2,74100.0,kg/TJ,398797.30799999996,Gas Oil combustion consumption by freight transport,AR-T,SESCO,annual,kg,c8e60b34-4072-3e7b-a816-fe32070fa1bf -2013,Tucuman,II.1.1,5.38188,TJ,CH4,3.9,kg/TJ,20.989331999999997,Gas Oil combustion consumption by freight transport,AR-T,SESCO,annual,kg,5a39e953-ee5d-3059-9599-c1fc4a8d0828 -2013,Tucuman,II.1.1,5.38188,TJ,N2O,3.9,kg/TJ,20.989331999999997,Gas Oil combustion consumption by freight transport,AR-T,SESCO,annual,kg,5a39e953-ee5d-3059-9599-c1fc4a8d0828 -2013,Buenos Aires,II.1.1,169.26909999999998,TJ,CO2,73300.0,kg/TJ,12407425.03,Naphtha combustion consumption by freight transport,AR-B,SESCO,annual,kg,aa7345af-f3f9-3add-a5c6-969408de6cfb -2013,Buenos Aires,II.1.1,169.26909999999998,TJ,CH4,0.5,kg/TJ,84.63454999999999,Naphtha combustion consumption by freight transport,AR-B,SESCO,annual,kg,5321455e-34e1-31a3-b1b8-d7329d688600 -2013,Buenos Aires,II.1.1,169.26909999999998,TJ,N2O,2.0,kg/TJ,338.53819999999996,Naphtha combustion consumption by freight transport,AR-B,SESCO,annual,kg,e73bb81e-6e05-3df8-9237-bb202f736ac3 -2013,Capital Federal,II.1.1,166.80202,TJ,CO2,73300.0,kg/TJ,12226588.066,Naphtha combustion consumption by freight transport,AR-C,SESCO,annual,kg,77ed034f-f450-3ffc-9f1f-b376ffe87e3e -2013,Capital Federal,II.1.1,166.80202,TJ,CH4,0.5,kg/TJ,83.40101,Naphtha combustion consumption by freight transport,AR-C,SESCO,annual,kg,881b281e-a2b7-30f6-8c7c-d9c2ac4db487 -2013,Capital Federal,II.1.1,166.80202,TJ,N2O,2.0,kg/TJ,333.60404,Naphtha combustion consumption by freight transport,AR-C,SESCO,annual,kg,2c00501e-252b-3daf-998f-251b9f609a4d -2013,Chaco,II.1.1,4.899895,TJ,CO2,73300.0,kg/TJ,359162.3035,Naphtha combustion consumption by freight transport,AR-H,SESCO,annual,kg,3431e465-19e3-3075-80b5-c53069a4065d -2013,Chaco,II.1.1,4.899895,TJ,CH4,0.5,kg/TJ,2.4499475,Naphtha combustion consumption by freight transport,AR-H,SESCO,annual,kg,05c29bdd-5986-328e-855e-df2f937fa0ab -2013,Chaco,II.1.1,4.899895,TJ,N2O,2.0,kg/TJ,9.79979,Naphtha combustion consumption by freight transport,AR-H,SESCO,annual,kg,2dad007c-8b7f-3e94-8b7a-0cc923126039 -2013,Chubut,II.1.1,0.89089,TJ,CO2,73300.0,kg/TJ,65302.236999999994,Naphtha combustion consumption by freight transport,AR-U,SESCO,annual,kg,9347ebdb-661b-3898-ade0-a58c2572ecc0 -2013,Chubut,II.1.1,0.89089,TJ,CH4,0.5,kg/TJ,0.445445,Naphtha combustion consumption by freight transport,AR-U,SESCO,annual,kg,9f5ab75f-7c86-3d98-961a-0574fb438938 -2013,Chubut,II.1.1,0.89089,TJ,N2O,2.0,kg/TJ,1.78178,Naphtha combustion consumption by freight transport,AR-U,SESCO,annual,kg,f9dbc11f-7e8d-3a91-8271-c56d9dc6d335 -2013,Corrientes,II.1.1,1.473395,TJ,CO2,73300.0,kg/TJ,107999.8535,Naphtha combustion consumption by freight transport,AR-W,SESCO,annual,kg,173e5ba1-b84e-3099-8a6d-97d9d90ab17a -2013,Corrientes,II.1.1,1.473395,TJ,CH4,0.5,kg/TJ,0.7366975,Naphtha combustion consumption by freight transport,AR-W,SESCO,annual,kg,98f91b04-531e-3224-b32a-dec544ef8463 -2013,Corrientes,II.1.1,1.473395,TJ,N2O,2.0,kg/TJ,2.94679,Naphtha combustion consumption by freight transport,AR-W,SESCO,annual,kg,2a217534-26f3-37f6-9712-3aa322e3b9fd -2013,Córdoba,II.1.1,2.5356099999999997,TJ,CO2,73300.0,kg/TJ,185860.213,Naphtha combustion consumption by freight transport,AR-X,SESCO,annual,kg,c68aaa29-b589-3a5b-9176-0c5bd6ab2655 -2013,Córdoba,II.1.1,2.5356099999999997,TJ,CH4,0.5,kg/TJ,1.2678049999999998,Naphtha combustion consumption by freight transport,AR-X,SESCO,annual,kg,dde6bd16-36d5-3ae4-80c4-5469ffd74ce1 -2013,Córdoba,II.1.1,2.5356099999999997,TJ,N2O,2.0,kg/TJ,5.071219999999999,Naphtha combustion consumption by freight transport,AR-X,SESCO,annual,kg,9874b06c-945c-3290-9302-913b4d02e1f6 -2013,Entre Rios,II.1.1,2.6726699999999997,TJ,CO2,73300.0,kg/TJ,195906.71099999998,Naphtha combustion consumption by freight transport,AR-E,SESCO,annual,kg,37825a55-0ceb-3d1f-9d87-e106b0286b13 -2013,Entre Rios,II.1.1,2.6726699999999997,TJ,CH4,0.5,kg/TJ,1.3363349999999998,Naphtha combustion consumption by freight transport,AR-E,SESCO,annual,kg,56acdd31-fd50-388c-840f-e8cea206de49 -2013,Entre Rios,II.1.1,2.6726699999999997,TJ,N2O,2.0,kg/TJ,5.345339999999999,Naphtha combustion consumption by freight transport,AR-E,SESCO,annual,kg,055f1dd1-c40a-3984-93b9-429f12384fad -2013,Mendoza,II.1.1,4.6600399999999995,TJ,CO2,73300.0,kg/TJ,341580.932,Naphtha combustion consumption by freight transport,AR-M,SESCO,annual,kg,c1f83e07-62af-3ab3-95dd-44f25a68a268 -2013,Mendoza,II.1.1,4.6600399999999995,TJ,CH4,0.5,kg/TJ,2.3300199999999998,Naphtha combustion consumption by freight transport,AR-M,SESCO,annual,kg,00f85917-028c-3e00-a711-5e7dae84fc12 -2013,Mendoza,II.1.1,4.6600399999999995,TJ,N2O,2.0,kg/TJ,9.320079999999999,Naphtha combustion consumption by freight transport,AR-M,SESCO,annual,kg,3a0e8b72-7bda-33e7-a419-e1bdaa143e54 -2013,Misiones,II.1.1,0.513975,TJ,CO2,73300.0,kg/TJ,37674.3675,Naphtha combustion consumption by freight transport,AR-N,SESCO,annual,kg,e28df877-5d08-3f8a-897c-0a5d233961cc -2013,Misiones,II.1.1,0.513975,TJ,CH4,0.5,kg/TJ,0.2569875,Naphtha combustion consumption by freight transport,AR-N,SESCO,annual,kg,34d91db0-4fa5-3585-ba1c-936aa86b19b9 -2013,Misiones,II.1.1,0.513975,TJ,N2O,2.0,kg/TJ,1.02795,Naphtha combustion consumption by freight transport,AR-N,SESCO,annual,kg,c632a6e8-1e1d-3a58-adb7-c0ec827092cb -2013,Neuquén,II.1.1,0.47970999999999997,TJ,CO2,73300.0,kg/TJ,35162.742999999995,Naphtha combustion consumption by freight transport,AR-Q,SESCO,annual,kg,8a548071-8060-3536-a1c7-618a66525b77 -2013,Neuquén,II.1.1,0.47970999999999997,TJ,CH4,0.5,kg/TJ,0.23985499999999998,Naphtha combustion consumption by freight transport,AR-Q,SESCO,annual,kg,a9875281-c5f5-3b13-badb-f1fade3f6067 -2013,Neuquén,II.1.1,0.47970999999999997,TJ,N2O,2.0,kg/TJ,0.9594199999999999,Naphtha combustion consumption by freight transport,AR-Q,SESCO,annual,kg,8f04e624-b793-3c8f-90af-757382a6f670 -2013,Rio Negro,II.1.1,1.3706,TJ,CO2,73300.0,kg/TJ,100464.98,Naphtha combustion consumption by freight transport,AR-R,SESCO,annual,kg,d35cd8a2-46da-3fca-aac9-299697125547 -2013,Rio Negro,II.1.1,1.3706,TJ,CH4,0.5,kg/TJ,0.6853,Naphtha combustion consumption by freight transport,AR-R,SESCO,annual,kg,c1d43115-ebf7-3636-b65f-b7e50d7155af -2013,Rio Negro,II.1.1,1.3706,TJ,N2O,2.0,kg/TJ,2.7412,Naphtha combustion consumption by freight transport,AR-R,SESCO,annual,kg,18274425-ed5c-3a9b-b450-f98a99fe9caf -2013,Salta,II.1.1,10.450825,TJ,CO2,73300.0,kg/TJ,766045.4725,Naphtha combustion consumption by freight transport,AR-A,SESCO,annual,kg,61ddffca-0a85-3f44-bcf1-5c08008213d5 -2013,Salta,II.1.1,10.450825,TJ,CH4,0.5,kg/TJ,5.2254125,Naphtha combustion consumption by freight transport,AR-A,SESCO,annual,kg,cfa06942-1c07-3268-89a4-ac00965dbd87 -2013,Salta,II.1.1,10.450825,TJ,N2O,2.0,kg/TJ,20.90165,Naphtha combustion consumption by freight transport,AR-A,SESCO,annual,kg,0309315d-20a7-3de2-8ef2-8bbc9396bc87 -2013,Santa Fe,II.1.1,16.207345,TJ,CO2,73300.0,kg/TJ,1187998.3885000001,Naphtha combustion consumption by freight transport,AR-S,SESCO,annual,kg,b66eede6-5d2b-3cda-a2df-f1eacb66cb63 -2013,Santa Fe,II.1.1,16.207345,TJ,CH4,0.5,kg/TJ,8.1036725,Naphtha combustion consumption by freight transport,AR-S,SESCO,annual,kg,8033b680-b530-3479-8458-6d2c920cadbb -2013,Santa Fe,II.1.1,16.207345,TJ,N2O,2.0,kg/TJ,32.41469,Naphtha combustion consumption by freight transport,AR-S,SESCO,annual,kg,ae3d4aeb-468a-3104-bdde-a90232df3043 -2013,Santiago del Estero,II.1.1,0.034265,TJ,CO2,73300.0,kg/TJ,2511.6245,Naphtha combustion consumption by freight transport,AR-G,SESCO,annual,kg,d14513d4-d09c-3859-beae-1ea19a611e3d -2013,Santiago del Estero,II.1.1,0.034265,TJ,CH4,0.5,kg/TJ,0.0171325,Naphtha combustion consumption by freight transport,AR-G,SESCO,annual,kg,a6393a37-1179-37f4-bc8f-75e9744032b8 -2013,Santiago del Estero,II.1.1,0.034265,TJ,N2O,2.0,kg/TJ,0.06853,Naphtha combustion consumption by freight transport,AR-G,SESCO,annual,kg,04bf7b7d-e407-3121-b429-d4ca02c2ed60 -2013,Tucuman,II.1.1,0.9936849999999999,TJ,CO2,73300.0,kg/TJ,72837.1105,Naphtha combustion consumption by freight transport,AR-T,SESCO,annual,kg,82657f8f-0765-3c57-a769-633fa3c3354a -2013,Tucuman,II.1.1,0.9936849999999999,TJ,CH4,0.5,kg/TJ,0.49684249999999996,Naphtha combustion consumption by freight transport,AR-T,SESCO,annual,kg,8862e2ef-de54-31d5-a562-0993b8aad417 -2013,Tucuman,II.1.1,0.9936849999999999,TJ,N2O,2.0,kg/TJ,1.9873699999999999,Naphtha combustion consumption by freight transport,AR-T,SESCO,annual,kg,3fb39192-3c01-3f71-ade6-b036cce89479 -2013,Buenos Aires,II.1.1,170.50263999999999,TJ,CO2,73300.0,kg/TJ,12497843.511999998,Naphtha combustion consumption by freight transport,AR-B,SESCO,annual,kg,38358506-0229-3960-b3d3-cad188e497c7 -2013,Buenos Aires,II.1.1,170.50263999999999,TJ,CH4,0.5,kg/TJ,85.25131999999999,Naphtha combustion consumption by freight transport,AR-B,SESCO,annual,kg,60107164-c533-3501-8f74-dabf008f54d7 -2013,Buenos Aires,II.1.1,170.50263999999999,TJ,N2O,2.0,kg/TJ,341.00527999999997,Naphtha combustion consumption by freight transport,AR-B,SESCO,annual,kg,38807c69-efad-3439-b45c-9b5387ed4315 -2013,Capital Federal,II.1.1,164.12935,TJ,CO2,73300.0,kg/TJ,12030681.354999999,Naphtha combustion consumption by freight transport,AR-C,SESCO,annual,kg,6214e28b-b643-3686-ab3e-24763ec70fe6 -2013,Capital Federal,II.1.1,164.12935,TJ,CH4,0.5,kg/TJ,82.064675,Naphtha combustion consumption by freight transport,AR-C,SESCO,annual,kg,a40ee13f-ef40-3521-97f4-6dd26f9b4200 -2013,Capital Federal,II.1.1,164.12935,TJ,N2O,2.0,kg/TJ,328.2587,Naphtha combustion consumption by freight transport,AR-C,SESCO,annual,kg,4de5cb49-8a96-3e6e-8d77-216d3f50db78 -2013,Chaco,II.1.1,6.09917,TJ,CO2,73300.0,kg/TJ,447069.161,Naphtha combustion consumption by freight transport,AR-H,SESCO,annual,kg,c02e49c0-7033-394b-a0e2-74d2835f8443 -2013,Chaco,II.1.1,6.09917,TJ,CH4,0.5,kg/TJ,3.049585,Naphtha combustion consumption by freight transport,AR-H,SESCO,annual,kg,04db9492-9b50-31fc-9848-b28f4d123f7c -2013,Chaco,II.1.1,6.09917,TJ,N2O,2.0,kg/TJ,12.19834,Naphtha combustion consumption by freight transport,AR-H,SESCO,annual,kg,d7f60078-2a20-3657-a04b-091a197df36a -2013,Chubut,II.1.1,0.6510349999999999,TJ,CO2,73300.0,kg/TJ,47720.86549999999,Naphtha combustion consumption by freight transport,AR-U,SESCO,annual,kg,af1d2871-fd8c-31b4-a63e-9330e53dd1a8 -2013,Chubut,II.1.1,0.6510349999999999,TJ,CH4,0.5,kg/TJ,0.32551749999999996,Naphtha combustion consumption by freight transport,AR-U,SESCO,annual,kg,dcf02211-91dd-3b25-a137-53c139d01ad9 -2013,Chubut,II.1.1,0.6510349999999999,TJ,N2O,2.0,kg/TJ,1.3020699999999998,Naphtha combustion consumption by freight transport,AR-U,SESCO,annual,kg,790fa09b-0359-375e-8a8f-1f7f92716eae -2013,Corrientes,II.1.1,2.158695,TJ,CO2,73300.0,kg/TJ,158232.3435,Naphtha combustion consumption by freight transport,AR-W,SESCO,annual,kg,703dfa57-4c6d-3306-9edf-3328943e14ba -2013,Corrientes,II.1.1,2.158695,TJ,CH4,0.5,kg/TJ,1.0793475,Naphtha combustion consumption by freight transport,AR-W,SESCO,annual,kg,ce3b462c-5d28-3828-a261-623ac8a0ad2d -2013,Corrientes,II.1.1,2.158695,TJ,N2O,2.0,kg/TJ,4.31739,Naphtha combustion consumption by freight transport,AR-W,SESCO,annual,kg,5571fdcc-eae0-3646-a7cf-cab561923a02 -2013,Córdoba,II.1.1,3.8034149999999998,TJ,CO2,73300.0,kg/TJ,278790.3195,Naphtha combustion consumption by freight transport,AR-X,SESCO,annual,kg,a0cbdbdf-0f2c-3142-81ad-f5bdfefff6f8 -2013,Córdoba,II.1.1,3.8034149999999998,TJ,CH4,0.5,kg/TJ,1.9017074999999999,Naphtha combustion consumption by freight transport,AR-X,SESCO,annual,kg,ad4caae6-e8a3-33c2-9d40-2a500cbcba0e -2013,Córdoba,II.1.1,3.8034149999999998,TJ,N2O,2.0,kg/TJ,7.6068299999999995,Naphtha combustion consumption by freight transport,AR-X,SESCO,annual,kg,51799e37-399a-3e9d-a8bb-ca6a535aff34 -2013,Entre Rios,II.1.1,3.01532,TJ,CO2,73300.0,kg/TJ,221022.956,Naphtha combustion consumption by freight transport,AR-E,SESCO,annual,kg,e908f8ab-4eab-36fb-85b7-68f1d2fa7e2d -2013,Entre Rios,II.1.1,3.01532,TJ,CH4,0.5,kg/TJ,1.50766,Naphtha combustion consumption by freight transport,AR-E,SESCO,annual,kg,8a57e568-b558-392b-8572-dbe0511da91a -2013,Entre Rios,II.1.1,3.01532,TJ,N2O,2.0,kg/TJ,6.03064,Naphtha combustion consumption by freight transport,AR-E,SESCO,annual,kg,a2685475-cf74-3db7-af04-3184744d86e7 -2013,Jujuy,II.1.1,0.102795,TJ,CO2,73300.0,kg/TJ,7534.8735,Naphtha combustion consumption by freight transport,AR-Y,SESCO,annual,kg,c0a35d70-1613-3b58-b4b6-c55005d5a66d -2013,Jujuy,II.1.1,0.102795,TJ,CH4,0.5,kg/TJ,0.0513975,Naphtha combustion consumption by freight transport,AR-Y,SESCO,annual,kg,4b41d884-ab71-3257-a819-fa7bfec0904a -2013,Jujuy,II.1.1,0.102795,TJ,N2O,2.0,kg/TJ,0.20559,Naphtha combustion consumption by freight transport,AR-Y,SESCO,annual,kg,09b7d9a9-482d-35da-8f95-d797e24fd95a -2013,La Pampa,II.1.1,0.034265,TJ,CO2,73300.0,kg/TJ,2511.6245,Naphtha combustion consumption by freight transport,AR-L,SESCO,annual,kg,a651ccfb-b70a-39b0-9c5f-2d4f13a800c9 -2013,La Pampa,II.1.1,0.034265,TJ,CH4,0.5,kg/TJ,0.0171325,Naphtha combustion consumption by freight transport,AR-L,SESCO,annual,kg,173a858a-f059-31b2-abaa-8e2b50b63468 -2013,La Pampa,II.1.1,0.034265,TJ,N2O,2.0,kg/TJ,0.06853,Naphtha combustion consumption by freight transport,AR-L,SESCO,annual,kg,92d19810-e4d4-32ef-a12d-fab426c81496 -2013,La Rioja,II.1.1,0.376915,TJ,CO2,73300.0,kg/TJ,27627.8695,Naphtha combustion consumption by freight transport,AR-F,SESCO,annual,kg,b2baee71-b013-3181-976b-bf34533c05fa -2013,La Rioja,II.1.1,0.376915,TJ,CH4,0.5,kg/TJ,0.1884575,Naphtha combustion consumption by freight transport,AR-F,SESCO,annual,kg,4f14cccf-5006-31be-bef9-39d9c759955b -2013,La Rioja,II.1.1,0.376915,TJ,N2O,2.0,kg/TJ,0.75383,Naphtha combustion consumption by freight transport,AR-F,SESCO,annual,kg,de57740d-29dd-3783-8f59-53ed7ab02ce0 -2013,Mendoza,II.1.1,3.9404749999999997,TJ,CO2,73300.0,kg/TJ,288836.8175,Naphtha combustion consumption by freight transport,AR-M,SESCO,annual,kg,00e0b805-5b68-30d3-b7e9-b4d37713e41c -2013,Mendoza,II.1.1,3.9404749999999997,TJ,CH4,0.5,kg/TJ,1.9702374999999999,Naphtha combustion consumption by freight transport,AR-M,SESCO,annual,kg,d7571f0a-1576-3272-adca-c4d14ee5775c -2013,Mendoza,II.1.1,3.9404749999999997,TJ,N2O,2.0,kg/TJ,7.8809499999999995,Naphtha combustion consumption by freight transport,AR-M,SESCO,annual,kg,91c11213-9968-3ef0-9555-0f26d0b7a90e -2013,Misiones,II.1.1,0.75383,TJ,CO2,73300.0,kg/TJ,55255.739,Naphtha combustion consumption by freight transport,AR-N,SESCO,annual,kg,4e40d8cb-dc05-3ff0-b40f-2f192052d845 -2013,Misiones,II.1.1,0.75383,TJ,CH4,0.5,kg/TJ,0.376915,Naphtha combustion consumption by freight transport,AR-N,SESCO,annual,kg,961f4249-a45b-3f1b-ae17-77f66efd61a6 -2013,Misiones,II.1.1,0.75383,TJ,N2O,2.0,kg/TJ,1.50766,Naphtha combustion consumption by freight transport,AR-N,SESCO,annual,kg,b07c7052-42e1-3baa-882f-117267779182 -2013,Neuquén,II.1.1,0.34265,TJ,CO2,73300.0,kg/TJ,25116.245,Naphtha combustion consumption by freight transport,AR-Q,SESCO,annual,kg,7694fb4b-14b5-3a19-971b-d0c171949c17 -2013,Neuquén,II.1.1,0.34265,TJ,CH4,0.5,kg/TJ,0.171325,Naphtha combustion consumption by freight transport,AR-Q,SESCO,annual,kg,104f3270-a2ce-3ed0-b830-fb8ffd2a3f4b -2013,Neuquén,II.1.1,0.34265,TJ,N2O,2.0,kg/TJ,0.6853,Naphtha combustion consumption by freight transport,AR-Q,SESCO,annual,kg,96d65159-aa55-30e0-8cf2-7f71e2e11e23 -2013,Rio Negro,II.1.1,1.43913,TJ,CO2,73300.0,kg/TJ,105488.229,Naphtha combustion consumption by freight transport,AR-R,SESCO,annual,kg,3c904017-9113-3960-bec4-92e5555506d3 -2013,Rio Negro,II.1.1,1.43913,TJ,CH4,0.5,kg/TJ,0.719565,Naphtha combustion consumption by freight transport,AR-R,SESCO,annual,kg,125055bb-084f-3ac6-a53a-5d6e7f6af752 -2013,Rio Negro,II.1.1,1.43913,TJ,N2O,2.0,kg/TJ,2.87826,Naphtha combustion consumption by freight transport,AR-R,SESCO,annual,kg,5b8f6c42-6a67-385b-8661-951ed9102ef2 -2013,Salta,II.1.1,1.57619,TJ,CO2,73300.0,kg/TJ,115534.727,Naphtha combustion consumption by freight transport,AR-A,SESCO,annual,kg,164c7897-000b-3a3b-9416-52f1cd3f556e -2013,Salta,II.1.1,1.57619,TJ,CH4,0.5,kg/TJ,0.788095,Naphtha combustion consumption by freight transport,AR-A,SESCO,annual,kg,9c371f64-a5ae-3575-aa9b-bee0a30a501f -2013,Salta,II.1.1,1.57619,TJ,N2O,2.0,kg/TJ,3.15238,Naphtha combustion consumption by freight transport,AR-A,SESCO,annual,kg,536c4525-7716-3dcf-8823-c01d0fe089fe -2013,San Luis,II.1.1,0.41118,TJ,CO2,73300.0,kg/TJ,30139.494,Naphtha combustion consumption by freight transport,AR-D,SESCO,annual,kg,ea04c37e-6ce7-307e-88ad-259c7d1b879d -2013,San Luis,II.1.1,0.41118,TJ,CH4,0.5,kg/TJ,0.20559,Naphtha combustion consumption by freight transport,AR-D,SESCO,annual,kg,a6cbdc46-0cba-3218-8af0-a5258f70af01 -2013,San Luis,II.1.1,0.41118,TJ,N2O,2.0,kg/TJ,0.82236,Naphtha combustion consumption by freight transport,AR-D,SESCO,annual,kg,866d1f65-bd51-3b18-9db9-bbddd06abbb2 -2013,Santa Fe,II.1.1,23.128874999999997,TJ,CO2,73300.0,kg/TJ,1695346.5374999999,Naphtha combustion consumption by freight transport,AR-S,SESCO,annual,kg,41cdbca2-0a95-3587-877c-5b665ff6d81c -2013,Santa Fe,II.1.1,23.128874999999997,TJ,CH4,0.5,kg/TJ,11.564437499999999,Naphtha combustion consumption by freight transport,AR-S,SESCO,annual,kg,41b29d6c-c420-395f-9bd7-f1f775d6bc93 -2013,Santa Fe,II.1.1,23.128874999999997,TJ,N2O,2.0,kg/TJ,46.257749999999994,Naphtha combustion consumption by freight transport,AR-S,SESCO,annual,kg,42e1a207-c004-32d3-ae1a-bd57d874b9c2 -2013,Tucuman,II.1.1,0.89089,TJ,CO2,73300.0,kg/TJ,65302.236999999994,Naphtha combustion consumption by freight transport,AR-T,SESCO,annual,kg,594d831f-59c2-3123-adc9-bb1e2d2f668b -2013,Tucuman,II.1.1,0.89089,TJ,CH4,0.5,kg/TJ,0.445445,Naphtha combustion consumption by freight transport,AR-T,SESCO,annual,kg,789d7a88-3210-3e37-9c42-bdf73105b50c -2013,Tucuman,II.1.1,0.89089,TJ,N2O,2.0,kg/TJ,1.78178,Naphtha combustion consumption by freight transport,AR-T,SESCO,annual,kg,5424b96e-ae84-3c88-b567-82890a00936c -2013,Buenos Aires,II.1.1,11423.99748,TJ,CO2,74100.0,kg/TJ,846518213.268,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,2d600228-873e-3aa2-8f24-df66ab1dcd8f -2013,Buenos Aires,II.1.1,11423.99748,TJ,CH4,3.9,kg/TJ,44553.590172,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,8ba38711-592f-379e-9cde-09ff1a2eeaed -2013,Buenos Aires,II.1.1,11423.99748,TJ,N2O,3.9,kg/TJ,44553.590172,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,8ba38711-592f-379e-9cde-09ff1a2eeaed -2013,Capital Federal,II.1.1,3101.4799199999998,TJ,CO2,74100.0,kg/TJ,229819662.072,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,e3ffdafc-f113-3bef-9b2f-87580883a397 -2013,Capital Federal,II.1.1,3101.4799199999998,TJ,CH4,3.9,kg/TJ,12095.771687999999,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,0d392e18-986b-3863-85d8-5689a733bc4e -2013,Capital Federal,II.1.1,3101.4799199999998,TJ,N2O,3.9,kg/TJ,12095.771687999999,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,0d392e18-986b-3863-85d8-5689a733bc4e -2013,Catamarca,II.1.1,223.14936,TJ,CO2,74100.0,kg/TJ,16535367.576,Gas Oil combustion consumption by public passenger transport,AR-K,SESCO,annual,kg,44be6cb3-d3b9-3b68-b120-b3d083bd45a4 -2013,Catamarca,II.1.1,223.14936,TJ,CH4,3.9,kg/TJ,870.282504,Gas Oil combustion consumption by public passenger transport,AR-K,SESCO,annual,kg,f297d9df-189c-345e-970b-52c6e349f5a8 -2013,Catamarca,II.1.1,223.14936,TJ,N2O,3.9,kg/TJ,870.282504,Gas Oil combustion consumption by public passenger transport,AR-K,SESCO,annual,kg,f297d9df-189c-345e-970b-52c6e349f5a8 -2013,Chaco,II.1.1,574.8498,TJ,CO2,74100.0,kg/TJ,42596370.18,Gas Oil combustion consumption by public passenger transport,AR-H,SESCO,annual,kg,1e6c0867-eb43-3d32-880d-98e860ecd707 -2013,Chaco,II.1.1,574.8498,TJ,CH4,3.9,kg/TJ,2241.9142199999997,Gas Oil combustion consumption by public passenger transport,AR-H,SESCO,annual,kg,1f46db66-d915-3d43-977b-278b324a2384 -2013,Chaco,II.1.1,574.8498,TJ,N2O,3.9,kg/TJ,2241.9142199999997,Gas Oil combustion consumption by public passenger transport,AR-H,SESCO,annual,kg,1f46db66-d915-3d43-977b-278b324a2384 -2013,Chubut,II.1.1,104.31456,TJ,CO2,74100.0,kg/TJ,7729708.896,Gas Oil combustion consumption by public passenger transport,AR-U,SESCO,annual,kg,1a474ca4-e651-3ddc-b666-0db09b95b934 -2013,Chubut,II.1.1,104.31456,TJ,CH4,3.9,kg/TJ,406.826784,Gas Oil combustion consumption by public passenger transport,AR-U,SESCO,annual,kg,6e42f391-6e50-336d-a398-fcc9726cbe11 -2013,Chubut,II.1.1,104.31456,TJ,N2O,3.9,kg/TJ,406.826784,Gas Oil combustion consumption by public passenger transport,AR-U,SESCO,annual,kg,6e42f391-6e50-336d-a398-fcc9726cbe11 -2013,Corrientes,II.1.1,512.43444,TJ,CO2,74100.0,kg/TJ,37971392.004,Gas Oil combustion consumption by public passenger transport,AR-W,SESCO,annual,kg,f6b555ac-515e-3cb9-98ce-6ed0aa707d4c -2013,Corrientes,II.1.1,512.43444,TJ,CH4,3.9,kg/TJ,1998.494316,Gas Oil combustion consumption by public passenger transport,AR-W,SESCO,annual,kg,343421a4-7ac6-3da0-8fe0-1f94de8ce360 -2013,Corrientes,II.1.1,512.43444,TJ,N2O,3.9,kg/TJ,1998.494316,Gas Oil combustion consumption by public passenger transport,AR-W,SESCO,annual,kg,343421a4-7ac6-3da0-8fe0-1f94de8ce360 -2013,Córdoba,II.1.1,1846.3821599999999,TJ,CO2,74100.0,kg/TJ,136816918.056,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,5fd64ddd-64fc-3cde-8e3c-068945957eb6 -2013,Córdoba,II.1.1,1846.3821599999999,TJ,CH4,3.9,kg/TJ,7200.890423999999,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,e7bf06d0-cd92-3c9d-9c46-586367806c2c -2013,Córdoba,II.1.1,1846.3821599999999,TJ,N2O,3.9,kg/TJ,7200.890423999999,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,e7bf06d0-cd92-3c9d-9c46-586367806c2c -2013,Entre Rios,II.1.1,509.36424,TJ,CO2,74100.0,kg/TJ,37743890.184,Gas Oil combustion consumption by public passenger transport,AR-E,SESCO,annual,kg,d9423e28-5a5b-382a-9256-5f9540bbc2d2 -2013,Entre Rios,II.1.1,509.36424,TJ,CH4,3.9,kg/TJ,1986.520536,Gas Oil combustion consumption by public passenger transport,AR-E,SESCO,annual,kg,5ebbba37-bcb8-3903-8a43-d7dba511f0b9 -2013,Entre Rios,II.1.1,509.36424,TJ,N2O,3.9,kg/TJ,1986.520536,Gas Oil combustion consumption by public passenger transport,AR-E,SESCO,annual,kg,5ebbba37-bcb8-3903-8a43-d7dba511f0b9 -2013,Formosa,II.1.1,56.7084,TJ,CO2,74100.0,kg/TJ,4202092.4399999995,Gas Oil combustion consumption by public passenger transport,AR-P,SESCO,annual,kg,e5ba1329-e077-3e84-8c50-708955122a74 -2013,Formosa,II.1.1,56.7084,TJ,CH4,3.9,kg/TJ,221.16276,Gas Oil combustion consumption by public passenger transport,AR-P,SESCO,annual,kg,d0cfa271-23ae-327e-921b-5582077f673c -2013,Formosa,II.1.1,56.7084,TJ,N2O,3.9,kg/TJ,221.16276,Gas Oil combustion consumption by public passenger transport,AR-P,SESCO,annual,kg,d0cfa271-23ae-327e-921b-5582077f673c -2013,Jujuy,II.1.1,508.35287999999997,TJ,CO2,74100.0,kg/TJ,37668948.408,Gas Oil combustion consumption by public passenger transport,AR-Y,SESCO,annual,kg,16ff4046-67ce-3fcf-8a0c-961ff5f879ec -2013,Jujuy,II.1.1,508.35287999999997,TJ,CH4,3.9,kg/TJ,1982.576232,Gas Oil combustion consumption by public passenger transport,AR-Y,SESCO,annual,kg,2085e291-b6c7-3581-afc0-39fc6f79739b -2013,Jujuy,II.1.1,508.35287999999997,TJ,N2O,3.9,kg/TJ,1982.576232,Gas Oil combustion consumption by public passenger transport,AR-Y,SESCO,annual,kg,2085e291-b6c7-3581-afc0-39fc6f79739b -2013,La Pampa,II.1.1,27.993,TJ,CO2,74100.0,kg/TJ,2074281.2999999998,Gas Oil combustion consumption by public passenger transport,AR-L,SESCO,annual,kg,b178b0ce-7b97-3212-81e6-6b6ec5765244 -2013,La Pampa,II.1.1,27.993,TJ,CH4,3.9,kg/TJ,109.17269999999999,Gas Oil combustion consumption by public passenger transport,AR-L,SESCO,annual,kg,b9025e38-f387-3518-bbeb-70b40709352c -2013,La Pampa,II.1.1,27.993,TJ,N2O,3.9,kg/TJ,109.17269999999999,Gas Oil combustion consumption by public passenger transport,AR-L,SESCO,annual,kg,b9025e38-f387-3518-bbeb-70b40709352c -2013,La Rioja,II.1.1,140.36231999999998,TJ,CO2,74100.0,kg/TJ,10400847.911999999,Gas Oil combustion consumption by public passenger transport,AR-F,SESCO,annual,kg,f0e2ecd1-1a47-350a-bb3d-656714dc9880 -2013,La Rioja,II.1.1,140.36231999999998,TJ,CH4,3.9,kg/TJ,547.4130479999999,Gas Oil combustion consumption by public passenger transport,AR-F,SESCO,annual,kg,bb17e8f9-ec31-371e-affa-a09aac9eb94f -2013,La Rioja,II.1.1,140.36231999999998,TJ,N2O,3.9,kg/TJ,547.4130479999999,Gas Oil combustion consumption by public passenger transport,AR-F,SESCO,annual,kg,bb17e8f9-ec31-371e-affa-a09aac9eb94f -2013,Mendoza,II.1.1,1938.5242799999999,TJ,CO2,74100.0,kg/TJ,143644649.148,Gas Oil combustion consumption by public passenger transport,AR-M,SESCO,annual,kg,6afa0a92-037a-35b2-82b7-2cc81b85348f -2013,Mendoza,II.1.1,1938.5242799999999,TJ,CH4,3.9,kg/TJ,7560.244691999999,Gas Oil combustion consumption by public passenger transport,AR-M,SESCO,annual,kg,1513baac-8136-3778-a1a8-80f92b4ebf51 -2013,Mendoza,II.1.1,1938.5242799999999,TJ,N2O,3.9,kg/TJ,7560.244691999999,Gas Oil combustion consumption by public passenger transport,AR-M,SESCO,annual,kg,1513baac-8136-3778-a1a8-80f92b4ebf51 -2013,Misiones,II.1.1,797.5296,TJ,CO2,74100.0,kg/TJ,59096943.36,Gas Oil combustion consumption by public passenger transport,AR-N,SESCO,annual,kg,3ffc474a-cad8-32a8-8e04-f4e8ff1a671a -2013,Misiones,II.1.1,797.5296,TJ,CH4,3.9,kg/TJ,3110.3654399999996,Gas Oil combustion consumption by public passenger transport,AR-N,SESCO,annual,kg,2a44a290-c061-3620-abda-239fe579f748 -2013,Misiones,II.1.1,797.5296,TJ,N2O,3.9,kg/TJ,3110.3654399999996,Gas Oil combustion consumption by public passenger transport,AR-N,SESCO,annual,kg,2a44a290-c061-3620-abda-239fe579f748 -2013,Neuquén,II.1.1,290.65764,TJ,CO2,74100.0,kg/TJ,21537731.124,Gas Oil combustion consumption by public passenger transport,AR-Q,SESCO,annual,kg,dde8c894-8317-3e10-b68c-c0ab5e142a9e -2013,Neuquén,II.1.1,290.65764,TJ,CH4,3.9,kg/TJ,1133.5647960000001,Gas Oil combustion consumption by public passenger transport,AR-Q,SESCO,annual,kg,95a5acb4-73d0-3f4b-9e7a-b4fc5d69f3b5 -2013,Neuquén,II.1.1,290.65764,TJ,N2O,3.9,kg/TJ,1133.5647960000001,Gas Oil combustion consumption by public passenger transport,AR-Q,SESCO,annual,kg,95a5acb4-73d0-3f4b-9e7a-b4fc5d69f3b5 -2013,Rio Negro,II.1.1,167.5968,TJ,CO2,74100.0,kg/TJ,12418922.88,Gas Oil combustion consumption by public passenger transport,AR-R,SESCO,annual,kg,9c719040-2606-39a7-822d-788b08e8495f -2013,Rio Negro,II.1.1,167.5968,TJ,CH4,3.9,kg/TJ,653.62752,Gas Oil combustion consumption by public passenger transport,AR-R,SESCO,annual,kg,8adb36de-3cf6-3123-b780-facd8859826c -2013,Rio Negro,II.1.1,167.5968,TJ,N2O,3.9,kg/TJ,653.62752,Gas Oil combustion consumption by public passenger transport,AR-R,SESCO,annual,kg,8adb36de-3cf6-3123-b780-facd8859826c -2013,Salta,II.1.1,985.64256,TJ,CO2,74100.0,kg/TJ,73036113.696,Gas Oil combustion consumption by public passenger transport,AR-A,SESCO,annual,kg,be51c4b2-014d-36f9-a04e-437629f0ad9b -2013,Salta,II.1.1,985.64256,TJ,CH4,3.9,kg/TJ,3844.005984,Gas Oil combustion consumption by public passenger transport,AR-A,SESCO,annual,kg,5546d149-c8a1-3307-a847-2fdc3d230a6e -2013,Salta,II.1.1,985.64256,TJ,N2O,3.9,kg/TJ,3844.005984,Gas Oil combustion consumption by public passenger transport,AR-A,SESCO,annual,kg,5546d149-c8a1-3307-a847-2fdc3d230a6e -2013,San Juan,II.1.1,488.73972,TJ,CO2,74100.0,kg/TJ,36215613.252,Gas Oil combustion consumption by public passenger transport,AR-J,SESCO,annual,kg,dd9f6be6-14f3-3827-87a5-cf055c6e497a -2013,San Juan,II.1.1,488.73972,TJ,CH4,3.9,kg/TJ,1906.0849079999998,Gas Oil combustion consumption by public passenger transport,AR-J,SESCO,annual,kg,e4ac59e1-297a-397c-a5d3-89bd6ee6da5b -2013,San Juan,II.1.1,488.73972,TJ,N2O,3.9,kg/TJ,1906.0849079999998,Gas Oil combustion consumption by public passenger transport,AR-J,SESCO,annual,kg,e4ac59e1-297a-397c-a5d3-89bd6ee6da5b -2013,San Luis,II.1.1,163.94868,TJ,CO2,74100.0,kg/TJ,12148597.188,Gas Oil combustion consumption by public passenger transport,AR-D,SESCO,annual,kg,576c4959-1404-37eb-a17f-a6ef28df26d2 -2013,San Luis,II.1.1,163.94868,TJ,CH4,3.9,kg/TJ,639.399852,Gas Oil combustion consumption by public passenger transport,AR-D,SESCO,annual,kg,8f00eddd-8292-3dae-895f-c6a69e4f82ef -2013,San Luis,II.1.1,163.94868,TJ,N2O,3.9,kg/TJ,639.399852,Gas Oil combustion consumption by public passenger transport,AR-D,SESCO,annual,kg,8f00eddd-8292-3dae-895f-c6a69e4f82ef -2013,Santa Cruz,II.1.1,42.72996,TJ,CO2,74100.0,kg/TJ,3166290.036,Gas Oil combustion consumption by public passenger transport,AR-Z,SESCO,annual,kg,cd796fb8-6ac1-3ba5-b777-23ea902bff20 -2013,Santa Cruz,II.1.1,42.72996,TJ,CH4,3.9,kg/TJ,166.646844,Gas Oil combustion consumption by public passenger transport,AR-Z,SESCO,annual,kg,77392ee4-61d4-34da-8f70-459a0a297ff8 -2013,Santa Cruz,II.1.1,42.72996,TJ,N2O,3.9,kg/TJ,166.646844,Gas Oil combustion consumption by public passenger transport,AR-Z,SESCO,annual,kg,77392ee4-61d4-34da-8f70-459a0a297ff8 -2013,Santa Fe,II.1.1,1947.91548,TJ,CO2,74100.0,kg/TJ,144340537.068,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,9757c54b-e3f1-3931-b6e4-2cbd788c5576 -2013,Santa Fe,II.1.1,1947.91548,TJ,CH4,3.9,kg/TJ,7596.870371999999,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,629eafcf-3712-3d9f-aa66-f79741d6685e -2013,Santa Fe,II.1.1,1947.91548,TJ,N2O,3.9,kg/TJ,7596.870371999999,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,629eafcf-3712-3d9f-aa66-f79741d6685e -2013,Santiago del Estero,II.1.1,252.37044,TJ,CO2,74100.0,kg/TJ,18700649.604,Gas Oil combustion consumption by public passenger transport,AR-G,SESCO,annual,kg,24fa1c91-c39f-3492-ac00-95253f352ce6 -2013,Santiago del Estero,II.1.1,252.37044,TJ,CH4,3.9,kg/TJ,984.244716,Gas Oil combustion consumption by public passenger transport,AR-G,SESCO,annual,kg,6ace1a6d-54b3-3152-b5fc-313109c1d33a -2013,Santiago del Estero,II.1.1,252.37044,TJ,N2O,3.9,kg/TJ,984.244716,Gas Oil combustion consumption by public passenger transport,AR-G,SESCO,annual,kg,6ace1a6d-54b3-3152-b5fc-313109c1d33a -2013,Tierra del Fuego,II.1.1,20.51616,TJ,CO2,74100.0,kg/TJ,1520247.456,Gas Oil combustion consumption by public passenger transport,AR-V,SESCO,annual,kg,1cc19e33-0a41-32b5-8cdc-984b37919436 -2013,Tierra del Fuego,II.1.1,20.51616,TJ,CH4,3.9,kg/TJ,80.013024,Gas Oil combustion consumption by public passenger transport,AR-V,SESCO,annual,kg,ed90706c-85da-3f64-a517-44f507a1ced0 -2013,Tierra del Fuego,II.1.1,20.51616,TJ,N2O,3.9,kg/TJ,80.013024,Gas Oil combustion consumption by public passenger transport,AR-V,SESCO,annual,kg,ed90706c-85da-3f64-a517-44f507a1ced0 -2013,Tucuman,II.1.1,1452.7464,TJ,CO2,74100.0,kg/TJ,107648508.24,Gas Oil combustion consumption by public passenger transport,AR-T,SESCO,annual,kg,ef615512-e469-3af8-bd0d-c92d382afc7a -2013,Tucuman,II.1.1,1452.7464,TJ,CH4,3.9,kg/TJ,5665.710959999999,Gas Oil combustion consumption by public passenger transport,AR-T,SESCO,annual,kg,b019049f-8cfd-3bec-b665-c5026428bff6 -2013,Tucuman,II.1.1,1452.7464,TJ,N2O,3.9,kg/TJ,5665.710959999999,Gas Oil combustion consumption by public passenger transport,AR-T,SESCO,annual,kg,b019049f-8cfd-3bec-b665-c5026428bff6 -2013,Buenos Aires,II.1.1,0.18059999999999998,TJ,CO2,74100.0,kg/TJ,13382.46,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,0e0ca11e-d0f1-3e2c-8b86-290bab76f213 -2013,Buenos Aires,II.1.1,0.18059999999999998,TJ,CH4,3.9,kg/TJ,0.70434,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,86ff3cff-1134-39af-bd53-68845d9d94f5 -2013,Buenos Aires,II.1.1,0.18059999999999998,TJ,N2O,3.9,kg/TJ,0.70434,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,86ff3cff-1134-39af-bd53-68845d9d94f5 -2014,Buenos Aires,II.5.1,136.30243199999998,TJ,CO2,74100.0,kg/TJ,10100010.211199999,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,ca490833-30cd-3430-90ab-2de81a2f70eb -2014,Buenos Aires,II.5.1,136.30243199999998,TJ,CH4,3.9,kg/TJ,531.5794847999999,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,bb19dec5-0f29-3c52-b52b-16a0a65b95ce -2014,Buenos Aires,II.5.1,136.30243199999998,TJ,N2O,3.9,kg/TJ,531.5794847999999,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,bb19dec5-0f29-3c52-b52b-16a0a65b95ce -2014,Córdoba,II.5.1,27.696816,TJ,CO2,74100.0,kg/TJ,2052334.0655999999,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,2fa39a91-7537-3adc-9851-4cc659f1bc8c -2014,Córdoba,II.5.1,27.696816,TJ,CH4,3.9,kg/TJ,108.0175824,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,2e810a27-26a8-3c3b-9efa-569dbfc3d981 -2014,Córdoba,II.5.1,27.696816,TJ,N2O,3.9,kg/TJ,108.0175824,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,2e810a27-26a8-3c3b-9efa-569dbfc3d981 -2014,Santa Fe,II.5.1,427.96059599999995,TJ,CO2,74100.0,kg/TJ,31711880.163599998,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,7e9811e8-5eef-3020-96f9-c6f66aa4bab4 -2014,Santa Fe,II.5.1,427.96059599999995,TJ,CH4,3.9,kg/TJ,1669.0463243999998,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,9a3e204b-3521-355d-ad52-ccfd39475c65 -2014,Santa Fe,II.5.1,427.96059599999995,TJ,N2O,3.9,kg/TJ,1669.0463243999998,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,9a3e204b-3521-355d-ad52-ccfd39475c65 -2014,Buenos Aires,II.5.1,1.6976399999999998,TJ,CO2,74100.0,kg/TJ,125795.12399999998,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,f2db4be2-e23e-33b7-9410-537fc13a511b -2014,Buenos Aires,II.5.1,1.6976399999999998,TJ,CH4,3.9,kg/TJ,6.6207959999999995,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,66e6daba-b7f3-3c67-880e-ac85ff4bfb30 -2014,Buenos Aires,II.5.1,1.6976399999999998,TJ,N2O,3.9,kg/TJ,6.6207959999999995,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,66e6daba-b7f3-3c67-880e-ac85ff4bfb30 -2014,Córdoba,II.5.1,2.85348,TJ,CO2,74100.0,kg/TJ,211442.868,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,b9223b2c-07dc-3b6e-9fa4-121554515e86 -2014,Córdoba,II.5.1,2.85348,TJ,CH4,3.9,kg/TJ,11.128571999999998,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,ba3b3d47-4a11-3a1a-bccc-89e8fd9cea81 -2014,Córdoba,II.5.1,2.85348,TJ,N2O,3.9,kg/TJ,11.128571999999998,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,ba3b3d47-4a11-3a1a-bccc-89e8fd9cea81 -2014,Santa Fe,II.5.1,9.965507999999998,TJ,CO2,74100.0,kg/TJ,738444.1427999998,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,6580b468-2c20-3b88-be98-f9e6f1e12b68 -2014,Santa Fe,II.5.1,9.965507999999998,TJ,CH4,3.9,kg/TJ,38.86548119999999,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,83f38afb-c15e-3108-a520-e2dc56a59484 -2014,Santa Fe,II.5.1,9.965507999999998,TJ,N2O,3.9,kg/TJ,38.86548119999999,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,83f38afb-c15e-3108-a520-e2dc56a59484 -2014,Córdoba,II.5.1,6.4109815,TJ,CO2,73300.0,kg/TJ,469924.94395,Naphtha combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,40542fed-ddfd-3ce9-a358-60d1de4fc89b -2014,Córdoba,II.5.1,6.4109815,TJ,CH4,0.5,kg/TJ,3.20549075,Naphtha combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,34133292-2a52-3c62-847e-76e9af9c94da -2014,Córdoba,II.5.1,6.4109815,TJ,N2O,2.0,kg/TJ,12.821963,Naphtha combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,b9f68d34-60ff-3a24-9f49-5e46fe11f360 -2014,Santa Fe,II.5.1,19.236371,TJ,CO2,73300.0,kg/TJ,1410025.9943,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,c4f959a8-8c1d-3057-96f7-c4eb5f126ae2 -2014,Santa Fe,II.5.1,19.236371,TJ,CH4,0.5,kg/TJ,9.6181855,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,ee734103-6daa-3bd4-8b30-825f8ae244be -2014,Santa Fe,II.5.1,19.236371,TJ,N2O,2.0,kg/TJ,38.472742,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,33c8bdde-fd3d-347e-8a60-b5f4bf0a5146 -2014,Buenos Aires,II.5.1,0.27412,TJ,CO2,73300.0,kg/TJ,20092.996,Naphtha combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,2426d1a8-ca6e-3dbc-8aa1-8e070f806aab -2014,Buenos Aires,II.5.1,0.27412,TJ,CH4,0.5,kg/TJ,0.13706,Naphtha combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,b4120277-dab0-391d-b45c-4a00c111c7f8 -2014,Buenos Aires,II.5.1,0.27412,TJ,N2O,2.0,kg/TJ,0.54824,Naphtha combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,fc4125f0-7101-3d8b-82fa-0660f9c55d98 -2014,Córdoba,II.5.1,2.734347,TJ,CO2,73300.0,kg/TJ,200427.6351,Naphtha combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,62046a23-582c-3f41-a51c-93c7609a186f -2014,Córdoba,II.5.1,2.734347,TJ,CH4,0.5,kg/TJ,1.3671735,Naphtha combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,93c7f686-1977-31b8-9c59-9cffc0610284 -2014,Córdoba,II.5.1,2.734347,TJ,N2O,2.0,kg/TJ,5.468694,Naphtha combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,2afd1f2f-bf4d-3cdb-b621-0cfd2289b917 -2014,Santa Fe,II.5.1,3.8376799999999998,TJ,CO2,73300.0,kg/TJ,281301.94399999996,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,11bd7751-843d-34bb-9aeb-257fa1cae5d7 -2014,Santa Fe,II.5.1,3.8376799999999998,TJ,CH4,0.5,kg/TJ,1.9188399999999999,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,efe21bb2-95c7-3848-b6f1-c726a7061fb0 -2014,Santa Fe,II.5.1,3.8376799999999998,TJ,N2O,2.0,kg/TJ,7.6753599999999995,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,bc48c88c-485a-33f5-94b5-beb20bc0a309 -2014,Buenos Aires,II.1.1,1349.8181255999998,TJ,CO2,74100.0,kg/TJ,100021523.10695998,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,27b492ea-0872-3090-8296-ab9685f662d1 -2014,Buenos Aires,II.1.1,1349.8181255999998,TJ,CH4,3.9,kg/TJ,5264.290689839999,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,042d18d9-d0cc-3877-9c1a-3aed377e4d95 -2014,Buenos Aires,II.1.1,1349.8181255999998,TJ,N2O,3.9,kg/TJ,5264.290689839999,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,042d18d9-d0cc-3877-9c1a-3aed377e4d95 -2014,Capital Federal,II.1.1,441.881244,TJ,CO2,74100.0,kg/TJ,32743400.1804,Gas Oil combustion consumption by freight transport,AR-C,SESCO,annual,kg,927ed9c7-aca7-3d1b-b6d7-45795d7db59e -2014,Capital Federal,II.1.1,441.881244,TJ,CH4,3.9,kg/TJ,1723.3368515999998,Gas Oil combustion consumption by freight transport,AR-C,SESCO,annual,kg,95e7a103-4fe7-3593-aa95-4ff295f10483 -2014,Capital Federal,II.1.1,441.881244,TJ,N2O,3.9,kg/TJ,1723.3368515999998,Gas Oil combustion consumption by freight transport,AR-C,SESCO,annual,kg,95e7a103-4fe7-3593-aa95-4ff295f10483 -2014,Catamarca,II.1.1,10.07748,TJ,CO2,74100.0,kg/TJ,746741.2679999999,Gas Oil combustion consumption by freight transport,AR-K,SESCO,annual,kg,b6a3402b-0578-3767-8316-1a901f65832f -2014,Catamarca,II.1.1,10.07748,TJ,CH4,3.9,kg/TJ,39.302172,Gas Oil combustion consumption by freight transport,AR-K,SESCO,annual,kg,f9585115-c258-3f10-ac3e-da5bcda51eb1 -2014,Catamarca,II.1.1,10.07748,TJ,N2O,3.9,kg/TJ,39.302172,Gas Oil combustion consumption by freight transport,AR-K,SESCO,annual,kg,f9585115-c258-3f10-ac3e-da5bcda51eb1 -2014,Chaco,II.1.1,29.619483599999995,TJ,CO2,74100.0,kg/TJ,2194803.7347599994,Gas Oil combustion consumption by freight transport,AR-H,SESCO,annual,kg,d88844e1-e6d5-3831-b3de-ee4d98d58900 -2014,Chaco,II.1.1,29.619483599999995,TJ,CH4,3.9,kg/TJ,115.51598603999997,Gas Oil combustion consumption by freight transport,AR-H,SESCO,annual,kg,fdb387da-629e-3a45-8d75-6607da70af76 -2014,Chaco,II.1.1,29.619483599999995,TJ,N2O,3.9,kg/TJ,115.51598603999997,Gas Oil combustion consumption by freight transport,AR-H,SESCO,annual,kg,fdb387da-629e-3a45-8d75-6607da70af76 -2014,Chubut,II.1.1,0.5894784,TJ,CO2,74100.0,kg/TJ,43680.34944,Gas Oil combustion consumption by freight transport,AR-U,SESCO,annual,kg,1f50a6fe-6f67-30b8-911f-99863e22a440 -2014,Chubut,II.1.1,0.5894784,TJ,CH4,3.9,kg/TJ,2.2989657599999997,Gas Oil combustion consumption by freight transport,AR-U,SESCO,annual,kg,896db00a-8c5c-36b2-96bc-cfa38c773e00 -2014,Chubut,II.1.1,0.5894784,TJ,N2O,3.9,kg/TJ,2.2989657599999997,Gas Oil combustion consumption by freight transport,AR-U,SESCO,annual,kg,896db00a-8c5c-36b2-96bc-cfa38c773e00 -2014,Corrientes,II.1.1,66.164616,TJ,CO2,74100.0,kg/TJ,4902798.0456,Gas Oil combustion consumption by freight transport,AR-W,SESCO,annual,kg,526d19d9-8722-34df-9cff-9fa0028aee7e -2014,Corrientes,II.1.1,66.164616,TJ,CH4,3.9,kg/TJ,258.0420024,Gas Oil combustion consumption by freight transport,AR-W,SESCO,annual,kg,c8d519a2-9ec5-3450-8c50-a98bd591076c -2014,Corrientes,II.1.1,66.164616,TJ,N2O,3.9,kg/TJ,258.0420024,Gas Oil combustion consumption by freight transport,AR-W,SESCO,annual,kg,c8d519a2-9ec5-3450-8c50-a98bd591076c -2014,Córdoba,II.1.1,123.5011428,TJ,CO2,74100.0,kg/TJ,9151434.68148,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,76b62f08-a824-3a17-b8c9-f28f1ab230d9 -2014,Córdoba,II.1.1,123.5011428,TJ,CH4,3.9,kg/TJ,481.65445692,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,657b621e-89d7-395d-abee-ae9f93723734 -2014,Córdoba,II.1.1,123.5011428,TJ,N2O,3.9,kg/TJ,481.65445692,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,657b621e-89d7-395d-abee-ae9f93723734 -2014,Entre Rios,II.1.1,57.6666636,TJ,CO2,74100.0,kg/TJ,4273099.77276,Gas Oil combustion consumption by freight transport,AR-E,SESCO,annual,kg,ffe1703d-04b1-39f4-9cc5-5906f9015f21 -2014,Entre Rios,II.1.1,57.6666636,TJ,CH4,3.9,kg/TJ,224.89998803999998,Gas Oil combustion consumption by freight transport,AR-E,SESCO,annual,kg,3ff11043-f29c-3167-8018-717b326c0734 -2014,Entre Rios,II.1.1,57.6666636,TJ,N2O,3.9,kg/TJ,224.89998803999998,Gas Oil combustion consumption by freight transport,AR-E,SESCO,annual,kg,3ff11043-f29c-3167-8018-717b326c0734 -2014,Formosa,II.1.1,1.95048,TJ,CO2,74100.0,kg/TJ,144530.568,Gas Oil combustion consumption by freight transport,AR-P,SESCO,annual,kg,d57ebe41-a5ee-39e2-b91f-d38d932ec763 -2014,Formosa,II.1.1,1.95048,TJ,CH4,3.9,kg/TJ,7.606872,Gas Oil combustion consumption by freight transport,AR-P,SESCO,annual,kg,974a0719-5c10-36c1-ae11-b7d63b0b84ba -2014,Formosa,II.1.1,1.95048,TJ,N2O,3.9,kg/TJ,7.606872,Gas Oil combustion consumption by freight transport,AR-P,SESCO,annual,kg,974a0719-5c10-36c1-ae11-b7d63b0b84ba -2014,La Pampa,II.1.1,7.533548399999999,TJ,CO2,74100.0,kg/TJ,558235.93644,Gas Oil combustion consumption by freight transport,AR-L,SESCO,annual,kg,e9151dd4-e5c9-369f-be06-bd10a536d9e5 -2014,La Pampa,II.1.1,7.533548399999999,TJ,CH4,3.9,kg/TJ,29.380838759999996,Gas Oil combustion consumption by freight transport,AR-L,SESCO,annual,kg,28dd037c-e1b5-386f-a313-bf6f9c4b9b35 -2014,La Pampa,II.1.1,7.533548399999999,TJ,N2O,3.9,kg/TJ,29.380838759999996,Gas Oil combustion consumption by freight transport,AR-L,SESCO,annual,kg,28dd037c-e1b5-386f-a313-bf6f9c4b9b35 -2014,Mendoza,II.1.1,19.463984399999998,TJ,CO2,74100.0,kg/TJ,1442281.2440399998,Gas Oil combustion consumption by freight transport,AR-M,SESCO,annual,kg,c704142e-2a70-338a-a332-646bc8a6d2fc -2014,Mendoza,II.1.1,19.463984399999998,TJ,CH4,3.9,kg/TJ,75.90953916,Gas Oil combustion consumption by freight transport,AR-M,SESCO,annual,kg,e74e5b45-4062-31ab-b121-7bc7fd7ccf3b -2014,Mendoza,II.1.1,19.463984399999998,TJ,N2O,3.9,kg/TJ,75.90953916,Gas Oil combustion consumption by freight transport,AR-M,SESCO,annual,kg,e74e5b45-4062-31ab-b121-7bc7fd7ccf3b -2014,Misiones,II.1.1,24.703912800000005,TJ,CO2,74100.0,kg/TJ,1830559.9384800002,Gas Oil combustion consumption by freight transport,AR-N,SESCO,annual,kg,4881bce0-18ff-3d09-8b4b-facb377bca43 -2014,Misiones,II.1.1,24.703912800000005,TJ,CH4,3.9,kg/TJ,96.34525992000002,Gas Oil combustion consumption by freight transport,AR-N,SESCO,annual,kg,7462685f-0059-356a-8061-2df9b41336fe -2014,Misiones,II.1.1,24.703912800000005,TJ,N2O,3.9,kg/TJ,96.34525992000002,Gas Oil combustion consumption by freight transport,AR-N,SESCO,annual,kg,7462685f-0059-356a-8061-2df9b41336fe -2014,Rio Negro,II.1.1,18.999119999999998,TJ,CO2,74100.0,kg/TJ,1407834.792,Gas Oil combustion consumption by freight transport,AR-R,SESCO,annual,kg,6edf2fad-8086-395e-ac76-401db9318704 -2014,Rio Negro,II.1.1,18.999119999999998,TJ,CH4,3.9,kg/TJ,74.09656799999999,Gas Oil combustion consumption by freight transport,AR-R,SESCO,annual,kg,1ee42543-c917-32d3-b745-52872f324d9f -2014,Rio Negro,II.1.1,18.999119999999998,TJ,N2O,3.9,kg/TJ,74.09656799999999,Gas Oil combustion consumption by freight transport,AR-R,SESCO,annual,kg,1ee42543-c917-32d3-b745-52872f324d9f -2014,Salta,II.1.1,0.502068,TJ,CO2,74100.0,kg/TJ,37203.2388,Gas Oil combustion consumption by freight transport,AR-A,SESCO,annual,kg,6cb60035-5cf4-3f22-b8c1-27c66737948d -2014,Salta,II.1.1,0.502068,TJ,CH4,3.9,kg/TJ,1.9580651999999998,Gas Oil combustion consumption by freight transport,AR-A,SESCO,annual,kg,14b7f838-135b-33b5-b1e4-8081ab18861e -2014,Salta,II.1.1,0.502068,TJ,N2O,3.9,kg/TJ,1.9580651999999998,Gas Oil combustion consumption by freight transport,AR-A,SESCO,annual,kg,14b7f838-135b-33b5-b1e4-8081ab18861e -2014,San Juan,II.1.1,10.2837252,TJ,CO2,74100.0,kg/TJ,762024.0373199999,Gas Oil combustion consumption by freight transport,AR-J,SESCO,annual,kg,1fb67c8c-938a-3fc3-a7d7-bb06e8a3d558 -2014,San Juan,II.1.1,10.2837252,TJ,CH4,3.9,kg/TJ,40.10652828,Gas Oil combustion consumption by freight transport,AR-J,SESCO,annual,kg,b2f096a6-f5cd-303f-85a3-8ea23596ff0b -2014,San Juan,II.1.1,10.2837252,TJ,N2O,3.9,kg/TJ,40.10652828,Gas Oil combustion consumption by freight transport,AR-J,SESCO,annual,kg,b2f096a6-f5cd-303f-85a3-8ea23596ff0b -2014,San Luis,II.1.1,55.520052,TJ,CO2,74100.0,kg/TJ,4114035.8532,Gas Oil combustion consumption by freight transport,AR-D,SESCO,annual,kg,8784e5db-1315-32bb-9cbb-7412d51a57ae -2014,San Luis,II.1.1,55.520052,TJ,CH4,3.9,kg/TJ,216.5282028,Gas Oil combustion consumption by freight transport,AR-D,SESCO,annual,kg,acfb2de1-2458-3d4a-b216-face497bee35 -2014,San Luis,II.1.1,55.520052,TJ,N2O,3.9,kg/TJ,216.5282028,Gas Oil combustion consumption by freight transport,AR-D,SESCO,annual,kg,acfb2de1-2458-3d4a-b216-face497bee35 -2014,Santa Fe,II.1.1,349.59500519999995,TJ,CO2,74100.0,kg/TJ,25904989.885319997,Gas Oil combustion consumption by freight transport,AR-S,SESCO,annual,kg,16adf4aa-5c0e-30bc-adcb-6ad01485dffc -2014,Santa Fe,II.1.1,349.59500519999995,TJ,CH4,3.9,kg/TJ,1363.4205202799997,Gas Oil combustion consumption by freight transport,AR-S,SESCO,annual,kg,834e92f8-a7d7-3fbc-b412-9458c74ce811 -2014,Santa Fe,II.1.1,349.59500519999995,TJ,N2O,3.9,kg/TJ,1363.4205202799997,Gas Oil combustion consumption by freight transport,AR-S,SESCO,annual,kg,834e92f8-a7d7-3fbc-b412-9458c74ce811 -2014,Santiago del Estero,II.1.1,6.797784,TJ,CO2,74100.0,kg/TJ,503715.7944,Gas Oil combustion consumption by freight transport,AR-G,SESCO,annual,kg,97e49974-fb03-3b3b-b063-3152eb847903 -2014,Santiago del Estero,II.1.1,6.797784,TJ,CH4,3.9,kg/TJ,26.5113576,Gas Oil combustion consumption by freight transport,AR-G,SESCO,annual,kg,fccfae2e-483c-325d-8fd8-a678fa6477bd -2014,Santiago del Estero,II.1.1,6.797784,TJ,N2O,3.9,kg/TJ,26.5113576,Gas Oil combustion consumption by freight transport,AR-G,SESCO,annual,kg,fccfae2e-483c-325d-8fd8-a678fa6477bd -2014,Tierra del Fuego,II.1.1,1.9569815999999998,TJ,CO2,74100.0,kg/TJ,145012.33656,Gas Oil combustion consumption by freight transport,AR-V,SESCO,annual,kg,45ba0f41-8b9e-3500-a699-0f8f27bf6613 -2014,Tierra del Fuego,II.1.1,1.9569815999999998,TJ,CH4,3.9,kg/TJ,7.632228239999999,Gas Oil combustion consumption by freight transport,AR-V,SESCO,annual,kg,089a3ede-1676-3fba-9cdf-719ffc436a57 -2014,Tierra del Fuego,II.1.1,1.9569815999999998,TJ,N2O,3.9,kg/TJ,7.632228239999999,Gas Oil combustion consumption by freight transport,AR-V,SESCO,annual,kg,089a3ede-1676-3fba-9cdf-719ffc436a57 -2014,Tucuman,II.1.1,37.034558399999995,TJ,CO2,74100.0,kg/TJ,2744260.7774399994,Gas Oil combustion consumption by freight transport,AR-T,SESCO,annual,kg,e778578b-acc0-3bb0-b2a6-5414851ac396 -2014,Tucuman,II.1.1,37.034558399999995,TJ,CH4,3.9,kg/TJ,144.43477775999997,Gas Oil combustion consumption by freight transport,AR-T,SESCO,annual,kg,37ceb41b-bff3-36f7-b2d8-5bbdf748bc6d -2014,Tucuman,II.1.1,37.034558399999995,TJ,N2O,3.9,kg/TJ,144.43477775999997,Gas Oil combustion consumption by freight transport,AR-T,SESCO,annual,kg,37ceb41b-bff3-36f7-b2d8-5bbdf748bc6d -2014,Buenos Aires,II.1.1,27.109143599999996,TJ,CO2,74100.0,kg/TJ,2008787.5407599998,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,2d93af78-5739-35b8-907a-a85ca87270a4 -2014,Buenos Aires,II.1.1,27.109143599999996,TJ,CH4,3.9,kg/TJ,105.72566003999998,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,e5060a58-59fd-3f83-8267-b854cf31288b -2014,Buenos Aires,II.1.1,27.109143599999996,TJ,N2O,3.9,kg/TJ,105.72566003999998,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,e5060a58-59fd-3f83-8267-b854cf31288b -2014,Capital Federal,II.1.1,31.894682399999997,TJ,CO2,74100.0,kg/TJ,2363395.9658399997,Gas Oil combustion consumption by freight transport,AR-C,SESCO,annual,kg,3e148982-7d9e-36d0-aa8a-60c1eceb9fa9 -2014,Capital Federal,II.1.1,31.894682399999997,TJ,CH4,3.9,kg/TJ,124.38926135999999,Gas Oil combustion consumption by freight transport,AR-C,SESCO,annual,kg,7eb49098-3e8a-323a-abef-ed400c2a96f5 -2014,Capital Federal,II.1.1,31.894682399999997,TJ,N2O,3.9,kg/TJ,124.38926135999999,Gas Oil combustion consumption by freight transport,AR-C,SESCO,annual,kg,7eb49098-3e8a-323a-abef-ed400c2a96f5 -2014,Chaco,II.1.1,0.5710571999999999,TJ,CO2,74100.0,kg/TJ,42315.33852,Gas Oil combustion consumption by freight transport,AR-H,SESCO,annual,kg,243f1139-d044-3953-ae3f-4b2461a2c0d2 -2014,Chaco,II.1.1,0.5710571999999999,TJ,CH4,3.9,kg/TJ,2.2271230799999997,Gas Oil combustion consumption by freight transport,AR-H,SESCO,annual,kg,dc619b96-145f-3d50-ad9d-e20ff83ce415 -2014,Chaco,II.1.1,0.5710571999999999,TJ,N2O,3.9,kg/TJ,2.2271230799999997,Gas Oil combustion consumption by freight transport,AR-H,SESCO,annual,kg,dc619b96-145f-3d50-ad9d-e20ff83ce415 -2014,Corrientes,II.1.1,1.3014036,TJ,CO2,74100.0,kg/TJ,96434.00676,Gas Oil combustion consumption by freight transport,AR-W,SESCO,annual,kg,a9fe2643-7501-361d-925f-d6b9077a89f0 -2014,Corrientes,II.1.1,1.3014036,TJ,CH4,3.9,kg/TJ,5.07547404,Gas Oil combustion consumption by freight transport,AR-W,SESCO,annual,kg,787c4d7e-c3ec-3d7b-ab42-4bceb61ed670 -2014,Corrientes,II.1.1,1.3014036,TJ,N2O,3.9,kg/TJ,5.07547404,Gas Oil combustion consumption by freight transport,AR-W,SESCO,annual,kg,787c4d7e-c3ec-3d7b-ab42-4bceb61ed670 -2014,Córdoba,II.1.1,0.7733292,TJ,CO2,74100.0,kg/TJ,57303.69372,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,a8b25b05-d9e0-3415-8e53-21248d2148cb -2014,Córdoba,II.1.1,0.7733292,TJ,CH4,3.9,kg/TJ,3.0159838800000003,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,45d65fa7-d21f-3cdb-954a-ea79644321b2 -2014,Córdoba,II.1.1,0.7733292,TJ,N2O,3.9,kg/TJ,3.0159838800000003,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,45d65fa7-d21f-3cdb-954a-ea79644321b2 -2014,Entre Rios,II.1.1,1.7164224,TJ,CO2,74100.0,kg/TJ,127186.89984,Gas Oil combustion consumption by freight transport,AR-E,SESCO,annual,kg,0fc72a99-01ee-377e-828c-087a28419b5d -2014,Entre Rios,II.1.1,1.7164224,TJ,CH4,3.9,kg/TJ,6.69404736,Gas Oil combustion consumption by freight transport,AR-E,SESCO,annual,kg,0b40b9bf-10ac-37b5-8968-b51b755041d8 -2014,Entre Rios,II.1.1,1.7164224,TJ,N2O,3.9,kg/TJ,6.69404736,Gas Oil combustion consumption by freight transport,AR-E,SESCO,annual,kg,0b40b9bf-10ac-37b5-8968-b51b755041d8 -2014,Mendoza,II.1.1,0.0285348,TJ,CO2,74100.0,kg/TJ,2114.42868,Gas Oil combustion consumption by freight transport,AR-M,SESCO,annual,kg,90413690-5952-38c1-9172-8147f141866f -2014,Mendoza,II.1.1,0.0285348,TJ,CH4,3.9,kg/TJ,0.11128571999999999,Gas Oil combustion consumption by freight transport,AR-M,SESCO,annual,kg,bc7f7c61-57ce-3dc5-96b3-71ad99a99e07 -2014,Mendoza,II.1.1,0.0285348,TJ,N2O,3.9,kg/TJ,0.11128571999999999,Gas Oil combustion consumption by freight transport,AR-M,SESCO,annual,kg,bc7f7c61-57ce-3dc5-96b3-71ad99a99e07 -2014,Misiones,II.1.1,0.05418,TJ,CO2,74100.0,kg/TJ,4014.738,Gas Oil combustion consumption by freight transport,AR-N,SESCO,annual,kg,9a472f53-cb6e-3d98-937b-ea552d9abe01 -2014,Misiones,II.1.1,0.05418,TJ,CH4,3.9,kg/TJ,0.211302,Gas Oil combustion consumption by freight transport,AR-N,SESCO,annual,kg,1a748f3c-4c85-3d85-a203-3bb4eb40d9b1 -2014,Misiones,II.1.1,0.05418,TJ,N2O,3.9,kg/TJ,0.211302,Gas Oil combustion consumption by freight transport,AR-N,SESCO,annual,kg,1a748f3c-4c85-3d85-a203-3bb4eb40d9b1 -2014,San Juan,II.1.1,0.0036119999999999998,TJ,CO2,74100.0,kg/TJ,267.6492,Gas Oil combustion consumption by freight transport,AR-J,SESCO,annual,kg,926e98b0-717c-3943-8131-b3ea241feb0b -2014,San Juan,II.1.1,0.0036119999999999998,TJ,CH4,3.9,kg/TJ,0.014086799999999998,Gas Oil combustion consumption by freight transport,AR-J,SESCO,annual,kg,8a6037ee-88c1-39b1-8368-58e9a08d0c3b -2014,San Juan,II.1.1,0.0036119999999999998,TJ,N2O,3.9,kg/TJ,0.014086799999999998,Gas Oil combustion consumption by freight transport,AR-J,SESCO,annual,kg,8a6037ee-88c1-39b1-8368-58e9a08d0c3b -2014,San Luis,II.1.1,0.1755432,TJ,CO2,74100.0,kg/TJ,13007.75112,Gas Oil combustion consumption by freight transport,AR-D,SESCO,annual,kg,69ed602e-800c-3597-a340-3707ef891d7f -2014,San Luis,II.1.1,0.1755432,TJ,CH4,3.9,kg/TJ,0.68461848,Gas Oil combustion consumption by freight transport,AR-D,SESCO,annual,kg,550f448c-00dc-33e8-a540-77b0b728422d -2014,San Luis,II.1.1,0.1755432,TJ,N2O,3.9,kg/TJ,0.68461848,Gas Oil combustion consumption by freight transport,AR-D,SESCO,annual,kg,550f448c-00dc-33e8-a540-77b0b728422d -2014,Santa Fe,II.1.1,1.8255048,TJ,CO2,74100.0,kg/TJ,135269.90568,Gas Oil combustion consumption by freight transport,AR-S,SESCO,annual,kg,6ff05dd3-815d-3fdd-994d-c3c8712d5552 -2014,Santa Fe,II.1.1,1.8255048,TJ,CH4,3.9,kg/TJ,7.11946872,Gas Oil combustion consumption by freight transport,AR-S,SESCO,annual,kg,05c41f5a-9a71-3062-88b3-bdabf9f1ee66 -2014,Santa Fe,II.1.1,1.8255048,TJ,N2O,3.9,kg/TJ,7.11946872,Gas Oil combustion consumption by freight transport,AR-S,SESCO,annual,kg,05c41f5a-9a71-3062-88b3-bdabf9f1ee66 -2014,Santiago del Estero,II.1.1,0.18059999999999998,TJ,CO2,74100.0,kg/TJ,13382.46,Gas Oil combustion consumption by freight transport,AR-G,SESCO,annual,kg,3c8c274a-f4c1-32eb-b1d8-294aef5a8545 -2014,Santiago del Estero,II.1.1,0.18059999999999998,TJ,CH4,3.9,kg/TJ,0.70434,Gas Oil combustion consumption by freight transport,AR-G,SESCO,annual,kg,57674291-16cd-3d81-b3c2-f42e9b17a22d -2014,Santiago del Estero,II.1.1,0.18059999999999998,TJ,N2O,3.9,kg/TJ,0.70434,Gas Oil combustion consumption by freight transport,AR-G,SESCO,annual,kg,57674291-16cd-3d81-b3c2-f42e9b17a22d -2014,Tierra del Fuego,II.1.1,0.0476784,TJ,CO2,74100.0,kg/TJ,3532.9694400000003,Gas Oil combustion consumption by freight transport,AR-V,SESCO,annual,kg,50327b74-69f2-3533-a38e-0937af75c147 -2014,Tierra del Fuego,II.1.1,0.0476784,TJ,CH4,3.9,kg/TJ,0.18594576000000002,Gas Oil combustion consumption by freight transport,AR-V,SESCO,annual,kg,40f7d57e-3525-387a-b787-4ef00b8a8fa3 -2014,Tierra del Fuego,II.1.1,0.0476784,TJ,N2O,3.9,kg/TJ,0.18594576000000002,Gas Oil combustion consumption by freight transport,AR-V,SESCO,annual,kg,40f7d57e-3525-387a-b787-4ef00b8a8fa3 -2014,Tucuman,II.1.1,0.30918719999999994,TJ,CO2,74100.0,kg/TJ,22910.771519999995,Gas Oil combustion consumption by freight transport,AR-T,SESCO,annual,kg,8c8f0565-03fd-3cce-b840-7ecb2b2eda63 -2014,Tucuman,II.1.1,0.30918719999999994,TJ,CH4,3.9,kg/TJ,1.2058300799999997,Gas Oil combustion consumption by freight transport,AR-T,SESCO,annual,kg,dd9011b6-0e56-3ec1-ab22-3b97931fa945 -2014,Tucuman,II.1.1,0.30918719999999994,TJ,N2O,3.9,kg/TJ,1.2058300799999997,Gas Oil combustion consumption by freight transport,AR-T,SESCO,annual,kg,dd9011b6-0e56-3ec1-ab22-3b97931fa945 -2014,Buenos Aires,II.1.1,0.534701,TJ,CO2,71500.0,kg/TJ,38231.1215,Jet Kerosene combustion consumption by freight transport,AR-B,SESCO,annual,kg,c2f6f28d-06c5-3feb-bc90-8ecb5ae5dc6e -2014,Buenos Aires,II.1.1,0.534701,TJ,CH4,0.5,kg/TJ,0.2673505,Jet Kerosene combustion consumption by freight transport,AR-B,SESCO,annual,kg,168ac1ac-0fcf-3422-a4b6-bd701efffa75 -2014,Buenos Aires,II.1.1,0.534701,TJ,N2O,2.0,kg/TJ,1.069402,Jet Kerosene combustion consumption by freight transport,AR-B,SESCO,annual,kg,65d5d6a4-9f24-30ef-abdc-29ca6b5868f4 -2014,Buenos Aires,II.1.1,5.4714352,TJ,CO2,73300.0,kg/TJ,401056.20016,Naphtha combustion consumption by freight transport,AR-B,SESCO,annual,kg,217f7393-a38d-3f88-8335-76ebebe198b3 -2014,Buenos Aires,II.1.1,5.4714352,TJ,CH4,0.5,kg/TJ,2.7357176,Naphtha combustion consumption by freight transport,AR-B,SESCO,annual,kg,ff09bfa3-7dde-3d72-a4b5-b87c11844b8e -2014,Buenos Aires,II.1.1,5.4714352,TJ,N2O,2.0,kg/TJ,10.9428704,Naphtha combustion consumption by freight transport,AR-B,SESCO,annual,kg,829d903c-2560-309f-a97f-8daab711f836 -2014,Capital Federal,II.1.1,10.283954450000001,TJ,CO2,73300.0,kg/TJ,753813.861185,Naphtha combustion consumption by freight transport,AR-C,SESCO,annual,kg,3898f3fb-7309-3c97-b0fd-143afde71a00 -2014,Capital Federal,II.1.1,10.283954450000001,TJ,CH4,0.5,kg/TJ,5.141977225000001,Naphtha combustion consumption by freight transport,AR-C,SESCO,annual,kg,44881b50-0fb6-3816-8467-f98cafaa520a -2014,Capital Federal,II.1.1,10.283954450000001,TJ,N2O,2.0,kg/TJ,20.567908900000003,Naphtha combustion consumption by freight transport,AR-C,SESCO,annual,kg,eee3b5a3-1b2a-3d9e-839e-f0ae2afb5869 -2014,Chaco,II.1.1,0.08737575000000002,TJ,CO2,73300.0,kg/TJ,6404.6424750000015,Naphtha combustion consumption by freight transport,AR-H,SESCO,annual,kg,4a39c260-ec38-3968-aa89-52fbeb876500 -2014,Chaco,II.1.1,0.08737575000000002,TJ,CH4,0.5,kg/TJ,0.04368787500000001,Naphtha combustion consumption by freight transport,AR-H,SESCO,annual,kg,4f9fa204-e8e7-351b-9ae5-24e601968b98 -2014,Chaco,II.1.1,0.08737575000000002,TJ,N2O,2.0,kg/TJ,0.17475150000000003,Naphtha combustion consumption by freight transport,AR-H,SESCO,annual,kg,4a695200-71dd-38f3-b8e7-52cb62a45cd4 -2014,Corrientes,II.1.1,0.0376915,TJ,CO2,73300.0,kg/TJ,2762.78695,Naphtha combustion consumption by freight transport,AR-W,SESCO,annual,kg,004d544c-71e3-3f3a-a25c-3a61b529c24b -2014,Corrientes,II.1.1,0.0376915,TJ,CH4,0.5,kg/TJ,0.01884575,Naphtha combustion consumption by freight transport,AR-W,SESCO,annual,kg,027b86e5-afab-3872-8fa7-6646e995c296 -2014,Corrientes,II.1.1,0.0376915,TJ,N2O,2.0,kg/TJ,0.075383,Naphtha combustion consumption by freight transport,AR-W,SESCO,annual,kg,e1b5aaf6-b8b5-39aa-aa25-2ac8610b024c -2014,Córdoba,II.1.1,0.5746240499999999,TJ,CO2,73300.0,kg/TJ,42119.942865,Naphtha combustion consumption by freight transport,AR-X,SESCO,annual,kg,39671bc5-fbec-327e-ba6f-6e3219b6f0e6 -2014,Córdoba,II.1.1,0.5746240499999999,TJ,CH4,0.5,kg/TJ,0.28731202499999997,Naphtha combustion consumption by freight transport,AR-X,SESCO,annual,kg,5e9dda37-2b02-3edd-8b6f-7b0c5e20676d -2014,Córdoba,II.1.1,0.5746240499999999,TJ,N2O,2.0,kg/TJ,1.1492480999999999,Naphtha combustion consumption by freight transport,AR-X,SESCO,annual,kg,f9f668ee-fbb6-35e5-8485-3b486cdd4034 -2014,Entre Rios,II.1.1,0.0041118,TJ,CO2,73300.0,kg/TJ,301.39493999999996,Naphtha combustion consumption by freight transport,AR-E,SESCO,annual,kg,9ec74ee1-f36a-3c79-90de-f78450e42d7c -2014,Entre Rios,II.1.1,0.0041118,TJ,CH4,0.5,kg/TJ,0.0020559,Naphtha combustion consumption by freight transport,AR-E,SESCO,annual,kg,6a256b7d-0f55-39d2-8c21-2f34e22cdd90 -2014,Entre Rios,II.1.1,0.0041118,TJ,N2O,2.0,kg/TJ,0.0082236,Naphtha combustion consumption by freight transport,AR-E,SESCO,annual,kg,8cb4dd49-1657-34d3-909c-80aa1ad3a6e0 -2014,Mendoza,II.1.1,0.0013706,TJ,CO2,73300.0,kg/TJ,100.46498,Naphtha combustion consumption by freight transport,AR-M,SESCO,annual,kg,361d7cb8-7b71-3382-b269-ee0bb721ae0e -2014,Mendoza,II.1.1,0.0013706,TJ,CH4,0.5,kg/TJ,0.0006853,Naphtha combustion consumption by freight transport,AR-M,SESCO,annual,kg,5c7d999a-ecd6-3638-a47f-2870302a7c2d -2014,Mendoza,II.1.1,0.0013706,TJ,N2O,2.0,kg/TJ,0.0027412,Naphtha combustion consumption by freight transport,AR-M,SESCO,annual,kg,22c7566b-71eb-3b26-abb4-cc380efdbd8a -2014,San Luis,II.1.1,0.07641094999999999,TJ,CO2,73300.0,kg/TJ,5600.922634999999,Naphtha combustion consumption by freight transport,AR-D,SESCO,annual,kg,49213e86-6a1d-3f4b-94e5-89dfaa93b160 -2014,San Luis,II.1.1,0.07641094999999999,TJ,CH4,0.5,kg/TJ,0.038205474999999996,Naphtha combustion consumption by freight transport,AR-D,SESCO,annual,kg,017a7ea4-bde5-32ed-8f01-21ad19580919 -2014,San Luis,II.1.1,0.07641094999999999,TJ,N2O,2.0,kg/TJ,0.15282189999999998,Naphtha combustion consumption by freight transport,AR-D,SESCO,annual,kg,c7924d03-72e3-3856-817d-cc10ee6b4653 -2014,Santa Fe,II.1.1,4.4996798,TJ,CO2,73300.0,kg/TJ,329826.52934,Naphtha combustion consumption by freight transport,AR-S,SESCO,annual,kg,1c320fc8-534b-330a-8414-e1be4aa0fd4a -2014,Santa Fe,II.1.1,4.4996798,TJ,CH4,0.5,kg/TJ,2.2498399,Naphtha combustion consumption by freight transport,AR-S,SESCO,annual,kg,e2e8c6d7-ca87-3bad-8b5c-0245073e0cee -2014,Santa Fe,II.1.1,4.4996798,TJ,N2O,2.0,kg/TJ,8.9993596,Naphtha combustion consumption by freight transport,AR-S,SESCO,annual,kg,a4febf9d-f09e-31f9-ac11-02286ce9a11b -2014,Tierra del Fuego,II.1.1,0.0034265,TJ,CO2,73300.0,kg/TJ,251.16244999999998,Naphtha combustion consumption by freight transport,AR-V,SESCO,annual,kg,ab64814d-2f36-3354-8f09-4ed0e1218f6e -2014,Tierra del Fuego,II.1.1,0.0034265,TJ,CH4,0.5,kg/TJ,0.00171325,Naphtha combustion consumption by freight transport,AR-V,SESCO,annual,kg,bed4c9fb-7e57-3f5d-a200-c8c0d915b766 -2014,Tierra del Fuego,II.1.1,0.0034265,TJ,N2O,2.0,kg/TJ,0.006853,Naphtha combustion consumption by freight transport,AR-V,SESCO,annual,kg,28fda32a-5606-3c1b-b156-7f0496e0c822 -2014,Tucuman,II.1.1,0.061676999999999996,TJ,CO2,73300.0,kg/TJ,4520.924099999999,Naphtha combustion consumption by freight transport,AR-T,SESCO,annual,kg,9fd54ac8-3b86-3b6b-a3ca-a95db97d9999 -2014,Tucuman,II.1.1,0.061676999999999996,TJ,CH4,0.5,kg/TJ,0.030838499999999998,Naphtha combustion consumption by freight transport,AR-T,SESCO,annual,kg,330fc414-f2e6-3ed8-8b80-6eb144eaa0c8 -2014,Tucuman,II.1.1,0.061676999999999996,TJ,N2O,2.0,kg/TJ,0.12335399999999999,Naphtha combustion consumption by freight transport,AR-T,SESCO,annual,kg,c74e2be9-683a-391a-9fdb-79397643a7b8 -2014,Buenos Aires,II.1.1,6.477455599999999,TJ,CO2,73300.0,kg/TJ,474797.4954799999,Naphtha combustion consumption by freight transport,AR-B,SESCO,annual,kg,5dbfe5f1-526e-3d69-8cf2-f031f02b4302 -2014,Buenos Aires,II.1.1,6.477455599999999,TJ,CH4,0.5,kg/TJ,3.2387277999999995,Naphtha combustion consumption by freight transport,AR-B,SESCO,annual,kg,350a9237-3278-3bf1-b806-16f3ff2f72f9 -2014,Buenos Aires,II.1.1,6.477455599999999,TJ,N2O,2.0,kg/TJ,12.954911199999998,Naphtha combustion consumption by freight transport,AR-B,SESCO,annual,kg,c554fffc-9c95-36c0-8faf-5a1287a1d045 -2014,Capital Federal,II.1.1,8.8033638,TJ,CO2,73300.0,kg/TJ,645286.56654,Naphtha combustion consumption by freight transport,AR-C,SESCO,annual,kg,1ef6db77-ce43-3634-a168-f2bcf1b905b2 -2014,Capital Federal,II.1.1,8.8033638,TJ,CH4,0.5,kg/TJ,4.4016819,Naphtha combustion consumption by freight transport,AR-C,SESCO,annual,kg,66733c11-ac60-3174-be27-be7b96e48b5c -2014,Capital Federal,II.1.1,8.8033638,TJ,N2O,2.0,kg/TJ,17.6067276,Naphtha combustion consumption by freight transport,AR-C,SESCO,annual,kg,637cd858-004b-31c4-b657-6258d4e3dea2 -2014,Chaco,II.1.1,0.05722255,TJ,CO2,73300.0,kg/TJ,4194.412915,Naphtha combustion consumption by freight transport,AR-H,SESCO,annual,kg,5d332cc8-4c10-38bb-afc7-28aa87c5ec2d -2014,Chaco,II.1.1,0.05722255,TJ,CH4,0.5,kg/TJ,0.028611275,Naphtha combustion consumption by freight transport,AR-H,SESCO,annual,kg,e95cd55b-9052-3c71-8b68-669f7b24dea4 -2014,Chaco,II.1.1,0.05722255,TJ,N2O,2.0,kg/TJ,0.1144451,Naphtha combustion consumption by freight transport,AR-H,SESCO,annual,kg,a6560a11-0c22-3b16-8330-03aea559c417 -2014,Corrientes,II.1.1,0.1062215,TJ,CO2,73300.0,kg/TJ,7786.0359499999995,Naphtha combustion consumption by freight transport,AR-W,SESCO,annual,kg,0ec38c5a-468a-3fe5-97f2-202149a37a77 -2014,Corrientes,II.1.1,0.1062215,TJ,CH4,0.5,kg/TJ,0.05311075,Naphtha combustion consumption by freight transport,AR-W,SESCO,annual,kg,f711ef2b-0f5c-35c3-9d5c-c2434d91f554 -2014,Corrientes,II.1.1,0.1062215,TJ,N2O,2.0,kg/TJ,0.212443,Naphtha combustion consumption by freight transport,AR-W,SESCO,annual,kg,6a85d647-f77e-3f2f-8bf9-92d37e799b2b -2014,Córdoba,II.1.1,0.5739387499999999,TJ,CO2,73300.0,kg/TJ,42069.710374999995,Naphtha combustion consumption by freight transport,AR-X,SESCO,annual,kg,dfe23476-3ff9-3cd5-9d0c-83e529690207 -2014,Córdoba,II.1.1,0.5739387499999999,TJ,CH4,0.5,kg/TJ,0.28696937499999997,Naphtha combustion consumption by freight transport,AR-X,SESCO,annual,kg,df5ac58c-2f9a-3d59-a4c0-99327ff5de1f -2014,Córdoba,II.1.1,0.5739387499999999,TJ,N2O,2.0,kg/TJ,1.1478774999999999,Naphtha combustion consumption by freight transport,AR-X,SESCO,annual,kg,7678760b-03d7-30e1-b653-c9eb062c1a6d -2014,Entre Rios,II.1.1,0.17646474999999998,TJ,CO2,73300.0,kg/TJ,12934.866174999997,Naphtha combustion consumption by freight transport,AR-E,SESCO,annual,kg,0f00f3f7-ae90-37d9-990e-49c98b35d364 -2014,Entre Rios,II.1.1,0.17646474999999998,TJ,CH4,0.5,kg/TJ,0.08823237499999999,Naphtha combustion consumption by freight transport,AR-E,SESCO,annual,kg,51c564d0-b9c5-3152-9c6e-ec70a55a2c96 -2014,Entre Rios,II.1.1,0.17646474999999998,TJ,N2O,2.0,kg/TJ,0.35292949999999995,Naphtha combustion consumption by freight transport,AR-E,SESCO,annual,kg,c999f430-0d88-3f9d-a023-7873fd6a77f6 -2014,Misiones,II.1.1,0.006853,TJ,CO2,73300.0,kg/TJ,502.32489999999996,Naphtha combustion consumption by freight transport,AR-N,SESCO,annual,kg,4af9cf61-a2f2-37e5-8678-5e7562120d35 -2014,Misiones,II.1.1,0.006853,TJ,CH4,0.5,kg/TJ,0.0034265,Naphtha combustion consumption by freight transport,AR-N,SESCO,annual,kg,8f8ec2c6-1263-31fb-b01b-b6d5042207fe -2014,Misiones,II.1.1,0.006853,TJ,N2O,2.0,kg/TJ,0.013706,Naphtha combustion consumption by freight transport,AR-N,SESCO,annual,kg,65326f30-4989-3a42-a71d-ae1b8fb2e560 -2014,San Luis,II.1.1,0.00308385,TJ,CO2,73300.0,kg/TJ,226.046205,Naphtha combustion consumption by freight transport,AR-D,SESCO,annual,kg,2615d1e7-3a06-303c-a25d-82e3f3152761 -2014,San Luis,II.1.1,0.00308385,TJ,CH4,0.5,kg/TJ,0.001541925,Naphtha combustion consumption by freight transport,AR-D,SESCO,annual,kg,ec81b163-c4fe-35e0-977c-542a69390912 -2014,San Luis,II.1.1,0.00308385,TJ,N2O,2.0,kg/TJ,0.0061677,Naphtha combustion consumption by freight transport,AR-D,SESCO,annual,kg,a49e84cc-5bff-3335-aab1-db9f99db4657 -2014,Santa Fe,II.1.1,0.8141364,TJ,CO2,73300.0,kg/TJ,59676.19812,Naphtha combustion consumption by freight transport,AR-S,SESCO,annual,kg,f3e01512-81d2-3de0-8c03-b0a8d905b8af -2014,Santa Fe,II.1.1,0.8141364,TJ,CH4,0.5,kg/TJ,0.4070682,Naphtha combustion consumption by freight transport,AR-S,SESCO,annual,kg,6b9911ca-a74f-347f-a707-0a95c0e9c09c -2014,Santa Fe,II.1.1,0.8141364,TJ,N2O,2.0,kg/TJ,1.6282728,Naphtha combustion consumption by freight transport,AR-S,SESCO,annual,kg,fb7a391d-49ec-3038-a9bd-23e5896ab097 -2014,Santiago del Estero,II.1.1,0.102795,TJ,CO2,73300.0,kg/TJ,7534.8735,Naphtha combustion consumption by freight transport,AR-G,SESCO,annual,kg,a90cae4c-93a1-32c5-9685-b63d22830728 -2014,Santiago del Estero,II.1.1,0.102795,TJ,CH4,0.5,kg/TJ,0.0513975,Naphtha combustion consumption by freight transport,AR-G,SESCO,annual,kg,02db2bba-d51d-350e-9ab8-556219555435 -2014,Santiago del Estero,II.1.1,0.102795,TJ,N2O,2.0,kg/TJ,0.20559,Naphtha combustion consumption by freight transport,AR-G,SESCO,annual,kg,d6d0ac53-a3b4-3aa6-9610-016f426c8a07 -2014,Tierra del Fuego,II.1.1,0.05653725,TJ,CO2,73300.0,kg/TJ,4144.180425,Naphtha combustion consumption by freight transport,AR-V,SESCO,annual,kg,0db0eab9-5cc3-31e2-8128-89f7707476ff -2014,Tierra del Fuego,II.1.1,0.05653725,TJ,CH4,0.5,kg/TJ,0.028268625,Naphtha combustion consumption by freight transport,AR-V,SESCO,annual,kg,2c54e273-4920-376c-9e51-1c2bb08c7e17 -2014,Tierra del Fuego,II.1.1,0.05653725,TJ,N2O,2.0,kg/TJ,0.1130745,Naphtha combustion consumption by freight transport,AR-V,SESCO,annual,kg,598124c5-1672-369b-885a-4c32b866fca0 -2014,Tucuman,II.1.1,0.15453514999999998,TJ,CO2,73300.0,kg/TJ,11327.426494999998,Naphtha combustion consumption by freight transport,AR-T,SESCO,annual,kg,a607d211-af78-33cd-873d-871e16beb931 -2014,Tucuman,II.1.1,0.15453514999999998,TJ,CH4,0.5,kg/TJ,0.07726757499999999,Naphtha combustion consumption by freight transport,AR-T,SESCO,annual,kg,90968d46-0214-38f3-86b9-134f33023281 -2014,Tucuman,II.1.1,0.15453514999999998,TJ,N2O,2.0,kg/TJ,0.30907029999999996,Naphtha combustion consumption by freight transport,AR-T,SESCO,annual,kg,1c12e326-6ad4-337b-a9a9-33bc9e748d5f -2014,Buenos Aires,II.1.1,2229.857364,TJ,CO2,74100.0,kg/TJ,165232430.6724,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,10b57edf-be7a-3c6c-a857-230502b81b50 -2014,Buenos Aires,II.1.1,2229.857364,TJ,CH4,3.9,kg/TJ,8696.4437196,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,a157fb05-24ba-3d7d-b42b-5a113573abf2 -2014,Buenos Aires,II.1.1,2229.857364,TJ,N2O,3.9,kg/TJ,8696.4437196,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,a157fb05-24ba-3d7d-b42b-5a113573abf2 -2014,Capital Federal,II.1.1,151.3453284,TJ,CO2,74100.0,kg/TJ,11214688.83444,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,6a271262-5b5d-3091-8a5c-285511a3e5ec -2014,Capital Federal,II.1.1,151.3453284,TJ,CH4,3.9,kg/TJ,590.24678076,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,28440ac1-0d44-3d7b-8f4d-93774d9b81cd -2014,Capital Federal,II.1.1,151.3453284,TJ,N2O,3.9,kg/TJ,590.24678076,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,28440ac1-0d44-3d7b-8f4d-93774d9b81cd -2014,Catamarca,II.1.1,0.21672,TJ,CO2,74100.0,kg/TJ,16058.952,Gas Oil combustion consumption by public passenger transport,AR-K,SESCO,annual,kg,1f3960a5-cb83-3751-a14f-9a0d86c4d5df -2014,Catamarca,II.1.1,0.21672,TJ,CH4,3.9,kg/TJ,0.845208,Gas Oil combustion consumption by public passenger transport,AR-K,SESCO,annual,kg,23b635c7-9afa-38e5-a1f8-18d89d130fd4 -2014,Catamarca,II.1.1,0.21672,TJ,N2O,3.9,kg/TJ,0.845208,Gas Oil combustion consumption by public passenger transport,AR-K,SESCO,annual,kg,23b635c7-9afa-38e5-a1f8-18d89d130fd4 -2014,Chubut,II.1.1,14.155427999999999,TJ,CO2,74100.0,kg/TJ,1048917.2148,Gas Oil combustion consumption by public passenger transport,AR-U,SESCO,annual,kg,3ab2a1c9-0a8e-3499-a13e-fafefc72bad9 -2014,Chubut,II.1.1,14.155427999999999,TJ,CH4,3.9,kg/TJ,55.20616919999999,Gas Oil combustion consumption by public passenger transport,AR-U,SESCO,annual,kg,d0ab494a-139c-3611-aeb8-f0b60320a2b9 -2014,Chubut,II.1.1,14.155427999999999,TJ,N2O,3.9,kg/TJ,55.20616919999999,Gas Oil combustion consumption by public passenger transport,AR-U,SESCO,annual,kg,d0ab494a-139c-3611-aeb8-f0b60320a2b9 -2014,Corrientes,II.1.1,0.25284,TJ,CO2,74100.0,kg/TJ,18735.444,Gas Oil combustion consumption by public passenger transport,AR-W,SESCO,annual,kg,0354494c-5c8c-3661-957c-252edf68e61f -2014,Corrientes,II.1.1,0.25284,TJ,CH4,3.9,kg/TJ,0.9860760000000001,Gas Oil combustion consumption by public passenger transport,AR-W,SESCO,annual,kg,84fe2139-6d90-3674-99aa-dc1595dbd8cd -2014,Corrientes,II.1.1,0.25284,TJ,N2O,3.9,kg/TJ,0.9860760000000001,Gas Oil combustion consumption by public passenger transport,AR-W,SESCO,annual,kg,84fe2139-6d90-3674-99aa-dc1595dbd8cd -2014,Córdoba,II.1.1,66.02772119999999,TJ,CO2,74100.0,kg/TJ,4892654.140919999,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,698425f7-590b-3147-a664-bd22d963b295 -2014,Córdoba,II.1.1,66.02772119999999,TJ,CH4,3.9,kg/TJ,257.50811267999995,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,f08114ee-1b75-3861-a9c2-68c0badc02bc -2014,Córdoba,II.1.1,66.02772119999999,TJ,N2O,3.9,kg/TJ,257.50811267999995,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,f08114ee-1b75-3861-a9c2-68c0badc02bc -2014,Entre Rios,II.1.1,52.18942679999999,TJ,CO2,74100.0,kg/TJ,3867236.5258799996,Gas Oil combustion consumption by public passenger transport,AR-E,SESCO,annual,kg,7639fa44-5f2a-3ded-8c00-3325f618e6c5 -2014,Entre Rios,II.1.1,52.18942679999999,TJ,CH4,3.9,kg/TJ,203.53876451999997,Gas Oil combustion consumption by public passenger transport,AR-E,SESCO,annual,kg,e2874374-31b6-3468-b2b3-5223d81c75ff -2014,Entre Rios,II.1.1,52.18942679999999,TJ,N2O,3.9,kg/TJ,203.53876451999997,Gas Oil combustion consumption by public passenger transport,AR-E,SESCO,annual,kg,e2874374-31b6-3468-b2b3-5223d81c75ff -2014,La Pampa,II.1.1,9.138359999999999,TJ,CO2,74100.0,kg/TJ,677152.4759999999,Gas Oil combustion consumption by public passenger transport,AR-L,SESCO,annual,kg,efd6ec17-06e3-3e1a-816b-dfbda44ec012 -2014,La Pampa,II.1.1,9.138359999999999,TJ,CH4,3.9,kg/TJ,35.63960399999999,Gas Oil combustion consumption by public passenger transport,AR-L,SESCO,annual,kg,91ed71f4-a3cf-3ec6-8c96-8858368e643e -2014,La Pampa,II.1.1,9.138359999999999,TJ,N2O,3.9,kg/TJ,35.63960399999999,Gas Oil combustion consumption by public passenger transport,AR-L,SESCO,annual,kg,91ed71f4-a3cf-3ec6-8c96-8858368e643e -2014,Mendoza,II.1.1,0.43344,TJ,CO2,74100.0,kg/TJ,32117.904,Gas Oil combustion consumption by public passenger transport,AR-M,SESCO,annual,kg,3171c01c-7c94-3a55-8596-ea71eb868367 -2014,Mendoza,II.1.1,0.43344,TJ,CH4,3.9,kg/TJ,1.690416,Gas Oil combustion consumption by public passenger transport,AR-M,SESCO,annual,kg,41e56719-715a-34df-8e41-11a75a71e38e -2014,Mendoza,II.1.1,0.43344,TJ,N2O,3.9,kg/TJ,1.690416,Gas Oil combustion consumption by public passenger transport,AR-M,SESCO,annual,kg,41e56719-715a-34df-8e41-11a75a71e38e -2014,Misiones,II.1.1,19.636999199999998,TJ,CO2,74100.0,kg/TJ,1455101.6407199998,Gas Oil combustion consumption by public passenger transport,AR-N,SESCO,annual,kg,bd27bfe5-0c4c-3b8f-b951-fe6d04263c80 -2014,Misiones,II.1.1,19.636999199999998,TJ,CH4,3.9,kg/TJ,76.58429688,Gas Oil combustion consumption by public passenger transport,AR-N,SESCO,annual,kg,5be08e9d-fc2b-33f8-a6e3-e97a2e2b8d88 -2014,Misiones,II.1.1,19.636999199999998,TJ,N2O,3.9,kg/TJ,76.58429688,Gas Oil combustion consumption by public passenger transport,AR-N,SESCO,annual,kg,5be08e9d-fc2b-33f8-a6e3-e97a2e2b8d88 -2014,Rio Negro,II.1.1,56.1871884,TJ,CO2,74100.0,kg/TJ,4163470.66044,Gas Oil combustion consumption by public passenger transport,AR-R,SESCO,annual,kg,6f30bd03-f35f-395b-941f-1354d67f4918 -2014,Rio Negro,II.1.1,56.1871884,TJ,CH4,3.9,kg/TJ,219.13003475999997,Gas Oil combustion consumption by public passenger transport,AR-R,SESCO,annual,kg,bceaa9a5-76d5-3b50-8cbe-62444cc190cf -2014,Rio Negro,II.1.1,56.1871884,TJ,N2O,3.9,kg/TJ,219.13003475999997,Gas Oil combustion consumption by public passenger transport,AR-R,SESCO,annual,kg,bceaa9a5-76d5-3b50-8cbe-62444cc190cf -2014,San Juan,II.1.1,0.729624,TJ,CO2,74100.0,kg/TJ,54065.1384,Gas Oil combustion consumption by public passenger transport,AR-J,SESCO,annual,kg,9663ccf5-b0e0-3e28-a85e-00588fecfada -2014,San Juan,II.1.1,0.729624,TJ,CH4,3.9,kg/TJ,2.8455336,Gas Oil combustion consumption by public passenger transport,AR-J,SESCO,annual,kg,8e5e34c4-36f1-3fc9-b0ce-283aeb1ed0a3 -2014,San Juan,II.1.1,0.729624,TJ,N2O,3.9,kg/TJ,2.8455336,Gas Oil combustion consumption by public passenger transport,AR-J,SESCO,annual,kg,8e5e34c4-36f1-3fc9-b0ce-283aeb1ed0a3 -2014,San Luis,II.1.1,0.14448,TJ,CO2,74100.0,kg/TJ,10705.967999999999,Gas Oil combustion consumption by public passenger transport,AR-D,SESCO,annual,kg,c7d53982-bf06-329b-a27c-77a41c6fb3f2 -2014,San Luis,II.1.1,0.14448,TJ,CH4,3.9,kg/TJ,0.563472,Gas Oil combustion consumption by public passenger transport,AR-D,SESCO,annual,kg,0605f77b-cca0-37a9-a55e-72a5085f78b0 -2014,San Luis,II.1.1,0.14448,TJ,N2O,3.9,kg/TJ,0.563472,Gas Oil combustion consumption by public passenger transport,AR-D,SESCO,annual,kg,0605f77b-cca0-37a9-a55e-72a5085f78b0 -2014,Santa Fe,II.1.1,4.6807908,TJ,CO2,74100.0,kg/TJ,346846.59828,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,40ea3824-7ad7-3293-aba1-764a7a2b3c24 -2014,Santa Fe,II.1.1,4.6807908,TJ,CH4,3.9,kg/TJ,18.25508412,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,18af4ffb-e793-3374-a64b-12ec1e3b9d0a -2014,Santa Fe,II.1.1,4.6807908,TJ,N2O,3.9,kg/TJ,18.25508412,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,18af4ffb-e793-3374-a64b-12ec1e3b9d0a -2014,Buenos Aires,II.1.1,1.3097112,TJ,CO2,74100.0,kg/TJ,97049.59992,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,47022a84-9713-3490-9244-8578249c6297 -2014,Buenos Aires,II.1.1,1.3097112,TJ,CH4,3.9,kg/TJ,5.10787368,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,b4f9a759-d28e-35da-a326-63cbecd2aa41 -2014,Buenos Aires,II.1.1,1.3097112,TJ,N2O,3.9,kg/TJ,5.10787368,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,b4f9a759-d28e-35da-a326-63cbecd2aa41 -2014,Capital Federal,II.1.1,14.010947999999999,TJ,CO2,74100.0,kg/TJ,1038211.2468,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,0bc0fd18-47bc-35b8-a589-107bfdc9bb52 -2014,Capital Federal,II.1.1,14.010947999999999,TJ,CH4,3.9,kg/TJ,54.64269719999999,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,fb2dc791-b868-34c1-a693-d1b84a7aa8aa -2014,Capital Federal,II.1.1,14.010947999999999,TJ,N2O,3.9,kg/TJ,54.64269719999999,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,fb2dc791-b868-34c1-a693-d1b84a7aa8aa -2014,Córdoba,II.1.1,0.1043868,TJ,CO2,74100.0,kg/TJ,7735.06188,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,ad53deed-156b-38bd-91bd-4a081cea6069 -2014,Córdoba,II.1.1,0.1043868,TJ,CH4,3.9,kg/TJ,0.40710852,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,b58abf9e-3190-3808-a9b1-db486b26a053 -2014,Córdoba,II.1.1,0.1043868,TJ,N2O,3.9,kg/TJ,0.40710852,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,b58abf9e-3190-3808-a9b1-db486b26a053 -2014,Entre Rios,II.1.1,0.08307599999999998,TJ,CO2,74100.0,kg/TJ,6155.931599999999,Gas Oil combustion consumption by public passenger transport,AR-E,SESCO,annual,kg,f2784f84-f2db-37dd-b6df-9f1c842b8551 -2014,Entre Rios,II.1.1,0.08307599999999998,TJ,CH4,3.9,kg/TJ,0.3239963999999999,Gas Oil combustion consumption by public passenger transport,AR-E,SESCO,annual,kg,de6b46c7-e258-3bfa-87ca-1d83990f61f9 -2014,Entre Rios,II.1.1,0.08307599999999998,TJ,N2O,3.9,kg/TJ,0.3239963999999999,Gas Oil combustion consumption by public passenger transport,AR-E,SESCO,annual,kg,de6b46c7-e258-3bfa-87ca-1d83990f61f9 -2014,Rio Negro,II.1.1,2.709,TJ,CO2,74100.0,kg/TJ,200736.9,Gas Oil combustion consumption by public passenger transport,AR-R,SESCO,annual,kg,dec01366-662c-3711-9ef7-ad6089613cd5 -2014,Rio Negro,II.1.1,2.709,TJ,CH4,3.9,kg/TJ,10.5651,Gas Oil combustion consumption by public passenger transport,AR-R,SESCO,annual,kg,4f3ff4b9-5664-3d23-9d56-11ae78b953a6 -2014,Rio Negro,II.1.1,2.709,TJ,N2O,3.9,kg/TJ,10.5651,Gas Oil combustion consumption by public passenger transport,AR-R,SESCO,annual,kg,4f3ff4b9-5664-3d23-9d56-11ae78b953a6 -2014,Capital Federal,II.1.1,0.028097300000000002,TJ,CO2,73300.0,kg/TJ,2059.53209,Naphtha combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,47ea9111-358d-34d5-b1ea-bb6bed48f114 -2014,Capital Federal,II.1.1,0.028097300000000002,TJ,CH4,0.5,kg/TJ,0.014048650000000001,Naphtha combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,5fa053a2-83a2-366d-8f7b-db4490d65795 -2014,Capital Federal,II.1.1,0.028097300000000002,TJ,N2O,2.0,kg/TJ,0.056194600000000004,Naphtha combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,08515e42-4532-3919-95ef-3e273bbd084e -2014,Entre Rios,II.1.1,0.0013706,TJ,CO2,73300.0,kg/TJ,100.46498,Naphtha combustion consumption by public passenger transport,AR-E,SESCO,annual,kg,26586499-9dc7-3603-b1f6-1eea1752edfe -2014,Entre Rios,II.1.1,0.0013706,TJ,CH4,0.5,kg/TJ,0.0006853,Naphtha combustion consumption by public passenger transport,AR-E,SESCO,annual,kg,6361b685-ccf5-3bdd-a819-89500c82a4d0 -2014,Entre Rios,II.1.1,0.0013706,TJ,N2O,2.0,kg/TJ,0.0027412,Naphtha combustion consumption by public passenger transport,AR-E,SESCO,annual,kg,3723ac85-ef7e-3b6d-86ec-243ab2a7b858 -2014,Santa Fe,II.1.1,1.404865,TJ,CO2,73300.0,kg/TJ,102976.6045,Naphtha combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,9929abb6-547d-37fa-baf6-796aa7af81ba -2014,Santa Fe,II.1.1,1.404865,TJ,CH4,0.5,kg/TJ,0.7024325,Naphtha combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,d48d6136-6665-32df-a1d5-08a5f6c34481 -2014,Santa Fe,II.1.1,1.404865,TJ,N2O,2.0,kg/TJ,2.80973,Naphtha combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,24bb6452-f233-3da7-99a4-39ea09e81071 -2014,Buenos Aires,II.1.1,1.0108175,TJ,CO2,73300.0,kg/TJ,74092.92275,Naphtha combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,4829dea1-c34d-38d4-b850-158c37fa6ae0 -2014,Buenos Aires,II.1.1,1.0108175,TJ,CH4,0.5,kg/TJ,0.50540875,Naphtha combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,305a44d8-3fd8-3475-91a7-ed76d998862a -2014,Buenos Aires,II.1.1,1.0108175,TJ,N2O,2.0,kg/TJ,2.021635,Naphtha combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,f611864a-b70f-305e-a7d8-082e4a92d249 -2014,Capital Federal,II.1.1,0.267267,TJ,CO2,73300.0,kg/TJ,19590.6711,Naphtha combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,853b0a99-1f64-36ff-abaf-0b101f605e76 -2014,Capital Federal,II.1.1,0.267267,TJ,CH4,0.5,kg/TJ,0.1336335,Naphtha combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,470c9e5d-eb7c-3fd1-95bf-a863c14e42b7 -2014,Capital Federal,II.1.1,0.267267,TJ,N2O,2.0,kg/TJ,0.534534,Naphtha combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,6d0cdbe0-1708-327c-98fb-27242c2a091a -2014,Chaco,II.1.1,0.010279500000000002,TJ,CO2,73300.0,kg/TJ,753.4873500000001,Naphtha combustion consumption by public passenger transport,AR-H,SESCO,annual,kg,c3ef7262-4ce7-327d-846e-a890aba85542 -2014,Chaco,II.1.1,0.010279500000000002,TJ,CH4,0.5,kg/TJ,0.005139750000000001,Naphtha combustion consumption by public passenger transport,AR-H,SESCO,annual,kg,471f73dd-547f-347d-9fa3-0ba7638e6b08 -2014,Chaco,II.1.1,0.010279500000000002,TJ,N2O,2.0,kg/TJ,0.020559000000000004,Naphtha combustion consumption by public passenger transport,AR-H,SESCO,annual,kg,6e9a25a0-e603-3127-8569-0bd8c95c55de -2014,Entre Rios,II.1.1,0.06887265000000001,TJ,CO2,73300.0,kg/TJ,5048.365245000001,Naphtha combustion consumption by public passenger transport,AR-E,SESCO,annual,kg,d4022387-6162-3cce-a9c5-70c6720a74e4 -2014,Entre Rios,II.1.1,0.06887265000000001,TJ,CH4,0.5,kg/TJ,0.034436325000000004,Naphtha combustion consumption by public passenger transport,AR-E,SESCO,annual,kg,8b0dbc12-cc8a-3fee-ab76-d79fd4cded34 -2014,Entre Rios,II.1.1,0.06887265000000001,TJ,N2O,2.0,kg/TJ,0.13774530000000001,Naphtha combustion consumption by public passenger transport,AR-E,SESCO,annual,kg,7ac2a5a3-e543-3c45-881c-dcd3dfb10448 -2014,Rio Negro,II.1.1,1.2678049999999998,TJ,CO2,73300.0,kg/TJ,92930.1065,Naphtha combustion consumption by public passenger transport,AR-R,SESCO,annual,kg,1335e361-4b9b-3b09-ad8c-befb3b24b33c -2014,Rio Negro,II.1.1,1.2678049999999998,TJ,CH4,0.5,kg/TJ,0.6339024999999999,Naphtha combustion consumption by public passenger transport,AR-R,SESCO,annual,kg,4129ef0c-8bfe-3a7a-bdb8-be82301cb81a -2014,Rio Negro,II.1.1,1.2678049999999998,TJ,N2O,2.0,kg/TJ,2.5356099999999997,Naphtha combustion consumption by public passenger transport,AR-R,SESCO,annual,kg,f54f7d8c-1b70-3cf6-9d8a-00bbd9095092 -2014,Chubut,II.1.1,0.5250041999999999,TJ,CO2,74100.0,kg/TJ,38902.811219999996,Gas Oil combustion consumption by freight transport,AR-U,SESCO,annual,kg,2b1c3f39-f721-327d-8baa-ccace5460569 -2014,Chubut,II.1.1,0.5250041999999999,TJ,CH4,3.9,kg/TJ,2.04751638,Gas Oil combustion consumption by freight transport,AR-U,SESCO,annual,kg,ea374ed6-822c-3e39-9236-5d5be195bc12 -2014,Chubut,II.1.1,0.5250041999999999,TJ,N2O,3.9,kg/TJ,2.04751638,Gas Oil combustion consumption by freight transport,AR-U,SESCO,annual,kg,ea374ed6-822c-3e39-9236-5d5be195bc12 -2014,Buenos Aires,II.5.1,460.8753830519999,TJ,CO2,74100.0,kg/TJ,34150865.884153195,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,f6d767ca-e6bd-36a0-a28c-f47d8b179d29 -2014,Buenos Aires,II.5.1,460.8753830519999,TJ,CH4,3.9,kg/TJ,1797.4139939027996,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,f851f19c-2be5-36c4-b6e2-48ee07a89754 -2014,Buenos Aires,II.5.1,460.8753830519999,TJ,N2O,3.9,kg/TJ,1797.4139939027996,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,f851f19c-2be5-36c4-b6e2-48ee07a89754 -2014,Córdoba,II.5.1,586.015579212,TJ,CO2,74100.0,kg/TJ,43423754.419609204,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,9376a1d4-744c-3c9a-96a6-16d3f4f75b4b -2014,Córdoba,II.5.1,586.015579212,TJ,CH4,3.9,kg/TJ,2285.4607589268003,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,08ff8213-0e51-3d7f-ab73-e7998d1881cb -2014,Córdoba,II.5.1,586.015579212,TJ,N2O,3.9,kg/TJ,2285.4607589268003,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,08ff8213-0e51-3d7f-ab73-e7998d1881cb -2014,Entre Rios,II.5.1,450.445053996,TJ,CO2,74100.0,kg/TJ,33377978.501103602,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,5f5addb3-a442-3dd5-9937-1e59842bf707 -2014,Entre Rios,II.5.1,450.445053996,TJ,CH4,3.9,kg/TJ,1756.7357105844,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,646d08fc-7481-311a-9a35-1b7bd883ddd0 -2014,Entre Rios,II.5.1,450.445053996,TJ,N2O,3.9,kg/TJ,1756.7357105844,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,646d08fc-7481-311a-9a35-1b7bd883ddd0 -2014,Santa Fe,II.5.1,855.7092290039999,TJ,CO2,74100.0,kg/TJ,63408053.86919639,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,ce2077e7-588d-396f-95c9-6de8fa36301a -2014,Santa Fe,II.5.1,855.7092290039999,TJ,CH4,3.9,kg/TJ,3337.2659931155995,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,6f709826-904a-32c0-ad9f-4ea656eb9810 -2014,Santa Fe,II.5.1,855.7092290039999,TJ,N2O,3.9,kg/TJ,3337.2659931155995,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,6f709826-904a-32c0-ad9f-4ea656eb9810 -2014,Santiago del Estero,II.5.1,103.84646285999999,TJ,CO2,74100.0,kg/TJ,7695022.897925999,Gas Oil combustion consumption by agriculture machines,AR-G,SESCO,annual,kg,6544ee93-2e11-3018-be25-5612cbf44e6b -2014,Santiago del Estero,II.5.1,103.84646285999999,TJ,CH4,3.9,kg/TJ,405.00120515399993,Gas Oil combustion consumption by agriculture machines,AR-G,SESCO,annual,kg,9492908a-070b-3901-91a6-a30701477a6f -2014,Santiago del Estero,II.5.1,103.84646285999999,TJ,N2O,3.9,kg/TJ,405.00120515399993,Gas Oil combustion consumption by agriculture machines,AR-G,SESCO,annual,kg,9492908a-070b-3901-91a6-a30701477a6f -2014,Córdoba,II.5.1,3.024921053,TJ,CO2,73300.0,kg/TJ,221726.7131849,Naphtha combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,8dcbcc9a-76b0-3cde-8bbe-c52e24147aec -2014,Córdoba,II.5.1,3.024921053,TJ,CH4,0.5,kg/TJ,1.5124605265,Naphtha combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,79579d6a-a149-3be1-923d-2dcda74985c8 -2014,Córdoba,II.5.1,3.024921053,TJ,N2O,2.0,kg/TJ,6.049842106,Naphtha combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,f6ad5fb7-73fe-3607-a5e1-92778ba747f3 -2014,Santa Fe,II.5.1,4.8185567429999985,TJ,CO2,73300.0,kg/TJ,353200.2092618999,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,145bb8df-cbbe-300a-ad76-3c34c2742e89 -2014,Santa Fe,II.5.1,4.8185567429999985,TJ,CH4,0.5,kg/TJ,2.4092783714999992,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,a66d6f93-afb0-35bc-b9f5-fce59ca336a3 -2014,Santa Fe,II.5.1,4.8185567429999985,TJ,N2O,2.0,kg/TJ,9.637113485999997,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,7c30f8b1-c1d0-36ff-90a5-fbad0462de87 -2014,Santiago del Estero,II.5.1,2.485795543,TJ,CO2,73300.0,kg/TJ,182208.8133019,Naphtha combustion consumption by agriculture machines,AR-G,SESCO,annual,kg,2a484874-26c4-3421-ae24-05f1448363b2 -2014,Santiago del Estero,II.5.1,2.485795543,TJ,CH4,0.5,kg/TJ,1.2428977715,Naphtha combustion consumption by agriculture machines,AR-G,SESCO,annual,kg,6672b497-4091-3f13-b80b-9ad248b79e80 -2014,Santiago del Estero,II.5.1,2.485795543,TJ,N2O,2.0,kg/TJ,4.971591086,Naphtha combustion consumption by agriculture machines,AR-G,SESCO,annual,kg,eaca22ff-68d2-36d5-8abd-16af8df14999 -2014,Buenos Aires,II.1.1,405.69825072000003,TJ,CO2,74100.0,kg/TJ,30062240.378352,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,2e0b5c2e-4452-300f-be29-590237147cbf -2014,Buenos Aires,II.1.1,405.69825072000003,TJ,CH4,3.9,kg/TJ,1582.2231778080002,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,e7fa49cc-16a5-390e-bc10-ddd2ea998a4b -2014,Buenos Aires,II.1.1,405.69825072000003,TJ,N2O,3.9,kg/TJ,1582.2231778080002,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,e7fa49cc-16a5-390e-bc10-ddd2ea998a4b -2014,Chaco,II.1.1,17.422016052,TJ,CO2,74100.0,kg/TJ,1290971.3894532,Gas Oil combustion consumption by public passenger transport,AR-H,SESCO,annual,kg,af07c14b-2867-3bda-b673-b4be46ab22c6 -2014,Chaco,II.1.1,17.422016052,TJ,CH4,3.9,kg/TJ,67.9458626028,Gas Oil combustion consumption by public passenger transport,AR-H,SESCO,annual,kg,4a08fc21-218e-3d96-aa0b-561872df87e6 -2014,Chaco,II.1.1,17.422016052,TJ,N2O,3.9,kg/TJ,67.9458626028,Gas Oil combustion consumption by public passenger transport,AR-H,SESCO,annual,kg,4a08fc21-218e-3d96-aa0b-561872df87e6 -2014,Corrientes,II.1.1,34.72607502,TJ,CO2,74100.0,kg/TJ,2573202.1589820003,Gas Oil combustion consumption by public passenger transport,AR-W,SESCO,annual,kg,2789f6ab-356d-3365-9712-c33fa041d458 -2014,Corrientes,II.1.1,34.72607502,TJ,CH4,3.9,kg/TJ,135.431692578,Gas Oil combustion consumption by public passenger transport,AR-W,SESCO,annual,kg,52dd6cd7-390e-37df-8321-5d78cbc05bf4 -2014,Corrientes,II.1.1,34.72607502,TJ,N2O,3.9,kg/TJ,135.431692578,Gas Oil combustion consumption by public passenger transport,AR-W,SESCO,annual,kg,52dd6cd7-390e-37df-8321-5d78cbc05bf4 -2014,Córdoba,II.1.1,330.8534533079999,TJ,CO2,74100.0,kg/TJ,24516240.890122794,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,7b425eb5-5223-308b-b216-4e8b8ce62247 -2014,Córdoba,II.1.1,330.8534533079999,TJ,CH4,3.9,kg/TJ,1290.3284679011997,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,c2587de0-2715-3e30-9e8b-34040b28986f -2014,Córdoba,II.1.1,330.8534533079999,TJ,N2O,3.9,kg/TJ,1290.3284679011997,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,c2587de0-2715-3e30-9e8b-34040b28986f -2014,Entre Rios,II.1.1,95.658987144,TJ,CO2,74100.0,kg/TJ,7088330.9473704,Gas Oil combustion consumption by public passenger transport,AR-E,SESCO,annual,kg,9cebe517-a109-3d2f-a887-5985918b42d0 -2014,Entre Rios,II.1.1,95.658987144,TJ,CH4,3.9,kg/TJ,373.07004986159995,Gas Oil combustion consumption by public passenger transport,AR-E,SESCO,annual,kg,6d226c6b-8dbf-3ee1-87df-24415dae7846 -2014,Entre Rios,II.1.1,95.658987144,TJ,N2O,3.9,kg/TJ,373.07004986159995,Gas Oil combustion consumption by public passenger transport,AR-E,SESCO,annual,kg,6d226c6b-8dbf-3ee1-87df-24415dae7846 -2014,Jujuy,II.1.1,107.93315189999998,TJ,CO2,74100.0,kg/TJ,7997846.555789999,Gas Oil combustion consumption by public passenger transport,AR-Y,SESCO,annual,kg,a5f44544-87d2-3d9b-9b3f-06e64a61b5e7 -2014,Jujuy,II.1.1,107.93315189999998,TJ,CH4,3.9,kg/TJ,420.93929240999995,Gas Oil combustion consumption by public passenger transport,AR-Y,SESCO,annual,kg,037bd063-ef3e-314d-b6b5-cbd5cb9dbbf7 -2014,Jujuy,II.1.1,107.93315189999998,TJ,N2O,3.9,kg/TJ,420.93929240999995,Gas Oil combustion consumption by public passenger transport,AR-Y,SESCO,annual,kg,037bd063-ef3e-314d-b6b5-cbd5cb9dbbf7 -2014,Misiones,II.1.1,14.307738816,TJ,CO2,74100.0,kg/TJ,1060203.4462656,Gas Oil combustion consumption by public passenger transport,AR-N,SESCO,annual,kg,0a5598e0-7ccc-37bf-83d1-336a32aad16b -2014,Misiones,II.1.1,14.307738816,TJ,CH4,3.9,kg/TJ,55.8001813824,Gas Oil combustion consumption by public passenger transport,AR-N,SESCO,annual,kg,1b5e076c-6ea6-394b-b8aa-9c5fe65d7d4c -2014,Misiones,II.1.1,14.307738816,TJ,N2O,3.9,kg/TJ,55.8001813824,Gas Oil combustion consumption by public passenger transport,AR-N,SESCO,annual,kg,1b5e076c-6ea6-394b-b8aa-9c5fe65d7d4c -2014,Salta,II.1.1,90.417527256,TJ,CO2,74100.0,kg/TJ,6699938.7696696,Gas Oil combustion consumption by public passenger transport,AR-A,SESCO,annual,kg,7df731d0-9cc2-38a8-90e3-e9301767c709 -2014,Salta,II.1.1,90.417527256,TJ,CH4,3.9,kg/TJ,352.6283562984,Gas Oil combustion consumption by public passenger transport,AR-A,SESCO,annual,kg,e8a10ca7-add2-3b93-99d9-110774b9217f -2014,Salta,II.1.1,90.417527256,TJ,N2O,3.9,kg/TJ,352.6283562984,Gas Oil combustion consumption by public passenger transport,AR-A,SESCO,annual,kg,e8a10ca7-add2-3b93-99d9-110774b9217f -2014,Santa Fe,II.1.1,287.146714596,TJ,CO2,74100.0,kg/TJ,21277571.5515636,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,f64fb68d-9496-369e-8b81-c021527566b3 -2014,Santa Fe,II.1.1,287.146714596,TJ,CH4,3.9,kg/TJ,1119.8721869244,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,5d36c83c-cfdc-3abe-aa93-9fb300df602a -2014,Santa Fe,II.1.1,287.146714596,TJ,N2O,3.9,kg/TJ,1119.8721869244,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,5d36c83c-cfdc-3abe-aa93-9fb300df602a -2014,Santiago del Estero,II.1.1,119.468695164,TJ,CO2,74100.0,kg/TJ,8852630.3116524,Gas Oil combustion consumption by public passenger transport,AR-G,SESCO,annual,kg,59fbc363-b99e-3d03-a07b-2188eba473d5 -2014,Santiago del Estero,II.1.1,119.468695164,TJ,CH4,3.9,kg/TJ,465.9279111396,Gas Oil combustion consumption by public passenger transport,AR-G,SESCO,annual,kg,c5c5a21e-00d1-33b3-975d-aa817be45d07 -2014,Santiago del Estero,II.1.1,119.468695164,TJ,N2O,3.9,kg/TJ,465.9279111396,Gas Oil combustion consumption by public passenger transport,AR-G,SESCO,annual,kg,c5c5a21e-00d1-33b3-975d-aa817be45d07 -2014,Tucuman,II.1.1,30.958293072,TJ,CO2,74100.0,kg/TJ,2294009.5166352,Gas Oil combustion consumption by public passenger transport,AR-T,SESCO,annual,kg,729d157a-1843-3797-82ab-13b33774a551 -2014,Tucuman,II.1.1,30.958293072,TJ,CH4,3.9,kg/TJ,120.7373429808,Gas Oil combustion consumption by public passenger transport,AR-T,SESCO,annual,kg,de34cd09-e4cb-3576-bd95-06598db5a442 -2014,Tucuman,II.1.1,30.958293072,TJ,N2O,3.9,kg/TJ,120.7373429808,Gas Oil combustion consumption by public passenger transport,AR-T,SESCO,annual,kg,de34cd09-e4cb-3576-bd95-06598db5a442 -2014,Buenos Aires,II.5.1,405.36406847999996,TJ,CO2,74100.0,kg/TJ,30037477.474368,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,0a4775d8-bb23-3cb1-aac4-b0c74bcc315b -2014,Buenos Aires,II.5.1,405.36406847999996,TJ,CH4,3.9,kg/TJ,1580.9198670719998,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,bdb7a4bb-bd90-303e-8337-cd879e698827 -2014,Buenos Aires,II.5.1,405.36406847999996,TJ,N2O,3.9,kg/TJ,1580.9198670719998,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,bdb7a4bb-bd90-303e-8337-cd879e698827 -2014,Córdoba,II.5.1,64.75254072,TJ,CO2,74100.0,kg/TJ,4798163.267352,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,73cdbf0d-0c10-32a9-bfda-20df2ac5e99b -2014,Córdoba,II.5.1,64.75254072,TJ,CH4,3.9,kg/TJ,252.53490880799998,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,415937c7-7f48-37eb-9669-95e4372db936 -2014,Córdoba,II.5.1,64.75254072,TJ,N2O,3.9,kg/TJ,252.53490880799998,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,415937c7-7f48-37eb-9669-95e4372db936 -2014,Neuquén,II.5.1,51.60207947999999,TJ,CO2,74100.0,kg/TJ,3823714.0894679995,Gas Oil combustion consumption by agriculture machines,AR-Q,SESCO,annual,kg,6a6cfde2-0a6a-38ca-8485-898150474852 -2014,Neuquén,II.5.1,51.60207947999999,TJ,CH4,3.9,kg/TJ,201.24810997199998,Gas Oil combustion consumption by agriculture machines,AR-Q,SESCO,annual,kg,b22c5e63-71ba-3856-a51c-c2f8ab4ec27d -2014,Neuquén,II.5.1,51.60207947999999,TJ,N2O,3.9,kg/TJ,201.24810997199998,Gas Oil combustion consumption by agriculture machines,AR-Q,SESCO,annual,kg,b22c5e63-71ba-3856-a51c-c2f8ab4ec27d -2014,Rio Negro,II.5.1,5.4907818,TJ,CO2,74100.0,kg/TJ,406866.93137999997,Gas Oil combustion consumption by agriculture machines,AR-R,SESCO,annual,kg,60bf848d-6ad1-3f80-9c19-61237c61189e -2014,Rio Negro,II.5.1,5.4907818,TJ,CH4,3.9,kg/TJ,21.414049019999997,Gas Oil combustion consumption by agriculture machines,AR-R,SESCO,annual,kg,eadb8a95-7c44-35d2-b7c5-ce097f10f7f8 -2014,Rio Negro,II.5.1,5.4907818,TJ,N2O,3.9,kg/TJ,21.414049019999997,Gas Oil combustion consumption by agriculture machines,AR-R,SESCO,annual,kg,eadb8a95-7c44-35d2-b7c5-ce097f10f7f8 -2014,Santa Fe,II.5.1,7.21692048,TJ,CO2,74100.0,kg/TJ,534773.8075679999,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,9e891157-f5bd-303d-996f-012afc5f1b22 -2014,Santa Fe,II.5.1,7.21692048,TJ,CH4,3.9,kg/TJ,28.145989871999998,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,24af5343-5e63-32c4-a71d-aa2d8dbdef1a -2014,Santa Fe,II.5.1,7.21692048,TJ,N2O,3.9,kg/TJ,28.145989871999998,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,24af5343-5e63-32c4-a71d-aa2d8dbdef1a -2014,Buenos Aires,II.5.1,6.551570795,TJ,CO2,73300.0,kg/TJ,480230.1392735,Naphtha combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,cd91b2be-5712-3164-af71-446f5dc8670f -2014,Buenos Aires,II.5.1,6.551570795,TJ,CH4,0.5,kg/TJ,3.2757853975,Naphtha combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,c9cc35ed-3658-3273-9fb5-07d036b75a89 -2014,Buenos Aires,II.5.1,6.551570795,TJ,N2O,2.0,kg/TJ,13.10314159,Naphtha combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,79f34290-da34-3346-83f1-8b6816b8e388 -2014,Buenos Aires,II.2.1,31.795460759999997,TJ,CO2,74100.0,kg/TJ,2356043.6423159996,Gas Oil combustion consumption by railway transport,AR-B,SESCO,annual,kg,688a9376-cd35-3ac5-b128-75bfcbea73ca -2014,Buenos Aires,II.2.1,31.795460759999997,TJ,CH4,3.9,kg/TJ,124.00229696399998,Gas Oil combustion consumption by railway transport,AR-B,SESCO,annual,kg,94c46f17-79b5-3802-af40-316befa19f6c -2014,Buenos Aires,II.2.1,31.795460759999997,TJ,N2O,3.9,kg/TJ,124.00229696399998,Gas Oil combustion consumption by railway transport,AR-B,SESCO,annual,kg,94c46f17-79b5-3802-af40-316befa19f6c -2014,Buenos Aires,II.1.1,7.426894999999999,TJ,CO2,69300.0,kg/TJ,514683.82349999994,Motor Gasoline combustion consumption by freight transport,AR-B,SESCO,annual,kg,7d2f5791-26e0-3299-9b21-e5e0fd8e1ed7 -2014,Buenos Aires,II.1.1,7.426894999999999,TJ,CH4,33.0,kg/TJ,245.08753499999997,Motor Gasoline combustion consumption by freight transport,AR-B,SESCO,annual,kg,7b0c72ca-5424-3bec-8310-ac1bb2ba25bf -2014,Buenos Aires,II.1.1,7.426894999999999,TJ,N2O,3.2,kg/TJ,23.766064,Motor Gasoline combustion consumption by freight transport,AR-B,SESCO,annual,kg,0c056c86-a353-32ff-86fd-b197a4a7b495 -2014,Buenos Aires,II.1.1,285.60557172,TJ,CO2,74100.0,kg/TJ,21163372.864452,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,238693e8-6554-369f-a817-b3b5490ec071 -2014,Buenos Aires,II.1.1,285.60557172,TJ,CH4,3.9,kg/TJ,1113.861729708,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,875ea892-184b-35e6-8847-4f679756a9ef -2014,Buenos Aires,II.1.1,285.60557172,TJ,N2O,3.9,kg/TJ,1113.861729708,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,875ea892-184b-35e6-8847-4f679756a9ef -2014,San Luis,II.1.1,55.78654536,TJ,CO2,74100.0,kg/TJ,4133783.011176,Gas Oil combustion consumption by freight transport,AR-D,SESCO,annual,kg,29c94b10-3c81-3df0-bec7-e229f716773d -2014,San Luis,II.1.1,55.78654536,TJ,CH4,3.9,kg/TJ,217.56752690399998,Gas Oil combustion consumption by freight transport,AR-D,SESCO,annual,kg,5d3dc221-e567-3ec5-a6d4-179e6b4594c1 -2014,San Luis,II.1.1,55.78654536,TJ,N2O,3.9,kg/TJ,217.56752690399998,Gas Oil combustion consumption by freight transport,AR-D,SESCO,annual,kg,5d3dc221-e567-3ec5-a6d4-179e6b4594c1 -2014,Buenos Aires,II.1.1,2.66247744,TJ,CO2,74100.0,kg/TJ,197289.578304,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,b00e0175-742e-354f-a924-be330a6c4473 -2014,Buenos Aires,II.1.1,2.66247744,TJ,CH4,3.9,kg/TJ,10.383662015999999,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,8b2a5392-e1de-348c-84c6-ea6a82ef30a0 -2014,Buenos Aires,II.1.1,2.66247744,TJ,N2O,3.9,kg/TJ,10.383662015999999,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,8b2a5392-e1de-348c-84c6-ea6a82ef30a0 -2014,Buenos Aires,II.1.1,443.17824096000004,TJ,CO2,74100.0,kg/TJ,32839507.655136004,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,67c0e51c-153d-39ca-a4c0-6cde9f499aae -2014,Buenos Aires,II.1.1,443.17824096000004,TJ,CH4,3.9,kg/TJ,1728.395139744,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,c0fed347-0074-3656-b259-d77c96250164 -2014,Buenos Aires,II.1.1,443.17824096000004,TJ,N2O,3.9,kg/TJ,1728.395139744,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,c0fed347-0074-3656-b259-d77c96250164 -2014,Capital Federal,II.1.1,15.846746999999999,TJ,CO2,74100.0,kg/TJ,1174243.9527,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,305f6e6d-cb82-32ab-802d-99f9d447d0e3 -2014,Capital Federal,II.1.1,15.846746999999999,TJ,CH4,3.9,kg/TJ,61.802313299999994,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,8aa6d7a9-2efd-3126-910a-6b19a5658bbc -2014,Capital Federal,II.1.1,15.846746999999999,TJ,N2O,3.9,kg/TJ,61.802313299999994,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,8aa6d7a9-2efd-3126-910a-6b19a5658bbc -2014,Chubut,II.1.1,20.48787804,TJ,CO2,74100.0,kg/TJ,1518151.7627639999,Gas Oil combustion consumption by public passenger transport,AR-U,SESCO,annual,kg,efb2d4e3-1669-3f6b-a253-77651eac60c4 -2014,Chubut,II.1.1,20.48787804,TJ,CH4,3.9,kg/TJ,79.902724356,Gas Oil combustion consumption by public passenger transport,AR-U,SESCO,annual,kg,937ccb24-8a2d-360d-aa26-668b80fc0013 -2014,Chubut,II.1.1,20.48787804,TJ,N2O,3.9,kg/TJ,79.902724356,Gas Oil combustion consumption by public passenger transport,AR-U,SESCO,annual,kg,937ccb24-8a2d-360d-aa26-668b80fc0013 -2014,Córdoba,II.1.1,270.50228268,TJ,CO2,74100.0,kg/TJ,20044219.146588,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,21f4a188-d550-327f-9a52-3e6c8a8b9f45 -2014,Córdoba,II.1.1,270.50228268,TJ,CH4,3.9,kg/TJ,1054.958902452,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,6e093682-b2fc-3c4d-9260-cc01c3085fbc -2014,Córdoba,II.1.1,270.50228268,TJ,N2O,3.9,kg/TJ,1054.958902452,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,6e093682-b2fc-3c4d-9260-cc01c3085fbc -2014,Neuquén,II.1.1,25.54092156,TJ,CO2,74100.0,kg/TJ,1892582.2875960001,Gas Oil combustion consumption by public passenger transport,AR-Q,SESCO,annual,kg,f5ae7682-beaa-3259-bc7f-061a1a7da5de -2014,Neuquén,II.1.1,25.54092156,TJ,CH4,3.9,kg/TJ,99.60959408400001,Gas Oil combustion consumption by public passenger transport,AR-Q,SESCO,annual,kg,82612a60-0937-3e7f-8a5a-b1cc7dd43777 -2014,Neuquén,II.1.1,25.54092156,TJ,N2O,3.9,kg/TJ,99.60959408400001,Gas Oil combustion consumption by public passenger transport,AR-Q,SESCO,annual,kg,82612a60-0937-3e7f-8a5a-b1cc7dd43777 -2014,Rio Negro,II.1.1,124.13114783999998,TJ,CO2,74100.0,kg/TJ,9198118.054944,Gas Oil combustion consumption by public passenger transport,AR-R,SESCO,annual,kg,9d82435b-a3db-3a82-8a88-2814e338eecc -2014,Rio Negro,II.1.1,124.13114783999998,TJ,CH4,3.9,kg/TJ,484.1114765759999,Gas Oil combustion consumption by public passenger transport,AR-R,SESCO,annual,kg,93a96641-be6e-3d08-a1df-834fa5accbae -2014,Rio Negro,II.1.1,124.13114783999998,TJ,N2O,3.9,kg/TJ,484.1114765759999,Gas Oil combustion consumption by public passenger transport,AR-R,SESCO,annual,kg,93a96641-be6e-3d08-a1df-834fa5accbae -2014,Santa Cruz,II.1.1,19.142769239999996,TJ,CO2,74100.0,kg/TJ,1418479.2006839998,Gas Oil combustion consumption by public passenger transport,AR-Z,SESCO,annual,kg,a98ae347-b396-331e-9d6a-276a5608a9f3 -2014,Santa Cruz,II.1.1,19.142769239999996,TJ,CH4,3.9,kg/TJ,74.65680003599998,Gas Oil combustion consumption by public passenger transport,AR-Z,SESCO,annual,kg,6c15d75c-3cc7-37d7-be75-b7ebc2ca7a34 -2014,Santa Cruz,II.1.1,19.142769239999996,TJ,N2O,3.9,kg/TJ,74.65680003599998,Gas Oil combustion consumption by public passenger transport,AR-Z,SESCO,annual,kg,6c15d75c-3cc7-37d7-be75-b7ebc2ca7a34 -2014,Santa Fe,II.1.1,6.941216519999999,TJ,CO2,74100.0,kg/TJ,514344.1441319999,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,94ef5cdb-d4f3-3d58-adef-3db091d7c5f5 -2014,Santa Fe,II.1.1,6.941216519999999,TJ,CH4,3.9,kg/TJ,27.070744427999998,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,b1f16df7-98da-362b-8d3a-199fc4a01748 -2014,Santa Fe,II.1.1,6.941216519999999,TJ,N2O,3.9,kg/TJ,27.070744427999998,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,b1f16df7-98da-362b-8d3a-199fc4a01748 -2014,Buenos Aires,II.5.1,7.1323,TJ,CO2,69300.0,kg/TJ,494268.39,Motor Gasoline combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,b940a896-f848-30cf-bb6e-4457348643e8 -2014,Buenos Aires,II.5.1,7.1323,TJ,CH4,33.0,kg/TJ,235.36589999999998,Motor Gasoline combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,e0e6949a-0c47-3f09-9daf-12e0513cdd0d -2014,Buenos Aires,II.5.1,7.1323,TJ,N2O,3.2,kg/TJ,22.82336,Motor Gasoline combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,ceed7f57-0dce-3957-b9bd-68f2906134e6 -2014,Capital Federal,II.5.1,96.131,TJ,CO2,69300.0,kg/TJ,6661878.3,Motor Gasoline combustion consumption by agriculture machines,AR-C,SESCO,annual,kg,771b74cc-bd50-365f-8aa5-53bd35b56042 -2014,Capital Federal,II.5.1,96.131,TJ,CH4,33.0,kg/TJ,3172.323,Motor Gasoline combustion consumption by agriculture machines,AR-C,SESCO,annual,kg,4e300cd8-a3ad-3d2b-b906-6dc15439a2fe -2014,Capital Federal,II.5.1,96.131,TJ,N2O,3.2,kg/TJ,307.61920000000003,Motor Gasoline combustion consumption by agriculture machines,AR-C,SESCO,annual,kg,b0ec7491-71d1-3c13-b966-3cd8b5769752 -2014,Buenos Aires,II.5.1,462.48048,TJ,CO2,74100.0,kg/TJ,34269803.568,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,1f3cc612-9ad1-3f0e-a6cb-1b6e46cf8c1c -2014,Buenos Aires,II.5.1,462.48048,TJ,CH4,3.9,kg/TJ,1803.6738719999998,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,6fcf2697-710b-3596-b391-d65da7095c88 -2014,Buenos Aires,II.5.1,462.48048,TJ,N2O,3.9,kg/TJ,1803.6738719999998,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,6fcf2697-710b-3596-b391-d65da7095c88 -2014,Capital Federal,II.5.1,2.6728799999999997,TJ,CO2,74100.0,kg/TJ,198060.40799999997,Gas Oil combustion consumption by agriculture machines,AR-C,SESCO,annual,kg,4b9a2f7f-3e28-3dc4-8778-87fa1cf88302 -2014,Capital Federal,II.5.1,2.6728799999999997,TJ,CH4,3.9,kg/TJ,10.424231999999998,Gas Oil combustion consumption by agriculture machines,AR-C,SESCO,annual,kg,9d2e8d70-c3c4-32ac-9baf-b624b974e773 -2014,Capital Federal,II.5.1,2.6728799999999997,TJ,N2O,3.9,kg/TJ,10.424231999999998,Gas Oil combustion consumption by agriculture machines,AR-C,SESCO,annual,kg,9d2e8d70-c3c4-32ac-9baf-b624b974e773 -2014,Córdoba,II.5.1,161.34804,TJ,CO2,74100.0,kg/TJ,11955889.764,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,fbdaf68a-e280-3da0-b0e7-0eeab8a3998c -2014,Córdoba,II.5.1,161.34804,TJ,CH4,3.9,kg/TJ,629.257356,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,c2f8f4b5-178f-3d7b-a43c-767d77131842 -2014,Córdoba,II.5.1,161.34804,TJ,N2O,3.9,kg/TJ,629.257356,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,c2f8f4b5-178f-3d7b-a43c-767d77131842 -2014,Santa Fe,II.5.1,669.05076,TJ,CO2,74100.0,kg/TJ,49576661.316,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,7702bbce-d6d8-3b3b-943d-9813fcabef95 -2014,Santa Fe,II.5.1,669.05076,TJ,CH4,3.9,kg/TJ,2609.297964,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,0685759c-92cc-3fbd-b4f9-7d9c401f9d79 -2014,Santa Fe,II.5.1,669.05076,TJ,N2O,3.9,kg/TJ,2609.297964,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,0685759c-92cc-3fbd-b4f9-7d9c401f9d79 -2014,Buenos Aires,II.5.1,3.9732,TJ,CO2,74100.0,kg/TJ,294414.12,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,69e92b83-ebed-3d9e-a39e-66b817c8da1d -2014,Buenos Aires,II.5.1,3.9732,TJ,CH4,3.9,kg/TJ,15.495479999999999,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,94a1d593-ccb1-3171-89e2-fbfd0b568f1e -2014,Buenos Aires,II.5.1,3.9732,TJ,N2O,3.9,kg/TJ,15.495479999999999,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,94a1d593-ccb1-3171-89e2-fbfd0b568f1e -2014,Córdoba,II.5.1,0.93912,TJ,CO2,74100.0,kg/TJ,69588.792,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,37de61af-776d-37e3-a497-1e78573d2c99 -2014,Córdoba,II.5.1,0.93912,TJ,CH4,3.9,kg/TJ,3.662568,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,994e13a1-3b34-34bf-8f87-f4c9fa9089d7 -2014,Córdoba,II.5.1,0.93912,TJ,N2O,3.9,kg/TJ,3.662568,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,994e13a1-3b34-34bf-8f87-f4c9fa9089d7 -2014,Santa Fe,II.5.1,28.209719999999997,TJ,CO2,74100.0,kg/TJ,2090340.2519999999,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,f1fa5225-467a-3d97-95c1-6c57274a83b2 -2014,Santa Fe,II.5.1,28.209719999999997,TJ,CH4,3.9,kg/TJ,110.01790799999999,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,54292d1a-7f26-3c35-b1d7-f432cce2407a -2014,Santa Fe,II.5.1,28.209719999999997,TJ,N2O,3.9,kg/TJ,110.01790799999999,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,54292d1a-7f26-3c35-b1d7-f432cce2407a -2014,Santa Fe,II.5.1,54.207229999999996,TJ,CO2,73300.0,kg/TJ,3973389.959,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,3952c4ee-646b-3986-9079-3f0a036d7bf2 -2014,Santa Fe,II.5.1,54.207229999999996,TJ,CH4,0.5,kg/TJ,27.103614999999998,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,6520d671-0cb6-3b0b-a3e2-be7c3621b1ed -2014,Santa Fe,II.5.1,54.207229999999996,TJ,N2O,2.0,kg/TJ,108.41445999999999,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,c4b1d131-3d98-3a23-99ca-6e2d39cfd746 -2014,Santa Fe,II.5.1,5.174015,TJ,CO2,73300.0,kg/TJ,379255.29949999996,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,abbca4b0-f765-3179-a6ee-e7fcd425f2fd -2014,Santa Fe,II.5.1,5.174015,TJ,CH4,0.5,kg/TJ,2.5870075,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,2b87440e-81bb-3f68-850a-3ed04c6ebff4 -2014,Santa Fe,II.5.1,5.174015,TJ,N2O,2.0,kg/TJ,10.34803,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,4cd271a5-3970-39b4-a50c-aa24a94aa39c -2014,Buenos Aires,II.2.1,567.3729599999999,TJ,CO2,74100.0,kg/TJ,42042336.335999995,Gas Oil combustion consumption by railway transport,AR-B,SESCO,annual,kg,a8185f4f-427f-36b3-9b99-c9a468763769 -2014,Buenos Aires,II.2.1,567.3729599999999,TJ,CH4,3.9,kg/TJ,2212.7545439999994,Gas Oil combustion consumption by railway transport,AR-B,SESCO,annual,kg,6db7e4fc-014f-3216-94ec-462d431b4730 -2014,Buenos Aires,II.2.1,567.3729599999999,TJ,N2O,3.9,kg/TJ,2212.7545439999994,Gas Oil combustion consumption by railway transport,AR-B,SESCO,annual,kg,6db7e4fc-014f-3216-94ec-462d431b4730 -2014,Capital Federal,II.2.1,1049.39436,TJ,CO2,74100.0,kg/TJ,77760122.076,Gas Oil combustion consumption by railway transport,AR-C,SESCO,annual,kg,f047d085-33e6-3bae-8945-e00b2f33a36c -2014,Capital Federal,II.2.1,1049.39436,TJ,CH4,3.9,kg/TJ,4092.638004,Gas Oil combustion consumption by railway transport,AR-C,SESCO,annual,kg,23064763-fea8-368a-b207-b07a19d2f6b3 -2014,Capital Federal,II.2.1,1049.39436,TJ,N2O,3.9,kg/TJ,4092.638004,Gas Oil combustion consumption by railway transport,AR-C,SESCO,annual,kg,23064763-fea8-368a-b207-b07a19d2f6b3 -2014,Santa Fe,II.2.1,327.4278,TJ,CO2,74100.0,kg/TJ,24262399.98,Gas Oil combustion consumption by railway transport,AR-S,SESCO,annual,kg,4b29a378-3ea8-3ca9-b7d1-f6ea0449a5e4 -2014,Santa Fe,II.2.1,327.4278,TJ,CH4,3.9,kg/TJ,1276.96842,Gas Oil combustion consumption by railway transport,AR-S,SESCO,annual,kg,cd5adb59-b63c-3978-aeae-fa58aec546fc -2014,Santa Fe,II.2.1,327.4278,TJ,N2O,3.9,kg/TJ,1276.96842,Gas Oil combustion consumption by railway transport,AR-S,SESCO,annual,kg,cd5adb59-b63c-3978-aeae-fa58aec546fc -2014,Capital Federal,II.2.1,1.58928,TJ,CO2,74100.0,kg/TJ,117765.648,Gas Oil combustion consumption by railway transport,AR-C,SESCO,annual,kg,085eb847-98e8-3bd6-ba06-64ddafb46864 -2014,Capital Federal,II.2.1,1.58928,TJ,CH4,3.9,kg/TJ,6.198192,Gas Oil combustion consumption by railway transport,AR-C,SESCO,annual,kg,5115e60a-6307-398f-8d83-887dca01ab2b -2014,Capital Federal,II.2.1,1.58928,TJ,N2O,3.9,kg/TJ,6.198192,Gas Oil combustion consumption by railway transport,AR-C,SESCO,annual,kg,5115e60a-6307-398f-8d83-887dca01ab2b -2014,Buenos Aires,II.1.1,21.8399,TJ,CO2,69300.0,kg/TJ,1513505.07,Motor Gasoline combustion consumption by freight transport,AR-B,SESCO,annual,kg,0bbdb932-2390-333a-b029-2f3bf380b211 -2014,Buenos Aires,II.1.1,21.8399,TJ,CH4,33.0,kg/TJ,720.7167,Motor Gasoline combustion consumption by freight transport,AR-B,SESCO,annual,kg,d8e5c3b6-6388-32fe-9450-0397026de426 -2014,Buenos Aires,II.1.1,21.8399,TJ,N2O,3.2,kg/TJ,69.88768,Motor Gasoline combustion consumption by freight transport,AR-B,SESCO,annual,kg,852efafa-9c85-31f8-a318-e63f39ead03d -2014,Buenos Aires,II.1.1,705.38748,TJ,CO2,74100.0,kg/TJ,52269212.268,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,e21e4696-ceed-3e36-b84a-da17906311ac -2014,Buenos Aires,II.1.1,705.38748,TJ,CH4,3.9,kg/TJ,2751.011172,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,f328630b-8d64-3ca8-930b-46832c6ded98 -2014,Buenos Aires,II.1.1,705.38748,TJ,N2O,3.9,kg/TJ,2751.011172,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,f328630b-8d64-3ca8-930b-46832c6ded98 -2014,Capital Federal,II.1.1,185.76515999999998,TJ,CO2,74100.0,kg/TJ,13765198.355999999,Gas Oil combustion consumption by freight transport,AR-C,SESCO,annual,kg,4ee43506-74c4-3bb1-9fcd-4fcfd868a3d8 -2014,Capital Federal,II.1.1,185.76515999999998,TJ,CH4,3.9,kg/TJ,724.484124,Gas Oil combustion consumption by freight transport,AR-C,SESCO,annual,kg,0a61b0ad-b081-3a58-97aa-95578755fbaf -2014,Capital Federal,II.1.1,185.76515999999998,TJ,N2O,3.9,kg/TJ,724.484124,Gas Oil combustion consumption by freight transport,AR-C,SESCO,annual,kg,0a61b0ad-b081-3a58-97aa-95578755fbaf -2014,Córdoba,II.1.1,139.31484,TJ,CO2,74100.0,kg/TJ,10323229.644,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,32fbb736-fe17-3ba7-aaca-6082b6f232de -2014,Córdoba,II.1.1,139.31484,TJ,CH4,3.9,kg/TJ,543.327876,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,5f9c93cb-4198-3966-877e-86e0f16ab71b -2014,Córdoba,II.1.1,139.31484,TJ,N2O,3.9,kg/TJ,543.327876,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,5f9c93cb-4198-3966-877e-86e0f16ab71b -2014,Buenos Aires,II.1.1,0.7223999999999999,TJ,CO2,74100.0,kg/TJ,53529.84,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,bdee06f0-17e0-36a5-9cfc-b68ac7d207d0 -2014,Buenos Aires,II.1.1,0.7223999999999999,TJ,CH4,3.9,kg/TJ,2.81736,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,da53f9c5-7dc1-3826-aa52-8fc8275909da -2014,Buenos Aires,II.1.1,0.7223999999999999,TJ,N2O,3.9,kg/TJ,2.81736,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,da53f9c5-7dc1-3826-aa52-8fc8275909da -2014,Córdoba,II.1.1,1.58928,TJ,CO2,74100.0,kg/TJ,117765.648,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,7e8681c7-ebf5-3094-ab5d-a8d1f8076bb0 -2014,Córdoba,II.1.1,1.58928,TJ,CH4,3.9,kg/TJ,6.198192,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,eef29059-71ee-3d99-89a3-143b1e42ecf7 -2014,Córdoba,II.1.1,1.58928,TJ,N2O,3.9,kg/TJ,6.198192,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,eef29059-71ee-3d99-89a3-143b1e42ecf7 -2014,Buenos Aires,II.1.1,33.12204,TJ,CO2,74100.0,kg/TJ,2454343.164,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,8e9ed68d-c673-3310-b1cd-5f0c946986ba -2014,Buenos Aires,II.1.1,33.12204,TJ,CH4,3.9,kg/TJ,129.17595599999999,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,029405ba-d2a9-37ec-b803-220ae55711a3 -2014,Buenos Aires,II.1.1,33.12204,TJ,N2O,3.9,kg/TJ,129.17595599999999,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,029405ba-d2a9-37ec-b803-220ae55711a3 -2014,Capital Federal,II.1.1,14.37576,TJ,CO2,74100.0,kg/TJ,1065243.8159999999,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,26451670-9e37-37ed-881f-0820224fa72b -2014,Capital Federal,II.1.1,14.37576,TJ,CH4,3.9,kg/TJ,56.065464,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,9fb2ef86-f505-3b9a-8d09-d79e3fa15153 -2014,Capital Federal,II.1.1,14.37576,TJ,N2O,3.9,kg/TJ,56.065464,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,9fb2ef86-f505-3b9a-8d09-d79e3fa15153 -2014,Misiones,II.1.1,340.53936,TJ,CO2,74100.0,kg/TJ,25233966.575999998,Gas Oil combustion consumption by public passenger transport,AR-N,SESCO,annual,kg,f58b96d6-83d1-3a50-8d70-fd8216d381fe -2014,Misiones,II.1.1,340.53936,TJ,CH4,3.9,kg/TJ,1328.103504,Gas Oil combustion consumption by public passenger transport,AR-N,SESCO,annual,kg,6ba536a8-70b8-3228-b8f4-84b62bd8f9a7 -2014,Misiones,II.1.1,340.53936,TJ,N2O,3.9,kg/TJ,1328.103504,Gas Oil combustion consumption by public passenger transport,AR-N,SESCO,annual,kg,6ba536a8-70b8-3228-b8f4-84b62bd8f9a7 -2014,Buenos Aires,II.5.1,8.7271,TJ,CO2,69300.0,kg/TJ,604788.03,Motor Gasoline combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,a8d29ee4-dd8f-3768-9af7-bde07f079d75 -2014,Buenos Aires,II.5.1,8.7271,TJ,CH4,33.0,kg/TJ,287.9943,Motor Gasoline combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,14a8a9cf-2b3d-3c39-9b3a-0cbd72f6b53a -2014,Buenos Aires,II.5.1,8.7271,TJ,N2O,3.2,kg/TJ,27.926720000000003,Motor Gasoline combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,7ea212ec-5848-3b67-a7d3-c2cb2fd58ae8 -2014,Buenos Aires,II.5.1,9231.0078,TJ,CO2,74100.0,kg/TJ,684017677.9799999,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,d46a6409-7e45-3139-87ac-71fca6719767 -2014,Buenos Aires,II.5.1,9231.0078,TJ,CH4,3.9,kg/TJ,36000.93042,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,8cb925f9-ef9a-3133-a302-5e82f0db86c6 -2014,Buenos Aires,II.5.1,9231.0078,TJ,N2O,3.9,kg/TJ,36000.93042,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,8cb925f9-ef9a-3133-a302-5e82f0db86c6 -2014,Capital Federal,II.5.1,18.89076,TJ,CO2,74100.0,kg/TJ,1399805.316,Gas Oil combustion consumption by agriculture machines,AR-C,SESCO,annual,kg,326ed521-65d3-3a5c-9a3b-b97ecce4c002 -2014,Capital Federal,II.5.1,18.89076,TJ,CH4,3.9,kg/TJ,73.673964,Gas Oil combustion consumption by agriculture machines,AR-C,SESCO,annual,kg,9b473fc5-fbfc-3619-bc74-9f301216b662 -2014,Capital Federal,II.5.1,18.89076,TJ,N2O,3.9,kg/TJ,73.673964,Gas Oil combustion consumption by agriculture machines,AR-C,SESCO,annual,kg,9b473fc5-fbfc-3619-bc74-9f301216b662 -2014,Catamarca,II.5.1,91.09464,TJ,CO2,74100.0,kg/TJ,6750112.824,Gas Oil combustion consumption by agriculture machines,AR-K,SESCO,annual,kg,6df99718-2cf5-3ca9-94c5-51c313955e8f -2014,Catamarca,II.5.1,91.09464,TJ,CH4,3.9,kg/TJ,355.269096,Gas Oil combustion consumption by agriculture machines,AR-K,SESCO,annual,kg,20e04904-789d-3c48-8ffa-627b585f0dd9 -2014,Catamarca,II.5.1,91.09464,TJ,N2O,3.9,kg/TJ,355.269096,Gas Oil combustion consumption by agriculture machines,AR-K,SESCO,annual,kg,20e04904-789d-3c48-8ffa-627b585f0dd9 -2014,Chaco,II.5.1,1385.4548399999999,TJ,CO2,74100.0,kg/TJ,102662203.644,Gas Oil combustion consumption by agriculture machines,AR-H,SESCO,annual,kg,87a47d1f-05ec-354e-a9ab-e5fa857eec00 -2014,Chaco,II.5.1,1385.4548399999999,TJ,CH4,3.9,kg/TJ,5403.273875999999,Gas Oil combustion consumption by agriculture machines,AR-H,SESCO,annual,kg,ba6b138b-a6d4-35c8-a2f0-c43ba1348903 -2014,Chaco,II.5.1,1385.4548399999999,TJ,N2O,3.9,kg/TJ,5403.273875999999,Gas Oil combustion consumption by agriculture machines,AR-H,SESCO,annual,kg,ba6b138b-a6d4-35c8-a2f0-c43ba1348903 -2014,Chubut,II.5.1,19.21584,TJ,CO2,74100.0,kg/TJ,1423893.744,Gas Oil combustion consumption by agriculture machines,AR-U,SESCO,annual,kg,d701cdce-b759-35c4-b94a-bddae2f2af39 -2014,Chubut,II.5.1,19.21584,TJ,CH4,3.9,kg/TJ,74.941776,Gas Oil combustion consumption by agriculture machines,AR-U,SESCO,annual,kg,5a1190be-9cc5-3cca-8fc4-5d1d838d9c57 -2014,Chubut,II.5.1,19.21584,TJ,N2O,3.9,kg/TJ,74.941776,Gas Oil combustion consumption by agriculture machines,AR-U,SESCO,annual,kg,5a1190be-9cc5-3cca-8fc4-5d1d838d9c57 -2014,Corrientes,II.5.1,418.59468,TJ,CO2,74100.0,kg/TJ,31017865.788,Gas Oil combustion consumption by agriculture machines,AR-W,SESCO,annual,kg,fa4babb1-fc0d-383a-a717-209b052fbddf -2014,Corrientes,II.5.1,418.59468,TJ,CH4,3.9,kg/TJ,1632.5192519999998,Gas Oil combustion consumption by agriculture machines,AR-W,SESCO,annual,kg,74ee0bdd-4467-3ec4-a579-cca3d237a454 -2014,Corrientes,II.5.1,418.59468,TJ,N2O,3.9,kg/TJ,1632.5192519999998,Gas Oil combustion consumption by agriculture machines,AR-W,SESCO,annual,kg,74ee0bdd-4467-3ec4-a579-cca3d237a454 -2014,Córdoba,II.5.1,7946.90568,TJ,CO2,74100.0,kg/TJ,588865710.888,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,11ee677e-c6d0-358e-b89f-ac8b018c26c6 -2014,Córdoba,II.5.1,7946.90568,TJ,CH4,3.9,kg/TJ,30992.932151999998,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,5a3597ae-bb8f-3188-a74e-ce946cac5fea -2014,Córdoba,II.5.1,7946.90568,TJ,N2O,3.9,kg/TJ,30992.932151999998,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,5a3597ae-bb8f-3188-a74e-ce946cac5fea -2014,Entre Rios,II.5.1,2325.1166399999997,TJ,CO2,74100.0,kg/TJ,172291143.024,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,f00e2325-3f0c-3f38-bb58-ade253cf6871 -2014,Entre Rios,II.5.1,2325.1166399999997,TJ,CH4,3.9,kg/TJ,9067.954896,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,1dc6064b-1fc7-3eb9-8c0f-a09ffb867630 -2014,Entre Rios,II.5.1,2325.1166399999997,TJ,N2O,3.9,kg/TJ,9067.954896,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,1dc6064b-1fc7-3eb9-8c0f-a09ffb867630 -2014,Formosa,II.5.1,367.91832,TJ,CO2,74100.0,kg/TJ,27262747.512,Gas Oil combustion consumption by agriculture machines,AR-P,SESCO,annual,kg,bec46821-b637-3fa3-8b0d-c57a92b1d805 -2014,Formosa,II.5.1,367.91832,TJ,CH4,3.9,kg/TJ,1434.8814479999999,Gas Oil combustion consumption by agriculture machines,AR-P,SESCO,annual,kg,5483f7b4-3c64-3d19-8f89-73dc16df0490 -2014,Formosa,II.5.1,367.91832,TJ,N2O,3.9,kg/TJ,1434.8814479999999,Gas Oil combustion consumption by agriculture machines,AR-P,SESCO,annual,kg,5483f7b4-3c64-3d19-8f89-73dc16df0490 -2014,Jujuy,II.5.1,1085.98392,TJ,CO2,74100.0,kg/TJ,80471408.47199999,Gas Oil combustion consumption by agriculture machines,AR-Y,SESCO,annual,kg,f5a63c6e-cd75-3152-bf58-e64f291d4aa0 -2014,Jujuy,II.5.1,1085.98392,TJ,CH4,3.9,kg/TJ,4235.337288,Gas Oil combustion consumption by agriculture machines,AR-Y,SESCO,annual,kg,e6f8f373-0d25-360a-b51e-3aea0e0adb79 -2014,Jujuy,II.5.1,1085.98392,TJ,N2O,3.9,kg/TJ,4235.337288,Gas Oil combustion consumption by agriculture machines,AR-Y,SESCO,annual,kg,e6f8f373-0d25-360a-b51e-3aea0e0adb79 -2014,La Pampa,II.5.1,2042.5137599999998,TJ,CO2,74100.0,kg/TJ,151350269.616,Gas Oil combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,6e00544e-4b2b-35ea-b6f4-537b697fc7d4 -2014,La Pampa,II.5.1,2042.5137599999998,TJ,CH4,3.9,kg/TJ,7965.803663999999,Gas Oil combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,de24a7eb-dcf4-3893-bd8f-93d46e0ed429 -2014,La Pampa,II.5.1,2042.5137599999998,TJ,N2O,3.9,kg/TJ,7965.803663999999,Gas Oil combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,de24a7eb-dcf4-3893-bd8f-93d46e0ed429 -2014,Mendoza,II.5.1,466.95936,TJ,CO2,74100.0,kg/TJ,34601688.576,Gas Oil combustion consumption by agriculture machines,AR-M,SESCO,annual,kg,27c17b51-c18b-3ead-9ccf-d6b806c8c5e1 -2014,Mendoza,II.5.1,466.95936,TJ,CH4,3.9,kg/TJ,1821.141504,Gas Oil combustion consumption by agriculture machines,AR-M,SESCO,annual,kg,eaf217db-0ccd-3b2b-95d2-7ff5dce51aaa -2014,Mendoza,II.5.1,466.95936,TJ,N2O,3.9,kg/TJ,1821.141504,Gas Oil combustion consumption by agriculture machines,AR-M,SESCO,annual,kg,eaf217db-0ccd-3b2b-95d2-7ff5dce51aaa -2014,Misiones,II.5.1,1015.47768,TJ,CO2,74100.0,kg/TJ,75246896.088,Gas Oil combustion consumption by agriculture machines,AR-N,SESCO,annual,kg,c12e48c4-cc84-3c97-8074-afa18a9e9160 -2014,Misiones,II.5.1,1015.47768,TJ,CH4,3.9,kg/TJ,3960.362952,Gas Oil combustion consumption by agriculture machines,AR-N,SESCO,annual,kg,46cd2d39-5a6c-3a85-bc63-065b4848797e -2014,Misiones,II.5.1,1015.47768,TJ,N2O,3.9,kg/TJ,3960.362952,Gas Oil combustion consumption by agriculture machines,AR-N,SESCO,annual,kg,46cd2d39-5a6c-3a85-bc63-065b4848797e -2014,Neuquén,II.5.1,0.10836,TJ,CO2,74100.0,kg/TJ,8029.476,Gas Oil combustion consumption by agriculture machines,AR-Q,SESCO,annual,kg,0795293b-ff9e-3e0f-95ba-2c869f527796 -2014,Neuquén,II.5.1,0.10836,TJ,CH4,3.9,kg/TJ,0.422604,Gas Oil combustion consumption by agriculture machines,AR-Q,SESCO,annual,kg,95119bda-fa96-3950-817a-b1b57e2ef13e -2014,Neuquén,II.5.1,0.10836,TJ,N2O,3.9,kg/TJ,0.422604,Gas Oil combustion consumption by agriculture machines,AR-Q,SESCO,annual,kg,95119bda-fa96-3950-817a-b1b57e2ef13e -2014,Rio Negro,II.5.1,201.69407999999999,TJ,CO2,74100.0,kg/TJ,14945531.328,Gas Oil combustion consumption by agriculture machines,AR-R,SESCO,annual,kg,9b7eb59c-4e5d-321f-afe3-6b9956308347 -2014,Rio Negro,II.5.1,201.69407999999999,TJ,CH4,3.9,kg/TJ,786.606912,Gas Oil combustion consumption by agriculture machines,AR-R,SESCO,annual,kg,cb643db9-96be-38f8-9eb6-734dc1a4ab89 -2014,Rio Negro,II.5.1,201.69407999999999,TJ,N2O,3.9,kg/TJ,786.606912,Gas Oil combustion consumption by agriculture machines,AR-R,SESCO,annual,kg,cb643db9-96be-38f8-9eb6-734dc1a4ab89 -2014,Salta,II.5.1,1891.67664,TJ,CO2,74100.0,kg/TJ,140173239.024,Gas Oil combustion consumption by agriculture machines,AR-A,SESCO,annual,kg,1629c483-a1bd-3298-8b2b-a65d3c2411f8 -2014,Salta,II.5.1,1891.67664,TJ,CH4,3.9,kg/TJ,7377.538895999999,Gas Oil combustion consumption by agriculture machines,AR-A,SESCO,annual,kg,e4fc38aa-861a-3cef-8cbf-2d7393044ece -2014,Salta,II.5.1,1891.67664,TJ,N2O,3.9,kg/TJ,7377.538895999999,Gas Oil combustion consumption by agriculture machines,AR-A,SESCO,annual,kg,e4fc38aa-861a-3cef-8cbf-2d7393044ece -2014,San Luis,II.5.1,610.03068,TJ,CO2,74100.0,kg/TJ,45203273.388,Gas Oil combustion consumption by agriculture machines,AR-D,SESCO,annual,kg,7c0815e4-b50c-3188-af60-dbc67aab74cd -2014,San Luis,II.5.1,610.03068,TJ,CH4,3.9,kg/TJ,2379.119652,Gas Oil combustion consumption by agriculture machines,AR-D,SESCO,annual,kg,8084c344-de5d-3f84-8892-57145a01df61 -2014,San Luis,II.5.1,610.03068,TJ,N2O,3.9,kg/TJ,2379.119652,Gas Oil combustion consumption by agriculture machines,AR-D,SESCO,annual,kg,8084c344-de5d-3f84-8892-57145a01df61 -2014,Santa Cruz,II.5.1,1.76988,TJ,CO2,74100.0,kg/TJ,131148.10799999998,Gas Oil combustion consumption by agriculture machines,AR-Z,SESCO,annual,kg,595b9dee-606c-3371-abf3-d1252e8a6c16 -2014,Santa Cruz,II.5.1,1.76988,TJ,CH4,3.9,kg/TJ,6.902531999999999,Gas Oil combustion consumption by agriculture machines,AR-Z,SESCO,annual,kg,af2a6152-ac33-36a3-93ea-d6a021cd65f0 -2014,Santa Cruz,II.5.1,1.76988,TJ,N2O,3.9,kg/TJ,6.902531999999999,Gas Oil combustion consumption by agriculture machines,AR-Z,SESCO,annual,kg,af2a6152-ac33-36a3-93ea-d6a021cd65f0 -2014,Santa Fe,II.5.1,6437.34252,TJ,CO2,74100.0,kg/TJ,477007080.732,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,bc805d94-1c8b-33b2-acaa-9078a8061e48 -2014,Santa Fe,II.5.1,6437.34252,TJ,CH4,3.9,kg/TJ,25105.635828,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,2f08f161-0195-3c78-b7df-cc3a88a67aea -2014,Santa Fe,II.5.1,6437.34252,TJ,N2O,3.9,kg/TJ,25105.635828,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,2f08f161-0195-3c78-b7df-cc3a88a67aea -2014,Santiago del Estero,II.5.1,1738.2749999999999,TJ,CO2,74100.0,kg/TJ,128806177.49999999,Gas Oil combustion consumption by agriculture machines,AR-G,SESCO,annual,kg,779da3f1-2aff-3d00-af80-659be145af5d -2014,Santiago del Estero,II.5.1,1738.2749999999999,TJ,CH4,3.9,kg/TJ,6779.272499999999,Gas Oil combustion consumption by agriculture machines,AR-G,SESCO,annual,kg,2327e88b-ab98-3405-9343-8db145fec055 -2014,Santiago del Estero,II.5.1,1738.2749999999999,TJ,N2O,3.9,kg/TJ,6779.272499999999,Gas Oil combustion consumption by agriculture machines,AR-G,SESCO,annual,kg,2327e88b-ab98-3405-9343-8db145fec055 -2014,Tucuman,II.5.1,1476.9468,TJ,CO2,74100.0,kg/TJ,109441757.88,Gas Oil combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,2790679c-7178-36b4-a465-fa95f858a1b5 -2014,Tucuman,II.5.1,1476.9468,TJ,CH4,3.9,kg/TJ,5760.092519999999,Gas Oil combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,a52f736b-d1c7-3913-afa0-27b125c884dd -2014,Tucuman,II.5.1,1476.9468,TJ,N2O,3.9,kg/TJ,5760.092519999999,Gas Oil combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,a52f736b-d1c7-3913-afa0-27b125c884dd -2014,Buenos Aires,II.5.1,130.06812,TJ,CO2,74100.0,kg/TJ,9638047.692,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,32dcbe39-f96d-35dd-923e-c6131e8f38a6 -2014,Buenos Aires,II.5.1,130.06812,TJ,CH4,3.9,kg/TJ,507.26566799999995,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,b90dff1f-e886-3ab6-8342-6d00063504a2 -2014,Buenos Aires,II.5.1,130.06812,TJ,N2O,3.9,kg/TJ,507.26566799999995,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,b90dff1f-e886-3ab6-8342-6d00063504a2 -2014,Catamarca,II.5.1,7.0434,TJ,CO2,74100.0,kg/TJ,521915.94,Gas Oil combustion consumption by agriculture machines,AR-K,SESCO,annual,kg,60a99f73-c378-350e-98de-953fa71cf459 -2014,Catamarca,II.5.1,7.0434,TJ,CH4,3.9,kg/TJ,27.46926,Gas Oil combustion consumption by agriculture machines,AR-K,SESCO,annual,kg,aa496ba2-caaa-38d6-b5b1-506b1c81e22a -2014,Catamarca,II.5.1,7.0434,TJ,N2O,3.9,kg/TJ,27.46926,Gas Oil combustion consumption by agriculture machines,AR-K,SESCO,annual,kg,aa496ba2-caaa-38d6-b5b1-506b1c81e22a -2014,Chaco,II.5.1,44.64432,TJ,CO2,74100.0,kg/TJ,3308144.112,Gas Oil combustion consumption by agriculture machines,AR-H,SESCO,annual,kg,ea2773cc-d8a2-3942-b1fe-262d9d7a7a65 -2014,Chaco,II.5.1,44.64432,TJ,CH4,3.9,kg/TJ,174.11284799999999,Gas Oil combustion consumption by agriculture machines,AR-H,SESCO,annual,kg,33fea331-768e-3aef-be3c-98d282bccb55 -2014,Chaco,II.5.1,44.64432,TJ,N2O,3.9,kg/TJ,174.11284799999999,Gas Oil combustion consumption by agriculture machines,AR-H,SESCO,annual,kg,33fea331-768e-3aef-be3c-98d282bccb55 -2014,Chubut,II.5.1,0.32508,TJ,CO2,74100.0,kg/TJ,24088.428,Gas Oil combustion consumption by agriculture machines,AR-U,SESCO,annual,kg,c9e8630f-c13e-3a28-b044-46ef96068607 -2014,Chubut,II.5.1,0.32508,TJ,CH4,3.9,kg/TJ,1.267812,Gas Oil combustion consumption by agriculture machines,AR-U,SESCO,annual,kg,920b32bc-2159-3418-a13b-0a98d54d2419 -2014,Chubut,II.5.1,0.32508,TJ,N2O,3.9,kg/TJ,1.267812,Gas Oil combustion consumption by agriculture machines,AR-U,SESCO,annual,kg,920b32bc-2159-3418-a13b-0a98d54d2419 -2014,Corrientes,II.5.1,30.232439999999997,TJ,CO2,74100.0,kg/TJ,2240223.8039999995,Gas Oil combustion consumption by agriculture machines,AR-W,SESCO,annual,kg,fa973f32-7b3a-3a82-8175-faa160d62619 -2014,Corrientes,II.5.1,30.232439999999997,TJ,CH4,3.9,kg/TJ,117.90651599999998,Gas Oil combustion consumption by agriculture machines,AR-W,SESCO,annual,kg,cb244043-8ea1-3b48-8a02-40d5a23c87ce -2014,Corrientes,II.5.1,30.232439999999997,TJ,N2O,3.9,kg/TJ,117.90651599999998,Gas Oil combustion consumption by agriculture machines,AR-W,SESCO,annual,kg,cb244043-8ea1-3b48-8a02-40d5a23c87ce -2014,Córdoba,II.5.1,27.4512,TJ,CO2,74100.0,kg/TJ,2034133.92,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,1ac908de-927c-3386-9c99-8654c17207c7 -2014,Córdoba,II.5.1,27.4512,TJ,CH4,3.9,kg/TJ,107.05968,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,604cf9b0-5597-3f43-98b2-2141ce8ee3c3 -2014,Córdoba,II.5.1,27.4512,TJ,N2O,3.9,kg/TJ,107.05968,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,604cf9b0-5597-3f43-98b2-2141ce8ee3c3 -2014,Entre Rios,II.5.1,5.9597999999999995,TJ,CO2,74100.0,kg/TJ,441621.18,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,12922e33-37c7-3088-9606-7f9d54b992d3 -2014,Entre Rios,II.5.1,5.9597999999999995,TJ,CH4,3.9,kg/TJ,23.243219999999997,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,f5e42838-2a63-3999-a975-1c2e5e040377 -2014,Entre Rios,II.5.1,5.9597999999999995,TJ,N2O,3.9,kg/TJ,23.243219999999997,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,f5e42838-2a63-3999-a975-1c2e5e040377 -2014,Jujuy,II.5.1,13.3644,TJ,CO2,74100.0,kg/TJ,990302.04,Gas Oil combustion consumption by agriculture machines,AR-Y,SESCO,annual,kg,aafa8fd2-0ad4-310e-9d10-27443fff0ad9 -2014,Jujuy,II.5.1,13.3644,TJ,CH4,3.9,kg/TJ,52.121159999999996,Gas Oil combustion consumption by agriculture machines,AR-Y,SESCO,annual,kg,56dbca05-65e9-309a-9629-9b9f7c9cf183 -2014,Jujuy,II.5.1,13.3644,TJ,N2O,3.9,kg/TJ,52.121159999999996,Gas Oil combustion consumption by agriculture machines,AR-Y,SESCO,annual,kg,56dbca05-65e9-309a-9629-9b9f7c9cf183 -2014,La Pampa,II.5.1,74.98512,TJ,CO2,74100.0,kg/TJ,5556397.392,Gas Oil combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,2e8dea21-6fa9-3043-85d2-7c13ecc90f55 -2014,La Pampa,II.5.1,74.98512,TJ,CH4,3.9,kg/TJ,292.441968,Gas Oil combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,dc49de2b-e92c-3064-aaf3-01bd6e597f39 -2014,La Pampa,II.5.1,74.98512,TJ,N2O,3.9,kg/TJ,292.441968,Gas Oil combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,dc49de2b-e92c-3064-aaf3-01bd6e597f39 -2014,Misiones,II.5.1,14.88144,TJ,CO2,74100.0,kg/TJ,1102714.704,Gas Oil combustion consumption by agriculture machines,AR-N,SESCO,annual,kg,55a08202-2816-3ade-b8a1-43fafca45a55 -2014,Misiones,II.5.1,14.88144,TJ,CH4,3.9,kg/TJ,58.037616,Gas Oil combustion consumption by agriculture machines,AR-N,SESCO,annual,kg,091e6eef-1647-3187-a368-e4c2a2f795b2 -2014,Misiones,II.5.1,14.88144,TJ,N2O,3.9,kg/TJ,58.037616,Gas Oil combustion consumption by agriculture machines,AR-N,SESCO,annual,kg,091e6eef-1647-3187-a368-e4c2a2f795b2 -2014,Salta,II.5.1,109.94928,TJ,CO2,74100.0,kg/TJ,8147241.648,Gas Oil combustion consumption by agriculture machines,AR-A,SESCO,annual,kg,3719960b-2d0d-3891-b140-16a6e67b97cf -2014,Salta,II.5.1,109.94928,TJ,CH4,3.9,kg/TJ,428.802192,Gas Oil combustion consumption by agriculture machines,AR-A,SESCO,annual,kg,b5c2291c-90a7-3959-87be-084f764957b1 -2014,Salta,II.5.1,109.94928,TJ,N2O,3.9,kg/TJ,428.802192,Gas Oil combustion consumption by agriculture machines,AR-A,SESCO,annual,kg,b5c2291c-90a7-3959-87be-084f764957b1 -2014,San Luis,II.5.1,17.91552,TJ,CO2,74100.0,kg/TJ,1327540.0320000001,Gas Oil combustion consumption by agriculture machines,AR-D,SESCO,annual,kg,1a64da6f-b5b7-3b61-8698-79f7417a6c39 -2014,San Luis,II.5.1,17.91552,TJ,CH4,3.9,kg/TJ,69.87052800000001,Gas Oil combustion consumption by agriculture machines,AR-D,SESCO,annual,kg,7e3fb144-3843-327e-ba7d-091e4456c168 -2014,San Luis,II.5.1,17.91552,TJ,N2O,3.9,kg/TJ,69.87052800000001,Gas Oil combustion consumption by agriculture machines,AR-D,SESCO,annual,kg,7e3fb144-3843-327e-ba7d-091e4456c168 -2014,Santa Fe,II.5.1,102.25572,TJ,CO2,74100.0,kg/TJ,7577148.852,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,55fb29c4-05f1-32ae-8811-be87d9cc6d86 -2014,Santa Fe,II.5.1,102.25572,TJ,CH4,3.9,kg/TJ,398.797308,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,7d8668f6-0781-3eb1-aae9-6ffbe2081225 -2014,Santa Fe,II.5.1,102.25572,TJ,N2O,3.9,kg/TJ,398.797308,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,7d8668f6-0781-3eb1-aae9-6ffbe2081225 -2014,Santiago del Estero,II.5.1,91.49195999999999,TJ,CO2,74100.0,kg/TJ,6779554.236,Gas Oil combustion consumption by agriculture machines,AR-G,SESCO,annual,kg,8ea212b2-c44d-340c-bcef-3470f971126e -2014,Santiago del Estero,II.5.1,91.49195999999999,TJ,CH4,3.9,kg/TJ,356.81864399999995,Gas Oil combustion consumption by agriculture machines,AR-G,SESCO,annual,kg,cdbd44d5-9869-3cdd-8cd5-242232f30caa -2014,Santiago del Estero,II.5.1,91.49195999999999,TJ,N2O,3.9,kg/TJ,356.81864399999995,Gas Oil combustion consumption by agriculture machines,AR-G,SESCO,annual,kg,cdbd44d5-9869-3cdd-8cd5-242232f30caa -2014,Tucuman,II.5.1,59.27292,TJ,CO2,74100.0,kg/TJ,4392123.3719999995,Gas Oil combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,4383c80b-5b50-3b21-83bf-14aea5f2af16 -2014,Tucuman,II.5.1,59.27292,TJ,CH4,3.9,kg/TJ,231.164388,Gas Oil combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,0949cf96-145e-30f2-affe-717658248e4a -2014,Tucuman,II.5.1,59.27292,TJ,N2O,3.9,kg/TJ,231.164388,Gas Oil combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,0949cf96-145e-30f2-affe-717658248e4a -2014,Buenos Aires,II.5.1,8.366497999999998,TJ,CO2,71500.0,kg/TJ,598204.6069999998,Jet Kerosene combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,e67786ed-0dcd-39ba-996b-d88457429d28 -2014,Buenos Aires,II.5.1,8.366497999999998,TJ,CH4,0.5,kg/TJ,4.183248999999999,Jet Kerosene combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,b74d7a07-b868-3901-a05c-ae57669f7817 -2014,Buenos Aires,II.5.1,8.366497999999998,TJ,N2O,2.0,kg/TJ,16.732995999999996,Jet Kerosene combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,ee43cfa7-6051-3c0c-ba36-f01eee452206 -2014,Córdoba,II.5.1,0.754872,TJ,CO2,71500.0,kg/TJ,53973.348,Jet Kerosene combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,d3f53f16-9707-367a-bbe3-38fff60d625b -2014,Córdoba,II.5.1,0.754872,TJ,CH4,0.5,kg/TJ,0.377436,Jet Kerosene combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,d2e56d2b-6299-356a-9e1d-ce06dacf83e8 -2014,Córdoba,II.5.1,0.754872,TJ,N2O,2.0,kg/TJ,1.509744,Jet Kerosene combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,7c19da1e-9deb-3c92-ad52-e4adfe72acb0 -2014,Entre Rios,II.5.1,0.157265,TJ,CO2,71500.0,kg/TJ,11244.447499999998,Jet Kerosene combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,fde7ca6d-a175-3877-9429-c9191f909738 -2014,Entre Rios,II.5.1,0.157265,TJ,CH4,0.5,kg/TJ,0.0786325,Jet Kerosene combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,0a2b02da-e900-3b4a-9805-c75316635314 -2014,Entre Rios,II.5.1,0.157265,TJ,N2O,2.0,kg/TJ,0.31453,Jet Kerosene combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,fc0df5e4-0fc4-3c4f-8a62-418b1dffb0b0 -2014,La Pampa,II.5.1,1.25812,TJ,CO2,71500.0,kg/TJ,89955.57999999999,Jet Kerosene combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,118346bd-92ac-39d8-b0f5-df77c308780e -2014,La Pampa,II.5.1,1.25812,TJ,CH4,0.5,kg/TJ,0.62906,Jet Kerosene combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,9d293ba2-ebba-3922-9dc9-35878266eeb5 -2014,La Pampa,II.5.1,1.25812,TJ,N2O,2.0,kg/TJ,2.51624,Jet Kerosene combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,15e93144-a210-360d-9b34-9ab7dab7fccf -2014,Santa Fe,II.5.1,2.9251289999999996,TJ,CO2,71500.0,kg/TJ,209146.72349999996,Jet Kerosene combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,688d079c-3dc5-39e4-83bf-244c26ba1e73 -2014,Santa Fe,II.5.1,2.9251289999999996,TJ,CH4,0.5,kg/TJ,1.4625644999999998,Jet Kerosene combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,c864b1bf-3098-32c4-b5dc-282bfa62799d -2014,Santa Fe,II.5.1,2.9251289999999996,TJ,N2O,2.0,kg/TJ,5.850257999999999,Jet Kerosene combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,27b2e318-1b91-3dbb-a96c-5f6c321a74b6 -2014,Buenos Aires,II.5.1,4.04327,TJ,CO2,73300.0,kg/TJ,296371.691,Naphtha combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,bec8aa42-391f-3cce-a492-792d04650f2c -2014,Buenos Aires,II.5.1,4.04327,TJ,CH4,0.5,kg/TJ,2.021635,Naphtha combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,f065f78d-5417-3714-9223-c1b23788b23e -2014,Buenos Aires,II.5.1,4.04327,TJ,N2O,2.0,kg/TJ,8.08654,Naphtha combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,d2fbe6ad-2a40-308f-b5b4-8595053ced55 -2014,Chubut,II.5.1,0.513975,TJ,CO2,73300.0,kg/TJ,37674.3675,Naphtha combustion consumption by agriculture machines,AR-U,SESCO,annual,kg,6717f7bb-ea97-36ec-80ca-c1328c959cdb -2014,Chubut,II.5.1,0.513975,TJ,CH4,0.5,kg/TJ,0.2569875,Naphtha combustion consumption by agriculture machines,AR-U,SESCO,annual,kg,7c9bf599-8426-3601-a239-90cd39692149 -2014,Chubut,II.5.1,0.513975,TJ,N2O,2.0,kg/TJ,1.02795,Naphtha combustion consumption by agriculture machines,AR-U,SESCO,annual,kg,9d023328-e666-3685-9c5f-552d972a5bae -2014,Entre Rios,II.5.1,1.541925,TJ,CO2,73300.0,kg/TJ,113023.1025,Naphtha combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,9c4e9402-795c-38b4-b887-4d3e166a2e57 -2014,Entre Rios,II.5.1,1.541925,TJ,CH4,0.5,kg/TJ,0.7709625,Naphtha combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,bdeae15e-b64b-3671-bc74-fce4270066bc -2014,Entre Rios,II.5.1,1.541925,TJ,N2O,2.0,kg/TJ,3.08385,Naphtha combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,190d81c7-f04a-37bc-b26d-4e041e564f85 -2014,Salta,II.5.1,0.171325,TJ,CO2,73300.0,kg/TJ,12558.1225,Naphtha combustion consumption by agriculture machines,AR-A,SESCO,annual,kg,8ffbf597-2070-32a5-b73d-210be2684861 -2014,Salta,II.5.1,0.171325,TJ,CH4,0.5,kg/TJ,0.0856625,Naphtha combustion consumption by agriculture machines,AR-A,SESCO,annual,kg,4b175412-f72f-3db9-bff0-c760a3f206bd -2014,Salta,II.5.1,0.171325,TJ,N2O,2.0,kg/TJ,0.34265,Naphtha combustion consumption by agriculture machines,AR-A,SESCO,annual,kg,22be0c14-04c6-3480-a50e-ecb0ea4d2286 -2014,Santa Fe,II.5.1,30.941295,TJ,CO2,73300.0,kg/TJ,2267996.9235,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,2a232ba5-fe12-3a32-a6d2-f208935882f1 -2014,Santa Fe,II.5.1,30.941295,TJ,CH4,0.5,kg/TJ,15.4706475,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,44ee0ffe-d48a-318c-95db-f1e1692c396e -2014,Santa Fe,II.5.1,30.941295,TJ,N2O,2.0,kg/TJ,61.88259,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,662a2edc-ab0c-31d2-a383-cf87d4a7abed -2014,Buenos Aires,II.5.1,0.6853,TJ,CO2,73300.0,kg/TJ,50232.49,Naphtha combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,58df6756-567f-367c-85d9-adf64060562d -2014,Buenos Aires,II.5.1,0.6853,TJ,CH4,0.5,kg/TJ,0.34265,Naphtha combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,52c1e932-ac9b-3c09-a179-c4f359c6896d -2014,Buenos Aires,II.5.1,0.6853,TJ,N2O,2.0,kg/TJ,1.3706,Naphtha combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,100993a5-8fc8-3ca5-9824-bdca45209b49 -2014,Santa Fe,II.5.1,0.9594199999999999,TJ,CO2,73300.0,kg/TJ,70325.48599999999,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,d1e6a28f-c061-3428-9815-e456889128a3 -2014,Santa Fe,II.5.1,0.9594199999999999,TJ,CH4,0.5,kg/TJ,0.47970999999999997,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,281ffea2-b3ec-3ef0-8dcc-ed1cd3c2d055 -2014,Santa Fe,II.5.1,0.9594199999999999,TJ,N2O,2.0,kg/TJ,1.9188399999999999,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,efe21bb2-95c7-3848-b6f1-c726a7061fb0 -2014,Buenos Aires,II.1.1,49.261599999999994,TJ,CO2,69300.0,kg/TJ,3413828.8799999994,Motor Gasoline combustion consumption by freight transport,AR-B,SESCO,annual,kg,41d82b5a-bbdc-3e3e-84e2-7168f6906fa8 -2014,Buenos Aires,II.1.1,49.261599999999994,TJ,CH4,33.0,kg/TJ,1625.6327999999999,Motor Gasoline combustion consumption by freight transport,AR-B,SESCO,annual,kg,37fd07ea-bbca-39e2-9a51-4b8893b01231 -2014,Buenos Aires,II.1.1,49.261599999999994,TJ,N2O,3.2,kg/TJ,157.63711999999998,Motor Gasoline combustion consumption by freight transport,AR-B,SESCO,annual,kg,e11f0e74-a829-3dd4-8996-fb1f5e95fe07 -2014,Capital Federal,II.1.1,49.7046,TJ,CO2,69300.0,kg/TJ,3444528.78,Motor Gasoline combustion consumption by freight transport,AR-C,SESCO,annual,kg,55d446b2-c7a4-357b-bd2a-5f0294fcc8a4 -2014,Capital Federal,II.1.1,49.7046,TJ,CH4,33.0,kg/TJ,1640.2518,Motor Gasoline combustion consumption by freight transport,AR-C,SESCO,annual,kg,f6773e0a-68ec-3277-bee7-fe976d216fd3 -2014,Capital Federal,II.1.1,49.7046,TJ,N2O,3.2,kg/TJ,159.05472,Motor Gasoline combustion consumption by freight transport,AR-C,SESCO,annual,kg,a83dcb3a-3296-34e9-b072-7b3e862976de -2014,Buenos Aires,II.1.1,6974.049599999999,TJ,CO2,74100.0,kg/TJ,516777075.35999995,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,daa1d5e8-c0a1-39fd-9c4d-d21691cc65fe -2014,Buenos Aires,II.1.1,6974.049599999999,TJ,CH4,3.9,kg/TJ,27198.793439999998,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,98ab14fa-3e83-32f8-bc88-957bbfeb789f -2014,Buenos Aires,II.1.1,6974.049599999999,TJ,N2O,3.9,kg/TJ,27198.793439999998,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,98ab14fa-3e83-32f8-bc88-957bbfeb789f -2014,Capital Federal,II.1.1,3617.99592,TJ,CO2,74100.0,kg/TJ,268093497.672,Gas Oil combustion consumption by freight transport,AR-C,SESCO,annual,kg,72839089-0bf4-303d-8cdc-f868ef2fe343 -2014,Capital Federal,II.1.1,3617.99592,TJ,CH4,3.9,kg/TJ,14110.184087999998,Gas Oil combustion consumption by freight transport,AR-C,SESCO,annual,kg,d07e45d3-e7f2-3b41-81b9-10d14ac31b0b -2014,Capital Federal,II.1.1,3617.99592,TJ,N2O,3.9,kg/TJ,14110.184087999998,Gas Oil combustion consumption by freight transport,AR-C,SESCO,annual,kg,d07e45d3-e7f2-3b41-81b9-10d14ac31b0b -2014,Catamarca,II.1.1,21.383039999999998,TJ,CO2,74100.0,kg/TJ,1584483.2639999997,Gas Oil combustion consumption by freight transport,AR-K,SESCO,annual,kg,2d245386-1dc0-39f4-875b-bf6c87edb8ed -2014,Catamarca,II.1.1,21.383039999999998,TJ,CH4,3.9,kg/TJ,83.39385599999999,Gas Oil combustion consumption by freight transport,AR-K,SESCO,annual,kg,668ac6c6-561e-37b9-9018-8c934670f84a -2014,Catamarca,II.1.1,21.383039999999998,TJ,N2O,3.9,kg/TJ,83.39385599999999,Gas Oil combustion consumption by freight transport,AR-K,SESCO,annual,kg,668ac6c6-561e-37b9-9018-8c934670f84a -2014,Chaco,II.1.1,189.30491999999998,TJ,CO2,74100.0,kg/TJ,14027494.571999999,Gas Oil combustion consumption by freight transport,AR-H,SESCO,annual,kg,d894d298-ac26-3f65-9eb0-2da67e2e1fb2 -2014,Chaco,II.1.1,189.30491999999998,TJ,CH4,3.9,kg/TJ,738.289188,Gas Oil combustion consumption by freight transport,AR-H,SESCO,annual,kg,8a09a45a-e3e5-3e7c-a29b-68c6703c2e50 -2014,Chaco,II.1.1,189.30491999999998,TJ,N2O,3.9,kg/TJ,738.289188,Gas Oil combustion consumption by freight transport,AR-H,SESCO,annual,kg,8a09a45a-e3e5-3e7c-a29b-68c6703c2e50 -2014,Chubut,II.1.1,134.04131999999998,TJ,CO2,74100.0,kg/TJ,9932461.811999999,Gas Oil combustion consumption by freight transport,AR-U,SESCO,annual,kg,7458ee4f-4f4b-3969-957c-c7b4ce562887 -2014,Chubut,II.1.1,134.04131999999998,TJ,CH4,3.9,kg/TJ,522.7611479999999,Gas Oil combustion consumption by freight transport,AR-U,SESCO,annual,kg,7178075c-8c60-3d3d-94e3-e02c820156ca -2014,Chubut,II.1.1,134.04131999999998,TJ,N2O,3.9,kg/TJ,522.7611479999999,Gas Oil combustion consumption by freight transport,AR-U,SESCO,annual,kg,7178075c-8c60-3d3d-94e3-e02c820156ca -2014,Corrientes,II.1.1,296.32848,TJ,CO2,74100.0,kg/TJ,21957940.368,Gas Oil combustion consumption by freight transport,AR-W,SESCO,annual,kg,36bdfd8d-307a-3780-8b2f-0fabdc788d45 -2014,Corrientes,II.1.1,296.32848,TJ,CH4,3.9,kg/TJ,1155.681072,Gas Oil combustion consumption by freight transport,AR-W,SESCO,annual,kg,15b1e152-e810-3516-8c77-2678acdb8898 -2014,Corrientes,II.1.1,296.32848,TJ,N2O,3.9,kg/TJ,1155.681072,Gas Oil combustion consumption by freight transport,AR-W,SESCO,annual,kg,15b1e152-e810-3516-8c77-2678acdb8898 -2014,Córdoba,II.1.1,1829.0084399999998,TJ,CO2,74100.0,kg/TJ,135529525.40399998,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,ff5bf35c-a78d-3a3c-a181-ce9edf07903e -2014,Córdoba,II.1.1,1829.0084399999998,TJ,CH4,3.9,kg/TJ,7133.132916,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,002834e3-eea1-3143-a46d-17cbe18dfd98 -2014,Córdoba,II.1.1,1829.0084399999998,TJ,N2O,3.9,kg/TJ,7133.132916,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,002834e3-eea1-3143-a46d-17cbe18dfd98 -2014,Entre Rios,II.1.1,264.79571999999996,TJ,CO2,74100.0,kg/TJ,19621362.851999998,Gas Oil combustion consumption by freight transport,AR-E,SESCO,annual,kg,16e8f3e9-41ae-36f3-99a7-b9dbf241c1ac -2014,Entre Rios,II.1.1,264.79571999999996,TJ,CH4,3.9,kg/TJ,1032.7033079999999,Gas Oil combustion consumption by freight transport,AR-E,SESCO,annual,kg,62dbb167-6fbe-3bc4-b98e-70abd2d5325e -2014,Entre Rios,II.1.1,264.79571999999996,TJ,N2O,3.9,kg/TJ,1032.7033079999999,Gas Oil combustion consumption by freight transport,AR-E,SESCO,annual,kg,62dbb167-6fbe-3bc4-b98e-70abd2d5325e -2014,Formosa,II.1.1,0.65016,TJ,CO2,74100.0,kg/TJ,48176.856,Gas Oil combustion consumption by freight transport,AR-P,SESCO,annual,kg,7ecc4aa4-7e9a-360d-be4c-8ddef3b054f0 -2014,Formosa,II.1.1,0.65016,TJ,CH4,3.9,kg/TJ,2.535624,Gas Oil combustion consumption by freight transport,AR-P,SESCO,annual,kg,417a0213-c971-3029-9133-d7fe0ede65ba -2014,Formosa,II.1.1,0.65016,TJ,N2O,3.9,kg/TJ,2.535624,Gas Oil combustion consumption by freight transport,AR-P,SESCO,annual,kg,417a0213-c971-3029-9133-d7fe0ede65ba -2014,Jujuy,II.1.1,44.39148,TJ,CO2,74100.0,kg/TJ,3289408.668,Gas Oil combustion consumption by freight transport,AR-Y,SESCO,annual,kg,2110f949-73b6-3d1d-b4fd-48a539ad437e -2014,Jujuy,II.1.1,44.39148,TJ,CH4,3.9,kg/TJ,173.126772,Gas Oil combustion consumption by freight transport,AR-Y,SESCO,annual,kg,7a7e82e5-5696-3eb6-b3f9-e777245721d6 -2014,Jujuy,II.1.1,44.39148,TJ,N2O,3.9,kg/TJ,173.126772,Gas Oil combustion consumption by freight transport,AR-Y,SESCO,annual,kg,7a7e82e5-5696-3eb6-b3f9-e777245721d6 -2014,La Pampa,II.1.1,36.228359999999995,TJ,CO2,74100.0,kg/TJ,2684521.476,Gas Oil combustion consumption by freight transport,AR-L,SESCO,annual,kg,6159a324-1036-3a00-aacf-b1d777e12961 -2014,La Pampa,II.1.1,36.228359999999995,TJ,CH4,3.9,kg/TJ,141.29060399999997,Gas Oil combustion consumption by freight transport,AR-L,SESCO,annual,kg,450fe3fa-ccc9-3f9a-bd41-33ed9b025251 -2014,La Pampa,II.1.1,36.228359999999995,TJ,N2O,3.9,kg/TJ,141.29060399999997,Gas Oil combustion consumption by freight transport,AR-L,SESCO,annual,kg,450fe3fa-ccc9-3f9a-bd41-33ed9b025251 -2014,La Rioja,II.1.1,0.7223999999999999,TJ,CO2,74100.0,kg/TJ,53529.84,Gas Oil combustion consumption by freight transport,AR-F,SESCO,annual,kg,0f32c794-bf5d-3ed9-97a7-822dbd65b2d8 -2014,La Rioja,II.1.1,0.7223999999999999,TJ,CH4,3.9,kg/TJ,2.81736,Gas Oil combustion consumption by freight transport,AR-F,SESCO,annual,kg,d083e39e-ba7a-33a3-a441-47765e7ef6d1 -2014,La Rioja,II.1.1,0.7223999999999999,TJ,N2O,3.9,kg/TJ,2.81736,Gas Oil combustion consumption by freight transport,AR-F,SESCO,annual,kg,d083e39e-ba7a-33a3-a441-47765e7ef6d1 -2014,Mendoza,II.1.1,1569.1972799999999,TJ,CO2,74100.0,kg/TJ,116277518.44799998,Gas Oil combustion consumption by freight transport,AR-M,SESCO,annual,kg,40e3608a-2a5b-389b-b152-cdd4fdee4d1c -2014,Mendoza,II.1.1,1569.1972799999999,TJ,CH4,3.9,kg/TJ,6119.869392,Gas Oil combustion consumption by freight transport,AR-M,SESCO,annual,kg,cdb97d3e-7ded-359b-b195-aecc50591576 -2014,Mendoza,II.1.1,1569.1972799999999,TJ,N2O,3.9,kg/TJ,6119.869392,Gas Oil combustion consumption by freight transport,AR-M,SESCO,annual,kg,cdb97d3e-7ded-359b-b195-aecc50591576 -2014,Misiones,II.1.1,426.43271999999996,TJ,CO2,74100.0,kg/TJ,31598664.551999997,Gas Oil combustion consumption by freight transport,AR-N,SESCO,annual,kg,af56815c-2a53-3970-ae34-7c22571f7471 -2014,Misiones,II.1.1,426.43271999999996,TJ,CH4,3.9,kg/TJ,1663.0876079999998,Gas Oil combustion consumption by freight transport,AR-N,SESCO,annual,kg,ef469d97-dcb6-3714-af8e-b6596bd246ea -2014,Misiones,II.1.1,426.43271999999996,TJ,N2O,3.9,kg/TJ,1663.0876079999998,Gas Oil combustion consumption by freight transport,AR-N,SESCO,annual,kg,ef469d97-dcb6-3714-af8e-b6596bd246ea -2014,Neuquén,II.1.1,634.84512,TJ,CO2,74100.0,kg/TJ,47042023.392,Gas Oil combustion consumption by freight transport,AR-Q,SESCO,annual,kg,40cc6108-d4b8-31a3-9dca-c6c195846d17 -2014,Neuquén,II.1.1,634.84512,TJ,CH4,3.9,kg/TJ,2475.895968,Gas Oil combustion consumption by freight transport,AR-Q,SESCO,annual,kg,eae12174-a6c4-31fe-9a94-a0bd66837fff -2014,Neuquén,II.1.1,634.84512,TJ,N2O,3.9,kg/TJ,2475.895968,Gas Oil combustion consumption by freight transport,AR-Q,SESCO,annual,kg,eae12174-a6c4-31fe-9a94-a0bd66837fff -2014,Rio Negro,II.1.1,132.12696,TJ,CO2,74100.0,kg/TJ,9790607.736,Gas Oil combustion consumption by freight transport,AR-R,SESCO,annual,kg,5c493f2a-c44a-3fce-abfe-9cb285d5780d -2014,Rio Negro,II.1.1,132.12696,TJ,CH4,3.9,kg/TJ,515.2951439999999,Gas Oil combustion consumption by freight transport,AR-R,SESCO,annual,kg,b588f9a3-bc64-317f-a04c-c693b64338e1 -2014,Rio Negro,II.1.1,132.12696,TJ,N2O,3.9,kg/TJ,515.2951439999999,Gas Oil combustion consumption by freight transport,AR-R,SESCO,annual,kg,b588f9a3-bc64-317f-a04c-c693b64338e1 -2014,Salta,II.1.1,188.40192,TJ,CO2,74100.0,kg/TJ,13960582.272,Gas Oil combustion consumption by freight transport,AR-A,SESCO,annual,kg,7ee08b65-b9d9-3698-b760-a98e03423de0 -2014,Salta,II.1.1,188.40192,TJ,CH4,3.9,kg/TJ,734.767488,Gas Oil combustion consumption by freight transport,AR-A,SESCO,annual,kg,ab735e59-ce00-3121-b07f-198768d2e342 -2014,Salta,II.1.1,188.40192,TJ,N2O,3.9,kg/TJ,734.767488,Gas Oil combustion consumption by freight transport,AR-A,SESCO,annual,kg,ab735e59-ce00-3121-b07f-198768d2e342 -2014,San Juan,II.1.1,110.12988,TJ,CO2,74100.0,kg/TJ,8160624.108,Gas Oil combustion consumption by freight transport,AR-J,SESCO,annual,kg,1eae2ef7-e252-3289-a4f7-21767df77288 -2014,San Juan,II.1.1,110.12988,TJ,CH4,3.9,kg/TJ,429.506532,Gas Oil combustion consumption by freight transport,AR-J,SESCO,annual,kg,95adba3b-5342-369f-ac3e-7699948ab2aa -2014,San Juan,II.1.1,110.12988,TJ,N2O,3.9,kg/TJ,429.506532,Gas Oil combustion consumption by freight transport,AR-J,SESCO,annual,kg,95adba3b-5342-369f-ac3e-7699948ab2aa -2014,San Luis,II.1.1,159.54204,TJ,CO2,74100.0,kg/TJ,11822065.163999999,Gas Oil combustion consumption by freight transport,AR-D,SESCO,annual,kg,ad78a3cd-d3ca-3131-addc-05671be7b05f -2014,San Luis,II.1.1,159.54204,TJ,CH4,3.9,kg/TJ,622.2139559999999,Gas Oil combustion consumption by freight transport,AR-D,SESCO,annual,kg,138c5d6b-4970-399e-903f-cc3c3ecf94b6 -2014,San Luis,II.1.1,159.54204,TJ,N2O,3.9,kg/TJ,622.2139559999999,Gas Oil combustion consumption by freight transport,AR-D,SESCO,annual,kg,138c5d6b-4970-399e-903f-cc3c3ecf94b6 -2014,Santa Cruz,II.1.1,57.71976,TJ,CO2,74100.0,kg/TJ,4277034.216,Gas Oil combustion consumption by freight transport,AR-Z,SESCO,annual,kg,4e32fc87-dee6-34c9-9cd2-c4c772693a82 -2014,Santa Cruz,II.1.1,57.71976,TJ,CH4,3.9,kg/TJ,225.107064,Gas Oil combustion consumption by freight transport,AR-Z,SESCO,annual,kg,5187079e-98cd-3703-ad08-db7d0590dcaa -2014,Santa Cruz,II.1.1,57.71976,TJ,N2O,3.9,kg/TJ,225.107064,Gas Oil combustion consumption by freight transport,AR-Z,SESCO,annual,kg,5187079e-98cd-3703-ad08-db7d0590dcaa -2014,Santa Fe,II.1.1,1731.80952,TJ,CO2,74100.0,kg/TJ,128327085.432,Gas Oil combustion consumption by freight transport,AR-S,SESCO,annual,kg,8b8e4031-d19e-323f-bb63-5595edf6a6c5 -2014,Santa Fe,II.1.1,1731.80952,TJ,CH4,3.9,kg/TJ,6754.057128,Gas Oil combustion consumption by freight transport,AR-S,SESCO,annual,kg,e233787e-d914-3dff-9f4f-ae7aa3cb21c6 -2014,Santa Fe,II.1.1,1731.80952,TJ,N2O,3.9,kg/TJ,6754.057128,Gas Oil combustion consumption by freight transport,AR-S,SESCO,annual,kg,e233787e-d914-3dff-9f4f-ae7aa3cb21c6 -2014,Santiago del Estero,II.1.1,75.4908,TJ,CO2,74100.0,kg/TJ,5593868.279999999,Gas Oil combustion consumption by freight transport,AR-G,SESCO,annual,kg,5abb776a-ebe2-3d03-aeb0-5a3b300cda61 -2014,Santiago del Estero,II.1.1,75.4908,TJ,CH4,3.9,kg/TJ,294.41411999999997,Gas Oil combustion consumption by freight transport,AR-G,SESCO,annual,kg,0cc188dd-a8cb-3ffa-8f02-b0545b636e29 -2014,Santiago del Estero,II.1.1,75.4908,TJ,N2O,3.9,kg/TJ,294.41411999999997,Gas Oil combustion consumption by freight transport,AR-G,SESCO,annual,kg,0cc188dd-a8cb-3ffa-8f02-b0545b636e29 -2014,Tierra del Fuego,II.1.1,9.89688,TJ,CO2,74100.0,kg/TJ,733358.808,Gas Oil combustion consumption by freight transport,AR-V,SESCO,annual,kg,7b2de18b-7a13-35f8-a738-954d50eec356 -2014,Tierra del Fuego,II.1.1,9.89688,TJ,CH4,3.9,kg/TJ,38.597832,Gas Oil combustion consumption by freight transport,AR-V,SESCO,annual,kg,167c160a-4602-3e55-9185-6ae6f74a0cbd -2014,Tierra del Fuego,II.1.1,9.89688,TJ,N2O,3.9,kg/TJ,38.597832,Gas Oil combustion consumption by freight transport,AR-V,SESCO,annual,kg,167c160a-4602-3e55-9185-6ae6f74a0cbd -2014,Tucuman,II.1.1,291.74124,TJ,CO2,74100.0,kg/TJ,21618025.884,Gas Oil combustion consumption by freight transport,AR-T,SESCO,annual,kg,f66c311d-cfe9-37e3-b147-d092d8e4af54 -2014,Tucuman,II.1.1,291.74124,TJ,CH4,3.9,kg/TJ,1137.790836,Gas Oil combustion consumption by freight transport,AR-T,SESCO,annual,kg,09ef47bc-d26e-3de4-bb5e-1fc62ddf0070 -2014,Tucuman,II.1.1,291.74124,TJ,N2O,3.9,kg/TJ,1137.790836,Gas Oil combustion consumption by freight transport,AR-T,SESCO,annual,kg,09ef47bc-d26e-3de4-bb5e-1fc62ddf0070 -2014,Buenos Aires,II.1.1,348.48575999999997,TJ,CO2,74100.0,kg/TJ,25822794.816,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,6996fb2f-e105-3d1d-9c41-fbc27c4c245b -2014,Buenos Aires,II.1.1,348.48575999999997,TJ,CH4,3.9,kg/TJ,1359.0944639999998,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,1c3e39a6-6cb3-35ba-b219-109d6375e7ee -2014,Buenos Aires,II.1.1,348.48575999999997,TJ,N2O,3.9,kg/TJ,1359.0944639999998,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,1c3e39a6-6cb3-35ba-b219-109d6375e7ee -2014,Capital Federal,II.1.1,555.1644,TJ,CO2,74100.0,kg/TJ,41137682.04,Gas Oil combustion consumption by freight transport,AR-C,SESCO,annual,kg,963b47a9-b94d-3f95-9281-685340853120 -2014,Capital Federal,II.1.1,555.1644,TJ,CH4,3.9,kg/TJ,2165.14116,Gas Oil combustion consumption by freight transport,AR-C,SESCO,annual,kg,f4f61724-b1fc-33ca-bc92-4ed5dcded00f -2014,Capital Federal,II.1.1,555.1644,TJ,N2O,3.9,kg/TJ,2165.14116,Gas Oil combustion consumption by freight transport,AR-C,SESCO,annual,kg,f4f61724-b1fc-33ca-bc92-4ed5dcded00f -2014,Chaco,II.1.1,11.95572,TJ,CO2,74100.0,kg/TJ,885918.852,Gas Oil combustion consumption by freight transport,AR-H,SESCO,annual,kg,55d70975-75f3-3aff-92c1-44c6b8f84b77 -2014,Chaco,II.1.1,11.95572,TJ,CH4,3.9,kg/TJ,46.627308,Gas Oil combustion consumption by freight transport,AR-H,SESCO,annual,kg,750293e8-d08e-32c3-9953-1d75ee22015a -2014,Chaco,II.1.1,11.95572,TJ,N2O,3.9,kg/TJ,46.627308,Gas Oil combustion consumption by freight transport,AR-H,SESCO,annual,kg,750293e8-d08e-32c3-9953-1d75ee22015a -2014,Chubut,II.1.1,5.598599999999999,TJ,CO2,74100.0,kg/TJ,414856.25999999995,Gas Oil combustion consumption by freight transport,AR-U,SESCO,annual,kg,b9cd0191-f560-3cf5-8c54-01a7de3f8749 -2014,Chubut,II.1.1,5.598599999999999,TJ,CH4,3.9,kg/TJ,21.834539999999997,Gas Oil combustion consumption by freight transport,AR-U,SESCO,annual,kg,5e93c989-5776-37c9-834c-cdeceab3bc94 -2014,Chubut,II.1.1,5.598599999999999,TJ,N2O,3.9,kg/TJ,21.834539999999997,Gas Oil combustion consumption by freight transport,AR-U,SESCO,annual,kg,5e93c989-5776-37c9-834c-cdeceab3bc94 -2014,Corrientes,II.1.1,2.09496,TJ,CO2,74100.0,kg/TJ,155236.536,Gas Oil combustion consumption by freight transport,AR-W,SESCO,annual,kg,405c72df-70b9-3c1c-b0f4-1b87ab506056 -2014,Corrientes,II.1.1,2.09496,TJ,CH4,3.9,kg/TJ,8.170344,Gas Oil combustion consumption by freight transport,AR-W,SESCO,annual,kg,f55a4c18-584e-33fe-9655-beefeefad836 -2014,Corrientes,II.1.1,2.09496,TJ,N2O,3.9,kg/TJ,8.170344,Gas Oil combustion consumption by freight transport,AR-W,SESCO,annual,kg,f55a4c18-584e-33fe-9655-beefeefad836 -2014,Córdoba,II.1.1,10.691519999999999,TJ,CO2,74100.0,kg/TJ,792241.6319999999,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,50b9ab31-ab0e-3a96-a543-2be62a61e6b1 -2014,Córdoba,II.1.1,10.691519999999999,TJ,CH4,3.9,kg/TJ,41.69692799999999,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,f2c8a977-027d-3206-af99-7fff9da97ad2 -2014,Córdoba,II.1.1,10.691519999999999,TJ,N2O,3.9,kg/TJ,41.69692799999999,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,f2c8a977-027d-3206-af99-7fff9da97ad2 -2014,Entre Rios,II.1.1,13.3644,TJ,CO2,74100.0,kg/TJ,990302.04,Gas Oil combustion consumption by freight transport,AR-E,SESCO,annual,kg,07f3def1-59f3-3120-9c6a-e91f3dd8dc1c -2014,Entre Rios,II.1.1,13.3644,TJ,CH4,3.9,kg/TJ,52.121159999999996,Gas Oil combustion consumption by freight transport,AR-E,SESCO,annual,kg,616ab8ad-913c-373d-b12d-3c6ba66f5c20 -2014,Entre Rios,II.1.1,13.3644,TJ,N2O,3.9,kg/TJ,52.121159999999996,Gas Oil combustion consumption by freight transport,AR-E,SESCO,annual,kg,616ab8ad-913c-373d-b12d-3c6ba66f5c20 -2014,Jujuy,II.1.1,0.28896,TJ,CO2,74100.0,kg/TJ,21411.935999999998,Gas Oil combustion consumption by freight transport,AR-Y,SESCO,annual,kg,af3a1ef4-ef4e-3cd1-9367-655b29438884 -2014,Jujuy,II.1.1,0.28896,TJ,CH4,3.9,kg/TJ,1.126944,Gas Oil combustion consumption by freight transport,AR-Y,SESCO,annual,kg,6cb174f1-6558-3ef0-abfc-e5b1e4e229c6 -2014,Jujuy,II.1.1,0.28896,TJ,N2O,3.9,kg/TJ,1.126944,Gas Oil combustion consumption by freight transport,AR-Y,SESCO,annual,kg,6cb174f1-6558-3ef0-abfc-e5b1e4e229c6 -2014,La Pampa,II.1.1,0.21672,TJ,CO2,74100.0,kg/TJ,16058.952,Gas Oil combustion consumption by freight transport,AR-L,SESCO,annual,kg,7c49e1a9-b233-362c-b6e9-98ed67c4f775 -2014,La Pampa,II.1.1,0.21672,TJ,CH4,3.9,kg/TJ,0.845208,Gas Oil combustion consumption by freight transport,AR-L,SESCO,annual,kg,a25c2419-5257-34a0-bec8-a15894894c5b -2014,La Pampa,II.1.1,0.21672,TJ,N2O,3.9,kg/TJ,0.845208,Gas Oil combustion consumption by freight transport,AR-L,SESCO,annual,kg,a25c2419-5257-34a0-bec8-a15894894c5b -2014,La Rioja,II.1.1,1.87824,TJ,CO2,74100.0,kg/TJ,139177.584,Gas Oil combustion consumption by freight transport,AR-F,SESCO,annual,kg,dcda983a-3be1-39f0-9809-9fe6bb5bcd49 -2014,La Rioja,II.1.1,1.87824,TJ,CH4,3.9,kg/TJ,7.325136,Gas Oil combustion consumption by freight transport,AR-F,SESCO,annual,kg,753c3625-6f30-3a2f-9f81-35543347157d -2014,La Rioja,II.1.1,1.87824,TJ,N2O,3.9,kg/TJ,7.325136,Gas Oil combustion consumption by freight transport,AR-F,SESCO,annual,kg,753c3625-6f30-3a2f-9f81-35543347157d -2014,Mendoza,II.1.1,23.00844,TJ,CO2,74100.0,kg/TJ,1704925.404,Gas Oil combustion consumption by freight transport,AR-M,SESCO,annual,kg,2bf22b79-75b1-3d78-ae83-1b1d2f923a8b -2014,Mendoza,II.1.1,23.00844,TJ,CH4,3.9,kg/TJ,89.732916,Gas Oil combustion consumption by freight transport,AR-M,SESCO,annual,kg,1319ea1f-1720-3c01-a7f5-9e9908c0f6f6 -2014,Mendoza,II.1.1,23.00844,TJ,N2O,3.9,kg/TJ,89.732916,Gas Oil combustion consumption by freight transport,AR-M,SESCO,annual,kg,1319ea1f-1720-3c01-a7f5-9e9908c0f6f6 -2014,Misiones,II.1.1,6.284879999999999,TJ,CO2,74100.0,kg/TJ,465709.60799999995,Gas Oil combustion consumption by freight transport,AR-N,SESCO,annual,kg,d832b65c-2a41-3358-8e87-5cbbbfcb9897 -2014,Misiones,II.1.1,6.284879999999999,TJ,CH4,3.9,kg/TJ,24.511031999999997,Gas Oil combustion consumption by freight transport,AR-N,SESCO,annual,kg,49d11e69-6f0f-3039-a754-c784866c5219 -2014,Misiones,II.1.1,6.284879999999999,TJ,N2O,3.9,kg/TJ,24.511031999999997,Gas Oil combustion consumption by freight transport,AR-N,SESCO,annual,kg,49d11e69-6f0f-3039-a754-c784866c5219 -2014,Neuquén,II.1.1,10.07748,TJ,CO2,74100.0,kg/TJ,746741.2679999999,Gas Oil combustion consumption by freight transport,AR-Q,SESCO,annual,kg,313fa9df-0845-38b5-ba47-cf8ecca87193 -2014,Neuquén,II.1.1,10.07748,TJ,CH4,3.9,kg/TJ,39.302172,Gas Oil combustion consumption by freight transport,AR-Q,SESCO,annual,kg,02ce5a90-0258-35a6-8918-273f22064b0b -2014,Neuquén,II.1.1,10.07748,TJ,N2O,3.9,kg/TJ,39.302172,Gas Oil combustion consumption by freight transport,AR-Q,SESCO,annual,kg,02ce5a90-0258-35a6-8918-273f22064b0b -2014,Rio Negro,II.1.1,2.60064,TJ,CO2,74100.0,kg/TJ,192707.424,Gas Oil combustion consumption by freight transport,AR-R,SESCO,annual,kg,1252ac9f-174a-3c3c-b9e8-380d43a42f2c -2014,Rio Negro,II.1.1,2.60064,TJ,CH4,3.9,kg/TJ,10.142496,Gas Oil combustion consumption by freight transport,AR-R,SESCO,annual,kg,b02cfbd0-00af-341c-9698-efcd8fca5ceb -2014,Rio Negro,II.1.1,2.60064,TJ,N2O,3.9,kg/TJ,10.142496,Gas Oil combustion consumption by freight transport,AR-R,SESCO,annual,kg,b02cfbd0-00af-341c-9698-efcd8fca5ceb -2014,Salta,II.1.1,14.77308,TJ,CO2,74100.0,kg/TJ,1094685.2280000001,Gas Oil combustion consumption by freight transport,AR-A,SESCO,annual,kg,88de971b-955b-3e2e-9e3c-7566abe5ffcf -2014,Salta,II.1.1,14.77308,TJ,CH4,3.9,kg/TJ,57.615012,Gas Oil combustion consumption by freight transport,AR-A,SESCO,annual,kg,78a06ec3-d954-36e5-ba08-2ccba2a34c8e -2014,Salta,II.1.1,14.77308,TJ,N2O,3.9,kg/TJ,57.615012,Gas Oil combustion consumption by freight transport,AR-A,SESCO,annual,kg,78a06ec3-d954-36e5-ba08-2ccba2a34c8e -2014,San Juan,II.1.1,3.0702,TJ,CO2,74100.0,kg/TJ,227501.81999999998,Gas Oil combustion consumption by freight transport,AR-J,SESCO,annual,kg,9b7b353a-68e3-3c1d-b14a-d6ed4224e523 -2014,San Juan,II.1.1,3.0702,TJ,CH4,3.9,kg/TJ,11.97378,Gas Oil combustion consumption by freight transport,AR-J,SESCO,annual,kg,026ca2c4-03ca-30e4-a19a-2badf58d9a8d -2014,San Juan,II.1.1,3.0702,TJ,N2O,3.9,kg/TJ,11.97378,Gas Oil combustion consumption by freight transport,AR-J,SESCO,annual,kg,026ca2c4-03ca-30e4-a19a-2badf58d9a8d -2014,San Luis,II.1.1,1.19196,TJ,CO2,74100.0,kg/TJ,88324.23599999999,Gas Oil combustion consumption by freight transport,AR-D,SESCO,annual,kg,bb2c759c-61d0-39f3-b514-310c2328e749 -2014,San Luis,II.1.1,1.19196,TJ,CH4,3.9,kg/TJ,4.648643999999999,Gas Oil combustion consumption by freight transport,AR-D,SESCO,annual,kg,993547b1-b733-3d55-937b-c1ae654e5a5c -2014,San Luis,II.1.1,1.19196,TJ,N2O,3.9,kg/TJ,4.648643999999999,Gas Oil combustion consumption by freight transport,AR-D,SESCO,annual,kg,993547b1-b733-3d55-937b-c1ae654e5a5c -2014,Santa Cruz,II.1.1,1.01136,TJ,CO2,74100.0,kg/TJ,74941.776,Gas Oil combustion consumption by freight transport,AR-Z,SESCO,annual,kg,c9307b02-028a-3124-9818-0ec2062b503b -2014,Santa Cruz,II.1.1,1.01136,TJ,CH4,3.9,kg/TJ,3.9443040000000003,Gas Oil combustion consumption by freight transport,AR-Z,SESCO,annual,kg,3b42235f-98bd-3efa-a542-aeac86a64d8d -2014,Santa Cruz,II.1.1,1.01136,TJ,N2O,3.9,kg/TJ,3.9443040000000003,Gas Oil combustion consumption by freight transport,AR-Z,SESCO,annual,kg,3b42235f-98bd-3efa-a542-aeac86a64d8d -2014,Santa Fe,II.1.1,130.46544,TJ,CO2,74100.0,kg/TJ,9667489.104,Gas Oil combustion consumption by freight transport,AR-S,SESCO,annual,kg,5626e13d-1f12-3628-905d-c58044712bb0 -2014,Santa Fe,II.1.1,130.46544,TJ,CH4,3.9,kg/TJ,508.81521599999996,Gas Oil combustion consumption by freight transport,AR-S,SESCO,annual,kg,798996b1-5adf-3253-b5c3-12f67240d27b -2014,Santa Fe,II.1.1,130.46544,TJ,N2O,3.9,kg/TJ,508.81521599999996,Gas Oil combustion consumption by freight transport,AR-S,SESCO,annual,kg,798996b1-5adf-3253-b5c3-12f67240d27b -2014,Tierra del Fuego,II.1.1,0.03612,TJ,CO2,74100.0,kg/TJ,2676.4919999999997,Gas Oil combustion consumption by freight transport,AR-V,SESCO,annual,kg,767c2e44-8146-3aae-830c-229491064951 -2014,Tierra del Fuego,II.1.1,0.03612,TJ,CH4,3.9,kg/TJ,0.140868,Gas Oil combustion consumption by freight transport,AR-V,SESCO,annual,kg,a8914733-0b94-3d52-b39a-ea4e29ecfc53 -2014,Tierra del Fuego,II.1.1,0.03612,TJ,N2O,3.9,kg/TJ,0.140868,Gas Oil combustion consumption by freight transport,AR-V,SESCO,annual,kg,a8914733-0b94-3d52-b39a-ea4e29ecfc53 -2014,Tucuman,II.1.1,6.6822,TJ,CO2,74100.0,kg/TJ,495151.02,Gas Oil combustion consumption by freight transport,AR-T,SESCO,annual,kg,6942ddf3-f7fa-3aae-b246-ba1e26fe550c -2014,Tucuman,II.1.1,6.6822,TJ,CH4,3.9,kg/TJ,26.060579999999998,Gas Oil combustion consumption by freight transport,AR-T,SESCO,annual,kg,093850a4-8e32-336f-83e6-c839b4ea4dc4 -2014,Tucuman,II.1.1,6.6822,TJ,N2O,3.9,kg/TJ,26.060579999999998,Gas Oil combustion consumption by freight transport,AR-T,SESCO,annual,kg,093850a4-8e32-336f-83e6-c839b4ea4dc4 -2014,Buenos Aires,II.1.1,197.64051999999998,TJ,CO2,73300.0,kg/TJ,14487050.115999999,Naphtha combustion consumption by freight transport,AR-B,SESCO,annual,kg,43aa6d13-96cb-35dd-8ebc-caba24cbdde5 -2014,Buenos Aires,II.1.1,197.64051999999998,TJ,CH4,0.5,kg/TJ,98.82025999999999,Naphtha combustion consumption by freight transport,AR-B,SESCO,annual,kg,b4607e16-9898-3469-995f-956f7a81eff1 -2014,Buenos Aires,II.1.1,197.64051999999998,TJ,N2O,2.0,kg/TJ,395.28103999999996,Naphtha combustion consumption by freight transport,AR-B,SESCO,annual,kg,838b14b1-a18c-3dcb-a4ab-32bde7313dc2 -2014,Capital Federal,II.1.1,214.670225,TJ,CO2,73300.0,kg/TJ,15735327.4925,Naphtha combustion consumption by freight transport,AR-C,SESCO,annual,kg,e9bb0091-97ea-3cb5-865f-b94267412625 -2014,Capital Federal,II.1.1,214.670225,TJ,CH4,0.5,kg/TJ,107.3351125,Naphtha combustion consumption by freight transport,AR-C,SESCO,annual,kg,2ab22dad-14ff-3922-a4b9-53cdd2104695 -2014,Capital Federal,II.1.1,214.670225,TJ,N2O,2.0,kg/TJ,429.34045,Naphtha combustion consumption by freight transport,AR-C,SESCO,annual,kg,77a49e66-dfb3-390d-b083-cd0c8e93e85e -2014,Chaco,II.1.1,5.448135,TJ,CO2,73300.0,kg/TJ,399348.2955,Naphtha combustion consumption by freight transport,AR-H,SESCO,annual,kg,c79c2149-9a76-3ec2-8594-4a7b090200de -2014,Chaco,II.1.1,5.448135,TJ,CH4,0.5,kg/TJ,2.7240675,Naphtha combustion consumption by freight transport,AR-H,SESCO,annual,kg,2a3d27a6-74d8-368e-a476-19cc18f6824e -2014,Chaco,II.1.1,5.448135,TJ,N2O,2.0,kg/TJ,10.89627,Naphtha combustion consumption by freight transport,AR-H,SESCO,annual,kg,78c82792-7948-3b33-9d6d-598689684de4 -2014,Chubut,II.1.1,0.54824,TJ,CO2,73300.0,kg/TJ,40185.992,Naphtha combustion consumption by freight transport,AR-U,SESCO,annual,kg,879b078e-b574-3557-8d85-7153f80510d5 -2014,Chubut,II.1.1,0.54824,TJ,CH4,0.5,kg/TJ,0.27412,Naphtha combustion consumption by freight transport,AR-U,SESCO,annual,kg,893058bc-92e0-3b15-98b6-b2a3aff834c1 -2014,Chubut,II.1.1,0.54824,TJ,N2O,2.0,kg/TJ,1.09648,Naphtha combustion consumption by freight transport,AR-U,SESCO,annual,kg,2ce5c753-102a-3bc4-b42f-5f39979002af -2014,Corrientes,II.1.1,1.747515,TJ,CO2,73300.0,kg/TJ,128092.8495,Naphtha combustion consumption by freight transport,AR-W,SESCO,annual,kg,ed684241-675e-3c53-93c3-d40aca6c3338 -2014,Corrientes,II.1.1,1.747515,TJ,CH4,0.5,kg/TJ,0.8737575,Naphtha combustion consumption by freight transport,AR-W,SESCO,annual,kg,7621a322-c197-34fc-b874-9b806cef9fdb -2014,Corrientes,II.1.1,1.747515,TJ,N2O,2.0,kg/TJ,3.49503,Naphtha combustion consumption by freight transport,AR-W,SESCO,annual,kg,d2289153-a1da-3ddf-a56c-5bd74f5016d1 -2014,Córdoba,II.1.1,5.379605,TJ,CO2,73300.0,kg/TJ,394325.0465,Naphtha combustion consumption by freight transport,AR-X,SESCO,annual,kg,50a704f5-89ca-342c-84b6-f0106991aef7 -2014,Córdoba,II.1.1,5.379605,TJ,CH4,0.5,kg/TJ,2.6898025,Naphtha combustion consumption by freight transport,AR-X,SESCO,annual,kg,71fb8126-fd16-3872-abc2-c5d1c758af9b -2014,Córdoba,II.1.1,5.379605,TJ,N2O,2.0,kg/TJ,10.75921,Naphtha combustion consumption by freight transport,AR-X,SESCO,annual,kg,38b1ec77-e8b0-33f0-8648-ed426f377145 -2014,Entre Rios,II.1.1,1.9873699999999999,TJ,CO2,73300.0,kg/TJ,145674.221,Naphtha combustion consumption by freight transport,AR-E,SESCO,annual,kg,d9acb2d4-2552-3997-8498-5140cc927c2a -2014,Entre Rios,II.1.1,1.9873699999999999,TJ,CH4,0.5,kg/TJ,0.9936849999999999,Naphtha combustion consumption by freight transport,AR-E,SESCO,annual,kg,585458df-4d95-3567-9a5d-9b8dacd06bdd -2014,Entre Rios,II.1.1,1.9873699999999999,TJ,N2O,2.0,kg/TJ,3.9747399999999997,Naphtha combustion consumption by freight transport,AR-E,SESCO,annual,kg,408ab1b5-af61-373d-aadd-9acba62b0364 -2014,Mendoza,II.1.1,5.379605,TJ,CO2,73300.0,kg/TJ,394325.0465,Naphtha combustion consumption by freight transport,AR-M,SESCO,annual,kg,5c11d7ce-a9d1-3586-b47b-0b1d10370c18 -2014,Mendoza,II.1.1,5.379605,TJ,CH4,0.5,kg/TJ,2.6898025,Naphtha combustion consumption by freight transport,AR-M,SESCO,annual,kg,fa73283e-e325-3e8f-9d67-059b7db8aff5 -2014,Mendoza,II.1.1,5.379605,TJ,N2O,2.0,kg/TJ,10.75921,Naphtha combustion consumption by freight transport,AR-M,SESCO,annual,kg,818b82a6-d179-31ec-8b7e-2fcf7e4ae0dd -2014,Misiones,II.1.1,0.6167699999999999,TJ,CO2,73300.0,kg/TJ,45209.240999999995,Naphtha combustion consumption by freight transport,AR-N,SESCO,annual,kg,b09095d2-6f1e-3113-80a8-67e02f2fb784 -2014,Misiones,II.1.1,0.6167699999999999,TJ,CH4,0.5,kg/TJ,0.30838499999999996,Naphtha combustion consumption by freight transport,AR-N,SESCO,annual,kg,5a259877-9ddc-3841-940b-86fb4e0fc20f -2014,Misiones,II.1.1,0.6167699999999999,TJ,N2O,2.0,kg/TJ,1.2335399999999999,Naphtha combustion consumption by freight transport,AR-N,SESCO,annual,kg,d730cbcd-3399-3af4-a287-18cd1c306cbf -2014,Neuquén,II.1.1,0.27412,TJ,CO2,73300.0,kg/TJ,20092.996,Naphtha combustion consumption by freight transport,AR-Q,SESCO,annual,kg,ecf4ece1-9994-33ee-8981-28cd95f1b775 -2014,Neuquén,II.1.1,0.27412,TJ,CH4,0.5,kg/TJ,0.13706,Naphtha combustion consumption by freight transport,AR-Q,SESCO,annual,kg,76db1301-81cc-346a-96de-1724709861df -2014,Neuquén,II.1.1,0.27412,TJ,N2O,2.0,kg/TJ,0.54824,Naphtha combustion consumption by freight transport,AR-Q,SESCO,annual,kg,4332ef23-f1f0-3d0f-b706-50399df2757e -2014,Rio Negro,II.1.1,1.78178,TJ,CO2,73300.0,kg/TJ,130604.47399999999,Naphtha combustion consumption by freight transport,AR-R,SESCO,annual,kg,a4259f95-2ba2-3a31-8f05-bf09ee1cd669 -2014,Rio Negro,II.1.1,1.78178,TJ,CH4,0.5,kg/TJ,0.89089,Naphtha combustion consumption by freight transport,AR-R,SESCO,annual,kg,16b09300-27ac-35c9-ba83-ed2c47bc9051 -2014,Rio Negro,II.1.1,1.78178,TJ,N2O,2.0,kg/TJ,3.56356,Naphtha combustion consumption by freight transport,AR-R,SESCO,annual,kg,cff9930e-cba3-3443-860f-9b9ca475cdc2 -2014,Salta,II.1.1,11.136125,TJ,CO2,73300.0,kg/TJ,816277.9625,Naphtha combustion consumption by freight transport,AR-A,SESCO,annual,kg,6ba311fe-3fca-3ef9-8f1c-cd4c5107f2c8 -2014,Salta,II.1.1,11.136125,TJ,CH4,0.5,kg/TJ,5.5680625,Naphtha combustion consumption by freight transport,AR-A,SESCO,annual,kg,35fd57eb-619e-302e-864a-934e8edcc7de -2014,Salta,II.1.1,11.136125,TJ,N2O,2.0,kg/TJ,22.27225,Naphtha combustion consumption by freight transport,AR-A,SESCO,annual,kg,8050b948-1ba0-3d64-8547-d9d97dcfcb2e -2014,San Juan,II.1.1,0.06853,TJ,CO2,73300.0,kg/TJ,5023.249,Naphtha combustion consumption by freight transport,AR-J,SESCO,annual,kg,a3c75ae1-70e1-36fe-b057-6ba411a98c84 -2014,San Juan,II.1.1,0.06853,TJ,CH4,0.5,kg/TJ,0.034265,Naphtha combustion consumption by freight transport,AR-J,SESCO,annual,kg,c3940ceb-6a34-3b24-bf35-b3dad599776e -2014,San Juan,II.1.1,0.06853,TJ,N2O,2.0,kg/TJ,0.13706,Naphtha combustion consumption by freight transport,AR-J,SESCO,annual,kg,20690c97-d719-369e-b009-e8353ed0913d -2014,San Luis,II.1.1,0.27412,TJ,CO2,73300.0,kg/TJ,20092.996,Naphtha combustion consumption by freight transport,AR-D,SESCO,annual,kg,1b92a263-fab2-3761-a191-ff6e18f82523 -2014,San Luis,II.1.1,0.27412,TJ,CH4,0.5,kg/TJ,0.13706,Naphtha combustion consumption by freight transport,AR-D,SESCO,annual,kg,68813455-f436-3fae-ad9d-c58aca3a0673 -2014,San Luis,II.1.1,0.27412,TJ,N2O,2.0,kg/TJ,0.54824,Naphtha combustion consumption by freight transport,AR-D,SESCO,annual,kg,ee254adc-2079-3379-b7f2-da929c5f561a -2014,Santa Fe,II.1.1,17.26956,TJ,CO2,73300.0,kg/TJ,1265858.748,Naphtha combustion consumption by freight transport,AR-S,SESCO,annual,kg,580d5b04-0b37-32a4-b025-a41d4ece25ad -2014,Santa Fe,II.1.1,17.26956,TJ,CH4,0.5,kg/TJ,8.63478,Naphtha combustion consumption by freight transport,AR-S,SESCO,annual,kg,02ca967e-ac54-3884-9897-05c4adbddf4d -2014,Santa Fe,II.1.1,17.26956,TJ,N2O,2.0,kg/TJ,34.53912,Naphtha combustion consumption by freight transport,AR-S,SESCO,annual,kg,c7c5300c-2322-35d2-844e-aeea78d4c5b0 -2014,Santiago del Estero,II.1.1,0.034265,TJ,CO2,73300.0,kg/TJ,2511.6245,Naphtha combustion consumption by freight transport,AR-G,SESCO,annual,kg,d14513d4-d09c-3859-beae-1ea19a611e3d -2014,Santiago del Estero,II.1.1,0.034265,TJ,CH4,0.5,kg/TJ,0.0171325,Naphtha combustion consumption by freight transport,AR-G,SESCO,annual,kg,a6393a37-1179-37f4-bc8f-75e9744032b8 -2014,Santiago del Estero,II.1.1,0.034265,TJ,N2O,2.0,kg/TJ,0.06853,Naphtha combustion consumption by freight transport,AR-G,SESCO,annual,kg,04bf7b7d-e407-3121-b429-d4ca02c2ed60 -2014,Tucuman,II.1.1,1.3020699999999998,TJ,CO2,73300.0,kg/TJ,95441.73099999999,Naphtha combustion consumption by freight transport,AR-T,SESCO,annual,kg,5a3c58ab-3307-3d16-bf59-997a63408585 -2014,Tucuman,II.1.1,1.3020699999999998,TJ,CH4,0.5,kg/TJ,0.6510349999999999,Naphtha combustion consumption by freight transport,AR-T,SESCO,annual,kg,75fb155e-111b-3d0e-8a86-ead2875d3bfe -2014,Tucuman,II.1.1,1.3020699999999998,TJ,N2O,2.0,kg/TJ,2.6041399999999997,Naphtha combustion consumption by freight transport,AR-T,SESCO,annual,kg,f483c896-ad98-3bd3-a7ec-92fe758a63b7 -2014,Buenos Aires,II.1.1,198.737,TJ,CO2,73300.0,kg/TJ,14567422.1,Naphtha combustion consumption by freight transport,AR-B,SESCO,annual,kg,99bf583a-d808-3eb1-9a63-c107b01b771e -2014,Buenos Aires,II.1.1,198.737,TJ,CH4,0.5,kg/TJ,99.3685,Naphtha combustion consumption by freight transport,AR-B,SESCO,annual,kg,a7409b13-7ebc-31b0-8c03-5529d9ed2903 -2014,Buenos Aires,II.1.1,198.737,TJ,N2O,2.0,kg/TJ,397.474,Naphtha combustion consumption by freight transport,AR-B,SESCO,annual,kg,6a1f7925-a977-3569-95e2-4cfa23d24068 -2014,Capital Federal,II.1.1,194.55667,TJ,CO2,73300.0,kg/TJ,14261003.911,Naphtha combustion consumption by freight transport,AR-C,SESCO,annual,kg,c85f6418-a56e-3682-aeba-f8048f613e4b -2014,Capital Federal,II.1.1,194.55667,TJ,CH4,0.5,kg/TJ,97.278335,Naphtha combustion consumption by freight transport,AR-C,SESCO,annual,kg,a806f2b9-8c13-3a66-95c0-b7a6deefbd64 -2014,Capital Federal,II.1.1,194.55667,TJ,N2O,2.0,kg/TJ,389.11334,Naphtha combustion consumption by freight transport,AR-C,SESCO,annual,kg,a0194934-62a9-3780-a4a2-4a351d6f6f2b -2014,Chaco,II.1.1,6.44182,TJ,CO2,73300.0,kg/TJ,472185.406,Naphtha combustion consumption by freight transport,AR-H,SESCO,annual,kg,dc704ef7-05c1-39d2-a6fc-3e69791f01fd -2014,Chaco,II.1.1,6.44182,TJ,CH4,0.5,kg/TJ,3.22091,Naphtha combustion consumption by freight transport,AR-H,SESCO,annual,kg,f1ac3780-1b21-3b6a-af45-3ea22e71c9d4 -2014,Chaco,II.1.1,6.44182,TJ,N2O,2.0,kg/TJ,12.88364,Naphtha combustion consumption by freight transport,AR-H,SESCO,annual,kg,72428932-3e48-3ed1-a2a6-d1e8485f397c -2014,Chubut,II.1.1,0.445445,TJ,CO2,73300.0,kg/TJ,32651.118499999997,Naphtha combustion consumption by freight transport,AR-U,SESCO,annual,kg,5a18eb00-fb6f-34df-955f-e59bd0741d0f -2014,Chubut,II.1.1,0.445445,TJ,CH4,0.5,kg/TJ,0.2227225,Naphtha combustion consumption by freight transport,AR-U,SESCO,annual,kg,e22dfeed-0505-301a-8099-1e5f27b62606 -2014,Chubut,II.1.1,0.445445,TJ,N2O,2.0,kg/TJ,0.89089,Naphtha combustion consumption by freight transport,AR-U,SESCO,annual,kg,0af217fd-aeaf-3392-8602-b182bceefce3 -2014,Corrientes,II.1.1,2.87826,TJ,CO2,73300.0,kg/TJ,210976.458,Naphtha combustion consumption by freight transport,AR-W,SESCO,annual,kg,a0cef3fc-16ce-363b-ab40-3e7483d89728 -2014,Corrientes,II.1.1,2.87826,TJ,CH4,0.5,kg/TJ,1.43913,Naphtha combustion consumption by freight transport,AR-W,SESCO,annual,kg,31f55882-68ec-3ccf-a770-f49c84271099 -2014,Corrientes,II.1.1,2.87826,TJ,N2O,2.0,kg/TJ,5.75652,Naphtha combustion consumption by freight transport,AR-W,SESCO,annual,kg,de42019b-1a9f-3dff-9f53-f6aa7d52fe74 -2014,Córdoba,II.1.1,5.311075,TJ,CO2,73300.0,kg/TJ,389301.7975,Naphtha combustion consumption by freight transport,AR-X,SESCO,annual,kg,e49e4ae3-be7a-3a65-8eb5-fe06f05f057e -2014,Córdoba,II.1.1,5.311075,TJ,CH4,0.5,kg/TJ,2.6555375,Naphtha combustion consumption by freight transport,AR-X,SESCO,annual,kg,058baa77-16f1-3940-bdd3-dbdfbd900450 -2014,Córdoba,II.1.1,5.311075,TJ,N2O,2.0,kg/TJ,10.62215,Naphtha combustion consumption by freight transport,AR-X,SESCO,annual,kg,21255f27-f606-3174-b929-bd73c4b32f58 -2014,Entre Rios,II.1.1,2.227225,TJ,CO2,73300.0,kg/TJ,163255.5925,Naphtha combustion consumption by freight transport,AR-E,SESCO,annual,kg,86fe4bf6-aba4-3450-ac71-39965155a0f8 -2014,Entre Rios,II.1.1,2.227225,TJ,CH4,0.5,kg/TJ,1.1136125,Naphtha combustion consumption by freight transport,AR-E,SESCO,annual,kg,279c1029-2dba-31b9-96b4-d1f2c3e2be03 -2014,Entre Rios,II.1.1,2.227225,TJ,N2O,2.0,kg/TJ,4.45445,Naphtha combustion consumption by freight transport,AR-E,SESCO,annual,kg,22735d8e-5cb4-33ac-bbc8-5d4360e1f02e -2014,Jujuy,II.1.1,0.102795,TJ,CO2,73300.0,kg/TJ,7534.8735,Naphtha combustion consumption by freight transport,AR-Y,SESCO,annual,kg,c0a35d70-1613-3b58-b4b6-c55005d5a66d -2014,Jujuy,II.1.1,0.102795,TJ,CH4,0.5,kg/TJ,0.0513975,Naphtha combustion consumption by freight transport,AR-Y,SESCO,annual,kg,4b41d884-ab71-3257-a819-fa7bfec0904a -2014,Jujuy,II.1.1,0.102795,TJ,N2O,2.0,kg/TJ,0.20559,Naphtha combustion consumption by freight transport,AR-Y,SESCO,annual,kg,09b7d9a9-482d-35da-8f95-d797e24fd95a -2014,La Rioja,II.1.1,0.513975,TJ,CO2,73300.0,kg/TJ,37674.3675,Naphtha combustion consumption by freight transport,AR-F,SESCO,annual,kg,cbca8494-cc1b-312d-9772-0ad10864d25d -2014,La Rioja,II.1.1,0.513975,TJ,CH4,0.5,kg/TJ,0.2569875,Naphtha combustion consumption by freight transport,AR-F,SESCO,annual,kg,1d6f2306-0528-34d6-bb2b-8242f40344c9 -2014,La Rioja,II.1.1,0.513975,TJ,N2O,2.0,kg/TJ,1.02795,Naphtha combustion consumption by freight transport,AR-F,SESCO,annual,kg,fe6de47a-e055-3543-b784-6f3c5174ba76 -2014,Mendoza,II.1.1,4.488715,TJ,CO2,73300.0,kg/TJ,329022.8095,Naphtha combustion consumption by freight transport,AR-M,SESCO,annual,kg,7681ca32-4716-35ca-b815-95ad1937cb86 -2014,Mendoza,II.1.1,4.488715,TJ,CH4,0.5,kg/TJ,2.2443575,Naphtha combustion consumption by freight transport,AR-M,SESCO,annual,kg,e8ae4c93-6dac-3f60-9e11-ea29658eb65d -2014,Mendoza,II.1.1,4.488715,TJ,N2O,2.0,kg/TJ,8.97743,Naphtha combustion consumption by freight transport,AR-M,SESCO,annual,kg,c18ae0f0-92c8-392c-978d-4a02262a8496 -2014,Misiones,II.1.1,0.82236,TJ,CO2,73300.0,kg/TJ,60278.988,Naphtha combustion consumption by freight transport,AR-N,SESCO,annual,kg,1946be75-3d35-3805-b012-6bdee3ba5fe8 -2014,Misiones,II.1.1,0.82236,TJ,CH4,0.5,kg/TJ,0.41118,Naphtha combustion consumption by freight transport,AR-N,SESCO,annual,kg,8f876f3c-59be-3539-9317-572b0cf6b7ce -2014,Misiones,II.1.1,0.82236,TJ,N2O,2.0,kg/TJ,1.64472,Naphtha combustion consumption by freight transport,AR-N,SESCO,annual,kg,d9a8d65d-40f6-3fe1-9174-943d9825df66 -2014,Neuquén,II.1.1,0.27412,TJ,CO2,73300.0,kg/TJ,20092.996,Naphtha combustion consumption by freight transport,AR-Q,SESCO,annual,kg,ecf4ece1-9994-33ee-8981-28cd95f1b775 -2014,Neuquén,II.1.1,0.27412,TJ,CH4,0.5,kg/TJ,0.13706,Naphtha combustion consumption by freight transport,AR-Q,SESCO,annual,kg,76db1301-81cc-346a-96de-1724709861df -2014,Neuquén,II.1.1,0.27412,TJ,N2O,2.0,kg/TJ,0.54824,Naphtha combustion consumption by freight transport,AR-Q,SESCO,annual,kg,4332ef23-f1f0-3d0f-b706-50399df2757e -2014,Rio Negro,II.1.1,2.0559,TJ,CO2,73300.0,kg/TJ,150697.47,Naphtha combustion consumption by freight transport,AR-R,SESCO,annual,kg,1fa6d2d3-4e10-3261-af63-0e2a0791d86b -2014,Rio Negro,II.1.1,2.0559,TJ,CH4,0.5,kg/TJ,1.02795,Naphtha combustion consumption by freight transport,AR-R,SESCO,annual,kg,e88ecfea-4755-3928-a7c9-0d5ca7a2f266 -2014,Rio Negro,II.1.1,2.0559,TJ,N2O,2.0,kg/TJ,4.1118,Naphtha combustion consumption by freight transport,AR-R,SESCO,annual,kg,2cd27963-b7dd-32f0-9668-9d1d08b547c0 -2014,Salta,II.1.1,1.09648,TJ,CO2,73300.0,kg/TJ,80371.984,Naphtha combustion consumption by freight transport,AR-A,SESCO,annual,kg,772eebeb-18ae-3880-8ccf-85b60ad61d3f -2014,Salta,II.1.1,1.09648,TJ,CH4,0.5,kg/TJ,0.54824,Naphtha combustion consumption by freight transport,AR-A,SESCO,annual,kg,07ac9c6e-fef7-3e55-b88e-827b174a83b6 -2014,Salta,II.1.1,1.09648,TJ,N2O,2.0,kg/TJ,2.19296,Naphtha combustion consumption by freight transport,AR-A,SESCO,annual,kg,8275dd7a-ac0f-3423-bb67-f18f4ffcb332 -2014,San Luis,II.1.1,0.376915,TJ,CO2,73300.0,kg/TJ,27627.8695,Naphtha combustion consumption by freight transport,AR-D,SESCO,annual,kg,73b2b3e8-e402-30e4-aa20-8a2f5b593491 -2014,San Luis,II.1.1,0.376915,TJ,CH4,0.5,kg/TJ,0.1884575,Naphtha combustion consumption by freight transport,AR-D,SESCO,annual,kg,a5315a90-3247-34bd-b290-957d5017b7df -2014,San Luis,II.1.1,0.376915,TJ,N2O,2.0,kg/TJ,0.75383,Naphtha combustion consumption by freight transport,AR-D,SESCO,annual,kg,4f739b11-b223-3a52-ab5c-abfb16a64e44 -2014,Santa Fe,II.1.1,23.57432,TJ,CO2,73300.0,kg/TJ,1727997.656,Naphtha combustion consumption by freight transport,AR-S,SESCO,annual,kg,4d1ba914-e579-3c46-b283-7b2bc2c3d3c5 -2014,Santa Fe,II.1.1,23.57432,TJ,CH4,0.5,kg/TJ,11.78716,Naphtha combustion consumption by freight transport,AR-S,SESCO,annual,kg,6fdc2454-a7f4-3a45-a7c2-956262cee8d0 -2014,Santa Fe,II.1.1,23.57432,TJ,N2O,2.0,kg/TJ,47.14864,Naphtha combustion consumption by freight transport,AR-S,SESCO,annual,kg,30db3877-864c-349c-a9ca-86497df00deb -2014,Tucuman,II.1.1,0.82236,TJ,CO2,73300.0,kg/TJ,60278.988,Naphtha combustion consumption by freight transport,AR-T,SESCO,annual,kg,3971b665-55aa-3fb8-b83f-bdfbc01e02e7 -2014,Tucuman,II.1.1,0.82236,TJ,CH4,0.5,kg/TJ,0.41118,Naphtha combustion consumption by freight transport,AR-T,SESCO,annual,kg,ff2fff0f-9c65-3c11-bd7a-c1f0d04e30a0 -2014,Tucuman,II.1.1,0.82236,TJ,N2O,2.0,kg/TJ,1.64472,Naphtha combustion consumption by freight transport,AR-T,SESCO,annual,kg,528298f6-6e55-3808-b053-7eb5900f7f3e -2014,Buenos Aires,II.1.1,11235.342719999999,TJ,CO2,74100.0,kg/TJ,832538895.5519999,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,cbe3340b-8af7-31ae-87d2-52856c7650da -2014,Buenos Aires,II.1.1,11235.342719999999,TJ,CH4,3.9,kg/TJ,43817.83660799999,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,03b995b6-c087-3017-82d8-f3d24488bb5e -2014,Buenos Aires,II.1.1,11235.342719999999,TJ,N2O,3.9,kg/TJ,43817.83660799999,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,03b995b6-c087-3017-82d8-f3d24488bb5e -2014,Capital Federal,II.1.1,2645.68164,TJ,CO2,74100.0,kg/TJ,196045009.524,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,03bcfe22-9603-3ff7-bd99-f986a075eeb0 -2014,Capital Federal,II.1.1,2645.68164,TJ,CH4,3.9,kg/TJ,10318.158395999999,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,cf5d88e5-11a7-3c9a-91c3-8c6ece9c4f67 -2014,Capital Federal,II.1.1,2645.68164,TJ,N2O,3.9,kg/TJ,10318.158395999999,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,cf5d88e5-11a7-3c9a-91c3-8c6ece9c4f67 -2014,Catamarca,II.1.1,223.14936,TJ,CO2,74100.0,kg/TJ,16535367.576,Gas Oil combustion consumption by public passenger transport,AR-K,SESCO,annual,kg,44be6cb3-d3b9-3b68-b120-b3d083bd45a4 -2014,Catamarca,II.1.1,223.14936,TJ,CH4,3.9,kg/TJ,870.282504,Gas Oil combustion consumption by public passenger transport,AR-K,SESCO,annual,kg,f297d9df-189c-345e-970b-52c6e349f5a8 -2014,Catamarca,II.1.1,223.14936,TJ,N2O,3.9,kg/TJ,870.282504,Gas Oil combustion consumption by public passenger transport,AR-K,SESCO,annual,kg,f297d9df-189c-345e-970b-52c6e349f5a8 -2014,Chaco,II.1.1,494.30219999999997,TJ,CO2,74100.0,kg/TJ,36627793.019999996,Gas Oil combustion consumption by public passenger transport,AR-H,SESCO,annual,kg,1a72a92d-e621-3aa1-9db8-1d87c2929958 -2014,Chaco,II.1.1,494.30219999999997,TJ,CH4,3.9,kg/TJ,1927.77858,Gas Oil combustion consumption by public passenger transport,AR-H,SESCO,annual,kg,720eb68a-6a83-381d-9067-0b9897108935 -2014,Chaco,II.1.1,494.30219999999997,TJ,N2O,3.9,kg/TJ,1927.77858,Gas Oil combustion consumption by public passenger transport,AR-H,SESCO,annual,kg,720eb68a-6a83-381d-9067-0b9897108935 -2014,Chubut,II.1.1,100.73868,TJ,CO2,74100.0,kg/TJ,7464736.188,Gas Oil combustion consumption by public passenger transport,AR-U,SESCO,annual,kg,3eaf7117-864d-3285-8580-3a4d7b22ae32 -2014,Chubut,II.1.1,100.73868,TJ,CH4,3.9,kg/TJ,392.880852,Gas Oil combustion consumption by public passenger transport,AR-U,SESCO,annual,kg,473abd1e-440a-3cb8-98f4-a203a199e0de -2014,Chubut,II.1.1,100.73868,TJ,N2O,3.9,kg/TJ,392.880852,Gas Oil combustion consumption by public passenger transport,AR-U,SESCO,annual,kg,473abd1e-440a-3cb8-98f4-a203a199e0de -2014,Corrientes,II.1.1,508.06392,TJ,CO2,74100.0,kg/TJ,37647536.472,Gas Oil combustion consumption by public passenger transport,AR-W,SESCO,annual,kg,bda5e1d6-d602-3d18-98cf-6507f8645c10 -2014,Corrientes,II.1.1,508.06392,TJ,CH4,3.9,kg/TJ,1981.449288,Gas Oil combustion consumption by public passenger transport,AR-W,SESCO,annual,kg,788d6631-3e68-35ae-9507-a1f8edfea361 -2014,Corrientes,II.1.1,508.06392,TJ,N2O,3.9,kg/TJ,1981.449288,Gas Oil combustion consumption by public passenger transport,AR-W,SESCO,annual,kg,788d6631-3e68-35ae-9507-a1f8edfea361 -2014,Córdoba,II.1.1,1711.04052,TJ,CO2,74100.0,kg/TJ,126788102.532,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,8453448d-9719-3227-9ada-3f49f72e12d0 -2014,Córdoba,II.1.1,1711.04052,TJ,CH4,3.9,kg/TJ,6673.0580279999995,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,9c3f4855-4b50-3cc4-a6c0-70d001be2aea -2014,Córdoba,II.1.1,1711.04052,TJ,N2O,3.9,kg/TJ,6673.0580279999995,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,9c3f4855-4b50-3cc4-a6c0-70d001be2aea -2014,Entre Rios,II.1.1,480.10704,TJ,CO2,74100.0,kg/TJ,35575931.664,Gas Oil combustion consumption by public passenger transport,AR-E,SESCO,annual,kg,2a7555cf-16d5-3ec7-8092-5d8297b5bd06 -2014,Entre Rios,II.1.1,480.10704,TJ,CH4,3.9,kg/TJ,1872.417456,Gas Oil combustion consumption by public passenger transport,AR-E,SESCO,annual,kg,b469a6d7-8179-3270-94e6-31caaf781b42 -2014,Entre Rios,II.1.1,480.10704,TJ,N2O,3.9,kg/TJ,1872.417456,Gas Oil combustion consumption by public passenger transport,AR-E,SESCO,annual,kg,b469a6d7-8179-3270-94e6-31caaf781b42 -2014,Formosa,II.1.1,57.286319999999996,TJ,CO2,74100.0,kg/TJ,4244916.312,Gas Oil combustion consumption by public passenger transport,AR-P,SESCO,annual,kg,cc5461e5-bb13-3a5a-83ee-008ad5f57e50 -2014,Formosa,II.1.1,57.286319999999996,TJ,CH4,3.9,kg/TJ,223.41664799999998,Gas Oil combustion consumption by public passenger transport,AR-P,SESCO,annual,kg,06162153-ed97-3e3a-ba45-1cfd9bdcdd0b -2014,Formosa,II.1.1,57.286319999999996,TJ,N2O,3.9,kg/TJ,223.41664799999998,Gas Oil combustion consumption by public passenger transport,AR-P,SESCO,annual,kg,06162153-ed97-3e3a-ba45-1cfd9bdcdd0b -2014,Jujuy,II.1.1,593.70444,TJ,CO2,74100.0,kg/TJ,43993499.004,Gas Oil combustion consumption by public passenger transport,AR-Y,SESCO,annual,kg,225b9ba3-cd66-3be1-b2f3-e52c40817a57 -2014,Jujuy,II.1.1,593.70444,TJ,CH4,3.9,kg/TJ,2315.447316,Gas Oil combustion consumption by public passenger transport,AR-Y,SESCO,annual,kg,40605e94-ab88-3a3f-aefc-92514b75ab3e -2014,Jujuy,II.1.1,593.70444,TJ,N2O,3.9,kg/TJ,2315.447316,Gas Oil combustion consumption by public passenger transport,AR-Y,SESCO,annual,kg,40605e94-ab88-3a3f-aefc-92514b75ab3e -2014,La Pampa,II.1.1,46.305839999999996,TJ,CO2,74100.0,kg/TJ,3431262.744,Gas Oil combustion consumption by public passenger transport,AR-L,SESCO,annual,kg,5d4a10a0-6ec9-351b-8468-ddc790007e72 -2014,La Pampa,II.1.1,46.305839999999996,TJ,CH4,3.9,kg/TJ,180.592776,Gas Oil combustion consumption by public passenger transport,AR-L,SESCO,annual,kg,f125b067-65dc-3082-8e4e-a7ea66bdd996 -2014,La Pampa,II.1.1,46.305839999999996,TJ,N2O,3.9,kg/TJ,180.592776,Gas Oil combustion consumption by public passenger transport,AR-L,SESCO,annual,kg,f125b067-65dc-3082-8e4e-a7ea66bdd996 -2014,La Rioja,II.1.1,116.05355999999999,TJ,CO2,74100.0,kg/TJ,8599568.796,Gas Oil combustion consumption by public passenger transport,AR-F,SESCO,annual,kg,eff673cf-972c-35d6-9dd8-d90018b3c607 -2014,La Rioja,II.1.1,116.05355999999999,TJ,CH4,3.9,kg/TJ,452.60888399999993,Gas Oil combustion consumption by public passenger transport,AR-F,SESCO,annual,kg,42ce460a-f1ac-3929-9b2b-295c83c7f6c6 -2014,La Rioja,II.1.1,116.05355999999999,TJ,N2O,3.9,kg/TJ,452.60888399999993,Gas Oil combustion consumption by public passenger transport,AR-F,SESCO,annual,kg,42ce460a-f1ac-3929-9b2b-295c83c7f6c6 -2014,Mendoza,II.1.1,1788.01224,TJ,CO2,74100.0,kg/TJ,132491706.984,Gas Oil combustion consumption by public passenger transport,AR-M,SESCO,annual,kg,f978975a-45b7-3841-aa04-00467869815d -2014,Mendoza,II.1.1,1788.01224,TJ,CH4,3.9,kg/TJ,6973.247736,Gas Oil combustion consumption by public passenger transport,AR-M,SESCO,annual,kg,c7f29ef9-ebc6-348e-a9bc-5239fd22bf53 -2014,Mendoza,II.1.1,1788.01224,TJ,N2O,3.9,kg/TJ,6973.247736,Gas Oil combustion consumption by public passenger transport,AR-M,SESCO,annual,kg,c7f29ef9-ebc6-348e-a9bc-5239fd22bf53 -2014,Misiones,II.1.1,1015.3331999999999,TJ,CO2,74100.0,kg/TJ,75236190.11999999,Gas Oil combustion consumption by public passenger transport,AR-N,SESCO,annual,kg,294f791c-ad16-35a5-baac-8042399ba5cb -2014,Misiones,II.1.1,1015.3331999999999,TJ,CH4,3.9,kg/TJ,3959.7994799999997,Gas Oil combustion consumption by public passenger transport,AR-N,SESCO,annual,kg,07418302-eeea-34b5-959a-6959cbe1d318 -2014,Misiones,II.1.1,1015.3331999999999,TJ,N2O,3.9,kg/TJ,3959.7994799999997,Gas Oil combustion consumption by public passenger transport,AR-N,SESCO,annual,kg,07418302-eeea-34b5-959a-6959cbe1d318 -2014,Neuquén,II.1.1,319.15632,TJ,CO2,74100.0,kg/TJ,23649483.312,Gas Oil combustion consumption by public passenger transport,AR-Q,SESCO,annual,kg,697aeb24-a7aa-3242-9690-d7fec083b446 -2014,Neuquén,II.1.1,319.15632,TJ,CH4,3.9,kg/TJ,1244.709648,Gas Oil combustion consumption by public passenger transport,AR-Q,SESCO,annual,kg,77b2f118-74db-3865-9a84-f76a8f2df622 -2014,Neuquén,II.1.1,319.15632,TJ,N2O,3.9,kg/TJ,1244.709648,Gas Oil combustion consumption by public passenger transport,AR-Q,SESCO,annual,kg,77b2f118-74db-3865-9a84-f76a8f2df622 -2014,Rio Negro,II.1.1,379.26,TJ,CO2,74100.0,kg/TJ,28103166.0,Gas Oil combustion consumption by public passenger transport,AR-R,SESCO,annual,kg,a8229873-fa83-34f5-82ac-833c4169c8da -2014,Rio Negro,II.1.1,379.26,TJ,CH4,3.9,kg/TJ,1479.114,Gas Oil combustion consumption by public passenger transport,AR-R,SESCO,annual,kg,3a340795-4de5-3ff4-9f37-9fe1f4461de1 -2014,Rio Negro,II.1.1,379.26,TJ,N2O,3.9,kg/TJ,1479.114,Gas Oil combustion consumption by public passenger transport,AR-R,SESCO,annual,kg,3a340795-4de5-3ff4-9f37-9fe1f4461de1 -2014,Salta,II.1.1,870.45588,TJ,CO2,74100.0,kg/TJ,64500780.708,Gas Oil combustion consumption by public passenger transport,AR-A,SESCO,annual,kg,0dc82f1e-f2d6-39e4-a221-b0e37bb28ced -2014,Salta,II.1.1,870.45588,TJ,CH4,3.9,kg/TJ,3394.777932,Gas Oil combustion consumption by public passenger transport,AR-A,SESCO,annual,kg,0a11788d-470b-34fd-8eb1-6c98e840b646 -2014,Salta,II.1.1,870.45588,TJ,N2O,3.9,kg/TJ,3394.777932,Gas Oil combustion consumption by public passenger transport,AR-A,SESCO,annual,kg,0a11788d-470b-34fd-8eb1-6c98e840b646 -2014,San Juan,II.1.1,510.48395999999997,TJ,CO2,74100.0,kg/TJ,37826861.436,Gas Oil combustion consumption by public passenger transport,AR-J,SESCO,annual,kg,817f8383-ecf7-326d-aba7-4d69199710ac -2014,San Juan,II.1.1,510.48395999999997,TJ,CH4,3.9,kg/TJ,1990.8874439999997,Gas Oil combustion consumption by public passenger transport,AR-J,SESCO,annual,kg,cb25d470-5e36-38de-8d75-2076ccff115a -2014,San Juan,II.1.1,510.48395999999997,TJ,N2O,3.9,kg/TJ,1990.8874439999997,Gas Oil combustion consumption by public passenger transport,AR-J,SESCO,annual,kg,cb25d470-5e36-38de-8d75-2076ccff115a -2014,San Luis,II.1.1,181.03343999999998,TJ,CO2,74100.0,kg/TJ,13414577.904,Gas Oil combustion consumption by public passenger transport,AR-D,SESCO,annual,kg,65f575b6-c875-350e-b5a8-cc8c46219e1a -2014,San Luis,II.1.1,181.03343999999998,TJ,CH4,3.9,kg/TJ,706.030416,Gas Oil combustion consumption by public passenger transport,AR-D,SESCO,annual,kg,9b018a2f-615c-375f-b595-d0e1d5df5558 -2014,San Luis,II.1.1,181.03343999999998,TJ,N2O,3.9,kg/TJ,706.030416,Gas Oil combustion consumption by public passenger transport,AR-D,SESCO,annual,kg,9b018a2f-615c-375f-b595-d0e1d5df5558 -2014,Santa Cruz,II.1.1,56.05824,TJ,CO2,74100.0,kg/TJ,4153915.584,Gas Oil combustion consumption by public passenger transport,AR-Z,SESCO,annual,kg,a8762057-20c2-3b90-ba4c-e1ffc7cbfd81 -2014,Santa Cruz,II.1.1,56.05824,TJ,CH4,3.9,kg/TJ,218.62713599999998,Gas Oil combustion consumption by public passenger transport,AR-Z,SESCO,annual,kg,5764f3c0-ad1e-3858-87ab-71655ac247ad -2014,Santa Cruz,II.1.1,56.05824,TJ,N2O,3.9,kg/TJ,218.62713599999998,Gas Oil combustion consumption by public passenger transport,AR-Z,SESCO,annual,kg,5764f3c0-ad1e-3858-87ab-71655ac247ad -2014,Santa Fe,II.1.1,1939.75236,TJ,CO2,74100.0,kg/TJ,143735649.876,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,9b06fa8a-a36e-319c-a8bc-e5d2b190d5ad -2014,Santa Fe,II.1.1,1939.75236,TJ,CH4,3.9,kg/TJ,7565.034204,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,ad7c7505-d163-3d43-b02e-539eb659cb41 -2014,Santa Fe,II.1.1,1939.75236,TJ,N2O,3.9,kg/TJ,7565.034204,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,ad7c7505-d163-3d43-b02e-539eb659cb41 -2014,Santiago del Estero,II.1.1,248.72232,TJ,CO2,74100.0,kg/TJ,18430323.912,Gas Oil combustion consumption by public passenger transport,AR-G,SESCO,annual,kg,50b330db-ac0f-332a-8918-d22226c2d07c -2014,Santiago del Estero,II.1.1,248.72232,TJ,CH4,3.9,kg/TJ,970.0170479999999,Gas Oil combustion consumption by public passenger transport,AR-G,SESCO,annual,kg,95df6410-4dd1-3e37-9916-a4d9bbb7fa48 -2014,Santiago del Estero,II.1.1,248.72232,TJ,N2O,3.9,kg/TJ,970.0170479999999,Gas Oil combustion consumption by public passenger transport,AR-G,SESCO,annual,kg,95df6410-4dd1-3e37-9916-a4d9bbb7fa48 -2014,Tierra del Fuego,II.1.1,20.11884,TJ,CO2,74100.0,kg/TJ,1490806.044,Gas Oil combustion consumption by public passenger transport,AR-V,SESCO,annual,kg,ff8c831c-f256-385f-a8fe-969a55943f0c -2014,Tierra del Fuego,II.1.1,20.11884,TJ,CH4,3.9,kg/TJ,78.463476,Gas Oil combustion consumption by public passenger transport,AR-V,SESCO,annual,kg,48adf1e0-37dc-3a48-a717-78448c335e3b -2014,Tierra del Fuego,II.1.1,20.11884,TJ,N2O,3.9,kg/TJ,78.463476,Gas Oil combustion consumption by public passenger transport,AR-V,SESCO,annual,kg,48adf1e0-37dc-3a48-a717-78448c335e3b -2014,Tucuman,II.1.1,1330.94976,TJ,CO2,74100.0,kg/TJ,98623377.21599999,Gas Oil combustion consumption by public passenger transport,AR-T,SESCO,annual,kg,8b2b0f0e-b4d1-34d0-a4ee-5e5fbb62e942 -2014,Tucuman,II.1.1,1330.94976,TJ,CH4,3.9,kg/TJ,5190.704064,Gas Oil combustion consumption by public passenger transport,AR-T,SESCO,annual,kg,47b93f9a-9907-3ab9-92bb-5cdefb20ce5d -2014,Tucuman,II.1.1,1330.94976,TJ,N2O,3.9,kg/TJ,5190.704064,Gas Oil combustion consumption by public passenger transport,AR-T,SESCO,annual,kg,47b93f9a-9907-3ab9-92bb-5cdefb20ce5d -2014,Buenos Aires,II.1.1,0.20559,TJ,CO2,73300.0,kg/TJ,15069.747,Naphtha combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,0a926f9b-f281-34dc-af94-dff7aee59184 -2014,Buenos Aires,II.1.1,0.20559,TJ,CH4,0.5,kg/TJ,0.102795,Naphtha combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,4015fcd6-d637-3e30-8799-90d64c31ab6f -2014,Buenos Aires,II.1.1,0.20559,TJ,N2O,2.0,kg/TJ,0.41118,Naphtha combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,b7bae74b-2337-3a40-9f2d-f3b1dfec6d6c -2015,Buenos Aires,II.5.1,179.44415999999998,TJ,CO2,74100.0,kg/TJ,13296812.256,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,02a6121a-8be9-3e1e-ba92-d3abb703a3e1 -2015,Buenos Aires,II.5.1,179.44415999999998,TJ,CH4,3.9,kg/TJ,699.8322239999999,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,4573bde2-184a-3af7-b221-818334544382 -2015,Buenos Aires,II.5.1,179.44415999999998,TJ,N2O,3.9,kg/TJ,699.8322239999999,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,4573bde2-184a-3af7-b221-818334544382 -2015,Córdoba,II.5.1,31.85784,TJ,CO2,74100.0,kg/TJ,2360665.944,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,d64a373e-d09a-36f5-b773-16e836409b0b -2015,Córdoba,II.5.1,31.85784,TJ,CH4,3.9,kg/TJ,124.245576,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,c13b6166-12d7-3211-b9fb-78f520020451 -2015,Córdoba,II.5.1,31.85784,TJ,N2O,3.9,kg/TJ,124.245576,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,c13b6166-12d7-3211-b9fb-78f520020451 -2015,Santa Fe,II.5.1,515.7936,TJ,CO2,74100.0,kg/TJ,38220305.76,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,49d8436e-be9e-393f-8a79-dce4c2611301 -2015,Santa Fe,II.5.1,515.7936,TJ,CH4,3.9,kg/TJ,2011.59504,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,f8faf169-42c1-3bef-b7e2-0e7bad11b127 -2015,Santa Fe,II.5.1,515.7936,TJ,N2O,3.9,kg/TJ,2011.59504,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,f8faf169-42c1-3bef-b7e2-0e7bad11b127 -2015,Buenos Aires,II.5.1,1.37256,TJ,CO2,74100.0,kg/TJ,101706.696,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,2a8ecce2-24f2-3af9-8d93-71f89e5670ce -2015,Buenos Aires,II.5.1,1.37256,TJ,CH4,3.9,kg/TJ,5.352984,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,b977c5ab-fc6f-3a41-9ccb-0023b3f2f337 -2015,Buenos Aires,II.5.1,1.37256,TJ,N2O,3.9,kg/TJ,5.352984,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,b977c5ab-fc6f-3a41-9ccb-0023b3f2f337 -2015,Córdoba,II.5.1,6.2126399999999995,TJ,CO2,74100.0,kg/TJ,460356.62399999995,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,e852951c-6371-3299-a5b8-ecb768fb4112 -2015,Córdoba,II.5.1,6.2126399999999995,TJ,CH4,3.9,kg/TJ,24.229295999999998,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,8e1fa45e-7d7c-32a9-8988-a2bf4b03ee07 -2015,Córdoba,II.5.1,6.2126399999999995,TJ,N2O,3.9,kg/TJ,24.229295999999998,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,8e1fa45e-7d7c-32a9-8988-a2bf4b03ee07 -2015,Santa Fe,II.5.1,15.314879999999999,TJ,CO2,74100.0,kg/TJ,1134832.608,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,e4afd0db-b098-3f2b-9058-54bff095ceb8 -2015,Santa Fe,II.5.1,15.314879999999999,TJ,CH4,3.9,kg/TJ,59.72803199999999,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,76b094d7-1f65-3e40-8751-5113144a7045 -2015,Santa Fe,II.5.1,15.314879999999999,TJ,N2O,3.9,kg/TJ,59.72803199999999,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,76b094d7-1f65-3e40-8751-5113144a7045 -2015,Tucuman,II.5.1,0.5418,TJ,CO2,74100.0,kg/TJ,40147.38,Gas Oil combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,696849a8-04f9-3155-9506-a0bfd5e492af -2015,Tucuman,II.5.1,0.5418,TJ,CH4,3.9,kg/TJ,2.1130199999999997,Gas Oil combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,a5a69524-0532-399a-865a-dd8f5dc17583 -2015,Tucuman,II.5.1,0.5418,TJ,N2O,3.9,kg/TJ,2.1130199999999997,Gas Oil combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,a5a69524-0532-399a-865a-dd8f5dc17583 -2015,Córdoba,II.5.1,7.435505,TJ,CO2,73300.0,kg/TJ,545022.5165,Naphtha combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,395ee2bd-0e47-366b-94ee-0a6187135be5 -2015,Córdoba,II.5.1,7.435505,TJ,CH4,0.5,kg/TJ,3.7177525,Naphtha combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,535caf3b-4b34-309b-8e91-60ee567b3925 -2015,Córdoba,II.5.1,7.435505,TJ,N2O,2.0,kg/TJ,14.87101,Naphtha combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,fb585e6f-a6a4-3d48-9916-113d719623e4 -2015,Santa Fe,II.5.1,18.84575,TJ,CO2,73300.0,kg/TJ,1381393.4749999999,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,1619badb-cd37-300d-a984-7777e2d7a0d9 -2015,Santa Fe,II.5.1,18.84575,TJ,CH4,0.5,kg/TJ,9.422875,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,3b825835-2203-36f1-b76c-f62c30e4849a -2015,Santa Fe,II.5.1,18.84575,TJ,N2O,2.0,kg/TJ,37.6915,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,9c654a0f-9ee9-35ef-a569-e6d008e4aa23 -2015,Córdoba,II.5.1,3.70062,TJ,CO2,73300.0,kg/TJ,271255.446,Naphtha combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,a86fb9f3-67a4-30d0-a7a7-460e20b2b5b9 -2015,Córdoba,II.5.1,3.70062,TJ,CH4,0.5,kg/TJ,1.85031,Naphtha combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,10113b9a-7ef8-3319-8dc1-c6665cf0ef65 -2015,Córdoba,II.5.1,3.70062,TJ,N2O,2.0,kg/TJ,7.40124,Naphtha combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,b2df19c4-1cc3-3838-84af-f0a8c819d032 -2015,Santa Fe,II.5.1,6.750204999999999,TJ,CO2,73300.0,kg/TJ,494790.0265,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,2aaf9801-3bc9-3d23-85d9-693fd875d00e -2015,Santa Fe,II.5.1,6.750204999999999,TJ,CH4,0.5,kg/TJ,3.3751024999999997,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,b3db06b2-6336-3655-9377-0f8c3a189443 -2015,Santa Fe,II.5.1,6.750204999999999,TJ,N2O,2.0,kg/TJ,13.500409999999999,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,139973e6-96bf-3712-a026-02d07e6447d9 -2015,Córdoba,II.2.1,0.07224,TJ,CO2,74100.0,kg/TJ,5352.9839999999995,Gas Oil combustion consumption by railway transport,AR-X,SESCO,annual,kg,37be43c4-8176-3b0e-9579-257619e1f5e5 -2015,Córdoba,II.2.1,0.07224,TJ,CH4,3.9,kg/TJ,0.281736,Gas Oil combustion consumption by railway transport,AR-X,SESCO,annual,kg,e6d994ac-cda9-3133-9b60-8151e401d716 -2015,Córdoba,II.2.1,0.07224,TJ,N2O,3.9,kg/TJ,0.281736,Gas Oil combustion consumption by railway transport,AR-X,SESCO,annual,kg,e6d994ac-cda9-3133-9b60-8151e401d716 -2015,Entre Rios,II.2.1,0.14448,TJ,CO2,74100.0,kg/TJ,10705.967999999999,Gas Oil combustion consumption by railway transport,AR-E,SESCO,annual,kg,380f8ddf-b831-3f43-b66f-14209617dd30 -2015,Entre Rios,II.2.1,0.14448,TJ,CH4,3.9,kg/TJ,0.563472,Gas Oil combustion consumption by railway transport,AR-E,SESCO,annual,kg,dccf72ba-6fb8-32ac-a466-11f9b0fcb44c -2015,Entre Rios,II.2.1,0.14448,TJ,N2O,3.9,kg/TJ,0.563472,Gas Oil combustion consumption by railway transport,AR-E,SESCO,annual,kg,dccf72ba-6fb8-32ac-a466-11f9b0fcb44c -2015,Buenos Aires,II.1.1,1416.1554457680002,TJ,CO2,74100.0,kg/TJ,104937118.53140882,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,3cc1f91d-c0d3-3c2d-bab2-ef8122da4b0d -2015,Buenos Aires,II.1.1,1416.1554457680002,TJ,CH4,3.9,kg/TJ,5523.006238495201,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,6f9898ac-7896-349b-8df8-ad254d3735d5 -2015,Buenos Aires,II.1.1,1416.1554457680002,TJ,N2O,3.9,kg/TJ,5523.006238495201,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,6f9898ac-7896-349b-8df8-ad254d3735d5 -2015,Capital Federal,II.1.1,177.612876,TJ,CO2,74100.0,kg/TJ,13161114.1116,Gas Oil combustion consumption by freight transport,AR-C,SESCO,annual,kg,c5969ba8-8286-322b-96af-a9b8a9ed6a52 -2015,Capital Federal,II.1.1,177.612876,TJ,CH4,3.9,kg/TJ,692.6902163999999,Gas Oil combustion consumption by freight transport,AR-C,SESCO,annual,kg,1ce6640b-a972-3782-8d0c-1b62c03fc286 -2015,Capital Federal,II.1.1,177.612876,TJ,N2O,3.9,kg/TJ,692.6902163999999,Gas Oil combustion consumption by freight transport,AR-C,SESCO,annual,kg,1ce6640b-a972-3782-8d0c-1b62c03fc286 -2015,Catamarca,II.1.1,38.720639999999996,TJ,CO2,74100.0,kg/TJ,2869199.4239999996,Gas Oil combustion consumption by freight transport,AR-K,SESCO,annual,kg,5a4b0d73-54cd-3eb0-aaef-91e1a6462d96 -2015,Catamarca,II.1.1,38.720639999999996,TJ,CH4,3.9,kg/TJ,151.010496,Gas Oil combustion consumption by freight transport,AR-K,SESCO,annual,kg,67125f53-f364-3fe3-b7ec-f30c657c65d3 -2015,Catamarca,II.1.1,38.720639999999996,TJ,N2O,3.9,kg/TJ,151.010496,Gas Oil combustion consumption by freight transport,AR-K,SESCO,annual,kg,67125f53-f364-3fe3-b7ec-f30c657c65d3 -2015,Chubut,II.1.1,1.58928,TJ,CO2,74100.0,kg/TJ,117765.648,Gas Oil combustion consumption by freight transport,AR-U,SESCO,annual,kg,4707bcbb-5e01-3e73-ac9b-f21650771f95 -2015,Chubut,II.1.1,1.58928,TJ,CH4,3.9,kg/TJ,6.198192,Gas Oil combustion consumption by freight transport,AR-U,SESCO,annual,kg,6030dc85-974f-33a8-8a07-ffe998897e43 -2015,Chubut,II.1.1,1.58928,TJ,N2O,3.9,kg/TJ,6.198192,Gas Oil combustion consumption by freight transport,AR-U,SESCO,annual,kg,6030dc85-974f-33a8-8a07-ffe998897e43 -2015,Corrientes,II.1.1,98.39088,TJ,CO2,74100.0,kg/TJ,7290764.208,Gas Oil combustion consumption by freight transport,AR-W,SESCO,annual,kg,b54a4d8e-7ec3-36ad-97c8-5ffe8d3a92a7 -2015,Corrientes,II.1.1,98.39088,TJ,CH4,3.9,kg/TJ,383.724432,Gas Oil combustion consumption by freight transport,AR-W,SESCO,annual,kg,45e3fbc7-4fb2-3020-b1f3-d94f93fcfbae -2015,Corrientes,II.1.1,98.39088,TJ,N2O,3.9,kg/TJ,383.724432,Gas Oil combustion consumption by freight transport,AR-W,SESCO,annual,kg,45e3fbc7-4fb2-3020-b1f3-d94f93fcfbae -2015,Córdoba,II.1.1,126.6006,TJ,CO2,74100.0,kg/TJ,9381104.46,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,59538005-d4ed-3102-bfd3-cf13f9db6d4f -2015,Córdoba,II.1.1,126.6006,TJ,CH4,3.9,kg/TJ,493.74234,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,ea3bc380-22d7-360f-bfbe-e4479dfe00ca -2015,Córdoba,II.1.1,126.6006,TJ,N2O,3.9,kg/TJ,493.74234,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,ea3bc380-22d7-360f-bfbe-e4479dfe00ca -2015,Entre Rios,II.1.1,89.83044,TJ,CO2,74100.0,kg/TJ,6656435.603999999,Gas Oil combustion consumption by freight transport,AR-E,SESCO,annual,kg,e02aff79-b181-3812-8f8e-9ee31f0136a1 -2015,Entre Rios,II.1.1,89.83044,TJ,CH4,3.9,kg/TJ,350.338716,Gas Oil combustion consumption by freight transport,AR-E,SESCO,annual,kg,68348863-e41d-3181-884a-29b7c030e3a9 -2015,Entre Rios,II.1.1,89.83044,TJ,N2O,3.9,kg/TJ,350.338716,Gas Oil combustion consumption by freight transport,AR-E,SESCO,annual,kg,68348863-e41d-3181-884a-29b7c030e3a9 -2015,Formosa,II.1.1,4.47888,TJ,CO2,74100.0,kg/TJ,331885.00800000003,Gas Oil combustion consumption by freight transport,AR-P,SESCO,annual,kg,fabc7f5d-ccb0-35bf-964e-527bf1fc4d0d -2015,Formosa,II.1.1,4.47888,TJ,CH4,3.9,kg/TJ,17.467632000000002,Gas Oil combustion consumption by freight transport,AR-P,SESCO,annual,kg,4a8e33ab-3db1-364b-8856-e667be5954e5 -2015,Formosa,II.1.1,4.47888,TJ,N2O,3.9,kg/TJ,17.467632000000002,Gas Oil combustion consumption by freight transport,AR-P,SESCO,annual,kg,4a8e33ab-3db1-364b-8856-e667be5954e5 -2015,La Pampa,II.1.1,19.721519999999998,TJ,CO2,74100.0,kg/TJ,1461364.6319999998,Gas Oil combustion consumption by freight transport,AR-L,SESCO,annual,kg,1087d05b-0aed-3061-9158-9cecb0e89b85 -2015,La Pampa,II.1.1,19.721519999999998,TJ,CH4,3.9,kg/TJ,76.91392799999998,Gas Oil combustion consumption by freight transport,AR-L,SESCO,annual,kg,d87eb64a-f252-3ff8-b893-3789951916d5 -2015,La Pampa,II.1.1,19.721519999999998,TJ,N2O,3.9,kg/TJ,76.91392799999998,Gas Oil combustion consumption by freight transport,AR-L,SESCO,annual,kg,d87eb64a-f252-3ff8-b893-3789951916d5 -2015,Mendoza,II.1.1,22.82784,TJ,CO2,74100.0,kg/TJ,1691542.944,Gas Oil combustion consumption by freight transport,AR-M,SESCO,annual,kg,15753383-3d82-3222-925e-2b6fe899c208 -2015,Mendoza,II.1.1,22.82784,TJ,CH4,3.9,kg/TJ,89.02857599999999,Gas Oil combustion consumption by freight transport,AR-M,SESCO,annual,kg,63eeb02e-ba53-3e1d-8813-bf298c45fef2 -2015,Mendoza,II.1.1,22.82784,TJ,N2O,3.9,kg/TJ,89.02857599999999,Gas Oil combustion consumption by freight transport,AR-M,SESCO,annual,kg,63eeb02e-ba53-3e1d-8813-bf298c45fef2 -2015,Misiones,II.1.1,17.40984,TJ,CO2,74100.0,kg/TJ,1290069.1439999999,Gas Oil combustion consumption by freight transport,AR-N,SESCO,annual,kg,52341a90-c811-3f28-b114-b162114262ad -2015,Misiones,II.1.1,17.40984,TJ,CH4,3.9,kg/TJ,67.898376,Gas Oil combustion consumption by freight transport,AR-N,SESCO,annual,kg,41cf6dfc-9ebc-3a18-8fcd-a643470f9002 -2015,Misiones,II.1.1,17.40984,TJ,N2O,3.9,kg/TJ,67.898376,Gas Oil combustion consumption by freight transport,AR-N,SESCO,annual,kg,41cf6dfc-9ebc-3a18-8fcd-a643470f9002 -2015,Rio Negro,II.1.1,71.62595999999999,TJ,CO2,74100.0,kg/TJ,5307483.635999999,Gas Oil combustion consumption by freight transport,AR-R,SESCO,annual,kg,55740a7a-c668-395f-959e-c8e35f4e65ff -2015,Rio Negro,II.1.1,71.62595999999999,TJ,CH4,3.9,kg/TJ,279.34124399999996,Gas Oil combustion consumption by freight transport,AR-R,SESCO,annual,kg,c846a224-6648-38a9-8d04-1d39ce0976b1 -2015,Rio Negro,II.1.1,71.62595999999999,TJ,N2O,3.9,kg/TJ,279.34124399999996,Gas Oil combustion consumption by freight transport,AR-R,SESCO,annual,kg,c846a224-6648-38a9-8d04-1d39ce0976b1 -2015,San Juan,II.1.1,23.04456,TJ,CO2,74100.0,kg/TJ,1707601.896,Gas Oil combustion consumption by freight transport,AR-J,SESCO,annual,kg,37a1ce93-86ee-32e9-b3e8-8cef44bd14eb -2015,San Juan,II.1.1,23.04456,TJ,CH4,3.9,kg/TJ,89.873784,Gas Oil combustion consumption by freight transport,AR-J,SESCO,annual,kg,04a2373e-c7be-317c-9f09-09a0a1b56204 -2015,San Juan,II.1.1,23.04456,TJ,N2O,3.9,kg/TJ,89.873784,Gas Oil combustion consumption by freight transport,AR-J,SESCO,annual,kg,04a2373e-c7be-317c-9f09-09a0a1b56204 -2015,San Luis,II.1.1,105.2898,TJ,CO2,74100.0,kg/TJ,7801974.18,Gas Oil combustion consumption by freight transport,AR-D,SESCO,annual,kg,d3d14057-dd88-3b3f-9abf-49b3a393c82a -2015,San Luis,II.1.1,105.2898,TJ,CH4,3.9,kg/TJ,410.63022,Gas Oil combustion consumption by freight transport,AR-D,SESCO,annual,kg,180d5089-4909-377a-99f9-e053d23d5bc7 -2015,San Luis,II.1.1,105.2898,TJ,N2O,3.9,kg/TJ,410.63022,Gas Oil combustion consumption by freight transport,AR-D,SESCO,annual,kg,180d5089-4909-377a-99f9-e053d23d5bc7 -2015,Santa Fe,II.1.1,690.21708,TJ,CO2,74100.0,kg/TJ,51145085.628,Gas Oil combustion consumption by freight transport,AR-S,SESCO,annual,kg,6c87e082-c3b0-33d3-bc78-2a90bdd4f601 -2015,Santa Fe,II.1.1,690.21708,TJ,CH4,3.9,kg/TJ,2691.846612,Gas Oil combustion consumption by freight transport,AR-S,SESCO,annual,kg,a7da7141-3e6f-3fdf-a636-f2970cab892c -2015,Santa Fe,II.1.1,690.21708,TJ,N2O,3.9,kg/TJ,2691.846612,Gas Oil combustion consumption by freight transport,AR-S,SESCO,annual,kg,a7da7141-3e6f-3fdf-a636-f2970cab892c -2015,Santiago del Estero,II.1.1,12.20856,TJ,CO2,74100.0,kg/TJ,904654.296,Gas Oil combustion consumption by freight transport,AR-G,SESCO,annual,kg,ffc62ae8-46f9-3eea-ab9f-e3d5f3aef805 -2015,Santiago del Estero,II.1.1,12.20856,TJ,CH4,3.9,kg/TJ,47.613384,Gas Oil combustion consumption by freight transport,AR-G,SESCO,annual,kg,1955350b-c554-3a95-bc68-9d2d5eb7be10 -2015,Santiago del Estero,II.1.1,12.20856,TJ,N2O,3.9,kg/TJ,47.613384,Gas Oil combustion consumption by freight transport,AR-G,SESCO,annual,kg,1955350b-c554-3a95-bc68-9d2d5eb7be10 -2015,Tucuman,II.1.1,36.58956,TJ,CO2,74100.0,kg/TJ,2711286.3959999997,Gas Oil combustion consumption by freight transport,AR-T,SESCO,annual,kg,af1b120c-2d34-350c-b4ed-6710363d76f5 -2015,Tucuman,II.1.1,36.58956,TJ,CH4,3.9,kg/TJ,142.699284,Gas Oil combustion consumption by freight transport,AR-T,SESCO,annual,kg,93601f58-0bbe-3f56-83eb-c79bb22fdcfa -2015,Tucuman,II.1.1,36.58956,TJ,N2O,3.9,kg/TJ,142.699284,Gas Oil combustion consumption by freight transport,AR-T,SESCO,annual,kg,93601f58-0bbe-3f56-83eb-c79bb22fdcfa -2015,Buenos Aires,II.1.1,54.324479999999994,TJ,CO2,74100.0,kg/TJ,4025443.9679999994,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,d2392f5d-045c-372f-a264-0f82cbdcc2f7 -2015,Buenos Aires,II.1.1,54.324479999999994,TJ,CH4,3.9,kg/TJ,211.86547199999998,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,26c137f0-8e9b-3984-8cb3-64ff17b896f7 -2015,Buenos Aires,II.1.1,54.324479999999994,TJ,N2O,3.9,kg/TJ,211.86547199999998,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,26c137f0-8e9b-3984-8cb3-64ff17b896f7 -2015,Capital Federal,II.1.1,24.30876,TJ,CO2,74100.0,kg/TJ,1801279.116,Gas Oil combustion consumption by freight transport,AR-C,SESCO,annual,kg,af4cd1b7-292a-36a7-b839-b11cb3e9c11c -2015,Capital Federal,II.1.1,24.30876,TJ,CH4,3.9,kg/TJ,94.804164,Gas Oil combustion consumption by freight transport,AR-C,SESCO,annual,kg,5af90376-5eac-35bd-aaa2-65168972fd0b -2015,Capital Federal,II.1.1,24.30876,TJ,N2O,3.9,kg/TJ,94.804164,Gas Oil combustion consumption by freight transport,AR-C,SESCO,annual,kg,5af90376-5eac-35bd-aaa2-65168972fd0b -2015,Catamarca,II.1.1,0.46956,TJ,CO2,74100.0,kg/TJ,34794.396,Gas Oil combustion consumption by freight transport,AR-K,SESCO,annual,kg,addbd6f5-eaee-3654-b113-8290a3d9ea35 -2015,Catamarca,II.1.1,0.46956,TJ,CH4,3.9,kg/TJ,1.831284,Gas Oil combustion consumption by freight transport,AR-K,SESCO,annual,kg,ad29b53f-5abf-3bda-bd72-72399974dca9 -2015,Catamarca,II.1.1,0.46956,TJ,N2O,3.9,kg/TJ,1.831284,Gas Oil combustion consumption by freight transport,AR-K,SESCO,annual,kg,ad29b53f-5abf-3bda-bd72-72399974dca9 -2015,Chubut,II.1.1,0.36119999999999997,TJ,CO2,74100.0,kg/TJ,26764.92,Gas Oil combustion consumption by freight transport,AR-U,SESCO,annual,kg,9b3269e4-b6ae-38d5-b672-810f65029af8 -2015,Chubut,II.1.1,0.36119999999999997,TJ,CH4,3.9,kg/TJ,1.40868,Gas Oil combustion consumption by freight transport,AR-U,SESCO,annual,kg,6e2da646-499d-3587-acc8-b34e1c18a66e -2015,Chubut,II.1.1,0.36119999999999997,TJ,N2O,3.9,kg/TJ,1.40868,Gas Oil combustion consumption by freight transport,AR-U,SESCO,annual,kg,6e2da646-499d-3587-acc8-b34e1c18a66e -2015,Corrientes,II.1.1,4.26216,TJ,CO2,74100.0,kg/TJ,315826.056,Gas Oil combustion consumption by freight transport,AR-W,SESCO,annual,kg,bfc55cf8-16e5-38c9-a409-94f70b943b40 -2015,Corrientes,II.1.1,4.26216,TJ,CH4,3.9,kg/TJ,16.622424,Gas Oil combustion consumption by freight transport,AR-W,SESCO,annual,kg,7b15b13a-7c52-34d0-85ed-b7ca349090ae -2015,Corrientes,II.1.1,4.26216,TJ,N2O,3.9,kg/TJ,16.622424,Gas Oil combustion consumption by freight transport,AR-W,SESCO,annual,kg,7b15b13a-7c52-34d0-85ed-b7ca349090ae -2015,Córdoba,II.1.1,3.5758799999999997,TJ,CO2,74100.0,kg/TJ,264972.708,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,f3ddb8d6-09c5-3a1c-b503-dba3e097c536 -2015,Córdoba,II.1.1,3.5758799999999997,TJ,CH4,3.9,kg/TJ,13.945931999999999,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,6897c778-da80-307a-8354-6317ab69c44b -2015,Córdoba,II.1.1,3.5758799999999997,TJ,N2O,3.9,kg/TJ,13.945931999999999,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,6897c778-da80-307a-8354-6317ab69c44b -2015,Entre Rios,II.1.1,1.30032,TJ,CO2,74100.0,kg/TJ,96353.712,Gas Oil combustion consumption by freight transport,AR-E,SESCO,annual,kg,699d24ff-b993-36d0-8fdd-6eb5464b26b2 -2015,Entre Rios,II.1.1,1.30032,TJ,CH4,3.9,kg/TJ,5.071248,Gas Oil combustion consumption by freight transport,AR-E,SESCO,annual,kg,9333fda9-3e51-3064-96ad-2e04f2a5c3d6 -2015,Entre Rios,II.1.1,1.30032,TJ,N2O,3.9,kg/TJ,5.071248,Gas Oil combustion consumption by freight transport,AR-E,SESCO,annual,kg,9333fda9-3e51-3064-96ad-2e04f2a5c3d6 -2015,La Pampa,II.1.1,0.14448,TJ,CO2,74100.0,kg/TJ,10705.967999999999,Gas Oil combustion consumption by freight transport,AR-L,SESCO,annual,kg,04c78ffd-9cc4-3825-a216-511c3e714d6f -2015,La Pampa,II.1.1,0.14448,TJ,CH4,3.9,kg/TJ,0.563472,Gas Oil combustion consumption by freight transport,AR-L,SESCO,annual,kg,eaf5d924-0aba-3011-b07b-f8b117d8562c -2015,La Pampa,II.1.1,0.14448,TJ,N2O,3.9,kg/TJ,0.563472,Gas Oil combustion consumption by freight transport,AR-L,SESCO,annual,kg,eaf5d924-0aba-3011-b07b-f8b117d8562c -2015,Misiones,II.1.1,0.43344,TJ,CO2,74100.0,kg/TJ,32117.904,Gas Oil combustion consumption by freight transport,AR-N,SESCO,annual,kg,2cc10979-2c35-30a8-bd88-00c0de5c5fc8 -2015,Misiones,II.1.1,0.43344,TJ,CH4,3.9,kg/TJ,1.690416,Gas Oil combustion consumption by freight transport,AR-N,SESCO,annual,kg,61ace39c-b50a-3065-9b0f-716f3b6b4a38 -2015,Misiones,II.1.1,0.43344,TJ,N2O,3.9,kg/TJ,1.690416,Gas Oil combustion consumption by freight transport,AR-N,SESCO,annual,kg,61ace39c-b50a-3065-9b0f-716f3b6b4a38 -2015,Rio Negro,II.1.1,0.14448,TJ,CO2,74100.0,kg/TJ,10705.967999999999,Gas Oil combustion consumption by freight transport,AR-R,SESCO,annual,kg,33776a0d-18f2-335e-aa2a-352b36b04606 -2015,Rio Negro,II.1.1,0.14448,TJ,CH4,3.9,kg/TJ,0.563472,Gas Oil combustion consumption by freight transport,AR-R,SESCO,annual,kg,36805139-87cb-360d-b97a-c8c62b5b659b -2015,Rio Negro,II.1.1,0.14448,TJ,N2O,3.9,kg/TJ,0.563472,Gas Oil combustion consumption by freight transport,AR-R,SESCO,annual,kg,36805139-87cb-360d-b97a-c8c62b5b659b -2015,San Juan,II.1.1,0.28896,TJ,CO2,74100.0,kg/TJ,21411.935999999998,Gas Oil combustion consumption by freight transport,AR-J,SESCO,annual,kg,3eee0545-483d-3dac-a0b8-66b4b1fe7a69 -2015,San Juan,II.1.1,0.28896,TJ,CH4,3.9,kg/TJ,1.126944,Gas Oil combustion consumption by freight transport,AR-J,SESCO,annual,kg,d20d4978-b2fd-3ed2-8356-1883363b7bce -2015,San Juan,II.1.1,0.28896,TJ,N2O,3.9,kg/TJ,1.126944,Gas Oil combustion consumption by freight transport,AR-J,SESCO,annual,kg,d20d4978-b2fd-3ed2-8356-1883363b7bce -2015,San Luis,II.1.1,0.03612,TJ,CO2,74100.0,kg/TJ,2676.4919999999997,Gas Oil combustion consumption by freight transport,AR-D,SESCO,annual,kg,d1a627b5-9e09-3e53-a6ad-dea571646ce9 -2015,San Luis,II.1.1,0.03612,TJ,CH4,3.9,kg/TJ,0.140868,Gas Oil combustion consumption by freight transport,AR-D,SESCO,annual,kg,c6a9bf1d-3e70-3e85-a609-9e2f1e66173d -2015,San Luis,II.1.1,0.03612,TJ,N2O,3.9,kg/TJ,0.140868,Gas Oil combustion consumption by freight transport,AR-D,SESCO,annual,kg,c6a9bf1d-3e70-3e85-a609-9e2f1e66173d -2015,Santa Fe,II.1.1,5.49024,TJ,CO2,74100.0,kg/TJ,406826.784,Gas Oil combustion consumption by freight transport,AR-S,SESCO,annual,kg,e7b2a92c-bb47-3548-b49f-5d8cb518f0bb -2015,Santa Fe,II.1.1,5.49024,TJ,CH4,3.9,kg/TJ,21.411936,Gas Oil combustion consumption by freight transport,AR-S,SESCO,annual,kg,7fed4078-8cc1-3649-9f4c-51ed669b212e -2015,Santa Fe,II.1.1,5.49024,TJ,N2O,3.9,kg/TJ,21.411936,Gas Oil combustion consumption by freight transport,AR-S,SESCO,annual,kg,7fed4078-8cc1-3649-9f4c-51ed669b212e -2015,Santiago del Estero,II.1.1,0.68628,TJ,CO2,74100.0,kg/TJ,50853.348,Gas Oil combustion consumption by freight transport,AR-G,SESCO,annual,kg,e7d7bd7e-52eb-370a-aa42-c7551a78080a -2015,Santiago del Estero,II.1.1,0.68628,TJ,CH4,3.9,kg/TJ,2.676492,Gas Oil combustion consumption by freight transport,AR-G,SESCO,annual,kg,1bb66a92-70f7-37ac-923c-f327035de06c -2015,Santiago del Estero,II.1.1,0.68628,TJ,N2O,3.9,kg/TJ,2.676492,Gas Oil combustion consumption by freight transport,AR-G,SESCO,annual,kg,1bb66a92-70f7-37ac-923c-f327035de06c -2015,Tucuman,II.1.1,1.0836,TJ,CO2,74100.0,kg/TJ,80294.76,Gas Oil combustion consumption by freight transport,AR-T,SESCO,annual,kg,1ba2bc5e-ae0f-3026-b6ff-3c033e267978 -2015,Tucuman,II.1.1,1.0836,TJ,CH4,3.9,kg/TJ,4.226039999999999,Gas Oil combustion consumption by freight transport,AR-T,SESCO,annual,kg,a9453276-3661-336d-8733-d6f7a1f56ca7 -2015,Tucuman,II.1.1,1.0836,TJ,N2O,3.9,kg/TJ,4.226039999999999,Gas Oil combustion consumption by freight transport,AR-T,SESCO,annual,kg,a9453276-3661-336d-8733-d6f7a1f56ca7 -2015,Buenos Aires,II.1.1,0.9435899999999998,TJ,CO2,71500.0,kg/TJ,67466.68499999998,Jet Kerosene combustion consumption by freight transport,AR-B,SESCO,annual,kg,4a7e5556-df8e-3b09-b9ef-6f6314bba381 -2015,Buenos Aires,II.1.1,0.9435899999999998,TJ,CH4,0.5,kg/TJ,0.4717949999999999,Jet Kerosene combustion consumption by freight transport,AR-B,SESCO,annual,kg,13b94e1e-3b3b-3975-a275-076ee6d49989 -2015,Buenos Aires,II.1.1,0.9435899999999998,TJ,N2O,2.0,kg/TJ,1.8871799999999996,Jet Kerosene combustion consumption by freight transport,AR-B,SESCO,annual,kg,28b0b48c-382a-3f01-a590-79c3a70510f4 -2015,Buenos Aires,II.1.1,7.778155,TJ,CO2,73300.0,kg/TJ,570138.7615,Naphtha combustion consumption by freight transport,AR-B,SESCO,annual,kg,898bee9f-68a4-39ce-b067-040dfe1b2d6d -2015,Buenos Aires,II.1.1,7.778155,TJ,CH4,0.5,kg/TJ,3.8890775,Naphtha combustion consumption by freight transport,AR-B,SESCO,annual,kg,28fa3b7f-25c5-3825-886a-796908b1f452 -2015,Buenos Aires,II.1.1,7.778155,TJ,N2O,2.0,kg/TJ,15.55631,Naphtha combustion consumption by freight transport,AR-B,SESCO,annual,kg,04eae378-4bed-3c28-aaf9-fb81ff6a64f4 -2015,Capital Federal,II.1.1,6.3390249999999995,TJ,CO2,73300.0,kg/TJ,464650.5325,Naphtha combustion consumption by freight transport,AR-C,SESCO,annual,kg,2d75fcfb-4f3a-32fb-a269-889b56364952 -2015,Capital Federal,II.1.1,6.3390249999999995,TJ,CH4,0.5,kg/TJ,3.1695124999999997,Naphtha combustion consumption by freight transport,AR-C,SESCO,annual,kg,7457ba26-c91a-377f-b418-76f13c3dfacb -2015,Capital Federal,II.1.1,6.3390249999999995,TJ,N2O,2.0,kg/TJ,12.678049999999999,Naphtha combustion consumption by freight transport,AR-C,SESCO,annual,kg,a003e287-372c-3e05-9a1a-fcf7c4aec10d -2015,Córdoba,II.1.1,0.75383,TJ,CO2,73300.0,kg/TJ,55255.739,Naphtha combustion consumption by freight transport,AR-X,SESCO,annual,kg,6a106881-2eec-3f51-ac0d-7d6b6618bc85 -2015,Córdoba,II.1.1,0.75383,TJ,CH4,0.5,kg/TJ,0.376915,Naphtha combustion consumption by freight transport,AR-X,SESCO,annual,kg,62ac7b02-8892-394c-906d-19bf7cca126d -2015,Córdoba,II.1.1,0.75383,TJ,N2O,2.0,kg/TJ,1.50766,Naphtha combustion consumption by freight transport,AR-X,SESCO,annual,kg,c9058865-98b4-3e4a-8765-045cf2af58c8 -2015,Santa Fe,II.1.1,16.4472,TJ,CO2,73300.0,kg/TJ,1205579.76,Naphtha combustion consumption by freight transport,AR-S,SESCO,annual,kg,37931611-6320-384d-86b4-10a7315c13a8 -2015,Santa Fe,II.1.1,16.4472,TJ,CH4,0.5,kg/TJ,8.2236,Naphtha combustion consumption by freight transport,AR-S,SESCO,annual,kg,673ebf36-df82-3855-90b2-c94c37a569b7 -2015,Santa Fe,II.1.1,16.4472,TJ,N2O,2.0,kg/TJ,32.8944,Naphtha combustion consumption by freight transport,AR-S,SESCO,annual,kg,45cf0a0d-996f-3032-9a51-4da507fd5b68 -2015,Tucuman,II.1.1,0.06853,TJ,CO2,73300.0,kg/TJ,5023.249,Naphtha combustion consumption by freight transport,AR-T,SESCO,annual,kg,52fb3815-26e1-3946-8797-884614bef70d -2015,Tucuman,II.1.1,0.06853,TJ,CH4,0.5,kg/TJ,0.034265,Naphtha combustion consumption by freight transport,AR-T,SESCO,annual,kg,5f26eea7-d1fc-3e3d-862c-e42f442046a9 -2015,Tucuman,II.1.1,0.06853,TJ,N2O,2.0,kg/TJ,0.13706,Naphtha combustion consumption by freight transport,AR-T,SESCO,annual,kg,deb5cdef-2381-3dba-bb2f-6db42ccd9cdc -2015,Buenos Aires,II.1.1,5.55093,TJ,CO2,73300.0,kg/TJ,406883.169,Naphtha combustion consumption by freight transport,AR-B,SESCO,annual,kg,4413b262-40d1-3d75-91a2-b039a181afb5 -2015,Buenos Aires,II.1.1,5.55093,TJ,CH4,0.5,kg/TJ,2.775465,Naphtha combustion consumption by freight transport,AR-B,SESCO,annual,kg,93f28b1a-8ab5-3470-b591-16b3345f0352 -2015,Buenos Aires,II.1.1,5.55093,TJ,N2O,2.0,kg/TJ,11.10186,Naphtha combustion consumption by freight transport,AR-B,SESCO,annual,kg,79764370-b4a6-3155-94b4-a7492ca6445f -2015,Capital Federal,II.1.1,6.0649049999999995,TJ,CO2,73300.0,kg/TJ,444557.5365,Naphtha combustion consumption by freight transport,AR-C,SESCO,annual,kg,2c7ce7d7-15f0-37ab-b827-4e02bed618ab -2015,Capital Federal,II.1.1,6.0649049999999995,TJ,CH4,0.5,kg/TJ,3.0324524999999998,Naphtha combustion consumption by freight transport,AR-C,SESCO,annual,kg,aaa3c5a4-045c-30b3-97a5-1f35d90d4d23 -2015,Capital Federal,II.1.1,6.0649049999999995,TJ,N2O,2.0,kg/TJ,12.129809999999999,Naphtha combustion consumption by freight transport,AR-C,SESCO,annual,kg,2e8519aa-fe19-3bb0-b415-75c856fb952e -2015,Córdoba,II.1.1,0.9594199999999999,TJ,CO2,73300.0,kg/TJ,70325.48599999999,Naphtha combustion consumption by freight transport,AR-X,SESCO,annual,kg,0ea96eb2-f371-3e30-bf0c-11202802433f -2015,Córdoba,II.1.1,0.9594199999999999,TJ,CH4,0.5,kg/TJ,0.47970999999999997,Naphtha combustion consumption by freight transport,AR-X,SESCO,annual,kg,d6aa4389-23f1-3d38-97ce-806053c22b36 -2015,Córdoba,II.1.1,0.9594199999999999,TJ,N2O,2.0,kg/TJ,1.9188399999999999,Naphtha combustion consumption by freight transport,AR-X,SESCO,annual,kg,2a0ce121-5bdf-3dd5-b018-3b24292c6066 -2015,Santa Fe,II.1.1,0.925155,TJ,CO2,73300.0,kg/TJ,67813.8615,Naphtha combustion consumption by freight transport,AR-S,SESCO,annual,kg,6e0a1dc2-6259-39d5-9f37-78dcd1f5e0fd -2015,Santa Fe,II.1.1,0.925155,TJ,CH4,0.5,kg/TJ,0.4625775,Naphtha combustion consumption by freight transport,AR-S,SESCO,annual,kg,7ec32b99-fb9f-3677-8679-160e12ac2a64 -2015,Santa Fe,II.1.1,0.925155,TJ,N2O,2.0,kg/TJ,1.85031,Naphtha combustion consumption by freight transport,AR-S,SESCO,annual,kg,5471361d-7d22-34f9-9b43-22ff67e1f2c0 -2015,Buenos Aires,II.1.1,2647.74048,TJ,CO2,74100.0,kg/TJ,196197569.568,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,1bf68087-bc2a-3734-af06-30741085dc15 -2015,Buenos Aires,II.1.1,2647.74048,TJ,CH4,3.9,kg/TJ,10326.187871999999,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,32a28254-bddd-36c0-ab5d-70575294c74c -2015,Buenos Aires,II.1.1,2647.74048,TJ,N2O,3.9,kg/TJ,10326.187871999999,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,32a28254-bddd-36c0-ab5d-70575294c74c -2015,Capital Federal,II.1.1,501.12241452,TJ,CO2,74100.0,kg/TJ,37133170.915932,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,b1f79d05-db5e-3458-b0d7-625b3627f03b -2015,Capital Federal,II.1.1,501.12241452,TJ,CH4,3.9,kg/TJ,1954.377416628,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,341a4010-84b3-3345-a527-977cba23646f -2015,Capital Federal,II.1.1,501.12241452,TJ,N2O,3.9,kg/TJ,1954.377416628,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,341a4010-84b3-3345-a527-977cba23646f -2015,Catamarca,II.1.1,0.5418,TJ,CO2,74100.0,kg/TJ,40147.38,Gas Oil combustion consumption by public passenger transport,AR-K,SESCO,annual,kg,b9978beb-db3a-3942-bf60-40a779aaa013 -2015,Catamarca,II.1.1,0.5418,TJ,CH4,3.9,kg/TJ,2.1130199999999997,Gas Oil combustion consumption by public passenger transport,AR-K,SESCO,annual,kg,ba4527a4-c8a1-3e7e-8d20-bd1ccde7dc1e -2015,Catamarca,II.1.1,0.5418,TJ,N2O,3.9,kg/TJ,2.1130199999999997,Gas Oil combustion consumption by public passenger transport,AR-K,SESCO,annual,kg,ba4527a4-c8a1-3e7e-8d20-bd1ccde7dc1e -2015,Chubut,II.1.1,11.29468788,TJ,CO2,74100.0,kg/TJ,836936.371908,Gas Oil combustion consumption by public passenger transport,AR-U,SESCO,annual,kg,6eb69363-5776-349a-a5c0-93fce0ec9fe5 -2015,Chubut,II.1.1,11.29468788,TJ,CH4,3.9,kg/TJ,44.049282731999995,Gas Oil combustion consumption by public passenger transport,AR-U,SESCO,annual,kg,2e4949a0-0887-31ae-b8f6-43654db39c09 -2015,Chubut,II.1.1,11.29468788,TJ,N2O,3.9,kg/TJ,44.049282731999995,Gas Oil combustion consumption by public passenger transport,AR-U,SESCO,annual,kg,2e4949a0-0887-31ae-b8f6-43654db39c09 -2015,Corrientes,II.1.1,0.65016,TJ,CO2,74100.0,kg/TJ,48176.856,Gas Oil combustion consumption by public passenger transport,AR-W,SESCO,annual,kg,2ba8a317-c81d-305d-81f6-bbe89e069275 -2015,Corrientes,II.1.1,0.65016,TJ,CH4,3.9,kg/TJ,2.535624,Gas Oil combustion consumption by public passenger transport,AR-W,SESCO,annual,kg,ab969a44-ed61-369c-a191-19805cd98dbe -2015,Corrientes,II.1.1,0.65016,TJ,N2O,3.9,kg/TJ,2.535624,Gas Oil combustion consumption by public passenger transport,AR-W,SESCO,annual,kg,ab969a44-ed61-369c-a191-19805cd98dbe -2015,Córdoba,II.1.1,105.10930836,TJ,CO2,74100.0,kg/TJ,7788599.749476,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,914ab449-f90a-3bbe-8f2c-1079e690295b -2015,Córdoba,II.1.1,105.10930836,TJ,CH4,3.9,kg/TJ,409.926302604,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,5edc1763-babc-364f-9725-97fcebbd9735 -2015,Córdoba,II.1.1,105.10930836,TJ,N2O,3.9,kg/TJ,409.926302604,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,5edc1763-babc-364f-9725-97fcebbd9735 -2015,Entre Rios,II.1.1,68.22468407999999,TJ,CO2,74100.0,kg/TJ,5055449.090328,Gas Oil combustion consumption by public passenger transport,AR-E,SESCO,annual,kg,e4f94f65-70f2-31bb-b951-ffab87584f65 -2015,Entre Rios,II.1.1,68.22468407999999,TJ,CH4,3.9,kg/TJ,266.07626791199993,Gas Oil combustion consumption by public passenger transport,AR-E,SESCO,annual,kg,b622207a-1567-356c-9643-3f3cdcfe64e5 -2015,Entre Rios,II.1.1,68.22468407999999,TJ,N2O,3.9,kg/TJ,266.07626791199993,Gas Oil combustion consumption by public passenger transport,AR-E,SESCO,annual,kg,b622207a-1567-356c-9643-3f3cdcfe64e5 -2015,Formosa,II.1.1,0.50568,TJ,CO2,74100.0,kg/TJ,37470.888,Gas Oil combustion consumption by public passenger transport,AR-P,SESCO,annual,kg,2414251f-b129-33ed-999e-1e583acfab98 -2015,Formosa,II.1.1,0.50568,TJ,CH4,3.9,kg/TJ,1.9721520000000001,Gas Oil combustion consumption by public passenger transport,AR-P,SESCO,annual,kg,0ab8a1ee-c755-3d6f-b804-eed5a6e78006 -2015,Formosa,II.1.1,0.50568,TJ,N2O,3.9,kg/TJ,1.9721520000000001,Gas Oil combustion consumption by public passenger transport,AR-P,SESCO,annual,kg,0ab8a1ee-c755-3d6f-b804-eed5a6e78006 -2015,La Pampa,II.1.1,1.19196,TJ,CO2,74100.0,kg/TJ,88324.23599999999,Gas Oil combustion consumption by public passenger transport,AR-L,SESCO,annual,kg,6ec28570-120b-3e7d-9e1b-4d7168b4eb68 -2015,La Pampa,II.1.1,1.19196,TJ,CH4,3.9,kg/TJ,4.648643999999999,Gas Oil combustion consumption by public passenger transport,AR-L,SESCO,annual,kg,9b292f88-ac74-38cf-ab26-bf28ba3b5511 -2015,La Pampa,II.1.1,1.19196,TJ,N2O,3.9,kg/TJ,4.648643999999999,Gas Oil combustion consumption by public passenger transport,AR-L,SESCO,annual,kg,9b292f88-ac74-38cf-ab26-bf28ba3b5511 -2015,Mendoza,II.1.1,1.19196,TJ,CO2,74100.0,kg/TJ,88324.23599999999,Gas Oil combustion consumption by public passenger transport,AR-M,SESCO,annual,kg,86c92e06-059c-3e42-9387-071565a595bb -2015,Mendoza,II.1.1,1.19196,TJ,CH4,3.9,kg/TJ,4.648643999999999,Gas Oil combustion consumption by public passenger transport,AR-M,SESCO,annual,kg,a0568891-5f36-3c91-a71f-36ed431a340b -2015,Mendoza,II.1.1,1.19196,TJ,N2O,3.9,kg/TJ,4.648643999999999,Gas Oil combustion consumption by public passenger transport,AR-M,SESCO,annual,kg,a0568891-5f36-3c91-a71f-36ed431a340b -2015,Misiones,II.1.1,0.68628,TJ,CO2,74100.0,kg/TJ,50853.348,Gas Oil combustion consumption by public passenger transport,AR-N,SESCO,annual,kg,84dee5fa-056a-37fe-8b95-4ce2cd9c2738 -2015,Misiones,II.1.1,0.68628,TJ,CH4,3.9,kg/TJ,2.676492,Gas Oil combustion consumption by public passenger transport,AR-N,SESCO,annual,kg,9dcdd8b7-4f24-3db8-954a-386b0e69ccde -2015,Misiones,II.1.1,0.68628,TJ,N2O,3.9,kg/TJ,2.676492,Gas Oil combustion consumption by public passenger transport,AR-N,SESCO,annual,kg,9dcdd8b7-4f24-3db8-954a-386b0e69ccde -2015,Rio Negro,II.1.1,55.10225196,TJ,CO2,74100.0,kg/TJ,4083076.8702359996,Gas Oil combustion consumption by public passenger transport,AR-R,SESCO,annual,kg,bbe530dc-85a6-3b89-aa50-b53300229a78 -2015,Rio Negro,II.1.1,55.10225196,TJ,CH4,3.9,kg/TJ,214.898782644,Gas Oil combustion consumption by public passenger transport,AR-R,SESCO,annual,kg,9ada7076-3e68-356f-a341-f648ba62b883 -2015,Rio Negro,II.1.1,55.10225196,TJ,N2O,3.9,kg/TJ,214.898782644,Gas Oil combustion consumption by public passenger transport,AR-R,SESCO,annual,kg,9ada7076-3e68-356f-a341-f648ba62b883 -2015,San Juan,II.1.1,0.10836,TJ,CO2,74100.0,kg/TJ,8029.476,Gas Oil combustion consumption by public passenger transport,AR-J,SESCO,annual,kg,fb471af3-2bb2-3a62-a9c8-e2d443a41095 -2015,San Juan,II.1.1,0.10836,TJ,CH4,3.9,kg/TJ,0.422604,Gas Oil combustion consumption by public passenger transport,AR-J,SESCO,annual,kg,bf6e68db-cf87-3c85-9c4c-f9585f4dd4c2 -2015,San Juan,II.1.1,0.10836,TJ,N2O,3.9,kg/TJ,0.422604,Gas Oil combustion consumption by public passenger transport,AR-J,SESCO,annual,kg,bf6e68db-cf87-3c85-9c4c-f9585f4dd4c2 -2015,San Luis,II.1.1,0.28896,TJ,CO2,74100.0,kg/TJ,21411.935999999998,Gas Oil combustion consumption by public passenger transport,AR-D,SESCO,annual,kg,72d043a2-68e2-365f-8cc4-12717010f16b -2015,San Luis,II.1.1,0.28896,TJ,CH4,3.9,kg/TJ,1.126944,Gas Oil combustion consumption by public passenger transport,AR-D,SESCO,annual,kg,082f2789-22a0-35e4-b33b-02c355e293fe -2015,San Luis,II.1.1,0.28896,TJ,N2O,3.9,kg/TJ,1.126944,Gas Oil combustion consumption by public passenger transport,AR-D,SESCO,annual,kg,082f2789-22a0-35e4-b33b-02c355e293fe -2015,Santa Cruz,II.1.1,1.3364399999999999,TJ,CO2,74100.0,kg/TJ,99030.20399999998,Gas Oil combustion consumption by public passenger transport,AR-Z,SESCO,annual,kg,bfefd427-2039-3705-aadd-37ccdc5c1fad -2015,Santa Cruz,II.1.1,1.3364399999999999,TJ,CH4,3.9,kg/TJ,5.212115999999999,Gas Oil combustion consumption by public passenger transport,AR-Z,SESCO,annual,kg,568020b5-2d25-3620-b689-54066fbf1877 -2015,Santa Cruz,II.1.1,1.3364399999999999,TJ,N2O,3.9,kg/TJ,5.212115999999999,Gas Oil combustion consumption by public passenger transport,AR-Z,SESCO,annual,kg,568020b5-2d25-3620-b689-54066fbf1877 -2015,Santa Fe,II.1.1,24.483038999999998,TJ,CO2,74100.0,kg/TJ,1814193.1898999999,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,6aebb2fc-b02b-3bcf-98a9-d0a9854ea3af -2015,Santa Fe,II.1.1,24.483038999999998,TJ,CH4,3.9,kg/TJ,95.4838521,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,eccfd4ba-5545-3056-9c31-54f45bdd4b15 -2015,Santa Fe,II.1.1,24.483038999999998,TJ,N2O,3.9,kg/TJ,95.4838521,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,eccfd4ba-5545-3056-9c31-54f45bdd4b15 -2015,Santiago del Estero,II.1.1,1.04748,TJ,CO2,74100.0,kg/TJ,77618.268,Gas Oil combustion consumption by public passenger transport,AR-G,SESCO,annual,kg,89f99194-aab6-37c4-add6-863a428bf31a -2015,Santiago del Estero,II.1.1,1.04748,TJ,CH4,3.9,kg/TJ,4.085172,Gas Oil combustion consumption by public passenger transport,AR-G,SESCO,annual,kg,9cba0d8e-cd23-3eb7-9dd6-8cc9c9ad1f4f -2015,Santiago del Estero,II.1.1,1.04748,TJ,N2O,3.9,kg/TJ,4.085172,Gas Oil combustion consumption by public passenger transport,AR-G,SESCO,annual,kg,9cba0d8e-cd23-3eb7-9dd6-8cc9c9ad1f4f -2015,Buenos Aires,II.1.1,2.709,TJ,CO2,74100.0,kg/TJ,200736.9,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,cef426be-5a9d-3bf8-ab91-89be40b0fdba -2015,Buenos Aires,II.1.1,2.709,TJ,CH4,3.9,kg/TJ,10.5651,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,3a0a7fab-e268-39e6-a956-3e05fd289bd5 -2015,Buenos Aires,II.1.1,2.709,TJ,N2O,3.9,kg/TJ,10.5651,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,3a0a7fab-e268-39e6-a956-3e05fd289bd5 -2015,Capital Federal,II.1.1,1.58928,TJ,CO2,74100.0,kg/TJ,117765.648,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,89f98616-6ba2-3e3f-9d78-731641893eb4 -2015,Capital Federal,II.1.1,1.58928,TJ,CH4,3.9,kg/TJ,6.198192,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,527f8061-3fa3-3e7d-a248-2011e759d3c6 -2015,Capital Federal,II.1.1,1.58928,TJ,N2O,3.9,kg/TJ,6.198192,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,527f8061-3fa3-3e7d-a248-2011e759d3c6 -2015,Chubut,II.1.1,0.03612,TJ,CO2,74100.0,kg/TJ,2676.4919999999997,Gas Oil combustion consumption by public passenger transport,AR-U,SESCO,annual,kg,0018d26a-3f3a-3ed0-a113-24f50a4bca7b -2015,Chubut,II.1.1,0.03612,TJ,CH4,3.9,kg/TJ,0.140868,Gas Oil combustion consumption by public passenger transport,AR-U,SESCO,annual,kg,c935cdd5-ed88-35ce-8d68-c14891c9caad -2015,Chubut,II.1.1,0.03612,TJ,N2O,3.9,kg/TJ,0.140868,Gas Oil combustion consumption by public passenger transport,AR-U,SESCO,annual,kg,c935cdd5-ed88-35ce-8d68-c14891c9caad -2015,Córdoba,II.1.1,0.25284,TJ,CO2,74100.0,kg/TJ,18735.444,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,28809476-dab0-3901-b5ea-abb4c3766011 -2015,Córdoba,II.1.1,0.25284,TJ,CH4,3.9,kg/TJ,0.9860760000000001,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,a2f8dee5-ff9c-39ca-9c73-9ed6d3c5abfb -2015,Córdoba,II.1.1,0.25284,TJ,N2O,3.9,kg/TJ,0.9860760000000001,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,a2f8dee5-ff9c-39ca-9c73-9ed6d3c5abfb -2015,Rio Negro,II.1.1,1.04748,TJ,CO2,74100.0,kg/TJ,77618.268,Gas Oil combustion consumption by public passenger transport,AR-R,SESCO,annual,kg,83603ce7-9f88-3e83-ad2a-7abd7389dfcf -2015,Rio Negro,II.1.1,1.04748,TJ,CH4,3.9,kg/TJ,4.085172,Gas Oil combustion consumption by public passenger transport,AR-R,SESCO,annual,kg,b3cdb47e-51ee-3e55-a68f-15c68e5bc468 -2015,Rio Negro,II.1.1,1.04748,TJ,N2O,3.9,kg/TJ,4.085172,Gas Oil combustion consumption by public passenger transport,AR-R,SESCO,annual,kg,b3cdb47e-51ee-3e55-a68f-15c68e5bc468 -2015,Santa Fe,II.1.1,0.32508,TJ,CO2,74100.0,kg/TJ,24088.428,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,1e03caf0-d720-3e35-9bb5-b1240d7df42c -2015,Santa Fe,II.1.1,0.32508,TJ,CH4,3.9,kg/TJ,1.267812,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,bfb25bab-0ca7-3cd4-8471-f064ca1128ff -2015,Santa Fe,II.1.1,0.32508,TJ,N2O,3.9,kg/TJ,1.267812,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,bfb25bab-0ca7-3cd4-8471-f064ca1128ff -2015,Santiago del Estero,II.1.1,0.07224,TJ,CO2,74100.0,kg/TJ,5352.9839999999995,Gas Oil combustion consumption by public passenger transport,AR-G,SESCO,annual,kg,02b10c80-f015-39cb-aa5e-0fa5fb8fab17 -2015,Santiago del Estero,II.1.1,0.07224,TJ,CH4,3.9,kg/TJ,0.281736,Gas Oil combustion consumption by public passenger transport,AR-G,SESCO,annual,kg,e5567771-8320-33a5-9f80-456ff2ef92f1 -2015,Santiago del Estero,II.1.1,0.07224,TJ,N2O,3.9,kg/TJ,0.281736,Gas Oil combustion consumption by public passenger transport,AR-G,SESCO,annual,kg,e5567771-8320-33a5-9f80-456ff2ef92f1 -2015,Buenos Aires,II.1.1,6.510771,TJ,CO2,71500.0,kg/TJ,465520.1265,Jet Kerosene combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,2faa1c2d-3d72-3193-8438-7881d476f147 -2015,Buenos Aires,II.1.1,6.510771,TJ,CH4,0.5,kg/TJ,3.2553855,Jet Kerosene combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,b2209abb-d1ba-3c93-bcb0-b9c9923955cf -2015,Buenos Aires,II.1.1,6.510771,TJ,N2O,2.0,kg/TJ,13.021542,Jet Kerosene combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,0139772a-6f32-341e-b001-3a8f2472aff5 -2015,Buenos Aires,II.1.1,0.27412,TJ,CO2,73300.0,kg/TJ,20092.996,Naphtha combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,b6b1dee2-b0c1-3761-973b-282805620f85 -2015,Buenos Aires,II.1.1,0.27412,TJ,CH4,0.5,kg/TJ,0.13706,Naphtha combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,efff4a9a-dbad-3b75-8612-3b35c385973a -2015,Buenos Aires,II.1.1,0.27412,TJ,N2O,2.0,kg/TJ,0.54824,Naphtha combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,8a74ff95-1308-38de-b946-d7f1b93f533f -2015,Capital Federal,II.1.1,0.102795,TJ,CO2,73300.0,kg/TJ,7534.8735,Naphtha combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,053f6177-1540-3c2f-a780-534f8e4adff5 -2015,Capital Federal,II.1.1,0.102795,TJ,CH4,0.5,kg/TJ,0.0513975,Naphtha combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,78757fd5-8cc4-3ce1-952f-767bb32c9289 -2015,Capital Federal,II.1.1,0.102795,TJ,N2O,2.0,kg/TJ,0.20559,Naphtha combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,e2e866a6-4572-3b29-a70b-003553aef4b0 -2015,Chubut,II.1.1,0.6472704,TJ,CO2,74100.0,kg/TJ,47962.73664,Gas Oil combustion consumption by freight transport,AR-U,SESCO,annual,kg,2d0c105b-5f5a-3ee2-8d7d-e9f012406e89 -2015,Chubut,II.1.1,0.6472704,TJ,CH4,3.9,kg/TJ,2.52435456,Gas Oil combustion consumption by freight transport,AR-U,SESCO,annual,kg,45816fed-1f8d-3b12-b8ec-37cd2bc1c26f -2015,Chubut,II.1.1,0.6472704,TJ,N2O,3.9,kg/TJ,2.52435456,Gas Oil combustion consumption by freight transport,AR-U,SESCO,annual,kg,45816fed-1f8d-3b12-b8ec-37cd2bc1c26f -2015,Chubut,II.1.1,0.72250836,TJ,CO2,74100.0,kg/TJ,53537.869476,Gas Oil combustion consumption by freight transport,AR-U,SESCO,annual,kg,1340f39a-24dd-3ddf-8d84-d628ad9a534b -2015,Chubut,II.1.1,0.72250836,TJ,CH4,3.9,kg/TJ,2.8177826039999996,Gas Oil combustion consumption by freight transport,AR-U,SESCO,annual,kg,a684e5f3-0578-3e8a-b1a3-1cd93ca77531 -2015,Chubut,II.1.1,0.72250836,TJ,N2O,3.9,kg/TJ,2.8177826039999996,Gas Oil combustion consumption by freight transport,AR-U,SESCO,annual,kg,a684e5f3-0578-3e8a-b1a3-1cd93ca77531 -2015,Buenos Aires,II.5.1,399.507784788,TJ,CO2,74100.0,kg/TJ,29603526.8527908,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,74749242-9e49-3d76-a7d2-4cfe0bbdf5fe -2015,Buenos Aires,II.5.1,399.507784788,TJ,CH4,3.9,kg/TJ,1558.0803606732,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,13005a9b-289a-3202-8629-45267189378e -2015,Buenos Aires,II.5.1,399.507784788,TJ,N2O,3.9,kg/TJ,1558.0803606732,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,13005a9b-289a-3202-8629-45267189378e -2015,Córdoba,II.5.1,557.5511156880001,TJ,CO2,74100.0,kg/TJ,41314537.67248081,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,6213e843-f2ad-3ffd-b7eb-38b5c6796afc -2015,Córdoba,II.5.1,557.5511156880001,TJ,CH4,3.9,kg/TJ,2174.4493511832,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,fc32337e-9a53-3618-a3c8-76c2c5973037 -2015,Córdoba,II.5.1,557.5511156880001,TJ,N2O,3.9,kg/TJ,2174.4493511832,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,fc32337e-9a53-3618-a3c8-76c2c5973037 -2015,Entre Rios,II.5.1,394.850305836,TJ,CO2,74100.0,kg/TJ,29258407.6624476,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,12589ffd-7593-3eb3-9dd3-d1f1c7a094b5 -2015,Entre Rios,II.5.1,394.850305836,TJ,CH4,3.9,kg/TJ,1539.9161927604,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,f78acd09-ffbd-3f62-ba57-ec5573ee77fb -2015,Entre Rios,II.5.1,394.850305836,TJ,N2O,3.9,kg/TJ,1539.9161927604,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,f78acd09-ffbd-3f62-ba57-ec5573ee77fb -2015,La Pampa,II.5.1,80.77418798400001,TJ,CO2,74100.0,kg/TJ,5985367.329614401,Gas Oil combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,a970b4cd-b604-30c8-b92f-0a46274a6c9e -2015,La Pampa,II.5.1,80.77418798400001,TJ,CH4,3.9,kg/TJ,315.01933313760003,Gas Oil combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,c38d99df-004e-3e22-a109-59bb1c6adc50 -2015,La Pampa,II.5.1,80.77418798400001,TJ,N2O,3.9,kg/TJ,315.01933313760003,Gas Oil combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,c38d99df-004e-3e22-a109-59bb1c6adc50 -2015,Santa Fe,II.5.1,1123.565259348,TJ,CO2,74100.0,kg/TJ,83256185.71768679,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,c51584f8-454c-3943-9831-3cb14ef4a90d -2015,Santa Fe,II.5.1,1123.565259348,TJ,CH4,3.9,kg/TJ,4381.9045114572,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,dd052940-1468-3c29-b893-e4d4f4a658f4 -2015,Santa Fe,II.5.1,1123.565259348,TJ,N2O,3.9,kg/TJ,4381.9045114572,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,dd052940-1468-3c29-b893-e4d4f4a658f4 -2015,Santiago del Estero,II.5.1,55.894713923999994,TJ,CO2,74100.0,kg/TJ,4141798.3017684,Gas Oil combustion consumption by agriculture machines,AR-G,SESCO,annual,kg,e24e3484-f84a-3e4f-9353-1ee90f6dfb02 -2015,Santiago del Estero,II.5.1,55.894713923999994,TJ,CH4,3.9,kg/TJ,217.98938430359996,Gas Oil combustion consumption by agriculture machines,AR-G,SESCO,annual,kg,a0e0319c-8262-3810-8903-83231a3821a7 -2015,Santiago del Estero,II.5.1,55.894713923999994,TJ,N2O,3.9,kg/TJ,217.98938430359996,Gas Oil combustion consumption by agriculture machines,AR-G,SESCO,annual,kg,a0e0319c-8262-3810-8903-83231a3821a7 -2015,Córdoba,II.5.1,0.359552928,TJ,CO2,74100.0,kg/TJ,26642.8719648,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,d47efe3a-852e-3d99-8486-7be48de8e980 -2015,Córdoba,II.5.1,0.359552928,TJ,CH4,3.9,kg/TJ,1.4022564192,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,8f2acbe6-a123-32ae-883b-3761ede56bab -2015,Córdoba,II.5.1,0.359552928,TJ,N2O,3.9,kg/TJ,1.4022564192,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,8f2acbe6-a123-32ae-883b-3761ede56bab -2015,Entre Rios,II.5.1,1.934106804,TJ,CO2,74100.0,kg/TJ,143317.3141764,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,7e064799-abf7-3669-8f76-ef5fa861448b -2015,Entre Rios,II.5.1,1.934106804,TJ,CH4,3.9,kg/TJ,7.5430165356,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,a329212e-ab2c-3e60-887a-30d0763d80cc -2015,Entre Rios,II.5.1,1.934106804,TJ,N2O,3.9,kg/TJ,7.5430165356,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,a329212e-ab2c-3e60-887a-30d0763d80cc -2015,Córdoba,II.5.1,7.009029104000001,TJ,CO2,73300.0,kg/TJ,513761.83332320006,Naphtha combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,e8214b50-10ab-324c-91b3-b8db3846449c -2015,Córdoba,II.5.1,7.009029104000001,TJ,CH4,0.5,kg/TJ,3.5045145520000003,Naphtha combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,d6d8eacf-769f-3acc-aed0-f99db0a98584 -2015,Córdoba,II.5.1,7.009029104000001,TJ,N2O,2.0,kg/TJ,14.018058208000001,Naphtha combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,f974a8d4-9867-3a89-9c11-b5d28c733463 -2015,Santa Fe,II.5.1,14.6636005285,TJ,CO2,73300.0,kg/TJ,1074841.91873905,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,939f4085-2476-301f-b28b-86d3b7bc1675 -2015,Santa Fe,II.5.1,14.6636005285,TJ,CH4,0.5,kg/TJ,7.33180026425,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,5067b550-b685-37d8-8d9d-3df77873b2ab -2015,Santa Fe,II.5.1,14.6636005285,TJ,N2O,2.0,kg/TJ,29.327201057,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,7e3deaba-cbbc-30ac-96af-9ade494ae31d -2015,Santiago del Estero,II.5.1,16.0404573175,TJ,CO2,73300.0,kg/TJ,1175765.52137275,Naphtha combustion consumption by agriculture machines,AR-G,SESCO,annual,kg,7d495237-809c-333d-9379-d36445047260 -2015,Santiago del Estero,II.5.1,16.0404573175,TJ,CH4,0.5,kg/TJ,8.02022865875,Naphtha combustion consumption by agriculture machines,AR-G,SESCO,annual,kg,acf94ddb-d992-35df-b4d0-ae0a3724b9a6 -2015,Santiago del Estero,II.5.1,16.0404573175,TJ,N2O,2.0,kg/TJ,32.080914635,Naphtha combustion consumption by agriculture machines,AR-G,SESCO,annual,kg,920d9baf-372c-37b0-b59d-d8259e927780 -2015,Santa Fe,II.5.1,1.1529110285,TJ,CO2,73300.0,kg/TJ,84508.37838904999,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,66639d16-0bb1-39d1-a275-02bb811db701 -2015,Santa Fe,II.5.1,1.1529110285,TJ,CH4,0.5,kg/TJ,0.57645551425,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,9658d67d-933b-3466-ba80-ab58ec1c4a32 -2015,Santa Fe,II.5.1,1.1529110285,TJ,N2O,2.0,kg/TJ,2.305822057,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,c2a0e5af-347d-3c32-8bea-b98dfd674b35 -2015,Buenos Aires,II.1.1,276.22680783600003,TJ,CO2,74100.0,kg/TJ,20468406.4606476,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,23670be9-80c4-30d9-a4b5-d098f7944296 -2015,Buenos Aires,II.1.1,276.22680783600003,TJ,CH4,3.9,kg/TJ,1077.2845505604,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,cf0d5e51-c488-38a8-b45c-127146644aba -2015,Buenos Aires,II.1.1,276.22680783600003,TJ,N2O,3.9,kg/TJ,1077.2845505604,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,cf0d5e51-c488-38a8-b45c-127146644aba -2015,Chaco,II.1.1,10.009765836000001,TJ,CO2,74100.0,kg/TJ,741723.6484476001,Gas Oil combustion consumption by public passenger transport,AR-H,SESCO,annual,kg,efcb4789-e066-3955-aeb9-026d295d21fb -2015,Chaco,II.1.1,10.009765836000001,TJ,CH4,3.9,kg/TJ,39.038086760400006,Gas Oil combustion consumption by public passenger transport,AR-H,SESCO,annual,kg,d98a15b5-f3c9-3e1e-b07d-562af549e470 -2015,Chaco,II.1.1,10.009765836000001,TJ,N2O,3.9,kg/TJ,39.038086760400006,Gas Oil combustion consumption by public passenger transport,AR-H,SESCO,annual,kg,d98a15b5-f3c9-3e1e-b07d-562af549e470 -2015,Corrientes,II.1.1,38.07293616,TJ,CO2,74100.0,kg/TJ,2821204.569456,Gas Oil combustion consumption by public passenger transport,AR-W,SESCO,annual,kg,eae98625-df56-3345-8efd-d3bf4a1201f0 -2015,Corrientes,II.1.1,38.07293616,TJ,CH4,3.9,kg/TJ,148.48445102399998,Gas Oil combustion consumption by public passenger transport,AR-W,SESCO,annual,kg,1ebb69e6-8179-3d98-8de5-6e02810e0879 -2015,Corrientes,II.1.1,38.07293616,TJ,N2O,3.9,kg/TJ,148.48445102399998,Gas Oil combustion consumption by public passenger transport,AR-W,SESCO,annual,kg,1ebb69e6-8179-3d98-8de5-6e02810e0879 -2015,Córdoba,II.1.1,335.9979057119999,TJ,CO2,74100.0,kg/TJ,24897444.813259196,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,df9f3e18-d6e1-3f63-9912-f12dc8ac891f -2015,Córdoba,II.1.1,335.9979057119999,TJ,CH4,3.9,kg/TJ,1310.3918322767997,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,48e8b6e2-1c67-3a18-a591-c79c99a853ea -2015,Córdoba,II.1.1,335.9979057119999,TJ,N2O,3.9,kg/TJ,1310.3918322767997,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,48e8b6e2-1c67-3a18-a591-c79c99a853ea -2015,Entre Rios,II.1.1,95.890068456,TJ,CO2,74100.0,kg/TJ,7105454.0725895995,Gas Oil combustion consumption by public passenger transport,AR-E,SESCO,annual,kg,09d51464-25a7-32b8-b28b-728c08bd2338 -2015,Entre Rios,II.1.1,95.890068456,TJ,CH4,3.9,kg/TJ,373.97126697839997,Gas Oil combustion consumption by public passenger transport,AR-E,SESCO,annual,kg,d94d716a-4449-395d-b8ef-639074589a64 -2015,Entre Rios,II.1.1,95.890068456,TJ,N2O,3.9,kg/TJ,373.97126697839997,Gas Oil combustion consumption by public passenger transport,AR-E,SESCO,annual,kg,d94d716a-4449-395d-b8ef-639074589a64 -2015,Jujuy,II.1.1,105.05322483599998,TJ,CO2,74100.0,kg/TJ,7784443.960347598,Gas Oil combustion consumption by public passenger transport,AR-Y,SESCO,annual,kg,3ff03235-80cf-3eed-8ba0-b127e9b627f2 -2015,Jujuy,II.1.1,105.05322483599998,TJ,CH4,3.9,kg/TJ,409.7075768603999,Gas Oil combustion consumption by public passenger transport,AR-Y,SESCO,annual,kg,06adfee0-81ca-3480-8fca-ca58ab7b63a6 -2015,Jujuy,II.1.1,105.05322483599998,TJ,N2O,3.9,kg/TJ,409.7075768603999,Gas Oil combustion consumption by public passenger transport,AR-Y,SESCO,annual,kg,06adfee0-81ca-3480-8fca-ca58ab7b63a6 -2015,Salta,II.1.1,90.214316136,TJ,CO2,74100.0,kg/TJ,6684880.8256776,Gas Oil combustion consumption by public passenger transport,AR-A,SESCO,annual,kg,8358e4c9-98cf-3959-bb4d-49042d0be694 -2015,Salta,II.1.1,90.214316136,TJ,CH4,3.9,kg/TJ,351.8358329304,Gas Oil combustion consumption by public passenger transport,AR-A,SESCO,annual,kg,cb0c8e15-c710-35cf-b183-0e0d521dc31d -2015,Salta,II.1.1,90.214316136,TJ,N2O,3.9,kg/TJ,351.8358329304,Gas Oil combustion consumption by public passenger transport,AR-A,SESCO,annual,kg,cb0c8e15-c710-35cf-b183-0e0d521dc31d -2015,Santa Fe,II.1.1,306.38940620399995,TJ,CO2,74100.0,kg/TJ,22703454.999716397,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,6eef01ba-0301-3e2d-802f-d6a99f28d9fd -2015,Santa Fe,II.1.1,306.38940620399995,TJ,CH4,3.9,kg/TJ,1194.9186841955998,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,39a17ad5-c3c9-3770-91eb-f692314001ed -2015,Santa Fe,II.1.1,306.38940620399995,TJ,N2O,3.9,kg/TJ,1194.9186841955998,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,39a17ad5-c3c9-3770-91eb-f692314001ed -2015,Santiago del Estero,II.1.1,126.25103064,TJ,CO2,74100.0,kg/TJ,9355201.370424,Gas Oil combustion consumption by public passenger transport,AR-G,SESCO,annual,kg,ccccb12a-e5d0-38ef-ba6b-7398db024db2 -2015,Santiago del Estero,II.1.1,126.25103064,TJ,CH4,3.9,kg/TJ,492.37901949599996,Gas Oil combustion consumption by public passenger transport,AR-G,SESCO,annual,kg,922de990-575a-3d3d-aed1-a203e1c2a995 -2015,Santiago del Estero,II.1.1,126.25103064,TJ,N2O,3.9,kg/TJ,492.37901949599996,Gas Oil combustion consumption by public passenger transport,AR-G,SESCO,annual,kg,922de990-575a-3d3d-aed1-a203e1c2a995 -2015,Tucuman,II.1.1,29.206642836,TJ,CO2,74100.0,kg/TJ,2164212.2341476,Gas Oil combustion consumption by public passenger transport,AR-T,SESCO,annual,kg,a2d30a25-b5b3-321c-8886-8c37b9111404 -2015,Tucuman,II.1.1,29.206642836,TJ,CH4,3.9,kg/TJ,113.9059070604,Gas Oil combustion consumption by public passenger transport,AR-T,SESCO,annual,kg,24f75ce5-fb4b-357d-8c82-583dedf08a9b -2015,Tucuman,II.1.1,29.206642836,TJ,N2O,3.9,kg/TJ,113.9059070604,Gas Oil combustion consumption by public passenger transport,AR-T,SESCO,annual,kg,24f75ce5-fb4b-357d-8c82-583dedf08a9b -2015,Córdoba,II.1.1,0.7917937439999998,TJ,CO2,74100.0,kg/TJ,58671.916430399986,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,7880237a-2470-34d8-8014-5e042a7a9a5c -2015,Córdoba,II.1.1,0.7917937439999998,TJ,CH4,3.9,kg/TJ,3.087995601599999,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,4c612aeb-405f-36ed-8247-7dec28a8d438 -2015,Córdoba,II.1.1,0.7917937439999998,TJ,N2O,3.9,kg/TJ,3.087995601599999,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,4c612aeb-405f-36ed-8247-7dec28a8d438 -2015,Buenos Aires,II.5.1,519.48419712,TJ,CO2,74100.0,kg/TJ,38493779.006592,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,bcc34d8e-0073-3ef1-a981-5686e9ca4de3 -2015,Buenos Aires,II.5.1,519.48419712,TJ,CH4,3.9,kg/TJ,2025.9883687679999,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,e7737653-77c1-34ff-87f1-38a2009fd908 -2015,Buenos Aires,II.5.1,519.48419712,TJ,N2O,3.9,kg/TJ,2025.9883687679999,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,e7737653-77c1-34ff-87f1-38a2009fd908 -2015,Córdoba,II.5.1,78.08840592,TJ,CO2,74100.0,kg/TJ,5786350.878672,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,b562d65d-10a0-3d3a-b270-1514020891a2 -2015,Córdoba,II.5.1,78.08840592,TJ,CH4,3.9,kg/TJ,304.544783088,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,879a0791-1bb7-320d-b0a4-3c4ae94ea3ba -2015,Córdoba,II.5.1,78.08840592,TJ,N2O,3.9,kg/TJ,304.544783088,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,879a0791-1bb7-320d-b0a4-3c4ae94ea3ba -2015,La Pampa,II.5.1,3.61730964,TJ,CO2,74100.0,kg/TJ,268042.644324,Gas Oil combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,2d5c5f1f-f127-3bd5-9647-68fc09fa027a -2015,La Pampa,II.5.1,3.61730964,TJ,CH4,3.9,kg/TJ,14.107507596000001,Gas Oil combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,f1e52adb-6a98-3550-94aa-fbc1c6a46dde -2015,La Pampa,II.5.1,3.61730964,TJ,N2O,3.9,kg/TJ,14.107507596000001,Gas Oil combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,f1e52adb-6a98-3550-94aa-fbc1c6a46dde -2015,Neuquén,II.5.1,50.72526648,TJ,CO2,74100.0,kg/TJ,3758742.246168,Gas Oil combustion consumption by agriculture machines,AR-Q,SESCO,annual,kg,ebde6a9f-73fb-3cca-aa7d-beaed16e4072 -2015,Neuquén,II.5.1,50.72526648,TJ,CH4,3.9,kg/TJ,197.828539272,Gas Oil combustion consumption by agriculture machines,AR-Q,SESCO,annual,kg,03c3a84c-df6e-3b6f-a334-c09bae00daec -2015,Neuquén,II.5.1,50.72526648,TJ,N2O,3.9,kg/TJ,197.828539272,Gas Oil combustion consumption by agriculture machines,AR-Q,SESCO,annual,kg,03c3a84c-df6e-3b6f-a334-c09bae00daec -2015,Rio Negro,II.5.1,4.19718012,TJ,CO2,74100.0,kg/TJ,311011.04689199995,Gas Oil combustion consumption by agriculture machines,AR-R,SESCO,annual,kg,d89fbdfb-0246-3fa2-ac52-93f58892575f -2015,Rio Negro,II.5.1,4.19718012,TJ,CH4,3.9,kg/TJ,16.369002467999998,Gas Oil combustion consumption by agriculture machines,AR-R,SESCO,annual,kg,639e7d05-e8f1-32ae-912f-279ca3cd464f -2015,Rio Negro,II.5.1,4.19718012,TJ,N2O,3.9,kg/TJ,16.369002467999998,Gas Oil combustion consumption by agriculture machines,AR-R,SESCO,annual,kg,639e7d05-e8f1-32ae-912f-279ca3cd464f -2015,Santa Fe,II.5.1,8.47367976,TJ,CO2,74100.0,kg/TJ,627899.6702159999,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,fb72110c-b0cc-332d-aed4-41771a3e394c -2015,Santa Fe,II.5.1,8.47367976,TJ,CH4,3.9,kg/TJ,33.047351064,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,36629245-85af-3362-a5a7-4157479c3b63 -2015,Santa Fe,II.5.1,8.47367976,TJ,N2O,3.9,kg/TJ,33.047351064,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,36629245-85af-3362-a5a7-4157479c3b63 -2015,Buenos Aires,II.5.1,1.1915265599999998,TJ,CO2,74100.0,kg/TJ,88292.11809599999,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,74d32bf7-6333-3ceb-9580-39cada88fc5a -2015,Buenos Aires,II.5.1,1.1915265599999998,TJ,CH4,3.9,kg/TJ,4.646953583999999,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,7b78e6f3-77b9-39fd-91b2-8c190a27478f -2015,Buenos Aires,II.5.1,1.1915265599999998,TJ,N2O,3.9,kg/TJ,4.646953583999999,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,7b78e6f3-77b9-39fd-91b2-8c190a27478f -2015,Buenos Aires,II.5.1,8.83570996,TJ,CO2,73300.0,kg/TJ,647657.5400680001,Naphtha combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,46c584dc-a250-30fd-b953-8dfb8f11ab18 -2015,Buenos Aires,II.5.1,8.83570996,TJ,CH4,0.5,kg/TJ,4.41785498,Naphtha combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,1ca33192-0ef2-3da1-9303-76c56e63e912 -2015,Buenos Aires,II.5.1,8.83570996,TJ,N2O,2.0,kg/TJ,17.67141992,Naphtha combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,582a4c7e-3d95-3566-a457-a061a4201f1c -2015,Rio Negro,II.5.1,0.23533202,TJ,CO2,73300.0,kg/TJ,17249.837066,Naphtha combustion consumption by agriculture machines,AR-R,SESCO,annual,kg,561d237f-5fb4-3259-8ad5-61e7ff230f34 -2015,Rio Negro,II.5.1,0.23533202,TJ,CH4,0.5,kg/TJ,0.11766601,Naphtha combustion consumption by agriculture machines,AR-R,SESCO,annual,kg,ff7efc3b-fef0-3ff3-ab18-54fd0076fcba -2015,Rio Negro,II.5.1,0.23533202,TJ,N2O,2.0,kg/TJ,0.47066404,Naphtha combustion consumption by agriculture machines,AR-R,SESCO,annual,kg,7769e23d-cc0b-3f53-b0a9-32576c5a01b3 -2015,Buenos Aires,II.2.1,32.150123040000004,TJ,CO2,74100.0,kg/TJ,2382324.1172640002,Gas Oil combustion consumption by railway transport,AR-B,SESCO,annual,kg,84ebc478-0fa2-3a3c-aedb-ac9da58354f6 -2015,Buenos Aires,II.2.1,32.150123040000004,TJ,CH4,3.9,kg/TJ,125.38547985600002,Gas Oil combustion consumption by railway transport,AR-B,SESCO,annual,kg,038ad54b-4090-3cd3-8103-252199438d79 -2015,Buenos Aires,II.2.1,32.150123040000004,TJ,N2O,3.9,kg/TJ,125.38547985600002,Gas Oil combustion consumption by railway transport,AR-B,SESCO,annual,kg,038ad54b-4090-3cd3-8103-252199438d79 -2015,Buenos Aires,II.1.1,1.085793,TJ,CO2,69300.0,kg/TJ,75245.4549,Motor Gasoline combustion consumption by freight transport,AR-B,SESCO,annual,kg,5d5acd89-b165-37eb-8f2a-74c332633e3a -2015,Buenos Aires,II.1.1,1.085793,TJ,CH4,33.0,kg/TJ,35.831169,Motor Gasoline combustion consumption by freight transport,AR-B,SESCO,annual,kg,6afe4e1d-c895-37cd-8cd6-ed31674c5112 -2015,Buenos Aires,II.1.1,1.085793,TJ,N2O,3.2,kg/TJ,3.4745376,Motor Gasoline combustion consumption by freight transport,AR-B,SESCO,annual,kg,d54db7ad-e0d3-3bc0-bbf9-4a4892a0ece5 -2015,Buenos Aires,II.1.1,283.58328516,TJ,CO2,74100.0,kg/TJ,21013521.430356,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,de5097b4-2818-33d2-a922-36ad700bf936 -2015,Buenos Aires,II.1.1,283.58328516,TJ,CH4,3.9,kg/TJ,1105.974812124,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,f79824d3-a8bc-3878-befe-7dc25f64e302 -2015,Buenos Aires,II.1.1,283.58328516,TJ,N2O,3.9,kg/TJ,1105.974812124,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,f79824d3-a8bc-3878-befe-7dc25f64e302 -2015,Chubut,II.1.1,0.5326616399999999,TJ,CO2,74100.0,kg/TJ,39470.227523999994,Gas Oil combustion consumption by freight transport,AR-U,SESCO,annual,kg,4af4318b-99ff-3ac4-b77a-9afe4d758417 -2015,Chubut,II.1.1,0.5326616399999999,TJ,CH4,3.9,kg/TJ,2.0773803959999997,Gas Oil combustion consumption by freight transport,AR-U,SESCO,annual,kg,22f538cf-adf1-3714-b909-c075673b64aa -2015,Chubut,II.1.1,0.5326616399999999,TJ,N2O,3.9,kg/TJ,2.0773803959999997,Gas Oil combustion consumption by freight transport,AR-U,SESCO,annual,kg,22f538cf-adf1-3714-b909-c075673b64aa -2015,San Luis,II.1.1,68.2402518,TJ,CO2,74100.0,kg/TJ,5056602.65838,Gas Oil combustion consumption by freight transport,AR-D,SESCO,annual,kg,c3af7820-8265-331c-9daf-6a96c3586ad4 -2015,San Luis,II.1.1,68.2402518,TJ,CH4,3.9,kg/TJ,266.13698202,Gas Oil combustion consumption by freight transport,AR-D,SESCO,annual,kg,117acec6-259f-314e-85c8-6582fa05503f -2015,San Luis,II.1.1,68.2402518,TJ,N2O,3.9,kg/TJ,266.13698202,Gas Oil combustion consumption by freight transport,AR-D,SESCO,annual,kg,117acec6-259f-314e-85c8-6582fa05503f -2015,Buenos Aires,II.1.1,3.42041952,TJ,CO2,74100.0,kg/TJ,253453.08643199998,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,2db9451d-6cb0-397f-a041-e1232676cb94 -2015,Buenos Aires,II.1.1,3.42041952,TJ,CH4,3.9,kg/TJ,13.339636127999999,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,9f968687-c513-3eea-806d-e69d18e57770 -2015,Buenos Aires,II.1.1,3.42041952,TJ,N2O,3.9,kg/TJ,13.339636127999999,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,9f968687-c513-3eea-806d-e69d18e57770 -2015,Buenos Aires,II.1.1,439.65520452000004,TJ,CO2,74100.0,kg/TJ,32578450.654932003,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,ae33aa15-e402-3402-b554-83cf5b14382c -2015,Buenos Aires,II.1.1,439.65520452000004,TJ,CH4,3.9,kg/TJ,1714.6552976280002,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,5c4fac7a-0917-36c2-8966-5667a30ff123 -2015,Buenos Aires,II.1.1,439.65520452000004,TJ,N2O,3.9,kg/TJ,1714.6552976280002,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,5c4fac7a-0917-36c2-8966-5667a30ff123 -2015,Capital Federal,II.1.1,58.76008824000001,TJ,CO2,74100.0,kg/TJ,4354122.538584,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,6e82297c-b061-3b65-9747-23222cfdfbb4 -2015,Capital Federal,II.1.1,58.76008824000001,TJ,CH4,3.9,kg/TJ,229.16434413600004,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,5779ad0b-3392-3d26-9907-21a9cab0860b -2015,Capital Federal,II.1.1,58.76008824000001,TJ,N2O,3.9,kg/TJ,229.16434413600004,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,5779ad0b-3392-3d26-9907-21a9cab0860b -2015,Chubut,II.1.1,35.23502388,TJ,CO2,74100.0,kg/TJ,2610915.269508,Gas Oil combustion consumption by public passenger transport,AR-U,SESCO,annual,kg,e547dc82-dbac-3bea-ba03-4a7fe2f81f69 -2015,Chubut,II.1.1,35.23502388,TJ,CH4,3.9,kg/TJ,137.416593132,Gas Oil combustion consumption by public passenger transport,AR-U,SESCO,annual,kg,f16ae9d4-6db7-3051-8661-734956136e9e -2015,Chubut,II.1.1,35.23502388,TJ,N2O,3.9,kg/TJ,137.416593132,Gas Oil combustion consumption by public passenger transport,AR-U,SESCO,annual,kg,f16ae9d4-6db7-3051-8661-734956136e9e -2015,Córdoba,II.1.1,283.72238328,TJ,CO2,74100.0,kg/TJ,21023828.601047996,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,1a9354b5-fc17-3bec-b771-efc364e7d864 -2015,Córdoba,II.1.1,283.72238328,TJ,CH4,3.9,kg/TJ,1106.5172947919998,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,6af060ed-0019-350d-8bd0-5fec96d95c9c -2015,Córdoba,II.1.1,283.72238328,TJ,N2O,3.9,kg/TJ,1106.5172947919998,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,6af060ed-0019-350d-8bd0-5fec96d95c9c -2015,Neuquén,II.1.1,27.757750440000002,TJ,CO2,74100.0,kg/TJ,2056849.3076040002,Gas Oil combustion consumption by public passenger transport,AR-Q,SESCO,annual,kg,8402ab6d-987f-3e54-b2e4-b4737ef66586 -2015,Neuquén,II.1.1,27.757750440000002,TJ,CH4,3.9,kg/TJ,108.25522671600001,Gas Oil combustion consumption by public passenger transport,AR-Q,SESCO,annual,kg,a1072ccd-4db6-393a-83e9-6640defc3cda -2015,Neuquén,II.1.1,27.757750440000002,TJ,N2O,3.9,kg/TJ,108.25522671600001,Gas Oil combustion consumption by public passenger transport,AR-Q,SESCO,annual,kg,a1072ccd-4db6-393a-83e9-6640defc3cda -2015,Rio Negro,II.1.1,135.34369884,TJ,CO2,74100.0,kg/TJ,10028968.084044,Gas Oil combustion consumption by public passenger transport,AR-R,SESCO,annual,kg,873495b9-f324-385b-bcea-ec64a5108d7a -2015,Rio Negro,II.1.1,135.34369884,TJ,CH4,3.9,kg/TJ,527.840425476,Gas Oil combustion consumption by public passenger transport,AR-R,SESCO,annual,kg,72b3209e-a5b8-3241-a6a6-fbe833cdd7ec -2015,Rio Negro,II.1.1,135.34369884,TJ,N2O,3.9,kg/TJ,527.840425476,Gas Oil combustion consumption by public passenger transport,AR-R,SESCO,annual,kg,72b3209e-a5b8-3241-a6a6-fbe833cdd7ec -2015,Santa Cruz,II.1.1,5.545900919999999,TJ,CO2,74100.0,kg/TJ,410951.25817199994,Gas Oil combustion consumption by public passenger transport,AR-Z,SESCO,annual,kg,41346242-9270-30b0-b191-f8e43c486357 -2015,Santa Cruz,II.1.1,5.545900919999999,TJ,CH4,3.9,kg/TJ,21.629013587999996,Gas Oil combustion consumption by public passenger transport,AR-Z,SESCO,annual,kg,537dd183-f299-3b9a-8ea4-cf45a2075059 -2015,Santa Cruz,II.1.1,5.545900919999999,TJ,N2O,3.9,kg/TJ,21.629013587999996,Gas Oil combustion consumption by public passenger transport,AR-Z,SESCO,annual,kg,537dd183-f299-3b9a-8ea4-cf45a2075059 -2015,Santa Fe,II.1.1,6.387388559999999,TJ,CO2,74100.0,kg/TJ,473305.4922959999,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,7c4c3218-847c-3a1d-8126-02000e950b77 -2015,Santa Fe,II.1.1,6.387388559999999,TJ,CH4,3.9,kg/TJ,24.910815383999996,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,b26ded4a-d19a-3a17-b005-2dbbf52ead77 -2015,Santa Fe,II.1.1,6.387388559999999,TJ,N2O,3.9,kg/TJ,24.910815383999996,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,b26ded4a-d19a-3a17-b005-2dbbf52ead77 -2015,Santiago del Estero,II.1.1,0.17922744,TJ,CO2,74100.0,kg/TJ,13280.753304,Gas Oil combustion consumption by public passenger transport,AR-G,SESCO,annual,kg,da1c421e-13d9-32cf-96fd-330f0db6cf06 -2015,Santiago del Estero,II.1.1,0.17922744,TJ,CH4,3.9,kg/TJ,0.6989870159999999,Gas Oil combustion consumption by public passenger transport,AR-G,SESCO,annual,kg,0d5e1a37-05d9-3daa-ab92-70a5f0c3f7a4 -2015,Santiago del Estero,II.1.1,0.17922744,TJ,N2O,3.9,kg/TJ,0.6989870159999999,Gas Oil combustion consumption by public passenger transport,AR-G,SESCO,annual,kg,0d5e1a37-05d9-3daa-ab92-70a5f0c3f7a4 -2015,Capital Federal,II.5.1,60.24799999999999,TJ,CO2,69300.0,kg/TJ,4175186.3999999994,Motor Gasoline combustion consumption by agriculture machines,AR-C,SESCO,annual,kg,43565269-9cd0-3064-ae25-ce8c97797ce6 -2015,Capital Federal,II.5.1,60.24799999999999,TJ,CH4,33.0,kg/TJ,1988.1839999999997,Motor Gasoline combustion consumption by agriculture machines,AR-C,SESCO,annual,kg,536a9ca9-d070-3fa7-bc9e-415a28f084a8 -2015,Capital Federal,II.5.1,60.24799999999999,TJ,N2O,3.2,kg/TJ,192.79359999999997,Motor Gasoline combustion consumption by agriculture machines,AR-C,SESCO,annual,kg,b047ba26-053d-3f2a-af3b-42069b719cf2 -2015,Buenos Aires,II.5.1,440.55564,TJ,CO2,74100.0,kg/TJ,32645172.924,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,e6021fba-0bd3-3f18-8f69-be382a49da43 -2015,Buenos Aires,II.5.1,440.55564,TJ,CH4,3.9,kg/TJ,1718.166996,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,7035be4e-fd37-3586-a359-a5631913600e -2015,Buenos Aires,II.5.1,440.55564,TJ,N2O,3.9,kg/TJ,1718.166996,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,7035be4e-fd37-3586-a359-a5631913600e -2015,Capital Federal,II.5.1,21.16632,TJ,CO2,74100.0,kg/TJ,1568424.312,Gas Oil combustion consumption by agriculture machines,AR-C,SESCO,annual,kg,e3d73b30-a3c0-3172-9ee8-4c8b9566d1ea -2015,Capital Federal,II.5.1,21.16632,TJ,CH4,3.9,kg/TJ,82.548648,Gas Oil combustion consumption by agriculture machines,AR-C,SESCO,annual,kg,26b83eec-daf3-3636-a54e-83821c20b080 -2015,Capital Federal,II.5.1,21.16632,TJ,N2O,3.9,kg/TJ,82.548648,Gas Oil combustion consumption by agriculture machines,AR-C,SESCO,annual,kg,26b83eec-daf3-3636-a54e-83821c20b080 -2015,Córdoba,II.5.1,166.07976,TJ,CO2,74100.0,kg/TJ,12306510.216,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,1f141379-a5e9-3d58-94b7-a2c353f80517 -2015,Córdoba,II.5.1,166.07976,TJ,CH4,3.9,kg/TJ,647.711064,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,139e20c5-59e1-3e56-8c9f-d917ce958207 -2015,Córdoba,II.5.1,166.07976,TJ,N2O,3.9,kg/TJ,647.711064,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,139e20c5-59e1-3e56-8c9f-d917ce958207 -2015,Santa Fe,II.5.1,482.77992,TJ,CO2,74100.0,kg/TJ,35773992.072,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,1ba327d0-f9ce-351e-81c8-810340c989d3 -2015,Santa Fe,II.5.1,482.77992,TJ,CH4,3.9,kg/TJ,1882.841688,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,caec9172-e3af-3008-aadb-fcc0e707702a -2015,Santa Fe,II.5.1,482.77992,TJ,N2O,3.9,kg/TJ,1882.841688,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,caec9172-e3af-3008-aadb-fcc0e707702a -2015,Buenos Aires,II.5.1,7.26012,TJ,CO2,74100.0,kg/TJ,537974.892,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,432b9c12-d887-35d6-a960-6a4df53626f5 -2015,Buenos Aires,II.5.1,7.26012,TJ,CH4,3.9,kg/TJ,28.314467999999998,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,77bc9fe8-5005-3940-a105-affb5737a1c9 -2015,Buenos Aires,II.5.1,7.26012,TJ,N2O,3.9,kg/TJ,28.314467999999998,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,77bc9fe8-5005-3940-a105-affb5737a1c9 -2015,Santa Fe,II.5.1,21.63588,TJ,CO2,74100.0,kg/TJ,1603218.708,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,6272e44a-681e-3b6f-8c71-481df3bc7ac5 -2015,Santa Fe,II.5.1,21.63588,TJ,CH4,3.9,kg/TJ,84.379932,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,2d74ee74-c249-3d44-9c29-f94df4d851b3 -2015,Santa Fe,II.5.1,21.63588,TJ,N2O,3.9,kg/TJ,84.379932,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,2d74ee74-c249-3d44-9c29-f94df4d851b3 -2015,Santa Fe,II.5.1,37.89709,TJ,CO2,73300.0,kg/TJ,2777856.6969999997,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,44c880ef-209b-3a32-8268-0297097d914d -2015,Santa Fe,II.5.1,37.89709,TJ,CH4,0.5,kg/TJ,18.948545,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,724941c8-21b6-3a67-ab2b-77483bc96501 -2015,Santa Fe,II.5.1,37.89709,TJ,N2O,2.0,kg/TJ,75.79418,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,e0c18b84-9b57-3900-afbd-1e4fffe7dc3f -2015,Santa Fe,II.5.1,6.3390249999999995,TJ,CO2,73300.0,kg/TJ,464650.5325,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,36248255-dd90-3a52-9035-39dcaa6f67b4 -2015,Santa Fe,II.5.1,6.3390249999999995,TJ,CH4,0.5,kg/TJ,3.1695124999999997,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,17dd680a-fb60-33fe-8b63-34087306a311 -2015,Santa Fe,II.5.1,6.3390249999999995,TJ,N2O,2.0,kg/TJ,12.678049999999999,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,d50050af-3319-384b-bdcb-82f0500d6ded -2015,Buenos Aires,II.2.1,539.52444,TJ,CO2,74100.0,kg/TJ,39978761.004,Gas Oil combustion consumption by railway transport,AR-B,SESCO,annual,kg,89f3aa03-492e-3376-98f5-228c93ab23e8 -2015,Buenos Aires,II.2.1,539.52444,TJ,CH4,3.9,kg/TJ,2104.145316,Gas Oil combustion consumption by railway transport,AR-B,SESCO,annual,kg,02aeb827-57e0-39f3-9e50-21a16055c376 -2015,Buenos Aires,II.2.1,539.52444,TJ,N2O,3.9,kg/TJ,2104.145316,Gas Oil combustion consumption by railway transport,AR-B,SESCO,annual,kg,02aeb827-57e0-39f3-9e50-21a16055c376 -2015,Capital Federal,II.2.1,281.3748,TJ,CO2,74100.0,kg/TJ,20849872.68,Gas Oil combustion consumption by railway transport,AR-C,SESCO,annual,kg,cd80a16d-76a1-3583-ba36-b46f3c6021af -2015,Capital Federal,II.2.1,281.3748,TJ,CH4,3.9,kg/TJ,1097.3617199999999,Gas Oil combustion consumption by railway transport,AR-C,SESCO,annual,kg,cdbc6d22-0c9f-3b33-a6e6-5a41f2ec9e1b -2015,Capital Federal,II.2.1,281.3748,TJ,N2O,3.9,kg/TJ,1097.3617199999999,Gas Oil combustion consumption by railway transport,AR-C,SESCO,annual,kg,cdbc6d22-0c9f-3b33-a6e6-5a41f2ec9e1b -2015,Santa Fe,II.2.1,352.45896,TJ,CO2,74100.0,kg/TJ,26117208.936,Gas Oil combustion consumption by railway transport,AR-S,SESCO,annual,kg,55708f1a-08e3-3fdf-a3e4-91b7b94a5a58 -2015,Santa Fe,II.2.1,352.45896,TJ,CH4,3.9,kg/TJ,1374.5899439999998,Gas Oil combustion consumption by railway transport,AR-S,SESCO,annual,kg,747ec81c-105d-33f0-b072-2d3a61fdd940 -2015,Santa Fe,II.2.1,352.45896,TJ,N2O,3.9,kg/TJ,1374.5899439999998,Gas Oil combustion consumption by railway transport,AR-S,SESCO,annual,kg,747ec81c-105d-33f0-b072-2d3a61fdd940 -2015,Capital Federal,II.2.1,0.75852,TJ,CO2,74100.0,kg/TJ,56206.331999999995,Gas Oil combustion consumption by railway transport,AR-C,SESCO,annual,kg,06087d13-9db0-342f-b420-c2eb377c4e63 -2015,Capital Federal,II.2.1,0.75852,TJ,CH4,3.9,kg/TJ,2.9582279999999996,Gas Oil combustion consumption by railway transport,AR-C,SESCO,annual,kg,30883a31-1d68-3863-9f27-ee145973d778 -2015,Capital Federal,II.2.1,0.75852,TJ,N2O,3.9,kg/TJ,2.9582279999999996,Gas Oil combustion consumption by railway transport,AR-C,SESCO,annual,kg,30883a31-1d68-3863-9f27-ee145973d778 -2015,Buenos Aires,II.1.1,10.3219,TJ,CO2,69300.0,kg/TJ,715307.6699999999,Motor Gasoline combustion consumption by freight transport,AR-B,SESCO,annual,kg,6338f2d0-417a-3055-891a-3c383dedbdf0 -2015,Buenos Aires,II.1.1,10.3219,TJ,CH4,33.0,kg/TJ,340.6227,Motor Gasoline combustion consumption by freight transport,AR-B,SESCO,annual,kg,e069689b-b581-38db-9b89-fd59135a9f02 -2015,Buenos Aires,II.1.1,10.3219,TJ,N2O,3.2,kg/TJ,33.03008,Motor Gasoline combustion consumption by freight transport,AR-B,SESCO,annual,kg,df0aa558-016c-3da8-8d33-8ba8bd28da10 -2015,Capital Federal,II.1.1,9.5688,TJ,CO2,69300.0,kg/TJ,663117.84,Motor Gasoline combustion consumption by freight transport,AR-C,SESCO,annual,kg,fc185a9c-a339-3002-a8bc-13c18df1bfec -2015,Capital Federal,II.1.1,9.5688,TJ,CH4,33.0,kg/TJ,315.7704,Motor Gasoline combustion consumption by freight transport,AR-C,SESCO,annual,kg,6f4dc749-cb84-3932-9c67-4098f722c43a -2015,Capital Federal,II.1.1,9.5688,TJ,N2O,3.2,kg/TJ,30.62016,Motor Gasoline combustion consumption by freight transport,AR-C,SESCO,annual,kg,01628c9f-681d-3137-a7e9-a095b7e6e273 -2015,Buenos Aires,II.1.1,567.987,TJ,CO2,74100.0,kg/TJ,42087836.699999996,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,9a63ab71-b80d-303e-be58-c06cc2d027b0 -2015,Buenos Aires,II.1.1,567.987,TJ,CH4,3.9,kg/TJ,2215.1493,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,46623fb3-b51a-3e1b-be1a-2964ffd36a53 -2015,Buenos Aires,II.1.1,567.987,TJ,N2O,3.9,kg/TJ,2215.1493,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,46623fb3-b51a-3e1b-be1a-2964ffd36a53 -2015,Capital Federal,II.1.1,193.96439999999998,TJ,CO2,74100.0,kg/TJ,14372762.04,Gas Oil combustion consumption by freight transport,AR-C,SESCO,annual,kg,a5109dd3-23cd-31ba-a28f-b696384b403a -2015,Capital Federal,II.1.1,193.96439999999998,TJ,CH4,3.9,kg/TJ,756.46116,Gas Oil combustion consumption by freight transport,AR-C,SESCO,annual,kg,a438eb60-bdb3-3ac0-81c7-4005d530dc0b -2015,Capital Federal,II.1.1,193.96439999999998,TJ,N2O,3.9,kg/TJ,756.46116,Gas Oil combustion consumption by freight transport,AR-C,SESCO,annual,kg,a438eb60-bdb3-3ac0-81c7-4005d530dc0b -2015,Córdoba,II.1.1,132.63263999999998,TJ,CO2,74100.0,kg/TJ,9828078.623999998,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,0f9aef51-bd57-312d-ac29-daf2f2f33a4e -2015,Córdoba,II.1.1,132.63263999999998,TJ,CH4,3.9,kg/TJ,517.2672959999999,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,6b7f176a-7dd4-38b6-bb0f-445bfaf71591 -2015,Córdoba,II.1.1,132.63263999999998,TJ,N2O,3.9,kg/TJ,517.2672959999999,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,6b7f176a-7dd4-38b6-bb0f-445bfaf71591 -2015,San Juan,II.1.1,1.3364399999999999,TJ,CO2,74100.0,kg/TJ,99030.20399999998,Gas Oil combustion consumption by freight transport,AR-J,SESCO,annual,kg,2e49e6e4-4e8e-39bb-bbe2-c7b4e22832d4 -2015,San Juan,II.1.1,1.3364399999999999,TJ,CH4,3.9,kg/TJ,5.212115999999999,Gas Oil combustion consumption by freight transport,AR-J,SESCO,annual,kg,4d1c3505-ead2-3d13-8b99-12a805fb4930 -2015,San Juan,II.1.1,1.3364399999999999,TJ,N2O,3.9,kg/TJ,5.212115999999999,Gas Oil combustion consumption by freight transport,AR-J,SESCO,annual,kg,4d1c3505-ead2-3d13-8b99-12a805fb4930 -2015,Buenos Aires,II.1.1,8.59656,TJ,CO2,74100.0,kg/TJ,637005.096,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,83a8a190-40e2-3d90-9387-66f63069bb25 -2015,Buenos Aires,II.1.1,8.59656,TJ,CH4,3.9,kg/TJ,33.526584,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,f5417b8c-dff2-321e-b443-2f4cace931a4 -2015,Buenos Aires,II.1.1,8.59656,TJ,N2O,3.9,kg/TJ,33.526584,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,f5417b8c-dff2-321e-b443-2f4cace931a4 -2015,Córdoba,II.1.1,0.75852,TJ,CO2,74100.0,kg/TJ,56206.331999999995,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,be4a6696-14a8-384a-a6df-e7817b520c1b -2015,Córdoba,II.1.1,0.75852,TJ,CH4,3.9,kg/TJ,2.9582279999999996,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,44f8ee51-a865-328d-b0f7-72d9a645745d -2015,Córdoba,II.1.1,0.75852,TJ,N2O,3.9,kg/TJ,2.9582279999999996,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,44f8ee51-a865-328d-b0f7-72d9a645745d -2015,Buenos Aires,II.1.1,6092.75772,TJ,CO2,74100.0,kg/TJ,451473347.052,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,9c928086-ad01-3a33-ac49-347b604512e6 -2015,Buenos Aires,II.1.1,6092.75772,TJ,CH4,3.9,kg/TJ,23761.755107999998,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,b9be1025-22c1-38cd-b31c-1e59ffc76925 -2015,Buenos Aires,II.1.1,6092.75772,TJ,N2O,3.9,kg/TJ,23761.755107999998,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,b9be1025-22c1-38cd-b31c-1e59ffc76925 -2015,Capital Federal,II.1.1,127.43136,TJ,CO2,74100.0,kg/TJ,9442663.776,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,1a013615-6f88-358b-b001-bdfefaeaf398 -2015,Capital Federal,II.1.1,127.43136,TJ,CH4,3.9,kg/TJ,496.982304,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,6810ec7a-aa6c-3a83-ae09-be37b2ed159a -2015,Capital Federal,II.1.1,127.43136,TJ,N2O,3.9,kg/TJ,496.982304,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,6810ec7a-aa6c-3a83-ae09-be37b2ed159a -2015,Misiones,II.1.1,339.31128,TJ,CO2,74100.0,kg/TJ,25142965.848,Gas Oil combustion consumption by public passenger transport,AR-N,SESCO,annual,kg,c17549a4-d22f-32e8-b6c0-b0a36811a9bc -2015,Misiones,II.1.1,339.31128,TJ,CH4,3.9,kg/TJ,1323.313992,Gas Oil combustion consumption by public passenger transport,AR-N,SESCO,annual,kg,c62b5db7-caed-3ead-9a7e-f9e362389abe -2015,Misiones,II.1.1,339.31128,TJ,N2O,3.9,kg/TJ,1323.313992,Gas Oil combustion consumption by public passenger transport,AR-N,SESCO,annual,kg,c62b5db7-caed-3ead-9a7e-f9e362389abe -2015,Buenos Aires,II.5.1,15.150599999999997,TJ,CO2,69300.0,kg/TJ,1049936.5799999998,Motor Gasoline combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,e21538d4-82c1-3b2d-9072-b91e2e6d7c3b -2015,Buenos Aires,II.5.1,15.150599999999997,TJ,CH4,33.0,kg/TJ,499.9697999999999,Motor Gasoline combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,e5550072-6e33-38fe-a781-85100b095c87 -2015,Buenos Aires,II.5.1,15.150599999999997,TJ,N2O,3.2,kg/TJ,48.481919999999995,Motor Gasoline combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,77504361-8f8c-3302-9b7e-4259d4d1e4df -2015,Buenos Aires,II.5.1,8549.64012,TJ,CO2,74100.0,kg/TJ,633528332.892,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,79e7f49d-5d66-3794-ab66-dfe08fedd7fd -2015,Buenos Aires,II.5.1,8549.64012,TJ,CH4,3.9,kg/TJ,33343.596467999996,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,68acb4d5-36c8-37d5-b8da-cf7d4a08aabd -2015,Buenos Aires,II.5.1,8549.64012,TJ,N2O,3.9,kg/TJ,33343.596467999996,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,68acb4d5-36c8-37d5-b8da-cf7d4a08aabd -2015,Capital Federal,II.5.1,16.976399999999998,TJ,CO2,74100.0,kg/TJ,1257951.2399999998,Gas Oil combustion consumption by agriculture machines,AR-C,SESCO,annual,kg,db84b8ea-db39-3793-8e84-0ea533c6fa07 -2015,Capital Federal,II.5.1,16.976399999999998,TJ,CH4,3.9,kg/TJ,66.20795999999999,Gas Oil combustion consumption by agriculture machines,AR-C,SESCO,annual,kg,24dd3f78-3cfe-3cd1-b8db-25fecc423b3b -2015,Capital Federal,II.5.1,16.976399999999998,TJ,N2O,3.9,kg/TJ,66.20795999999999,Gas Oil combustion consumption by agriculture machines,AR-C,SESCO,annual,kg,24dd3f78-3cfe-3cd1-b8db-25fecc423b3b -2015,Catamarca,II.5.1,124.28891999999999,TJ,CO2,74100.0,kg/TJ,9209808.972,Gas Oil combustion consumption by agriculture machines,AR-K,SESCO,annual,kg,eacca546-2122-36e6-aa77-c112d8bed9fd -2015,Catamarca,II.5.1,124.28891999999999,TJ,CH4,3.9,kg/TJ,484.72678799999994,Gas Oil combustion consumption by agriculture machines,AR-K,SESCO,annual,kg,c6a49559-01db-3932-b19f-06bf44c5fc56 -2015,Catamarca,II.5.1,124.28891999999999,TJ,N2O,3.9,kg/TJ,484.72678799999994,Gas Oil combustion consumption by agriculture machines,AR-K,SESCO,annual,kg,c6a49559-01db-3932-b19f-06bf44c5fc56 -2015,Chaco,II.5.1,1341.02724,TJ,CO2,74100.0,kg/TJ,99370118.484,Gas Oil combustion consumption by agriculture machines,AR-H,SESCO,annual,kg,fe8c51c9-9eef-3080-8197-523818daea05 -2015,Chaco,II.5.1,1341.02724,TJ,CH4,3.9,kg/TJ,5230.006235999999,Gas Oil combustion consumption by agriculture machines,AR-H,SESCO,annual,kg,4a3c985d-1739-3edf-b91f-6f9fc2c3c4f8 -2015,Chaco,II.5.1,1341.02724,TJ,N2O,3.9,kg/TJ,5230.006235999999,Gas Oil combustion consumption by agriculture machines,AR-H,SESCO,annual,kg,4a3c985d-1739-3edf-b91f-6f9fc2c3c4f8 -2015,Chubut,II.5.1,1.15584,TJ,CO2,74100.0,kg/TJ,85647.74399999999,Gas Oil combustion consumption by agriculture machines,AR-U,SESCO,annual,kg,4ec062f3-cc02-3c48-b061-57b174ae4315 -2015,Chubut,II.5.1,1.15584,TJ,CH4,3.9,kg/TJ,4.507776,Gas Oil combustion consumption by agriculture machines,AR-U,SESCO,annual,kg,db5257b5-578c-3155-ac2b-ab1e2c7d3a48 -2015,Chubut,II.5.1,1.15584,TJ,N2O,3.9,kg/TJ,4.507776,Gas Oil combustion consumption by agriculture machines,AR-U,SESCO,annual,kg,db5257b5-578c-3155-ac2b-ab1e2c7d3a48 -2015,Corrientes,II.5.1,334.2906,TJ,CO2,74100.0,kg/TJ,24770933.459999997,Gas Oil combustion consumption by agriculture machines,AR-W,SESCO,annual,kg,9a068367-69d7-3686-b8ba-9974e119a06d -2015,Corrientes,II.5.1,334.2906,TJ,CH4,3.9,kg/TJ,1303.73334,Gas Oil combustion consumption by agriculture machines,AR-W,SESCO,annual,kg,0fb78296-1a47-39b6-8734-13a14a09fe57 -2015,Corrientes,II.5.1,334.2906,TJ,N2O,3.9,kg/TJ,1303.73334,Gas Oil combustion consumption by agriculture machines,AR-W,SESCO,annual,kg,0fb78296-1a47-39b6-8734-13a14a09fe57 -2015,Córdoba,II.5.1,7403.29968,TJ,CO2,74100.0,kg/TJ,548584506.288,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,973f3755-f6e1-380a-93c7-a38c9e3c793d -2015,Córdoba,II.5.1,7403.29968,TJ,CH4,3.9,kg/TJ,28872.868752,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,abefe977-49d5-3aeb-a84f-e7941d723a24 -2015,Córdoba,II.5.1,7403.29968,TJ,N2O,3.9,kg/TJ,28872.868752,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,abefe977-49d5-3aeb-a84f-e7941d723a24 -2015,Entre Rios,II.5.1,2098.60812,TJ,CO2,74100.0,kg/TJ,155506861.692,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,2a21e21e-2c83-3396-b64f-ed7819e7104c -2015,Entre Rios,II.5.1,2098.60812,TJ,CH4,3.9,kg/TJ,8184.571668,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,a4adf205-cfba-3906-a976-bd3cdfa40f4b -2015,Entre Rios,II.5.1,2098.60812,TJ,N2O,3.9,kg/TJ,8184.571668,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,a4adf205-cfba-3906-a976-bd3cdfa40f4b -2015,Formosa,II.5.1,339.99755999999996,TJ,CO2,74100.0,kg/TJ,25193819.196,Gas Oil combustion consumption by agriculture machines,AR-P,SESCO,annual,kg,c8d4b873-7c09-35a9-a955-cc43f3122559 -2015,Formosa,II.5.1,339.99755999999996,TJ,CH4,3.9,kg/TJ,1325.990484,Gas Oil combustion consumption by agriculture machines,AR-P,SESCO,annual,kg,e0e31459-841a-376a-b267-c7297437437c -2015,Formosa,II.5.1,339.99755999999996,TJ,N2O,3.9,kg/TJ,1325.990484,Gas Oil combustion consumption by agriculture machines,AR-P,SESCO,annual,kg,e0e31459-841a-376a-b267-c7297437437c -2015,Jujuy,II.5.1,1086.5618399999998,TJ,CO2,74100.0,kg/TJ,80514232.34399998,Gas Oil combustion consumption by agriculture machines,AR-Y,SESCO,annual,kg,8a21148b-3fab-3844-9627-5b57b9dfbebf -2015,Jujuy,II.5.1,1086.5618399999998,TJ,CH4,3.9,kg/TJ,4237.591175999999,Gas Oil combustion consumption by agriculture machines,AR-Y,SESCO,annual,kg,66963297-39cf-3ef5-bd32-0146a3742876 -2015,Jujuy,II.5.1,1086.5618399999998,TJ,N2O,3.9,kg/TJ,4237.591175999999,Gas Oil combustion consumption by agriculture machines,AR-Y,SESCO,annual,kg,66963297-39cf-3ef5-bd32-0146a3742876 -2015,La Pampa,II.5.1,1989.6340799999998,TJ,CO2,74100.0,kg/TJ,147431885.32799998,Gas Oil combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,165579e8-9253-34b2-b24e-b8d980c36bb3 -2015,La Pampa,II.5.1,1989.6340799999998,TJ,CH4,3.9,kg/TJ,7759.572911999999,Gas Oil combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,40c6429f-3dea-3983-9057-4315a14c5bf7 -2015,La Pampa,II.5.1,1989.6340799999998,TJ,N2O,3.9,kg/TJ,7759.572911999999,Gas Oil combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,40c6429f-3dea-3983-9057-4315a14c5bf7 -2015,La Rioja,II.5.1,31.316039999999997,TJ,CO2,74100.0,kg/TJ,2320518.564,Gas Oil combustion consumption by agriculture machines,AR-F,SESCO,annual,kg,6e918b64-d431-3114-9cb3-a11e34cd11bd -2015,La Rioja,II.5.1,31.316039999999997,TJ,CH4,3.9,kg/TJ,122.132556,Gas Oil combustion consumption by agriculture machines,AR-F,SESCO,annual,kg,bf0f423a-ffa4-3287-8c49-d56afb9eb70e -2015,La Rioja,II.5.1,31.316039999999997,TJ,N2O,3.9,kg/TJ,122.132556,Gas Oil combustion consumption by agriculture machines,AR-F,SESCO,annual,kg,bf0f423a-ffa4-3287-8c49-d56afb9eb70e -2015,Mendoza,II.5.1,1072.43892,TJ,CO2,74100.0,kg/TJ,79467723.972,Gas Oil combustion consumption by agriculture machines,AR-M,SESCO,annual,kg,b6aca28a-26e7-348a-9e28-229080ee41c5 -2015,Mendoza,II.5.1,1072.43892,TJ,CH4,3.9,kg/TJ,4182.511788,Gas Oil combustion consumption by agriculture machines,AR-M,SESCO,annual,kg,1b6406d6-0b46-3f7f-b0a7-26882b900146 -2015,Mendoza,II.5.1,1072.43892,TJ,N2O,3.9,kg/TJ,4182.511788,Gas Oil combustion consumption by agriculture machines,AR-M,SESCO,annual,kg,1b6406d6-0b46-3f7f-b0a7-26882b900146 -2015,Misiones,II.5.1,977.15436,TJ,CO2,74100.0,kg/TJ,72407138.076,Gas Oil combustion consumption by agriculture machines,AR-N,SESCO,annual,kg,902051d5-08ec-3abe-a2af-ff8dc8373897 -2015,Misiones,II.5.1,977.15436,TJ,CH4,3.9,kg/TJ,3810.902004,Gas Oil combustion consumption by agriculture machines,AR-N,SESCO,annual,kg,db078204-4ee4-33af-b74a-d8f66df0e810 -2015,Misiones,II.5.1,977.15436,TJ,N2O,3.9,kg/TJ,3810.902004,Gas Oil combustion consumption by agriculture machines,AR-N,SESCO,annual,kg,db078204-4ee4-33af-b74a-d8f66df0e810 -2015,Neuquén,II.5.1,71.8788,TJ,CO2,74100.0,kg/TJ,5326219.08,Gas Oil combustion consumption by agriculture machines,AR-Q,SESCO,annual,kg,62f6a26c-5cb4-30cb-9e7c-29da0d7aea8a -2015,Neuquén,II.5.1,71.8788,TJ,CH4,3.9,kg/TJ,280.32732,Gas Oil combustion consumption by agriculture machines,AR-Q,SESCO,annual,kg,880cd3d5-1963-3f6e-b290-f5eed5888dc2 -2015,Neuquén,II.5.1,71.8788,TJ,N2O,3.9,kg/TJ,280.32732,Gas Oil combustion consumption by agriculture machines,AR-Q,SESCO,annual,kg,880cd3d5-1963-3f6e-b290-f5eed5888dc2 -2015,Rio Negro,II.5.1,199.16567999999998,TJ,CO2,74100.0,kg/TJ,14758176.887999998,Gas Oil combustion consumption by agriculture machines,AR-R,SESCO,annual,kg,912407d4-06a7-3681-a0ba-291e2caeca1b -2015,Rio Negro,II.5.1,199.16567999999998,TJ,CH4,3.9,kg/TJ,776.7461519999999,Gas Oil combustion consumption by agriculture machines,AR-R,SESCO,annual,kg,83692945-91fd-3388-8380-e9faaae04d63 -2015,Rio Negro,II.5.1,199.16567999999998,TJ,N2O,3.9,kg/TJ,776.7461519999999,Gas Oil combustion consumption by agriculture machines,AR-R,SESCO,annual,kg,83692945-91fd-3388-8380-e9faaae04d63 -2015,Salta,II.5.1,1651.9120799999998,TJ,CO2,74100.0,kg/TJ,122406685.12799999,Gas Oil combustion consumption by agriculture machines,AR-A,SESCO,annual,kg,e774ecd9-33e7-37d6-b4f5-49fa49882c4b -2015,Salta,II.5.1,1651.9120799999998,TJ,CH4,3.9,kg/TJ,6442.457111999999,Gas Oil combustion consumption by agriculture machines,AR-A,SESCO,annual,kg,3749dea6-eeee-3e79-b2c0-fbe777e885d0 -2015,Salta,II.5.1,1651.9120799999998,TJ,N2O,3.9,kg/TJ,6442.457111999999,Gas Oil combustion consumption by agriculture machines,AR-A,SESCO,annual,kg,3749dea6-eeee-3e79-b2c0-fbe777e885d0 -2015,San Juan,II.5.1,118.22076,TJ,CO2,74100.0,kg/TJ,8760158.316,Gas Oil combustion consumption by agriculture machines,AR-J,SESCO,annual,kg,1b41ee13-f703-3dbc-abf5-cf4b8d09be17 -2015,San Juan,II.5.1,118.22076,TJ,CH4,3.9,kg/TJ,461.06096399999996,Gas Oil combustion consumption by agriculture machines,AR-J,SESCO,annual,kg,7f3b7c73-e315-349b-b0ef-d54512e8a5e2 -2015,San Juan,II.5.1,118.22076,TJ,N2O,3.9,kg/TJ,461.06096399999996,Gas Oil combustion consumption by agriculture machines,AR-J,SESCO,annual,kg,7f3b7c73-e315-349b-b0ef-d54512e8a5e2 -2015,San Luis,II.5.1,636.94008,TJ,CO2,74100.0,kg/TJ,47197259.927999996,Gas Oil combustion consumption by agriculture machines,AR-D,SESCO,annual,kg,8f611625-8fe6-3d34-bee3-3af026ce945b -2015,San Luis,II.5.1,636.94008,TJ,CH4,3.9,kg/TJ,2484.066312,Gas Oil combustion consumption by agriculture machines,AR-D,SESCO,annual,kg,13639e44-4c76-31c8-921e-47ef0c9ac9b3 -2015,San Luis,II.5.1,636.94008,TJ,N2O,3.9,kg/TJ,2484.066312,Gas Oil combustion consumption by agriculture machines,AR-D,SESCO,annual,kg,13639e44-4c76-31c8-921e-47ef0c9ac9b3 -2015,Santa Cruz,II.5.1,0.6140399999999999,TJ,CO2,74100.0,kg/TJ,45500.363999999994,Gas Oil combustion consumption by agriculture machines,AR-Z,SESCO,annual,kg,fea0406d-e525-3b2e-acba-d7e8d765d43a -2015,Santa Cruz,II.5.1,0.6140399999999999,TJ,CH4,3.9,kg/TJ,2.3947559999999997,Gas Oil combustion consumption by agriculture machines,AR-Z,SESCO,annual,kg,f8307a6e-e61c-33f9-8271-cb34eb366aa1 -2015,Santa Cruz,II.5.1,0.6140399999999999,TJ,N2O,3.9,kg/TJ,2.3947559999999997,Gas Oil combustion consumption by agriculture machines,AR-Z,SESCO,annual,kg,f8307a6e-e61c-33f9-8271-cb34eb366aa1 -2015,Santa Fe,II.5.1,6227.088,TJ,CO2,74100.0,kg/TJ,461427220.79999995,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,6e57a13c-e776-3305-8f71-2a237c9974cd -2015,Santa Fe,II.5.1,6227.088,TJ,CH4,3.9,kg/TJ,24285.6432,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,4ea452aa-aca7-37df-b095-58ae1284e224 -2015,Santa Fe,II.5.1,6227.088,TJ,N2O,3.9,kg/TJ,24285.6432,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,4ea452aa-aca7-37df-b095-58ae1284e224 -2015,Santiago del Estero,II.5.1,1760.77776,TJ,CO2,74100.0,kg/TJ,130473632.016,Gas Oil combustion consumption by agriculture machines,AR-G,SESCO,annual,kg,53f17455-c25b-3469-bb21-2c01d30c4779 -2015,Santiago del Estero,II.5.1,1760.77776,TJ,CH4,3.9,kg/TJ,6867.033264,Gas Oil combustion consumption by agriculture machines,AR-G,SESCO,annual,kg,f68a1984-b465-3890-b82e-b91fb36fb561 -2015,Santiago del Estero,II.5.1,1760.77776,TJ,N2O,3.9,kg/TJ,6867.033264,Gas Oil combustion consumption by agriculture machines,AR-G,SESCO,annual,kg,f68a1984-b465-3890-b82e-b91fb36fb561 -2015,Tucuman,II.5.1,1393.4734799999999,TJ,CO2,74100.0,kg/TJ,103256384.86799999,Gas Oil combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,2e14be7e-f46e-3328-85d9-007da1e8ee25 -2015,Tucuman,II.5.1,1393.4734799999999,TJ,CH4,3.9,kg/TJ,5434.546571999999,Gas Oil combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,8cf640e5-0618-3009-9d90-947db8e6bf7e -2015,Tucuman,II.5.1,1393.4734799999999,TJ,N2O,3.9,kg/TJ,5434.546571999999,Gas Oil combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,8cf640e5-0618-3009-9d90-947db8e6bf7e -2015,Buenos Aires,II.5.1,187.86012,TJ,CO2,74100.0,kg/TJ,13920434.891999999,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,1758b2b1-1cca-318f-90b6-91659266b727 -2015,Buenos Aires,II.5.1,187.86012,TJ,CH4,3.9,kg/TJ,732.654468,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,284faad3-9c06-334a-82b1-9edb5ea1b3af -2015,Buenos Aires,II.5.1,187.86012,TJ,N2O,3.9,kg/TJ,732.654468,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,284faad3-9c06-334a-82b1-9edb5ea1b3af -2015,Catamarca,II.5.1,19.93824,TJ,CO2,74100.0,kg/TJ,1477423.584,Gas Oil combustion consumption by agriculture machines,AR-K,SESCO,annual,kg,3d9d367d-6fa6-3e0d-b992-51d895c7b007 -2015,Catamarca,II.5.1,19.93824,TJ,CH4,3.9,kg/TJ,77.759136,Gas Oil combustion consumption by agriculture machines,AR-K,SESCO,annual,kg,ffe93fe5-75fa-3392-9379-5623c8b192b5 -2015,Catamarca,II.5.1,19.93824,TJ,N2O,3.9,kg/TJ,77.759136,Gas Oil combustion consumption by agriculture machines,AR-K,SESCO,annual,kg,ffe93fe5-75fa-3392-9379-5623c8b192b5 -2015,Chaco,II.5.1,79.39175999999999,TJ,CO2,74100.0,kg/TJ,5882929.415999999,Gas Oil combustion consumption by agriculture machines,AR-H,SESCO,annual,kg,bc27c32f-e71e-332f-a219-63ec54c23845 -2015,Chaco,II.5.1,79.39175999999999,TJ,CH4,3.9,kg/TJ,309.62786399999993,Gas Oil combustion consumption by agriculture machines,AR-H,SESCO,annual,kg,6bc271d8-ae89-349a-b8b3-c1112a4a7522 -2015,Chaco,II.5.1,79.39175999999999,TJ,N2O,3.9,kg/TJ,309.62786399999993,Gas Oil combustion consumption by agriculture machines,AR-H,SESCO,annual,kg,6bc271d8-ae89-349a-b8b3-c1112a4a7522 -2015,Corrientes,II.5.1,27.74016,TJ,CO2,74100.0,kg/TJ,2055545.856,Gas Oil combustion consumption by agriculture machines,AR-W,SESCO,annual,kg,c65f8013-17f5-34b9-94d4-b5b354325a26 -2015,Corrientes,II.5.1,27.74016,TJ,CH4,3.9,kg/TJ,108.186624,Gas Oil combustion consumption by agriculture machines,AR-W,SESCO,annual,kg,6210595f-3a1e-3bf0-a2ac-2fded2d4f641 -2015,Corrientes,II.5.1,27.74016,TJ,N2O,3.9,kg/TJ,108.186624,Gas Oil combustion consumption by agriculture machines,AR-W,SESCO,annual,kg,6210595f-3a1e-3bf0-a2ac-2fded2d4f641 -2015,Córdoba,II.5.1,38.75676,TJ,CO2,74100.0,kg/TJ,2871875.916,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,04e8234a-85d9-319f-bde9-a6005a0efd49 -2015,Córdoba,II.5.1,38.75676,TJ,CH4,3.9,kg/TJ,151.151364,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,e9b810a9-51e6-3208-826a-6a1af9d7ee0c -2015,Córdoba,II.5.1,38.75676,TJ,N2O,3.9,kg/TJ,151.151364,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,e9b810a9-51e6-3208-826a-6a1af9d7ee0c -2015,Entre Rios,II.5.1,12.2808,TJ,CO2,74100.0,kg/TJ,910007.2799999999,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,610b93b8-1f6d-3f31-87ed-efb6a274d80a -2015,Entre Rios,II.5.1,12.2808,TJ,CH4,3.9,kg/TJ,47.89512,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,c561f53b-2939-325f-add8-c193c8e07de7 -2015,Entre Rios,II.5.1,12.2808,TJ,N2O,3.9,kg/TJ,47.89512,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,c561f53b-2939-325f-add8-c193c8e07de7 -2015,Jujuy,II.5.1,10.6554,TJ,CO2,74100.0,kg/TJ,789565.14,Gas Oil combustion consumption by agriculture machines,AR-Y,SESCO,annual,kg,06a4dc13-0be6-3ed7-8280-772f8eea201c -2015,Jujuy,II.5.1,10.6554,TJ,CH4,3.9,kg/TJ,41.55606,Gas Oil combustion consumption by agriculture machines,AR-Y,SESCO,annual,kg,44f751d6-f1a8-3f29-ae12-7d4cfcf04d37 -2015,Jujuy,II.5.1,10.6554,TJ,N2O,3.9,kg/TJ,41.55606,Gas Oil combustion consumption by agriculture machines,AR-Y,SESCO,annual,kg,44f751d6-f1a8-3f29-ae12-7d4cfcf04d37 -2015,La Pampa,II.5.1,98.2464,TJ,CO2,74100.0,kg/TJ,7280058.239999999,Gas Oil combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,7ceb17e7-3e03-3176-bd08-914fd9fd779d -2015,La Pampa,II.5.1,98.2464,TJ,CH4,3.9,kg/TJ,383.16096,Gas Oil combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,7093ac8c-2520-3c7d-a306-434933bebd34 -2015,La Pampa,II.5.1,98.2464,TJ,N2O,3.9,kg/TJ,383.16096,Gas Oil combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,7093ac8c-2520-3c7d-a306-434933bebd34 -2015,Mendoza,II.5.1,14.989799999999999,TJ,CO2,74100.0,kg/TJ,1110744.18,Gas Oil combustion consumption by agriculture machines,AR-M,SESCO,annual,kg,fdaa72f9-a3e0-3bb3-a1f9-54b16b070531 -2015,Mendoza,II.5.1,14.989799999999999,TJ,CH4,3.9,kg/TJ,58.46021999999999,Gas Oil combustion consumption by agriculture machines,AR-M,SESCO,annual,kg,af9bf487-0fcb-3d49-b0d3-9d9cac60d758 -2015,Mendoza,II.5.1,14.989799999999999,TJ,N2O,3.9,kg/TJ,58.46021999999999,Gas Oil combustion consumption by agriculture machines,AR-M,SESCO,annual,kg,af9bf487-0fcb-3d49-b0d3-9d9cac60d758 -2015,Misiones,II.5.1,18.962999999999997,TJ,CO2,74100.0,kg/TJ,1405158.2999999998,Gas Oil combustion consumption by agriculture machines,AR-N,SESCO,annual,kg,26322acc-6b58-33ea-b8d0-43cf51b62908 -2015,Misiones,II.5.1,18.962999999999997,TJ,CH4,3.9,kg/TJ,73.9557,Gas Oil combustion consumption by agriculture machines,AR-N,SESCO,annual,kg,a562da1b-81ca-3874-bb68-1405539b7c1c -2015,Misiones,II.5.1,18.962999999999997,TJ,N2O,3.9,kg/TJ,73.9557,Gas Oil combustion consumption by agriculture machines,AR-N,SESCO,annual,kg,a562da1b-81ca-3874-bb68-1405539b7c1c -2015,Salta,II.5.1,102.5808,TJ,CO2,74100.0,kg/TJ,7601237.279999999,Gas Oil combustion consumption by agriculture machines,AR-A,SESCO,annual,kg,24ff453b-6c3a-3b21-8534-b00335383b8c -2015,Salta,II.5.1,102.5808,TJ,CH4,3.9,kg/TJ,400.06512,Gas Oil combustion consumption by agriculture machines,AR-A,SESCO,annual,kg,84657468-daf4-315d-9901-f2f56beb5bd5 -2015,Salta,II.5.1,102.5808,TJ,N2O,3.9,kg/TJ,400.06512,Gas Oil combustion consumption by agriculture machines,AR-A,SESCO,annual,kg,84657468-daf4-315d-9901-f2f56beb5bd5 -2015,San Luis,II.5.1,23.04456,TJ,CO2,74100.0,kg/TJ,1707601.896,Gas Oil combustion consumption by agriculture machines,AR-D,SESCO,annual,kg,ee1e2358-3665-3d02-9ae7-851db4455a0a -2015,San Luis,II.5.1,23.04456,TJ,CH4,3.9,kg/TJ,89.873784,Gas Oil combustion consumption by agriculture machines,AR-D,SESCO,annual,kg,4103467d-353c-3cef-8178-d9b38cdffd8c -2015,San Luis,II.5.1,23.04456,TJ,N2O,3.9,kg/TJ,89.873784,Gas Oil combustion consumption by agriculture machines,AR-D,SESCO,annual,kg,4103467d-353c-3cef-8178-d9b38cdffd8c -2015,Santa Fe,II.5.1,100.34136,TJ,CO2,74100.0,kg/TJ,7435294.776,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,42fa8c36-82de-3811-8e05-4ce45c0bb09d -2015,Santa Fe,II.5.1,100.34136,TJ,CH4,3.9,kg/TJ,391.331304,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,cb24a525-33eb-32a5-999f-8df41d6eed75 -2015,Santa Fe,II.5.1,100.34136,TJ,N2O,3.9,kg/TJ,391.331304,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,cb24a525-33eb-32a5-999f-8df41d6eed75 -2015,Santiago del Estero,II.5.1,73.75704,TJ,CO2,74100.0,kg/TJ,5465396.664,Gas Oil combustion consumption by agriculture machines,AR-G,SESCO,annual,kg,1392f3a6-186f-3788-96df-b36564308528 -2015,Santiago del Estero,II.5.1,73.75704,TJ,CH4,3.9,kg/TJ,287.65245600000003,Gas Oil combustion consumption by agriculture machines,AR-G,SESCO,annual,kg,3287fef0-9c09-3f68-b149-cfa6e80dc81b -2015,Santiago del Estero,II.5.1,73.75704,TJ,N2O,3.9,kg/TJ,287.65245600000003,Gas Oil combustion consumption by agriculture machines,AR-G,SESCO,annual,kg,3287fef0-9c09-3f68-b149-cfa6e80dc81b -2015,Tucuman,II.5.1,79.6446,TJ,CO2,74100.0,kg/TJ,5901664.859999999,Gas Oil combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,7a0a7d55-bf06-3d86-956d-01c145a08817 -2015,Tucuman,II.5.1,79.6446,TJ,CH4,3.9,kg/TJ,310.61393999999996,Gas Oil combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,1d144ad3-1c38-377c-9b9e-4d717e533f85 -2015,Tucuman,II.5.1,79.6446,TJ,N2O,3.9,kg/TJ,310.61393999999996,Gas Oil combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,1d144ad3-1c38-377c-9b9e-4d717e533f85 -2015,Buenos Aires,II.5.1,6.60513,TJ,CO2,71500.0,kg/TJ,472266.795,Jet Kerosene combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,a8c8783e-5b0e-342b-af51-cee381ad8a55 -2015,Buenos Aires,II.5.1,6.60513,TJ,CH4,0.5,kg/TJ,3.302565,Jet Kerosene combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,681a1443-95c8-3839-9c30-1ed1abba342b -2015,Buenos Aires,II.5.1,6.60513,TJ,N2O,2.0,kg/TJ,13.21026,Jet Kerosene combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,89c28943-f7db-3865-9a4f-e51ba22f711d -2015,Córdoba,II.5.1,0.25162399999999996,TJ,CO2,71500.0,kg/TJ,17991.115999999998,Jet Kerosene combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,4a64b351-a92e-3cd9-9ebf-28db8df40a03 -2015,Córdoba,II.5.1,0.25162399999999996,TJ,CH4,0.5,kg/TJ,0.12581199999999998,Jet Kerosene combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,dd9f38f2-756a-3004-b75c-4f37f836ba76 -2015,Córdoba,II.5.1,0.25162399999999996,TJ,N2O,2.0,kg/TJ,0.5032479999999999,Jet Kerosene combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,4a505f02-abd5-35d4-a751-9d58fbb05ebd -2015,Entre Rios,II.5.1,0.157265,TJ,CO2,71500.0,kg/TJ,11244.447499999998,Jet Kerosene combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,fde7ca6d-a175-3877-9429-c9191f909738 -2015,Entre Rios,II.5.1,0.157265,TJ,CH4,0.5,kg/TJ,0.0786325,Jet Kerosene combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,0a2b02da-e900-3b4a-9805-c75316635314 -2015,Entre Rios,II.5.1,0.157265,TJ,N2O,2.0,kg/TJ,0.31453,Jet Kerosene combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,fc0df5e4-0fc4-3c4f-8a62-418b1dffb0b0 -2015,La Pampa,II.5.1,1.100855,TJ,CO2,71500.0,kg/TJ,78711.13249999999,Jet Kerosene combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,b842143a-fa98-34d1-bf80-ea031832470a -2015,La Pampa,II.5.1,1.100855,TJ,CH4,0.5,kg/TJ,0.5504275,Jet Kerosene combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,8381f7a1-f4a4-332c-8004-947d4a7c3a38 -2015,La Pampa,II.5.1,1.100855,TJ,N2O,2.0,kg/TJ,2.20171,Jet Kerosene combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,13b73472-f63c-3c2b-b7af-1b199a854359 -2015,Santa Fe,II.5.1,1.792821,TJ,CO2,71500.0,kg/TJ,128186.7015,Jet Kerosene combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,a427a6c1-10a7-3e79-9881-38f2201db378 -2015,Santa Fe,II.5.1,1.792821,TJ,CH4,0.5,kg/TJ,0.8964105,Jet Kerosene combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,a5c32aaa-8f59-3b0b-8c33-0356aacacd59 -2015,Santa Fe,II.5.1,1.792821,TJ,N2O,2.0,kg/TJ,3.585642,Jet Kerosene combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,811f2d28-c1c8-35ee-b985-d43ac2d0f2c9 -2015,Buenos Aires,II.5.1,0.75383,TJ,CO2,73300.0,kg/TJ,55255.739,Naphtha combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,23e0a458-07bd-3eff-879c-85e0018b41c9 -2015,Buenos Aires,II.5.1,0.75383,TJ,CH4,0.5,kg/TJ,0.376915,Naphtha combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,0dee9557-52dd-313a-a39a-459f38f6ce3e -2015,Buenos Aires,II.5.1,0.75383,TJ,N2O,2.0,kg/TJ,1.50766,Naphtha combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,a6a81ee2-c546-3b45-a853-523c73ad36c9 -2015,Entre Rios,II.5.1,1.3706,TJ,CO2,73300.0,kg/TJ,100464.98,Naphtha combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,293c83e9-0514-3a8f-b493-069d0d31d7c4 -2015,Entre Rios,II.5.1,1.3706,TJ,CH4,0.5,kg/TJ,0.6853,Naphtha combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,d4ac1f5d-dbdc-312b-94ee-6b0fd70d264f -2015,Entre Rios,II.5.1,1.3706,TJ,N2O,2.0,kg/TJ,2.7412,Naphtha combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,af21ea41-63fd-3769-8810-72ce97f05fe4 -2015,Salta,II.5.1,0.34265,TJ,CO2,73300.0,kg/TJ,25116.245,Naphtha combustion consumption by agriculture machines,AR-A,SESCO,annual,kg,9ddcde26-2f6a-33b5-94ce-5b34689662bc -2015,Salta,II.5.1,0.34265,TJ,CH4,0.5,kg/TJ,0.171325,Naphtha combustion consumption by agriculture machines,AR-A,SESCO,annual,kg,108415b5-7ea1-32fd-980d-3ff37a0c4b93 -2015,Salta,II.5.1,0.34265,TJ,N2O,2.0,kg/TJ,0.6853,Naphtha combustion consumption by agriculture machines,AR-A,SESCO,annual,kg,2a0d615c-b853-315a-897f-4eb694f22a00 -2015,Santa Fe,II.5.1,28.50848,TJ,CO2,73300.0,kg/TJ,2089671.5839999998,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,0cd56c4f-bdaa-32dd-8758-0b9afadfa6d4 -2015,Santa Fe,II.5.1,28.50848,TJ,CH4,0.5,kg/TJ,14.25424,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,eabd400a-f2be-3ea7-b4ac-5c3de485b10c -2015,Santa Fe,II.5.1,28.50848,TJ,N2O,2.0,kg/TJ,57.01696,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,97db8a81-d6af-3272-b4f0-2fe5fd72fa3e -2015,Buenos Aires,II.5.1,0.171325,TJ,CO2,73300.0,kg/TJ,12558.1225,Naphtha combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,8cc46ddd-7b28-3efc-ad05-e410621c7e69 -2015,Buenos Aires,II.5.1,0.171325,TJ,CH4,0.5,kg/TJ,0.0856625,Naphtha combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,0f8bbfb3-e710-3fa6-acd5-0458723fbe21 -2015,Buenos Aires,II.5.1,0.171325,TJ,N2O,2.0,kg/TJ,0.34265,Naphtha combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,52c1e932-ac9b-3c09-a179-c4f359c6896d -2015,Santa Fe,II.5.1,0.445445,TJ,CO2,73300.0,kg/TJ,32651.118499999997,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,41c70d2d-8678-38b0-826c-9edf4537b17e -2015,Santa Fe,II.5.1,0.445445,TJ,CH4,0.5,kg/TJ,0.2227225,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,8302d6f0-7bb2-3aeb-b8de-8c712c779c30 -2015,Santa Fe,II.5.1,0.445445,TJ,N2O,2.0,kg/TJ,0.89089,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,4e832ac8-9d61-362a-8b90-aee484dff6d0 -2015,Buenos Aires,II.1.1,29.060799999999993,TJ,CO2,69300.0,kg/TJ,2013913.4399999995,Motor Gasoline combustion consumption by freight transport,AR-B,SESCO,annual,kg,fb194e47-af63-3a33-ada6-b6a1e05f3404 -2015,Buenos Aires,II.1.1,29.060799999999993,TJ,CH4,33.0,kg/TJ,959.0063999999998,Motor Gasoline combustion consumption by freight transport,AR-B,SESCO,annual,kg,58455868-756e-3e2c-97cd-ec0cf70902bf -2015,Buenos Aires,II.1.1,29.060799999999993,TJ,N2O,3.2,kg/TJ,92.99455999999998,Motor Gasoline combustion consumption by freight transport,AR-B,SESCO,annual,kg,d7eb77eb-464b-3063-ba75-24e9b5be924d -2015,Capital Federal,II.1.1,2.4365,TJ,CO2,69300.0,kg/TJ,168849.45,Motor Gasoline combustion consumption by freight transport,AR-C,SESCO,annual,kg,b854de17-dcd6-399b-88d7-76cadd1781cf -2015,Capital Federal,II.1.1,2.4365,TJ,CH4,33.0,kg/TJ,80.4045,Motor Gasoline combustion consumption by freight transport,AR-C,SESCO,annual,kg,4bae93d9-2269-31b5-ba16-2ed4398e5862 -2015,Capital Federal,II.1.1,2.4365,TJ,N2O,3.2,kg/TJ,7.796800000000001,Motor Gasoline combustion consumption by freight transport,AR-C,SESCO,annual,kg,85090383-9b98-3884-8791-91f863693051 -2015,Buenos Aires,II.1.1,7016.346119999999,TJ,CO2,74100.0,kg/TJ,519911247.4919999,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,2505a730-5399-3991-99bb-2a8ca8860eac -2015,Buenos Aires,II.1.1,7016.346119999999,TJ,CH4,3.9,kg/TJ,27363.749867999995,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,e481e4d8-0399-38d5-8ef2-63003131a8b7 -2015,Buenos Aires,II.1.1,7016.346119999999,TJ,N2O,3.9,kg/TJ,27363.749867999995,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,e481e4d8-0399-38d5-8ef2-63003131a8b7 -2015,Capital Federal,II.1.1,3403.62372,TJ,CO2,74100.0,kg/TJ,252208517.652,Gas Oil combustion consumption by freight transport,AR-C,SESCO,annual,kg,47dab972-9b97-315d-a866-370e0b6f677a -2015,Capital Federal,II.1.1,3403.62372,TJ,CH4,3.9,kg/TJ,13274.132508,Gas Oil combustion consumption by freight transport,AR-C,SESCO,annual,kg,280dc4e2-7d54-3c8e-a31a-07d31970515a -2015,Capital Federal,II.1.1,3403.62372,TJ,N2O,3.9,kg/TJ,13274.132508,Gas Oil combustion consumption by freight transport,AR-C,SESCO,annual,kg,280dc4e2-7d54-3c8e-a31a-07d31970515a -2015,Catamarca,II.1.1,24.453239999999997,TJ,CO2,74100.0,kg/TJ,1811985.0839999998,Gas Oil combustion consumption by freight transport,AR-K,SESCO,annual,kg,0450e792-82b9-3ec9-b38f-8cf475cabce2 -2015,Catamarca,II.1.1,24.453239999999997,TJ,CH4,3.9,kg/TJ,95.36763599999999,Gas Oil combustion consumption by freight transport,AR-K,SESCO,annual,kg,07fd8eeb-4058-3eeb-a479-6bad2cd5a7c0 -2015,Catamarca,II.1.1,24.453239999999997,TJ,N2O,3.9,kg/TJ,95.36763599999999,Gas Oil combustion consumption by freight transport,AR-K,SESCO,annual,kg,07fd8eeb-4058-3eeb-a479-6bad2cd5a7c0 -2015,Chaco,II.1.1,195.33696,TJ,CO2,74100.0,kg/TJ,14474468.736,Gas Oil combustion consumption by freight transport,AR-H,SESCO,annual,kg,0cda1707-3ecb-3289-af7e-9a8425d4b79d -2015,Chaco,II.1.1,195.33696,TJ,CH4,3.9,kg/TJ,761.814144,Gas Oil combustion consumption by freight transport,AR-H,SESCO,annual,kg,102166e9-63f6-3af3-8525-1ccf966da59c -2015,Chaco,II.1.1,195.33696,TJ,N2O,3.9,kg/TJ,761.814144,Gas Oil combustion consumption by freight transport,AR-H,SESCO,annual,kg,102166e9-63f6-3af3-8525-1ccf966da59c -2015,Chubut,II.1.1,228.459,TJ,CO2,74100.0,kg/TJ,16928811.9,Gas Oil combustion consumption by freight transport,AR-U,SESCO,annual,kg,2f56c5a3-9fab-3026-8e61-7535eb10e057 -2015,Chubut,II.1.1,228.459,TJ,CH4,3.9,kg/TJ,890.9901,Gas Oil combustion consumption by freight transport,AR-U,SESCO,annual,kg,302e7d60-b5be-31f9-b2f4-bbf881ef651e -2015,Chubut,II.1.1,228.459,TJ,N2O,3.9,kg/TJ,890.9901,Gas Oil combustion consumption by freight transport,AR-U,SESCO,annual,kg,302e7d60-b5be-31f9-b2f4-bbf881ef651e -2015,Corrientes,II.1.1,151.63175999999999,TJ,CO2,74100.0,kg/TJ,11235913.416,Gas Oil combustion consumption by freight transport,AR-W,SESCO,annual,kg,5f8b0f4b-edd7-38dc-9b72-24a41776d4fb -2015,Corrientes,II.1.1,151.63175999999999,TJ,CH4,3.9,kg/TJ,591.3638639999999,Gas Oil combustion consumption by freight transport,AR-W,SESCO,annual,kg,be894948-5507-319d-a04c-d47caba82717 -2015,Corrientes,II.1.1,151.63175999999999,TJ,N2O,3.9,kg/TJ,591.3638639999999,Gas Oil combustion consumption by freight transport,AR-W,SESCO,annual,kg,be894948-5507-319d-a04c-d47caba82717 -2015,Córdoba,II.1.1,1676.18472,TJ,CO2,74100.0,kg/TJ,124205287.752,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,775017a9-2d7f-3d60-a1b0-74533725d12e -2015,Córdoba,II.1.1,1676.18472,TJ,CH4,3.9,kg/TJ,6537.120408,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,aaa96551-c336-3771-8293-dde8107641d7 -2015,Córdoba,II.1.1,1676.18472,TJ,N2O,3.9,kg/TJ,6537.120408,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,aaa96551-c336-3771-8293-dde8107641d7 -2015,Entre Rios,II.1.1,199.88808,TJ,CO2,74100.0,kg/TJ,14811706.728,Gas Oil combustion consumption by freight transport,AR-E,SESCO,annual,kg,051fea49-3d74-36e6-86c7-b6319e9f305b -2015,Entre Rios,II.1.1,199.88808,TJ,CH4,3.9,kg/TJ,779.563512,Gas Oil combustion consumption by freight transport,AR-E,SESCO,annual,kg,435f5fb2-a0ca-3038-9881-8c6b41351a33 -2015,Entre Rios,II.1.1,199.88808,TJ,N2O,3.9,kg/TJ,779.563512,Gas Oil combustion consumption by freight transport,AR-E,SESCO,annual,kg,435f5fb2-a0ca-3038-9881-8c6b41351a33 -2015,Jujuy,II.1.1,44.210879999999996,TJ,CO2,74100.0,kg/TJ,3276026.2079999996,Gas Oil combustion consumption by freight transport,AR-Y,SESCO,annual,kg,4bf1240c-e8cc-37a8-bfad-f8a030a3ef15 -2015,Jujuy,II.1.1,44.210879999999996,TJ,CH4,3.9,kg/TJ,172.422432,Gas Oil combustion consumption by freight transport,AR-Y,SESCO,annual,kg,bfd99c05-a074-3175-9f6d-5c29951d561f -2015,Jujuy,II.1.1,44.210879999999996,TJ,N2O,3.9,kg/TJ,172.422432,Gas Oil combustion consumption by freight transport,AR-Y,SESCO,annual,kg,bfd99c05-a074-3175-9f6d-5c29951d561f -2015,La Pampa,II.1.1,31.027079999999998,TJ,CO2,74100.0,kg/TJ,2299106.628,Gas Oil combustion consumption by freight transport,AR-L,SESCO,annual,kg,e5f1854d-b2ef-3164-839e-af0e972dc688 -2015,La Pampa,II.1.1,31.027079999999998,TJ,CH4,3.9,kg/TJ,121.00561199999999,Gas Oil combustion consumption by freight transport,AR-L,SESCO,annual,kg,13ba07f9-32de-36aa-9cb2-908baae5336c -2015,La Pampa,II.1.1,31.027079999999998,TJ,N2O,3.9,kg/TJ,121.00561199999999,Gas Oil combustion consumption by freight transport,AR-L,SESCO,annual,kg,13ba07f9-32de-36aa-9cb2-908baae5336c -2015,La Rioja,II.1.1,1.3364399999999999,TJ,CO2,74100.0,kg/TJ,99030.20399999998,Gas Oil combustion consumption by freight transport,AR-F,SESCO,annual,kg,f99097d1-54be-30c6-a7f3-6850d77d7a43 -2015,La Rioja,II.1.1,1.3364399999999999,TJ,CH4,3.9,kg/TJ,5.212115999999999,Gas Oil combustion consumption by freight transport,AR-F,SESCO,annual,kg,b4f7fa03-4673-3ff5-b3ed-5960fed36aa5 -2015,La Rioja,II.1.1,1.3364399999999999,TJ,N2O,3.9,kg/TJ,5.212115999999999,Gas Oil combustion consumption by freight transport,AR-F,SESCO,annual,kg,b4f7fa03-4673-3ff5-b3ed-5960fed36aa5 -2015,Mendoza,II.1.1,1464.3409199999999,TJ,CO2,74100.0,kg/TJ,108507662.17199999,Gas Oil combustion consumption by freight transport,AR-M,SESCO,annual,kg,51166465-e9db-3279-b059-9f11d9e3639a -2015,Mendoza,II.1.1,1464.3409199999999,TJ,CH4,3.9,kg/TJ,5710.929587999999,Gas Oil combustion consumption by freight transport,AR-M,SESCO,annual,kg,ccb91ff5-81bd-3f4a-9f04-ed27eed0fa59 -2015,Mendoza,II.1.1,1464.3409199999999,TJ,N2O,3.9,kg/TJ,5710.929587999999,Gas Oil combustion consumption by freight transport,AR-M,SESCO,annual,kg,ccb91ff5-81bd-3f4a-9f04-ed27eed0fa59 -2015,Misiones,II.1.1,480.10704,TJ,CO2,74100.0,kg/TJ,35575931.664,Gas Oil combustion consumption by freight transport,AR-N,SESCO,annual,kg,0636c071-8817-3ded-8cfc-9f77450705c9 -2015,Misiones,II.1.1,480.10704,TJ,CH4,3.9,kg/TJ,1872.417456,Gas Oil combustion consumption by freight transport,AR-N,SESCO,annual,kg,570614cc-e3d5-3fd6-8af5-dac96ccdbe67 -2015,Misiones,II.1.1,480.10704,TJ,N2O,3.9,kg/TJ,1872.417456,Gas Oil combustion consumption by freight transport,AR-N,SESCO,annual,kg,570614cc-e3d5-3fd6-8af5-dac96ccdbe67 -2015,Neuquén,II.1.1,771.48708,TJ,CO2,74100.0,kg/TJ,57167192.628,Gas Oil combustion consumption by freight transport,AR-Q,SESCO,annual,kg,e72729b9-bc3b-37f4-b21f-e55c0f22a24f -2015,Neuquén,II.1.1,771.48708,TJ,CH4,3.9,kg/TJ,3008.799612,Gas Oil combustion consumption by freight transport,AR-Q,SESCO,annual,kg,4e8ec421-5bd3-3e84-8b2a-3d65cb404c15 -2015,Neuquén,II.1.1,771.48708,TJ,N2O,3.9,kg/TJ,3008.799612,Gas Oil combustion consumption by freight transport,AR-Q,SESCO,annual,kg,4e8ec421-5bd3-3e84-8b2a-3d65cb404c15 -2015,Rio Negro,II.1.1,140.00112,TJ,CO2,74100.0,kg/TJ,10374082.991999999,Gas Oil combustion consumption by freight transport,AR-R,SESCO,annual,kg,83001ee3-5b7f-399a-b854-6797fbacd8fc -2015,Rio Negro,II.1.1,140.00112,TJ,CH4,3.9,kg/TJ,546.0043679999999,Gas Oil combustion consumption by freight transport,AR-R,SESCO,annual,kg,b67ce10a-3311-3885-bfb7-fffeb1e583ac -2015,Rio Negro,II.1.1,140.00112,TJ,N2O,3.9,kg/TJ,546.0043679999999,Gas Oil combustion consumption by freight transport,AR-R,SESCO,annual,kg,b67ce10a-3311-3885-bfb7-fffeb1e583ac -2015,Salta,II.1.1,146.24988,TJ,CO2,74100.0,kg/TJ,10837116.108,Gas Oil combustion consumption by freight transport,AR-A,SESCO,annual,kg,8ed4a537-4a91-3b5b-9f19-8d76557364a3 -2015,Salta,II.1.1,146.24988,TJ,CH4,3.9,kg/TJ,570.3745319999999,Gas Oil combustion consumption by freight transport,AR-A,SESCO,annual,kg,04d68029-fac2-3027-a878-a93c7614a49b -2015,Salta,II.1.1,146.24988,TJ,N2O,3.9,kg/TJ,570.3745319999999,Gas Oil combustion consumption by freight transport,AR-A,SESCO,annual,kg,04d68029-fac2-3027-a878-a93c7614a49b -2015,San Juan,II.1.1,102.83363999999999,TJ,CO2,74100.0,kg/TJ,7619972.723999999,Gas Oil combustion consumption by freight transport,AR-J,SESCO,annual,kg,a3989e94-200c-3113-bf41-13a149ab54a8 -2015,San Juan,II.1.1,102.83363999999999,TJ,CH4,3.9,kg/TJ,401.05119599999995,Gas Oil combustion consumption by freight transport,AR-J,SESCO,annual,kg,9adea895-1f5c-354c-a233-d0e699cb5f30 -2015,San Juan,II.1.1,102.83363999999999,TJ,N2O,3.9,kg/TJ,401.05119599999995,Gas Oil combustion consumption by freight transport,AR-J,SESCO,annual,kg,9adea895-1f5c-354c-a233-d0e699cb5f30 -2015,San Luis,II.1.1,130.10424,TJ,CO2,74100.0,kg/TJ,9640724.184,Gas Oil combustion consumption by freight transport,AR-D,SESCO,annual,kg,ede52816-0196-3458-be8d-ab6f634e3c8a -2015,San Luis,II.1.1,130.10424,TJ,CH4,3.9,kg/TJ,507.406536,Gas Oil combustion consumption by freight transport,AR-D,SESCO,annual,kg,50b47f2a-9045-3a07-972f-08d2777a823e -2015,San Luis,II.1.1,130.10424,TJ,N2O,3.9,kg/TJ,507.406536,Gas Oil combustion consumption by freight transport,AR-D,SESCO,annual,kg,50b47f2a-9045-3a07-972f-08d2777a823e -2015,Santa Cruz,II.1.1,71.04804,TJ,CO2,74100.0,kg/TJ,5264659.764,Gas Oil combustion consumption by freight transport,AR-Z,SESCO,annual,kg,2b3a8eeb-fe15-3b94-a247-0e97031eda3f -2015,Santa Cruz,II.1.1,71.04804,TJ,CH4,3.9,kg/TJ,277.087356,Gas Oil combustion consumption by freight transport,AR-Z,SESCO,annual,kg,cfa33b4e-1c01-35bc-9ca8-c208174122f4 -2015,Santa Cruz,II.1.1,71.04804,TJ,N2O,3.9,kg/TJ,277.087356,Gas Oil combustion consumption by freight transport,AR-Z,SESCO,annual,kg,cfa33b4e-1c01-35bc-9ca8-c208174122f4 -2015,Santa Fe,II.1.1,1626.95316,TJ,CO2,74100.0,kg/TJ,120557229.156,Gas Oil combustion consumption by freight transport,AR-S,SESCO,annual,kg,b51a179a-c811-3a43-9019-6cf615570e0b -2015,Santa Fe,II.1.1,1626.95316,TJ,CH4,3.9,kg/TJ,6345.117324,Gas Oil combustion consumption by freight transport,AR-S,SESCO,annual,kg,80fcc7aa-c7ae-37f0-a32d-0db750877290 -2015,Santa Fe,II.1.1,1626.95316,TJ,N2O,3.9,kg/TJ,6345.117324,Gas Oil combustion consumption by freight transport,AR-S,SESCO,annual,kg,80fcc7aa-c7ae-37f0-a32d-0db750877290 -2015,Santiago del Estero,II.1.1,98.21028,TJ,CO2,74100.0,kg/TJ,7277381.748,Gas Oil combustion consumption by freight transport,AR-G,SESCO,annual,kg,b037a896-5891-32c0-916a-00176caf97ca -2015,Santiago del Estero,II.1.1,98.21028,TJ,CH4,3.9,kg/TJ,383.020092,Gas Oil combustion consumption by freight transport,AR-G,SESCO,annual,kg,35a9d7a8-901f-33e4-8e4c-aa361a191615 -2015,Santiago del Estero,II.1.1,98.21028,TJ,N2O,3.9,kg/TJ,383.020092,Gas Oil combustion consumption by freight transport,AR-G,SESCO,annual,kg,35a9d7a8-901f-33e4-8e4c-aa361a191615 -2015,Tucuman,II.1.1,285.45635999999996,TJ,CO2,74100.0,kg/TJ,21152316.275999997,Gas Oil combustion consumption by freight transport,AR-T,SESCO,annual,kg,c423e938-2e07-3d01-88ea-05ac0335c413 -2015,Tucuman,II.1.1,285.45635999999996,TJ,CH4,3.9,kg/TJ,1113.2798039999998,Gas Oil combustion consumption by freight transport,AR-T,SESCO,annual,kg,75de2505-4a91-356c-9063-1190f3aaa49b -2015,Tucuman,II.1.1,285.45635999999996,TJ,N2O,3.9,kg/TJ,1113.2798039999998,Gas Oil combustion consumption by freight transport,AR-T,SESCO,annual,kg,75de2505-4a91-356c-9063-1190f3aaa49b -2015,Buenos Aires,II.1.1,400.71528,TJ,CO2,74100.0,kg/TJ,29693002.248,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,488623d4-5dca-330d-b6e9-0866942f2d1d -2015,Buenos Aires,II.1.1,400.71528,TJ,CH4,3.9,kg/TJ,1562.789592,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,fc1878fe-d0b0-33b3-886b-72cd1cbf6a9c -2015,Buenos Aires,II.1.1,400.71528,TJ,N2O,3.9,kg/TJ,1562.789592,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,fc1878fe-d0b0-33b3-886b-72cd1cbf6a9c -2015,Capital Federal,II.1.1,772.5706799999999,TJ,CO2,74100.0,kg/TJ,57247487.388,Gas Oil combustion consumption by freight transport,AR-C,SESCO,annual,kg,7dacaec7-990b-311f-97b1-ffd5e28dfed4 -2015,Capital Federal,II.1.1,772.5706799999999,TJ,CH4,3.9,kg/TJ,3013.025652,Gas Oil combustion consumption by freight transport,AR-C,SESCO,annual,kg,ac3b98d8-c2d8-33eb-ad72-1831dca3f549 -2015,Capital Federal,II.1.1,772.5706799999999,TJ,N2O,3.9,kg/TJ,3013.025652,Gas Oil combustion consumption by freight transport,AR-C,SESCO,annual,kg,ac3b98d8-c2d8-33eb-ad72-1831dca3f549 -2015,Chaco,II.1.1,20.48004,TJ,CO2,74100.0,kg/TJ,1517570.964,Gas Oil combustion consumption by freight transport,AR-H,SESCO,annual,kg,9d44d99c-3cf5-39b0-a5b2-e7f4f46fbb1a -2015,Chaco,II.1.1,20.48004,TJ,CH4,3.9,kg/TJ,79.87215599999999,Gas Oil combustion consumption by freight transport,AR-H,SESCO,annual,kg,804551ba-00cc-33ca-9972-4432356fa573 -2015,Chaco,II.1.1,20.48004,TJ,N2O,3.9,kg/TJ,79.87215599999999,Gas Oil combustion consumption by freight transport,AR-H,SESCO,annual,kg,804551ba-00cc-33ca-9972-4432356fa573 -2015,Chubut,II.1.1,10.4748,TJ,CO2,74100.0,kg/TJ,776182.68,Gas Oil combustion consumption by freight transport,AR-U,SESCO,annual,kg,c76268ed-556b-3e06-8390-617eb7073a3c -2015,Chubut,II.1.1,10.4748,TJ,CH4,3.9,kg/TJ,40.85172,Gas Oil combustion consumption by freight transport,AR-U,SESCO,annual,kg,10a430e8-68c8-39cc-8b28-93d4eb8c8675 -2015,Chubut,II.1.1,10.4748,TJ,N2O,3.9,kg/TJ,40.85172,Gas Oil combustion consumption by freight transport,AR-U,SESCO,annual,kg,10a430e8-68c8-39cc-8b28-93d4eb8c8675 -2015,Corrientes,II.1.1,2.96184,TJ,CO2,74100.0,kg/TJ,219472.344,Gas Oil combustion consumption by freight transport,AR-W,SESCO,annual,kg,0f51b2bd-3359-3567-a2d8-a86126ea759e -2015,Corrientes,II.1.1,2.96184,TJ,CH4,3.9,kg/TJ,11.551176,Gas Oil combustion consumption by freight transport,AR-W,SESCO,annual,kg,b6863e51-c660-3a9b-94b1-25504a92f4d2 -2015,Corrientes,II.1.1,2.96184,TJ,N2O,3.9,kg/TJ,11.551176,Gas Oil combustion consumption by freight transport,AR-W,SESCO,annual,kg,b6863e51-c660-3a9b-94b1-25504a92f4d2 -2015,Córdoba,II.1.1,19.39644,TJ,CO2,74100.0,kg/TJ,1437276.204,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,5da21488-9987-3f1b-9b12-8710cf9b8d70 -2015,Córdoba,II.1.1,19.39644,TJ,CH4,3.9,kg/TJ,75.64611599999999,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,e618f020-3377-3fec-8d34-8a5696592bb1 -2015,Córdoba,II.1.1,19.39644,TJ,N2O,3.9,kg/TJ,75.64611599999999,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,e618f020-3377-3fec-8d34-8a5696592bb1 -2015,Entre Rios,II.1.1,15.96504,TJ,CO2,74100.0,kg/TJ,1183009.464,Gas Oil combustion consumption by freight transport,AR-E,SESCO,annual,kg,d37448b1-0659-3846-86cb-e9ba9df460eb -2015,Entre Rios,II.1.1,15.96504,TJ,CH4,3.9,kg/TJ,62.263656,Gas Oil combustion consumption by freight transport,AR-E,SESCO,annual,kg,485f7c82-28a5-30c5-b070-1c710ba8ef5c -2015,Entre Rios,II.1.1,15.96504,TJ,N2O,3.9,kg/TJ,62.263656,Gas Oil combustion consumption by freight transport,AR-E,SESCO,annual,kg,485f7c82-28a5-30c5-b070-1c710ba8ef5c -2015,Jujuy,II.1.1,0.03612,TJ,CO2,74100.0,kg/TJ,2676.4919999999997,Gas Oil combustion consumption by freight transport,AR-Y,SESCO,annual,kg,3ff4451d-7617-3b97-a080-eaa02a384379 -2015,Jujuy,II.1.1,0.03612,TJ,CH4,3.9,kg/TJ,0.140868,Gas Oil combustion consumption by freight transport,AR-Y,SESCO,annual,kg,6f4c9fad-dbde-38f3-a1fc-be6512e67ea9 -2015,Jujuy,II.1.1,0.03612,TJ,N2O,3.9,kg/TJ,0.140868,Gas Oil combustion consumption by freight transport,AR-Y,SESCO,annual,kg,6f4c9fad-dbde-38f3-a1fc-be6512e67ea9 -2015,La Pampa,II.1.1,0.18059999999999998,TJ,CO2,74100.0,kg/TJ,13382.46,Gas Oil combustion consumption by freight transport,AR-L,SESCO,annual,kg,a66bb4f5-d8cc-3169-8587-27e7a3bcf968 -2015,La Pampa,II.1.1,0.18059999999999998,TJ,CH4,3.9,kg/TJ,0.70434,Gas Oil combustion consumption by freight transport,AR-L,SESCO,annual,kg,cc3d68d1-8be3-34dc-972b-85794ae2c59f -2015,La Pampa,II.1.1,0.18059999999999998,TJ,N2O,3.9,kg/TJ,0.70434,Gas Oil combustion consumption by freight transport,AR-L,SESCO,annual,kg,cc3d68d1-8be3-34dc-972b-85794ae2c59f -2015,La Rioja,II.1.1,2.8895999999999997,TJ,CO2,74100.0,kg/TJ,214119.36,Gas Oil combustion consumption by freight transport,AR-F,SESCO,annual,kg,35e79542-f4c4-3a93-a558-775ea0aa4d47 -2015,La Rioja,II.1.1,2.8895999999999997,TJ,CH4,3.9,kg/TJ,11.26944,Gas Oil combustion consumption by freight transport,AR-F,SESCO,annual,kg,57bc2b56-49c0-3e57-b0c5-46bc9a8512bf -2015,La Rioja,II.1.1,2.8895999999999997,TJ,N2O,3.9,kg/TJ,11.26944,Gas Oil combustion consumption by freight transport,AR-F,SESCO,annual,kg,57bc2b56-49c0-3e57-b0c5-46bc9a8512bf -2015,Mendoza,II.1.1,36.91464,TJ,CO2,74100.0,kg/TJ,2735374.824,Gas Oil combustion consumption by freight transport,AR-M,SESCO,annual,kg,e5e990fe-0558-3ff9-b3f9-01859864a662 -2015,Mendoza,II.1.1,36.91464,TJ,CH4,3.9,kg/TJ,143.967096,Gas Oil combustion consumption by freight transport,AR-M,SESCO,annual,kg,7e445236-9686-348b-9ac2-162f18189469 -2015,Mendoza,II.1.1,36.91464,TJ,N2O,3.9,kg/TJ,143.967096,Gas Oil combustion consumption by freight transport,AR-M,SESCO,annual,kg,7e445236-9686-348b-9ac2-162f18189469 -2015,Misiones,II.1.1,11.99184,TJ,CO2,74100.0,kg/TJ,888595.344,Gas Oil combustion consumption by freight transport,AR-N,SESCO,annual,kg,a3b55dd4-8505-32f0-b011-66ff73b8af7f -2015,Misiones,II.1.1,11.99184,TJ,CH4,3.9,kg/TJ,46.768176,Gas Oil combustion consumption by freight transport,AR-N,SESCO,annual,kg,dc262bdc-12be-346e-8971-54f35839af90 -2015,Misiones,II.1.1,11.99184,TJ,N2O,3.9,kg/TJ,46.768176,Gas Oil combustion consumption by freight transport,AR-N,SESCO,annual,kg,dc262bdc-12be-346e-8971-54f35839af90 -2015,Neuquén,II.1.1,71.55372,TJ,CO2,74100.0,kg/TJ,5302130.652,Gas Oil combustion consumption by freight transport,AR-Q,SESCO,annual,kg,00231b43-4cc7-36dd-b616-869c50a9decb -2015,Neuquén,II.1.1,71.55372,TJ,CH4,3.9,kg/TJ,279.059508,Gas Oil combustion consumption by freight transport,AR-Q,SESCO,annual,kg,0b54e7c6-a306-37a1-8188-93177f2ac0be -2015,Neuquén,II.1.1,71.55372,TJ,N2O,3.9,kg/TJ,279.059508,Gas Oil combustion consumption by freight transport,AR-Q,SESCO,annual,kg,0b54e7c6-a306-37a1-8188-93177f2ac0be -2015,Rio Negro,II.1.1,3.8287199999999997,TJ,CO2,74100.0,kg/TJ,283708.152,Gas Oil combustion consumption by freight transport,AR-R,SESCO,annual,kg,2b49f254-33e2-340a-869e-08075b271ba2 -2015,Rio Negro,II.1.1,3.8287199999999997,TJ,CH4,3.9,kg/TJ,14.932007999999998,Gas Oil combustion consumption by freight transport,AR-R,SESCO,annual,kg,fc2c3181-dbd1-3752-8947-e1a5c7806947 -2015,Rio Negro,II.1.1,3.8287199999999997,TJ,N2O,3.9,kg/TJ,14.932007999999998,Gas Oil combustion consumption by freight transport,AR-R,SESCO,annual,kg,fc2c3181-dbd1-3752-8947-e1a5c7806947 -2015,Salta,II.1.1,24.850559999999998,TJ,CO2,74100.0,kg/TJ,1841426.4959999998,Gas Oil combustion consumption by freight transport,AR-A,SESCO,annual,kg,b2f93aae-b46b-3785-9e4b-fb0a90223712 -2015,Salta,II.1.1,24.850559999999998,TJ,CH4,3.9,kg/TJ,96.91718399999999,Gas Oil combustion consumption by freight transport,AR-A,SESCO,annual,kg,896c0c65-26a8-3a7f-9c76-acd2b91c9134 -2015,Salta,II.1.1,24.850559999999998,TJ,N2O,3.9,kg/TJ,96.91718399999999,Gas Oil combustion consumption by freight transport,AR-A,SESCO,annual,kg,896c0c65-26a8-3a7f-9c76-acd2b91c9134 -2015,San Juan,II.1.1,4.47888,TJ,CO2,74100.0,kg/TJ,331885.00800000003,Gas Oil combustion consumption by freight transport,AR-J,SESCO,annual,kg,5628cee7-bf04-33e5-b7ae-a9a05144a38d -2015,San Juan,II.1.1,4.47888,TJ,CH4,3.9,kg/TJ,17.467632000000002,Gas Oil combustion consumption by freight transport,AR-J,SESCO,annual,kg,cb55ba07-aaa8-370e-b385-b6e08715c268 -2015,San Juan,II.1.1,4.47888,TJ,N2O,3.9,kg/TJ,17.467632000000002,Gas Oil combustion consumption by freight transport,AR-J,SESCO,annual,kg,cb55ba07-aaa8-370e-b385-b6e08715c268 -2015,San Luis,II.1.1,2.56452,TJ,CO2,74100.0,kg/TJ,190030.932,Gas Oil combustion consumption by freight transport,AR-D,SESCO,annual,kg,c4e86503-1b32-3541-984b-c261d3fb5e01 -2015,San Luis,II.1.1,2.56452,TJ,CH4,3.9,kg/TJ,10.001628,Gas Oil combustion consumption by freight transport,AR-D,SESCO,annual,kg,333e4407-343c-3afd-882c-ac80eb2d6757 -2015,San Luis,II.1.1,2.56452,TJ,N2O,3.9,kg/TJ,10.001628,Gas Oil combustion consumption by freight transport,AR-D,SESCO,annual,kg,333e4407-343c-3afd-882c-ac80eb2d6757 -2015,Santa Cruz,II.1.1,2.78124,TJ,CO2,74100.0,kg/TJ,206089.884,Gas Oil combustion consumption by freight transport,AR-Z,SESCO,annual,kg,53363f11-0de6-32dc-8844-30d7cda218d9 -2015,Santa Cruz,II.1.1,2.78124,TJ,CH4,3.9,kg/TJ,10.846836,Gas Oil combustion consumption by freight transport,AR-Z,SESCO,annual,kg,257ba2e0-62f8-37e5-a13b-8d0ba33ed8dc -2015,Santa Cruz,II.1.1,2.78124,TJ,N2O,3.9,kg/TJ,10.846836,Gas Oil combustion consumption by freight transport,AR-Z,SESCO,annual,kg,257ba2e0-62f8-37e5-a13b-8d0ba33ed8dc -2015,Santa Fe,II.1.1,163.33463999999998,TJ,CO2,74100.0,kg/TJ,12103096.824,Gas Oil combustion consumption by freight transport,AR-S,SESCO,annual,kg,54b86c31-d510-3bd5-b07b-b4cc501bbbf5 -2015,Santa Fe,II.1.1,163.33463999999998,TJ,CH4,3.9,kg/TJ,637.0050959999999,Gas Oil combustion consumption by freight transport,AR-S,SESCO,annual,kg,185e4ad9-ab8b-3868-8277-c7ca4e14dcb2 -2015,Santa Fe,II.1.1,163.33463999999998,TJ,N2O,3.9,kg/TJ,637.0050959999999,Gas Oil combustion consumption by freight transport,AR-S,SESCO,annual,kg,185e4ad9-ab8b-3868-8277-c7ca4e14dcb2 -2015,Santiago del Estero,II.1.1,0.07224,TJ,CO2,74100.0,kg/TJ,5352.9839999999995,Gas Oil combustion consumption by freight transport,AR-G,SESCO,annual,kg,02b10c80-f015-39cb-aa5e-0fa5fb8fab17 -2015,Santiago del Estero,II.1.1,0.07224,TJ,CH4,3.9,kg/TJ,0.281736,Gas Oil combustion consumption by freight transport,AR-G,SESCO,annual,kg,e5567771-8320-33a5-9f80-456ff2ef92f1 -2015,Santiago del Estero,II.1.1,0.07224,TJ,N2O,3.9,kg/TJ,0.281736,Gas Oil combustion consumption by freight transport,AR-G,SESCO,annual,kg,e5567771-8320-33a5-9f80-456ff2ef92f1 -2015,Tucuman,II.1.1,7.910279999999999,TJ,CO2,74100.0,kg/TJ,586151.7479999999,Gas Oil combustion consumption by freight transport,AR-T,SESCO,annual,kg,e89f0b45-a172-3a01-aa0d-85a8eccfb660 -2015,Tucuman,II.1.1,7.910279999999999,TJ,CH4,3.9,kg/TJ,30.850091999999997,Gas Oil combustion consumption by freight transport,AR-T,SESCO,annual,kg,aceeb4ef-f58e-38c5-bcf5-13584398ce16 -2015,Tucuman,II.1.1,7.910279999999999,TJ,N2O,3.9,kg/TJ,30.850091999999997,Gas Oil combustion consumption by freight transport,AR-T,SESCO,annual,kg,aceeb4ef-f58e-38c5-bcf5-13584398ce16 -2015,Buenos Aires,II.1.1,218.507905,TJ,CO2,73300.0,kg/TJ,16016629.4365,Naphtha combustion consumption by freight transport,AR-B,SESCO,annual,kg,471f19d6-a5a0-31d0-ac6e-11b0d7388959 -2015,Buenos Aires,II.1.1,218.507905,TJ,CH4,0.5,kg/TJ,109.2539525,Naphtha combustion consumption by freight transport,AR-B,SESCO,annual,kg,d87d427a-14c3-3b16-826e-fddd906b03c7 -2015,Buenos Aires,II.1.1,218.507905,TJ,N2O,2.0,kg/TJ,437.01581,Naphtha combustion consumption by freight transport,AR-B,SESCO,annual,kg,8839f5d2-361b-3efb-afe9-ca558f88a33b -2015,Capital Federal,II.1.1,227.38253999999998,TJ,CO2,73300.0,kg/TJ,16667140.181999998,Naphtha combustion consumption by freight transport,AR-C,SESCO,annual,kg,262eb3e0-43a1-3764-aa12-047f9a9c8850 -2015,Capital Federal,II.1.1,227.38253999999998,TJ,CH4,0.5,kg/TJ,113.69126999999999,Naphtha combustion consumption by freight transport,AR-C,SESCO,annual,kg,693a5496-d338-3e88-88fc-105f23cff87f -2015,Capital Federal,II.1.1,227.38253999999998,TJ,N2O,2.0,kg/TJ,454.76507999999995,Naphtha combustion consumption by freight transport,AR-C,SESCO,annual,kg,d7d44caa-196a-34d7-a6a1-f325fbfe606b -2015,Chaco,II.1.1,6.544614999999999,TJ,CO2,73300.0,kg/TJ,479720.27949999995,Naphtha combustion consumption by freight transport,AR-H,SESCO,annual,kg,121f937d-c61b-38ae-829f-f2572fabcbd7 -2015,Chaco,II.1.1,6.544614999999999,TJ,CH4,0.5,kg/TJ,3.2723074999999997,Naphtha combustion consumption by freight transport,AR-H,SESCO,annual,kg,3d3984d8-c021-3eca-af16-efc480d3c017 -2015,Chaco,II.1.1,6.544614999999999,TJ,N2O,2.0,kg/TJ,13.089229999999999,Naphtha combustion consumption by freight transport,AR-H,SESCO,annual,kg,8bb802e1-f346-315b-8458-fad46f9341f2 -2015,Chubut,II.1.1,1.130745,TJ,CO2,73300.0,kg/TJ,82883.60849999999,Naphtha combustion consumption by freight transport,AR-U,SESCO,annual,kg,c0a5eff9-1b24-3a03-bd32-3b90a02241a5 -2015,Chubut,II.1.1,1.130745,TJ,CH4,0.5,kg/TJ,0.5653725,Naphtha combustion consumption by freight transport,AR-U,SESCO,annual,kg,0115089b-96f0-326b-9af9-be75ee47b507 -2015,Chubut,II.1.1,1.130745,TJ,N2O,2.0,kg/TJ,2.26149,Naphtha combustion consumption by freight transport,AR-U,SESCO,annual,kg,3d27f37c-b022-3345-98b2-62903f7340a4 -2015,Corrientes,II.1.1,1.3020699999999998,TJ,CO2,73300.0,kg/TJ,95441.73099999999,Naphtha combustion consumption by freight transport,AR-W,SESCO,annual,kg,284df138-a9c5-34c8-956d-553ad6af1afe -2015,Corrientes,II.1.1,1.3020699999999998,TJ,CH4,0.5,kg/TJ,0.6510349999999999,Naphtha combustion consumption by freight transport,AR-W,SESCO,annual,kg,fce74ab2-9e5e-361c-ae5c-8be4a2935a33 -2015,Corrientes,II.1.1,1.3020699999999998,TJ,N2O,2.0,kg/TJ,2.6041399999999997,Naphtha combustion consumption by freight transport,AR-W,SESCO,annual,kg,0dc0dff5-071c-3c07-abd2-c3cdb105a8ea -2015,Córdoba,II.1.1,4.557245,TJ,CO2,73300.0,kg/TJ,334046.0585,Naphtha combustion consumption by freight transport,AR-X,SESCO,annual,kg,2ce58346-118a-3d8f-999f-af9526c778d8 -2015,Córdoba,II.1.1,4.557245,TJ,CH4,0.5,kg/TJ,2.2786225,Naphtha combustion consumption by freight transport,AR-X,SESCO,annual,kg,4c57a297-b251-3634-8dbf-4736e5b6ecce -2015,Córdoba,II.1.1,4.557245,TJ,N2O,2.0,kg/TJ,9.11449,Naphtha combustion consumption by freight transport,AR-X,SESCO,annual,kg,f2eb3d31-8f8b-3abe-a4d1-aaf16c1817f1 -2015,Entre Rios,II.1.1,2.2957549999999998,TJ,CO2,73300.0,kg/TJ,168278.84149999998,Naphtha combustion consumption by freight transport,AR-E,SESCO,annual,kg,f3742756-83ec-3e1c-b9aa-7b288b5a60f5 -2015,Entre Rios,II.1.1,2.2957549999999998,TJ,CH4,0.5,kg/TJ,1.1478774999999999,Naphtha combustion consumption by freight transport,AR-E,SESCO,annual,kg,8ea85602-1520-3a35-91e8-3310e4ab93c1 -2015,Entre Rios,II.1.1,2.2957549999999998,TJ,N2O,2.0,kg/TJ,4.5915099999999995,Naphtha combustion consumption by freight transport,AR-E,SESCO,annual,kg,3698dfc7-4e4d-320f-ab26-1da84c8be605 -2015,Mendoza,II.1.1,6.78447,TJ,CO2,73300.0,kg/TJ,497301.651,Naphtha combustion consumption by freight transport,AR-M,SESCO,annual,kg,58ca49b0-da0b-3f95-8a00-a62088746bdf -2015,Mendoza,II.1.1,6.78447,TJ,CH4,0.5,kg/TJ,3.392235,Naphtha combustion consumption by freight transport,AR-M,SESCO,annual,kg,ce83fa9c-6cc0-31fb-8b68-a2d133e7ea36 -2015,Mendoza,II.1.1,6.78447,TJ,N2O,2.0,kg/TJ,13.56894,Naphtha combustion consumption by freight transport,AR-M,SESCO,annual,kg,a0e229f2-9c1d-341e-8e0f-ce743c5f3fd7 -2015,Misiones,II.1.1,0.47970999999999997,TJ,CO2,73300.0,kg/TJ,35162.742999999995,Naphtha combustion consumption by freight transport,AR-N,SESCO,annual,kg,d55b6618-2cf8-305b-ae6e-f5052ddbf9d7 -2015,Misiones,II.1.1,0.47970999999999997,TJ,CH4,0.5,kg/TJ,0.23985499999999998,Naphtha combustion consumption by freight transport,AR-N,SESCO,annual,kg,5554b538-9c3c-36a7-bf46-8b6a29341324 -2015,Misiones,II.1.1,0.47970999999999997,TJ,N2O,2.0,kg/TJ,0.9594199999999999,Naphtha combustion consumption by freight transport,AR-N,SESCO,annual,kg,3036853a-388b-35b4-a8be-56c8786fb20a -2015,Neuquén,II.1.1,1.02795,TJ,CO2,73300.0,kg/TJ,75348.735,Naphtha combustion consumption by freight transport,AR-Q,SESCO,annual,kg,ff0afeee-954c-3621-a6bd-60e85bfdcdc7 -2015,Neuquén,II.1.1,1.02795,TJ,CH4,0.5,kg/TJ,0.513975,Naphtha combustion consumption by freight transport,AR-Q,SESCO,annual,kg,eada87fc-ee61-37d4-afcf-3ad83201162b -2015,Neuquén,II.1.1,1.02795,TJ,N2O,2.0,kg/TJ,2.0559,Naphtha combustion consumption by freight transport,AR-Q,SESCO,annual,kg,297ddf0a-57d8-37d2-a1cb-492dc5569350 -2015,Rio Negro,II.1.1,1.3363349999999998,TJ,CO2,73300.0,kg/TJ,97953.35549999999,Naphtha combustion consumption by freight transport,AR-R,SESCO,annual,kg,d8f84189-a79e-3f3c-b2b9-bb234fcf7024 -2015,Rio Negro,II.1.1,1.3363349999999998,TJ,CH4,0.5,kg/TJ,0.6681674999999999,Naphtha combustion consumption by freight transport,AR-R,SESCO,annual,kg,28bf0335-077d-3dff-8679-dd0e46f097bd -2015,Rio Negro,II.1.1,1.3363349999999998,TJ,N2O,2.0,kg/TJ,2.6726699999999997,Naphtha combustion consumption by freight transport,AR-R,SESCO,annual,kg,e4a0b107-5aa2-348a-aaf5-19ca40c76d92 -2015,Salta,II.1.1,11.752894999999999,TJ,CO2,73300.0,kg/TJ,861487.2035,Naphtha combustion consumption by freight transport,AR-A,SESCO,annual,kg,07985c38-5f06-32d7-8e9a-17c54ab9f3b8 -2015,Salta,II.1.1,11.752894999999999,TJ,CH4,0.5,kg/TJ,5.876447499999999,Naphtha combustion consumption by freight transport,AR-A,SESCO,annual,kg,6612cb82-8854-3042-b8d1-2ca42611e340 -2015,Salta,II.1.1,11.752894999999999,TJ,N2O,2.0,kg/TJ,23.505789999999998,Naphtha combustion consumption by freight transport,AR-A,SESCO,annual,kg,abcea6c5-3f2f-3214-8383-f82863b2db2a -2015,San Juan,II.1.1,0.034265,TJ,CO2,73300.0,kg/TJ,2511.6245,Naphtha combustion consumption by freight transport,AR-J,SESCO,annual,kg,7783d4dd-f587-302b-9955-416fe5a0dce4 -2015,San Juan,II.1.1,0.034265,TJ,CH4,0.5,kg/TJ,0.0171325,Naphtha combustion consumption by freight transport,AR-J,SESCO,annual,kg,46f339eb-af7d-3569-8b43-3a90abb55254 -2015,San Juan,II.1.1,0.034265,TJ,N2O,2.0,kg/TJ,0.06853,Naphtha combustion consumption by freight transport,AR-J,SESCO,annual,kg,15bcefe6-963c-3365-8162-932699c3631d -2015,San Luis,II.1.1,0.171325,TJ,CO2,73300.0,kg/TJ,12558.1225,Naphtha combustion consumption by freight transport,AR-D,SESCO,annual,kg,b7620954-c9e5-3ac4-bd49-45f744b909d7 -2015,San Luis,II.1.1,0.171325,TJ,CH4,0.5,kg/TJ,0.0856625,Naphtha combustion consumption by freight transport,AR-D,SESCO,annual,kg,fe85a9b8-a548-335a-a1cf-c5d3ddb86e07 -2015,San Luis,II.1.1,0.171325,TJ,N2O,2.0,kg/TJ,0.34265,Naphtha combustion consumption by freight transport,AR-D,SESCO,annual,kg,82b99a08-a141-3d8c-9a5d-3c3c7823eec2 -2015,Santa Fe,II.1.1,19.222665,TJ,CO2,73300.0,kg/TJ,1409021.3445,Naphtha combustion consumption by freight transport,AR-S,SESCO,annual,kg,2ab77eb0-3cb2-3bbb-bcf7-e552003a7452 -2015,Santa Fe,II.1.1,19.222665,TJ,CH4,0.5,kg/TJ,9.6113325,Naphtha combustion consumption by freight transport,AR-S,SESCO,annual,kg,a0f4047c-d69d-3467-afa2-47723bd7f1b7 -2015,Santa Fe,II.1.1,19.222665,TJ,N2O,2.0,kg/TJ,38.44533,Naphtha combustion consumption by freight transport,AR-S,SESCO,annual,kg,dd10c8ea-04ce-34d4-9cb7-24d0f4e53eb7 -2015,Santiago del Estero,II.1.1,0.06853,TJ,CO2,73300.0,kg/TJ,5023.249,Naphtha combustion consumption by freight transport,AR-G,SESCO,annual,kg,f23894bc-c23a-3c6e-b8a8-10360c74e971 -2015,Santiago del Estero,II.1.1,0.06853,TJ,CH4,0.5,kg/TJ,0.034265,Naphtha combustion consumption by freight transport,AR-G,SESCO,annual,kg,9fc64262-86ad-3f86-bb3d-9a50d6467d98 -2015,Santiago del Estero,II.1.1,0.06853,TJ,N2O,2.0,kg/TJ,0.13706,Naphtha combustion consumption by freight transport,AR-G,SESCO,annual,kg,d1195be3-c3da-3179-b443-7bd295b2745b -2015,Tucuman,II.1.1,1.610455,TJ,CO2,73300.0,kg/TJ,118046.3515,Naphtha combustion consumption by freight transport,AR-T,SESCO,annual,kg,7d9e91f4-3655-39a0-9531-8601fcdf8b8a -2015,Tucuman,II.1.1,1.610455,TJ,CH4,0.5,kg/TJ,0.8052275,Naphtha combustion consumption by freight transport,AR-T,SESCO,annual,kg,193d1d1a-2bcd-3545-9df5-71276ea4a210 -2015,Tucuman,II.1.1,1.610455,TJ,N2O,2.0,kg/TJ,3.22091,Naphtha combustion consumption by freight transport,AR-T,SESCO,annual,kg,d2de7af9-bb10-3ec5-b0cd-d655f131e783 -2015,Buenos Aires,II.1.1,215.8695,TJ,CO2,73300.0,kg/TJ,15823234.35,Naphtha combustion consumption by freight transport,AR-B,SESCO,annual,kg,5c712299-02b6-3ba5-b8c8-3774f95837d3 -2015,Buenos Aires,II.1.1,215.8695,TJ,CH4,0.5,kg/TJ,107.93475,Naphtha combustion consumption by freight transport,AR-B,SESCO,annual,kg,f67dd2db-9a19-3e90-ae0c-59c8311f0c54 -2015,Buenos Aires,II.1.1,215.8695,TJ,N2O,2.0,kg/TJ,431.739,Naphtha combustion consumption by freight transport,AR-B,SESCO,annual,kg,19b945cc-10aa-3afa-a86c-3b59a322e432 -2015,Capital Federal,II.1.1,232.93347,TJ,CO2,73300.0,kg/TJ,17074023.351,Naphtha combustion consumption by freight transport,AR-C,SESCO,annual,kg,4304d013-5edd-3fd9-8d63-42021381b9ec -2015,Capital Federal,II.1.1,232.93347,TJ,CH4,0.5,kg/TJ,116.466735,Naphtha combustion consumption by freight transport,AR-C,SESCO,annual,kg,d1392d9f-2461-3368-979f-f0c83e9d71d6 -2015,Capital Federal,II.1.1,232.93347,TJ,N2O,2.0,kg/TJ,465.86694,Naphtha combustion consumption by freight transport,AR-C,SESCO,annual,kg,ead83a5f-ea6d-3780-8ce5-ce1ecc115dca -2015,Chaco,II.1.1,7.05859,TJ,CO2,73300.0,kg/TJ,517394.647,Naphtha combustion consumption by freight transport,AR-H,SESCO,annual,kg,320dd9b1-4793-3176-95b7-4cbce6720197 -2015,Chaco,II.1.1,7.05859,TJ,CH4,0.5,kg/TJ,3.529295,Naphtha combustion consumption by freight transport,AR-H,SESCO,annual,kg,440218c1-5047-33e8-a3f4-c0f6f7ea9806 -2015,Chaco,II.1.1,7.05859,TJ,N2O,2.0,kg/TJ,14.11718,Naphtha combustion consumption by freight transport,AR-H,SESCO,annual,kg,4b39381c-b6af-3c88-bfbc-d5f07ac64c09 -2015,Chubut,II.1.1,0.6167699999999999,TJ,CO2,73300.0,kg/TJ,45209.240999999995,Naphtha combustion consumption by freight transport,AR-U,SESCO,annual,kg,ec4e815d-d7ff-3d82-97e6-ddd1572f8d4c -2015,Chubut,II.1.1,0.6167699999999999,TJ,CH4,0.5,kg/TJ,0.30838499999999996,Naphtha combustion consumption by freight transport,AR-U,SESCO,annual,kg,b968e661-f520-307a-8524-1603bf47dbb1 -2015,Chubut,II.1.1,0.6167699999999999,TJ,N2O,2.0,kg/TJ,1.2335399999999999,Naphtha combustion consumption by freight transport,AR-U,SESCO,annual,kg,12c39a33-fe8c-3b6e-aea2-648d4181863d -2015,Corrientes,II.1.1,3.22091,TJ,CO2,73300.0,kg/TJ,236092.703,Naphtha combustion consumption by freight transport,AR-W,SESCO,annual,kg,a545ac87-b668-3f6c-b184-03401d8f5c43 -2015,Corrientes,II.1.1,3.22091,TJ,CH4,0.5,kg/TJ,1.610455,Naphtha combustion consumption by freight transport,AR-W,SESCO,annual,kg,16a87a89-96b0-3aae-a8c4-f48603674ee8 -2015,Corrientes,II.1.1,3.22091,TJ,N2O,2.0,kg/TJ,6.44182,Naphtha combustion consumption by freight transport,AR-W,SESCO,annual,kg,3dd23d72-1acb-3aaa-a375-ae28f6088d60 -2015,Córdoba,II.1.1,6.476084999999999,TJ,CO2,73300.0,kg/TJ,474697.03049999994,Naphtha combustion consumption by freight transport,AR-X,SESCO,annual,kg,6fae181b-a1aa-36c7-836c-01b94fcb9fc3 -2015,Córdoba,II.1.1,6.476084999999999,TJ,CH4,0.5,kg/TJ,3.2380424999999997,Naphtha combustion consumption by freight transport,AR-X,SESCO,annual,kg,a2cf52ec-8cb5-3cdc-a7ef-04dc48325a68 -2015,Córdoba,II.1.1,6.476084999999999,TJ,N2O,2.0,kg/TJ,12.952169999999999,Naphtha combustion consumption by freight transport,AR-X,SESCO,annual,kg,fbeb3ccd-2f50-3c3c-ad72-482bab689cb3 -2015,Entre Rios,II.1.1,2.5356099999999997,TJ,CO2,73300.0,kg/TJ,185860.213,Naphtha combustion consumption by freight transport,AR-E,SESCO,annual,kg,2d292191-1f04-342f-81ed-29bbee3c3a30 -2015,Entre Rios,II.1.1,2.5356099999999997,TJ,CH4,0.5,kg/TJ,1.2678049999999998,Naphtha combustion consumption by freight transport,AR-E,SESCO,annual,kg,ad0c404d-8fdf-3f89-b4fa-01bd393f4adc -2015,Entre Rios,II.1.1,2.5356099999999997,TJ,N2O,2.0,kg/TJ,5.071219999999999,Naphtha combustion consumption by freight transport,AR-E,SESCO,annual,kg,d37cd967-43a5-3305-b85f-0713cb81c955 -2015,Jujuy,II.1.1,0.06853,TJ,CO2,73300.0,kg/TJ,5023.249,Naphtha combustion consumption by freight transport,AR-Y,SESCO,annual,kg,fd718b23-be92-3015-9f76-01676a603076 -2015,Jujuy,II.1.1,0.06853,TJ,CH4,0.5,kg/TJ,0.034265,Naphtha combustion consumption by freight transport,AR-Y,SESCO,annual,kg,aa693055-394f-3a27-8160-b499bc8021a0 -2015,Jujuy,II.1.1,0.06853,TJ,N2O,2.0,kg/TJ,0.13706,Naphtha combustion consumption by freight transport,AR-Y,SESCO,annual,kg,09b4e6ea-1781-39c6-92e2-52378fe71af2 -2015,La Pampa,II.1.1,0.102795,TJ,CO2,73300.0,kg/TJ,7534.8735,Naphtha combustion consumption by freight transport,AR-L,SESCO,annual,kg,a4e95a42-a2d8-39a5-8562-8d7892821928 -2015,La Pampa,II.1.1,0.102795,TJ,CH4,0.5,kg/TJ,0.0513975,Naphtha combustion consumption by freight transport,AR-L,SESCO,annual,kg,4257940a-c7c2-37d4-a461-0770ab8012f4 -2015,La Pampa,II.1.1,0.102795,TJ,N2O,2.0,kg/TJ,0.20559,Naphtha combustion consumption by freight transport,AR-L,SESCO,annual,kg,2e8fca64-1f21-3cde-a102-931a02466fcf -2015,La Rioja,II.1.1,1.062215,TJ,CO2,73300.0,kg/TJ,77860.35949999999,Naphtha combustion consumption by freight transport,AR-F,SESCO,annual,kg,f56bd90a-3050-30a5-af59-2f72abcebf08 -2015,La Rioja,II.1.1,1.062215,TJ,CH4,0.5,kg/TJ,0.5311075,Naphtha combustion consumption by freight transport,AR-F,SESCO,annual,kg,a0806604-1587-39b4-a914-ca5c77790b08 -2015,La Rioja,II.1.1,1.062215,TJ,N2O,2.0,kg/TJ,2.12443,Naphtha combustion consumption by freight transport,AR-F,SESCO,annual,kg,9c430da5-1bc2-3e12-bd3c-fc55dd0a2dc6 -2015,Mendoza,II.1.1,5.311075,TJ,CO2,73300.0,kg/TJ,389301.7975,Naphtha combustion consumption by freight transport,AR-M,SESCO,annual,kg,7e88ee6f-6cd3-3441-aa97-543dcf695dc2 -2015,Mendoza,II.1.1,5.311075,TJ,CH4,0.5,kg/TJ,2.6555375,Naphtha combustion consumption by freight transport,AR-M,SESCO,annual,kg,3377a829-6fe4-34b3-be12-d59ac44e5eb3 -2015,Mendoza,II.1.1,5.311075,TJ,N2O,2.0,kg/TJ,10.62215,Naphtha combustion consumption by freight transport,AR-M,SESCO,annual,kg,4b119798-0b1f-37fa-bbb1-45e789fe4061 -2015,Misiones,II.1.1,2.0559,TJ,CO2,73300.0,kg/TJ,150697.47,Naphtha combustion consumption by freight transport,AR-N,SESCO,annual,kg,e8c1446c-2f21-37b4-aa5f-60a3cefa0b00 -2015,Misiones,II.1.1,2.0559,TJ,CH4,0.5,kg/TJ,1.02795,Naphtha combustion consumption by freight transport,AR-N,SESCO,annual,kg,c632a6e8-1e1d-3a58-adb7-c0ec827092cb -2015,Misiones,II.1.1,2.0559,TJ,N2O,2.0,kg/TJ,4.1118,Naphtha combustion consumption by freight transport,AR-N,SESCO,annual,kg,603d29e3-6679-3d5f-9b82-a918e31baa17 -2015,Neuquén,II.1.1,1.678985,TJ,CO2,73300.0,kg/TJ,123069.6005,Naphtha combustion consumption by freight transport,AR-Q,SESCO,annual,kg,6c5c75ea-532d-34bd-8654-ed12cd321a5d -2015,Neuquén,II.1.1,1.678985,TJ,CH4,0.5,kg/TJ,0.8394925,Naphtha combustion consumption by freight transport,AR-Q,SESCO,annual,kg,3b8220ce-c49f-3ed1-a1b4-731c5238087b -2015,Neuquén,II.1.1,1.678985,TJ,N2O,2.0,kg/TJ,3.35797,Naphtha combustion consumption by freight transport,AR-Q,SESCO,annual,kg,7f50f794-55da-3282-adc1-fa59d6c34a88 -2015,Rio Negro,II.1.1,2.706935,TJ,CO2,73300.0,kg/TJ,198418.33550000002,Naphtha combustion consumption by freight transport,AR-R,SESCO,annual,kg,658a4821-7841-3898-a078-18a5044886a0 -2015,Rio Negro,II.1.1,2.706935,TJ,CH4,0.5,kg/TJ,1.3534675,Naphtha combustion consumption by freight transport,AR-R,SESCO,annual,kg,b38c3b82-9391-3bb7-a56d-e219453503a5 -2015,Rio Negro,II.1.1,2.706935,TJ,N2O,2.0,kg/TJ,5.41387,Naphtha combustion consumption by freight transport,AR-R,SESCO,annual,kg,49db775b-d50f-3bf1-bb74-59a1eb52f918 -2015,Salta,II.1.1,1.43913,TJ,CO2,73300.0,kg/TJ,105488.229,Naphtha combustion consumption by freight transport,AR-A,SESCO,annual,kg,3b1ba111-3422-373f-a26d-7643c1a07d03 -2015,Salta,II.1.1,1.43913,TJ,CH4,0.5,kg/TJ,0.719565,Naphtha combustion consumption by freight transport,AR-A,SESCO,annual,kg,1ec8b9b2-8c4e-39dd-a890-e2fe2ab419d6 -2015,Salta,II.1.1,1.43913,TJ,N2O,2.0,kg/TJ,2.87826,Naphtha combustion consumption by freight transport,AR-A,SESCO,annual,kg,deaf2a5c-ee50-30ff-a53a-6ca352c8540e -2015,San Luis,II.1.1,0.41118,TJ,CO2,73300.0,kg/TJ,30139.494,Naphtha combustion consumption by freight transport,AR-D,SESCO,annual,kg,ea04c37e-6ce7-307e-88ad-259c7d1b879d -2015,San Luis,II.1.1,0.41118,TJ,CH4,0.5,kg/TJ,0.20559,Naphtha combustion consumption by freight transport,AR-D,SESCO,annual,kg,a6cbdc46-0cba-3218-8af0-a5258f70af01 -2015,San Luis,II.1.1,0.41118,TJ,N2O,2.0,kg/TJ,0.82236,Naphtha combustion consumption by freight transport,AR-D,SESCO,annual,kg,866d1f65-bd51-3b18-9db9-bbddd06abbb2 -2015,Santa Fe,II.1.1,26.349784999999997,TJ,CO2,73300.0,kg/TJ,1931439.2404999998,Naphtha combustion consumption by freight transport,AR-S,SESCO,annual,kg,7c55ffe4-ce2e-30be-82f3-fa44a5cb9365 -2015,Santa Fe,II.1.1,26.349784999999997,TJ,CH4,0.5,kg/TJ,13.174892499999999,Naphtha combustion consumption by freight transport,AR-S,SESCO,annual,kg,e9f7f7b9-f4a7-3420-811b-6e4a62bf44e0 -2015,Santa Fe,II.1.1,26.349784999999997,TJ,N2O,2.0,kg/TJ,52.699569999999994,Naphtha combustion consumption by freight transport,AR-S,SESCO,annual,kg,71b1e7ab-5d72-3a1d-838a-a9cd645ff104 -2015,Santiago del Estero,II.1.1,0.06853,TJ,CO2,73300.0,kg/TJ,5023.249,Naphtha combustion consumption by freight transport,AR-G,SESCO,annual,kg,f23894bc-c23a-3c6e-b8a8-10360c74e971 -2015,Santiago del Estero,II.1.1,0.06853,TJ,CH4,0.5,kg/TJ,0.034265,Naphtha combustion consumption by freight transport,AR-G,SESCO,annual,kg,9fc64262-86ad-3f86-bb3d-9a50d6467d98 -2015,Santiago del Estero,II.1.1,0.06853,TJ,N2O,2.0,kg/TJ,0.13706,Naphtha combustion consumption by freight transport,AR-G,SESCO,annual,kg,d1195be3-c3da-3179-b443-7bd295b2745b -2015,Tucuman,II.1.1,1.3363349999999998,TJ,CO2,73300.0,kg/TJ,97953.35549999999,Naphtha combustion consumption by freight transport,AR-T,SESCO,annual,kg,0594a9b8-b641-37e6-914e-7b158a08a5b5 -2015,Tucuman,II.1.1,1.3363349999999998,TJ,CH4,0.5,kg/TJ,0.6681674999999999,Naphtha combustion consumption by freight transport,AR-T,SESCO,annual,kg,68bb6579-9f07-3955-b750-21f9c739cb96 -2015,Tucuman,II.1.1,1.3363349999999998,TJ,N2O,2.0,kg/TJ,2.6726699999999997,Naphtha combustion consumption by freight transport,AR-T,SESCO,annual,kg,8bb4080c-b940-30e0-9b86-c4358ed9701e -2015,Buenos Aires,II.1.1,11800.29564,TJ,CO2,74100.0,kg/TJ,874401906.924,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,1eb1f34f-f896-309f-96f6-fdb9c8735d29 -2015,Buenos Aires,II.1.1,11800.29564,TJ,CH4,3.9,kg/TJ,46021.152996,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,8e371021-004c-321c-a78a-9ec46b65fc33 -2015,Buenos Aires,II.1.1,11800.29564,TJ,N2O,3.9,kg/TJ,46021.152996,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,8e371021-004c-321c-a78a-9ec46b65fc33 -2015,Capital Federal,II.1.1,2518.90044,TJ,CO2,74100.0,kg/TJ,186650522.604,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,ac2aaf82-f553-3640-be43-130086fc4cfb -2015,Capital Federal,II.1.1,2518.90044,TJ,CH4,3.9,kg/TJ,9823.711716,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,2c6aa34e-5ae8-3a35-a2cc-4c4511c83bf7 -2015,Capital Federal,II.1.1,2518.90044,TJ,N2O,3.9,kg/TJ,9823.711716,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,2c6aa34e-5ae8-3a35-a2cc-4c4511c83bf7 -2015,Catamarca,II.1.1,209.24316,TJ,CO2,74100.0,kg/TJ,15504918.156,Gas Oil combustion consumption by public passenger transport,AR-K,SESCO,annual,kg,5399a173-8654-3c28-a1c2-b4e82e2a6719 -2015,Catamarca,II.1.1,209.24316,TJ,CH4,3.9,kg/TJ,816.048324,Gas Oil combustion consumption by public passenger transport,AR-K,SESCO,annual,kg,d09ec43b-4410-35c8-ad8c-a02248e17eba -2015,Catamarca,II.1.1,209.24316,TJ,N2O,3.9,kg/TJ,816.048324,Gas Oil combustion consumption by public passenger transport,AR-K,SESCO,annual,kg,d09ec43b-4410-35c8-ad8c-a02248e17eba -2015,Chaco,II.1.1,542.3417999999999,TJ,CO2,74100.0,kg/TJ,40187527.379999995,Gas Oil combustion consumption by public passenger transport,AR-H,SESCO,annual,kg,8981ee2a-8115-3a83-b2dc-0c3b9e38e091 -2015,Chaco,II.1.1,542.3417999999999,TJ,CH4,3.9,kg/TJ,2115.1330199999998,Gas Oil combustion consumption by public passenger transport,AR-H,SESCO,annual,kg,de3597cb-ab0c-3ad6-ad2f-72c03d9cb5c9 -2015,Chaco,II.1.1,542.3417999999999,TJ,N2O,3.9,kg/TJ,2115.1330199999998,Gas Oil combustion consumption by public passenger transport,AR-H,SESCO,annual,kg,de3597cb-ab0c-3ad6-ad2f-72c03d9cb5c9 -2015,Chubut,II.1.1,181.90032,TJ,CO2,74100.0,kg/TJ,13478813.712,Gas Oil combustion consumption by public passenger transport,AR-U,SESCO,annual,kg,af90817a-6a1f-3e39-9982-0ed66e745e0b -2015,Chubut,II.1.1,181.90032,TJ,CH4,3.9,kg/TJ,709.411248,Gas Oil combustion consumption by public passenger transport,AR-U,SESCO,annual,kg,a25fb703-5301-3989-9a3b-8403ad4793f5 -2015,Chubut,II.1.1,181.90032,TJ,N2O,3.9,kg/TJ,709.411248,Gas Oil combustion consumption by public passenger transport,AR-U,SESCO,annual,kg,a25fb703-5301-3989-9a3b-8403ad4793f5 -2015,Corrientes,II.1.1,489.46211999999997,TJ,CO2,74100.0,kg/TJ,36269143.092,Gas Oil combustion consumption by public passenger transport,AR-W,SESCO,annual,kg,e003a019-8806-3a58-bf3d-5939b03c2109 -2015,Corrientes,II.1.1,489.46211999999997,TJ,CH4,3.9,kg/TJ,1908.9022679999998,Gas Oil combustion consumption by public passenger transport,AR-W,SESCO,annual,kg,878168a1-d798-3af9-9a3f-67e771da2e4e -2015,Corrientes,II.1.1,489.46211999999997,TJ,N2O,3.9,kg/TJ,1908.9022679999998,Gas Oil combustion consumption by public passenger transport,AR-W,SESCO,annual,kg,878168a1-d798-3af9-9a3f-67e771da2e4e -2015,Córdoba,II.1.1,1873.3637999999999,TJ,CO2,74100.0,kg/TJ,138816257.57999998,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,7a8d21c4-c69a-3cc5-8d90-a184421592b2 -2015,Córdoba,II.1.1,1873.3637999999999,TJ,CH4,3.9,kg/TJ,7306.11882,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,b78d614d-669e-366a-b048-4ba1721e7943 -2015,Córdoba,II.1.1,1873.3637999999999,TJ,N2O,3.9,kg/TJ,7306.11882,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,b78d614d-669e-366a-b048-4ba1721e7943 -2015,Entre Rios,II.1.1,534.72048,TJ,CO2,74100.0,kg/TJ,39622787.567999996,Gas Oil combustion consumption by public passenger transport,AR-E,SESCO,annual,kg,e6f47383-294f-367b-962a-ffc852bab211 -2015,Entre Rios,II.1.1,534.72048,TJ,CH4,3.9,kg/TJ,2085.4098719999997,Gas Oil combustion consumption by public passenger transport,AR-E,SESCO,annual,kg,22a6d1fb-01d1-346e-b049-02274d161de8 -2015,Entre Rios,II.1.1,534.72048,TJ,N2O,3.9,kg/TJ,2085.4098719999997,Gas Oil combustion consumption by public passenger transport,AR-E,SESCO,annual,kg,22a6d1fb-01d1-346e-b049-02274d161de8 -2015,Formosa,II.1.1,75.41856,TJ,CO2,74100.0,kg/TJ,5588515.296,Gas Oil combustion consumption by public passenger transport,AR-P,SESCO,annual,kg,2b94db17-e255-3d14-90b1-2c6de4014b93 -2015,Formosa,II.1.1,75.41856,TJ,CH4,3.9,kg/TJ,294.132384,Gas Oil combustion consumption by public passenger transport,AR-P,SESCO,annual,kg,786f8e01-c87f-38b2-a6ea-9033e3f8e600 -2015,Formosa,II.1.1,75.41856,TJ,N2O,3.9,kg/TJ,294.132384,Gas Oil combustion consumption by public passenger transport,AR-P,SESCO,annual,kg,786f8e01-c87f-38b2-a6ea-9033e3f8e600 -2015,Jujuy,II.1.1,630.4023599999999,TJ,CO2,74100.0,kg/TJ,46712814.875999995,Gas Oil combustion consumption by public passenger transport,AR-Y,SESCO,annual,kg,5e05f25f-2ef5-3d92-914b-3dbb0b2d9aec -2015,Jujuy,II.1.1,630.4023599999999,TJ,CH4,3.9,kg/TJ,2458.569204,Gas Oil combustion consumption by public passenger transport,AR-Y,SESCO,annual,kg,cc798670-5ff6-3227-87ae-083bebb01dc3 -2015,Jujuy,II.1.1,630.4023599999999,TJ,N2O,3.9,kg/TJ,2458.569204,Gas Oil combustion consumption by public passenger transport,AR-Y,SESCO,annual,kg,cc798670-5ff6-3227-87ae-083bebb01dc3 -2015,La Pampa,II.1.1,56.27496,TJ,CO2,74100.0,kg/TJ,4169974.536,Gas Oil combustion consumption by public passenger transport,AR-L,SESCO,annual,kg,b617281d-a7a6-3877-8324-c426d50e0506 -2015,La Pampa,II.1.1,56.27496,TJ,CH4,3.9,kg/TJ,219.472344,Gas Oil combustion consumption by public passenger transport,AR-L,SESCO,annual,kg,599ad311-98ae-3752-afe9-4e61be769b39 -2015,La Pampa,II.1.1,56.27496,TJ,N2O,3.9,kg/TJ,219.472344,Gas Oil combustion consumption by public passenger transport,AR-L,SESCO,annual,kg,599ad311-98ae-3752-afe9-4e61be769b39 -2015,La Rioja,II.1.1,131.98247999999998,TJ,CO2,74100.0,kg/TJ,9779901.768,Gas Oil combustion consumption by public passenger transport,AR-F,SESCO,annual,kg,6e397902-c4bf-3ad4-91aa-ec0db7d7cb51 -2015,La Rioja,II.1.1,131.98247999999998,TJ,CH4,3.9,kg/TJ,514.7316719999999,Gas Oil combustion consumption by public passenger transport,AR-F,SESCO,annual,kg,2962e625-c7c5-3954-a42b-a8169a06adf0 -2015,La Rioja,II.1.1,131.98247999999998,TJ,N2O,3.9,kg/TJ,514.7316719999999,Gas Oil combustion consumption by public passenger transport,AR-F,SESCO,annual,kg,2962e625-c7c5-3954-a42b-a8169a06adf0 -2015,Mendoza,II.1.1,1749.43608,TJ,CO2,74100.0,kg/TJ,129633213.528,Gas Oil combustion consumption by public passenger transport,AR-M,SESCO,annual,kg,be0306e2-99a2-3636-8384-997971930916 -2015,Mendoza,II.1.1,1749.43608,TJ,CH4,3.9,kg/TJ,6822.800711999999,Gas Oil combustion consumption by public passenger transport,AR-M,SESCO,annual,kg,8f60a1f0-ac81-3350-953d-cb3bd5ffc7a7 -2015,Mendoza,II.1.1,1749.43608,TJ,N2O,3.9,kg/TJ,6822.800711999999,Gas Oil combustion consumption by public passenger transport,AR-M,SESCO,annual,kg,8f60a1f0-ac81-3350-953d-cb3bd5ffc7a7 -2015,Misiones,II.1.1,1114.4826,TJ,CO2,74100.0,kg/TJ,82583160.66,Gas Oil combustion consumption by public passenger transport,AR-N,SESCO,annual,kg,f6079a5e-ddd6-3db9-93cb-6bccdf593dcb -2015,Misiones,II.1.1,1114.4826,TJ,CH4,3.9,kg/TJ,4346.48214,Gas Oil combustion consumption by public passenger transport,AR-N,SESCO,annual,kg,a3459531-86e6-3544-afea-f32018bcffd1 -2015,Misiones,II.1.1,1114.4826,TJ,N2O,3.9,kg/TJ,4346.48214,Gas Oil combustion consumption by public passenger transport,AR-N,SESCO,annual,kg,a3459531-86e6-3544-afea-f32018bcffd1 -2015,Neuquén,II.1.1,310.01795999999996,TJ,CO2,74100.0,kg/TJ,22972330.835999995,Gas Oil combustion consumption by public passenger transport,AR-Q,SESCO,annual,kg,94ca21e7-03b2-3922-817e-c06e721b2f6c -2015,Neuquén,II.1.1,310.01795999999996,TJ,CH4,3.9,kg/TJ,1209.0700439999998,Gas Oil combustion consumption by public passenger transport,AR-Q,SESCO,annual,kg,91a2d0fe-852c-3940-82a1-81dca6d77beb -2015,Neuquén,II.1.1,310.01795999999996,TJ,N2O,3.9,kg/TJ,1209.0700439999998,Gas Oil combustion consumption by public passenger transport,AR-Q,SESCO,annual,kg,91a2d0fe-852c-3940-82a1-81dca6d77beb -2015,Rio Negro,II.1.1,504.0546,TJ,CO2,74100.0,kg/TJ,37350445.86,Gas Oil combustion consumption by public passenger transport,AR-R,SESCO,annual,kg,0bd098d5-61dc-3f3a-9397-b4d6ff62e409 -2015,Rio Negro,II.1.1,504.0546,TJ,CH4,3.9,kg/TJ,1965.81294,Gas Oil combustion consumption by public passenger transport,AR-R,SESCO,annual,kg,78292441-1424-307a-a775-b975abb40fd4 -2015,Rio Negro,II.1.1,504.0546,TJ,N2O,3.9,kg/TJ,1965.81294,Gas Oil combustion consumption by public passenger transport,AR-R,SESCO,annual,kg,78292441-1424-307a-a775-b975abb40fd4 -2015,Salta,II.1.1,897.2207999999999,TJ,CO2,74100.0,kg/TJ,66484061.279999994,Gas Oil combustion consumption by public passenger transport,AR-A,SESCO,annual,kg,865b8075-57cf-3622-91d5-05a563fbd15b -2015,Salta,II.1.1,897.2207999999999,TJ,CH4,3.9,kg/TJ,3499.1611199999998,Gas Oil combustion consumption by public passenger transport,AR-A,SESCO,annual,kg,becb18c8-febb-3b32-ba7f-e2cc59c8c77b -2015,Salta,II.1.1,897.2207999999999,TJ,N2O,3.9,kg/TJ,3499.1611199999998,Gas Oil combustion consumption by public passenger transport,AR-A,SESCO,annual,kg,becb18c8-febb-3b32-ba7f-e2cc59c8c77b -2015,San Juan,II.1.1,541.8361199999999,TJ,CO2,74100.0,kg/TJ,40150056.492,Gas Oil combustion consumption by public passenger transport,AR-J,SESCO,annual,kg,90e46e59-f68d-3e41-9636-caddf24af2e7 -2015,San Juan,II.1.1,541.8361199999999,TJ,CH4,3.9,kg/TJ,2113.1608679999995,Gas Oil combustion consumption by public passenger transport,AR-J,SESCO,annual,kg,ddd608ca-0242-383a-b907-1d895934c116 -2015,San Juan,II.1.1,541.8361199999999,TJ,N2O,3.9,kg/TJ,2113.1608679999995,Gas Oil combustion consumption by public passenger transport,AR-J,SESCO,annual,kg,ddd608ca-0242-383a-b907-1d895934c116 -2015,San Luis,II.1.1,165.50184,TJ,CO2,74100.0,kg/TJ,12263686.343999999,Gas Oil combustion consumption by public passenger transport,AR-D,SESCO,annual,kg,bcae1103-59b6-3c2c-9aa7-81b4ed2198b7 -2015,San Luis,II.1.1,165.50184,TJ,CH4,3.9,kg/TJ,645.4571759999999,Gas Oil combustion consumption by public passenger transport,AR-D,SESCO,annual,kg,e1260323-8308-38a9-9d1a-7e3154baa29d -2015,San Luis,II.1.1,165.50184,TJ,N2O,3.9,kg/TJ,645.4571759999999,Gas Oil combustion consumption by public passenger transport,AR-D,SESCO,annual,kg,e1260323-8308-38a9-9d1a-7e3154baa29d -2015,Santa Cruz,II.1.1,32.47188,TJ,CO2,74100.0,kg/TJ,2406166.3079999997,Gas Oil combustion consumption by public passenger transport,AR-Z,SESCO,annual,kg,c1542c26-9787-3d02-b0bf-cd1e701aafb4 -2015,Santa Cruz,II.1.1,32.47188,TJ,CH4,3.9,kg/TJ,126.64033199999999,Gas Oil combustion consumption by public passenger transport,AR-Z,SESCO,annual,kg,ce168d73-a62f-300f-aa15-b10ad0d2651c -2015,Santa Cruz,II.1.1,32.47188,TJ,N2O,3.9,kg/TJ,126.64033199999999,Gas Oil combustion consumption by public passenger transport,AR-Z,SESCO,annual,kg,ce168d73-a62f-300f-aa15-b10ad0d2651c -2015,Santa Fe,II.1.1,1986.13044,TJ,CO2,74100.0,kg/TJ,147172265.604,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,14754a13-c7dd-30a6-ae51-88b9ab97e421 -2015,Santa Fe,II.1.1,1986.13044,TJ,CH4,3.9,kg/TJ,7745.908716,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,8fa83610-8255-383c-ab0e-c1ea05ab9f40 -2015,Santa Fe,II.1.1,1986.13044,TJ,N2O,3.9,kg/TJ,7745.908716,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,8fa83610-8255-383c-ab0e-c1ea05ab9f40 -2015,Santiago del Estero,II.1.1,249.58919999999998,TJ,CO2,74100.0,kg/TJ,18494559.72,Gas Oil combustion consumption by public passenger transport,AR-G,SESCO,annual,kg,3172dcdb-1367-39e1-9646-2dc96617534b -2015,Santiago del Estero,II.1.1,249.58919999999998,TJ,CH4,3.9,kg/TJ,973.3978799999999,Gas Oil combustion consumption by public passenger transport,AR-G,SESCO,annual,kg,13ffb68c-c23f-3bf0-a563-10a28f70d93a -2015,Santiago del Estero,II.1.1,249.58919999999998,TJ,N2O,3.9,kg/TJ,973.3978799999999,Gas Oil combustion consumption by public passenger transport,AR-G,SESCO,annual,kg,13ffb68c-c23f-3bf0-a563-10a28f70d93a -2015,Tierra del Fuego,II.1.1,14.33964,TJ,CO2,74100.0,kg/TJ,1062567.324,Gas Oil combustion consumption by public passenger transport,AR-V,SESCO,annual,kg,73b676a9-e91e-3b8a-847e-9b412662e1cf -2015,Tierra del Fuego,II.1.1,14.33964,TJ,CH4,3.9,kg/TJ,55.924595999999994,Gas Oil combustion consumption by public passenger transport,AR-V,SESCO,annual,kg,945a6de6-f66f-3036-9104-3301fcd68073 -2015,Tierra del Fuego,II.1.1,14.33964,TJ,N2O,3.9,kg/TJ,55.924595999999994,Gas Oil combustion consumption by public passenger transport,AR-V,SESCO,annual,kg,945a6de6-f66f-3036-9104-3301fcd68073 -2015,Tucuman,II.1.1,1432.55532,TJ,CO2,74100.0,kg/TJ,106152349.212,Gas Oil combustion consumption by public passenger transport,AR-T,SESCO,annual,kg,eb426fe0-c60e-3f15-aa27-7bbdadc174af -2015,Tucuman,II.1.1,1432.55532,TJ,CH4,3.9,kg/TJ,5586.965748,Gas Oil combustion consumption by public passenger transport,AR-T,SESCO,annual,kg,710322e6-3069-325d-b5e2-37240468c302 -2015,Tucuman,II.1.1,1432.55532,TJ,N2O,3.9,kg/TJ,5586.965748,Gas Oil combustion consumption by public passenger transport,AR-T,SESCO,annual,kg,710322e6-3069-325d-b5e2-37240468c302 -2015,Buenos Aires,II.1.1,0.171325,TJ,CO2,73300.0,kg/TJ,12558.1225,Naphtha combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,f7e6e486-df2d-3a7a-b396-a0e3aa754eb0 -2015,Buenos Aires,II.1.1,0.171325,TJ,CH4,0.5,kg/TJ,0.0856625,Naphtha combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,f847af2c-7204-3164-889b-3e2a7451c2c4 -2015,Buenos Aires,II.1.1,0.171325,TJ,N2O,2.0,kg/TJ,0.34265,Naphtha combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,1dccf615-329c-3977-8121-b2aff1cb568a -2016,Córdoba,II.5.1,237.31509999999997,TJ,CO2,69300.0,kg/TJ,16445936.429999998,Motor Gasoline combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,181a7196-3d35-390c-8afd-1205dd94b69d -2016,Córdoba,II.5.1,237.31509999999997,TJ,CH4,33.0,kg/TJ,7831.398299999999,Motor Gasoline combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,f8744afe-b063-3bca-8b90-8e285023e004 -2016,Córdoba,II.5.1,237.31509999999997,TJ,N2O,3.2,kg/TJ,759.40832,Motor Gasoline combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,4bf7eb9c-df1e-370f-afba-672c635e99e6 -2016,Buenos Aires,II.5.1,114.21144,TJ,CO2,74100.0,kg/TJ,8463067.704,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,7f859afa-1346-3001-b1c0-2d80ed6bba8d -2016,Buenos Aires,II.5.1,114.21144,TJ,CH4,3.9,kg/TJ,445.42461599999996,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,d3709c6b-6248-3fac-a2b0-ac9f1af4c0a5 -2016,Buenos Aires,II.5.1,114.21144,TJ,N2O,3.9,kg/TJ,445.42461599999996,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,d3709c6b-6248-3fac-a2b0-ac9f1af4c0a5 -2016,Chaco,II.5.1,4.47888,TJ,CO2,74100.0,kg/TJ,331885.00800000003,Gas Oil combustion consumption by agriculture machines,AR-H,SESCO,annual,kg,7754ff50-78e4-3032-8c0b-71bb783f06ff -2016,Chaco,II.5.1,4.47888,TJ,CH4,3.9,kg/TJ,17.467632000000002,Gas Oil combustion consumption by agriculture machines,AR-H,SESCO,annual,kg,c8d5f7b3-4de8-3300-bfd6-39882af38b47 -2016,Chaco,II.5.1,4.47888,TJ,N2O,3.9,kg/TJ,17.467632000000002,Gas Oil combustion consumption by agriculture machines,AR-H,SESCO,annual,kg,c8d5f7b3-4de8-3300-bfd6-39882af38b47 -2016,Corrientes,II.5.1,2.5284,TJ,CO2,74100.0,kg/TJ,187354.44,Gas Oil combustion consumption by agriculture machines,AR-W,SESCO,annual,kg,068655a7-59ae-3f32-b493-d3a91ffc7909 -2016,Corrientes,II.5.1,2.5284,TJ,CH4,3.9,kg/TJ,9.860759999999999,Gas Oil combustion consumption by agriculture machines,AR-W,SESCO,annual,kg,8d5e4b4a-28be-3cfc-97b7-0fdcc96f0ca1 -2016,Corrientes,II.5.1,2.5284,TJ,N2O,3.9,kg/TJ,9.860759999999999,Gas Oil combustion consumption by agriculture machines,AR-W,SESCO,annual,kg,8d5e4b4a-28be-3cfc-97b7-0fdcc96f0ca1 -2016,Córdoba,II.5.1,113.01948,TJ,CO2,74100.0,kg/TJ,8374743.468,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,63a0eb29-0e97-310d-aff1-f539f1005652 -2016,Córdoba,II.5.1,113.01948,TJ,CH4,3.9,kg/TJ,440.77597199999997,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,ec1b8551-227a-3be8-83af-c2dbf8ce0605 -2016,Córdoba,II.5.1,113.01948,TJ,N2O,3.9,kg/TJ,440.77597199999997,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,ec1b8551-227a-3be8-83af-c2dbf8ce0605 -2016,Santa Fe,II.5.1,471.58272,TJ,CO2,74100.0,kg/TJ,34944279.552,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,977b6ba5-0e4b-3629-a1f0-35eae1c13cbf -2016,Santa Fe,II.5.1,471.58272,TJ,CH4,3.9,kg/TJ,1839.1726079999999,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,37d965a2-8838-3c78-a506-39fa879e18b9 -2016,Santa Fe,II.5.1,471.58272,TJ,N2O,3.9,kg/TJ,1839.1726079999999,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,37d965a2-8838-3c78-a506-39fa879e18b9 -2016,Tucuman,II.5.1,9.71628,TJ,CO2,74100.0,kg/TJ,719976.348,Gas Oil combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,6ee711fb-72a6-3483-91fc-83a96d8afc72 -2016,Tucuman,II.5.1,9.71628,TJ,CH4,3.9,kg/TJ,37.893491999999995,Gas Oil combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,3dcec89f-15d8-3cd3-afa7-2c85b3dd99ec -2016,Tucuman,II.5.1,9.71628,TJ,N2O,3.9,kg/TJ,37.893491999999995,Gas Oil combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,3dcec89f-15d8-3cd3-afa7-2c85b3dd99ec -2016,Buenos Aires,II.5.1,10.43868,TJ,CO2,74100.0,kg/TJ,773506.188,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,3c72b7d5-d471-3269-a9a8-5d5c9c48c9f7 -2016,Buenos Aires,II.5.1,10.43868,TJ,CH4,3.9,kg/TJ,40.710851999999996,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,063ef4bf-1c5d-3894-b034-28e9421cc7a7 -2016,Buenos Aires,II.5.1,10.43868,TJ,N2O,3.9,kg/TJ,40.710851999999996,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,063ef4bf-1c5d-3894-b034-28e9421cc7a7 -2016,Chaco,II.5.1,1.04748,TJ,CO2,74100.0,kg/TJ,77618.268,Gas Oil combustion consumption by agriculture machines,AR-H,SESCO,annual,kg,97717d70-fe4e-3e4b-9df1-8d5f7ecd3e77 -2016,Chaco,II.5.1,1.04748,TJ,CH4,3.9,kg/TJ,4.085172,Gas Oil combustion consumption by agriculture machines,AR-H,SESCO,annual,kg,e8569d22-8f57-3e80-b5bc-ea0873fb1431 -2016,Chaco,II.5.1,1.04748,TJ,N2O,3.9,kg/TJ,4.085172,Gas Oil combustion consumption by agriculture machines,AR-H,SESCO,annual,kg,e8569d22-8f57-3e80-b5bc-ea0873fb1431 -2016,Córdoba,II.5.1,11.738999999999999,TJ,CO2,74100.0,kg/TJ,869859.8999999999,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,26855941-11e5-36bd-b03e-2262ce15b713 -2016,Córdoba,II.5.1,11.738999999999999,TJ,CH4,3.9,kg/TJ,45.78209999999999,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,60d8a771-1951-3634-b370-920cd88c130f -2016,Córdoba,II.5.1,11.738999999999999,TJ,N2O,3.9,kg/TJ,45.78209999999999,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,60d8a771-1951-3634-b370-920cd88c130f -2016,Santa Fe,II.5.1,26.62044,TJ,CO2,74100.0,kg/TJ,1972574.6039999998,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,973edb3f-5f58-3b50-829a-1c8bfae819b0 -2016,Santa Fe,II.5.1,26.62044,TJ,CH4,3.9,kg/TJ,103.81971599999999,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,2ddf5058-4488-3074-a53e-d16663b64d88 -2016,Santa Fe,II.5.1,26.62044,TJ,N2O,3.9,kg/TJ,103.81971599999999,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,2ddf5058-4488-3074-a53e-d16663b64d88 -2016,Tucuman,II.5.1,6.10428,TJ,CO2,74100.0,kg/TJ,452327.148,Gas Oil combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,74710120-27a3-386f-ac36-989cbe562afb -2016,Tucuman,II.5.1,6.10428,TJ,CH4,3.9,kg/TJ,23.806692,Gas Oil combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,c91b8d86-f331-383d-a180-bfa3dfafb558 -2016,Tucuman,II.5.1,6.10428,TJ,N2O,3.9,kg/TJ,23.806692,Gas Oil combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,c91b8d86-f331-383d-a180-bfa3dfafb558 -2016,Buenos Aires,II.5.1,17.166764999999998,TJ,CO2,73300.0,kg/TJ,1258323.8745,Naphtha combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,ad61141f-2305-3361-8621-a85486bafdb0 -2016,Buenos Aires,II.5.1,17.166764999999998,TJ,CH4,0.5,kg/TJ,8.583382499999999,Naphtha combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,596ac76d-9496-3b8f-8692-54fbd772b9e4 -2016,Buenos Aires,II.5.1,17.166764999999998,TJ,N2O,2.0,kg/TJ,34.333529999999996,Naphtha combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,ed8c0566-fa2f-30ac-90a6-aa4e4a2f320d -2016,Chaco,II.5.1,10.07391,TJ,CO2,73300.0,kg/TJ,738417.603,Naphtha combustion consumption by agriculture machines,AR-H,SESCO,annual,kg,5bf55a2f-5e22-3480-b3b5-51a062603a86 -2016,Chaco,II.5.1,10.07391,TJ,CH4,0.5,kg/TJ,5.036955,Naphtha combustion consumption by agriculture machines,AR-H,SESCO,annual,kg,9521d2eb-3a3e-3c83-ae55-425e8e9ae60f -2016,Chaco,II.5.1,10.07391,TJ,N2O,2.0,kg/TJ,20.14782,Naphtha combustion consumption by agriculture machines,AR-H,SESCO,annual,kg,d9331b04-9a87-34c2-b4a1-9bf2d6c3bea3 -2016,Córdoba,II.5.1,11.85569,TJ,CO2,73300.0,kg/TJ,869022.0769999999,Naphtha combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,ec6fa111-1da8-34c9-aa22-7d0f9188079d -2016,Córdoba,II.5.1,11.85569,TJ,CH4,0.5,kg/TJ,5.927845,Naphtha combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,b2e7182e-424c-3184-9f2d-b3850dccd29e -2016,Córdoba,II.5.1,11.85569,TJ,N2O,2.0,kg/TJ,23.71138,Naphtha combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,b368d3a5-68c6-39dc-a4d4-feb7c298b0a0 -2016,Santa Fe,II.5.1,36.80061,TJ,CO2,73300.0,kg/TJ,2697484.713,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,49118494-096d-364e-b950-2fab9c67965f -2016,Santa Fe,II.5.1,36.80061,TJ,CH4,0.5,kg/TJ,18.400305,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,eb81e305-427a-368c-b01b-8fa0c5c302e9 -2016,Santa Fe,II.5.1,36.80061,TJ,N2O,2.0,kg/TJ,73.60122,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,fea7f62a-900e-3542-bd2b-996214bbe917 -2016,Tucuman,II.5.1,13.089229999999999,TJ,CO2,73300.0,kg/TJ,959440.5589999999,Naphtha combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,75d005f6-fbcd-3df8-984d-4dd806b0b5f7 -2016,Tucuman,II.5.1,13.089229999999999,TJ,CH4,0.5,kg/TJ,6.544614999999999,Naphtha combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,c2c357d2-5123-3e05-8c92-6447de00541f -2016,Tucuman,II.5.1,13.089229999999999,TJ,N2O,2.0,kg/TJ,26.178459999999998,Naphtha combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,55fac833-c0cf-346a-ad3e-5e13832d1dc9 -2016,Buenos Aires,II.5.1,3.9747399999999997,TJ,CO2,73300.0,kg/TJ,291348.442,Naphtha combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,9451e62f-5154-3e6d-bde3-83889311dd0b -2016,Buenos Aires,II.5.1,3.9747399999999997,TJ,CH4,0.5,kg/TJ,1.9873699999999999,Naphtha combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,9290151d-c403-3c7d-8ef5-35f6674c2a97 -2016,Buenos Aires,II.5.1,3.9747399999999997,TJ,N2O,2.0,kg/TJ,7.949479999999999,Naphtha combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,4297ee8d-4295-3a5f-92dc-e1e9e94d725a -2016,Chaco,II.5.1,1.43913,TJ,CO2,73300.0,kg/TJ,105488.229,Naphtha combustion consumption by agriculture machines,AR-H,SESCO,annual,kg,c4f67640-4bf9-301a-bf73-9088f62cbe3d -2016,Chaco,II.5.1,1.43913,TJ,CH4,0.5,kg/TJ,0.719565,Naphtha combustion consumption by agriculture machines,AR-H,SESCO,annual,kg,9c4d63f7-5c55-37e6-80f2-77ba41fe8e77 -2016,Chaco,II.5.1,1.43913,TJ,N2O,2.0,kg/TJ,2.87826,Naphtha combustion consumption by agriculture machines,AR-H,SESCO,annual,kg,4dda2c19-3155-36a1-baa8-789c2228dc94 -2016,Córdoba,II.5.1,4.968425,TJ,CO2,73300.0,kg/TJ,364185.5525,Naphtha combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,f9bbdf17-87a9-38f9-9f2b-9a797150a038 -2016,Córdoba,II.5.1,4.968425,TJ,CH4,0.5,kg/TJ,2.4842125,Naphtha combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,736a9c37-3734-310e-8bf8-f4d510ff8149 -2016,Córdoba,II.5.1,4.968425,TJ,N2O,2.0,kg/TJ,9.93685,Naphtha combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,65afc185-6d60-3d41-b87d-4506dc92956d -2016,Santa Fe,II.5.1,13.054965,TJ,CO2,73300.0,kg/TJ,956928.9345,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,92fee6b2-e437-3987-8768-a462ff33363c -2016,Santa Fe,II.5.1,13.054965,TJ,CH4,0.5,kg/TJ,6.5274825,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,c647c865-3d06-347e-b5ae-8a998969f37a -2016,Santa Fe,II.5.1,13.054965,TJ,N2O,2.0,kg/TJ,26.10993,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,0a3c5515-8a3f-303d-90d7-c6ee2b29c449 -2016,Tucuman,II.5.1,3.70062,TJ,CO2,73300.0,kg/TJ,271255.446,Naphtha combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,89a0cca9-0193-3384-b86a-fca32e6b903e -2016,Tucuman,II.5.1,3.70062,TJ,CH4,0.5,kg/TJ,1.85031,Naphtha combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,7c99d8f5-446c-35b0-bcbd-329e8c4b6400 -2016,Tucuman,II.5.1,3.70062,TJ,N2O,2.0,kg/TJ,7.40124,Naphtha combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,85bd5b0d-b617-39a3-844b-415784cb277a -2016,Buenos Aires,II.2.1,27.05388,TJ,CO2,74100.0,kg/TJ,2004692.508,Gas Oil combustion consumption by railway transport,AR-B,SESCO,annual,kg,40598967-2299-3ec5-86b0-bcbbc29b45c4 -2016,Buenos Aires,II.2.1,27.05388,TJ,CH4,3.9,kg/TJ,105.510132,Gas Oil combustion consumption by railway transport,AR-B,SESCO,annual,kg,846a650b-3fd4-3993-bf67-c045593b5e7a -2016,Buenos Aires,II.2.1,27.05388,TJ,N2O,3.9,kg/TJ,105.510132,Gas Oil combustion consumption by railway transport,AR-B,SESCO,annual,kg,846a650b-3fd4-3993-bf67-c045593b5e7a -2016,La Pampa,II.2.1,5.20128,TJ,CO2,74100.0,kg/TJ,385414.848,Gas Oil combustion consumption by railway transport,AR-L,SESCO,annual,kg,d950a83e-4fda-3e89-94bf-4e806d6f5273 -2016,La Pampa,II.2.1,5.20128,TJ,CH4,3.9,kg/TJ,20.284992,Gas Oil combustion consumption by railway transport,AR-L,SESCO,annual,kg,7a28ed90-e260-39b5-a28f-6ab25e36abb7 -2016,La Pampa,II.2.1,5.20128,TJ,N2O,3.9,kg/TJ,20.284992,Gas Oil combustion consumption by railway transport,AR-L,SESCO,annual,kg,7a28ed90-e260-39b5-a28f-6ab25e36abb7 -2016,Santa Fe,II.2.1,31.93008,TJ,CO2,74100.0,kg/TJ,2366018.928,Gas Oil combustion consumption by railway transport,AR-S,SESCO,annual,kg,0b448b50-047a-3f1a-84da-e185ceb3fd47 -2016,Santa Fe,II.2.1,31.93008,TJ,CH4,3.9,kg/TJ,124.527312,Gas Oil combustion consumption by railway transport,AR-S,SESCO,annual,kg,2d48a9fb-d025-3bd4-b27f-f584037df6a8 -2016,Santa Fe,II.2.1,31.93008,TJ,N2O,3.9,kg/TJ,124.527312,Gas Oil combustion consumption by railway transport,AR-S,SESCO,annual,kg,2d48a9fb-d025-3bd4-b27f-f584037df6a8 -2016,Santiago del Estero,II.2.1,2.60064,TJ,CO2,74100.0,kg/TJ,192707.424,Gas Oil combustion consumption by railway transport,AR-G,SESCO,annual,kg,e21833d2-fd98-3f84-be7c-a5cc1064a013 -2016,Santiago del Estero,II.2.1,2.60064,TJ,CH4,3.9,kg/TJ,10.142496,Gas Oil combustion consumption by railway transport,AR-G,SESCO,annual,kg,713b80d2-506d-3a57-9c97-393491820477 -2016,Santiago del Estero,II.2.1,2.60064,TJ,N2O,3.9,kg/TJ,10.142496,Gas Oil combustion consumption by railway transport,AR-G,SESCO,annual,kg,713b80d2-506d-3a57-9c97-393491820477 -2016,Buenos Aires,II.1.1,1717.0725599999998,TJ,CO2,74100.0,kg/TJ,127235076.696,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,b60c87a5-fada-38b3-acdb-6a27060e9bdd -2016,Buenos Aires,II.1.1,1717.0725599999998,TJ,CH4,3.9,kg/TJ,6696.582984,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,6ab98fb9-9a85-3595-b9c1-5922397be97b -2016,Buenos Aires,II.1.1,1717.0725599999998,TJ,N2O,3.9,kg/TJ,6696.582984,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,6ab98fb9-9a85-3595-b9c1-5922397be97b -2016,Capital Federal,II.1.1,235.64687999999998,TJ,CO2,74100.0,kg/TJ,17461433.808,Gas Oil combustion consumption by freight transport,AR-C,SESCO,annual,kg,413c19e1-ec1a-35c1-b710-c59127294c04 -2016,Capital Federal,II.1.1,235.64687999999998,TJ,CH4,3.9,kg/TJ,919.0228319999999,Gas Oil combustion consumption by freight transport,AR-C,SESCO,annual,kg,62bc3bb9-637e-33dd-a992-63f06dac7363 -2016,Capital Federal,II.1.1,235.64687999999998,TJ,N2O,3.9,kg/TJ,919.0228319999999,Gas Oil combustion consumption by freight transport,AR-C,SESCO,annual,kg,62bc3bb9-637e-33dd-a992-63f06dac7363 -2016,Catamarca,II.1.1,38.14272,TJ,CO2,74100.0,kg/TJ,2826375.5519999997,Gas Oil combustion consumption by freight transport,AR-K,SESCO,annual,kg,2e65dd8c-191b-33e8-8bd1-9d9db0afe48c -2016,Catamarca,II.1.1,38.14272,TJ,CH4,3.9,kg/TJ,148.75660799999997,Gas Oil combustion consumption by freight transport,AR-K,SESCO,annual,kg,89a42ce3-1880-3924-b1d4-f5962fc3ae57 -2016,Catamarca,II.1.1,38.14272,TJ,N2O,3.9,kg/TJ,148.75660799999997,Gas Oil combustion consumption by freight transport,AR-K,SESCO,annual,kg,89a42ce3-1880-3924-b1d4-f5962fc3ae57 -2016,Chaco,II.1.1,21.20244,TJ,CO2,74100.0,kg/TJ,1571100.804,Gas Oil combustion consumption by freight transport,AR-H,SESCO,annual,kg,0c54da9a-8bf7-34ea-9420-310fffb758b5 -2016,Chaco,II.1.1,21.20244,TJ,CH4,3.9,kg/TJ,82.689516,Gas Oil combustion consumption by freight transport,AR-H,SESCO,annual,kg,2b33ad8a-64b2-38fd-b214-b6e5e8721302 -2016,Chaco,II.1.1,21.20244,TJ,N2O,3.9,kg/TJ,82.689516,Gas Oil combustion consumption by freight transport,AR-H,SESCO,annual,kg,2b33ad8a-64b2-38fd-b214-b6e5e8721302 -2016,Chubut,II.1.1,19.1436,TJ,CO2,74100.0,kg/TJ,1418540.76,Gas Oil combustion consumption by freight transport,AR-U,SESCO,annual,kg,448cb0d1-dfb9-36a9-a270-ac8a8d65560a -2016,Chubut,II.1.1,19.1436,TJ,CH4,3.9,kg/TJ,74.66004,Gas Oil combustion consumption by freight transport,AR-U,SESCO,annual,kg,5940314e-1012-32a2-9aa8-a80e9102bb3e -2016,Chubut,II.1.1,19.1436,TJ,N2O,3.9,kg/TJ,74.66004,Gas Oil combustion consumption by freight transport,AR-U,SESCO,annual,kg,5940314e-1012-32a2-9aa8-a80e9102bb3e -2016,Corrientes,II.1.1,74.66004,TJ,CO2,74100.0,kg/TJ,5532308.964,Gas Oil combustion consumption by freight transport,AR-W,SESCO,annual,kg,d9332edc-f372-35ce-85f5-1c52e0def98a -2016,Corrientes,II.1.1,74.66004,TJ,CH4,3.9,kg/TJ,291.174156,Gas Oil combustion consumption by freight transport,AR-W,SESCO,annual,kg,512114df-4cd2-3f88-bd86-350659c04a45 -2016,Corrientes,II.1.1,74.66004,TJ,N2O,3.9,kg/TJ,291.174156,Gas Oil combustion consumption by freight transport,AR-W,SESCO,annual,kg,512114df-4cd2-3f88-bd86-350659c04a45 -2016,Córdoba,II.1.1,288.30984,TJ,CO2,74100.0,kg/TJ,21363759.144,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,750f2b19-59e1-3b2a-85dc-52306e077902 -2016,Córdoba,II.1.1,288.30984,TJ,CH4,3.9,kg/TJ,1124.408376,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,6807dd41-f2cd-3b6d-ad7a-71146b4e6320 -2016,Córdoba,II.1.1,288.30984,TJ,N2O,3.9,kg/TJ,1124.408376,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,6807dd41-f2cd-3b6d-ad7a-71146b4e6320 -2016,Entre Rios,II.1.1,130.06812,TJ,CO2,74100.0,kg/TJ,9638047.692,Gas Oil combustion consumption by freight transport,AR-E,SESCO,annual,kg,778a1a84-1ba0-3535-adab-ccd2ca861510 -2016,Entre Rios,II.1.1,130.06812,TJ,CH4,3.9,kg/TJ,507.26566799999995,Gas Oil combustion consumption by freight transport,AR-E,SESCO,annual,kg,a5c5329e-a694-3ea5-a0c4-7cd043da9dbf -2016,Entre Rios,II.1.1,130.06812,TJ,N2O,3.9,kg/TJ,507.26566799999995,Gas Oil combustion consumption by freight transport,AR-E,SESCO,annual,kg,a5c5329e-a694-3ea5-a0c4-7cd043da9dbf -2016,Formosa,II.1.1,4.11768,TJ,CO2,74100.0,kg/TJ,305120.088,Gas Oil combustion consumption by freight transport,AR-P,SESCO,annual,kg,ccff8922-dc61-360c-a83d-bce60e54ee31 -2016,Formosa,II.1.1,4.11768,TJ,CH4,3.9,kg/TJ,16.058951999999998,Gas Oil combustion consumption by freight transport,AR-P,SESCO,annual,kg,f1362575-8411-311c-b647-c8be0ad34334 -2016,Formosa,II.1.1,4.11768,TJ,N2O,3.9,kg/TJ,16.058951999999998,Gas Oil combustion consumption by freight transport,AR-P,SESCO,annual,kg,f1362575-8411-311c-b647-c8be0ad34334 -2016,La Pampa,II.1.1,22.430519999999998,TJ,CO2,74100.0,kg/TJ,1662101.532,Gas Oil combustion consumption by freight transport,AR-L,SESCO,annual,kg,9f2dbe25-b008-3b4a-80ac-15dd27ab25cb -2016,La Pampa,II.1.1,22.430519999999998,TJ,CH4,3.9,kg/TJ,87.47902799999999,Gas Oil combustion consumption by freight transport,AR-L,SESCO,annual,kg,88f7bf09-d949-395c-b459-c5f58be7325d -2016,La Pampa,II.1.1,22.430519999999998,TJ,N2O,3.9,kg/TJ,87.47902799999999,Gas Oil combustion consumption by freight transport,AR-L,SESCO,annual,kg,88f7bf09-d949-395c-b459-c5f58be7325d -2016,La Rioja,II.1.1,1.5531599999999999,TJ,CO2,74100.0,kg/TJ,115089.15599999999,Gas Oil combustion consumption by freight transport,AR-F,SESCO,annual,kg,c6b7eb5d-0966-337f-a456-944f6e7dbbcd -2016,La Rioja,II.1.1,1.5531599999999999,TJ,CH4,3.9,kg/TJ,6.0573239999999995,Gas Oil combustion consumption by freight transport,AR-F,SESCO,annual,kg,95efcec2-a892-3636-813f-edc556a136ff -2016,La Rioja,II.1.1,1.5531599999999999,TJ,N2O,3.9,kg/TJ,6.0573239999999995,Gas Oil combustion consumption by freight transport,AR-F,SESCO,annual,kg,95efcec2-a892-3636-813f-edc556a136ff -2016,Mendoza,II.1.1,26.186999999999998,TJ,CO2,74100.0,kg/TJ,1940456.6999999997,Gas Oil combustion consumption by freight transport,AR-M,SESCO,annual,kg,17ddf66b-042f-3297-9d6f-67a55e5abd68 -2016,Mendoza,II.1.1,26.186999999999998,TJ,CH4,3.9,kg/TJ,102.12929999999999,Gas Oil combustion consumption by freight transport,AR-M,SESCO,annual,kg,2f6cfe79-c92e-30d6-8f8a-a70c44ea4d5c -2016,Mendoza,II.1.1,26.186999999999998,TJ,N2O,3.9,kg/TJ,102.12929999999999,Gas Oil combustion consumption by freight transport,AR-M,SESCO,annual,kg,2f6cfe79-c92e-30d6-8f8a-a70c44ea4d5c -2016,Misiones,II.1.1,27.48732,TJ,CO2,74100.0,kg/TJ,2036810.412,Gas Oil combustion consumption by freight transport,AR-N,SESCO,annual,kg,7e631e93-6bea-3d0e-8a94-7722d48ae398 -2016,Misiones,II.1.1,27.48732,TJ,CH4,3.9,kg/TJ,107.200548,Gas Oil combustion consumption by freight transport,AR-N,SESCO,annual,kg,ccc2d713-b12e-354e-af41-ee18a9039998 -2016,Misiones,II.1.1,27.48732,TJ,N2O,3.9,kg/TJ,107.200548,Gas Oil combustion consumption by freight transport,AR-N,SESCO,annual,kg,ccc2d713-b12e-354e-af41-ee18a9039998 -2016,Neuquén,II.1.1,0.32508,TJ,CO2,74100.0,kg/TJ,24088.428,Gas Oil combustion consumption by freight transport,AR-Q,SESCO,annual,kg,8e1719d5-afad-395c-a11f-6b3fb8b1a13c -2016,Neuquén,II.1.1,0.32508,TJ,CH4,3.9,kg/TJ,1.267812,Gas Oil combustion consumption by freight transport,AR-Q,SESCO,annual,kg,cd168156-5aa7-349b-99d4-b59f077ac82a -2016,Neuquén,II.1.1,0.32508,TJ,N2O,3.9,kg/TJ,1.267812,Gas Oil combustion consumption by freight transport,AR-Q,SESCO,annual,kg,cd168156-5aa7-349b-99d4-b59f077ac82a -2016,Rio Negro,II.1.1,86.18231999999999,TJ,CO2,74100.0,kg/TJ,6386109.912,Gas Oil combustion consumption by freight transport,AR-R,SESCO,annual,kg,26ade02b-208f-3061-835d-4ef5c507973d -2016,Rio Negro,II.1.1,86.18231999999999,TJ,CH4,3.9,kg/TJ,336.1110479999999,Gas Oil combustion consumption by freight transport,AR-R,SESCO,annual,kg,364647ad-f7bc-3cef-9603-c1b53a47e7ba -2016,Rio Negro,II.1.1,86.18231999999999,TJ,N2O,3.9,kg/TJ,336.1110479999999,Gas Oil combustion consumption by freight transport,AR-R,SESCO,annual,kg,364647ad-f7bc-3cef-9603-c1b53a47e7ba -2016,Salta,II.1.1,23.080679999999997,TJ,CO2,74100.0,kg/TJ,1710278.3879999998,Gas Oil combustion consumption by freight transport,AR-A,SESCO,annual,kg,2f0461aa-429d-3d99-89d5-fb3d12abe40d -2016,Salta,II.1.1,23.080679999999997,TJ,CH4,3.9,kg/TJ,90.01465199999998,Gas Oil combustion consumption by freight transport,AR-A,SESCO,annual,kg,6b4cd22c-9ced-325a-97cc-14a51f5afb72 -2016,Salta,II.1.1,23.080679999999997,TJ,N2O,3.9,kg/TJ,90.01465199999998,Gas Oil combustion consumption by freight transport,AR-A,SESCO,annual,kg,6b4cd22c-9ced-325a-97cc-14a51f5afb72 -2016,San Juan,II.1.1,12.8226,TJ,CO2,74100.0,kg/TJ,950154.6599999999,Gas Oil combustion consumption by freight transport,AR-J,SESCO,annual,kg,367a0d23-a029-3e90-ab1d-937dfaa980a9 -2016,San Juan,II.1.1,12.8226,TJ,CH4,3.9,kg/TJ,50.00814,Gas Oil combustion consumption by freight transport,AR-J,SESCO,annual,kg,ef045d02-c2fb-384f-8927-d58c21b265e1 -2016,San Juan,II.1.1,12.8226,TJ,N2O,3.9,kg/TJ,50.00814,Gas Oil combustion consumption by freight transport,AR-J,SESCO,annual,kg,ef045d02-c2fb-384f-8927-d58c21b265e1 -2016,San Luis,II.1.1,84.84588,TJ,CO2,74100.0,kg/TJ,6287079.708,Gas Oil combustion consumption by freight transport,AR-D,SESCO,annual,kg,22422fbe-71e2-3780-b0e6-9a1a0029881d -2016,San Luis,II.1.1,84.84588,TJ,CH4,3.9,kg/TJ,330.89893199999995,Gas Oil combustion consumption by freight transport,AR-D,SESCO,annual,kg,a631eff9-8971-3ded-b636-83450ef5147f -2016,San Luis,II.1.1,84.84588,TJ,N2O,3.9,kg/TJ,330.89893199999995,Gas Oil combustion consumption by freight transport,AR-D,SESCO,annual,kg,a631eff9-8971-3ded-b636-83450ef5147f -2016,Santa Fe,II.1.1,556.9703999999999,TJ,CO2,74100.0,kg/TJ,41271506.63999999,Gas Oil combustion consumption by freight transport,AR-S,SESCO,annual,kg,f8909f80-8cfb-398b-9b55-b2b3c462a2f1 -2016,Santa Fe,II.1.1,556.9703999999999,TJ,CH4,3.9,kg/TJ,2172.1845599999997,Gas Oil combustion consumption by freight transport,AR-S,SESCO,annual,kg,9d7c3469-4522-3c4f-b349-e1f81f3d1bf0 -2016,Santa Fe,II.1.1,556.9703999999999,TJ,N2O,3.9,kg/TJ,2172.1845599999997,Gas Oil combustion consumption by freight transport,AR-S,SESCO,annual,kg,9d7c3469-4522-3c4f-b349-e1f81f3d1bf0 -2016,Santiago del Estero,II.1.1,37.600919999999995,TJ,CO2,74100.0,kg/TJ,2786228.172,Gas Oil combustion consumption by freight transport,AR-G,SESCO,annual,kg,f74be83c-c90c-34d6-9521-f08a61e05f41 -2016,Santiago del Estero,II.1.1,37.600919999999995,TJ,CH4,3.9,kg/TJ,146.64358799999997,Gas Oil combustion consumption by freight transport,AR-G,SESCO,annual,kg,2115aafb-7d26-3845-ae8b-a567e9f5281e -2016,Santiago del Estero,II.1.1,37.600919999999995,TJ,N2O,3.9,kg/TJ,146.64358799999997,Gas Oil combustion consumption by freight transport,AR-G,SESCO,annual,kg,2115aafb-7d26-3845-ae8b-a567e9f5281e -2016,Tucuman,II.1.1,46.08912,TJ,CO2,74100.0,kg/TJ,3415203.792,Gas Oil combustion consumption by freight transport,AR-T,SESCO,annual,kg,531a02f9-53f1-3b75-bbb3-a3668a8ad0fb -2016,Tucuman,II.1.1,46.08912,TJ,CH4,3.9,kg/TJ,179.747568,Gas Oil combustion consumption by freight transport,AR-T,SESCO,annual,kg,60d130cc-116a-3dc8-9777-d2e6e5fa4e17 -2016,Tucuman,II.1.1,46.08912,TJ,N2O,3.9,kg/TJ,179.747568,Gas Oil combustion consumption by freight transport,AR-T,SESCO,annual,kg,60d130cc-116a-3dc8-9777-d2e6e5fa4e17 -2016,Buenos Aires,II.1.1,65.5578,TJ,CO2,74100.0,kg/TJ,4857832.98,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,82ccb204-0124-373f-b0a6-63e417bb38c6 -2016,Buenos Aires,II.1.1,65.5578,TJ,CH4,3.9,kg/TJ,255.67542,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,99051b36-196b-3862-87fd-29a80007d464 -2016,Buenos Aires,II.1.1,65.5578,TJ,N2O,3.9,kg/TJ,255.67542,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,99051b36-196b-3862-87fd-29a80007d464 -2016,Capital Federal,II.1.1,17.662679999999998,TJ,CO2,74100.0,kg/TJ,1308804.5879999998,Gas Oil combustion consumption by freight transport,AR-C,SESCO,annual,kg,70463576-b76b-3910-a612-9fefb7ac9905 -2016,Capital Federal,II.1.1,17.662679999999998,TJ,CH4,3.9,kg/TJ,68.884452,Gas Oil combustion consumption by freight transport,AR-C,SESCO,annual,kg,e0480165-60eb-395b-ac53-a6cd79e55071 -2016,Capital Federal,II.1.1,17.662679999999998,TJ,N2O,3.9,kg/TJ,68.884452,Gas Oil combustion consumption by freight transport,AR-C,SESCO,annual,kg,e0480165-60eb-395b-ac53-a6cd79e55071 -2016,Catamarca,II.1.1,0.28896,TJ,CO2,74100.0,kg/TJ,21411.935999999998,Gas Oil combustion consumption by freight transport,AR-K,SESCO,annual,kg,9e6bb34e-b818-3b6a-8c14-d80f8d52bdc5 -2016,Catamarca,II.1.1,0.28896,TJ,CH4,3.9,kg/TJ,1.126944,Gas Oil combustion consumption by freight transport,AR-K,SESCO,annual,kg,2aeca832-1095-385a-8e32-082f13ecca68 -2016,Catamarca,II.1.1,0.28896,TJ,N2O,3.9,kg/TJ,1.126944,Gas Oil combustion consumption by freight transport,AR-K,SESCO,annual,kg,2aeca832-1095-385a-8e32-082f13ecca68 -2016,Chaco,II.1.1,1.15584,TJ,CO2,74100.0,kg/TJ,85647.74399999999,Gas Oil combustion consumption by freight transport,AR-H,SESCO,annual,kg,67a60d13-020b-3323-ac21-2e3818aff67a -2016,Chaco,II.1.1,1.15584,TJ,CH4,3.9,kg/TJ,4.507776,Gas Oil combustion consumption by freight transport,AR-H,SESCO,annual,kg,cc3386e0-37ce-3ba8-964c-d99385034fb6 -2016,Chaco,II.1.1,1.15584,TJ,N2O,3.9,kg/TJ,4.507776,Gas Oil combustion consumption by freight transport,AR-H,SESCO,annual,kg,cc3386e0-37ce-3ba8-964c-d99385034fb6 -2016,Chubut,II.1.1,2.96184,TJ,CO2,74100.0,kg/TJ,219472.344,Gas Oil combustion consumption by freight transport,AR-U,SESCO,annual,kg,3968bdb6-698a-3a3c-a398-1404b3d63786 -2016,Chubut,II.1.1,2.96184,TJ,CH4,3.9,kg/TJ,11.551176,Gas Oil combustion consumption by freight transport,AR-U,SESCO,annual,kg,ada6965d-fbf6-3ad3-8775-fd61f39b3377 -2016,Chubut,II.1.1,2.96184,TJ,N2O,3.9,kg/TJ,11.551176,Gas Oil combustion consumption by freight transport,AR-U,SESCO,annual,kg,ada6965d-fbf6-3ad3-8775-fd61f39b3377 -2016,Corrientes,II.1.1,3.28692,TJ,CO2,74100.0,kg/TJ,243560.772,Gas Oil combustion consumption by freight transport,AR-W,SESCO,annual,kg,4d7862dd-4989-3705-8eea-0695906cb013 -2016,Corrientes,II.1.1,3.28692,TJ,CH4,3.9,kg/TJ,12.818988,Gas Oil combustion consumption by freight transport,AR-W,SESCO,annual,kg,915894d3-0f20-346a-9fc5-ab5172fce7a9 -2016,Corrientes,II.1.1,3.28692,TJ,N2O,3.9,kg/TJ,12.818988,Gas Oil combustion consumption by freight transport,AR-W,SESCO,annual,kg,915894d3-0f20-346a-9fc5-ab5172fce7a9 -2016,Córdoba,II.1.1,8.41596,TJ,CO2,74100.0,kg/TJ,623622.636,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,8b3198b0-61b7-37df-84e1-b552912121af -2016,Córdoba,II.1.1,8.41596,TJ,CH4,3.9,kg/TJ,32.822244,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,76142f5a-1dde-3785-9766-e9ba0f1610ce -2016,Córdoba,II.1.1,8.41596,TJ,N2O,3.9,kg/TJ,32.822244,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,76142f5a-1dde-3785-9766-e9ba0f1610ce -2016,Entre Rios,II.1.1,3.64812,TJ,CO2,74100.0,kg/TJ,270325.692,Gas Oil combustion consumption by freight transport,AR-E,SESCO,annual,kg,8e4d4e30-7673-3731-8d36-3ffac7956cee -2016,Entre Rios,II.1.1,3.64812,TJ,CH4,3.9,kg/TJ,14.227668,Gas Oil combustion consumption by freight transport,AR-E,SESCO,annual,kg,21ebb885-0617-3094-9839-cb4873b53117 -2016,Entre Rios,II.1.1,3.64812,TJ,N2O,3.9,kg/TJ,14.227668,Gas Oil combustion consumption by freight transport,AR-E,SESCO,annual,kg,21ebb885-0617-3094-9839-cb4873b53117 -2016,La Pampa,II.1.1,0.5418,TJ,CO2,74100.0,kg/TJ,40147.38,Gas Oil combustion consumption by freight transport,AR-L,SESCO,annual,kg,8bea11b5-260a-31e0-9b47-d09d467faf65 -2016,La Pampa,II.1.1,0.5418,TJ,CH4,3.9,kg/TJ,2.1130199999999997,Gas Oil combustion consumption by freight transport,AR-L,SESCO,annual,kg,333d2d89-a037-3c59-9930-cb4c6875fb58 -2016,La Pampa,II.1.1,0.5418,TJ,N2O,3.9,kg/TJ,2.1130199999999997,Gas Oil combustion consumption by freight transport,AR-L,SESCO,annual,kg,333d2d89-a037-3c59-9930-cb4c6875fb58 -2016,La Rioja,II.1.1,0.21672,TJ,CO2,74100.0,kg/TJ,16058.952,Gas Oil combustion consumption by freight transport,AR-F,SESCO,annual,kg,f50c4d5d-b8e1-3452-b402-b4f68dab72dd -2016,La Rioja,II.1.1,0.21672,TJ,CH4,3.9,kg/TJ,0.845208,Gas Oil combustion consumption by freight transport,AR-F,SESCO,annual,kg,f6d41ec4-5e64-3a97-98a5-1b3163bf62a4 -2016,La Rioja,II.1.1,0.21672,TJ,N2O,3.9,kg/TJ,0.845208,Gas Oil combustion consumption by freight transport,AR-F,SESCO,annual,kg,f6d41ec4-5e64-3a97-98a5-1b3163bf62a4 -2016,Mendoza,II.1.1,0.10836,TJ,CO2,74100.0,kg/TJ,8029.476,Gas Oil combustion consumption by freight transport,AR-M,SESCO,annual,kg,c1b344f6-d1a6-3422-b99f-311077f011f5 -2016,Mendoza,II.1.1,0.10836,TJ,CH4,3.9,kg/TJ,0.422604,Gas Oil combustion consumption by freight transport,AR-M,SESCO,annual,kg,457dda64-64fc-3918-9756-c397c0a16169 -2016,Mendoza,II.1.1,0.10836,TJ,N2O,3.9,kg/TJ,0.422604,Gas Oil combustion consumption by freight transport,AR-M,SESCO,annual,kg,457dda64-64fc-3918-9756-c397c0a16169 -2016,Misiones,II.1.1,0.8307599999999999,TJ,CO2,74100.0,kg/TJ,61559.316,Gas Oil combustion consumption by freight transport,AR-N,SESCO,annual,kg,890f66fb-48c7-3d14-88fd-375e8290f8ba -2016,Misiones,II.1.1,0.8307599999999999,TJ,CH4,3.9,kg/TJ,3.2399639999999996,Gas Oil combustion consumption by freight transport,AR-N,SESCO,annual,kg,f29bd6d2-b1f8-3f20-808d-9c607613b62d -2016,Misiones,II.1.1,0.8307599999999999,TJ,N2O,3.9,kg/TJ,3.2399639999999996,Gas Oil combustion consumption by freight transport,AR-N,SESCO,annual,kg,f29bd6d2-b1f8-3f20-808d-9c607613b62d -2016,Neuquén,II.1.1,0.03612,TJ,CO2,74100.0,kg/TJ,2676.4919999999997,Gas Oil combustion consumption by freight transport,AR-Q,SESCO,annual,kg,72f79e4f-cc41-3c96-90ab-f636da9fd693 -2016,Neuquén,II.1.1,0.03612,TJ,CH4,3.9,kg/TJ,0.140868,Gas Oil combustion consumption by freight transport,AR-Q,SESCO,annual,kg,a2c1117f-32e8-359f-bc8f-87f84ddd7b5b -2016,Neuquén,II.1.1,0.03612,TJ,N2O,3.9,kg/TJ,0.140868,Gas Oil combustion consumption by freight transport,AR-Q,SESCO,annual,kg,a2c1117f-32e8-359f-bc8f-87f84ddd7b5b -2016,Rio Negro,II.1.1,1.87824,TJ,CO2,74100.0,kg/TJ,139177.584,Gas Oil combustion consumption by freight transport,AR-R,SESCO,annual,kg,01a18194-ee5d-3e55-9f47-ba31040304ac -2016,Rio Negro,II.1.1,1.87824,TJ,CH4,3.9,kg/TJ,7.325136,Gas Oil combustion consumption by freight transport,AR-R,SESCO,annual,kg,fe7c9d56-be2a-3213-be8a-7b33995face3 -2016,Rio Negro,II.1.1,1.87824,TJ,N2O,3.9,kg/TJ,7.325136,Gas Oil combustion consumption by freight transport,AR-R,SESCO,annual,kg,fe7c9d56-be2a-3213-be8a-7b33995face3 -2016,San Juan,II.1.1,0.43344,TJ,CO2,74100.0,kg/TJ,32117.904,Gas Oil combustion consumption by freight transport,AR-J,SESCO,annual,kg,5cd0e16f-163c-3a53-a0e0-a0697fe4b69c -2016,San Juan,II.1.1,0.43344,TJ,CH4,3.9,kg/TJ,1.690416,Gas Oil combustion consumption by freight transport,AR-J,SESCO,annual,kg,5e0ed554-cb39-3f88-862e-c79e577bf25b -2016,San Juan,II.1.1,0.43344,TJ,N2O,3.9,kg/TJ,1.690416,Gas Oil combustion consumption by freight transport,AR-J,SESCO,annual,kg,5e0ed554-cb39-3f88-862e-c79e577bf25b -2016,San Luis,II.1.1,1.48092,TJ,CO2,74100.0,kg/TJ,109736.172,Gas Oil combustion consumption by freight transport,AR-D,SESCO,annual,kg,42f8f147-e9c5-3509-817f-c0bc625fc14a -2016,San Luis,II.1.1,1.48092,TJ,CH4,3.9,kg/TJ,5.775588,Gas Oil combustion consumption by freight transport,AR-D,SESCO,annual,kg,327d77fe-ac4d-3c3c-8a25-3e072317700f -2016,San Luis,II.1.1,1.48092,TJ,N2O,3.9,kg/TJ,5.775588,Gas Oil combustion consumption by freight transport,AR-D,SESCO,annual,kg,327d77fe-ac4d-3c3c-8a25-3e072317700f -2016,Santa Fe,II.1.1,13.3644,TJ,CO2,74100.0,kg/TJ,990302.04,Gas Oil combustion consumption by freight transport,AR-S,SESCO,annual,kg,98936536-2ae7-321c-b5f2-4d69e2371727 -2016,Santa Fe,II.1.1,13.3644,TJ,CH4,3.9,kg/TJ,52.121159999999996,Gas Oil combustion consumption by freight transport,AR-S,SESCO,annual,kg,c68b3d0d-46f1-3c24-877b-ba5f236aaddb -2016,Santa Fe,II.1.1,13.3644,TJ,N2O,3.9,kg/TJ,52.121159999999996,Gas Oil combustion consumption by freight transport,AR-S,SESCO,annual,kg,c68b3d0d-46f1-3c24-877b-ba5f236aaddb -2016,Santiago del Estero,II.1.1,0.79464,TJ,CO2,74100.0,kg/TJ,58882.824,Gas Oil combustion consumption by freight transport,AR-G,SESCO,annual,kg,ca406244-8172-39b0-99af-a624f00b1e70 -2016,Santiago del Estero,II.1.1,0.79464,TJ,CH4,3.9,kg/TJ,3.099096,Gas Oil combustion consumption by freight transport,AR-G,SESCO,annual,kg,28e25b1d-b28d-3f63-8222-25e81195204f -2016,Santiago del Estero,II.1.1,0.79464,TJ,N2O,3.9,kg/TJ,3.099096,Gas Oil combustion consumption by freight transport,AR-G,SESCO,annual,kg,28e25b1d-b28d-3f63-8222-25e81195204f -2016,Tucuman,II.1.1,0.68628,TJ,CO2,74100.0,kg/TJ,50853.348,Gas Oil combustion consumption by freight transport,AR-T,SESCO,annual,kg,c021b19e-a9f5-3ab7-8709-f4a98c171122 -2016,Tucuman,II.1.1,0.68628,TJ,CH4,3.9,kg/TJ,2.676492,Gas Oil combustion consumption by freight transport,AR-T,SESCO,annual,kg,ef12b4a6-156e-3826-9bc9-a9db162e2d38 -2016,Tucuman,II.1.1,0.68628,TJ,N2O,3.9,kg/TJ,2.676492,Gas Oil combustion consumption by freight transport,AR-T,SESCO,annual,kg,ef12b4a6-156e-3826-9bc9-a9db162e2d38 -2016,Buenos Aires,II.1.1,0.377436,TJ,CO2,71500.0,kg/TJ,26986.674,Jet Kerosene combustion consumption by freight transport,AR-B,SESCO,annual,kg,94e5304b-b8f0-3b81-8399-af8b9d57a49d -2016,Buenos Aires,II.1.1,0.377436,TJ,CH4,0.5,kg/TJ,0.188718,Jet Kerosene combustion consumption by freight transport,AR-B,SESCO,annual,kg,bb8d18a9-0f16-3243-a551-2d2f144f6083 -2016,Buenos Aires,II.1.1,0.377436,TJ,N2O,2.0,kg/TJ,0.754872,Jet Kerosene combustion consumption by freight transport,AR-B,SESCO,annual,kg,d54e3f6e-85db-3dbe-9a72-ae530cd4479a -2016,Buenos Aires,II.1.1,9.25155,TJ,CO2,73300.0,kg/TJ,678138.615,Naphtha combustion consumption by freight transport,AR-B,SESCO,annual,kg,2c336484-b4de-34a3-ac6a-807de796f5ce -2016,Buenos Aires,II.1.1,9.25155,TJ,CH4,0.5,kg/TJ,4.625775,Naphtha combustion consumption by freight transport,AR-B,SESCO,annual,kg,87df8909-3ad8-39d5-8959-bda7ba372bd2 -2016,Buenos Aires,II.1.1,9.25155,TJ,N2O,2.0,kg/TJ,18.5031,Naphtha combustion consumption by freight transport,AR-B,SESCO,annual,kg,96021931-9780-3cd7-a94a-db555a0ff85c -2016,Capital Federal,II.1.1,6.23623,TJ,CO2,73300.0,kg/TJ,457115.659,Naphtha combustion consumption by freight transport,AR-C,SESCO,annual,kg,962c81ec-2ec7-3653-a167-a2d19318412d -2016,Capital Federal,II.1.1,6.23623,TJ,CH4,0.5,kg/TJ,3.118115,Naphtha combustion consumption by freight transport,AR-C,SESCO,annual,kg,1c4618ee-4ad8-3d65-8658-3e216aac5069 -2016,Capital Federal,II.1.1,6.23623,TJ,N2O,2.0,kg/TJ,12.47246,Naphtha combustion consumption by freight transport,AR-C,SESCO,annual,kg,25216238-029c-3e10-8ba0-ab6c995956df -2016,Córdoba,II.1.1,1.71325,TJ,CO2,73300.0,kg/TJ,125581.22499999999,Naphtha combustion consumption by freight transport,AR-X,SESCO,annual,kg,69adf986-ae01-3884-86e7-9c50f5745843 -2016,Córdoba,II.1.1,1.71325,TJ,CH4,0.5,kg/TJ,0.856625,Naphtha combustion consumption by freight transport,AR-X,SESCO,annual,kg,c9b9cee5-6029-34d7-8326-18ae96fdef42 -2016,Córdoba,II.1.1,1.71325,TJ,N2O,2.0,kg/TJ,3.4265,Naphtha combustion consumption by freight transport,AR-X,SESCO,annual,kg,22fa8334-6e5f-3c5b-a631-e9d3f8e30f99 -2016,Santa Cruz,II.1.1,2.706935,TJ,CO2,73300.0,kg/TJ,198418.33550000002,Naphtha combustion consumption by freight transport,AR-Z,SESCO,annual,kg,0b319c3c-424c-37fc-be4c-3ce26ce9d7b5 -2016,Santa Cruz,II.1.1,2.706935,TJ,CH4,0.5,kg/TJ,1.3534675,Naphtha combustion consumption by freight transport,AR-Z,SESCO,annual,kg,2edc1fc1-13a4-3b2e-8dc9-deaabef5cec3 -2016,Santa Cruz,II.1.1,2.706935,TJ,N2O,2.0,kg/TJ,5.41387,Naphtha combustion consumption by freight transport,AR-Z,SESCO,annual,kg,02d436b2-51ae-3170-931a-363e00bc5744 -2016,Santa Fe,II.1.1,7.298445,TJ,CO2,73300.0,kg/TJ,534976.0185,Naphtha combustion consumption by freight transport,AR-S,SESCO,annual,kg,81574694-b6a2-3893-aedd-f5955a9992b3 -2016,Santa Fe,II.1.1,7.298445,TJ,CH4,0.5,kg/TJ,3.6492225,Naphtha combustion consumption by freight transport,AR-S,SESCO,annual,kg,4da4dc1a-9aa8-38f9-a101-c8e4fe00eada -2016,Santa Fe,II.1.1,7.298445,TJ,N2O,2.0,kg/TJ,14.59689,Naphtha combustion consumption by freight transport,AR-S,SESCO,annual,kg,452e0c00-cad6-355e-b7f7-ed46b438815b -2016,Buenos Aires,II.1.1,6.1677,TJ,CO2,73300.0,kg/TJ,452092.41,Naphtha combustion consumption by freight transport,AR-B,SESCO,annual,kg,161ff0e1-42a3-3578-9bea-b00732f0a24b -2016,Buenos Aires,II.1.1,6.1677,TJ,CH4,0.5,kg/TJ,3.08385,Naphtha combustion consumption by freight transport,AR-B,SESCO,annual,kg,685366fe-3152-326a-a036-4774b497e68a -2016,Buenos Aires,II.1.1,6.1677,TJ,N2O,2.0,kg/TJ,12.3354,Naphtha combustion consumption by freight transport,AR-B,SESCO,annual,kg,a409c310-4b60-3c08-bdca-9d06c011ec67 -2016,Capital Federal,II.1.1,5.345339999999999,TJ,CO2,73300.0,kg/TJ,391813.42199999996,Naphtha combustion consumption by freight transport,AR-C,SESCO,annual,kg,1c5d3d6d-88a9-32a8-8cdf-a7944b01ee9c -2016,Capital Federal,II.1.1,5.345339999999999,TJ,CH4,0.5,kg/TJ,2.6726699999999997,Naphtha combustion consumption by freight transport,AR-C,SESCO,annual,kg,7d8cd13d-d3c8-3e20-b7b9-92c5fa5b6f02 -2016,Capital Federal,II.1.1,5.345339999999999,TJ,N2O,2.0,kg/TJ,10.690679999999999,Naphtha combustion consumption by freight transport,AR-C,SESCO,annual,kg,989f3772-c1a6-3f6a-9e03-ddfacaeee5f7 -2016,Córdoba,II.1.1,0.6167699999999999,TJ,CO2,73300.0,kg/TJ,45209.240999999995,Naphtha combustion consumption by freight transport,AR-X,SESCO,annual,kg,02545ed1-0ed3-349a-9ed9-0ec58fc9f772 -2016,Córdoba,II.1.1,0.6167699999999999,TJ,CH4,0.5,kg/TJ,0.30838499999999996,Naphtha combustion consumption by freight transport,AR-X,SESCO,annual,kg,1c15b4f2-5124-3eba-98cb-b72c5cb28fb1 -2016,Córdoba,II.1.1,0.6167699999999999,TJ,N2O,2.0,kg/TJ,1.2335399999999999,Naphtha combustion consumption by freight transport,AR-X,SESCO,annual,kg,aef9cc69-1a09-3335-a361-00dc058e51f8 -2016,Santa Cruz,II.1.1,0.34265,TJ,CO2,73300.0,kg/TJ,25116.245,Naphtha combustion consumption by freight transport,AR-Z,SESCO,annual,kg,5ecb02b8-0565-3ee9-bd16-0e6a265d8269 -2016,Santa Cruz,II.1.1,0.34265,TJ,CH4,0.5,kg/TJ,0.171325,Naphtha combustion consumption by freight transport,AR-Z,SESCO,annual,kg,ccc8657b-cdeb-328e-b73c-f4f4bc69c6b5 -2016,Santa Cruz,II.1.1,0.34265,TJ,N2O,2.0,kg/TJ,0.6853,Naphtha combustion consumption by freight transport,AR-Z,SESCO,annual,kg,6f0acbe4-b89d-35b3-8db6-020b55e94d3f -2016,Santa Fe,II.1.1,1.404865,TJ,CO2,73300.0,kg/TJ,102976.6045,Naphtha combustion consumption by freight transport,AR-S,SESCO,annual,kg,9929abb6-547d-37fa-baf6-796aa7af81ba -2016,Santa Fe,II.1.1,1.404865,TJ,CH4,0.5,kg/TJ,0.7024325,Naphtha combustion consumption by freight transport,AR-S,SESCO,annual,kg,d48d6136-6665-32df-a1d5-08a5f6c34481 -2016,Santa Fe,II.1.1,1.404865,TJ,N2O,2.0,kg/TJ,2.80973,Naphtha combustion consumption by freight transport,AR-S,SESCO,annual,kg,24bb6452-f233-3da7-99a4-39ea09e81071 -2016,Capital Federal,II.1.1,1.0189,TJ,CO2,69300.0,kg/TJ,70609.76999999999,Motor Gasoline combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,b49e7992-91d4-394e-8d1e-a137c020ad30 -2016,Capital Federal,II.1.1,1.0189,TJ,CH4,33.0,kg/TJ,33.6237,Motor Gasoline combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,10d86630-2cdd-3ae5-8506-12f86bbedeee -2016,Capital Federal,II.1.1,1.0189,TJ,N2O,3.2,kg/TJ,3.26048,Motor Gasoline combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,f081b002-9c4e-361a-8330-8f334881b065 -2016,Buenos Aires,II.1.1,2169.33108,TJ,CO2,74100.0,kg/TJ,160747433.028,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,4f0e15a0-917e-3afa-88d2-4ec59b86fd5d -2016,Buenos Aires,II.1.1,2169.33108,TJ,CH4,3.9,kg/TJ,8460.391211999999,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,224208f5-3f0c-3a59-9a6b-ac3cc37fba96 -2016,Buenos Aires,II.1.1,2169.33108,TJ,N2O,3.9,kg/TJ,8460.391211999999,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,224208f5-3f0c-3a59-9a6b-ac3cc37fba96 -2016,Capital Federal,II.1.1,633.97824,TJ,CO2,74100.0,kg/TJ,46977787.584,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,360c694c-5d57-3ec5-999a-c3081f23e85c -2016,Capital Federal,II.1.1,633.97824,TJ,CH4,3.9,kg/TJ,2472.515136,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,dfce4820-9b77-36c2-856c-65300e60583b -2016,Capital Federal,II.1.1,633.97824,TJ,N2O,3.9,kg/TJ,2472.515136,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,dfce4820-9b77-36c2-856c-65300e60583b -2016,Catamarca,II.1.1,0.79464,TJ,CO2,74100.0,kg/TJ,58882.824,Gas Oil combustion consumption by public passenger transport,AR-K,SESCO,annual,kg,c8a1f203-1b34-3eb3-b447-11b85dcb0d21 -2016,Catamarca,II.1.1,0.79464,TJ,CH4,3.9,kg/TJ,3.099096,Gas Oil combustion consumption by public passenger transport,AR-K,SESCO,annual,kg,be9e595c-2875-3052-9025-c0284bd58968 -2016,Catamarca,II.1.1,0.79464,TJ,N2O,3.9,kg/TJ,3.099096,Gas Oil combustion consumption by public passenger transport,AR-K,SESCO,annual,kg,be9e595c-2875-3052-9025-c0284bd58968 -2016,Chaco,II.1.1,0.5418,TJ,CO2,74100.0,kg/TJ,40147.38,Gas Oil combustion consumption by public passenger transport,AR-H,SESCO,annual,kg,2d2393f2-9bf8-3df8-8971-7620be341900 -2016,Chaco,II.1.1,0.5418,TJ,CH4,3.9,kg/TJ,2.1130199999999997,Gas Oil combustion consumption by public passenger transport,AR-H,SESCO,annual,kg,9deddbf3-06c6-3ff7-be4f-09086c5ebeaf -2016,Chaco,II.1.1,0.5418,TJ,N2O,3.9,kg/TJ,2.1130199999999997,Gas Oil combustion consumption by public passenger transport,AR-H,SESCO,annual,kg,9deddbf3-06c6-3ff7-be4f-09086c5ebeaf -2016,Chubut,II.1.1,14.59248,TJ,CO2,74100.0,kg/TJ,1081302.768,Gas Oil combustion consumption by public passenger transport,AR-U,SESCO,annual,kg,21093fe2-7448-304e-a290-96b9688341f6 -2016,Chubut,II.1.1,14.59248,TJ,CH4,3.9,kg/TJ,56.910672,Gas Oil combustion consumption by public passenger transport,AR-U,SESCO,annual,kg,e9be97f2-8df0-3fdc-a973-b272cf24d723 -2016,Chubut,II.1.1,14.59248,TJ,N2O,3.9,kg/TJ,56.910672,Gas Oil combustion consumption by public passenger transport,AR-U,SESCO,annual,kg,e9be97f2-8df0-3fdc-a973-b272cf24d723 -2016,Corrientes,II.1.1,2.6367599999999998,TJ,CO2,74100.0,kg/TJ,195383.916,Gas Oil combustion consumption by public passenger transport,AR-W,SESCO,annual,kg,b57b7a47-b0b8-3afc-a76e-67cbd6512b37 -2016,Corrientes,II.1.1,2.6367599999999998,TJ,CH4,3.9,kg/TJ,10.283363999999999,Gas Oil combustion consumption by public passenger transport,AR-W,SESCO,annual,kg,6bbf126c-7a15-39cb-aaad-49ddd0fecf8c -2016,Corrientes,II.1.1,2.6367599999999998,TJ,N2O,3.9,kg/TJ,10.283363999999999,Gas Oil combustion consumption by public passenger transport,AR-W,SESCO,annual,kg,6bbf126c-7a15-39cb-aaad-49ddd0fecf8c -2016,Córdoba,II.1.1,96.47652,TJ,CO2,74100.0,kg/TJ,7148910.131999999,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,8823b6bb-69c3-33ca-9026-4a11cb909df5 -2016,Córdoba,II.1.1,96.47652,TJ,CH4,3.9,kg/TJ,376.258428,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,1e0e1e0f-d789-3496-bd47-1acdcacd0f97 -2016,Córdoba,II.1.1,96.47652,TJ,N2O,3.9,kg/TJ,376.258428,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,1e0e1e0f-d789-3496-bd47-1acdcacd0f97 -2016,Entre Rios,II.1.1,50.89308,TJ,CO2,74100.0,kg/TJ,3771177.2279999997,Gas Oil combustion consumption by public passenger transport,AR-E,SESCO,annual,kg,e5098f28-dbe4-37e5-a551-8526ae688230 -2016,Entre Rios,II.1.1,50.89308,TJ,CH4,3.9,kg/TJ,198.48301199999997,Gas Oil combustion consumption by public passenger transport,AR-E,SESCO,annual,kg,7cd2c88e-6eaf-3eea-a5ca-0f478caa5d34 -2016,Entre Rios,II.1.1,50.89308,TJ,N2O,3.9,kg/TJ,198.48301199999997,Gas Oil combustion consumption by public passenger transport,AR-E,SESCO,annual,kg,7cd2c88e-6eaf-3eea-a5ca-0f478caa5d34 -2016,Formosa,II.1.1,0.36119999999999997,TJ,CO2,74100.0,kg/TJ,26764.92,Gas Oil combustion consumption by public passenger transport,AR-P,SESCO,annual,kg,bb89abdd-df1d-3f71-bada-cf9d6cd6db03 -2016,Formosa,II.1.1,0.36119999999999997,TJ,CH4,3.9,kg/TJ,1.40868,Gas Oil combustion consumption by public passenger transport,AR-P,SESCO,annual,kg,454aa7ee-5023-3d4b-8f5b-bbf0e142d23f -2016,Formosa,II.1.1,0.36119999999999997,TJ,N2O,3.9,kg/TJ,1.40868,Gas Oil combustion consumption by public passenger transport,AR-P,SESCO,annual,kg,454aa7ee-5023-3d4b-8f5b-bbf0e142d23f -2016,La Pampa,II.1.1,3.64812,TJ,CO2,74100.0,kg/TJ,270325.692,Gas Oil combustion consumption by public passenger transport,AR-L,SESCO,annual,kg,c5e1b29b-622a-324d-b245-affe0fa8206f -2016,La Pampa,II.1.1,3.64812,TJ,CH4,3.9,kg/TJ,14.227668,Gas Oil combustion consumption by public passenger transport,AR-L,SESCO,annual,kg,bfe47d1d-bfb0-370f-be61-060da7fea084 -2016,La Pampa,II.1.1,3.64812,TJ,N2O,3.9,kg/TJ,14.227668,Gas Oil combustion consumption by public passenger transport,AR-L,SESCO,annual,kg,bfe47d1d-bfb0-370f-be61-060da7fea084 -2016,Mendoza,II.1.1,0.68628,TJ,CO2,74100.0,kg/TJ,50853.348,Gas Oil combustion consumption by public passenger transport,AR-M,SESCO,annual,kg,c87cd4e3-b98d-367a-a9d0-04537f69367f -2016,Mendoza,II.1.1,0.68628,TJ,CH4,3.9,kg/TJ,2.676492,Gas Oil combustion consumption by public passenger transport,AR-M,SESCO,annual,kg,6f760926-dc94-3879-b646-3eb4686153c5 -2016,Mendoza,II.1.1,0.68628,TJ,N2O,3.9,kg/TJ,2.676492,Gas Oil combustion consumption by public passenger transport,AR-M,SESCO,annual,kg,6f760926-dc94-3879-b646-3eb4686153c5 -2016,Misiones,II.1.1,17.55432,TJ,CO2,74100.0,kg/TJ,1300775.112,Gas Oil combustion consumption by public passenger transport,AR-N,SESCO,annual,kg,7a174182-1f8e-340b-9276-de9defc00513 -2016,Misiones,II.1.1,17.55432,TJ,CH4,3.9,kg/TJ,68.461848,Gas Oil combustion consumption by public passenger transport,AR-N,SESCO,annual,kg,b0550759-fec2-31d9-9324-adac028e56c9 -2016,Misiones,II.1.1,17.55432,TJ,N2O,3.9,kg/TJ,68.461848,Gas Oil combustion consumption by public passenger transport,AR-N,SESCO,annual,kg,b0550759-fec2-31d9-9324-adac028e56c9 -2016,Rio Negro,II.1.1,42.65772,TJ,CO2,74100.0,kg/TJ,3160937.0519999997,Gas Oil combustion consumption by public passenger transport,AR-R,SESCO,annual,kg,e81e7444-3aaf-355f-9589-911e50b1982a -2016,Rio Negro,II.1.1,42.65772,TJ,CH4,3.9,kg/TJ,166.365108,Gas Oil combustion consumption by public passenger transport,AR-R,SESCO,annual,kg,a566ea40-66cf-33ff-b9e3-8a860a33d3ce -2016,Rio Negro,II.1.1,42.65772,TJ,N2O,3.9,kg/TJ,166.365108,Gas Oil combustion consumption by public passenger transport,AR-R,SESCO,annual,kg,a566ea40-66cf-33ff-b9e3-8a860a33d3ce -2016,San Luis,II.1.1,0.36119999999999997,TJ,CO2,74100.0,kg/TJ,26764.92,Gas Oil combustion consumption by public passenger transport,AR-D,SESCO,annual,kg,3e15c984-2e8f-3f8d-94e0-6e21824cb623 -2016,San Luis,II.1.1,0.36119999999999997,TJ,CH4,3.9,kg/TJ,1.40868,Gas Oil combustion consumption by public passenger transport,AR-D,SESCO,annual,kg,166bcf8f-cfca-3d06-a441-bf9b914fed2a -2016,San Luis,II.1.1,0.36119999999999997,TJ,N2O,3.9,kg/TJ,1.40868,Gas Oil combustion consumption by public passenger transport,AR-D,SESCO,annual,kg,166bcf8f-cfca-3d06-a441-bf9b914fed2a -2016,Santa Fe,II.1.1,81.73956,TJ,CO2,74100.0,kg/TJ,6056901.396,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,d98d10e2-b574-376d-840d-313d9050e58a -2016,Santa Fe,II.1.1,81.73956,TJ,CH4,3.9,kg/TJ,318.78428399999996,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,c4ae1704-24a3-3dbe-bfc4-a99697331b93 -2016,Santa Fe,II.1.1,81.73956,TJ,N2O,3.9,kg/TJ,318.78428399999996,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,c4ae1704-24a3-3dbe-bfc4-a99697331b93 -2016,Santiago del Estero,II.1.1,2.1672,TJ,CO2,74100.0,kg/TJ,160589.52,Gas Oil combustion consumption by public passenger transport,AR-G,SESCO,annual,kg,5fc1f659-bf28-3e80-a7a5-5eb7469e32c9 -2016,Santiago del Estero,II.1.1,2.1672,TJ,CH4,3.9,kg/TJ,8.452079999999999,Gas Oil combustion consumption by public passenger transport,AR-G,SESCO,annual,kg,fbe0b765-556d-3c5a-9ebb-68c431ce0bd5 -2016,Santiago del Estero,II.1.1,2.1672,TJ,N2O,3.9,kg/TJ,8.452079999999999,Gas Oil combustion consumption by public passenger transport,AR-G,SESCO,annual,kg,fbe0b765-556d-3c5a-9ebb-68c431ce0bd5 -2016,Tucuman,II.1.1,0.03612,TJ,CO2,74100.0,kg/TJ,2676.4919999999997,Gas Oil combustion consumption by public passenger transport,AR-T,SESCO,annual,kg,b52de9dd-f832-3bc4-828c-b27ffb31d294 -2016,Tucuman,II.1.1,0.03612,TJ,CH4,3.9,kg/TJ,0.140868,Gas Oil combustion consumption by public passenger transport,AR-T,SESCO,annual,kg,ed0e8af5-4f73-3538-bbbc-56ce6cf73097 -2016,Tucuman,II.1.1,0.03612,TJ,N2O,3.9,kg/TJ,0.140868,Gas Oil combustion consumption by public passenger transport,AR-T,SESCO,annual,kg,ed0e8af5-4f73-3538-bbbc-56ce6cf73097 -2016,Buenos Aires,II.1.1,5.16516,TJ,CO2,74100.0,kg/TJ,382738.356,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,f2172b81-63fa-3a21-9b35-0697cebe3183 -2016,Buenos Aires,II.1.1,5.16516,TJ,CH4,3.9,kg/TJ,20.144124,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,39d13e98-5cae-3c2b-ada3-a7648aa20306 -2016,Buenos Aires,II.1.1,5.16516,TJ,N2O,3.9,kg/TJ,20.144124,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,39d13e98-5cae-3c2b-ada3-a7648aa20306 -2016,Capital Federal,II.1.1,3.64812,TJ,CO2,74100.0,kg/TJ,270325.692,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,618def75-fb62-3d81-b21c-83c07ef1aaf8 -2016,Capital Federal,II.1.1,3.64812,TJ,CH4,3.9,kg/TJ,14.227668,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,cf5e0468-2a6c-3357-ad1b-2fe108082be4 -2016,Capital Federal,II.1.1,3.64812,TJ,N2O,3.9,kg/TJ,14.227668,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,cf5e0468-2a6c-3357-ad1b-2fe108082be4 -2016,Chaco,II.1.1,0.03612,TJ,CO2,74100.0,kg/TJ,2676.4919999999997,Gas Oil combustion consumption by public passenger transport,AR-H,SESCO,annual,kg,99d6cc73-96ef-3908-bdbf-2390d40ac905 -2016,Chaco,II.1.1,0.03612,TJ,CH4,3.9,kg/TJ,0.140868,Gas Oil combustion consumption by public passenger transport,AR-H,SESCO,annual,kg,4fd51885-17e1-3f6f-abb6-0b1a2a70f00e -2016,Chaco,II.1.1,0.03612,TJ,N2O,3.9,kg/TJ,0.140868,Gas Oil combustion consumption by public passenger transport,AR-H,SESCO,annual,kg,4fd51885-17e1-3f6f-abb6-0b1a2a70f00e -2016,Chubut,II.1.1,0.18059999999999998,TJ,CO2,74100.0,kg/TJ,13382.46,Gas Oil combustion consumption by public passenger transport,AR-U,SESCO,annual,kg,96fb7b8c-4d56-3313-b78a-794e8ba39676 -2016,Chubut,II.1.1,0.18059999999999998,TJ,CH4,3.9,kg/TJ,0.70434,Gas Oil combustion consumption by public passenger transport,AR-U,SESCO,annual,kg,f258055d-6d65-36aa-b30d-5e1e3966ba1c -2016,Chubut,II.1.1,0.18059999999999998,TJ,N2O,3.9,kg/TJ,0.70434,Gas Oil combustion consumption by public passenger transport,AR-U,SESCO,annual,kg,f258055d-6d65-36aa-b30d-5e1e3966ba1c -2016,Corrientes,II.1.1,0.07224,TJ,CO2,74100.0,kg/TJ,5352.9839999999995,Gas Oil combustion consumption by public passenger transport,AR-W,SESCO,annual,kg,24829ddb-375e-3ddd-beb2-94459f329f15 -2016,Corrientes,II.1.1,0.07224,TJ,CH4,3.9,kg/TJ,0.281736,Gas Oil combustion consumption by public passenger transport,AR-W,SESCO,annual,kg,b091fa72-c11f-3ff4-96a5-8f77cc089c1e -2016,Corrientes,II.1.1,0.07224,TJ,N2O,3.9,kg/TJ,0.281736,Gas Oil combustion consumption by public passenger transport,AR-W,SESCO,annual,kg,b091fa72-c11f-3ff4-96a5-8f77cc089c1e -2016,Córdoba,II.1.1,0.18059999999999998,TJ,CO2,74100.0,kg/TJ,13382.46,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,10a33825-45eb-3581-8a96-85ad24adcaa5 -2016,Córdoba,II.1.1,0.18059999999999998,TJ,CH4,3.9,kg/TJ,0.70434,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,3ac96b27-f4dd-30a7-bbac-b021e2afbe58 -2016,Córdoba,II.1.1,0.18059999999999998,TJ,N2O,3.9,kg/TJ,0.70434,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,3ac96b27-f4dd-30a7-bbac-b021e2afbe58 -2016,La Pampa,II.1.1,0.14448,TJ,CO2,74100.0,kg/TJ,10705.967999999999,Gas Oil combustion consumption by public passenger transport,AR-L,SESCO,annual,kg,04c78ffd-9cc4-3825-a216-511c3e714d6f -2016,La Pampa,II.1.1,0.14448,TJ,CH4,3.9,kg/TJ,0.563472,Gas Oil combustion consumption by public passenger transport,AR-L,SESCO,annual,kg,eaf5d924-0aba-3011-b07b-f8b117d8562c -2016,La Pampa,II.1.1,0.14448,TJ,N2O,3.9,kg/TJ,0.563472,Gas Oil combustion consumption by public passenger transport,AR-L,SESCO,annual,kg,eaf5d924-0aba-3011-b07b-f8b117d8562c -2016,Rio Negro,II.1.1,0.25284,TJ,CO2,74100.0,kg/TJ,18735.444,Gas Oil combustion consumption by public passenger transport,AR-R,SESCO,annual,kg,537218ba-46ce-3de4-813c-d01f0ee430af -2016,Rio Negro,II.1.1,0.25284,TJ,CH4,3.9,kg/TJ,0.9860760000000001,Gas Oil combustion consumption by public passenger transport,AR-R,SESCO,annual,kg,ed711632-0a7d-3c16-b847-7697f1ba8194 -2016,Rio Negro,II.1.1,0.25284,TJ,N2O,3.9,kg/TJ,0.9860760000000001,Gas Oil combustion consumption by public passenger transport,AR-R,SESCO,annual,kg,ed711632-0a7d-3c16-b847-7697f1ba8194 -2016,Santa Fe,II.1.1,0.9029999999999999,TJ,CO2,74100.0,kg/TJ,66912.29999999999,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,e6083514-3b54-3dfd-ba17-557e8c3d5b5d -2016,Santa Fe,II.1.1,0.9029999999999999,TJ,CH4,3.9,kg/TJ,3.5216999999999996,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,f59ca2c0-3f66-3409-833e-bb3d2751b992 -2016,Santa Fe,II.1.1,0.9029999999999999,TJ,N2O,3.9,kg/TJ,3.5216999999999996,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,f59ca2c0-3f66-3409-833e-bb3d2751b992 -2016,Santa Fe,II.1.1,0.6853,TJ,CO2,73300.0,kg/TJ,50232.49,Naphtha combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,632d2bac-94c0-3ca7-9a84-4e35e227704d -2016,Santa Fe,II.1.1,0.6853,TJ,CH4,0.5,kg/TJ,0.34265,Naphtha combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,ae03b537-e407-3e42-a54d-e7f07bc131d0 -2016,Santa Fe,II.1.1,0.6853,TJ,N2O,2.0,kg/TJ,1.3706,Naphtha combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,650e9f00-fe44-3f86-8072-2228085ae21f -2016,Buenos Aires,II.1.1,0.34265,TJ,CO2,73300.0,kg/TJ,25116.245,Naphtha combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,f713911a-1fd7-31ac-b7d5-538be4ff14f3 -2016,Buenos Aires,II.1.1,0.34265,TJ,CH4,0.5,kg/TJ,0.171325,Naphtha combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,1eb66c82-8d1a-300b-aa84-1cd7f2a02dc4 -2016,Buenos Aires,II.1.1,0.34265,TJ,N2O,2.0,kg/TJ,0.6853,Naphtha combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,e9f277aa-735b-3afd-aed6-d29e19a98507 -2016,Capital Federal,II.1.1,0.23985499999999998,TJ,CO2,73300.0,kg/TJ,17581.371499999997,Naphtha combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,a6777a7d-0590-3f58-ae03-db41f733982c -2016,Capital Federal,II.1.1,0.23985499999999998,TJ,CH4,0.5,kg/TJ,0.11992749999999999,Naphtha combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,c8034c97-d83a-388e-8aea-b63697c24619 -2016,Capital Federal,II.1.1,0.23985499999999998,TJ,N2O,2.0,kg/TJ,0.47970999999999997,Naphtha combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,b24a60c3-e0f1-3021-8975-4d5efe69718f -2016,Santa Fe,II.1.1,0.54824,TJ,CO2,73300.0,kg/TJ,40185.992,Naphtha combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,51cb5bbc-c968-3c18-888e-9a546d8387a9 -2016,Santa Fe,II.1.1,0.54824,TJ,CH4,0.5,kg/TJ,0.27412,Naphtha combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,167ec5c1-612c-36c5-9687-1e46e68a6b70 -2016,Santa Fe,II.1.1,0.54824,TJ,N2O,2.0,kg/TJ,1.09648,Naphtha combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,85696aee-3022-3e65-8ba7-66d20b56501e -2016,Chubut,II.1.1,1.3205471999999998,TJ,CO2,74100.0,kg/TJ,97852.54752,Gas Oil combustion consumption by freight transport,AR-U,SESCO,annual,kg,2296ea87-1a6d-3a95-a8af-ca14464575c5 -2016,Chubut,II.1.1,1.3205471999999998,TJ,CH4,3.9,kg/TJ,5.150134079999999,Gas Oil combustion consumption by freight transport,AR-U,SESCO,annual,kg,9644f24a-37b5-3f5f-bc1e-34b2615801f2 -2016,Chubut,II.1.1,1.3205471999999998,TJ,N2O,3.9,kg/TJ,5.150134079999999,Gas Oil combustion consumption by freight transport,AR-U,SESCO,annual,kg,9644f24a-37b5-3f5f-bc1e-34b2615801f2 -2016,Buenos Aires,II.5.1,530.229810432,TJ,CO2,74100.0,kg/TJ,39290028.9530112,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,2be9dd78-6991-331c-b48f-2884a440528e -2016,Buenos Aires,II.5.1,530.229810432,TJ,CH4,3.9,kg/TJ,2067.8962606848,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,0723c0d1-b636-3451-b4ae-28cc64efd60d -2016,Buenos Aires,II.5.1,530.229810432,TJ,N2O,3.9,kg/TJ,2067.8962606848,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,0723c0d1-b636-3451-b4ae-28cc64efd60d -2016,Córdoba,II.5.1,661.1413541039999,TJ,CO2,74100.0,kg/TJ,48990574.339106396,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,08215588-9254-351c-9dfb-c25e0d88f287 -2016,Córdoba,II.5.1,661.1413541039999,TJ,CH4,3.9,kg/TJ,2578.4512810055994,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,aa8338aa-d44b-3980-a14e-68ca278aa22c -2016,Córdoba,II.5.1,661.1413541039999,TJ,N2O,3.9,kg/TJ,2578.4512810055994,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,aa8338aa-d44b-3980-a14e-68ca278aa22c -2016,Entre Rios,II.5.1,365.9980254839999,TJ,CO2,74100.0,kg/TJ,27120453.688364394,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,e3fe4eb5-3127-355f-be1c-a1e034130a04 -2016,Entre Rios,II.5.1,365.9980254839999,TJ,CH4,3.9,kg/TJ,1427.3922993875997,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,89c8bb4f-f268-3c66-b9eb-edfc046916b2 -2016,Entre Rios,II.5.1,365.9980254839999,TJ,N2O,3.9,kg/TJ,1427.3922993875997,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,89c8bb4f-f268-3c66-b9eb-edfc046916b2 -2016,La Pampa,II.5.1,53.113325832,TJ,CO2,74100.0,kg/TJ,3935697.4441512,Gas Oil combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,034385b1-5a12-321f-ae56-e0cf2a1baa97 -2016,La Pampa,II.5.1,53.113325832,TJ,CH4,3.9,kg/TJ,207.1419707448,Gas Oil combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,867e4289-e93a-3897-ae1c-2ec194cb0060 -2016,La Pampa,II.5.1,53.113325832,TJ,N2O,3.9,kg/TJ,207.1419707448,Gas Oil combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,867e4289-e93a-3897-ae1c-2ec194cb0060 -2016,Santa Fe,II.5.1,852.0007127519999,TJ,CO2,74100.0,kg/TJ,63133252.8149232,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,ebe84ae2-7a41-3316-bebf-3edee222a66d -2016,Santa Fe,II.5.1,852.0007127519999,TJ,CH4,3.9,kg/TJ,3322.8027797327995,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,7edd09ba-d8fd-323a-aac4-c994f06f792d -2016,Santa Fe,II.5.1,852.0007127519999,TJ,N2O,3.9,kg/TJ,3322.8027797327995,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,7edd09ba-d8fd-323a-aac4-c994f06f792d -2016,Santiago del Estero,II.5.1,87.505944624,TJ,CO2,74100.0,kg/TJ,6484190.4966384,Gas Oil combustion consumption by agriculture machines,AR-G,SESCO,annual,kg,1d7be19c-dd88-3d2e-98c7-32c59c24ed77 -2016,Santiago del Estero,II.5.1,87.505944624,TJ,CH4,3.9,kg/TJ,341.2731840336,Gas Oil combustion consumption by agriculture machines,AR-G,SESCO,annual,kg,cfd16578-4488-3ddf-8f71-7abf21b3575c -2016,Santiago del Estero,II.5.1,87.505944624,TJ,N2O,3.9,kg/TJ,341.2731840336,Gas Oil combustion consumption by agriculture machines,AR-G,SESCO,annual,kg,cfd16578-4488-3ddf-8f71-7abf21b3575c -2016,Buenos Aires,II.5.1,12.820328051999999,TJ,CO2,74100.0,kg/TJ,949986.3086531999,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,dc853017-1be5-3aaa-b67e-f2a4937ccda4 -2016,Buenos Aires,II.5.1,12.820328051999999,TJ,CH4,3.9,kg/TJ,49.99927940279999,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,d53678d7-dc52-3a95-9c20-aacb7da96ce6 -2016,Buenos Aires,II.5.1,12.820328051999999,TJ,N2O,3.9,kg/TJ,49.99927940279999,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,d53678d7-dc52-3a95-9c20-aacb7da96ce6 -2016,Córdoba,II.5.1,3.02069754,TJ,CO2,74100.0,kg/TJ,223833.687714,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,14354b2a-aa57-36ea-9d20-576564bf6a9a -2016,Córdoba,II.5.1,3.02069754,TJ,CH4,3.9,kg/TJ,11.780720406,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,33591384-0b1e-30cf-bc25-6c4a7141bf3d -2016,Córdoba,II.5.1,3.02069754,TJ,N2O,3.9,kg/TJ,11.780720406,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,33591384-0b1e-30cf-bc25-6c4a7141bf3d -2016,Entre Rios,II.5.1,12.326878284000001,TJ,CO2,74100.0,kg/TJ,913421.6808444001,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,6ff094ff-c269-329e-bd41-74139e7ec3f7 -2016,Entre Rios,II.5.1,12.326878284000001,TJ,CH4,3.9,kg/TJ,48.0748253076,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,7b0fe9ba-546f-3950-93a8-1b7f0694439d -2016,Entre Rios,II.5.1,12.326878284000001,TJ,N2O,3.9,kg/TJ,48.0748253076,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,7b0fe9ba-546f-3950-93a8-1b7f0694439d -2016,La Pampa,II.5.1,10.302471480000001,TJ,CO2,74100.0,kg/TJ,763413.1366680001,Gas Oil combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,221fbf82-58fd-37fb-9543-9c923ed90526 -2016,La Pampa,II.5.1,10.302471480000001,TJ,CH4,3.9,kg/TJ,40.179638772000004,Gas Oil combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,af281f83-415a-3599-9838-a8f2843ad7e9 -2016,La Pampa,II.5.1,10.302471480000001,TJ,N2O,3.9,kg/TJ,40.179638772000004,Gas Oil combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,af281f83-415a-3599-9838-a8f2843ad7e9 -2016,Santa Fe,II.5.1,2.156085876,TJ,CO2,74100.0,kg/TJ,159765.9634116,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,aad77600-be89-3d62-a2d1-e0f21d7d5564 -2016,Santa Fe,II.5.1,2.156085876,TJ,CH4,3.9,kg/TJ,8.4087349164,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,53885975-8891-3dfd-bef2-f435ffee1d8f -2016,Santa Fe,II.5.1,2.156085876,TJ,N2O,3.9,kg/TJ,8.4087349164,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,53885975-8891-3dfd-bef2-f435ffee1d8f -2016,Santa Fe,II.5.1,5.2404891000000005,TJ,CO2,73300.0,kg/TJ,384127.85103,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,b1b27671-6da0-3fac-bc5d-9217a065c865 -2016,Santa Fe,II.5.1,5.2404891000000005,TJ,CH4,0.5,kg/TJ,2.6202445500000002,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,163b327d-ff51-3e33-aa5b-b9cdccc30cc1 -2016,Santa Fe,II.5.1,5.2404891000000005,TJ,N2O,2.0,kg/TJ,10.480978200000001,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,0ea47da9-442a-3665-ba2f-957bdb770469 -2016,Santiago del Estero,II.5.1,4.702734189999999,TJ,CO2,73300.0,kg/TJ,344710.41612699995,Naphtha combustion consumption by agriculture machines,AR-G,SESCO,annual,kg,3727aae9-9392-381f-944e-3bb7466e6b53 -2016,Santiago del Estero,II.5.1,4.702734189999999,TJ,CH4,0.5,kg/TJ,2.3513670949999996,Naphtha combustion consumption by agriculture machines,AR-G,SESCO,annual,kg,b1caa146-b8a6-390f-82e0-0224d4d7a7b1 -2016,Santiago del Estero,II.5.1,4.702734189999999,TJ,N2O,2.0,kg/TJ,9.405468379999999,Naphtha combustion consumption by agriculture machines,AR-G,SESCO,annual,kg,2e389d60-e485-3bc2-a1bf-52aac3f63623 -2016,Buenos Aires,II.1.1,278.829708948,TJ,CO2,74100.0,kg/TJ,20661281.433046803,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,e6529626-0e82-3c73-967a-373b69bec01f -2016,Buenos Aires,II.1.1,278.829708948,TJ,CH4,3.9,kg/TJ,1087.4358648972,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,d9951712-4f66-317a-85dc-2e1617fcbcb7 -2016,Buenos Aires,II.1.1,278.829708948,TJ,N2O,3.9,kg/TJ,1087.4358648972,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,d9951712-4f66-317a-85dc-2e1617fcbcb7 -2016,Chaco,II.1.1,14.378259504,TJ,CO2,74100.0,kg/TJ,1065429.0292464,Gas Oil combustion consumption by public passenger transport,AR-H,SESCO,annual,kg,ce2863c0-6edc-3ee9-aa5b-661e7bd92eeb -2016,Chaco,II.1.1,14.378259504,TJ,CH4,3.9,kg/TJ,56.0752120656,Gas Oil combustion consumption by public passenger transport,AR-H,SESCO,annual,kg,d5976fce-f182-3fc1-a09c-6101b851ddfb -2016,Chaco,II.1.1,14.378259504,TJ,N2O,3.9,kg/TJ,56.0752120656,Gas Oil combustion consumption by public passenger transport,AR-H,SESCO,annual,kg,d5976fce-f182-3fc1-a09c-6101b851ddfb -2016,Corrientes,II.1.1,40.725661200000005,TJ,CO2,74100.0,kg/TJ,3017771.4949200004,Gas Oil combustion consumption by public passenger transport,AR-W,SESCO,annual,kg,f6808dcd-7c2a-31c2-86b4-2b529249e166 -2016,Corrientes,II.1.1,40.725661200000005,TJ,CH4,3.9,kg/TJ,158.83007868,Gas Oil combustion consumption by public passenger transport,AR-W,SESCO,annual,kg,53885dec-b940-30a0-9ea9-34fb6663c08d -2016,Corrientes,II.1.1,40.725661200000005,TJ,N2O,3.9,kg/TJ,158.83007868,Gas Oil combustion consumption by public passenger transport,AR-W,SESCO,annual,kg,53885dec-b940-30a0-9ea9-34fb6663c08d -2016,Córdoba,II.1.1,335.5111851,TJ,CO2,74100.0,kg/TJ,24861378.815909997,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,e8a486c7-4a7e-339f-ae38-ec4a883ab52d -2016,Córdoba,II.1.1,335.5111851,TJ,CH4,3.9,kg/TJ,1308.49362189,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,d5a6f8f3-b40f-322a-8fee-63b851b446d7 -2016,Córdoba,II.1.1,335.5111851,TJ,N2O,3.9,kg/TJ,1308.49362189,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,d5a6f8f3-b40f-322a-8fee-63b851b446d7 -2016,Entre Rios,II.1.1,100.77971593199999,TJ,CO2,74100.0,kg/TJ,7467776.950561199,Gas Oil combustion consumption by public passenger transport,AR-E,SESCO,annual,kg,8a19a873-671d-3f58-80ed-e25dd51c7e52 -2016,Entre Rios,II.1.1,100.77971593199999,TJ,CH4,3.9,kg/TJ,393.04089213479995,Gas Oil combustion consumption by public passenger transport,AR-E,SESCO,annual,kg,5cf27d6f-3b14-39bb-92e3-88cc13d3c6b6 -2016,Entre Rios,II.1.1,100.77971593199999,TJ,N2O,3.9,kg/TJ,393.04089213479995,Gas Oil combustion consumption by public passenger transport,AR-E,SESCO,annual,kg,5cf27d6f-3b14-39bb-92e3-88cc13d3c6b6 -2016,Jujuy,II.1.1,100.180611552,TJ,CO2,74100.0,kg/TJ,7423383.316003201,Gas Oil combustion consumption by public passenger transport,AR-Y,SESCO,annual,kg,870b7e85-bd97-3f95-bcef-dee3765582a0 -2016,Jujuy,II.1.1,100.180611552,TJ,CH4,3.9,kg/TJ,390.7043850528,Gas Oil combustion consumption by public passenger transport,AR-Y,SESCO,annual,kg,50af2f4b-4831-31bb-a99f-32478d9f8954 -2016,Jujuy,II.1.1,100.180611552,TJ,N2O,3.9,kg/TJ,390.7043850528,Gas Oil combustion consumption by public passenger transport,AR-Y,SESCO,annual,kg,50af2f4b-4831-31bb-a99f-32478d9f8954 -2016,Salta,II.1.1,88.80195911999999,TJ,CO2,74100.0,kg/TJ,6580225.170791999,Gas Oil combustion consumption by public passenger transport,AR-A,SESCO,annual,kg,1cba7c20-1a56-3793-b7ed-8b5c571e3c70 -2016,Salta,II.1.1,88.80195911999999,TJ,CH4,3.9,kg/TJ,346.32764056799994,Gas Oil combustion consumption by public passenger transport,AR-A,SESCO,annual,kg,b77065bc-09d4-3482-90bb-168bb0acc468 -2016,Salta,II.1.1,88.80195911999999,TJ,N2O,3.9,kg/TJ,346.32764056799994,Gas Oil combustion consumption by public passenger transport,AR-A,SESCO,annual,kg,b77065bc-09d4-3482-90bb-168bb0acc468 -2016,Santa Fe,II.1.1,294.05968166400004,TJ,CO2,74100.0,kg/TJ,21789822.411302403,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,809f340b-69a1-3331-bf96-becc0557bebf -2016,Santa Fe,II.1.1,294.05968166400004,TJ,CH4,3.9,kg/TJ,1146.8327584896,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,320eb45a-d1e0-3c91-8f7a-d4ebba73c807 -2016,Santa Fe,II.1.1,294.05968166400004,TJ,N2O,3.9,kg/TJ,1146.8327584896,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,320eb45a-d1e0-3c91-8f7a-d4ebba73c807 -2016,Santiago del Estero,II.1.1,122.61948610799999,TJ,CO2,74100.0,kg/TJ,9086103.920602798,Gas Oil combustion consumption by public passenger transport,AR-G,SESCO,annual,kg,1c1b8a40-8ca1-3c1a-b44e-594c33204002 -2016,Santiago del Estero,II.1.1,122.61948610799999,TJ,CH4,3.9,kg/TJ,478.21599582119995,Gas Oil combustion consumption by public passenger transport,AR-G,SESCO,annual,kg,ff49c440-023d-3a31-9d6e-599b25eae28c -2016,Santiago del Estero,II.1.1,122.61948610799999,TJ,N2O,3.9,kg/TJ,478.21599582119995,Gas Oil combustion consumption by public passenger transport,AR-G,SESCO,annual,kg,ff49c440-023d-3a31-9d6e-599b25eae28c -2016,Tucuman,II.1.1,30.535208675999996,TJ,CO2,74100.0,kg/TJ,2262658.9628915996,Gas Oil combustion consumption by public passenger transport,AR-T,SESCO,annual,kg,2628b80f-1f37-3ffe-bf08-c36889f3d893 -2016,Tucuman,II.1.1,30.535208675999996,TJ,CH4,3.9,kg/TJ,119.08731383639999,Gas Oil combustion consumption by public passenger transport,AR-T,SESCO,annual,kg,12ec6c26-c007-3c62-9c67-8adcff977942 -2016,Tucuman,II.1.1,30.535208675999996,TJ,N2O,3.9,kg/TJ,119.08731383639999,Gas Oil combustion consumption by public passenger transport,AR-T,SESCO,annual,kg,12ec6c26-c007-3c62-9c67-8adcff977942 -2016,Corrientes,II.1.1,1.0413034799999998,TJ,CO2,74100.0,kg/TJ,77160.58786799999,Gas Oil combustion consumption by public passenger transport,AR-W,SESCO,annual,kg,b8c7885a-54e6-3e94-b685-58c925886102 -2016,Corrientes,II.1.1,1.0413034799999998,TJ,CH4,3.9,kg/TJ,4.061083571999999,Gas Oil combustion consumption by public passenger transport,AR-W,SESCO,annual,kg,481cd7c2-835d-3129-8fae-de771d2f930d -2016,Corrientes,II.1.1,1.0413034799999998,TJ,N2O,3.9,kg/TJ,4.061083571999999,Gas Oil combustion consumption by public passenger transport,AR-W,SESCO,annual,kg,481cd7c2-835d-3129-8fae-de771d2f930d -2016,Entre Rios,II.1.1,0.683133948,TJ,CO2,74100.0,kg/TJ,50620.2255468,Gas Oil combustion consumption by public passenger transport,AR-E,SESCO,annual,kg,2f063fd7-1414-3a50-b5a9-c64da6992781 -2016,Entre Rios,II.1.1,0.683133948,TJ,CH4,3.9,kg/TJ,2.6642223972,Gas Oil combustion consumption by public passenger transport,AR-E,SESCO,annual,kg,e785bb21-e581-3dc3-9cbe-bdd3e83b03e5 -2016,Entre Rios,II.1.1,0.683133948,TJ,N2O,3.9,kg/TJ,2.6642223972,Gas Oil combustion consumption by public passenger transport,AR-E,SESCO,annual,kg,e785bb21-e581-3dc3-9cbe-bdd3e83b03e5 -2016,Santiago del Estero,II.1.1,0.39358519200000003,TJ,CO2,74100.0,kg/TJ,29164.6627272,Gas Oil combustion consumption by public passenger transport,AR-G,SESCO,annual,kg,e3406e1f-352c-39ab-b894-faf11c8e8c11 -2016,Santiago del Estero,II.1.1,0.39358519200000003,TJ,CH4,3.9,kg/TJ,1.5349822488,Gas Oil combustion consumption by public passenger transport,AR-G,SESCO,annual,kg,5b674226-94cd-3b6e-8eed-c73ee98a7c42 -2016,Santiago del Estero,II.1.1,0.39358519200000003,TJ,N2O,3.9,kg/TJ,1.5349822488,Gas Oil combustion consumption by public passenger transport,AR-G,SESCO,annual,kg,5b674226-94cd-3b6e-8eed-c73ee98a7c42 -2016,Tucuman,II.1.1,0.17946222,TJ,CO2,74100.0,kg/TJ,13298.150502,Gas Oil combustion consumption by public passenger transport,AR-T,SESCO,annual,kg,1566a5c2-dd05-3d6a-99b4-3d23573077c2 -2016,Tucuman,II.1.1,0.17946222,TJ,CH4,3.9,kg/TJ,0.699902658,Gas Oil combustion consumption by public passenger transport,AR-T,SESCO,annual,kg,44606b69-94c7-3f01-82eb-a40633c1a12e -2016,Tucuman,II.1.1,0.17946222,TJ,N2O,3.9,kg/TJ,0.699902658,Gas Oil combustion consumption by public passenger transport,AR-T,SESCO,annual,kg,44606b69-94c7-3f01-82eb-a40633c1a12e -2016,Buenos Aires,II.5.1,548.362180464,TJ,CO2,74100.0,kg/TJ,40633637.5723824,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,f9fc498f-d1c4-337a-a316-a463e2f60000 -2016,Buenos Aires,II.5.1,548.362180464,TJ,CH4,3.9,kg/TJ,2138.6125038095997,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,ab11570d-17d1-3e27-b287-a0235532ba57 -2016,Buenos Aires,II.5.1,548.362180464,TJ,N2O,3.9,kg/TJ,2138.6125038095997,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,ab11570d-17d1-3e27-b287-a0235532ba57 -2016,Córdoba,II.5.1,63.654015936,TJ,CO2,74100.0,kg/TJ,4716762.5808576,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,5c6b4d18-bb06-3e57-bc80-7cf5dd92b00a -2016,Córdoba,II.5.1,63.654015936,TJ,CH4,3.9,kg/TJ,248.2506621504,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,e908d56e-185b-3391-b199-0f04f82a2654 -2016,Córdoba,II.5.1,63.654015936,TJ,N2O,3.9,kg/TJ,248.2506621504,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,e908d56e-185b-3391-b199-0f04f82a2654 -2016,La Pampa,II.5.1,54.173281679999995,TJ,CO2,74100.0,kg/TJ,4014240.172488,Gas Oil combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,88388a56-9522-37d0-a00d-48abf8d28f42 -2016,La Pampa,II.5.1,54.173281679999995,TJ,CH4,3.9,kg/TJ,211.27579855199997,Gas Oil combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,91db3dae-cf8a-3764-9b02-617b59a7c45d -2016,La Pampa,II.5.1,54.173281679999995,TJ,N2O,3.9,kg/TJ,211.27579855199997,Gas Oil combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,91db3dae-cf8a-3764-9b02-617b59a7c45d -2016,Neuquén,II.5.1,12.764432351999998,TJ,CO2,74100.0,kg/TJ,945844.4372831999,Gas Oil combustion consumption by agriculture machines,AR-Q,SESCO,annual,kg,3a27689a-0e75-3e7d-9770-c19aa3701907 -2016,Neuquén,II.5.1,12.764432351999998,TJ,CH4,3.9,kg/TJ,49.781286172799994,Gas Oil combustion consumption by agriculture machines,AR-Q,SESCO,annual,kg,c4709580-44a2-337f-be4f-1771e21d2549 -2016,Neuquén,II.5.1,12.764432351999998,TJ,N2O,3.9,kg/TJ,49.781286172799994,Gas Oil combustion consumption by agriculture machines,AR-Q,SESCO,annual,kg,c4709580-44a2-337f-be4f-1771e21d2549 -2016,Rio Negro,II.5.1,5.8418537520000005,TJ,CO2,74100.0,kg/TJ,432881.3630232,Gas Oil combustion consumption by agriculture machines,AR-R,SESCO,annual,kg,41e66b6a-ff93-3100-bc20-cae5bf849bff -2016,Rio Negro,II.5.1,5.8418537520000005,TJ,CH4,3.9,kg/TJ,22.7832296328,Gas Oil combustion consumption by agriculture machines,AR-R,SESCO,annual,kg,fad35aef-6d95-3854-94a0-22d333f3ca83 -2016,Rio Negro,II.5.1,5.8418537520000005,TJ,N2O,3.9,kg/TJ,22.7832296328,Gas Oil combustion consumption by agriculture machines,AR-R,SESCO,annual,kg,fad35aef-6d95-3854-94a0-22d333f3ca83 -2016,Buenos Aires,II.5.1,7.443793703499998,TJ,CO2,73300.0,kg/TJ,545630.0784665499,Naphtha combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,f4e9b098-33bc-3a7e-ae31-65f8d0309e12 -2016,Buenos Aires,II.5.1,7.443793703499998,TJ,CH4,0.5,kg/TJ,3.721896851749999,Naphtha combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,65564a2a-e21e-317f-8bc4-5cebed8ef49e -2016,Buenos Aires,II.5.1,7.443793703499998,TJ,N2O,2.0,kg/TJ,14.887587406999996,Naphtha combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,8c69fe0c-c27b-378b-9d8e-6a31de6fbf39 -2016,Rio Negro,II.5.1,2.14341281,TJ,CO2,73300.0,kg/TJ,157112.158973,Naphtha combustion consumption by agriculture machines,AR-R,SESCO,annual,kg,47feaf31-534a-3158-aa46-ea285fce4100 -2016,Rio Negro,II.5.1,2.14341281,TJ,CH4,0.5,kg/TJ,1.071706405,Naphtha combustion consumption by agriculture machines,AR-R,SESCO,annual,kg,fb79991e-afa5-3f77-862e-eab75db3351d -2016,Rio Negro,II.5.1,2.14341281,TJ,N2O,2.0,kg/TJ,4.28682562,Naphtha combustion consumption by agriculture machines,AR-R,SESCO,annual,kg,e4766e50-c1f3-3e70-92e0-b5e294044c49 -2016,Buenos Aires,II.2.1,3.83435472,TJ,CO2,74100.0,kg/TJ,284125.684752,Gas Oil combustion consumption by railway transport,AR-B,SESCO,annual,kg,340d5cb4-6143-34d9-bfd8-e7b5473e588e -2016,Buenos Aires,II.2.1,3.83435472,TJ,CH4,3.9,kg/TJ,14.953983408,Gas Oil combustion consumption by railway transport,AR-B,SESCO,annual,kg,bcf7ca08-5007-3bec-a259-10b50cf6f3d6 -2016,Buenos Aires,II.2.1,3.83435472,TJ,N2O,3.9,kg/TJ,14.953983408,Gas Oil combustion consumption by railway transport,AR-B,SESCO,annual,kg,bcf7ca08-5007-3bec-a259-10b50cf6f3d6 -2016,Buenos Aires,II.1.1,1.0379489999999998,TJ,CO2,69300.0,kg/TJ,71929.86569999998,Motor Gasoline combustion consumption by freight transport,AR-B,SESCO,annual,kg,329d23ac-f931-391b-99dc-209febb727f4 -2016,Buenos Aires,II.1.1,1.0379489999999998,TJ,CH4,33.0,kg/TJ,34.25231699999999,Motor Gasoline combustion consumption by freight transport,AR-B,SESCO,annual,kg,9ed95ab8-828f-354a-885f-2beb75ea3f2d -2016,Buenos Aires,II.1.1,1.0379489999999998,TJ,N2O,3.2,kg/TJ,3.3214367999999994,Motor Gasoline combustion consumption by freight transport,AR-B,SESCO,annual,kg,766addd2-fcb2-3b29-a481-cda175ea3cc5 -2016,Buenos Aires,II.1.1,210.976786356,TJ,CO2,74100.0,kg/TJ,15633379.8689796,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,52236d0b-537b-3590-bccb-fa2fc7cdfc92 -2016,Buenos Aires,II.1.1,210.976786356,TJ,CH4,3.9,kg/TJ,822.8094667884,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,0eeff11e-4e56-3134-94b6-a877d592c0b6 -2016,Buenos Aires,II.1.1,210.976786356,TJ,N2O,3.9,kg/TJ,822.8094667884,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,0eeff11e-4e56-3134-94b6-a877d592c0b6 -2016,Chubut,II.1.1,4.596587856,TJ,CO2,74100.0,kg/TJ,340607.16012960003,Gas Oil combustion consumption by freight transport,AR-U,SESCO,annual,kg,51600aea-e807-30ec-b80c-2b276ae805ef -2016,Chubut,II.1.1,4.596587856,TJ,CH4,3.9,kg/TJ,17.9266926384,Gas Oil combustion consumption by freight transport,AR-U,SESCO,annual,kg,7ba67a2a-4497-3e06-865c-322ded752716 -2016,Chubut,II.1.1,4.596587856,TJ,N2O,3.9,kg/TJ,17.9266926384,Gas Oil combustion consumption by freight transport,AR-U,SESCO,annual,kg,7ba67a2a-4497-3e06-865c-322ded752716 -2016,San Luis,II.1.1,47.061412608,TJ,CO2,74100.0,kg/TJ,3487250.6742527997,Gas Oil combustion consumption by freight transport,AR-D,SESCO,annual,kg,4ea3ec45-53d4-344f-bcd9-e790db63869e -2016,San Luis,II.1.1,47.061412608,TJ,CH4,3.9,kg/TJ,183.5395091712,Gas Oil combustion consumption by freight transport,AR-D,SESCO,annual,kg,0f870ec8-93aa-36a6-b18a-c67ab11177b5 -2016,San Luis,II.1.1,47.061412608,TJ,N2O,3.9,kg/TJ,183.5395091712,Gas Oil combustion consumption by freight transport,AR-D,SESCO,annual,kg,0f870ec8-93aa-36a6-b18a-c67ab11177b5 -2016,Buenos Aires,II.1.1,2.6258878799999996,TJ,CO2,74100.0,kg/TJ,194578.29190799998,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,09ad1a83-2932-30c1-a9cd-9d70e3598d78 -2016,Buenos Aires,II.1.1,2.6258878799999996,TJ,CH4,3.9,kg/TJ,10.240962731999998,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,9bc2f9da-a4fe-30d0-9c92-1cca15b6e57b -2016,Buenos Aires,II.1.1,2.6258878799999996,TJ,N2O,3.9,kg/TJ,10.240962731999998,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,9bc2f9da-a4fe-30d0-9c92-1cca15b6e57b -2016,Buenos Aires,II.1.1,459.017821752,TJ,CO2,74100.0,kg/TJ,34013220.5918232,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,5f89c6f4-442d-3aa4-a98b-1fab7d87a8a0 -2016,Buenos Aires,II.1.1,459.017821752,TJ,CH4,3.9,kg/TJ,1790.1695048328,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,8370355b-497a-3f58-a2ba-3863fa9a9912 -2016,Buenos Aires,II.1.1,459.017821752,TJ,N2O,3.9,kg/TJ,1790.1695048328,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,8370355b-497a-3f58-a2ba-3863fa9a9912 -2016,Capital Federal,II.1.1,63.907018476,TJ,CO2,74100.0,kg/TJ,4735510.0690716,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,4864499c-b26a-3dd5-9205-499ff6e0fad6 -2016,Capital Federal,II.1.1,63.907018476,TJ,CH4,3.9,kg/TJ,249.23737205639998,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,f3dc32fa-ef6c-3f8a-980a-026e33e81b1a -2016,Capital Federal,II.1.1,63.907018476,TJ,N2O,3.9,kg/TJ,249.23737205639998,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,f3dc32fa-ef6c-3f8a-980a-026e33e81b1a -2016,Chubut,II.1.1,36.607612775999996,TJ,CO2,74100.0,kg/TJ,2712624.1067016,Gas Oil combustion consumption by public passenger transport,AR-U,SESCO,annual,kg,bb0b6a9c-8e69-3738-8318-5bb33d85f7cd -2016,Chubut,II.1.1,36.607612775999996,TJ,CH4,3.9,kg/TJ,142.76968982639997,Gas Oil combustion consumption by public passenger transport,AR-U,SESCO,annual,kg,eeb145ee-89dc-3c08-88c4-f714571925a8 -2016,Chubut,II.1.1,36.607612775999996,TJ,N2O,3.9,kg/TJ,142.76968982639997,Gas Oil combustion consumption by public passenger transport,AR-U,SESCO,annual,kg,eeb145ee-89dc-3c08-88c4-f714571925a8 -2016,Córdoba,II.1.1,253.71222576,TJ,CO2,74100.0,kg/TJ,18800075.928815998,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,578f069d-524b-32a6-a3c0-c0a61a4e5bb8 -2016,Córdoba,II.1.1,253.71222576,TJ,CH4,3.9,kg/TJ,989.477680464,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,39cc4eed-85fc-3624-8864-06a397d612dc -2016,Córdoba,II.1.1,253.71222576,TJ,N2O,3.9,kg/TJ,989.477680464,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,39cc4eed-85fc-3624-8864-06a397d612dc -2016,Neuquén,II.1.1,27.404807472,TJ,CO2,74100.0,kg/TJ,2030696.2336752,Gas Oil combustion consumption by public passenger transport,AR-Q,SESCO,annual,kg,9f0640c4-273b-3340-94fc-a53503af9075 -2016,Neuquén,II.1.1,27.404807472,TJ,CH4,3.9,kg/TJ,106.87874914080001,Gas Oil combustion consumption by public passenger transport,AR-Q,SESCO,annual,kg,2ae603bf-6524-3e2c-9576-73e64aa388fb -2016,Neuquén,II.1.1,27.404807472,TJ,N2O,3.9,kg/TJ,106.87874914080001,Gas Oil combustion consumption by public passenger transport,AR-Q,SESCO,annual,kg,2ae603bf-6524-3e2c-9576-73e64aa388fb -2016,Rio Negro,II.1.1,145.919786544,TJ,CO2,74100.0,kg/TJ,10812656.1829104,Gas Oil combustion consumption by public passenger transport,AR-R,SESCO,annual,kg,e3f67733-c89d-3db3-aa16-00ca066bec86 -2016,Rio Negro,II.1.1,145.919786544,TJ,CH4,3.9,kg/TJ,569.0871675216,Gas Oil combustion consumption by public passenger transport,AR-R,SESCO,annual,kg,04ad23bb-8a4a-3b24-810b-750183f6ba91 -2016,Rio Negro,II.1.1,145.919786544,TJ,N2O,3.9,kg/TJ,569.0871675216,Gas Oil combustion consumption by public passenger transport,AR-R,SESCO,annual,kg,04ad23bb-8a4a-3b24-810b-750183f6ba91 -2016,Santa Cruz,II.1.1,0.18208092,TJ,CO2,74100.0,kg/TJ,13492.196172,Gas Oil combustion consumption by public passenger transport,AR-Z,SESCO,annual,kg,d85f3c33-1db0-307b-935d-ebd1b1af5e9d -2016,Santa Cruz,II.1.1,0.18208092,TJ,CH4,3.9,kg/TJ,0.710115588,Gas Oil combustion consumption by public passenger transport,AR-Z,SESCO,annual,kg,94e321c3-aa95-349a-bf87-90ef60937732 -2016,Santa Cruz,II.1.1,0.18208092,TJ,N2O,3.9,kg/TJ,0.710115588,Gas Oil combustion consumption by public passenger transport,AR-Z,SESCO,annual,kg,94e321c3-aa95-349a-bf87-90ef60937732 -2016,Santa Fe,II.1.1,7.766497116,TJ,CO2,74100.0,kg/TJ,575497.4362956,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,49c184eb-07af-3c8e-a4d1-1fa533bb1212 -2016,Santa Fe,II.1.1,7.766497116,TJ,CH4,3.9,kg/TJ,30.2893387524,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,e66c7c44-0ba6-30ce-82e1-86f5ccf7a551 -2016,Santa Fe,II.1.1,7.766497116,TJ,N2O,3.9,kg/TJ,30.2893387524,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,e66c7c44-0ba6-30ce-82e1-86f5ccf7a551 -2016,Buenos Aires,II.1.1,0.21455280000000002,TJ,CO2,74100.0,kg/TJ,15898.362480000002,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,f5188691-b3fc-3466-b047-f40a8803e9d1 -2016,Buenos Aires,II.1.1,0.21455280000000002,TJ,CH4,3.9,kg/TJ,0.8367559200000001,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,9726120a-492f-3378-83c3-bd418b0481f5 -2016,Buenos Aires,II.1.1,0.21455280000000002,TJ,N2O,3.9,kg/TJ,0.8367559200000001,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,9726120a-492f-3378-83c3-bd418b0481f5 -2016,Buenos Aires,II.5.1,389.80704,TJ,CO2,74100.0,kg/TJ,28884701.663999997,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,4d1d0ac8-c31c-3910-b849-c8f1495253d6 -2016,Buenos Aires,II.5.1,389.80704,TJ,CH4,3.9,kg/TJ,1520.2474559999998,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,eb2f80ff-759b-36e5-a515-316c8d413e1d -2016,Buenos Aires,II.5.1,389.80704,TJ,N2O,3.9,kg/TJ,1520.2474559999998,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,eb2f80ff-759b-36e5-a515-316c8d413e1d -2016,Capital Federal,II.5.1,19.866,TJ,CO2,74100.0,kg/TJ,1472070.5999999999,Gas Oil combustion consumption by agriculture machines,AR-C,SESCO,annual,kg,caa95192-8e79-32e8-9472-0dc0f46fd7e5 -2016,Capital Federal,II.5.1,19.866,TJ,CH4,3.9,kg/TJ,77.4774,Gas Oil combustion consumption by agriculture machines,AR-C,SESCO,annual,kg,5f310f78-bc1e-39a1-b06f-bd00f46ede7b -2016,Capital Federal,II.5.1,19.866,TJ,N2O,3.9,kg/TJ,77.4774,Gas Oil combustion consumption by agriculture machines,AR-C,SESCO,annual,kg,5f310f78-bc1e-39a1-b06f-bd00f46ede7b -2016,Córdoba,II.5.1,187.17383999999998,TJ,CO2,74100.0,kg/TJ,13869581.544,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,3a6117d0-3c20-3e40-8a22-b7ffb99331bb -2016,Córdoba,II.5.1,187.17383999999998,TJ,CH4,3.9,kg/TJ,729.9779759999999,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,3e63aa53-22cc-3f0f-a6f1-252f5ebdfbb4 -2016,Córdoba,II.5.1,187.17383999999998,TJ,N2O,3.9,kg/TJ,729.9779759999999,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,3e63aa53-22cc-3f0f-a6f1-252f5ebdfbb4 -2016,Entre Rios,II.5.1,25.24788,TJ,CO2,74100.0,kg/TJ,1870867.9079999998,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,3e693ace-fce1-399f-8223-e8be464f3312 -2016,Entre Rios,II.5.1,25.24788,TJ,CH4,3.9,kg/TJ,98.466732,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,3b9953a5-bcf1-3d67-af77-b90cdd225285 -2016,Entre Rios,II.5.1,25.24788,TJ,N2O,3.9,kg/TJ,98.466732,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,3b9953a5-bcf1-3d67-af77-b90cdd225285 -2016,Santa Fe,II.5.1,47.24496,TJ,CO2,74100.0,kg/TJ,3500851.536,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,0d3a0a29-a94f-3c24-900a-014bb29803f3 -2016,Santa Fe,II.5.1,47.24496,TJ,CH4,3.9,kg/TJ,184.25534399999998,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,e87534dc-50c1-39a1-afff-cb3d22ab177b -2016,Santa Fe,II.5.1,47.24496,TJ,N2O,3.9,kg/TJ,184.25534399999998,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,e87534dc-50c1-39a1-afff-cb3d22ab177b -2016,Buenos Aires,II.5.1,7.5851999999999995,TJ,CO2,74100.0,kg/TJ,562063.32,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,c9a72fd5-6cba-3bf7-8c95-a73810113fc7 -2016,Buenos Aires,II.5.1,7.5851999999999995,TJ,CH4,3.9,kg/TJ,29.582279999999997,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,acb8f5e5-53a0-3419-b10b-656ae7c8fcef -2016,Buenos Aires,II.5.1,7.5851999999999995,TJ,N2O,3.9,kg/TJ,29.582279999999997,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,acb8f5e5-53a0-3419-b10b-656ae7c8fcef -2016,Córdoba,II.5.1,1.3364399999999999,TJ,CO2,74100.0,kg/TJ,99030.20399999998,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,0ee42921-43f5-3810-8249-59bfd8fceb55 -2016,Córdoba,II.5.1,1.3364399999999999,TJ,CH4,3.9,kg/TJ,5.212115999999999,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,97a695ab-b3e9-37bb-8885-839e77691249 -2016,Córdoba,II.5.1,1.3364399999999999,TJ,N2O,3.9,kg/TJ,5.212115999999999,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,97a695ab-b3e9-37bb-8885-839e77691249 -2016,Entre Rios,II.5.1,8.23536,TJ,CO2,74100.0,kg/TJ,610240.176,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,a60b6e08-8712-37f5-ae54-a9c0f937481f -2016,Entre Rios,II.5.1,8.23536,TJ,CH4,3.9,kg/TJ,32.117903999999996,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,dc09d4ab-ea70-3ee7-8afa-490602ea27ad -2016,Entre Rios,II.5.1,8.23536,TJ,N2O,3.9,kg/TJ,32.117903999999996,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,dc09d4ab-ea70-3ee7-8afa-490602ea27ad -2016,Buenos Aires,II.2.1,286.251,TJ,CO2,74100.0,kg/TJ,21211199.099999998,Gas Oil combustion consumption by railway transport,AR-B,SESCO,annual,kg,c4e403a9-6c29-3b1c-91a5-5d907918eadc -2016,Buenos Aires,II.2.1,286.251,TJ,CH4,3.9,kg/TJ,1116.3789,Gas Oil combustion consumption by railway transport,AR-B,SESCO,annual,kg,3c5ee5ad-79fb-3e34-9a26-9fa274b5c312 -2016,Buenos Aires,II.2.1,286.251,TJ,N2O,3.9,kg/TJ,1116.3789,Gas Oil combustion consumption by railway transport,AR-B,SESCO,annual,kg,3c5ee5ad-79fb-3e34-9a26-9fa274b5c312 -2016,Capital Federal,II.2.1,63.209999999999994,TJ,CO2,74100.0,kg/TJ,4683861.0,Gas Oil combustion consumption by railway transport,AR-C,SESCO,annual,kg,fdc01a05-a633-339e-8046-b6fe7a10f0e3 -2016,Capital Federal,II.2.1,63.209999999999994,TJ,CH4,3.9,kg/TJ,246.51899999999998,Gas Oil combustion consumption by railway transport,AR-C,SESCO,annual,kg,c9683500-d38c-39dd-b782-1e9f72ce0e25 -2016,Capital Federal,II.2.1,63.209999999999994,TJ,N2O,3.9,kg/TJ,246.51899999999998,Gas Oil combustion consumption by railway transport,AR-C,SESCO,annual,kg,c9683500-d38c-39dd-b782-1e9f72ce0e25 -2016,Santa Fe,II.2.1,78.34428,TJ,CO2,74100.0,kg/TJ,5805311.148,Gas Oil combustion consumption by railway transport,AR-S,SESCO,annual,kg,b7649460-8240-3f4f-8c76-2dd775b7b608 -2016,Santa Fe,II.2.1,78.34428,TJ,CH4,3.9,kg/TJ,305.542692,Gas Oil combustion consumption by railway transport,AR-S,SESCO,annual,kg,567f48fd-caeb-3a70-96bd-a10e19823008 -2016,Santa Fe,II.2.1,78.34428,TJ,N2O,3.9,kg/TJ,305.542692,Gas Oil combustion consumption by railway transport,AR-S,SESCO,annual,kg,567f48fd-caeb-3a70-96bd-a10e19823008 -2016,Capital Federal,II.1.1,10.189,TJ,CO2,69300.0,kg/TJ,706097.7,Motor Gasoline combustion consumption by freight transport,AR-C,SESCO,annual,kg,0be12027-5646-345d-9809-97282a594414 -2016,Capital Federal,II.1.1,10.189,TJ,CH4,33.0,kg/TJ,336.237,Motor Gasoline combustion consumption by freight transport,AR-C,SESCO,annual,kg,46040588-7cf8-3040-91c7-1675784fa318 -2016,Capital Federal,II.1.1,10.189,TJ,N2O,3.2,kg/TJ,32.604800000000004,Motor Gasoline combustion consumption by freight transport,AR-C,SESCO,annual,kg,6d134e5a-0832-3410-8b19-f359de99d380 -2016,Buenos Aires,II.1.1,216.32268,TJ,CO2,74100.0,kg/TJ,16029510.588,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,1fc0784d-5da5-39d4-86fe-23904a1671a2 -2016,Buenos Aires,II.1.1,216.32268,TJ,CH4,3.9,kg/TJ,843.6584519999999,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,c4475c1e-c3d5-3d43-9808-908b28dde5ee -2016,Buenos Aires,II.1.1,216.32268,TJ,N2O,3.9,kg/TJ,843.6584519999999,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,c4475c1e-c3d5-3d43-9808-908b28dde5ee -2016,Capital Federal,II.1.1,114.10307999999999,TJ,CO2,74100.0,kg/TJ,8455038.228,Gas Oil combustion consumption by freight transport,AR-C,SESCO,annual,kg,2994dd9f-25d1-38be-97be-6c832b3ae0bd -2016,Capital Federal,II.1.1,114.10307999999999,TJ,CH4,3.9,kg/TJ,445.002012,Gas Oil combustion consumption by freight transport,AR-C,SESCO,annual,kg,133951bc-29ac-3bf2-912a-db91b3512e33 -2016,Capital Federal,II.1.1,114.10307999999999,TJ,N2O,3.9,kg/TJ,445.002012,Gas Oil combustion consumption by freight transport,AR-C,SESCO,annual,kg,133951bc-29ac-3bf2-912a-db91b3512e33 -2016,Córdoba,II.1.1,99.07715999999999,TJ,CO2,74100.0,kg/TJ,7341617.556,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,d4ec4b57-57f6-3d8e-8ac1-e5a0d9278e49 -2016,Córdoba,II.1.1,99.07715999999999,TJ,CH4,3.9,kg/TJ,386.400924,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,6493073f-916c-3312-af38-a3aef2284e2e -2016,Córdoba,II.1.1,99.07715999999999,TJ,N2O,3.9,kg/TJ,386.400924,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,6493073f-916c-3312-af38-a3aef2284e2e -2016,Buenos Aires,II.1.1,23.33352,TJ,CO2,74100.0,kg/TJ,1729013.832,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,6cb81566-6129-36ae-a65e-5feee7d02437 -2016,Buenos Aires,II.1.1,23.33352,TJ,CH4,3.9,kg/TJ,91.000728,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,d16ad73a-d57c-3a37-ac91-3676204d2f89 -2016,Buenos Aires,II.1.1,23.33352,TJ,N2O,3.9,kg/TJ,91.000728,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,d16ad73a-d57c-3a37-ac91-3676204d2f89 -2016,Córdoba,II.1.1,0.97524,TJ,CO2,74100.0,kg/TJ,72265.284,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,a53e937c-d3c9-3f1b-9015-eeaf84540e7e -2016,Córdoba,II.1.1,0.97524,TJ,CH4,3.9,kg/TJ,3.803436,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,55880b0e-98a4-3a9f-9763-0855eaed1431 -2016,Córdoba,II.1.1,0.97524,TJ,N2O,3.9,kg/TJ,3.803436,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,55880b0e-98a4-3a9f-9763-0855eaed1431 -2016,Buenos Aires,II.1.1,6382.295639999999,TJ,CO2,74100.0,kg/TJ,472928106.92399997,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,a9dc0175-cbf3-32a7-9b3f-489671205f6c -2016,Buenos Aires,II.1.1,6382.295639999999,TJ,CH4,3.9,kg/TJ,24890.952995999996,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,74101952-3ccb-38ef-b47f-b6e245e07be8 -2016,Buenos Aires,II.1.1,6382.295639999999,TJ,N2O,3.9,kg/TJ,24890.952995999996,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,74101952-3ccb-38ef-b47f-b6e245e07be8 -2016,Capital Federal,II.1.1,112.54992,TJ,CO2,74100.0,kg/TJ,8339949.072,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,094b6da0-8eb9-36b8-841a-a26e335ee69e -2016,Capital Federal,II.1.1,112.54992,TJ,CH4,3.9,kg/TJ,438.944688,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,4e9362d3-4dc9-3afb-868e-af3647833be1 -2016,Capital Federal,II.1.1,112.54992,TJ,N2O,3.9,kg/TJ,438.944688,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,4e9362d3-4dc9-3afb-868e-af3647833be1 -2016,Misiones,II.1.1,66.78587999999999,TJ,CO2,74100.0,kg/TJ,4948833.708,Gas Oil combustion consumption by public passenger transport,AR-N,SESCO,annual,kg,648d5e2f-32cf-3905-9136-e89c76655f6c -2016,Misiones,II.1.1,66.78587999999999,TJ,CH4,3.9,kg/TJ,260.464932,Gas Oil combustion consumption by public passenger transport,AR-N,SESCO,annual,kg,411533d3-2635-3dad-8267-5ab7b5c0e862 -2016,Misiones,II.1.1,66.78587999999999,TJ,N2O,3.9,kg/TJ,260.464932,Gas Oil combustion consumption by public passenger transport,AR-N,SESCO,annual,kg,411533d3-2635-3dad-8267-5ab7b5c0e862 -2016,Buenos Aires,II.1.1,30.340799999999998,TJ,CO2,74100.0,kg/TJ,2248253.28,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,c0a2eef3-d73b-3d84-8bdc-d0ed4de8fac7 -2016,Buenos Aires,II.1.1,30.340799999999998,TJ,CH4,3.9,kg/TJ,118.32911999999999,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,2a25ba4c-74a4-352a-8e39-d25e29b42002 -2016,Buenos Aires,II.1.1,30.340799999999998,TJ,N2O,3.9,kg/TJ,118.32911999999999,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,2a25ba4c-74a4-352a-8e39-d25e29b42002 -2016,Buenos Aires,II.5.1,7.442399999999998,TJ,CO2,69300.0,kg/TJ,515758.3199999999,Motor Gasoline combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,4063e928-15ed-3ad8-a51d-f8229af499e5 -2016,Buenos Aires,II.5.1,7.442399999999998,TJ,CH4,33.0,kg/TJ,245.59919999999994,Motor Gasoline combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,62e8f45d-5bbf-3675-9892-7134f7294b41 -2016,Buenos Aires,II.5.1,7.442399999999998,TJ,N2O,3.2,kg/TJ,23.815679999999997,Motor Gasoline combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,ba40a86b-066c-3b22-a56d-19d27e968187 -2016,Jujuy,II.5.1,4.6514999999999995,TJ,CO2,69300.0,kg/TJ,322348.94999999995,Motor Gasoline combustion consumption by agriculture machines,AR-Y,SESCO,annual,kg,e451a04a-b4cc-384e-85b9-653ab9c7d599 -2016,Jujuy,II.5.1,4.6514999999999995,TJ,CH4,33.0,kg/TJ,153.49949999999998,Motor Gasoline combustion consumption by agriculture machines,AR-Y,SESCO,annual,kg,cd639f78-a688-3dd8-8164-f2f7bb3e3f9b -2016,Jujuy,II.5.1,4.6514999999999995,TJ,N2O,3.2,kg/TJ,14.884799999999998,Motor Gasoline combustion consumption by agriculture machines,AR-Y,SESCO,annual,kg,a4de63c6-7d19-3555-9ea9-a88c290485b4 -2016,Salta,II.5.1,3.4997,TJ,CO2,69300.0,kg/TJ,242529.21,Motor Gasoline combustion consumption by agriculture machines,AR-A,SESCO,annual,kg,9e61a047-e8ee-3bef-8309-affa0b8ec468 -2016,Salta,II.5.1,3.4997,TJ,CH4,33.0,kg/TJ,115.4901,Motor Gasoline combustion consumption by agriculture machines,AR-A,SESCO,annual,kg,95e94e23-4bf9-3a61-8d33-841a1b4e8142 -2016,Salta,II.5.1,3.4997,TJ,N2O,3.2,kg/TJ,11.19904,Motor Gasoline combustion consumption by agriculture machines,AR-A,SESCO,annual,kg,bff36242-0f1d-3d24-8d54-a55b77b33775 -2016,Santa Fe,II.5.1,1.1961,TJ,CO2,69300.0,kg/TJ,82889.73,Motor Gasoline combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,48dec184-fff3-385a-b885-3f34eae61411 -2016,Santa Fe,II.5.1,1.1961,TJ,CH4,33.0,kg/TJ,39.4713,Motor Gasoline combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,0492c906-1745-3d37-8b94-f2b8d7426d64 -2016,Santa Fe,II.5.1,1.1961,TJ,N2O,3.2,kg/TJ,3.82752,Motor Gasoline combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,9a19e42f-2a12-397d-9da7-c1644ceea70d -2016,Buenos Aires,II.5.1,10148.52804,TJ,CO2,74100.0,kg/TJ,752005927.7639999,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,02e23d64-faa2-3037-993c-98bb1c424a4c -2016,Buenos Aires,II.5.1,10148.52804,TJ,CH4,3.9,kg/TJ,39579.259355999995,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,9788fc88-0186-3212-9586-846b73d7da1c -2016,Buenos Aires,II.5.1,10148.52804,TJ,N2O,3.9,kg/TJ,39579.259355999995,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,9788fc88-0186-3212-9586-846b73d7da1c -2016,Capital Federal,II.5.1,18.09612,TJ,CO2,74100.0,kg/TJ,1340922.4919999999,Gas Oil combustion consumption by agriculture machines,AR-C,SESCO,annual,kg,83158d79-b095-3f3a-8587-7b8e8ceac647 -2016,Capital Federal,II.5.1,18.09612,TJ,CH4,3.9,kg/TJ,70.574868,Gas Oil combustion consumption by agriculture machines,AR-C,SESCO,annual,kg,5d00577f-497d-3f5c-8751-259ef4f6e093 -2016,Capital Federal,II.5.1,18.09612,TJ,N2O,3.9,kg/TJ,70.574868,Gas Oil combustion consumption by agriculture machines,AR-C,SESCO,annual,kg,5d00577f-497d-3f5c-8751-259ef4f6e093 -2016,Catamarca,II.5.1,127.90092,TJ,CO2,74100.0,kg/TJ,9477458.172,Gas Oil combustion consumption by agriculture machines,AR-K,SESCO,annual,kg,3462e7b0-c508-340f-b9d0-05e17b306800 -2016,Catamarca,II.5.1,127.90092,TJ,CH4,3.9,kg/TJ,498.813588,Gas Oil combustion consumption by agriculture machines,AR-K,SESCO,annual,kg,79459760-12c3-360b-ba4b-a6e211be6e70 -2016,Catamarca,II.5.1,127.90092,TJ,N2O,3.9,kg/TJ,498.813588,Gas Oil combustion consumption by agriculture machines,AR-K,SESCO,annual,kg,79459760-12c3-360b-ba4b-a6e211be6e70 -2016,Chaco,II.5.1,1142.4756,TJ,CO2,74100.0,kg/TJ,84657441.96,Gas Oil combustion consumption by agriculture machines,AR-H,SESCO,annual,kg,e56c3897-d031-3678-81b7-c677948cf820 -2016,Chaco,II.5.1,1142.4756,TJ,CH4,3.9,kg/TJ,4455.65484,Gas Oil combustion consumption by agriculture machines,AR-H,SESCO,annual,kg,8d06c282-1931-35b9-b4df-34dfb5d44f12 -2016,Chaco,II.5.1,1142.4756,TJ,N2O,3.9,kg/TJ,4455.65484,Gas Oil combustion consumption by agriculture machines,AR-H,SESCO,annual,kg,8d06c282-1931-35b9-b4df-34dfb5d44f12 -2016,Chubut,II.5.1,0.10836,TJ,CO2,74100.0,kg/TJ,8029.476,Gas Oil combustion consumption by agriculture machines,AR-U,SESCO,annual,kg,00af115b-2189-3e1a-a321-6f864ba7ad1d -2016,Chubut,II.5.1,0.10836,TJ,CH4,3.9,kg/TJ,0.422604,Gas Oil combustion consumption by agriculture machines,AR-U,SESCO,annual,kg,994dbd39-79ab-37e0-9409-857e8eb366cc -2016,Chubut,II.5.1,0.10836,TJ,N2O,3.9,kg/TJ,0.422604,Gas Oil combustion consumption by agriculture machines,AR-U,SESCO,annual,kg,994dbd39-79ab-37e0-9409-857e8eb366cc -2016,Corrientes,II.5.1,257.35499999999996,TJ,CO2,74100.0,kg/TJ,19070005.499999996,Gas Oil combustion consumption by agriculture machines,AR-W,SESCO,annual,kg,5ca6b8a6-aaba-348c-9f0d-a3002d66ba95 -2016,Corrientes,II.5.1,257.35499999999996,TJ,CH4,3.9,kg/TJ,1003.6844999999998,Gas Oil combustion consumption by agriculture machines,AR-W,SESCO,annual,kg,ccf1fa54-d680-381b-ad32-4251296c3c54 -2016,Corrientes,II.5.1,257.35499999999996,TJ,N2O,3.9,kg/TJ,1003.6844999999998,Gas Oil combustion consumption by agriculture machines,AR-W,SESCO,annual,kg,ccf1fa54-d680-381b-ad32-4251296c3c54 -2016,Córdoba,II.5.1,7882.684319999999,TJ,CO2,74100.0,kg/TJ,584106908.112,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,66213f43-faee-3a44-a834-ea0b5a3eca77 -2016,Córdoba,II.5.1,7882.684319999999,TJ,CH4,3.9,kg/TJ,30742.468847999997,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,95cd41f5-e7e6-3673-8f02-2aa7a0306134 -2016,Córdoba,II.5.1,7882.684319999999,TJ,N2O,3.9,kg/TJ,30742.468847999997,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,95cd41f5-e7e6-3673-8f02-2aa7a0306134 -2016,Entre Rios,II.5.1,1997.1109199999999,TJ,CO2,74100.0,kg/TJ,147985919.172,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,93753e41-72e6-30dd-9038-bd8334a672b0 -2016,Entre Rios,II.5.1,1997.1109199999999,TJ,CH4,3.9,kg/TJ,7788.732587999999,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,16e3afb6-9aef-3254-a875-b9d6ef031a2f -2016,Entre Rios,II.5.1,1997.1109199999999,TJ,N2O,3.9,kg/TJ,7788.732587999999,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,16e3afb6-9aef-3254-a875-b9d6ef031a2f -2016,Formosa,II.5.1,258.7998,TJ,CO2,74100.0,kg/TJ,19177065.18,Gas Oil combustion consumption by agriculture machines,AR-P,SESCO,annual,kg,99f65982-17ea-32f0-9c54-872bb036b270 -2016,Formosa,II.5.1,258.7998,TJ,CH4,3.9,kg/TJ,1009.31922,Gas Oil combustion consumption by agriculture machines,AR-P,SESCO,annual,kg,9151a19a-efdb-3cb2-a609-2f78e77c04a1 -2016,Formosa,II.5.1,258.7998,TJ,N2O,3.9,kg/TJ,1009.31922,Gas Oil combustion consumption by agriculture machines,AR-P,SESCO,annual,kg,9151a19a-efdb-3cb2-a609-2f78e77c04a1 -2016,Jujuy,II.5.1,1101.51552,TJ,CO2,74100.0,kg/TJ,81622300.03199999,Gas Oil combustion consumption by agriculture machines,AR-Y,SESCO,annual,kg,5b6042b2-c8dc-355c-aaa5-56ba55c928f5 -2016,Jujuy,II.5.1,1101.51552,TJ,CH4,3.9,kg/TJ,4295.910527999999,Gas Oil combustion consumption by agriculture machines,AR-Y,SESCO,annual,kg,aea56f48-55e7-3ed4-8c47-707da1f9cd31 -2016,Jujuy,II.5.1,1101.51552,TJ,N2O,3.9,kg/TJ,4295.910527999999,Gas Oil combustion consumption by agriculture machines,AR-Y,SESCO,annual,kg,aea56f48-55e7-3ed4-8c47-707da1f9cd31 -2016,La Pampa,II.5.1,1910.82024,TJ,CO2,74100.0,kg/TJ,141591779.784,Gas Oil combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,f34baf12-515c-3832-82ea-a7786641772e -2016,La Pampa,II.5.1,1910.82024,TJ,CH4,3.9,kg/TJ,7452.198936,Gas Oil combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,9c026001-e434-3870-9be5-f1f46a41cf87 -2016,La Pampa,II.5.1,1910.82024,TJ,N2O,3.9,kg/TJ,7452.198936,Gas Oil combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,9c026001-e434-3870-9be5-f1f46a41cf87 -2016,La Rioja,II.5.1,119.5572,TJ,CO2,74100.0,kg/TJ,8859188.52,Gas Oil combustion consumption by agriculture machines,AR-F,SESCO,annual,kg,25c5716e-d1b1-3f05-9a4e-80725a213ddf -2016,La Rioja,II.5.1,119.5572,TJ,CH4,3.9,kg/TJ,466.27308,Gas Oil combustion consumption by agriculture machines,AR-F,SESCO,annual,kg,548dad2f-56b9-36cd-aae1-62bd93e7080f -2016,La Rioja,II.5.1,119.5572,TJ,N2O,3.9,kg/TJ,466.27308,Gas Oil combustion consumption by agriculture machines,AR-F,SESCO,annual,kg,548dad2f-56b9-36cd-aae1-62bd93e7080f -2016,Mendoza,II.5.1,2484.26136,TJ,CO2,74100.0,kg/TJ,184083766.776,Gas Oil combustion consumption by agriculture machines,AR-M,SESCO,annual,kg,40dbea9d-5833-3ac2-a648-c08c5acb440a -2016,Mendoza,II.5.1,2484.26136,TJ,CH4,3.9,kg/TJ,9688.619304,Gas Oil combustion consumption by agriculture machines,AR-M,SESCO,annual,kg,2af858eb-7319-3227-a53b-eba2251315da -2016,Mendoza,II.5.1,2484.26136,TJ,N2O,3.9,kg/TJ,9688.619304,Gas Oil combustion consumption by agriculture machines,AR-M,SESCO,annual,kg,2af858eb-7319-3227-a53b-eba2251315da -2016,Misiones,II.5.1,1019.45088,TJ,CO2,74100.0,kg/TJ,75541310.208,Gas Oil combustion consumption by agriculture machines,AR-N,SESCO,annual,kg,455df631-9c28-3175-87c8-fbd5cc013831 -2016,Misiones,II.5.1,1019.45088,TJ,CH4,3.9,kg/TJ,3975.858432,Gas Oil combustion consumption by agriculture machines,AR-N,SESCO,annual,kg,0615b662-3cac-35b3-951e-cae196792c08 -2016,Misiones,II.5.1,1019.45088,TJ,N2O,3.9,kg/TJ,3975.858432,Gas Oil combustion consumption by agriculture machines,AR-N,SESCO,annual,kg,0615b662-3cac-35b3-951e-cae196792c08 -2016,Rio Negro,II.5.1,209.92944,TJ,CO2,74100.0,kg/TJ,15555771.504,Gas Oil combustion consumption by agriculture machines,AR-R,SESCO,annual,kg,e12297ce-74ac-3873-8cd6-714e8580b097 -2016,Rio Negro,II.5.1,209.92944,TJ,CH4,3.9,kg/TJ,818.724816,Gas Oil combustion consumption by agriculture machines,AR-R,SESCO,annual,kg,99dc5fd9-1696-3747-8e4c-9d9ff564ace3 -2016,Rio Negro,II.5.1,209.92944,TJ,N2O,3.9,kg/TJ,818.724816,Gas Oil combustion consumption by agriculture machines,AR-R,SESCO,annual,kg,99dc5fd9-1696-3747-8e4c-9d9ff564ace3 -2016,Salta,II.5.1,1696.44804,TJ,CO2,74100.0,kg/TJ,125706799.764,Gas Oil combustion consumption by agriculture machines,AR-A,SESCO,annual,kg,74c2366c-3070-3314-95c9-e3e07611df3e -2016,Salta,II.5.1,1696.44804,TJ,CH4,3.9,kg/TJ,6616.1473559999995,Gas Oil combustion consumption by agriculture machines,AR-A,SESCO,annual,kg,02c12cf6-105a-3dcb-83a6-9b00bf94a529 -2016,Salta,II.5.1,1696.44804,TJ,N2O,3.9,kg/TJ,6616.1473559999995,Gas Oil combustion consumption by agriculture machines,AR-A,SESCO,annual,kg,02c12cf6-105a-3dcb-83a6-9b00bf94a529 -2016,San Juan,II.5.1,490.97916,TJ,CO2,74100.0,kg/TJ,36381555.756,Gas Oil combustion consumption by agriculture machines,AR-J,SESCO,annual,kg,6d92fecf-9acd-3fae-b176-e5fa71e7c18e -2016,San Juan,II.5.1,490.97916,TJ,CH4,3.9,kg/TJ,1914.818724,Gas Oil combustion consumption by agriculture machines,AR-J,SESCO,annual,kg,cebe2342-011e-35f1-9d96-c53b6ba7f859 -2016,San Juan,II.5.1,490.97916,TJ,N2O,3.9,kg/TJ,1914.818724,Gas Oil combustion consumption by agriculture machines,AR-J,SESCO,annual,kg,cebe2342-011e-35f1-9d96-c53b6ba7f859 -2016,San Luis,II.5.1,555.5617199999999,TJ,CO2,74100.0,kg/TJ,41167123.45199999,Gas Oil combustion consumption by agriculture machines,AR-D,SESCO,annual,kg,29a8daad-a069-3713-9f2c-1aedc03fdfad -2016,San Luis,II.5.1,555.5617199999999,TJ,CH4,3.9,kg/TJ,2166.6907079999996,Gas Oil combustion consumption by agriculture machines,AR-D,SESCO,annual,kg,220130e2-fde0-38d5-b0c3-0d44e77f68fc -2016,San Luis,II.5.1,555.5617199999999,TJ,N2O,3.9,kg/TJ,2166.6907079999996,Gas Oil combustion consumption by agriculture machines,AR-D,SESCO,annual,kg,220130e2-fde0-38d5-b0c3-0d44e77f68fc -2016,Santa Cruz,II.5.1,0.5418,TJ,CO2,74100.0,kg/TJ,40147.38,Gas Oil combustion consumption by agriculture machines,AR-Z,SESCO,annual,kg,9e6d2eca-b8be-3f93-bcdc-bf25aa3f5804 -2016,Santa Cruz,II.5.1,0.5418,TJ,CH4,3.9,kg/TJ,2.1130199999999997,Gas Oil combustion consumption by agriculture machines,AR-Z,SESCO,annual,kg,67752b36-df1c-3d18-9351-19b618e436e5 -2016,Santa Cruz,II.5.1,0.5418,TJ,N2O,3.9,kg/TJ,2.1130199999999997,Gas Oil combustion consumption by agriculture machines,AR-Z,SESCO,annual,kg,67752b36-df1c-3d18-9351-19b618e436e5 -2016,Santa Fe,II.5.1,6693.72228,TJ,CO2,74100.0,kg/TJ,496004820.948,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,3d0a4474-c8d4-3def-9d4e-26b3abc59864 -2016,Santa Fe,II.5.1,6693.72228,TJ,CH4,3.9,kg/TJ,26105.516892,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,0a7f0d10-01d8-3eea-8e2a-a41759da0cae -2016,Santa Fe,II.5.1,6693.72228,TJ,N2O,3.9,kg/TJ,26105.516892,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,0a7f0d10-01d8-3eea-8e2a-a41759da0cae -2016,Santiago del Estero,II.5.1,1782.522,TJ,CO2,74100.0,kg/TJ,132084880.19999999,Gas Oil combustion consumption by agriculture machines,AR-G,SESCO,annual,kg,a55594e6-ef34-31d4-8be8-b9d374089045 -2016,Santiago del Estero,II.5.1,1782.522,TJ,CH4,3.9,kg/TJ,6951.8358,Gas Oil combustion consumption by agriculture machines,AR-G,SESCO,annual,kg,4ae82c3e-cbd7-3e23-b7f4-3eb40713e4cb -2016,Santiago del Estero,II.5.1,1782.522,TJ,N2O,3.9,kg/TJ,6951.8358,Gas Oil combustion consumption by agriculture machines,AR-G,SESCO,annual,kg,4ae82c3e-cbd7-3e23-b7f4-3eb40713e4cb -2016,Tucuman,II.5.1,1466.86932,TJ,CO2,74100.0,kg/TJ,108695016.612,Gas Oil combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,d8319ec6-e146-3aec-b5b8-c23994f00eb0 -2016,Tucuman,II.5.1,1466.86932,TJ,CH4,3.9,kg/TJ,5720.7903479999995,Gas Oil combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,6c7d5547-e597-3e31-b342-393b0d8ac0ed -2016,Tucuman,II.5.1,1466.86932,TJ,N2O,3.9,kg/TJ,5720.7903479999995,Gas Oil combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,6c7d5547-e597-3e31-b342-393b0d8ac0ed -2016,Buenos Aires,II.5.1,246.62735999999998,TJ,CO2,74100.0,kg/TJ,18275087.376,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,080d6807-8016-3600-b220-0ee98693c35b -2016,Buenos Aires,II.5.1,246.62735999999998,TJ,CH4,3.9,kg/TJ,961.8467039999999,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,c63af8b1-d35c-39a7-a99f-5f2d8e5730df -2016,Buenos Aires,II.5.1,246.62735999999998,TJ,N2O,3.9,kg/TJ,961.8467039999999,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,c63af8b1-d35c-39a7-a99f-5f2d8e5730df -2016,Catamarca,II.5.1,9.5718,TJ,CO2,74100.0,kg/TJ,709270.38,Gas Oil combustion consumption by agriculture machines,AR-K,SESCO,annual,kg,1cf20bf3-5cf3-319f-8228-37f5f1160205 -2016,Catamarca,II.5.1,9.5718,TJ,CH4,3.9,kg/TJ,37.33002,Gas Oil combustion consumption by agriculture machines,AR-K,SESCO,annual,kg,00b51f2c-4bcc-3041-ad93-f646a9f049f7 -2016,Catamarca,II.5.1,9.5718,TJ,N2O,3.9,kg/TJ,37.33002,Gas Oil combustion consumption by agriculture machines,AR-K,SESCO,annual,kg,00b51f2c-4bcc-3041-ad93-f646a9f049f7 -2016,Chaco,II.5.1,59.814719999999994,TJ,CO2,74100.0,kg/TJ,4432270.751999999,Gas Oil combustion consumption by agriculture machines,AR-H,SESCO,annual,kg,e94f2093-db04-3fed-a2c5-a5bd25078dd1 -2016,Chaco,II.5.1,59.814719999999994,TJ,CH4,3.9,kg/TJ,233.27740799999998,Gas Oil combustion consumption by agriculture machines,AR-H,SESCO,annual,kg,569012d8-c274-3477-b4a0-2f04aaf453b6 -2016,Chaco,II.5.1,59.814719999999994,TJ,N2O,3.9,kg/TJ,233.27740799999998,Gas Oil combustion consumption by agriculture machines,AR-H,SESCO,annual,kg,569012d8-c274-3477-b4a0-2f04aaf453b6 -2016,Corrientes,II.5.1,14.809199999999999,TJ,CO2,74100.0,kg/TJ,1097361.72,Gas Oil combustion consumption by agriculture machines,AR-W,SESCO,annual,kg,4d5b3623-86ff-326e-92f0-cb53d72ce19e -2016,Corrientes,II.5.1,14.809199999999999,TJ,CH4,3.9,kg/TJ,57.75587999999999,Gas Oil combustion consumption by agriculture machines,AR-W,SESCO,annual,kg,b28c3f31-b5b8-313a-afe8-71725058f3a5 -2016,Corrientes,II.5.1,14.809199999999999,TJ,N2O,3.9,kg/TJ,57.75587999999999,Gas Oil combustion consumption by agriculture machines,AR-W,SESCO,annual,kg,b28c3f31-b5b8-313a-afe8-71725058f3a5 -2016,Córdoba,II.5.1,61.11504,TJ,CO2,74100.0,kg/TJ,4528624.464,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,daadf975-d134-3c9f-8951-a1e4001882c1 -2016,Córdoba,II.5.1,61.11504,TJ,CH4,3.9,kg/TJ,238.348656,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,c29679f8-39d1-3ad1-8b08-558942b8ac1b -2016,Córdoba,II.5.1,61.11504,TJ,N2O,3.9,kg/TJ,238.348656,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,c29679f8-39d1-3ad1-8b08-558942b8ac1b -2016,Entre Rios,II.5.1,26.150879999999997,TJ,CO2,74100.0,kg/TJ,1937780.2079999999,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,110ae6c0-d4b1-31b1-b9c1-55087b17a706 -2016,Entre Rios,II.5.1,26.150879999999997,TJ,CH4,3.9,kg/TJ,101.98843199999999,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,422e447c-fe99-3ddb-8790-46b384cab31f -2016,Entre Rios,II.5.1,26.150879999999997,TJ,N2O,3.9,kg/TJ,101.98843199999999,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,422e447c-fe99-3ddb-8790-46b384cab31f -2016,Formosa,II.5.1,4.62336,TJ,CO2,74100.0,kg/TJ,342590.97599999997,Gas Oil combustion consumption by agriculture machines,AR-P,SESCO,annual,kg,c121e74d-9460-326c-aa90-04126b550bfb -2016,Formosa,II.5.1,4.62336,TJ,CH4,3.9,kg/TJ,18.031104,Gas Oil combustion consumption by agriculture machines,AR-P,SESCO,annual,kg,bfac1636-2cd4-35ce-b34c-ec0950f754fd -2016,Formosa,II.5.1,4.62336,TJ,N2O,3.9,kg/TJ,18.031104,Gas Oil combustion consumption by agriculture machines,AR-P,SESCO,annual,kg,bfac1636-2cd4-35ce-b34c-ec0950f754fd -2016,Jujuy,II.5.1,14.484119999999999,TJ,CO2,74100.0,kg/TJ,1073273.292,Gas Oil combustion consumption by agriculture machines,AR-Y,SESCO,annual,kg,92272ab0-7150-375b-a72a-b342f840afdb -2016,Jujuy,II.5.1,14.484119999999999,TJ,CH4,3.9,kg/TJ,56.48806799999999,Gas Oil combustion consumption by agriculture machines,AR-Y,SESCO,annual,kg,fa312056-8500-3f00-9fc0-180f8c0e776b -2016,Jujuy,II.5.1,14.484119999999999,TJ,N2O,3.9,kg/TJ,56.48806799999999,Gas Oil combustion consumption by agriculture machines,AR-Y,SESCO,annual,kg,fa312056-8500-3f00-9fc0-180f8c0e776b -2016,La Pampa,II.5.1,94.95948,TJ,CO2,74100.0,kg/TJ,7036497.468,Gas Oil combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,1edd381b-b3ea-3345-b96f-186699cfab24 -2016,La Pampa,II.5.1,94.95948,TJ,CH4,3.9,kg/TJ,370.341972,Gas Oil combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,651ba714-a6f4-344a-ba6f-09073e041739 -2016,La Pampa,II.5.1,94.95948,TJ,N2O,3.9,kg/TJ,370.341972,Gas Oil combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,651ba714-a6f4-344a-ba6f-09073e041739 -2016,Mendoza,II.5.1,54.64956,TJ,CO2,74100.0,kg/TJ,4049532.396,Gas Oil combustion consumption by agriculture machines,AR-M,SESCO,annual,kg,38b18c50-d6c1-30aa-97ee-59e8797d0197 -2016,Mendoza,II.5.1,54.64956,TJ,CH4,3.9,kg/TJ,213.133284,Gas Oil combustion consumption by agriculture machines,AR-M,SESCO,annual,kg,a913230c-1328-31f6-b211-84852a6d508f -2016,Mendoza,II.5.1,54.64956,TJ,N2O,3.9,kg/TJ,213.133284,Gas Oil combustion consumption by agriculture machines,AR-M,SESCO,annual,kg,a913230c-1328-31f6-b211-84852a6d508f -2016,Misiones,II.5.1,73.46808,TJ,CO2,74100.0,kg/TJ,5443984.728,Gas Oil combustion consumption by agriculture machines,AR-N,SESCO,annual,kg,193528d2-8ac0-3b00-a382-c2876a264d9c -2016,Misiones,II.5.1,73.46808,TJ,CH4,3.9,kg/TJ,286.525512,Gas Oil combustion consumption by agriculture machines,AR-N,SESCO,annual,kg,bfe4077a-9f35-34ac-8933-fc835f7b31df -2016,Misiones,II.5.1,73.46808,TJ,N2O,3.9,kg/TJ,286.525512,Gas Oil combustion consumption by agriculture machines,AR-N,SESCO,annual,kg,bfe4077a-9f35-34ac-8933-fc835f7b31df -2016,Rio Negro,II.5.1,4.1537999999999995,TJ,CO2,74100.0,kg/TJ,307796.57999999996,Gas Oil combustion consumption by agriculture machines,AR-R,SESCO,annual,kg,7bebb4eb-7cdc-3130-bc1b-675341947a83 -2016,Rio Negro,II.5.1,4.1537999999999995,TJ,CH4,3.9,kg/TJ,16.19982,Gas Oil combustion consumption by agriculture machines,AR-R,SESCO,annual,kg,13c10e70-b9e5-31c1-a805-a2e5cb00dedb -2016,Rio Negro,II.5.1,4.1537999999999995,TJ,N2O,3.9,kg/TJ,16.19982,Gas Oil combustion consumption by agriculture machines,AR-R,SESCO,annual,kg,13c10e70-b9e5-31c1-a805-a2e5cb00dedb -2016,Salta,II.5.1,107.38476,TJ,CO2,74100.0,kg/TJ,7957210.716,Gas Oil combustion consumption by agriculture machines,AR-A,SESCO,annual,kg,5f2a279d-31cf-37c9-8ff0-dc10560ddcd5 -2016,Salta,II.5.1,107.38476,TJ,CH4,3.9,kg/TJ,418.800564,Gas Oil combustion consumption by agriculture machines,AR-A,SESCO,annual,kg,726c1971-78fe-3492-b346-fa37941e8e95 -2016,Salta,II.5.1,107.38476,TJ,N2O,3.9,kg/TJ,418.800564,Gas Oil combustion consumption by agriculture machines,AR-A,SESCO,annual,kg,726c1971-78fe-3492-b346-fa37941e8e95 -2016,San Juan,II.5.1,24.0198,TJ,CO2,74100.0,kg/TJ,1779867.18,Gas Oil combustion consumption by agriculture machines,AR-J,SESCO,annual,kg,77776ff5-3790-3d75-b590-5cb15e3f8983 -2016,San Juan,II.5.1,24.0198,TJ,CH4,3.9,kg/TJ,93.67721999999999,Gas Oil combustion consumption by agriculture machines,AR-J,SESCO,annual,kg,347cc392-6cbc-3f8b-a7e6-cb6e06b86f66 -2016,San Juan,II.5.1,24.0198,TJ,N2O,3.9,kg/TJ,93.67721999999999,Gas Oil combustion consumption by agriculture machines,AR-J,SESCO,annual,kg,347cc392-6cbc-3f8b-a7e6-cb6e06b86f66 -2016,San Luis,II.5.1,31.352159999999998,TJ,CO2,74100.0,kg/TJ,2323195.056,Gas Oil combustion consumption by agriculture machines,AR-D,SESCO,annual,kg,1bd88a0a-2488-3bc5-b633-1914010f2555 -2016,San Luis,II.5.1,31.352159999999998,TJ,CH4,3.9,kg/TJ,122.27342399999999,Gas Oil combustion consumption by agriculture machines,AR-D,SESCO,annual,kg,b276908b-6857-32a7-b982-d25e3f4c9c91 -2016,San Luis,II.5.1,31.352159999999998,TJ,N2O,3.9,kg/TJ,122.27342399999999,Gas Oil combustion consumption by agriculture machines,AR-D,SESCO,annual,kg,b276908b-6857-32a7-b982-d25e3f4c9c91 -2016,Santa Fe,II.5.1,133.21056,TJ,CO2,74100.0,kg/TJ,9870902.496,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,f7fb1424-609a-3dd6-8da8-1e8c92dd4210 -2016,Santa Fe,II.5.1,133.21056,TJ,CH4,3.9,kg/TJ,519.521184,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,edd527df-697b-3446-bad9-219925fdb61b -2016,Santa Fe,II.5.1,133.21056,TJ,N2O,3.9,kg/TJ,519.521184,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,edd527df-697b-3446-bad9-219925fdb61b -2016,Santiago del Estero,II.5.1,80.33088,TJ,CO2,74100.0,kg/TJ,5952518.208,Gas Oil combustion consumption by agriculture machines,AR-G,SESCO,annual,kg,1bf1536e-5fa5-39b4-8536-fc65d6ab5a0e -2016,Santiago del Estero,II.5.1,80.33088,TJ,CH4,3.9,kg/TJ,313.29043199999995,Gas Oil combustion consumption by agriculture machines,AR-G,SESCO,annual,kg,940ea05c-99da-34d5-8b2d-71bcf99e0def -2016,Santiago del Estero,II.5.1,80.33088,TJ,N2O,3.9,kg/TJ,313.29043199999995,Gas Oil combustion consumption by agriculture machines,AR-G,SESCO,annual,kg,940ea05c-99da-34d5-8b2d-71bcf99e0def -2016,Tucuman,II.5.1,72.27611999999999,TJ,CO2,74100.0,kg/TJ,5355660.492,Gas Oil combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,76667790-2878-362c-b30f-60139bcdd168 -2016,Tucuman,II.5.1,72.27611999999999,TJ,CH4,3.9,kg/TJ,281.87686799999994,Gas Oil combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,bb5a186c-36ec-3886-b2ac-917d5fc1aef1 -2016,Tucuman,II.5.1,72.27611999999999,TJ,N2O,3.9,kg/TJ,281.87686799999994,Gas Oil combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,bb5a186c-36ec-3886-b2ac-917d5fc1aef1 -2016,Buenos Aires,II.5.1,8.429404,TJ,CO2,71500.0,kg/TJ,602702.3859999999,Jet Kerosene combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,b87c1264-d7c7-307d-9de4-d3fecb521374 -2016,Buenos Aires,II.5.1,8.429404,TJ,CH4,0.5,kg/TJ,4.214702,Jet Kerosene combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,09bff9a2-fdda-3ab5-8fb5-d621c04bad52 -2016,Buenos Aires,II.5.1,8.429404,TJ,N2O,2.0,kg/TJ,16.858808,Jet Kerosene combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,a8d314ad-5a57-3114-8314-894c7aab3fdc -2016,Córdoba,II.5.1,0.31453,TJ,CO2,71500.0,kg/TJ,22488.894999999997,Jet Kerosene combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,f15cf9af-afeb-31b9-a32e-757a60ba7346 -2016,Córdoba,II.5.1,0.31453,TJ,CH4,0.5,kg/TJ,0.157265,Jet Kerosene combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,cf48b8c3-2f61-3dd0-b123-b5d477ee9603 -2016,Córdoba,II.5.1,0.31453,TJ,N2O,2.0,kg/TJ,0.62906,Jet Kerosene combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,ba1ec442-4a67-3a2f-9a40-c16e4a8f5665 -2016,Entre Rios,II.5.1,0.157265,TJ,CO2,71500.0,kg/TJ,11244.447499999998,Jet Kerosene combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,fde7ca6d-a175-3877-9429-c9191f909738 -2016,Entre Rios,II.5.1,0.157265,TJ,CH4,0.5,kg/TJ,0.0786325,Jet Kerosene combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,0a2b02da-e900-3b4a-9805-c75316635314 -2016,Entre Rios,II.5.1,0.157265,TJ,N2O,2.0,kg/TJ,0.31453,Jet Kerosene combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,fc0df5e4-0fc4-3c4f-8a62-418b1dffb0b0 -2016,La Pampa,II.5.1,0.62906,TJ,CO2,71500.0,kg/TJ,44977.78999999999,Jet Kerosene combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,9d18ff69-70b1-3f46-8a74-c876b630d713 -2016,La Pampa,II.5.1,0.62906,TJ,CH4,0.5,kg/TJ,0.31453,Jet Kerosene combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,23a3138c-0ad2-3901-9a62-3cd2ca98c8b6 -2016,La Pampa,II.5.1,0.62906,TJ,N2O,2.0,kg/TJ,1.25812,Jet Kerosene combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,e785db31-9b87-35a7-87cf-9d142049639d -2016,Santa Fe,II.5.1,2.2646159999999997,TJ,CO2,71500.0,kg/TJ,161920.044,Jet Kerosene combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,c8d612d3-26de-3d78-9af0-86c24650f57b -2016,Santa Fe,II.5.1,2.2646159999999997,TJ,CH4,0.5,kg/TJ,1.1323079999999999,Jet Kerosene combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,287cd96d-70fb-34ea-924e-a52cb435fdc2 -2016,Santa Fe,II.5.1,2.2646159999999997,TJ,N2O,2.0,kg/TJ,4.5292319999999995,Jet Kerosene combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,4ca112ec-1201-3256-8ab3-b6de639987a9 -2016,Buenos Aires,II.5.1,152.787635,TJ,CO2,73300.0,kg/TJ,11199333.645499999,Naphtha combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,70ea3893-0646-3b0e-bcc6-c0b84021e8ad -2016,Buenos Aires,II.5.1,152.787635,TJ,CH4,0.5,kg/TJ,76.3938175,Naphtha combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,c9e19fe0-9985-3bfa-a227-156814e4a234 -2016,Buenos Aires,II.5.1,152.787635,TJ,N2O,2.0,kg/TJ,305.57527,Naphtha combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,5cc9aeb1-eed5-3cad-8f8a-78af24536278 -2016,Entre Rios,II.5.1,0.5825049999999999,TJ,CO2,73300.0,kg/TJ,42697.6165,Naphtha combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,5d3fcc00-3a44-32f3-b2f7-2a17413fdbe4 -2016,Entre Rios,II.5.1,0.5825049999999999,TJ,CH4,0.5,kg/TJ,0.29125249999999997,Naphtha combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,23e93a9f-16fd-310a-82f3-52a48b842bb8 -2016,Entre Rios,II.5.1,0.5825049999999999,TJ,N2O,2.0,kg/TJ,1.1650099999999999,Naphtha combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,c8b81f72-a412-35c6-9df1-76554cf26ef6 -2016,Jujuy,II.5.1,1.130745,TJ,CO2,73300.0,kg/TJ,82883.60849999999,Naphtha combustion consumption by agriculture machines,AR-Y,SESCO,annual,kg,a97628c8-ea16-38aa-adaa-5338bc4f2df2 -2016,Jujuy,II.5.1,1.130745,TJ,CH4,0.5,kg/TJ,0.5653725,Naphtha combustion consumption by agriculture machines,AR-Y,SESCO,annual,kg,c9af1c13-1934-3405-873d-687d0ee50360 -2016,Jujuy,II.5.1,1.130745,TJ,N2O,2.0,kg/TJ,2.26149,Naphtha combustion consumption by agriculture machines,AR-Y,SESCO,annual,kg,327f52e3-0a51-3690-8e1d-3b06d7331e81 -2016,Salta,II.5.1,0.719565,TJ,CO2,73300.0,kg/TJ,52744.1145,Naphtha combustion consumption by agriculture machines,AR-A,SESCO,annual,kg,1d8d9745-8ea4-3321-9a3f-bc8a4484b148 -2016,Salta,II.5.1,0.719565,TJ,CH4,0.5,kg/TJ,0.3597825,Naphtha combustion consumption by agriculture machines,AR-A,SESCO,annual,kg,ce2aecb3-b798-3fcb-bf07-7c923fe062c5 -2016,Salta,II.5.1,0.719565,TJ,N2O,2.0,kg/TJ,1.43913,Naphtha combustion consumption by agriculture machines,AR-A,SESCO,annual,kg,cfcf733e-1d9f-39a0-8513-b681b15e4317 -2016,Santa Fe,II.5.1,48.279385,TJ,CO2,73300.0,kg/TJ,3538878.9205,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,b70d0f7d-96a7-3e5a-8bb8-49f39013e35e -2016,Santa Fe,II.5.1,48.279385,TJ,CH4,0.5,kg/TJ,24.1396925,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,1e1433b3-4113-385a-8386-fbf20c8bbd4d -2016,Santa Fe,II.5.1,48.279385,TJ,N2O,2.0,kg/TJ,96.55877,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,e8203bcd-0f27-3612-9f05-2dc997af7f34 -2016,Santa Fe,II.5.1,0.925155,TJ,CO2,73300.0,kg/TJ,67813.8615,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,aa66d526-d202-351c-aa43-0a5d05cddbb8 -2016,Santa Fe,II.5.1,0.925155,TJ,CH4,0.5,kg/TJ,0.4625775,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,c2f11ff7-dc34-344f-b439-ec5e7a85cf87 -2016,Santa Fe,II.5.1,0.925155,TJ,N2O,2.0,kg/TJ,1.85031,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,b87c1a40-3685-344f-957a-b05b93553f4a -2016,Buenos Aires,II.1.1,8246.99064,TJ,CO2,74100.0,kg/TJ,611102006.424,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,6986b955-acd8-3368-8668-b5897f13e7ad -2016,Buenos Aires,II.1.1,8246.99064,TJ,CH4,3.9,kg/TJ,32163.263496,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,fa723d7b-1d91-39d8-bca7-8a11cae4f94a -2016,Buenos Aires,II.1.1,8246.99064,TJ,N2O,3.9,kg/TJ,32163.263496,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,fa723d7b-1d91-39d8-bca7-8a11cae4f94a -2016,Capital Federal,II.1.1,3331.9977599999997,TJ,CO2,74100.0,kg/TJ,246901034.01599997,Gas Oil combustion consumption by freight transport,AR-C,SESCO,annual,kg,71cab15c-5e3e-3dd2-a5a4-3c6201c172e7 -2016,Capital Federal,II.1.1,3331.9977599999997,TJ,CH4,3.9,kg/TJ,12994.791264,Gas Oil combustion consumption by freight transport,AR-C,SESCO,annual,kg,099b9e71-a6b3-3dbf-a334-021269106704 -2016,Capital Federal,II.1.1,3331.9977599999997,TJ,N2O,3.9,kg/TJ,12994.791264,Gas Oil combustion consumption by freight transport,AR-C,SESCO,annual,kg,099b9e71-a6b3-3dbf-a334-021269106704 -2016,Catamarca,II.1.1,15.60384,TJ,CO2,74100.0,kg/TJ,1156244.544,Gas Oil combustion consumption by freight transport,AR-K,SESCO,annual,kg,4070cc4d-e6d5-3e9d-831c-1500895284e2 -2016,Catamarca,II.1.1,15.60384,TJ,CH4,3.9,kg/TJ,60.854976,Gas Oil combustion consumption by freight transport,AR-K,SESCO,annual,kg,edd990f0-dfa0-3f49-828a-990153bfa0f9 -2016,Catamarca,II.1.1,15.60384,TJ,N2O,3.9,kg/TJ,60.854976,Gas Oil combustion consumption by freight transport,AR-K,SESCO,annual,kg,edd990f0-dfa0-3f49-828a-990153bfa0f9 -2016,Chaco,II.1.1,219.06779999999998,TJ,CO2,74100.0,kg/TJ,16232923.979999999,Gas Oil combustion consumption by freight transport,AR-H,SESCO,annual,kg,0ec12341-be38-3141-be73-27523841aa4b -2016,Chaco,II.1.1,219.06779999999998,TJ,CH4,3.9,kg/TJ,854.3644199999999,Gas Oil combustion consumption by freight transport,AR-H,SESCO,annual,kg,23cdee32-8c79-3cf8-8b06-5b6fe09a66d6 -2016,Chaco,II.1.1,219.06779999999998,TJ,N2O,3.9,kg/TJ,854.3644199999999,Gas Oil combustion consumption by freight transport,AR-H,SESCO,annual,kg,23cdee32-8c79-3cf8-8b06-5b6fe09a66d6 -2016,Chubut,II.1.1,207.69,TJ,CO2,74100.0,kg/TJ,15389829.0,Gas Oil combustion consumption by freight transport,AR-U,SESCO,annual,kg,2f2d04ae-bf42-311b-ada2-1e0b589b5d80 -2016,Chubut,II.1.1,207.69,TJ,CH4,3.9,kg/TJ,809.991,Gas Oil combustion consumption by freight transport,AR-U,SESCO,annual,kg,d161d5c9-27c1-3c11-b096-b8188a8ddf02 -2016,Chubut,II.1.1,207.69,TJ,N2O,3.9,kg/TJ,809.991,Gas Oil combustion consumption by freight transport,AR-U,SESCO,annual,kg,d161d5c9-27c1-3c11-b096-b8188a8ddf02 -2016,Corrientes,II.1.1,214.84176,TJ,CO2,74100.0,kg/TJ,15919774.416,Gas Oil combustion consumption by freight transport,AR-W,SESCO,annual,kg,a6143878-7d3f-382f-89e7-f5a1a03af974 -2016,Corrientes,II.1.1,214.84176,TJ,CH4,3.9,kg/TJ,837.8828639999999,Gas Oil combustion consumption by freight transport,AR-W,SESCO,annual,kg,6e3908c1-9433-3dc2-a044-32cdbeb202ff -2016,Corrientes,II.1.1,214.84176,TJ,N2O,3.9,kg/TJ,837.8828639999999,Gas Oil combustion consumption by freight transport,AR-W,SESCO,annual,kg,6e3908c1-9433-3dc2-a044-32cdbeb202ff -2016,Córdoba,II.1.1,2025.57348,TJ,CO2,74100.0,kg/TJ,150094994.868,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,b8d89750-1ef6-3735-ac57-7b269cfe7edc -2016,Córdoba,II.1.1,2025.57348,TJ,CH4,3.9,kg/TJ,7899.736572,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,52e6de84-4411-3ee3-86b8-8ba238620d1b -2016,Córdoba,II.1.1,2025.57348,TJ,N2O,3.9,kg/TJ,7899.736572,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,52e6de84-4411-3ee3-86b8-8ba238620d1b -2016,Entre Rios,II.1.1,350.7252,TJ,CO2,74100.0,kg/TJ,25988737.319999997,Gas Oil combustion consumption by freight transport,AR-E,SESCO,annual,kg,c26df134-69e5-3b03-b7b8-0206d8d36667 -2016,Entre Rios,II.1.1,350.7252,TJ,CH4,3.9,kg/TJ,1367.82828,Gas Oil combustion consumption by freight transport,AR-E,SESCO,annual,kg,5f67a2e7-ace0-3e78-890d-1e7eff54d71c -2016,Entre Rios,II.1.1,350.7252,TJ,N2O,3.9,kg/TJ,1367.82828,Gas Oil combustion consumption by freight transport,AR-E,SESCO,annual,kg,5f67a2e7-ace0-3e78-890d-1e7eff54d71c -2016,Formosa,II.1.1,1.9143599999999998,TJ,CO2,74100.0,kg/TJ,141854.076,Gas Oil combustion consumption by freight transport,AR-P,SESCO,annual,kg,3ae1cba5-102f-3511-8ac9-9961f581c23a -2016,Formosa,II.1.1,1.9143599999999998,TJ,CH4,3.9,kg/TJ,7.466003999999999,Gas Oil combustion consumption by freight transport,AR-P,SESCO,annual,kg,4d6a0050-0d99-3aa4-a2ce-7764a472210b -2016,Formosa,II.1.1,1.9143599999999998,TJ,N2O,3.9,kg/TJ,7.466003999999999,Gas Oil combustion consumption by freight transport,AR-P,SESCO,annual,kg,4d6a0050-0d99-3aa4-a2ce-7764a472210b -2016,Jujuy,II.1.1,81.81179999999999,TJ,CO2,74100.0,kg/TJ,6062254.379999999,Gas Oil combustion consumption by freight transport,AR-Y,SESCO,annual,kg,ccc4b43e-b85c-3c1c-826f-de8ea4357329 -2016,Jujuy,II.1.1,81.81179999999999,TJ,CH4,3.9,kg/TJ,319.06602,Gas Oil combustion consumption by freight transport,AR-Y,SESCO,annual,kg,b65754c9-caef-3db6-9492-c6f1185823e4 -2016,Jujuy,II.1.1,81.81179999999999,TJ,N2O,3.9,kg/TJ,319.06602,Gas Oil combustion consumption by freight transport,AR-Y,SESCO,annual,kg,b65754c9-caef-3db6-9492-c6f1185823e4 -2016,La Pampa,II.1.1,59.7786,TJ,CO2,74100.0,kg/TJ,4429594.26,Gas Oil combustion consumption by freight transport,AR-L,SESCO,annual,kg,d09d46e6-3b3b-3bbf-aa49-915c16743a38 -2016,La Pampa,II.1.1,59.7786,TJ,CH4,3.9,kg/TJ,233.13654,Gas Oil combustion consumption by freight transport,AR-L,SESCO,annual,kg,2ba8fff1-11f1-396f-93f1-1c6321bf76d7 -2016,La Pampa,II.1.1,59.7786,TJ,N2O,3.9,kg/TJ,233.13654,Gas Oil combustion consumption by freight transport,AR-L,SESCO,annual,kg,2ba8fff1-11f1-396f-93f1-1c6321bf76d7 -2016,La Rioja,II.1.1,2.2033199999999997,TJ,CO2,74100.0,kg/TJ,163266.012,Gas Oil combustion consumption by freight transport,AR-F,SESCO,annual,kg,68983f7c-c07f-3420-bed4-3edd3784b9d9 -2016,La Rioja,II.1.1,2.2033199999999997,TJ,CH4,3.9,kg/TJ,8.592947999999998,Gas Oil combustion consumption by freight transport,AR-F,SESCO,annual,kg,6f7cf308-a607-31fa-a387-823a5b9afb60 -2016,La Rioja,II.1.1,2.2033199999999997,TJ,N2O,3.9,kg/TJ,8.592947999999998,Gas Oil combustion consumption by freight transport,AR-F,SESCO,annual,kg,6f7cf308-a607-31fa-a387-823a5b9afb60 -2016,Mendoza,II.1.1,1451.1571199999998,TJ,CO2,74100.0,kg/TJ,107530742.592,Gas Oil combustion consumption by freight transport,AR-M,SESCO,annual,kg,1ef53ee4-5e91-32f6-a109-e16015f727a7 -2016,Mendoza,II.1.1,1451.1571199999998,TJ,CH4,3.9,kg/TJ,5659.512768,Gas Oil combustion consumption by freight transport,AR-M,SESCO,annual,kg,87b8a66b-fb2f-376e-9c36-076a1d49050a -2016,Mendoza,II.1.1,1451.1571199999998,TJ,N2O,3.9,kg/TJ,5659.512768,Gas Oil combustion consumption by freight transport,AR-M,SESCO,annual,kg,87b8a66b-fb2f-376e-9c36-076a1d49050a -2016,Misiones,II.1.1,575.82504,TJ,CO2,74100.0,kg/TJ,42668635.463999994,Gas Oil combustion consumption by freight transport,AR-N,SESCO,annual,kg,8970e668-6361-31ed-8320-b30518eaea64 -2016,Misiones,II.1.1,575.82504,TJ,CH4,3.9,kg/TJ,2245.717656,Gas Oil combustion consumption by freight transport,AR-N,SESCO,annual,kg,e55c6110-17b2-316a-bc46-d52ec554f3b1 -2016,Misiones,II.1.1,575.82504,TJ,N2O,3.9,kg/TJ,2245.717656,Gas Oil combustion consumption by freight transport,AR-N,SESCO,annual,kg,e55c6110-17b2-316a-bc46-d52ec554f3b1 -2016,Neuquén,II.1.1,972.02532,TJ,CO2,74100.0,kg/TJ,72027076.212,Gas Oil combustion consumption by freight transport,AR-Q,SESCO,annual,kg,995abab9-6d2c-3871-aa71-acb696a05b0a -2016,Neuquén,II.1.1,972.02532,TJ,CH4,3.9,kg/TJ,3790.8987479999996,Gas Oil combustion consumption by freight transport,AR-Q,SESCO,annual,kg,ada7c9cb-5df9-35bf-b6f6-3abfdf029720 -2016,Neuquén,II.1.1,972.02532,TJ,N2O,3.9,kg/TJ,3790.8987479999996,Gas Oil combustion consumption by freight transport,AR-Q,SESCO,annual,kg,ada7c9cb-5df9-35bf-b6f6-3abfdf029720 -2016,Rio Negro,II.1.1,192.84467999999998,TJ,CO2,74100.0,kg/TJ,14289790.787999999,Gas Oil combustion consumption by freight transport,AR-R,SESCO,annual,kg,8c00a24e-e781-3309-920c-2221767d0c7f -2016,Rio Negro,II.1.1,192.84467999999998,TJ,CH4,3.9,kg/TJ,752.0942519999999,Gas Oil combustion consumption by freight transport,AR-R,SESCO,annual,kg,e6e9b266-380b-33e5-a401-e1c034d56edd -2016,Rio Negro,II.1.1,192.84467999999998,TJ,N2O,3.9,kg/TJ,752.0942519999999,Gas Oil combustion consumption by freight transport,AR-R,SESCO,annual,kg,e6e9b266-380b-33e5-a401-e1c034d56edd -2016,Salta,II.1.1,238.42811999999998,TJ,CO2,74100.0,kg/TJ,17667523.691999998,Gas Oil combustion consumption by freight transport,AR-A,SESCO,annual,kg,11a62aff-2b4a-3136-b5cf-632c008badb9 -2016,Salta,II.1.1,238.42811999999998,TJ,CH4,3.9,kg/TJ,929.8696679999999,Gas Oil combustion consumption by freight transport,AR-A,SESCO,annual,kg,a85e4d1d-db06-33a1-8d75-eef0aab325c9 -2016,Salta,II.1.1,238.42811999999998,TJ,N2O,3.9,kg/TJ,929.8696679999999,Gas Oil combustion consumption by freight transport,AR-A,SESCO,annual,kg,a85e4d1d-db06-33a1-8d75-eef0aab325c9 -2016,San Juan,II.1.1,67.03872,TJ,CO2,74100.0,kg/TJ,4967569.152,Gas Oil combustion consumption by freight transport,AR-J,SESCO,annual,kg,7d3c2542-0f80-3bc4-ae5a-91208e729854 -2016,San Juan,II.1.1,67.03872,TJ,CH4,3.9,kg/TJ,261.451008,Gas Oil combustion consumption by freight transport,AR-J,SESCO,annual,kg,1c5f4a32-88ec-318a-8faa-0611b76e2816 -2016,San Juan,II.1.1,67.03872,TJ,N2O,3.9,kg/TJ,261.451008,Gas Oil combustion consumption by freight transport,AR-J,SESCO,annual,kg,1c5f4a32-88ec-318a-8faa-0611b76e2816 -2016,San Luis,II.1.1,121.11036,TJ,CO2,74100.0,kg/TJ,8974277.676,Gas Oil combustion consumption by freight transport,AR-D,SESCO,annual,kg,2a2b146e-aa07-3870-88c5-faa0dd6b4c18 -2016,San Luis,II.1.1,121.11036,TJ,CH4,3.9,kg/TJ,472.330404,Gas Oil combustion consumption by freight transport,AR-D,SESCO,annual,kg,5b943b7b-99a3-3dba-a4cd-e58f4142341e -2016,San Luis,II.1.1,121.11036,TJ,N2O,3.9,kg/TJ,472.330404,Gas Oil combustion consumption by freight transport,AR-D,SESCO,annual,kg,5b943b7b-99a3-3dba-a4cd-e58f4142341e -2016,Santa Cruz,II.1.1,90.6612,TJ,CO2,74100.0,kg/TJ,6717994.92,Gas Oil combustion consumption by freight transport,AR-Z,SESCO,annual,kg,cb736609-9b64-3aa2-a3e2-24475f7b9070 -2016,Santa Cruz,II.1.1,90.6612,TJ,CH4,3.9,kg/TJ,353.57867999999996,Gas Oil combustion consumption by freight transport,AR-Z,SESCO,annual,kg,f798ea6c-8008-37dd-8bf9-7453a7b60693 -2016,Santa Cruz,II.1.1,90.6612,TJ,N2O,3.9,kg/TJ,353.57867999999996,Gas Oil combustion consumption by freight transport,AR-Z,SESCO,annual,kg,f798ea6c-8008-37dd-8bf9-7453a7b60693 -2016,Santa Fe,II.1.1,2135.99232,TJ,CO2,74100.0,kg/TJ,158277030.912,Gas Oil combustion consumption by freight transport,AR-S,SESCO,annual,kg,0f92c100-7a61-3c63-acfb-01fb1a7016ff -2016,Santa Fe,II.1.1,2135.99232,TJ,CH4,3.9,kg/TJ,8330.370047999999,Gas Oil combustion consumption by freight transport,AR-S,SESCO,annual,kg,4b5824ed-a400-32b6-b5ed-90e418acb608 -2016,Santa Fe,II.1.1,2135.99232,TJ,N2O,3.9,kg/TJ,8330.370047999999,Gas Oil combustion consumption by freight transport,AR-S,SESCO,annual,kg,4b5824ed-a400-32b6-b5ed-90e418acb608 -2016,Santiago del Estero,II.1.1,125.19192,TJ,CO2,74100.0,kg/TJ,9276721.272,Gas Oil combustion consumption by freight transport,AR-G,SESCO,annual,kg,14cd6f6e-37d1-376b-9486-06e637e572ba -2016,Santiago del Estero,II.1.1,125.19192,TJ,CH4,3.9,kg/TJ,488.24848799999995,Gas Oil combustion consumption by freight transport,AR-G,SESCO,annual,kg,ba7100bf-e54f-34c7-a669-2db2604fb9c1 -2016,Santiago del Estero,II.1.1,125.19192,TJ,N2O,3.9,kg/TJ,488.24848799999995,Gas Oil combustion consumption by freight transport,AR-G,SESCO,annual,kg,ba7100bf-e54f-34c7-a669-2db2604fb9c1 -2016,Tierra del Fuego,II.1.1,26.837159999999997,TJ,CO2,74100.0,kg/TJ,1988633.5559999999,Gas Oil combustion consumption by freight transport,AR-V,SESCO,annual,kg,090d2ab9-4213-3c99-aa1a-d0c148403f95 -2016,Tierra del Fuego,II.1.1,26.837159999999997,TJ,CH4,3.9,kg/TJ,104.66492399999998,Gas Oil combustion consumption by freight transport,AR-V,SESCO,annual,kg,b8f6652a-8c44-360a-b84b-c0e9a30c59f1 -2016,Tierra del Fuego,II.1.1,26.837159999999997,TJ,N2O,3.9,kg/TJ,104.66492399999998,Gas Oil combustion consumption by freight transport,AR-V,SESCO,annual,kg,b8f6652a-8c44-360a-b84b-c0e9a30c59f1 -2016,Tucuman,II.1.1,351.77268,TJ,CO2,74100.0,kg/TJ,26066355.588,Gas Oil combustion consumption by freight transport,AR-T,SESCO,annual,kg,199c2f45-3121-3f50-bcb9-6bbc81e3d507 -2016,Tucuman,II.1.1,351.77268,TJ,CH4,3.9,kg/TJ,1371.9134519999998,Gas Oil combustion consumption by freight transport,AR-T,SESCO,annual,kg,9e2518cc-f813-3768-bb65-51b985f04895 -2016,Tucuman,II.1.1,351.77268,TJ,N2O,3.9,kg/TJ,1371.9134519999998,Gas Oil combustion consumption by freight transport,AR-T,SESCO,annual,kg,9e2518cc-f813-3768-bb65-51b985f04895 -2016,Buenos Aires,II.1.1,667.20864,TJ,CO2,74100.0,kg/TJ,49440160.224,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,06d195a2-32c8-34eb-b912-f3e0564cc9bc -2016,Buenos Aires,II.1.1,667.20864,TJ,CH4,3.9,kg/TJ,2602.113696,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,e5583d67-f480-3693-8e06-5883d7de4e33 -2016,Buenos Aires,II.1.1,667.20864,TJ,N2O,3.9,kg/TJ,2602.113696,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,e5583d67-f480-3693-8e06-5883d7de4e33 -2016,Capital Federal,II.1.1,955.0128,TJ,CO2,74100.0,kg/TJ,70766448.48,Gas Oil combustion consumption by freight transport,AR-C,SESCO,annual,kg,ded8c87a-995f-3d47-b710-1ec077e8e7c6 -2016,Capital Federal,II.1.1,955.0128,TJ,CH4,3.9,kg/TJ,3724.54992,Gas Oil combustion consumption by freight transport,AR-C,SESCO,annual,kg,0a4111c0-79b6-3195-8fef-754f66519fe5 -2016,Capital Federal,II.1.1,955.0128,TJ,N2O,3.9,kg/TJ,3724.54992,Gas Oil combustion consumption by freight transport,AR-C,SESCO,annual,kg,0a4111c0-79b6-3195-8fef-754f66519fe5 -2016,Chaco,II.1.1,31.46052,TJ,CO2,74100.0,kg/TJ,2331224.532,Gas Oil combustion consumption by freight transport,AR-H,SESCO,annual,kg,66286718-d044-3e3b-a5ba-729b50377f72 -2016,Chaco,II.1.1,31.46052,TJ,CH4,3.9,kg/TJ,122.696028,Gas Oil combustion consumption by freight transport,AR-H,SESCO,annual,kg,bb0de27f-d8f2-3178-a651-8001c31a721e -2016,Chaco,II.1.1,31.46052,TJ,N2O,3.9,kg/TJ,122.696028,Gas Oil combustion consumption by freight transport,AR-H,SESCO,annual,kg,bb0de27f-d8f2-3178-a651-8001c31a721e -2016,Chubut,II.1.1,50.748599999999996,TJ,CO2,74100.0,kg/TJ,3760471.26,Gas Oil combustion consumption by freight transport,AR-U,SESCO,annual,kg,7d7f52d7-e7de-39b1-be17-0bfdfe35dab7 -2016,Chubut,II.1.1,50.748599999999996,TJ,CH4,3.9,kg/TJ,197.91953999999998,Gas Oil combustion consumption by freight transport,AR-U,SESCO,annual,kg,48d8ba8e-2daf-34e3-8bf2-115b33beb1b2 -2016,Chubut,II.1.1,50.748599999999996,TJ,N2O,3.9,kg/TJ,197.91953999999998,Gas Oil combustion consumption by freight transport,AR-U,SESCO,annual,kg,48d8ba8e-2daf-34e3-8bf2-115b33beb1b2 -2016,Corrientes,II.1.1,20.48004,TJ,CO2,74100.0,kg/TJ,1517570.964,Gas Oil combustion consumption by freight transport,AR-W,SESCO,annual,kg,c1ed515c-1694-3bd0-9c0c-c3339bf25876 -2016,Corrientes,II.1.1,20.48004,TJ,CH4,3.9,kg/TJ,79.87215599999999,Gas Oil combustion consumption by freight transport,AR-W,SESCO,annual,kg,80f7828f-2167-32d5-a25f-a14e1c8be148 -2016,Corrientes,II.1.1,20.48004,TJ,N2O,3.9,kg/TJ,79.87215599999999,Gas Oil combustion consumption by freight transport,AR-W,SESCO,annual,kg,80f7828f-2167-32d5-a25f-a14e1c8be148 -2016,Córdoba,II.1.1,33.5916,TJ,CO2,74100.0,kg/TJ,2489137.56,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,880b3d56-d2c5-3965-9371-50ab678cf7d4 -2016,Córdoba,II.1.1,33.5916,TJ,CH4,3.9,kg/TJ,131.00724,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,731927cc-a029-392a-9690-3c8e8384fe8e -2016,Córdoba,II.1.1,33.5916,TJ,N2O,3.9,kg/TJ,131.00724,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,731927cc-a029-392a-9690-3c8e8384fe8e -2016,Entre Rios,II.1.1,23.441879999999998,TJ,CO2,74100.0,kg/TJ,1737043.3079999997,Gas Oil combustion consumption by freight transport,AR-E,SESCO,annual,kg,f4800dba-5f5a-397c-a278-394a1073bbf3 -2016,Entre Rios,II.1.1,23.441879999999998,TJ,CH4,3.9,kg/TJ,91.42333199999999,Gas Oil combustion consumption by freight transport,AR-E,SESCO,annual,kg,b1f93a49-3deb-36bd-af2c-6503e7087175 -2016,Entre Rios,II.1.1,23.441879999999998,TJ,N2O,3.9,kg/TJ,91.42333199999999,Gas Oil combustion consumption by freight transport,AR-E,SESCO,annual,kg,b1f93a49-3deb-36bd-af2c-6503e7087175 -2016,Formosa,II.1.1,0.50568,TJ,CO2,74100.0,kg/TJ,37470.888,Gas Oil combustion consumption by freight transport,AR-P,SESCO,annual,kg,2414251f-b129-33ed-999e-1e583acfab98 -2016,Formosa,II.1.1,0.50568,TJ,CH4,3.9,kg/TJ,1.9721520000000001,Gas Oil combustion consumption by freight transport,AR-P,SESCO,annual,kg,0ab8a1ee-c755-3d6f-b804-eed5a6e78006 -2016,Formosa,II.1.1,0.50568,TJ,N2O,3.9,kg/TJ,1.9721520000000001,Gas Oil combustion consumption by freight transport,AR-P,SESCO,annual,kg,0ab8a1ee-c755-3d6f-b804-eed5a6e78006 -2016,Jujuy,II.1.1,0.03612,TJ,CO2,74100.0,kg/TJ,2676.4919999999997,Gas Oil combustion consumption by freight transport,AR-Y,SESCO,annual,kg,3ff4451d-7617-3b97-a080-eaa02a384379 -2016,Jujuy,II.1.1,0.03612,TJ,CH4,3.9,kg/TJ,0.140868,Gas Oil combustion consumption by freight transport,AR-Y,SESCO,annual,kg,6f4c9fad-dbde-38f3-a1fc-be6512e67ea9 -2016,Jujuy,II.1.1,0.03612,TJ,N2O,3.9,kg/TJ,0.140868,Gas Oil combustion consumption by freight transport,AR-Y,SESCO,annual,kg,6f4c9fad-dbde-38f3-a1fc-be6512e67ea9 -2016,La Pampa,II.1.1,0.8307599999999999,TJ,CO2,74100.0,kg/TJ,61559.316,Gas Oil combustion consumption by freight transport,AR-L,SESCO,annual,kg,f13b35ca-684b-3109-ab9e-a63adb8f1c7d -2016,La Pampa,II.1.1,0.8307599999999999,TJ,CH4,3.9,kg/TJ,3.2399639999999996,Gas Oil combustion consumption by freight transport,AR-L,SESCO,annual,kg,300d52d1-a3e3-3446-bff5-704258a12062 -2016,La Pampa,II.1.1,0.8307599999999999,TJ,N2O,3.9,kg/TJ,3.2399639999999996,Gas Oil combustion consumption by freight transport,AR-L,SESCO,annual,kg,300d52d1-a3e3-3446-bff5-704258a12062 -2016,La Rioja,II.1.1,4.47888,TJ,CO2,74100.0,kg/TJ,331885.00800000003,Gas Oil combustion consumption by freight transport,AR-F,SESCO,annual,kg,b276888d-87cf-3ef2-8c5c-14c4077c148b -2016,La Rioja,II.1.1,4.47888,TJ,CH4,3.9,kg/TJ,17.467632000000002,Gas Oil combustion consumption by freight transport,AR-F,SESCO,annual,kg,6a2de516-cd37-3aa3-98ee-f8d1c9546357 -2016,La Rioja,II.1.1,4.47888,TJ,N2O,3.9,kg/TJ,17.467632000000002,Gas Oil combustion consumption by freight transport,AR-F,SESCO,annual,kg,6a2de516-cd37-3aa3-98ee-f8d1c9546357 -2016,Mendoza,II.1.1,59.489639999999994,TJ,CO2,74100.0,kg/TJ,4408182.324,Gas Oil combustion consumption by freight transport,AR-M,SESCO,annual,kg,f950c731-681a-3aee-9785-fb4bcefd8995 -2016,Mendoza,II.1.1,59.489639999999994,TJ,CH4,3.9,kg/TJ,232.00959599999996,Gas Oil combustion consumption by freight transport,AR-M,SESCO,annual,kg,f3ad89fe-a650-370c-8858-f563aaeea81d -2016,Mendoza,II.1.1,59.489639999999994,TJ,N2O,3.9,kg/TJ,232.00959599999996,Gas Oil combustion consumption by freight transport,AR-M,SESCO,annual,kg,f3ad89fe-a650-370c-8858-f563aaeea81d -2016,Misiones,II.1.1,10.58316,TJ,CO2,74100.0,kg/TJ,784212.156,Gas Oil combustion consumption by freight transport,AR-N,SESCO,annual,kg,eb9fd088-f633-3325-a730-30e096be1f40 -2016,Misiones,II.1.1,10.58316,TJ,CH4,3.9,kg/TJ,41.274324,Gas Oil combustion consumption by freight transport,AR-N,SESCO,annual,kg,ecdd3f94-e8d5-3992-adea-3ad0c3bb176d -2016,Misiones,II.1.1,10.58316,TJ,N2O,3.9,kg/TJ,41.274324,Gas Oil combustion consumption by freight transport,AR-N,SESCO,annual,kg,ecdd3f94-e8d5-3992-adea-3ad0c3bb176d -2016,Neuquén,II.1.1,264.14556,TJ,CO2,74100.0,kg/TJ,19573185.996,Gas Oil combustion consumption by freight transport,AR-Q,SESCO,annual,kg,2fedbd53-3554-3e0c-8825-543c2584fe4a -2016,Neuquén,II.1.1,264.14556,TJ,CH4,3.9,kg/TJ,1030.167684,Gas Oil combustion consumption by freight transport,AR-Q,SESCO,annual,kg,53a054c5-b09a-3516-a41e-cd03c14319ba -2016,Neuquén,II.1.1,264.14556,TJ,N2O,3.9,kg/TJ,1030.167684,Gas Oil combustion consumption by freight transport,AR-Q,SESCO,annual,kg,53a054c5-b09a-3516-a41e-cd03c14319ba -2016,Rio Negro,II.1.1,11.34168,TJ,CO2,74100.0,kg/TJ,840418.488,Gas Oil combustion consumption by freight transport,AR-R,SESCO,annual,kg,b7f7517e-9c81-3800-99fa-76eb28063a0f -2016,Rio Negro,II.1.1,11.34168,TJ,CH4,3.9,kg/TJ,44.232552,Gas Oil combustion consumption by freight transport,AR-R,SESCO,annual,kg,63132229-6633-3910-80a9-62f8e82b9dce -2016,Rio Negro,II.1.1,11.34168,TJ,N2O,3.9,kg/TJ,44.232552,Gas Oil combustion consumption by freight transport,AR-R,SESCO,annual,kg,63132229-6633-3910-80a9-62f8e82b9dce -2016,Salta,II.1.1,58.695,TJ,CO2,74100.0,kg/TJ,4349299.5,Gas Oil combustion consumption by freight transport,AR-A,SESCO,annual,kg,08f95bdb-96d3-326b-a119-0602b5e3041a -2016,Salta,II.1.1,58.695,TJ,CH4,3.9,kg/TJ,228.91049999999998,Gas Oil combustion consumption by freight transport,AR-A,SESCO,annual,kg,d3262697-8456-31df-a105-fa1904714b10 -2016,Salta,II.1.1,58.695,TJ,N2O,3.9,kg/TJ,228.91049999999998,Gas Oil combustion consumption by freight transport,AR-A,SESCO,annual,kg,d3262697-8456-31df-a105-fa1904714b10 -2016,San Juan,II.1.1,3.72036,TJ,CO2,74100.0,kg/TJ,275678.676,Gas Oil combustion consumption by freight transport,AR-J,SESCO,annual,kg,3776ca81-7d84-33a3-b0f7-1dcc172c65fe -2016,San Juan,II.1.1,3.72036,TJ,CH4,3.9,kg/TJ,14.509404,Gas Oil combustion consumption by freight transport,AR-J,SESCO,annual,kg,97b0ddd0-0bda-3aa7-b9fe-e3a4bc9ac580 -2016,San Juan,II.1.1,3.72036,TJ,N2O,3.9,kg/TJ,14.509404,Gas Oil combustion consumption by freight transport,AR-J,SESCO,annual,kg,97b0ddd0-0bda-3aa7-b9fe-e3a4bc9ac580 -2016,San Luis,II.1.1,9.89688,TJ,CO2,74100.0,kg/TJ,733358.808,Gas Oil combustion consumption by freight transport,AR-D,SESCO,annual,kg,96560c11-3ae5-3cfc-85c8-eae5f091043e -2016,San Luis,II.1.1,9.89688,TJ,CH4,3.9,kg/TJ,38.597832,Gas Oil combustion consumption by freight transport,AR-D,SESCO,annual,kg,caa87d1c-f165-3a2c-9d08-b1224dadb463 -2016,San Luis,II.1.1,9.89688,TJ,N2O,3.9,kg/TJ,38.597832,Gas Oil combustion consumption by freight transport,AR-D,SESCO,annual,kg,caa87d1c-f165-3a2c-9d08-b1224dadb463 -2016,Santa Cruz,II.1.1,16.253999999999998,TJ,CO2,74100.0,kg/TJ,1204421.4,Gas Oil combustion consumption by freight transport,AR-Z,SESCO,annual,kg,5f56e896-1999-3fb9-b1bc-2e695a82d1b6 -2016,Santa Cruz,II.1.1,16.253999999999998,TJ,CH4,3.9,kg/TJ,63.39059999999999,Gas Oil combustion consumption by freight transport,AR-Z,SESCO,annual,kg,fb24c699-2351-3edb-ad0b-3fd303c4c846 -2016,Santa Cruz,II.1.1,16.253999999999998,TJ,N2O,3.9,kg/TJ,63.39059999999999,Gas Oil combustion consumption by freight transport,AR-Z,SESCO,annual,kg,fb24c699-2351-3edb-ad0b-3fd303c4c846 -2016,Santa Fe,II.1.1,194.61455999999998,TJ,CO2,74100.0,kg/TJ,14420938.895999998,Gas Oil combustion consumption by freight transport,AR-S,SESCO,annual,kg,f2019d44-e969-354f-948c-3494af2366fe -2016,Santa Fe,II.1.1,194.61455999999998,TJ,CH4,3.9,kg/TJ,758.9967839999999,Gas Oil combustion consumption by freight transport,AR-S,SESCO,annual,kg,2a4e210e-104c-377a-8353-d0f9b7f4c820 -2016,Santa Fe,II.1.1,194.61455999999998,TJ,N2O,3.9,kg/TJ,758.9967839999999,Gas Oil combustion consumption by freight transport,AR-S,SESCO,annual,kg,2a4e210e-104c-377a-8353-d0f9b7f4c820 -2016,Santiago del Estero,II.1.1,0.14448,TJ,CO2,74100.0,kg/TJ,10705.967999999999,Gas Oil combustion consumption by freight transport,AR-G,SESCO,annual,kg,0c9eec92-5f57-3a80-a23b-d2c783e39929 -2016,Santiago del Estero,II.1.1,0.14448,TJ,CH4,3.9,kg/TJ,0.563472,Gas Oil combustion consumption by freight transport,AR-G,SESCO,annual,kg,3a321140-ea17-3d62-bf1c-3271d4d13d27 -2016,Santiago del Estero,II.1.1,0.14448,TJ,N2O,3.9,kg/TJ,0.563472,Gas Oil combustion consumption by freight transport,AR-G,SESCO,annual,kg,3a321140-ea17-3d62-bf1c-3271d4d13d27 -2016,Tierra del Fuego,II.1.1,6.790559999999999,TJ,CO2,74100.0,kg/TJ,503180.4959999999,Gas Oil combustion consumption by freight transport,AR-V,SESCO,annual,kg,a2d497bb-cf18-371c-ab2e-c51293bda012 -2016,Tierra del Fuego,II.1.1,6.790559999999999,TJ,CH4,3.9,kg/TJ,26.483183999999998,Gas Oil combustion consumption by freight transport,AR-V,SESCO,annual,kg,f9269161-ceec-3544-90d5-89ef35f427f2 -2016,Tierra del Fuego,II.1.1,6.790559999999999,TJ,N2O,3.9,kg/TJ,26.483183999999998,Gas Oil combustion consumption by freight transport,AR-V,SESCO,annual,kg,f9269161-ceec-3544-90d5-89ef35f427f2 -2016,Tucuman,II.1.1,12.642,TJ,CO2,74100.0,kg/TJ,936772.2,Gas Oil combustion consumption by freight transport,AR-T,SESCO,annual,kg,de54f55a-7550-38ef-93f1-a6ec2596d9a3 -2016,Tucuman,II.1.1,12.642,TJ,CH4,3.9,kg/TJ,49.303799999999995,Gas Oil combustion consumption by freight transport,AR-T,SESCO,annual,kg,02b0084c-1723-3316-8067-2434633fc9bb -2016,Tucuman,II.1.1,12.642,TJ,N2O,3.9,kg/TJ,49.303799999999995,Gas Oil combustion consumption by freight transport,AR-T,SESCO,annual,kg,02b0084c-1723-3316-8067-2434633fc9bb -2016,Buenos Aires,II.1.1,239.82073499999998,TJ,CO2,73300.0,kg/TJ,17578859.875499997,Naphtha combustion consumption by freight transport,AR-B,SESCO,annual,kg,2ee874e4-311f-305d-afcc-bd176ae04a70 -2016,Buenos Aires,II.1.1,239.82073499999998,TJ,CH4,0.5,kg/TJ,119.91036749999999,Naphtha combustion consumption by freight transport,AR-B,SESCO,annual,kg,a22335c5-e28a-3e9e-97a2-09e07f998800 -2016,Buenos Aires,II.1.1,239.82073499999998,TJ,N2O,2.0,kg/TJ,479.64146999999997,Naphtha combustion consumption by freight transport,AR-B,SESCO,annual,kg,5795c619-9d89-38a8-a0c8-124bd305c885 -2016,Capital Federal,II.1.1,251.71069,TJ,CO2,73300.0,kg/TJ,18450393.577,Naphtha combustion consumption by freight transport,AR-C,SESCO,annual,kg,ef842529-ec23-3c4a-aa4b-0f9edc1b8bde -2016,Capital Federal,II.1.1,251.71069,TJ,CH4,0.5,kg/TJ,125.855345,Naphtha combustion consumption by freight transport,AR-C,SESCO,annual,kg,68c8c200-1201-3562-9f1f-3fbb30f90a2c -2016,Capital Federal,II.1.1,251.71069,TJ,N2O,2.0,kg/TJ,503.42138,Naphtha combustion consumption by freight transport,AR-C,SESCO,annual,kg,2f8c8f4e-9451-3590-bc13-ef1dc5b46eae -2016,Chaco,II.1.1,8.42919,TJ,CO2,73300.0,kg/TJ,617859.627,Naphtha combustion consumption by freight transport,AR-H,SESCO,annual,kg,4ce9cbe2-9825-31de-bb23-f9d3a16ecc78 -2016,Chaco,II.1.1,8.42919,TJ,CH4,0.5,kg/TJ,4.214595,Naphtha combustion consumption by freight transport,AR-H,SESCO,annual,kg,d2e34c52-9f4a-3d4e-be2e-8c88f6571b98 -2016,Chaco,II.1.1,8.42919,TJ,N2O,2.0,kg/TJ,16.85838,Naphtha combustion consumption by freight transport,AR-H,SESCO,annual,kg,32a3a10c-bd69-3742-bf9c-b510dceaeb3d -2016,Chubut,II.1.1,1.64472,TJ,CO2,73300.0,kg/TJ,120557.976,Naphtha combustion consumption by freight transport,AR-U,SESCO,annual,kg,06cbee01-5a0a-33fd-984e-cb1dde4e5b03 -2016,Chubut,II.1.1,1.64472,TJ,CH4,0.5,kg/TJ,0.82236,Naphtha combustion consumption by freight transport,AR-U,SESCO,annual,kg,7f6ab127-c1a5-32f3-8fe9-de03069f5d64 -2016,Chubut,II.1.1,1.64472,TJ,N2O,2.0,kg/TJ,3.28944,Naphtha combustion consumption by freight transport,AR-U,SESCO,annual,kg,47915499-acee-3bed-84a4-fcf5ccb17f82 -2016,Corrientes,II.1.1,1.3020699999999998,TJ,CO2,73300.0,kg/TJ,95441.73099999999,Naphtha combustion consumption by freight transport,AR-W,SESCO,annual,kg,284df138-a9c5-34c8-956d-553ad6af1afe -2016,Corrientes,II.1.1,1.3020699999999998,TJ,CH4,0.5,kg/TJ,0.6510349999999999,Naphtha combustion consumption by freight transport,AR-W,SESCO,annual,kg,fce74ab2-9e5e-361c-ae5c-8be4a2935a33 -2016,Corrientes,II.1.1,1.3020699999999998,TJ,N2O,2.0,kg/TJ,2.6041399999999997,Naphtha combustion consumption by freight transport,AR-W,SESCO,annual,kg,0dc0dff5-071c-3c07-abd2-c3cdb105a8ea -2016,Córdoba,II.1.1,6.476084999999999,TJ,CO2,73300.0,kg/TJ,474697.03049999994,Naphtha combustion consumption by freight transport,AR-X,SESCO,annual,kg,6fae181b-a1aa-36c7-836c-01b94fcb9fc3 -2016,Córdoba,II.1.1,6.476084999999999,TJ,CH4,0.5,kg/TJ,3.2380424999999997,Naphtha combustion consumption by freight transport,AR-X,SESCO,annual,kg,a2cf52ec-8cb5-3cdc-a7ef-04dc48325a68 -2016,Córdoba,II.1.1,6.476084999999999,TJ,N2O,2.0,kg/TJ,12.952169999999999,Naphtha combustion consumption by freight transport,AR-X,SESCO,annual,kg,fbeb3ccd-2f50-3c3c-ad72-482bab689cb3 -2016,Entre Rios,II.1.1,2.090165,TJ,CO2,73300.0,kg/TJ,153209.09449999998,Naphtha combustion consumption by freight transport,AR-E,SESCO,annual,kg,c9c7a32f-a154-39f9-a00e-7ef96d379f90 -2016,Entre Rios,II.1.1,2.090165,TJ,CH4,0.5,kg/TJ,1.0450825,Naphtha combustion consumption by freight transport,AR-E,SESCO,annual,kg,d1df743a-059f-3428-b424-57ad023468f1 -2016,Entre Rios,II.1.1,2.090165,TJ,N2O,2.0,kg/TJ,4.18033,Naphtha combustion consumption by freight transport,AR-E,SESCO,annual,kg,c290d7c5-d339-30ae-b655-be4751b89f7e -2016,Formosa,II.1.1,0.13706,TJ,CO2,73300.0,kg/TJ,10046.498,Naphtha combustion consumption by freight transport,AR-P,SESCO,annual,kg,46609bb6-bd57-32c4-9052-6918c41ef667 -2016,Formosa,II.1.1,0.13706,TJ,CH4,0.5,kg/TJ,0.06853,Naphtha combustion consumption by freight transport,AR-P,SESCO,annual,kg,1f38cba7-5564-3737-b849-cf14cca58c97 -2016,Formosa,II.1.1,0.13706,TJ,N2O,2.0,kg/TJ,0.27412,Naphtha combustion consumption by freight transport,AR-P,SESCO,annual,kg,f234c087-4033-3a6c-b846-69dce6d6f575 -2016,Mendoza,II.1.1,11.067594999999999,TJ,CO2,73300.0,kg/TJ,811254.7135,Naphtha combustion consumption by freight transport,AR-M,SESCO,annual,kg,2d72f825-43fd-32ab-8a70-e656620222c3 -2016,Mendoza,II.1.1,11.067594999999999,TJ,CH4,0.5,kg/TJ,5.5337974999999995,Naphtha combustion consumption by freight transport,AR-M,SESCO,annual,kg,422283ff-c5cc-3816-93d8-5439715e8b4a -2016,Mendoza,II.1.1,11.067594999999999,TJ,N2O,2.0,kg/TJ,22.135189999999998,Naphtha combustion consumption by freight transport,AR-M,SESCO,annual,kg,391a9d6b-17de-382b-ace3-84ce99701250 -2016,Misiones,II.1.1,0.719565,TJ,CO2,73300.0,kg/TJ,52744.1145,Naphtha combustion consumption by freight transport,AR-N,SESCO,annual,kg,7df5f495-8de3-3341-9ecb-b5c3e66e7bb2 -2016,Misiones,II.1.1,0.719565,TJ,CH4,0.5,kg/TJ,0.3597825,Naphtha combustion consumption by freight transport,AR-N,SESCO,annual,kg,5a0457d8-ae37-32a0-8616-6cfc115cb98d -2016,Misiones,II.1.1,0.719565,TJ,N2O,2.0,kg/TJ,1.43913,Naphtha combustion consumption by freight transport,AR-N,SESCO,annual,kg,380f03d7-3eba-3487-b677-c7857882283d -2016,Neuquén,II.1.1,1.816045,TJ,CO2,73300.0,kg/TJ,133116.0985,Naphtha combustion consumption by freight transport,AR-Q,SESCO,annual,kg,a6b9f6f0-eb03-36f6-9f15-59527228fd2a -2016,Neuquén,II.1.1,1.816045,TJ,CH4,0.5,kg/TJ,0.9080225,Naphtha combustion consumption by freight transport,AR-Q,SESCO,annual,kg,7660ae57-1ed5-3156-98dc-7952876ef953 -2016,Neuquén,II.1.1,1.816045,TJ,N2O,2.0,kg/TJ,3.63209,Naphtha combustion consumption by freight transport,AR-Q,SESCO,annual,kg,8a4fd1aa-b349-3e24-aede-00582ec5b41a -2016,Rio Negro,II.1.1,1.71325,TJ,CO2,73300.0,kg/TJ,125581.22499999999,Naphtha combustion consumption by freight transport,AR-R,SESCO,annual,kg,dc76a085-45c7-3f83-b28c-41df9495561c -2016,Rio Negro,II.1.1,1.71325,TJ,CH4,0.5,kg/TJ,0.856625,Naphtha combustion consumption by freight transport,AR-R,SESCO,annual,kg,b417f5ff-31a1-3389-ac10-50baa0a38ba2 -2016,Rio Negro,II.1.1,1.71325,TJ,N2O,2.0,kg/TJ,3.4265,Naphtha combustion consumption by freight transport,AR-R,SESCO,annual,kg,ca415dce-6277-3ffd-99fd-e422b69b2e1a -2016,Salta,II.1.1,10.9648,TJ,CO2,73300.0,kg/TJ,803719.84,Naphtha combustion consumption by freight transport,AR-A,SESCO,annual,kg,3efa8a5d-43ac-3789-9dd8-dc92d53ead87 -2016,Salta,II.1.1,10.9648,TJ,CH4,0.5,kg/TJ,5.4824,Naphtha combustion consumption by freight transport,AR-A,SESCO,annual,kg,7d760185-8e43-34c1-8db7-4aa55ab12f64 -2016,Salta,II.1.1,10.9648,TJ,N2O,2.0,kg/TJ,21.9296,Naphtha combustion consumption by freight transport,AR-A,SESCO,annual,kg,192805e4-a653-3c4c-9d4b-1e5a49aa27e4 -2016,San Juan,II.1.1,0.23985499999999998,TJ,CO2,73300.0,kg/TJ,17581.371499999997,Naphtha combustion consumption by freight transport,AR-J,SESCO,annual,kg,a69908bc-a3e4-34a8-8a88-921ad686185a -2016,San Juan,II.1.1,0.23985499999999998,TJ,CH4,0.5,kg/TJ,0.11992749999999999,Naphtha combustion consumption by freight transport,AR-J,SESCO,annual,kg,a0320f1a-ae8a-3a80-b9ec-3e16c6ba1d9b -2016,San Juan,II.1.1,0.23985499999999998,TJ,N2O,2.0,kg/TJ,0.47970999999999997,Naphtha combustion consumption by freight transport,AR-J,SESCO,annual,kg,4e27daab-fd4a-3499-80c4-5e97c3372861 -2016,San Luis,II.1.1,0.41118,TJ,CO2,73300.0,kg/TJ,30139.494,Naphtha combustion consumption by freight transport,AR-D,SESCO,annual,kg,ea04c37e-6ce7-307e-88ad-259c7d1b879d -2016,San Luis,II.1.1,0.41118,TJ,CH4,0.5,kg/TJ,0.20559,Naphtha combustion consumption by freight transport,AR-D,SESCO,annual,kg,a6cbdc46-0cba-3218-8af0-a5258f70af01 -2016,San Luis,II.1.1,0.41118,TJ,N2O,2.0,kg/TJ,0.82236,Naphtha combustion consumption by freight transport,AR-D,SESCO,annual,kg,866d1f65-bd51-3b18-9db9-bbddd06abbb2 -2016,Santa Fe,II.1.1,17.989124999999998,TJ,CO2,73300.0,kg/TJ,1318602.8624999998,Naphtha combustion consumption by freight transport,AR-S,SESCO,annual,kg,c217cdb1-24e4-385b-9a4d-4c1420f1e5a0 -2016,Santa Fe,II.1.1,17.989124999999998,TJ,CH4,0.5,kg/TJ,8.994562499999999,Naphtha combustion consumption by freight transport,AR-S,SESCO,annual,kg,cb86feb4-0e4f-3ac5-b1f0-20984099c36f -2016,Santa Fe,II.1.1,17.989124999999998,TJ,N2O,2.0,kg/TJ,35.978249999999996,Naphtha combustion consumption by freight transport,AR-S,SESCO,annual,kg,b7b3ee32-8de1-3a02-88a6-061dca5794dd -2016,Santiago del Estero,II.1.1,0.13706,TJ,CO2,73300.0,kg/TJ,10046.498,Naphtha combustion consumption by freight transport,AR-G,SESCO,annual,kg,a5b1670b-cae8-3f40-959c-0f34aaa77efb -2016,Santiago del Estero,II.1.1,0.13706,TJ,CH4,0.5,kg/TJ,0.06853,Naphtha combustion consumption by freight transport,AR-G,SESCO,annual,kg,04bf7b7d-e407-3121-b429-d4ca02c2ed60 -2016,Santiago del Estero,II.1.1,0.13706,TJ,N2O,2.0,kg/TJ,0.27412,Naphtha combustion consumption by freight transport,AR-G,SESCO,annual,kg,ca644384-4d85-3238-990f-d4a17a0bf539 -2016,Tierra del Fuego,II.1.1,0.23985499999999998,TJ,CO2,73300.0,kg/TJ,17581.371499999997,Naphtha combustion consumption by freight transport,AR-V,SESCO,annual,kg,3f0dd9bc-d96b-38f5-9b4e-87eb84ea2499 -2016,Tierra del Fuego,II.1.1,0.23985499999999998,TJ,CH4,0.5,kg/TJ,0.11992749999999999,Naphtha combustion consumption by freight transport,AR-V,SESCO,annual,kg,9a9bd290-c5a6-344e-98f6-9733cbd260e6 -2016,Tierra del Fuego,II.1.1,0.23985499999999998,TJ,N2O,2.0,kg/TJ,0.47970999999999997,Naphtha combustion consumption by freight transport,AR-V,SESCO,annual,kg,a8ee0165-e81e-3e61-a291-f98e3e5e18bd -2016,Tucuman,II.1.1,2.2957549999999998,TJ,CO2,73300.0,kg/TJ,168278.84149999998,Naphtha combustion consumption by freight transport,AR-T,SESCO,annual,kg,4d2f4de9-a8e1-36bd-9e7f-a10819d0c525 -2016,Tucuman,II.1.1,2.2957549999999998,TJ,CH4,0.5,kg/TJ,1.1478774999999999,Naphtha combustion consumption by freight transport,AR-T,SESCO,annual,kg,d62126c7-2720-3037-8f48-6bc19f5e67e8 -2016,Tucuman,II.1.1,2.2957549999999998,TJ,N2O,2.0,kg/TJ,4.5915099999999995,Naphtha combustion consumption by freight transport,AR-T,SESCO,annual,kg,8e7f00c5-b67d-3352-a319-fdea7cb862be -2016,Buenos Aires,II.1.1,234.40686499999998,TJ,CO2,73300.0,kg/TJ,17182023.204499997,Naphtha combustion consumption by freight transport,AR-B,SESCO,annual,kg,3a1dd7e6-5329-3030-a78a-044682f9f49c -2016,Buenos Aires,II.1.1,234.40686499999998,TJ,CH4,0.5,kg/TJ,117.20343249999999,Naphtha combustion consumption by freight transport,AR-B,SESCO,annual,kg,d729f5b1-9f8d-3f22-b127-74d028d9ae4c -2016,Buenos Aires,II.1.1,234.40686499999998,TJ,N2O,2.0,kg/TJ,468.81372999999996,Naphtha combustion consumption by freight transport,AR-B,SESCO,annual,kg,9c054482-a3c0-31e6-ab92-625f9c44b378 -2016,Capital Federal,II.1.1,264.62859499999996,TJ,CO2,73300.0,kg/TJ,19397276.013499998,Naphtha combustion consumption by freight transport,AR-C,SESCO,annual,kg,3c46771e-e487-3ae0-af11-c2246f9298d3 -2016,Capital Federal,II.1.1,264.62859499999996,TJ,CH4,0.5,kg/TJ,132.31429749999998,Naphtha combustion consumption by freight transport,AR-C,SESCO,annual,kg,86a65edf-520a-325f-b6cd-94f124398bab -2016,Capital Federal,II.1.1,264.62859499999996,TJ,N2O,2.0,kg/TJ,529.2571899999999,Naphtha combustion consumption by freight transport,AR-C,SESCO,annual,kg,8e3d09a3-e47c-3751-87ad-bc9398a4eb75 -2016,Chaco,II.1.1,9.320079999999999,TJ,CO2,73300.0,kg/TJ,683161.864,Naphtha combustion consumption by freight transport,AR-H,SESCO,annual,kg,18763f4c-7c8b-30f0-ab69-23675a612302 -2016,Chaco,II.1.1,9.320079999999999,TJ,CH4,0.5,kg/TJ,4.6600399999999995,Naphtha combustion consumption by freight transport,AR-H,SESCO,annual,kg,f060cdf6-1207-35b2-84e4-d6df0f5c690b -2016,Chaco,II.1.1,9.320079999999999,TJ,N2O,2.0,kg/TJ,18.640159999999998,Naphtha combustion consumption by freight transport,AR-H,SESCO,annual,kg,d98e3dd2-d1ed-3335-93fb-b618dd5a769a -2016,Chubut,II.1.1,1.09648,TJ,CO2,73300.0,kg/TJ,80371.984,Naphtha combustion consumption by freight transport,AR-U,SESCO,annual,kg,0f409ab4-0e78-3fb7-a492-477d32c0f231 -2016,Chubut,II.1.1,1.09648,TJ,CH4,0.5,kg/TJ,0.54824,Naphtha combustion consumption by freight transport,AR-U,SESCO,annual,kg,5703e86e-0e54-3c0d-a2fc-751960385a8b -2016,Chubut,II.1.1,1.09648,TJ,N2O,2.0,kg/TJ,2.19296,Naphtha combustion consumption by freight transport,AR-U,SESCO,annual,kg,6ac74420-f1d8-306c-84ef-5d2c6a7e0af4 -2016,Corrientes,II.1.1,3.49503,TJ,CO2,73300.0,kg/TJ,256185.699,Naphtha combustion consumption by freight transport,AR-W,SESCO,annual,kg,63e995f7-3d3b-3bf5-b38e-c6e979875db0 -2016,Corrientes,II.1.1,3.49503,TJ,CH4,0.5,kg/TJ,1.747515,Naphtha combustion consumption by freight transport,AR-W,SESCO,annual,kg,9f14b53a-9824-3a59-bdd2-c56d460f58d1 -2016,Corrientes,II.1.1,3.49503,TJ,N2O,2.0,kg/TJ,6.99006,Naphtha combustion consumption by freight transport,AR-W,SESCO,annual,kg,92970ee7-2314-3ea2-aa84-54137c497c0d -2016,Córdoba,II.1.1,8.189335,TJ,CO2,73300.0,kg/TJ,600278.2555,Naphtha combustion consumption by freight transport,AR-X,SESCO,annual,kg,17f4b60f-c61c-3fd6-9b6a-632b8fa8f8a7 -2016,Córdoba,II.1.1,8.189335,TJ,CH4,0.5,kg/TJ,4.0946675,Naphtha combustion consumption by freight transport,AR-X,SESCO,annual,kg,ad0abb23-38b4-3163-a62e-1e25856887e8 -2016,Córdoba,II.1.1,8.189335,TJ,N2O,2.0,kg/TJ,16.37867,Naphtha combustion consumption by freight transport,AR-X,SESCO,annual,kg,c5e005bc-ff30-3359-9db0-9cc5a112e9de -2016,Entre Rios,II.1.1,3.597825,TJ,CO2,73300.0,kg/TJ,263720.5725,Naphtha combustion consumption by freight transport,AR-E,SESCO,annual,kg,8efce56e-ca50-3205-90a5-30fc95334506 -2016,Entre Rios,II.1.1,3.597825,TJ,CH4,0.5,kg/TJ,1.7989125,Naphtha combustion consumption by freight transport,AR-E,SESCO,annual,kg,a32efb6e-6bf0-3f54-903e-7a88ea07fea5 -2016,Entre Rios,II.1.1,3.597825,TJ,N2O,2.0,kg/TJ,7.19565,Naphtha combustion consumption by freight transport,AR-E,SESCO,annual,kg,f467997e-0e68-3286-bbc5-d049d80b77b7 -2016,Formosa,II.1.1,0.06853,TJ,CO2,73300.0,kg/TJ,5023.249,Naphtha combustion consumption by freight transport,AR-P,SESCO,annual,kg,711529f5-32af-3f51-ba64-bca6284ac585 -2016,Formosa,II.1.1,0.06853,TJ,CH4,0.5,kg/TJ,0.034265,Naphtha combustion consumption by freight transport,AR-P,SESCO,annual,kg,5f7bf246-c548-3a9c-80ac-ebc9c48e8dfc -2016,Formosa,II.1.1,0.06853,TJ,N2O,2.0,kg/TJ,0.13706,Naphtha combustion consumption by freight transport,AR-P,SESCO,annual,kg,806662b5-214a-3059-9953-56e2beada00c -2016,Jujuy,II.1.1,0.034265,TJ,CO2,73300.0,kg/TJ,2511.6245,Naphtha combustion consumption by freight transport,AR-Y,SESCO,annual,kg,0029cf2c-68dc-3bf5-be74-685eada502bd -2016,Jujuy,II.1.1,0.034265,TJ,CH4,0.5,kg/TJ,0.0171325,Naphtha combustion consumption by freight transport,AR-Y,SESCO,annual,kg,3aca582d-11ed-3c89-9ba0-d95965ffa1fc -2016,Jujuy,II.1.1,0.034265,TJ,N2O,2.0,kg/TJ,0.06853,Naphtha combustion consumption by freight transport,AR-Y,SESCO,annual,kg,70642e49-49c0-3107-aafe-758b99450560 -2016,La Pampa,II.1.1,0.20559,TJ,CO2,73300.0,kg/TJ,15069.747,Naphtha combustion consumption by freight transport,AR-L,SESCO,annual,kg,6b974914-73c0-3021-b376-1f60c1e23bd7 -2016,La Pampa,II.1.1,0.20559,TJ,CH4,0.5,kg/TJ,0.102795,Naphtha combustion consumption by freight transport,AR-L,SESCO,annual,kg,e1c9a9e1-62fe-3faf-b897-369cafcf2fcc -2016,La Pampa,II.1.1,0.20559,TJ,N2O,2.0,kg/TJ,0.41118,Naphtha combustion consumption by freight transport,AR-L,SESCO,annual,kg,71ef0840-ddb4-3f26-9bbf-fa17490622d4 -2016,La Rioja,II.1.1,1.1992749999999999,TJ,CO2,73300.0,kg/TJ,87906.85749999998,Naphtha combustion consumption by freight transport,AR-F,SESCO,annual,kg,737609d3-c24e-3556-80d5-fe3553fc2bc8 -2016,La Rioja,II.1.1,1.1992749999999999,TJ,CH4,0.5,kg/TJ,0.5996374999999999,Naphtha combustion consumption by freight transport,AR-F,SESCO,annual,kg,f1340262-6964-3cb9-936c-79bf887e28a7 -2016,La Rioja,II.1.1,1.1992749999999999,TJ,N2O,2.0,kg/TJ,2.3985499999999997,Naphtha combustion consumption by freight transport,AR-F,SESCO,annual,kg,b05e9bcd-3d75-3090-8fbb-3a732925cd56 -2016,Mendoza,II.1.1,7.8809499999999995,TJ,CO2,73300.0,kg/TJ,577673.635,Naphtha combustion consumption by freight transport,AR-M,SESCO,annual,kg,3d09e5ce-209c-3e24-a20d-a59e549006ef -2016,Mendoza,II.1.1,7.8809499999999995,TJ,CH4,0.5,kg/TJ,3.9404749999999997,Naphtha combustion consumption by freight transport,AR-M,SESCO,annual,kg,f5510825-d14d-3415-9138-20a297799421 -2016,Mendoza,II.1.1,7.8809499999999995,TJ,N2O,2.0,kg/TJ,15.761899999999999,Naphtha combustion consumption by freight transport,AR-M,SESCO,annual,kg,af3d5fc7-aad5-36d0-a914-baf40e1c42b0 -2016,Misiones,II.1.1,2.26149,TJ,CO2,73300.0,kg/TJ,165767.21699999998,Naphtha combustion consumption by freight transport,AR-N,SESCO,annual,kg,8b2764b9-952e-358b-879f-4d4fee974630 -2016,Misiones,II.1.1,2.26149,TJ,CH4,0.5,kg/TJ,1.130745,Naphtha combustion consumption by freight transport,AR-N,SESCO,annual,kg,1862c1bf-d477-3837-99d7-a1f7e1d84981 -2016,Misiones,II.1.1,2.26149,TJ,N2O,2.0,kg/TJ,4.52298,Naphtha combustion consumption by freight transport,AR-N,SESCO,annual,kg,a08d4fe4-9ff3-3a99-a9a6-ed14e5f339b9 -2016,Neuquén,II.1.1,2.843995,TJ,CO2,73300.0,kg/TJ,208464.8335,Naphtha combustion consumption by freight transport,AR-Q,SESCO,annual,kg,778afdbd-70cd-3f86-b4e2-af35bb95c4c3 -2016,Neuquén,II.1.1,2.843995,TJ,CH4,0.5,kg/TJ,1.4219975,Naphtha combustion consumption by freight transport,AR-Q,SESCO,annual,kg,553116b6-5627-31c5-b907-e9486ba3746d -2016,Neuquén,II.1.1,2.843995,TJ,N2O,2.0,kg/TJ,5.68799,Naphtha combustion consumption by freight transport,AR-Q,SESCO,annual,kg,5599f963-9b4f-3bb3-918b-a572708d5adc -2016,Rio Negro,II.1.1,6.03064,TJ,CO2,73300.0,kg/TJ,442045.912,Naphtha combustion consumption by freight transport,AR-R,SESCO,annual,kg,e50b45b0-999d-3fab-aae6-f32506fc76f9 -2016,Rio Negro,II.1.1,6.03064,TJ,CH4,0.5,kg/TJ,3.01532,Naphtha combustion consumption by freight transport,AR-R,SESCO,annual,kg,374d6d1d-8be9-3141-85d3-a22f8b83b288 -2016,Rio Negro,II.1.1,6.03064,TJ,N2O,2.0,kg/TJ,12.06128,Naphtha combustion consumption by freight transport,AR-R,SESCO,annual,kg,9a6e33a4-71ac-35fc-ac85-c94145122d9f -2016,Salta,II.1.1,2.94679,TJ,CO2,73300.0,kg/TJ,215999.707,Naphtha combustion consumption by freight transport,AR-A,SESCO,annual,kg,7ca5c99d-4caa-3c10-ba40-f67536ffa9d1 -2016,Salta,II.1.1,2.94679,TJ,CH4,0.5,kg/TJ,1.473395,Naphtha combustion consumption by freight transport,AR-A,SESCO,annual,kg,d011ca2a-2d21-390a-ae56-af6bce3b3425 -2016,Salta,II.1.1,2.94679,TJ,N2O,2.0,kg/TJ,5.89358,Naphtha combustion consumption by freight transport,AR-A,SESCO,annual,kg,9edb4037-2a71-35d1-a1bc-b01eb58a0349 -2016,San Juan,II.1.1,0.102795,TJ,CO2,73300.0,kg/TJ,7534.8735,Naphtha combustion consumption by freight transport,AR-J,SESCO,annual,kg,f4753983-006c-34fa-9b57-9743188b1365 -2016,San Juan,II.1.1,0.102795,TJ,CH4,0.5,kg/TJ,0.0513975,Naphtha combustion consumption by freight transport,AR-J,SESCO,annual,kg,f7a68628-11fb-379b-98c1-9cbd851f7fa4 -2016,San Juan,II.1.1,0.102795,TJ,N2O,2.0,kg/TJ,0.20559,Naphtha combustion consumption by freight transport,AR-J,SESCO,annual,kg,65f697f9-3782-352d-b427-938269935b33 -2016,San Luis,II.1.1,0.5825049999999999,TJ,CO2,73300.0,kg/TJ,42697.6165,Naphtha combustion consumption by freight transport,AR-D,SESCO,annual,kg,e8b91dcb-1033-39d8-894a-0c438012eb04 -2016,San Luis,II.1.1,0.5825049999999999,TJ,CH4,0.5,kg/TJ,0.29125249999999997,Naphtha combustion consumption by freight transport,AR-D,SESCO,annual,kg,d9c5d427-0c2f-3aa0-9df3-1b3e3298278e -2016,San Luis,II.1.1,0.5825049999999999,TJ,N2O,2.0,kg/TJ,1.1650099999999999,Naphtha combustion consumption by freight transport,AR-D,SESCO,annual,kg,f60d542c-f7b7-3324-a705-192a36fba498 -2016,Santa Cruz,II.1.1,0.102795,TJ,CO2,73300.0,kg/TJ,7534.8735,Naphtha combustion consumption by freight transport,AR-Z,SESCO,annual,kg,03fff120-59bf-34d4-9360-4e2940e49d2d -2016,Santa Cruz,II.1.1,0.102795,TJ,CH4,0.5,kg/TJ,0.0513975,Naphtha combustion consumption by freight transport,AR-Z,SESCO,annual,kg,c5c7fc1d-2b42-3a28-91e3-307dbef7628e -2016,Santa Cruz,II.1.1,0.102795,TJ,N2O,2.0,kg/TJ,0.20559,Naphtha combustion consumption by freight transport,AR-Z,SESCO,annual,kg,eec955cd-e18b-3039-92e5-cb613014ca55 -2016,Santa Fe,II.1.1,27.754649999999998,TJ,CO2,73300.0,kg/TJ,2034415.845,Naphtha combustion consumption by freight transport,AR-S,SESCO,annual,kg,b7148980-241c-3758-800d-87432b10ca41 -2016,Santa Fe,II.1.1,27.754649999999998,TJ,CH4,0.5,kg/TJ,13.877324999999999,Naphtha combustion consumption by freight transport,AR-S,SESCO,annual,kg,9f340570-d52b-3c1e-8427-1a62f2a30e68 -2016,Santa Fe,II.1.1,27.754649999999998,TJ,N2O,2.0,kg/TJ,55.509299999999996,Naphtha combustion consumption by freight transport,AR-S,SESCO,annual,kg,8e05a80a-095f-3529-94e2-14fee87a816e -2016,Santiago del Estero,II.1.1,0.41118,TJ,CO2,73300.0,kg/TJ,30139.494,Naphtha combustion consumption by freight transport,AR-G,SESCO,annual,kg,eeb1a15f-f102-3bed-ada5-2700d1017b13 -2016,Santiago del Estero,II.1.1,0.41118,TJ,CH4,0.5,kg/TJ,0.20559,Naphtha combustion consumption by freight transport,AR-G,SESCO,annual,kg,d6d0ac53-a3b4-3aa6-9610-016f426c8a07 -2016,Santiago del Estero,II.1.1,0.41118,TJ,N2O,2.0,kg/TJ,0.82236,Naphtha combustion consumption by freight transport,AR-G,SESCO,annual,kg,7647a667-c861-37ed-8cae-79e68afb4901 -2016,Tierra del Fuego,II.1.1,0.06853,TJ,CO2,73300.0,kg/TJ,5023.249,Naphtha combustion consumption by freight transport,AR-V,SESCO,annual,kg,7d7d38c7-0606-3141-ab77-a776750a1e44 -2016,Tierra del Fuego,II.1.1,0.06853,TJ,CH4,0.5,kg/TJ,0.034265,Naphtha combustion consumption by freight transport,AR-V,SESCO,annual,kg,883f5208-68ea-3f71-acb8-fbc67dcf1784 -2016,Tierra del Fuego,II.1.1,0.06853,TJ,N2O,2.0,kg/TJ,0.13706,Naphtha combustion consumption by freight transport,AR-V,SESCO,annual,kg,ed51126d-4fbb-3a63-89d7-d957237b20f8 -2016,Tucuman,II.1.1,1.9873699999999999,TJ,CO2,73300.0,kg/TJ,145674.221,Naphtha combustion consumption by freight transport,AR-T,SESCO,annual,kg,bfb74d1b-28f7-397f-a131-5f5a01469fc3 -2016,Tucuman,II.1.1,1.9873699999999999,TJ,CH4,0.5,kg/TJ,0.9936849999999999,Naphtha combustion consumption by freight transport,AR-T,SESCO,annual,kg,b3e113c4-0509-3ad7-a721-d4fe651930ed -2016,Tucuman,II.1.1,1.9873699999999999,TJ,N2O,2.0,kg/TJ,3.9747399999999997,Naphtha combustion consumption by freight transport,AR-T,SESCO,annual,kg,0025b829-7568-3a0b-85d7-8282bd09d9a0 -2016,Buenos Aires,II.1.1,11807.2668,TJ,CO2,74100.0,kg/TJ,874918469.88,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,6b64edc9-5665-30e3-8bc7-57d1e56723d7 -2016,Buenos Aires,II.1.1,11807.2668,TJ,CH4,3.9,kg/TJ,46048.34052,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,2bdcd47c-f9fd-3bb6-8485-999d111e2a24 -2016,Buenos Aires,II.1.1,11807.2668,TJ,N2O,3.9,kg/TJ,46048.34052,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,2bdcd47c-f9fd-3bb6-8485-999d111e2a24 -2016,Capital Federal,II.1.1,2822.4168,TJ,CO2,74100.0,kg/TJ,209141084.88,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,d1d0f6d6-510c-32e6-a4d0-532c64ba0a32 -2016,Capital Federal,II.1.1,2822.4168,TJ,CH4,3.9,kg/TJ,11007.425519999999,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,b56a0163-bd5c-3131-aef5-8f3b87e54e20 -2016,Capital Federal,II.1.1,2822.4168,TJ,N2O,3.9,kg/TJ,11007.425519999999,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,b56a0163-bd5c-3131-aef5-8f3b87e54e20 -2016,Catamarca,II.1.1,222.3186,TJ,CO2,74100.0,kg/TJ,16473808.26,Gas Oil combustion consumption by public passenger transport,AR-K,SESCO,annual,kg,90a659f8-cd58-37ff-af39-182db41bfa24 -2016,Catamarca,II.1.1,222.3186,TJ,CH4,3.9,kg/TJ,867.04254,Gas Oil combustion consumption by public passenger transport,AR-K,SESCO,annual,kg,37e12f22-a53f-384d-a77e-2f577e4850cb -2016,Catamarca,II.1.1,222.3186,TJ,N2O,3.9,kg/TJ,867.04254,Gas Oil combustion consumption by public passenger transport,AR-K,SESCO,annual,kg,37e12f22-a53f-384d-a77e-2f577e4850cb -2016,Chaco,II.1.1,551.69688,TJ,CO2,74100.0,kg/TJ,40880738.808,Gas Oil combustion consumption by public passenger transport,AR-H,SESCO,annual,kg,56ec0bcf-9f32-33f1-9e86-2b7dd143fc9c -2016,Chaco,II.1.1,551.69688,TJ,CH4,3.9,kg/TJ,2151.617832,Gas Oil combustion consumption by public passenger transport,AR-H,SESCO,annual,kg,197d157c-0210-3373-8b95-2910db17b1bb -2016,Chaco,II.1.1,551.69688,TJ,N2O,3.9,kg/TJ,2151.617832,Gas Oil combustion consumption by public passenger transport,AR-H,SESCO,annual,kg,197d157c-0210-3373-8b95-2910db17b1bb -2016,Chubut,II.1.1,182.98391999999998,TJ,CO2,74100.0,kg/TJ,13559108.472,Gas Oil combustion consumption by public passenger transport,AR-U,SESCO,annual,kg,b24f5e01-c0a0-3a24-8c3e-5fe9ba89138e -2016,Chubut,II.1.1,182.98391999999998,TJ,CH4,3.9,kg/TJ,713.6372879999999,Gas Oil combustion consumption by public passenger transport,AR-U,SESCO,annual,kg,0b3c1688-a995-3613-b761-abb213f20f7e -2016,Chubut,II.1.1,182.98391999999998,TJ,N2O,3.9,kg/TJ,713.6372879999999,Gas Oil combustion consumption by public passenger transport,AR-U,SESCO,annual,kg,0b3c1688-a995-3613-b761-abb213f20f7e -2016,Corrientes,II.1.1,535.33452,TJ,CO2,74100.0,kg/TJ,39668287.932,Gas Oil combustion consumption by public passenger transport,AR-W,SESCO,annual,kg,e60483d5-b2ab-3d97-9e14-c2da4bc306f9 -2016,Corrientes,II.1.1,535.33452,TJ,CH4,3.9,kg/TJ,2087.804628,Gas Oil combustion consumption by public passenger transport,AR-W,SESCO,annual,kg,0e0ce8e7-1384-3c91-b039-8e035f396e3b -2016,Corrientes,II.1.1,535.33452,TJ,N2O,3.9,kg/TJ,2087.804628,Gas Oil combustion consumption by public passenger transport,AR-W,SESCO,annual,kg,0e0ce8e7-1384-3c91-b039-8e035f396e3b -2016,Córdoba,II.1.1,1843.2035999999998,TJ,CO2,74100.0,kg/TJ,136581386.76,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,4a1ff20c-36c1-3d82-9f06-ec569e8eeadd -2016,Córdoba,II.1.1,1843.2035999999998,TJ,CH4,3.9,kg/TJ,7188.49404,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,d6a47217-c473-3f75-bf42-3d7075f0c376 -2016,Córdoba,II.1.1,1843.2035999999998,TJ,N2O,3.9,kg/TJ,7188.49404,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,d6a47217-c473-3f75-bf42-3d7075f0c376 -2016,Entre Rios,II.1.1,513.66252,TJ,CO2,74100.0,kg/TJ,38062392.732,Gas Oil combustion consumption by public passenger transport,AR-E,SESCO,annual,kg,17ce69b3-4faa-3365-a953-f9af4eaa27ae -2016,Entre Rios,II.1.1,513.66252,TJ,CH4,3.9,kg/TJ,2003.2838279999999,Gas Oil combustion consumption by public passenger transport,AR-E,SESCO,annual,kg,d7566903-66cf-34e1-aa3c-48fe45d36e34 -2016,Entre Rios,II.1.1,513.66252,TJ,N2O,3.9,kg/TJ,2003.2838279999999,Gas Oil combustion consumption by public passenger transport,AR-E,SESCO,annual,kg,d7566903-66cf-34e1-aa3c-48fe45d36e34 -2016,Formosa,II.1.1,75.02123999999999,TJ,CO2,74100.0,kg/TJ,5559073.884,Gas Oil combustion consumption by public passenger transport,AR-P,SESCO,annual,kg,a982866e-61c1-3675-9072-724a2622c571 -2016,Formosa,II.1.1,75.02123999999999,TJ,CH4,3.9,kg/TJ,292.582836,Gas Oil combustion consumption by public passenger transport,AR-P,SESCO,annual,kg,88f6a37c-244f-35b4-b284-e43103a42595 -2016,Formosa,II.1.1,75.02123999999999,TJ,N2O,3.9,kg/TJ,292.582836,Gas Oil combustion consumption by public passenger transport,AR-P,SESCO,annual,kg,88f6a37c-244f-35b4-b284-e43103a42595 -2016,Jujuy,II.1.1,684.6546,TJ,CO2,74100.0,kg/TJ,50732905.86,Gas Oil combustion consumption by public passenger transport,AR-Y,SESCO,annual,kg,9eddc1d1-8862-35ff-b7e5-a4f1afb07cda -2016,Jujuy,II.1.1,684.6546,TJ,CH4,3.9,kg/TJ,2670.15294,Gas Oil combustion consumption by public passenger transport,AR-Y,SESCO,annual,kg,1b30c1e5-53b5-3be5-9efe-6653b267e2dd -2016,Jujuy,II.1.1,684.6546,TJ,N2O,3.9,kg/TJ,2670.15294,Gas Oil combustion consumption by public passenger transport,AR-Y,SESCO,annual,kg,1b30c1e5-53b5-3be5-9efe-6653b267e2dd -2016,La Pampa,II.1.1,49.77336,TJ,CO2,74100.0,kg/TJ,3688205.976,Gas Oil combustion consumption by public passenger transport,AR-L,SESCO,annual,kg,ed211ce8-8431-3b3f-bfe8-4a434491c212 -2016,La Pampa,II.1.1,49.77336,TJ,CH4,3.9,kg/TJ,194.11610399999998,Gas Oil combustion consumption by public passenger transport,AR-L,SESCO,annual,kg,37732118-f581-3830-9900-91bfbf06e0fe -2016,La Pampa,II.1.1,49.77336,TJ,N2O,3.9,kg/TJ,194.11610399999998,Gas Oil combustion consumption by public passenger transport,AR-L,SESCO,annual,kg,37732118-f581-3830-9900-91bfbf06e0fe -2016,La Rioja,II.1.1,140.25396,TJ,CO2,74100.0,kg/TJ,10392818.436,Gas Oil combustion consumption by public passenger transport,AR-F,SESCO,annual,kg,e791a827-8759-3bdf-a6cf-770abda85917 -2016,La Rioja,II.1.1,140.25396,TJ,CH4,3.9,kg/TJ,546.990444,Gas Oil combustion consumption by public passenger transport,AR-F,SESCO,annual,kg,8a51e3b3-7986-3a20-9919-b1750d424b0b -2016,La Rioja,II.1.1,140.25396,TJ,N2O,3.9,kg/TJ,546.990444,Gas Oil combustion consumption by public passenger transport,AR-F,SESCO,annual,kg,8a51e3b3-7986-3a20-9919-b1750d424b0b -2016,Mendoza,II.1.1,1921.1505599999998,TJ,CO2,74100.0,kg/TJ,142357256.496,Gas Oil combustion consumption by public passenger transport,AR-M,SESCO,annual,kg,4d43614e-e900-3f3c-bcf6-54e088f6c0b2 -2016,Mendoza,II.1.1,1921.1505599999998,TJ,CH4,3.9,kg/TJ,7492.487183999999,Gas Oil combustion consumption by public passenger transport,AR-M,SESCO,annual,kg,45763dea-1e9a-3fda-b9ac-2bfdae795cf5 -2016,Mendoza,II.1.1,1921.1505599999998,TJ,N2O,3.9,kg/TJ,7492.487183999999,Gas Oil combustion consumption by public passenger transport,AR-M,SESCO,annual,kg,45763dea-1e9a-3fda-b9ac-2bfdae795cf5 -2016,Misiones,II.1.1,1264.6334399999998,TJ,CO2,74100.0,kg/TJ,93709337.90399998,Gas Oil combustion consumption by public passenger transport,AR-N,SESCO,annual,kg,8661fcce-d8c8-3de4-b7d4-beb420a048ca -2016,Misiones,II.1.1,1264.6334399999998,TJ,CH4,3.9,kg/TJ,4932.070416,Gas Oil combustion consumption by public passenger transport,AR-N,SESCO,annual,kg,8201489c-2f7b-3c12-8a72-906890abda4b -2016,Misiones,II.1.1,1264.6334399999998,TJ,N2O,3.9,kg/TJ,4932.070416,Gas Oil combustion consumption by public passenger transport,AR-N,SESCO,annual,kg,8201489c-2f7b-3c12-8a72-906890abda4b -2016,Neuquén,II.1.1,307.99523999999997,TJ,CO2,74100.0,kg/TJ,22822447.283999998,Gas Oil combustion consumption by public passenger transport,AR-Q,SESCO,annual,kg,a013b5ea-cbbf-3c3a-84e8-68d9adfe5bd1 -2016,Neuquén,II.1.1,307.99523999999997,TJ,CH4,3.9,kg/TJ,1201.1814359999998,Gas Oil combustion consumption by public passenger transport,AR-Q,SESCO,annual,kg,5bedc6a3-78ca-3260-87fa-382a026fb803 -2016,Neuquén,II.1.1,307.99523999999997,TJ,N2O,3.9,kg/TJ,1201.1814359999998,Gas Oil combustion consumption by public passenger transport,AR-Q,SESCO,annual,kg,5bedc6a3-78ca-3260-87fa-382a026fb803 -2016,Rio Negro,II.1.1,534.68436,TJ,CO2,74100.0,kg/TJ,39620111.076,Gas Oil combustion consumption by public passenger transport,AR-R,SESCO,annual,kg,4d8bcfea-ded7-3544-a7bf-a319d3b8087b -2016,Rio Negro,II.1.1,534.68436,TJ,CH4,3.9,kg/TJ,2085.2690039999998,Gas Oil combustion consumption by public passenger transport,AR-R,SESCO,annual,kg,93b287b9-3227-3c85-97c9-492609dd867d -2016,Rio Negro,II.1.1,534.68436,TJ,N2O,3.9,kg/TJ,2085.2690039999998,Gas Oil combustion consumption by public passenger transport,AR-R,SESCO,annual,kg,93b287b9-3227-3c85-97c9-492609dd867d -2016,Salta,II.1.1,899.8575599999999,TJ,CO2,74100.0,kg/TJ,66679445.195999995,Gas Oil combustion consumption by public passenger transport,AR-A,SESCO,annual,kg,389ada43-6786-392b-9f7e-f2db2128a892 -2016,Salta,II.1.1,899.8575599999999,TJ,CH4,3.9,kg/TJ,3509.4444839999996,Gas Oil combustion consumption by public passenger transport,AR-A,SESCO,annual,kg,3ca10586-a9d3-3d1d-8398-476c84f09ec0 -2016,Salta,II.1.1,899.8575599999999,TJ,N2O,3.9,kg/TJ,3509.4444839999996,Gas Oil combustion consumption by public passenger transport,AR-A,SESCO,annual,kg,3ca10586-a9d3-3d1d-8398-476c84f09ec0 -2016,San Juan,II.1.1,524.17344,TJ,CO2,74100.0,kg/TJ,38841251.904,Gas Oil combustion consumption by public passenger transport,AR-J,SESCO,annual,kg,cde4f3d2-de10-3eee-8987-02efa0e6bc97 -2016,San Juan,II.1.1,524.17344,TJ,CH4,3.9,kg/TJ,2044.2764160000002,Gas Oil combustion consumption by public passenger transport,AR-J,SESCO,annual,kg,4e367c2a-677e-37a0-b82b-20d79188c463 -2016,San Juan,II.1.1,524.17344,TJ,N2O,3.9,kg/TJ,2044.2764160000002,Gas Oil combustion consumption by public passenger transport,AR-J,SESCO,annual,kg,4e367c2a-677e-37a0-b82b-20d79188c463 -2016,San Luis,II.1.1,163.76808,TJ,CO2,74100.0,kg/TJ,12135214.728,Gas Oil combustion consumption by public passenger transport,AR-D,SESCO,annual,kg,a9ce02ff-e5c6-3975-aeb7-634e42a92798 -2016,San Luis,II.1.1,163.76808,TJ,CH4,3.9,kg/TJ,638.695512,Gas Oil combustion consumption by public passenger transport,AR-D,SESCO,annual,kg,0f950783-a81a-3272-b8c2-3451bf707f68 -2016,San Luis,II.1.1,163.76808,TJ,N2O,3.9,kg/TJ,638.695512,Gas Oil combustion consumption by public passenger transport,AR-D,SESCO,annual,kg,0f950783-a81a-3272-b8c2-3451bf707f68 -2016,Santa Cruz,II.1.1,27.884639999999997,TJ,CO2,74100.0,kg/TJ,2066251.8239999998,Gas Oil combustion consumption by public passenger transport,AR-Z,SESCO,annual,kg,c17ef06d-aa60-32b9-b0d5-9c3f1eab7183 -2016,Santa Cruz,II.1.1,27.884639999999997,TJ,CH4,3.9,kg/TJ,108.75009599999998,Gas Oil combustion consumption by public passenger transport,AR-Z,SESCO,annual,kg,39eb08b6-255b-390f-8e44-9a3ab76869b8 -2016,Santa Cruz,II.1.1,27.884639999999997,TJ,N2O,3.9,kg/TJ,108.75009599999998,Gas Oil combustion consumption by public passenger transport,AR-Z,SESCO,annual,kg,39eb08b6-255b-390f-8e44-9a3ab76869b8 -2016,Santa Fe,II.1.1,1971.7185599999998,TJ,CO2,74100.0,kg/TJ,146104345.29599997,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,e45b8b28-e068-3628-a744-b3435a46dca7 -2016,Santa Fe,II.1.1,1971.7185599999998,TJ,CH4,3.9,kg/TJ,7689.702383999999,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,c97cac4f-771b-3cda-bf52-a8c2d71bd630 -2016,Santa Fe,II.1.1,1971.7185599999998,TJ,N2O,3.9,kg/TJ,7689.702383999999,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,c97cac4f-771b-3cda-bf52-a8c2d71bd630 -2016,Santiago del Estero,II.1.1,270.61104,TJ,CO2,74100.0,kg/TJ,20052278.064,Gas Oil combustion consumption by public passenger transport,AR-G,SESCO,annual,kg,586d567f-630f-33f8-b460-8872a3bdf51c -2016,Santiago del Estero,II.1.1,270.61104,TJ,CH4,3.9,kg/TJ,1055.383056,Gas Oil combustion consumption by public passenger transport,AR-G,SESCO,annual,kg,737be1cc-2014-322b-84f7-b74c34f76d37 -2016,Santiago del Estero,II.1.1,270.61104,TJ,N2O,3.9,kg/TJ,1055.383056,Gas Oil combustion consumption by public passenger transport,AR-G,SESCO,annual,kg,737be1cc-2014-322b-84f7-b74c34f76d37 -2016,Tierra del Fuego,II.1.1,18.92688,TJ,CO2,74100.0,kg/TJ,1402481.808,Gas Oil combustion consumption by public passenger transport,AR-V,SESCO,annual,kg,bf7040dc-4ea2-3602-9c2b-1ae2ae454ee4 -2016,Tierra del Fuego,II.1.1,18.92688,TJ,CH4,3.9,kg/TJ,73.814832,Gas Oil combustion consumption by public passenger transport,AR-V,SESCO,annual,kg,47ce67ac-2e24-3a5f-baac-e9d6a51c8766 -2016,Tierra del Fuego,II.1.1,18.92688,TJ,N2O,3.9,kg/TJ,73.814832,Gas Oil combustion consumption by public passenger transport,AR-V,SESCO,annual,kg,47ce67ac-2e24-3a5f-baac-e9d6a51c8766 -2016,Tucuman,II.1.1,1305.1961999999999,TJ,CO2,74100.0,kg/TJ,96715038.41999999,Gas Oil combustion consumption by public passenger transport,AR-T,SESCO,annual,kg,403bbbd7-c667-3c18-bec3-230489ed9f1f -2016,Tucuman,II.1.1,1305.1961999999999,TJ,CH4,3.9,kg/TJ,5090.265179999999,Gas Oil combustion consumption by public passenger transport,AR-T,SESCO,annual,kg,d2a4e265-0b7c-39fc-999e-58f8643a4726 -2016,Tucuman,II.1.1,1305.1961999999999,TJ,N2O,3.9,kg/TJ,5090.265179999999,Gas Oil combustion consumption by public passenger transport,AR-T,SESCO,annual,kg,d2a4e265-0b7c-39fc-999e-58f8643a4726 -2016,Buenos Aires,II.1.1,197.21519999999998,TJ,CO2,74100.0,kg/TJ,14613646.319999998,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,9de9a190-a450-30f2-944d-a40857212689 -2016,Buenos Aires,II.1.1,197.21519999999998,TJ,CH4,3.9,kg/TJ,769.1392799999999,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,2870f6dd-31f7-3bf2-a254-5dca7ab41e63 -2016,Buenos Aires,II.1.1,197.21519999999998,TJ,N2O,3.9,kg/TJ,769.1392799999999,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,2870f6dd-31f7-3bf2-a254-5dca7ab41e63 -2016,Capital Federal,II.1.1,16.21788,TJ,CO2,74100.0,kg/TJ,1201744.908,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,e54de786-4eb9-33ed-9225-528960a05cbf -2016,Capital Federal,II.1.1,16.21788,TJ,CH4,3.9,kg/TJ,63.249732,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,559b1da0-6f89-3985-9eb0-c01b4f2543dc -2016,Capital Federal,II.1.1,16.21788,TJ,N2O,3.9,kg/TJ,63.249732,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,559b1da0-6f89-3985-9eb0-c01b4f2543dc -2016,Catamarca,II.1.1,1.51704,TJ,CO2,74100.0,kg/TJ,112412.66399999999,Gas Oil combustion consumption by public passenger transport,AR-K,SESCO,annual,kg,a9e3decb-cb9c-300b-b56a-490ad92cd049 -2016,Catamarca,II.1.1,1.51704,TJ,CH4,3.9,kg/TJ,5.916455999999999,Gas Oil combustion consumption by public passenger transport,AR-K,SESCO,annual,kg,6f889af1-64ac-3e53-a823-8754ca5473a7 -2016,Catamarca,II.1.1,1.51704,TJ,N2O,3.9,kg/TJ,5.916455999999999,Gas Oil combustion consumption by public passenger transport,AR-K,SESCO,annual,kg,6f889af1-64ac-3e53-a823-8754ca5473a7 -2016,Chaco,II.1.1,0.36119999999999997,TJ,CO2,74100.0,kg/TJ,26764.92,Gas Oil combustion consumption by public passenger transport,AR-H,SESCO,annual,kg,77852307-07b7-3fc6-9e4a-0cb36d2d8d53 -2016,Chaco,II.1.1,0.36119999999999997,TJ,CH4,3.9,kg/TJ,1.40868,Gas Oil combustion consumption by public passenger transport,AR-H,SESCO,annual,kg,482dc135-d506-38b7-8495-85d6110528e9 -2016,Chaco,II.1.1,0.36119999999999997,TJ,N2O,3.9,kg/TJ,1.40868,Gas Oil combustion consumption by public passenger transport,AR-H,SESCO,annual,kg,482dc135-d506-38b7-8495-85d6110528e9 -2016,Chubut,II.1.1,17.08476,TJ,CO2,74100.0,kg/TJ,1265980.716,Gas Oil combustion consumption by public passenger transport,AR-U,SESCO,annual,kg,a8d6f83e-d1aa-3454-b597-bbcdd4bc8d34 -2016,Chubut,II.1.1,17.08476,TJ,CH4,3.9,kg/TJ,66.63056399999999,Gas Oil combustion consumption by public passenger transport,AR-U,SESCO,annual,kg,09bda723-5956-3bfd-bd46-226eaecaf7ab -2016,Chubut,II.1.1,17.08476,TJ,N2O,3.9,kg/TJ,66.63056399999999,Gas Oil combustion consumption by public passenger transport,AR-U,SESCO,annual,kg,09bda723-5956-3bfd-bd46-226eaecaf7ab -2016,Corrientes,II.1.1,0.6140399999999999,TJ,CO2,74100.0,kg/TJ,45500.363999999994,Gas Oil combustion consumption by public passenger transport,AR-W,SESCO,annual,kg,8c85d100-2fdc-3e1d-8d01-2d6105bae0de -2016,Corrientes,II.1.1,0.6140399999999999,TJ,CH4,3.9,kg/TJ,2.3947559999999997,Gas Oil combustion consumption by public passenger transport,AR-W,SESCO,annual,kg,77a893dd-19d4-3b4a-8dc1-8b652a9c9dbf -2016,Corrientes,II.1.1,0.6140399999999999,TJ,N2O,3.9,kg/TJ,2.3947559999999997,Gas Oil combustion consumption by public passenger transport,AR-W,SESCO,annual,kg,77a893dd-19d4-3b4a-8dc1-8b652a9c9dbf -2016,Córdoba,II.1.1,18.348959999999998,TJ,CO2,74100.0,kg/TJ,1359657.9359999998,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,482321cf-4511-3080-a7a7-fdb7f694380e -2016,Córdoba,II.1.1,18.348959999999998,TJ,CH4,3.9,kg/TJ,71.56094399999999,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,d9f000ca-531f-3348-9de4-4a14f29b2cdb -2016,Córdoba,II.1.1,18.348959999999998,TJ,N2O,3.9,kg/TJ,71.56094399999999,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,d9f000ca-531f-3348-9de4-4a14f29b2cdb -2016,Entre Rios,II.1.1,0.10836,TJ,CO2,74100.0,kg/TJ,8029.476,Gas Oil combustion consumption by public passenger transport,AR-E,SESCO,annual,kg,69a4cfd6-c1a7-3438-a912-7c72e1dc1240 -2016,Entre Rios,II.1.1,0.10836,TJ,CH4,3.9,kg/TJ,0.422604,Gas Oil combustion consumption by public passenger transport,AR-E,SESCO,annual,kg,9b56ed13-146c-35b6-9929-9cc7f814afd9 -2016,Entre Rios,II.1.1,0.10836,TJ,N2O,3.9,kg/TJ,0.422604,Gas Oil combustion consumption by public passenger transport,AR-E,SESCO,annual,kg,9b56ed13-146c-35b6-9929-9cc7f814afd9 -2016,La Rioja,II.1.1,0.14448,TJ,CO2,74100.0,kg/TJ,10705.967999999999,Gas Oil combustion consumption by public passenger transport,AR-F,SESCO,annual,kg,0f9fc0a2-18fb-3576-a802-5a2d657ce0e3 -2016,La Rioja,II.1.1,0.14448,TJ,CH4,3.9,kg/TJ,0.563472,Gas Oil combustion consumption by public passenger transport,AR-F,SESCO,annual,kg,2624729b-8f4c-3a70-b11b-f9b1e0be4e4f -2016,La Rioja,II.1.1,0.14448,TJ,N2O,3.9,kg/TJ,0.563472,Gas Oil combustion consumption by public passenger transport,AR-F,SESCO,annual,kg,2624729b-8f4c-3a70-b11b-f9b1e0be4e4f -2016,Mendoza,II.1.1,4.08156,TJ,CO2,74100.0,kg/TJ,302443.59599999996,Gas Oil combustion consumption by public passenger transport,AR-M,SESCO,annual,kg,b668b0d4-c35e-32b3-9971-bba6ef55f405 -2016,Mendoza,II.1.1,4.08156,TJ,CH4,3.9,kg/TJ,15.918083999999999,Gas Oil combustion consumption by public passenger transport,AR-M,SESCO,annual,kg,d5eea2f1-9abb-3583-a973-a73cad085546 -2016,Mendoza,II.1.1,4.08156,TJ,N2O,3.9,kg/TJ,15.918083999999999,Gas Oil combustion consumption by public passenger transport,AR-M,SESCO,annual,kg,d5eea2f1-9abb-3583-a973-a73cad085546 -2016,Misiones,II.1.1,6.8989199999999995,TJ,CO2,74100.0,kg/TJ,511209.97199999995,Gas Oil combustion consumption by public passenger transport,AR-N,SESCO,annual,kg,bc006969-7453-3b57-8994-5ec1a6c75bc0 -2016,Misiones,II.1.1,6.8989199999999995,TJ,CH4,3.9,kg/TJ,26.905787999999998,Gas Oil combustion consumption by public passenger transport,AR-N,SESCO,annual,kg,4ac1e0b4-d845-392d-88f5-05fa2929b837 -2016,Misiones,II.1.1,6.8989199999999995,TJ,N2O,3.9,kg/TJ,26.905787999999998,Gas Oil combustion consumption by public passenger transport,AR-N,SESCO,annual,kg,4ac1e0b4-d845-392d-88f5-05fa2929b837 -2016,Neuquén,II.1.1,0.14448,TJ,CO2,74100.0,kg/TJ,10705.967999999999,Gas Oil combustion consumption by public passenger transport,AR-Q,SESCO,annual,kg,718af895-5852-3f80-979b-9c482e49f1c3 -2016,Neuquén,II.1.1,0.14448,TJ,CH4,3.9,kg/TJ,0.563472,Gas Oil combustion consumption by public passenger transport,AR-Q,SESCO,annual,kg,b599201c-898f-31ef-abbb-9945a9e87931 -2016,Neuquén,II.1.1,0.14448,TJ,N2O,3.9,kg/TJ,0.563472,Gas Oil combustion consumption by public passenger transport,AR-Q,SESCO,annual,kg,b599201c-898f-31ef-abbb-9945a9e87931 -2016,Rio Negro,II.1.1,16.65132,TJ,CO2,74100.0,kg/TJ,1233862.812,Gas Oil combustion consumption by public passenger transport,AR-R,SESCO,annual,kg,9696cbf7-6df9-35f5-aa11-ff9d530c0089 -2016,Rio Negro,II.1.1,16.65132,TJ,CH4,3.9,kg/TJ,64.940148,Gas Oil combustion consumption by public passenger transport,AR-R,SESCO,annual,kg,28d2a7a5-ffa9-36c2-8927-7ea7053667ac -2016,Rio Negro,II.1.1,16.65132,TJ,N2O,3.9,kg/TJ,64.940148,Gas Oil combustion consumption by public passenger transport,AR-R,SESCO,annual,kg,28d2a7a5-ffa9-36c2-8927-7ea7053667ac -2016,Salta,II.1.1,3.7925999999999997,TJ,CO2,74100.0,kg/TJ,281031.66,Gas Oil combustion consumption by public passenger transport,AR-A,SESCO,annual,kg,4ed62cf0-8b52-3b40-9ce2-7b1221c0c74a -2016,Salta,II.1.1,3.7925999999999997,TJ,CH4,3.9,kg/TJ,14.791139999999999,Gas Oil combustion consumption by public passenger transport,AR-A,SESCO,annual,kg,44a1d30d-03b7-344b-abda-c4aede2054ab -2016,Salta,II.1.1,3.7925999999999997,TJ,N2O,3.9,kg/TJ,14.791139999999999,Gas Oil combustion consumption by public passenger transport,AR-A,SESCO,annual,kg,44a1d30d-03b7-344b-abda-c4aede2054ab -2016,San Juan,II.1.1,14.484119999999999,TJ,CO2,74100.0,kg/TJ,1073273.292,Gas Oil combustion consumption by public passenger transport,AR-J,SESCO,annual,kg,32d0040d-8e11-3f92-848b-6a2caf524937 -2016,San Juan,II.1.1,14.484119999999999,TJ,CH4,3.9,kg/TJ,56.48806799999999,Gas Oil combustion consumption by public passenger transport,AR-J,SESCO,annual,kg,0847cdec-852a-325a-8ee2-f7c9710125c7 -2016,San Juan,II.1.1,14.484119999999999,TJ,N2O,3.9,kg/TJ,56.48806799999999,Gas Oil combustion consumption by public passenger transport,AR-J,SESCO,annual,kg,0847cdec-852a-325a-8ee2-f7c9710125c7 -2016,Santa Fe,II.1.1,6.42936,TJ,CO2,74100.0,kg/TJ,476415.576,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,bee6046d-4f8b-36ba-9658-3195e0c202e9 -2016,Santa Fe,II.1.1,6.42936,TJ,CH4,3.9,kg/TJ,25.074504,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,c6a3a802-d7da-3c72-b3b3-42f2a1e3352f -2016,Santa Fe,II.1.1,6.42936,TJ,N2O,3.9,kg/TJ,25.074504,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,c6a3a802-d7da-3c72-b3b3-42f2a1e3352f -2016,Santiago del Estero,II.1.1,0.79464,TJ,CO2,74100.0,kg/TJ,58882.824,Gas Oil combustion consumption by public passenger transport,AR-G,SESCO,annual,kg,ca406244-8172-39b0-99af-a624f00b1e70 -2016,Santiago del Estero,II.1.1,0.79464,TJ,CH4,3.9,kg/TJ,3.099096,Gas Oil combustion consumption by public passenger transport,AR-G,SESCO,annual,kg,28e25b1d-b28d-3f63-8222-25e81195204f -2016,Santiago del Estero,II.1.1,0.79464,TJ,N2O,3.9,kg/TJ,3.099096,Gas Oil combustion consumption by public passenger transport,AR-G,SESCO,annual,kg,28e25b1d-b28d-3f63-8222-25e81195204f -2016,Tucuman,II.1.1,4.5872399999999995,TJ,CO2,74100.0,kg/TJ,339914.48399999994,Gas Oil combustion consumption by public passenger transport,AR-T,SESCO,annual,kg,878a045f-d90e-3777-9ed1-745dc711c633 -2016,Tucuman,II.1.1,4.5872399999999995,TJ,CH4,3.9,kg/TJ,17.890235999999998,Gas Oil combustion consumption by public passenger transport,AR-T,SESCO,annual,kg,9cb4464a-3207-39d1-8d94-012b3b88d4e0 -2016,Tucuman,II.1.1,4.5872399999999995,TJ,N2O,3.9,kg/TJ,17.890235999999998,Gas Oil combustion consumption by public passenger transport,AR-T,SESCO,annual,kg,9cb4464a-3207-39d1-8d94-012b3b88d4e0 -2017,Buenos Aires,II.5.1,159.00024,TJ,CO2,74100.0,kg/TJ,11781917.784,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,14fbfc32-e4ec-3ede-a47e-ca9d80346480 -2017,Buenos Aires,II.5.1,159.00024,TJ,CH4,3.9,kg/TJ,620.1009359999999,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,790c3e61-105f-39af-bdc5-641d19d22889 -2017,Buenos Aires,II.5.1,159.00024,TJ,N2O,3.9,kg/TJ,620.1009359999999,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,790c3e61-105f-39af-bdc5-641d19d22889 -2017,Chaco,II.5.1,4.29828,TJ,CO2,74100.0,kg/TJ,318502.548,Gas Oil combustion consumption by agriculture machines,AR-H,SESCO,annual,kg,2a7b22a8-3d37-393a-b2ac-37747e71ba46 -2017,Chaco,II.5.1,4.29828,TJ,CH4,3.9,kg/TJ,16.763292,Gas Oil combustion consumption by agriculture machines,AR-H,SESCO,annual,kg,5b1df199-ee37-3a5e-a872-3a30b55b303c -2017,Chaco,II.5.1,4.29828,TJ,N2O,3.9,kg/TJ,16.763292,Gas Oil combustion consumption by agriculture machines,AR-H,SESCO,annual,kg,5b1df199-ee37-3a5e-a872-3a30b55b303c -2017,Corrientes,II.5.1,1.30032,TJ,CO2,74100.0,kg/TJ,96353.712,Gas Oil combustion consumption by agriculture machines,AR-W,SESCO,annual,kg,7f54f3eb-c1db-3616-bc84-8ad9e6f1a374 -2017,Corrientes,II.5.1,1.30032,TJ,CH4,3.9,kg/TJ,5.071248,Gas Oil combustion consumption by agriculture machines,AR-W,SESCO,annual,kg,83fe8447-74c4-3e68-bbcf-8572f3b06c17 -2017,Corrientes,II.5.1,1.30032,TJ,N2O,3.9,kg/TJ,5.071248,Gas Oil combustion consumption by agriculture machines,AR-W,SESCO,annual,kg,83fe8447-74c4-3e68-bbcf-8572f3b06c17 -2017,Córdoba,II.5.1,163.19016,TJ,CO2,74100.0,kg/TJ,12092390.855999999,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,3b021822-bf2f-381f-8fd5-ef33c0953b57 -2017,Córdoba,II.5.1,163.19016,TJ,CH4,3.9,kg/TJ,636.4416239999999,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,5725368e-9201-3af8-af41-d7120481bfa5 -2017,Córdoba,II.5.1,163.19016,TJ,N2O,3.9,kg/TJ,636.4416239999999,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,5725368e-9201-3af8-af41-d7120481bfa5 -2017,Santa Fe,II.5.1,355.85424,TJ,CO2,74100.0,kg/TJ,26368799.184,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,5acc04ee-2ad5-348d-a2c4-1eb28e9db549 -2017,Santa Fe,II.5.1,355.85424,TJ,CH4,3.9,kg/TJ,1387.831536,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,95a6abb5-c78b-32ba-9be0-df66107e5043 -2017,Santa Fe,II.5.1,355.85424,TJ,N2O,3.9,kg/TJ,1387.831536,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,95a6abb5-c78b-32ba-9be0-df66107e5043 -2017,Tucuman,II.5.1,25.825799999999997,TJ,CO2,74100.0,kg/TJ,1913691.7799999998,Gas Oil combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,76f945d0-88bd-3107-802e-880843c2a3ba -2017,Tucuman,II.5.1,25.825799999999997,TJ,CH4,3.9,kg/TJ,100.72061999999998,Gas Oil combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,8a9fbd17-d342-38b7-b743-c2804f561f8c -2017,Tucuman,II.5.1,25.825799999999997,TJ,N2O,3.9,kg/TJ,100.72061999999998,Gas Oil combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,8a9fbd17-d342-38b7-b743-c2804f561f8c -2017,Buenos Aires,II.5.1,19.866,TJ,CO2,74100.0,kg/TJ,1472070.5999999999,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,5b1f9e30-da79-3d84-ba85-85ff770a7638 -2017,Buenos Aires,II.5.1,19.866,TJ,CH4,3.9,kg/TJ,77.4774,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,1d719c61-efbf-3575-8ab9-717e2f2250b5 -2017,Buenos Aires,II.5.1,19.866,TJ,N2O,3.9,kg/TJ,77.4774,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,1d719c61-efbf-3575-8ab9-717e2f2250b5 -2017,Chaco,II.5.1,1.2642,TJ,CO2,74100.0,kg/TJ,93677.22,Gas Oil combustion consumption by agriculture machines,AR-H,SESCO,annual,kg,6b62d8de-47f1-38a9-a20d-ce6683388f87 -2017,Chaco,II.5.1,1.2642,TJ,CH4,3.9,kg/TJ,4.9303799999999995,Gas Oil combustion consumption by agriculture machines,AR-H,SESCO,annual,kg,e9bad7bf-5759-3e79-b175-400b10d2a7a9 -2017,Chaco,II.5.1,1.2642,TJ,N2O,3.9,kg/TJ,4.9303799999999995,Gas Oil combustion consumption by agriculture machines,AR-H,SESCO,annual,kg,e9bad7bf-5759-3e79-b175-400b10d2a7a9 -2017,Córdoba,II.5.1,10.22196,TJ,CO2,74100.0,kg/TJ,757447.2359999999,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,dd122313-b5cd-3bf2-909f-ba5dd6c642e7 -2017,Córdoba,II.5.1,10.22196,TJ,CH4,3.9,kg/TJ,39.865643999999996,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,b3ce7d44-49dd-30c4-b0df-c076ca363931 -2017,Córdoba,II.5.1,10.22196,TJ,N2O,3.9,kg/TJ,39.865643999999996,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,b3ce7d44-49dd-30c4-b0df-c076ca363931 -2017,Santa Fe,II.5.1,33.230399999999996,TJ,CO2,74100.0,kg/TJ,2462372.6399999997,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,bcf52b9a-654a-324e-ace3-5398b52a0071 -2017,Santa Fe,II.5.1,33.230399999999996,TJ,CH4,3.9,kg/TJ,129.59856,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,0b0b219e-26b0-3ef5-8eb7-91c580a47afb -2017,Santa Fe,II.5.1,33.230399999999996,TJ,N2O,3.9,kg/TJ,129.59856,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,0b0b219e-26b0-3ef5-8eb7-91c580a47afb -2017,Tucuman,II.5.1,21.23856,TJ,CO2,74100.0,kg/TJ,1573777.296,Gas Oil combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,41dc9f3e-29f2-3d6c-88f1-c3ee9063de3c -2017,Tucuman,II.5.1,21.23856,TJ,CH4,3.9,kg/TJ,82.830384,Gas Oil combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,c88168d6-3bed-3f94-a966-f72985b019f7 -2017,Tucuman,II.5.1,21.23856,TJ,N2O,3.9,kg/TJ,82.830384,Gas Oil combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,c88168d6-3bed-3f94-a966-f72985b019f7 -2017,Córdoba,II.5.1,0.8806839999999999,TJ,CO2,71500.0,kg/TJ,62968.905999999995,Jet Kerosene combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,bfbeaf75-bedf-30ed-9aaa-b545bb5fcfc0 -2017,Córdoba,II.5.1,0.8806839999999999,TJ,CH4,0.5,kg/TJ,0.44034199999999996,Jet Kerosene combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,a2ef41ba-a921-34c4-8f0f-2656c6a9d0c0 -2017,Córdoba,II.5.1,0.8806839999999999,TJ,N2O,2.0,kg/TJ,1.7613679999999998,Jet Kerosene combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,e6210f1a-6db7-3306-b484-1404c6f5c274 -2017,Buenos Aires,II.5.1,51.260439999999996,TJ,CO2,73300.0,kg/TJ,3757390.252,Naphtha combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,536e944a-fce4-380d-9ea1-30bcf4a83255 -2017,Buenos Aires,II.5.1,51.260439999999996,TJ,CH4,0.5,kg/TJ,25.630219999999998,Naphtha combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,fcf86fc6-1c9e-30a8-8661-b9a1534a8f23 -2017,Buenos Aires,II.5.1,51.260439999999996,TJ,N2O,2.0,kg/TJ,102.52087999999999,Naphtha combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,66422ad8-a814-3606-b149-18f5208b7333 -2017,Chaco,II.5.1,20.49047,TJ,CO2,73300.0,kg/TJ,1501951.451,Naphtha combustion consumption by agriculture machines,AR-H,SESCO,annual,kg,f13bebcb-bf0f-3c52-9c85-98fba045dcb5 -2017,Chaco,II.5.1,20.49047,TJ,CH4,0.5,kg/TJ,10.245235,Naphtha combustion consumption by agriculture machines,AR-H,SESCO,annual,kg,335dee38-04fe-37ea-9cfc-494b307bc6c3 -2017,Chaco,II.5.1,20.49047,TJ,N2O,2.0,kg/TJ,40.98094,Naphtha combustion consumption by agriculture machines,AR-H,SESCO,annual,kg,9486a924-911d-33fc-a82a-01bce3f41156 -2017,Córdoba,II.5.1,10.039645,TJ,CO2,73300.0,kg/TJ,735905.9785,Naphtha combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,a70b538c-e9af-3c4e-9783-603d864b4113 -2017,Córdoba,II.5.1,10.039645,TJ,CH4,0.5,kg/TJ,5.0198225,Naphtha combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,845f5ed3-9651-325d-b245-a2ebfef41d31 -2017,Córdoba,II.5.1,10.039645,TJ,N2O,2.0,kg/TJ,20.07929,Naphtha combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,8fc83b48-6d82-3401-93f2-5a2691233035 -2017,Santa Fe,II.5.1,61.985384999999994,TJ,CO2,73300.0,kg/TJ,4543528.7205,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,380b236a-5fb4-32f9-b2f0-3d0a1c83ab75 -2017,Santa Fe,II.5.1,61.985384999999994,TJ,CH4,0.5,kg/TJ,30.992692499999997,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,684edd70-e841-3d9a-8eb9-5d53273e70ba -2017,Santa Fe,II.5.1,61.985384999999994,TJ,N2O,2.0,kg/TJ,123.97076999999999,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,573b0bf0-eb45-3bfd-908d-91d64b53fc37 -2017,Tucuman,II.5.1,43.24243,TJ,CO2,73300.0,kg/TJ,3169670.119,Naphtha combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,14d5fb2d-0deb-3d72-a050-40a672ae5d12 -2017,Tucuman,II.5.1,43.24243,TJ,CH4,0.5,kg/TJ,21.621215,Naphtha combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,5533efc9-2ef0-3e87-aed2-3963e062c36c -2017,Tucuman,II.5.1,43.24243,TJ,N2O,2.0,kg/TJ,86.48486,Naphtha combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,d21a9f56-7387-3a25-9858-08c57daafa11 -2017,Buenos Aires,II.5.1,11.478774999999999,TJ,CO2,73300.0,kg/TJ,841394.2074999999,Naphtha combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,b2bb64e9-95e3-3b7c-94da-4f2b2d61fa68 -2017,Buenos Aires,II.5.1,11.478774999999999,TJ,CH4,0.5,kg/TJ,5.739387499999999,Naphtha combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,0ae577b3-a847-3a27-8f2a-bc35e15b6994 -2017,Buenos Aires,II.5.1,11.478774999999999,TJ,N2O,2.0,kg/TJ,22.957549999999998,Naphtha combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,99175a0c-9fd1-3e60-9f01-6ecc2e53abca -2017,Chaco,II.5.1,3.22091,TJ,CO2,73300.0,kg/TJ,236092.703,Naphtha combustion consumption by agriculture machines,AR-H,SESCO,annual,kg,f0f01c1f-fa63-3541-a561-69e252ce1ea4 -2017,Chaco,II.5.1,3.22091,TJ,CH4,0.5,kg/TJ,1.610455,Naphtha combustion consumption by agriculture machines,AR-H,SESCO,annual,kg,e3cd72d3-5e2f-307d-8b08-6484343b9973 -2017,Chaco,II.5.1,3.22091,TJ,N2O,2.0,kg/TJ,6.44182,Naphtha combustion consumption by agriculture machines,AR-H,SESCO,annual,kg,b601ca76-a55c-393c-9511-7917e1916323 -2017,Córdoba,II.5.1,5.242545,TJ,CO2,73300.0,kg/TJ,384278.5485,Naphtha combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,a6fbfb73-580a-331e-9ad8-395e472774c2 -2017,Córdoba,II.5.1,5.242545,TJ,CH4,0.5,kg/TJ,2.6212725,Naphtha combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,43da8fab-a4dd-37f8-acd6-aa66b116f2a7 -2017,Córdoba,II.5.1,5.242545,TJ,N2O,2.0,kg/TJ,10.48509,Naphtha combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,ab199e37-ee08-3506-8f1e-442e8128475b -2017,Santa Fe,II.5.1,20.387674999999998,TJ,CO2,73300.0,kg/TJ,1494416.5775,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,39ce5d30-0fc5-3afb-b746-b903608dc896 -2017,Santa Fe,II.5.1,20.387674999999998,TJ,CH4,0.5,kg/TJ,10.193837499999999,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,2c543dc1-1939-3085-9aa7-a4a9eba4d1b4 -2017,Santa Fe,II.5.1,20.387674999999998,TJ,N2O,2.0,kg/TJ,40.775349999999996,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,68457018-ed26-3f2e-bd96-c9fb4f91f37e -2017,Tucuman,II.5.1,11.341714999999999,TJ,CO2,73300.0,kg/TJ,831347.7094999999,Naphtha combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,f17c2800-3179-39c8-b444-65c99046772d -2017,Tucuman,II.5.1,11.341714999999999,TJ,CH4,0.5,kg/TJ,5.670857499999999,Naphtha combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,2865331b-857c-3a11-8504-bc2dd4373aa1 -2017,Tucuman,II.5.1,11.341714999999999,TJ,N2O,2.0,kg/TJ,22.683429999999998,Naphtha combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,e5811bee-1d77-3bb2-9b58-58e8163e703f -2017,Buenos Aires,II.2.1,100.55807999999999,TJ,CO2,74100.0,kg/TJ,7451353.727999999,Gas Oil combustion consumption by railway transport,AR-B,SESCO,annual,kg,4cdcf79b-d477-3a2d-819e-f74484705263 -2017,Buenos Aires,II.2.1,100.55807999999999,TJ,CH4,3.9,kg/TJ,392.17651199999995,Gas Oil combustion consumption by railway transport,AR-B,SESCO,annual,kg,abd12c90-52e4-3831-9ea1-9593e297ba68 -2017,Buenos Aires,II.2.1,100.55807999999999,TJ,N2O,3.9,kg/TJ,392.17651199999995,Gas Oil combustion consumption by railway transport,AR-B,SESCO,annual,kg,abd12c90-52e4-3831-9ea1-9593e297ba68 -2017,Capital Federal,II.2.1,3.6119999999999997,TJ,CO2,74100.0,kg/TJ,267649.19999999995,Gas Oil combustion consumption by railway transport,AR-C,SESCO,annual,kg,2e523b84-b3a0-30eb-a4a8-ce8b23af1221 -2017,Capital Federal,II.2.1,3.6119999999999997,TJ,CH4,3.9,kg/TJ,14.086799999999998,Gas Oil combustion consumption by railway transport,AR-C,SESCO,annual,kg,1110eb30-949d-38f8-bb7e-ec4144788e1f -2017,Capital Federal,II.2.1,3.6119999999999997,TJ,N2O,3.9,kg/TJ,14.086799999999998,Gas Oil combustion consumption by railway transport,AR-C,SESCO,annual,kg,1110eb30-949d-38f8-bb7e-ec4144788e1f -2017,La Pampa,II.2.1,18.02388,TJ,CO2,74100.0,kg/TJ,1335569.508,Gas Oil combustion consumption by railway transport,AR-L,SESCO,annual,kg,e8842bd7-fd68-3480-9409-800d875ebc26 -2017,La Pampa,II.2.1,18.02388,TJ,CH4,3.9,kg/TJ,70.29313199999999,Gas Oil combustion consumption by railway transport,AR-L,SESCO,annual,kg,50aa376a-4a89-355c-b775-eb1d90731d21 -2017,La Pampa,II.2.1,18.02388,TJ,N2O,3.9,kg/TJ,70.29313199999999,Gas Oil combustion consumption by railway transport,AR-L,SESCO,annual,kg,50aa376a-4a89-355c-b775-eb1d90731d21 -2017,Santa Fe,II.2.1,193.35036,TJ,CO2,74100.0,kg/TJ,14327261.675999999,Gas Oil combustion consumption by railway transport,AR-S,SESCO,annual,kg,6f3718a1-5f96-3aa9-b7f5-cf3968097e64 -2017,Santa Fe,II.2.1,193.35036,TJ,CH4,3.9,kg/TJ,754.0664039999999,Gas Oil combustion consumption by railway transport,AR-S,SESCO,annual,kg,5c178d28-189f-32bc-b599-74f2c22202f8 -2017,Santa Fe,II.2.1,193.35036,TJ,N2O,3.9,kg/TJ,754.0664039999999,Gas Oil combustion consumption by railway transport,AR-S,SESCO,annual,kg,5c178d28-189f-32bc-b599-74f2c22202f8 -2017,Santiago del Estero,II.2.1,27.30672,TJ,CO2,74100.0,kg/TJ,2023427.9519999998,Gas Oil combustion consumption by railway transport,AR-G,SESCO,annual,kg,ca577714-2050-3456-a66b-5085d99edd97 -2017,Santiago del Estero,II.2.1,27.30672,TJ,CH4,3.9,kg/TJ,106.496208,Gas Oil combustion consumption by railway transport,AR-G,SESCO,annual,kg,4a8fa62d-8ea1-3882-aee6-7019a6d51918 -2017,Santiago del Estero,II.2.1,27.30672,TJ,N2O,3.9,kg/TJ,106.496208,Gas Oil combustion consumption by railway transport,AR-G,SESCO,annual,kg,4a8fa62d-8ea1-3882-aee6-7019a6d51918 -2017,Tucuman,II.2.1,6.42936,TJ,CO2,74100.0,kg/TJ,476415.576,Gas Oil combustion consumption by railway transport,AR-T,SESCO,annual,kg,1cc5eedf-3bc6-37f9-98e2-f7cdfd470bb0 -2017,Tucuman,II.2.1,6.42936,TJ,CH4,3.9,kg/TJ,25.074504,Gas Oil combustion consumption by railway transport,AR-T,SESCO,annual,kg,fb86a85a-b72f-3184-baad-11f135b43552 -2017,Tucuman,II.2.1,6.42936,TJ,N2O,3.9,kg/TJ,25.074504,Gas Oil combustion consumption by railway transport,AR-T,SESCO,annual,kg,fb86a85a-b72f-3184-baad-11f135b43552 -2017,Buenos Aires,II.1.1,2351.5926,TJ,CO2,74100.0,kg/TJ,174253011.66,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,03cef51b-c1b3-3fcf-916a-3ee8939fc9eb -2017,Buenos Aires,II.1.1,2351.5926,TJ,CH4,3.9,kg/TJ,9171.21114,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,243e14df-5d28-349b-a26f-5de45eb98cd6 -2017,Buenos Aires,II.1.1,2351.5926,TJ,N2O,3.9,kg/TJ,9171.21114,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,243e14df-5d28-349b-a26f-5de45eb98cd6 -2017,Capital Federal,II.1.1,261.25596,TJ,CO2,74100.0,kg/TJ,19359066.636,Gas Oil combustion consumption by freight transport,AR-C,SESCO,annual,kg,aefa53cd-e65c-3230-80ec-22a8829847d0 -2017,Capital Federal,II.1.1,261.25596,TJ,CH4,3.9,kg/TJ,1018.8982440000001,Gas Oil combustion consumption by freight transport,AR-C,SESCO,annual,kg,b4bf2dbd-114b-3337-addd-535c3bc5737f -2017,Capital Federal,II.1.1,261.25596,TJ,N2O,3.9,kg/TJ,1018.8982440000001,Gas Oil combustion consumption by freight transport,AR-C,SESCO,annual,kg,b4bf2dbd-114b-3337-addd-535c3bc5737f -2017,Catamarca,II.1.1,36.697919999999996,TJ,CO2,74100.0,kg/TJ,2719315.8719999995,Gas Oil combustion consumption by freight transport,AR-K,SESCO,annual,kg,65f29ba7-cc68-3a33-843c-e44b7eba3da4 -2017,Catamarca,II.1.1,36.697919999999996,TJ,CH4,3.9,kg/TJ,143.12188799999998,Gas Oil combustion consumption by freight transport,AR-K,SESCO,annual,kg,92de4f81-bba9-3b6d-b345-064c55496d88 -2017,Catamarca,II.1.1,36.697919999999996,TJ,N2O,3.9,kg/TJ,143.12188799999998,Gas Oil combustion consumption by freight transport,AR-K,SESCO,annual,kg,92de4f81-bba9-3b6d-b345-064c55496d88 -2017,Chaco,II.1.1,53.85492,TJ,CO2,74100.0,kg/TJ,3990649.572,Gas Oil combustion consumption by freight transport,AR-H,SESCO,annual,kg,aae168ea-695b-38b0-8e2a-0299c28731d5 -2017,Chaco,II.1.1,53.85492,TJ,CH4,3.9,kg/TJ,210.034188,Gas Oil combustion consumption by freight transport,AR-H,SESCO,annual,kg,a97834cc-d3dc-39a7-9e71-95881420b732 -2017,Chaco,II.1.1,53.85492,TJ,N2O,3.9,kg/TJ,210.034188,Gas Oil combustion consumption by freight transport,AR-H,SESCO,annual,kg,a97834cc-d3dc-39a7-9e71-95881420b732 -2017,Chubut,II.1.1,20.87736,TJ,CO2,74100.0,kg/TJ,1547012.376,Gas Oil combustion consumption by freight transport,AR-U,SESCO,annual,kg,70f71f60-ae08-3271-8677-1fc067412b30 -2017,Chubut,II.1.1,20.87736,TJ,CH4,3.9,kg/TJ,81.42170399999999,Gas Oil combustion consumption by freight transport,AR-U,SESCO,annual,kg,6f6f6d49-978f-3d62-a723-b9ef9e3cbaef -2017,Chubut,II.1.1,20.87736,TJ,N2O,3.9,kg/TJ,81.42170399999999,Gas Oil combustion consumption by freight transport,AR-U,SESCO,annual,kg,6f6f6d49-978f-3d62-a723-b9ef9e3cbaef -2017,Corrientes,II.1.1,64.43808,TJ,CO2,74100.0,kg/TJ,4774861.728,Gas Oil combustion consumption by freight transport,AR-W,SESCO,annual,kg,2f50d9b3-7d34-3be3-b706-bb364272abcd -2017,Corrientes,II.1.1,64.43808,TJ,CH4,3.9,kg/TJ,251.30851199999998,Gas Oil combustion consumption by freight transport,AR-W,SESCO,annual,kg,e0260274-9b3f-344b-8a4b-7ec9eb7e10ae -2017,Corrientes,II.1.1,64.43808,TJ,N2O,3.9,kg/TJ,251.30851199999998,Gas Oil combustion consumption by freight transport,AR-W,SESCO,annual,kg,e0260274-9b3f-344b-8a4b-7ec9eb7e10ae -2017,Córdoba,II.1.1,645.2837999999999,TJ,CO2,74100.0,kg/TJ,47815529.58,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,f8e266ab-76af-311e-9969-5bdbdc47ec6b -2017,Córdoba,II.1.1,645.2837999999999,TJ,CH4,3.9,kg/TJ,2516.6068199999995,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,ffd81fde-8d7e-34d6-88aa-2894da1de65c -2017,Córdoba,II.1.1,645.2837999999999,TJ,N2O,3.9,kg/TJ,2516.6068199999995,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,ffd81fde-8d7e-34d6-88aa-2894da1de65c -2017,Entre Rios,II.1.1,214.08324,TJ,CO2,74100.0,kg/TJ,15863568.083999999,Gas Oil combustion consumption by freight transport,AR-E,SESCO,annual,kg,6fdf9f9e-b1de-326e-8ab9-b4466c54b329 -2017,Entre Rios,II.1.1,214.08324,TJ,CH4,3.9,kg/TJ,834.924636,Gas Oil combustion consumption by freight transport,AR-E,SESCO,annual,kg,9d29bdc1-d03f-3a78-b098-9a68e199169b -2017,Entre Rios,II.1.1,214.08324,TJ,N2O,3.9,kg/TJ,834.924636,Gas Oil combustion consumption by freight transport,AR-E,SESCO,annual,kg,9d29bdc1-d03f-3a78-b098-9a68e199169b -2017,Formosa,II.1.1,4.6956,TJ,CO2,74100.0,kg/TJ,347943.95999999996,Gas Oil combustion consumption by freight transport,AR-P,SESCO,annual,kg,e6ac4cb8-bce5-3a14-8a2d-cf992ff9c5cf -2017,Formosa,II.1.1,4.6956,TJ,CH4,3.9,kg/TJ,18.312839999999998,Gas Oil combustion consumption by freight transport,AR-P,SESCO,annual,kg,4f116e71-bacc-3c40-8355-5f18c3a91679 -2017,Formosa,II.1.1,4.6956,TJ,N2O,3.9,kg/TJ,18.312839999999998,Gas Oil combustion consumption by freight transport,AR-P,SESCO,annual,kg,4f116e71-bacc-3c40-8355-5f18c3a91679 -2017,Jujuy,II.1.1,2.81736,TJ,CO2,74100.0,kg/TJ,208766.376,Gas Oil combustion consumption by freight transport,AR-Y,SESCO,annual,kg,c4182bd5-c49c-30bc-b943-4b0d788ec553 -2017,Jujuy,II.1.1,2.81736,TJ,CH4,3.9,kg/TJ,10.987703999999999,Gas Oil combustion consumption by freight transport,AR-Y,SESCO,annual,kg,c8e4aaaa-079c-3abd-8ca7-ce934eacf3ca -2017,Jujuy,II.1.1,2.81736,TJ,N2O,3.9,kg/TJ,10.987703999999999,Gas Oil combustion consumption by freight transport,AR-Y,SESCO,annual,kg,c8e4aaaa-079c-3abd-8ca7-ce934eacf3ca -2017,La Pampa,II.1.1,10.4748,TJ,CO2,74100.0,kg/TJ,776182.68,Gas Oil combustion consumption by freight transport,AR-L,SESCO,annual,kg,bfb8cbed-ab72-31e5-98ef-3d66e39efa2a -2017,La Pampa,II.1.1,10.4748,TJ,CH4,3.9,kg/TJ,40.85172,Gas Oil combustion consumption by freight transport,AR-L,SESCO,annual,kg,2aa2ff6c-a620-3d69-9328-fd1cc3fee167 -2017,La Pampa,II.1.1,10.4748,TJ,N2O,3.9,kg/TJ,40.85172,Gas Oil combustion consumption by freight transport,AR-L,SESCO,annual,kg,2aa2ff6c-a620-3d69-9328-fd1cc3fee167 -2017,La Rioja,II.1.1,4.04544,TJ,CO2,74100.0,kg/TJ,299767.104,Gas Oil combustion consumption by freight transport,AR-F,SESCO,annual,kg,ad4ffb32-4d51-3bf6-a193-b56cad287803 -2017,La Rioja,II.1.1,4.04544,TJ,CH4,3.9,kg/TJ,15.777216000000001,Gas Oil combustion consumption by freight transport,AR-F,SESCO,annual,kg,f07b412b-1708-3532-b51d-b5c12e689636 -2017,La Rioja,II.1.1,4.04544,TJ,N2O,3.9,kg/TJ,15.777216000000001,Gas Oil combustion consumption by freight transport,AR-F,SESCO,annual,kg,f07b412b-1708-3532-b51d-b5c12e689636 -2017,Mendoza,II.1.1,48.4008,TJ,CO2,74100.0,kg/TJ,3586499.28,Gas Oil combustion consumption by freight transport,AR-M,SESCO,annual,kg,170e178a-c1e8-331b-8fcb-c7d173161fc7 -2017,Mendoza,II.1.1,48.4008,TJ,CH4,3.9,kg/TJ,188.76312,Gas Oil combustion consumption by freight transport,AR-M,SESCO,annual,kg,f44fb8b0-aac8-30f8-aca3-a7371ba676df -2017,Mendoza,II.1.1,48.4008,TJ,N2O,3.9,kg/TJ,188.76312,Gas Oil combustion consumption by freight transport,AR-M,SESCO,annual,kg,f44fb8b0-aac8-30f8-aca3-a7371ba676df -2017,Misiones,II.1.1,56.13048,TJ,CO2,74100.0,kg/TJ,4159268.568,Gas Oil combustion consumption by freight transport,AR-N,SESCO,annual,kg,082d578c-30ef-34e8-bd13-158489d4ce05 -2017,Misiones,II.1.1,56.13048,TJ,CH4,3.9,kg/TJ,218.908872,Gas Oil combustion consumption by freight transport,AR-N,SESCO,annual,kg,0ae57fd6-a2d7-3691-aa6a-10662642a453 -2017,Misiones,II.1.1,56.13048,TJ,N2O,3.9,kg/TJ,218.908872,Gas Oil combustion consumption by freight transport,AR-N,SESCO,annual,kg,0ae57fd6-a2d7-3691-aa6a-10662642a453 -2017,Neuquén,II.1.1,0.7223999999999999,TJ,CO2,74100.0,kg/TJ,53529.84,Gas Oil combustion consumption by freight transport,AR-Q,SESCO,annual,kg,c9168f0b-0249-3c48-905d-65bcb3cf68b8 -2017,Neuquén,II.1.1,0.7223999999999999,TJ,CH4,3.9,kg/TJ,2.81736,Gas Oil combustion consumption by freight transport,AR-Q,SESCO,annual,kg,1a7f15fd-0936-3977-84c6-d083887424bd -2017,Neuquén,II.1.1,0.7223999999999999,TJ,N2O,3.9,kg/TJ,2.81736,Gas Oil combustion consumption by freight transport,AR-Q,SESCO,annual,kg,1a7f15fd-0936-3977-84c6-d083887424bd -2017,Rio Negro,II.1.1,103.15872,TJ,CO2,74100.0,kg/TJ,7644061.152,Gas Oil combustion consumption by freight transport,AR-R,SESCO,annual,kg,eacefd7b-8bd6-3834-9cb8-e4cb3103f2fc -2017,Rio Negro,II.1.1,103.15872,TJ,CH4,3.9,kg/TJ,402.319008,Gas Oil combustion consumption by freight transport,AR-R,SESCO,annual,kg,3a2404c0-1f3e-31b0-9683-3f393e6ebd08 -2017,Rio Negro,II.1.1,103.15872,TJ,N2O,3.9,kg/TJ,402.319008,Gas Oil combustion consumption by freight transport,AR-R,SESCO,annual,kg,3a2404c0-1f3e-31b0-9683-3f393e6ebd08 -2017,Salta,II.1.1,30.37692,TJ,CO2,74100.0,kg/TJ,2250929.772,Gas Oil combustion consumption by freight transport,AR-A,SESCO,annual,kg,1998518f-ffb1-3077-b31f-91b1a141dc11 -2017,Salta,II.1.1,30.37692,TJ,CH4,3.9,kg/TJ,118.46998799999999,Gas Oil combustion consumption by freight transport,AR-A,SESCO,annual,kg,9e84bf17-6acf-3498-8227-3f8f37ad03e3 -2017,Salta,II.1.1,30.37692,TJ,N2O,3.9,kg/TJ,118.46998799999999,Gas Oil combustion consumption by freight transport,AR-A,SESCO,annual,kg,9e84bf17-6acf-3498-8227-3f8f37ad03e3 -2017,San Juan,II.1.1,9.60792,TJ,CO2,74100.0,kg/TJ,711946.872,Gas Oil combustion consumption by freight transport,AR-J,SESCO,annual,kg,4fd54572-4848-39f0-ba16-8f81727f444e -2017,San Juan,II.1.1,9.60792,TJ,CH4,3.9,kg/TJ,37.470888,Gas Oil combustion consumption by freight transport,AR-J,SESCO,annual,kg,c23e2d65-eeeb-3199-a355-602f9b98b4a5 -2017,San Juan,II.1.1,9.60792,TJ,N2O,3.9,kg/TJ,37.470888,Gas Oil combustion consumption by freight transport,AR-J,SESCO,annual,kg,c23e2d65-eeeb-3199-a355-602f9b98b4a5 -2017,San Luis,II.1.1,68.55575999999999,TJ,CO2,74100.0,kg/TJ,5079981.816,Gas Oil combustion consumption by freight transport,AR-D,SESCO,annual,kg,7df4ae95-92f0-3110-b06c-cd5a2dd09f03 -2017,San Luis,II.1.1,68.55575999999999,TJ,CH4,3.9,kg/TJ,267.367464,Gas Oil combustion consumption by freight transport,AR-D,SESCO,annual,kg,efb4124d-7341-344d-91ec-71298259c4b4 -2017,San Luis,II.1.1,68.55575999999999,TJ,N2O,3.9,kg/TJ,267.367464,Gas Oil combustion consumption by freight transport,AR-D,SESCO,annual,kg,efb4124d-7341-344d-91ec-71298259c4b4 -2017,Santa Fe,II.1.1,528.7968,TJ,CO2,74100.0,kg/TJ,39183842.879999995,Gas Oil combustion consumption by freight transport,AR-S,SESCO,annual,kg,5c5b12b3-52b2-385f-8277-2682846e2a0c -2017,Santa Fe,II.1.1,528.7968,TJ,CH4,3.9,kg/TJ,2062.30752,Gas Oil combustion consumption by freight transport,AR-S,SESCO,annual,kg,28b190f1-8582-39a1-b64b-afbcc2544889 -2017,Santa Fe,II.1.1,528.7968,TJ,N2O,3.9,kg/TJ,2062.30752,Gas Oil combustion consumption by freight transport,AR-S,SESCO,annual,kg,28b190f1-8582-39a1-b64b-afbcc2544889 -2017,Santiago del Estero,II.1.1,40.743359999999996,TJ,CO2,74100.0,kg/TJ,3019082.976,Gas Oil combustion consumption by freight transport,AR-G,SESCO,annual,kg,9fcda7f8-cbba-3ed4-a42d-369c44ccad5a -2017,Santiago del Estero,II.1.1,40.743359999999996,TJ,CH4,3.9,kg/TJ,158.89910399999997,Gas Oil combustion consumption by freight transport,AR-G,SESCO,annual,kg,516b0638-6c3b-3862-9bc2-5a0d29fc8ffd -2017,Santiago del Estero,II.1.1,40.743359999999996,TJ,N2O,3.9,kg/TJ,158.89910399999997,Gas Oil combustion consumption by freight transport,AR-G,SESCO,annual,kg,516b0638-6c3b-3862-9bc2-5a0d29fc8ffd -2017,Tucuman,II.1.1,75.02123999999999,TJ,CO2,74100.0,kg/TJ,5559073.884,Gas Oil combustion consumption by freight transport,AR-T,SESCO,annual,kg,fe1f3a2b-9666-325c-9149-5490eb4d886e -2017,Tucuman,II.1.1,75.02123999999999,TJ,CH4,3.9,kg/TJ,292.582836,Gas Oil combustion consumption by freight transport,AR-T,SESCO,annual,kg,c8c3ed77-74e5-3637-8104-fd6a970b48c3 -2017,Tucuman,II.1.1,75.02123999999999,TJ,N2O,3.9,kg/TJ,292.582836,Gas Oil combustion consumption by freight transport,AR-T,SESCO,annual,kg,c8c3ed77-74e5-3637-8104-fd6a970b48c3 -2017,Buenos Aires,II.1.1,126.99792,TJ,CO2,74100.0,kg/TJ,9410545.872,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,1360a410-a100-3ed8-8110-1b2f3afbf308 -2017,Buenos Aires,II.1.1,126.99792,TJ,CH4,3.9,kg/TJ,495.291888,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,2ac9c102-4307-3b52-813e-23402e35bf26 -2017,Buenos Aires,II.1.1,126.99792,TJ,N2O,3.9,kg/TJ,495.291888,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,2ac9c102-4307-3b52-813e-23402e35bf26 -2017,Capital Federal,II.1.1,14.19516,TJ,CO2,74100.0,kg/TJ,1051861.356,Gas Oil combustion consumption by freight transport,AR-C,SESCO,annual,kg,5e05e94b-fe38-318a-bf6f-17dee6a2f62d -2017,Capital Federal,II.1.1,14.19516,TJ,CH4,3.9,kg/TJ,55.361124,Gas Oil combustion consumption by freight transport,AR-C,SESCO,annual,kg,36a028ca-244d-3f71-b503-41e20409539d -2017,Capital Federal,II.1.1,14.19516,TJ,N2O,3.9,kg/TJ,55.361124,Gas Oil combustion consumption by freight transport,AR-C,SESCO,annual,kg,36a028ca-244d-3f71-b503-41e20409539d -2017,Catamarca,II.1.1,0.50568,TJ,CO2,74100.0,kg/TJ,37470.888,Gas Oil combustion consumption by freight transport,AR-K,SESCO,annual,kg,2f879b47-794a-321e-b940-24683e313bc5 -2017,Catamarca,II.1.1,0.50568,TJ,CH4,3.9,kg/TJ,1.9721520000000001,Gas Oil combustion consumption by freight transport,AR-K,SESCO,annual,kg,61a92087-6b0a-3461-8ed7-a1498db89eae -2017,Catamarca,II.1.1,0.50568,TJ,N2O,3.9,kg/TJ,1.9721520000000001,Gas Oil combustion consumption by freight transport,AR-K,SESCO,annual,kg,61a92087-6b0a-3461-8ed7-a1498db89eae -2017,Chaco,II.1.1,1.87824,TJ,CO2,74100.0,kg/TJ,139177.584,Gas Oil combustion consumption by freight transport,AR-H,SESCO,annual,kg,3a9b65fc-7bb9-3a83-a236-8b2db5ef8b7e -2017,Chaco,II.1.1,1.87824,TJ,CH4,3.9,kg/TJ,7.325136,Gas Oil combustion consumption by freight transport,AR-H,SESCO,annual,kg,34d11f8f-26a9-3a2d-b3b8-c80bc5e79ca9 -2017,Chaco,II.1.1,1.87824,TJ,N2O,3.9,kg/TJ,7.325136,Gas Oil combustion consumption by freight transport,AR-H,SESCO,annual,kg,34d11f8f-26a9-3a2d-b3b8-c80bc5e79ca9 -2017,Chubut,II.1.1,7.404599999999999,TJ,CO2,74100.0,kg/TJ,548680.86,Gas Oil combustion consumption by freight transport,AR-U,SESCO,annual,kg,cd6a502c-7fc7-3752-b56f-f4f753d0a48b -2017,Chubut,II.1.1,7.404599999999999,TJ,CH4,3.9,kg/TJ,28.877939999999995,Gas Oil combustion consumption by freight transport,AR-U,SESCO,annual,kg,e9487b6f-a500-3545-ba6d-9927d08b8b62 -2017,Chubut,II.1.1,7.404599999999999,TJ,N2O,3.9,kg/TJ,28.877939999999995,Gas Oil combustion consumption by freight transport,AR-U,SESCO,annual,kg,e9487b6f-a500-3545-ba6d-9927d08b8b62 -2017,Corrientes,II.1.1,4.37052,TJ,CO2,74100.0,kg/TJ,323855.532,Gas Oil combustion consumption by freight transport,AR-W,SESCO,annual,kg,a6aa5e55-c3ac-37cb-b9ba-3b60a0a25964 -2017,Corrientes,II.1.1,4.37052,TJ,CH4,3.9,kg/TJ,17.045028,Gas Oil combustion consumption by freight transport,AR-W,SESCO,annual,kg,21e36700-5eb5-325d-99d4-ead79f8f367e -2017,Corrientes,II.1.1,4.37052,TJ,N2O,3.9,kg/TJ,17.045028,Gas Oil combustion consumption by freight transport,AR-W,SESCO,annual,kg,21e36700-5eb5-325d-99d4-ead79f8f367e -2017,Córdoba,II.1.1,21.34692,TJ,CO2,74100.0,kg/TJ,1581806.772,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,ffc89d39-eda1-3488-a595-b2918fec7610 -2017,Córdoba,II.1.1,21.34692,TJ,CH4,3.9,kg/TJ,83.252988,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,bf2ff250-aec8-3f01-83d0-41fb51f28e71 -2017,Córdoba,II.1.1,21.34692,TJ,N2O,3.9,kg/TJ,83.252988,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,bf2ff250-aec8-3f01-83d0-41fb51f28e71 -2017,Entre Rios,II.1.1,10.6554,TJ,CO2,74100.0,kg/TJ,789565.14,Gas Oil combustion consumption by freight transport,AR-E,SESCO,annual,kg,a405c6d1-b6f1-3efb-8b9a-d4c6836ca817 -2017,Entre Rios,II.1.1,10.6554,TJ,CH4,3.9,kg/TJ,41.55606,Gas Oil combustion consumption by freight transport,AR-E,SESCO,annual,kg,c2b8daef-1be2-3472-8808-75fe2f176ac4 -2017,Entre Rios,II.1.1,10.6554,TJ,N2O,3.9,kg/TJ,41.55606,Gas Oil combustion consumption by freight transport,AR-E,SESCO,annual,kg,c2b8daef-1be2-3472-8808-75fe2f176ac4 -2017,Formosa,II.1.1,0.14448,TJ,CO2,74100.0,kg/TJ,10705.967999999999,Gas Oil combustion consumption by freight transport,AR-P,SESCO,annual,kg,3266a5f0-7e94-35e3-a244-85b6bdee65bf -2017,Formosa,II.1.1,0.14448,TJ,CH4,3.9,kg/TJ,0.563472,Gas Oil combustion consumption by freight transport,AR-P,SESCO,annual,kg,b850ec85-6d63-361b-a71b-bd582ee6fb00 -2017,Formosa,II.1.1,0.14448,TJ,N2O,3.9,kg/TJ,0.563472,Gas Oil combustion consumption by freight transport,AR-P,SESCO,annual,kg,b850ec85-6d63-361b-a71b-bd582ee6fb00 -2017,La Pampa,II.1.1,0.5418,TJ,CO2,74100.0,kg/TJ,40147.38,Gas Oil combustion consumption by freight transport,AR-L,SESCO,annual,kg,8bea11b5-260a-31e0-9b47-d09d467faf65 -2017,La Pampa,II.1.1,0.5418,TJ,CH4,3.9,kg/TJ,2.1130199999999997,Gas Oil combustion consumption by freight transport,AR-L,SESCO,annual,kg,333d2d89-a037-3c59-9930-cb4c6875fb58 -2017,La Pampa,II.1.1,0.5418,TJ,N2O,3.9,kg/TJ,2.1130199999999997,Gas Oil combustion consumption by freight transport,AR-L,SESCO,annual,kg,333d2d89-a037-3c59-9930-cb4c6875fb58 -2017,La Rioja,II.1.1,0.14448,TJ,CO2,74100.0,kg/TJ,10705.967999999999,Gas Oil combustion consumption by freight transport,AR-F,SESCO,annual,kg,0f9fc0a2-18fb-3576-a802-5a2d657ce0e3 -2017,La Rioja,II.1.1,0.14448,TJ,CH4,3.9,kg/TJ,0.563472,Gas Oil combustion consumption by freight transport,AR-F,SESCO,annual,kg,2624729b-8f4c-3a70-b11b-f9b1e0be4e4f -2017,La Rioja,II.1.1,0.14448,TJ,N2O,3.9,kg/TJ,0.563472,Gas Oil combustion consumption by freight transport,AR-F,SESCO,annual,kg,2624729b-8f4c-3a70-b11b-f9b1e0be4e4f -2017,Mendoza,II.1.1,0.7223999999999999,TJ,CO2,74100.0,kg/TJ,53529.84,Gas Oil combustion consumption by freight transport,AR-M,SESCO,annual,kg,596be2ac-a9b6-3333-8828-17dfc6c376d9 -2017,Mendoza,II.1.1,0.7223999999999999,TJ,CH4,3.9,kg/TJ,2.81736,Gas Oil combustion consumption by freight transport,AR-M,SESCO,annual,kg,1bbdd795-933b-3bb8-bf13-80aa435a5d13 -2017,Mendoza,II.1.1,0.7223999999999999,TJ,N2O,3.9,kg/TJ,2.81736,Gas Oil combustion consumption by freight transport,AR-M,SESCO,annual,kg,1bbdd795-933b-3bb8-bf13-80aa435a5d13 -2017,Misiones,II.1.1,1.76988,TJ,CO2,74100.0,kg/TJ,131148.10799999998,Gas Oil combustion consumption by freight transport,AR-N,SESCO,annual,kg,27c84913-bf89-30d4-bba2-9044bda805d2 -2017,Misiones,II.1.1,1.76988,TJ,CH4,3.9,kg/TJ,6.902531999999999,Gas Oil combustion consumption by freight transport,AR-N,SESCO,annual,kg,9422ae97-c7b7-3b83-8301-5d8a9d37099b -2017,Misiones,II.1.1,1.76988,TJ,N2O,3.9,kg/TJ,6.902531999999999,Gas Oil combustion consumption by freight transport,AR-N,SESCO,annual,kg,9422ae97-c7b7-3b83-8301-5d8a9d37099b -2017,Rio Negro,II.1.1,24.95892,TJ,CO2,74100.0,kg/TJ,1849455.9719999998,Gas Oil combustion consumption by freight transport,AR-R,SESCO,annual,kg,76a94174-8b9b-3c8e-926d-e0823931a1b1 -2017,Rio Negro,II.1.1,24.95892,TJ,CH4,3.9,kg/TJ,97.339788,Gas Oil combustion consumption by freight transport,AR-R,SESCO,annual,kg,e84894c9-8d6d-3a6c-99e0-530744ada256 -2017,Rio Negro,II.1.1,24.95892,TJ,N2O,3.9,kg/TJ,97.339788,Gas Oil combustion consumption by freight transport,AR-R,SESCO,annual,kg,e84894c9-8d6d-3a6c-99e0-530744ada256 -2017,San Juan,II.1.1,0.9029999999999999,TJ,CO2,74100.0,kg/TJ,66912.29999999999,Gas Oil combustion consumption by freight transport,AR-J,SESCO,annual,kg,357e7c46-c592-328e-b1aa-1ce9836972dc -2017,San Juan,II.1.1,0.9029999999999999,TJ,CH4,3.9,kg/TJ,3.5216999999999996,Gas Oil combustion consumption by freight transport,AR-J,SESCO,annual,kg,aa13b538-6d84-3d12-b95d-8e620d68af50 -2017,San Juan,II.1.1,0.9029999999999999,TJ,N2O,3.9,kg/TJ,3.5216999999999996,Gas Oil combustion consumption by freight transport,AR-J,SESCO,annual,kg,aa13b538-6d84-3d12-b95d-8e620d68af50 -2017,San Luis,II.1.1,2.27556,TJ,CO2,74100.0,kg/TJ,168618.996,Gas Oil combustion consumption by freight transport,AR-D,SESCO,annual,kg,f6474bb7-9794-3b57-b123-bb6f981bea5a -2017,San Luis,II.1.1,2.27556,TJ,CH4,3.9,kg/TJ,8.874684,Gas Oil combustion consumption by freight transport,AR-D,SESCO,annual,kg,3d0225f9-fc33-372b-abb4-c9e9b6a2fe08 -2017,San Luis,II.1.1,2.27556,TJ,N2O,3.9,kg/TJ,8.874684,Gas Oil combustion consumption by freight transport,AR-D,SESCO,annual,kg,3d0225f9-fc33-372b-abb4-c9e9b6a2fe08 -2017,Santa Fe,II.1.1,72.52896,TJ,CO2,74100.0,kg/TJ,5374395.936,Gas Oil combustion consumption by freight transport,AR-S,SESCO,annual,kg,3a6b22a1-d066-3fee-8de5-6c6dfb8b93a2 -2017,Santa Fe,II.1.1,72.52896,TJ,CH4,3.9,kg/TJ,282.86294399999997,Gas Oil combustion consumption by freight transport,AR-S,SESCO,annual,kg,d6146a43-e5e8-36c4-8f6b-19e3e4d1f75a -2017,Santa Fe,II.1.1,72.52896,TJ,N2O,3.9,kg/TJ,282.86294399999997,Gas Oil combustion consumption by freight transport,AR-S,SESCO,annual,kg,d6146a43-e5e8-36c4-8f6b-19e3e4d1f75a -2017,Santiago del Estero,II.1.1,2.6728799999999997,TJ,CO2,74100.0,kg/TJ,198060.40799999997,Gas Oil combustion consumption by freight transport,AR-G,SESCO,annual,kg,dca22fa8-76ad-3071-9ac4-2b41e7618396 -2017,Santiago del Estero,II.1.1,2.6728799999999997,TJ,CH4,3.9,kg/TJ,10.424231999999998,Gas Oil combustion consumption by freight transport,AR-G,SESCO,annual,kg,ce97b23f-b451-3d59-bb7b-f67cf5294a5a -2017,Santiago del Estero,II.1.1,2.6728799999999997,TJ,N2O,3.9,kg/TJ,10.424231999999998,Gas Oil combustion consumption by freight transport,AR-G,SESCO,annual,kg,ce97b23f-b451-3d59-bb7b-f67cf5294a5a -2017,Tucuman,II.1.1,0.68628,TJ,CO2,74100.0,kg/TJ,50853.348,Gas Oil combustion consumption by freight transport,AR-T,SESCO,annual,kg,c021b19e-a9f5-3ab7-8709-f4a98c171122 -2017,Tucuman,II.1.1,0.68628,TJ,CH4,3.9,kg/TJ,2.676492,Gas Oil combustion consumption by freight transport,AR-T,SESCO,annual,kg,ef12b4a6-156e-3826-9bc9-a9db162e2d38 -2017,Tucuman,II.1.1,0.68628,TJ,N2O,3.9,kg/TJ,2.676492,Gas Oil combustion consumption by freight transport,AR-T,SESCO,annual,kg,ef12b4a6-156e-3826-9bc9-a9db162e2d38 -2017,Buenos Aires,II.1.1,9.422875,TJ,CO2,73300.0,kg/TJ,690696.7374999999,Naphtha combustion consumption by freight transport,AR-B,SESCO,annual,kg,ba4fc7f5-e450-3a64-97a2-7ee62742def1 -2017,Buenos Aires,II.1.1,9.422875,TJ,CH4,0.5,kg/TJ,4.7114375,Naphtha combustion consumption by freight transport,AR-B,SESCO,annual,kg,5efd245c-8c3f-3cd8-bc2b-1d7c1898e317 -2017,Buenos Aires,II.1.1,9.422875,TJ,N2O,2.0,kg/TJ,18.84575,Naphtha combustion consumption by freight transport,AR-B,SESCO,annual,kg,013c58c7-02c6-3406-b85c-6111d285007e -2017,Capital Federal,II.1.1,4.557245,TJ,CO2,73300.0,kg/TJ,334046.0585,Naphtha combustion consumption by freight transport,AR-C,SESCO,annual,kg,16ee55af-0a60-367b-83e3-e7804d5d6f43 -2017,Capital Federal,II.1.1,4.557245,TJ,CH4,0.5,kg/TJ,2.2786225,Naphtha combustion consumption by freight transport,AR-C,SESCO,annual,kg,3b545c86-4286-39a8-9140-0dc12fc17ec8 -2017,Capital Federal,II.1.1,4.557245,TJ,N2O,2.0,kg/TJ,9.11449,Naphtha combustion consumption by freight transport,AR-C,SESCO,annual,kg,7e640380-514b-309b-aebe-17b2c34e3f4d -2017,Chubut,II.1.1,0.034265,TJ,CO2,73300.0,kg/TJ,2511.6245,Naphtha combustion consumption by freight transport,AR-U,SESCO,annual,kg,4831aa13-e3c0-3f0a-b3cb-9e268cce8419 -2017,Chubut,II.1.1,0.034265,TJ,CH4,0.5,kg/TJ,0.0171325,Naphtha combustion consumption by freight transport,AR-U,SESCO,annual,kg,a4ecb6f9-f774-3824-8598-fab09b84bd94 -2017,Chubut,II.1.1,0.034265,TJ,N2O,2.0,kg/TJ,0.06853,Naphtha combustion consumption by freight transport,AR-U,SESCO,annual,kg,3e0f81a5-7402-3f31-a6d9-bd35626179c0 -2017,Córdoba,II.1.1,1.64472,TJ,CO2,73300.0,kg/TJ,120557.976,Naphtha combustion consumption by freight transport,AR-X,SESCO,annual,kg,5f526f4d-bbdc-3af5-8e01-f4462bf6fb13 -2017,Córdoba,II.1.1,1.64472,TJ,CH4,0.5,kg/TJ,0.82236,Naphtha combustion consumption by freight transport,AR-X,SESCO,annual,kg,8a683456-ffb1-3dfd-856d-50c661e8bdfa -2017,Córdoba,II.1.1,1.64472,TJ,N2O,2.0,kg/TJ,3.28944,Naphtha combustion consumption by freight transport,AR-X,SESCO,annual,kg,415b0cd8-39b9-3dcd-900b-a0806573916a -2017,Santa Fe,II.1.1,0.30838499999999996,TJ,CO2,73300.0,kg/TJ,22604.620499999997,Naphtha combustion consumption by freight transport,AR-S,SESCO,annual,kg,a88aa73f-6daa-3a9f-823f-88d143063664 -2017,Santa Fe,II.1.1,0.30838499999999996,TJ,CH4,0.5,kg/TJ,0.15419249999999998,Naphtha combustion consumption by freight transport,AR-S,SESCO,annual,kg,f4b624d8-0ba0-3c2c-bded-e00ef3872954 -2017,Santa Fe,II.1.1,0.30838499999999996,TJ,N2O,2.0,kg/TJ,0.6167699999999999,Naphtha combustion consumption by freight transport,AR-S,SESCO,annual,kg,3fbc1776-1ff3-3f97-a136-d351409a9b4b -2017,Buenos Aires,II.1.1,7.983745,TJ,CO2,73300.0,kg/TJ,585208.5085,Naphtha combustion consumption by freight transport,AR-B,SESCO,annual,kg,63e594cf-bebf-3287-96d0-22206496bb4a -2017,Buenos Aires,II.1.1,7.983745,TJ,CH4,0.5,kg/TJ,3.9918725,Naphtha combustion consumption by freight transport,AR-B,SESCO,annual,kg,7ff223a4-4196-3e63-b53a-a4396e2131af -2017,Buenos Aires,II.1.1,7.983745,TJ,N2O,2.0,kg/TJ,15.96749,Naphtha combustion consumption by freight transport,AR-B,SESCO,annual,kg,a671cd75-6cb2-35f6-97bb-262014af6123 -2017,Capital Federal,II.1.1,4.5915099999999995,TJ,CO2,73300.0,kg/TJ,336557.68299999996,Naphtha combustion consumption by freight transport,AR-C,SESCO,annual,kg,ac46751e-fb56-37ca-b7dc-ad3e81c8daca -2017,Capital Federal,II.1.1,4.5915099999999995,TJ,CH4,0.5,kg/TJ,2.2957549999999998,Naphtha combustion consumption by freight transport,AR-C,SESCO,annual,kg,387e61a0-a8af-35d9-ace8-a7b958c058a8 -2017,Capital Federal,II.1.1,4.5915099999999995,TJ,N2O,2.0,kg/TJ,9.183019999999999,Naphtha combustion consumption by freight transport,AR-C,SESCO,annual,kg,ea7dc00e-2397-3b29-b340-e0ab5558029c -2017,Chubut,II.1.1,0.034265,TJ,CO2,73300.0,kg/TJ,2511.6245,Naphtha combustion consumption by freight transport,AR-U,SESCO,annual,kg,4831aa13-e3c0-3f0a-b3cb-9e268cce8419 -2017,Chubut,II.1.1,0.034265,TJ,CH4,0.5,kg/TJ,0.0171325,Naphtha combustion consumption by freight transport,AR-U,SESCO,annual,kg,a4ecb6f9-f774-3824-8598-fab09b84bd94 -2017,Chubut,II.1.1,0.034265,TJ,N2O,2.0,kg/TJ,0.06853,Naphtha combustion consumption by freight transport,AR-U,SESCO,annual,kg,3e0f81a5-7402-3f31-a6d9-bd35626179c0 -2017,Córdoba,II.1.1,1.85031,TJ,CO2,73300.0,kg/TJ,135627.723,Naphtha combustion consumption by freight transport,AR-X,SESCO,annual,kg,73a75a0f-4355-397e-b582-e3ff23016328 -2017,Córdoba,II.1.1,1.85031,TJ,CH4,0.5,kg/TJ,0.925155,Naphtha combustion consumption by freight transport,AR-X,SESCO,annual,kg,1da36a55-8724-37e1-8ccb-03b94752cfee -2017,Córdoba,II.1.1,1.85031,TJ,N2O,2.0,kg/TJ,3.70062,Naphtha combustion consumption by freight transport,AR-X,SESCO,annual,kg,da159de9-b92b-327f-b79d-cd18f400db67 -2017,Santa Fe,II.1.1,1.130745,TJ,CO2,73300.0,kg/TJ,82883.60849999999,Naphtha combustion consumption by freight transport,AR-S,SESCO,annual,kg,9ab1efac-df38-3ce1-a316-0f1e72b08e06 -2017,Santa Fe,II.1.1,1.130745,TJ,CH4,0.5,kg/TJ,0.5653725,Naphtha combustion consumption by freight transport,AR-S,SESCO,annual,kg,934b3f09-92fb-3bdb-9868-a7571b171037 -2017,Santa Fe,II.1.1,1.130745,TJ,N2O,2.0,kg/TJ,2.26149,Naphtha combustion consumption by freight transport,AR-S,SESCO,annual,kg,8d524835-c206-36ed-a6d3-539cdfe504c1 -2017,Buenos Aires,II.1.1,635.27856,TJ,CO2,74100.0,kg/TJ,47074141.296,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,a0262c9d-49cf-3f8e-b692-c32d800535b4 -2017,Buenos Aires,II.1.1,635.27856,TJ,CH4,3.9,kg/TJ,2477.5863839999997,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,b3abcaaf-b15c-373e-979f-e2d737dd8c30 -2017,Buenos Aires,II.1.1,635.27856,TJ,N2O,3.9,kg/TJ,2477.5863839999997,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,b3abcaaf-b15c-373e-979f-e2d737dd8c30 -2017,Capital Federal,II.1.1,945.9466799999999,TJ,CO2,74100.0,kg/TJ,70094648.98799999,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,f4a1a855-2d68-32f7-bf6a-949901d61b77 -2017,Capital Federal,II.1.1,945.9466799999999,TJ,CH4,3.9,kg/TJ,3689.1920519999994,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,c82dc6ca-641a-3f2a-a202-408623e909ee -2017,Capital Federal,II.1.1,945.9466799999999,TJ,N2O,3.9,kg/TJ,3689.1920519999994,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,c82dc6ca-641a-3f2a-a202-408623e909ee -2017,Catamarca,II.1.1,0.28896,TJ,CO2,74100.0,kg/TJ,21411.935999999998,Gas Oil combustion consumption by public passenger transport,AR-K,SESCO,annual,kg,9e6bb34e-b818-3b6a-8c14-d80f8d52bdc5 -2017,Catamarca,II.1.1,0.28896,TJ,CH4,3.9,kg/TJ,1.126944,Gas Oil combustion consumption by public passenger transport,AR-K,SESCO,annual,kg,2aeca832-1095-385a-8e32-082f13ecca68 -2017,Catamarca,II.1.1,0.28896,TJ,N2O,3.9,kg/TJ,1.126944,Gas Oil combustion consumption by public passenger transport,AR-K,SESCO,annual,kg,2aeca832-1095-385a-8e32-082f13ecca68 -2017,Chaco,II.1.1,2.02272,TJ,CO2,74100.0,kg/TJ,149883.552,Gas Oil combustion consumption by public passenger transport,AR-H,SESCO,annual,kg,ca4b26c1-3201-3021-be28-1a083987c666 -2017,Chaco,II.1.1,2.02272,TJ,CH4,3.9,kg/TJ,7.8886080000000005,Gas Oil combustion consumption by public passenger transport,AR-H,SESCO,annual,kg,a78a7b4e-ddda-3369-9f2e-5e6d45726575 -2017,Chaco,II.1.1,2.02272,TJ,N2O,3.9,kg/TJ,7.8886080000000005,Gas Oil combustion consumption by public passenger transport,AR-H,SESCO,annual,kg,a78a7b4e-ddda-3369-9f2e-5e6d45726575 -2017,Chubut,II.1.1,18.20448,TJ,CO2,74100.0,kg/TJ,1348951.968,Gas Oil combustion consumption by public passenger transport,AR-U,SESCO,annual,kg,fb41621e-a11a-32ec-a243-47eddf8495cb -2017,Chubut,II.1.1,18.20448,TJ,CH4,3.9,kg/TJ,70.997472,Gas Oil combustion consumption by public passenger transport,AR-U,SESCO,annual,kg,de800fd1-57ba-3d06-ac87-5acd8fdd19ac -2017,Chubut,II.1.1,18.20448,TJ,N2O,3.9,kg/TJ,70.997472,Gas Oil combustion consumption by public passenger transport,AR-U,SESCO,annual,kg,de800fd1-57ba-3d06-ac87-5acd8fdd19ac -2017,Corrientes,II.1.1,1.19196,TJ,CO2,74100.0,kg/TJ,88324.23599999999,Gas Oil combustion consumption by public passenger transport,AR-W,SESCO,annual,kg,5ed37bc2-0961-372b-82d9-3e77f36e318f -2017,Corrientes,II.1.1,1.19196,TJ,CH4,3.9,kg/TJ,4.648643999999999,Gas Oil combustion consumption by public passenger transport,AR-W,SESCO,annual,kg,6ef3ace8-d016-36b9-b06d-e0f221e0dc23 -2017,Corrientes,II.1.1,1.19196,TJ,N2O,3.9,kg/TJ,4.648643999999999,Gas Oil combustion consumption by public passenger transport,AR-W,SESCO,annual,kg,6ef3ace8-d016-36b9-b06d-e0f221e0dc23 -2017,Córdoba,II.1.1,59.92308,TJ,CO2,74100.0,kg/TJ,4440300.228,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,ffa1bbd1-047f-3a8d-ae2d-6fa8e0113682 -2017,Córdoba,II.1.1,59.92308,TJ,CH4,3.9,kg/TJ,233.700012,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,81c08e7a-e909-3c7c-9f48-302abeccd16c -2017,Córdoba,II.1.1,59.92308,TJ,N2O,3.9,kg/TJ,233.700012,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,81c08e7a-e909-3c7c-9f48-302abeccd16c -2017,Entre Rios,II.1.1,46.34196,TJ,CO2,74100.0,kg/TJ,3433939.236,Gas Oil combustion consumption by public passenger transport,AR-E,SESCO,annual,kg,8abbcc8a-7823-3cf8-b174-63a0fcef4878 -2017,Entre Rios,II.1.1,46.34196,TJ,CH4,3.9,kg/TJ,180.733644,Gas Oil combustion consumption by public passenger transport,AR-E,SESCO,annual,kg,e7cac919-efa0-3ae7-8a40-8dda33eb1057 -2017,Entre Rios,II.1.1,46.34196,TJ,N2O,3.9,kg/TJ,180.733644,Gas Oil combustion consumption by public passenger transport,AR-E,SESCO,annual,kg,e7cac919-efa0-3ae7-8a40-8dda33eb1057 -2017,Formosa,II.1.1,0.07224,TJ,CO2,74100.0,kg/TJ,5352.9839999999995,Gas Oil combustion consumption by public passenger transport,AR-P,SESCO,annual,kg,f4f59301-29bb-3397-a821-3d925d037e51 -2017,Formosa,II.1.1,0.07224,TJ,CH4,3.9,kg/TJ,0.281736,Gas Oil combustion consumption by public passenger transport,AR-P,SESCO,annual,kg,9fd6e638-79a3-3588-8412-63560d92cdb2 -2017,Formosa,II.1.1,0.07224,TJ,N2O,3.9,kg/TJ,0.281736,Gas Oil combustion consumption by public passenger transport,AR-P,SESCO,annual,kg,9fd6e638-79a3-3588-8412-63560d92cdb2 -2017,La Pampa,II.1.1,4.00932,TJ,CO2,74100.0,kg/TJ,297090.61199999996,Gas Oil combustion consumption by public passenger transport,AR-L,SESCO,annual,kg,04c9ebcb-0b50-3e80-9c32-f97f4ee5626c -2017,La Pampa,II.1.1,4.00932,TJ,CH4,3.9,kg/TJ,15.636347999999998,Gas Oil combustion consumption by public passenger transport,AR-L,SESCO,annual,kg,7ed3057c-844d-3e07-8697-9b203aaaeb50 -2017,La Pampa,II.1.1,4.00932,TJ,N2O,3.9,kg/TJ,15.636347999999998,Gas Oil combustion consumption by public passenger transport,AR-L,SESCO,annual,kg,7ed3057c-844d-3e07-8697-9b203aaaeb50 -2017,Mendoza,II.1.1,1.19196,TJ,CO2,74100.0,kg/TJ,88324.23599999999,Gas Oil combustion consumption by public passenger transport,AR-M,SESCO,annual,kg,86c92e06-059c-3e42-9387-071565a595bb -2017,Mendoza,II.1.1,1.19196,TJ,CH4,3.9,kg/TJ,4.648643999999999,Gas Oil combustion consumption by public passenger transport,AR-M,SESCO,annual,kg,a0568891-5f36-3c91-a71f-36ed431a340b -2017,Mendoza,II.1.1,1.19196,TJ,N2O,3.9,kg/TJ,4.648643999999999,Gas Oil combustion consumption by public passenger transport,AR-M,SESCO,annual,kg,a0568891-5f36-3c91-a71f-36ed431a340b -2017,Misiones,II.1.1,196.78176,TJ,CO2,74100.0,kg/TJ,14581528.416,Gas Oil combustion consumption by public passenger transport,AR-N,SESCO,annual,kg,41ee3ed6-8df8-382c-888f-643cdffcdcc6 -2017,Misiones,II.1.1,196.78176,TJ,CH4,3.9,kg/TJ,767.448864,Gas Oil combustion consumption by public passenger transport,AR-N,SESCO,annual,kg,77cc1b8b-32d3-35e4-8c94-36f2da1d4ed6 -2017,Misiones,II.1.1,196.78176,TJ,N2O,3.9,kg/TJ,767.448864,Gas Oil combustion consumption by public passenger transport,AR-N,SESCO,annual,kg,77cc1b8b-32d3-35e4-8c94-36f2da1d4ed6 -2017,Neuquén,II.1.1,1.15584,TJ,CO2,74100.0,kg/TJ,85647.74399999999,Gas Oil combustion consumption by public passenger transport,AR-Q,SESCO,annual,kg,a828ec74-074f-330c-992f-c4fc2e507200 -2017,Neuquén,II.1.1,1.15584,TJ,CH4,3.9,kg/TJ,4.507776,Gas Oil combustion consumption by public passenger transport,AR-Q,SESCO,annual,kg,38097382-31fd-3b6c-998c-0f1b61652d93 -2017,Neuquén,II.1.1,1.15584,TJ,N2O,3.9,kg/TJ,4.507776,Gas Oil combustion consumption by public passenger transport,AR-Q,SESCO,annual,kg,38097382-31fd-3b6c-998c-0f1b61652d93 -2017,Rio Negro,II.1.1,48.83424,TJ,CO2,74100.0,kg/TJ,3618617.184,Gas Oil combustion consumption by public passenger transport,AR-R,SESCO,annual,kg,123ab455-e72c-35be-b5fa-2ec0a044a7dd -2017,Rio Negro,II.1.1,48.83424,TJ,CH4,3.9,kg/TJ,190.453536,Gas Oil combustion consumption by public passenger transport,AR-R,SESCO,annual,kg,cc0ce614-31c3-3bcd-a415-cefe574d87b8 -2017,Rio Negro,II.1.1,48.83424,TJ,N2O,3.9,kg/TJ,190.453536,Gas Oil combustion consumption by public passenger transport,AR-R,SESCO,annual,kg,cc0ce614-31c3-3bcd-a415-cefe574d87b8 -2017,Salta,II.1.1,0.10836,TJ,CO2,74100.0,kg/TJ,8029.476,Gas Oil combustion consumption by public passenger transport,AR-A,SESCO,annual,kg,81d68113-d191-36d2-959d-8c44c6334729 -2017,Salta,II.1.1,0.10836,TJ,CH4,3.9,kg/TJ,0.422604,Gas Oil combustion consumption by public passenger transport,AR-A,SESCO,annual,kg,53f60864-b496-3d8b-93da-a1aa1518f340 -2017,Salta,II.1.1,0.10836,TJ,N2O,3.9,kg/TJ,0.422604,Gas Oil combustion consumption by public passenger transport,AR-A,SESCO,annual,kg,53f60864-b496-3d8b-93da-a1aa1518f340 -2017,San Juan,II.1.1,0.03612,TJ,CO2,74100.0,kg/TJ,2676.4919999999997,Gas Oil combustion consumption by public passenger transport,AR-J,SESCO,annual,kg,f1c36709-d37a-3179-ace9-0637f6c05a1f -2017,San Juan,II.1.1,0.03612,TJ,CH4,3.9,kg/TJ,0.140868,Gas Oil combustion consumption by public passenger transport,AR-J,SESCO,annual,kg,5e76d161-edcd-3406-a470-b0dd11894374 -2017,San Juan,II.1.1,0.03612,TJ,N2O,3.9,kg/TJ,0.140868,Gas Oil combustion consumption by public passenger transport,AR-J,SESCO,annual,kg,5e76d161-edcd-3406-a470-b0dd11894374 -2017,San Luis,II.1.1,0.75852,TJ,CO2,74100.0,kg/TJ,56206.331999999995,Gas Oil combustion consumption by public passenger transport,AR-D,SESCO,annual,kg,0e18d52a-365c-32b6-ab20-a1436128b167 -2017,San Luis,II.1.1,0.75852,TJ,CH4,3.9,kg/TJ,2.9582279999999996,Gas Oil combustion consumption by public passenger transport,AR-D,SESCO,annual,kg,855a7003-daa5-3289-8066-fae37880133b -2017,San Luis,II.1.1,0.75852,TJ,N2O,3.9,kg/TJ,2.9582279999999996,Gas Oil combustion consumption by public passenger transport,AR-D,SESCO,annual,kg,855a7003-daa5-3289-8066-fae37880133b -2017,Santa Fe,II.1.1,198.2988,TJ,CO2,74100.0,kg/TJ,14693941.08,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,f0290b39-6791-3ba7-96ea-6c38acd911fc -2017,Santa Fe,II.1.1,198.2988,TJ,CH4,3.9,kg/TJ,773.36532,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,8bb7a877-6e9f-35c9-91e0-120d45936a1f -2017,Santa Fe,II.1.1,198.2988,TJ,N2O,3.9,kg/TJ,773.36532,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,8bb7a877-6e9f-35c9-91e0-120d45936a1f -2017,Santiago del Estero,II.1.1,0.46956,TJ,CO2,74100.0,kg/TJ,34794.396,Gas Oil combustion consumption by public passenger transport,AR-G,SESCO,annual,kg,409ad42d-4625-3a07-9abd-1961858e3ed5 -2017,Santiago del Estero,II.1.1,0.46956,TJ,CH4,3.9,kg/TJ,1.831284,Gas Oil combustion consumption by public passenger transport,AR-G,SESCO,annual,kg,7d6b8347-1987-39b7-b4a7-412faa4f2657 -2017,Santiago del Estero,II.1.1,0.46956,TJ,N2O,3.9,kg/TJ,1.831284,Gas Oil combustion consumption by public passenger transport,AR-G,SESCO,annual,kg,7d6b8347-1987-39b7-b4a7-412faa4f2657 -2017,Tucuman,II.1.1,2.6728799999999997,TJ,CO2,74100.0,kg/TJ,198060.40799999997,Gas Oil combustion consumption by public passenger transport,AR-T,SESCO,annual,kg,15588662-b347-37b1-8a03-4e94e86a9ecf -2017,Tucuman,II.1.1,2.6728799999999997,TJ,CH4,3.9,kg/TJ,10.424231999999998,Gas Oil combustion consumption by public passenger transport,AR-T,SESCO,annual,kg,489c1bfb-0b85-3be9-a374-76b6b1387ce3 -2017,Tucuman,II.1.1,2.6728799999999997,TJ,N2O,3.9,kg/TJ,10.424231999999998,Gas Oil combustion consumption by public passenger transport,AR-T,SESCO,annual,kg,489c1bfb-0b85-3be9-a374-76b6b1387ce3 -2017,Buenos Aires,II.1.1,87.30203999999999,TJ,CO2,74100.0,kg/TJ,6469081.163999999,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,aa42898e-0070-3d5a-a830-6aee2d4bb437 -2017,Buenos Aires,II.1.1,87.30203999999999,TJ,CH4,3.9,kg/TJ,340.47795599999995,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,1650d99d-9729-3dc4-bfa7-26bb21400703 -2017,Buenos Aires,II.1.1,87.30203999999999,TJ,N2O,3.9,kg/TJ,340.47795599999995,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,1650d99d-9729-3dc4-bfa7-26bb21400703 -2017,Capital Federal,II.1.1,23.2974,TJ,CO2,74100.0,kg/TJ,1726337.34,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,88662fdd-e424-3c69-8d84-3f87833d3554 -2017,Capital Federal,II.1.1,23.2974,TJ,CH4,3.9,kg/TJ,90.85986,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,542b3993-e37a-345a-b5ce-0debcc07e760 -2017,Capital Federal,II.1.1,23.2974,TJ,N2O,3.9,kg/TJ,90.85986,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,542b3993-e37a-345a-b5ce-0debcc07e760 -2017,Chaco,II.1.1,0.03612,TJ,CO2,74100.0,kg/TJ,2676.4919999999997,Gas Oil combustion consumption by public passenger transport,AR-H,SESCO,annual,kg,99d6cc73-96ef-3908-bdbf-2390d40ac905 -2017,Chaco,II.1.1,0.03612,TJ,CH4,3.9,kg/TJ,0.140868,Gas Oil combustion consumption by public passenger transport,AR-H,SESCO,annual,kg,4fd51885-17e1-3f6f-abb6-0b1a2a70f00e -2017,Chaco,II.1.1,0.03612,TJ,N2O,3.9,kg/TJ,0.140868,Gas Oil combustion consumption by public passenger transport,AR-H,SESCO,annual,kg,4fd51885-17e1-3f6f-abb6-0b1a2a70f00e -2017,Chubut,II.1.1,9.10224,TJ,CO2,74100.0,kg/TJ,674475.984,Gas Oil combustion consumption by public passenger transport,AR-U,SESCO,annual,kg,0d6104fd-94d3-3997-8eb4-d403eccbcb02 -2017,Chubut,II.1.1,9.10224,TJ,CH4,3.9,kg/TJ,35.498736,Gas Oil combustion consumption by public passenger transport,AR-U,SESCO,annual,kg,d43989ba-72a5-3743-a7e3-da93e6f02651 -2017,Chubut,II.1.1,9.10224,TJ,N2O,3.9,kg/TJ,35.498736,Gas Oil combustion consumption by public passenger transport,AR-U,SESCO,annual,kg,d43989ba-72a5-3743-a7e3-da93e6f02651 -2017,Corrientes,II.1.1,0.03612,TJ,CO2,74100.0,kg/TJ,2676.4919999999997,Gas Oil combustion consumption by public passenger transport,AR-W,SESCO,annual,kg,c5e118e1-115a-3af4-b7e8-aeef6af1e466 -2017,Corrientes,II.1.1,0.03612,TJ,CH4,3.9,kg/TJ,0.140868,Gas Oil combustion consumption by public passenger transport,AR-W,SESCO,annual,kg,fe070851-74ff-31b5-8b70-6122da117dd5 -2017,Corrientes,II.1.1,0.03612,TJ,N2O,3.9,kg/TJ,0.140868,Gas Oil combustion consumption by public passenger transport,AR-W,SESCO,annual,kg,fe070851-74ff-31b5-8b70-6122da117dd5 -2017,Córdoba,II.1.1,1.6254,TJ,CO2,74100.0,kg/TJ,120442.14,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,1e9c1bbf-cfa6-37fd-977d-39b377b9f868 -2017,Córdoba,II.1.1,1.6254,TJ,CH4,3.9,kg/TJ,6.33906,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,3693a7bc-7bd8-30be-9552-d6f5749c09a9 -2017,Córdoba,II.1.1,1.6254,TJ,N2O,3.9,kg/TJ,6.33906,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,3693a7bc-7bd8-30be-9552-d6f5749c09a9 -2017,Entre Rios,II.1.1,0.03612,TJ,CO2,74100.0,kg/TJ,2676.4919999999997,Gas Oil combustion consumption by public passenger transport,AR-E,SESCO,annual,kg,8a2ab565-8480-33cc-94b5-deeec94bbeed -2017,Entre Rios,II.1.1,0.03612,TJ,CH4,3.9,kg/TJ,0.140868,Gas Oil combustion consumption by public passenger transport,AR-E,SESCO,annual,kg,30287ab8-554a-3903-93ab-b6be9fc95809 -2017,Entre Rios,II.1.1,0.03612,TJ,N2O,3.9,kg/TJ,0.140868,Gas Oil combustion consumption by public passenger transport,AR-E,SESCO,annual,kg,30287ab8-554a-3903-93ab-b6be9fc95809 -2017,La Pampa,II.1.1,5.30964,TJ,CO2,74100.0,kg/TJ,393444.324,Gas Oil combustion consumption by public passenger transport,AR-L,SESCO,annual,kg,5ed104b2-fc3e-353d-8c16-c37d63123043 -2017,La Pampa,II.1.1,5.30964,TJ,CH4,3.9,kg/TJ,20.707596,Gas Oil combustion consumption by public passenger transport,AR-L,SESCO,annual,kg,040549f1-e259-3228-a736-4726834c31cf -2017,La Pampa,II.1.1,5.30964,TJ,N2O,3.9,kg/TJ,20.707596,Gas Oil combustion consumption by public passenger transport,AR-L,SESCO,annual,kg,040549f1-e259-3228-a736-4726834c31cf -2017,Mendoza,II.1.1,0.03612,TJ,CO2,74100.0,kg/TJ,2676.4919999999997,Gas Oil combustion consumption by public passenger transport,AR-M,SESCO,annual,kg,14cca3ab-15f7-30c0-8660-60d68fc7b862 -2017,Mendoza,II.1.1,0.03612,TJ,CH4,3.9,kg/TJ,0.140868,Gas Oil combustion consumption by public passenger transport,AR-M,SESCO,annual,kg,984a4d7f-0f47-3c13-8ebc-3b59b250bc76 -2017,Mendoza,II.1.1,0.03612,TJ,N2O,3.9,kg/TJ,0.140868,Gas Oil combustion consumption by public passenger transport,AR-M,SESCO,annual,kg,984a4d7f-0f47-3c13-8ebc-3b59b250bc76 -2017,Misiones,II.1.1,1.6254,TJ,CO2,74100.0,kg/TJ,120442.14,Gas Oil combustion consumption by public passenger transport,AR-N,SESCO,annual,kg,03bbf370-4a85-3278-924e-3bdd0a4a194c -2017,Misiones,II.1.1,1.6254,TJ,CH4,3.9,kg/TJ,6.33906,Gas Oil combustion consumption by public passenger transport,AR-N,SESCO,annual,kg,a147230f-6169-34fb-9066-5a473e398060 -2017,Misiones,II.1.1,1.6254,TJ,N2O,3.9,kg/TJ,6.33906,Gas Oil combustion consumption by public passenger transport,AR-N,SESCO,annual,kg,a147230f-6169-34fb-9066-5a473e398060 -2017,Neuquén,II.1.1,1.9143599999999998,TJ,CO2,74100.0,kg/TJ,141854.076,Gas Oil combustion consumption by public passenger transport,AR-Q,SESCO,annual,kg,31acfe61-5d40-3006-a0bd-2ffe234c544b -2017,Neuquén,II.1.1,1.9143599999999998,TJ,CH4,3.9,kg/TJ,7.466003999999999,Gas Oil combustion consumption by public passenger transport,AR-Q,SESCO,annual,kg,5ea0c113-b259-3d24-959e-7b78c5b595cf -2017,Neuquén,II.1.1,1.9143599999999998,TJ,N2O,3.9,kg/TJ,7.466003999999999,Gas Oil combustion consumption by public passenger transport,AR-Q,SESCO,annual,kg,5ea0c113-b259-3d24-959e-7b78c5b595cf -2017,Rio Negro,II.1.1,12.642,TJ,CO2,74100.0,kg/TJ,936772.2,Gas Oil combustion consumption by public passenger transport,AR-R,SESCO,annual,kg,0f220e50-9123-3734-b8bc-c8391783f175 -2017,Rio Negro,II.1.1,12.642,TJ,CH4,3.9,kg/TJ,49.303799999999995,Gas Oil combustion consumption by public passenger transport,AR-R,SESCO,annual,kg,99a7a3aa-e8bb-3f2d-a4c3-df239cdc59fe -2017,Rio Negro,II.1.1,12.642,TJ,N2O,3.9,kg/TJ,49.303799999999995,Gas Oil combustion consumption by public passenger transport,AR-R,SESCO,annual,kg,99a7a3aa-e8bb-3f2d-a4c3-df239cdc59fe -2017,San Luis,II.1.1,0.03612,TJ,CO2,74100.0,kg/TJ,2676.4919999999997,Gas Oil combustion consumption by public passenger transport,AR-D,SESCO,annual,kg,d1a627b5-9e09-3e53-a6ad-dea571646ce9 -2017,San Luis,II.1.1,0.03612,TJ,CH4,3.9,kg/TJ,0.140868,Gas Oil combustion consumption by public passenger transport,AR-D,SESCO,annual,kg,c6a9bf1d-3e70-3e85-a609-9e2f1e66173d -2017,San Luis,II.1.1,0.03612,TJ,N2O,3.9,kg/TJ,0.140868,Gas Oil combustion consumption by public passenger transport,AR-D,SESCO,annual,kg,c6a9bf1d-3e70-3e85-a609-9e2f1e66173d -2017,Santa Fe,II.1.1,10.22196,TJ,CO2,74100.0,kg/TJ,757447.2359999999,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,54ecfd19-1973-3501-9dd4-edca2e1d0325 -2017,Santa Fe,II.1.1,10.22196,TJ,CH4,3.9,kg/TJ,39.865643999999996,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,8740ce93-637c-3d99-aad5-5db1addbfeac -2017,Santa Fe,II.1.1,10.22196,TJ,N2O,3.9,kg/TJ,39.865643999999996,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,8740ce93-637c-3d99-aad5-5db1addbfeac -2017,Santiago del Estero,II.1.1,0.03612,TJ,CO2,74100.0,kg/TJ,2676.4919999999997,Gas Oil combustion consumption by public passenger transport,AR-G,SESCO,annual,kg,2e81bdbc-0867-3229-aecf-aa2872d28d38 -2017,Santiago del Estero,II.1.1,0.03612,TJ,CH4,3.9,kg/TJ,0.140868,Gas Oil combustion consumption by public passenger transport,AR-G,SESCO,annual,kg,48da0990-3249-3c47-9984-d65d7d36f667 -2017,Santiago del Estero,II.1.1,0.03612,TJ,N2O,3.9,kg/TJ,0.140868,Gas Oil combustion consumption by public passenger transport,AR-G,SESCO,annual,kg,48da0990-3249-3c47-9984-d65d7d36f667 -2017,Tucuman,II.1.1,0.07224,TJ,CO2,74100.0,kg/TJ,5352.9839999999995,Gas Oil combustion consumption by public passenger transport,AR-T,SESCO,annual,kg,4342d217-5966-3509-9295-612f90685c55 -2017,Tucuman,II.1.1,0.07224,TJ,CH4,3.9,kg/TJ,0.281736,Gas Oil combustion consumption by public passenger transport,AR-T,SESCO,annual,kg,72b62858-a0a0-30c3-a79c-b52525c6f9e7 -2017,Tucuman,II.1.1,0.07224,TJ,N2O,3.9,kg/TJ,0.281736,Gas Oil combustion consumption by public passenger transport,AR-T,SESCO,annual,kg,72b62858-a0a0-30c3-a79c-b52525c6f9e7 -2017,Buenos Aires,II.1.1,0.034265,TJ,CO2,73300.0,kg/TJ,2511.6245,Naphtha combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,da207a9a-c401-36a1-b813-a75d83aa1e40 -2017,Buenos Aires,II.1.1,0.034265,TJ,CH4,0.5,kg/TJ,0.0171325,Naphtha combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,9ae1d432-8fdc-32b3-b35a-79a503b0ab35 -2017,Buenos Aires,II.1.1,0.034265,TJ,N2O,2.0,kg/TJ,0.06853,Naphtha combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,9fb7bfa1-a6a7-3eed-a7ea-24a783ab1383 -2017,Santa Fe,II.1.1,1.9188399999999999,TJ,CO2,73300.0,kg/TJ,140650.97199999998,Naphtha combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,235750e9-4c8f-3f30-82bf-bf6d745315fb -2017,Santa Fe,II.1.1,1.9188399999999999,TJ,CH4,0.5,kg/TJ,0.9594199999999999,Naphtha combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,b47632ce-8fd0-33a7-b46c-a690a9e1b428 -2017,Santa Fe,II.1.1,1.9188399999999999,TJ,N2O,2.0,kg/TJ,3.8376799999999998,Naphtha combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,5d4fd1f9-763b-307a-856d-ab5024fc6660 -2017,Santa Fe,II.1.1,0.6510349999999999,TJ,CO2,73300.0,kg/TJ,47720.86549999999,Naphtha combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,6fd56089-5cac-37c0-b1a7-977b8426d824 -2017,Santa Fe,II.1.1,0.6510349999999999,TJ,CH4,0.5,kg/TJ,0.32551749999999996,Naphtha combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,36b533ff-76d1-30b3-8fb0-f6b8477486a7 -2017,Santa Fe,II.1.1,0.6510349999999999,TJ,N2O,2.0,kg/TJ,1.3020699999999998,Naphtha combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,8ca5b1ca-c980-3932-b1e2-ea81d218235a -2017,Chubut,II.1.1,0.29799,TJ,CO2,74100.0,kg/TJ,22081.058999999997,Gas Oil combustion consumption by freight transport,AR-U,SESCO,annual,kg,667b3d24-f5d6-37a2-9c1a-092fec9cfb31 -2017,Chubut,II.1.1,0.29799,TJ,CH4,3.9,kg/TJ,1.1621609999999998,Gas Oil combustion consumption by freight transport,AR-U,SESCO,annual,kg,f00ad871-a22c-30a0-85bc-198fe004336b -2017,Chubut,II.1.1,0.29799,TJ,N2O,3.9,kg/TJ,1.1621609999999998,Gas Oil combustion consumption by freight transport,AR-U,SESCO,annual,kg,f00ad871-a22c-30a0-85bc-198fe004336b -2017,Buenos Aires,II.5.1,467.36338748399993,TJ,CO2,74100.0,kg/TJ,34631627.0125644,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,6d73c098-03ef-328c-8d41-11b9744de38f -2017,Buenos Aires,II.5.1,467.36338748399993,TJ,CH4,3.9,kg/TJ,1822.7172111875998,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,be99af30-5e47-37d7-8e19-724473a67c72 -2017,Buenos Aires,II.5.1,467.36338748399993,TJ,N2O,3.9,kg/TJ,1822.7172111875998,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,be99af30-5e47-37d7-8e19-724473a67c72 -2017,Corrientes,II.5.1,11.788386875999999,TJ,CO2,74100.0,kg/TJ,873519.4675115999,Gas Oil combustion consumption by agriculture machines,AR-W,SESCO,annual,kg,1a9806a3-319b-336c-9242-18b7f2179be2 -2017,Corrientes,II.5.1,11.788386875999999,TJ,CH4,3.9,kg/TJ,45.974708816399996,Gas Oil combustion consumption by agriculture machines,AR-W,SESCO,annual,kg,3468fbb3-06e9-30ae-8a75-463f44e56477 -2017,Corrientes,II.5.1,11.788386875999999,TJ,N2O,3.9,kg/TJ,45.974708816399996,Gas Oil combustion consumption by agriculture machines,AR-W,SESCO,annual,kg,3468fbb3-06e9-30ae-8a75-463f44e56477 -2017,Córdoba,II.5.1,855.5085824039999,TJ,CO2,74100.0,kg/TJ,63393185.95613639,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,14947122-5fbc-3173-89c5-042a2c809517 -2017,Córdoba,II.5.1,855.5085824039999,TJ,CH4,3.9,kg/TJ,3336.4834713755995,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,c98b72d7-7852-3002-8f9f-2aff9a698173 -2017,Córdoba,II.5.1,855.5085824039999,TJ,N2O,3.9,kg/TJ,3336.4834713755995,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,c98b72d7-7852-3002-8f9f-2aff9a698173 -2017,Entre Rios,II.5.1,342.90032573999997,TJ,CO2,74100.0,kg/TJ,25408914.137333997,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,fb25870d-3f3d-3384-ad27-f29ff120105d -2017,Entre Rios,II.5.1,342.90032573999997,TJ,CH4,3.9,kg/TJ,1337.311270386,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,adf2d760-1c04-3706-9d17-69c8e388552f -2017,Entre Rios,II.5.1,342.90032573999997,TJ,N2O,3.9,kg/TJ,1337.311270386,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,adf2d760-1c04-3706-9d17-69c8e388552f -2017,La Pampa,II.5.1,73.07430698399999,TJ,CO2,74100.0,kg/TJ,5414806.147514399,Gas Oil combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,cc0b3294-7541-3457-8b25-6ceefe283325 -2017,La Pampa,II.5.1,73.07430698399999,TJ,CH4,3.9,kg/TJ,284.98979723759993,Gas Oil combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,284b4df5-c7cd-3d35-ad49-caec22356c43 -2017,La Pampa,II.5.1,73.07430698399999,TJ,N2O,3.9,kg/TJ,284.98979723759993,Gas Oil combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,284b4df5-c7cd-3d35-ad49-caec22356c43 -2017,Santa Fe,II.5.1,374.20014063599996,TJ,CO2,74100.0,kg/TJ,27728230.4211276,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,071d390b-0288-3d42-bce8-9975a4dec353 -2017,Santa Fe,II.5.1,374.20014063599996,TJ,CH4,3.9,kg/TJ,1459.3805484803997,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,1f0a42e7-6ac4-3848-8281-edd3380c0330 -2017,Santa Fe,II.5.1,374.20014063599996,TJ,N2O,3.9,kg/TJ,1459.3805484803997,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,1f0a42e7-6ac4-3848-8281-edd3380c0330 -2017,Santiago del Estero,II.5.1,211.194474372,TJ,CO2,74100.0,kg/TJ,15649510.5509652,Gas Oil combustion consumption by agriculture machines,AR-G,SESCO,annual,kg,1f96d8c1-d935-38ec-b592-ee40e6c3a823 -2017,Santiago del Estero,II.5.1,211.194474372,TJ,CH4,3.9,kg/TJ,823.6584500508,Gas Oil combustion consumption by agriculture machines,AR-G,SESCO,annual,kg,1b291c00-3ffc-3c10-8a57-963a5f1898a5 -2017,Santiago del Estero,II.5.1,211.194474372,TJ,N2O,3.9,kg/TJ,823.6584500508,Gas Oil combustion consumption by agriculture machines,AR-G,SESCO,annual,kg,1b291c00-3ffc-3c10-8a57-963a5f1898a5 -2017,Tucuman,II.5.1,28.711921644,TJ,CO2,74100.0,kg/TJ,2127553.3938204,Gas Oil combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,deaa53d4-a488-3699-ae8a-fc877d01c787 -2017,Tucuman,II.5.1,28.711921644,TJ,CH4,3.9,kg/TJ,111.9764944116,Gas Oil combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,94fd8201-17e4-31f5-b449-032623f216b4 -2017,Tucuman,II.5.1,28.711921644,TJ,N2O,3.9,kg/TJ,111.9764944116,Gas Oil combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,94fd8201-17e4-31f5-b449-032623f216b4 -2017,Buenos Aires,II.5.1,7.100119235999999,TJ,CO2,74100.0,kg/TJ,526118.8353876,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,671985f7-a3f7-32ba-bace-519cf1ea63e2 -2017,Buenos Aires,II.5.1,7.100119235999999,TJ,CH4,3.9,kg/TJ,27.690465020399998,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,b65d073c-7248-369a-898f-5f16f3081b82 -2017,Buenos Aires,II.5.1,7.100119235999999,TJ,N2O,3.9,kg/TJ,27.690465020399998,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,b65d073c-7248-369a-898f-5f16f3081b82 -2017,Córdoba,II.5.1,17.760294299999998,TJ,CO2,74100.0,kg/TJ,1316037.80763,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,9f70f44c-680a-3bd9-b7ef-f2ca4523f947 -2017,Córdoba,II.5.1,17.760294299999998,TJ,CH4,3.9,kg/TJ,69.26514776999998,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,dea0a157-c998-319d-8635-f0890c8ccaa8 -2017,Córdoba,II.5.1,17.760294299999998,TJ,N2O,3.9,kg/TJ,69.26514776999998,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,dea0a157-c998-319d-8635-f0890c8ccaa8 -2017,Entre Rios,II.5.1,16.482701004,TJ,CO2,74100.0,kg/TJ,1221368.1443963998,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,58e3e9e7-41f6-3bf0-baab-3f4d81f787fe -2017,Entre Rios,II.5.1,16.482701004,TJ,CH4,3.9,kg/TJ,64.2825339156,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,def0347a-7740-356e-a4eb-396a857e601d -2017,Entre Rios,II.5.1,16.482701004,TJ,N2O,3.9,kg/TJ,64.2825339156,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,def0347a-7740-356e-a4eb-396a857e601d -2017,La Pampa,II.5.1,20.197267355999998,TJ,CO2,74100.0,kg/TJ,1496617.5110795998,Gas Oil combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,8a926e06-c581-36d6-b9c9-a766fbe2d2af -2017,La Pampa,II.5.1,20.197267355999998,TJ,CH4,3.9,kg/TJ,78.76934268839999,Gas Oil combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,19c8886e-0be8-3619-92bf-0cc036eea0ad -2017,La Pampa,II.5.1,20.197267355999998,TJ,N2O,3.9,kg/TJ,78.76934268839999,Gas Oil combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,19c8886e-0be8-3619-92bf-0cc036eea0ad -2017,Santa Fe,II.5.1,13.977262488,TJ,CO2,74100.0,kg/TJ,1035715.1503608,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,08abfe3b-f7d1-3e67-82e3-7f1bde2554bd -2017,Santa Fe,II.5.1,13.977262488,TJ,CH4,3.9,kg/TJ,54.5113237032,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,282aa95a-6b3d-3702-90ec-d96b12f51f90 -2017,Santa Fe,II.5.1,13.977262488,TJ,N2O,3.9,kg/TJ,54.5113237032,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,282aa95a-6b3d-3702-90ec-d96b12f51f90 -2017,Santiago del Estero,II.5.1,0.5078278589999999,TJ,CO2,73300.0,kg/TJ,37223.7820647,Naphtha combustion consumption by agriculture machines,AR-G,SESCO,annual,kg,c761eec3-f869-33d5-9ec8-07e2239082a9 -2017,Santiago del Estero,II.5.1,0.5078278589999999,TJ,CH4,0.5,kg/TJ,0.25391392949999997,Naphtha combustion consumption by agriculture machines,AR-G,SESCO,annual,kg,e11cf7b5-9776-3f8c-9f99-66a7e0cd0b3b -2017,Santiago del Estero,II.5.1,0.5078278589999999,TJ,N2O,2.0,kg/TJ,1.0156557179999999,Naphtha combustion consumption by agriculture machines,AR-G,SESCO,annual,kg,52046d3d-1bc6-3f2d-9333-c1a8fb05d6e3 -2017,Buenos Aires,II.1.1,235.69900477199997,TJ,CO2,74100.0,kg/TJ,17465296.253605198,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,2fb0f413-ec6e-3c4d-8fc0-14a877c831e5 -2017,Buenos Aires,II.1.1,235.69900477199997,TJ,CH4,3.9,kg/TJ,919.2261186107999,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,cc090398-37a9-3c11-ac25-ef97a56120f4 -2017,Buenos Aires,II.1.1,235.69900477199997,TJ,N2O,3.9,kg/TJ,919.2261186107999,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,cc090398-37a9-3c11-ac25-ef97a56120f4 -2017,Chaco,II.1.1,18.47341146,TJ,CO2,74100.0,kg/TJ,1368879.7891860001,Gas Oil combustion consumption by public passenger transport,AR-H,SESCO,annual,kg,916ea2ad-4c30-3977-b48e-52e8962fb5b6 -2017,Chaco,II.1.1,18.47341146,TJ,CH4,3.9,kg/TJ,72.046304694,Gas Oil combustion consumption by public passenger transport,AR-H,SESCO,annual,kg,19d7d05f-e589-3aa7-a602-11c811a1a396 -2017,Chaco,II.1.1,18.47341146,TJ,N2O,3.9,kg/TJ,72.046304694,Gas Oil combustion consumption by public passenger transport,AR-H,SESCO,annual,kg,19d7d05f-e589-3aa7-a602-11c811a1a396 -2017,Corrientes,II.1.1,40.182221352,TJ,CO2,74100.0,kg/TJ,2977502.6021832,Gas Oil combustion consumption by public passenger transport,AR-W,SESCO,annual,kg,2bc4fac9-d5a5-3c26-ac3f-17e2724922d0 -2017,Corrientes,II.1.1,40.182221352,TJ,CH4,3.9,kg/TJ,156.7106632728,Gas Oil combustion consumption by public passenger transport,AR-W,SESCO,annual,kg,bdf8bfc6-b181-3ce5-9330-e67dcf169442 -2017,Corrientes,II.1.1,40.182221352,TJ,N2O,3.9,kg/TJ,156.7106632728,Gas Oil combustion consumption by public passenger transport,AR-W,SESCO,annual,kg,bdf8bfc6-b181-3ce5-9330-e67dcf169442 -2017,Córdoba,II.1.1,313.29673493999996,TJ,CO2,74100.0,kg/TJ,23215288.059054,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,c5c85e13-78f5-3b20-b6f9-6ab99f2988c0 -2017,Córdoba,II.1.1,313.29673493999996,TJ,CH4,3.9,kg/TJ,1221.857266266,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,98c4f4e3-d815-35fb-9a6e-3150207d6153 -2017,Córdoba,II.1.1,313.29673493999996,TJ,N2O,3.9,kg/TJ,1221.857266266,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,98c4f4e3-d815-35fb-9a6e-3150207d6153 -2017,Entre Rios,II.1.1,94.01039449199999,TJ,CO2,74100.0,kg/TJ,6966170.231857199,Gas Oil combustion consumption by public passenger transport,AR-E,SESCO,annual,kg,ee8b0e27-d952-3ed7-ba1d-cab3ea52ea1e -2017,Entre Rios,II.1.1,94.01039449199999,TJ,CH4,3.9,kg/TJ,366.64053851879993,Gas Oil combustion consumption by public passenger transport,AR-E,SESCO,annual,kg,4663b242-6423-3aaa-81b2-69a7568480bf -2017,Entre Rios,II.1.1,94.01039449199999,TJ,N2O,3.9,kg/TJ,366.64053851879993,Gas Oil combustion consumption by public passenger transport,AR-E,SESCO,annual,kg,4663b242-6423-3aaa-81b2-69a7568480bf -2017,Jujuy,II.1.1,101.28430149599998,TJ,CO2,74100.0,kg/TJ,7505166.740853598,Gas Oil combustion consumption by public passenger transport,AR-Y,SESCO,annual,kg,1c3fd9a3-1e3a-3a8f-8046-0ac95cdfbdcc -2017,Jujuy,II.1.1,101.28430149599998,TJ,CH4,3.9,kg/TJ,395.0087758343999,Gas Oil combustion consumption by public passenger transport,AR-Y,SESCO,annual,kg,2e18669d-aecb-3cde-a91f-14aa1d05cbe7 -2017,Jujuy,II.1.1,101.28430149599998,TJ,N2O,3.9,kg/TJ,395.0087758343999,Gas Oil combustion consumption by public passenger transport,AR-Y,SESCO,annual,kg,2e18669d-aecb-3cde-a91f-14aa1d05cbe7 -2017,Salta,II.1.1,77.558623044,TJ,CO2,74100.0,kg/TJ,5747093.9675604,Gas Oil combustion consumption by public passenger transport,AR-A,SESCO,annual,kg,bc35bbd7-646f-38f5-b152-3da313ef19f0 -2017,Salta,II.1.1,77.558623044,TJ,CH4,3.9,kg/TJ,302.4786298716,Gas Oil combustion consumption by public passenger transport,AR-A,SESCO,annual,kg,a6eba0fa-090b-3e61-a701-b807cec0b2f3 -2017,Salta,II.1.1,77.558623044,TJ,N2O,3.9,kg/TJ,302.4786298716,Gas Oil combustion consumption by public passenger transport,AR-A,SESCO,annual,kg,a6eba0fa-090b-3e61-a701-b807cec0b2f3 -2017,Santa Fe,II.1.1,272.668485768,TJ,CO2,74100.0,kg/TJ,20204734.7954088,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,192d9872-76c9-3047-8600-6518c607b6d1 -2017,Santa Fe,II.1.1,272.668485768,TJ,CH4,3.9,kg/TJ,1063.4070944952,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,5d43ba6d-b1d2-368b-90a9-15ab241b066a -2017,Santa Fe,II.1.1,272.668485768,TJ,N2O,3.9,kg/TJ,1063.4070944952,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,5d43ba6d-b1d2-368b-90a9-15ab241b066a -2017,Santiago del Estero,II.1.1,121.46556769199998,TJ,CO2,74100.0,kg/TJ,9000598.565977199,Gas Oil combustion consumption by public passenger transport,AR-G,SESCO,annual,kg,f6133e4b-e670-3ee6-a286-075b878a30a3 -2017,Santiago del Estero,II.1.1,121.46556769199998,TJ,CH4,3.9,kg/TJ,473.7157139987999,Gas Oil combustion consumption by public passenger transport,AR-G,SESCO,annual,kg,30951998-bc98-351e-a899-13f5df3e8f78 -2017,Santiago del Estero,II.1.1,121.46556769199998,TJ,N2O,3.9,kg/TJ,473.7157139987999,Gas Oil combustion consumption by public passenger transport,AR-G,SESCO,annual,kg,30951998-bc98-351e-a899-13f5df3e8f78 -2017,Tucuman,II.1.1,27.257156136,TJ,CO2,74100.0,kg/TJ,2019755.2696776,Gas Oil combustion consumption by public passenger transport,AR-T,SESCO,annual,kg,7d77b6bb-5af9-3962-a41c-286454c6b874 -2017,Tucuman,II.1.1,27.257156136,TJ,CH4,3.9,kg/TJ,106.3029089304,Gas Oil combustion consumption by public passenger transport,AR-T,SESCO,annual,kg,e90796e3-9220-3b57-a514-cae2a075f052 -2017,Tucuman,II.1.1,27.257156136,TJ,N2O,3.9,kg/TJ,106.3029089304,Gas Oil combustion consumption by public passenger transport,AR-T,SESCO,annual,kg,e90796e3-9220-3b57-a514-cae2a075f052 -2017,Buenos Aires,II.1.1,23.747393795999994,TJ,CO2,74100.0,kg/TJ,1759681.8802835995,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,e8bd92b0-662e-36ff-a3b7-98b381eebe14 -2017,Buenos Aires,II.1.1,23.747393795999994,TJ,CH4,3.9,kg/TJ,92.61483580439997,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,0b59b456-ebff-337c-9008-817fabe13819 -2017,Buenos Aires,II.1.1,23.747393795999994,TJ,N2O,3.9,kg/TJ,92.61483580439997,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,0b59b456-ebff-337c-9008-817fabe13819 -2017,Corrientes,II.1.1,3.98976102,TJ,CO2,74100.0,kg/TJ,295641.291582,Gas Oil combustion consumption by public passenger transport,AR-W,SESCO,annual,kg,f091200c-d27d-3dd3-a2d5-93d4443306f6 -2017,Corrientes,II.1.1,3.98976102,TJ,CH4,3.9,kg/TJ,15.560067978,Gas Oil combustion consumption by public passenger transport,AR-W,SESCO,annual,kg,e7490413-0fe9-3956-b4d5-2b635b747e4c -2017,Corrientes,II.1.1,3.98976102,TJ,N2O,3.9,kg/TJ,15.560067978,Gas Oil combustion consumption by public passenger transport,AR-W,SESCO,annual,kg,e7490413-0fe9-3956-b4d5-2b635b747e4c -2017,Córdoba,II.1.1,18.552691248,TJ,CO2,74100.0,kg/TJ,1374754.4214768,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,ba3ef0d0-30fa-3099-8e3b-7e1e1af1caeb -2017,Córdoba,II.1.1,18.552691248,TJ,CH4,3.9,kg/TJ,72.35549586719999,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,c7b81b05-0a00-3179-8d9a-29852d2ee701 -2017,Córdoba,II.1.1,18.552691248,TJ,N2O,3.9,kg/TJ,72.35549586719999,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,c7b81b05-0a00-3179-8d9a-29852d2ee701 -2017,Entre Rios,II.1.1,4.567258415999999,TJ,CO2,74100.0,kg/TJ,338433.84862559993,Gas Oil combustion consumption by public passenger transport,AR-E,SESCO,annual,kg,a0b65b25-0fd7-39f7-8e12-ecf77df1e2a4 -2017,Entre Rios,II.1.1,4.567258415999999,TJ,CH4,3.9,kg/TJ,17.812307822399994,Gas Oil combustion consumption by public passenger transport,AR-E,SESCO,annual,kg,c8d5d77f-cd8e-3f94-b6a5-59f1091febe6 -2017,Entre Rios,II.1.1,4.567258415999999,TJ,N2O,3.9,kg/TJ,17.812307822399994,Gas Oil combustion consumption by public passenger transport,AR-E,SESCO,annual,kg,c8d5d77f-cd8e-3f94-b6a5-59f1091febe6 -2017,Jujuy,II.1.1,2.69883222,TJ,CO2,74100.0,kg/TJ,199983.46750199998,Gas Oil combustion consumption by public passenger transport,AR-Y,SESCO,annual,kg,885eea32-2d22-3fa7-a6a2-54b61859a366 -2017,Jujuy,II.1.1,2.69883222,TJ,CH4,3.9,kg/TJ,10.525445657999999,Gas Oil combustion consumption by public passenger transport,AR-Y,SESCO,annual,kg,7b664566-137d-30ea-a3a0-2412830320b3 -2017,Jujuy,II.1.1,2.69883222,TJ,N2O,3.9,kg/TJ,10.525445657999999,Gas Oil combustion consumption by public passenger transport,AR-Y,SESCO,annual,kg,7b664566-137d-30ea-a3a0-2412830320b3 -2017,Santa Fe,II.1.1,18.02935218,TJ,CO2,74100.0,kg/TJ,1335974.996538,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,76b81b66-cfa0-3b7e-a4ae-7ea7cbfac925 -2017,Santa Fe,II.1.1,18.02935218,TJ,CH4,3.9,kg/TJ,70.314473502,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,8ad2a584-989c-3a72-9afe-30fd83b377ea -2017,Santa Fe,II.1.1,18.02935218,TJ,N2O,3.9,kg/TJ,70.314473502,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,8ad2a584-989c-3a72-9afe-30fd83b377ea -2017,Santiago del Estero,II.1.1,7.802093375999999,TJ,CO2,74100.0,kg/TJ,578135.1191615999,Gas Oil combustion consumption by public passenger transport,AR-G,SESCO,annual,kg,39d9bd17-4015-35c3-9f74-1baaa0683b6f -2017,Santiago del Estero,II.1.1,7.802093375999999,TJ,CH4,3.9,kg/TJ,30.428164166399995,Gas Oil combustion consumption by public passenger transport,AR-G,SESCO,annual,kg,f453fe8c-5ea2-388a-bbfe-510d36464c21 -2017,Santiago del Estero,II.1.1,7.802093375999999,TJ,N2O,3.9,kg/TJ,30.428164166399995,Gas Oil combustion consumption by public passenger transport,AR-G,SESCO,annual,kg,f453fe8c-5ea2-388a-bbfe-510d36464c21 -2017,Tucuman,II.1.1,3.30963948,TJ,CO2,74100.0,kg/TJ,245244.285468,Gas Oil combustion consumption by public passenger transport,AR-T,SESCO,annual,kg,38a3992e-f6db-3736-8238-f516fbd23647 -2017,Tucuman,II.1.1,3.30963948,TJ,CH4,3.9,kg/TJ,12.907593971999999,Gas Oil combustion consumption by public passenger transport,AR-T,SESCO,annual,kg,b27e6b8b-baba-37b8-b8a4-e68512c5b701 -2017,Tucuman,II.1.1,3.30963948,TJ,N2O,3.9,kg/TJ,12.907593971999999,Gas Oil combustion consumption by public passenger transport,AR-T,SESCO,annual,kg,b27e6b8b-baba-37b8-b8a4-e68512c5b701 -2017,Buenos Aires,II.5.1,448.42745219999995,TJ,CO2,74100.0,kg/TJ,33228474.208019998,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,b339e239-2d35-387b-8338-b178b225dbff -2017,Buenos Aires,II.5.1,448.42745219999995,TJ,CH4,3.9,kg/TJ,1748.8670635799997,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,a8dc0630-4a70-305f-a770-8a843b9e3fc3 -2017,Buenos Aires,II.5.1,448.42745219999995,TJ,N2O,3.9,kg/TJ,1748.8670635799997,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,a8dc0630-4a70-305f-a770-8a843b9e3fc3 -2017,Córdoba,II.5.1,53.24203583999999,TJ,CO2,74100.0,kg/TJ,3945234.8557439996,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,67f478ba-e69e-3d50-94fc-6175f0a24ba8 -2017,Córdoba,II.5.1,53.24203583999999,TJ,CH4,3.9,kg/TJ,207.64393977599997,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,ec8e6c49-00fa-3b91-bcb2-5ec4c0dc2fc0 -2017,Córdoba,II.5.1,53.24203583999999,TJ,N2O,3.9,kg/TJ,207.64393977599997,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,ec8e6c49-00fa-3b91-bcb2-5ec4c0dc2fc0 -2017,Entre Rios,II.5.1,16.69000452,TJ,CO2,74100.0,kg/TJ,1236729.334932,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,de4d18cc-39b4-37cb-a31c-4ec328db3f2e -2017,Entre Rios,II.5.1,16.69000452,TJ,CH4,3.9,kg/TJ,65.09101762799999,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,3ce191ee-cb85-39d0-a8fe-4e389c75d0c6 -2017,Entre Rios,II.5.1,16.69000452,TJ,N2O,3.9,kg/TJ,65.09101762799999,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,3ce191ee-cb85-39d0-a8fe-4e389c75d0c6 -2017,La Pampa,II.5.1,6.11695812,TJ,CO2,74100.0,kg/TJ,453266.596692,Gas Oil combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,1a79708a-8ef2-3f98-8fe7-afcd23c00593 -2017,La Pampa,II.5.1,6.11695812,TJ,CH4,3.9,kg/TJ,23.856136667999998,Gas Oil combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,7ed76d4f-6401-3243-a283-3dbf12fc473b -2017,La Pampa,II.5.1,6.11695812,TJ,N2O,3.9,kg/TJ,23.856136667999998,Gas Oil combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,7ed76d4f-6401-3243-a283-3dbf12fc473b -2017,Neuquén,II.5.1,1.24819884,TJ,CO2,74100.0,kg/TJ,92491.534044,Gas Oil combustion consumption by agriculture machines,AR-Q,SESCO,annual,kg,f5ea046e-9a60-3d24-8722-0f23279617ca -2017,Neuquén,II.5.1,1.24819884,TJ,CH4,3.9,kg/TJ,4.867975476,Gas Oil combustion consumption by agriculture machines,AR-Q,SESCO,annual,kg,5b1983cc-4563-3e9e-b729-bf4bb43f9b5d -2017,Neuquén,II.5.1,1.24819884,TJ,N2O,3.9,kg/TJ,4.867975476,Gas Oil combustion consumption by agriculture machines,AR-Q,SESCO,annual,kg,5b1983cc-4563-3e9e-b729-bf4bb43f9b5d -2017,Rio Negro,II.5.1,2.4658762800000003,TJ,CO2,74100.0,kg/TJ,182721.43234800003,Gas Oil combustion consumption by agriculture machines,AR-R,SESCO,annual,kg,33d3ceab-1502-3cbc-9200-5ce5c7809335 -2017,Rio Negro,II.5.1,2.4658762800000003,TJ,CH4,3.9,kg/TJ,9.616917492,Gas Oil combustion consumption by agriculture machines,AR-R,SESCO,annual,kg,9f3f8157-4943-3431-83b7-c0b3b93da2f9 -2017,Rio Negro,II.5.1,2.4658762800000003,TJ,N2O,3.9,kg/TJ,9.616917492,Gas Oil combustion consumption by agriculture machines,AR-R,SESCO,annual,kg,9f3f8157-4943-3431-83b7-c0b3b93da2f9 -2017,Buenos Aires,II.5.1,8.921715110000001,TJ,CO2,73300.0,kg/TJ,653961.717563,Naphtha combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,a6b1920c-050c-314d-bc88-51d20bfd3dcd -2017,Buenos Aires,II.5.1,8.921715110000001,TJ,CH4,0.5,kg/TJ,4.4608575550000005,Naphtha combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,3747e7e2-6e46-3f24-ad09-1d89a11492de -2017,Buenos Aires,II.5.1,8.921715110000001,TJ,N2O,2.0,kg/TJ,17.843430220000002,Naphtha combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,0bc6d028-fcd6-39b1-a676-53d4fbd742fb -2017,Neuquén,II.5.1,3.571543745,TJ,CO2,73300.0,kg/TJ,261794.1565085,Naphtha combustion consumption by agriculture machines,AR-Q,SESCO,annual,kg,56576c4b-ce05-3be7-b0e7-e49fc3a64edc -2017,Neuquén,II.5.1,3.571543745,TJ,CH4,0.5,kg/TJ,1.7857718725,Naphtha combustion consumption by agriculture machines,AR-Q,SESCO,annual,kg,b07bc9b0-c8cf-3c51-a18e-5cfa31379563 -2017,Neuquén,II.5.1,3.571543745,TJ,N2O,2.0,kg/TJ,7.14308749,Naphtha combustion consumption by agriculture machines,AR-Q,SESCO,annual,kg,5ab217ae-24f7-3eec-9475-832a30126632 -2017,Rio Negro,II.5.1,1.4673643599999997,TJ,CO2,73300.0,kg/TJ,107557.80758799998,Naphtha combustion consumption by agriculture machines,AR-R,SESCO,annual,kg,69424167-57f5-35f4-ba91-5b843e225850 -2017,Rio Negro,II.5.1,1.4673643599999997,TJ,CH4,0.5,kg/TJ,0.7336821799999999,Naphtha combustion consumption by agriculture machines,AR-R,SESCO,annual,kg,c592437b-0a49-345a-962a-492fa3a37374 -2017,Rio Negro,II.5.1,1.4673643599999997,TJ,N2O,2.0,kg/TJ,2.9347287199999994,Naphtha combustion consumption by agriculture machines,AR-R,SESCO,annual,kg,10e873bb-50f0-3749-b950-c6e9c27c6791 -2017,Buenos Aires,II.5.1,1.85078971,TJ,CO2,73300.0,kg/TJ,135662.885743,Naphtha combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,3b2356b6-b84f-3fda-b9a6-dbcb2326deae -2017,Buenos Aires,II.5.1,1.85078971,TJ,CH4,0.5,kg/TJ,0.925394855,Naphtha combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,24fe9a1b-e5a0-3425-bead-bcde5e643242 -2017,Buenos Aires,II.5.1,1.85078971,TJ,N2O,2.0,kg/TJ,3.70157942,Naphtha combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,ae54c6b3-a46a-3642-bea4-b555d0998a02 -2017,Buenos Aires,II.1.1,166.24034952,TJ,CO2,74100.0,kg/TJ,12318409.899432,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,c71af81e-5133-3fe8-b3c3-0a828c18cb4c -2017,Buenos Aires,II.1.1,166.24034952,TJ,CH4,3.9,kg/TJ,648.337363128,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,0d6c43a8-fcd0-3290-ac63-0ecc4d003708 -2017,Buenos Aires,II.1.1,166.24034952,TJ,N2O,3.9,kg/TJ,648.337363128,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,0d6c43a8-fcd0-3290-ac63-0ecc4d003708 -2017,Chubut,II.1.1,5.15078424,TJ,CO2,74100.0,kg/TJ,381673.112184,Gas Oil combustion consumption by freight transport,AR-U,SESCO,annual,kg,8933e642-8519-3ce7-bba3-c25f66cc6684 -2017,Chubut,II.1.1,5.15078424,TJ,CH4,3.9,kg/TJ,20.088058536,Gas Oil combustion consumption by freight transport,AR-U,SESCO,annual,kg,667ba3a9-a8dd-3a8d-bbed-aed35989291c -2017,Chubut,II.1.1,5.15078424,TJ,N2O,3.9,kg/TJ,20.088058536,Gas Oil combustion consumption by freight transport,AR-U,SESCO,annual,kg,667ba3a9-a8dd-3a8d-bbed-aed35989291c -2017,San Luis,II.1.1,34.60035936,TJ,CO2,74100.0,kg/TJ,2563886.6285759998,Gas Oil combustion consumption by freight transport,AR-D,SESCO,annual,kg,5580f66e-dd10-3edd-8d1c-c673c62b189f -2017,San Luis,II.1.1,34.60035936,TJ,CH4,3.9,kg/TJ,134.941401504,Gas Oil combustion consumption by freight transport,AR-D,SESCO,annual,kg,fef94ba0-69e6-3333-9d18-c5edcdfd0fa5 -2017,San Luis,II.1.1,34.60035936,TJ,N2O,3.9,kg/TJ,134.941401504,Gas Oil combustion consumption by freight transport,AR-D,SESCO,annual,kg,fef94ba0-69e6-3333-9d18-c5edcdfd0fa5 -2017,Buenos Aires,II.1.1,4.77997632,TJ,CO2,74100.0,kg/TJ,354196.24531200004,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,7c0e16bc-83ba-37a6-89a6-09b6de9364c3 -2017,Buenos Aires,II.1.1,4.77997632,TJ,CH4,3.9,kg/TJ,18.641907648,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,98a1fbf3-9913-323f-8214-2549d0031392 -2017,Buenos Aires,II.1.1,4.77997632,TJ,N2O,3.9,kg/TJ,18.641907648,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,98a1fbf3-9913-323f-8214-2549d0031392 -2017,Buenos Aires,II.1.1,439.3512186,TJ,CO2,74100.0,kg/TJ,32555925.29826,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,b7a0af31-5d1d-36b9-8c51-da5f35b15412 -2017,Buenos Aires,II.1.1,439.3512186,TJ,CH4,3.9,kg/TJ,1713.46975254,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,877de111-43e0-3711-ada6-6cc3186ce202 -2017,Buenos Aires,II.1.1,439.3512186,TJ,N2O,3.9,kg/TJ,1713.46975254,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,877de111-43e0-3711-ada6-6cc3186ce202 -2017,Capital Federal,II.1.1,68.99595443999999,TJ,CO2,74100.0,kg/TJ,5112600.2240039995,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,81e151a1-0711-3d64-9aa6-714c417d9577 -2017,Capital Federal,II.1.1,68.99595443999999,TJ,CH4,3.9,kg/TJ,269.08422231599997,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,8fc44171-73c8-3384-8123-0d72a1c1e470 -2017,Capital Federal,II.1.1,68.99595443999999,TJ,N2O,3.9,kg/TJ,269.08422231599997,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,8fc44171-73c8-3384-8123-0d72a1c1e470 -2017,Chubut,II.1.1,37.78227852,TJ,CO2,74100.0,kg/TJ,2799666.8383319997,Gas Oil combustion consumption by public passenger transport,AR-U,SESCO,annual,kg,e7086cd5-5bf2-3dd3-8253-93975f55ab66 -2017,Chubut,II.1.1,37.78227852,TJ,CH4,3.9,kg/TJ,147.35088622799998,Gas Oil combustion consumption by public passenger transport,AR-U,SESCO,annual,kg,bd975df1-8748-337d-8e80-4fabd35d78ad -2017,Chubut,II.1.1,37.78227852,TJ,N2O,3.9,kg/TJ,147.35088622799998,Gas Oil combustion consumption by public passenger transport,AR-U,SESCO,annual,kg,bd975df1-8748-337d-8e80-4fabd35d78ad -2017,Córdoba,II.1.1,209.52988055999998,TJ,CO2,74100.0,kg/TJ,15526164.149495998,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,67d6dce6-ad0d-3532-88e9-04acf832ef13 -2017,Córdoba,II.1.1,209.52988055999998,TJ,CH4,3.9,kg/TJ,817.1665341839999,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,be817730-c2dc-38dd-9fec-333b7b67be24 -2017,Córdoba,II.1.1,209.52988055999998,TJ,N2O,3.9,kg/TJ,817.1665341839999,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,be817730-c2dc-38dd-9fec-333b7b67be24 -2017,Neuquén,II.1.1,22.848645119999997,TJ,CO2,74100.0,kg/TJ,1693084.6033919998,Gas Oil combustion consumption by public passenger transport,AR-Q,SESCO,annual,kg,4f973707-dbd9-35b4-b501-64bf163cd89e -2017,Neuquén,II.1.1,22.848645119999997,TJ,CH4,3.9,kg/TJ,89.10971596799999,Gas Oil combustion consumption by public passenger transport,AR-Q,SESCO,annual,kg,7fb0b5cc-cede-31cb-991c-825bed391ff4 -2017,Neuquén,II.1.1,22.848645119999997,TJ,N2O,3.9,kg/TJ,89.10971596799999,Gas Oil combustion consumption by public passenger transport,AR-Q,SESCO,annual,kg,7fb0b5cc-cede-31cb-991c-825bed391ff4 -2017,Rio Negro,II.1.1,120.03932975999999,TJ,CO2,74100.0,kg/TJ,8894914.335215999,Gas Oil combustion consumption by public passenger transport,AR-R,SESCO,annual,kg,116b863f-0ec7-3a7d-a69e-33ea5fd4f3c0 -2017,Rio Negro,II.1.1,120.03932975999999,TJ,CH4,3.9,kg/TJ,468.15338606399996,Gas Oil combustion consumption by public passenger transport,AR-R,SESCO,annual,kg,b8b37932-5f79-3788-9c90-67e4df556f9f -2017,Rio Negro,II.1.1,120.03932975999999,TJ,N2O,3.9,kg/TJ,468.15338606399996,Gas Oil combustion consumption by public passenger transport,AR-R,SESCO,annual,kg,b8b37932-5f79-3788-9c90-67e4df556f9f -2017,Santa Fe,II.1.1,5.545214639999999,TJ,CO2,74100.0,kg/TJ,410900.40482399997,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,3b08ea58-65ad-3862-97c1-f7a9a5c2dc5d -2017,Santa Fe,II.1.1,5.545214639999999,TJ,CH4,3.9,kg/TJ,21.626337095999997,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,ada0350f-0366-3058-8d83-626543909ba6 -2017,Santa Fe,II.1.1,5.545214639999999,TJ,N2O,3.9,kg/TJ,21.626337095999997,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,ada0350f-0366-3058-8d83-626543909ba6 -2017,Buenos Aires,II.1.1,25.38408852,TJ,CO2,74100.0,kg/TJ,1880960.959332,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,ac37acac-e64f-3629-98da-f5e35f02bb1b -2017,Buenos Aires,II.1.1,25.38408852,TJ,CH4,3.9,kg/TJ,98.99794522799999,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,23b74004-f005-3fc1-b3a9-c036292968f2 -2017,Buenos Aires,II.1.1,25.38408852,TJ,N2O,3.9,kg/TJ,98.99794522799999,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,23b74004-f005-3fc1-b3a9-c036292968f2 -2017,Córdoba,II.1.1,3.41019756,TJ,CO2,74100.0,kg/TJ,252695.63919599997,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,bcee8d9e-13e9-3dd7-aa95-9b4cd227d9d9 -2017,Córdoba,II.1.1,3.41019756,TJ,CH4,3.9,kg/TJ,13.299770484,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,e30fed9c-8de5-377e-8729-e5787d43281f -2017,Córdoba,II.1.1,3.41019756,TJ,N2O,3.9,kg/TJ,13.299770484,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,e30fed9c-8de5-377e-8729-e5787d43281f -2017,Neuquén,II.1.1,5.91829812,TJ,CO2,74100.0,kg/TJ,438545.89069200004,Gas Oil combustion consumption by public passenger transport,AR-Q,SESCO,annual,kg,67c969e0-50d5-3574-9d88-86597c5c6987 -2017,Neuquén,II.1.1,5.91829812,TJ,CH4,3.9,kg/TJ,23.081362668,Gas Oil combustion consumption by public passenger transport,AR-Q,SESCO,annual,kg,0a90ab7f-bc7a-33f8-9003-c75d9aa7423b -2017,Neuquén,II.1.1,5.91829812,TJ,N2O,3.9,kg/TJ,23.081362668,Gas Oil combustion consumption by public passenger transport,AR-Q,SESCO,annual,kg,0a90ab7f-bc7a-33f8-9003-c75d9aa7423b -2017,Rio Negro,II.1.1,4.656084720000001,TJ,CO2,74100.0,kg/TJ,345015.87775200006,Gas Oil combustion consumption by public passenger transport,AR-R,SESCO,annual,kg,136352ab-9a2e-363d-aa34-2583fe8c4677 -2017,Rio Negro,II.1.1,4.656084720000001,TJ,CH4,3.9,kg/TJ,18.158730408000004,Gas Oil combustion consumption by public passenger transport,AR-R,SESCO,annual,kg,59d6a1f7-7c6f-3efa-be0c-319416c445e2 -2017,Rio Negro,II.1.1,4.656084720000001,TJ,N2O,3.9,kg/TJ,18.158730408000004,Gas Oil combustion consumption by public passenger transport,AR-R,SESCO,annual,kg,59d6a1f7-7c6f-3efa-be0c-319416c445e2 -2017,Capital Federal,II.5.1,14.043099999999999,TJ,CO2,69300.0,kg/TJ,973186.83,Motor Gasoline combustion consumption by agriculture machines,AR-C,SESCO,annual,kg,c8484bd0-f606-34ed-b5a6-c4dc2a715fec -2017,Capital Federal,II.5.1,14.043099999999999,TJ,CH4,33.0,kg/TJ,463.42229999999995,Motor Gasoline combustion consumption by agriculture machines,AR-C,SESCO,annual,kg,e22958c9-8d36-3ded-8dfa-4e2b1321591d -2017,Capital Federal,II.5.1,14.043099999999999,TJ,N2O,3.2,kg/TJ,44.93792,Motor Gasoline combustion consumption by agriculture machines,AR-C,SESCO,annual,kg,ee6da9bb-a3d8-33fa-ae07-2c25df892e68 -2017,Buenos Aires,II.5.1,306.87552,TJ,CO2,74100.0,kg/TJ,22739476.031999998,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,c3cab043-d46c-34e7-9b81-d65c34ad03c7 -2017,Buenos Aires,II.5.1,306.87552,TJ,CH4,3.9,kg/TJ,1196.8145279999999,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,113734da-964d-3b38-a3b5-241352c8bdf6 -2017,Buenos Aires,II.5.1,306.87552,TJ,N2O,3.9,kg/TJ,1196.8145279999999,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,113734da-964d-3b38-a3b5-241352c8bdf6 -2017,Córdoba,II.5.1,57.394679999999994,TJ,CO2,74100.0,kg/TJ,4252945.788,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,b947511c-94a7-3279-8d31-9c423f9e6b76 -2017,Córdoba,II.5.1,57.394679999999994,TJ,CH4,3.9,kg/TJ,223.83925199999996,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,38053e0a-9717-3d1d-89bd-214948b6d0ba -2017,Córdoba,II.5.1,57.394679999999994,TJ,N2O,3.9,kg/TJ,223.83925199999996,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,38053e0a-9717-3d1d-89bd-214948b6d0ba -2017,Entre Rios,II.5.1,47.38944,TJ,CO2,74100.0,kg/TJ,3511557.504,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,37292780-6eb5-3029-b186-7aa396514ab2 -2017,Entre Rios,II.5.1,47.38944,TJ,CH4,3.9,kg/TJ,184.818816,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,e8a4e764-9250-3c7f-970e-9f0561cdae3d -2017,Entre Rios,II.5.1,47.38944,TJ,N2O,3.9,kg/TJ,184.818816,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,e8a4e764-9250-3c7f-970e-9f0561cdae3d -2017,Santa Fe,II.5.1,41.82696,TJ,CO2,74100.0,kg/TJ,3099377.736,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,28d5f278-ce62-39e3-bf4d-18777089082a -2017,Santa Fe,II.5.1,41.82696,TJ,CH4,3.9,kg/TJ,163.125144,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,37e7487c-ded1-3206-8057-9bb46102550c -2017,Santa Fe,II.5.1,41.82696,TJ,N2O,3.9,kg/TJ,163.125144,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,37e7487c-ded1-3206-8057-9bb46102550c -2017,Buenos Aires,II.5.1,15.856679999999999,TJ,CO2,74100.0,kg/TJ,1174979.988,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,2c6a4e16-f788-3652-a2d9-ca8b15538a7c -2017,Buenos Aires,II.5.1,15.856679999999999,TJ,CH4,3.9,kg/TJ,61.841052,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,480e02e3-019e-3beb-9f3c-cd7f4aecca07 -2017,Buenos Aires,II.5.1,15.856679999999999,TJ,N2O,3.9,kg/TJ,61.841052,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,480e02e3-019e-3beb-9f3c-cd7f4aecca07 -2017,Entre Rios,II.5.1,23.405759999999997,TJ,CO2,74100.0,kg/TJ,1734366.8159999999,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,0f8980e7-372a-3e64-adaa-36cba0b02434 -2017,Entre Rios,II.5.1,23.405759999999997,TJ,CH4,3.9,kg/TJ,91.28246399999999,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,2fe07d33-39c2-3db8-acaf-9adf773c0864 -2017,Entre Rios,II.5.1,23.405759999999997,TJ,N2O,3.9,kg/TJ,91.28246399999999,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,2fe07d33-39c2-3db8-acaf-9adf773c0864 -2017,Buenos Aires,II.2.1,246.04943999999998,TJ,CO2,74100.0,kg/TJ,18232263.503999997,Gas Oil combustion consumption by railway transport,AR-B,SESCO,annual,kg,8670a77e-c2db-3489-91d4-66899628e994 -2017,Buenos Aires,II.2.1,246.04943999999998,TJ,CH4,3.9,kg/TJ,959.5928159999999,Gas Oil combustion consumption by railway transport,AR-B,SESCO,annual,kg,ab688c0e-81c6-3dcf-986b-f32038ef84da -2017,Buenos Aires,II.2.1,246.04943999999998,TJ,N2O,3.9,kg/TJ,959.5928159999999,Gas Oil combustion consumption by railway transport,AR-B,SESCO,annual,kg,ab688c0e-81c6-3dcf-986b-f32038ef84da -2017,Santa Fe,II.2.1,10.510919999999999,TJ,CO2,74100.0,kg/TJ,778859.1719999999,Gas Oil combustion consumption by railway transport,AR-S,SESCO,annual,kg,698775b0-0566-3c54-91ea-7ef519ae03c7 -2017,Santa Fe,II.2.1,10.510919999999999,TJ,CH4,3.9,kg/TJ,40.99258799999999,Gas Oil combustion consumption by railway transport,AR-S,SESCO,annual,kg,bf391ca6-f89b-32ae-8b37-bb3583228203 -2017,Santa Fe,II.2.1,10.510919999999999,TJ,N2O,3.9,kg/TJ,40.99258799999999,Gas Oil combustion consumption by railway transport,AR-S,SESCO,annual,kg,bf391ca6-f89b-32ae-8b37-bb3583228203 -2017,Buenos Aires,II.1.1,1.7277,TJ,CO2,69300.0,kg/TJ,119729.61,Motor Gasoline combustion consumption by freight transport,AR-B,SESCO,annual,kg,39f9342e-aab2-374e-963d-3c8db8b3a87a -2017,Buenos Aires,II.1.1,1.7277,TJ,CH4,33.0,kg/TJ,57.0141,Motor Gasoline combustion consumption by freight transport,AR-B,SESCO,annual,kg,bdfdb4a0-481e-3e73-83ce-c0390d257a1b -2017,Buenos Aires,II.1.1,1.7277,TJ,N2O,3.2,kg/TJ,5.52864,Motor Gasoline combustion consumption by freight transport,AR-B,SESCO,annual,kg,9b515d53-3bef-333e-8786-64977bd939e1 -2017,Capital Federal,II.1.1,1.6391,TJ,CO2,69300.0,kg/TJ,113589.63,Motor Gasoline combustion consumption by freight transport,AR-C,SESCO,annual,kg,8c3c2798-6b67-3568-9c3b-71a070b0057b -2017,Capital Federal,II.1.1,1.6391,TJ,CH4,33.0,kg/TJ,54.0903,Motor Gasoline combustion consumption by freight transport,AR-C,SESCO,annual,kg,6a3e9756-1baa-38b9-bd93-04f3c8978b7a -2017,Capital Federal,II.1.1,1.6391,TJ,N2O,3.2,kg/TJ,5.24512,Motor Gasoline combustion consumption by freight transport,AR-C,SESCO,annual,kg,d02c20ed-f802-310f-a79b-4e311b3fa1ae -2017,Santa Fe,II.1.1,12.8027,TJ,CO2,69300.0,kg/TJ,887227.11,Motor Gasoline combustion consumption by freight transport,AR-S,SESCO,annual,kg,adbdd768-b6e3-383a-bc8b-be1b14fabf16 -2017,Santa Fe,II.1.1,12.8027,TJ,CH4,33.0,kg/TJ,422.4891,Motor Gasoline combustion consumption by freight transport,AR-S,SESCO,annual,kg,53c308df-cc2f-32aa-8cd7-f68292e1e9a4 -2017,Santa Fe,II.1.1,12.8027,TJ,N2O,3.2,kg/TJ,40.96864,Motor Gasoline combustion consumption by freight transport,AR-S,SESCO,annual,kg,a77b242b-ae8e-3cc0-a6e6-5807c61c9bd3 -2017,Buenos Aires,II.1.1,168.82487999999998,TJ,CO2,74100.0,kg/TJ,12509923.608,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,420baa8b-011a-3344-baac-de8feda54ef5 -2017,Buenos Aires,II.1.1,168.82487999999998,TJ,CH4,3.9,kg/TJ,658.417032,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,86fedb96-060e-3760-ab7d-4a63022a52c3 -2017,Buenos Aires,II.1.1,168.82487999999998,TJ,N2O,3.9,kg/TJ,658.417032,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,86fedb96-060e-3760-ab7d-4a63022a52c3 -2017,Capital Federal,II.1.1,67.94172,TJ,CO2,74100.0,kg/TJ,5034481.4520000005,Gas Oil combustion consumption by freight transport,AR-C,SESCO,annual,kg,6d6c10d9-8d03-30ff-9214-05b74de0c21c -2017,Capital Federal,II.1.1,67.94172,TJ,CH4,3.9,kg/TJ,264.972708,Gas Oil combustion consumption by freight transport,AR-C,SESCO,annual,kg,8e896688-7dca-381c-a2db-360c1910eff1 -2017,Capital Federal,II.1.1,67.94172,TJ,N2O,3.9,kg/TJ,264.972708,Gas Oil combustion consumption by freight transport,AR-C,SESCO,annual,kg,8e896688-7dca-381c-a2db-360c1910eff1 -2017,Córdoba,II.1.1,96.90996,TJ,CO2,74100.0,kg/TJ,7181028.036,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,71a2db4e-c450-30bb-949d-7203cd9c93a9 -2017,Córdoba,II.1.1,96.90996,TJ,CH4,3.9,kg/TJ,377.948844,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,fc7097b8-aa37-37d4-b22b-675fd4a8146c -2017,Córdoba,II.1.1,96.90996,TJ,N2O,3.9,kg/TJ,377.948844,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,fc7097b8-aa37-37d4-b22b-675fd4a8146c -2017,Buenos Aires,II.1.1,30.41304,TJ,CO2,74100.0,kg/TJ,2253606.264,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,8e9ceff3-2bde-324d-8c1d-bf5e0a01c999 -2017,Buenos Aires,II.1.1,30.41304,TJ,CH4,3.9,kg/TJ,118.610856,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,4c423c99-5bd2-3ce6-99bd-162b9dc99c32 -2017,Buenos Aires,II.1.1,30.41304,TJ,N2O,3.9,kg/TJ,118.610856,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,4c423c99-5bd2-3ce6-99bd-162b9dc99c32 -2017,Córdoba,II.1.1,0.7223999999999999,TJ,CO2,74100.0,kg/TJ,53529.84,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,813f792e-97f1-3c1a-856b-efca62719106 -2017,Córdoba,II.1.1,0.7223999999999999,TJ,CH4,3.9,kg/TJ,2.81736,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,8ac32acd-1993-35f9-892f-fa62535ad1b1 -2017,Córdoba,II.1.1,0.7223999999999999,TJ,N2O,3.9,kg/TJ,2.81736,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,8ac32acd-1993-35f9-892f-fa62535ad1b1 -2017,Buenos Aires,II.1.1,5864.40708,TJ,CO2,74100.0,kg/TJ,434552564.628,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,ad8e0f83-e8f1-3cc7-9e3d-191036ae94b5 -2017,Buenos Aires,II.1.1,5864.40708,TJ,CH4,3.9,kg/TJ,22871.187611999998,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,8eb0355e-0434-3e50-a56a-d660ca60e058 -2017,Buenos Aires,II.1.1,5864.40708,TJ,N2O,3.9,kg/TJ,22871.187611999998,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,8eb0355e-0434-3e50-a56a-d660ca60e058 -2017,Capital Federal,II.1.1,87.91608,TJ,CO2,74100.0,kg/TJ,6514581.528,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,5af62793-ed38-3e85-9ef5-5f715ab1836c -2017,Capital Federal,II.1.1,87.91608,TJ,CH4,3.9,kg/TJ,342.872712,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,76141d08-c403-343e-b54f-35a088ba900c -2017,Capital Federal,II.1.1,87.91608,TJ,N2O,3.9,kg/TJ,342.872712,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,76141d08-c403-343e-b54f-35a088ba900c -2017,Buenos Aires,II.1.1,406.5306,TJ,CO2,74100.0,kg/TJ,30123917.46,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,da869438-94b9-35cb-a81e-b1589947d4e1 -2017,Buenos Aires,II.1.1,406.5306,TJ,CH4,3.9,kg/TJ,1585.4693399999999,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,9b456bf5-559f-31a7-8d08-4e620a91aa89 -2017,Buenos Aires,II.1.1,406.5306,TJ,N2O,3.9,kg/TJ,1585.4693399999999,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,9b456bf5-559f-31a7-8d08-4e620a91aa89 -2017,Buenos Aires,II.5.1,7.575299999999999,TJ,CO2,69300.0,kg/TJ,524968.2899999999,Motor Gasoline combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,665af30c-b6ac-383d-9cf9-fdd82df38dcc -2017,Buenos Aires,II.5.1,7.575299999999999,TJ,CH4,33.0,kg/TJ,249.98489999999995,Motor Gasoline combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,1b41b3d7-fd9e-3d67-a341-ce50ffcca165 -2017,Buenos Aires,II.5.1,7.575299999999999,TJ,N2O,3.2,kg/TJ,24.240959999999998,Motor Gasoline combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,b449653c-5b65-32fd-a93b-43a62bcfbd9d -2017,Salta,II.5.1,1.1961,TJ,CO2,69300.0,kg/TJ,82889.73,Motor Gasoline combustion consumption by agriculture machines,AR-A,SESCO,annual,kg,1bd40197-396f-38c5-b398-0de059b91ed3 -2017,Salta,II.5.1,1.1961,TJ,CH4,33.0,kg/TJ,39.4713,Motor Gasoline combustion consumption by agriculture machines,AR-A,SESCO,annual,kg,70f8085c-3ede-3967-8d1c-b16862d7f20d -2017,Salta,II.5.1,1.1961,TJ,N2O,3.2,kg/TJ,3.82752,Motor Gasoline combustion consumption by agriculture machines,AR-A,SESCO,annual,kg,28a985fb-c4f0-3928-ae16-1626dce5a10c -2017,Santa Fe,II.5.1,20.5552,TJ,CO2,69300.0,kg/TJ,1424475.3599999999,Motor Gasoline combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,c7f09c04-3022-35df-b1ab-0399a0cf6d1b -2017,Santa Fe,II.5.1,20.5552,TJ,CH4,33.0,kg/TJ,678.3216,Motor Gasoline combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,1fe2bf66-062f-3178-a68d-5fa08e187ddb -2017,Santa Fe,II.5.1,20.5552,TJ,N2O,3.2,kg/TJ,65.77664,Motor Gasoline combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,d0dc5169-499e-3efb-84b2-e2d5eb1acca5 -2017,Buenos Aires,II.5.1,10168.43016,TJ,CO2,74100.0,kg/TJ,753480674.856,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,e6786a88-3f9a-3971-b8eb-64cfcbe56538 -2017,Buenos Aires,II.5.1,10168.43016,TJ,CH4,3.9,kg/TJ,39656.877624,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,02fdede3-1e98-39b2-82a7-d95d72cb4726 -2017,Buenos Aires,II.5.1,10168.43016,TJ,N2O,3.9,kg/TJ,39656.877624,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,02fdede3-1e98-39b2-82a7-d95d72cb4726 -2017,Capital Federal,II.5.1,40.59888,TJ,CO2,74100.0,kg/TJ,3008377.008,Gas Oil combustion consumption by agriculture machines,AR-C,SESCO,annual,kg,2e0b3a79-0908-3ab1-b8c3-6c33bcff6193 -2017,Capital Federal,II.5.1,40.59888,TJ,CH4,3.9,kg/TJ,158.335632,Gas Oil combustion consumption by agriculture machines,AR-C,SESCO,annual,kg,9371e611-cacb-3de3-a8a7-1bc7749ba129 -2017,Capital Federal,II.5.1,40.59888,TJ,N2O,3.9,kg/TJ,158.335632,Gas Oil combustion consumption by agriculture machines,AR-C,SESCO,annual,kg,9371e611-cacb-3de3-a8a7-1bc7749ba129 -2017,Catamarca,II.5.1,155.74944,TJ,CO2,74100.0,kg/TJ,11541033.503999999,Gas Oil combustion consumption by agriculture machines,AR-K,SESCO,annual,kg,fd07e0eb-3674-319a-830a-d2d6bbe744bb -2017,Catamarca,II.5.1,155.74944,TJ,CH4,3.9,kg/TJ,607.422816,Gas Oil combustion consumption by agriculture machines,AR-K,SESCO,annual,kg,1e35ecf7-759c-35c5-95c1-86fff66f23e3 -2017,Catamarca,II.5.1,155.74944,TJ,N2O,3.9,kg/TJ,607.422816,Gas Oil combustion consumption by agriculture machines,AR-K,SESCO,annual,kg,1e35ecf7-759c-35c5-95c1-86fff66f23e3 -2017,Chaco,II.5.1,1247.47644,TJ,CO2,74100.0,kg/TJ,92438004.204,Gas Oil combustion consumption by agriculture machines,AR-H,SESCO,annual,kg,d09f95d7-025a-3641-ade5-75d76adb064f -2017,Chaco,II.5.1,1247.47644,TJ,CH4,3.9,kg/TJ,4865.158116,Gas Oil combustion consumption by agriculture machines,AR-H,SESCO,annual,kg,575e7b07-33a1-3e02-997d-b0d0e13558d1 -2017,Chaco,II.5.1,1247.47644,TJ,N2O,3.9,kg/TJ,4865.158116,Gas Oil combustion consumption by agriculture machines,AR-H,SESCO,annual,kg,575e7b07-33a1-3e02-997d-b0d0e13558d1 -2017,Corrientes,II.5.1,304.4916,TJ,CO2,74100.0,kg/TJ,22562827.56,Gas Oil combustion consumption by agriculture machines,AR-W,SESCO,annual,kg,9ad35ad3-03ed-33c9-af44-cd7e096950c6 -2017,Corrientes,II.5.1,304.4916,TJ,CH4,3.9,kg/TJ,1187.51724,Gas Oil combustion consumption by agriculture machines,AR-W,SESCO,annual,kg,58e36d6e-ab63-3a64-838a-52ec295917ed -2017,Corrientes,II.5.1,304.4916,TJ,N2O,3.9,kg/TJ,1187.51724,Gas Oil combustion consumption by agriculture machines,AR-W,SESCO,annual,kg,58e36d6e-ab63-3a64-838a-52ec295917ed -2017,Córdoba,II.5.1,8039.409,TJ,CO2,74100.0,kg/TJ,595720206.9,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,c3ef865b-b8f9-385a-850b-c165a6eec508 -2017,Córdoba,II.5.1,8039.409,TJ,CH4,3.9,kg/TJ,31353.695099999997,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,025d2ed8-6ab8-3981-b056-ad2ef9145624 -2017,Córdoba,II.5.1,8039.409,TJ,N2O,3.9,kg/TJ,31353.695099999997,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,025d2ed8-6ab8-3981-b056-ad2ef9145624 -2017,Entre Rios,II.5.1,2093.62356,TJ,CO2,74100.0,kg/TJ,155137505.796,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,fb7bf971-2d8c-3ee8-95fc-5948ef1006e2 -2017,Entre Rios,II.5.1,2093.62356,TJ,CH4,3.9,kg/TJ,8165.131883999999,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,06be89ad-32b0-35bc-90be-6bb0ef617cdb -2017,Entre Rios,II.5.1,2093.62356,TJ,N2O,3.9,kg/TJ,8165.131883999999,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,06be89ad-32b0-35bc-90be-6bb0ef617cdb -2017,Formosa,II.5.1,194.25336,TJ,CO2,74100.0,kg/TJ,14394173.976,Gas Oil combustion consumption by agriculture machines,AR-P,SESCO,annual,kg,e743d08e-68c3-35d2-8427-3d0f0b1fe500 -2017,Formosa,II.5.1,194.25336,TJ,CH4,3.9,kg/TJ,757.5881039999999,Gas Oil combustion consumption by agriculture machines,AR-P,SESCO,annual,kg,236844a4-b460-3120-a938-af5ddbedae65 -2017,Formosa,II.5.1,194.25336,TJ,N2O,3.9,kg/TJ,757.5881039999999,Gas Oil combustion consumption by agriculture machines,AR-P,SESCO,annual,kg,236844a4-b460-3120-a938-af5ddbedae65 -2017,Jujuy,II.5.1,1070.74128,TJ,CO2,74100.0,kg/TJ,79341928.84799999,Gas Oil combustion consumption by agriculture machines,AR-Y,SESCO,annual,kg,069c5117-1511-39da-99a8-a59905221c84 -2017,Jujuy,II.5.1,1070.74128,TJ,CH4,3.9,kg/TJ,4175.890992,Gas Oil combustion consumption by agriculture machines,AR-Y,SESCO,annual,kg,fd305b28-9400-3008-816c-b2ba55dc9988 -2017,Jujuy,II.5.1,1070.74128,TJ,N2O,3.9,kg/TJ,4175.890992,Gas Oil combustion consumption by agriculture machines,AR-Y,SESCO,annual,kg,fd305b28-9400-3008-816c-b2ba55dc9988 -2017,La Pampa,II.5.1,1778.5488,TJ,CO2,74100.0,kg/TJ,131790466.08,Gas Oil combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,13ce51e7-734a-3ebf-876c-38072c770420 -2017,La Pampa,II.5.1,1778.5488,TJ,CH4,3.9,kg/TJ,6936.34032,Gas Oil combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,e9607575-c2a5-3ea5-81b4-059fbc06378e -2017,La Pampa,II.5.1,1778.5488,TJ,N2O,3.9,kg/TJ,6936.34032,Gas Oil combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,e9607575-c2a5-3ea5-81b4-059fbc06378e -2017,La Rioja,II.5.1,162.86508,TJ,CO2,74100.0,kg/TJ,12068302.428000001,Gas Oil combustion consumption by agriculture machines,AR-F,SESCO,annual,kg,851a6a46-907c-334c-acb9-009443cba9e4 -2017,La Rioja,II.5.1,162.86508,TJ,CH4,3.9,kg/TJ,635.173812,Gas Oil combustion consumption by agriculture machines,AR-F,SESCO,annual,kg,23cf81c6-e995-32a2-ab3d-3b712813537d -2017,La Rioja,II.5.1,162.86508,TJ,N2O,3.9,kg/TJ,635.173812,Gas Oil combustion consumption by agriculture machines,AR-F,SESCO,annual,kg,23cf81c6-e995-32a2-ab3d-3b712813537d -2017,Mendoza,II.5.1,2729.0465999999997,TJ,CO2,74100.0,kg/TJ,202222353.05999997,Gas Oil combustion consumption by agriculture machines,AR-M,SESCO,annual,kg,5a89404a-8b6a-3ccd-9382-0072936d4c7c -2017,Mendoza,II.5.1,2729.0465999999997,TJ,CH4,3.9,kg/TJ,10643.281739999999,Gas Oil combustion consumption by agriculture machines,AR-M,SESCO,annual,kg,845cae80-1640-3d37-abf5-51443e400260 -2017,Mendoza,II.5.1,2729.0465999999997,TJ,N2O,3.9,kg/TJ,10643.281739999999,Gas Oil combustion consumption by agriculture machines,AR-M,SESCO,annual,kg,845cae80-1640-3d37-abf5-51443e400260 -2017,Misiones,II.5.1,1087.4287199999999,TJ,CO2,74100.0,kg/TJ,80578468.152,Gas Oil combustion consumption by agriculture machines,AR-N,SESCO,annual,kg,781476bd-c045-3ee9-8964-cdc46eb25486 -2017,Misiones,II.5.1,1087.4287199999999,TJ,CH4,3.9,kg/TJ,4240.972008,Gas Oil combustion consumption by agriculture machines,AR-N,SESCO,annual,kg,9fb00b79-886a-323e-9792-262e388dfbaf -2017,Misiones,II.5.1,1087.4287199999999,TJ,N2O,3.9,kg/TJ,4240.972008,Gas Oil combustion consumption by agriculture machines,AR-N,SESCO,annual,kg,9fb00b79-886a-323e-9792-262e388dfbaf -2017,Rio Negro,II.5.1,238.86156,TJ,CO2,74100.0,kg/TJ,17699641.596,Gas Oil combustion consumption by agriculture machines,AR-R,SESCO,annual,kg,cdbc4816-d18f-3b19-98a9-243b274c7366 -2017,Rio Negro,II.5.1,238.86156,TJ,CH4,3.9,kg/TJ,931.560084,Gas Oil combustion consumption by agriculture machines,AR-R,SESCO,annual,kg,1a245766-1afe-3126-a6a9-a666273dad12 -2017,Rio Negro,II.5.1,238.86156,TJ,N2O,3.9,kg/TJ,931.560084,Gas Oil combustion consumption by agriculture machines,AR-R,SESCO,annual,kg,1a245766-1afe-3126-a6a9-a666273dad12 -2017,Salta,II.5.1,1923.67896,TJ,CO2,74100.0,kg/TJ,142544610.936,Gas Oil combustion consumption by agriculture machines,AR-A,SESCO,annual,kg,c21d59c0-9383-3ad2-a429-d9d8f1644af6 -2017,Salta,II.5.1,1923.67896,TJ,CH4,3.9,kg/TJ,7502.347944,Gas Oil combustion consumption by agriculture machines,AR-A,SESCO,annual,kg,151aa1a9-59d8-32eb-af93-5a19d51eb9fe -2017,Salta,II.5.1,1923.67896,TJ,N2O,3.9,kg/TJ,7502.347944,Gas Oil combustion consumption by agriculture machines,AR-A,SESCO,annual,kg,151aa1a9-59d8-32eb-af93-5a19d51eb9fe -2017,San Juan,II.5.1,704.3038799999999,TJ,CO2,74100.0,kg/TJ,52188917.507999994,Gas Oil combustion consumption by agriculture machines,AR-J,SESCO,annual,kg,beb5e747-9926-3824-91fd-7e174c128882 -2017,San Juan,II.5.1,704.3038799999999,TJ,CH4,3.9,kg/TJ,2746.7851319999995,Gas Oil combustion consumption by agriculture machines,AR-J,SESCO,annual,kg,9c2eba95-f389-353b-8d72-40ce79a2c72a -2017,San Juan,II.5.1,704.3038799999999,TJ,N2O,3.9,kg/TJ,2746.7851319999995,Gas Oil combustion consumption by agriculture machines,AR-J,SESCO,annual,kg,9c2eba95-f389-353b-8d72-40ce79a2c72a -2017,San Luis,II.5.1,572.0685599999999,TJ,CO2,74100.0,kg/TJ,42390280.296,Gas Oil combustion consumption by agriculture machines,AR-D,SESCO,annual,kg,07f84202-a60b-39e4-93cd-583ef543ac8b -2017,San Luis,II.5.1,572.0685599999999,TJ,CH4,3.9,kg/TJ,2231.0673839999995,Gas Oil combustion consumption by agriculture machines,AR-D,SESCO,annual,kg,bc42490a-74b0-3275-ab1b-9ae9a17336ec -2017,San Luis,II.5.1,572.0685599999999,TJ,N2O,3.9,kg/TJ,2231.0673839999995,Gas Oil combustion consumption by agriculture machines,AR-D,SESCO,annual,kg,bc42490a-74b0-3275-ab1b-9ae9a17336ec -2017,Santa Fe,II.5.1,7288.32972,TJ,CO2,74100.0,kg/TJ,540065232.252,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,1c01650f-3ea2-34c1-bbe6-22670dac256b -2017,Santa Fe,II.5.1,7288.32972,TJ,CH4,3.9,kg/TJ,28424.485908,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,86840368-48c0-3b9b-842f-0cdaa4fea50a -2017,Santa Fe,II.5.1,7288.32972,TJ,N2O,3.9,kg/TJ,28424.485908,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,86840368-48c0-3b9b-842f-0cdaa4fea50a -2017,Santiago del Estero,II.5.1,1750.1945999999998,TJ,CO2,74100.0,kg/TJ,129689419.85999998,Gas Oil combustion consumption by agriculture machines,AR-G,SESCO,annual,kg,a2dac819-563f-3d96-9b3d-2a07b4f825ad -2017,Santiago del Estero,II.5.1,1750.1945999999998,TJ,CH4,3.9,kg/TJ,6825.758939999999,Gas Oil combustion consumption by agriculture machines,AR-G,SESCO,annual,kg,14c7e77e-d0c5-3a5f-b3d4-3ba2e103921f -2017,Santiago del Estero,II.5.1,1750.1945999999998,TJ,N2O,3.9,kg/TJ,6825.758939999999,Gas Oil combustion consumption by agriculture machines,AR-G,SESCO,annual,kg,14c7e77e-d0c5-3a5f-b3d4-3ba2e103921f -2017,Tucuman,II.5.1,1223.7456,TJ,CO2,74100.0,kg/TJ,90679548.96,Gas Oil combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,832e8723-f528-3846-9d78-b691ce06d080 -2017,Tucuman,II.5.1,1223.7456,TJ,CH4,3.9,kg/TJ,4772.60784,Gas Oil combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,a679e092-bf15-3aae-acfa-fa8255ee83be -2017,Tucuman,II.5.1,1223.7456,TJ,N2O,3.9,kg/TJ,4772.60784,Gas Oil combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,a679e092-bf15-3aae-acfa-fa8255ee83be -2017,Buenos Aires,II.5.1,557.94564,TJ,CO2,74100.0,kg/TJ,41343771.924,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,0e3871fe-eb73-320b-a75b-a0fd101a69d5 -2017,Buenos Aires,II.5.1,557.94564,TJ,CH4,3.9,kg/TJ,2175.987996,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,37b9b4c8-214d-3137-ad61-0f54b944bcda -2017,Buenos Aires,II.5.1,557.94564,TJ,N2O,3.9,kg/TJ,2175.987996,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,37b9b4c8-214d-3137-ad61-0f54b944bcda -2017,Capital Federal,II.5.1,2.60064,TJ,CO2,74100.0,kg/TJ,192707.424,Gas Oil combustion consumption by agriculture machines,AR-C,SESCO,annual,kg,003831e7-8530-343e-a9f7-c5cf8f22aec1 -2017,Capital Federal,II.5.1,2.60064,TJ,CH4,3.9,kg/TJ,10.142496,Gas Oil combustion consumption by agriculture machines,AR-C,SESCO,annual,kg,7590ccc9-113e-3d75-a4fd-67608737eec0 -2017,Capital Federal,II.5.1,2.60064,TJ,N2O,3.9,kg/TJ,10.142496,Gas Oil combustion consumption by agriculture machines,AR-C,SESCO,annual,kg,7590ccc9-113e-3d75-a4fd-67608737eec0 -2017,Catamarca,II.5.1,9.824639999999999,TJ,CO2,74100.0,kg/TJ,728005.8239999999,Gas Oil combustion consumption by agriculture machines,AR-K,SESCO,annual,kg,b33ef88b-c8c0-30e0-aadf-20a1984bf030 -2017,Catamarca,II.5.1,9.824639999999999,TJ,CH4,3.9,kg/TJ,38.316095999999995,Gas Oil combustion consumption by agriculture machines,AR-K,SESCO,annual,kg,ea09b6e9-47a9-3524-bb23-ad921b86b67b -2017,Catamarca,II.5.1,9.824639999999999,TJ,N2O,3.9,kg/TJ,38.316095999999995,Gas Oil combustion consumption by agriculture machines,AR-K,SESCO,annual,kg,ea09b6e9-47a9-3524-bb23-ad921b86b67b -2017,Chaco,II.5.1,103.51992,TJ,CO2,74100.0,kg/TJ,7670826.072,Gas Oil combustion consumption by agriculture machines,AR-H,SESCO,annual,kg,9e6933f4-c492-35a3-bca3-d5dbf8428a4d -2017,Chaco,II.5.1,103.51992,TJ,CH4,3.9,kg/TJ,403.727688,Gas Oil combustion consumption by agriculture machines,AR-H,SESCO,annual,kg,aadf2da5-ec4a-35e7-83b7-5033910c452f -2017,Chaco,II.5.1,103.51992,TJ,N2O,3.9,kg/TJ,403.727688,Gas Oil combustion consumption by agriculture machines,AR-H,SESCO,annual,kg,aadf2da5-ec4a-35e7-83b7-5033910c452f -2017,Corrientes,II.5.1,7.910279999999999,TJ,CO2,74100.0,kg/TJ,586151.7479999999,Gas Oil combustion consumption by agriculture machines,AR-W,SESCO,annual,kg,5fc071d5-9ef4-36fb-8a91-711f23f11c4a -2017,Corrientes,II.5.1,7.910279999999999,TJ,CH4,3.9,kg/TJ,30.850091999999997,Gas Oil combustion consumption by agriculture machines,AR-W,SESCO,annual,kg,4d72b708-434f-3e47-b5d6-9cc25ff5ac99 -2017,Corrientes,II.5.1,7.910279999999999,TJ,N2O,3.9,kg/TJ,30.850091999999997,Gas Oil combustion consumption by agriculture machines,AR-W,SESCO,annual,kg,4d72b708-434f-3e47-b5d6-9cc25ff5ac99 -2017,Córdoba,II.5.1,274.11467999999996,TJ,CO2,74100.0,kg/TJ,20311897.788,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,c1d50240-ad24-3fbd-b243-f22598e5ebac -2017,Córdoba,II.5.1,274.11467999999996,TJ,CH4,3.9,kg/TJ,1069.0472519999998,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,21d8a457-cfba-3a40-8194-9913561b4278 -2017,Córdoba,II.5.1,274.11467999999996,TJ,N2O,3.9,kg/TJ,1069.0472519999998,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,21d8a457-cfba-3a40-8194-9913561b4278 -2017,Entre Rios,II.5.1,42.22428,TJ,CO2,74100.0,kg/TJ,3128819.148,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,d3195bec-95e7-3c9f-a4cf-4d13b7ea77da -2017,Entre Rios,II.5.1,42.22428,TJ,CH4,3.9,kg/TJ,164.674692,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,6ee8beb2-8632-36b0-9509-662ee45dd268 -2017,Entre Rios,II.5.1,42.22428,TJ,N2O,3.9,kg/TJ,164.674692,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,6ee8beb2-8632-36b0-9509-662ee45dd268 -2017,Formosa,II.5.1,9.53568,TJ,CO2,74100.0,kg/TJ,706593.8879999999,Gas Oil combustion consumption by agriculture machines,AR-P,SESCO,annual,kg,423ecbd0-30b3-33b7-a68a-73c07c03e13d -2017,Formosa,II.5.1,9.53568,TJ,CH4,3.9,kg/TJ,37.18915199999999,Gas Oil combustion consumption by agriculture machines,AR-P,SESCO,annual,kg,afb05873-b107-3b4f-9f95-236fab284542 -2017,Formosa,II.5.1,9.53568,TJ,N2O,3.9,kg/TJ,37.18915199999999,Gas Oil combustion consumption by agriculture machines,AR-P,SESCO,annual,kg,afb05873-b107-3b4f-9f95-236fab284542 -2017,Jujuy,II.5.1,24.0198,TJ,CO2,74100.0,kg/TJ,1779867.18,Gas Oil combustion consumption by agriculture machines,AR-Y,SESCO,annual,kg,ba8f5917-49ec-3b89-a5ae-ce305025405c -2017,Jujuy,II.5.1,24.0198,TJ,CH4,3.9,kg/TJ,93.67721999999999,Gas Oil combustion consumption by agriculture machines,AR-Y,SESCO,annual,kg,63ad919a-7f66-3b18-af81-9bd8a6def492 -2017,Jujuy,II.5.1,24.0198,TJ,N2O,3.9,kg/TJ,93.67721999999999,Gas Oil combustion consumption by agriculture machines,AR-Y,SESCO,annual,kg,63ad919a-7f66-3b18-af81-9bd8a6def492 -2017,La Pampa,II.5.1,142.38504,TJ,CO2,74100.0,kg/TJ,10550731.464,Gas Oil combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,4b24e9a4-d2ac-3537-afce-9e2ad8ccf2a1 -2017,La Pampa,II.5.1,142.38504,TJ,CH4,3.9,kg/TJ,555.301656,Gas Oil combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,6b8a9644-5504-3a32-a331-9199de271502 -2017,La Pampa,II.5.1,142.38504,TJ,N2O,3.9,kg/TJ,555.301656,Gas Oil combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,6b8a9644-5504-3a32-a331-9199de271502 -2017,Mendoza,II.5.1,156.36347999999998,TJ,CO2,74100.0,kg/TJ,11586533.867999999,Gas Oil combustion consumption by agriculture machines,AR-M,SESCO,annual,kg,c11855f2-2a90-39c8-824a-8c016626640f -2017,Mendoza,II.5.1,156.36347999999998,TJ,CH4,3.9,kg/TJ,609.8175719999999,Gas Oil combustion consumption by agriculture machines,AR-M,SESCO,annual,kg,f5a4a71b-9fd2-33d1-a8c1-b3c28dc90ed1 -2017,Mendoza,II.5.1,156.36347999999998,TJ,N2O,3.9,kg/TJ,609.8175719999999,Gas Oil combustion consumption by agriculture machines,AR-M,SESCO,annual,kg,f5a4a71b-9fd2-33d1-a8c1-b3c28dc90ed1 -2017,Misiones,II.5.1,110.56331999999999,TJ,CO2,74100.0,kg/TJ,8192742.011999999,Gas Oil combustion consumption by agriculture machines,AR-N,SESCO,annual,kg,ac7366d6-9980-3f00-af1d-805ef254e96d -2017,Misiones,II.5.1,110.56331999999999,TJ,CH4,3.9,kg/TJ,431.19694799999996,Gas Oil combustion consumption by agriculture machines,AR-N,SESCO,annual,kg,53b9d672-a0eb-39ed-8e68-96bb1bfe42e2 -2017,Misiones,II.5.1,110.56331999999999,TJ,N2O,3.9,kg/TJ,431.19694799999996,Gas Oil combustion consumption by agriculture machines,AR-N,SESCO,annual,kg,53b9d672-a0eb-39ed-8e68-96bb1bfe42e2 -2017,Rio Negro,II.5.1,37.31196,TJ,CO2,74100.0,kg/TJ,2764816.236,Gas Oil combustion consumption by agriculture machines,AR-R,SESCO,annual,kg,443979ef-ead2-3e56-9516-2573b764b77e -2017,Rio Negro,II.5.1,37.31196,TJ,CH4,3.9,kg/TJ,145.51664399999999,Gas Oil combustion consumption by agriculture machines,AR-R,SESCO,annual,kg,7722df82-7ebe-3142-a735-68c69d495590 -2017,Rio Negro,II.5.1,37.31196,TJ,N2O,3.9,kg/TJ,145.51664399999999,Gas Oil combustion consumption by agriculture machines,AR-R,SESCO,annual,kg,7722df82-7ebe-3142-a735-68c69d495590 -2017,Salta,II.5.1,107.13192,TJ,CO2,74100.0,kg/TJ,7938475.272,Gas Oil combustion consumption by agriculture machines,AR-A,SESCO,annual,kg,72857803-99b1-3308-acff-dd588c6924cb -2017,Salta,II.5.1,107.13192,TJ,CH4,3.9,kg/TJ,417.814488,Gas Oil combustion consumption by agriculture machines,AR-A,SESCO,annual,kg,3e27b934-8bc4-3ea5-ab0c-19917e487c7e -2017,Salta,II.5.1,107.13192,TJ,N2O,3.9,kg/TJ,417.814488,Gas Oil combustion consumption by agriculture machines,AR-A,SESCO,annual,kg,3e27b934-8bc4-3ea5-ab0c-19917e487c7e -2017,San Juan,II.5.1,93.47856,TJ,CO2,74100.0,kg/TJ,6926761.296,Gas Oil combustion consumption by agriculture machines,AR-J,SESCO,annual,kg,87b7cecc-1181-3261-9796-cb62596ff5f8 -2017,San Juan,II.5.1,93.47856,TJ,CH4,3.9,kg/TJ,364.56638399999997,Gas Oil combustion consumption by agriculture machines,AR-J,SESCO,annual,kg,d7fa041f-074f-3c3f-8071-c7b89e0331e0 -2017,San Juan,II.5.1,93.47856,TJ,N2O,3.9,kg/TJ,364.56638399999997,Gas Oil combustion consumption by agriculture machines,AR-J,SESCO,annual,kg,d7fa041f-074f-3c3f-8071-c7b89e0331e0 -2017,San Luis,II.5.1,40.815599999999996,TJ,CO2,74100.0,kg/TJ,3024435.9599999995,Gas Oil combustion consumption by agriculture machines,AR-D,SESCO,annual,kg,0e2a0305-84cc-320f-97c5-386738721e08 -2017,San Luis,II.5.1,40.815599999999996,TJ,CH4,3.9,kg/TJ,159.18084,Gas Oil combustion consumption by agriculture machines,AR-D,SESCO,annual,kg,a1dd10c3-0f78-3ada-912e-2fcc194e583a -2017,San Luis,II.5.1,40.815599999999996,TJ,N2O,3.9,kg/TJ,159.18084,Gas Oil combustion consumption by agriculture machines,AR-D,SESCO,annual,kg,a1dd10c3-0f78-3ada-912e-2fcc194e583a -2017,Santa Fe,II.5.1,271.87523999999996,TJ,CO2,74100.0,kg/TJ,20145955.283999998,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,a8ad09ae-8923-34ff-923f-df02408702c4 -2017,Santa Fe,II.5.1,271.87523999999996,TJ,CH4,3.9,kg/TJ,1060.313436,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,202dffda-1a28-3d30-97f9-957b3db8ec91 -2017,Santa Fe,II.5.1,271.87523999999996,TJ,N2O,3.9,kg/TJ,1060.313436,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,202dffda-1a28-3d30-97f9-957b3db8ec91 -2017,Santiago del Estero,II.5.1,213.21635999999998,TJ,CO2,74100.0,kg/TJ,15799332.275999999,Gas Oil combustion consumption by agriculture machines,AR-G,SESCO,annual,kg,a9403e6b-29fa-3624-b32b-70d73b2171ff -2017,Santiago del Estero,II.5.1,213.21635999999998,TJ,CH4,3.9,kg/TJ,831.5438039999999,Gas Oil combustion consumption by agriculture machines,AR-G,SESCO,annual,kg,a8554eaf-bdda-389e-87cd-46362d2f8861 -2017,Santiago del Estero,II.5.1,213.21635999999998,TJ,N2O,3.9,kg/TJ,831.5438039999999,Gas Oil combustion consumption by agriculture machines,AR-G,SESCO,annual,kg,a8554eaf-bdda-389e-87cd-46362d2f8861 -2017,Tucuman,II.5.1,139.71215999999998,TJ,CO2,74100.0,kg/TJ,10352671.055999998,Gas Oil combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,2fa57239-e5a6-36e6-b5fd-4c6230435f0b -2017,Tucuman,II.5.1,139.71215999999998,TJ,CH4,3.9,kg/TJ,544.8774239999999,Gas Oil combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,c9a73460-5689-3714-83ad-79c67e17dd7c -2017,Tucuman,II.5.1,139.71215999999998,TJ,N2O,3.9,kg/TJ,544.8774239999999,Gas Oil combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,c9a73460-5689-3714-83ad-79c67e17dd7c -2017,Buenos Aires,II.5.1,7.108378,TJ,CO2,71500.0,kg/TJ,508249.027,Jet Kerosene combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,a055257c-20fd-344e-9816-80be9ed64ccc -2017,Buenos Aires,II.5.1,7.108378,TJ,CH4,0.5,kg/TJ,3.554189,Jet Kerosene combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,5b5fdae0-085a-3a05-9daa-bbb6b65dd308 -2017,Buenos Aires,II.5.1,7.108378,TJ,N2O,2.0,kg/TJ,14.216756,Jet Kerosene combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,6a13df16-7220-346c-8112-d1d5fbefadfe -2017,Córdoba,II.5.1,0.31453,TJ,CO2,71500.0,kg/TJ,22488.894999999997,Jet Kerosene combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,f15cf9af-afeb-31b9-a32e-757a60ba7346 -2017,Córdoba,II.5.1,0.31453,TJ,CH4,0.5,kg/TJ,0.157265,Jet Kerosene combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,cf48b8c3-2f61-3dd0-b123-b5d477ee9603 -2017,Córdoba,II.5.1,0.31453,TJ,N2O,2.0,kg/TJ,0.62906,Jet Kerosene combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,ba1ec442-4a67-3a2f-9a40-c16e4a8f5665 -2017,La Pampa,II.5.1,0.31453,TJ,CO2,71500.0,kg/TJ,22488.894999999997,Jet Kerosene combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,731686e1-2f7c-34e6-b141-5be8582cd2ae -2017,La Pampa,II.5.1,0.31453,TJ,CH4,0.5,kg/TJ,0.157265,Jet Kerosene combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,4d017e54-c7f3-30ac-b76b-f4146c487ab4 -2017,La Pampa,II.5.1,0.31453,TJ,N2O,2.0,kg/TJ,0.62906,Jet Kerosene combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,9d293ba2-ebba-3922-9dc9-35878266eeb5 -2017,Santa Fe,II.5.1,3.554189,TJ,CO2,71500.0,kg/TJ,254124.5135,Jet Kerosene combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,c9481ba8-3f72-3c56-ba9e-16ba84a48a6d -2017,Santa Fe,II.5.1,3.554189,TJ,CH4,0.5,kg/TJ,1.7770945,Jet Kerosene combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,628213f4-a137-3dca-8083-a39cf0644c92 -2017,Santa Fe,II.5.1,3.554189,TJ,N2O,2.0,kg/TJ,7.108378,Jet Kerosene combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,880466c2-540c-397d-9fe6-c06537f02de5 -2017,Buenos Aires,II.5.1,792.1040049999999,TJ,CO2,73300.0,kg/TJ,58061223.56649999,Naphtha combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,d07f491f-bc75-3bf7-b962-f24bf86840a4 -2017,Buenos Aires,II.5.1,792.1040049999999,TJ,CH4,0.5,kg/TJ,396.05200249999996,Naphtha combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,c189b792-02c9-322d-ba81-c6c5f3a04a90 -2017,Buenos Aires,II.5.1,792.1040049999999,TJ,N2O,2.0,kg/TJ,1584.2080099999998,Naphtha combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,2f7d7235-615c-3484-82fc-088aed76c8c7 -2017,Chubut,II.5.1,1.71325,TJ,CO2,73300.0,kg/TJ,125581.22499999999,Naphtha combustion consumption by agriculture machines,AR-U,SESCO,annual,kg,70f60577-b400-3b07-b40d-a9491279f99c -2017,Chubut,II.5.1,1.71325,TJ,CH4,0.5,kg/TJ,0.856625,Naphtha combustion consumption by agriculture machines,AR-U,SESCO,annual,kg,0764a4b6-6197-3c4b-94c3-8f1cac885489 -2017,Chubut,II.5.1,1.71325,TJ,N2O,2.0,kg/TJ,3.4265,Naphtha combustion consumption by agriculture machines,AR-U,SESCO,annual,kg,2290637d-ac85-340a-8aca-ff78643d4347 -2017,Jujuy,II.5.1,0.34265,TJ,CO2,73300.0,kg/TJ,25116.245,Naphtha combustion consumption by agriculture machines,AR-Y,SESCO,annual,kg,572fead5-f493-3e96-9849-4d32b9afadb1 -2017,Jujuy,II.5.1,0.34265,TJ,CH4,0.5,kg/TJ,0.171325,Naphtha combustion consumption by agriculture machines,AR-Y,SESCO,annual,kg,a39c0b5c-349d-39af-9edc-166358ae8703 -2017,Jujuy,II.5.1,0.34265,TJ,N2O,2.0,kg/TJ,0.6853,Naphtha combustion consumption by agriculture machines,AR-Y,SESCO,annual,kg,45175821-38f9-3a0c-8c4c-9d18220f3b3e -2017,Mendoza,II.5.1,24.39668,TJ,CO2,73300.0,kg/TJ,1788276.644,Naphtha combustion consumption by agriculture machines,AR-M,SESCO,annual,kg,00c73206-b214-35ee-94f6-f0ac0dcce2d1 -2017,Mendoza,II.5.1,24.39668,TJ,CH4,0.5,kg/TJ,12.19834,Naphtha combustion consumption by agriculture machines,AR-M,SESCO,annual,kg,5ffe847e-40d6-381c-ac01-948366feeef8 -2017,Mendoza,II.5.1,24.39668,TJ,N2O,2.0,kg/TJ,48.79336,Naphtha combustion consumption by agriculture machines,AR-M,SESCO,annual,kg,4ffa892d-b89e-3ebd-b03e-9b637af85410 -2017,Salta,II.5.1,0.47970999999999997,TJ,CO2,73300.0,kg/TJ,35162.742999999995,Naphtha combustion consumption by agriculture machines,AR-A,SESCO,annual,kg,86cff40b-6afb-3ae1-bfe2-ca24fd8c4161 -2017,Salta,II.5.1,0.47970999999999997,TJ,CH4,0.5,kg/TJ,0.23985499999999998,Naphtha combustion consumption by agriculture machines,AR-A,SESCO,annual,kg,10313f7e-9cf1-3217-80e0-0942d496ad1d -2017,Salta,II.5.1,0.47970999999999997,TJ,N2O,2.0,kg/TJ,0.9594199999999999,Naphtha combustion consumption by agriculture machines,AR-A,SESCO,annual,kg,58930a6d-d2a7-3922-81b7-3f3f8e6b4f37 -2017,Santa Fe,II.5.1,111.08713,TJ,CO2,73300.0,kg/TJ,8142686.629,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,3abec518-354f-3ab5-a587-167fdfc2cee3 -2017,Santa Fe,II.5.1,111.08713,TJ,CH4,0.5,kg/TJ,55.543565,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,9cf35c9c-1504-327b-87a1-24e29740436d -2017,Santa Fe,II.5.1,111.08713,TJ,N2O,2.0,kg/TJ,222.17426,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,8ddcc682-28e4-35f9-ac09-7f2f475305ec -2017,Buenos Aires,II.5.1,4.31739,TJ,CO2,73300.0,kg/TJ,316464.687,Naphtha combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,5120fddc-eb97-36db-aa0e-ba24f11452b5 -2017,Buenos Aires,II.5.1,4.31739,TJ,CH4,0.5,kg/TJ,2.158695,Naphtha combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,fd9e37c0-9d31-3530-89a6-804f053f426c -2017,Buenos Aires,II.5.1,4.31739,TJ,N2O,2.0,kg/TJ,8.63478,Naphtha combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,a5ed8ac6-66b5-3390-97be-34de13223029 -2017,Santa Fe,II.5.1,0.5825049999999999,TJ,CO2,73300.0,kg/TJ,42697.6165,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,f5882ed0-b8d9-3125-bde5-3a75ffd9ab18 -2017,Santa Fe,II.5.1,0.5825049999999999,TJ,CH4,0.5,kg/TJ,0.29125249999999997,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,6194f0c4-b186-3d48-aa68-165c5cb1704a -2017,Santa Fe,II.5.1,0.5825049999999999,TJ,N2O,2.0,kg/TJ,1.1650099999999999,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,b73a9ecf-382a-3d05-ba6d-f92ec74afb3f -2017,Buenos Aires,II.1.1,9561.07236,TJ,CO2,74100.0,kg/TJ,708475461.876,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,ebecf47b-8a12-36c2-90d8-d986740d0709 -2017,Buenos Aires,II.1.1,9561.07236,TJ,CH4,3.9,kg/TJ,37288.182204,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,4a351df3-c374-3592-af36-2bf80afb74a5 -2017,Buenos Aires,II.1.1,9561.07236,TJ,N2O,3.9,kg/TJ,37288.182204,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,4a351df3-c374-3592-af36-2bf80afb74a5 -2017,Capital Federal,II.1.1,4040.9972399999997,TJ,CO2,74100.0,kg/TJ,299437895.48399997,Gas Oil combustion consumption by freight transport,AR-C,SESCO,annual,kg,32edce38-23e1-36c4-beb1-dd21cf8291af -2017,Capital Federal,II.1.1,4040.9972399999997,TJ,CH4,3.9,kg/TJ,15759.889235999999,Gas Oil combustion consumption by freight transport,AR-C,SESCO,annual,kg,0fc95bcc-47d8-3128-bb24-5c1c4493fca0 -2017,Capital Federal,II.1.1,4040.9972399999997,TJ,N2O,3.9,kg/TJ,15759.889235999999,Gas Oil combustion consumption by freight transport,AR-C,SESCO,annual,kg,0fc95bcc-47d8-3128-bb24-5c1c4493fca0 -2017,Catamarca,II.1.1,23.36964,TJ,CO2,74100.0,kg/TJ,1731690.324,Gas Oil combustion consumption by freight transport,AR-K,SESCO,annual,kg,788b4863-e686-384f-928b-5231d1afdd93 -2017,Catamarca,II.1.1,23.36964,TJ,CH4,3.9,kg/TJ,91.14159599999999,Gas Oil combustion consumption by freight transport,AR-K,SESCO,annual,kg,1bc652e5-f06f-3efc-8a14-11d9c2a15793 -2017,Catamarca,II.1.1,23.36964,TJ,N2O,3.9,kg/TJ,91.14159599999999,Gas Oil combustion consumption by freight transport,AR-K,SESCO,annual,kg,1bc652e5-f06f-3efc-8a14-11d9c2a15793 -2017,Chaco,II.1.1,262.73688,TJ,CO2,74100.0,kg/TJ,19468802.808,Gas Oil combustion consumption by freight transport,AR-H,SESCO,annual,kg,486554a0-7c84-31ed-b558-a89ca1bc3a1a -2017,Chaco,II.1.1,262.73688,TJ,CH4,3.9,kg/TJ,1024.673832,Gas Oil combustion consumption by freight transport,AR-H,SESCO,annual,kg,38a7160b-63f4-36a8-b095-b7b99bd0c148 -2017,Chaco,II.1.1,262.73688,TJ,N2O,3.9,kg/TJ,1024.673832,Gas Oil combustion consumption by freight transport,AR-H,SESCO,annual,kg,38a7160b-63f4-36a8-b095-b7b99bd0c148 -2017,Chubut,II.1.1,221.99352,TJ,CO2,74100.0,kg/TJ,16449719.831999999,Gas Oil combustion consumption by freight transport,AR-U,SESCO,annual,kg,7826f9ed-1b0a-3ad4-826c-f676ef69fc76 -2017,Chubut,II.1.1,221.99352,TJ,CH4,3.9,kg/TJ,865.774728,Gas Oil combustion consumption by freight transport,AR-U,SESCO,annual,kg,31ad7a5c-6e87-315a-b849-afa9003fdb47 -2017,Chubut,II.1.1,221.99352,TJ,N2O,3.9,kg/TJ,865.774728,Gas Oil combustion consumption by freight transport,AR-U,SESCO,annual,kg,31ad7a5c-6e87-315a-b849-afa9003fdb47 -2017,Corrientes,II.1.1,323.34623999999997,TJ,CO2,74100.0,kg/TJ,23959956.383999996,Gas Oil combustion consumption by freight transport,AR-W,SESCO,annual,kg,f7b354ca-a322-3762-a19d-7869903682e9 -2017,Corrientes,II.1.1,323.34623999999997,TJ,CH4,3.9,kg/TJ,1261.0503359999998,Gas Oil combustion consumption by freight transport,AR-W,SESCO,annual,kg,1d2f1c2a-e65a-3071-8095-b4c27ca7b69c -2017,Corrientes,II.1.1,323.34623999999997,TJ,N2O,3.9,kg/TJ,1261.0503359999998,Gas Oil combustion consumption by freight transport,AR-W,SESCO,annual,kg,1d2f1c2a-e65a-3071-8095-b4c27ca7b69c -2017,Córdoba,II.1.1,2655.57852,TJ,CO2,74100.0,kg/TJ,196778368.332,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,184094bf-3f4c-351f-88d4-3057fe536109 -2017,Córdoba,II.1.1,2655.57852,TJ,CH4,3.9,kg/TJ,10356.756228,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,c40e5aa3-e4dc-362a-ab0e-47041e58b327 -2017,Córdoba,II.1.1,2655.57852,TJ,N2O,3.9,kg/TJ,10356.756228,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,c40e5aa3-e4dc-362a-ab0e-47041e58b327 -2017,Entre Rios,II.1.1,555.48948,TJ,CO2,74100.0,kg/TJ,41161770.467999995,Gas Oil combustion consumption by freight transport,AR-E,SESCO,annual,kg,a28ed434-3e54-3e43-9373-c08888d37f9f -2017,Entre Rios,II.1.1,555.48948,TJ,CH4,3.9,kg/TJ,2166.4089719999997,Gas Oil combustion consumption by freight transport,AR-E,SESCO,annual,kg,abd11c6c-bd21-3d84-a93a-5fc75fea7786 -2017,Entre Rios,II.1.1,555.48948,TJ,N2O,3.9,kg/TJ,2166.4089719999997,Gas Oil combustion consumption by freight transport,AR-E,SESCO,annual,kg,abd11c6c-bd21-3d84-a93a-5fc75fea7786 -2017,Formosa,II.1.1,26.40372,TJ,CO2,74100.0,kg/TJ,1956515.652,Gas Oil combustion consumption by freight transport,AR-P,SESCO,annual,kg,04fda7f2-8505-3f16-ab52-00e87bf5be32 -2017,Formosa,II.1.1,26.40372,TJ,CH4,3.9,kg/TJ,102.974508,Gas Oil combustion consumption by freight transport,AR-P,SESCO,annual,kg,c01f2fb7-8341-3af0-b38d-fdd8208a6a3c -2017,Formosa,II.1.1,26.40372,TJ,N2O,3.9,kg/TJ,102.974508,Gas Oil combustion consumption by freight transport,AR-P,SESCO,annual,kg,c01f2fb7-8341-3af0-b38d-fdd8208a6a3c -2017,Jujuy,II.1.1,154.08792,TJ,CO2,74100.0,kg/TJ,11417914.872,Gas Oil combustion consumption by freight transport,AR-Y,SESCO,annual,kg,4fbb9565-717c-3faa-b962-45c63f4569d3 -2017,Jujuy,II.1.1,154.08792,TJ,CH4,3.9,kg/TJ,600.9428879999999,Gas Oil combustion consumption by freight transport,AR-Y,SESCO,annual,kg,73e10711-d158-39f9-a42e-d244251f6847 -2017,Jujuy,II.1.1,154.08792,TJ,N2O,3.9,kg/TJ,600.9428879999999,Gas Oil combustion consumption by freight transport,AR-Y,SESCO,annual,kg,73e10711-d158-39f9-a42e-d244251f6847 -2017,La Pampa,II.1.1,179.44415999999998,TJ,CO2,74100.0,kg/TJ,13296812.256,Gas Oil combustion consumption by freight transport,AR-L,SESCO,annual,kg,5d18db2e-e3e0-32bf-92cd-460d0d062bca -2017,La Pampa,II.1.1,179.44415999999998,TJ,CH4,3.9,kg/TJ,699.8322239999999,Gas Oil combustion consumption by freight transport,AR-L,SESCO,annual,kg,6ed5109a-00b9-30b7-9909-f82b5e386106 -2017,La Pampa,II.1.1,179.44415999999998,TJ,N2O,3.9,kg/TJ,699.8322239999999,Gas Oil combustion consumption by freight transport,AR-L,SESCO,annual,kg,6ed5109a-00b9-30b7-9909-f82b5e386106 -2017,La Rioja,II.1.1,11.48616,TJ,CO2,74100.0,kg/TJ,851124.456,Gas Oil combustion consumption by freight transport,AR-F,SESCO,annual,kg,bd8b2ba2-651a-36a5-80ca-8ed650e51867 -2017,La Rioja,II.1.1,11.48616,TJ,CH4,3.9,kg/TJ,44.796023999999996,Gas Oil combustion consumption by freight transport,AR-F,SESCO,annual,kg,3c6ee583-12c9-389c-80ea-d58bceeda7b5 -2017,La Rioja,II.1.1,11.48616,TJ,N2O,3.9,kg/TJ,44.796023999999996,Gas Oil combustion consumption by freight transport,AR-F,SESCO,annual,kg,3c6ee583-12c9-389c-80ea-d58bceeda7b5 -2017,Mendoza,II.1.1,1920.42816,TJ,CO2,74100.0,kg/TJ,142303726.656,Gas Oil combustion consumption by freight transport,AR-M,SESCO,annual,kg,c62df0b6-2bb8-3817-95c7-d262ff0193b1 -2017,Mendoza,II.1.1,1920.42816,TJ,CH4,3.9,kg/TJ,7489.669824,Gas Oil combustion consumption by freight transport,AR-M,SESCO,annual,kg,24656b27-0a8b-36bf-b68d-4c600c85852f -2017,Mendoza,II.1.1,1920.42816,TJ,N2O,3.9,kg/TJ,7489.669824,Gas Oil combustion consumption by freight transport,AR-M,SESCO,annual,kg,24656b27-0a8b-36bf-b68d-4c600c85852f -2017,Misiones,II.1.1,825.7393199999999,TJ,CO2,74100.0,kg/TJ,61187283.611999996,Gas Oil combustion consumption by freight transport,AR-N,SESCO,annual,kg,4a409b4e-699d-326d-819c-a0aedaf3a3fe -2017,Misiones,II.1.1,825.7393199999999,TJ,CH4,3.9,kg/TJ,3220.3833479999994,Gas Oil combustion consumption by freight transport,AR-N,SESCO,annual,kg,0bd7314b-c08d-3ea1-a073-d23ff10a3341 -2017,Misiones,II.1.1,825.7393199999999,TJ,N2O,3.9,kg/TJ,3220.3833479999994,Gas Oil combustion consumption by freight transport,AR-N,SESCO,annual,kg,0bd7314b-c08d-3ea1-a073-d23ff10a3341 -2017,Neuquén,II.1.1,999.5487599999999,TJ,CO2,74100.0,kg/TJ,74066563.116,Gas Oil combustion consumption by freight transport,AR-Q,SESCO,annual,kg,eb0c0f49-9780-3d22-ab5f-0e84ca5f329e -2017,Neuquén,II.1.1,999.5487599999999,TJ,CH4,3.9,kg/TJ,3898.2401639999994,Gas Oil combustion consumption by freight transport,AR-Q,SESCO,annual,kg,0085a13b-95fa-3491-acef-b42ad804d7da -2017,Neuquén,II.1.1,999.5487599999999,TJ,N2O,3.9,kg/TJ,3898.2401639999994,Gas Oil combustion consumption by freight transport,AR-Q,SESCO,annual,kg,0085a13b-95fa-3491-acef-b42ad804d7da -2017,Rio Negro,II.1.1,344.29584,TJ,CO2,74100.0,kg/TJ,25512321.744,Gas Oil combustion consumption by freight transport,AR-R,SESCO,annual,kg,b8231c5b-3fae-3b85-a228-2db81efab4dd -2017,Rio Negro,II.1.1,344.29584,TJ,CH4,3.9,kg/TJ,1342.753776,Gas Oil combustion consumption by freight transport,AR-R,SESCO,annual,kg,92a89756-2530-36ad-9db4-b1be72b9488f -2017,Rio Negro,II.1.1,344.29584,TJ,N2O,3.9,kg/TJ,1342.753776,Gas Oil combustion consumption by freight transport,AR-R,SESCO,annual,kg,92a89756-2530-36ad-9db4-b1be72b9488f -2017,Salta,II.1.1,343.06775999999996,TJ,CO2,74100.0,kg/TJ,25421321.016,Gas Oil combustion consumption by freight transport,AR-A,SESCO,annual,kg,0615e72e-6e19-381e-a00c-4022b4fce4c3 -2017,Salta,II.1.1,343.06775999999996,TJ,CH4,3.9,kg/TJ,1337.9642639999997,Gas Oil combustion consumption by freight transport,AR-A,SESCO,annual,kg,2476cead-9b54-3f2c-a91f-b3405ffb044b -2017,Salta,II.1.1,343.06775999999996,TJ,N2O,3.9,kg/TJ,1337.9642639999997,Gas Oil combustion consumption by freight transport,AR-A,SESCO,annual,kg,2476cead-9b54-3f2c-a91f-b3405ffb044b -2017,San Juan,II.1.1,120.09899999999999,TJ,CO2,74100.0,kg/TJ,8899335.899999999,Gas Oil combustion consumption by freight transport,AR-J,SESCO,annual,kg,ecf06080-a39c-3076-892b-5a7d305781c9 -2017,San Juan,II.1.1,120.09899999999999,TJ,CH4,3.9,kg/TJ,468.38609999999994,Gas Oil combustion consumption by freight transport,AR-J,SESCO,annual,kg,2bac67ef-6b16-3973-8c2d-ee83db60d1c7 -2017,San Juan,II.1.1,120.09899999999999,TJ,N2O,3.9,kg/TJ,468.38609999999994,Gas Oil combustion consumption by freight transport,AR-J,SESCO,annual,kg,2bac67ef-6b16-3973-8c2d-ee83db60d1c7 -2017,San Luis,II.1.1,183.8508,TJ,CO2,74100.0,kg/TJ,13623344.28,Gas Oil combustion consumption by freight transport,AR-D,SESCO,annual,kg,581cf875-dfae-3d17-93d2-24971a85f366 -2017,San Luis,II.1.1,183.8508,TJ,CH4,3.9,kg/TJ,717.01812,Gas Oil combustion consumption by freight transport,AR-D,SESCO,annual,kg,4b30fe2e-9628-3530-a38e-acb33d115311 -2017,San Luis,II.1.1,183.8508,TJ,N2O,3.9,kg/TJ,717.01812,Gas Oil combustion consumption by freight transport,AR-D,SESCO,annual,kg,4b30fe2e-9628-3530-a38e-acb33d115311 -2017,Santa Cruz,II.1.1,132.23532,TJ,CO2,74100.0,kg/TJ,9798637.212,Gas Oil combustion consumption by freight transport,AR-Z,SESCO,annual,kg,42c08f1d-00af-379d-bfff-6b29b20873c8 -2017,Santa Cruz,II.1.1,132.23532,TJ,CH4,3.9,kg/TJ,515.717748,Gas Oil combustion consumption by freight transport,AR-Z,SESCO,annual,kg,d32f205a-9a66-3e43-af97-366558b9ea73 -2017,Santa Cruz,II.1.1,132.23532,TJ,N2O,3.9,kg/TJ,515.717748,Gas Oil combustion consumption by freight transport,AR-Z,SESCO,annual,kg,d32f205a-9a66-3e43-af97-366558b9ea73 -2017,Santa Fe,II.1.1,2468.9826,TJ,CO2,74100.0,kg/TJ,182951610.66,Gas Oil combustion consumption by freight transport,AR-S,SESCO,annual,kg,fd5ed197-7517-3a6b-9ae7-dfc4d09348dd -2017,Santa Fe,II.1.1,2468.9826,TJ,CH4,3.9,kg/TJ,9629.03214,Gas Oil combustion consumption by freight transport,AR-S,SESCO,annual,kg,d9812b57-10f4-3e09-8226-2fbf1b8b1353 -2017,Santa Fe,II.1.1,2468.9826,TJ,N2O,3.9,kg/TJ,9629.03214,Gas Oil combustion consumption by freight transport,AR-S,SESCO,annual,kg,d9812b57-10f4-3e09-8226-2fbf1b8b1353 -2017,Santiago del Estero,II.1.1,220.54872,TJ,CO2,74100.0,kg/TJ,16342660.152,Gas Oil combustion consumption by freight transport,AR-G,SESCO,annual,kg,935bfca3-9192-35c4-8e39-c01163020ce3 -2017,Santiago del Estero,II.1.1,220.54872,TJ,CH4,3.9,kg/TJ,860.140008,Gas Oil combustion consumption by freight transport,AR-G,SESCO,annual,kg,f91269ce-0dbd-35de-a578-eb17522c930b -2017,Santiago del Estero,II.1.1,220.54872,TJ,N2O,3.9,kg/TJ,860.140008,Gas Oil combustion consumption by freight transport,AR-G,SESCO,annual,kg,f91269ce-0dbd-35de-a578-eb17522c930b -2017,Tierra del Fuego,II.1.1,200.71884,TJ,CO2,74100.0,kg/TJ,14873266.044,Gas Oil combustion consumption by freight transport,AR-V,SESCO,annual,kg,23b95649-e1ba-3714-8a49-9564b35bb111 -2017,Tierra del Fuego,II.1.1,200.71884,TJ,CH4,3.9,kg/TJ,782.8034759999999,Gas Oil combustion consumption by freight transport,AR-V,SESCO,annual,kg,76c0fe52-4ddc-39eb-83d3-5ea0a7845fd6 -2017,Tierra del Fuego,II.1.1,200.71884,TJ,N2O,3.9,kg/TJ,782.8034759999999,Gas Oil combustion consumption by freight transport,AR-V,SESCO,annual,kg,76c0fe52-4ddc-39eb-83d3-5ea0a7845fd6 -2017,Tucuman,II.1.1,664.13844,TJ,CO2,74100.0,kg/TJ,49212658.404,Gas Oil combustion consumption by freight transport,AR-T,SESCO,annual,kg,9f413994-f4c5-38f9-b4a5-4c621c7d0142 -2017,Tucuman,II.1.1,664.13844,TJ,CH4,3.9,kg/TJ,2590.1399159999996,Gas Oil combustion consumption by freight transport,AR-T,SESCO,annual,kg,41a748d4-2262-363d-96ec-b57f555b53f1 -2017,Tucuman,II.1.1,664.13844,TJ,N2O,3.9,kg/TJ,2590.1399159999996,Gas Oil combustion consumption by freight transport,AR-T,SESCO,annual,kg,41a748d4-2262-363d-96ec-b57f555b53f1 -2017,Buenos Aires,II.1.1,1389.5364,TJ,CO2,74100.0,kg/TJ,102964647.24,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,78cd42b3-247d-31c9-8a6d-1912e5c7a092 -2017,Buenos Aires,II.1.1,1389.5364,TJ,CH4,3.9,kg/TJ,5419.19196,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,96d2cc1b-a7d7-3d68-b71c-649bfea317e0 -2017,Buenos Aires,II.1.1,1389.5364,TJ,N2O,3.9,kg/TJ,5419.19196,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,96d2cc1b-a7d7-3d68-b71c-649bfea317e0 -2017,Capital Federal,II.1.1,1452.5657999999999,TJ,CO2,74100.0,kg/TJ,107635125.77999999,Gas Oil combustion consumption by freight transport,AR-C,SESCO,annual,kg,016928d4-4add-322b-a324-f8b460d65518 -2017,Capital Federal,II.1.1,1452.5657999999999,TJ,CH4,3.9,kg/TJ,5665.006619999999,Gas Oil combustion consumption by freight transport,AR-C,SESCO,annual,kg,6ca52ade-9b89-3858-be69-080d130bcde3 -2017,Capital Federal,II.1.1,1452.5657999999999,TJ,N2O,3.9,kg/TJ,5665.006619999999,Gas Oil combustion consumption by freight transport,AR-C,SESCO,annual,kg,6ca52ade-9b89-3858-be69-080d130bcde3 -2017,Catamarca,II.1.1,2.31168,TJ,CO2,74100.0,kg/TJ,171295.48799999998,Gas Oil combustion consumption by freight transport,AR-K,SESCO,annual,kg,834fb272-094c-3b88-9302-3201e2475633 -2017,Catamarca,II.1.1,2.31168,TJ,CH4,3.9,kg/TJ,9.015552,Gas Oil combustion consumption by freight transport,AR-K,SESCO,annual,kg,607b120c-bba9-3cad-9ee1-bcaed7c21d76 -2017,Catamarca,II.1.1,2.31168,TJ,N2O,3.9,kg/TJ,9.015552,Gas Oil combustion consumption by freight transport,AR-K,SESCO,annual,kg,607b120c-bba9-3cad-9ee1-bcaed7c21d76 -2017,Chaco,II.1.1,74.66004,TJ,CO2,74100.0,kg/TJ,5532308.964,Gas Oil combustion consumption by freight transport,AR-H,SESCO,annual,kg,00a64904-70bc-3ecd-ae3d-4a29f4abd910 -2017,Chaco,II.1.1,74.66004,TJ,CH4,3.9,kg/TJ,291.174156,Gas Oil combustion consumption by freight transport,AR-H,SESCO,annual,kg,a0fa08d2-4e47-3ba5-99be-ab59e86e898e -2017,Chaco,II.1.1,74.66004,TJ,N2O,3.9,kg/TJ,291.174156,Gas Oil combustion consumption by freight transport,AR-H,SESCO,annual,kg,a0fa08d2-4e47-3ba5-99be-ab59e86e898e -2017,Chubut,II.1.1,159.21696,TJ,CO2,74100.0,kg/TJ,11797976.736,Gas Oil combustion consumption by freight transport,AR-U,SESCO,annual,kg,ba8a5588-eee9-3b1c-9803-67fdc77e3c67 -2017,Chubut,II.1.1,159.21696,TJ,CH4,3.9,kg/TJ,620.946144,Gas Oil combustion consumption by freight transport,AR-U,SESCO,annual,kg,0f14ef69-2185-3a44-9652-c56c5a7a0d64 -2017,Chubut,II.1.1,159.21696,TJ,N2O,3.9,kg/TJ,620.946144,Gas Oil combustion consumption by freight transport,AR-U,SESCO,annual,kg,0f14ef69-2185-3a44-9652-c56c5a7a0d64 -2017,Corrientes,II.1.1,40.12932,TJ,CO2,74100.0,kg/TJ,2973582.612,Gas Oil combustion consumption by freight transport,AR-W,SESCO,annual,kg,d8ae9ee3-3ddd-3f3b-ae34-ecb0755fba3c -2017,Corrientes,II.1.1,40.12932,TJ,CH4,3.9,kg/TJ,156.504348,Gas Oil combustion consumption by freight transport,AR-W,SESCO,annual,kg,d88a1f41-909d-3e20-8c66-4c63fdca6fb6 -2017,Corrientes,II.1.1,40.12932,TJ,N2O,3.9,kg/TJ,156.504348,Gas Oil combustion consumption by freight transport,AR-W,SESCO,annual,kg,d88a1f41-909d-3e20-8c66-4c63fdca6fb6 -2017,Córdoba,II.1.1,173.80944,TJ,CO2,74100.0,kg/TJ,12879279.503999999,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,dd8ecc15-7844-33c7-856a-9b2ef8fc0450 -2017,Córdoba,II.1.1,173.80944,TJ,CH4,3.9,kg/TJ,677.856816,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,1e885226-df28-385f-ba95-d060ff4bca2f -2017,Córdoba,II.1.1,173.80944,TJ,N2O,3.9,kg/TJ,677.856816,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,1e885226-df28-385f-ba95-d060ff4bca2f -2017,Entre Rios,II.1.1,83.69004,TJ,CO2,74100.0,kg/TJ,6201431.964,Gas Oil combustion consumption by freight transport,AR-E,SESCO,annual,kg,01dcf267-5dc4-3188-bfa6-c0299531b8b4 -2017,Entre Rios,II.1.1,83.69004,TJ,CH4,3.9,kg/TJ,326.39115599999997,Gas Oil combustion consumption by freight transport,AR-E,SESCO,annual,kg,85e9689b-faca-3da1-84b0-edfa6d696b6a -2017,Entre Rios,II.1.1,83.69004,TJ,N2O,3.9,kg/TJ,326.39115599999997,Gas Oil combustion consumption by freight transport,AR-E,SESCO,annual,kg,85e9689b-faca-3da1-84b0-edfa6d696b6a -2017,Formosa,II.1.1,7.11564,TJ,CO2,74100.0,kg/TJ,527268.924,Gas Oil combustion consumption by freight transport,AR-P,SESCO,annual,kg,51ffa501-b90f-37a4-8689-25909cae9ea7 -2017,Formosa,II.1.1,7.11564,TJ,CH4,3.9,kg/TJ,27.750996,Gas Oil combustion consumption by freight transport,AR-P,SESCO,annual,kg,6ff79616-635c-3e7f-8649-fbe1266c62e8 -2017,Formosa,II.1.1,7.11564,TJ,N2O,3.9,kg/TJ,27.750996,Gas Oil combustion consumption by freight transport,AR-P,SESCO,annual,kg,6ff79616-635c-3e7f-8649-fbe1266c62e8 -2017,Jujuy,II.1.1,2.81736,TJ,CO2,74100.0,kg/TJ,208766.376,Gas Oil combustion consumption by freight transport,AR-Y,SESCO,annual,kg,c4182bd5-c49c-30bc-b943-4b0d788ec553 -2017,Jujuy,II.1.1,2.81736,TJ,CH4,3.9,kg/TJ,10.987703999999999,Gas Oil combustion consumption by freight transport,AR-Y,SESCO,annual,kg,c8e4aaaa-079c-3abd-8ca7-ce934eacf3ca -2017,Jujuy,II.1.1,2.81736,TJ,N2O,3.9,kg/TJ,10.987703999999999,Gas Oil combustion consumption by freight transport,AR-Y,SESCO,annual,kg,c8e4aaaa-079c-3abd-8ca7-ce934eacf3ca -2017,La Pampa,II.1.1,20.44392,TJ,CO2,74100.0,kg/TJ,1514894.4719999998,Gas Oil combustion consumption by freight transport,AR-L,SESCO,annual,kg,11a5e135-6acb-32b6-8c31-f9b29ea1ed92 -2017,La Pampa,II.1.1,20.44392,TJ,CH4,3.9,kg/TJ,79.73128799999999,Gas Oil combustion consumption by freight transport,AR-L,SESCO,annual,kg,f61f4142-44b4-3af7-88f9-1935ba62bc56 -2017,La Pampa,II.1.1,20.44392,TJ,N2O,3.9,kg/TJ,79.73128799999999,Gas Oil combustion consumption by freight transport,AR-L,SESCO,annual,kg,f61f4142-44b4-3af7-88f9-1935ba62bc56 -2017,La Rioja,II.1.1,6.42936,TJ,CO2,74100.0,kg/TJ,476415.576,Gas Oil combustion consumption by freight transport,AR-F,SESCO,annual,kg,d45cc40a-a13b-3769-b409-962e7e00148b -2017,La Rioja,II.1.1,6.42936,TJ,CH4,3.9,kg/TJ,25.074504,Gas Oil combustion consumption by freight transport,AR-F,SESCO,annual,kg,18bc4fe7-e637-3f00-91f8-f52aebe6f4ea -2017,La Rioja,II.1.1,6.42936,TJ,N2O,3.9,kg/TJ,25.074504,Gas Oil combustion consumption by freight transport,AR-F,SESCO,annual,kg,18bc4fe7-e637-3f00-91f8-f52aebe6f4ea -2017,Mendoza,II.1.1,187.31832,TJ,CO2,74100.0,kg/TJ,13880287.512,Gas Oil combustion consumption by freight transport,AR-M,SESCO,annual,kg,c2f024c2-d101-31bb-bdc5-f0a0575a0b37 -2017,Mendoza,II.1.1,187.31832,TJ,CH4,3.9,kg/TJ,730.541448,Gas Oil combustion consumption by freight transport,AR-M,SESCO,annual,kg,c14a560b-80c4-3796-97fe-4c2243bd161e -2017,Mendoza,II.1.1,187.31832,TJ,N2O,3.9,kg/TJ,730.541448,Gas Oil combustion consumption by freight transport,AR-M,SESCO,annual,kg,c14a560b-80c4-3796-97fe-4c2243bd161e -2017,Misiones,II.1.1,56.05824,TJ,CO2,74100.0,kg/TJ,4153915.584,Gas Oil combustion consumption by freight transport,AR-N,SESCO,annual,kg,6186c99c-1c94-3d8c-b229-777dbde3a2d4 -2017,Misiones,II.1.1,56.05824,TJ,CH4,3.9,kg/TJ,218.62713599999998,Gas Oil combustion consumption by freight transport,AR-N,SESCO,annual,kg,3c196085-022d-3f42-afda-1470050c01fd -2017,Misiones,II.1.1,56.05824,TJ,N2O,3.9,kg/TJ,218.62713599999998,Gas Oil combustion consumption by freight transport,AR-N,SESCO,annual,kg,3c196085-022d-3f42-afda-1470050c01fd -2017,Neuquén,II.1.1,439.07471999999996,TJ,CO2,74100.0,kg/TJ,32535436.751999997,Gas Oil combustion consumption by freight transport,AR-Q,SESCO,annual,kg,848298d4-13f3-321b-a8da-64f98b190801 -2017,Neuquén,II.1.1,439.07471999999996,TJ,CH4,3.9,kg/TJ,1712.3914079999997,Gas Oil combustion consumption by freight transport,AR-Q,SESCO,annual,kg,354cac06-e61a-36bb-a8fd-7e70eeb0f40a -2017,Neuquén,II.1.1,439.07471999999996,TJ,N2O,3.9,kg/TJ,1712.3914079999997,Gas Oil combustion consumption by freight transport,AR-Q,SESCO,annual,kg,354cac06-e61a-36bb-a8fd-7e70eeb0f40a -2017,Rio Negro,II.1.1,78.52488,TJ,CO2,74100.0,kg/TJ,5818693.608,Gas Oil combustion consumption by freight transport,AR-R,SESCO,annual,kg,ae1ef08e-4fae-3ba0-9289-4b03741d40a3 -2017,Rio Negro,II.1.1,78.52488,TJ,CH4,3.9,kg/TJ,306.247032,Gas Oil combustion consumption by freight transport,AR-R,SESCO,annual,kg,cb9d389d-fbbc-332f-a483-53810a99d085 -2017,Rio Negro,II.1.1,78.52488,TJ,N2O,3.9,kg/TJ,306.247032,Gas Oil combustion consumption by freight transport,AR-R,SESCO,annual,kg,cb9d389d-fbbc-332f-a483-53810a99d085 -2017,Salta,II.1.1,93.94811999999999,TJ,CO2,74100.0,kg/TJ,6961555.691999999,Gas Oil combustion consumption by freight transport,AR-A,SESCO,annual,kg,486addb7-901a-3297-a441-bd4dd7f1e765 -2017,Salta,II.1.1,93.94811999999999,TJ,CH4,3.9,kg/TJ,366.39766799999995,Gas Oil combustion consumption by freight transport,AR-A,SESCO,annual,kg,5790e551-465f-322f-834e-8c5ecf94cedd -2017,Salta,II.1.1,93.94811999999999,TJ,N2O,3.9,kg/TJ,366.39766799999995,Gas Oil combustion consumption by freight transport,AR-A,SESCO,annual,kg,5790e551-465f-322f-834e-8c5ecf94cedd -2017,San Juan,II.1.1,9.174479999999999,TJ,CO2,74100.0,kg/TJ,679828.9679999999,Gas Oil combustion consumption by freight transport,AR-J,SESCO,annual,kg,8e7f9997-3651-3a95-80a1-2d78ea1ad94b -2017,San Juan,II.1.1,9.174479999999999,TJ,CH4,3.9,kg/TJ,35.780471999999996,Gas Oil combustion consumption by freight transport,AR-J,SESCO,annual,kg,206afeda-4597-3511-9edf-391173ba2a6b -2017,San Juan,II.1.1,9.174479999999999,TJ,N2O,3.9,kg/TJ,35.780471999999996,Gas Oil combustion consumption by freight transport,AR-J,SESCO,annual,kg,206afeda-4597-3511-9edf-391173ba2a6b -2017,San Luis,II.1.1,34.89192,TJ,CO2,74100.0,kg/TJ,2585491.272,Gas Oil combustion consumption by freight transport,AR-D,SESCO,annual,kg,b702673e-3169-324e-b35c-65056d01cd91 -2017,San Luis,II.1.1,34.89192,TJ,CH4,3.9,kg/TJ,136.078488,Gas Oil combustion consumption by freight transport,AR-D,SESCO,annual,kg,782c8fe4-7d09-3b75-a840-ae44885adbb3 -2017,San Luis,II.1.1,34.89192,TJ,N2O,3.9,kg/TJ,136.078488,Gas Oil combustion consumption by freight transport,AR-D,SESCO,annual,kg,782c8fe4-7d09-3b75-a840-ae44885adbb3 -2017,Santa Cruz,II.1.1,58.839479999999995,TJ,CO2,74100.0,kg/TJ,4360005.467999999,Gas Oil combustion consumption by freight transport,AR-Z,SESCO,annual,kg,d153844b-312d-309b-9f88-5543098595c4 -2017,Santa Cruz,II.1.1,58.839479999999995,TJ,CH4,3.9,kg/TJ,229.47397199999997,Gas Oil combustion consumption by freight transport,AR-Z,SESCO,annual,kg,6686df07-a5de-3893-96a7-6b9c1688625a -2017,Santa Cruz,II.1.1,58.839479999999995,TJ,N2O,3.9,kg/TJ,229.47397199999997,Gas Oil combustion consumption by freight transport,AR-Z,SESCO,annual,kg,6686df07-a5de-3893-96a7-6b9c1688625a -2017,Santa Fe,II.1.1,392.51604,TJ,CO2,74100.0,kg/TJ,29085438.564,Gas Oil combustion consumption by freight transport,AR-S,SESCO,annual,kg,20950d4f-c651-32f6-a65d-f73fdb2ae9a6 -2017,Santa Fe,II.1.1,392.51604,TJ,CH4,3.9,kg/TJ,1530.8125559999999,Gas Oil combustion consumption by freight transport,AR-S,SESCO,annual,kg,29d3df79-a3b6-3a5e-8de4-50235b642395 -2017,Santa Fe,II.1.1,392.51604,TJ,N2O,3.9,kg/TJ,1530.8125559999999,Gas Oil combustion consumption by freight transport,AR-S,SESCO,annual,kg,29d3df79-a3b6-3a5e-8de4-50235b642395 -2017,Santiago del Estero,II.1.1,5.7791999999999994,TJ,CO2,74100.0,kg/TJ,428238.72,Gas Oil combustion consumption by freight transport,AR-G,SESCO,annual,kg,d5449743-230d-32c3-85c0-4f9052fb39a1 -2017,Santiago del Estero,II.1.1,5.7791999999999994,TJ,CH4,3.9,kg/TJ,22.53888,Gas Oil combustion consumption by freight transport,AR-G,SESCO,annual,kg,e42116a7-04de-32e7-bb8a-459851b88aa0 -2017,Santiago del Estero,II.1.1,5.7791999999999994,TJ,N2O,3.9,kg/TJ,22.53888,Gas Oil combustion consumption by freight transport,AR-G,SESCO,annual,kg,e42116a7-04de-32e7-bb8a-459851b88aa0 -2017,Tierra del Fuego,II.1.1,27.595679999999998,TJ,CO2,74100.0,kg/TJ,2044839.8879999998,Gas Oil combustion consumption by freight transport,AR-V,SESCO,annual,kg,ce524cd0-1d2b-3499-b327-eb425d71ebeb -2017,Tierra del Fuego,II.1.1,27.595679999999998,TJ,CH4,3.9,kg/TJ,107.62315199999999,Gas Oil combustion consumption by freight transport,AR-V,SESCO,annual,kg,ba0a16b3-45e9-35a3-8809-dddb45890edb -2017,Tierra del Fuego,II.1.1,27.595679999999998,TJ,N2O,3.9,kg/TJ,107.62315199999999,Gas Oil combustion consumption by freight transport,AR-V,SESCO,annual,kg,ba0a16b3-45e9-35a3-8809-dddb45890edb -2017,Tucuman,II.1.1,44.82492,TJ,CO2,74100.0,kg/TJ,3321526.5719999997,Gas Oil combustion consumption by freight transport,AR-T,SESCO,annual,kg,0555233f-63d0-3222-97f9-ae5da6c298ef -2017,Tucuman,II.1.1,44.82492,TJ,CH4,3.9,kg/TJ,174.817188,Gas Oil combustion consumption by freight transport,AR-T,SESCO,annual,kg,c4f80f64-fc3e-3522-9efb-49afdbb6a91a -2017,Tucuman,II.1.1,44.82492,TJ,N2O,3.9,kg/TJ,174.817188,Gas Oil combustion consumption by freight transport,AR-T,SESCO,annual,kg,c4f80f64-fc3e-3522-9efb-49afdbb6a91a -2017,Buenos Aires,II.1.1,286.24980999999997,TJ,CO2,73300.0,kg/TJ,20982111.073,Naphtha combustion consumption by freight transport,AR-B,SESCO,annual,kg,287dd881-ec21-3c7b-b365-f99dfaa36e79 -2017,Buenos Aires,II.1.1,286.24980999999997,TJ,CH4,0.5,kg/TJ,143.12490499999998,Naphtha combustion consumption by freight transport,AR-B,SESCO,annual,kg,8822b16e-06af-31ec-a7af-85a44b319e9f -2017,Buenos Aires,II.1.1,286.24980999999997,TJ,N2O,2.0,kg/TJ,572.4996199999999,Naphtha combustion consumption by freight transport,AR-B,SESCO,annual,kg,ac55c6e2-f81b-3f09-84bd-3c21dc5b9c97 -2017,Capital Federal,II.1.1,296.015335,TJ,CO2,73300.0,kg/TJ,21697924.0555,Naphtha combustion consumption by freight transport,AR-C,SESCO,annual,kg,58ad2dbd-88a1-3807-85c8-494cd887a721 -2017,Capital Federal,II.1.1,296.015335,TJ,CH4,0.5,kg/TJ,148.0076675,Naphtha combustion consumption by freight transport,AR-C,SESCO,annual,kg,a849a799-d840-320c-a7ac-6f70fe62b142 -2017,Capital Federal,II.1.1,296.015335,TJ,N2O,2.0,kg/TJ,592.03067,Naphtha combustion consumption by freight transport,AR-C,SESCO,annual,kg,cdcf5543-6169-3299-a005-7204b182da78 -2017,Chaco,II.1.1,11.37598,TJ,CO2,73300.0,kg/TJ,833859.334,Naphtha combustion consumption by freight transport,AR-H,SESCO,annual,kg,48c7f398-4ad8-3a96-9b21-80f920c235bc -2017,Chaco,II.1.1,11.37598,TJ,CH4,0.5,kg/TJ,5.68799,Naphtha combustion consumption by freight transport,AR-H,SESCO,annual,kg,1d9a65d1-b52a-387b-a362-0ede8517b82a -2017,Chaco,II.1.1,11.37598,TJ,N2O,2.0,kg/TJ,22.75196,Naphtha combustion consumption by freight transport,AR-H,SESCO,annual,kg,a7ad3ec6-911a-3d0a-a1cf-4b9af64241ec -2017,Chubut,II.1.1,3.76915,TJ,CO2,73300.0,kg/TJ,276278.695,Naphtha combustion consumption by freight transport,AR-U,SESCO,annual,kg,1f119bbf-2a0d-360d-89dc-abab5abd8cab -2017,Chubut,II.1.1,3.76915,TJ,CH4,0.5,kg/TJ,1.884575,Naphtha combustion consumption by freight transport,AR-U,SESCO,annual,kg,88f763b3-6509-3ef3-b573-ff63aa36193d -2017,Chubut,II.1.1,3.76915,TJ,N2O,2.0,kg/TJ,7.5383,Naphtha combustion consumption by freight transport,AR-U,SESCO,annual,kg,f5b9fd13-b180-3bd7-b10a-f91ecbbf4367 -2017,Corrientes,II.1.1,2.19296,TJ,CO2,73300.0,kg/TJ,160743.968,Naphtha combustion consumption by freight transport,AR-W,SESCO,annual,kg,fa42a584-defc-32f2-b5b9-91a96bd1f62c -2017,Corrientes,II.1.1,2.19296,TJ,CH4,0.5,kg/TJ,1.09648,Naphtha combustion consumption by freight transport,AR-W,SESCO,annual,kg,341be329-6b5f-3159-9c56-87b99b212335 -2017,Corrientes,II.1.1,2.19296,TJ,N2O,2.0,kg/TJ,4.38592,Naphtha combustion consumption by freight transport,AR-W,SESCO,annual,kg,324bbcf2-64ce-3212-9fd1-beb57b217cf7 -2017,Córdoba,II.1.1,19.702375,TJ,CO2,73300.0,kg/TJ,1444184.0875,Naphtha combustion consumption by freight transport,AR-X,SESCO,annual,kg,08250e16-1117-372c-b86a-fc365417c018 -2017,Córdoba,II.1.1,19.702375,TJ,CH4,0.5,kg/TJ,9.8511875,Naphtha combustion consumption by freight transport,AR-X,SESCO,annual,kg,8430844b-fed6-3e9b-96b2-e1690bc30ed8 -2017,Córdoba,II.1.1,19.702375,TJ,N2O,2.0,kg/TJ,39.40475,Naphtha combustion consumption by freight transport,AR-X,SESCO,annual,kg,14bd318c-7b4a-31ba-bd8f-2bb8668c1ec0 -2017,Entre Rios,II.1.1,10.724945,TJ,CO2,73300.0,kg/TJ,786138.4685,Naphtha combustion consumption by freight transport,AR-E,SESCO,annual,kg,f6b082d6-248b-3e43-bed3-d4ad3158ea4d -2017,Entre Rios,II.1.1,10.724945,TJ,CH4,0.5,kg/TJ,5.3624725,Naphtha combustion consumption by freight transport,AR-E,SESCO,annual,kg,8f6193e3-f85b-333d-b3fc-d3b13026a99c -2017,Entre Rios,II.1.1,10.724945,TJ,N2O,2.0,kg/TJ,21.44989,Naphtha combustion consumption by freight transport,AR-E,SESCO,annual,kg,c328b793-70c6-35e4-b9de-abd4d37a86dd -2017,Formosa,II.1.1,0.445445,TJ,CO2,73300.0,kg/TJ,32651.118499999997,Naphtha combustion consumption by freight transport,AR-P,SESCO,annual,kg,cff20865-df63-391d-affa-6dc30498bb1e -2017,Formosa,II.1.1,0.445445,TJ,CH4,0.5,kg/TJ,0.2227225,Naphtha combustion consumption by freight transport,AR-P,SESCO,annual,kg,72a36b99-5a14-37e8-926d-fb5cea436158 -2017,Formosa,II.1.1,0.445445,TJ,N2O,2.0,kg/TJ,0.89089,Naphtha combustion consumption by freight transport,AR-P,SESCO,annual,kg,0fdafeb1-b368-3986-8bc3-e2f5a69e50b6 -2017,Jujuy,II.1.1,0.171325,TJ,CO2,73300.0,kg/TJ,12558.1225,Naphtha combustion consumption by freight transport,AR-Y,SESCO,annual,kg,5218038f-c04d-3b27-bb73-d326417db894 -2017,Jujuy,II.1.1,0.171325,TJ,CH4,0.5,kg/TJ,0.0856625,Naphtha combustion consumption by freight transport,AR-Y,SESCO,annual,kg,d20a3e39-ec63-36f0-9a02-0676bb968041 -2017,Jujuy,II.1.1,0.171325,TJ,N2O,2.0,kg/TJ,0.34265,Naphtha combustion consumption by freight transport,AR-Y,SESCO,annual,kg,effce86f-332c-36b4-9b0e-875fd14bfd33 -2017,La Pampa,II.1.1,1.2678049999999998,TJ,CO2,73300.0,kg/TJ,92930.1065,Naphtha combustion consumption by freight transport,AR-L,SESCO,annual,kg,b0314f63-eac1-333a-b632-71747a952476 -2017,La Pampa,II.1.1,1.2678049999999998,TJ,CH4,0.5,kg/TJ,0.6339024999999999,Naphtha combustion consumption by freight transport,AR-L,SESCO,annual,kg,f8fc414d-5cde-33d7-a6e8-d059120d2156 -2017,La Pampa,II.1.1,1.2678049999999998,TJ,N2O,2.0,kg/TJ,2.5356099999999997,Naphtha combustion consumption by freight transport,AR-L,SESCO,annual,kg,2a1ab180-e40e-3ddc-8391-21da2164ef1e -2017,La Rioja,II.1.1,0.034265,TJ,CO2,73300.0,kg/TJ,2511.6245,Naphtha combustion consumption by freight transport,AR-F,SESCO,annual,kg,ee617c2c-3025-33e8-8d87-1607629e4de8 -2017,La Rioja,II.1.1,0.034265,TJ,CH4,0.5,kg/TJ,0.0171325,Naphtha combustion consumption by freight transport,AR-F,SESCO,annual,kg,e6a13d60-720b-347c-9874-741a88e978c0 -2017,La Rioja,II.1.1,0.034265,TJ,N2O,2.0,kg/TJ,0.06853,Naphtha combustion consumption by freight transport,AR-F,SESCO,annual,kg,c288cd78-b78f-3610-888c-e2049ab5ca73 -2017,Mendoza,II.1.1,20.90165,TJ,CO2,73300.0,kg/TJ,1532090.945,Naphtha combustion consumption by freight transport,AR-M,SESCO,annual,kg,d8e01d61-3b10-32a0-9673-05af0ffff399 -2017,Mendoza,II.1.1,20.90165,TJ,CH4,0.5,kg/TJ,10.450825,Naphtha combustion consumption by freight transport,AR-M,SESCO,annual,kg,e7fb9dc5-17b7-3385-b004-dcd01547b79f -2017,Mendoza,II.1.1,20.90165,TJ,N2O,2.0,kg/TJ,41.8033,Naphtha combustion consumption by freight transport,AR-M,SESCO,annual,kg,381217be-3b70-39e7-8f5a-110f12b720ce -2017,Misiones,II.1.1,2.021635,TJ,CO2,73300.0,kg/TJ,148185.8455,Naphtha combustion consumption by freight transport,AR-N,SESCO,annual,kg,4ea6a75f-bb96-34bd-bd33-4654200a46c2 -2017,Misiones,II.1.1,2.021635,TJ,CH4,0.5,kg/TJ,1.0108175,Naphtha combustion consumption by freight transport,AR-N,SESCO,annual,kg,c1f12314-b687-3955-af0d-c74716d213ff -2017,Misiones,II.1.1,2.021635,TJ,N2O,2.0,kg/TJ,4.04327,Naphtha combustion consumption by freight transport,AR-N,SESCO,annual,kg,8d6c8ced-f065-3ee1-aa6a-a3449485d305 -2017,Neuquén,II.1.1,4.6600399999999995,TJ,CO2,73300.0,kg/TJ,341580.932,Naphtha combustion consumption by freight transport,AR-Q,SESCO,annual,kg,e46304d3-f4a2-3ddb-a462-6b4ddb95c7e9 -2017,Neuquén,II.1.1,4.6600399999999995,TJ,CH4,0.5,kg/TJ,2.3300199999999998,Naphtha combustion consumption by freight transport,AR-Q,SESCO,annual,kg,c54db29d-4152-3b7a-adc3-ebee6cbf3f85 -2017,Neuquén,II.1.1,4.6600399999999995,TJ,N2O,2.0,kg/TJ,9.320079999999999,Naphtha combustion consumption by freight transport,AR-Q,SESCO,annual,kg,b8d1e5c1-925a-3808-bcb7-13ba872c001e -2017,Rio Negro,II.1.1,8.669044999999999,TJ,CO2,73300.0,kg/TJ,635440.9984999999,Naphtha combustion consumption by freight transport,AR-R,SESCO,annual,kg,66e5f823-105a-3e68-9cb5-6f590d05a23c -2017,Rio Negro,II.1.1,8.669044999999999,TJ,CH4,0.5,kg/TJ,4.334522499999999,Naphtha combustion consumption by freight transport,AR-R,SESCO,annual,kg,2e7d8c78-6db3-3399-bf70-fd378dd6cde0 -2017,Rio Negro,II.1.1,8.669044999999999,TJ,N2O,2.0,kg/TJ,17.338089999999998,Naphtha combustion consumption by freight transport,AR-R,SESCO,annual,kg,ac0e0af7-b8c8-3f5d-b5a1-c22c84f1b79c -2017,Salta,II.1.1,11.410245,TJ,CO2,73300.0,kg/TJ,836370.9585,Naphtha combustion consumption by freight transport,AR-A,SESCO,annual,kg,b8913366-1d28-3ba7-bcab-71d013946ca3 -2017,Salta,II.1.1,11.410245,TJ,CH4,0.5,kg/TJ,5.7051225,Naphtha combustion consumption by freight transport,AR-A,SESCO,annual,kg,c59551a6-53ae-348d-85d3-a115fbc091f2 -2017,Salta,II.1.1,11.410245,TJ,N2O,2.0,kg/TJ,22.82049,Naphtha combustion consumption by freight transport,AR-A,SESCO,annual,kg,9a2d502c-814e-32de-9863-e1daa5c887c6 -2017,San Juan,II.1.1,2.12443,TJ,CO2,73300.0,kg/TJ,155720.71899999998,Naphtha combustion consumption by freight transport,AR-J,SESCO,annual,kg,bdf95e9d-2b37-3385-8b58-48a67ade5056 -2017,San Juan,II.1.1,2.12443,TJ,CH4,0.5,kg/TJ,1.062215,Naphtha combustion consumption by freight transport,AR-J,SESCO,annual,kg,77f6f4ea-0439-3893-9e65-012782e490a9 -2017,San Juan,II.1.1,2.12443,TJ,N2O,2.0,kg/TJ,4.24886,Naphtha combustion consumption by freight transport,AR-J,SESCO,annual,kg,784cc795-618f-3e7a-acaa-8b0c042527a0 -2017,San Luis,II.1.1,3.08385,TJ,CO2,73300.0,kg/TJ,226046.205,Naphtha combustion consumption by freight transport,AR-D,SESCO,annual,kg,dd8d05c4-f3fb-3cfd-ba3d-8cbc9375ea2e -2017,San Luis,II.1.1,3.08385,TJ,CH4,0.5,kg/TJ,1.541925,Naphtha combustion consumption by freight transport,AR-D,SESCO,annual,kg,a7167f01-425f-3603-9cea-e048d4064b8b -2017,San Luis,II.1.1,3.08385,TJ,N2O,2.0,kg/TJ,6.1677,Naphtha combustion consumption by freight transport,AR-D,SESCO,annual,kg,cebe5d97-9344-3368-9498-e7f32312c428 -2017,Santa Cruz,II.1.1,0.376915,TJ,CO2,73300.0,kg/TJ,27627.8695,Naphtha combustion consumption by freight transport,AR-Z,SESCO,annual,kg,e6c978eb-027b-3186-b928-ddf5e4f515b7 -2017,Santa Cruz,II.1.1,0.376915,TJ,CH4,0.5,kg/TJ,0.1884575,Naphtha combustion consumption by freight transport,AR-Z,SESCO,annual,kg,a9bdecd7-9ff3-3683-aa68-61d12e9062dc -2017,Santa Cruz,II.1.1,0.376915,TJ,N2O,2.0,kg/TJ,0.75383,Naphtha combustion consumption by freight transport,AR-Z,SESCO,annual,kg,a1c47125-d7c1-30f3-abfd-cc233aa2e155 -2017,Santa Fe,II.1.1,27.309205,TJ,CO2,73300.0,kg/TJ,2001764.7264999999,Naphtha combustion consumption by freight transport,AR-S,SESCO,annual,kg,c1080fdc-82aa-3cc2-aeaf-4fdad87b2333 -2017,Santa Fe,II.1.1,27.309205,TJ,CH4,0.5,kg/TJ,13.6546025,Naphtha combustion consumption by freight transport,AR-S,SESCO,annual,kg,e0ee0de7-fd43-3e15-83ca-944ec0c830c8 -2017,Santa Fe,II.1.1,27.309205,TJ,N2O,2.0,kg/TJ,54.61841,Naphtha combustion consumption by freight transport,AR-S,SESCO,annual,kg,800c548f-ae12-3a8f-b1a2-7d910c47f550 -2017,Santiago del Estero,II.1.1,0.102795,TJ,CO2,73300.0,kg/TJ,7534.8735,Naphtha combustion consumption by freight transport,AR-G,SESCO,annual,kg,a90cae4c-93a1-32c5-9685-b63d22830728 -2017,Santiago del Estero,II.1.1,0.102795,TJ,CH4,0.5,kg/TJ,0.0513975,Naphtha combustion consumption by freight transport,AR-G,SESCO,annual,kg,02db2bba-d51d-350e-9ab8-556219555435 -2017,Santiago del Estero,II.1.1,0.102795,TJ,N2O,2.0,kg/TJ,0.20559,Naphtha combustion consumption by freight transport,AR-G,SESCO,annual,kg,d6d0ac53-a3b4-3aa6-9610-016f426c8a07 -2017,Tierra del Fuego,II.1.1,4.5915099999999995,TJ,CO2,73300.0,kg/TJ,336557.68299999996,Naphtha combustion consumption by freight transport,AR-V,SESCO,annual,kg,5c87449b-fa6b-322b-94a8-7e0e4ae923f8 -2017,Tierra del Fuego,II.1.1,4.5915099999999995,TJ,CH4,0.5,kg/TJ,2.2957549999999998,Naphtha combustion consumption by freight transport,AR-V,SESCO,annual,kg,d0eb4bca-7c4a-3619-bd73-e6bdd9a863ce -2017,Tierra del Fuego,II.1.1,4.5915099999999995,TJ,N2O,2.0,kg/TJ,9.183019999999999,Naphtha combustion consumption by freight transport,AR-V,SESCO,annual,kg,442bde76-64c2-3aa4-ab13-aa3679e31965 -2017,Tucuman,II.1.1,4.31739,TJ,CO2,73300.0,kg/TJ,316464.687,Naphtha combustion consumption by freight transport,AR-T,SESCO,annual,kg,6661610e-1c72-3262-bd84-7eb47aeba5e0 -2017,Tucuman,II.1.1,4.31739,TJ,CH4,0.5,kg/TJ,2.158695,Naphtha combustion consumption by freight transport,AR-T,SESCO,annual,kg,cb3399c0-8d34-39d1-82c7-e1aacca24f2d -2017,Tucuman,II.1.1,4.31739,TJ,N2O,2.0,kg/TJ,8.63478,Naphtha combustion consumption by freight transport,AR-T,SESCO,annual,kg,e91313ca-7fe2-3720-9b59-7691dafda0ad -2017,Buenos Aires,II.1.1,301.73759,TJ,CO2,73300.0,kg/TJ,22117365.347,Naphtha combustion consumption by freight transport,AR-B,SESCO,annual,kg,b8121d12-d9cc-3fb6-ac76-6b9e28360b49 -2017,Buenos Aires,II.1.1,301.73759,TJ,CH4,0.5,kg/TJ,150.868795,Naphtha combustion consumption by freight transport,AR-B,SESCO,annual,kg,2f72b8cb-1923-37f6-b635-9432a6e29800 -2017,Buenos Aires,II.1.1,301.73759,TJ,N2O,2.0,kg/TJ,603.47518,Naphtha combustion consumption by freight transport,AR-B,SESCO,annual,kg,824a678a-eb04-31f5-b901-c8c831ee7d91 -2017,Capital Federal,II.1.1,355.77349499999997,TJ,CO2,73300.0,kg/TJ,26078197.1835,Naphtha combustion consumption by freight transport,AR-C,SESCO,annual,kg,f9744df6-5e07-3bdd-81d9-de21253ace60 -2017,Capital Federal,II.1.1,355.77349499999997,TJ,CH4,0.5,kg/TJ,177.88674749999998,Naphtha combustion consumption by freight transport,AR-C,SESCO,annual,kg,a3c37e41-1fbf-3f66-ad8a-0c6302076307 -2017,Capital Federal,II.1.1,355.77349499999997,TJ,N2O,2.0,kg/TJ,711.5469899999999,Naphtha combustion consumption by freight transport,AR-C,SESCO,annual,kg,4401c972-5a07-3636-8eb5-cf0efcd68df3 -2017,Catamarca,II.1.1,0.06853,TJ,CO2,73300.0,kg/TJ,5023.249,Naphtha combustion consumption by freight transport,AR-K,SESCO,annual,kg,a8f88800-5657-3dc0-b095-f6d9bdedfdc0 -2017,Catamarca,II.1.1,0.06853,TJ,CH4,0.5,kg/TJ,0.034265,Naphtha combustion consumption by freight transport,AR-K,SESCO,annual,kg,6bd1384f-ddd0-3a27-8324-38f4dde15438 -2017,Catamarca,II.1.1,0.06853,TJ,N2O,2.0,kg/TJ,0.13706,Naphtha combustion consumption by freight transport,AR-K,SESCO,annual,kg,62ea0dcd-d144-3b78-a384-0387ed5c2fb1 -2017,Chaco,II.1.1,11.341714999999999,TJ,CO2,73300.0,kg/TJ,831347.7094999999,Naphtha combustion consumption by freight transport,AR-H,SESCO,annual,kg,1f169141-3c36-33dd-a5a7-925469cdb2ae -2017,Chaco,II.1.1,11.341714999999999,TJ,CH4,0.5,kg/TJ,5.670857499999999,Naphtha combustion consumption by freight transport,AR-H,SESCO,annual,kg,dcb4c450-f4b3-3823-a76d-2d8412e7d934 -2017,Chaco,II.1.1,11.341714999999999,TJ,N2O,2.0,kg/TJ,22.683429999999998,Naphtha combustion consumption by freight transport,AR-H,SESCO,annual,kg,f7553885-eb6d-365c-99e8-a688f958e4a3 -2017,Chubut,II.1.1,2.6041399999999997,TJ,CO2,73300.0,kg/TJ,190883.46199999997,Naphtha combustion consumption by freight transport,AR-U,SESCO,annual,kg,85134652-259d-3d1e-a886-1b4c5192080e -2017,Chubut,II.1.1,2.6041399999999997,TJ,CH4,0.5,kg/TJ,1.3020699999999998,Naphtha combustion consumption by freight transport,AR-U,SESCO,annual,kg,790fa09b-0359-375e-8a8f-1f7f92716eae -2017,Chubut,II.1.1,2.6041399999999997,TJ,N2O,2.0,kg/TJ,5.208279999999999,Naphtha combustion consumption by freight transport,AR-U,SESCO,annual,kg,13bba9b5-6730-30a0-b447-d4dab46297d8 -2017,Corrientes,II.1.1,5.653725,TJ,CO2,73300.0,kg/TJ,414418.0425,Naphtha combustion consumption by freight transport,AR-W,SESCO,annual,kg,74fac8da-b382-3e75-a3c6-c4e294fd9a38 -2017,Corrientes,II.1.1,5.653725,TJ,CH4,0.5,kg/TJ,2.8268625,Naphtha combustion consumption by freight transport,AR-W,SESCO,annual,kg,91d7ce26-7ce0-3aa8-98dd-485f2f89aa9a -2017,Corrientes,II.1.1,5.653725,TJ,N2O,2.0,kg/TJ,11.30745,Naphtha combustion consumption by freight transport,AR-W,SESCO,annual,kg,f70d0fc9-7b4e-34a9-8083-ad92a07c92f2 -2017,Córdoba,II.1.1,21.312829999999998,TJ,CO2,73300.0,kg/TJ,1562230.4389999998,Naphtha combustion consumption by freight transport,AR-X,SESCO,annual,kg,7e51e50d-6a80-3ffb-ad64-b821f297d599 -2017,Córdoba,II.1.1,21.312829999999998,TJ,CH4,0.5,kg/TJ,10.656414999999999,Naphtha combustion consumption by freight transport,AR-X,SESCO,annual,kg,cca9348a-73d4-3b96-89fd-6bb896ff2248 -2017,Córdoba,II.1.1,21.312829999999998,TJ,N2O,2.0,kg/TJ,42.625659999999996,Naphtha combustion consumption by freight transport,AR-X,SESCO,annual,kg,f6f10c69-a2d3-3aa9-8742-0acc23c4e0fb -2017,Entre Rios,II.1.1,15.110864999999999,TJ,CO2,73300.0,kg/TJ,1107626.4045,Naphtha combustion consumption by freight transport,AR-E,SESCO,annual,kg,c6a1d8db-ecbe-3940-87b0-c29e3ceb2e38 -2017,Entre Rios,II.1.1,15.110864999999999,TJ,CH4,0.5,kg/TJ,7.555432499999999,Naphtha combustion consumption by freight transport,AR-E,SESCO,annual,kg,e110c3e9-ec5a-36a5-9f4c-ce286b2303bb -2017,Entre Rios,II.1.1,15.110864999999999,TJ,N2O,2.0,kg/TJ,30.221729999999997,Naphtha combustion consumption by freight transport,AR-E,SESCO,annual,kg,ebfc4c0a-0b9f-3a80-89e1-aa451d34ee51 -2017,Formosa,II.1.1,0.47970999999999997,TJ,CO2,73300.0,kg/TJ,35162.742999999995,Naphtha combustion consumption by freight transport,AR-P,SESCO,annual,kg,da1e8096-757f-3ce5-bb70-fe39e3321979 -2017,Formosa,II.1.1,0.47970999999999997,TJ,CH4,0.5,kg/TJ,0.23985499999999998,Naphtha combustion consumption by freight transport,AR-P,SESCO,annual,kg,113868f3-0fd4-3651-953f-524be669b0fb -2017,Formosa,II.1.1,0.47970999999999997,TJ,N2O,2.0,kg/TJ,0.9594199999999999,Naphtha combustion consumption by freight transport,AR-P,SESCO,annual,kg,3fa356ff-5f41-303d-97b8-bba460c7c35c -2017,Jujuy,II.1.1,0.23985499999999998,TJ,CO2,73300.0,kg/TJ,17581.371499999997,Naphtha combustion consumption by freight transport,AR-Y,SESCO,annual,kg,12a57be0-beef-3176-a222-5e265aeac8f4 -2017,Jujuy,II.1.1,0.23985499999999998,TJ,CH4,0.5,kg/TJ,0.11992749999999999,Naphtha combustion consumption by freight transport,AR-Y,SESCO,annual,kg,d32eb4a9-9d45-37bb-9fb1-1bd428ee94dc -2017,Jujuy,II.1.1,0.23985499999999998,TJ,N2O,2.0,kg/TJ,0.47970999999999997,Naphtha combustion consumption by freight transport,AR-Y,SESCO,annual,kg,1234c5dd-d204-3c70-be7b-13a0b7f857e8 -2017,La Pampa,II.1.1,1.9873699999999999,TJ,CO2,73300.0,kg/TJ,145674.221,Naphtha combustion consumption by freight transport,AR-L,SESCO,annual,kg,e76aa79b-e2ba-3047-987e-9067dcdc56f0 -2017,La Pampa,II.1.1,1.9873699999999999,TJ,CH4,0.5,kg/TJ,0.9936849999999999,Naphtha combustion consumption by freight transport,AR-L,SESCO,annual,kg,681ef078-e016-320f-a3a1-8affc4dfdb13 -2017,La Pampa,II.1.1,1.9873699999999999,TJ,N2O,2.0,kg/TJ,3.9747399999999997,Naphtha combustion consumption by freight transport,AR-L,SESCO,annual,kg,8d571bd6-8400-3454-96ef-9b4937c69a9f -2017,La Rioja,II.1.1,1.678985,TJ,CO2,73300.0,kg/TJ,123069.6005,Naphtha combustion consumption by freight transport,AR-F,SESCO,annual,kg,68afc30e-92af-3808-858b-efba99e8bf7b -2017,La Rioja,II.1.1,1.678985,TJ,CH4,0.5,kg/TJ,0.8394925,Naphtha combustion consumption by freight transport,AR-F,SESCO,annual,kg,f20a5388-eba0-3e3f-825f-ad80a33f8b89 -2017,La Rioja,II.1.1,1.678985,TJ,N2O,2.0,kg/TJ,3.35797,Naphtha combustion consumption by freight transport,AR-F,SESCO,annual,kg,103cbe25-8ad8-3009-8606-775d1122af2b -2017,Mendoza,II.1.1,18.84575,TJ,CO2,73300.0,kg/TJ,1381393.4749999999,Naphtha combustion consumption by freight transport,AR-M,SESCO,annual,kg,fd16b56a-8b48-3c12-8c3f-16e9d559a41e -2017,Mendoza,II.1.1,18.84575,TJ,CH4,0.5,kg/TJ,9.422875,Naphtha combustion consumption by freight transport,AR-M,SESCO,annual,kg,0dcb28eb-21fa-3b47-8a77-52d1e572ce22 -2017,Mendoza,II.1.1,18.84575,TJ,N2O,2.0,kg/TJ,37.6915,Naphtha combustion consumption by freight transport,AR-M,SESCO,annual,kg,527a0609-33ef-33da-ad03-04b1a78a5b36 -2017,Misiones,II.1.1,4.214595,TJ,CO2,73300.0,kg/TJ,308929.8135,Naphtha combustion consumption by freight transport,AR-N,SESCO,annual,kg,98625b81-11e8-30e4-a0f5-523ea10e4646 -2017,Misiones,II.1.1,4.214595,TJ,CH4,0.5,kg/TJ,2.1072975,Naphtha combustion consumption by freight transport,AR-N,SESCO,annual,kg,1b37484a-faaa-3d8b-a6dc-8d2ca2610784 -2017,Misiones,II.1.1,4.214595,TJ,N2O,2.0,kg/TJ,8.42919,Naphtha combustion consumption by freight transport,AR-N,SESCO,annual,kg,1f87b62e-fd70-39f7-a106-d8e4bf57fe98 -2017,Neuquén,II.1.1,9.491405,TJ,CO2,73300.0,kg/TJ,695719.9865,Naphtha combustion consumption by freight transport,AR-Q,SESCO,annual,kg,d6265038-7975-3e62-881a-2dbfcde1b2a1 -2017,Neuquén,II.1.1,9.491405,TJ,CH4,0.5,kg/TJ,4.7457025,Naphtha combustion consumption by freight transport,AR-Q,SESCO,annual,kg,3598a921-4ef9-3160-941d-69b4045a73d4 -2017,Neuquén,II.1.1,9.491405,TJ,N2O,2.0,kg/TJ,18.98281,Naphtha combustion consumption by freight transport,AR-Q,SESCO,annual,kg,b7a8082a-7aa2-3774-9968-87cee850a733 -2017,Rio Negro,II.1.1,37.14326,TJ,CO2,73300.0,kg/TJ,2722600.9579999996,Naphtha combustion consumption by freight transport,AR-R,SESCO,annual,kg,f185519a-4d67-378f-ba0c-b880de44f4e7 -2017,Rio Negro,II.1.1,37.14326,TJ,CH4,0.5,kg/TJ,18.57163,Naphtha combustion consumption by freight transport,AR-R,SESCO,annual,kg,190edd74-082c-3189-8112-6952ce5ff05a -2017,Rio Negro,II.1.1,37.14326,TJ,N2O,2.0,kg/TJ,74.28652,Naphtha combustion consumption by freight transport,AR-R,SESCO,annual,kg,d95d1ab7-257a-3899-9449-830cd2b81c34 -2017,Salta,II.1.1,5.139749999999999,TJ,CO2,73300.0,kg/TJ,376743.67499999993,Naphtha combustion consumption by freight transport,AR-A,SESCO,annual,kg,662af6a3-0464-347a-bcc5-7691151e56a5 -2017,Salta,II.1.1,5.139749999999999,TJ,CH4,0.5,kg/TJ,2.5698749999999997,Naphtha combustion consumption by freight transport,AR-A,SESCO,annual,kg,bf06e450-233a-3ce1-a176-9094792b5ced -2017,Salta,II.1.1,5.139749999999999,TJ,N2O,2.0,kg/TJ,10.279499999999999,Naphtha combustion consumption by freight transport,AR-A,SESCO,annual,kg,bec29a57-e710-3807-99b0-71839dc053dd -2017,San Juan,II.1.1,0.89089,TJ,CO2,73300.0,kg/TJ,65302.236999999994,Naphtha combustion consumption by freight transport,AR-J,SESCO,annual,kg,b0740e6a-595d-3563-9e05-8ce89f0a7afd -2017,San Juan,II.1.1,0.89089,TJ,CH4,0.5,kg/TJ,0.445445,Naphtha combustion consumption by freight transport,AR-J,SESCO,annual,kg,e10c7835-724f-331d-8dc8-36f506bd015a -2017,San Juan,II.1.1,0.89089,TJ,N2O,2.0,kg/TJ,1.78178,Naphtha combustion consumption by freight transport,AR-J,SESCO,annual,kg,d721dc2c-7ec2-37d5-ba4d-77011871de50 -2017,San Luis,II.1.1,3.049585,TJ,CO2,73300.0,kg/TJ,223534.5805,Naphtha combustion consumption by freight transport,AR-D,SESCO,annual,kg,da3a366c-fb4a-363a-84cb-fbddbee2b291 -2017,San Luis,II.1.1,3.049585,TJ,CH4,0.5,kg/TJ,1.5247925,Naphtha combustion consumption by freight transport,AR-D,SESCO,annual,kg,87eeb827-418a-3fbf-94fe-8584929ce806 -2017,San Luis,II.1.1,3.049585,TJ,N2O,2.0,kg/TJ,6.09917,Naphtha combustion consumption by freight transport,AR-D,SESCO,annual,kg,31e8b0a9-dd91-3ac0-ade2-5714ccc97913 -2017,Santa Cruz,II.1.1,0.9594199999999999,TJ,CO2,73300.0,kg/TJ,70325.48599999999,Naphtha combustion consumption by freight transport,AR-Z,SESCO,annual,kg,cb01833d-da60-3161-b145-1838bf8b5eec -2017,Santa Cruz,II.1.1,0.9594199999999999,TJ,CH4,0.5,kg/TJ,0.47970999999999997,Naphtha combustion consumption by freight transport,AR-Z,SESCO,annual,kg,8af59631-ef40-305d-9455-dce141dd685a -2017,Santa Cruz,II.1.1,0.9594199999999999,TJ,N2O,2.0,kg/TJ,1.9188399999999999,Naphtha combustion consumption by freight transport,AR-Z,SESCO,annual,kg,41340b4b-d530-3f7f-bc90-ad60018eb4bd -2017,Santa Fe,II.1.1,50.472345,TJ,CO2,73300.0,kg/TJ,3699622.8885,Naphtha combustion consumption by freight transport,AR-S,SESCO,annual,kg,48ceada3-f06e-3ef1-a0e1-ac43e0aebbb7 -2017,Santa Fe,II.1.1,50.472345,TJ,CH4,0.5,kg/TJ,25.2361725,Naphtha combustion consumption by freight transport,AR-S,SESCO,annual,kg,466f74a0-fde9-3c9c-826b-0e5acdf1fa31 -2017,Santa Fe,II.1.1,50.472345,TJ,N2O,2.0,kg/TJ,100.94469,Naphtha combustion consumption by freight transport,AR-S,SESCO,annual,kg,22a10c64-56b1-325d-ae48-0659a89b92ea -2017,Santiago del Estero,II.1.1,0.513975,TJ,CO2,73300.0,kg/TJ,37674.3675,Naphtha combustion consumption by freight transport,AR-G,SESCO,annual,kg,e406a156-d89b-37aa-87ea-0cd1f1182b98 -2017,Santiago del Estero,II.1.1,0.513975,TJ,CH4,0.5,kg/TJ,0.2569875,Naphtha combustion consumption by freight transport,AR-G,SESCO,annual,kg,76b6e23a-26c6-3949-af1f-8b9ab1151e60 -2017,Santiago del Estero,II.1.1,0.513975,TJ,N2O,2.0,kg/TJ,1.02795,Naphtha combustion consumption by freight transport,AR-G,SESCO,annual,kg,81db4dab-7f92-3ed1-8651-eafff95e5682 -2017,Tierra del Fuego,II.1.1,0.788095,TJ,CO2,73300.0,kg/TJ,57767.3635,Naphtha combustion consumption by freight transport,AR-V,SESCO,annual,kg,e868f32e-35d2-361e-803a-81db2668ca95 -2017,Tierra del Fuego,II.1.1,0.788095,TJ,CH4,0.5,kg/TJ,0.3940475,Naphtha combustion consumption by freight transport,AR-V,SESCO,annual,kg,181a0543-fb98-3137-8a8a-9069636a4589 -2017,Tierra del Fuego,II.1.1,0.788095,TJ,N2O,2.0,kg/TJ,1.57619,Naphtha combustion consumption by freight transport,AR-V,SESCO,annual,kg,7e74327c-e305-3403-a331-ba1ec1773b3b -2017,Tucuman,II.1.1,3.9404749999999997,TJ,CO2,73300.0,kg/TJ,288836.8175,Naphtha combustion consumption by freight transport,AR-T,SESCO,annual,kg,c4e25d08-5510-3640-80c3-4c978b3a3ef3 -2017,Tucuman,II.1.1,3.9404749999999997,TJ,CH4,0.5,kg/TJ,1.9702374999999999,Naphtha combustion consumption by freight transport,AR-T,SESCO,annual,kg,3c0a408b-af66-3548-a2b8-88e330e3d7e5 -2017,Tucuman,II.1.1,3.9404749999999997,TJ,N2O,2.0,kg/TJ,7.8809499999999995,Naphtha combustion consumption by freight transport,AR-T,SESCO,annual,kg,13f3cb42-c3fe-3288-ae89-efcda5d7f798 -2017,Buenos Aires,II.1.1,10411.409399999999,TJ,CO2,74100.0,kg/TJ,771485436.5399998,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,f239a79e-f66c-39ed-b107-8702fe432449 -2017,Buenos Aires,II.1.1,10411.409399999999,TJ,CH4,3.9,kg/TJ,40604.49666,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,70e1f225-5f35-3dbe-be3d-f25d1119fc0b -2017,Buenos Aires,II.1.1,10411.409399999999,TJ,N2O,3.9,kg/TJ,40604.49666,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,70e1f225-5f35-3dbe-be3d-f25d1119fc0b -2017,Capital Federal,II.1.1,2453.73996,TJ,CO2,74100.0,kg/TJ,181822131.03599998,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,468ff9ce-09c7-3dad-9b9c-bbaa149a25ef -2017,Capital Federal,II.1.1,2453.73996,TJ,CH4,3.9,kg/TJ,9569.585844,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,7f8bbef2-9ded-3fa4-8302-f586aa79375c -2017,Capital Federal,II.1.1,2453.73996,TJ,N2O,3.9,kg/TJ,9569.585844,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,7f8bbef2-9ded-3fa4-8302-f586aa79375c -2017,Catamarca,II.1.1,202.12752,TJ,CO2,74100.0,kg/TJ,14977649.232,Gas Oil combustion consumption by public passenger transport,AR-K,SESCO,annual,kg,0aafe510-cece-3246-b7da-a8537b663068 -2017,Catamarca,II.1.1,202.12752,TJ,CH4,3.9,kg/TJ,788.297328,Gas Oil combustion consumption by public passenger transport,AR-K,SESCO,annual,kg,f5c007be-d0fa-3524-8421-b3d8d2f4c9af -2017,Catamarca,II.1.1,202.12752,TJ,N2O,3.9,kg/TJ,788.297328,Gas Oil combustion consumption by public passenger transport,AR-K,SESCO,annual,kg,f5c007be-d0fa-3524-8421-b3d8d2f4c9af -2017,Chaco,II.1.1,573.36888,TJ,CO2,74100.0,kg/TJ,42486634.008,Gas Oil combustion consumption by public passenger transport,AR-H,SESCO,annual,kg,c360641a-1026-3a79-a72b-78cfc64597e5 -2017,Chaco,II.1.1,573.36888,TJ,CH4,3.9,kg/TJ,2236.1386319999997,Gas Oil combustion consumption by public passenger transport,AR-H,SESCO,annual,kg,68e26562-378b-3b9d-a685-5f9b5de990f5 -2017,Chaco,II.1.1,573.36888,TJ,N2O,3.9,kg/TJ,2236.1386319999997,Gas Oil combustion consumption by public passenger transport,AR-H,SESCO,annual,kg,68e26562-378b-3b9d-a685-5f9b5de990f5 -2017,Chubut,II.1.1,108.97403999999999,TJ,CO2,74100.0,kg/TJ,8074976.363999999,Gas Oil combustion consumption by public passenger transport,AR-U,SESCO,annual,kg,584d6bbe-c221-338c-b1fe-8e69b8ce0182 -2017,Chubut,II.1.1,108.97403999999999,TJ,CH4,3.9,kg/TJ,424.99875599999996,Gas Oil combustion consumption by public passenger transport,AR-U,SESCO,annual,kg,7268bba7-99a1-396f-83c4-845b7a578afa -2017,Chubut,II.1.1,108.97403999999999,TJ,N2O,3.9,kg/TJ,424.99875599999996,Gas Oil combustion consumption by public passenger transport,AR-U,SESCO,annual,kg,7268bba7-99a1-396f-83c4-845b7a578afa -2017,Corrientes,II.1.1,526.23228,TJ,CO2,74100.0,kg/TJ,38993811.948,Gas Oil combustion consumption by public passenger transport,AR-W,SESCO,annual,kg,776517f2-a964-3bd7-a430-89f1c8747f09 -2017,Corrientes,II.1.1,526.23228,TJ,CH4,3.9,kg/TJ,2052.305892,Gas Oil combustion consumption by public passenger transport,AR-W,SESCO,annual,kg,47878543-c6e4-372a-9c08-69de4ff12dd5 -2017,Corrientes,II.1.1,526.23228,TJ,N2O,3.9,kg/TJ,2052.305892,Gas Oil combustion consumption by public passenger transport,AR-W,SESCO,annual,kg,47878543-c6e4-372a-9c08-69de4ff12dd5 -2017,Córdoba,II.1.1,1841.0364,TJ,CO2,74100.0,kg/TJ,136420797.24,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,0449fd37-7993-3313-95a8-5ab0a2daad78 -2017,Córdoba,II.1.1,1841.0364,TJ,CH4,3.9,kg/TJ,7180.04196,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,1f8181a3-e0f6-3964-924f-183d77dbc9a4 -2017,Córdoba,II.1.1,1841.0364,TJ,N2O,3.9,kg/TJ,7180.04196,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,1f8181a3-e0f6-3964-924f-183d77dbc9a4 -2017,Entre Rios,II.1.1,497.04731999999996,TJ,CO2,74100.0,kg/TJ,36831206.412,Gas Oil combustion consumption by public passenger transport,AR-E,SESCO,annual,kg,2b3ac049-55c2-3cb9-b781-e559aeb4d8ed -2017,Entre Rios,II.1.1,497.04731999999996,TJ,CH4,3.9,kg/TJ,1938.4845479999997,Gas Oil combustion consumption by public passenger transport,AR-E,SESCO,annual,kg,00c132ed-21e0-360d-acad-8b34cdd8d9b3 -2017,Entre Rios,II.1.1,497.04731999999996,TJ,N2O,3.9,kg/TJ,1938.4845479999997,Gas Oil combustion consumption by public passenger transport,AR-E,SESCO,annual,kg,00c132ed-21e0-360d-acad-8b34cdd8d9b3 -2017,Formosa,II.1.1,78.63324,TJ,CO2,74100.0,kg/TJ,5826723.084,Gas Oil combustion consumption by public passenger transport,AR-P,SESCO,annual,kg,4cea0034-1ded-3137-bef2-75fdca1ec94f -2017,Formosa,II.1.1,78.63324,TJ,CH4,3.9,kg/TJ,306.66963599999997,Gas Oil combustion consumption by public passenger transport,AR-P,SESCO,annual,kg,83bddc68-e38c-3fb3-b7db-4ef01cbea7e1 -2017,Formosa,II.1.1,78.63324,TJ,N2O,3.9,kg/TJ,306.66963599999997,Gas Oil combustion consumption by public passenger transport,AR-P,SESCO,annual,kg,83bddc68-e38c-3fb3-b7db-4ef01cbea7e1 -2017,Jujuy,II.1.1,663.84948,TJ,CO2,74100.0,kg/TJ,49191246.467999995,Gas Oil combustion consumption by public passenger transport,AR-Y,SESCO,annual,kg,8744b7c5-8758-33a1-b350-e73aa26a59b3 -2017,Jujuy,II.1.1,663.84948,TJ,CH4,3.9,kg/TJ,2589.012972,Gas Oil combustion consumption by public passenger transport,AR-Y,SESCO,annual,kg,310aed91-eb36-3836-af05-596927ddb02f -2017,Jujuy,II.1.1,663.84948,TJ,N2O,3.9,kg/TJ,2589.012972,Gas Oil combustion consumption by public passenger transport,AR-Y,SESCO,annual,kg,310aed91-eb36-3836-af05-596927ddb02f -2017,La Pampa,II.1.1,53.493719999999996,TJ,CO2,74100.0,kg/TJ,3963884.652,Gas Oil combustion consumption by public passenger transport,AR-L,SESCO,annual,kg,5c170c94-e1e1-3d00-a7da-ad2673ac759d -2017,La Pampa,II.1.1,53.493719999999996,TJ,CH4,3.9,kg/TJ,208.62550799999997,Gas Oil combustion consumption by public passenger transport,AR-L,SESCO,annual,kg,97de3cce-6f63-3761-a880-a2f70c38980f -2017,La Pampa,II.1.1,53.493719999999996,TJ,N2O,3.9,kg/TJ,208.62550799999997,Gas Oil combustion consumption by public passenger transport,AR-L,SESCO,annual,kg,97de3cce-6f63-3761-a880-a2f70c38980f -2017,La Rioja,II.1.1,129.16512,TJ,CO2,74100.0,kg/TJ,9571135.392,Gas Oil combustion consumption by public passenger transport,AR-F,SESCO,annual,kg,95211428-90c7-320a-85e5-29ebefb6030f -2017,La Rioja,II.1.1,129.16512,TJ,CH4,3.9,kg/TJ,503.743968,Gas Oil combustion consumption by public passenger transport,AR-F,SESCO,annual,kg,caa53e12-daa7-3eb8-8db9-3b38c8eaf87e -2017,La Rioja,II.1.1,129.16512,TJ,N2O,3.9,kg/TJ,503.743968,Gas Oil combustion consumption by public passenger transport,AR-F,SESCO,annual,kg,caa53e12-daa7-3eb8-8db9-3b38c8eaf87e -2017,Mendoza,II.1.1,1776.45384,TJ,CO2,74100.0,kg/TJ,131635229.544,Gas Oil combustion consumption by public passenger transport,AR-M,SESCO,annual,kg,ba87fc96-07ad-32fc-811c-faca9010b744 -2017,Mendoza,II.1.1,1776.45384,TJ,CH4,3.9,kg/TJ,6928.169975999999,Gas Oil combustion consumption by public passenger transport,AR-M,SESCO,annual,kg,cb68f288-5a3d-3c2c-85a5-023168f15618 -2017,Mendoza,II.1.1,1776.45384,TJ,N2O,3.9,kg/TJ,6928.169975999999,Gas Oil combustion consumption by public passenger transport,AR-M,SESCO,annual,kg,cb68f288-5a3d-3c2c-85a5-023168f15618 -2017,Misiones,II.1.1,1057.91868,TJ,CO2,74100.0,kg/TJ,78391774.188,Gas Oil combustion consumption by public passenger transport,AR-N,SESCO,annual,kg,be04f20e-0a53-3b1f-81c0-43ea3501cc84 -2017,Misiones,II.1.1,1057.91868,TJ,CH4,3.9,kg/TJ,4125.882852,Gas Oil combustion consumption by public passenger transport,AR-N,SESCO,annual,kg,ef06943f-79d6-305b-bd5c-097b3c767664 -2017,Misiones,II.1.1,1057.91868,TJ,N2O,3.9,kg/TJ,4125.882852,Gas Oil combustion consumption by public passenger transport,AR-N,SESCO,annual,kg,ef06943f-79d6-305b-bd5c-097b3c767664 -2017,Neuquén,II.1.1,275.2344,TJ,CO2,74100.0,kg/TJ,20394869.04,Gas Oil combustion consumption by public passenger transport,AR-Q,SESCO,annual,kg,41f2c437-9cc6-3d2e-9662-69366e3acfb0 -2017,Neuquén,II.1.1,275.2344,TJ,CH4,3.9,kg/TJ,1073.41416,Gas Oil combustion consumption by public passenger transport,AR-Q,SESCO,annual,kg,443b8c03-7ed9-33a5-950a-77594148c7eb -2017,Neuquén,II.1.1,275.2344,TJ,N2O,3.9,kg/TJ,1073.41416,Gas Oil combustion consumption by public passenger transport,AR-Q,SESCO,annual,kg,443b8c03-7ed9-33a5-950a-77594148c7eb -2017,Rio Negro,II.1.1,284.87844,TJ,CO2,74100.0,kg/TJ,21109492.404,Gas Oil combustion consumption by public passenger transport,AR-R,SESCO,annual,kg,3cf32780-5fe0-32c3-b9c4-ccaf0c3098f9 -2017,Rio Negro,II.1.1,284.87844,TJ,CH4,3.9,kg/TJ,1111.025916,Gas Oil combustion consumption by public passenger transport,AR-R,SESCO,annual,kg,c0666909-4cc9-3817-921c-b1486de8a643 -2017,Rio Negro,II.1.1,284.87844,TJ,N2O,3.9,kg/TJ,1111.025916,Gas Oil combustion consumption by public passenger transport,AR-R,SESCO,annual,kg,c0666909-4cc9-3817-921c-b1486de8a643 -2017,Salta,II.1.1,758.55612,TJ,CO2,74100.0,kg/TJ,56209008.492,Gas Oil combustion consumption by public passenger transport,AR-A,SESCO,annual,kg,d83ae1cf-3a21-34f4-8ad6-62f670dc7b83 -2017,Salta,II.1.1,758.55612,TJ,CH4,3.9,kg/TJ,2958.368868,Gas Oil combustion consumption by public passenger transport,AR-A,SESCO,annual,kg,c2a4bacb-00df-3808-a571-df6dcb382720 -2017,Salta,II.1.1,758.55612,TJ,N2O,3.9,kg/TJ,2958.368868,Gas Oil combustion consumption by public passenger transport,AR-A,SESCO,annual,kg,c2a4bacb-00df-3808-a571-df6dcb382720 -2017,San Juan,II.1.1,462.73332,TJ,CO2,74100.0,kg/TJ,34288539.012,Gas Oil combustion consumption by public passenger transport,AR-J,SESCO,annual,kg,dbf2a340-ce04-307a-ba93-7c94207a1952 -2017,San Juan,II.1.1,462.73332,TJ,CH4,3.9,kg/TJ,1804.659948,Gas Oil combustion consumption by public passenger transport,AR-J,SESCO,annual,kg,6f621264-5b10-34db-a5ba-bea7b9348279 -2017,San Juan,II.1.1,462.73332,TJ,N2O,3.9,kg/TJ,1804.659948,Gas Oil combustion consumption by public passenger transport,AR-J,SESCO,annual,kg,6f621264-5b10-34db-a5ba-bea7b9348279 -2017,San Luis,II.1.1,150.4398,TJ,CO2,74100.0,kg/TJ,11147589.18,Gas Oil combustion consumption by public passenger transport,AR-D,SESCO,annual,kg,ffad86ea-0dde-3805-b677-378a304e5b89 -2017,San Luis,II.1.1,150.4398,TJ,CH4,3.9,kg/TJ,586.7152199999999,Gas Oil combustion consumption by public passenger transport,AR-D,SESCO,annual,kg,c11f557d-8179-343b-ab13-b2b4f902c54b -2017,San Luis,II.1.1,150.4398,TJ,N2O,3.9,kg/TJ,586.7152199999999,Gas Oil combustion consumption by public passenger transport,AR-D,SESCO,annual,kg,c11f557d-8179-343b-ab13-b2b4f902c54b -2017,Santa Cruz,II.1.1,32.21904,TJ,CO2,74100.0,kg/TJ,2387430.864,Gas Oil combustion consumption by public passenger transport,AR-Z,SESCO,annual,kg,165d64b5-8826-310a-8b5c-91a481d740cc -2017,Santa Cruz,II.1.1,32.21904,TJ,CH4,3.9,kg/TJ,125.65425599999999,Gas Oil combustion consumption by public passenger transport,AR-Z,SESCO,annual,kg,21e5b639-b9c0-370d-a9cc-40e453083fbf -2017,Santa Cruz,II.1.1,32.21904,TJ,N2O,3.9,kg/TJ,125.65425599999999,Gas Oil combustion consumption by public passenger transport,AR-Z,SESCO,annual,kg,21e5b639-b9c0-370d-a9cc-40e453083fbf -2017,Santa Fe,II.1.1,1722.5628,TJ,CO2,74100.0,kg/TJ,127641903.47999999,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,af3ab77e-39c5-3fee-9bd1-a27decefd081 -2017,Santa Fe,II.1.1,1722.5628,TJ,CH4,3.9,kg/TJ,6717.994919999999,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,6c876be5-7829-36ac-b48b-a59c93126d12 -2017,Santa Fe,II.1.1,1722.5628,TJ,N2O,3.9,kg/TJ,6717.994919999999,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,6c876be5-7829-36ac-b48b-a59c93126d12 -2017,Santiago del Estero,II.1.1,254.17643999999999,TJ,CO2,74100.0,kg/TJ,18834474.204,Gas Oil combustion consumption by public passenger transport,AR-G,SESCO,annual,kg,5f2d4423-0c82-364d-85c0-9833e049455d -2017,Santiago del Estero,II.1.1,254.17643999999999,TJ,CH4,3.9,kg/TJ,991.288116,Gas Oil combustion consumption by public passenger transport,AR-G,SESCO,annual,kg,3877da5d-7e61-39e0-bdae-8234b13f8232 -2017,Santiago del Estero,II.1.1,254.17643999999999,TJ,N2O,3.9,kg/TJ,991.288116,Gas Oil combustion consumption by public passenger transport,AR-G,SESCO,annual,kg,3877da5d-7e61-39e0-bdae-8234b13f8232 -2017,Tierra del Fuego,II.1.1,13.68948,TJ,CO2,74100.0,kg/TJ,1014390.468,Gas Oil combustion consumption by public passenger transport,AR-V,SESCO,annual,kg,73822739-8759-322a-b0fd-4687b62871db -2017,Tierra del Fuego,II.1.1,13.68948,TJ,CH4,3.9,kg/TJ,53.388971999999995,Gas Oil combustion consumption by public passenger transport,AR-V,SESCO,annual,kg,67c0b515-8b05-3fbd-95ee-4627761a1300 -2017,Tierra del Fuego,II.1.1,13.68948,TJ,N2O,3.9,kg/TJ,53.388971999999995,Gas Oil combustion consumption by public passenger transport,AR-V,SESCO,annual,kg,67c0b515-8b05-3fbd-95ee-4627761a1300 -2017,Tucuman,II.1.1,1243.53936,TJ,CO2,74100.0,kg/TJ,92146266.576,Gas Oil combustion consumption by public passenger transport,AR-T,SESCO,annual,kg,35166dbd-c1e9-33c6-aff0-7fc904f4cd60 -2017,Tucuman,II.1.1,1243.53936,TJ,CH4,3.9,kg/TJ,4849.8035039999995,Gas Oil combustion consumption by public passenger transport,AR-T,SESCO,annual,kg,82f60e29-e9dd-3601-81ac-71910fe2d3a1 -2017,Tucuman,II.1.1,1243.53936,TJ,N2O,3.9,kg/TJ,4849.8035039999995,Gas Oil combustion consumption by public passenger transport,AR-T,SESCO,annual,kg,82f60e29-e9dd-3601-81ac-71910fe2d3a1 -2017,Buenos Aires,II.1.1,1060.0497599999999,TJ,CO2,74100.0,kg/TJ,78549687.21599999,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,003fbe84-a25a-35f1-a32a-02dccb63aefc -2017,Buenos Aires,II.1.1,1060.0497599999999,TJ,CH4,3.9,kg/TJ,4134.194063999999,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,f62f0fbf-6017-3542-bb8f-24a4a1dfdcc7 -2017,Buenos Aires,II.1.1,1060.0497599999999,TJ,N2O,3.9,kg/TJ,4134.194063999999,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,f62f0fbf-6017-3542-bb8f-24a4a1dfdcc7 -2017,Capital Federal,II.1.1,105.14532,TJ,CO2,74100.0,kg/TJ,7791268.212,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,e77f4bb0-a543-36a4-b061-b850e782d50d -2017,Capital Federal,II.1.1,105.14532,TJ,CH4,3.9,kg/TJ,410.06674799999996,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,f0af072d-71c6-3f30-bdd0-f0b6d755d3ab -2017,Capital Federal,II.1.1,105.14532,TJ,N2O,3.9,kg/TJ,410.06674799999996,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,f0af072d-71c6-3f30-bdd0-f0b6d755d3ab -2017,Catamarca,II.1.1,19.90212,TJ,CO2,74100.0,kg/TJ,1474747.092,Gas Oil combustion consumption by public passenger transport,AR-K,SESCO,annual,kg,2c3a0f03-f1e2-3481-9322-e80b88d34760 -2017,Catamarca,II.1.1,19.90212,TJ,CH4,3.9,kg/TJ,77.618268,Gas Oil combustion consumption by public passenger transport,AR-K,SESCO,annual,kg,943f5fc4-733d-33e6-8b8f-af2dabf081f1 -2017,Catamarca,II.1.1,19.90212,TJ,N2O,3.9,kg/TJ,77.618268,Gas Oil combustion consumption by public passenger transport,AR-K,SESCO,annual,kg,943f5fc4-733d-33e6-8b8f-af2dabf081f1 -2017,Chaco,II.1.1,12.71424,TJ,CO2,74100.0,kg/TJ,942125.184,Gas Oil combustion consumption by public passenger transport,AR-H,SESCO,annual,kg,44f2d1ff-c296-3179-a9ce-1b9d2cbe2320 -2017,Chaco,II.1.1,12.71424,TJ,CH4,3.9,kg/TJ,49.585536,Gas Oil combustion consumption by public passenger transport,AR-H,SESCO,annual,kg,9452bdb4-6971-3f16-be31-b14000fd4feb -2017,Chaco,II.1.1,12.71424,TJ,N2O,3.9,kg/TJ,49.585536,Gas Oil combustion consumption by public passenger transport,AR-H,SESCO,annual,kg,9452bdb4-6971-3f16-be31-b14000fd4feb -2017,Chubut,II.1.1,44.57208,TJ,CO2,74100.0,kg/TJ,3302791.128,Gas Oil combustion consumption by public passenger transport,AR-U,SESCO,annual,kg,ab2dce6c-35dd-33eb-b803-5f2833e0ed5c -2017,Chubut,II.1.1,44.57208,TJ,CH4,3.9,kg/TJ,173.831112,Gas Oil combustion consumption by public passenger transport,AR-U,SESCO,annual,kg,c9056c80-fcd5-396d-9064-d2ca9af0f0cc -2017,Chubut,II.1.1,44.57208,TJ,N2O,3.9,kg/TJ,173.831112,Gas Oil combustion consumption by public passenger transport,AR-U,SESCO,annual,kg,c9056c80-fcd5-396d-9064-d2ca9af0f0cc -2017,Corrientes,II.1.1,30.340799999999998,TJ,CO2,74100.0,kg/TJ,2248253.28,Gas Oil combustion consumption by public passenger transport,AR-W,SESCO,annual,kg,957bd06a-501a-3200-8ea0-c031cf2f5e13 -2017,Corrientes,II.1.1,30.340799999999998,TJ,CH4,3.9,kg/TJ,118.32911999999999,Gas Oil combustion consumption by public passenger transport,AR-W,SESCO,annual,kg,d9cac611-626e-3026-bb12-429c517e8358 -2017,Corrientes,II.1.1,30.340799999999998,TJ,N2O,3.9,kg/TJ,118.32911999999999,Gas Oil combustion consumption by public passenger transport,AR-W,SESCO,annual,kg,d9cac611-626e-3026-bb12-429c517e8358 -2017,Córdoba,II.1.1,132.23532,TJ,CO2,74100.0,kg/TJ,9798637.212,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,100b038b-7a57-3717-bdb1-3177178c48be -2017,Córdoba,II.1.1,132.23532,TJ,CH4,3.9,kg/TJ,515.717748,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,05676a1d-060a-3a84-949f-44f14ca8f4a5 -2017,Córdoba,II.1.1,132.23532,TJ,N2O,3.9,kg/TJ,515.717748,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,05676a1d-060a-3a84-949f-44f14ca8f4a5 -2017,Entre Rios,II.1.1,2.85348,TJ,CO2,74100.0,kg/TJ,211442.868,Gas Oil combustion consumption by public passenger transport,AR-E,SESCO,annual,kg,aee36da4-942f-3cd6-96f3-2007c6714a4a -2017,Entre Rios,II.1.1,2.85348,TJ,CH4,3.9,kg/TJ,11.128571999999998,Gas Oil combustion consumption by public passenger transport,AR-E,SESCO,annual,kg,0ca0c03e-5ef7-3fc2-aeac-ff5ee9a3a5fe -2017,Entre Rios,II.1.1,2.85348,TJ,N2O,3.9,kg/TJ,11.128571999999998,Gas Oil combustion consumption by public passenger transport,AR-E,SESCO,annual,kg,0ca0c03e-5ef7-3fc2-aeac-ff5ee9a3a5fe -2017,Jujuy,II.1.1,1.9866,TJ,CO2,74100.0,kg/TJ,147207.06,Gas Oil combustion consumption by public passenger transport,AR-Y,SESCO,annual,kg,a89a7425-88c5-3df4-8a9c-f16f702ed629 -2017,Jujuy,II.1.1,1.9866,TJ,CH4,3.9,kg/TJ,7.747739999999999,Gas Oil combustion consumption by public passenger transport,AR-Y,SESCO,annual,kg,ba418045-45a4-3859-acf1-847bb0f0bfbe -2017,Jujuy,II.1.1,1.9866,TJ,N2O,3.9,kg/TJ,7.747739999999999,Gas Oil combustion consumption by public passenger transport,AR-Y,SESCO,annual,kg,ba418045-45a4-3859-acf1-847bb0f0bfbe -2017,La Pampa,II.1.1,0.7223999999999999,TJ,CO2,74100.0,kg/TJ,53529.84,Gas Oil combustion consumption by public passenger transport,AR-L,SESCO,annual,kg,c2d92942-312a-3b8e-8597-934099487cf9 -2017,La Pampa,II.1.1,0.7223999999999999,TJ,CH4,3.9,kg/TJ,2.81736,Gas Oil combustion consumption by public passenger transport,AR-L,SESCO,annual,kg,5121f64c-eed1-3c43-9359-2561bc77629a -2017,La Pampa,II.1.1,0.7223999999999999,TJ,N2O,3.9,kg/TJ,2.81736,Gas Oil combustion consumption by public passenger transport,AR-L,SESCO,annual,kg,5121f64c-eed1-3c43-9359-2561bc77629a -2017,La Rioja,II.1.1,2.81736,TJ,CO2,74100.0,kg/TJ,208766.376,Gas Oil combustion consumption by public passenger transport,AR-F,SESCO,annual,kg,27fc11dc-cb1f-3dce-b146-88f21c1fce84 -2017,La Rioja,II.1.1,2.81736,TJ,CH4,3.9,kg/TJ,10.987703999999999,Gas Oil combustion consumption by public passenger transport,AR-F,SESCO,annual,kg,0b8db15d-90a0-30cd-bb6d-ca35f2539ecf -2017,La Rioja,II.1.1,2.81736,TJ,N2O,3.9,kg/TJ,10.987703999999999,Gas Oil combustion consumption by public passenger transport,AR-F,SESCO,annual,kg,0b8db15d-90a0-30cd-bb6d-ca35f2539ecf -2017,Mendoza,II.1.1,133.31892,TJ,CO2,74100.0,kg/TJ,9878931.972,Gas Oil combustion consumption by public passenger transport,AR-M,SESCO,annual,kg,7db95e28-b59b-3508-9668-1b04f72da7ea -2017,Mendoza,II.1.1,133.31892,TJ,CH4,3.9,kg/TJ,519.9437879999999,Gas Oil combustion consumption by public passenger transport,AR-M,SESCO,annual,kg,02d01cda-49dd-3c58-b6b9-c3a017cc7c5e -2017,Mendoza,II.1.1,133.31892,TJ,N2O,3.9,kg/TJ,519.9437879999999,Gas Oil combustion consumption by public passenger transport,AR-M,SESCO,annual,kg,02d01cda-49dd-3c58-b6b9-c3a017cc7c5e -2017,Misiones,II.1.1,76.0326,TJ,CO2,74100.0,kg/TJ,5634015.66,Gas Oil combustion consumption by public passenger transport,AR-N,SESCO,annual,kg,bd659b55-7234-3a1d-b542-16e18f8efba0 -2017,Misiones,II.1.1,76.0326,TJ,CH4,3.9,kg/TJ,296.52714,Gas Oil combustion consumption by public passenger transport,AR-N,SESCO,annual,kg,55a040f6-a99d-3cab-872c-e072d05a0e69 -2017,Misiones,II.1.1,76.0326,TJ,N2O,3.9,kg/TJ,296.52714,Gas Oil combustion consumption by public passenger transport,AR-N,SESCO,annual,kg,55a040f6-a99d-3cab-872c-e072d05a0e69 -2017,Neuquén,II.1.1,19.57704,TJ,CO2,74100.0,kg/TJ,1450658.664,Gas Oil combustion consumption by public passenger transport,AR-Q,SESCO,annual,kg,e08a06ff-8304-311c-b7ad-d0a28a1363da -2017,Neuquén,II.1.1,19.57704,TJ,CH4,3.9,kg/TJ,76.350456,Gas Oil combustion consumption by public passenger transport,AR-Q,SESCO,annual,kg,1f93c534-c6bf-3621-9cff-51efdfc145f1 -2017,Neuquén,II.1.1,19.57704,TJ,N2O,3.9,kg/TJ,76.350456,Gas Oil combustion consumption by public passenger transport,AR-Q,SESCO,annual,kg,1f93c534-c6bf-3621-9cff-51efdfc145f1 -2017,Rio Negro,II.1.1,105.25367999999999,TJ,CO2,74100.0,kg/TJ,7799297.687999999,Gas Oil combustion consumption by public passenger transport,AR-R,SESCO,annual,kg,f88ae116-41f8-3456-8e0a-f1a2fab4d1ca -2017,Rio Negro,II.1.1,105.25367999999999,TJ,CH4,3.9,kg/TJ,410.48935199999994,Gas Oil combustion consumption by public passenger transport,AR-R,SESCO,annual,kg,c1732d91-2ecf-3116-bfc9-a8d80599584f -2017,Rio Negro,II.1.1,105.25367999999999,TJ,N2O,3.9,kg/TJ,410.48935199999994,Gas Oil combustion consumption by public passenger transport,AR-R,SESCO,annual,kg,c1732d91-2ecf-3116-bfc9-a8d80599584f -2017,Salta,II.1.1,102.72528,TJ,CO2,74100.0,kg/TJ,7611943.248,Gas Oil combustion consumption by public passenger transport,AR-A,SESCO,annual,kg,f1481d66-7992-3772-a1ee-889b3552573c -2017,Salta,II.1.1,102.72528,TJ,CH4,3.9,kg/TJ,400.62859199999997,Gas Oil combustion consumption by public passenger transport,AR-A,SESCO,annual,kg,cdd11d9e-1407-39ec-b282-fafc0fa38b89 -2017,Salta,II.1.1,102.72528,TJ,N2O,3.9,kg/TJ,400.62859199999997,Gas Oil combustion consumption by public passenger transport,AR-A,SESCO,annual,kg,cdd11d9e-1407-39ec-b282-fafc0fa38b89 -2017,San Juan,II.1.1,99.11327999999999,TJ,CO2,74100.0,kg/TJ,7344294.0479999995,Gas Oil combustion consumption by public passenger transport,AR-J,SESCO,annual,kg,53b9d5de-211d-31e9-8ad4-b2dd1595cec5 -2017,San Juan,II.1.1,99.11327999999999,TJ,CH4,3.9,kg/TJ,386.54179199999993,Gas Oil combustion consumption by public passenger transport,AR-J,SESCO,annual,kg,0b0d9ad3-c5cf-39df-adfa-e838b778f389 -2017,San Juan,II.1.1,99.11327999999999,TJ,N2O,3.9,kg/TJ,386.54179199999993,Gas Oil combustion consumption by public passenger transport,AR-J,SESCO,annual,kg,0b0d9ad3-c5cf-39df-adfa-e838b778f389 -2017,San Luis,II.1.1,14.989799999999999,TJ,CO2,74100.0,kg/TJ,1110744.18,Gas Oil combustion consumption by public passenger transport,AR-D,SESCO,annual,kg,30445ad9-ef23-3736-8340-bca30bf9220e -2017,San Luis,II.1.1,14.989799999999999,TJ,CH4,3.9,kg/TJ,58.46021999999999,Gas Oil combustion consumption by public passenger transport,AR-D,SESCO,annual,kg,ec59e81d-511a-3e20-9572-281d693a064f -2017,San Luis,II.1.1,14.989799999999999,TJ,N2O,3.9,kg/TJ,58.46021999999999,Gas Oil combustion consumption by public passenger transport,AR-D,SESCO,annual,kg,ec59e81d-511a-3e20-9572-281d693a064f -2017,Santa Cruz,II.1.1,2.81736,TJ,CO2,74100.0,kg/TJ,208766.376,Gas Oil combustion consumption by public passenger transport,AR-Z,SESCO,annual,kg,c782d8ab-db76-3c5e-af65-b3cc7aca75c6 -2017,Santa Cruz,II.1.1,2.81736,TJ,CH4,3.9,kg/TJ,10.987703999999999,Gas Oil combustion consumption by public passenger transport,AR-Z,SESCO,annual,kg,76f29514-715e-3fa7-b6c2-a0f19bb671e8 -2017,Santa Cruz,II.1.1,2.81736,TJ,N2O,3.9,kg/TJ,10.987703999999999,Gas Oil combustion consumption by public passenger transport,AR-Z,SESCO,annual,kg,76f29514-715e-3fa7-b6c2-a0f19bb671e8 -2017,Santa Fe,II.1.1,134.87207999999998,TJ,CO2,74100.0,kg/TJ,9994021.127999999,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,6bf15405-01ce-33c4-8756-d2b1103c984e -2017,Santa Fe,II.1.1,134.87207999999998,TJ,CH4,3.9,kg/TJ,526.0011119999999,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,37f735a1-9c52-3341-b23b-d9251e8927db -2017,Santa Fe,II.1.1,134.87207999999998,TJ,N2O,3.9,kg/TJ,526.0011119999999,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,37f735a1-9c52-3341-b23b-d9251e8927db -2017,Santiago del Estero,II.1.1,11.016599999999999,TJ,CO2,74100.0,kg/TJ,816330.0599999999,Gas Oil combustion consumption by public passenger transport,AR-G,SESCO,annual,kg,fa1c4d0f-7279-3fb7-a800-729db70bafd4 -2017,Santiago del Estero,II.1.1,11.016599999999999,TJ,CH4,3.9,kg/TJ,42.96473999999999,Gas Oil combustion consumption by public passenger transport,AR-G,SESCO,annual,kg,c0fe5ff1-e95f-37af-8aaf-c5a761fbc800 -2017,Santiago del Estero,II.1.1,11.016599999999999,TJ,N2O,3.9,kg/TJ,42.96473999999999,Gas Oil combustion consumption by public passenger transport,AR-G,SESCO,annual,kg,c0fe5ff1-e95f-37af-8aaf-c5a761fbc800 -2017,Tierra del Fuego,II.1.1,2.05884,TJ,CO2,74100.0,kg/TJ,152560.044,Gas Oil combustion consumption by public passenger transport,AR-V,SESCO,annual,kg,f55df6ae-947c-382a-a15b-4f2bd5556f0c -2017,Tierra del Fuego,II.1.1,2.05884,TJ,CH4,3.9,kg/TJ,8.029475999999999,Gas Oil combustion consumption by public passenger transport,AR-V,SESCO,annual,kg,e7cc6ab8-64de-3129-94b9-db64b3d7d685 -2017,Tierra del Fuego,II.1.1,2.05884,TJ,N2O,3.9,kg/TJ,8.029475999999999,Gas Oil combustion consumption by public passenger transport,AR-V,SESCO,annual,kg,e7cc6ab8-64de-3129-94b9-db64b3d7d685 -2017,Tucuman,II.1.1,85.53215999999999,TJ,CO2,74100.0,kg/TJ,6337933.055999999,Gas Oil combustion consumption by public passenger transport,AR-T,SESCO,annual,kg,db3af41e-c48c-3658-b6d9-7a08c49af301 -2017,Tucuman,II.1.1,85.53215999999999,TJ,CH4,3.9,kg/TJ,333.57542399999994,Gas Oil combustion consumption by public passenger transport,AR-T,SESCO,annual,kg,0e0a3da4-dd8c-381a-9234-43924c8a545c -2017,Tucuman,II.1.1,85.53215999999999,TJ,N2O,3.9,kg/TJ,333.57542399999994,Gas Oil combustion consumption by public passenger transport,AR-T,SESCO,annual,kg,0e0a3da4-dd8c-381a-9234-43924c8a545c -2018,Buenos Aires,II.5.1,40.743359999999996,TJ,CO2,74100.0,kg/TJ,3019082.976,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,a9a9c4af-0fea-3e1a-b7a8-23d8887258f5 -2018,Buenos Aires,II.5.1,40.743359999999996,TJ,CH4,3.9,kg/TJ,158.89910399999997,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,cc237f63-4dbc-30a5-af70-3cfb89727f54 -2018,Buenos Aires,II.5.1,40.743359999999996,TJ,N2O,3.9,kg/TJ,158.89910399999997,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,cc237f63-4dbc-30a5-af70-3cfb89727f54 -2018,Córdoba,II.5.1,1.3364399999999999,TJ,CO2,74100.0,kg/TJ,99030.20399999998,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,0ee42921-43f5-3810-8249-59bfd8fceb55 -2018,Córdoba,II.5.1,1.3364399999999999,TJ,CH4,3.9,kg/TJ,5.212115999999999,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,97a695ab-b3e9-37bb-8885-839e77691249 -2018,Córdoba,II.5.1,1.3364399999999999,TJ,N2O,3.9,kg/TJ,5.212115999999999,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,97a695ab-b3e9-37bb-8885-839e77691249 -2018,Santa Fe,II.5.1,76.5744,TJ,CO2,74100.0,kg/TJ,5674163.04,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,c57d8751-a2f3-3e71-bc85-b0ba57223a8b -2018,Santa Fe,II.5.1,76.5744,TJ,CH4,3.9,kg/TJ,298.64016,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,4658e8f3-9c51-3285-97f2-46531d78e214 -2018,Santa Fe,II.5.1,76.5744,TJ,N2O,3.9,kg/TJ,298.64016,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,4658e8f3-9c51-3285-97f2-46531d78e214 -2018,Tucuman,II.5.1,5.2735199999999995,TJ,CO2,74100.0,kg/TJ,390767.832,Gas Oil combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,90da84b8-f111-3cb7-99e9-8257fc2c49a2 -2018,Tucuman,II.5.1,5.2735199999999995,TJ,CH4,3.9,kg/TJ,20.566727999999998,Gas Oil combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,ffdacb5d-d294-3d96-9de6-a0610076fade -2018,Tucuman,II.5.1,5.2735199999999995,TJ,N2O,3.9,kg/TJ,20.566727999999998,Gas Oil combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,ffdacb5d-d294-3d96-9de6-a0610076fade -2018,Buenos Aires,II.5.1,4.62336,TJ,CO2,74100.0,kg/TJ,342590.97599999997,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,5b2d9209-d8fc-308c-a01a-12d3c58f331a -2018,Buenos Aires,II.5.1,4.62336,TJ,CH4,3.9,kg/TJ,18.031104,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,e2761fc5-a9db-39c8-853b-4b71c0aef6cc -2018,Buenos Aires,II.5.1,4.62336,TJ,N2O,3.9,kg/TJ,18.031104,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,e2761fc5-a9db-39c8-853b-4b71c0aef6cc -2018,Córdoba,II.5.1,2.5284,TJ,CO2,74100.0,kg/TJ,187354.44,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,8f4854a8-e502-3713-b7ad-0d90d4b218ad -2018,Córdoba,II.5.1,2.5284,TJ,CH4,3.9,kg/TJ,9.860759999999999,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,9c678e78-642a-3c21-9c52-393a6eb5f96d -2018,Córdoba,II.5.1,2.5284,TJ,N2O,3.9,kg/TJ,9.860759999999999,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,9c678e78-642a-3c21-9c52-393a6eb5f96d -2018,Santa Fe,II.5.1,9.24672,TJ,CO2,74100.0,kg/TJ,685181.9519999999,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,b3ac713b-c01f-36cb-b9cb-c6c6730c1312 -2018,Santa Fe,II.5.1,9.24672,TJ,CH4,3.9,kg/TJ,36.062208,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,e0c72e40-d472-3e45-8e79-b86c8def2ec9 -2018,Santa Fe,II.5.1,9.24672,TJ,N2O,3.9,kg/TJ,36.062208,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,e0c72e40-d472-3e45-8e79-b86c8def2ec9 -2018,Tucuman,II.5.1,4.6956,TJ,CO2,74100.0,kg/TJ,347943.95999999996,Gas Oil combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,fa818f0e-1216-3fd1-ac6b-3e648fd68b6a -2018,Tucuman,II.5.1,4.6956,TJ,CH4,3.9,kg/TJ,18.312839999999998,Gas Oil combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,d531778d-008a-3723-965b-dda1839a3a32 -2018,Tucuman,II.5.1,4.6956,TJ,N2O,3.9,kg/TJ,18.312839999999998,Gas Oil combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,d531778d-008a-3723-965b-dda1839a3a32 -2018,Buenos Aires,II.5.1,13.43188,TJ,CO2,73300.0,kg/TJ,984556.804,Naphtha combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,9c84a05d-ca36-37c8-85ae-a46256a2c2aa -2018,Buenos Aires,II.5.1,13.43188,TJ,CH4,0.5,kg/TJ,6.71594,Naphtha combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,035c0d42-078a-37af-980d-da6f0b8f49ec -2018,Buenos Aires,II.5.1,13.43188,TJ,N2O,2.0,kg/TJ,26.86376,Naphtha combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,b74ebf8e-4429-393f-958e-f85eb849dfee -2018,Córdoba,II.5.1,2.021635,TJ,CO2,73300.0,kg/TJ,148185.8455,Naphtha combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,bcf0f934-bb2e-3996-b873-0dde9d66575a -2018,Córdoba,II.5.1,2.021635,TJ,CH4,0.5,kg/TJ,1.0108175,Naphtha combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,fcfcf3e4-8f62-38d5-a6b9-cde1979ea70a -2018,Córdoba,II.5.1,2.021635,TJ,N2O,2.0,kg/TJ,4.04327,Naphtha combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,ca075bf6-370e-3a77-8748-81b3df85369e -2018,Santa Fe,II.5.1,15.590575,TJ,CO2,73300.0,kg/TJ,1142789.1475,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,c6d06324-24d4-3525-8fa7-cd7bc3144e01 -2018,Santa Fe,II.5.1,15.590575,TJ,CH4,0.5,kg/TJ,7.7952875,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,b6ee311e-b2e3-300c-90fb-15b11709ab8a -2018,Santa Fe,II.5.1,15.590575,TJ,N2O,2.0,kg/TJ,31.18115,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,ad88b7dd-6c61-3bc4-b1ec-75636c804196 -2018,Tucuman,II.5.1,11.92422,TJ,CO2,73300.0,kg/TJ,874045.326,Naphtha combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,7e205a09-7ca8-3aa0-ba0a-853a6051cb86 -2018,Tucuman,II.5.1,11.92422,TJ,CH4,0.5,kg/TJ,5.96211,Naphtha combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,0c61ece5-a555-3b64-8823-7dcb7a412755 -2018,Tucuman,II.5.1,11.92422,TJ,N2O,2.0,kg/TJ,23.84844,Naphtha combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,4212a16d-2d27-3899-b791-a8aaad41d7d1 -2018,Buenos Aires,II.5.1,2.706935,TJ,CO2,73300.0,kg/TJ,198418.33550000002,Naphtha combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,bb79bdba-927e-36e2-bb75-5534c789ccfd -2018,Buenos Aires,II.5.1,2.706935,TJ,CH4,0.5,kg/TJ,1.3534675,Naphtha combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,001a39d6-cc0c-31a8-b2a8-15fb699caaf8 -2018,Buenos Aires,II.5.1,2.706935,TJ,N2O,2.0,kg/TJ,5.41387,Naphtha combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,66dac2a0-393c-3c2d-ad8c-16b0c57e86df -2018,Córdoba,II.5.1,0.9594199999999999,TJ,CO2,73300.0,kg/TJ,70325.48599999999,Naphtha combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,6b1346fa-1145-3a8b-be46-1414cf43a7e4 -2018,Córdoba,II.5.1,0.9594199999999999,TJ,CH4,0.5,kg/TJ,0.47970999999999997,Naphtha combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,39ba5259-a53a-38f0-83da-3c408447c980 -2018,Córdoba,II.5.1,0.9594199999999999,TJ,N2O,2.0,kg/TJ,1.9188399999999999,Naphtha combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,3bcdb893-046f-319a-a401-32db576b5949 -2018,Santa Fe,II.5.1,5.071219999999999,TJ,CO2,73300.0,kg/TJ,371720.426,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,78581cce-8fe6-3a14-8963-012e22f9ee4f -2018,Santa Fe,II.5.1,5.071219999999999,TJ,CH4,0.5,kg/TJ,2.5356099999999997,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,3f20900a-5aa0-3e98-862c-97a655ae01e7 -2018,Santa Fe,II.5.1,5.071219999999999,TJ,N2O,2.0,kg/TJ,10.142439999999999,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,0bd897c6-2409-355c-942b-43d225d69681 -2018,Tucuman,II.5.1,2.5356099999999997,TJ,CO2,73300.0,kg/TJ,185860.213,Naphtha combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,758ff87c-3eb7-35bb-bc05-24e91fab0d85 -2018,Tucuman,II.5.1,2.5356099999999997,TJ,CH4,0.5,kg/TJ,1.2678049999999998,Naphtha combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,e88059cc-79c2-31e1-a793-ac4e040cef6a -2018,Tucuman,II.5.1,2.5356099999999997,TJ,N2O,2.0,kg/TJ,5.071219999999999,Naphtha combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,f43da9ad-7e00-33d1-98c1-e5dc29e09321 -2018,Buenos Aires,II.2.1,49.881719999999994,TJ,CO2,74100.0,kg/TJ,3696235.4519999996,Gas Oil combustion consumption by railway transport,AR-B,SESCO,annual,kg,66265ca0-e7c6-3fe0-a34d-a4a26c5437c2 -2018,Buenos Aires,II.2.1,49.881719999999994,TJ,CH4,3.9,kg/TJ,194.53870799999999,Gas Oil combustion consumption by railway transport,AR-B,SESCO,annual,kg,f3ca3b63-da9b-3030-80f5-1534e5b854c3 -2018,Buenos Aires,II.2.1,49.881719999999994,TJ,N2O,3.9,kg/TJ,194.53870799999999,Gas Oil combustion consumption by railway transport,AR-B,SESCO,annual,kg,f3ca3b63-da9b-3030-80f5-1534e5b854c3 -2018,La Pampa,II.2.1,15.459359999999998,TJ,CO2,74100.0,kg/TJ,1145538.576,Gas Oil combustion consumption by railway transport,AR-L,SESCO,annual,kg,be634f0d-2069-3576-a178-deaf6ffc752a -2018,La Pampa,II.2.1,15.459359999999998,TJ,CH4,3.9,kg/TJ,60.29150399999999,Gas Oil combustion consumption by railway transport,AR-L,SESCO,annual,kg,caa10f40-431d-3add-afd3-c25612f45514 -2018,La Pampa,II.2.1,15.459359999999998,TJ,N2O,3.9,kg/TJ,60.29150399999999,Gas Oil combustion consumption by railway transport,AR-L,SESCO,annual,kg,caa10f40-431d-3add-afd3-c25612f45514 -2018,Santa Fe,II.2.1,43.38012,TJ,CO2,74100.0,kg/TJ,3214466.892,Gas Oil combustion consumption by railway transport,AR-S,SESCO,annual,kg,a43a0a72-6cc9-3b19-b460-cc137f8506ce -2018,Santa Fe,II.2.1,43.38012,TJ,CH4,3.9,kg/TJ,169.182468,Gas Oil combustion consumption by railway transport,AR-S,SESCO,annual,kg,35137b53-2e66-3da1-b5da-f1e47bb92f3a -2018,Santa Fe,II.2.1,43.38012,TJ,N2O,3.9,kg/TJ,169.182468,Gas Oil combustion consumption by railway transport,AR-S,SESCO,annual,kg,35137b53-2e66-3da1-b5da-f1e47bb92f3a -2018,Santiago del Estero,II.2.1,1.30032,TJ,CO2,74100.0,kg/TJ,96353.712,Gas Oil combustion consumption by railway transport,AR-G,SESCO,annual,kg,8576173b-0107-3a3a-b196-77738a7e13f7 -2018,Santiago del Estero,II.2.1,1.30032,TJ,CH4,3.9,kg/TJ,5.071248,Gas Oil combustion consumption by railway transport,AR-G,SESCO,annual,kg,68a2e866-5ab4-36e0-b1e5-43a38a2e0b01 -2018,Santiago del Estero,II.2.1,1.30032,TJ,N2O,3.9,kg/TJ,5.071248,Gas Oil combustion consumption by railway transport,AR-G,SESCO,annual,kg,68a2e866-5ab4-36e0-b1e5-43a38a2e0b01 -2018,Tucuman,II.2.1,1.30032,TJ,CO2,74100.0,kg/TJ,96353.712,Gas Oil combustion consumption by railway transport,AR-T,SESCO,annual,kg,10a3bc31-90e3-39f4-8bd9-ae771f058037 -2018,Tucuman,II.2.1,1.30032,TJ,CH4,3.9,kg/TJ,5.071248,Gas Oil combustion consumption by railway transport,AR-T,SESCO,annual,kg,94eba858-4de5-3004-b4d2-78f989756616 -2018,Tucuman,II.2.1,1.30032,TJ,N2O,3.9,kg/TJ,5.071248,Gas Oil combustion consumption by railway transport,AR-T,SESCO,annual,kg,94eba858-4de5-3004-b4d2-78f989756616 -2018,Buenos Aires,II.1.1,764.1186,TJ,CO2,74100.0,kg/TJ,56621188.26,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,a1b1e343-c9ac-3eca-ad8f-909f8126bf03 -2018,Buenos Aires,II.1.1,764.1186,TJ,CH4,3.9,kg/TJ,2980.06254,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,3d6b7169-cb32-319a-bab9-df1ebd2555e1 -2018,Buenos Aires,II.1.1,764.1186,TJ,N2O,3.9,kg/TJ,2980.06254,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,3d6b7169-cb32-319a-bab9-df1ebd2555e1 -2018,Capital Federal,II.1.1,129.41796,TJ,CO2,74100.0,kg/TJ,9589870.836,Gas Oil combustion consumption by freight transport,AR-C,SESCO,annual,kg,48088478-07cb-3213-82de-2aa9aa06ef1d -2018,Capital Federal,II.1.1,129.41796,TJ,CH4,3.9,kg/TJ,504.73004399999996,Gas Oil combustion consumption by freight transport,AR-C,SESCO,annual,kg,c04cace8-8417-3b42-a5bd-bd0d7c28ba08 -2018,Capital Federal,II.1.1,129.41796,TJ,N2O,3.9,kg/TJ,504.73004399999996,Gas Oil combustion consumption by freight transport,AR-C,SESCO,annual,kg,c04cace8-8417-3b42-a5bd-bd0d7c28ba08 -2018,Catamarca,II.1.1,7.0434,TJ,CO2,74100.0,kg/TJ,521915.94,Gas Oil combustion consumption by freight transport,AR-K,SESCO,annual,kg,58881477-82af-3bc6-aa91-f03a3e0c1f55 -2018,Catamarca,II.1.1,7.0434,TJ,CH4,3.9,kg/TJ,27.46926,Gas Oil combustion consumption by freight transport,AR-K,SESCO,annual,kg,41a791a9-93e3-3d50-87a8-224e50b931a5 -2018,Catamarca,II.1.1,7.0434,TJ,N2O,3.9,kg/TJ,27.46926,Gas Oil combustion consumption by freight transport,AR-K,SESCO,annual,kg,41a791a9-93e3-3d50-87a8-224e50b931a5 -2018,Chaco,II.1.1,7.07952,TJ,CO2,74100.0,kg/TJ,524592.4319999999,Gas Oil combustion consumption by freight transport,AR-H,SESCO,annual,kg,f3d16c6b-42ef-35c3-a11a-d42057b397ce -2018,Chaco,II.1.1,7.07952,TJ,CH4,3.9,kg/TJ,27.610127999999996,Gas Oil combustion consumption by freight transport,AR-H,SESCO,annual,kg,d15d1b78-bad9-39ef-b702-36a8512f373e -2018,Chaco,II.1.1,7.07952,TJ,N2O,3.9,kg/TJ,27.610127999999996,Gas Oil combustion consumption by freight transport,AR-H,SESCO,annual,kg,d15d1b78-bad9-39ef-b702-36a8512f373e -2018,Chubut,II.1.1,5.20128,TJ,CO2,74100.0,kg/TJ,385414.848,Gas Oil combustion consumption by freight transport,AR-U,SESCO,annual,kg,a6bdae9c-0338-3385-b009-795ad3e7c7b3 -2018,Chubut,II.1.1,5.20128,TJ,CH4,3.9,kg/TJ,20.284992,Gas Oil combustion consumption by freight transport,AR-U,SESCO,annual,kg,17b8a06e-4590-3546-b21f-0663966d8213 -2018,Chubut,II.1.1,5.20128,TJ,N2O,3.9,kg/TJ,20.284992,Gas Oil combustion consumption by freight transport,AR-U,SESCO,annual,kg,17b8a06e-4590-3546-b21f-0663966d8213 -2018,Corrientes,II.1.1,12.17244,TJ,CO2,74100.0,kg/TJ,901977.804,Gas Oil combustion consumption by freight transport,AR-W,SESCO,annual,kg,16d6b23b-4a7c-3591-adf7-9a9d4a953f16 -2018,Corrientes,II.1.1,12.17244,TJ,CH4,3.9,kg/TJ,47.472516,Gas Oil combustion consumption by freight transport,AR-W,SESCO,annual,kg,742b44cd-e3c3-3965-a4d9-92687c250313 -2018,Corrientes,II.1.1,12.17244,TJ,N2O,3.9,kg/TJ,47.472516,Gas Oil combustion consumption by freight transport,AR-W,SESCO,annual,kg,742b44cd-e3c3-3965-a4d9-92687c250313 -2018,Córdoba,II.1.1,145.20239999999998,TJ,CO2,74100.0,kg/TJ,10759497.839999998,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,42e3ad30-4e1c-3417-8ecb-fa89fcf5ffb1 -2018,Córdoba,II.1.1,145.20239999999998,TJ,CH4,3.9,kg/TJ,566.2893599999999,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,2648054b-37ee-3669-a22b-a677b9b15632 -2018,Córdoba,II.1.1,145.20239999999998,TJ,N2O,3.9,kg/TJ,566.2893599999999,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,2648054b-37ee-3669-a22b-a677b9b15632 -2018,Entre Rios,II.1.1,83.83452,TJ,CO2,74100.0,kg/TJ,6212137.932,Gas Oil combustion consumption by freight transport,AR-E,SESCO,annual,kg,9ffdbce4-5d1e-3c81-b99a-96946aea78fb -2018,Entre Rios,II.1.1,83.83452,TJ,CH4,3.9,kg/TJ,326.95462799999996,Gas Oil combustion consumption by freight transport,AR-E,SESCO,annual,kg,0ad76807-bdf8-3ca5-b361-661691cf3707 -2018,Entre Rios,II.1.1,83.83452,TJ,N2O,3.9,kg/TJ,326.95462799999996,Gas Oil combustion consumption by freight transport,AR-E,SESCO,annual,kg,0ad76807-bdf8-3ca5-b361-661691cf3707 -2018,Formosa,II.1.1,1.6254,TJ,CO2,74100.0,kg/TJ,120442.14,Gas Oil combustion consumption by freight transport,AR-P,SESCO,annual,kg,229ea2ac-e6fb-3a34-a824-5dcb870118f8 -2018,Formosa,II.1.1,1.6254,TJ,CH4,3.9,kg/TJ,6.33906,Gas Oil combustion consumption by freight transport,AR-P,SESCO,annual,kg,c9dfe182-f1c1-3250-b6cf-dbc0568adac4 -2018,Formosa,II.1.1,1.6254,TJ,N2O,3.9,kg/TJ,6.33906,Gas Oil combustion consumption by freight transport,AR-P,SESCO,annual,kg,c9dfe182-f1c1-3250-b6cf-dbc0568adac4 -2018,Jujuy,II.1.1,1.58928,TJ,CO2,74100.0,kg/TJ,117765.648,Gas Oil combustion consumption by freight transport,AR-Y,SESCO,annual,kg,8bbe05e4-01ff-3622-91b0-f374a0892866 -2018,Jujuy,II.1.1,1.58928,TJ,CH4,3.9,kg/TJ,6.198192,Gas Oil combustion consumption by freight transport,AR-Y,SESCO,annual,kg,bda43028-c56c-3c33-ba2b-5161dc6cf374 -2018,Jujuy,II.1.1,1.58928,TJ,N2O,3.9,kg/TJ,6.198192,Gas Oil combustion consumption by freight transport,AR-Y,SESCO,annual,kg,bda43028-c56c-3c33-ba2b-5161dc6cf374 -2018,La Pampa,II.1.1,3.8648399999999996,TJ,CO2,74100.0,kg/TJ,286384.644,Gas Oil combustion consumption by freight transport,AR-L,SESCO,annual,kg,ba256d8b-a3d6-3f7f-8be0-9847f283d025 -2018,La Pampa,II.1.1,3.8648399999999996,TJ,CH4,3.9,kg/TJ,15.072875999999997,Gas Oil combustion consumption by freight transport,AR-L,SESCO,annual,kg,321c129b-c0fc-3c45-941d-8a440e71bec6 -2018,La Pampa,II.1.1,3.8648399999999996,TJ,N2O,3.9,kg/TJ,15.072875999999997,Gas Oil combustion consumption by freight transport,AR-L,SESCO,annual,kg,321c129b-c0fc-3c45-941d-8a440e71bec6 -2018,La Rioja,II.1.1,1.5531599999999999,TJ,CO2,74100.0,kg/TJ,115089.15599999999,Gas Oil combustion consumption by freight transport,AR-F,SESCO,annual,kg,c6b7eb5d-0966-337f-a456-944f6e7dbbcd -2018,La Rioja,II.1.1,1.5531599999999999,TJ,CH4,3.9,kg/TJ,6.0573239999999995,Gas Oil combustion consumption by freight transport,AR-F,SESCO,annual,kg,95efcec2-a892-3636-813f-edc556a136ff -2018,La Rioja,II.1.1,1.5531599999999999,TJ,N2O,3.9,kg/TJ,6.0573239999999995,Gas Oil combustion consumption by freight transport,AR-F,SESCO,annual,kg,95efcec2-a892-3636-813f-edc556a136ff -2018,Mendoza,II.1.1,14.05068,TJ,CO2,74100.0,kg/TJ,1041155.388,Gas Oil combustion consumption by freight transport,AR-M,SESCO,annual,kg,620ffbc6-67c2-38d7-9d16-793178bd88e9 -2018,Mendoza,II.1.1,14.05068,TJ,CH4,3.9,kg/TJ,54.797652,Gas Oil combustion consumption by freight transport,AR-M,SESCO,annual,kg,faa62325-a6a1-3dfe-b079-bb14b23594d2 -2018,Mendoza,II.1.1,14.05068,TJ,N2O,3.9,kg/TJ,54.797652,Gas Oil combustion consumption by freight transport,AR-M,SESCO,annual,kg,faa62325-a6a1-3dfe-b079-bb14b23594d2 -2018,Misiones,II.1.1,18.71016,TJ,CO2,74100.0,kg/TJ,1386422.856,Gas Oil combustion consumption by freight transport,AR-N,SESCO,annual,kg,658837f7-48d2-33ec-886a-b0dcb5eae512 -2018,Misiones,II.1.1,18.71016,TJ,CH4,3.9,kg/TJ,72.969624,Gas Oil combustion consumption by freight transport,AR-N,SESCO,annual,kg,cfd9735f-502d-3977-b589-56f0c7fb85eb -2018,Misiones,II.1.1,18.71016,TJ,N2O,3.9,kg/TJ,72.969624,Gas Oil combustion consumption by freight transport,AR-N,SESCO,annual,kg,cfd9735f-502d-3977-b589-56f0c7fb85eb -2018,Neuquén,II.1.1,0.18059999999999998,TJ,CO2,74100.0,kg/TJ,13382.46,Gas Oil combustion consumption by freight transport,AR-Q,SESCO,annual,kg,e30631ac-6337-3a36-99d2-d9263d87d364 -2018,Neuquén,II.1.1,0.18059999999999998,TJ,CH4,3.9,kg/TJ,0.70434,Gas Oil combustion consumption by freight transport,AR-Q,SESCO,annual,kg,f824b395-8ea3-337f-a5fe-790ab36c3acf -2018,Neuquén,II.1.1,0.18059999999999998,TJ,N2O,3.9,kg/TJ,0.70434,Gas Oil combustion consumption by freight transport,AR-Q,SESCO,annual,kg,f824b395-8ea3-337f-a5fe-790ab36c3acf -2018,Rio Negro,II.1.1,28.42644,TJ,CO2,74100.0,kg/TJ,2106399.204,Gas Oil combustion consumption by freight transport,AR-R,SESCO,annual,kg,6259ebb4-3763-351d-b42d-4fbef6b4bc11 -2018,Rio Negro,II.1.1,28.42644,TJ,CH4,3.9,kg/TJ,110.86311599999999,Gas Oil combustion consumption by freight transport,AR-R,SESCO,annual,kg,2802ce3f-0c3a-3ca7-89c5-16dc220ae8d6 -2018,Rio Negro,II.1.1,28.42644,TJ,N2O,3.9,kg/TJ,110.86311599999999,Gas Oil combustion consumption by freight transport,AR-R,SESCO,annual,kg,2802ce3f-0c3a-3ca7-89c5-16dc220ae8d6 -2018,Salta,II.1.1,11.34168,TJ,CO2,74100.0,kg/TJ,840418.488,Gas Oil combustion consumption by freight transport,AR-A,SESCO,annual,kg,9dd3dc4b-84d9-37fb-9240-89de74d5cbee -2018,Salta,II.1.1,11.34168,TJ,CH4,3.9,kg/TJ,44.232552,Gas Oil combustion consumption by freight transport,AR-A,SESCO,annual,kg,3fab6c58-2f88-3be7-a47c-789d7fe2bcbc -2018,Salta,II.1.1,11.34168,TJ,N2O,3.9,kg/TJ,44.232552,Gas Oil combustion consumption by freight transport,AR-A,SESCO,annual,kg,3fab6c58-2f88-3be7-a47c-789d7fe2bcbc -2018,San Juan,II.1.1,2.31168,TJ,CO2,74100.0,kg/TJ,171295.48799999998,Gas Oil combustion consumption by freight transport,AR-J,SESCO,annual,kg,ad6917f5-9f90-3146-b019-43ae7b59613f -2018,San Juan,II.1.1,2.31168,TJ,CH4,3.9,kg/TJ,9.015552,Gas Oil combustion consumption by freight transport,AR-J,SESCO,annual,kg,a1034353-5c1b-35a7-a446-99d91434a8d7 -2018,San Juan,II.1.1,2.31168,TJ,N2O,3.9,kg/TJ,9.015552,Gas Oil combustion consumption by freight transport,AR-J,SESCO,annual,kg,a1034353-5c1b-35a7-a446-99d91434a8d7 -2018,San Luis,II.1.1,15.24264,TJ,CO2,74100.0,kg/TJ,1129479.624,Gas Oil combustion consumption by freight transport,AR-D,SESCO,annual,kg,688e90e9-874e-360b-a08b-102a093ed518 -2018,San Luis,II.1.1,15.24264,TJ,CH4,3.9,kg/TJ,59.446296,Gas Oil combustion consumption by freight transport,AR-D,SESCO,annual,kg,b74cd50f-5f9f-3f67-afae-8e7845777291 -2018,San Luis,II.1.1,15.24264,TJ,N2O,3.9,kg/TJ,59.446296,Gas Oil combustion consumption by freight transport,AR-D,SESCO,annual,kg,b74cd50f-5f9f-3f67-afae-8e7845777291 -2018,Santa Fe,II.1.1,187.49892,TJ,CO2,74100.0,kg/TJ,13893669.972,Gas Oil combustion consumption by freight transport,AR-S,SESCO,annual,kg,5f970834-9755-38cf-b0f4-64bcd89f5af5 -2018,Santa Fe,II.1.1,187.49892,TJ,CH4,3.9,kg/TJ,731.245788,Gas Oil combustion consumption by freight transport,AR-S,SESCO,annual,kg,9d2884db-be7f-38e8-a946-4c1893403547 -2018,Santa Fe,II.1.1,187.49892,TJ,N2O,3.9,kg/TJ,731.245788,Gas Oil combustion consumption by freight transport,AR-S,SESCO,annual,kg,9d2884db-be7f-38e8-a946-4c1893403547 -2018,Santiago del Estero,II.1.1,12.31692,TJ,CO2,74100.0,kg/TJ,912683.772,Gas Oil combustion consumption by freight transport,AR-G,SESCO,annual,kg,bbe42665-82e3-3ea6-9a12-3b3138399940 -2018,Santiago del Estero,II.1.1,12.31692,TJ,CH4,3.9,kg/TJ,48.035987999999996,Gas Oil combustion consumption by freight transport,AR-G,SESCO,annual,kg,217057de-b12a-3530-8e35-7945c2cb1c75 -2018,Santiago del Estero,II.1.1,12.31692,TJ,N2O,3.9,kg/TJ,48.035987999999996,Gas Oil combustion consumption by freight transport,AR-G,SESCO,annual,kg,217057de-b12a-3530-8e35-7945c2cb1c75 -2018,Tierra del Fuego,II.1.1,0.03612,TJ,CO2,74100.0,kg/TJ,2676.4919999999997,Gas Oil combustion consumption by freight transport,AR-V,SESCO,annual,kg,767c2e44-8146-3aae-830c-229491064951 -2018,Tierra del Fuego,II.1.1,0.03612,TJ,CH4,3.9,kg/TJ,0.140868,Gas Oil combustion consumption by freight transport,AR-V,SESCO,annual,kg,a8914733-0b94-3d52-b39a-ea4e29ecfc53 -2018,Tierra del Fuego,II.1.1,0.03612,TJ,N2O,3.9,kg/TJ,0.140868,Gas Oil combustion consumption by freight transport,AR-V,SESCO,annual,kg,a8914733-0b94-3d52-b39a-ea4e29ecfc53 -2018,Tucuman,II.1.1,10.510919999999999,TJ,CO2,74100.0,kg/TJ,778859.1719999999,Gas Oil combustion consumption by freight transport,AR-T,SESCO,annual,kg,8c784409-55dd-31ba-ba91-a1e01d378273 -2018,Tucuman,II.1.1,10.510919999999999,TJ,CH4,3.9,kg/TJ,40.99258799999999,Gas Oil combustion consumption by freight transport,AR-T,SESCO,annual,kg,79095e6b-490b-3ce4-88ae-e244b3b87cd0 -2018,Tucuman,II.1.1,10.510919999999999,TJ,N2O,3.9,kg/TJ,40.99258799999999,Gas Oil combustion consumption by freight transport,AR-T,SESCO,annual,kg,79095e6b-490b-3ce4-88ae-e244b3b87cd0 -2018,Buenos Aires,II.1.1,78.77772,TJ,CO2,74100.0,kg/TJ,5837429.052,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,e4ee4c7d-78fb-384a-973c-74a45367f27b -2018,Buenos Aires,II.1.1,78.77772,TJ,CH4,3.9,kg/TJ,307.233108,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,86f5e72e-1c5a-35de-a762-ffd8ec62c0af -2018,Buenos Aires,II.1.1,78.77772,TJ,N2O,3.9,kg/TJ,307.233108,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,86f5e72e-1c5a-35de-a762-ffd8ec62c0af -2018,Capital Federal,II.1.1,22.9362,TJ,CO2,74100.0,kg/TJ,1699572.42,Gas Oil combustion consumption by freight transport,AR-C,SESCO,annual,kg,5b2d1c43-cbee-3430-b9f4-f811236e4464 -2018,Capital Federal,II.1.1,22.9362,TJ,CH4,3.9,kg/TJ,89.45118,Gas Oil combustion consumption by freight transport,AR-C,SESCO,annual,kg,25b8c0f4-775a-3555-a0c8-eaeac3cbc465 -2018,Capital Federal,II.1.1,22.9362,TJ,N2O,3.9,kg/TJ,89.45118,Gas Oil combustion consumption by freight transport,AR-C,SESCO,annual,kg,25b8c0f4-775a-3555-a0c8-eaeac3cbc465 -2018,Catamarca,II.1.1,0.18059999999999998,TJ,CO2,74100.0,kg/TJ,13382.46,Gas Oil combustion consumption by freight transport,AR-K,SESCO,annual,kg,dde2bc20-2d66-3919-8f37-0f9a02485b8f -2018,Catamarca,II.1.1,0.18059999999999998,TJ,CH4,3.9,kg/TJ,0.70434,Gas Oil combustion consumption by freight transport,AR-K,SESCO,annual,kg,6c8a7c1e-8bc4-3ad4-a8fe-63372738898f -2018,Catamarca,II.1.1,0.18059999999999998,TJ,N2O,3.9,kg/TJ,0.70434,Gas Oil combustion consumption by freight transport,AR-K,SESCO,annual,kg,6c8a7c1e-8bc4-3ad4-a8fe-63372738898f -2018,Chaco,II.1.1,0.07224,TJ,CO2,74100.0,kg/TJ,5352.9839999999995,Gas Oil combustion consumption by freight transport,AR-H,SESCO,annual,kg,9fec9256-e6de-33a3-9299-24c0d9147558 -2018,Chaco,II.1.1,0.07224,TJ,CH4,3.9,kg/TJ,0.281736,Gas Oil combustion consumption by freight transport,AR-H,SESCO,annual,kg,7479c1e2-0224-32cb-aa47-6eb9710dd581 -2018,Chaco,II.1.1,0.07224,TJ,N2O,3.9,kg/TJ,0.281736,Gas Oil combustion consumption by freight transport,AR-H,SESCO,annual,kg,7479c1e2-0224-32cb-aa47-6eb9710dd581 -2018,Chubut,II.1.1,0.6140399999999999,TJ,CO2,74100.0,kg/TJ,45500.363999999994,Gas Oil combustion consumption by freight transport,AR-U,SESCO,annual,kg,7e36c4e3-67d6-3a9f-8d96-ebdccf07822e -2018,Chubut,II.1.1,0.6140399999999999,TJ,CH4,3.9,kg/TJ,2.3947559999999997,Gas Oil combustion consumption by freight transport,AR-U,SESCO,annual,kg,c05a26da-939b-30ba-9ab0-b4c4447faa63 -2018,Chubut,II.1.1,0.6140399999999999,TJ,N2O,3.9,kg/TJ,2.3947559999999997,Gas Oil combustion consumption by freight transport,AR-U,SESCO,annual,kg,c05a26da-939b-30ba-9ab0-b4c4447faa63 -2018,Corrientes,II.1.1,1.2280799999999998,TJ,CO2,74100.0,kg/TJ,91000.72799999999,Gas Oil combustion consumption by freight transport,AR-W,SESCO,annual,kg,4ce0966c-8711-338a-aa0f-1e80a29380f7 -2018,Corrientes,II.1.1,1.2280799999999998,TJ,CH4,3.9,kg/TJ,4.789511999999999,Gas Oil combustion consumption by freight transport,AR-W,SESCO,annual,kg,0515d56e-cef4-3ad3-9bf4-6e2574d416df -2018,Corrientes,II.1.1,1.2280799999999998,TJ,N2O,3.9,kg/TJ,4.789511999999999,Gas Oil combustion consumption by freight transport,AR-W,SESCO,annual,kg,0515d56e-cef4-3ad3-9bf4-6e2574d416df -2018,Córdoba,II.1.1,6.42936,TJ,CO2,74100.0,kg/TJ,476415.576,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,0a54095a-323e-328e-ab47-bbc914e4cc1f -2018,Córdoba,II.1.1,6.42936,TJ,CH4,3.9,kg/TJ,25.074504,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,0c2973c8-ada2-3f6e-bec3-7f1faed852c9 -2018,Córdoba,II.1.1,6.42936,TJ,N2O,3.9,kg/TJ,25.074504,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,0c2973c8-ada2-3f6e-bec3-7f1faed852c9 -2018,Entre Rios,II.1.1,2.85348,TJ,CO2,74100.0,kg/TJ,211442.868,Gas Oil combustion consumption by freight transport,AR-E,SESCO,annual,kg,aee36da4-942f-3cd6-96f3-2007c6714a4a -2018,Entre Rios,II.1.1,2.85348,TJ,CH4,3.9,kg/TJ,11.128571999999998,Gas Oil combustion consumption by freight transport,AR-E,SESCO,annual,kg,0ca0c03e-5ef7-3fc2-aeac-ff5ee9a3a5fe -2018,Entre Rios,II.1.1,2.85348,TJ,N2O,3.9,kg/TJ,11.128571999999998,Gas Oil combustion consumption by freight transport,AR-E,SESCO,annual,kg,0ca0c03e-5ef7-3fc2-aeac-ff5ee9a3a5fe -2018,Formosa,II.1.1,0.14448,TJ,CO2,74100.0,kg/TJ,10705.967999999999,Gas Oil combustion consumption by freight transport,AR-P,SESCO,annual,kg,3266a5f0-7e94-35e3-a244-85b6bdee65bf -2018,Formosa,II.1.1,0.14448,TJ,CH4,3.9,kg/TJ,0.563472,Gas Oil combustion consumption by freight transport,AR-P,SESCO,annual,kg,b850ec85-6d63-361b-a71b-bd582ee6fb00 -2018,Formosa,II.1.1,0.14448,TJ,N2O,3.9,kg/TJ,0.563472,Gas Oil combustion consumption by freight transport,AR-P,SESCO,annual,kg,b850ec85-6d63-361b-a71b-bd582ee6fb00 -2018,La Pampa,II.1.1,0.28896,TJ,CO2,74100.0,kg/TJ,21411.935999999998,Gas Oil combustion consumption by freight transport,AR-L,SESCO,annual,kg,5ba0f049-0653-35a9-8d48-7459ba7d4c3d -2018,La Pampa,II.1.1,0.28896,TJ,CH4,3.9,kg/TJ,1.126944,Gas Oil combustion consumption by freight transport,AR-L,SESCO,annual,kg,5dc698ce-7188-38fe-8b00-db5ec8b4c379 -2018,La Pampa,II.1.1,0.28896,TJ,N2O,3.9,kg/TJ,1.126944,Gas Oil combustion consumption by freight transport,AR-L,SESCO,annual,kg,5dc698ce-7188-38fe-8b00-db5ec8b4c379 -2018,La Rioja,II.1.1,0.03612,TJ,CO2,74100.0,kg/TJ,2676.4919999999997,Gas Oil combustion consumption by freight transport,AR-F,SESCO,annual,kg,f5e747bb-eea1-3d84-9913-63025b9d770a -2018,La Rioja,II.1.1,0.03612,TJ,CH4,3.9,kg/TJ,0.140868,Gas Oil combustion consumption by freight transport,AR-F,SESCO,annual,kg,f389654d-6500-34da-9fe1-077ab51887a6 -2018,La Rioja,II.1.1,0.03612,TJ,N2O,3.9,kg/TJ,0.140868,Gas Oil combustion consumption by freight transport,AR-F,SESCO,annual,kg,f389654d-6500-34da-9fe1-077ab51887a6 -2018,Mendoza,II.1.1,0.32508,TJ,CO2,74100.0,kg/TJ,24088.428,Gas Oil combustion consumption by freight transport,AR-M,SESCO,annual,kg,be8e310f-e204-3186-8102-6945f1d140dc -2018,Mendoza,II.1.1,0.32508,TJ,CH4,3.9,kg/TJ,1.267812,Gas Oil combustion consumption by freight transport,AR-M,SESCO,annual,kg,ae41c496-c38b-3bb8-9e48-da8c8c8747ea -2018,Mendoza,II.1.1,0.32508,TJ,N2O,3.9,kg/TJ,1.267812,Gas Oil combustion consumption by freight transport,AR-M,SESCO,annual,kg,ae41c496-c38b-3bb8-9e48-da8c8c8747ea -2018,Misiones,II.1.1,0.18059999999999998,TJ,CO2,74100.0,kg/TJ,13382.46,Gas Oil combustion consumption by freight transport,AR-N,SESCO,annual,kg,d392ec4a-5f39-38cb-96e6-a335883abcda -2018,Misiones,II.1.1,0.18059999999999998,TJ,CH4,3.9,kg/TJ,0.70434,Gas Oil combustion consumption by freight transport,AR-N,SESCO,annual,kg,d3d01c5c-38e0-3811-b330-8032f91f2e54 -2018,Misiones,II.1.1,0.18059999999999998,TJ,N2O,3.9,kg/TJ,0.70434,Gas Oil combustion consumption by freight transport,AR-N,SESCO,annual,kg,d3d01c5c-38e0-3811-b330-8032f91f2e54 -2018,Neuquén,II.1.1,0.03612,TJ,CO2,74100.0,kg/TJ,2676.4919999999997,Gas Oil combustion consumption by freight transport,AR-Q,SESCO,annual,kg,72f79e4f-cc41-3c96-90ab-f636da9fd693 -2018,Neuquén,II.1.1,0.03612,TJ,CH4,3.9,kg/TJ,0.140868,Gas Oil combustion consumption by freight transport,AR-Q,SESCO,annual,kg,a2c1117f-32e8-359f-bc8f-87f84ddd7b5b -2018,Neuquén,II.1.1,0.03612,TJ,N2O,3.9,kg/TJ,0.140868,Gas Oil combustion consumption by freight transport,AR-Q,SESCO,annual,kg,a2c1117f-32e8-359f-bc8f-87f84ddd7b5b -2018,Rio Negro,II.1.1,12.8226,TJ,CO2,74100.0,kg/TJ,950154.6599999999,Gas Oil combustion consumption by freight transport,AR-R,SESCO,annual,kg,ecf942b6-0681-373f-b96a-bef6b9083540 -2018,Rio Negro,II.1.1,12.8226,TJ,CH4,3.9,kg/TJ,50.00814,Gas Oil combustion consumption by freight transport,AR-R,SESCO,annual,kg,121881c6-2e39-346e-ae14-7693800d2756 -2018,Rio Negro,II.1.1,12.8226,TJ,N2O,3.9,kg/TJ,50.00814,Gas Oil combustion consumption by freight transport,AR-R,SESCO,annual,kg,121881c6-2e39-346e-ae14-7693800d2756 -2018,Salta,II.1.1,0.03612,TJ,CO2,74100.0,kg/TJ,2676.4919999999997,Gas Oil combustion consumption by freight transport,AR-A,SESCO,annual,kg,53ee0eef-d411-34c8-b139-89b5187ff052 -2018,Salta,II.1.1,0.03612,TJ,CH4,3.9,kg/TJ,0.140868,Gas Oil combustion consumption by freight transport,AR-A,SESCO,annual,kg,79a9c050-79d6-37f1-9982-1fee1612bbcb -2018,Salta,II.1.1,0.03612,TJ,N2O,3.9,kg/TJ,0.140868,Gas Oil combustion consumption by freight transport,AR-A,SESCO,annual,kg,79a9c050-79d6-37f1-9982-1fee1612bbcb -2018,San Juan,II.1.1,0.32508,TJ,CO2,74100.0,kg/TJ,24088.428,Gas Oil combustion consumption by freight transport,AR-J,SESCO,annual,kg,18d7dce6-946d-3483-82e0-5a34ed632c64 -2018,San Juan,II.1.1,0.32508,TJ,CH4,3.9,kg/TJ,1.267812,Gas Oil combustion consumption by freight transport,AR-J,SESCO,annual,kg,e4c8f839-6da9-348e-bf41-4894afb33e34 -2018,San Juan,II.1.1,0.32508,TJ,N2O,3.9,kg/TJ,1.267812,Gas Oil combustion consumption by freight transport,AR-J,SESCO,annual,kg,e4c8f839-6da9-348e-bf41-4894afb33e34 -2018,San Luis,II.1.1,0.46956,TJ,CO2,74100.0,kg/TJ,34794.396,Gas Oil combustion consumption by freight transport,AR-D,SESCO,annual,kg,2360e819-0bcd-3ad8-a72a-b02e983a3688 -2018,San Luis,II.1.1,0.46956,TJ,CH4,3.9,kg/TJ,1.831284,Gas Oil combustion consumption by freight transport,AR-D,SESCO,annual,kg,c6eeb74a-ac58-3854-8e49-e915c07cbd94 -2018,San Luis,II.1.1,0.46956,TJ,N2O,3.9,kg/TJ,1.831284,Gas Oil combustion consumption by freight transport,AR-D,SESCO,annual,kg,c6eeb74a-ac58-3854-8e49-e915c07cbd94 -2018,Santa Fe,II.1.1,50.026199999999996,TJ,CO2,74100.0,kg/TJ,3706941.4199999995,Gas Oil combustion consumption by freight transport,AR-S,SESCO,annual,kg,be97a2b0-7ec3-3805-859f-dd317e7dc93c -2018,Santa Fe,II.1.1,50.026199999999996,TJ,CH4,3.9,kg/TJ,195.10217999999998,Gas Oil combustion consumption by freight transport,AR-S,SESCO,annual,kg,ee52d6be-49bf-3070-95f3-cb774b422600 -2018,Santa Fe,II.1.1,50.026199999999996,TJ,N2O,3.9,kg/TJ,195.10217999999998,Gas Oil combustion consumption by freight transport,AR-S,SESCO,annual,kg,ee52d6be-49bf-3070-95f3-cb774b422600 -2018,Santiago del Estero,II.1.1,1.01136,TJ,CO2,74100.0,kg/TJ,74941.776,Gas Oil combustion consumption by freight transport,AR-G,SESCO,annual,kg,395d08a8-f1e6-34fb-a86f-458c9f5d5ff0 -2018,Santiago del Estero,II.1.1,1.01136,TJ,CH4,3.9,kg/TJ,3.9443040000000003,Gas Oil combustion consumption by freight transport,AR-G,SESCO,annual,kg,71e54b13-f611-3002-a968-277422bea047 -2018,Santiago del Estero,II.1.1,1.01136,TJ,N2O,3.9,kg/TJ,3.9443040000000003,Gas Oil combustion consumption by freight transport,AR-G,SESCO,annual,kg,71e54b13-f611-3002-a968-277422bea047 -2018,Tierra del Fuego,II.1.1,0.07224,TJ,CO2,74100.0,kg/TJ,5352.9839999999995,Gas Oil combustion consumption by freight transport,AR-V,SESCO,annual,kg,9538ea72-cb1a-31e8-a3c1-d6e09531b470 -2018,Tierra del Fuego,II.1.1,0.07224,TJ,CH4,3.9,kg/TJ,0.281736,Gas Oil combustion consumption by freight transport,AR-V,SESCO,annual,kg,bac7c95d-2ce8-3ad1-87f4-8e0804123eab -2018,Tierra del Fuego,II.1.1,0.07224,TJ,N2O,3.9,kg/TJ,0.281736,Gas Oil combustion consumption by freight transport,AR-V,SESCO,annual,kg,bac7c95d-2ce8-3ad1-87f4-8e0804123eab -2018,Tucuman,II.1.1,0.10836,TJ,CO2,74100.0,kg/TJ,8029.476,Gas Oil combustion consumption by freight transport,AR-T,SESCO,annual,kg,f0415f61-a3cc-3da0-bad0-c1fc1f561c41 -2018,Tucuman,II.1.1,0.10836,TJ,CH4,3.9,kg/TJ,0.422604,Gas Oil combustion consumption by freight transport,AR-T,SESCO,annual,kg,5a8be346-8e85-32df-b000-79159c5b6842 -2018,Tucuman,II.1.1,0.10836,TJ,N2O,3.9,kg/TJ,0.422604,Gas Oil combustion consumption by freight transport,AR-T,SESCO,annual,kg,5a8be346-8e85-32df-b000-79159c5b6842 -2018,Buenos Aires,II.1.1,2.5356099999999997,TJ,CO2,73300.0,kg/TJ,185860.213,Naphtha combustion consumption by freight transport,AR-B,SESCO,annual,kg,2268ee2f-1177-373f-9573-6880e64489f1 -2018,Buenos Aires,II.1.1,2.5356099999999997,TJ,CH4,0.5,kg/TJ,1.2678049999999998,Naphtha combustion consumption by freight transport,AR-B,SESCO,annual,kg,2ed5d2c6-c793-3999-9012-e186af8d5c23 -2018,Buenos Aires,II.1.1,2.5356099999999997,TJ,N2O,2.0,kg/TJ,5.071219999999999,Naphtha combustion consumption by freight transport,AR-B,SESCO,annual,kg,78a95308-959e-3f9d-a791-34051a0cc35c -2018,Capital Federal,II.1.1,1.02795,TJ,CO2,73300.0,kg/TJ,75348.735,Naphtha combustion consumption by freight transport,AR-C,SESCO,annual,kg,61c04ebc-e534-3893-8167-a4dc36e6f41d -2018,Capital Federal,II.1.1,1.02795,TJ,CH4,0.5,kg/TJ,0.513975,Naphtha combustion consumption by freight transport,AR-C,SESCO,annual,kg,463048c1-1fb0-3c95-b48a-cc3a0ec20657 -2018,Capital Federal,II.1.1,1.02795,TJ,N2O,2.0,kg/TJ,2.0559,Naphtha combustion consumption by freight transport,AR-C,SESCO,annual,kg,b1cf115c-8c7e-3a51-8d9d-d0fcf2376698 -2018,Córdoba,II.1.1,0.47970999999999997,TJ,CO2,73300.0,kg/TJ,35162.742999999995,Naphtha combustion consumption by freight transport,AR-X,SESCO,annual,kg,5b2d4be8-98a6-37f2-8978-a20c13b0efcb -2018,Córdoba,II.1.1,0.47970999999999997,TJ,CH4,0.5,kg/TJ,0.23985499999999998,Naphtha combustion consumption by freight transport,AR-X,SESCO,annual,kg,f81ac1a1-0550-3059-9641-0c188db25297 -2018,Córdoba,II.1.1,0.47970999999999997,TJ,N2O,2.0,kg/TJ,0.9594199999999999,Naphtha combustion consumption by freight transport,AR-X,SESCO,annual,kg,4119ef6d-7903-34cf-a76e-b8e0e00fcbbf -2018,Santa Fe,II.1.1,0.13706,TJ,CO2,73300.0,kg/TJ,10046.498,Naphtha combustion consumption by freight transport,AR-S,SESCO,annual,kg,b6d39d05-f547-3a9c-bbfa-09e6075c36c3 -2018,Santa Fe,II.1.1,0.13706,TJ,CH4,0.5,kg/TJ,0.06853,Naphtha combustion consumption by freight transport,AR-S,SESCO,annual,kg,898ad23a-e19d-3bab-9f81-ca9e842a7aff -2018,Santa Fe,II.1.1,0.13706,TJ,N2O,2.0,kg/TJ,0.27412,Naphtha combustion consumption by freight transport,AR-S,SESCO,annual,kg,167ec5c1-612c-36c5-9687-1e46e68a6b70 -2018,Buenos Aires,II.1.1,2.12443,TJ,CO2,73300.0,kg/TJ,155720.71899999998,Naphtha combustion consumption by freight transport,AR-B,SESCO,annual,kg,e88fd4a5-a6d6-3a4b-872f-8c3aa89e0001 -2018,Buenos Aires,II.1.1,2.12443,TJ,CH4,0.5,kg/TJ,1.062215,Naphtha combustion consumption by freight transport,AR-B,SESCO,annual,kg,18a2315c-93f1-34aa-8fdc-e774a8d06a11 -2018,Buenos Aires,II.1.1,2.12443,TJ,N2O,2.0,kg/TJ,4.24886,Naphtha combustion consumption by freight transport,AR-B,SESCO,annual,kg,d74e2e6b-d8d6-30c4-9162-f287c31a97f5 -2018,Capital Federal,II.1.1,1.062215,TJ,CO2,73300.0,kg/TJ,77860.35949999999,Naphtha combustion consumption by freight transport,AR-C,SESCO,annual,kg,313e400c-2943-362e-bf7c-802147e7b54b -2018,Capital Federal,II.1.1,1.062215,TJ,CH4,0.5,kg/TJ,0.5311075,Naphtha combustion consumption by freight transport,AR-C,SESCO,annual,kg,3118dd41-dcb5-32be-b600-b4e78b2721c3 -2018,Capital Federal,II.1.1,1.062215,TJ,N2O,2.0,kg/TJ,2.12443,Naphtha combustion consumption by freight transport,AR-C,SESCO,annual,kg,92cdd98d-3a91-382b-8295-c53828864084 -2018,Córdoba,II.1.1,0.513975,TJ,CO2,73300.0,kg/TJ,37674.3675,Naphtha combustion consumption by freight transport,AR-X,SESCO,annual,kg,e8d5f5d2-374f-39a9-b363-d55eafb7c652 -2018,Córdoba,II.1.1,0.513975,TJ,CH4,0.5,kg/TJ,0.2569875,Naphtha combustion consumption by freight transport,AR-X,SESCO,annual,kg,31bdde4b-a8d0-3646-b411-91f4e79ed184 -2018,Córdoba,II.1.1,0.513975,TJ,N2O,2.0,kg/TJ,1.02795,Naphtha combustion consumption by freight transport,AR-X,SESCO,annual,kg,00943378-e1be-3480-9366-f3da36175b84 -2018,Santa Fe,II.1.1,0.34265,TJ,CO2,73300.0,kg/TJ,25116.245,Naphtha combustion consumption by freight transport,AR-S,SESCO,annual,kg,5748572a-bb06-3993-a507-b6d4e1309df1 -2018,Santa Fe,II.1.1,0.34265,TJ,CH4,0.5,kg/TJ,0.171325,Naphtha combustion consumption by freight transport,AR-S,SESCO,annual,kg,856467f0-8ee5-33a8-a14b-0f0eeb2051b9 -2018,Santa Fe,II.1.1,0.34265,TJ,N2O,2.0,kg/TJ,0.6853,Naphtha combustion consumption by freight transport,AR-S,SESCO,annual,kg,c35b9279-9f62-38f6-96c2-54154186a2e8 -2018,Buenos Aires,II.1.1,244.74911999999998,TJ,CO2,74100.0,kg/TJ,18135909.792,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,debdcfe2-08a8-3e10-abac-a2580c5bbf6b -2018,Buenos Aires,II.1.1,244.74911999999998,TJ,CH4,3.9,kg/TJ,954.5215679999999,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,128d110a-4e81-3129-9160-413b54448c51 -2018,Buenos Aires,II.1.1,244.74911999999998,TJ,N2O,3.9,kg/TJ,954.5215679999999,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,128d110a-4e81-3129-9160-413b54448c51 -2018,Capital Federal,II.1.1,126.70895999999999,TJ,CO2,74100.0,kg/TJ,9389133.935999999,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,4882befb-4284-3d96-bca0-d075c8030c62 -2018,Capital Federal,II.1.1,126.70895999999999,TJ,CH4,3.9,kg/TJ,494.16494399999993,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,662b1f59-e97e-32c9-9738-422ecf38544c -2018,Capital Federal,II.1.1,126.70895999999999,TJ,N2O,3.9,kg/TJ,494.16494399999993,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,662b1f59-e97e-32c9-9738-422ecf38544c -2018,Chaco,II.1.1,8.16312,TJ,CO2,74100.0,kg/TJ,604887.1919999999,Gas Oil combustion consumption by public passenger transport,AR-H,SESCO,annual,kg,2caad93c-1601-3750-aada-d58a6cf14cd4 -2018,Chaco,II.1.1,8.16312,TJ,CH4,3.9,kg/TJ,31.836167999999997,Gas Oil combustion consumption by public passenger transport,AR-H,SESCO,annual,kg,560da30b-0e33-33d6-b718-1e8da4a27e84 -2018,Chaco,II.1.1,8.16312,TJ,N2O,3.9,kg/TJ,31.836167999999997,Gas Oil combustion consumption by public passenger transport,AR-H,SESCO,annual,kg,560da30b-0e33-33d6-b718-1e8da4a27e84 -2018,Chubut,II.1.1,6.24876,TJ,CO2,74100.0,kg/TJ,463033.116,Gas Oil combustion consumption by public passenger transport,AR-U,SESCO,annual,kg,c6c241ed-a5c2-39f7-8fdb-840215b1d1a7 -2018,Chubut,II.1.1,6.24876,TJ,CH4,3.9,kg/TJ,24.370164,Gas Oil combustion consumption by public passenger transport,AR-U,SESCO,annual,kg,d2dee2c1-f023-3369-af2e-3ed87c125bd8 -2018,Chubut,II.1.1,6.24876,TJ,N2O,3.9,kg/TJ,24.370164,Gas Oil combustion consumption by public passenger transport,AR-U,SESCO,annual,kg,d2dee2c1-f023-3369-af2e-3ed87c125bd8 -2018,Corrientes,II.1.1,0.39732,TJ,CO2,74100.0,kg/TJ,29441.412,Gas Oil combustion consumption by public passenger transport,AR-W,SESCO,annual,kg,cb5f3107-29ae-345a-87c8-ead06de6f3a1 -2018,Corrientes,II.1.1,0.39732,TJ,CH4,3.9,kg/TJ,1.549548,Gas Oil combustion consumption by public passenger transport,AR-W,SESCO,annual,kg,ce536de0-e32d-3279-afe4-6a9a9bff6bf3 -2018,Corrientes,II.1.1,0.39732,TJ,N2O,3.9,kg/TJ,1.549548,Gas Oil combustion consumption by public passenger transport,AR-W,SESCO,annual,kg,ce536de0-e32d-3279-afe4-6a9a9bff6bf3 -2018,Córdoba,II.1.1,18.52956,TJ,CO2,74100.0,kg/TJ,1373040.396,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,f4f63ae2-709b-3748-a479-69d215cbda2a -2018,Córdoba,II.1.1,18.52956,TJ,CH4,3.9,kg/TJ,72.265284,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,50432436-ca0d-3533-be08-bb40a2f63c39 -2018,Córdoba,II.1.1,18.52956,TJ,N2O,3.9,kg/TJ,72.265284,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,50432436-ca0d-3533-be08-bb40a2f63c39 -2018,Entre Rios,II.1.1,10.22196,TJ,CO2,74100.0,kg/TJ,757447.2359999999,Gas Oil combustion consumption by public passenger transport,AR-E,SESCO,annual,kg,b79fa94e-bf2c-3f25-809c-2c57c4890e3e -2018,Entre Rios,II.1.1,10.22196,TJ,CH4,3.9,kg/TJ,39.865643999999996,Gas Oil combustion consumption by public passenger transport,AR-E,SESCO,annual,kg,80044c5a-d081-3dd3-b358-3c54619e6349 -2018,Entre Rios,II.1.1,10.22196,TJ,N2O,3.9,kg/TJ,39.865643999999996,Gas Oil combustion consumption by public passenger transport,AR-E,SESCO,annual,kg,80044c5a-d081-3dd3-b358-3c54619e6349 -2018,La Pampa,II.1.1,1.84212,TJ,CO2,74100.0,kg/TJ,136501.092,Gas Oil combustion consumption by public passenger transport,AR-L,SESCO,annual,kg,b054b9b4-c32b-3710-a90a-bb14ab31ee8b -2018,La Pampa,II.1.1,1.84212,TJ,CH4,3.9,kg/TJ,7.184267999999999,Gas Oil combustion consumption by public passenger transport,AR-L,SESCO,annual,kg,b2582760-5efc-3359-b56d-42a1247fc63a -2018,La Pampa,II.1.1,1.84212,TJ,N2O,3.9,kg/TJ,7.184267999999999,Gas Oil combustion consumption by public passenger transport,AR-L,SESCO,annual,kg,b2582760-5efc-3359-b56d-42a1247fc63a -2018,Mendoza,II.1.1,0.32508,TJ,CO2,74100.0,kg/TJ,24088.428,Gas Oil combustion consumption by public passenger transport,AR-M,SESCO,annual,kg,be8e310f-e204-3186-8102-6945f1d140dc -2018,Mendoza,II.1.1,0.32508,TJ,CH4,3.9,kg/TJ,1.267812,Gas Oil combustion consumption by public passenger transport,AR-M,SESCO,annual,kg,ae41c496-c38b-3bb8-9e48-da8c8c8747ea -2018,Mendoza,II.1.1,0.32508,TJ,N2O,3.9,kg/TJ,1.267812,Gas Oil combustion consumption by public passenger transport,AR-M,SESCO,annual,kg,ae41c496-c38b-3bb8-9e48-da8c8c8747ea -2018,Misiones,II.1.1,11.883479999999999,TJ,CO2,74100.0,kg/TJ,880565.8679999999,Gas Oil combustion consumption by public passenger transport,AR-N,SESCO,annual,kg,21a1db38-27bf-3d36-8921-834e60bd8582 -2018,Misiones,II.1.1,11.883479999999999,TJ,CH4,3.9,kg/TJ,46.345572,Gas Oil combustion consumption by public passenger transport,AR-N,SESCO,annual,kg,eda4b9e0-6715-362d-b64e-54eba9d38757 -2018,Misiones,II.1.1,11.883479999999999,TJ,N2O,3.9,kg/TJ,46.345572,Gas Oil combustion consumption by public passenger transport,AR-N,SESCO,annual,kg,eda4b9e0-6715-362d-b64e-54eba9d38757 -2018,Neuquén,II.1.1,1.87824,TJ,CO2,74100.0,kg/TJ,139177.584,Gas Oil combustion consumption by public passenger transport,AR-Q,SESCO,annual,kg,61ab90f3-7e96-3afe-aac5-5471c3f2449f -2018,Neuquén,II.1.1,1.87824,TJ,CH4,3.9,kg/TJ,7.325136,Gas Oil combustion consumption by public passenger transport,AR-Q,SESCO,annual,kg,9ba65473-1584-3cc5-adbf-4446befba27a -2018,Neuquén,II.1.1,1.87824,TJ,N2O,3.9,kg/TJ,7.325136,Gas Oil combustion consumption by public passenger transport,AR-Q,SESCO,annual,kg,9ba65473-1584-3cc5-adbf-4446befba27a -2018,Rio Negro,II.1.1,9.71628,TJ,CO2,74100.0,kg/TJ,719976.348,Gas Oil combustion consumption by public passenger transport,AR-R,SESCO,annual,kg,71fcc04a-dfa5-3c83-981a-c14f9e929c6e -2018,Rio Negro,II.1.1,9.71628,TJ,CH4,3.9,kg/TJ,37.893491999999995,Gas Oil combustion consumption by public passenger transport,AR-R,SESCO,annual,kg,fb9794d1-e8a4-3dea-84ad-cc1bf6365cc9 -2018,Rio Negro,II.1.1,9.71628,TJ,N2O,3.9,kg/TJ,37.893491999999995,Gas Oil combustion consumption by public passenger transport,AR-R,SESCO,annual,kg,fb9794d1-e8a4-3dea-84ad-cc1bf6365cc9 -2018,Salta,II.1.1,0.03612,TJ,CO2,74100.0,kg/TJ,2676.4919999999997,Gas Oil combustion consumption by public passenger transport,AR-A,SESCO,annual,kg,53ee0eef-d411-34c8-b139-89b5187ff052 -2018,Salta,II.1.1,0.03612,TJ,CH4,3.9,kg/TJ,0.140868,Gas Oil combustion consumption by public passenger transport,AR-A,SESCO,annual,kg,79a9c050-79d6-37f1-9982-1fee1612bbcb -2018,Salta,II.1.1,0.03612,TJ,N2O,3.9,kg/TJ,0.140868,Gas Oil combustion consumption by public passenger transport,AR-A,SESCO,annual,kg,79a9c050-79d6-37f1-9982-1fee1612bbcb -2018,San Luis,II.1.1,0.07224,TJ,CO2,74100.0,kg/TJ,5352.9839999999995,Gas Oil combustion consumption by public passenger transport,AR-D,SESCO,annual,kg,49241a0a-c4c1-38ec-9eb5-884cbc2f0133 -2018,San Luis,II.1.1,0.07224,TJ,CH4,3.9,kg/TJ,0.281736,Gas Oil combustion consumption by public passenger transport,AR-D,SESCO,annual,kg,ce3c8f8e-dba6-3efa-8c07-9095e2ad535d -2018,San Luis,II.1.1,0.07224,TJ,N2O,3.9,kg/TJ,0.281736,Gas Oil combustion consumption by public passenger transport,AR-D,SESCO,annual,kg,ce3c8f8e-dba6-3efa-8c07-9095e2ad535d -2018,Santa Fe,II.1.1,66.2802,TJ,CO2,74100.0,kg/TJ,4911362.819999999,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,90805535-c066-3a24-a4f4-e9039d5ebe98 -2018,Santa Fe,II.1.1,66.2802,TJ,CH4,3.9,kg/TJ,258.49278,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,244cbe5c-309c-3592-a04c-435381d133c2 -2018,Santa Fe,II.1.1,66.2802,TJ,N2O,3.9,kg/TJ,258.49278,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,244cbe5c-309c-3592-a04c-435381d133c2 -2018,Santiago del Estero,II.1.1,0.07224,TJ,CO2,74100.0,kg/TJ,5352.9839999999995,Gas Oil combustion consumption by public passenger transport,AR-G,SESCO,annual,kg,02b10c80-f015-39cb-aa5e-0fa5fb8fab17 -2018,Santiago del Estero,II.1.1,0.07224,TJ,CH4,3.9,kg/TJ,0.281736,Gas Oil combustion consumption by public passenger transport,AR-G,SESCO,annual,kg,e5567771-8320-33a5-9f80-456ff2ef92f1 -2018,Santiago del Estero,II.1.1,0.07224,TJ,N2O,3.9,kg/TJ,0.281736,Gas Oil combustion consumption by public passenger transport,AR-G,SESCO,annual,kg,e5567771-8320-33a5-9f80-456ff2ef92f1 -2018,Tucuman,II.1.1,51.2904,TJ,CO2,74100.0,kg/TJ,3800618.6399999997,Gas Oil combustion consumption by public passenger transport,AR-T,SESCO,annual,kg,bf59a6dc-c11c-3eb5-b516-4e7236c510a1 -2018,Tucuman,II.1.1,51.2904,TJ,CH4,3.9,kg/TJ,200.03256,Gas Oil combustion consumption by public passenger transport,AR-T,SESCO,annual,kg,e5ef501f-8b2b-3c87-8e75-33e422f5b636 -2018,Tucuman,II.1.1,51.2904,TJ,N2O,3.9,kg/TJ,200.03256,Gas Oil combustion consumption by public passenger transport,AR-T,SESCO,annual,kg,e5ef501f-8b2b-3c87-8e75-33e422f5b636 -2018,Buenos Aires,II.1.1,44.39148,TJ,CO2,74100.0,kg/TJ,3289408.668,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,39216de8-6105-3e51-bc0e-cca184fc40fe -2018,Buenos Aires,II.1.1,44.39148,TJ,CH4,3.9,kg/TJ,173.126772,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,63b86839-cb40-3edf-9f83-e54bea5f5109 -2018,Buenos Aires,II.1.1,44.39148,TJ,N2O,3.9,kg/TJ,173.126772,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,63b86839-cb40-3edf-9f83-e54bea5f5109 -2018,Capital Federal,II.1.1,9.138359999999999,TJ,CO2,74100.0,kg/TJ,677152.4759999999,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,9df701fe-bdd5-349b-bccc-7501a3c3e998 -2018,Capital Federal,II.1.1,9.138359999999999,TJ,CH4,3.9,kg/TJ,35.63960399999999,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,8fb13395-03be-3c51-a8d7-6da343ca6a7c -2018,Capital Federal,II.1.1,9.138359999999999,TJ,N2O,3.9,kg/TJ,35.63960399999999,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,8fb13395-03be-3c51-a8d7-6da343ca6a7c -2018,Chubut,II.1.1,2.4561599999999997,TJ,CO2,74100.0,kg/TJ,182001.45599999998,Gas Oil combustion consumption by public passenger transport,AR-U,SESCO,annual,kg,652a1b8b-e346-35ec-aacd-34807fbfe8f1 -2018,Chubut,II.1.1,2.4561599999999997,TJ,CH4,3.9,kg/TJ,9.579023999999999,Gas Oil combustion consumption by public passenger transport,AR-U,SESCO,annual,kg,3fc5d907-4d65-395f-966f-5df14f4f328f -2018,Chubut,II.1.1,2.4561599999999997,TJ,N2O,3.9,kg/TJ,9.579023999999999,Gas Oil combustion consumption by public passenger transport,AR-U,SESCO,annual,kg,3fc5d907-4d65-395f-966f-5df14f4f328f -2018,Córdoba,II.1.1,1.87824,TJ,CO2,74100.0,kg/TJ,139177.584,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,64245b8a-1aed-38fd-84c8-4b316ff8939f -2018,Córdoba,II.1.1,1.87824,TJ,CH4,3.9,kg/TJ,7.325136,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,5eb9ad3e-f951-3df7-89c9-9b002dbfc215 -2018,Córdoba,II.1.1,1.87824,TJ,N2O,3.9,kg/TJ,7.325136,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,5eb9ad3e-f951-3df7-89c9-9b002dbfc215 -2018,Entre Rios,II.1.1,0.21672,TJ,CO2,74100.0,kg/TJ,16058.952,Gas Oil combustion consumption by public passenger transport,AR-E,SESCO,annual,kg,4ae422fa-60c7-3057-a25e-edc610450bf1 -2018,Entre Rios,II.1.1,0.21672,TJ,CH4,3.9,kg/TJ,0.845208,Gas Oil combustion consumption by public passenger transport,AR-E,SESCO,annual,kg,71ab4a7b-48e7-3c90-82a7-2ebb5d7ff9a7 -2018,Entre Rios,II.1.1,0.21672,TJ,N2O,3.9,kg/TJ,0.845208,Gas Oil combustion consumption by public passenger transport,AR-E,SESCO,annual,kg,71ab4a7b-48e7-3c90-82a7-2ebb5d7ff9a7 -2018,La Pampa,II.1.1,4.1537999999999995,TJ,CO2,74100.0,kg/TJ,307796.57999999996,Gas Oil combustion consumption by public passenger transport,AR-L,SESCO,annual,kg,5f1d1992-16e3-388d-99a2-0f69b47a14ea -2018,La Pampa,II.1.1,4.1537999999999995,TJ,CH4,3.9,kg/TJ,16.19982,Gas Oil combustion consumption by public passenger transport,AR-L,SESCO,annual,kg,b60dd16b-bf34-3ebc-adb0-8a1d24144185 -2018,La Pampa,II.1.1,4.1537999999999995,TJ,N2O,3.9,kg/TJ,16.19982,Gas Oil combustion consumption by public passenger transport,AR-L,SESCO,annual,kg,b60dd16b-bf34-3ebc-adb0-8a1d24144185 -2018,Mendoza,II.1.1,0.03612,TJ,CO2,74100.0,kg/TJ,2676.4919999999997,Gas Oil combustion consumption by public passenger transport,AR-M,SESCO,annual,kg,14cca3ab-15f7-30c0-8660-60d68fc7b862 -2018,Mendoza,II.1.1,0.03612,TJ,CH4,3.9,kg/TJ,0.140868,Gas Oil combustion consumption by public passenger transport,AR-M,SESCO,annual,kg,984a4d7f-0f47-3c13-8ebc-3b59b250bc76 -2018,Mendoza,II.1.1,0.03612,TJ,N2O,3.9,kg/TJ,0.140868,Gas Oil combustion consumption by public passenger transport,AR-M,SESCO,annual,kg,984a4d7f-0f47-3c13-8ebc-3b59b250bc76 -2018,Neuquén,II.1.1,2.5284,TJ,CO2,74100.0,kg/TJ,187354.44,Gas Oil combustion consumption by public passenger transport,AR-Q,SESCO,annual,kg,8096f219-7d3c-3a5f-8a02-7c991fbb6cd2 -2018,Neuquén,II.1.1,2.5284,TJ,CH4,3.9,kg/TJ,9.860759999999999,Gas Oil combustion consumption by public passenger transport,AR-Q,SESCO,annual,kg,bf48c769-d642-3148-8ccf-b81cdd421726 -2018,Neuquén,II.1.1,2.5284,TJ,N2O,3.9,kg/TJ,9.860759999999999,Gas Oil combustion consumption by public passenger transport,AR-Q,SESCO,annual,kg,bf48c769-d642-3148-8ccf-b81cdd421726 -2018,Rio Negro,II.1.1,10.25808,TJ,CO2,74100.0,kg/TJ,760123.728,Gas Oil combustion consumption by public passenger transport,AR-R,SESCO,annual,kg,f7bd39f0-9424-3d2c-927d-b0b4e2bcabb0 -2018,Rio Negro,II.1.1,10.25808,TJ,CH4,3.9,kg/TJ,40.006512,Gas Oil combustion consumption by public passenger transport,AR-R,SESCO,annual,kg,decff439-b6b5-3965-bcf9-0477ade8fe81 -2018,Rio Negro,II.1.1,10.25808,TJ,N2O,3.9,kg/TJ,40.006512,Gas Oil combustion consumption by public passenger transport,AR-R,SESCO,annual,kg,decff439-b6b5-3965-bcf9-0477ade8fe81 -2018,Santa Fe,II.1.1,3.46752,TJ,CO2,74100.0,kg/TJ,256943.232,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,125341f8-153a-3bc6-aa20-f3392eba762c -2018,Santa Fe,II.1.1,3.46752,TJ,CH4,3.9,kg/TJ,13.523328,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,fb18f972-18c3-393a-91e4-a5feb5dfec1e -2018,Santa Fe,II.1.1,3.46752,TJ,N2O,3.9,kg/TJ,13.523328,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,fb18f972-18c3-393a-91e4-a5feb5dfec1e -2018,Capital Federal,II.1.1,2.12443,TJ,CO2,73300.0,kg/TJ,155720.71899999998,Naphtha combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,0a3fee22-9ddb-3ed4-9c27-d22868e12d4b -2018,Capital Federal,II.1.1,2.12443,TJ,CH4,0.5,kg/TJ,1.062215,Naphtha combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,fbdbfb95-ce02-3ce3-ba4e-5813fcfbac82 -2018,Capital Federal,II.1.1,2.12443,TJ,N2O,2.0,kg/TJ,4.24886,Naphtha combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,5f5b602f-2023-3563-b128-46ebc0756f06 -2018,Capital Federal,II.1.1,0.20559,TJ,CO2,73300.0,kg/TJ,15069.747,Naphtha combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,6bdb1e41-c0a3-38bf-8d04-27c3d48cb5d5 -2018,Capital Federal,II.1.1,0.20559,TJ,CH4,0.5,kg/TJ,0.102795,Naphtha combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,add6eb63-0b97-3153-8039-49506d3858c3 -2018,Capital Federal,II.1.1,0.20559,TJ,N2O,2.0,kg/TJ,0.41118,Naphtha combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,6df79a1b-4af4-3c68-9a92-7f5055403ad1 -2018,Chubut,II.1.1,0.10398948000000001,TJ,CO2,74100.0,kg/TJ,7705.620468000001,Gas Oil combustion consumption by freight transport,AR-U,SESCO,annual,kg,de78a39f-80d3-373f-880d-6e477e38804c -2018,Chubut,II.1.1,0.10398948000000001,TJ,CH4,3.9,kg/TJ,0.405558972,Gas Oil combustion consumption by freight transport,AR-U,SESCO,annual,kg,73f0fc6e-1e65-3215-b3b8-ef40566e986d -2018,Chubut,II.1.1,0.10398948000000001,TJ,N2O,3.9,kg/TJ,0.405558972,Gas Oil combustion consumption by freight transport,AR-U,SESCO,annual,kg,73f0fc6e-1e65-3215-b3b8-ef40566e986d -2018,Chubut,II.1.1,2.57990712,TJ,CO2,74100.0,kg/TJ,191171.117592,Gas Oil combustion consumption by freight transport,AR-U,SESCO,annual,kg,17080a63-b1bb-3ec6-937c-2037ba0c2d10 -2018,Chubut,II.1.1,2.57990712,TJ,CH4,3.9,kg/TJ,10.061637768,Gas Oil combustion consumption by freight transport,AR-U,SESCO,annual,kg,370c67cd-cd55-3083-93eb-76b60e8ea9f3 -2018,Chubut,II.1.1,2.57990712,TJ,N2O,3.9,kg/TJ,10.061637768,Gas Oil combustion consumption by freight transport,AR-U,SESCO,annual,kg,370c67cd-cd55-3083-93eb-76b60e8ea9f3 -2018,Buenos Aires,II.5.1,69.770713992,TJ,CO2,74100.0,kg/TJ,5170009.9068072,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,662bd11d-54ff-3c31-a3a4-5b54e87816f1 -2018,Buenos Aires,II.5.1,69.770713992,TJ,CH4,3.9,kg/TJ,272.1057845688,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,8195e1f4-6742-34bd-acfb-4c32aa5d23a6 -2018,Buenos Aires,II.5.1,69.770713992,TJ,N2O,3.9,kg/TJ,272.1057845688,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,8195e1f4-6742-34bd-acfb-4c32aa5d23a6 -2018,Corrientes,II.5.1,2.212400568,TJ,CO2,74100.0,kg/TJ,163938.88208880002,Gas Oil combustion consumption by agriculture machines,AR-W,SESCO,annual,kg,a8d7a7fe-bf89-31fc-9300-f979411bcc17 -2018,Corrientes,II.5.1,2.212400568,TJ,CH4,3.9,kg/TJ,8.6283622152,Gas Oil combustion consumption by agriculture machines,AR-W,SESCO,annual,kg,e4ed1d8d-1937-3e94-8838-38be9b1a44ee -2018,Corrientes,II.5.1,2.212400568,TJ,N2O,3.9,kg/TJ,8.6283622152,Gas Oil combustion consumption by agriculture machines,AR-W,SESCO,annual,kg,e4ed1d8d-1937-3e94-8838-38be9b1a44ee -2018,Córdoba,II.5.1,118.283290944,TJ,CO2,74100.0,kg/TJ,8764791.8589504,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,edef4a5e-1983-3c39-b503-89314ebe6532 -2018,Córdoba,II.5.1,118.283290944,TJ,CH4,3.9,kg/TJ,461.30483468159997,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,2c8d2e8a-0df4-3f3a-9fba-40574ef1601d -2018,Córdoba,II.5.1,118.283290944,TJ,N2O,3.9,kg/TJ,461.30483468159997,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,2c8d2e8a-0df4-3f3a-9fba-40574ef1601d -2018,Entre Rios,II.5.1,94.837531656,TJ,CO2,74100.0,kg/TJ,7027461.0957096,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,a9a13651-d932-38d1-8791-575f43050683 -2018,Entre Rios,II.5.1,94.837531656,TJ,CH4,3.9,kg/TJ,369.86637345839995,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,84de0141-5e6b-3740-bcde-0c74cb1493b7 -2018,Entre Rios,II.5.1,94.837531656,TJ,N2O,3.9,kg/TJ,369.86637345839995,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,84de0141-5e6b-3740-bcde-0c74cb1493b7 -2018,La Pampa,II.5.1,20.071526412,TJ,CO2,74100.0,kg/TJ,1487300.1071292001,Gas Oil combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,738f9a68-97b3-3d2a-906a-eb969850ae20 -2018,La Pampa,II.5.1,20.071526412,TJ,CH4,3.9,kg/TJ,78.2789530068,Gas Oil combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,61d1a987-5bc5-3796-a3d0-03d97e0ea4a4 -2018,La Pampa,II.5.1,20.071526412,TJ,N2O,3.9,kg/TJ,78.2789530068,Gas Oil combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,61d1a987-5bc5-3796-a3d0-03d97e0ea4a4 -2018,Santa Fe,II.5.1,92.64480926399999,TJ,CO2,74100.0,kg/TJ,6864980.366462399,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,7f1e692b-8982-3fef-a6d0-9b8f75aaf4d7 -2018,Santa Fe,II.5.1,92.64480926399999,TJ,CH4,3.9,kg/TJ,361.31475612959997,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,0392b918-4658-357b-836c-f4d074b6a833 -2018,Santa Fe,II.5.1,92.64480926399999,TJ,N2O,3.9,kg/TJ,361.31475612959997,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,0392b918-4658-357b-836c-f4d074b6a833 -2018,Santiago del Estero,II.5.1,29.305073447999998,TJ,CO2,74100.0,kg/TJ,2171505.9424968,Gas Oil combustion consumption by agriculture machines,AR-G,SESCO,annual,kg,341a2be2-5447-3d9f-9a3d-2d6018a5ce66 -2018,Santiago del Estero,II.5.1,29.305073447999998,TJ,CH4,3.9,kg/TJ,114.28978644719999,Gas Oil combustion consumption by agriculture machines,AR-G,SESCO,annual,kg,ce5846c9-f5ea-39bd-947d-c0a6d1fab464 -2018,Santiago del Estero,II.5.1,29.305073447999998,TJ,N2O,3.9,kg/TJ,114.28978644719999,Gas Oil combustion consumption by agriculture machines,AR-G,SESCO,annual,kg,ce5846c9-f5ea-39bd-947d-c0a6d1fab464 -2018,Tucuman,II.5.1,1.6384754400000001,TJ,CO2,74100.0,kg/TJ,121411.030104,Gas Oil combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,e44d2c02-d842-35f5-812b-4edf08bc3d25 -2018,Tucuman,II.5.1,1.6384754400000001,TJ,CH4,3.9,kg/TJ,6.390054216,Gas Oil combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,b39f1746-0937-312f-8ae5-33b8c9f6c418 -2018,Tucuman,II.5.1,1.6384754400000001,TJ,N2O,3.9,kg/TJ,6.390054216,Gas Oil combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,b39f1746-0937-312f-8ae5-33b8c9f6c418 -2018,Córdoba,II.5.1,2.4308579399999997,TJ,CO2,74100.0,kg/TJ,180126.57335399996,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,da609c03-a700-32b0-8edb-bb811340b6b6 -2018,Córdoba,II.5.1,2.4308579399999997,TJ,CH4,3.9,kg/TJ,9.480345965999998,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,792512eb-c034-329f-8e31-e8d52b8f6d16 -2018,Córdoba,II.5.1,2.4308579399999997,TJ,N2O,3.9,kg/TJ,9.480345965999998,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,792512eb-c034-329f-8e31-e8d52b8f6d16 -2018,Entre Rios,II.5.1,3.06909834,TJ,CO2,74100.0,kg/TJ,227420.186994,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,67859440-38df-384d-ab63-96b512351b68 -2018,Entre Rios,II.5.1,3.06909834,TJ,CH4,3.9,kg/TJ,11.969483526,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,7bedbd3c-fd28-34ad-b422-86d55f1a7992 -2018,Entre Rios,II.5.1,3.06909834,TJ,N2O,3.9,kg/TJ,11.969483526,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,7bedbd3c-fd28-34ad-b422-86d55f1a7992 -2018,La Pampa,II.5.1,3.9985815240000004,TJ,CO2,74100.0,kg/TJ,296294.89092840004,Gas Oil combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,e72db134-096f-389c-9053-d9da18ce9bb1 -2018,La Pampa,II.5.1,3.9985815240000004,TJ,CH4,3.9,kg/TJ,15.594467943600002,Gas Oil combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,702066bf-f968-3e17-8785-0513b37f6eaf -2018,La Pampa,II.5.1,3.9985815240000004,TJ,N2O,3.9,kg/TJ,15.594467943600002,Gas Oil combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,702066bf-f968-3e17-8785-0513b37f6eaf -2018,Santa Fe,II.5.1,3.7147902959999994,TJ,CO2,74100.0,kg/TJ,275265.96093359997,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,19c9e276-be4d-369e-a174-91bf00322c36 -2018,Santa Fe,II.5.1,3.7147902959999994,TJ,CH4,3.9,kg/TJ,14.487682154399998,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,ab40b81a-7a4b-3584-b3da-802c63f98c8a -2018,Santa Fe,II.5.1,3.7147902959999994,TJ,N2O,3.9,kg/TJ,14.487682154399998,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,ab40b81a-7a4b-3584-b3da-802c63f98c8a -2018,Buenos Aires,II.1.1,20.622229991999998,TJ,CO2,74100.0,kg/TJ,1528107.2424072,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,9f80882e-d3a3-32da-9491-975f611d5e94 -2018,Buenos Aires,II.1.1,20.622229991999998,TJ,CH4,3.9,kg/TJ,80.42669696879999,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,d2f1fc35-be79-3dbe-ac63-9f02000b598b -2018,Buenos Aires,II.1.1,20.622229991999998,TJ,N2O,3.9,kg/TJ,80.42669696879999,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,d2f1fc35-be79-3dbe-ac63-9f02000b598b -2018,Chaco,II.1.1,1.9647365639999999,TJ,CO2,74100.0,kg/TJ,145586.97939239998,Gas Oil combustion consumption by public passenger transport,AR-H,SESCO,annual,kg,131b0116-515d-3a33-ae7a-c3014fd7d83c -2018,Chaco,II.1.1,1.9647365639999999,TJ,CH4,3.9,kg/TJ,7.662472599599999,Gas Oil combustion consumption by public passenger transport,AR-H,SESCO,annual,kg,6c32fc78-508e-38e7-b6af-1667c1b74471 -2018,Chaco,II.1.1,1.9647365639999999,TJ,N2O,3.9,kg/TJ,7.662472599599999,Gas Oil combustion consumption by public passenger transport,AR-H,SESCO,annual,kg,6c32fc78-508e-38e7-b6af-1667c1b74471 -2018,Corrientes,II.1.1,6.457418016,TJ,CO2,74100.0,kg/TJ,478494.6749856,Gas Oil combustion consumption by public passenger transport,AR-W,SESCO,annual,kg,44bd3a4e-ad1f-3452-aeac-2a51dcf396c5 -2018,Corrientes,II.1.1,6.457418016,TJ,CH4,3.9,kg/TJ,25.1839302624,Gas Oil combustion consumption by public passenger transport,AR-W,SESCO,annual,kg,24410092-c403-3fbe-9fba-a315f6148dcf -2018,Corrientes,II.1.1,6.457418016,TJ,N2O,3.9,kg/TJ,25.1839302624,Gas Oil combustion consumption by public passenger transport,AR-W,SESCO,annual,kg,24410092-c403-3fbe-9fba-a315f6148dcf -2018,Córdoba,II.1.1,45.605361228,TJ,CO2,74100.0,kg/TJ,3379357.2669948,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,fc720e79-9bca-3e69-a76e-56a87491b1cf -2018,Córdoba,II.1.1,45.605361228,TJ,CH4,3.9,kg/TJ,177.86090878919998,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,67b4522a-3b5c-3088-900e-a30ac3655ad1 -2018,Córdoba,II.1.1,45.605361228,TJ,N2O,3.9,kg/TJ,177.86090878919998,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,67b4522a-3b5c-3088-900e-a30ac3655ad1 -2018,Entre Rios,II.1.1,16.619169588,TJ,CO2,74100.0,kg/TJ,1231480.4664707999,Gas Oil combustion consumption by public passenger transport,AR-E,SESCO,annual,kg,dcb06cb4-d6da-31a2-9e6e-f030cb6bdddc -2018,Entre Rios,II.1.1,16.619169588,TJ,CH4,3.9,kg/TJ,64.81476139319999,Gas Oil combustion consumption by public passenger transport,AR-E,SESCO,annual,kg,2d590843-78ed-3827-bf99-a6e07af21e1f -2018,Entre Rios,II.1.1,16.619169588,TJ,N2O,3.9,kg/TJ,64.81476139319999,Gas Oil combustion consumption by public passenger transport,AR-E,SESCO,annual,kg,2d590843-78ed-3827-bf99-a6e07af21e1f -2018,Jujuy,II.1.1,19.646245920000002,TJ,CO2,74100.0,kg/TJ,1455786.8226720002,Gas Oil combustion consumption by public passenger transport,AR-Y,SESCO,annual,kg,27c6116c-884c-3206-9dae-c4a8b80ede5b -2018,Jujuy,II.1.1,19.646245920000002,TJ,CH4,3.9,kg/TJ,76.620359088,Gas Oil combustion consumption by public passenger transport,AR-Y,SESCO,annual,kg,323c9f3a-3010-3f27-b198-4a547ae7a293 -2018,Jujuy,II.1.1,19.646245920000002,TJ,N2O,3.9,kg/TJ,76.620359088,Gas Oil combustion consumption by public passenger transport,AR-Y,SESCO,annual,kg,323c9f3a-3010-3f27-b198-4a547ae7a293 -2018,Salta,II.1.1,13.89133662,TJ,CO2,74100.0,kg/TJ,1029348.043542,Gas Oil combustion consumption by public passenger transport,AR-A,SESCO,annual,kg,5627dd27-6e8b-30ae-bd32-1fc3906672c6 -2018,Salta,II.1.1,13.89133662,TJ,CH4,3.9,kg/TJ,54.176212818,Gas Oil combustion consumption by public passenger transport,AR-A,SESCO,annual,kg,26b47f93-a5c0-33b2-8854-4faa5bd23a4d -2018,Salta,II.1.1,13.89133662,TJ,N2O,3.9,kg/TJ,54.176212818,Gas Oil combustion consumption by public passenger transport,AR-A,SESCO,annual,kg,26b47f93-a5c0-33b2-8854-4faa5bd23a4d -2018,Santa Fe,II.1.1,41.86300776,TJ,CO2,74100.0,kg/TJ,3102048.875016,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,a00b54c0-90ee-39f2-b971-61df1aec854c -2018,Santa Fe,II.1.1,41.86300776,TJ,CH4,3.9,kg/TJ,163.265730264,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,c9f1d04e-f924-3530-8db9-e5e6400e46fc -2018,Santa Fe,II.1.1,41.86300776,TJ,N2O,3.9,kg/TJ,163.265730264,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,c9f1d04e-f924-3530-8db9-e5e6400e46fc -2018,Santiago del Estero,II.1.1,18.941291879999998,TJ,CO2,74100.0,kg/TJ,1403549.728308,Gas Oil combustion consumption by public passenger transport,AR-G,SESCO,annual,kg,4a21298f-a638-3b32-a6e2-c9852b7b741a -2018,Santiago del Estero,II.1.1,18.941291879999998,TJ,CH4,3.9,kg/TJ,73.87103833199998,Gas Oil combustion consumption by public passenger transport,AR-G,SESCO,annual,kg,4b5da99b-6086-34ac-9721-89b1385b289b -2018,Santiago del Estero,II.1.1,18.941291879999998,TJ,N2O,3.9,kg/TJ,73.87103833199998,Gas Oil combustion consumption by public passenger transport,AR-G,SESCO,annual,kg,4b5da99b-6086-34ac-9721-89b1385b289b -2018,Tucuman,II.1.1,5.390523516000001,TJ,CO2,74100.0,kg/TJ,399437.7925356001,Gas Oil combustion consumption by public passenger transport,AR-T,SESCO,annual,kg,dc157680-778d-3104-9278-6dff0647e95d -2018,Tucuman,II.1.1,5.390523516000001,TJ,CH4,3.9,kg/TJ,21.0230417124,Gas Oil combustion consumption by public passenger transport,AR-T,SESCO,annual,kg,1c66adf7-767e-3e17-affe-62670c97c6c1 -2018,Tucuman,II.1.1,5.390523516000001,TJ,N2O,3.9,kg/TJ,21.0230417124,Gas Oil combustion consumption by public passenger transport,AR-T,SESCO,annual,kg,1c66adf7-767e-3e17-affe-62670c97c6c1 -2018,Buenos Aires,II.1.1,2.7527052,TJ,CO2,74100.0,kg/TJ,203975.45531999998,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,78feb110-c265-33af-91e8-c7c54d4feae5 -2018,Buenos Aires,II.1.1,2.7527052,TJ,CH4,3.9,kg/TJ,10.73555028,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,cda57bb8-2b0d-3362-953b-30e2850e4996 -2018,Buenos Aires,II.1.1,2.7527052,TJ,N2O,3.9,kg/TJ,10.73555028,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,cda57bb8-2b0d-3362-953b-30e2850e4996 -2018,Corrientes,II.1.1,1.287580476,TJ,CO2,74100.0,kg/TJ,95409.7132716,Gas Oil combustion consumption by public passenger transport,AR-W,SESCO,annual,kg,bb4cbc86-6d35-39c7-8871-b9c4e10619ac -2018,Corrientes,II.1.1,1.287580476,TJ,CH4,3.9,kg/TJ,5.0215638564,Gas Oil combustion consumption by public passenger transport,AR-W,SESCO,annual,kg,a633401c-de33-39be-ba43-c201db9dda79 -2018,Corrientes,II.1.1,1.287580476,TJ,N2O,3.9,kg/TJ,5.0215638564,Gas Oil combustion consumption by public passenger transport,AR-W,SESCO,annual,kg,a633401c-de33-39be-ba43-c201db9dda79 -2018,Córdoba,II.1.1,5.003573567999999,TJ,CO2,74100.0,kg/TJ,370764.80138879997,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,b4b0f800-c8c3-340d-a49e-d70e001ac18b -2018,Córdoba,II.1.1,5.003573567999999,TJ,CH4,3.9,kg/TJ,19.513936915199995,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,93130626-5bb3-3f78-8cae-1d0f534e20e3 -2018,Córdoba,II.1.1,5.003573567999999,TJ,N2O,3.9,kg/TJ,19.513936915199995,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,93130626-5bb3-3f78-8cae-1d0f534e20e3 -2018,Entre Rios,II.1.1,1.145343528,TJ,CO2,74100.0,kg/TJ,84869.95542479999,Gas Oil combustion consumption by public passenger transport,AR-E,SESCO,annual,kg,479f2808-8f62-3e70-bf1e-1da5ebae29db -2018,Entre Rios,II.1.1,1.145343528,TJ,CH4,3.9,kg/TJ,4.4668397592,Gas Oil combustion consumption by public passenger transport,AR-E,SESCO,annual,kg,cf7ad199-4de7-3993-b946-62fea143f9aa -2018,Entre Rios,II.1.1,1.145343528,TJ,N2O,3.9,kg/TJ,4.4668397592,Gas Oil combustion consumption by public passenger transport,AR-E,SESCO,annual,kg,cf7ad199-4de7-3993-b946-62fea143f9aa -2018,Jujuy,II.1.1,1.036145544,TJ,CO2,74100.0,kg/TJ,76778.3848104,Gas Oil combustion consumption by public passenger transport,AR-Y,SESCO,annual,kg,2d1b951b-017d-38d6-89b7-49638725f819 -2018,Jujuy,II.1.1,1.036145544,TJ,CH4,3.9,kg/TJ,4.0409676216,Gas Oil combustion consumption by public passenger transport,AR-Y,SESCO,annual,kg,1bc3f84c-fab5-3f84-9489-5a11f1b66754 -2018,Jujuy,II.1.1,1.036145544,TJ,N2O,3.9,kg/TJ,4.0409676216,Gas Oil combustion consumption by public passenger transport,AR-Y,SESCO,annual,kg,1bc3f84c-fab5-3f84-9489-5a11f1b66754 -2018,Santa Fe,II.1.1,7.9632861,TJ,CO2,74100.0,kg/TJ,590079.5000100001,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,ecccd319-bc69-3784-80c5-ff0ea1ad26f6 -2018,Santa Fe,II.1.1,7.9632861,TJ,CH4,3.9,kg/TJ,31.05681579,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,3482d095-d41e-3db8-af4d-d782e65bd0bb -2018,Santa Fe,II.1.1,7.9632861,TJ,N2O,3.9,kg/TJ,31.05681579,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,3482d095-d41e-3db8-af4d-d782e65bd0bb -2018,Santiago del Estero,II.1.1,2.1060416159999997,TJ,CO2,74100.0,kg/TJ,156057.6837456,Gas Oil combustion consumption by public passenger transport,AR-G,SESCO,annual,kg,a29d14da-e163-3a33-b2e0-ec751442eaf3 -2018,Santiago del Estero,II.1.1,2.1060416159999997,TJ,CH4,3.9,kg/TJ,8.213562302399998,Gas Oil combustion consumption by public passenger transport,AR-G,SESCO,annual,kg,e797a2fc-4a18-367c-a959-9f36561906ad -2018,Santiago del Estero,II.1.1,2.1060416159999997,TJ,N2O,3.9,kg/TJ,8.213562302399998,Gas Oil combustion consumption by public passenger transport,AR-G,SESCO,annual,kg,e797a2fc-4a18-367c-a959-9f36561906ad -2018,Tucuman,II.1.1,0.928702992,TJ,CO2,74100.0,kg/TJ,68816.89170719999,Gas Oil combustion consumption by public passenger transport,AR-T,SESCO,annual,kg,2b47b649-d913-393b-a41d-d1834b37c414 -2018,Tucuman,II.1.1,0.928702992,TJ,CH4,3.9,kg/TJ,3.6219416688,Gas Oil combustion consumption by public passenger transport,AR-T,SESCO,annual,kg,cf2661c6-3675-35ea-b75e-5df2fc0e310f -2018,Tucuman,II.1.1,0.928702992,TJ,N2O,3.9,kg/TJ,3.6219416688,Gas Oil combustion consumption by public passenger transport,AR-T,SESCO,annual,kg,cf2661c6-3675-35ea-b75e-5df2fc0e310f -2018,Buenos Aires,II.5.1,976.3597199999999,TJ,CO2,74100.0,kg/TJ,72348255.25199999,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,faa00e21-a8ed-3dcb-b5c5-df57a415232c -2018,Buenos Aires,II.5.1,976.3597199999999,TJ,CH4,3.9,kg/TJ,3807.8029079999997,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,e505ef51-825a-39d7-afb0-3109cb47574b -2018,Buenos Aires,II.5.1,976.3597199999999,TJ,N2O,3.9,kg/TJ,3807.8029079999997,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,e505ef51-825a-39d7-afb0-3109cb47574b -2018,Chaco,II.5.1,188.76312,TJ,CO2,74100.0,kg/TJ,13987347.192,Gas Oil combustion consumption by agriculture machines,AR-H,SESCO,annual,kg,0be4b689-13eb-3757-9037-0874500b7c14 -2018,Chaco,II.5.1,188.76312,TJ,CH4,3.9,kg/TJ,736.176168,Gas Oil combustion consumption by agriculture machines,AR-H,SESCO,annual,kg,e753406c-2200-36c1-a65f-2496a93f5b82 -2018,Chaco,II.5.1,188.76312,TJ,N2O,3.9,kg/TJ,736.176168,Gas Oil combustion consumption by agriculture machines,AR-H,SESCO,annual,kg,e753406c-2200-36c1-a65f-2496a93f5b82 -2018,Corrientes,II.5.1,65.88288,TJ,CO2,74100.0,kg/TJ,4881921.408,Gas Oil combustion consumption by agriculture machines,AR-W,SESCO,annual,kg,80f37125-5042-3412-a450-be55389608b6 -2018,Corrientes,II.5.1,65.88288,TJ,CH4,3.9,kg/TJ,256.94323199999997,Gas Oil combustion consumption by agriculture machines,AR-W,SESCO,annual,kg,4b61b60c-3cc8-3c08-9ba6-d5eb77c381e1 -2018,Corrientes,II.5.1,65.88288,TJ,N2O,3.9,kg/TJ,256.94323199999997,Gas Oil combustion consumption by agriculture machines,AR-W,SESCO,annual,kg,4b61b60c-3cc8-3c08-9ba6-d5eb77c381e1 -2018,Córdoba,II.5.1,871.7923199999999,TJ,CO2,74100.0,kg/TJ,64599810.91199999,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,7db4de40-872c-340c-8c6a-3595c075ac26 -2018,Córdoba,II.5.1,871.7923199999999,TJ,CH4,3.9,kg/TJ,3399.9900479999997,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,091184cb-a1e4-3878-a8be-b11d9ab6f7a0 -2018,Córdoba,II.5.1,871.7923199999999,TJ,N2O,3.9,kg/TJ,3399.9900479999997,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,091184cb-a1e4-3878-a8be-b11d9ab6f7a0 -2018,Entre Rios,II.5.1,60.356519999999996,TJ,CO2,74100.0,kg/TJ,4472418.131999999,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,0bf037d7-0299-30e9-baab-d19689b188e4 -2018,Entre Rios,II.5.1,60.356519999999996,TJ,CH4,3.9,kg/TJ,235.39042799999999,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,6f6f14f2-46f9-358e-bdd5-0c44d2655648 -2018,Entre Rios,II.5.1,60.356519999999996,TJ,N2O,3.9,kg/TJ,235.39042799999999,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,6f6f14f2-46f9-358e-bdd5-0c44d2655648 -2018,Mendoza,II.5.1,242.25683999999998,TJ,CO2,74100.0,kg/TJ,17951231.844,Gas Oil combustion consumption by agriculture machines,AR-M,SESCO,annual,kg,cd805883-98c7-3571-9a07-f25ceb06e603 -2018,Mendoza,II.5.1,242.25683999999998,TJ,CH4,3.9,kg/TJ,944.8016759999999,Gas Oil combustion consumption by agriculture machines,AR-M,SESCO,annual,kg,b1599e20-3f08-3659-97c8-2dfcd3ea380a -2018,Mendoza,II.5.1,242.25683999999998,TJ,N2O,3.9,kg/TJ,944.8016759999999,Gas Oil combustion consumption by agriculture machines,AR-M,SESCO,annual,kg,b1599e20-3f08-3659-97c8-2dfcd3ea380a -2018,Santa Fe,II.5.1,1243.7921999999999,TJ,CO2,74100.0,kg/TJ,92165002.02,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,46e81395-e04a-3e9b-9fcb-59efd6420654 -2018,Santa Fe,II.5.1,1243.7921999999999,TJ,CH4,3.9,kg/TJ,4850.78958,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,24e5a7aa-979b-3c67-a07a-4487db036c58 -2018,Santa Fe,II.5.1,1243.7921999999999,TJ,N2O,3.9,kg/TJ,4850.78958,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,24e5a7aa-979b-3c67-a07a-4487db036c58 -2018,Tucuman,II.5.1,86.54352,TJ,CO2,74100.0,kg/TJ,6412874.832,Gas Oil combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,09e1a690-26ff-30dc-bcdc-65f772ae1f1d -2018,Tucuman,II.5.1,86.54352,TJ,CH4,3.9,kg/TJ,337.519728,Gas Oil combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,5d79c1b9-b1de-3d3e-85f6-3bb57fe2e841 -2018,Tucuman,II.5.1,86.54352,TJ,N2O,3.9,kg/TJ,337.519728,Gas Oil combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,5d79c1b9-b1de-3d3e-85f6-3bb57fe2e841 -2018,Buenos Aires,II.5.1,40.23768,TJ,CO2,74100.0,kg/TJ,2981612.088,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,0503953c-dbfc-3295-99a7-1c0b0a74998f -2018,Buenos Aires,II.5.1,40.23768,TJ,CH4,3.9,kg/TJ,156.926952,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,0bf16a5e-b30b-35b4-bc4f-fe1ed0029788 -2018,Buenos Aires,II.5.1,40.23768,TJ,N2O,3.9,kg/TJ,156.926952,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,0bf16a5e-b30b-35b4-bc4f-fe1ed0029788 -2018,Chaco,II.5.1,52.33788,TJ,CO2,74100.0,kg/TJ,3878236.908,Gas Oil combustion consumption by agriculture machines,AR-H,SESCO,annual,kg,3f628eda-42e9-323e-9305-f3cdaecc42dd -2018,Chaco,II.5.1,52.33788,TJ,CH4,3.9,kg/TJ,204.117732,Gas Oil combustion consumption by agriculture machines,AR-H,SESCO,annual,kg,eb765062-9e34-3170-8d99-6b0da8914569 -2018,Chaco,II.5.1,52.33788,TJ,N2O,3.9,kg/TJ,204.117732,Gas Oil combustion consumption by agriculture machines,AR-H,SESCO,annual,kg,eb765062-9e34-3170-8d99-6b0da8914569 -2018,Corrientes,II.5.1,21.672,TJ,CO2,74100.0,kg/TJ,1605895.2,Gas Oil combustion consumption by agriculture machines,AR-W,SESCO,annual,kg,81bbb153-432d-3f9a-9c77-a52ccd964fde -2018,Corrientes,II.5.1,21.672,TJ,CH4,3.9,kg/TJ,84.5208,Gas Oil combustion consumption by agriculture machines,AR-W,SESCO,annual,kg,23d70b2c-fc53-3086-b7f8-bc4ed86dac53 -2018,Corrientes,II.5.1,21.672,TJ,N2O,3.9,kg/TJ,84.5208,Gas Oil combustion consumption by agriculture machines,AR-W,SESCO,annual,kg,23d70b2c-fc53-3086-b7f8-bc4ed86dac53 -2018,Córdoba,II.5.1,55.48032,TJ,CO2,74100.0,kg/TJ,4111091.712,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,da751f5b-d64e-39d8-b553-ecb63b5b4e53 -2018,Córdoba,II.5.1,55.48032,TJ,CH4,3.9,kg/TJ,216.373248,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,85a9fc2a-f876-34b5-8431-0c93ddbe735e -2018,Córdoba,II.5.1,55.48032,TJ,N2O,3.9,kg/TJ,216.373248,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,85a9fc2a-f876-34b5-8431-0c93ddbe735e -2018,Mendoza,II.5.1,80.15028,TJ,CO2,74100.0,kg/TJ,5939135.748,Gas Oil combustion consumption by agriculture machines,AR-M,SESCO,annual,kg,069ad12a-833e-3622-a190-358ecf869900 -2018,Mendoza,II.5.1,80.15028,TJ,CH4,3.9,kg/TJ,312.58609199999995,Gas Oil combustion consumption by agriculture machines,AR-M,SESCO,annual,kg,7f43633a-9cba-3c59-8ed7-49e2ad87a21b -2018,Mendoza,II.5.1,80.15028,TJ,N2O,3.9,kg/TJ,312.58609199999995,Gas Oil combustion consumption by agriculture machines,AR-M,SESCO,annual,kg,7f43633a-9cba-3c59-8ed7-49e2ad87a21b -2018,Santa Fe,II.5.1,57.2502,TJ,CO2,74100.0,kg/TJ,4242239.82,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,5d2975c2-11f6-3890-8119-7f065c7096e4 -2018,Santa Fe,II.5.1,57.2502,TJ,CH4,3.9,kg/TJ,223.27578,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,cf9ce32c-695d-363d-8291-8189a910d337 -2018,Santa Fe,II.5.1,57.2502,TJ,N2O,3.9,kg/TJ,223.27578,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,cf9ce32c-695d-363d-8291-8189a910d337 -2018,Tucuman,II.5.1,21.81648,TJ,CO2,74100.0,kg/TJ,1616601.1679999998,Gas Oil combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,37e804dc-a7e2-3db3-8af3-13411c3da411 -2018,Tucuman,II.5.1,21.81648,TJ,CH4,3.9,kg/TJ,85.084272,Gas Oil combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,eb4ce6d6-a309-3a27-b4a8-d07a7b965d3f -2018,Tucuman,II.5.1,21.81648,TJ,N2O,3.9,kg/TJ,85.084272,Gas Oil combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,eb4ce6d6-a309-3a27-b4a8-d07a7b965d3f -2018,Buenos Aires,II.5.1,14.048649999999999,TJ,CO2,73300.0,kg/TJ,1029766.0449999999,Naphtha combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,23540ab7-dec6-37d7-8194-44faa06ca21b -2018,Buenos Aires,II.5.1,14.048649999999999,TJ,CH4,0.5,kg/TJ,7.024324999999999,Naphtha combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,55b4db4a-6cdf-3c4a-a85b-295685881323 -2018,Buenos Aires,II.5.1,14.048649999999999,TJ,N2O,2.0,kg/TJ,28.097299999999997,Naphtha combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,f3e82cae-e5bc-364f-ab78-903cf52b50bf -2018,Córdoba,II.5.1,5.68799,TJ,CO2,73300.0,kg/TJ,416929.667,Naphtha combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,ca5b24c9-a609-3baf-8d65-182815ca2400 -2018,Córdoba,II.5.1,5.68799,TJ,CH4,0.5,kg/TJ,2.843995,Naphtha combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,20c2d271-9c4c-3ed4-8ca5-7f99b03534aa -2018,Córdoba,II.5.1,5.68799,TJ,N2O,2.0,kg/TJ,11.37598,Naphtha combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,6bf6fcac-20f0-3c01-8ebd-1433f0427848 -2018,Santa Fe,II.5.1,31.352475,TJ,CO2,73300.0,kg/TJ,2298136.4175,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,b42ed581-09e7-3e0b-a319-5496cb345e36 -2018,Santa Fe,II.5.1,31.352475,TJ,CH4,0.5,kg/TJ,15.6762375,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,adec9bb1-4595-3a87-b039-2fa77fc220e3 -2018,Santa Fe,II.5.1,31.352475,TJ,N2O,2.0,kg/TJ,62.70495,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,8fc8c276-279a-33d6-a83c-8308d33127a7 -2018,Tucuman,II.5.1,13.466145,TJ,CO2,73300.0,kg/TJ,987068.4284999999,Naphtha combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,27741f9e-a499-304c-8094-1061bc1053ec -2018,Tucuman,II.5.1,13.466145,TJ,CH4,0.5,kg/TJ,6.7330725,Naphtha combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,85416dcf-d9c4-3db5-8dca-5098d84ade1f -2018,Tucuman,II.5.1,13.466145,TJ,N2O,2.0,kg/TJ,26.93229,Naphtha combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,0f84ac0d-acbc-3d1d-936d-f454fa7dda6b -2018,Buenos Aires,II.5.1,2.6041399999999997,TJ,CO2,73300.0,kg/TJ,190883.46199999997,Naphtha combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,f860fbe5-cf27-36bd-92ca-9c493efc04c2 -2018,Buenos Aires,II.5.1,2.6041399999999997,TJ,CH4,0.5,kg/TJ,1.3020699999999998,Naphtha combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,614df1b9-db16-3d8b-ae23-37b35c7c80b5 -2018,Buenos Aires,II.5.1,2.6041399999999997,TJ,N2O,2.0,kg/TJ,5.208279999999999,Naphtha combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,a8580636-70b4-307e-9f2b-0cc900c635e4 -2018,Córdoba,II.5.1,2.5013449999999997,TJ,CO2,73300.0,kg/TJ,183348.58849999998,Naphtha combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,e2099bcf-c629-3687-94a8-58b9d075f2f5 -2018,Córdoba,II.5.1,2.5013449999999997,TJ,CH4,0.5,kg/TJ,1.2506724999999999,Naphtha combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,749a4d01-5e50-33dc-b69c-3030e4fa1811 -2018,Córdoba,II.5.1,2.5013449999999997,TJ,N2O,2.0,kg/TJ,5.002689999999999,Naphtha combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,5ceb6be1-f743-3c8e-aeaa-7f9412d7ce4d -2018,Santa Fe,II.5.1,10.005379999999999,TJ,CO2,73300.0,kg/TJ,733394.3539999999,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,4d5ba5e1-b920-3106-acb8-7cf0e61273e4 -2018,Santa Fe,II.5.1,10.005379999999999,TJ,CH4,0.5,kg/TJ,5.002689999999999,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,e892f5eb-4968-3acc-9e56-5843381d2fd3 -2018,Santa Fe,II.5.1,10.005379999999999,TJ,N2O,2.0,kg/TJ,20.010759999999998,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,386b6a7a-28ca-36e9-85ce-8867b328d68f -2018,Tucuman,II.5.1,2.6041399999999997,TJ,CO2,73300.0,kg/TJ,190883.46199999997,Naphtha combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,f54542f0-663a-3fd1-a65d-ab830d720613 -2018,Tucuman,II.5.1,2.6041399999999997,TJ,CH4,0.5,kg/TJ,1.3020699999999998,Naphtha combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,d20905a3-6a3b-3d0c-a74b-dba2028f0404 -2018,Tucuman,II.5.1,2.6041399999999997,TJ,N2O,2.0,kg/TJ,5.208279999999999,Naphtha combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,9ddf500f-7d82-34f9-b0c8-85aa22121eb1 -2018,Buenos Aires,II.2.1,176.69904,TJ,CO2,74100.0,kg/TJ,13093398.864,Gas Oil combustion consumption by railway transport,AR-B,SESCO,annual,kg,e151d762-0f7a-3d04-9f66-9b5f9e7f32a2 -2018,Buenos Aires,II.2.1,176.69904,TJ,CH4,3.9,kg/TJ,689.126256,Gas Oil combustion consumption by railway transport,AR-B,SESCO,annual,kg,6481aae7-bbae-3e38-a764-cae9fd1b6326 -2018,Buenos Aires,II.2.1,176.69904,TJ,N2O,3.9,kg/TJ,689.126256,Gas Oil combustion consumption by railway transport,AR-B,SESCO,annual,kg,6481aae7-bbae-3e38-a764-cae9fd1b6326 -2018,Capital Federal,II.2.1,2.709,TJ,CO2,74100.0,kg/TJ,200736.9,Gas Oil combustion consumption by railway transport,AR-C,SESCO,annual,kg,23a5ada7-6b1a-31a0-91f7-1be76e2da253 -2018,Capital Federal,II.2.1,2.709,TJ,CH4,3.9,kg/TJ,10.5651,Gas Oil combustion consumption by railway transport,AR-C,SESCO,annual,kg,3b642f3e-23d3-3976-8709-314b4c84e4ab -2018,Capital Federal,II.2.1,2.709,TJ,N2O,3.9,kg/TJ,10.5651,Gas Oil combustion consumption by railway transport,AR-C,SESCO,annual,kg,3b642f3e-23d3-3976-8709-314b4c84e4ab -2018,La Pampa,II.2.1,52.51848,TJ,CO2,74100.0,kg/TJ,3891619.368,Gas Oil combustion consumption by railway transport,AR-L,SESCO,annual,kg,40143310-8ed6-320a-a34d-b389628f708e -2018,La Pampa,II.2.1,52.51848,TJ,CH4,3.9,kg/TJ,204.822072,Gas Oil combustion consumption by railway transport,AR-L,SESCO,annual,kg,6ca24daf-e5a8-346a-9cc5-bae5180ea3cb -2018,La Pampa,II.2.1,52.51848,TJ,N2O,3.9,kg/TJ,204.822072,Gas Oil combustion consumption by railway transport,AR-L,SESCO,annual,kg,6ca24daf-e5a8-346a-9cc5-bae5180ea3cb -2018,Santa Fe,II.2.1,150.40367999999998,TJ,CO2,74100.0,kg/TJ,11144912.688,Gas Oil combustion consumption by railway transport,AR-S,SESCO,annual,kg,eae535ee-37bd-38da-be56-fad299746cca -2018,Santa Fe,II.2.1,150.40367999999998,TJ,CH4,3.9,kg/TJ,586.5743519999999,Gas Oil combustion consumption by railway transport,AR-S,SESCO,annual,kg,dbb2e538-def4-34a1-88a3-313459a213c2 -2018,Santa Fe,II.2.1,150.40367999999998,TJ,N2O,3.9,kg/TJ,586.5743519999999,Gas Oil combustion consumption by railway transport,AR-S,SESCO,annual,kg,dbb2e538-def4-34a1-88a3-313459a213c2 -2018,Santiago del Estero,II.2.1,32.507999999999996,TJ,CO2,74100.0,kg/TJ,2408842.8,Gas Oil combustion consumption by railway transport,AR-G,SESCO,annual,kg,4615657c-0a0c-31a9-93c8-67d3ac2b4b17 -2018,Santiago del Estero,II.2.1,32.507999999999996,TJ,CH4,3.9,kg/TJ,126.78119999999998,Gas Oil combustion consumption by railway transport,AR-G,SESCO,annual,kg,0cbbaa25-9894-3b09-8a5f-61fe24cd0806 -2018,Santiago del Estero,II.2.1,32.507999999999996,TJ,N2O,3.9,kg/TJ,126.78119999999998,Gas Oil combustion consumption by railway transport,AR-G,SESCO,annual,kg,0cbbaa25-9894-3b09-8a5f-61fe24cd0806 -2018,Tucuman,II.2.1,13.0032,TJ,CO2,74100.0,kg/TJ,963537.12,Gas Oil combustion consumption by railway transport,AR-T,SESCO,annual,kg,1ad13d8a-2ad6-32a8-9257-8ecb63ab58fc -2018,Tucuman,II.2.1,13.0032,TJ,CH4,3.9,kg/TJ,50.71248,Gas Oil combustion consumption by railway transport,AR-T,SESCO,annual,kg,5e98c047-20a4-3965-9221-1e077fe86717 -2018,Tucuman,II.2.1,13.0032,TJ,N2O,3.9,kg/TJ,50.71248,Gas Oil combustion consumption by railway transport,AR-T,SESCO,annual,kg,5e98c047-20a4-3965-9221-1e077fe86717 -2018,Buenos Aires,II.1.1,1909.55604,TJ,CO2,74100.0,kg/TJ,141498102.56399998,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,c2f6e218-24af-3cb7-b373-ddcc1a2957f5 -2018,Buenos Aires,II.1.1,1909.55604,TJ,CH4,3.9,kg/TJ,7447.268556,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,3acda01d-d96e-310c-ba94-a39dbfc464b8 -2018,Buenos Aires,II.1.1,1909.55604,TJ,N2O,3.9,kg/TJ,7447.268556,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,3acda01d-d96e-310c-ba94-a39dbfc464b8 -2018,Capital Federal,II.1.1,335.013,TJ,CO2,74100.0,kg/TJ,24824463.299999997,Gas Oil combustion consumption by freight transport,AR-C,SESCO,annual,kg,3b0c1c2f-1787-3ed0-a19f-738d05ab56a8 -2018,Capital Federal,II.1.1,335.013,TJ,CH4,3.9,kg/TJ,1306.5506999999998,Gas Oil combustion consumption by freight transport,AR-C,SESCO,annual,kg,5e8d07ab-2a5d-3631-9694-dd25c63dc16c -2018,Capital Federal,II.1.1,335.013,TJ,N2O,3.9,kg/TJ,1306.5506999999998,Gas Oil combustion consumption by freight transport,AR-C,SESCO,annual,kg,5e8d07ab-2a5d-3631-9694-dd25c63dc16c -2018,Catamarca,II.1.1,20.5884,TJ,CO2,74100.0,kg/TJ,1525600.44,Gas Oil combustion consumption by freight transport,AR-K,SESCO,annual,kg,95878816-91d2-33cf-ad28-917f098c9741 -2018,Catamarca,II.1.1,20.5884,TJ,CH4,3.9,kg/TJ,80.29476,Gas Oil combustion consumption by freight transport,AR-K,SESCO,annual,kg,afb43165-3dd2-3dd5-aaed-26521ff15991 -2018,Catamarca,II.1.1,20.5884,TJ,N2O,3.9,kg/TJ,80.29476,Gas Oil combustion consumption by freight transport,AR-K,SESCO,annual,kg,afb43165-3dd2-3dd5-aaed-26521ff15991 -2018,Chaco,II.1.1,19.39644,TJ,CO2,74100.0,kg/TJ,1437276.204,Gas Oil combustion consumption by freight transport,AR-H,SESCO,annual,kg,3ac82718-165e-36fe-b44d-fc9003bcdca7 -2018,Chaco,II.1.1,19.39644,TJ,CH4,3.9,kg/TJ,75.64611599999999,Gas Oil combustion consumption by freight transport,AR-H,SESCO,annual,kg,d5ff4c52-c2c4-3168-88f6-85039a9945f0 -2018,Chaco,II.1.1,19.39644,TJ,N2O,3.9,kg/TJ,75.64611599999999,Gas Oil combustion consumption by freight transport,AR-H,SESCO,annual,kg,d5ff4c52-c2c4-3168-88f6-85039a9945f0 -2018,Chubut,II.1.1,19.46868,TJ,CO2,74100.0,kg/TJ,1442629.1879999998,Gas Oil combustion consumption by freight transport,AR-U,SESCO,annual,kg,211451a8-497b-3c02-9507-cc1fc0175b7d -2018,Chubut,II.1.1,19.46868,TJ,CH4,3.9,kg/TJ,75.927852,Gas Oil combustion consumption by freight transport,AR-U,SESCO,annual,kg,c4a5b13f-ba3b-3173-a170-43c5d9815f38 -2018,Chubut,II.1.1,19.46868,TJ,N2O,3.9,kg/TJ,75.927852,Gas Oil combustion consumption by freight transport,AR-U,SESCO,annual,kg,c4a5b13f-ba3b-3173-a170-43c5d9815f38 -2018,Corrientes,II.1.1,54.25224,TJ,CO2,74100.0,kg/TJ,4020090.984,Gas Oil combustion consumption by freight transport,AR-W,SESCO,annual,kg,7bfce643-cb23-3c49-ab25-384e871af422 -2018,Corrientes,II.1.1,54.25224,TJ,CH4,3.9,kg/TJ,211.583736,Gas Oil combustion consumption by freight transport,AR-W,SESCO,annual,kg,1526e0d4-990c-3703-9dcd-1e1b3573413d -2018,Corrientes,II.1.1,54.25224,TJ,N2O,3.9,kg/TJ,211.583736,Gas Oil combustion consumption by freight transport,AR-W,SESCO,annual,kg,1526e0d4-990c-3703-9dcd-1e1b3573413d -2018,Córdoba,II.1.1,303.98591999999996,TJ,CO2,74100.0,kg/TJ,22525356.672,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,7356334a-79b1-30df-9be8-c97c0a5f9518 -2018,Córdoba,II.1.1,303.98591999999996,TJ,CH4,3.9,kg/TJ,1185.5450879999999,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,c292a48f-e83e-316d-b8e7-36c2cb4c9a73 -2018,Córdoba,II.1.1,303.98591999999996,TJ,N2O,3.9,kg/TJ,1185.5450879999999,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,c292a48f-e83e-316d-b8e7-36c2cb4c9a73 -2018,Entre Rios,II.1.1,218.74272,TJ,CO2,74100.0,kg/TJ,16208835.552,Gas Oil combustion consumption by freight transport,AR-E,SESCO,annual,kg,72228221-36db-39c0-aa33-7731e3e36216 -2018,Entre Rios,II.1.1,218.74272,TJ,CH4,3.9,kg/TJ,853.096608,Gas Oil combustion consumption by freight transport,AR-E,SESCO,annual,kg,8a946cc8-c319-3e23-88ea-e42d5e580a5c -2018,Entre Rios,II.1.1,218.74272,TJ,N2O,3.9,kg/TJ,853.096608,Gas Oil combustion consumption by freight transport,AR-E,SESCO,annual,kg,8a946cc8-c319-3e23-88ea-e42d5e580a5c -2018,Formosa,II.1.1,8.88552,TJ,CO2,74100.0,kg/TJ,658417.032,Gas Oil combustion consumption by freight transport,AR-P,SESCO,annual,kg,313db581-de14-3488-9009-220e27f90bd8 -2018,Formosa,II.1.1,8.88552,TJ,CH4,3.9,kg/TJ,34.653527999999994,Gas Oil combustion consumption by freight transport,AR-P,SESCO,annual,kg,66d1fb7b-449d-3754-b1d3-09934ee48e41 -2018,Formosa,II.1.1,8.88552,TJ,N2O,3.9,kg/TJ,34.653527999999994,Gas Oil combustion consumption by freight transport,AR-P,SESCO,annual,kg,66d1fb7b-449d-3754-b1d3-09934ee48e41 -2018,Jujuy,II.1.1,6.42936,TJ,CO2,74100.0,kg/TJ,476415.576,Gas Oil combustion consumption by freight transport,AR-Y,SESCO,annual,kg,4d9cc7c5-89e3-39fd-843b-ef6e8057753d -2018,Jujuy,II.1.1,6.42936,TJ,CH4,3.9,kg/TJ,25.074504,Gas Oil combustion consumption by freight transport,AR-Y,SESCO,annual,kg,a86cd8e2-7530-3190-a599-a8f5ae062bb0 -2018,Jujuy,II.1.1,6.42936,TJ,N2O,3.9,kg/TJ,25.074504,Gas Oil combustion consumption by freight transport,AR-Y,SESCO,annual,kg,a86cd8e2-7530-3190-a599-a8f5ae062bb0 -2018,La Pampa,II.1.1,15.856679999999999,TJ,CO2,74100.0,kg/TJ,1174979.988,Gas Oil combustion consumption by freight transport,AR-L,SESCO,annual,kg,955e3523-fce1-3e54-ab54-88093788d4bd -2018,La Pampa,II.1.1,15.856679999999999,TJ,CH4,3.9,kg/TJ,61.841052,Gas Oil combustion consumption by freight transport,AR-L,SESCO,annual,kg,fcb035e7-f289-388a-91c2-5df4c0bc3c60 -2018,La Pampa,II.1.1,15.856679999999999,TJ,N2O,3.9,kg/TJ,61.841052,Gas Oil combustion consumption by freight transport,AR-L,SESCO,annual,kg,fcb035e7-f289-388a-91c2-5df4c0bc3c60 -2018,La Rioja,II.1.1,4.6956,TJ,CO2,74100.0,kg/TJ,347943.95999999996,Gas Oil combustion consumption by freight transport,AR-F,SESCO,annual,kg,69d67ee5-09e8-3421-a860-f4a908aa814a -2018,La Rioja,II.1.1,4.6956,TJ,CH4,3.9,kg/TJ,18.312839999999998,Gas Oil combustion consumption by freight transport,AR-F,SESCO,annual,kg,3cdbea87-73bf-30c0-a24f-60c1b59d2f0a -2018,La Rioja,II.1.1,4.6956,TJ,N2O,3.9,kg/TJ,18.312839999999998,Gas Oil combustion consumption by freight transport,AR-F,SESCO,annual,kg,3cdbea87-73bf-30c0-a24f-60c1b59d2f0a -2018,Mendoza,II.1.1,106.9152,TJ,CO2,74100.0,kg/TJ,7922416.32,Gas Oil combustion consumption by freight transport,AR-M,SESCO,annual,kg,fa9a00a1-f621-3f69-a8d5-7b5a6584e096 -2018,Mendoza,II.1.1,106.9152,TJ,CH4,3.9,kg/TJ,416.96927999999997,Gas Oil combustion consumption by freight transport,AR-M,SESCO,annual,kg,0e4a556c-6570-3b7b-9c6c-795fd298238c -2018,Mendoza,II.1.1,106.9152,TJ,N2O,3.9,kg/TJ,416.96927999999997,Gas Oil combustion consumption by freight transport,AR-M,SESCO,annual,kg,0e4a556c-6570-3b7b-9c6c-795fd298238c -2018,Misiones,II.1.1,57.539159999999995,TJ,CO2,74100.0,kg/TJ,4263651.756,Gas Oil combustion consumption by freight transport,AR-N,SESCO,annual,kg,43844cab-8414-3146-b66b-dcf3692d5e4c -2018,Misiones,II.1.1,57.539159999999995,TJ,CH4,3.9,kg/TJ,224.40272399999998,Gas Oil combustion consumption by freight transport,AR-N,SESCO,annual,kg,4d89f0bd-4531-31a6-b2c5-7ba7ab828081 -2018,Misiones,II.1.1,57.539159999999995,TJ,N2O,3.9,kg/TJ,224.40272399999998,Gas Oil combustion consumption by freight transport,AR-N,SESCO,annual,kg,4d89f0bd-4531-31a6-b2c5-7ba7ab828081 -2018,Neuquén,II.1.1,2.13108,TJ,CO2,74100.0,kg/TJ,157913.028,Gas Oil combustion consumption by freight transport,AR-Q,SESCO,annual,kg,890ead8d-e00f-32d2-bdea-78de8fa2d831 -2018,Neuquén,II.1.1,2.13108,TJ,CH4,3.9,kg/TJ,8.311212,Gas Oil combustion consumption by freight transport,AR-Q,SESCO,annual,kg,b54f1d96-6db5-395c-b249-ff5e9f96c657 -2018,Neuquén,II.1.1,2.13108,TJ,N2O,3.9,kg/TJ,8.311212,Gas Oil combustion consumption by freight transport,AR-Q,SESCO,annual,kg,b54f1d96-6db5-395c-b249-ff5e9f96c657 -2018,Rio Negro,II.1.1,59.489639999999994,TJ,CO2,74100.0,kg/TJ,4408182.324,Gas Oil combustion consumption by freight transport,AR-R,SESCO,annual,kg,8086c004-a3c8-3210-a807-e33aea4b4761 -2018,Rio Negro,II.1.1,59.489639999999994,TJ,CH4,3.9,kg/TJ,232.00959599999996,Gas Oil combustion consumption by freight transport,AR-R,SESCO,annual,kg,932cf44b-bcea-33fd-9649-4ef0aca63bc0 -2018,Rio Negro,II.1.1,59.489639999999994,TJ,N2O,3.9,kg/TJ,232.00959599999996,Gas Oil combustion consumption by freight transport,AR-R,SESCO,annual,kg,932cf44b-bcea-33fd-9649-4ef0aca63bc0 -2018,Salta,II.1.1,21.63588,TJ,CO2,74100.0,kg/TJ,1603218.708,Gas Oil combustion consumption by freight transport,AR-A,SESCO,annual,kg,86448846-538d-3265-9903-7804ac6897e7 -2018,Salta,II.1.1,21.63588,TJ,CH4,3.9,kg/TJ,84.379932,Gas Oil combustion consumption by freight transport,AR-A,SESCO,annual,kg,5892e1a4-df95-3f70-bb1f-569643fdcfa0 -2018,Salta,II.1.1,21.63588,TJ,N2O,3.9,kg/TJ,84.379932,Gas Oil combustion consumption by freight transport,AR-A,SESCO,annual,kg,5892e1a4-df95-3f70-bb1f-569643fdcfa0 -2018,San Juan,II.1.1,6.57384,TJ,CO2,74100.0,kg/TJ,487121.544,Gas Oil combustion consumption by freight transport,AR-J,SESCO,annual,kg,f90e320a-dacd-3a3f-82fb-080a6a8ad259 -2018,San Juan,II.1.1,6.57384,TJ,CH4,3.9,kg/TJ,25.637976,Gas Oil combustion consumption by freight transport,AR-J,SESCO,annual,kg,6f884b76-f873-3a4d-b49a-5ec973b538cf -2018,San Juan,II.1.1,6.57384,TJ,N2O,3.9,kg/TJ,25.637976,Gas Oil combustion consumption by freight transport,AR-J,SESCO,annual,kg,6f884b76-f873-3a4d-b49a-5ec973b538cf -2018,San Luis,II.1.1,49.8456,TJ,CO2,74100.0,kg/TJ,3693558.96,Gas Oil combustion consumption by freight transport,AR-D,SESCO,annual,kg,782d70a9-a077-3828-ad32-4ad3b84014c1 -2018,San Luis,II.1.1,49.8456,TJ,CH4,3.9,kg/TJ,194.39783999999997,Gas Oil combustion consumption by freight transport,AR-D,SESCO,annual,kg,7ecb9bc9-2cef-30c5-a0c8-571520f1b548 -2018,San Luis,II.1.1,49.8456,TJ,N2O,3.9,kg/TJ,194.39783999999997,Gas Oil combustion consumption by freight transport,AR-D,SESCO,annual,kg,7ecb9bc9-2cef-30c5-a0c8-571520f1b548 -2018,Santa Fe,II.1.1,547.3986,TJ,CO2,74100.0,kg/TJ,40562236.26,Gas Oil combustion consumption by freight transport,AR-S,SESCO,annual,kg,78bcd87e-c8c9-310a-9f03-81b585fe9d1c -2018,Santa Fe,II.1.1,547.3986,TJ,CH4,3.9,kg/TJ,2134.85454,Gas Oil combustion consumption by freight transport,AR-S,SESCO,annual,kg,1846549b-5f26-324c-84f9-90526f433a64 -2018,Santa Fe,II.1.1,547.3986,TJ,N2O,3.9,kg/TJ,2134.85454,Gas Oil combustion consumption by freight transport,AR-S,SESCO,annual,kg,1846549b-5f26-324c-84f9-90526f433a64 -2018,Santiago del Estero,II.1.1,42.33264,TJ,CO2,74100.0,kg/TJ,3136848.624,Gas Oil combustion consumption by freight transport,AR-G,SESCO,annual,kg,8d06bd2f-6985-3110-9ea5-b7edc9ec0a33 -2018,Santiago del Estero,II.1.1,42.33264,TJ,CH4,3.9,kg/TJ,165.097296,Gas Oil combustion consumption by freight transport,AR-G,SESCO,annual,kg,526002db-9663-32e5-911d-facbcc43b605 -2018,Santiago del Estero,II.1.1,42.33264,TJ,N2O,3.9,kg/TJ,165.097296,Gas Oil combustion consumption by freight transport,AR-G,SESCO,annual,kg,526002db-9663-32e5-911d-facbcc43b605 -2018,Tierra del Fuego,II.1.1,2.3478,TJ,CO2,74100.0,kg/TJ,173971.97999999998,Gas Oil combustion consumption by freight transport,AR-V,SESCO,annual,kg,926d2b60-4887-388e-84dc-cfa15b8fd649 -2018,Tierra del Fuego,II.1.1,2.3478,TJ,CH4,3.9,kg/TJ,9.156419999999999,Gas Oil combustion consumption by freight transport,AR-V,SESCO,annual,kg,84cd8545-fe8a-324c-9a11-a10ba6924c02 -2018,Tierra del Fuego,II.1.1,2.3478,TJ,N2O,3.9,kg/TJ,9.156419999999999,Gas Oil combustion consumption by freight transport,AR-V,SESCO,annual,kg,84cd8545-fe8a-324c-9a11-a10ba6924c02 -2018,Tucuman,II.1.1,41.68248,TJ,CO2,74100.0,kg/TJ,3088671.7679999997,Gas Oil combustion consumption by freight transport,AR-T,SESCO,annual,kg,d836f5d6-da2c-3f19-aa4a-201533bee95e -2018,Tucuman,II.1.1,41.68248,TJ,CH4,3.9,kg/TJ,162.561672,Gas Oil combustion consumption by freight transport,AR-T,SESCO,annual,kg,235ddc46-5a71-3ac6-9ab5-9bff0318fe76 -2018,Tucuman,II.1.1,41.68248,TJ,N2O,3.9,kg/TJ,162.561672,Gas Oil combustion consumption by freight transport,AR-T,SESCO,annual,kg,235ddc46-5a71-3ac6-9ab5-9bff0318fe76 -2018,Buenos Aires,II.1.1,177.45756,TJ,CO2,74100.0,kg/TJ,13149605.196,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,c5c05688-303b-3891-a8dc-40e34575b03f -2018,Buenos Aires,II.1.1,177.45756,TJ,CH4,3.9,kg/TJ,692.084484,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,8abd3579-6ae2-3bb1-a181-b0c30b96870d -2018,Buenos Aires,II.1.1,177.45756,TJ,N2O,3.9,kg/TJ,692.084484,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,8abd3579-6ae2-3bb1-a181-b0c30b96870d -2018,Capital Federal,II.1.1,69.78384,TJ,CO2,74100.0,kg/TJ,5170982.544,Gas Oil combustion consumption by freight transport,AR-C,SESCO,annual,kg,3f4bc744-21b9-30f6-ac5b-ecf68d5a1f1b -2018,Capital Federal,II.1.1,69.78384,TJ,CH4,3.9,kg/TJ,272.156976,Gas Oil combustion consumption by freight transport,AR-C,SESCO,annual,kg,2e72a889-431d-3370-b3eb-0962752b4838 -2018,Capital Federal,II.1.1,69.78384,TJ,N2O,3.9,kg/TJ,272.156976,Gas Oil combustion consumption by freight transport,AR-C,SESCO,annual,kg,2e72a889-431d-3370-b3eb-0962752b4838 -2018,Catamarca,II.1.1,0.65016,TJ,CO2,74100.0,kg/TJ,48176.856,Gas Oil combustion consumption by freight transport,AR-K,SESCO,annual,kg,a56853a9-e7e0-317c-8c22-8fa3308579e6 -2018,Catamarca,II.1.1,0.65016,TJ,CH4,3.9,kg/TJ,2.535624,Gas Oil combustion consumption by freight transport,AR-K,SESCO,annual,kg,e0901290-aef6-3ab6-9014-d0f31ecac4c1 -2018,Catamarca,II.1.1,0.65016,TJ,N2O,3.9,kg/TJ,2.535624,Gas Oil combustion consumption by freight transport,AR-K,SESCO,annual,kg,e0901290-aef6-3ab6-9014-d0f31ecac4c1 -2018,Chaco,II.1.1,0.28896,TJ,CO2,74100.0,kg/TJ,21411.935999999998,Gas Oil combustion consumption by freight transport,AR-H,SESCO,annual,kg,ea6544e9-3324-3421-8e1c-8331375dfc2f -2018,Chaco,II.1.1,0.28896,TJ,CH4,3.9,kg/TJ,1.126944,Gas Oil combustion consumption by freight transport,AR-H,SESCO,annual,kg,004e9435-b770-35ff-b69a-669eb91a2ff9 -2018,Chaco,II.1.1,0.28896,TJ,N2O,3.9,kg/TJ,1.126944,Gas Oil combustion consumption by freight transport,AR-H,SESCO,annual,kg,004e9435-b770-35ff-b69a-669eb91a2ff9 -2018,Chubut,II.1.1,4.26216,TJ,CO2,74100.0,kg/TJ,315826.056,Gas Oil combustion consumption by freight transport,AR-U,SESCO,annual,kg,4c71f2d9-a0c3-3435-b3a5-544e75442cd4 -2018,Chubut,II.1.1,4.26216,TJ,CH4,3.9,kg/TJ,16.622424,Gas Oil combustion consumption by freight transport,AR-U,SESCO,annual,kg,f34c5d01-4103-3b24-b569-4a284b124418 -2018,Chubut,II.1.1,4.26216,TJ,N2O,3.9,kg/TJ,16.622424,Gas Oil combustion consumption by freight transport,AR-U,SESCO,annual,kg,f34c5d01-4103-3b24-b569-4a284b124418 -2018,Corrientes,II.1.1,8.41596,TJ,CO2,74100.0,kg/TJ,623622.636,Gas Oil combustion consumption by freight transport,AR-W,SESCO,annual,kg,27b5d854-aac2-3659-8c73-145e20defb7a -2018,Corrientes,II.1.1,8.41596,TJ,CH4,3.9,kg/TJ,32.822244,Gas Oil combustion consumption by freight transport,AR-W,SESCO,annual,kg,d738f0c7-e411-342b-b0c8-fd47d6488565 -2018,Corrientes,II.1.1,8.41596,TJ,N2O,3.9,kg/TJ,32.822244,Gas Oil combustion consumption by freight transport,AR-W,SESCO,annual,kg,d738f0c7-e411-342b-b0c8-fd47d6488565 -2018,Córdoba,II.1.1,19.79376,TJ,CO2,74100.0,kg/TJ,1466717.616,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,c4ba01ab-809b-3ac5-8fb6-e2c5a9c0cf5a -2018,Córdoba,II.1.1,19.79376,TJ,CH4,3.9,kg/TJ,77.195664,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,0667d481-ed38-33ad-a452-e1d7ae9f8141 -2018,Córdoba,II.1.1,19.79376,TJ,N2O,3.9,kg/TJ,77.195664,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,0667d481-ed38-33ad-a452-e1d7ae9f8141 -2018,Entre Rios,II.1.1,8.993879999999999,TJ,CO2,74100.0,kg/TJ,666446.5079999999,Gas Oil combustion consumption by freight transport,AR-E,SESCO,annual,kg,37e4eee7-fc4f-323a-986b-f7531bf99a0a -2018,Entre Rios,II.1.1,8.993879999999999,TJ,CH4,3.9,kg/TJ,35.076131999999994,Gas Oil combustion consumption by freight transport,AR-E,SESCO,annual,kg,b82c7069-5ce9-3f8f-8e1f-0b4dfdd615aa -2018,Entre Rios,II.1.1,8.993879999999999,TJ,N2O,3.9,kg/TJ,35.076131999999994,Gas Oil combustion consumption by freight transport,AR-E,SESCO,annual,kg,b82c7069-5ce9-3f8f-8e1f-0b4dfdd615aa -2018,Formosa,II.1.1,0.6140399999999999,TJ,CO2,74100.0,kg/TJ,45500.363999999994,Gas Oil combustion consumption by freight transport,AR-P,SESCO,annual,kg,93b332ba-71bc-3020-ad74-815846968f1f -2018,Formosa,II.1.1,0.6140399999999999,TJ,CH4,3.9,kg/TJ,2.3947559999999997,Gas Oil combustion consumption by freight transport,AR-P,SESCO,annual,kg,19d3b548-fbaf-3bd4-87a8-87ba7dee3395 -2018,Formosa,II.1.1,0.6140399999999999,TJ,N2O,3.9,kg/TJ,2.3947559999999997,Gas Oil combustion consumption by freight transport,AR-P,SESCO,annual,kg,19d3b548-fbaf-3bd4-87a8-87ba7dee3395 -2018,Jujuy,II.1.1,0.25284,TJ,CO2,74100.0,kg/TJ,18735.444,Gas Oil combustion consumption by freight transport,AR-Y,SESCO,annual,kg,a31e1058-9666-3b8a-a2d8-3eaf579e3d46 -2018,Jujuy,II.1.1,0.25284,TJ,CH4,3.9,kg/TJ,0.9860760000000001,Gas Oil combustion consumption by freight transport,AR-Y,SESCO,annual,kg,e0fefa02-5f99-30aa-8bbd-3bf7807840bb -2018,Jujuy,II.1.1,0.25284,TJ,N2O,3.9,kg/TJ,0.9860760000000001,Gas Oil combustion consumption by freight transport,AR-Y,SESCO,annual,kg,e0fefa02-5f99-30aa-8bbd-3bf7807840bb -2018,La Pampa,II.1.1,0.86688,TJ,CO2,74100.0,kg/TJ,64235.808,Gas Oil combustion consumption by freight transport,AR-L,SESCO,annual,kg,48c4e81d-a980-3100-9be8-20515cdf8d09 -2018,La Pampa,II.1.1,0.86688,TJ,CH4,3.9,kg/TJ,3.380832,Gas Oil combustion consumption by freight transport,AR-L,SESCO,annual,kg,f7e19fe5-c725-3f3d-a669-f743ca311b7e -2018,La Pampa,II.1.1,0.86688,TJ,N2O,3.9,kg/TJ,3.380832,Gas Oil combustion consumption by freight transport,AR-L,SESCO,annual,kg,f7e19fe5-c725-3f3d-a669-f743ca311b7e -2018,La Rioja,II.1.1,0.6140399999999999,TJ,CO2,74100.0,kg/TJ,45500.363999999994,Gas Oil combustion consumption by freight transport,AR-F,SESCO,annual,kg,c3cef05c-2b60-31a3-b01e-ba1390781571 -2018,La Rioja,II.1.1,0.6140399999999999,TJ,CH4,3.9,kg/TJ,2.3947559999999997,Gas Oil combustion consumption by freight transport,AR-F,SESCO,annual,kg,82dcc7b2-a702-3060-b506-e8a34534f372 -2018,La Rioja,II.1.1,0.6140399999999999,TJ,N2O,3.9,kg/TJ,2.3947559999999997,Gas Oil combustion consumption by freight transport,AR-F,SESCO,annual,kg,82dcc7b2-a702-3060-b506-e8a34534f372 -2018,Mendoza,II.1.1,1.76988,TJ,CO2,74100.0,kg/TJ,131148.10799999998,Gas Oil combustion consumption by freight transport,AR-M,SESCO,annual,kg,15e4b77b-4d1c-3010-ad10-a5afe9d43ebe -2018,Mendoza,II.1.1,1.76988,TJ,CH4,3.9,kg/TJ,6.902531999999999,Gas Oil combustion consumption by freight transport,AR-M,SESCO,annual,kg,c7bc3706-2cee-30b0-87b6-9f1b97a1fec1 -2018,Mendoza,II.1.1,1.76988,TJ,N2O,3.9,kg/TJ,6.902531999999999,Gas Oil combustion consumption by freight transport,AR-M,SESCO,annual,kg,c7bc3706-2cee-30b0-87b6-9f1b97a1fec1 -2018,Misiones,II.1.1,2.3478,TJ,CO2,74100.0,kg/TJ,173971.97999999998,Gas Oil combustion consumption by freight transport,AR-N,SESCO,annual,kg,a543d3d5-c394-3abb-b24b-c119dcb2a5d2 -2018,Misiones,II.1.1,2.3478,TJ,CH4,3.9,kg/TJ,9.156419999999999,Gas Oil combustion consumption by freight transport,AR-N,SESCO,annual,kg,92e9f052-0d06-3aca-ac9c-f9bfdfd13f4c -2018,Misiones,II.1.1,2.3478,TJ,N2O,3.9,kg/TJ,9.156419999999999,Gas Oil combustion consumption by freight transport,AR-N,SESCO,annual,kg,92e9f052-0d06-3aca-ac9c-f9bfdfd13f4c -2018,Neuquén,II.1.1,0.07224,TJ,CO2,74100.0,kg/TJ,5352.9839999999995,Gas Oil combustion consumption by freight transport,AR-Q,SESCO,annual,kg,b6be1176-369f-37e3-ba74-545b16711859 -2018,Neuquén,II.1.1,0.07224,TJ,CH4,3.9,kg/TJ,0.281736,Gas Oil combustion consumption by freight transport,AR-Q,SESCO,annual,kg,70557f9e-bcad-3fd5-86fd-f132e3468700 -2018,Neuquén,II.1.1,0.07224,TJ,N2O,3.9,kg/TJ,0.281736,Gas Oil combustion consumption by freight transport,AR-Q,SESCO,annual,kg,70557f9e-bcad-3fd5-86fd-f132e3468700 -2018,Rio Negro,II.1.1,9.03,TJ,CO2,74100.0,kg/TJ,669123.0,Gas Oil combustion consumption by freight transport,AR-R,SESCO,annual,kg,257a64f3-4ba0-3605-a62c-8361232c7971 -2018,Rio Negro,II.1.1,9.03,TJ,CH4,3.9,kg/TJ,35.217,Gas Oil combustion consumption by freight transport,AR-R,SESCO,annual,kg,cdcb89d9-704a-31e8-b090-a6bc2edfeb7e -2018,Rio Negro,II.1.1,9.03,TJ,N2O,3.9,kg/TJ,35.217,Gas Oil combustion consumption by freight transport,AR-R,SESCO,annual,kg,cdcb89d9-704a-31e8-b090-a6bc2edfeb7e -2018,Salta,II.1.1,0.36119999999999997,TJ,CO2,74100.0,kg/TJ,26764.92,Gas Oil combustion consumption by freight transport,AR-A,SESCO,annual,kg,03c4ba67-45c9-3bce-8882-d50369b2c674 -2018,Salta,II.1.1,0.36119999999999997,TJ,CH4,3.9,kg/TJ,1.40868,Gas Oil combustion consumption by freight transport,AR-A,SESCO,annual,kg,cd8ca964-b385-34fd-a5e7-74cd95819edb -2018,Salta,II.1.1,0.36119999999999997,TJ,N2O,3.9,kg/TJ,1.40868,Gas Oil combustion consumption by freight transport,AR-A,SESCO,annual,kg,cd8ca964-b385-34fd-a5e7-74cd95819edb -2018,San Juan,II.1.1,0.14448,TJ,CO2,74100.0,kg/TJ,10705.967999999999,Gas Oil combustion consumption by freight transport,AR-J,SESCO,annual,kg,c19a8881-7868-3df5-bbd5-9b1071ddd210 -2018,San Juan,II.1.1,0.14448,TJ,CH4,3.9,kg/TJ,0.563472,Gas Oil combustion consumption by freight transport,AR-J,SESCO,annual,kg,0c833d06-71a8-3521-97e1-29fd53d2648b -2018,San Juan,II.1.1,0.14448,TJ,N2O,3.9,kg/TJ,0.563472,Gas Oil combustion consumption by freight transport,AR-J,SESCO,annual,kg,0c833d06-71a8-3521-97e1-29fd53d2648b -2018,San Luis,II.1.1,2.1672,TJ,CO2,74100.0,kg/TJ,160589.52,Gas Oil combustion consumption by freight transport,AR-D,SESCO,annual,kg,e7c648d2-2e29-33ed-acb5-729f3165497c -2018,San Luis,II.1.1,2.1672,TJ,CH4,3.9,kg/TJ,8.452079999999999,Gas Oil combustion consumption by freight transport,AR-D,SESCO,annual,kg,a8a81c8c-e255-3154-b128-d23420bcef43 -2018,San Luis,II.1.1,2.1672,TJ,N2O,3.9,kg/TJ,8.452079999999999,Gas Oil combustion consumption by freight transport,AR-D,SESCO,annual,kg,a8a81c8c-e255-3154-b128-d23420bcef43 -2018,Santa Fe,II.1.1,73.72091999999999,TJ,CO2,74100.0,kg/TJ,5462720.171999999,Gas Oil combustion consumption by freight transport,AR-S,SESCO,annual,kg,3a9223ad-9511-3c3c-b6bd-be7ebc22425a -2018,Santa Fe,II.1.1,73.72091999999999,TJ,CH4,3.9,kg/TJ,287.51158799999996,Gas Oil combustion consumption by freight transport,AR-S,SESCO,annual,kg,b5a20bac-4f4c-3739-bfc2-ecf569256520 -2018,Santa Fe,II.1.1,73.72091999999999,TJ,N2O,3.9,kg/TJ,287.51158799999996,Gas Oil combustion consumption by freight transport,AR-S,SESCO,annual,kg,b5a20bac-4f4c-3739-bfc2-ecf569256520 -2018,Santiago del Estero,II.1.1,5.63472,TJ,CO2,74100.0,kg/TJ,417532.752,Gas Oil combustion consumption by freight transport,AR-G,SESCO,annual,kg,d9446a00-1725-3f15-9806-d3c29d3babb2 -2018,Santiago del Estero,II.1.1,5.63472,TJ,CH4,3.9,kg/TJ,21.975407999999998,Gas Oil combustion consumption by freight transport,AR-G,SESCO,annual,kg,009f3ab4-7a8f-3686-b757-f3b9d23c05fe -2018,Santiago del Estero,II.1.1,5.63472,TJ,N2O,3.9,kg/TJ,21.975407999999998,Gas Oil combustion consumption by freight transport,AR-G,SESCO,annual,kg,009f3ab4-7a8f-3686-b757-f3b9d23c05fe -2018,Tierra del Fuego,II.1.1,1.01136,TJ,CO2,74100.0,kg/TJ,74941.776,Gas Oil combustion consumption by freight transport,AR-V,SESCO,annual,kg,b5a2e3f7-842f-3929-8386-b5cb8b962b6f -2018,Tierra del Fuego,II.1.1,1.01136,TJ,CH4,3.9,kg/TJ,3.9443040000000003,Gas Oil combustion consumption by freight transport,AR-V,SESCO,annual,kg,3e81e545-a8a6-3ecd-81e3-50b339b14839 -2018,Tierra del Fuego,II.1.1,1.01136,TJ,N2O,3.9,kg/TJ,3.9443040000000003,Gas Oil combustion consumption by freight transport,AR-V,SESCO,annual,kg,3e81e545-a8a6-3ecd-81e3-50b339b14839 -2018,Tucuman,II.1.1,1.04748,TJ,CO2,74100.0,kg/TJ,77618.268,Gas Oil combustion consumption by freight transport,AR-T,SESCO,annual,kg,ba477c79-c71c-30b7-9751-e27142bc9081 -2018,Tucuman,II.1.1,1.04748,TJ,CH4,3.9,kg/TJ,4.085172,Gas Oil combustion consumption by freight transport,AR-T,SESCO,annual,kg,f0c59f5d-48d9-3cc2-801b-6c64fdb7ee05 -2018,Tucuman,II.1.1,1.04748,TJ,N2O,3.9,kg/TJ,4.085172,Gas Oil combustion consumption by freight transport,AR-T,SESCO,annual,kg,f0c59f5d-48d9-3cc2-801b-6c64fdb7ee05 -2018,Buenos Aires,II.1.1,9.25155,TJ,CO2,73300.0,kg/TJ,678138.615,Naphtha combustion consumption by freight transport,AR-B,SESCO,annual,kg,2c336484-b4de-34a3-ac6a-807de796f5ce -2018,Buenos Aires,II.1.1,9.25155,TJ,CH4,0.5,kg/TJ,4.625775,Naphtha combustion consumption by freight transport,AR-B,SESCO,annual,kg,87df8909-3ad8-39d5-8959-bda7ba372bd2 -2018,Buenos Aires,II.1.1,9.25155,TJ,N2O,2.0,kg/TJ,18.5031,Naphtha combustion consumption by freight transport,AR-B,SESCO,annual,kg,96021931-9780-3cd7-a94a-db555a0ff85c -2018,Capital Federal,II.1.1,3.70062,TJ,CO2,73300.0,kg/TJ,271255.446,Naphtha combustion consumption by freight transport,AR-C,SESCO,annual,kg,1111d5c6-9587-3c44-8b6b-ee7461e6b4d0 -2018,Capital Federal,II.1.1,3.70062,TJ,CH4,0.5,kg/TJ,1.85031,Naphtha combustion consumption by freight transport,AR-C,SESCO,annual,kg,9f27be85-f429-34e2-b6ee-bb6df4324d6b -2018,Capital Federal,II.1.1,3.70062,TJ,N2O,2.0,kg/TJ,7.40124,Naphtha combustion consumption by freight transport,AR-C,SESCO,annual,kg,667186a9-2963-308b-aecc-c20a29342a74 -2018,Catamarca,II.1.1,0.034265,TJ,CO2,73300.0,kg/TJ,2511.6245,Naphtha combustion consumption by freight transport,AR-K,SESCO,annual,kg,dda362b9-fbc1-3e7d-95ed-175fb43398a8 -2018,Catamarca,II.1.1,0.034265,TJ,CH4,0.5,kg/TJ,0.0171325,Naphtha combustion consumption by freight transport,AR-K,SESCO,annual,kg,aaf2e257-2b54-3581-9f59-0f312799765d -2018,Catamarca,II.1.1,0.034265,TJ,N2O,2.0,kg/TJ,0.06853,Naphtha combustion consumption by freight transport,AR-K,SESCO,annual,kg,1d711ea2-d1f8-328c-ad2c-1564c3877c4a -2018,Chubut,II.1.1,0.034265,TJ,CO2,73300.0,kg/TJ,2511.6245,Naphtha combustion consumption by freight transport,AR-U,SESCO,annual,kg,4831aa13-e3c0-3f0a-b3cb-9e268cce8419 -2018,Chubut,II.1.1,0.034265,TJ,CH4,0.5,kg/TJ,0.0171325,Naphtha combustion consumption by freight transport,AR-U,SESCO,annual,kg,a4ecb6f9-f774-3824-8598-fab09b84bd94 -2018,Chubut,II.1.1,0.034265,TJ,N2O,2.0,kg/TJ,0.06853,Naphtha combustion consumption by freight transport,AR-U,SESCO,annual,kg,3e0f81a5-7402-3f31-a6d9-bd35626179c0 -2018,Córdoba,II.1.1,2.12443,TJ,CO2,73300.0,kg/TJ,155720.71899999998,Naphtha combustion consumption by freight transport,AR-X,SESCO,annual,kg,3f6a3b4f-6aff-3b31-9909-5eec4d72f8b1 -2018,Córdoba,II.1.1,2.12443,TJ,CH4,0.5,kg/TJ,1.062215,Naphtha combustion consumption by freight transport,AR-X,SESCO,annual,kg,9076e5f9-7691-3791-9157-425b415ed4ae -2018,Córdoba,II.1.1,2.12443,TJ,N2O,2.0,kg/TJ,4.24886,Naphtha combustion consumption by freight transport,AR-X,SESCO,annual,kg,4a791bbb-330a-3c67-9e14-eb1a96c8134c -2018,Entre Rios,II.1.1,0.034265,TJ,CO2,73300.0,kg/TJ,2511.6245,Naphtha combustion consumption by freight transport,AR-E,SESCO,annual,kg,96cc6fc3-a281-3430-b801-cb1736102d3a -2018,Entre Rios,II.1.1,0.034265,TJ,CH4,0.5,kg/TJ,0.0171325,Naphtha combustion consumption by freight transport,AR-E,SESCO,annual,kg,90c92359-fae5-3ded-90cf-9048030bf4f5 -2018,Entre Rios,II.1.1,0.034265,TJ,N2O,2.0,kg/TJ,0.06853,Naphtha combustion consumption by freight transport,AR-E,SESCO,annual,kg,1dc0ab39-cd89-38e1-84d2-deaf7ec9461c -2018,La Rioja,II.1.1,0.034265,TJ,CO2,73300.0,kg/TJ,2511.6245,Naphtha combustion consumption by freight transport,AR-F,SESCO,annual,kg,ee617c2c-3025-33e8-8d87-1607629e4de8 -2018,La Rioja,II.1.1,0.034265,TJ,CH4,0.5,kg/TJ,0.0171325,Naphtha combustion consumption by freight transport,AR-F,SESCO,annual,kg,e6a13d60-720b-347c-9874-741a88e978c0 -2018,La Rioja,II.1.1,0.034265,TJ,N2O,2.0,kg/TJ,0.06853,Naphtha combustion consumption by freight transport,AR-F,SESCO,annual,kg,c288cd78-b78f-3610-888c-e2049ab5ca73 -2018,Mendoza,II.1.1,0.102795,TJ,CO2,73300.0,kg/TJ,7534.8735,Naphtha combustion consumption by freight transport,AR-M,SESCO,annual,kg,1d1e2fa3-730b-38eb-a03f-b02fec245fc8 -2018,Mendoza,II.1.1,0.102795,TJ,CH4,0.5,kg/TJ,0.0513975,Naphtha combustion consumption by freight transport,AR-M,SESCO,annual,kg,42930f81-5468-39c8-8d74-9b86b7ae9476 -2018,Mendoza,II.1.1,0.102795,TJ,N2O,2.0,kg/TJ,0.20559,Naphtha combustion consumption by freight transport,AR-M,SESCO,annual,kg,b69636d5-c4ba-3aca-81d9-438a7f179024 -2018,Misiones,II.1.1,0.034265,TJ,CO2,73300.0,kg/TJ,2511.6245,Naphtha combustion consumption by freight transport,AR-N,SESCO,annual,kg,926b7d52-981b-3dde-aaed-ccc77411ca02 -2018,Misiones,II.1.1,0.034265,TJ,CH4,0.5,kg/TJ,0.0171325,Naphtha combustion consumption by freight transport,AR-N,SESCO,annual,kg,38054d13-a033-3283-b3cf-0dd0fc294c64 -2018,Misiones,II.1.1,0.034265,TJ,N2O,2.0,kg/TJ,0.06853,Naphtha combustion consumption by freight transport,AR-N,SESCO,annual,kg,cc498a91-ee18-3a36-8d9a-dd8e54fb82d8 -2018,Salta,II.1.1,0.13706,TJ,CO2,73300.0,kg/TJ,10046.498,Naphtha combustion consumption by freight transport,AR-A,SESCO,annual,kg,da1b47e8-7253-35b9-82f8-f8312937093e -2018,Salta,II.1.1,0.13706,TJ,CH4,0.5,kg/TJ,0.06853,Naphtha combustion consumption by freight transport,AR-A,SESCO,annual,kg,cdcedb89-cdfc-38f0-aa1e-fa4e1325a746 -2018,Salta,II.1.1,0.13706,TJ,N2O,2.0,kg/TJ,0.27412,Naphtha combustion consumption by freight transport,AR-A,SESCO,annual,kg,117b4f58-6b17-3b7f-a5be-3d02285c553b -2018,Santa Fe,II.1.1,1.3020699999999998,TJ,CO2,73300.0,kg/TJ,95441.73099999999,Naphtha combustion consumption by freight transport,AR-S,SESCO,annual,kg,05963a2c-48c3-3dcb-b2f8-7f5265377ef2 -2018,Santa Fe,II.1.1,1.3020699999999998,TJ,CH4,0.5,kg/TJ,0.6510349999999999,Naphtha combustion consumption by freight transport,AR-S,SESCO,annual,kg,99a6bd54-89dc-3b22-b27f-d0178b6ed431 -2018,Santa Fe,II.1.1,1.3020699999999998,TJ,N2O,2.0,kg/TJ,2.6041399999999997,Naphtha combustion consumption by freight transport,AR-S,SESCO,annual,kg,e0cb7efc-accd-31f0-b37b-7c25baeb3f34 -2018,Santiago del Estero,II.1.1,0.034265,TJ,CO2,73300.0,kg/TJ,2511.6245,Naphtha combustion consumption by freight transport,AR-G,SESCO,annual,kg,d14513d4-d09c-3859-beae-1ea19a611e3d -2018,Santiago del Estero,II.1.1,0.034265,TJ,CH4,0.5,kg/TJ,0.0171325,Naphtha combustion consumption by freight transport,AR-G,SESCO,annual,kg,a6393a37-1179-37f4-bc8f-75e9744032b8 -2018,Santiago del Estero,II.1.1,0.034265,TJ,N2O,2.0,kg/TJ,0.06853,Naphtha combustion consumption by freight transport,AR-G,SESCO,annual,kg,04bf7b7d-e407-3121-b429-d4ca02c2ed60 -2018,Tucuman,II.1.1,0.034265,TJ,CO2,73300.0,kg/TJ,2511.6245,Naphtha combustion consumption by freight transport,AR-T,SESCO,annual,kg,aa47e9c5-aeb6-3713-8128-f4567e46f713 -2018,Tucuman,II.1.1,0.034265,TJ,CH4,0.5,kg/TJ,0.0171325,Naphtha combustion consumption by freight transport,AR-T,SESCO,annual,kg,952cf90c-cbf6-3b7c-a7b9-59c13a021d76 -2018,Tucuman,II.1.1,0.034265,TJ,N2O,2.0,kg/TJ,0.06853,Naphtha combustion consumption by freight transport,AR-T,SESCO,annual,kg,61773a73-9114-3659-8744-d1c7631ea328 -2018,Buenos Aires,II.1.1,6.09917,TJ,CO2,73300.0,kg/TJ,447069.161,Naphtha combustion consumption by freight transport,AR-B,SESCO,annual,kg,ba270d73-0611-3b5f-b1aa-371f3f654ace -2018,Buenos Aires,II.1.1,6.09917,TJ,CH4,0.5,kg/TJ,3.049585,Naphtha combustion consumption by freight transport,AR-B,SESCO,annual,kg,f32d2e5c-a67d-3f4c-b7ae-3ee894202123 -2018,Buenos Aires,II.1.1,6.09917,TJ,N2O,2.0,kg/TJ,12.19834,Naphtha combustion consumption by freight transport,AR-B,SESCO,annual,kg,2004033f-7c8e-3ce0-ae3c-82d09a91d3b6 -2018,Capital Federal,II.1.1,3.01532,TJ,CO2,73300.0,kg/TJ,221022.956,Naphtha combustion consumption by freight transport,AR-C,SESCO,annual,kg,b010d0c4-4295-39a4-a9b4-86ec8de01908 -2018,Capital Federal,II.1.1,3.01532,TJ,CH4,0.5,kg/TJ,1.50766,Naphtha combustion consumption by freight transport,AR-C,SESCO,annual,kg,b34e736b-5c77-3ee3-bb15-cb6db9d1d894 -2018,Capital Federal,II.1.1,3.01532,TJ,N2O,2.0,kg/TJ,6.03064,Naphtha combustion consumption by freight transport,AR-C,SESCO,annual,kg,920701ee-b8d8-3145-92b4-567fdef5942f -2018,Chubut,II.1.1,0.034265,TJ,CO2,73300.0,kg/TJ,2511.6245,Naphtha combustion consumption by freight transport,AR-U,SESCO,annual,kg,4831aa13-e3c0-3f0a-b3cb-9e268cce8419 -2018,Chubut,II.1.1,0.034265,TJ,CH4,0.5,kg/TJ,0.0171325,Naphtha combustion consumption by freight transport,AR-U,SESCO,annual,kg,a4ecb6f9-f774-3824-8598-fab09b84bd94 -2018,Chubut,II.1.1,0.034265,TJ,N2O,2.0,kg/TJ,0.06853,Naphtha combustion consumption by freight transport,AR-U,SESCO,annual,kg,3e0f81a5-7402-3f31-a6d9-bd35626179c0 -2018,Corrientes,II.1.1,0.102795,TJ,CO2,73300.0,kg/TJ,7534.8735,Naphtha combustion consumption by freight transport,AR-W,SESCO,annual,kg,1d9e9d72-a9f1-33f1-8a47-d105e4531642 -2018,Corrientes,II.1.1,0.102795,TJ,CH4,0.5,kg/TJ,0.0513975,Naphtha combustion consumption by freight transport,AR-W,SESCO,annual,kg,e007ecbe-9759-3fd2-9cd9-5dd1b4429ae5 -2018,Corrientes,II.1.1,0.102795,TJ,N2O,2.0,kg/TJ,0.20559,Naphtha combustion consumption by freight transport,AR-W,SESCO,annual,kg,ba821611-3de7-36ba-96dc-80f764033ffc -2018,Córdoba,II.1.1,1.57619,TJ,CO2,73300.0,kg/TJ,115534.727,Naphtha combustion consumption by freight transport,AR-X,SESCO,annual,kg,45d4d3ec-04f4-34e8-8400-d30df0fd491b -2018,Córdoba,II.1.1,1.57619,TJ,CH4,0.5,kg/TJ,0.788095,Naphtha combustion consumption by freight transport,AR-X,SESCO,annual,kg,1152cfee-b813-3e75-a013-43f79d229746 -2018,Córdoba,II.1.1,1.57619,TJ,N2O,2.0,kg/TJ,3.15238,Naphtha combustion consumption by freight transport,AR-X,SESCO,annual,kg,bb952706-d910-362e-a489-11b7f17ac456 -2018,Entre Rios,II.1.1,0.27412,TJ,CO2,73300.0,kg/TJ,20092.996,Naphtha combustion consumption by freight transport,AR-E,SESCO,annual,kg,bf57c655-7191-3c67-9bd4-cecf71970c26 -2018,Entre Rios,II.1.1,0.27412,TJ,CH4,0.5,kg/TJ,0.13706,Naphtha combustion consumption by freight transport,AR-E,SESCO,annual,kg,8704cbc1-7d4a-35ab-ae57-28523dc777eb -2018,Entre Rios,II.1.1,0.27412,TJ,N2O,2.0,kg/TJ,0.54824,Naphtha combustion consumption by freight transport,AR-E,SESCO,annual,kg,968b2328-745e-383d-9dcb-ebc2d27156d3 -2018,Jujuy,II.1.1,0.034265,TJ,CO2,73300.0,kg/TJ,2511.6245,Naphtha combustion consumption by freight transport,AR-Y,SESCO,annual,kg,0029cf2c-68dc-3bf5-be74-685eada502bd -2018,Jujuy,II.1.1,0.034265,TJ,CH4,0.5,kg/TJ,0.0171325,Naphtha combustion consumption by freight transport,AR-Y,SESCO,annual,kg,3aca582d-11ed-3c89-9ba0-d95965ffa1fc -2018,Jujuy,II.1.1,0.034265,TJ,N2O,2.0,kg/TJ,0.06853,Naphtha combustion consumption by freight transport,AR-Y,SESCO,annual,kg,70642e49-49c0-3107-aafe-758b99450560 -2018,La Pampa,II.1.1,0.034265,TJ,CO2,73300.0,kg/TJ,2511.6245,Naphtha combustion consumption by freight transport,AR-L,SESCO,annual,kg,a651ccfb-b70a-39b0-9c5f-2d4f13a800c9 -2018,La Pampa,II.1.1,0.034265,TJ,CH4,0.5,kg/TJ,0.0171325,Naphtha combustion consumption by freight transport,AR-L,SESCO,annual,kg,173a858a-f059-31b2-abaa-8e2b50b63468 -2018,La Pampa,II.1.1,0.034265,TJ,N2O,2.0,kg/TJ,0.06853,Naphtha combustion consumption by freight transport,AR-L,SESCO,annual,kg,92d19810-e4d4-32ef-a12d-fab426c81496 -2018,Mendoza,II.1.1,0.06853,TJ,CO2,73300.0,kg/TJ,5023.249,Naphtha combustion consumption by freight transport,AR-M,SESCO,annual,kg,41e22b36-d0d0-3336-94c4-4a2dbd2a656c -2018,Mendoza,II.1.1,0.06853,TJ,CH4,0.5,kg/TJ,0.034265,Naphtha combustion consumption by freight transport,AR-M,SESCO,annual,kg,1e2548ac-e083-3f70-aa7b-95a87a2b68b3 -2018,Mendoza,II.1.1,0.06853,TJ,N2O,2.0,kg/TJ,0.13706,Naphtha combustion consumption by freight transport,AR-M,SESCO,annual,kg,2358b914-a40a-3a25-9105-14c6c3ea7a61 -2018,Neuquén,II.1.1,0.034265,TJ,CO2,73300.0,kg/TJ,2511.6245,Naphtha combustion consumption by freight transport,AR-Q,SESCO,annual,kg,e77ba54c-02bc-3c6b-87fc-68f4af6b0f34 -2018,Neuquén,II.1.1,0.034265,TJ,CH4,0.5,kg/TJ,0.0171325,Naphtha combustion consumption by freight transport,AR-Q,SESCO,annual,kg,4d782512-402d-38a0-9a9c-ccbbf9dc5626 -2018,Neuquén,II.1.1,0.034265,TJ,N2O,2.0,kg/TJ,0.06853,Naphtha combustion consumption by freight transport,AR-Q,SESCO,annual,kg,96791ba1-94c7-37f1-8d0a-b8d60ede6541 -2018,Rio Negro,II.1.1,0.034265,TJ,CO2,73300.0,kg/TJ,2511.6245,Naphtha combustion consumption by freight transport,AR-R,SESCO,annual,kg,cb6ea091-6ae8-32b3-aa29-f8132b8dfcd2 -2018,Rio Negro,II.1.1,0.034265,TJ,CH4,0.5,kg/TJ,0.0171325,Naphtha combustion consumption by freight transport,AR-R,SESCO,annual,kg,5bca9739-e77f-3808-b7fa-1c2f915c6cc6 -2018,Rio Negro,II.1.1,0.034265,TJ,N2O,2.0,kg/TJ,0.06853,Naphtha combustion consumption by freight transport,AR-R,SESCO,annual,kg,f837b103-1bf9-37be-8474-e165e048de0c -2018,San Luis,II.1.1,0.034265,TJ,CO2,73300.0,kg/TJ,2511.6245,Naphtha combustion consumption by freight transport,AR-D,SESCO,annual,kg,d60c1094-0564-3a56-aea0-d0fa5ab87df1 -2018,San Luis,II.1.1,0.034265,TJ,CH4,0.5,kg/TJ,0.0171325,Naphtha combustion consumption by freight transport,AR-D,SESCO,annual,kg,cfc3f000-67c0-3b7c-a5d7-369037128a21 -2018,San Luis,II.1.1,0.034265,TJ,N2O,2.0,kg/TJ,0.06853,Naphtha combustion consumption by freight transport,AR-D,SESCO,annual,kg,ecd952a8-3a1b-39b1-a57c-9a3c96e0da84 -2018,Santa Fe,II.1.1,1.43913,TJ,CO2,73300.0,kg/TJ,105488.229,Naphtha combustion consumption by freight transport,AR-S,SESCO,annual,kg,ac06742f-489b-3770-90eb-c237bbe2fbb5 -2018,Santa Fe,II.1.1,1.43913,TJ,CH4,0.5,kg/TJ,0.719565,Naphtha combustion consumption by freight transport,AR-S,SESCO,annual,kg,bfbd6c44-044f-397e-9ec3-6ea43c878d14 -2018,Santa Fe,II.1.1,1.43913,TJ,N2O,2.0,kg/TJ,2.87826,Naphtha combustion consumption by freight transport,AR-S,SESCO,annual,kg,550db7ad-0a9b-324e-a1a6-333465ced93a -2018,Santiago del Estero,II.1.1,0.034265,TJ,CO2,73300.0,kg/TJ,2511.6245,Naphtha combustion consumption by freight transport,AR-G,SESCO,annual,kg,d14513d4-d09c-3859-beae-1ea19a611e3d -2018,Santiago del Estero,II.1.1,0.034265,TJ,CH4,0.5,kg/TJ,0.0171325,Naphtha combustion consumption by freight transport,AR-G,SESCO,annual,kg,a6393a37-1179-37f4-bc8f-75e9744032b8 -2018,Santiago del Estero,II.1.1,0.034265,TJ,N2O,2.0,kg/TJ,0.06853,Naphtha combustion consumption by freight transport,AR-G,SESCO,annual,kg,04bf7b7d-e407-3121-b429-d4ca02c2ed60 -2018,Tucuman,II.1.1,0.034265,TJ,CO2,73300.0,kg/TJ,2511.6245,Naphtha combustion consumption by freight transport,AR-T,SESCO,annual,kg,aa47e9c5-aeb6-3713-8128-f4567e46f713 -2018,Tucuman,II.1.1,0.034265,TJ,CH4,0.5,kg/TJ,0.0171325,Naphtha combustion consumption by freight transport,AR-T,SESCO,annual,kg,952cf90c-cbf6-3b7c-a7b9-59c13a021d76 -2018,Tucuman,II.1.1,0.034265,TJ,N2O,2.0,kg/TJ,0.06853,Naphtha combustion consumption by freight transport,AR-T,SESCO,annual,kg,61773a73-9114-3659-8744-d1c7631ea328 -2018,Buenos Aires,II.1.1,1664.5540799999999,TJ,CO2,74100.0,kg/TJ,123343457.328,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,ca6342a5-9c31-3703-a8b0-8f83e36b027b -2018,Buenos Aires,II.1.1,1664.5540799999999,TJ,CH4,3.9,kg/TJ,6491.760912,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,82260ed8-9666-36a0-9cf8-c9f16b4092f8 -2018,Buenos Aires,II.1.1,1664.5540799999999,TJ,N2O,3.9,kg/TJ,6491.760912,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,82260ed8-9666-36a0-9cf8-c9f16b4092f8 -2018,Capital Federal,II.1.1,703.68984,TJ,CO2,74100.0,kg/TJ,52143417.144,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,3166ff15-1158-3629-bd35-e2e72ee3cd2f -2018,Capital Federal,II.1.1,703.68984,TJ,CH4,3.9,kg/TJ,2744.390376,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,c346150d-b622-3e46-9941-1c5b4ef3599b -2018,Capital Federal,II.1.1,703.68984,TJ,N2O,3.9,kg/TJ,2744.390376,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,c346150d-b622-3e46-9941-1c5b4ef3599b -2018,Catamarca,II.1.1,0.03612,TJ,CO2,74100.0,kg/TJ,2676.4919999999997,Gas Oil combustion consumption by public passenger transport,AR-K,SESCO,annual,kg,140c2e54-8df5-3d8a-b1d9-d5696587ecec -2018,Catamarca,II.1.1,0.03612,TJ,CH4,3.9,kg/TJ,0.140868,Gas Oil combustion consumption by public passenger transport,AR-K,SESCO,annual,kg,225e3c3d-be2d-39ad-9ca1-9a35df58990a -2018,Catamarca,II.1.1,0.03612,TJ,N2O,3.9,kg/TJ,0.140868,Gas Oil combustion consumption by public passenger transport,AR-K,SESCO,annual,kg,225e3c3d-be2d-39ad-9ca1-9a35df58990a -2018,Chaco,II.1.1,5.49024,TJ,CO2,74100.0,kg/TJ,406826.784,Gas Oil combustion consumption by public passenger transport,AR-H,SESCO,annual,kg,2af00637-9cdd-325a-9525-38567e305549 -2018,Chaco,II.1.1,5.49024,TJ,CH4,3.9,kg/TJ,21.411936,Gas Oil combustion consumption by public passenger transport,AR-H,SESCO,annual,kg,f9103664-c072-31f0-a23c-6de61ac07cca -2018,Chaco,II.1.1,5.49024,TJ,N2O,3.9,kg/TJ,21.411936,Gas Oil combustion consumption by public passenger transport,AR-H,SESCO,annual,kg,f9103664-c072-31f0-a23c-6de61ac07cca -2018,Chubut,II.1.1,46.37808,TJ,CO2,74100.0,kg/TJ,3436615.7279999997,Gas Oil combustion consumption by public passenger transport,AR-U,SESCO,annual,kg,8bedc79c-538d-310d-a206-65025f477a49 -2018,Chubut,II.1.1,46.37808,TJ,CH4,3.9,kg/TJ,180.87451199999998,Gas Oil combustion consumption by public passenger transport,AR-U,SESCO,annual,kg,1375a8d1-8f31-33b3-ae84-67b73253010e -2018,Chubut,II.1.1,46.37808,TJ,N2O,3.9,kg/TJ,180.87451199999998,Gas Oil combustion consumption by public passenger transport,AR-U,SESCO,annual,kg,1375a8d1-8f31-33b3-ae84-67b73253010e -2018,Corrientes,II.1.1,7.0434,TJ,CO2,74100.0,kg/TJ,521915.94,Gas Oil combustion consumption by public passenger transport,AR-W,SESCO,annual,kg,221629dc-108d-32ba-aed0-10f707058f0e -2018,Corrientes,II.1.1,7.0434,TJ,CH4,3.9,kg/TJ,27.46926,Gas Oil combustion consumption by public passenger transport,AR-W,SESCO,annual,kg,8e869de0-ebf6-3b5c-a766-ac2abcc5904a -2018,Corrientes,II.1.1,7.0434,TJ,N2O,3.9,kg/TJ,27.46926,Gas Oil combustion consumption by public passenger transport,AR-W,SESCO,annual,kg,8e869de0-ebf6-3b5c-a766-ac2abcc5904a -2018,Córdoba,II.1.1,214.914,TJ,CO2,74100.0,kg/TJ,15925127.399999999,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,b4712179-4643-3ba6-9e65-a2c9ba73e32c -2018,Córdoba,II.1.1,214.914,TJ,CH4,3.9,kg/TJ,838.1646,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,05faf7cd-b2e2-3c59-89b2-e4fafd768c6f -2018,Córdoba,II.1.1,214.914,TJ,N2O,3.9,kg/TJ,838.1646,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,05faf7cd-b2e2-3c59-89b2-e4fafd768c6f -2018,Entre Rios,II.1.1,27.34284,TJ,CO2,74100.0,kg/TJ,2026104.444,Gas Oil combustion consumption by public passenger transport,AR-E,SESCO,annual,kg,547678af-efb3-32cc-91ce-186424db5f18 -2018,Entre Rios,II.1.1,27.34284,TJ,CH4,3.9,kg/TJ,106.637076,Gas Oil combustion consumption by public passenger transport,AR-E,SESCO,annual,kg,1dd4aaa9-ad67-35e1-9f14-d7b19095d057 -2018,Entre Rios,II.1.1,27.34284,TJ,N2O,3.9,kg/TJ,106.637076,Gas Oil combustion consumption by public passenger transport,AR-E,SESCO,annual,kg,1dd4aaa9-ad67-35e1-9f14-d7b19095d057 -2018,Formosa,II.1.1,0.07224,TJ,CO2,74100.0,kg/TJ,5352.9839999999995,Gas Oil combustion consumption by public passenger transport,AR-P,SESCO,annual,kg,f4f59301-29bb-3397-a821-3d925d037e51 -2018,Formosa,II.1.1,0.07224,TJ,CH4,3.9,kg/TJ,0.281736,Gas Oil combustion consumption by public passenger transport,AR-P,SESCO,annual,kg,9fd6e638-79a3-3588-8412-63560d92cdb2 -2018,Formosa,II.1.1,0.07224,TJ,N2O,3.9,kg/TJ,0.281736,Gas Oil combustion consumption by public passenger transport,AR-P,SESCO,annual,kg,9fd6e638-79a3-3588-8412-63560d92cdb2 -2018,Jujuy,II.1.1,0.10836,TJ,CO2,74100.0,kg/TJ,8029.476,Gas Oil combustion consumption by public passenger transport,AR-Y,SESCO,annual,kg,2f2bef49-8cda-3d75-b58f-b70bb7287f1c -2018,Jujuy,II.1.1,0.10836,TJ,CH4,3.9,kg/TJ,0.422604,Gas Oil combustion consumption by public passenger transport,AR-Y,SESCO,annual,kg,425adcec-7882-367e-94d7-8815ba9d4ba0 -2018,Jujuy,II.1.1,0.10836,TJ,N2O,3.9,kg/TJ,0.422604,Gas Oil combustion consumption by public passenger transport,AR-Y,SESCO,annual,kg,425adcec-7882-367e-94d7-8815ba9d4ba0 -2018,La Pampa,II.1.1,14.484119999999999,TJ,CO2,74100.0,kg/TJ,1073273.292,Gas Oil combustion consumption by public passenger transport,AR-L,SESCO,annual,kg,383ff8c1-6293-34c5-ba19-b1559588611b -2018,La Pampa,II.1.1,14.484119999999999,TJ,CH4,3.9,kg/TJ,56.48806799999999,Gas Oil combustion consumption by public passenger transport,AR-L,SESCO,annual,kg,05de47d0-81b5-3ac2-8494-649461ab146a -2018,La Pampa,II.1.1,14.484119999999999,TJ,N2O,3.9,kg/TJ,56.48806799999999,Gas Oil combustion consumption by public passenger transport,AR-L,SESCO,annual,kg,05de47d0-81b5-3ac2-8494-649461ab146a -2018,La Rioja,II.1.1,0.18059999999999998,TJ,CO2,74100.0,kg/TJ,13382.46,Gas Oil combustion consumption by public passenger transport,AR-F,SESCO,annual,kg,71f35628-d461-3d92-908a-4f18ec5c0bb1 -2018,La Rioja,II.1.1,0.18059999999999998,TJ,CH4,3.9,kg/TJ,0.70434,Gas Oil combustion consumption by public passenger transport,AR-F,SESCO,annual,kg,248d028d-918f-37d1-8a2c-6a763ef79988 -2018,La Rioja,II.1.1,0.18059999999999998,TJ,N2O,3.9,kg/TJ,0.70434,Gas Oil combustion consumption by public passenger transport,AR-F,SESCO,annual,kg,248d028d-918f-37d1-8a2c-6a763ef79988 -2018,Mendoza,II.1.1,22.719479999999997,TJ,CO2,74100.0,kg/TJ,1683513.4679999999,Gas Oil combustion consumption by public passenger transport,AR-M,SESCO,annual,kg,058cb3e4-ad48-3aa4-8ca9-6d0c3f49e434 -2018,Mendoza,II.1.1,22.719479999999997,TJ,CH4,3.9,kg/TJ,88.605972,Gas Oil combustion consumption by public passenger transport,AR-M,SESCO,annual,kg,13bf67a3-efd6-3c32-a28f-4125c135766d -2018,Mendoza,II.1.1,22.719479999999997,TJ,N2O,3.9,kg/TJ,88.605972,Gas Oil combustion consumption by public passenger transport,AR-M,SESCO,annual,kg,13bf67a3-efd6-3c32-a28f-4125c135766d -2018,Misiones,II.1.1,17.44596,TJ,CO2,74100.0,kg/TJ,1292745.636,Gas Oil combustion consumption by public passenger transport,AR-N,SESCO,annual,kg,97aed8aa-bc5c-3a6b-8c7f-dbf7018ea929 -2018,Misiones,II.1.1,17.44596,TJ,CH4,3.9,kg/TJ,68.039244,Gas Oil combustion consumption by public passenger transport,AR-N,SESCO,annual,kg,0887f42f-6027-3e9b-86a1-6695ba4aa29d -2018,Misiones,II.1.1,17.44596,TJ,N2O,3.9,kg/TJ,68.039244,Gas Oil combustion consumption by public passenger transport,AR-N,SESCO,annual,kg,0887f42f-6027-3e9b-86a1-6695ba4aa29d -2018,Neuquén,II.1.1,10.90824,TJ,CO2,74100.0,kg/TJ,808300.5839999999,Gas Oil combustion consumption by public passenger transport,AR-Q,SESCO,annual,kg,327ac604-d0ba-3878-953a-9ff35a410591 -2018,Neuquén,II.1.1,10.90824,TJ,CH4,3.9,kg/TJ,42.542136,Gas Oil combustion consumption by public passenger transport,AR-Q,SESCO,annual,kg,0a418673-643b-3216-822d-12eed067de56 -2018,Neuquén,II.1.1,10.90824,TJ,N2O,3.9,kg/TJ,42.542136,Gas Oil combustion consumption by public passenger transport,AR-Q,SESCO,annual,kg,0a418673-643b-3216-822d-12eed067de56 -2018,Rio Negro,II.1.1,41.75472,TJ,CO2,74100.0,kg/TJ,3094024.752,Gas Oil combustion consumption by public passenger transport,AR-R,SESCO,annual,kg,6586088e-48a3-3827-9bed-ccf251ac235d -2018,Rio Negro,II.1.1,41.75472,TJ,CH4,3.9,kg/TJ,162.84340799999998,Gas Oil combustion consumption by public passenger transport,AR-R,SESCO,annual,kg,5355ca97-bc91-3596-ad1e-3822048ad53f -2018,Rio Negro,II.1.1,41.75472,TJ,N2O,3.9,kg/TJ,162.84340799999998,Gas Oil combustion consumption by public passenger transport,AR-R,SESCO,annual,kg,5355ca97-bc91-3596-ad1e-3822048ad53f -2018,Salta,II.1.1,51.14592,TJ,CO2,74100.0,kg/TJ,3789912.672,Gas Oil combustion consumption by public passenger transport,AR-A,SESCO,annual,kg,71a445ab-f147-3967-b4ce-2a4a6ea661dc -2018,Salta,II.1.1,51.14592,TJ,CH4,3.9,kg/TJ,199.46908799999997,Gas Oil combustion consumption by public passenger transport,AR-A,SESCO,annual,kg,f3d06568-f3b8-398f-9891-320032eb71cc -2018,Salta,II.1.1,51.14592,TJ,N2O,3.9,kg/TJ,199.46908799999997,Gas Oil combustion consumption by public passenger transport,AR-A,SESCO,annual,kg,f3d06568-f3b8-398f-9891-320032eb71cc -2018,San Juan,II.1.1,0.03612,TJ,CO2,74100.0,kg/TJ,2676.4919999999997,Gas Oil combustion consumption by public passenger transport,AR-J,SESCO,annual,kg,f1c36709-d37a-3179-ace9-0637f6c05a1f -2018,San Juan,II.1.1,0.03612,TJ,CH4,3.9,kg/TJ,0.140868,Gas Oil combustion consumption by public passenger transport,AR-J,SESCO,annual,kg,5e76d161-edcd-3406-a470-b0dd11894374 -2018,San Juan,II.1.1,0.03612,TJ,N2O,3.9,kg/TJ,0.140868,Gas Oil combustion consumption by public passenger transport,AR-J,SESCO,annual,kg,5e76d161-edcd-3406-a470-b0dd11894374 -2018,San Luis,II.1.1,0.28896,TJ,CO2,74100.0,kg/TJ,21411.935999999998,Gas Oil combustion consumption by public passenger transport,AR-D,SESCO,annual,kg,72d043a2-68e2-365f-8cc4-12717010f16b -2018,San Luis,II.1.1,0.28896,TJ,CH4,3.9,kg/TJ,1.126944,Gas Oil combustion consumption by public passenger transport,AR-D,SESCO,annual,kg,082f2789-22a0-35e4-b33b-02c355e293fe -2018,San Luis,II.1.1,0.28896,TJ,N2O,3.9,kg/TJ,1.126944,Gas Oil combustion consumption by public passenger transport,AR-D,SESCO,annual,kg,082f2789-22a0-35e4-b33b-02c355e293fe -2018,Santa Fe,II.1.1,260.20848,TJ,CO2,74100.0,kg/TJ,19281448.368,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,bf256d2f-d889-3710-8427-7884bc1a4f4c -2018,Santa Fe,II.1.1,260.20848,TJ,CH4,3.9,kg/TJ,1014.813072,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,4a21e5f2-f69d-3f42-ae93-2be4718d80e7 -2018,Santa Fe,II.1.1,260.20848,TJ,N2O,3.9,kg/TJ,1014.813072,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,4a21e5f2-f69d-3f42-ae93-2be4718d80e7 -2018,Santiago del Estero,II.1.1,0.86688,TJ,CO2,74100.0,kg/TJ,64235.808,Gas Oil combustion consumption by public passenger transport,AR-G,SESCO,annual,kg,c38b5acc-d360-32d8-9607-5e85c5d38490 -2018,Santiago del Estero,II.1.1,0.86688,TJ,CH4,3.9,kg/TJ,3.380832,Gas Oil combustion consumption by public passenger transport,AR-G,SESCO,annual,kg,235031e6-3bfa-34bb-bfa7-87dfe5447339 -2018,Santiago del Estero,II.1.1,0.86688,TJ,N2O,3.9,kg/TJ,3.380832,Gas Oil combustion consumption by public passenger transport,AR-G,SESCO,annual,kg,235031e6-3bfa-34bb-bfa7-87dfe5447339 -2018,Tucuman,II.1.1,76.32155999999999,TJ,CO2,74100.0,kg/TJ,5655427.595999999,Gas Oil combustion consumption by public passenger transport,AR-T,SESCO,annual,kg,082afaf3-ef37-3192-a388-180619d26025 -2018,Tucuman,II.1.1,76.32155999999999,TJ,CH4,3.9,kg/TJ,297.65408399999995,Gas Oil combustion consumption by public passenger transport,AR-T,SESCO,annual,kg,489c4d30-fb93-3e0b-8fd4-dbb835d32f22 -2018,Tucuman,II.1.1,76.32155999999999,TJ,N2O,3.9,kg/TJ,297.65408399999995,Gas Oil combustion consumption by public passenger transport,AR-T,SESCO,annual,kg,489c4d30-fb93-3e0b-8fd4-dbb835d32f22 -2018,Buenos Aires,II.1.1,329.26992,TJ,CO2,74100.0,kg/TJ,24398901.072,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,3f7343c0-598a-34ba-8039-af183a3b72cf -2018,Buenos Aires,II.1.1,329.26992,TJ,CH4,3.9,kg/TJ,1284.1526880000001,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,c5c6f1fb-1557-3387-938f-5dbe81d6d206 -2018,Buenos Aires,II.1.1,329.26992,TJ,N2O,3.9,kg/TJ,1284.1526880000001,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,c5c6f1fb-1557-3387-938f-5dbe81d6d206 -2018,Capital Federal,II.1.1,166.26036,TJ,CO2,74100.0,kg/TJ,12319892.675999999,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,0ecf6183-8da9-376b-a813-125e22bbe7bd -2018,Capital Federal,II.1.1,166.26036,TJ,CH4,3.9,kg/TJ,648.415404,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,f2e7ac04-b76f-3ce2-bf0f-9c94a14f2766 -2018,Capital Federal,II.1.1,166.26036,TJ,N2O,3.9,kg/TJ,648.415404,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,f2e7ac04-b76f-3ce2-bf0f-9c94a14f2766 -2018,Chaco,II.1.1,0.07224,TJ,CO2,74100.0,kg/TJ,5352.9839999999995,Gas Oil combustion consumption by public passenger transport,AR-H,SESCO,annual,kg,9fec9256-e6de-33a3-9299-24c0d9147558 -2018,Chaco,II.1.1,0.07224,TJ,CH4,3.9,kg/TJ,0.281736,Gas Oil combustion consumption by public passenger transport,AR-H,SESCO,annual,kg,7479c1e2-0224-32cb-aa47-6eb9710dd581 -2018,Chaco,II.1.1,0.07224,TJ,N2O,3.9,kg/TJ,0.281736,Gas Oil combustion consumption by public passenger transport,AR-H,SESCO,annual,kg,7479c1e2-0224-32cb-aa47-6eb9710dd581 -2018,Chubut,II.1.1,8.95776,TJ,CO2,74100.0,kg/TJ,663770.0160000001,Gas Oil combustion consumption by public passenger transport,AR-U,SESCO,annual,kg,72d268de-7399-3dde-87b5-fe7fb8dcb819 -2018,Chubut,II.1.1,8.95776,TJ,CH4,3.9,kg/TJ,34.935264000000004,Gas Oil combustion consumption by public passenger transport,AR-U,SESCO,annual,kg,8ad11356-7091-31d5-b6fb-69235313a3ea -2018,Chubut,II.1.1,8.95776,TJ,N2O,3.9,kg/TJ,34.935264000000004,Gas Oil combustion consumption by public passenger transport,AR-U,SESCO,annual,kg,8ad11356-7091-31d5-b6fb-69235313a3ea -2018,Corrientes,II.1.1,3.0702,TJ,CO2,74100.0,kg/TJ,227501.81999999998,Gas Oil combustion consumption by public passenger transport,AR-W,SESCO,annual,kg,6f51ac90-140c-318c-b7cb-ce739af3ddbc -2018,Corrientes,II.1.1,3.0702,TJ,CH4,3.9,kg/TJ,11.97378,Gas Oil combustion consumption by public passenger transport,AR-W,SESCO,annual,kg,3abcf3b3-b06a-39da-959f-b42ab6954ad0 -2018,Corrientes,II.1.1,3.0702,TJ,N2O,3.9,kg/TJ,11.97378,Gas Oil combustion consumption by public passenger transport,AR-W,SESCO,annual,kg,3abcf3b3-b06a-39da-959f-b42ab6954ad0 -2018,Córdoba,II.1.1,12.17244,TJ,CO2,74100.0,kg/TJ,901977.804,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,919086b8-3365-33ec-860b-a5dba2a39a11 -2018,Córdoba,II.1.1,12.17244,TJ,CH4,3.9,kg/TJ,47.472516,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,9fff5b47-b755-38b8-bcd0-21fc10a24ccd -2018,Córdoba,II.1.1,12.17244,TJ,N2O,3.9,kg/TJ,47.472516,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,9fff5b47-b755-38b8-bcd0-21fc10a24ccd -2018,Entre Rios,II.1.1,5.56248,TJ,CO2,74100.0,kg/TJ,412179.768,Gas Oil combustion consumption by public passenger transport,AR-E,SESCO,annual,kg,1a53c920-a152-39e0-8ced-341bcc0a010f -2018,Entre Rios,II.1.1,5.56248,TJ,CH4,3.9,kg/TJ,21.693672,Gas Oil combustion consumption by public passenger transport,AR-E,SESCO,annual,kg,b0107ce6-d649-3d67-95e4-6727ec49244f -2018,Entre Rios,II.1.1,5.56248,TJ,N2O,3.9,kg/TJ,21.693672,Gas Oil combustion consumption by public passenger transport,AR-E,SESCO,annual,kg,b0107ce6-d649-3d67-95e4-6727ec49244f -2018,Formosa,II.1.1,0.07224,TJ,CO2,74100.0,kg/TJ,5352.9839999999995,Gas Oil combustion consumption by public passenger transport,AR-P,SESCO,annual,kg,f4f59301-29bb-3397-a821-3d925d037e51 -2018,Formosa,II.1.1,0.07224,TJ,CH4,3.9,kg/TJ,0.281736,Gas Oil combustion consumption by public passenger transport,AR-P,SESCO,annual,kg,9fd6e638-79a3-3588-8412-63560d92cdb2 -2018,Formosa,II.1.1,0.07224,TJ,N2O,3.9,kg/TJ,0.281736,Gas Oil combustion consumption by public passenger transport,AR-P,SESCO,annual,kg,9fd6e638-79a3-3588-8412-63560d92cdb2 -2018,Jujuy,II.1.1,0.07224,TJ,CO2,74100.0,kg/TJ,5352.9839999999995,Gas Oil combustion consumption by public passenger transport,AR-Y,SESCO,annual,kg,a016bbf8-b467-372f-8664-0d9e25bd4135 -2018,Jujuy,II.1.1,0.07224,TJ,CH4,3.9,kg/TJ,0.281736,Gas Oil combustion consumption by public passenger transport,AR-Y,SESCO,annual,kg,aeedfadb-977c-36b5-a64c-85425e38197c -2018,Jujuy,II.1.1,0.07224,TJ,N2O,3.9,kg/TJ,0.281736,Gas Oil combustion consumption by public passenger transport,AR-Y,SESCO,annual,kg,aeedfadb-977c-36b5-a64c-85425e38197c -2018,La Pampa,II.1.1,18.81852,TJ,CO2,74100.0,kg/TJ,1394452.332,Gas Oil combustion consumption by public passenger transport,AR-L,SESCO,annual,kg,ffcac0aa-fb32-398a-9ecd-198aa3a4e7af -2018,La Pampa,II.1.1,18.81852,TJ,CH4,3.9,kg/TJ,73.392228,Gas Oil combustion consumption by public passenger transport,AR-L,SESCO,annual,kg,4151a631-fbc4-3057-9d7f-6d19b16d2b8a -2018,La Pampa,II.1.1,18.81852,TJ,N2O,3.9,kg/TJ,73.392228,Gas Oil combustion consumption by public passenger transport,AR-L,SESCO,annual,kg,4151a631-fbc4-3057-9d7f-6d19b16d2b8a -2018,Mendoza,II.1.1,0.39732,TJ,CO2,74100.0,kg/TJ,29441.412,Gas Oil combustion consumption by public passenger transport,AR-M,SESCO,annual,kg,ebe658f6-7edc-3cda-ba1d-07072281fd84 -2018,Mendoza,II.1.1,0.39732,TJ,CH4,3.9,kg/TJ,1.549548,Gas Oil combustion consumption by public passenger transport,AR-M,SESCO,annual,kg,ca6b7f74-1060-3c77-b96f-9a15fce94431 -2018,Mendoza,II.1.1,0.39732,TJ,N2O,3.9,kg/TJ,1.549548,Gas Oil combustion consumption by public passenger transport,AR-M,SESCO,annual,kg,ca6b7f74-1060-3c77-b96f-9a15fce94431 -2018,Misiones,II.1.1,11.66676,TJ,CO2,74100.0,kg/TJ,864506.916,Gas Oil combustion consumption by public passenger transport,AR-N,SESCO,annual,kg,c4a81e52-9037-3fec-9db3-853316a45e88 -2018,Misiones,II.1.1,11.66676,TJ,CH4,3.9,kg/TJ,45.500364,Gas Oil combustion consumption by public passenger transport,AR-N,SESCO,annual,kg,975f8858-2101-3a54-8102-f77cc326be5d -2018,Misiones,II.1.1,11.66676,TJ,N2O,3.9,kg/TJ,45.500364,Gas Oil combustion consumption by public passenger transport,AR-N,SESCO,annual,kg,975f8858-2101-3a54-8102-f77cc326be5d -2018,Neuquén,II.1.1,7.5851999999999995,TJ,CO2,74100.0,kg/TJ,562063.32,Gas Oil combustion consumption by public passenger transport,AR-Q,SESCO,annual,kg,3b11a368-48a9-34d3-89a9-a8f71b3166b1 -2018,Neuquén,II.1.1,7.5851999999999995,TJ,CH4,3.9,kg/TJ,29.582279999999997,Gas Oil combustion consumption by public passenger transport,AR-Q,SESCO,annual,kg,fa37326b-bca4-361d-81e7-61342de2dbe3 -2018,Neuquén,II.1.1,7.5851999999999995,TJ,N2O,3.9,kg/TJ,29.582279999999997,Gas Oil combustion consumption by public passenger transport,AR-Q,SESCO,annual,kg,fa37326b-bca4-361d-81e7-61342de2dbe3 -2018,Rio Negro,II.1.1,34.602959999999996,TJ,CO2,74100.0,kg/TJ,2564079.3359999997,Gas Oil combustion consumption by public passenger transport,AR-R,SESCO,annual,kg,4583803d-c14a-35dd-9219-2137d5b1edfb -2018,Rio Negro,II.1.1,34.602959999999996,TJ,CH4,3.9,kg/TJ,134.95154399999998,Gas Oil combustion consumption by public passenger transport,AR-R,SESCO,annual,kg,79a4cf11-000e-3cc5-b62e-7c4b387bdd95 -2018,Rio Negro,II.1.1,34.602959999999996,TJ,N2O,3.9,kg/TJ,134.95154399999998,Gas Oil combustion consumption by public passenger transport,AR-R,SESCO,annual,kg,79a4cf11-000e-3cc5-b62e-7c4b387bdd95 -2018,Salta,II.1.1,0.25284,TJ,CO2,74100.0,kg/TJ,18735.444,Gas Oil combustion consumption by public passenger transport,AR-A,SESCO,annual,kg,445798c6-1052-3815-aa5e-b2bd3e829503 -2018,Salta,II.1.1,0.25284,TJ,CH4,3.9,kg/TJ,0.9860760000000001,Gas Oil combustion consumption by public passenger transport,AR-A,SESCO,annual,kg,8057f7ef-0a9e-3651-a925-bbf3455fa02f -2018,Salta,II.1.1,0.25284,TJ,N2O,3.9,kg/TJ,0.9860760000000001,Gas Oil combustion consumption by public passenger transport,AR-A,SESCO,annual,kg,8057f7ef-0a9e-3651-a925-bbf3455fa02f -2018,San Juan,II.1.1,0.03612,TJ,CO2,74100.0,kg/TJ,2676.4919999999997,Gas Oil combustion consumption by public passenger transport,AR-J,SESCO,annual,kg,f1c36709-d37a-3179-ace9-0637f6c05a1f -2018,San Juan,II.1.1,0.03612,TJ,CH4,3.9,kg/TJ,0.140868,Gas Oil combustion consumption by public passenger transport,AR-J,SESCO,annual,kg,5e76d161-edcd-3406-a470-b0dd11894374 -2018,San Juan,II.1.1,0.03612,TJ,N2O,3.9,kg/TJ,0.140868,Gas Oil combustion consumption by public passenger transport,AR-J,SESCO,annual,kg,5e76d161-edcd-3406-a470-b0dd11894374 -2018,San Luis,II.1.1,0.03612,TJ,CO2,74100.0,kg/TJ,2676.4919999999997,Gas Oil combustion consumption by public passenger transport,AR-D,SESCO,annual,kg,d1a627b5-9e09-3e53-a6ad-dea571646ce9 -2018,San Luis,II.1.1,0.03612,TJ,CH4,3.9,kg/TJ,0.140868,Gas Oil combustion consumption by public passenger transport,AR-D,SESCO,annual,kg,c6a9bf1d-3e70-3e85-a609-9e2f1e66173d -2018,San Luis,II.1.1,0.03612,TJ,N2O,3.9,kg/TJ,0.140868,Gas Oil combustion consumption by public passenger transport,AR-D,SESCO,annual,kg,c6a9bf1d-3e70-3e85-a609-9e2f1e66173d -2018,Santa Fe,II.1.1,88.6746,TJ,CO2,74100.0,kg/TJ,6570787.859999999,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,72a3d416-ba0d-3139-aef5-7651cd8e6b22 -2018,Santa Fe,II.1.1,88.6746,TJ,CH4,3.9,kg/TJ,345.83094,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,d69387e7-56ac-364d-b739-c7da4ffd9de0 -2018,Santa Fe,II.1.1,88.6746,TJ,N2O,3.9,kg/TJ,345.83094,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,d69387e7-56ac-364d-b739-c7da4ffd9de0 -2018,Santiago del Estero,II.1.1,0.18059999999999998,TJ,CO2,74100.0,kg/TJ,13382.46,Gas Oil combustion consumption by public passenger transport,AR-G,SESCO,annual,kg,3c8c274a-f4c1-32eb-b1d8-294aef5a8545 -2018,Santiago del Estero,II.1.1,0.18059999999999998,TJ,CH4,3.9,kg/TJ,0.70434,Gas Oil combustion consumption by public passenger transport,AR-G,SESCO,annual,kg,57674291-16cd-3d81-b3c2-f42e9b17a22d -2018,Santiago del Estero,II.1.1,0.18059999999999998,TJ,N2O,3.9,kg/TJ,0.70434,Gas Oil combustion consumption by public passenger transport,AR-G,SESCO,annual,kg,57674291-16cd-3d81-b3c2-f42e9b17a22d -2018,Tucuman,II.1.1,0.03612,TJ,CO2,74100.0,kg/TJ,2676.4919999999997,Gas Oil combustion consumption by public passenger transport,AR-T,SESCO,annual,kg,b52de9dd-f832-3bc4-828c-b27ffb31d294 -2018,Tucuman,II.1.1,0.03612,TJ,CH4,3.9,kg/TJ,0.140868,Gas Oil combustion consumption by public passenger transport,AR-T,SESCO,annual,kg,ed0e8af5-4f73-3538-bbbc-56ce6cf73097 -2018,Tucuman,II.1.1,0.03612,TJ,N2O,3.9,kg/TJ,0.140868,Gas Oil combustion consumption by public passenger transport,AR-T,SESCO,annual,kg,ed0e8af5-4f73-3538-bbbc-56ce6cf73097 -2018,Buenos Aires,II.1.1,0.034265,TJ,CO2,73300.0,kg/TJ,2511.6245,Naphtha combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,da207a9a-c401-36a1-b813-a75d83aa1e40 -2018,Buenos Aires,II.1.1,0.034265,TJ,CH4,0.5,kg/TJ,0.0171325,Naphtha combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,9ae1d432-8fdc-32b3-b35a-79a503b0ab35 -2018,Buenos Aires,II.1.1,0.034265,TJ,N2O,2.0,kg/TJ,0.06853,Naphtha combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,9fb7bfa1-a6a7-3eed-a7ea-24a783ab1383 -2018,Capital Federal,II.1.1,0.034265,TJ,CO2,73300.0,kg/TJ,2511.6245,Naphtha combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,2ef3c099-529e-3ff1-abcc-8d940dc3aa87 -2018,Capital Federal,II.1.1,0.034265,TJ,CH4,0.5,kg/TJ,0.0171325,Naphtha combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,a32620fa-bdcf-3b3e-8e18-935e2a6a3f23 -2018,Capital Federal,II.1.1,0.034265,TJ,N2O,2.0,kg/TJ,0.06853,Naphtha combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,9708461e-e760-304f-a39b-7982a36382c5 -2018,Salta,II.1.1,0.75383,TJ,CO2,73300.0,kg/TJ,55255.739,Naphtha combustion consumption by public passenger transport,AR-A,SESCO,annual,kg,c80d47c0-3176-3e31-9911-576e2db21ab7 -2018,Salta,II.1.1,0.75383,TJ,CH4,0.5,kg/TJ,0.376915,Naphtha combustion consumption by public passenger transport,AR-A,SESCO,annual,kg,b7ff6197-30b0-3780-89d2-cb65729104e7 -2018,Salta,II.1.1,0.75383,TJ,N2O,2.0,kg/TJ,1.50766,Naphtha combustion consumption by public passenger transport,AR-A,SESCO,annual,kg,aa185c3c-282c-3965-ae9c-c22662fb99ae -2018,Santa Fe,II.1.1,0.23985499999999998,TJ,CO2,73300.0,kg/TJ,17581.371499999997,Naphtha combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,1545bba2-36d7-3791-9f6f-6544da637e89 -2018,Santa Fe,II.1.1,0.23985499999999998,TJ,CH4,0.5,kg/TJ,0.11992749999999999,Naphtha combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,c1922d73-cf2e-3d2f-8a4b-5f2319157321 -2018,Santa Fe,II.1.1,0.23985499999999998,TJ,N2O,2.0,kg/TJ,0.47970999999999997,Naphtha combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,4464fa33-cdc2-3fa7-8f2c-804e01fed530 -2018,Buenos Aires,II.1.1,0.034265,TJ,CO2,73300.0,kg/TJ,2511.6245,Naphtha combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,da207a9a-c401-36a1-b813-a75d83aa1e40 -2018,Buenos Aires,II.1.1,0.034265,TJ,CH4,0.5,kg/TJ,0.0171325,Naphtha combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,9ae1d432-8fdc-32b3-b35a-79a503b0ab35 -2018,Buenos Aires,II.1.1,0.034265,TJ,N2O,2.0,kg/TJ,0.06853,Naphtha combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,9fb7bfa1-a6a7-3eed-a7ea-24a783ab1383 -2018,Capital Federal,II.1.1,0.034265,TJ,CO2,73300.0,kg/TJ,2511.6245,Naphtha combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,2ef3c099-529e-3ff1-abcc-8d940dc3aa87 -2018,Capital Federal,II.1.1,0.034265,TJ,CH4,0.5,kg/TJ,0.0171325,Naphtha combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,a32620fa-bdcf-3b3e-8e18-935e2a6a3f23 -2018,Capital Federal,II.1.1,0.034265,TJ,N2O,2.0,kg/TJ,0.06853,Naphtha combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,9708461e-e760-304f-a39b-7982a36382c5 -2018,Córdoba,II.1.1,0.034265,TJ,CO2,73300.0,kg/TJ,2511.6245,Naphtha combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,2214027b-c809-34d2-81ac-873dd7fdda96 -2018,Córdoba,II.1.1,0.034265,TJ,CH4,0.5,kg/TJ,0.0171325,Naphtha combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,c0a71c69-abea-34d7-807d-e78d311271fe -2018,Córdoba,II.1.1,0.034265,TJ,N2O,2.0,kg/TJ,0.06853,Naphtha combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,7631451b-e6e1-3120-aa47-66564218911e -2018,Santa Fe,II.1.1,0.102795,TJ,CO2,73300.0,kg/TJ,7534.8735,Naphtha combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,4e6b7f0b-eb3a-3e67-9d8f-9906a928ee42 -2018,Santa Fe,II.1.1,0.102795,TJ,CH4,0.5,kg/TJ,0.0513975,Naphtha combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,41bde552-8f76-35f0-b6e4-ce0a90f63d87 -2018,Santa Fe,II.1.1,0.102795,TJ,N2O,2.0,kg/TJ,0.20559,Naphtha combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,c44fc14e-5bd9-34e9-8043-44ae588beac7 -2018,Buenos Aires,II.5.1,118.75743096,TJ,CO2,74100.0,kg/TJ,8799925.634135999,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,0f8a4c44-cb57-352f-a4bb-237fd1817f93 -2018,Buenos Aires,II.5.1,118.75743096,TJ,CH4,3.9,kg/TJ,463.15398074399997,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,e4d490b3-11dc-38be-89ed-66726a01a4af -2018,Buenos Aires,II.5.1,118.75743096,TJ,N2O,3.9,kg/TJ,463.15398074399997,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,e4d490b3-11dc-38be-89ed-66726a01a4af -2018,Córdoba,II.5.1,17.24899764,TJ,CO2,74100.0,kg/TJ,1278150.7251239999,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,0af6e936-3a04-34c0-a7cf-d8f29e758568 -2018,Córdoba,II.5.1,17.24899764,TJ,CH4,3.9,kg/TJ,67.271090796,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,4e8845f0-94e9-357a-9a2b-1110998709e2 -2018,Córdoba,II.5.1,17.24899764,TJ,N2O,3.9,kg/TJ,67.271090796,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,4e8845f0-94e9-357a-9a2b-1110998709e2 -2018,Entre Rios,II.5.1,1.28771412,TJ,CO2,74100.0,kg/TJ,95419.61629199999,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,d30ec92b-7daf-3141-83fd-3aaa15f217f5 -2018,Entre Rios,II.5.1,1.28771412,TJ,CH4,3.9,kg/TJ,5.022085068,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,26ff203d-2e4d-39fb-b0ca-b2cb628736e0 -2018,Entre Rios,II.5.1,1.28771412,TJ,N2O,3.9,kg/TJ,5.022085068,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,26ff203d-2e4d-39fb-b0ca-b2cb628736e0 -2018,Rio Negro,II.5.1,0.9275254799999999,TJ,CO2,74100.0,kg/TJ,68729.63806799999,Gas Oil combustion consumption by agriculture machines,AR-R,SESCO,annual,kg,46db6f60-0308-3a65-96fa-9971b417413a -2018,Rio Negro,II.5.1,0.9275254799999999,TJ,CH4,3.9,kg/TJ,3.6173493719999996,Gas Oil combustion consumption by agriculture machines,AR-R,SESCO,annual,kg,eb12a538-64b3-3195-8aac-51016f348101 -2018,Rio Negro,II.5.1,0.9275254799999999,TJ,N2O,3.9,kg/TJ,3.6173493719999996,Gas Oil combustion consumption by agriculture machines,AR-R,SESCO,annual,kg,eb12a538-64b3-3195-8aac-51016f348101 -2018,Buenos Aires,II.5.1,4.917061765000001,TJ,CO2,73300.0,kg/TJ,360420.62737450004,Naphtha combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,acebeb2d-5660-3f8d-9a97-709bdd4bf258 -2018,Buenos Aires,II.5.1,4.917061765000001,TJ,CH4,0.5,kg/TJ,2.4585308825000003,Naphtha combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,0a5f1d32-cc33-3075-8e59-811f1e88c284 -2018,Buenos Aires,II.5.1,4.917061765000001,TJ,N2O,2.0,kg/TJ,9.834123530000001,Naphtha combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,210d5aaf-4fc2-3449-9cba-4be6e522e320 -2018,Rio Negro,II.5.1,0.4731996499999999,TJ,CO2,73300.0,kg/TJ,34685.53434499999,Naphtha combustion consumption by agriculture machines,AR-R,SESCO,annual,kg,5136aa2d-1e4b-3168-bb99-188f5fc7aec9 -2018,Rio Negro,II.5.1,0.4731996499999999,TJ,CH4,0.5,kg/TJ,0.23659982499999996,Naphtha combustion consumption by agriculture machines,AR-R,SESCO,annual,kg,02fbd65a-52a0-3373-a095-7e3ac51846cc -2018,Rio Negro,II.5.1,0.4731996499999999,TJ,N2O,2.0,kg/TJ,0.9463992999999998,Naphtha combustion consumption by agriculture machines,AR-R,SESCO,annual,kg,b0d73f03-9bc5-3fe5-8087-f07be02de975 -2018,Buenos Aires,II.5.1,0.74848466,TJ,CO2,73300.0,kg/TJ,54863.925578,Naphtha combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,03c29ac9-bad7-3011-9339-cbb1a2675873 -2018,Buenos Aires,II.5.1,0.74848466,TJ,CH4,0.5,kg/TJ,0.37424233,Naphtha combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,7591d698-4f85-349e-a858-2b8023a0633a -2018,Buenos Aires,II.5.1,0.74848466,TJ,N2O,2.0,kg/TJ,1.49696932,Naphtha combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,42b5dcb0-c817-3589-9d8b-eb7f085f7e53 -2018,Buenos Aires,II.1.1,78.73777128,TJ,CO2,74100.0,kg/TJ,5834468.851848001,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,8c4c1222-f8c4-3e10-a4b2-bfa6a45d3a7b -2018,Buenos Aires,II.1.1,78.73777128,TJ,CH4,3.9,kg/TJ,307.077307992,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,73bae360-edb6-33f7-a60e-ac0faa2cefb5 -2018,Buenos Aires,II.1.1,78.73777128,TJ,N2O,3.9,kg/TJ,307.077307992,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,73bae360-edb6-33f7-a60e-ac0faa2cefb5 -2018,Chubut,II.1.1,2.034459,TJ,CO2,74100.0,kg/TJ,150753.4119,Gas Oil combustion consumption by freight transport,AR-U,SESCO,annual,kg,76480f18-067e-3139-93c9-eed7db2d99f7 -2018,Chubut,II.1.1,2.034459,TJ,CH4,3.9,kg/TJ,7.9343901,Gas Oil combustion consumption by freight transport,AR-U,SESCO,annual,kg,f65d1896-e901-3a30-955b-cb6cf4e8096d -2018,Chubut,II.1.1,2.034459,TJ,N2O,3.9,kg/TJ,7.9343901,Gas Oil combustion consumption by freight transport,AR-U,SESCO,annual,kg,f65d1896-e901-3a30-955b-cb6cf4e8096d -2018,San Luis,II.1.1,28.058882880000002,TJ,CO2,74100.0,kg/TJ,2079163.2214080002,Gas Oil combustion consumption by freight transport,AR-D,SESCO,annual,kg,15e5a2ad-2330-3858-81f7-0b4cbd71968c -2018,San Luis,II.1.1,28.058882880000002,TJ,CH4,3.9,kg/TJ,109.429643232,Gas Oil combustion consumption by freight transport,AR-D,SESCO,annual,kg,4e936f3d-b774-35b2-a69b-e12e95d858d3 -2018,San Luis,II.1.1,28.058882880000002,TJ,N2O,3.9,kg/TJ,109.429643232,Gas Oil combustion consumption by freight transport,AR-D,SESCO,annual,kg,4e936f3d-b774-35b2-a69b-e12e95d858d3 -2018,Buenos Aires,II.1.1,1.89590268,TJ,CO2,74100.0,kg/TJ,140486.388588,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,a14ce3d8-fa88-31c0-bb14-88396c8204c4 -2018,Buenos Aires,II.1.1,1.89590268,TJ,CH4,3.9,kg/TJ,7.394020452,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,84c5d345-b764-3681-b7cd-637fe1ad12bf -2018,Buenos Aires,II.1.1,1.89590268,TJ,N2O,3.9,kg/TJ,7.394020452,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,84c5d345-b764-3681-b7cd-637fe1ad12bf -2018,Buenos Aires,II.1.1,136.77296724,TJ,CO2,74100.0,kg/TJ,10134876.872484,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,d0abe782-b2df-3707-b297-b8ee88811212 -2018,Buenos Aires,II.1.1,136.77296724,TJ,CH4,3.9,kg/TJ,533.414572236,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,70fa0847-360a-3742-8e1c-d4e5a8fbe478 -2018,Buenos Aires,II.1.1,136.77296724,TJ,N2O,3.9,kg/TJ,533.414572236,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,70fa0847-360a-3742-8e1c-d4e5a8fbe478 -2018,Capital Federal,II.1.1,21.836057040000004,TJ,CO2,74100.0,kg/TJ,1618051.8266640003,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,93311012-3a99-3d46-b4ef-ba037e6e1e9a -2018,Capital Federal,II.1.1,21.836057040000004,TJ,CH4,3.9,kg/TJ,85.16062245600001,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,d50c8bb5-105f-3be2-9020-3ed6a01c59e2 -2018,Capital Federal,II.1.1,21.836057040000004,TJ,N2O,3.9,kg/TJ,85.16062245600001,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,d50c8bb5-105f-3be2-9020-3ed6a01c59e2 -2018,Chubut,II.1.1,11.611460280000001,TJ,CO2,74100.0,kg/TJ,860409.2067480001,Gas Oil combustion consumption by public passenger transport,AR-U,SESCO,annual,kg,31846296-75f5-325a-94c0-9baf3e45d467 -2018,Chubut,II.1.1,11.611460280000001,TJ,CH4,3.9,kg/TJ,45.284695092,Gas Oil combustion consumption by public passenger transport,AR-U,SESCO,annual,kg,37656fc7-991a-373d-a401-a182cf44c3e0 -2018,Chubut,II.1.1,11.611460280000001,TJ,N2O,3.9,kg/TJ,45.284695092,Gas Oil combustion consumption by public passenger transport,AR-U,SESCO,annual,kg,37656fc7-991a-373d-a401-a182cf44c3e0 -2018,Córdoba,II.1.1,81.14726423999998,TJ,CO2,74100.0,kg/TJ,6013012.280183999,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,4f6ba596-fa79-394a-9124-5033bbcea282 -2018,Córdoba,II.1.1,81.14726423999998,TJ,CH4,3.9,kg/TJ,316.4743305359999,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,c9333c35-defb-3e1b-8db0-25afce5a33af -2018,Córdoba,II.1.1,81.14726423999998,TJ,N2O,3.9,kg/TJ,316.4743305359999,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,c9333c35-defb-3e1b-8db0-25afce5a33af -2018,Neuquén,II.1.1,7.350528359999999,TJ,CO2,74100.0,kg/TJ,544674.151476,Gas Oil combustion consumption by public passenger transport,AR-Q,SESCO,annual,kg,0a75bdd6-1766-3ea7-8e5f-50ad47d877d5 -2018,Neuquén,II.1.1,7.350528359999999,TJ,CH4,3.9,kg/TJ,28.667060603999996,Gas Oil combustion consumption by public passenger transport,AR-Q,SESCO,annual,kg,38d5f9c7-ebff-3db0-b5af-0e975e3d7f70 -2018,Neuquén,II.1.1,7.350528359999999,TJ,N2O,3.9,kg/TJ,28.667060603999996,Gas Oil combustion consumption by public passenger transport,AR-Q,SESCO,annual,kg,38d5f9c7-ebff-3db0-b5af-0e975e3d7f70 -2018,Rio Negro,II.1.1,38.02832796,TJ,CO2,74100.0,kg/TJ,2817899.101836,Gas Oil combustion consumption by public passenger transport,AR-R,SESCO,annual,kg,8ef17ff6-340a-3db5-8a6f-d09602c7827d -2018,Rio Negro,II.1.1,38.02832796,TJ,CH4,3.9,kg/TJ,148.310479044,Gas Oil combustion consumption by public passenger transport,AR-R,SESCO,annual,kg,19634cf2-fd02-329c-9394-7e19d2457594 -2018,Rio Negro,II.1.1,38.02832796,TJ,N2O,3.9,kg/TJ,148.310479044,Gas Oil combustion consumption by public passenger transport,AR-R,SESCO,annual,kg,19634cf2-fd02-329c-9394-7e19d2457594 -2018,Santa Fe,II.1.1,2.2444606799999995,TJ,CO2,74100.0,kg/TJ,166314.53638799998,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,37ef8077-34e5-348d-a650-d71341bd01ff -2018,Santa Fe,II.1.1,2.2444606799999995,TJ,CH4,3.9,kg/TJ,8.753396651999998,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,098ef206-b8c3-3891-b2d7-7750c7f0b639 -2018,Santa Fe,II.1.1,2.2444606799999995,TJ,N2O,3.9,kg/TJ,8.753396651999998,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,098ef206-b8c3-3891-b2d7-7750c7f0b639 -2018,Buenos Aires,II.1.1,21.531132,TJ,CO2,74100.0,kg/TJ,1595456.8812,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,aff04f93-5f5b-38cb-8891-80992d42c7a2 -2018,Buenos Aires,II.1.1,21.531132,TJ,CH4,3.9,kg/TJ,83.97141479999999,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,4e35bf06-294b-3cba-80ab-60853d6e0874 -2018,Buenos Aires,II.1.1,21.531132,TJ,N2O,3.9,kg/TJ,83.97141479999999,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,4e35bf06-294b-3cba-80ab-60853d6e0874 -2018,Capital Federal,II.1.1,0.35816592,TJ,CO2,74100.0,kg/TJ,26540.094672000003,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,6135c557-3bab-3ade-99fa-6c1ec7f351a1 -2018,Capital Federal,II.1.1,0.35816592,TJ,CH4,3.9,kg/TJ,1.3968470880000001,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,b6d225fd-d9e7-3bd3-a200-ed78dc47d182 -2018,Capital Federal,II.1.1,0.35816592,TJ,N2O,3.9,kg/TJ,1.3968470880000001,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,b6d225fd-d9e7-3bd3-a200-ed78dc47d182 -2018,Córdoba,II.1.1,3.6853236,TJ,CO2,74100.0,kg/TJ,273082.47875999997,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,7a1a0548-abf4-37fc-a5f0-93fb9c373b12 -2018,Córdoba,II.1.1,3.6853236,TJ,CH4,3.9,kg/TJ,14.37276204,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,4a800163-e9b1-3d06-bde8-6d2b507db206 -2018,Córdoba,II.1.1,3.6853236,TJ,N2O,3.9,kg/TJ,14.37276204,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,4a800163-e9b1-3d06-bde8-6d2b507db206 -2018,Neuquén,II.1.1,4.05598704,TJ,CO2,74100.0,kg/TJ,300548.63966399996,Gas Oil combustion consumption by public passenger transport,AR-Q,SESCO,annual,kg,037cc98e-3419-301e-95cd-532a41b20e7d -2018,Neuquén,II.1.1,4.05598704,TJ,CH4,3.9,kg/TJ,15.818349455999998,Gas Oil combustion consumption by public passenger transport,AR-Q,SESCO,annual,kg,48cd94c4-bbdc-3f5d-b25c-8a07ac042ec1 -2018,Neuquén,II.1.1,4.05598704,TJ,N2O,3.9,kg/TJ,15.818349455999998,Gas Oil combustion consumption by public passenger transport,AR-Q,SESCO,annual,kg,48cd94c4-bbdc-3f5d-b25c-8a07ac042ec1 -2018,Rio Negro,II.1.1,10.628562839999999,TJ,CO2,74100.0,kg/TJ,787576.5064439999,Gas Oil combustion consumption by public passenger transport,AR-R,SESCO,annual,kg,43bf65b5-91c4-3871-8e04-44778fa70fb2 -2018,Rio Negro,II.1.1,10.628562839999999,TJ,CH4,3.9,kg/TJ,41.451395076,Gas Oil combustion consumption by public passenger transport,AR-R,SESCO,annual,kg,41925680-3f85-3df5-8918-9aaacd488004 -2018,Rio Negro,II.1.1,10.628562839999999,TJ,N2O,3.9,kg/TJ,41.451395076,Gas Oil combustion consumption by public passenger transport,AR-R,SESCO,annual,kg,41925680-3f85-3df5-8918-9aaacd488004 -2018,Buenos Aires,II.5.1,349.67771999999997,TJ,CO2,74100.0,kg/TJ,25911119.051999997,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,b3d197cf-467b-3bd2-906c-240b0adaeba4 -2018,Buenos Aires,II.5.1,349.67771999999997,TJ,CH4,3.9,kg/TJ,1363.743108,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,f648c7f2-85f4-3268-8197-31c74b9ea821 -2018,Buenos Aires,II.5.1,349.67771999999997,TJ,N2O,3.9,kg/TJ,1363.743108,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,f648c7f2-85f4-3268-8197-31c74b9ea821 -2018,Córdoba,II.5.1,33.73608,TJ,CO2,74100.0,kg/TJ,2499843.528,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,f6c5de1f-3754-32da-af47-e1fe6635ad00 -2018,Córdoba,II.5.1,33.73608,TJ,CH4,3.9,kg/TJ,131.57071200000001,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,53604192-9d28-3c55-a94c-720d8827f843 -2018,Córdoba,II.5.1,33.73608,TJ,N2O,3.9,kg/TJ,131.57071200000001,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,53604192-9d28-3c55-a94c-720d8827f843 -2018,Entre Rios,II.5.1,48.653639999999996,TJ,CO2,74100.0,kg/TJ,3605234.7239999995,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,8fe08178-f0a7-3c79-96c8-0e84d2c05559 -2018,Entre Rios,II.5.1,48.653639999999996,TJ,CH4,3.9,kg/TJ,189.74919599999998,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,f7a1bdd9-6c97-30c8-8fe5-7aa0c6b61282 -2018,Entre Rios,II.5.1,48.653639999999996,TJ,N2O,3.9,kg/TJ,189.74919599999998,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,f7a1bdd9-6c97-30c8-8fe5-7aa0c6b61282 -2018,Santa Fe,II.5.1,33.66384,TJ,CO2,74100.0,kg/TJ,2494490.544,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,b8afea8e-2f74-3b31-996a-e4c71b9ce9f8 -2018,Santa Fe,II.5.1,33.66384,TJ,CH4,3.9,kg/TJ,131.288976,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,d8b3944e-25a8-371c-8f51-f84ecadd16d2 -2018,Santa Fe,II.5.1,33.66384,TJ,N2O,3.9,kg/TJ,131.288976,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,d8b3944e-25a8-371c-8f51-f84ecadd16d2 -2018,Tucuman,II.5.1,13.256039999999999,TJ,CO2,74100.0,kg/TJ,982272.5639999999,Gas Oil combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,cfd5b022-582e-33b1-a037-a35a72b08092 -2018,Tucuman,II.5.1,13.256039999999999,TJ,CH4,3.9,kg/TJ,51.698555999999996,Gas Oil combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,e7810e3c-72bf-3234-95eb-3ad9a7e0463d -2018,Tucuman,II.5.1,13.256039999999999,TJ,N2O,3.9,kg/TJ,51.698555999999996,Gas Oil combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,e7810e3c-72bf-3234-95eb-3ad9a7e0463d -2018,Buenos Aires,II.5.1,15.56772,TJ,CO2,74100.0,kg/TJ,1153568.052,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,3ded3fc0-570f-3d3a-8494-258aac8692ba -2018,Buenos Aires,II.5.1,15.56772,TJ,CH4,3.9,kg/TJ,60.714107999999996,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,12071432-5ce3-30ff-a2c3-943af5fbeb3b -2018,Buenos Aires,II.5.1,15.56772,TJ,N2O,3.9,kg/TJ,60.714107999999996,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,12071432-5ce3-30ff-a2c3-943af5fbeb3b -2018,Entre Rios,II.5.1,35.14476,TJ,CO2,74100.0,kg/TJ,2604226.716,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,91f2837e-90bc-3c45-9a52-0b069d8409f3 -2018,Entre Rios,II.5.1,35.14476,TJ,CH4,3.9,kg/TJ,137.064564,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,5a27c881-7a8d-33ba-b46d-03f55c45d06a -2018,Entre Rios,II.5.1,35.14476,TJ,N2O,3.9,kg/TJ,137.064564,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,5a27c881-7a8d-33ba-b46d-03f55c45d06a -2018,Buenos Aires,II.5.1,0.445445,TJ,CO2,73300.0,kg/TJ,32651.118499999997,Naphtha combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,1a493cd4-3a90-3ef3-b878-21450f7142b2 -2018,Buenos Aires,II.5.1,0.445445,TJ,CH4,0.5,kg/TJ,0.2227225,Naphtha combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,a8e38475-9c86-310a-a51e-b3ea7ae45512 -2018,Buenos Aires,II.5.1,0.445445,TJ,N2O,2.0,kg/TJ,0.89089,Naphtha combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,cf5c8674-3e2f-3fd1-ac43-0416d95655fb -2018,Buenos Aires,II.5.1,0.41118,TJ,CO2,73300.0,kg/TJ,30139.494,Naphtha combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,5ec43d52-50d2-30c6-a251-d7d946a4a4c7 -2018,Buenos Aires,II.5.1,0.41118,TJ,CH4,0.5,kg/TJ,0.20559,Naphtha combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,ba249b91-1fdc-3c4c-9e1f-a4a15c99589f -2018,Buenos Aires,II.5.1,0.41118,TJ,N2O,2.0,kg/TJ,0.82236,Naphtha combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,30eb77a3-d7c3-31f5-87d9-9aeb1be7b092 -2018,Buenos Aires,II.2.1,280.76076,TJ,CO2,74100.0,kg/TJ,20804372.316,Gas Oil combustion consumption by railway transport,AR-B,SESCO,annual,kg,540f8278-0d07-3d72-9b67-00cfc2ee4bf7 -2018,Buenos Aires,II.2.1,280.76076,TJ,CH4,3.9,kg/TJ,1094.966964,Gas Oil combustion consumption by railway transport,AR-B,SESCO,annual,kg,17ee28cb-7aa2-39e6-96d4-5077b41be8ad -2018,Buenos Aires,II.2.1,280.76076,TJ,N2O,3.9,kg/TJ,1094.966964,Gas Oil combustion consumption by railway transport,AR-B,SESCO,annual,kg,17ee28cb-7aa2-39e6-96d4-5077b41be8ad -2018,Buenos Aires,II.1.1,1.1961,TJ,CO2,69300.0,kg/TJ,82889.73,Motor Gasoline combustion consumption by freight transport,AR-B,SESCO,annual,kg,62afde42-3063-301e-85f1-4065eb644840 -2018,Buenos Aires,II.1.1,1.1961,TJ,CH4,33.0,kg/TJ,39.4713,Motor Gasoline combustion consumption by freight transport,AR-B,SESCO,annual,kg,786ebfd4-c51f-35df-9c5b-e8a871a86484 -2018,Buenos Aires,II.1.1,1.1961,TJ,N2O,3.2,kg/TJ,3.82752,Motor Gasoline combustion consumption by freight transport,AR-B,SESCO,annual,kg,19a14e4d-1496-3233-be72-a0d23f54fa09 -2018,Santa Fe,II.1.1,4.4742999999999995,TJ,CO2,69300.0,kg/TJ,310068.99,Motor Gasoline combustion consumption by freight transport,AR-S,SESCO,annual,kg,485316ae-1f1c-3294-9944-51e7cc7c4fc5 -2018,Santa Fe,II.1.1,4.4742999999999995,TJ,CH4,33.0,kg/TJ,147.65189999999998,Motor Gasoline combustion consumption by freight transport,AR-S,SESCO,annual,kg,3ee83461-8521-3213-8a15-1145ad37ffa6 -2018,Santa Fe,II.1.1,4.4742999999999995,TJ,N2O,3.2,kg/TJ,14.31776,Motor Gasoline combustion consumption by freight transport,AR-S,SESCO,annual,kg,2c770bbb-6a0a-328d-b80b-3d2b76e31868 -2018,Buenos Aires,II.1.1,36.12,TJ,CO2,74100.0,kg/TJ,2676492.0,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,5860aa9e-a040-318c-9a7a-4a5392c34755 -2018,Buenos Aires,II.1.1,36.12,TJ,CH4,3.9,kg/TJ,140.868,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,ee5df7f2-3194-330d-9c32-9c95e1df11bd -2018,Buenos Aires,II.1.1,36.12,TJ,N2O,3.9,kg/TJ,140.868,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,ee5df7f2-3194-330d-9c32-9c95e1df11bd -2018,Capital Federal,II.1.1,4.8762,TJ,CO2,74100.0,kg/TJ,361326.42,Gas Oil combustion consumption by freight transport,AR-C,SESCO,annual,kg,f7ef6738-57b7-3385-98f0-25330ef6030d -2018,Capital Federal,II.1.1,4.8762,TJ,CH4,3.9,kg/TJ,19.01718,Gas Oil combustion consumption by freight transport,AR-C,SESCO,annual,kg,004b0e74-8365-38fc-9ab2-cbdd0b96aecc -2018,Capital Federal,II.1.1,4.8762,TJ,N2O,3.9,kg/TJ,19.01718,Gas Oil combustion consumption by freight transport,AR-C,SESCO,annual,kg,004b0e74-8365-38fc-9ab2-cbdd0b96aecc -2018,Córdoba,II.1.1,54.866279999999996,TJ,CO2,74100.0,kg/TJ,4065591.3479999998,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,e03dc4b9-dfdf-374f-b4d7-36a0d5dfa1bc -2018,Córdoba,II.1.1,54.866279999999996,TJ,CH4,3.9,kg/TJ,213.978492,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,3c486512-622d-39cf-8acc-1e0cad9b37e0 -2018,Córdoba,II.1.1,54.866279999999996,TJ,N2O,3.9,kg/TJ,213.978492,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,3c486512-622d-39cf-8acc-1e0cad9b37e0 -2018,Buenos Aires,II.1.1,2.3478,TJ,CO2,74100.0,kg/TJ,173971.97999999998,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,56384b82-3110-356f-a0d0-9636707ef011 -2018,Buenos Aires,II.1.1,2.3478,TJ,CH4,3.9,kg/TJ,9.156419999999999,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,890d68ef-ec72-34f8-afb8-c87f2c3219e2 -2018,Buenos Aires,II.1.1,2.3478,TJ,N2O,3.9,kg/TJ,9.156419999999999,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,890d68ef-ec72-34f8-afb8-c87f2c3219e2 -2018,Córdoba,II.1.1,3.17856,TJ,CO2,74100.0,kg/TJ,235531.296,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,53c8d0f1-9dcd-3cad-8615-380a00095d54 -2018,Córdoba,II.1.1,3.17856,TJ,CH4,3.9,kg/TJ,12.396384,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,3d033ff8-50a8-3efc-8ec2-9c65cd9de9c4 -2018,Córdoba,II.1.1,3.17856,TJ,N2O,3.9,kg/TJ,12.396384,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,3d033ff8-50a8-3efc-8ec2-9c65cd9de9c4 -2018,Buenos Aires,II.1.1,5118.781919999999,TJ,CO2,74100.0,kg/TJ,379301740.27199996,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,4a98c85f-32a3-366c-9f01-56b35117756d -2018,Buenos Aires,II.1.1,5118.781919999999,TJ,CH4,3.9,kg/TJ,19963.249487999998,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,812e1fb5-823b-388a-b127-88d485727a4d -2018,Buenos Aires,II.1.1,5118.781919999999,TJ,N2O,3.9,kg/TJ,19963.249487999998,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,812e1fb5-823b-388a-b127-88d485727a4d -2018,Capital Federal,II.1.1,466.81487999999996,TJ,CO2,74100.0,kg/TJ,34590982.607999995,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,92b69e04-3194-383a-ae27-ec46b87ce1de -2018,Capital Federal,II.1.1,466.81487999999996,TJ,CH4,3.9,kg/TJ,1820.578032,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,6e6bfe83-da6e-3eb3-8527-ec04628032f4 -2018,Capital Federal,II.1.1,466.81487999999996,TJ,N2O,3.9,kg/TJ,1820.578032,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,6e6bfe83-da6e-3eb3-8527-ec04628032f4 -2018,Santa Fe,II.1.1,90.95016,TJ,CO2,74100.0,kg/TJ,6739406.856,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,a325b2f7-c0b9-3e5d-9c10-73120d4cb4eb -2018,Santa Fe,II.1.1,90.95016,TJ,CH4,3.9,kg/TJ,354.705624,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,f99dc35d-6040-385a-b2a4-06c142aa7ee1 -2018,Santa Fe,II.1.1,90.95016,TJ,N2O,3.9,kg/TJ,354.705624,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,f99dc35d-6040-385a-b2a4-06c142aa7ee1 -2018,Buenos Aires,II.1.1,837.7672799999999,TJ,CO2,74100.0,kg/TJ,62078555.44799999,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,ec0b18b1-b987-310d-bcee-5b1f4a7450bd -2018,Buenos Aires,II.1.1,837.7672799999999,TJ,CH4,3.9,kg/TJ,3267.2923919999994,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,e10c2625-34af-3678-9cfb-bafec2ea7848 -2018,Buenos Aires,II.1.1,837.7672799999999,TJ,N2O,3.9,kg/TJ,3267.2923919999994,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,e10c2625-34af-3678-9cfb-bafec2ea7848 -2018,Capital Federal,II.1.1,32.36352,TJ,CO2,74100.0,kg/TJ,2398136.832,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,3394cebc-448a-3043-b3eb-7b945c8aeef1 -2018,Capital Federal,II.1.1,32.36352,TJ,CH4,3.9,kg/TJ,126.21772800000001,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,a1562943-56d9-32d0-a003-75f6611cd59b -2018,Capital Federal,II.1.1,32.36352,TJ,N2O,3.9,kg/TJ,126.21772800000001,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,a1562943-56d9-32d0-a003-75f6611cd59b -2018,Santa Fe,II.1.1,45.15,TJ,CO2,74100.0,kg/TJ,3345615.0,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,f0038ee5-f1df-3bb9-9ccb-336463bb5df5 -2018,Santa Fe,II.1.1,45.15,TJ,CH4,3.9,kg/TJ,176.08499999999998,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,cb0a7858-fb4a-35a3-8b51-dcf8d3889c6e -2018,Santa Fe,II.1.1,45.15,TJ,N2O,3.9,kg/TJ,176.08499999999998,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,cb0a7858-fb4a-35a3-8b51-dcf8d3889c6e -2018,Buenos Aires,II.5.1,1157.7203710800002,TJ,CO2,74100.0,kg/TJ,85787079.49702801,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,21838f6b-74fc-3383-acae-ced5fc197556 -2018,Buenos Aires,II.5.1,1157.7203710800002,TJ,CH4,3.9,kg/TJ,4515.109447212,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,d4b3723d-6b24-3f61-95e1-f202d3e37e34 -2018,Buenos Aires,II.5.1,1157.7203710800002,TJ,N2O,3.9,kg/TJ,4515.109447212,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,d4b3723d-6b24-3f61-95e1-f202d3e37e34 -2018,Capital Federal,II.5.1,393.89152572,TJ,CO2,74100.0,kg/TJ,29187362.055852,Gas Oil combustion consumption by agriculture machines,AR-C,SESCO,annual,kg,feb912ba-24df-3c1c-97e4-e7d7af37b4e4 -2018,Capital Federal,II.5.1,393.89152572,TJ,CH4,3.9,kg/TJ,1536.176950308,Gas Oil combustion consumption by agriculture machines,AR-C,SESCO,annual,kg,52ec3e51-6f9b-30a3-82de-738702762fbc -2018,Capital Federal,II.5.1,393.89152572,TJ,N2O,3.9,kg/TJ,1536.176950308,Gas Oil combustion consumption by agriculture machines,AR-C,SESCO,annual,kg,52ec3e51-6f9b-30a3-82de-738702762fbc -2018,Corrientes,II.5.1,30.58807752,TJ,CO2,74100.0,kg/TJ,2266576.544232,Gas Oil combustion consumption by agriculture machines,AR-W,SESCO,annual,kg,191ef058-9a76-3064-b46c-cf44424c129a -2018,Corrientes,II.5.1,30.58807752,TJ,CH4,3.9,kg/TJ,119.29350232799999,Gas Oil combustion consumption by agriculture machines,AR-W,SESCO,annual,kg,da2e4502-96ea-38c2-85b5-ef9b9abd3f7c -2018,Corrientes,II.5.1,30.58807752,TJ,N2O,3.9,kg/TJ,119.29350232799999,Gas Oil combustion consumption by agriculture machines,AR-W,SESCO,annual,kg,da2e4502-96ea-38c2-85b5-ef9b9abd3f7c -2018,Córdoba,II.5.1,187.90050215999995,TJ,CO2,74100.0,kg/TJ,13923427.210055996,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,5a560ddc-8050-3875-ac69-b14a281ddb5c -2018,Córdoba,II.5.1,187.90050215999995,TJ,CH4,3.9,kg/TJ,732.8119584239997,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,c3ceb639-021a-35ef-b547-8acfad37598f -2018,Córdoba,II.5.1,187.90050215999995,TJ,N2O,3.9,kg/TJ,732.8119584239997,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,c3ceb639-021a-35ef-b547-8acfad37598f -2018,Entre Rios,II.5.1,130.44622415999999,TJ,CO2,74100.0,kg/TJ,9666065.210256,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,5db55058-2ebd-3349-9457-d706ef9bf731 -2018,Entre Rios,II.5.1,130.44622415999999,TJ,CH4,3.9,kg/TJ,508.7402742239999,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,a75e3e4d-c07a-386c-896d-3c4dd07884e3 -2018,Entre Rios,II.5.1,130.44622415999999,TJ,N2O,3.9,kg/TJ,508.7402742239999,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,a75e3e4d-c07a-386c-896d-3c4dd07884e3 -2018,Jujuy,II.5.1,13.474566,TJ,CO2,74100.0,kg/TJ,998465.3406,Gas Oil combustion consumption by agriculture machines,AR-Y,SESCO,annual,kg,ceedad92-bb26-32c2-ac3c-bc1e9a25b773 -2018,Jujuy,II.5.1,13.474566,TJ,CH4,3.9,kg/TJ,52.5508074,Gas Oil combustion consumption by agriculture machines,AR-Y,SESCO,annual,kg,700a879c-8303-3cea-a3e4-a2b8f034ba39 -2018,Jujuy,II.5.1,13.474566,TJ,N2O,3.9,kg/TJ,52.5508074,Gas Oil combustion consumption by agriculture machines,AR-Y,SESCO,annual,kg,700a879c-8303-3cea-a3e4-a2b8f034ba39 -2018,La Pampa,II.5.1,25.8769098,TJ,CO2,74100.0,kg/TJ,1917479.01618,Gas Oil combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,403668ec-48eb-3b2e-87af-b9c06ccaf593 -2018,La Pampa,II.5.1,25.8769098,TJ,CH4,3.9,kg/TJ,100.91994822,Gas Oil combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,9712fde9-6e6f-3e9d-be36-67c0c31f11f4 -2018,La Pampa,II.5.1,25.8769098,TJ,N2O,3.9,kg/TJ,100.91994822,Gas Oil combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,9712fde9-6e6f-3e9d-be36-67c0c31f11f4 -2018,San Luis,II.5.1,2.273248319999999,TJ,CO2,74100.0,kg/TJ,168447.70051199992,Gas Oil combustion consumption by agriculture machines,AR-D,SESCO,annual,kg,a813f7eb-5ef0-3a16-a369-6029df318744 -2018,San Luis,II.5.1,2.273248319999999,TJ,CH4,3.9,kg/TJ,8.865668447999996,Gas Oil combustion consumption by agriculture machines,AR-D,SESCO,annual,kg,624abfab-b6ea-3557-9519-8d64a7ad2027 -2018,San Luis,II.5.1,2.273248319999999,TJ,N2O,3.9,kg/TJ,8.865668447999996,Gas Oil combustion consumption by agriculture machines,AR-D,SESCO,annual,kg,624abfab-b6ea-3557-9519-8d64a7ad2027 -2018,Santa Fe,II.5.1,415.56699324,TJ,CO2,74100.0,kg/TJ,30793514.199084,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,c8f69ba0-a92d-3f50-a1c5-d9ea4d0ebeb7 -2018,Santa Fe,II.5.1,415.56699324,TJ,CH4,3.9,kg/TJ,1620.711273636,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,baa164f8-ef0e-315f-ba02-5205fa4b28a9 -2018,Santa Fe,II.5.1,415.56699324,TJ,N2O,3.9,kg/TJ,1620.711273636,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,baa164f8-ef0e-315f-ba02-5205fa4b28a9 -2018,Santiago del Estero,II.5.1,143.27485620000002,TJ,CO2,74100.0,kg/TJ,10616666.84442,Gas Oil combustion consumption by agriculture machines,AR-G,SESCO,annual,kg,c63d87b8-c877-36b5-92e3-0b2fffad4e1f -2018,Santiago del Estero,II.5.1,143.27485620000002,TJ,CH4,3.9,kg/TJ,558.77193918,Gas Oil combustion consumption by agriculture machines,AR-G,SESCO,annual,kg,867b5c24-d381-3112-aea3-9059f442e79f -2018,Santiago del Estero,II.5.1,143.27485620000002,TJ,N2O,3.9,kg/TJ,558.77193918,Gas Oil combustion consumption by agriculture machines,AR-G,SESCO,annual,kg,867b5c24-d381-3112-aea3-9059f442e79f -2018,Tucuman,II.5.1,108.44311211999998,TJ,CO2,74100.0,kg/TJ,8035634.608091999,Gas Oil combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,50613b61-77d3-31d0-b65e-c9f19cdae299 -2018,Tucuman,II.5.1,108.44311211999998,TJ,CH4,3.9,kg/TJ,422.92813726799994,Gas Oil combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,aff9f76e-3e9c-3191-97e0-f506576c7e13 -2018,Tucuman,II.5.1,108.44311211999998,TJ,N2O,3.9,kg/TJ,422.92813726799994,Gas Oil combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,aff9f76e-3e9c-3191-97e0-f506576c7e13 -2018,Buenos Aires,II.5.1,58.784902679999995,TJ,CO2,74100.0,kg/TJ,4355961.2885879995,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,211b4f11-799c-3604-bed1-5fc63d5175e0 -2018,Buenos Aires,II.5.1,58.784902679999995,TJ,CH4,3.9,kg/TJ,229.26112045199997,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,856dfa61-d23c-368d-9aec-eeef7636a91f -2018,Buenos Aires,II.5.1,58.784902679999995,TJ,N2O,3.9,kg/TJ,229.26112045199997,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,856dfa61-d23c-368d-9aec-eeef7636a91f -2018,Capital Federal,II.5.1,22.683540599999997,TJ,CO2,74100.0,kg/TJ,1680850.3584599998,Gas Oil combustion consumption by agriculture machines,AR-C,SESCO,annual,kg,553ddb73-a6ab-3615-8e9c-5209b938ded9 -2018,Capital Federal,II.5.1,22.683540599999997,TJ,CH4,3.9,kg/TJ,88.46580833999998,Gas Oil combustion consumption by agriculture machines,AR-C,SESCO,annual,kg,9ea91ba8-8cec-3b01-81d8-c879acb8958e -2018,Capital Federal,II.5.1,22.683540599999997,TJ,N2O,3.9,kg/TJ,88.46580833999998,Gas Oil combustion consumption by agriculture machines,AR-C,SESCO,annual,kg,9ea91ba8-8cec-3b01-81d8-c879acb8958e -2018,Corrientes,II.5.1,1.0836,TJ,CO2,74100.0,kg/TJ,80294.76,Gas Oil combustion consumption by agriculture machines,AR-W,SESCO,annual,kg,1549e650-94e8-37ae-8301-f805af147adf -2018,Corrientes,II.5.1,1.0836,TJ,CH4,3.9,kg/TJ,4.226039999999999,Gas Oil combustion consumption by agriculture machines,AR-W,SESCO,annual,kg,a6eebfb5-f411-3f23-a6fb-f694fa8828e4 -2018,Corrientes,II.5.1,1.0836,TJ,N2O,3.9,kg/TJ,4.226039999999999,Gas Oil combustion consumption by agriculture machines,AR-W,SESCO,annual,kg,a6eebfb5-f411-3f23-a6fb-f694fa8828e4 -2018,Córdoba,II.5.1,16.72305432,TJ,CO2,74100.0,kg/TJ,1239178.3251119999,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,0a6a3a0b-d67b-33c6-8070-078dba07d376 -2018,Córdoba,II.5.1,16.72305432,TJ,CH4,3.9,kg/TJ,65.219911848,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,87b4ad8c-21b3-3405-91ac-8e78603b639a -2018,Córdoba,II.5.1,16.72305432,TJ,N2O,3.9,kg/TJ,65.219911848,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,87b4ad8c-21b3-3405-91ac-8e78603b639a -2018,Entre Rios,II.5.1,7.61398764,TJ,CO2,74100.0,kg/TJ,564196.4841240001,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,72bedf72-2871-326a-829b-8070366f8da5 -2018,Entre Rios,II.5.1,7.61398764,TJ,CH4,3.9,kg/TJ,29.694551796000002,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,4f69576c-3308-36db-929a-4e0e1f2a4ac5 -2018,Entre Rios,II.5.1,7.61398764,TJ,N2O,3.9,kg/TJ,29.694551796000002,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,4f69576c-3308-36db-929a-4e0e1f2a4ac5 -2018,Jujuy,II.5.1,28.679857919999996,TJ,CO2,74100.0,kg/TJ,2125177.4718719996,Gas Oil combustion consumption by agriculture machines,AR-Y,SESCO,annual,kg,38ee064d-9cc0-3dff-a273-55b74e0dc218 -2018,Jujuy,II.5.1,28.679857919999996,TJ,CH4,3.9,kg/TJ,111.85144588799999,Gas Oil combustion consumption by agriculture machines,AR-Y,SESCO,annual,kg,cdba4a2b-cbfe-3422-b0aa-660da979b764 -2018,Jujuy,II.5.1,28.679857919999996,TJ,N2O,3.9,kg/TJ,111.85144588799999,Gas Oil combustion consumption by agriculture machines,AR-Y,SESCO,annual,kg,cdba4a2b-cbfe-3422-b0aa-660da979b764 -2018,Santa Fe,II.5.1,38.890873559999996,TJ,CO2,74100.0,kg/TJ,2881813.7307959995,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,a0bea68f-08ee-3d79-938d-32608a9d7cd1 -2018,Santa Fe,II.5.1,38.890873559999996,TJ,CH4,3.9,kg/TJ,151.67440688399998,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,1da08b0f-30d6-36ed-a35c-566a713537ef -2018,Santa Fe,II.5.1,38.890873559999996,TJ,N2O,3.9,kg/TJ,151.67440688399998,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,1da08b0f-30d6-36ed-a35c-566a713537ef -2018,Tucuman,II.5.1,20.44731528,TJ,CO2,74100.0,kg/TJ,1515146.0622480002,Gas Oil combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,7bc76ea2-2f0b-3dec-97d0-1aaa5db4ffd4 -2018,Tucuman,II.5.1,20.44731528,TJ,CH4,3.9,kg/TJ,79.744529592,Gas Oil combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,a78d9b1e-4b61-3655-aac3-b3f7d3ee551a -2018,Tucuman,II.5.1,20.44731528,TJ,N2O,3.9,kg/TJ,79.744529592,Gas Oil combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,a78d9b1e-4b61-3655-aac3-b3f7d3ee551a -2018,Buenos Aires,II.5.1,57.814272284999994,TJ,CO2,73300.0,kg/TJ,4237786.1584904995,Naphtha combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,ddfa8ff0-d72b-3be5-b1fa-bea4cea744b9 -2018,Buenos Aires,II.5.1,57.814272284999994,TJ,CH4,0.5,kg/TJ,28.907136142499997,Naphtha combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,2605918c-a778-3205-bcff-32489786986b -2018,Buenos Aires,II.5.1,57.814272284999994,TJ,N2O,2.0,kg/TJ,115.62854456999999,Naphtha combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,6e157bf0-cb8b-32f9-af1e-e22b022ea987 -2018,Capital Federal,II.5.1,10.575412539999999,TJ,CO2,73300.0,kg/TJ,775177.7391819999,Naphtha combustion consumption by agriculture machines,AR-C,SESCO,annual,kg,14421116-28f7-39d0-a407-38e0e0e832f2 -2018,Capital Federal,II.5.1,10.575412539999999,TJ,CH4,0.5,kg/TJ,5.287706269999999,Naphtha combustion consumption by agriculture machines,AR-C,SESCO,annual,kg,775fffe3-187f-3e07-9a2a-390bab1a8b7d -2018,Capital Federal,II.5.1,10.575412539999999,TJ,N2O,2.0,kg/TJ,21.150825079999997,Naphtha combustion consumption by agriculture machines,AR-C,SESCO,annual,kg,eff567aa-ad92-3c24-b648-31c13efe2f0e -2018,Entre Rios,II.5.1,5.30477024,TJ,CO2,73300.0,kg/TJ,388839.65859199996,Naphtha combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,58aa398c-0179-394e-888a-92ba74ed2fc9 -2018,Entre Rios,II.5.1,5.30477024,TJ,CH4,0.5,kg/TJ,2.65238512,Naphtha combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,d17de975-5a47-3802-a63f-ca19bc411a1c -2018,Entre Rios,II.5.1,5.30477024,TJ,N2O,2.0,kg/TJ,10.60954048,Naphtha combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,8cfefb99-139e-3142-b413-68bbf88bb7c4 -2018,Santa Fe,II.5.1,23.704218615,TJ,CO2,73300.0,kg/TJ,1737519.2244795,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,9e523b58-6c02-358e-b03a-8f4e1da661d0 -2018,Santa Fe,II.5.1,23.704218615,TJ,CH4,0.5,kg/TJ,11.8521093075,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,c508a9c7-6458-3312-a43a-8ad590b02865 -2018,Santa Fe,II.5.1,23.704218615,TJ,N2O,2.0,kg/TJ,47.40843723,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,62621e65-e9de-3b90-a9e9-5fc89be6fd43 -2018,Tucuman,II.5.1,5.638956784999999,TJ,CO2,73300.0,kg/TJ,413335.5323404999,Naphtha combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,7a1d926e-1212-3f84-97c3-ac149d786bb2 -2018,Tucuman,II.5.1,5.638956784999999,TJ,CH4,0.5,kg/TJ,2.8194783924999993,Naphtha combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,ffa3150b-0c33-3f1d-ac21-763bb78ba10a -2018,Tucuman,II.5.1,5.638956784999999,TJ,N2O,2.0,kg/TJ,11.277913569999997,Naphtha combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,40cadb7e-2068-39cc-9649-3f699387b965 -2018,Buenos Aires,II.5.1,5.5255738999999995,TJ,CO2,73300.0,kg/TJ,405024.56687,Naphtha combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,653eab0f-f1aa-354e-8566-f3e87cd5a446 -2018,Buenos Aires,II.5.1,5.5255738999999995,TJ,CH4,0.5,kg/TJ,2.7627869499999997,Naphtha combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,3de7109f-4074-36e0-a72f-4eb86f4b06ad -2018,Buenos Aires,II.5.1,5.5255738999999995,TJ,N2O,2.0,kg/TJ,11.051147799999999,Naphtha combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,6b05620d-8bf0-34ad-a09e-6508ab8e26f8 -2018,Capital Federal,II.5.1,0.8222914699999999,TJ,CO2,73300.0,kg/TJ,60273.96475099999,Naphtha combustion consumption by agriculture machines,AR-C,SESCO,annual,kg,5d19c9e3-b237-39f9-9857-c9e5501d1d92 -2018,Capital Federal,II.5.1,0.8222914699999999,TJ,CH4,0.5,kg/TJ,0.41114573499999996,Naphtha combustion consumption by agriculture machines,AR-C,SESCO,annual,kg,1a1abfab-21fc-31c8-94f0-36d447f695a5 -2018,Capital Federal,II.5.1,0.8222914699999999,TJ,N2O,2.0,kg/TJ,1.6445829399999998,Naphtha combustion consumption by agriculture machines,AR-C,SESCO,annual,kg,872fb4e9-aee0-39d4-a5a6-6b3937b1fdc9 -2018,Entre Rios,II.5.1,0.518326655,TJ,CO2,73300.0,kg/TJ,37993.343811499995,Naphtha combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,42aed47a-1b92-371f-afca-f09cf4a3db9e -2018,Entre Rios,II.5.1,0.518326655,TJ,CH4,0.5,kg/TJ,0.2591633275,Naphtha combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,83c98663-7b87-3436-bdc3-44501699b578 -2018,Entre Rios,II.5.1,0.518326655,TJ,N2O,2.0,kg/TJ,1.03665331,Naphtha combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,22049b34-5c24-3396-aaf8-c19983163116 -2018,Santa Fe,II.5.1,1.36669379,TJ,CO2,73300.0,kg/TJ,100178.654807,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,20899544-2fbd-3270-a456-f0056fd586b2 -2018,Santa Fe,II.5.1,1.36669379,TJ,CH4,0.5,kg/TJ,0.683346895,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,4c75435e-0eda-3d8b-a0c4-5b7c18d3bc46 -2018,Santa Fe,II.5.1,1.36669379,TJ,N2O,2.0,kg/TJ,2.73338758,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,68ea2bb3-24ea-39b3-9a6b-2660953eeff6 -2018,Tucuman,II.5.1,0.36310620499999996,TJ,CO2,73300.0,kg/TJ,26615.684826499997,Naphtha combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,c77b1298-90d4-3eae-b960-98084320e18d -2018,Tucuman,II.5.1,0.36310620499999996,TJ,CH4,0.5,kg/TJ,0.18155310249999998,Naphtha combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,d66d9644-d2d1-3ef5-ad54-71b159abeb2f -2018,Tucuman,II.5.1,0.36310620499999996,TJ,N2O,2.0,kg/TJ,0.7262124099999999,Naphtha combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,3edda57c-0574-3fa0-ab59-3d0b90ebcd42 -2018,Buenos Aires,II.1.1,148.844199,TJ,CO2,74100.0,kg/TJ,11029355.1459,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,f99761d7-07ba-3c35-ae47-824aafef4e66 -2018,Buenos Aires,II.1.1,148.844199,TJ,CH4,3.9,kg/TJ,580.4923761,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,c642fd30-fe9f-3b22-811c-acbb811fa556 -2018,Buenos Aires,II.1.1,148.844199,TJ,N2O,3.9,kg/TJ,580.4923761,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,c642fd30-fe9f-3b22-811c-acbb811fa556 -2018,Chubut,II.1.1,1.98634716,TJ,CO2,74100.0,kg/TJ,147188.324556,Gas Oil combustion consumption by freight transport,AR-U,SESCO,annual,kg,e246b4f6-296d-3728-9706-37ce21e7f6dc -2018,Chubut,II.1.1,1.98634716,TJ,CH4,3.9,kg/TJ,7.746753924,Gas Oil combustion consumption by freight transport,AR-U,SESCO,annual,kg,db62aba9-0a2a-37ca-a2d5-c57bd294c65c -2018,Chubut,II.1.1,1.98634716,TJ,N2O,3.9,kg/TJ,7.746753924,Gas Oil combustion consumption by freight transport,AR-U,SESCO,annual,kg,db62aba9-0a2a-37ca-a2d5-c57bd294c65c -2018,Córdoba,II.1.1,116.85246216,TJ,CO2,74100.0,kg/TJ,8658767.446056,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,e69663ee-8419-35ab-bd2e-0e83b2d1298f -2018,Córdoba,II.1.1,116.85246216,TJ,CH4,3.9,kg/TJ,455.724602424,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,358adae3-51f5-31f1-9ee7-d8bb47e2936f -2018,Córdoba,II.1.1,116.85246216,TJ,N2O,3.9,kg/TJ,455.724602424,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,358adae3-51f5-31f1-9ee7-d8bb47e2936f -2018,Neuquén,II.1.1,9.4388784,TJ,CO2,74100.0,kg/TJ,699420.88944,Gas Oil combustion consumption by freight transport,AR-Q,SESCO,annual,kg,d88497df-e98f-354f-8967-59470c51e476 -2018,Neuquén,II.1.1,9.4388784,TJ,CH4,3.9,kg/TJ,36.81162576,Gas Oil combustion consumption by freight transport,AR-Q,SESCO,annual,kg,4354ea58-d23d-3708-9974-72acdb2ad68c -2018,Neuquén,II.1.1,9.4388784,TJ,N2O,3.9,kg/TJ,36.81162576,Gas Oil combustion consumption by freight transport,AR-Q,SESCO,annual,kg,4354ea58-d23d-3708-9974-72acdb2ad68c -2018,Rio Negro,II.1.1,24.10002252,TJ,CO2,74100.0,kg/TJ,1785811.668732,Gas Oil combustion consumption by freight transport,AR-R,SESCO,annual,kg,c71be5d7-00ff-38ea-85c3-346bb0c61cca -2018,Rio Negro,II.1.1,24.10002252,TJ,CH4,3.9,kg/TJ,93.990087828,Gas Oil combustion consumption by freight transport,AR-R,SESCO,annual,kg,21f6743e-7f58-3252-9b47-c1bb793ce05b -2018,Rio Negro,II.1.1,24.10002252,TJ,N2O,3.9,kg/TJ,93.990087828,Gas Oil combustion consumption by freight transport,AR-R,SESCO,annual,kg,21f6743e-7f58-3252-9b47-c1bb793ce05b -2018,San Luis,II.1.1,1.2998143199999999,TJ,CO2,74100.0,kg/TJ,96316.24111199999,Gas Oil combustion consumption by freight transport,AR-D,SESCO,annual,kg,1d6e5fb8-7520-3c9c-be1a-6c729cedb43f -2018,San Luis,II.1.1,1.2998143199999999,TJ,CH4,3.9,kg/TJ,5.069275847999999,Gas Oil combustion consumption by freight transport,AR-D,SESCO,annual,kg,e6d12f9a-ebab-3494-9046-f5ded632059d -2018,San Luis,II.1.1,1.2998143199999999,TJ,N2O,3.9,kg/TJ,5.069275847999999,Gas Oil combustion consumption by freight transport,AR-D,SESCO,annual,kg,e6d12f9a-ebab-3494-9046-f5ded632059d -2018,Santa Fe,II.1.1,49.61085612,TJ,CO2,74100.0,kg/TJ,3676164.438492,Gas Oil combustion consumption by freight transport,AR-S,SESCO,annual,kg,c89b4aba-d67b-3064-b62a-80ea7c2d86af -2018,Santa Fe,II.1.1,49.61085612,TJ,CH4,3.9,kg/TJ,193.482338868,Gas Oil combustion consumption by freight transport,AR-S,SESCO,annual,kg,67d6416e-5a6f-3170-8a9a-c61ad6a43b94 -2018,Santa Fe,II.1.1,49.61085612,TJ,N2O,3.9,kg/TJ,193.482338868,Gas Oil combustion consumption by freight transport,AR-S,SESCO,annual,kg,67d6416e-5a6f-3170-8a9a-c61ad6a43b94 -2018,Santiago del Estero,II.1.1,54.39480564,TJ,CO2,74100.0,kg/TJ,4030655.097924,Gas Oil combustion consumption by freight transport,AR-G,SESCO,annual,kg,57a374af-a841-3479-be48-db2434524912 -2018,Santiago del Estero,II.1.1,54.39480564,TJ,CH4,3.9,kg/TJ,212.139741996,Gas Oil combustion consumption by freight transport,AR-G,SESCO,annual,kg,436d5aed-ba55-3cd9-b93a-ceb8d1a3d8d3 -2018,Santiago del Estero,II.1.1,54.39480564,TJ,N2O,3.9,kg/TJ,212.139741996,Gas Oil combustion consumption by freight transport,AR-G,SESCO,annual,kg,436d5aed-ba55-3cd9-b93a-ceb8d1a3d8d3 -2018,Buenos Aires,II.1.1,34.96968636,TJ,CO2,74100.0,kg/TJ,2591253.759276,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,35fa4791-262e-33d0-b10a-96fbf52268cf -2018,Buenos Aires,II.1.1,34.96968636,TJ,CH4,3.9,kg/TJ,136.381776804,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,5ff1aaab-ba65-3ce6-8c52-656943c5ac02 -2018,Buenos Aires,II.1.1,34.96968636,TJ,N2O,3.9,kg/TJ,136.381776804,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,5ff1aaab-ba65-3ce6-8c52-656943c5ac02 -2018,Córdoba,II.1.1,21.20547408,TJ,CO2,74100.0,kg/TJ,1571325.629328,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,513698e1-8360-3811-a0e4-9fdeb8fd0b62 -2018,Córdoba,II.1.1,21.20547408,TJ,CH4,3.9,kg/TJ,82.70134891199999,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,67c13ac1-ccc9-3b22-af80-c7ae24e2326d -2018,Córdoba,II.1.1,21.20547408,TJ,N2O,3.9,kg/TJ,82.70134891199999,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,67c13ac1-ccc9-3b22-af80-c7ae24e2326d -2018,Neuquén,II.1.1,7.7583592800000005,TJ,CO2,74100.0,kg/TJ,574894.4226480001,Gas Oil combustion consumption by freight transport,AR-Q,SESCO,annual,kg,26f67298-8289-3544-b54d-faba7df06e6f -2018,Neuquén,II.1.1,7.7583592800000005,TJ,CH4,3.9,kg/TJ,30.257601192000003,Gas Oil combustion consumption by freight transport,AR-Q,SESCO,annual,kg,19e54a69-d2fc-3236-9246-02ece9e4fbdb -2018,Neuquén,II.1.1,7.7583592800000005,TJ,N2O,3.9,kg/TJ,30.257601192000003,Gas Oil combustion consumption by freight transport,AR-Q,SESCO,annual,kg,19e54a69-d2fc-3236-9246-02ece9e4fbdb -2018,Rio Negro,II.1.1,27.325357920000002,TJ,CO2,74100.0,kg/TJ,2024809.021872,Gas Oil combustion consumption by freight transport,AR-R,SESCO,annual,kg,c8ab6c0c-2c8e-33c3-a2ce-52333610ba0d -2018,Rio Negro,II.1.1,27.325357920000002,TJ,CH4,3.9,kg/TJ,106.568895888,Gas Oil combustion consumption by freight transport,AR-R,SESCO,annual,kg,b280980f-d36b-3df5-bfc3-59205d59207f -2018,Rio Negro,II.1.1,27.325357920000002,TJ,N2O,3.9,kg/TJ,106.568895888,Gas Oil combustion consumption by freight transport,AR-R,SESCO,annual,kg,b280980f-d36b-3df5-bfc3-59205d59207f -2018,Santa Fe,II.1.1,11.69901516,TJ,CO2,74100.0,kg/TJ,866897.023356,Gas Oil combustion consumption by freight transport,AR-S,SESCO,annual,kg,7a69d3e3-6ed0-3e76-9275-c2c03260f26e -2018,Santa Fe,II.1.1,11.69901516,TJ,CH4,3.9,kg/TJ,45.626159124,Gas Oil combustion consumption by freight transport,AR-S,SESCO,annual,kg,2282638d-b94d-39ff-b7bf-c2d37f6c5be3 -2018,Santa Fe,II.1.1,11.69901516,TJ,N2O,3.9,kg/TJ,45.626159124,Gas Oil combustion consumption by freight transport,AR-S,SESCO,annual,kg,2282638d-b94d-39ff-b7bf-c2d37f6c5be3 -2018,Santiago del Estero,II.1.1,1.19705292,TJ,CO2,74100.0,kg/TJ,88701.621372,Gas Oil combustion consumption by freight transport,AR-G,SESCO,annual,kg,1df15c60-735c-363b-ae00-d000572fbaa8 -2018,Santiago del Estero,II.1.1,1.19705292,TJ,CH4,3.9,kg/TJ,4.668506388,Gas Oil combustion consumption by freight transport,AR-G,SESCO,annual,kg,d00532fe-ff83-3a43-981c-ac1197b846a2 -2018,Santiago del Estero,II.1.1,1.19705292,TJ,N2O,3.9,kg/TJ,4.668506388,Gas Oil combustion consumption by freight transport,AR-G,SESCO,annual,kg,d00532fe-ff83-3a43-981c-ac1197b846a2 -2018,Buenos Aires,II.5.1,4.3857,TJ,CO2,69300.0,kg/TJ,303929.01,Motor Gasoline combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,f70e1f79-a794-3936-a1e5-75d998af7cc2 -2018,Buenos Aires,II.5.1,4.3857,TJ,CH4,33.0,kg/TJ,144.72809999999998,Motor Gasoline combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,f09de076-4670-3125-af89-da6a29bd57f8 -2018,Buenos Aires,II.5.1,4.3857,TJ,N2O,3.2,kg/TJ,14.03424,Motor Gasoline combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,2f1a7d75-ba0c-3424-9dbb-1c8178fd826a -2018,Santa Fe,II.5.1,9.302999999999999,TJ,CO2,69300.0,kg/TJ,644697.8999999999,Motor Gasoline combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,b3bbe57f-e190-36df-bd20-dabf96df7afc -2018,Santa Fe,II.5.1,9.302999999999999,TJ,CH4,33.0,kg/TJ,306.99899999999997,Motor Gasoline combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,d3addc8b-5575-382b-a0b1-999d304689a5 -2018,Santa Fe,II.5.1,9.302999999999999,TJ,N2O,3.2,kg/TJ,29.769599999999997,Motor Gasoline combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,869cc5ab-3fbf-351a-a6d7-6aabb7f31f34 -2018,Buenos Aires,II.5.1,9604.994279999999,TJ,CO2,74100.0,kg/TJ,711730076.1479999,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,68ecf761-34b8-3144-b3f1-26fa2ced96b8 -2018,Buenos Aires,II.5.1,9604.994279999999,TJ,CH4,3.9,kg/TJ,37459.47769199999,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,7a9b3d03-4e11-3383-9618-134713cda8a6 -2018,Buenos Aires,II.5.1,9604.994279999999,TJ,N2O,3.9,kg/TJ,37459.47769199999,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,7a9b3d03-4e11-3383-9618-134713cda8a6 -2018,Capital Federal,II.5.1,258.00516,TJ,CO2,74100.0,kg/TJ,19118182.356,Gas Oil combustion consumption by agriculture machines,AR-C,SESCO,annual,kg,4977d43c-01fe-3641-b23f-c405f276c3bf -2018,Capital Federal,II.5.1,258.00516,TJ,CH4,3.9,kg/TJ,1006.2201239999999,Gas Oil combustion consumption by agriculture machines,AR-C,SESCO,annual,kg,e0c6e52a-98de-37f0-a13c-199cb3ad6b0d -2018,Capital Federal,II.5.1,258.00516,TJ,N2O,3.9,kg/TJ,1006.2201239999999,Gas Oil combustion consumption by agriculture machines,AR-C,SESCO,annual,kg,e0c6e52a-98de-37f0-a13c-199cb3ad6b0d -2018,Catamarca,II.5.1,142.81848,TJ,CO2,74100.0,kg/TJ,10582849.367999999,Gas Oil combustion consumption by agriculture machines,AR-K,SESCO,annual,kg,8e348958-ab76-3051-bacd-f18a3536dad9 -2018,Catamarca,II.5.1,142.81848,TJ,CH4,3.9,kg/TJ,556.992072,Gas Oil combustion consumption by agriculture machines,AR-K,SESCO,annual,kg,e86025b3-854d-3cb5-8c13-9b84551b77f8 -2018,Catamarca,II.5.1,142.81848,TJ,N2O,3.9,kg/TJ,556.992072,Gas Oil combustion consumption by agriculture machines,AR-K,SESCO,annual,kg,e86025b3-854d-3cb5-8c13-9b84551b77f8 -2018,Chaco,II.5.1,1250.2938,TJ,CO2,74100.0,kg/TJ,92646770.58,Gas Oil combustion consumption by agriculture machines,AR-H,SESCO,annual,kg,f31e029b-02e5-3196-99bd-2a13e55aa451 -2018,Chaco,II.5.1,1250.2938,TJ,CH4,3.9,kg/TJ,4876.14582,Gas Oil combustion consumption by agriculture machines,AR-H,SESCO,annual,kg,8d8095bb-9f95-36bf-bab3-3bf9d5d3421a -2018,Chaco,II.5.1,1250.2938,TJ,N2O,3.9,kg/TJ,4876.14582,Gas Oil combustion consumption by agriculture machines,AR-H,SESCO,annual,kg,8d8095bb-9f95-36bf-bab3-3bf9d5d3421a -2018,Corrientes,II.5.1,490.58184,TJ,CO2,74100.0,kg/TJ,36352114.344,Gas Oil combustion consumption by agriculture machines,AR-W,SESCO,annual,kg,0c1abf35-9c38-33a3-9609-30f89b5a9fa2 -2018,Corrientes,II.5.1,490.58184,TJ,CH4,3.9,kg/TJ,1913.269176,Gas Oil combustion consumption by agriculture machines,AR-W,SESCO,annual,kg,183fd9ed-03e1-3065-9a8e-e3d421ef872f -2018,Corrientes,II.5.1,490.58184,TJ,N2O,3.9,kg/TJ,1913.269176,Gas Oil combustion consumption by agriculture machines,AR-W,SESCO,annual,kg,183fd9ed-03e1-3065-9a8e-e3d421ef872f -2018,Córdoba,II.5.1,8002.78332,TJ,CO2,74100.0,kg/TJ,593006244.012,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,65cd9b6e-dae3-3e1e-9d92-54d171fc94a4 -2018,Córdoba,II.5.1,8002.78332,TJ,CH4,3.9,kg/TJ,31210.854947999997,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,2229ec8d-baf6-3aa7-95c2-9b8027c9300c -2018,Córdoba,II.5.1,8002.78332,TJ,N2O,3.9,kg/TJ,31210.854947999997,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,2229ec8d-baf6-3aa7-95c2-9b8027c9300c -2018,Entre Rios,II.5.1,2130.68268,TJ,CO2,74100.0,kg/TJ,157883586.588,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,632ef025-4917-32c1-8208-a81d72b9d08c -2018,Entre Rios,II.5.1,2130.68268,TJ,CH4,3.9,kg/TJ,8309.662451999999,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,76be1b17-67d3-3143-b66e-4bbbefb51a92 -2018,Entre Rios,II.5.1,2130.68268,TJ,N2O,3.9,kg/TJ,8309.662451999999,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,76be1b17-67d3-3143-b66e-4bbbefb51a92 -2018,Formosa,II.5.1,241.42607999999998,TJ,CO2,74100.0,kg/TJ,17889672.527999997,Gas Oil combustion consumption by agriculture machines,AR-P,SESCO,annual,kg,605c7fda-9405-37a3-b56d-b6487d9d7987 -2018,Formosa,II.5.1,241.42607999999998,TJ,CH4,3.9,kg/TJ,941.5617119999999,Gas Oil combustion consumption by agriculture machines,AR-P,SESCO,annual,kg,a829fc8e-0db5-36bc-a86c-b1a6e881724c -2018,Formosa,II.5.1,241.42607999999998,TJ,N2O,3.9,kg/TJ,941.5617119999999,Gas Oil combustion consumption by agriculture machines,AR-P,SESCO,annual,kg,a829fc8e-0db5-36bc-a86c-b1a6e881724c -2018,Jujuy,II.5.1,1009.26504,TJ,CO2,74100.0,kg/TJ,74786539.464,Gas Oil combustion consumption by agriculture machines,AR-Y,SESCO,annual,kg,7f2e91e5-e99b-3ff1-8cc0-705a672d0a64 -2018,Jujuy,II.5.1,1009.26504,TJ,CH4,3.9,kg/TJ,3936.133656,Gas Oil combustion consumption by agriculture machines,AR-Y,SESCO,annual,kg,022d284f-7ebd-3c5f-85a4-128bf0322208 -2018,Jujuy,II.5.1,1009.26504,TJ,N2O,3.9,kg/TJ,3936.133656,Gas Oil combustion consumption by agriculture machines,AR-Y,SESCO,annual,kg,022d284f-7ebd-3c5f-85a4-128bf0322208 -2018,La Pampa,II.5.1,1788.3373199999999,TJ,CO2,74100.0,kg/TJ,132515795.41199999,Gas Oil combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,7404589b-320a-3f3b-9279-e343a8f928ed -2018,La Pampa,II.5.1,1788.3373199999999,TJ,CH4,3.9,kg/TJ,6974.515547999999,Gas Oil combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,f1868859-ff87-3023-922a-4d04b9c09121 -2018,La Pampa,II.5.1,1788.3373199999999,TJ,N2O,3.9,kg/TJ,6974.515547999999,Gas Oil combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,f1868859-ff87-3023-922a-4d04b9c09121 -2018,La Rioja,II.5.1,131.04336,TJ,CO2,74100.0,kg/TJ,9710312.976,Gas Oil combustion consumption by agriculture machines,AR-F,SESCO,annual,kg,9d382d32-28fa-3dbf-87eb-e7e68b86f96a -2018,La Rioja,II.5.1,131.04336,TJ,CH4,3.9,kg/TJ,511.06910400000004,Gas Oil combustion consumption by agriculture machines,AR-F,SESCO,annual,kg,1dcd01f9-c147-34e8-8ed7-57539165110a -2018,La Rioja,II.5.1,131.04336,TJ,N2O,3.9,kg/TJ,511.06910400000004,Gas Oil combustion consumption by agriculture machines,AR-F,SESCO,annual,kg,1dcd01f9-c147-34e8-8ed7-57539165110a -2018,Mendoza,II.5.1,2396.09244,TJ,CO2,74100.0,kg/TJ,177550449.804,Gas Oil combustion consumption by agriculture machines,AR-M,SESCO,annual,kg,117c5626-474d-3b8d-a234-107ef3340378 -2018,Mendoza,II.5.1,2396.09244,TJ,CH4,3.9,kg/TJ,9344.760516,Gas Oil combustion consumption by agriculture machines,AR-M,SESCO,annual,kg,0d8f10b9-746c-3a15-80cb-68aa56f15ff3 -2018,Mendoza,II.5.1,2396.09244,TJ,N2O,3.9,kg/TJ,9344.760516,Gas Oil combustion consumption by agriculture machines,AR-M,SESCO,annual,kg,0d8f10b9-746c-3a15-80cb-68aa56f15ff3 -2018,Misiones,II.5.1,1272.39924,TJ,CO2,74100.0,kg/TJ,94284783.684,Gas Oil combustion consumption by agriculture machines,AR-N,SESCO,annual,kg,885643ff-1d0b-3e7b-bf67-60ce528eae67 -2018,Misiones,II.5.1,1272.39924,TJ,CH4,3.9,kg/TJ,4962.357035999999,Gas Oil combustion consumption by agriculture machines,AR-N,SESCO,annual,kg,0d7eb8d1-a9bd-3432-8fcc-ce851d984677 -2018,Misiones,II.5.1,1272.39924,TJ,N2O,3.9,kg/TJ,4962.357035999999,Gas Oil combustion consumption by agriculture machines,AR-N,SESCO,annual,kg,0d7eb8d1-a9bd-3432-8fcc-ce851d984677 -2018,Rio Negro,II.5.1,224.59416,TJ,CO2,74100.0,kg/TJ,16642427.256,Gas Oil combustion consumption by agriculture machines,AR-R,SESCO,annual,kg,ff22797d-b261-3ec8-95dd-9b5fb617f644 -2018,Rio Negro,II.5.1,224.59416,TJ,CH4,3.9,kg/TJ,875.9172239999999,Gas Oil combustion consumption by agriculture machines,AR-R,SESCO,annual,kg,ffd004e5-c03b-31ed-84df-8139bc88c264 -2018,Rio Negro,II.5.1,224.59416,TJ,N2O,3.9,kg/TJ,875.9172239999999,Gas Oil combustion consumption by agriculture machines,AR-R,SESCO,annual,kg,ffd004e5-c03b-31ed-84df-8139bc88c264 -2018,Salta,II.5.1,2063.9329199999997,TJ,CO2,74100.0,kg/TJ,152937429.37199998,Gas Oil combustion consumption by agriculture machines,AR-A,SESCO,annual,kg,39366b00-a2e6-359b-a321-e4e68ef654e3 -2018,Salta,II.5.1,2063.9329199999997,TJ,CH4,3.9,kg/TJ,8049.338387999999,Gas Oil combustion consumption by agriculture machines,AR-A,SESCO,annual,kg,3072dc16-d9ee-37f6-85be-7b41a48030ec -2018,Salta,II.5.1,2063.9329199999997,TJ,N2O,3.9,kg/TJ,8049.338387999999,Gas Oil combustion consumption by agriculture machines,AR-A,SESCO,annual,kg,3072dc16-d9ee-37f6-85be-7b41a48030ec -2018,San Juan,II.5.1,685.08804,TJ,CO2,74100.0,kg/TJ,50765023.764,Gas Oil combustion consumption by agriculture machines,AR-J,SESCO,annual,kg,20eedbbd-c233-31cb-a73d-ee5cf95d2532 -2018,San Juan,II.5.1,685.08804,TJ,CH4,3.9,kg/TJ,2671.843356,Gas Oil combustion consumption by agriculture machines,AR-J,SESCO,annual,kg,f91efeaf-b83f-32b6-b94f-ac9503ebb151 -2018,San Juan,II.5.1,685.08804,TJ,N2O,3.9,kg/TJ,2671.843356,Gas Oil combustion consumption by agriculture machines,AR-J,SESCO,annual,kg,f91efeaf-b83f-32b6-b94f-ac9503ebb151 -2018,San Luis,II.5.1,548.33772,TJ,CO2,74100.0,kg/TJ,40631825.052,Gas Oil combustion consumption by agriculture machines,AR-D,SESCO,annual,kg,b78952dc-ee5f-3c4e-9761-4590c2379853 -2018,San Luis,II.5.1,548.33772,TJ,CH4,3.9,kg/TJ,2138.517108,Gas Oil combustion consumption by agriculture machines,AR-D,SESCO,annual,kg,9d085f8c-cd16-3bb8-86fd-a4ab4720cb1a -2018,San Luis,II.5.1,548.33772,TJ,N2O,3.9,kg/TJ,2138.517108,Gas Oil combustion consumption by agriculture machines,AR-D,SESCO,annual,kg,9d085f8c-cd16-3bb8-86fd-a4ab4720cb1a -2018,Santa Fe,II.5.1,7481.46336,TJ,CO2,74100.0,kg/TJ,554376434.976,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,46647f73-9a61-37cd-bbf4-78e7f151f15b -2018,Santa Fe,II.5.1,7481.46336,TJ,CH4,3.9,kg/TJ,29177.707103999997,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,8bdb1e5f-71c6-3f37-bfad-c4f4678f7393 -2018,Santa Fe,II.5.1,7481.46336,TJ,N2O,3.9,kg/TJ,29177.707103999997,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,8bdb1e5f-71c6-3f37-bfad-c4f4678f7393 -2018,Santiago del Estero,II.5.1,1984.0716,TJ,CO2,74100.0,kg/TJ,147019705.56,Gas Oil combustion consumption by agriculture machines,AR-G,SESCO,annual,kg,6b1ad274-07f5-3d62-8d22-f6b5b797a675 -2018,Santiago del Estero,II.5.1,1984.0716,TJ,CH4,3.9,kg/TJ,7737.87924,Gas Oil combustion consumption by agriculture machines,AR-G,SESCO,annual,kg,1108988d-85b3-3ff0-8985-87a3da3cffab -2018,Santiago del Estero,II.5.1,1984.0716,TJ,N2O,3.9,kg/TJ,7737.87924,Gas Oil combustion consumption by agriculture machines,AR-G,SESCO,annual,kg,1108988d-85b3-3ff0-8985-87a3da3cffab -2018,Tucuman,II.5.1,1305.6657599999999,TJ,CO2,74100.0,kg/TJ,96749832.81599998,Gas Oil combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,d75b3e0e-3c6f-3295-a98a-fec55dce3881 -2018,Tucuman,II.5.1,1305.6657599999999,TJ,CH4,3.9,kg/TJ,5092.096463999999,Gas Oil combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,107491af-3829-3278-9fac-277c031d89fc -2018,Tucuman,II.5.1,1305.6657599999999,TJ,N2O,3.9,kg/TJ,5092.096463999999,Gas Oil combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,107491af-3829-3278-9fac-277c031d89fc -2018,Buenos Aires,II.5.1,948.3306,TJ,CO2,74100.0,kg/TJ,70271297.46,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,3e24d43e-8c01-30db-8d7b-8d32eb964010 -2018,Buenos Aires,II.5.1,948.3306,TJ,CH4,3.9,kg/TJ,3698.48934,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,5ba1ee15-66a9-3c8c-a881-11002e0c2427 -2018,Buenos Aires,II.5.1,948.3306,TJ,N2O,3.9,kg/TJ,3698.48934,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,5ba1ee15-66a9-3c8c-a881-11002e0c2427 -2018,Capital Federal,II.5.1,2.02272,TJ,CO2,74100.0,kg/TJ,149883.552,Gas Oil combustion consumption by agriculture machines,AR-C,SESCO,annual,kg,9bcfd9a1-c4c7-3df2-90c0-b045ab96e49a -2018,Capital Federal,II.5.1,2.02272,TJ,CH4,3.9,kg/TJ,7.8886080000000005,Gas Oil combustion consumption by agriculture machines,AR-C,SESCO,annual,kg,7f74641c-05d4-30e8-915c-6e6e8376c564 -2018,Capital Federal,II.5.1,2.02272,TJ,N2O,3.9,kg/TJ,7.8886080000000005,Gas Oil combustion consumption by agriculture machines,AR-C,SESCO,annual,kg,7f74641c-05d4-30e8-915c-6e6e8376c564 -2018,Catamarca,II.5.1,18.13224,TJ,CO2,74100.0,kg/TJ,1343598.984,Gas Oil combustion consumption by agriculture machines,AR-K,SESCO,annual,kg,8d61c631-6157-3cda-95d3-9873383068a2 -2018,Catamarca,II.5.1,18.13224,TJ,CH4,3.9,kg/TJ,70.71573599999999,Gas Oil combustion consumption by agriculture machines,AR-K,SESCO,annual,kg,6f48ed86-eb19-31e1-9606-bb576798d628 -2018,Catamarca,II.5.1,18.13224,TJ,N2O,3.9,kg/TJ,70.71573599999999,Gas Oil combustion consumption by agriculture machines,AR-K,SESCO,annual,kg,6f48ed86-eb19-31e1-9606-bb576798d628 -2018,Chaco,II.5.1,86.29068,TJ,CO2,74100.0,kg/TJ,6394139.387999999,Gas Oil combustion consumption by agriculture machines,AR-H,SESCO,annual,kg,5c5ff19d-789f-3ddf-9dcb-3ee60a895a49 -2018,Chaco,II.5.1,86.29068,TJ,CH4,3.9,kg/TJ,336.53365199999996,Gas Oil combustion consumption by agriculture machines,AR-H,SESCO,annual,kg,06c4003f-0705-3cb8-beb3-2403b083b0c5 -2018,Chaco,II.5.1,86.29068,TJ,N2O,3.9,kg/TJ,336.53365199999996,Gas Oil combustion consumption by agriculture machines,AR-H,SESCO,annual,kg,06c4003f-0705-3cb8-beb3-2403b083b0c5 -2018,Corrientes,II.5.1,28.7154,TJ,CO2,74100.0,kg/TJ,2127811.14,Gas Oil combustion consumption by agriculture machines,AR-W,SESCO,annual,kg,62f800a4-6e40-3dee-b161-e0b412885d87 -2018,Corrientes,II.5.1,28.7154,TJ,CH4,3.9,kg/TJ,111.99006,Gas Oil combustion consumption by agriculture machines,AR-W,SESCO,annual,kg,f38f000a-ce3a-3cb3-b116-2889020dfd72 -2018,Corrientes,II.5.1,28.7154,TJ,N2O,3.9,kg/TJ,111.99006,Gas Oil combustion consumption by agriculture machines,AR-W,SESCO,annual,kg,f38f000a-ce3a-3cb3-b116-2889020dfd72 -2018,Córdoba,II.5.1,556.82592,TJ,CO2,74100.0,kg/TJ,41260800.672,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,2b8a16c4-0091-3442-84b6-15b715264194 -2018,Córdoba,II.5.1,556.82592,TJ,CH4,3.9,kg/TJ,2171.621088,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,212e1bf6-a0b0-371b-bc15-9136b12c826b -2018,Córdoba,II.5.1,556.82592,TJ,N2O,3.9,kg/TJ,2171.621088,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,212e1bf6-a0b0-371b-bc15-9136b12c826b -2018,Entre Rios,II.5.1,65.99123999999999,TJ,CO2,74100.0,kg/TJ,4889950.884,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,6177f9ca-95e8-3eb7-a17f-e8252094fa71 -2018,Entre Rios,II.5.1,65.99123999999999,TJ,CH4,3.9,kg/TJ,257.36583599999994,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,414deab5-b7bf-380b-a5b4-d985defc0c1b -2018,Entre Rios,II.5.1,65.99123999999999,TJ,N2O,3.9,kg/TJ,257.36583599999994,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,414deab5-b7bf-380b-a5b4-d985defc0c1b -2018,Formosa,II.5.1,28.67928,TJ,CO2,74100.0,kg/TJ,2125134.648,Gas Oil combustion consumption by agriculture machines,AR-P,SESCO,annual,kg,ffc23180-0801-36e0-8349-3ff2cd78b241 -2018,Formosa,II.5.1,28.67928,TJ,CH4,3.9,kg/TJ,111.84919199999999,Gas Oil combustion consumption by agriculture machines,AR-P,SESCO,annual,kg,0c6c5f6e-289c-3003-840b-182dae81256b -2018,Formosa,II.5.1,28.67928,TJ,N2O,3.9,kg/TJ,111.84919199999999,Gas Oil combustion consumption by agriculture machines,AR-P,SESCO,annual,kg,0c6c5f6e-289c-3003-840b-182dae81256b -2018,Jujuy,II.5.1,56.60004,TJ,CO2,74100.0,kg/TJ,4194062.964,Gas Oil combustion consumption by agriculture machines,AR-Y,SESCO,annual,kg,b6a2785b-21a3-3807-b4aa-6087d703df20 -2018,Jujuy,II.5.1,56.60004,TJ,CH4,3.9,kg/TJ,220.74015599999998,Gas Oil combustion consumption by agriculture machines,AR-Y,SESCO,annual,kg,514ab2b7-c11b-3842-9662-b05005ee807f -2018,Jujuy,II.5.1,56.60004,TJ,N2O,3.9,kg/TJ,220.74015599999998,Gas Oil combustion consumption by agriculture machines,AR-Y,SESCO,annual,kg,514ab2b7-c11b-3842-9662-b05005ee807f -2018,La Pampa,II.5.1,218.77884,TJ,CO2,74100.0,kg/TJ,16211512.044,Gas Oil combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,14d6a004-e244-3652-b1fe-1de85372df33 -2018,La Pampa,II.5.1,218.77884,TJ,CH4,3.9,kg/TJ,853.237476,Gas Oil combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,f752feea-1280-3395-bcf1-c8ff0670637d -2018,La Pampa,II.5.1,218.77884,TJ,N2O,3.9,kg/TJ,853.237476,Gas Oil combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,f752feea-1280-3395-bcf1-c8ff0670637d -2018,Mendoza,II.5.1,218.38152,TJ,CO2,74100.0,kg/TJ,16182070.632,Gas Oil combustion consumption by agriculture machines,AR-M,SESCO,annual,kg,ee9246fb-3cc6-3953-a9b7-7adc3e483328 -2018,Mendoza,II.5.1,218.38152,TJ,CH4,3.9,kg/TJ,851.6879279999999,Gas Oil combustion consumption by agriculture machines,AR-M,SESCO,annual,kg,9305b949-17f6-3d0f-af83-c9dcb38306be -2018,Mendoza,II.5.1,218.38152,TJ,N2O,3.9,kg/TJ,851.6879279999999,Gas Oil combustion consumption by agriculture machines,AR-M,SESCO,annual,kg,9305b949-17f6-3d0f-af83-c9dcb38306be -2018,Misiones,II.5.1,130.3932,TJ,CO2,74100.0,kg/TJ,9662136.120000001,Gas Oil combustion consumption by agriculture machines,AR-N,SESCO,annual,kg,c668a759-0aad-3c8f-9188-172b9643df56 -2018,Misiones,II.5.1,130.3932,TJ,CH4,3.9,kg/TJ,508.53348,Gas Oil combustion consumption by agriculture machines,AR-N,SESCO,annual,kg,a1ae1bf8-ee0c-3124-8d84-f8ee4339f6e2 -2018,Misiones,II.5.1,130.3932,TJ,N2O,3.9,kg/TJ,508.53348,Gas Oil combustion consumption by agriculture machines,AR-N,SESCO,annual,kg,a1ae1bf8-ee0c-3124-8d84-f8ee4339f6e2 -2018,Rio Negro,II.5.1,52.626839999999994,TJ,CO2,74100.0,kg/TJ,3899648.8439999996,Gas Oil combustion consumption by agriculture machines,AR-R,SESCO,annual,kg,7405d1a2-3617-31db-9bba-cafd089895ef -2018,Rio Negro,II.5.1,52.626839999999994,TJ,CH4,3.9,kg/TJ,205.24467599999997,Gas Oil combustion consumption by agriculture machines,AR-R,SESCO,annual,kg,707df375-cf56-3d3a-b4b9-be7863cba68f -2018,Rio Negro,II.5.1,52.626839999999994,TJ,N2O,3.9,kg/TJ,205.24467599999997,Gas Oil combustion consumption by agriculture machines,AR-R,SESCO,annual,kg,707df375-cf56-3d3a-b4b9-be7863cba68f -2018,Salta,II.5.1,113.0556,TJ,CO2,74100.0,kg/TJ,8377419.96,Gas Oil combustion consumption by agriculture machines,AR-A,SESCO,annual,kg,63e5f057-15ba-3445-80d0-3abc3ffb0f4d -2018,Salta,II.5.1,113.0556,TJ,CH4,3.9,kg/TJ,440.91684,Gas Oil combustion consumption by agriculture machines,AR-A,SESCO,annual,kg,38f1541a-0876-3457-bb05-46d205b22b4a -2018,Salta,II.5.1,113.0556,TJ,N2O,3.9,kg/TJ,440.91684,Gas Oil combustion consumption by agriculture machines,AR-A,SESCO,annual,kg,38f1541a-0876-3457-bb05-46d205b22b4a -2018,San Juan,II.5.1,120.67692,TJ,CO2,74100.0,kg/TJ,8942159.772,Gas Oil combustion consumption by agriculture machines,AR-J,SESCO,annual,kg,6085d150-0198-3629-a566-47ec58d0e42c -2018,San Juan,II.5.1,120.67692,TJ,CH4,3.9,kg/TJ,470.63998799999996,Gas Oil combustion consumption by agriculture machines,AR-J,SESCO,annual,kg,3a15baae-85bb-3c04-9a33-87c4b234357f -2018,San Juan,II.5.1,120.67692,TJ,N2O,3.9,kg/TJ,470.63998799999996,Gas Oil combustion consumption by agriculture machines,AR-J,SESCO,annual,kg,3a15baae-85bb-3c04-9a33-87c4b234357f -2018,San Luis,II.5.1,43.344,TJ,CO2,74100.0,kg/TJ,3211790.4,Gas Oil combustion consumption by agriculture machines,AR-D,SESCO,annual,kg,e8e8add1-1510-3e68-ba03-d83cbd156cbd -2018,San Luis,II.5.1,43.344,TJ,CH4,3.9,kg/TJ,169.0416,Gas Oil combustion consumption by agriculture machines,AR-D,SESCO,annual,kg,710ebfd4-f0a9-36f1-8959-e95f5295dfe1 -2018,San Luis,II.5.1,43.344,TJ,N2O,3.9,kg/TJ,169.0416,Gas Oil combustion consumption by agriculture machines,AR-D,SESCO,annual,kg,710ebfd4-f0a9-36f1-8959-e95f5295dfe1 -2018,Santa Fe,II.5.1,382.72751999999997,TJ,CO2,74100.0,kg/TJ,28360109.231999997,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,3a06177f-b03f-3608-90d1-563aa11e48c1 -2018,Santa Fe,II.5.1,382.72751999999997,TJ,CH4,3.9,kg/TJ,1492.6373279999998,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,50db0890-bbd1-378d-953c-157bb1bcb179 -2018,Santa Fe,II.5.1,382.72751999999997,TJ,N2O,3.9,kg/TJ,1492.6373279999998,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,50db0890-bbd1-378d-953c-157bb1bcb179 -2018,Santiago del Estero,II.5.1,199.49076,TJ,CO2,74100.0,kg/TJ,14782265.316,Gas Oil combustion consumption by agriculture machines,AR-G,SESCO,annual,kg,af121280-e195-35f5-8044-b95309748226 -2018,Santiago del Estero,II.5.1,199.49076,TJ,CH4,3.9,kg/TJ,778.013964,Gas Oil combustion consumption by agriculture machines,AR-G,SESCO,annual,kg,76ffedcf-50e7-3b3e-ba28-56e158c4f912 -2018,Santiago del Estero,II.5.1,199.49076,TJ,N2O,3.9,kg/TJ,778.013964,Gas Oil combustion consumption by agriculture machines,AR-G,SESCO,annual,kg,76ffedcf-50e7-3b3e-ba28-56e158c4f912 -2018,Tucuman,II.5.1,123.96383999999999,TJ,CO2,74100.0,kg/TJ,9185720.544,Gas Oil combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,27b693e4-af88-3b49-b50d-299ae78e328b -2018,Tucuman,II.5.1,123.96383999999999,TJ,CH4,3.9,kg/TJ,483.45897599999995,Gas Oil combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,89ff2f4b-c91c-357c-9ee1-d013df1bbf47 -2018,Tucuman,II.5.1,123.96383999999999,TJ,N2O,3.9,kg/TJ,483.45897599999995,Gas Oil combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,89ff2f4b-c91c-357c-9ee1-d013df1bbf47 -2018,Buenos Aires,II.5.1,6.384958999999999,TJ,CO2,71500.0,kg/TJ,456524.56849999994,Jet Kerosene combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,f06eb7a1-2abe-3a45-9dcf-90a74670fe00 -2018,Buenos Aires,II.5.1,6.384958999999999,TJ,CH4,0.5,kg/TJ,3.1924794999999997,Jet Kerosene combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,a7e81490-6db2-3051-ad26-daeebe8208be -2018,Buenos Aires,II.5.1,6.384958999999999,TJ,N2O,2.0,kg/TJ,12.769917999999999,Jet Kerosene combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,207ae956-3f73-3d0e-a77b-4cdb032206d4 -2018,Córdoba,II.5.1,0.5661539999999999,TJ,CO2,71500.0,kg/TJ,40480.011,Jet Kerosene combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,93bf2ce2-fb2f-3c4c-b111-a60198180974 -2018,Córdoba,II.5.1,0.5661539999999999,TJ,CH4,0.5,kg/TJ,0.28307699999999997,Jet Kerosene combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,e52974d2-8ca1-3d43-ba2d-742af09cd949 -2018,Córdoba,II.5.1,0.5661539999999999,TJ,N2O,2.0,kg/TJ,1.1323079999999999,Jet Kerosene combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,065cf5c9-4ac3-39b9-ab0b-be084b0cd299 -2018,La Pampa,II.5.1,0.157265,TJ,CO2,71500.0,kg/TJ,11244.447499999998,Jet Kerosene combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,a8e85e65-34ad-3697-9ab5-7e04d406fe70 -2018,La Pampa,II.5.1,0.157265,TJ,CH4,0.5,kg/TJ,0.0786325,Jet Kerosene combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,367ff851-174e-34b6-80f1-1bf235bc288e -2018,La Pampa,II.5.1,0.157265,TJ,N2O,2.0,kg/TJ,0.31453,Jet Kerosene combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,23a3138c-0ad2-3901-9a62-3cd2ca98c8b6 -2018,Santa Fe,II.5.1,9.278635,TJ,CO2,71500.0,kg/TJ,663422.4025,Jet Kerosene combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,1b2a08e8-5f8f-3db5-b010-3e832e19898a -2018,Santa Fe,II.5.1,9.278635,TJ,CH4,0.5,kg/TJ,4.6393175,Jet Kerosene combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,95a83b09-044d-3fe5-b439-595e2e92cabf -2018,Santa Fe,II.5.1,9.278635,TJ,N2O,2.0,kg/TJ,18.55727,Jet Kerosene combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,51025918-3ec4-37a1-85bc-1f71903cda92 -2018,Buenos Aires,II.5.1,309.37868499999996,TJ,CO2,73300.0,kg/TJ,22677457.610499997,Naphtha combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,168a5145-a57a-3f08-a231-8731e76a2816 -2018,Buenos Aires,II.5.1,309.37868499999996,TJ,CH4,0.5,kg/TJ,154.68934249999998,Naphtha combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,7f7b3a14-dff7-319e-b3b1-e2585f5327f5 -2018,Buenos Aires,II.5.1,309.37868499999996,TJ,N2O,2.0,kg/TJ,618.7573699999999,Naphtha combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,712616c2-550d-3726-bc62-7b2426282694 -2018,Mendoza,II.5.1,22.409309999999998,TJ,CO2,73300.0,kg/TJ,1642602.423,Naphtha combustion consumption by agriculture machines,AR-M,SESCO,annual,kg,1366b6c6-38f0-3201-8c41-72e49c5475dd -2018,Mendoza,II.5.1,22.409309999999998,TJ,CH4,0.5,kg/TJ,11.204654999999999,Naphtha combustion consumption by agriculture machines,AR-M,SESCO,annual,kg,0a4f19ee-004c-364a-93ed-7c6309609e61 -2018,Mendoza,II.5.1,22.409309999999998,TJ,N2O,2.0,kg/TJ,44.818619999999996,Naphtha combustion consumption by agriculture machines,AR-M,SESCO,annual,kg,ad6d8b52-718a-3306-98a7-fe9961f42ced -2018,Misiones,II.5.1,1.2335399999999999,TJ,CO2,73300.0,kg/TJ,90418.48199999999,Naphtha combustion consumption by agriculture machines,AR-N,SESCO,annual,kg,a32ae3c2-8a6c-324d-99e6-6e46a8d2f25e -2018,Misiones,II.5.1,1.2335399999999999,TJ,CH4,0.5,kg/TJ,0.6167699999999999,Naphtha combustion consumption by agriculture machines,AR-N,SESCO,annual,kg,5d599ce7-e887-398a-b853-406f0991a048 -2018,Misiones,II.5.1,1.2335399999999999,TJ,N2O,2.0,kg/TJ,2.4670799999999997,Naphtha combustion consumption by agriculture machines,AR-N,SESCO,annual,kg,6db6b0fc-4b03-346f-9e2d-413880a2d567 -2018,Salta,II.5.1,0.6853,TJ,CO2,73300.0,kg/TJ,50232.49,Naphtha combustion consumption by agriculture machines,AR-A,SESCO,annual,kg,7197d63c-8fdf-3839-bf3f-30068b2fe346 -2018,Salta,II.5.1,0.6853,TJ,CH4,0.5,kg/TJ,0.34265,Naphtha combustion consumption by agriculture machines,AR-A,SESCO,annual,kg,22be0c14-04c6-3480-a50e-ecb0ea4d2286 -2018,Salta,II.5.1,0.6853,TJ,N2O,2.0,kg/TJ,1.3706,Naphtha combustion consumption by agriculture machines,AR-A,SESCO,annual,kg,d6ba3893-fa36-3e4a-ad9d-101345dfba8a -2018,Santa Fe,II.5.1,137.985155,TJ,CO2,73300.0,kg/TJ,10114311.861499999,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,b2d1d2c9-3b80-33ff-bd82-c8f4ff744d31 -2018,Santa Fe,II.5.1,137.985155,TJ,CH4,0.5,kg/TJ,68.9925775,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,cc2ee781-c820-3b2b-ae57-c3e591e53402 -2018,Santa Fe,II.5.1,137.985155,TJ,N2O,2.0,kg/TJ,275.97031,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,dab54080-c443-300e-9198-22343e01dfde -2018,Buenos Aires,II.5.1,1.404865,TJ,CO2,73300.0,kg/TJ,102976.6045,Naphtha combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,61a107f0-3411-31af-a84a-6c71e3753fa1 -2018,Buenos Aires,II.5.1,1.404865,TJ,CH4,0.5,kg/TJ,0.7024325,Naphtha combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,6f7107f9-7e8b-3df4-a0e4-93bd71669b84 -2018,Buenos Aires,II.5.1,1.404865,TJ,N2O,2.0,kg/TJ,2.80973,Naphtha combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,a2f9863e-a211-3c5b-b042-9f76805829bd -2018,Santa Fe,II.5.1,0.5825049999999999,TJ,CO2,73300.0,kg/TJ,42697.6165,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,f5882ed0-b8d9-3125-bde5-3a75ffd9ab18 -2018,Santa Fe,II.5.1,0.5825049999999999,TJ,CH4,0.5,kg/TJ,0.29125249999999997,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,6194f0c4-b186-3d48-aa68-165c5cb1704a -2018,Santa Fe,II.5.1,0.5825049999999999,TJ,N2O,2.0,kg/TJ,1.1650099999999999,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,b73a9ecf-382a-3d05-ba6d-f92ec74afb3f -2018,Buenos Aires,II.1.1,10388.4732,TJ,CO2,74100.0,kg/TJ,769785864.12,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,c94eff81-af1d-347b-a186-3c3548deb972 -2018,Buenos Aires,II.1.1,10388.4732,TJ,CH4,3.9,kg/TJ,40515.04548,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,054af9c0-7d52-38d7-a1c7-bed99f267c6e -2018,Buenos Aires,II.1.1,10388.4732,TJ,N2O,3.9,kg/TJ,40515.04548,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,054af9c0-7d52-38d7-a1c7-bed99f267c6e -2018,Capital Federal,II.1.1,3926.6052,TJ,CO2,74100.0,kg/TJ,290961445.32,Gas Oil combustion consumption by freight transport,AR-C,SESCO,annual,kg,3047ae92-dbf4-3501-8f7e-394a61602794 -2018,Capital Federal,II.1.1,3926.6052,TJ,CH4,3.9,kg/TJ,15313.76028,Gas Oil combustion consumption by freight transport,AR-C,SESCO,annual,kg,32c366c0-7ff5-3b5c-bf86-a32ccbde79d8 -2018,Capital Federal,II.1.1,3926.6052,TJ,N2O,3.9,kg/TJ,15313.76028,Gas Oil combustion consumption by freight transport,AR-C,SESCO,annual,kg,32c366c0-7ff5-3b5c-bf86-a32ccbde79d8 -2018,Catamarca,II.1.1,19.07136,TJ,CO2,74100.0,kg/TJ,1413187.7759999998,Gas Oil combustion consumption by freight transport,AR-K,SESCO,annual,kg,da858d5a-5fad-37d4-9ba9-9a7987325af9 -2018,Catamarca,II.1.1,19.07136,TJ,CH4,3.9,kg/TJ,74.37830399999999,Gas Oil combustion consumption by freight transport,AR-K,SESCO,annual,kg,bab64f9a-ace9-35a4-b9b2-527ecef3acc8 -2018,Catamarca,II.1.1,19.07136,TJ,N2O,3.9,kg/TJ,74.37830399999999,Gas Oil combustion consumption by freight transport,AR-K,SESCO,annual,kg,bab64f9a-ace9-35a4-b9b2-527ecef3acc8 -2018,Chaco,II.1.1,282.02495999999996,TJ,CO2,74100.0,kg/TJ,20898049.536,Gas Oil combustion consumption by freight transport,AR-H,SESCO,annual,kg,29d5d460-e908-3ff2-9cab-0920b424f002 -2018,Chaco,II.1.1,282.02495999999996,TJ,CH4,3.9,kg/TJ,1099.8973439999997,Gas Oil combustion consumption by freight transport,AR-H,SESCO,annual,kg,0afafabb-aacc-38e9-9e7e-1b03c0214b00 -2018,Chaco,II.1.1,282.02495999999996,TJ,N2O,3.9,kg/TJ,1099.8973439999997,Gas Oil combustion consumption by freight transport,AR-H,SESCO,annual,kg,0afafabb-aacc-38e9-9e7e-1b03c0214b00 -2018,Chubut,II.1.1,230.80679999999998,TJ,CO2,74100.0,kg/TJ,17102783.88,Gas Oil combustion consumption by freight transport,AR-U,SESCO,annual,kg,83bc7810-da88-3990-8b57-7a76527eaf4e -2018,Chubut,II.1.1,230.80679999999998,TJ,CH4,3.9,kg/TJ,900.1465199999999,Gas Oil combustion consumption by freight transport,AR-U,SESCO,annual,kg,4204d6a2-438d-32d8-8fdd-6930791db4a7 -2018,Chubut,II.1.1,230.80679999999998,TJ,N2O,3.9,kg/TJ,900.1465199999999,Gas Oil combustion consumption by freight transport,AR-U,SESCO,annual,kg,4204d6a2-438d-32d8-8fdd-6930791db4a7 -2018,Corrientes,II.1.1,401.00424,TJ,CO2,74100.0,kg/TJ,29714414.184,Gas Oil combustion consumption by freight transport,AR-W,SESCO,annual,kg,6b63cf73-9b44-362e-98bf-5032b2cb5ff7 -2018,Corrientes,II.1.1,401.00424,TJ,CH4,3.9,kg/TJ,1563.916536,Gas Oil combustion consumption by freight transport,AR-W,SESCO,annual,kg,0409d1f5-e0dc-3799-a03c-276500430e1c -2018,Corrientes,II.1.1,401.00424,TJ,N2O,3.9,kg/TJ,1563.916536,Gas Oil combustion consumption by freight transport,AR-W,SESCO,annual,kg,0409d1f5-e0dc-3799-a03c-276500430e1c -2018,Córdoba,II.1.1,2907.51552,TJ,CO2,74100.0,kg/TJ,215446900.032,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,b3ecb592-8c70-349b-bace-c56b97df9e2c -2018,Córdoba,II.1.1,2907.51552,TJ,CH4,3.9,kg/TJ,11339.310528,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,03a4c51e-e973-3195-bfd3-aef222c05c41 -2018,Córdoba,II.1.1,2907.51552,TJ,N2O,3.9,kg/TJ,11339.310528,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,03a4c51e-e973-3195-bfd3-aef222c05c41 -2018,Entre Rios,II.1.1,657.5645999999999,TJ,CO2,74100.0,kg/TJ,48725536.85999999,Gas Oil combustion consumption by freight transport,AR-E,SESCO,annual,kg,67da911d-5b5f-3703-be31-6e1514607c5c -2018,Entre Rios,II.1.1,657.5645999999999,TJ,CH4,3.9,kg/TJ,2564.5019399999996,Gas Oil combustion consumption by freight transport,AR-E,SESCO,annual,kg,4ac1ee43-80c4-3e47-8ee1-1f14d1c05d7e -2018,Entre Rios,II.1.1,657.5645999999999,TJ,N2O,3.9,kg/TJ,2564.5019399999996,Gas Oil combustion consumption by freight transport,AR-E,SESCO,annual,kg,4ac1ee43-80c4-3e47-8ee1-1f14d1c05d7e -2018,Formosa,II.1.1,35.68656,TJ,CO2,74100.0,kg/TJ,2644374.096,Gas Oil combustion consumption by freight transport,AR-P,SESCO,annual,kg,d49c1863-7c9a-3ad7-a25b-3eca450958ef -2018,Formosa,II.1.1,35.68656,TJ,CH4,3.9,kg/TJ,139.177584,Gas Oil combustion consumption by freight transport,AR-P,SESCO,annual,kg,1a50390a-767a-3e32-b642-3c6d2e2c5baf -2018,Formosa,II.1.1,35.68656,TJ,N2O,3.9,kg/TJ,139.177584,Gas Oil combustion consumption by freight transport,AR-P,SESCO,annual,kg,1a50390a-767a-3e32-b642-3c6d2e2c5baf -2018,Jujuy,II.1.1,185.44008,TJ,CO2,74100.0,kg/TJ,13741109.928,Gas Oil combustion consumption by freight transport,AR-Y,SESCO,annual,kg,2a7ec581-1d67-37d3-a25a-573d4e7b6bd4 -2018,Jujuy,II.1.1,185.44008,TJ,CH4,3.9,kg/TJ,723.216312,Gas Oil combustion consumption by freight transport,AR-Y,SESCO,annual,kg,29204e9f-6e46-354a-a570-1e544f036238 -2018,Jujuy,II.1.1,185.44008,TJ,N2O,3.9,kg/TJ,723.216312,Gas Oil combustion consumption by freight transport,AR-Y,SESCO,annual,kg,29204e9f-6e46-354a-a570-1e544f036238 -2018,La Pampa,II.1.1,169.58339999999998,TJ,CO2,74100.0,kg/TJ,12566129.94,Gas Oil combustion consumption by freight transport,AR-L,SESCO,annual,kg,59cb25b3-ba78-33f5-b918-6a6bb813474f -2018,La Pampa,II.1.1,169.58339999999998,TJ,CH4,3.9,kg/TJ,661.3752599999999,Gas Oil combustion consumption by freight transport,AR-L,SESCO,annual,kg,3afc2437-6490-3786-89d1-ad6d186d7dd6 -2018,La Pampa,II.1.1,169.58339999999998,TJ,N2O,3.9,kg/TJ,661.3752599999999,Gas Oil combustion consumption by freight transport,AR-L,SESCO,annual,kg,3afc2437-6490-3786-89d1-ad6d186d7dd6 -2018,La Rioja,II.1.1,9.24672,TJ,CO2,74100.0,kg/TJ,685181.9519999999,Gas Oil combustion consumption by freight transport,AR-F,SESCO,annual,kg,8963be44-6d49-3bd5-94d8-9c0801a3a8dc -2018,La Rioja,II.1.1,9.24672,TJ,CH4,3.9,kg/TJ,36.062208,Gas Oil combustion consumption by freight transport,AR-F,SESCO,annual,kg,f67ea209-a3b6-3b9a-a5e6-539a2cb97218 -2018,La Rioja,II.1.1,9.24672,TJ,N2O,3.9,kg/TJ,36.062208,Gas Oil combustion consumption by freight transport,AR-F,SESCO,annual,kg,f67ea209-a3b6-3b9a-a5e6-539a2cb97218 -2018,Mendoza,II.1.1,1995.88284,TJ,CO2,74100.0,kg/TJ,147894918.444,Gas Oil combustion consumption by freight transport,AR-M,SESCO,annual,kg,c1503b26-268b-3e2f-bf2c-c39da18f4775 -2018,Mendoza,II.1.1,1995.88284,TJ,CH4,3.9,kg/TJ,7783.943076,Gas Oil combustion consumption by freight transport,AR-M,SESCO,annual,kg,8da38541-1683-3653-a060-9c0548a5d683 -2018,Mendoza,II.1.1,1995.88284,TJ,N2O,3.9,kg/TJ,7783.943076,Gas Oil combustion consumption by freight transport,AR-M,SESCO,annual,kg,8da38541-1683-3653-a060-9c0548a5d683 -2018,Misiones,II.1.1,1004.2443599999999,TJ,CO2,74100.0,kg/TJ,74414507.07599999,Gas Oil combustion consumption by freight transport,AR-N,SESCO,annual,kg,2e546de3-87e6-3c4a-8ee1-18c70ada7fa7 -2018,Misiones,II.1.1,1004.2443599999999,TJ,CH4,3.9,kg/TJ,3916.5530039999994,Gas Oil combustion consumption by freight transport,AR-N,SESCO,annual,kg,c53f6b63-d66b-3640-9264-b5499b7a4f62 -2018,Misiones,II.1.1,1004.2443599999999,TJ,N2O,3.9,kg/TJ,3916.5530039999994,Gas Oil combustion consumption by freight transport,AR-N,SESCO,annual,kg,c53f6b63-d66b-3640-9264-b5499b7a4f62 -2018,Neuquén,II.1.1,965.37924,TJ,CO2,74100.0,kg/TJ,71534601.684,Gas Oil combustion consumption by freight transport,AR-Q,SESCO,annual,kg,940f153c-d29c-3f71-8961-c198e1175047 -2018,Neuquén,II.1.1,965.37924,TJ,CH4,3.9,kg/TJ,3764.9790359999997,Gas Oil combustion consumption by freight transport,AR-Q,SESCO,annual,kg,1bdb174f-ccc2-3549-bb1d-7dbc76e35a9e -2018,Neuquén,II.1.1,965.37924,TJ,N2O,3.9,kg/TJ,3764.9790359999997,Gas Oil combustion consumption by freight transport,AR-Q,SESCO,annual,kg,1bdb174f-ccc2-3549-bb1d-7dbc76e35a9e -2018,Rio Negro,II.1.1,416.68032,TJ,CO2,74100.0,kg/TJ,30876011.712,Gas Oil combustion consumption by freight transport,AR-R,SESCO,annual,kg,6f14fe47-ba2f-3071-a2bd-5a5feb4a6ea7 -2018,Rio Negro,II.1.1,416.68032,TJ,CH4,3.9,kg/TJ,1625.053248,Gas Oil combustion consumption by freight transport,AR-R,SESCO,annual,kg,b693f7a4-7cf1-3dac-9fd5-5cdedac88b45 -2018,Rio Negro,II.1.1,416.68032,TJ,N2O,3.9,kg/TJ,1625.053248,Gas Oil combustion consumption by freight transport,AR-R,SESCO,annual,kg,b693f7a4-7cf1-3dac-9fd5-5cdedac88b45 -2018,Salta,II.1.1,349.31651999999997,TJ,CO2,74100.0,kg/TJ,25884354.132,Gas Oil combustion consumption by freight transport,AR-A,SESCO,annual,kg,16b34165-007d-3ba7-80df-b5daa4327c43 -2018,Salta,II.1.1,349.31651999999997,TJ,CH4,3.9,kg/TJ,1362.334428,Gas Oil combustion consumption by freight transport,AR-A,SESCO,annual,kg,363d378b-00d3-3e46-bb3a-f207845fdf35 -2018,Salta,II.1.1,349.31651999999997,TJ,N2O,3.9,kg/TJ,1362.334428,Gas Oil combustion consumption by freight transport,AR-A,SESCO,annual,kg,363d378b-00d3-3e46-bb3a-f207845fdf35 -2018,San Juan,II.1.1,161.92596,TJ,CO2,74100.0,kg/TJ,11998713.636,Gas Oil combustion consumption by freight transport,AR-J,SESCO,annual,kg,88197d66-4709-399f-81d2-202040eb21f3 -2018,San Juan,II.1.1,161.92596,TJ,CH4,3.9,kg/TJ,631.511244,Gas Oil combustion consumption by freight transport,AR-J,SESCO,annual,kg,ed1098a9-70ff-30a9-b7c8-baebbcf60592 -2018,San Juan,II.1.1,161.92596,TJ,N2O,3.9,kg/TJ,631.511244,Gas Oil combustion consumption by freight transport,AR-J,SESCO,annual,kg,ed1098a9-70ff-30a9-b7c8-baebbcf60592 -2018,San Luis,II.1.1,216.9006,TJ,CO2,74100.0,kg/TJ,16072334.459999999,Gas Oil combustion consumption by freight transport,AR-D,SESCO,annual,kg,df35e3d3-9945-3794-ac52-c384852b200d -2018,San Luis,II.1.1,216.9006,TJ,CH4,3.9,kg/TJ,845.91234,Gas Oil combustion consumption by freight transport,AR-D,SESCO,annual,kg,2d5fb4b8-8b83-39a2-b8ac-ce659c71ab58 -2018,San Luis,II.1.1,216.9006,TJ,N2O,3.9,kg/TJ,845.91234,Gas Oil combustion consumption by freight transport,AR-D,SESCO,annual,kg,2d5fb4b8-8b83-39a2-b8ac-ce659c71ab58 -2018,Santa Cruz,II.1.1,182.83944,TJ,CO2,74100.0,kg/TJ,13548402.503999999,Gas Oil combustion consumption by freight transport,AR-Z,SESCO,annual,kg,163b9ab9-4524-3001-83ce-55317c4bb6b1 -2018,Santa Cruz,II.1.1,182.83944,TJ,CH4,3.9,kg/TJ,713.073816,Gas Oil combustion consumption by freight transport,AR-Z,SESCO,annual,kg,ed7c8c73-bfd5-355c-aabc-926786f41e6a -2018,Santa Cruz,II.1.1,182.83944,TJ,N2O,3.9,kg/TJ,713.073816,Gas Oil combustion consumption by freight transport,AR-Z,SESCO,annual,kg,ed7c8c73-bfd5-355c-aabc-926786f41e6a -2018,Santa Fe,II.1.1,2662.044,TJ,CO2,74100.0,kg/TJ,197257460.39999998,Gas Oil combustion consumption by freight transport,AR-S,SESCO,annual,kg,2273cb64-17b0-3712-a497-27f272e658ab -2018,Santa Fe,II.1.1,2662.044,TJ,CH4,3.9,kg/TJ,10381.971599999999,Gas Oil combustion consumption by freight transport,AR-S,SESCO,annual,kg,acea3932-4197-39d5-b2d4-82bbaec599bd -2018,Santa Fe,II.1.1,2662.044,TJ,N2O,3.9,kg/TJ,10381.971599999999,Gas Oil combustion consumption by freight transport,AR-S,SESCO,annual,kg,acea3932-4197-39d5-b2d4-82bbaec599bd -2018,Santiago del Estero,II.1.1,263.24255999999997,TJ,CO2,74100.0,kg/TJ,19506273.696,Gas Oil combustion consumption by freight transport,AR-G,SESCO,annual,kg,6dba6743-e9e7-3eb9-b277-bad160f63672 -2018,Santiago del Estero,II.1.1,263.24255999999997,TJ,CH4,3.9,kg/TJ,1026.6459839999998,Gas Oil combustion consumption by freight transport,AR-G,SESCO,annual,kg,c10ab71d-75e9-341c-b7cc-1c8678306e58 -2018,Santiago del Estero,II.1.1,263.24255999999997,TJ,N2O,3.9,kg/TJ,1026.6459839999998,Gas Oil combustion consumption by freight transport,AR-G,SESCO,annual,kg,c10ab71d-75e9-341c-b7cc-1c8678306e58 -2018,Tierra del Fuego,II.1.1,354.08436,TJ,CO2,74100.0,kg/TJ,26237651.076,Gas Oil combustion consumption by freight transport,AR-V,SESCO,annual,kg,891265cd-3e97-3888-b9a0-cb057e42213c -2018,Tierra del Fuego,II.1.1,354.08436,TJ,CH4,3.9,kg/TJ,1380.929004,Gas Oil combustion consumption by freight transport,AR-V,SESCO,annual,kg,227a40ab-9bd7-33b3-a4e6-df6b77a7a8c3 -2018,Tierra del Fuego,II.1.1,354.08436,TJ,N2O,3.9,kg/TJ,1380.929004,Gas Oil combustion consumption by freight transport,AR-V,SESCO,annual,kg,227a40ab-9bd7-33b3-a4e6-df6b77a7a8c3 -2018,Tucuman,II.1.1,672.77112,TJ,CO2,74100.0,kg/TJ,49852339.992,Gas Oil combustion consumption by freight transport,AR-T,SESCO,annual,kg,7b868224-00c9-31b0-87c1-6062415b9377 -2018,Tucuman,II.1.1,672.77112,TJ,CH4,3.9,kg/TJ,2623.8073679999998,Gas Oil combustion consumption by freight transport,AR-T,SESCO,annual,kg,77d44174-cdc2-39f8-acdb-0f365ea45f91 -2018,Tucuman,II.1.1,672.77112,TJ,N2O,3.9,kg/TJ,2623.8073679999998,Gas Oil combustion consumption by freight transport,AR-T,SESCO,annual,kg,77d44174-cdc2-39f8-acdb-0f365ea45f91 -2018,Buenos Aires,II.1.1,1980.71244,TJ,CO2,74100.0,kg/TJ,146770791.804,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,fb898b42-9c5b-3371-91f3-dd370656b855 -2018,Buenos Aires,II.1.1,1980.71244,TJ,CH4,3.9,kg/TJ,7724.778516,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,9bd49b0d-d7a0-3aa1-a53b-db9c653c9ded -2018,Buenos Aires,II.1.1,1980.71244,TJ,N2O,3.9,kg/TJ,7724.778516,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,9bd49b0d-d7a0-3aa1-a53b-db9c653c9ded -2018,Capital Federal,II.1.1,2029.98012,TJ,CO2,74100.0,kg/TJ,150421526.892,Gas Oil combustion consumption by freight transport,AR-C,SESCO,annual,kg,0a3faf6c-f70b-30eb-9fcf-bceca858d6ab -2018,Capital Federal,II.1.1,2029.98012,TJ,CH4,3.9,kg/TJ,7916.922468,Gas Oil combustion consumption by freight transport,AR-C,SESCO,annual,kg,ef8dba0e-4f86-3dd3-98e1-837dd72025a4 -2018,Capital Federal,II.1.1,2029.98012,TJ,N2O,3.9,kg/TJ,7916.922468,Gas Oil combustion consumption by freight transport,AR-C,SESCO,annual,kg,ef8dba0e-4f86-3dd3-98e1-837dd72025a4 -2018,Catamarca,II.1.1,7.98252,TJ,CO2,74100.0,kg/TJ,591504.732,Gas Oil combustion consumption by freight transport,AR-K,SESCO,annual,kg,4a3b49f4-0faf-39b7-957b-e465fb35403e -2018,Catamarca,II.1.1,7.98252,TJ,CH4,3.9,kg/TJ,31.131828,Gas Oil combustion consumption by freight transport,AR-K,SESCO,annual,kg,6c88a9b4-b66a-3afa-83cf-8a821eb3df6c -2018,Catamarca,II.1.1,7.98252,TJ,N2O,3.9,kg/TJ,31.131828,Gas Oil combustion consumption by freight transport,AR-K,SESCO,annual,kg,6c88a9b4-b66a-3afa-83cf-8a821eb3df6c -2018,Chaco,II.1.1,98.89656,TJ,CO2,74100.0,kg/TJ,7328235.096,Gas Oil combustion consumption by freight transport,AR-H,SESCO,annual,kg,2e56a203-fc02-3f27-b4b5-e4d60b95d99e -2018,Chaco,II.1.1,98.89656,TJ,CH4,3.9,kg/TJ,385.696584,Gas Oil combustion consumption by freight transport,AR-H,SESCO,annual,kg,dc0fe1ff-4566-3ba7-86f8-8e7a7351ae1c -2018,Chaco,II.1.1,98.89656,TJ,N2O,3.9,kg/TJ,385.696584,Gas Oil combustion consumption by freight transport,AR-H,SESCO,annual,kg,dc0fe1ff-4566-3ba7-86f8-8e7a7351ae1c -2018,Chubut,II.1.1,221.95739999999998,TJ,CO2,74100.0,kg/TJ,16447043.339999998,Gas Oil combustion consumption by freight transport,AR-U,SESCO,annual,kg,c57abd2b-e48a-38de-ace5-74b21a15f1be -2018,Chubut,II.1.1,221.95739999999998,TJ,CH4,3.9,kg/TJ,865.6338599999999,Gas Oil combustion consumption by freight transport,AR-U,SESCO,annual,kg,f7be765e-01b5-305c-b808-48448714de8c -2018,Chubut,II.1.1,221.95739999999998,TJ,N2O,3.9,kg/TJ,865.6338599999999,Gas Oil combustion consumption by freight transport,AR-U,SESCO,annual,kg,f7be765e-01b5-305c-b808-48448714de8c -2018,Corrientes,II.1.1,92.86452,TJ,CO2,74100.0,kg/TJ,6881260.932,Gas Oil combustion consumption by freight transport,AR-W,SESCO,annual,kg,fc2edacd-49a6-34c0-918c-83cc2a633e7b -2018,Corrientes,II.1.1,92.86452,TJ,CH4,3.9,kg/TJ,362.171628,Gas Oil combustion consumption by freight transport,AR-W,SESCO,annual,kg,76539b4d-c791-35b7-9039-f1df37a4454f -2018,Corrientes,II.1.1,92.86452,TJ,N2O,3.9,kg/TJ,362.171628,Gas Oil combustion consumption by freight transport,AR-W,SESCO,annual,kg,76539b4d-c791-35b7-9039-f1df37a4454f -2018,Córdoba,II.1.1,336.53004,TJ,CO2,74100.0,kg/TJ,24936875.963999998,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,7edf2864-2ab4-32a6-bd52-4d88912e457a -2018,Córdoba,II.1.1,336.53004,TJ,CH4,3.9,kg/TJ,1312.467156,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,aadec96d-5014-3aa7-a997-1cf02e0a660e -2018,Córdoba,II.1.1,336.53004,TJ,N2O,3.9,kg/TJ,1312.467156,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,aadec96d-5014-3aa7-a997-1cf02e0a660e -2018,Entre Rios,II.1.1,154.66584,TJ,CO2,74100.0,kg/TJ,11460738.744,Gas Oil combustion consumption by freight transport,AR-E,SESCO,annual,kg,94728213-1d59-375b-8080-3dffdb9ec09b -2018,Entre Rios,II.1.1,154.66584,TJ,CH4,3.9,kg/TJ,603.196776,Gas Oil combustion consumption by freight transport,AR-E,SESCO,annual,kg,f9fc3c60-800f-361c-b948-d97b060a8338 -2018,Entre Rios,II.1.1,154.66584,TJ,N2O,3.9,kg/TJ,603.196776,Gas Oil combustion consumption by freight transport,AR-E,SESCO,annual,kg,f9fc3c60-800f-361c-b948-d97b060a8338 -2018,Formosa,II.1.1,8.41596,TJ,CO2,74100.0,kg/TJ,623622.636,Gas Oil combustion consumption by freight transport,AR-P,SESCO,annual,kg,cd7a7359-8bee-325b-88f3-448cf8fba552 -2018,Formosa,II.1.1,8.41596,TJ,CH4,3.9,kg/TJ,32.822244,Gas Oil combustion consumption by freight transport,AR-P,SESCO,annual,kg,33ad741f-eb13-31fa-ab45-5c2dce7b4aa1 -2018,Formosa,II.1.1,8.41596,TJ,N2O,3.9,kg/TJ,32.822244,Gas Oil combustion consumption by freight transport,AR-P,SESCO,annual,kg,33ad741f-eb13-31fa-ab45-5c2dce7b4aa1 -2018,Jujuy,II.1.1,17.662679999999998,TJ,CO2,74100.0,kg/TJ,1308804.5879999998,Gas Oil combustion consumption by freight transport,AR-Y,SESCO,annual,kg,a1f3e559-9f3b-38f7-8350-3ed0ba81d8d7 -2018,Jujuy,II.1.1,17.662679999999998,TJ,CH4,3.9,kg/TJ,68.884452,Gas Oil combustion consumption by freight transport,AR-Y,SESCO,annual,kg,77f695b0-4297-3962-80f0-c8bd469f9228 -2018,Jujuy,II.1.1,17.662679999999998,TJ,N2O,3.9,kg/TJ,68.884452,Gas Oil combustion consumption by freight transport,AR-Y,SESCO,annual,kg,77f695b0-4297-3962-80f0-c8bd469f9228 -2018,La Pampa,II.1.1,52.87968,TJ,CO2,74100.0,kg/TJ,3918384.288,Gas Oil combustion consumption by freight transport,AR-L,SESCO,annual,kg,bf49ff3e-ebc7-3631-8088-169e4421ae15 -2018,La Pampa,II.1.1,52.87968,TJ,CH4,3.9,kg/TJ,206.230752,Gas Oil combustion consumption by freight transport,AR-L,SESCO,annual,kg,f9766f3b-de5c-31fe-9ef9-3a37cdfe4725 -2018,La Pampa,II.1.1,52.87968,TJ,N2O,3.9,kg/TJ,206.230752,Gas Oil combustion consumption by freight transport,AR-L,SESCO,annual,kg,f9766f3b-de5c-31fe-9ef9-3a37cdfe4725 -2018,La Rioja,II.1.1,8.59656,TJ,CO2,74100.0,kg/TJ,637005.096,Gas Oil combustion consumption by freight transport,AR-F,SESCO,annual,kg,8ea3db78-e602-3503-8736-f5a9dcaeaba3 -2018,La Rioja,II.1.1,8.59656,TJ,CH4,3.9,kg/TJ,33.526584,Gas Oil combustion consumption by freight transport,AR-F,SESCO,annual,kg,93d11a20-0da4-309d-aa46-00c7ac7cb52e -2018,La Rioja,II.1.1,8.59656,TJ,N2O,3.9,kg/TJ,33.526584,Gas Oil combustion consumption by freight transport,AR-F,SESCO,annual,kg,93d11a20-0da4-309d-aa46-00c7ac7cb52e -2018,Mendoza,II.1.1,372.90288,TJ,CO2,74100.0,kg/TJ,27632103.408,Gas Oil combustion consumption by freight transport,AR-M,SESCO,annual,kg,e6e8cb86-38f5-396c-8c74-06d46a38c613 -2018,Mendoza,II.1.1,372.90288,TJ,CH4,3.9,kg/TJ,1454.321232,Gas Oil combustion consumption by freight transport,AR-M,SESCO,annual,kg,9280f742-f31d-31d3-bcec-183df993f035 -2018,Mendoza,II.1.1,372.90288,TJ,N2O,3.9,kg/TJ,1454.321232,Gas Oil combustion consumption by freight transport,AR-M,SESCO,annual,kg,9280f742-f31d-31d3-bcec-183df993f035 -2018,Misiones,II.1.1,130.79052,TJ,CO2,74100.0,kg/TJ,9691577.532,Gas Oil combustion consumption by freight transport,AR-N,SESCO,annual,kg,6fa33938-ee8b-37aa-ba5a-8dc815e2ede1 -2018,Misiones,II.1.1,130.79052,TJ,CH4,3.9,kg/TJ,510.08302799999996,Gas Oil combustion consumption by freight transport,AR-N,SESCO,annual,kg,e453b4bf-e474-318c-9200-de7af6753664 -2018,Misiones,II.1.1,130.79052,TJ,N2O,3.9,kg/TJ,510.08302799999996,Gas Oil combustion consumption by freight transport,AR-N,SESCO,annual,kg,e453b4bf-e474-318c-9200-de7af6753664 -2018,Neuquén,II.1.1,724.7478,TJ,CO2,74100.0,kg/TJ,53703811.98,Gas Oil combustion consumption by freight transport,AR-Q,SESCO,annual,kg,2bf55910-3173-3911-ae82-7b44e111f91e -2018,Neuquén,II.1.1,724.7478,TJ,CH4,3.9,kg/TJ,2826.51642,Gas Oil combustion consumption by freight transport,AR-Q,SESCO,annual,kg,632a189c-4a49-3645-97cf-766b5f93530b -2018,Neuquén,II.1.1,724.7478,TJ,N2O,3.9,kg/TJ,2826.51642,Gas Oil combustion consumption by freight transport,AR-Q,SESCO,annual,kg,632a189c-4a49-3645-97cf-766b5f93530b -2018,Rio Negro,II.1.1,174.60407999999998,TJ,CO2,74100.0,kg/TJ,12938162.327999998,Gas Oil combustion consumption by freight transport,AR-R,SESCO,annual,kg,914e7466-4483-37df-9ba5-93d9f4f5a5dc -2018,Rio Negro,II.1.1,174.60407999999998,TJ,CH4,3.9,kg/TJ,680.9559119999999,Gas Oil combustion consumption by freight transport,AR-R,SESCO,annual,kg,ba6a23ee-1b39-3ca3-a4ba-666f48a260c1 -2018,Rio Negro,II.1.1,174.60407999999998,TJ,N2O,3.9,kg/TJ,680.9559119999999,Gas Oil combustion consumption by freight transport,AR-R,SESCO,annual,kg,ba6a23ee-1b39-3ca3-a4ba-666f48a260c1 -2018,Salta,II.1.1,123.02471999999999,TJ,CO2,74100.0,kg/TJ,9116131.751999998,Gas Oil combustion consumption by freight transport,AR-A,SESCO,annual,kg,4316bd6a-226f-3705-9a8e-2df76a20cdfe -2018,Salta,II.1.1,123.02471999999999,TJ,CH4,3.9,kg/TJ,479.79640799999993,Gas Oil combustion consumption by freight transport,AR-A,SESCO,annual,kg,d16549bc-9854-35a1-b728-a5ae6170cfb9 -2018,Salta,II.1.1,123.02471999999999,TJ,N2O,3.9,kg/TJ,479.79640799999993,Gas Oil combustion consumption by freight transport,AR-A,SESCO,annual,kg,d16549bc-9854-35a1-b728-a5ae6170cfb9 -2018,San Juan,II.1.1,20.371679999999998,TJ,CO2,74100.0,kg/TJ,1509541.488,Gas Oil combustion consumption by freight transport,AR-J,SESCO,annual,kg,fd8546aa-721d-3c0b-a609-c1e013338bf4 -2018,San Juan,II.1.1,20.371679999999998,TJ,CH4,3.9,kg/TJ,79.44955199999998,Gas Oil combustion consumption by freight transport,AR-J,SESCO,annual,kg,c6f02dc6-afbc-3aa1-ae02-fcecae92e7e9 -2018,San Juan,II.1.1,20.371679999999998,TJ,N2O,3.9,kg/TJ,79.44955199999998,Gas Oil combustion consumption by freight transport,AR-J,SESCO,annual,kg,c6f02dc6-afbc-3aa1-ae02-fcecae92e7e9 -2018,San Luis,II.1.1,45.836279999999995,TJ,CO2,74100.0,kg/TJ,3396468.3479999998,Gas Oil combustion consumption by freight transport,AR-D,SESCO,annual,kg,3d247282-764d-37ec-b5e3-23ed65168ad0 -2018,San Luis,II.1.1,45.836279999999995,TJ,CH4,3.9,kg/TJ,178.76149199999998,Gas Oil combustion consumption by freight transport,AR-D,SESCO,annual,kg,dbfb9582-31cb-3112-bc09-702363785193 -2018,San Luis,II.1.1,45.836279999999995,TJ,N2O,3.9,kg/TJ,178.76149199999998,Gas Oil combustion consumption by freight transport,AR-D,SESCO,annual,kg,dbfb9582-31cb-3112-bc09-702363785193 -2018,Santa Cruz,II.1.1,78.16368,TJ,CO2,74100.0,kg/TJ,5791928.688,Gas Oil combustion consumption by freight transport,AR-Z,SESCO,annual,kg,2afdfea8-f7cd-32d7-acdc-6d0155ff3f73 -2018,Santa Cruz,II.1.1,78.16368,TJ,CH4,3.9,kg/TJ,304.838352,Gas Oil combustion consumption by freight transport,AR-Z,SESCO,annual,kg,e50e38b2-313e-348a-a21c-9999d5a4ecfb -2018,Santa Cruz,II.1.1,78.16368,TJ,N2O,3.9,kg/TJ,304.838352,Gas Oil combustion consumption by freight transport,AR-Z,SESCO,annual,kg,e50e38b2-313e-348a-a21c-9999d5a4ecfb -2018,Santa Fe,II.1.1,512.43444,TJ,CO2,74100.0,kg/TJ,37971392.004,Gas Oil combustion consumption by freight transport,AR-S,SESCO,annual,kg,1d3bc3db-bbd3-3883-824b-8cfdc1d7722e -2018,Santa Fe,II.1.1,512.43444,TJ,CH4,3.9,kg/TJ,1998.494316,Gas Oil combustion consumption by freight transport,AR-S,SESCO,annual,kg,e8cc632a-4cb4-3822-a936-9a2e0792409d -2018,Santa Fe,II.1.1,512.43444,TJ,N2O,3.9,kg/TJ,1998.494316,Gas Oil combustion consumption by freight transport,AR-S,SESCO,annual,kg,e8cc632a-4cb4-3822-a936-9a2e0792409d -2018,Santiago del Estero,II.1.1,33.84444,TJ,CO2,74100.0,kg/TJ,2507873.0039999997,Gas Oil combustion consumption by freight transport,AR-G,SESCO,annual,kg,2fe518dc-097d-3a36-86a2-2f24b31ec6dc -2018,Santiago del Estero,II.1.1,33.84444,TJ,CH4,3.9,kg/TJ,131.993316,Gas Oil combustion consumption by freight transport,AR-G,SESCO,annual,kg,cfc13635-9f76-3580-8cbf-4071b1a3f9fe -2018,Santiago del Estero,II.1.1,33.84444,TJ,N2O,3.9,kg/TJ,131.993316,Gas Oil combustion consumption by freight transport,AR-G,SESCO,annual,kg,cfc13635-9f76-3580-8cbf-4071b1a3f9fe -2018,Tierra del Fuego,II.1.1,72.56508,TJ,CO2,74100.0,kg/TJ,5377072.427999999,Gas Oil combustion consumption by freight transport,AR-V,SESCO,annual,kg,7d3db586-6927-3789-a590-1a2c84ce7885 -2018,Tierra del Fuego,II.1.1,72.56508,TJ,CH4,3.9,kg/TJ,283.003812,Gas Oil combustion consumption by freight transport,AR-V,SESCO,annual,kg,fd14ae38-3308-3cc2-a5f1-c8ebe9f68efc -2018,Tierra del Fuego,II.1.1,72.56508,TJ,N2O,3.9,kg/TJ,283.003812,Gas Oil combustion consumption by freight transport,AR-V,SESCO,annual,kg,fd14ae38-3308-3cc2-a5f1-c8ebe9f68efc -2018,Tucuman,II.1.1,105.32592,TJ,CO2,74100.0,kg/TJ,7804650.671999999,Gas Oil combustion consumption by freight transport,AR-T,SESCO,annual,kg,b631b6ff-00e0-3272-a08e-36da833de8cc -2018,Tucuman,II.1.1,105.32592,TJ,CH4,3.9,kg/TJ,410.77108799999996,Gas Oil combustion consumption by freight transport,AR-T,SESCO,annual,kg,3023a29c-e9b8-32e0-a427-f8ec4c38c472 -2018,Tucuman,II.1.1,105.32592,TJ,N2O,3.9,kg/TJ,410.77108799999996,Gas Oil combustion consumption by freight transport,AR-T,SESCO,annual,kg,3023a29c-e9b8-32e0-a427-f8ec4c38c472 -2018,Buenos Aires,II.1.1,359.78249999999997,TJ,CO2,73300.0,kg/TJ,26372057.249999996,Naphtha combustion consumption by freight transport,AR-B,SESCO,annual,kg,7a2e43da-b2e3-3da3-8a68-ce98177aa861 -2018,Buenos Aires,II.1.1,359.78249999999997,TJ,CH4,0.5,kg/TJ,179.89124999999999,Naphtha combustion consumption by freight transport,AR-B,SESCO,annual,kg,18500fb0-f5a8-3a76-b206-0d7db6115397 -2018,Buenos Aires,II.1.1,359.78249999999997,TJ,N2O,2.0,kg/TJ,719.5649999999999,Naphtha combustion consumption by freight transport,AR-B,SESCO,annual,kg,8e7abffa-849f-379e-95f1-89d0c1430477 -2018,Capital Federal,II.1.1,389.28466499999996,TJ,CO2,73300.0,kg/TJ,28534565.944499996,Naphtha combustion consumption by freight transport,AR-C,SESCO,annual,kg,b5f07332-ad72-312c-9494-14d433495d8a -2018,Capital Federal,II.1.1,389.28466499999996,TJ,CH4,0.5,kg/TJ,194.64233249999998,Naphtha combustion consumption by freight transport,AR-C,SESCO,annual,kg,9f1ff253-4a38-34d9-8092-f9c33dcb0099 -2018,Capital Federal,II.1.1,389.28466499999996,TJ,N2O,2.0,kg/TJ,778.5693299999999,Naphtha combustion consumption by freight transport,AR-C,SESCO,annual,kg,4ddb334f-7184-3297-ab56-a98546bb2ada -2018,Chaco,II.1.1,15.247924999999999,TJ,CO2,73300.0,kg/TJ,1117672.9024999999,Naphtha combustion consumption by freight transport,AR-H,SESCO,annual,kg,0d613abb-5987-3b8c-8648-f67e87b650cb -2018,Chaco,II.1.1,15.247924999999999,TJ,CH4,0.5,kg/TJ,7.623962499999999,Naphtha combustion consumption by freight transport,AR-H,SESCO,annual,kg,88a15bd0-7db7-394e-b1cc-f42abebe27db -2018,Chaco,II.1.1,15.247924999999999,TJ,N2O,2.0,kg/TJ,30.495849999999997,Naphtha combustion consumption by freight transport,AR-H,SESCO,annual,kg,76a5715e-5483-38be-982a-259b15abe5f3 -2018,Chubut,II.1.1,5.345339999999999,TJ,CO2,73300.0,kg/TJ,391813.42199999996,Naphtha combustion consumption by freight transport,AR-U,SESCO,annual,kg,1e44f11b-926d-3043-b837-6742a2abfc53 -2018,Chubut,II.1.1,5.345339999999999,TJ,CH4,0.5,kg/TJ,2.6726699999999997,Naphtha combustion consumption by freight transport,AR-U,SESCO,annual,kg,92a0beae-482b-3b89-8e46-8da2a441bd8c -2018,Chubut,II.1.1,5.345339999999999,TJ,N2O,2.0,kg/TJ,10.690679999999999,Naphtha combustion consumption by freight transport,AR-U,SESCO,annual,kg,41f52c8c-30d4-3875-9592-12e38d761bf6 -2018,Corrientes,II.1.1,6.78447,TJ,CO2,73300.0,kg/TJ,497301.651,Naphtha combustion consumption by freight transport,AR-W,SESCO,annual,kg,eba6e5e2-f55a-371d-989e-cb4a9df06d5a -2018,Corrientes,II.1.1,6.78447,TJ,CH4,0.5,kg/TJ,3.392235,Naphtha combustion consumption by freight transport,AR-W,SESCO,annual,kg,2f7d1915-325f-395b-8bf0-a4fc48032d97 -2018,Corrientes,II.1.1,6.78447,TJ,N2O,2.0,kg/TJ,13.56894,Naphtha combustion consumption by freight transport,AR-W,SESCO,annual,kg,28ebf779-f1c8-3dd1-be51-c13e75317e66 -2018,Córdoba,II.1.1,40.98094,TJ,CO2,73300.0,kg/TJ,3003902.902,Naphtha combustion consumption by freight transport,AR-X,SESCO,annual,kg,7a5d516c-1ebd-3c57-acfa-43fe5f0262a5 -2018,Córdoba,II.1.1,40.98094,TJ,CH4,0.5,kg/TJ,20.49047,Naphtha combustion consumption by freight transport,AR-X,SESCO,annual,kg,35dcfc0f-6139-36a9-ba78-a80a7147f7cc -2018,Córdoba,II.1.1,40.98094,TJ,N2O,2.0,kg/TJ,81.96188,Naphtha combustion consumption by freight transport,AR-X,SESCO,annual,kg,825c5117-bf94-32c7-a517-a47e43ef2d9f -2018,Entre Rios,II.1.1,20.387674999999998,TJ,CO2,73300.0,kg/TJ,1494416.5775,Naphtha combustion consumption by freight transport,AR-E,SESCO,annual,kg,c1af1327-149a-3c18-befa-5856d6663690 -2018,Entre Rios,II.1.1,20.387674999999998,TJ,CH4,0.5,kg/TJ,10.193837499999999,Naphtha combustion consumption by freight transport,AR-E,SESCO,annual,kg,b27b160c-375c-3d60-9f71-cc6b0dcc24b0 -2018,Entre Rios,II.1.1,20.387674999999998,TJ,N2O,2.0,kg/TJ,40.775349999999996,Naphtha combustion consumption by freight transport,AR-E,SESCO,annual,kg,3d2d6e2f-574e-383d-a481-f7f8187892d7 -2018,Formosa,II.1.1,0.513975,TJ,CO2,73300.0,kg/TJ,37674.3675,Naphtha combustion consumption by freight transport,AR-P,SESCO,annual,kg,185a8edc-0f41-3991-9179-bf30e71c5007 -2018,Formosa,II.1.1,0.513975,TJ,CH4,0.5,kg/TJ,0.2569875,Naphtha combustion consumption by freight transport,AR-P,SESCO,annual,kg,b0622b36-be1f-370c-96fe-69202a2f8a9e -2018,Formosa,II.1.1,0.513975,TJ,N2O,2.0,kg/TJ,1.02795,Naphtha combustion consumption by freight transport,AR-P,SESCO,annual,kg,0ab3478e-9f6b-384f-93eb-beee4d40d0db -2018,Jujuy,II.1.1,1.062215,TJ,CO2,73300.0,kg/TJ,77860.35949999999,Naphtha combustion consumption by freight transport,AR-Y,SESCO,annual,kg,89ec48da-7247-346c-9575-5ad0998e39d1 -2018,Jujuy,II.1.1,1.062215,TJ,CH4,0.5,kg/TJ,0.5311075,Naphtha combustion consumption by freight transport,AR-Y,SESCO,annual,kg,e00dbaef-4f76-357f-b274-78fbfa656059 -2018,Jujuy,II.1.1,1.062215,TJ,N2O,2.0,kg/TJ,2.12443,Naphtha combustion consumption by freight transport,AR-Y,SESCO,annual,kg,c881ba65-5cc0-3252-89a4-f090f96b9857 -2018,La Pampa,II.1.1,3.76915,TJ,CO2,73300.0,kg/TJ,276278.695,Naphtha combustion consumption by freight transport,AR-L,SESCO,annual,kg,341aae6f-1454-3755-ae7c-dce7f933711d -2018,La Pampa,II.1.1,3.76915,TJ,CH4,0.5,kg/TJ,1.884575,Naphtha combustion consumption by freight transport,AR-L,SESCO,annual,kg,4db596db-ac42-387b-b439-9d01769f1252 -2018,La Pampa,II.1.1,3.76915,TJ,N2O,2.0,kg/TJ,7.5383,Naphtha combustion consumption by freight transport,AR-L,SESCO,annual,kg,61705b66-659c-3b9a-a5f7-288f0f7f5ff1 -2018,La Rioja,II.1.1,0.30838499999999996,TJ,CO2,73300.0,kg/TJ,22604.620499999997,Naphtha combustion consumption by freight transport,AR-F,SESCO,annual,kg,b3cb790e-5063-3a9a-89c7-5727dbde3740 -2018,La Rioja,II.1.1,0.30838499999999996,TJ,CH4,0.5,kg/TJ,0.15419249999999998,Naphtha combustion consumption by freight transport,AR-F,SESCO,annual,kg,3ca84d18-d503-35db-9ef0-14904536e258 -2018,La Rioja,II.1.1,0.30838499999999996,TJ,N2O,2.0,kg/TJ,0.6167699999999999,Naphtha combustion consumption by freight transport,AR-F,SESCO,annual,kg,3aa0cc69-1ef8-3813-af6b-da298e94325d -2018,Mendoza,II.1.1,33.819555,TJ,CO2,73300.0,kg/TJ,2478973.3815,Naphtha combustion consumption by freight transport,AR-M,SESCO,annual,kg,d5c65d2b-11da-3758-85f7-1c44e617eea9 -2018,Mendoza,II.1.1,33.819555,TJ,CH4,0.5,kg/TJ,16.9097775,Naphtha combustion consumption by freight transport,AR-M,SESCO,annual,kg,2264ee07-e8f9-312b-a7ba-c044cba52f3e -2018,Mendoza,II.1.1,33.819555,TJ,N2O,2.0,kg/TJ,67.63911,Naphtha combustion consumption by freight transport,AR-M,SESCO,annual,kg,b93ea2a0-7c54-346c-8561-d3affbecdcbb -2018,Misiones,II.1.1,5.55093,TJ,CO2,73300.0,kg/TJ,406883.169,Naphtha combustion consumption by freight transport,AR-N,SESCO,annual,kg,ed889d21-4c0c-30eb-a304-759a24db902c -2018,Misiones,II.1.1,5.55093,TJ,CH4,0.5,kg/TJ,2.775465,Naphtha combustion consumption by freight transport,AR-N,SESCO,annual,kg,94ee0d13-248d-325a-9842-1aafd413b89f -2018,Misiones,II.1.1,5.55093,TJ,N2O,2.0,kg/TJ,11.10186,Naphtha combustion consumption by freight transport,AR-N,SESCO,annual,kg,e917d558-4b7d-3d3e-9401-522bb1fedd9f -2018,Neuquén,II.1.1,7.8124199999999995,TJ,CO2,73300.0,kg/TJ,572650.3859999999,Naphtha combustion consumption by freight transport,AR-Q,SESCO,annual,kg,82cff5d0-a702-37e1-a20b-28a6f1725367 -2018,Neuquén,II.1.1,7.8124199999999995,TJ,CH4,0.5,kg/TJ,3.9062099999999997,Naphtha combustion consumption by freight transport,AR-Q,SESCO,annual,kg,57e905c3-ac83-3a76-bf25-6bef080046e1 -2018,Neuquén,II.1.1,7.8124199999999995,TJ,N2O,2.0,kg/TJ,15.624839999999999,Naphtha combustion consumption by freight transport,AR-Q,SESCO,annual,kg,c309b534-8009-3a0c-ac7c-be47f6b29c23 -2018,Rio Negro,II.1.1,12.232605,TJ,CO2,73300.0,kg/TJ,896649.9465,Naphtha combustion consumption by freight transport,AR-R,SESCO,annual,kg,7af2d0d9-012b-3fc2-a4c3-a0c03273a738 -2018,Rio Negro,II.1.1,12.232605,TJ,CH4,0.5,kg/TJ,6.1163025,Naphtha combustion consumption by freight transport,AR-R,SESCO,annual,kg,c239df49-a471-36dc-831b-e0f34b3800b8 -2018,Rio Negro,II.1.1,12.232605,TJ,N2O,2.0,kg/TJ,24.46521,Naphtha combustion consumption by freight transport,AR-R,SESCO,annual,kg,4aec8883-c8e8-37f7-acb2-d006a6080abf -2018,Salta,II.1.1,13.56894,TJ,CO2,73300.0,kg/TJ,994603.302,Naphtha combustion consumption by freight transport,AR-A,SESCO,annual,kg,5f98173c-6dee-3bd0-9361-bca469a1511b -2018,Salta,II.1.1,13.56894,TJ,CH4,0.5,kg/TJ,6.78447,Naphtha combustion consumption by freight transport,AR-A,SESCO,annual,kg,cdb33878-1c04-3978-be3c-ee72d4905a8a -2018,Salta,II.1.1,13.56894,TJ,N2O,2.0,kg/TJ,27.13788,Naphtha combustion consumption by freight transport,AR-A,SESCO,annual,kg,3fb27cad-0cb7-3b58-a6c7-a23a4762d610 -2018,San Juan,II.1.1,2.87826,TJ,CO2,73300.0,kg/TJ,210976.458,Naphtha combustion consumption by freight transport,AR-J,SESCO,annual,kg,dfac8538-54e0-369b-8933-649e8dfe04a7 -2018,San Juan,II.1.1,2.87826,TJ,CH4,0.5,kg/TJ,1.43913,Naphtha combustion consumption by freight transport,AR-J,SESCO,annual,kg,a95302a9-bb9e-3d99-a62c-35740739ccc8 -2018,San Juan,II.1.1,2.87826,TJ,N2O,2.0,kg/TJ,5.75652,Naphtha combustion consumption by freight transport,AR-J,SESCO,annual,kg,905e1eb2-6a22-306f-b831-ef0967bf533f -2018,San Luis,II.1.1,4.488715,TJ,CO2,73300.0,kg/TJ,329022.8095,Naphtha combustion consumption by freight transport,AR-D,SESCO,annual,kg,b6df4bc9-06e6-32bb-af99-fd124627d5f6 -2018,San Luis,II.1.1,4.488715,TJ,CH4,0.5,kg/TJ,2.2443575,Naphtha combustion consumption by freight transport,AR-D,SESCO,annual,kg,e13b056c-b525-3dcb-9592-87c25a3d5c2b -2018,San Luis,II.1.1,4.488715,TJ,N2O,2.0,kg/TJ,8.97743,Naphtha combustion consumption by freight transport,AR-D,SESCO,annual,kg,ce350d47-bde3-3179-8a12-0cf28d7e4854 -2018,Santa Cruz,II.1.1,1.678985,TJ,CO2,73300.0,kg/TJ,123069.6005,Naphtha combustion consumption by freight transport,AR-Z,SESCO,annual,kg,3e2ae3a3-7135-387c-91c8-da99bc5ada3b -2018,Santa Cruz,II.1.1,1.678985,TJ,CH4,0.5,kg/TJ,0.8394925,Naphtha combustion consumption by freight transport,AR-Z,SESCO,annual,kg,7c5d3e8c-16aa-311d-829f-44832f35df73 -2018,Santa Cruz,II.1.1,1.678985,TJ,N2O,2.0,kg/TJ,3.35797,Naphtha combustion consumption by freight transport,AR-Z,SESCO,annual,kg,983c6ca7-6031-33ea-95da-7e8fdfcdbbd3 -2018,Santa Fe,II.1.1,46.771724999999996,TJ,CO2,73300.0,kg/TJ,3428367.4425,Naphtha combustion consumption by freight transport,AR-S,SESCO,annual,kg,60acf4c2-220e-3c0b-b751-ac4693dc33df -2018,Santa Fe,II.1.1,46.771724999999996,TJ,CH4,0.5,kg/TJ,23.385862499999998,Naphtha combustion consumption by freight transport,AR-S,SESCO,annual,kg,c242c047-a4e5-3571-9c17-2de820bba0b9 -2018,Santa Fe,II.1.1,46.771724999999996,TJ,N2O,2.0,kg/TJ,93.54344999999999,Naphtha combustion consumption by freight transport,AR-S,SESCO,annual,kg,66ee68cc-f568-33a9-94a0-c7a1815d8a71 -2018,Santiago del Estero,II.1.1,0.9936849999999999,TJ,CO2,73300.0,kg/TJ,72837.1105,Naphtha combustion consumption by freight transport,AR-G,SESCO,annual,kg,05ff68dd-1bd0-3e00-a555-282a8709c69d -2018,Santiago del Estero,II.1.1,0.9936849999999999,TJ,CH4,0.5,kg/TJ,0.49684249999999996,Naphtha combustion consumption by freight transport,AR-G,SESCO,annual,kg,589873ab-1542-35d3-b3e0-783f2c83871f -2018,Santiago del Estero,II.1.1,0.9936849999999999,TJ,N2O,2.0,kg/TJ,1.9873699999999999,Naphtha combustion consumption by freight transport,AR-G,SESCO,annual,kg,e29e8789-28d4-351a-b9d1-e9269bd5e66e -2018,Tierra del Fuego,II.1.1,7.6753599999999995,TJ,CO2,73300.0,kg/TJ,562603.8879999999,Naphtha combustion consumption by freight transport,AR-V,SESCO,annual,kg,b2884d52-5505-3a06-b5a0-99e88aed6366 -2018,Tierra del Fuego,II.1.1,7.6753599999999995,TJ,CH4,0.5,kg/TJ,3.8376799999999998,Naphtha combustion consumption by freight transport,AR-V,SESCO,annual,kg,e95c37d2-c32e-3df3-89c0-30af96cfedb1 -2018,Tierra del Fuego,II.1.1,7.6753599999999995,TJ,N2O,2.0,kg/TJ,15.350719999999999,Naphtha combustion consumption by freight transport,AR-V,SESCO,annual,kg,ed621b6b-092b-3aca-be92-b7e0abade884 -2018,Tucuman,II.1.1,11.136125,TJ,CO2,73300.0,kg/TJ,816277.9625,Naphtha combustion consumption by freight transport,AR-T,SESCO,annual,kg,b1242c7a-3783-3ea6-b400-2f372108aaea -2018,Tucuman,II.1.1,11.136125,TJ,CH4,0.5,kg/TJ,5.5680625,Naphtha combustion consumption by freight transport,AR-T,SESCO,annual,kg,221866c0-e571-3284-aca9-19cc89ae72eb -2018,Tucuman,II.1.1,11.136125,TJ,N2O,2.0,kg/TJ,22.27225,Naphtha combustion consumption by freight transport,AR-T,SESCO,annual,kg,33618402-9503-3a62-aa74-ae8428aee0de -2018,Buenos Aires,II.1.1,347.17298,TJ,CO2,73300.0,kg/TJ,25447779.434,Naphtha combustion consumption by freight transport,AR-B,SESCO,annual,kg,70e15754-8d66-382d-a3d1-117cb2d0c4d3 -2018,Buenos Aires,II.1.1,347.17298,TJ,CH4,0.5,kg/TJ,173.58649,Naphtha combustion consumption by freight transport,AR-B,SESCO,annual,kg,f6c7a146-dcad-307f-8c69-a95451614ed0 -2018,Buenos Aires,II.1.1,347.17298,TJ,N2O,2.0,kg/TJ,694.34596,Naphtha combustion consumption by freight transport,AR-B,SESCO,annual,kg,af80ec96-9e62-300c-b55a-11d75cec020a -2018,Capital Federal,II.1.1,451.98961499999996,TJ,CO2,73300.0,kg/TJ,33130838.779499996,Naphtha combustion consumption by freight transport,AR-C,SESCO,annual,kg,6b35e2bb-0771-3ca3-8619-1f875469a205 -2018,Capital Federal,II.1.1,451.98961499999996,TJ,CH4,0.5,kg/TJ,225.99480749999998,Naphtha combustion consumption by freight transport,AR-C,SESCO,annual,kg,a4d8383d-9ac2-3913-8bf1-09ea162b0a3b -2018,Capital Federal,II.1.1,451.98961499999996,TJ,N2O,2.0,kg/TJ,903.9792299999999,Naphtha combustion consumption by freight transport,AR-C,SESCO,annual,kg,0c940592-2fb7-38c2-9aaa-1e13e63d2a4a -2018,Catamarca,II.1.1,0.30838499999999996,TJ,CO2,73300.0,kg/TJ,22604.620499999997,Naphtha combustion consumption by freight transport,AR-K,SESCO,annual,kg,76b05ac1-3c1e-37d1-879f-26d9e9f80223 -2018,Catamarca,II.1.1,0.30838499999999996,TJ,CH4,0.5,kg/TJ,0.15419249999999998,Naphtha combustion consumption by freight transport,AR-K,SESCO,annual,kg,c6601a53-67d2-3329-a1cd-41574072cb05 -2018,Catamarca,II.1.1,0.30838499999999996,TJ,N2O,2.0,kg/TJ,0.6167699999999999,Naphtha combustion consumption by freight transport,AR-K,SESCO,annual,kg,0b8bae4e-9174-3a8b-b4ad-d9e9c591778c -2018,Chaco,II.1.1,12.164074999999999,TJ,CO2,73300.0,kg/TJ,891626.6974999999,Naphtha combustion consumption by freight transport,AR-H,SESCO,annual,kg,32b1134a-240f-3973-9f67-3b3d49a7e1ca -2018,Chaco,II.1.1,12.164074999999999,TJ,CH4,0.5,kg/TJ,6.082037499999999,Naphtha combustion consumption by freight transport,AR-H,SESCO,annual,kg,5f62f36f-31f3-3a7a-8001-f78aebe22d27 -2018,Chaco,II.1.1,12.164074999999999,TJ,N2O,2.0,kg/TJ,24.328149999999997,Naphtha combustion consumption by freight transport,AR-H,SESCO,annual,kg,2ecd543f-e25b-3c69-90b9-294aaf7c89a3 -2018,Chubut,II.1.1,4.557245,TJ,CO2,73300.0,kg/TJ,334046.0585,Naphtha combustion consumption by freight transport,AR-U,SESCO,annual,kg,fd9f21cd-3a5b-3813-bae7-0dbd02b9c552 -2018,Chubut,II.1.1,4.557245,TJ,CH4,0.5,kg/TJ,2.2786225,Naphtha combustion consumption by freight transport,AR-U,SESCO,annual,kg,a921f2ce-1620-3245-9285-ee6946ef4ec2 -2018,Chubut,II.1.1,4.557245,TJ,N2O,2.0,kg/TJ,9.11449,Naphtha combustion consumption by freight transport,AR-U,SESCO,annual,kg,ca58266a-d27a-33b4-b5f9-3f8004aa9c94 -2018,Corrientes,II.1.1,8.36066,TJ,CO2,73300.0,kg/TJ,612836.3779999999,Naphtha combustion consumption by freight transport,AR-W,SESCO,annual,kg,6f871afe-678d-37a9-8200-44d5596e9a31 -2018,Corrientes,II.1.1,8.36066,TJ,CH4,0.5,kg/TJ,4.18033,Naphtha combustion consumption by freight transport,AR-W,SESCO,annual,kg,4b091496-f320-313a-9dc0-f1a2beaac2f7 -2018,Corrientes,II.1.1,8.36066,TJ,N2O,2.0,kg/TJ,16.72132,Naphtha combustion consumption by freight transport,AR-W,SESCO,annual,kg,a9601b5c-be44-3465-88d9-51909efabc7f -2018,Córdoba,II.1.1,33.71676,TJ,CO2,73300.0,kg/TJ,2471438.508,Naphtha combustion consumption by freight transport,AR-X,SESCO,annual,kg,4c0a43f4-7b50-34e7-9b80-3df3f637d662 -2018,Córdoba,II.1.1,33.71676,TJ,CH4,0.5,kg/TJ,16.85838,Naphtha combustion consumption by freight transport,AR-X,SESCO,annual,kg,7590645c-b279-32e4-9ccf-9bd2059e08a5 -2018,Córdoba,II.1.1,33.71676,TJ,N2O,2.0,kg/TJ,67.43352,Naphtha combustion consumption by freight transport,AR-X,SESCO,annual,kg,4e14eaa2-4bdb-32f2-b3bd-4ff718f03e79 -2018,Entre Rios,II.1.1,26.349784999999997,TJ,CO2,73300.0,kg/TJ,1931439.2404999998,Naphtha combustion consumption by freight transport,AR-E,SESCO,annual,kg,baa9a036-50af-332c-9cc6-1be3df4724a6 -2018,Entre Rios,II.1.1,26.349784999999997,TJ,CH4,0.5,kg/TJ,13.174892499999999,Naphtha combustion consumption by freight transport,AR-E,SESCO,annual,kg,ec4f32e3-ec8e-33df-8d9b-5d83dd054810 -2018,Entre Rios,II.1.1,26.349784999999997,TJ,N2O,2.0,kg/TJ,52.699569999999994,Naphtha combustion consumption by freight transport,AR-E,SESCO,annual,kg,ac24cb8a-60cb-35b1-b004-777c21c5f5fb -2018,Formosa,II.1.1,0.54824,TJ,CO2,73300.0,kg/TJ,40185.992,Naphtha combustion consumption by freight transport,AR-P,SESCO,annual,kg,15f47fdf-74dc-33ff-ba64-8215b833123a -2018,Formosa,II.1.1,0.54824,TJ,CH4,0.5,kg/TJ,0.27412,Naphtha combustion consumption by freight transport,AR-P,SESCO,annual,kg,f234c087-4033-3a6c-b846-69dce6d6f575 -2018,Formosa,II.1.1,0.54824,TJ,N2O,2.0,kg/TJ,1.09648,Naphtha combustion consumption by freight transport,AR-P,SESCO,annual,kg,4a4763a2-279f-39d2-a66f-8d0ac837a75f -2018,Jujuy,II.1.1,0.9594199999999999,TJ,CO2,73300.0,kg/TJ,70325.48599999999,Naphtha combustion consumption by freight transport,AR-Y,SESCO,annual,kg,9a3718a5-11c7-3942-b986-358f74ab54ff -2018,Jujuy,II.1.1,0.9594199999999999,TJ,CH4,0.5,kg/TJ,0.47970999999999997,Naphtha combustion consumption by freight transport,AR-Y,SESCO,annual,kg,1234c5dd-d204-3c70-be7b-13a0b7f857e8 -2018,Jujuy,II.1.1,0.9594199999999999,TJ,N2O,2.0,kg/TJ,1.9188399999999999,Naphtha combustion consumption by freight transport,AR-Y,SESCO,annual,kg,91eff4df-f86e-3b76-9593-9b15d682a05e -2018,La Pampa,II.1.1,3.8719449999999997,TJ,CO2,73300.0,kg/TJ,283813.5685,Naphtha combustion consumption by freight transport,AR-L,SESCO,annual,kg,bf7f46fc-0fcc-3f9c-bc3b-0e6e0602226c -2018,La Pampa,II.1.1,3.8719449999999997,TJ,CH4,0.5,kg/TJ,1.9359724999999999,Naphtha combustion consumption by freight transport,AR-L,SESCO,annual,kg,871e56dc-6f41-3510-b676-fc723a7b91c1 -2018,La Pampa,II.1.1,3.8719449999999997,TJ,N2O,2.0,kg/TJ,7.7438899999999995,Naphtha combustion consumption by freight transport,AR-L,SESCO,annual,kg,acf327ae-646f-3203-a8a5-4078cbc42108 -2018,La Rioja,II.1.1,1.9873699999999999,TJ,CO2,73300.0,kg/TJ,145674.221,Naphtha combustion consumption by freight transport,AR-F,SESCO,annual,kg,04761b53-3681-318e-b06f-d274f50512f1 -2018,La Rioja,II.1.1,1.9873699999999999,TJ,CH4,0.5,kg/TJ,0.9936849999999999,Naphtha combustion consumption by freight transport,AR-F,SESCO,annual,kg,9d900ce5-7c5d-3d5e-b06f-a0babb2ffde8 -2018,La Rioja,II.1.1,1.9873699999999999,TJ,N2O,2.0,kg/TJ,3.9747399999999997,Naphtha combustion consumption by freight transport,AR-F,SESCO,annual,kg,33466310-a933-3744-9f52-784b59f14d28 -2018,Mendoza,II.1.1,58.73021,TJ,CO2,73300.0,kg/TJ,4304924.393,Naphtha combustion consumption by freight transport,AR-M,SESCO,annual,kg,2257a1cc-a7fb-3ad3-802a-58ae568c40c5 -2018,Mendoza,II.1.1,58.73021,TJ,CH4,0.5,kg/TJ,29.365105,Naphtha combustion consumption by freight transport,AR-M,SESCO,annual,kg,6fdb0232-0921-3aa2-ab89-296c0f65680e -2018,Mendoza,II.1.1,58.73021,TJ,N2O,2.0,kg/TJ,117.46042,Naphtha combustion consumption by freight transport,AR-M,SESCO,annual,kg,91fd1013-de2c-3b25-9c92-8c75adaed4c5 -2018,Misiones,II.1.1,6.0649049999999995,TJ,CO2,73300.0,kg/TJ,444557.5365,Naphtha combustion consumption by freight transport,AR-N,SESCO,annual,kg,73f31279-098f-357d-9088-c96e59638e37 -2018,Misiones,II.1.1,6.0649049999999995,TJ,CH4,0.5,kg/TJ,3.0324524999999998,Naphtha combustion consumption by freight transport,AR-N,SESCO,annual,kg,b547f265-30ef-3be0-b89d-69967be82357 -2018,Misiones,II.1.1,6.0649049999999995,TJ,N2O,2.0,kg/TJ,12.129809999999999,Naphtha combustion consumption by freight transport,AR-N,SESCO,annual,kg,37f60491-b232-3e30-911b-5c4a8bf6b89f -2018,Neuquén,II.1.1,18.84575,TJ,CO2,73300.0,kg/TJ,1381393.4749999999,Naphtha combustion consumption by freight transport,AR-Q,SESCO,annual,kg,4320aca4-355f-3f4e-a9e4-8a80308fd913 -2018,Neuquén,II.1.1,18.84575,TJ,CH4,0.5,kg/TJ,9.422875,Naphtha combustion consumption by freight transport,AR-Q,SESCO,annual,kg,36d3e9b8-5417-3309-82ff-c8d78ecfc5a4 -2018,Neuquén,II.1.1,18.84575,TJ,N2O,2.0,kg/TJ,37.6915,Naphtha combustion consumption by freight transport,AR-Q,SESCO,annual,kg,52aa6dd3-9d38-3647-989e-8eacad78b21e -2018,Rio Negro,II.1.1,51.94574,TJ,CO2,73300.0,kg/TJ,3807622.742,Naphtha combustion consumption by freight transport,AR-R,SESCO,annual,kg,0d3c72ff-eeb6-34e6-89eb-eb6c8033f28c -2018,Rio Negro,II.1.1,51.94574,TJ,CH4,0.5,kg/TJ,25.97287,Naphtha combustion consumption by freight transport,AR-R,SESCO,annual,kg,5aa217b6-af5c-3741-a40b-d8203e45c93f -2018,Rio Negro,II.1.1,51.94574,TJ,N2O,2.0,kg/TJ,103.89148,Naphtha combustion consumption by freight transport,AR-R,SESCO,annual,kg,645c31d9-6bd1-39fc-9ed2-553faed90242 -2018,Salta,II.1.1,6.476084999999999,TJ,CO2,73300.0,kg/TJ,474697.03049999994,Naphtha combustion consumption by freight transport,AR-A,SESCO,annual,kg,ffe242bd-9018-3c7f-b92f-a4ef486280a0 -2018,Salta,II.1.1,6.476084999999999,TJ,CH4,0.5,kg/TJ,3.2380424999999997,Naphtha combustion consumption by freight transport,AR-A,SESCO,annual,kg,e8cc3419-5db6-3f3d-b2b6-e7f5c39c5a5f -2018,Salta,II.1.1,6.476084999999999,TJ,N2O,2.0,kg/TJ,12.952169999999999,Naphtha combustion consumption by freight transport,AR-A,SESCO,annual,kg,dec191b1-ac05-3690-8703-b3eb3e4074ac -2018,San Juan,II.1.1,1.2678049999999998,TJ,CO2,73300.0,kg/TJ,92930.1065,Naphtha combustion consumption by freight transport,AR-J,SESCO,annual,kg,8b4773c9-a6e0-31d5-ba64-7f31960c4deb -2018,San Juan,II.1.1,1.2678049999999998,TJ,CH4,0.5,kg/TJ,0.6339024999999999,Naphtha combustion consumption by freight transport,AR-J,SESCO,annual,kg,7eb1c751-de36-35d5-8f12-5c06dbde64f0 -2018,San Juan,II.1.1,1.2678049999999998,TJ,N2O,2.0,kg/TJ,2.5356099999999997,Naphtha combustion consumption by freight transport,AR-J,SESCO,annual,kg,bb2e8cfb-0ff8-3dc9-b4fb-20c054e969e8 -2018,San Luis,II.1.1,4.214595,TJ,CO2,73300.0,kg/TJ,308929.8135,Naphtha combustion consumption by freight transport,AR-D,SESCO,annual,kg,f2b6bb88-0a86-3572-a597-9070e4c80ce6 -2018,San Luis,II.1.1,4.214595,TJ,CH4,0.5,kg/TJ,2.1072975,Naphtha combustion consumption by freight transport,AR-D,SESCO,annual,kg,d5702c37-145d-3f38-aaab-c0cc06f6e78b -2018,San Luis,II.1.1,4.214595,TJ,N2O,2.0,kg/TJ,8.42919,Naphtha combustion consumption by freight transport,AR-D,SESCO,annual,kg,636ca747-3026-359e-8ae4-485c42f506c5 -2018,Santa Cruz,II.1.1,1.43913,TJ,CO2,73300.0,kg/TJ,105488.229,Naphtha combustion consumption by freight transport,AR-Z,SESCO,annual,kg,032c0fa6-26ba-3e1f-957a-98586ca6d97b -2018,Santa Cruz,II.1.1,1.43913,TJ,CH4,0.5,kg/TJ,0.719565,Naphtha combustion consumption by freight transport,AR-Z,SESCO,annual,kg,b2409710-ce41-3ed6-aba3-f222f96d4efc -2018,Santa Cruz,II.1.1,1.43913,TJ,N2O,2.0,kg/TJ,2.87826,Naphtha combustion consumption by freight transport,AR-Z,SESCO,annual,kg,12fd14bf-5431-3d0b-aee9-57a7e866535e -2018,Santa Fe,II.1.1,77.23331,TJ,CO2,73300.0,kg/TJ,5661201.623000001,Naphtha combustion consumption by freight transport,AR-S,SESCO,annual,kg,c0c2deb3-3c63-3e95-91eb-307c8f6b08ce -2018,Santa Fe,II.1.1,77.23331,TJ,CH4,0.5,kg/TJ,38.616655,Naphtha combustion consumption by freight transport,AR-S,SESCO,annual,kg,610f0cfa-e4ac-3a09-8e74-293503111705 -2018,Santa Fe,II.1.1,77.23331,TJ,N2O,2.0,kg/TJ,154.46662,Naphtha combustion consumption by freight transport,AR-S,SESCO,annual,kg,726c8a77-6a5d-3749-805b-ab235032ff1a -2018,Santiago del Estero,II.1.1,0.89089,TJ,CO2,73300.0,kg/TJ,65302.236999999994,Naphtha combustion consumption by freight transport,AR-G,SESCO,annual,kg,bddc175b-ea75-398d-b839-bf67c2965dd6 -2018,Santiago del Estero,II.1.1,0.89089,TJ,CH4,0.5,kg/TJ,0.445445,Naphtha combustion consumption by freight transport,AR-G,SESCO,annual,kg,be8a506a-45fe-3c2d-863e-773cc821f097 -2018,Santiago del Estero,II.1.1,0.89089,TJ,N2O,2.0,kg/TJ,1.78178,Naphtha combustion consumption by freight transport,AR-G,SESCO,annual,kg,f962d3bd-a369-3e1b-96d2-9ff4d34a15c3 -2018,Tierra del Fuego,II.1.1,1.816045,TJ,CO2,73300.0,kg/TJ,133116.0985,Naphtha combustion consumption by freight transport,AR-V,SESCO,annual,kg,63b91d95-5292-3c0e-bc5c-b42df7655d2b -2018,Tierra del Fuego,II.1.1,1.816045,TJ,CH4,0.5,kg/TJ,0.9080225,Naphtha combustion consumption by freight transport,AR-V,SESCO,annual,kg,dbd9163f-77c2-35c0-8621-327c66d52e18 -2018,Tierra del Fuego,II.1.1,1.816045,TJ,N2O,2.0,kg/TJ,3.63209,Naphtha combustion consumption by freight transport,AR-V,SESCO,annual,kg,199e19e5-2ce0-3fe1-b551-46b034b55d3d -2018,Tucuman,II.1.1,6.2019649999999995,TJ,CO2,73300.0,kg/TJ,454604.03449999995,Naphtha combustion consumption by freight transport,AR-T,SESCO,annual,kg,52c1d2e8-cb50-38de-aec7-2dd25a71432c -2018,Tucuman,II.1.1,6.2019649999999995,TJ,CH4,0.5,kg/TJ,3.1009824999999998,Naphtha combustion consumption by freight transport,AR-T,SESCO,annual,kg,a9621433-57cd-38ba-ac93-488eaea7d9d1 -2018,Tucuman,II.1.1,6.2019649999999995,TJ,N2O,2.0,kg/TJ,12.403929999999999,Naphtha combustion consumption by freight transport,AR-T,SESCO,annual,kg,54b18aad-1cc4-3cbf-bf70-1e77c6ddda36 -2018,Buenos Aires,II.1.1,8894.44164,TJ,CO2,74100.0,kg/TJ,659078125.5239999,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,c3ad58a2-aec0-3777-80ca-151aede3036e -2018,Buenos Aires,II.1.1,8894.44164,TJ,CH4,3.9,kg/TJ,34688.322395999996,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,9d530830-c6eb-3620-aa4c-bcbcdc1c9472 -2018,Buenos Aires,II.1.1,8894.44164,TJ,N2O,3.9,kg/TJ,34688.322395999996,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,9d530830-c6eb-3620-aa4c-bcbcdc1c9472 -2018,Capital Federal,II.1.1,1832.3314799999998,TJ,CO2,74100.0,kg/TJ,135775762.66799998,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,472aa21a-2db0-372f-ac86-dd1cb638fea2 -2018,Capital Federal,II.1.1,1832.3314799999998,TJ,CH4,3.9,kg/TJ,7146.092771999999,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,231dc4c4-6024-34e2-ab4c-e95c396b272e -2018,Capital Federal,II.1.1,1832.3314799999998,TJ,N2O,3.9,kg/TJ,7146.092771999999,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,231dc4c4-6024-34e2-ab4c-e95c396b272e -2018,Catamarca,II.1.1,188.61864,TJ,CO2,74100.0,kg/TJ,13976641.224,Gas Oil combustion consumption by public passenger transport,AR-K,SESCO,annual,kg,de9d9b17-cc47-3cb4-9b99-0c1a9cb0ab2e -2018,Catamarca,II.1.1,188.61864,TJ,CH4,3.9,kg/TJ,735.612696,Gas Oil combustion consumption by public passenger transport,AR-K,SESCO,annual,kg,2cf1c0c0-2b58-3028-b331-1d3b67bfb18a -2018,Catamarca,II.1.1,188.61864,TJ,N2O,3.9,kg/TJ,735.612696,Gas Oil combustion consumption by public passenger transport,AR-K,SESCO,annual,kg,2cf1c0c0-2b58-3028-b331-1d3b67bfb18a -2018,Chaco,II.1.1,441.63924,TJ,CO2,74100.0,kg/TJ,32725467.683999997,Gas Oil combustion consumption by public passenger transport,AR-H,SESCO,annual,kg,6176932a-5259-3e2c-98b5-63433c5dec93 -2018,Chaco,II.1.1,441.63924,TJ,CH4,3.9,kg/TJ,1722.393036,Gas Oil combustion consumption by public passenger transport,AR-H,SESCO,annual,kg,3fd6059f-0888-3946-989d-d9568b1338b7 -2018,Chaco,II.1.1,441.63924,TJ,N2O,3.9,kg/TJ,1722.393036,Gas Oil combustion consumption by public passenger transport,AR-H,SESCO,annual,kg,3fd6059f-0888-3946-989d-d9568b1338b7 -2018,Chubut,II.1.1,105.79548,TJ,CO2,74100.0,kg/TJ,7839445.068,Gas Oil combustion consumption by public passenger transport,AR-U,SESCO,annual,kg,5741d001-4bb8-3b09-bd3d-232cbecc03e4 -2018,Chubut,II.1.1,105.79548,TJ,CH4,3.9,kg/TJ,412.602372,Gas Oil combustion consumption by public passenger transport,AR-U,SESCO,annual,kg,25edec06-a68b-385e-8a9f-370acb254dcf -2018,Chubut,II.1.1,105.79548,TJ,N2O,3.9,kg/TJ,412.602372,Gas Oil combustion consumption by public passenger transport,AR-U,SESCO,annual,kg,25edec06-a68b-385e-8a9f-370acb254dcf -2018,Corrientes,II.1.1,487.25879999999995,TJ,CO2,74100.0,kg/TJ,36105877.08,Gas Oil combustion consumption by public passenger transport,AR-W,SESCO,annual,kg,35e77b2a-6ab9-3411-af93-ea7079b9a395 -2018,Corrientes,II.1.1,487.25879999999995,TJ,CH4,3.9,kg/TJ,1900.3093199999998,Gas Oil combustion consumption by public passenger transport,AR-W,SESCO,annual,kg,43f02350-9c46-312c-addc-dda0dd5b2425 -2018,Corrientes,II.1.1,487.25879999999995,TJ,N2O,3.9,kg/TJ,1900.3093199999998,Gas Oil combustion consumption by public passenger transport,AR-W,SESCO,annual,kg,43f02350-9c46-312c-addc-dda0dd5b2425 -2018,Córdoba,II.1.1,1949.4686399999998,TJ,CO2,74100.0,kg/TJ,144455626.22399998,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,24d93e03-703e-39a0-b9c7-960f20cf174e -2018,Córdoba,II.1.1,1949.4686399999998,TJ,CH4,3.9,kg/TJ,7602.927695999999,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,192100a6-8a40-3fc0-96d4-295395e5d844 -2018,Córdoba,II.1.1,1949.4686399999998,TJ,N2O,3.9,kg/TJ,7602.927695999999,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,192100a6-8a40-3fc0-96d4-295395e5d844 -2018,Entre Rios,II.1.1,527.38812,TJ,CO2,74100.0,kg/TJ,39079459.691999994,Gas Oil combustion consumption by public passenger transport,AR-E,SESCO,annual,kg,dacb0415-01ec-3feb-9589-08efefdb0c48 -2018,Entre Rios,II.1.1,527.38812,TJ,CH4,3.9,kg/TJ,2056.813668,Gas Oil combustion consumption by public passenger transport,AR-E,SESCO,annual,kg,738be32b-67e4-3de2-ae74-df96615b0ffd -2018,Entre Rios,II.1.1,527.38812,TJ,N2O,3.9,kg/TJ,2056.813668,Gas Oil combustion consumption by public passenger transport,AR-E,SESCO,annual,kg,738be32b-67e4-3de2-ae74-df96615b0ffd -2018,Formosa,II.1.1,62.8488,TJ,CO2,74100.0,kg/TJ,4657096.08,Gas Oil combustion consumption by public passenger transport,AR-P,SESCO,annual,kg,62506b91-5830-342b-8fa3-b9b80e91402c -2018,Formosa,II.1.1,62.8488,TJ,CH4,3.9,kg/TJ,245.11031999999997,Gas Oil combustion consumption by public passenger transport,AR-P,SESCO,annual,kg,c37ab5aa-c310-3bcd-ab3a-b3edc9754b60 -2018,Formosa,II.1.1,62.8488,TJ,N2O,3.9,kg/TJ,245.11031999999997,Gas Oil combustion consumption by public passenger transport,AR-P,SESCO,annual,kg,c37ab5aa-c310-3bcd-ab3a-b3edc9754b60 -2018,Jujuy,II.1.1,670.64004,TJ,CO2,74100.0,kg/TJ,49694426.964,Gas Oil combustion consumption by public passenger transport,AR-Y,SESCO,annual,kg,ab616897-7693-3563-a81b-dee12e3650ba -2018,Jujuy,II.1.1,670.64004,TJ,CH4,3.9,kg/TJ,2615.496156,Gas Oil combustion consumption by public passenger transport,AR-Y,SESCO,annual,kg,63b09946-8140-365f-ae64-03a64428ee2c -2018,Jujuy,II.1.1,670.64004,TJ,N2O,3.9,kg/TJ,2615.496156,Gas Oil combustion consumption by public passenger transport,AR-Y,SESCO,annual,kg,63b09946-8140-365f-ae64-03a64428ee2c -2018,La Pampa,II.1.1,42.87444,TJ,CO2,74100.0,kg/TJ,3176996.004,Gas Oil combustion consumption by public passenger transport,AR-L,SESCO,annual,kg,6217c7b2-639e-39b4-a1f1-d9a095a1c03b -2018,La Pampa,II.1.1,42.87444,TJ,CH4,3.9,kg/TJ,167.210316,Gas Oil combustion consumption by public passenger transport,AR-L,SESCO,annual,kg,0a396655-2ebe-3076-b5ab-1615a4c46835 -2018,La Pampa,II.1.1,42.87444,TJ,N2O,3.9,kg/TJ,167.210316,Gas Oil combustion consumption by public passenger transport,AR-L,SESCO,annual,kg,0a396655-2ebe-3076-b5ab-1615a4c46835 -2018,La Rioja,II.1.1,95.03171999999999,TJ,CO2,74100.0,kg/TJ,7041850.452,Gas Oil combustion consumption by public passenger transport,AR-F,SESCO,annual,kg,5e14f9a2-5420-3b67-839d-1fd783b98ad1 -2018,La Rioja,II.1.1,95.03171999999999,TJ,CH4,3.9,kg/TJ,370.62370799999997,Gas Oil combustion consumption by public passenger transport,AR-F,SESCO,annual,kg,b6ec88d8-22fc-30ab-a57d-53f4fd4513bd -2018,La Rioja,II.1.1,95.03171999999999,TJ,N2O,3.9,kg/TJ,370.62370799999997,Gas Oil combustion consumption by public passenger transport,AR-F,SESCO,annual,kg,b6ec88d8-22fc-30ab-a57d-53f4fd4513bd -2018,Mendoza,II.1.1,1480.5588,TJ,CO2,74100.0,kg/TJ,109709407.08,Gas Oil combustion consumption by public passenger transport,AR-M,SESCO,annual,kg,ad335ccd-8b62-3c3a-ae86-d6499497ee5e -2018,Mendoza,II.1.1,1480.5588,TJ,CH4,3.9,kg/TJ,5774.17932,Gas Oil combustion consumption by public passenger transport,AR-M,SESCO,annual,kg,5df2251f-b8c5-322d-a179-5ecb4accf225 -2018,Mendoza,II.1.1,1480.5588,TJ,N2O,3.9,kg/TJ,5774.17932,Gas Oil combustion consumption by public passenger transport,AR-M,SESCO,annual,kg,5df2251f-b8c5-322d-a179-5ecb4accf225 -2018,Misiones,II.1.1,928.284,TJ,CO2,74100.0,kg/TJ,68785844.4,Gas Oil combustion consumption by public passenger transport,AR-N,SESCO,annual,kg,5c112bb8-5f95-351b-be3d-4362912ce9a9 -2018,Misiones,II.1.1,928.284,TJ,CH4,3.9,kg/TJ,3620.3076,Gas Oil combustion consumption by public passenger transport,AR-N,SESCO,annual,kg,4b9cc244-b023-3e09-8db1-e23e66a0a94c -2018,Misiones,II.1.1,928.284,TJ,N2O,3.9,kg/TJ,3620.3076,Gas Oil combustion consumption by public passenger transport,AR-N,SESCO,annual,kg,4b9cc244-b023-3e09-8db1-e23e66a0a94c -2018,Neuquén,II.1.1,213.108,TJ,CO2,74100.0,kg/TJ,15791302.8,Gas Oil combustion consumption by public passenger transport,AR-Q,SESCO,annual,kg,66579251-e508-3c73-bbec-2f30083a252b -2018,Neuquén,II.1.1,213.108,TJ,CH4,3.9,kg/TJ,831.1212,Gas Oil combustion consumption by public passenger transport,AR-Q,SESCO,annual,kg,6c7b7767-5830-3d8c-955f-fc715d22bca0 -2018,Neuquén,II.1.1,213.108,TJ,N2O,3.9,kg/TJ,831.1212,Gas Oil combustion consumption by public passenger transport,AR-Q,SESCO,annual,kg,6c7b7767-5830-3d8c-955f-fc715d22bca0 -2018,Rio Negro,II.1.1,203.64455999999998,TJ,CO2,74100.0,kg/TJ,15090061.896,Gas Oil combustion consumption by public passenger transport,AR-R,SESCO,annual,kg,d729d2da-32e0-3b80-9393-00ee3dedb1ae -2018,Rio Negro,II.1.1,203.64455999999998,TJ,CH4,3.9,kg/TJ,794.2137839999999,Gas Oil combustion consumption by public passenger transport,AR-R,SESCO,annual,kg,167aeada-d8d6-3d40-aadb-d7fff6b68c68 -2018,Rio Negro,II.1.1,203.64455999999998,TJ,N2O,3.9,kg/TJ,794.2137839999999,Gas Oil combustion consumption by public passenger transport,AR-R,SESCO,annual,kg,167aeada-d8d6-3d40-aadb-d7fff6b68c68 -2018,Salta,II.1.1,630.72744,TJ,CO2,74100.0,kg/TJ,46736903.304,Gas Oil combustion consumption by public passenger transport,AR-A,SESCO,annual,kg,fb747de5-4b90-3acf-accd-cae4ff0ae6af -2018,Salta,II.1.1,630.72744,TJ,CH4,3.9,kg/TJ,2459.837016,Gas Oil combustion consumption by public passenger transport,AR-A,SESCO,annual,kg,e9e9b448-d0e4-32f3-b120-2cf7057e455e -2018,Salta,II.1.1,630.72744,TJ,N2O,3.9,kg/TJ,2459.837016,Gas Oil combustion consumption by public passenger transport,AR-A,SESCO,annual,kg,e9e9b448-d0e4-32f3-b120-2cf7057e455e -2018,San Juan,II.1.1,389.15688,TJ,CO2,74100.0,kg/TJ,28836524.808,Gas Oil combustion consumption by public passenger transport,AR-J,SESCO,annual,kg,68024930-a65d-3681-a4c4-d2740fa816b7 -2018,San Juan,II.1.1,389.15688,TJ,CH4,3.9,kg/TJ,1517.711832,Gas Oil combustion consumption by public passenger transport,AR-J,SESCO,annual,kg,2855d012-c9e5-3c7a-ac84-4bbd71d499f3 -2018,San Juan,II.1.1,389.15688,TJ,N2O,3.9,kg/TJ,1517.711832,Gas Oil combustion consumption by public passenger transport,AR-J,SESCO,annual,kg,2855d012-c9e5-3c7a-ac84-4bbd71d499f3 -2018,San Luis,II.1.1,122.15784,TJ,CO2,74100.0,kg/TJ,9051895.944,Gas Oil combustion consumption by public passenger transport,AR-D,SESCO,annual,kg,9c42a3c9-1d4f-3008-af3d-037f1718914e -2018,San Luis,II.1.1,122.15784,TJ,CH4,3.9,kg/TJ,476.415576,Gas Oil combustion consumption by public passenger transport,AR-D,SESCO,annual,kg,9bfd58a0-6461-3673-a662-094d3837f218 -2018,San Luis,II.1.1,122.15784,TJ,N2O,3.9,kg/TJ,476.415576,Gas Oil combustion consumption by public passenger transport,AR-D,SESCO,annual,kg,9bfd58a0-6461-3673-a662-094d3837f218 -2018,Santa Cruz,II.1.1,21.419159999999998,TJ,CO2,74100.0,kg/TJ,1587159.7559999998,Gas Oil combustion consumption by public passenger transport,AR-Z,SESCO,annual,kg,6393c6d7-82aa-33e5-86bd-b98896012644 -2018,Santa Cruz,II.1.1,21.419159999999998,TJ,CH4,3.9,kg/TJ,83.534724,Gas Oil combustion consumption by public passenger transport,AR-Z,SESCO,annual,kg,ef5da085-2195-3392-97dd-4519590b325a -2018,Santa Cruz,II.1.1,21.419159999999998,TJ,N2O,3.9,kg/TJ,83.534724,Gas Oil combustion consumption by public passenger transport,AR-Z,SESCO,annual,kg,ef5da085-2195-3392-97dd-4519590b325a -2018,Santa Fe,II.1.1,1269.9792,TJ,CO2,74100.0,kg/TJ,94105458.72,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,1540b629-babc-3d53-b416-7d1ced1ed918 -2018,Santa Fe,II.1.1,1269.9792,TJ,CH4,3.9,kg/TJ,4952.91888,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,27b93261-cddf-39ed-a6af-02fef7beadb8 -2018,Santa Fe,II.1.1,1269.9792,TJ,N2O,3.9,kg/TJ,4952.91888,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,27b93261-cddf-39ed-a6af-02fef7beadb8 -2018,Santiago del Estero,II.1.1,279.35208,TJ,CO2,74100.0,kg/TJ,20699989.128,Gas Oil combustion consumption by public passenger transport,AR-G,SESCO,annual,kg,8b9f22c4-7090-3db7-8582-f56b72ee93d6 -2018,Santiago del Estero,II.1.1,279.35208,TJ,CH4,3.9,kg/TJ,1089.473112,Gas Oil combustion consumption by public passenger transport,AR-G,SESCO,annual,kg,f6bcee26-f64e-3dad-a38b-3cb16676a334 -2018,Santiago del Estero,II.1.1,279.35208,TJ,N2O,3.9,kg/TJ,1089.473112,Gas Oil combustion consumption by public passenger transport,AR-G,SESCO,annual,kg,f6bcee26-f64e-3dad-a38b-3cb16676a334 -2018,Tierra del Fuego,II.1.1,9.42732,TJ,CO2,74100.0,kg/TJ,698564.412,Gas Oil combustion consumption by public passenger transport,AR-V,SESCO,annual,kg,fd44ba13-661f-330e-a6b6-77703a24bde8 -2018,Tierra del Fuego,II.1.1,9.42732,TJ,CH4,3.9,kg/TJ,36.766548,Gas Oil combustion consumption by public passenger transport,AR-V,SESCO,annual,kg,653a2f2a-89c5-3baa-b371-f732b25afb3f -2018,Tierra del Fuego,II.1.1,9.42732,TJ,N2O,3.9,kg/TJ,36.766548,Gas Oil combustion consumption by public passenger transport,AR-V,SESCO,annual,kg,653a2f2a-89c5-3baa-b371-f732b25afb3f -2018,Tucuman,II.1.1,967.8715199999999,TJ,CO2,74100.0,kg/TJ,71719279.632,Gas Oil combustion consumption by public passenger transport,AR-T,SESCO,annual,kg,76aa2d84-86ef-38f6-ad85-360c032910f8 -2018,Tucuman,II.1.1,967.8715199999999,TJ,CH4,3.9,kg/TJ,3774.698928,Gas Oil combustion consumption by public passenger transport,AR-T,SESCO,annual,kg,2070ea26-f58f-304a-a987-068e383fef26 -2018,Tucuman,II.1.1,967.8715199999999,TJ,N2O,3.9,kg/TJ,3774.698928,Gas Oil combustion consumption by public passenger transport,AR-T,SESCO,annual,kg,2070ea26-f58f-304a-a987-068e383fef26 -2018,Buenos Aires,II.1.1,1955.46456,TJ,CO2,74100.0,kg/TJ,144899923.896,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,22809ecc-93b3-3d22-b077-1b07d0b5f8f4 -2018,Buenos Aires,II.1.1,1955.46456,TJ,CH4,3.9,kg/TJ,7626.3117839999995,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,d67cde47-90b6-357c-bd9b-1e73446127c4 -2018,Buenos Aires,II.1.1,1955.46456,TJ,N2O,3.9,kg/TJ,7626.3117839999995,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,d67cde47-90b6-357c-bd9b-1e73446127c4 -2018,Capital Federal,II.1.1,303.04679999999996,TJ,CO2,74100.0,kg/TJ,22455767.88,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,3457dd8e-9722-30f5-bc21-2075aa328d4b -2018,Capital Federal,II.1.1,303.04679999999996,TJ,CH4,3.9,kg/TJ,1181.8825199999999,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,6f835ed4-979c-3008-b54c-47622d82c0ea -2018,Capital Federal,II.1.1,303.04679999999996,TJ,N2O,3.9,kg/TJ,1181.8825199999999,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,6f835ed4-979c-3008-b54c-47622d82c0ea -2018,Catamarca,II.1.1,31.388279999999998,TJ,CO2,74100.0,kg/TJ,2325871.548,Gas Oil combustion consumption by public passenger transport,AR-K,SESCO,annual,kg,b0e5d7d8-ea4d-3a38-9b17-becec9ffeffb -2018,Catamarca,II.1.1,31.388279999999998,TJ,CH4,3.9,kg/TJ,122.41429199999999,Gas Oil combustion consumption by public passenger transport,AR-K,SESCO,annual,kg,4012e00b-5131-3496-b2e2-053782d72e01 -2018,Catamarca,II.1.1,31.388279999999998,TJ,N2O,3.9,kg/TJ,122.41429199999999,Gas Oil combustion consumption by public passenger transport,AR-K,SESCO,annual,kg,4012e00b-5131-3496-b2e2-053782d72e01 -2018,Chaco,II.1.1,48.906479999999995,TJ,CO2,74100.0,kg/TJ,3623970.1679999996,Gas Oil combustion consumption by public passenger transport,AR-H,SESCO,annual,kg,95f06142-b473-3eb1-a8d6-fe599972968a -2018,Chaco,II.1.1,48.906479999999995,TJ,CH4,3.9,kg/TJ,190.73527199999998,Gas Oil combustion consumption by public passenger transport,AR-H,SESCO,annual,kg,d8dcc823-78eb-30bb-9f3b-b3335528d2d0 -2018,Chaco,II.1.1,48.906479999999995,TJ,N2O,3.9,kg/TJ,190.73527199999998,Gas Oil combustion consumption by public passenger transport,AR-H,SESCO,annual,kg,d8dcc823-78eb-30bb-9f3b-b3335528d2d0 -2018,Chubut,II.1.1,59.4174,TJ,CO2,74100.0,kg/TJ,4402829.34,Gas Oil combustion consumption by public passenger transport,AR-U,SESCO,annual,kg,f86ae521-b695-3367-b768-b1f4b3c8cf67 -2018,Chubut,II.1.1,59.4174,TJ,CH4,3.9,kg/TJ,231.72786,Gas Oil combustion consumption by public passenger transport,AR-U,SESCO,annual,kg,6f8da824-7a5d-3a89-9fc3-6176d171cd26 -2018,Chubut,II.1.1,59.4174,TJ,N2O,3.9,kg/TJ,231.72786,Gas Oil combustion consumption by public passenger transport,AR-U,SESCO,annual,kg,6f8da824-7a5d-3a89-9fc3-6176d171cd26 -2018,Corrientes,II.1.1,89.9388,TJ,CO2,74100.0,kg/TJ,6664465.08,Gas Oil combustion consumption by public passenger transport,AR-W,SESCO,annual,kg,c864c88c-3267-3be7-89ec-56f3e6f37b86 -2018,Corrientes,II.1.1,89.9388,TJ,CH4,3.9,kg/TJ,350.76132,Gas Oil combustion consumption by public passenger transport,AR-W,SESCO,annual,kg,b771477b-7d36-370a-9577-bc6c01928df4 -2018,Corrientes,II.1.1,89.9388,TJ,N2O,3.9,kg/TJ,350.76132,Gas Oil combustion consumption by public passenger transport,AR-W,SESCO,annual,kg,b771477b-7d36-370a-9577-bc6c01928df4 -2018,Córdoba,II.1.1,378.68208,TJ,CO2,74100.0,kg/TJ,28060342.128,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,d490f789-9152-32be-aa10-7c9b060338c8 -2018,Córdoba,II.1.1,378.68208,TJ,CH4,3.9,kg/TJ,1476.8601119999998,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,52d1972a-9f76-3c3d-afae-55ce53c2d1a5 -2018,Córdoba,II.1.1,378.68208,TJ,N2O,3.9,kg/TJ,1476.8601119999998,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,52d1972a-9f76-3c3d-afae-55ce53c2d1a5 -2018,Entre Rios,II.1.1,39.1902,TJ,CO2,74100.0,kg/TJ,2903993.82,Gas Oil combustion consumption by public passenger transport,AR-E,SESCO,annual,kg,be7c15bb-4d78-33c7-af1e-edcb9592620f -2018,Entre Rios,II.1.1,39.1902,TJ,CH4,3.9,kg/TJ,152.84178,Gas Oil combustion consumption by public passenger transport,AR-E,SESCO,annual,kg,202b5fad-362b-33c8-a9f4-2bf93653c4a9 -2018,Entre Rios,II.1.1,39.1902,TJ,N2O,3.9,kg/TJ,152.84178,Gas Oil combustion consumption by public passenger transport,AR-E,SESCO,annual,kg,202b5fad-362b-33c8-a9f4-2bf93653c4a9 -2018,Formosa,II.1.1,51.90444,TJ,CO2,74100.0,kg/TJ,3846119.004,Gas Oil combustion consumption by public passenger transport,AR-P,SESCO,annual,kg,669d5c61-2de2-3afb-be44-e455e887cd45 -2018,Formosa,II.1.1,51.90444,TJ,CH4,3.9,kg/TJ,202.427316,Gas Oil combustion consumption by public passenger transport,AR-P,SESCO,annual,kg,a32fdbcb-bd17-3640-98f1-a408f7e0e43f -2018,Formosa,II.1.1,51.90444,TJ,N2O,3.9,kg/TJ,202.427316,Gas Oil combustion consumption by public passenger transport,AR-P,SESCO,annual,kg,a32fdbcb-bd17-3640-98f1-a408f7e0e43f -2018,Jujuy,II.1.1,27.920759999999998,TJ,CO2,74100.0,kg/TJ,2068928.3159999999,Gas Oil combustion consumption by public passenger transport,AR-Y,SESCO,annual,kg,b980fad6-c479-3a6f-a191-8974110e9fea -2018,Jujuy,II.1.1,27.920759999999998,TJ,CH4,3.9,kg/TJ,108.89096399999998,Gas Oil combustion consumption by public passenger transport,AR-Y,SESCO,annual,kg,c9eeb16b-c8a7-35ab-bcfb-6ef081e4b03a -2018,Jujuy,II.1.1,27.920759999999998,TJ,N2O,3.9,kg/TJ,108.89096399999998,Gas Oil combustion consumption by public passenger transport,AR-Y,SESCO,annual,kg,c9eeb16b-c8a7-35ab-bcfb-6ef081e4b03a -2018,La Pampa,II.1.1,4.55112,TJ,CO2,74100.0,kg/TJ,337237.992,Gas Oil combustion consumption by public passenger transport,AR-L,SESCO,annual,kg,27afe1be-e39b-30eb-92f6-d0a7cb2cc795 -2018,La Pampa,II.1.1,4.55112,TJ,CH4,3.9,kg/TJ,17.749368,Gas Oil combustion consumption by public passenger transport,AR-L,SESCO,annual,kg,3489c499-9c7d-316d-8a8c-ae475d04d7c8 -2018,La Pampa,II.1.1,4.55112,TJ,N2O,3.9,kg/TJ,17.749368,Gas Oil combustion consumption by public passenger transport,AR-L,SESCO,annual,kg,3489c499-9c7d-316d-8a8c-ae475d04d7c8 -2018,La Rioja,II.1.1,16.36236,TJ,CO2,74100.0,kg/TJ,1212450.876,Gas Oil combustion consumption by public passenger transport,AR-F,SESCO,annual,kg,51bd5e8a-f7a9-36da-822e-bb28fc9a058a -2018,La Rioja,II.1.1,16.36236,TJ,CH4,3.9,kg/TJ,63.81320399999999,Gas Oil combustion consumption by public passenger transport,AR-F,SESCO,annual,kg,18865478-7e43-3544-9067-fb03655e72c4 -2018,La Rioja,II.1.1,16.36236,TJ,N2O,3.9,kg/TJ,63.81320399999999,Gas Oil combustion consumption by public passenger transport,AR-F,SESCO,annual,kg,18865478-7e43-3544-9067-fb03655e72c4 -2018,Mendoza,II.1.1,287.84028,TJ,CO2,74100.0,kg/TJ,21328964.748,Gas Oil combustion consumption by public passenger transport,AR-M,SESCO,annual,kg,87c3cd01-cd10-39ca-b3c4-f6684ce46196 -2018,Mendoza,II.1.1,287.84028,TJ,CH4,3.9,kg/TJ,1122.577092,Gas Oil combustion consumption by public passenger transport,AR-M,SESCO,annual,kg,a182c42d-1fe9-34a3-b338-5d81b7d352fe -2018,Mendoza,II.1.1,287.84028,TJ,N2O,3.9,kg/TJ,1122.577092,Gas Oil combustion consumption by public passenger transport,AR-M,SESCO,annual,kg,a182c42d-1fe9-34a3-b338-5d81b7d352fe -2018,Misiones,II.1.1,208.7736,TJ,CO2,74100.0,kg/TJ,15470123.76,Gas Oil combustion consumption by public passenger transport,AR-N,SESCO,annual,kg,59b2c31a-b357-32c0-9106-c73816c41e40 -2018,Misiones,II.1.1,208.7736,TJ,CH4,3.9,kg/TJ,814.2170399999999,Gas Oil combustion consumption by public passenger transport,AR-N,SESCO,annual,kg,d78b3b98-b1c6-370f-a53f-d41d24bb8dac -2018,Misiones,II.1.1,208.7736,TJ,N2O,3.9,kg/TJ,814.2170399999999,Gas Oil combustion consumption by public passenger transport,AR-N,SESCO,annual,kg,d78b3b98-b1c6-370f-a53f-d41d24bb8dac -2018,Neuquén,II.1.1,39.84036,TJ,CO2,74100.0,kg/TJ,2952170.676,Gas Oil combustion consumption by public passenger transport,AR-Q,SESCO,annual,kg,8302aad6-be61-3ce8-8931-81c6c0598ebb -2018,Neuquén,II.1.1,39.84036,TJ,CH4,3.9,kg/TJ,155.37740399999998,Gas Oil combustion consumption by public passenger transport,AR-Q,SESCO,annual,kg,1108f4cf-e305-37cf-91a7-9aff2665342e -2018,Neuquén,II.1.1,39.84036,TJ,N2O,3.9,kg/TJ,155.37740399999998,Gas Oil combustion consumption by public passenger transport,AR-Q,SESCO,annual,kg,1108f4cf-e305-37cf-91a7-9aff2665342e -2018,Rio Negro,II.1.1,205.66727999999998,TJ,CO2,74100.0,kg/TJ,15239945.447999999,Gas Oil combustion consumption by public passenger transport,AR-R,SESCO,annual,kg,dfef37f3-4e74-3c58-823a-bc0667401aa0 -2018,Rio Negro,II.1.1,205.66727999999998,TJ,CH4,3.9,kg/TJ,802.1023919999999,Gas Oil combustion consumption by public passenger transport,AR-R,SESCO,annual,kg,7a841b02-c85f-3cd3-a146-ce91f6a24710 -2018,Rio Negro,II.1.1,205.66727999999998,TJ,N2O,3.9,kg/TJ,802.1023919999999,Gas Oil combustion consumption by public passenger transport,AR-R,SESCO,annual,kg,7a841b02-c85f-3cd3-a146-ce91f6a24710 -2018,Salta,II.1.1,228.8202,TJ,CO2,74100.0,kg/TJ,16955576.82,Gas Oil combustion consumption by public passenger transport,AR-A,SESCO,annual,kg,9e076492-c0d0-3a26-b39b-5aea0ee4b620 -2018,Salta,II.1.1,228.8202,TJ,CH4,3.9,kg/TJ,892.39878,Gas Oil combustion consumption by public passenger transport,AR-A,SESCO,annual,kg,993c1344-76a4-330b-bc6c-307412e1e604 -2018,Salta,II.1.1,228.8202,TJ,N2O,3.9,kg/TJ,892.39878,Gas Oil combustion consumption by public passenger transport,AR-A,SESCO,annual,kg,993c1344-76a4-330b-bc6c-307412e1e604 -2018,San Juan,II.1.1,146.53884,TJ,CO2,74100.0,kg/TJ,10858528.044,Gas Oil combustion consumption by public passenger transport,AR-J,SESCO,annual,kg,78167729-5f34-3a23-b0ce-53dd6befdad9 -2018,San Juan,II.1.1,146.53884,TJ,CH4,3.9,kg/TJ,571.5014759999999,Gas Oil combustion consumption by public passenger transport,AR-J,SESCO,annual,kg,a7a5b952-49ce-3ff7-9b63-2fbc0ed66ea1 -2018,San Juan,II.1.1,146.53884,TJ,N2O,3.9,kg/TJ,571.5014759999999,Gas Oil combustion consumption by public passenger transport,AR-J,SESCO,annual,kg,a7a5b952-49ce-3ff7-9b63-2fbc0ed66ea1 -2018,San Luis,II.1.1,43.66908,TJ,CO2,74100.0,kg/TJ,3235878.828,Gas Oil combustion consumption by public passenger transport,AR-D,SESCO,annual,kg,be1dc58b-b0b8-35ad-866c-dd0b6a38a0fd -2018,San Luis,II.1.1,43.66908,TJ,CH4,3.9,kg/TJ,170.309412,Gas Oil combustion consumption by public passenger transport,AR-D,SESCO,annual,kg,11091680-4380-341b-98b7-833ad496f639 -2018,San Luis,II.1.1,43.66908,TJ,N2O,3.9,kg/TJ,170.309412,Gas Oil combustion consumption by public passenger transport,AR-D,SESCO,annual,kg,11091680-4380-341b-98b7-833ad496f639 -2018,Santa Cruz,II.1.1,2.23944,TJ,CO2,74100.0,kg/TJ,165942.50400000002,Gas Oil combustion consumption by public passenger transport,AR-Z,SESCO,annual,kg,bac01d6a-7e86-3376-8241-e1b377fbfb59 -2018,Santa Cruz,II.1.1,2.23944,TJ,CH4,3.9,kg/TJ,8.733816000000001,Gas Oil combustion consumption by public passenger transport,AR-Z,SESCO,annual,kg,f0f38c01-5017-307a-a4c3-a24fb5224c11 -2018,Santa Cruz,II.1.1,2.23944,TJ,N2O,3.9,kg/TJ,8.733816000000001,Gas Oil combustion consumption by public passenger transport,AR-Z,SESCO,annual,kg,f0f38c01-5017-307a-a4c3-a24fb5224c11 -2018,Santa Fe,II.1.1,345.4878,TJ,CO2,74100.0,kg/TJ,25600645.98,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,1cd2ee89-7a3b-327a-b3c3-1db633d171fa -2018,Santa Fe,II.1.1,345.4878,TJ,CH4,3.9,kg/TJ,1347.40242,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,0f60873e-8abb-3e81-9d18-1220b7316a00 -2018,Santa Fe,II.1.1,345.4878,TJ,N2O,3.9,kg/TJ,1347.40242,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,0f60873e-8abb-3e81-9d18-1220b7316a00 -2018,Santiago del Estero,II.1.1,38.61228,TJ,CO2,74100.0,kg/TJ,2861169.948,Gas Oil combustion consumption by public passenger transport,AR-G,SESCO,annual,kg,e1465b78-9956-34bd-af86-5ff24e4d93d1 -2018,Santiago del Estero,II.1.1,38.61228,TJ,CH4,3.9,kg/TJ,150.58789199999998,Gas Oil combustion consumption by public passenger transport,AR-G,SESCO,annual,kg,f45af029-2994-3a1c-810c-053a035ad0ca -2018,Santiago del Estero,II.1.1,38.61228,TJ,N2O,3.9,kg/TJ,150.58789199999998,Gas Oil combustion consumption by public passenger transport,AR-G,SESCO,annual,kg,f45af029-2994-3a1c-810c-053a035ad0ca -2018,Tierra del Fuego,II.1.1,21.81648,TJ,CO2,74100.0,kg/TJ,1616601.1679999998,Gas Oil combustion consumption by public passenger transport,AR-V,SESCO,annual,kg,7f9cc7d5-dc5d-3e9d-8806-9c8d478fbe57 -2018,Tierra del Fuego,II.1.1,21.81648,TJ,CH4,3.9,kg/TJ,85.084272,Gas Oil combustion consumption by public passenger transport,AR-V,SESCO,annual,kg,3335dfad-2af3-34b9-91a5-ce8480e48329 -2018,Tierra del Fuego,II.1.1,21.81648,TJ,N2O,3.9,kg/TJ,85.084272,Gas Oil combustion consumption by public passenger transport,AR-V,SESCO,annual,kg,3335dfad-2af3-34b9-91a5-ce8480e48329 -2018,Tucuman,II.1.1,196.45667999999998,TJ,CO2,74100.0,kg/TJ,14557439.987999998,Gas Oil combustion consumption by public passenger transport,AR-T,SESCO,annual,kg,de3bedd5-898a-35cb-b45f-5137beafc7b2 -2018,Tucuman,II.1.1,196.45667999999998,TJ,CH4,3.9,kg/TJ,766.1810519999999,Gas Oil combustion consumption by public passenger transport,AR-T,SESCO,annual,kg,1dbd6438-552e-3be4-b94c-86da64ea72da -2018,Tucuman,II.1.1,196.45667999999998,TJ,N2O,3.9,kg/TJ,766.1810519999999,Gas Oil combustion consumption by public passenger transport,AR-T,SESCO,annual,kg,1dbd6438-552e-3be4-b94c-86da64ea72da -2019,Buenos Aires,II.5.1,266.67395999999997,TJ,CO2,74100.0,kg/TJ,19760540.435999997,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,ec98453f-a46c-33cd-b55f-73093f92df0f -2019,Buenos Aires,II.5.1,266.67395999999997,TJ,CH4,3.9,kg/TJ,1040.0284439999998,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,da392dd6-e44d-3480-bb61-6a5863d637a3 -2019,Buenos Aires,II.5.1,266.67395999999997,TJ,N2O,3.9,kg/TJ,1040.0284439999998,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,da392dd6-e44d-3480-bb61-6a5863d637a3 -2019,Chaco,II.5.1,19.57704,TJ,CO2,74100.0,kg/TJ,1450658.664,Gas Oil combustion consumption by agriculture machines,AR-H,SESCO,annual,kg,9f668290-840d-3fbd-8f5d-4865a660c98b -2019,Chaco,II.5.1,19.57704,TJ,CH4,3.9,kg/TJ,76.350456,Gas Oil combustion consumption by agriculture machines,AR-H,SESCO,annual,kg,d135a61d-6736-318c-8c7f-bb503be60d33 -2019,Chaco,II.5.1,19.57704,TJ,N2O,3.9,kg/TJ,76.350456,Gas Oil combustion consumption by agriculture machines,AR-H,SESCO,annual,kg,d135a61d-6736-318c-8c7f-bb503be60d33 -2019,Córdoba,II.5.1,118.40136,TJ,CO2,74100.0,kg/TJ,8773540.776,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,c0df4ad6-63a4-3755-81ba-909d8b30a49e -2019,Córdoba,II.5.1,118.40136,TJ,CH4,3.9,kg/TJ,461.76530399999996,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,bb917a39-2f28-3f73-a7cf-69c44bd56f3e -2019,Córdoba,II.5.1,118.40136,TJ,N2O,3.9,kg/TJ,461.76530399999996,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,bb917a39-2f28-3f73-a7cf-69c44bd56f3e -2019,Entre Rios,II.5.1,18.09612,TJ,CO2,74100.0,kg/TJ,1340922.4919999999,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,4c688315-86ba-3f5e-9059-9b225c11f3dd -2019,Entre Rios,II.5.1,18.09612,TJ,CH4,3.9,kg/TJ,70.574868,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,cb28000d-7c25-3f67-b2ee-48d23476adf7 -2019,Entre Rios,II.5.1,18.09612,TJ,N2O,3.9,kg/TJ,70.574868,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,cb28000d-7c25-3f67-b2ee-48d23476adf7 -2019,La Pampa,II.5.1,2.13108,TJ,CO2,74100.0,kg/TJ,157913.028,Gas Oil combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,dc4edb83-3e7e-3d20-999c-ed42a6ae84c4 -2019,La Pampa,II.5.1,2.13108,TJ,CH4,3.9,kg/TJ,8.311212,Gas Oil combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,262a6089-179b-34e5-8673-7e85709f08f6 -2019,La Pampa,II.5.1,2.13108,TJ,N2O,3.9,kg/TJ,8.311212,Gas Oil combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,262a6089-179b-34e5-8673-7e85709f08f6 -2019,Santa Fe,II.5.1,209.56824,TJ,CO2,74100.0,kg/TJ,15529006.584,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,73a9eb31-c5e3-3b40-bbb0-584797616237 -2019,Santa Fe,II.5.1,209.56824,TJ,CH4,3.9,kg/TJ,817.316136,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,a765db81-1046-3f47-9039-7aeefdd32a7f -2019,Santa Fe,II.5.1,209.56824,TJ,N2O,3.9,kg/TJ,817.316136,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,a765db81-1046-3f47-9039-7aeefdd32a7f -2019,Buenos Aires,II.5.1,8.01864,TJ,CO2,74100.0,kg/TJ,594181.2239999999,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,cc49f3cb-fe5a-3d31-95f9-3667f555be25 -2019,Buenos Aires,II.5.1,8.01864,TJ,CH4,3.9,kg/TJ,31.272695999999996,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,aebde593-fdf2-3bae-b8fd-ebcedc0acc08 -2019,Buenos Aires,II.5.1,8.01864,TJ,N2O,3.9,kg/TJ,31.272695999999996,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,aebde593-fdf2-3bae-b8fd-ebcedc0acc08 -2019,Córdoba,II.5.1,2.4200399999999997,TJ,CO2,74100.0,kg/TJ,179324.96399999998,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,ea3f7b31-0556-39be-bb30-d678d2856e58 -2019,Córdoba,II.5.1,2.4200399999999997,TJ,CH4,3.9,kg/TJ,9.438156,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,af8a0089-03af-3d4a-ab17-0a097fc20427 -2019,Córdoba,II.5.1,2.4200399999999997,TJ,N2O,3.9,kg/TJ,9.438156,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,af8a0089-03af-3d4a-ab17-0a097fc20427 -2019,La Pampa,II.5.1,0.46956,TJ,CO2,74100.0,kg/TJ,34794.396,Gas Oil combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,ab4ab5cd-dfa9-3126-ac50-d5b0f0272258 -2019,La Pampa,II.5.1,0.46956,TJ,CH4,3.9,kg/TJ,1.831284,Gas Oil combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,725141c8-0815-38d8-9ad4-f4fd01dce5e8 -2019,La Pampa,II.5.1,0.46956,TJ,N2O,3.9,kg/TJ,1.831284,Gas Oil combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,725141c8-0815-38d8-9ad4-f4fd01dce5e8 -2019,Santa Fe,II.5.1,11.702879999999999,TJ,CO2,74100.0,kg/TJ,867183.4079999999,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,a006da95-99c8-3c0c-89ea-65e8eb549fab -2019,Santa Fe,II.5.1,11.702879999999999,TJ,CH4,3.9,kg/TJ,45.641231999999995,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,0d2209b2-4a22-379d-8c7e-4c4bad3694a8 -2019,Santa Fe,II.5.1,11.702879999999999,TJ,N2O,3.9,kg/TJ,45.641231999999995,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,0d2209b2-4a22-379d-8c7e-4c4bad3694a8 -2019,Buenos Aires,II.5.1,0.20559,TJ,CO2,73300.0,kg/TJ,15069.747,Naphtha combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,bc914cfe-cf3c-39ed-888e-f73f6fe5aff0 -2019,Buenos Aires,II.5.1,0.20559,TJ,CH4,0.5,kg/TJ,0.102795,Naphtha combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,f18faaba-3417-33f4-9a57-ab44519d0808 -2019,Buenos Aires,II.5.1,0.20559,TJ,N2O,2.0,kg/TJ,0.41118,Naphtha combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,ca276b56-ca00-3c0e-8952-9f30b5aa075e -2019,Córdoba,II.5.1,1.2678049999999998,TJ,CO2,73300.0,kg/TJ,92930.1065,Naphtha combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,7c03ff4d-6c37-3c0d-b0b4-96022d5aeb49 -2019,Córdoba,II.5.1,1.2678049999999998,TJ,CH4,0.5,kg/TJ,0.6339024999999999,Naphtha combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,27fefacc-6523-3553-8c04-bc200d6609ad -2019,Córdoba,II.5.1,1.2678049999999998,TJ,N2O,2.0,kg/TJ,2.5356099999999997,Naphtha combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,08ca31ef-b95d-3e05-b7c6-e8ec6d4e5dcd -2019,Santa Fe,II.5.1,12.095545,TJ,CO2,73300.0,kg/TJ,886603.4484999999,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,85df10d5-2954-347e-8627-b7add48aa715 -2019,Santa Fe,II.5.1,12.095545,TJ,CH4,0.5,kg/TJ,6.0477725,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,8760e899-e378-3a2f-8cc1-e1f4e1cf715e -2019,Santa Fe,II.5.1,12.095545,TJ,N2O,2.0,kg/TJ,24.19109,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,ce9352f5-ab57-3555-a73b-df9bcf2fefaf -2019,Santa Fe,II.5.1,1.43913,TJ,CO2,73300.0,kg/TJ,105488.229,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,683383b8-ee6a-36d1-b3df-0d07092b5bdf -2019,Santa Fe,II.5.1,1.43913,TJ,CH4,0.5,kg/TJ,0.719565,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,b0f17db0-5125-36ea-b667-2ae0a12ff6ae -2019,Santa Fe,II.5.1,1.43913,TJ,N2O,2.0,kg/TJ,2.87826,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,b33eee40-85b6-36bc-89c2-ba8d9d112d13 -2019,Buenos Aires,II.5.1,245.14643999999998,TJ,CO2,74100.0,kg/TJ,18165351.204,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,d80eee47-3bdf-3de1-ae3b-447400f441a2 -2019,Buenos Aires,II.5.1,245.14643999999998,TJ,CH4,3.9,kg/TJ,956.071116,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,0e7d8a37-902d-31fd-b1d5-eab6636109a3 -2019,Buenos Aires,II.5.1,245.14643999999998,TJ,N2O,3.9,kg/TJ,956.071116,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,0e7d8a37-902d-31fd-b1d5-eab6636109a3 -2019,Capital Federal,II.5.1,4.4066399999999994,TJ,CO2,74100.0,kg/TJ,326532.024,Gas Oil combustion consumption by agriculture machines,AR-C,SESCO,annual,kg,c990c3d2-3f85-36ed-acfb-ea68613db06d -2019,Capital Federal,II.5.1,4.4066399999999994,TJ,CH4,3.9,kg/TJ,17.185895999999996,Gas Oil combustion consumption by agriculture machines,AR-C,SESCO,annual,kg,dfb322f1-bdaa-3804-aa89-c449a68deead -2019,Capital Federal,II.5.1,4.4066399999999994,TJ,N2O,3.9,kg/TJ,17.185895999999996,Gas Oil combustion consumption by agriculture machines,AR-C,SESCO,annual,kg,dfb322f1-bdaa-3804-aa89-c449a68deead -2019,Córdoba,II.5.1,819.8156399999999,TJ,CO2,74100.0,kg/TJ,60748338.923999995,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,799b5772-b7ee-33f3-96dd-45591c29b063 -2019,Córdoba,II.5.1,819.8156399999999,TJ,CH4,3.9,kg/TJ,3197.2809959999995,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,b8a09d03-b13f-3362-89f2-f147fe4b8dea -2019,Córdoba,II.5.1,819.8156399999999,TJ,N2O,3.9,kg/TJ,3197.2809959999995,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,b8a09d03-b13f-3362-89f2-f147fe4b8dea -2019,Entre Rios,II.5.1,124.86684,TJ,CO2,74100.0,kg/TJ,9252632.844,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,a8858671-5bac-33e7-b484-ef585769cbe7 -2019,Entre Rios,II.5.1,124.86684,TJ,CH4,3.9,kg/TJ,486.98067599999996,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,1fd9da04-8b19-37a5-8f1e-8fdaa4a291bd -2019,Entre Rios,II.5.1,124.86684,TJ,N2O,3.9,kg/TJ,486.98067599999996,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,1fd9da04-8b19-37a5-8f1e-8fdaa4a291bd -2019,La Pampa,II.5.1,95.32068,TJ,CO2,74100.0,kg/TJ,7063262.387999999,Gas Oil combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,3478842e-7634-390a-addd-25f7a26a715e -2019,La Pampa,II.5.1,95.32068,TJ,CH4,3.9,kg/TJ,371.750652,Gas Oil combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,0d822519-5d8c-3b61-9029-a3f9588395c6 -2019,La Pampa,II.5.1,95.32068,TJ,N2O,3.9,kg/TJ,371.750652,Gas Oil combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,0d822519-5d8c-3b61-9029-a3f9588395c6 -2019,Santa Fe,II.5.1,176.77128,TJ,CO2,74100.0,kg/TJ,13098751.848,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,e876da40-68c9-389b-a43d-8675c787e583 -2019,Santa Fe,II.5.1,176.77128,TJ,CH4,3.9,kg/TJ,689.4079919999999,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,7f5c719d-efd7-33cc-a032-48185ffcadce -2019,Santa Fe,II.5.1,176.77128,TJ,N2O,3.9,kg/TJ,689.4079919999999,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,7f5c719d-efd7-33cc-a032-48185ffcadce -2019,Chubut,II.1.1,1.1706492,TJ,CO2,74100.0,kg/TJ,86745.10571999999,Gas Oil combustion consumption by freight transport,AR-U,SESCO,annual,kg,42bcfec2-08aa-3d5a-8467-bb48a4cdc683 -2019,Chubut,II.1.1,1.1706492,TJ,CH4,3.9,kg/TJ,4.56553188,Gas Oil combustion consumption by freight transport,AR-U,SESCO,annual,kg,01025cc4-9226-345b-a16f-eb8f04128053 -2019,Chubut,II.1.1,1.1706492,TJ,N2O,3.9,kg/TJ,4.56553188,Gas Oil combustion consumption by freight transport,AR-U,SESCO,annual,kg,01025cc4-9226-345b-a16f-eb8f04128053 -2019,Buenos Aires,II.5.1,459.19356,TJ,CO2,74100.0,kg/TJ,34026242.796,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,e21dc272-d7b5-3e95-931d-3d1e3f6ea6ff -2019,Buenos Aires,II.5.1,459.19356,TJ,CH4,3.9,kg/TJ,1790.8548839999999,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,93665390-0083-3e5a-a611-71f7415f4d19 -2019,Buenos Aires,II.5.1,459.19356,TJ,N2O,3.9,kg/TJ,1790.8548839999999,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,93665390-0083-3e5a-a611-71f7415f4d19 -2019,Chaco,II.5.1,103.98948,TJ,CO2,74100.0,kg/TJ,7705620.468,Gas Oil combustion consumption by agriculture machines,AR-H,SESCO,annual,kg,aa824116-9ea4-3007-8edd-4b15a0da7e9c -2019,Chaco,II.5.1,103.98948,TJ,CH4,3.9,kg/TJ,405.558972,Gas Oil combustion consumption by agriculture machines,AR-H,SESCO,annual,kg,cbd98cbf-a25f-3c6a-841e-d0e87e1ec1ee -2019,Chaco,II.5.1,103.98948,TJ,N2O,3.9,kg/TJ,405.558972,Gas Oil combustion consumption by agriculture machines,AR-H,SESCO,annual,kg,cbd98cbf-a25f-3c6a-841e-d0e87e1ec1ee -2019,Corrientes,II.5.1,30.55752,TJ,CO2,74100.0,kg/TJ,2264312.232,Gas Oil combustion consumption by agriculture machines,AR-W,SESCO,annual,kg,62c53aae-8911-3d92-bae4-33755ebff699 -2019,Corrientes,II.5.1,30.55752,TJ,CH4,3.9,kg/TJ,119.174328,Gas Oil combustion consumption by agriculture machines,AR-W,SESCO,annual,kg,cd60f2e7-e016-3bc5-861c-eb8564c2fab6 -2019,Corrientes,II.5.1,30.55752,TJ,N2O,3.9,kg/TJ,119.174328,Gas Oil combustion consumption by agriculture machines,AR-W,SESCO,annual,kg,cd60f2e7-e016-3bc5-861c-eb8564c2fab6 -2019,Córdoba,II.5.1,485.34443999999996,TJ,CO2,74100.0,kg/TJ,35964023.004,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,af74961a-9edc-3def-b1b0-0a442be74361 -2019,Córdoba,II.5.1,485.34443999999996,TJ,CH4,3.9,kg/TJ,1892.8433159999997,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,f43fecf1-047f-30ac-a191-b77cc4396f30 -2019,Córdoba,II.5.1,485.34443999999996,TJ,N2O,3.9,kg/TJ,1892.8433159999997,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,f43fecf1-047f-30ac-a191-b77cc4396f30 -2019,Entre Rios,II.5.1,24.41712,TJ,CO2,74100.0,kg/TJ,1809308.592,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,9d5f5eed-9ba7-3321-91fa-d3d5fe178787 -2019,Entre Rios,II.5.1,24.41712,TJ,CH4,3.9,kg/TJ,95.226768,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,9cd29067-175d-37e0-b36b-56fb0d15f826 -2019,Entre Rios,II.5.1,24.41712,TJ,N2O,3.9,kg/TJ,95.226768,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,9cd29067-175d-37e0-b36b-56fb0d15f826 -2019,Mendoza,II.5.1,252.18983999999998,TJ,CO2,74100.0,kg/TJ,18687267.143999998,Gas Oil combustion consumption by agriculture machines,AR-M,SESCO,annual,kg,15557f54-c3d3-3dab-80ba-245678838744 -2019,Mendoza,II.5.1,252.18983999999998,TJ,CH4,3.9,kg/TJ,983.5403759999999,Gas Oil combustion consumption by agriculture machines,AR-M,SESCO,annual,kg,94c81c3d-87b0-30ca-8945-f7dc44641fd6 -2019,Mendoza,II.5.1,252.18983999999998,TJ,N2O,3.9,kg/TJ,983.5403759999999,Gas Oil combustion consumption by agriculture machines,AR-M,SESCO,annual,kg,94c81c3d-87b0-30ca-8945-f7dc44641fd6 -2019,Santa Fe,II.5.1,621.30012,TJ,CO2,74100.0,kg/TJ,46038338.892,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,0da67008-7bd6-3576-bfc2-6f40b6adf41e -2019,Santa Fe,II.5.1,621.30012,TJ,CH4,3.9,kg/TJ,2423.070468,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,fbcb9a5e-0d02-3756-a1c1-689923cb386a -2019,Santa Fe,II.5.1,621.30012,TJ,N2O,3.9,kg/TJ,2423.070468,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,fbcb9a5e-0d02-3756-a1c1-689923cb386a -2019,Santiago del Estero,II.5.1,42.00756,TJ,CO2,74100.0,kg/TJ,3112760.196,Gas Oil combustion consumption by agriculture machines,AR-G,SESCO,annual,kg,fd251cc3-8926-33f9-8fc6-c7676c04e9a1 -2019,Santiago del Estero,II.5.1,42.00756,TJ,CH4,3.9,kg/TJ,163.82948399999998,Gas Oil combustion consumption by agriculture machines,AR-G,SESCO,annual,kg,b7519c6b-d122-32c5-8abf-8a831a8a90f5 -2019,Santiago del Estero,II.5.1,42.00756,TJ,N2O,3.9,kg/TJ,163.82948399999998,Gas Oil combustion consumption by agriculture machines,AR-G,SESCO,annual,kg,b7519c6b-d122-32c5-8abf-8a831a8a90f5 -2019,Tucuman,II.5.1,26.62044,TJ,CO2,74100.0,kg/TJ,1972574.6039999998,Gas Oil combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,20d3c8bd-9a9c-31d6-9b28-1ae356b22990 -2019,Tucuman,II.5.1,26.62044,TJ,CH4,3.9,kg/TJ,103.81971599999999,Gas Oil combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,51e5326e-ca20-3e09-88e5-05b2ac2cd122 -2019,Tucuman,II.5.1,26.62044,TJ,N2O,3.9,kg/TJ,103.81971599999999,Gas Oil combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,51e5326e-ca20-3e09-88e5-05b2ac2cd122 -2019,Buenos Aires,II.5.1,17.80716,TJ,CO2,74100.0,kg/TJ,1319510.5559999999,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,9af981e4-54f7-3881-9c59-eb874c4e5927 -2019,Buenos Aires,II.5.1,17.80716,TJ,CH4,3.9,kg/TJ,69.447924,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,399560fd-e972-3d51-82c2-52dc9c4bf85a -2019,Buenos Aires,II.5.1,17.80716,TJ,N2O,3.9,kg/TJ,69.447924,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,399560fd-e972-3d51-82c2-52dc9c4bf85a -2019,Chaco,II.5.1,23.405759999999997,TJ,CO2,74100.0,kg/TJ,1734366.8159999999,Gas Oil combustion consumption by agriculture machines,AR-H,SESCO,annual,kg,a7df250e-1b1a-3e09-8e55-1c475a114cf7 -2019,Chaco,II.5.1,23.405759999999997,TJ,CH4,3.9,kg/TJ,91.28246399999999,Gas Oil combustion consumption by agriculture machines,AR-H,SESCO,annual,kg,27921d65-11fb-3c0a-9871-ba5b0cd4b587 -2019,Chaco,II.5.1,23.405759999999997,TJ,N2O,3.9,kg/TJ,91.28246399999999,Gas Oil combustion consumption by agriculture machines,AR-H,SESCO,annual,kg,27921d65-11fb-3c0a-9871-ba5b0cd4b587 -2019,Corrientes,II.5.1,11.26944,TJ,CO2,74100.0,kg/TJ,835065.504,Gas Oil combustion consumption by agriculture machines,AR-W,SESCO,annual,kg,3f2eebf7-42db-38e9-a676-fce8cf3ffe2e -2019,Corrientes,II.5.1,11.26944,TJ,CH4,3.9,kg/TJ,43.950815999999996,Gas Oil combustion consumption by agriculture machines,AR-W,SESCO,annual,kg,ffe5c9c6-6c0f-31f1-9df8-ca831424fed0 -2019,Corrientes,II.5.1,11.26944,TJ,N2O,3.9,kg/TJ,43.950815999999996,Gas Oil combustion consumption by agriculture machines,AR-W,SESCO,annual,kg,ffe5c9c6-6c0f-31f1-9df8-ca831424fed0 -2019,Córdoba,II.5.1,34.78356,TJ,CO2,74100.0,kg/TJ,2577461.796,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,f02c745c-591d-338b-b5c0-ceaae65c492a -2019,Córdoba,II.5.1,34.78356,TJ,CH4,3.9,kg/TJ,135.65588400000001,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,a0bb699e-dc34-35cb-9e28-907ef759d7bc -2019,Córdoba,II.5.1,34.78356,TJ,N2O,3.9,kg/TJ,135.65588400000001,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,a0bb699e-dc34-35cb-9e28-907ef759d7bc -2019,Mendoza,II.5.1,68.2668,TJ,CO2,74100.0,kg/TJ,5058569.88,Gas Oil combustion consumption by agriculture machines,AR-M,SESCO,annual,kg,eb4a2748-740c-3ea7-a9f4-ee01e0740338 -2019,Mendoza,II.5.1,68.2668,TJ,CH4,3.9,kg/TJ,266.24052,Gas Oil combustion consumption by agriculture machines,AR-M,SESCO,annual,kg,1e7d1a83-afa6-3372-a9de-e9394be318d6 -2019,Mendoza,II.5.1,68.2668,TJ,N2O,3.9,kg/TJ,266.24052,Gas Oil combustion consumption by agriculture machines,AR-M,SESCO,annual,kg,1e7d1a83-afa6-3372-a9de-e9394be318d6 -2019,Santa Fe,II.5.1,19.39644,TJ,CO2,74100.0,kg/TJ,1437276.204,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,4d5e2cf3-7df7-3878-bdac-8396c95ceca4 -2019,Santa Fe,II.5.1,19.39644,TJ,CH4,3.9,kg/TJ,75.64611599999999,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,cf33c530-a42c-3e8d-b672-cd00aa922598 -2019,Santa Fe,II.5.1,19.39644,TJ,N2O,3.9,kg/TJ,75.64611599999999,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,cf33c530-a42c-3e8d-b672-cd00aa922598 -2019,Santiago del Estero,II.5.1,3.68424,TJ,CO2,74100.0,kg/TJ,273002.184,Gas Oil combustion consumption by agriculture machines,AR-G,SESCO,annual,kg,a2d56b19-f66f-3a84-8d72-88833e0cba8e -2019,Santiago del Estero,II.5.1,3.68424,TJ,CH4,3.9,kg/TJ,14.368535999999999,Gas Oil combustion consumption by agriculture machines,AR-G,SESCO,annual,kg,dd1034fd-ce41-3f2e-b6b4-5b6b4e068756 -2019,Santiago del Estero,II.5.1,3.68424,TJ,N2O,3.9,kg/TJ,14.368535999999999,Gas Oil combustion consumption by agriculture machines,AR-G,SESCO,annual,kg,dd1034fd-ce41-3f2e-b6b4-5b6b4e068756 -2019,Tucuman,II.5.1,7.29624,TJ,CO2,74100.0,kg/TJ,540651.384,Gas Oil combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,01c9cb95-ce75-373c-bfec-961234a9e2ab -2019,Tucuman,II.5.1,7.29624,TJ,CH4,3.9,kg/TJ,28.455336,Gas Oil combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,572cd37f-688f-3a78-af4c-451bfa478492 -2019,Tucuman,II.5.1,7.29624,TJ,N2O,3.9,kg/TJ,28.455336,Gas Oil combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,572cd37f-688f-3a78-af4c-451bfa478492 -2019,Córdoba,II.5.1,1.43913,TJ,CO2,73300.0,kg/TJ,105488.229,Naphtha combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,54f15bac-14c4-34c9-93ca-ff024c0b49d6 -2019,Córdoba,II.5.1,1.43913,TJ,CH4,0.5,kg/TJ,0.719565,Naphtha combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,95be5110-0dee-3ac8-a4b7-582a8405ddbb -2019,Córdoba,II.5.1,1.43913,TJ,N2O,2.0,kg/TJ,2.87826,Naphtha combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,340758f1-52df-3eff-986e-f177c64f0a64 -2019,Santa Fe,II.5.1,5.55093,TJ,CO2,73300.0,kg/TJ,406883.169,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,71dce6b9-ee97-3be0-8d31-768d7d1ca700 -2019,Santa Fe,II.5.1,5.55093,TJ,CH4,0.5,kg/TJ,2.775465,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,f0050b3b-b4e3-312f-b6f2-1a5a16c66b9e -2019,Santa Fe,II.5.1,5.55093,TJ,N2O,2.0,kg/TJ,11.10186,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,6091253e-3d08-3e3d-94e3-2adb81958f36 -2019,Córdoba,II.5.1,1.02795,TJ,CO2,73300.0,kg/TJ,75348.735,Naphtha combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,544f6101-84e9-3042-b4d1-59fbc411b235 -2019,Córdoba,II.5.1,1.02795,TJ,CH4,0.5,kg/TJ,0.513975,Naphtha combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,972a07b6-9ddc-3ee6-bc47-8f091a3576fe -2019,Córdoba,II.5.1,1.02795,TJ,N2O,2.0,kg/TJ,2.0559,Naphtha combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,7d1aec23-da93-3045-922e-af8e30cee0cf -2019,Santa Fe,II.5.1,1.747515,TJ,CO2,73300.0,kg/TJ,128092.8495,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,59044f7c-5440-3930-a1d1-c5afeab92056 -2019,Santa Fe,II.5.1,1.747515,TJ,CH4,0.5,kg/TJ,0.8737575,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,859c0894-bd83-319a-a139-76f4051685ee -2019,Santa Fe,II.5.1,1.747515,TJ,N2O,2.0,kg/TJ,3.49503,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,c76803d3-95a1-3154-ac77-3a8f64502b7b -2019,Buenos Aires,II.2.1,88.74683999999999,TJ,CO2,74100.0,kg/TJ,6576140.844,Gas Oil combustion consumption by railway transport,AR-B,SESCO,annual,kg,fd9d39fe-ff44-310d-984a-448f2a6e1968 -2019,Buenos Aires,II.2.1,88.74683999999999,TJ,CH4,3.9,kg/TJ,346.11267599999996,Gas Oil combustion consumption by railway transport,AR-B,SESCO,annual,kg,141cea4b-1d9b-3c7d-8f82-43aa7b9f8fc7 -2019,Buenos Aires,II.2.1,88.74683999999999,TJ,N2O,3.9,kg/TJ,346.11267599999996,Gas Oil combustion consumption by railway transport,AR-B,SESCO,annual,kg,141cea4b-1d9b-3c7d-8f82-43aa7b9f8fc7 -2019,Capital Federal,II.2.1,1.8059999999999998,TJ,CO2,74100.0,kg/TJ,133824.59999999998,Gas Oil combustion consumption by railway transport,AR-C,SESCO,annual,kg,d4255f81-eff8-3945-b75c-4e1140b49e25 -2019,Capital Federal,II.2.1,1.8059999999999998,TJ,CH4,3.9,kg/TJ,7.043399999999999,Gas Oil combustion consumption by railway transport,AR-C,SESCO,annual,kg,fbd51103-0db8-36f0-a705-b3fe2d7cccdd -2019,Capital Federal,II.2.1,1.8059999999999998,TJ,N2O,3.9,kg/TJ,7.043399999999999,Gas Oil combustion consumption by railway transport,AR-C,SESCO,annual,kg,fbd51103-0db8-36f0-a705-b3fe2d7cccdd -2019,La Pampa,II.2.1,15.38712,TJ,CO2,74100.0,kg/TJ,1140185.592,Gas Oil combustion consumption by railway transport,AR-L,SESCO,annual,kg,a090c5bd-03f1-3210-a08e-310aeeef88f7 -2019,La Pampa,II.2.1,15.38712,TJ,CH4,3.9,kg/TJ,60.009767999999994,Gas Oil combustion consumption by railway transport,AR-L,SESCO,annual,kg,26745232-f591-317d-bea8-2cb2ce92808b -2019,La Pampa,II.2.1,15.38712,TJ,N2O,3.9,kg/TJ,60.009767999999994,Gas Oil combustion consumption by railway transport,AR-L,SESCO,annual,kg,26745232-f591-317d-bea8-2cb2ce92808b -2019,Santa Fe,II.2.1,56.60004,TJ,CO2,74100.0,kg/TJ,4194062.964,Gas Oil combustion consumption by railway transport,AR-S,SESCO,annual,kg,f4a29bd0-e787-3a85-8a21-7f96aff52e0a -2019,Santa Fe,II.2.1,56.60004,TJ,CH4,3.9,kg/TJ,220.74015599999998,Gas Oil combustion consumption by railway transport,AR-S,SESCO,annual,kg,07a77e91-5f0c-3678-a637-e932a82bf64e -2019,Santa Fe,II.2.1,56.60004,TJ,N2O,3.9,kg/TJ,220.74015599999998,Gas Oil combustion consumption by railway transport,AR-S,SESCO,annual,kg,07a77e91-5f0c-3678-a637-e932a82bf64e -2019,Santiago del Estero,II.2.1,12.930959999999999,TJ,CO2,74100.0,kg/TJ,958184.1359999999,Gas Oil combustion consumption by railway transport,AR-G,SESCO,annual,kg,554fcdac-aafb-39b4-bb13-dfe2d23fd2ca -2019,Santiago del Estero,II.2.1,12.930959999999999,TJ,CH4,3.9,kg/TJ,50.430744,Gas Oil combustion consumption by railway transport,AR-G,SESCO,annual,kg,0b2681d1-5312-35cc-910e-38fbbff3ae5b -2019,Santiago del Estero,II.2.1,12.930959999999999,TJ,N2O,3.9,kg/TJ,50.430744,Gas Oil combustion consumption by railway transport,AR-G,SESCO,annual,kg,0b2681d1-5312-35cc-910e-38fbbff3ae5b -2019,Tucuman,II.2.1,5.20128,TJ,CO2,74100.0,kg/TJ,385414.848,Gas Oil combustion consumption by railway transport,AR-T,SESCO,annual,kg,0e461d18-ca02-391f-8965-c4fde762c604 -2019,Tucuman,II.2.1,5.20128,TJ,CH4,3.9,kg/TJ,20.284992,Gas Oil combustion consumption by railway transport,AR-T,SESCO,annual,kg,524cff89-6643-3e31-90da-41d7357d63dc -2019,Tucuman,II.2.1,5.20128,TJ,N2O,3.9,kg/TJ,20.284992,Gas Oil combustion consumption by railway transport,AR-T,SESCO,annual,kg,524cff89-6643-3e31-90da-41d7357d63dc -2019,Buenos Aires,II.1.1,486.50028,TJ,CO2,74100.0,kg/TJ,36049670.747999996,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,4f0cb496-bd4d-3fc1-860a-04f97eb69bef -2019,Buenos Aires,II.1.1,486.50028,TJ,CH4,3.9,kg/TJ,1897.3510919999999,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,1d532d41-eb26-30ef-8190-74e58f47766a -2019,Buenos Aires,II.1.1,486.50028,TJ,N2O,3.9,kg/TJ,1897.3510919999999,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,1d532d41-eb26-30ef-8190-74e58f47766a -2019,Capital Federal,II.1.1,139.53155999999998,TJ,CO2,74100.0,kg/TJ,10339288.595999999,Gas Oil combustion consumption by freight transport,AR-C,SESCO,annual,kg,0ee63531-e023-3d10-bff0-bf0d2d7b4bab -2019,Capital Federal,II.1.1,139.53155999999998,TJ,CH4,3.9,kg/TJ,544.1730839999999,Gas Oil combustion consumption by freight transport,AR-C,SESCO,annual,kg,3fded31a-3a95-3850-a517-9dad38e0e9fb -2019,Capital Federal,II.1.1,139.53155999999998,TJ,N2O,3.9,kg/TJ,544.1730839999999,Gas Oil combustion consumption by freight transport,AR-C,SESCO,annual,kg,3fded31a-3a95-3850-a517-9dad38e0e9fb -2019,Catamarca,II.1.1,5.20128,TJ,CO2,74100.0,kg/TJ,385414.848,Gas Oil combustion consumption by freight transport,AR-K,SESCO,annual,kg,93101423-b2c2-3ee9-ab29-732d6e61454e -2019,Catamarca,II.1.1,5.20128,TJ,CH4,3.9,kg/TJ,20.284992,Gas Oil combustion consumption by freight transport,AR-K,SESCO,annual,kg,85f51ca5-7b8a-3741-b905-65298a184fb2 -2019,Catamarca,II.1.1,5.20128,TJ,N2O,3.9,kg/TJ,20.284992,Gas Oil combustion consumption by freight transport,AR-K,SESCO,annual,kg,85f51ca5-7b8a-3741-b905-65298a184fb2 -2019,Chaco,II.1.1,1.3364399999999999,TJ,CO2,74100.0,kg/TJ,99030.20399999998,Gas Oil combustion consumption by freight transport,AR-H,SESCO,annual,kg,660717cd-db4f-395d-bad4-65bd457b9a9b -2019,Chaco,II.1.1,1.3364399999999999,TJ,CH4,3.9,kg/TJ,5.212115999999999,Gas Oil combustion consumption by freight transport,AR-H,SESCO,annual,kg,7e4968b4-5e6c-3be1-88d1-1dae01c89c7f -2019,Chaco,II.1.1,1.3364399999999999,TJ,N2O,3.9,kg/TJ,5.212115999999999,Gas Oil combustion consumption by freight transport,AR-H,SESCO,annual,kg,7e4968b4-5e6c-3be1-88d1-1dae01c89c7f -2019,Chubut,II.1.1,4.80396,TJ,CO2,74100.0,kg/TJ,355973.436,Gas Oil combustion consumption by freight transport,AR-U,SESCO,annual,kg,99e8c5d3-f966-380f-9d61-df1bfbbdd452 -2019,Chubut,II.1.1,4.80396,TJ,CH4,3.9,kg/TJ,18.735444,Gas Oil combustion consumption by freight transport,AR-U,SESCO,annual,kg,01c655c7-3e48-358a-8aff-be40a13d0714 -2019,Chubut,II.1.1,4.80396,TJ,N2O,3.9,kg/TJ,18.735444,Gas Oil combustion consumption by freight transport,AR-U,SESCO,annual,kg,01c655c7-3e48-358a-8aff-be40a13d0714 -2019,Corrientes,II.1.1,26.186999999999998,TJ,CO2,74100.0,kg/TJ,1940456.6999999997,Gas Oil combustion consumption by freight transport,AR-W,SESCO,annual,kg,3edc3c5d-5a0a-36aa-b923-25c0b42eda55 -2019,Corrientes,II.1.1,26.186999999999998,TJ,CH4,3.9,kg/TJ,102.12929999999999,Gas Oil combustion consumption by freight transport,AR-W,SESCO,annual,kg,5c02f41e-ec04-3ecb-bd85-3260a1754c77 -2019,Corrientes,II.1.1,26.186999999999998,TJ,N2O,3.9,kg/TJ,102.12929999999999,Gas Oil combustion consumption by freight transport,AR-W,SESCO,annual,kg,5c02f41e-ec04-3ecb-bd85-3260a1754c77 -2019,Córdoba,II.1.1,69.92832,TJ,CO2,74100.0,kg/TJ,5181688.512,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,d8c3f13b-372b-3f31-b7b8-9d3256df80d1 -2019,Córdoba,II.1.1,69.92832,TJ,CH4,3.9,kg/TJ,272.720448,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,873fd6dc-15bc-39e7-a6a5-9074d29e6583 -2019,Córdoba,II.1.1,69.92832,TJ,N2O,3.9,kg/TJ,272.720448,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,873fd6dc-15bc-39e7-a6a5-9074d29e6583 -2019,Entre Rios,II.1.1,69.74772,TJ,CO2,74100.0,kg/TJ,5168306.052,Gas Oil combustion consumption by freight transport,AR-E,SESCO,annual,kg,ed87a591-51da-3248-a4b5-dfe18ba19847 -2019,Entre Rios,II.1.1,69.74772,TJ,CH4,3.9,kg/TJ,272.016108,Gas Oil combustion consumption by freight transport,AR-E,SESCO,annual,kg,53dd9466-1562-30a0-ab64-115cf8950dd7 -2019,Entre Rios,II.1.1,69.74772,TJ,N2O,3.9,kg/TJ,272.016108,Gas Oil combustion consumption by freight transport,AR-E,SESCO,annual,kg,53dd9466-1562-30a0-ab64-115cf8950dd7 -2019,Formosa,II.1.1,2.9257199999999997,TJ,CO2,74100.0,kg/TJ,216795.85199999998,Gas Oil combustion consumption by freight transport,AR-P,SESCO,annual,kg,ac416816-7feb-3829-8007-9996b051adce -2019,Formosa,II.1.1,2.9257199999999997,TJ,CH4,3.9,kg/TJ,11.410307999999999,Gas Oil combustion consumption by freight transport,AR-P,SESCO,annual,kg,402ee0b7-9888-389f-8571-4aff764ba2d3 -2019,Formosa,II.1.1,2.9257199999999997,TJ,N2O,3.9,kg/TJ,11.410307999999999,Gas Oil combustion consumption by freight transport,AR-P,SESCO,annual,kg,402ee0b7-9888-389f-8571-4aff764ba2d3 -2019,Jujuy,II.1.1,2.3478,TJ,CO2,74100.0,kg/TJ,173971.97999999998,Gas Oil combustion consumption by freight transport,AR-Y,SESCO,annual,kg,5e34b00e-a1c3-35c1-9df5-d8da0e3cc225 -2019,Jujuy,II.1.1,2.3478,TJ,CH4,3.9,kg/TJ,9.156419999999999,Gas Oil combustion consumption by freight transport,AR-Y,SESCO,annual,kg,eea20926-54fb-38d0-8702-3f6db1243868 -2019,Jujuy,II.1.1,2.3478,TJ,N2O,3.9,kg/TJ,9.156419999999999,Gas Oil combustion consumption by freight transport,AR-Y,SESCO,annual,kg,eea20926-54fb-38d0-8702-3f6db1243868 -2019,La Pampa,II.1.1,8.6688,TJ,CO2,74100.0,kg/TJ,642358.08,Gas Oil combustion consumption by freight transport,AR-L,SESCO,annual,kg,258c1bed-1fb7-334c-bab2-64a8be3d4bc5 -2019,La Pampa,II.1.1,8.6688,TJ,CH4,3.9,kg/TJ,33.808319999999995,Gas Oil combustion consumption by freight transport,AR-L,SESCO,annual,kg,1df12611-46cc-375a-82c9-e6d3e50ded24 -2019,La Pampa,II.1.1,8.6688,TJ,N2O,3.9,kg/TJ,33.808319999999995,Gas Oil combustion consumption by freight transport,AR-L,SESCO,annual,kg,1df12611-46cc-375a-82c9-e6d3e50ded24 -2019,La Rioja,II.1.1,1.19196,TJ,CO2,74100.0,kg/TJ,88324.23599999999,Gas Oil combustion consumption by freight transport,AR-F,SESCO,annual,kg,cb8fdcc9-028f-3d7c-b9b4-b962a6709e87 -2019,La Rioja,II.1.1,1.19196,TJ,CH4,3.9,kg/TJ,4.648643999999999,Gas Oil combustion consumption by freight transport,AR-F,SESCO,annual,kg,5b7df55e-0f3d-3e29-9b96-627bb0cd7b45 -2019,La Rioja,II.1.1,1.19196,TJ,N2O,3.9,kg/TJ,4.648643999999999,Gas Oil combustion consumption by freight transport,AR-F,SESCO,annual,kg,5b7df55e-0f3d-3e29-9b96-627bb0cd7b45 -2019,Mendoza,II.1.1,39.80424,TJ,CO2,74100.0,kg/TJ,2949494.184,Gas Oil combustion consumption by freight transport,AR-M,SESCO,annual,kg,a5e34493-1e62-393e-a0fb-8fdebb72509f -2019,Mendoza,II.1.1,39.80424,TJ,CH4,3.9,kg/TJ,155.236536,Gas Oil combustion consumption by freight transport,AR-M,SESCO,annual,kg,1b43f89d-0354-32b0-b20a-a26ed380aaaa -2019,Mendoza,II.1.1,39.80424,TJ,N2O,3.9,kg/TJ,155.236536,Gas Oil combustion consumption by freight transport,AR-M,SESCO,annual,kg,1b43f89d-0354-32b0-b20a-a26ed380aaaa -2019,Misiones,II.1.1,19.5048,TJ,CO2,74100.0,kg/TJ,1445305.68,Gas Oil combustion consumption by freight transport,AR-N,SESCO,annual,kg,dc007151-9e6e-3dbd-9aa3-1215ebdf825d -2019,Misiones,II.1.1,19.5048,TJ,CH4,3.9,kg/TJ,76.06872,Gas Oil combustion consumption by freight transport,AR-N,SESCO,annual,kg,cc568511-ccf7-3b31-b752-57e85d97d36c -2019,Misiones,II.1.1,19.5048,TJ,N2O,3.9,kg/TJ,76.06872,Gas Oil combustion consumption by freight transport,AR-N,SESCO,annual,kg,cc568511-ccf7-3b31-b752-57e85d97d36c -2019,Neuquén,II.1.1,0.36119999999999997,TJ,CO2,74100.0,kg/TJ,26764.92,Gas Oil combustion consumption by freight transport,AR-Q,SESCO,annual,kg,9418e70f-9f08-304c-90d1-c5d8c3a3d1e3 -2019,Neuquén,II.1.1,0.36119999999999997,TJ,CH4,3.9,kg/TJ,1.40868,Gas Oil combustion consumption by freight transport,AR-Q,SESCO,annual,kg,5ecbd7ed-40e8-37d2-8ea0-479066b19388 -2019,Neuquén,II.1.1,0.36119999999999997,TJ,N2O,3.9,kg/TJ,1.40868,Gas Oil combustion consumption by freight transport,AR-Q,SESCO,annual,kg,5ecbd7ed-40e8-37d2-8ea0-479066b19388 -2019,Rio Negro,II.1.1,31.352159999999998,TJ,CO2,74100.0,kg/TJ,2323195.056,Gas Oil combustion consumption by freight transport,AR-R,SESCO,annual,kg,7f5080c7-5e29-32f6-97d7-f7b3a1f8668d -2019,Rio Negro,II.1.1,31.352159999999998,TJ,CH4,3.9,kg/TJ,122.27342399999999,Gas Oil combustion consumption by freight transport,AR-R,SESCO,annual,kg,b4b704c7-c42a-363e-92ed-bc94393825af -2019,Rio Negro,II.1.1,31.352159999999998,TJ,N2O,3.9,kg/TJ,122.27342399999999,Gas Oil combustion consumption by freight transport,AR-R,SESCO,annual,kg,b4b704c7-c42a-363e-92ed-bc94393825af -2019,Salta,II.1.1,1.51704,TJ,CO2,74100.0,kg/TJ,112412.66399999999,Gas Oil combustion consumption by freight transport,AR-A,SESCO,annual,kg,96b3d739-824b-3005-8909-7dfa629b5aca -2019,Salta,II.1.1,1.51704,TJ,CH4,3.9,kg/TJ,5.916455999999999,Gas Oil combustion consumption by freight transport,AR-A,SESCO,annual,kg,2933e7af-cb5d-3206-bb56-c9b4f37a6a5b -2019,Salta,II.1.1,1.51704,TJ,N2O,3.9,kg/TJ,5.916455999999999,Gas Oil combustion consumption by freight transport,AR-A,SESCO,annual,kg,2933e7af-cb5d-3206-bb56-c9b4f37a6a5b -2019,San Juan,II.1.1,1.8059999999999998,TJ,CO2,74100.0,kg/TJ,133824.59999999998,Gas Oil combustion consumption by freight transport,AR-J,SESCO,annual,kg,b6807079-d607-337b-99c0-ad67cd28b32f -2019,San Juan,II.1.1,1.8059999999999998,TJ,CH4,3.9,kg/TJ,7.043399999999999,Gas Oil combustion consumption by freight transport,AR-J,SESCO,annual,kg,17e341de-8dbd-3f0e-b98e-a4fd408c019c -2019,San Juan,II.1.1,1.8059999999999998,TJ,N2O,3.9,kg/TJ,7.043399999999999,Gas Oil combustion consumption by freight transport,AR-J,SESCO,annual,kg,17e341de-8dbd-3f0e-b98e-a4fd408c019c -2019,San Luis,II.1.1,16.21788,TJ,CO2,74100.0,kg/TJ,1201744.908,Gas Oil combustion consumption by freight transport,AR-D,SESCO,annual,kg,4f111da6-a478-37ca-907f-9b019e8f932a -2019,San Luis,II.1.1,16.21788,TJ,CH4,3.9,kg/TJ,63.249732,Gas Oil combustion consumption by freight transport,AR-D,SESCO,annual,kg,b153934f-b54a-399a-80e2-60adb64c8006 -2019,San Luis,II.1.1,16.21788,TJ,N2O,3.9,kg/TJ,63.249732,Gas Oil combustion consumption by freight transport,AR-D,SESCO,annual,kg,b153934f-b54a-399a-80e2-60adb64c8006 -2019,Santa Fe,II.1.1,148.41708,TJ,CO2,74100.0,kg/TJ,10997705.628,Gas Oil combustion consumption by freight transport,AR-S,SESCO,annual,kg,65cf3685-a72b-3c22-97ce-1cf5e6d9c4c4 -2019,Santa Fe,II.1.1,148.41708,TJ,CH4,3.9,kg/TJ,578.826612,Gas Oil combustion consumption by freight transport,AR-S,SESCO,annual,kg,a53d8149-b0d9-3fa0-86b9-e0f620e8b05c -2019,Santa Fe,II.1.1,148.41708,TJ,N2O,3.9,kg/TJ,578.826612,Gas Oil combustion consumption by freight transport,AR-S,SESCO,annual,kg,a53d8149-b0d9-3fa0-86b9-e0f620e8b05c -2019,Santiago del Estero,II.1.1,20.9496,TJ,CO2,74100.0,kg/TJ,1552365.36,Gas Oil combustion consumption by freight transport,AR-G,SESCO,annual,kg,4cc544bb-fa28-38ef-887f-2e1b253a9b9f -2019,Santiago del Estero,II.1.1,20.9496,TJ,CH4,3.9,kg/TJ,81.70344,Gas Oil combustion consumption by freight transport,AR-G,SESCO,annual,kg,e792b28b-d6fc-3278-af91-890c858d88c0 -2019,Santiago del Estero,II.1.1,20.9496,TJ,N2O,3.9,kg/TJ,81.70344,Gas Oil combustion consumption by freight transport,AR-G,SESCO,annual,kg,e792b28b-d6fc-3278-af91-890c858d88c0 -2019,Tierra del Fuego,II.1.1,1.4447999999999999,TJ,CO2,74100.0,kg/TJ,107059.68,Gas Oil combustion consumption by freight transport,AR-V,SESCO,annual,kg,7ff9a212-f683-3bce-a94d-c32ac9541f9a -2019,Tierra del Fuego,II.1.1,1.4447999999999999,TJ,CH4,3.9,kg/TJ,5.63472,Gas Oil combustion consumption by freight transport,AR-V,SESCO,annual,kg,2f3dc52f-b104-3e89-9363-d1a6dccf06d7 -2019,Tierra del Fuego,II.1.1,1.4447999999999999,TJ,N2O,3.9,kg/TJ,5.63472,Gas Oil combustion consumption by freight transport,AR-V,SESCO,annual,kg,2f3dc52f-b104-3e89-9363-d1a6dccf06d7 -2019,Tucuman,II.1.1,11.48616,TJ,CO2,74100.0,kg/TJ,851124.456,Gas Oil combustion consumption by freight transport,AR-T,SESCO,annual,kg,5002a691-d2c7-3fe5-84b6-41d710e8f6b1 -2019,Tucuman,II.1.1,11.48616,TJ,CH4,3.9,kg/TJ,44.796023999999996,Gas Oil combustion consumption by freight transport,AR-T,SESCO,annual,kg,d4a75ff4-d78b-3c43-a1e8-69342031d994 -2019,Tucuman,II.1.1,11.48616,TJ,N2O,3.9,kg/TJ,44.796023999999996,Gas Oil combustion consumption by freight transport,AR-T,SESCO,annual,kg,d4a75ff4-d78b-3c43-a1e8-69342031d994 -2019,Buenos Aires,II.1.1,45.186119999999995,TJ,CO2,74100.0,kg/TJ,3348291.4919999996,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,b8a6eae1-0b3f-3fdc-980b-9d28b62beee4 -2019,Buenos Aires,II.1.1,45.186119999999995,TJ,CH4,3.9,kg/TJ,176.225868,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,35a3c4a0-b9a7-3408-87df-2e8b93e714be -2019,Buenos Aires,II.1.1,45.186119999999995,TJ,N2O,3.9,kg/TJ,176.225868,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,35a3c4a0-b9a7-3408-87df-2e8b93e714be -2019,Capital Federal,II.1.1,3.93708,TJ,CO2,74100.0,kg/TJ,291737.62799999997,Gas Oil combustion consumption by freight transport,AR-C,SESCO,annual,kg,1756d6ec-c2f6-3fa6-95be-ed37d37d69e5 -2019,Capital Federal,II.1.1,3.93708,TJ,CH4,3.9,kg/TJ,15.354612,Gas Oil combustion consumption by freight transport,AR-C,SESCO,annual,kg,71f99725-8fef-36f2-94be-70ad3f8d8e80 -2019,Capital Federal,II.1.1,3.93708,TJ,N2O,3.9,kg/TJ,15.354612,Gas Oil combustion consumption by freight transport,AR-C,SESCO,annual,kg,71f99725-8fef-36f2-94be-70ad3f8d8e80 -2019,Catamarca,II.1.1,0.46956,TJ,CO2,74100.0,kg/TJ,34794.396,Gas Oil combustion consumption by freight transport,AR-K,SESCO,annual,kg,addbd6f5-eaee-3654-b113-8290a3d9ea35 -2019,Catamarca,II.1.1,0.46956,TJ,CH4,3.9,kg/TJ,1.831284,Gas Oil combustion consumption by freight transport,AR-K,SESCO,annual,kg,ad29b53f-5abf-3bda-bd72-72399974dca9 -2019,Catamarca,II.1.1,0.46956,TJ,N2O,3.9,kg/TJ,1.831284,Gas Oil combustion consumption by freight transport,AR-K,SESCO,annual,kg,ad29b53f-5abf-3bda-bd72-72399974dca9 -2019,Chaco,II.1.1,0.14448,TJ,CO2,74100.0,kg/TJ,10705.967999999999,Gas Oil combustion consumption by freight transport,AR-H,SESCO,annual,kg,6fb60979-cd2a-348e-ae15-06bf3e3eb073 -2019,Chaco,II.1.1,0.14448,TJ,CH4,3.9,kg/TJ,0.563472,Gas Oil combustion consumption by freight transport,AR-H,SESCO,annual,kg,78f7e4a6-3411-3de1-b33c-81712c29e582 -2019,Chaco,II.1.1,0.14448,TJ,N2O,3.9,kg/TJ,0.563472,Gas Oil combustion consumption by freight transport,AR-H,SESCO,annual,kg,78f7e4a6-3411-3de1-b33c-81712c29e582 -2019,Chubut,II.1.1,6.17652,TJ,CO2,74100.0,kg/TJ,457680.132,Gas Oil combustion consumption by freight transport,AR-U,SESCO,annual,kg,c3ffd12d-1717-3782-92f2-c882fcce71f4 -2019,Chubut,II.1.1,6.17652,TJ,CH4,3.9,kg/TJ,24.088428,Gas Oil combustion consumption by freight transport,AR-U,SESCO,annual,kg,88297c8e-fde3-35ec-87f8-4bc15fd569d6 -2019,Chubut,II.1.1,6.17652,TJ,N2O,3.9,kg/TJ,24.088428,Gas Oil combustion consumption by freight transport,AR-U,SESCO,annual,kg,88297c8e-fde3-35ec-87f8-4bc15fd569d6 -2019,Corrientes,II.1.1,3.93708,TJ,CO2,74100.0,kg/TJ,291737.62799999997,Gas Oil combustion consumption by freight transport,AR-W,SESCO,annual,kg,47868173-63aa-3273-93c8-cc74a60ea152 -2019,Corrientes,II.1.1,3.93708,TJ,CH4,3.9,kg/TJ,15.354612,Gas Oil combustion consumption by freight transport,AR-W,SESCO,annual,kg,64c3f5ac-53c6-3eea-a1d2-368e581122f8 -2019,Corrientes,II.1.1,3.93708,TJ,N2O,3.9,kg/TJ,15.354612,Gas Oil combustion consumption by freight transport,AR-W,SESCO,annual,kg,64c3f5ac-53c6-3eea-a1d2-368e581122f8 -2019,Córdoba,II.1.1,5.70696,TJ,CO2,74100.0,kg/TJ,422885.736,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,1d77179a-27af-3006-b9c7-d84dbdec44b9 -2019,Córdoba,II.1.1,5.70696,TJ,CH4,3.9,kg/TJ,22.257143999999997,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,d4e7f21c-fbe6-301d-a0c4-43f0724c12e9 -2019,Córdoba,II.1.1,5.70696,TJ,N2O,3.9,kg/TJ,22.257143999999997,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,d4e7f21c-fbe6-301d-a0c4-43f0724c12e9 -2019,Entre Rios,II.1.1,2.81736,TJ,CO2,74100.0,kg/TJ,208766.376,Gas Oil combustion consumption by freight transport,AR-E,SESCO,annual,kg,619eeda8-6546-3897-97be-4f0a7163c88a -2019,Entre Rios,II.1.1,2.81736,TJ,CH4,3.9,kg/TJ,10.987703999999999,Gas Oil combustion consumption by freight transport,AR-E,SESCO,annual,kg,85a279bf-d30e-3d7c-9507-36b1359642a2 -2019,Entre Rios,II.1.1,2.81736,TJ,N2O,3.9,kg/TJ,10.987703999999999,Gas Oil combustion consumption by freight transport,AR-E,SESCO,annual,kg,85a279bf-d30e-3d7c-9507-36b1359642a2 -2019,Formosa,II.1.1,0.10836,TJ,CO2,74100.0,kg/TJ,8029.476,Gas Oil combustion consumption by freight transport,AR-P,SESCO,annual,kg,c840ef39-5db3-3991-abbd-12d53405e71c -2019,Formosa,II.1.1,0.10836,TJ,CH4,3.9,kg/TJ,0.422604,Gas Oil combustion consumption by freight transport,AR-P,SESCO,annual,kg,4bda966b-5207-3f6e-945c-fa4e606d4620 -2019,Formosa,II.1.1,0.10836,TJ,N2O,3.9,kg/TJ,0.422604,Gas Oil combustion consumption by freight transport,AR-P,SESCO,annual,kg,4bda966b-5207-3f6e-945c-fa4e606d4620 -2019,Jujuy,II.1.1,0.10836,TJ,CO2,74100.0,kg/TJ,8029.476,Gas Oil combustion consumption by freight transport,AR-Y,SESCO,annual,kg,2f2bef49-8cda-3d75-b58f-b70bb7287f1c -2019,Jujuy,II.1.1,0.10836,TJ,CH4,3.9,kg/TJ,0.422604,Gas Oil combustion consumption by freight transport,AR-Y,SESCO,annual,kg,425adcec-7882-367e-94d7-8815ba9d4ba0 -2019,Jujuy,II.1.1,0.10836,TJ,N2O,3.9,kg/TJ,0.422604,Gas Oil combustion consumption by freight transport,AR-Y,SESCO,annual,kg,425adcec-7882-367e-94d7-8815ba9d4ba0 -2019,La Pampa,II.1.1,0.36119999999999997,TJ,CO2,74100.0,kg/TJ,26764.92,Gas Oil combustion consumption by freight transport,AR-L,SESCO,annual,kg,10a4baa1-2ae6-3186-8249-8b500656a911 -2019,La Pampa,II.1.1,0.36119999999999997,TJ,CH4,3.9,kg/TJ,1.40868,Gas Oil combustion consumption by freight transport,AR-L,SESCO,annual,kg,bb3aba1c-7027-31ff-bd2e-d4a17dfc2d85 -2019,La Pampa,II.1.1,0.36119999999999997,TJ,N2O,3.9,kg/TJ,1.40868,Gas Oil combustion consumption by freight transport,AR-L,SESCO,annual,kg,bb3aba1c-7027-31ff-bd2e-d4a17dfc2d85 -2019,La Rioja,II.1.1,0.18059999999999998,TJ,CO2,74100.0,kg/TJ,13382.46,Gas Oil combustion consumption by freight transport,AR-F,SESCO,annual,kg,71f35628-d461-3d92-908a-4f18ec5c0bb1 -2019,La Rioja,II.1.1,0.18059999999999998,TJ,CH4,3.9,kg/TJ,0.70434,Gas Oil combustion consumption by freight transport,AR-F,SESCO,annual,kg,248d028d-918f-37d1-8a2c-6a763ef79988 -2019,La Rioja,II.1.1,0.18059999999999998,TJ,N2O,3.9,kg/TJ,0.70434,Gas Oil combustion consumption by freight transport,AR-F,SESCO,annual,kg,248d028d-918f-37d1-8a2c-6a763ef79988 -2019,Mendoza,II.1.1,1.04748,TJ,CO2,74100.0,kg/TJ,77618.268,Gas Oil combustion consumption by freight transport,AR-M,SESCO,annual,kg,b31b5b82-032e-3106-8b5c-3c85d7eca157 -2019,Mendoza,II.1.1,1.04748,TJ,CH4,3.9,kg/TJ,4.085172,Gas Oil combustion consumption by freight transport,AR-M,SESCO,annual,kg,34da326f-d95f-3dc9-a0fc-4bebc78e0825 -2019,Mendoza,II.1.1,1.04748,TJ,N2O,3.9,kg/TJ,4.085172,Gas Oil combustion consumption by freight transport,AR-M,SESCO,annual,kg,34da326f-d95f-3dc9-a0fc-4bebc78e0825 -2019,Misiones,II.1.1,2.31168,TJ,CO2,74100.0,kg/TJ,171295.48799999998,Gas Oil combustion consumption by freight transport,AR-N,SESCO,annual,kg,d82142b9-bca7-3aa6-924f-e5165cc57818 -2019,Misiones,II.1.1,2.31168,TJ,CH4,3.9,kg/TJ,9.015552,Gas Oil combustion consumption by freight transport,AR-N,SESCO,annual,kg,e95e6794-bbd1-3530-9042-ddffa5469623 -2019,Misiones,II.1.1,2.31168,TJ,N2O,3.9,kg/TJ,9.015552,Gas Oil combustion consumption by freight transport,AR-N,SESCO,annual,kg,e95e6794-bbd1-3530-9042-ddffa5469623 -2019,Rio Negro,II.1.1,3.8648399999999996,TJ,CO2,74100.0,kg/TJ,286384.644,Gas Oil combustion consumption by freight transport,AR-R,SESCO,annual,kg,0bc3559b-e764-39d9-b2d1-ad3a49e99400 -2019,Rio Negro,II.1.1,3.8648399999999996,TJ,CH4,3.9,kg/TJ,15.072875999999997,Gas Oil combustion consumption by freight transport,AR-R,SESCO,annual,kg,15d3fcbd-47c8-3070-9571-56c78c870004 -2019,Rio Negro,II.1.1,3.8648399999999996,TJ,N2O,3.9,kg/TJ,15.072875999999997,Gas Oil combustion consumption by freight transport,AR-R,SESCO,annual,kg,15d3fcbd-47c8-3070-9571-56c78c870004 -2019,Salta,II.1.1,0.10836,TJ,CO2,74100.0,kg/TJ,8029.476,Gas Oil combustion consumption by freight transport,AR-A,SESCO,annual,kg,81d68113-d191-36d2-959d-8c44c6334729 -2019,Salta,II.1.1,0.10836,TJ,CH4,3.9,kg/TJ,0.422604,Gas Oil combustion consumption by freight transport,AR-A,SESCO,annual,kg,53f60864-b496-3d8b-93da-a1aa1518f340 -2019,Salta,II.1.1,0.10836,TJ,N2O,3.9,kg/TJ,0.422604,Gas Oil combustion consumption by freight transport,AR-A,SESCO,annual,kg,53f60864-b496-3d8b-93da-a1aa1518f340 -2019,San Juan,II.1.1,0.03612,TJ,CO2,74100.0,kg/TJ,2676.4919999999997,Gas Oil combustion consumption by freight transport,AR-J,SESCO,annual,kg,f1c36709-d37a-3179-ace9-0637f6c05a1f -2019,San Juan,II.1.1,0.03612,TJ,CH4,3.9,kg/TJ,0.140868,Gas Oil combustion consumption by freight transport,AR-J,SESCO,annual,kg,5e76d161-edcd-3406-a470-b0dd11894374 -2019,San Juan,II.1.1,0.03612,TJ,N2O,3.9,kg/TJ,0.140868,Gas Oil combustion consumption by freight transport,AR-J,SESCO,annual,kg,5e76d161-edcd-3406-a470-b0dd11894374 -2019,San Luis,II.1.1,1.95048,TJ,CO2,74100.0,kg/TJ,144530.568,Gas Oil combustion consumption by freight transport,AR-D,SESCO,annual,kg,47c71ad6-d02b-30ff-9eaf-130fb711b834 -2019,San Luis,II.1.1,1.95048,TJ,CH4,3.9,kg/TJ,7.606872,Gas Oil combustion consumption by freight transport,AR-D,SESCO,annual,kg,40f15b42-fe93-3916-bc7e-4e44bcbda89d -2019,San Luis,II.1.1,1.95048,TJ,N2O,3.9,kg/TJ,7.606872,Gas Oil combustion consumption by freight transport,AR-D,SESCO,annual,kg,40f15b42-fe93-3916-bc7e-4e44bcbda89d -2019,Santa Fe,II.1.1,12.17244,TJ,CO2,74100.0,kg/TJ,901977.804,Gas Oil combustion consumption by freight transport,AR-S,SESCO,annual,kg,dc9594a5-526e-38da-bdb6-bb4c60f83c41 -2019,Santa Fe,II.1.1,12.17244,TJ,CH4,3.9,kg/TJ,47.472516,Gas Oil combustion consumption by freight transport,AR-S,SESCO,annual,kg,2d54d9e4-1136-3df1-829a-2a68a8f96472 -2019,Santa Fe,II.1.1,12.17244,TJ,N2O,3.9,kg/TJ,47.472516,Gas Oil combustion consumption by freight transport,AR-S,SESCO,annual,kg,2d54d9e4-1136-3df1-829a-2a68a8f96472 -2019,Santiago del Estero,II.1.1,2.99796,TJ,CO2,74100.0,kg/TJ,222148.836,Gas Oil combustion consumption by freight transport,AR-G,SESCO,annual,kg,3296a585-761b-3ec3-81db-fcb718acba68 -2019,Santiago del Estero,II.1.1,2.99796,TJ,CH4,3.9,kg/TJ,11.692044,Gas Oil combustion consumption by freight transport,AR-G,SESCO,annual,kg,9023e776-b97f-391e-84be-c102e36558fa -2019,Santiago del Estero,II.1.1,2.99796,TJ,N2O,3.9,kg/TJ,11.692044,Gas Oil combustion consumption by freight transport,AR-G,SESCO,annual,kg,9023e776-b97f-391e-84be-c102e36558fa -2019,Tierra del Fuego,II.1.1,0.18059999999999998,TJ,CO2,74100.0,kg/TJ,13382.46,Gas Oil combustion consumption by freight transport,AR-V,SESCO,annual,kg,ddce9e07-bd60-3e3b-bc29-ceb67f95b8ab -2019,Tierra del Fuego,II.1.1,0.18059999999999998,TJ,CH4,3.9,kg/TJ,0.70434,Gas Oil combustion consumption by freight transport,AR-V,SESCO,annual,kg,7c744107-015a-3ba4-ad46-e0d215c085a3 -2019,Tierra del Fuego,II.1.1,0.18059999999999998,TJ,N2O,3.9,kg/TJ,0.70434,Gas Oil combustion consumption by freight transport,AR-V,SESCO,annual,kg,7c744107-015a-3ba4-ad46-e0d215c085a3 -2019,Tucuman,II.1.1,1.9143599999999998,TJ,CO2,74100.0,kg/TJ,141854.076,Gas Oil combustion consumption by freight transport,AR-T,SESCO,annual,kg,d7e99494-d5cf-3c7d-a8a2-d8df26c05292 -2019,Tucuman,II.1.1,1.9143599999999998,TJ,CH4,3.9,kg/TJ,7.466003999999999,Gas Oil combustion consumption by freight transport,AR-T,SESCO,annual,kg,e6a77a5f-e933-3f9f-9172-48e496ffa776 -2019,Tucuman,II.1.1,1.9143599999999998,TJ,N2O,3.9,kg/TJ,7.466003999999999,Gas Oil combustion consumption by freight transport,AR-T,SESCO,annual,kg,e6a77a5f-e933-3f9f-9172-48e496ffa776 -2019,Buenos Aires,II.1.1,3.22091,TJ,CO2,73300.0,kg/TJ,236092.703,Naphtha combustion consumption by freight transport,AR-B,SESCO,annual,kg,3453b6ad-8ef0-369c-ac06-a9278619649e -2019,Buenos Aires,II.1.1,3.22091,TJ,CH4,0.5,kg/TJ,1.610455,Naphtha combustion consumption by freight transport,AR-B,SESCO,annual,kg,23d524e6-daec-3cc8-bb0b-c96372e736bc -2019,Buenos Aires,II.1.1,3.22091,TJ,N2O,2.0,kg/TJ,6.44182,Naphtha combustion consumption by freight transport,AR-B,SESCO,annual,kg,8589a248-d51a-3366-a265-9599ba0bda0f -2019,Capital Federal,II.1.1,1.541925,TJ,CO2,73300.0,kg/TJ,113023.1025,Naphtha combustion consumption by freight transport,AR-C,SESCO,annual,kg,6dd071af-6e89-30f9-bcbc-e16f4a311841 -2019,Capital Federal,II.1.1,1.541925,TJ,CH4,0.5,kg/TJ,0.7709625,Naphtha combustion consumption by freight transport,AR-C,SESCO,annual,kg,d2565cd2-27c7-3129-b265-5f508f3825e7 -2019,Capital Federal,II.1.1,1.541925,TJ,N2O,2.0,kg/TJ,3.08385,Naphtha combustion consumption by freight transport,AR-C,SESCO,annual,kg,e7c1e1ee-0886-3ba4-96ea-0f32b08e2791 -2019,Córdoba,II.1.1,0.856625,TJ,CO2,73300.0,kg/TJ,62790.612499999996,Naphtha combustion consumption by freight transport,AR-X,SESCO,annual,kg,828a2563-8959-3e09-ba1d-948afb517c21 -2019,Córdoba,II.1.1,0.856625,TJ,CH4,0.5,kg/TJ,0.4283125,Naphtha combustion consumption by freight transport,AR-X,SESCO,annual,kg,d4c22f1c-cbf7-37f5-ba2e-881564487fd6 -2019,Córdoba,II.1.1,0.856625,TJ,N2O,2.0,kg/TJ,1.71325,Naphtha combustion consumption by freight transport,AR-X,SESCO,annual,kg,6210c9ff-c5bb-36fa-9456-4a9ea6cb0bbe -2019,Mendoza,II.1.1,0.06853,TJ,CO2,73300.0,kg/TJ,5023.249,Naphtha combustion consumption by freight transport,AR-M,SESCO,annual,kg,41e22b36-d0d0-3336-94c4-4a2dbd2a656c -2019,Mendoza,II.1.1,0.06853,TJ,CH4,0.5,kg/TJ,0.034265,Naphtha combustion consumption by freight transport,AR-M,SESCO,annual,kg,1e2548ac-e083-3f70-aa7b-95a87a2b68b3 -2019,Mendoza,II.1.1,0.06853,TJ,N2O,2.0,kg/TJ,0.13706,Naphtha combustion consumption by freight transport,AR-M,SESCO,annual,kg,2358b914-a40a-3a25-9105-14c6c3ea7a61 -2019,Salta,II.1.1,0.102795,TJ,CO2,73300.0,kg/TJ,7534.8735,Naphtha combustion consumption by freight transport,AR-A,SESCO,annual,kg,5c9c75f2-9cf6-3974-880f-8a135f17a5f4 -2019,Salta,II.1.1,0.102795,TJ,CH4,0.5,kg/TJ,0.0513975,Naphtha combustion consumption by freight transport,AR-A,SESCO,annual,kg,2d9e6063-a4aa-313d-a0ce-4c60ada87d4c -2019,Salta,II.1.1,0.102795,TJ,N2O,2.0,kg/TJ,0.20559,Naphtha combustion consumption by freight transport,AR-A,SESCO,annual,kg,44830451-0316-3d40-8c28-2b81f6b08126 -2019,Santa Fe,II.1.1,0.47970999999999997,TJ,CO2,73300.0,kg/TJ,35162.742999999995,Naphtha combustion consumption by freight transport,AR-S,SESCO,annual,kg,56b2d73f-9074-3017-ba7b-5904a1ddd841 -2019,Santa Fe,II.1.1,0.47970999999999997,TJ,CH4,0.5,kg/TJ,0.23985499999999998,Naphtha combustion consumption by freight transport,AR-S,SESCO,annual,kg,968ada00-8ee8-3b20-8916-b4ae557b6fd5 -2019,Santa Fe,II.1.1,0.47970999999999997,TJ,N2O,2.0,kg/TJ,0.9594199999999999,Naphtha combustion consumption by freight transport,AR-S,SESCO,annual,kg,b47632ce-8fd0-33a7-b46c-a690a9e1b428 -2019,Tucuman,II.1.1,0.034265,TJ,CO2,73300.0,kg/TJ,2511.6245,Naphtha combustion consumption by freight transport,AR-T,SESCO,annual,kg,aa47e9c5-aeb6-3713-8128-f4567e46f713 -2019,Tucuman,II.1.1,0.034265,TJ,CH4,0.5,kg/TJ,0.0171325,Naphtha combustion consumption by freight transport,AR-T,SESCO,annual,kg,952cf90c-cbf6-3b7c-a7b9-59c13a021d76 -2019,Tucuman,II.1.1,0.034265,TJ,N2O,2.0,kg/TJ,0.06853,Naphtha combustion consumption by freight transport,AR-T,SESCO,annual,kg,61773a73-9114-3659-8744-d1c7631ea328 -2019,Buenos Aires,II.1.1,1.9531049999999999,TJ,CO2,73300.0,kg/TJ,143162.59649999999,Naphtha combustion consumption by freight transport,AR-B,SESCO,annual,kg,50808206-0d49-322e-a2e5-cb0bb770f0a0 -2019,Buenos Aires,II.1.1,1.9531049999999999,TJ,CH4,0.5,kg/TJ,0.9765524999999999,Naphtha combustion consumption by freight transport,AR-B,SESCO,annual,kg,ba899226-b4d7-3895-a388-54a631b191d5 -2019,Buenos Aires,II.1.1,1.9531049999999999,TJ,N2O,2.0,kg/TJ,3.9062099999999997,Naphtha combustion consumption by freight transport,AR-B,SESCO,annual,kg,3dcf4c74-b17d-3ea3-a286-7b21b5f1f4fa -2019,Capital Federal,II.1.1,0.856625,TJ,CO2,73300.0,kg/TJ,62790.612499999996,Naphtha combustion consumption by freight transport,AR-C,SESCO,annual,kg,1c99cd85-9551-393e-bfaf-b077025924d5 -2019,Capital Federal,II.1.1,0.856625,TJ,CH4,0.5,kg/TJ,0.4283125,Naphtha combustion consumption by freight transport,AR-C,SESCO,annual,kg,b85340b2-8130-3b92-8a31-62de662507fa -2019,Capital Federal,II.1.1,0.856625,TJ,N2O,2.0,kg/TJ,1.71325,Naphtha combustion consumption by freight transport,AR-C,SESCO,annual,kg,ba44139a-20bc-3621-825a-3f0cb1b77662 -2019,Corrientes,II.1.1,0.102795,TJ,CO2,73300.0,kg/TJ,7534.8735,Naphtha combustion consumption by freight transport,AR-W,SESCO,annual,kg,1d9e9d72-a9f1-33f1-8a47-d105e4531642 -2019,Corrientes,II.1.1,0.102795,TJ,CH4,0.5,kg/TJ,0.0513975,Naphtha combustion consumption by freight transport,AR-W,SESCO,annual,kg,e007ecbe-9759-3fd2-9cd9-5dd1b4429ae5 -2019,Corrientes,II.1.1,0.102795,TJ,N2O,2.0,kg/TJ,0.20559,Naphtha combustion consumption by freight transport,AR-W,SESCO,annual,kg,ba821611-3de7-36ba-96dc-80f764033ffc -2019,Córdoba,II.1.1,0.54824,TJ,CO2,73300.0,kg/TJ,40185.992,Naphtha combustion consumption by freight transport,AR-X,SESCO,annual,kg,737a82bc-e1f5-3632-923a-17e68eae955a -2019,Córdoba,II.1.1,0.54824,TJ,CH4,0.5,kg/TJ,0.27412,Naphtha combustion consumption by freight transport,AR-X,SESCO,annual,kg,7e6218bb-cc26-3e20-845d-b3f69f0b1aa4 -2019,Córdoba,II.1.1,0.54824,TJ,N2O,2.0,kg/TJ,1.09648,Naphtha combustion consumption by freight transport,AR-X,SESCO,annual,kg,3ae9115a-4b5e-35cc-b5a7-2d9561ee755d -2019,Entre Rios,II.1.1,0.13706,TJ,CO2,73300.0,kg/TJ,10046.498,Naphtha combustion consumption by freight transport,AR-E,SESCO,annual,kg,07696b8b-8b98-3bf0-a113-4f5a15324e13 -2019,Entre Rios,II.1.1,0.13706,TJ,CH4,0.5,kg/TJ,0.06853,Naphtha combustion consumption by freight transport,AR-E,SESCO,annual,kg,1dc0ab39-cd89-38e1-84d2-deaf7ec9461c -2019,Entre Rios,II.1.1,0.13706,TJ,N2O,2.0,kg/TJ,0.27412,Naphtha combustion consumption by freight transport,AR-E,SESCO,annual,kg,41e57c32-5543-3049-847a-9ee183c0e391 -2019,Santa Fe,II.1.1,0.513975,TJ,CO2,73300.0,kg/TJ,37674.3675,Naphtha combustion consumption by freight transport,AR-S,SESCO,annual,kg,ae571cb5-b342-3439-81b6-36fb5306e68b -2019,Santa Fe,II.1.1,0.513975,TJ,CH4,0.5,kg/TJ,0.2569875,Naphtha combustion consumption by freight transport,AR-S,SESCO,annual,kg,861e1036-0220-38f2-839d-f217852c3c15 -2019,Santa Fe,II.1.1,0.513975,TJ,N2O,2.0,kg/TJ,1.02795,Naphtha combustion consumption by freight transport,AR-S,SESCO,annual,kg,eddcb05e-35c8-3912-b392-7931e21cf9f6 -2019,Santiago del Estero,II.1.1,0.034265,TJ,CO2,73300.0,kg/TJ,2511.6245,Naphtha combustion consumption by freight transport,AR-G,SESCO,annual,kg,d14513d4-d09c-3859-beae-1ea19a611e3d -2019,Santiago del Estero,II.1.1,0.034265,TJ,CH4,0.5,kg/TJ,0.0171325,Naphtha combustion consumption by freight transport,AR-G,SESCO,annual,kg,a6393a37-1179-37f4-bc8f-75e9744032b8 -2019,Santiago del Estero,II.1.1,0.034265,TJ,N2O,2.0,kg/TJ,0.06853,Naphtha combustion consumption by freight transport,AR-G,SESCO,annual,kg,04bf7b7d-e407-3121-b429-d4ca02c2ed60 -2019,Buenos Aires,II.1.1,556.7175599999999,TJ,CO2,74100.0,kg/TJ,41252771.195999995,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,a113c7cf-216e-3ebb-bed4-3a67af851575 -2019,Buenos Aires,II.1.1,556.7175599999999,TJ,CH4,3.9,kg/TJ,2171.1984839999996,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,8a713286-bf18-3b93-9982-dbb596905f3c -2019,Buenos Aires,II.1.1,556.7175599999999,TJ,N2O,3.9,kg/TJ,2171.1984839999996,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,8a713286-bf18-3b93-9982-dbb596905f3c -2019,Capital Federal,II.1.1,312.438,TJ,CO2,74100.0,kg/TJ,23151655.8,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,cc3baa2c-7b2a-3ff8-a029-8d2bb77e0b30 -2019,Capital Federal,II.1.1,312.438,TJ,CH4,3.9,kg/TJ,1218.5082,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,1b747833-8a0b-3bc1-9bc5-c9e037cca7e0 -2019,Capital Federal,II.1.1,312.438,TJ,N2O,3.9,kg/TJ,1218.5082,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,1b747833-8a0b-3bc1-9bc5-c9e037cca7e0 -2019,Chaco,II.1.1,5.38188,TJ,CO2,74100.0,kg/TJ,398797.30799999996,Gas Oil combustion consumption by public passenger transport,AR-H,SESCO,annual,kg,d8de63ec-e525-3cb5-a057-37eb8a8a9f52 -2019,Chaco,II.1.1,5.38188,TJ,CH4,3.9,kg/TJ,20.989331999999997,Gas Oil combustion consumption by public passenger transport,AR-H,SESCO,annual,kg,422017bb-b8ee-3317-8dc2-0408da8fa9bf -2019,Chaco,II.1.1,5.38188,TJ,N2O,3.9,kg/TJ,20.989331999999997,Gas Oil combustion consumption by public passenger transport,AR-H,SESCO,annual,kg,422017bb-b8ee-3317-8dc2-0408da8fa9bf -2019,Chubut,II.1.1,1.73376,TJ,CO2,74100.0,kg/TJ,128471.616,Gas Oil combustion consumption by public passenger transport,AR-U,SESCO,annual,kg,cce28f0b-fa95-32c0-951a-aaaebe09d055 -2019,Chubut,II.1.1,1.73376,TJ,CH4,3.9,kg/TJ,6.761664,Gas Oil combustion consumption by public passenger transport,AR-U,SESCO,annual,kg,47170c8c-e0cf-3924-8e01-d383bdfee478 -2019,Chubut,II.1.1,1.73376,TJ,N2O,3.9,kg/TJ,6.761664,Gas Oil combustion consumption by public passenger transport,AR-U,SESCO,annual,kg,47170c8c-e0cf-3924-8e01-d383bdfee478 -2019,Corrientes,II.1.1,0.03612,TJ,CO2,74100.0,kg/TJ,2676.4919999999997,Gas Oil combustion consumption by public passenger transport,AR-W,SESCO,annual,kg,c5e118e1-115a-3af4-b7e8-aeef6af1e466 -2019,Corrientes,II.1.1,0.03612,TJ,CH4,3.9,kg/TJ,0.140868,Gas Oil combustion consumption by public passenger transport,AR-W,SESCO,annual,kg,fe070851-74ff-31b5-8b70-6122da117dd5 -2019,Corrientes,II.1.1,0.03612,TJ,N2O,3.9,kg/TJ,0.140868,Gas Oil combustion consumption by public passenger transport,AR-W,SESCO,annual,kg,fe070851-74ff-31b5-8b70-6122da117dd5 -2019,Córdoba,II.1.1,113.12783999999999,TJ,CO2,74100.0,kg/TJ,8382772.943999999,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,381ff276-b308-3593-8d29-b80bf408bff7 -2019,Córdoba,II.1.1,113.12783999999999,TJ,CH4,3.9,kg/TJ,441.19857599999995,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,90a4341d-f36e-39df-b8fe-c51a984feb89 -2019,Córdoba,II.1.1,113.12783999999999,TJ,N2O,3.9,kg/TJ,441.19857599999995,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,90a4341d-f36e-39df-b8fe-c51a984feb89 -2019,Entre Rios,II.1.1,2.38392,TJ,CO2,74100.0,kg/TJ,176648.47199999998,Gas Oil combustion consumption by public passenger transport,AR-E,SESCO,annual,kg,8b984235-40e1-3fdc-9791-024fcf713754 -2019,Entre Rios,II.1.1,2.38392,TJ,CH4,3.9,kg/TJ,9.297287999999998,Gas Oil combustion consumption by public passenger transport,AR-E,SESCO,annual,kg,11d5e27e-6d47-36a9-9d7a-dcd73fd69846 -2019,Entre Rios,II.1.1,2.38392,TJ,N2O,3.9,kg/TJ,9.297287999999998,Gas Oil combustion consumption by public passenger transport,AR-E,SESCO,annual,kg,11d5e27e-6d47-36a9-9d7a-dcd73fd69846 -2019,Formosa,II.1.1,10.14972,TJ,CO2,74100.0,kg/TJ,752094.252,Gas Oil combustion consumption by public passenger transport,AR-P,SESCO,annual,kg,dd5ae63e-ecb1-318c-a7e3-0d4656cdae44 -2019,Formosa,II.1.1,10.14972,TJ,CH4,3.9,kg/TJ,39.583908,Gas Oil combustion consumption by public passenger transport,AR-P,SESCO,annual,kg,2f5578c5-aef3-3b9c-8b25-1594e15d3e67 -2019,Formosa,II.1.1,10.14972,TJ,N2O,3.9,kg/TJ,39.583908,Gas Oil combustion consumption by public passenger transport,AR-P,SESCO,annual,kg,2f5578c5-aef3-3b9c-8b25-1594e15d3e67 -2019,La Pampa,II.1.1,2.96184,TJ,CO2,74100.0,kg/TJ,219472.344,Gas Oil combustion consumption by public passenger transport,AR-L,SESCO,annual,kg,387b3ce5-66fa-311e-aaeb-27732bca7325 -2019,La Pampa,II.1.1,2.96184,TJ,CH4,3.9,kg/TJ,11.551176,Gas Oil combustion consumption by public passenger transport,AR-L,SESCO,annual,kg,eb450481-2acf-3400-bf8a-6f005fdf170c -2019,La Pampa,II.1.1,2.96184,TJ,N2O,3.9,kg/TJ,11.551176,Gas Oil combustion consumption by public passenger transport,AR-L,SESCO,annual,kg,eb450481-2acf-3400-bf8a-6f005fdf170c -2019,Misiones,II.1.1,81.34223999999999,TJ,CO2,74100.0,kg/TJ,6027459.983999999,Gas Oil combustion consumption by public passenger transport,AR-N,SESCO,annual,kg,aea61f90-f9f7-3d24-b18a-f9f9a5847084 -2019,Misiones,II.1.1,81.34223999999999,TJ,CH4,3.9,kg/TJ,317.23473599999994,Gas Oil combustion consumption by public passenger transport,AR-N,SESCO,annual,kg,4c81aaf8-f419-3ddf-a569-e7efde6cead3 -2019,Misiones,II.1.1,81.34223999999999,TJ,N2O,3.9,kg/TJ,317.23473599999994,Gas Oil combustion consumption by public passenger transport,AR-N,SESCO,annual,kg,4c81aaf8-f419-3ddf-a569-e7efde6cead3 -2019,Neuquén,II.1.1,1.9866,TJ,CO2,74100.0,kg/TJ,147207.06,Gas Oil combustion consumption by public passenger transport,AR-Q,SESCO,annual,kg,23b48000-cd0a-30e1-bc7d-791264845570 -2019,Neuquén,II.1.1,1.9866,TJ,CH4,3.9,kg/TJ,7.747739999999999,Gas Oil combustion consumption by public passenger transport,AR-Q,SESCO,annual,kg,606b00d2-942d-3bc3-b498-139051d08b85 -2019,Neuquén,II.1.1,1.9866,TJ,N2O,3.9,kg/TJ,7.747739999999999,Gas Oil combustion consumption by public passenger transport,AR-Q,SESCO,annual,kg,606b00d2-942d-3bc3-b498-139051d08b85 -2019,Rio Negro,II.1.1,14.33964,TJ,CO2,74100.0,kg/TJ,1062567.324,Gas Oil combustion consumption by public passenger transport,AR-R,SESCO,annual,kg,3e6c58a8-f731-3f7a-9c87-570a1cce786e -2019,Rio Negro,II.1.1,14.33964,TJ,CH4,3.9,kg/TJ,55.924595999999994,Gas Oil combustion consumption by public passenger transport,AR-R,SESCO,annual,kg,84309e2a-671a-3176-bce5-44336fe83ee6 -2019,Rio Negro,II.1.1,14.33964,TJ,N2O,3.9,kg/TJ,55.924595999999994,Gas Oil combustion consumption by public passenger transport,AR-R,SESCO,annual,kg,84309e2a-671a-3176-bce5-44336fe83ee6 -2019,Santa Fe,II.1.1,114.82548,TJ,CO2,74100.0,kg/TJ,8508568.068,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,b50c9312-6cbf-3cc8-afc9-8f4c86f6e93c -2019,Santa Fe,II.1.1,114.82548,TJ,CH4,3.9,kg/TJ,447.819372,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,5fae92dc-d7fd-344e-b293-bfa80ada0ec6 -2019,Santa Fe,II.1.1,114.82548,TJ,N2O,3.9,kg/TJ,447.819372,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,5fae92dc-d7fd-344e-b293-bfa80ada0ec6 -2019,Santiago del Estero,II.1.1,0.28896,TJ,CO2,74100.0,kg/TJ,21411.935999999998,Gas Oil combustion consumption by public passenger transport,AR-G,SESCO,annual,kg,d27255e8-11e8-3cee-9b53-d94f61510b66 -2019,Santiago del Estero,II.1.1,0.28896,TJ,CH4,3.9,kg/TJ,1.126944,Gas Oil combustion consumption by public passenger transport,AR-G,SESCO,annual,kg,e1b3d369-0de6-3861-89b1-d4345d02e101 -2019,Santiago del Estero,II.1.1,0.28896,TJ,N2O,3.9,kg/TJ,1.126944,Gas Oil combustion consumption by public passenger transport,AR-G,SESCO,annual,kg,e1b3d369-0de6-3861-89b1-d4345d02e101 -2019,Tucuman,II.1.1,106.62624,TJ,CO2,74100.0,kg/TJ,7901004.384,Gas Oil combustion consumption by public passenger transport,AR-T,SESCO,annual,kg,b86c5aa6-bd08-36b7-82e7-5b5676224729 -2019,Tucuman,II.1.1,106.62624,TJ,CH4,3.9,kg/TJ,415.842336,Gas Oil combustion consumption by public passenger transport,AR-T,SESCO,annual,kg,814c6384-7be8-3498-9f23-d591cadfb91a -2019,Tucuman,II.1.1,106.62624,TJ,N2O,3.9,kg/TJ,415.842336,Gas Oil combustion consumption by public passenger transport,AR-T,SESCO,annual,kg,814c6384-7be8-3498-9f23-d591cadfb91a -2019,Buenos Aires,II.1.1,131.80187999999998,TJ,CO2,74100.0,kg/TJ,9766519.307999998,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,53e9f834-c4c9-309d-b136-f6c2f855aeb7 -2019,Buenos Aires,II.1.1,131.80187999999998,TJ,CH4,3.9,kg/TJ,514.0273319999999,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,9b79a1d6-a179-3f05-8cec-c305e9d52233 -2019,Buenos Aires,II.1.1,131.80187999999998,TJ,N2O,3.9,kg/TJ,514.0273319999999,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,9b79a1d6-a179-3f05-8cec-c305e9d52233 -2019,Capital Federal,II.1.1,88.06056,TJ,CO2,74100.0,kg/TJ,6525287.495999999,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,185ee54e-a68f-3fb6-80ac-aead5f559502 -2019,Capital Federal,II.1.1,88.06056,TJ,CH4,3.9,kg/TJ,343.43618399999997,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,1974ff72-0296-34ed-9d71-900033f94a70 -2019,Capital Federal,II.1.1,88.06056,TJ,N2O,3.9,kg/TJ,343.43618399999997,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,1974ff72-0296-34ed-9d71-900033f94a70 -2019,Chubut,II.1.1,0.86688,TJ,CO2,74100.0,kg/TJ,64235.808,Gas Oil combustion consumption by public passenger transport,AR-U,SESCO,annual,kg,493e083f-6e43-3ff2-ac0b-67de42f6e1ba -2019,Chubut,II.1.1,0.86688,TJ,CH4,3.9,kg/TJ,3.380832,Gas Oil combustion consumption by public passenger transport,AR-U,SESCO,annual,kg,9a6b09b5-f25e-3067-a494-92fad8a488fd -2019,Chubut,II.1.1,0.86688,TJ,N2O,3.9,kg/TJ,3.380832,Gas Oil combustion consumption by public passenger transport,AR-U,SESCO,annual,kg,9a6b09b5-f25e-3067-a494-92fad8a488fd -2019,Corrientes,II.1.1,0.10836,TJ,CO2,74100.0,kg/TJ,8029.476,Gas Oil combustion consumption by public passenger transport,AR-W,SESCO,annual,kg,3039ef93-5716-3c76-8068-6f8e1077839b -2019,Corrientes,II.1.1,0.10836,TJ,CH4,3.9,kg/TJ,0.422604,Gas Oil combustion consumption by public passenger transport,AR-W,SESCO,annual,kg,24195902-1a05-35a6-a0de-930379f5e7cc -2019,Corrientes,II.1.1,0.10836,TJ,N2O,3.9,kg/TJ,0.422604,Gas Oil combustion consumption by public passenger transport,AR-W,SESCO,annual,kg,24195902-1a05-35a6-a0de-930379f5e7cc -2019,Córdoba,II.1.1,3.72036,TJ,CO2,74100.0,kg/TJ,275678.676,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,1c261785-0735-3031-a485-f3e17237e11c -2019,Córdoba,II.1.1,3.72036,TJ,CH4,3.9,kg/TJ,14.509404,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,7de9db90-4128-35a9-aba7-ffcc1ef9c28e -2019,Córdoba,II.1.1,3.72036,TJ,N2O,3.9,kg/TJ,14.509404,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,7de9db90-4128-35a9-aba7-ffcc1ef9c28e -2019,Entre Rios,II.1.1,2.23944,TJ,CO2,74100.0,kg/TJ,165942.50400000002,Gas Oil combustion consumption by public passenger transport,AR-E,SESCO,annual,kg,75b57c10-f352-33c8-b770-304016d21099 -2019,Entre Rios,II.1.1,2.23944,TJ,CH4,3.9,kg/TJ,8.733816000000001,Gas Oil combustion consumption by public passenger transport,AR-E,SESCO,annual,kg,a6066018-5ece-3b15-bbbb-61836a7a8d67 -2019,Entre Rios,II.1.1,2.23944,TJ,N2O,3.9,kg/TJ,8.733816000000001,Gas Oil combustion consumption by public passenger transport,AR-E,SESCO,annual,kg,a6066018-5ece-3b15-bbbb-61836a7a8d67 -2019,La Pampa,II.1.1,3.64812,TJ,CO2,74100.0,kg/TJ,270325.692,Gas Oil combustion consumption by public passenger transport,AR-L,SESCO,annual,kg,c5e1b29b-622a-324d-b245-affe0fa8206f -2019,La Pampa,II.1.1,3.64812,TJ,CH4,3.9,kg/TJ,14.227668,Gas Oil combustion consumption by public passenger transport,AR-L,SESCO,annual,kg,bfe47d1d-bfb0-370f-be61-060da7fea084 -2019,La Pampa,II.1.1,3.64812,TJ,N2O,3.9,kg/TJ,14.227668,Gas Oil combustion consumption by public passenger transport,AR-L,SESCO,annual,kg,bfe47d1d-bfb0-370f-be61-060da7fea084 -2019,Neuquén,II.1.1,2.5284,TJ,CO2,74100.0,kg/TJ,187354.44,Gas Oil combustion consumption by public passenger transport,AR-Q,SESCO,annual,kg,8096f219-7d3c-3a5f-8a02-7c991fbb6cd2 -2019,Neuquén,II.1.1,2.5284,TJ,CH4,3.9,kg/TJ,9.860759999999999,Gas Oil combustion consumption by public passenger transport,AR-Q,SESCO,annual,kg,bf48c769-d642-3148-8ccf-b81cdd421726 -2019,Neuquén,II.1.1,2.5284,TJ,N2O,3.9,kg/TJ,9.860759999999999,Gas Oil combustion consumption by public passenger transport,AR-Q,SESCO,annual,kg,bf48c769-d642-3148-8ccf-b81cdd421726 -2019,Rio Negro,II.1.1,27.05388,TJ,CO2,74100.0,kg/TJ,2004692.508,Gas Oil combustion consumption by public passenger transport,AR-R,SESCO,annual,kg,10d3269b-77a7-385a-861d-8f086c65092e -2019,Rio Negro,II.1.1,27.05388,TJ,CH4,3.9,kg/TJ,105.510132,Gas Oil combustion consumption by public passenger transport,AR-R,SESCO,annual,kg,738cdf1e-3c59-312e-8df7-1635b6621529 -2019,Rio Negro,II.1.1,27.05388,TJ,N2O,3.9,kg/TJ,105.510132,Gas Oil combustion consumption by public passenger transport,AR-R,SESCO,annual,kg,738cdf1e-3c59-312e-8df7-1635b6621529 -2019,Santa Fe,II.1.1,30.08796,TJ,CO2,74100.0,kg/TJ,2229517.836,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,78a32a8f-358e-394a-be00-78fd7a4a6076 -2019,Santa Fe,II.1.1,30.08796,TJ,CH4,3.9,kg/TJ,117.34304399999999,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,36587cb3-f8f2-382a-b2f2-fe8e996bf8a6 -2019,Santa Fe,II.1.1,30.08796,TJ,N2O,3.9,kg/TJ,117.34304399999999,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,36587cb3-f8f2-382a-b2f2-fe8e996bf8a6 -2019,Santa Fe,II.1.1,0.102795,TJ,CO2,73300.0,kg/TJ,7534.8735,Naphtha combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,4e6b7f0b-eb3a-3e67-9d8f-9906a928ee42 -2019,Santa Fe,II.1.1,0.102795,TJ,CH4,0.5,kg/TJ,0.0513975,Naphtha combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,41bde552-8f76-35f0-b6e4-ce0a90f63d87 -2019,Santa Fe,II.1.1,0.102795,TJ,N2O,2.0,kg/TJ,0.20559,Naphtha combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,c44fc14e-5bd9-34e9-8043-44ae588beac7 -2019,Buenos Aires,II.5.1,1604.7032399999998,TJ,CO2,74100.0,kg/TJ,118908510.08399999,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,d75a8d6b-7614-38be-a0e6-df66d977bb54 -2019,Buenos Aires,II.5.1,1604.7032399999998,TJ,CH4,3.9,kg/TJ,6258.342635999999,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,2314a0f4-35c5-3ac0-acf2-9221c54bb034 -2019,Buenos Aires,II.5.1,1604.7032399999998,TJ,N2O,3.9,kg/TJ,6258.342635999999,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,2314a0f4-35c5-3ac0-acf2-9221c54bb034 -2019,Chaco,II.5.1,312.00455999999997,TJ,CO2,74100.0,kg/TJ,23119537.895999998,Gas Oil combustion consumption by agriculture machines,AR-H,SESCO,annual,kg,fa648806-711b-3d21-8c21-fbf43b2d5522 -2019,Chaco,II.5.1,312.00455999999997,TJ,CH4,3.9,kg/TJ,1216.8177839999998,Gas Oil combustion consumption by agriculture machines,AR-H,SESCO,annual,kg,f99b1e93-7c4a-3338-b813-08007b1e5aca -2019,Chaco,II.5.1,312.00455999999997,TJ,N2O,3.9,kg/TJ,1216.8177839999998,Gas Oil combustion consumption by agriculture machines,AR-H,SESCO,annual,kg,f99b1e93-7c4a-3338-b813-08007b1e5aca -2019,Corrientes,II.5.1,99.94404,TJ,CO2,74100.0,kg/TJ,7405853.364,Gas Oil combustion consumption by agriculture machines,AR-W,SESCO,annual,kg,772c818c-e91f-3d78-b2f4-2f6eaac0bcca -2019,Corrientes,II.5.1,99.94404,TJ,CH4,3.9,kg/TJ,389.781756,Gas Oil combustion consumption by agriculture machines,AR-W,SESCO,annual,kg,53da0c6e-ca0c-3c3f-ab29-0bb08a35cd51 -2019,Corrientes,II.5.1,99.94404,TJ,N2O,3.9,kg/TJ,389.781756,Gas Oil combustion consumption by agriculture machines,AR-W,SESCO,annual,kg,53da0c6e-ca0c-3c3f-ab29-0bb08a35cd51 -2019,Córdoba,II.5.1,1641.0760799999998,TJ,CO2,74100.0,kg/TJ,121603737.52799998,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,91452ec5-6e07-3bcb-853c-c88d9cc68be0 -2019,Córdoba,II.5.1,1641.0760799999998,TJ,CH4,3.9,kg/TJ,6400.196711999999,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,c633d9fe-e212-3f58-b61d-096c79dd975a -2019,Córdoba,II.5.1,1641.0760799999998,TJ,N2O,3.9,kg/TJ,6400.196711999999,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,c633d9fe-e212-3f58-b61d-096c79dd975a -2019,Entre Rios,II.5.1,71.15639999999999,TJ,CO2,74100.0,kg/TJ,5272689.239999999,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,051c7e75-6524-3706-99a3-a74d41bd7179 -2019,Entre Rios,II.5.1,71.15639999999999,TJ,CH4,3.9,kg/TJ,277.50996,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,1547c394-4f74-3a0c-9462-dc2810029212 -2019,Entre Rios,II.5.1,71.15639999999999,TJ,N2O,3.9,kg/TJ,277.50996,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,1547c394-4f74-3a0c-9462-dc2810029212 -2019,La Pampa,II.5.1,86.688,TJ,CO2,74100.0,kg/TJ,6423580.8,Gas Oil combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,0d5de676-bd78-3481-85b0-1fa33ad72109 -2019,La Pampa,II.5.1,86.688,TJ,CH4,3.9,kg/TJ,338.0832,Gas Oil combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,39f76f46-1a60-328c-b719-cee5da9c98a8 -2019,La Pampa,II.5.1,86.688,TJ,N2O,3.9,kg/TJ,338.0832,Gas Oil combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,39f76f46-1a60-328c-b719-cee5da9c98a8 -2019,Mendoza,II.5.1,679.48944,TJ,CO2,74100.0,kg/TJ,50350167.50399999,Gas Oil combustion consumption by agriculture machines,AR-M,SESCO,annual,kg,8566c21d-6b4b-315c-a674-7dead7925ef1 -2019,Mendoza,II.5.1,679.48944,TJ,CH4,3.9,kg/TJ,2650.0088159999996,Gas Oil combustion consumption by agriculture machines,AR-M,SESCO,annual,kg,8c1e4b52-f6c2-3cf2-91a6-a64fe5c7515b -2019,Mendoza,II.5.1,679.48944,TJ,N2O,3.9,kg/TJ,2650.0088159999996,Gas Oil combustion consumption by agriculture machines,AR-M,SESCO,annual,kg,8c1e4b52-f6c2-3cf2-91a6-a64fe5c7515b -2019,Neuquén,II.5.1,128.73167999999998,TJ,CO2,74100.0,kg/TJ,9539017.487999998,Gas Oil combustion consumption by agriculture machines,AR-Q,SESCO,annual,kg,91a5ce77-a8ae-392b-a019-c138e70948b2 -2019,Neuquén,II.5.1,128.73167999999998,TJ,CH4,3.9,kg/TJ,502.0535519999999,Gas Oil combustion consumption by agriculture machines,AR-Q,SESCO,annual,kg,95793d35-d83b-3311-b6a2-f2711a469a73 -2019,Neuquén,II.5.1,128.73167999999998,TJ,N2O,3.9,kg/TJ,502.0535519999999,Gas Oil combustion consumption by agriculture machines,AR-Q,SESCO,annual,kg,95793d35-d83b-3311-b6a2-f2711a469a73 -2019,Santa Cruz,II.5.1,55.371959999999994,TJ,CO2,74100.0,kg/TJ,4103062.2359999996,Gas Oil combustion consumption by agriculture machines,AR-Z,SESCO,annual,kg,d7db3574-3524-3136-bd84-8d5ef666d7f9 -2019,Santa Cruz,II.5.1,55.371959999999994,TJ,CH4,3.9,kg/TJ,215.95064399999998,Gas Oil combustion consumption by agriculture machines,AR-Z,SESCO,annual,kg,336b6934-3a5e-3aea-9246-3c1932b756a1 -2019,Santa Cruz,II.5.1,55.371959999999994,TJ,N2O,3.9,kg/TJ,215.95064399999998,Gas Oil combustion consumption by agriculture machines,AR-Z,SESCO,annual,kg,336b6934-3a5e-3aea-9246-3c1932b756a1 -2019,Santa Fe,II.5.1,2022.46716,TJ,CO2,74100.0,kg/TJ,149864816.556,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,473859b7-3f72-3e38-9fde-d1c49c5f43d0 -2019,Santa Fe,II.5.1,2022.46716,TJ,CH4,3.9,kg/TJ,7887.621923999999,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,520f11f6-0f03-380a-b9ca-067de74413ca -2019,Santa Fe,II.5.1,2022.46716,TJ,N2O,3.9,kg/TJ,7887.621923999999,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,520f11f6-0f03-380a-b9ca-067de74413ca -2019,Santiago del Estero,II.5.1,170.16132,TJ,CO2,74100.0,kg/TJ,12608953.811999999,Gas Oil combustion consumption by agriculture machines,AR-G,SESCO,annual,kg,37477141-448a-3efb-8fd1-c2c71e05fb06 -2019,Santiago del Estero,II.5.1,170.16132,TJ,CH4,3.9,kg/TJ,663.629148,Gas Oil combustion consumption by agriculture machines,AR-G,SESCO,annual,kg,d45174b9-30a3-3991-9442-2371792f7c27 -2019,Santiago del Estero,II.5.1,170.16132,TJ,N2O,3.9,kg/TJ,663.629148,Gas Oil combustion consumption by agriculture machines,AR-G,SESCO,annual,kg,d45174b9-30a3-3991-9442-2371792f7c27 -2019,Tucuman,II.5.1,142.31279999999998,TJ,CO2,74100.0,kg/TJ,10545378.479999999,Gas Oil combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,00e6b773-a2d5-37a8-88e0-f862ef72b4e3 -2019,Tucuman,II.5.1,142.31279999999998,TJ,CH4,3.9,kg/TJ,555.01992,Gas Oil combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,619dcb07-932f-360f-b03b-fe4282b76da6 -2019,Tucuman,II.5.1,142.31279999999998,TJ,N2O,3.9,kg/TJ,555.01992,Gas Oil combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,619dcb07-932f-360f-b03b-fe4282b76da6 -2019,Buenos Aires,II.5.1,69.38651999999999,TJ,CO2,74100.0,kg/TJ,5141541.131999999,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,f3817727-3ed7-3f1b-b3d8-aa8b37aa4349 -2019,Buenos Aires,II.5.1,69.38651999999999,TJ,CH4,3.9,kg/TJ,270.60742799999997,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,219ff7bf-5026-392b-a8a3-4eeecf87a1cc -2019,Buenos Aires,II.5.1,69.38651999999999,TJ,N2O,3.9,kg/TJ,270.60742799999997,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,219ff7bf-5026-392b-a8a3-4eeecf87a1cc -2019,Chaco,II.5.1,73.21524,TJ,CO2,74100.0,kg/TJ,5425249.284,Gas Oil combustion consumption by agriculture machines,AR-H,SESCO,annual,kg,888a9580-3faa-30c8-b819-02efcabcd605 -2019,Chaco,II.5.1,73.21524,TJ,CH4,3.9,kg/TJ,285.53943599999997,Gas Oil combustion consumption by agriculture machines,AR-H,SESCO,annual,kg,f6a150ae-8134-3143-b8b8-e7cbfb01ddd4 -2019,Chaco,II.5.1,73.21524,TJ,N2O,3.9,kg/TJ,285.53943599999997,Gas Oil combustion consumption by agriculture machines,AR-H,SESCO,annual,kg,f6a150ae-8134-3143-b8b8-e7cbfb01ddd4 -2019,Corrientes,II.5.1,23.839199999999998,TJ,CO2,74100.0,kg/TJ,1766484.72,Gas Oil combustion consumption by agriculture machines,AR-W,SESCO,annual,kg,6f81d7c7-bf3e-31bf-bc3b-a08bbc2cd7cd -2019,Corrientes,II.5.1,23.839199999999998,TJ,CH4,3.9,kg/TJ,92.97287999999999,Gas Oil combustion consumption by agriculture machines,AR-W,SESCO,annual,kg,e70e3000-f22d-36b1-a333-a764cb38c3de -2019,Corrientes,II.5.1,23.839199999999998,TJ,N2O,3.9,kg/TJ,92.97287999999999,Gas Oil combustion consumption by agriculture machines,AR-W,SESCO,annual,kg,e70e3000-f22d-36b1-a333-a764cb38c3de -2019,Córdoba,II.5.1,79.50012,TJ,CO2,74100.0,kg/TJ,5890958.892,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,9b79ad38-21ee-315f-b526-86fba7cf7caa -2019,Córdoba,II.5.1,79.50012,TJ,CH4,3.9,kg/TJ,310.05046799999997,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,2c741362-7643-3e93-a963-f9aa9ab5f1b9 -2019,Córdoba,II.5.1,79.50012,TJ,N2O,3.9,kg/TJ,310.05046799999997,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,2c741362-7643-3e93-a963-f9aa9ab5f1b9 -2019,La Pampa,II.5.1,7.7658,TJ,CO2,74100.0,kg/TJ,575445.78,Gas Oil combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,aca827d3-d4ff-3235-ae5d-0b1e32c7242a -2019,La Pampa,II.5.1,7.7658,TJ,CH4,3.9,kg/TJ,30.28662,Gas Oil combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,bc0469ff-a3a4-3083-84a6-2e3c1aa28d0d -2019,La Pampa,II.5.1,7.7658,TJ,N2O,3.9,kg/TJ,30.28662,Gas Oil combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,bc0469ff-a3a4-3083-84a6-2e3c1aa28d0d -2019,Mendoza,II.5.1,165.32124,TJ,CO2,74100.0,kg/TJ,12250303.884,Gas Oil combustion consumption by agriculture machines,AR-M,SESCO,annual,kg,8f63089d-2806-3bef-bff5-d0571d68c6ff -2019,Mendoza,II.5.1,165.32124,TJ,CH4,3.9,kg/TJ,644.7528359999999,Gas Oil combustion consumption by agriculture machines,AR-M,SESCO,annual,kg,0bd38547-ded4-3b86-a56d-b3c568c5a270 -2019,Mendoza,II.5.1,165.32124,TJ,N2O,3.9,kg/TJ,644.7528359999999,Gas Oil combustion consumption by agriculture machines,AR-M,SESCO,annual,kg,0bd38547-ded4-3b86-a56d-b3c568c5a270 -2019,Neuquén,II.5.1,9.28284,TJ,CO2,74100.0,kg/TJ,687858.444,Gas Oil combustion consumption by agriculture machines,AR-Q,SESCO,annual,kg,de89cacc-806d-3bb0-990a-30db407a83a3 -2019,Neuquén,II.5.1,9.28284,TJ,CH4,3.9,kg/TJ,36.203076,Gas Oil combustion consumption by agriculture machines,AR-Q,SESCO,annual,kg,e1ded2ec-2419-381b-8f3a-81de4097dae3 -2019,Neuquén,II.5.1,9.28284,TJ,N2O,3.9,kg/TJ,36.203076,Gas Oil combustion consumption by agriculture machines,AR-Q,SESCO,annual,kg,e1ded2ec-2419-381b-8f3a-81de4097dae3 -2019,Santa Cruz,II.5.1,20.696759999999998,TJ,CO2,74100.0,kg/TJ,1533629.9159999997,Gas Oil combustion consumption by agriculture machines,AR-Z,SESCO,annual,kg,6a8e5cbc-47b7-3896-ab89-add1b6093fde -2019,Santa Cruz,II.5.1,20.696759999999998,TJ,CH4,3.9,kg/TJ,80.71736399999999,Gas Oil combustion consumption by agriculture machines,AR-Z,SESCO,annual,kg,4b6d94f5-4c87-358b-be77-36243356a3f5 -2019,Santa Cruz,II.5.1,20.696759999999998,TJ,N2O,3.9,kg/TJ,80.71736399999999,Gas Oil combustion consumption by agriculture machines,AR-Z,SESCO,annual,kg,4b6d94f5-4c87-358b-be77-36243356a3f5 -2019,Santa Fe,II.5.1,113.52516,TJ,CO2,74100.0,kg/TJ,8412214.356,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,6d460fee-6f32-3d04-90ca-a222df2673ac -2019,Santa Fe,II.5.1,113.52516,TJ,CH4,3.9,kg/TJ,442.74812399999996,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,67d4d4d2-f243-355d-8441-3f3f7866fd00 -2019,Santa Fe,II.5.1,113.52516,TJ,N2O,3.9,kg/TJ,442.74812399999996,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,67d4d4d2-f243-355d-8441-3f3f7866fd00 -2019,Santiago del Estero,II.5.1,27.523439999999997,TJ,CO2,74100.0,kg/TJ,2039486.9039999999,Gas Oil combustion consumption by agriculture machines,AR-G,SESCO,annual,kg,807c207e-d0a0-35c3-ba92-287a1401589b -2019,Santiago del Estero,II.5.1,27.523439999999997,TJ,CH4,3.9,kg/TJ,107.34141599999998,Gas Oil combustion consumption by agriculture machines,AR-G,SESCO,annual,kg,4ed511ae-28c9-39ab-9198-77309e6e4429 -2019,Santiago del Estero,II.5.1,27.523439999999997,TJ,N2O,3.9,kg/TJ,107.34141599999998,Gas Oil combustion consumption by agriculture machines,AR-G,SESCO,annual,kg,4ed511ae-28c9-39ab-9198-77309e6e4429 -2019,Tucuman,II.5.1,26.873279999999998,TJ,CO2,74100.0,kg/TJ,1991310.0479999997,Gas Oil combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,01ed6010-19eb-3bdb-baee-229b01dd6ecf -2019,Tucuman,II.5.1,26.873279999999998,TJ,CH4,3.9,kg/TJ,104.80579199999998,Gas Oil combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,63f4b2df-0bf4-38e5-8bc3-a61a920a349c -2019,Tucuman,II.5.1,26.873279999999998,TJ,N2O,3.9,kg/TJ,104.80579199999998,Gas Oil combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,63f4b2df-0bf4-38e5-8bc3-a61a920a349c -2019,Córdoba,II.5.1,2.843995,TJ,CO2,73300.0,kg/TJ,208464.8335,Naphtha combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,bd9db84c-4938-32db-930d-56d49c8e2989 -2019,Córdoba,II.5.1,2.843995,TJ,CH4,0.5,kg/TJ,1.4219975,Naphtha combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,87547f80-4b8b-3619-b65f-ebd932458e3e -2019,Córdoba,II.5.1,2.843995,TJ,N2O,2.0,kg/TJ,5.68799,Naphtha combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,fe735028-79c8-327c-9094-2ff8ce54767c -2019,Santa Fe,II.5.1,39.987255,TJ,CO2,73300.0,kg/TJ,2931065.7915,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,a285895b-2276-3192-b37d-baae07de00f5 -2019,Santa Fe,II.5.1,39.987255,TJ,CH4,0.5,kg/TJ,19.9936275,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,77010eb7-3a28-3a79-b298-c639369378d3 -2019,Santa Fe,II.5.1,39.987255,TJ,N2O,2.0,kg/TJ,79.97451,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,39d5c519-c8b4-36ef-9b39-5fd6b9f1beaf -2019,Córdoba,II.5.1,1.71325,TJ,CO2,73300.0,kg/TJ,125581.22499999999,Naphtha combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,c6c4e48c-4ecb-33b8-89b1-a1c00df092c8 -2019,Córdoba,II.5.1,1.71325,TJ,CH4,0.5,kg/TJ,0.856625,Naphtha combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,1e9fb3df-c235-3a82-b2c0-8e969794b8d4 -2019,Córdoba,II.5.1,1.71325,TJ,N2O,2.0,kg/TJ,3.4265,Naphtha combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,16f7efe4-7708-33ee-8fda-572291615867 -2019,Santa Fe,II.5.1,6.09917,TJ,CO2,73300.0,kg/TJ,447069.161,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,7f905869-5897-315a-96f5-2b8cc7629ef0 -2019,Santa Fe,II.5.1,6.09917,TJ,CH4,0.5,kg/TJ,3.049585,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,77e9b55f-6bca-3881-b7cf-a7d3dee4b9e3 -2019,Santa Fe,II.5.1,6.09917,TJ,N2O,2.0,kg/TJ,12.19834,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,9c6e7d49-854e-32ab-a395-1bb956d15add -2019,Buenos Aires,II.2.1,377.70684,TJ,CO2,74100.0,kg/TJ,27988076.844,Gas Oil combustion consumption by railway transport,AR-B,SESCO,annual,kg,c3aaed93-aa0d-3220-b96e-a60b0d8ab1b0 -2019,Buenos Aires,II.2.1,377.70684,TJ,CH4,3.9,kg/TJ,1473.056676,Gas Oil combustion consumption by railway transport,AR-B,SESCO,annual,kg,674cfa99-ac9f-344e-81a5-cf1eca19db77 -2019,Buenos Aires,II.2.1,377.70684,TJ,N2O,3.9,kg/TJ,1473.056676,Gas Oil combustion consumption by railway transport,AR-B,SESCO,annual,kg,674cfa99-ac9f-344e-81a5-cf1eca19db77 -2019,Capital Federal,II.2.1,4.515,TJ,CO2,74100.0,kg/TJ,334561.5,Gas Oil combustion consumption by railway transport,AR-C,SESCO,annual,kg,16a25b21-2456-36dd-8055-52af05eec202 -2019,Capital Federal,II.2.1,4.515,TJ,CH4,3.9,kg/TJ,17.6085,Gas Oil combustion consumption by railway transport,AR-C,SESCO,annual,kg,9778eea8-7e00-31e3-8834-c0a2cccc40d7 -2019,Capital Federal,II.2.1,4.515,TJ,N2O,3.9,kg/TJ,17.6085,Gas Oil combustion consumption by railway transport,AR-C,SESCO,annual,kg,9778eea8-7e00-31e3-8834-c0a2cccc40d7 -2019,Córdoba,II.2.1,6.57384,TJ,CO2,74100.0,kg/TJ,487121.544,Gas Oil combustion consumption by railway transport,AR-X,SESCO,annual,kg,eae09c84-7be6-3b28-831f-d97ccf1bdd64 -2019,Córdoba,II.2.1,6.57384,TJ,CH4,3.9,kg/TJ,25.637976,Gas Oil combustion consumption by railway transport,AR-X,SESCO,annual,kg,be10d55a-88eb-338d-b4ec-936e88bd5362 -2019,Córdoba,II.2.1,6.57384,TJ,N2O,3.9,kg/TJ,25.637976,Gas Oil combustion consumption by railway transport,AR-X,SESCO,annual,kg,be10d55a-88eb-338d-b4ec-936e88bd5362 -2019,La Pampa,II.2.1,85.53215999999999,TJ,CO2,74100.0,kg/TJ,6337933.055999999,Gas Oil combustion consumption by railway transport,AR-L,SESCO,annual,kg,c803531f-1a91-39ad-9e22-73f5a572e889 -2019,La Pampa,II.2.1,85.53215999999999,TJ,CH4,3.9,kg/TJ,333.57542399999994,Gas Oil combustion consumption by railway transport,AR-L,SESCO,annual,kg,3fd35d7c-30cf-3874-9255-150749957ef7 -2019,La Pampa,II.2.1,85.53215999999999,TJ,N2O,3.9,kg/TJ,333.57542399999994,Gas Oil combustion consumption by railway transport,AR-L,SESCO,annual,kg,3fd35d7c-30cf-3874-9255-150749957ef7 -2019,Neuquén,II.2.1,32.6886,TJ,CO2,74100.0,kg/TJ,2422225.2600000002,Gas Oil combustion consumption by railway transport,AR-Q,SESCO,annual,kg,a096f157-61d9-39df-a45e-d2e570e07946 -2019,Neuquén,II.2.1,32.6886,TJ,CH4,3.9,kg/TJ,127.48554,Gas Oil combustion consumption by railway transport,AR-Q,SESCO,annual,kg,aa151621-81e6-3bab-b4f8-f2d2d77cdcc0 -2019,Neuquén,II.2.1,32.6886,TJ,N2O,3.9,kg/TJ,127.48554,Gas Oil combustion consumption by railway transport,AR-Q,SESCO,annual,kg,aa151621-81e6-3bab-b4f8-f2d2d77cdcc0 -2019,Santa Fe,II.2.1,198.51551999999998,TJ,CO2,74100.0,kg/TJ,14710000.031999998,Gas Oil combustion consumption by railway transport,AR-S,SESCO,annual,kg,f2e49b20-73e9-36df-98c9-36f73310e1dd -2019,Santa Fe,II.2.1,198.51551999999998,TJ,CH4,3.9,kg/TJ,774.210528,Gas Oil combustion consumption by railway transport,AR-S,SESCO,annual,kg,472f9ed9-3322-35a7-a91e-47324daa2cdc -2019,Santa Fe,II.2.1,198.51551999999998,TJ,N2O,3.9,kg/TJ,774.210528,Gas Oil combustion consumption by railway transport,AR-S,SESCO,annual,kg,472f9ed9-3322-35a7-a91e-47324daa2cdc -2019,Santiago del Estero,II.2.1,37.7454,TJ,CO2,74100.0,kg/TJ,2796934.1399999997,Gas Oil combustion consumption by railway transport,AR-G,SESCO,annual,kg,b2e614fb-cd93-3a18-8eb9-e80a984cfe5f -2019,Santiago del Estero,II.2.1,37.7454,TJ,CH4,3.9,kg/TJ,147.20705999999998,Gas Oil combustion consumption by railway transport,AR-G,SESCO,annual,kg,59c4fba2-841e-3e09-9882-ea2b6f1d17bb -2019,Santiago del Estero,II.2.1,37.7454,TJ,N2O,3.9,kg/TJ,147.20705999999998,Gas Oil combustion consumption by railway transport,AR-G,SESCO,annual,kg,59c4fba2-841e-3e09-9882-ea2b6f1d17bb -2019,Tucuman,II.2.1,23.441879999999998,TJ,CO2,74100.0,kg/TJ,1737043.3079999997,Gas Oil combustion consumption by railway transport,AR-T,SESCO,annual,kg,3e8ba785-d0dd-3c4d-bef9-b5a816c650ca -2019,Tucuman,II.2.1,23.441879999999998,TJ,CH4,3.9,kg/TJ,91.42333199999999,Gas Oil combustion consumption by railway transport,AR-T,SESCO,annual,kg,284eb9d1-5e18-3d9a-8453-45d7deb9eaf5 -2019,Tucuman,II.2.1,23.441879999999998,TJ,N2O,3.9,kg/TJ,91.42333199999999,Gas Oil combustion consumption by railway transport,AR-T,SESCO,annual,kg,284eb9d1-5e18-3d9a-8453-45d7deb9eaf5 -2019,Buenos Aires,II.1.1,1529.93484,TJ,CO2,74100.0,kg/TJ,113368171.644,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,4c0a53ff-e902-3b25-83df-f4eaff23e074 -2019,Buenos Aires,II.1.1,1529.93484,TJ,CH4,3.9,kg/TJ,5966.745875999999,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,407ef531-0b36-3f88-94dd-2045c569f0ca -2019,Buenos Aires,II.1.1,1529.93484,TJ,N2O,3.9,kg/TJ,5966.745875999999,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,407ef531-0b36-3f88-94dd-2045c569f0ca -2019,Capital Federal,II.1.1,380.81316,TJ,CO2,74100.0,kg/TJ,28218255.156,Gas Oil combustion consumption by freight transport,AR-C,SESCO,annual,kg,3bf388d9-098d-3d43-96c7-45c756219d14 -2019,Capital Federal,II.1.1,380.81316,TJ,CH4,3.9,kg/TJ,1485.171324,Gas Oil combustion consumption by freight transport,AR-C,SESCO,annual,kg,aadd0acf-509d-31de-8932-6d9f9868cd44 -2019,Capital Federal,II.1.1,380.81316,TJ,N2O,3.9,kg/TJ,1485.171324,Gas Oil combustion consumption by freight transport,AR-C,SESCO,annual,kg,aadd0acf-509d-31de-8932-6d9f9868cd44 -2019,Catamarca,II.1.1,11.45004,TJ,CO2,74100.0,kg/TJ,848447.9639999999,Gas Oil combustion consumption by freight transport,AR-K,SESCO,annual,kg,cdf7a385-bdcc-3c47-9dcb-d27a6e0f8c6b -2019,Catamarca,II.1.1,11.45004,TJ,CH4,3.9,kg/TJ,44.655156,Gas Oil combustion consumption by freight transport,AR-K,SESCO,annual,kg,c3b7b627-bf08-3571-91ec-b08fffbdb518 -2019,Catamarca,II.1.1,11.45004,TJ,N2O,3.9,kg/TJ,44.655156,Gas Oil combustion consumption by freight transport,AR-K,SESCO,annual,kg,c3b7b627-bf08-3571-91ec-b08fffbdb518 -2019,Chaco,II.1.1,17.662679999999998,TJ,CO2,74100.0,kg/TJ,1308804.5879999998,Gas Oil combustion consumption by freight transport,AR-H,SESCO,annual,kg,1db9fd5d-7d55-3954-9f2c-bfcbb8b4b881 -2019,Chaco,II.1.1,17.662679999999998,TJ,CH4,3.9,kg/TJ,68.884452,Gas Oil combustion consumption by freight transport,AR-H,SESCO,annual,kg,1949b241-499f-3e2b-9da9-8c3687c05014 -2019,Chaco,II.1.1,17.662679999999998,TJ,N2O,3.9,kg/TJ,68.884452,Gas Oil combustion consumption by freight transport,AR-H,SESCO,annual,kg,1949b241-499f-3e2b-9da9-8c3687c05014 -2019,Chubut,II.1.1,35.14476,TJ,CO2,74100.0,kg/TJ,2604226.716,Gas Oil combustion consumption by freight transport,AR-U,SESCO,annual,kg,0a3fad9a-9fc2-3c3e-b829-9bc27549a2f6 -2019,Chubut,II.1.1,35.14476,TJ,CH4,3.9,kg/TJ,137.064564,Gas Oil combustion consumption by freight transport,AR-U,SESCO,annual,kg,855b5575-a058-30fb-86f8-ae81a8c1c4e5 -2019,Chubut,II.1.1,35.14476,TJ,N2O,3.9,kg/TJ,137.064564,Gas Oil combustion consumption by freight transport,AR-U,SESCO,annual,kg,855b5575-a058-30fb-86f8-ae81a8c1c4e5 -2019,Corrientes,II.1.1,53.6382,TJ,CO2,74100.0,kg/TJ,3974590.6199999996,Gas Oil combustion consumption by freight transport,AR-W,SESCO,annual,kg,471f5c5f-0ef5-3a44-95ba-5ed22415707a -2019,Corrientes,II.1.1,53.6382,TJ,CH4,3.9,kg/TJ,209.18898,Gas Oil combustion consumption by freight transport,AR-W,SESCO,annual,kg,5cc926ed-4869-3a4f-8c92-58164890df06 -2019,Corrientes,II.1.1,53.6382,TJ,N2O,3.9,kg/TJ,209.18898,Gas Oil combustion consumption by freight transport,AR-W,SESCO,annual,kg,5cc926ed-4869-3a4f-8c92-58164890df06 -2019,Córdoba,II.1.1,193.38647999999998,TJ,CO2,74100.0,kg/TJ,14329938.167999998,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,fd8ff52e-a8a2-379f-8c1a-f2a210e2e3c2 -2019,Córdoba,II.1.1,193.38647999999998,TJ,CH4,3.9,kg/TJ,754.2072719999999,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,327404ce-78d7-3e6e-a76c-5ecb14f34105 -2019,Córdoba,II.1.1,193.38647999999998,TJ,N2O,3.9,kg/TJ,754.2072719999999,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,327404ce-78d7-3e6e-a76c-5ecb14f34105 -2019,Entre Rios,II.1.1,186.921,TJ,CO2,74100.0,kg/TJ,13850846.1,Gas Oil combustion consumption by freight transport,AR-E,SESCO,annual,kg,fe688624-be47-31ad-b782-2b958811a402 -2019,Entre Rios,II.1.1,186.921,TJ,CH4,3.9,kg/TJ,728.9919,Gas Oil combustion consumption by freight transport,AR-E,SESCO,annual,kg,77743715-1a52-321d-9aef-feefbff2c9f3 -2019,Entre Rios,II.1.1,186.921,TJ,N2O,3.9,kg/TJ,728.9919,Gas Oil combustion consumption by freight transport,AR-E,SESCO,annual,kg,77743715-1a52-321d-9aef-feefbff2c9f3 -2019,Formosa,II.1.1,9.03,TJ,CO2,74100.0,kg/TJ,669123.0,Gas Oil combustion consumption by freight transport,AR-P,SESCO,annual,kg,1ba9464a-87a0-3705-9425-112c49684b0f -2019,Formosa,II.1.1,9.03,TJ,CH4,3.9,kg/TJ,35.217,Gas Oil combustion consumption by freight transport,AR-P,SESCO,annual,kg,f12a0dd2-e8dd-39fa-b5e2-5a23aa7c2a2d -2019,Formosa,II.1.1,9.03,TJ,N2O,3.9,kg/TJ,35.217,Gas Oil combustion consumption by freight transport,AR-P,SESCO,annual,kg,f12a0dd2-e8dd-39fa-b5e2-5a23aa7c2a2d -2019,Jujuy,II.1.1,8.05476,TJ,CO2,74100.0,kg/TJ,596857.716,Gas Oil combustion consumption by freight transport,AR-Y,SESCO,annual,kg,fadd597a-f3b3-388d-b105-3401a1ef7e4d -2019,Jujuy,II.1.1,8.05476,TJ,CH4,3.9,kg/TJ,31.413563999999997,Gas Oil combustion consumption by freight transport,AR-Y,SESCO,annual,kg,9b8af62b-82ec-365c-90d5-4b60eb610334 -2019,Jujuy,II.1.1,8.05476,TJ,N2O,3.9,kg/TJ,31.413563999999997,Gas Oil combustion consumption by freight transport,AR-Y,SESCO,annual,kg,9b8af62b-82ec-365c-90d5-4b60eb610334 -2019,La Pampa,II.1.1,29.618399999999998,TJ,CO2,74100.0,kg/TJ,2194723.44,Gas Oil combustion consumption by freight transport,AR-L,SESCO,annual,kg,f3d92a26-9e80-3ec5-b587-b5169293dc30 -2019,La Pampa,II.1.1,29.618399999999998,TJ,CH4,3.9,kg/TJ,115.51175999999998,Gas Oil combustion consumption by freight transport,AR-L,SESCO,annual,kg,23469bd9-faf3-3a5f-bab3-0570fed87180 -2019,La Pampa,II.1.1,29.618399999999998,TJ,N2O,3.9,kg/TJ,115.51175999999998,Gas Oil combustion consumption by freight transport,AR-L,SESCO,annual,kg,23469bd9-faf3-3a5f-bab3-0570fed87180 -2019,La Rioja,II.1.1,3.9732,TJ,CO2,74100.0,kg/TJ,294414.12,Gas Oil combustion consumption by freight transport,AR-F,SESCO,annual,kg,bc89c4b5-2913-3383-9dc0-f8e1f19f7be7 -2019,La Rioja,II.1.1,3.9732,TJ,CH4,3.9,kg/TJ,15.495479999999999,Gas Oil combustion consumption by freight transport,AR-F,SESCO,annual,kg,fd4f62dc-62d0-3549-8db3-0639378d0de0 -2019,La Rioja,II.1.1,3.9732,TJ,N2O,3.9,kg/TJ,15.495479999999999,Gas Oil combustion consumption by freight transport,AR-F,SESCO,annual,kg,fd4f62dc-62d0-3549-8db3-0639378d0de0 -2019,Mendoza,II.1.1,61.0428,TJ,CO2,74100.0,kg/TJ,4523271.4799999995,Gas Oil combustion consumption by freight transport,AR-M,SESCO,annual,kg,b6f1e8d6-b3c6-3571-9f1e-058e2c0e833f -2019,Mendoza,II.1.1,61.0428,TJ,CH4,3.9,kg/TJ,238.06691999999998,Gas Oil combustion consumption by freight transport,AR-M,SESCO,annual,kg,4d93f293-8afd-3f84-a474-9a092b4d8171 -2019,Mendoza,II.1.1,61.0428,TJ,N2O,3.9,kg/TJ,238.06691999999998,Gas Oil combustion consumption by freight transport,AR-M,SESCO,annual,kg,4d93f293-8afd-3f84-a474-9a092b4d8171 -2019,Misiones,II.1.1,52.121159999999996,TJ,CO2,74100.0,kg/TJ,3862177.956,Gas Oil combustion consumption by freight transport,AR-N,SESCO,annual,kg,df33e6f7-403e-374a-80c3-43bc0a531aa8 -2019,Misiones,II.1.1,52.121159999999996,TJ,CH4,3.9,kg/TJ,203.27252399999998,Gas Oil combustion consumption by freight transport,AR-N,SESCO,annual,kg,4b727249-1e56-3a2f-87a6-ca1084f16abf -2019,Misiones,II.1.1,52.121159999999996,TJ,N2O,3.9,kg/TJ,203.27252399999998,Gas Oil combustion consumption by freight transport,AR-N,SESCO,annual,kg,4b727249-1e56-3a2f-87a6-ca1084f16abf -2019,Neuquén,II.1.1,1.37256,TJ,CO2,74100.0,kg/TJ,101706.696,Gas Oil combustion consumption by freight transport,AR-Q,SESCO,annual,kg,94e1bafd-2ce0-3b3f-b75a-b1639505ff66 -2019,Neuquén,II.1.1,1.37256,TJ,CH4,3.9,kg/TJ,5.352984,Gas Oil combustion consumption by freight transport,AR-Q,SESCO,annual,kg,2ff2793b-bf3a-3626-a3d4-09349e8ec42c -2019,Neuquén,II.1.1,1.37256,TJ,N2O,3.9,kg/TJ,5.352984,Gas Oil combustion consumption by freight transport,AR-Q,SESCO,annual,kg,2ff2793b-bf3a-3626-a3d4-09349e8ec42c -2019,Rio Negro,II.1.1,101.35271999999999,TJ,CO2,74100.0,kg/TJ,7510236.551999999,Gas Oil combustion consumption by freight transport,AR-R,SESCO,annual,kg,87367081-32f6-3243-a019-bdb5f82f6645 -2019,Rio Negro,II.1.1,101.35271999999999,TJ,CH4,3.9,kg/TJ,395.275608,Gas Oil combustion consumption by freight transport,AR-R,SESCO,annual,kg,aad34eb8-df53-3b92-aebf-b6fe044fd120 -2019,Rio Negro,II.1.1,101.35271999999999,TJ,N2O,3.9,kg/TJ,395.275608,Gas Oil combustion consumption by freight transport,AR-R,SESCO,annual,kg,aad34eb8-df53-3b92-aebf-b6fe044fd120 -2019,Salta,II.1.1,4.76784,TJ,CO2,74100.0,kg/TJ,353296.94399999996,Gas Oil combustion consumption by freight transport,AR-A,SESCO,annual,kg,acabd128-93ac-3a50-9d7e-c203e5edab3a -2019,Salta,II.1.1,4.76784,TJ,CH4,3.9,kg/TJ,18.594575999999996,Gas Oil combustion consumption by freight transport,AR-A,SESCO,annual,kg,e612d646-2904-3558-8c56-5751d97e3639 -2019,Salta,II.1.1,4.76784,TJ,N2O,3.9,kg/TJ,18.594575999999996,Gas Oil combustion consumption by freight transport,AR-A,SESCO,annual,kg,e612d646-2904-3558-8c56-5751d97e3639 -2019,San Juan,II.1.1,7.44072,TJ,CO2,74100.0,kg/TJ,551357.352,Gas Oil combustion consumption by freight transport,AR-J,SESCO,annual,kg,ee9a7a46-a093-32bd-9561-6c1e3f3f5603 -2019,San Juan,II.1.1,7.44072,TJ,CH4,3.9,kg/TJ,29.018808,Gas Oil combustion consumption by freight transport,AR-J,SESCO,annual,kg,9cbe1fdb-557b-366f-9da5-9db939f62b5e -2019,San Juan,II.1.1,7.44072,TJ,N2O,3.9,kg/TJ,29.018808,Gas Oil combustion consumption by freight transport,AR-J,SESCO,annual,kg,9cbe1fdb-557b-366f-9da5-9db939f62b5e -2019,San Luis,II.1.1,63.679559999999995,TJ,CO2,74100.0,kg/TJ,4718655.396,Gas Oil combustion consumption by freight transport,AR-D,SESCO,annual,kg,9d917f93-c811-3317-bed4-945da11d5bc7 -2019,San Luis,II.1.1,63.679559999999995,TJ,CH4,3.9,kg/TJ,248.350284,Gas Oil combustion consumption by freight transport,AR-D,SESCO,annual,kg,0f2e5994-f56c-365c-a42c-c4a522bb43c9 -2019,San Luis,II.1.1,63.679559999999995,TJ,N2O,3.9,kg/TJ,248.350284,Gas Oil combustion consumption by freight transport,AR-D,SESCO,annual,kg,0f2e5994-f56c-365c-a42c-c4a522bb43c9 -2019,Santa Cruz,II.1.1,3.9732,TJ,CO2,74100.0,kg/TJ,294414.12,Gas Oil combustion consumption by freight transport,AR-Z,SESCO,annual,kg,5f3ca0dd-9b49-3a06-8456-ed8effbede62 -2019,Santa Cruz,II.1.1,3.9732,TJ,CH4,3.9,kg/TJ,15.495479999999999,Gas Oil combustion consumption by freight transport,AR-Z,SESCO,annual,kg,bd2cf906-6593-3d34-9c3b-6f37a151f1fd -2019,Santa Cruz,II.1.1,3.9732,TJ,N2O,3.9,kg/TJ,15.495479999999999,Gas Oil combustion consumption by freight transport,AR-Z,SESCO,annual,kg,bd2cf906-6593-3d34-9c3b-6f37a151f1fd -2019,Santa Fe,II.1.1,425.60195999999996,TJ,CO2,74100.0,kg/TJ,31537105.235999998,Gas Oil combustion consumption by freight transport,AR-S,SESCO,annual,kg,25280dd6-dd0e-387a-a64f-f64ed4debbd6 -2019,Santa Fe,II.1.1,425.60195999999996,TJ,CH4,3.9,kg/TJ,1659.8476439999997,Gas Oil combustion consumption by freight transport,AR-S,SESCO,annual,kg,a6fa6e6a-1c28-3b3a-9917-b191b98e66a3 -2019,Santa Fe,II.1.1,425.60195999999996,TJ,N2O,3.9,kg/TJ,1659.8476439999997,Gas Oil combustion consumption by freight transport,AR-S,SESCO,annual,kg,a6fa6e6a-1c28-3b3a-9917-b191b98e66a3 -2019,Santiago del Estero,II.1.1,76.68276,TJ,CO2,74100.0,kg/TJ,5682192.516,Gas Oil combustion consumption by freight transport,AR-G,SESCO,annual,kg,6cb2e463-2da8-3d1e-a182-ccc539c1d094 -2019,Santiago del Estero,II.1.1,76.68276,TJ,CH4,3.9,kg/TJ,299.062764,Gas Oil combustion consumption by freight transport,AR-G,SESCO,annual,kg,4e0266f8-1005-39ea-b82c-bd51dfea3b88 -2019,Santiago del Estero,II.1.1,76.68276,TJ,N2O,3.9,kg/TJ,299.062764,Gas Oil combustion consumption by freight transport,AR-G,SESCO,annual,kg,4e0266f8-1005-39ea-b82c-bd51dfea3b88 -2019,Tierra del Fuego,II.1.1,5.345759999999999,TJ,CO2,74100.0,kg/TJ,396120.81599999993,Gas Oil combustion consumption by freight transport,AR-V,SESCO,annual,kg,4ef45a1d-a132-35f4-abc7-a47941ad4348 -2019,Tierra del Fuego,II.1.1,5.345759999999999,TJ,CH4,3.9,kg/TJ,20.848463999999996,Gas Oil combustion consumption by freight transport,AR-V,SESCO,annual,kg,9d667fad-e2d4-3c83-9ffe-8c63e2394727 -2019,Tierra del Fuego,II.1.1,5.345759999999999,TJ,N2O,3.9,kg/TJ,20.848463999999996,Gas Oil combustion consumption by freight transport,AR-V,SESCO,annual,kg,9d667fad-e2d4-3c83-9ffe-8c63e2394727 -2019,Tucuman,II.1.1,37.2036,TJ,CO2,74100.0,kg/TJ,2756786.7600000002,Gas Oil combustion consumption by freight transport,AR-T,SESCO,annual,kg,e2137792-6453-3e1b-851e-3cc3d1719a3d -2019,Tucuman,II.1.1,37.2036,TJ,CH4,3.9,kg/TJ,145.09404,Gas Oil combustion consumption by freight transport,AR-T,SESCO,annual,kg,e8a1f6c5-3265-35a9-bd55-bf406b25829f -2019,Tucuman,II.1.1,37.2036,TJ,N2O,3.9,kg/TJ,145.09404,Gas Oil combustion consumption by freight transport,AR-T,SESCO,annual,kg,e8a1f6c5-3265-35a9-bd55-bf406b25829f -2019,Buenos Aires,II.1.1,220.47647999999998,TJ,CO2,74100.0,kg/TJ,16337307.167999998,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,79918091-c5a1-318e-a89c-b902cd3b6d85 -2019,Buenos Aires,II.1.1,220.47647999999998,TJ,CH4,3.9,kg/TJ,859.8582719999999,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,c3eff962-f330-3b0d-88ca-a42c23eff321 -2019,Buenos Aires,II.1.1,220.47647999999998,TJ,N2O,3.9,kg/TJ,859.8582719999999,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,c3eff962-f330-3b0d-88ca-a42c23eff321 -2019,Capital Federal,II.1.1,15.42324,TJ,CO2,74100.0,kg/TJ,1142862.084,Gas Oil combustion consumption by freight transport,AR-C,SESCO,annual,kg,36e28089-5851-30b0-912e-85d186bf22e6 -2019,Capital Federal,II.1.1,15.42324,TJ,CH4,3.9,kg/TJ,60.150636,Gas Oil combustion consumption by freight transport,AR-C,SESCO,annual,kg,42b2de08-550f-3c2f-bc50-ea5fc96b531f -2019,Capital Federal,II.1.1,15.42324,TJ,N2O,3.9,kg/TJ,60.150636,Gas Oil combustion consumption by freight transport,AR-C,SESCO,annual,kg,42b2de08-550f-3c2f-bc50-ea5fc96b531f -2019,Catamarca,II.1.1,0.9029999999999999,TJ,CO2,74100.0,kg/TJ,66912.29999999999,Gas Oil combustion consumption by freight transport,AR-K,SESCO,annual,kg,4ed537d0-3fd9-3c20-a82a-ad564d5fa9d1 -2019,Catamarca,II.1.1,0.9029999999999999,TJ,CH4,3.9,kg/TJ,3.5216999999999996,Gas Oil combustion consumption by freight transport,AR-K,SESCO,annual,kg,9037f199-e754-3821-9c64-87813a989bc3 -2019,Catamarca,II.1.1,0.9029999999999999,TJ,N2O,3.9,kg/TJ,3.5216999999999996,Gas Oil combustion consumption by freight transport,AR-K,SESCO,annual,kg,9037f199-e754-3821-9c64-87813a989bc3 -2019,Chaco,II.1.1,2.38392,TJ,CO2,74100.0,kg/TJ,176648.47199999998,Gas Oil combustion consumption by freight transport,AR-H,SESCO,annual,kg,70f0370f-4362-3e24-9399-2403502c29a2 -2019,Chaco,II.1.1,2.38392,TJ,CH4,3.9,kg/TJ,9.297287999999998,Gas Oil combustion consumption by freight transport,AR-H,SESCO,annual,kg,6bb66e86-b86f-3dd2-ad9c-e4d11603136c -2019,Chaco,II.1.1,2.38392,TJ,N2O,3.9,kg/TJ,9.297287999999998,Gas Oil combustion consumption by freight transport,AR-H,SESCO,annual,kg,6bb66e86-b86f-3dd2-ad9c-e4d11603136c -2019,Chubut,II.1.1,24.525479999999998,TJ,CO2,74100.0,kg/TJ,1817338.068,Gas Oil combustion consumption by freight transport,AR-U,SESCO,annual,kg,07c1be8b-3113-35be-b888-50023ef002c7 -2019,Chubut,II.1.1,24.525479999999998,TJ,CH4,3.9,kg/TJ,95.64937199999999,Gas Oil combustion consumption by freight transport,AR-U,SESCO,annual,kg,d29082b0-f28c-3fc2-ba65-f99bb632d60c -2019,Chubut,II.1.1,24.525479999999998,TJ,N2O,3.9,kg/TJ,95.64937199999999,Gas Oil combustion consumption by freight transport,AR-U,SESCO,annual,kg,d29082b0-f28c-3fc2-ba65-f99bb632d60c -2019,Corrientes,II.1.1,6.6460799999999995,TJ,CO2,74100.0,kg/TJ,492474.528,Gas Oil combustion consumption by freight transport,AR-W,SESCO,annual,kg,557c2eff-f4b1-3e28-aaf4-45d8543c4df9 -2019,Corrientes,II.1.1,6.6460799999999995,TJ,CH4,3.9,kg/TJ,25.919711999999997,Gas Oil combustion consumption by freight transport,AR-W,SESCO,annual,kg,b92c3f3d-f448-3fae-b05f-62bf30dd5976 -2019,Corrientes,II.1.1,6.6460799999999995,TJ,N2O,3.9,kg/TJ,25.919711999999997,Gas Oil combustion consumption by freight transport,AR-W,SESCO,annual,kg,b92c3f3d-f448-3fae-b05f-62bf30dd5976 -2019,Córdoba,II.1.1,17.6988,TJ,CO2,74100.0,kg/TJ,1311481.0799999998,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,a5ee9135-76a9-3fa3-a5af-c7cac902da9a -2019,Córdoba,II.1.1,17.6988,TJ,CH4,3.9,kg/TJ,69.02532,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,a230107e-6e59-38af-aa19-53a4b00a8d00 -2019,Córdoba,II.1.1,17.6988,TJ,N2O,3.9,kg/TJ,69.02532,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,a230107e-6e59-38af-aa19-53a4b00a8d00 -2019,Entre Rios,II.1.1,12.71424,TJ,CO2,74100.0,kg/TJ,942125.184,Gas Oil combustion consumption by freight transport,AR-E,SESCO,annual,kg,adafe3af-0b7f-3186-bdee-16ed0994a726 -2019,Entre Rios,II.1.1,12.71424,TJ,CH4,3.9,kg/TJ,49.585536,Gas Oil combustion consumption by freight transport,AR-E,SESCO,annual,kg,20713b6b-4691-3f96-9351-2681db66be3a -2019,Entre Rios,II.1.1,12.71424,TJ,N2O,3.9,kg/TJ,49.585536,Gas Oil combustion consumption by freight transport,AR-E,SESCO,annual,kg,20713b6b-4691-3f96-9351-2681db66be3a -2019,Formosa,II.1.1,0.28896,TJ,CO2,74100.0,kg/TJ,21411.935999999998,Gas Oil combustion consumption by freight transport,AR-P,SESCO,annual,kg,b751b380-81d8-3e76-8144-642ee9fc0e30 -2019,Formosa,II.1.1,0.28896,TJ,CH4,3.9,kg/TJ,1.126944,Gas Oil combustion consumption by freight transport,AR-P,SESCO,annual,kg,2cd82097-6684-3c9f-be50-61ad2dd06ea7 -2019,Formosa,II.1.1,0.28896,TJ,N2O,3.9,kg/TJ,1.126944,Gas Oil combustion consumption by freight transport,AR-P,SESCO,annual,kg,2cd82097-6684-3c9f-be50-61ad2dd06ea7 -2019,Jujuy,II.1.1,0.68628,TJ,CO2,74100.0,kg/TJ,50853.348,Gas Oil combustion consumption by freight transport,AR-Y,SESCO,annual,kg,82fc3e37-b9c3-3b84-a057-aec5bbe2f957 -2019,Jujuy,II.1.1,0.68628,TJ,CH4,3.9,kg/TJ,2.676492,Gas Oil combustion consumption by freight transport,AR-Y,SESCO,annual,kg,21dee597-20e6-3deb-9201-f71f1ab06f8b -2019,Jujuy,II.1.1,0.68628,TJ,N2O,3.9,kg/TJ,2.676492,Gas Oil combustion consumption by freight transport,AR-Y,SESCO,annual,kg,21dee597-20e6-3deb-9201-f71f1ab06f8b -2019,La Pampa,II.1.1,1.6254,TJ,CO2,74100.0,kg/TJ,120442.14,Gas Oil combustion consumption by freight transport,AR-L,SESCO,annual,kg,d072ae01-f524-332e-ab25-afc736063007 -2019,La Pampa,II.1.1,1.6254,TJ,CH4,3.9,kg/TJ,6.33906,Gas Oil combustion consumption by freight transport,AR-L,SESCO,annual,kg,d3d7ae0a-7bd0-3581-a068-cd1f540abaf6 -2019,La Pampa,II.1.1,1.6254,TJ,N2O,3.9,kg/TJ,6.33906,Gas Oil combustion consumption by freight transport,AR-L,SESCO,annual,kg,d3d7ae0a-7bd0-3581-a068-cd1f540abaf6 -2019,La Rioja,II.1.1,0.32508,TJ,CO2,74100.0,kg/TJ,24088.428,Gas Oil combustion consumption by freight transport,AR-F,SESCO,annual,kg,4d0207c8-003a-3070-b823-7bf99abfea90 -2019,La Rioja,II.1.1,0.32508,TJ,CH4,3.9,kg/TJ,1.267812,Gas Oil combustion consumption by freight transport,AR-F,SESCO,annual,kg,981acc61-5047-3b2a-ba59-7b75c68c3990 -2019,La Rioja,II.1.1,0.32508,TJ,N2O,3.9,kg/TJ,1.267812,Gas Oil combustion consumption by freight transport,AR-F,SESCO,annual,kg,981acc61-5047-3b2a-ba59-7b75c68c3990 -2019,Mendoza,II.1.1,4.26216,TJ,CO2,74100.0,kg/TJ,315826.056,Gas Oil combustion consumption by freight transport,AR-M,SESCO,annual,kg,475a7fd8-27be-3b3a-be99-167eb3fc92f4 -2019,Mendoza,II.1.1,4.26216,TJ,CH4,3.9,kg/TJ,16.622424,Gas Oil combustion consumption by freight transport,AR-M,SESCO,annual,kg,b06eda9d-1ce6-3aff-bf2e-b0773bb6c2cb -2019,Mendoza,II.1.1,4.26216,TJ,N2O,3.9,kg/TJ,16.622424,Gas Oil combustion consumption by freight transport,AR-M,SESCO,annual,kg,b06eda9d-1ce6-3aff-bf2e-b0773bb6c2cb -2019,Misiones,II.1.1,4.8400799999999995,TJ,CO2,74100.0,kg/TJ,358649.92799999996,Gas Oil combustion consumption by freight transport,AR-N,SESCO,annual,kg,464a0685-9783-36d5-96d6-9137943e55ea -2019,Misiones,II.1.1,4.8400799999999995,TJ,CH4,3.9,kg/TJ,18.876312,Gas Oil combustion consumption by freight transport,AR-N,SESCO,annual,kg,195a7ff8-14ab-3c27-b832-df8ae9ddb4f5 -2019,Misiones,II.1.1,4.8400799999999995,TJ,N2O,3.9,kg/TJ,18.876312,Gas Oil combustion consumption by freight transport,AR-N,SESCO,annual,kg,195a7ff8-14ab-3c27-b832-df8ae9ddb4f5 -2019,Neuquén,II.1.1,0.25284,TJ,CO2,74100.0,kg/TJ,18735.444,Gas Oil combustion consumption by freight transport,AR-Q,SESCO,annual,kg,d88cc33a-e1dc-3611-9574-99ddce4844dc -2019,Neuquén,II.1.1,0.25284,TJ,CH4,3.9,kg/TJ,0.9860760000000001,Gas Oil combustion consumption by freight transport,AR-Q,SESCO,annual,kg,e00f1981-f6e2-3410-85ad-2c207faf9565 -2019,Neuquén,II.1.1,0.25284,TJ,N2O,3.9,kg/TJ,0.9860760000000001,Gas Oil combustion consumption by freight transport,AR-Q,SESCO,annual,kg,e00f1981-f6e2-3410-85ad-2c207faf9565 -2019,Rio Negro,II.1.1,10.33032,TJ,CO2,74100.0,kg/TJ,765476.712,Gas Oil combustion consumption by freight transport,AR-R,SESCO,annual,kg,31d887c4-2ca2-3289-b22b-28e1bcfabdac -2019,Rio Negro,II.1.1,10.33032,TJ,CH4,3.9,kg/TJ,40.288248,Gas Oil combustion consumption by freight transport,AR-R,SESCO,annual,kg,d3b46a3e-6a0e-3fc5-8ec4-3c352f223df7 -2019,Rio Negro,II.1.1,10.33032,TJ,N2O,3.9,kg/TJ,40.288248,Gas Oil combustion consumption by freight transport,AR-R,SESCO,annual,kg,d3b46a3e-6a0e-3fc5-8ec4-3c352f223df7 -2019,Salta,II.1.1,0.65016,TJ,CO2,74100.0,kg/TJ,48176.856,Gas Oil combustion consumption by freight transport,AR-A,SESCO,annual,kg,b8b6675a-ff96-387b-88a1-85960185c734 -2019,Salta,II.1.1,0.65016,TJ,CH4,3.9,kg/TJ,2.535624,Gas Oil combustion consumption by freight transport,AR-A,SESCO,annual,kg,b40389e2-79f7-3f16-b046-a2a65916f5b8 -2019,Salta,II.1.1,0.65016,TJ,N2O,3.9,kg/TJ,2.535624,Gas Oil combustion consumption by freight transport,AR-A,SESCO,annual,kg,b40389e2-79f7-3f16-b046-a2a65916f5b8 -2019,San Juan,II.1.1,0.14448,TJ,CO2,74100.0,kg/TJ,10705.967999999999,Gas Oil combustion consumption by freight transport,AR-J,SESCO,annual,kg,c19a8881-7868-3df5-bbd5-9b1071ddd210 -2019,San Juan,II.1.1,0.14448,TJ,CH4,3.9,kg/TJ,0.563472,Gas Oil combustion consumption by freight transport,AR-J,SESCO,annual,kg,0c833d06-71a8-3521-97e1-29fd53d2648b -2019,San Juan,II.1.1,0.14448,TJ,N2O,3.9,kg/TJ,0.563472,Gas Oil combustion consumption by freight transport,AR-J,SESCO,annual,kg,0c833d06-71a8-3521-97e1-29fd53d2648b -2019,San Luis,II.1.1,10.61928,TJ,CO2,74100.0,kg/TJ,786888.648,Gas Oil combustion consumption by freight transport,AR-D,SESCO,annual,kg,4263e3c1-b6ec-3a34-b06e-8952dfb804c4 -2019,San Luis,II.1.1,10.61928,TJ,CH4,3.9,kg/TJ,41.415192,Gas Oil combustion consumption by freight transport,AR-D,SESCO,annual,kg,953df006-752a-3ecb-be11-38beea02eb3e -2019,San Luis,II.1.1,10.61928,TJ,N2O,3.9,kg/TJ,41.415192,Gas Oil combustion consumption by freight transport,AR-D,SESCO,annual,kg,953df006-752a-3ecb-be11-38beea02eb3e -2019,Santa Cruz,II.1.1,1.30032,TJ,CO2,74100.0,kg/TJ,96353.712,Gas Oil combustion consumption by freight transport,AR-Z,SESCO,annual,kg,711dc2f0-1077-33fb-8775-940b6b6fb66a -2019,Santa Cruz,II.1.1,1.30032,TJ,CH4,3.9,kg/TJ,5.071248,Gas Oil combustion consumption by freight transport,AR-Z,SESCO,annual,kg,dd7ce4c7-8d3e-3892-9d8e-b7bab88ba2e1 -2019,Santa Cruz,II.1.1,1.30032,TJ,N2O,3.9,kg/TJ,5.071248,Gas Oil combustion consumption by freight transport,AR-Z,SESCO,annual,kg,dd7ce4c7-8d3e-3892-9d8e-b7bab88ba2e1 -2019,Santa Fe,II.1.1,43.84968,TJ,CO2,74100.0,kg/TJ,3249261.288,Gas Oil combustion consumption by freight transport,AR-S,SESCO,annual,kg,1aa0eb56-2c35-3563-bead-43aa102b3cbf -2019,Santa Fe,II.1.1,43.84968,TJ,CH4,3.9,kg/TJ,171.01375199999998,Gas Oil combustion consumption by freight transport,AR-S,SESCO,annual,kg,e1062839-86e8-3f9e-b419-5865736fa0d2 -2019,Santa Fe,II.1.1,43.84968,TJ,N2O,3.9,kg/TJ,171.01375199999998,Gas Oil combustion consumption by freight transport,AR-S,SESCO,annual,kg,e1062839-86e8-3f9e-b419-5865736fa0d2 -2019,Santiago del Estero,II.1.1,6.35712,TJ,CO2,74100.0,kg/TJ,471062.592,Gas Oil combustion consumption by freight transport,AR-G,SESCO,annual,kg,fbc5e70b-e3f2-37d4-a3ec-be96d3feedd8 -2019,Santiago del Estero,II.1.1,6.35712,TJ,CH4,3.9,kg/TJ,24.792768,Gas Oil combustion consumption by freight transport,AR-G,SESCO,annual,kg,acc65f85-f07f-3e5b-97d0-899a035a1693 -2019,Santiago del Estero,II.1.1,6.35712,TJ,N2O,3.9,kg/TJ,24.792768,Gas Oil combustion consumption by freight transport,AR-G,SESCO,annual,kg,acc65f85-f07f-3e5b-97d0-899a035a1693 -2019,Tierra del Fuego,II.1.1,0.28896,TJ,CO2,74100.0,kg/TJ,21411.935999999998,Gas Oil combustion consumption by freight transport,AR-V,SESCO,annual,kg,f009434b-5391-3b91-8cab-61d1394a80ae -2019,Tierra del Fuego,II.1.1,0.28896,TJ,CH4,3.9,kg/TJ,1.126944,Gas Oil combustion consumption by freight transport,AR-V,SESCO,annual,kg,a9c6217a-fe4e-3418-ab5e-34f58ad1b625 -2019,Tierra del Fuego,II.1.1,0.28896,TJ,N2O,3.9,kg/TJ,1.126944,Gas Oil combustion consumption by freight transport,AR-V,SESCO,annual,kg,a9c6217a-fe4e-3418-ab5e-34f58ad1b625 -2019,Tucuman,II.1.1,13.545,TJ,CO2,74100.0,kg/TJ,1003684.5,Gas Oil combustion consumption by freight transport,AR-T,SESCO,annual,kg,08bf5562-0f5e-31ab-a018-23ac2731f45c -2019,Tucuman,II.1.1,13.545,TJ,CH4,3.9,kg/TJ,52.8255,Gas Oil combustion consumption by freight transport,AR-T,SESCO,annual,kg,5ff2fee6-2fb0-34b0-8aa6-fc6faf8cf735 -2019,Tucuman,II.1.1,13.545,TJ,N2O,3.9,kg/TJ,52.8255,Gas Oil combustion consumption by freight transport,AR-T,SESCO,annual,kg,5ff2fee6-2fb0-34b0-8aa6-fc6faf8cf735 -2019,Buenos Aires,II.1.1,11.067594999999999,TJ,CO2,73300.0,kg/TJ,811254.7135,Naphtha combustion consumption by freight transport,AR-B,SESCO,annual,kg,d8b1ec99-0410-39dd-86b5-42d88f5e51f0 -2019,Buenos Aires,II.1.1,11.067594999999999,TJ,CH4,0.5,kg/TJ,5.5337974999999995,Naphtha combustion consumption by freight transport,AR-B,SESCO,annual,kg,66682879-025f-3af0-b06d-1e8edeaf4f08 -2019,Buenos Aires,II.1.1,11.067594999999999,TJ,N2O,2.0,kg/TJ,22.135189999999998,Naphtha combustion consumption by freight transport,AR-B,SESCO,annual,kg,df7083bb-38a8-3439-bb21-903c803f64b2 -2019,Capital Federal,II.1.1,5.071219999999999,TJ,CO2,73300.0,kg/TJ,371720.426,Naphtha combustion consumption by freight transport,AR-C,SESCO,annual,kg,e4232568-0be6-363a-b36e-0ce2363acbe4 -2019,Capital Federal,II.1.1,5.071219999999999,TJ,CH4,0.5,kg/TJ,2.5356099999999997,Naphtha combustion consumption by freight transport,AR-C,SESCO,annual,kg,67f6409b-45d4-3dc7-8d14-e6a05713ec2e -2019,Capital Federal,II.1.1,5.071219999999999,TJ,N2O,2.0,kg/TJ,10.142439999999999,Naphtha combustion consumption by freight transport,AR-C,SESCO,annual,kg,1b0896bd-f1f0-3f95-9dd0-26ebf433430d -2019,Córdoba,II.1.1,1.57619,TJ,CO2,73300.0,kg/TJ,115534.727,Naphtha combustion consumption by freight transport,AR-X,SESCO,annual,kg,45d4d3ec-04f4-34e8-8400-d30df0fd491b -2019,Córdoba,II.1.1,1.57619,TJ,CH4,0.5,kg/TJ,0.788095,Naphtha combustion consumption by freight transport,AR-X,SESCO,annual,kg,1152cfee-b813-3e75-a013-43f79d229746 -2019,Córdoba,II.1.1,1.57619,TJ,N2O,2.0,kg/TJ,3.15238,Naphtha combustion consumption by freight transport,AR-X,SESCO,annual,kg,bb952706-d910-362e-a489-11b7f17ac456 -2019,Entre Rios,II.1.1,0.30838499999999996,TJ,CO2,73300.0,kg/TJ,22604.620499999997,Naphtha combustion consumption by freight transport,AR-E,SESCO,annual,kg,c8e9b621-406a-3211-8a7a-2c7ee7d21b3b -2019,Entre Rios,II.1.1,0.30838499999999996,TJ,CH4,0.5,kg/TJ,0.15419249999999998,Naphtha combustion consumption by freight transport,AR-E,SESCO,annual,kg,38f5897d-3a1a-365c-be6b-778fcaa517c5 -2019,Entre Rios,II.1.1,0.30838499999999996,TJ,N2O,2.0,kg/TJ,0.6167699999999999,Naphtha combustion consumption by freight transport,AR-E,SESCO,annual,kg,ea0e6d72-e90e-3f6d-b12d-860eed03e34a -2019,Mendoza,II.1.1,0.20559,TJ,CO2,73300.0,kg/TJ,15069.747,Naphtha combustion consumption by freight transport,AR-M,SESCO,annual,kg,2d1e5c65-2e61-3f5f-8482-da5f5fcffd6f -2019,Mendoza,II.1.1,0.20559,TJ,CH4,0.5,kg/TJ,0.102795,Naphtha combustion consumption by freight transport,AR-M,SESCO,annual,kg,37030ee2-52a4-3a79-9db9-28e6ac56f390 -2019,Mendoza,II.1.1,0.20559,TJ,N2O,2.0,kg/TJ,0.41118,Naphtha combustion consumption by freight transport,AR-M,SESCO,annual,kg,010b4174-aba4-3178-adbe-0e591d94c6d6 -2019,Santa Fe,II.1.1,1.678985,TJ,CO2,73300.0,kg/TJ,123069.6005,Naphtha combustion consumption by freight transport,AR-S,SESCO,annual,kg,01d810b7-03cc-32d3-b9bb-436d1a651013 -2019,Santa Fe,II.1.1,1.678985,TJ,CH4,0.5,kg/TJ,0.8394925,Naphtha combustion consumption by freight transport,AR-S,SESCO,annual,kg,7c300bda-b744-34b3-a43c-b140c636833f -2019,Santa Fe,II.1.1,1.678985,TJ,N2O,2.0,kg/TJ,3.35797,Naphtha combustion consumption by freight transport,AR-S,SESCO,annual,kg,a7b4e598-8ee5-3c7b-9d94-1d72f166782f -2019,Buenos Aires,II.1.1,6.681674999999999,TJ,CO2,73300.0,kg/TJ,489766.77749999997,Naphtha combustion consumption by freight transport,AR-B,SESCO,annual,kg,fafc5b0c-6d29-3235-91ed-613277a44af8 -2019,Buenos Aires,II.1.1,6.681674999999999,TJ,CH4,0.5,kg/TJ,3.3408374999999997,Naphtha combustion consumption by freight transport,AR-B,SESCO,annual,kg,09f43f52-5586-339d-a01d-83cfb65c60fa -2019,Buenos Aires,II.1.1,6.681674999999999,TJ,N2O,2.0,kg/TJ,13.363349999999999,Naphtha combustion consumption by freight transport,AR-B,SESCO,annual,kg,72d1a093-ceb6-3e8e-a10e-088003ff3f65 -2019,Capital Federal,II.1.1,2.80973,TJ,CO2,73300.0,kg/TJ,205953.209,Naphtha combustion consumption by freight transport,AR-C,SESCO,annual,kg,5a145291-4629-353c-ba4d-d7f60095b467 -2019,Capital Federal,II.1.1,2.80973,TJ,CH4,0.5,kg/TJ,1.404865,Naphtha combustion consumption by freight transport,AR-C,SESCO,annual,kg,884268ff-aecc-3ae0-8916-1568939a731a -2019,Capital Federal,II.1.1,2.80973,TJ,N2O,2.0,kg/TJ,5.61946,Naphtha combustion consumption by freight transport,AR-C,SESCO,annual,kg,45340646-c154-3eee-9300-ab013f14a0b4 -2019,Chaco,II.1.1,0.034265,TJ,CO2,73300.0,kg/TJ,2511.6245,Naphtha combustion consumption by freight transport,AR-H,SESCO,annual,kg,9b3911a5-364c-30ff-ad52-a4c5f3f0eccd -2019,Chaco,II.1.1,0.034265,TJ,CH4,0.5,kg/TJ,0.0171325,Naphtha combustion consumption by freight transport,AR-H,SESCO,annual,kg,cf792043-323d-3be5-8e13-15cf4be88877 -2019,Chaco,II.1.1,0.034265,TJ,N2O,2.0,kg/TJ,0.06853,Naphtha combustion consumption by freight transport,AR-H,SESCO,annual,kg,560a6c85-e77d-3b4b-8c8b-cef597387b53 -2019,Corrientes,II.1.1,0.34265,TJ,CO2,73300.0,kg/TJ,25116.245,Naphtha combustion consumption by freight transport,AR-W,SESCO,annual,kg,75122ea5-c66d-363e-9445-ca9ef977d5a9 -2019,Corrientes,II.1.1,0.34265,TJ,CH4,0.5,kg/TJ,0.171325,Naphtha combustion consumption by freight transport,AR-W,SESCO,annual,kg,1370ab4e-98c0-3a08-9380-d86e2419d843 -2019,Corrientes,II.1.1,0.34265,TJ,N2O,2.0,kg/TJ,0.6853,Naphtha combustion consumption by freight transport,AR-W,SESCO,annual,kg,2372f826-6302-3ee2-8db6-a9497a48fe9b -2019,Córdoba,II.1.1,0.9936849999999999,TJ,CO2,73300.0,kg/TJ,72837.1105,Naphtha combustion consumption by freight transport,AR-X,SESCO,annual,kg,26370b89-8b93-37c4-a213-18f1943681fe -2019,Córdoba,II.1.1,0.9936849999999999,TJ,CH4,0.5,kg/TJ,0.49684249999999996,Naphtha combustion consumption by freight transport,AR-X,SESCO,annual,kg,5264c4e7-9395-32ec-977f-51c5f0521365 -2019,Córdoba,II.1.1,0.9936849999999999,TJ,N2O,2.0,kg/TJ,1.9873699999999999,Naphtha combustion consumption by freight transport,AR-X,SESCO,annual,kg,3c82f63b-73f8-3516-afea-343c902c0f30 -2019,Entre Rios,II.1.1,1.1650099999999999,TJ,CO2,73300.0,kg/TJ,85395.233,Naphtha combustion consumption by freight transport,AR-E,SESCO,annual,kg,dea98042-b7a6-36da-884d-ee60881965dc -2019,Entre Rios,II.1.1,1.1650099999999999,TJ,CH4,0.5,kg/TJ,0.5825049999999999,Naphtha combustion consumption by freight transport,AR-E,SESCO,annual,kg,af39276a-0e54-39d9-ad8c-8d5399dbcbd3 -2019,Entre Rios,II.1.1,1.1650099999999999,TJ,N2O,2.0,kg/TJ,2.3300199999999998,Naphtha combustion consumption by freight transport,AR-E,SESCO,annual,kg,153bd5c0-0b26-3d74-b4d9-68028dfad206 -2019,Santa Fe,II.1.1,1.473395,TJ,CO2,73300.0,kg/TJ,107999.8535,Naphtha combustion consumption by freight transport,AR-S,SESCO,annual,kg,b47f3c99-a995-3d01-8215-8ac176c3901f -2019,Santa Fe,II.1.1,1.473395,TJ,CH4,0.5,kg/TJ,0.7366975,Naphtha combustion consumption by freight transport,AR-S,SESCO,annual,kg,f46568ec-4065-3eb1-913f-17ccd35bd09b -2019,Santa Fe,II.1.1,1.473395,TJ,N2O,2.0,kg/TJ,2.94679,Naphtha combustion consumption by freight transport,AR-S,SESCO,annual,kg,3ac678ff-cbe5-3855-a259-6b370bb3a1d4 -2019,Buenos Aires,II.1.1,1675.17336,TJ,CO2,74100.0,kg/TJ,124130345.976,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,c5e547a0-80f2-3ce5-b126-33374fc5b4e2 -2019,Buenos Aires,II.1.1,1675.17336,TJ,CH4,3.9,kg/TJ,6533.176104,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,de966c40-ffff-3784-9eff-70829fad0af7 -2019,Buenos Aires,II.1.1,1675.17336,TJ,N2O,3.9,kg/TJ,6533.176104,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,de966c40-ffff-3784-9eff-70829fad0af7 -2019,Capital Federal,II.1.1,738.8346,TJ,CO2,74100.0,kg/TJ,54747643.86,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,f9eaa3d5-4eb9-35d2-8240-54e7f70fc846 -2019,Capital Federal,II.1.1,738.8346,TJ,CH4,3.9,kg/TJ,2881.45494,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,58818e04-7498-3329-9d7b-eeffdce46c8d -2019,Capital Federal,II.1.1,738.8346,TJ,N2O,3.9,kg/TJ,2881.45494,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,58818e04-7498-3329-9d7b-eeffdce46c8d -2019,Chaco,II.1.1,23.58636,TJ,CO2,74100.0,kg/TJ,1747749.2759999998,Gas Oil combustion consumption by public passenger transport,AR-H,SESCO,annual,kg,2e1bf3fb-8d1e-331f-b7a6-c93947813c1c -2019,Chaco,II.1.1,23.58636,TJ,CH4,3.9,kg/TJ,91.98680399999999,Gas Oil combustion consumption by public passenger transport,AR-H,SESCO,annual,kg,907eee34-f15b-3daa-a1fd-cb38eb3bd92e -2019,Chaco,II.1.1,23.58636,TJ,N2O,3.9,kg/TJ,91.98680399999999,Gas Oil combustion consumption by public passenger transport,AR-H,SESCO,annual,kg,907eee34-f15b-3daa-a1fd-cb38eb3bd92e -2019,Chubut,II.1.1,4.76784,TJ,CO2,74100.0,kg/TJ,353296.94399999996,Gas Oil combustion consumption by public passenger transport,AR-U,SESCO,annual,kg,1ca73b86-005c-323c-9c4c-f552a1f9e3a9 -2019,Chubut,II.1.1,4.76784,TJ,CH4,3.9,kg/TJ,18.594575999999996,Gas Oil combustion consumption by public passenger transport,AR-U,SESCO,annual,kg,18a65fa4-a5e8-3018-b50c-8e6bed87bcb4 -2019,Chubut,II.1.1,4.76784,TJ,N2O,3.9,kg/TJ,18.594575999999996,Gas Oil combustion consumption by public passenger transport,AR-U,SESCO,annual,kg,18a65fa4-a5e8-3018-b50c-8e6bed87bcb4 -2019,Corrientes,II.1.1,0.57792,TJ,CO2,74100.0,kg/TJ,42823.871999999996,Gas Oil combustion consumption by public passenger transport,AR-W,SESCO,annual,kg,9ab138d4-546f-33bc-8972-d411d127d675 -2019,Corrientes,II.1.1,0.57792,TJ,CH4,3.9,kg/TJ,2.253888,Gas Oil combustion consumption by public passenger transport,AR-W,SESCO,annual,kg,4617c8f5-b0e3-39b3-b5f2-4b8d79287972 -2019,Corrientes,II.1.1,0.57792,TJ,N2O,3.9,kg/TJ,2.253888,Gas Oil combustion consumption by public passenger transport,AR-W,SESCO,annual,kg,4617c8f5-b0e3-39b3-b5f2-4b8d79287972 -2019,Córdoba,II.1.1,277.83504,TJ,CO2,74100.0,kg/TJ,20587576.463999998,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,e2c6f16a-9165-385e-b324-6c9186f634b2 -2019,Córdoba,II.1.1,277.83504,TJ,CH4,3.9,kg/TJ,1083.556656,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,aa3e6710-e169-312e-b0a6-1b34b5781f43 -2019,Córdoba,II.1.1,277.83504,TJ,N2O,3.9,kg/TJ,1083.556656,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,aa3e6710-e169-312e-b0a6-1b34b5781f43 -2019,Entre Rios,II.1.1,44.68044,TJ,CO2,74100.0,kg/TJ,3310820.604,Gas Oil combustion consumption by public passenger transport,AR-E,SESCO,annual,kg,207737b4-ed49-3c65-87a0-aa8f06014df0 -2019,Entre Rios,II.1.1,44.68044,TJ,CH4,3.9,kg/TJ,174.253716,Gas Oil combustion consumption by public passenger transport,AR-E,SESCO,annual,kg,e74b9afb-646e-3187-a42c-201d6b80fcb9 -2019,Entre Rios,II.1.1,44.68044,TJ,N2O,3.9,kg/TJ,174.253716,Gas Oil combustion consumption by public passenger transport,AR-E,SESCO,annual,kg,e74b9afb-646e-3187-a42c-201d6b80fcb9 -2019,Formosa,II.1.1,7.80192,TJ,CO2,74100.0,kg/TJ,578122.272,Gas Oil combustion consumption by public passenger transport,AR-P,SESCO,annual,kg,46d97b69-511f-3157-bd1b-3297a2389839 -2019,Formosa,II.1.1,7.80192,TJ,CH4,3.9,kg/TJ,30.427488,Gas Oil combustion consumption by public passenger transport,AR-P,SESCO,annual,kg,c65dbd18-e00f-3cfe-a74e-27d4f013c07a -2019,Formosa,II.1.1,7.80192,TJ,N2O,3.9,kg/TJ,30.427488,Gas Oil combustion consumption by public passenger transport,AR-P,SESCO,annual,kg,c65dbd18-e00f-3cfe-a74e-27d4f013c07a -2019,La Pampa,II.1.1,4.55112,TJ,CO2,74100.0,kg/TJ,337237.992,Gas Oil combustion consumption by public passenger transport,AR-L,SESCO,annual,kg,27afe1be-e39b-30eb-92f6-d0a7cb2cc795 -2019,La Pampa,II.1.1,4.55112,TJ,CH4,3.9,kg/TJ,17.749368,Gas Oil combustion consumption by public passenger transport,AR-L,SESCO,annual,kg,3489c499-9c7d-316d-8a8c-ae475d04d7c8 -2019,La Pampa,II.1.1,4.55112,TJ,N2O,3.9,kg/TJ,17.749368,Gas Oil combustion consumption by public passenger transport,AR-L,SESCO,annual,kg,3489c499-9c7d-316d-8a8c-ae475d04d7c8 -2019,Mendoza,II.1.1,8.126999999999999,TJ,CO2,74100.0,kg/TJ,602210.7,Gas Oil combustion consumption by public passenger transport,AR-M,SESCO,annual,kg,fd268c90-5792-3992-b4a4-6129ad1d37f9 -2019,Mendoza,II.1.1,8.126999999999999,TJ,CH4,3.9,kg/TJ,31.695299999999996,Gas Oil combustion consumption by public passenger transport,AR-M,SESCO,annual,kg,a35b4336-5970-3b59-b81e-02882c775e72 -2019,Mendoza,II.1.1,8.126999999999999,TJ,N2O,3.9,kg/TJ,31.695299999999996,Gas Oil combustion consumption by public passenger transport,AR-M,SESCO,annual,kg,a35b4336-5970-3b59-b81e-02882c775e72 -2019,Misiones,II.1.1,55.48032,TJ,CO2,74100.0,kg/TJ,4111091.712,Gas Oil combustion consumption by public passenger transport,AR-N,SESCO,annual,kg,8f6ce71a-dd34-3b28-977a-bde4007ff23c -2019,Misiones,II.1.1,55.48032,TJ,CH4,3.9,kg/TJ,216.373248,Gas Oil combustion consumption by public passenger transport,AR-N,SESCO,annual,kg,957b26ee-19b0-38b1-9131-62120ecd356d -2019,Misiones,II.1.1,55.48032,TJ,N2O,3.9,kg/TJ,216.373248,Gas Oil combustion consumption by public passenger transport,AR-N,SESCO,annual,kg,957b26ee-19b0-38b1-9131-62120ecd356d -2019,Neuquén,II.1.1,3.5758799999999997,TJ,CO2,74100.0,kg/TJ,264972.708,Gas Oil combustion consumption by public passenger transport,AR-Q,SESCO,annual,kg,a813608e-7b68-3729-8a17-21434620c704 -2019,Neuquén,II.1.1,3.5758799999999997,TJ,CH4,3.9,kg/TJ,13.945931999999999,Gas Oil combustion consumption by public passenger transport,AR-Q,SESCO,annual,kg,07c6cd0a-a684-31fe-b9b7-f0154d71e270 -2019,Neuquén,II.1.1,3.5758799999999997,TJ,N2O,3.9,kg/TJ,13.945931999999999,Gas Oil combustion consumption by public passenger transport,AR-Q,SESCO,annual,kg,07c6cd0a-a684-31fe-b9b7-f0154d71e270 -2019,Rio Negro,II.1.1,12.244679999999999,TJ,CO2,74100.0,kg/TJ,907330.788,Gas Oil combustion consumption by public passenger transport,AR-R,SESCO,annual,kg,754e90b5-1a29-3341-9309-aab37e1f0292 -2019,Rio Negro,II.1.1,12.244679999999999,TJ,CH4,3.9,kg/TJ,47.754251999999994,Gas Oil combustion consumption by public passenger transport,AR-R,SESCO,annual,kg,94462824-89cd-3e77-aca8-a4ba24a2f75b -2019,Rio Negro,II.1.1,12.244679999999999,TJ,N2O,3.9,kg/TJ,47.754251999999994,Gas Oil combustion consumption by public passenger transport,AR-R,SESCO,annual,kg,94462824-89cd-3e77-aca8-a4ba24a2f75b -2019,Salta,II.1.1,1.19196,TJ,CO2,74100.0,kg/TJ,88324.23599999999,Gas Oil combustion consumption by public passenger transport,AR-A,SESCO,annual,kg,9b89af07-0a00-308c-a525-5eb9e1b000a8 -2019,Salta,II.1.1,1.19196,TJ,CH4,3.9,kg/TJ,4.648643999999999,Gas Oil combustion consumption by public passenger transport,AR-A,SESCO,annual,kg,83d70007-07f1-334b-a0fb-ea6a43f9a113 -2019,Salta,II.1.1,1.19196,TJ,N2O,3.9,kg/TJ,4.648643999999999,Gas Oil combustion consumption by public passenger transport,AR-A,SESCO,annual,kg,83d70007-07f1-334b-a0fb-ea6a43f9a113 -2019,San Luis,II.1.1,0.25284,TJ,CO2,74100.0,kg/TJ,18735.444,Gas Oil combustion consumption by public passenger transport,AR-D,SESCO,annual,kg,d1655122-ba7c-3b9c-b821-23ebd81ca9a2 -2019,San Luis,II.1.1,0.25284,TJ,CH4,3.9,kg/TJ,0.9860760000000001,Gas Oil combustion consumption by public passenger transport,AR-D,SESCO,annual,kg,7093472b-507e-3802-a42b-8c0bf0b5fb6c -2019,San Luis,II.1.1,0.25284,TJ,N2O,3.9,kg/TJ,0.9860760000000001,Gas Oil combustion consumption by public passenger transport,AR-D,SESCO,annual,kg,7093472b-507e-3802-a42b-8c0bf0b5fb6c -2019,Santa Fe,II.1.1,307.7424,TJ,CO2,74100.0,kg/TJ,22803711.84,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,ce0fb43e-f5b1-3107-83a9-1f2b43a6f4d8 -2019,Santa Fe,II.1.1,307.7424,TJ,CH4,3.9,kg/TJ,1200.19536,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,380f75a6-4364-330c-838f-c26273baea5c -2019,Santa Fe,II.1.1,307.7424,TJ,N2O,3.9,kg/TJ,1200.19536,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,380f75a6-4364-330c-838f-c26273baea5c -2019,Santiago del Estero,II.1.1,0.86688,TJ,CO2,74100.0,kg/TJ,64235.808,Gas Oil combustion consumption by public passenger transport,AR-G,SESCO,annual,kg,c38b5acc-d360-32d8-9607-5e85c5d38490 -2019,Santiago del Estero,II.1.1,0.86688,TJ,CH4,3.9,kg/TJ,3.380832,Gas Oil combustion consumption by public passenger transport,AR-G,SESCO,annual,kg,235031e6-3bfa-34bb-bfa7-87dfe5447339 -2019,Santiago del Estero,II.1.1,0.86688,TJ,N2O,3.9,kg/TJ,3.380832,Gas Oil combustion consumption by public passenger transport,AR-G,SESCO,annual,kg,235031e6-3bfa-34bb-bfa7-87dfe5447339 -2019,Tucuman,II.1.1,311.67948,TJ,CO2,74100.0,kg/TJ,23095449.468000002,Gas Oil combustion consumption by public passenger transport,AR-T,SESCO,annual,kg,f68d9cc3-af63-3e8a-8606-64ebe6633bac -2019,Tucuman,II.1.1,311.67948,TJ,CH4,3.9,kg/TJ,1215.549972,Gas Oil combustion consumption by public passenger transport,AR-T,SESCO,annual,kg,32170180-82f8-3f80-a1dc-450ba3f04ee2 -2019,Tucuman,II.1.1,311.67948,TJ,N2O,3.9,kg/TJ,1215.549972,Gas Oil combustion consumption by public passenger transport,AR-T,SESCO,annual,kg,32170180-82f8-3f80-a1dc-450ba3f04ee2 -2019,Buenos Aires,II.1.1,445.03452,TJ,CO2,74100.0,kg/TJ,32977057.932,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,f831125d-b713-36a2-802c-9c82d6990177 -2019,Buenos Aires,II.1.1,445.03452,TJ,CH4,3.9,kg/TJ,1735.634628,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,4ea8f078-2617-356b-a5b6-0e02b88d83ca -2019,Buenos Aires,II.1.1,445.03452,TJ,N2O,3.9,kg/TJ,1735.634628,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,4ea8f078-2617-356b-a5b6-0e02b88d83ca -2019,Capital Federal,II.1.1,252.00923999999998,TJ,CO2,74100.0,kg/TJ,18673884.683999997,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,3763c652-311e-33ed-afb6-6e8403803754 -2019,Capital Federal,II.1.1,252.00923999999998,TJ,CH4,3.9,kg/TJ,982.8360359999999,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,8747c2a8-0175-3deb-b073-b66ad7962c2d -2019,Capital Federal,II.1.1,252.00923999999998,TJ,N2O,3.9,kg/TJ,982.8360359999999,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,8747c2a8-0175-3deb-b073-b66ad7962c2d -2019,Chubut,II.1.1,13.1838,TJ,CO2,74100.0,kg/TJ,976919.58,Gas Oil combustion consumption by public passenger transport,AR-U,SESCO,annual,kg,2ac08eea-7ebc-3b8e-8052-2c554306fef4 -2019,Chubut,II.1.1,13.1838,TJ,CH4,3.9,kg/TJ,51.41682,Gas Oil combustion consumption by public passenger transport,AR-U,SESCO,annual,kg,cbc0606b-0910-3480-a798-9f30cf48bfae -2019,Chubut,II.1.1,13.1838,TJ,N2O,3.9,kg/TJ,51.41682,Gas Oil combustion consumption by public passenger transport,AR-U,SESCO,annual,kg,cbc0606b-0910-3480-a798-9f30cf48bfae -2019,Corrientes,II.1.1,0.25284,TJ,CO2,74100.0,kg/TJ,18735.444,Gas Oil combustion consumption by public passenger transport,AR-W,SESCO,annual,kg,0354494c-5c8c-3661-957c-252edf68e61f -2019,Corrientes,II.1.1,0.25284,TJ,CH4,3.9,kg/TJ,0.9860760000000001,Gas Oil combustion consumption by public passenger transport,AR-W,SESCO,annual,kg,84fe2139-6d90-3674-99aa-dc1595dbd8cd -2019,Corrientes,II.1.1,0.25284,TJ,N2O,3.9,kg/TJ,0.9860760000000001,Gas Oil combustion consumption by public passenger transport,AR-W,SESCO,annual,kg,84fe2139-6d90-3674-99aa-dc1595dbd8cd -2019,Córdoba,II.1.1,25.861919999999998,TJ,CO2,74100.0,kg/TJ,1916368.2719999999,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,8b6185d3-d5fc-3d3e-8e45-c5bdd3ce6bd4 -2019,Córdoba,II.1.1,25.861919999999998,TJ,CH4,3.9,kg/TJ,100.861488,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,adf8e685-a98a-3f65-bfc3-ed66f0b3db80 -2019,Córdoba,II.1.1,25.861919999999998,TJ,N2O,3.9,kg/TJ,100.861488,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,adf8e685-a98a-3f65-bfc3-ed66f0b3db80 -2019,Entre Rios,II.1.1,1.30032,TJ,CO2,74100.0,kg/TJ,96353.712,Gas Oil combustion consumption by public passenger transport,AR-E,SESCO,annual,kg,699d24ff-b993-36d0-8fdd-6eb5464b26b2 -2019,Entre Rios,II.1.1,1.30032,TJ,CH4,3.9,kg/TJ,5.071248,Gas Oil combustion consumption by public passenger transport,AR-E,SESCO,annual,kg,9333fda9-3e51-3064-96ad-2e04f2a5c3d6 -2019,Entre Rios,II.1.1,1.30032,TJ,N2O,3.9,kg/TJ,5.071248,Gas Oil combustion consumption by public passenger transport,AR-E,SESCO,annual,kg,9333fda9-3e51-3064-96ad-2e04f2a5c3d6 -2019,La Pampa,II.1.1,6.1404,TJ,CO2,74100.0,kg/TJ,455003.63999999996,Gas Oil combustion consumption by public passenger transport,AR-L,SESCO,annual,kg,0e1735af-c357-39bd-a560-52f3d8fee8ac -2019,La Pampa,II.1.1,6.1404,TJ,CH4,3.9,kg/TJ,23.94756,Gas Oil combustion consumption by public passenger transport,AR-L,SESCO,annual,kg,c3c972c5-ff9f-396b-9801-b44f7e7c1187 -2019,La Pampa,II.1.1,6.1404,TJ,N2O,3.9,kg/TJ,23.94756,Gas Oil combustion consumption by public passenger transport,AR-L,SESCO,annual,kg,c3c972c5-ff9f-396b-9801-b44f7e7c1187 -2019,Mendoza,II.1.1,0.25284,TJ,CO2,74100.0,kg/TJ,18735.444,Gas Oil combustion consumption by public passenger transport,AR-M,SESCO,annual,kg,2741fac7-9f5e-3547-bea4-c5bfb284ad3b -2019,Mendoza,II.1.1,0.25284,TJ,CH4,3.9,kg/TJ,0.9860760000000001,Gas Oil combustion consumption by public passenger transport,AR-M,SESCO,annual,kg,fa05482d-d129-397e-8694-6c3c2bf89e39 -2019,Mendoza,II.1.1,0.25284,TJ,N2O,3.9,kg/TJ,0.9860760000000001,Gas Oil combustion consumption by public passenger transport,AR-M,SESCO,annual,kg,fa05482d-d129-397e-8694-6c3c2bf89e39 -2019,Misiones,II.1.1,22.86396,TJ,CO2,74100.0,kg/TJ,1694219.436,Gas Oil combustion consumption by public passenger transport,AR-N,SESCO,annual,kg,10194be2-81ec-3b29-9098-4eb4bd96dd05 -2019,Misiones,II.1.1,22.86396,TJ,CH4,3.9,kg/TJ,89.169444,Gas Oil combustion consumption by public passenger transport,AR-N,SESCO,annual,kg,4ce4aeb7-2c9f-3133-a9c8-97284ba14a0c -2019,Misiones,II.1.1,22.86396,TJ,N2O,3.9,kg/TJ,89.169444,Gas Oil combustion consumption by public passenger transport,AR-N,SESCO,annual,kg,4ce4aeb7-2c9f-3133-a9c8-97284ba14a0c -2019,Neuquén,II.1.1,27.956879999999998,TJ,CO2,74100.0,kg/TJ,2071604.808,Gas Oil combustion consumption by public passenger transport,AR-Q,SESCO,annual,kg,e9d2b28e-0bdf-3ccd-bffa-4f7195a8bafe -2019,Neuquén,II.1.1,27.956879999999998,TJ,CH4,3.9,kg/TJ,109.031832,Gas Oil combustion consumption by public passenger transport,AR-Q,SESCO,annual,kg,7563cfad-5d67-3510-a0fd-6ac0aac31df6 -2019,Neuquén,II.1.1,27.956879999999998,TJ,N2O,3.9,kg/TJ,109.031832,Gas Oil combustion consumption by public passenger transport,AR-Q,SESCO,annual,kg,7563cfad-5d67-3510-a0fd-6ac0aac31df6 -2019,Rio Negro,II.1.1,92.06988,TJ,CO2,74100.0,kg/TJ,6822378.108,Gas Oil combustion consumption by public passenger transport,AR-R,SESCO,annual,kg,d4988de1-fd94-38b5-b500-b91627aa1538 -2019,Rio Negro,II.1.1,92.06988,TJ,CH4,3.9,kg/TJ,359.07253199999997,Gas Oil combustion consumption by public passenger transport,AR-R,SESCO,annual,kg,efbbc200-e945-32cf-8b98-cd07593f09af -2019,Rio Negro,II.1.1,92.06988,TJ,N2O,3.9,kg/TJ,359.07253199999997,Gas Oil combustion consumption by public passenger transport,AR-R,SESCO,annual,kg,efbbc200-e945-32cf-8b98-cd07593f09af -2019,Salta,II.1.1,0.18059999999999998,TJ,CO2,74100.0,kg/TJ,13382.46,Gas Oil combustion consumption by public passenger transport,AR-A,SESCO,annual,kg,5ef3f57a-0596-3e0b-ac04-edb91389ef23 -2019,Salta,II.1.1,0.18059999999999998,TJ,CH4,3.9,kg/TJ,0.70434,Gas Oil combustion consumption by public passenger transport,AR-A,SESCO,annual,kg,c9f22fc0-245d-3da0-8b4e-b15e0d5c9c8b -2019,Salta,II.1.1,0.18059999999999998,TJ,N2O,3.9,kg/TJ,0.70434,Gas Oil combustion consumption by public passenger transport,AR-A,SESCO,annual,kg,c9f22fc0-245d-3da0-8b4e-b15e0d5c9c8b -2019,Santa Fe,II.1.1,20.11884,TJ,CO2,74100.0,kg/TJ,1490806.044,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,ca16f66a-031e-3a06-bbd2-8d2d7e869806 -2019,Santa Fe,II.1.1,20.11884,TJ,CH4,3.9,kg/TJ,78.463476,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,bdd946b5-e803-37b6-a74f-3c8c1add241f -2019,Santa Fe,II.1.1,20.11884,TJ,N2O,3.9,kg/TJ,78.463476,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,bdd946b5-e803-37b6-a74f-3c8c1add241f -2019,Santiago del Estero,II.1.1,0.10836,TJ,CO2,74100.0,kg/TJ,8029.476,Gas Oil combustion consumption by public passenger transport,AR-G,SESCO,annual,kg,4a796876-b32a-34d2-9ec2-57d047fb5e0b -2019,Santiago del Estero,II.1.1,0.10836,TJ,CH4,3.9,kg/TJ,0.422604,Gas Oil combustion consumption by public passenger transport,AR-G,SESCO,annual,kg,16848513-cf04-377a-a082-9697c9e54b0e -2019,Santiago del Estero,II.1.1,0.10836,TJ,N2O,3.9,kg/TJ,0.422604,Gas Oil combustion consumption by public passenger transport,AR-G,SESCO,annual,kg,16848513-cf04-377a-a082-9697c9e54b0e -2019,Santa Fe,II.1.1,0.513975,TJ,CO2,73300.0,kg/TJ,37674.3675,Naphtha combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,ae571cb5-b342-3439-81b6-36fb5306e68b -2019,Santa Fe,II.1.1,0.513975,TJ,CH4,0.5,kg/TJ,0.2569875,Naphtha combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,861e1036-0220-38f2-839d-f217852c3c15 -2019,Santa Fe,II.1.1,0.513975,TJ,N2O,2.0,kg/TJ,1.02795,Naphtha combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,eddcb05e-35c8-3912-b392-7931e21cf9f6 -2019,Buenos Aires,II.5.1,10.9421,TJ,CO2,69300.0,kg/TJ,758287.53,Motor Gasoline combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,b7d7ebb0-d40f-366e-b260-f7561d648648 -2019,Buenos Aires,II.5.1,10.9421,TJ,CH4,33.0,kg/TJ,361.0893,Motor Gasoline combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,039802b9-036c-321e-b2a2-0b074af514d7 -2019,Buenos Aires,II.5.1,10.9421,TJ,N2O,3.2,kg/TJ,35.014720000000004,Motor Gasoline combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,6ac9588d-2d14-3b56-8828-db40831dd428 -2019,Buenos Aires,II.5.1,373.58916,TJ,CO2,74100.0,kg/TJ,27682956.756,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,9def7f71-ca27-3e67-8705-53f96311507a -2019,Buenos Aires,II.5.1,373.58916,TJ,CH4,3.9,kg/TJ,1456.9977239999998,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,457a20c3-751f-3672-addb-1f9abb2d9235 -2019,Buenos Aires,II.5.1,373.58916,TJ,N2O,3.9,kg/TJ,1456.9977239999998,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,457a20c3-751f-3672-addb-1f9abb2d9235 -2019,Córdoba,II.5.1,19.324199999999998,TJ,CO2,74100.0,kg/TJ,1431923.2199999997,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,90f326ef-b70b-390b-be04-e4c8aa44978b -2019,Córdoba,II.5.1,19.324199999999998,TJ,CH4,3.9,kg/TJ,75.36437999999998,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,f9ff59f5-6575-3721-bf8d-f92c461b5d1a -2019,Córdoba,II.5.1,19.324199999999998,TJ,N2O,3.9,kg/TJ,75.36437999999998,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,f9ff59f5-6575-3721-bf8d-f92c461b5d1a -2019,Entre Rios,II.5.1,88.6746,TJ,CO2,74100.0,kg/TJ,6570787.859999999,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,75e5b74d-cf52-3e0d-a7b9-ec387c58f1c3 -2019,Entre Rios,II.5.1,88.6746,TJ,CH4,3.9,kg/TJ,345.83094,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,62fc58cb-021a-34bc-bad1-a78c4de9baee -2019,Entre Rios,II.5.1,88.6746,TJ,N2O,3.9,kg/TJ,345.83094,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,62fc58cb-021a-34bc-bad1-a78c4de9baee -2019,Santa Fe,II.5.1,33.80832,TJ,CO2,74100.0,kg/TJ,2505196.512,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,30f4ad56-a346-38e6-94c0-f1a15e72f857 -2019,Santa Fe,II.5.1,33.80832,TJ,CH4,3.9,kg/TJ,131.852448,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,bd5bd7d9-98ce-3cce-a089-0c707071e5fa -2019,Santa Fe,II.5.1,33.80832,TJ,N2O,3.9,kg/TJ,131.852448,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,bd5bd7d9-98ce-3cce-a089-0c707071e5fa -2019,Tucuman,II.5.1,102.61692,TJ,CO2,74100.0,kg/TJ,7603913.772,Gas Oil combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,707ff3a8-3a2d-32f1-9371-44e1570ddd8d -2019,Tucuman,II.5.1,102.61692,TJ,CH4,3.9,kg/TJ,400.205988,Gas Oil combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,fdb9f1f8-39cb-32f9-80f8-0cc96b57f8dd -2019,Tucuman,II.5.1,102.61692,TJ,N2O,3.9,kg/TJ,400.205988,Gas Oil combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,fdb9f1f8-39cb-32f9-80f8-0cc96b57f8dd -2019,Buenos Aires,II.5.1,14.23128,TJ,CO2,74100.0,kg/TJ,1054537.848,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,d90cb40e-c662-3b79-9334-85bb5765c7c2 -2019,Buenos Aires,II.5.1,14.23128,TJ,CH4,3.9,kg/TJ,55.501992,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,c9716791-9f86-3c06-9e93-c9521e9b3c6f -2019,Buenos Aires,II.5.1,14.23128,TJ,N2O,3.9,kg/TJ,55.501992,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,c9716791-9f86-3c06-9e93-c9521e9b3c6f -2019,Entre Rios,II.5.1,52.15728,TJ,CO2,74100.0,kg/TJ,3864854.448,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,17258df4-8227-3cc6-b243-7feb55df92cf -2019,Entre Rios,II.5.1,52.15728,TJ,CH4,3.9,kg/TJ,203.413392,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,1a09c922-1754-3ad4-a596-4f8cd545af0d -2019,Entre Rios,II.5.1,52.15728,TJ,N2O,3.9,kg/TJ,203.413392,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,1a09c922-1754-3ad4-a596-4f8cd545af0d -2019,Buenos Aires,II.5.1,1.130745,TJ,CO2,73300.0,kg/TJ,82883.60849999999,Naphtha combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,8c125708-4e8a-3562-b017-d7bdf197510d -2019,Buenos Aires,II.5.1,1.130745,TJ,CH4,0.5,kg/TJ,0.5653725,Naphtha combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,70fbc290-f335-3147-9bf2-f099895158d7 -2019,Buenos Aires,II.5.1,1.130745,TJ,N2O,2.0,kg/TJ,2.26149,Naphtha combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,cb05b7d1-33b4-3952-b06f-153e8bc61f5c -2019,Buenos Aires,II.5.1,0.6853,TJ,CO2,73300.0,kg/TJ,50232.49,Naphtha combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,58df6756-567f-367c-85d9-adf64060562d -2019,Buenos Aires,II.5.1,0.6853,TJ,CH4,0.5,kg/TJ,0.34265,Naphtha combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,52c1e932-ac9b-3c09-a179-c4f359c6896d -2019,Buenos Aires,II.5.1,0.6853,TJ,N2O,2.0,kg/TJ,1.3706,Naphtha combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,100993a5-8fc8-3ca5-9824-bdca45209b49 -2019,Buenos Aires,II.2.1,310.88484,TJ,CO2,74100.0,kg/TJ,23036566.644,Gas Oil combustion consumption by railway transport,AR-B,SESCO,annual,kg,a585d1a5-81f0-32da-b100-a6a499ccd105 -2019,Buenos Aires,II.2.1,310.88484,TJ,CH4,3.9,kg/TJ,1212.4508759999999,Gas Oil combustion consumption by railway transport,AR-B,SESCO,annual,kg,f6abcecb-859e-32c3-aa1d-e8bd5a6882ff -2019,Buenos Aires,II.2.1,310.88484,TJ,N2O,3.9,kg/TJ,1212.4508759999999,Gas Oil combustion consumption by railway transport,AR-B,SESCO,annual,kg,f6abcecb-859e-32c3-aa1d-e8bd5a6882ff -2019,Buenos Aires,II.1.1,10.454799999999999,TJ,CO2,69300.0,kg/TJ,724517.6399999999,Motor Gasoline combustion consumption by freight transport,AR-B,SESCO,annual,kg,dfbd14c4-9512-39a3-b520-424bc16c63bb -2019,Buenos Aires,II.1.1,10.454799999999999,TJ,CH4,33.0,kg/TJ,345.00839999999994,Motor Gasoline combustion consumption by freight transport,AR-B,SESCO,annual,kg,07106eb7-c3ed-3e46-ad6b-39af45aaf952 -2019,Buenos Aires,II.1.1,10.454799999999999,TJ,N2O,3.2,kg/TJ,33.45536,Motor Gasoline combustion consumption by freight transport,AR-B,SESCO,annual,kg,1f91b18f-dbe8-3d79-9dc5-3adb45be6a35 -2019,Santa Fe,II.1.1,13.6001,TJ,CO2,69300.0,kg/TJ,942486.9299999999,Motor Gasoline combustion consumption by freight transport,AR-S,SESCO,annual,kg,a3c9f806-0a99-341d-8644-214c516fc440 -2019,Santa Fe,II.1.1,13.6001,TJ,CH4,33.0,kg/TJ,448.8033,Motor Gasoline combustion consumption by freight transport,AR-S,SESCO,annual,kg,96802fc9-5dd0-3656-859b-04b36f6b73c6 -2019,Santa Fe,II.1.1,13.6001,TJ,N2O,3.2,kg/TJ,43.52032,Motor Gasoline combustion consumption by freight transport,AR-S,SESCO,annual,kg,07e3055f-691f-35d3-b004-f2459ff5b5b8 -2019,Buenos Aires,II.1.1,16.50684,TJ,CO2,74100.0,kg/TJ,1223156.844,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,2addce6d-aa09-3284-aa21-aa801a89f69b -2019,Buenos Aires,II.1.1,16.50684,TJ,CH4,3.9,kg/TJ,64.376676,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,7541dbe3-2028-3efc-8dd4-696f4453ee03 -2019,Buenos Aires,II.1.1,16.50684,TJ,N2O,3.9,kg/TJ,64.376676,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,7541dbe3-2028-3efc-8dd4-696f4453ee03 -2019,Capital Federal,II.1.1,80.0058,TJ,CO2,74100.0,kg/TJ,5928429.779999999,Gas Oil combustion consumption by freight transport,AR-C,SESCO,annual,kg,0bb82d60-dd94-3a05-856e-467dcc819397 -2019,Capital Federal,II.1.1,80.0058,TJ,CH4,3.9,kg/TJ,312.02261999999996,Gas Oil combustion consumption by freight transport,AR-C,SESCO,annual,kg,e6cefbb2-d3bd-3ab5-88c9-ab20760cfdf9 -2019,Capital Federal,II.1.1,80.0058,TJ,N2O,3.9,kg/TJ,312.02261999999996,Gas Oil combustion consumption by freight transport,AR-C,SESCO,annual,kg,e6cefbb2-d3bd-3ab5-88c9-ab20760cfdf9 -2019,Córdoba,II.1.1,47.06436,TJ,CO2,74100.0,kg/TJ,3487469.076,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,99030f57-bac2-3c46-a600-e28cd128e04d -2019,Córdoba,II.1.1,47.06436,TJ,CH4,3.9,kg/TJ,183.551004,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,5b950dc6-8053-3352-9a83-ec0d87f14e05 -2019,Córdoba,II.1.1,47.06436,TJ,N2O,3.9,kg/TJ,183.551004,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,5b950dc6-8053-3352-9a83-ec0d87f14e05 -2019,Córdoba,II.1.1,1.73376,TJ,CO2,74100.0,kg/TJ,128471.616,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,0acb401a-4f87-3663-9956-d379b895d837 -2019,Córdoba,II.1.1,1.73376,TJ,CH4,3.9,kg/TJ,6.761664,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,13a54ffc-541b-3f8b-9df3-7f7e9fc2629c -2019,Córdoba,II.1.1,1.73376,TJ,N2O,3.9,kg/TJ,6.761664,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,13a54ffc-541b-3f8b-9df3-7f7e9fc2629c -2019,Buenos Aires,II.1.1,4593.199799999999,TJ,CO2,74100.0,kg/TJ,340356105.17999995,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,f8666f93-17c1-3489-8657-18d002c17097 -2019,Buenos Aires,II.1.1,4593.199799999999,TJ,CH4,3.9,kg/TJ,17913.479219999997,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,7706f0fc-fb13-36db-be8a-f73c9eadb377 -2019,Buenos Aires,II.1.1,4593.199799999999,TJ,N2O,3.9,kg/TJ,17913.479219999997,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,7706f0fc-fb13-36db-be8a-f73c9eadb377 -2019,Capital Federal,II.1.1,613.1731199999999,TJ,CO2,74100.0,kg/TJ,45436128.191999994,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,2c3223f9-5dc3-34f2-aec8-6a4746b1aa0d -2019,Capital Federal,II.1.1,613.1731199999999,TJ,CH4,3.9,kg/TJ,2391.3751679999996,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,0aa348a7-c145-3328-a701-b9355257309f -2019,Capital Federal,II.1.1,613.1731199999999,TJ,N2O,3.9,kg/TJ,2391.3751679999996,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,0aa348a7-c145-3328-a701-b9355257309f -2019,Misiones,II.1.1,1.3364399999999999,TJ,CO2,74100.0,kg/TJ,99030.20399999998,Gas Oil combustion consumption by public passenger transport,AR-N,SESCO,annual,kg,7c2241a8-1ac9-3952-8705-3e640fb536cb -2019,Misiones,II.1.1,1.3364399999999999,TJ,CH4,3.9,kg/TJ,5.212115999999999,Gas Oil combustion consumption by public passenger transport,AR-N,SESCO,annual,kg,a628d1c6-227f-3017-b892-db83e9ea7937 -2019,Misiones,II.1.1,1.3364399999999999,TJ,N2O,3.9,kg/TJ,5.212115999999999,Gas Oil combustion consumption by public passenger transport,AR-N,SESCO,annual,kg,a628d1c6-227f-3017-b892-db83e9ea7937 -2019,Santa Fe,II.1.1,20.84124,TJ,CO2,74100.0,kg/TJ,1544335.8839999998,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,56d88f1e-207c-3db1-afbd-0a2cafa79c91 -2019,Santa Fe,II.1.1,20.84124,TJ,CH4,3.9,kg/TJ,81.280836,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,fe622026-227e-3a1d-8788-f54a5ccc0ed2 -2019,Santa Fe,II.1.1,20.84124,TJ,N2O,3.9,kg/TJ,81.280836,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,fe622026-227e-3a1d-8788-f54a5ccc0ed2 -2019,Buenos Aires,II.1.1,1118.49192,TJ,CO2,74100.0,kg/TJ,82880251.272,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,acc66805-6d73-3e98-9891-4841f885faff -2019,Buenos Aires,II.1.1,1118.49192,TJ,CH4,3.9,kg/TJ,4362.118488,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,351c8f35-1d0a-3f0d-ae4c-fb1540825f16 -2019,Buenos Aires,II.1.1,1118.49192,TJ,N2O,3.9,kg/TJ,4362.118488,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,351c8f35-1d0a-3f0d-ae4c-fb1540825f16 -2019,Capital Federal,II.1.1,116.73984,TJ,CO2,74100.0,kg/TJ,8650422.144,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,27998ae0-8112-346f-b5fe-f7d8994ae82d -2019,Capital Federal,II.1.1,116.73984,TJ,CH4,3.9,kg/TJ,455.285376,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,0cc3f360-27f9-3e24-a235-f8c02a3af675 -2019,Capital Federal,II.1.1,116.73984,TJ,N2O,3.9,kg/TJ,455.285376,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,0cc3f360-27f9-3e24-a235-f8c02a3af675 -2019,Corrientes,II.1.1,75.67139999999999,TJ,CO2,74100.0,kg/TJ,5607250.739999999,Gas Oil combustion consumption by public passenger transport,AR-W,SESCO,annual,kg,54c786bb-39b6-3a0d-950e-25abb678ce17 -2019,Corrientes,II.1.1,75.67139999999999,TJ,CH4,3.9,kg/TJ,295.11845999999997,Gas Oil combustion consumption by public passenger transport,AR-W,SESCO,annual,kg,ee4229ed-2f28-3d1e-982d-89cec7ad60fb -2019,Corrientes,II.1.1,75.67139999999999,TJ,N2O,3.9,kg/TJ,295.11845999999997,Gas Oil combustion consumption by public passenger transport,AR-W,SESCO,annual,kg,ee4229ed-2f28-3d1e-982d-89cec7ad60fb -2019,Santa Fe,II.1.1,38.50392,TJ,CO2,74100.0,kg/TJ,2853140.472,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,0aa16a84-f713-3a78-9e82-48d776626718 -2019,Santa Fe,II.1.1,38.50392,TJ,CH4,3.9,kg/TJ,150.165288,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,4983bfc2-cf99-39aa-9b22-be12f13b2cc3 -2019,Santa Fe,II.1.1,38.50392,TJ,N2O,3.9,kg/TJ,150.165288,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,4983bfc2-cf99-39aa-9b22-be12f13b2cc3 -2019,Buenos Aires,II.5.1,1328.3814473999998,TJ,CO2,74100.0,kg/TJ,98433065.25233999,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,2ef2d1b1-daa0-30d3-8f42-cb17a163503c -2019,Buenos Aires,II.5.1,1328.3814473999998,TJ,CH4,3.9,kg/TJ,5180.68764486,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,b8bac0cf-f044-3695-ba70-f4971713e9ff -2019,Buenos Aires,II.5.1,1328.3814473999998,TJ,N2O,3.9,kg/TJ,5180.68764486,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,b8bac0cf-f044-3695-ba70-f4971713e9ff -2019,Capital Federal,II.5.1,509.08499628,TJ,CO2,74100.0,kg/TJ,37723198.224348,Gas Oil combustion consumption by agriculture machines,AR-C,SESCO,annual,kg,489a6051-5c25-30c7-acaa-4470cdcc8be2 -2019,Capital Federal,II.5.1,509.08499628,TJ,CH4,3.9,kg/TJ,1985.4314854919999,Gas Oil combustion consumption by agriculture machines,AR-C,SESCO,annual,kg,5a53dce3-7eac-3596-8491-8c95a26b8bbf -2019,Capital Federal,II.5.1,509.08499628,TJ,N2O,3.9,kg/TJ,1985.4314854919999,Gas Oil combustion consumption by agriculture machines,AR-C,SESCO,annual,kg,5a53dce3-7eac-3596-8491-8c95a26b8bbf -2019,Corrientes,II.5.1,0.6120534,TJ,CO2,74100.0,kg/TJ,45353.15694,Gas Oil combustion consumption by agriculture machines,AR-W,SESCO,annual,kg,1a8c5da9-e690-34a0-9761-8a2cc0df9f1b -2019,Corrientes,II.5.1,0.6120534,TJ,CH4,3.9,kg/TJ,2.38700826,Gas Oil combustion consumption by agriculture machines,AR-W,SESCO,annual,kg,3e42ede9-c747-3694-b18a-c40bd193b580 -2019,Corrientes,II.5.1,0.6120534,TJ,N2O,3.9,kg/TJ,2.38700826,Gas Oil combustion consumption by agriculture machines,AR-W,SESCO,annual,kg,3e42ede9-c747-3694-b18a-c40bd193b580 -2019,Córdoba,II.5.1,404.01383064000004,TJ,CO2,74100.0,kg/TJ,29937424.850424003,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,cce206a9-78d2-3dfb-a41d-1f3e2072391f -2019,Córdoba,II.5.1,404.01383064000004,TJ,CH4,3.9,kg/TJ,1575.653939496,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,a5831968-ac69-3a3e-baca-6af005168158 -2019,Córdoba,II.5.1,404.01383064000004,TJ,N2O,3.9,kg/TJ,1575.653939496,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,a5831968-ac69-3a3e-baca-6af005168158 -2019,Entre Rios,II.5.1,198.82969176,TJ,CO2,74100.0,kg/TJ,14733280.159416,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,475a743b-942c-3269-bb79-f78f268fecea -2019,Entre Rios,II.5.1,198.82969176,TJ,CH4,3.9,kg/TJ,775.4357978639999,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,567bd4a0-9a8d-369f-847f-ab61b7615ee9 -2019,Entre Rios,II.5.1,198.82969176,TJ,N2O,3.9,kg/TJ,775.4357978639999,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,567bd4a0-9a8d-369f-847f-ab61b7615ee9 -2019,Jujuy,II.5.1,11.728886400000002,TJ,CO2,74100.0,kg/TJ,869110.4822400002,Gas Oil combustion consumption by agriculture machines,AR-Y,SESCO,annual,kg,e6c0a066-d93e-3cef-a2d9-df3e9f067c3a -2019,Jujuy,II.5.1,11.728886400000002,TJ,CH4,3.9,kg/TJ,45.742656960000005,Gas Oil combustion consumption by agriculture machines,AR-Y,SESCO,annual,kg,4802c5c0-ed56-32a5-aa10-df6b3b3a38ea -2019,Jujuy,II.5.1,11.728886400000002,TJ,N2O,3.9,kg/TJ,45.742656960000005,Gas Oil combustion consumption by agriculture machines,AR-Y,SESCO,annual,kg,4802c5c0-ed56-32a5-aa10-df6b3b3a38ea -2019,La Pampa,II.5.1,74.69146439999999,TJ,CO2,74100.0,kg/TJ,5534637.5120399995,Gas Oil combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,280d5434-7f47-3113-9832-385c5efa1236 -2019,La Pampa,II.5.1,74.69146439999999,TJ,CH4,3.9,kg/TJ,291.2967111599999,Gas Oil combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,42e7b197-2cd7-31f8-8bb9-6b49d8906091 -2019,La Pampa,II.5.1,74.69146439999999,TJ,N2O,3.9,kg/TJ,291.2967111599999,Gas Oil combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,42e7b197-2cd7-31f8-8bb9-6b49d8906091 -2019,Rio Negro,II.5.1,24.459560999999997,TJ,CO2,74100.0,kg/TJ,1812453.4700999998,Gas Oil combustion consumption by agriculture machines,AR-R,SESCO,annual,kg,be8e137d-65de-3c9d-9e88-42b2ea97fd43 -2019,Rio Negro,II.5.1,24.459560999999997,TJ,CH4,3.9,kg/TJ,95.39228789999999,Gas Oil combustion consumption by agriculture machines,AR-R,SESCO,annual,kg,9018e132-e0cd-3c84-80df-fa3820662775 -2019,Rio Negro,II.5.1,24.459560999999997,TJ,N2O,3.9,kg/TJ,95.39228789999999,Gas Oil combustion consumption by agriculture machines,AR-R,SESCO,annual,kg,9018e132-e0cd-3c84-80df-fa3820662775 -2019,San Luis,II.5.1,14.8568784,TJ,CO2,74100.0,kg/TJ,1100894.6894399999,Gas Oil combustion consumption by agriculture machines,AR-D,SESCO,annual,kg,240261b2-8218-3c79-a2cf-7a8189a7b2eb -2019,San Luis,II.5.1,14.8568784,TJ,CH4,3.9,kg/TJ,57.94182575999999,Gas Oil combustion consumption by agriculture machines,AR-D,SESCO,annual,kg,70a96b8b-316e-3967-8027-162bea18a89d -2019,San Luis,II.5.1,14.8568784,TJ,N2O,3.9,kg/TJ,57.94182575999999,Gas Oil combustion consumption by agriculture machines,AR-D,SESCO,annual,kg,70a96b8b-316e-3967-8027-162bea18a89d -2019,Santa Fe,II.5.1,1030.56045288,TJ,CO2,74100.0,kg/TJ,76364529.55840799,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,b9105b38-a3f4-3820-a42c-582f9d7f28df -2019,Santa Fe,II.5.1,1030.56045288,TJ,CH4,3.9,kg/TJ,4019.185766232,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,5c3c5ec5-22e9-3ce4-bed0-66c5c6406efb -2019,Santa Fe,II.5.1,1030.56045288,TJ,N2O,3.9,kg/TJ,4019.185766232,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,5c3c5ec5-22e9-3ce4-bed0-66c5c6406efb -2019,Santiago del Estero,II.5.1,241.14228515999997,TJ,CO2,74100.0,kg/TJ,17868643.330355998,Gas Oil combustion consumption by agriculture machines,AR-G,SESCO,annual,kg,7e263076-cd5e-3349-8e59-e914e71d9c7f -2019,Santiago del Estero,II.5.1,241.14228515999997,TJ,CH4,3.9,kg/TJ,940.4549121239999,Gas Oil combustion consumption by agriculture machines,AR-G,SESCO,annual,kg,191c022b-7458-333e-84da-a25c2aa9643e -2019,Santiago del Estero,II.5.1,241.14228515999997,TJ,N2O,3.9,kg/TJ,940.4549121239999,Gas Oil combustion consumption by agriculture machines,AR-G,SESCO,annual,kg,191c022b-7458-333e-84da-a25c2aa9643e -2019,Tucuman,II.5.1,150.46396428,TJ,CO2,74100.0,kg/TJ,11149379.753148,Gas Oil combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,db359249-6c8d-3e04-85f5-68ac44e92ac9 -2019,Tucuman,II.5.1,150.46396428,TJ,CH4,3.9,kg/TJ,586.809460692,Gas Oil combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,57f629da-cabc-3522-85c6-4a0707701b05 -2019,Tucuman,II.5.1,150.46396428,TJ,N2O,3.9,kg/TJ,586.809460692,Gas Oil combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,57f629da-cabc-3522-85c6-4a0707701b05 -2019,Buenos Aires,II.5.1,171.07602287999998,TJ,CO2,74100.0,kg/TJ,12676733.295408,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,e25b4e9d-5847-3b19-afde-36d75b38049c -2019,Buenos Aires,II.5.1,171.07602287999998,TJ,CH4,3.9,kg/TJ,667.1964892319999,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,f7152893-cd73-3777-9913-d48855a5906f -2019,Buenos Aires,II.5.1,171.07602287999998,TJ,N2O,3.9,kg/TJ,667.1964892319999,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,f7152893-cd73-3777-9913-d48855a5906f -2019,Capital Federal,II.5.1,48.239740919999996,TJ,CO2,74100.0,kg/TJ,3574564.8021719996,Gas Oil combustion consumption by agriculture machines,AR-C,SESCO,annual,kg,986436a3-d428-3d95-9e39-649f16f0bc6e -2019,Capital Federal,II.5.1,48.239740919999996,TJ,CH4,3.9,kg/TJ,188.13498958799997,Gas Oil combustion consumption by agriculture machines,AR-C,SESCO,annual,kg,6076c811-ca59-3f27-a441-1603d5619e37 -2019,Capital Federal,II.5.1,48.239740919999996,TJ,N2O,3.9,kg/TJ,188.13498958799997,Gas Oil combustion consumption by agriculture machines,AR-C,SESCO,annual,kg,6076c811-ca59-3f27-a441-1603d5619e37 -2019,Corrientes,II.5.1,0.7236280799999998,TJ,CO2,74100.0,kg/TJ,53620.84072799998,Gas Oil combustion consumption by agriculture machines,AR-W,SESCO,annual,kg,040351a3-bceb-30d1-8905-c6161d5a98f0 -2019,Corrientes,II.5.1,0.7236280799999998,TJ,CH4,3.9,kg/TJ,2.8221495119999993,Gas Oil combustion consumption by agriculture machines,AR-W,SESCO,annual,kg,c4ca839e-f495-393b-8812-09ad84004531 -2019,Corrientes,II.5.1,0.7236280799999998,TJ,N2O,3.9,kg/TJ,2.8221495119999993,Gas Oil combustion consumption by agriculture machines,AR-W,SESCO,annual,kg,c4ca839e-f495-393b-8812-09ad84004531 -2019,Córdoba,II.5.1,46.075286039999995,TJ,CO2,74100.0,kg/TJ,3414178.6955639995,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,19440ce0-51e4-3b96-b3fc-b7eba8df0e49 -2019,Córdoba,II.5.1,46.075286039999995,TJ,CH4,3.9,kg/TJ,179.69361555599997,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,c2939a18-af12-3a95-8497-198a28b521b6 -2019,Córdoba,II.5.1,46.075286039999995,TJ,N2O,3.9,kg/TJ,179.69361555599997,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,c2939a18-af12-3a95-8497-198a28b521b6 -2019,Entre Rios,II.5.1,39.83158284,TJ,CO2,74100.0,kg/TJ,2951520.2884440003,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,e744f0d1-9e79-35bf-b73e-3e78179ad562 -2019,Entre Rios,II.5.1,39.83158284,TJ,CH4,3.9,kg/TJ,155.343173076,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,5b1aec61-24c1-394d-9d77-9237d145d2e1 -2019,Entre Rios,II.5.1,39.83158284,TJ,N2O,3.9,kg/TJ,155.343173076,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,5b1aec61-24c1-394d-9d77-9237d145d2e1 -2019,Jujuy,II.5.1,33.81623028,TJ,CO2,74100.0,kg/TJ,2505782.663748,Gas Oil combustion consumption by agriculture machines,AR-Y,SESCO,annual,kg,d56fe3cc-0fc9-3957-94ec-68ec6022d8e6 -2019,Jujuy,II.5.1,33.81623028,TJ,CH4,3.9,kg/TJ,131.883298092,Gas Oil combustion consumption by agriculture machines,AR-Y,SESCO,annual,kg,85de1de1-2b09-3ee2-9515-62fc998bd153 -2019,Jujuy,II.5.1,33.81623028,TJ,N2O,3.9,kg/TJ,131.883298092,Gas Oil combustion consumption by agriculture machines,AR-Y,SESCO,annual,kg,85de1de1-2b09-3ee2-9515-62fc998bd153 -2019,La Pampa,II.5.1,9.022198079999999,TJ,CO2,74100.0,kg/TJ,668544.8777279999,Gas Oil combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,5fb9286f-46d5-3b68-9c45-5ab78b94071e -2019,La Pampa,II.5.1,9.022198079999999,TJ,CH4,3.9,kg/TJ,35.186572512,Gas Oil combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,76f0e621-365b-350a-855d-19029babb7c5 -2019,La Pampa,II.5.1,9.022198079999999,TJ,N2O,3.9,kg/TJ,35.186572512,Gas Oil combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,76f0e621-365b-350a-855d-19029babb7c5 -2019,Rio Negro,II.5.1,44.92999308,TJ,CO2,74100.0,kg/TJ,3329312.487228,Gas Oil combustion consumption by agriculture machines,AR-R,SESCO,annual,kg,22de8862-56db-3aef-b5b5-513a0be04c1b -2019,Rio Negro,II.5.1,44.92999308,TJ,CH4,3.9,kg/TJ,175.226973012,Gas Oil combustion consumption by agriculture machines,AR-R,SESCO,annual,kg,3c9e95a9-ccdb-3a26-a8be-707085eb3a2d -2019,Rio Negro,II.5.1,44.92999308,TJ,N2O,3.9,kg/TJ,175.226973012,Gas Oil combustion consumption by agriculture machines,AR-R,SESCO,annual,kg,3c9e95a9-ccdb-3a26-a8be-707085eb3a2d -2019,San Luis,II.5.1,4.761266159999999,TJ,CO2,74100.0,kg/TJ,352809.8224559999,Gas Oil combustion consumption by agriculture machines,AR-D,SESCO,annual,kg,1342453f-f844-32a6-bf03-8a0b4c5d618b -2019,San Luis,II.5.1,4.761266159999999,TJ,CH4,3.9,kg/TJ,18.568938023999994,Gas Oil combustion consumption by agriculture machines,AR-D,SESCO,annual,kg,5ea44106-cac6-3e1e-b0f4-8966e918b810 -2019,San Luis,II.5.1,4.761266159999999,TJ,N2O,3.9,kg/TJ,18.568938023999994,Gas Oil combustion consumption by agriculture machines,AR-D,SESCO,annual,kg,5ea44106-cac6-3e1e-b0f4-8966e918b810 -2019,Santa Fe,II.5.1,149.04918,TJ,CO2,74100.0,kg/TJ,11044544.238,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,2d668400-14ab-34de-9acd-2d524a37ab80 -2019,Santa Fe,II.5.1,149.04918,TJ,CH4,3.9,kg/TJ,581.291802,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,f203975a-3ef0-3738-b9df-02923ac7185f -2019,Santa Fe,II.5.1,149.04918,TJ,N2O,3.9,kg/TJ,581.291802,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,f203975a-3ef0-3738-b9df-02923ac7185f -2019,Santiago del Estero,II.5.1,16.394362320000003,TJ,CO2,74100.0,kg/TJ,1214822.2479120002,Gas Oil combustion consumption by agriculture machines,AR-G,SESCO,annual,kg,5b762d17-a560-3248-8853-cef30a3bb868 -2019,Santiago del Estero,II.5.1,16.394362320000003,TJ,CH4,3.9,kg/TJ,63.93801304800001,Gas Oil combustion consumption by agriculture machines,AR-G,SESCO,annual,kg,476c8db9-1bc2-3a95-8ec2-ce4288966533 -2019,Santiago del Estero,II.5.1,16.394362320000003,TJ,N2O,3.9,kg/TJ,63.93801304800001,Gas Oil combustion consumption by agriculture machines,AR-G,SESCO,annual,kg,476c8db9-1bc2-3a95-8ec2-ce4288966533 -2019,Tucuman,II.5.1,38.03566032,TJ,CO2,74100.0,kg/TJ,2818442.429712,Gas Oil combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,33a7b1cc-725f-3d85-8685-1748259dad00 -2019,Tucuman,II.5.1,38.03566032,TJ,CH4,3.9,kg/TJ,148.339075248,Gas Oil combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,6179fcde-802a-3f61-a01d-1e8c809a494a -2019,Tucuman,II.5.1,38.03566032,TJ,N2O,3.9,kg/TJ,148.339075248,Gas Oil combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,6179fcde-802a-3f61-a01d-1e8c809a494a -2019,Buenos Aires,II.5.1,16.432500315000002,TJ,CO2,73300.0,kg/TJ,1204502.2730895001,Naphtha combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,b683970a-6855-35a2-8f8a-b99b0aee1eb4 -2019,Buenos Aires,II.5.1,16.432500315000002,TJ,CH4,0.5,kg/TJ,8.216250157500001,Naphtha combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,1c50bf56-eb86-3c8c-9e95-18dad005b8bd -2019,Buenos Aires,II.5.1,16.432500315000002,TJ,N2O,2.0,kg/TJ,32.865000630000004,Naphtha combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,f3302b15-b9fa-3839-b16a-4e4cd433bba3 -2019,Capital Federal,II.5.1,11.49604456,TJ,CO2,73300.0,kg/TJ,842660.066248,Naphtha combustion consumption by agriculture machines,AR-C,SESCO,annual,kg,16590884-adf5-3c96-8088-7c545144d907 -2019,Capital Federal,II.5.1,11.49604456,TJ,CH4,0.5,kg/TJ,5.74802228,Naphtha combustion consumption by agriculture machines,AR-C,SESCO,annual,kg,2633bfee-8d23-359b-8649-fd7055514aec -2019,Capital Federal,II.5.1,11.49604456,TJ,N2O,2.0,kg/TJ,22.99208912,Naphtha combustion consumption by agriculture machines,AR-C,SESCO,annual,kg,3c195b09-de50-3437-a49a-06ffe97250a1 -2019,Córdoba,II.5.1,1.2534136999999999,TJ,CO2,73300.0,kg/TJ,91875.22420999999,Naphtha combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,72c5f04b-5553-3bca-83f3-7c7c94a692ee -2019,Córdoba,II.5.1,1.2534136999999999,TJ,CH4,0.5,kg/TJ,0.6267068499999999,Naphtha combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,a3691dea-7d29-336f-a9fb-0dedd643d0af -2019,Córdoba,II.5.1,1.2534136999999999,TJ,N2O,2.0,kg/TJ,2.5068273999999997,Naphtha combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,70e46ef1-d193-361b-8d47-af9828e0157b -2019,Entre Rios,II.5.1,0.9270395749999999,TJ,CO2,73300.0,kg/TJ,67952.00084749999,Naphtha combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,5c8a7527-ab48-381d-bd04-783c9b831b59 -2019,Entre Rios,II.5.1,0.9270395749999999,TJ,CH4,0.5,kg/TJ,0.46351978749999995,Naphtha combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,b41523c6-d599-3ab2-b845-082fafdc3743 -2019,Entre Rios,II.5.1,0.9270395749999999,TJ,N2O,2.0,kg/TJ,1.8540791499999998,Naphtha combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,829e8ff4-d9dc-35e7-8c99-e898171b136e -2019,Santa Fe,II.5.1,177.084912235,TJ,CO2,73300.0,kg/TJ,12980324.0668255,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,eeed2dea-c6ae-385b-9059-35009476f477 -2019,Santa Fe,II.5.1,177.084912235,TJ,CH4,0.5,kg/TJ,88.5424561175,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,aa32cf8c-1bda-3ebd-8b57-b47cb4d19ded -2019,Santa Fe,II.5.1,177.084912235,TJ,N2O,2.0,kg/TJ,354.16982447,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,00ac74b8-ee62-323b-926d-f28e0e88fe2d -2019,Buenos Aires,II.5.1,1.1013456299999997,TJ,CO2,73300.0,kg/TJ,80728.63467899998,Naphtha combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,4908d5b9-aac1-3f5b-bfea-7ce088642036 -2019,Buenos Aires,II.5.1,1.1013456299999997,TJ,CH4,0.5,kg/TJ,0.5506728149999999,Naphtha combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,227167c2-e73b-3f24-847c-d67b742add00 -2019,Buenos Aires,II.5.1,1.1013456299999997,TJ,N2O,2.0,kg/TJ,2.2026912599999995,Naphtha combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,f7ff74e9-7dc2-39d9-affe-547dcba2caac -2019,Capital Federal,II.5.1,3.1795521449999997,TJ,CO2,73300.0,kg/TJ,233061.17222849999,Naphtha combustion consumption by agriculture machines,AR-C,SESCO,annual,kg,2b0fc7bf-09e3-319f-a6db-14f9057651fd -2019,Capital Federal,II.5.1,3.1795521449999997,TJ,CH4,0.5,kg/TJ,1.5897760724999999,Naphtha combustion consumption by agriculture machines,AR-C,SESCO,annual,kg,662356b2-8501-3cc8-a11e-c770fb5d046b -2019,Capital Federal,II.5.1,3.1795521449999997,TJ,N2O,2.0,kg/TJ,6.359104289999999,Naphtha combustion consumption by agriculture machines,AR-C,SESCO,annual,kg,c151b03c-bf96-3554-aaf3-dfa6dcb4b1b2 -2019,Córdoba,II.5.1,0.884139795,TJ,CO2,73300.0,kg/TJ,64807.446973499995,Naphtha combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,04d38ebf-2a0e-3022-96eb-dbc5e8ef3f78 -2019,Córdoba,II.5.1,0.884139795,TJ,CH4,0.5,kg/TJ,0.4420698975,Naphtha combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,906245fb-583c-396d-b69b-d7abb269d6b9 -2019,Córdoba,II.5.1,0.884139795,TJ,N2O,2.0,kg/TJ,1.76827959,Naphtha combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,4cddcff8-e913-3140-b912-9abaa8a54937 -2019,Santa Fe,II.5.1,9.443810915,TJ,CO2,73300.0,kg/TJ,692231.3400695,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,f0382454-d241-38dd-aa34-87ff137e23b6 -2019,Santa Fe,II.5.1,9.443810915,TJ,CH4,0.5,kg/TJ,4.7219054575,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,5a99a313-dc05-36ce-9fdc-68cd75eff121 -2019,Santa Fe,II.5.1,9.443810915,TJ,N2O,2.0,kg/TJ,18.88762183,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,a29d9d52-6f7b-3306-8db2-e61cd9a14bce -2019,Buenos Aires,II.1.1,18.32793816,TJ,CO2,74100.0,kg/TJ,1358100.2176559998,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,8b24dc96-f4c7-33a4-8fca-2be52288cb0f -2019,Buenos Aires,II.1.1,18.32793816,TJ,CH4,3.9,kg/TJ,71.47895882399999,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,c3ce5e42-fa1c-3756-8de5-be965e647f9b -2019,Buenos Aires,II.1.1,18.32793816,TJ,N2O,3.9,kg/TJ,71.47895882399999,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,c3ce5e42-fa1c-3756-8de5-be965e647f9b -2019,Capital Federal,II.1.1,4.1593624799999995,TJ,CO2,74100.0,kg/TJ,308208.759768,Gas Oil combustion consumption by freight transport,AR-C,SESCO,annual,kg,1313222e-0736-324f-b75e-035c6a48f233 -2019,Capital Federal,II.1.1,4.1593624799999995,TJ,CH4,3.9,kg/TJ,16.221513671999997,Gas Oil combustion consumption by freight transport,AR-C,SESCO,annual,kg,c012747e-ce2a-387e-b557-f3bf6c122559 -2019,Capital Federal,II.1.1,4.1593624799999995,TJ,N2O,3.9,kg/TJ,16.221513671999997,Gas Oil combustion consumption by freight transport,AR-C,SESCO,annual,kg,c012747e-ce2a-387e-b557-f3bf6c122559 -2019,Neuquén,II.1.1,2.0096806799999998,TJ,CO2,74100.0,kg/TJ,148917.33838799997,Gas Oil combustion consumption by freight transport,AR-Q,SESCO,annual,kg,7cf82bfc-3339-3b9f-99bd-6796553e0ef2 -2019,Neuquén,II.1.1,2.0096806799999998,TJ,CH4,3.9,kg/TJ,7.837754651999999,Gas Oil combustion consumption by freight transport,AR-Q,SESCO,annual,kg,dde510aa-be16-33ce-a5b4-47309ac63a9c -2019,Neuquén,II.1.1,2.0096806799999998,TJ,N2O,3.9,kg/TJ,7.837754651999999,Gas Oil combustion consumption by freight transport,AR-Q,SESCO,annual,kg,dde510aa-be16-33ce-a5b4-47309ac63a9c -2019,Rio Negro,II.1.1,3.86657376,TJ,CO2,74100.0,kg/TJ,286513.115616,Gas Oil combustion consumption by freight transport,AR-R,SESCO,annual,kg,f85fddac-8c6b-3581-aa12-0304ec3c66a2 -2019,Rio Negro,II.1.1,3.86657376,TJ,CH4,3.9,kg/TJ,15.079637664,Gas Oil combustion consumption by freight transport,AR-R,SESCO,annual,kg,78a20eb4-4a87-38f8-9d02-cac08ce0babc -2019,Rio Negro,II.1.1,3.86657376,TJ,N2O,3.9,kg/TJ,15.079637664,Gas Oil combustion consumption by freight transport,AR-R,SESCO,annual,kg,78a20eb4-4a87-38f8-9d02-cac08ce0babc -2019,Santa Fe,II.1.1,5.456901239999999,TJ,CO2,74100.0,kg/TJ,404356.3818839999,Gas Oil combustion consumption by freight transport,AR-S,SESCO,annual,kg,3e3b8cba-04da-36d5-acce-d8ef7b8bb2ef -2019,Santa Fe,II.1.1,5.456901239999999,TJ,CH4,3.9,kg/TJ,21.281914835999995,Gas Oil combustion consumption by freight transport,AR-S,SESCO,annual,kg,be9aa133-153d-359b-8998-f791d26d53e8 -2019,Santa Fe,II.1.1,5.456901239999999,TJ,N2O,3.9,kg/TJ,21.281914835999995,Gas Oil combustion consumption by freight transport,AR-S,SESCO,annual,kg,be9aa133-153d-359b-8998-f791d26d53e8 -2019,Tucuman,II.1.1,2.3121134399999996,TJ,CO2,74100.0,kg/TJ,171327.60590399997,Gas Oil combustion consumption by freight transport,AR-T,SESCO,annual,kg,a09d0a74-2da3-38ee-9b54-a0c9d598111c -2019,Tucuman,II.1.1,2.3121134399999996,TJ,CH4,3.9,kg/TJ,9.017242415999998,Gas Oil combustion consumption by freight transport,AR-T,SESCO,annual,kg,f0eb362a-d522-3527-9935-616ef9dfc7bc -2019,Tucuman,II.1.1,2.3121134399999996,TJ,N2O,3.9,kg/TJ,9.017242415999998,Gas Oil combustion consumption by freight transport,AR-T,SESCO,annual,kg,f0eb362a-d522-3527-9935-616ef9dfc7bc -2019,Buenos Aires,II.1.1,7.055066760000001,TJ,CO2,74100.0,kg/TJ,522780.44691600004,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,faa7982b-6dcd-3825-a8de-14dc95320ae0 -2019,Buenos Aires,II.1.1,7.055066760000001,TJ,CH4,3.9,kg/TJ,27.514760364,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,773d27fb-8cb7-3921-8600-48332230590a -2019,Buenos Aires,II.1.1,7.055066760000001,TJ,N2O,3.9,kg/TJ,27.514760364,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,773d27fb-8cb7-3921-8600-48332230590a -2019,Neuquén,II.1.1,1.91858604,TJ,CO2,74100.0,kg/TJ,142167.22556400002,Gas Oil combustion consumption by freight transport,AR-Q,SESCO,annual,kg,2d5e04a3-da38-32ea-a90d-88c8678aafba -2019,Neuquén,II.1.1,1.91858604,TJ,CH4,3.9,kg/TJ,7.482485556,Gas Oil combustion consumption by freight transport,AR-Q,SESCO,annual,kg,710f335a-5cb0-3263-8c44-d0686f4b4359 -2019,Neuquén,II.1.1,1.91858604,TJ,N2O,3.9,kg/TJ,7.482485556,Gas Oil combustion consumption by freight transport,AR-Q,SESCO,annual,kg,710f335a-5cb0-3263-8c44-d0686f4b4359 -2019,Rio Negro,II.1.1,5.02642308,TJ,CO2,74100.0,kg/TJ,372457.950228,Gas Oil combustion consumption by freight transport,AR-R,SESCO,annual,kg,5d3992e4-342a-3c01-8f60-1af21aaf6f9c -2019,Rio Negro,II.1.1,5.02642308,TJ,CH4,3.9,kg/TJ,19.603050011999997,Gas Oil combustion consumption by freight transport,AR-R,SESCO,annual,kg,d19081ad-384e-3ef7-a5e7-0112a1823d6f -2019,Rio Negro,II.1.1,5.02642308,TJ,N2O,3.9,kg/TJ,19.603050011999997,Gas Oil combustion consumption by freight transport,AR-R,SESCO,annual,kg,d19081ad-384e-3ef7-a5e7-0112a1823d6f -2019,Santa Fe,II.1.1,1.19633052,TJ,CO2,74100.0,kg/TJ,88648.091532,Gas Oil combustion consumption by freight transport,AR-S,SESCO,annual,kg,7ca359ed-767f-37c1-ad95-b9cb9290f40f -2019,Santa Fe,II.1.1,1.19633052,TJ,CH4,3.9,kg/TJ,4.665689028,Gas Oil combustion consumption by freight transport,AR-S,SESCO,annual,kg,4291f986-ceca-3811-a8c1-01598242467f -2019,Santa Fe,II.1.1,1.19633052,TJ,N2O,3.9,kg/TJ,4.665689028,Gas Oil combustion consumption by freight transport,AR-S,SESCO,annual,kg,4291f986-ceca-3811-a8c1-01598242467f -2019,Tucuman,II.1.1,0.4721606399999999,TJ,CO2,74100.0,kg/TJ,34987.10342399999,Gas Oil combustion consumption by freight transport,AR-T,SESCO,annual,kg,f97476db-9356-35de-a2fe-9123da6b4e31 -2019,Tucuman,II.1.1,0.4721606399999999,TJ,CH4,3.9,kg/TJ,1.8414264959999995,Gas Oil combustion consumption by freight transport,AR-T,SESCO,annual,kg,2355b3b3-5a8e-32d0-8a4e-88dc2a5a28f3 -2019,Tucuman,II.1.1,0.4721606399999999,TJ,N2O,3.9,kg/TJ,1.8414264959999995,Gas Oil combustion consumption by freight transport,AR-T,SESCO,annual,kg,2355b3b3-5a8e-32d0-8a4e-88dc2a5a28f3 -2019,Buenos Aires,II.1.1,32.2266252,TJ,CO2,74100.0,kg/TJ,2387992.9273200002,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,2588b552-8195-380e-8674-2c4ad4c97692 -2019,Buenos Aires,II.1.1,32.2266252,TJ,CH4,3.9,kg/TJ,125.68383828,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,5e085532-52cd-33d5-a3e0-1e1f1853df99 -2019,Buenos Aires,II.1.1,32.2266252,TJ,N2O,3.9,kg/TJ,125.68383828,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,5e085532-52cd-33d5-a3e0-1e1f1853df99 -2019,Capital Federal,II.1.1,4.641383879999999,TJ,CO2,74100.0,kg/TJ,343926.54550799995,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,d1cb54c0-6575-3616-bf36-a56f995f2738 -2019,Capital Federal,II.1.1,4.641383879999999,TJ,CH4,3.9,kg/TJ,18.101397131999995,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,cb9497e2-17f1-3701-8a0c-82dd412718f9 -2019,Capital Federal,II.1.1,4.641383879999999,TJ,N2O,3.9,kg/TJ,18.101397131999995,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,cb9497e2-17f1-3701-8a0c-82dd412718f9 -2019,Misiones,II.1.1,0.6146540399999999,TJ,CO2,74100.0,kg/TJ,45545.864363999994,Gas Oil combustion consumption by public passenger transport,AR-N,SESCO,annual,kg,970934c8-1e0a-3e97-b8b1-11007551390f -2019,Misiones,II.1.1,0.6146540399999999,TJ,CH4,3.9,kg/TJ,2.3971507559999994,Gas Oil combustion consumption by public passenger transport,AR-N,SESCO,annual,kg,1c513315-831f-324b-a153-6644f1d949d8 -2019,Misiones,II.1.1,0.6146540399999999,TJ,N2O,3.9,kg/TJ,2.3971507559999994,Gas Oil combustion consumption by public passenger transport,AR-N,SESCO,annual,kg,1c513315-831f-324b-a153-6644f1d949d8 -2019,Neuquén,II.1.1,0.71420076,TJ,CO2,74100.0,kg/TJ,52922.276315999996,Gas Oil combustion consumption by public passenger transport,AR-Q,SESCO,annual,kg,e9ac1974-5a7b-368a-a03f-b7300c4a03b4 -2019,Neuquén,II.1.1,0.71420076,TJ,CH4,3.9,kg/TJ,2.785382964,Gas Oil combustion consumption by public passenger transport,AR-Q,SESCO,annual,kg,aa6f7169-d1d5-33c8-a70d-2868a1a3f6eb -2019,Neuquén,II.1.1,0.71420076,TJ,N2O,3.9,kg/TJ,2.785382964,Gas Oil combustion consumption by public passenger transport,AR-Q,SESCO,annual,kg,aa6f7169-d1d5-33c8-a70d-2868a1a3f6eb -2019,Rio Negro,II.1.1,3.00941004,TJ,CO2,74100.0,kg/TJ,222997.283964,Gas Oil combustion consumption by public passenger transport,AR-R,SESCO,annual,kg,87f31d93-d0ca-351f-905f-8df4904a81dd -2019,Rio Negro,II.1.1,3.00941004,TJ,CH4,3.9,kg/TJ,11.736699156,Gas Oil combustion consumption by public passenger transport,AR-R,SESCO,annual,kg,0608f666-048e-3e4b-8214-a334d456c976 -2019,Rio Negro,II.1.1,3.00941004,TJ,N2O,3.9,kg/TJ,11.736699156,Gas Oil combustion consumption by public passenger transport,AR-R,SESCO,annual,kg,0608f666-048e-3e4b-8214-a334d456c976 -2019,Santa Fe,II.1.1,8.070616679999999,TJ,CO2,74100.0,kg/TJ,598032.6959879999,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,3cfc7cac-1ee4-3c8d-843d-4e27fd573cce -2019,Santa Fe,II.1.1,8.070616679999999,TJ,CH4,3.9,kg/TJ,31.475405051999996,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,4e83c883-6dee-323c-bd39-48525d53292d -2019,Santa Fe,II.1.1,8.070616679999999,TJ,N2O,3.9,kg/TJ,31.475405051999996,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,4e83c883-6dee-323c-bd39-48525d53292d -2019,Buenos Aires,II.1.1,19.0265712,TJ,CO2,74100.0,kg/TJ,1409868.92592,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,9d9fc13c-8888-38e3-95b9-1d66fffecad8 -2019,Buenos Aires,II.1.1,19.0265712,TJ,CH4,3.9,kg/TJ,74.20362768,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,0f5cb65e-108e-3b15-8cb0-94d5e32a1286 -2019,Buenos Aires,II.1.1,19.0265712,TJ,N2O,3.9,kg/TJ,74.20362768,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,0f5cb65e-108e-3b15-8cb0-94d5e32a1286 -2019,Córdoba,II.1.1,2.3454883200000003,TJ,CO2,74100.0,kg/TJ,173800.68451200004,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,870910fd-e614-3664-8b6f-616774cf392d -2019,Córdoba,II.1.1,2.3454883200000003,TJ,CH4,3.9,kg/TJ,9.147404448000001,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,bb09dbfb-0ef6-35d4-94d7-3b5628869278 -2019,Córdoba,II.1.1,2.3454883200000003,TJ,N2O,3.9,kg/TJ,9.147404448000001,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,bb09dbfb-0ef6-35d4-94d7-3b5628869278 -2019,Misiones,II.1.1,1.9766308799999999,TJ,CO2,74100.0,kg/TJ,146468.34820799998,Gas Oil combustion consumption by public passenger transport,AR-N,SESCO,annual,kg,a2737738-a4fe-39d0-b506-c6ce46fcb03a -2019,Misiones,II.1.1,1.9766308799999999,TJ,CH4,3.9,kg/TJ,7.708860431999999,Gas Oil combustion consumption by public passenger transport,AR-N,SESCO,annual,kg,717dd81f-3b6c-33e4-be4d-bed5d23d6a0f -2019,Misiones,II.1.1,1.9766308799999999,TJ,N2O,3.9,kg/TJ,7.708860431999999,Gas Oil combustion consumption by public passenger transport,AR-N,SESCO,annual,kg,717dd81f-3b6c-33e4-be4d-bed5d23d6a0f -2019,Neuquén,II.1.1,0.57748656,TJ,CO2,74100.0,kg/TJ,42791.754096,Gas Oil combustion consumption by public passenger transport,AR-Q,SESCO,annual,kg,9b5e5bee-cbdd-3fff-ad8d-79062806b9dd -2019,Neuquén,II.1.1,0.57748656,TJ,CH4,3.9,kg/TJ,2.2521975839999997,Gas Oil combustion consumption by public passenger transport,AR-Q,SESCO,annual,kg,cf9f3c43-7fc3-3461-a9c6-b281ac76910d -2019,Neuquén,II.1.1,0.57748656,TJ,N2O,3.9,kg/TJ,2.2521975839999997,Gas Oil combustion consumption by public passenger transport,AR-Q,SESCO,annual,kg,cf9f3c43-7fc3-3461-a9c6-b281ac76910d -2019,Rio Negro,II.1.1,10.73598372,TJ,CO2,74100.0,kg/TJ,795536.393652,Gas Oil combustion consumption by public passenger transport,AR-R,SESCO,annual,kg,bfcfe088-5db0-389d-91f5-93e420663942 -2019,Rio Negro,II.1.1,10.73598372,TJ,CH4,3.9,kg/TJ,41.870336508,Gas Oil combustion consumption by public passenger transport,AR-R,SESCO,annual,kg,f39d12b2-3fc7-394a-9408-313b3a29bd77 -2019,Rio Negro,II.1.1,10.73598372,TJ,N2O,3.9,kg/TJ,41.870336508,Gas Oil combustion consumption by public passenger transport,AR-R,SESCO,annual,kg,f39d12b2-3fc7-394a-9408-313b3a29bd77 -2019,Santa Fe,II.1.1,1.26264684,TJ,CO2,74100.0,kg/TJ,93562.130844,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,9386d7e5-ce57-308b-8e2e-6e5c1f340a2a -2019,Santa Fe,II.1.1,1.26264684,TJ,CH4,3.9,kg/TJ,4.924322676,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,e11fe348-bcf5-3250-97e3-147a0cc20443 -2019,Santa Fe,II.1.1,1.26264684,TJ,N2O,3.9,kg/TJ,4.924322676,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,e11fe348-bcf5-3250-97e3-147a0cc20443 -2019,Buenos Aires,II.1.1,0.9882025999999999,TJ,CO2,73300.0,kg/TJ,72435.25057999999,Naphtha combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,53ecf435-9d67-3e33-b8dc-aa8977f4e2e0 -2019,Buenos Aires,II.1.1,0.9882025999999999,TJ,CH4,0.5,kg/TJ,0.49410129999999997,Naphtha combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,fe82f92b-ab07-3d15-9353-0ef69218593f -2019,Buenos Aires,II.1.1,0.9882025999999999,TJ,N2O,2.0,kg/TJ,1.9764051999999999,Naphtha combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,37e12776-173f-3d92-a272-84f2ce20e559 -2019,Buenos Aires,II.5.1,8651.20956,TJ,CO2,74100.0,kg/TJ,641054628.3959999,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,1918616b-dde7-346a-a1dd-38f45320e7fa -2019,Buenos Aires,II.5.1,8651.20956,TJ,CH4,3.9,kg/TJ,33739.717284,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,0f1857cc-587c-308b-bc6d-f22c0871584c -2019,Buenos Aires,II.5.1,8651.20956,TJ,N2O,3.9,kg/TJ,33739.717284,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,0f1857cc-587c-308b-bc6d-f22c0871584c -2019,Capital Federal,II.5.1,265.98768,TJ,CO2,74100.0,kg/TJ,19709687.088,Gas Oil combustion consumption by agriculture machines,AR-C,SESCO,annual,kg,5354b64a-e011-3b02-9d05-2a56bb74ee8f -2019,Capital Federal,II.5.1,265.98768,TJ,CH4,3.9,kg/TJ,1037.351952,Gas Oil combustion consumption by agriculture machines,AR-C,SESCO,annual,kg,88cad355-1057-3816-bda5-4273859d700c -2019,Capital Federal,II.5.1,265.98768,TJ,N2O,3.9,kg/TJ,1037.351952,Gas Oil combustion consumption by agriculture machines,AR-C,SESCO,annual,kg,88cad355-1057-3816-bda5-4273859d700c -2019,Catamarca,II.5.1,201.29675999999998,TJ,CO2,74100.0,kg/TJ,14916089.916,Gas Oil combustion consumption by agriculture machines,AR-K,SESCO,annual,kg,766b9fcd-79d6-34ca-9224-b121785110ac -2019,Catamarca,II.5.1,201.29675999999998,TJ,CH4,3.9,kg/TJ,785.0573639999999,Gas Oil combustion consumption by agriculture machines,AR-K,SESCO,annual,kg,57bebf58-9a0d-3d78-b57a-5b73b2cb27ca -2019,Catamarca,II.5.1,201.29675999999998,TJ,N2O,3.9,kg/TJ,785.0573639999999,Gas Oil combustion consumption by agriculture machines,AR-K,SESCO,annual,kg,57bebf58-9a0d-3d78-b57a-5b73b2cb27ca -2019,Chaco,II.5.1,1043.3262,TJ,CO2,74100.0,kg/TJ,77310471.42,Gas Oil combustion consumption by agriculture machines,AR-H,SESCO,annual,kg,747fc2b2-fb2f-3e08-a978-32ddd00cb379 -2019,Chaco,II.5.1,1043.3262,TJ,CH4,3.9,kg/TJ,4068.9721799999998,Gas Oil combustion consumption by agriculture machines,AR-H,SESCO,annual,kg,e81cd35d-9be7-317f-a1cd-4e4d50bd928f -2019,Chaco,II.5.1,1043.3262,TJ,N2O,3.9,kg/TJ,4068.9721799999998,Gas Oil combustion consumption by agriculture machines,AR-H,SESCO,annual,kg,e81cd35d-9be7-317f-a1cd-4e4d50bd928f -2019,Corrientes,II.5.1,499.46736,TJ,CO2,74100.0,kg/TJ,37010531.376,Gas Oil combustion consumption by agriculture machines,AR-W,SESCO,annual,kg,b658273a-b701-395c-ba27-e1b6c46f2106 -2019,Corrientes,II.5.1,499.46736,TJ,CH4,3.9,kg/TJ,1947.9227039999998,Gas Oil combustion consumption by agriculture machines,AR-W,SESCO,annual,kg,43d5b4ba-47b5-3c84-9fcb-43e10a8d873e -2019,Corrientes,II.5.1,499.46736,TJ,N2O,3.9,kg/TJ,1947.9227039999998,Gas Oil combustion consumption by agriculture machines,AR-W,SESCO,annual,kg,43d5b4ba-47b5-3c84-9fcb-43e10a8d873e -2019,Córdoba,II.5.1,7613.590319999999,TJ,CO2,74100.0,kg/TJ,564167042.7119999,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,bc72e608-fddc-3bc2-9f4c-159d24d99f76 -2019,Córdoba,II.5.1,7613.590319999999,TJ,CH4,3.9,kg/TJ,29693.002247999997,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,20b6fc84-8fe7-38a9-b9cd-8c70d406f759 -2019,Córdoba,II.5.1,7613.590319999999,TJ,N2O,3.9,kg/TJ,29693.002247999997,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,20b6fc84-8fe7-38a9-b9cd-8c70d406f759 -2019,Entre Rios,II.5.1,1888.28136,TJ,CO2,74100.0,kg/TJ,139921648.776,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,5d445cbb-ef85-337d-bfc8-57c139e9d09b -2019,Entre Rios,II.5.1,1888.28136,TJ,CH4,3.9,kg/TJ,7364.297304,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,1e0eb7cd-6196-3cdf-a245-43ba67c4efac -2019,Entre Rios,II.5.1,1888.28136,TJ,N2O,3.9,kg/TJ,7364.297304,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,1e0eb7cd-6196-3cdf-a245-43ba67c4efac -2019,Formosa,II.5.1,240.41472,TJ,CO2,74100.0,kg/TJ,17814730.752,Gas Oil combustion consumption by agriculture machines,AR-P,SESCO,annual,kg,632e8bdc-33e6-30e6-bd14-db4fc319f840 -2019,Formosa,II.5.1,240.41472,TJ,CH4,3.9,kg/TJ,937.617408,Gas Oil combustion consumption by agriculture machines,AR-P,SESCO,annual,kg,f9eef900-2732-3ec8-89b6-0c0ed10ab307 -2019,Formosa,II.5.1,240.41472,TJ,N2O,3.9,kg/TJ,937.617408,Gas Oil combustion consumption by agriculture machines,AR-P,SESCO,annual,kg,f9eef900-2732-3ec8-89b6-0c0ed10ab307 -2019,Jujuy,II.5.1,586.4082,TJ,CO2,74100.0,kg/TJ,43452847.62,Gas Oil combustion consumption by agriculture machines,AR-Y,SESCO,annual,kg,8fb99443-13cf-342f-a9ff-be93ddf6730e -2019,Jujuy,II.5.1,586.4082,TJ,CH4,3.9,kg/TJ,2286.99198,Gas Oil combustion consumption by agriculture machines,AR-Y,SESCO,annual,kg,623dcc0e-921d-3a6a-b12b-76877d47db6c -2019,Jujuy,II.5.1,586.4082,TJ,N2O,3.9,kg/TJ,2286.99198,Gas Oil combustion consumption by agriculture machines,AR-Y,SESCO,annual,kg,623dcc0e-921d-3a6a-b12b-76877d47db6c -2019,La Pampa,II.5.1,1603.07784,TJ,CO2,74100.0,kg/TJ,118788067.94399999,Gas Oil combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,4baf1cfd-35f2-3308-8068-c8eba3c84f3b -2019,La Pampa,II.5.1,1603.07784,TJ,CH4,3.9,kg/TJ,6252.003575999999,Gas Oil combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,312ec46a-d34b-326d-95c3-870e22a07b9c -2019,La Pampa,II.5.1,1603.07784,TJ,N2O,3.9,kg/TJ,6252.003575999999,Gas Oil combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,312ec46a-d34b-326d-95c3-870e22a07b9c -2019,La Rioja,II.5.1,132.48816,TJ,CO2,74100.0,kg/TJ,9817372.656,Gas Oil combustion consumption by agriculture machines,AR-F,SESCO,annual,kg,9a9374f4-3b99-3230-98a3-fef24b7b0c2a -2019,La Rioja,II.5.1,132.48816,TJ,CH4,3.9,kg/TJ,516.7038239999999,Gas Oil combustion consumption by agriculture machines,AR-F,SESCO,annual,kg,ad4135ee-55d7-3b85-8ca3-457f64b61779 -2019,La Rioja,II.5.1,132.48816,TJ,N2O,3.9,kg/TJ,516.7038239999999,Gas Oil combustion consumption by agriculture machines,AR-F,SESCO,annual,kg,ad4135ee-55d7-3b85-8ca3-457f64b61779 -2019,Mendoza,II.5.1,2022.6116399999999,TJ,CO2,74100.0,kg/TJ,149875522.524,Gas Oil combustion consumption by agriculture machines,AR-M,SESCO,annual,kg,eca5b231-8ff3-35f1-b524-00ed811c64fb -2019,Mendoza,II.5.1,2022.6116399999999,TJ,CH4,3.9,kg/TJ,7888.185395999999,Gas Oil combustion consumption by agriculture machines,AR-M,SESCO,annual,kg,9d18051c-bca1-3be8-afed-c7bcef52fe80 -2019,Mendoza,II.5.1,2022.6116399999999,TJ,N2O,3.9,kg/TJ,7888.185395999999,Gas Oil combustion consumption by agriculture machines,AR-M,SESCO,annual,kg,9d18051c-bca1-3be8-afed-c7bcef52fe80 -2019,Misiones,II.5.1,1063.58952,TJ,CO2,74100.0,kg/TJ,78811983.432,Gas Oil combustion consumption by agriculture machines,AR-N,SESCO,annual,kg,f8099db1-e300-3ed1-b7af-48a1a13f6778 -2019,Misiones,II.5.1,1063.58952,TJ,CH4,3.9,kg/TJ,4147.9991279999995,Gas Oil combustion consumption by agriculture machines,AR-N,SESCO,annual,kg,2a086791-9f7f-3f81-9b6f-c7dece386855 -2019,Misiones,II.5.1,1063.58952,TJ,N2O,3.9,kg/TJ,4147.9991279999995,Gas Oil combustion consumption by agriculture machines,AR-N,SESCO,annual,kg,2a086791-9f7f-3f81-9b6f-c7dece386855 -2019,Rio Negro,II.5.1,212.85515999999998,TJ,CO2,74100.0,kg/TJ,15772567.355999999,Gas Oil combustion consumption by agriculture machines,AR-R,SESCO,annual,kg,1c3d2384-4642-385c-8285-47414363bae2 -2019,Rio Negro,II.5.1,212.85515999999998,TJ,CH4,3.9,kg/TJ,830.1351239999999,Gas Oil combustion consumption by agriculture machines,AR-R,SESCO,annual,kg,22b4d8d7-5161-32c6-9892-35d7ee8dde10 -2019,Rio Negro,II.5.1,212.85515999999998,TJ,N2O,3.9,kg/TJ,830.1351239999999,Gas Oil combustion consumption by agriculture machines,AR-R,SESCO,annual,kg,22b4d8d7-5161-32c6-9892-35d7ee8dde10 -2019,Salta,II.5.1,1617.9231599999998,TJ,CO2,74100.0,kg/TJ,119888106.15599999,Gas Oil combustion consumption by agriculture machines,AR-A,SESCO,annual,kg,db5fa880-1912-3d46-a2ce-8455f52a36e6 -2019,Salta,II.5.1,1617.9231599999998,TJ,CH4,3.9,kg/TJ,6309.900323999999,Gas Oil combustion consumption by agriculture machines,AR-A,SESCO,annual,kg,1797b476-95c3-32fc-abaf-11ac938350d4 -2019,Salta,II.5.1,1617.9231599999998,TJ,N2O,3.9,kg/TJ,6309.900323999999,Gas Oil combustion consumption by agriculture machines,AR-A,SESCO,annual,kg,1797b476-95c3-32fc-abaf-11ac938350d4 -2019,San Juan,II.5.1,583.22964,TJ,CO2,74100.0,kg/TJ,43217316.324,Gas Oil combustion consumption by agriculture machines,AR-J,SESCO,annual,kg,d91e9969-3a7b-3f30-8092-d50d860f604e -2019,San Juan,II.5.1,583.22964,TJ,CH4,3.9,kg/TJ,2274.595596,Gas Oil combustion consumption by agriculture machines,AR-J,SESCO,annual,kg,233f05be-3732-3016-bda5-f07658ab00e5 -2019,San Juan,II.5.1,583.22964,TJ,N2O,3.9,kg/TJ,2274.595596,Gas Oil combustion consumption by agriculture machines,AR-J,SESCO,annual,kg,233f05be-3732-3016-bda5-f07658ab00e5 -2019,San Luis,II.5.1,388.32612,TJ,CO2,74100.0,kg/TJ,28774965.492,Gas Oil combustion consumption by agriculture machines,AR-D,SESCO,annual,kg,4095e60d-9e01-3841-93f2-6d426c3971d1 -2019,San Luis,II.5.1,388.32612,TJ,CH4,3.9,kg/TJ,1514.471868,Gas Oil combustion consumption by agriculture machines,AR-D,SESCO,annual,kg,2de3f7e8-1db7-30bb-bee4-16c61e5a30d0 -2019,San Luis,II.5.1,388.32612,TJ,N2O,3.9,kg/TJ,1514.471868,Gas Oil combustion consumption by agriculture machines,AR-D,SESCO,annual,kg,2de3f7e8-1db7-30bb-bee4-16c61e5a30d0 -2019,Santa Fe,II.5.1,6961.0102799999995,TJ,CO2,74100.0,kg/TJ,515810861.74799997,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,cfabf44b-ebb6-3925-a91b-53197306221d -2019,Santa Fe,II.5.1,6961.0102799999995,TJ,CH4,3.9,kg/TJ,27147.940091999997,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,0be64889-426a-3130-bf14-dad7db5d10a1 -2019,Santa Fe,II.5.1,6961.0102799999995,TJ,N2O,3.9,kg/TJ,27147.940091999997,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,0be64889-426a-3130-bf14-dad7db5d10a1 -2019,Santiago del Estero,II.5.1,1817.08884,TJ,CO2,74100.0,kg/TJ,134646283.044,Gas Oil combustion consumption by agriculture machines,AR-G,SESCO,annual,kg,993dc037-85e5-3d08-873a-0eb7ad4a327f -2019,Santiago del Estero,II.5.1,1817.08884,TJ,CH4,3.9,kg/TJ,7086.646475999999,Gas Oil combustion consumption by agriculture machines,AR-G,SESCO,annual,kg,45b0d4f4-4ac8-38af-9c2a-c915734af6be -2019,Santiago del Estero,II.5.1,1817.08884,TJ,N2O,3.9,kg/TJ,7086.646475999999,Gas Oil combustion consumption by agriculture machines,AR-G,SESCO,annual,kg,45b0d4f4-4ac8-38af-9c2a-c915734af6be -2019,Tucuman,II.5.1,1061.13336,TJ,CO2,74100.0,kg/TJ,78629981.976,Gas Oil combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,efd6a92d-6c2c-3b85-a0cc-0e4d67e206d4 -2019,Tucuman,II.5.1,1061.13336,TJ,CH4,3.9,kg/TJ,4138.420104,Gas Oil combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,2c19dba0-0203-3147-9f72-12dda9d4cdaf -2019,Tucuman,II.5.1,1061.13336,TJ,N2O,3.9,kg/TJ,4138.420104,Gas Oil combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,2c19dba0-0203-3147-9f72-12dda9d4cdaf -2019,Buenos Aires,II.5.1,627.62112,TJ,CO2,74100.0,kg/TJ,46506724.992,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,7c406654-8a3d-3078-ae32-6f8d09fe7349 -2019,Buenos Aires,II.5.1,627.62112,TJ,CH4,3.9,kg/TJ,2447.722368,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,7e53c6e2-488a-33d9-a433-42a514bfbbe7 -2019,Buenos Aires,II.5.1,627.62112,TJ,N2O,3.9,kg/TJ,2447.722368,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,7e53c6e2-488a-33d9-a433-42a514bfbbe7 -2019,Capital Federal,II.5.1,3.72036,TJ,CO2,74100.0,kg/TJ,275678.676,Gas Oil combustion consumption by agriculture machines,AR-C,SESCO,annual,kg,4b7df076-85f9-38cf-91af-92b980da1b92 -2019,Capital Federal,II.5.1,3.72036,TJ,CH4,3.9,kg/TJ,14.509404,Gas Oil combustion consumption by agriculture machines,AR-C,SESCO,annual,kg,e162d133-7c9d-3f7d-8e13-445b383c1047 -2019,Capital Federal,II.5.1,3.72036,TJ,N2O,3.9,kg/TJ,14.509404,Gas Oil combustion consumption by agriculture machines,AR-C,SESCO,annual,kg,e162d133-7c9d-3f7d-8e13-445b383c1047 -2019,Catamarca,II.5.1,20.48004,TJ,CO2,74100.0,kg/TJ,1517570.964,Gas Oil combustion consumption by agriculture machines,AR-K,SESCO,annual,kg,7fdbff2b-2ca3-35c6-a643-145a24ca0213 -2019,Catamarca,II.5.1,20.48004,TJ,CH4,3.9,kg/TJ,79.87215599999999,Gas Oil combustion consumption by agriculture machines,AR-K,SESCO,annual,kg,86af5e03-58a3-3bad-b397-7e783ff4b308 -2019,Catamarca,II.5.1,20.48004,TJ,N2O,3.9,kg/TJ,79.87215599999999,Gas Oil combustion consumption by agriculture machines,AR-K,SESCO,annual,kg,86af5e03-58a3-3bad-b397-7e783ff4b308 -2019,Chaco,II.5.1,74.22659999999999,TJ,CO2,74100.0,kg/TJ,5500191.06,Gas Oil combustion consumption by agriculture machines,AR-H,SESCO,annual,kg,875fc73e-af76-34be-835c-2ab909277584 -2019,Chaco,II.5.1,74.22659999999999,TJ,CH4,3.9,kg/TJ,289.48373999999995,Gas Oil combustion consumption by agriculture machines,AR-H,SESCO,annual,kg,f78837cc-2de1-31cb-9108-f56167686fee -2019,Chaco,II.5.1,74.22659999999999,TJ,N2O,3.9,kg/TJ,289.48373999999995,Gas Oil combustion consumption by agriculture machines,AR-H,SESCO,annual,kg,f78837cc-2de1-31cb-9108-f56167686fee -2019,Corrientes,II.5.1,34.89192,TJ,CO2,74100.0,kg/TJ,2585491.272,Gas Oil combustion consumption by agriculture machines,AR-W,SESCO,annual,kg,516f3a17-a4cd-3b8f-9467-6df247a2068a -2019,Corrientes,II.5.1,34.89192,TJ,CH4,3.9,kg/TJ,136.078488,Gas Oil combustion consumption by agriculture machines,AR-W,SESCO,annual,kg,aa2b233b-5479-3f2b-b5e8-d4f849f75576 -2019,Corrientes,II.5.1,34.89192,TJ,N2O,3.9,kg/TJ,136.078488,Gas Oil combustion consumption by agriculture machines,AR-W,SESCO,annual,kg,aa2b233b-5479-3f2b-b5e8-d4f849f75576 -2019,Córdoba,II.5.1,452.5836,TJ,CO2,74100.0,kg/TJ,33536444.759999998,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,5839820b-bcd8-33e3-91d9-4503d7205718 -2019,Córdoba,II.5.1,452.5836,TJ,CH4,3.9,kg/TJ,1765.07604,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,304aabb4-ed20-35d9-bfc2-943eadc07439 -2019,Córdoba,II.5.1,452.5836,TJ,N2O,3.9,kg/TJ,1765.07604,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,304aabb4-ed20-35d9-bfc2-943eadc07439 -2019,Entre Rios,II.5.1,38.17884,TJ,CO2,74100.0,kg/TJ,2829052.044,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,73d19a93-2c29-3295-b14a-f0346404c83d -2019,Entre Rios,II.5.1,38.17884,TJ,CH4,3.9,kg/TJ,148.897476,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,497eef85-a8bb-34d6-9077-083a2b3d6547 -2019,Entre Rios,II.5.1,38.17884,TJ,N2O,3.9,kg/TJ,148.897476,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,497eef85-a8bb-34d6-9077-083a2b3d6547 -2019,Formosa,II.5.1,17.626559999999998,TJ,CO2,74100.0,kg/TJ,1306128.096,Gas Oil combustion consumption by agriculture machines,AR-P,SESCO,annual,kg,d2d0c2ca-384b-378b-bbec-49d12207046f -2019,Formosa,II.5.1,17.626559999999998,TJ,CH4,3.9,kg/TJ,68.74358399999998,Gas Oil combustion consumption by agriculture machines,AR-P,SESCO,annual,kg,d8eda709-9963-3651-b911-2621a5901433 -2019,Formosa,II.5.1,17.626559999999998,TJ,N2O,3.9,kg/TJ,68.74358399999998,Gas Oil combustion consumption by agriculture machines,AR-P,SESCO,annual,kg,d8eda709-9963-3651-b911-2621a5901433 -2019,Jujuy,II.5.1,90.44448,TJ,CO2,74100.0,kg/TJ,6701935.968,Gas Oil combustion consumption by agriculture machines,AR-Y,SESCO,annual,kg,ad4c02e9-92b4-3a21-bab4-a80fe9ff5935 -2019,Jujuy,II.5.1,90.44448,TJ,CH4,3.9,kg/TJ,352.733472,Gas Oil combustion consumption by agriculture machines,AR-Y,SESCO,annual,kg,4f838bb8-2287-35ea-9b92-d88ddb432ad5 -2019,Jujuy,II.5.1,90.44448,TJ,N2O,3.9,kg/TJ,352.733472,Gas Oil combustion consumption by agriculture machines,AR-Y,SESCO,annual,kg,4f838bb8-2287-35ea-9b92-d88ddb432ad5 -2019,La Pampa,II.5.1,136.28076,TJ,CO2,74100.0,kg/TJ,10098404.316,Gas Oil combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,c823c75b-7a50-3877-9bb5-47da37cc7785 -2019,La Pampa,II.5.1,136.28076,TJ,CH4,3.9,kg/TJ,531.494964,Gas Oil combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,0317e3bb-186d-3bbf-8298-2ec4173f5d7b -2019,La Pampa,II.5.1,136.28076,TJ,N2O,3.9,kg/TJ,531.494964,Gas Oil combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,0317e3bb-186d-3bbf-8298-2ec4173f5d7b -2019,Mendoza,II.5.1,422.64011999999997,TJ,CO2,74100.0,kg/TJ,31317632.891999997,Gas Oil combustion consumption by agriculture machines,AR-M,SESCO,annual,kg,2def77de-d827-3a91-8c7b-01781a339f64 -2019,Mendoza,II.5.1,422.64011999999997,TJ,CH4,3.9,kg/TJ,1648.2964679999998,Gas Oil combustion consumption by agriculture machines,AR-M,SESCO,annual,kg,bd2772c8-a006-380f-b692-0c00ed977522 -2019,Mendoza,II.5.1,422.64011999999997,TJ,N2O,3.9,kg/TJ,1648.2964679999998,Gas Oil combustion consumption by agriculture machines,AR-M,SESCO,annual,kg,bd2772c8-a006-380f-b692-0c00ed977522 -2019,Misiones,II.5.1,105.86771999999999,TJ,CO2,74100.0,kg/TJ,7844798.051999999,Gas Oil combustion consumption by agriculture machines,AR-N,SESCO,annual,kg,a1d91659-b6d7-3a49-a507-fd9dc4263c6b -2019,Misiones,II.5.1,105.86771999999999,TJ,CH4,3.9,kg/TJ,412.88410799999997,Gas Oil combustion consumption by agriculture machines,AR-N,SESCO,annual,kg,c941d19d-07f1-3e27-8c1c-f84927eb5c95 -2019,Misiones,II.5.1,105.86771999999999,TJ,N2O,3.9,kg/TJ,412.88410799999997,Gas Oil combustion consumption by agriculture machines,AR-N,SESCO,annual,kg,c941d19d-07f1-3e27-8c1c-f84927eb5c95 -2019,Rio Negro,II.5.1,45.583439999999996,TJ,CO2,74100.0,kg/TJ,3377732.9039999996,Gas Oil combustion consumption by agriculture machines,AR-R,SESCO,annual,kg,4b182174-d83b-3641-afb9-f736d0863df5 -2019,Rio Negro,II.5.1,45.583439999999996,TJ,CH4,3.9,kg/TJ,177.77541599999998,Gas Oil combustion consumption by agriculture machines,AR-R,SESCO,annual,kg,88550b19-e6ed-36ec-8a17-bf280dacfced -2019,Rio Negro,II.5.1,45.583439999999996,TJ,N2O,3.9,kg/TJ,177.77541599999998,Gas Oil combustion consumption by agriculture machines,AR-R,SESCO,annual,kg,88550b19-e6ed-36ec-8a17-bf280dacfced -2019,Salta,II.5.1,180.70836,TJ,CO2,74100.0,kg/TJ,13390489.476,Gas Oil combustion consumption by agriculture machines,AR-A,SESCO,annual,kg,928745e1-ce4e-3135-8551-9e259500be4e -2019,Salta,II.5.1,180.70836,TJ,CH4,3.9,kg/TJ,704.762604,Gas Oil combustion consumption by agriculture machines,AR-A,SESCO,annual,kg,27b0b13c-cdd5-37a9-b73f-4cd5f38eaee4 -2019,Salta,II.5.1,180.70836,TJ,N2O,3.9,kg/TJ,704.762604,Gas Oil combustion consumption by agriculture machines,AR-A,SESCO,annual,kg,27b0b13c-cdd5-37a9-b73f-4cd5f38eaee4 -2019,San Juan,II.5.1,116.77596,TJ,CO2,74100.0,kg/TJ,8653098.636,Gas Oil combustion consumption by agriculture machines,AR-J,SESCO,annual,kg,7f193878-0fdd-3438-84a6-72c2014ce72e -2019,San Juan,II.5.1,116.77596,TJ,CH4,3.9,kg/TJ,455.426244,Gas Oil combustion consumption by agriculture machines,AR-J,SESCO,annual,kg,bd06e004-ba43-38c8-91cd-ea092d3b8f92 -2019,San Juan,II.5.1,116.77596,TJ,N2O,3.9,kg/TJ,455.426244,Gas Oil combustion consumption by agriculture machines,AR-J,SESCO,annual,kg,bd06e004-ba43-38c8-91cd-ea092d3b8f92 -2019,San Luis,II.5.1,40.88784,TJ,CO2,74100.0,kg/TJ,3029788.9439999997,Gas Oil combustion consumption by agriculture machines,AR-D,SESCO,annual,kg,507c71f5-fa87-30ff-83c4-8f5eb7a3e101 -2019,San Luis,II.5.1,40.88784,TJ,CH4,3.9,kg/TJ,159.46257599999998,Gas Oil combustion consumption by agriculture machines,AR-D,SESCO,annual,kg,32444d93-32cb-3be5-937d-2d64454de4f0 -2019,San Luis,II.5.1,40.88784,TJ,N2O,3.9,kg/TJ,159.46257599999998,Gas Oil combustion consumption by agriculture machines,AR-D,SESCO,annual,kg,32444d93-32cb-3be5-937d-2d64454de4f0 -2019,Santa Fe,II.5.1,395.94744,TJ,CO2,74100.0,kg/TJ,29339705.303999998,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,0e2d9bfa-c814-35ae-aaf3-e3a805ffaba4 -2019,Santa Fe,II.5.1,395.94744,TJ,CH4,3.9,kg/TJ,1544.195016,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,b5b0784b-5664-346b-8623-f1d06d80afef -2019,Santa Fe,II.5.1,395.94744,TJ,N2O,3.9,kg/TJ,1544.195016,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,b5b0784b-5664-346b-8623-f1d06d80afef -2019,Santiago del Estero,II.5.1,107.60148,TJ,CO2,74100.0,kg/TJ,7973269.668,Gas Oil combustion consumption by agriculture machines,AR-G,SESCO,annual,kg,f25c682e-49b0-3012-83e6-740c510efd58 -2019,Santiago del Estero,II.5.1,107.60148,TJ,CH4,3.9,kg/TJ,419.64577199999997,Gas Oil combustion consumption by agriculture machines,AR-G,SESCO,annual,kg,6ced76c4-f2d2-3fb4-b34b-b345490412ef -2019,Santiago del Estero,II.5.1,107.60148,TJ,N2O,3.9,kg/TJ,419.64577199999997,Gas Oil combustion consumption by agriculture machines,AR-G,SESCO,annual,kg,6ced76c4-f2d2-3fb4-b34b-b345490412ef -2019,Tucuman,II.5.1,140.25396,TJ,CO2,74100.0,kg/TJ,10392818.436,Gas Oil combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,4663c7a7-2418-397d-ad79-b181c88f9a92 -2019,Tucuman,II.5.1,140.25396,TJ,CH4,3.9,kg/TJ,546.990444,Gas Oil combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,a828bdea-69ac-3e93-874a-32ea41db91d2 -2019,Tucuman,II.5.1,140.25396,TJ,N2O,3.9,kg/TJ,546.990444,Gas Oil combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,a828bdea-69ac-3e93-874a-32ea41db91d2 -2019,Buenos Aires,II.5.1,3.396924,TJ,CO2,71500.0,kg/TJ,242880.066,Jet Kerosene combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,ee26b597-d34e-3a6d-8bca-1ec9f941a8f8 -2019,Buenos Aires,II.5.1,3.396924,TJ,CH4,0.5,kg/TJ,1.698462,Jet Kerosene combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,4542d494-8a77-3550-9d05-92343e857b3b -2019,Buenos Aires,II.5.1,3.396924,TJ,N2O,2.0,kg/TJ,6.793848,Jet Kerosene combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,6e09372d-59c1-3868-a47a-0a7e09fa7a6a -2019,La Pampa,II.5.1,0.25162399999999996,TJ,CO2,71500.0,kg/TJ,17991.115999999998,Jet Kerosene combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,5a9ffcf1-b91f-36e8-89f1-3fb0028a1a19 -2019,La Pampa,II.5.1,0.25162399999999996,TJ,CH4,0.5,kg/TJ,0.12581199999999998,Jet Kerosene combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,9410b4d8-6c4a-3e6a-9be6-be1260d0e734 -2019,La Pampa,II.5.1,0.25162399999999996,TJ,N2O,2.0,kg/TJ,0.5032479999999999,Jet Kerosene combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,92c7eb1e-9101-3896-a91f-7fea236f6ab3 -2019,Rio Negro,II.5.1,0.157265,TJ,CO2,71500.0,kg/TJ,11244.447499999998,Jet Kerosene combustion consumption by agriculture machines,AR-R,SESCO,annual,kg,7611ed35-d2b6-3d56-a761-5cbcb7761925 -2019,Rio Negro,II.5.1,0.157265,TJ,CH4,0.5,kg/TJ,0.0786325,Jet Kerosene combustion consumption by agriculture machines,AR-R,SESCO,annual,kg,ffbd7c2c-8a92-3ee6-81fa-4a55d0d621d6 -2019,Rio Negro,II.5.1,0.157265,TJ,N2O,2.0,kg/TJ,0.31453,Jet Kerosene combustion consumption by agriculture machines,AR-R,SESCO,annual,kg,def8e062-54d5-3d9b-940d-c6228d4dd2f5 -2019,Santa Fe,II.5.1,5.34701,TJ,CO2,71500.0,kg/TJ,382311.215,Jet Kerosene combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,81797d50-1a7c-3534-aa94-72dc55a8e268 -2019,Santa Fe,II.5.1,5.34701,TJ,CH4,0.5,kg/TJ,2.673505,Jet Kerosene combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,1b044d46-4157-3b98-9b5b-da0809146675 -2019,Santa Fe,II.5.1,5.34701,TJ,N2O,2.0,kg/TJ,10.69402,Jet Kerosene combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,41f103f6-be0f-30d6-9203-32f89aedb223 -2019,Buenos Aires,II.5.1,62.636419999999994,TJ,CO2,73300.0,kg/TJ,4591249.585999999,Naphtha combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,94413eba-0146-3797-bbb9-b0024bac7cac -2019,Buenos Aires,II.5.1,62.636419999999994,TJ,CH4,0.5,kg/TJ,31.318209999999997,Naphtha combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,c45e86d6-3ddf-3aff-83e4-76e253e4282d -2019,Buenos Aires,II.5.1,62.636419999999994,TJ,N2O,2.0,kg/TJ,125.27283999999999,Naphtha combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,040f1612-1af1-34c6-a76b-9650bb8e8129 -2019,Mendoza,II.5.1,1.2678049999999998,TJ,CO2,73300.0,kg/TJ,92930.1065,Naphtha combustion consumption by agriculture machines,AR-M,SESCO,annual,kg,f91a0fc0-cee8-3fea-bb34-f93fe5d09946 -2019,Mendoza,II.5.1,1.2678049999999998,TJ,CH4,0.5,kg/TJ,0.6339024999999999,Naphtha combustion consumption by agriculture machines,AR-M,SESCO,annual,kg,8b14ff69-4c18-31db-a94a-796661642763 -2019,Mendoza,II.5.1,1.2678049999999998,TJ,N2O,2.0,kg/TJ,2.5356099999999997,Naphtha combustion consumption by agriculture machines,AR-M,SESCO,annual,kg,8a04558f-c7ca-30c6-b2f6-e3be4c27c4c4 -2019,Salta,II.5.1,0.513975,TJ,CO2,73300.0,kg/TJ,37674.3675,Naphtha combustion consumption by agriculture machines,AR-A,SESCO,annual,kg,126d8f68-8771-319a-b75a-f360086b2d6c -2019,Salta,II.5.1,0.513975,TJ,CH4,0.5,kg/TJ,0.2569875,Naphtha combustion consumption by agriculture machines,AR-A,SESCO,annual,kg,fd0b5cb3-180e-3ca1-972c-a28c70a770b7 -2019,Salta,II.5.1,0.513975,TJ,N2O,2.0,kg/TJ,1.02795,Naphtha combustion consumption by agriculture machines,AR-A,SESCO,annual,kg,7edf10c7-36be-3eff-ada2-257cd2bc27cf -2019,Santa Fe,II.5.1,43.37949,TJ,CO2,73300.0,kg/TJ,3179716.6169999996,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,4a9eb319-6f73-3188-ba73-5c549c08f40a -2019,Santa Fe,II.5.1,43.37949,TJ,CH4,0.5,kg/TJ,21.689745,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,7b1ddfba-7ea3-3c9e-b5fb-eb99354bb39f -2019,Santa Fe,II.5.1,43.37949,TJ,N2O,2.0,kg/TJ,86.75898,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,a01dcfcb-84f6-354f-ac4f-e1802bac5253 -2019,Buenos Aires,II.1.1,10360.2996,TJ,CO2,74100.0,kg/TJ,767698200.36,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,4b3782f8-94ce-32e4-91cd-9a90bb7ec21f -2019,Buenos Aires,II.1.1,10360.2996,TJ,CH4,3.9,kg/TJ,40405.16844,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,d893865e-de42-31f3-bf64-f5151fc62e87 -2019,Buenos Aires,II.1.1,10360.2996,TJ,N2O,3.9,kg/TJ,40405.16844,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,d893865e-de42-31f3-bf64-f5151fc62e87 -2019,Capital Federal,II.1.1,3542.54124,TJ,CO2,74100.0,kg/TJ,262502305.884,Gas Oil combustion consumption by freight transport,AR-C,SESCO,annual,kg,add1b791-641e-3a27-86b3-8e9f3b8329ef -2019,Capital Federal,II.1.1,3542.54124,TJ,CH4,3.9,kg/TJ,13815.910836,Gas Oil combustion consumption by freight transport,AR-C,SESCO,annual,kg,64478c71-82e0-3a51-8460-88a9afcf19a1 -2019,Capital Federal,II.1.1,3542.54124,TJ,N2O,3.9,kg/TJ,13815.910836,Gas Oil combustion consumption by freight transport,AR-C,SESCO,annual,kg,64478c71-82e0-3a51-8460-88a9afcf19a1 -2019,Catamarca,II.1.1,19.685399999999998,TJ,CO2,74100.0,kg/TJ,1458688.14,Gas Oil combustion consumption by freight transport,AR-K,SESCO,annual,kg,96353c3b-262e-33b3-a672-49181185435b -2019,Catamarca,II.1.1,19.685399999999998,TJ,CH4,3.9,kg/TJ,76.77305999999999,Gas Oil combustion consumption by freight transport,AR-K,SESCO,annual,kg,fd390576-276c-3beb-a15b-34692fcb3592 -2019,Catamarca,II.1.1,19.685399999999998,TJ,N2O,3.9,kg/TJ,76.77305999999999,Gas Oil combustion consumption by freight transport,AR-K,SESCO,annual,kg,fd390576-276c-3beb-a15b-34692fcb3592 -2019,Chaco,II.1.1,263.71211999999997,TJ,CO2,74100.0,kg/TJ,19541068.091999996,Gas Oil combustion consumption by freight transport,AR-H,SESCO,annual,kg,41800442-98dd-33bc-ba3c-0188119fd4c1 -2019,Chaco,II.1.1,263.71211999999997,TJ,CH4,3.9,kg/TJ,1028.4772679999999,Gas Oil combustion consumption by freight transport,AR-H,SESCO,annual,kg,ea116540-40d8-31b9-ae8a-84b9d2a6af6c -2019,Chaco,II.1.1,263.71211999999997,TJ,N2O,3.9,kg/TJ,1028.4772679999999,Gas Oil combustion consumption by freight transport,AR-H,SESCO,annual,kg,ea116540-40d8-31b9-ae8a-84b9d2a6af6c -2019,Chubut,II.1.1,212.20499999999998,TJ,CO2,74100.0,kg/TJ,15724390.499999998,Gas Oil combustion consumption by freight transport,AR-U,SESCO,annual,kg,688ab315-d122-377e-a7ec-fa41465d67af -2019,Chubut,II.1.1,212.20499999999998,TJ,CH4,3.9,kg/TJ,827.5994999999999,Gas Oil combustion consumption by freight transport,AR-U,SESCO,annual,kg,31d3657b-02d1-33cb-940f-017d58807fc4 -2019,Chubut,II.1.1,212.20499999999998,TJ,N2O,3.9,kg/TJ,827.5994999999999,Gas Oil combustion consumption by freight transport,AR-U,SESCO,annual,kg,31d3657b-02d1-33cb-940f-017d58807fc4 -2019,Corrientes,II.1.1,426.3966,TJ,CO2,74100.0,kg/TJ,31595988.06,Gas Oil combustion consumption by freight transport,AR-W,SESCO,annual,kg,cc34a216-b789-3ab2-823e-9616c97f5c07 -2019,Corrientes,II.1.1,426.3966,TJ,CH4,3.9,kg/TJ,1662.9467399999999,Gas Oil combustion consumption by freight transport,AR-W,SESCO,annual,kg,969b376e-f013-36b0-bd9c-8a1a69d6a0f0 -2019,Corrientes,II.1.1,426.3966,TJ,N2O,3.9,kg/TJ,1662.9467399999999,Gas Oil combustion consumption by freight transport,AR-W,SESCO,annual,kg,969b376e-f013-36b0-bd9c-8a1a69d6a0f0 -2019,Córdoba,II.1.1,3059.0027999999998,TJ,CO2,74100.0,kg/TJ,226672107.48,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,f5820960-ff55-3798-a757-350b65655fec -2019,Córdoba,II.1.1,3059.0027999999998,TJ,CH4,3.9,kg/TJ,11930.11092,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,b403fc25-3f68-37b6-a842-8f1b7c87ad12 -2019,Córdoba,II.1.1,3059.0027999999998,TJ,N2O,3.9,kg/TJ,11930.11092,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,b403fc25-3f68-37b6-a842-8f1b7c87ad12 -2019,Entre Rios,II.1.1,872.9120399999999,TJ,CO2,74100.0,kg/TJ,64682782.164,Gas Oil combustion consumption by freight transport,AR-E,SESCO,annual,kg,c6801825-5a65-3363-9a24-9860f34e4471 -2019,Entre Rios,II.1.1,872.9120399999999,TJ,CH4,3.9,kg/TJ,3404.3569559999996,Gas Oil combustion consumption by freight transport,AR-E,SESCO,annual,kg,1599b35d-bbac-3c59-bc5c-908e3fb70856 -2019,Entre Rios,II.1.1,872.9120399999999,TJ,N2O,3.9,kg/TJ,3404.3569559999996,Gas Oil combustion consumption by freight transport,AR-E,SESCO,annual,kg,1599b35d-bbac-3c59-bc5c-908e3fb70856 -2019,Formosa,II.1.1,51.03756,TJ,CO2,74100.0,kg/TJ,3781883.196,Gas Oil combustion consumption by freight transport,AR-P,SESCO,annual,kg,bb9e237a-d400-3466-9372-3561afd4aeac -2019,Formosa,II.1.1,51.03756,TJ,CH4,3.9,kg/TJ,199.046484,Gas Oil combustion consumption by freight transport,AR-P,SESCO,annual,kg,5b7de83d-ad98-3ecc-a422-335c197cedf1 -2019,Formosa,II.1.1,51.03756,TJ,N2O,3.9,kg/TJ,199.046484,Gas Oil combustion consumption by freight transport,AR-P,SESCO,annual,kg,5b7de83d-ad98-3ecc-a422-335c197cedf1 -2019,Jujuy,II.1.1,228.459,TJ,CO2,74100.0,kg/TJ,16928811.9,Gas Oil combustion consumption by freight transport,AR-Y,SESCO,annual,kg,685c529e-92f4-3794-a67c-90a9c8de8fd5 -2019,Jujuy,II.1.1,228.459,TJ,CH4,3.9,kg/TJ,890.9901,Gas Oil combustion consumption by freight transport,AR-Y,SESCO,annual,kg,76b5be59-6b56-3260-93a0-8a1269348dc3 -2019,Jujuy,II.1.1,228.459,TJ,N2O,3.9,kg/TJ,890.9901,Gas Oil combustion consumption by freight transport,AR-Y,SESCO,annual,kg,76b5be59-6b56-3260-93a0-8a1269348dc3 -2019,La Pampa,II.1.1,226.14731999999998,TJ,CO2,74100.0,kg/TJ,16757516.411999999,Gas Oil combustion consumption by freight transport,AR-L,SESCO,annual,kg,bcd7ce69-c110-3d10-87d5-6c358aa1652c -2019,La Pampa,II.1.1,226.14731999999998,TJ,CH4,3.9,kg/TJ,881.9745479999999,Gas Oil combustion consumption by freight transport,AR-L,SESCO,annual,kg,2866566b-ba10-3162-91d4-b493fe2e3ee5 -2019,La Pampa,II.1.1,226.14731999999998,TJ,N2O,3.9,kg/TJ,881.9745479999999,Gas Oil combustion consumption by freight transport,AR-L,SESCO,annual,kg,2866566b-ba10-3162-91d4-b493fe2e3ee5 -2019,La Rioja,II.1.1,11.45004,TJ,CO2,74100.0,kg/TJ,848447.9639999999,Gas Oil combustion consumption by freight transport,AR-F,SESCO,annual,kg,8cc4e55a-4646-3e6a-b3c8-555fd44900af -2019,La Rioja,II.1.1,11.45004,TJ,CH4,3.9,kg/TJ,44.655156,Gas Oil combustion consumption by freight transport,AR-F,SESCO,annual,kg,fdebbb8a-296c-349a-b50f-23df81f98809 -2019,La Rioja,II.1.1,11.45004,TJ,N2O,3.9,kg/TJ,44.655156,Gas Oil combustion consumption by freight transport,AR-F,SESCO,annual,kg,fdebbb8a-296c-349a-b50f-23df81f98809 -2019,Mendoza,II.1.1,1947.9515999999999,TJ,CO2,74100.0,kg/TJ,144343213.56,Gas Oil combustion consumption by freight transport,AR-M,SESCO,annual,kg,fec03883-65fc-3ba2-9494-8ebeb98008ac -2019,Mendoza,II.1.1,1947.9515999999999,TJ,CH4,3.9,kg/TJ,7597.011239999999,Gas Oil combustion consumption by freight transport,AR-M,SESCO,annual,kg,96ae2b25-41c3-3b35-9f44-ecba34316cbf -2019,Mendoza,II.1.1,1947.9515999999999,TJ,N2O,3.9,kg/TJ,7597.011239999999,Gas Oil combustion consumption by freight transport,AR-M,SESCO,annual,kg,96ae2b25-41c3-3b35-9f44-ecba34316cbf -2019,Misiones,II.1.1,1132.68708,TJ,CO2,74100.0,kg/TJ,83932112.62799999,Gas Oil combustion consumption by freight transport,AR-N,SESCO,annual,kg,b1628353-b883-329c-b35d-e5dee1015dba -2019,Misiones,II.1.1,1132.68708,TJ,CH4,3.9,kg/TJ,4417.479611999999,Gas Oil combustion consumption by freight transport,AR-N,SESCO,annual,kg,1c1e6a2c-83c5-3348-ab3d-95d59384ff99 -2019,Misiones,II.1.1,1132.68708,TJ,N2O,3.9,kg/TJ,4417.479611999999,Gas Oil combustion consumption by freight transport,AR-N,SESCO,annual,kg,1c1e6a2c-83c5-3348-ab3d-95d59384ff99 -2019,Neuquén,II.1.1,915.35304,TJ,CO2,74100.0,kg/TJ,67827660.264,Gas Oil combustion consumption by freight transport,AR-Q,SESCO,annual,kg,443f494c-b157-3067-9433-b06b20e0953a -2019,Neuquén,II.1.1,915.35304,TJ,CH4,3.9,kg/TJ,3569.876856,Gas Oil combustion consumption by freight transport,AR-Q,SESCO,annual,kg,b775d86c-3bf3-3d80-8334-b5ff2af356db -2019,Neuquén,II.1.1,915.35304,TJ,N2O,3.9,kg/TJ,3569.876856,Gas Oil combustion consumption by freight transport,AR-Q,SESCO,annual,kg,b775d86c-3bf3-3d80-8334-b5ff2af356db -2019,Rio Negro,II.1.1,452.72808,TJ,CO2,74100.0,kg/TJ,33547150.728,Gas Oil combustion consumption by freight transport,AR-R,SESCO,annual,kg,0983244f-7cc1-3696-aa7b-65db173dc90c -2019,Rio Negro,II.1.1,452.72808,TJ,CH4,3.9,kg/TJ,1765.639512,Gas Oil combustion consumption by freight transport,AR-R,SESCO,annual,kg,2b52f489-8877-3734-a353-397b1c16d704 -2019,Rio Negro,II.1.1,452.72808,TJ,N2O,3.9,kg/TJ,1765.639512,Gas Oil combustion consumption by freight transport,AR-R,SESCO,annual,kg,2b52f489-8877-3734-a353-397b1c16d704 -2019,Salta,II.1.1,393.3468,TJ,CO2,74100.0,kg/TJ,29146997.88,Gas Oil combustion consumption by freight transport,AR-A,SESCO,annual,kg,aee0170a-80a1-32df-b046-e536baedc041 -2019,Salta,II.1.1,393.3468,TJ,CH4,3.9,kg/TJ,1534.05252,Gas Oil combustion consumption by freight transport,AR-A,SESCO,annual,kg,0740596d-4e4f-3d4c-9142-c56a1103a04f -2019,Salta,II.1.1,393.3468,TJ,N2O,3.9,kg/TJ,1534.05252,Gas Oil combustion consumption by freight transport,AR-A,SESCO,annual,kg,0740596d-4e4f-3d4c-9142-c56a1103a04f -2019,San Juan,II.1.1,184.3926,TJ,CO2,74100.0,kg/TJ,13663491.659999998,Gas Oil combustion consumption by freight transport,AR-J,SESCO,annual,kg,7b5d39f3-7964-3345-9393-99fbe34cef22 -2019,San Juan,II.1.1,184.3926,TJ,CH4,3.9,kg/TJ,719.13114,Gas Oil combustion consumption by freight transport,AR-J,SESCO,annual,kg,e7e6ebd0-b26b-3073-bee1-a3030771520a -2019,San Juan,II.1.1,184.3926,TJ,N2O,3.9,kg/TJ,719.13114,Gas Oil combustion consumption by freight transport,AR-J,SESCO,annual,kg,e7e6ebd0-b26b-3073-bee1-a3030771520a -2019,San Luis,II.1.1,226.79747999999998,TJ,CO2,74100.0,kg/TJ,16805693.268,Gas Oil combustion consumption by freight transport,AR-D,SESCO,annual,kg,4adfec5b-e57a-3419-b0df-d4499cd6dd27 -2019,San Luis,II.1.1,226.79747999999998,TJ,CH4,3.9,kg/TJ,884.5101719999999,Gas Oil combustion consumption by freight transport,AR-D,SESCO,annual,kg,4b12f089-6671-3071-b979-33cb1d977f66 -2019,San Luis,II.1.1,226.79747999999998,TJ,N2O,3.9,kg/TJ,884.5101719999999,Gas Oil combustion consumption by freight transport,AR-D,SESCO,annual,kg,4b12f089-6671-3071-b979-33cb1d977f66 -2019,Santa Cruz,II.1.1,192.48348,TJ,CO2,74100.0,kg/TJ,14263025.867999999,Gas Oil combustion consumption by freight transport,AR-Z,SESCO,annual,kg,860b05e8-0b8c-31a5-bfbb-95b2460c2e6c -2019,Santa Cruz,II.1.1,192.48348,TJ,CH4,3.9,kg/TJ,750.685572,Gas Oil combustion consumption by freight transport,AR-Z,SESCO,annual,kg,f5e43348-b361-3b52-bad9-d1e7a27daae7 -2019,Santa Cruz,II.1.1,192.48348,TJ,N2O,3.9,kg/TJ,750.685572,Gas Oil combustion consumption by freight transport,AR-Z,SESCO,annual,kg,f5e43348-b361-3b52-bad9-d1e7a27daae7 -2019,Santa Fe,II.1.1,3022.19652,TJ,CO2,74100.0,kg/TJ,223944762.132,Gas Oil combustion consumption by freight transport,AR-S,SESCO,annual,kg,12df789c-62bd-3868-b527-e67913cacaed -2019,Santa Fe,II.1.1,3022.19652,TJ,CH4,3.9,kg/TJ,11786.566428,Gas Oil combustion consumption by freight transport,AR-S,SESCO,annual,kg,85654396-bead-3cfe-9029-a8346ee61da9 -2019,Santa Fe,II.1.1,3022.19652,TJ,N2O,3.9,kg/TJ,11786.566428,Gas Oil combustion consumption by freight transport,AR-S,SESCO,annual,kg,85654396-bead-3cfe-9029-a8346ee61da9 -2019,Santiago del Estero,II.1.1,286.90116,TJ,CO2,74100.0,kg/TJ,21259375.956,Gas Oil combustion consumption by freight transport,AR-G,SESCO,annual,kg,ddeebddd-9cb9-35db-a1b4-d15b1b494cd0 -2019,Santiago del Estero,II.1.1,286.90116,TJ,CH4,3.9,kg/TJ,1118.914524,Gas Oil combustion consumption by freight transport,AR-G,SESCO,annual,kg,22a2aa90-210c-346c-9579-a28003277917 -2019,Santiago del Estero,II.1.1,286.90116,TJ,N2O,3.9,kg/TJ,1118.914524,Gas Oil combustion consumption by freight transport,AR-G,SESCO,annual,kg,22a2aa90-210c-346c-9579-a28003277917 -2019,Tierra del Fuego,II.1.1,312.94368,TJ,CO2,74100.0,kg/TJ,23189126.687999997,Gas Oil combustion consumption by freight transport,AR-V,SESCO,annual,kg,320f3bab-8cb5-31c4-abfd-6913bfa74c9c -2019,Tierra del Fuego,II.1.1,312.94368,TJ,CH4,3.9,kg/TJ,1220.4803519999998,Gas Oil combustion consumption by freight transport,AR-V,SESCO,annual,kg,2ffd81a2-0b9f-323f-bc20-212c8b337e26 -2019,Tierra del Fuego,II.1.1,312.94368,TJ,N2O,3.9,kg/TJ,1220.4803519999998,Gas Oil combustion consumption by freight transport,AR-V,SESCO,annual,kg,2ffd81a2-0b9f-323f-bc20-212c8b337e26 -2019,Tucuman,II.1.1,602.37324,TJ,CO2,74100.0,kg/TJ,44635857.084,Gas Oil combustion consumption by freight transport,AR-T,SESCO,annual,kg,a62bf3fd-156e-36e0-99f7-d5dd27340f14 -2019,Tucuman,II.1.1,602.37324,TJ,CH4,3.9,kg/TJ,2349.255636,Gas Oil combustion consumption by freight transport,AR-T,SESCO,annual,kg,ef46c312-30ad-3771-ba67-2f5e8882a6c9 -2019,Tucuman,II.1.1,602.37324,TJ,N2O,3.9,kg/TJ,2349.255636,Gas Oil combustion consumption by freight transport,AR-T,SESCO,annual,kg,ef46c312-30ad-3771-ba67-2f5e8882a6c9 -2019,Buenos Aires,II.1.1,2229.57924,TJ,CO2,74100.0,kg/TJ,165211821.68400002,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,60625f0a-cc4c-30b0-ab72-95a696a76099 -2019,Buenos Aires,II.1.1,2229.57924,TJ,CH4,3.9,kg/TJ,8695.359036,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,6e18fa89-4cd0-3e52-9d09-e9bc9bfe96f1 -2019,Buenos Aires,II.1.1,2229.57924,TJ,N2O,3.9,kg/TJ,8695.359036,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,6e18fa89-4cd0-3e52-9d09-e9bc9bfe96f1 -2019,Capital Federal,II.1.1,2349.9672,TJ,CO2,74100.0,kg/TJ,174132569.52,Gas Oil combustion consumption by freight transport,AR-C,SESCO,annual,kg,670e9da6-dfd3-314c-997a-45186b6d61f8 -2019,Capital Federal,II.1.1,2349.9672,TJ,CH4,3.9,kg/TJ,9164.87208,Gas Oil combustion consumption by freight transport,AR-C,SESCO,annual,kg,5a5b4e1e-3ac9-3aed-ae5d-c857ad23d49c -2019,Capital Federal,II.1.1,2349.9672,TJ,N2O,3.9,kg/TJ,9164.87208,Gas Oil combustion consumption by freight transport,AR-C,SESCO,annual,kg,5a5b4e1e-3ac9-3aed-ae5d-c857ad23d49c -2019,Catamarca,II.1.1,7.07952,TJ,CO2,74100.0,kg/TJ,524592.4319999999,Gas Oil combustion consumption by freight transport,AR-K,SESCO,annual,kg,1748feeb-395c-3b9c-8df9-1934cf8e8b3c -2019,Catamarca,II.1.1,7.07952,TJ,CH4,3.9,kg/TJ,27.610127999999996,Gas Oil combustion consumption by freight transport,AR-K,SESCO,annual,kg,c091a547-dd48-371d-a7f8-43546148ea96 -2019,Catamarca,II.1.1,7.07952,TJ,N2O,3.9,kg/TJ,27.610127999999996,Gas Oil combustion consumption by freight transport,AR-K,SESCO,annual,kg,c091a547-dd48-371d-a7f8-43546148ea96 -2019,Chaco,II.1.1,96.90996,TJ,CO2,74100.0,kg/TJ,7181028.036,Gas Oil combustion consumption by freight transport,AR-H,SESCO,annual,kg,d4726b94-b74b-3e68-abf1-1811dec21cfd -2019,Chaco,II.1.1,96.90996,TJ,CH4,3.9,kg/TJ,377.948844,Gas Oil combustion consumption by freight transport,AR-H,SESCO,annual,kg,04625287-3400-3c75-b5ea-70064565c6aa -2019,Chaco,II.1.1,96.90996,TJ,N2O,3.9,kg/TJ,377.948844,Gas Oil combustion consumption by freight transport,AR-H,SESCO,annual,kg,04625287-3400-3c75-b5ea-70064565c6aa -2019,Chubut,II.1.1,284.55336,TJ,CO2,74100.0,kg/TJ,21085403.976,Gas Oil combustion consumption by freight transport,AR-U,SESCO,annual,kg,71cd0b3c-e7f6-3b71-aa7e-be67ed2553f3 -2019,Chubut,II.1.1,284.55336,TJ,CH4,3.9,kg/TJ,1109.758104,Gas Oil combustion consumption by freight transport,AR-U,SESCO,annual,kg,1f2335db-a7a2-3196-a1c9-3ffdd20618a2 -2019,Chubut,II.1.1,284.55336,TJ,N2O,3.9,kg/TJ,1109.758104,Gas Oil combustion consumption by freight transport,AR-U,SESCO,annual,kg,1f2335db-a7a2-3196-a1c9-3ffdd20618a2 -2019,Corrientes,II.1.1,107.60148,TJ,CO2,74100.0,kg/TJ,7973269.668,Gas Oil combustion consumption by freight transport,AR-W,SESCO,annual,kg,c078b943-7475-3083-90f4-93fd38949001 -2019,Corrientes,II.1.1,107.60148,TJ,CH4,3.9,kg/TJ,419.64577199999997,Gas Oil combustion consumption by freight transport,AR-W,SESCO,annual,kg,c255f626-c164-3631-8b4d-59bb897c0aeb -2019,Corrientes,II.1.1,107.60148,TJ,N2O,3.9,kg/TJ,419.64577199999997,Gas Oil combustion consumption by freight transport,AR-W,SESCO,annual,kg,c255f626-c164-3631-8b4d-59bb897c0aeb -2019,Córdoba,II.1.1,411.37068,TJ,CO2,74100.0,kg/TJ,30482567.388,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,fdc61be8-397c-34db-a2b9-825f94c35206 -2019,Córdoba,II.1.1,411.37068,TJ,CH4,3.9,kg/TJ,1604.345652,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,eb9450c5-7315-36e7-b04d-8ec48217589e -2019,Córdoba,II.1.1,411.37068,TJ,N2O,3.9,kg/TJ,1604.345652,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,eb9450c5-7315-36e7-b04d-8ec48217589e -2019,Entre Rios,II.1.1,229.97603999999998,TJ,CO2,74100.0,kg/TJ,17041224.564,Gas Oil combustion consumption by freight transport,AR-E,SESCO,annual,kg,1f4f525b-92d6-3f73-acdc-55f9f6af0bc0 -2019,Entre Rios,II.1.1,229.97603999999998,TJ,CH4,3.9,kg/TJ,896.9065559999999,Gas Oil combustion consumption by freight transport,AR-E,SESCO,annual,kg,e69c4ce0-7b36-33a1-ae90-feedd7da10cc -2019,Entre Rios,II.1.1,229.97603999999998,TJ,N2O,3.9,kg/TJ,896.9065559999999,Gas Oil combustion consumption by freight transport,AR-E,SESCO,annual,kg,e69c4ce0-7b36-33a1-ae90-feedd7da10cc -2019,Formosa,II.1.1,14.91756,TJ,CO2,74100.0,kg/TJ,1105391.196,Gas Oil combustion consumption by freight transport,AR-P,SESCO,annual,kg,5af0ae02-37da-385a-b793-fdbfbe48e8cb -2019,Formosa,II.1.1,14.91756,TJ,CH4,3.9,kg/TJ,58.178484,Gas Oil combustion consumption by freight transport,AR-P,SESCO,annual,kg,a58f527f-53c2-3b9f-95b9-44aaba946b9b -2019,Formosa,II.1.1,14.91756,TJ,N2O,3.9,kg/TJ,58.178484,Gas Oil combustion consumption by freight transport,AR-P,SESCO,annual,kg,a58f527f-53c2-3b9f-95b9-44aaba946b9b -2019,Jujuy,II.1.1,25.175639999999998,TJ,CO2,74100.0,kg/TJ,1865514.9239999999,Gas Oil combustion consumption by freight transport,AR-Y,SESCO,annual,kg,cd8fff05-6658-38b3-86aa-65ec148fadb4 -2019,Jujuy,II.1.1,25.175639999999998,TJ,CH4,3.9,kg/TJ,98.18499599999998,Gas Oil combustion consumption by freight transport,AR-Y,SESCO,annual,kg,2f42e92d-5068-3e02-b579-dbfdec495e61 -2019,Jujuy,II.1.1,25.175639999999998,TJ,N2O,3.9,kg/TJ,98.18499599999998,Gas Oil combustion consumption by freight transport,AR-Y,SESCO,annual,kg,2f42e92d-5068-3e02-b579-dbfdec495e61 -2019,La Pampa,II.1.1,68.66412,TJ,CO2,74100.0,kg/TJ,5088011.291999999,Gas Oil combustion consumption by freight transport,AR-L,SESCO,annual,kg,16053e1b-400d-3b2f-a7e1-1fe46143b782 -2019,La Pampa,II.1.1,68.66412,TJ,CH4,3.9,kg/TJ,267.79006799999996,Gas Oil combustion consumption by freight transport,AR-L,SESCO,annual,kg,102e85b2-7454-3187-a124-71228d7d983e -2019,La Pampa,II.1.1,68.66412,TJ,N2O,3.9,kg/TJ,267.79006799999996,Gas Oil combustion consumption by freight transport,AR-L,SESCO,annual,kg,102e85b2-7454-3187-a124-71228d7d983e -2019,La Rioja,II.1.1,13.581119999999999,TJ,CO2,74100.0,kg/TJ,1006360.9919999999,Gas Oil combustion consumption by freight transport,AR-F,SESCO,annual,kg,9b24e856-2db3-3b45-8ce4-8bb8db0bdacf -2019,La Rioja,II.1.1,13.581119999999999,TJ,CH4,3.9,kg/TJ,52.966367999999996,Gas Oil combustion consumption by freight transport,AR-F,SESCO,annual,kg,68ddd49c-85a3-3560-be4a-2126fc0a1a41 -2019,La Rioja,II.1.1,13.581119999999999,TJ,N2O,3.9,kg/TJ,52.966367999999996,Gas Oil combustion consumption by freight transport,AR-F,SESCO,annual,kg,68ddd49c-85a3-3560-be4a-2126fc0a1a41 -2019,Mendoza,II.1.1,461.64972,TJ,CO2,74100.0,kg/TJ,34208244.252,Gas Oil combustion consumption by freight transport,AR-M,SESCO,annual,kg,47ed6ab4-fbd6-3e3c-b4a7-cb8545880db0 -2019,Mendoza,II.1.1,461.64972,TJ,CH4,3.9,kg/TJ,1800.433908,Gas Oil combustion consumption by freight transport,AR-M,SESCO,annual,kg,fbc29fef-e7c4-3587-b8c9-6ec98929d3c7 -2019,Mendoza,II.1.1,461.64972,TJ,N2O,3.9,kg/TJ,1800.433908,Gas Oil combustion consumption by freight transport,AR-M,SESCO,annual,kg,fbc29fef-e7c4-3587-b8c9-6ec98929d3c7 -2019,Misiones,II.1.1,136.64195999999998,TJ,CO2,74100.0,kg/TJ,10125169.236,Gas Oil combustion consumption by freight transport,AR-N,SESCO,annual,kg,3de6cf82-c8bc-3615-a19b-80426e6c0960 -2019,Misiones,II.1.1,136.64195999999998,TJ,CH4,3.9,kg/TJ,532.9036439999999,Gas Oil combustion consumption by freight transport,AR-N,SESCO,annual,kg,29d7cc40-37bf-3992-8c31-6e0317ca2a00 -2019,Misiones,II.1.1,136.64195999999998,TJ,N2O,3.9,kg/TJ,532.9036439999999,Gas Oil combustion consumption by freight transport,AR-N,SESCO,annual,kg,29d7cc40-37bf-3992-8c31-6e0317ca2a00 -2019,Neuquén,II.1.1,973.2533999999999,TJ,CO2,74100.0,kg/TJ,72118076.94,Gas Oil combustion consumption by freight transport,AR-Q,SESCO,annual,kg,39f6ea4c-a7b8-3830-8af7-c888daeb019c -2019,Neuquén,II.1.1,973.2533999999999,TJ,CH4,3.9,kg/TJ,3795.68826,Gas Oil combustion consumption by freight transport,AR-Q,SESCO,annual,kg,d0d4a5d9-a150-3a42-a85a-9c0fe6cb7f23 -2019,Neuquén,II.1.1,973.2533999999999,TJ,N2O,3.9,kg/TJ,3795.68826,Gas Oil combustion consumption by freight transport,AR-Q,SESCO,annual,kg,d0d4a5d9-a150-3a42-a85a-9c0fe6cb7f23 -2019,Rio Negro,II.1.1,267.43248,TJ,CO2,74100.0,kg/TJ,19816746.768,Gas Oil combustion consumption by freight transport,AR-R,SESCO,annual,kg,7d6286b8-c70c-361e-86f2-402c349b19d8 -2019,Rio Negro,II.1.1,267.43248,TJ,CH4,3.9,kg/TJ,1042.986672,Gas Oil combustion consumption by freight transport,AR-R,SESCO,annual,kg,967ddba7-1924-374c-a18a-e5d723ed5d81 -2019,Rio Negro,II.1.1,267.43248,TJ,N2O,3.9,kg/TJ,1042.986672,Gas Oil combustion consumption by freight transport,AR-R,SESCO,annual,kg,967ddba7-1924-374c-a18a-e5d723ed5d81 -2019,Salta,II.1.1,151.8846,TJ,CO2,74100.0,kg/TJ,11254648.860000001,Gas Oil combustion consumption by freight transport,AR-A,SESCO,annual,kg,7729faef-9512-34ef-91bd-9053ed93d137 -2019,Salta,II.1.1,151.8846,TJ,CH4,3.9,kg/TJ,592.3499400000001,Gas Oil combustion consumption by freight transport,AR-A,SESCO,annual,kg,1acdc6dd-5754-3cfd-ae6a-b8220c994c83 -2019,Salta,II.1.1,151.8846,TJ,N2O,3.9,kg/TJ,592.3499400000001,Gas Oil combustion consumption by freight transport,AR-A,SESCO,annual,kg,1acdc6dd-5754-3cfd-ae6a-b8220c994c83 -2019,San Juan,II.1.1,26.98164,TJ,CO2,74100.0,kg/TJ,1999339.524,Gas Oil combustion consumption by freight transport,AR-J,SESCO,annual,kg,14edbfec-2673-3af6-8cac-c0c830c1b53b -2019,San Juan,II.1.1,26.98164,TJ,CH4,3.9,kg/TJ,105.22839599999999,Gas Oil combustion consumption by freight transport,AR-J,SESCO,annual,kg,10a870e3-13bc-3c32-b8c9-2b0420b8ca40 -2019,San Juan,II.1.1,26.98164,TJ,N2O,3.9,kg/TJ,105.22839599999999,Gas Oil combustion consumption by freight transport,AR-J,SESCO,annual,kg,10a870e3-13bc-3c32-b8c9-2b0420b8ca40 -2019,San Luis,II.1.1,56.92512,TJ,CO2,74100.0,kg/TJ,4218151.392,Gas Oil combustion consumption by freight transport,AR-D,SESCO,annual,kg,fe67abf1-28b8-3887-ad88-da25ee732556 -2019,San Luis,II.1.1,56.92512,TJ,CH4,3.9,kg/TJ,222.007968,Gas Oil combustion consumption by freight transport,AR-D,SESCO,annual,kg,d84695a3-7bcd-31fa-8f7d-50d02c5f97d3 -2019,San Luis,II.1.1,56.92512,TJ,N2O,3.9,kg/TJ,222.007968,Gas Oil combustion consumption by freight transport,AR-D,SESCO,annual,kg,d84695a3-7bcd-31fa-8f7d-50d02c5f97d3 -2019,Santa Cruz,II.1.1,73.143,TJ,CO2,74100.0,kg/TJ,5419896.3,Gas Oil combustion consumption by freight transport,AR-Z,SESCO,annual,kg,200a0f2c-2b80-37fb-9112-07e2bf5f26b9 -2019,Santa Cruz,II.1.1,73.143,TJ,CH4,3.9,kg/TJ,285.2577,Gas Oil combustion consumption by freight transport,AR-Z,SESCO,annual,kg,22950bba-d1e9-3628-aa5f-7f7fb9b1599a -2019,Santa Cruz,II.1.1,73.143,TJ,N2O,3.9,kg/TJ,285.2577,Gas Oil combustion consumption by freight transport,AR-Z,SESCO,annual,kg,22950bba-d1e9-3628-aa5f-7f7fb9b1599a -2019,Santa Fe,II.1.1,608.9109599999999,TJ,CO2,74100.0,kg/TJ,45120302.13599999,Gas Oil combustion consumption by freight transport,AR-S,SESCO,annual,kg,ffd21794-bef7-32e9-ae4c-17c39ffc4e48 -2019,Santa Fe,II.1.1,608.9109599999999,TJ,CH4,3.9,kg/TJ,2374.752744,Gas Oil combustion consumption by freight transport,AR-S,SESCO,annual,kg,ad4fdc85-1295-36eb-87da-314702024e31 -2019,Santa Fe,II.1.1,608.9109599999999,TJ,N2O,3.9,kg/TJ,2374.752744,Gas Oil combustion consumption by freight transport,AR-S,SESCO,annual,kg,ad4fdc85-1295-36eb-87da-314702024e31 -2019,Santiago del Estero,II.1.1,32.110679999999995,TJ,CO2,74100.0,kg/TJ,2379401.388,Gas Oil combustion consumption by freight transport,AR-G,SESCO,annual,kg,84834b7f-6811-392c-9a21-3d2cafff58b8 -2019,Santiago del Estero,II.1.1,32.110679999999995,TJ,CH4,3.9,kg/TJ,125.23165199999998,Gas Oil combustion consumption by freight transport,AR-G,SESCO,annual,kg,d67a89db-2092-3c9c-b9cd-657721dac10e -2019,Santiago del Estero,II.1.1,32.110679999999995,TJ,N2O,3.9,kg/TJ,125.23165199999998,Gas Oil combustion consumption by freight transport,AR-G,SESCO,annual,kg,d67a89db-2092-3c9c-b9cd-657721dac10e -2019,Tierra del Fuego,II.1.1,105.03696,TJ,CO2,74100.0,kg/TJ,7783238.736,Gas Oil combustion consumption by freight transport,AR-V,SESCO,annual,kg,4eea6358-68c6-384e-b866-6f9bcc498501 -2019,Tierra del Fuego,II.1.1,105.03696,TJ,CH4,3.9,kg/TJ,409.644144,Gas Oil combustion consumption by freight transport,AR-V,SESCO,annual,kg,82a3e946-9772-3a93-a933-f6b2b02225de -2019,Tierra del Fuego,II.1.1,105.03696,TJ,N2O,3.9,kg/TJ,409.644144,Gas Oil combustion consumption by freight transport,AR-V,SESCO,annual,kg,82a3e946-9772-3a93-a933-f6b2b02225de -2019,Tucuman,II.1.1,116.1258,TJ,CO2,74100.0,kg/TJ,8604921.78,Gas Oil combustion consumption by freight transport,AR-T,SESCO,annual,kg,2351e9b9-f3a8-33ae-9fb7-274ce69173ba -2019,Tucuman,II.1.1,116.1258,TJ,CH4,3.9,kg/TJ,452.89061999999996,Gas Oil combustion consumption by freight transport,AR-T,SESCO,annual,kg,92e56c74-2abd-3e6a-8351-b2041851817d -2019,Tucuman,II.1.1,116.1258,TJ,N2O,3.9,kg/TJ,452.89061999999996,Gas Oil combustion consumption by freight transport,AR-T,SESCO,annual,kg,92e56c74-2abd-3e6a-8351-b2041851817d -2019,Neuquén,II.1.1,0.031452999999999995,TJ,CO2,71500.0,kg/TJ,2248.8894999999998,Jet Kerosene combustion consumption by freight transport,AR-Q,SESCO,annual,kg,27fe5466-574e-3ffd-ad5a-7a3ceadb48f2 -2019,Neuquén,II.1.1,0.031452999999999995,TJ,CH4,0.5,kg/TJ,0.015726499999999997,Jet Kerosene combustion consumption by freight transport,AR-Q,SESCO,annual,kg,81569fb2-0cd1-3fb9-94d1-d24e9d287347 -2019,Neuquén,II.1.1,0.031452999999999995,TJ,N2O,2.0,kg/TJ,0.06290599999999999,Jet Kerosene combustion consumption by freight transport,AR-Q,SESCO,annual,kg,5d0c3f55-2d4d-3ec2-a6e1-a958a0138e84 -2019,Santa Fe,II.1.1,0.031452999999999995,TJ,CO2,71500.0,kg/TJ,2248.8894999999998,Jet Kerosene combustion consumption by freight transport,AR-S,SESCO,annual,kg,e41c87ae-7a9f-3f43-9dd4-07b659f08a21 -2019,Santa Fe,II.1.1,0.031452999999999995,TJ,CH4,0.5,kg/TJ,0.015726499999999997,Jet Kerosene combustion consumption by freight transport,AR-S,SESCO,annual,kg,4d15ecf2-03f8-30f4-bf52-ba6ebaabf8af -2019,Santa Fe,II.1.1,0.031452999999999995,TJ,N2O,2.0,kg/TJ,0.06290599999999999,Jet Kerosene combustion consumption by freight transport,AR-S,SESCO,annual,kg,5ee6b309-fa7b-365d-b049-cfabf52dbfc2 -2019,Buenos Aires,II.1.1,454.319635,TJ,CO2,73300.0,kg/TJ,33301629.245500002,Naphtha combustion consumption by freight transport,AR-B,SESCO,annual,kg,f3fff11a-be9b-378f-b770-84074f816c9c -2019,Buenos Aires,II.1.1,454.319635,TJ,CH4,0.5,kg/TJ,227.1598175,Naphtha combustion consumption by freight transport,AR-B,SESCO,annual,kg,8ea26e0f-903d-3d37-a401-a2726bc851f3 -2019,Buenos Aires,II.1.1,454.319635,TJ,N2O,2.0,kg/TJ,908.63927,Naphtha combustion consumption by freight transport,AR-B,SESCO,annual,kg,c76e128c-fbaf-3080-8f36-9d54831e2bf0 -2019,Capital Federal,II.1.1,461.48102,TJ,CO2,73300.0,kg/TJ,33826558.766,Naphtha combustion consumption by freight transport,AR-C,SESCO,annual,kg,8447780b-8247-3b7f-b3ad-74749f18c68f -2019,Capital Federal,II.1.1,461.48102,TJ,CH4,0.5,kg/TJ,230.74051,Naphtha combustion consumption by freight transport,AR-C,SESCO,annual,kg,1a87a2e5-1fde-3afc-8525-2f15107523c7 -2019,Capital Federal,II.1.1,461.48102,TJ,N2O,2.0,kg/TJ,922.96204,Naphtha combustion consumption by freight transport,AR-C,SESCO,annual,kg,dc8cc46f-1e4d-3d14-83cf-708fb7bb2d46 -2019,Chaco,II.1.1,18.57163,TJ,CO2,73300.0,kg/TJ,1361300.4789999998,Naphtha combustion consumption by freight transport,AR-H,SESCO,annual,kg,6f5b9940-6375-313c-8035-448f10e8b47d -2019,Chaco,II.1.1,18.57163,TJ,CH4,0.5,kg/TJ,9.285815,Naphtha combustion consumption by freight transport,AR-H,SESCO,annual,kg,32b75080-6109-3730-95d8-0cd896eae751 -2019,Chaco,II.1.1,18.57163,TJ,N2O,2.0,kg/TJ,37.14326,Naphtha combustion consumption by freight transport,AR-H,SESCO,annual,kg,ff36ea04-ec20-33f3-b240-960c49c723b3 -2019,Chubut,II.1.1,17.40662,TJ,CO2,73300.0,kg/TJ,1275905.246,Naphtha combustion consumption by freight transport,AR-U,SESCO,annual,kg,9aaa2d6c-6bdf-3538-8f68-de7e5bf8614c -2019,Chubut,II.1.1,17.40662,TJ,CH4,0.5,kg/TJ,8.70331,Naphtha combustion consumption by freight transport,AR-U,SESCO,annual,kg,fa731468-42d5-395f-8bfd-94c1c2cf942c -2019,Chubut,II.1.1,17.40662,TJ,N2O,2.0,kg/TJ,34.81324,Naphtha combustion consumption by freight transport,AR-U,SESCO,annual,kg,766a9bbd-2d3d-3422-9c8e-bb00eda62a31 -2019,Corrientes,II.1.1,10.450825,TJ,CO2,73300.0,kg/TJ,766045.4725,Naphtha combustion consumption by freight transport,AR-W,SESCO,annual,kg,47762b2e-808b-31e2-93b1-407680791ec2 -2019,Corrientes,II.1.1,10.450825,TJ,CH4,0.5,kg/TJ,5.2254125,Naphtha combustion consumption by freight transport,AR-W,SESCO,annual,kg,161945f3-0710-3979-88d7-c6422c436506 -2019,Corrientes,II.1.1,10.450825,TJ,N2O,2.0,kg/TJ,20.90165,Naphtha combustion consumption by freight transport,AR-W,SESCO,annual,kg,0d3ffb4b-e88e-307a-a9f2-036c6c63994c -2019,Córdoba,II.1.1,62.97907,TJ,CO2,73300.0,kg/TJ,4616365.831,Naphtha combustion consumption by freight transport,AR-X,SESCO,annual,kg,eb02313a-21c1-37b6-86d2-2257508275db -2019,Córdoba,II.1.1,62.97907,TJ,CH4,0.5,kg/TJ,31.489535,Naphtha combustion consumption by freight transport,AR-X,SESCO,annual,kg,36b68799-d28b-3154-9fc1-310310f95397 -2019,Córdoba,II.1.1,62.97907,TJ,N2O,2.0,kg/TJ,125.95814,Naphtha combustion consumption by freight transport,AR-X,SESCO,annual,kg,bad10983-b1d3-3408-87c2-ed994f31a727 -2019,Entre Rios,II.1.1,25.458895,TJ,CO2,73300.0,kg/TJ,1866137.0034999999,Naphtha combustion consumption by freight transport,AR-E,SESCO,annual,kg,b1f2c8fa-a184-3100-b116-f710bca7db52 -2019,Entre Rios,II.1.1,25.458895,TJ,CH4,0.5,kg/TJ,12.7294475,Naphtha combustion consumption by freight transport,AR-E,SESCO,annual,kg,6651400d-9b86-3b34-95eb-026dc81b5587 -2019,Entre Rios,II.1.1,25.458895,TJ,N2O,2.0,kg/TJ,50.91779,Naphtha combustion consumption by freight transport,AR-E,SESCO,annual,kg,aa465628-c17f-396d-9d0b-52a60d715b1c -2019,Formosa,II.1.1,0.54824,TJ,CO2,73300.0,kg/TJ,40185.992,Naphtha combustion consumption by freight transport,AR-P,SESCO,annual,kg,15f47fdf-74dc-33ff-ba64-8215b833123a -2019,Formosa,II.1.1,0.54824,TJ,CH4,0.5,kg/TJ,0.27412,Naphtha combustion consumption by freight transport,AR-P,SESCO,annual,kg,f234c087-4033-3a6c-b846-69dce6d6f575 -2019,Formosa,II.1.1,0.54824,TJ,N2O,2.0,kg/TJ,1.09648,Naphtha combustion consumption by freight transport,AR-P,SESCO,annual,kg,4a4763a2-279f-39d2-a66f-8d0ac837a75f -2019,Jujuy,II.1.1,1.9873699999999999,TJ,CO2,73300.0,kg/TJ,145674.221,Naphtha combustion consumption by freight transport,AR-Y,SESCO,annual,kg,ad503a30-8ed0-335b-b9a9-0fe397499b1c -2019,Jujuy,II.1.1,1.9873699999999999,TJ,CH4,0.5,kg/TJ,0.9936849999999999,Naphtha combustion consumption by freight transport,AR-Y,SESCO,annual,kg,126d6a2e-b5b1-3747-92d3-8634dc9c361e -2019,Jujuy,II.1.1,1.9873699999999999,TJ,N2O,2.0,kg/TJ,3.9747399999999997,Naphtha combustion consumption by freight transport,AR-Y,SESCO,annual,kg,950a483f-64fb-344d-ae0d-2ed4ecc44fdd -2019,La Pampa,II.1.1,6.64741,TJ,CO2,73300.0,kg/TJ,487255.153,Naphtha combustion consumption by freight transport,AR-L,SESCO,annual,kg,367ddb60-356e-3d6b-8377-94f3c6b64a20 -2019,La Pampa,II.1.1,6.64741,TJ,CH4,0.5,kg/TJ,3.323705,Naphtha combustion consumption by freight transport,AR-L,SESCO,annual,kg,c666b53f-6c14-304e-9a34-b76312f7384d -2019,La Pampa,II.1.1,6.64741,TJ,N2O,2.0,kg/TJ,13.29482,Naphtha combustion consumption by freight transport,AR-L,SESCO,annual,kg,201f579d-9ec0-3565-9801-490c6ed5501a -2019,La Rioja,II.1.1,0.47970999999999997,TJ,CO2,73300.0,kg/TJ,35162.742999999995,Naphtha combustion consumption by freight transport,AR-F,SESCO,annual,kg,46e90d66-49a4-3ffc-b0bb-9f414038c023 -2019,La Rioja,II.1.1,0.47970999999999997,TJ,CH4,0.5,kg/TJ,0.23985499999999998,Naphtha combustion consumption by freight transport,AR-F,SESCO,annual,kg,1ac7f756-7176-3ad8-952b-85b0b424cc08 -2019,La Rioja,II.1.1,0.47970999999999997,TJ,N2O,2.0,kg/TJ,0.9594199999999999,Naphtha combustion consumption by freight transport,AR-F,SESCO,annual,kg,a982fa76-72fe-3d94-b78e-5f72f833f797 -2019,Mendoza,II.1.1,35.943985,TJ,CO2,73300.0,kg/TJ,2634694.1004999997,Naphtha combustion consumption by freight transport,AR-M,SESCO,annual,kg,8aae1636-3d00-357f-906e-3395ac6be637 -2019,Mendoza,II.1.1,35.943985,TJ,CH4,0.5,kg/TJ,17.9719925,Naphtha combustion consumption by freight transport,AR-M,SESCO,annual,kg,fb648c3f-fc77-37cc-90d7-53ad7577e5ba -2019,Mendoza,II.1.1,35.943985,TJ,N2O,2.0,kg/TJ,71.88797,Naphtha combustion consumption by freight transport,AR-M,SESCO,annual,kg,e963f46b-89d3-3144-9f0f-094756a55375 -2019,Misiones,II.1.1,7.229915,TJ,CO2,73300.0,kg/TJ,529952.7695,Naphtha combustion consumption by freight transport,AR-N,SESCO,annual,kg,a1f88d43-4792-3a48-9a31-e873a41a44e1 -2019,Misiones,II.1.1,7.229915,TJ,CH4,0.5,kg/TJ,3.6149575,Naphtha combustion consumption by freight transport,AR-N,SESCO,annual,kg,5ecad645-7cd3-3437-8bb2-c576c1237f48 -2019,Misiones,II.1.1,7.229915,TJ,N2O,2.0,kg/TJ,14.45983,Naphtha combustion consumption by freight transport,AR-N,SESCO,annual,kg,8e63de13-8331-3313-a314-9d82abfa5d81 -2019,Neuquén,II.1.1,12.095545,TJ,CO2,73300.0,kg/TJ,886603.4484999999,Naphtha combustion consumption by freight transport,AR-Q,SESCO,annual,kg,59c995e1-9f8a-3ccc-9e24-5370c2fef6ac -2019,Neuquén,II.1.1,12.095545,TJ,CH4,0.5,kg/TJ,6.0477725,Naphtha combustion consumption by freight transport,AR-Q,SESCO,annual,kg,6307605c-c360-31ab-ad86-b391fb24482a -2019,Neuquén,II.1.1,12.095545,TJ,N2O,2.0,kg/TJ,24.19109,Naphtha combustion consumption by freight transport,AR-Q,SESCO,annual,kg,17174d49-44e7-3070-b915-edd8860ead4b -2019,Rio Negro,II.1.1,19.25693,TJ,CO2,73300.0,kg/TJ,1411532.969,Naphtha combustion consumption by freight transport,AR-R,SESCO,annual,kg,7a5a209c-9d53-371f-bb98-c17fd3a7930a -2019,Rio Negro,II.1.1,19.25693,TJ,CH4,0.5,kg/TJ,9.628465,Naphtha combustion consumption by freight transport,AR-R,SESCO,annual,kg,16b70b17-40c7-3f43-a08a-14430671c182 -2019,Rio Negro,II.1.1,19.25693,TJ,N2O,2.0,kg/TJ,38.51386,Naphtha combustion consumption by freight transport,AR-R,SESCO,annual,kg,57f0e172-1410-3c07-9d1b-ffd5807dbd3f -2019,Salta,II.1.1,16.549995,TJ,CO2,73300.0,kg/TJ,1213114.6335,Naphtha combustion consumption by freight transport,AR-A,SESCO,annual,kg,8c19236b-8805-3fe5-9c4d-f698c5c6b53d -2019,Salta,II.1.1,16.549995,TJ,CH4,0.5,kg/TJ,8.2749975,Naphtha combustion consumption by freight transport,AR-A,SESCO,annual,kg,b769c8ce-0711-32c7-8fb9-d05a5f4ab2e5 -2019,Salta,II.1.1,16.549995,TJ,N2O,2.0,kg/TJ,33.09999,Naphtha combustion consumption by freight transport,AR-A,SESCO,annual,kg,256f071b-77b9-3b0b-b9c5-0b04932ea221 -2019,San Juan,II.1.1,4.009005,TJ,CO2,73300.0,kg/TJ,293860.0665,Naphtha combustion consumption by freight transport,AR-J,SESCO,annual,kg,6883d041-a532-3baf-a48d-c3e3b732844c -2019,San Juan,II.1.1,4.009005,TJ,CH4,0.5,kg/TJ,2.0045025,Naphtha combustion consumption by freight transport,AR-J,SESCO,annual,kg,39c88092-f6a8-3c3b-8f08-2bd064273d37 -2019,San Juan,II.1.1,4.009005,TJ,N2O,2.0,kg/TJ,8.01801,Naphtha combustion consumption by freight transport,AR-J,SESCO,annual,kg,d60e050e-7f8e-3d9d-89e4-bbb9f5bd3b8c -2019,San Luis,II.1.1,5.68799,TJ,CO2,73300.0,kg/TJ,416929.667,Naphtha combustion consumption by freight transport,AR-D,SESCO,annual,kg,015ad35b-81c8-3155-bf33-4a330169af0b -2019,San Luis,II.1.1,5.68799,TJ,CH4,0.5,kg/TJ,2.843995,Naphtha combustion consumption by freight transport,AR-D,SESCO,annual,kg,6283146e-ec9a-3ece-b247-f121296df556 -2019,San Luis,II.1.1,5.68799,TJ,N2O,2.0,kg/TJ,11.37598,Naphtha combustion consumption by freight transport,AR-D,SESCO,annual,kg,a91fa09e-b256-31ee-8fb1-9f11231e858c -2019,Santa Cruz,II.1.1,2.227225,TJ,CO2,73300.0,kg/TJ,163255.5925,Naphtha combustion consumption by freight transport,AR-Z,SESCO,annual,kg,23617add-fd0d-3242-8726-63787ffb12ab -2019,Santa Cruz,II.1.1,2.227225,TJ,CH4,0.5,kg/TJ,1.1136125,Naphtha combustion consumption by freight transport,AR-Z,SESCO,annual,kg,f4bf4511-fdc7-3a17-a4d8-f13f6be00940 -2019,Santa Cruz,II.1.1,2.227225,TJ,N2O,2.0,kg/TJ,4.45445,Naphtha combustion consumption by freight transport,AR-Z,SESCO,annual,kg,13ca6b82-7e3d-3dbe-adfd-639455d8bd19 -2019,Santa Fe,II.1.1,65.24056,TJ,CO2,73300.0,kg/TJ,4782133.048,Naphtha combustion consumption by freight transport,AR-S,SESCO,annual,kg,28775ef9-2342-3fe2-ac2a-e32dd87c0d12 -2019,Santa Fe,II.1.1,65.24056,TJ,CH4,0.5,kg/TJ,32.62028,Naphtha combustion consumption by freight transport,AR-S,SESCO,annual,kg,80f202ad-259f-3b2b-b1d8-c030bee64d7a -2019,Santa Fe,II.1.1,65.24056,TJ,N2O,2.0,kg/TJ,130.48112,Naphtha combustion consumption by freight transport,AR-S,SESCO,annual,kg,0e51ed0b-c2c4-3e26-bf1c-6a10ad22c9fb -2019,Santiago del Estero,II.1.1,1.062215,TJ,CO2,73300.0,kg/TJ,77860.35949999999,Naphtha combustion consumption by freight transport,AR-G,SESCO,annual,kg,8f892271-1f8a-3497-8dd7-f64044a6fba0 -2019,Santiago del Estero,II.1.1,1.062215,TJ,CH4,0.5,kg/TJ,0.5311075,Naphtha combustion consumption by freight transport,AR-G,SESCO,annual,kg,efe2e8d6-c7f6-3447-b21b-958941e916f5 -2019,Santiago del Estero,II.1.1,1.062215,TJ,N2O,2.0,kg/TJ,2.12443,Naphtha combustion consumption by freight transport,AR-G,SESCO,annual,kg,067e1194-7e13-3767-b31b-067d11f3122e -2019,Tierra del Fuego,II.1.1,10.313765,TJ,CO2,73300.0,kg/TJ,755998.9745,Naphtha combustion consumption by freight transport,AR-V,SESCO,annual,kg,85dc91d1-342d-3dd0-8d27-24efba450268 -2019,Tierra del Fuego,II.1.1,10.313765,TJ,CH4,0.5,kg/TJ,5.1568825,Naphtha combustion consumption by freight transport,AR-V,SESCO,annual,kg,48395193-1332-3451-8a44-a33ca490c05b -2019,Tierra del Fuego,II.1.1,10.313765,TJ,N2O,2.0,kg/TJ,20.62753,Naphtha combustion consumption by freight transport,AR-V,SESCO,annual,kg,b74985a5-3bf8-3734-be93-bc6457443409 -2019,Tucuman,II.1.1,14.80248,TJ,CO2,73300.0,kg/TJ,1085021.784,Naphtha combustion consumption by freight transport,AR-T,SESCO,annual,kg,44558a99-47e8-3ee1-9b30-8a7d11e7a966 -2019,Tucuman,II.1.1,14.80248,TJ,CH4,0.5,kg/TJ,7.40124,Naphtha combustion consumption by freight transport,AR-T,SESCO,annual,kg,12b28427-05e7-3124-8036-4d62423527c4 -2019,Tucuman,II.1.1,14.80248,TJ,N2O,2.0,kg/TJ,29.60496,Naphtha combustion consumption by freight transport,AR-T,SESCO,annual,kg,e1c8afd5-8aae-32ec-b03f-ca4a0e885950 -2019,Buenos Aires,II.1.1,350.90786499999996,TJ,CO2,73300.0,kg/TJ,25721546.504499998,Naphtha combustion consumption by freight transport,AR-B,SESCO,annual,kg,f3cc8737-0ee9-3638-ace5-a4c097b29165 -2019,Buenos Aires,II.1.1,350.90786499999996,TJ,CH4,0.5,kg/TJ,175.45393249999998,Naphtha combustion consumption by freight transport,AR-B,SESCO,annual,kg,25b0ae3b-155d-3be7-b8a5-c970b60bb8fc -2019,Buenos Aires,II.1.1,350.90786499999996,TJ,N2O,2.0,kg/TJ,701.8157299999999,Naphtha combustion consumption by freight transport,AR-B,SESCO,annual,kg,8d64b6af-4497-3edc-a515-c26ffba432b1 -2019,Capital Federal,II.1.1,581.3057249999999,TJ,CO2,73300.0,kg/TJ,42609709.6425,Naphtha combustion consumption by freight transport,AR-C,SESCO,annual,kg,b018757b-682c-3243-afe1-fd62a50a83a9 -2019,Capital Federal,II.1.1,581.3057249999999,TJ,CH4,0.5,kg/TJ,290.65286249999997,Naphtha combustion consumption by freight transport,AR-C,SESCO,annual,kg,acfc6497-13e7-3140-884b-cf02a70c5505 -2019,Capital Federal,II.1.1,581.3057249999999,TJ,N2O,2.0,kg/TJ,1162.6114499999999,Naphtha combustion consumption by freight transport,AR-C,SESCO,annual,kg,7a4d46f2-3ff7-31cb-9cea-1de0305b43d0 -2019,Catamarca,II.1.1,0.034265,TJ,CO2,73300.0,kg/TJ,2511.6245,Naphtha combustion consumption by freight transport,AR-K,SESCO,annual,kg,dda362b9-fbc1-3e7d-95ed-175fb43398a8 -2019,Catamarca,II.1.1,0.034265,TJ,CH4,0.5,kg/TJ,0.0171325,Naphtha combustion consumption by freight transport,AR-K,SESCO,annual,kg,aaf2e257-2b54-3581-9f59-0f312799765d -2019,Catamarca,II.1.1,0.034265,TJ,N2O,2.0,kg/TJ,0.06853,Naphtha combustion consumption by freight transport,AR-K,SESCO,annual,kg,1d711ea2-d1f8-328c-ad2c-1564c3877c4a -2019,Chaco,II.1.1,9.080225,TJ,CO2,73300.0,kg/TJ,665580.4925,Naphtha combustion consumption by freight transport,AR-H,SESCO,annual,kg,ac3f58fc-7248-3c02-b605-82e5d6f346d4 -2019,Chaco,II.1.1,9.080225,TJ,CH4,0.5,kg/TJ,4.5401125,Naphtha combustion consumption by freight transport,AR-H,SESCO,annual,kg,d47ed2a3-81b2-31fd-a1e0-95be28d33e4f -2019,Chaco,II.1.1,9.080225,TJ,N2O,2.0,kg/TJ,18.16045,Naphtha combustion consumption by freight transport,AR-H,SESCO,annual,kg,332df7b4-d5c3-3c6b-8f10-e8fd1d52b524 -2019,Chubut,II.1.1,9.11449,TJ,CO2,73300.0,kg/TJ,668092.117,Naphtha combustion consumption by freight transport,AR-U,SESCO,annual,kg,f954b3f6-34eb-3250-aa66-02ff1ee46966 -2019,Chubut,II.1.1,9.11449,TJ,CH4,0.5,kg/TJ,4.557245,Naphtha combustion consumption by freight transport,AR-U,SESCO,annual,kg,4382b673-a28b-332d-84ad-a966e3882d80 -2019,Chubut,II.1.1,9.11449,TJ,N2O,2.0,kg/TJ,18.22898,Naphtha combustion consumption by freight transport,AR-U,SESCO,annual,kg,cc8e1d9d-0e2f-374c-acd5-3bdc7b52dcfe -2019,Corrientes,II.1.1,12.301134999999999,TJ,CO2,73300.0,kg/TJ,901673.1954999999,Naphtha combustion consumption by freight transport,AR-W,SESCO,annual,kg,5467047f-cf7a-3f6b-b450-a3d167cb0dd7 -2019,Corrientes,II.1.1,12.301134999999999,TJ,CH4,0.5,kg/TJ,6.150567499999999,Naphtha combustion consumption by freight transport,AR-W,SESCO,annual,kg,b23ced76-30a7-3351-b225-620f2d7cac9f -2019,Corrientes,II.1.1,12.301134999999999,TJ,N2O,2.0,kg/TJ,24.602269999999997,Naphtha combustion consumption by freight transport,AR-W,SESCO,annual,kg,8eaab15a-fc41-389d-9fac-cc9366008fb8 -2019,Córdoba,II.1.1,43.071104999999996,TJ,CO2,73300.0,kg/TJ,3157111.9965,Naphtha combustion consumption by freight transport,AR-X,SESCO,annual,kg,fddb5650-c86c-3445-816d-cfa0adaf620e -2019,Córdoba,II.1.1,43.071104999999996,TJ,CH4,0.5,kg/TJ,21.535552499999998,Naphtha combustion consumption by freight transport,AR-X,SESCO,annual,kg,7afbbe5e-b5b1-3342-932c-0a60bd770988 -2019,Córdoba,II.1.1,43.071104999999996,TJ,N2O,2.0,kg/TJ,86.14220999999999,Naphtha combustion consumption by freight transport,AR-X,SESCO,annual,kg,59d6c537-a16c-3b48-8596-2385bdd08ad9 -2019,Entre Rios,II.1.1,28.71407,TJ,CO2,73300.0,kg/TJ,2104741.331,Naphtha combustion consumption by freight transport,AR-E,SESCO,annual,kg,8dd91667-cf24-3160-b421-07113687c632 -2019,Entre Rios,II.1.1,28.71407,TJ,CH4,0.5,kg/TJ,14.357035,Naphtha combustion consumption by freight transport,AR-E,SESCO,annual,kg,b4b7e6f3-e0b7-3698-bec3-5c95dff27355 -2019,Entre Rios,II.1.1,28.71407,TJ,N2O,2.0,kg/TJ,57.42814,Naphtha combustion consumption by freight transport,AR-E,SESCO,annual,kg,a6cfacca-49fc-3e20-bc3f-00f6c243808f -2019,Formosa,II.1.1,0.445445,TJ,CO2,73300.0,kg/TJ,32651.118499999997,Naphtha combustion consumption by freight transport,AR-P,SESCO,annual,kg,cff20865-df63-391d-affa-6dc30498bb1e -2019,Formosa,II.1.1,0.445445,TJ,CH4,0.5,kg/TJ,0.2227225,Naphtha combustion consumption by freight transport,AR-P,SESCO,annual,kg,72a36b99-5a14-37e8-926d-fb5cea436158 -2019,Formosa,II.1.1,0.445445,TJ,N2O,2.0,kg/TJ,0.89089,Naphtha combustion consumption by freight transport,AR-P,SESCO,annual,kg,0fdafeb1-b368-3986-8bc3-e2f5a69e50b6 -2019,Jujuy,II.1.1,1.884575,TJ,CO2,73300.0,kg/TJ,138139.3475,Naphtha combustion consumption by freight transport,AR-Y,SESCO,annual,kg,54dee388-01f3-34b9-ba73-3dee7eb5a3f0 -2019,Jujuy,II.1.1,1.884575,TJ,CH4,0.5,kg/TJ,0.9422875,Naphtha combustion consumption by freight transport,AR-Y,SESCO,annual,kg,e78e827b-e8da-3d75-9084-e08538a6eaa8 -2019,Jujuy,II.1.1,1.884575,TJ,N2O,2.0,kg/TJ,3.76915,Naphtha combustion consumption by freight transport,AR-Y,SESCO,annual,kg,97057218-8f1f-359b-b27d-5d54fba32ad5 -2019,La Pampa,II.1.1,5.208279999999999,TJ,CO2,73300.0,kg/TJ,381766.92399999994,Naphtha combustion consumption by freight transport,AR-L,SESCO,annual,kg,cda93504-3693-3807-8540-015f031d4a24 -2019,La Pampa,II.1.1,5.208279999999999,TJ,CH4,0.5,kg/TJ,2.6041399999999997,Naphtha combustion consumption by freight transport,AR-L,SESCO,annual,kg,2bce3418-3134-3b9b-ba26-0912b4926dec -2019,La Pampa,II.1.1,5.208279999999999,TJ,N2O,2.0,kg/TJ,10.416559999999999,Naphtha combustion consumption by freight transport,AR-L,SESCO,annual,kg,84b1f978-330a-3a44-a6a7-a8377bd8b665 -2019,La Rioja,II.1.1,3.15238,TJ,CO2,73300.0,kg/TJ,231069.454,Naphtha combustion consumption by freight transport,AR-F,SESCO,annual,kg,77763161-d77b-3ba4-b32c-903d8e1e67fd -2019,La Rioja,II.1.1,3.15238,TJ,CH4,0.5,kg/TJ,1.57619,Naphtha combustion consumption by freight transport,AR-F,SESCO,annual,kg,7a9a3534-d317-3776-b2c6-19a99588abc2 -2019,La Rioja,II.1.1,3.15238,TJ,N2O,2.0,kg/TJ,6.30476,Naphtha combustion consumption by freight transport,AR-F,SESCO,annual,kg,90da4ad1-7719-312b-a7f6-b09a72735dc9 -2019,Mendoza,II.1.1,88.23237499999999,TJ,CO2,73300.0,kg/TJ,6467433.087499999,Naphtha combustion consumption by freight transport,AR-M,SESCO,annual,kg,072d5d86-7478-33dd-bbc9-1adb5bd61987 -2019,Mendoza,II.1.1,88.23237499999999,TJ,CH4,0.5,kg/TJ,44.116187499999995,Naphtha combustion consumption by freight transport,AR-M,SESCO,annual,kg,e5e2de52-ac06-3eba-ac32-48d6e08326bd -2019,Mendoza,II.1.1,88.23237499999999,TJ,N2O,2.0,kg/TJ,176.46474999999998,Naphtha combustion consumption by freight transport,AR-M,SESCO,annual,kg,3d3989c2-a633-3750-bd80-032acac5c63c -2019,Misiones,II.1.1,9.217285,TJ,CO2,73300.0,kg/TJ,675626.9905000001,Naphtha combustion consumption by freight transport,AR-N,SESCO,annual,kg,00d3db50-dc68-3756-958b-0476f751f55e -2019,Misiones,II.1.1,9.217285,TJ,CH4,0.5,kg/TJ,4.6086425,Naphtha combustion consumption by freight transport,AR-N,SESCO,annual,kg,e7cc1169-03eb-3177-9d13-b3f473f03b85 -2019,Misiones,II.1.1,9.217285,TJ,N2O,2.0,kg/TJ,18.43457,Naphtha combustion consumption by freight transport,AR-N,SESCO,annual,kg,212355ff-c7e0-364d-bd27-c1cb5f02bff4 -2019,Neuquén,II.1.1,30.90703,TJ,CO2,73300.0,kg/TJ,2265485.299,Naphtha combustion consumption by freight transport,AR-Q,SESCO,annual,kg,e5ee2383-aef0-3a6e-b872-ae5662b88c8d -2019,Neuquén,II.1.1,30.90703,TJ,CH4,0.5,kg/TJ,15.453515,Naphtha combustion consumption by freight transport,AR-Q,SESCO,annual,kg,a2ef470b-b034-3725-b136-ff6e4a730fff -2019,Neuquén,II.1.1,30.90703,TJ,N2O,2.0,kg/TJ,61.81406,Naphtha combustion consumption by freight transport,AR-Q,SESCO,annual,kg,31ddf5b6-c9f1-3052-8025-1a94c41a791a -2019,Rio Negro,II.1.1,59.998014999999995,TJ,CO2,73300.0,kg/TJ,4397854.4995,Naphtha combustion consumption by freight transport,AR-R,SESCO,annual,kg,df537c73-3cdd-3374-ae3e-e350428addab -2019,Rio Negro,II.1.1,59.998014999999995,TJ,CH4,0.5,kg/TJ,29.999007499999998,Naphtha combustion consumption by freight transport,AR-R,SESCO,annual,kg,2f513bc2-ad55-343b-9724-ae4cb4a09819 -2019,Rio Negro,II.1.1,59.998014999999995,TJ,N2O,2.0,kg/TJ,119.99602999999999,Naphtha combustion consumption by freight transport,AR-R,SESCO,annual,kg,12868ca8-2bc1-3f25-8fcd-56c9c822c7e1 -2019,Salta,II.1.1,12.575255,TJ,CO2,73300.0,kg/TJ,921766.1915000001,Naphtha combustion consumption by freight transport,AR-A,SESCO,annual,kg,f7776103-83ea-3240-9334-c5957e06370f -2019,Salta,II.1.1,12.575255,TJ,CH4,0.5,kg/TJ,6.2876275,Naphtha combustion consumption by freight transport,AR-A,SESCO,annual,kg,32d3c141-b5d8-34d9-8e18-88f4d6ea78f2 -2019,Salta,II.1.1,12.575255,TJ,N2O,2.0,kg/TJ,25.15051,Naphtha combustion consumption by freight transport,AR-A,SESCO,annual,kg,bc4eba25-f5e4-366b-b151-2bd0f00d05e8 -2019,San Juan,II.1.1,1.884575,TJ,CO2,73300.0,kg/TJ,138139.3475,Naphtha combustion consumption by freight transport,AR-J,SESCO,annual,kg,837b3e89-a8c1-34ff-a8cb-ae0fd760c1b1 -2019,San Juan,II.1.1,1.884575,TJ,CH4,0.5,kg/TJ,0.9422875,Naphtha combustion consumption by freight transport,AR-J,SESCO,annual,kg,db65b7ce-59d5-3a2d-ba59-d1c7fd3c7c3c -2019,San Juan,II.1.1,1.884575,TJ,N2O,2.0,kg/TJ,3.76915,Naphtha combustion consumption by freight transport,AR-J,SESCO,annual,kg,6f65227b-24cd-3595-a01b-05e6bdc54afb -2019,San Luis,II.1.1,4.8656299999999995,TJ,CO2,73300.0,kg/TJ,356650.67899999995,Naphtha combustion consumption by freight transport,AR-D,SESCO,annual,kg,1c1afc59-351a-3a2d-8abf-41d0969183d2 -2019,San Luis,II.1.1,4.8656299999999995,TJ,CH4,0.5,kg/TJ,2.4328149999999997,Naphtha combustion consumption by freight transport,AR-D,SESCO,annual,kg,2a19738b-516a-3411-ac0a-5298f06e10e4 -2019,San Luis,II.1.1,4.8656299999999995,TJ,N2O,2.0,kg/TJ,9.731259999999999,Naphtha combustion consumption by freight transport,AR-D,SESCO,annual,kg,a697ff81-618a-3fee-8bf1-f1421a094535 -2019,Santa Cruz,II.1.1,2.12443,TJ,CO2,73300.0,kg/TJ,155720.71899999998,Naphtha combustion consumption by freight transport,AR-Z,SESCO,annual,kg,db1d739b-33f2-3f53-891d-9c77a9866b9b -2019,Santa Cruz,II.1.1,2.12443,TJ,CH4,0.5,kg/TJ,1.062215,Naphtha combustion consumption by freight transport,AR-Z,SESCO,annual,kg,76616fdd-45f0-34b6-86e6-aedc85774882 -2019,Santa Cruz,II.1.1,2.12443,TJ,N2O,2.0,kg/TJ,4.24886,Naphtha combustion consumption by freight transport,AR-Z,SESCO,annual,kg,b90f2544-8366-311d-b849-108376671d13 -2019,Santa Fe,II.1.1,87.13589499999999,TJ,CO2,73300.0,kg/TJ,6387061.103499999,Naphtha combustion consumption by freight transport,AR-S,SESCO,annual,kg,e473f876-2a10-30e8-b904-fb18a217a0f2 -2019,Santa Fe,II.1.1,87.13589499999999,TJ,CH4,0.5,kg/TJ,43.567947499999995,Naphtha combustion consumption by freight transport,AR-S,SESCO,annual,kg,20a89554-c495-35a2-a302-6c999b0dd4e1 -2019,Santa Fe,II.1.1,87.13589499999999,TJ,N2O,2.0,kg/TJ,174.27178999999998,Naphtha combustion consumption by freight transport,AR-S,SESCO,annual,kg,d9bbf6e9-c819-35cb-a03e-237c6fde09d6 -2019,Santiago del Estero,II.1.1,1.2335399999999999,TJ,CO2,73300.0,kg/TJ,90418.48199999999,Naphtha combustion consumption by freight transport,AR-G,SESCO,annual,kg,561c518b-c6ff-328c-b04a-ba0fc4b43e95 -2019,Santiago del Estero,II.1.1,1.2335399999999999,TJ,CH4,0.5,kg/TJ,0.6167699999999999,Naphtha combustion consumption by freight transport,AR-G,SESCO,annual,kg,b305cd56-5061-34d7-84b2-58699373b016 -2019,Santiago del Estero,II.1.1,1.2335399999999999,TJ,N2O,2.0,kg/TJ,2.4670799999999997,Naphtha combustion consumption by freight transport,AR-G,SESCO,annual,kg,647d0637-041e-36db-b3d4-661483c59c61 -2019,Tierra del Fuego,II.1.1,3.392235,TJ,CO2,73300.0,kg/TJ,248650.8255,Naphtha combustion consumption by freight transport,AR-V,SESCO,annual,kg,8b3cf3b5-c53e-3445-8751-84a2a2ac8080 -2019,Tierra del Fuego,II.1.1,3.392235,TJ,CH4,0.5,kg/TJ,1.6961175,Naphtha combustion consumption by freight transport,AR-V,SESCO,annual,kg,e7e5d94f-70c3-3d35-9b70-43da7f658b66 -2019,Tierra del Fuego,II.1.1,3.392235,TJ,N2O,2.0,kg/TJ,6.78447,Naphtha combustion consumption by freight transport,AR-V,SESCO,annual,kg,f4b36c37-361f-3d97-b544-8f01c81b28e4 -2019,Tucuman,II.1.1,7.6068299999999995,TJ,CO2,73300.0,kg/TJ,557580.639,Naphtha combustion consumption by freight transport,AR-T,SESCO,annual,kg,7b06265c-cd9f-366a-81c0-1fbb40d6817b -2019,Tucuman,II.1.1,7.6068299999999995,TJ,CH4,0.5,kg/TJ,3.8034149999999998,Naphtha combustion consumption by freight transport,AR-T,SESCO,annual,kg,5eb14f49-758c-3724-bb68-c9c2184bfe86 -2019,Tucuman,II.1.1,7.6068299999999995,TJ,N2O,2.0,kg/TJ,15.213659999999999,Naphtha combustion consumption by freight transport,AR-T,SESCO,annual,kg,eab72d84-314b-3402-8e96-4dfeddc57d50 -2019,Buenos Aires,II.1.1,7815.8261999999995,TJ,CO2,74100.0,kg/TJ,579152721.42,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,d1fdce23-d148-33f0-90e7-dfd9c15142da -2019,Buenos Aires,II.1.1,7815.8261999999995,TJ,CH4,3.9,kg/TJ,30481.722179999997,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,b63b8160-9fbd-34b6-abf8-1526899feb36 -2019,Buenos Aires,II.1.1,7815.8261999999995,TJ,N2O,3.9,kg/TJ,30481.722179999997,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,b63b8160-9fbd-34b6-abf8-1526899feb36 -2019,Capital Federal,II.1.1,1601.7775199999999,TJ,CO2,74100.0,kg/TJ,118691714.232,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,f702140e-725d-39ed-9f7b-ebe7c172b7c2 -2019,Capital Federal,II.1.1,1601.7775199999999,TJ,CH4,3.9,kg/TJ,6246.932327999999,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,d73236aa-2f82-337c-83b3-1b956f55f8f5 -2019,Capital Federal,II.1.1,1601.7775199999999,TJ,N2O,3.9,kg/TJ,6246.932327999999,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,d73236aa-2f82-337c-83b3-1b956f55f8f5 -2019,Catamarca,II.1.1,62.34312,TJ,CO2,74100.0,kg/TJ,4619625.192,Gas Oil combustion consumption by public passenger transport,AR-K,SESCO,annual,kg,820e4d48-ea80-3827-9c14-df815c22ddbb -2019,Catamarca,II.1.1,62.34312,TJ,CH4,3.9,kg/TJ,243.13816799999998,Gas Oil combustion consumption by public passenger transport,AR-K,SESCO,annual,kg,357aec11-f37e-3b6d-9a50-0ff8d8b81fad -2019,Catamarca,II.1.1,62.34312,TJ,N2O,3.9,kg/TJ,243.13816799999998,Gas Oil combustion consumption by public passenger transport,AR-K,SESCO,annual,kg,357aec11-f37e-3b6d-9a50-0ff8d8b81fad -2019,Chaco,II.1.1,142.56564,TJ,CO2,74100.0,kg/TJ,10564113.924,Gas Oil combustion consumption by public passenger transport,AR-H,SESCO,annual,kg,732ea08f-2065-37a1-a6d4-ff8635d838be -2019,Chaco,II.1.1,142.56564,TJ,CH4,3.9,kg/TJ,556.005996,Gas Oil combustion consumption by public passenger transport,AR-H,SESCO,annual,kg,524cc0e1-757d-37b0-82bb-3d4dbf7500da -2019,Chaco,II.1.1,142.56564,TJ,N2O,3.9,kg/TJ,556.005996,Gas Oil combustion consumption by public passenger transport,AR-H,SESCO,annual,kg,524cc0e1-757d-37b0-82bb-3d4dbf7500da -2019,Chubut,II.1.1,110.67168,TJ,CO2,74100.0,kg/TJ,8200771.488,Gas Oil combustion consumption by public passenger transport,AR-U,SESCO,annual,kg,3f9a2747-01a1-3886-8209-f82dea56e593 -2019,Chubut,II.1.1,110.67168,TJ,CH4,3.9,kg/TJ,431.619552,Gas Oil combustion consumption by public passenger transport,AR-U,SESCO,annual,kg,9a680c6b-6bd5-36e5-be0f-c3aed527a911 -2019,Chubut,II.1.1,110.67168,TJ,N2O,3.9,kg/TJ,431.619552,Gas Oil combustion consumption by public passenger transport,AR-U,SESCO,annual,kg,9a680c6b-6bd5-36e5-be0f-c3aed527a911 -2019,Corrientes,II.1.1,90.91404,TJ,CO2,74100.0,kg/TJ,6736730.364,Gas Oil combustion consumption by public passenger transport,AR-W,SESCO,annual,kg,7ae45d96-eeb6-30ce-9c72-c45d944cc23a -2019,Corrientes,II.1.1,90.91404,TJ,CH4,3.9,kg/TJ,354.564756,Gas Oil combustion consumption by public passenger transport,AR-W,SESCO,annual,kg,b191df0e-0932-3fd9-8664-60fa57544bc9 -2019,Corrientes,II.1.1,90.91404,TJ,N2O,3.9,kg/TJ,354.564756,Gas Oil combustion consumption by public passenger transport,AR-W,SESCO,annual,kg,b191df0e-0932-3fd9-8664-60fa57544bc9 -2019,Córdoba,II.1.1,755.70264,TJ,CO2,74100.0,kg/TJ,55997565.624,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,7321865f-d7d5-37a7-83b7-29c2922aebcc -2019,Córdoba,II.1.1,755.70264,TJ,CH4,3.9,kg/TJ,2947.240296,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,fa9cd323-1abb-3293-b21d-fa431d4d1204 -2019,Córdoba,II.1.1,755.70264,TJ,N2O,3.9,kg/TJ,2947.240296,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,fa9cd323-1abb-3293-b21d-fa431d4d1204 -2019,Entre Rios,II.1.1,316.5918,TJ,CO2,74100.0,kg/TJ,23459452.38,Gas Oil combustion consumption by public passenger transport,AR-E,SESCO,annual,kg,d849dee5-b903-3650-a473-1a40ab92b27e -2019,Entre Rios,II.1.1,316.5918,TJ,CH4,3.9,kg/TJ,1234.7080199999998,Gas Oil combustion consumption by public passenger transport,AR-E,SESCO,annual,kg,8db13ac0-d2f7-3527-870b-18a0bce96133 -2019,Entre Rios,II.1.1,316.5918,TJ,N2O,3.9,kg/TJ,1234.7080199999998,Gas Oil combustion consumption by public passenger transport,AR-E,SESCO,annual,kg,8db13ac0-d2f7-3527-870b-18a0bce96133 -2019,Formosa,II.1.1,19.82988,TJ,CO2,74100.0,kg/TJ,1469394.108,Gas Oil combustion consumption by public passenger transport,AR-P,SESCO,annual,kg,6b56a770-2b09-335a-a669-70a7837d6d82 -2019,Formosa,II.1.1,19.82988,TJ,CH4,3.9,kg/TJ,77.33653199999999,Gas Oil combustion consumption by public passenger transport,AR-P,SESCO,annual,kg,5d60d315-2117-34bf-94d5-abf103cc9262 -2019,Formosa,II.1.1,19.82988,TJ,N2O,3.9,kg/TJ,77.33653199999999,Gas Oil combustion consumption by public passenger transport,AR-P,SESCO,annual,kg,5d60d315-2117-34bf-94d5-abf103cc9262 -2019,Jujuy,II.1.1,290.11584,TJ,CO2,74100.0,kg/TJ,21497583.744,Gas Oil combustion consumption by public passenger transport,AR-Y,SESCO,annual,kg,a3f41725-294b-3d44-8987-0bf6d4deae33 -2019,Jujuy,II.1.1,290.11584,TJ,CH4,3.9,kg/TJ,1131.4517759999999,Gas Oil combustion consumption by public passenger transport,AR-Y,SESCO,annual,kg,7174a2b9-c5fb-3f74-b921-0b1b3d67616a -2019,Jujuy,II.1.1,290.11584,TJ,N2O,3.9,kg/TJ,1131.4517759999999,Gas Oil combustion consumption by public passenger transport,AR-Y,SESCO,annual,kg,7174a2b9-c5fb-3f74-b921-0b1b3d67616a -2019,La Pampa,II.1.1,9.60792,TJ,CO2,74100.0,kg/TJ,711946.872,Gas Oil combustion consumption by public passenger transport,AR-L,SESCO,annual,kg,3ad68a93-3da8-347c-b6c3-37227698da2e -2019,La Pampa,II.1.1,9.60792,TJ,CH4,3.9,kg/TJ,37.470888,Gas Oil combustion consumption by public passenger transport,AR-L,SESCO,annual,kg,0730c04a-e813-3932-ae58-ff206fc5b41c -2019,La Pampa,II.1.1,9.60792,TJ,N2O,3.9,kg/TJ,37.470888,Gas Oil combustion consumption by public passenger transport,AR-L,SESCO,annual,kg,0730c04a-e813-3932-ae58-ff206fc5b41c -2019,La Rioja,II.1.1,23.58636,TJ,CO2,74100.0,kg/TJ,1747749.2759999998,Gas Oil combustion consumption by public passenger transport,AR-F,SESCO,annual,kg,8ad02379-a152-3965-a788-0ce3360450c8 -2019,La Rioja,II.1.1,23.58636,TJ,CH4,3.9,kg/TJ,91.98680399999999,Gas Oil combustion consumption by public passenger transport,AR-F,SESCO,annual,kg,ee4cd55a-9251-3e67-8e27-cae09faed26b -2019,La Rioja,II.1.1,23.58636,TJ,N2O,3.9,kg/TJ,91.98680399999999,Gas Oil combustion consumption by public passenger transport,AR-F,SESCO,annual,kg,ee4cd55a-9251-3e67-8e27-cae09faed26b -2019,Mendoza,II.1.1,581.7848399999999,TJ,CO2,74100.0,kg/TJ,43110256.643999994,Gas Oil combustion consumption by public passenger transport,AR-M,SESCO,annual,kg,579d9d71-d825-33d4-a2b1-cd97996dfd6d -2019,Mendoza,II.1.1,581.7848399999999,TJ,CH4,3.9,kg/TJ,2268.9608759999996,Gas Oil combustion consumption by public passenger transport,AR-M,SESCO,annual,kg,ea8f07d6-e81a-31df-8606-fb59fb9672d1 -2019,Mendoza,II.1.1,581.7848399999999,TJ,N2O,3.9,kg/TJ,2268.9608759999996,Gas Oil combustion consumption by public passenger transport,AR-M,SESCO,annual,kg,ea8f07d6-e81a-31df-8606-fb59fb9672d1 -2019,Misiones,II.1.1,555.81456,TJ,CO2,74100.0,kg/TJ,41185858.896000005,Gas Oil combustion consumption by public passenger transport,AR-N,SESCO,annual,kg,9af098f0-36b5-3751-b0eb-4e5a3dde7e83 -2019,Misiones,II.1.1,555.81456,TJ,CH4,3.9,kg/TJ,2167.676784,Gas Oil combustion consumption by public passenger transport,AR-N,SESCO,annual,kg,18105cd7-d536-31ee-8b45-805f70b0f260 -2019,Misiones,II.1.1,555.81456,TJ,N2O,3.9,kg/TJ,2167.676784,Gas Oil combustion consumption by public passenger transport,AR-N,SESCO,annual,kg,18105cd7-d536-31ee-8b45-805f70b0f260 -2019,Neuquén,II.1.1,184.06752,TJ,CO2,74100.0,kg/TJ,13639403.232,Gas Oil combustion consumption by public passenger transport,AR-Q,SESCO,annual,kg,e5225983-f690-3e35-a584-f0aa46cdd62c -2019,Neuquén,II.1.1,184.06752,TJ,CH4,3.9,kg/TJ,717.863328,Gas Oil combustion consumption by public passenger transport,AR-Q,SESCO,annual,kg,d0f42e48-3ecf-3af2-9434-2734c04f4957 -2019,Neuquén,II.1.1,184.06752,TJ,N2O,3.9,kg/TJ,717.863328,Gas Oil combustion consumption by public passenger transport,AR-Q,SESCO,annual,kg,d0f42e48-3ecf-3af2-9434-2734c04f4957 -2019,Rio Negro,II.1.1,138.91752,TJ,CO2,74100.0,kg/TJ,10293788.231999999,Gas Oil combustion consumption by public passenger transport,AR-R,SESCO,annual,kg,185d2f09-b8ed-369c-bf45-f2a023cd6973 -2019,Rio Negro,II.1.1,138.91752,TJ,CH4,3.9,kg/TJ,541.778328,Gas Oil combustion consumption by public passenger transport,AR-R,SESCO,annual,kg,99723dac-6d57-3c65-a462-eb7dd2c2585f -2019,Rio Negro,II.1.1,138.91752,TJ,N2O,3.9,kg/TJ,541.778328,Gas Oil combustion consumption by public passenger transport,AR-R,SESCO,annual,kg,99723dac-6d57-3c65-a462-eb7dd2c2585f -2019,Salta,II.1.1,161.9982,TJ,CO2,74100.0,kg/TJ,12004066.62,Gas Oil combustion consumption by public passenger transport,AR-A,SESCO,annual,kg,0891698a-9a2a-3e24-8902-11e85fadf538 -2019,Salta,II.1.1,161.9982,TJ,CH4,3.9,kg/TJ,631.79298,Gas Oil combustion consumption by public passenger transport,AR-A,SESCO,annual,kg,0796a414-0662-3600-a079-cb29c5137ebb -2019,Salta,II.1.1,161.9982,TJ,N2O,3.9,kg/TJ,631.79298,Gas Oil combustion consumption by public passenger transport,AR-A,SESCO,annual,kg,0796a414-0662-3600-a079-cb29c5137ebb -2019,San Juan,II.1.1,152.75148,TJ,CO2,74100.0,kg/TJ,11318884.668,Gas Oil combustion consumption by public passenger transport,AR-J,SESCO,annual,kg,390e4c2c-eb54-33c1-8422-ce675321c903 -2019,San Juan,II.1.1,152.75148,TJ,CH4,3.9,kg/TJ,595.7307719999999,Gas Oil combustion consumption by public passenger transport,AR-J,SESCO,annual,kg,d7d6393a-b5b4-3982-b21b-a6c8432763fd -2019,San Juan,II.1.1,152.75148,TJ,N2O,3.9,kg/TJ,595.7307719999999,Gas Oil combustion consumption by public passenger transport,AR-J,SESCO,annual,kg,d7d6393a-b5b4-3982-b21b-a6c8432763fd -2019,San Luis,II.1.1,0.43344,TJ,CO2,74100.0,kg/TJ,32117.904,Gas Oil combustion consumption by public passenger transport,AR-D,SESCO,annual,kg,96053b10-8e79-3a3a-bdb1-6c67a6ed65ec -2019,San Luis,II.1.1,0.43344,TJ,CH4,3.9,kg/TJ,1.690416,Gas Oil combustion consumption by public passenger transport,AR-D,SESCO,annual,kg,dbdfd19c-3252-3a16-b67d-d3be159ce44e -2019,San Luis,II.1.1,0.43344,TJ,N2O,3.9,kg/TJ,1.690416,Gas Oil combustion consumption by public passenger transport,AR-D,SESCO,annual,kg,dbdfd19c-3252-3a16-b67d-d3be159ce44e -2019,Santa Cruz,II.1.1,0.25284,TJ,CO2,74100.0,kg/TJ,18735.444,Gas Oil combustion consumption by public passenger transport,AR-Z,SESCO,annual,kg,39bbf491-28db-33e6-a7e8-300990d78632 -2019,Santa Cruz,II.1.1,0.25284,TJ,CH4,3.9,kg/TJ,0.9860760000000001,Gas Oil combustion consumption by public passenger transport,AR-Z,SESCO,annual,kg,1be62ce1-8447-33c9-aa15-0f5306466980 -2019,Santa Cruz,II.1.1,0.25284,TJ,N2O,3.9,kg/TJ,0.9860760000000001,Gas Oil combustion consumption by public passenger transport,AR-Z,SESCO,annual,kg,1be62ce1-8447-33c9-aa15-0f5306466980 -2019,Santa Fe,II.1.1,251.61192,TJ,CO2,74100.0,kg/TJ,18644443.272,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,5a04b818-9701-3cba-bb07-6d9be467242c -2019,Santa Fe,II.1.1,251.61192,TJ,CH4,3.9,kg/TJ,981.286488,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,6736ee52-7108-3f12-bf0a-29a66cacca13 -2019,Santa Fe,II.1.1,251.61192,TJ,N2O,3.9,kg/TJ,981.286488,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,6736ee52-7108-3f12-bf0a-29a66cacca13 -2019,Santiago del Estero,II.1.1,2.13108,TJ,CO2,74100.0,kg/TJ,157913.028,Gas Oil combustion consumption by public passenger transport,AR-G,SESCO,annual,kg,b8da899e-a156-3ef4-b1c7-0fea1006cd58 -2019,Santiago del Estero,II.1.1,2.13108,TJ,CH4,3.9,kg/TJ,8.311212,Gas Oil combustion consumption by public passenger transport,AR-G,SESCO,annual,kg,6b499aa8-87f9-31d2-a311-dd7b61f5b1cf -2019,Santiago del Estero,II.1.1,2.13108,TJ,N2O,3.9,kg/TJ,8.311212,Gas Oil combustion consumption by public passenger transport,AR-G,SESCO,annual,kg,6b499aa8-87f9-31d2-a311-dd7b61f5b1cf -2019,Tierra del Fuego,II.1.1,10.72764,TJ,CO2,74100.0,kg/TJ,794918.124,Gas Oil combustion consumption by public passenger transport,AR-V,SESCO,annual,kg,37cbb780-f700-389e-af91-59842a421b16 -2019,Tierra del Fuego,II.1.1,10.72764,TJ,CH4,3.9,kg/TJ,41.837796,Gas Oil combustion consumption by public passenger transport,AR-V,SESCO,annual,kg,7273c0ff-9e71-3101-aa07-633b72c7ef61 -2019,Tierra del Fuego,II.1.1,10.72764,TJ,N2O,3.9,kg/TJ,41.837796,Gas Oil combustion consumption by public passenger transport,AR-V,SESCO,annual,kg,7273c0ff-9e71-3101-aa07-633b72c7ef61 -2019,Tucuman,II.1.1,22.394399999999997,TJ,CO2,74100.0,kg/TJ,1659425.0399999998,Gas Oil combustion consumption by public passenger transport,AR-T,SESCO,annual,kg,47449462-03f9-3d4d-b82d-e25053128e7b -2019,Tucuman,II.1.1,22.394399999999997,TJ,CH4,3.9,kg/TJ,87.33815999999999,Gas Oil combustion consumption by public passenger transport,AR-T,SESCO,annual,kg,d1710f49-e814-3d28-8bf5-0350ca2baf3f -2019,Tucuman,II.1.1,22.394399999999997,TJ,N2O,3.9,kg/TJ,87.33815999999999,Gas Oil combustion consumption by public passenger transport,AR-T,SESCO,annual,kg,d1710f49-e814-3d28-8bf5-0350ca2baf3f -2019,Buenos Aires,II.1.1,2418.01728,TJ,CO2,74100.0,kg/TJ,179175080.448,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,9de3a566-1e22-3156-8a77-e304a799ec9b -2019,Buenos Aires,II.1.1,2418.01728,TJ,CH4,3.9,kg/TJ,9430.267392,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,e3eaff03-021c-32cf-9640-cd04896d80fe -2019,Buenos Aires,II.1.1,2418.01728,TJ,N2O,3.9,kg/TJ,9430.267392,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,e3eaff03-021c-32cf-9640-cd04896d80fe -2019,Capital Federal,II.1.1,382.25795999999997,TJ,CO2,74100.0,kg/TJ,28325314.836,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,dc6d1da7-4b25-3c97-a549-092b142e6199 -2019,Capital Federal,II.1.1,382.25795999999997,TJ,CH4,3.9,kg/TJ,1490.806044,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,f5044372-64d9-3e8c-a8bf-6cfbf1a6f41a -2019,Capital Federal,II.1.1,382.25795999999997,TJ,N2O,3.9,kg/TJ,1490.806044,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,f5044372-64d9-3e8c-a8bf-6cfbf1a6f41a -2019,Catamarca,II.1.1,0.03612,TJ,CO2,74100.0,kg/TJ,2676.4919999999997,Gas Oil combustion consumption by public passenger transport,AR-K,SESCO,annual,kg,140c2e54-8df5-3d8a-b1d9-d5696587ecec -2019,Catamarca,II.1.1,0.03612,TJ,CH4,3.9,kg/TJ,0.140868,Gas Oil combustion consumption by public passenger transport,AR-K,SESCO,annual,kg,225e3c3d-be2d-39ad-9ca1-9a35df58990a -2019,Catamarca,II.1.1,0.03612,TJ,N2O,3.9,kg/TJ,0.140868,Gas Oil combustion consumption by public passenger transport,AR-K,SESCO,annual,kg,225e3c3d-be2d-39ad-9ca1-9a35df58990a -2019,Chaco,II.1.1,27.523439999999997,TJ,CO2,74100.0,kg/TJ,2039486.9039999999,Gas Oil combustion consumption by public passenger transport,AR-H,SESCO,annual,kg,9b3133f4-5f42-3eb8-9c4c-4e8d1758922b -2019,Chaco,II.1.1,27.523439999999997,TJ,CH4,3.9,kg/TJ,107.34141599999998,Gas Oil combustion consumption by public passenger transport,AR-H,SESCO,annual,kg,1d9525fb-2a64-3ce1-8815-b9633d5bccb8 -2019,Chaco,II.1.1,27.523439999999997,TJ,N2O,3.9,kg/TJ,107.34141599999998,Gas Oil combustion consumption by public passenger transport,AR-H,SESCO,annual,kg,1d9525fb-2a64-3ce1-8815-b9633d5bccb8 -2019,Chubut,II.1.1,24.453239999999997,TJ,CO2,74100.0,kg/TJ,1811985.0839999998,Gas Oil combustion consumption by public passenger transport,AR-U,SESCO,annual,kg,bff6b4f8-bbe2-3e07-867d-10cbc382a7dc -2019,Chubut,II.1.1,24.453239999999997,TJ,CH4,3.9,kg/TJ,95.36763599999999,Gas Oil combustion consumption by public passenger transport,AR-U,SESCO,annual,kg,63917d91-af19-3837-a71f-b0bacb47a1c2 -2019,Chubut,II.1.1,24.453239999999997,TJ,N2O,3.9,kg/TJ,95.36763599999999,Gas Oil combustion consumption by public passenger transport,AR-U,SESCO,annual,kg,63917d91-af19-3837-a71f-b0bacb47a1c2 -2019,Corrientes,II.1.1,33.411,TJ,CO2,74100.0,kg/TJ,2475755.1,Gas Oil combustion consumption by public passenger transport,AR-W,SESCO,annual,kg,46291356-75f5-3121-ab7d-d13e9c57830a -2019,Corrientes,II.1.1,33.411,TJ,CH4,3.9,kg/TJ,130.3029,Gas Oil combustion consumption by public passenger transport,AR-W,SESCO,annual,kg,685beb72-320e-3b1b-8548-3974d0259a21 -2019,Corrientes,II.1.1,33.411,TJ,N2O,3.9,kg/TJ,130.3029,Gas Oil combustion consumption by public passenger transport,AR-W,SESCO,annual,kg,685beb72-320e-3b1b-8548-3974d0259a21 -2019,Córdoba,II.1.1,253.743,TJ,CO2,74100.0,kg/TJ,18802356.3,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,46976f56-1a66-3385-b6b4-8415aff385fe -2019,Córdoba,II.1.1,253.743,TJ,CH4,3.9,kg/TJ,989.5976999999999,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,267e142f-b7e5-3c22-b226-0c5e306d2387 -2019,Córdoba,II.1.1,253.743,TJ,N2O,3.9,kg/TJ,989.5976999999999,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,267e142f-b7e5-3c22-b226-0c5e306d2387 -2019,Entre Rios,II.1.1,38.79288,TJ,CO2,74100.0,kg/TJ,2874552.408,Gas Oil combustion consumption by public passenger transport,AR-E,SESCO,annual,kg,9f49d432-54a9-39e3-a175-d0f0b0794b45 -2019,Entre Rios,II.1.1,38.79288,TJ,CH4,3.9,kg/TJ,151.29223199999998,Gas Oil combustion consumption by public passenger transport,AR-E,SESCO,annual,kg,11e2808d-23bd-3ac4-a15f-1ac62afedc24 -2019,Entre Rios,II.1.1,38.79288,TJ,N2O,3.9,kg/TJ,151.29223199999998,Gas Oil combustion consumption by public passenger transport,AR-E,SESCO,annual,kg,11e2808d-23bd-3ac4-a15f-1ac62afedc24 -2019,Formosa,II.1.1,0.18059999999999998,TJ,CO2,74100.0,kg/TJ,13382.46,Gas Oil combustion consumption by public passenger transport,AR-P,SESCO,annual,kg,a083552d-1b09-3c36-bb89-35c021a7774c -2019,Formosa,II.1.1,0.18059999999999998,TJ,CH4,3.9,kg/TJ,0.70434,Gas Oil combustion consumption by public passenger transport,AR-P,SESCO,annual,kg,ceb633e2-1818-3602-aff1-9b3c4df5859e -2019,Formosa,II.1.1,0.18059999999999998,TJ,N2O,3.9,kg/TJ,0.70434,Gas Oil combustion consumption by public passenger transport,AR-P,SESCO,annual,kg,ceb633e2-1818-3602-aff1-9b3c4df5859e -2019,Jujuy,II.1.1,1.15584,TJ,CO2,74100.0,kg/TJ,85647.74399999999,Gas Oil combustion consumption by public passenger transport,AR-Y,SESCO,annual,kg,63e8a57b-41a7-3ee2-9758-f56c16bcb744 -2019,Jujuy,II.1.1,1.15584,TJ,CH4,3.9,kg/TJ,4.507776,Gas Oil combustion consumption by public passenger transport,AR-Y,SESCO,annual,kg,582fd3d4-7c10-37b5-923f-ff315fecf0a8 -2019,Jujuy,II.1.1,1.15584,TJ,N2O,3.9,kg/TJ,4.507776,Gas Oil combustion consumption by public passenger transport,AR-Y,SESCO,annual,kg,582fd3d4-7c10-37b5-923f-ff315fecf0a8 -2019,La Rioja,II.1.1,3.5758799999999997,TJ,CO2,74100.0,kg/TJ,264972.708,Gas Oil combustion consumption by public passenger transport,AR-F,SESCO,annual,kg,5884722f-e6d9-3c84-8179-7b03d417a628 -2019,La Rioja,II.1.1,3.5758799999999997,TJ,CH4,3.9,kg/TJ,13.945931999999999,Gas Oil combustion consumption by public passenger transport,AR-F,SESCO,annual,kg,55adfe74-542c-37b5-813c-b1f445fe3d71 -2019,La Rioja,II.1.1,3.5758799999999997,TJ,N2O,3.9,kg/TJ,13.945931999999999,Gas Oil combustion consumption by public passenger transport,AR-F,SESCO,annual,kg,55adfe74-542c-37b5-813c-b1f445fe3d71 -2019,Mendoza,II.1.1,169.33056,TJ,CO2,74100.0,kg/TJ,12547394.496,Gas Oil combustion consumption by public passenger transport,AR-M,SESCO,annual,kg,b0101a51-b29b-3a0d-9f04-6874a3f2f9f5 -2019,Mendoza,II.1.1,169.33056,TJ,CH4,3.9,kg/TJ,660.389184,Gas Oil combustion consumption by public passenger transport,AR-M,SESCO,annual,kg,dafc1967-da74-311d-879b-b95cc19efff7 -2019,Mendoza,II.1.1,169.33056,TJ,N2O,3.9,kg/TJ,660.389184,Gas Oil combustion consumption by public passenger transport,AR-M,SESCO,annual,kg,dafc1967-da74-311d-879b-b95cc19efff7 -2019,Misiones,II.1.1,90.98628,TJ,CO2,74100.0,kg/TJ,6742083.347999999,Gas Oil combustion consumption by public passenger transport,AR-N,SESCO,annual,kg,908ba98e-cbe7-3add-923c-bcddd142d59f -2019,Misiones,II.1.1,90.98628,TJ,CH4,3.9,kg/TJ,354.84649199999996,Gas Oil combustion consumption by public passenger transport,AR-N,SESCO,annual,kg,05a4b105-5546-3985-9140-85cfa1cf4791 -2019,Misiones,II.1.1,90.98628,TJ,N2O,3.9,kg/TJ,354.84649199999996,Gas Oil combustion consumption by public passenger transport,AR-N,SESCO,annual,kg,05a4b105-5546-3985-9140-85cfa1cf4791 -2019,Neuquén,II.1.1,29.979599999999998,TJ,CO2,74100.0,kg/TJ,2221488.36,Gas Oil combustion consumption by public passenger transport,AR-Q,SESCO,annual,kg,e1c43453-3e68-3517-b7cd-1a101957e180 -2019,Neuquén,II.1.1,29.979599999999998,TJ,CH4,3.9,kg/TJ,116.92043999999999,Gas Oil combustion consumption by public passenger transport,AR-Q,SESCO,annual,kg,4d1b979d-0c57-3723-94ae-f2786d4c6fc0 -2019,Neuquén,II.1.1,29.979599999999998,TJ,N2O,3.9,kg/TJ,116.92043999999999,Gas Oil combustion consumption by public passenger transport,AR-Q,SESCO,annual,kg,4d1b979d-0c57-3723-94ae-f2786d4c6fc0 -2019,Rio Negro,II.1.1,178.64952,TJ,CO2,74100.0,kg/TJ,13237929.432,Gas Oil combustion consumption by public passenger transport,AR-R,SESCO,annual,kg,78025e22-2120-33d9-bcf5-0465b28ee012 -2019,Rio Negro,II.1.1,178.64952,TJ,CH4,3.9,kg/TJ,696.733128,Gas Oil combustion consumption by public passenger transport,AR-R,SESCO,annual,kg,c65370b2-bd85-3ccb-aa48-2be4bfa87398 -2019,Rio Negro,II.1.1,178.64952,TJ,N2O,3.9,kg/TJ,696.733128,Gas Oil combustion consumption by public passenger transport,AR-R,SESCO,annual,kg,c65370b2-bd85-3ccb-aa48-2be4bfa87398 -2019,Salta,II.1.1,70.434,TJ,CO2,74100.0,kg/TJ,5219159.399999999,Gas Oil combustion consumption by public passenger transport,AR-A,SESCO,annual,kg,312ffdb5-9706-3174-864e-88d37f10a59d -2019,Salta,II.1.1,70.434,TJ,CH4,3.9,kg/TJ,274.69259999999997,Gas Oil combustion consumption by public passenger transport,AR-A,SESCO,annual,kg,7119b1e3-db76-37d0-ba63-43a2470bced5 -2019,Salta,II.1.1,70.434,TJ,N2O,3.9,kg/TJ,274.69259999999997,Gas Oil combustion consumption by public passenger transport,AR-A,SESCO,annual,kg,7119b1e3-db76-37d0-ba63-43a2470bced5 -2019,San Juan,II.1.1,108.21552,TJ,CO2,74100.0,kg/TJ,8018770.032,Gas Oil combustion consumption by public passenger transport,AR-J,SESCO,annual,kg,106ec212-e22e-30c8-9601-b5f966d667cc -2019,San Juan,II.1.1,108.21552,TJ,CH4,3.9,kg/TJ,422.040528,Gas Oil combustion consumption by public passenger transport,AR-J,SESCO,annual,kg,cc4e2452-8fd7-344c-a701-12922823c4fd -2019,San Juan,II.1.1,108.21552,TJ,N2O,3.9,kg/TJ,422.040528,Gas Oil combustion consumption by public passenger transport,AR-J,SESCO,annual,kg,cc4e2452-8fd7-344c-a701-12922823c4fd -2019,San Luis,II.1.1,1.30032,TJ,CO2,74100.0,kg/TJ,96353.712,Gas Oil combustion consumption by public passenger transport,AR-D,SESCO,annual,kg,7dfdc783-fa17-35e5-92fa-45d5ab69436e -2019,San Luis,II.1.1,1.30032,TJ,CH4,3.9,kg/TJ,5.071248,Gas Oil combustion consumption by public passenger transport,AR-D,SESCO,annual,kg,66fcab3a-a8ce-3e45-8c9b-7ed8bdc3ab69 -2019,San Luis,II.1.1,1.30032,TJ,N2O,3.9,kg/TJ,5.071248,Gas Oil combustion consumption by public passenger transport,AR-D,SESCO,annual,kg,66fcab3a-a8ce-3e45-8c9b-7ed8bdc3ab69 -2019,Santa Cruz,II.1.1,0.03612,TJ,CO2,74100.0,kg/TJ,2676.4919999999997,Gas Oil combustion consumption by public passenger transport,AR-Z,SESCO,annual,kg,0a4f77ce-5e6c-3e44-ae37-2d8392a0fda4 -2019,Santa Cruz,II.1.1,0.03612,TJ,CH4,3.9,kg/TJ,0.140868,Gas Oil combustion consumption by public passenger transport,AR-Z,SESCO,annual,kg,f44d0187-48a6-3dee-8e71-89c418ca2cbb -2019,Santa Cruz,II.1.1,0.03612,TJ,N2O,3.9,kg/TJ,0.140868,Gas Oil combustion consumption by public passenger transport,AR-Z,SESCO,annual,kg,f44d0187-48a6-3dee-8e71-89c418ca2cbb -2019,Santa Fe,II.1.1,107.0958,TJ,CO2,74100.0,kg/TJ,7935798.779999999,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,fa9264af-56ce-3666-82b1-3932f92566de -2019,Santa Fe,II.1.1,107.0958,TJ,CH4,3.9,kg/TJ,417.67361999999997,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,c976ca01-fbc6-35ec-805e-98ac0160ddc7 -2019,Santa Fe,II.1.1,107.0958,TJ,N2O,3.9,kg/TJ,417.67361999999997,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,c976ca01-fbc6-35ec-805e-98ac0160ddc7 -2019,Santiago del Estero,II.1.1,0.25284,TJ,CO2,74100.0,kg/TJ,18735.444,Gas Oil combustion consumption by public passenger transport,AR-G,SESCO,annual,kg,c7f526d4-ac8e-3c70-9e68-f08d00e98648 -2019,Santiago del Estero,II.1.1,0.25284,TJ,CH4,3.9,kg/TJ,0.9860760000000001,Gas Oil combustion consumption by public passenger transport,AR-G,SESCO,annual,kg,342a07b4-7879-3cca-9b00-0750ddb1106d -2019,Santiago del Estero,II.1.1,0.25284,TJ,N2O,3.9,kg/TJ,0.9860760000000001,Gas Oil combustion consumption by public passenger transport,AR-G,SESCO,annual,kg,342a07b4-7879-3cca-9b00-0750ddb1106d -2019,Tierra del Fuego,II.1.1,0.14448,TJ,CO2,74100.0,kg/TJ,10705.967999999999,Gas Oil combustion consumption by public passenger transport,AR-V,SESCO,annual,kg,4ef96b29-c32b-3a3e-95d2-98274c169e7b -2019,Tierra del Fuego,II.1.1,0.14448,TJ,CH4,3.9,kg/TJ,0.563472,Gas Oil combustion consumption by public passenger transport,AR-V,SESCO,annual,kg,54ef623a-9bab-3973-bbac-b2f52529085b -2019,Tierra del Fuego,II.1.1,0.14448,TJ,N2O,3.9,kg/TJ,0.563472,Gas Oil combustion consumption by public passenger transport,AR-V,SESCO,annual,kg,54ef623a-9bab-3973-bbac-b2f52529085b -2019,Tucuman,II.1.1,1.9866,TJ,CO2,74100.0,kg/TJ,147207.06,Gas Oil combustion consumption by public passenger transport,AR-T,SESCO,annual,kg,26ca530e-2f69-3315-8a4f-7645b3d2aa98 -2019,Tucuman,II.1.1,1.9866,TJ,CH4,3.9,kg/TJ,7.747739999999999,Gas Oil combustion consumption by public passenger transport,AR-T,SESCO,annual,kg,724e8652-b7e8-3281-b85c-55cd084c1570 -2019,Tucuman,II.1.1,1.9866,TJ,N2O,3.9,kg/TJ,7.747739999999999,Gas Oil combustion consumption by public passenger transport,AR-T,SESCO,annual,kg,724e8652-b7e8-3281-b85c-55cd084c1570 -2020,Buenos Aires,II.5.1,557.346048,TJ,CO2,74100.0,kg/TJ,41299342.1568,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,1d81e84d-792f-3120-94f5-4399d55c8073 -2020,Buenos Aires,II.5.1,557.346048,TJ,CH4,3.9,kg/TJ,2173.6495872,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,592f684c-6c79-3429-b770-6998bb6565de -2020,Buenos Aires,II.5.1,557.346048,TJ,N2O,3.9,kg/TJ,2173.6495872,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,592f684c-6c79-3429-b770-6998bb6565de -2020,Chaco,II.5.1,1.3364399999999999,TJ,CO2,74100.0,kg/TJ,99030.20399999998,Gas Oil combustion consumption by agriculture machines,AR-H,SESCO,annual,kg,2d538771-c67e-3208-93ba-76f376e5912d -2020,Chaco,II.5.1,1.3364399999999999,TJ,CH4,3.9,kg/TJ,5.212115999999999,Gas Oil combustion consumption by agriculture machines,AR-H,SESCO,annual,kg,18a65a41-5aad-3807-80bb-9f87871814f5 -2020,Chaco,II.5.1,1.3364399999999999,TJ,N2O,3.9,kg/TJ,5.212115999999999,Gas Oil combustion consumption by agriculture machines,AR-H,SESCO,annual,kg,18a65a41-5aad-3807-80bb-9f87871814f5 -2020,Córdoba,II.5.1,128.771412,TJ,CO2,74100.0,kg/TJ,9541961.6292,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,10fd97a3-c4b8-34b9-91b0-9625ae5f20c8 -2020,Córdoba,II.5.1,128.771412,TJ,CH4,3.9,kg/TJ,502.20850679999995,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,0158f0dc-ad29-3f77-9bcf-bc9b72a0bb53 -2020,Córdoba,II.5.1,128.771412,TJ,N2O,3.9,kg/TJ,502.20850679999995,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,0158f0dc-ad29-3f77-9bcf-bc9b72a0bb53 -2020,Entre Rios,II.5.1,8.488199999999999,TJ,CO2,74100.0,kg/TJ,628975.6199999999,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,59a7b395-9422-3c86-a656-075c034cf8ec -2020,Entre Rios,II.5.1,8.488199999999999,TJ,CH4,3.9,kg/TJ,33.10397999999999,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,8340b94a-7289-3bd3-bb2b-79d9797ebffb -2020,Entre Rios,II.5.1,8.488199999999999,TJ,N2O,3.9,kg/TJ,33.10397999999999,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,8340b94a-7289-3bd3-bb2b-79d9797ebffb -2020,La Pampa,II.5.1,51.861095999999996,TJ,CO2,74100.0,kg/TJ,3842907.2136,Gas Oil combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,e0a18223-f0c7-3cc1-9ee0-1701d69eae26 -2020,La Pampa,II.5.1,51.861095999999996,TJ,CH4,3.9,kg/TJ,202.25827439999998,Gas Oil combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,c9ea5e9f-51e1-37e4-a291-00b03c3e7054 -2020,La Pampa,II.5.1,51.861095999999996,TJ,N2O,3.9,kg/TJ,202.25827439999998,Gas Oil combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,c9ea5e9f-51e1-37e4-a291-00b03c3e7054 -2020,Santa Fe,II.5.1,212.118312,TJ,CO2,74100.0,kg/TJ,15717966.9192,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,5942317b-1d92-3cac-b1d0-7b97e59c9990 -2020,Santa Fe,II.5.1,212.118312,TJ,CH4,3.9,kg/TJ,827.2614168,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,90463ba7-93e7-3375-8217-282f3dee3983 -2020,Santa Fe,II.5.1,212.118312,TJ,N2O,3.9,kg/TJ,827.2614168,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,90463ba7-93e7-3375-8217-282f3dee3983 -2020,Buenos Aires,II.5.1,12.064079999999999,TJ,CO2,74100.0,kg/TJ,893948.3279999999,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,981a3ead-b103-371c-a733-9088578f72d3 -2020,Buenos Aires,II.5.1,12.064079999999999,TJ,CH4,3.9,kg/TJ,47.04991199999999,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,19b4210a-0131-39cf-a2c4-b48a94264d4d -2020,Buenos Aires,II.5.1,12.064079999999999,TJ,N2O,3.9,kg/TJ,47.04991199999999,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,19b4210a-0131-39cf-a2c4-b48a94264d4d -2020,Córdoba,II.5.1,1.8385079999999998,TJ,CO2,74100.0,kg/TJ,136233.4428,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,d43cf989-e052-3289-9fe7-d9de62211b45 -2020,Córdoba,II.5.1,1.8385079999999998,TJ,CH4,3.9,kg/TJ,7.170181199999999,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,5dfa3c58-7bee-3358-8aaf-640b64a8d3ea -2020,Córdoba,II.5.1,1.8385079999999998,TJ,N2O,3.9,kg/TJ,7.170181199999999,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,5dfa3c58-7bee-3358-8aaf-640b64a8d3ea -2020,Santa Fe,II.5.1,3.21468,TJ,CO2,74100.0,kg/TJ,238207.788,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,8e098029-7203-30cf-9afa-91fd9c976a3e -2020,Santa Fe,II.5.1,3.21468,TJ,CH4,3.9,kg/TJ,12.537252,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,cbecbe1b-5469-377c-baf6-9a5fe1d68181 -2020,Santa Fe,II.5.1,3.21468,TJ,N2O,3.9,kg/TJ,12.537252,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,cbecbe1b-5469-377c-baf6-9a5fe1d68181 -2020,Buenos Aires,II.5.1,2.3985499999999997,TJ,CO2,73300.0,kg/TJ,175813.71499999997,Naphtha combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,62b95bc9-a72e-356e-be0e-7e6dfa633187 -2020,Buenos Aires,II.5.1,2.3985499999999997,TJ,CH4,0.5,kg/TJ,1.1992749999999999,Naphtha combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,e011e1f3-701f-3a8c-b1f6-56a969174671 -2020,Buenos Aires,II.5.1,2.3985499999999997,TJ,N2O,2.0,kg/TJ,4.7970999999999995,Naphtha combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,808757e2-1c27-36ce-b613-ab40f4a6fd13 -2020,Santa Fe,II.5.1,1.09648,TJ,CO2,73300.0,kg/TJ,80371.984,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,2b770864-3570-3947-98ac-f5d84a309f12 -2020,Santa Fe,II.5.1,1.09648,TJ,CH4,0.5,kg/TJ,0.54824,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,ef6ab5b9-5681-345f-8454-5342f959cef4 -2020,Santa Fe,II.5.1,1.09648,TJ,N2O,2.0,kg/TJ,2.19296,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,d8c0616f-3ea4-3b92-be5d-19dea7c06e72 -2020,Buenos Aires,II.5.1,0.513975,TJ,CO2,73300.0,kg/TJ,37674.3675,Naphtha combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,3d64058a-6445-3ce0-8ea9-0aa3f4d612db -2020,Buenos Aires,II.5.1,0.513975,TJ,CH4,0.5,kg/TJ,0.2569875,Naphtha combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,afd509f5-8614-3b93-8b22-a99bbe603e73 -2020,Buenos Aires,II.5.1,0.513975,TJ,N2O,2.0,kg/TJ,1.02795,Naphtha combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,6b35539c-6161-3845-9921-d1eb415e5ada -2020,Buenos Aires,II.5.1,3.8648399999999996,TJ,CO2,74100.0,kg/TJ,286384.644,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,3d500374-8eb9-3a36-98d3-0f009ce56edf -2020,Buenos Aires,II.5.1,3.8648399999999996,TJ,CH4,3.9,kg/TJ,15.072875999999997,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,a83d2426-75cc-32b5-a44a-56523639f5ee -2020,Buenos Aires,II.5.1,3.8648399999999996,TJ,N2O,3.9,kg/TJ,15.072875999999997,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,a83d2426-75cc-32b5-a44a-56523639f5ee -2020,Buenos Aires,II.5.1,394.9722,TJ,CO2,74100.0,kg/TJ,29267440.02,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,26ca6970-5091-3b9a-8a39-33ef7b2ab8b6 -2020,Buenos Aires,II.5.1,394.9722,TJ,CH4,3.9,kg/TJ,1540.39158,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,4e1b105c-bf30-350d-8003-b45eeb74b6d0 -2020,Buenos Aires,II.5.1,394.9722,TJ,N2O,3.9,kg/TJ,1540.39158,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,4e1b105c-bf30-350d-8003-b45eeb74b6d0 -2020,Chaco,II.5.1,46.66704,TJ,CO2,74100.0,kg/TJ,3458027.664,Gas Oil combustion consumption by agriculture machines,AR-H,SESCO,annual,kg,2eef4a35-9228-3aed-99c1-bed99aeb7733 -2020,Chaco,II.5.1,46.66704,TJ,CH4,3.9,kg/TJ,182.001456,Gas Oil combustion consumption by agriculture machines,AR-H,SESCO,annual,kg,6cedeb47-f754-314c-b42f-6bb859341bab -2020,Chaco,II.5.1,46.66704,TJ,N2O,3.9,kg/TJ,182.001456,Gas Oil combustion consumption by agriculture machines,AR-H,SESCO,annual,kg,6cedeb47-f754-314c-b42f-6bb859341bab -2020,Córdoba,II.5.1,888.0101999999999,TJ,CO2,74100.0,kg/TJ,65801555.81999999,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,65d860bb-ff96-3d46-b3ae-9c392b6e639b -2020,Córdoba,II.5.1,888.0101999999999,TJ,CH4,3.9,kg/TJ,3463.23978,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,e5658a0b-77cc-3728-a2e8-1091e3fb8a4c -2020,Córdoba,II.5.1,888.0101999999999,TJ,N2O,3.9,kg/TJ,3463.23978,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,e5658a0b-77cc-3728-a2e8-1091e3fb8a4c -2020,Entre Rios,II.5.1,190.82196,TJ,CO2,74100.0,kg/TJ,14139907.236,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,254b9aa4-2d9a-3dfa-abac-a8f19ea01075 -2020,Entre Rios,II.5.1,190.82196,TJ,CH4,3.9,kg/TJ,744.2056439999999,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,8bd4edbf-d9ab-3d0c-8d14-3fae05be2ebc -2020,Entre Rios,II.5.1,190.82196,TJ,N2O,3.9,kg/TJ,744.2056439999999,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,8bd4edbf-d9ab-3d0c-8d14-3fae05be2ebc -2020,Mendoza,II.5.1,0.86688,TJ,CO2,74100.0,kg/TJ,64235.808,Gas Oil combustion consumption by agriculture machines,AR-M,SESCO,annual,kg,2576cf7e-22a2-39e2-894e-02eb9f5f126a -2020,Mendoza,II.5.1,0.86688,TJ,CH4,3.9,kg/TJ,3.380832,Gas Oil combustion consumption by agriculture machines,AR-M,SESCO,annual,kg,da7296c1-f429-32d7-814f-64d319b240ce -2020,Mendoza,II.5.1,0.86688,TJ,N2O,3.9,kg/TJ,3.380832,Gas Oil combustion consumption by agriculture machines,AR-M,SESCO,annual,kg,da7296c1-f429-32d7-814f-64d319b240ce -2020,Salta,II.5.1,90.3,TJ,CO2,74100.0,kg/TJ,6691230.0,Gas Oil combustion consumption by agriculture machines,AR-A,SESCO,annual,kg,ff3c55c7-4c81-3685-b579-3c9c3dc86517 -2020,Salta,II.5.1,90.3,TJ,CH4,3.9,kg/TJ,352.16999999999996,Gas Oil combustion consumption by agriculture machines,AR-A,SESCO,annual,kg,b825383b-89dd-368e-822b-067b57ed900c -2020,Salta,II.5.1,90.3,TJ,N2O,3.9,kg/TJ,352.16999999999996,Gas Oil combustion consumption by agriculture machines,AR-A,SESCO,annual,kg,b825383b-89dd-368e-822b-067b57ed900c -2020,Santa Cruz,II.5.1,9.7524,TJ,CO2,74100.0,kg/TJ,722652.84,Gas Oil combustion consumption by agriculture machines,AR-Z,SESCO,annual,kg,37c1c0b8-4fe1-3c86-9e09-e9158589a8ef -2020,Santa Cruz,II.5.1,9.7524,TJ,CH4,3.9,kg/TJ,38.03436,Gas Oil combustion consumption by agriculture machines,AR-Z,SESCO,annual,kg,18a5e169-0f81-33e4-994d-89782494e503 -2020,Santa Cruz,II.5.1,9.7524,TJ,N2O,3.9,kg/TJ,38.03436,Gas Oil combustion consumption by agriculture machines,AR-Z,SESCO,annual,kg,18a5e169-0f81-33e4-994d-89782494e503 -2020,Santa Fe,II.5.1,113.27232,TJ,CO2,74100.0,kg/TJ,8393478.911999999,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,64c69aa6-1661-3584-9292-d56009b9f062 -2020,Santa Fe,II.5.1,113.27232,TJ,CH4,3.9,kg/TJ,441.76204799999994,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,d424dd51-a568-3416-9f10-be5737243e0e -2020,Santa Fe,II.5.1,113.27232,TJ,N2O,3.9,kg/TJ,441.76204799999994,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,d424dd51-a568-3416-9f10-be5737243e0e -2020,Buenos Aires,II.5.1,6.321,TJ,CO2,74100.0,kg/TJ,468386.1,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,45ec0113-eb15-3e05-9a0d-cf8cb1982d0f -2020,Buenos Aires,II.5.1,6.321,TJ,CH4,3.9,kg/TJ,24.651899999999998,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,a31662e9-bde3-3fe4-84b5-e311734dc31e -2020,Buenos Aires,II.5.1,6.321,TJ,N2O,3.9,kg/TJ,24.651899999999998,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,a31662e9-bde3-3fe4-84b5-e311734dc31e -2020,Chaco,II.5.1,4.94844,TJ,CO2,74100.0,kg/TJ,366679.404,Gas Oil combustion consumption by agriculture machines,AR-H,SESCO,annual,kg,286d5568-56a7-3917-a03c-91822548755b -2020,Chaco,II.5.1,4.94844,TJ,CH4,3.9,kg/TJ,19.298916,Gas Oil combustion consumption by agriculture machines,AR-H,SESCO,annual,kg,1226241e-1961-3b4c-b143-e93f8766ea44 -2020,Chaco,II.5.1,4.94844,TJ,N2O,3.9,kg/TJ,19.298916,Gas Oil combustion consumption by agriculture machines,AR-H,SESCO,annual,kg,1226241e-1961-3b4c-b143-e93f8766ea44 -2020,Córdoba,II.5.1,8.27148,TJ,CO2,74100.0,kg/TJ,612916.6680000001,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,96b4a61d-bca2-3d74-9cb6-65b732a1d7e7 -2020,Córdoba,II.5.1,8.27148,TJ,CH4,3.9,kg/TJ,32.258772,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,df8a1658-99de-3194-ba56-f7dd53c74347 -2020,Córdoba,II.5.1,8.27148,TJ,N2O,3.9,kg/TJ,32.258772,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,df8a1658-99de-3194-ba56-f7dd53c74347 -2020,Entre Rios,II.5.1,3.50364,TJ,CO2,74100.0,kg/TJ,259619.724,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,bc6f3940-95da-367c-9f0e-c141b5f09022 -2020,Entre Rios,II.5.1,3.50364,TJ,CH4,3.9,kg/TJ,13.664195999999999,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,4ee88f00-2fbf-3c9e-90c9-b88144c1b68e -2020,Entre Rios,II.5.1,3.50364,TJ,N2O,3.9,kg/TJ,13.664195999999999,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,4ee88f00-2fbf-3c9e-90c9-b88144c1b68e -2020,Mendoza,II.5.1,0.14448,TJ,CO2,74100.0,kg/TJ,10705.967999999999,Gas Oil combustion consumption by agriculture machines,AR-M,SESCO,annual,kg,28483856-f024-394b-89ce-546ad736eecc -2020,Mendoza,II.5.1,0.14448,TJ,CH4,3.9,kg/TJ,0.563472,Gas Oil combustion consumption by agriculture machines,AR-M,SESCO,annual,kg,6d268421-959e-3eb8-8ba8-9e01783c0981 -2020,Mendoza,II.5.1,0.14448,TJ,N2O,3.9,kg/TJ,0.563472,Gas Oil combustion consumption by agriculture machines,AR-M,SESCO,annual,kg,6d268421-959e-3eb8-8ba8-9e01783c0981 -2020,Santa Cruz,II.5.1,0.36119999999999997,TJ,CO2,74100.0,kg/TJ,26764.92,Gas Oil combustion consumption by agriculture machines,AR-Z,SESCO,annual,kg,9399cb42-b9fb-32c2-a73d-40a4f3d02d33 -2020,Santa Cruz,II.5.1,0.36119999999999997,TJ,CH4,3.9,kg/TJ,1.40868,Gas Oil combustion consumption by agriculture machines,AR-Z,SESCO,annual,kg,62277ce9-acb6-3f4e-b743-b0dfe9954d5c -2020,Santa Cruz,II.5.1,0.36119999999999997,TJ,N2O,3.9,kg/TJ,1.40868,Gas Oil combustion consumption by agriculture machines,AR-Z,SESCO,annual,kg,62277ce9-acb6-3f4e-b743-b0dfe9954d5c -2020,Santa Fe,II.5.1,3.64812,TJ,CO2,74100.0,kg/TJ,270325.692,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,f5cac53c-5a26-3804-8f9f-c6e2052a639a -2020,Santa Fe,II.5.1,3.64812,TJ,CH4,3.9,kg/TJ,14.227668,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,2fbd3690-290f-3e85-bb94-f8df0d44ecf9 -2020,Santa Fe,II.5.1,3.64812,TJ,N2O,3.9,kg/TJ,14.227668,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,2fbd3690-290f-3e85-bb94-f8df0d44ecf9 -2020,Chaco,II.5.1,15.28219,TJ,CO2,73300.0,kg/TJ,1120184.527,Naphtha combustion consumption by agriculture machines,AR-H,SESCO,annual,kg,6cfc228e-18c3-34ce-91e6-8b3db76956fd -2020,Chaco,II.5.1,15.28219,TJ,CH4,0.5,kg/TJ,7.641095,Naphtha combustion consumption by agriculture machines,AR-H,SESCO,annual,kg,32d2cd78-828a-3fd7-b7d2-deb6be4f3fc9 -2020,Chaco,II.5.1,15.28219,TJ,N2O,2.0,kg/TJ,30.56438,Naphtha combustion consumption by agriculture machines,AR-H,SESCO,annual,kg,75c304bc-160b-3ab9-990a-95da2bce3338 -2020,Córdoba,II.5.1,10.724945,TJ,CO2,73300.0,kg/TJ,786138.4685,Naphtha combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,105f15e6-d4ce-3b45-9a71-10ab24be575a -2020,Córdoba,II.5.1,10.724945,TJ,CH4,0.5,kg/TJ,5.3624725,Naphtha combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,84896bf6-986f-3395-8578-72a1e6cecb35 -2020,Córdoba,II.5.1,10.724945,TJ,N2O,2.0,kg/TJ,21.44989,Naphtha combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,52c9f0ab-08dd-3bf1-ad63-eb8dcac71d91 -2020,Mendoza,II.5.1,3.56356,TJ,CO2,73300.0,kg/TJ,261208.94799999997,Naphtha combustion consumption by agriculture machines,AR-M,SESCO,annual,kg,0fc47864-a832-303a-9b33-7efb48956a01 -2020,Mendoza,II.5.1,3.56356,TJ,CH4,0.5,kg/TJ,1.78178,Naphtha combustion consumption by agriculture machines,AR-M,SESCO,annual,kg,b542b07a-15a9-32e1-8bec-db7521f94756 -2020,Mendoza,II.5.1,3.56356,TJ,N2O,2.0,kg/TJ,7.12712,Naphtha combustion consumption by agriculture machines,AR-M,SESCO,annual,kg,c568c804-079c-32a8-82e0-bf9de3b7da94 -2020,Santa Fe,II.5.1,1.610455,TJ,CO2,73300.0,kg/TJ,118046.3515,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,aee43088-4a13-3e3a-afe3-88d8d54d3f70 -2020,Santa Fe,II.5.1,1.610455,TJ,CH4,0.5,kg/TJ,0.8052275,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,8a5ed3f8-13c8-3dc3-9251-3960272efbbc -2020,Santa Fe,II.5.1,1.610455,TJ,N2O,2.0,kg/TJ,3.22091,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,459b931b-2674-3775-915d-90b02663185e -2020,Buenos Aires,II.5.1,0.20559,TJ,CO2,73300.0,kg/TJ,15069.747,Naphtha combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,bc914cfe-cf3c-39ed-888e-f73f6fe5aff0 -2020,Buenos Aires,II.5.1,0.20559,TJ,CH4,0.5,kg/TJ,0.102795,Naphtha combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,f18faaba-3417-33f4-9a57-ab44519d0808 -2020,Buenos Aires,II.5.1,0.20559,TJ,N2O,2.0,kg/TJ,0.41118,Naphtha combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,ca276b56-ca00-3c0e-8952-9f30b5aa075e -2020,Chaco,II.5.1,1.09648,TJ,CO2,73300.0,kg/TJ,80371.984,Naphtha combustion consumption by agriculture machines,AR-H,SESCO,annual,kg,84d3bec1-d241-30f1-bf88-d97ea2a38d7b -2020,Chaco,II.5.1,1.09648,TJ,CH4,0.5,kg/TJ,0.54824,Naphtha combustion consumption by agriculture machines,AR-H,SESCO,annual,kg,e45dd4fc-abdc-37ad-98cd-4a5792f1da4e -2020,Chaco,II.5.1,1.09648,TJ,N2O,2.0,kg/TJ,2.19296,Naphtha combustion consumption by agriculture machines,AR-H,SESCO,annual,kg,2022529b-ce73-3f2e-88be-63a16500b823 -2020,Córdoba,II.5.1,0.856625,TJ,CO2,73300.0,kg/TJ,62790.612499999996,Naphtha combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,e37a7090-a807-39d9-b543-4aaa6f448c35 -2020,Córdoba,II.5.1,0.856625,TJ,CH4,0.5,kg/TJ,0.4283125,Naphtha combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,2bfd90b2-abfe-3fdb-8692-84e34e2f1c10 -2020,Córdoba,II.5.1,0.856625,TJ,N2O,2.0,kg/TJ,1.71325,Naphtha combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,c77a44c6-5b61-3b39-8de4-e003e373d162 -2020,Mendoza,II.5.1,0.13706,TJ,CO2,73300.0,kg/TJ,10046.498,Naphtha combustion consumption by agriculture machines,AR-M,SESCO,annual,kg,d2a9b61e-4cc3-3ebd-8bd1-b09edabba6fa -2020,Mendoza,II.5.1,0.13706,TJ,CH4,0.5,kg/TJ,0.06853,Naphtha combustion consumption by agriculture machines,AR-M,SESCO,annual,kg,d08b82f2-02b8-3a47-8525-16a35aa19198 -2020,Mendoza,II.5.1,0.13706,TJ,N2O,2.0,kg/TJ,0.27412,Naphtha combustion consumption by agriculture machines,AR-M,SESCO,annual,kg,f7f36282-3b00-3304-9013-2aab181503c9 -2020,Chubut,II.1.1,2.1930258,TJ,CO2,74100.0,kg/TJ,162503.21178,Gas Oil combustion consumption by freight transport,AR-U,SESCO,annual,kg,b065cd7c-9b5b-3887-8a96-1fdc00123825 -2020,Chubut,II.1.1,2.1930258,TJ,CH4,3.9,kg/TJ,8.55280062,Gas Oil combustion consumption by freight transport,AR-U,SESCO,annual,kg,2e1bbdc5-d1a0-334d-ab30-0a275bc3a392 -2020,Chubut,II.1.1,2.1930258,TJ,N2O,3.9,kg/TJ,8.55280062,Gas Oil combustion consumption by freight transport,AR-U,SESCO,annual,kg,2e1bbdc5-d1a0-334d-ab30-0a275bc3a392 -2020,Buenos Aires,II.5.1,2609.34492,TJ,CO2,74100.0,kg/TJ,193352458.572,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,c3ba86ec-683e-3f5d-9302-847e4be21ec5 -2020,Buenos Aires,II.5.1,2609.34492,TJ,CH4,3.9,kg/TJ,10176.445188,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,2f4f1dad-e3bf-3f82-b659-f3b866a6188f -2020,Buenos Aires,II.5.1,2609.34492,TJ,N2O,3.9,kg/TJ,10176.445188,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,2f4f1dad-e3bf-3f82-b659-f3b866a6188f -2020,Capital Federal,II.5.1,1.87824,TJ,CO2,74100.0,kg/TJ,139177.584,Gas Oil combustion consumption by agriculture machines,AR-C,SESCO,annual,kg,8274c950-22ed-3273-98e5-8e92309295f2 -2020,Capital Federal,II.5.1,1.87824,TJ,CH4,3.9,kg/TJ,7.325136,Gas Oil combustion consumption by agriculture machines,AR-C,SESCO,annual,kg,a8d84d43-d767-3ad2-aeeb-a5dbcc6c9866 -2020,Capital Federal,II.5.1,1.87824,TJ,N2O,3.9,kg/TJ,7.325136,Gas Oil combustion consumption by agriculture machines,AR-C,SESCO,annual,kg,a8d84d43-d767-3ad2-aeeb-a5dbcc6c9866 -2020,Chaco,II.5.1,451.93343999999996,TJ,CO2,74100.0,kg/TJ,33488267.903999995,Gas Oil combustion consumption by agriculture machines,AR-H,SESCO,annual,kg,1d7c3e39-3731-3a6c-a0c7-203d3df59304 -2020,Chaco,II.5.1,451.93343999999996,TJ,CH4,3.9,kg/TJ,1762.5404159999998,Gas Oil combustion consumption by agriculture machines,AR-H,SESCO,annual,kg,7cc8ed7e-31cf-3369-8f90-ac17da7cc1bb -2020,Chaco,II.5.1,451.93343999999996,TJ,N2O,3.9,kg/TJ,1762.5404159999998,Gas Oil combustion consumption by agriculture machines,AR-H,SESCO,annual,kg,7cc8ed7e-31cf-3369-8f90-ac17da7cc1bb -2020,Corrientes,II.5.1,122.23008,TJ,CO2,74100.0,kg/TJ,9057248.928,Gas Oil combustion consumption by agriculture machines,AR-W,SESCO,annual,kg,1129373d-f3a1-3ca2-94b1-4c7e1b090dc9 -2020,Corrientes,II.5.1,122.23008,TJ,CH4,3.9,kg/TJ,476.697312,Gas Oil combustion consumption by agriculture machines,AR-W,SESCO,annual,kg,72a94b53-a9e0-3988-a1ba-0ba34a714daf -2020,Corrientes,II.5.1,122.23008,TJ,N2O,3.9,kg/TJ,476.697312,Gas Oil combustion consumption by agriculture machines,AR-W,SESCO,annual,kg,72a94b53-a9e0-3988-a1ba-0ba34a714daf -2020,Córdoba,II.5.1,2507.8116,TJ,CO2,74100.0,kg/TJ,185828839.56,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,b5bdd126-2a6b-392a-aefb-534bf462ceb6 -2020,Córdoba,II.5.1,2507.8116,TJ,CH4,3.9,kg/TJ,9780.46524,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,67caacf1-c663-364b-935c-81ed13bc345d -2020,Córdoba,II.5.1,2507.8116,TJ,N2O,3.9,kg/TJ,9780.46524,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,67caacf1-c663-364b-935c-81ed13bc345d -2020,Entre Rios,II.5.1,556.2479999999999,TJ,CO2,74100.0,kg/TJ,41217976.8,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,5c000735-3d33-3be9-919e-2b7a555df28b -2020,Entre Rios,II.5.1,556.2479999999999,TJ,CH4,3.9,kg/TJ,2169.3671999999997,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,1686bee6-d3c5-3501-bf84-99412b77b51d -2020,Entre Rios,II.5.1,556.2479999999999,TJ,N2O,3.9,kg/TJ,2169.3671999999997,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,1686bee6-d3c5-3501-bf84-99412b77b51d -2020,La Pampa,II.5.1,195.19248,TJ,CO2,74100.0,kg/TJ,14463762.768,Gas Oil combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,213cdc6f-716b-36ea-ae8a-debed8d83490 -2020,La Pampa,II.5.1,195.19248,TJ,CH4,3.9,kg/TJ,761.2506719999999,Gas Oil combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,3f96745c-eacd-3959-bd09-bd4998fc7066 -2020,La Pampa,II.5.1,195.19248,TJ,N2O,3.9,kg/TJ,761.2506719999999,Gas Oil combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,3f96745c-eacd-3959-bd09-bd4998fc7066 -2020,Mendoza,II.5.1,630.00504,TJ,CO2,74100.0,kg/TJ,46683373.464,Gas Oil combustion consumption by agriculture machines,AR-M,SESCO,annual,kg,84bdaa94-07dc-3e0b-85d0-48a663aef082 -2020,Mendoza,II.5.1,630.00504,TJ,CH4,3.9,kg/TJ,2457.019656,Gas Oil combustion consumption by agriculture machines,AR-M,SESCO,annual,kg,3f126b0c-e64d-31ee-a4b8-e16383e811a2 -2020,Mendoza,II.5.1,630.00504,TJ,N2O,3.9,kg/TJ,2457.019656,Gas Oil combustion consumption by agriculture machines,AR-M,SESCO,annual,kg,3f126b0c-e64d-31ee-a4b8-e16383e811a2 -2020,Neuquén,II.5.1,203.96964,TJ,CO2,74100.0,kg/TJ,15114150.324,Gas Oil combustion consumption by agriculture machines,AR-Q,SESCO,annual,kg,a1c2ae2c-e089-392e-b7d2-c7efefe8a9e7 -2020,Neuquén,II.5.1,203.96964,TJ,CH4,3.9,kg/TJ,795.481596,Gas Oil combustion consumption by agriculture machines,AR-Q,SESCO,annual,kg,154e3205-a3a3-354f-99ad-927d40cce352 -2020,Neuquén,II.5.1,203.96964,TJ,N2O,3.9,kg/TJ,795.481596,Gas Oil combustion consumption by agriculture machines,AR-Q,SESCO,annual,kg,154e3205-a3a3-354f-99ad-927d40cce352 -2020,San Luis,II.5.1,5.7791999999999994,TJ,CO2,74100.0,kg/TJ,428238.72,Gas Oil combustion consumption by agriculture machines,AR-D,SESCO,annual,kg,5ba4cf84-dacf-3b7f-a146-f8e4877cccfe -2020,San Luis,II.5.1,5.7791999999999994,TJ,CH4,3.9,kg/TJ,22.53888,Gas Oil combustion consumption by agriculture machines,AR-D,SESCO,annual,kg,c198ad6d-939c-330f-b1d6-b88304c2016b -2020,San Luis,II.5.1,5.7791999999999994,TJ,N2O,3.9,kg/TJ,22.53888,Gas Oil combustion consumption by agriculture machines,AR-D,SESCO,annual,kg,c198ad6d-939c-330f-b1d6-b88304c2016b -2020,Santa Cruz,II.5.1,22.90008,TJ,CO2,74100.0,kg/TJ,1696895.9279999998,Gas Oil combustion consumption by agriculture machines,AR-Z,SESCO,annual,kg,e6fd848e-5742-33f2-a450-94c6a0e1b451 -2020,Santa Cruz,II.5.1,22.90008,TJ,CH4,3.9,kg/TJ,89.310312,Gas Oil combustion consumption by agriculture machines,AR-Z,SESCO,annual,kg,dfa95e28-b1ec-3538-8309-e6e6aa36a8f5 -2020,Santa Cruz,II.5.1,22.90008,TJ,N2O,3.9,kg/TJ,89.310312,Gas Oil combustion consumption by agriculture machines,AR-Z,SESCO,annual,kg,dfa95e28-b1ec-3538-8309-e6e6aa36a8f5 -2020,Santa Fe,II.5.1,3499.05276,TJ,CO2,74100.0,kg/TJ,259279809.516,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,aef4c7f2-5685-38de-8ba9-31c1c4675224 -2020,Santa Fe,II.5.1,3499.05276,TJ,CH4,3.9,kg/TJ,13646.305764,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,872aefd7-cc40-34ad-89d1-af2ba960d1e0 -2020,Santa Fe,II.5.1,3499.05276,TJ,N2O,3.9,kg/TJ,13646.305764,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,872aefd7-cc40-34ad-89d1-af2ba960d1e0 -2020,Santiago del Estero,II.5.1,210.54348,TJ,CO2,74100.0,kg/TJ,15601271.867999999,Gas Oil combustion consumption by agriculture machines,AR-G,SESCO,annual,kg,424caa6a-e85c-35ff-8a84-8015d3a16428 -2020,Santiago del Estero,II.5.1,210.54348,TJ,CH4,3.9,kg/TJ,821.119572,Gas Oil combustion consumption by agriculture machines,AR-G,SESCO,annual,kg,a33fa547-7125-399b-815c-d0ecf88611d2 -2020,Santiago del Estero,II.5.1,210.54348,TJ,N2O,3.9,kg/TJ,821.119572,Gas Oil combustion consumption by agriculture machines,AR-G,SESCO,annual,kg,a33fa547-7125-399b-815c-d0ecf88611d2 -2020,Tucuman,II.5.1,209.67659999999998,TJ,CO2,74100.0,kg/TJ,15537036.059999999,Gas Oil combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,c963ad8b-bf6d-32fb-9fda-f60d93a568b9 -2020,Tucuman,II.5.1,209.67659999999998,TJ,CH4,3.9,kg/TJ,817.7387399999999,Gas Oil combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,d7a40568-b6c0-3815-865f-7936f0fe9020 -2020,Tucuman,II.5.1,209.67659999999998,TJ,N2O,3.9,kg/TJ,817.7387399999999,Gas Oil combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,d7a40568-b6c0-3815-865f-7936f0fe9020 -2020,Buenos Aires,II.5.1,189.01595999999998,TJ,CO2,74100.0,kg/TJ,14006082.635999998,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,38a4bebc-f2e9-3544-b0b7-335a66f05357 -2020,Buenos Aires,II.5.1,189.01595999999998,TJ,CH4,3.9,kg/TJ,737.1622439999999,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,16cd3539-b68e-3e60-bd97-a85e1da78db0 -2020,Buenos Aires,II.5.1,189.01595999999998,TJ,N2O,3.9,kg/TJ,737.1622439999999,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,16cd3539-b68e-3e60-bd97-a85e1da78db0 -2020,Capital Federal,II.5.1,0.7223999999999999,TJ,CO2,74100.0,kg/TJ,53529.84,Gas Oil combustion consumption by agriculture machines,AR-C,SESCO,annual,kg,f056b303-fc90-3a0a-b259-51a1d44abe0a -2020,Capital Federal,II.5.1,0.7223999999999999,TJ,CH4,3.9,kg/TJ,2.81736,Gas Oil combustion consumption by agriculture machines,AR-C,SESCO,annual,kg,0c2af07a-846a-3b63-bbdf-a58dfea3ff21 -2020,Capital Federal,II.5.1,0.7223999999999999,TJ,N2O,3.9,kg/TJ,2.81736,Gas Oil combustion consumption by agriculture machines,AR-C,SESCO,annual,kg,0c2af07a-846a-3b63-bbdf-a58dfea3ff21 -2020,Chaco,II.5.1,90.44448,TJ,CO2,74100.0,kg/TJ,6701935.968,Gas Oil combustion consumption by agriculture machines,AR-H,SESCO,annual,kg,f85f6495-da0d-3510-b146-24fd900bffff -2020,Chaco,II.5.1,90.44448,TJ,CH4,3.9,kg/TJ,352.733472,Gas Oil combustion consumption by agriculture machines,AR-H,SESCO,annual,kg,946598e9-8e0a-3230-87e3-86522741f525 -2020,Chaco,II.5.1,90.44448,TJ,N2O,3.9,kg/TJ,352.733472,Gas Oil combustion consumption by agriculture machines,AR-H,SESCO,annual,kg,946598e9-8e0a-3230-87e3-86522741f525 -2020,Corrientes,II.5.1,14.484119999999999,TJ,CO2,74100.0,kg/TJ,1073273.292,Gas Oil combustion consumption by agriculture machines,AR-W,SESCO,annual,kg,0561244a-9d9c-33f9-bf8d-17686ad9fcea -2020,Corrientes,II.5.1,14.484119999999999,TJ,CH4,3.9,kg/TJ,56.48806799999999,Gas Oil combustion consumption by agriculture machines,AR-W,SESCO,annual,kg,06016544-ce43-3b81-b27a-081efb65b6d3 -2020,Corrientes,II.5.1,14.484119999999999,TJ,N2O,3.9,kg/TJ,56.48806799999999,Gas Oil combustion consumption by agriculture machines,AR-W,SESCO,annual,kg,06016544-ce43-3b81-b27a-081efb65b6d3 -2020,Córdoba,II.5.1,250.3116,TJ,CO2,74100.0,kg/TJ,18548089.56,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,f6700944-7333-3c50-b7ba-d778c1ec3ce5 -2020,Córdoba,II.5.1,250.3116,TJ,CH4,3.9,kg/TJ,976.21524,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,ca659abc-8888-3fc2-8ba6-89685e175824 -2020,Córdoba,II.5.1,250.3116,TJ,N2O,3.9,kg/TJ,976.21524,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,ca659abc-8888-3fc2-8ba6-89685e175824 -2020,Entre Rios,II.5.1,16.579079999999998,TJ,CO2,74100.0,kg/TJ,1228509.8279999997,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,ad096e6b-62fa-361e-a4c6-240991cb812e -2020,Entre Rios,II.5.1,16.579079999999998,TJ,CH4,3.9,kg/TJ,64.65841199999998,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,6ad6e6ea-2583-318a-bf63-6f3696856b82 -2020,Entre Rios,II.5.1,16.579079999999998,TJ,N2O,3.9,kg/TJ,64.65841199999998,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,6ad6e6ea-2583-318a-bf63-6f3696856b82 -2020,La Pampa,II.5.1,34.38624,TJ,CO2,74100.0,kg/TJ,2548020.384,Gas Oil combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,c3dce7ca-7336-3384-a7d8-ad9ba8c114a1 -2020,La Pampa,II.5.1,34.38624,TJ,CH4,3.9,kg/TJ,134.106336,Gas Oil combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,9766f5db-2634-3e68-ae71-d8491bb8a072 -2020,La Pampa,II.5.1,34.38624,TJ,N2O,3.9,kg/TJ,134.106336,Gas Oil combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,9766f5db-2634-3e68-ae71-d8491bb8a072 -2020,Mendoza,II.5.1,78.88607999999999,TJ,CO2,74100.0,kg/TJ,5845458.527999999,Gas Oil combustion consumption by agriculture machines,AR-M,SESCO,annual,kg,396e95a9-f96a-3e06-8c68-ea64a9f06f6a -2020,Mendoza,II.5.1,78.88607999999999,TJ,CH4,3.9,kg/TJ,307.65571199999994,Gas Oil combustion consumption by agriculture machines,AR-M,SESCO,annual,kg,7b833326-68ab-3c3b-a3a6-dfbd105d7d6d -2020,Mendoza,II.5.1,78.88607999999999,TJ,N2O,3.9,kg/TJ,307.65571199999994,Gas Oil combustion consumption by agriculture machines,AR-M,SESCO,annual,kg,7b833326-68ab-3c3b-a3a6-dfbd105d7d6d -2020,Neuquén,II.5.1,29.582279999999997,TJ,CO2,74100.0,kg/TJ,2192046.948,Gas Oil combustion consumption by agriculture machines,AR-Q,SESCO,annual,kg,69f020cb-05a2-3c94-8a9e-cbadf5204651 -2020,Neuquén,II.5.1,29.582279999999997,TJ,CH4,3.9,kg/TJ,115.37089199999998,Gas Oil combustion consumption by agriculture machines,AR-Q,SESCO,annual,kg,b194c502-cc3d-3b27-8b3a-fede6c4d5eaa -2020,Neuquén,II.5.1,29.582279999999997,TJ,N2O,3.9,kg/TJ,115.37089199999998,Gas Oil combustion consumption by agriculture machines,AR-Q,SESCO,annual,kg,b194c502-cc3d-3b27-8b3a-fede6c4d5eaa -2020,San Luis,II.5.1,1.3364399999999999,TJ,CO2,74100.0,kg/TJ,99030.20399999998,Gas Oil combustion consumption by agriculture machines,AR-D,SESCO,annual,kg,80d2e350-8f4e-3b4a-9eae-e9386d841b19 -2020,San Luis,II.5.1,1.3364399999999999,TJ,CH4,3.9,kg/TJ,5.212115999999999,Gas Oil combustion consumption by agriculture machines,AR-D,SESCO,annual,kg,3ea8d7a0-f70a-3658-8ddc-349a84825f49 -2020,San Luis,II.5.1,1.3364399999999999,TJ,N2O,3.9,kg/TJ,5.212115999999999,Gas Oil combustion consumption by agriculture machines,AR-D,SESCO,annual,kg,3ea8d7a0-f70a-3658-8ddc-349a84825f49 -2020,Santa Cruz,II.5.1,133.68012,TJ,CO2,74100.0,kg/TJ,9905696.891999999,Gas Oil combustion consumption by agriculture machines,AR-Z,SESCO,annual,kg,70ea49ef-616b-3f16-95e1-aa700cf8a293 -2020,Santa Cruz,II.5.1,133.68012,TJ,CH4,3.9,kg/TJ,521.3524679999999,Gas Oil combustion consumption by agriculture machines,AR-Z,SESCO,annual,kg,e2d21bfd-b665-346e-8263-64ee4cd382b1 -2020,Santa Cruz,II.5.1,133.68012,TJ,N2O,3.9,kg/TJ,521.3524679999999,Gas Oil combustion consumption by agriculture machines,AR-Z,SESCO,annual,kg,e2d21bfd-b665-346e-8263-64ee4cd382b1 -2020,Santa Fe,II.5.1,355.09572,TJ,CO2,74100.0,kg/TJ,26312592.851999998,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,aab7d1c1-3ecb-3fd3-9aa7-24e13a08e878 -2020,Santa Fe,II.5.1,355.09572,TJ,CH4,3.9,kg/TJ,1384.873308,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,39e1d610-7bc9-3717-b9a6-8d62d7844aa2 -2020,Santa Fe,II.5.1,355.09572,TJ,N2O,3.9,kg/TJ,1384.873308,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,39e1d610-7bc9-3717-b9a6-8d62d7844aa2 -2020,Santiago del Estero,II.5.1,83.40108,TJ,CO2,74100.0,kg/TJ,6180020.028,Gas Oil combustion consumption by agriculture machines,AR-G,SESCO,annual,kg,9545de64-69b0-3f93-ab10-c4e4b9974e06 -2020,Santiago del Estero,II.5.1,83.40108,TJ,CH4,3.9,kg/TJ,325.264212,Gas Oil combustion consumption by agriculture machines,AR-G,SESCO,annual,kg,229aa0c9-6572-3ede-bdd4-9b5da1bac315 -2020,Santiago del Estero,II.5.1,83.40108,TJ,N2O,3.9,kg/TJ,325.264212,Gas Oil combustion consumption by agriculture machines,AR-G,SESCO,annual,kg,229aa0c9-6572-3ede-bdd4-9b5da1bac315 -2020,Tucuman,II.5.1,46.811519999999994,TJ,CO2,74100.0,kg/TJ,3468733.6319999998,Gas Oil combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,6fe6de5d-24e2-3629-b4c3-6ac2feca2fc2 -2020,Tucuman,II.5.1,46.811519999999994,TJ,CH4,3.9,kg/TJ,182.56492799999998,Gas Oil combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,8da41cb2-9299-3e5c-aca6-85dc452a4091 -2020,Tucuman,II.5.1,46.811519999999994,TJ,N2O,3.9,kg/TJ,182.56492799999998,Gas Oil combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,8da41cb2-9299-3e5c-aca6-85dc452a4091 -2020,Santa Fe,II.5.1,35.01883,TJ,CO2,73300.0,kg/TJ,2566880.239,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,3930ef94-9f7e-3d95-8150-118b6e75f383 -2020,Santa Fe,II.5.1,35.01883,TJ,CH4,0.5,kg/TJ,17.509415,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,1f931602-0587-301b-a153-58bfc77520df -2020,Santa Fe,II.5.1,35.01883,TJ,N2O,2.0,kg/TJ,70.03766,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,d9b0deb1-6e71-3bd8-bb28-4465a195c2a4 -2020,Santa Fe,II.5.1,6.681674999999999,TJ,CO2,73300.0,kg/TJ,489766.77749999997,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,fca9c2c3-ba89-3aa8-97bd-604a517613d4 -2020,Santa Fe,II.5.1,6.681674999999999,TJ,CH4,0.5,kg/TJ,3.3408374999999997,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,cf119e80-ec2b-3c61-934e-261e7a31669f -2020,Santa Fe,II.5.1,6.681674999999999,TJ,N2O,2.0,kg/TJ,13.363349999999999,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,b1866314-315d-34ad-9b5a-5bf40ddd6fd5 -2020,Buenos Aires,II.2.1,98.0658,TJ,CO2,74100.0,kg/TJ,7266675.779999999,Gas Oil combustion consumption by railway transport,AR-B,SESCO,annual,kg,3b1470f0-1090-32c8-bc33-079aec192171 -2020,Buenos Aires,II.2.1,98.0658,TJ,CH4,3.9,kg/TJ,382.45662,Gas Oil combustion consumption by railway transport,AR-B,SESCO,annual,kg,c6c87b8a-ee81-39f8-bda8-7a9951e6e63e -2020,Buenos Aires,II.2.1,98.0658,TJ,N2O,3.9,kg/TJ,382.45662,Gas Oil combustion consumption by railway transport,AR-B,SESCO,annual,kg,c6c87b8a-ee81-39f8-bda8-7a9951e6e63e -2020,Capital Federal,II.2.1,2.709,TJ,CO2,74100.0,kg/TJ,200736.9,Gas Oil combustion consumption by railway transport,AR-C,SESCO,annual,kg,23a5ada7-6b1a-31a0-91f7-1be76e2da253 -2020,Capital Federal,II.2.1,2.709,TJ,CH4,3.9,kg/TJ,10.5651,Gas Oil combustion consumption by railway transport,AR-C,SESCO,annual,kg,3b642f3e-23d3-3976-8709-314b4c84e4ab -2020,Capital Federal,II.2.1,2.709,TJ,N2O,3.9,kg/TJ,10.5651,Gas Oil combustion consumption by railway transport,AR-C,SESCO,annual,kg,3b642f3e-23d3-3976-8709-314b4c84e4ab -2020,Córdoba,II.2.1,10.61928,TJ,CO2,74100.0,kg/TJ,786888.648,Gas Oil combustion consumption by railway transport,AR-X,SESCO,annual,kg,796cb9ec-3bf6-370d-8d1e-15606091b8e2 -2020,Córdoba,II.2.1,10.61928,TJ,CH4,3.9,kg/TJ,41.415192,Gas Oil combustion consumption by railway transport,AR-X,SESCO,annual,kg,c8671e01-46a4-3e66-9301-6c92a18a8448 -2020,Córdoba,II.2.1,10.61928,TJ,N2O,3.9,kg/TJ,41.415192,Gas Oil combustion consumption by railway transport,AR-X,SESCO,annual,kg,c8671e01-46a4-3e66-9301-6c92a18a8448 -2020,La Pampa,II.2.1,29.654519999999998,TJ,CO2,74100.0,kg/TJ,2197399.932,Gas Oil combustion consumption by railway transport,AR-L,SESCO,annual,kg,df1f06d6-ce50-34ef-b8cf-b00eca7cbd29 -2020,La Pampa,II.2.1,29.654519999999998,TJ,CH4,3.9,kg/TJ,115.65262799999999,Gas Oil combustion consumption by railway transport,AR-L,SESCO,annual,kg,74dd5a79-cb5e-381e-ba33-f4e1c39687aa -2020,La Pampa,II.2.1,29.654519999999998,TJ,N2O,3.9,kg/TJ,115.65262799999999,Gas Oil combustion consumption by railway transport,AR-L,SESCO,annual,kg,74dd5a79-cb5e-381e-ba33-f4e1c39687aa -2020,Neuquén,II.2.1,7.80192,TJ,CO2,74100.0,kg/TJ,578122.272,Gas Oil combustion consumption by railway transport,AR-Q,SESCO,annual,kg,41032091-5c78-3534-aa7b-a9de0cdacec3 -2020,Neuquén,II.2.1,7.80192,TJ,CH4,3.9,kg/TJ,30.427488,Gas Oil combustion consumption by railway transport,AR-Q,SESCO,annual,kg,1916553e-eddf-337d-8c08-23a2b2810de7 -2020,Neuquén,II.2.1,7.80192,TJ,N2O,3.9,kg/TJ,30.427488,Gas Oil combustion consumption by railway transport,AR-Q,SESCO,annual,kg,1916553e-eddf-337d-8c08-23a2b2810de7 -2020,Santa Fe,II.2.1,122.48292,TJ,CO2,74100.0,kg/TJ,9075984.372,Gas Oil combustion consumption by railway transport,AR-S,SESCO,annual,kg,2b892a36-2413-3b42-a81d-b95144626173 -2020,Santa Fe,II.2.1,122.48292,TJ,CH4,3.9,kg/TJ,477.683388,Gas Oil combustion consumption by railway transport,AR-S,SESCO,annual,kg,240e991a-c7b1-33d4-af2e-58d97f5f3356 -2020,Santa Fe,II.2.1,122.48292,TJ,N2O,3.9,kg/TJ,477.683388,Gas Oil combustion consumption by railway transport,AR-S,SESCO,annual,kg,240e991a-c7b1-33d4-af2e-58d97f5f3356 -2020,Santiago del Estero,II.2.1,22.24992,TJ,CO2,74100.0,kg/TJ,1648719.072,Gas Oil combustion consumption by railway transport,AR-G,SESCO,annual,kg,e6cb4961-994d-3f5b-b619-8dbbd5180157 -2020,Santiago del Estero,II.2.1,22.24992,TJ,CH4,3.9,kg/TJ,86.774688,Gas Oil combustion consumption by railway transport,AR-G,SESCO,annual,kg,0ebaba5d-aa7d-3085-b496-13a2688637ec -2020,Santiago del Estero,II.2.1,22.24992,TJ,N2O,3.9,kg/TJ,86.774688,Gas Oil combustion consumption by railway transport,AR-G,SESCO,annual,kg,0ebaba5d-aa7d-3085-b496-13a2688637ec -2020,Tucuman,II.2.1,13.03932,TJ,CO2,74100.0,kg/TJ,966213.612,Gas Oil combustion consumption by railway transport,AR-T,SESCO,annual,kg,9afc208c-2d7c-3f5e-9bec-364f36899c38 -2020,Tucuman,II.2.1,13.03932,TJ,CH4,3.9,kg/TJ,50.853348,Gas Oil combustion consumption by railway transport,AR-T,SESCO,annual,kg,4097b250-decf-36a2-b910-39f1b2954757 -2020,Tucuman,II.2.1,13.03932,TJ,N2O,3.9,kg/TJ,50.853348,Gas Oil combustion consumption by railway transport,AR-T,SESCO,annual,kg,4097b250-decf-36a2-b910-39f1b2954757 -2020,Buenos Aires,II.1.1,1387.3330799999999,TJ,CO2,74100.0,kg/TJ,102801381.22799999,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,26247cd4-061e-3d51-8d5c-f59aa506dfcc -2020,Buenos Aires,II.1.1,1387.3330799999999,TJ,CH4,3.9,kg/TJ,5410.599012,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,17f5fc31-16f1-3cd8-9493-9549882d009f -2020,Buenos Aires,II.1.1,1387.3330799999999,TJ,N2O,3.9,kg/TJ,5410.599012,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,17f5fc31-16f1-3cd8-9493-9549882d009f -2020,Capital Federal,II.1.1,275.5956,TJ,CO2,74100.0,kg/TJ,20421633.96,Gas Oil combustion consumption by freight transport,AR-C,SESCO,annual,kg,823a7452-f946-3530-80ed-549a45b928ae -2020,Capital Federal,II.1.1,275.5956,TJ,CH4,3.9,kg/TJ,1074.82284,Gas Oil combustion consumption by freight transport,AR-C,SESCO,annual,kg,4530fb51-1f4f-3f16-a23e-58bda6984116 -2020,Capital Federal,II.1.1,275.5956,TJ,N2O,3.9,kg/TJ,1074.82284,Gas Oil combustion consumption by freight transport,AR-C,SESCO,annual,kg,4530fb51-1f4f-3f16-a23e-58bda6984116 -2020,Catamarca,II.1.1,10.61928,TJ,CO2,74100.0,kg/TJ,786888.648,Gas Oil combustion consumption by freight transport,AR-K,SESCO,annual,kg,318f23b9-69d8-3d0e-9a71-cf9c29f5c9d9 -2020,Catamarca,II.1.1,10.61928,TJ,CH4,3.9,kg/TJ,41.415192,Gas Oil combustion consumption by freight transport,AR-K,SESCO,annual,kg,72b82c26-6046-39bf-a399-3faac082c7fd -2020,Catamarca,II.1.1,10.61928,TJ,N2O,3.9,kg/TJ,41.415192,Gas Oil combustion consumption by freight transport,AR-K,SESCO,annual,kg,72b82c26-6046-39bf-a399-3faac082c7fd -2020,Chaco,II.1.1,25.175639999999998,TJ,CO2,74100.0,kg/TJ,1865514.9239999999,Gas Oil combustion consumption by freight transport,AR-H,SESCO,annual,kg,ffad3218-4090-380d-84fc-5ca027d2a1c8 -2020,Chaco,II.1.1,25.175639999999998,TJ,CH4,3.9,kg/TJ,98.18499599999998,Gas Oil combustion consumption by freight transport,AR-H,SESCO,annual,kg,43337036-54b5-3dcb-b2c5-263fd3b50dcd -2020,Chaco,II.1.1,25.175639999999998,TJ,N2O,3.9,kg/TJ,98.18499599999998,Gas Oil combustion consumption by freight transport,AR-H,SESCO,annual,kg,43337036-54b5-3dcb-b2c5-263fd3b50dcd -2020,Chubut,II.1.1,48.14796,TJ,CO2,74100.0,kg/TJ,3567763.8359999997,Gas Oil combustion consumption by freight transport,AR-U,SESCO,annual,kg,d5d65e52-14a9-3cff-935f-021bbca1a771 -2020,Chubut,II.1.1,48.14796,TJ,CH4,3.9,kg/TJ,187.777044,Gas Oil combustion consumption by freight transport,AR-U,SESCO,annual,kg,98c6a4f6-fe71-379e-bd78-2b8f4a318e84 -2020,Chubut,II.1.1,48.14796,TJ,N2O,3.9,kg/TJ,187.777044,Gas Oil combustion consumption by freight transport,AR-U,SESCO,annual,kg,98c6a4f6-fe71-379e-bd78-2b8f4a318e84 -2020,Corrientes,II.1.1,56.13048,TJ,CO2,74100.0,kg/TJ,4159268.568,Gas Oil combustion consumption by freight transport,AR-W,SESCO,annual,kg,bc1fe25f-d6c2-3f42-9c69-b692689ad9c6 -2020,Corrientes,II.1.1,56.13048,TJ,CH4,3.9,kg/TJ,218.908872,Gas Oil combustion consumption by freight transport,AR-W,SESCO,annual,kg,2c268696-3c32-365f-b8c2-f90a567f5960 -2020,Corrientes,II.1.1,56.13048,TJ,N2O,3.9,kg/TJ,218.908872,Gas Oil combustion consumption by freight transport,AR-W,SESCO,annual,kg,2c268696-3c32-365f-b8c2-f90a567f5960 -2020,Córdoba,II.1.1,197.68475999999998,TJ,CO2,74100.0,kg/TJ,14648440.715999998,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,af38f8fc-d196-3a52-a449-f6b848a433ce -2020,Córdoba,II.1.1,197.68475999999998,TJ,CH4,3.9,kg/TJ,770.970564,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,aa15a0ac-5368-38a4-ac5d-d624ea01ae11 -2020,Córdoba,II.1.1,197.68475999999998,TJ,N2O,3.9,kg/TJ,770.970564,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,aa15a0ac-5368-38a4-ac5d-d624ea01ae11 -2020,Entre Rios,II.1.1,107.70984,TJ,CO2,74100.0,kg/TJ,7981299.144,Gas Oil combustion consumption by freight transport,AR-E,SESCO,annual,kg,d86ea670-89a6-30c9-8b09-f29ce9f8a542 -2020,Entre Rios,II.1.1,107.70984,TJ,CH4,3.9,kg/TJ,420.068376,Gas Oil combustion consumption by freight transport,AR-E,SESCO,annual,kg,f46f494e-56c6-3ba6-a0f1-35579994ed0a -2020,Entre Rios,II.1.1,107.70984,TJ,N2O,3.9,kg/TJ,420.068376,Gas Oil combustion consumption by freight transport,AR-E,SESCO,annual,kg,f46f494e-56c6-3ba6-a0f1-35579994ed0a -2020,Formosa,II.1.1,10.14972,TJ,CO2,74100.0,kg/TJ,752094.252,Gas Oil combustion consumption by freight transport,AR-P,SESCO,annual,kg,dd5ae63e-ecb1-318c-a7e3-0d4656cdae44 -2020,Formosa,II.1.1,10.14972,TJ,CH4,3.9,kg/TJ,39.583908,Gas Oil combustion consumption by freight transport,AR-P,SESCO,annual,kg,2f5578c5-aef3-3b9c-8b25-1594e15d3e67 -2020,Formosa,II.1.1,10.14972,TJ,N2O,3.9,kg/TJ,39.583908,Gas Oil combustion consumption by freight transport,AR-P,SESCO,annual,kg,2f5578c5-aef3-3b9c-8b25-1594e15d3e67 -2020,Jujuy,II.1.1,8.27148,TJ,CO2,74100.0,kg/TJ,612916.6680000001,Gas Oil combustion consumption by freight transport,AR-Y,SESCO,annual,kg,a5b31e4e-8cc1-38d8-873a-b6144c1488fc -2020,Jujuy,II.1.1,8.27148,TJ,CH4,3.9,kg/TJ,32.258772,Gas Oil combustion consumption by freight transport,AR-Y,SESCO,annual,kg,3c780bfd-d48e-360a-b24e-f4a09fef7374 -2020,Jujuy,II.1.1,8.27148,TJ,N2O,3.9,kg/TJ,32.258772,Gas Oil combustion consumption by freight transport,AR-Y,SESCO,annual,kg,3c780bfd-d48e-360a-b24e-f4a09fef7374 -2020,La Pampa,II.1.1,20.84124,TJ,CO2,74100.0,kg/TJ,1544335.8839999998,Gas Oil combustion consumption by freight transport,AR-L,SESCO,annual,kg,4fba5dc1-b7a3-3142-bac0-78a6343fbbc0 -2020,La Pampa,II.1.1,20.84124,TJ,CH4,3.9,kg/TJ,81.280836,Gas Oil combustion consumption by freight transport,AR-L,SESCO,annual,kg,4d9572b0-b087-3653-9cbf-1a7b691f5cfc -2020,La Pampa,II.1.1,20.84124,TJ,N2O,3.9,kg/TJ,81.280836,Gas Oil combustion consumption by freight transport,AR-L,SESCO,annual,kg,4d9572b0-b087-3653-9cbf-1a7b691f5cfc -2020,La Rioja,II.1.1,2.6367599999999998,TJ,CO2,74100.0,kg/TJ,195383.916,Gas Oil combustion consumption by freight transport,AR-F,SESCO,annual,kg,d8b548d2-dcf2-33da-bdef-e31fdf687bd4 -2020,La Rioja,II.1.1,2.6367599999999998,TJ,CH4,3.9,kg/TJ,10.283363999999999,Gas Oil combustion consumption by freight transport,AR-F,SESCO,annual,kg,9cb57cc4-e3fe-391c-895a-26c723c5914f -2020,La Rioja,II.1.1,2.6367599999999998,TJ,N2O,3.9,kg/TJ,10.283363999999999,Gas Oil combustion consumption by freight transport,AR-F,SESCO,annual,kg,9cb57cc4-e3fe-391c-895a-26c723c5914f -2020,Mendoza,II.1.1,72.45671999999999,TJ,CO2,74100.0,kg/TJ,5369042.952,Gas Oil combustion consumption by freight transport,AR-M,SESCO,annual,kg,d401c147-3311-38a1-9406-aec7796910b7 -2020,Mendoza,II.1.1,72.45671999999999,TJ,CH4,3.9,kg/TJ,282.58120799999995,Gas Oil combustion consumption by freight transport,AR-M,SESCO,annual,kg,0a503c2f-d511-3847-a886-981eb3cc371c -2020,Mendoza,II.1.1,72.45671999999999,TJ,N2O,3.9,kg/TJ,282.58120799999995,Gas Oil combustion consumption by freight transport,AR-M,SESCO,annual,kg,0a503c2f-d511-3847-a886-981eb3cc371c -2020,Misiones,II.1.1,89.7582,TJ,CO2,74100.0,kg/TJ,6651082.62,Gas Oil combustion consumption by freight transport,AR-N,SESCO,annual,kg,9aab5f13-1746-3554-a6b0-eef2ab5fc6de -2020,Misiones,II.1.1,89.7582,TJ,CH4,3.9,kg/TJ,350.05698,Gas Oil combustion consumption by freight transport,AR-N,SESCO,annual,kg,64d9d7d7-d0ff-3360-91bb-de929b3edbf2 -2020,Misiones,II.1.1,89.7582,TJ,N2O,3.9,kg/TJ,350.05698,Gas Oil combustion consumption by freight transport,AR-N,SESCO,annual,kg,64d9d7d7-d0ff-3360-91bb-de929b3edbf2 -2020,Neuquén,II.1.1,1.73376,TJ,CO2,74100.0,kg/TJ,128471.616,Gas Oil combustion consumption by freight transport,AR-Q,SESCO,annual,kg,20e0f8a4-08dc-3695-a68d-cd5570e74c16 -2020,Neuquén,II.1.1,1.73376,TJ,CH4,3.9,kg/TJ,6.761664,Gas Oil combustion consumption by freight transport,AR-Q,SESCO,annual,kg,d1e5be0f-83fb-3f5d-ac2b-ad198e50d8ab -2020,Neuquén,II.1.1,1.73376,TJ,N2O,3.9,kg/TJ,6.761664,Gas Oil combustion consumption by freight transport,AR-Q,SESCO,annual,kg,d1e5be0f-83fb-3f5d-ac2b-ad198e50d8ab -2020,Rio Negro,II.1.1,90.76956,TJ,CO2,74100.0,kg/TJ,6726024.396,Gas Oil combustion consumption by freight transport,AR-R,SESCO,annual,kg,73c32dd7-d85f-321a-8a2f-4c3485719722 -2020,Rio Negro,II.1.1,90.76956,TJ,CH4,3.9,kg/TJ,354.001284,Gas Oil combustion consumption by freight transport,AR-R,SESCO,annual,kg,f7f40adc-6676-3708-8574-21af7bd2ff26 -2020,Rio Negro,II.1.1,90.76956,TJ,N2O,3.9,kg/TJ,354.001284,Gas Oil combustion consumption by freight transport,AR-R,SESCO,annual,kg,f7f40adc-6676-3708-8574-21af7bd2ff26 -2020,Salta,II.1.1,4.76784,TJ,CO2,74100.0,kg/TJ,353296.94399999996,Gas Oil combustion consumption by freight transport,AR-A,SESCO,annual,kg,acabd128-93ac-3a50-9d7e-c203e5edab3a -2020,Salta,II.1.1,4.76784,TJ,CH4,3.9,kg/TJ,18.594575999999996,Gas Oil combustion consumption by freight transport,AR-A,SESCO,annual,kg,e612d646-2904-3558-8c56-5751d97e3639 -2020,Salta,II.1.1,4.76784,TJ,N2O,3.9,kg/TJ,18.594575999999996,Gas Oil combustion consumption by freight transport,AR-A,SESCO,annual,kg,e612d646-2904-3558-8c56-5751d97e3639 -2020,San Juan,II.1.1,6.06816,TJ,CO2,74100.0,kg/TJ,449650.65599999996,Gas Oil combustion consumption by freight transport,AR-J,SESCO,annual,kg,169a167f-60ec-3a44-9053-99d9a47a80cd -2020,San Juan,II.1.1,6.06816,TJ,CH4,3.9,kg/TJ,23.665823999999997,Gas Oil combustion consumption by freight transport,AR-J,SESCO,annual,kg,77629aa5-eb7e-37d0-a9ae-2d8c9edd8925 -2020,San Juan,II.1.1,6.06816,TJ,N2O,3.9,kg/TJ,23.665823999999997,Gas Oil combustion consumption by freight transport,AR-J,SESCO,annual,kg,77629aa5-eb7e-37d0-a9ae-2d8c9edd8925 -2020,San Luis,II.1.1,33.62772,TJ,CO2,74100.0,kg/TJ,2491814.0519999997,Gas Oil combustion consumption by freight transport,AR-D,SESCO,annual,kg,aac50db3-d966-31e2-8532-373dc0f01a05 -2020,San Luis,II.1.1,33.62772,TJ,CH4,3.9,kg/TJ,131.14810799999998,Gas Oil combustion consumption by freight transport,AR-D,SESCO,annual,kg,441712e4-1361-3103-92d6-140a1f303f3b -2020,San Luis,II.1.1,33.62772,TJ,N2O,3.9,kg/TJ,131.14810799999998,Gas Oil combustion consumption by freight transport,AR-D,SESCO,annual,kg,441712e4-1361-3103-92d6-140a1f303f3b -2020,Santa Cruz,II.1.1,12.71424,TJ,CO2,74100.0,kg/TJ,942125.184,Gas Oil combustion consumption by freight transport,AR-Z,SESCO,annual,kg,19525495-191e-3410-9c28-bd0f6aad2c9d -2020,Santa Cruz,II.1.1,12.71424,TJ,CH4,3.9,kg/TJ,49.585536,Gas Oil combustion consumption by freight transport,AR-Z,SESCO,annual,kg,fa1b8fe7-b439-3225-93fb-84c1fef07477 -2020,Santa Cruz,II.1.1,12.71424,TJ,N2O,3.9,kg/TJ,49.585536,Gas Oil combustion consumption by freight transport,AR-Z,SESCO,annual,kg,fa1b8fe7-b439-3225-93fb-84c1fef07477 -2020,Santa Fe,II.1.1,364.9926,TJ,CO2,74100.0,kg/TJ,27045951.66,Gas Oil combustion consumption by freight transport,AR-S,SESCO,annual,kg,761f2f73-45b7-3269-941e-6ad818b4ca07 -2020,Santa Fe,II.1.1,364.9926,TJ,CH4,3.9,kg/TJ,1423.4711399999999,Gas Oil combustion consumption by freight transport,AR-S,SESCO,annual,kg,a8f1db3c-1163-3694-87c5-c17813e988f4 -2020,Santa Fe,II.1.1,364.9926,TJ,N2O,3.9,kg/TJ,1423.4711399999999,Gas Oil combustion consumption by freight transport,AR-S,SESCO,annual,kg,a8f1db3c-1163-3694-87c5-c17813e988f4 -2020,Santiago del Estero,II.1.1,84.55691999999999,TJ,CO2,74100.0,kg/TJ,6265667.771999999,Gas Oil combustion consumption by freight transport,AR-G,SESCO,annual,kg,a0d7a1da-26e8-3c79-9463-904a9596c422 -2020,Santiago del Estero,II.1.1,84.55691999999999,TJ,CH4,3.9,kg/TJ,329.77198799999996,Gas Oil combustion consumption by freight transport,AR-G,SESCO,annual,kg,6222f054-cf4e-3934-86e9-26d58cb1f572 -2020,Santiago del Estero,II.1.1,84.55691999999999,TJ,N2O,3.9,kg/TJ,329.77198799999996,Gas Oil combustion consumption by freight transport,AR-G,SESCO,annual,kg,6222f054-cf4e-3934-86e9-26d58cb1f572 -2020,Tierra del Fuego,II.1.1,5.02068,TJ,CO2,74100.0,kg/TJ,372032.388,Gas Oil combustion consumption by freight transport,AR-V,SESCO,annual,kg,c1674e3b-af12-36f2-a439-037b3401c585 -2020,Tierra del Fuego,II.1.1,5.02068,TJ,CH4,3.9,kg/TJ,19.580651999999997,Gas Oil combustion consumption by freight transport,AR-V,SESCO,annual,kg,f543ca3b-2a2e-3f8f-be82-18fa805a756a -2020,Tierra del Fuego,II.1.1,5.02068,TJ,N2O,3.9,kg/TJ,19.580651999999997,Gas Oil combustion consumption by freight transport,AR-V,SESCO,annual,kg,f543ca3b-2a2e-3f8f-be82-18fa805a756a -2020,Tucuman,II.1.1,40.743359999999996,TJ,CO2,74100.0,kg/TJ,3019082.976,Gas Oil combustion consumption by freight transport,AR-T,SESCO,annual,kg,c6dc03c9-10a1-3d96-830c-a5f96ee3081f -2020,Tucuman,II.1.1,40.743359999999996,TJ,CH4,3.9,kg/TJ,158.89910399999997,Gas Oil combustion consumption by freight transport,AR-T,SESCO,annual,kg,cf6d0164-647a-3870-8c35-0e140b2a5b94 -2020,Tucuman,II.1.1,40.743359999999996,TJ,N2O,3.9,kg/TJ,158.89910399999997,Gas Oil combustion consumption by freight transport,AR-T,SESCO,annual,kg,cf6d0164-647a-3870-8c35-0e140b2a5b94 -2020,Buenos Aires,II.1.1,170.26968,TJ,CO2,74100.0,kg/TJ,12616983.287999999,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,14374457-fdb1-3acb-91d6-791413fd4e55 -2020,Buenos Aires,II.1.1,170.26968,TJ,CH4,3.9,kg/TJ,664.051752,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,6f2ded01-45cf-3244-b284-35c4977d5d05 -2020,Buenos Aires,II.1.1,170.26968,TJ,N2O,3.9,kg/TJ,664.051752,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,6f2ded01-45cf-3244-b284-35c4977d5d05 -2020,Capital Federal,II.1.1,18.71016,TJ,CO2,74100.0,kg/TJ,1386422.856,Gas Oil combustion consumption by freight transport,AR-C,SESCO,annual,kg,49dfac0a-b3c5-3ac4-ae9a-f5dacd5a56a5 -2020,Capital Federal,II.1.1,18.71016,TJ,CH4,3.9,kg/TJ,72.969624,Gas Oil combustion consumption by freight transport,AR-C,SESCO,annual,kg,a3ff9675-8577-3ab0-8220-949ca7407a4d -2020,Capital Federal,II.1.1,18.71016,TJ,N2O,3.9,kg/TJ,72.969624,Gas Oil combustion consumption by freight transport,AR-C,SESCO,annual,kg,a3ff9675-8577-3ab0-8220-949ca7407a4d -2020,Catamarca,II.1.1,0.8307599999999999,TJ,CO2,74100.0,kg/TJ,61559.316,Gas Oil combustion consumption by freight transport,AR-K,SESCO,annual,kg,eb679c9a-d539-30db-90f8-a57a75d6b13f -2020,Catamarca,II.1.1,0.8307599999999999,TJ,CH4,3.9,kg/TJ,3.2399639999999996,Gas Oil combustion consumption by freight transport,AR-K,SESCO,annual,kg,0495770d-ab03-3029-98ab-c70fb813319e -2020,Catamarca,II.1.1,0.8307599999999999,TJ,N2O,3.9,kg/TJ,3.2399639999999996,Gas Oil combustion consumption by freight transport,AR-K,SESCO,annual,kg,0495770d-ab03-3029-98ab-c70fb813319e -2020,Chaco,II.1.1,4.55112,TJ,CO2,74100.0,kg/TJ,337237.992,Gas Oil combustion consumption by freight transport,AR-H,SESCO,annual,kg,01f3c2e1-2ae3-3c96-b4b6-2ade12362cba -2020,Chaco,II.1.1,4.55112,TJ,CH4,3.9,kg/TJ,17.749368,Gas Oil combustion consumption by freight transport,AR-H,SESCO,annual,kg,db5733e3-eb1f-36d2-86e3-0d6d1af9ac28 -2020,Chaco,II.1.1,4.55112,TJ,N2O,3.9,kg/TJ,17.749368,Gas Oil combustion consumption by freight transport,AR-H,SESCO,annual,kg,db5733e3-eb1f-36d2-86e3-0d6d1af9ac28 -2020,Chubut,II.1.1,14.59248,TJ,CO2,74100.0,kg/TJ,1081302.768,Gas Oil combustion consumption by freight transport,AR-U,SESCO,annual,kg,21093fe2-7448-304e-a290-96b9688341f6 -2020,Chubut,II.1.1,14.59248,TJ,CH4,3.9,kg/TJ,56.910672,Gas Oil combustion consumption by freight transport,AR-U,SESCO,annual,kg,e9be97f2-8df0-3fdc-a973-b272cf24d723 -2020,Chubut,II.1.1,14.59248,TJ,N2O,3.9,kg/TJ,56.910672,Gas Oil combustion consumption by freight transport,AR-U,SESCO,annual,kg,e9be97f2-8df0-3fdc-a973-b272cf24d723 -2020,Corrientes,II.1.1,10.185839999999999,TJ,CO2,74100.0,kg/TJ,754770.744,Gas Oil combustion consumption by freight transport,AR-W,SESCO,annual,kg,25a5f22d-d43e-3521-afdc-0bd78373cf93 -2020,Corrientes,II.1.1,10.185839999999999,TJ,CH4,3.9,kg/TJ,39.72477599999999,Gas Oil combustion consumption by freight transport,AR-W,SESCO,annual,kg,a5327e98-4ae6-304b-8dba-fe793f41e4e7 -2020,Corrientes,II.1.1,10.185839999999999,TJ,N2O,3.9,kg/TJ,39.72477599999999,Gas Oil combustion consumption by freight transport,AR-W,SESCO,annual,kg,a5327e98-4ae6-304b-8dba-fe793f41e4e7 -2020,Córdoba,II.1.1,17.37372,TJ,CO2,74100.0,kg/TJ,1287392.652,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,050cff94-b3ba-3fcf-b958-32b71fc0b5d0 -2020,Córdoba,II.1.1,17.37372,TJ,CH4,3.9,kg/TJ,67.75750799999999,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,b3d9d619-aa7c-3e04-9ed2-9d122afbfb83 -2020,Córdoba,II.1.1,17.37372,TJ,N2O,3.9,kg/TJ,67.75750799999999,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,b3d9d619-aa7c-3e04-9ed2-9d122afbfb83 -2020,Entre Rios,II.1.1,13.32828,TJ,CO2,74100.0,kg/TJ,987625.548,Gas Oil combustion consumption by freight transport,AR-E,SESCO,annual,kg,3f0d7fb5-870d-3622-b8bf-477fb91a8b1a -2020,Entre Rios,II.1.1,13.32828,TJ,CH4,3.9,kg/TJ,51.980292,Gas Oil combustion consumption by freight transport,AR-E,SESCO,annual,kg,2917f4a2-a433-33db-8814-8b93eec3527d -2020,Entre Rios,II.1.1,13.32828,TJ,N2O,3.9,kg/TJ,51.980292,Gas Oil combustion consumption by freight transport,AR-E,SESCO,annual,kg,2917f4a2-a433-33db-8814-8b93eec3527d -2020,Formosa,II.1.1,0.39732,TJ,CO2,74100.0,kg/TJ,29441.412,Gas Oil combustion consumption by freight transport,AR-P,SESCO,annual,kg,f7d0fc73-b46e-346d-8f12-8fa3fec0c5ac -2020,Formosa,II.1.1,0.39732,TJ,CH4,3.9,kg/TJ,1.549548,Gas Oil combustion consumption by freight transport,AR-P,SESCO,annual,kg,83498105-6c41-36ad-b581-bb69b5c8d561 -2020,Formosa,II.1.1,0.39732,TJ,N2O,3.9,kg/TJ,1.549548,Gas Oil combustion consumption by freight transport,AR-P,SESCO,annual,kg,83498105-6c41-36ad-b581-bb69b5c8d561 -2020,Jujuy,II.1.1,3.17856,TJ,CO2,74100.0,kg/TJ,235531.296,Gas Oil combustion consumption by freight transport,AR-Y,SESCO,annual,kg,17979128-e8bc-3d5c-ac73-cb002390c93c -2020,Jujuy,II.1.1,3.17856,TJ,CH4,3.9,kg/TJ,12.396384,Gas Oil combustion consumption by freight transport,AR-Y,SESCO,annual,kg,9d6aa97e-8199-3f61-bc87-27cd37396c88 -2020,Jujuy,II.1.1,3.17856,TJ,N2O,3.9,kg/TJ,12.396384,Gas Oil combustion consumption by freight transport,AR-Y,SESCO,annual,kg,9d6aa97e-8199-3f61-bc87-27cd37396c88 -2020,La Pampa,II.1.1,1.37256,TJ,CO2,74100.0,kg/TJ,101706.696,Gas Oil combustion consumption by freight transport,AR-L,SESCO,annual,kg,0d0f3400-0d0a-3d9f-8fe6-55f9d0171cb6 -2020,La Pampa,II.1.1,1.37256,TJ,CH4,3.9,kg/TJ,5.352984,Gas Oil combustion consumption by freight transport,AR-L,SESCO,annual,kg,0988c533-39ec-38e2-8e1c-74ae436b913f -2020,La Pampa,II.1.1,1.37256,TJ,N2O,3.9,kg/TJ,5.352984,Gas Oil combustion consumption by freight transport,AR-L,SESCO,annual,kg,0988c533-39ec-38e2-8e1c-74ae436b913f -2020,La Rioja,II.1.1,0.10836,TJ,CO2,74100.0,kg/TJ,8029.476,Gas Oil combustion consumption by freight transport,AR-F,SESCO,annual,kg,e07b9a20-8fa8-3e7c-a9d5-2e54dc7741fa -2020,La Rioja,II.1.1,0.10836,TJ,CH4,3.9,kg/TJ,0.422604,Gas Oil combustion consumption by freight transport,AR-F,SESCO,annual,kg,6788104c-c872-3539-869a-ed0f648f867f -2020,La Rioja,II.1.1,0.10836,TJ,N2O,3.9,kg/TJ,0.422604,Gas Oil combustion consumption by freight transport,AR-F,SESCO,annual,kg,6788104c-c872-3539-869a-ed0f648f867f -2020,Mendoza,II.1.1,7.3323599999999995,TJ,CO2,74100.0,kg/TJ,543327.8759999999,Gas Oil combustion consumption by freight transport,AR-M,SESCO,annual,kg,0d07290e-6980-3df1-9bb3-aa92fb581ef5 -2020,Mendoza,II.1.1,7.3323599999999995,TJ,CH4,3.9,kg/TJ,28.596203999999997,Gas Oil combustion consumption by freight transport,AR-M,SESCO,annual,kg,63c1dcef-6b95-3fab-8b5a-da7726dfe911 -2020,Mendoza,II.1.1,7.3323599999999995,TJ,N2O,3.9,kg/TJ,28.596203999999997,Gas Oil combustion consumption by freight transport,AR-M,SESCO,annual,kg,63c1dcef-6b95-3fab-8b5a-da7726dfe911 -2020,Misiones,II.1.1,2.6367599999999998,TJ,CO2,74100.0,kg/TJ,195383.916,Gas Oil combustion consumption by freight transport,AR-N,SESCO,annual,kg,f978e1e1-d9bb-3850-9c27-dcee126ad90b -2020,Misiones,II.1.1,2.6367599999999998,TJ,CH4,3.9,kg/TJ,10.283363999999999,Gas Oil combustion consumption by freight transport,AR-N,SESCO,annual,kg,b0b5c66d-6f91-3512-8de3-2981a499f31a -2020,Misiones,II.1.1,2.6367599999999998,TJ,N2O,3.9,kg/TJ,10.283363999999999,Gas Oil combustion consumption by freight transport,AR-N,SESCO,annual,kg,b0b5c66d-6f91-3512-8de3-2981a499f31a -2020,Neuquén,II.1.1,0.93912,TJ,CO2,74100.0,kg/TJ,69588.792,Gas Oil combustion consumption by freight transport,AR-Q,SESCO,annual,kg,71ae0bff-dd97-36ac-b622-8c735ba56efd -2020,Neuquén,II.1.1,0.93912,TJ,CH4,3.9,kg/TJ,3.662568,Gas Oil combustion consumption by freight transport,AR-Q,SESCO,annual,kg,559a2c6f-82be-3596-b2ad-3e8d7529e388 -2020,Neuquén,II.1.1,0.93912,TJ,N2O,3.9,kg/TJ,3.662568,Gas Oil combustion consumption by freight transport,AR-Q,SESCO,annual,kg,559a2c6f-82be-3596-b2ad-3e8d7529e388 -2020,Rio Negro,II.1.1,10.14972,TJ,CO2,74100.0,kg/TJ,752094.252,Gas Oil combustion consumption by freight transport,AR-R,SESCO,annual,kg,67c3d9a6-382a-342e-89bc-48f62aebdbe6 -2020,Rio Negro,II.1.1,10.14972,TJ,CH4,3.9,kg/TJ,39.583908,Gas Oil combustion consumption by freight transport,AR-R,SESCO,annual,kg,5c76f59d-a26c-376f-927b-3659ae4fe836 -2020,Rio Negro,II.1.1,10.14972,TJ,N2O,3.9,kg/TJ,39.583908,Gas Oil combustion consumption by freight transport,AR-R,SESCO,annual,kg,5c76f59d-a26c-376f-927b-3659ae4fe836 -2020,Salta,II.1.1,0.7223999999999999,TJ,CO2,74100.0,kg/TJ,53529.84,Gas Oil combustion consumption by freight transport,AR-A,SESCO,annual,kg,52340fee-ff2d-3165-90bd-b4c9320b45d4 -2020,Salta,II.1.1,0.7223999999999999,TJ,CH4,3.9,kg/TJ,2.81736,Gas Oil combustion consumption by freight transport,AR-A,SESCO,annual,kg,3f415a71-9139-3a3f-a565-30a329c8e397 -2020,Salta,II.1.1,0.7223999999999999,TJ,N2O,3.9,kg/TJ,2.81736,Gas Oil combustion consumption by freight transport,AR-A,SESCO,annual,kg,3f415a71-9139-3a3f-a565-30a329c8e397 -2020,San Juan,II.1.1,0.07224,TJ,CO2,74100.0,kg/TJ,5352.9839999999995,Gas Oil combustion consumption by freight transport,AR-J,SESCO,annual,kg,a36341f0-2deb-3be0-be3c-127b591e8f2e -2020,San Juan,II.1.1,0.07224,TJ,CH4,3.9,kg/TJ,0.281736,Gas Oil combustion consumption by freight transport,AR-J,SESCO,annual,kg,f0c602d8-00e1-34de-9792-455335f749d0 -2020,San Juan,II.1.1,0.07224,TJ,N2O,3.9,kg/TJ,0.281736,Gas Oil combustion consumption by freight transport,AR-J,SESCO,annual,kg,f0c602d8-00e1-34de-9792-455335f749d0 -2020,San Luis,II.1.1,3.68424,TJ,CO2,74100.0,kg/TJ,273002.184,Gas Oil combustion consumption by freight transport,AR-D,SESCO,annual,kg,9f864eef-8f17-3c89-bc53-0a9df259198c -2020,San Luis,II.1.1,3.68424,TJ,CH4,3.9,kg/TJ,14.368535999999999,Gas Oil combustion consumption by freight transport,AR-D,SESCO,annual,kg,1201eb33-8ba9-391e-ac45-5c001a5ae8aa -2020,San Luis,II.1.1,3.68424,TJ,N2O,3.9,kg/TJ,14.368535999999999,Gas Oil combustion consumption by freight transport,AR-D,SESCO,annual,kg,1201eb33-8ba9-391e-ac45-5c001a5ae8aa -2020,Santa Cruz,II.1.1,3.2508,TJ,CO2,74100.0,kg/TJ,240884.28,Gas Oil combustion consumption by freight transport,AR-Z,SESCO,annual,kg,5a765290-9dc7-368c-9efb-41bdddc215a6 -2020,Santa Cruz,II.1.1,3.2508,TJ,CH4,3.9,kg/TJ,12.67812,Gas Oil combustion consumption by freight transport,AR-Z,SESCO,annual,kg,7adba211-9c62-31db-806f-e4b7e316edcb -2020,Santa Cruz,II.1.1,3.2508,TJ,N2O,3.9,kg/TJ,12.67812,Gas Oil combustion consumption by freight transport,AR-Z,SESCO,annual,kg,7adba211-9c62-31db-806f-e4b7e316edcb -2020,Santa Fe,II.1.1,40.92396,TJ,CO2,74100.0,kg/TJ,3032465.436,Gas Oil combustion consumption by freight transport,AR-S,SESCO,annual,kg,902567fd-a7d0-3aeb-8ff3-d1ea36c2469e -2020,Santa Fe,II.1.1,40.92396,TJ,CH4,3.9,kg/TJ,159.603444,Gas Oil combustion consumption by freight transport,AR-S,SESCO,annual,kg,bd773019-e73a-3d85-8799-b25944cb9688 -2020,Santa Fe,II.1.1,40.92396,TJ,N2O,3.9,kg/TJ,159.603444,Gas Oil combustion consumption by freight transport,AR-S,SESCO,annual,kg,bd773019-e73a-3d85-8799-b25944cb9688 -2020,Santiago del Estero,II.1.1,5.345759999999999,TJ,CO2,74100.0,kg/TJ,396120.81599999993,Gas Oil combustion consumption by freight transport,AR-G,SESCO,annual,kg,07f1873a-24ea-364e-921c-4d99c21717b2 -2020,Santiago del Estero,II.1.1,5.345759999999999,TJ,CH4,3.9,kg/TJ,20.848463999999996,Gas Oil combustion consumption by freight transport,AR-G,SESCO,annual,kg,44ae5c70-f00e-3ef6-945e-b5d06324f38e -2020,Santiago del Estero,II.1.1,5.345759999999999,TJ,N2O,3.9,kg/TJ,20.848463999999996,Gas Oil combustion consumption by freight transport,AR-G,SESCO,annual,kg,44ae5c70-f00e-3ef6-945e-b5d06324f38e -2020,Tierra del Fuego,II.1.1,0.07224,TJ,CO2,74100.0,kg/TJ,5352.9839999999995,Gas Oil combustion consumption by freight transport,AR-V,SESCO,annual,kg,9538ea72-cb1a-31e8-a3c1-d6e09531b470 -2020,Tierra del Fuego,II.1.1,0.07224,TJ,CH4,3.9,kg/TJ,0.281736,Gas Oil combustion consumption by freight transport,AR-V,SESCO,annual,kg,bac7c95d-2ce8-3ad1-87f4-8e0804123eab -2020,Tierra del Fuego,II.1.1,0.07224,TJ,N2O,3.9,kg/TJ,0.281736,Gas Oil combustion consumption by freight transport,AR-V,SESCO,annual,kg,bac7c95d-2ce8-3ad1-87f4-8e0804123eab -2020,Tucuman,II.1.1,21.057959999999998,TJ,CO2,74100.0,kg/TJ,1560394.836,Gas Oil combustion consumption by freight transport,AR-T,SESCO,annual,kg,66e085ff-9134-39cc-ae56-d20a16609e9a -2020,Tucuman,II.1.1,21.057959999999998,TJ,CH4,3.9,kg/TJ,82.126044,Gas Oil combustion consumption by freight transport,AR-T,SESCO,annual,kg,ce14d3cd-8b15-3bf4-818f-2b22ab7d9729 -2020,Tucuman,II.1.1,21.057959999999998,TJ,N2O,3.9,kg/TJ,82.126044,Gas Oil combustion consumption by freight transport,AR-T,SESCO,annual,kg,ce14d3cd-8b15-3bf4-818f-2b22ab7d9729 -2020,Buenos Aires,II.1.1,11.204654999999999,TJ,CO2,73300.0,kg/TJ,821301.2115,Naphtha combustion consumption by freight transport,AR-B,SESCO,annual,kg,be79bee4-032b-3c7e-b17b-f06667845a36 -2020,Buenos Aires,II.1.1,11.204654999999999,TJ,CH4,0.5,kg/TJ,5.6023274999999995,Naphtha combustion consumption by freight transport,AR-B,SESCO,annual,kg,3c8109e5-371d-3c24-90b2-76ca65078fb8 -2020,Buenos Aires,II.1.1,11.204654999999999,TJ,N2O,2.0,kg/TJ,22.409309999999998,Naphtha combustion consumption by freight transport,AR-B,SESCO,annual,kg,c00a057a-dbae-3078-8481-205f1916318f -2020,Capital Federal,II.1.1,3.9062099999999997,TJ,CO2,73300.0,kg/TJ,286325.19299999997,Naphtha combustion consumption by freight transport,AR-C,SESCO,annual,kg,69c4f310-286f-31da-ac07-771925c6ede2 -2020,Capital Federal,II.1.1,3.9062099999999997,TJ,CH4,0.5,kg/TJ,1.9531049999999999,Naphtha combustion consumption by freight transport,AR-C,SESCO,annual,kg,a7ed8784-43fc-34fa-aa9a-6ef758d889e4 -2020,Capital Federal,II.1.1,3.9062099999999997,TJ,N2O,2.0,kg/TJ,7.8124199999999995,Naphtha combustion consumption by freight transport,AR-C,SESCO,annual,kg,93c7db9a-5a8f-34ba-b540-ff41d93f7c5a -2020,Córdoba,II.1.1,1.3363349999999998,TJ,CO2,73300.0,kg/TJ,97953.35549999999,Naphtha combustion consumption by freight transport,AR-X,SESCO,annual,kg,0a77ce40-121b-3fc8-80e2-41189d75ebbe -2020,Córdoba,II.1.1,1.3363349999999998,TJ,CH4,0.5,kg/TJ,0.6681674999999999,Naphtha combustion consumption by freight transport,AR-X,SESCO,annual,kg,7926b6d8-442a-3cb6-82c3-b214219e7f3a -2020,Córdoba,II.1.1,1.3363349999999998,TJ,N2O,2.0,kg/TJ,2.6726699999999997,Naphtha combustion consumption by freight transport,AR-X,SESCO,annual,kg,18443616-0ae4-3745-a150-aa2be82fb527 -2020,Entre Rios,II.1.1,0.376915,TJ,CO2,73300.0,kg/TJ,27627.8695,Naphtha combustion consumption by freight transport,AR-E,SESCO,annual,kg,388f646f-0673-3286-a10a-f17f767fc36e -2020,Entre Rios,II.1.1,0.376915,TJ,CH4,0.5,kg/TJ,0.1884575,Naphtha combustion consumption by freight transport,AR-E,SESCO,annual,kg,73b04420-b34b-3245-8840-d7248fc2f574 -2020,Entre Rios,II.1.1,0.376915,TJ,N2O,2.0,kg/TJ,0.75383,Naphtha combustion consumption by freight transport,AR-E,SESCO,annual,kg,43f0ec35-c34f-3b3a-a257-0d7e33cbe9a8 -2020,Jujuy,II.1.1,0.034265,TJ,CO2,73300.0,kg/TJ,2511.6245,Naphtha combustion consumption by freight transport,AR-Y,SESCO,annual,kg,0029cf2c-68dc-3bf5-be74-685eada502bd -2020,Jujuy,II.1.1,0.034265,TJ,CH4,0.5,kg/TJ,0.0171325,Naphtha combustion consumption by freight transport,AR-Y,SESCO,annual,kg,3aca582d-11ed-3c89-9ba0-d95965ffa1fc -2020,Jujuy,II.1.1,0.034265,TJ,N2O,2.0,kg/TJ,0.06853,Naphtha combustion consumption by freight transport,AR-Y,SESCO,annual,kg,70642e49-49c0-3107-aafe-758b99450560 -2020,Mendoza,II.1.1,0.171325,TJ,CO2,73300.0,kg/TJ,12558.1225,Naphtha combustion consumption by freight transport,AR-M,SESCO,annual,kg,d91dc4ee-a3b9-31c1-a016-25b6aae1bbd3 -2020,Mendoza,II.1.1,0.171325,TJ,CH4,0.5,kg/TJ,0.0856625,Naphtha combustion consumption by freight transport,AR-M,SESCO,annual,kg,aaadf474-a19e-3fa6-9ad5-5e75e19609a0 -2020,Mendoza,II.1.1,0.171325,TJ,N2O,2.0,kg/TJ,0.34265,Naphtha combustion consumption by freight transport,AR-M,SESCO,annual,kg,eee3fe52-a031-373a-8c3c-0f601e7b89ab -2020,Santa Fe,II.1.1,1.404865,TJ,CO2,73300.0,kg/TJ,102976.6045,Naphtha combustion consumption by freight transport,AR-S,SESCO,annual,kg,9929abb6-547d-37fa-baf6-796aa7af81ba -2020,Santa Fe,II.1.1,1.404865,TJ,CH4,0.5,kg/TJ,0.7024325,Naphtha combustion consumption by freight transport,AR-S,SESCO,annual,kg,d48d6136-6665-32df-a1d5-08a5f6c34481 -2020,Santa Fe,II.1.1,1.404865,TJ,N2O,2.0,kg/TJ,2.80973,Naphtha combustion consumption by freight transport,AR-S,SESCO,annual,kg,24bb6452-f233-3da7-99a4-39ea09e81071 -2020,Buenos Aires,II.1.1,6.544614999999999,TJ,CO2,73300.0,kg/TJ,479720.27949999995,Naphtha combustion consumption by freight transport,AR-B,SESCO,annual,kg,b2aa1a8f-5982-39aa-90ad-7b4ce1205a5e -2020,Buenos Aires,II.1.1,6.544614999999999,TJ,CH4,0.5,kg/TJ,3.2723074999999997,Naphtha combustion consumption by freight transport,AR-B,SESCO,annual,kg,9938b19c-bc0f-3e49-9183-ee4a6608bc51 -2020,Buenos Aires,II.1.1,6.544614999999999,TJ,N2O,2.0,kg/TJ,13.089229999999999,Naphtha combustion consumption by freight transport,AR-B,SESCO,annual,kg,684a5043-6ca8-356f-ac74-a910b0032674 -2020,Capital Federal,II.1.1,2.80973,TJ,CO2,73300.0,kg/TJ,205953.209,Naphtha combustion consumption by freight transport,AR-C,SESCO,annual,kg,5a145291-4629-353c-ba4d-d7f60095b467 -2020,Capital Federal,II.1.1,2.80973,TJ,CH4,0.5,kg/TJ,1.404865,Naphtha combustion consumption by freight transport,AR-C,SESCO,annual,kg,884268ff-aecc-3ae0-8916-1568939a731a -2020,Capital Federal,II.1.1,2.80973,TJ,N2O,2.0,kg/TJ,5.61946,Naphtha combustion consumption by freight transport,AR-C,SESCO,annual,kg,45340646-c154-3eee-9300-ab013f14a0b4 -2020,Corrientes,II.1.1,0.27412,TJ,CO2,73300.0,kg/TJ,20092.996,Naphtha combustion consumption by freight transport,AR-W,SESCO,annual,kg,a6184504-f6f8-3c60-9921-8849bda244b8 -2020,Corrientes,II.1.1,0.27412,TJ,CH4,0.5,kg/TJ,0.13706,Naphtha combustion consumption by freight transport,AR-W,SESCO,annual,kg,a51b10e6-1761-379a-9ed0-9ddccbe9b25d -2020,Corrientes,II.1.1,0.27412,TJ,N2O,2.0,kg/TJ,0.54824,Naphtha combustion consumption by freight transport,AR-W,SESCO,annual,kg,9071cbb9-e026-35de-a611-9e847c49e7d8 -2020,Córdoba,II.1.1,0.788095,TJ,CO2,73300.0,kg/TJ,57767.3635,Naphtha combustion consumption by freight transport,AR-X,SESCO,annual,kg,ad321f47-d959-33a8-b920-ce81fbf40948 -2020,Córdoba,II.1.1,0.788095,TJ,CH4,0.5,kg/TJ,0.3940475,Naphtha combustion consumption by freight transport,AR-X,SESCO,annual,kg,8ea7e71f-71d8-3685-85db-fc385b8561c4 -2020,Córdoba,II.1.1,0.788095,TJ,N2O,2.0,kg/TJ,1.57619,Naphtha combustion consumption by freight transport,AR-X,SESCO,annual,kg,b94c1cf4-8e4e-3a65-be66-db22deee7d40 -2020,Entre Rios,II.1.1,0.89089,TJ,CO2,73300.0,kg/TJ,65302.236999999994,Naphtha combustion consumption by freight transport,AR-E,SESCO,annual,kg,7bd5847e-edcb-34b2-938e-10f4b2b8e305 -2020,Entre Rios,II.1.1,0.89089,TJ,CH4,0.5,kg/TJ,0.445445,Naphtha combustion consumption by freight transport,AR-E,SESCO,annual,kg,f4b6a4f9-33e6-3aed-b647-e8716b921753 -2020,Entre Rios,II.1.1,0.89089,TJ,N2O,2.0,kg/TJ,1.78178,Naphtha combustion consumption by freight transport,AR-E,SESCO,annual,kg,1cfb71c2-c4af-3aa7-8cd0-6623738bdf85 -2020,Santa Fe,II.1.1,1.43913,TJ,CO2,73300.0,kg/TJ,105488.229,Naphtha combustion consumption by freight transport,AR-S,SESCO,annual,kg,ac06742f-489b-3770-90eb-c237bbe2fbb5 -2020,Santa Fe,II.1.1,1.43913,TJ,CH4,0.5,kg/TJ,0.719565,Naphtha combustion consumption by freight transport,AR-S,SESCO,annual,kg,bfbd6c44-044f-397e-9ec3-6ea43c878d14 -2020,Santa Fe,II.1.1,1.43913,TJ,N2O,2.0,kg/TJ,2.87826,Naphtha combustion consumption by freight transport,AR-S,SESCO,annual,kg,550db7ad-0a9b-324e-a1a6-333465ced93a -2020,Buenos Aires,II.1.1,1113.79632,TJ,CO2,74100.0,kg/TJ,82532307.31199999,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,8f49c4a4-ea8d-3072-9675-1ced19b9c3df -2020,Buenos Aires,II.1.1,1113.79632,TJ,CH4,3.9,kg/TJ,4343.805648,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,9a06128a-3aa4-35f3-9ca4-a9925798b28e -2020,Buenos Aires,II.1.1,1113.79632,TJ,N2O,3.9,kg/TJ,4343.805648,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,9a06128a-3aa4-35f3-9ca4-a9925798b28e -2020,Capital Federal,II.1.1,324.75491999999997,TJ,CO2,74100.0,kg/TJ,24064339.571999997,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,5ee76078-f211-35c1-bcb0-d2b7d0ebfcf2 -2020,Capital Federal,II.1.1,324.75491999999997,TJ,CH4,3.9,kg/TJ,1266.5441879999998,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,fa41c195-e846-3391-b1e6-1a00cd099d27 -2020,Capital Federal,II.1.1,324.75491999999997,TJ,N2O,3.9,kg/TJ,1266.5441879999998,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,fa41c195-e846-3391-b1e6-1a00cd099d27 -2020,Chaco,II.1.1,12.67812,TJ,CO2,74100.0,kg/TJ,939448.692,Gas Oil combustion consumption by public passenger transport,AR-H,SESCO,annual,kg,c1ce5347-a3e4-3fb3-8394-fae7e0ced57d -2020,Chaco,II.1.1,12.67812,TJ,CH4,3.9,kg/TJ,49.444668,Gas Oil combustion consumption by public passenger transport,AR-H,SESCO,annual,kg,4329599a-f4e9-3d8e-8a50-db4875c44a47 -2020,Chaco,II.1.1,12.67812,TJ,N2O,3.9,kg/TJ,49.444668,Gas Oil combustion consumption by public passenger transport,AR-H,SESCO,annual,kg,4329599a-f4e9-3d8e-8a50-db4875c44a47 -2020,Chubut,II.1.1,1.48092,TJ,CO2,74100.0,kg/TJ,109736.172,Gas Oil combustion consumption by public passenger transport,AR-U,SESCO,annual,kg,f8ea51f2-ad32-37c2-8253-69119787893a -2020,Chubut,II.1.1,1.48092,TJ,CH4,3.9,kg/TJ,5.775588,Gas Oil combustion consumption by public passenger transport,AR-U,SESCO,annual,kg,4b542583-ca65-3950-91c8-79583ff5f720 -2020,Chubut,II.1.1,1.48092,TJ,N2O,3.9,kg/TJ,5.775588,Gas Oil combustion consumption by public passenger transport,AR-U,SESCO,annual,kg,4b542583-ca65-3950-91c8-79583ff5f720 -2020,Corrientes,II.1.1,0.9029999999999999,TJ,CO2,74100.0,kg/TJ,66912.29999999999,Gas Oil combustion consumption by public passenger transport,AR-W,SESCO,annual,kg,b90da356-53ad-36b9-b726-07e56223b352 -2020,Corrientes,II.1.1,0.9029999999999999,TJ,CH4,3.9,kg/TJ,3.5216999999999996,Gas Oil combustion consumption by public passenger transport,AR-W,SESCO,annual,kg,a0929582-feb9-3023-b995-8b4467111a2e -2020,Corrientes,II.1.1,0.9029999999999999,TJ,N2O,3.9,kg/TJ,3.5216999999999996,Gas Oil combustion consumption by public passenger transport,AR-W,SESCO,annual,kg,a0929582-feb9-3023-b995-8b4467111a2e -2020,Córdoba,II.1.1,96.94608,TJ,CO2,74100.0,kg/TJ,7183704.528,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,c7bd108f-d628-3b87-9230-081abe02a7fa -2020,Córdoba,II.1.1,96.94608,TJ,CH4,3.9,kg/TJ,378.08971199999996,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,0d699e5e-6b8f-3d7b-9a23-c0dbb5c54bb5 -2020,Córdoba,II.1.1,96.94608,TJ,N2O,3.9,kg/TJ,378.08971199999996,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,0d699e5e-6b8f-3d7b-9a23-c0dbb5c54bb5 -2020,Entre Rios,II.1.1,33.62772,TJ,CO2,74100.0,kg/TJ,2491814.0519999997,Gas Oil combustion consumption by public passenger transport,AR-E,SESCO,annual,kg,71ed92c7-f6c2-3ece-a149-5b13a16a155b -2020,Entre Rios,II.1.1,33.62772,TJ,CH4,3.9,kg/TJ,131.14810799999998,Gas Oil combustion consumption by public passenger transport,AR-E,SESCO,annual,kg,d7edf399-f96f-35b7-b822-c7b61c79b734 -2020,Entre Rios,II.1.1,33.62772,TJ,N2O,3.9,kg/TJ,131.14810799999998,Gas Oil combustion consumption by public passenger transport,AR-E,SESCO,annual,kg,d7edf399-f96f-35b7-b822-c7b61c79b734 -2020,Formosa,II.1.1,0.10836,TJ,CO2,74100.0,kg/TJ,8029.476,Gas Oil combustion consumption by public passenger transport,AR-P,SESCO,annual,kg,c840ef39-5db3-3991-abbd-12d53405e71c -2020,Formosa,II.1.1,0.10836,TJ,CH4,3.9,kg/TJ,0.422604,Gas Oil combustion consumption by public passenger transport,AR-P,SESCO,annual,kg,4bda966b-5207-3f6e-945c-fa4e606d4620 -2020,Formosa,II.1.1,0.10836,TJ,N2O,3.9,kg/TJ,0.422604,Gas Oil combustion consumption by public passenger transport,AR-P,SESCO,annual,kg,4bda966b-5207-3f6e-945c-fa4e606d4620 -2020,La Pampa,II.1.1,0.28896,TJ,CO2,74100.0,kg/TJ,21411.935999999998,Gas Oil combustion consumption by public passenger transport,AR-L,SESCO,annual,kg,5ba0f049-0653-35a9-8d48-7459ba7d4c3d -2020,La Pampa,II.1.1,0.28896,TJ,CH4,3.9,kg/TJ,1.126944,Gas Oil combustion consumption by public passenger transport,AR-L,SESCO,annual,kg,5dc698ce-7188-38fe-8b00-db5ec8b4c379 -2020,La Pampa,II.1.1,0.28896,TJ,N2O,3.9,kg/TJ,1.126944,Gas Oil combustion consumption by public passenger transport,AR-L,SESCO,annual,kg,5dc698ce-7188-38fe-8b00-db5ec8b4c379 -2020,Mendoza,II.1.1,2.56452,TJ,CO2,74100.0,kg/TJ,190030.932,Gas Oil combustion consumption by public passenger transport,AR-M,SESCO,annual,kg,dce0284c-2a11-30fa-bd0d-06abdd8dd1f9 -2020,Mendoza,II.1.1,2.56452,TJ,CH4,3.9,kg/TJ,10.001628,Gas Oil combustion consumption by public passenger transport,AR-M,SESCO,annual,kg,48ef0c12-4f1a-3c7c-8823-54f3202cc1a9 -2020,Mendoza,II.1.1,2.56452,TJ,N2O,3.9,kg/TJ,10.001628,Gas Oil combustion consumption by public passenger transport,AR-M,SESCO,annual,kg,48ef0c12-4f1a-3c7c-8823-54f3202cc1a9 -2020,Misiones,II.1.1,1.76988,TJ,CO2,74100.0,kg/TJ,131148.10799999998,Gas Oil combustion consumption by public passenger transport,AR-N,SESCO,annual,kg,27c84913-bf89-30d4-bba2-9044bda805d2 -2020,Misiones,II.1.1,1.76988,TJ,CH4,3.9,kg/TJ,6.902531999999999,Gas Oil combustion consumption by public passenger transport,AR-N,SESCO,annual,kg,9422ae97-c7b7-3b83-8301-5d8a9d37099b -2020,Misiones,II.1.1,1.76988,TJ,N2O,3.9,kg/TJ,6.902531999999999,Gas Oil combustion consumption by public passenger transport,AR-N,SESCO,annual,kg,9422ae97-c7b7-3b83-8301-5d8a9d37099b -2020,Neuquén,II.1.1,2.2033199999999997,TJ,CO2,74100.0,kg/TJ,163266.012,Gas Oil combustion consumption by public passenger transport,AR-Q,SESCO,annual,kg,96a94bc2-1b35-3abe-b7a0-93cb29ff9928 -2020,Neuquén,II.1.1,2.2033199999999997,TJ,CH4,3.9,kg/TJ,8.592947999999998,Gas Oil combustion consumption by public passenger transport,AR-Q,SESCO,annual,kg,6b31febd-2a9a-3dbe-a7af-d577952056a9 -2020,Neuquén,II.1.1,2.2033199999999997,TJ,N2O,3.9,kg/TJ,8.592947999999998,Gas Oil combustion consumption by public passenger transport,AR-Q,SESCO,annual,kg,6b31febd-2a9a-3dbe-a7af-d577952056a9 -2020,Rio Negro,II.1.1,4.18992,TJ,CO2,74100.0,kg/TJ,310473.072,Gas Oil combustion consumption by public passenger transport,AR-R,SESCO,annual,kg,40122746-4a83-3388-9591-4432edb6646a -2020,Rio Negro,II.1.1,4.18992,TJ,CH4,3.9,kg/TJ,16.340688,Gas Oil combustion consumption by public passenger transport,AR-R,SESCO,annual,kg,67ae295c-5842-3c97-826c-69319f89518e -2020,Rio Negro,II.1.1,4.18992,TJ,N2O,3.9,kg/TJ,16.340688,Gas Oil combustion consumption by public passenger transport,AR-R,SESCO,annual,kg,67ae295c-5842-3c97-826c-69319f89518e -2020,Salta,II.1.1,8.16312,TJ,CO2,74100.0,kg/TJ,604887.1919999999,Gas Oil combustion consumption by public passenger transport,AR-A,SESCO,annual,kg,81296f89-4149-3b13-9ba8-1564e5e896b6 -2020,Salta,II.1.1,8.16312,TJ,CH4,3.9,kg/TJ,31.836167999999997,Gas Oil combustion consumption by public passenger transport,AR-A,SESCO,annual,kg,f2bdcc34-f676-3c93-8fb5-77d3b015db7a -2020,Salta,II.1.1,8.16312,TJ,N2O,3.9,kg/TJ,31.836167999999997,Gas Oil combustion consumption by public passenger transport,AR-A,SESCO,annual,kg,f2bdcc34-f676-3c93-8fb5-77d3b015db7a -2020,San Juan,II.1.1,0.03612,TJ,CO2,74100.0,kg/TJ,2676.4919999999997,Gas Oil combustion consumption by public passenger transport,AR-J,SESCO,annual,kg,f1c36709-d37a-3179-ace9-0637f6c05a1f -2020,San Juan,II.1.1,0.03612,TJ,CH4,3.9,kg/TJ,0.140868,Gas Oil combustion consumption by public passenger transport,AR-J,SESCO,annual,kg,5e76d161-edcd-3406-a470-b0dd11894374 -2020,San Juan,II.1.1,0.03612,TJ,N2O,3.9,kg/TJ,0.140868,Gas Oil combustion consumption by public passenger transport,AR-J,SESCO,annual,kg,5e76d161-edcd-3406-a470-b0dd11894374 -2020,Santa Fe,II.1.1,135.2694,TJ,CO2,74100.0,kg/TJ,10023462.54,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,1444492f-24a0-380a-a63c-f2bb35b8ba57 -2020,Santa Fe,II.1.1,135.2694,TJ,CH4,3.9,kg/TJ,527.55066,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,6fc38ef6-b93e-3a95-b810-8a97f7628cf4 -2020,Santa Fe,II.1.1,135.2694,TJ,N2O,3.9,kg/TJ,527.55066,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,6fc38ef6-b93e-3a95-b810-8a97f7628cf4 -2020,Santiago del Estero,II.1.1,0.07224,TJ,CO2,74100.0,kg/TJ,5352.9839999999995,Gas Oil combustion consumption by public passenger transport,AR-G,SESCO,annual,kg,02b10c80-f015-39cb-aa5e-0fa5fb8fab17 -2020,Santiago del Estero,II.1.1,0.07224,TJ,CH4,3.9,kg/TJ,0.281736,Gas Oil combustion consumption by public passenger transport,AR-G,SESCO,annual,kg,e5567771-8320-33a5-9f80-456ff2ef92f1 -2020,Santiago del Estero,II.1.1,0.07224,TJ,N2O,3.9,kg/TJ,0.281736,Gas Oil combustion consumption by public passenger transport,AR-G,SESCO,annual,kg,e5567771-8320-33a5-9f80-456ff2ef92f1 -2020,Tucuman,II.1.1,114.24756,TJ,CO2,74100.0,kg/TJ,8465744.195999999,Gas Oil combustion consumption by public passenger transport,AR-T,SESCO,annual,kg,94534576-0a83-381a-a4bc-b0df5bf35101 -2020,Tucuman,II.1.1,114.24756,TJ,CH4,3.9,kg/TJ,445.56548399999997,Gas Oil combustion consumption by public passenger transport,AR-T,SESCO,annual,kg,9355f86d-f6f6-3fd5-95c3-6daed44291e1 -2020,Tucuman,II.1.1,114.24756,TJ,N2O,3.9,kg/TJ,445.56548399999997,Gas Oil combustion consumption by public passenger transport,AR-T,SESCO,annual,kg,9355f86d-f6f6-3fd5-95c3-6daed44291e1 -2020,Buenos Aires,II.1.1,414.8382,TJ,CO2,74100.0,kg/TJ,30739510.619999997,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,1ad0f220-3597-3f67-9c83-b71dd91d02e8 -2020,Buenos Aires,II.1.1,414.8382,TJ,CH4,3.9,kg/TJ,1617.86898,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,4d2c8337-1e73-374b-8acd-0f11e183f9e4 -2020,Buenos Aires,II.1.1,414.8382,TJ,N2O,3.9,kg/TJ,1617.86898,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,4d2c8337-1e73-374b-8acd-0f11e183f9e4 -2020,Capital Federal,II.1.1,232.72116,TJ,CO2,74100.0,kg/TJ,17244637.956,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,b4703c48-c7c3-3f65-bd70-71cfd476d0db -2020,Capital Federal,II.1.1,232.72116,TJ,CH4,3.9,kg/TJ,907.612524,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,c0bfe0b7-5599-338b-a285-f1b143b67ac0 -2020,Capital Federal,II.1.1,232.72116,TJ,N2O,3.9,kg/TJ,907.612524,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,c0bfe0b7-5599-338b-a285-f1b143b67ac0 -2020,Chubut,II.1.1,0.03612,TJ,CO2,74100.0,kg/TJ,2676.4919999999997,Gas Oil combustion consumption by public passenger transport,AR-U,SESCO,annual,kg,0018d26a-3f3a-3ed0-a113-24f50a4bca7b -2020,Chubut,II.1.1,0.03612,TJ,CH4,3.9,kg/TJ,0.140868,Gas Oil combustion consumption by public passenger transport,AR-U,SESCO,annual,kg,c935cdd5-ed88-35ce-8d68-c14891c9caad -2020,Chubut,II.1.1,0.03612,TJ,N2O,3.9,kg/TJ,0.140868,Gas Oil combustion consumption by public passenger transport,AR-U,SESCO,annual,kg,c935cdd5-ed88-35ce-8d68-c14891c9caad -2020,Corrientes,II.1.1,0.36119999999999997,TJ,CO2,74100.0,kg/TJ,26764.92,Gas Oil combustion consumption by public passenger transport,AR-W,SESCO,annual,kg,ee69e8ca-aa88-3d23-a14a-edb9b655aa89 -2020,Corrientes,II.1.1,0.36119999999999997,TJ,CH4,3.9,kg/TJ,1.40868,Gas Oil combustion consumption by public passenger transport,AR-W,SESCO,annual,kg,33a05aff-5b9a-302a-825b-f010a9451d19 -2020,Corrientes,II.1.1,0.36119999999999997,TJ,N2O,3.9,kg/TJ,1.40868,Gas Oil combustion consumption by public passenger transport,AR-W,SESCO,annual,kg,33a05aff-5b9a-302a-825b-f010a9451d19 -2020,Córdoba,II.1.1,0.46956,TJ,CO2,74100.0,kg/TJ,34794.396,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,d48b08ac-dbe5-3b5b-98e5-4bfd86f39a25 -2020,Córdoba,II.1.1,0.46956,TJ,CH4,3.9,kg/TJ,1.831284,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,ba9825fb-0d5c-3509-9dea-a95e47bc0463 -2020,Córdoba,II.1.1,0.46956,TJ,N2O,3.9,kg/TJ,1.831284,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,ba9825fb-0d5c-3509-9dea-a95e47bc0463 -2020,Entre Rios,II.1.1,1.9143599999999998,TJ,CO2,74100.0,kg/TJ,141854.076,Gas Oil combustion consumption by public passenger transport,AR-E,SESCO,annual,kg,f6ae5b98-0c58-3284-885a-bd39003c050b -2020,Entre Rios,II.1.1,1.9143599999999998,TJ,CH4,3.9,kg/TJ,7.466003999999999,Gas Oil combustion consumption by public passenger transport,AR-E,SESCO,annual,kg,ec28c9ec-d133-3a4f-9000-cdca22f5ba8e -2020,Entre Rios,II.1.1,1.9143599999999998,TJ,N2O,3.9,kg/TJ,7.466003999999999,Gas Oil combustion consumption by public passenger transport,AR-E,SESCO,annual,kg,ec28c9ec-d133-3a4f-9000-cdca22f5ba8e -2020,La Pampa,II.1.1,0.03612,TJ,CO2,74100.0,kg/TJ,2676.4919999999997,Gas Oil combustion consumption by public passenger transport,AR-L,SESCO,annual,kg,5fa51960-36e1-3a0d-bce5-0dd2a833e98e -2020,La Pampa,II.1.1,0.03612,TJ,CH4,3.9,kg/TJ,0.140868,Gas Oil combustion consumption by public passenger transport,AR-L,SESCO,annual,kg,9bffa227-caae-3d79-9202-c83612263ab2 -2020,La Pampa,II.1.1,0.03612,TJ,N2O,3.9,kg/TJ,0.140868,Gas Oil combustion consumption by public passenger transport,AR-L,SESCO,annual,kg,9bffa227-caae-3d79-9202-c83612263ab2 -2020,Misiones,II.1.1,7.98252,TJ,CO2,74100.0,kg/TJ,591504.732,Gas Oil combustion consumption by public passenger transport,AR-N,SESCO,annual,kg,ddf36c8e-bb57-3c74-9b97-7899194c8e2e -2020,Misiones,II.1.1,7.98252,TJ,CH4,3.9,kg/TJ,31.131828,Gas Oil combustion consumption by public passenger transport,AR-N,SESCO,annual,kg,273bc418-1d5b-3fbe-80b8-0164d6c53398 -2020,Misiones,II.1.1,7.98252,TJ,N2O,3.9,kg/TJ,31.131828,Gas Oil combustion consumption by public passenger transport,AR-N,SESCO,annual,kg,273bc418-1d5b-3fbe-80b8-0164d6c53398 -2020,Neuquén,II.1.1,11.738999999999999,TJ,CO2,74100.0,kg/TJ,869859.8999999999,Gas Oil combustion consumption by public passenger transport,AR-Q,SESCO,annual,kg,0cd58816-a371-3edd-bad4-18b7c1603d71 -2020,Neuquén,II.1.1,11.738999999999999,TJ,CH4,3.9,kg/TJ,45.78209999999999,Gas Oil combustion consumption by public passenger transport,AR-Q,SESCO,annual,kg,c9546000-689b-3c02-be0e-c65d37fe1ce9 -2020,Neuquén,II.1.1,11.738999999999999,TJ,N2O,3.9,kg/TJ,45.78209999999999,Gas Oil combustion consumption by public passenger transport,AR-Q,SESCO,annual,kg,c9546000-689b-3c02-be0e-c65d37fe1ce9 -2020,Rio Negro,II.1.1,26.909399999999998,TJ,CO2,74100.0,kg/TJ,1993986.5399999998,Gas Oil combustion consumption by public passenger transport,AR-R,SESCO,annual,kg,beb33958-10b8-389a-9467-116d4c22e97b -2020,Rio Negro,II.1.1,26.909399999999998,TJ,CH4,3.9,kg/TJ,104.94666,Gas Oil combustion consumption by public passenger transport,AR-R,SESCO,annual,kg,fb97bcd7-55e8-3402-bd4f-5fa497cdecd9 -2020,Rio Negro,II.1.1,26.909399999999998,TJ,N2O,3.9,kg/TJ,104.94666,Gas Oil combustion consumption by public passenger transport,AR-R,SESCO,annual,kg,fb97bcd7-55e8-3402-bd4f-5fa497cdecd9 -2020,Santa Fe,II.1.1,31.027079999999998,TJ,CO2,74100.0,kg/TJ,2299106.628,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,abce6ba7-da1f-37fc-984d-4206c995f8c8 -2020,Santa Fe,II.1.1,31.027079999999998,TJ,CH4,3.9,kg/TJ,121.00561199999999,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,ce7b7ee3-257b-3e2f-8131-bc4f8787ff1c -2020,Santa Fe,II.1.1,31.027079999999998,TJ,N2O,3.9,kg/TJ,121.00561199999999,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,ce7b7ee3-257b-3e2f-8131-bc4f8787ff1c -2020,Santiago del Estero,II.1.1,0.07224,TJ,CO2,74100.0,kg/TJ,5352.9839999999995,Gas Oil combustion consumption by public passenger transport,AR-G,SESCO,annual,kg,02b10c80-f015-39cb-aa5e-0fa5fb8fab17 -2020,Santiago del Estero,II.1.1,0.07224,TJ,CH4,3.9,kg/TJ,0.281736,Gas Oil combustion consumption by public passenger transport,AR-G,SESCO,annual,kg,e5567771-8320-33a5-9f80-456ff2ef92f1 -2020,Santiago del Estero,II.1.1,0.07224,TJ,N2O,3.9,kg/TJ,0.281736,Gas Oil combustion consumption by public passenger transport,AR-G,SESCO,annual,kg,e5567771-8320-33a5-9f80-456ff2ef92f1 -2020,Santa Fe,II.1.1,0.102795,TJ,CO2,73300.0,kg/TJ,7534.8735,Naphtha combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,4e6b7f0b-eb3a-3e67-9d8f-9906a928ee42 -2020,Santa Fe,II.1.1,0.102795,TJ,CH4,0.5,kg/TJ,0.0513975,Naphtha combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,41bde552-8f76-35f0-b6e4-ce0a90f63d87 -2020,Santa Fe,II.1.1,0.102795,TJ,N2O,2.0,kg/TJ,0.20559,Naphtha combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,c44fc14e-5bd9-34e9-8043-44ae588beac7 -2020,Córdoba,II.1.1,0.034265,TJ,CO2,73300.0,kg/TJ,2511.6245,Naphtha combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,2214027b-c809-34d2-81ac-873dd7fdda96 -2020,Córdoba,II.1.1,0.034265,TJ,CH4,0.5,kg/TJ,0.0171325,Naphtha combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,c0a71c69-abea-34d7-807d-e78d311271fe -2020,Córdoba,II.1.1,0.034265,TJ,N2O,2.0,kg/TJ,0.06853,Naphtha combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,7631451b-e6e1-3120-aa47-66564218911e -2020,Buenos Aires,II.5.1,260.13624,TJ,CO2,74100.0,kg/TJ,19276095.384,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,fb0cd7a4-ee4e-343d-9e63-981650a37518 -2020,Buenos Aires,II.5.1,260.13624,TJ,CH4,3.9,kg/TJ,1014.5313359999999,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,28d8e919-99ed-35dd-bfbd-c663848ad99c -2020,Buenos Aires,II.5.1,260.13624,TJ,N2O,3.9,kg/TJ,1014.5313359999999,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,28d8e919-99ed-35dd-bfbd-c663848ad99c -2020,Corrientes,II.5.1,7.98252,TJ,CO2,74100.0,kg/TJ,591504.732,Gas Oil combustion consumption by agriculture machines,AR-W,SESCO,annual,kg,039a3859-ff2b-3768-ad2e-09ab25d52912 -2020,Corrientes,II.5.1,7.98252,TJ,CH4,3.9,kg/TJ,31.131828,Gas Oil combustion consumption by agriculture machines,AR-W,SESCO,annual,kg,5bfff8c8-7236-3d9f-93b8-de29c3b4b7ea -2020,Corrientes,II.5.1,7.98252,TJ,N2O,3.9,kg/TJ,31.131828,Gas Oil combustion consumption by agriculture machines,AR-W,SESCO,annual,kg,5bfff8c8-7236-3d9f-93b8-de29c3b4b7ea -2020,Córdoba,II.5.1,16.86804,TJ,CO2,74100.0,kg/TJ,1249921.764,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,94f9ab9b-53e6-3bde-8515-b20baf889dae -2020,Córdoba,II.5.1,16.86804,TJ,CH4,3.9,kg/TJ,65.78535600000001,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,7dbc93ba-b74b-344a-9826-3aa9124bf47e -2020,Córdoba,II.5.1,16.86804,TJ,N2O,3.9,kg/TJ,65.78535600000001,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,7dbc93ba-b74b-344a-9826-3aa9124bf47e -2020,Entre Rios,II.5.1,78.59711999999999,TJ,CO2,74100.0,kg/TJ,5824046.591999999,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,6fae0e90-d608-3119-9a86-9d54adc5c45e -2020,Entre Rios,II.5.1,78.59711999999999,TJ,CH4,3.9,kg/TJ,306.52876799999996,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,576a2001-0f0e-37b1-9477-5298fa6b6767 -2020,Entre Rios,II.5.1,78.59711999999999,TJ,N2O,3.9,kg/TJ,306.52876799999996,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,576a2001-0f0e-37b1-9477-5298fa6b6767 -2020,Santa Fe,II.5.1,39.62364,TJ,CO2,74100.0,kg/TJ,2936111.724,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,400d7078-4735-304f-b188-56876790c9a0 -2020,Santa Fe,II.5.1,39.62364,TJ,CH4,3.9,kg/TJ,154.532196,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,0edfa362-b029-35fa-9f4c-605e293428e6 -2020,Santa Fe,II.5.1,39.62364,TJ,N2O,3.9,kg/TJ,154.532196,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,0edfa362-b029-35fa-9f4c-605e293428e6 -2020,Tucuman,II.5.1,30.918719999999997,TJ,CO2,74100.0,kg/TJ,2291077.152,Gas Oil combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,9a662a12-76e4-3cfd-bde8-b49385a6fd5c -2020,Tucuman,II.5.1,30.918719999999997,TJ,CH4,3.9,kg/TJ,120.58300799999998,Gas Oil combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,161beaa3-b484-3696-b203-6167839a09aa -2020,Tucuman,II.5.1,30.918719999999997,TJ,N2O,3.9,kg/TJ,120.58300799999998,Gas Oil combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,161beaa3-b484-3696-b203-6167839a09aa -2020,Buenos Aires,II.5.1,11.77512,TJ,CO2,74100.0,kg/TJ,872536.392,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,2aa2803c-ea3d-3271-b373-2dbc9e7b1cd9 -2020,Buenos Aires,II.5.1,11.77512,TJ,CH4,3.9,kg/TJ,45.922968,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,aac77cee-9368-3407-85d0-3ffddfce7de0 -2020,Buenos Aires,II.5.1,11.77512,TJ,N2O,3.9,kg/TJ,45.922968,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,aac77cee-9368-3407-85d0-3ffddfce7de0 -2020,Entre Rios,II.5.1,42.15204,TJ,CO2,74100.0,kg/TJ,3123466.164,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,38f1c27e-d2ac-3339-add1-62256732d356 -2020,Entre Rios,II.5.1,42.15204,TJ,CH4,3.9,kg/TJ,164.392956,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,6489dbff-5cfa-3934-b3e7-a3f7b3fc10c1 -2020,Entre Rios,II.5.1,42.15204,TJ,N2O,3.9,kg/TJ,164.392956,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,6489dbff-5cfa-3934-b3e7-a3f7b3fc10c1 -2020,Santa Fe,II.5.1,3.21468,TJ,CO2,74100.0,kg/TJ,238207.788,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,8e098029-7203-30cf-9afa-91fd9c976a3e -2020,Santa Fe,II.5.1,3.21468,TJ,CH4,3.9,kg/TJ,12.537252,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,cbecbe1b-5469-377c-baf6-9a5fe1d68181 -2020,Santa Fe,II.5.1,3.21468,TJ,N2O,3.9,kg/TJ,12.537252,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,cbecbe1b-5469-377c-baf6-9a5fe1d68181 -2020,Buenos Aires,II.5.1,1.2678049999999998,TJ,CO2,73300.0,kg/TJ,92930.1065,Naphtha combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,03d69f1d-9ac7-3864-8a81-9377ed965787 -2020,Buenos Aires,II.5.1,1.2678049999999998,TJ,CH4,0.5,kg/TJ,0.6339024999999999,Naphtha combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,bcd075c7-4b2e-38d0-a53d-5c0361771ef1 -2020,Buenos Aires,II.5.1,1.2678049999999998,TJ,N2O,2.0,kg/TJ,2.5356099999999997,Naphtha combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,e1ca10bb-ccdf-3fe0-94cc-135aad14e89c -2020,Santa Fe,II.5.1,0.925155,TJ,CO2,73300.0,kg/TJ,67813.8615,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,aa66d526-d202-351c-aa43-0a5d05cddbb8 -2020,Santa Fe,II.5.1,0.925155,TJ,CH4,0.5,kg/TJ,0.4625775,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,c2f11ff7-dc34-344f-b439-ec5e7a85cf87 -2020,Santa Fe,II.5.1,0.925155,TJ,N2O,2.0,kg/TJ,1.85031,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,b87c1a40-3685-344f-957a-b05b93553f4a -2020,Buenos Aires,II.5.1,0.513975,TJ,CO2,73300.0,kg/TJ,37674.3675,Naphtha combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,3d64058a-6445-3ce0-8ea9-0aa3f4d612db -2020,Buenos Aires,II.5.1,0.513975,TJ,CH4,0.5,kg/TJ,0.2569875,Naphtha combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,afd509f5-8614-3b93-8b22-a99bbe603e73 -2020,Buenos Aires,II.5.1,0.513975,TJ,N2O,2.0,kg/TJ,1.02795,Naphtha combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,6b35539c-6161-3845-9921-d1eb415e5ada -2020,Santa Fe,II.5.1,0.20559,TJ,CO2,73300.0,kg/TJ,15069.747,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,bf47bac6-63b0-3f0f-8deb-0243eb747366 -2020,Santa Fe,II.5.1,0.20559,TJ,CH4,0.5,kg/TJ,0.102795,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,039cf7fa-71fe-383e-93fd-2069eedcf7b0 -2020,Santa Fe,II.5.1,0.20559,TJ,N2O,2.0,kg/TJ,0.41118,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,eb837b43-b15d-3258-b130-44d670bca2a0 -2020,Buenos Aires,II.2.1,1.1518,TJ,CO2,69300.0,kg/TJ,79819.73999999999,Motor Gasoline combustion consumption by railway transport,AR-B,SESCO,annual,kg,0c89442c-4b2a-3872-81e2-d425ae55d24c -2020,Buenos Aires,II.2.1,1.1518,TJ,CH4,33.0,kg/TJ,38.0094,Motor Gasoline combustion consumption by railway transport,AR-B,SESCO,annual,kg,babe8889-c68c-3e81-9faa-04cf042fff33 -2020,Buenos Aires,II.2.1,1.1518,TJ,N2O,3.2,kg/TJ,3.68576,Motor Gasoline combustion consumption by railway transport,AR-B,SESCO,annual,kg,eb503a98-0463-37b1-b67a-6fa9ba8a5e52 -2020,Córdoba,II.2.1,14.131699999999999,TJ,CO2,69300.0,kg/TJ,979326.8099999999,Motor Gasoline combustion consumption by railway transport,AR-X,SESCO,annual,kg,751d6e66-1639-3a3b-9dd6-f351db29e513 -2020,Córdoba,II.2.1,14.131699999999999,TJ,CH4,33.0,kg/TJ,466.3461,Motor Gasoline combustion consumption by railway transport,AR-X,SESCO,annual,kg,a4a1a6cc-849b-3859-bbad-cf8429d23c25 -2020,Córdoba,II.2.1,14.131699999999999,TJ,N2O,3.2,kg/TJ,45.22144,Motor Gasoline combustion consumption by railway transport,AR-X,SESCO,annual,kg,35106991-4907-373f-b5fc-2be78bc68ef4 -2020,Buenos Aires,II.2.1,188.9076,TJ,CO2,74100.0,kg/TJ,13998053.16,Gas Oil combustion consumption by railway transport,AR-B,SESCO,annual,kg,b1fa1c56-bde4-39b8-ac3e-da8a16ea655c -2020,Buenos Aires,II.2.1,188.9076,TJ,CH4,3.9,kg/TJ,736.73964,Gas Oil combustion consumption by railway transport,AR-B,SESCO,annual,kg,1336cb9a-9226-3970-9c3e-8dd1216db45e -2020,Buenos Aires,II.2.1,188.9076,TJ,N2O,3.9,kg/TJ,736.73964,Gas Oil combustion consumption by railway transport,AR-B,SESCO,annual,kg,1336cb9a-9226-3970-9c3e-8dd1216db45e -2020,Misiones,II.2.1,1.30032,TJ,CO2,74100.0,kg/TJ,96353.712,Gas Oil combustion consumption by railway transport,AR-N,SESCO,annual,kg,02f87fde-ce24-38f5-966e-c6308862ee2d -2020,Misiones,II.2.1,1.30032,TJ,CH4,3.9,kg/TJ,5.071248,Gas Oil combustion consumption by railway transport,AR-N,SESCO,annual,kg,93d63a17-5dee-3cfd-ac8d-47b9fff06a39 -2020,Misiones,II.2.1,1.30032,TJ,N2O,3.9,kg/TJ,5.071248,Gas Oil combustion consumption by railway transport,AR-N,SESCO,annual,kg,93d63a17-5dee-3cfd-ac8d-47b9fff06a39 -2020,Buenos Aires,II.1.1,7.088,TJ,CO2,69300.0,kg/TJ,491198.4,Motor Gasoline combustion consumption by freight transport,AR-B,SESCO,annual,kg,8e707d1c-a392-3064-b75b-e5c4bad04d45 -2020,Buenos Aires,II.1.1,7.088,TJ,CH4,33.0,kg/TJ,233.904,Motor Gasoline combustion consumption by freight transport,AR-B,SESCO,annual,kg,83109a72-f15b-37e8-841c-c1a25c10a1bb -2020,Buenos Aires,II.1.1,7.088,TJ,N2O,3.2,kg/TJ,22.681600000000003,Motor Gasoline combustion consumption by freight transport,AR-B,SESCO,annual,kg,d92943ab-817a-38f9-8555-6f3785e77711 -2020,Santa Fe,II.1.1,4.7401,TJ,CO2,69300.0,kg/TJ,328488.93,Motor Gasoline combustion consumption by freight transport,AR-S,SESCO,annual,kg,cdcee7ca-84a6-345b-8467-fdf5c8484ec0 -2020,Santa Fe,II.1.1,4.7401,TJ,CH4,33.0,kg/TJ,156.4233,Motor Gasoline combustion consumption by freight transport,AR-S,SESCO,annual,kg,df8985f7-9c79-37fb-beca-468f3ef5dbfd -2020,Santa Fe,II.1.1,4.7401,TJ,N2O,3.2,kg/TJ,15.168320000000001,Motor Gasoline combustion consumption by freight transport,AR-S,SESCO,annual,kg,14881176-4a2b-3181-8d40-172a2bc2b3b2 -2020,Buenos Aires,II.1.1,75.27408,TJ,CO2,74100.0,kg/TJ,5577809.328,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,f9a06005-db9d-349a-9773-f25f900c4f31 -2020,Buenos Aires,II.1.1,75.27408,TJ,CH4,3.9,kg/TJ,293.568912,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,bc849ce7-7356-3b79-a4db-33fd09df11d7 -2020,Buenos Aires,II.1.1,75.27408,TJ,N2O,3.9,kg/TJ,293.568912,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,bc849ce7-7356-3b79-a4db-33fd09df11d7 -2020,Capital Federal,II.1.1,37.2036,TJ,CO2,74100.0,kg/TJ,2756786.7600000002,Gas Oil combustion consumption by freight transport,AR-C,SESCO,annual,kg,647b1478-4fbd-3e8a-9dbc-65941134796b -2020,Capital Federal,II.1.1,37.2036,TJ,CH4,3.9,kg/TJ,145.09404,Gas Oil combustion consumption by freight transport,AR-C,SESCO,annual,kg,1432df7c-8cb8-3269-ae30-044bc2c40e7f -2020,Capital Federal,II.1.1,37.2036,TJ,N2O,3.9,kg/TJ,145.09404,Gas Oil combustion consumption by freight transport,AR-C,SESCO,annual,kg,1432df7c-8cb8-3269-ae30-044bc2c40e7f -2020,Córdoba,II.1.1,26.909399999999998,TJ,CO2,74100.0,kg/TJ,1993986.5399999998,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,db509f9d-8087-33f3-b3fb-c9a04dc75291 -2020,Córdoba,II.1.1,26.909399999999998,TJ,CH4,3.9,kg/TJ,104.94666,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,a0443a2c-6883-3e47-b42e-56dbc1c5b3ae -2020,Córdoba,II.1.1,26.909399999999998,TJ,N2O,3.9,kg/TJ,104.94666,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,a0443a2c-6883-3e47-b42e-56dbc1c5b3ae -2020,Capital Federal,II.1.1,2.4200399999999997,TJ,CO2,74100.0,kg/TJ,179324.96399999998,Gas Oil combustion consumption by freight transport,AR-C,SESCO,annual,kg,933c5de6-ec37-375f-997c-ab0e9f1975c0 -2020,Capital Federal,II.1.1,2.4200399999999997,TJ,CH4,3.9,kg/TJ,9.438156,Gas Oil combustion consumption by freight transport,AR-C,SESCO,annual,kg,638c8236-87da-37f8-b086-09308e5df304 -2020,Capital Federal,II.1.1,2.4200399999999997,TJ,N2O,3.9,kg/TJ,9.438156,Gas Oil combustion consumption by freight transport,AR-C,SESCO,annual,kg,638c8236-87da-37f8-b086-09308e5df304 -2020,Córdoba,II.1.1,0.93912,TJ,CO2,74100.0,kg/TJ,69588.792,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,3dbb8bb0-e53e-372a-ae36-d05239d8ee92 -2020,Córdoba,II.1.1,0.93912,TJ,CH4,3.9,kg/TJ,3.662568,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,86c6cc29-b47e-3cb2-9d98-06d92eec75fa -2020,Córdoba,II.1.1,0.93912,TJ,N2O,3.9,kg/TJ,3.662568,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,86c6cc29-b47e-3cb2-9d98-06d92eec75fa -2020,Buenos Aires,II.1.1,1.1961,TJ,CO2,69300.0,kg/TJ,82889.73,Motor Gasoline combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,62afde42-3063-301e-85f1-4065eb644840 -2020,Buenos Aires,II.1.1,1.1961,TJ,CH4,33.0,kg/TJ,39.4713,Motor Gasoline combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,786ebfd4-c51f-35df-9c5b-e8a871a86484 -2020,Buenos Aires,II.1.1,1.1961,TJ,N2O,3.2,kg/TJ,3.82752,Motor Gasoline combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,19a14e4d-1496-3233-be72-a0d23f54fa09 -2020,Buenos Aires,II.1.1,3339.6551999999997,TJ,CO2,74100.0,kg/TJ,247468450.31999996,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,9146c4c1-3e2e-39d9-a548-169d810a8e2f -2020,Buenos Aires,II.1.1,3339.6551999999997,TJ,CH4,3.9,kg/TJ,13024.655279999999,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,7914a9aa-4b22-3d99-8b3f-8f866780cbca -2020,Buenos Aires,II.1.1,3339.6551999999997,TJ,N2O,3.9,kg/TJ,13024.655279999999,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,7914a9aa-4b22-3d99-8b3f-8f866780cbca -2020,Capital Federal,II.1.1,268.47996,TJ,CO2,74100.0,kg/TJ,19894365.036000002,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,c1cb8f59-ead4-3cfa-891a-7f74226ff227 -2020,Capital Federal,II.1.1,268.47996,TJ,CH4,3.9,kg/TJ,1047.071844,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,76dfb461-a691-3dc2-9052-347cd9d3e985 -2020,Capital Federal,II.1.1,268.47996,TJ,N2O,3.9,kg/TJ,1047.071844,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,76dfb461-a691-3dc2-9052-347cd9d3e985 -2020,Buenos Aires,II.1.1,1078.5070799999999,TJ,CO2,74100.0,kg/TJ,79917374.62799999,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,ffdcb9c5-7ff6-316b-9fae-c20be1c5ff85 -2020,Buenos Aires,II.1.1,1078.5070799999999,TJ,CH4,3.9,kg/TJ,4206.1776119999995,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,c6a51b91-0fac-3208-b107-d90d7431b0eb -2020,Buenos Aires,II.1.1,1078.5070799999999,TJ,N2O,3.9,kg/TJ,4206.1776119999995,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,c6a51b91-0fac-3208-b107-d90d7431b0eb -2020,Capital Federal,II.1.1,70.18115999999999,TJ,CO2,74100.0,kg/TJ,5200423.955999999,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,31655981-978d-305b-b13c-60b095fa20db -2020,Capital Federal,II.1.1,70.18115999999999,TJ,CH4,3.9,kg/TJ,273.70652399999994,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,11c0ba31-8a2b-3634-a493-9a29668cc451 -2020,Capital Federal,II.1.1,70.18115999999999,TJ,N2O,3.9,kg/TJ,273.70652399999994,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,11c0ba31-8a2b-3634-a493-9a29668cc451 -2020,Corrientes,II.1.1,101.89452,TJ,CO2,74100.0,kg/TJ,7550383.932,Gas Oil combustion consumption by public passenger transport,AR-W,SESCO,annual,kg,d3e3858d-c1b4-33dd-9375-21d2e90136b2 -2020,Corrientes,II.1.1,101.89452,TJ,CH4,3.9,kg/TJ,397.388628,Gas Oil combustion consumption by public passenger transport,AR-W,SESCO,annual,kg,93309b64-66c8-3a3c-a4a3-61c78c03b23b -2020,Corrientes,II.1.1,101.89452,TJ,N2O,3.9,kg/TJ,397.388628,Gas Oil combustion consumption by public passenger transport,AR-W,SESCO,annual,kg,93309b64-66c8-3a3c-a4a3-61c78c03b23b -2020,Buenos Aires,II.5.1,2871.37500384,TJ,CO2,74100.0,kg/TJ,212768887.784544,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,38f7cfa7-a199-3db9-ba70-b35cae833510 -2020,Buenos Aires,II.5.1,2871.37500384,TJ,CH4,3.9,kg/TJ,11198.362514976,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,35adc964-5669-342c-a3e8-4fe7b5646350 -2020,Buenos Aires,II.5.1,2871.37500384,TJ,N2O,3.9,kg/TJ,11198.362514976,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,35adc964-5669-342c-a3e8-4fe7b5646350 -2020,Capital Federal,II.5.1,462.5476632,TJ,CO2,74100.0,kg/TJ,34274781.84312,Gas Oil combustion consumption by agriculture machines,AR-C,SESCO,annual,kg,8ebf6c4b-2059-3e3d-9136-91f3cdd704d4 -2020,Capital Federal,II.5.1,462.5476632,TJ,CH4,3.9,kg/TJ,1803.93588648,Gas Oil combustion consumption by agriculture machines,AR-C,SESCO,annual,kg,2d38d78b-0e9d-3d27-8860-6dc4edd38a12 -2020,Capital Federal,II.5.1,462.5476632,TJ,N2O,3.9,kg/TJ,1803.93588648,Gas Oil combustion consumption by agriculture machines,AR-C,SESCO,annual,kg,2d38d78b-0e9d-3d27-8860-6dc4edd38a12 -2020,Chaco,II.5.1,14.139390720000002,TJ,CO2,74100.0,kg/TJ,1047728.8523520001,Gas Oil combustion consumption by agriculture machines,AR-H,SESCO,annual,kg,185767c7-fc82-365e-8d3c-6bff24c42750 -2020,Chaco,II.5.1,14.139390720000002,TJ,CH4,3.9,kg/TJ,55.14362380800001,Gas Oil combustion consumption by agriculture machines,AR-H,SESCO,annual,kg,40e2e82c-15f5-355c-ba92-8e6fd5777efa -2020,Chaco,II.5.1,14.139390720000002,TJ,N2O,3.9,kg/TJ,55.14362380800001,Gas Oil combustion consumption by agriculture machines,AR-H,SESCO,annual,kg,40e2e82c-15f5-355c-ba92-8e6fd5777efa -2020,Corrientes,II.5.1,8.965309079999999,TJ,CO2,74100.0,kg/TJ,664329.4028279999,Gas Oil combustion consumption by agriculture machines,AR-W,SESCO,annual,kg,511fbc99-e4f1-3d7f-bba6-a56a74d5ef77 -2020,Corrientes,II.5.1,8.965309079999999,TJ,CH4,3.9,kg/TJ,34.964705411999994,Gas Oil combustion consumption by agriculture machines,AR-W,SESCO,annual,kg,863e9aa6-933a-3274-a585-00c110af854c -2020,Corrientes,II.5.1,8.965309079999999,TJ,N2O,3.9,kg/TJ,34.964705411999994,Gas Oil combustion consumption by agriculture machines,AR-W,SESCO,annual,kg,863e9aa6-933a-3274-a585-00c110af854c -2020,Córdoba,II.5.1,1140.8600246400001,TJ,CO2,74100.0,kg/TJ,84537727.825824,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,a43a7114-c3bc-3146-8787-de08b87cdbed -2020,Córdoba,II.5.1,1140.8600246400001,TJ,CH4,3.9,kg/TJ,4449.354096096,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,ccc0c955-040a-387e-a351-7a13fd94ae6d -2020,Córdoba,II.5.1,1140.8600246400001,TJ,N2O,3.9,kg/TJ,4449.354096096,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,ccc0c955-040a-387e-a351-7a13fd94ae6d -2020,Entre Rios,II.5.1,664.05478608,TJ,CO2,74100.0,kg/TJ,49206459.648528,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,a1eb88e4-cd42-3d80-bad5-01449d89f449 -2020,Entre Rios,II.5.1,664.05478608,TJ,CH4,3.9,kg/TJ,2589.813665712,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,6933fd66-192b-3fbd-b143-6d01aa5ff234 -2020,Entre Rios,II.5.1,664.05478608,TJ,N2O,3.9,kg/TJ,2589.813665712,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,6933fd66-192b-3fbd-b143-6d01aa5ff234 -2020,Jujuy,II.5.1,22.556109239999998,TJ,CO2,74100.0,kg/TJ,1671407.6946839998,Gas Oil combustion consumption by agriculture machines,AR-Y,SESCO,annual,kg,88b21c9d-d9f2-398f-b743-bc087a88c1ef -2020,Jujuy,II.5.1,22.556109239999998,TJ,CH4,3.9,kg/TJ,87.968826036,Gas Oil combustion consumption by agriculture machines,AR-Y,SESCO,annual,kg,79dcf9ab-04e3-393f-878d-e513e339c443 -2020,Jujuy,II.5.1,22.556109239999998,TJ,N2O,3.9,kg/TJ,87.968826036,Gas Oil combustion consumption by agriculture machines,AR-Y,SESCO,annual,kg,79dcf9ab-04e3-393f-878d-e513e339c443 -2020,La Pampa,II.5.1,187.75064028,TJ,CO2,74100.0,kg/TJ,13912322.444748,Gas Oil combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,7e58628a-9a75-3d3c-9d7e-1d89e585aa86 -2020,La Pampa,II.5.1,187.75064028,TJ,CH4,3.9,kg/TJ,732.227497092,Gas Oil combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,31a330c5-c3e6-3c49-9ece-8997b67ddf29 -2020,La Pampa,II.5.1,187.75064028,TJ,N2O,3.9,kg/TJ,732.227497092,Gas Oil combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,31a330c5-c3e6-3c49-9ece-8997b67ddf29 -2020,Mendoza,II.5.1,1.1418254399999999,TJ,CO2,74100.0,kg/TJ,84609.26510399999,Gas Oil combustion consumption by agriculture machines,AR-M,SESCO,annual,kg,3cf9bab5-7678-397e-bc5b-34354b4846ef -2020,Mendoza,II.5.1,1.1418254399999999,TJ,CH4,3.9,kg/TJ,4.453119215999999,Gas Oil combustion consumption by agriculture machines,AR-M,SESCO,annual,kg,90507691-9a84-37fb-ae14-b13fdf01742d -2020,Mendoza,II.5.1,1.1418254399999999,TJ,N2O,3.9,kg/TJ,4.453119215999999,Gas Oil combustion consumption by agriculture machines,AR-M,SESCO,annual,kg,90507691-9a84-37fb-ae14-b13fdf01742d -2020,Neuquén,II.5.1,68.09808347999999,TJ,CO2,74100.0,kg/TJ,5046067.985867999,Gas Oil combustion consumption by agriculture machines,AR-Q,SESCO,annual,kg,73dc3bdf-de0e-3f30-9665-8e7021811c7f -2020,Neuquén,II.5.1,68.09808347999999,TJ,CH4,3.9,kg/TJ,265.58252557199995,Gas Oil combustion consumption by agriculture machines,AR-Q,SESCO,annual,kg,70be69eb-64c9-3886-88d2-3ef64a54d020 -2020,Neuquén,II.5.1,68.09808347999999,TJ,N2O,3.9,kg/TJ,265.58252557199995,Gas Oil combustion consumption by agriculture machines,AR-Q,SESCO,annual,kg,70be69eb-64c9-3886-88d2-3ef64a54d020 -2020,Rio Negro,II.5.1,124.15639571999999,TJ,CO2,74100.0,kg/TJ,9199988.922852,Gas Oil combustion consumption by agriculture machines,AR-R,SESCO,annual,kg,34c1d195-7eda-3368-a4af-a7631f6995e3 -2020,Rio Negro,II.5.1,124.15639571999999,TJ,CH4,3.9,kg/TJ,484.20994330799994,Gas Oil combustion consumption by agriculture machines,AR-R,SESCO,annual,kg,2224bee8-f67d-32cc-807e-f4a370510170 -2020,Rio Negro,II.5.1,124.15639571999999,TJ,N2O,3.9,kg/TJ,484.20994330799994,Gas Oil combustion consumption by agriculture machines,AR-R,SESCO,annual,kg,2224bee8-f67d-32cc-807e-f4a370510170 -2020,San Juan,II.5.1,1.2848967599999999,TJ,CO2,74100.0,kg/TJ,95210.84991599999,Gas Oil combustion consumption by agriculture machines,AR-J,SESCO,annual,kg,682405b3-d1ff-3a2b-b325-7e5c30537be3 -2020,San Juan,II.5.1,1.2848967599999999,TJ,CH4,3.9,kg/TJ,5.011097363999999,Gas Oil combustion consumption by agriculture machines,AR-J,SESCO,annual,kg,9158bc1e-cb81-3c46-a2e6-f4ff1508c11d -2020,San Juan,II.5.1,1.2848967599999999,TJ,N2O,3.9,kg/TJ,5.011097363999999,Gas Oil combustion consumption by agriculture machines,AR-J,SESCO,annual,kg,9158bc1e-cb81-3c46-a2e6-f4ff1508c11d -2020,San Luis,II.5.1,25.740701279999996,TJ,CO2,74100.0,kg/TJ,1907385.9648479996,Gas Oil combustion consumption by agriculture machines,AR-D,SESCO,annual,kg,ad9c693f-9efb-3add-a4fc-76f909b3cc06 -2020,San Luis,II.5.1,25.740701279999996,TJ,CH4,3.9,kg/TJ,100.38873499199998,Gas Oil combustion consumption by agriculture machines,AR-D,SESCO,annual,kg,8a76678f-0f9d-3181-931e-d16bbe221871 -2020,San Luis,II.5.1,25.740701279999996,TJ,N2O,3.9,kg/TJ,100.38873499199998,Gas Oil combustion consumption by agriculture machines,AR-D,SESCO,annual,kg,8a76678f-0f9d-3181-931e-d16bbe221871 -2020,Santa Fe,II.5.1,2519.1887137199997,TJ,CO2,74100.0,kg/TJ,186671883.68665197,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,c605e021-2bd2-3f6e-9c34-df5633a884b7 -2020,Santa Fe,II.5.1,2519.1887137199997,TJ,CH4,3.9,kg/TJ,9824.835983508,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,d4c58b14-9671-3598-8ab4-e6b3b9197365 -2020,Santa Fe,II.5.1,2519.1887137199997,TJ,N2O,3.9,kg/TJ,9824.835983508,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,d4c58b14-9671-3598-8ab4-e6b3b9197365 -2020,Santiago del Estero,II.5.1,353.4291432,TJ,CO2,74100.0,kg/TJ,26189099.51112,Gas Oil combustion consumption by agriculture machines,AR-G,SESCO,annual,kg,0306b232-2751-3c79-8972-09b2f65844e8 -2020,Santiago del Estero,II.5.1,353.4291432,TJ,CH4,3.9,kg/TJ,1378.37365848,Gas Oil combustion consumption by agriculture machines,AR-G,SESCO,annual,kg,03275f94-0b5d-3fc3-8c61-87f86a8b809d -2020,Santiago del Estero,II.5.1,353.4291432,TJ,N2O,3.9,kg/TJ,1378.37365848,Gas Oil combustion consumption by agriculture machines,AR-G,SESCO,annual,kg,03275f94-0b5d-3fc3-8c61-87f86a8b809d -2020,Tucuman,II.5.1,94.76909147999999,TJ,CO2,74100.0,kg/TJ,7022389.678667999,Gas Oil combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,387e22fc-bd43-381a-9ca4-4e3eb035833f -2020,Tucuman,II.5.1,94.76909147999999,TJ,CH4,3.9,kg/TJ,369.59945677199994,Gas Oil combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,5c05f25e-dcda-3a95-8f6c-f6f06be7d7bd -2020,Tucuman,II.5.1,94.76909147999999,TJ,N2O,3.9,kg/TJ,369.59945677199994,Gas Oil combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,5c05f25e-dcda-3a95-8f6c-f6f06be7d7bd -2020,Buenos Aires,II.5.1,250.87879235999998,TJ,CO2,74100.0,kg/TJ,18590118.513876,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,703bb5fd-c012-372c-9d9e-8e0abfda950f -2020,Buenos Aires,II.5.1,250.87879235999998,TJ,CH4,3.9,kg/TJ,978.4272902039999,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,335771a2-27ac-3d8e-b7ea-1ae824567291 -2020,Buenos Aires,II.5.1,250.87879235999998,TJ,N2O,3.9,kg/TJ,978.4272902039999,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,335771a2-27ac-3d8e-b7ea-1ae824567291 -2020,Capital Federal,II.5.1,45.21400464,TJ,CO2,74100.0,kg/TJ,3350357.743824,Gas Oil combustion consumption by agriculture machines,AR-C,SESCO,annual,kg,78d6f2ee-02f3-32be-9959-d35444ba7380 -2020,Capital Federal,II.5.1,45.21400464,TJ,CH4,3.9,kg/TJ,176.33461809599999,Gas Oil combustion consumption by agriculture machines,AR-C,SESCO,annual,kg,6f209643-3e55-3874-b58e-95fe9e4b51d9 -2020,Capital Federal,II.5.1,45.21400464,TJ,N2O,3.9,kg/TJ,176.33461809599999,Gas Oil combustion consumption by agriculture machines,AR-C,SESCO,annual,kg,6f209643-3e55-3874-b58e-95fe9e4b51d9 -2020,Chaco,II.5.1,3.9029466,TJ,CO2,74100.0,kg/TJ,289208.34306,Gas Oil combustion consumption by agriculture machines,AR-H,SESCO,annual,kg,fa8350a2-cd7e-3956-8420-ed9ab7fbc108 -2020,Chaco,II.5.1,3.9029466,TJ,CH4,3.9,kg/TJ,15.22149174,Gas Oil combustion consumption by agriculture machines,AR-H,SESCO,annual,kg,a7267938-6b27-3b72-9b8a-023548f3e7ea -2020,Chaco,II.5.1,3.9029466,TJ,N2O,3.9,kg/TJ,15.22149174,Gas Oil combustion consumption by agriculture machines,AR-H,SESCO,annual,kg,a7267938-6b27-3b72-9b8a-023548f3e7ea -2020,Corrientes,II.5.1,0.17948028,TJ,CO2,74100.0,kg/TJ,13299.488748,Gas Oil combustion consumption by agriculture machines,AR-W,SESCO,annual,kg,ea3f1296-f410-374d-88e3-a82e18fb87a0 -2020,Corrientes,II.5.1,0.17948028,TJ,CH4,3.9,kg/TJ,0.6999730919999999,Gas Oil combustion consumption by agriculture machines,AR-W,SESCO,annual,kg,20f7e374-e17d-36ab-9110-ad1051a56635 -2020,Corrientes,II.5.1,0.17948028,TJ,N2O,3.9,kg/TJ,0.6999730919999999,Gas Oil combustion consumption by agriculture machines,AR-W,SESCO,annual,kg,20f7e374-e17d-36ab-9110-ad1051a56635 -2020,Córdoba,II.5.1,89.39010108,TJ,CO2,74100.0,kg/TJ,6623806.4900279995,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,0d5df6a2-2084-3fcf-ae68-5c0f28ceb969 -2020,Córdoba,II.5.1,89.39010108,TJ,CH4,3.9,kg/TJ,348.621394212,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,1a2992dd-17b9-3304-94cb-6a717b081c84 -2020,Córdoba,II.5.1,89.39010108,TJ,N2O,3.9,kg/TJ,348.621394212,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,1a2992dd-17b9-3304-94cb-6a717b081c84 -2020,Entre Rios,II.5.1,114.33923256,TJ,CO2,74100.0,kg/TJ,8472537.132696,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,1a859b8e-025d-3b1c-9228-63eb6867f10c -2020,Entre Rios,II.5.1,114.33923256,TJ,CH4,3.9,kg/TJ,445.923006984,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,be91846c-eb13-3e1e-93af-0e1fcaf83a3b -2020,Entre Rios,II.5.1,114.33923256,TJ,N2O,3.9,kg/TJ,445.923006984,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,be91846c-eb13-3e1e-93af-0e1fcaf83a3b -2020,Jujuy,II.5.1,49.900574639999995,TJ,CO2,74100.0,kg/TJ,3697632.580824,Gas Oil combustion consumption by agriculture machines,AR-Y,SESCO,annual,kg,3b73bd65-12c6-316c-8617-e4043ddaabeb -2020,Jujuy,II.5.1,49.900574639999995,TJ,CH4,3.9,kg/TJ,194.61224109599996,Gas Oil combustion consumption by agriculture machines,AR-Y,SESCO,annual,kg,ee244a97-0327-3ffb-b2f4-8ca0ea765cd4 -2020,Jujuy,II.5.1,49.900574639999995,TJ,N2O,3.9,kg/TJ,194.61224109599996,Gas Oil combustion consumption by agriculture machines,AR-Y,SESCO,annual,kg,ee244a97-0327-3ffb-b2f4-8ca0ea765cd4 -2020,La Pampa,II.5.1,10.93800288,TJ,CO2,74100.0,kg/TJ,810506.0134080001,Gas Oil combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,c068fa16-075c-350d-943d-848485c30da9 -2020,La Pampa,II.5.1,10.93800288,TJ,CH4,3.9,kg/TJ,42.658211232,Gas Oil combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,17e6aef7-d302-3cb2-86d3-51543561fe50 -2020,La Pampa,II.5.1,10.93800288,TJ,N2O,3.9,kg/TJ,42.658211232,Gas Oil combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,17e6aef7-d302-3cb2-86d3-51543561fe50 -2020,Mendoza,II.5.1,0.25291223999999995,TJ,CO2,74100.0,kg/TJ,18740.796983999997,Gas Oil combustion consumption by agriculture machines,AR-M,SESCO,annual,kg,bf8b781e-5fa4-330e-84af-2bc91fabd2fe -2020,Mendoza,II.5.1,0.25291223999999995,TJ,CH4,3.9,kg/TJ,0.9863577359999998,Gas Oil combustion consumption by agriculture machines,AR-M,SESCO,annual,kg,659838e6-5880-3767-a78d-5201da357a6b -2020,Mendoza,II.5.1,0.25291223999999995,TJ,N2O,3.9,kg/TJ,0.9863577359999998,Gas Oil combustion consumption by agriculture machines,AR-M,SESCO,annual,kg,659838e6-5880-3767-a78d-5201da357a6b -2020,Neuquén,II.5.1,34.22796216,TJ,CO2,74100.0,kg/TJ,2536291.996056,Gas Oil combustion consumption by agriculture machines,AR-Q,SESCO,annual,kg,deed7f5a-158f-3b03-8fb5-3408279f5f4d -2020,Neuquén,II.5.1,34.22796216,TJ,CH4,3.9,kg/TJ,133.489052424,Gas Oil combustion consumption by agriculture machines,AR-Q,SESCO,annual,kg,329733a2-6bef-3819-979e-2f85ac6b0141 -2020,Neuquén,II.5.1,34.22796216,TJ,N2O,3.9,kg/TJ,133.489052424,Gas Oil combustion consumption by agriculture machines,AR-Q,SESCO,annual,kg,329733a2-6bef-3819-979e-2f85ac6b0141 -2020,Rio Negro,II.5.1,48.73819692000001,TJ,CO2,74100.0,kg/TJ,3611500.3917720006,Gas Oil combustion consumption by agriculture machines,AR-R,SESCO,annual,kg,83617644-1bfa-3527-858d-958844bbc4dc -2020,Rio Negro,II.5.1,48.73819692000001,TJ,CH4,3.9,kg/TJ,190.07896798800002,Gas Oil combustion consumption by agriculture machines,AR-R,SESCO,annual,kg,9dac3798-06f2-3812-8d56-03bdfd5504f5 -2020,Rio Negro,II.5.1,48.73819692000001,TJ,N2O,3.9,kg/TJ,190.07896798800002,Gas Oil combustion consumption by agriculture machines,AR-R,SESCO,annual,kg,9dac3798-06f2-3812-8d56-03bdfd5504f5 -2020,San Luis,II.5.1,13.816983599999997,TJ,CO2,74100.0,kg/TJ,1023838.4847599998,Gas Oil combustion consumption by agriculture machines,AR-D,SESCO,annual,kg,8b18620f-c05b-3df4-a781-dcde5bafe21b -2020,San Luis,II.5.1,13.816983599999997,TJ,CH4,3.9,kg/TJ,53.886236039999986,Gas Oil combustion consumption by agriculture machines,AR-D,SESCO,annual,kg,d50e9329-3383-3d0e-8b38-14f4e43fb232 -2020,San Luis,II.5.1,13.816983599999997,TJ,N2O,3.9,kg/TJ,53.886236039999986,Gas Oil combustion consumption by agriculture machines,AR-D,SESCO,annual,kg,d50e9329-3383-3d0e-8b38-14f4e43fb232 -2020,Santa Fe,II.5.1,179.15259936,TJ,CO2,74100.0,kg/TJ,13275207.612576,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,e3db83d5-ec36-35c5-8d1e-0e0573c7a8ec -2020,Santa Fe,II.5.1,179.15259936,TJ,CH4,3.9,kg/TJ,698.6951375040001,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,5ffc2eb2-fa5c-3bdb-a5ba-4e15ca791729 -2020,Santa Fe,II.5.1,179.15259936,TJ,N2O,3.9,kg/TJ,698.6951375040001,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,5ffc2eb2-fa5c-3bdb-a5ba-4e15ca791729 -2020,Santiago del Estero,II.5.1,20.880538559999998,TJ,CO2,74100.0,kg/TJ,1547247.9072959998,Gas Oil combustion consumption by agriculture machines,AR-G,SESCO,annual,kg,2aa3bbeb-f767-333d-aed5-a43002a703a9 -2020,Santiago del Estero,II.5.1,20.880538559999998,TJ,CH4,3.9,kg/TJ,81.43410038399999,Gas Oil combustion consumption by agriculture machines,AR-G,SESCO,annual,kg,7b0e1d3d-d0af-33e1-a423-aa9693392123 -2020,Santiago del Estero,II.5.1,20.880538559999998,TJ,N2O,3.9,kg/TJ,81.43410038399999,Gas Oil combustion consumption by agriculture machines,AR-G,SESCO,annual,kg,7b0e1d3d-d0af-33e1-a423-aa9693392123 -2020,Tucuman,II.5.1,20.29481664,TJ,CO2,74100.0,kg/TJ,1503845.9130240001,Gas Oil combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,034389c9-3e45-3576-ae8e-d4e76f3276f3 -2020,Tucuman,II.5.1,20.29481664,TJ,CH4,3.9,kg/TJ,79.149784896,Gas Oil combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,9c0b4fd1-e864-3857-85ab-0effd5faf5e1 -2020,Tucuman,II.5.1,20.29481664,TJ,N2O,3.9,kg/TJ,79.149784896,Gas Oil combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,9c0b4fd1-e864-3857-85ab-0effd5faf5e1 -2020,Buenos Aires,II.5.1,124.058248545,TJ,CO2,73300.0,kg/TJ,9093469.6183485,Naphtha combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,72d360c0-9f15-3930-bf62-7e36ce92acdf -2020,Buenos Aires,II.5.1,124.058248545,TJ,CH4,0.5,kg/TJ,62.0291242725,Naphtha combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,847f5865-1691-3f26-9afd-129bd8dcd5b1 -2020,Buenos Aires,II.5.1,124.058248545,TJ,N2O,2.0,kg/TJ,248.11649709,Naphtha combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,478c383e-b54b-3a12-8a8f-6a99f508c723 -2020,Capital Federal,II.5.1,26.051782295,TJ,CO2,73300.0,kg/TJ,1909595.6422235,Naphtha combustion consumption by agriculture machines,AR-C,SESCO,annual,kg,56cbccc9-75a7-322f-9bd4-56b54155433b -2020,Capital Federal,II.5.1,26.051782295,TJ,CH4,0.5,kg/TJ,13.0258911475,Naphtha combustion consumption by agriculture machines,AR-C,SESCO,annual,kg,2d38c874-39cc-3798-9329-aad13d59e593 -2020,Capital Federal,II.5.1,26.051782295,TJ,N2O,2.0,kg/TJ,52.10356459,Naphtha combustion consumption by agriculture machines,AR-C,SESCO,annual,kg,10251996-6591-33e0-9f8a-bb88de5f26f5 -2020,Chaco,II.5.1,3.046741005,TJ,CO2,73300.0,kg/TJ,223326.1156665,Naphtha combustion consumption by agriculture machines,AR-H,SESCO,annual,kg,3cf709a4-cdf9-36ba-974b-e24846cb4b27 -2020,Chaco,II.5.1,3.046741005,TJ,CH4,0.5,kg/TJ,1.5233705025,Naphtha combustion consumption by agriculture machines,AR-H,SESCO,annual,kg,15ccdb0d-4387-3ed0-b7df-eadc080ee4bd -2020,Chaco,II.5.1,3.046741005,TJ,N2O,2.0,kg/TJ,6.09348201,Naphtha combustion consumption by agriculture machines,AR-H,SESCO,annual,kg,c372c06b-18bb-3af1-b5d6-33c72856d4be -2020,Córdoba,II.5.1,9.790949629999998,TJ,CO2,73300.0,kg/TJ,717676.6078789999,Naphtha combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,c8b1bff1-3682-3cc4-9280-42c5ef9d4986 -2020,Córdoba,II.5.1,9.790949629999998,TJ,CH4,0.5,kg/TJ,4.895474814999999,Naphtha combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,a79d075a-9ef3-3fcf-9fc0-91a4436fbe04 -2020,Córdoba,II.5.1,9.790949629999998,TJ,N2O,2.0,kg/TJ,19.581899259999997,Naphtha combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,6dda8425-fd39-3b80-a61b-91608a70cbcf -2020,Rio Negro,II.5.1,15.463246259999998,TJ,CO2,73300.0,kg/TJ,1133455.950858,Naphtha combustion consumption by agriculture machines,AR-R,SESCO,annual,kg,b45bf688-2f3b-3ccf-bace-b3c23562caba -2020,Rio Negro,II.5.1,15.463246259999998,TJ,CH4,0.5,kg/TJ,7.731623129999999,Naphtha combustion consumption by agriculture machines,AR-R,SESCO,annual,kg,6c2826c4-0554-34f1-9fd3-f366bc6e6f5a -2020,Rio Negro,II.5.1,15.463246259999998,TJ,N2O,2.0,kg/TJ,30.926492519999996,Naphtha combustion consumption by agriculture machines,AR-R,SESCO,annual,kg,2344e940-50a0-3a03-b5c6-2d6a9eac7b7a -2020,Santa Fe,II.5.1,194.80718141499997,TJ,CO2,73300.0,kg/TJ,14279366.397719499,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,ba99a243-4a81-3948-b4ee-9604f89a1dae -2020,Santa Fe,II.5.1,194.80718141499997,TJ,CH4,0.5,kg/TJ,97.40359070749999,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,0043d37b-97dd-36fe-9efb-581ec42d0cdf -2020,Santa Fe,II.5.1,194.80718141499997,TJ,N2O,2.0,kg/TJ,389.61436282999995,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,9800cc24-6639-3afd-a6b1-fa4865023a79 -2020,Buenos Aires,II.5.1,10.67608311,TJ,CO2,73300.0,kg/TJ,782556.8919630001,Naphtha combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,c692543c-9792-35d1-9e5b-4b2bd6725076 -2020,Buenos Aires,II.5.1,10.67608311,TJ,CH4,0.5,kg/TJ,5.338041555,Naphtha combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,283e0e90-72aa-3f87-b886-55d661ed5f41 -2020,Buenos Aires,II.5.1,10.67608311,TJ,N2O,2.0,kg/TJ,21.35216622,Naphtha combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,19ea39e9-1aa2-37a0-ac9e-76a3b0cad817 -2020,Capital Federal,II.5.1,7.34483981,TJ,CO2,73300.0,kg/TJ,538376.758073,Naphtha combustion consumption by agriculture machines,AR-C,SESCO,annual,kg,5cce19b5-efdd-3d13-ac19-f0559551edda -2020,Capital Federal,II.5.1,7.34483981,TJ,CH4,0.5,kg/TJ,3.672419905,Naphtha combustion consumption by agriculture machines,AR-C,SESCO,annual,kg,eb64a7a2-4b33-3a21-9f7d-0e748b9e33e8 -2020,Capital Federal,II.5.1,7.34483981,TJ,N2O,2.0,kg/TJ,14.68967962,Naphtha combustion consumption by agriculture machines,AR-C,SESCO,annual,kg,cc1c8b42-663d-3b0b-a5f6-233b03eec8d5 -2020,Córdoba,II.5.1,1.05666407,TJ,CO2,73300.0,kg/TJ,77453.476331,Naphtha combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,10e357f3-1184-38d9-b96e-4fa098e6d76a -2020,Córdoba,II.5.1,1.05666407,TJ,CH4,0.5,kg/TJ,0.528332035,Naphtha combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,7090d31a-75f8-3e0f-8233-e80c4070b3dc -2020,Córdoba,II.5.1,1.05666407,TJ,N2O,2.0,kg/TJ,2.11332814,Naphtha combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,19501897-961b-3495-afae-2fd8f4ad0a97 -2020,Rio Negro,II.5.1,3.0855289850000003,TJ,CO2,73300.0,kg/TJ,226169.2746005,Naphtha combustion consumption by agriculture machines,AR-R,SESCO,annual,kg,f2872f7e-6d05-3109-9dd2-1e76badf3853 -2020,Rio Negro,II.5.1,3.0855289850000003,TJ,CH4,0.5,kg/TJ,1.5427644925000001,Naphtha combustion consumption by agriculture machines,AR-R,SESCO,annual,kg,fb26f522-4c98-39e5-a350-4308a3b63c5c -2020,Rio Negro,II.5.1,3.0855289850000003,TJ,N2O,2.0,kg/TJ,6.171057970000001,Naphtha combustion consumption by agriculture machines,AR-R,SESCO,annual,kg,14bf4b06-473f-3554-bf9f-8acdc7e4782c -2020,Santa Fe,II.5.1,17.16971179,TJ,CO2,73300.0,kg/TJ,1258539.874207,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,608fd3b5-9bd2-3a60-beb0-a0389993ea52 -2020,Santa Fe,II.5.1,17.16971179,TJ,CH4,0.5,kg/TJ,8.584855895,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,a35e52f7-dc41-350c-baa6-15fdadbd527b -2020,Santa Fe,II.5.1,17.16971179,TJ,N2O,2.0,kg/TJ,34.33942358,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,381fe267-4346-3823-b325-6a25b5ffa031 -2020,Buenos Aires,II.5.1,9292.773,TJ,CO2,74100.0,kg/TJ,688594479.3,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,63eb9345-76a0-3d69-896d-7012eacc8fe0 -2020,Buenos Aires,II.5.1,9292.773,TJ,CH4,3.9,kg/TJ,36241.814699999995,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,bece1ecc-fb9f-3d8b-b1a0-f71e9f2bb65a -2020,Buenos Aires,II.5.1,9292.773,TJ,N2O,3.9,kg/TJ,36241.814699999995,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,bece1ecc-fb9f-3d8b-b1a0-f71e9f2bb65a -2020,Capital Federal,II.5.1,35.79492,TJ,CO2,74100.0,kg/TJ,2652403.5719999997,Gas Oil combustion consumption by agriculture machines,AR-C,SESCO,annual,kg,c57abf0a-4949-32d9-ad88-05799bad5068 -2020,Capital Federal,II.5.1,35.79492,TJ,CH4,3.9,kg/TJ,139.60018799999997,Gas Oil combustion consumption by agriculture machines,AR-C,SESCO,annual,kg,e2caec47-f001-35dd-a79b-56333bd7b5b6 -2020,Capital Federal,II.5.1,35.79492,TJ,N2O,3.9,kg/TJ,139.60018799999997,Gas Oil combustion consumption by agriculture machines,AR-C,SESCO,annual,kg,e2caec47-f001-35dd-a79b-56333bd7b5b6 -2020,Catamarca,II.5.1,149.13948,TJ,CO2,74100.0,kg/TJ,11051235.467999998,Gas Oil combustion consumption by agriculture machines,AR-K,SESCO,annual,kg,8dcf0c47-78b7-3737-905a-0d01642c6381 -2020,Catamarca,II.5.1,149.13948,TJ,CH4,3.9,kg/TJ,581.643972,Gas Oil combustion consumption by agriculture machines,AR-K,SESCO,annual,kg,03fd7440-c5e5-3c89-bf92-33155e1a3015 -2020,Catamarca,II.5.1,149.13948,TJ,N2O,3.9,kg/TJ,581.643972,Gas Oil combustion consumption by agriculture machines,AR-K,SESCO,annual,kg,03fd7440-c5e5-3c89-bf92-33155e1a3015 -2020,Chaco,II.5.1,954.32652,TJ,CO2,74100.0,kg/TJ,70715595.132,Gas Oil combustion consumption by agriculture machines,AR-H,SESCO,annual,kg,a8ce750e-50c7-3080-955a-c58377d41d86 -2020,Chaco,II.5.1,954.32652,TJ,CH4,3.9,kg/TJ,3721.873428,Gas Oil combustion consumption by agriculture machines,AR-H,SESCO,annual,kg,1f526ee9-caa7-3329-883f-dab7193f5117 -2020,Chaco,II.5.1,954.32652,TJ,N2O,3.9,kg/TJ,3721.873428,Gas Oil combustion consumption by agriculture machines,AR-H,SESCO,annual,kg,1f526ee9-caa7-3329-883f-dab7193f5117 -2020,Corrientes,II.5.1,521.60892,TJ,CO2,74100.0,kg/TJ,38651220.972,Gas Oil combustion consumption by agriculture machines,AR-W,SESCO,annual,kg,12c68bf5-139e-3cca-a028-68330950465a -2020,Corrientes,II.5.1,521.60892,TJ,CH4,3.9,kg/TJ,2034.274788,Gas Oil combustion consumption by agriculture machines,AR-W,SESCO,annual,kg,accdfa4f-0bf3-330e-a226-58de9a3f040b -2020,Corrientes,II.5.1,521.60892,TJ,N2O,3.9,kg/TJ,2034.274788,Gas Oil combustion consumption by agriculture machines,AR-W,SESCO,annual,kg,accdfa4f-0bf3-330e-a226-58de9a3f040b -2020,Córdoba,II.5.1,6933.99252,TJ,CO2,74100.0,kg/TJ,513808845.732,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,99c854ae-1203-3ac0-a209-5b0e48817cc1 -2020,Córdoba,II.5.1,6933.99252,TJ,CH4,3.9,kg/TJ,27042.570828,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,6926366d-055a-3089-815f-3cf0ab8c57cc -2020,Córdoba,II.5.1,6933.99252,TJ,N2O,3.9,kg/TJ,27042.570828,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,6926366d-055a-3089-815f-3cf0ab8c57cc -2020,Entre Rios,II.5.1,1840.3501199999998,TJ,CO2,74100.0,kg/TJ,136369943.892,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,d179b54c-f470-3af2-91b5-87b051716188 -2020,Entre Rios,II.5.1,1840.3501199999998,TJ,CH4,3.9,kg/TJ,7177.365467999999,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,a5423493-8c71-3cc1-9937-a65996ec2232 -2020,Entre Rios,II.5.1,1840.3501199999998,TJ,N2O,3.9,kg/TJ,7177.365467999999,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,a5423493-8c71-3cc1-9937-a65996ec2232 -2020,Formosa,II.5.1,232.90176,TJ,CO2,74100.0,kg/TJ,17258020.416,Gas Oil combustion consumption by agriculture machines,AR-P,SESCO,annual,kg,dc500619-c7a6-350a-819b-f098c11fee64 -2020,Formosa,II.5.1,232.90176,TJ,CH4,3.9,kg/TJ,908.316864,Gas Oil combustion consumption by agriculture machines,AR-P,SESCO,annual,kg,79be7970-4e48-3eca-89b2-7ac11d963c8a -2020,Formosa,II.5.1,232.90176,TJ,N2O,3.9,kg/TJ,908.316864,Gas Oil combustion consumption by agriculture machines,AR-P,SESCO,annual,kg,79be7970-4e48-3eca-89b2-7ac11d963c8a -2020,Jujuy,II.5.1,961.0087199999999,TJ,CO2,74100.0,kg/TJ,71210746.152,Gas Oil combustion consumption by agriculture machines,AR-Y,SESCO,annual,kg,06c4c92e-e6df-3bd2-8923-7a4e053cc2fe -2020,Jujuy,II.5.1,961.0087199999999,TJ,CH4,3.9,kg/TJ,3747.9340079999997,Gas Oil combustion consumption by agriculture machines,AR-Y,SESCO,annual,kg,9d0a17f5-d49e-3bd6-bc98-9f8172a4ab34 -2020,Jujuy,II.5.1,961.0087199999999,TJ,N2O,3.9,kg/TJ,3747.9340079999997,Gas Oil combustion consumption by agriculture machines,AR-Y,SESCO,annual,kg,9d0a17f5-d49e-3bd6-bc98-9f8172a4ab34 -2020,La Pampa,II.5.1,1478.71668,TJ,CO2,74100.0,kg/TJ,109572905.988,Gas Oil combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,6d6af92b-aa9a-3ef4-96f4-ee4078fe777b -2020,La Pampa,II.5.1,1478.71668,TJ,CH4,3.9,kg/TJ,5766.995052,Gas Oil combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,be2659f9-7fbc-3677-b4e6-095418e43bac -2020,La Pampa,II.5.1,1478.71668,TJ,N2O,3.9,kg/TJ,5766.995052,Gas Oil combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,be2659f9-7fbc-3677-b4e6-095418e43bac -2020,La Rioja,II.5.1,88.34952,TJ,CO2,74100.0,kg/TJ,6546699.432,Gas Oil combustion consumption by agriculture machines,AR-F,SESCO,annual,kg,a64454f2-6e91-39dd-9d16-4a500eba954e -2020,La Rioja,II.5.1,88.34952,TJ,CH4,3.9,kg/TJ,344.563128,Gas Oil combustion consumption by agriculture machines,AR-F,SESCO,annual,kg,dbb5f89b-89b4-3615-afa3-6e586a0f0fee -2020,La Rioja,II.5.1,88.34952,TJ,N2O,3.9,kg/TJ,344.563128,Gas Oil combustion consumption by agriculture machines,AR-F,SESCO,annual,kg,dbb5f89b-89b4-3615-afa3-6e586a0f0fee -2020,Mendoza,II.5.1,1603.47516,TJ,CO2,74100.0,kg/TJ,118817509.35599999,Gas Oil combustion consumption by agriculture machines,AR-M,SESCO,annual,kg,237bf474-71b1-331e-b5ec-e977a7fdf471 -2020,Mendoza,II.5.1,1603.47516,TJ,CH4,3.9,kg/TJ,6253.553124,Gas Oil combustion consumption by agriculture machines,AR-M,SESCO,annual,kg,0aa36b6d-b75e-3626-8f14-6c6add34fdd3 -2020,Mendoza,II.5.1,1603.47516,TJ,N2O,3.9,kg/TJ,6253.553124,Gas Oil combustion consumption by agriculture machines,AR-M,SESCO,annual,kg,0aa36b6d-b75e-3626-8f14-6c6add34fdd3 -2020,Misiones,II.5.1,853.44336,TJ,CO2,74100.0,kg/TJ,63240152.975999996,Gas Oil combustion consumption by agriculture machines,AR-N,SESCO,annual,kg,26ff9528-4a3a-31ab-9b0c-28325ccd41db -2020,Misiones,II.5.1,853.44336,TJ,CH4,3.9,kg/TJ,3328.429104,Gas Oil combustion consumption by agriculture machines,AR-N,SESCO,annual,kg,e792df68-0fcb-33b7-b133-53bb971d22bb -2020,Misiones,II.5.1,853.44336,TJ,N2O,3.9,kg/TJ,3328.429104,Gas Oil combustion consumption by agriculture machines,AR-N,SESCO,annual,kg,e792df68-0fcb-33b7-b133-53bb971d22bb -2020,Rio Negro,II.5.1,222.93264,TJ,CO2,74100.0,kg/TJ,16519308.624,Gas Oil combustion consumption by agriculture machines,AR-R,SESCO,annual,kg,f30e5911-4bb6-3588-9dca-388e9a29b35e -2020,Rio Negro,II.5.1,222.93264,TJ,CH4,3.9,kg/TJ,869.437296,Gas Oil combustion consumption by agriculture machines,AR-R,SESCO,annual,kg,b05ff935-52e1-38ac-a4e7-edd699ed63b3 -2020,Rio Negro,II.5.1,222.93264,TJ,N2O,3.9,kg/TJ,869.437296,Gas Oil combustion consumption by agriculture machines,AR-R,SESCO,annual,kg,b05ff935-52e1-38ac-a4e7-edd699ed63b3 -2020,Salta,II.5.1,1250.9439599999998,TJ,CO2,74100.0,kg/TJ,92694947.43599999,Gas Oil combustion consumption by agriculture machines,AR-A,SESCO,annual,kg,18711059-cc40-32f9-a508-2444b0e0497e -2020,Salta,II.5.1,1250.9439599999998,TJ,CH4,3.9,kg/TJ,4878.681443999999,Gas Oil combustion consumption by agriculture machines,AR-A,SESCO,annual,kg,89bc6b72-db6a-3139-8044-7f6562a12ede -2020,Salta,II.5.1,1250.9439599999998,TJ,N2O,3.9,kg/TJ,4878.681443999999,Gas Oil combustion consumption by agriculture machines,AR-A,SESCO,annual,kg,89bc6b72-db6a-3139-8044-7f6562a12ede -2020,San Juan,II.5.1,321.90144,TJ,CO2,74100.0,kg/TJ,23852896.704,Gas Oil combustion consumption by agriculture machines,AR-J,SESCO,annual,kg,52c993ad-a47e-3726-9636-e06ce49664c7 -2020,San Juan,II.5.1,321.90144,TJ,CH4,3.9,kg/TJ,1255.415616,Gas Oil combustion consumption by agriculture machines,AR-J,SESCO,annual,kg,d482c0aa-2199-382f-847f-fca8cfd3a3c0 -2020,San Juan,II.5.1,321.90144,TJ,N2O,3.9,kg/TJ,1255.415616,Gas Oil combustion consumption by agriculture machines,AR-J,SESCO,annual,kg,d482c0aa-2199-382f-847f-fca8cfd3a3c0 -2020,San Luis,II.5.1,315.68879999999996,TJ,CO2,74100.0,kg/TJ,23392540.08,Gas Oil combustion consumption by agriculture machines,AR-D,SESCO,annual,kg,2bc6020b-9bfe-3091-bddc-9540c505b7af -2020,San Luis,II.5.1,315.68879999999996,TJ,CH4,3.9,kg/TJ,1231.1863199999998,Gas Oil combustion consumption by agriculture machines,AR-D,SESCO,annual,kg,a90c0c03-7067-3ffe-9860-5f95b7cfe32d -2020,San Luis,II.5.1,315.68879999999996,TJ,N2O,3.9,kg/TJ,1231.1863199999998,Gas Oil combustion consumption by agriculture machines,AR-D,SESCO,annual,kg,a90c0c03-7067-3ffe-9860-5f95b7cfe32d -2020,Santa Fe,II.5.1,6512.50824,TJ,CO2,74100.0,kg/TJ,482576860.584,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,4e38fbb7-65b7-32ba-a403-10767922cd0f -2020,Santa Fe,II.5.1,6512.50824,TJ,CH4,3.9,kg/TJ,25398.782136,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,b240ccba-5b5b-36f7-8836-80d3e36174bb -2020,Santa Fe,II.5.1,6512.50824,TJ,N2O,3.9,kg/TJ,25398.782136,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,b240ccba-5b5b-36f7-8836-80d3e36174bb -2020,Santiago del Estero,II.5.1,1623.30504,TJ,CO2,74100.0,kg/TJ,120286903.464,Gas Oil combustion consumption by agriculture machines,AR-G,SESCO,annual,kg,ca08f67c-1f37-3159-9db7-9812c40a95e0 -2020,Santiago del Estero,II.5.1,1623.30504,TJ,CH4,3.9,kg/TJ,6330.889655999999,Gas Oil combustion consumption by agriculture machines,AR-G,SESCO,annual,kg,faed062f-8b48-3a25-87cf-5dac7e26c979 -2020,Santiago del Estero,II.5.1,1623.30504,TJ,N2O,3.9,kg/TJ,6330.889655999999,Gas Oil combustion consumption by agriculture machines,AR-G,SESCO,annual,kg,faed062f-8b48-3a25-87cf-5dac7e26c979 -2020,Tucuman,II.5.1,1171.44384,TJ,CO2,74100.0,kg/TJ,86803988.544,Gas Oil combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,a01978a7-bd4f-3ba5-b7a5-9249c0c15fdf -2020,Tucuman,II.5.1,1171.44384,TJ,CH4,3.9,kg/TJ,4568.6309759999995,Gas Oil combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,578f12e3-b601-3da1-899f-7be45abeb861 -2020,Tucuman,II.5.1,1171.44384,TJ,N2O,3.9,kg/TJ,4568.6309759999995,Gas Oil combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,578f12e3-b601-3da1-899f-7be45abeb861 -2020,Buenos Aires,II.5.1,806.66796,TJ,CO2,74100.0,kg/TJ,59774095.836,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,673ae18d-d0ca-3552-9de1-097b32e9df19 -2020,Buenos Aires,II.5.1,806.66796,TJ,CH4,3.9,kg/TJ,3146.005044,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,9be0dc30-c66c-3972-abf8-15a1067d2483 -2020,Buenos Aires,II.5.1,806.66796,TJ,N2O,3.9,kg/TJ,3146.005044,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,9be0dc30-c66c-3972-abf8-15a1067d2483 -2020,Capital Federal,II.5.1,3.8648399999999996,TJ,CO2,74100.0,kg/TJ,286384.644,Gas Oil combustion consumption by agriculture machines,AR-C,SESCO,annual,kg,5a21f472-fd2e-3ab9-8963-4be4857cb29c -2020,Capital Federal,II.5.1,3.8648399999999996,TJ,CH4,3.9,kg/TJ,15.072875999999997,Gas Oil combustion consumption by agriculture machines,AR-C,SESCO,annual,kg,672f49b0-d0d6-3f68-9da6-20d7780ee9f6 -2020,Capital Federal,II.5.1,3.8648399999999996,TJ,N2O,3.9,kg/TJ,15.072875999999997,Gas Oil combustion consumption by agriculture machines,AR-C,SESCO,annual,kg,672f49b0-d0d6-3f68-9da6-20d7780ee9f6 -2020,Catamarca,II.5.1,20.62452,TJ,CO2,74100.0,kg/TJ,1528276.932,Gas Oil combustion consumption by agriculture machines,AR-K,SESCO,annual,kg,4588b479-4886-3793-8f3e-762ea0386777 -2020,Catamarca,II.5.1,20.62452,TJ,CH4,3.9,kg/TJ,80.435628,Gas Oil combustion consumption by agriculture machines,AR-K,SESCO,annual,kg,7e8e9dfe-4deb-3551-9670-db0c1aa2ab4a -2020,Catamarca,II.5.1,20.62452,TJ,N2O,3.9,kg/TJ,80.435628,Gas Oil combustion consumption by agriculture machines,AR-K,SESCO,annual,kg,7e8e9dfe-4deb-3551-9670-db0c1aa2ab4a -2020,Chaco,II.5.1,43.488479999999996,TJ,CO2,74100.0,kg/TJ,3222496.368,Gas Oil combustion consumption by agriculture machines,AR-H,SESCO,annual,kg,4a583fdc-3a89-3407-92ee-ec16bf94af6c -2020,Chaco,II.5.1,43.488479999999996,TJ,CH4,3.9,kg/TJ,169.60507199999998,Gas Oil combustion consumption by agriculture machines,AR-H,SESCO,annual,kg,aecb4a84-0ff8-3076-8a46-6d1daebd3c29 -2020,Chaco,II.5.1,43.488479999999996,TJ,N2O,3.9,kg/TJ,169.60507199999998,Gas Oil combustion consumption by agriculture machines,AR-H,SESCO,annual,kg,aecb4a84-0ff8-3076-8a46-6d1daebd3c29 -2020,Corrientes,II.5.1,39.1902,TJ,CO2,74100.0,kg/TJ,2903993.82,Gas Oil combustion consumption by agriculture machines,AR-W,SESCO,annual,kg,92ada96e-7d23-3a46-a148-becab486031c -2020,Corrientes,II.5.1,39.1902,TJ,CH4,3.9,kg/TJ,152.84178,Gas Oil combustion consumption by agriculture machines,AR-W,SESCO,annual,kg,a4db8cc9-7be0-35b4-a759-df9ddf51e5c2 -2020,Corrientes,II.5.1,39.1902,TJ,N2O,3.9,kg/TJ,152.84178,Gas Oil combustion consumption by agriculture machines,AR-W,SESCO,annual,kg,a4db8cc9-7be0-35b4-a759-df9ddf51e5c2 -2020,Córdoba,II.5.1,493.14635999999996,TJ,CO2,74100.0,kg/TJ,36542145.276,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,7b7192ec-c069-3bfe-a1df-16dee08cb72e -2020,Córdoba,II.5.1,493.14635999999996,TJ,CH4,3.9,kg/TJ,1923.2708039999998,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,27f13518-577c-3a3f-9e1e-592cf1beb5b9 -2020,Córdoba,II.5.1,493.14635999999996,TJ,N2O,3.9,kg/TJ,1923.2708039999998,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,27f13518-577c-3a3f-9e1e-592cf1beb5b9 -2020,Entre Rios,II.5.1,36.87852,TJ,CO2,74100.0,kg/TJ,2732698.332,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,24f0ee62-21c8-3195-aa83-271cf16ea6f8 -2020,Entre Rios,II.5.1,36.87852,TJ,CH4,3.9,kg/TJ,143.82622800000001,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,5c0cfb73-af3f-3a48-a14d-4948b2693d55 -2020,Entre Rios,II.5.1,36.87852,TJ,N2O,3.9,kg/TJ,143.82622800000001,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,5c0cfb73-af3f-3a48-a14d-4948b2693d55 -2020,Formosa,II.5.1,27.162239999999997,TJ,CO2,74100.0,kg/TJ,2012721.9839999997,Gas Oil combustion consumption by agriculture machines,AR-P,SESCO,annual,kg,a4c30c07-2c6b-379a-ab59-0a431a184988 -2020,Formosa,II.5.1,27.162239999999997,TJ,CH4,3.9,kg/TJ,105.93273599999999,Gas Oil combustion consumption by agriculture machines,AR-P,SESCO,annual,kg,5a75b230-635b-31fd-a00d-dbc9d3a8d9a1 -2020,Formosa,II.5.1,27.162239999999997,TJ,N2O,3.9,kg/TJ,105.93273599999999,Gas Oil combustion consumption by agriculture machines,AR-P,SESCO,annual,kg,5a75b230-635b-31fd-a00d-dbc9d3a8d9a1 -2020,Jujuy,II.5.1,44.933279999999996,TJ,CO2,74100.0,kg/TJ,3329556.048,Gas Oil combustion consumption by agriculture machines,AR-Y,SESCO,annual,kg,b84657e7-5367-3a71-b98e-7905f62fa8d2 -2020,Jujuy,II.5.1,44.933279999999996,TJ,CH4,3.9,kg/TJ,175.239792,Gas Oil combustion consumption by agriculture machines,AR-Y,SESCO,annual,kg,65923aa6-618d-32d9-be98-02a279c3a514 -2020,Jujuy,II.5.1,44.933279999999996,TJ,N2O,3.9,kg/TJ,175.239792,Gas Oil combustion consumption by agriculture machines,AR-Y,SESCO,annual,kg,65923aa6-618d-32d9-be98-02a279c3a514 -2020,La Pampa,II.5.1,140.00112,TJ,CO2,74100.0,kg/TJ,10374082.991999999,Gas Oil combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,43f891e4-fac0-33ab-ba05-ef10821ec571 -2020,La Pampa,II.5.1,140.00112,TJ,CH4,3.9,kg/TJ,546.0043679999999,Gas Oil combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,af144b9c-0e28-3888-8897-841d37ea9891 -2020,La Pampa,II.5.1,140.00112,TJ,N2O,3.9,kg/TJ,546.0043679999999,Gas Oil combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,af144b9c-0e28-3888-8897-841d37ea9891 -2020,La Rioja,II.5.1,1.3364399999999999,TJ,CO2,74100.0,kg/TJ,99030.20399999998,Gas Oil combustion consumption by agriculture machines,AR-F,SESCO,annual,kg,488bb5b9-49be-3186-bcb2-485d84188fef -2020,La Rioja,II.5.1,1.3364399999999999,TJ,CH4,3.9,kg/TJ,5.212115999999999,Gas Oil combustion consumption by agriculture machines,AR-F,SESCO,annual,kg,9bd6875b-1c7b-3388-ab17-d2553c103f4a -2020,La Rioja,II.5.1,1.3364399999999999,TJ,N2O,3.9,kg/TJ,5.212115999999999,Gas Oil combustion consumption by agriculture machines,AR-F,SESCO,annual,kg,9bd6875b-1c7b-3388-ab17-d2553c103f4a -2020,Mendoza,II.5.1,242.79863999999998,TJ,CO2,74100.0,kg/TJ,17991379.224,Gas Oil combustion consumption by agriculture machines,AR-M,SESCO,annual,kg,e3823fe4-2015-39d0-8777-d00e9d3d6520 -2020,Mendoza,II.5.1,242.79863999999998,TJ,CH4,3.9,kg/TJ,946.9146959999999,Gas Oil combustion consumption by agriculture machines,AR-M,SESCO,annual,kg,e41fcd78-c097-35ec-8098-0cb205089ab7 -2020,Mendoza,II.5.1,242.79863999999998,TJ,N2O,3.9,kg/TJ,946.9146959999999,Gas Oil combustion consumption by agriculture machines,AR-M,SESCO,annual,kg,e41fcd78-c097-35ec-8098-0cb205089ab7 -2020,Misiones,II.5.1,80.36699999999999,TJ,CO2,74100.0,kg/TJ,5955194.699999999,Gas Oil combustion consumption by agriculture machines,AR-N,SESCO,annual,kg,dc8e7aca-afa6-3531-9cd4-998bd9a83cc0 -2020,Misiones,II.5.1,80.36699999999999,TJ,CH4,3.9,kg/TJ,313.43129999999996,Gas Oil combustion consumption by agriculture machines,AR-N,SESCO,annual,kg,d0e6413c-3ad8-3c3e-b700-59aa686941b9 -2020,Misiones,II.5.1,80.36699999999999,TJ,N2O,3.9,kg/TJ,313.43129999999996,Gas Oil combustion consumption by agriculture machines,AR-N,SESCO,annual,kg,d0e6413c-3ad8-3c3e-b700-59aa686941b9 -2020,Rio Negro,II.5.1,39.370799999999996,TJ,CO2,74100.0,kg/TJ,2917376.28,Gas Oil combustion consumption by agriculture machines,AR-R,SESCO,annual,kg,7d64d26d-f93a-30c9-b9f1-84a2f674e60e -2020,Rio Negro,II.5.1,39.370799999999996,TJ,CH4,3.9,kg/TJ,153.54611999999997,Gas Oil combustion consumption by agriculture machines,AR-R,SESCO,annual,kg,75ef7126-97d7-3648-9564-10096a5593ec -2020,Rio Negro,II.5.1,39.370799999999996,TJ,N2O,3.9,kg/TJ,153.54611999999997,Gas Oil combustion consumption by agriculture machines,AR-R,SESCO,annual,kg,75ef7126-97d7-3648-9564-10096a5593ec -2020,Salta,II.5.1,189.55776,TJ,CO2,74100.0,kg/TJ,14046230.016,Gas Oil combustion consumption by agriculture machines,AR-A,SESCO,annual,kg,05a43bd6-e213-3d25-beda-438cce6d9ba0 -2020,Salta,II.5.1,189.55776,TJ,CH4,3.9,kg/TJ,739.275264,Gas Oil combustion consumption by agriculture machines,AR-A,SESCO,annual,kg,bbf934d6-e7ea-320c-8489-51deeee9da71 -2020,Salta,II.5.1,189.55776,TJ,N2O,3.9,kg/TJ,739.275264,Gas Oil combustion consumption by agriculture machines,AR-A,SESCO,annual,kg,bbf934d6-e7ea-320c-8489-51deeee9da71 -2020,San Juan,II.5.1,66.35244,TJ,CO2,74100.0,kg/TJ,4916715.8040000005,Gas Oil combustion consumption by agriculture machines,AR-J,SESCO,annual,kg,acbb9efe-fa82-3071-a436-94cd0e59b4ca -2020,San Juan,II.5.1,66.35244,TJ,CH4,3.9,kg/TJ,258.774516,Gas Oil combustion consumption by agriculture machines,AR-J,SESCO,annual,kg,b6a55c1b-41c0-3035-805f-8f7171d0867c -2020,San Juan,II.5.1,66.35244,TJ,N2O,3.9,kg/TJ,258.774516,Gas Oil combustion consumption by agriculture machines,AR-J,SESCO,annual,kg,b6a55c1b-41c0-3035-805f-8f7171d0867c -2020,San Luis,II.5.1,38.90124,TJ,CO2,74100.0,kg/TJ,2882581.884,Gas Oil combustion consumption by agriculture machines,AR-D,SESCO,annual,kg,1b48a316-be22-306e-8081-a1b95b3037eb -2020,San Luis,II.5.1,38.90124,TJ,CH4,3.9,kg/TJ,151.714836,Gas Oil combustion consumption by agriculture machines,AR-D,SESCO,annual,kg,42d2c456-1307-3d9c-9fc3-5f9038bc3194 -2020,San Luis,II.5.1,38.90124,TJ,N2O,3.9,kg/TJ,151.714836,Gas Oil combustion consumption by agriculture machines,AR-D,SESCO,annual,kg,42d2c456-1307-3d9c-9fc3-5f9038bc3194 -2020,Santa Fe,II.5.1,654.7472399999999,TJ,CO2,74100.0,kg/TJ,48516770.484,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,af2a30bc-505f-3dcf-beba-be51513b94e8 -2020,Santa Fe,II.5.1,654.7472399999999,TJ,CH4,3.9,kg/TJ,2553.5142359999995,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,88d8a941-073c-3d81-a736-2b305f9f569c -2020,Santa Fe,II.5.1,654.7472399999999,TJ,N2O,3.9,kg/TJ,2553.5142359999995,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,88d8a941-073c-3d81-a736-2b305f9f569c -2020,Santiago del Estero,II.5.1,203.57232,TJ,CO2,74100.0,kg/TJ,15084708.911999999,Gas Oil combustion consumption by agriculture machines,AR-G,SESCO,annual,kg,ae59cf59-8186-34f0-ba85-3f8589daf7ae -2020,Santiago del Estero,II.5.1,203.57232,TJ,CH4,3.9,kg/TJ,793.9320479999999,Gas Oil combustion consumption by agriculture machines,AR-G,SESCO,annual,kg,093d38a4-ea2f-300c-bb2f-4048eb535927 -2020,Santiago del Estero,II.5.1,203.57232,TJ,N2O,3.9,kg/TJ,793.9320479999999,Gas Oil combustion consumption by agriculture machines,AR-G,SESCO,annual,kg,093d38a4-ea2f-300c-bb2f-4048eb535927 -2020,Tucuman,II.5.1,129.56243999999998,TJ,CO2,74100.0,kg/TJ,9600576.803999998,Gas Oil combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,7a173b95-c949-3b22-ae97-713deceaf441 -2020,Tucuman,II.5.1,129.56243999999998,TJ,CH4,3.9,kg/TJ,505.2935159999999,Gas Oil combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,68134679-dca6-3aca-b733-5b2f0b109959 -2020,Tucuman,II.5.1,129.56243999999998,TJ,N2O,3.9,kg/TJ,505.2935159999999,Gas Oil combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,68134679-dca6-3aca-b733-5b2f0b109959 -2020,Buenos Aires,II.5.1,5.158291999999999,TJ,CO2,71500.0,kg/TJ,368817.87799999997,Jet Kerosene combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,18d693ff-6f6d-33a2-ac33-d9f99d252ae4 -2020,Buenos Aires,II.5.1,5.158291999999999,TJ,CH4,0.5,kg/TJ,2.5791459999999997,Jet Kerosene combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,812afa24-741e-3926-865a-68d2dfed32b5 -2020,Buenos Aires,II.5.1,5.158291999999999,TJ,N2O,2.0,kg/TJ,10.316583999999999,Jet Kerosene combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,7a77c70c-fa99-341f-bdc9-44a0e2a95d9e -2020,Córdoba,II.5.1,0.62906,TJ,CO2,71500.0,kg/TJ,44977.78999999999,Jet Kerosene combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,11b9baef-3706-3fd4-9f1c-cb581ac4b75b -2020,Córdoba,II.5.1,0.62906,TJ,CH4,0.5,kg/TJ,0.31453,Jet Kerosene combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,e4a00eb6-4649-3045-a36c-a3da6a04d8c6 -2020,Córdoba,II.5.1,0.62906,TJ,N2O,2.0,kg/TJ,1.25812,Jet Kerosene combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,845cbfb1-a493-3cfb-80e7-7a024903736c -2020,Santa Fe,II.5.1,0.849231,TJ,CO2,71500.0,kg/TJ,60720.0165,Jet Kerosene combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,5177c782-cd36-39cf-becf-492c933a0ec8 -2020,Santa Fe,II.5.1,0.849231,TJ,CH4,0.5,kg/TJ,0.4246155,Jet Kerosene combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,dec1b66c-2863-3eee-bb53-ecb7bbca91d8 -2020,Santa Fe,II.5.1,0.849231,TJ,N2O,2.0,kg/TJ,1.698462,Jet Kerosene combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,99b5539a-5bb9-3cb4-9690-945bd75bdcdb -2020,Buenos Aires,II.5.1,0.27412,TJ,CO2,73300.0,kg/TJ,20092.996,Naphtha combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,2426d1a8-ca6e-3dbc-8aa1-8e070f806aab -2020,Buenos Aires,II.5.1,0.27412,TJ,CH4,0.5,kg/TJ,0.13706,Naphtha combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,b4120277-dab0-391d-b45c-4a00c111c7f8 -2020,Buenos Aires,II.5.1,0.27412,TJ,N2O,2.0,kg/TJ,0.54824,Naphtha combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,fc4125f0-7101-3d8b-82fa-0660f9c55d98 -2020,Salta,II.5.1,0.75383,TJ,CO2,73300.0,kg/TJ,55255.739,Naphtha combustion consumption by agriculture machines,AR-A,SESCO,annual,kg,a979f5e1-c160-35d9-aaa6-bb39f4183227 -2020,Salta,II.5.1,0.75383,TJ,CH4,0.5,kg/TJ,0.376915,Naphtha combustion consumption by agriculture machines,AR-A,SESCO,annual,kg,4d2df10b-0af8-3598-a5e7-63a9fdc07bcf -2020,Salta,II.5.1,0.75383,TJ,N2O,2.0,kg/TJ,1.50766,Naphtha combustion consumption by agriculture machines,AR-A,SESCO,annual,kg,510c9d72-2304-3f4c-a87c-46dd7e21fcd3 -2020,Santa Fe,II.5.1,2.706935,TJ,CO2,73300.0,kg/TJ,198418.33550000002,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,77f5651e-84be-318c-be1a-4bb39122cc50 -2020,Santa Fe,II.5.1,2.706935,TJ,CH4,0.5,kg/TJ,1.3534675,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,dc28d3c0-739d-3f6e-be2a-48bdf0a3e5d3 -2020,Santa Fe,II.5.1,2.706935,TJ,N2O,2.0,kg/TJ,5.41387,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,4589a612-af59-32c4-9d2c-0a54003f3c24 -2020,Buenos Aires,II.1.1,8155.534799999999,TJ,CO2,74100.0,kg/TJ,604325128.68,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,9acfcf4d-7f2a-302d-8d8d-2e7f424784b2 -2020,Buenos Aires,II.1.1,8155.534799999999,TJ,CH4,3.9,kg/TJ,31806.585719999995,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,4756b67d-8868-3b73-9537-cdf068ea3ade -2020,Buenos Aires,II.1.1,8155.534799999999,TJ,N2O,3.9,kg/TJ,31806.585719999995,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,4756b67d-8868-3b73-9537-cdf068ea3ade -2020,Capital Federal,II.1.1,3115.06104,TJ,CO2,74100.0,kg/TJ,230826023.064,Gas Oil combustion consumption by freight transport,AR-C,SESCO,annual,kg,3047e72b-c7b3-31a3-bdb2-a3e318a09060 -2020,Capital Federal,II.1.1,3115.06104,TJ,CH4,3.9,kg/TJ,12148.738056,Gas Oil combustion consumption by freight transport,AR-C,SESCO,annual,kg,366327a7-4812-3e12-a308-07fe22c7f136 -2020,Capital Federal,II.1.1,3115.06104,TJ,N2O,3.9,kg/TJ,12148.738056,Gas Oil combustion consumption by freight transport,AR-C,SESCO,annual,kg,366327a7-4812-3e12-a308-07fe22c7f136 -2020,Catamarca,II.1.1,22.90008,TJ,CO2,74100.0,kg/TJ,1696895.9279999998,Gas Oil combustion consumption by freight transport,AR-K,SESCO,annual,kg,fd2e4ef3-5cbf-3112-a108-32c077237207 -2020,Catamarca,II.1.1,22.90008,TJ,CH4,3.9,kg/TJ,89.310312,Gas Oil combustion consumption by freight transport,AR-K,SESCO,annual,kg,6fd2f12f-1c9b-3398-86bd-3f4b4cab810f -2020,Catamarca,II.1.1,22.90008,TJ,N2O,3.9,kg/TJ,89.310312,Gas Oil combustion consumption by freight transport,AR-K,SESCO,annual,kg,6fd2f12f-1c9b-3398-86bd-3f4b4cab810f -2020,Chaco,II.1.1,280.1106,TJ,CO2,74100.0,kg/TJ,20756195.459999997,Gas Oil combustion consumption by freight transport,AR-H,SESCO,annual,kg,3ddc19c0-97cc-3f45-988c-e951ac9132d6 -2020,Chaco,II.1.1,280.1106,TJ,CH4,3.9,kg/TJ,1092.4313399999999,Gas Oil combustion consumption by freight transport,AR-H,SESCO,annual,kg,b9ab91d1-ecc8-34f6-a356-7c652bb11c7d -2020,Chaco,II.1.1,280.1106,TJ,N2O,3.9,kg/TJ,1092.4313399999999,Gas Oil combustion consumption by freight transport,AR-H,SESCO,annual,kg,b9ab91d1-ecc8-34f6-a356-7c652bb11c7d -2020,Chubut,II.1.1,198.40716,TJ,CO2,74100.0,kg/TJ,14701970.556,Gas Oil combustion consumption by freight transport,AR-U,SESCO,annual,kg,994a0d9b-9ed3-308b-ba13-1a056e73b573 -2020,Chubut,II.1.1,198.40716,TJ,CH4,3.9,kg/TJ,773.787924,Gas Oil combustion consumption by freight transport,AR-U,SESCO,annual,kg,273445bc-69e9-3b36-96fd-09df897c903e -2020,Chubut,II.1.1,198.40716,TJ,N2O,3.9,kg/TJ,773.787924,Gas Oil combustion consumption by freight transport,AR-U,SESCO,annual,kg,273445bc-69e9-3b36-96fd-09df897c903e -2020,Corrientes,II.1.1,409.2396,TJ,CO2,74100.0,kg/TJ,30324654.36,Gas Oil combustion consumption by freight transport,AR-W,SESCO,annual,kg,53a28b73-0c58-3028-b533-09be3b5ef77b -2020,Corrientes,II.1.1,409.2396,TJ,CH4,3.9,kg/TJ,1596.03444,Gas Oil combustion consumption by freight transport,AR-W,SESCO,annual,kg,4c92c881-5ece-326d-af1c-b343454f3034 -2020,Corrientes,II.1.1,409.2396,TJ,N2O,3.9,kg/TJ,1596.03444,Gas Oil combustion consumption by freight transport,AR-W,SESCO,annual,kg,4c92c881-5ece-326d-af1c-b343454f3034 -2020,Córdoba,II.1.1,2655.43404,TJ,CO2,74100.0,kg/TJ,196767662.364,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,2adfba99-c59a-3869-a456-23c7fb2ea41a -2020,Córdoba,II.1.1,2655.43404,TJ,CH4,3.9,kg/TJ,10356.192756,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,dcaae37e-42fb-3dbd-8189-a7c921ecd17c -2020,Córdoba,II.1.1,2655.43404,TJ,N2O,3.9,kg/TJ,10356.192756,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,dcaae37e-42fb-3dbd-8189-a7c921ecd17c -2020,Entre Rios,II.1.1,903.3611999999999,TJ,CO2,74100.0,kg/TJ,66939064.919999994,Gas Oil combustion consumption by freight transport,AR-E,SESCO,annual,kg,4bab3385-6fe5-3591-b417-e548ff19d226 -2020,Entre Rios,II.1.1,903.3611999999999,TJ,CH4,3.9,kg/TJ,3523.10868,Gas Oil combustion consumption by freight transport,AR-E,SESCO,annual,kg,e5efa5e4-d638-3792-8270-7d3d89fc27b4 -2020,Entre Rios,II.1.1,903.3611999999999,TJ,N2O,3.9,kg/TJ,3523.10868,Gas Oil combustion consumption by freight transport,AR-E,SESCO,annual,kg,e5efa5e4-d638-3792-8270-7d3d89fc27b4 -2020,Formosa,II.1.1,42.0798,TJ,CO2,74100.0,kg/TJ,3118113.1799999997,Gas Oil combustion consumption by freight transport,AR-P,SESCO,annual,kg,0d0437bd-1067-3e4d-bae2-f57c8e1fe4c5 -2020,Formosa,II.1.1,42.0798,TJ,CH4,3.9,kg/TJ,164.11122,Gas Oil combustion consumption by freight transport,AR-P,SESCO,annual,kg,c4d3f679-d5ca-3df0-acf8-fe020390402c -2020,Formosa,II.1.1,42.0798,TJ,N2O,3.9,kg/TJ,164.11122,Gas Oil combustion consumption by freight transport,AR-P,SESCO,annual,kg,c4d3f679-d5ca-3df0-acf8-fe020390402c -2020,Jujuy,II.1.1,202.95828,TJ,CO2,74100.0,kg/TJ,15039208.548,Gas Oil combustion consumption by freight transport,AR-Y,SESCO,annual,kg,9dada357-ad63-35f9-96a3-345dcaf0a1c3 -2020,Jujuy,II.1.1,202.95828,TJ,CH4,3.9,kg/TJ,791.537292,Gas Oil combustion consumption by freight transport,AR-Y,SESCO,annual,kg,26274984-8c21-3adc-b388-e4b8088a04a0 -2020,Jujuy,II.1.1,202.95828,TJ,N2O,3.9,kg/TJ,791.537292,Gas Oil combustion consumption by freight transport,AR-Y,SESCO,annual,kg,26274984-8c21-3adc-b388-e4b8088a04a0 -2020,La Pampa,II.1.1,269.27459999999996,TJ,CO2,74100.0,kg/TJ,19953247.859999996,Gas Oil combustion consumption by freight transport,AR-L,SESCO,annual,kg,ad120dd6-e4e4-3f3b-b2d6-0b30648a91ac -2020,La Pampa,II.1.1,269.27459999999996,TJ,CH4,3.9,kg/TJ,1050.1709399999997,Gas Oil combustion consumption by freight transport,AR-L,SESCO,annual,kg,160ae7dc-9048-3df8-9953-25eac84ccea7 -2020,La Pampa,II.1.1,269.27459999999996,TJ,N2O,3.9,kg/TJ,1050.1709399999997,Gas Oil combustion consumption by freight transport,AR-L,SESCO,annual,kg,160ae7dc-9048-3df8-9953-25eac84ccea7 -2020,La Rioja,II.1.1,17.37372,TJ,CO2,74100.0,kg/TJ,1287392.652,Gas Oil combustion consumption by freight transport,AR-F,SESCO,annual,kg,5f2f50c0-1b2c-3002-ab33-c1e00de67213 -2020,La Rioja,II.1.1,17.37372,TJ,CH4,3.9,kg/TJ,67.75750799999999,Gas Oil combustion consumption by freight transport,AR-F,SESCO,annual,kg,9de29fa1-5464-3013-b04e-bcd9ce9750c3 -2020,La Rioja,II.1.1,17.37372,TJ,N2O,3.9,kg/TJ,67.75750799999999,Gas Oil combustion consumption by freight transport,AR-F,SESCO,annual,kg,9de29fa1-5464-3013-b04e-bcd9ce9750c3 -2020,Mendoza,II.1.1,1659.64176,TJ,CO2,74100.0,kg/TJ,122979454.416,Gas Oil combustion consumption by freight transport,AR-M,SESCO,annual,kg,03c57cd6-44a7-3df8-967d-4e9cc40c6d15 -2020,Mendoza,II.1.1,1659.64176,TJ,CH4,3.9,kg/TJ,6472.6028639999995,Gas Oil combustion consumption by freight transport,AR-M,SESCO,annual,kg,4584c526-ba02-35e6-a356-6a937a34fdf1 -2020,Mendoza,II.1.1,1659.64176,TJ,N2O,3.9,kg/TJ,6472.6028639999995,Gas Oil combustion consumption by freight transport,AR-M,SESCO,annual,kg,4584c526-ba02-35e6-a356-6a937a34fdf1 -2020,Misiones,II.1.1,1016.12784,TJ,CO2,74100.0,kg/TJ,75295072.944,Gas Oil combustion consumption by freight transport,AR-N,SESCO,annual,kg,b901373a-552d-3f78-8a72-30a71879d59e -2020,Misiones,II.1.1,1016.12784,TJ,CH4,3.9,kg/TJ,3962.898576,Gas Oil combustion consumption by freight transport,AR-N,SESCO,annual,kg,f05454ed-bf01-329c-823c-7611a73c5988 -2020,Misiones,II.1.1,1016.12784,TJ,N2O,3.9,kg/TJ,3962.898576,Gas Oil combustion consumption by freight transport,AR-N,SESCO,annual,kg,f05454ed-bf01-329c-823c-7611a73c5988 -2020,Neuquén,II.1.1,571.4184,TJ,CO2,74100.0,kg/TJ,42342103.440000005,Gas Oil combustion consumption by freight transport,AR-Q,SESCO,annual,kg,1b8cb0a7-4c6b-3cf6-9ede-7c7dcfe85985 -2020,Neuquén,II.1.1,571.4184,TJ,CH4,3.9,kg/TJ,2228.53176,Gas Oil combustion consumption by freight transport,AR-Q,SESCO,annual,kg,7f2a7ab8-be5a-3fe3-a10b-a5c8c451bdca -2020,Neuquén,II.1.1,571.4184,TJ,N2O,3.9,kg/TJ,2228.53176,Gas Oil combustion consumption by freight transport,AR-Q,SESCO,annual,kg,7f2a7ab8-be5a-3fe3-a10b-a5c8c451bdca -2020,Rio Negro,II.1.1,379.26,TJ,CO2,74100.0,kg/TJ,28103166.0,Gas Oil combustion consumption by freight transport,AR-R,SESCO,annual,kg,a8229873-fa83-34f5-82ac-833c4169c8da -2020,Rio Negro,II.1.1,379.26,TJ,CH4,3.9,kg/TJ,1479.114,Gas Oil combustion consumption by freight transport,AR-R,SESCO,annual,kg,3a340795-4de5-3ff4-9f37-9fe1f4461de1 -2020,Rio Negro,II.1.1,379.26,TJ,N2O,3.9,kg/TJ,1479.114,Gas Oil combustion consumption by freight transport,AR-R,SESCO,annual,kg,3a340795-4de5-3ff4-9f37-9fe1f4461de1 -2020,Salta,II.1.1,385.07532,TJ,CO2,74100.0,kg/TJ,28534081.211999997,Gas Oil combustion consumption by freight transport,AR-A,SESCO,annual,kg,265a7a46-0948-3920-a181-589ba497f6fd -2020,Salta,II.1.1,385.07532,TJ,CH4,3.9,kg/TJ,1501.7937479999998,Gas Oil combustion consumption by freight transport,AR-A,SESCO,annual,kg,734f7f02-4e33-3960-a2d9-a41babf152f7 -2020,Salta,II.1.1,385.07532,TJ,N2O,3.9,kg/TJ,1501.7937479999998,Gas Oil combustion consumption by freight transport,AR-A,SESCO,annual,kg,734f7f02-4e33-3960-a2d9-a41babf152f7 -2020,San Juan,II.1.1,163.26239999999999,TJ,CO2,74100.0,kg/TJ,12097743.839999998,Gas Oil combustion consumption by freight transport,AR-J,SESCO,annual,kg,134f69d6-997a-3bb3-865f-5236e7c225ec -2020,San Juan,II.1.1,163.26239999999999,TJ,CH4,3.9,kg/TJ,636.72336,Gas Oil combustion consumption by freight transport,AR-J,SESCO,annual,kg,e30d8556-41b7-3fcc-8076-cce4ad2b3f1a -2020,San Juan,II.1.1,163.26239999999999,TJ,N2O,3.9,kg/TJ,636.72336,Gas Oil combustion consumption by freight transport,AR-J,SESCO,annual,kg,e30d8556-41b7-3fcc-8076-cce4ad2b3f1a -2020,San Luis,II.1.1,331.5816,TJ,CO2,74100.0,kg/TJ,24570196.56,Gas Oil combustion consumption by freight transport,AR-D,SESCO,annual,kg,314486e7-8f1d-3903-b223-4eed8953a6b0 -2020,San Luis,II.1.1,331.5816,TJ,CH4,3.9,kg/TJ,1293.16824,Gas Oil combustion consumption by freight transport,AR-D,SESCO,annual,kg,bbb0ef4e-1a7c-3c61-a3d8-e5a20c1d95ac -2020,San Luis,II.1.1,331.5816,TJ,N2O,3.9,kg/TJ,1293.16824,Gas Oil combustion consumption by freight transport,AR-D,SESCO,annual,kg,bbb0ef4e-1a7c-3c61-a3d8-e5a20c1d95ac -2020,Santa Cruz,II.1.1,157.26648,TJ,CO2,74100.0,kg/TJ,11653446.168,Gas Oil combustion consumption by freight transport,AR-Z,SESCO,annual,kg,3def2949-a1f2-3542-adde-31eef5c7cdc6 -2020,Santa Cruz,II.1.1,157.26648,TJ,CH4,3.9,kg/TJ,613.3392719999999,Gas Oil combustion consumption by freight transport,AR-Z,SESCO,annual,kg,a7ce0e26-0b38-39f9-ae57-63f8e5d40948 -2020,Santa Cruz,II.1.1,157.26648,TJ,N2O,3.9,kg/TJ,613.3392719999999,Gas Oil combustion consumption by freight transport,AR-Z,SESCO,annual,kg,a7ce0e26-0b38-39f9-ae57-63f8e5d40948 -2020,Santa Fe,II.1.1,3016.27284,TJ,CO2,74100.0,kg/TJ,223505817.444,Gas Oil combustion consumption by freight transport,AR-S,SESCO,annual,kg,9b2cff47-903b-304d-8d92-92e96c6876bb -2020,Santa Fe,II.1.1,3016.27284,TJ,CH4,3.9,kg/TJ,11763.464076,Gas Oil combustion consumption by freight transport,AR-S,SESCO,annual,kg,c107700c-4f4d-3481-8a29-1ee459148283 -2020,Santa Fe,II.1.1,3016.27284,TJ,N2O,3.9,kg/TJ,11763.464076,Gas Oil combustion consumption by freight transport,AR-S,SESCO,annual,kg,c107700c-4f4d-3481-8a29-1ee459148283 -2020,Santiago del Estero,II.1.1,326.27196,TJ,CO2,74100.0,kg/TJ,24176752.235999998,Gas Oil combustion consumption by freight transport,AR-G,SESCO,annual,kg,19b38b65-d7fc-374d-bca6-83c6c6f078c8 -2020,Santiago del Estero,II.1.1,326.27196,TJ,CH4,3.9,kg/TJ,1272.4606439999998,Gas Oil combustion consumption by freight transport,AR-G,SESCO,annual,kg,6b5432fe-76ff-3210-9352-0cf835437166 -2020,Santiago del Estero,II.1.1,326.27196,TJ,N2O,3.9,kg/TJ,1272.4606439999998,Gas Oil combustion consumption by freight transport,AR-G,SESCO,annual,kg,6b5432fe-76ff-3210-9352-0cf835437166 -2020,Tierra del Fuego,II.1.1,285.45635999999996,TJ,CO2,74100.0,kg/TJ,21152316.275999997,Gas Oil combustion consumption by freight transport,AR-V,SESCO,annual,kg,8c225bbe-c64b-3f13-8143-e79e8045eea2 -2020,Tierra del Fuego,II.1.1,285.45635999999996,TJ,CH4,3.9,kg/TJ,1113.2798039999998,Gas Oil combustion consumption by freight transport,AR-V,SESCO,annual,kg,a680149e-677b-3dd8-8a3f-9fb0f05b5e1f -2020,Tierra del Fuego,II.1.1,285.45635999999996,TJ,N2O,3.9,kg/TJ,1113.2798039999998,Gas Oil combustion consumption by freight transport,AR-V,SESCO,annual,kg,a680149e-677b-3dd8-8a3f-9fb0f05b5e1f -2020,Tucuman,II.1.1,571.4184,TJ,CO2,74100.0,kg/TJ,42342103.440000005,Gas Oil combustion consumption by freight transport,AR-T,SESCO,annual,kg,a69fb53a-c311-3d76-b620-cc4a81fb1ab3 -2020,Tucuman,II.1.1,571.4184,TJ,CH4,3.9,kg/TJ,2228.53176,Gas Oil combustion consumption by freight transport,AR-T,SESCO,annual,kg,d864443a-de76-367a-a3b6-a73e9e0d141e -2020,Tucuman,II.1.1,571.4184,TJ,N2O,3.9,kg/TJ,2228.53176,Gas Oil combustion consumption by freight transport,AR-T,SESCO,annual,kg,d864443a-de76-367a-a3b6-a73e9e0d141e -2020,Buenos Aires,II.1.1,2104.74852,TJ,CO2,74100.0,kg/TJ,155961865.33200002,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,19033275-d0f6-3467-9641-8504ccd2b7d3 -2020,Buenos Aires,II.1.1,2104.74852,TJ,CH4,3.9,kg/TJ,8208.519228000001,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,9141ec14-f721-3f78-97e5-9431f77a3278 -2020,Buenos Aires,II.1.1,2104.74852,TJ,N2O,3.9,kg/TJ,8208.519228000001,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,9141ec14-f721-3f78-97e5-9431f77a3278 -2020,Capital Federal,II.1.1,1857.6516,TJ,CO2,74100.0,kg/TJ,137651983.56,Gas Oil combustion consumption by freight transport,AR-C,SESCO,annual,kg,057dd5f1-8321-39d1-ad7b-928997f0ac1f -2020,Capital Federal,II.1.1,1857.6516,TJ,CH4,3.9,kg/TJ,7244.84124,Gas Oil combustion consumption by freight transport,AR-C,SESCO,annual,kg,9951d2d0-2e34-33d5-9b24-85ae9438bb9f -2020,Capital Federal,II.1.1,1857.6516,TJ,N2O,3.9,kg/TJ,7244.84124,Gas Oil combustion consumption by freight transport,AR-C,SESCO,annual,kg,9951d2d0-2e34-33d5-9b24-85ae9438bb9f -2020,Catamarca,II.1.1,9.64404,TJ,CO2,74100.0,kg/TJ,714623.3640000001,Gas Oil combustion consumption by freight transport,AR-K,SESCO,annual,kg,5ddc5b3b-6969-33f9-bcbe-2703daa089ef -2020,Catamarca,II.1.1,9.64404,TJ,CH4,3.9,kg/TJ,37.611756,Gas Oil combustion consumption by freight transport,AR-K,SESCO,annual,kg,633e3246-61f4-309e-bb81-012d0050e751 -2020,Catamarca,II.1.1,9.64404,TJ,N2O,3.9,kg/TJ,37.611756,Gas Oil combustion consumption by freight transport,AR-K,SESCO,annual,kg,633e3246-61f4-309e-bb81-012d0050e751 -2020,Chaco,II.1.1,79.6446,TJ,CO2,74100.0,kg/TJ,5901664.859999999,Gas Oil combustion consumption by freight transport,AR-H,SESCO,annual,kg,ef2d368e-4b84-36c2-a069-4949afaafaab -2020,Chaco,II.1.1,79.6446,TJ,CH4,3.9,kg/TJ,310.61393999999996,Gas Oil combustion consumption by freight transport,AR-H,SESCO,annual,kg,160cb0d5-f17d-328f-b276-6aeab9232ab1 -2020,Chaco,II.1.1,79.6446,TJ,N2O,3.9,kg/TJ,310.61393999999996,Gas Oil combustion consumption by freight transport,AR-H,SESCO,annual,kg,160cb0d5-f17d-328f-b276-6aeab9232ab1 -2020,Chubut,II.1.1,268.3716,TJ,CO2,74100.0,kg/TJ,19886335.56,Gas Oil combustion consumption by freight transport,AR-U,SESCO,annual,kg,179e51a5-e7b6-30da-9271-42c9d5fd1c88 -2020,Chubut,II.1.1,268.3716,TJ,CH4,3.9,kg/TJ,1046.64924,Gas Oil combustion consumption by freight transport,AR-U,SESCO,annual,kg,c2cd8c0e-187b-39d3-95b2-773fc4744c51 -2020,Chubut,II.1.1,268.3716,TJ,N2O,3.9,kg/TJ,1046.64924,Gas Oil combustion consumption by freight transport,AR-U,SESCO,annual,kg,c2cd8c0e-187b-39d3-95b2-773fc4744c51 -2020,Corrientes,II.1.1,126.27552,TJ,CO2,74100.0,kg/TJ,9357016.032,Gas Oil combustion consumption by freight transport,AR-W,SESCO,annual,kg,ed0f749f-13c7-3ee8-acda-35086600e255 -2020,Corrientes,II.1.1,126.27552,TJ,CH4,3.9,kg/TJ,492.47452799999996,Gas Oil combustion consumption by freight transport,AR-W,SESCO,annual,kg,5846b3c8-2653-3f4c-aa8c-1c31a4acb356 -2020,Corrientes,II.1.1,126.27552,TJ,N2O,3.9,kg/TJ,492.47452799999996,Gas Oil combustion consumption by freight transport,AR-W,SESCO,annual,kg,5846b3c8-2653-3f4c-aa8c-1c31a4acb356 -2020,Córdoba,II.1.1,552.20256,TJ,CO2,74100.0,kg/TJ,40918209.695999995,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,5e2fef8c-abe2-348e-ac44-288e452eb864 -2020,Córdoba,II.1.1,552.20256,TJ,CH4,3.9,kg/TJ,2153.5899839999997,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,2a887606-ff38-3ed1-be05-a025dc7b427e -2020,Córdoba,II.1.1,552.20256,TJ,N2O,3.9,kg/TJ,2153.5899839999997,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,2a887606-ff38-3ed1-be05-a025dc7b427e -2020,Entre Rios,II.1.1,208.62912,TJ,CO2,74100.0,kg/TJ,15459417.792,Gas Oil combustion consumption by freight transport,AR-E,SESCO,annual,kg,bc8e7a30-26c1-33b7-af10-45fb7e3fdfd2 -2020,Entre Rios,II.1.1,208.62912,TJ,CH4,3.9,kg/TJ,813.653568,Gas Oil combustion consumption by freight transport,AR-E,SESCO,annual,kg,d4158d0d-7d7a-3683-862d-b36c98fc9a97 -2020,Entre Rios,II.1.1,208.62912,TJ,N2O,3.9,kg/TJ,813.653568,Gas Oil combustion consumption by freight transport,AR-E,SESCO,annual,kg,d4158d0d-7d7a-3683-862d-b36c98fc9a97 -2020,Formosa,II.1.1,14.19516,TJ,CO2,74100.0,kg/TJ,1051861.356,Gas Oil combustion consumption by freight transport,AR-P,SESCO,annual,kg,ae5b042d-d8b4-33c5-a227-4d9362c8585f -2020,Formosa,II.1.1,14.19516,TJ,CH4,3.9,kg/TJ,55.361124,Gas Oil combustion consumption by freight transport,AR-P,SESCO,annual,kg,63df1291-18e5-34d0-9482-9b18230a0f90 -2020,Formosa,II.1.1,14.19516,TJ,N2O,3.9,kg/TJ,55.361124,Gas Oil combustion consumption by freight transport,AR-P,SESCO,annual,kg,63df1291-18e5-34d0-9482-9b18230a0f90 -2020,Jujuy,II.1.1,25.39236,TJ,CO2,74100.0,kg/TJ,1881573.876,Gas Oil combustion consumption by freight transport,AR-Y,SESCO,annual,kg,117d8350-6d31-3bd9-b5ad-ca3cf9fb8341 -2020,Jujuy,II.1.1,25.39236,TJ,CH4,3.9,kg/TJ,99.030204,Gas Oil combustion consumption by freight transport,AR-Y,SESCO,annual,kg,e3e4e3e8-24ed-36d8-9646-1f06af3d54c4 -2020,Jujuy,II.1.1,25.39236,TJ,N2O,3.9,kg/TJ,99.030204,Gas Oil combustion consumption by freight transport,AR-Y,SESCO,annual,kg,e3e4e3e8-24ed-36d8-9646-1f06af3d54c4 -2020,La Pampa,II.1.1,74.80452,TJ,CO2,74100.0,kg/TJ,5543014.932,Gas Oil combustion consumption by freight transport,AR-L,SESCO,annual,kg,35306b90-a242-3188-a703-a56bfe07cdc5 -2020,La Pampa,II.1.1,74.80452,TJ,CH4,3.9,kg/TJ,291.737628,Gas Oil combustion consumption by freight transport,AR-L,SESCO,annual,kg,586ba00e-9b4f-3f17-96ca-33e986ef28c6 -2020,La Pampa,II.1.1,74.80452,TJ,N2O,3.9,kg/TJ,291.737628,Gas Oil combustion consumption by freight transport,AR-L,SESCO,annual,kg,586ba00e-9b4f-3f17-96ca-33e986ef28c6 -2020,La Rioja,II.1.1,14.989799999999999,TJ,CO2,74100.0,kg/TJ,1110744.18,Gas Oil combustion consumption by freight transport,AR-F,SESCO,annual,kg,b9825eb4-a55a-3f95-beff-17b3ce8b1b00 -2020,La Rioja,II.1.1,14.989799999999999,TJ,CH4,3.9,kg/TJ,58.46021999999999,Gas Oil combustion consumption by freight transport,AR-F,SESCO,annual,kg,2958955a-5326-33e6-90fd-095f9e4f8eb9 -2020,La Rioja,II.1.1,14.989799999999999,TJ,N2O,3.9,kg/TJ,58.46021999999999,Gas Oil combustion consumption by freight transport,AR-F,SESCO,annual,kg,2958955a-5326-33e6-90fd-095f9e4f8eb9 -2020,Mendoza,II.1.1,419.13648,TJ,CO2,74100.0,kg/TJ,31058013.168,Gas Oil combustion consumption by freight transport,AR-M,SESCO,annual,kg,a9bdf671-278e-33cc-b5a4-095e8e3d5e8a -2020,Mendoza,II.1.1,419.13648,TJ,CH4,3.9,kg/TJ,1634.632272,Gas Oil combustion consumption by freight transport,AR-M,SESCO,annual,kg,876470be-ea82-3719-a108-ad70b12a19ec -2020,Mendoza,II.1.1,419.13648,TJ,N2O,3.9,kg/TJ,1634.632272,Gas Oil combustion consumption by freight transport,AR-M,SESCO,annual,kg,876470be-ea82-3719-a108-ad70b12a19ec -2020,Misiones,II.1.1,115.80072,TJ,CO2,74100.0,kg/TJ,8580833.352,Gas Oil combustion consumption by freight transport,AR-N,SESCO,annual,kg,bd233bdd-f031-3edb-a061-dbf9f76e34e2 -2020,Misiones,II.1.1,115.80072,TJ,CH4,3.9,kg/TJ,451.62280799999996,Gas Oil combustion consumption by freight transport,AR-N,SESCO,annual,kg,fd7bfd44-fc08-30a6-942f-ef4db5035a8a -2020,Misiones,II.1.1,115.80072,TJ,N2O,3.9,kg/TJ,451.62280799999996,Gas Oil combustion consumption by freight transport,AR-N,SESCO,annual,kg,fd7bfd44-fc08-30a6-942f-ef4db5035a8a -2020,Neuquén,II.1.1,739.3041599999999,TJ,CO2,74100.0,kg/TJ,54782438.25599999,Gas Oil combustion consumption by freight transport,AR-Q,SESCO,annual,kg,e63d7317-fe2f-39f0-b3d7-77f7221ee47c -2020,Neuquén,II.1.1,739.3041599999999,TJ,CH4,3.9,kg/TJ,2883.2862239999995,Gas Oil combustion consumption by freight transport,AR-Q,SESCO,annual,kg,577adc13-0e92-3e59-8832-3a10bfc7f275 -2020,Neuquén,II.1.1,739.3041599999999,TJ,N2O,3.9,kg/TJ,2883.2862239999995,Gas Oil combustion consumption by freight transport,AR-Q,SESCO,annual,kg,577adc13-0e92-3e59-8832-3a10bfc7f275 -2020,Rio Negro,II.1.1,254.82659999999998,TJ,CO2,74100.0,kg/TJ,18882651.06,Gas Oil combustion consumption by freight transport,AR-R,SESCO,annual,kg,bb0c8bb3-2027-3619-8ac6-9ed0e88a8ccb -2020,Rio Negro,II.1.1,254.82659999999998,TJ,CH4,3.9,kg/TJ,993.8237399999999,Gas Oil combustion consumption by freight transport,AR-R,SESCO,annual,kg,a7ae737f-93eb-3446-8c21-61b379563306 -2020,Rio Negro,II.1.1,254.82659999999998,TJ,N2O,3.9,kg/TJ,993.8237399999999,Gas Oil combustion consumption by freight transport,AR-R,SESCO,annual,kg,a7ae737f-93eb-3446-8c21-61b379563306 -2020,Salta,II.1.1,160.44504,TJ,CO2,74100.0,kg/TJ,11888977.464,Gas Oil combustion consumption by freight transport,AR-A,SESCO,annual,kg,337bb958-5796-3313-a850-f9ed70e9948c -2020,Salta,II.1.1,160.44504,TJ,CH4,3.9,kg/TJ,625.7356560000001,Gas Oil combustion consumption by freight transport,AR-A,SESCO,annual,kg,a0bee2e2-40da-3b61-81e9-2328132fd9f6 -2020,Salta,II.1.1,160.44504,TJ,N2O,3.9,kg/TJ,625.7356560000001,Gas Oil combustion consumption by freight transport,AR-A,SESCO,annual,kg,a0bee2e2-40da-3b61-81e9-2328132fd9f6 -2020,San Juan,II.1.1,34.96416,TJ,CO2,74100.0,kg/TJ,2590844.256,Gas Oil combustion consumption by freight transport,AR-J,SESCO,annual,kg,ff1a12f9-ad57-3b74-8979-8f214191bbe4 -2020,San Juan,II.1.1,34.96416,TJ,CH4,3.9,kg/TJ,136.360224,Gas Oil combustion consumption by freight transport,AR-J,SESCO,annual,kg,8d7a2f0c-6559-32d4-a291-eade27e84544 -2020,San Juan,II.1.1,34.96416,TJ,N2O,3.9,kg/TJ,136.360224,Gas Oil combustion consumption by freight transport,AR-J,SESCO,annual,kg,8d7a2f0c-6559-32d4-a291-eade27e84544 -2020,San Luis,II.1.1,73.21524,TJ,CO2,74100.0,kg/TJ,5425249.284,Gas Oil combustion consumption by freight transport,AR-D,SESCO,annual,kg,d558c730-0e29-3d53-acca-5b63cb56b0a6 -2020,San Luis,II.1.1,73.21524,TJ,CH4,3.9,kg/TJ,285.53943599999997,Gas Oil combustion consumption by freight transport,AR-D,SESCO,annual,kg,30ec6655-7c61-362c-9554-4e8dbae38b53 -2020,San Luis,II.1.1,73.21524,TJ,N2O,3.9,kg/TJ,285.53943599999997,Gas Oil combustion consumption by freight transport,AR-D,SESCO,annual,kg,30ec6655-7c61-362c-9554-4e8dbae38b53 -2020,Santa Cruz,II.1.1,79.68072,TJ,CO2,74100.0,kg/TJ,5904341.352,Gas Oil combustion consumption by freight transport,AR-Z,SESCO,annual,kg,fe26b398-ece3-3daa-86e5-3245348d508a -2020,Santa Cruz,II.1.1,79.68072,TJ,CH4,3.9,kg/TJ,310.75480799999997,Gas Oil combustion consumption by freight transport,AR-Z,SESCO,annual,kg,da965319-1e93-3847-aa09-e711990b162a -2020,Santa Cruz,II.1.1,79.68072,TJ,N2O,3.9,kg/TJ,310.75480799999997,Gas Oil combustion consumption by freight transport,AR-Z,SESCO,annual,kg,da965319-1e93-3847-aa09-e711990b162a -2020,Santa Fe,II.1.1,605.01,TJ,CO2,74100.0,kg/TJ,44831241.0,Gas Oil combustion consumption by freight transport,AR-S,SESCO,annual,kg,79bb1741-b9fe-3d57-98ba-dbeaf96ba4b8 -2020,Santa Fe,II.1.1,605.01,TJ,CH4,3.9,kg/TJ,2359.5389999999998,Gas Oil combustion consumption by freight transport,AR-S,SESCO,annual,kg,f5018d33-9b2b-3bf4-be9a-d200974fcd35 -2020,Santa Fe,II.1.1,605.01,TJ,N2O,3.9,kg/TJ,2359.5389999999998,Gas Oil combustion consumption by freight transport,AR-S,SESCO,annual,kg,f5018d33-9b2b-3bf4-be9a-d200974fcd35 -2020,Santiago del Estero,II.1.1,31.20768,TJ,CO2,74100.0,kg/TJ,2312489.088,Gas Oil combustion consumption by freight transport,AR-G,SESCO,annual,kg,61d9576c-f2fe-33f9-b852-6f6a3d8b4a29 -2020,Santiago del Estero,II.1.1,31.20768,TJ,CH4,3.9,kg/TJ,121.709952,Gas Oil combustion consumption by freight transport,AR-G,SESCO,annual,kg,0022d649-63b2-3576-b8fd-5e59276e8ec1 -2020,Santiago del Estero,II.1.1,31.20768,TJ,N2O,3.9,kg/TJ,121.709952,Gas Oil combustion consumption by freight transport,AR-G,SESCO,annual,kg,0022d649-63b2-3576-b8fd-5e59276e8ec1 -2020,Tierra del Fuego,II.1.1,76.50216,TJ,CO2,74100.0,kg/TJ,5668810.056,Gas Oil combustion consumption by freight transport,AR-V,SESCO,annual,kg,ad358f4f-6341-3d69-8a5d-c589aeca16ad -2020,Tierra del Fuego,II.1.1,76.50216,TJ,CH4,3.9,kg/TJ,298.358424,Gas Oil combustion consumption by freight transport,AR-V,SESCO,annual,kg,55263a89-391b-353e-b1c7-5fd36fac3337 -2020,Tierra del Fuego,II.1.1,76.50216,TJ,N2O,3.9,kg/TJ,298.358424,Gas Oil combustion consumption by freight transport,AR-V,SESCO,annual,kg,55263a89-391b-353e-b1c7-5fd36fac3337 -2020,Tucuman,II.1.1,119.15988,TJ,CO2,74100.0,kg/TJ,8829747.108000001,Gas Oil combustion consumption by freight transport,AR-T,SESCO,annual,kg,e9cc83fd-0c4c-35d9-8fce-1caa7b51797d -2020,Tucuman,II.1.1,119.15988,TJ,CH4,3.9,kg/TJ,464.723532,Gas Oil combustion consumption by freight transport,AR-T,SESCO,annual,kg,40218d9d-0704-3270-9cc3-0d49cc8a7801 -2020,Tucuman,II.1.1,119.15988,TJ,N2O,3.9,kg/TJ,464.723532,Gas Oil combustion consumption by freight transport,AR-T,SESCO,annual,kg,40218d9d-0704-3270-9cc3-0d49cc8a7801 -2020,Buenos Aires,II.1.1,0.22017099999999998,TJ,CO2,71500.0,kg/TJ,15742.226499999999,Jet Kerosene combustion consumption by freight transport,AR-B,SESCO,annual,kg,247f0ff9-6ab7-37e7-980e-925af7ff0737 -2020,Buenos Aires,II.1.1,0.22017099999999998,TJ,CH4,0.5,kg/TJ,0.11008549999999999,Jet Kerosene combustion consumption by freight transport,AR-B,SESCO,annual,kg,0ac29aff-93c9-32f3-bee2-1cb01e8f7166 -2020,Buenos Aires,II.1.1,0.22017099999999998,TJ,N2O,2.0,kg/TJ,0.44034199999999996,Jet Kerosene combustion consumption by freight transport,AR-B,SESCO,annual,kg,bf50ba2f-4e06-30f6-8f65-f0dad0ec0335 -2020,Buenos Aires,II.1.1,305.061295,TJ,CO2,73300.0,kg/TJ,22360992.923499998,Naphtha combustion consumption by freight transport,AR-B,SESCO,annual,kg,d2a4099b-89d1-3cc5-b3be-ee59f9cc4051 -2020,Buenos Aires,II.1.1,305.061295,TJ,CH4,0.5,kg/TJ,152.5306475,Naphtha combustion consumption by freight transport,AR-B,SESCO,annual,kg,2048d4d5-5e3d-3e2c-9e9f-8a6eb617ea5d -2020,Buenos Aires,II.1.1,305.061295,TJ,N2O,2.0,kg/TJ,610.12259,Naphtha combustion consumption by freight transport,AR-B,SESCO,annual,kg,a35a7b16-0e2d-30d0-9ad3-23afd758ec7e -2020,Capital Federal,II.1.1,342.821325,TJ,CO2,73300.0,kg/TJ,25128803.1225,Naphtha combustion consumption by freight transport,AR-C,SESCO,annual,kg,73927619-ba3f-3952-99eb-21443d3928b5 -2020,Capital Federal,II.1.1,342.821325,TJ,CH4,0.5,kg/TJ,171.4106625,Naphtha combustion consumption by freight transport,AR-C,SESCO,annual,kg,b63aafc8-c63e-3e3b-8d5f-ae838dd34eb4 -2020,Capital Federal,II.1.1,342.821325,TJ,N2O,2.0,kg/TJ,685.64265,Naphtha combustion consumption by freight transport,AR-C,SESCO,annual,kg,3b4b9b57-e566-3b1c-97b2-2b0ef6dd75fe -2020,Catamarca,II.1.1,0.23985499999999998,TJ,CO2,73300.0,kg/TJ,17581.371499999997,Naphtha combustion consumption by freight transport,AR-K,SESCO,annual,kg,8ad01320-37cf-38bf-953d-3adecb4ec3d0 -2020,Catamarca,II.1.1,0.23985499999999998,TJ,CH4,0.5,kg/TJ,0.11992749999999999,Naphtha combustion consumption by freight transport,AR-K,SESCO,annual,kg,11df5d99-06c8-3568-87c3-5b44df5b242a -2020,Catamarca,II.1.1,0.23985499999999998,TJ,N2O,2.0,kg/TJ,0.47970999999999997,Naphtha combustion consumption by freight transport,AR-K,SESCO,annual,kg,2b4079ed-57aa-3d93-913e-2cc06316fd5c -2020,Chaco,II.1.1,14.185709999999998,TJ,CO2,73300.0,kg/TJ,1039812.543,Naphtha combustion consumption by freight transport,AR-H,SESCO,annual,kg,afec34ac-d69d-35fa-b2a5-502aae4f12fd -2020,Chaco,II.1.1,14.185709999999998,TJ,CH4,0.5,kg/TJ,7.092854999999999,Naphtha combustion consumption by freight transport,AR-H,SESCO,annual,kg,0ec8a244-8515-3643-bb1c-7f67747e9a07 -2020,Chaco,II.1.1,14.185709999999998,TJ,N2O,2.0,kg/TJ,28.371419999999997,Naphtha combustion consumption by freight transport,AR-H,SESCO,annual,kg,8179bb3b-4643-3d25-8e37-8f24558a25c1 -2020,Chubut,II.1.1,21.826805,TJ,CO2,73300.0,kg/TJ,1599904.8065,Naphtha combustion consumption by freight transport,AR-U,SESCO,annual,kg,0bc48f24-ad41-3faf-bbc8-5b9dbba8e4c3 -2020,Chubut,II.1.1,21.826805,TJ,CH4,0.5,kg/TJ,10.9134025,Naphtha combustion consumption by freight transport,AR-U,SESCO,annual,kg,c24c8ebf-dbf4-3661-892b-666907cf92a7 -2020,Chubut,II.1.1,21.826805,TJ,N2O,2.0,kg/TJ,43.65361,Naphtha combustion consumption by freight transport,AR-U,SESCO,annual,kg,34ee152d-81e0-3cbd-aa98-03d87e6a80b8 -2020,Corrientes,II.1.1,8.874635,TJ,CO2,73300.0,kg/TJ,650510.7455,Naphtha combustion consumption by freight transport,AR-W,SESCO,annual,kg,afee585f-78a0-3d21-9acd-8f395564733b -2020,Corrientes,II.1.1,8.874635,TJ,CH4,0.5,kg/TJ,4.4373175,Naphtha combustion consumption by freight transport,AR-W,SESCO,annual,kg,6b3670c4-c24f-30af-9492-f04cccf45c6d -2020,Corrientes,II.1.1,8.874635,TJ,N2O,2.0,kg/TJ,17.74927,Naphtha combustion consumption by freight transport,AR-W,SESCO,annual,kg,f4da09f6-9515-3c79-90d9-c7f0732314f3 -2020,Córdoba,II.1.1,65.75453499999999,TJ,CO2,73300.0,kg/TJ,4819807.415499999,Naphtha combustion consumption by freight transport,AR-X,SESCO,annual,kg,ade4eee6-f99c-3815-993d-94339f491e6d -2020,Córdoba,II.1.1,65.75453499999999,TJ,CH4,0.5,kg/TJ,32.877267499999995,Naphtha combustion consumption by freight transport,AR-X,SESCO,annual,kg,30084b83-8b27-32ce-8881-f4a5aa154c2c -2020,Córdoba,II.1.1,65.75453499999999,TJ,N2O,2.0,kg/TJ,131.50906999999998,Naphtha combustion consumption by freight transport,AR-X,SESCO,annual,kg,b0d3364f-8e19-3d54-b859-df8fd5c3403f -2020,Entre Rios,II.1.1,21.107239999999997,TJ,CO2,73300.0,kg/TJ,1547160.6919999998,Naphtha combustion consumption by freight transport,AR-E,SESCO,annual,kg,7e1e038c-6031-3eb7-9980-e8c7c753a948 -2020,Entre Rios,II.1.1,21.107239999999997,TJ,CH4,0.5,kg/TJ,10.553619999999999,Naphtha combustion consumption by freight transport,AR-E,SESCO,annual,kg,23388823-4285-3203-95d1-042d8879f4e3 -2020,Entre Rios,II.1.1,21.107239999999997,TJ,N2O,2.0,kg/TJ,42.214479999999995,Naphtha combustion consumption by freight transport,AR-E,SESCO,annual,kg,ca50a495-927c-3162-a718-2da523718ff2 -2020,Formosa,II.1.1,0.5825049999999999,TJ,CO2,73300.0,kg/TJ,42697.6165,Naphtha combustion consumption by freight transport,AR-P,SESCO,annual,kg,0cb32d2b-e8a0-3bbe-8bfa-e9d8b8aee329 -2020,Formosa,II.1.1,0.5825049999999999,TJ,CH4,0.5,kg/TJ,0.29125249999999997,Naphtha combustion consumption by freight transport,AR-P,SESCO,annual,kg,4151f9f0-b1df-337a-b567-ef497c7dffd3 -2020,Formosa,II.1.1,0.5825049999999999,TJ,N2O,2.0,kg/TJ,1.1650099999999999,Naphtha combustion consumption by freight transport,AR-P,SESCO,annual,kg,0906fd25-a575-35b3-933a-29597648fe38 -2020,Jujuy,II.1.1,2.4670799999999997,TJ,CO2,73300.0,kg/TJ,180836.96399999998,Naphtha combustion consumption by freight transport,AR-Y,SESCO,annual,kg,992e02ba-4c23-3dc6-9437-69c2450fecbf -2020,Jujuy,II.1.1,2.4670799999999997,TJ,CH4,0.5,kg/TJ,1.2335399999999999,Naphtha combustion consumption by freight transport,AR-Y,SESCO,annual,kg,10cf0727-2a40-34c5-b933-a5e2a39323fd -2020,Jujuy,II.1.1,2.4670799999999997,TJ,N2O,2.0,kg/TJ,4.934159999999999,Naphtha combustion consumption by freight transport,AR-Y,SESCO,annual,kg,6cad5fec-649b-3f5a-ac3a-1ed1e94310f8 -2020,La Pampa,II.1.1,7.435505,TJ,CO2,73300.0,kg/TJ,545022.5165,Naphtha combustion consumption by freight transport,AR-L,SESCO,annual,kg,68daeb00-ce34-3e6a-93e5-7161ab651aa5 -2020,La Pampa,II.1.1,7.435505,TJ,CH4,0.5,kg/TJ,3.7177525,Naphtha combustion consumption by freight transport,AR-L,SESCO,annual,kg,8739c29e-c00d-358f-83bb-37793cc199d6 -2020,La Pampa,II.1.1,7.435505,TJ,N2O,2.0,kg/TJ,14.87101,Naphtha combustion consumption by freight transport,AR-L,SESCO,annual,kg,332bc60e-7136-3bcf-8fad-305fa60d1aa8 -2020,La Rioja,II.1.1,0.719565,TJ,CO2,73300.0,kg/TJ,52744.1145,Naphtha combustion consumption by freight transport,AR-F,SESCO,annual,kg,3460524f-e98b-3108-9287-e09d38505112 -2020,La Rioja,II.1.1,0.719565,TJ,CH4,0.5,kg/TJ,0.3597825,Naphtha combustion consumption by freight transport,AR-F,SESCO,annual,kg,4a16993c-1b1f-30b5-8af7-aa8c10946ad2 -2020,La Rioja,II.1.1,0.719565,TJ,N2O,2.0,kg/TJ,1.43913,Naphtha combustion consumption by freight transport,AR-F,SESCO,annual,kg,0251bc95-f6e3-3dd3-97db-68bb3e97b343 -2020,Mendoza,II.1.1,29.981875,TJ,CO2,73300.0,kg/TJ,2197671.4375,Naphtha combustion consumption by freight transport,AR-M,SESCO,annual,kg,aa20c41c-8d37-3715-a209-879de7692b1a -2020,Mendoza,II.1.1,29.981875,TJ,CH4,0.5,kg/TJ,14.9909375,Naphtha combustion consumption by freight transport,AR-M,SESCO,annual,kg,178124c6-f024-3299-9b82-890943be5f01 -2020,Mendoza,II.1.1,29.981875,TJ,N2O,2.0,kg/TJ,59.96375,Naphtha combustion consumption by freight transport,AR-M,SESCO,annual,kg,72650772-9996-337f-998a-da6b030eccb4 -2020,Misiones,II.1.1,6.92153,TJ,CO2,73300.0,kg/TJ,507348.149,Naphtha combustion consumption by freight transport,AR-N,SESCO,annual,kg,23e922fc-a2e7-3739-8a13-21e5fa464cfb -2020,Misiones,II.1.1,6.92153,TJ,CH4,0.5,kg/TJ,3.460765,Naphtha combustion consumption by freight transport,AR-N,SESCO,annual,kg,a97e8368-92cb-3f96-8380-faf8a5766d05 -2020,Misiones,II.1.1,6.92153,TJ,N2O,2.0,kg/TJ,13.84306,Naphtha combustion consumption by freight transport,AR-N,SESCO,annual,kg,7a614fc3-e49f-3204-95db-76b5ca6dfeb4 -2020,Neuquén,II.1.1,8.70331,TJ,CO2,73300.0,kg/TJ,637952.623,Naphtha combustion consumption by freight transport,AR-Q,SESCO,annual,kg,5d51ab61-eab7-36d2-91bb-471a89fce22e -2020,Neuquén,II.1.1,8.70331,TJ,CH4,0.5,kg/TJ,4.351655,Naphtha combustion consumption by freight transport,AR-Q,SESCO,annual,kg,554e4d55-f7c9-3382-93ff-010956cfe28f -2020,Neuquén,II.1.1,8.70331,TJ,N2O,2.0,kg/TJ,17.40662,Naphtha combustion consumption by freight transport,AR-Q,SESCO,annual,kg,43f920c2-c2da-3251-a614-959d2f61b5cc -2020,Rio Negro,II.1.1,15.898959999999999,TJ,CO2,73300.0,kg/TJ,1165393.768,Naphtha combustion consumption by freight transport,AR-R,SESCO,annual,kg,7e111267-92ed-3f99-b4b7-2d6fdd7c3b93 -2020,Rio Negro,II.1.1,15.898959999999999,TJ,CH4,0.5,kg/TJ,7.949479999999999,Naphtha combustion consumption by freight transport,AR-R,SESCO,annual,kg,887df99a-61fe-3d5b-926b-355f7a98cc38 -2020,Rio Negro,II.1.1,15.898959999999999,TJ,N2O,2.0,kg/TJ,31.797919999999998,Naphtha combustion consumption by freight transport,AR-R,SESCO,annual,kg,de816068-1376-308b-b111-1600dd7f2f15 -2020,Salta,II.1.1,17.26956,TJ,CO2,73300.0,kg/TJ,1265858.748,Naphtha combustion consumption by freight transport,AR-A,SESCO,annual,kg,9d593660-73a0-37b4-8ea4-3db623d88fe8 -2020,Salta,II.1.1,17.26956,TJ,CH4,0.5,kg/TJ,8.63478,Naphtha combustion consumption by freight transport,AR-A,SESCO,annual,kg,cdf34225-2ee4-30b1-8312-03c7f15adab2 -2020,Salta,II.1.1,17.26956,TJ,N2O,2.0,kg/TJ,34.53912,Naphtha combustion consumption by freight transport,AR-A,SESCO,annual,kg,842e12d8-4591-3db3-8302-e8d1e43ffa75 -2020,San Juan,II.1.1,4.38592,TJ,CO2,73300.0,kg/TJ,321487.936,Naphtha combustion consumption by freight transport,AR-J,SESCO,annual,kg,6e870dfe-288f-38da-a606-26befda32fd2 -2020,San Juan,II.1.1,4.38592,TJ,CH4,0.5,kg/TJ,2.19296,Naphtha combustion consumption by freight transport,AR-J,SESCO,annual,kg,a2eef555-34ee-3e0c-9324-f2e5cef9fc77 -2020,San Juan,II.1.1,4.38592,TJ,N2O,2.0,kg/TJ,8.77184,Naphtha combustion consumption by freight transport,AR-J,SESCO,annual,kg,ed912f56-433e-3515-8199-a0a9a0104745 -2020,San Luis,II.1.1,4.694305,TJ,CO2,73300.0,kg/TJ,344092.5565,Naphtha combustion consumption by freight transport,AR-D,SESCO,annual,kg,caf43eea-491a-3ac3-af4d-6a72fdfe81a0 -2020,San Luis,II.1.1,4.694305,TJ,CH4,0.5,kg/TJ,2.3471525,Naphtha combustion consumption by freight transport,AR-D,SESCO,annual,kg,8d93ff66-3ba2-32b4-a9dc-ba65a2238f1f -2020,San Luis,II.1.1,4.694305,TJ,N2O,2.0,kg/TJ,9.38861,Naphtha combustion consumption by freight transport,AR-D,SESCO,annual,kg,62f14a4c-d1dc-3af8-b9a0-6883b0c34f0c -2020,Santa Cruz,II.1.1,2.6041399999999997,TJ,CO2,73300.0,kg/TJ,190883.46199999997,Naphtha combustion consumption by freight transport,AR-Z,SESCO,annual,kg,bff6e1bf-a645-3713-98ca-9871d29fa07a -2020,Santa Cruz,II.1.1,2.6041399999999997,TJ,CH4,0.5,kg/TJ,1.3020699999999998,Naphtha combustion consumption by freight transport,AR-Z,SESCO,annual,kg,0b0754b8-0933-3f5d-a2a1-8151b90b5b8c -2020,Santa Cruz,II.1.1,2.6041399999999997,TJ,N2O,2.0,kg/TJ,5.208279999999999,Naphtha combustion consumption by freight transport,AR-Z,SESCO,annual,kg,7c3869e9-c0b8-3459-8349-19281ec4ef93 -2020,Santa Fe,II.1.1,59.27845,TJ,CO2,73300.0,kg/TJ,4345110.385,Naphtha combustion consumption by freight transport,AR-S,SESCO,annual,kg,d3687c51-08f2-3528-a6d4-e3681a868845 -2020,Santa Fe,II.1.1,59.27845,TJ,CH4,0.5,kg/TJ,29.639225,Naphtha combustion consumption by freight transport,AR-S,SESCO,annual,kg,53f5013f-eea9-3ef7-9443-4d884df25ce1 -2020,Santa Fe,II.1.1,59.27845,TJ,N2O,2.0,kg/TJ,118.5569,Naphtha combustion consumption by freight transport,AR-S,SESCO,annual,kg,d7ce1d93-69ef-361d-9bb5-30ddcd5d9049 -2020,Santiago del Estero,II.1.1,1.130745,TJ,CO2,73300.0,kg/TJ,82883.60849999999,Naphtha combustion consumption by freight transport,AR-G,SESCO,annual,kg,1556077b-2a47-3d9b-ae30-37a88fb1994e -2020,Santiago del Estero,II.1.1,1.130745,TJ,CH4,0.5,kg/TJ,0.5653725,Naphtha combustion consumption by freight transport,AR-G,SESCO,annual,kg,c7706b79-06ec-318e-abef-23b10bd9d6d9 -2020,Santiago del Estero,II.1.1,1.130745,TJ,N2O,2.0,kg/TJ,2.26149,Naphtha combustion consumption by freight transport,AR-G,SESCO,annual,kg,86038fc0-7d85-3ae1-898e-62e8031b1a8a -2020,Tierra del Fuego,II.1.1,8.77184,TJ,CO2,73300.0,kg/TJ,642975.872,Naphtha combustion consumption by freight transport,AR-V,SESCO,annual,kg,eb8ecb51-b507-3ace-a1a3-5299ee9669ec -2020,Tierra del Fuego,II.1.1,8.77184,TJ,CH4,0.5,kg/TJ,4.38592,Naphtha combustion consumption by freight transport,AR-V,SESCO,annual,kg,d256670a-263a-32d1-ad2b-5d0c1ec25a95 -2020,Tierra del Fuego,II.1.1,8.77184,TJ,N2O,2.0,kg/TJ,17.54368,Naphtha combustion consumption by freight transport,AR-V,SESCO,annual,kg,37e9412e-6b66-3ae6-a6b2-74d1246d48d0 -2020,Tucuman,II.1.1,16.070285,TJ,CO2,73300.0,kg/TJ,1177951.8905,Naphtha combustion consumption by freight transport,AR-T,SESCO,annual,kg,debfec48-c8b9-36fc-bb18-980acf8cfaf8 -2020,Tucuman,II.1.1,16.070285,TJ,CH4,0.5,kg/TJ,8.0351425,Naphtha combustion consumption by freight transport,AR-T,SESCO,annual,kg,2f189e49-9898-33d8-a492-c7a3601449ea -2020,Tucuman,II.1.1,16.070285,TJ,N2O,2.0,kg/TJ,32.14057,Naphtha combustion consumption by freight transport,AR-T,SESCO,annual,kg,3ca7e4e4-2fbc-3a4b-9f12-eda3d508523d -2020,Buenos Aires,II.1.1,200.58731,TJ,CO2,73300.0,kg/TJ,14703049.823,Naphtha combustion consumption by freight transport,AR-B,SESCO,annual,kg,038da3ce-2507-3eac-83b0-d181245b0e37 -2020,Buenos Aires,II.1.1,200.58731,TJ,CH4,0.5,kg/TJ,100.293655,Naphtha combustion consumption by freight transport,AR-B,SESCO,annual,kg,a29016e8-2fc6-3b54-a43d-b91b84d00c7a -2020,Buenos Aires,II.1.1,200.58731,TJ,N2O,2.0,kg/TJ,401.17462,Naphtha combustion consumption by freight transport,AR-B,SESCO,annual,kg,690befb3-6f0d-3271-87f1-2f7ec5fe2b63 -2020,Capital Federal,II.1.1,322.60497499999997,TJ,CO2,73300.0,kg/TJ,23646944.667499997,Naphtha combustion consumption by freight transport,AR-C,SESCO,annual,kg,1b451e9a-a5c0-3a58-bec4-26b78b150b46 -2020,Capital Federal,II.1.1,322.60497499999997,TJ,CH4,0.5,kg/TJ,161.30248749999998,Naphtha combustion consumption by freight transport,AR-C,SESCO,annual,kg,63f8aca8-6c5d-3849-81b1-819ff84aa003 -2020,Capital Federal,II.1.1,322.60497499999997,TJ,N2O,2.0,kg/TJ,645.2099499999999,Naphtha combustion consumption by freight transport,AR-C,SESCO,annual,kg,ee0a8e65-75cc-329d-819d-53942fa955a5 -2020,Catamarca,II.1.1,0.13706,TJ,CO2,73300.0,kg/TJ,10046.498,Naphtha combustion consumption by freight transport,AR-K,SESCO,annual,kg,72b89e92-6a40-38b4-ada6-b915654d6288 -2020,Catamarca,II.1.1,0.13706,TJ,CH4,0.5,kg/TJ,0.06853,Naphtha combustion consumption by freight transport,AR-K,SESCO,annual,kg,1d711ea2-d1f8-328c-ad2c-1564c3877c4a -2020,Catamarca,II.1.1,0.13706,TJ,N2O,2.0,kg/TJ,0.27412,Naphtha combustion consumption by freight transport,AR-K,SESCO,annual,kg,7125772f-a68d-325b-a75d-11430cb70e59 -2020,Chaco,II.1.1,5.55093,TJ,CO2,73300.0,kg/TJ,406883.169,Naphtha combustion consumption by freight transport,AR-H,SESCO,annual,kg,4ffd3762-25f8-3d22-a612-28d6cfa3abf7 -2020,Chaco,II.1.1,5.55093,TJ,CH4,0.5,kg/TJ,2.775465,Naphtha combustion consumption by freight transport,AR-H,SESCO,annual,kg,bc07619c-87be-3add-8f1c-a6729002e0f0 -2020,Chaco,II.1.1,5.55093,TJ,N2O,2.0,kg/TJ,11.10186,Naphtha combustion consumption by freight transport,AR-H,SESCO,annual,kg,896b18da-532a-3083-87cb-fba3ef4dccb2 -2020,Chubut,II.1.1,9.04596,TJ,CO2,73300.0,kg/TJ,663068.8679999999,Naphtha combustion consumption by freight transport,AR-U,SESCO,annual,kg,e051897d-cab3-3b37-8c47-84741fe14981 -2020,Chubut,II.1.1,9.04596,TJ,CH4,0.5,kg/TJ,4.52298,Naphtha combustion consumption by freight transport,AR-U,SESCO,annual,kg,d6ef7fca-ce0a-30ae-a7cb-3f2406dac3bc -2020,Chubut,II.1.1,9.04596,TJ,N2O,2.0,kg/TJ,18.09192,Naphtha combustion consumption by freight transport,AR-U,SESCO,annual,kg,ac48bc7c-e9f4-3265-b747-6fcbf7cf3c23 -2020,Corrientes,II.1.1,11.204654999999999,TJ,CO2,73300.0,kg/TJ,821301.2115,Naphtha combustion consumption by freight transport,AR-W,SESCO,annual,kg,bceb185f-c736-31a6-a1e2-0c63897fa224 -2020,Corrientes,II.1.1,11.204654999999999,TJ,CH4,0.5,kg/TJ,5.6023274999999995,Naphtha combustion consumption by freight transport,AR-W,SESCO,annual,kg,dcb684cc-daab-3395-bd55-aa4323d01ead -2020,Corrientes,II.1.1,11.204654999999999,TJ,N2O,2.0,kg/TJ,22.409309999999998,Naphtha combustion consumption by freight transport,AR-W,SESCO,annual,kg,9532bfaa-2566-3575-8368-6d9b18b23f8c -2020,Córdoba,II.1.1,137.19706,TJ,CO2,73300.0,kg/TJ,10056544.498,Naphtha combustion consumption by freight transport,AR-X,SESCO,annual,kg,0540e941-e9e6-32a9-8d14-9c9038a09616 -2020,Córdoba,II.1.1,137.19706,TJ,CH4,0.5,kg/TJ,68.59853,Naphtha combustion consumption by freight transport,AR-X,SESCO,annual,kg,0ec5664e-ef1e-3d71-b105-8f4723c0862d -2020,Córdoba,II.1.1,137.19706,TJ,N2O,2.0,kg/TJ,274.39412,Naphtha combustion consumption by freight transport,AR-X,SESCO,annual,kg,ded12499-72ac-3fa8-a786-e6d634062bd3 -2020,Entre Rios,II.1.1,18.674425,TJ,CO2,73300.0,kg/TJ,1368835.3525,Naphtha combustion consumption by freight transport,AR-E,SESCO,annual,kg,00b91d7e-c4ad-3136-95b3-3302615bbcc1 -2020,Entre Rios,II.1.1,18.674425,TJ,CH4,0.5,kg/TJ,9.3372125,Naphtha combustion consumption by freight transport,AR-E,SESCO,annual,kg,cebfdbb0-4eb5-34e6-8aba-40546b16b8c8 -2020,Entre Rios,II.1.1,18.674425,TJ,N2O,2.0,kg/TJ,37.34885,Naphtha combustion consumption by freight transport,AR-E,SESCO,annual,kg,678d2c21-369c-3835-a95c-952a3ecd2841 -2020,Formosa,II.1.1,0.41118,TJ,CO2,73300.0,kg/TJ,30139.494,Naphtha combustion consumption by freight transport,AR-P,SESCO,annual,kg,cfc5f0e2-b072-3f42-85a4-ff06ff44342b -2020,Formosa,II.1.1,0.41118,TJ,CH4,0.5,kg/TJ,0.20559,Naphtha combustion consumption by freight transport,AR-P,SESCO,annual,kg,c2996b02-c94a-3b62-bfe3-18945f5e1538 -2020,Formosa,II.1.1,0.41118,TJ,N2O,2.0,kg/TJ,0.82236,Naphtha combustion consumption by freight transport,AR-P,SESCO,annual,kg,936983df-702f-31f5-86ff-904e5534652a -2020,Jujuy,II.1.1,1.884575,TJ,CO2,73300.0,kg/TJ,138139.3475,Naphtha combustion consumption by freight transport,AR-Y,SESCO,annual,kg,54dee388-01f3-34b9-ba73-3dee7eb5a3f0 -2020,Jujuy,II.1.1,1.884575,TJ,CH4,0.5,kg/TJ,0.9422875,Naphtha combustion consumption by freight transport,AR-Y,SESCO,annual,kg,e78e827b-e8da-3d75-9084-e08538a6eaa8 -2020,Jujuy,II.1.1,1.884575,TJ,N2O,2.0,kg/TJ,3.76915,Naphtha combustion consumption by freight transport,AR-Y,SESCO,annual,kg,97057218-8f1f-359b-b27d-5d54fba32ad5 -2020,La Pampa,II.1.1,3.9062099999999997,TJ,CO2,73300.0,kg/TJ,286325.19299999997,Naphtha combustion consumption by freight transport,AR-L,SESCO,annual,kg,6b657626-6696-3907-aa46-dfc93bb3242c -2020,La Pampa,II.1.1,3.9062099999999997,TJ,CH4,0.5,kg/TJ,1.9531049999999999,Naphtha combustion consumption by freight transport,AR-L,SESCO,annual,kg,9e0e57d8-6b2f-3450-8791-97d4a7b10df8 -2020,La Pampa,II.1.1,3.9062099999999997,TJ,N2O,2.0,kg/TJ,7.8124199999999995,Naphtha combustion consumption by freight transport,AR-L,SESCO,annual,kg,51258215-060c-3fed-b20c-1bd4ef3d3dc3 -2020,La Rioja,II.1.1,2.3642849999999997,TJ,CO2,73300.0,kg/TJ,173302.0905,Naphtha combustion consumption by freight transport,AR-F,SESCO,annual,kg,d99e6b92-6b35-3b17-bcc2-e25ac405824d -2020,La Rioja,II.1.1,2.3642849999999997,TJ,CH4,0.5,kg/TJ,1.1821424999999999,Naphtha combustion consumption by freight transport,AR-F,SESCO,annual,kg,45a4dc48-6f69-3954-a7d5-52f3e38325d5 -2020,La Rioja,II.1.1,2.3642849999999997,TJ,N2O,2.0,kg/TJ,4.7285699999999995,Naphtha combustion consumption by freight transport,AR-F,SESCO,annual,kg,b80a2f04-529b-326f-9f51-c9994a5914fc -2020,Mendoza,II.1.1,49.27307,TJ,CO2,73300.0,kg/TJ,3611716.031,Naphtha combustion consumption by freight transport,AR-M,SESCO,annual,kg,4d7d5776-7ddc-3efb-81d3-bb4e9a1811de -2020,Mendoza,II.1.1,49.27307,TJ,CH4,0.5,kg/TJ,24.636535,Naphtha combustion consumption by freight transport,AR-M,SESCO,annual,kg,272d084f-3793-33a5-9c3f-b34345a3b485 -2020,Mendoza,II.1.1,49.27307,TJ,N2O,2.0,kg/TJ,98.54614,Naphtha combustion consumption by freight transport,AR-M,SESCO,annual,kg,b690e528-c8aa-3fb8-801e-ec2538923a85 -2020,Misiones,II.1.1,8.36066,TJ,CO2,73300.0,kg/TJ,612836.3779999999,Naphtha combustion consumption by freight transport,AR-N,SESCO,annual,kg,fb90927e-bf6f-3e6d-b785-b3248c59cdd6 -2020,Misiones,II.1.1,8.36066,TJ,CH4,0.5,kg/TJ,4.18033,Naphtha combustion consumption by freight transport,AR-N,SESCO,annual,kg,1de1a5c8-27d5-3744-8425-dab10cba6c96 -2020,Misiones,II.1.1,8.36066,TJ,N2O,2.0,kg/TJ,16.72132,Naphtha combustion consumption by freight transport,AR-N,SESCO,annual,kg,cead1fed-5ead-3e9f-88e6-2e7bd0d0576e -2020,Neuquén,II.1.1,24.773595,TJ,CO2,73300.0,kg/TJ,1815904.5135000001,Naphtha combustion consumption by freight transport,AR-Q,SESCO,annual,kg,a8b80955-70ed-3017-a63b-a8c1b6ea18e0 -2020,Neuquén,II.1.1,24.773595,TJ,CH4,0.5,kg/TJ,12.3867975,Naphtha combustion consumption by freight transport,AR-Q,SESCO,annual,kg,387fb11b-e88f-3b2f-9f0a-36810b942cba -2020,Neuquén,II.1.1,24.773595,TJ,N2O,2.0,kg/TJ,49.54719,Naphtha combustion consumption by freight transport,AR-Q,SESCO,annual,kg,02b73a29-0b9a-3a15-ada2-b84f2c4fc723 -2020,Rio Negro,II.1.1,47.731145,TJ,CO2,73300.0,kg/TJ,3498692.9285,Naphtha combustion consumption by freight transport,AR-R,SESCO,annual,kg,38b54af0-ba27-3c68-b519-97815183cf88 -2020,Rio Negro,II.1.1,47.731145,TJ,CH4,0.5,kg/TJ,23.8655725,Naphtha combustion consumption by freight transport,AR-R,SESCO,annual,kg,09544ccb-f401-31f4-8b1b-e7f23df615f7 -2020,Rio Negro,II.1.1,47.731145,TJ,N2O,2.0,kg/TJ,95.46229,Naphtha combustion consumption by freight transport,AR-R,SESCO,annual,kg,423ffe28-6329-3daa-a7ce-3dd98f3227fa -2020,Salta,II.1.1,14.151444999999999,TJ,CO2,73300.0,kg/TJ,1037300.9184999999,Naphtha combustion consumption by freight transport,AR-A,SESCO,annual,kg,ac50cf43-8026-355f-a711-03166f58c702 -2020,Salta,II.1.1,14.151444999999999,TJ,CH4,0.5,kg/TJ,7.0757224999999995,Naphtha combustion consumption by freight transport,AR-A,SESCO,annual,kg,62d4e627-26d5-343b-b4db-98f4cf44865a -2020,Salta,II.1.1,14.151444999999999,TJ,N2O,2.0,kg/TJ,28.302889999999998,Naphtha combustion consumption by freight transport,AR-A,SESCO,annual,kg,81e8a36a-3781-353a-8f52-4ea1d115d3b8 -2020,San Juan,II.1.1,1.747515,TJ,CO2,73300.0,kg/TJ,128092.8495,Naphtha combustion consumption by freight transport,AR-J,SESCO,annual,kg,ff0885ff-dc36-3720-80c0-20569672ea9c -2020,San Juan,II.1.1,1.747515,TJ,CH4,0.5,kg/TJ,0.8737575,Naphtha combustion consumption by freight transport,AR-J,SESCO,annual,kg,399b8043-293e-33cb-9830-e48e3cdfb269 -2020,San Juan,II.1.1,1.747515,TJ,N2O,2.0,kg/TJ,3.49503,Naphtha combustion consumption by freight transport,AR-J,SESCO,annual,kg,64fb1eb3-9e37-3ab5-bc30-b6c97482310d -2020,San Luis,II.1.1,4.24886,TJ,CO2,73300.0,kg/TJ,311441.43799999997,Naphtha combustion consumption by freight transport,AR-D,SESCO,annual,kg,e9d9abee-e72b-3c63-b47e-d85437e3c04e -2020,San Luis,II.1.1,4.24886,TJ,CH4,0.5,kg/TJ,2.12443,Naphtha combustion consumption by freight transport,AR-D,SESCO,annual,kg,29d28001-5717-3206-a464-ed56aa9b8b1b -2020,San Luis,II.1.1,4.24886,TJ,N2O,2.0,kg/TJ,8.49772,Naphtha combustion consumption by freight transport,AR-D,SESCO,annual,kg,27dad2e0-18b0-33a5-8f88-873f1efae466 -2020,Santa Cruz,II.1.1,1.9873699999999999,TJ,CO2,73300.0,kg/TJ,145674.221,Naphtha combustion consumption by freight transport,AR-Z,SESCO,annual,kg,3debc2e5-d408-31eb-a342-eee30ca76caa -2020,Santa Cruz,II.1.1,1.9873699999999999,TJ,CH4,0.5,kg/TJ,0.9936849999999999,Naphtha combustion consumption by freight transport,AR-Z,SESCO,annual,kg,7d5c9039-4952-3777-bfbe-106c3d6a5575 -2020,Santa Cruz,II.1.1,1.9873699999999999,TJ,N2O,2.0,kg/TJ,3.9747399999999997,Naphtha combustion consumption by freight transport,AR-Z,SESCO,annual,kg,b08d00d9-4627-3c48-acd1-31e0dda97409 -2020,Santa Fe,II.1.1,65.206295,TJ,CO2,73300.0,kg/TJ,4779621.4235,Naphtha combustion consumption by freight transport,AR-S,SESCO,annual,kg,d10ac975-3de4-36e7-9cea-621ac8263ff7 -2020,Santa Fe,II.1.1,65.206295,TJ,CH4,0.5,kg/TJ,32.6031475,Naphtha combustion consumption by freight transport,AR-S,SESCO,annual,kg,e9aec529-297e-3e46-af82-465e04e83c86 -2020,Santa Fe,II.1.1,65.206295,TJ,N2O,2.0,kg/TJ,130.41259,Naphtha combustion consumption by freight transport,AR-S,SESCO,annual,kg,8e9c1589-bad8-31aa-9519-fa8c4c494d67 -2020,Santiago del Estero,II.1.1,1.50766,TJ,CO2,73300.0,kg/TJ,110511.478,Naphtha combustion consumption by freight transport,AR-G,SESCO,annual,kg,152a231d-9362-3c09-b086-43d9af384359 -2020,Santiago del Estero,II.1.1,1.50766,TJ,CH4,0.5,kg/TJ,0.75383,Naphtha combustion consumption by freight transport,AR-G,SESCO,annual,kg,caadd134-432b-3b90-a51d-99750e6944bd -2020,Santiago del Estero,II.1.1,1.50766,TJ,N2O,2.0,kg/TJ,3.01532,Naphtha combustion consumption by freight transport,AR-G,SESCO,annual,kg,608559ff-1a78-39fa-b009-3bca3ed3b709 -2020,Tierra del Fuego,II.1.1,2.6041399999999997,TJ,CO2,73300.0,kg/TJ,190883.46199999997,Naphtha combustion consumption by freight transport,AR-V,SESCO,annual,kg,eb32a4b4-6aa3-36e7-b208-ba07e0417674 -2020,Tierra del Fuego,II.1.1,2.6041399999999997,TJ,CH4,0.5,kg/TJ,1.3020699999999998,Naphtha combustion consumption by freight transport,AR-V,SESCO,annual,kg,4d23d23b-eca4-37dd-a4b3-d4c2b3e771bb -2020,Tierra del Fuego,II.1.1,2.6041399999999997,TJ,N2O,2.0,kg/TJ,5.208279999999999,Naphtha combustion consumption by freight transport,AR-V,SESCO,annual,kg,b7b5c8eb-2c7d-37f8-be6c-6eb68a3c661b -2020,Tucuman,II.1.1,6.78447,TJ,CO2,73300.0,kg/TJ,497301.651,Naphtha combustion consumption by freight transport,AR-T,SESCO,annual,kg,266226eb-8753-3227-b8ec-b4348ae39b6f -2020,Tucuman,II.1.1,6.78447,TJ,CH4,0.5,kg/TJ,3.392235,Naphtha combustion consumption by freight transport,AR-T,SESCO,annual,kg,011235fa-fc55-37c8-b892-27b0f007fb71 -2020,Tucuman,II.1.1,6.78447,TJ,N2O,2.0,kg/TJ,13.56894,Naphtha combustion consumption by freight transport,AR-T,SESCO,annual,kg,86b047a5-ec63-30da-a16d-86f7b649e79a -2020,Buenos Aires,II.1.1,5307.00324,TJ,CO2,74100.0,kg/TJ,393248940.084,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,744178a3-0c4a-3601-aa75-6e0f2f5ab45f -2020,Buenos Aires,II.1.1,5307.00324,TJ,CH4,3.9,kg/TJ,20697.312636,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,64f28b26-35ac-30d9-b4eb-1cd4bf9add23 -2020,Buenos Aires,II.1.1,5307.00324,TJ,N2O,3.9,kg/TJ,20697.312636,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,64f28b26-35ac-30d9-b4eb-1cd4bf9add23 -2020,Capital Federal,II.1.1,868.36092,TJ,CO2,74100.0,kg/TJ,64345544.172,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,e527ca7b-6e6f-3299-b317-1cf957f7c02a -2020,Capital Federal,II.1.1,868.36092,TJ,CH4,3.9,kg/TJ,3386.607588,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,b96751f5-1363-398c-bd72-2250c406eeed -2020,Capital Federal,II.1.1,868.36092,TJ,N2O,3.9,kg/TJ,3386.607588,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,b96751f5-1363-398c-bd72-2250c406eeed -2020,Catamarca,II.1.1,28.281959999999998,TJ,CO2,74100.0,kg/TJ,2095693.2359999998,Gas Oil combustion consumption by public passenger transport,AR-K,SESCO,annual,kg,ee89927e-93ab-39dc-b2de-1a91a878e7bf -2020,Catamarca,II.1.1,28.281959999999998,TJ,CH4,3.9,kg/TJ,110.29964399999999,Gas Oil combustion consumption by public passenger transport,AR-K,SESCO,annual,kg,7cf240db-de0a-3aee-bb2d-f9286224ab11 -2020,Catamarca,II.1.1,28.281959999999998,TJ,N2O,3.9,kg/TJ,110.29964399999999,Gas Oil combustion consumption by public passenger transport,AR-K,SESCO,annual,kg,7cf240db-de0a-3aee-bb2d-f9286224ab11 -2020,Chaco,II.1.1,45.98076,TJ,CO2,74100.0,kg/TJ,3407174.3159999996,Gas Oil combustion consumption by public passenger transport,AR-H,SESCO,annual,kg,e4d3fe48-d5f5-3ba1-8502-7cae9bf50524 -2020,Chaco,II.1.1,45.98076,TJ,CH4,3.9,kg/TJ,179.324964,Gas Oil combustion consumption by public passenger transport,AR-H,SESCO,annual,kg,1f1dac85-d104-3548-9ede-3dc0b8e015c1 -2020,Chaco,II.1.1,45.98076,TJ,N2O,3.9,kg/TJ,179.324964,Gas Oil combustion consumption by public passenger transport,AR-H,SESCO,annual,kg,1f1dac85-d104-3548-9ede-3dc0b8e015c1 -2020,Chubut,II.1.1,18.49344,TJ,CO2,74100.0,kg/TJ,1370363.9039999999,Gas Oil combustion consumption by public passenger transport,AR-U,SESCO,annual,kg,6099c17a-5381-3559-baca-af93de667d79 -2020,Chubut,II.1.1,18.49344,TJ,CH4,3.9,kg/TJ,72.124416,Gas Oil combustion consumption by public passenger transport,AR-U,SESCO,annual,kg,37a5065c-701e-35ea-898e-e854fea8ab52 -2020,Chubut,II.1.1,18.49344,TJ,N2O,3.9,kg/TJ,72.124416,Gas Oil combustion consumption by public passenger transport,AR-U,SESCO,annual,kg,37a5065c-701e-35ea-898e-e854fea8ab52 -2020,Corrientes,II.1.1,17.77104,TJ,CO2,74100.0,kg/TJ,1316834.064,Gas Oil combustion consumption by public passenger transport,AR-W,SESCO,annual,kg,0e85c3a1-2b01-3082-973b-e99f26225018 -2020,Corrientes,II.1.1,17.77104,TJ,CH4,3.9,kg/TJ,69.30705599999999,Gas Oil combustion consumption by public passenger transport,AR-W,SESCO,annual,kg,a12b0023-41c1-302b-b8e2-5b09c7684f91 -2020,Corrientes,II.1.1,17.77104,TJ,N2O,3.9,kg/TJ,69.30705599999999,Gas Oil combustion consumption by public passenger transport,AR-W,SESCO,annual,kg,a12b0023-41c1-302b-b8e2-5b09c7684f91 -2020,Córdoba,II.1.1,279.17148,TJ,CO2,74100.0,kg/TJ,20686606.667999998,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,19acfadc-ea4a-33b9-b58b-451f458984a0 -2020,Córdoba,II.1.1,279.17148,TJ,CH4,3.9,kg/TJ,1088.768772,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,f927c891-d72a-3b8e-850d-bb9d03aaf550 -2020,Córdoba,II.1.1,279.17148,TJ,N2O,3.9,kg/TJ,1088.768772,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,f927c891-d72a-3b8e-850d-bb9d03aaf550 -2020,Entre Rios,II.1.1,66.0996,TJ,CO2,74100.0,kg/TJ,4897980.359999999,Gas Oil combustion consumption by public passenger transport,AR-E,SESCO,annual,kg,0d58aef9-e959-30c1-9aa2-c36016175c6a -2020,Entre Rios,II.1.1,66.0996,TJ,CH4,3.9,kg/TJ,257.78844,Gas Oil combustion consumption by public passenger transport,AR-E,SESCO,annual,kg,1c8bef34-0fb9-3d72-90ca-17fbb47d7232 -2020,Entre Rios,II.1.1,66.0996,TJ,N2O,3.9,kg/TJ,257.78844,Gas Oil combustion consumption by public passenger transport,AR-E,SESCO,annual,kg,1c8bef34-0fb9-3d72-90ca-17fbb47d7232 -2020,Formosa,II.1.1,5.02068,TJ,CO2,74100.0,kg/TJ,372032.388,Gas Oil combustion consumption by public passenger transport,AR-P,SESCO,annual,kg,05323c30-33fc-35fd-bec9-be991632e34d -2020,Formosa,II.1.1,5.02068,TJ,CH4,3.9,kg/TJ,19.580651999999997,Gas Oil combustion consumption by public passenger transport,AR-P,SESCO,annual,kg,7da50b21-e173-3c6a-b44d-56be0be24a1e -2020,Formosa,II.1.1,5.02068,TJ,N2O,3.9,kg/TJ,19.580651999999997,Gas Oil combustion consumption by public passenger transport,AR-P,SESCO,annual,kg,7da50b21-e173-3c6a-b44d-56be0be24a1e -2020,Jujuy,II.1.1,59.598,TJ,CO2,74100.0,kg/TJ,4416211.8,Gas Oil combustion consumption by public passenger transport,AR-Y,SESCO,annual,kg,44d971cd-90e0-381b-95b8-eb6e9f3f03c5 -2020,Jujuy,II.1.1,59.598,TJ,CH4,3.9,kg/TJ,232.4322,Gas Oil combustion consumption by public passenger transport,AR-Y,SESCO,annual,kg,824e93ae-f522-3aa6-bea1-2c819e14bec6 -2020,Jujuy,II.1.1,59.598,TJ,N2O,3.9,kg/TJ,232.4322,Gas Oil combustion consumption by public passenger transport,AR-Y,SESCO,annual,kg,824e93ae-f522-3aa6-bea1-2c819e14bec6 -2020,La Rioja,II.1.1,10.22196,TJ,CO2,74100.0,kg/TJ,757447.2359999999,Gas Oil combustion consumption by public passenger transport,AR-F,SESCO,annual,kg,d288d346-3d4b-3a46-8ff4-390d1b502f90 -2020,La Rioja,II.1.1,10.22196,TJ,CH4,3.9,kg/TJ,39.865643999999996,Gas Oil combustion consumption by public passenger transport,AR-F,SESCO,annual,kg,172a6e2e-c4d9-3ae7-89b8-cba04eb8bfbf -2020,La Rioja,II.1.1,10.22196,TJ,N2O,3.9,kg/TJ,39.865643999999996,Gas Oil combustion consumption by public passenger transport,AR-F,SESCO,annual,kg,172a6e2e-c4d9-3ae7-89b8-cba04eb8bfbf -2020,Mendoza,II.1.1,314.28012,TJ,CO2,74100.0,kg/TJ,23288156.892,Gas Oil combustion consumption by public passenger transport,AR-M,SESCO,annual,kg,8d754026-f4f8-398e-be64-569cd3abdc8b -2020,Mendoza,II.1.1,314.28012,TJ,CH4,3.9,kg/TJ,1225.692468,Gas Oil combustion consumption by public passenger transport,AR-M,SESCO,annual,kg,cc285397-5351-337b-9fec-71e489e99cbc -2020,Mendoza,II.1.1,314.28012,TJ,N2O,3.9,kg/TJ,1225.692468,Gas Oil combustion consumption by public passenger transport,AR-M,SESCO,annual,kg,cc285397-5351-337b-9fec-71e489e99cbc -2020,Misiones,II.1.1,200.64659999999998,TJ,CO2,74100.0,kg/TJ,14867913.059999999,Gas Oil combustion consumption by public passenger transport,AR-N,SESCO,annual,kg,72703bb4-4ff1-3c8a-8060-86684e5ecc5e -2020,Misiones,II.1.1,200.64659999999998,TJ,CH4,3.9,kg/TJ,782.5217399999999,Gas Oil combustion consumption by public passenger transport,AR-N,SESCO,annual,kg,cdf3ffa3-18c0-3586-b4df-e07dc9c339bd -2020,Misiones,II.1.1,200.64659999999998,TJ,N2O,3.9,kg/TJ,782.5217399999999,Gas Oil combustion consumption by public passenger transport,AR-N,SESCO,annual,kg,cdf3ffa3-18c0-3586-b4df-e07dc9c339bd -2020,Neuquén,II.1.1,27.595679999999998,TJ,CO2,74100.0,kg/TJ,2044839.8879999998,Gas Oil combustion consumption by public passenger transport,AR-Q,SESCO,annual,kg,8b8c406a-9d87-3c45-bc9e-5e3768d0fda5 -2020,Neuquén,II.1.1,27.595679999999998,TJ,CH4,3.9,kg/TJ,107.62315199999999,Gas Oil combustion consumption by public passenger transport,AR-Q,SESCO,annual,kg,4bca05d3-a1e2-33cf-889c-a1a9b303478c -2020,Neuquén,II.1.1,27.595679999999998,TJ,N2O,3.9,kg/TJ,107.62315199999999,Gas Oil combustion consumption by public passenger transport,AR-Q,SESCO,annual,kg,4bca05d3-a1e2-33cf-889c-a1a9b303478c -2020,Rio Negro,II.1.1,30.232439999999997,TJ,CO2,74100.0,kg/TJ,2240223.8039999995,Gas Oil combustion consumption by public passenger transport,AR-R,SESCO,annual,kg,529dc48a-9281-3531-8ac1-531656654562 -2020,Rio Negro,II.1.1,30.232439999999997,TJ,CH4,3.9,kg/TJ,117.90651599999998,Gas Oil combustion consumption by public passenger transport,AR-R,SESCO,annual,kg,119166ef-41c0-3686-ab11-1acb8000fa4c -2020,Rio Negro,II.1.1,30.232439999999997,TJ,N2O,3.9,kg/TJ,117.90651599999998,Gas Oil combustion consumption by public passenger transport,AR-R,SESCO,annual,kg,119166ef-41c0-3686-ab11-1acb8000fa4c -2020,Salta,II.1.1,48.184079999999994,TJ,CO2,74100.0,kg/TJ,3570440.3279999997,Gas Oil combustion consumption by public passenger transport,AR-A,SESCO,annual,kg,8b40845b-91ab-33ba-aa0f-c3609db5c552 -2020,Salta,II.1.1,48.184079999999994,TJ,CH4,3.9,kg/TJ,187.91791199999997,Gas Oil combustion consumption by public passenger transport,AR-A,SESCO,annual,kg,9e538784-1e35-3d18-8aa0-0b9555730f47 -2020,Salta,II.1.1,48.184079999999994,TJ,N2O,3.9,kg/TJ,187.91791199999997,Gas Oil combustion consumption by public passenger transport,AR-A,SESCO,annual,kg,9e538784-1e35-3d18-8aa0-0b9555730f47 -2020,San Juan,II.1.1,34.45848,TJ,CO2,74100.0,kg/TJ,2553373.3680000002,Gas Oil combustion consumption by public passenger transport,AR-J,SESCO,annual,kg,73dec076-4d24-3d84-a4cd-90519827fa0f -2020,San Juan,II.1.1,34.45848,TJ,CH4,3.9,kg/TJ,134.388072,Gas Oil combustion consumption by public passenger transport,AR-J,SESCO,annual,kg,c061d027-8413-3829-b829-325476e8777a -2020,San Juan,II.1.1,34.45848,TJ,N2O,3.9,kg/TJ,134.388072,Gas Oil combustion consumption by public passenger transport,AR-J,SESCO,annual,kg,c061d027-8413-3829-b829-325476e8777a -2020,Santa Fe,II.1.1,238.53647999999998,TJ,CO2,74100.0,kg/TJ,17675553.167999998,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,34e2d110-242b-3d95-baa0-39afd8c88617 -2020,Santa Fe,II.1.1,238.53647999999998,TJ,CH4,3.9,kg/TJ,930.2922719999999,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,f257aeb0-9626-34bd-b671-ca6cf9e73319 -2020,Santa Fe,II.1.1,238.53647999999998,TJ,N2O,3.9,kg/TJ,930.2922719999999,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,f257aeb0-9626-34bd-b671-ca6cf9e73319 -2020,Tierra del Fuego,II.1.1,3.50364,TJ,CO2,74100.0,kg/TJ,259619.724,Gas Oil combustion consumption by public passenger transport,AR-V,SESCO,annual,kg,d7749bdb-785d-34a8-b7d0-1f38c1aff197 -2020,Tierra del Fuego,II.1.1,3.50364,TJ,CH4,3.9,kg/TJ,13.664195999999999,Gas Oil combustion consumption by public passenger transport,AR-V,SESCO,annual,kg,4015280e-4d55-38d2-bedd-bc3ed16aa8d2 -2020,Tierra del Fuego,II.1.1,3.50364,TJ,N2O,3.9,kg/TJ,13.664195999999999,Gas Oil combustion consumption by public passenger transport,AR-V,SESCO,annual,kg,4015280e-4d55-38d2-bedd-bc3ed16aa8d2 -2020,Tucuman,II.1.1,2.60064,TJ,CO2,74100.0,kg/TJ,192707.424,Gas Oil combustion consumption by public passenger transport,AR-T,SESCO,annual,kg,176e1e9e-8610-3cdc-9a6a-da479aabb356 -2020,Tucuman,II.1.1,2.60064,TJ,CH4,3.9,kg/TJ,10.142496,Gas Oil combustion consumption by public passenger transport,AR-T,SESCO,annual,kg,fc11201c-29b5-3996-ae33-9fed88af63eb -2020,Tucuman,II.1.1,2.60064,TJ,N2O,3.9,kg/TJ,10.142496,Gas Oil combustion consumption by public passenger transport,AR-T,SESCO,annual,kg,fc11201c-29b5-3996-ae33-9fed88af63eb -2020,Buenos Aires,II.1.1,1958.28192,TJ,CO2,74100.0,kg/TJ,145108690.27199998,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,05059401-7c51-33ef-af25-bcd2c3c5a6a9 -2020,Buenos Aires,II.1.1,1958.28192,TJ,CH4,3.9,kg/TJ,7637.299488,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,da5efebe-294b-332a-a50d-ebefbb8b3088 -2020,Buenos Aires,II.1.1,1958.28192,TJ,N2O,3.9,kg/TJ,7637.299488,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,da5efebe-294b-332a-a50d-ebefbb8b3088 -2020,Capital Federal,II.1.1,415.45223999999996,TJ,CO2,74100.0,kg/TJ,30785010.983999997,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,055f94bc-bd7f-3276-a975-1351d8616c00 -2020,Capital Federal,II.1.1,415.45223999999996,TJ,CH4,3.9,kg/TJ,1620.2637359999999,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,20b57a6b-917f-3ac9-a8ea-39bab7ab064a -2020,Capital Federal,II.1.1,415.45223999999996,TJ,N2O,3.9,kg/TJ,1620.2637359999999,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,20b57a6b-917f-3ac9-a8ea-39bab7ab064a -2020,Chaco,II.1.1,6.24876,TJ,CO2,74100.0,kg/TJ,463033.116,Gas Oil combustion consumption by public passenger transport,AR-H,SESCO,annual,kg,7b0e2833-78ce-34e5-8fe2-8f11f2baf3d3 -2020,Chaco,II.1.1,6.24876,TJ,CH4,3.9,kg/TJ,24.370164,Gas Oil combustion consumption by public passenger transport,AR-H,SESCO,annual,kg,247bb280-bcc2-30b6-9b4b-773800050630 -2020,Chaco,II.1.1,6.24876,TJ,N2O,3.9,kg/TJ,24.370164,Gas Oil combustion consumption by public passenger transport,AR-H,SESCO,annual,kg,247bb280-bcc2-30b6-9b4b-773800050630 -2020,Chubut,II.1.1,31.641119999999997,TJ,CO2,74100.0,kg/TJ,2344606.9919999996,Gas Oil combustion consumption by public passenger transport,AR-U,SESCO,annual,kg,1a207f8c-5f1a-3ef1-ad33-4fc95b250b14 -2020,Chubut,II.1.1,31.641119999999997,TJ,CH4,3.9,kg/TJ,123.40036799999999,Gas Oil combustion consumption by public passenger transport,AR-U,SESCO,annual,kg,466e10d1-7d3c-36a0-994b-7eb334184819 -2020,Chubut,II.1.1,31.641119999999997,TJ,N2O,3.9,kg/TJ,123.40036799999999,Gas Oil combustion consumption by public passenger transport,AR-U,SESCO,annual,kg,466e10d1-7d3c-36a0-994b-7eb334184819 -2020,Corrientes,II.1.1,9.2106,TJ,CO2,74100.0,kg/TJ,682505.46,Gas Oil combustion consumption by public passenger transport,AR-W,SESCO,annual,kg,31939546-de6c-3f63-803c-96114a357038 -2020,Corrientes,II.1.1,9.2106,TJ,CH4,3.9,kg/TJ,35.921339999999994,Gas Oil combustion consumption by public passenger transport,AR-W,SESCO,annual,kg,06e2c62d-c263-3d08-a176-a653274d4fdd -2020,Corrientes,II.1.1,9.2106,TJ,N2O,3.9,kg/TJ,35.921339999999994,Gas Oil combustion consumption by public passenger transport,AR-W,SESCO,annual,kg,06e2c62d-c263-3d08-a176-a653274d4fdd -2020,Córdoba,II.1.1,132.09084,TJ,CO2,74100.0,kg/TJ,9787931.243999999,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,12f500e8-9fe7-36a4-9191-0f08ff3ee9b9 -2020,Córdoba,II.1.1,132.09084,TJ,CH4,3.9,kg/TJ,515.154276,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,d65083e4-f749-3600-93a3-16918a6f3265 -2020,Córdoba,II.1.1,132.09084,TJ,N2O,3.9,kg/TJ,515.154276,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,d65083e4-f749-3600-93a3-16918a6f3265 -2020,Entre Rios,II.1.1,14.88144,TJ,CO2,74100.0,kg/TJ,1102714.704,Gas Oil combustion consumption by public passenger transport,AR-E,SESCO,annual,kg,255a012c-2c36-30be-9007-28b7a3fe216c -2020,Entre Rios,II.1.1,14.88144,TJ,CH4,3.9,kg/TJ,58.037616,Gas Oil combustion consumption by public passenger transport,AR-E,SESCO,annual,kg,799ca722-d0d5-36ca-b81b-3798a6b06393 -2020,Entre Rios,II.1.1,14.88144,TJ,N2O,3.9,kg/TJ,58.037616,Gas Oil combustion consumption by public passenger transport,AR-E,SESCO,annual,kg,799ca722-d0d5-36ca-b81b-3798a6b06393 -2020,Mendoza,II.1.1,83.43719999999999,TJ,CO2,74100.0,kg/TJ,6182696.52,Gas Oil combustion consumption by public passenger transport,AR-M,SESCO,annual,kg,275c2ba9-6af2-3939-ab8a-67170fb9d161 -2020,Mendoza,II.1.1,83.43719999999999,TJ,CH4,3.9,kg/TJ,325.40507999999994,Gas Oil combustion consumption by public passenger transport,AR-M,SESCO,annual,kg,e80969b8-0b9c-3e6f-86e9-dfb7d285c442 -2020,Mendoza,II.1.1,83.43719999999999,TJ,N2O,3.9,kg/TJ,325.40507999999994,Gas Oil combustion consumption by public passenger transport,AR-M,SESCO,annual,kg,e80969b8-0b9c-3e6f-86e9-dfb7d285c442 -2020,Misiones,II.1.1,29.72676,TJ,CO2,74100.0,kg/TJ,2202752.9159999997,Gas Oil combustion consumption by public passenger transport,AR-N,SESCO,annual,kg,21ccdea5-97a9-3576-83c4-9ac82fd5206d -2020,Misiones,II.1.1,29.72676,TJ,CH4,3.9,kg/TJ,115.93436399999999,Gas Oil combustion consumption by public passenger transport,AR-N,SESCO,annual,kg,c9ac5860-8860-3fda-ae65-52929e3b8c27 -2020,Misiones,II.1.1,29.72676,TJ,N2O,3.9,kg/TJ,115.93436399999999,Gas Oil combustion consumption by public passenger transport,AR-N,SESCO,annual,kg,c9ac5860-8860-3fda-ae65-52929e3b8c27 -2020,Neuquén,II.1.1,15.459359999999998,TJ,CO2,74100.0,kg/TJ,1145538.576,Gas Oil combustion consumption by public passenger transport,AR-Q,SESCO,annual,kg,96d2d874-25cf-3e1c-8b8a-0397a4be89c7 -2020,Neuquén,II.1.1,15.459359999999998,TJ,CH4,3.9,kg/TJ,60.29150399999999,Gas Oil combustion consumption by public passenger transport,AR-Q,SESCO,annual,kg,2df8523a-d410-3925-9d65-a2d70d09aacf -2020,Neuquén,II.1.1,15.459359999999998,TJ,N2O,3.9,kg/TJ,60.29150399999999,Gas Oil combustion consumption by public passenger transport,AR-Q,SESCO,annual,kg,2df8523a-d410-3925-9d65-a2d70d09aacf -2020,Rio Negro,II.1.1,80.11416,TJ,CO2,74100.0,kg/TJ,5936459.256,Gas Oil combustion consumption by public passenger transport,AR-R,SESCO,annual,kg,d032dca9-c1b8-3f21-9414-218f12d44ac2 -2020,Rio Negro,II.1.1,80.11416,TJ,CH4,3.9,kg/TJ,312.445224,Gas Oil combustion consumption by public passenger transport,AR-R,SESCO,annual,kg,06746c9b-b17d-3257-bf6c-6a03a41cde4b -2020,Rio Negro,II.1.1,80.11416,TJ,N2O,3.9,kg/TJ,312.445224,Gas Oil combustion consumption by public passenger transport,AR-R,SESCO,annual,kg,06746c9b-b17d-3257-bf6c-6a03a41cde4b -2020,Salta,II.1.1,41.97144,TJ,CO2,74100.0,kg/TJ,3110083.704,Gas Oil combustion consumption by public passenger transport,AR-A,SESCO,annual,kg,f346bb5b-8f81-382b-ac8a-4700e50f39ba -2020,Salta,II.1.1,41.97144,TJ,CH4,3.9,kg/TJ,163.688616,Gas Oil combustion consumption by public passenger transport,AR-A,SESCO,annual,kg,335baaeb-6c38-3259-9cd0-825c8aa678c7 -2020,Salta,II.1.1,41.97144,TJ,N2O,3.9,kg/TJ,163.688616,Gas Oil combustion consumption by public passenger transport,AR-A,SESCO,annual,kg,335baaeb-6c38-3259-9cd0-825c8aa678c7 -2020,San Juan,II.1.1,43.19952,TJ,CO2,74100.0,kg/TJ,3201084.432,Gas Oil combustion consumption by public passenger transport,AR-J,SESCO,annual,kg,2fd403dc-1837-3e06-93e6-87b72230f2aa -2020,San Juan,II.1.1,43.19952,TJ,CH4,3.9,kg/TJ,168.478128,Gas Oil combustion consumption by public passenger transport,AR-J,SESCO,annual,kg,563facd3-fca1-344f-8039-67af33ac0e77 -2020,San Juan,II.1.1,43.19952,TJ,N2O,3.9,kg/TJ,168.478128,Gas Oil combustion consumption by public passenger transport,AR-J,SESCO,annual,kg,563facd3-fca1-344f-8039-67af33ac0e77 -2020,Santa Fe,II.1.1,115.51176,TJ,CO2,74100.0,kg/TJ,8559421.416,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,cb9ccf94-63e6-380a-8df8-670a8fae5d29 -2020,Santa Fe,II.1.1,115.51176,TJ,CH4,3.9,kg/TJ,450.495864,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,5184025b-1136-31eb-b0ca-837e7a609d9e -2020,Santa Fe,II.1.1,115.51176,TJ,N2O,3.9,kg/TJ,450.495864,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,5184025b-1136-31eb-b0ca-837e7a609d9e -2020,Tucuman,II.1.1,0.18059999999999998,TJ,CO2,74100.0,kg/TJ,13382.46,Gas Oil combustion consumption by public passenger transport,AR-T,SESCO,annual,kg,a74ed51b-db87-36ae-a815-65c0c266aaf9 -2020,Tucuman,II.1.1,0.18059999999999998,TJ,CH4,3.9,kg/TJ,0.70434,Gas Oil combustion consumption by public passenger transport,AR-T,SESCO,annual,kg,1d24498c-aa42-3cd5-b833-a0fd59b7614c -2020,Tucuman,II.1.1,0.18059999999999998,TJ,N2O,3.9,kg/TJ,0.70434,Gas Oil combustion consumption by public passenger transport,AR-T,SESCO,annual,kg,1d24498c-aa42-3cd5-b833-a0fd59b7614c -2021,Buenos Aires,II.5.1,567.3368399999999,TJ,CO2,74100.0,kg/TJ,42039659.844,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,38739a1c-4c8c-3e71-ad57-56c636eaf7df -2021,Buenos Aires,II.5.1,567.3368399999999,TJ,CH4,3.9,kg/TJ,2212.6136759999995,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,14e30095-1091-36ea-9d8e-fdec2e071c93 -2021,Buenos Aires,II.5.1,567.3368399999999,TJ,N2O,3.9,kg/TJ,2212.6136759999995,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,14e30095-1091-36ea-9d8e-fdec2e071c93 -2021,Córdoba,II.5.1,146.24988,TJ,CO2,74100.0,kg/TJ,10837116.108,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,66494737-c341-35c7-a588-af948b76553b -2021,Córdoba,II.5.1,146.24988,TJ,CH4,3.9,kg/TJ,570.3745319999999,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,b07237e0-597f-30e1-beee-6157e087e201 -2021,Córdoba,II.5.1,146.24988,TJ,N2O,3.9,kg/TJ,570.3745319999999,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,b07237e0-597f-30e1-beee-6157e087e201 -2021,Entre Rios,II.5.1,24.092039999999997,TJ,CO2,74100.0,kg/TJ,1785220.1639999999,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,544378db-82e1-36cb-a20e-5c1aa50dd882 -2021,Entre Rios,II.5.1,24.092039999999997,TJ,CH4,3.9,kg/TJ,93.95895599999999,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,8e6557b0-6474-3b8e-bc9d-2789dbc17e54 -2021,Entre Rios,II.5.1,24.092039999999997,TJ,N2O,3.9,kg/TJ,93.95895599999999,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,8e6557b0-6474-3b8e-bc9d-2789dbc17e54 -2021,La Pampa,II.5.1,17.8794,TJ,CO2,74100.0,kg/TJ,1324863.54,Gas Oil combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,29721295-2531-331c-a609-99a2de04a05a -2021,La Pampa,II.5.1,17.8794,TJ,CH4,3.9,kg/TJ,69.72966,Gas Oil combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,fa58962f-289b-3bee-b63f-92c6fa2059eb -2021,La Pampa,II.5.1,17.8794,TJ,N2O,3.9,kg/TJ,69.72966,Gas Oil combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,fa58962f-289b-3bee-b63f-92c6fa2059eb -2021,Santa Fe,II.5.1,372.65004,TJ,CO2,74100.0,kg/TJ,27613367.963999998,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,fcddbf27-87e0-34d5-8d5a-150dd295bead -2021,Santa Fe,II.5.1,372.65004,TJ,CH4,3.9,kg/TJ,1453.3351559999999,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,37409be0-6fbe-3e25-ab3f-ba84a26f1bf3 -2021,Santa Fe,II.5.1,372.65004,TJ,N2O,3.9,kg/TJ,1453.3351559999999,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,37409be0-6fbe-3e25-ab3f-ba84a26f1bf3 -2021,Buenos Aires,II.5.1,20.06466,TJ,CO2,74100.0,kg/TJ,1486791.306,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,257ffa8b-5e3b-338c-b712-ca34fdfc8a5a -2021,Buenos Aires,II.5.1,20.06466,TJ,CH4,3.9,kg/TJ,78.252174,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,9fcd37e3-803e-35ab-b135-417b3e450148 -2021,Buenos Aires,II.5.1,20.06466,TJ,N2O,3.9,kg/TJ,78.252174,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,9fcd37e3-803e-35ab-b135-417b3e450148 -2021,Córdoba,II.5.1,4.11768,TJ,CO2,74100.0,kg/TJ,305120.088,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,f1b09d03-f880-3820-9011-d44884ed6779 -2021,Córdoba,II.5.1,4.11768,TJ,CH4,3.9,kg/TJ,16.058951999999998,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,4d3c5302-5def-3aab-9c7a-b5d9b019c49e -2021,Córdoba,II.5.1,4.11768,TJ,N2O,3.9,kg/TJ,16.058951999999998,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,4d3c5302-5def-3aab-9c7a-b5d9b019c49e -2021,Santa Fe,II.5.1,6.10428,TJ,CO2,74100.0,kg/TJ,452327.148,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,61265b96-e74a-3aab-a847-7a4dc048f1b0 -2021,Santa Fe,II.5.1,6.10428,TJ,CH4,3.9,kg/TJ,23.806692,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,43cf9ab5-e596-3759-a523-2f633b6aeb70 -2021,Santa Fe,II.5.1,6.10428,TJ,N2O,3.9,kg/TJ,23.806692,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,43cf9ab5-e596-3759-a523-2f633b6aeb70 -2021,Buenos Aires,II.5.1,8.0104717,TJ,CO2,73300.0,kg/TJ,587167.57561,Naphtha combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,93458937-50b2-363f-9451-63ffeb5369a6 -2021,Buenos Aires,II.5.1,8.0104717,TJ,CH4,0.5,kg/TJ,4.00523585,Naphtha combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,1a834f2e-d3ba-3682-971a-a567706c21ee -2021,Buenos Aires,II.5.1,8.0104717,TJ,N2O,2.0,kg/TJ,16.0209434,Naphtha combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,9b75feb1-41ba-3e18-92a6-f332bf9c055f -2021,Córdoba,II.5.1,2.3300199999999998,TJ,CO2,73300.0,kg/TJ,170790.466,Naphtha combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,d20066f9-16d6-3337-a316-5bd738dcfb54 -2021,Córdoba,II.5.1,2.3300199999999998,TJ,CH4,0.5,kg/TJ,1.1650099999999999,Naphtha combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,72ccfb1f-8de7-3683-9e90-fcc77dff605f -2021,Córdoba,II.5.1,2.3300199999999998,TJ,N2O,2.0,kg/TJ,4.6600399999999995,Naphtha combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,4d9e7f3b-4fc1-34fc-8c34-d8ffa26c43b0 -2021,Santa Fe,II.5.1,6.887264999999999,TJ,CO2,73300.0,kg/TJ,504836.52449999994,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,ad7e350e-210f-3856-a7b2-13b4030dc6a8 -2021,Santa Fe,II.5.1,6.887264999999999,TJ,CH4,0.5,kg/TJ,3.4436324999999997,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,c34c22e8-8821-3712-b32d-b1c21c901a3a -2021,Santa Fe,II.5.1,6.887264999999999,TJ,N2O,2.0,kg/TJ,13.774529999999999,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,0396c7c8-85c7-3241-b430-59191a388c0a -2021,Buenos Aires,II.5.1,1.404865,TJ,CO2,73300.0,kg/TJ,102976.6045,Naphtha combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,61a107f0-3411-31af-a84a-6c71e3753fa1 -2021,Buenos Aires,II.5.1,1.404865,TJ,CH4,0.5,kg/TJ,0.7024325,Naphtha combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,6f7107f9-7e8b-3df4-a0e4-93bd71669b84 -2021,Buenos Aires,II.5.1,1.404865,TJ,N2O,2.0,kg/TJ,2.80973,Naphtha combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,a2f9863e-a211-3c5b-b042-9f76805829bd -2021,Córdoba,II.5.1,0.5825049999999999,TJ,CO2,73300.0,kg/TJ,42697.6165,Naphtha combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,c381a63d-5362-3449-b44c-efd1d521965d -2021,Córdoba,II.5.1,0.5825049999999999,TJ,CH4,0.5,kg/TJ,0.29125249999999997,Naphtha combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,cf5fd3c0-c9c4-310a-bed6-f28e30dd6610 -2021,Córdoba,II.5.1,0.5825049999999999,TJ,N2O,2.0,kg/TJ,1.1650099999999999,Naphtha combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,72ccfb1f-8de7-3683-9e90-fcc77dff605f -2021,Buenos Aires,II.5.1,359.71907999999996,TJ,CO2,74100.0,kg/TJ,26655183.827999998,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,9b92d037-1124-3af7-8a85-c5082bf63825 -2021,Buenos Aires,II.5.1,359.71907999999996,TJ,CH4,3.9,kg/TJ,1402.9044119999999,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,0b56de1d-1f9b-3ccb-be86-4ff98fde8d20 -2021,Buenos Aires,II.5.1,359.71907999999996,TJ,N2O,3.9,kg/TJ,1402.9044119999999,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,0b56de1d-1f9b-3ccb-be86-4ff98fde8d20 -2021,Corrientes,II.5.1,0.7223999999999999,TJ,CO2,74100.0,kg/TJ,53529.84,Gas Oil combustion consumption by agriculture machines,AR-W,SESCO,annual,kg,054f5c93-383f-3c91-8523-f61e49e4cf08 -2021,Corrientes,II.5.1,0.7223999999999999,TJ,CH4,3.9,kg/TJ,2.81736,Gas Oil combustion consumption by agriculture machines,AR-W,SESCO,annual,kg,930c9e36-d09e-31a8-a4e3-0e2b15c406c2 -2021,Corrientes,II.5.1,0.7223999999999999,TJ,N2O,3.9,kg/TJ,2.81736,Gas Oil combustion consumption by agriculture machines,AR-W,SESCO,annual,kg,930c9e36-d09e-31a8-a4e3-0e2b15c406c2 -2021,Córdoba,II.5.1,288.38208,TJ,CO2,74100.0,kg/TJ,21369112.128,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,8caa51c6-f688-3f55-9c77-cd985209c8a2 -2021,Córdoba,II.5.1,288.38208,TJ,CH4,3.9,kg/TJ,1124.6901119999998,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,59e2bb27-f0da-3b7e-a7d8-c2622481ac53 -2021,Córdoba,II.5.1,288.38208,TJ,N2O,3.9,kg/TJ,1124.6901119999998,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,59e2bb27-f0da-3b7e-a7d8-c2622481ac53 -2021,Entre Rios,II.5.1,279.027,TJ,CO2,74100.0,kg/TJ,20675900.7,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,c4aaac14-10d6-36aa-ae95-ab4e8b9c341d -2021,Entre Rios,II.5.1,279.027,TJ,CH4,3.9,kg/TJ,1088.2052999999999,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,7078aba7-351b-380a-bd31-7a60cdec13d7 -2021,Entre Rios,II.5.1,279.027,TJ,N2O,3.9,kg/TJ,1088.2052999999999,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,7078aba7-351b-380a-bd31-7a60cdec13d7 -2021,Mendoza,II.5.1,2.38392,TJ,CO2,74100.0,kg/TJ,176648.47199999998,Gas Oil combustion consumption by agriculture machines,AR-M,SESCO,annual,kg,69fbb83b-66d7-3ce3-97b2-ba174abc8743 -2021,Mendoza,II.5.1,2.38392,TJ,CH4,3.9,kg/TJ,9.297287999999998,Gas Oil combustion consumption by agriculture machines,AR-M,SESCO,annual,kg,1597884b-aa42-3ae7-95cb-5d3ab454445f -2021,Mendoza,II.5.1,2.38392,TJ,N2O,3.9,kg/TJ,9.297287999999998,Gas Oil combustion consumption by agriculture machines,AR-M,SESCO,annual,kg,1597884b-aa42-3ae7-95cb-5d3ab454445f -2021,Salta,II.5.1,463.56408,TJ,CO2,74100.0,kg/TJ,34350098.328,Gas Oil combustion consumption by agriculture machines,AR-A,SESCO,annual,kg,d106809a-53a1-3986-8b9f-c45a93090936 -2021,Salta,II.5.1,463.56408,TJ,CH4,3.9,kg/TJ,1807.8999119999999,Gas Oil combustion consumption by agriculture machines,AR-A,SESCO,annual,kg,b1157bc1-328f-36ff-bb74-ff648a667f7b -2021,Salta,II.5.1,463.56408,TJ,N2O,3.9,kg/TJ,1807.8999119999999,Gas Oil combustion consumption by agriculture machines,AR-A,SESCO,annual,kg,b1157bc1-328f-36ff-bb74-ff648a667f7b -2021,Santa Cruz,II.5.1,13.14768,TJ,CO2,74100.0,kg/TJ,974243.088,Gas Oil combustion consumption by agriculture machines,AR-Z,SESCO,annual,kg,98ead2d6-c662-3c69-a4ac-3ae844580206 -2021,Santa Cruz,II.5.1,13.14768,TJ,CH4,3.9,kg/TJ,51.275952,Gas Oil combustion consumption by agriculture machines,AR-Z,SESCO,annual,kg,004cf539-5352-3341-b3e5-a08c2bc5a2ce -2021,Santa Cruz,II.5.1,13.14768,TJ,N2O,3.9,kg/TJ,51.275952,Gas Oil combustion consumption by agriculture machines,AR-Z,SESCO,annual,kg,004cf539-5352-3341-b3e5-a08c2bc5a2ce -2021,Santa Fe,II.5.1,157.15812,TJ,CO2,74100.0,kg/TJ,11645416.692,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,84219182-5c03-3c4e-9e2c-0ee587f7ef69 -2021,Santa Fe,II.5.1,157.15812,TJ,CH4,3.9,kg/TJ,612.916668,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,500ceda6-d7a7-30c2-ab84-2c34773ddedc -2021,Santa Fe,II.5.1,157.15812,TJ,N2O,3.9,kg/TJ,612.916668,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,500ceda6-d7a7-30c2-ab84-2c34773ddedc -2021,Buenos Aires,II.5.1,4.37052,TJ,CO2,74100.0,kg/TJ,323855.532,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,c36d346a-db9b-3004-a55c-f23c3821aaed -2021,Buenos Aires,II.5.1,4.37052,TJ,CH4,3.9,kg/TJ,17.045028,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,e49d7bfe-39de-3668-ac19-2f4eee53d0ac -2021,Buenos Aires,II.5.1,4.37052,TJ,N2O,3.9,kg/TJ,17.045028,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,e49d7bfe-39de-3668-ac19-2f4eee53d0ac -2021,Córdoba,II.5.1,3.53976,TJ,CO2,74100.0,kg/TJ,262296.21599999996,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,c9074328-0739-3f19-8419-0bacb52f1ced -2021,Córdoba,II.5.1,3.53976,TJ,CH4,3.9,kg/TJ,13.805063999999998,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,6520de76-dd23-366a-aa20-a1cfcf7d1947 -2021,Córdoba,II.5.1,3.53976,TJ,N2O,3.9,kg/TJ,13.805063999999998,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,6520de76-dd23-366a-aa20-a1cfcf7d1947 -2021,Entre Rios,II.5.1,3.03408,TJ,CO2,74100.0,kg/TJ,224825.32799999998,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,7f4e18c7-19b2-374e-a183-ab61a951f4d0 -2021,Entre Rios,II.5.1,3.03408,TJ,CH4,3.9,kg/TJ,11.832911999999999,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,360740e7-ca0d-33d2-ba54-46dfdad2cb6c -2021,Entre Rios,II.5.1,3.03408,TJ,N2O,3.9,kg/TJ,11.832911999999999,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,360740e7-ca0d-33d2-ba54-46dfdad2cb6c -2021,Salta,II.5.1,0.46956,TJ,CO2,74100.0,kg/TJ,34794.396,Gas Oil combustion consumption by agriculture machines,AR-A,SESCO,annual,kg,994b1bce-2527-3f7d-9978-aa3e1ecfa834 -2021,Salta,II.5.1,0.46956,TJ,CH4,3.9,kg/TJ,1.831284,Gas Oil combustion consumption by agriculture machines,AR-A,SESCO,annual,kg,6e640d6c-c4e8-338d-8432-b751cf2a13a4 -2021,Salta,II.5.1,0.46956,TJ,N2O,3.9,kg/TJ,1.831284,Gas Oil combustion consumption by agriculture machines,AR-A,SESCO,annual,kg,6e640d6c-c4e8-338d-8432-b751cf2a13a4 -2021,Santa Fe,II.5.1,1.2642,TJ,CO2,74100.0,kg/TJ,93677.22,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,2f3a9191-03a3-3dbb-9951-f6eee56e65e0 -2021,Santa Fe,II.5.1,1.2642,TJ,CH4,3.9,kg/TJ,4.9303799999999995,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,a231cce5-e1d2-3a36-85af-b2907160379b -2021,Santa Fe,II.5.1,1.2642,TJ,N2O,3.9,kg/TJ,4.9303799999999995,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,a231cce5-e1d2-3a36-85af-b2907160379b -2021,Córdoba,II.5.1,6.2019649999999995,TJ,CO2,73300.0,kg/TJ,454604.03449999995,Naphtha combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,dece819d-3dd9-3d87-9f04-e98d74283c4e -2021,Córdoba,II.5.1,6.2019649999999995,TJ,CH4,0.5,kg/TJ,3.1009824999999998,Naphtha combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,fa27c1c1-f12d-3db4-9b11-e6570d6ca2de -2021,Córdoba,II.5.1,6.2019649999999995,TJ,N2O,2.0,kg/TJ,12.403929999999999,Naphtha combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,7882db78-b50a-3efb-8d73-706951e44b61 -2021,Mendoza,II.5.1,1.64472,TJ,CO2,73300.0,kg/TJ,120557.976,Naphtha combustion consumption by agriculture machines,AR-M,SESCO,annual,kg,48a9bd3c-4dc4-3d88-8890-057c82c23a53 -2021,Mendoza,II.5.1,1.64472,TJ,CH4,0.5,kg/TJ,0.82236,Naphtha combustion consumption by agriculture machines,AR-M,SESCO,annual,kg,8ec15d86-fdc1-351d-9e3b-68fbc83082b5 -2021,Mendoza,II.5.1,1.64472,TJ,N2O,2.0,kg/TJ,3.28944,Naphtha combustion consumption by agriculture machines,AR-M,SESCO,annual,kg,017c5091-96b6-3c7d-8508-e53f1601ff1e -2021,Salta,II.5.1,0.41118,TJ,CO2,73300.0,kg/TJ,30139.494,Naphtha combustion consumption by agriculture machines,AR-A,SESCO,annual,kg,7099f754-0ffa-32cd-876b-b66dd775a2c5 -2021,Salta,II.5.1,0.41118,TJ,CH4,0.5,kg/TJ,0.20559,Naphtha combustion consumption by agriculture machines,AR-A,SESCO,annual,kg,2d58c466-d18a-3183-9652-3744eded22ba -2021,Salta,II.5.1,0.41118,TJ,N2O,2.0,kg/TJ,0.82236,Naphtha combustion consumption by agriculture machines,AR-A,SESCO,annual,kg,e251583b-f67e-3c9a-a013-f29bb37c3602 -2021,Córdoba,II.5.1,0.54824,TJ,CO2,73300.0,kg/TJ,40185.992,Naphtha combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,8584904c-9ff5-349a-8f2c-159a1bd812e7 -2021,Córdoba,II.5.1,0.54824,TJ,CH4,0.5,kg/TJ,0.27412,Naphtha combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,49ec0c44-5e21-3f66-bc32-63110a46cdaa -2021,Córdoba,II.5.1,0.54824,TJ,N2O,2.0,kg/TJ,1.09648,Naphtha combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,91b4cf00-e7c7-3bfa-a059-07d043c6ebaa -2021,Chubut,II.1.1,0.1618176,TJ,CO2,74100.0,kg/TJ,11990.68416,Gas Oil combustion consumption by freight transport,AR-U,SESCO,annual,kg,67b4a931-4b71-36f0-b19c-cdf4d1d2be84 -2021,Chubut,II.1.1,0.1618176,TJ,CH4,3.9,kg/TJ,0.63108864,Gas Oil combustion consumption by freight transport,AR-U,SESCO,annual,kg,d49f9753-61be-306c-8550-aa7e04e1e5ca -2021,Chubut,II.1.1,0.1618176,TJ,N2O,3.9,kg/TJ,0.63108864,Gas Oil combustion consumption by freight transport,AR-U,SESCO,annual,kg,d49f9753-61be-306c-8550-aa7e04e1e5ca -2021,Buenos Aires,II.5.1,3872.20848,TJ,CO2,74100.0,kg/TJ,286930648.368,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,4c0456a7-5f10-36f1-aa69-bdec7e0804ee -2021,Buenos Aires,II.5.1,3872.20848,TJ,CH4,3.9,kg/TJ,15101.613071999998,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,fa6b3d83-40d4-3c34-946e-83678f59750e -2021,Buenos Aires,II.5.1,3872.20848,TJ,N2O,3.9,kg/TJ,15101.613071999998,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,fa6b3d83-40d4-3c34-946e-83678f59750e -2021,Catamarca,II.5.1,78.09143999999999,TJ,CO2,74100.0,kg/TJ,5786575.703999999,Gas Oil combustion consumption by agriculture machines,AR-K,SESCO,annual,kg,a123ef87-3d72-3efc-a07d-d1169067c6b2 -2021,Catamarca,II.5.1,78.09143999999999,TJ,CH4,3.9,kg/TJ,304.55661599999996,Gas Oil combustion consumption by agriculture machines,AR-K,SESCO,annual,kg,336f76aa-3e5f-3972-b4e7-adcd2ddfc063 -2021,Catamarca,II.5.1,78.09143999999999,TJ,N2O,3.9,kg/TJ,304.55661599999996,Gas Oil combustion consumption by agriculture machines,AR-K,SESCO,annual,kg,336f76aa-3e5f-3972-b4e7-adcd2ddfc063 -2021,Chaco,II.5.1,581.85708,TJ,CO2,74100.0,kg/TJ,43115609.628,Gas Oil combustion consumption by agriculture machines,AR-H,SESCO,annual,kg,5cf95378-995d-3edf-8f74-ece5dde1fafd -2021,Chaco,II.5.1,581.85708,TJ,CH4,3.9,kg/TJ,2269.242612,Gas Oil combustion consumption by agriculture machines,AR-H,SESCO,annual,kg,ea9dc890-f5a1-3dde-9ad0-4a00cd66141f -2021,Chaco,II.5.1,581.85708,TJ,N2O,3.9,kg/TJ,2269.242612,Gas Oil combustion consumption by agriculture machines,AR-H,SESCO,annual,kg,ea9dc890-f5a1-3dde-9ad0-4a00cd66141f -2021,Corrientes,II.5.1,1332.32232,TJ,CO2,74100.0,kg/TJ,98725083.912,Gas Oil combustion consumption by agriculture machines,AR-W,SESCO,annual,kg,9265482c-33b3-3163-b56c-2038a736cfa6 -2021,Corrientes,II.5.1,1332.32232,TJ,CH4,3.9,kg/TJ,5196.057048,Gas Oil combustion consumption by agriculture machines,AR-W,SESCO,annual,kg,0d78037c-bdaa-3661-817c-2dc608e7ee09 -2021,Corrientes,II.5.1,1332.32232,TJ,N2O,3.9,kg/TJ,5196.057048,Gas Oil combustion consumption by agriculture machines,AR-W,SESCO,annual,kg,0d78037c-bdaa-3661-817c-2dc608e7ee09 -2021,Córdoba,II.5.1,3175.1647199999998,TJ,CO2,74100.0,kg/TJ,235279705.75199997,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,71bb08d4-19c2-3119-971b-c3ee5ac964be -2021,Córdoba,II.5.1,3175.1647199999998,TJ,CH4,3.9,kg/TJ,12383.142407999998,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,6b4403e2-5027-32eb-a189-ab39ef38c558 -2021,Córdoba,II.5.1,3175.1647199999998,TJ,N2O,3.9,kg/TJ,12383.142407999998,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,6b4403e2-5027-32eb-a189-ab39ef38c558 -2021,Entre Rios,II.5.1,996.62304,TJ,CO2,74100.0,kg/TJ,73849767.264,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,8a1ddb17-ded6-3a4d-8bc0-dc44db37491b -2021,Entre Rios,II.5.1,996.62304,TJ,CH4,3.9,kg/TJ,3886.829856,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,fe7856d5-a226-387d-b0f8-152c240d7b38 -2021,Entre Rios,II.5.1,996.62304,TJ,N2O,3.9,kg/TJ,3886.829856,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,fe7856d5-a226-387d-b0f8-152c240d7b38 -2021,Jujuy,II.5.1,11.052719999999999,TJ,CO2,74100.0,kg/TJ,819006.5519999999,Gas Oil combustion consumption by agriculture machines,AR-Y,SESCO,annual,kg,a1e13cf3-bd21-3815-875f-3717b8d32f5a -2021,Jujuy,II.5.1,11.052719999999999,TJ,CH4,3.9,kg/TJ,43.105608,Gas Oil combustion consumption by agriculture machines,AR-Y,SESCO,annual,kg,591739fc-b912-3db8-8b08-0de2cfffde87 -2021,Jujuy,II.5.1,11.052719999999999,TJ,N2O,3.9,kg/TJ,43.105608,Gas Oil combustion consumption by agriculture machines,AR-Y,SESCO,annual,kg,591739fc-b912-3db8-8b08-0de2cfffde87 -2021,La Pampa,II.5.1,186.921,TJ,CO2,74100.0,kg/TJ,13850846.1,Gas Oil combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,4f6ec277-1c7d-3f61-821d-91643b6f5c1d -2021,La Pampa,II.5.1,186.921,TJ,CH4,3.9,kg/TJ,728.9919,Gas Oil combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,c9f04cd3-f43c-3721-9625-ec15aad95089 -2021,La Pampa,II.5.1,186.921,TJ,N2O,3.9,kg/TJ,728.9919,Gas Oil combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,c9f04cd3-f43c-3721-9625-ec15aad95089 -2021,Mendoza,II.5.1,433.00656,TJ,CO2,74100.0,kg/TJ,32085786.095999997,Gas Oil combustion consumption by agriculture machines,AR-M,SESCO,annual,kg,817d9e4c-db57-35e6-92d8-f8dca17550f3 -2021,Mendoza,II.5.1,433.00656,TJ,CH4,3.9,kg/TJ,1688.7255839999998,Gas Oil combustion consumption by agriculture machines,AR-M,SESCO,annual,kg,6be5f80a-903c-30fd-bb15-fb3589d1bbf2 -2021,Mendoza,II.5.1,433.00656,TJ,N2O,3.9,kg/TJ,1688.7255839999998,Gas Oil combustion consumption by agriculture machines,AR-M,SESCO,annual,kg,6be5f80a-903c-30fd-bb15-fb3589d1bbf2 -2021,Misiones,II.5.1,42.368759999999995,TJ,CO2,74100.0,kg/TJ,3139525.1159999995,Gas Oil combustion consumption by agriculture machines,AR-N,SESCO,annual,kg,bca7e559-8832-3ce8-b370-cf1e59a9f430 -2021,Misiones,II.5.1,42.368759999999995,TJ,CH4,3.9,kg/TJ,165.23816399999998,Gas Oil combustion consumption by agriculture machines,AR-N,SESCO,annual,kg,cd77ad69-b731-33d2-9c66-29db94d47639 -2021,Misiones,II.5.1,42.368759999999995,TJ,N2O,3.9,kg/TJ,165.23816399999998,Gas Oil combustion consumption by agriculture machines,AR-N,SESCO,annual,kg,cd77ad69-b731-33d2-9c66-29db94d47639 -2021,Neuquén,II.5.1,239.94516,TJ,CO2,74100.0,kg/TJ,17779936.356,Gas Oil combustion consumption by agriculture machines,AR-Q,SESCO,annual,kg,6660d61b-2aeb-3dff-a2c3-582e919ac92b -2021,Neuquén,II.5.1,239.94516,TJ,CH4,3.9,kg/TJ,935.786124,Gas Oil combustion consumption by agriculture machines,AR-Q,SESCO,annual,kg,ba3f6c3d-5f9a-39bf-947a-131db54ee3a1 -2021,Neuquén,II.5.1,239.94516,TJ,N2O,3.9,kg/TJ,935.786124,Gas Oil combustion consumption by agriculture machines,AR-Q,SESCO,annual,kg,ba3f6c3d-5f9a-39bf-947a-131db54ee3a1 -2021,Salta,II.5.1,99.90791999999999,TJ,CO2,74100.0,kg/TJ,7403176.8719999995,Gas Oil combustion consumption by agriculture machines,AR-A,SESCO,annual,kg,7a8a4856-060a-373f-98c1-17b3742b7b6c -2021,Salta,II.5.1,99.90791999999999,TJ,CH4,3.9,kg/TJ,389.64088799999996,Gas Oil combustion consumption by agriculture machines,AR-A,SESCO,annual,kg,2655d948-8ef4-3a2c-8469-9d7954fe5148 -2021,Salta,II.5.1,99.90791999999999,TJ,N2O,3.9,kg/TJ,389.64088799999996,Gas Oil combustion consumption by agriculture machines,AR-A,SESCO,annual,kg,2655d948-8ef4-3a2c-8469-9d7954fe5148 -2021,San Juan,II.5.1,44.535959999999996,TJ,CO2,74100.0,kg/TJ,3300114.6359999995,Gas Oil combustion consumption by agriculture machines,AR-J,SESCO,annual,kg,ae05a399-9fc1-3fe8-a9c4-44f207357424 -2021,San Juan,II.5.1,44.535959999999996,TJ,CH4,3.9,kg/TJ,173.69024399999998,Gas Oil combustion consumption by agriculture machines,AR-J,SESCO,annual,kg,21d567a7-3fb4-387f-b03f-bd3fc72b118f -2021,San Juan,II.5.1,44.535959999999996,TJ,N2O,3.9,kg/TJ,173.69024399999998,Gas Oil combustion consumption by agriculture machines,AR-J,SESCO,annual,kg,21d567a7-3fb4-387f-b03f-bd3fc72b118f -2021,San Luis,II.5.1,159.43367999999998,TJ,CO2,74100.0,kg/TJ,11814035.688,Gas Oil combustion consumption by agriculture machines,AR-D,SESCO,annual,kg,c4717924-be0e-3845-ada8-1f074b21ff55 -2021,San Luis,II.5.1,159.43367999999998,TJ,CH4,3.9,kg/TJ,621.791352,Gas Oil combustion consumption by agriculture machines,AR-D,SESCO,annual,kg,cc747d0b-f96e-34ff-b5a6-d79b1ce3bbd8 -2021,San Luis,II.5.1,159.43367999999998,TJ,N2O,3.9,kg/TJ,621.791352,Gas Oil combustion consumption by agriculture machines,AR-D,SESCO,annual,kg,cc747d0b-f96e-34ff-b5a6-d79b1ce3bbd8 -2021,Santa Cruz,II.5.1,129.67079999999999,TJ,CO2,74100.0,kg/TJ,9608606.28,Gas Oil combustion consumption by agriculture machines,AR-Z,SESCO,annual,kg,5288fa8f-fe09-3db9-a1b7-023797e8525c -2021,Santa Cruz,II.5.1,129.67079999999999,TJ,CH4,3.9,kg/TJ,505.71611999999993,Gas Oil combustion consumption by agriculture machines,AR-Z,SESCO,annual,kg,99b11259-bfa8-32b5-9ee8-0bb5298a1f1d -2021,Santa Cruz,II.5.1,129.67079999999999,TJ,N2O,3.9,kg/TJ,505.71611999999993,Gas Oil combustion consumption by agriculture machines,AR-Z,SESCO,annual,kg,99b11259-bfa8-32b5-9ee8-0bb5298a1f1d -2021,Santa Fe,II.5.1,5361.00264,TJ,CO2,74100.0,kg/TJ,397250295.62399995,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,02b6dcc7-94b9-3f26-bcfb-5b3d5599ae77 -2021,Santa Fe,II.5.1,5361.00264,TJ,CH4,3.9,kg/TJ,20907.910296,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,cd125830-aa43-31e4-a3a7-292f35f00320 -2021,Santa Fe,II.5.1,5361.00264,TJ,N2O,3.9,kg/TJ,20907.910296,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,cd125830-aa43-31e4-a3a7-292f35f00320 -2021,Santiago del Estero,II.5.1,471.98004,TJ,CO2,74100.0,kg/TJ,34973720.964,Gas Oil combustion consumption by agriculture machines,AR-G,SESCO,annual,kg,04f19271-30fb-3aaa-a42b-ec36777c0101 -2021,Santiago del Estero,II.5.1,471.98004,TJ,CH4,3.9,kg/TJ,1840.7221559999998,Gas Oil combustion consumption by agriculture machines,AR-G,SESCO,annual,kg,729bd52a-fc8a-3443-9d1c-933e3ed26fde -2021,Santiago del Estero,II.5.1,471.98004,TJ,N2O,3.9,kg/TJ,1840.7221559999998,Gas Oil combustion consumption by agriculture machines,AR-G,SESCO,annual,kg,729bd52a-fc8a-3443-9d1c-933e3ed26fde -2021,Tucuman,II.5.1,196.20383999999999,TJ,CO2,74100.0,kg/TJ,14538704.544,Gas Oil combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,285bad75-1060-3b95-a882-422303434981 -2021,Tucuman,II.5.1,196.20383999999999,TJ,CH4,3.9,kg/TJ,765.1949759999999,Gas Oil combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,e63086a1-f556-398a-9a86-0ba6097fda85 -2021,Tucuman,II.5.1,196.20383999999999,TJ,N2O,3.9,kg/TJ,765.1949759999999,Gas Oil combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,e63086a1-f556-398a-9a86-0ba6097fda85 -2021,Buenos Aires,II.5.1,429.97247999999996,TJ,CO2,74100.0,kg/TJ,31860960.767999995,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,ddc24d2d-04b1-31f2-b5e0-52654636021e -2021,Buenos Aires,II.5.1,429.97247999999996,TJ,CH4,3.9,kg/TJ,1676.8926719999997,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,b4a0b1c7-9ac2-3914-98ad-798981de0b11 -2021,Buenos Aires,II.5.1,429.97247999999996,TJ,N2O,3.9,kg/TJ,1676.8926719999997,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,b4a0b1c7-9ac2-3914-98ad-798981de0b11 -2021,Catamarca,II.5.1,26.873279999999998,TJ,CO2,74100.0,kg/TJ,1991310.0479999997,Gas Oil combustion consumption by agriculture machines,AR-K,SESCO,annual,kg,ac362425-4b30-34b3-9882-220ceb595c8c -2021,Catamarca,II.5.1,26.873279999999998,TJ,CH4,3.9,kg/TJ,104.80579199999998,Gas Oil combustion consumption by agriculture machines,AR-K,SESCO,annual,kg,dfa342de-570c-3bc7-a4ac-ea60d52f4dea -2021,Catamarca,II.5.1,26.873279999999998,TJ,N2O,3.9,kg/TJ,104.80579199999998,Gas Oil combustion consumption by agriculture machines,AR-K,SESCO,annual,kg,dfa342de-570c-3bc7-a4ac-ea60d52f4dea -2021,Chaco,II.5.1,151.19832,TJ,CO2,74100.0,kg/TJ,11203795.512,Gas Oil combustion consumption by agriculture machines,AR-H,SESCO,annual,kg,f7208f83-dcfe-353b-82a5-af05a91fa137 -2021,Chaco,II.5.1,151.19832,TJ,CH4,3.9,kg/TJ,589.673448,Gas Oil combustion consumption by agriculture machines,AR-H,SESCO,annual,kg,1f53b2a3-78f4-3060-85f5-ca79a4396904 -2021,Chaco,II.5.1,151.19832,TJ,N2O,3.9,kg/TJ,589.673448,Gas Oil combustion consumption by agriculture machines,AR-H,SESCO,annual,kg,1f53b2a3-78f4-3060-85f5-ca79a4396904 -2021,Corrientes,II.5.1,112.04423999999999,TJ,CO2,74100.0,kg/TJ,8302478.183999999,Gas Oil combustion consumption by agriculture machines,AR-W,SESCO,annual,kg,f5e847b4-3200-3a71-b0f3-99198bde38f0 -2021,Corrientes,II.5.1,112.04423999999999,TJ,CH4,3.9,kg/TJ,436.97253599999993,Gas Oil combustion consumption by agriculture machines,AR-W,SESCO,annual,kg,2c665e23-8558-3b49-b900-2191958d29f4 -2021,Corrientes,II.5.1,112.04423999999999,TJ,N2O,3.9,kg/TJ,436.97253599999993,Gas Oil combustion consumption by agriculture machines,AR-W,SESCO,annual,kg,2c665e23-8558-3b49-b900-2191958d29f4 -2021,Córdoba,II.5.1,315.47208,TJ,CO2,74100.0,kg/TJ,23376481.128,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,00b11d38-1bfb-3604-ae66-4855e80eb8c1 -2021,Córdoba,II.5.1,315.47208,TJ,CH4,3.9,kg/TJ,1230.341112,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,785f0bcc-fd6e-3d8a-86c4-9d2f1e55c8b8 -2021,Córdoba,II.5.1,315.47208,TJ,N2O,3.9,kg/TJ,1230.341112,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,785f0bcc-fd6e-3d8a-86c4-9d2f1e55c8b8 -2021,Entre Rios,II.5.1,21.45528,TJ,CO2,74100.0,kg/TJ,1589836.248,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,9a3b9648-6f44-3827-8bff-b172c88455f1 -2021,Entre Rios,II.5.1,21.45528,TJ,CH4,3.9,kg/TJ,83.675592,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,c8c5be3c-8191-3e7f-9872-0eb0eb49c5fc -2021,Entre Rios,II.5.1,21.45528,TJ,N2O,3.9,kg/TJ,83.675592,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,c8c5be3c-8191-3e7f-9872-0eb0eb49c5fc -2021,Jujuy,II.5.1,8.95776,TJ,CO2,74100.0,kg/TJ,663770.0160000001,Gas Oil combustion consumption by agriculture machines,AR-Y,SESCO,annual,kg,eaf129d9-dd96-35d1-a081-c6a50387e1d2 -2021,Jujuy,II.5.1,8.95776,TJ,CH4,3.9,kg/TJ,34.935264000000004,Gas Oil combustion consumption by agriculture machines,AR-Y,SESCO,annual,kg,2a0997e7-6976-354e-a0a5-4a9db39e6a4e -2021,Jujuy,II.5.1,8.95776,TJ,N2O,3.9,kg/TJ,34.935264000000004,Gas Oil combustion consumption by agriculture machines,AR-Y,SESCO,annual,kg,2a0997e7-6976-354e-a0a5-4a9db39e6a4e -2021,La Pampa,II.5.1,67.29156,TJ,CO2,74100.0,kg/TJ,4986304.596,Gas Oil combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,720e75fc-cae8-3f64-995d-5099f6797cc8 -2021,La Pampa,II.5.1,67.29156,TJ,CH4,3.9,kg/TJ,262.437084,Gas Oil combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,05fb3dcd-61e5-38a1-b38d-af0b32be5ef9 -2021,La Pampa,II.5.1,67.29156,TJ,N2O,3.9,kg/TJ,262.437084,Gas Oil combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,05fb3dcd-61e5-38a1-b38d-af0b32be5ef9 -2021,Mendoza,II.5.1,82.02852,TJ,CO2,74100.0,kg/TJ,6078313.332,Gas Oil combustion consumption by agriculture machines,AR-M,SESCO,annual,kg,20be34ee-8db2-3a2b-9f36-f0a1f55f1224 -2021,Mendoza,II.5.1,82.02852,TJ,CH4,3.9,kg/TJ,319.911228,Gas Oil combustion consumption by agriculture machines,AR-M,SESCO,annual,kg,fc6a55bb-9083-3186-af7a-af0248f3f73a -2021,Mendoza,II.5.1,82.02852,TJ,N2O,3.9,kg/TJ,319.911228,Gas Oil combustion consumption by agriculture machines,AR-M,SESCO,annual,kg,fc6a55bb-9083-3186-af7a-af0248f3f73a -2021,Misiones,II.5.1,1.6615199999999999,TJ,CO2,74100.0,kg/TJ,123118.632,Gas Oil combustion consumption by agriculture machines,AR-N,SESCO,annual,kg,d293994a-4ff9-3c62-96f9-cb13278d034a -2021,Misiones,II.5.1,1.6615199999999999,TJ,CH4,3.9,kg/TJ,6.479927999999999,Gas Oil combustion consumption by agriculture machines,AR-N,SESCO,annual,kg,46a2e9fb-cb14-353a-953f-0146c408a749 -2021,Misiones,II.5.1,1.6615199999999999,TJ,N2O,3.9,kg/TJ,6.479927999999999,Gas Oil combustion consumption by agriculture machines,AR-N,SESCO,annual,kg,46a2e9fb-cb14-353a-953f-0146c408a749 -2021,Neuquén,II.5.1,145.96092,TJ,CO2,74100.0,kg/TJ,10815704.171999998,Gas Oil combustion consumption by agriculture machines,AR-Q,SESCO,annual,kg,cf9ac957-98ac-3017-8b81-2ac44bf644cc -2021,Neuquén,II.5.1,145.96092,TJ,CH4,3.9,kg/TJ,569.247588,Gas Oil combustion consumption by agriculture machines,AR-Q,SESCO,annual,kg,280674fd-5f3b-3289-8008-d10ef06b95cf -2021,Neuquén,II.5.1,145.96092,TJ,N2O,3.9,kg/TJ,569.247588,Gas Oil combustion consumption by agriculture machines,AR-Q,SESCO,annual,kg,280674fd-5f3b-3289-8008-d10ef06b95cf -2021,Salta,II.5.1,36.697919999999996,TJ,CO2,74100.0,kg/TJ,2719315.8719999995,Gas Oil combustion consumption by agriculture machines,AR-A,SESCO,annual,kg,829c0645-232c-3d93-b3c3-0790cc74373e -2021,Salta,II.5.1,36.697919999999996,TJ,CH4,3.9,kg/TJ,143.12188799999998,Gas Oil combustion consumption by agriculture machines,AR-A,SESCO,annual,kg,7539089c-db24-3085-ad37-a949a9925b05 -2021,Salta,II.5.1,36.697919999999996,TJ,N2O,3.9,kg/TJ,143.12188799999998,Gas Oil combustion consumption by agriculture machines,AR-A,SESCO,annual,kg,7539089c-db24-3085-ad37-a949a9925b05 -2021,San Juan,II.5.1,11.052719999999999,TJ,CO2,74100.0,kg/TJ,819006.5519999999,Gas Oil combustion consumption by agriculture machines,AR-J,SESCO,annual,kg,7b78d8a4-6ce6-3996-9bdb-abc206024c89 -2021,San Juan,II.5.1,11.052719999999999,TJ,CH4,3.9,kg/TJ,43.105608,Gas Oil combustion consumption by agriculture machines,AR-J,SESCO,annual,kg,5d029e60-9862-34cb-8e0c-55e57bf95620 -2021,San Juan,II.5.1,11.052719999999999,TJ,N2O,3.9,kg/TJ,43.105608,Gas Oil combustion consumption by agriculture machines,AR-J,SESCO,annual,kg,5d029e60-9862-34cb-8e0c-55e57bf95620 -2021,San Luis,II.5.1,9.89688,TJ,CO2,74100.0,kg/TJ,733358.808,Gas Oil combustion consumption by agriculture machines,AR-D,SESCO,annual,kg,8ed35ffa-8616-3fd1-b219-8fe9550994be -2021,San Luis,II.5.1,9.89688,TJ,CH4,3.9,kg/TJ,38.597832,Gas Oil combustion consumption by agriculture machines,AR-D,SESCO,annual,kg,7c8e5a3b-5fe6-32cf-b007-a4b8190920cb -2021,San Luis,II.5.1,9.89688,TJ,N2O,3.9,kg/TJ,38.597832,Gas Oil combustion consumption by agriculture machines,AR-D,SESCO,annual,kg,7c8e5a3b-5fe6-32cf-b007-a4b8190920cb -2021,Santa Cruz,II.5.1,107.70984,TJ,CO2,74100.0,kg/TJ,7981299.144,Gas Oil combustion consumption by agriculture machines,AR-Z,SESCO,annual,kg,eff5591f-db5d-34f8-847b-de44881b9f35 -2021,Santa Cruz,II.5.1,107.70984,TJ,CH4,3.9,kg/TJ,420.068376,Gas Oil combustion consumption by agriculture machines,AR-Z,SESCO,annual,kg,cf52e543-4230-31cb-8473-418aa1c6d2d8 -2021,Santa Cruz,II.5.1,107.70984,TJ,N2O,3.9,kg/TJ,420.068376,Gas Oil combustion consumption by agriculture machines,AR-Z,SESCO,annual,kg,cf52e543-4230-31cb-8473-418aa1c6d2d8 -2021,Santa Fe,II.5.1,434.1624,TJ,CO2,74100.0,kg/TJ,32171433.84,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,0c343038-b468-397a-8a28-d8b69db69950 -2021,Santa Fe,II.5.1,434.1624,TJ,CH4,3.9,kg/TJ,1693.23336,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,58e41eaf-8795-3107-9660-6a333a531582 -2021,Santa Fe,II.5.1,434.1624,TJ,N2O,3.9,kg/TJ,1693.23336,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,58e41eaf-8795-3107-9660-6a333a531582 -2021,Santiago del Estero,II.5.1,145.34688,TJ,CO2,74100.0,kg/TJ,10770203.808,Gas Oil combustion consumption by agriculture machines,AR-G,SESCO,annual,kg,d119f761-48d4-3d35-aa9e-458376282da8 -2021,Santiago del Estero,II.5.1,145.34688,TJ,CH4,3.9,kg/TJ,566.852832,Gas Oil combustion consumption by agriculture machines,AR-G,SESCO,annual,kg,f7ff8384-d65f-3528-a813-88df29e860ff -2021,Santiago del Estero,II.5.1,145.34688,TJ,N2O,3.9,kg/TJ,566.852832,Gas Oil combustion consumption by agriculture machines,AR-G,SESCO,annual,kg,f7ff8384-d65f-3528-a813-88df29e860ff -2021,Tucuman,II.5.1,70.75908,TJ,CO2,74100.0,kg/TJ,5243247.828,Gas Oil combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,2f86e137-a284-3026-bb39-d429c5302c6c -2021,Tucuman,II.5.1,70.75908,TJ,CH4,3.9,kg/TJ,275.96041199999996,Gas Oil combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,911f5356-8fd3-3aa1-8778-98647a95d802 -2021,Tucuman,II.5.1,70.75908,TJ,N2O,3.9,kg/TJ,275.96041199999996,Gas Oil combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,911f5356-8fd3-3aa1-8778-98647a95d802 -2021,Santa Fe,II.5.1,12.06128,TJ,CO2,73300.0,kg/TJ,884091.824,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,1931366b-6fad-323a-9b7d-7a1a0cd08e03 -2021,Santa Fe,II.5.1,12.06128,TJ,CH4,0.5,kg/TJ,6.03064,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,0f54ffd5-e435-3950-bbde-d2306cc4c183 -2021,Santa Fe,II.5.1,12.06128,TJ,N2O,2.0,kg/TJ,24.12256,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,a995f7e9-7839-33d7-88fa-1d278c6338bf -2021,Santa Fe,II.5.1,4.38592,TJ,CO2,73300.0,kg/TJ,321487.936,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,fbd60f5e-49fb-34f2-b247-308fa3d7f427 -2021,Santa Fe,II.5.1,4.38592,TJ,CH4,0.5,kg/TJ,2.19296,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,d8c0616f-3ea4-3b92-be5d-19dea7c06e72 -2021,Santa Fe,II.5.1,4.38592,TJ,N2O,2.0,kg/TJ,8.77184,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,20fa20a1-7414-36f7-864b-60539701f67f -2021,Buenos Aires,II.2.1,101.136,TJ,CO2,74100.0,kg/TJ,7494177.6,Gas Oil combustion consumption by railway transport,AR-B,SESCO,annual,kg,0e716105-32bf-374f-a9e1-aa20703c5be3 -2021,Buenos Aires,II.2.1,101.136,TJ,CH4,3.9,kg/TJ,394.43039999999996,Gas Oil combustion consumption by railway transport,AR-B,SESCO,annual,kg,7b22458c-449f-38f1-a556-6f5caa3954f9 -2021,Buenos Aires,II.2.1,101.136,TJ,N2O,3.9,kg/TJ,394.43039999999996,Gas Oil combustion consumption by railway transport,AR-B,SESCO,annual,kg,7b22458c-449f-38f1-a556-6f5caa3954f9 -2021,Capital Federal,II.2.1,0.9029999999999999,TJ,CO2,74100.0,kg/TJ,66912.29999999999,Gas Oil combustion consumption by railway transport,AR-C,SESCO,annual,kg,b97fa89f-ae80-38e8-b865-a480384c90b2 -2021,Capital Federal,II.2.1,0.9029999999999999,TJ,CH4,3.9,kg/TJ,3.5216999999999996,Gas Oil combustion consumption by railway transport,AR-C,SESCO,annual,kg,b9af84b7-4d5a-3cce-931d-8cc186aa1fa3 -2021,Capital Federal,II.2.1,0.9029999999999999,TJ,N2O,3.9,kg/TJ,3.5216999999999996,Gas Oil combustion consumption by railway transport,AR-C,SESCO,annual,kg,b9af84b7-4d5a-3cce-931d-8cc186aa1fa3 -2021,Córdoba,II.2.1,2.6367599999999998,TJ,CO2,74100.0,kg/TJ,195383.916,Gas Oil combustion consumption by railway transport,AR-X,SESCO,annual,kg,35b7048c-f187-36a2-a922-a8779872b195 -2021,Córdoba,II.2.1,2.6367599999999998,TJ,CH4,3.9,kg/TJ,10.283363999999999,Gas Oil combustion consumption by railway transport,AR-X,SESCO,annual,kg,89c37af0-f2c6-3ba3-987b-a809ea562587 -2021,Córdoba,II.2.1,2.6367599999999998,TJ,N2O,3.9,kg/TJ,10.283363999999999,Gas Oil combustion consumption by railway transport,AR-X,SESCO,annual,kg,89c37af0-f2c6-3ba3-987b-a809ea562587 -2021,La Pampa,II.2.1,3.93708,TJ,CO2,74100.0,kg/TJ,291737.62799999997,Gas Oil combustion consumption by railway transport,AR-L,SESCO,annual,kg,3d53988e-3280-3593-8fc8-97e919c328ed -2021,La Pampa,II.2.1,3.93708,TJ,CH4,3.9,kg/TJ,15.354612,Gas Oil combustion consumption by railway transport,AR-L,SESCO,annual,kg,3a2390dc-30c4-34de-8960-6bf37de58289 -2021,La Pampa,II.2.1,3.93708,TJ,N2O,3.9,kg/TJ,15.354612,Gas Oil combustion consumption by railway transport,AR-L,SESCO,annual,kg,3a2390dc-30c4-34de-8960-6bf37de58289 -2021,Neuquén,II.2.1,2.709,TJ,CO2,74100.0,kg/TJ,200736.9,Gas Oil combustion consumption by railway transport,AR-Q,SESCO,annual,kg,9b95ac47-8e5e-33eb-875a-4da097391810 -2021,Neuquén,II.2.1,2.709,TJ,CH4,3.9,kg/TJ,10.5651,Gas Oil combustion consumption by railway transport,AR-Q,SESCO,annual,kg,612d3c4b-b817-3f2f-bbbc-158f57b51c8b -2021,Neuquén,II.2.1,2.709,TJ,N2O,3.9,kg/TJ,10.5651,Gas Oil combustion consumption by railway transport,AR-Q,SESCO,annual,kg,612d3c4b-b817-3f2f-bbbc-158f57b51c8b -2021,Santa Fe,II.2.1,39.5514,TJ,CO2,74100.0,kg/TJ,2930758.74,Gas Oil combustion consumption by railway transport,AR-S,SESCO,annual,kg,d86fe2a3-40b7-36bd-b6cb-1a1509c83e35 -2021,Santa Fe,II.2.1,39.5514,TJ,CH4,3.9,kg/TJ,154.25046,Gas Oil combustion consumption by railway transport,AR-S,SESCO,annual,kg,e4fcb35d-0628-3596-89c3-ffa97c1a1f6b -2021,Santa Fe,II.2.1,39.5514,TJ,N2O,3.9,kg/TJ,154.25046,Gas Oil combustion consumption by railway transport,AR-S,SESCO,annual,kg,e4fcb35d-0628-3596-89c3-ffa97c1a1f6b -2021,Santiago del Estero,II.2.1,4.11768,TJ,CO2,74100.0,kg/TJ,305120.088,Gas Oil combustion consumption by railway transport,AR-G,SESCO,annual,kg,cba14561-32e4-351b-9fe5-ea6b47375172 -2021,Santiago del Estero,II.2.1,4.11768,TJ,CH4,3.9,kg/TJ,16.058951999999998,Gas Oil combustion consumption by railway transport,AR-G,SESCO,annual,kg,c67f9d40-0fea-3367-bb19-df40bb693025 -2021,Santiago del Estero,II.2.1,4.11768,TJ,N2O,3.9,kg/TJ,16.058951999999998,Gas Oil combustion consumption by railway transport,AR-G,SESCO,annual,kg,c67f9d40-0fea-3367-bb19-df40bb693025 -2021,Tucuman,II.2.1,1.48092,TJ,CO2,74100.0,kg/TJ,109736.172,Gas Oil combustion consumption by railway transport,AR-T,SESCO,annual,kg,4828952c-857f-33c0-970f-d626c0f2ddee -2021,Tucuman,II.2.1,1.48092,TJ,CH4,3.9,kg/TJ,5.775588,Gas Oil combustion consumption by railway transport,AR-T,SESCO,annual,kg,1bdb27ea-7eb2-345a-9ff5-2ce79238ebb3 -2021,Tucuman,II.2.1,1.48092,TJ,N2O,3.9,kg/TJ,5.775588,Gas Oil combustion consumption by railway transport,AR-T,SESCO,annual,kg,1bdb27ea-7eb2-345a-9ff5-2ce79238ebb3 -2021,Buenos Aires,II.2.1,22.9362,TJ,CO2,74100.0,kg/TJ,1699572.42,Gas Oil combustion consumption by railway transport,AR-B,SESCO,annual,kg,f7f4286e-221b-3576-8afe-a64e5018e0e9 -2021,Buenos Aires,II.2.1,22.9362,TJ,CH4,3.9,kg/TJ,89.45118,Gas Oil combustion consumption by railway transport,AR-B,SESCO,annual,kg,03b9d782-9994-34f8-9630-99914872694a -2021,Buenos Aires,II.2.1,22.9362,TJ,N2O,3.9,kg/TJ,89.45118,Gas Oil combustion consumption by railway transport,AR-B,SESCO,annual,kg,03b9d782-9994-34f8-9630-99914872694a -2021,Capital Federal,II.2.1,2.8895999999999997,TJ,CO2,74100.0,kg/TJ,214119.36,Gas Oil combustion consumption by railway transport,AR-C,SESCO,annual,kg,7cc89b45-445b-323d-8f31-17fd983cb558 -2021,Capital Federal,II.2.1,2.8895999999999997,TJ,CH4,3.9,kg/TJ,11.26944,Gas Oil combustion consumption by railway transport,AR-C,SESCO,annual,kg,782ae6e8-ad35-3b0a-99ee-f0d48a0645b9 -2021,Capital Federal,II.2.1,2.8895999999999997,TJ,N2O,3.9,kg/TJ,11.26944,Gas Oil combustion consumption by railway transport,AR-C,SESCO,annual,kg,782ae6e8-ad35-3b0a-99ee-f0d48a0645b9 -2021,Buenos Aires,II.1.1,1279.04532,TJ,CO2,74100.0,kg/TJ,94777258.212,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,7ed12186-34c0-3d02-99ad-48c9ca865493 -2021,Buenos Aires,II.1.1,1279.04532,TJ,CH4,3.9,kg/TJ,4988.276747999999,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,d48bb42e-54e9-308f-8314-9a51c9577c7a -2021,Buenos Aires,II.1.1,1279.04532,TJ,N2O,3.9,kg/TJ,4988.276747999999,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,d48bb42e-54e9-308f-8314-9a51c9577c7a -2021,Capital Federal,II.1.1,320.45664,TJ,CO2,74100.0,kg/TJ,23745837.024,Gas Oil combustion consumption by freight transport,AR-C,SESCO,annual,kg,f73fd212-433d-3f4e-8b89-d7e7a40049d0 -2021,Capital Federal,II.1.1,320.45664,TJ,CH4,3.9,kg/TJ,1249.780896,Gas Oil combustion consumption by freight transport,AR-C,SESCO,annual,kg,020963f4-ffcd-37ca-a31a-3890f241ddf9 -2021,Capital Federal,II.1.1,320.45664,TJ,N2O,3.9,kg/TJ,1249.780896,Gas Oil combustion consumption by freight transport,AR-C,SESCO,annual,kg,020963f4-ffcd-37ca-a31a-3890f241ddf9 -2021,Catamarca,II.1.1,9.10224,TJ,CO2,74100.0,kg/TJ,674475.984,Gas Oil combustion consumption by freight transport,AR-K,SESCO,annual,kg,15f56ae1-582e-350d-acf2-039547b9724f -2021,Catamarca,II.1.1,9.10224,TJ,CH4,3.9,kg/TJ,35.498736,Gas Oil combustion consumption by freight transport,AR-K,SESCO,annual,kg,517ecd64-b352-33ae-a971-809d899fc129 -2021,Catamarca,II.1.1,9.10224,TJ,N2O,3.9,kg/TJ,35.498736,Gas Oil combustion consumption by freight transport,AR-K,SESCO,annual,kg,517ecd64-b352-33ae-a971-809d899fc129 -2021,Chaco,II.1.1,23.73084,TJ,CO2,74100.0,kg/TJ,1758455.244,Gas Oil combustion consumption by freight transport,AR-H,SESCO,annual,kg,13a1fd99-6ea2-3332-b73d-e21136dcdd7a -2021,Chaco,II.1.1,23.73084,TJ,CH4,3.9,kg/TJ,92.550276,Gas Oil combustion consumption by freight transport,AR-H,SESCO,annual,kg,d89ca209-8648-3905-8383-edce2fcdd175 -2021,Chaco,II.1.1,23.73084,TJ,N2O,3.9,kg/TJ,92.550276,Gas Oil combustion consumption by freight transport,AR-H,SESCO,annual,kg,d89ca209-8648-3905-8383-edce2fcdd175 -2021,Chubut,II.1.1,53.096399999999996,TJ,CO2,74100.0,kg/TJ,3934443.2399999998,Gas Oil combustion consumption by freight transport,AR-U,SESCO,annual,kg,46031eeb-54f2-3394-a5b5-9b1428d4762b -2021,Chubut,II.1.1,53.096399999999996,TJ,CH4,3.9,kg/TJ,207.07595999999998,Gas Oil combustion consumption by freight transport,AR-U,SESCO,annual,kg,f9f17796-0684-3bdb-9411-5e61b06ee1c0 -2021,Chubut,II.1.1,53.096399999999996,TJ,N2O,3.9,kg/TJ,207.07595999999998,Gas Oil combustion consumption by freight transport,AR-U,SESCO,annual,kg,f9f17796-0684-3bdb-9411-5e61b06ee1c0 -2021,Corrientes,II.1.1,63.46284,TJ,CO2,74100.0,kg/TJ,4702596.444,Gas Oil combustion consumption by freight transport,AR-W,SESCO,annual,kg,3728cd35-2577-3a2f-8b9d-4fe9ef4f4d0d -2021,Corrientes,II.1.1,63.46284,TJ,CH4,3.9,kg/TJ,247.505076,Gas Oil combustion consumption by freight transport,AR-W,SESCO,annual,kg,df780de8-27e0-3fb2-91b1-25b1764f49c9 -2021,Corrientes,II.1.1,63.46284,TJ,N2O,3.9,kg/TJ,247.505076,Gas Oil combustion consumption by freight transport,AR-W,SESCO,annual,kg,df780de8-27e0-3fb2-91b1-25b1764f49c9 -2021,Córdoba,II.1.1,184.97052,TJ,CO2,74100.0,kg/TJ,13706315.532,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,06155b3f-c823-3372-8357-4483ed314d04 -2021,Córdoba,II.1.1,184.97052,TJ,CH4,3.9,kg/TJ,721.3850279999999,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,061413ad-ae74-3f29-addf-6a6c17dad3eb -2021,Córdoba,II.1.1,184.97052,TJ,N2O,3.9,kg/TJ,721.3850279999999,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,061413ad-ae74-3f29-addf-6a6c17dad3eb -2021,Entre Rios,II.1.1,106.15668,TJ,CO2,74100.0,kg/TJ,7866209.988,Gas Oil combustion consumption by freight transport,AR-E,SESCO,annual,kg,81eded8d-4d5c-3e8e-a419-fadd0086eab2 -2021,Entre Rios,II.1.1,106.15668,TJ,CH4,3.9,kg/TJ,414.01105199999995,Gas Oil combustion consumption by freight transport,AR-E,SESCO,annual,kg,ef24c252-cbee-353b-b8d0-83d40cad1ac1 -2021,Entre Rios,II.1.1,106.15668,TJ,N2O,3.9,kg/TJ,414.01105199999995,Gas Oil combustion consumption by freight transport,AR-E,SESCO,annual,kg,ef24c252-cbee-353b-b8d0-83d40cad1ac1 -2021,Formosa,II.1.1,10.6554,TJ,CO2,74100.0,kg/TJ,789565.14,Gas Oil combustion consumption by freight transport,AR-P,SESCO,annual,kg,199724b1-129e-369a-878b-c7ba4c621768 -2021,Formosa,II.1.1,10.6554,TJ,CH4,3.9,kg/TJ,41.55606,Gas Oil combustion consumption by freight transport,AR-P,SESCO,annual,kg,8701830f-4aa2-36a8-a9a8-fdfc2ecbd1af -2021,Formosa,II.1.1,10.6554,TJ,N2O,3.9,kg/TJ,41.55606,Gas Oil combustion consumption by freight transport,AR-P,SESCO,annual,kg,8701830f-4aa2-36a8-a9a8-fdfc2ecbd1af -2021,Jujuy,II.1.1,7.7658,TJ,CO2,74100.0,kg/TJ,575445.78,Gas Oil combustion consumption by freight transport,AR-Y,SESCO,annual,kg,cd901963-94b0-395b-a67d-44f41aca9a32 -2021,Jujuy,II.1.1,7.7658,TJ,CH4,3.9,kg/TJ,30.28662,Gas Oil combustion consumption by freight transport,AR-Y,SESCO,annual,kg,01ac5490-6559-365c-880b-79207a82540f -2021,Jujuy,II.1.1,7.7658,TJ,N2O,3.9,kg/TJ,30.28662,Gas Oil combustion consumption by freight transport,AR-Y,SESCO,annual,kg,01ac5490-6559-365c-880b-79207a82540f -2021,La Pampa,II.1.1,25.825799999999997,TJ,CO2,74100.0,kg/TJ,1913691.7799999998,Gas Oil combustion consumption by freight transport,AR-L,SESCO,annual,kg,8d0d0e37-bb3c-3af7-a2f9-47392f23827a -2021,La Pampa,II.1.1,25.825799999999997,TJ,CH4,3.9,kg/TJ,100.72061999999998,Gas Oil combustion consumption by freight transport,AR-L,SESCO,annual,kg,4d54c39a-fc5f-3762-8c26-bdc35b0a6c77 -2021,La Pampa,II.1.1,25.825799999999997,TJ,N2O,3.9,kg/TJ,100.72061999999998,Gas Oil combustion consumption by freight transport,AR-L,SESCO,annual,kg,4d54c39a-fc5f-3762-8c26-bdc35b0a6c77 -2021,La Rioja,II.1.1,3.28692,TJ,CO2,74100.0,kg/TJ,243560.772,Gas Oil combustion consumption by freight transport,AR-F,SESCO,annual,kg,b68b5340-4082-3305-9537-42be7a1ed33e -2021,La Rioja,II.1.1,3.28692,TJ,CH4,3.9,kg/TJ,12.818988,Gas Oil combustion consumption by freight transport,AR-F,SESCO,annual,kg,545ac012-46dd-339f-8b2f-743feaa33a67 -2021,La Rioja,II.1.1,3.28692,TJ,N2O,3.9,kg/TJ,12.818988,Gas Oil combustion consumption by freight transport,AR-F,SESCO,annual,kg,545ac012-46dd-339f-8b2f-743feaa33a67 -2021,Mendoza,II.1.1,46.558679999999995,TJ,CO2,74100.0,kg/TJ,3449998.1879999996,Gas Oil combustion consumption by freight transport,AR-M,SESCO,annual,kg,6d5f8481-f488-3840-b9c0-ecfe6f3cecdb -2021,Mendoza,II.1.1,46.558679999999995,TJ,CH4,3.9,kg/TJ,181.57885199999998,Gas Oil combustion consumption by freight transport,AR-M,SESCO,annual,kg,9e8e49c8-3a05-30e8-af4b-157c8ea6c21a -2021,Mendoza,II.1.1,46.558679999999995,TJ,N2O,3.9,kg/TJ,181.57885199999998,Gas Oil combustion consumption by freight transport,AR-M,SESCO,annual,kg,9e8e49c8-3a05-30e8-af4b-157c8ea6c21a -2021,Misiones,II.1.1,102.4002,TJ,CO2,74100.0,kg/TJ,7587854.82,Gas Oil combustion consumption by freight transport,AR-N,SESCO,annual,kg,3e6793e5-3b63-39e9-9f5a-03c6489797d4 -2021,Misiones,II.1.1,102.4002,TJ,CH4,3.9,kg/TJ,399.36078,Gas Oil combustion consumption by freight transport,AR-N,SESCO,annual,kg,d68925b4-68d1-334b-8524-ecca45a5261a -2021,Misiones,II.1.1,102.4002,TJ,N2O,3.9,kg/TJ,399.36078,Gas Oil combustion consumption by freight transport,AR-N,SESCO,annual,kg,d68925b4-68d1-334b-8524-ecca45a5261a -2021,Neuquén,II.1.1,3.17856,TJ,CO2,74100.0,kg/TJ,235531.296,Gas Oil combustion consumption by freight transport,AR-Q,SESCO,annual,kg,374c5c0b-63ab-3c52-acd8-b1639f69a650 -2021,Neuquén,II.1.1,3.17856,TJ,CH4,3.9,kg/TJ,12.396384,Gas Oil combustion consumption by freight transport,AR-Q,SESCO,annual,kg,a5fcfe8b-3614-36fa-a714-4441399a2603 -2021,Neuquén,II.1.1,3.17856,TJ,N2O,3.9,kg/TJ,12.396384,Gas Oil combustion consumption by freight transport,AR-Q,SESCO,annual,kg,a5fcfe8b-3614-36fa-a714-4441399a2603 -2021,Rio Negro,II.1.1,111.17736,TJ,CO2,74100.0,kg/TJ,8238242.375999999,Gas Oil combustion consumption by freight transport,AR-R,SESCO,annual,kg,1e2d7d49-e7ac-3b94-b1e8-c8039fcb5b12 -2021,Rio Negro,II.1.1,111.17736,TJ,CH4,3.9,kg/TJ,433.59170399999994,Gas Oil combustion consumption by freight transport,AR-R,SESCO,annual,kg,fd07f225-e2d9-3a8e-8862-98b6cea21903 -2021,Rio Negro,II.1.1,111.17736,TJ,N2O,3.9,kg/TJ,433.59170399999994,Gas Oil combustion consumption by freight transport,AR-R,SESCO,annual,kg,fd07f225-e2d9-3a8e-8862-98b6cea21903 -2021,Salta,II.1.1,5.20128,TJ,CO2,74100.0,kg/TJ,385414.848,Gas Oil combustion consumption by freight transport,AR-A,SESCO,annual,kg,d7825e1b-d587-3894-a49f-50954c914175 -2021,Salta,II.1.1,5.20128,TJ,CH4,3.9,kg/TJ,20.284992,Gas Oil combustion consumption by freight transport,AR-A,SESCO,annual,kg,de2dab8d-7c8e-3f14-ae39-ce804d7664e4 -2021,Salta,II.1.1,5.20128,TJ,N2O,3.9,kg/TJ,20.284992,Gas Oil combustion consumption by freight transport,AR-A,SESCO,annual,kg,de2dab8d-7c8e-3f14-ae39-ce804d7664e4 -2021,San Juan,II.1.1,7.00728,TJ,CO2,74100.0,kg/TJ,519239.448,Gas Oil combustion consumption by freight transport,AR-J,SESCO,annual,kg,3e0f075c-6159-306f-a57f-c25f6196a204 -2021,San Juan,II.1.1,7.00728,TJ,CH4,3.9,kg/TJ,27.328391999999997,Gas Oil combustion consumption by freight transport,AR-J,SESCO,annual,kg,0cfc92b3-e995-339a-8340-20a4d585c4ee -2021,San Juan,II.1.1,7.00728,TJ,N2O,3.9,kg/TJ,27.328391999999997,Gas Oil combustion consumption by freight transport,AR-J,SESCO,annual,kg,0cfc92b3-e995-339a-8340-20a4d585c4ee -2021,San Luis,II.1.1,54.21612,TJ,CO2,74100.0,kg/TJ,4017414.4919999996,Gas Oil combustion consumption by freight transport,AR-D,SESCO,annual,kg,e0ec412a-841b-3016-969f-0621a14a1bef -2021,San Luis,II.1.1,54.21612,TJ,CH4,3.9,kg/TJ,211.44286799999998,Gas Oil combustion consumption by freight transport,AR-D,SESCO,annual,kg,922afda3-99b1-3fbc-adac-2108960bb111 -2021,San Luis,II.1.1,54.21612,TJ,N2O,3.9,kg/TJ,211.44286799999998,Gas Oil combustion consumption by freight transport,AR-D,SESCO,annual,kg,922afda3-99b1-3fbc-adac-2108960bb111 -2021,Santa Cruz,II.1.1,22.033199999999997,TJ,CO2,74100.0,kg/TJ,1632660.1199999999,Gas Oil combustion consumption by freight transport,AR-Z,SESCO,annual,kg,d568d8ec-8f68-394e-924e-f40edd761015 -2021,Santa Cruz,II.1.1,22.033199999999997,TJ,CH4,3.9,kg/TJ,85.92947999999998,Gas Oil combustion consumption by freight transport,AR-Z,SESCO,annual,kg,6a259a7a-f2b8-372e-8642-b14bffab2244 -2021,Santa Cruz,II.1.1,22.033199999999997,TJ,N2O,3.9,kg/TJ,85.92947999999998,Gas Oil combustion consumption by freight transport,AR-Z,SESCO,annual,kg,6a259a7a-f2b8-372e-8642-b14bffab2244 -2021,Santa Fe,II.1.1,406.49448,TJ,CO2,74100.0,kg/TJ,30121240.968000002,Gas Oil combustion consumption by freight transport,AR-S,SESCO,annual,kg,e79dacc6-1410-30e5-916b-aafc666c165f -2021,Santa Fe,II.1.1,406.49448,TJ,CH4,3.9,kg/TJ,1585.328472,Gas Oil combustion consumption by freight transport,AR-S,SESCO,annual,kg,4bda5d89-f9e0-3de9-856d-1808a9676af2 -2021,Santa Fe,II.1.1,406.49448,TJ,N2O,3.9,kg/TJ,1585.328472,Gas Oil combustion consumption by freight transport,AR-S,SESCO,annual,kg,4bda5d89-f9e0-3de9-856d-1808a9676af2 -2021,Santiago del Estero,II.1.1,87.01308,TJ,CO2,74100.0,kg/TJ,6447669.228,Gas Oil combustion consumption by freight transport,AR-G,SESCO,annual,kg,a572d272-7275-3058-b45c-ec9b6f154753 -2021,Santiago del Estero,II.1.1,87.01308,TJ,CH4,3.9,kg/TJ,339.351012,Gas Oil combustion consumption by freight transport,AR-G,SESCO,annual,kg,d5f65551-9c95-31d0-a1d8-8a0c90f8ea03 -2021,Santiago del Estero,II.1.1,87.01308,TJ,N2O,3.9,kg/TJ,339.351012,Gas Oil combustion consumption by freight transport,AR-G,SESCO,annual,kg,d5f65551-9c95-31d0-a1d8-8a0c90f8ea03 -2021,Tierra del Fuego,II.1.1,4.659479999999999,TJ,CO2,74100.0,kg/TJ,345267.46799999994,Gas Oil combustion consumption by freight transport,AR-V,SESCO,annual,kg,1642e008-91da-30b2-ba23-f96bb3867104 -2021,Tierra del Fuego,II.1.1,4.659479999999999,TJ,CH4,3.9,kg/TJ,18.171971999999997,Gas Oil combustion consumption by freight transport,AR-V,SESCO,annual,kg,a4bd8dca-d390-347e-98dc-46aea6a2ae12 -2021,Tierra del Fuego,II.1.1,4.659479999999999,TJ,N2O,3.9,kg/TJ,18.171971999999997,Gas Oil combustion consumption by freight transport,AR-V,SESCO,annual,kg,a4bd8dca-d390-347e-98dc-46aea6a2ae12 -2021,Tucuman,II.1.1,59.85084,TJ,CO2,74100.0,kg/TJ,4434947.244,Gas Oil combustion consumption by freight transport,AR-T,SESCO,annual,kg,0c25fc53-9d1a-3ffa-984d-06a58e1f8ddd -2021,Tucuman,II.1.1,59.85084,TJ,CH4,3.9,kg/TJ,233.418276,Gas Oil combustion consumption by freight transport,AR-T,SESCO,annual,kg,e65caaa0-78f1-31bb-8efd-bfcac8d1b8a8 -2021,Tucuman,II.1.1,59.85084,TJ,N2O,3.9,kg/TJ,233.418276,Gas Oil combustion consumption by freight transport,AR-T,SESCO,annual,kg,e65caaa0-78f1-31bb-8efd-bfcac8d1b8a8 -2021,Buenos Aires,II.1.1,118.36524,TJ,CO2,74100.0,kg/TJ,8770864.284,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,b6977628-f9c4-32ec-b689-5e497b6ce537 -2021,Buenos Aires,II.1.1,118.36524,TJ,CH4,3.9,kg/TJ,461.624436,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,8f5d2284-e28c-3b65-ae8c-9c3a824e2940 -2021,Buenos Aires,II.1.1,118.36524,TJ,N2O,3.9,kg/TJ,461.624436,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,8f5d2284-e28c-3b65-ae8c-9c3a824e2940 -2021,Capital Federal,II.1.1,23.18904,TJ,CO2,74100.0,kg/TJ,1718307.8639999998,Gas Oil combustion consumption by freight transport,AR-C,SESCO,annual,kg,a0e557cb-9b38-39d3-bce0-92119e938ef4 -2021,Capital Federal,II.1.1,23.18904,TJ,CH4,3.9,kg/TJ,90.43725599999999,Gas Oil combustion consumption by freight transport,AR-C,SESCO,annual,kg,6122e40e-6082-30a5-a7ac-11b473246e0e -2021,Capital Federal,II.1.1,23.18904,TJ,N2O,3.9,kg/TJ,90.43725599999999,Gas Oil combustion consumption by freight transport,AR-C,SESCO,annual,kg,6122e40e-6082-30a5-a7ac-11b473246e0e -2021,Catamarca,II.1.1,0.39732,TJ,CO2,74100.0,kg/TJ,29441.412,Gas Oil combustion consumption by freight transport,AR-K,SESCO,annual,kg,85a645da-c038-35a6-a5fd-0ac40b2ec5f6 -2021,Catamarca,II.1.1,0.39732,TJ,CH4,3.9,kg/TJ,1.549548,Gas Oil combustion consumption by freight transport,AR-K,SESCO,annual,kg,476f10f9-2789-32e6-bbd6-1a673558b1f6 -2021,Catamarca,II.1.1,0.39732,TJ,N2O,3.9,kg/TJ,1.549548,Gas Oil combustion consumption by freight transport,AR-K,SESCO,annual,kg,476f10f9-2789-32e6-bbd6-1a673558b1f6 -2021,Chaco,II.1.1,3.64812,TJ,CO2,74100.0,kg/TJ,270325.692,Gas Oil combustion consumption by freight transport,AR-H,SESCO,annual,kg,2e62f7dd-9a5b-3bfe-a716-917ee4814950 -2021,Chaco,II.1.1,3.64812,TJ,CH4,3.9,kg/TJ,14.227668,Gas Oil combustion consumption by freight transport,AR-H,SESCO,annual,kg,e41c5d58-702e-34b0-a689-7d8fbe158ba9 -2021,Chaco,II.1.1,3.64812,TJ,N2O,3.9,kg/TJ,14.227668,Gas Oil combustion consumption by freight transport,AR-H,SESCO,annual,kg,e41c5d58-702e-34b0-a689-7d8fbe158ba9 -2021,Chubut,II.1.1,8.993879999999999,TJ,CO2,74100.0,kg/TJ,666446.5079999999,Gas Oil combustion consumption by freight transport,AR-U,SESCO,annual,kg,126aa26c-a4ad-335e-ac57-74323834a81e -2021,Chubut,II.1.1,8.993879999999999,TJ,CH4,3.9,kg/TJ,35.076131999999994,Gas Oil combustion consumption by freight transport,AR-U,SESCO,annual,kg,7e64a6a2-b7f7-349f-ba93-b09ac893117d -2021,Chubut,II.1.1,8.993879999999999,TJ,N2O,3.9,kg/TJ,35.076131999999994,Gas Oil combustion consumption by freight transport,AR-U,SESCO,annual,kg,7e64a6a2-b7f7-349f-ba93-b09ac893117d -2021,Corrientes,II.1.1,17.77104,TJ,CO2,74100.0,kg/TJ,1316834.064,Gas Oil combustion consumption by freight transport,AR-W,SESCO,annual,kg,0e85c3a1-2b01-3082-973b-e99f26225018 -2021,Corrientes,II.1.1,17.77104,TJ,CH4,3.9,kg/TJ,69.30705599999999,Gas Oil combustion consumption by freight transport,AR-W,SESCO,annual,kg,a12b0023-41c1-302b-b8e2-5b09c7684f91 -2021,Corrientes,II.1.1,17.77104,TJ,N2O,3.9,kg/TJ,69.30705599999999,Gas Oil combustion consumption by freight transport,AR-W,SESCO,annual,kg,a12b0023-41c1-302b-b8e2-5b09c7684f91 -2021,Córdoba,II.1.1,12.53364,TJ,CO2,74100.0,kg/TJ,928742.724,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,0790802a-ab5d-3aff-a109-31e441ec2e5a -2021,Córdoba,II.1.1,12.53364,TJ,CH4,3.9,kg/TJ,48.881196,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,8c9d7ca9-7845-3429-adb4-ff78f13834e4 -2021,Córdoba,II.1.1,12.53364,TJ,N2O,3.9,kg/TJ,48.881196,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,8c9d7ca9-7845-3429-adb4-ff78f13834e4 -2021,Entre Rios,II.1.1,10.14972,TJ,CO2,74100.0,kg/TJ,752094.252,Gas Oil combustion consumption by freight transport,AR-E,SESCO,annual,kg,b228d64b-30cd-3d4e-9717-f5c62d654fed -2021,Entre Rios,II.1.1,10.14972,TJ,CH4,3.9,kg/TJ,39.583908,Gas Oil combustion consumption by freight transport,AR-E,SESCO,annual,kg,fb0f93b0-51f6-38eb-a02d-f6726519d7fe -2021,Entre Rios,II.1.1,10.14972,TJ,N2O,3.9,kg/TJ,39.583908,Gas Oil combustion consumption by freight transport,AR-E,SESCO,annual,kg,fb0f93b0-51f6-38eb-a02d-f6726519d7fe -2021,Formosa,II.1.1,2.6367599999999998,TJ,CO2,74100.0,kg/TJ,195383.916,Gas Oil combustion consumption by freight transport,AR-P,SESCO,annual,kg,2381488a-5231-3b02-baa5-49dae9541b34 -2021,Formosa,II.1.1,2.6367599999999998,TJ,CH4,3.9,kg/TJ,10.283363999999999,Gas Oil combustion consumption by freight transport,AR-P,SESCO,annual,kg,10a0b47c-6e8d-37e5-bc1b-d6a8a0ad8988 -2021,Formosa,II.1.1,2.6367599999999998,TJ,N2O,3.9,kg/TJ,10.283363999999999,Gas Oil combustion consumption by freight transport,AR-P,SESCO,annual,kg,10a0b47c-6e8d-37e5-bc1b-d6a8a0ad8988 -2021,Jujuy,II.1.1,2.23944,TJ,CO2,74100.0,kg/TJ,165942.50400000002,Gas Oil combustion consumption by freight transport,AR-Y,SESCO,annual,kg,700975ce-d717-3f81-9056-920f8c4fd565 -2021,Jujuy,II.1.1,2.23944,TJ,CH4,3.9,kg/TJ,8.733816000000001,Gas Oil combustion consumption by freight transport,AR-Y,SESCO,annual,kg,f616c99f-a5ae-3ec8-85fa-411994b7a43e -2021,Jujuy,II.1.1,2.23944,TJ,N2O,3.9,kg/TJ,8.733816000000001,Gas Oil combustion consumption by freight transport,AR-Y,SESCO,annual,kg,f616c99f-a5ae-3ec8-85fa-411994b7a43e -2021,La Pampa,II.1.1,1.48092,TJ,CO2,74100.0,kg/TJ,109736.172,Gas Oil combustion consumption by freight transport,AR-L,SESCO,annual,kg,de3dc1f3-0c65-3fa4-b192-da0daf9a68b3 -2021,La Pampa,II.1.1,1.48092,TJ,CH4,3.9,kg/TJ,5.775588,Gas Oil combustion consumption by freight transport,AR-L,SESCO,annual,kg,15f148aa-11ce-34ba-896c-642f48dfd274 -2021,La Pampa,II.1.1,1.48092,TJ,N2O,3.9,kg/TJ,5.775588,Gas Oil combustion consumption by freight transport,AR-L,SESCO,annual,kg,15f148aa-11ce-34ba-896c-642f48dfd274 -2021,La Rioja,II.1.1,0.25284,TJ,CO2,74100.0,kg/TJ,18735.444,Gas Oil combustion consumption by freight transport,AR-F,SESCO,annual,kg,49db72b4-e7a3-3d71-add8-5fa07912b723 -2021,La Rioja,II.1.1,0.25284,TJ,CH4,3.9,kg/TJ,0.9860760000000001,Gas Oil combustion consumption by freight transport,AR-F,SESCO,annual,kg,6abff1db-b6ac-3845-aef3-4514f1a3fdaf -2021,La Rioja,II.1.1,0.25284,TJ,N2O,3.9,kg/TJ,0.9860760000000001,Gas Oil combustion consumption by freight transport,AR-F,SESCO,annual,kg,6abff1db-b6ac-3845-aef3-4514f1a3fdaf -2021,Mendoza,II.1.1,9.78852,TJ,CO2,74100.0,kg/TJ,725329.332,Gas Oil combustion consumption by freight transport,AR-M,SESCO,annual,kg,c780afc5-1c5b-3300-878f-248c830393d8 -2021,Mendoza,II.1.1,9.78852,TJ,CH4,3.9,kg/TJ,38.175228,Gas Oil combustion consumption by freight transport,AR-M,SESCO,annual,kg,6b79507b-a7c3-300f-9863-e26e6aeea6b8 -2021,Mendoza,II.1.1,9.78852,TJ,N2O,3.9,kg/TJ,38.175228,Gas Oil combustion consumption by freight transport,AR-M,SESCO,annual,kg,6b79507b-a7c3-300f-9863-e26e6aeea6b8 -2021,Misiones,II.1.1,1.30032,TJ,CO2,74100.0,kg/TJ,96353.712,Gas Oil combustion consumption by freight transport,AR-N,SESCO,annual,kg,d2695a60-f5b2-31b9-9061-a352b1c3941b -2021,Misiones,II.1.1,1.30032,TJ,CH4,3.9,kg/TJ,5.071248,Gas Oil combustion consumption by freight transport,AR-N,SESCO,annual,kg,f7dba43f-d130-3573-b2e3-c4ad187aa377 -2021,Misiones,II.1.1,1.30032,TJ,N2O,3.9,kg/TJ,5.071248,Gas Oil combustion consumption by freight transport,AR-N,SESCO,annual,kg,f7dba43f-d130-3573-b2e3-c4ad187aa377 -2021,Neuquén,II.1.1,0.86688,TJ,CO2,74100.0,kg/TJ,64235.808,Gas Oil combustion consumption by freight transport,AR-Q,SESCO,annual,kg,42bc86c0-3e60-38cf-9617-d938044bbad4 -2021,Neuquén,II.1.1,0.86688,TJ,CH4,3.9,kg/TJ,3.380832,Gas Oil combustion consumption by freight transport,AR-Q,SESCO,annual,kg,0a85f544-5eb4-33da-83e1-c902397dc29e -2021,Neuquén,II.1.1,0.86688,TJ,N2O,3.9,kg/TJ,3.380832,Gas Oil combustion consumption by freight transport,AR-Q,SESCO,annual,kg,0a85f544-5eb4-33da-83e1-c902397dc29e -2021,Rio Negro,II.1.1,9.499559999999999,TJ,CO2,74100.0,kg/TJ,703917.396,Gas Oil combustion consumption by freight transport,AR-R,SESCO,annual,kg,727b6c04-6ba6-3ef5-903e-958c4b751a18 -2021,Rio Negro,II.1.1,9.499559999999999,TJ,CH4,3.9,kg/TJ,37.048283999999995,Gas Oil combustion consumption by freight transport,AR-R,SESCO,annual,kg,46334480-9a12-3f64-8c74-5c5edd887f0f -2021,Rio Negro,II.1.1,9.499559999999999,TJ,N2O,3.9,kg/TJ,37.048283999999995,Gas Oil combustion consumption by freight transport,AR-R,SESCO,annual,kg,46334480-9a12-3f64-8c74-5c5edd887f0f -2021,Salta,II.1.1,1.3364399999999999,TJ,CO2,74100.0,kg/TJ,99030.20399999998,Gas Oil combustion consumption by freight transport,AR-A,SESCO,annual,kg,b136273f-08ed-307b-9c9f-5695139c120b -2021,Salta,II.1.1,1.3364399999999999,TJ,CH4,3.9,kg/TJ,5.212115999999999,Gas Oil combustion consumption by freight transport,AR-A,SESCO,annual,kg,252b6692-1f9a-3603-a660-a43b5e8d6533 -2021,Salta,II.1.1,1.3364399999999999,TJ,N2O,3.9,kg/TJ,5.212115999999999,Gas Oil combustion consumption by freight transport,AR-A,SESCO,annual,kg,252b6692-1f9a-3603-a660-a43b5e8d6533 -2021,San Juan,II.1.1,0.07224,TJ,CO2,74100.0,kg/TJ,5352.9839999999995,Gas Oil combustion consumption by freight transport,AR-J,SESCO,annual,kg,a36341f0-2deb-3be0-be3c-127b591e8f2e -2021,San Juan,II.1.1,0.07224,TJ,CH4,3.9,kg/TJ,0.281736,Gas Oil combustion consumption by freight transport,AR-J,SESCO,annual,kg,f0c602d8-00e1-34de-9792-455335f749d0 -2021,San Juan,II.1.1,0.07224,TJ,N2O,3.9,kg/TJ,0.281736,Gas Oil combustion consumption by freight transport,AR-J,SESCO,annual,kg,f0c602d8-00e1-34de-9792-455335f749d0 -2021,San Luis,II.1.1,3.6119999999999997,TJ,CO2,74100.0,kg/TJ,267649.19999999995,Gas Oil combustion consumption by freight transport,AR-D,SESCO,annual,kg,d9a81be0-00ec-3f36-8f92-1db920c8d259 -2021,San Luis,II.1.1,3.6119999999999997,TJ,CH4,3.9,kg/TJ,14.086799999999998,Gas Oil combustion consumption by freight transport,AR-D,SESCO,annual,kg,8a457f7e-08e3-3354-8546-18c03b2249de -2021,San Luis,II.1.1,3.6119999999999997,TJ,N2O,3.9,kg/TJ,14.086799999999998,Gas Oil combustion consumption by freight transport,AR-D,SESCO,annual,kg,8a457f7e-08e3-3354-8546-18c03b2249de -2021,Santa Cruz,II.1.1,2.60064,TJ,CO2,74100.0,kg/TJ,192707.424,Gas Oil combustion consumption by freight transport,AR-Z,SESCO,annual,kg,1cbb3439-ec07-3e49-ad66-48961cb7f975 -2021,Santa Cruz,II.1.1,2.60064,TJ,CH4,3.9,kg/TJ,10.142496,Gas Oil combustion consumption by freight transport,AR-Z,SESCO,annual,kg,b69bcf9b-af15-32f2-84a5-4b0a0f1b4e05 -2021,Santa Cruz,II.1.1,2.60064,TJ,N2O,3.9,kg/TJ,10.142496,Gas Oil combustion consumption by freight transport,AR-Z,SESCO,annual,kg,b69bcf9b-af15-32f2-84a5-4b0a0f1b4e05 -2021,Santa Fe,II.1.1,25.42848,TJ,CO2,74100.0,kg/TJ,1884250.368,Gas Oil combustion consumption by freight transport,AR-S,SESCO,annual,kg,ba96ed6d-e178-3e71-aaec-43acd23151be -2021,Santa Fe,II.1.1,25.42848,TJ,CH4,3.9,kg/TJ,99.171072,Gas Oil combustion consumption by freight transport,AR-S,SESCO,annual,kg,41b8a768-fabe-34e2-b206-94ab4ba0ce0b -2021,Santa Fe,II.1.1,25.42848,TJ,N2O,3.9,kg/TJ,99.171072,Gas Oil combustion consumption by freight transport,AR-S,SESCO,annual,kg,41b8a768-fabe-34e2-b206-94ab4ba0ce0b -2021,Santiago del Estero,II.1.1,2.56452,TJ,CO2,74100.0,kg/TJ,190030.932,Gas Oil combustion consumption by freight transport,AR-G,SESCO,annual,kg,a63b7ca7-32c0-3333-83bc-ca30857698a8 -2021,Santiago del Estero,II.1.1,2.56452,TJ,CH4,3.9,kg/TJ,10.001628,Gas Oil combustion consumption by freight transport,AR-G,SESCO,annual,kg,bb0c6b8e-4ad9-3e10-93ed-8a5a8f89fd93 -2021,Santiago del Estero,II.1.1,2.56452,TJ,N2O,3.9,kg/TJ,10.001628,Gas Oil combustion consumption by freight transport,AR-G,SESCO,annual,kg,bb0c6b8e-4ad9-3e10-93ed-8a5a8f89fd93 -2021,Tierra del Fuego,II.1.1,0.07224,TJ,CO2,74100.0,kg/TJ,5352.9839999999995,Gas Oil combustion consumption by freight transport,AR-V,SESCO,annual,kg,9538ea72-cb1a-31e8-a3c1-d6e09531b470 -2021,Tierra del Fuego,II.1.1,0.07224,TJ,CH4,3.9,kg/TJ,0.281736,Gas Oil combustion consumption by freight transport,AR-V,SESCO,annual,kg,bac7c95d-2ce8-3ad1-87f4-8e0804123eab -2021,Tierra del Fuego,II.1.1,0.07224,TJ,N2O,3.9,kg/TJ,0.281736,Gas Oil combustion consumption by freight transport,AR-V,SESCO,annual,kg,bac7c95d-2ce8-3ad1-87f4-8e0804123eab -2021,Tucuman,II.1.1,5.345759999999999,TJ,CO2,74100.0,kg/TJ,396120.81599999993,Gas Oil combustion consumption by freight transport,AR-T,SESCO,annual,kg,44f46aa0-c60c-397b-b60f-e5d9911469eb -2021,Tucuman,II.1.1,5.345759999999999,TJ,CH4,3.9,kg/TJ,20.848463999999996,Gas Oil combustion consumption by freight transport,AR-T,SESCO,annual,kg,1de5e664-ac68-3000-a410-4cc87b445794 -2021,Tucuman,II.1.1,5.345759999999999,TJ,N2O,3.9,kg/TJ,20.848463999999996,Gas Oil combustion consumption by freight transport,AR-T,SESCO,annual,kg,1de5e664-ac68-3000-a410-4cc87b445794 -2021,Buenos Aires,II.1.1,12.643785,TJ,CO2,73300.0,kg/TJ,926789.4404999999,Naphtha combustion consumption by freight transport,AR-B,SESCO,annual,kg,6bc44e98-9ba7-382f-8258-916a583acb83 -2021,Buenos Aires,II.1.1,12.643785,TJ,CH4,0.5,kg/TJ,6.3218925,Naphtha combustion consumption by freight transport,AR-B,SESCO,annual,kg,ddaaa1fe-7431-3e1e-a54d-e54d305710dd -2021,Buenos Aires,II.1.1,12.643785,TJ,N2O,2.0,kg/TJ,25.28757,Naphtha combustion consumption by freight transport,AR-B,SESCO,annual,kg,4b57258c-5cf9-3e69-af35-60a59b701e4f -2021,Capital Federal,II.1.1,4.283125,TJ,CO2,73300.0,kg/TJ,313953.0625,Naphtha combustion consumption by freight transport,AR-C,SESCO,annual,kg,1aab076a-589a-3e74-91d9-4dc4c563ccbf -2021,Capital Federal,II.1.1,4.283125,TJ,CH4,0.5,kg/TJ,2.1415625,Naphtha combustion consumption by freight transport,AR-C,SESCO,annual,kg,40facf95-2bac-373a-be77-c332a74b2dcc -2021,Capital Federal,II.1.1,4.283125,TJ,N2O,2.0,kg/TJ,8.56625,Naphtha combustion consumption by freight transport,AR-C,SESCO,annual,kg,24c3dd1c-e89e-3514-94e3-01876ec1f0d4 -2021,Córdoba,II.1.1,1.1992749999999999,TJ,CO2,73300.0,kg/TJ,87906.85749999998,Naphtha combustion consumption by freight transport,AR-X,SESCO,annual,kg,ff162d71-9f39-3995-b6dd-6779ceb297e0 -2021,Córdoba,II.1.1,1.1992749999999999,TJ,CH4,0.5,kg/TJ,0.5996374999999999,Naphtha combustion consumption by freight transport,AR-X,SESCO,annual,kg,e7b10047-0e0b-31fa-9f14-2147de8c797a -2021,Córdoba,II.1.1,1.1992749999999999,TJ,N2O,2.0,kg/TJ,2.3985499999999997,Naphtha combustion consumption by freight transport,AR-X,SESCO,annual,kg,b074aae3-9dc6-36da-afa8-237ef33f0174 -2021,Entre Rios,II.1.1,0.54824,TJ,CO2,73300.0,kg/TJ,40185.992,Naphtha combustion consumption by freight transport,AR-E,SESCO,annual,kg,c0739aea-8f36-3efb-b024-55bb23c44ec5 -2021,Entre Rios,II.1.1,0.54824,TJ,CH4,0.5,kg/TJ,0.27412,Naphtha combustion consumption by freight transport,AR-E,SESCO,annual,kg,41e57c32-5543-3049-847a-9ee183c0e391 -2021,Entre Rios,II.1.1,0.54824,TJ,N2O,2.0,kg/TJ,1.09648,Naphtha combustion consumption by freight transport,AR-E,SESCO,annual,kg,82c08b6f-c044-3221-8d44-f50ce7ad562a -2021,Mendoza,II.1.1,0.102795,TJ,CO2,73300.0,kg/TJ,7534.8735,Naphtha combustion consumption by freight transport,AR-M,SESCO,annual,kg,1d1e2fa3-730b-38eb-a03f-b02fec245fc8 -2021,Mendoza,II.1.1,0.102795,TJ,CH4,0.5,kg/TJ,0.0513975,Naphtha combustion consumption by freight transport,AR-M,SESCO,annual,kg,42930f81-5468-39c8-8d74-9b86b7ae9476 -2021,Mendoza,II.1.1,0.102795,TJ,N2O,2.0,kg/TJ,0.20559,Naphtha combustion consumption by freight transport,AR-M,SESCO,annual,kg,b69636d5-c4ba-3aca-81d9-438a7f179024 -2021,Santa Fe,II.1.1,1.9531049999999999,TJ,CO2,73300.0,kg/TJ,143162.59649999999,Naphtha combustion consumption by freight transport,AR-S,SESCO,annual,kg,af454d4c-4697-3772-9a09-cc2b5ed59820 -2021,Santa Fe,II.1.1,1.9531049999999999,TJ,CH4,0.5,kg/TJ,0.9765524999999999,Naphtha combustion consumption by freight transport,AR-S,SESCO,annual,kg,8ede535c-3131-3185-96cd-65db9462a504 -2021,Santa Fe,II.1.1,1.9531049999999999,TJ,N2O,2.0,kg/TJ,3.9062099999999997,Naphtha combustion consumption by freight transport,AR-S,SESCO,annual,kg,ff27947c-57c6-3bab-a796-1c26fc9833e3 -2021,Buenos Aires,II.1.1,8.49772,TJ,CO2,73300.0,kg/TJ,622882.8759999999,Naphtha combustion consumption by freight transport,AR-B,SESCO,annual,kg,e4434b83-4825-3218-8476-72e50532dcda -2021,Buenos Aires,II.1.1,8.49772,TJ,CH4,0.5,kg/TJ,4.24886,Naphtha combustion consumption by freight transport,AR-B,SESCO,annual,kg,d74e2e6b-d8d6-30c4-9162-f287c31a97f5 -2021,Buenos Aires,II.1.1,8.49772,TJ,N2O,2.0,kg/TJ,16.99544,Naphtha combustion consumption by freight transport,AR-B,SESCO,annual,kg,44f4e817-05b1-39dc-8052-4b492a18a63a -2021,Capital Federal,II.1.1,3.323705,TJ,CO2,73300.0,kg/TJ,243627.5765,Naphtha combustion consumption by freight transport,AR-C,SESCO,annual,kg,9c9f976e-47ec-33e8-b7eb-f09e26de4a49 -2021,Capital Federal,II.1.1,3.323705,TJ,CH4,0.5,kg/TJ,1.6618525,Naphtha combustion consumption by freight transport,AR-C,SESCO,annual,kg,96d9e3e6-9575-33e2-99f4-1156152a6064 -2021,Capital Federal,II.1.1,3.323705,TJ,N2O,2.0,kg/TJ,6.64741,Naphtha combustion consumption by freight transport,AR-C,SESCO,annual,kg,5faa4967-75bb-3eb4-be00-7d5b574e619b -2021,Corrientes,II.1.1,0.034265,TJ,CO2,73300.0,kg/TJ,2511.6245,Naphtha combustion consumption by freight transport,AR-W,SESCO,annual,kg,6b0c2505-58ff-3fba-8c52-dd715f6849f0 -2021,Corrientes,II.1.1,0.034265,TJ,CH4,0.5,kg/TJ,0.0171325,Naphtha combustion consumption by freight transport,AR-W,SESCO,annual,kg,dc3b04b4-6fdc-3e61-833e-9765fb805565 -2021,Corrientes,II.1.1,0.034265,TJ,N2O,2.0,kg/TJ,0.06853,Naphtha combustion consumption by freight transport,AR-W,SESCO,annual,kg,fda6ddb2-27a2-3a76-84f0-e2f08da93338 -2021,Córdoba,II.1.1,0.6853,TJ,CO2,73300.0,kg/TJ,50232.49,Naphtha combustion consumption by freight transport,AR-X,SESCO,annual,kg,d8f6f03e-5841-3414-913e-eea8b23d75ca -2021,Córdoba,II.1.1,0.6853,TJ,CH4,0.5,kg/TJ,0.34265,Naphtha combustion consumption by freight transport,AR-X,SESCO,annual,kg,e5406a82-f9f7-3681-bd67-9978604ee9af -2021,Córdoba,II.1.1,0.6853,TJ,N2O,2.0,kg/TJ,1.3706,Naphtha combustion consumption by freight transport,AR-X,SESCO,annual,kg,4a55a632-9144-3d02-9755-b4b23fb25e96 -2021,Entre Rios,II.1.1,0.5825049999999999,TJ,CO2,73300.0,kg/TJ,42697.6165,Naphtha combustion consumption by freight transport,AR-E,SESCO,annual,kg,5722dcf6-7e75-3d22-b0b1-7b42c127793c -2021,Entre Rios,II.1.1,0.5825049999999999,TJ,CH4,0.5,kg/TJ,0.29125249999999997,Naphtha combustion consumption by freight transport,AR-E,SESCO,annual,kg,843656de-abbb-3d63-b894-db05f90d3786 -2021,Entre Rios,II.1.1,0.5825049999999999,TJ,N2O,2.0,kg/TJ,1.1650099999999999,Naphtha combustion consumption by freight transport,AR-E,SESCO,annual,kg,daf7339a-6cba-39f2-9cfb-8c3d9d38cd25 -2021,Rio Negro,II.1.1,0.034265,TJ,CO2,73300.0,kg/TJ,2511.6245,Naphtha combustion consumption by freight transport,AR-R,SESCO,annual,kg,cb6ea091-6ae8-32b3-aa29-f8132b8dfcd2 -2021,Rio Negro,II.1.1,0.034265,TJ,CH4,0.5,kg/TJ,0.0171325,Naphtha combustion consumption by freight transport,AR-R,SESCO,annual,kg,5bca9739-e77f-3808-b7fa-1c2f915c6cc6 -2021,Rio Negro,II.1.1,0.034265,TJ,N2O,2.0,kg/TJ,0.06853,Naphtha combustion consumption by freight transport,AR-R,SESCO,annual,kg,f837b103-1bf9-37be-8474-e165e048de0c -2021,Santa Fe,II.1.1,1.473395,TJ,CO2,73300.0,kg/TJ,107999.8535,Naphtha combustion consumption by freight transport,AR-S,SESCO,annual,kg,b47f3c99-a995-3d01-8215-8ac176c3901f -2021,Santa Fe,II.1.1,1.473395,TJ,CH4,0.5,kg/TJ,0.7366975,Naphtha combustion consumption by freight transport,AR-S,SESCO,annual,kg,f46568ec-4065-3eb1-913f-17ccd35bd09b -2021,Santa Fe,II.1.1,1.473395,TJ,N2O,2.0,kg/TJ,2.94679,Naphtha combustion consumption by freight transport,AR-S,SESCO,annual,kg,3ac678ff-cbe5-3855-a259-6b370bb3a1d4 -2021,Buenos Aires,II.1.1,966.5712,TJ,CO2,74100.0,kg/TJ,71622925.92,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,11156204-46a3-3045-908b-fc5d57bc67ea -2021,Buenos Aires,II.1.1,966.5712,TJ,CH4,3.9,kg/TJ,3769.6276799999996,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,c98f9055-4b11-384f-95be-3d935fc31bc8 -2021,Buenos Aires,II.1.1,966.5712,TJ,N2O,3.9,kg/TJ,3769.6276799999996,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,c98f9055-4b11-384f-95be-3d935fc31bc8 -2021,Capital Federal,II.1.1,577.7393999999999,TJ,CO2,74100.0,kg/TJ,42810489.53999999,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,21a6f804-3949-34dd-828a-05e01175a7d0 -2021,Capital Federal,II.1.1,577.7393999999999,TJ,CH4,3.9,kg/TJ,2253.1836599999997,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,0961a148-bb14-3e6f-bbde-47de38a20e8f -2021,Capital Federal,II.1.1,577.7393999999999,TJ,N2O,3.9,kg/TJ,2253.1836599999997,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,0961a148-bb14-3e6f-bbde-47de38a20e8f -2021,Chaco,II.1.1,49.050959999999996,TJ,CO2,74100.0,kg/TJ,3634676.136,Gas Oil combustion consumption by public passenger transport,AR-H,SESCO,annual,kg,231ce26e-ab5f-3097-a865-9a2889f34ebf -2021,Chaco,II.1.1,49.050959999999996,TJ,CH4,3.9,kg/TJ,191.29874399999997,Gas Oil combustion consumption by public passenger transport,AR-H,SESCO,annual,kg,1e7bb337-4944-325d-a012-ff26fd8fdecb -2021,Chaco,II.1.1,49.050959999999996,TJ,N2O,3.9,kg/TJ,191.29874399999997,Gas Oil combustion consumption by public passenger transport,AR-H,SESCO,annual,kg,1e7bb337-4944-325d-a012-ff26fd8fdecb -2021,Chubut,II.1.1,3.4314,TJ,CO2,74100.0,kg/TJ,254266.74,Gas Oil combustion consumption by public passenger transport,AR-U,SESCO,annual,kg,9076b835-e3db-359b-b797-9d43d096c8bb -2021,Chubut,II.1.1,3.4314,TJ,CH4,3.9,kg/TJ,13.38246,Gas Oil combustion consumption by public passenger transport,AR-U,SESCO,annual,kg,ca28291c-36ba-368e-b463-c964ccd9413c -2021,Chubut,II.1.1,3.4314,TJ,N2O,3.9,kg/TJ,13.38246,Gas Oil combustion consumption by public passenger transport,AR-U,SESCO,annual,kg,ca28291c-36ba-368e-b463-c964ccd9413c -2021,Corrientes,II.1.1,0.18059999999999998,TJ,CO2,74100.0,kg/TJ,13382.46,Gas Oil combustion consumption by public passenger transport,AR-W,SESCO,annual,kg,e7af1dcf-ed91-3a77-a017-6ab8af74a426 -2021,Corrientes,II.1.1,0.18059999999999998,TJ,CH4,3.9,kg/TJ,0.70434,Gas Oil combustion consumption by public passenger transport,AR-W,SESCO,annual,kg,fc930f5e-3d0d-32fd-9b2b-4e1794e28e4b -2021,Corrientes,II.1.1,0.18059999999999998,TJ,N2O,3.9,kg/TJ,0.70434,Gas Oil combustion consumption by public passenger transport,AR-W,SESCO,annual,kg,fc930f5e-3d0d-32fd-9b2b-4e1794e28e4b -2021,Córdoba,II.1.1,143.32416,TJ,CO2,74100.0,kg/TJ,10620320.256000001,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,3f2461c7-c780-372b-a584-c53efdab2fd6 -2021,Córdoba,II.1.1,143.32416,TJ,CH4,3.9,kg/TJ,558.9642240000001,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,cf1b67f4-6353-3a71-bc05-0bbe01bdca74 -2021,Córdoba,II.1.1,143.32416,TJ,N2O,3.9,kg/TJ,558.9642240000001,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,cf1b67f4-6353-3a71-bc05-0bbe01bdca74 -2021,Entre Rios,II.1.1,26.62044,TJ,CO2,74100.0,kg/TJ,1972574.6039999998,Gas Oil combustion consumption by public passenger transport,AR-E,SESCO,annual,kg,29913773-8fc0-3766-8b66-0c5969e490d3 -2021,Entre Rios,II.1.1,26.62044,TJ,CH4,3.9,kg/TJ,103.81971599999999,Gas Oil combustion consumption by public passenger transport,AR-E,SESCO,annual,kg,91727537-6ce1-3153-9b8f-28b4b2301aef -2021,Entre Rios,II.1.1,26.62044,TJ,N2O,3.9,kg/TJ,103.81971599999999,Gas Oil combustion consumption by public passenger transport,AR-E,SESCO,annual,kg,91727537-6ce1-3153-9b8f-28b4b2301aef -2021,Formosa,II.1.1,0.03612,TJ,CO2,74100.0,kg/TJ,2676.4919999999997,Gas Oil combustion consumption by public passenger transport,AR-P,SESCO,annual,kg,25c0bb22-0c7d-36b9-8d14-6bb55b21688b -2021,Formosa,II.1.1,0.03612,TJ,CH4,3.9,kg/TJ,0.140868,Gas Oil combustion consumption by public passenger transport,AR-P,SESCO,annual,kg,267aa4a1-dffe-3625-b49d-fa8efdcaa0a5 -2021,Formosa,II.1.1,0.03612,TJ,N2O,3.9,kg/TJ,0.140868,Gas Oil combustion consumption by public passenger transport,AR-P,SESCO,annual,kg,267aa4a1-dffe-3625-b49d-fa8efdcaa0a5 -2021,Jujuy,II.1.1,0.03612,TJ,CO2,74100.0,kg/TJ,2676.4919999999997,Gas Oil combustion consumption by public passenger transport,AR-Y,SESCO,annual,kg,3ff4451d-7617-3b97-a080-eaa02a384379 -2021,Jujuy,II.1.1,0.03612,TJ,CH4,3.9,kg/TJ,0.140868,Gas Oil combustion consumption by public passenger transport,AR-Y,SESCO,annual,kg,6f4c9fad-dbde-38f3-a1fc-be6512e67ea9 -2021,Jujuy,II.1.1,0.03612,TJ,N2O,3.9,kg/TJ,0.140868,Gas Oil combustion consumption by public passenger transport,AR-Y,SESCO,annual,kg,6f4c9fad-dbde-38f3-a1fc-be6512e67ea9 -2021,La Pampa,II.1.1,0.8307599999999999,TJ,CO2,74100.0,kg/TJ,61559.316,Gas Oil combustion consumption by public passenger transport,AR-L,SESCO,annual,kg,f13b35ca-684b-3109-ab9e-a63adb8f1c7d -2021,La Pampa,II.1.1,0.8307599999999999,TJ,CH4,3.9,kg/TJ,3.2399639999999996,Gas Oil combustion consumption by public passenger transport,AR-L,SESCO,annual,kg,300d52d1-a3e3-3446-bff5-704258a12062 -2021,La Pampa,II.1.1,0.8307599999999999,TJ,N2O,3.9,kg/TJ,3.2399639999999996,Gas Oil combustion consumption by public passenger transport,AR-L,SESCO,annual,kg,300d52d1-a3e3-3446-bff5-704258a12062 -2021,Mendoza,II.1.1,2.78124,TJ,CO2,74100.0,kg/TJ,206089.884,Gas Oil combustion consumption by public passenger transport,AR-M,SESCO,annual,kg,f07fdaaa-d3a3-3e32-b82c-905a16d38e07 -2021,Mendoza,II.1.1,2.78124,TJ,CH4,3.9,kg/TJ,10.846836,Gas Oil combustion consumption by public passenger transport,AR-M,SESCO,annual,kg,1f987115-38a2-3436-b857-e6f1fb700dbc -2021,Mendoza,II.1.1,2.78124,TJ,N2O,3.9,kg/TJ,10.846836,Gas Oil combustion consumption by public passenger transport,AR-M,SESCO,annual,kg,1f987115-38a2-3436-b857-e6f1fb700dbc -2021,Misiones,II.1.1,83.76227999999999,TJ,CO2,74100.0,kg/TJ,6206784.947999999,Gas Oil combustion consumption by public passenger transport,AR-N,SESCO,annual,kg,b4b286a0-9c08-3088-846a-f04c852ca649 -2021,Misiones,II.1.1,83.76227999999999,TJ,CH4,3.9,kg/TJ,326.67289199999993,Gas Oil combustion consumption by public passenger transport,AR-N,SESCO,annual,kg,df131137-d33f-3eff-a636-6af9f0ac64e5 -2021,Misiones,II.1.1,83.76227999999999,TJ,N2O,3.9,kg/TJ,326.67289199999993,Gas Oil combustion consumption by public passenger transport,AR-N,SESCO,annual,kg,df131137-d33f-3eff-a636-6af9f0ac64e5 -2021,Neuquén,II.1.1,2.05884,TJ,CO2,74100.0,kg/TJ,152560.044,Gas Oil combustion consumption by public passenger transport,AR-Q,SESCO,annual,kg,79aa7daa-fad2-3168-a157-127d38dcf435 -2021,Neuquén,II.1.1,2.05884,TJ,CH4,3.9,kg/TJ,8.029475999999999,Gas Oil combustion consumption by public passenger transport,AR-Q,SESCO,annual,kg,bdab5e1b-a72c-3f62-8d0b-a7df665ce8de -2021,Neuquén,II.1.1,2.05884,TJ,N2O,3.9,kg/TJ,8.029475999999999,Gas Oil combustion consumption by public passenger transport,AR-Q,SESCO,annual,kg,bdab5e1b-a72c-3f62-8d0b-a7df665ce8de -2021,Rio Negro,II.1.1,4.44276,TJ,CO2,74100.0,kg/TJ,329208.516,Gas Oil combustion consumption by public passenger transport,AR-R,SESCO,annual,kg,7abc533f-2fe8-3dfc-b9d1-d4289d78f562 -2021,Rio Negro,II.1.1,4.44276,TJ,CH4,3.9,kg/TJ,17.326763999999997,Gas Oil combustion consumption by public passenger transport,AR-R,SESCO,annual,kg,0ba59b94-185e-3f2a-b046-423567fda56e -2021,Rio Negro,II.1.1,4.44276,TJ,N2O,3.9,kg/TJ,17.326763999999997,Gas Oil combustion consumption by public passenger transport,AR-R,SESCO,annual,kg,0ba59b94-185e-3f2a-b046-423567fda56e -2021,Salta,II.1.1,149.46456,TJ,CO2,74100.0,kg/TJ,11075323.896,Gas Oil combustion consumption by public passenger transport,AR-A,SESCO,annual,kg,3214a2de-9213-3a72-a34e-8c576b781eca -2021,Salta,II.1.1,149.46456,TJ,CH4,3.9,kg/TJ,582.911784,Gas Oil combustion consumption by public passenger transport,AR-A,SESCO,annual,kg,c39ad814-2bcf-3353-a2c4-f8e69648715c -2021,Salta,II.1.1,149.46456,TJ,N2O,3.9,kg/TJ,582.911784,Gas Oil combustion consumption by public passenger transport,AR-A,SESCO,annual,kg,c39ad814-2bcf-3353-a2c4-f8e69648715c -2021,San Luis,II.1.1,0.36119999999999997,TJ,CO2,74100.0,kg/TJ,26764.92,Gas Oil combustion consumption by public passenger transport,AR-D,SESCO,annual,kg,3e15c984-2e8f-3f8d-94e0-6e21824cb623 -2021,San Luis,II.1.1,0.36119999999999997,TJ,CH4,3.9,kg/TJ,1.40868,Gas Oil combustion consumption by public passenger transport,AR-D,SESCO,annual,kg,166bcf8f-cfca-3d06-a441-bf9b914fed2a -2021,San Luis,II.1.1,0.36119999999999997,TJ,N2O,3.9,kg/TJ,1.40868,Gas Oil combustion consumption by public passenger transport,AR-D,SESCO,annual,kg,166bcf8f-cfca-3d06-a441-bf9b914fed2a -2021,Santa Cruz,II.1.1,0.03612,TJ,CO2,74100.0,kg/TJ,2676.4919999999997,Gas Oil combustion consumption by public passenger transport,AR-Z,SESCO,annual,kg,0a4f77ce-5e6c-3e44-ae37-2d8392a0fda4 -2021,Santa Cruz,II.1.1,0.03612,TJ,CH4,3.9,kg/TJ,0.140868,Gas Oil combustion consumption by public passenger transport,AR-Z,SESCO,annual,kg,f44d0187-48a6-3dee-8e71-89c418ca2cbb -2021,Santa Cruz,II.1.1,0.03612,TJ,N2O,3.9,kg/TJ,0.140868,Gas Oil combustion consumption by public passenger transport,AR-Z,SESCO,annual,kg,f44d0187-48a6-3dee-8e71-89c418ca2cbb -2021,Santa Fe,II.1.1,529.5914399999999,TJ,CO2,74100.0,kg/TJ,39242725.703999996,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,086a8346-917c-3751-9d9f-bbf54c93f5a8 -2021,Santa Fe,II.1.1,529.5914399999999,TJ,CH4,3.9,kg/TJ,2065.4066159999998,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,07cc2630-b3de-3c3e-ab32-1dbdb1a23fad -2021,Santa Fe,II.1.1,529.5914399999999,TJ,N2O,3.9,kg/TJ,2065.4066159999998,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,07cc2630-b3de-3c3e-ab32-1dbdb1a23fad -2021,Santiago del Estero,II.1.1,0.7223999999999999,TJ,CO2,74100.0,kg/TJ,53529.84,Gas Oil combustion consumption by public passenger transport,AR-G,SESCO,annual,kg,d42c0fbe-5b51-3d52-ad8f-0379dd78b030 -2021,Santiago del Estero,II.1.1,0.7223999999999999,TJ,CH4,3.9,kg/TJ,2.81736,Gas Oil combustion consumption by public passenger transport,AR-G,SESCO,annual,kg,bd845e7a-2cf6-3947-82b8-0b31867ec591 -2021,Santiago del Estero,II.1.1,0.7223999999999999,TJ,N2O,3.9,kg/TJ,2.81736,Gas Oil combustion consumption by public passenger transport,AR-G,SESCO,annual,kg,bd845e7a-2cf6-3947-82b8-0b31867ec591 -2021,Tucuman,II.1.1,46.45032,TJ,CO2,74100.0,kg/TJ,3441968.712,Gas Oil combustion consumption by public passenger transport,AR-T,SESCO,annual,kg,ce77fec4-b161-3bba-815b-89d29c325fa0 -2021,Tucuman,II.1.1,46.45032,TJ,CH4,3.9,kg/TJ,181.15624799999998,Gas Oil combustion consumption by public passenger transport,AR-T,SESCO,annual,kg,ea9def43-1ebf-3192-bbf1-945cdbe7d5ea -2021,Tucuman,II.1.1,46.45032,TJ,N2O,3.9,kg/TJ,181.15624799999998,Gas Oil combustion consumption by public passenger transport,AR-T,SESCO,annual,kg,ea9def43-1ebf-3192-bbf1-945cdbe7d5ea -2021,Buenos Aires,II.1.1,563.6526,TJ,CO2,74100.0,kg/TJ,41766657.660000004,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,04233f7c-5534-35b6-b3fb-544d5fdef9fd -2021,Buenos Aires,II.1.1,563.6526,TJ,CH4,3.9,kg/TJ,2198.24514,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,a48848df-40c1-32c4-a629-549b15ab122d -2021,Buenos Aires,II.1.1,563.6526,TJ,N2O,3.9,kg/TJ,2198.24514,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,a48848df-40c1-32c4-a629-549b15ab122d -2021,Capital Federal,II.1.1,325.87464,TJ,CO2,74100.0,kg/TJ,24147310.824,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,670031d4-4b26-30d2-baa7-f1853a4087d6 -2021,Capital Federal,II.1.1,325.87464,TJ,CH4,3.9,kg/TJ,1270.911096,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,2583b3dc-24f5-39a3-bab1-9473987c0d4d -2021,Capital Federal,II.1.1,325.87464,TJ,N2O,3.9,kg/TJ,1270.911096,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,2583b3dc-24f5-39a3-bab1-9473987c0d4d -2021,Chaco,II.1.1,0.28896,TJ,CO2,74100.0,kg/TJ,21411.935999999998,Gas Oil combustion consumption by public passenger transport,AR-H,SESCO,annual,kg,ea6544e9-3324-3421-8e1c-8331375dfc2f -2021,Chaco,II.1.1,0.28896,TJ,CH4,3.9,kg/TJ,1.126944,Gas Oil combustion consumption by public passenger transport,AR-H,SESCO,annual,kg,004e9435-b770-35ff-b69a-669eb91a2ff9 -2021,Chaco,II.1.1,0.28896,TJ,N2O,3.9,kg/TJ,1.126944,Gas Oil combustion consumption by public passenger transport,AR-H,SESCO,annual,kg,004e9435-b770-35ff-b69a-669eb91a2ff9 -2021,Corrientes,II.1.1,0.25284,TJ,CO2,74100.0,kg/TJ,18735.444,Gas Oil combustion consumption by public passenger transport,AR-W,SESCO,annual,kg,0354494c-5c8c-3661-957c-252edf68e61f -2021,Corrientes,II.1.1,0.25284,TJ,CH4,3.9,kg/TJ,0.9860760000000001,Gas Oil combustion consumption by public passenger transport,AR-W,SESCO,annual,kg,84fe2139-6d90-3674-99aa-dc1595dbd8cd -2021,Corrientes,II.1.1,0.25284,TJ,N2O,3.9,kg/TJ,0.9860760000000001,Gas Oil combustion consumption by public passenger transport,AR-W,SESCO,annual,kg,84fe2139-6d90-3674-99aa-dc1595dbd8cd -2021,Córdoba,II.1.1,0.97524,TJ,CO2,74100.0,kg/TJ,72265.284,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,a53e937c-d3c9-3f1b-9015-eeaf84540e7e -2021,Córdoba,II.1.1,0.97524,TJ,CH4,3.9,kg/TJ,3.803436,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,55880b0e-98a4-3a9f-9763-0855eaed1431 -2021,Córdoba,II.1.1,0.97524,TJ,N2O,3.9,kg/TJ,3.803436,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,55880b0e-98a4-3a9f-9763-0855eaed1431 -2021,Entre Rios,II.1.1,0.28896,TJ,CO2,74100.0,kg/TJ,21411.935999999998,Gas Oil combustion consumption by public passenger transport,AR-E,SESCO,annual,kg,197cece6-b538-3786-910b-03c87e2380c1 -2021,Entre Rios,II.1.1,0.28896,TJ,CH4,3.9,kg/TJ,1.126944,Gas Oil combustion consumption by public passenger transport,AR-E,SESCO,annual,kg,d69f8a4b-d332-390d-8aa2-c4247d0ee208 -2021,Entre Rios,II.1.1,0.28896,TJ,N2O,3.9,kg/TJ,1.126944,Gas Oil combustion consumption by public passenger transport,AR-E,SESCO,annual,kg,d69f8a4b-d332-390d-8aa2-c4247d0ee208 -2021,La Pampa,II.1.1,0.10836,TJ,CO2,74100.0,kg/TJ,8029.476,Gas Oil combustion consumption by public passenger transport,AR-L,SESCO,annual,kg,c2612667-eac5-3757-9219-dce0c9e1e3b5 -2021,La Pampa,II.1.1,0.10836,TJ,CH4,3.9,kg/TJ,0.422604,Gas Oil combustion consumption by public passenger transport,AR-L,SESCO,annual,kg,2d68e128-51fd-370c-b856-57439a5cec48 -2021,La Pampa,II.1.1,0.10836,TJ,N2O,3.9,kg/TJ,0.422604,Gas Oil combustion consumption by public passenger transport,AR-L,SESCO,annual,kg,2d68e128-51fd-370c-b856-57439a5cec48 -2021,Mendoza,II.1.1,0.07224,TJ,CO2,74100.0,kg/TJ,5352.9839999999995,Gas Oil combustion consumption by public passenger transport,AR-M,SESCO,annual,kg,28a6405b-b0d8-38e6-98eb-1d584c0c0253 -2021,Mendoza,II.1.1,0.07224,TJ,CH4,3.9,kg/TJ,0.281736,Gas Oil combustion consumption by public passenger transport,AR-M,SESCO,annual,kg,5f853727-cbde-3135-b2ea-4cc67abc8ce8 -2021,Mendoza,II.1.1,0.07224,TJ,N2O,3.9,kg/TJ,0.281736,Gas Oil combustion consumption by public passenger transport,AR-M,SESCO,annual,kg,5f853727-cbde-3135-b2ea-4cc67abc8ce8 -2021,Misiones,II.1.1,3.21468,TJ,CO2,74100.0,kg/TJ,238207.788,Gas Oil combustion consumption by public passenger transport,AR-N,SESCO,annual,kg,e52556cf-ced2-3a14-9e83-3e0f5ac42e6a -2021,Misiones,II.1.1,3.21468,TJ,CH4,3.9,kg/TJ,12.537252,Gas Oil combustion consumption by public passenger transport,AR-N,SESCO,annual,kg,10ba94dd-edb6-3e61-93ff-0b70945e8d94 -2021,Misiones,II.1.1,3.21468,TJ,N2O,3.9,kg/TJ,12.537252,Gas Oil combustion consumption by public passenger transport,AR-N,SESCO,annual,kg,10ba94dd-edb6-3e61-93ff-0b70945e8d94 -2021,Neuquén,II.1.1,14.628599999999999,TJ,CO2,74100.0,kg/TJ,1083979.26,Gas Oil combustion consumption by public passenger transport,AR-Q,SESCO,annual,kg,80cbf86c-f8e2-306d-96f2-3eca6207b06f -2021,Neuquén,II.1.1,14.628599999999999,TJ,CH4,3.9,kg/TJ,57.051539999999996,Gas Oil combustion consumption by public passenger transport,AR-Q,SESCO,annual,kg,042392b3-0ecb-3c4c-b120-4d6cb1f07675 -2021,Neuquén,II.1.1,14.628599999999999,TJ,N2O,3.9,kg/TJ,57.051539999999996,Gas Oil combustion consumption by public passenger transport,AR-Q,SESCO,annual,kg,042392b3-0ecb-3c4c-b120-4d6cb1f07675 -2021,Rio Negro,II.1.1,5.56248,TJ,CO2,74100.0,kg/TJ,412179.768,Gas Oil combustion consumption by public passenger transport,AR-R,SESCO,annual,kg,5b241c06-e142-3f8b-9438-937e22fa5b3c -2021,Rio Negro,II.1.1,5.56248,TJ,CH4,3.9,kg/TJ,21.693672,Gas Oil combustion consumption by public passenger transport,AR-R,SESCO,annual,kg,75603481-3ce0-3882-adeb-2f27fb08bd21 -2021,Rio Negro,II.1.1,5.56248,TJ,N2O,3.9,kg/TJ,21.693672,Gas Oil combustion consumption by public passenger transport,AR-R,SESCO,annual,kg,75603481-3ce0-3882-adeb-2f27fb08bd21 -2021,Salta,II.1.1,0.07224,TJ,CO2,74100.0,kg/TJ,5352.9839999999995,Gas Oil combustion consumption by public passenger transport,AR-A,SESCO,annual,kg,212bd55f-12db-3fb7-bc78-d29ed40064a0 -2021,Salta,II.1.1,0.07224,TJ,CH4,3.9,kg/TJ,0.281736,Gas Oil combustion consumption by public passenger transport,AR-A,SESCO,annual,kg,befcb5bb-3354-3370-890f-fd6c6d7ef843 -2021,Salta,II.1.1,0.07224,TJ,N2O,3.9,kg/TJ,0.281736,Gas Oil combustion consumption by public passenger transport,AR-A,SESCO,annual,kg,befcb5bb-3354-3370-890f-fd6c6d7ef843 -2021,San Juan,II.1.1,0.03612,TJ,CO2,74100.0,kg/TJ,2676.4919999999997,Gas Oil combustion consumption by public passenger transport,AR-J,SESCO,annual,kg,f1c36709-d37a-3179-ace9-0637f6c05a1f -2021,San Juan,II.1.1,0.03612,TJ,CH4,3.9,kg/TJ,0.140868,Gas Oil combustion consumption by public passenger transport,AR-J,SESCO,annual,kg,5e76d161-edcd-3406-a470-b0dd11894374 -2021,San Juan,II.1.1,0.03612,TJ,N2O,3.9,kg/TJ,0.140868,Gas Oil combustion consumption by public passenger transport,AR-J,SESCO,annual,kg,5e76d161-edcd-3406-a470-b0dd11894374 -2021,San Luis,II.1.1,0.21672,TJ,CO2,74100.0,kg/TJ,16058.952,Gas Oil combustion consumption by public passenger transport,AR-D,SESCO,annual,kg,0297c9e3-32c6-359f-ba87-29ec71f526ee -2021,San Luis,II.1.1,0.21672,TJ,CH4,3.9,kg/TJ,0.845208,Gas Oil combustion consumption by public passenger transport,AR-D,SESCO,annual,kg,8e62f738-8bc0-344b-98ad-5c132b233668 -2021,San Luis,II.1.1,0.21672,TJ,N2O,3.9,kg/TJ,0.845208,Gas Oil combustion consumption by public passenger transport,AR-D,SESCO,annual,kg,8e62f738-8bc0-344b-98ad-5c132b233668 -2021,Santa Fe,II.1.1,85.4238,TJ,CO2,74100.0,kg/TJ,6329903.58,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,37557973-4dcd-3be6-bb8a-6a30e5ab732c -2021,Santa Fe,II.1.1,85.4238,TJ,CH4,3.9,kg/TJ,333.15282,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,bfb16fac-d78f-3eea-b27e-3056e473813a -2021,Santa Fe,II.1.1,85.4238,TJ,N2O,3.9,kg/TJ,333.15282,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,bfb16fac-d78f-3eea-b27e-3056e473813a -2021,Santiago del Estero,II.1.1,0.57792,TJ,CO2,74100.0,kg/TJ,42823.871999999996,Gas Oil combustion consumption by public passenger transport,AR-G,SESCO,annual,kg,ec3cc0ae-daa0-3a13-becf-cc6727f5980f -2021,Santiago del Estero,II.1.1,0.57792,TJ,CH4,3.9,kg/TJ,2.253888,Gas Oil combustion consumption by public passenger transport,AR-G,SESCO,annual,kg,04d1d92f-9980-303e-874f-7ec0822d2e5a -2021,Santiago del Estero,II.1.1,0.57792,TJ,N2O,3.9,kg/TJ,2.253888,Gas Oil combustion consumption by public passenger transport,AR-G,SESCO,annual,kg,04d1d92f-9980-303e-874f-7ec0822d2e5a -2021,Tucuman,II.1.1,0.07224,TJ,CO2,74100.0,kg/TJ,5352.9839999999995,Gas Oil combustion consumption by public passenger transport,AR-T,SESCO,annual,kg,4342d217-5966-3509-9295-612f90685c55 -2021,Tucuman,II.1.1,0.07224,TJ,CH4,3.9,kg/TJ,0.281736,Gas Oil combustion consumption by public passenger transport,AR-T,SESCO,annual,kg,72b62858-a0a0-30c3-a79c-b52525c6f9e7 -2021,Tucuman,II.1.1,0.07224,TJ,N2O,3.9,kg/TJ,0.281736,Gas Oil combustion consumption by public passenger transport,AR-T,SESCO,annual,kg,72b62858-a0a0-30c3-a79c-b52525c6f9e7 -2021,Buenos Aires,II.1.1,0.20559,TJ,CO2,73300.0,kg/TJ,15069.747,Naphtha combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,0a926f9b-f281-34dc-af94-dff7aee59184 -2021,Buenos Aires,II.1.1,0.20559,TJ,CH4,0.5,kg/TJ,0.102795,Naphtha combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,4015fcd6-d637-3e30-8799-90d64c31ab6f -2021,Buenos Aires,II.1.1,0.20559,TJ,N2O,2.0,kg/TJ,0.41118,Naphtha combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,b7bae74b-2337-3a40-9f2d-f3b1dfec6d6c -2021,Santa Fe,II.1.1,0.376915,TJ,CO2,73300.0,kg/TJ,27627.8695,Naphtha combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,52a93700-297d-3434-a5cd-4c9a680a51e2 -2021,Santa Fe,II.1.1,0.376915,TJ,CH4,0.5,kg/TJ,0.1884575,Naphtha combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,04636ad3-2486-35fb-b741-a9f100dfb010 -2021,Santa Fe,II.1.1,0.376915,TJ,N2O,2.0,kg/TJ,0.75383,Naphtha combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,da04417c-d80c-3815-b347-c14ee5e73a2f -2021,Buenos Aires,II.1.1,0.34265,TJ,CO2,73300.0,kg/TJ,25116.245,Naphtha combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,f713911a-1fd7-31ac-b7d5-538be4ff14f3 -2021,Buenos Aires,II.1.1,0.34265,TJ,CH4,0.5,kg/TJ,0.171325,Naphtha combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,1eb66c82-8d1a-300b-aa84-1cd7f2a02dc4 -2021,Buenos Aires,II.1.1,0.34265,TJ,N2O,2.0,kg/TJ,0.6853,Naphtha combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,e9f277aa-735b-3afd-aed6-d29e19a98507 -2021,Capital Federal,II.1.1,0.06853,TJ,CO2,73300.0,kg/TJ,5023.249,Naphtha combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,40f78e06-a14c-358a-92f0-8745dd1e0048 -2021,Capital Federal,II.1.1,0.06853,TJ,CH4,0.5,kg/TJ,0.034265,Naphtha combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,edce0808-0c44-3316-9984-a1790c51bfcf -2021,Capital Federal,II.1.1,0.06853,TJ,N2O,2.0,kg/TJ,0.13706,Naphtha combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,5bee52ea-0818-390f-8164-73312d3b4719 -2021,Córdoba,II.1.1,0.41118,TJ,CO2,73300.0,kg/TJ,30139.494,Naphtha combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,52ed09ef-4784-3b6b-96ec-a2d869d10f51 -2021,Córdoba,II.1.1,0.41118,TJ,CH4,0.5,kg/TJ,0.20559,Naphtha combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,9b4080c5-d65b-3219-bb96-5aa7bda3e8db -2021,Córdoba,II.1.1,0.41118,TJ,N2O,2.0,kg/TJ,0.82236,Naphtha combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,8a683456-ffb1-3dfd-856d-50c661e8bdfa -2021,Santa Fe,II.1.1,0.034265,TJ,CO2,73300.0,kg/TJ,2511.6245,Naphtha combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,783929bf-faf4-3bbc-b659-85fa24ee96cd -2021,Santa Fe,II.1.1,0.034265,TJ,CH4,0.5,kg/TJ,0.0171325,Naphtha combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,d9a6fed4-2963-3987-ab93-abb7b97f1e0e -2021,Santa Fe,II.1.1,0.034265,TJ,N2O,2.0,kg/TJ,0.06853,Naphtha combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,898ad23a-e19d-3bab-9f81-ca9e842a7aff -2021,Buenos Aires,II.5.1,385.7616,TJ,CO2,74100.0,kg/TJ,28584934.56,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,a658bc70-3fb2-3149-a071-ad63714f906f -2021,Buenos Aires,II.5.1,385.7616,TJ,CH4,3.9,kg/TJ,1504.4702399999999,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,f7c4d151-09a3-39de-8302-ed3779075148 -2021,Buenos Aires,II.5.1,385.7616,TJ,N2O,3.9,kg/TJ,1504.4702399999999,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,f7c4d151-09a3-39de-8302-ed3779075148 -2021,Catamarca,II.5.1,0.5418,TJ,CO2,74100.0,kg/TJ,40147.38,Gas Oil combustion consumption by agriculture machines,AR-K,SESCO,annual,kg,e752a767-3513-3d15-acb3-9e4d9911fb4a -2021,Catamarca,II.5.1,0.5418,TJ,CH4,3.9,kg/TJ,2.1130199999999997,Gas Oil combustion consumption by agriculture machines,AR-K,SESCO,annual,kg,9a793ac8-a035-3f6d-b1d6-840f669d6293 -2021,Catamarca,II.5.1,0.5418,TJ,N2O,3.9,kg/TJ,2.1130199999999997,Gas Oil combustion consumption by agriculture machines,AR-K,SESCO,annual,kg,9a793ac8-a035-3f6d-b1d6-840f669d6293 -2021,Corrientes,II.5.1,39.5514,TJ,CO2,74100.0,kg/TJ,2930758.74,Gas Oil combustion consumption by agriculture machines,AR-W,SESCO,annual,kg,e78a981d-1780-3589-9908-913314f4531f -2021,Corrientes,II.5.1,39.5514,TJ,CH4,3.9,kg/TJ,154.25046,Gas Oil combustion consumption by agriculture machines,AR-W,SESCO,annual,kg,080f9a03-b230-386f-8afd-58a17c5dedf8 -2021,Corrientes,II.5.1,39.5514,TJ,N2O,3.9,kg/TJ,154.25046,Gas Oil combustion consumption by agriculture machines,AR-W,SESCO,annual,kg,080f9a03-b230-386f-8afd-58a17c5dedf8 -2021,Córdoba,II.5.1,20.11884,TJ,CO2,74100.0,kg/TJ,1490806.044,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,a56d6793-1c37-3427-a14a-a3b474f80205 -2021,Córdoba,II.5.1,20.11884,TJ,CH4,3.9,kg/TJ,78.463476,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,c8f4ed8d-4605-32e5-9557-cc04a95a3d26 -2021,Córdoba,II.5.1,20.11884,TJ,N2O,3.9,kg/TJ,78.463476,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,c8f4ed8d-4605-32e5-9557-cc04a95a3d26 -2021,Entre Rios,II.5.1,79.57236,TJ,CO2,74100.0,kg/TJ,5896311.876,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,bd03f21d-2444-3a39-811f-a3f5d5c0544c -2021,Entre Rios,II.5.1,79.57236,TJ,CH4,3.9,kg/TJ,310.332204,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,04df7c75-5456-3176-a097-60fae2e67d82 -2021,Entre Rios,II.5.1,79.57236,TJ,N2O,3.9,kg/TJ,310.332204,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,04df7c75-5456-3176-a097-60fae2e67d82 -2021,La Pampa,II.5.1,38.68452,TJ,CO2,74100.0,kg/TJ,2866522.932,Gas Oil combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,0baa07dd-8ab6-3480-b7ef-d8e829b5d73d -2021,La Pampa,II.5.1,38.68452,TJ,CH4,3.9,kg/TJ,150.869628,Gas Oil combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,9218ce53-dbe1-38d1-833b-da69235b0da2 -2021,La Pampa,II.5.1,38.68452,TJ,N2O,3.9,kg/TJ,150.869628,Gas Oil combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,9218ce53-dbe1-38d1-833b-da69235b0da2 -2021,Santa Fe,II.5.1,54.93852,TJ,CO2,74100.0,kg/TJ,4070944.332,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,15f07ed3-cd74-3811-8a29-bed1ed349658 -2021,Santa Fe,II.5.1,54.93852,TJ,CH4,3.9,kg/TJ,214.26022799999998,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,c55a4064-a712-3d05-ae11-1b808801c0ec -2021,Santa Fe,II.5.1,54.93852,TJ,N2O,3.9,kg/TJ,214.26022799999998,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,c55a4064-a712-3d05-ae11-1b808801c0ec -2021,Buenos Aires,II.5.1,23.26128,TJ,CO2,74100.0,kg/TJ,1723660.848,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,9306da24-089d-31a6-853f-9512da1a35f1 -2021,Buenos Aires,II.5.1,23.26128,TJ,CH4,3.9,kg/TJ,90.718992,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,cd83972c-a48f-3105-8f27-64aeb31e2a49 -2021,Buenos Aires,II.5.1,23.26128,TJ,N2O,3.9,kg/TJ,90.718992,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,cd83972c-a48f-3105-8f27-64aeb31e2a49 -2021,Entre Rios,II.5.1,27.6318,TJ,CO2,74100.0,kg/TJ,2047516.38,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,3d47c105-9175-3643-bcd1-e7b914f10760 -2021,Entre Rios,II.5.1,27.6318,TJ,CH4,3.9,kg/TJ,107.76401999999999,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,5f5006dd-ca9a-3ee0-94fc-e9861dab4d5f -2021,Entre Rios,II.5.1,27.6318,TJ,N2O,3.9,kg/TJ,107.76401999999999,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,5f5006dd-ca9a-3ee0-94fc-e9861dab4d5f -2021,La Pampa,II.5.1,5.2735199999999995,TJ,CO2,74100.0,kg/TJ,390767.832,Gas Oil combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,f94de946-d9a4-35ae-ab74-d148434c468e -2021,La Pampa,II.5.1,5.2735199999999995,TJ,CH4,3.9,kg/TJ,20.566727999999998,Gas Oil combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,589a05c8-bceb-3e61-8b5c-cdbe93d71f65 -2021,La Pampa,II.5.1,5.2735199999999995,TJ,N2O,3.9,kg/TJ,20.566727999999998,Gas Oil combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,589a05c8-bceb-3e61-8b5c-cdbe93d71f65 -2021,Santa Fe,II.5.1,5.5263599999999995,TJ,CO2,74100.0,kg/TJ,409503.27599999995,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,f07daf72-3c04-3c00-a170-68da99f652f4 -2021,Santa Fe,II.5.1,5.5263599999999995,TJ,CH4,3.9,kg/TJ,21.552804,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,ca123337-dc89-3355-b3f3-ee98490f40e7 -2021,Santa Fe,II.5.1,5.5263599999999995,TJ,N2O,3.9,kg/TJ,21.552804,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,ca123337-dc89-3355-b3f3-ee98490f40e7 -2021,Santa Fe,II.5.1,1.3706,TJ,CO2,73300.0,kg/TJ,100464.98,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,e10ac2a5-3948-30e8-8769-3a3827b343b1 -2021,Santa Fe,II.5.1,1.3706,TJ,CH4,0.5,kg/TJ,0.6853,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,f561a1f5-c9ce-3b8a-953f-d7f550770edc -2021,Santa Fe,II.5.1,1.3706,TJ,N2O,2.0,kg/TJ,2.7412,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,c640f268-3eac-31b1-980c-8ad06e010686 -2021,Santa Fe,II.5.1,0.6167699999999999,TJ,CO2,73300.0,kg/TJ,45209.240999999995,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,2a21d722-0b11-3e36-bf6f-41dd5feee660 -2021,Santa Fe,II.5.1,0.6167699999999999,TJ,CH4,0.5,kg/TJ,0.30838499999999996,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,adc619da-e0c6-3238-9d3e-7b7689956639 -2021,Santa Fe,II.5.1,0.6167699999999999,TJ,N2O,2.0,kg/TJ,1.2335399999999999,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,2b537ab6-5ecb-390e-a1b4-56a9f122b813 -2021,Córdoba,II.2.1,4.3857,TJ,CO2,69300.0,kg/TJ,303929.01,Motor Gasoline combustion consumption by railway transport,AR-X,SESCO,annual,kg,19ad0b7e-4054-3fc4-8529-8b48d72d7a65 -2021,Córdoba,II.2.1,4.3857,TJ,CH4,33.0,kg/TJ,144.72809999999998,Motor Gasoline combustion consumption by railway transport,AR-X,SESCO,annual,kg,bd006427-6691-36e8-82ef-acbef28149bc -2021,Córdoba,II.2.1,4.3857,TJ,N2O,3.2,kg/TJ,14.03424,Motor Gasoline combustion consumption by railway transport,AR-X,SESCO,annual,kg,658b46a2-516d-37f2-8aa0-c92b6f8cd207 -2021,Buenos Aires,II.2.1,174.78467999999998,TJ,CO2,74100.0,kg/TJ,12951544.787999999,Gas Oil combustion consumption by railway transport,AR-B,SESCO,annual,kg,1dc83e59-8e1b-3b5d-936e-9fd387df5a21 -2021,Buenos Aires,II.2.1,174.78467999999998,TJ,CH4,3.9,kg/TJ,681.6602519999999,Gas Oil combustion consumption by railway transport,AR-B,SESCO,annual,kg,f4071a86-2c3c-328b-99e0-e6bc6624da0d -2021,Buenos Aires,II.2.1,174.78467999999998,TJ,N2O,3.9,kg/TJ,681.6602519999999,Gas Oil combustion consumption by railway transport,AR-B,SESCO,annual,kg,f4071a86-2c3c-328b-99e0-e6bc6624da0d -2021,Santa Fe,II.1.1,5.9805,TJ,CO2,69300.0,kg/TJ,414448.65,Motor Gasoline combustion consumption by freight transport,AR-S,SESCO,annual,kg,b1573ce6-5542-3b57-a3f8-2d978121952e -2021,Santa Fe,II.1.1,5.9805,TJ,CH4,33.0,kg/TJ,197.3565,Motor Gasoline combustion consumption by freight transport,AR-S,SESCO,annual,kg,12da96c3-b069-39ea-8e05-9239e93582ec -2021,Santa Fe,II.1.1,5.9805,TJ,N2O,3.2,kg/TJ,19.137600000000003,Motor Gasoline combustion consumption by freight transport,AR-S,SESCO,annual,kg,93fd11cd-b744-3fde-92a3-601e7cbb3d2b -2021,Buenos Aires,II.1.1,90.87791999999999,TJ,CO2,74100.0,kg/TJ,6734053.8719999995,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,f88af000-172b-32a2-999d-250adf81b078 -2021,Buenos Aires,II.1.1,90.87791999999999,TJ,CH4,3.9,kg/TJ,354.423888,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,4524c1d4-7f32-3a95-aab5-7c1521288f39 -2021,Buenos Aires,II.1.1,90.87791999999999,TJ,N2O,3.9,kg/TJ,354.423888,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,4524c1d4-7f32-3a95-aab5-7c1521288f39 -2021,Capital Federal,II.1.1,3.1424399999999997,TJ,CO2,74100.0,kg/TJ,232854.80399999997,Gas Oil combustion consumption by freight transport,AR-C,SESCO,annual,kg,307563cf-f8b8-325a-9f98-77af167d8438 -2021,Capital Federal,II.1.1,3.1424399999999997,TJ,CH4,3.9,kg/TJ,12.255515999999998,Gas Oil combustion consumption by freight transport,AR-C,SESCO,annual,kg,948458e4-a229-3701-91f1-840156041398 -2021,Capital Federal,II.1.1,3.1424399999999997,TJ,N2O,3.9,kg/TJ,12.255515999999998,Gas Oil combustion consumption by freight transport,AR-C,SESCO,annual,kg,948458e4-a229-3701-91f1-840156041398 -2021,Santa Fe,II.1.1,9.860759999999999,TJ,CO2,74100.0,kg/TJ,730682.3159999999,Gas Oil combustion consumption by freight transport,AR-S,SESCO,annual,kg,4ccc5fe7-e54f-3ea3-bcaa-0168feae59dc -2021,Santa Fe,II.1.1,9.860759999999999,TJ,CH4,3.9,kg/TJ,38.45696399999999,Gas Oil combustion consumption by freight transport,AR-S,SESCO,annual,kg,bd793909-9b45-3c1c-8bf4-1e17e2752771 -2021,Santa Fe,II.1.1,9.860759999999999,TJ,N2O,3.9,kg/TJ,38.45696399999999,Gas Oil combustion consumption by freight transport,AR-S,SESCO,annual,kg,bd793909-9b45-3c1c-8bf4-1e17e2752771 -2021,Buenos Aires,II.1.1,6.4654799999999994,TJ,CO2,74100.0,kg/TJ,479092.06799999997,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,697fc95d-9c27-3c9d-a7ae-4721ce2a0e34 -2021,Buenos Aires,II.1.1,6.4654799999999994,TJ,CH4,3.9,kg/TJ,25.215372,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,ff76a210-940c-319d-997c-494aaf975a95 -2021,Buenos Aires,II.1.1,6.4654799999999994,TJ,N2O,3.9,kg/TJ,25.215372,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,ff76a210-940c-319d-997c-494aaf975a95 -2021,Capital Federal,II.1.1,1.19196,TJ,CO2,74100.0,kg/TJ,88324.23599999999,Gas Oil combustion consumption by freight transport,AR-C,SESCO,annual,kg,25186f57-2717-36de-95d3-bea73056acce -2021,Capital Federal,II.1.1,1.19196,TJ,CH4,3.9,kg/TJ,4.648643999999999,Gas Oil combustion consumption by freight transport,AR-C,SESCO,annual,kg,93e8b129-246a-362b-9406-1d509e37d694 -2021,Capital Federal,II.1.1,1.19196,TJ,N2O,3.9,kg/TJ,4.648643999999999,Gas Oil combustion consumption by freight transport,AR-C,SESCO,annual,kg,93e8b129-246a-362b-9406-1d509e37d694 -2021,Santa Fe,II.1.1,22.53888,TJ,CO2,74100.0,kg/TJ,1670131.008,Gas Oil combustion consumption by freight transport,AR-S,SESCO,annual,kg,e2c2e782-3fbc-36aa-bfca-3ab82d24a184 -2021,Santa Fe,II.1.1,22.53888,TJ,CH4,3.9,kg/TJ,87.90163199999999,Gas Oil combustion consumption by freight transport,AR-S,SESCO,annual,kg,332e644d-da62-3ef1-aa3f-f1ca847a8b57 -2021,Santa Fe,II.1.1,22.53888,TJ,N2O,3.9,kg/TJ,87.90163199999999,Gas Oil combustion consumption by freight transport,AR-S,SESCO,annual,kg,332e644d-da62-3ef1-aa3f-f1ca847a8b57 -2021,Buenos Aires,II.1.1,2819.3466,TJ,CO2,74100.0,kg/TJ,208913583.06,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,9d25d177-92da-389f-93f4-01f2ec6f8522 -2021,Buenos Aires,II.1.1,2819.3466,TJ,CH4,3.9,kg/TJ,10995.451739999999,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,dfd1212e-da2b-379a-9e78-0a8eb8a9e2e2 -2021,Buenos Aires,II.1.1,2819.3466,TJ,N2O,3.9,kg/TJ,10995.451739999999,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,dfd1212e-da2b-379a-9e78-0a8eb8a9e2e2 -2021,Capital Federal,II.1.1,112.54992,TJ,CO2,74100.0,kg/TJ,8339949.072,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,094b6da0-8eb9-36b8-841a-a26e335ee69e -2021,Capital Federal,II.1.1,112.54992,TJ,CH4,3.9,kg/TJ,438.944688,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,4e9362d3-4dc9-3afb-868e-af3647833be1 -2021,Capital Federal,II.1.1,112.54992,TJ,N2O,3.9,kg/TJ,438.944688,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,4e9362d3-4dc9-3afb-868e-af3647833be1 -2021,Córdoba,II.1.1,25.464599999999997,TJ,CO2,74100.0,kg/TJ,1886926.8599999999,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,602457f4-7bbb-3e46-a69f-a4ae61478ec0 -2021,Córdoba,II.1.1,25.464599999999997,TJ,CH4,3.9,kg/TJ,99.31193999999999,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,ae3a825b-94c4-3c39-a223-d68894d45b4f -2021,Córdoba,II.1.1,25.464599999999997,TJ,N2O,3.9,kg/TJ,99.31193999999999,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,ae3a825b-94c4-3c39-a223-d68894d45b4f -2021,Santa Fe,II.1.1,2.4200399999999997,TJ,CO2,74100.0,kg/TJ,179324.96399999998,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,e82451a6-5ef1-3a55-a0af-583e12b90af3 -2021,Santa Fe,II.1.1,2.4200399999999997,TJ,CH4,3.9,kg/TJ,9.438156,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,45c440d9-43b3-31ab-804f-7f3d4c0aa880 -2021,Santa Fe,II.1.1,2.4200399999999997,TJ,N2O,3.9,kg/TJ,9.438156,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,45c440d9-43b3-31ab-804f-7f3d4c0aa880 -2021,Buenos Aires,II.1.1,1209.94776,TJ,CO2,74100.0,kg/TJ,89657129.016,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,7a981c40-d72a-3e12-ad81-611ff42404d0 -2021,Buenos Aires,II.1.1,1209.94776,TJ,CH4,3.9,kg/TJ,4718.796264,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,f948c60f-6cc1-3ecb-b635-d20323107b1a -2021,Buenos Aires,II.1.1,1209.94776,TJ,N2O,3.9,kg/TJ,4718.796264,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,f948c60f-6cc1-3ecb-b635-d20323107b1a -2021,Capital Federal,II.1.1,63.89628,TJ,CO2,74100.0,kg/TJ,4734714.348,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,04e4eb66-f857-3e6d-a58d-dc92ae821188 -2021,Capital Federal,II.1.1,63.89628,TJ,CH4,3.9,kg/TJ,249.19549199999997,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,59d4875b-2a3a-38f6-9116-549331f67df0 -2021,Capital Federal,II.1.1,63.89628,TJ,N2O,3.9,kg/TJ,249.19549199999997,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,59d4875b-2a3a-38f6-9116-549331f67df0 -2021,Córdoba,II.1.1,20.08272,TJ,CO2,74100.0,kg/TJ,1488129.552,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,2e1bd3a9-d2cf-3831-9e77-7d396e2a20f7 -2021,Córdoba,II.1.1,20.08272,TJ,CH4,3.9,kg/TJ,78.32260799999999,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,2665e42a-4f07-3374-9d3d-c07284500547 -2021,Córdoba,II.1.1,20.08272,TJ,N2O,3.9,kg/TJ,78.32260799999999,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,2665e42a-4f07-3374-9d3d-c07284500547 -2021,Buenos Aires,II.5.1,3266.7477024,TJ,CO2,74100.0,kg/TJ,242066004.74784,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,c0ab5594-f4fe-31f1-855e-2fdfe2bb578e -2021,Buenos Aires,II.5.1,3266.7477024,TJ,CH4,3.9,kg/TJ,12740.31603936,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,c660be7c-2a99-3d02-89f4-05ba72678432 -2021,Buenos Aires,II.5.1,3266.7477024,TJ,N2O,3.9,kg/TJ,12740.31603936,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,c660be7c-2a99-3d02-89f4-05ba72678432 -2021,Capital Federal,II.5.1,802.72773756,TJ,CO2,74100.0,kg/TJ,59482125.353196,Gas Oil combustion consumption by agriculture machines,AR-C,SESCO,annual,kg,b59d1115-a1dd-3825-8ceb-dbd87c5d119e -2021,Capital Federal,II.5.1,802.72773756,TJ,CH4,3.9,kg/TJ,3130.6381764840003,Gas Oil combustion consumption by agriculture machines,AR-C,SESCO,annual,kg,77c08845-41dc-30da-b46d-dc43e63a67e8 -2021,Capital Federal,II.5.1,802.72773756,TJ,N2O,3.9,kg/TJ,3130.6381764840003,Gas Oil combustion consumption by agriculture machines,AR-C,SESCO,annual,kg,77c08845-41dc-30da-b46d-dc43e63a67e8 -2021,Córdoba,II.5.1,1285.4966048400001,TJ,CO2,74100.0,kg/TJ,95255298.41864401,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,e58c5e5a-aa95-3563-a8d0-b21f69f33782 -2021,Córdoba,II.5.1,1285.4966048400001,TJ,CH4,3.9,kg/TJ,5013.436758876001,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,303fa9f6-454c-3b30-b9f2-6ce42bfc677a -2021,Córdoba,II.5.1,1285.4966048400001,TJ,N2O,3.9,kg/TJ,5013.436758876001,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,303fa9f6-454c-3b30-b9f2-6ce42bfc677a -2021,Entre Rios,II.5.1,711.66936204,TJ,CO2,74100.0,kg/TJ,52734699.727164,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,d2003880-d6ca-3e2c-845d-5ac17d632ead -2021,Entre Rios,II.5.1,711.66936204,TJ,CH4,3.9,kg/TJ,2775.510511956,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,044cfe46-2796-3a10-b76e-13ed0384a802 -2021,Entre Rios,II.5.1,711.66936204,TJ,N2O,3.9,kg/TJ,2775.510511956,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,044cfe46-2796-3a10-b76e-13ed0384a802 -2021,Jujuy,II.5.1,24.46403988,TJ,CO2,74100.0,kg/TJ,1812785.355108,Gas Oil combustion consumption by agriculture machines,AR-Y,SESCO,annual,kg,f636c1b7-9c90-33a2-ad6a-cd4822281961 -2021,Jujuy,II.5.1,24.46403988,TJ,CH4,3.9,kg/TJ,95.409755532,Gas Oil combustion consumption by agriculture machines,AR-Y,SESCO,annual,kg,566675ab-d736-394d-bd00-e3c75013edee -2021,Jujuy,II.5.1,24.46403988,TJ,N2O,3.9,kg/TJ,95.409755532,Gas Oil combustion consumption by agriculture machines,AR-Y,SESCO,annual,kg,566675ab-d736-394d-bd00-e3c75013edee -2021,La Pampa,II.5.1,288.98141916000003,TJ,CO2,74100.0,kg/TJ,21413523.159756,Gas Oil combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,9881accd-c9c7-3ae8-b7e2-518591f41e0a -2021,La Pampa,II.5.1,288.98141916000003,TJ,CH4,3.9,kg/TJ,1127.0275347240001,Gas Oil combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,49865907-bb24-3722-bc72-03b3be0127d1 -2021,La Pampa,II.5.1,288.98141916000003,TJ,N2O,3.9,kg/TJ,1127.0275347240001,Gas Oil combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,49865907-bb24-3722-bc72-03b3be0127d1 -2021,Neuquén,II.5.1,12.690762,TJ,CO2,74100.0,kg/TJ,940385.4641999999,Gas Oil combustion consumption by agriculture machines,AR-Q,SESCO,annual,kg,250d002f-5142-31e7-8dfc-7f1c5397b105 -2021,Neuquén,II.5.1,12.690762,TJ,CH4,3.9,kg/TJ,49.4939718,Gas Oil combustion consumption by agriculture machines,AR-Q,SESCO,annual,kg,dca54c1d-aece-3040-bcbd-fd5079993cf1 -2021,Neuquén,II.5.1,12.690762,TJ,N2O,3.9,kg/TJ,49.4939718,Gas Oil combustion consumption by agriculture machines,AR-Q,SESCO,annual,kg,dca54c1d-aece-3040-bcbd-fd5079993cf1 -2021,Rio Negro,II.5.1,163.48081764,TJ,CO2,74100.0,kg/TJ,12113928.587124,Gas Oil combustion consumption by agriculture machines,AR-R,SESCO,annual,kg,55be9dd8-756b-34eb-a349-23590da0ff2f -2021,Rio Negro,II.5.1,163.48081764,TJ,CH4,3.9,kg/TJ,637.575188796,Gas Oil combustion consumption by agriculture machines,AR-R,SESCO,annual,kg,12e6912a-e39c-3812-9c18-349689829e2a -2021,Rio Negro,II.5.1,163.48081764,TJ,N2O,3.9,kg/TJ,637.575188796,Gas Oil combustion consumption by agriculture machines,AR-R,SESCO,annual,kg,12e6912a-e39c-3812-9c18-349689829e2a -2021,San Luis,II.5.1,13.879651799999998,TJ,CO2,74100.0,kg/TJ,1028482.1983799998,Gas Oil combustion consumption by agriculture machines,AR-D,SESCO,annual,kg,45a631da-bbe1-3faa-a0b2-03047b7a387f -2021,San Luis,II.5.1,13.879651799999998,TJ,CH4,3.9,kg/TJ,54.13064201999999,Gas Oil combustion consumption by agriculture machines,AR-D,SESCO,annual,kg,6dc23453-746a-37bd-9a08-6d00172888be -2021,San Luis,II.5.1,13.879651799999998,TJ,N2O,3.9,kg/TJ,54.13064201999999,Gas Oil combustion consumption by agriculture machines,AR-D,SESCO,annual,kg,6dc23453-746a-37bd-9a08-6d00172888be -2021,Santa Fe,II.5.1,4073.27995956,TJ,CO2,74100.0,kg/TJ,301830045.003396,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,bdfec494-feec-3c0d-baa2-d2594ffe1876 -2021,Santa Fe,II.5.1,4073.27995956,TJ,CH4,3.9,kg/TJ,15885.791842284,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,85da1155-6b14-305a-9a7a-58c4a683472c -2021,Santa Fe,II.5.1,4073.27995956,TJ,N2O,3.9,kg/TJ,15885.791842284,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,85da1155-6b14-305a-9a7a-58c4a683472c -2021,Santiago del Estero,II.5.1,134.31792695999997,TJ,CO2,74100.0,kg/TJ,9952958.387735998,Gas Oil combustion consumption by agriculture machines,AR-G,SESCO,annual,kg,aa299729-c34b-3fb4-a4d0-e6b8aa80f0d3 -2021,Santiago del Estero,II.5.1,134.31792695999997,TJ,CH4,3.9,kg/TJ,523.8399151439999,Gas Oil combustion consumption by agriculture machines,AR-G,SESCO,annual,kg,d67def31-bc4c-3220-928b-b2b6b9d73e85 -2021,Santiago del Estero,II.5.1,134.31792695999997,TJ,N2O,3.9,kg/TJ,523.8399151439999,Gas Oil combustion consumption by agriculture machines,AR-G,SESCO,annual,kg,d67def31-bc4c-3220-928b-b2b6b9d73e85 -2021,Tucuman,II.5.1,152.84441676,TJ,CO2,74100.0,kg/TJ,11325771.281916,Gas Oil combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,5cd507a9-9589-3c2e-ac40-027265d042dd -2021,Tucuman,II.5.1,152.84441676,TJ,CH4,3.9,kg/TJ,596.093225364,Gas Oil combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,3b1dac29-a209-310f-ad94-bc5f46fe030b -2021,Tucuman,II.5.1,152.84441676,TJ,N2O,3.9,kg/TJ,596.093225364,Gas Oil combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,3b1dac29-a209-310f-ad94-bc5f46fe030b -2021,Buenos Aires,II.5.1,370.2662644800001,TJ,CO2,74100.0,kg/TJ,27436730.197968006,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,854e06af-67ed-31a1-9094-f17822af7c13 -2021,Buenos Aires,II.5.1,370.2662644800001,TJ,CH4,3.9,kg/TJ,1444.0384314720002,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,153cc87a-23ae-3005-b701-207c3e994a12 -2021,Buenos Aires,II.5.1,370.2662644800001,TJ,N2O,3.9,kg/TJ,1444.0384314720002,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,153cc87a-23ae-3005-b701-207c3e994a12 -2021,Capital Federal,II.5.1,45.08122752,TJ,CO2,74100.0,kg/TJ,3340518.9592319997,Gas Oil combustion consumption by agriculture machines,AR-C,SESCO,annual,kg,85380fa6-34ea-341a-9102-f4b5ea0328ab -2021,Capital Federal,II.5.1,45.08122752,TJ,CH4,3.9,kg/TJ,175.816787328,Gas Oil combustion consumption by agriculture machines,AR-C,SESCO,annual,kg,2a4352aa-3a5e-3981-9a02-10fcb62e25be -2021,Capital Federal,II.5.1,45.08122752,TJ,N2O,3.9,kg/TJ,175.816787328,Gas Oil combustion consumption by agriculture machines,AR-C,SESCO,annual,kg,2a4352aa-3a5e-3981-9a02-10fcb62e25be -2021,Córdoba,II.5.1,104.01631716,TJ,CO2,74100.0,kg/TJ,7707609.101556,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,9b7cb17f-1bdc-3108-9d96-d688b2cde78e -2021,Córdoba,II.5.1,104.01631716,TJ,CH4,3.9,kg/TJ,405.663636924,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,5ec285bb-8707-30b1-aac7-94fc4d95ed54 -2021,Córdoba,II.5.1,104.01631716,TJ,N2O,3.9,kg/TJ,405.663636924,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,5ec285bb-8707-30b1-aac7-94fc4d95ed54 -2021,Entre Rios,II.5.1,137.44927812,TJ,CO2,74100.0,kg/TJ,10184991.508692,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,d7eced9a-6d35-3aab-964c-5bf4d44ad948 -2021,Entre Rios,II.5.1,137.44927812,TJ,CH4,3.9,kg/TJ,536.052184668,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,68162895-9a77-3375-b03e-fb5d1fdca84a -2021,Entre Rios,II.5.1,137.44927812,TJ,N2O,3.9,kg/TJ,536.052184668,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,68162895-9a77-3375-b03e-fb5d1fdca84a -2021,Jujuy,II.5.1,58.00608324000001,TJ,CO2,74100.0,kg/TJ,4298250.768084001,Gas Oil combustion consumption by agriculture machines,AR-Y,SESCO,annual,kg,fed25912-1dad-3b0e-9066-1bbee97c51ce -2021,Jujuy,II.5.1,58.00608324000001,TJ,CH4,3.9,kg/TJ,226.22372463600004,Gas Oil combustion consumption by agriculture machines,AR-Y,SESCO,annual,kg,0b635d7b-4ee2-3417-9f2c-2ba0229afd49 -2021,Jujuy,II.5.1,58.00608324000001,TJ,N2O,3.9,kg/TJ,226.22372463600004,Gas Oil combustion consumption by agriculture machines,AR-Y,SESCO,annual,kg,0b635d7b-4ee2-3417-9f2c-2ba0229afd49 -2021,La Pampa,II.5.1,51.718855440000006,TJ,CO2,74100.0,kg/TJ,3832367.1881040004,Gas Oil combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,c2c560cf-0bd6-3e76-9f16-6f97ce08290d -2021,La Pampa,II.5.1,51.718855440000006,TJ,CH4,3.9,kg/TJ,201.70353621600003,Gas Oil combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,c40fe7c9-f736-306d-86e2-04013b45bb69 -2021,La Pampa,II.5.1,51.718855440000006,TJ,N2O,3.9,kg/TJ,201.70353621600003,Gas Oil combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,c40fe7c9-f736-306d-86e2-04013b45bb69 -2021,Neuquén,II.5.1,7.1268372,TJ,CO2,74100.0,kg/TJ,528098.63652,Gas Oil combustion consumption by agriculture machines,AR-Q,SESCO,annual,kg,c3d6b5b0-5916-3d62-9dd6-988c5dfa526e -2021,Neuquén,II.5.1,7.1268372,TJ,CH4,3.9,kg/TJ,27.794665079999998,Gas Oil combustion consumption by agriculture machines,AR-Q,SESCO,annual,kg,9a249897-4b6b-3eef-8466-0feff4607223 -2021,Neuquén,II.5.1,7.1268372,TJ,N2O,3.9,kg/TJ,27.794665079999998,Gas Oil combustion consumption by agriculture machines,AR-Q,SESCO,annual,kg,9a249897-4b6b-3eef-8466-0feff4607223 -2021,Rio Negro,II.5.1,134.4841512,TJ,CO2,74100.0,kg/TJ,9965275.603920002,Gas Oil combustion consumption by agriculture machines,AR-R,SESCO,annual,kg,1673b087-6db4-37d8-94f4-ec6f41055663 -2021,Rio Negro,II.5.1,134.4841512,TJ,CH4,3.9,kg/TJ,524.48818968,Gas Oil combustion consumption by agriculture machines,AR-R,SESCO,annual,kg,1ba13efd-796b-3656-8288-4782c63e35ba -2021,Rio Negro,II.5.1,134.4841512,TJ,N2O,3.9,kg/TJ,524.48818968,Gas Oil combustion consumption by agriculture machines,AR-R,SESCO,annual,kg,1ba13efd-796b-3656-8288-4782c63e35ba -2021,San Luis,II.5.1,17.001539519999998,TJ,CO2,74100.0,kg/TJ,1259814.0784319998,Gas Oil combustion consumption by agriculture machines,AR-D,SESCO,annual,kg,ff5c87a7-6c99-3a62-ba9a-e15c34b3a167 -2021,San Luis,II.5.1,17.001539519999998,TJ,CH4,3.9,kg/TJ,66.30600412799998,Gas Oil combustion consumption by agriculture machines,AR-D,SESCO,annual,kg,c57f4b06-3958-3ef5-819f-05770191dbe4 -2021,San Luis,II.5.1,17.001539519999998,TJ,N2O,3.9,kg/TJ,66.30600412799998,Gas Oil combustion consumption by agriculture machines,AR-D,SESCO,annual,kg,c57f4b06-3958-3ef5-819f-05770191dbe4 -2021,Santa Fe,II.5.1,282.68169384,TJ,CO2,74100.0,kg/TJ,20946713.513543997,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,c0412dc1-85d1-3acc-a9eb-6570acbc6f1c -2021,Santa Fe,II.5.1,282.68169384,TJ,CH4,3.9,kg/TJ,1102.458605976,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,f0c3bd69-93ce-3469-a6ea-f2303b12745e -2021,Santa Fe,II.5.1,282.68169384,TJ,N2O,3.9,kg/TJ,1102.458605976,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,f0c3bd69-93ce-3469-a6ea-f2303b12745e -2021,Santiago del Estero,II.5.1,30.05379048,TJ,CO2,74100.0,kg/TJ,2226985.874568,Gas Oil combustion consumption by agriculture machines,AR-G,SESCO,annual,kg,329f3e44-03c3-38eb-9941-23c235f888cc -2021,Santiago del Estero,II.5.1,30.05379048,TJ,CH4,3.9,kg/TJ,117.20978287199999,Gas Oil combustion consumption by agriculture machines,AR-G,SESCO,annual,kg,7fd7dc37-d1b3-395f-942b-52d22eb991b6 -2021,Santiago del Estero,II.5.1,30.05379048,TJ,N2O,3.9,kg/TJ,117.20978287199999,Gas Oil combustion consumption by agriculture machines,AR-G,SESCO,annual,kg,7fd7dc37-d1b3-395f-942b-52d22eb991b6 -2021,Tucuman,II.5.1,18.415998719999997,TJ,CO2,74100.0,kg/TJ,1364625.5051519999,Gas Oil combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,fecb85d0-74fb-3bae-8a6e-f6d79bfb6acb -2021,Tucuman,II.5.1,18.415998719999997,TJ,CH4,3.9,kg/TJ,71.82239500799999,Gas Oil combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,72f8f998-1bbe-37c0-8e16-9d559d82e809 -2021,Tucuman,II.5.1,18.415998719999997,TJ,N2O,3.9,kg/TJ,71.82239500799999,Gas Oil combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,72f8f998-1bbe-37c0-8e16-9d559d82e809 -2021,Buenos Aires,II.5.1,70.56499835,TJ,CO2,73300.0,kg/TJ,5172414.379055,Naphtha combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,3dab492e-e3e0-35fc-a0e6-2b072bb907ca -2021,Buenos Aires,II.5.1,70.56499835,TJ,CH4,0.5,kg/TJ,35.282499175,Naphtha combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,3903f74f-5830-3bcd-97ba-556561af6278 -2021,Buenos Aires,II.5.1,70.56499835,TJ,N2O,2.0,kg/TJ,141.1299967,Naphtha combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,655c8f74-3ea7-38cf-b7b4-34a158759cda -2021,Capital Federal,II.5.1,19.624970365000003,TJ,CO2,73300.0,kg/TJ,1438510.3277545003,Naphtha combustion consumption by agriculture machines,AR-C,SESCO,annual,kg,a8aab627-e38c-3d51-9fe7-daf416c5e8b3 -2021,Capital Federal,II.5.1,19.624970365000003,TJ,CH4,0.5,kg/TJ,9.812485182500001,Naphtha combustion consumption by agriculture machines,AR-C,SESCO,annual,kg,f5e384f9-6e6e-397c-af22-d6dd9504e4bf -2021,Capital Federal,II.5.1,19.624970365000003,TJ,N2O,2.0,kg/TJ,39.249940730000006,Naphtha combustion consumption by agriculture machines,AR-C,SESCO,annual,kg,2a3193c9-969f-3cb6-890d-e443b365f206 -2021,Córdoba,II.5.1,11.078799655000001,TJ,CO2,73300.0,kg/TJ,812076.0147115,Naphtha combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,da2e6874-71cd-3ae0-9e5c-d0e4172a522a -2021,Córdoba,II.5.1,11.078799655000001,TJ,CH4,0.5,kg/TJ,5.5393998275000005,Naphtha combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,fdd0a0e1-c9bf-36d8-9878-2e52bb1e1f9f -2021,Córdoba,II.5.1,11.078799655000001,TJ,N2O,2.0,kg/TJ,22.157599310000002,Naphtha combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,779038c3-aa1f-3857-85b1-8e4fcbdb6f7d -2021,Santa Fe,II.5.1,279.44354746000005,TJ,CO2,73300.0,kg/TJ,20483212.028818004,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,9d94017b-99e5-3fb7-9270-5bdd39e7ba0f -2021,Santa Fe,II.5.1,279.44354746000005,TJ,CH4,0.5,kg/TJ,139.72177373000002,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,2820702f-4559-346a-b323-d461f228c910 -2021,Santa Fe,II.5.1,279.44354746000005,TJ,N2O,2.0,kg/TJ,558.8870949200001,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,c0406518-a5d6-31df-8832-11753bdaeefd -2021,Tucuman,II.5.1,0.6133434999999998,TJ,CO2,73300.0,kg/TJ,44958.078549999984,Naphtha combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,ae2b7d5f-e158-36a3-bc6f-e480b3d04fba -2021,Tucuman,II.5.1,0.6133434999999998,TJ,CH4,0.5,kg/TJ,0.3066717499999999,Naphtha combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,09a24080-e927-3c6e-ae3e-6d88c42c4122 -2021,Tucuman,II.5.1,0.6133434999999998,TJ,N2O,2.0,kg/TJ,1.2266869999999996,Naphtha combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,0de0661d-0ff6-3670-870d-8521ecfd8eba -2021,Buenos Aires,II.5.1,16.930370765,TJ,CO2,73300.0,kg/TJ,1240996.1770745,Naphtha combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,5a840735-c717-3a13-8218-58ae4ddc6070 -2021,Buenos Aires,II.5.1,16.930370765,TJ,CH4,0.5,kg/TJ,8.4651853825,Naphtha combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,a40a137f-75bf-3c80-837f-7ec9ff3f7a28 -2021,Buenos Aires,II.5.1,16.930370765,TJ,N2O,2.0,kg/TJ,33.86074153,Naphtha combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,4139212f-3fc2-3735-974f-bec7a33f5d96 -2021,Capital Federal,II.5.1,4.279390114999999,TJ,CO2,73300.0,kg/TJ,313679.29542949994,Naphtha combustion consumption by agriculture machines,AR-C,SESCO,annual,kg,ef9f0fe2-d442-34a3-9246-8d5010a06dd6 -2021,Capital Federal,II.5.1,4.279390114999999,TJ,CH4,0.5,kg/TJ,2.1396950574999996,Naphtha combustion consumption by agriculture machines,AR-C,SESCO,annual,kg,18256207-ce85-39a4-bb95-ed7c17a5a490 -2021,Capital Federal,II.5.1,4.279390114999999,TJ,N2O,2.0,kg/TJ,8.558780229999998,Naphtha combustion consumption by agriculture machines,AR-C,SESCO,annual,kg,127ff485-875e-3e89-93ac-034ea65d9b5c -2021,Córdoba,II.5.1,2.5572312150000003,TJ,CO2,73300.0,kg/TJ,187445.04805950003,Naphtha combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,6ca14d71-5579-3179-b74c-e16b30b246a5 -2021,Córdoba,II.5.1,2.5572312150000003,TJ,CH4,0.5,kg/TJ,1.2786156075000001,Naphtha combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,79ea1e75-93de-38fe-a338-f0117e369eee -2021,Córdoba,II.5.1,2.5572312150000003,TJ,N2O,2.0,kg/TJ,5.114462430000001,Naphtha combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,36013c2a-b5e7-398a-96e3-63703041e6d5 -2021,Santa Fe,II.5.1,29.158658374999998,TJ,CO2,73300.0,kg/TJ,2137329.6588875,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,94d03c5c-dd30-3938-ad38-8e1d7f1e349e -2021,Santa Fe,II.5.1,29.158658374999998,TJ,CH4,0.5,kg/TJ,14.579329187499999,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,b5687b82-6c17-3037-be42-92a957965f15 -2021,Santa Fe,II.5.1,29.158658374999998,TJ,N2O,2.0,kg/TJ,58.317316749999996,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,bb78a643-8f3f-3234-829f-061d7d3b1e42 -2021,Buenos Aires,II.5.1,40.6674,TJ,CO2,69300.0,kg/TJ,2818250.82,Motor Gasoline combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,3c0ba326-5f62-3458-84d2-1f30ffa2068e -2021,Buenos Aires,II.5.1,40.6674,TJ,CH4,33.0,kg/TJ,1342.0242,Motor Gasoline combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,82c88186-f412-356e-b690-1fb6a18f4148 -2021,Buenos Aires,II.5.1,40.6674,TJ,N2O,3.2,kg/TJ,130.13568,Motor Gasoline combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,7bdacd97-1717-3a70-9734-456bf1614e05 -2021,Buenos Aires,II.5.1,9945.75036,TJ,CO2,74100.0,kg/TJ,736980101.676,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,a248e754-2b25-3484-8fa0-7ff73fdfb61b -2021,Buenos Aires,II.5.1,9945.75036,TJ,CH4,3.9,kg/TJ,38788.426404,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,73207639-5891-3340-99e2-1b045f2ccd81 -2021,Buenos Aires,II.5.1,9945.75036,TJ,N2O,3.9,kg/TJ,38788.426404,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,73207639-5891-3340-99e2-1b045f2ccd81 -2021,Capital Federal,II.5.1,59.85084,TJ,CO2,74100.0,kg/TJ,4434947.244,Gas Oil combustion consumption by agriculture machines,AR-C,SESCO,annual,kg,3e7e2e13-89c2-373a-82de-ea51276c781d -2021,Capital Federal,II.5.1,59.85084,TJ,CH4,3.9,kg/TJ,233.418276,Gas Oil combustion consumption by agriculture machines,AR-C,SESCO,annual,kg,7c3f423f-aa2d-3e22-a6c6-c92b4b01567f -2021,Capital Federal,II.5.1,59.85084,TJ,N2O,3.9,kg/TJ,233.418276,Gas Oil combustion consumption by agriculture machines,AR-C,SESCO,annual,kg,7c3f423f-aa2d-3e22-a6c6-c92b4b01567f -2021,Catamarca,II.5.1,186.5598,TJ,CO2,74100.0,kg/TJ,13824081.18,Gas Oil combustion consumption by agriculture machines,AR-K,SESCO,annual,kg,5919b280-7167-3fb7-82e6-9201eae2a7e1 -2021,Catamarca,II.5.1,186.5598,TJ,CH4,3.9,kg/TJ,727.58322,Gas Oil combustion consumption by agriculture machines,AR-K,SESCO,annual,kg,4b93191c-5b5e-32f8-ac33-bfde77d4ef85 -2021,Catamarca,II.5.1,186.5598,TJ,N2O,3.9,kg/TJ,727.58322,Gas Oil combustion consumption by agriculture machines,AR-K,SESCO,annual,kg,4b93191c-5b5e-32f8-ac33-bfde77d4ef85 -2021,Chaco,II.5.1,869.8418399999999,TJ,CO2,74100.0,kg/TJ,64455280.344,Gas Oil combustion consumption by agriculture machines,AR-H,SESCO,annual,kg,ede8d717-69f8-39c6-ab94-78ea73da5ddf -2021,Chaco,II.5.1,869.8418399999999,TJ,CH4,3.9,kg/TJ,3392.383176,Gas Oil combustion consumption by agriculture machines,AR-H,SESCO,annual,kg,676bbd01-1f99-34a1-b603-4b473de9176e -2021,Chaco,II.5.1,869.8418399999999,TJ,N2O,3.9,kg/TJ,3392.383176,Gas Oil combustion consumption by agriculture machines,AR-H,SESCO,annual,kg,676bbd01-1f99-34a1-b603-4b473de9176e -2021,Chubut,II.5.1,0.03612,TJ,CO2,74100.0,kg/TJ,2676.4919999999997,Gas Oil combustion consumption by agriculture machines,AR-U,SESCO,annual,kg,51d6eecc-6bf1-3069-b000-335f4876f388 -2021,Chubut,II.5.1,0.03612,TJ,CH4,3.9,kg/TJ,0.140868,Gas Oil combustion consumption by agriculture machines,AR-U,SESCO,annual,kg,04b2eb3f-6357-332f-88bd-75395b880319 -2021,Chubut,II.5.1,0.03612,TJ,N2O,3.9,kg/TJ,0.140868,Gas Oil combustion consumption by agriculture machines,AR-U,SESCO,annual,kg,04b2eb3f-6357-332f-88bd-75395b880319 -2021,Corrientes,II.5.1,738.5456399999999,TJ,CO2,74100.0,kg/TJ,54726231.923999995,Gas Oil combustion consumption by agriculture machines,AR-W,SESCO,annual,kg,63dbad72-b037-3475-91e3-846b9aed0ba8 -2021,Corrientes,II.5.1,738.5456399999999,TJ,CH4,3.9,kg/TJ,2880.3279959999995,Gas Oil combustion consumption by agriculture machines,AR-W,SESCO,annual,kg,2cee9e09-9b22-3fcc-beba-9a9f7a2869b7 -2021,Corrientes,II.5.1,738.5456399999999,TJ,N2O,3.9,kg/TJ,2880.3279959999995,Gas Oil combustion consumption by agriculture machines,AR-W,SESCO,annual,kg,2cee9e09-9b22-3fcc-beba-9a9f7a2869b7 -2021,Córdoba,II.5.1,7531.48956,TJ,CO2,74100.0,kg/TJ,558083376.396,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,90bf2d74-89c8-3502-a1dc-dc1a9d8abd89 -2021,Córdoba,II.5.1,7531.48956,TJ,CH4,3.9,kg/TJ,29372.809284,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,7293f213-3f87-3800-81f3-fd19420ca93d -2021,Córdoba,II.5.1,7531.48956,TJ,N2O,3.9,kg/TJ,29372.809284,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,7293f213-3f87-3800-81f3-fd19420ca93d -2021,Entre Rios,II.5.1,2215.962,TJ,CO2,74100.0,kg/TJ,164202784.2,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,5977e7c9-bc40-3d44-b833-de6ea357a938 -2021,Entre Rios,II.5.1,2215.962,TJ,CH4,3.9,kg/TJ,8642.2518,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,b4ca981e-22d6-3552-9df9-d2383c1c0b06 -2021,Entre Rios,II.5.1,2215.962,TJ,N2O,3.9,kg/TJ,8642.2518,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,b4ca981e-22d6-3552-9df9-d2383c1c0b06 -2021,Formosa,II.5.1,285.60084,TJ,CO2,74100.0,kg/TJ,21163022.244,Gas Oil combustion consumption by agriculture machines,AR-P,SESCO,annual,kg,3d594888-1633-3b91-95d0-b6b90e65f524 -2021,Formosa,II.5.1,285.60084,TJ,CH4,3.9,kg/TJ,1113.843276,Gas Oil combustion consumption by agriculture machines,AR-P,SESCO,annual,kg,2c4aed0c-c426-36df-9c29-b3285a6f5d94 -2021,Formosa,II.5.1,285.60084,TJ,N2O,3.9,kg/TJ,1113.843276,Gas Oil combustion consumption by agriculture machines,AR-P,SESCO,annual,kg,2c4aed0c-c426-36df-9c29-b3285a6f5d94 -2021,Jujuy,II.5.1,1030.53972,TJ,CO2,74100.0,kg/TJ,76362993.252,Gas Oil combustion consumption by agriculture machines,AR-Y,SESCO,annual,kg,21679a9a-8373-3188-a98a-4ea278dacb5f -2021,Jujuy,II.5.1,1030.53972,TJ,CH4,3.9,kg/TJ,4019.104908,Gas Oil combustion consumption by agriculture machines,AR-Y,SESCO,annual,kg,82b298c6-8ea8-31cd-aaf4-d7dc8e5b10cc -2021,Jujuy,II.5.1,1030.53972,TJ,N2O,3.9,kg/TJ,4019.104908,Gas Oil combustion consumption by agriculture machines,AR-Y,SESCO,annual,kg,82b298c6-8ea8-31cd-aaf4-d7dc8e5b10cc -2021,La Pampa,II.5.1,1548.53664,TJ,CO2,74100.0,kg/TJ,114746565.024,Gas Oil combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,dfd2d573-480b-3426-801c-541984a74bff -2021,La Pampa,II.5.1,1548.53664,TJ,CH4,3.9,kg/TJ,6039.292896,Gas Oil combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,f85994ae-1b71-3759-92f1-07f4e8df2231 -2021,La Pampa,II.5.1,1548.53664,TJ,N2O,3.9,kg/TJ,6039.292896,Gas Oil combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,f85994ae-1b71-3759-92f1-07f4e8df2231 -2021,La Rioja,II.5.1,141.26532,TJ,CO2,74100.0,kg/TJ,10467760.212,Gas Oil combustion consumption by agriculture machines,AR-F,SESCO,annual,kg,d58a7436-39c3-35ef-af5f-cd2a4b00eee4 -2021,La Rioja,II.5.1,141.26532,TJ,CH4,3.9,kg/TJ,550.934748,Gas Oil combustion consumption by agriculture machines,AR-F,SESCO,annual,kg,d182fba2-8694-3f58-876e-673d5481ec26 -2021,La Rioja,II.5.1,141.26532,TJ,N2O,3.9,kg/TJ,550.934748,Gas Oil combustion consumption by agriculture machines,AR-F,SESCO,annual,kg,d182fba2-8694-3f58-876e-673d5481ec26 -2021,Mendoza,II.5.1,2160.59004,TJ,CO2,74100.0,kg/TJ,160099721.96400002,Gas Oil combustion consumption by agriculture machines,AR-M,SESCO,annual,kg,9224f984-dd5c-38ce-9826-f240d4e2b89e -2021,Mendoza,II.5.1,2160.59004,TJ,CH4,3.9,kg/TJ,8426.301156,Gas Oil combustion consumption by agriculture machines,AR-M,SESCO,annual,kg,219b3984-23fb-3748-ad8d-458391413d8f -2021,Mendoza,II.5.1,2160.59004,TJ,N2O,3.9,kg/TJ,8426.301156,Gas Oil combustion consumption by agriculture machines,AR-M,SESCO,annual,kg,219b3984-23fb-3748-ad8d-458391413d8f -2021,Misiones,II.5.1,1116.61368,TJ,CO2,74100.0,kg/TJ,82741073.688,Gas Oil combustion consumption by agriculture machines,AR-N,SESCO,annual,kg,74a3cf64-6f8c-359f-89b4-6ec0f52d897a -2021,Misiones,II.5.1,1116.61368,TJ,CH4,3.9,kg/TJ,4354.793352,Gas Oil combustion consumption by agriculture machines,AR-N,SESCO,annual,kg,4adf9e33-63a7-3576-9424-239142dbf077 -2021,Misiones,II.5.1,1116.61368,TJ,N2O,3.9,kg/TJ,4354.793352,Gas Oil combustion consumption by agriculture machines,AR-N,SESCO,annual,kg,4adf9e33-63a7-3576-9424-239142dbf077 -2021,Rio Negro,II.5.1,253.3818,TJ,CO2,74100.0,kg/TJ,18775591.38,Gas Oil combustion consumption by agriculture machines,AR-R,SESCO,annual,kg,15811c84-9a75-35f4-ba79-8f6b70664bb1 -2021,Rio Negro,II.5.1,253.3818,TJ,CH4,3.9,kg/TJ,988.18902,Gas Oil combustion consumption by agriculture machines,AR-R,SESCO,annual,kg,5a592aa2-0833-3988-8a1b-f49388815342 -2021,Rio Negro,II.5.1,253.3818,TJ,N2O,3.9,kg/TJ,988.18902,Gas Oil combustion consumption by agriculture machines,AR-R,SESCO,annual,kg,5a592aa2-0833-3988-8a1b-f49388815342 -2021,Salta,II.5.1,1486.73532,TJ,CO2,74100.0,kg/TJ,110167087.212,Gas Oil combustion consumption by agriculture machines,AR-A,SESCO,annual,kg,3aed6ef1-4512-3912-85d2-0a8605790bad -2021,Salta,II.5.1,1486.73532,TJ,CH4,3.9,kg/TJ,5798.267748,Gas Oil combustion consumption by agriculture machines,AR-A,SESCO,annual,kg,8d987d7b-3eaf-38a7-a398-55bddb3933f4 -2021,Salta,II.5.1,1486.73532,TJ,N2O,3.9,kg/TJ,5798.267748,Gas Oil combustion consumption by agriculture machines,AR-A,SESCO,annual,kg,8d987d7b-3eaf-38a7-a398-55bddb3933f4 -2021,San Juan,II.5.1,452.72808,TJ,CO2,74100.0,kg/TJ,33547150.728,Gas Oil combustion consumption by agriculture machines,AR-J,SESCO,annual,kg,1e5d7e8a-f39c-3ac4-b664-202011c3cbf7 -2021,San Juan,II.5.1,452.72808,TJ,CH4,3.9,kg/TJ,1765.639512,Gas Oil combustion consumption by agriculture machines,AR-J,SESCO,annual,kg,41cb1d5b-307e-30a2-8ff3-1acbba4f709b -2021,San Juan,II.5.1,452.72808,TJ,N2O,3.9,kg/TJ,1765.639512,Gas Oil combustion consumption by agriculture machines,AR-J,SESCO,annual,kg,41cb1d5b-307e-30a2-8ff3-1acbba4f709b -2021,San Luis,II.5.1,326.95824,TJ,CO2,74100.0,kg/TJ,24227605.584,Gas Oil combustion consumption by agriculture machines,AR-D,SESCO,annual,kg,14b8398e-7777-3909-b62c-f66a10695d28 -2021,San Luis,II.5.1,326.95824,TJ,CH4,3.9,kg/TJ,1275.1371359999998,Gas Oil combustion consumption by agriculture machines,AR-D,SESCO,annual,kg,6be77171-8613-3e9c-90e6-5349af0ea0e6 -2021,San Luis,II.5.1,326.95824,TJ,N2O,3.9,kg/TJ,1275.1371359999998,Gas Oil combustion consumption by agriculture machines,AR-D,SESCO,annual,kg,6be77171-8613-3e9c-90e6-5349af0ea0e6 -2021,Santa Fe,II.5.1,7490.27664,TJ,CO2,74100.0,kg/TJ,555029499.024,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,4f70296a-3e0c-3c93-a833-2329ecfb024f -2021,Santa Fe,II.5.1,7490.27664,TJ,CH4,3.9,kg/TJ,29212.078896,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,af6c0b34-ce90-3021-acbf-be3921a3a411 -2021,Santa Fe,II.5.1,7490.27664,TJ,N2O,3.9,kg/TJ,29212.078896,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,af6c0b34-ce90-3021-acbf-be3921a3a411 -2021,Santiago del Estero,II.5.1,1627.3865999999998,TJ,CO2,74100.0,kg/TJ,120589347.05999999,Gas Oil combustion consumption by agriculture machines,AR-G,SESCO,annual,kg,81863f75-8def-32b2-8911-877aa446954e -2021,Santiago del Estero,II.5.1,1627.3865999999998,TJ,CH4,3.9,kg/TJ,6346.807739999999,Gas Oil combustion consumption by agriculture machines,AR-G,SESCO,annual,kg,0c0955b1-7b77-3fd6-9235-7c58c7b40050 -2021,Santiago del Estero,II.5.1,1627.3865999999998,TJ,N2O,3.9,kg/TJ,6346.807739999999,Gas Oil combustion consumption by agriculture machines,AR-G,SESCO,annual,kg,0c0955b1-7b77-3fd6-9235-7c58c7b40050 -2021,Tucuman,II.5.1,1323.6896399999998,TJ,CO2,74100.0,kg/TJ,98085402.32399999,Gas Oil combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,778f3cc5-d798-3aa7-8bc0-8d111c900953 -2021,Tucuman,II.5.1,1323.6896399999998,TJ,CH4,3.9,kg/TJ,5162.389595999999,Gas Oil combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,22c76a19-6729-3873-9664-7003d61a6827 -2021,Tucuman,II.5.1,1323.6896399999998,TJ,N2O,3.9,kg/TJ,5162.389595999999,Gas Oil combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,22c76a19-6729-3873-9664-7003d61a6827 -2021,Buenos Aires,II.5.1,929.25924,TJ,CO2,74100.0,kg/TJ,68858109.684,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,25696e11-71f4-3379-a067-7b3413a63844 -2021,Buenos Aires,II.5.1,929.25924,TJ,CH4,3.9,kg/TJ,3624.111036,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,a828e021-983c-3239-8e6d-1e1be912f1be -2021,Buenos Aires,II.5.1,929.25924,TJ,N2O,3.9,kg/TJ,3624.111036,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,a828e021-983c-3239-8e6d-1e1be912f1be -2021,Capital Federal,II.5.1,7.729679999999999,TJ,CO2,74100.0,kg/TJ,572769.288,Gas Oil combustion consumption by agriculture machines,AR-C,SESCO,annual,kg,2ed99b05-9105-3a56-ac0f-4a9ee7c4b95e -2021,Capital Federal,II.5.1,7.729679999999999,TJ,CH4,3.9,kg/TJ,30.145751999999995,Gas Oil combustion consumption by agriculture machines,AR-C,SESCO,annual,kg,fb612bfc-01dc-319b-becc-55d74a6c6a2c -2021,Capital Federal,II.5.1,7.729679999999999,TJ,N2O,3.9,kg/TJ,30.145751999999995,Gas Oil combustion consumption by agriculture machines,AR-C,SESCO,annual,kg,fb612bfc-01dc-319b-becc-55d74a6c6a2c -2021,Catamarca,II.5.1,58.8756,TJ,CO2,74100.0,kg/TJ,4362681.96,Gas Oil combustion consumption by agriculture machines,AR-K,SESCO,annual,kg,089d7448-ec84-3315-b1a8-ff89c522838a -2021,Catamarca,II.5.1,58.8756,TJ,CH4,3.9,kg/TJ,229.61484,Gas Oil combustion consumption by agriculture machines,AR-K,SESCO,annual,kg,a93a1099-3d9d-386d-84e3-015352ae6190 -2021,Catamarca,II.5.1,58.8756,TJ,N2O,3.9,kg/TJ,229.61484,Gas Oil combustion consumption by agriculture machines,AR-K,SESCO,annual,kg,a93a1099-3d9d-386d-84e3-015352ae6190 -2021,Chaco,II.5.1,65.44944,TJ,CO2,74100.0,kg/TJ,4849803.504,Gas Oil combustion consumption by agriculture machines,AR-H,SESCO,annual,kg,0e29ffe1-3af8-3dda-a4f2-d36bfb134ba1 -2021,Chaco,II.5.1,65.44944,TJ,CH4,3.9,kg/TJ,255.25281599999997,Gas Oil combustion consumption by agriculture machines,AR-H,SESCO,annual,kg,3ee6e21d-78f0-36f2-b089-4b36cbb38171 -2021,Chaco,II.5.1,65.44944,TJ,N2O,3.9,kg/TJ,255.25281599999997,Gas Oil combustion consumption by agriculture machines,AR-H,SESCO,annual,kg,3ee6e21d-78f0-36f2-b089-4b36cbb38171 -2021,Corrientes,II.5.1,58.839479999999995,TJ,CO2,74100.0,kg/TJ,4360005.467999999,Gas Oil combustion consumption by agriculture machines,AR-W,SESCO,annual,kg,95fc0d89-f963-3f2c-8416-a111e4eb3099 -2021,Corrientes,II.5.1,58.839479999999995,TJ,CH4,3.9,kg/TJ,229.47397199999997,Gas Oil combustion consumption by agriculture machines,AR-W,SESCO,annual,kg,8d0c6987-6c0c-32d7-8cef-bfe088c0e842 -2021,Corrientes,II.5.1,58.839479999999995,TJ,N2O,3.9,kg/TJ,229.47397199999997,Gas Oil combustion consumption by agriculture machines,AR-W,SESCO,annual,kg,8d0c6987-6c0c-32d7-8cef-bfe088c0e842 -2021,Córdoba,II.5.1,764.73264,TJ,CO2,74100.0,kg/TJ,56666688.624,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,d6047409-6278-3241-b8ab-62d9a0e8a4ed -2021,Córdoba,II.5.1,764.73264,TJ,CH4,3.9,kg/TJ,2982.4572959999996,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,2ba21859-f503-3717-a5ba-d62c7a6b9947 -2021,Córdoba,II.5.1,764.73264,TJ,N2O,3.9,kg/TJ,2982.4572959999996,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,2ba21859-f503-3717-a5ba-d62c7a6b9947 -2021,Entre Rios,II.5.1,87.591,TJ,CO2,74100.0,kg/TJ,6490493.1,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,f379576b-6eba-3fa3-b8f3-f7c9d332f21f -2021,Entre Rios,II.5.1,87.591,TJ,CH4,3.9,kg/TJ,341.6049,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,123e2523-d0d4-3ee8-aada-c20dab0decb0 -2021,Entre Rios,II.5.1,87.591,TJ,N2O,3.9,kg/TJ,341.6049,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,123e2523-d0d4-3ee8-aada-c20dab0decb0 -2021,Formosa,II.5.1,50.78472,TJ,CO2,74100.0,kg/TJ,3763147.752,Gas Oil combustion consumption by agriculture machines,AR-P,SESCO,annual,kg,ea151082-bab8-3804-aa4b-64224791d3d4 -2021,Formosa,II.5.1,50.78472,TJ,CH4,3.9,kg/TJ,198.060408,Gas Oil combustion consumption by agriculture machines,AR-P,SESCO,annual,kg,915d31b3-c91a-33c1-a5e7-2a8def0eb6a7 -2021,Formosa,II.5.1,50.78472,TJ,N2O,3.9,kg/TJ,198.060408,Gas Oil combustion consumption by agriculture machines,AR-P,SESCO,annual,kg,915d31b3-c91a-33c1-a5e7-2a8def0eb6a7 -2021,Jujuy,II.5.1,48.509159999999994,TJ,CO2,74100.0,kg/TJ,3594528.7559999996,Gas Oil combustion consumption by agriculture machines,AR-Y,SESCO,annual,kg,45b16c1e-3e86-3f76-92d4-ce8916ecc8da -2021,Jujuy,II.5.1,48.509159999999994,TJ,CH4,3.9,kg/TJ,189.18572399999996,Gas Oil combustion consumption by agriculture machines,AR-Y,SESCO,annual,kg,56a6a629-afac-3bd3-836c-bbdf5f29cf2a -2021,Jujuy,II.5.1,48.509159999999994,TJ,N2O,3.9,kg/TJ,189.18572399999996,Gas Oil combustion consumption by agriculture machines,AR-Y,SESCO,annual,kg,56a6a629-afac-3bd3-836c-bbdf5f29cf2a -2021,La Pampa,II.5.1,200.35764,TJ,CO2,74100.0,kg/TJ,14846501.124,Gas Oil combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,b9b610e5-a2ab-3717-a46e-0ae3cafb6c0a -2021,La Pampa,II.5.1,200.35764,TJ,CH4,3.9,kg/TJ,781.394796,Gas Oil combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,8133a3a0-0a1c-392d-97ee-954d06808857 -2021,La Pampa,II.5.1,200.35764,TJ,N2O,3.9,kg/TJ,781.394796,Gas Oil combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,8133a3a0-0a1c-392d-97ee-954d06808857 -2021,La Rioja,II.5.1,22.90008,TJ,CO2,74100.0,kg/TJ,1696895.9279999998,Gas Oil combustion consumption by agriculture machines,AR-F,SESCO,annual,kg,11bc756a-69b6-3999-a36e-95eff748880c -2021,La Rioja,II.5.1,22.90008,TJ,CH4,3.9,kg/TJ,89.310312,Gas Oil combustion consumption by agriculture machines,AR-F,SESCO,annual,kg,be13f099-7be5-3309-b7f6-f95aee1e03d3 -2021,La Rioja,II.5.1,22.90008,TJ,N2O,3.9,kg/TJ,89.310312,Gas Oil combustion consumption by agriculture machines,AR-F,SESCO,annual,kg,be13f099-7be5-3309-b7f6-f95aee1e03d3 -2021,Mendoza,II.5.1,327.96959999999996,TJ,CO2,74100.0,kg/TJ,24302547.359999996,Gas Oil combustion consumption by agriculture machines,AR-M,SESCO,annual,kg,c221b0b7-b9e0-344b-ac41-7236f655d35d -2021,Mendoza,II.5.1,327.96959999999996,TJ,CH4,3.9,kg/TJ,1279.0814399999997,Gas Oil combustion consumption by agriculture machines,AR-M,SESCO,annual,kg,7184faac-f3f4-39a8-8305-bf6130ba8c8a -2021,Mendoza,II.5.1,327.96959999999996,TJ,N2O,3.9,kg/TJ,1279.0814399999997,Gas Oil combustion consumption by agriculture machines,AR-M,SESCO,annual,kg,7184faac-f3f4-39a8-8305-bf6130ba8c8a -2021,Misiones,II.5.1,149.78964,TJ,CO2,74100.0,kg/TJ,11099412.324,Gas Oil combustion consumption by agriculture machines,AR-N,SESCO,annual,kg,4624d6f6-3269-34f3-85e5-a0fcc9559056 -2021,Misiones,II.5.1,149.78964,TJ,CH4,3.9,kg/TJ,584.179596,Gas Oil combustion consumption by agriculture machines,AR-N,SESCO,annual,kg,c546682e-6879-32e7-87ea-b6dcc48755ac -2021,Misiones,II.5.1,149.78964,TJ,N2O,3.9,kg/TJ,584.179596,Gas Oil combustion consumption by agriculture machines,AR-N,SESCO,annual,kg,c546682e-6879-32e7-87ea-b6dcc48755ac -2021,Neuquén,II.5.1,20.732879999999998,TJ,CO2,74100.0,kg/TJ,1536306.4079999998,Gas Oil combustion consumption by agriculture machines,AR-Q,SESCO,annual,kg,50a855e4-4512-340e-8e4a-5bea50c7ac7a -2021,Neuquén,II.5.1,20.732879999999998,TJ,CH4,3.9,kg/TJ,80.85823199999999,Gas Oil combustion consumption by agriculture machines,AR-Q,SESCO,annual,kg,2c877421-832e-3669-bab6-5bb01143ae22 -2021,Neuquén,II.5.1,20.732879999999998,TJ,N2O,3.9,kg/TJ,80.85823199999999,Gas Oil combustion consumption by agriculture machines,AR-Q,SESCO,annual,kg,2c877421-832e-3669-bab6-5bb01143ae22 -2021,Rio Negro,II.5.1,64.79928,TJ,CO2,74100.0,kg/TJ,4801626.648,Gas Oil combustion consumption by agriculture machines,AR-R,SESCO,annual,kg,89faca66-ddcb-3214-b89c-c853922a51a9 -2021,Rio Negro,II.5.1,64.79928,TJ,CH4,3.9,kg/TJ,252.71719199999998,Gas Oil combustion consumption by agriculture machines,AR-R,SESCO,annual,kg,1373d0e2-b19d-372f-9aa8-be0d730d7e07 -2021,Rio Negro,II.5.1,64.79928,TJ,N2O,3.9,kg/TJ,252.71719199999998,Gas Oil combustion consumption by agriculture machines,AR-R,SESCO,annual,kg,1373d0e2-b19d-372f-9aa8-be0d730d7e07 -2021,Salta,II.5.1,336.06048,TJ,CO2,74100.0,kg/TJ,24902081.568,Gas Oil combustion consumption by agriculture machines,AR-A,SESCO,annual,kg,0889f0d1-805c-3c91-a913-75d7834b053a -2021,Salta,II.5.1,336.06048,TJ,CH4,3.9,kg/TJ,1310.6358719999998,Gas Oil combustion consumption by agriculture machines,AR-A,SESCO,annual,kg,320b3788-f6f5-3bbd-a641-f3d88909c29a -2021,Salta,II.5.1,336.06048,TJ,N2O,3.9,kg/TJ,1310.6358719999998,Gas Oil combustion consumption by agriculture machines,AR-A,SESCO,annual,kg,320b3788-f6f5-3bbd-a641-f3d88909c29a -2021,San Juan,II.5.1,80.22252,TJ,CO2,74100.0,kg/TJ,5944488.732,Gas Oil combustion consumption by agriculture machines,AR-J,SESCO,annual,kg,88983041-bd15-3dec-a1e8-f694362c6815 -2021,San Juan,II.5.1,80.22252,TJ,CH4,3.9,kg/TJ,312.86782800000003,Gas Oil combustion consumption by agriculture machines,AR-J,SESCO,annual,kg,526f8bdf-e9f0-395b-a470-059bea34983a -2021,San Juan,II.5.1,80.22252,TJ,N2O,3.9,kg/TJ,312.86782800000003,Gas Oil combustion consumption by agriculture machines,AR-J,SESCO,annual,kg,526f8bdf-e9f0-395b-a470-059bea34983a -2021,San Luis,II.5.1,57.90036,TJ,CO2,74100.0,kg/TJ,4290416.676,Gas Oil combustion consumption by agriculture machines,AR-D,SESCO,annual,kg,6486d4ce-244f-3ef9-8fea-470be9f585cf -2021,San Luis,II.5.1,57.90036,TJ,CH4,3.9,kg/TJ,225.81140399999998,Gas Oil combustion consumption by agriculture machines,AR-D,SESCO,annual,kg,ad8a48ff-748b-38a2-8b3f-9f403dd621f7 -2021,San Luis,II.5.1,57.90036,TJ,N2O,3.9,kg/TJ,225.81140399999998,Gas Oil combustion consumption by agriculture machines,AR-D,SESCO,annual,kg,ad8a48ff-748b-38a2-8b3f-9f403dd621f7 -2021,Santa Fe,II.5.1,1012.9492799999999,TJ,CO2,74100.0,kg/TJ,75059541.648,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,b18835c1-51aa-3109-aabb-808d4a9b554e -2021,Santa Fe,II.5.1,1012.9492799999999,TJ,CH4,3.9,kg/TJ,3950.5021919999995,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,61da16ab-1103-3ce9-8545-29ae9d2556fc -2021,Santa Fe,II.5.1,1012.9492799999999,TJ,N2O,3.9,kg/TJ,3950.5021919999995,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,61da16ab-1103-3ce9-8545-29ae9d2556fc -2021,Santiago del Estero,II.5.1,309.18719999999996,TJ,CO2,74100.0,kg/TJ,22910771.519999996,Gas Oil combustion consumption by agriculture machines,AR-G,SESCO,annual,kg,fd08af92-3cd3-354f-9b9d-28f4f880fdec -2021,Santiago del Estero,II.5.1,309.18719999999996,TJ,CH4,3.9,kg/TJ,1205.8300799999997,Gas Oil combustion consumption by agriculture machines,AR-G,SESCO,annual,kg,d8359ed0-09f1-30e2-a869-8144ee1cd2d6 -2021,Santiago del Estero,II.5.1,309.18719999999996,TJ,N2O,3.9,kg/TJ,1205.8300799999997,Gas Oil combustion consumption by agriculture machines,AR-G,SESCO,annual,kg,d8359ed0-09f1-30e2-a869-8144ee1cd2d6 -2021,Tucuman,II.5.1,150.2592,TJ,CO2,74100.0,kg/TJ,11134206.719999999,Gas Oil combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,7fcf63c2-d664-3d12-a242-41cf7cc6098d -2021,Tucuman,II.5.1,150.2592,TJ,CH4,3.9,kg/TJ,586.0108799999999,Gas Oil combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,3eb81cab-55c1-393d-84d7-2c55a4a4ea78 -2021,Tucuman,II.5.1,150.2592,TJ,N2O,3.9,kg/TJ,586.0108799999999,Gas Oil combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,3eb81cab-55c1-393d-84d7-2c55a4a4ea78 -2021,Buenos Aires,II.5.1,6.3220529999999995,TJ,CO2,71500.0,kg/TJ,452026.78949999996,Jet Kerosene combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,db7511a7-ccdc-3776-bdbc-ffff7e760415 -2021,Buenos Aires,II.5.1,6.3220529999999995,TJ,CH4,0.5,kg/TJ,3.1610264999999997,Jet Kerosene combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,c295222a-be1d-3cf3-8503-e98c3b8d828e -2021,Buenos Aires,II.5.1,6.3220529999999995,TJ,N2O,2.0,kg/TJ,12.644105999999999,Jet Kerosene combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,98bb9f0d-4da8-334e-8367-cae68ff7710c -2021,Córdoba,II.5.1,0.31453,TJ,CO2,71500.0,kg/TJ,22488.894999999997,Jet Kerosene combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,f15cf9af-afeb-31b9-a32e-757a60ba7346 -2021,Córdoba,II.5.1,0.31453,TJ,CH4,0.5,kg/TJ,0.157265,Jet Kerosene combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,cf48b8c3-2f61-3dd0-b123-b5d477ee9603 -2021,Córdoba,II.5.1,0.31453,TJ,N2O,2.0,kg/TJ,0.62906,Jet Kerosene combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,ba1ec442-4a67-3a2f-9a40-c16e4a8f5665 -2021,La Pampa,II.5.1,0.22017099999999998,TJ,CO2,71500.0,kg/TJ,15742.226499999999,Jet Kerosene combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,00b63c61-5ae1-3d1b-a97d-cb48a686ddc8 -2021,La Pampa,II.5.1,0.22017099999999998,TJ,CH4,0.5,kg/TJ,0.11008549999999999,Jet Kerosene combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,eaf44d86-d101-33a5-9bf6-d28271d76f0f -2021,La Pampa,II.5.1,0.22017099999999998,TJ,N2O,2.0,kg/TJ,0.44034199999999996,Jet Kerosene combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,5424336b-b984-3a8f-905e-32d5474f922d -2021,Santa Fe,II.5.1,0.25162399999999996,TJ,CO2,71500.0,kg/TJ,17991.115999999998,Jet Kerosene combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,9f968c3e-cbe5-3315-bc81-a6a88ff259f2 -2021,Santa Fe,II.5.1,0.25162399999999996,TJ,CH4,0.5,kg/TJ,0.12581199999999998,Jet Kerosene combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,00ff08c4-4804-379c-97b3-2b1ae630872a -2021,Santa Fe,II.5.1,0.25162399999999996,TJ,N2O,2.0,kg/TJ,0.5032479999999999,Jet Kerosene combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,a0907ad1-e862-3abd-a013-011f9aebfb24 -2021,Buenos Aires,II.5.1,5.516665,TJ,CO2,73300.0,kg/TJ,404371.54449999996,Naphtha combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,e31db194-c07d-330f-a8e6-749c1c53dc9c -2021,Buenos Aires,II.5.1,5.516665,TJ,CH4,0.5,kg/TJ,2.7583325,Naphtha combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,53c04084-39b7-3fea-9006-a14717ec1216 -2021,Buenos Aires,II.5.1,5.516665,TJ,N2O,2.0,kg/TJ,11.03333,Naphtha combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,23a047ff-5a53-3bfa-aead-558c4ab20ac8 -2021,Entre Rios,II.5.1,0.376915,TJ,CO2,73300.0,kg/TJ,27627.8695,Naphtha combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,c0e2fd71-d23c-3c65-9adf-c1c5cbaece78 -2021,Entre Rios,II.5.1,0.376915,TJ,CH4,0.5,kg/TJ,0.1884575,Naphtha combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,baab8fa3-0612-3926-9753-ea5db4ccca74 -2021,Entre Rios,II.5.1,0.376915,TJ,N2O,2.0,kg/TJ,0.75383,Naphtha combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,045b71fa-9838-308e-be74-1e73b7b803e8 -2021,Salta,II.5.1,0.719565,TJ,CO2,73300.0,kg/TJ,52744.1145,Naphtha combustion consumption by agriculture machines,AR-A,SESCO,annual,kg,1d8d9745-8ea4-3321-9a3f-bc8a4484b148 -2021,Salta,II.5.1,0.719565,TJ,CH4,0.5,kg/TJ,0.3597825,Naphtha combustion consumption by agriculture machines,AR-A,SESCO,annual,kg,ce2aecb3-b798-3fcb-bf07-7c923fe062c5 -2021,Salta,II.5.1,0.719565,TJ,N2O,2.0,kg/TJ,1.43913,Naphtha combustion consumption by agriculture machines,AR-A,SESCO,annual,kg,cfcf733e-1d9f-39a0-8513-b681b15e4317 -2021,Santa Fe,II.5.1,12.027014999999999,TJ,CO2,73300.0,kg/TJ,881580.1994999999,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,9b8a5a43-f067-3974-9699-81df427e6be6 -2021,Santa Fe,II.5.1,12.027014999999999,TJ,CH4,0.5,kg/TJ,6.013507499999999,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,97732e2b-fd9a-3007-a094-1cad61649261 -2021,Santa Fe,II.5.1,12.027014999999999,TJ,N2O,2.0,kg/TJ,24.054029999999997,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,d345dc94-4388-346b-9757-902aac95871d -2021,Santa Fe,II.5.1,0.82236,TJ,CO2,73300.0,kg/TJ,60278.988,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,9416bc52-6023-3030-887f-463101bec796 -2021,Santa Fe,II.5.1,0.82236,TJ,CH4,0.5,kg/TJ,0.41118,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,eb837b43-b15d-3258-b130-44d670bca2a0 -2021,Santa Fe,II.5.1,0.82236,TJ,N2O,2.0,kg/TJ,1.64472,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,b06be6c3-7fcb-3513-ae11-de597c4435b1 -2021,San Juan,II.2.1,3.0702,TJ,CO2,74100.0,kg/TJ,227501.81999999998,Gas Oil combustion consumption by railway transport,AR-J,SESCO,annual,kg,4de4ae97-b5bf-359c-93c4-db82289a5d94 -2021,San Juan,II.2.1,3.0702,TJ,CH4,3.9,kg/TJ,11.97378,Gas Oil combustion consumption by railway transport,AR-J,SESCO,annual,kg,f4458fcb-f8a8-319e-bfe4-0182e1ff1f87 -2021,San Juan,II.2.1,3.0702,TJ,N2O,3.9,kg/TJ,11.97378,Gas Oil combustion consumption by railway transport,AR-J,SESCO,annual,kg,f4458fcb-f8a8-319e-bfe4-0182e1ff1f87 -2021,San Juan,II.2.1,4.98456,TJ,CO2,74100.0,kg/TJ,369355.896,Gas Oil combustion consumption by railway transport,AR-J,SESCO,annual,kg,fe84da45-a4ba-39af-ab1c-749d38676f07 -2021,San Juan,II.2.1,4.98456,TJ,CH4,3.9,kg/TJ,19.439784,Gas Oil combustion consumption by railway transport,AR-J,SESCO,annual,kg,aacd1e09-3953-3876-a0d4-0eebbd4e1b38 -2021,San Juan,II.2.1,4.98456,TJ,N2O,3.9,kg/TJ,19.439784,Gas Oil combustion consumption by railway transport,AR-J,SESCO,annual,kg,aacd1e09-3953-3876-a0d4-0eebbd4e1b38 -2021,Buenos Aires,II.1.1,11169.96552,TJ,CO2,74100.0,kg/TJ,827694445.032,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,bd7d49e6-0607-3671-9548-91df665fab01 -2021,Buenos Aires,II.1.1,11169.96552,TJ,CH4,3.9,kg/TJ,43562.865527999995,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,a9fa3f54-4c58-3a52-adfe-8a0225761b9d -2021,Buenos Aires,II.1.1,11169.96552,TJ,N2O,3.9,kg/TJ,43562.865527999995,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,a9fa3f54-4c58-3a52-adfe-8a0225761b9d -2021,Capital Federal,II.1.1,884.14536,TJ,CO2,74100.0,kg/TJ,65515171.176,Gas Oil combustion consumption by freight transport,AR-C,SESCO,annual,kg,c84cdac8-094c-3046-89d9-d094ba56b145 -2021,Capital Federal,II.1.1,884.14536,TJ,CH4,3.9,kg/TJ,3448.1669039999997,Gas Oil combustion consumption by freight transport,AR-C,SESCO,annual,kg,55b03431-2813-3909-aac9-2be770cfde56 -2021,Capital Federal,II.1.1,884.14536,TJ,N2O,3.9,kg/TJ,3448.1669039999997,Gas Oil combustion consumption by freight transport,AR-C,SESCO,annual,kg,55b03431-2813-3909-aac9-2be770cfde56 -2021,Catamarca,II.1.1,37.2036,TJ,CO2,74100.0,kg/TJ,2756786.7600000002,Gas Oil combustion consumption by freight transport,AR-K,SESCO,annual,kg,4458cbba-0265-38d3-bca6-69260b833beb -2021,Catamarca,II.1.1,37.2036,TJ,CH4,3.9,kg/TJ,145.09404,Gas Oil combustion consumption by freight transport,AR-K,SESCO,annual,kg,9ba433a8-4633-3f7b-af7b-56bb2a9f71ea -2021,Catamarca,II.1.1,37.2036,TJ,N2O,3.9,kg/TJ,145.09404,Gas Oil combustion consumption by freight transport,AR-K,SESCO,annual,kg,9ba433a8-4633-3f7b-af7b-56bb2a9f71ea -2021,Chaco,II.1.1,418.19736,TJ,CO2,74100.0,kg/TJ,30988424.376000002,Gas Oil combustion consumption by freight transport,AR-H,SESCO,annual,kg,d7ddde96-7826-30cc-8f72-318d4752f84a -2021,Chaco,II.1.1,418.19736,TJ,CH4,3.9,kg/TJ,1630.9697039999999,Gas Oil combustion consumption by freight transport,AR-H,SESCO,annual,kg,c44c25d7-c2ae-3db2-a7d8-772820101460 -2021,Chaco,II.1.1,418.19736,TJ,N2O,3.9,kg/TJ,1630.9697039999999,Gas Oil combustion consumption by freight transport,AR-H,SESCO,annual,kg,c44c25d7-c2ae-3db2-a7d8-772820101460 -2021,Chubut,II.1.1,830.36268,TJ,CO2,74100.0,kg/TJ,61529874.588,Gas Oil combustion consumption by freight transport,AR-U,SESCO,annual,kg,92228826-7fcd-33b8-9355-817f12899958 -2021,Chubut,II.1.1,830.36268,TJ,CH4,3.9,kg/TJ,3238.4144519999995,Gas Oil combustion consumption by freight transport,AR-U,SESCO,annual,kg,09c5e210-186a-3cea-8388-4e217fd47df6 -2021,Chubut,II.1.1,830.36268,TJ,N2O,3.9,kg/TJ,3238.4144519999995,Gas Oil combustion consumption by freight transport,AR-U,SESCO,annual,kg,09c5e210-186a-3cea-8388-4e217fd47df6 -2021,Corrientes,II.1.1,754.908,TJ,CO2,74100.0,kg/TJ,55938682.800000004,Gas Oil combustion consumption by freight transport,AR-W,SESCO,annual,kg,32a87713-b381-3429-839b-97ca15d6c4ae -2021,Corrientes,II.1.1,754.908,TJ,CH4,3.9,kg/TJ,2944.1412,Gas Oil combustion consumption by freight transport,AR-W,SESCO,annual,kg,4f879946-fa2e-3bbe-a549-696684d3e62f -2021,Corrientes,II.1.1,754.908,TJ,N2O,3.9,kg/TJ,2944.1412,Gas Oil combustion consumption by freight transport,AR-W,SESCO,annual,kg,4f879946-fa2e-3bbe-a549-696684d3e62f -2021,Córdoba,II.1.1,2924.96148,TJ,CO2,74100.0,kg/TJ,216739645.66799998,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,bf4022bf-b14e-33bf-811b-fc0a01936498 -2021,Córdoba,II.1.1,2924.96148,TJ,CH4,3.9,kg/TJ,11407.349772,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,6bc2566d-dbde-3829-8f04-ee3fa7c012de -2021,Córdoba,II.1.1,2924.96148,TJ,N2O,3.9,kg/TJ,11407.349772,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,6bc2566d-dbde-3829-8f04-ee3fa7c012de -2021,Entre Rios,II.1.1,1238.6631599999998,TJ,CO2,74100.0,kg/TJ,91784940.15599999,Gas Oil combustion consumption by freight transport,AR-E,SESCO,annual,kg,27b4824f-1936-3a1e-8499-77e5eb583f7c -2021,Entre Rios,II.1.1,1238.6631599999998,TJ,CH4,3.9,kg/TJ,4830.786324,Gas Oil combustion consumption by freight transport,AR-E,SESCO,annual,kg,3218372d-e197-364b-85b6-473936956f69 -2021,Entre Rios,II.1.1,1238.6631599999998,TJ,N2O,3.9,kg/TJ,4830.786324,Gas Oil combustion consumption by freight transport,AR-E,SESCO,annual,kg,3218372d-e197-364b-85b6-473936956f69 -2021,Formosa,II.1.1,61.7652,TJ,CO2,74100.0,kg/TJ,4576801.32,Gas Oil combustion consumption by freight transport,AR-P,SESCO,annual,kg,ef560526-c4d4-3a01-b280-c8839e0b9823 -2021,Formosa,II.1.1,61.7652,TJ,CH4,3.9,kg/TJ,240.88428,Gas Oil combustion consumption by freight transport,AR-P,SESCO,annual,kg,8dc95a28-da09-30b6-8eb2-7d7ff21780bf -2021,Formosa,II.1.1,61.7652,TJ,N2O,3.9,kg/TJ,240.88428,Gas Oil combustion consumption by freight transport,AR-P,SESCO,annual,kg,8dc95a28-da09-30b6-8eb2-7d7ff21780bf -2021,Jujuy,II.1.1,199.16567999999998,TJ,CO2,74100.0,kg/TJ,14758176.887999998,Gas Oil combustion consumption by freight transport,AR-Y,SESCO,annual,kg,30eb1e5d-f57e-3e13-a997-f104bd093c6b -2021,Jujuy,II.1.1,199.16567999999998,TJ,CH4,3.9,kg/TJ,776.7461519999999,Gas Oil combustion consumption by freight transport,AR-Y,SESCO,annual,kg,46198f05-0579-368f-8415-d6e7bee42cb7 -2021,Jujuy,II.1.1,199.16567999999998,TJ,N2O,3.9,kg/TJ,776.7461519999999,Gas Oil combustion consumption by freight transport,AR-Y,SESCO,annual,kg,46198f05-0579-368f-8415-d6e7bee42cb7 -2021,La Pampa,II.1.1,1079.84352,TJ,CO2,74100.0,kg/TJ,80016404.83199999,Gas Oil combustion consumption by freight transport,AR-L,SESCO,annual,kg,d16780d5-e756-341e-b7fa-c349c5b02183 -2021,La Pampa,II.1.1,1079.84352,TJ,CH4,3.9,kg/TJ,4211.389727999999,Gas Oil combustion consumption by freight transport,AR-L,SESCO,annual,kg,7382be68-4a2a-3380-bd7a-9960059c81a5 -2021,La Pampa,II.1.1,1079.84352,TJ,N2O,3.9,kg/TJ,4211.389727999999,Gas Oil combustion consumption by freight transport,AR-L,SESCO,annual,kg,7382be68-4a2a-3380-bd7a-9960059c81a5 -2021,La Rioja,II.1.1,91.78092,TJ,CO2,74100.0,kg/TJ,6800966.171999999,Gas Oil combustion consumption by freight transport,AR-F,SESCO,annual,kg,f3ccf743-1036-38dc-b0f8-69050adca500 -2021,La Rioja,II.1.1,91.78092,TJ,CH4,3.9,kg/TJ,357.945588,Gas Oil combustion consumption by freight transport,AR-F,SESCO,annual,kg,f02dc9ae-aa2b-3e92-88c2-6ec741327058 -2021,La Rioja,II.1.1,91.78092,TJ,N2O,3.9,kg/TJ,357.945588,Gas Oil combustion consumption by freight transport,AR-F,SESCO,annual,kg,f02dc9ae-aa2b-3e92-88c2-6ec741327058 -2021,Mendoza,II.1.1,1813.54908,TJ,CO2,74100.0,kg/TJ,134383986.828,Gas Oil combustion consumption by freight transport,AR-M,SESCO,annual,kg,5391057a-0518-3813-9be1-fccec69c18ba -2021,Mendoza,II.1.1,1813.54908,TJ,CH4,3.9,kg/TJ,7072.841412,Gas Oil combustion consumption by freight transport,AR-M,SESCO,annual,kg,149cfa6e-1b42-3daa-906b-fc55b3e2bbc0 -2021,Mendoza,II.1.1,1813.54908,TJ,N2O,3.9,kg/TJ,7072.841412,Gas Oil combustion consumption by freight transport,AR-M,SESCO,annual,kg,149cfa6e-1b42-3daa-906b-fc55b3e2bbc0 -2021,Misiones,II.1.1,689.9281199999999,TJ,CO2,74100.0,kg/TJ,51123673.691999994,Gas Oil combustion consumption by freight transport,AR-N,SESCO,annual,kg,baaac962-8396-3fbd-954d-a0c07690d30a -2021,Misiones,II.1.1,689.9281199999999,TJ,CH4,3.9,kg/TJ,2690.7196679999997,Gas Oil combustion consumption by freight transport,AR-N,SESCO,annual,kg,7305c30d-458c-30c8-addd-d95771dcddcb -2021,Misiones,II.1.1,689.9281199999999,TJ,N2O,3.9,kg/TJ,2690.7196679999997,Gas Oil combustion consumption by freight transport,AR-N,SESCO,annual,kg,7305c30d-458c-30c8-addd-d95771dcddcb -2021,Neuquén,II.1.1,831.8435999999999,TJ,CO2,74100.0,kg/TJ,61639610.76,Gas Oil combustion consumption by freight transport,AR-Q,SESCO,annual,kg,38e6e034-5812-361b-b006-55b0d9063c2b -2021,Neuquén,II.1.1,831.8435999999999,TJ,CH4,3.9,kg/TJ,3244.1900399999995,Gas Oil combustion consumption by freight transport,AR-Q,SESCO,annual,kg,d4d18d77-a534-3571-a224-e0a74a8a5c62 -2021,Neuquén,II.1.1,831.8435999999999,TJ,N2O,3.9,kg/TJ,3244.1900399999995,Gas Oil combustion consumption by freight transport,AR-Q,SESCO,annual,kg,d4d18d77-a534-3571-a224-e0a74a8a5c62 -2021,Rio Negro,II.1.1,887.93796,TJ,CO2,74100.0,kg/TJ,65796202.835999995,Gas Oil combustion consumption by freight transport,AR-R,SESCO,annual,kg,053346e2-35ca-3cb3-b92b-a122bc695660 -2021,Rio Negro,II.1.1,887.93796,TJ,CH4,3.9,kg/TJ,3462.958044,Gas Oil combustion consumption by freight transport,AR-R,SESCO,annual,kg,dd116e92-2788-3056-a189-f1656f1cbf3b -2021,Rio Negro,II.1.1,887.93796,TJ,N2O,3.9,kg/TJ,3462.958044,Gas Oil combustion consumption by freight transport,AR-R,SESCO,annual,kg,dd116e92-2788-3056-a189-f1656f1cbf3b -2021,Salta,II.1.1,805.1509199999999,TJ,CO2,74100.0,kg/TJ,59661683.172,Gas Oil combustion consumption by freight transport,AR-A,SESCO,annual,kg,131b7e17-34ce-3e4d-a9e2-af20c5b7782a -2021,Salta,II.1.1,805.1509199999999,TJ,CH4,3.9,kg/TJ,3140.0885879999996,Gas Oil combustion consumption by freight transport,AR-A,SESCO,annual,kg,79896d3a-b7f1-39d9-990f-ca060e037b83 -2021,Salta,II.1.1,805.1509199999999,TJ,N2O,3.9,kg/TJ,3140.0885879999996,Gas Oil combustion consumption by freight transport,AR-A,SESCO,annual,kg,79896d3a-b7f1-39d9-990f-ca060e037b83 -2021,San Juan,II.1.1,138.55632,TJ,CO2,74100.0,kg/TJ,10267023.312,Gas Oil combustion consumption by freight transport,AR-J,SESCO,annual,kg,adcd7a8c-2568-34e8-b553-20e3f93a066d -2021,San Juan,II.1.1,138.55632,TJ,CH4,3.9,kg/TJ,540.369648,Gas Oil combustion consumption by freight transport,AR-J,SESCO,annual,kg,fa5a466b-2caa-336f-84ae-2d401c86347b -2021,San Juan,II.1.1,138.55632,TJ,N2O,3.9,kg/TJ,540.369648,Gas Oil combustion consumption by freight transport,AR-J,SESCO,annual,kg,fa5a466b-2caa-336f-84ae-2d401c86347b -2021,San Luis,II.1.1,571.09332,TJ,CO2,74100.0,kg/TJ,42318015.011999995,Gas Oil combustion consumption by freight transport,AR-D,SESCO,annual,kg,dbe1a8f3-9fb5-32c5-8f42-6a037aa48a4c -2021,San Luis,II.1.1,571.09332,TJ,CH4,3.9,kg/TJ,2227.263948,Gas Oil combustion consumption by freight transport,AR-D,SESCO,annual,kg,2eccf46e-23a8-3d70-9b83-7bdb158766a0 -2021,San Luis,II.1.1,571.09332,TJ,N2O,3.9,kg/TJ,2227.263948,Gas Oil combustion consumption by freight transport,AR-D,SESCO,annual,kg,2eccf46e-23a8-3d70-9b83-7bdb158766a0 -2021,Santa Cruz,II.1.1,592.1512799999999,TJ,CO2,74100.0,kg/TJ,43878409.848,Gas Oil combustion consumption by freight transport,AR-Z,SESCO,annual,kg,a87b82d5-8780-38c2-9cdf-bdeb70ae90ef -2021,Santa Cruz,II.1.1,592.1512799999999,TJ,CH4,3.9,kg/TJ,2309.389992,Gas Oil combustion consumption by freight transport,AR-Z,SESCO,annual,kg,2784913c-883b-311c-ac37-7c0dd0d79fae -2021,Santa Cruz,II.1.1,592.1512799999999,TJ,N2O,3.9,kg/TJ,2309.389992,Gas Oil combustion consumption by freight transport,AR-Z,SESCO,annual,kg,2784913c-883b-311c-ac37-7c0dd0d79fae -2021,Santa Fe,II.1.1,3219.48396,TJ,CO2,74100.0,kg/TJ,238563761.436,Gas Oil combustion consumption by freight transport,AR-S,SESCO,annual,kg,027bcb8c-1299-3798-939c-84224a9befed -2021,Santa Fe,II.1.1,3219.48396,TJ,CH4,3.9,kg/TJ,12555.987444,Gas Oil combustion consumption by freight transport,AR-S,SESCO,annual,kg,2a3b9f42-cea1-303c-a378-5af62ba8dcdc -2021,Santa Fe,II.1.1,3219.48396,TJ,N2O,3.9,kg/TJ,12555.987444,Gas Oil combustion consumption by freight transport,AR-S,SESCO,annual,kg,2a3b9f42-cea1-303c-a378-5af62ba8dcdc -2021,Santiago del Estero,II.1.1,702.3534,TJ,CO2,74100.0,kg/TJ,52044386.94,Gas Oil combustion consumption by freight transport,AR-G,SESCO,annual,kg,32002838-434f-3106-809a-48e2fb6fe8b8 -2021,Santiago del Estero,II.1.1,702.3534,TJ,CH4,3.9,kg/TJ,2739.1782599999997,Gas Oil combustion consumption by freight transport,AR-G,SESCO,annual,kg,6ff3dfda-936b-3597-a36e-f7d595ba56b8 -2021,Santiago del Estero,II.1.1,702.3534,TJ,N2O,3.9,kg/TJ,2739.1782599999997,Gas Oil combustion consumption by freight transport,AR-G,SESCO,annual,kg,6ff3dfda-936b-3597-a36e-f7d595ba56b8 -2021,Tierra del Fuego,II.1.1,285.05904,TJ,CO2,74100.0,kg/TJ,21122874.864,Gas Oil combustion consumption by freight transport,AR-V,SESCO,annual,kg,4a223a14-3e38-3085-a173-4df9f76e6dac -2021,Tierra del Fuego,II.1.1,285.05904,TJ,CH4,3.9,kg/TJ,1111.7302559999998,Gas Oil combustion consumption by freight transport,AR-V,SESCO,annual,kg,a09dabda-3554-3f11-88ff-0f4eafca62eb -2021,Tierra del Fuego,II.1.1,285.05904,TJ,N2O,3.9,kg/TJ,1111.7302559999998,Gas Oil combustion consumption by freight transport,AR-V,SESCO,annual,kg,a09dabda-3554-3f11-88ff-0f4eafca62eb -2021,Tucuman,II.1.1,405.2664,TJ,CO2,74100.0,kg/TJ,30030240.24,Gas Oil combustion consumption by freight transport,AR-T,SESCO,annual,kg,b8bf00bd-c4cd-3d43-82f4-6d953bfe440c -2021,Tucuman,II.1.1,405.2664,TJ,CH4,3.9,kg/TJ,1580.5389599999999,Gas Oil combustion consumption by freight transport,AR-T,SESCO,annual,kg,1811159b-4156-3c8f-92d4-60689e0671c6 -2021,Tucuman,II.1.1,405.2664,TJ,N2O,3.9,kg/TJ,1580.5389599999999,Gas Oil combustion consumption by freight transport,AR-T,SESCO,annual,kg,1811159b-4156-3c8f-92d4-60689e0671c6 -2021,Buenos Aires,II.1.1,4004.8411199999996,TJ,CO2,74100.0,kg/TJ,296758726.992,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,5cdf3a4b-f2d8-3d7d-a2b5-5cfedf3e65de -2021,Buenos Aires,II.1.1,4004.8411199999996,TJ,CH4,3.9,kg/TJ,15618.880367999998,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,206a055b-35f1-328e-b124-af6d8d5bd2b6 -2021,Buenos Aires,II.1.1,4004.8411199999996,TJ,N2O,3.9,kg/TJ,15618.880367999998,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,206a055b-35f1-328e-b124-af6d8d5bd2b6 -2021,Capital Federal,II.1.1,495.13295999999997,TJ,CO2,74100.0,kg/TJ,36689352.335999995,Gas Oil combustion consumption by freight transport,AR-C,SESCO,annual,kg,6433dbae-ec3e-366b-8d8e-3111f621f7a3 -2021,Capital Federal,II.1.1,495.13295999999997,TJ,CH4,3.9,kg/TJ,1931.0185439999998,Gas Oil combustion consumption by freight transport,AR-C,SESCO,annual,kg,146af22d-c0fd-3120-ba58-c50ed64cb84b -2021,Capital Federal,II.1.1,495.13295999999997,TJ,N2O,3.9,kg/TJ,1931.0185439999998,Gas Oil combustion consumption by freight transport,AR-C,SESCO,annual,kg,146af22d-c0fd-3120-ba58-c50ed64cb84b -2021,Catamarca,II.1.1,20.44392,TJ,CO2,74100.0,kg/TJ,1514894.4719999998,Gas Oil combustion consumption by freight transport,AR-K,SESCO,annual,kg,fb1a49b3-5dc9-374e-8241-ed3ddc8dba77 -2021,Catamarca,II.1.1,20.44392,TJ,CH4,3.9,kg/TJ,79.73128799999999,Gas Oil combustion consumption by freight transport,AR-K,SESCO,annual,kg,608e6c4e-0172-3086-8ded-a3054a75bb51 -2021,Catamarca,II.1.1,20.44392,TJ,N2O,3.9,kg/TJ,79.73128799999999,Gas Oil combustion consumption by freight transport,AR-K,SESCO,annual,kg,608e6c4e-0172-3086-8ded-a3054a75bb51 -2021,Chaco,II.1.1,160.58952,TJ,CO2,74100.0,kg/TJ,11899683.432,Gas Oil combustion consumption by freight transport,AR-H,SESCO,annual,kg,6bb89b8d-2350-3620-a372-39f632e5465d -2021,Chaco,II.1.1,160.58952,TJ,CH4,3.9,kg/TJ,626.299128,Gas Oil combustion consumption by freight transport,AR-H,SESCO,annual,kg,d16dffaa-6d05-3f95-b057-fa804a043a08 -2021,Chaco,II.1.1,160.58952,TJ,N2O,3.9,kg/TJ,626.299128,Gas Oil combustion consumption by freight transport,AR-H,SESCO,annual,kg,d16dffaa-6d05-3f95-b057-fa804a043a08 -2021,Chubut,II.1.1,435.9684,TJ,CO2,74100.0,kg/TJ,32305258.439999998,Gas Oil combustion consumption by freight transport,AR-U,SESCO,annual,kg,3a652a09-8e0a-352e-9cbc-88e54f3261f3 -2021,Chubut,II.1.1,435.9684,TJ,CH4,3.9,kg/TJ,1700.27676,Gas Oil combustion consumption by freight transport,AR-U,SESCO,annual,kg,1d38fd49-c46c-3fa6-b586-d15c24027df3 -2021,Chubut,II.1.1,435.9684,TJ,N2O,3.9,kg/TJ,1700.27676,Gas Oil combustion consumption by freight transport,AR-U,SESCO,annual,kg,1d38fd49-c46c-3fa6-b586-d15c24027df3 -2021,Corrientes,II.1.1,208.91808,TJ,CO2,74100.0,kg/TJ,15480829.728,Gas Oil combustion consumption by freight transport,AR-W,SESCO,annual,kg,0f6ae104-5a08-33ac-92fa-66d0864501d6 -2021,Corrientes,II.1.1,208.91808,TJ,CH4,3.9,kg/TJ,814.780512,Gas Oil combustion consumption by freight transport,AR-W,SESCO,annual,kg,6bbbe7f2-4b04-36dc-ade6-898ad92d9086 -2021,Corrientes,II.1.1,208.91808,TJ,N2O,3.9,kg/TJ,814.780512,Gas Oil combustion consumption by freight transport,AR-W,SESCO,annual,kg,6bbbe7f2-4b04-36dc-ade6-898ad92d9086 -2021,Córdoba,II.1.1,819.7795199999999,TJ,CO2,74100.0,kg/TJ,60745662.432,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,f70fe27c-447f-3444-8018-f93e205ae3ba -2021,Córdoba,II.1.1,819.7795199999999,TJ,CH4,3.9,kg/TJ,3197.1401279999995,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,2861b0a0-0458-3a9c-8433-ba9d16ff91f8 -2021,Córdoba,II.1.1,819.7795199999999,TJ,N2O,3.9,kg/TJ,3197.1401279999995,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,2861b0a0-0458-3a9c-8433-ba9d16ff91f8 -2021,Entre Rios,II.1.1,315.147,TJ,CO2,74100.0,kg/TJ,23352392.7,Gas Oil combustion consumption by freight transport,AR-E,SESCO,annual,kg,4ce558d7-6343-3a1a-af8f-7fb3d31cbffd -2021,Entre Rios,II.1.1,315.147,TJ,CH4,3.9,kg/TJ,1229.0733,Gas Oil combustion consumption by freight transport,AR-E,SESCO,annual,kg,468b0ebd-11b4-3a2d-a53e-f59a39967bcc -2021,Entre Rios,II.1.1,315.147,TJ,N2O,3.9,kg/TJ,1229.0733,Gas Oil combustion consumption by freight transport,AR-E,SESCO,annual,kg,468b0ebd-11b4-3a2d-a53e-f59a39967bcc -2021,Formosa,II.1.1,39.9126,TJ,CO2,74100.0,kg/TJ,2957523.6599999997,Gas Oil combustion consumption by freight transport,AR-P,SESCO,annual,kg,6bff51b0-2331-3ea4-af6e-72343a2589d1 -2021,Formosa,II.1.1,39.9126,TJ,CH4,3.9,kg/TJ,155.65913999999998,Gas Oil combustion consumption by freight transport,AR-P,SESCO,annual,kg,646ad33a-2235-38cd-b2dc-a0e6794b8376 -2021,Formosa,II.1.1,39.9126,TJ,N2O,3.9,kg/TJ,155.65913999999998,Gas Oil combustion consumption by freight transport,AR-P,SESCO,annual,kg,646ad33a-2235-38cd-b2dc-a0e6794b8376 -2021,Jujuy,II.1.1,60.17592,TJ,CO2,74100.0,kg/TJ,4459035.672,Gas Oil combustion consumption by freight transport,AR-Y,SESCO,annual,kg,9d6fd374-6d52-3b20-8b88-e12982887c7e -2021,Jujuy,II.1.1,60.17592,TJ,CH4,3.9,kg/TJ,234.68608799999998,Gas Oil combustion consumption by freight transport,AR-Y,SESCO,annual,kg,66ac95bd-9537-3197-a9f7-783ca538fdd7 -2021,Jujuy,II.1.1,60.17592,TJ,N2O,3.9,kg/TJ,234.68608799999998,Gas Oil combustion consumption by freight transport,AR-Y,SESCO,annual,kg,66ac95bd-9537-3197-a9f7-783ca538fdd7 -2021,La Pampa,II.1.1,203.64455999999998,TJ,CO2,74100.0,kg/TJ,15090061.896,Gas Oil combustion consumption by freight transport,AR-L,SESCO,annual,kg,26c71165-631d-3c39-869e-09fd7c897a86 -2021,La Pampa,II.1.1,203.64455999999998,TJ,CH4,3.9,kg/TJ,794.2137839999999,Gas Oil combustion consumption by freight transport,AR-L,SESCO,annual,kg,409048b5-a109-3644-bb56-5f451ed7b2cb -2021,La Pampa,II.1.1,203.64455999999998,TJ,N2O,3.9,kg/TJ,794.2137839999999,Gas Oil combustion consumption by freight transport,AR-L,SESCO,annual,kg,409048b5-a109-3644-bb56-5f451ed7b2cb -2021,La Rioja,II.1.1,47.281079999999996,TJ,CO2,74100.0,kg/TJ,3503528.0279999995,Gas Oil combustion consumption by freight transport,AR-F,SESCO,annual,kg,b389a5de-9ec3-3353-a10f-d5ce1f86a66c -2021,La Rioja,II.1.1,47.281079999999996,TJ,CH4,3.9,kg/TJ,184.396212,Gas Oil combustion consumption by freight transport,AR-F,SESCO,annual,kg,89dabcf6-f951-398b-b925-781796b1c69a -2021,La Rioja,II.1.1,47.281079999999996,TJ,N2O,3.9,kg/TJ,184.396212,Gas Oil combustion consumption by freight transport,AR-F,SESCO,annual,kg,89dabcf6-f951-398b-b925-781796b1c69a -2021,Mendoza,II.1.1,556.39248,TJ,CO2,74100.0,kg/TJ,41228682.768,Gas Oil combustion consumption by freight transport,AR-M,SESCO,annual,kg,0cc9b29d-339a-39e7-8cb4-662c604aa3d1 -2021,Mendoza,II.1.1,556.39248,TJ,CH4,3.9,kg/TJ,2169.930672,Gas Oil combustion consumption by freight transport,AR-M,SESCO,annual,kg,d23848b8-28ed-3c7f-b537-a87a820ac9b8 -2021,Mendoza,II.1.1,556.39248,TJ,N2O,3.9,kg/TJ,2169.930672,Gas Oil combustion consumption by freight transport,AR-M,SESCO,annual,kg,d23848b8-28ed-3c7f-b537-a87a820ac9b8 -2021,Misiones,II.1.1,164.59884,TJ,CO2,74100.0,kg/TJ,12196774.044,Gas Oil combustion consumption by freight transport,AR-N,SESCO,annual,kg,a2b7af1e-8e5d-3a66-bdf6-f6ad722ca8fc -2021,Misiones,II.1.1,164.59884,TJ,CH4,3.9,kg/TJ,641.935476,Gas Oil combustion consumption by freight transport,AR-N,SESCO,annual,kg,3bb5e42a-b84e-3d27-8ea4-7c7ad4fbc394 -2021,Misiones,II.1.1,164.59884,TJ,N2O,3.9,kg/TJ,641.935476,Gas Oil combustion consumption by freight transport,AR-N,SESCO,annual,kg,3bb5e42a-b84e-3d27-8ea4-7c7ad4fbc394 -2021,Neuquén,II.1.1,1197.41412,TJ,CO2,74100.0,kg/TJ,88728386.292,Gas Oil combustion consumption by freight transport,AR-Q,SESCO,annual,kg,997039f6-f33d-38a1-b502-c8bca0ad4586 -2021,Neuquén,II.1.1,1197.41412,TJ,CH4,3.9,kg/TJ,4669.915067999999,Gas Oil combustion consumption by freight transport,AR-Q,SESCO,annual,kg,09e4d48e-987b-3fc1-b628-61e3904b08c5 -2021,Neuquén,II.1.1,1197.41412,TJ,N2O,3.9,kg/TJ,4669.915067999999,Gas Oil combustion consumption by freight transport,AR-Q,SESCO,annual,kg,09e4d48e-987b-3fc1-b628-61e3904b08c5 -2021,Rio Negro,II.1.1,412.02083999999996,TJ,CO2,74100.0,kg/TJ,30530744.244,Gas Oil combustion consumption by freight transport,AR-R,SESCO,annual,kg,cd19faff-765c-3220-b6d8-f349c4c3c311 -2021,Rio Negro,II.1.1,412.02083999999996,TJ,CH4,3.9,kg/TJ,1606.8812759999998,Gas Oil combustion consumption by freight transport,AR-R,SESCO,annual,kg,a5a4560a-a0f5-3ec6-b1cf-91e78d786d23 -2021,Rio Negro,II.1.1,412.02083999999996,TJ,N2O,3.9,kg/TJ,1606.8812759999998,Gas Oil combustion consumption by freight transport,AR-R,SESCO,annual,kg,a5a4560a-a0f5-3ec6-b1cf-91e78d786d23 -2021,Salta,II.1.1,287.98476,TJ,CO2,74100.0,kg/TJ,21339670.716,Gas Oil combustion consumption by freight transport,AR-A,SESCO,annual,kg,71fa6f15-3e04-3b7c-b7e9-759fde469f52 -2021,Salta,II.1.1,287.98476,TJ,CH4,3.9,kg/TJ,1123.140564,Gas Oil combustion consumption by freight transport,AR-A,SESCO,annual,kg,d1128c8d-f6d5-36d5-9b81-fd388c4c31da -2021,Salta,II.1.1,287.98476,TJ,N2O,3.9,kg/TJ,1123.140564,Gas Oil combustion consumption by freight transport,AR-A,SESCO,annual,kg,d1128c8d-f6d5-36d5-9b81-fd388c4c31da -2021,San Juan,II.1.1,66.85812,TJ,CO2,74100.0,kg/TJ,4954186.692,Gas Oil combustion consumption by freight transport,AR-J,SESCO,annual,kg,6d0ef19c-af67-3471-a5fa-38371b933f0d -2021,San Juan,II.1.1,66.85812,TJ,CH4,3.9,kg/TJ,260.746668,Gas Oil combustion consumption by freight transport,AR-J,SESCO,annual,kg,deecda7b-1daf-3a72-8197-d59b337e1f79 -2021,San Juan,II.1.1,66.85812,TJ,N2O,3.9,kg/TJ,260.746668,Gas Oil combustion consumption by freight transport,AR-J,SESCO,annual,kg,deecda7b-1daf-3a72-8197-d59b337e1f79 -2021,San Luis,II.1.1,116.41476,TJ,CO2,74100.0,kg/TJ,8626333.716,Gas Oil combustion consumption by freight transport,AR-D,SESCO,annual,kg,ebc83cba-b501-3aae-83c8-06a62528076a -2021,San Luis,II.1.1,116.41476,TJ,CH4,3.9,kg/TJ,454.017564,Gas Oil combustion consumption by freight transport,AR-D,SESCO,annual,kg,f8d3923f-6008-3c01-b81a-c4630477f18f -2021,San Luis,II.1.1,116.41476,TJ,N2O,3.9,kg/TJ,454.017564,Gas Oil combustion consumption by freight transport,AR-D,SESCO,annual,kg,f8d3923f-6008-3c01-b81a-c4630477f18f -2021,Santa Cruz,II.1.1,299.18196,TJ,CO2,74100.0,kg/TJ,22169383.236,Gas Oil combustion consumption by freight transport,AR-Z,SESCO,annual,kg,98f9c6e3-52d5-3f76-8901-58054a1132a6 -2021,Santa Cruz,II.1.1,299.18196,TJ,CH4,3.9,kg/TJ,1166.809644,Gas Oil combustion consumption by freight transport,AR-Z,SESCO,annual,kg,30c4ef92-69e5-3ba5-af91-9b4b85a0c68a -2021,Santa Cruz,II.1.1,299.18196,TJ,N2O,3.9,kg/TJ,1166.809644,Gas Oil combustion consumption by freight transport,AR-Z,SESCO,annual,kg,30c4ef92-69e5-3ba5-af91-9b4b85a0c68a -2021,Santa Fe,II.1.1,792.72564,TJ,CO2,74100.0,kg/TJ,58740969.924,Gas Oil combustion consumption by freight transport,AR-S,SESCO,annual,kg,9d0812d6-59d5-38ec-a7c7-b362265959ba -2021,Santa Fe,II.1.1,792.72564,TJ,CH4,3.9,kg/TJ,3091.629996,Gas Oil combustion consumption by freight transport,AR-S,SESCO,annual,kg,5b20936d-826b-326e-b72b-8955bfb0411d -2021,Santa Fe,II.1.1,792.72564,TJ,N2O,3.9,kg/TJ,3091.629996,Gas Oil combustion consumption by freight transport,AR-S,SESCO,annual,kg,5b20936d-826b-326e-b72b-8955bfb0411d -2021,Santiago del Estero,II.1.1,142.38504,TJ,CO2,74100.0,kg/TJ,10550731.464,Gas Oil combustion consumption by freight transport,AR-G,SESCO,annual,kg,d0cac68d-1f0b-3df7-bcc7-2ed75e9e5783 -2021,Santiago del Estero,II.1.1,142.38504,TJ,CH4,3.9,kg/TJ,555.301656,Gas Oil combustion consumption by freight transport,AR-G,SESCO,annual,kg,f13479f7-0577-37a1-b9ca-de84a59b27c4 -2021,Santiago del Estero,II.1.1,142.38504,TJ,N2O,3.9,kg/TJ,555.301656,Gas Oil combustion consumption by freight transport,AR-G,SESCO,annual,kg,f13479f7-0577-37a1-b9ca-de84a59b27c4 -2021,Tierra del Fuego,II.1.1,109.69644,TJ,CO2,74100.0,kg/TJ,8128506.204,Gas Oil combustion consumption by freight transport,AR-V,SESCO,annual,kg,76cbdca2-c8f8-30b4-b63f-30f7c4d4db54 -2021,Tierra del Fuego,II.1.1,109.69644,TJ,CH4,3.9,kg/TJ,427.81611599999997,Gas Oil combustion consumption by freight transport,AR-V,SESCO,annual,kg,11a99b5c-4209-34ad-a989-aeb855ec24b3 -2021,Tierra del Fuego,II.1.1,109.69644,TJ,N2O,3.9,kg/TJ,427.81611599999997,Gas Oil combustion consumption by freight transport,AR-V,SESCO,annual,kg,11a99b5c-4209-34ad-a989-aeb855ec24b3 -2021,Tucuman,II.1.1,155.24375999999998,TJ,CO2,74100.0,kg/TJ,11503562.615999999,Gas Oil combustion consumption by freight transport,AR-T,SESCO,annual,kg,1851cb3f-c3bb-3c60-8a79-f724e2713321 -2021,Tucuman,II.1.1,155.24375999999998,TJ,CH4,3.9,kg/TJ,605.450664,Gas Oil combustion consumption by freight transport,AR-T,SESCO,annual,kg,121159d7-ad4c-3d20-b03f-68b693be44ff -2021,Tucuman,II.1.1,155.24375999999998,TJ,N2O,3.9,kg/TJ,605.450664,Gas Oil combustion consumption by freight transport,AR-T,SESCO,annual,kg,121159d7-ad4c-3d20-b03f-68b693be44ff -2021,Buenos Aires,II.1.1,666.38572,TJ,CO2,73300.0,kg/TJ,48846073.276,Naphtha combustion consumption by freight transport,AR-B,SESCO,annual,kg,1e2c18b2-1786-3ad5-9094-265b1bc3cd24 -2021,Buenos Aires,II.1.1,666.38572,TJ,CH4,0.5,kg/TJ,333.19286,Naphtha combustion consumption by freight transport,AR-B,SESCO,annual,kg,e005e0ff-30be-3687-bffe-7240a344aa86 -2021,Buenos Aires,II.1.1,666.38572,TJ,N2O,2.0,kg/TJ,1332.77144,Naphtha combustion consumption by freight transport,AR-B,SESCO,annual,kg,ea583439-89da-3967-b9e6-2480c0031df5 -2021,Capital Federal,II.1.1,103.240445,TJ,CO2,73300.0,kg/TJ,7567524.6185,Naphtha combustion consumption by freight transport,AR-C,SESCO,annual,kg,25e0b9b5-f399-34a2-b76c-f65b8225d8b7 -2021,Capital Federal,II.1.1,103.240445,TJ,CH4,0.5,kg/TJ,51.6202225,Naphtha combustion consumption by freight transport,AR-C,SESCO,annual,kg,0ea7ab13-6a9c-3b80-aa27-e339988caad4 -2021,Capital Federal,II.1.1,103.240445,TJ,N2O,2.0,kg/TJ,206.48089,Naphtha combustion consumption by freight transport,AR-C,SESCO,annual,kg,b22c1b93-776d-326a-9795-5707d14650a1 -2021,Catamarca,II.1.1,3.56356,TJ,CO2,73300.0,kg/TJ,261208.94799999997,Naphtha combustion consumption by freight transport,AR-K,SESCO,annual,kg,9527784d-7077-3d47-92f2-e7aab9f4c17e -2021,Catamarca,II.1.1,3.56356,TJ,CH4,0.5,kg/TJ,1.78178,Naphtha combustion consumption by freight transport,AR-K,SESCO,annual,kg,aece5efd-e908-35d0-aef3-e136841988e2 -2021,Catamarca,II.1.1,3.56356,TJ,N2O,2.0,kg/TJ,7.12712,Naphtha combustion consumption by freight transport,AR-K,SESCO,annual,kg,d8a54c5e-48fa-39ea-9e79-1afee240f5da -2021,Chaco,II.1.1,15.727635,TJ,CO2,73300.0,kg/TJ,1152835.6454999999,Naphtha combustion consumption by freight transport,AR-H,SESCO,annual,kg,01b391ca-6904-32d5-ac83-0be3b2e88934 -2021,Chaco,II.1.1,15.727635,TJ,CH4,0.5,kg/TJ,7.8638175,Naphtha combustion consumption by freight transport,AR-H,SESCO,annual,kg,e780336d-f21a-3c10-87c2-aa8555bd5b2a -2021,Chaco,II.1.1,15.727635,TJ,N2O,2.0,kg/TJ,31.45527,Naphtha combustion consumption by freight transport,AR-H,SESCO,annual,kg,0ef6f148-384d-3b9e-a3a0-b340fef2d44f -2021,Chubut,II.1.1,21.963865,TJ,CO2,73300.0,kg/TJ,1609951.3044999999,Naphtha combustion consumption by freight transport,AR-U,SESCO,annual,kg,55f8af91-d13e-32f1-8ac0-c8787a9221ba -2021,Chubut,II.1.1,21.963865,TJ,CH4,0.5,kg/TJ,10.9819325,Naphtha combustion consumption by freight transport,AR-U,SESCO,annual,kg,40bf24fc-7620-3f27-b719-aab65f84328e -2021,Chubut,II.1.1,21.963865,TJ,N2O,2.0,kg/TJ,43.92773,Naphtha combustion consumption by freight transport,AR-U,SESCO,annual,kg,d3232231-edd5-3dd0-9109-b7d94a0d3c80 -2021,Corrientes,II.1.1,16.789849999999998,TJ,CO2,73300.0,kg/TJ,1230696.005,Naphtha combustion consumption by freight transport,AR-W,SESCO,annual,kg,994b3807-85ce-3bb8-bf85-53a3bae93659 -2021,Corrientes,II.1.1,16.789849999999998,TJ,CH4,0.5,kg/TJ,8.394924999999999,Naphtha combustion consumption by freight transport,AR-W,SESCO,annual,kg,884928eb-27f9-3f0a-8b4b-cbf058ffd635 -2021,Corrientes,II.1.1,16.789849999999998,TJ,N2O,2.0,kg/TJ,33.579699999999995,Naphtha combustion consumption by freight transport,AR-W,SESCO,annual,kg,8b3e716e-dfa7-3d7a-8e21-dbe743b9222a -2021,Córdoba,II.1.1,102.349555,TJ,CO2,73300.0,kg/TJ,7502222.381499999,Naphtha combustion consumption by freight transport,AR-X,SESCO,annual,kg,2a076792-5034-3b88-87fc-a9f62bb5a74b -2021,Córdoba,II.1.1,102.349555,TJ,CH4,0.5,kg/TJ,51.1747775,Naphtha combustion consumption by freight transport,AR-X,SESCO,annual,kg,e2e549b5-0763-3179-96d4-ae07eaf5e92f -2021,Córdoba,II.1.1,102.349555,TJ,N2O,2.0,kg/TJ,204.69911,Naphtha combustion consumption by freight transport,AR-X,SESCO,annual,kg,cc716da4-5481-3ef0-9d87-5159b4e53618 -2021,Entre Rios,II.1.1,35.532804999999996,TJ,CO2,73300.0,kg/TJ,2604554.6064999998,Naphtha combustion consumption by freight transport,AR-E,SESCO,annual,kg,02143aba-67ac-3816-b9e0-6cb51c2b2d36 -2021,Entre Rios,II.1.1,35.532804999999996,TJ,CH4,0.5,kg/TJ,17.766402499999998,Naphtha combustion consumption by freight transport,AR-E,SESCO,annual,kg,86fe00db-7f8f-3dbd-859a-d5af49047f15 -2021,Entre Rios,II.1.1,35.532804999999996,TJ,N2O,2.0,kg/TJ,71.06560999999999,Naphtha combustion consumption by freight transport,AR-E,SESCO,annual,kg,9d99e6a0-0ab8-330a-aedc-0661d3370dc2 -2021,Formosa,II.1.1,4.214595,TJ,CO2,73300.0,kg/TJ,308929.8135,Naphtha combustion consumption by freight transport,AR-P,SESCO,annual,kg,ba4250ac-0b94-3312-b8bd-a2cd051f8cb0 -2021,Formosa,II.1.1,4.214595,TJ,CH4,0.5,kg/TJ,2.1072975,Naphtha combustion consumption by freight transport,AR-P,SESCO,annual,kg,01393982-d863-3c89-8d6c-5184159f1c0e -2021,Formosa,II.1.1,4.214595,TJ,N2O,2.0,kg/TJ,8.42919,Naphtha combustion consumption by freight transport,AR-P,SESCO,annual,kg,1a3fb8f4-c7ed-3851-8b39-d045a17cc9f0 -2021,Jujuy,II.1.1,7.641095,TJ,CO2,73300.0,kg/TJ,560092.2635,Naphtha combustion consumption by freight transport,AR-Y,SESCO,annual,kg,7765f865-0a8b-3d76-b634-39cf56c65fc1 -2021,Jujuy,II.1.1,7.641095,TJ,CH4,0.5,kg/TJ,3.8205475,Naphtha combustion consumption by freight transport,AR-Y,SESCO,annual,kg,869c65b7-d3c0-383e-ac7d-5f5f53afb26b -2021,Jujuy,II.1.1,7.641095,TJ,N2O,2.0,kg/TJ,15.28219,Naphtha combustion consumption by freight transport,AR-Y,SESCO,annual,kg,69c88051-0e04-3ab8-ac1e-983e7dd0d99b -2021,La Pampa,II.1.1,10.75921,TJ,CO2,73300.0,kg/TJ,788650.093,Naphtha combustion consumption by freight transport,AR-L,SESCO,annual,kg,725af8fc-40b5-3685-b00a-93520e1d7cc4 -2021,La Pampa,II.1.1,10.75921,TJ,CH4,0.5,kg/TJ,5.379605,Naphtha combustion consumption by freight transport,AR-L,SESCO,annual,kg,158346c7-5322-319f-bb39-33eb765602d1 -2021,La Pampa,II.1.1,10.75921,TJ,N2O,2.0,kg/TJ,21.51842,Naphtha combustion consumption by freight transport,AR-L,SESCO,annual,kg,8b91a4f4-284a-3be9-9758-a5af5eedbd08 -2021,La Rioja,II.1.1,5.585195,TJ,CO2,73300.0,kg/TJ,409394.79349999997,Naphtha combustion consumption by freight transport,AR-F,SESCO,annual,kg,3d648bb4-1d78-3bd4-acbd-c33a5de0ba14 -2021,La Rioja,II.1.1,5.585195,TJ,CH4,0.5,kg/TJ,2.7925975,Naphtha combustion consumption by freight transport,AR-F,SESCO,annual,kg,8a9d527f-c7c5-35d0-9187-725c8c7d1faf -2021,La Rioja,II.1.1,5.585195,TJ,N2O,2.0,kg/TJ,11.17039,Naphtha combustion consumption by freight transport,AR-F,SESCO,annual,kg,5a7bcebe-023f-303e-8ebc-76dbbf4e0305 -2021,Mendoza,II.1.1,48.210854999999995,TJ,CO2,73300.0,kg/TJ,3533855.6714999997,Naphtha combustion consumption by freight transport,AR-M,SESCO,annual,kg,97efaf34-c698-3f9b-9f9a-c319df71e973 -2021,Mendoza,II.1.1,48.210854999999995,TJ,CH4,0.5,kg/TJ,24.105427499999998,Naphtha combustion consumption by freight transport,AR-M,SESCO,annual,kg,1b640258-f01d-3d74-918d-2b5d7fbb33f1 -2021,Mendoza,II.1.1,48.210854999999995,TJ,N2O,2.0,kg/TJ,96.42170999999999,Naphtha combustion consumption by freight transport,AR-M,SESCO,annual,kg,75301547-e4fb-3f56-884c-a31f9d613aba -2021,Misiones,II.1.1,17.303825,TJ,CO2,73300.0,kg/TJ,1268370.3725,Naphtha combustion consumption by freight transport,AR-N,SESCO,annual,kg,cf13d884-6ad2-32b9-9086-aa9b67569e17 -2021,Misiones,II.1.1,17.303825,TJ,CH4,0.5,kg/TJ,8.6519125,Naphtha combustion consumption by freight transport,AR-N,SESCO,annual,kg,8ab1f737-53a8-3a3e-b939-7ce39f91306f -2021,Misiones,II.1.1,17.303825,TJ,N2O,2.0,kg/TJ,34.60765,Naphtha combustion consumption by freight transport,AR-N,SESCO,annual,kg,f6d34def-26e9-32aa-9bdf-a05c95dcb717 -2021,Neuquén,II.1.1,17.852065,TJ,CO2,73300.0,kg/TJ,1308556.3645,Naphtha combustion consumption by freight transport,AR-Q,SESCO,annual,kg,88b12205-7c50-34c6-8fb8-5aba88c37843 -2021,Neuquén,II.1.1,17.852065,TJ,CH4,0.5,kg/TJ,8.9260325,Naphtha combustion consumption by freight transport,AR-Q,SESCO,annual,kg,05acadef-11ac-36ff-a2b6-77fabede6ef8 -2021,Neuquén,II.1.1,17.852065,TJ,N2O,2.0,kg/TJ,35.70413,Naphtha combustion consumption by freight transport,AR-Q,SESCO,annual,kg,f2fbc82c-6407-308a-98f0-335b53490fe9 -2021,Rio Negro,II.1.1,21.415625,TJ,CO2,73300.0,kg/TJ,1569765.3125,Naphtha combustion consumption by freight transport,AR-R,SESCO,annual,kg,e3bd8882-10c2-3ce4-87d7-95eb3071db39 -2021,Rio Negro,II.1.1,21.415625,TJ,CH4,0.5,kg/TJ,10.7078125,Naphtha combustion consumption by freight transport,AR-R,SESCO,annual,kg,3ac79b65-d14e-39d5-8fff-3861fbb85f6c -2021,Rio Negro,II.1.1,21.415625,TJ,N2O,2.0,kg/TJ,42.83125,Naphtha combustion consumption by freight transport,AR-R,SESCO,annual,kg,5882cd3d-58e1-3e2f-aab4-48fd959df0d3 -2021,Salta,II.1.1,28.200094999999997,TJ,CO2,73300.0,kg/TJ,2067066.9634999998,Naphtha combustion consumption by freight transport,AR-A,SESCO,annual,kg,61959c7b-368e-3a5c-a725-db110d2fae86 -2021,Salta,II.1.1,28.200094999999997,TJ,CH4,0.5,kg/TJ,14.100047499999999,Naphtha combustion consumption by freight transport,AR-A,SESCO,annual,kg,691df8d5-ed72-30fa-8cb8-e52504b204e6 -2021,Salta,II.1.1,28.200094999999997,TJ,N2O,2.0,kg/TJ,56.400189999999995,Naphtha combustion consumption by freight transport,AR-A,SESCO,annual,kg,bbec2b2c-5da7-39c8-9ced-6907825946e9 -2021,San Juan,II.1.1,11.51304,TJ,CO2,73300.0,kg/TJ,843905.832,Naphtha combustion consumption by freight transport,AR-J,SESCO,annual,kg,193a027d-e354-3d16-9361-990d2e2f30b6 -2021,San Juan,II.1.1,11.51304,TJ,CH4,0.5,kg/TJ,5.75652,Naphtha combustion consumption by freight transport,AR-J,SESCO,annual,kg,905e1eb2-6a22-306f-b831-ef0967bf533f -2021,San Juan,II.1.1,11.51304,TJ,N2O,2.0,kg/TJ,23.02608,Naphtha combustion consumption by freight transport,AR-J,SESCO,annual,kg,20c88ba3-728f-34d0-9303-d89a7ce84e37 -2021,San Luis,II.1.1,10.89627,TJ,CO2,73300.0,kg/TJ,798696.591,Naphtha combustion consumption by freight transport,AR-D,SESCO,annual,kg,4619a466-49c6-3ed3-844c-87a3c0d3d02f -2021,San Luis,II.1.1,10.89627,TJ,CH4,0.5,kg/TJ,5.448135,Naphtha combustion consumption by freight transport,AR-D,SESCO,annual,kg,1042c983-b809-3aaa-88e0-67a08bf36801 -2021,San Luis,II.1.1,10.89627,TJ,N2O,2.0,kg/TJ,21.79254,Naphtha combustion consumption by freight transport,AR-D,SESCO,annual,kg,07e7b561-f35a-3ae1-99e4-06eea8d8e34a -2021,Santa Cruz,II.1.1,11.99275,TJ,CO2,73300.0,kg/TJ,879068.575,Naphtha combustion consumption by freight transport,AR-Z,SESCO,annual,kg,119beef9-98d0-3b35-a9fd-565607f5babe -2021,Santa Cruz,II.1.1,11.99275,TJ,CH4,0.5,kg/TJ,5.996375,Naphtha combustion consumption by freight transport,AR-Z,SESCO,annual,kg,5cb666fb-5660-3ca4-aef7-94a964353df9 -2021,Santa Cruz,II.1.1,11.99275,TJ,N2O,2.0,kg/TJ,23.9855,Naphtha combustion consumption by freight transport,AR-Z,SESCO,annual,kg,e7c222b9-bf5c-3cb4-8431-e96b62818d7c -2021,Santa Fe,II.1.1,95.942,TJ,CO2,73300.0,kg/TJ,7032548.6,Naphtha combustion consumption by freight transport,AR-S,SESCO,annual,kg,eea53e88-39ef-322b-8419-e1d7469ef785 -2021,Santa Fe,II.1.1,95.942,TJ,CH4,0.5,kg/TJ,47.971,Naphtha combustion consumption by freight transport,AR-S,SESCO,annual,kg,7f1ecf25-df95-3d81-9d9a-0554e7316924 -2021,Santa Fe,II.1.1,95.942,TJ,N2O,2.0,kg/TJ,191.884,Naphtha combustion consumption by freight transport,AR-S,SESCO,annual,kg,b8b66917-859c-373b-9e1b-3e6c3b1756da -2021,Santiago del Estero,II.1.1,7.6068299999999995,TJ,CO2,73300.0,kg/TJ,557580.639,Naphtha combustion consumption by freight transport,AR-G,SESCO,annual,kg,653b75c3-9924-3a09-a438-7148d5ee9e8d -2021,Santiago del Estero,II.1.1,7.6068299999999995,TJ,CH4,0.5,kg/TJ,3.8034149999999998,Naphtha combustion consumption by freight transport,AR-G,SESCO,annual,kg,3ea5ff50-29a8-3a68-84dc-5662722c870d -2021,Santiago del Estero,II.1.1,7.6068299999999995,TJ,N2O,2.0,kg/TJ,15.213659999999999,Naphtha combustion consumption by freight transport,AR-G,SESCO,annual,kg,2786d114-c2d6-3f5a-b88e-5cc6f23a9421 -2021,Tierra del Fuego,II.1.1,16.001755,TJ,CO2,73300.0,kg/TJ,1172928.6415,Naphtha combustion consumption by freight transport,AR-V,SESCO,annual,kg,203f7269-fce8-373e-ba74-55bf567a8723 -2021,Tierra del Fuego,II.1.1,16.001755,TJ,CH4,0.5,kg/TJ,8.0008775,Naphtha combustion consumption by freight transport,AR-V,SESCO,annual,kg,4732060f-6d1e-3be1-802a-74ff6e9f5037 -2021,Tierra del Fuego,II.1.1,16.001755,TJ,N2O,2.0,kg/TJ,32.00351,Naphtha combustion consumption by freight transport,AR-V,SESCO,annual,kg,3629f579-95d7-38db-8e0a-c827b3927306 -2021,Tucuman,II.1.1,30.118934999999997,TJ,CO2,73300.0,kg/TJ,2207717.9354999997,Naphtha combustion consumption by freight transport,AR-T,SESCO,annual,kg,6ff037f0-77a8-3f54-91d5-c82676a065e4 -2021,Tucuman,II.1.1,30.118934999999997,TJ,CH4,0.5,kg/TJ,15.059467499999998,Naphtha combustion consumption by freight transport,AR-T,SESCO,annual,kg,443c065f-1aed-37fc-a077-0369e6b1552c -2021,Tucuman,II.1.1,30.118934999999997,TJ,N2O,2.0,kg/TJ,60.237869999999994,Naphtha combustion consumption by freight transport,AR-T,SESCO,annual,kg,199cb006-9cb3-39c1-9894-ba6169260e80 -2021,Buenos Aires,II.1.1,581.785435,TJ,CO2,73300.0,kg/TJ,42644872.3855,Naphtha combustion consumption by freight transport,AR-B,SESCO,annual,kg,457ba203-1abe-33c2-b21d-c1992d23cbd4 -2021,Buenos Aires,II.1.1,581.785435,TJ,CH4,0.5,kg/TJ,290.8927175,Naphtha combustion consumption by freight transport,AR-B,SESCO,annual,kg,c3b3c071-e4c5-3a16-a7ec-02d133c6b4c1 -2021,Buenos Aires,II.1.1,581.785435,TJ,N2O,2.0,kg/TJ,1163.57087,Naphtha combustion consumption by freight transport,AR-B,SESCO,annual,kg,8c1233be-187e-37cb-b815-83089f21a33d -2021,Capital Federal,II.1.1,117.59747999999999,TJ,CO2,73300.0,kg/TJ,8619895.284,Naphtha combustion consumption by freight transport,AR-C,SESCO,annual,kg,14bbc556-cefe-3807-958c-3678000594ae -2021,Capital Federal,II.1.1,117.59747999999999,TJ,CH4,0.5,kg/TJ,58.798739999999995,Naphtha combustion consumption by freight transport,AR-C,SESCO,annual,kg,9324c8d2-60ba-3bec-8668-8a8f1e6572db -2021,Capital Federal,II.1.1,117.59747999999999,TJ,N2O,2.0,kg/TJ,235.19495999999998,Naphtha combustion consumption by freight transport,AR-C,SESCO,annual,kg,a5045181-ddcd-373b-a761-072bd761d4c4 -2021,Catamarca,II.1.1,1.1650099999999999,TJ,CO2,73300.0,kg/TJ,85395.233,Naphtha combustion consumption by freight transport,AR-K,SESCO,annual,kg,20f0bd71-b837-3480-ab6d-87a68f2d7cea -2021,Catamarca,II.1.1,1.1650099999999999,TJ,CH4,0.5,kg/TJ,0.5825049999999999,Naphtha combustion consumption by freight transport,AR-K,SESCO,annual,kg,306fe611-9e78-3c74-ae30-04e76afa8c95 -2021,Catamarca,II.1.1,1.1650099999999999,TJ,N2O,2.0,kg/TJ,2.3300199999999998,Naphtha combustion consumption by freight transport,AR-K,SESCO,annual,kg,2c31cd85-5d0c-3412-80b9-be5b6998628a -2021,Chaco,II.1.1,12.575255,TJ,CO2,73300.0,kg/TJ,921766.1915000001,Naphtha combustion consumption by freight transport,AR-H,SESCO,annual,kg,dcea377a-ee86-3b87-aa36-1736cde2b090 -2021,Chaco,II.1.1,12.575255,TJ,CH4,0.5,kg/TJ,6.2876275,Naphtha combustion consumption by freight transport,AR-H,SESCO,annual,kg,54e02e96-9fb6-3828-9f70-444821635fc0 -2021,Chaco,II.1.1,12.575255,TJ,N2O,2.0,kg/TJ,25.15051,Naphtha combustion consumption by freight transport,AR-H,SESCO,annual,kg,f0cadb7d-9794-3669-a616-860fbad8f809 -2021,Chubut,II.1.1,15.042335,TJ,CO2,73300.0,kg/TJ,1102603.1554999999,Naphtha combustion consumption by freight transport,AR-U,SESCO,annual,kg,64e9c240-cb50-3047-968f-9a771dc812ff -2021,Chubut,II.1.1,15.042335,TJ,CH4,0.5,kg/TJ,7.5211675,Naphtha combustion consumption by freight transport,AR-U,SESCO,annual,kg,28c8df2e-05f7-3875-ad31-ba9d6c756773 -2021,Chubut,II.1.1,15.042335,TJ,N2O,2.0,kg/TJ,30.08467,Naphtha combustion consumption by freight transport,AR-U,SESCO,annual,kg,23fe444a-2cd0-36e7-81f2-808d1fb506f0 -2021,Corrientes,II.1.1,16.92691,TJ,CO2,73300.0,kg/TJ,1240742.503,Naphtha combustion consumption by freight transport,AR-W,SESCO,annual,kg,bbf63881-8518-3141-b563-a3ef6b5fdd35 -2021,Corrientes,II.1.1,16.92691,TJ,CH4,0.5,kg/TJ,8.463455,Naphtha combustion consumption by freight transport,AR-W,SESCO,annual,kg,f8b7fc67-bcf2-3aad-a649-811ffbfc9ef7 -2021,Corrientes,II.1.1,16.92691,TJ,N2O,2.0,kg/TJ,33.85382,Naphtha combustion consumption by freight transport,AR-W,SESCO,annual,kg,d5f73ecc-1bf4-3b3b-978d-a502a1620210 -2021,Córdoba,II.1.1,213.23109499999998,TJ,CO2,73300.0,kg/TJ,15629839.2635,Naphtha combustion consumption by freight transport,AR-X,SESCO,annual,kg,d5427c88-e500-3040-8ed4-7daeb57937cf -2021,Córdoba,II.1.1,213.23109499999998,TJ,CH4,0.5,kg/TJ,106.61554749999999,Naphtha combustion consumption by freight transport,AR-X,SESCO,annual,kg,5d5d2988-270c-3f53-8d89-3bfe58a1a789 -2021,Córdoba,II.1.1,213.23109499999998,TJ,N2O,2.0,kg/TJ,426.46218999999996,Naphtha combustion consumption by freight transport,AR-X,SESCO,annual,kg,c786e79a-bee2-30e4-a4ba-62c9c1cc4500 -2021,Entre Rios,II.1.1,29.639225,TJ,CO2,73300.0,kg/TJ,2172555.1925,Naphtha combustion consumption by freight transport,AR-E,SESCO,annual,kg,022767b5-6f18-3317-a226-8d7f0a97cc45 -2021,Entre Rios,II.1.1,29.639225,TJ,CH4,0.5,kg/TJ,14.8196125,Naphtha combustion consumption by freight transport,AR-E,SESCO,annual,kg,c184cc6b-df60-3f9a-983e-207ce036c28f -2021,Entre Rios,II.1.1,29.639225,TJ,N2O,2.0,kg/TJ,59.27845,Naphtha combustion consumption by freight transport,AR-E,SESCO,annual,kg,34f12108-59fb-3f7e-babb-28156d04c95c -2021,Formosa,II.1.1,1.9188399999999999,TJ,CO2,73300.0,kg/TJ,140650.97199999998,Naphtha combustion consumption by freight transport,AR-P,SESCO,annual,kg,bd50c442-b5d4-3e66-a6aa-1b78fde2c388 -2021,Formosa,II.1.1,1.9188399999999999,TJ,CH4,0.5,kg/TJ,0.9594199999999999,Naphtha combustion consumption by freight transport,AR-P,SESCO,annual,kg,3fa356ff-5f41-303d-97b8-bba460c7c35c -2021,Formosa,II.1.1,1.9188399999999999,TJ,N2O,2.0,kg/TJ,3.8376799999999998,Naphtha combustion consumption by freight transport,AR-P,SESCO,annual,kg,afdc4362-1c2f-332f-9881-fbbf7a701cef -2021,Jujuy,II.1.1,3.666355,TJ,CO2,73300.0,kg/TJ,268743.82149999996,Naphtha combustion consumption by freight transport,AR-Y,SESCO,annual,kg,f87a53a0-700a-30fe-988a-dd77b1f308c6 -2021,Jujuy,II.1.1,3.666355,TJ,CH4,0.5,kg/TJ,1.8331775,Naphtha combustion consumption by freight transport,AR-Y,SESCO,annual,kg,0ccd525d-fa86-30bb-acb8-4a2ad00ffc45 -2021,Jujuy,II.1.1,3.666355,TJ,N2O,2.0,kg/TJ,7.33271,Naphtha combustion consumption by freight transport,AR-Y,SESCO,annual,kg,bb688b29-b582-3442-a833-6fe166248235 -2021,La Pampa,II.1.1,11.30745,TJ,CO2,73300.0,kg/TJ,828836.085,Naphtha combustion consumption by freight transport,AR-L,SESCO,annual,kg,c9328a01-1552-3d6a-9a5a-553a34d717af -2021,La Pampa,II.1.1,11.30745,TJ,CH4,0.5,kg/TJ,5.653725,Naphtha combustion consumption by freight transport,AR-L,SESCO,annual,kg,c60159d9-2e7f-30b3-b455-7bfd3b4695c2 -2021,La Pampa,II.1.1,11.30745,TJ,N2O,2.0,kg/TJ,22.6149,Naphtha combustion consumption by freight transport,AR-L,SESCO,annual,kg,0963adda-14ee-3438-bd8d-d8407cb7331e -2021,La Rioja,II.1.1,3.4265,TJ,CO2,73300.0,kg/TJ,251162.44999999998,Naphtha combustion consumption by freight transport,AR-F,SESCO,annual,kg,28fd8d19-81e6-3ea7-a181-404d90d13e87 -2021,La Rioja,II.1.1,3.4265,TJ,CH4,0.5,kg/TJ,1.71325,Naphtha combustion consumption by freight transport,AR-F,SESCO,annual,kg,57ffe93d-06c9-37e4-8662-d0425a8cec5b -2021,La Rioja,II.1.1,3.4265,TJ,N2O,2.0,kg/TJ,6.853,Naphtha combustion consumption by freight transport,AR-F,SESCO,annual,kg,49e41b85-9b68-3d66-9d0e-344470ef4b2a -2021,Mendoza,II.1.1,79.04935499999999,TJ,CO2,73300.0,kg/TJ,5794317.721499999,Naphtha combustion consumption by freight transport,AR-M,SESCO,annual,kg,739d60a8-31ee-3946-b380-50f43bfcec90 -2021,Mendoza,II.1.1,79.04935499999999,TJ,CH4,0.5,kg/TJ,39.524677499999996,Naphtha combustion consumption by freight transport,AR-M,SESCO,annual,kg,5547f560-88d0-33bb-9c6f-3f0b46e72a34 -2021,Mendoza,II.1.1,79.04935499999999,TJ,N2O,2.0,kg/TJ,158.09870999999998,Naphtha combustion consumption by freight transport,AR-M,SESCO,annual,kg,8df80249-50b4-3ac6-9eef-dd100b09f3c4 -2021,Misiones,II.1.1,13.98012,TJ,CO2,73300.0,kg/TJ,1024742.796,Naphtha combustion consumption by freight transport,AR-N,SESCO,annual,kg,618be3ab-1a18-38f6-8cab-3d478bb6ac6a -2021,Misiones,II.1.1,13.98012,TJ,CH4,0.5,kg/TJ,6.99006,Naphtha combustion consumption by freight transport,AR-N,SESCO,annual,kg,0a7ef94e-d586-3089-9bf8-66cc55442dc4 -2021,Misiones,II.1.1,13.98012,TJ,N2O,2.0,kg/TJ,27.96024,Naphtha combustion consumption by freight transport,AR-N,SESCO,annual,kg,24e36c32-0bed-3b31-ae05-900b497f9c0b -2021,Neuquén,II.1.1,37.657235,TJ,CO2,73300.0,kg/TJ,2760275.3255,Naphtha combustion consumption by freight transport,AR-Q,SESCO,annual,kg,e8c974ee-d811-3349-82b3-b184a3bd8bfe -2021,Neuquén,II.1.1,37.657235,TJ,CH4,0.5,kg/TJ,18.8286175,Naphtha combustion consumption by freight transport,AR-Q,SESCO,annual,kg,095d07bc-d2d6-3233-bb85-061cc79ad1b9 -2021,Neuquén,II.1.1,37.657235,TJ,N2O,2.0,kg/TJ,75.31447,Naphtha combustion consumption by freight transport,AR-Q,SESCO,annual,kg,6c4b90a4-739a-3fc8-b122-bf12c72c68e4 -2021,Rio Negro,II.1.1,47.35423,TJ,CO2,73300.0,kg/TJ,3471065.059,Naphtha combustion consumption by freight transport,AR-R,SESCO,annual,kg,02680201-fcd3-3d11-bb77-e618b699e03a -2021,Rio Negro,II.1.1,47.35423,TJ,CH4,0.5,kg/TJ,23.677115,Naphtha combustion consumption by freight transport,AR-R,SESCO,annual,kg,86017596-f0d0-31c2-b42c-23899d8d34a2 -2021,Rio Negro,II.1.1,47.35423,TJ,N2O,2.0,kg/TJ,94.70846,Naphtha combustion consumption by freight transport,AR-R,SESCO,annual,kg,2ef524a2-d4f4-3d9a-a634-7c97e5afbe82 -2021,Salta,II.1.1,21.312829999999998,TJ,CO2,73300.0,kg/TJ,1562230.4389999998,Naphtha combustion consumption by freight transport,AR-A,SESCO,annual,kg,1e166c56-cd1f-3a1f-9f66-2b6c86f336c5 -2021,Salta,II.1.1,21.312829999999998,TJ,CH4,0.5,kg/TJ,10.656414999999999,Naphtha combustion consumption by freight transport,AR-A,SESCO,annual,kg,689d739d-d50e-39c0-8936-f8921985ff7c -2021,Salta,II.1.1,21.312829999999998,TJ,N2O,2.0,kg/TJ,42.625659999999996,Naphtha combustion consumption by freight transport,AR-A,SESCO,annual,kg,13d0990f-4d01-3cb9-8b96-41d88fa250b8 -2021,San Juan,II.1.1,6.37329,TJ,CO2,73300.0,kg/TJ,467162.157,Naphtha combustion consumption by freight transport,AR-J,SESCO,annual,kg,2f5f289a-8f59-344a-bf3a-7975676e7ab9 -2021,San Juan,II.1.1,6.37329,TJ,CH4,0.5,kg/TJ,3.186645,Naphtha combustion consumption by freight transport,AR-J,SESCO,annual,kg,de33ebc8-ffd7-37ee-b97e-50a26a249834 -2021,San Juan,II.1.1,6.37329,TJ,N2O,2.0,kg/TJ,12.74658,Naphtha combustion consumption by freight transport,AR-J,SESCO,annual,kg,e9a544c0-0385-3057-bde5-6cd519f7e806 -2021,San Luis,II.1.1,8.052275,TJ,CO2,73300.0,kg/TJ,590231.7575,Naphtha combustion consumption by freight transport,AR-D,SESCO,annual,kg,0feca5e7-a04f-3a3d-ac5e-c24bac0cdfb5 -2021,San Luis,II.1.1,8.052275,TJ,CH4,0.5,kg/TJ,4.0261375,Naphtha combustion consumption by freight transport,AR-D,SESCO,annual,kg,c6ded1f8-1ac9-32cb-b635-8974a7f4ec35 -2021,San Luis,II.1.1,8.052275,TJ,N2O,2.0,kg/TJ,16.10455,Naphtha combustion consumption by freight transport,AR-D,SESCO,annual,kg,16a4ae47-e45b-372c-ab3e-2affb19e9c4e -2021,Santa Cruz,II.1.1,5.208279999999999,TJ,CO2,73300.0,kg/TJ,381766.92399999994,Naphtha combustion consumption by freight transport,AR-Z,SESCO,annual,kg,90f36f08-333a-36eb-834a-4a281d87ca3b -2021,Santa Cruz,II.1.1,5.208279999999999,TJ,CH4,0.5,kg/TJ,2.6041399999999997,Naphtha combustion consumption by freight transport,AR-Z,SESCO,annual,kg,1cba1a3f-60af-3015-87a6-f44c67901537 -2021,Santa Cruz,II.1.1,5.208279999999999,TJ,N2O,2.0,kg/TJ,10.416559999999999,Naphtha combustion consumption by freight transport,AR-Z,SESCO,annual,kg,c400f2dc-0a3c-39f1-94a7-5523321d1e9f -2021,Santa Fe,II.1.1,95.942,TJ,CO2,73300.0,kg/TJ,7032548.6,Naphtha combustion consumption by freight transport,AR-S,SESCO,annual,kg,eea53e88-39ef-322b-8419-e1d7469ef785 -2021,Santa Fe,II.1.1,95.942,TJ,CH4,0.5,kg/TJ,47.971,Naphtha combustion consumption by freight transport,AR-S,SESCO,annual,kg,7f1ecf25-df95-3d81-9d9a-0554e7316924 -2021,Santa Fe,II.1.1,95.942,TJ,N2O,2.0,kg/TJ,191.884,Naphtha combustion consumption by freight transport,AR-S,SESCO,annual,kg,b8b66917-859c-373b-9e1b-3e6c3b1756da -2021,Santiago del Estero,II.1.1,3.9062099999999997,TJ,CO2,73300.0,kg/TJ,286325.19299999997,Naphtha combustion consumption by freight transport,AR-G,SESCO,annual,kg,495f2462-c1b4-3623-be48-06ad3e9e90d8 -2021,Santiago del Estero,II.1.1,3.9062099999999997,TJ,CH4,0.5,kg/TJ,1.9531049999999999,Naphtha combustion consumption by freight transport,AR-G,SESCO,annual,kg,0a23b614-4648-3f66-89f9-a5b3cc95f395 -2021,Santiago del Estero,II.1.1,3.9062099999999997,TJ,N2O,2.0,kg/TJ,7.8124199999999995,Naphtha combustion consumption by freight transport,AR-G,SESCO,annual,kg,371033dc-6cbb-3eea-97c9-c1751476c032 -2021,Tierra del Fuego,II.1.1,7.915215,TJ,CO2,73300.0,kg/TJ,580185.2595,Naphtha combustion consumption by freight transport,AR-V,SESCO,annual,kg,4854ab77-8bd0-3b42-9ce0-95cd27cdc387 -2021,Tierra del Fuego,II.1.1,7.915215,TJ,CH4,0.5,kg/TJ,3.9576075,Naphtha combustion consumption by freight transport,AR-V,SESCO,annual,kg,9008e2d7-44cc-3b55-85cc-578d1dfc91d0 -2021,Tierra del Fuego,II.1.1,7.915215,TJ,N2O,2.0,kg/TJ,15.83043,Naphtha combustion consumption by freight transport,AR-V,SESCO,annual,kg,308a5f6e-e85e-38d2-8516-10914148031c -2021,Tucuman,II.1.1,14.52836,TJ,CO2,73300.0,kg/TJ,1064928.788,Naphtha combustion consumption by freight transport,AR-T,SESCO,annual,kg,d8aa5123-98b4-3906-ade5-0ba30612352c -2021,Tucuman,II.1.1,14.52836,TJ,CH4,0.5,kg/TJ,7.26418,Naphtha combustion consumption by freight transport,AR-T,SESCO,annual,kg,89861fd0-fd5b-3724-928e-716e2cb14534 -2021,Tucuman,II.1.1,14.52836,TJ,N2O,2.0,kg/TJ,29.05672,Naphtha combustion consumption by freight transport,AR-T,SESCO,annual,kg,50121f45-270a-39b3-adde-ed0d741496bb -2021,Buenos Aires,II.1.1,6476.53272,TJ,CO2,74100.0,kg/TJ,479911074.552,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,9b07f1ef-de2b-385b-bcf0-90e06a4ce8fe -2021,Buenos Aires,II.1.1,6476.53272,TJ,CH4,3.9,kg/TJ,25258.477608,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,b515c49d-eb27-3806-bbe2-4715453dd0a0 -2021,Buenos Aires,II.1.1,6476.53272,TJ,N2O,3.9,kg/TJ,25258.477608,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,b515c49d-eb27-3806-bbe2-4715453dd0a0 -2021,Capital Federal,II.1.1,1002.47448,TJ,CO2,74100.0,kg/TJ,74283358.968,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,e2d05f9f-c733-3837-b086-c30191974373 -2021,Capital Federal,II.1.1,1002.47448,TJ,CH4,3.9,kg/TJ,3909.650472,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,39774e48-9bbb-3120-9be2-a9a6be417b60 -2021,Capital Federal,II.1.1,1002.47448,TJ,N2O,3.9,kg/TJ,3909.650472,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,39774e48-9bbb-3120-9be2-a9a6be417b60 -2021,Catamarca,II.1.1,45.76404,TJ,CO2,74100.0,kg/TJ,3391115.364,Gas Oil combustion consumption by public passenger transport,AR-K,SESCO,annual,kg,4523dc5d-d822-32bd-beda-c5124ac757b9 -2021,Catamarca,II.1.1,45.76404,TJ,CH4,3.9,kg/TJ,178.479756,Gas Oil combustion consumption by public passenger transport,AR-K,SESCO,annual,kg,138ce513-1b1f-3b95-8bd5-bdbb6e946979 -2021,Catamarca,II.1.1,45.76404,TJ,N2O,3.9,kg/TJ,178.479756,Gas Oil combustion consumption by public passenger transport,AR-K,SESCO,annual,kg,138ce513-1b1f-3b95-8bd5-bdbb6e946979 -2021,Chaco,II.1.1,72.27611999999999,TJ,CO2,74100.0,kg/TJ,5355660.492,Gas Oil combustion consumption by public passenger transport,AR-H,SESCO,annual,kg,28954c0c-905a-346c-bb94-61451106ab61 -2021,Chaco,II.1.1,72.27611999999999,TJ,CH4,3.9,kg/TJ,281.87686799999994,Gas Oil combustion consumption by public passenger transport,AR-H,SESCO,annual,kg,c81d0206-e1c5-33fd-b3a5-23af6edf11f9 -2021,Chaco,II.1.1,72.27611999999999,TJ,N2O,3.9,kg/TJ,281.87686799999994,Gas Oil combustion consumption by public passenger transport,AR-H,SESCO,annual,kg,c81d0206-e1c5-33fd-b3a5-23af6edf11f9 -2021,Chubut,II.1.1,17.5182,TJ,CO2,74100.0,kg/TJ,1298098.62,Gas Oil combustion consumption by public passenger transport,AR-U,SESCO,annual,kg,e98b7f4c-cb45-36d0-8fae-0e7518ac0f33 -2021,Chubut,II.1.1,17.5182,TJ,CH4,3.9,kg/TJ,68.32098,Gas Oil combustion consumption by public passenger transport,AR-U,SESCO,annual,kg,d3a4e832-0eee-3319-9c87-6ee851567652 -2021,Chubut,II.1.1,17.5182,TJ,N2O,3.9,kg/TJ,68.32098,Gas Oil combustion consumption by public passenger transport,AR-U,SESCO,annual,kg,d3a4e832-0eee-3319-9c87-6ee851567652 -2021,Corrientes,II.1.1,58.117079999999994,TJ,CO2,74100.0,kg/TJ,4306475.628,Gas Oil combustion consumption by public passenger transport,AR-W,SESCO,annual,kg,d83cc8e8-711e-3746-9c1b-6faf4d86a8c4 -2021,Corrientes,II.1.1,58.117079999999994,TJ,CH4,3.9,kg/TJ,226.65661199999997,Gas Oil combustion consumption by public passenger transport,AR-W,SESCO,annual,kg,c33c4e55-4ea6-3570-a29f-d668bf3df68c -2021,Corrientes,II.1.1,58.117079999999994,TJ,N2O,3.9,kg/TJ,226.65661199999997,Gas Oil combustion consumption by public passenger transport,AR-W,SESCO,annual,kg,c33c4e55-4ea6-3570-a29f-d668bf3df68c -2021,Córdoba,II.1.1,482.9244,TJ,CO2,74100.0,kg/TJ,35784698.04,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,b6cb226c-98f9-34dc-a627-f9fe313cefbe -2021,Córdoba,II.1.1,482.9244,TJ,CH4,3.9,kg/TJ,1883.40516,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,9b647cb0-81af-3e7e-9a0c-92aab65008d6 -2021,Córdoba,II.1.1,482.9244,TJ,N2O,3.9,kg/TJ,1883.40516,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,9b647cb0-81af-3e7e-9a0c-92aab65008d6 -2021,Entre Rios,II.1.1,131.4768,TJ,CO2,74100.0,kg/TJ,9742430.879999999,Gas Oil combustion consumption by public passenger transport,AR-E,SESCO,annual,kg,40c8309d-106d-3fd9-bd2f-23a3dfe696ab -2021,Entre Rios,II.1.1,131.4768,TJ,CH4,3.9,kg/TJ,512.75952,Gas Oil combustion consumption by public passenger transport,AR-E,SESCO,annual,kg,bd0ebf9b-0d8e-3d86-8ff7-6ca49491a77c -2021,Entre Rios,II.1.1,131.4768,TJ,N2O,3.9,kg/TJ,512.75952,Gas Oil combustion consumption by public passenger transport,AR-E,SESCO,annual,kg,bd0ebf9b-0d8e-3d86-8ff7-6ca49491a77c -2021,Formosa,II.1.1,1.4447999999999999,TJ,CO2,74100.0,kg/TJ,107059.68,Gas Oil combustion consumption by public passenger transport,AR-P,SESCO,annual,kg,de7c6587-4e3d-37a4-bd5c-2c2305e01016 -2021,Formosa,II.1.1,1.4447999999999999,TJ,CH4,3.9,kg/TJ,5.63472,Gas Oil combustion consumption by public passenger transport,AR-P,SESCO,annual,kg,77c7a571-2292-3916-afc6-9aadbce7119e -2021,Formosa,II.1.1,1.4447999999999999,TJ,N2O,3.9,kg/TJ,5.63472,Gas Oil combustion consumption by public passenger transport,AR-P,SESCO,annual,kg,77c7a571-2292-3916-afc6-9aadbce7119e -2021,Jujuy,II.1.1,154.23239999999998,TJ,CO2,74100.0,kg/TJ,11428620.839999998,Gas Oil combustion consumption by public passenger transport,AR-Y,SESCO,annual,kg,dd07ae24-5236-3e8b-ad8e-aad374fb5c0e -2021,Jujuy,II.1.1,154.23239999999998,TJ,CH4,3.9,kg/TJ,601.50636,Gas Oil combustion consumption by public passenger transport,AR-Y,SESCO,annual,kg,b65b2cd8-b75b-3254-9c63-d33f9f91e5e0 -2021,Jujuy,II.1.1,154.23239999999998,TJ,N2O,3.9,kg/TJ,601.50636,Gas Oil combustion consumption by public passenger transport,AR-Y,SESCO,annual,kg,b65b2cd8-b75b-3254-9c63-d33f9f91e5e0 -2021,Mendoza,II.1.1,691.48128,TJ,CO2,74100.0,kg/TJ,51238762.848,Gas Oil combustion consumption by public passenger transport,AR-M,SESCO,annual,kg,bc963fa9-fc30-3d65-b7cf-26309a2ee4bd -2021,Mendoza,II.1.1,691.48128,TJ,CH4,3.9,kg/TJ,2696.7769919999996,Gas Oil combustion consumption by public passenger transport,AR-M,SESCO,annual,kg,f0490b93-705c-361d-af30-07058073e354 -2021,Mendoza,II.1.1,691.48128,TJ,N2O,3.9,kg/TJ,2696.7769919999996,Gas Oil combustion consumption by public passenger transport,AR-M,SESCO,annual,kg,f0490b93-705c-361d-af30-07058073e354 -2021,Misiones,II.1.1,303.11904,TJ,CO2,74100.0,kg/TJ,22461120.864,Gas Oil combustion consumption by public passenger transport,AR-N,SESCO,annual,kg,ac879865-7757-3bab-a652-edce5d021f80 -2021,Misiones,II.1.1,303.11904,TJ,CH4,3.9,kg/TJ,1182.164256,Gas Oil combustion consumption by public passenger transport,AR-N,SESCO,annual,kg,53411895-8d85-343d-b4f0-9c8f3d2820b1 -2021,Misiones,II.1.1,303.11904,TJ,N2O,3.9,kg/TJ,1182.164256,Gas Oil combustion consumption by public passenger transport,AR-N,SESCO,annual,kg,53411895-8d85-343d-b4f0-9c8f3d2820b1 -2021,Neuquén,II.1.1,26.62044,TJ,CO2,74100.0,kg/TJ,1972574.6039999998,Gas Oil combustion consumption by public passenger transport,AR-Q,SESCO,annual,kg,356a3c1d-0cfd-3ddd-aa39-a3b1e56779e4 -2021,Neuquén,II.1.1,26.62044,TJ,CH4,3.9,kg/TJ,103.81971599999999,Gas Oil combustion consumption by public passenger transport,AR-Q,SESCO,annual,kg,e04c4681-02a7-34b6-b029-ed49b2aa973f -2021,Neuquén,II.1.1,26.62044,TJ,N2O,3.9,kg/TJ,103.81971599999999,Gas Oil combustion consumption by public passenger transport,AR-Q,SESCO,annual,kg,e04c4681-02a7-34b6-b029-ed49b2aa973f -2021,Rio Negro,II.1.1,15.60384,TJ,CO2,74100.0,kg/TJ,1156244.544,Gas Oil combustion consumption by public passenger transport,AR-R,SESCO,annual,kg,17a4f9e4-d5c4-327c-baae-c7c98e04921b -2021,Rio Negro,II.1.1,15.60384,TJ,CH4,3.9,kg/TJ,60.854976,Gas Oil combustion consumption by public passenger transport,AR-R,SESCO,annual,kg,17ecd8c0-5b5d-3fca-9f74-cae0cbf16c4f -2021,Rio Negro,II.1.1,15.60384,TJ,N2O,3.9,kg/TJ,60.854976,Gas Oil combustion consumption by public passenger transport,AR-R,SESCO,annual,kg,17ecd8c0-5b5d-3fca-9f74-cae0cbf16c4f -2021,Salta,II.1.1,175.75992,TJ,CO2,74100.0,kg/TJ,13023810.071999999,Gas Oil combustion consumption by public passenger transport,AR-A,SESCO,annual,kg,b74c50df-a250-38ab-9712-da7427b78dab -2021,Salta,II.1.1,175.75992,TJ,CH4,3.9,kg/TJ,685.4636879999999,Gas Oil combustion consumption by public passenger transport,AR-A,SESCO,annual,kg,b29d53a8-8318-3ba3-9300-4dd2f4bc5836 -2021,Salta,II.1.1,175.75992,TJ,N2O,3.9,kg/TJ,685.4636879999999,Gas Oil combustion consumption by public passenger transport,AR-A,SESCO,annual,kg,b29d53a8-8318-3ba3-9300-4dd2f4bc5836 -2021,San Juan,II.1.1,36.58956,TJ,CO2,74100.0,kg/TJ,2711286.3959999997,Gas Oil combustion consumption by public passenger transport,AR-J,SESCO,annual,kg,8126fea2-3f62-3fab-997a-c7c2bde41f00 -2021,San Juan,II.1.1,36.58956,TJ,CH4,3.9,kg/TJ,142.699284,Gas Oil combustion consumption by public passenger transport,AR-J,SESCO,annual,kg,d9e7f6bf-d2ce-3291-bc39-4ed9dae8cae9 -2021,San Juan,II.1.1,36.58956,TJ,N2O,3.9,kg/TJ,142.699284,Gas Oil combustion consumption by public passenger transport,AR-J,SESCO,annual,kg,d9e7f6bf-d2ce-3291-bc39-4ed9dae8cae9 -2021,Santa Fe,II.1.1,471.04091999999997,TJ,CO2,74100.0,kg/TJ,34904132.172,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,cc83a842-3ffa-36d9-9689-fd3e0ef1dfb4 -2021,Santa Fe,II.1.1,471.04091999999997,TJ,CH4,3.9,kg/TJ,1837.0595879999998,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,a299960c-01e2-3101-ae2f-33bfacefc2bb -2021,Santa Fe,II.1.1,471.04091999999997,TJ,N2O,3.9,kg/TJ,1837.0595879999998,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,a299960c-01e2-3101-ae2f-33bfacefc2bb -2021,Tierra del Fuego,II.1.1,6.321,TJ,CO2,74100.0,kg/TJ,468386.1,Gas Oil combustion consumption by public passenger transport,AR-V,SESCO,annual,kg,0cb7c4c3-21df-306f-9250-e5cbe049a17c -2021,Tierra del Fuego,II.1.1,6.321,TJ,CH4,3.9,kg/TJ,24.651899999999998,Gas Oil combustion consumption by public passenger transport,AR-V,SESCO,annual,kg,b157c2e9-54b2-3dcb-82bf-6a1dc9a7a249 -2021,Tierra del Fuego,II.1.1,6.321,TJ,N2O,3.9,kg/TJ,24.651899999999998,Gas Oil combustion consumption by public passenger transport,AR-V,SESCO,annual,kg,b157c2e9-54b2-3dcb-82bf-6a1dc9a7a249 -2021,Tucuman,II.1.1,38.829,TJ,CO2,74100.0,kg/TJ,2877228.9,Gas Oil combustion consumption by public passenger transport,AR-T,SESCO,annual,kg,4ec928d5-7a96-3c04-a605-3bc91c3933f8 -2021,Tucuman,II.1.1,38.829,TJ,CH4,3.9,kg/TJ,151.4331,Gas Oil combustion consumption by public passenger transport,AR-T,SESCO,annual,kg,a22d6acf-6a82-32d5-9ae3-d72d5ce7deda -2021,Tucuman,II.1.1,38.829,TJ,N2O,3.9,kg/TJ,151.4331,Gas Oil combustion consumption by public passenger transport,AR-T,SESCO,annual,kg,a22d6acf-6a82-32d5-9ae3-d72d5ce7deda -2021,Buenos Aires,II.1.1,3687.99648,TJ,CO2,74100.0,kg/TJ,273280539.168,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,3a1be204-7b49-3a36-aae0-3bfca96351f6 -2021,Buenos Aires,II.1.1,3687.99648,TJ,CH4,3.9,kg/TJ,14383.186271999999,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,12676e90-8781-375f-ac66-3abef1bfa206 -2021,Buenos Aires,II.1.1,3687.99648,TJ,N2O,3.9,kg/TJ,14383.186271999999,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,12676e90-8781-375f-ac66-3abef1bfa206 -2021,Capital Federal,II.1.1,710.4803999999999,TJ,CO2,74100.0,kg/TJ,52646597.63999999,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,8e2e4555-f3bb-384d-90bc-b9eb6cc8cf60 -2021,Capital Federal,II.1.1,710.4803999999999,TJ,CH4,3.9,kg/TJ,2770.8735599999995,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,94dfda24-7777-3aec-888b-42d0e2f99b81 -2021,Capital Federal,II.1.1,710.4803999999999,TJ,N2O,3.9,kg/TJ,2770.8735599999995,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,94dfda24-7777-3aec-888b-42d0e2f99b81 -2021,Chaco,II.1.1,11.738999999999999,TJ,CO2,74100.0,kg/TJ,869859.8999999999,Gas Oil combustion consumption by public passenger transport,AR-H,SESCO,annual,kg,ed3065a7-69f7-3f4e-ba87-983816f649d0 -2021,Chaco,II.1.1,11.738999999999999,TJ,CH4,3.9,kg/TJ,45.78209999999999,Gas Oil combustion consumption by public passenger transport,AR-H,SESCO,annual,kg,aa35a296-575a-3a7b-adb3-cfa66608268f -2021,Chaco,II.1.1,11.738999999999999,TJ,N2O,3.9,kg/TJ,45.78209999999999,Gas Oil combustion consumption by public passenger transport,AR-H,SESCO,annual,kg,aa35a296-575a-3a7b-adb3-cfa66608268f -2021,Chubut,II.1.1,52.048919999999995,TJ,CO2,74100.0,kg/TJ,3856824.9719999996,Gas Oil combustion consumption by public passenger transport,AR-U,SESCO,annual,kg,18838868-8c4a-3d8a-9c7e-b5843afd142e -2021,Chubut,II.1.1,52.048919999999995,TJ,CH4,3.9,kg/TJ,202.99078799999998,Gas Oil combustion consumption by public passenger transport,AR-U,SESCO,annual,kg,bd52f808-9d73-31c7-932b-bac13cceece0 -2021,Chubut,II.1.1,52.048919999999995,TJ,N2O,3.9,kg/TJ,202.99078799999998,Gas Oil combustion consumption by public passenger transport,AR-U,SESCO,annual,kg,bd52f808-9d73-31c7-932b-bac13cceece0 -2021,Corrientes,II.1.1,33.66384,TJ,CO2,74100.0,kg/TJ,2494490.544,Gas Oil combustion consumption by public passenger transport,AR-W,SESCO,annual,kg,4d593498-da44-359f-addc-1c18d7d4b38d -2021,Corrientes,II.1.1,33.66384,TJ,CH4,3.9,kg/TJ,131.288976,Gas Oil combustion consumption by public passenger transport,AR-W,SESCO,annual,kg,33cfb358-ad3f-3f30-afcd-37c93e099e24 -2021,Corrientes,II.1.1,33.66384,TJ,N2O,3.9,kg/TJ,131.288976,Gas Oil combustion consumption by public passenger transport,AR-W,SESCO,annual,kg,33cfb358-ad3f-3f30-afcd-37c93e099e24 -2021,Córdoba,II.1.1,181.10567999999998,TJ,CO2,74100.0,kg/TJ,13419930.887999998,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,5eabc383-1436-378b-b18b-da18a642fb5c -2021,Córdoba,II.1.1,181.10567999999998,TJ,CH4,3.9,kg/TJ,706.3121519999999,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,e86848b7-261f-3ac5-8b58-3734d0448624 -2021,Córdoba,II.1.1,181.10567999999998,TJ,N2O,3.9,kg/TJ,706.3121519999999,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,e86848b7-261f-3ac5-8b58-3734d0448624 -2021,Entre Rios,II.1.1,31.027079999999998,TJ,CO2,74100.0,kg/TJ,2299106.628,Gas Oil combustion consumption by public passenger transport,AR-E,SESCO,annual,kg,6b7a148b-825a-3bb7-a875-758e7377530e -2021,Entre Rios,II.1.1,31.027079999999998,TJ,CH4,3.9,kg/TJ,121.00561199999999,Gas Oil combustion consumption by public passenger transport,AR-E,SESCO,annual,kg,996bed3b-cdca-39b9-8639-00f93f8d24d7 -2021,Entre Rios,II.1.1,31.027079999999998,TJ,N2O,3.9,kg/TJ,121.00561199999999,Gas Oil combustion consumption by public passenger transport,AR-E,SESCO,annual,kg,996bed3b-cdca-39b9-8639-00f93f8d24d7 -2021,Mendoza,II.1.1,163.94868,TJ,CO2,74100.0,kg/TJ,12148597.188,Gas Oil combustion consumption by public passenger transport,AR-M,SESCO,annual,kg,9d7861b0-b146-321d-aaf6-9a1185481d12 -2021,Mendoza,II.1.1,163.94868,TJ,CH4,3.9,kg/TJ,639.399852,Gas Oil combustion consumption by public passenger transport,AR-M,SESCO,annual,kg,16956f5e-5c93-37dc-8f46-eb6910f329df -2021,Mendoza,II.1.1,163.94868,TJ,N2O,3.9,kg/TJ,639.399852,Gas Oil combustion consumption by public passenger transport,AR-M,SESCO,annual,kg,16956f5e-5c93-37dc-8f46-eb6910f329df -2021,Misiones,II.1.1,59.45352,TJ,CO2,74100.0,kg/TJ,4405505.8319999995,Gas Oil combustion consumption by public passenger transport,AR-N,SESCO,annual,kg,17309640-4b25-3e98-9c7f-d925259ef942 -2021,Misiones,II.1.1,59.45352,TJ,CH4,3.9,kg/TJ,231.86872799999998,Gas Oil combustion consumption by public passenger transport,AR-N,SESCO,annual,kg,b8ece898-0ec3-3476-bb63-21f12e52d5a2 -2021,Misiones,II.1.1,59.45352,TJ,N2O,3.9,kg/TJ,231.86872799999998,Gas Oil combustion consumption by public passenger transport,AR-N,SESCO,annual,kg,b8ece898-0ec3-3476-bb63-21f12e52d5a2 -2021,Neuquén,II.1.1,12.20856,TJ,CO2,74100.0,kg/TJ,904654.296,Gas Oil combustion consumption by public passenger transport,AR-Q,SESCO,annual,kg,c646b7b9-c11f-3190-89a0-44cab804b22a -2021,Neuquén,II.1.1,12.20856,TJ,CH4,3.9,kg/TJ,47.613384,Gas Oil combustion consumption by public passenger transport,AR-Q,SESCO,annual,kg,e1dc3fb3-f30d-3db5-870b-2454d64ae3d9 -2021,Neuquén,II.1.1,12.20856,TJ,N2O,3.9,kg/TJ,47.613384,Gas Oil combustion consumption by public passenger transport,AR-Q,SESCO,annual,kg,e1dc3fb3-f30d-3db5-870b-2454d64ae3d9 -2021,Rio Negro,II.1.1,140.83187999999998,TJ,CO2,74100.0,kg/TJ,10435642.307999998,Gas Oil combustion consumption by public passenger transport,AR-R,SESCO,annual,kg,0559d741-53ef-3684-b7ba-f1601511dd36 -2021,Rio Negro,II.1.1,140.83187999999998,TJ,CH4,3.9,kg/TJ,549.2443319999999,Gas Oil combustion consumption by public passenger transport,AR-R,SESCO,annual,kg,be5b77f4-1162-3bf7-ad96-e529cd0d3e5a -2021,Rio Negro,II.1.1,140.83187999999998,TJ,N2O,3.9,kg/TJ,549.2443319999999,Gas Oil combustion consumption by public passenger transport,AR-R,SESCO,annual,kg,be5b77f4-1162-3bf7-ad96-e529cd0d3e5a -2021,Salta,II.1.1,106.15668,TJ,CO2,74100.0,kg/TJ,7866209.988,Gas Oil combustion consumption by public passenger transport,AR-A,SESCO,annual,kg,dac70011-de87-3c7d-b121-d9ace9dedfb2 -2021,Salta,II.1.1,106.15668,TJ,CH4,3.9,kg/TJ,414.01105199999995,Gas Oil combustion consumption by public passenger transport,AR-A,SESCO,annual,kg,7f669601-7392-38da-b3c0-de84eca19444 -2021,Salta,II.1.1,106.15668,TJ,N2O,3.9,kg/TJ,414.01105199999995,Gas Oil combustion consumption by public passenger transport,AR-A,SESCO,annual,kg,7f669601-7392-38da-b3c0-de84eca19444 -2021,San Juan,II.1.1,59.52576,TJ,CO2,74100.0,kg/TJ,4410858.816,Gas Oil combustion consumption by public passenger transport,AR-J,SESCO,annual,kg,0b73ef53-08cf-3d61-a06e-53fde30a2af9 -2021,San Juan,II.1.1,59.52576,TJ,CH4,3.9,kg/TJ,232.150464,Gas Oil combustion consumption by public passenger transport,AR-J,SESCO,annual,kg,3fed6664-1a53-3d6d-b0a4-6c06dc4ffb0b -2021,San Juan,II.1.1,59.52576,TJ,N2O,3.9,kg/TJ,232.150464,Gas Oil combustion consumption by public passenger transport,AR-J,SESCO,annual,kg,3fed6664-1a53-3d6d-b0a4-6c06dc4ffb0b -2021,Santa Fe,II.1.1,242.04012,TJ,CO2,74100.0,kg/TJ,17935172.892,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,6d7b71d0-ac2a-3606-92d2-754595ff0f5c -2021,Santa Fe,II.1.1,242.04012,TJ,CH4,3.9,kg/TJ,943.956468,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,73196694-bfaa-3602-a9d5-be895144a290 -2021,Santa Fe,II.1.1,242.04012,TJ,N2O,3.9,kg/TJ,943.956468,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,73196694-bfaa-3602-a9d5-be895144a290 -2021,Tucuman,II.1.1,13.68948,TJ,CO2,74100.0,kg/TJ,1014390.468,Gas Oil combustion consumption by public passenger transport,AR-T,SESCO,annual,kg,5aad2194-1c91-392e-8365-4b74a8793edd -2021,Tucuman,II.1.1,13.68948,TJ,CH4,3.9,kg/TJ,53.388971999999995,Gas Oil combustion consumption by public passenger transport,AR-T,SESCO,annual,kg,76e40e5d-e089-3866-bf9d-69165cc1b5c7 -2021,Tucuman,II.1.1,13.68948,TJ,N2O,3.9,kg/TJ,53.388971999999995,Gas Oil combustion consumption by public passenger transport,AR-T,SESCO,annual,kg,76e40e5d-e089-3866-bf9d-69165cc1b5c7 -2022,Buenos Aires,II.5.1,720.1605599999999,TJ,CO2,74100.0,kg/TJ,53363897.49599999,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,d46dc01a-e7eb-3de7-a905-6940be36df7c -2022,Buenos Aires,II.5.1,720.1605599999999,TJ,CH4,3.9,kg/TJ,2808.6261839999997,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,230d5cc5-0eac-3686-b859-3615d2bfe6f6 -2022,Buenos Aires,II.5.1,720.1605599999999,TJ,N2O,3.9,kg/TJ,2808.6261839999997,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,230d5cc5-0eac-3686-b859-3615d2bfe6f6 -2022,Córdoba,II.5.1,129.95976,TJ,CO2,74100.0,kg/TJ,9630018.216,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,14769f95-61b8-3e8e-bf4d-2e301b2a84fe -2022,Córdoba,II.5.1,129.95976,TJ,CH4,3.9,kg/TJ,506.84306399999997,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,842c2126-ccb3-3ef7-b97d-b3f46ac18343 -2022,Córdoba,II.5.1,129.95976,TJ,N2O,3.9,kg/TJ,506.84306399999997,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,842c2126-ccb3-3ef7-b97d-b3f46ac18343 -2022,Entre Rios,II.5.1,16.03728,TJ,CO2,74100.0,kg/TJ,1188362.4479999999,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,b1373625-ebe1-3de8-b8e0-7dacc3a928cd -2022,Entre Rios,II.5.1,16.03728,TJ,CH4,3.9,kg/TJ,62.54539199999999,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,c252d8a2-9e5c-3aa0-abc2-0bf879218fc3 -2022,Entre Rios,II.5.1,16.03728,TJ,N2O,3.9,kg/TJ,62.54539199999999,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,c252d8a2-9e5c-3aa0-abc2-0bf879218fc3 -2022,La Pampa,II.5.1,25.78968,TJ,CO2,74100.0,kg/TJ,1911015.288,Gas Oil combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,e7946e55-a306-3f55-98a1-7fdc95988425 -2022,La Pampa,II.5.1,25.78968,TJ,CH4,3.9,kg/TJ,100.579752,Gas Oil combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,1a650d84-fd88-3ea7-a2d0-e138ad0710a5 -2022,La Pampa,II.5.1,25.78968,TJ,N2O,3.9,kg/TJ,100.579752,Gas Oil combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,1a650d84-fd88-3ea7-a2d0-e138ad0710a5 -2022,Santa Fe,II.5.1,173.80944,TJ,CO2,74100.0,kg/TJ,12879279.503999999,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,5960c84b-c31d-3859-9741-3d9559fa5e75 -2022,Santa Fe,II.5.1,173.80944,TJ,CH4,3.9,kg/TJ,677.856816,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,db3639b1-e99d-3f01-a9e6-663ed76a8ff4 -2022,Santa Fe,II.5.1,173.80944,TJ,N2O,3.9,kg/TJ,677.856816,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,db3639b1-e99d-3f01-a9e6-663ed76a8ff4 -2022,Buenos Aires,II.5.1,30.593639999999997,TJ,CO2,74100.0,kg/TJ,2266988.724,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,089bee9b-35c5-31ca-94b8-897ae887028f -2022,Buenos Aires,II.5.1,30.593639999999997,TJ,CH4,3.9,kg/TJ,119.31519599999999,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,789801ff-f179-32e7-8a63-f1bf1b3f7bd0 -2022,Buenos Aires,II.5.1,30.593639999999997,TJ,N2O,3.9,kg/TJ,119.31519599999999,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,789801ff-f179-32e7-8a63-f1bf1b3f7bd0 -2022,Córdoba,II.5.1,10.691519999999999,TJ,CO2,74100.0,kg/TJ,792241.6319999999,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,170c2f05-03d2-34ae-b5fb-3d76c7122275 -2022,Córdoba,II.5.1,10.691519999999999,TJ,CH4,3.9,kg/TJ,41.69692799999999,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,d5bc6b82-c2ad-31be-83b2-140c2e20823b -2022,Córdoba,II.5.1,10.691519999999999,TJ,N2O,3.9,kg/TJ,41.69692799999999,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,d5bc6b82-c2ad-31be-83b2-140c2e20823b -2022,Santa Fe,II.5.1,18.312839999999998,TJ,CO2,74100.0,kg/TJ,1356981.444,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,f24c00dc-68f6-3697-9813-670eb4257e26 -2022,Santa Fe,II.5.1,18.312839999999998,TJ,CH4,3.9,kg/TJ,71.420076,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,33193b48-66ce-3357-a8d3-2a8cf65f304e -2022,Santa Fe,II.5.1,18.312839999999998,TJ,N2O,3.9,kg/TJ,71.420076,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,33193b48-66ce-3357-a8d3-2a8cf65f304e -2022,Buenos Aires,II.5.1,32.997195,TJ,CO2,73300.0,kg/TJ,2418694.3935,Naphtha combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,ff04e44c-be3a-33bf-aa8d-357e116e4161 -2022,Buenos Aires,II.5.1,32.997195,TJ,CH4,0.5,kg/TJ,16.4985975,Naphtha combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,78e072d5-0647-36bf-8fe2-1af115a49a73 -2022,Buenos Aires,II.5.1,32.997195,TJ,N2O,2.0,kg/TJ,65.99439,Naphtha combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,a2dfe34f-c728-33fb-8a47-01b68d10d94e -2022,Córdoba,II.5.1,9.731259999999999,TJ,CO2,73300.0,kg/TJ,713301.3579999999,Naphtha combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,2515239d-fd1d-3a8c-99dd-6508f5467ecf -2022,Córdoba,II.5.1,9.731259999999999,TJ,CH4,0.5,kg/TJ,4.8656299999999995,Naphtha combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,9fadce8d-598d-35dd-93d3-98b56c5e841e -2022,Córdoba,II.5.1,9.731259999999999,TJ,N2O,2.0,kg/TJ,19.462519999999998,Naphtha combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,ecbd567f-f2b9-36c0-84e6-22562775865c -2022,Santa Fe,II.5.1,5.927845,TJ,CO2,73300.0,kg/TJ,434511.03849999997,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,785930d3-acfa-3af7-8001-c5359e42282e -2022,Santa Fe,II.5.1,5.927845,TJ,CH4,0.5,kg/TJ,2.9639225,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,5ecc5da7-1c9a-3a14-97cd-7b7c71755ddd -2022,Santa Fe,II.5.1,5.927845,TJ,N2O,2.0,kg/TJ,11.85569,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,7134a774-8531-3ed9-9a0d-0b2abb2009ef -2022,Buenos Aires,II.5.1,4.283125,TJ,CO2,73300.0,kg/TJ,313953.0625,Naphtha combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,7e3849da-1e4e-32f8-8449-4fa41b58bfec -2022,Buenos Aires,II.5.1,4.283125,TJ,CH4,0.5,kg/TJ,2.1415625,Naphtha combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,9d85a8ba-58a6-3dd1-b2c9-f2753345a4a8 -2022,Buenos Aires,II.5.1,4.283125,TJ,N2O,2.0,kg/TJ,8.56625,Naphtha combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,d5a06fc1-9111-3fcf-9248-4e9e3c5ed2a1 -2022,Córdoba,II.5.1,2.5013449999999997,TJ,CO2,73300.0,kg/TJ,183348.58849999998,Naphtha combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,e2099bcf-c629-3687-94a8-58b9d075f2f5 -2022,Córdoba,II.5.1,2.5013449999999997,TJ,CH4,0.5,kg/TJ,1.2506724999999999,Naphtha combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,749a4d01-5e50-33dc-b69c-3030e4fa1811 -2022,Córdoba,II.5.1,2.5013449999999997,TJ,N2O,2.0,kg/TJ,5.002689999999999,Naphtha combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,5ceb6be1-f743-3c8e-aeaa-7f9412d7ce4d -2022,Buenos Aires,II.5.1,337.75811999999996,TJ,CO2,74100.0,kg/TJ,25027876.691999998,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,d70f053b-3d14-3467-8372-858869b8bc04 -2022,Buenos Aires,II.5.1,337.75811999999996,TJ,CH4,3.9,kg/TJ,1317.2566679999998,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,255d397b-f1f9-36d8-aaf0-b4c31b0ca066 -2022,Buenos Aires,II.5.1,337.75811999999996,TJ,N2O,3.9,kg/TJ,1317.2566679999998,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,255d397b-f1f9-36d8-aaf0-b4c31b0ca066 -2022,Capital Federal,II.5.1,2.60064,TJ,CO2,74100.0,kg/TJ,192707.424,Gas Oil combustion consumption by agriculture machines,AR-C,SESCO,annual,kg,003831e7-8530-343e-a9f7-c5cf8f22aec1 -2022,Capital Federal,II.5.1,2.60064,TJ,CH4,3.9,kg/TJ,10.142496,Gas Oil combustion consumption by agriculture machines,AR-C,SESCO,annual,kg,7590ccc9-113e-3d75-a4fd-67608737eec0 -2022,Capital Federal,II.5.1,2.60064,TJ,N2O,3.9,kg/TJ,10.142496,Gas Oil combustion consumption by agriculture machines,AR-C,SESCO,annual,kg,7590ccc9-113e-3d75-a4fd-67608737eec0 -2022,Córdoba,II.5.1,201.98304,TJ,CO2,74100.0,kg/TJ,14966943.263999999,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,55d4d8c5-a3a7-3ef8-b82b-f3f7095f9229 -2022,Córdoba,II.5.1,201.98304,TJ,CH4,3.9,kg/TJ,787.733856,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,d7cc065a-24ab-3f28-a6d0-a5bc433e386c -2022,Córdoba,II.5.1,201.98304,TJ,N2O,3.9,kg/TJ,787.733856,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,d7cc065a-24ab-3f28-a6d0-a5bc433e386c -2022,Entre Rios,II.5.1,246.01332,TJ,CO2,74100.0,kg/TJ,18229587.012,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,3162fb28-aef7-3c5f-916d-f59fc05e1274 -2022,Entre Rios,II.5.1,246.01332,TJ,CH4,3.9,kg/TJ,959.4519479999999,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,9adc8d30-aecd-30ca-9428-0b7b398bac07 -2022,Entre Rios,II.5.1,246.01332,TJ,N2O,3.9,kg/TJ,959.4519479999999,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,9adc8d30-aecd-30ca-9428-0b7b398bac07 -2022,Salta,II.5.1,321.17904,TJ,CO2,74100.0,kg/TJ,23799366.864,Gas Oil combustion consumption by agriculture machines,AR-A,SESCO,annual,kg,def3834e-12a9-3ef4-8c0b-1508434691f8 -2022,Salta,II.5.1,321.17904,TJ,CH4,3.9,kg/TJ,1252.598256,Gas Oil combustion consumption by agriculture machines,AR-A,SESCO,annual,kg,95671294-c189-3ecb-9e74-fc57975f0c83 -2022,Salta,II.5.1,321.17904,TJ,N2O,3.9,kg/TJ,1252.598256,Gas Oil combustion consumption by agriculture machines,AR-A,SESCO,annual,kg,95671294-c189-3ecb-9e74-fc57975f0c83 -2022,Santa Fe,II.5.1,169.98072,TJ,CO2,74100.0,kg/TJ,12595571.352,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,500eef46-f2fd-35de-a300-e0c591661449 -2022,Santa Fe,II.5.1,169.98072,TJ,CH4,3.9,kg/TJ,662.924808,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,1bbc79d9-8fa8-3ad6-9984-b5ca313301f2 -2022,Santa Fe,II.5.1,169.98072,TJ,N2O,3.9,kg/TJ,662.924808,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,1bbc79d9-8fa8-3ad6-9984-b5ca313301f2 -2022,Buenos Aires,II.5.1,20.046599999999998,TJ,CO2,74100.0,kg/TJ,1485453.0599999998,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,61624599-7100-34d1-be3d-6b8b54188085 -2022,Buenos Aires,II.5.1,20.046599999999998,TJ,CH4,3.9,kg/TJ,78.18173999999999,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,8cd36c6e-8896-3b9f-9bba-961452c3a88e -2022,Buenos Aires,II.5.1,20.046599999999998,TJ,N2O,3.9,kg/TJ,78.18173999999999,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,8cd36c6e-8896-3b9f-9bba-961452c3a88e -2022,Córdoba,II.5.1,18.20448,TJ,CO2,74100.0,kg/TJ,1348951.968,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,68795360-e27d-34bd-a5ea-ac906bacead9 -2022,Córdoba,II.5.1,18.20448,TJ,CH4,3.9,kg/TJ,70.997472,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,4071a909-697f-3905-8599-452f63a85782 -2022,Córdoba,II.5.1,18.20448,TJ,N2O,3.9,kg/TJ,70.997472,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,4071a909-697f-3905-8599-452f63a85782 -2022,Entre Rios,II.5.1,7.910279999999999,TJ,CO2,74100.0,kg/TJ,586151.7479999999,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,95faf834-d270-3055-ad85-ccfabf265205 -2022,Entre Rios,II.5.1,7.910279999999999,TJ,CH4,3.9,kg/TJ,30.850091999999997,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,e7f8b3a0-25f1-30ac-9a3f-ad7d8f97701b -2022,Entre Rios,II.5.1,7.910279999999999,TJ,N2O,3.9,kg/TJ,30.850091999999997,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,e7f8b3a0-25f1-30ac-9a3f-ad7d8f97701b -2022,Salta,II.5.1,0.43344,TJ,CO2,74100.0,kg/TJ,32117.904,Gas Oil combustion consumption by agriculture machines,AR-A,SESCO,annual,kg,4f9498cd-d48f-390c-8fda-4c9fe84a0d34 -2022,Salta,II.5.1,0.43344,TJ,CH4,3.9,kg/TJ,1.690416,Gas Oil combustion consumption by agriculture machines,AR-A,SESCO,annual,kg,a7996e8e-e586-33ea-bed5-96a03024f0ea -2022,Salta,II.5.1,0.43344,TJ,N2O,3.9,kg/TJ,1.690416,Gas Oil combustion consumption by agriculture machines,AR-A,SESCO,annual,kg,a7996e8e-e586-33ea-bed5-96a03024f0ea -2022,Santa Fe,II.5.1,6.6822,TJ,CO2,74100.0,kg/TJ,495151.02,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,ef1eba40-11a1-3d1a-9daf-0b01bc2166cc -2022,Santa Fe,II.5.1,6.6822,TJ,CH4,3.9,kg/TJ,26.060579999999998,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,e366a7cb-9594-31a8-8d1f-b0200c437154 -2022,Santa Fe,II.5.1,6.6822,TJ,N2O,3.9,kg/TJ,26.060579999999998,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,e366a7cb-9594-31a8-8d1f-b0200c437154 -2022,Buenos Aires,II.5.1,8.257864999999999,TJ,CO2,73300.0,kg/TJ,605301.5044999999,Naphtha combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,7bc2b1da-cfff-3bda-adfc-526d7b795ece -2022,Buenos Aires,II.5.1,8.257864999999999,TJ,CH4,0.5,kg/TJ,4.1289324999999995,Naphtha combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,414525f1-29c4-3f0b-83a7-22cbe3590585 -2022,Buenos Aires,II.5.1,8.257864999999999,TJ,N2O,2.0,kg/TJ,16.515729999999998,Naphtha combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,97404a9e-8aeb-3d1e-9d10-4829ece3061c -2022,Capital Federal,II.5.1,0.9936849999999999,TJ,CO2,73300.0,kg/TJ,72837.1105,Naphtha combustion consumption by agriculture machines,AR-C,SESCO,annual,kg,d0623544-6b98-3cba-a331-5a8db698c7de -2022,Capital Federal,II.5.1,0.9936849999999999,TJ,CH4,0.5,kg/TJ,0.49684249999999996,Naphtha combustion consumption by agriculture machines,AR-C,SESCO,annual,kg,c562f279-e7c3-3cb6-bf80-e358c8aa85ac -2022,Capital Federal,II.5.1,0.9936849999999999,TJ,N2O,2.0,kg/TJ,1.9873699999999999,Naphtha combustion consumption by agriculture machines,AR-C,SESCO,annual,kg,d37d7ccc-94ea-382c-b841-9a2dabb594a9 -2022,Córdoba,II.5.1,36.149575,TJ,CO2,73300.0,kg/TJ,2649763.8474999997,Naphtha combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,60d320c6-1a40-3a03-afbd-1863c8f55c82 -2022,Córdoba,II.5.1,36.149575,TJ,CH4,0.5,kg/TJ,18.0747875,Naphtha combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,fb4370f2-936e-3aa2-a093-71f49cac233d -2022,Córdoba,II.5.1,36.149575,TJ,N2O,2.0,kg/TJ,72.29915,Naphtha combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,5fa27735-2b8b-3e4c-ac0c-57041264a20b -2022,Santa Fe,II.5.1,8.56625,TJ,CO2,73300.0,kg/TJ,627906.125,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,cf2ef777-14ae-359a-bb80-d40b7204272d -2022,Santa Fe,II.5.1,8.56625,TJ,CH4,0.5,kg/TJ,4.283125,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,ab0cd108-864e-34e7-9165-82cc0b31ad3e -2022,Santa Fe,II.5.1,8.56625,TJ,N2O,2.0,kg/TJ,17.1325,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,2c328e21-0690-36fe-bf3d-af4ff12dfabd -2022,Buenos Aires,II.5.1,1.85031,TJ,CO2,73300.0,kg/TJ,135627.723,Naphtha combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,bafb45d3-37de-37c0-9727-692d3b1f263b -2022,Buenos Aires,II.5.1,1.85031,TJ,CH4,0.5,kg/TJ,0.925155,Naphtha combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,b13e5dab-c314-39c9-84f7-1f15d41eafbe -2022,Buenos Aires,II.5.1,1.85031,TJ,N2O,2.0,kg/TJ,3.70062,Naphtha combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,45beebe4-ebea-39c4-9606-c2715c878adc -2022,Capital Federal,II.5.1,0.102795,TJ,CO2,73300.0,kg/TJ,7534.8735,Naphtha combustion consumption by agriculture machines,AR-C,SESCO,annual,kg,42bd2e8a-21bb-3fd3-8f66-aef111f5746e -2022,Capital Federal,II.5.1,0.102795,TJ,CH4,0.5,kg/TJ,0.0513975,Naphtha combustion consumption by agriculture machines,AR-C,SESCO,annual,kg,ea91ed39-e1f8-3165-8bad-99934dab7fe7 -2022,Capital Federal,II.5.1,0.102795,TJ,N2O,2.0,kg/TJ,0.20559,Naphtha combustion consumption by agriculture machines,AR-C,SESCO,annual,kg,d5eac6e2-f379-3189-90f7-afc08d64d8bb -2022,Córdoba,II.5.1,3.01532,TJ,CO2,73300.0,kg/TJ,221022.956,Naphtha combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,010b0c2f-a346-3777-b828-76c1ff4d6f3b -2022,Córdoba,II.5.1,3.01532,TJ,CH4,0.5,kg/TJ,1.50766,Naphtha combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,99763b33-1aa7-335e-a4a3-4bf5319651f3 -2022,Córdoba,II.5.1,3.01532,TJ,N2O,2.0,kg/TJ,6.03064,Naphtha combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,e47c1675-92b7-3f12-8f0a-59e51db4f910 -2022,Buenos Aires,II.5.1,4489.21032,TJ,CO2,74100.0,kg/TJ,332650484.712,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,a25781ac-b61f-3a4a-91e0-8a0acf9144df -2022,Buenos Aires,II.5.1,4489.21032,TJ,CH4,3.9,kg/TJ,17507.920248,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,5ab91e62-7c35-3250-92de-6718d8fbb333 -2022,Buenos Aires,II.5.1,4489.21032,TJ,N2O,3.9,kg/TJ,17507.920248,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,5ab91e62-7c35-3250-92de-6718d8fbb333 -2022,Catamarca,II.5.1,108.32387999999999,TJ,CO2,74100.0,kg/TJ,8026799.507999999,Gas Oil combustion consumption by agriculture machines,AR-K,SESCO,annual,kg,f24094e7-c09b-3ddf-94db-63aac610f7ca -2022,Catamarca,II.5.1,108.32387999999999,TJ,CH4,3.9,kg/TJ,422.463132,Gas Oil combustion consumption by agriculture machines,AR-K,SESCO,annual,kg,811b91fb-4843-3c74-a2af-8e376873646d -2022,Catamarca,II.5.1,108.32387999999999,TJ,N2O,3.9,kg/TJ,422.463132,Gas Oil combustion consumption by agriculture machines,AR-K,SESCO,annual,kg,811b91fb-4843-3c74-a2af-8e376873646d -2022,Chaco,II.5.1,612.01728,TJ,CO2,74100.0,kg/TJ,45350480.448,Gas Oil combustion consumption by agriculture machines,AR-H,SESCO,annual,kg,0a1e8c97-f117-3bcc-8f9c-007d5fbf7192 -2022,Chaco,II.5.1,612.01728,TJ,CH4,3.9,kg/TJ,2386.867392,Gas Oil combustion consumption by agriculture machines,AR-H,SESCO,annual,kg,f79dfa34-67ce-3fd5-b8e5-1325be0731ae -2022,Chaco,II.5.1,612.01728,TJ,N2O,3.9,kg/TJ,2386.867392,Gas Oil combustion consumption by agriculture machines,AR-H,SESCO,annual,kg,f79dfa34-67ce-3fd5-b8e5-1325be0731ae -2022,Corrientes,II.5.1,1214.5349999999999,TJ,CO2,74100.0,kg/TJ,89997043.49999999,Gas Oil combustion consumption by agriculture machines,AR-W,SESCO,annual,kg,6808deb5-7a91-3bc6-89d6-b315a3e9dcb3 -2022,Corrientes,II.5.1,1214.5349999999999,TJ,CH4,3.9,kg/TJ,4736.686499999999,Gas Oil combustion consumption by agriculture machines,AR-W,SESCO,annual,kg,5fb07c6a-d15d-3cb5-8d28-cf00ebeb2820 -2022,Corrientes,II.5.1,1214.5349999999999,TJ,N2O,3.9,kg/TJ,4736.686499999999,Gas Oil combustion consumption by agriculture machines,AR-W,SESCO,annual,kg,5fb07c6a-d15d-3cb5-8d28-cf00ebeb2820 -2022,Córdoba,II.5.1,2632.245,TJ,CO2,74100.0,kg/TJ,195049354.5,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,23398214-e2f8-3615-82eb-307855182a88 -2022,Córdoba,II.5.1,2632.245,TJ,CH4,3.9,kg/TJ,10265.7555,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,ea7fbfb6-a5f9-33ac-a935-21a5b36d4a4d -2022,Córdoba,II.5.1,2632.245,TJ,N2O,3.9,kg/TJ,10265.7555,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,ea7fbfb6-a5f9-33ac-a935-21a5b36d4a4d -2022,Entre Rios,II.5.1,764.6604,TJ,CO2,74100.0,kg/TJ,56661335.64,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,51e93c77-6da2-3204-93b0-7206c7e4235f -2022,Entre Rios,II.5.1,764.6604,TJ,CH4,3.9,kg/TJ,2982.1755599999997,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,0cc1bfa8-7d35-334b-a88a-74a9f9da1641 -2022,Entre Rios,II.5.1,764.6604,TJ,N2O,3.9,kg/TJ,2982.1755599999997,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,0cc1bfa8-7d35-334b-a88a-74a9f9da1641 -2022,Jujuy,II.5.1,93.5508,TJ,CO2,74100.0,kg/TJ,6932114.279999999,Gas Oil combustion consumption by agriculture machines,AR-Y,SESCO,annual,kg,16d8ecf7-af54-39dd-85a5-15376ad42a30 -2022,Jujuy,II.5.1,93.5508,TJ,CH4,3.9,kg/TJ,364.84812,Gas Oil combustion consumption by agriculture machines,AR-Y,SESCO,annual,kg,e89827ac-8ec3-32e1-a005-9ebee8600bc7 -2022,Jujuy,II.5.1,93.5508,TJ,N2O,3.9,kg/TJ,364.84812,Gas Oil combustion consumption by agriculture machines,AR-Y,SESCO,annual,kg,e89827ac-8ec3-32e1-a005-9ebee8600bc7 -2022,La Pampa,II.5.1,198.94896,TJ,CO2,74100.0,kg/TJ,14742117.936,Gas Oil combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,df2fc841-b41e-3614-a6d3-d52e4e304774 -2022,La Pampa,II.5.1,198.94896,TJ,CH4,3.9,kg/TJ,775.900944,Gas Oil combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,2d5dedd8-2132-3ea8-b593-319cb6902a80 -2022,La Pampa,II.5.1,198.94896,TJ,N2O,3.9,kg/TJ,775.900944,Gas Oil combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,2d5dedd8-2132-3ea8-b593-319cb6902a80 -2022,Mendoza,II.5.1,330.31739999999996,TJ,CO2,74100.0,kg/TJ,24476519.339999996,Gas Oil combustion consumption by agriculture machines,AR-M,SESCO,annual,kg,ace1d461-cdc4-3412-9f09-70b07b7e812d -2022,Mendoza,II.5.1,330.31739999999996,TJ,CH4,3.9,kg/TJ,1288.2378599999997,Gas Oil combustion consumption by agriculture machines,AR-M,SESCO,annual,kg,23218d6c-1ae2-371c-a0b4-f808fa1a7940 -2022,Mendoza,II.5.1,330.31739999999996,TJ,N2O,3.9,kg/TJ,1288.2378599999997,Gas Oil combustion consumption by agriculture machines,AR-M,SESCO,annual,kg,23218d6c-1ae2-371c-a0b4-f808fa1a7940 -2022,Misiones,II.5.1,143.25191999999998,TJ,CO2,74100.0,kg/TJ,10614967.271999998,Gas Oil combustion consumption by agriculture machines,AR-N,SESCO,annual,kg,621b5510-5513-3284-8ba8-5315741b884f -2022,Misiones,II.5.1,143.25191999999998,TJ,CH4,3.9,kg/TJ,558.6824879999999,Gas Oil combustion consumption by agriculture machines,AR-N,SESCO,annual,kg,7601801f-7da7-336b-9742-c5dbe9677497 -2022,Misiones,II.5.1,143.25191999999998,TJ,N2O,3.9,kg/TJ,558.6824879999999,Gas Oil combustion consumption by agriculture machines,AR-N,SESCO,annual,kg,7601801f-7da7-336b-9742-c5dbe9677497 -2022,Neuquén,II.5.1,286.97339999999997,TJ,CO2,74100.0,kg/TJ,21264728.939999998,Gas Oil combustion consumption by agriculture machines,AR-Q,SESCO,annual,kg,f3e77c12-48a3-3e95-80ee-b022059bfab8 -2022,Neuquén,II.5.1,286.97339999999997,TJ,CH4,3.9,kg/TJ,1119.19626,Gas Oil combustion consumption by agriculture machines,AR-Q,SESCO,annual,kg,00abbdd4-78aa-3b4a-858f-a262be1b4266 -2022,Neuquén,II.5.1,286.97339999999997,TJ,N2O,3.9,kg/TJ,1119.19626,Gas Oil combustion consumption by agriculture machines,AR-Q,SESCO,annual,kg,00abbdd4-78aa-3b4a-858f-a262be1b4266 -2022,Salta,II.5.1,255.91019999999997,TJ,CO2,74100.0,kg/TJ,18962945.819999997,Gas Oil combustion consumption by agriculture machines,AR-A,SESCO,annual,kg,bdb660e2-e3dd-3fc6-a556-6384bdc5e43d -2022,Salta,II.5.1,255.91019999999997,TJ,CH4,3.9,kg/TJ,998.0497799999998,Gas Oil combustion consumption by agriculture machines,AR-A,SESCO,annual,kg,51378b21-d485-3460-a0be-b1afb1939ef0 -2022,Salta,II.5.1,255.91019999999997,TJ,N2O,3.9,kg/TJ,998.0497799999998,Gas Oil combustion consumption by agriculture machines,AR-A,SESCO,annual,kg,51378b21-d485-3460-a0be-b1afb1939ef0 -2022,San Juan,II.5.1,221.88515999999998,TJ,CO2,74100.0,kg/TJ,16441690.355999999,Gas Oil combustion consumption by agriculture machines,AR-J,SESCO,annual,kg,a39079a8-02a3-3500-a7cb-2017ecc0d2c7 -2022,San Juan,II.5.1,221.88515999999998,TJ,CH4,3.9,kg/TJ,865.3521239999999,Gas Oil combustion consumption by agriculture machines,AR-J,SESCO,annual,kg,9547e222-e09c-36e8-8d49-6c2d0b10631a -2022,San Juan,II.5.1,221.88515999999998,TJ,N2O,3.9,kg/TJ,865.3521239999999,Gas Oil combustion consumption by agriculture machines,AR-J,SESCO,annual,kg,9547e222-e09c-36e8-8d49-6c2d0b10631a -2022,San Luis,II.5.1,177.13248,TJ,CO2,74100.0,kg/TJ,13125516.768,Gas Oil combustion consumption by agriculture machines,AR-D,SESCO,annual,kg,b56c6fa4-c719-3de5-a3de-912c2f7dfd54 -2022,San Luis,II.5.1,177.13248,TJ,CH4,3.9,kg/TJ,690.8166719999999,Gas Oil combustion consumption by agriculture machines,AR-D,SESCO,annual,kg,a6a3294c-64f1-3d0a-8dab-333a68e1e7a7 -2022,San Luis,II.5.1,177.13248,TJ,N2O,3.9,kg/TJ,690.8166719999999,Gas Oil combustion consumption by agriculture machines,AR-D,SESCO,annual,kg,a6a3294c-64f1-3d0a-8dab-333a68e1e7a7 -2022,Santa Cruz,II.5.1,164.45435999999998,TJ,CO2,74100.0,kg/TJ,12186068.076,Gas Oil combustion consumption by agriculture machines,AR-Z,SESCO,annual,kg,c0485b92-f1f9-3120-9479-2d149db3251d -2022,Santa Cruz,II.5.1,164.45435999999998,TJ,CH4,3.9,kg/TJ,641.372004,Gas Oil combustion consumption by agriculture machines,AR-Z,SESCO,annual,kg,400f9675-4f25-3556-a62a-8c4df33febea -2022,Santa Cruz,II.5.1,164.45435999999998,TJ,N2O,3.9,kg/TJ,641.372004,Gas Oil combustion consumption by agriculture machines,AR-Z,SESCO,annual,kg,400f9675-4f25-3556-a62a-8c4df33febea -2022,Santa Fe,II.5.1,5091.69192,TJ,CO2,74100.0,kg/TJ,377294371.272,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,3d85771f-6b72-340a-bbd4-93ab411cacef -2022,Santa Fe,II.5.1,5091.69192,TJ,CH4,3.9,kg/TJ,19857.598488,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,0779d1d3-f70a-35cc-ad25-637229dc60a0 -2022,Santa Fe,II.5.1,5091.69192,TJ,N2O,3.9,kg/TJ,19857.598488,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,0779d1d3-f70a-35cc-ad25-637229dc60a0 -2022,Santiago del Estero,II.5.1,604.2876,TJ,CO2,74100.0,kg/TJ,44777711.16,Gas Oil combustion consumption by agriculture machines,AR-G,SESCO,annual,kg,0ee1e731-10c5-3633-9de7-6a234dbcdb2b -2022,Santiago del Estero,II.5.1,604.2876,TJ,CH4,3.9,kg/TJ,2356.7216399999998,Gas Oil combustion consumption by agriculture machines,AR-G,SESCO,annual,kg,32880c49-3921-303f-95e2-39524c6adf60 -2022,Santiago del Estero,II.5.1,604.2876,TJ,N2O,3.9,kg/TJ,2356.7216399999998,Gas Oil combustion consumption by agriculture machines,AR-G,SESCO,annual,kg,32880c49-3921-303f-95e2-39524c6adf60 -2022,Tucuman,II.5.1,256.59648,TJ,CO2,74100.0,kg/TJ,19013799.167999998,Gas Oil combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,2a88e784-c1b4-3128-ae09-4bc197124b00 -2022,Tucuman,II.5.1,256.59648,TJ,CH4,3.9,kg/TJ,1000.7262719999999,Gas Oil combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,99700534-b1ca-3e21-8e1f-682368515795 -2022,Tucuman,II.5.1,256.59648,TJ,N2O,3.9,kg/TJ,1000.7262719999999,Gas Oil combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,99700534-b1ca-3e21-8e1f-682368515795 -2022,Buenos Aires,II.5.1,434.41524,TJ,CO2,74100.0,kg/TJ,32190169.283999998,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,34d152d5-8200-34ff-949c-39990a6ef0f2 -2022,Buenos Aires,II.5.1,434.41524,TJ,CH4,3.9,kg/TJ,1694.2194359999999,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,ee82aa8a-a6af-377d-a1b8-0c1b8a585eb8 -2022,Buenos Aires,II.5.1,434.41524,TJ,N2O,3.9,kg/TJ,1694.2194359999999,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,ee82aa8a-a6af-377d-a1b8-0c1b8a585eb8 -2022,Catamarca,II.5.1,26.76492,TJ,CO2,74100.0,kg/TJ,1983280.572,Gas Oil combustion consumption by agriculture machines,AR-K,SESCO,annual,kg,c6285261-91f7-3ee9-9ca3-804e7c72af99 -2022,Catamarca,II.5.1,26.76492,TJ,CH4,3.9,kg/TJ,104.383188,Gas Oil combustion consumption by agriculture machines,AR-K,SESCO,annual,kg,85a1655d-bbaf-3bd2-8dff-869b3bf55f7e -2022,Catamarca,II.5.1,26.76492,TJ,N2O,3.9,kg/TJ,104.383188,Gas Oil combustion consumption by agriculture machines,AR-K,SESCO,annual,kg,85a1655d-bbaf-3bd2-8dff-869b3bf55f7e -2022,Chaco,II.5.1,143.54088,TJ,CO2,74100.0,kg/TJ,10636379.207999999,Gas Oil combustion consumption by agriculture machines,AR-H,SESCO,annual,kg,70d66ecc-4a0c-3e81-9855-17e4308622b5 -2022,Chaco,II.5.1,143.54088,TJ,CH4,3.9,kg/TJ,559.8094319999999,Gas Oil combustion consumption by agriculture machines,AR-H,SESCO,annual,kg,ef74d3ed-f834-336d-8199-17ea126cdbe4 -2022,Chaco,II.5.1,143.54088,TJ,N2O,3.9,kg/TJ,559.8094319999999,Gas Oil combustion consumption by agriculture machines,AR-H,SESCO,annual,kg,ef74d3ed-f834-336d-8199-17ea126cdbe4 -2022,Corrientes,II.5.1,135.84732,TJ,CO2,74100.0,kg/TJ,10066286.412,Gas Oil combustion consumption by agriculture machines,AR-W,SESCO,annual,kg,e0315b59-050c-3899-ac07-bd1e43aa046b -2022,Corrientes,II.5.1,135.84732,TJ,CH4,3.9,kg/TJ,529.804548,Gas Oil combustion consumption by agriculture machines,AR-W,SESCO,annual,kg,47fbd209-c781-3c3d-8f6c-4cdba6659c17 -2022,Corrientes,II.5.1,135.84732,TJ,N2O,3.9,kg/TJ,529.804548,Gas Oil combustion consumption by agriculture machines,AR-W,SESCO,annual,kg,47fbd209-c781-3c3d-8f6c-4cdba6659c17 -2022,Córdoba,II.5.1,203.17499999999998,TJ,CO2,74100.0,kg/TJ,15055267.499999998,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,c879712d-f3dd-382e-b3c9-961f0396cda9 -2022,Córdoba,II.5.1,203.17499999999998,TJ,CH4,3.9,kg/TJ,792.3824999999999,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,7e047d84-06a5-35c8-87ca-ab808126a210 -2022,Córdoba,II.5.1,203.17499999999998,TJ,N2O,3.9,kg/TJ,792.3824999999999,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,7e047d84-06a5-35c8-87ca-ab808126a210 -2022,Entre Rios,II.5.1,52.26564,TJ,CO2,74100.0,kg/TJ,3872883.9239999996,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,5f604852-43eb-3206-836b-0dabb2dda811 -2022,Entre Rios,II.5.1,52.26564,TJ,CH4,3.9,kg/TJ,203.835996,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,f9f64da1-d495-343a-a0fd-d46a51c37ba1 -2022,Entre Rios,II.5.1,52.26564,TJ,N2O,3.9,kg/TJ,203.835996,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,f9f64da1-d495-343a-a0fd-d46a51c37ba1 -2022,Jujuy,II.5.1,28.281959999999998,TJ,CO2,74100.0,kg/TJ,2095693.2359999998,Gas Oil combustion consumption by agriculture machines,AR-Y,SESCO,annual,kg,a57bea38-d7e4-3c6e-be06-7941db26ebab -2022,Jujuy,II.5.1,28.281959999999998,TJ,CH4,3.9,kg/TJ,110.29964399999999,Gas Oil combustion consumption by agriculture machines,AR-Y,SESCO,annual,kg,d8490651-1ae7-38f6-830e-df4840c54b14 -2022,Jujuy,II.5.1,28.281959999999998,TJ,N2O,3.9,kg/TJ,110.29964399999999,Gas Oil combustion consumption by agriculture machines,AR-Y,SESCO,annual,kg,d8490651-1ae7-38f6-830e-df4840c54b14 -2022,La Pampa,II.5.1,24.778319999999997,TJ,CO2,74100.0,kg/TJ,1836073.5119999999,Gas Oil combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,94e02194-783a-3b10-a28d-39612a44d636 -2022,La Pampa,II.5.1,24.778319999999997,TJ,CH4,3.9,kg/TJ,96.63544799999998,Gas Oil combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,f6ad24a3-ff69-35d8-8cd6-10533042d839 -2022,La Pampa,II.5.1,24.778319999999997,TJ,N2O,3.9,kg/TJ,96.63544799999998,Gas Oil combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,f6ad24a3-ff69-35d8-8cd6-10533042d839 -2022,Mendoza,II.5.1,99.58283999999999,TJ,CO2,74100.0,kg/TJ,7379088.443999999,Gas Oil combustion consumption by agriculture machines,AR-M,SESCO,annual,kg,29166df9-2b05-3ebf-8955-30517ea9eca6 -2022,Mendoza,II.5.1,99.58283999999999,TJ,CH4,3.9,kg/TJ,388.37307599999997,Gas Oil combustion consumption by agriculture machines,AR-M,SESCO,annual,kg,5380743e-43d5-3a97-8f71-d48d0bc248b7 -2022,Mendoza,II.5.1,99.58283999999999,TJ,N2O,3.9,kg/TJ,388.37307599999997,Gas Oil combustion consumption by agriculture machines,AR-M,SESCO,annual,kg,5380743e-43d5-3a97-8f71-d48d0bc248b7 -2022,Misiones,II.5.1,18.45732,TJ,CO2,74100.0,kg/TJ,1367687.412,Gas Oil combustion consumption by agriculture machines,AR-N,SESCO,annual,kg,f7f107a2-8f9e-3147-b26b-fcf16cd8bee9 -2022,Misiones,II.5.1,18.45732,TJ,CH4,3.9,kg/TJ,71.983548,Gas Oil combustion consumption by agriculture machines,AR-N,SESCO,annual,kg,777b8b32-e5ad-3a3b-b492-c76598ef4779 -2022,Misiones,II.5.1,18.45732,TJ,N2O,3.9,kg/TJ,71.983548,Gas Oil combustion consumption by agriculture machines,AR-N,SESCO,annual,kg,777b8b32-e5ad-3a3b-b492-c76598ef4779 -2022,Neuquén,II.5.1,73.8654,TJ,CO2,74100.0,kg/TJ,5473426.14,Gas Oil combustion consumption by agriculture machines,AR-Q,SESCO,annual,kg,e835bc23-3826-3c6c-b7fb-7f7841079c89 -2022,Neuquén,II.5.1,73.8654,TJ,CH4,3.9,kg/TJ,288.07505999999995,Gas Oil combustion consumption by agriculture machines,AR-Q,SESCO,annual,kg,11783656-f905-3ff1-b6e5-6887fd59ee5b -2022,Neuquén,II.5.1,73.8654,TJ,N2O,3.9,kg/TJ,288.07505999999995,Gas Oil combustion consumption by agriculture machines,AR-Q,SESCO,annual,kg,11783656-f905-3ff1-b6e5-6887fd59ee5b -2022,Salta,II.5.1,48.79812,TJ,CO2,74100.0,kg/TJ,3615940.692,Gas Oil combustion consumption by agriculture machines,AR-A,SESCO,annual,kg,a3bb8b65-9b84-3fc4-8aba-775779c58cca -2022,Salta,II.5.1,48.79812,TJ,CH4,3.9,kg/TJ,190.31266799999997,Gas Oil combustion consumption by agriculture machines,AR-A,SESCO,annual,kg,02ee9ab1-3df0-3220-9130-e08e555bff6a -2022,Salta,II.5.1,48.79812,TJ,N2O,3.9,kg/TJ,190.31266799999997,Gas Oil combustion consumption by agriculture machines,AR-A,SESCO,annual,kg,02ee9ab1-3df0-3220-9130-e08e555bff6a -2022,San Juan,II.5.1,25.71744,TJ,CO2,74100.0,kg/TJ,1905662.304,Gas Oil combustion consumption by agriculture machines,AR-J,SESCO,annual,kg,63415adb-3ad0-3b85-8d7c-fcd3130e1390 -2022,San Juan,II.5.1,25.71744,TJ,CH4,3.9,kg/TJ,100.298016,Gas Oil combustion consumption by agriculture machines,AR-J,SESCO,annual,kg,61bb9db3-1dd0-3216-a9af-28781b01bcdc -2022,San Juan,II.5.1,25.71744,TJ,N2O,3.9,kg/TJ,100.298016,Gas Oil combustion consumption by agriculture machines,AR-J,SESCO,annual,kg,61bb9db3-1dd0-3216-a9af-28781b01bcdc -2022,San Luis,II.5.1,14.88144,TJ,CO2,74100.0,kg/TJ,1102714.704,Gas Oil combustion consumption by agriculture machines,AR-D,SESCO,annual,kg,ada33c5a-71ac-3ff8-ad09-cd336c181b88 -2022,San Luis,II.5.1,14.88144,TJ,CH4,3.9,kg/TJ,58.037616,Gas Oil combustion consumption by agriculture machines,AR-D,SESCO,annual,kg,0431522f-7885-3f4e-8951-31a00e0dfdb9 -2022,San Luis,II.5.1,14.88144,TJ,N2O,3.9,kg/TJ,58.037616,Gas Oil combustion consumption by agriculture machines,AR-D,SESCO,annual,kg,0431522f-7885-3f4e-8951-31a00e0dfdb9 -2022,Santa Cruz,II.5.1,85.82112,TJ,CO2,74100.0,kg/TJ,6359344.992,Gas Oil combustion consumption by agriculture machines,AR-Z,SESCO,annual,kg,1ec82b94-3caa-3af9-897b-4d1b0a12dd71 -2022,Santa Cruz,II.5.1,85.82112,TJ,CH4,3.9,kg/TJ,334.702368,Gas Oil combustion consumption by agriculture machines,AR-Z,SESCO,annual,kg,2f92f50e-59b8-3028-826e-75d11934ad4d -2022,Santa Cruz,II.5.1,85.82112,TJ,N2O,3.9,kg/TJ,334.702368,Gas Oil combustion consumption by agriculture machines,AR-Z,SESCO,annual,kg,2f92f50e-59b8-3028-826e-75d11934ad4d -2022,Santa Fe,II.5.1,378.71819999999997,TJ,CO2,74100.0,kg/TJ,28063018.619999997,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,6ce2e390-0151-3424-8713-1535bba0fc9b -2022,Santa Fe,II.5.1,378.71819999999997,TJ,CH4,3.9,kg/TJ,1477.0009799999998,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,918af9db-08a7-355c-bceb-ac19e197be69 -2022,Santa Fe,II.5.1,378.71819999999997,TJ,N2O,3.9,kg/TJ,1477.0009799999998,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,918af9db-08a7-355c-bceb-ac19e197be69 -2022,Santiago del Estero,II.5.1,206.42579999999998,TJ,CO2,74100.0,kg/TJ,15296151.78,Gas Oil combustion consumption by agriculture machines,AR-G,SESCO,annual,kg,2915c44b-7a22-3349-b11a-35d8aa0808a1 -2022,Santiago del Estero,II.5.1,206.42579999999998,TJ,CH4,3.9,kg/TJ,805.0606199999999,Gas Oil combustion consumption by agriculture machines,AR-G,SESCO,annual,kg,90082ccf-b51d-32e7-ba12-6618adb05c3a -2022,Santiago del Estero,II.5.1,206.42579999999998,TJ,N2O,3.9,kg/TJ,805.0606199999999,Gas Oil combustion consumption by agriculture machines,AR-G,SESCO,annual,kg,90082ccf-b51d-32e7-ba12-6618adb05c3a -2022,Tucuman,II.5.1,46.73928,TJ,CO2,74100.0,kg/TJ,3463380.648,Gas Oil combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,d4ee8671-7606-38ab-b1d5-144150035071 -2022,Tucuman,II.5.1,46.73928,TJ,CH4,3.9,kg/TJ,182.28319199999999,Gas Oil combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,b5e6640f-2417-34e5-a19d-9955eeda8b46 -2022,Tucuman,II.5.1,46.73928,TJ,N2O,3.9,kg/TJ,182.28319199999999,Gas Oil combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,b5e6640f-2417-34e5-a19d-9955eeda8b46 -2022,Santa Fe,II.5.1,2.981055,TJ,CO2,73300.0,kg/TJ,218511.3315,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,349bc9de-bd3e-36bf-abc4-44627fa13cb9 -2022,Santa Fe,II.5.1,2.981055,TJ,CH4,0.5,kg/TJ,1.4905275,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,a626c07c-95b2-32b7-83f5-98fd94f21faf -2022,Santa Fe,II.5.1,2.981055,TJ,N2O,2.0,kg/TJ,5.96211,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,85cdb11a-eb76-35e2-a411-98d1e0046712 -2022,Santa Fe,II.5.1,1.09648,TJ,CO2,73300.0,kg/TJ,80371.984,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,2b770864-3570-3947-98ac-f5d84a309f12 -2022,Santa Fe,II.5.1,1.09648,TJ,CH4,0.5,kg/TJ,0.54824,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,ef6ab5b9-5681-345f-8454-5342f959cef4 -2022,Santa Fe,II.5.1,1.09648,TJ,N2O,2.0,kg/TJ,2.19296,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,d8c0616f-3ea4-3b92-be5d-19dea7c06e72 -2022,Buenos Aires,II.2.1,80.36699999999999,TJ,CO2,74100.0,kg/TJ,5955194.699999999,Gas Oil combustion consumption by railway transport,AR-B,SESCO,annual,kg,d76e600f-78ec-3e2f-b0a5-1b0cebc396ca -2022,Buenos Aires,II.2.1,80.36699999999999,TJ,CH4,3.9,kg/TJ,313.43129999999996,Gas Oil combustion consumption by railway transport,AR-B,SESCO,annual,kg,df056c79-f2ae-351e-8f6b-7857cb82de21 -2022,Buenos Aires,II.2.1,80.36699999999999,TJ,N2O,3.9,kg/TJ,313.43129999999996,Gas Oil combustion consumption by railway transport,AR-B,SESCO,annual,kg,df056c79-f2ae-351e-8f6b-7857cb82de21 -2022,Capital Federal,II.2.1,0.9029999999999999,TJ,CO2,74100.0,kg/TJ,66912.29999999999,Gas Oil combustion consumption by railway transport,AR-C,SESCO,annual,kg,b97fa89f-ae80-38e8-b865-a480384c90b2 -2022,Capital Federal,II.2.1,0.9029999999999999,TJ,CH4,3.9,kg/TJ,3.5216999999999996,Gas Oil combustion consumption by railway transport,AR-C,SESCO,annual,kg,b9af84b7-4d5a-3cce-931d-8cc186aa1fa3 -2022,Capital Federal,II.2.1,0.9029999999999999,TJ,N2O,3.9,kg/TJ,3.5216999999999996,Gas Oil combustion consumption by railway transport,AR-C,SESCO,annual,kg,b9af84b7-4d5a-3cce-931d-8cc186aa1fa3 -2022,Córdoba,II.2.1,2.6367599999999998,TJ,CO2,74100.0,kg/TJ,195383.916,Gas Oil combustion consumption by railway transport,AR-X,SESCO,annual,kg,35b7048c-f187-36a2-a922-a8779872b195 -2022,Córdoba,II.2.1,2.6367599999999998,TJ,CH4,3.9,kg/TJ,10.283363999999999,Gas Oil combustion consumption by railway transport,AR-X,SESCO,annual,kg,89c37af0-f2c6-3ba3-987b-a809ea562587 -2022,Córdoba,II.2.1,2.6367599999999998,TJ,N2O,3.9,kg/TJ,10.283363999999999,Gas Oil combustion consumption by railway transport,AR-X,SESCO,annual,kg,89c37af0-f2c6-3ba3-987b-a809ea562587 -2022,La Pampa,II.2.1,25.97028,TJ,CO2,74100.0,kg/TJ,1924397.748,Gas Oil combustion consumption by railway transport,AR-L,SESCO,annual,kg,2dc27361-365d-3d37-bb50-6bc73308e3a0 -2022,La Pampa,II.2.1,25.97028,TJ,CH4,3.9,kg/TJ,101.28409199999999,Gas Oil combustion consumption by railway transport,AR-L,SESCO,annual,kg,b3957907-b6c7-3a84-9d12-5b828a1e401d -2022,La Pampa,II.2.1,25.97028,TJ,N2O,3.9,kg/TJ,101.28409199999999,Gas Oil combustion consumption by railway transport,AR-L,SESCO,annual,kg,b3957907-b6c7-3a84-9d12-5b828a1e401d -2022,Neuquén,II.2.1,2.6728799999999997,TJ,CO2,74100.0,kg/TJ,198060.40799999997,Gas Oil combustion consumption by railway transport,AR-Q,SESCO,annual,kg,5238561e-a42e-3ea5-a0b8-35943a010a10 -2022,Neuquén,II.2.1,2.6728799999999997,TJ,CH4,3.9,kg/TJ,10.424231999999998,Gas Oil combustion consumption by railway transport,AR-Q,SESCO,annual,kg,2042fb71-88e2-35c6-a9a8-d2dc0a903ece -2022,Neuquén,II.2.1,2.6728799999999997,TJ,N2O,3.9,kg/TJ,10.424231999999998,Gas Oil combustion consumption by railway transport,AR-Q,SESCO,annual,kg,2042fb71-88e2-35c6-a9a8-d2dc0a903ece -2022,Santa Fe,II.2.1,48.36468,TJ,CO2,74100.0,kg/TJ,3583822.788,Gas Oil combustion consumption by railway transport,AR-S,SESCO,annual,kg,7386bedc-0c95-39f2-b334-2fc8e4362697 -2022,Santa Fe,II.2.1,48.36468,TJ,CH4,3.9,kg/TJ,188.622252,Gas Oil combustion consumption by railway transport,AR-S,SESCO,annual,kg,b599c795-9318-3f4c-a524-5892055e5648 -2022,Santa Fe,II.2.1,48.36468,TJ,N2O,3.9,kg/TJ,188.622252,Gas Oil combustion consumption by railway transport,AR-S,SESCO,annual,kg,b599c795-9318-3f4c-a524-5892055e5648 -2022,Santiago del Estero,II.2.1,4.3344,TJ,CO2,74100.0,kg/TJ,321179.04,Gas Oil combustion consumption by railway transport,AR-G,SESCO,annual,kg,1540a6f3-1328-34b6-a2bc-98dcbcf526d4 -2022,Santiago del Estero,II.2.1,4.3344,TJ,CH4,3.9,kg/TJ,16.904159999999997,Gas Oil combustion consumption by railway transport,AR-G,SESCO,annual,kg,c61eb61c-8a5b-3e85-8a3b-a54b8825b9f1 -2022,Santiago del Estero,II.2.1,4.3344,TJ,N2O,3.9,kg/TJ,16.904159999999997,Gas Oil combustion consumption by railway transport,AR-G,SESCO,annual,kg,c61eb61c-8a5b-3e85-8a3b-a54b8825b9f1 -2022,Tucuman,II.2.1,2.81736,TJ,CO2,74100.0,kg/TJ,208766.376,Gas Oil combustion consumption by railway transport,AR-T,SESCO,annual,kg,6aa0a0ab-e93c-31d7-9e98-88d0716c9e67 -2022,Tucuman,II.2.1,2.81736,TJ,CH4,3.9,kg/TJ,10.987703999999999,Gas Oil combustion consumption by railway transport,AR-T,SESCO,annual,kg,d320e35d-e874-3171-9ad3-02dc6f37cc21 -2022,Tucuman,II.2.1,2.81736,TJ,N2O,3.9,kg/TJ,10.987703999999999,Gas Oil combustion consumption by railway transport,AR-T,SESCO,annual,kg,d320e35d-e874-3171-9ad3-02dc6f37cc21 -2022,Buenos Aires,II.1.1,1334.634,TJ,CO2,74100.0,kg/TJ,98896379.4,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,0bbc4dbf-2810-3c8b-b954-88a1751e0006 -2022,Buenos Aires,II.1.1,1334.634,TJ,CH4,3.9,kg/TJ,5205.0725999999995,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,0c56768c-ce92-3e05-9646-5f8a5c69eada -2022,Buenos Aires,II.1.1,1334.634,TJ,N2O,3.9,kg/TJ,5205.0725999999995,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,0c56768c-ce92-3e05-9646-5f8a5c69eada -2022,Capital Federal,II.1.1,1026.0608399999999,TJ,CO2,74100.0,kg/TJ,76031108.24399999,Gas Oil combustion consumption by freight transport,AR-C,SESCO,annual,kg,e12bea3e-c860-31e3-82da-fda8d1bb1e0d -2022,Capital Federal,II.1.1,1026.0608399999999,TJ,CH4,3.9,kg/TJ,4001.6372759999995,Gas Oil combustion consumption by freight transport,AR-C,SESCO,annual,kg,24969856-7be6-3ab2-8dac-1d7643b69240 -2022,Capital Federal,II.1.1,1026.0608399999999,TJ,N2O,3.9,kg/TJ,4001.6372759999995,Gas Oil combustion consumption by freight transport,AR-C,SESCO,annual,kg,24969856-7be6-3ab2-8dac-1d7643b69240 -2022,Catamarca,II.1.1,1.58928,TJ,CO2,74100.0,kg/TJ,117765.648,Gas Oil combustion consumption by freight transport,AR-K,SESCO,annual,kg,b26c7a92-6a6a-3cf8-82fe-1e59dac5f58b -2022,Catamarca,II.1.1,1.58928,TJ,CH4,3.9,kg/TJ,6.198192,Gas Oil combustion consumption by freight transport,AR-K,SESCO,annual,kg,909fb543-b106-37a9-b031-8f982acc87ba -2022,Catamarca,II.1.1,1.58928,TJ,N2O,3.9,kg/TJ,6.198192,Gas Oil combustion consumption by freight transport,AR-K,SESCO,annual,kg,909fb543-b106-37a9-b031-8f982acc87ba -2022,Chaco,II.1.1,20.48004,TJ,CO2,74100.0,kg/TJ,1517570.964,Gas Oil combustion consumption by freight transport,AR-H,SESCO,annual,kg,9d44d99c-3cf5-39b0-a5b2-e7f4f46fbb1a -2022,Chaco,II.1.1,20.48004,TJ,CH4,3.9,kg/TJ,79.87215599999999,Gas Oil combustion consumption by freight transport,AR-H,SESCO,annual,kg,804551ba-00cc-33ca-9972-4432356fa573 -2022,Chaco,II.1.1,20.48004,TJ,N2O,3.9,kg/TJ,79.87215599999999,Gas Oil combustion consumption by freight transport,AR-H,SESCO,annual,kg,804551ba-00cc-33ca-9972-4432356fa573 -2022,Chubut,II.1.1,12.20856,TJ,CO2,74100.0,kg/TJ,904654.296,Gas Oil combustion consumption by freight transport,AR-U,SESCO,annual,kg,f1e87c4a-7838-3f45-84d6-9e3b7060600c -2022,Chubut,II.1.1,12.20856,TJ,CH4,3.9,kg/TJ,47.613384,Gas Oil combustion consumption by freight transport,AR-U,SESCO,annual,kg,88ef70f7-e83e-3449-9249-c94565512ae1 -2022,Chubut,II.1.1,12.20856,TJ,N2O,3.9,kg/TJ,47.613384,Gas Oil combustion consumption by freight transport,AR-U,SESCO,annual,kg,88ef70f7-e83e-3449-9249-c94565512ae1 -2022,Corrientes,II.1.1,43.84968,TJ,CO2,74100.0,kg/TJ,3249261.288,Gas Oil combustion consumption by freight transport,AR-W,SESCO,annual,kg,62c24a64-00ea-3674-80f6-026272f8928e -2022,Corrientes,II.1.1,43.84968,TJ,CH4,3.9,kg/TJ,171.01375199999998,Gas Oil combustion consumption by freight transport,AR-W,SESCO,annual,kg,969e43ce-4b38-38cc-93de-e627b03eea55 -2022,Corrientes,II.1.1,43.84968,TJ,N2O,3.9,kg/TJ,171.01375199999998,Gas Oil combustion consumption by freight transport,AR-W,SESCO,annual,kg,969e43ce-4b38-38cc-93de-e627b03eea55 -2022,Córdoba,II.1.1,228.60348,TJ,CO2,74100.0,kg/TJ,16939517.868,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,82013829-ff62-366c-93ef-c7864a01abf3 -2022,Córdoba,II.1.1,228.60348,TJ,CH4,3.9,kg/TJ,891.5535719999999,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,1aad1dd9-b7d8-36dc-ae51-96329d34d09e -2022,Córdoba,II.1.1,228.60348,TJ,N2O,3.9,kg/TJ,891.5535719999999,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,1aad1dd9-b7d8-36dc-ae51-96329d34d09e -2022,Entre Rios,II.1.1,51.326519999999995,TJ,CO2,74100.0,kg/TJ,3803295.1319999998,Gas Oil combustion consumption by freight transport,AR-E,SESCO,annual,kg,c63870d8-1346-371e-bd61-f4f2372d06ca -2022,Entre Rios,II.1.1,51.326519999999995,TJ,CH4,3.9,kg/TJ,200.17342799999997,Gas Oil combustion consumption by freight transport,AR-E,SESCO,annual,kg,ffeca996-88ee-3dee-99f0-dd10c644cf8e -2022,Entre Rios,II.1.1,51.326519999999995,TJ,N2O,3.9,kg/TJ,200.17342799999997,Gas Oil combustion consumption by freight transport,AR-E,SESCO,annual,kg,ffeca996-88ee-3dee-99f0-dd10c644cf8e -2022,Formosa,II.1.1,4.76784,TJ,CO2,74100.0,kg/TJ,353296.94399999996,Gas Oil combustion consumption by freight transport,AR-P,SESCO,annual,kg,fdda7b35-f9a1-3b32-820e-de060ced8689 -2022,Formosa,II.1.1,4.76784,TJ,CH4,3.9,kg/TJ,18.594575999999996,Gas Oil combustion consumption by freight transport,AR-P,SESCO,annual,kg,ac500c0d-27fc-392e-9b84-e0f9606f322a -2022,Formosa,II.1.1,4.76784,TJ,N2O,3.9,kg/TJ,18.594575999999996,Gas Oil combustion consumption by freight transport,AR-P,SESCO,annual,kg,ac500c0d-27fc-392e-9b84-e0f9606f322a -2022,Jujuy,II.1.1,1.6976399999999998,TJ,CO2,74100.0,kg/TJ,125795.12399999998,Gas Oil combustion consumption by freight transport,AR-Y,SESCO,annual,kg,b3976388-2891-3dd7-9c4b-fba22959be6c -2022,Jujuy,II.1.1,1.6976399999999998,TJ,CH4,3.9,kg/TJ,6.6207959999999995,Gas Oil combustion consumption by freight transport,AR-Y,SESCO,annual,kg,1a9d17d8-9857-3e21-a955-bdbb11042a0b -2022,Jujuy,II.1.1,1.6976399999999998,TJ,N2O,3.9,kg/TJ,6.6207959999999995,Gas Oil combustion consumption by freight transport,AR-Y,SESCO,annual,kg,1a9d17d8-9857-3e21-a955-bdbb11042a0b -2022,La Pampa,II.1.1,10.22196,TJ,CO2,74100.0,kg/TJ,757447.2359999999,Gas Oil combustion consumption by freight transport,AR-L,SESCO,annual,kg,c90e8e00-77f8-33f0-ac93-73dd79b56ad1 -2022,La Pampa,II.1.1,10.22196,TJ,CH4,3.9,kg/TJ,39.865643999999996,Gas Oil combustion consumption by freight transport,AR-L,SESCO,annual,kg,8b6eca42-c74a-369d-b57d-9ff114b2c143 -2022,La Pampa,II.1.1,10.22196,TJ,N2O,3.9,kg/TJ,39.865643999999996,Gas Oil combustion consumption by freight transport,AR-L,SESCO,annual,kg,8b6eca42-c74a-369d-b57d-9ff114b2c143 -2022,La Rioja,II.1.1,0.50568,TJ,CO2,74100.0,kg/TJ,37470.888,Gas Oil combustion consumption by freight transport,AR-F,SESCO,annual,kg,5b1c0e3c-6cbe-3802-a162-004a3ef6f56a -2022,La Rioja,II.1.1,0.50568,TJ,CH4,3.9,kg/TJ,1.9721520000000001,Gas Oil combustion consumption by freight transport,AR-F,SESCO,annual,kg,2a007deb-e99d-3e18-beca-6fdaa2603024 -2022,La Rioja,II.1.1,0.50568,TJ,N2O,3.9,kg/TJ,1.9721520000000001,Gas Oil combustion consumption by freight transport,AR-F,SESCO,annual,kg,2a007deb-e99d-3e18-beca-6fdaa2603024 -2022,Mendoza,II.1.1,135.30552,TJ,CO2,74100.0,kg/TJ,10026139.032,Gas Oil combustion consumption by freight transport,AR-M,SESCO,annual,kg,a2f64bc1-259f-3e19-9fcf-148824701bcc -2022,Mendoza,II.1.1,135.30552,TJ,CH4,3.9,kg/TJ,527.691528,Gas Oil combustion consumption by freight transport,AR-M,SESCO,annual,kg,563b27fc-9277-3020-8414-511402588775 -2022,Mendoza,II.1.1,135.30552,TJ,N2O,3.9,kg/TJ,527.691528,Gas Oil combustion consumption by freight transport,AR-M,SESCO,annual,kg,563b27fc-9277-3020-8414-511402588775 -2022,Misiones,II.1.1,135.01656,TJ,CO2,74100.0,kg/TJ,10004727.095999999,Gas Oil combustion consumption by freight transport,AR-N,SESCO,annual,kg,18a3b701-ecde-31cc-a20c-f4da5a483efa -2022,Misiones,II.1.1,135.01656,TJ,CH4,3.9,kg/TJ,526.564584,Gas Oil combustion consumption by freight transport,AR-N,SESCO,annual,kg,eab3107e-25ab-39a6-97bd-4fce0f564a49 -2022,Misiones,II.1.1,135.01656,TJ,N2O,3.9,kg/TJ,526.564584,Gas Oil combustion consumption by freight transport,AR-N,SESCO,annual,kg,eab3107e-25ab-39a6-97bd-4fce0f564a49 -2022,Neuquén,II.1.1,0.79464,TJ,CO2,74100.0,kg/TJ,58882.824,Gas Oil combustion consumption by freight transport,AR-Q,SESCO,annual,kg,df7a71ee-49da-3197-b54c-27576cc77386 -2022,Neuquén,II.1.1,0.79464,TJ,CH4,3.9,kg/TJ,3.099096,Gas Oil combustion consumption by freight transport,AR-Q,SESCO,annual,kg,6d92980b-7277-3523-bb77-070c1419c15c -2022,Neuquén,II.1.1,0.79464,TJ,N2O,3.9,kg/TJ,3.099096,Gas Oil combustion consumption by freight transport,AR-Q,SESCO,annual,kg,6d92980b-7277-3523-bb77-070c1419c15c -2022,Rio Negro,II.1.1,142.09608,TJ,CO2,74100.0,kg/TJ,10529319.528,Gas Oil combustion consumption by freight transport,AR-R,SESCO,annual,kg,8b4159aa-ba73-37a1-ab34-68a585f3602a -2022,Rio Negro,II.1.1,142.09608,TJ,CH4,3.9,kg/TJ,554.174712,Gas Oil combustion consumption by freight transport,AR-R,SESCO,annual,kg,8b245f74-61a1-326b-a070-a0c389bc6579 -2022,Rio Negro,II.1.1,142.09608,TJ,N2O,3.9,kg/TJ,554.174712,Gas Oil combustion consumption by freight transport,AR-R,SESCO,annual,kg,8b245f74-61a1-326b-a070-a0c389bc6579 -2022,Salta,II.1.1,195.30084,TJ,CO2,74100.0,kg/TJ,14471792.243999999,Gas Oil combustion consumption by freight transport,AR-A,SESCO,annual,kg,164a76f6-f4f8-3103-b480-14a230928e65 -2022,Salta,II.1.1,195.30084,TJ,CH4,3.9,kg/TJ,761.673276,Gas Oil combustion consumption by freight transport,AR-A,SESCO,annual,kg,ff3ab2c8-0fa6-345c-aff6-d935652b617c -2022,Salta,II.1.1,195.30084,TJ,N2O,3.9,kg/TJ,761.673276,Gas Oil combustion consumption by freight transport,AR-A,SESCO,annual,kg,ff3ab2c8-0fa6-345c-aff6-d935652b617c -2022,San Juan,II.1.1,4.5872399999999995,TJ,CO2,74100.0,kg/TJ,339914.48399999994,Gas Oil combustion consumption by freight transport,AR-J,SESCO,annual,kg,38cb020b-07ef-3f23-ade8-3f3d101155e8 -2022,San Juan,II.1.1,4.5872399999999995,TJ,CH4,3.9,kg/TJ,17.890235999999998,Gas Oil combustion consumption by freight transport,AR-J,SESCO,annual,kg,950b6d8e-6557-3dba-bd30-1a7f7244bb27 -2022,San Juan,II.1.1,4.5872399999999995,TJ,N2O,3.9,kg/TJ,17.890235999999998,Gas Oil combustion consumption by freight transport,AR-J,SESCO,annual,kg,950b6d8e-6557-3dba-bd30-1a7f7244bb27 -2022,San Luis,II.1.1,113.45291999999999,TJ,CO2,74100.0,kg/TJ,8406861.372,Gas Oil combustion consumption by freight transport,AR-D,SESCO,annual,kg,c58b3deb-ca63-31b3-8e54-d53c6a39f478 -2022,San Luis,II.1.1,113.45291999999999,TJ,CH4,3.9,kg/TJ,442.46638799999994,Gas Oil combustion consumption by freight transport,AR-D,SESCO,annual,kg,b705259f-5ea5-3160-8897-07cca48f94fe -2022,San Luis,II.1.1,113.45291999999999,TJ,N2O,3.9,kg/TJ,442.46638799999994,Gas Oil combustion consumption by freight transport,AR-D,SESCO,annual,kg,b705259f-5ea5-3160-8897-07cca48f94fe -2022,Santa Cruz,II.1.1,6.57384,TJ,CO2,74100.0,kg/TJ,487121.544,Gas Oil combustion consumption by freight transport,AR-Z,SESCO,annual,kg,c5799a37-d61d-32d5-b541-5ff55b00ea13 -2022,Santa Cruz,II.1.1,6.57384,TJ,CH4,3.9,kg/TJ,25.637976,Gas Oil combustion consumption by freight transport,AR-Z,SESCO,annual,kg,280f28a2-7293-32ef-b6c8-00569cd294e6 -2022,Santa Cruz,II.1.1,6.57384,TJ,N2O,3.9,kg/TJ,25.637976,Gas Oil combustion consumption by freight transport,AR-Z,SESCO,annual,kg,280f28a2-7293-32ef-b6c8-00569cd294e6 -2022,Santa Fe,II.1.1,583.6992,TJ,CO2,74100.0,kg/TJ,43252110.72,Gas Oil combustion consumption by freight transport,AR-S,SESCO,annual,kg,8fa4314c-b844-3b29-9636-633b717ef860 -2022,Santa Fe,II.1.1,583.6992,TJ,CH4,3.9,kg/TJ,2276.42688,Gas Oil combustion consumption by freight transport,AR-S,SESCO,annual,kg,b4cab9db-ff38-3f80-9577-7ecd17fc0a9b -2022,Santa Fe,II.1.1,583.6992,TJ,N2O,3.9,kg/TJ,2276.42688,Gas Oil combustion consumption by freight transport,AR-S,SESCO,annual,kg,b4cab9db-ff38-3f80-9577-7ecd17fc0a9b -2022,Santiago del Estero,II.1.1,82.31748,TJ,CO2,74100.0,kg/TJ,6099725.268,Gas Oil combustion consumption by freight transport,AR-G,SESCO,annual,kg,36d429fc-6cd3-3942-b516-4665f3d1bc3f -2022,Santiago del Estero,II.1.1,82.31748,TJ,CH4,3.9,kg/TJ,321.03817200000003,Gas Oil combustion consumption by freight transport,AR-G,SESCO,annual,kg,f26763f1-3919-3df6-964e-d54d960e29a9 -2022,Santiago del Estero,II.1.1,82.31748,TJ,N2O,3.9,kg/TJ,321.03817200000003,Gas Oil combustion consumption by freight transport,AR-G,SESCO,annual,kg,f26763f1-3919-3df6-964e-d54d960e29a9 -2022,Tierra del Fuego,II.1.1,1.2280799999999998,TJ,CO2,74100.0,kg/TJ,91000.72799999999,Gas Oil combustion consumption by freight transport,AR-V,SESCO,annual,kg,4e142355-f629-357b-a53d-4268c3140ca8 -2022,Tierra del Fuego,II.1.1,1.2280799999999998,TJ,CH4,3.9,kg/TJ,4.789511999999999,Gas Oil combustion consumption by freight transport,AR-V,SESCO,annual,kg,830e73cb-0fb4-3618-831a-6364340b0b40 -2022,Tierra del Fuego,II.1.1,1.2280799999999998,TJ,N2O,3.9,kg/TJ,4.789511999999999,Gas Oil combustion consumption by freight transport,AR-V,SESCO,annual,kg,830e73cb-0fb4-3618-831a-6364340b0b40 -2022,Tucuman,II.1.1,50.24292,TJ,CO2,74100.0,kg/TJ,3723000.372,Gas Oil combustion consumption by freight transport,AR-T,SESCO,annual,kg,c7b3346f-b905-3b39-977b-3523f1f7f0fc -2022,Tucuman,II.1.1,50.24292,TJ,CH4,3.9,kg/TJ,195.947388,Gas Oil combustion consumption by freight transport,AR-T,SESCO,annual,kg,8822c7bc-2f5f-33b0-8ec1-d1b696b1c1ef -2022,Tucuman,II.1.1,50.24292,TJ,N2O,3.9,kg/TJ,195.947388,Gas Oil combustion consumption by freight transport,AR-T,SESCO,annual,kg,8822c7bc-2f5f-33b0-8ec1-d1b696b1c1ef -2022,Buenos Aires,II.1.1,392.2632,TJ,CO2,74100.0,kg/TJ,29066703.119999997,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,e32ac433-3a84-3c14-a7c3-f3fcbb892386 -2022,Buenos Aires,II.1.1,392.2632,TJ,CH4,3.9,kg/TJ,1529.82648,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,03b8ddb5-a0b3-3b81-822c-7079dc94e0d1 -2022,Buenos Aires,II.1.1,392.2632,TJ,N2O,3.9,kg/TJ,1529.82648,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,03b8ddb5-a0b3-3b81-822c-7079dc94e0d1 -2022,Capital Federal,II.1.1,242.97923999999998,TJ,CO2,74100.0,kg/TJ,18004761.683999997,Gas Oil combustion consumption by freight transport,AR-C,SESCO,annual,kg,4cecb465-791e-3f17-890f-cfaf09944fe2 -2022,Capital Federal,II.1.1,242.97923999999998,TJ,CH4,3.9,kg/TJ,947.6190359999999,Gas Oil combustion consumption by freight transport,AR-C,SESCO,annual,kg,f7550fac-9d79-3747-91d4-6c34bcca1021 -2022,Capital Federal,II.1.1,242.97923999999998,TJ,N2O,3.9,kg/TJ,947.6190359999999,Gas Oil combustion consumption by freight transport,AR-C,SESCO,annual,kg,f7550fac-9d79-3747-91d4-6c34bcca1021 -2022,Catamarca,II.1.1,0.07224,TJ,CO2,74100.0,kg/TJ,5352.9839999999995,Gas Oil combustion consumption by freight transport,AR-K,SESCO,annual,kg,e7715d4e-3cad-3ba4-bcd1-97e6b3d55b5d -2022,Catamarca,II.1.1,0.07224,TJ,CH4,3.9,kg/TJ,0.281736,Gas Oil combustion consumption by freight transport,AR-K,SESCO,annual,kg,f578967a-25b0-3393-9bad-7347c26dd5bc -2022,Catamarca,II.1.1,0.07224,TJ,N2O,3.9,kg/TJ,0.281736,Gas Oil combustion consumption by freight transport,AR-K,SESCO,annual,kg,f578967a-25b0-3393-9bad-7347c26dd5bc -2022,Chaco,II.1.1,5.88756,TJ,CO2,74100.0,kg/TJ,436268.196,Gas Oil combustion consumption by freight transport,AR-H,SESCO,annual,kg,17c92d51-2c31-310f-a104-972b1a2b5587 -2022,Chaco,II.1.1,5.88756,TJ,CH4,3.9,kg/TJ,22.961484,Gas Oil combustion consumption by freight transport,AR-H,SESCO,annual,kg,7f1b6810-d9cf-3976-a652-1a7bfe06bdae -2022,Chaco,II.1.1,5.88756,TJ,N2O,3.9,kg/TJ,22.961484,Gas Oil combustion consumption by freight transport,AR-H,SESCO,annual,kg,7f1b6810-d9cf-3976-a652-1a7bfe06bdae -2022,Chubut,II.1.1,2.3478,TJ,CO2,74100.0,kg/TJ,173971.97999999998,Gas Oil combustion consumption by freight transport,AR-U,SESCO,annual,kg,413d030d-5c30-3b8c-b273-2120fb61d8b1 -2022,Chubut,II.1.1,2.3478,TJ,CH4,3.9,kg/TJ,9.156419999999999,Gas Oil combustion consumption by freight transport,AR-U,SESCO,annual,kg,edf8f763-1a46-3577-816d-5cb70ed18fc7 -2022,Chubut,II.1.1,2.3478,TJ,N2O,3.9,kg/TJ,9.156419999999999,Gas Oil combustion consumption by freight transport,AR-U,SESCO,annual,kg,edf8f763-1a46-3577-816d-5cb70ed18fc7 -2022,Corrientes,II.1.1,8.74104,TJ,CO2,74100.0,kg/TJ,647711.064,Gas Oil combustion consumption by freight transport,AR-W,SESCO,annual,kg,00ffe32a-f1a1-3f2d-b4a0-06b3b53002a2 -2022,Corrientes,II.1.1,8.74104,TJ,CH4,3.9,kg/TJ,34.090056,Gas Oil combustion consumption by freight transport,AR-W,SESCO,annual,kg,d78c5ba1-9d46-3522-b168-4f377dcbfe08 -2022,Corrientes,II.1.1,8.74104,TJ,N2O,3.9,kg/TJ,34.090056,Gas Oil combustion consumption by freight transport,AR-W,SESCO,annual,kg,d78c5ba1-9d46-3522-b168-4f377dcbfe08 -2022,Córdoba,II.1.1,22.64724,TJ,CO2,74100.0,kg/TJ,1678160.484,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,d5474aaa-ef7d-317c-8fef-74110b72549d -2022,Córdoba,II.1.1,22.64724,TJ,CH4,3.9,kg/TJ,88.324236,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,be6d447e-687a-3265-bee0-edf97c98054e -2022,Córdoba,II.1.1,22.64724,TJ,N2O,3.9,kg/TJ,88.324236,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,be6d447e-687a-3265-bee0-edf97c98054e -2022,Entre Rios,II.1.1,5.9597999999999995,TJ,CO2,74100.0,kg/TJ,441621.18,Gas Oil combustion consumption by freight transport,AR-E,SESCO,annual,kg,0329033e-ef31-31af-9034-3eacf87f1c31 -2022,Entre Rios,II.1.1,5.9597999999999995,TJ,CH4,3.9,kg/TJ,23.243219999999997,Gas Oil combustion consumption by freight transport,AR-E,SESCO,annual,kg,c34f43d5-7e83-321c-8ba8-7a449fc3bd6e -2022,Entre Rios,II.1.1,5.9597999999999995,TJ,N2O,3.9,kg/TJ,23.243219999999997,Gas Oil combustion consumption by freight transport,AR-E,SESCO,annual,kg,c34f43d5-7e83-321c-8ba8-7a449fc3bd6e -2022,Formosa,II.1.1,1.0836,TJ,CO2,74100.0,kg/TJ,80294.76,Gas Oil combustion consumption by freight transport,AR-P,SESCO,annual,kg,f0f98973-50ad-3baf-9989-f4390515350f -2022,Formosa,II.1.1,1.0836,TJ,CH4,3.9,kg/TJ,4.226039999999999,Gas Oil combustion consumption by freight transport,AR-P,SESCO,annual,kg,5356b9fb-06e9-3137-9e58-fbdaf4e4ffc7 -2022,Formosa,II.1.1,1.0836,TJ,N2O,3.9,kg/TJ,4.226039999999999,Gas Oil combustion consumption by freight transport,AR-P,SESCO,annual,kg,5356b9fb-06e9-3137-9e58-fbdaf4e4ffc7 -2022,Jujuy,II.1.1,0.32508,TJ,CO2,74100.0,kg/TJ,24088.428,Gas Oil combustion consumption by freight transport,AR-Y,SESCO,annual,kg,fcaf739a-dfa4-3954-8c9f-9a2df51659ee -2022,Jujuy,II.1.1,0.32508,TJ,CH4,3.9,kg/TJ,1.267812,Gas Oil combustion consumption by freight transport,AR-Y,SESCO,annual,kg,c3ebb5ba-1d7c-329e-adff-4e6c88a16b28 -2022,Jujuy,II.1.1,0.32508,TJ,N2O,3.9,kg/TJ,1.267812,Gas Oil combustion consumption by freight transport,AR-Y,SESCO,annual,kg,c3ebb5ba-1d7c-329e-adff-4e6c88a16b28 -2022,La Pampa,II.1.1,0.28896,TJ,CO2,74100.0,kg/TJ,21411.935999999998,Gas Oil combustion consumption by freight transport,AR-L,SESCO,annual,kg,5ba0f049-0653-35a9-8d48-7459ba7d4c3d -2022,La Pampa,II.1.1,0.28896,TJ,CH4,3.9,kg/TJ,1.126944,Gas Oil combustion consumption by freight transport,AR-L,SESCO,annual,kg,5dc698ce-7188-38fe-8b00-db5ec8b4c379 -2022,La Pampa,II.1.1,0.28896,TJ,N2O,3.9,kg/TJ,1.126944,Gas Oil combustion consumption by freight transport,AR-L,SESCO,annual,kg,5dc698ce-7188-38fe-8b00-db5ec8b4c379 -2022,Mendoza,II.1.1,9.89688,TJ,CO2,74100.0,kg/TJ,733358.808,Gas Oil combustion consumption by freight transport,AR-M,SESCO,annual,kg,a129c8a3-1a9b-3922-af8a-13425ba8280b -2022,Mendoza,II.1.1,9.89688,TJ,CH4,3.9,kg/TJ,38.597832,Gas Oil combustion consumption by freight transport,AR-M,SESCO,annual,kg,9a12e80f-a7d5-3961-b61d-08eaa52d6bae -2022,Mendoza,II.1.1,9.89688,TJ,N2O,3.9,kg/TJ,38.597832,Gas Oil combustion consumption by freight transport,AR-M,SESCO,annual,kg,9a12e80f-a7d5-3961-b61d-08eaa52d6bae -2022,Misiones,II.1.1,3.90096,TJ,CO2,74100.0,kg/TJ,289061.136,Gas Oil combustion consumption by freight transport,AR-N,SESCO,annual,kg,b908dc04-ab02-329c-8118-aedc81e0f36d -2022,Misiones,II.1.1,3.90096,TJ,CH4,3.9,kg/TJ,15.213744,Gas Oil combustion consumption by freight transport,AR-N,SESCO,annual,kg,f92fa711-5312-38bb-8407-ad4a55d2eb72 -2022,Misiones,II.1.1,3.90096,TJ,N2O,3.9,kg/TJ,15.213744,Gas Oil combustion consumption by freight transport,AR-N,SESCO,annual,kg,f92fa711-5312-38bb-8407-ad4a55d2eb72 -2022,Neuquén,II.1.1,0.43344,TJ,CO2,74100.0,kg/TJ,32117.904,Gas Oil combustion consumption by freight transport,AR-Q,SESCO,annual,kg,1e3b6236-f73d-325a-8379-482af95613db -2022,Neuquén,II.1.1,0.43344,TJ,CH4,3.9,kg/TJ,1.690416,Gas Oil combustion consumption by freight transport,AR-Q,SESCO,annual,kg,55af3c4b-c8d3-3866-86b9-b20a9624d563 -2022,Neuquén,II.1.1,0.43344,TJ,N2O,3.9,kg/TJ,1.690416,Gas Oil combustion consumption by freight transport,AR-Q,SESCO,annual,kg,55af3c4b-c8d3-3866-86b9-b20a9624d563 -2022,Rio Negro,II.1.1,27.523439999999997,TJ,CO2,74100.0,kg/TJ,2039486.9039999999,Gas Oil combustion consumption by freight transport,AR-R,SESCO,annual,kg,e972a9b1-472a-3585-9869-0631eb4d4fb3 -2022,Rio Negro,II.1.1,27.523439999999997,TJ,CH4,3.9,kg/TJ,107.34141599999998,Gas Oil combustion consumption by freight transport,AR-R,SESCO,annual,kg,a94760d4-55a7-332a-baef-b146cfc8076c -2022,Rio Negro,II.1.1,27.523439999999997,TJ,N2O,3.9,kg/TJ,107.34141599999998,Gas Oil combustion consumption by freight transport,AR-R,SESCO,annual,kg,a94760d4-55a7-332a-baef-b146cfc8076c -2022,Salta,II.1.1,0.32508,TJ,CO2,74100.0,kg/TJ,24088.428,Gas Oil combustion consumption by freight transport,AR-A,SESCO,annual,kg,dcb5295a-b55f-3469-9bba-8f90892a11e7 -2022,Salta,II.1.1,0.32508,TJ,CH4,3.9,kg/TJ,1.267812,Gas Oil combustion consumption by freight transport,AR-A,SESCO,annual,kg,bd8ab32d-d37f-393c-ac1b-21417de79e02 -2022,Salta,II.1.1,0.32508,TJ,N2O,3.9,kg/TJ,1.267812,Gas Oil combustion consumption by freight transport,AR-A,SESCO,annual,kg,bd8ab32d-d37f-393c-ac1b-21417de79e02 -2022,San Juan,II.1.1,1.30032,TJ,CO2,74100.0,kg/TJ,96353.712,Gas Oil combustion consumption by freight transport,AR-J,SESCO,annual,kg,b132ceb0-de21-39b2-8b53-66be0bffcc16 -2022,San Juan,II.1.1,1.30032,TJ,CH4,3.9,kg/TJ,5.071248,Gas Oil combustion consumption by freight transport,AR-J,SESCO,annual,kg,131b2c19-ac8b-3f4f-9b1a-14fb32d3c5e0 -2022,San Juan,II.1.1,1.30032,TJ,N2O,3.9,kg/TJ,5.071248,Gas Oil combustion consumption by freight transport,AR-J,SESCO,annual,kg,131b2c19-ac8b-3f4f-9b1a-14fb32d3c5e0 -2022,San Luis,II.1.1,2.709,TJ,CO2,74100.0,kg/TJ,200736.9,Gas Oil combustion consumption by freight transport,AR-D,SESCO,annual,kg,472c0f7f-5072-38cc-a38a-21e5438a8179 -2022,San Luis,II.1.1,2.709,TJ,CH4,3.9,kg/TJ,10.5651,Gas Oil combustion consumption by freight transport,AR-D,SESCO,annual,kg,6dd4241a-261d-36ae-932d-7d6b002ea3cf -2022,San Luis,II.1.1,2.709,TJ,N2O,3.9,kg/TJ,10.5651,Gas Oil combustion consumption by freight transport,AR-D,SESCO,annual,kg,6dd4241a-261d-36ae-932d-7d6b002ea3cf -2022,Santa Cruz,II.1.1,0.18059999999999998,TJ,CO2,74100.0,kg/TJ,13382.46,Gas Oil combustion consumption by freight transport,AR-Z,SESCO,annual,kg,3d248a3a-a0ca-396e-bbaf-e695d53f2c13 -2022,Santa Cruz,II.1.1,0.18059999999999998,TJ,CH4,3.9,kg/TJ,0.70434,Gas Oil combustion consumption by freight transport,AR-Z,SESCO,annual,kg,306a3ed5-391a-3f84-b349-fda58778f506 -2022,Santa Cruz,II.1.1,0.18059999999999998,TJ,N2O,3.9,kg/TJ,0.70434,Gas Oil combustion consumption by freight transport,AR-Z,SESCO,annual,kg,306a3ed5-391a-3f84-b349-fda58778f506 -2022,Santa Fe,II.1.1,49.881719999999994,TJ,CO2,74100.0,kg/TJ,3696235.4519999996,Gas Oil combustion consumption by freight transport,AR-S,SESCO,annual,kg,6a4424a2-401d-3dc2-82bd-66dce8cb8a43 -2022,Santa Fe,II.1.1,49.881719999999994,TJ,CH4,3.9,kg/TJ,194.53870799999999,Gas Oil combustion consumption by freight transport,AR-S,SESCO,annual,kg,7252ce42-74f6-3dac-b93b-773d668bb0a2 -2022,Santa Fe,II.1.1,49.881719999999994,TJ,N2O,3.9,kg/TJ,194.53870799999999,Gas Oil combustion consumption by freight transport,AR-S,SESCO,annual,kg,7252ce42-74f6-3dac-b93b-773d668bb0a2 -2022,Santiago del Estero,II.1.1,2.23944,TJ,CO2,74100.0,kg/TJ,165942.50400000002,Gas Oil combustion consumption by freight transport,AR-G,SESCO,annual,kg,50079bee-0551-3a94-87d5-fbe6f2b6f5ec -2022,Santiago del Estero,II.1.1,2.23944,TJ,CH4,3.9,kg/TJ,8.733816000000001,Gas Oil combustion consumption by freight transport,AR-G,SESCO,annual,kg,b8d9302d-cdc3-303c-a7ce-5b03a1b5777a -2022,Santiago del Estero,II.1.1,2.23944,TJ,N2O,3.9,kg/TJ,8.733816000000001,Gas Oil combustion consumption by freight transport,AR-G,SESCO,annual,kg,b8d9302d-cdc3-303c-a7ce-5b03a1b5777a -2022,Tucuman,II.1.1,3.64812,TJ,CO2,74100.0,kg/TJ,270325.692,Gas Oil combustion consumption by freight transport,AR-T,SESCO,annual,kg,017b65c1-bf04-3c88-834d-942f4a90268c -2022,Tucuman,II.1.1,3.64812,TJ,CH4,3.9,kg/TJ,14.227668,Gas Oil combustion consumption by freight transport,AR-T,SESCO,annual,kg,2ad9b0f0-1934-334b-ae76-984ee7fa9cc6 -2022,Tucuman,II.1.1,3.64812,TJ,N2O,3.9,kg/TJ,14.227668,Gas Oil combustion consumption by freight transport,AR-T,SESCO,annual,kg,2ad9b0f0-1934-334b-ae76-984ee7fa9cc6 -2022,Buenos Aires,II.1.1,23.128874999999997,TJ,CO2,73300.0,kg/TJ,1695346.5374999999,Naphtha combustion consumption by freight transport,AR-B,SESCO,annual,kg,4da9e2d6-2fd0-3e5a-89de-842489c2f2db -2022,Buenos Aires,II.1.1,23.128874999999997,TJ,CH4,0.5,kg/TJ,11.564437499999999,Naphtha combustion consumption by freight transport,AR-B,SESCO,annual,kg,af9c9770-6e55-3e0c-a4f9-cd2f1c9ca0c1 -2022,Buenos Aires,II.1.1,23.128874999999997,TJ,N2O,2.0,kg/TJ,46.257749999999994,Naphtha combustion consumption by freight transport,AR-B,SESCO,annual,kg,a15d8042-d6c7-3572-922a-2d2aead34b92 -2022,Capital Federal,II.1.1,24.328149999999997,TJ,CO2,73300.0,kg/TJ,1783253.3949999998,Naphtha combustion consumption by freight transport,AR-C,SESCO,annual,kg,aa97b8db-d795-3da9-b397-34b967ec15cf -2022,Capital Federal,II.1.1,24.328149999999997,TJ,CH4,0.5,kg/TJ,12.164074999999999,Naphtha combustion consumption by freight transport,AR-C,SESCO,annual,kg,d1578514-bbcf-3eb1-b9e0-038a957c5719 -2022,Capital Federal,II.1.1,24.328149999999997,TJ,N2O,2.0,kg/TJ,48.656299999999995,Naphtha combustion consumption by freight transport,AR-C,SESCO,annual,kg,6cba7fa2-e766-31db-b856-cf69ff2dce55 -2022,Chubut,II.1.1,0.171325,TJ,CO2,73300.0,kg/TJ,12558.1225,Naphtha combustion consumption by freight transport,AR-U,SESCO,annual,kg,63b15109-bbe9-39f3-a071-511663c4e508 -2022,Chubut,II.1.1,0.171325,TJ,CH4,0.5,kg/TJ,0.0856625,Naphtha combustion consumption by freight transport,AR-U,SESCO,annual,kg,de5c2311-1e10-3563-9b1c-db64f817acd3 -2022,Chubut,II.1.1,0.171325,TJ,N2O,2.0,kg/TJ,0.34265,Naphtha combustion consumption by freight transport,AR-U,SESCO,annual,kg,402bb23d-2814-3f76-81d1-f9ebbfd9c3d0 -2022,Corrientes,II.1.1,0.06853,TJ,CO2,73300.0,kg/TJ,5023.249,Naphtha combustion consumption by freight transport,AR-W,SESCO,annual,kg,a502f74d-8dea-3764-8571-42bbb32d46d6 -2022,Corrientes,II.1.1,0.06853,TJ,CH4,0.5,kg/TJ,0.034265,Naphtha combustion consumption by freight transport,AR-W,SESCO,annual,kg,32ab94a9-8753-3977-8195-67f485e170dd -2022,Corrientes,II.1.1,0.06853,TJ,N2O,2.0,kg/TJ,0.13706,Naphtha combustion consumption by freight transport,AR-W,SESCO,annual,kg,a51b10e6-1761-379a-9ed0-9ddccbe9b25d -2022,Córdoba,II.1.1,3.186645,TJ,CO2,73300.0,kg/TJ,233581.0785,Naphtha combustion consumption by freight transport,AR-X,SESCO,annual,kg,20ca72d7-9648-3297-9e67-fbf147145b39 -2022,Córdoba,II.1.1,3.186645,TJ,CH4,0.5,kg/TJ,1.5933225,Naphtha combustion consumption by freight transport,AR-X,SESCO,annual,kg,b69137d5-ea2d-3838-9196-d20c5942d18f -2022,Córdoba,II.1.1,3.186645,TJ,N2O,2.0,kg/TJ,6.37329,Naphtha combustion consumption by freight transport,AR-X,SESCO,annual,kg,936cc4e9-ce81-3a5a-942d-4b67d0a5ee22 -2022,Entre Rios,II.1.1,0.102795,TJ,CO2,73300.0,kg/TJ,7534.8735,Naphtha combustion consumption by freight transport,AR-E,SESCO,annual,kg,d1bc0c3c-76ab-30d0-a9ec-93eddb591822 -2022,Entre Rios,II.1.1,0.102795,TJ,CH4,0.5,kg/TJ,0.0513975,Naphtha combustion consumption by freight transport,AR-E,SESCO,annual,kg,70d5639d-21fd-365e-99f0-bcad720d00de -2022,Entre Rios,II.1.1,0.102795,TJ,N2O,2.0,kg/TJ,0.20559,Naphtha combustion consumption by freight transport,AR-E,SESCO,annual,kg,0ecd244a-6cb7-3be0-a46f-2ad42e970d33 -2022,Mendoza,II.1.1,0.171325,TJ,CO2,73300.0,kg/TJ,12558.1225,Naphtha combustion consumption by freight transport,AR-M,SESCO,annual,kg,d91dc4ee-a3b9-31c1-a016-25b6aae1bbd3 -2022,Mendoza,II.1.1,0.171325,TJ,CH4,0.5,kg/TJ,0.0856625,Naphtha combustion consumption by freight transport,AR-M,SESCO,annual,kg,aaadf474-a19e-3fa6-9ad5-5e75e19609a0 -2022,Mendoza,II.1.1,0.171325,TJ,N2O,2.0,kg/TJ,0.34265,Naphtha combustion consumption by freight transport,AR-M,SESCO,annual,kg,eee3fe52-a031-373a-8c3c-0f601e7b89ab -2022,Rio Negro,II.1.1,0.27412,TJ,CO2,73300.0,kg/TJ,20092.996,Naphtha combustion consumption by freight transport,AR-R,SESCO,annual,kg,19039d3a-befb-399b-935c-fce8e26a8249 -2022,Rio Negro,II.1.1,0.27412,TJ,CH4,0.5,kg/TJ,0.13706,Naphtha combustion consumption by freight transport,AR-R,SESCO,annual,kg,d524554a-5f87-3eea-a236-1dd223d0e431 -2022,Rio Negro,II.1.1,0.27412,TJ,N2O,2.0,kg/TJ,0.54824,Naphtha combustion consumption by freight transport,AR-R,SESCO,annual,kg,149a9746-26fa-3911-95c5-b397859c64aa -2022,Santa Fe,II.1.1,8.01801,TJ,CO2,73300.0,kg/TJ,587720.133,Naphtha combustion consumption by freight transport,AR-S,SESCO,annual,kg,cb6eb431-69af-35bc-8a61-7e6f97665739 -2022,Santa Fe,II.1.1,8.01801,TJ,CH4,0.5,kg/TJ,4.009005,Naphtha combustion consumption by freight transport,AR-S,SESCO,annual,kg,4f9bf09c-cf87-3db9-b5a7-3106c22e568f -2022,Santa Fe,II.1.1,8.01801,TJ,N2O,2.0,kg/TJ,16.03602,Naphtha combustion consumption by freight transport,AR-S,SESCO,annual,kg,1ddc66db-54a2-32b8-ba98-fbd19ad203fa -2022,Santiago del Estero,II.1.1,0.034265,TJ,CO2,73300.0,kg/TJ,2511.6245,Naphtha combustion consumption by freight transport,AR-G,SESCO,annual,kg,d14513d4-d09c-3859-beae-1ea19a611e3d -2022,Santiago del Estero,II.1.1,0.034265,TJ,CH4,0.5,kg/TJ,0.0171325,Naphtha combustion consumption by freight transport,AR-G,SESCO,annual,kg,a6393a37-1179-37f4-bc8f-75e9744032b8 -2022,Santiago del Estero,II.1.1,0.034265,TJ,N2O,2.0,kg/TJ,0.06853,Naphtha combustion consumption by freight transport,AR-G,SESCO,annual,kg,04bf7b7d-e407-3121-b429-d4ca02c2ed60 -2022,Buenos Aires,II.1.1,17.338089999999998,TJ,CO2,73300.0,kg/TJ,1270881.9969999997,Naphtha combustion consumption by freight transport,AR-B,SESCO,annual,kg,0d63df3c-d1ed-3290-8c5d-79d8dc120c06 -2022,Buenos Aires,II.1.1,17.338089999999998,TJ,CH4,0.5,kg/TJ,8.669044999999999,Naphtha combustion consumption by freight transport,AR-B,SESCO,annual,kg,c7e2d3e9-9768-3e1c-ac75-0d5658ab3d11 -2022,Buenos Aires,II.1.1,17.338089999999998,TJ,N2O,2.0,kg/TJ,34.676179999999995,Naphtha combustion consumption by freight transport,AR-B,SESCO,annual,kg,61fde77a-fdc5-3689-9cb3-aa6ac0c33651 -2022,Capital Federal,II.1.1,17.47515,TJ,CO2,73300.0,kg/TJ,1280928.4949999999,Naphtha combustion consumption by freight transport,AR-C,SESCO,annual,kg,bd00ca77-6df6-38aa-bf7a-51c8ed660641 -2022,Capital Federal,II.1.1,17.47515,TJ,CH4,0.5,kg/TJ,8.737575,Naphtha combustion consumption by freight transport,AR-C,SESCO,annual,kg,7119a2ab-3e0d-385a-8d6d-abd4888c4af1 -2022,Capital Federal,II.1.1,17.47515,TJ,N2O,2.0,kg/TJ,34.9503,Naphtha combustion consumption by freight transport,AR-C,SESCO,annual,kg,f27d11aa-1176-3463-be30-e71babe61965 -2022,Córdoba,II.1.1,1.473395,TJ,CO2,73300.0,kg/TJ,107999.8535,Naphtha combustion consumption by freight transport,AR-X,SESCO,annual,kg,89c7f1d8-9cd3-33b6-a11f-3790c5c856f7 -2022,Córdoba,II.1.1,1.473395,TJ,CH4,0.5,kg/TJ,0.7366975,Naphtha combustion consumption by freight transport,AR-X,SESCO,annual,kg,d6f6b3ff-e58f-3302-b5a5-6bc9147de688 -2022,Córdoba,II.1.1,1.473395,TJ,N2O,2.0,kg/TJ,2.94679,Naphtha combustion consumption by freight transport,AR-X,SESCO,annual,kg,3a319fb0-b8ff-32e7-8c55-4f8fb26518ab -2022,Entre Rios,II.1.1,0.47970999999999997,TJ,CO2,73300.0,kg/TJ,35162.742999999995,Naphtha combustion consumption by freight transport,AR-E,SESCO,annual,kg,e57c2932-976e-3e07-8730-824d0b3681e4 -2022,Entre Rios,II.1.1,0.47970999999999997,TJ,CH4,0.5,kg/TJ,0.23985499999999998,Naphtha combustion consumption by freight transport,AR-E,SESCO,annual,kg,db9d7155-146e-3840-8b0d-6f239787ce09 -2022,Entre Rios,II.1.1,0.47970999999999997,TJ,N2O,2.0,kg/TJ,0.9594199999999999,Naphtha combustion consumption by freight transport,AR-E,SESCO,annual,kg,3f8bafff-ea3f-30b6-861f-6d03fb6fd97b -2022,La Rioja,II.1.1,0.23985499999999998,TJ,CO2,73300.0,kg/TJ,17581.371499999997,Naphtha combustion consumption by freight transport,AR-F,SESCO,annual,kg,7060de9b-6950-354c-ae3b-8f103c61ad68 -2022,La Rioja,II.1.1,0.23985499999999998,TJ,CH4,0.5,kg/TJ,0.11992749999999999,Naphtha combustion consumption by freight transport,AR-F,SESCO,annual,kg,fc0e75d4-9fa3-31a9-addf-763355824b40 -2022,La Rioja,II.1.1,0.23985499999999998,TJ,N2O,2.0,kg/TJ,0.47970999999999997,Naphtha combustion consumption by freight transport,AR-F,SESCO,annual,kg,a4c49572-073f-38c9-a9a6-20b16992966f -2022,Mendoza,II.1.1,0.102795,TJ,CO2,73300.0,kg/TJ,7534.8735,Naphtha combustion consumption by freight transport,AR-M,SESCO,annual,kg,1d1e2fa3-730b-38eb-a03f-b02fec245fc8 -2022,Mendoza,II.1.1,0.102795,TJ,CH4,0.5,kg/TJ,0.0513975,Naphtha combustion consumption by freight transport,AR-M,SESCO,annual,kg,42930f81-5468-39c8-8d74-9b86b7ae9476 -2022,Mendoza,II.1.1,0.102795,TJ,N2O,2.0,kg/TJ,0.20559,Naphtha combustion consumption by freight transport,AR-M,SESCO,annual,kg,b69636d5-c4ba-3aca-81d9-438a7f179024 -2022,Rio Negro,II.1.1,0.34265,TJ,CO2,73300.0,kg/TJ,25116.245,Naphtha combustion consumption by freight transport,AR-R,SESCO,annual,kg,4870d6e1-c934-3098-82ca-3688ccbebe60 -2022,Rio Negro,II.1.1,0.34265,TJ,CH4,0.5,kg/TJ,0.171325,Naphtha combustion consumption by freight transport,AR-R,SESCO,annual,kg,08cb0bcb-50c3-3e45-bc84-810a258b425a -2022,Rio Negro,II.1.1,0.34265,TJ,N2O,2.0,kg/TJ,0.6853,Naphtha combustion consumption by freight transport,AR-R,SESCO,annual,kg,c1d43115-ebf7-3636-b65f-b7e50d7155af -2022,San Luis,II.1.1,0.034265,TJ,CO2,73300.0,kg/TJ,2511.6245,Naphtha combustion consumption by freight transport,AR-D,SESCO,annual,kg,d60c1094-0564-3a56-aea0-d0fa5ab87df1 -2022,San Luis,II.1.1,0.034265,TJ,CH4,0.5,kg/TJ,0.0171325,Naphtha combustion consumption by freight transport,AR-D,SESCO,annual,kg,cfc3f000-67c0-3b7c-a5d7-369037128a21 -2022,San Luis,II.1.1,0.034265,TJ,N2O,2.0,kg/TJ,0.06853,Naphtha combustion consumption by freight transport,AR-D,SESCO,annual,kg,ecd952a8-3a1b-39b1-a57c-9a3c96e0da84 -2022,Santa Fe,II.1.1,7.6068299999999995,TJ,CO2,73300.0,kg/TJ,557580.639,Naphtha combustion consumption by freight transport,AR-S,SESCO,annual,kg,f92cd6a8-02ba-3f09-b956-a77f4db5bdaf -2022,Santa Fe,II.1.1,7.6068299999999995,TJ,CH4,0.5,kg/TJ,3.8034149999999998,Naphtha combustion consumption by freight transport,AR-S,SESCO,annual,kg,30ca4051-2f6e-3f96-9346-15d1e0978750 -2022,Santa Fe,II.1.1,7.6068299999999995,TJ,N2O,2.0,kg/TJ,15.213659999999999,Naphtha combustion consumption by freight transport,AR-S,SESCO,annual,kg,0f1de8d2-09eb-3a32-93fe-23b0fe14a18e -2022,Santiago del Estero,II.1.1,0.034265,TJ,CO2,73300.0,kg/TJ,2511.6245,Naphtha combustion consumption by freight transport,AR-G,SESCO,annual,kg,d14513d4-d09c-3859-beae-1ea19a611e3d -2022,Santiago del Estero,II.1.1,0.034265,TJ,CH4,0.5,kg/TJ,0.0171325,Naphtha combustion consumption by freight transport,AR-G,SESCO,annual,kg,a6393a37-1179-37f4-bc8f-75e9744032b8 -2022,Santiago del Estero,II.1.1,0.034265,TJ,N2O,2.0,kg/TJ,0.06853,Naphtha combustion consumption by freight transport,AR-G,SESCO,annual,kg,04bf7b7d-e407-3121-b429-d4ca02c2ed60 -2022,Buenos Aires,II.1.1,350.47236,TJ,CO2,74100.0,kg/TJ,25970001.876,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,232db9e7-52f3-33b3-b895-fa4c6c1d63ea -2022,Buenos Aires,II.1.1,350.47236,TJ,CH4,3.9,kg/TJ,1366.8422039999998,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,c4cac453-9787-303c-8576-cdeb260f15be -2022,Buenos Aires,II.1.1,350.47236,TJ,N2O,3.9,kg/TJ,1366.8422039999998,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,c4cac453-9787-303c-8576-cdeb260f15be -2022,Capital Federal,II.1.1,312.69084,TJ,CO2,74100.0,kg/TJ,23170391.244,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,ec4a835f-6ccd-313b-a6f9-fca5d0776f3f -2022,Capital Federal,II.1.1,312.69084,TJ,CH4,3.9,kg/TJ,1219.494276,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,3522f151-15c3-319e-a547-91ea13697b1b -2022,Capital Federal,II.1.1,312.69084,TJ,N2O,3.9,kg/TJ,1219.494276,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,3522f151-15c3-319e-a547-91ea13697b1b -2022,Chaco,II.1.1,40.20156,TJ,CO2,74100.0,kg/TJ,2978935.596,Gas Oil combustion consumption by public passenger transport,AR-H,SESCO,annual,kg,10b75203-bc16-3f82-871c-4259c1c65cb4 -2022,Chaco,II.1.1,40.20156,TJ,CH4,3.9,kg/TJ,156.786084,Gas Oil combustion consumption by public passenger transport,AR-H,SESCO,annual,kg,f4eee748-9261-3f64-ae73-8d89c4a483ab -2022,Chaco,II.1.1,40.20156,TJ,N2O,3.9,kg/TJ,156.786084,Gas Oil combustion consumption by public passenger transport,AR-H,SESCO,annual,kg,f4eee748-9261-3f64-ae73-8d89c4a483ab -2022,Chubut,II.1.1,6.6460799999999995,TJ,CO2,74100.0,kg/TJ,492474.528,Gas Oil combustion consumption by public passenger transport,AR-U,SESCO,annual,kg,adba2fa7-a656-301a-9150-371c09a7c816 -2022,Chubut,II.1.1,6.6460799999999995,TJ,CH4,3.9,kg/TJ,25.919711999999997,Gas Oil combustion consumption by public passenger transport,AR-U,SESCO,annual,kg,fe5997a0-42fe-3a9d-9e6a-88b3ce49a349 -2022,Chubut,II.1.1,6.6460799999999995,TJ,N2O,3.9,kg/TJ,25.919711999999997,Gas Oil combustion consumption by public passenger transport,AR-U,SESCO,annual,kg,fe5997a0-42fe-3a9d-9e6a-88b3ce49a349 -2022,Corrientes,II.1.1,0.21672,TJ,CO2,74100.0,kg/TJ,16058.952,Gas Oil combustion consumption by public passenger transport,AR-W,SESCO,annual,kg,76f88d2e-e2ce-3c00-82e3-9ba287599ffc -2022,Corrientes,II.1.1,0.21672,TJ,CH4,3.9,kg/TJ,0.845208,Gas Oil combustion consumption by public passenger transport,AR-W,SESCO,annual,kg,1e202f1c-53f4-3bea-a4fb-24d63ed207cb -2022,Corrientes,II.1.1,0.21672,TJ,N2O,3.9,kg/TJ,0.845208,Gas Oil combustion consumption by public passenger transport,AR-W,SESCO,annual,kg,1e202f1c-53f4-3bea-a4fb-24d63ed207cb -2022,Córdoba,II.1.1,7.657439999999999,TJ,CO2,74100.0,kg/TJ,567416.304,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,b43a53aa-9876-3d74-852f-b866414a8787 -2022,Córdoba,II.1.1,7.657439999999999,TJ,CH4,3.9,kg/TJ,29.864015999999996,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,afc78d81-bd4b-3b0b-ae37-695dd80fed14 -2022,Córdoba,II.1.1,7.657439999999999,TJ,N2O,3.9,kg/TJ,29.864015999999996,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,afc78d81-bd4b-3b0b-ae37-695dd80fed14 -2022,Entre Rios,II.1.1,43.77744,TJ,CO2,74100.0,kg/TJ,3243908.304,Gas Oil combustion consumption by public passenger transport,AR-E,SESCO,annual,kg,8c68ad38-eee3-3928-98aa-5bbe40f0f007 -2022,Entre Rios,II.1.1,43.77744,TJ,CH4,3.9,kg/TJ,170.732016,Gas Oil combustion consumption by public passenger transport,AR-E,SESCO,annual,kg,27d4a9d1-8669-37f3-bd07-373b87df86da -2022,Entre Rios,II.1.1,43.77744,TJ,N2O,3.9,kg/TJ,170.732016,Gas Oil combustion consumption by public passenger transport,AR-E,SESCO,annual,kg,27d4a9d1-8669-37f3-bd07-373b87df86da -2022,La Pampa,II.1.1,2.5284,TJ,CO2,74100.0,kg/TJ,187354.44,Gas Oil combustion consumption by public passenger transport,AR-L,SESCO,annual,kg,f531ebcc-6e02-3e3e-bc40-1f9cfb816a70 -2022,La Pampa,II.1.1,2.5284,TJ,CH4,3.9,kg/TJ,9.860759999999999,Gas Oil combustion consumption by public passenger transport,AR-L,SESCO,annual,kg,ef6586e3-30d6-3ca1-a09b-3f7764a8e3ba -2022,La Pampa,II.1.1,2.5284,TJ,N2O,3.9,kg/TJ,9.860759999999999,Gas Oil combustion consumption by public passenger transport,AR-L,SESCO,annual,kg,ef6586e3-30d6-3ca1-a09b-3f7764a8e3ba -2022,Mendoza,II.1.1,8.52432,TJ,CO2,74100.0,kg/TJ,631652.112,Gas Oil combustion consumption by public passenger transport,AR-M,SESCO,annual,kg,c0479b22-9bd5-38f5-ae28-d4248d0c0f6f -2022,Mendoza,II.1.1,8.52432,TJ,CH4,3.9,kg/TJ,33.244848,Gas Oil combustion consumption by public passenger transport,AR-M,SESCO,annual,kg,95218887-12d2-3404-8c28-3457ef21508d -2022,Mendoza,II.1.1,8.52432,TJ,N2O,3.9,kg/TJ,33.244848,Gas Oil combustion consumption by public passenger transport,AR-M,SESCO,annual,kg,95218887-12d2-3404-8c28-3457ef21508d -2022,Misiones,II.1.1,11.702879999999999,TJ,CO2,74100.0,kg/TJ,867183.4079999999,Gas Oil combustion consumption by public passenger transport,AR-N,SESCO,annual,kg,2610062a-f54f-32f5-8679-1673f86053f5 -2022,Misiones,II.1.1,11.702879999999999,TJ,CH4,3.9,kg/TJ,45.641231999999995,Gas Oil combustion consumption by public passenger transport,AR-N,SESCO,annual,kg,f0740654-1cb5-373c-9045-9888f18affeb -2022,Misiones,II.1.1,11.702879999999999,TJ,N2O,3.9,kg/TJ,45.641231999999995,Gas Oil combustion consumption by public passenger transport,AR-N,SESCO,annual,kg,f0740654-1cb5-373c-9045-9888f18affeb -2022,Neuquén,II.1.1,0.03612,TJ,CO2,74100.0,kg/TJ,2676.4919999999997,Gas Oil combustion consumption by public passenger transport,AR-Q,SESCO,annual,kg,72f79e4f-cc41-3c96-90ab-f636da9fd693 -2022,Neuquén,II.1.1,0.03612,TJ,CH4,3.9,kg/TJ,0.140868,Gas Oil combustion consumption by public passenger transport,AR-Q,SESCO,annual,kg,a2c1117f-32e8-359f-bc8f-87f84ddd7b5b -2022,Neuquén,II.1.1,0.03612,TJ,N2O,3.9,kg/TJ,0.140868,Gas Oil combustion consumption by public passenger transport,AR-Q,SESCO,annual,kg,a2c1117f-32e8-359f-bc8f-87f84ddd7b5b -2022,Rio Negro,II.1.1,4.00932,TJ,CO2,74100.0,kg/TJ,297090.61199999996,Gas Oil combustion consumption by public passenger transport,AR-R,SESCO,annual,kg,3a20721e-07cd-3ff0-bdfb-b5ddbe425874 -2022,Rio Negro,II.1.1,4.00932,TJ,CH4,3.9,kg/TJ,15.636347999999998,Gas Oil combustion consumption by public passenger transport,AR-R,SESCO,annual,kg,7d934bf3-dfd8-36b6-92c5-c2f7f9def8f7 -2022,Rio Negro,II.1.1,4.00932,TJ,N2O,3.9,kg/TJ,15.636347999999998,Gas Oil combustion consumption by public passenger transport,AR-R,SESCO,annual,kg,7d934bf3-dfd8-36b6-92c5-c2f7f9def8f7 -2022,Santa Cruz,II.1.1,0.07224,TJ,CO2,74100.0,kg/TJ,5352.9839999999995,Gas Oil combustion consumption by public passenger transport,AR-Z,SESCO,annual,kg,3ffe332e-50be-3a00-8343-1c88cafa7f7f -2022,Santa Cruz,II.1.1,0.07224,TJ,CH4,3.9,kg/TJ,0.281736,Gas Oil combustion consumption by public passenger transport,AR-Z,SESCO,annual,kg,d5efa76d-1092-3ffe-a3b1-ecb8bf98463d -2022,Santa Cruz,II.1.1,0.07224,TJ,N2O,3.9,kg/TJ,0.281736,Gas Oil combustion consumption by public passenger transport,AR-Z,SESCO,annual,kg,d5efa76d-1092-3ffe-a3b1-ecb8bf98463d -2022,Santa Fe,II.1.1,314.31624,TJ,CO2,74100.0,kg/TJ,23290833.384,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,ea96c010-db26-34d5-8127-1279bf53c403 -2022,Santa Fe,II.1.1,314.31624,TJ,CH4,3.9,kg/TJ,1225.833336,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,42dd3465-f39a-30a1-bb72-fd6862fc0a4d -2022,Santa Fe,II.1.1,314.31624,TJ,N2O,3.9,kg/TJ,1225.833336,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,42dd3465-f39a-30a1-bb72-fd6862fc0a4d -2022,Santiago del Estero,II.1.1,0.07224,TJ,CO2,74100.0,kg/TJ,5352.9839999999995,Gas Oil combustion consumption by public passenger transport,AR-G,SESCO,annual,kg,02b10c80-f015-39cb-aa5e-0fa5fb8fab17 -2022,Santiago del Estero,II.1.1,0.07224,TJ,CH4,3.9,kg/TJ,0.281736,Gas Oil combustion consumption by public passenger transport,AR-G,SESCO,annual,kg,e5567771-8320-33a5-9f80-456ff2ef92f1 -2022,Santiago del Estero,II.1.1,0.07224,TJ,N2O,3.9,kg/TJ,0.281736,Gas Oil combustion consumption by public passenger transport,AR-G,SESCO,annual,kg,e5567771-8320-33a5-9f80-456ff2ef92f1 -2022,Tucuman,II.1.1,42.29652,TJ,CO2,74100.0,kg/TJ,3134172.132,Gas Oil combustion consumption by public passenger transport,AR-T,SESCO,annual,kg,19b4d3c6-b28c-3f39-8775-701d0d244064 -2022,Tucuman,II.1.1,42.29652,TJ,CH4,3.9,kg/TJ,164.956428,Gas Oil combustion consumption by public passenger transport,AR-T,SESCO,annual,kg,13288685-7ef2-3487-b2ad-c382e4a1eaea -2022,Tucuman,II.1.1,42.29652,TJ,N2O,3.9,kg/TJ,164.956428,Gas Oil combustion consumption by public passenger transport,AR-T,SESCO,annual,kg,13288685-7ef2-3487-b2ad-c382e4a1eaea -2022,Buenos Aires,II.1.1,570.29868,TJ,CO2,74100.0,kg/TJ,42259132.188,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,f276248c-1cf4-366b-b760-9558ec6eeaf4 -2022,Buenos Aires,II.1.1,570.29868,TJ,CH4,3.9,kg/TJ,2224.164852,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,c106b4f1-1508-3b4f-a1a6-d5d3ba658c47 -2022,Buenos Aires,II.1.1,570.29868,TJ,N2O,3.9,kg/TJ,2224.164852,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,c106b4f1-1508-3b4f-a1a6-d5d3ba658c47 -2022,Capital Federal,II.1.1,73.75704,TJ,CO2,74100.0,kg/TJ,5465396.664,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,2faf48ab-44b5-3016-82f9-42537bbc0150 -2022,Capital Federal,II.1.1,73.75704,TJ,CH4,3.9,kg/TJ,287.65245600000003,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,175b77df-d12d-3b2e-a6e5-0c5b6db66cd5 -2022,Capital Federal,II.1.1,73.75704,TJ,N2O,3.9,kg/TJ,287.65245600000003,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,175b77df-d12d-3b2e-a6e5-0c5b6db66cd5 -2022,Chaco,II.1.1,0.28896,TJ,CO2,74100.0,kg/TJ,21411.935999999998,Gas Oil combustion consumption by public passenger transport,AR-H,SESCO,annual,kg,ea6544e9-3324-3421-8e1c-8331375dfc2f -2022,Chaco,II.1.1,0.28896,TJ,CH4,3.9,kg/TJ,1.126944,Gas Oil combustion consumption by public passenger transport,AR-H,SESCO,annual,kg,004e9435-b770-35ff-b69a-669eb91a2ff9 -2022,Chaco,II.1.1,0.28896,TJ,N2O,3.9,kg/TJ,1.126944,Gas Oil combustion consumption by public passenger transport,AR-H,SESCO,annual,kg,004e9435-b770-35ff-b69a-669eb91a2ff9 -2022,Chubut,II.1.1,2.09496,TJ,CO2,74100.0,kg/TJ,155236.536,Gas Oil combustion consumption by public passenger transport,AR-U,SESCO,annual,kg,976ee592-3d31-3a0e-b4eb-88256b97e860 -2022,Chubut,II.1.1,2.09496,TJ,CH4,3.9,kg/TJ,8.170344,Gas Oil combustion consumption by public passenger transport,AR-U,SESCO,annual,kg,1b34120a-1bc8-3c2c-8036-6955f41c856d -2022,Chubut,II.1.1,2.09496,TJ,N2O,3.9,kg/TJ,8.170344,Gas Oil combustion consumption by public passenger transport,AR-U,SESCO,annual,kg,1b34120a-1bc8-3c2c-8036-6955f41c856d -2022,Corrientes,II.1.1,0.28896,TJ,CO2,74100.0,kg/TJ,21411.935999999998,Gas Oil combustion consumption by public passenger transport,AR-W,SESCO,annual,kg,1d213990-1928-3e61-bab6-4438771aa0c5 -2022,Corrientes,II.1.1,0.28896,TJ,CH4,3.9,kg/TJ,1.126944,Gas Oil combustion consumption by public passenger transport,AR-W,SESCO,annual,kg,448c3818-ab73-3189-a817-1656d5e760dd -2022,Corrientes,II.1.1,0.28896,TJ,N2O,3.9,kg/TJ,1.126944,Gas Oil combustion consumption by public passenger transport,AR-W,SESCO,annual,kg,448c3818-ab73-3189-a817-1656d5e760dd -2022,Córdoba,II.1.1,13.21992,TJ,CO2,74100.0,kg/TJ,979596.072,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,9721e705-4d27-35f6-a5d5-d8fa5fe46523 -2022,Córdoba,II.1.1,13.21992,TJ,CH4,3.9,kg/TJ,51.557688,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,aeae4db0-58cf-3596-b7c6-ccac3a8a4bf1 -2022,Córdoba,II.1.1,13.21992,TJ,N2O,3.9,kg/TJ,51.557688,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,aeae4db0-58cf-3596-b7c6-ccac3a8a4bf1 -2022,Entre Rios,II.1.1,4.44276,TJ,CO2,74100.0,kg/TJ,329208.516,Gas Oil combustion consumption by public passenger transport,AR-E,SESCO,annual,kg,ce369f6c-d425-3608-a7c6-4b85d86f6f62 -2022,Entre Rios,II.1.1,4.44276,TJ,CH4,3.9,kg/TJ,17.326763999999997,Gas Oil combustion consumption by public passenger transport,AR-E,SESCO,annual,kg,dacd5c93-3394-3811-bbd5-80e923948dce -2022,Entre Rios,II.1.1,4.44276,TJ,N2O,3.9,kg/TJ,17.326763999999997,Gas Oil combustion consumption by public passenger transport,AR-E,SESCO,annual,kg,dacd5c93-3394-3811-bbd5-80e923948dce -2022,Formosa,II.1.1,4.6956,TJ,CO2,74100.0,kg/TJ,347943.95999999996,Gas Oil combustion consumption by public passenger transport,AR-P,SESCO,annual,kg,e6ac4cb8-bce5-3a14-8a2d-cf992ff9c5cf -2022,Formosa,II.1.1,4.6956,TJ,CH4,3.9,kg/TJ,18.312839999999998,Gas Oil combustion consumption by public passenger transport,AR-P,SESCO,annual,kg,4f116e71-bacc-3c40-8355-5f18c3a91679 -2022,Formosa,II.1.1,4.6956,TJ,N2O,3.9,kg/TJ,18.312839999999998,Gas Oil combustion consumption by public passenger transport,AR-P,SESCO,annual,kg,4f116e71-bacc-3c40-8355-5f18c3a91679 -2022,La Pampa,II.1.1,0.03612,TJ,CO2,74100.0,kg/TJ,2676.4919999999997,Gas Oil combustion consumption by public passenger transport,AR-L,SESCO,annual,kg,5fa51960-36e1-3a0d-bce5-0dd2a833e98e -2022,La Pampa,II.1.1,0.03612,TJ,CH4,3.9,kg/TJ,0.140868,Gas Oil combustion consumption by public passenger transport,AR-L,SESCO,annual,kg,9bffa227-caae-3d79-9202-c83612263ab2 -2022,La Pampa,II.1.1,0.03612,TJ,N2O,3.9,kg/TJ,0.140868,Gas Oil combustion consumption by public passenger transport,AR-L,SESCO,annual,kg,9bffa227-caae-3d79-9202-c83612263ab2 -2022,Mendoza,II.1.1,0.8307599999999999,TJ,CO2,74100.0,kg/TJ,61559.316,Gas Oil combustion consumption by public passenger transport,AR-M,SESCO,annual,kg,7ba62d63-934c-35b6-bb62-b75ba989e98e -2022,Mendoza,II.1.1,0.8307599999999999,TJ,CH4,3.9,kg/TJ,3.2399639999999996,Gas Oil combustion consumption by public passenger transport,AR-M,SESCO,annual,kg,6fb51a12-1af4-3ff4-b2ba-8a94720a8a64 -2022,Mendoza,II.1.1,0.8307599999999999,TJ,N2O,3.9,kg/TJ,3.2399639999999996,Gas Oil combustion consumption by public passenger transport,AR-M,SESCO,annual,kg,6fb51a12-1af4-3ff4-b2ba-8a94720a8a64 -2022,Misiones,II.1.1,0.10836,TJ,CO2,74100.0,kg/TJ,8029.476,Gas Oil combustion consumption by public passenger transport,AR-N,SESCO,annual,kg,26712a07-f775-3efc-bcbf-af0c69415ce0 -2022,Misiones,II.1.1,0.10836,TJ,CH4,3.9,kg/TJ,0.422604,Gas Oil combustion consumption by public passenger transport,AR-N,SESCO,annual,kg,dcd3983d-6d10-3d48-a23e-adfef4ae73c8 -2022,Misiones,II.1.1,0.10836,TJ,N2O,3.9,kg/TJ,0.422604,Gas Oil combustion consumption by public passenger transport,AR-N,SESCO,annual,kg,dcd3983d-6d10-3d48-a23e-adfef4ae73c8 -2022,Neuquén,II.1.1,3.21468,TJ,CO2,74100.0,kg/TJ,238207.788,Gas Oil combustion consumption by public passenger transport,AR-Q,SESCO,annual,kg,899f7759-fd27-37f5-9760-9cc121b1fa1a -2022,Neuquén,II.1.1,3.21468,TJ,CH4,3.9,kg/TJ,12.537252,Gas Oil combustion consumption by public passenger transport,AR-Q,SESCO,annual,kg,069f678d-6727-3f05-a055-8d6183276770 -2022,Neuquén,II.1.1,3.21468,TJ,N2O,3.9,kg/TJ,12.537252,Gas Oil combustion consumption by public passenger transport,AR-Q,SESCO,annual,kg,069f678d-6727-3f05-a055-8d6183276770 -2022,Rio Negro,II.1.1,7.69356,TJ,CO2,74100.0,kg/TJ,570092.796,Gas Oil combustion consumption by public passenger transport,AR-R,SESCO,annual,kg,289f0de4-1a19-39a0-bcee-707b0edca1f0 -2022,Rio Negro,II.1.1,7.69356,TJ,CH4,3.9,kg/TJ,30.004883999999997,Gas Oil combustion consumption by public passenger transport,AR-R,SESCO,annual,kg,553a9dd4-3b2c-368c-acd0-ef29801f4ea5 -2022,Rio Negro,II.1.1,7.69356,TJ,N2O,3.9,kg/TJ,30.004883999999997,Gas Oil combustion consumption by public passenger transport,AR-R,SESCO,annual,kg,553a9dd4-3b2c-368c-acd0-ef29801f4ea5 -2022,Salta,II.1.1,0.10836,TJ,CO2,74100.0,kg/TJ,8029.476,Gas Oil combustion consumption by public passenger transport,AR-A,SESCO,annual,kg,81d68113-d191-36d2-959d-8c44c6334729 -2022,Salta,II.1.1,0.10836,TJ,CH4,3.9,kg/TJ,0.422604,Gas Oil combustion consumption by public passenger transport,AR-A,SESCO,annual,kg,53f60864-b496-3d8b-93da-a1aa1518f340 -2022,Salta,II.1.1,0.10836,TJ,N2O,3.9,kg/TJ,0.422604,Gas Oil combustion consumption by public passenger transport,AR-A,SESCO,annual,kg,53f60864-b496-3d8b-93da-a1aa1518f340 -2022,Santa Fe,II.1.1,223.944,TJ,CO2,74100.0,kg/TJ,16594250.399999999,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,7b03e744-d08f-35db-aeec-7a8a80920574 -2022,Santa Fe,II.1.1,223.944,TJ,CH4,3.9,kg/TJ,873.3815999999999,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,42bea29a-e52b-37b5-b758-6c4cbf55fbf6 -2022,Santa Fe,II.1.1,223.944,TJ,N2O,3.9,kg/TJ,873.3815999999999,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,42bea29a-e52b-37b5-b758-6c4cbf55fbf6 -2022,Santiago del Estero,II.1.1,0.43344,TJ,CO2,74100.0,kg/TJ,32117.904,Gas Oil combustion consumption by public passenger transport,AR-G,SESCO,annual,kg,00280202-632d-3114-a05f-c74e11008ac5 -2022,Santiago del Estero,II.1.1,0.43344,TJ,CH4,3.9,kg/TJ,1.690416,Gas Oil combustion consumption by public passenger transport,AR-G,SESCO,annual,kg,7ccda793-ff1d-39b4-9535-2c1f2b48ca15 -2022,Santiago del Estero,II.1.1,0.43344,TJ,N2O,3.9,kg/TJ,1.690416,Gas Oil combustion consumption by public passenger transport,AR-G,SESCO,annual,kg,7ccda793-ff1d-39b4-9535-2c1f2b48ca15 -2022,Tucuman,II.1.1,0.07224,TJ,CO2,74100.0,kg/TJ,5352.9839999999995,Gas Oil combustion consumption by public passenger transport,AR-T,SESCO,annual,kg,4342d217-5966-3509-9295-612f90685c55 -2022,Tucuman,II.1.1,0.07224,TJ,CH4,3.9,kg/TJ,0.281736,Gas Oil combustion consumption by public passenger transport,AR-T,SESCO,annual,kg,72b62858-a0a0-30c3-a79c-b52525c6f9e7 -2022,Tucuman,II.1.1,0.07224,TJ,N2O,3.9,kg/TJ,0.281736,Gas Oil combustion consumption by public passenger transport,AR-T,SESCO,annual,kg,72b62858-a0a0-30c3-a79c-b52525c6f9e7 -2022,Buenos Aires,II.1.1,0.13706,TJ,CO2,73300.0,kg/TJ,10046.498,Naphtha combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,1523e50d-2261-32e8-b348-7b1ed414e5e5 -2022,Buenos Aires,II.1.1,0.13706,TJ,CH4,0.5,kg/TJ,0.06853,Naphtha combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,9fb7bfa1-a6a7-3eed-a7ea-24a783ab1383 -2022,Buenos Aires,II.1.1,0.13706,TJ,N2O,2.0,kg/TJ,0.27412,Naphtha combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,7156c930-7a8f-3181-a163-d6b204e20d84 -2022,Capital Federal,II.1.1,0.102795,TJ,CO2,73300.0,kg/TJ,7534.8735,Naphtha combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,053f6177-1540-3c2f-a780-534f8e4adff5 -2022,Capital Federal,II.1.1,0.102795,TJ,CH4,0.5,kg/TJ,0.0513975,Naphtha combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,78757fd5-8cc4-3ce1-952f-767bb32c9289 -2022,Capital Federal,II.1.1,0.102795,TJ,N2O,2.0,kg/TJ,0.20559,Naphtha combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,e2e866a6-4572-3b29-a70b-003553aef4b0 -2022,Entre Rios,II.1.1,0.30838499999999996,TJ,CO2,73300.0,kg/TJ,22604.620499999997,Naphtha combustion consumption by public passenger transport,AR-E,SESCO,annual,kg,c8e9b621-406a-3211-8a7a-2c7ee7d21b3b -2022,Entre Rios,II.1.1,0.30838499999999996,TJ,CH4,0.5,kg/TJ,0.15419249999999998,Naphtha combustion consumption by public passenger transport,AR-E,SESCO,annual,kg,38f5897d-3a1a-365c-be6b-778fcaa517c5 -2022,Entre Rios,II.1.1,0.30838499999999996,TJ,N2O,2.0,kg/TJ,0.6167699999999999,Naphtha combustion consumption by public passenger transport,AR-E,SESCO,annual,kg,ea0e6d72-e90e-3f6d-b12d-860eed03e34a -2022,Santa Fe,II.1.1,0.34265,TJ,CO2,73300.0,kg/TJ,25116.245,Naphtha combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,5748572a-bb06-3993-a507-b6d4e1309df1 -2022,Santa Fe,II.1.1,0.34265,TJ,CH4,0.5,kg/TJ,0.171325,Naphtha combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,856467f0-8ee5-33a8-a14b-0f0eeb2051b9 -2022,Santa Fe,II.1.1,0.34265,TJ,N2O,2.0,kg/TJ,0.6853,Naphtha combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,c35b9279-9f62-38f6-96c2-54154186a2e8 -2022,Buenos Aires,II.1.1,0.13706,TJ,CO2,73300.0,kg/TJ,10046.498,Naphtha combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,1523e50d-2261-32e8-b348-7b1ed414e5e5 -2022,Buenos Aires,II.1.1,0.13706,TJ,CH4,0.5,kg/TJ,0.06853,Naphtha combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,9fb7bfa1-a6a7-3eed-a7ea-24a783ab1383 -2022,Buenos Aires,II.1.1,0.13706,TJ,N2O,2.0,kg/TJ,0.27412,Naphtha combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,7156c930-7a8f-3181-a163-d6b204e20d84 -2022,Capital Federal,II.1.1,0.788095,TJ,CO2,73300.0,kg/TJ,57767.3635,Naphtha combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,3e89928b-3445-3f6e-9539-b3b636a24e45 -2022,Capital Federal,II.1.1,0.788095,TJ,CH4,0.5,kg/TJ,0.3940475,Naphtha combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,481b2bea-d06a-39dc-9562-6ba6cb98f5bf -2022,Capital Federal,II.1.1,0.788095,TJ,N2O,2.0,kg/TJ,1.57619,Naphtha combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,2992673d-55af-373b-810f-1ab976730486 -2022,Córdoba,II.1.1,0.06853,TJ,CO2,73300.0,kg/TJ,5023.249,Naphtha combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,802a82ae-82f2-3478-89a7-035699ac7135 -2022,Córdoba,II.1.1,0.06853,TJ,CH4,0.5,kg/TJ,0.034265,Naphtha combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,b2dded86-3ca5-3995-a3e1-f4146de574eb -2022,Córdoba,II.1.1,0.06853,TJ,N2O,2.0,kg/TJ,0.13706,Naphtha combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,8f05cb19-47c0-3ccb-b8f8-6f0dd10f7cb3 -2022,Entre Rios,II.1.1,0.5825049999999999,TJ,CO2,73300.0,kg/TJ,42697.6165,Naphtha combustion consumption by public passenger transport,AR-E,SESCO,annual,kg,5722dcf6-7e75-3d22-b0b1-7b42c127793c -2022,Entre Rios,II.1.1,0.5825049999999999,TJ,CH4,0.5,kg/TJ,0.29125249999999997,Naphtha combustion consumption by public passenger transport,AR-E,SESCO,annual,kg,843656de-abbb-3d63-b894-db05f90d3786 -2022,Entre Rios,II.1.1,0.5825049999999999,TJ,N2O,2.0,kg/TJ,1.1650099999999999,Naphtha combustion consumption by public passenger transport,AR-E,SESCO,annual,kg,daf7339a-6cba-39f2-9cfb-8c3d9d38cd25 -2022,Entre Rios,II.5.1,13.03932,TJ,CO2,74100.0,kg/TJ,966213.612,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,f75dac07-2a77-35c4-9c9e-1fd6011e9c17 -2022,Entre Rios,II.5.1,13.03932,TJ,CH4,3.9,kg/TJ,50.853348,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,930fe0ce-59c7-3f9e-875b-10e0022aa7ed -2022,Entre Rios,II.5.1,13.03932,TJ,N2O,3.9,kg/TJ,50.853348,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,930fe0ce-59c7-3f9e-875b-10e0022aa7ed -2022,Entre Rios,II.5.1,0.5418,TJ,CO2,74100.0,kg/TJ,40147.38,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,b12f0701-b21d-3cb1-8e80-6e9eca8d8bb1 -2022,Entre Rios,II.5.1,0.5418,TJ,CH4,3.9,kg/TJ,2.1130199999999997,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,3b0354ae-4bba-3861-b80f-180450fbdb1d -2022,Entre Rios,II.5.1,0.5418,TJ,N2O,3.9,kg/TJ,2.1130199999999997,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,3b0354ae-4bba-3861-b80f-180450fbdb1d -2022,Entre Rios,II.5.1,1.9873699999999999,TJ,CO2,73300.0,kg/TJ,145674.221,Naphtha combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,c974913a-389f-389d-9b25-d39310de3337 -2022,Entre Rios,II.5.1,1.9873699999999999,TJ,CH4,0.5,kg/TJ,0.9936849999999999,Naphtha combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,134ecb30-269f-3d16-a640-2d32b6f59f0e -2022,Entre Rios,II.5.1,1.9873699999999999,TJ,N2O,2.0,kg/TJ,3.9747399999999997,Naphtha combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,263817e6-9b69-3313-8af6-2a05e91bc5fa -2022,Entre Rios,II.5.1,0.171325,TJ,CO2,73300.0,kg/TJ,12558.1225,Naphtha combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,e8b92790-d603-365d-8f9a-ca4d3b1c35ec -2022,Entre Rios,II.5.1,0.171325,TJ,CH4,0.5,kg/TJ,0.0856625,Naphtha combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,46ddae01-55d0-3c70-abd1-8e518fac78be -2022,Entre Rios,II.5.1,0.171325,TJ,N2O,2.0,kg/TJ,0.34265,Naphtha combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,a034fff5-eff2-3bec-8dcd-7293a3a51efa -2022,Buenos Aires,II.5.1,444.67332,TJ,CO2,74100.0,kg/TJ,32950293.012,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,596bcc06-53bc-32d2-8064-32b5be493125 -2022,Buenos Aires,II.5.1,444.67332,TJ,CH4,3.9,kg/TJ,1734.225948,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,1c0a9b89-58eb-36f9-ab5e-8eb0c9d7225e -2022,Buenos Aires,II.5.1,444.67332,TJ,N2O,3.9,kg/TJ,1734.225948,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,1c0a9b89-58eb-36f9-ab5e-8eb0c9d7225e -2022,Corrientes,II.5.1,51.1098,TJ,CO2,74100.0,kg/TJ,3787236.18,Gas Oil combustion consumption by agriculture machines,AR-W,SESCO,annual,kg,78e30614-bdb0-3e05-ab7f-8303583921d7 -2022,Corrientes,II.5.1,51.1098,TJ,CH4,3.9,kg/TJ,199.32822,Gas Oil combustion consumption by agriculture machines,AR-W,SESCO,annual,kg,f3d409dd-afd5-3b4e-9c08-cd4f717730c8 -2022,Corrientes,II.5.1,51.1098,TJ,N2O,3.9,kg/TJ,199.32822,Gas Oil combustion consumption by agriculture machines,AR-W,SESCO,annual,kg,f3d409dd-afd5-3b4e-9c08-cd4f717730c8 -2022,Córdoba,II.5.1,16.68744,TJ,CO2,74100.0,kg/TJ,1236539.304,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,8b74e209-4284-3fba-96b4-b4c711ed6976 -2022,Córdoba,II.5.1,16.68744,TJ,CH4,3.9,kg/TJ,65.08101599999999,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,f0a739b1-1656-3602-98ac-c5cdbed185e3 -2022,Córdoba,II.5.1,16.68744,TJ,N2O,3.9,kg/TJ,65.08101599999999,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,f0a739b1-1656-3602-98ac-c5cdbed185e3 -2022,Entre Rios,II.5.1,113.45291999999999,TJ,CO2,74100.0,kg/TJ,8406861.372,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,a90028da-68b0-3289-8da6-2abb5b5401c7 -2022,Entre Rios,II.5.1,113.45291999999999,TJ,CH4,3.9,kg/TJ,442.46638799999994,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,407bb597-647f-312d-809e-61ffd39cfc1a -2022,Entre Rios,II.5.1,113.45291999999999,TJ,N2O,3.9,kg/TJ,442.46638799999994,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,407bb597-647f-312d-809e-61ffd39cfc1a -2022,La Pampa,II.5.1,24.63384,TJ,CO2,74100.0,kg/TJ,1825367.544,Gas Oil combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,c515af30-e29d-3f0b-b82b-db74638cf3d5 -2022,La Pampa,II.5.1,24.63384,TJ,CH4,3.9,kg/TJ,96.07197599999999,Gas Oil combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,d2df41d6-d67d-38e8-9fa5-71c1854fd02e -2022,La Pampa,II.5.1,24.63384,TJ,N2O,3.9,kg/TJ,96.07197599999999,Gas Oil combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,d2df41d6-d67d-38e8-9fa5-71c1854fd02e -2022,Santa Fe,II.5.1,61.656839999999995,TJ,CO2,74100.0,kg/TJ,4568771.844,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,857e2b36-5aba-3b9d-ace2-da84b3eb3fcc -2022,Santa Fe,II.5.1,61.656839999999995,TJ,CH4,3.9,kg/TJ,240.46167599999998,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,8bfb07a4-7b4e-3b39-8823-c806d11aa4d3 -2022,Santa Fe,II.5.1,61.656839999999995,TJ,N2O,3.9,kg/TJ,240.46167599999998,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,8bfb07a4-7b4e-3b39-8823-c806d11aa4d3 -2022,Tucuman,II.5.1,23.2974,TJ,CO2,74100.0,kg/TJ,1726337.34,Gas Oil combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,8ee9aef6-c95b-3eea-ab77-b88617e86dc1 -2022,Tucuman,II.5.1,23.2974,TJ,CH4,3.9,kg/TJ,90.85986,Gas Oil combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,412b7863-28b9-391c-87a8-cd982d61b797 -2022,Tucuman,II.5.1,23.2974,TJ,N2O,3.9,kg/TJ,90.85986,Gas Oil combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,412b7863-28b9-391c-87a8-cd982d61b797 -2022,Buenos Aires,II.5.1,29.221079999999997,TJ,CO2,74100.0,kg/TJ,2165282.028,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,55c440d1-c500-3fc6-95db-cb73df4da5b2 -2022,Buenos Aires,II.5.1,29.221079999999997,TJ,CH4,3.9,kg/TJ,113.96221199999998,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,eabe5e2c-319e-387d-b480-5f11c1443b47 -2022,Buenos Aires,II.5.1,29.221079999999997,TJ,N2O,3.9,kg/TJ,113.96221199999998,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,eabe5e2c-319e-387d-b480-5f11c1443b47 -2022,Entre Rios,II.5.1,38.14272,TJ,CO2,74100.0,kg/TJ,2826375.5519999997,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,bd9af4e7-cbf0-3fcb-976a-5ef6518612fa -2022,Entre Rios,II.5.1,38.14272,TJ,CH4,3.9,kg/TJ,148.75660799999997,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,86875c61-696b-36fd-80db-1117f6ed2ba4 -2022,Entre Rios,II.5.1,38.14272,TJ,N2O,3.9,kg/TJ,148.75660799999997,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,86875c61-696b-36fd-80db-1117f6ed2ba4 -2022,La Pampa,II.5.1,8.488199999999999,TJ,CO2,74100.0,kg/TJ,628975.6199999999,Gas Oil combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,a38019cc-9958-3679-9e72-81b844443b35 -2022,La Pampa,II.5.1,8.488199999999999,TJ,CH4,3.9,kg/TJ,33.10397999999999,Gas Oil combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,bd70a64c-91e9-390b-821d-a84a1c3c93b9 -2022,La Pampa,II.5.1,8.488199999999999,TJ,N2O,3.9,kg/TJ,33.10397999999999,Gas Oil combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,bd70a64c-91e9-390b-821d-a84a1c3c93b9 -2022,Santa Fe,II.5.1,2.85348,TJ,CO2,74100.0,kg/TJ,211442.868,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,d1b906fc-705a-30f5-9b48-65141034d39a -2022,Santa Fe,II.5.1,2.85348,TJ,CH4,3.9,kg/TJ,11.128571999999998,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,d2ca74ac-26b2-3c71-a4d7-4ae4a0886623 -2022,Santa Fe,II.5.1,2.85348,TJ,N2O,3.9,kg/TJ,11.128571999999998,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,d2ca74ac-26b2-3c71-a4d7-4ae4a0886623 -2022,Tucuman,II.5.1,0.93912,TJ,CO2,74100.0,kg/TJ,69588.792,Gas Oil combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,5c98ed37-7849-3abe-bef3-e1a8f02504ff -2022,Tucuman,II.5.1,0.93912,TJ,CH4,3.9,kg/TJ,3.662568,Gas Oil combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,00d6a62e-c0a3-35de-993f-e8d3c929c459 -2022,Tucuman,II.5.1,0.93912,TJ,N2O,3.9,kg/TJ,3.662568,Gas Oil combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,00d6a62e-c0a3-35de-993f-e8d3c929c459 -2022,Santa Fe,II.5.1,3.255175,TJ,CO2,73300.0,kg/TJ,238604.32749999998,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,a78f4353-0ef1-365d-81a2-bd1401fbdea3 -2022,Santa Fe,II.5.1,3.255175,TJ,CH4,0.5,kg/TJ,1.6275875,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,b5dc45e4-c475-3d4a-965f-d7a9fef8cbd0 -2022,Santa Fe,II.5.1,3.255175,TJ,N2O,2.0,kg/TJ,6.51035,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,96c94823-56e7-3858-84bf-7f5a811d609f -2022,Santa Fe,II.5.1,1.473395,TJ,CO2,73300.0,kg/TJ,107999.8535,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,c6b50949-69b0-3684-80e0-bb876707dca5 -2022,Santa Fe,II.5.1,1.473395,TJ,CH4,0.5,kg/TJ,0.7366975,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,9e4ed563-3d58-3a4f-ac1a-c68906caae02 -2022,Santa Fe,II.5.1,1.473395,TJ,N2O,2.0,kg/TJ,2.94679,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,373a3c81-4fba-38c8-8183-40502d764b23 -2022,Tucuman,II.5.1,0.41118,TJ,CO2,73300.0,kg/TJ,30139.494,Naphtha combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,af14fe5c-f71b-3dcf-abdb-35f6641413f2 -2022,Tucuman,II.5.1,0.41118,TJ,CH4,0.5,kg/TJ,0.20559,Naphtha combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,c98bbcc6-509e-3eba-a4ce-97faec94641c -2022,Tucuman,II.5.1,0.41118,TJ,N2O,2.0,kg/TJ,0.82236,Naphtha combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,fea85925-54e1-3352-9cc0-e1c01325023a -2022,Buenos Aires,II.2.1,229.57871999999998,TJ,CO2,74100.0,kg/TJ,17011783.152,Gas Oil combustion consumption by railway transport,AR-B,SESCO,annual,kg,85778cf4-2058-3b70-a064-4ec21400eec7 -2022,Buenos Aires,II.2.1,229.57871999999998,TJ,CH4,3.9,kg/TJ,895.3570079999998,Gas Oil combustion consumption by railway transport,AR-B,SESCO,annual,kg,695bce87-93a6-3e94-88b9-f61020fbc2a3 -2022,Buenos Aires,II.2.1,229.57871999999998,TJ,N2O,3.9,kg/TJ,895.3570079999998,Gas Oil combustion consumption by railway transport,AR-B,SESCO,annual,kg,695bce87-93a6-3e94-88b9-f61020fbc2a3 -2022,Buenos Aires,II.1.1,6.9994,TJ,CO2,69300.0,kg/TJ,485058.42,Motor Gasoline combustion consumption by freight transport,AR-B,SESCO,annual,kg,4cabd140-8769-3857-ab01-bed3cb7a7a73 -2022,Buenos Aires,II.1.1,6.9994,TJ,CH4,33.0,kg/TJ,230.9802,Motor Gasoline combustion consumption by freight transport,AR-B,SESCO,annual,kg,4e907c92-c700-3a28-8cc9-66d06467f193 -2022,Buenos Aires,II.1.1,6.9994,TJ,N2O,3.2,kg/TJ,22.39808,Motor Gasoline combustion consumption by freight transport,AR-B,SESCO,annual,kg,6f4102f9-9ad6-3303-8b82-c59276b99e26 -2022,Santa Fe,II.1.1,3.4554,TJ,CO2,69300.0,kg/TJ,239459.22,Motor Gasoline combustion consumption by freight transport,AR-S,SESCO,annual,kg,96cee1ed-8f88-3b5f-88c3-c0238a95bda9 -2022,Santa Fe,II.1.1,3.4554,TJ,CH4,33.0,kg/TJ,114.0282,Motor Gasoline combustion consumption by freight transport,AR-S,SESCO,annual,kg,b5c10ae2-7963-34a3-9506-3f3b00d1a49e -2022,Santa Fe,II.1.1,3.4554,TJ,N2O,3.2,kg/TJ,11.05728,Motor Gasoline combustion consumption by freight transport,AR-S,SESCO,annual,kg,9a564f90-bc5c-3273-ba47-c1c5808b7571 -2022,Buenos Aires,II.1.1,7.29624,TJ,CO2,74100.0,kg/TJ,540651.384,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,143ee41e-5cd2-34f3-a3d8-2285d393125a -2022,Buenos Aires,II.1.1,7.29624,TJ,CH4,3.9,kg/TJ,28.455336,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,885dd945-f531-3aad-ad7d-9fa59c5f5248 -2022,Buenos Aires,II.1.1,7.29624,TJ,N2O,3.9,kg/TJ,28.455336,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,885dd945-f531-3aad-ad7d-9fa59c5f5248 -2022,Santa Fe,II.1.1,12.20856,TJ,CO2,74100.0,kg/TJ,904654.296,Gas Oil combustion consumption by freight transport,AR-S,SESCO,annual,kg,06a3a964-7197-348b-a239-6acc25a2e8cf -2022,Santa Fe,II.1.1,12.20856,TJ,CH4,3.9,kg/TJ,47.613384,Gas Oil combustion consumption by freight transport,AR-S,SESCO,annual,kg,b45625fb-93f0-3f4b-bf81-92eec59df1ca -2022,Santa Fe,II.1.1,12.20856,TJ,N2O,3.9,kg/TJ,47.613384,Gas Oil combustion consumption by freight transport,AR-S,SESCO,annual,kg,b45625fb-93f0-3f4b-bf81-92eec59df1ca -2022,Buenos Aires,II.1.1,17.48208,TJ,CO2,74100.0,kg/TJ,1295422.128,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,d8aa4d37-6b83-3d56-9f04-cefce3fd0a55 -2022,Buenos Aires,II.1.1,17.48208,TJ,CH4,3.9,kg/TJ,68.180112,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,0b702992-01ac-345e-8936-4d8fda16a702 -2022,Buenos Aires,II.1.1,17.48208,TJ,N2O,3.9,kg/TJ,68.180112,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,0b702992-01ac-345e-8936-4d8fda16a702 -2022,Santa Fe,II.1.1,11.016599999999999,TJ,CO2,74100.0,kg/TJ,816330.0599999999,Gas Oil combustion consumption by freight transport,AR-S,SESCO,annual,kg,fb56588e-78b3-3432-8a1e-26207f4f27a2 -2022,Santa Fe,II.1.1,11.016599999999999,TJ,CH4,3.9,kg/TJ,42.96473999999999,Gas Oil combustion consumption by freight transport,AR-S,SESCO,annual,kg,89e7cc2f-4ed1-35f8-8df8-f17b4232e8fe -2022,Santa Fe,II.1.1,11.016599999999999,TJ,N2O,3.9,kg/TJ,42.96473999999999,Gas Oil combustion consumption by freight transport,AR-S,SESCO,annual,kg,89e7cc2f-4ed1-35f8-8df8-f17b4232e8fe -2022,Salta,II.1.1,1.1518,TJ,CO2,69300.0,kg/TJ,79819.73999999999,Motor Gasoline combustion consumption by public passenger transport,AR-A,SESCO,annual,kg,4f2b9ae5-9f98-34ab-80c1-15b8489af00e -2022,Salta,II.1.1,1.1518,TJ,CH4,33.0,kg/TJ,38.0094,Motor Gasoline combustion consumption by public passenger transport,AR-A,SESCO,annual,kg,3b83d5ec-e13f-30e4-9a76-03401707c40c -2022,Salta,II.1.1,1.1518,TJ,N2O,3.2,kg/TJ,3.68576,Motor Gasoline combustion consumption by public passenger transport,AR-A,SESCO,annual,kg,35d9badf-6ec7-3da1-889a-e99d6e4da266 -2022,Buenos Aires,II.1.1,2741.61636,TJ,CO2,74100.0,kg/TJ,203153772.276,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,c8a04da5-dcbf-3cad-b702-c92265e84277 -2022,Buenos Aires,II.1.1,2741.61636,TJ,CH4,3.9,kg/TJ,10692.303804,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,5d03632b-865d-3f42-8bb7-7c805d025aae -2022,Buenos Aires,II.1.1,2741.61636,TJ,N2O,3.9,kg/TJ,10692.303804,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,5d03632b-865d-3f42-8bb7-7c805d025aae -2022,Capital Federal,II.1.1,137.256,TJ,CO2,74100.0,kg/TJ,10170669.6,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,497023be-276e-3df3-8571-a85bba57f539 -2022,Capital Federal,II.1.1,137.256,TJ,CH4,3.9,kg/TJ,535.2984,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,3e9ccf6c-3faf-3bff-ac53-023f00ac7d37 -2022,Capital Federal,II.1.1,137.256,TJ,N2O,3.9,kg/TJ,535.2984,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,3e9ccf6c-3faf-3bff-ac53-023f00ac7d37 -2022,Corrientes,II.1.1,0.18059999999999998,TJ,CO2,74100.0,kg/TJ,13382.46,Gas Oil combustion consumption by public passenger transport,AR-W,SESCO,annual,kg,e7af1dcf-ed91-3a77-a017-6ab8af74a426 -2022,Corrientes,II.1.1,0.18059999999999998,TJ,CH4,3.9,kg/TJ,0.70434,Gas Oil combustion consumption by public passenger transport,AR-W,SESCO,annual,kg,fc930f5e-3d0d-32fd-9b2b-4e1794e28e4b -2022,Corrientes,II.1.1,0.18059999999999998,TJ,N2O,3.9,kg/TJ,0.70434,Gas Oil combustion consumption by public passenger transport,AR-W,SESCO,annual,kg,fc930f5e-3d0d-32fd-9b2b-4e1794e28e4b -2022,Córdoba,II.1.1,3.1063199999999997,TJ,CO2,74100.0,kg/TJ,230178.31199999998,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,7f08e0fb-acf2-307b-9b9f-fe9e2698836e -2022,Córdoba,II.1.1,3.1063199999999997,TJ,CH4,3.9,kg/TJ,12.114647999999999,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,211a47ed-a32f-3942-831b-099ee1817cec -2022,Córdoba,II.1.1,3.1063199999999997,TJ,N2O,3.9,kg/TJ,12.114647999999999,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,211a47ed-a32f-3942-831b-099ee1817cec -2022,Buenos Aires,II.1.1,1707.28404,TJ,CO2,74100.0,kg/TJ,126509747.36400001,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,7ef8c942-e984-3e57-8481-a0b992f0d7c2 -2022,Buenos Aires,II.1.1,1707.28404,TJ,CH4,3.9,kg/TJ,6658.407756,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,b8699d52-50de-3c74-9079-a7363f1dabf4 -2022,Buenos Aires,II.1.1,1707.28404,TJ,N2O,3.9,kg/TJ,6658.407756,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,b8699d52-50de-3c74-9079-a7363f1dabf4 -2022,Capital Federal,II.1.1,68.88083999999999,TJ,CO2,74100.0,kg/TJ,5104070.243999999,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,64726197-1aab-317e-a854-1d7985029fea -2022,Capital Federal,II.1.1,68.88083999999999,TJ,CH4,3.9,kg/TJ,268.635276,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,956514f1-cdaa-3157-b8b8-087e8b6f93f4 -2022,Capital Federal,II.1.1,68.88083999999999,TJ,N2O,3.9,kg/TJ,268.635276,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,956514f1-cdaa-3157-b8b8-087e8b6f93f4 -2022,Corrientes,II.1.1,67.07484,TJ,CO2,74100.0,kg/TJ,4970245.643999999,Gas Oil combustion consumption by public passenger transport,AR-W,SESCO,annual,kg,a74aedfc-c437-3a9f-91cb-d6884b567b0c -2022,Corrientes,II.1.1,67.07484,TJ,CH4,3.9,kg/TJ,261.59187599999996,Gas Oil combustion consumption by public passenger transport,AR-W,SESCO,annual,kg,66c86eed-8407-3ba1-b32f-0e0dfeb8a7bb -2022,Corrientes,II.1.1,67.07484,TJ,N2O,3.9,kg/TJ,261.59187599999996,Gas Oil combustion consumption by public passenger transport,AR-W,SESCO,annual,kg,66c86eed-8407-3ba1-b32f-0e0dfeb8a7bb -2022,Córdoba,II.1.1,8.88552,TJ,CO2,74100.0,kg/TJ,658417.032,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,e6db708c-667a-311f-98fc-40628de0b97a -2022,Córdoba,II.1.1,8.88552,TJ,CH4,3.9,kg/TJ,34.653527999999994,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,072defc3-8ec4-3594-8d34-c0d9a1746e76 -2022,Córdoba,II.1.1,8.88552,TJ,N2O,3.9,kg/TJ,34.653527999999994,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,072defc3-8ec4-3594-8d34-c0d9a1746e76 -2022,Buenos Aires,II.5.1,3515.29704372,TJ,CO2,74100.0,kg/TJ,260483510.93965203,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,0c31dd2a-9131-3138-8dfd-d12c51d5be3c -2022,Buenos Aires,II.5.1,3515.29704372,TJ,CH4,3.9,kg/TJ,13709.658470508,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,9c2e40fd-a3c2-3455-ae3a-b0ece5095aa5 -2022,Buenos Aires,II.5.1,3515.29704372,TJ,N2O,3.9,kg/TJ,13709.658470508,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,9c2e40fd-a3c2-3455-ae3a-b0ece5095aa5 -2022,Capital Federal,II.5.1,150.57499715999998,TJ,CO2,74100.0,kg/TJ,11157607.289555999,Gas Oil combustion consumption by agriculture machines,AR-C,SESCO,annual,kg,90a3ffc0-dc0d-380f-b249-15bdac07e4a9 -2022,Capital Federal,II.5.1,150.57499715999998,TJ,CH4,3.9,kg/TJ,587.2424889239999,Gas Oil combustion consumption by agriculture machines,AR-C,SESCO,annual,kg,ea15cc69-aade-3223-bccc-0bb86f6e0e20 -2022,Capital Federal,II.5.1,150.57499715999998,TJ,N2O,3.9,kg/TJ,587.2424889239999,Gas Oil combustion consumption by agriculture machines,AR-C,SESCO,annual,kg,ea15cc69-aade-3223-bccc-0bb86f6e0e20 -2022,Córdoba,II.5.1,1656.6747548399997,TJ,CO2,74100.0,kg/TJ,122759599.33364397,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,59116f89-9d7e-3533-836d-b3adf0552961 -2022,Córdoba,II.5.1,1656.6747548399997,TJ,CH4,3.9,kg/TJ,6461.031543875998,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,41e61d51-f614-34c9-be5e-6173691b4eeb -2022,Córdoba,II.5.1,1656.6747548399997,TJ,N2O,3.9,kg/TJ,6461.031543875998,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,41e61d51-f614-34c9-be5e-6173691b4eeb -2022,Entre Rios,II.5.1,712.8776482799999,TJ,CO2,74100.0,kg/TJ,52824233.73754799,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,dfed4618-f741-377f-9c9a-42122019fa94 -2022,Entre Rios,II.5.1,712.8776482799999,TJ,CH4,3.9,kg/TJ,2780.2228282919996,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,30394c77-ca93-32e9-8a13-5e69eeffaccc -2022,Entre Rios,II.5.1,712.8776482799999,TJ,N2O,3.9,kg/TJ,2780.2228282919996,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,30394c77-ca93-32e9-8a13-5e69eeffaccc -2022,Jujuy,II.5.1,18.49929144,TJ,CO2,74100.0,kg/TJ,1370797.4957040001,Gas Oil combustion consumption by agriculture machines,AR-Y,SESCO,annual,kg,4d6648ef-be79-3cea-bc57-5565d8cea87d -2022,Jujuy,II.5.1,18.49929144,TJ,CH4,3.9,kg/TJ,72.147236616,Gas Oil combustion consumption by agriculture machines,AR-Y,SESCO,annual,kg,e5d06214-1ed5-3349-9c0d-f25016c89e2e -2022,Jujuy,II.5.1,18.49929144,TJ,N2O,3.9,kg/TJ,72.147236616,Gas Oil combustion consumption by agriculture machines,AR-Y,SESCO,annual,kg,e5d06214-1ed5-3349-9c0d-f25016c89e2e -2022,La Pampa,II.5.1,283.02248604,TJ,CO2,74100.0,kg/TJ,20971966.215563998,Gas Oil combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,b077361e-102a-30e5-b43b-6f81c7ca05cd -2022,La Pampa,II.5.1,283.02248604,TJ,CH4,3.9,kg/TJ,1103.787695556,Gas Oil combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,d6d80e3b-53f5-3744-ac83-9a04e2ff3684 -2022,La Pampa,II.5.1,283.02248604,TJ,N2O,3.9,kg/TJ,1103.787695556,Gas Oil combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,d6d80e3b-53f5-3744-ac83-9a04e2ff3684 -2022,Rio Negro,II.5.1,152.0198694,TJ,CO2,74100.0,kg/TJ,11264672.32254,Gas Oil combustion consumption by agriculture machines,AR-R,SESCO,annual,kg,fa954042-f72d-3c0e-8927-cd55b1b529be -2022,Rio Negro,II.5.1,152.0198694,TJ,CH4,3.9,kg/TJ,592.87749066,Gas Oil combustion consumption by agriculture machines,AR-R,SESCO,annual,kg,acb11504-f2d2-36f6-b00d-07f6eaf2568a -2022,Rio Negro,II.5.1,152.0198694,TJ,N2O,3.9,kg/TJ,592.87749066,Gas Oil combustion consumption by agriculture machines,AR-R,SESCO,annual,kg,acb11504-f2d2-36f6-b00d-07f6eaf2568a -2022,San Luis,II.5.1,45.827286120000004,TJ,CO2,74100.0,kg/TJ,3395801.901492,Gas Oil combustion consumption by agriculture machines,AR-D,SESCO,annual,kg,0eb0b4f7-9803-33c4-bdb7-8fc62acd3e89 -2022,San Luis,II.5.1,45.827286120000004,TJ,CH4,3.9,kg/TJ,178.726415868,Gas Oil combustion consumption by agriculture machines,AR-D,SESCO,annual,kg,7c8dfdd6-81f8-37f3-a902-93aea2fc0e46 -2022,San Luis,II.5.1,45.827286120000004,TJ,N2O,3.9,kg/TJ,178.726415868,Gas Oil combustion consumption by agriculture machines,AR-D,SESCO,annual,kg,7c8dfdd6-81f8-37f3-a902-93aea2fc0e46 -2022,Santa Fe,II.5.1,4227.63679296,TJ,CO2,74100.0,kg/TJ,313267886.35833603,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,4b333776-03bd-3cec-ab49-6988cb8f7885 -2022,Santa Fe,II.5.1,4227.63679296,TJ,CH4,3.9,kg/TJ,16487.783492544,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,2a3cce4c-6a07-38a4-aa08-d5b1bfc95a36 -2022,Santa Fe,II.5.1,4227.63679296,TJ,N2O,3.9,kg/TJ,16487.783492544,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,2a3cce4c-6a07-38a4-aa08-d5b1bfc95a36 -2022,Santiago del Estero,II.5.1,103.35380411999998,TJ,CO2,74100.0,kg/TJ,7658516.885291998,Gas Oil combustion consumption by agriculture machines,AR-G,SESCO,annual,kg,145e172f-2352-34a9-800f-da4196166c8b -2022,Santiago del Estero,II.5.1,103.35380411999998,TJ,CH4,3.9,kg/TJ,403.0798360679999,Gas Oil combustion consumption by agriculture machines,AR-G,SESCO,annual,kg,00d5545c-78d6-3af8-94ef-2786bc636e16 -2022,Santiago del Estero,II.5.1,103.35380411999998,TJ,N2O,3.9,kg/TJ,403.0798360679999,Gas Oil combustion consumption by agriculture machines,AR-G,SESCO,annual,kg,00d5545c-78d6-3af8-94ef-2786bc636e16 -2022,Tucuman,II.5.1,70.99562988,TJ,CO2,74100.0,kg/TJ,5260776.174108,Gas Oil combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,9187e23c-1d1e-3679-8eaf-4e08299a04d5 -2022,Tucuman,II.5.1,70.99562988,TJ,CH4,3.9,kg/TJ,276.882956532,Gas Oil combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,6790c906-ffcc-3259-9482-91278d84f0b6 -2022,Tucuman,II.5.1,70.99562988,TJ,N2O,3.9,kg/TJ,276.882956532,Gas Oil combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,6790c906-ffcc-3259-9482-91278d84f0b6 -2022,Buenos Aires,II.5.1,226.59957851999997,TJ,CO2,74100.0,kg/TJ,16791028.768331997,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,1e34dc36-6cf3-3482-b197-45c01fe705f0 -2022,Buenos Aires,II.5.1,226.59957851999997,TJ,CH4,3.9,kg/TJ,883.7383562279998,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,9a07e579-81d3-37d8-8a45-58f846c6209b -2022,Buenos Aires,II.5.1,226.59957851999997,TJ,N2O,3.9,kg/TJ,883.7383562279998,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,9a07e579-81d3-37d8-8a45-58f846c6209b -2022,Capital Federal,II.5.1,23.217105240000002,TJ,CO2,74100.0,kg/TJ,1720387.4982840002,Gas Oil combustion consumption by agriculture machines,AR-C,SESCO,annual,kg,cd111a23-c818-3240-967e-69ea03bba6bc -2022,Capital Federal,II.5.1,23.217105240000002,TJ,CH4,3.9,kg/TJ,90.54671043600001,Gas Oil combustion consumption by agriculture machines,AR-C,SESCO,annual,kg,cb52785f-edbf-3da9-b2d2-6f2ff6cd1ae2 -2022,Capital Federal,II.5.1,23.217105240000002,TJ,N2O,3.9,kg/TJ,90.54671043600001,Gas Oil combustion consumption by agriculture machines,AR-C,SESCO,annual,kg,cb52785f-edbf-3da9-b2d2-6f2ff6cd1ae2 -2022,Córdoba,II.5.1,70.93798235999999,TJ,CO2,74100.0,kg/TJ,5256504.492876,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,3412f8e8-3e87-30b8-ae62-414815f80cc1 -2022,Córdoba,II.5.1,70.93798235999999,TJ,CH4,3.9,kg/TJ,276.658131204,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,39c6dd2a-b198-3620-b361-432f57069893 -2022,Córdoba,II.5.1,70.93798235999999,TJ,N2O,3.9,kg/TJ,276.658131204,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,39c6dd2a-b198-3620-b361-432f57069893 -2022,Entre Rios,II.5.1,98.59604159999999,TJ,CO2,74100.0,kg/TJ,7305966.68256,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,07eb849f-cf1c-3dc5-a7cf-894ff99c6767 -2022,Entre Rios,II.5.1,98.59604159999999,TJ,CH4,3.9,kg/TJ,384.52456223999997,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,35f13758-964f-3bb1-ae91-868b9d8b7fce -2022,Entre Rios,II.5.1,98.59604159999999,TJ,N2O,3.9,kg/TJ,384.52456223999997,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,35f13758-964f-3bb1-ae91-868b9d8b7fce -2022,Jujuy,II.5.1,47.690138999999995,TJ,CO2,74100.0,kg/TJ,3533839.2998999995,Gas Oil combustion consumption by agriculture machines,AR-Y,SESCO,annual,kg,9f38efdc-ac74-3ab7-b9a7-672dfad67054 -2022,Jujuy,II.5.1,47.690138999999995,TJ,CH4,3.9,kg/TJ,185.99154209999998,Gas Oil combustion consumption by agriculture machines,AR-Y,SESCO,annual,kg,0956fcf4-165a-32cf-b368-9926023cf841 -2022,Jujuy,II.5.1,47.690138999999995,TJ,N2O,3.9,kg/TJ,185.99154209999998,Gas Oil combustion consumption by agriculture machines,AR-Y,SESCO,annual,kg,0956fcf4-165a-32cf-b368-9926023cf841 -2022,La Pampa,II.5.1,41.934633719999994,TJ,CO2,74100.0,kg/TJ,3107356.3586519994,Gas Oil combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,16e91598-6a8d-3c40-aa70-a088427f2182 -2022,La Pampa,II.5.1,41.934633719999994,TJ,CH4,3.9,kg/TJ,163.54507150799998,Gas Oil combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,1f61bcc4-672a-3750-bc66-32713287d53b -2022,La Pampa,II.5.1,41.934633719999994,TJ,N2O,3.9,kg/TJ,163.54507150799998,Gas Oil combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,1f61bcc4-672a-3750-bc66-32713287d53b -2022,Rio Negro,II.5.1,168.5917254,TJ,CO2,74100.0,kg/TJ,12492646.85214,Gas Oil combustion consumption by agriculture machines,AR-R,SESCO,annual,kg,370ff26a-67c3-3c0b-9f24-2980876dd698 -2022,Rio Negro,II.5.1,168.5917254,TJ,CH4,3.9,kg/TJ,657.50772906,Gas Oil combustion consumption by agriculture machines,AR-R,SESCO,annual,kg,65ca6225-476d-35b3-a0c5-a2809bbd5a95 -2022,Rio Negro,II.5.1,168.5917254,TJ,N2O,3.9,kg/TJ,657.50772906,Gas Oil combustion consumption by agriculture machines,AR-R,SESCO,annual,kg,65ca6225-476d-35b3-a0c5-a2809bbd5a95 -2022,San Luis,II.5.1,5.70016944,TJ,CO2,74100.0,kg/TJ,422382.555504,Gas Oil combustion consumption by agriculture machines,AR-D,SESCO,annual,kg,593f648d-6042-33d2-92db-4ca92ed2fd35 -2022,San Luis,II.5.1,5.70016944,TJ,CH4,3.9,kg/TJ,22.230660816,Gas Oil combustion consumption by agriculture machines,AR-D,SESCO,annual,kg,1afd16f3-c509-3af3-9880-8b3b97530b37 -2022,San Luis,II.5.1,5.70016944,TJ,N2O,3.9,kg/TJ,22.230660816,Gas Oil combustion consumption by agriculture machines,AR-D,SESCO,annual,kg,1afd16f3-c509-3af3-9880-8b3b97530b37 -2022,Santa Fe,II.5.1,335.99037108000005,TJ,CO2,74100.0,kg/TJ,24896886.497028004,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,a5346382-1f26-3fcb-84f7-7a501fa6bfbf -2022,Santa Fe,II.5.1,335.99037108000005,TJ,CH4,3.9,kg/TJ,1310.3624472120002,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,adb48355-734d-3c54-b9a3-759104f98605 -2022,Santa Fe,II.5.1,335.99037108000005,TJ,N2O,3.9,kg/TJ,1310.3624472120002,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,adb48355-734d-3c54-b9a3-759104f98605 -2022,Santiago del Estero,II.5.1,13.274280599999999,TJ,CO2,74100.0,kg/TJ,983624.1924599999,Gas Oil combustion consumption by agriculture machines,AR-G,SESCO,annual,kg,e4a2ed31-c862-366c-ba4d-18abb5eed70b -2022,Santiago del Estero,II.5.1,13.274280599999999,TJ,CH4,3.9,kg/TJ,51.769694339999994,Gas Oil combustion consumption by agriculture machines,AR-G,SESCO,annual,kg,269892fb-986f-3401-b3a0-bf932c6adde5 -2022,Santiago del Estero,II.5.1,13.274280599999999,TJ,N2O,3.9,kg/TJ,51.769694339999994,Gas Oil combustion consumption by agriculture machines,AR-G,SESCO,annual,kg,269892fb-986f-3401-b3a0-bf932c6adde5 -2022,Tucuman,II.5.1,3.9856613999999997,TJ,CO2,74100.0,kg/TJ,295337.50973999995,Gas Oil combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,3ee31f81-0a77-3f78-80d1-ad024cce2566 -2022,Tucuman,II.5.1,3.9856613999999997,TJ,CH4,3.9,kg/TJ,15.544079459999999,Gas Oil combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,92e18cbe-a5bd-3a8f-9b5e-25114ba3d2c2 -2022,Tucuman,II.5.1,3.9856613999999997,TJ,N2O,3.9,kg/TJ,15.544079459999999,Gas Oil combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,92e18cbe-a5bd-3a8f-9b5e-25114ba3d2c2 -2022,Buenos Aires,II.5.1,26.19888194,TJ,CO2,73300.0,kg/TJ,1920378.046202,Naphtha combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,e49fe422-3500-30c6-bab7-ac8d22ea769b -2022,Buenos Aires,II.5.1,26.19888194,TJ,CH4,0.5,kg/TJ,13.09944097,Naphtha combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,d5760659-60f8-3dfa-91e6-57a6908b8244 -2022,Buenos Aires,II.5.1,26.19888194,TJ,N2O,2.0,kg/TJ,52.39776388,Naphtha combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,c467e7a5-bce5-3989-a604-62757c700f55 -2022,Capital Federal,II.5.1,6.50863675,TJ,CO2,73300.0,kg/TJ,477083.073775,Naphtha combustion consumption by agriculture machines,AR-C,SESCO,annual,kg,733d3d7c-60b9-3d0c-a001-28259b90c8db -2022,Capital Federal,II.5.1,6.50863675,TJ,CH4,0.5,kg/TJ,3.254318375,Naphtha combustion consumption by agriculture machines,AR-C,SESCO,annual,kg,492837b2-2c5c-38bd-9c8e-3b307cfca6de -2022,Capital Federal,II.5.1,6.50863675,TJ,N2O,2.0,kg/TJ,13.0172735,Naphtha combustion consumption by agriculture machines,AR-C,SESCO,annual,kg,83689271-a32e-3ba1-85e4-b7cb547042c9 -2022,Córdoba,II.5.1,16.02752228,TJ,CO2,73300.0,kg/TJ,1174817.383124,Naphtha combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,5fcdbba2-556c-3655-95cd-9c11a5401f52 -2022,Córdoba,II.5.1,16.02752228,TJ,CH4,0.5,kg/TJ,8.01376114,Naphtha combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,c6a2faa9-d2a9-3305-90f8-28e428652063 -2022,Córdoba,II.5.1,16.02752228,TJ,N2O,2.0,kg/TJ,32.05504456,Naphtha combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,52811993-b825-3789-b37c-1618106cfe53 -2022,Santa Fe,II.5.1,103.55458651999999,TJ,CO2,73300.0,kg/TJ,7590551.191915999,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,8e80927a-1394-3a92-88dd-8a731cfbb6bb -2022,Santa Fe,II.5.1,103.55458651999999,TJ,CH4,0.5,kg/TJ,51.77729325999999,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,54b9b2eb-dfd3-3ef2-866d-5b632fe8b326 -2022,Santa Fe,II.5.1,103.55458651999999,TJ,N2O,2.0,kg/TJ,207.10917303999997,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,f78fab18-56ed-3ec7-b35e-79a5f76c7239 -2022,Buenos Aires,II.5.1,9.253366045,TJ,CO2,73300.0,kg/TJ,678271.7310985,Naphtha combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,212c93f3-96c2-3a5a-88aa-cc0914d3a902 -2022,Buenos Aires,II.5.1,9.253366045,TJ,CH4,0.5,kg/TJ,4.6266830225,Naphtha combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,2cedb603-4935-3b86-b80d-9e2e59c00a00 -2022,Buenos Aires,II.5.1,9.253366045,TJ,N2O,2.0,kg/TJ,18.50673209,Naphtha combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,3885288f-235a-3f31-84ed-2edb816e9952 -2022,Capital Federal,II.5.1,1.569337,TJ,CO2,73300.0,kg/TJ,115032.40209999999,Naphtha combustion consumption by agriculture machines,AR-C,SESCO,annual,kg,fb953863-872c-3706-bd62-aad3d24254b2 -2022,Capital Federal,II.5.1,1.569337,TJ,CH4,0.5,kg/TJ,0.7846685,Naphtha combustion consumption by agriculture machines,AR-C,SESCO,annual,kg,2fb4d6f6-416e-3e6f-9f84-112a893d4eab -2022,Capital Federal,II.5.1,1.569337,TJ,N2O,2.0,kg/TJ,3.138674,Naphtha combustion consumption by agriculture machines,AR-C,SESCO,annual,kg,d1e0e8ff-71c8-3e5b-bf9b-8df984c58f51 -2022,Córdoba,II.5.1,3.09926925,TJ,CO2,73300.0,kg/TJ,227176.436025,Naphtha combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,6a747845-6cbf-332b-88c3-0d257089a9d4 -2022,Córdoba,II.5.1,3.09926925,TJ,CH4,0.5,kg/TJ,1.549634625,Naphtha combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,6e14b21e-b06d-30cb-bd5e-81b462c97f82 -2022,Córdoba,II.5.1,3.09926925,TJ,N2O,2.0,kg/TJ,6.1985385,Naphtha combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,c1ac5cf3-a7ad-3944-be20-ea0bfb2f60a8 -2022,Santa Fe,II.5.1,14.216411439999998,TJ,CO2,73300.0,kg/TJ,1042062.9585519999,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,bfa8b15d-3f05-361e-b7b2-4893ba35c2c3 -2022,Santa Fe,II.5.1,14.216411439999998,TJ,CH4,0.5,kg/TJ,7.108205719999999,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,e579f575-0fd6-3f1e-9943-8a733a32c081 -2022,Santa Fe,II.5.1,14.216411439999998,TJ,N2O,2.0,kg/TJ,28.432822879999996,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,903012ad-468b-36f7-a094-5a28c1779084 -2022,Buenos Aires,II.5.1,9559.55532,TJ,CO2,74100.0,kg/TJ,708363049.212,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,993e9e73-a91c-3c8c-97cc-ccfaae53ed0d -2022,Buenos Aires,II.5.1,9559.55532,TJ,CH4,3.9,kg/TJ,37282.265748,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,2a99b7cc-8ebe-3e04-a208-bd2db5724e9c -2022,Buenos Aires,II.5.1,9559.55532,TJ,N2O,3.9,kg/TJ,37282.265748,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,2a99b7cc-8ebe-3e04-a208-bd2db5724e9c -2022,Capital Federal,II.5.1,69.3504,TJ,CO2,74100.0,kg/TJ,5138864.64,Gas Oil combustion consumption by agriculture machines,AR-C,SESCO,annual,kg,11bf5a50-7478-3a5e-896d-af1211a9ed11 -2022,Capital Federal,II.5.1,69.3504,TJ,CH4,3.9,kg/TJ,270.46655999999996,Gas Oil combustion consumption by agriculture machines,AR-C,SESCO,annual,kg,b3f5066a-7275-3fe9-867d-64a2a74bfbfa -2022,Capital Federal,II.5.1,69.3504,TJ,N2O,3.9,kg/TJ,270.46655999999996,Gas Oil combustion consumption by agriculture machines,AR-C,SESCO,annual,kg,b3f5066a-7275-3fe9-867d-64a2a74bfbfa -2022,Catamarca,II.5.1,190.60523999999998,TJ,CO2,74100.0,kg/TJ,14123848.283999998,Gas Oil combustion consumption by agriculture machines,AR-K,SESCO,annual,kg,a1e5d5c3-57b7-394f-af14-91fd9fc91072 -2022,Catamarca,II.5.1,190.60523999999998,TJ,CH4,3.9,kg/TJ,743.3604359999999,Gas Oil combustion consumption by agriculture machines,AR-K,SESCO,annual,kg,28052dbd-0542-35f6-be7c-9e594875df7c -2022,Catamarca,II.5.1,190.60523999999998,TJ,N2O,3.9,kg/TJ,743.3604359999999,Gas Oil combustion consumption by agriculture machines,AR-K,SESCO,annual,kg,28052dbd-0542-35f6-be7c-9e594875df7c -2022,Chaco,II.5.1,965.55984,TJ,CO2,74100.0,kg/TJ,71547984.144,Gas Oil combustion consumption by agriculture machines,AR-H,SESCO,annual,kg,8bf3049f-744e-3d6b-a327-5b0db8cd6dc5 -2022,Chaco,II.5.1,965.55984,TJ,CH4,3.9,kg/TJ,3765.683376,Gas Oil combustion consumption by agriculture machines,AR-H,SESCO,annual,kg,cad7ce34-d5b4-3e41-a018-728cae021ba3 -2022,Chaco,II.5.1,965.55984,TJ,N2O,3.9,kg/TJ,3765.683376,Gas Oil combustion consumption by agriculture machines,AR-H,SESCO,annual,kg,cad7ce34-d5b4-3e41-a018-728cae021ba3 -2022,Corrientes,II.5.1,784.77924,TJ,CO2,74100.0,kg/TJ,58152141.684,Gas Oil combustion consumption by agriculture machines,AR-W,SESCO,annual,kg,66e3d13f-1aed-3600-82db-b673b7da81a4 -2022,Corrientes,II.5.1,784.77924,TJ,CH4,3.9,kg/TJ,3060.6390359999996,Gas Oil combustion consumption by agriculture machines,AR-W,SESCO,annual,kg,534b0e05-80cd-35d2-b00c-72d6ccdf0ead -2022,Corrientes,II.5.1,784.77924,TJ,N2O,3.9,kg/TJ,3060.6390359999996,Gas Oil combustion consumption by agriculture machines,AR-W,SESCO,annual,kg,534b0e05-80cd-35d2-b00c-72d6ccdf0ead -2022,Córdoba,II.5.1,7741.780199999999,TJ,CO2,74100.0,kg/TJ,573665912.8199999,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,73585875-7955-33ab-b27a-129f759bb8fa -2022,Córdoba,II.5.1,7741.780199999999,TJ,CH4,3.9,kg/TJ,30192.942779999998,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,738ec52a-a5ed-3b2e-b35a-411d67231ac7 -2022,Córdoba,II.5.1,7741.780199999999,TJ,N2O,3.9,kg/TJ,30192.942779999998,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,738ec52a-a5ed-3b2e-b35a-411d67231ac7 -2022,Entre Rios,II.5.1,2110.7805599999997,TJ,CO2,74100.0,kg/TJ,156408839.496,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,e63d1134-d3dd-3967-94de-68485aa2d5e6 -2022,Entre Rios,II.5.1,2110.7805599999997,TJ,CH4,3.9,kg/TJ,8232.044183999998,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,53484be8-5eef-38d1-a861-d9f2e1131939 -2022,Entre Rios,II.5.1,2110.7805599999997,TJ,N2O,3.9,kg/TJ,8232.044183999998,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,53484be8-5eef-38d1-a861-d9f2e1131939 -2022,Formosa,II.5.1,320.52887999999996,TJ,CO2,74100.0,kg/TJ,23751190.007999998,Gas Oil combustion consumption by agriculture machines,AR-P,SESCO,annual,kg,fad92067-fbf2-3827-8b90-f5266d2af17d -2022,Formosa,II.5.1,320.52887999999996,TJ,CH4,3.9,kg/TJ,1250.062632,Gas Oil combustion consumption by agriculture machines,AR-P,SESCO,annual,kg,d5fb8aa1-b127-3b6b-8bbb-f120cd00332d -2022,Formosa,II.5.1,320.52887999999996,TJ,N2O,3.9,kg/TJ,1250.062632,Gas Oil combustion consumption by agriculture machines,AR-P,SESCO,annual,kg,d5fb8aa1-b127-3b6b-8bbb-f120cd00332d -2022,Jujuy,II.5.1,959.5639199999999,TJ,CO2,74100.0,kg/TJ,71103686.472,Gas Oil combustion consumption by agriculture machines,AR-Y,SESCO,annual,kg,fc8eb104-ea29-389e-ab70-cffcc0eee76b -2022,Jujuy,II.5.1,959.5639199999999,TJ,CH4,3.9,kg/TJ,3742.2992879999997,Gas Oil combustion consumption by agriculture machines,AR-Y,SESCO,annual,kg,bd787f78-aab8-303f-9e95-9de0c2f1f882 -2022,Jujuy,II.5.1,959.5639199999999,TJ,N2O,3.9,kg/TJ,3742.2992879999997,Gas Oil combustion consumption by agriculture machines,AR-Y,SESCO,annual,kg,bd787f78-aab8-303f-9e95-9de0c2f1f882 -2022,La Pampa,II.5.1,1567.13844,TJ,CO2,74100.0,kg/TJ,116124958.404,Gas Oil combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,06b5dc11-b266-3878-81ff-e487e2787642 -2022,La Pampa,II.5.1,1567.13844,TJ,CH4,3.9,kg/TJ,6111.839916,Gas Oil combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,6e39fc7f-fbc1-370b-b3de-4199da219092 -2022,La Pampa,II.5.1,1567.13844,TJ,N2O,3.9,kg/TJ,6111.839916,Gas Oil combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,6e39fc7f-fbc1-370b-b3de-4199da219092 -2022,La Rioja,II.5.1,126.34776,TJ,CO2,74100.0,kg/TJ,9362369.015999999,Gas Oil combustion consumption by agriculture machines,AR-F,SESCO,annual,kg,f65ea214-96e1-3140-8077-18941810af81 -2022,La Rioja,II.5.1,126.34776,TJ,CH4,3.9,kg/TJ,492.756264,Gas Oil combustion consumption by agriculture machines,AR-F,SESCO,annual,kg,950dc955-cff5-3e5e-be7c-562a71e1f77a -2022,La Rioja,II.5.1,126.34776,TJ,N2O,3.9,kg/TJ,492.756264,Gas Oil combustion consumption by agriculture machines,AR-F,SESCO,annual,kg,950dc955-cff5-3e5e-be7c-562a71e1f77a -2022,Mendoza,II.5.1,2384.1728399999997,TJ,CO2,74100.0,kg/TJ,176667207.44399998,Gas Oil combustion consumption by agriculture machines,AR-M,SESCO,annual,kg,02a5f759-a659-33a2-bb0d-804d6a1b26b1 -2022,Mendoza,II.5.1,2384.1728399999997,TJ,CH4,3.9,kg/TJ,9298.274075999998,Gas Oil combustion consumption by agriculture machines,AR-M,SESCO,annual,kg,b4f374ed-b59a-39f9-8957-c75df225455a -2022,Mendoza,II.5.1,2384.1728399999997,TJ,N2O,3.9,kg/TJ,9298.274075999998,Gas Oil combustion consumption by agriculture machines,AR-M,SESCO,annual,kg,b4f374ed-b59a-39f9-8957-c75df225455a -2022,Misiones,II.5.1,1143.81204,TJ,CO2,74100.0,kg/TJ,84756472.164,Gas Oil combustion consumption by agriculture machines,AR-N,SESCO,annual,kg,dbbd9b82-f59c-3a16-a275-9721da5ac6e5 -2022,Misiones,II.5.1,1143.81204,TJ,CH4,3.9,kg/TJ,4460.866956,Gas Oil combustion consumption by agriculture machines,AR-N,SESCO,annual,kg,45973dae-e1b1-3bcb-b010-2e816f35f6bf -2022,Misiones,II.5.1,1143.81204,TJ,N2O,3.9,kg/TJ,4460.866956,Gas Oil combustion consumption by agriculture machines,AR-N,SESCO,annual,kg,45973dae-e1b1-3bcb-b010-2e816f35f6bf -2022,Rio Negro,II.5.1,257.13828,TJ,CO2,74100.0,kg/TJ,19053946.548,Gas Oil combustion consumption by agriculture machines,AR-R,SESCO,annual,kg,c95b139a-cf13-34c2-a909-79d73d4ff3b2 -2022,Rio Negro,II.5.1,257.13828,TJ,CH4,3.9,kg/TJ,1002.839292,Gas Oil combustion consumption by agriculture machines,AR-R,SESCO,annual,kg,11b29e4b-b67b-3228-adca-ec1338bb9f78 -2022,Rio Negro,II.5.1,257.13828,TJ,N2O,3.9,kg/TJ,1002.839292,Gas Oil combustion consumption by agriculture machines,AR-R,SESCO,annual,kg,11b29e4b-b67b-3228-adca-ec1338bb9f78 -2022,Salta,II.5.1,1365.44436,TJ,CO2,74100.0,kg/TJ,101179427.07599999,Gas Oil combustion consumption by agriculture machines,AR-A,SESCO,annual,kg,e4b0c610-b1f6-3fe2-af12-def00cd38c2e -2022,Salta,II.5.1,1365.44436,TJ,CH4,3.9,kg/TJ,5325.233004,Gas Oil combustion consumption by agriculture machines,AR-A,SESCO,annual,kg,ef36d712-1bf3-39d5-89b6-95ba1b170328 -2022,Salta,II.5.1,1365.44436,TJ,N2O,3.9,kg/TJ,5325.233004,Gas Oil combustion consumption by agriculture machines,AR-A,SESCO,annual,kg,ef36d712-1bf3-39d5-89b6-95ba1b170328 -2022,San Juan,II.5.1,438.46067999999997,TJ,CO2,74100.0,kg/TJ,32489936.387999997,Gas Oil combustion consumption by agriculture machines,AR-J,SESCO,annual,kg,f0581eb3-bb66-35f5-acdf-711d93a543ba -2022,San Juan,II.5.1,438.46067999999997,TJ,CH4,3.9,kg/TJ,1709.9966519999998,Gas Oil combustion consumption by agriculture machines,AR-J,SESCO,annual,kg,e84d6d1e-09c6-33b0-95ee-fa6d71ba8261 -2022,San Juan,II.5.1,438.46067999999997,TJ,N2O,3.9,kg/TJ,1709.9966519999998,Gas Oil combustion consumption by agriculture machines,AR-J,SESCO,annual,kg,e84d6d1e-09c6-33b0-95ee-fa6d71ba8261 -2022,San Luis,II.5.1,287.47908,TJ,CO2,74100.0,kg/TJ,21302199.828,Gas Oil combustion consumption by agriculture machines,AR-D,SESCO,annual,kg,c8d61277-a1a7-382a-b112-e8ba8a12b3cc -2022,San Luis,II.5.1,287.47908,TJ,CH4,3.9,kg/TJ,1121.168412,Gas Oil combustion consumption by agriculture machines,AR-D,SESCO,annual,kg,c9e4ed80-7f33-388f-91e2-8e525f74ca76 -2022,San Luis,II.5.1,287.47908,TJ,N2O,3.9,kg/TJ,1121.168412,Gas Oil combustion consumption by agriculture machines,AR-D,SESCO,annual,kg,c9e4ed80-7f33-388f-91e2-8e525f74ca76 -2022,Santa Fe,II.5.1,6846.83496,TJ,CO2,74100.0,kg/TJ,507350470.536,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,f32b3e61-b53e-3542-a898-84d78e543d07 -2022,Santa Fe,II.5.1,6846.83496,TJ,CH4,3.9,kg/TJ,26702.656344,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,7a4e768f-32a9-37a8-80e1-e9709f9975bd -2022,Santa Fe,II.5.1,6846.83496,TJ,N2O,3.9,kg/TJ,26702.656344,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,7a4e768f-32a9-37a8-80e1-e9709f9975bd -2022,Santiago del Estero,II.5.1,1481.1006,TJ,CO2,74100.0,kg/TJ,109749554.46,Gas Oil combustion consumption by agriculture machines,AR-G,SESCO,annual,kg,20f0df4c-2d7a-346f-b755-650e301a0852 -2022,Santiago del Estero,II.5.1,1481.1006,TJ,CH4,3.9,kg/TJ,5776.29234,Gas Oil combustion consumption by agriculture machines,AR-G,SESCO,annual,kg,61ff1844-0e71-3874-8f0f-25ea8d91e06a -2022,Santiago del Estero,II.5.1,1481.1006,TJ,N2O,3.9,kg/TJ,5776.29234,Gas Oil combustion consumption by agriculture machines,AR-G,SESCO,annual,kg,61ff1844-0e71-3874-8f0f-25ea8d91e06a -2022,Tucuman,II.5.1,1101.8406,TJ,CO2,74100.0,kg/TJ,81646388.46,Gas Oil combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,81c7fdba-12fb-3cdb-87d5-ebb67d53eeb1 -2022,Tucuman,II.5.1,1101.8406,TJ,CH4,3.9,kg/TJ,4297.1783399999995,Gas Oil combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,55618f5a-d7c8-3f0c-9973-e94b5121889e -2022,Tucuman,II.5.1,1101.8406,TJ,N2O,3.9,kg/TJ,4297.1783399999995,Gas Oil combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,55618f5a-d7c8-3f0c-9973-e94b5121889e -2022,Buenos Aires,II.5.1,1051.995,TJ,CO2,74100.0,kg/TJ,77952829.49999999,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,e0ef2ea1-fe44-3657-aad2-9be1601881ff -2022,Buenos Aires,II.5.1,1051.995,TJ,CH4,3.9,kg/TJ,4102.7805,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,186db40d-1bb2-3471-a628-7605fe8a111c -2022,Buenos Aires,II.5.1,1051.995,TJ,N2O,3.9,kg/TJ,4102.7805,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,186db40d-1bb2-3471-a628-7605fe8a111c -2022,Capital Federal,II.5.1,10.6554,TJ,CO2,74100.0,kg/TJ,789565.14,Gas Oil combustion consumption by agriculture machines,AR-C,SESCO,annual,kg,2ef310b0-ee91-36ac-ae4e-f62899db45d0 -2022,Capital Federal,II.5.1,10.6554,TJ,CH4,3.9,kg/TJ,41.55606,Gas Oil combustion consumption by agriculture machines,AR-C,SESCO,annual,kg,5cd5f4a0-740e-3063-bf8d-5bc2af8ea949 -2022,Capital Federal,II.5.1,10.6554,TJ,N2O,3.9,kg/TJ,41.55606,Gas Oil combustion consumption by agriculture machines,AR-C,SESCO,annual,kg,5cd5f4a0-740e-3063-bf8d-5bc2af8ea949 -2022,Catamarca,II.5.1,100.08851999999999,TJ,CO2,74100.0,kg/TJ,7416559.3319999995,Gas Oil combustion consumption by agriculture machines,AR-K,SESCO,annual,kg,1a5a1e93-79a8-3452-bc43-babf26e51c36 -2022,Catamarca,II.5.1,100.08851999999999,TJ,CH4,3.9,kg/TJ,390.34522799999996,Gas Oil combustion consumption by agriculture machines,AR-K,SESCO,annual,kg,906e765f-c915-3400-bf6f-6d1b624842a1 -2022,Catamarca,II.5.1,100.08851999999999,TJ,N2O,3.9,kg/TJ,390.34522799999996,Gas Oil combustion consumption by agriculture machines,AR-K,SESCO,annual,kg,906e765f-c915-3400-bf6f-6d1b624842a1 -2022,Chaco,II.5.1,79.03056,TJ,CO2,74100.0,kg/TJ,5856164.495999999,Gas Oil combustion consumption by agriculture machines,AR-H,SESCO,annual,kg,faeb3dd7-180d-3939-8b23-5572060267d6 -2022,Chaco,II.5.1,79.03056,TJ,CH4,3.9,kg/TJ,308.219184,Gas Oil combustion consumption by agriculture machines,AR-H,SESCO,annual,kg,2a0abb2a-1d4c-3193-b628-45ad6d870a00 -2022,Chaco,II.5.1,79.03056,TJ,N2O,3.9,kg/TJ,308.219184,Gas Oil combustion consumption by agriculture machines,AR-H,SESCO,annual,kg,2a0abb2a-1d4c-3193-b628-45ad6d870a00 -2022,Corrientes,II.5.1,80.9088,TJ,CO2,74100.0,kg/TJ,5995342.08,Gas Oil combustion consumption by agriculture machines,AR-W,SESCO,annual,kg,8229b30b-6d8f-3139-a1f1-c6e30f00f980 -2022,Corrientes,II.5.1,80.9088,TJ,CH4,3.9,kg/TJ,315.54431999999997,Gas Oil combustion consumption by agriculture machines,AR-W,SESCO,annual,kg,1a3a7e03-d4f8-39bb-ac1f-18d9eadce026 -2022,Corrientes,II.5.1,80.9088,TJ,N2O,3.9,kg/TJ,315.54431999999997,Gas Oil combustion consumption by agriculture machines,AR-W,SESCO,annual,kg,1a3a7e03-d4f8-39bb-ac1f-18d9eadce026 -2022,Córdoba,II.5.1,864.49608,TJ,CO2,74100.0,kg/TJ,64059159.528,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,146c0145-7a46-378a-bc9e-2b4e3f468f89 -2022,Córdoba,II.5.1,864.49608,TJ,CH4,3.9,kg/TJ,3371.534712,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,d7dc2475-e453-3ebc-8b4b-bab2d01ce2b6 -2022,Córdoba,II.5.1,864.49608,TJ,N2O,3.9,kg/TJ,3371.534712,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,d7dc2475-e453-3ebc-8b4b-bab2d01ce2b6 -2022,Entre Rios,II.5.1,88.09667999999999,TJ,CO2,74100.0,kg/TJ,6527963.987999999,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,df7bbf1a-3a00-3577-ad70-6c00f95d250d -2022,Entre Rios,II.5.1,88.09667999999999,TJ,CH4,3.9,kg/TJ,343.577052,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,9384433a-fdc2-359b-8122-4904144bcf49 -2022,Entre Rios,II.5.1,88.09667999999999,TJ,N2O,3.9,kg/TJ,343.577052,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,9384433a-fdc2-359b-8122-4904144bcf49 -2022,Formosa,II.5.1,48.328559999999996,TJ,CO2,74100.0,kg/TJ,3581146.2959999996,Gas Oil combustion consumption by agriculture machines,AR-P,SESCO,annual,kg,685b73be-96c2-3f85-b8d0-7a124add38d9 -2022,Formosa,II.5.1,48.328559999999996,TJ,CH4,3.9,kg/TJ,188.481384,Gas Oil combustion consumption by agriculture machines,AR-P,SESCO,annual,kg,6d94f089-98fd-3050-95fb-c90d4d52723a -2022,Formosa,II.5.1,48.328559999999996,TJ,N2O,3.9,kg/TJ,188.481384,Gas Oil combustion consumption by agriculture machines,AR-P,SESCO,annual,kg,6d94f089-98fd-3050-95fb-c90d4d52723a -2022,Jujuy,II.5.1,72.52896,TJ,CO2,74100.0,kg/TJ,5374395.936,Gas Oil combustion consumption by agriculture machines,AR-Y,SESCO,annual,kg,706444c9-b99f-3c64-be26-480ef16dc3e0 -2022,Jujuy,II.5.1,72.52896,TJ,CH4,3.9,kg/TJ,282.86294399999997,Gas Oil combustion consumption by agriculture machines,AR-Y,SESCO,annual,kg,b901f115-7944-3167-8ad8-fd33d59b2ffa -2022,Jujuy,II.5.1,72.52896,TJ,N2O,3.9,kg/TJ,282.86294399999997,Gas Oil combustion consumption by agriculture machines,AR-Y,SESCO,annual,kg,b901f115-7944-3167-8ad8-fd33d59b2ffa -2022,La Pampa,II.5.1,206.31744,TJ,CO2,74100.0,kg/TJ,15288122.304,Gas Oil combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,f9a92dfe-4393-3da2-8963-62e04fde12e1 -2022,La Pampa,II.5.1,206.31744,TJ,CH4,3.9,kg/TJ,804.638016,Gas Oil combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,40863c9e-91d2-3911-8809-f358d1d73c43 -2022,La Pampa,II.5.1,206.31744,TJ,N2O,3.9,kg/TJ,804.638016,Gas Oil combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,40863c9e-91d2-3911-8809-f358d1d73c43 -2022,La Rioja,II.5.1,30.48528,TJ,CO2,74100.0,kg/TJ,2258959.248,Gas Oil combustion consumption by agriculture machines,AR-F,SESCO,annual,kg,c42997c6-f3d0-3889-b5d6-ce451c46ca74 -2022,La Rioja,II.5.1,30.48528,TJ,CH4,3.9,kg/TJ,118.892592,Gas Oil combustion consumption by agriculture machines,AR-F,SESCO,annual,kg,56b1ec22-a150-3239-9c88-784149fcb83c -2022,La Rioja,II.5.1,30.48528,TJ,N2O,3.9,kg/TJ,118.892592,Gas Oil combustion consumption by agriculture machines,AR-F,SESCO,annual,kg,56b1ec22-a150-3239-9c88-784149fcb83c -2022,Mendoza,II.5.1,376.9122,TJ,CO2,74100.0,kg/TJ,27929194.02,Gas Oil combustion consumption by agriculture machines,AR-M,SESCO,annual,kg,921a2c66-9632-3daf-9322-cac92beb4bf0 -2022,Mendoza,II.5.1,376.9122,TJ,CH4,3.9,kg/TJ,1469.95758,Gas Oil combustion consumption by agriculture machines,AR-M,SESCO,annual,kg,584295ca-7ee5-380d-9e22-de15e228350d -2022,Mendoza,II.5.1,376.9122,TJ,N2O,3.9,kg/TJ,1469.95758,Gas Oil combustion consumption by agriculture machines,AR-M,SESCO,annual,kg,584295ca-7ee5-380d-9e22-de15e228350d -2022,Misiones,II.5.1,190.64136,TJ,CO2,74100.0,kg/TJ,14126524.775999999,Gas Oil combustion consumption by agriculture machines,AR-N,SESCO,annual,kg,d2ecffae-14c8-3976-9587-fc6e9b5f2d54 -2022,Misiones,II.5.1,190.64136,TJ,CH4,3.9,kg/TJ,743.501304,Gas Oil combustion consumption by agriculture machines,AR-N,SESCO,annual,kg,11c22b80-936e-3d95-a551-0e918092b028 -2022,Misiones,II.5.1,190.64136,TJ,N2O,3.9,kg/TJ,743.501304,Gas Oil combustion consumption by agriculture machines,AR-N,SESCO,annual,kg,11c22b80-936e-3d95-a551-0e918092b028 -2022,Rio Negro,II.5.1,93.22572,TJ,CO2,74100.0,kg/TJ,6908025.852,Gas Oil combustion consumption by agriculture machines,AR-R,SESCO,annual,kg,85114eec-18f5-3db1-a254-fbff8f7e8e1d -2022,Rio Negro,II.5.1,93.22572,TJ,CH4,3.9,kg/TJ,363.580308,Gas Oil combustion consumption by agriculture machines,AR-R,SESCO,annual,kg,b8b848e0-8b2c-3d46-bb75-229b407049d6 -2022,Rio Negro,II.5.1,93.22572,TJ,N2O,3.9,kg/TJ,363.580308,Gas Oil combustion consumption by agriculture machines,AR-R,SESCO,annual,kg,b8b848e0-8b2c-3d46-bb75-229b407049d6 -2022,Salta,II.5.1,391.902,TJ,CO2,74100.0,kg/TJ,29039938.2,Gas Oil combustion consumption by agriculture machines,AR-A,SESCO,annual,kg,9c18c547-acc8-3cec-8f85-b042c704a042 -2022,Salta,II.5.1,391.902,TJ,CH4,3.9,kg/TJ,1528.4178,Gas Oil combustion consumption by agriculture machines,AR-A,SESCO,annual,kg,4f1ad5b2-9dde-3555-b671-77c62e1bcd52 -2022,Salta,II.5.1,391.902,TJ,N2O,3.9,kg/TJ,1528.4178,Gas Oil combustion consumption by agriculture machines,AR-A,SESCO,annual,kg,4f1ad5b2-9dde-3555-b671-77c62e1bcd52 -2022,San Juan,II.5.1,95.82636,TJ,CO2,74100.0,kg/TJ,7100733.276,Gas Oil combustion consumption by agriculture machines,AR-J,SESCO,annual,kg,fbf54cde-6fe3-3a8d-82e8-20045ab8dbab -2022,San Juan,II.5.1,95.82636,TJ,CH4,3.9,kg/TJ,373.722804,Gas Oil combustion consumption by agriculture machines,AR-J,SESCO,annual,kg,88a5a031-5f76-3d8b-bb20-6a1fde9c6f31 -2022,San Juan,II.5.1,95.82636,TJ,N2O,3.9,kg/TJ,373.722804,Gas Oil combustion consumption by agriculture machines,AR-J,SESCO,annual,kg,88a5a031-5f76-3d8b-bb20-6a1fde9c6f31 -2022,San Luis,II.5.1,56.816759999999995,TJ,CO2,74100.0,kg/TJ,4210121.915999999,Gas Oil combustion consumption by agriculture machines,AR-D,SESCO,annual,kg,a1e00f6f-a4f0-3663-9c71-72d77f3433b4 -2022,San Luis,II.5.1,56.816759999999995,TJ,CH4,3.9,kg/TJ,221.58536399999997,Gas Oil combustion consumption by agriculture machines,AR-D,SESCO,annual,kg,f102ab54-92fa-30a4-9f08-1fc3af160e20 -2022,San Luis,II.5.1,56.816759999999995,TJ,N2O,3.9,kg/TJ,221.58536399999997,Gas Oil combustion consumption by agriculture machines,AR-D,SESCO,annual,kg,f102ab54-92fa-30a4-9f08-1fc3af160e20 -2022,Santa Fe,II.5.1,955.04892,TJ,CO2,74100.0,kg/TJ,70769124.972,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,b1914241-9e2e-3616-b517-b9397e41e1ac -2022,Santa Fe,II.5.1,955.04892,TJ,CH4,3.9,kg/TJ,3724.690788,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,0bb2d34b-9e90-30da-9d78-b695bb6aaead -2022,Santa Fe,II.5.1,955.04892,TJ,N2O,3.9,kg/TJ,3724.690788,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,0bb2d34b-9e90-30da-9d78-b695bb6aaead -2022,Santiago del Estero,II.5.1,306.6588,TJ,CO2,74100.0,kg/TJ,22723417.08,Gas Oil combustion consumption by agriculture machines,AR-G,SESCO,annual,kg,9532a1bd-937a-3205-8b53-ef5b1839c396 -2022,Santiago del Estero,II.5.1,306.6588,TJ,CH4,3.9,kg/TJ,1195.96932,Gas Oil combustion consumption by agriculture machines,AR-G,SESCO,annual,kg,3dbfd496-1c27-3dd9-90d7-4aeb3fdf8adc -2022,Santiago del Estero,II.5.1,306.6588,TJ,N2O,3.9,kg/TJ,1195.96932,Gas Oil combustion consumption by agriculture machines,AR-G,SESCO,annual,kg,3dbfd496-1c27-3dd9-90d7-4aeb3fdf8adc -2022,Tucuman,II.5.1,198.2988,TJ,CO2,74100.0,kg/TJ,14693941.08,Gas Oil combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,ab88fb10-3dae-3ae0-b824-b34d833a73ce -2022,Tucuman,II.5.1,198.2988,TJ,CH4,3.9,kg/TJ,773.36532,Gas Oil combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,bed109ec-d579-3262-98bc-cdd3c98bdd87 -2022,Tucuman,II.5.1,198.2988,TJ,N2O,3.9,kg/TJ,773.36532,Gas Oil combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,bed109ec-d579-3262-98bc-cdd3c98bdd87 -2022,Buenos Aires,II.5.1,4.5292319999999995,TJ,CO2,71500.0,kg/TJ,323840.088,Jet Kerosene combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,40d65c8d-4638-391f-979f-6eb467f3354e -2022,Buenos Aires,II.5.1,4.5292319999999995,TJ,CH4,0.5,kg/TJ,2.2646159999999997,Jet Kerosene combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,6febe512-ac57-30f1-b0ae-7730b5c8fcdd -2022,Buenos Aires,II.5.1,4.5292319999999995,TJ,N2O,2.0,kg/TJ,9.058463999999999,Jet Kerosene combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,9874d6b7-f348-39bc-9eed-a138af9c4975 -2022,La Pampa,II.5.1,0.22017099999999998,TJ,CO2,71500.0,kg/TJ,15742.226499999999,Jet Kerosene combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,00b63c61-5ae1-3d1b-a97d-cb48a686ddc8 -2022,La Pampa,II.5.1,0.22017099999999998,TJ,CH4,0.5,kg/TJ,0.11008549999999999,Jet Kerosene combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,eaf44d86-d101-33a5-9bf6-d28271d76f0f -2022,La Pampa,II.5.1,0.22017099999999998,TJ,N2O,2.0,kg/TJ,0.44034199999999996,Jet Kerosene combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,5424336b-b984-3a8f-905e-32d5474f922d -2022,Santa Fe,II.5.1,0.5661539999999999,TJ,CO2,71500.0,kg/TJ,40480.011,Jet Kerosene combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,be2a9b83-fefc-3f00-9e41-dcce22a0788f -2022,Santa Fe,II.5.1,0.5661539999999999,TJ,CH4,0.5,kg/TJ,0.28307699999999997,Jet Kerosene combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,3d7cf76a-3a0b-32c3-9edf-0617086eb265 -2022,Santa Fe,II.5.1,0.5661539999999999,TJ,N2O,2.0,kg/TJ,1.1323079999999999,Jet Kerosene combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,287cd96d-70fb-34ea-924e-a52cb435fdc2 -2022,Buenos Aires,II.5.1,43.10537,TJ,CO2,73300.0,kg/TJ,3159623.6210000003,Naphtha combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,acea9c70-4c21-382e-b8e4-bec4d861ac73 -2022,Buenos Aires,II.5.1,43.10537,TJ,CH4,0.5,kg/TJ,21.552685,Naphtha combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,e04d2cf8-ab66-3012-9730-c6bad7b9c595 -2022,Buenos Aires,II.5.1,43.10537,TJ,N2O,2.0,kg/TJ,86.21074,Naphtha combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,45d92908-e04e-35f0-94e3-2ad6fcaf48c1 -2022,Salta,II.5.1,0.34265,TJ,CO2,73300.0,kg/TJ,25116.245,Naphtha combustion consumption by agriculture machines,AR-A,SESCO,annual,kg,9ddcde26-2f6a-33b5-94ce-5b34689662bc -2022,Salta,II.5.1,0.34265,TJ,CH4,0.5,kg/TJ,0.171325,Naphtha combustion consumption by agriculture machines,AR-A,SESCO,annual,kg,108415b5-7ea1-32fd-980d-3ff37a0c4b93 -2022,Salta,II.5.1,0.34265,TJ,N2O,2.0,kg/TJ,0.6853,Naphtha combustion consumption by agriculture machines,AR-A,SESCO,annual,kg,2a0d615c-b853-315a-897f-4eb694f22a00 -2022,Santa Fe,II.5.1,27.000819999999997,TJ,CO2,73300.0,kg/TJ,1979160.106,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,f6719469-bc05-3df5-9158-7b6d931a63c7 -2022,Santa Fe,II.5.1,27.000819999999997,TJ,CH4,0.5,kg/TJ,13.500409999999999,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,139973e6-96bf-3712-a026-02d07e6447d9 -2022,Santa Fe,II.5.1,27.000819999999997,TJ,N2O,2.0,kg/TJ,54.001639999999995,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,b6536b2b-3a62-3e5a-a21a-1a49f0b5039c -2022,Buenos Aires,II.5.1,1.3363349999999998,TJ,CO2,73300.0,kg/TJ,97953.35549999999,Naphtha combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,395af94c-5d39-3caf-bc0a-67e4669f7ac3 -2022,Buenos Aires,II.5.1,1.3363349999999998,TJ,CH4,0.5,kg/TJ,0.6681674999999999,Naphtha combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,f3f8e043-7385-3fbe-bce1-ad36abf05852 -2022,Buenos Aires,II.5.1,1.3363349999999998,TJ,N2O,2.0,kg/TJ,2.6726699999999997,Naphtha combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,0560d933-6ea6-3735-a462-3fc670c5064c -2022,Santa Fe,II.5.1,1.78178,TJ,CO2,73300.0,kg/TJ,130604.47399999999,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,626b256c-36d6-398e-aba2-e6d9a52fa547 -2022,Santa Fe,II.5.1,1.78178,TJ,CH4,0.5,kg/TJ,0.89089,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,4e832ac8-9d61-362a-8b90-aee484dff6d0 -2022,Santa Fe,II.5.1,1.78178,TJ,N2O,2.0,kg/TJ,3.56356,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,59187363-5ede-3a56-b4f7-1a5de8aebf20 -2022,Buenos Aires,II.1.1,11881.24056,TJ,CO2,74100.0,kg/TJ,880399925.496,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,9a46e9e5-76d8-3401-b147-5cb356a76637 -2022,Buenos Aires,II.1.1,11881.24056,TJ,CH4,3.9,kg/TJ,46336.838184,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,6fc8ffb2-957b-34bd-8811-1bf37a3a6506 -2022,Buenos Aires,II.1.1,11881.24056,TJ,N2O,3.9,kg/TJ,46336.838184,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,6fc8ffb2-957b-34bd-8811-1bf37a3a6506 -2022,Capital Federal,II.1.1,926.36964,TJ,CO2,74100.0,kg/TJ,68643990.324,Gas Oil combustion consumption by freight transport,AR-C,SESCO,annual,kg,567595e1-56bb-363d-9b0b-bc2de0914c9d -2022,Capital Federal,II.1.1,926.36964,TJ,CH4,3.9,kg/TJ,3612.8415959999998,Gas Oil combustion consumption by freight transport,AR-C,SESCO,annual,kg,fb87d2bb-cb40-32a1-8aa4-61859679e2b3 -2022,Capital Federal,II.1.1,926.36964,TJ,N2O,3.9,kg/TJ,3612.8415959999998,Gas Oil combustion consumption by freight transport,AR-C,SESCO,annual,kg,fb87d2bb-cb40-32a1-8aa4-61859679e2b3 -2022,Catamarca,II.1.1,60.97056,TJ,CO2,74100.0,kg/TJ,4517918.496,Gas Oil combustion consumption by freight transport,AR-K,SESCO,annual,kg,ed1f1d46-c236-3c65-add2-7e114126d5af -2022,Catamarca,II.1.1,60.97056,TJ,CH4,3.9,kg/TJ,237.785184,Gas Oil combustion consumption by freight transport,AR-K,SESCO,annual,kg,63f21f65-3165-36a3-bb72-b18adf72c4bb -2022,Catamarca,II.1.1,60.97056,TJ,N2O,3.9,kg/TJ,237.785184,Gas Oil combustion consumption by freight transport,AR-K,SESCO,annual,kg,63f21f65-3165-36a3-bb72-b18adf72c4bb -2022,Chaco,II.1.1,357.19068,TJ,CO2,74100.0,kg/TJ,26467829.388,Gas Oil combustion consumption by freight transport,AR-H,SESCO,annual,kg,af966add-c5bd-3e9c-94f0-6a40875cb4ac -2022,Chaco,II.1.1,357.19068,TJ,CH4,3.9,kg/TJ,1393.0436519999998,Gas Oil combustion consumption by freight transport,AR-H,SESCO,annual,kg,5e15718e-e204-3e65-98f6-48a672940472 -2022,Chaco,II.1.1,357.19068,TJ,N2O,3.9,kg/TJ,1393.0436519999998,Gas Oil combustion consumption by freight transport,AR-H,SESCO,annual,kg,5e15718e-e204-3e65-98f6-48a672940472 -2022,Chubut,II.1.1,989.00172,TJ,CO2,74100.0,kg/TJ,73285027.45199999,Gas Oil combustion consumption by freight transport,AR-U,SESCO,annual,kg,cc446ea6-0700-3445-b351-bced8f32b060 -2022,Chubut,II.1.1,989.00172,TJ,CH4,3.9,kg/TJ,3857.106708,Gas Oil combustion consumption by freight transport,AR-U,SESCO,annual,kg,fcf7339f-7dc4-3993-9e03-e6c31dfce0c4 -2022,Chubut,II.1.1,989.00172,TJ,N2O,3.9,kg/TJ,3857.106708,Gas Oil combustion consumption by freight transport,AR-U,SESCO,annual,kg,fcf7339f-7dc4-3993-9e03-e6c31dfce0c4 -2022,Corrientes,II.1.1,693.1428,TJ,CO2,74100.0,kg/TJ,51361881.48,Gas Oil combustion consumption by freight transport,AR-W,SESCO,annual,kg,53a33e49-cbbb-388b-9582-004fecfc35d7 -2022,Corrientes,II.1.1,693.1428,TJ,CH4,3.9,kg/TJ,2703.25692,Gas Oil combustion consumption by freight transport,AR-W,SESCO,annual,kg,06c17eb2-8657-3669-9db5-147c8d874fc3 -2022,Corrientes,II.1.1,693.1428,TJ,N2O,3.9,kg/TJ,2703.25692,Gas Oil combustion consumption by freight transport,AR-W,SESCO,annual,kg,06c17eb2-8657-3669-9db5-147c8d874fc3 -2022,Córdoba,II.1.1,3371.36856,TJ,CO2,74100.0,kg/TJ,249818410.296,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,504bcfe4-ef2d-39b5-8943-1a9b9ef7d779 -2022,Córdoba,II.1.1,3371.36856,TJ,CH4,3.9,kg/TJ,13148.337383999999,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,bc5330ba-1126-3418-bfa2-f73783ed9d34 -2022,Córdoba,II.1.1,3371.36856,TJ,N2O,3.9,kg/TJ,13148.337383999999,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,bc5330ba-1126-3418-bfa2-f73783ed9d34 -2022,Entre Rios,II.1.1,1240.79424,TJ,CO2,74100.0,kg/TJ,91942853.184,Gas Oil combustion consumption by freight transport,AR-E,SESCO,annual,kg,ae3bba37-5f4d-314e-b0be-cf29e168c5af -2022,Entre Rios,II.1.1,1240.79424,TJ,CH4,3.9,kg/TJ,4839.097535999999,Gas Oil combustion consumption by freight transport,AR-E,SESCO,annual,kg,67d5b1d6-452b-345b-9f7a-bbc731583f2c -2022,Entre Rios,II.1.1,1240.79424,TJ,N2O,3.9,kg/TJ,4839.097535999999,Gas Oil combustion consumption by freight transport,AR-E,SESCO,annual,kg,67d5b1d6-452b-345b-9f7a-bbc731583f2c -2022,Formosa,II.1.1,82.7148,TJ,CO2,74100.0,kg/TJ,6129166.68,Gas Oil combustion consumption by freight transport,AR-P,SESCO,annual,kg,f37aec70-d844-3349-854d-684bfbd4af6f -2022,Formosa,II.1.1,82.7148,TJ,CH4,3.9,kg/TJ,322.58772,Gas Oil combustion consumption by freight transport,AR-P,SESCO,annual,kg,03089df9-8511-32e9-81a9-ab8c0418e0a6 -2022,Formosa,II.1.1,82.7148,TJ,N2O,3.9,kg/TJ,322.58772,Gas Oil combustion consumption by freight transport,AR-P,SESCO,annual,kg,03089df9-8511-32e9-81a9-ab8c0418e0a6 -2022,Jujuy,II.1.1,152.46251999999998,TJ,CO2,74100.0,kg/TJ,11297472.731999999,Gas Oil combustion consumption by freight transport,AR-Y,SESCO,annual,kg,10982dd2-2413-3716-b70f-e21a8a7eecee -2022,Jujuy,II.1.1,152.46251999999998,TJ,CH4,3.9,kg/TJ,594.6038279999999,Gas Oil combustion consumption by freight transport,AR-Y,SESCO,annual,kg,2c2f474e-cae1-3909-8d32-b096869f6c93 -2022,Jujuy,II.1.1,152.46251999999998,TJ,N2O,3.9,kg/TJ,594.6038279999999,Gas Oil combustion consumption by freight transport,AR-Y,SESCO,annual,kg,2c2f474e-cae1-3909-8d32-b096869f6c93 -2022,La Pampa,II.1.1,1334.0922,TJ,CO2,74100.0,kg/TJ,98856232.02000001,Gas Oil combustion consumption by freight transport,AR-L,SESCO,annual,kg,e3977fb5-93fa-3b50-85d3-7746dae43908 -2022,La Pampa,II.1.1,1334.0922,TJ,CH4,3.9,kg/TJ,5202.95958,Gas Oil combustion consumption by freight transport,AR-L,SESCO,annual,kg,2db36dc7-dcd9-356f-bcf3-256e9d80ed1d -2022,La Pampa,II.1.1,1334.0922,TJ,N2O,3.9,kg/TJ,5202.95958,Gas Oil combustion consumption by freight transport,AR-L,SESCO,annual,kg,2db36dc7-dcd9-356f-bcf3-256e9d80ed1d -2022,La Rioja,II.1.1,103.15872,TJ,CO2,74100.0,kg/TJ,7644061.152,Gas Oil combustion consumption by freight transport,AR-F,SESCO,annual,kg,e6c6a4a1-543b-34ae-a56a-29c7661565bb -2022,La Rioja,II.1.1,103.15872,TJ,CH4,3.9,kg/TJ,402.319008,Gas Oil combustion consumption by freight transport,AR-F,SESCO,annual,kg,d4b2256d-0930-3cab-aaec-32e474327254 -2022,La Rioja,II.1.1,103.15872,TJ,N2O,3.9,kg/TJ,402.319008,Gas Oil combustion consumption by freight transport,AR-F,SESCO,annual,kg,d4b2256d-0930-3cab-aaec-32e474327254 -2022,Mendoza,II.1.1,1915.4797199999998,TJ,CO2,74100.0,kg/TJ,141937047.25199997,Gas Oil combustion consumption by freight transport,AR-M,SESCO,annual,kg,26b764aa-6fb9-30c6-be33-3da97425291c -2022,Mendoza,II.1.1,1915.4797199999998,TJ,CH4,3.9,kg/TJ,7470.370907999999,Gas Oil combustion consumption by freight transport,AR-M,SESCO,annual,kg,e0e03b39-113f-3dcc-a8e7-68b3e494516d -2022,Mendoza,II.1.1,1915.4797199999998,TJ,N2O,3.9,kg/TJ,7470.370907999999,Gas Oil combustion consumption by freight transport,AR-M,SESCO,annual,kg,e0e03b39-113f-3dcc-a8e7-68b3e494516d -2022,Misiones,II.1.1,428.92499999999995,TJ,CO2,74100.0,kg/TJ,31783342.499999996,Gas Oil combustion consumption by freight transport,AR-N,SESCO,annual,kg,7505af60-978e-3261-9cf6-3dd681ff7850 -2022,Misiones,II.1.1,428.92499999999995,TJ,CH4,3.9,kg/TJ,1672.8075,Gas Oil combustion consumption by freight transport,AR-N,SESCO,annual,kg,e52a3d92-5a57-3106-9e6f-cd4aedb17bd7 -2022,Misiones,II.1.1,428.92499999999995,TJ,N2O,3.9,kg/TJ,1672.8075,Gas Oil combustion consumption by freight transport,AR-N,SESCO,annual,kg,e52a3d92-5a57-3106-9e6f-cd4aedb17bd7 -2022,Neuquén,II.1.1,1151.07216,TJ,CO2,74100.0,kg/TJ,85294447.056,Gas Oil combustion consumption by freight transport,AR-Q,SESCO,annual,kg,dafec2f8-e3b0-346a-81ed-c134f91bf8ae -2022,Neuquén,II.1.1,1151.07216,TJ,CH4,3.9,kg/TJ,4489.181423999999,Gas Oil combustion consumption by freight transport,AR-Q,SESCO,annual,kg,365f45fc-784a-3e92-b98b-df40f377d87f -2022,Neuquén,II.1.1,1151.07216,TJ,N2O,3.9,kg/TJ,4489.181423999999,Gas Oil combustion consumption by freight transport,AR-Q,SESCO,annual,kg,365f45fc-784a-3e92-b98b-df40f377d87f -2022,Rio Negro,II.1.1,1269.58188,TJ,CO2,74100.0,kg/TJ,94076017.308,Gas Oil combustion consumption by freight transport,AR-R,SESCO,annual,kg,f3007e82-ece5-310f-adb9-8bf18b5bed03 -2022,Rio Negro,II.1.1,1269.58188,TJ,CH4,3.9,kg/TJ,4951.369331999999,Gas Oil combustion consumption by freight transport,AR-R,SESCO,annual,kg,d35962ff-2ce1-3f84-b6c2-3a48d83884c1 -2022,Rio Negro,II.1.1,1269.58188,TJ,N2O,3.9,kg/TJ,4951.369331999999,Gas Oil combustion consumption by freight transport,AR-R,SESCO,annual,kg,d35962ff-2ce1-3f84-b6c2-3a48d83884c1 -2022,Salta,II.1.1,1042.6399199999998,TJ,CO2,74100.0,kg/TJ,77259618.07199998,Gas Oil combustion consumption by freight transport,AR-A,SESCO,annual,kg,934da262-d66f-3315-b380-3856d3083570 -2022,Salta,II.1.1,1042.6399199999998,TJ,CH4,3.9,kg/TJ,4066.2956879999992,Gas Oil combustion consumption by freight transport,AR-A,SESCO,annual,kg,d5a81d96-cf73-3297-aa65-9adda69a9898 -2022,Salta,II.1.1,1042.6399199999998,TJ,N2O,3.9,kg/TJ,4066.2956879999992,Gas Oil combustion consumption by freight transport,AR-A,SESCO,annual,kg,d5a81d96-cf73-3297-aa65-9adda69a9898 -2022,San Juan,II.1.1,150.04247999999998,TJ,CO2,74100.0,kg/TJ,11118147.768,Gas Oil combustion consumption by freight transport,AR-J,SESCO,annual,kg,cef17e7f-dc50-33a3-a253-c576292fea68 -2022,San Juan,II.1.1,150.04247999999998,TJ,CH4,3.9,kg/TJ,585.165672,Gas Oil combustion consumption by freight transport,AR-J,SESCO,annual,kg,45775ce1-d35a-3530-993e-83fa7e1c9e75 -2022,San Juan,II.1.1,150.04247999999998,TJ,N2O,3.9,kg/TJ,585.165672,Gas Oil combustion consumption by freight transport,AR-J,SESCO,annual,kg,45775ce1-d35a-3530-993e-83fa7e1c9e75 -2022,San Luis,II.1.1,530.38608,TJ,CO2,74100.0,kg/TJ,39301608.528,Gas Oil combustion consumption by freight transport,AR-D,SESCO,annual,kg,0ef28ff9-6d10-3592-8a8a-6574a7734d32 -2022,San Luis,II.1.1,530.38608,TJ,CH4,3.9,kg/TJ,2068.505712,Gas Oil combustion consumption by freight transport,AR-D,SESCO,annual,kg,58c2abdc-2ea1-30be-ae44-0eec659f719c -2022,San Luis,II.1.1,530.38608,TJ,N2O,3.9,kg/TJ,2068.505712,Gas Oil combustion consumption by freight transport,AR-D,SESCO,annual,kg,58c2abdc-2ea1-30be-ae44-0eec659f719c -2022,Santa Cruz,II.1.1,797.31288,TJ,CO2,74100.0,kg/TJ,59080884.408,Gas Oil combustion consumption by freight transport,AR-Z,SESCO,annual,kg,264a2f96-9b7e-376a-885d-74de25b6a55a -2022,Santa Cruz,II.1.1,797.31288,TJ,CH4,3.9,kg/TJ,3109.520232,Gas Oil combustion consumption by freight transport,AR-Z,SESCO,annual,kg,70e81e10-8493-3c95-b395-ee95c81b356a -2022,Santa Cruz,II.1.1,797.31288,TJ,N2O,3.9,kg/TJ,3109.520232,Gas Oil combustion consumption by freight transport,AR-Z,SESCO,annual,kg,70e81e10-8493-3c95-b395-ee95c81b356a -2022,Santa Fe,II.1.1,3396.32748,TJ,CO2,74100.0,kg/TJ,251667866.268,Gas Oil combustion consumption by freight transport,AR-S,SESCO,annual,kg,9d8d627e-d915-3302-962f-259a9bb8cb61 -2022,Santa Fe,II.1.1,3396.32748,TJ,CH4,3.9,kg/TJ,13245.677172,Gas Oil combustion consumption by freight transport,AR-S,SESCO,annual,kg,f9ff8091-41b1-3345-8a80-10101e337ec1 -2022,Santa Fe,II.1.1,3396.32748,TJ,N2O,3.9,kg/TJ,13245.677172,Gas Oil combustion consumption by freight transport,AR-S,SESCO,annual,kg,f9ff8091-41b1-3345-8a80-10101e337ec1 -2022,Santiago del Estero,II.1.1,821.9467199999999,TJ,CO2,74100.0,kg/TJ,60906251.95199999,Gas Oil combustion consumption by freight transport,AR-G,SESCO,annual,kg,dc63a83f-33cc-3715-83b9-6f5cdd68db59 -2022,Santiago del Estero,II.1.1,821.9467199999999,TJ,CH4,3.9,kg/TJ,3205.5922079999996,Gas Oil combustion consumption by freight transport,AR-G,SESCO,annual,kg,790eb0ac-09ec-331e-a970-e62d24df607b -2022,Santiago del Estero,II.1.1,821.9467199999999,TJ,N2O,3.9,kg/TJ,3205.5922079999996,Gas Oil combustion consumption by freight transport,AR-G,SESCO,annual,kg,790eb0ac-09ec-331e-a970-e62d24df607b -2022,Tierra del Fuego,II.1.1,317.38644,TJ,CO2,74100.0,kg/TJ,23518335.204,Gas Oil combustion consumption by freight transport,AR-V,SESCO,annual,kg,69d8a47f-fc2e-3c2d-8fac-9f4f67d9ada9 -2022,Tierra del Fuego,II.1.1,317.38644,TJ,CH4,3.9,kg/TJ,1237.807116,Gas Oil combustion consumption by freight transport,AR-V,SESCO,annual,kg,c65aca5a-9b02-39ad-a6ee-dc7f7b6ea4d5 -2022,Tierra del Fuego,II.1.1,317.38644,TJ,N2O,3.9,kg/TJ,1237.807116,Gas Oil combustion consumption by freight transport,AR-V,SESCO,annual,kg,c65aca5a-9b02-39ad-a6ee-dc7f7b6ea4d5 -2022,Tucuman,II.1.1,402.08783999999997,TJ,CO2,74100.0,kg/TJ,29794708.944,Gas Oil combustion consumption by freight transport,AR-T,SESCO,annual,kg,159df942-b4b3-39ec-a5ec-9c2b84609fa5 -2022,Tucuman,II.1.1,402.08783999999997,TJ,CH4,3.9,kg/TJ,1568.142576,Gas Oil combustion consumption by freight transport,AR-T,SESCO,annual,kg,946b51cc-94ea-3e19-92a8-4bbcf55f2f0d -2022,Tucuman,II.1.1,402.08783999999997,TJ,N2O,3.9,kg/TJ,1568.142576,Gas Oil combustion consumption by freight transport,AR-T,SESCO,annual,kg,946b51cc-94ea-3e19-92a8-4bbcf55f2f0d -2022,Buenos Aires,II.1.1,5736.10884,TJ,CO2,74100.0,kg/TJ,425045665.04399997,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,811f9605-7306-3e84-a2c0-3c0069da9a8e -2022,Buenos Aires,II.1.1,5736.10884,TJ,CH4,3.9,kg/TJ,22370.824475999998,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,67f4b2a7-3145-3208-b4c5-ce16d4516c34 -2022,Buenos Aires,II.1.1,5736.10884,TJ,N2O,3.9,kg/TJ,22370.824475999998,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,67f4b2a7-3145-3208-b4c5-ce16d4516c34 -2022,Capital Federal,II.1.1,506.83583999999996,TJ,CO2,74100.0,kg/TJ,37556535.743999995,Gas Oil combustion consumption by freight transport,AR-C,SESCO,annual,kg,b3c1d46f-476a-3fc5-8908-e6d9224392a3 -2022,Capital Federal,II.1.1,506.83583999999996,TJ,CH4,3.9,kg/TJ,1976.6597759999997,Gas Oil combustion consumption by freight transport,AR-C,SESCO,annual,kg,a2344f30-108b-3b00-a8c2-d2056e0e6e74 -2022,Capital Federal,II.1.1,506.83583999999996,TJ,N2O,3.9,kg/TJ,1976.6597759999997,Gas Oil combustion consumption by freight transport,AR-C,SESCO,annual,kg,a2344f30-108b-3b00-a8c2-d2056e0e6e74 -2022,Catamarca,II.1.1,51.976679999999995,TJ,CO2,74100.0,kg/TJ,3851471.9879999994,Gas Oil combustion consumption by freight transport,AR-K,SESCO,annual,kg,3538c76e-75c8-367a-8b61-ad79b64166f0 -2022,Catamarca,II.1.1,51.976679999999995,TJ,CH4,3.9,kg/TJ,202.70905199999999,Gas Oil combustion consumption by freight transport,AR-K,SESCO,annual,kg,2661e815-cb25-3858-95f5-3d16a0c88c87 -2022,Catamarca,II.1.1,51.976679999999995,TJ,N2O,3.9,kg/TJ,202.70905199999999,Gas Oil combustion consumption by freight transport,AR-K,SESCO,annual,kg,2661e815-cb25-3858-95f5-3d16a0c88c87 -2022,Chaco,II.1.1,252.58715999999998,TJ,CO2,74100.0,kg/TJ,18716708.555999998,Gas Oil combustion consumption by freight transport,AR-H,SESCO,annual,kg,7adc8029-d76e-3d0f-a105-6bb869e4aafc -2022,Chaco,II.1.1,252.58715999999998,TJ,CH4,3.9,kg/TJ,985.0899239999999,Gas Oil combustion consumption by freight transport,AR-H,SESCO,annual,kg,94b83e4e-f457-3a89-9d34-eab5865b7697 -2022,Chaco,II.1.1,252.58715999999998,TJ,N2O,3.9,kg/TJ,985.0899239999999,Gas Oil combustion consumption by freight transport,AR-H,SESCO,annual,kg,94b83e4e-f457-3a89-9d34-eab5865b7697 -2022,Chubut,II.1.1,585.46908,TJ,CO2,74100.0,kg/TJ,43383258.827999994,Gas Oil combustion consumption by freight transport,AR-U,SESCO,annual,kg,76c6d5cf-2f3c-3677-b2b9-5caf99cdf608 -2022,Chubut,II.1.1,585.46908,TJ,CH4,3.9,kg/TJ,2283.3294119999996,Gas Oil combustion consumption by freight transport,AR-U,SESCO,annual,kg,8eaacc7b-cbb5-31b7-a335-a990eb28d614 -2022,Chubut,II.1.1,585.46908,TJ,N2O,3.9,kg/TJ,2283.3294119999996,Gas Oil combustion consumption by freight transport,AR-U,SESCO,annual,kg,8eaacc7b-cbb5-31b7-a335-a990eb28d614 -2022,Corrientes,II.1.1,368.17116,TJ,CO2,74100.0,kg/TJ,27281482.956,Gas Oil combustion consumption by freight transport,AR-W,SESCO,annual,kg,682dd1b3-6c7f-30bf-a6f1-49279cedf04b -2022,Corrientes,II.1.1,368.17116,TJ,CH4,3.9,kg/TJ,1435.867524,Gas Oil combustion consumption by freight transport,AR-W,SESCO,annual,kg,2b608fa0-7938-3f7e-af08-b8d7f1aec5be -2022,Corrientes,II.1.1,368.17116,TJ,N2O,3.9,kg/TJ,1435.867524,Gas Oil combustion consumption by freight transport,AR-W,SESCO,annual,kg,2b608fa0-7938-3f7e-af08-b8d7f1aec5be -2022,Córdoba,II.1.1,1125.8604,TJ,CO2,74100.0,kg/TJ,83426255.64,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,9f6b5691-5a8f-327b-9b25-f9a21b0c1d06 -2022,Córdoba,II.1.1,1125.8604,TJ,CH4,3.9,kg/TJ,4390.85556,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,578b51d3-53b1-3473-8eec-992b469b8072 -2022,Córdoba,II.1.1,1125.8604,TJ,N2O,3.9,kg/TJ,4390.85556,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,578b51d3-53b1-3473-8eec-992b469b8072 -2022,Entre Rios,II.1.1,503.22384,TJ,CO2,74100.0,kg/TJ,37288886.544,Gas Oil combustion consumption by freight transport,AR-E,SESCO,annual,kg,21be53ed-d3b3-305f-b01e-26753f2e49a7 -2022,Entre Rios,II.1.1,503.22384,TJ,CH4,3.9,kg/TJ,1962.572976,Gas Oil combustion consumption by freight transport,AR-E,SESCO,annual,kg,83839430-cefa-3cfc-acf4-ae57b074a8e0 -2022,Entre Rios,II.1.1,503.22384,TJ,N2O,3.9,kg/TJ,1962.572976,Gas Oil combustion consumption by freight transport,AR-E,SESCO,annual,kg,83839430-cefa-3cfc-acf4-ae57b074a8e0 -2022,Formosa,II.1.1,93.22572,TJ,CO2,74100.0,kg/TJ,6908025.852,Gas Oil combustion consumption by freight transport,AR-P,SESCO,annual,kg,cd5fc585-386b-3d7d-bde3-f93ab5571267 -2022,Formosa,II.1.1,93.22572,TJ,CH4,3.9,kg/TJ,363.580308,Gas Oil combustion consumption by freight transport,AR-P,SESCO,annual,kg,2d5cc57d-b1e2-3cdb-899f-f7a3375494d8 -2022,Formosa,II.1.1,93.22572,TJ,N2O,3.9,kg/TJ,363.580308,Gas Oil combustion consumption by freight transport,AR-P,SESCO,annual,kg,2d5cc57d-b1e2-3cdb-899f-f7a3375494d8 -2022,Jujuy,II.1.1,98.35476,TJ,CO2,74100.0,kg/TJ,7288087.716,Gas Oil combustion consumption by freight transport,AR-Y,SESCO,annual,kg,f4afa39d-9db7-33dc-9098-aa4e649fdaa7 -2022,Jujuy,II.1.1,98.35476,TJ,CH4,3.9,kg/TJ,383.58356399999997,Gas Oil combustion consumption by freight transport,AR-Y,SESCO,annual,kg,136e5a89-a8fe-3ab4-bffa-a78dd1d829b8 -2022,Jujuy,II.1.1,98.35476,TJ,N2O,3.9,kg/TJ,383.58356399999997,Gas Oil combustion consumption by freight transport,AR-Y,SESCO,annual,kg,136e5a89-a8fe-3ab4-bffa-a78dd1d829b8 -2022,La Pampa,II.1.1,325.22447999999997,TJ,CO2,74100.0,kg/TJ,24099133.968,Gas Oil combustion consumption by freight transport,AR-L,SESCO,annual,kg,b074bd9c-50f6-3113-8c24-966e02dea058 -2022,La Pampa,II.1.1,325.22447999999997,TJ,CH4,3.9,kg/TJ,1268.375472,Gas Oil combustion consumption by freight transport,AR-L,SESCO,annual,kg,05506725-950e-31ed-a187-cd3296d010a6 -2022,La Pampa,II.1.1,325.22447999999997,TJ,N2O,3.9,kg/TJ,1268.375472,Gas Oil combustion consumption by freight transport,AR-L,SESCO,annual,kg,05506725-950e-31ed-a187-cd3296d010a6 -2022,La Rioja,II.1.1,108.57672,TJ,CO2,74100.0,kg/TJ,8045534.952,Gas Oil combustion consumption by freight transport,AR-F,SESCO,annual,kg,43e53287-dd3d-3646-b72e-24c942284068 -2022,La Rioja,II.1.1,108.57672,TJ,CH4,3.9,kg/TJ,423.44920799999994,Gas Oil combustion consumption by freight transport,AR-F,SESCO,annual,kg,80d57fb8-9cd6-31f1-b376-e815de947452 -2022,La Rioja,II.1.1,108.57672,TJ,N2O,3.9,kg/TJ,423.44920799999994,Gas Oil combustion consumption by freight transport,AR-F,SESCO,annual,kg,80d57fb8-9cd6-31f1-b376-e815de947452 -2022,Mendoza,II.1.1,760.10928,TJ,CO2,74100.0,kg/TJ,56324097.648,Gas Oil combustion consumption by freight transport,AR-M,SESCO,annual,kg,9bc8e58c-3ea2-303a-9e18-12be68fb4166 -2022,Mendoza,II.1.1,760.10928,TJ,CH4,3.9,kg/TJ,2964.426192,Gas Oil combustion consumption by freight transport,AR-M,SESCO,annual,kg,cfe25618-219e-36a9-b50f-b72c3c0830cd -2022,Mendoza,II.1.1,760.10928,TJ,N2O,3.9,kg/TJ,2964.426192,Gas Oil combustion consumption by freight transport,AR-M,SESCO,annual,kg,cfe25618-219e-36a9-b50f-b72c3c0830cd -2022,Misiones,II.1.1,276.4986,TJ,CO2,74100.0,kg/TJ,20488546.26,Gas Oil combustion consumption by freight transport,AR-N,SESCO,annual,kg,682b1051-b11b-316c-9471-8c1ec59c09f0 -2022,Misiones,II.1.1,276.4986,TJ,CH4,3.9,kg/TJ,1078.34454,Gas Oil combustion consumption by freight transport,AR-N,SESCO,annual,kg,9ca7af0b-ab2c-38f0-ac64-99b0929ab00f -2022,Misiones,II.1.1,276.4986,TJ,N2O,3.9,kg/TJ,1078.34454,Gas Oil combustion consumption by freight transport,AR-N,SESCO,annual,kg,9ca7af0b-ab2c-38f0-ac64-99b0929ab00f -2022,Neuquén,II.1.1,1573.67616,TJ,CO2,74100.0,kg/TJ,116609403.456,Gas Oil combustion consumption by freight transport,AR-Q,SESCO,annual,kg,f6195692-b202-312e-9076-15b1b2cd777e -2022,Neuquén,II.1.1,1573.67616,TJ,CH4,3.9,kg/TJ,6137.3370239999995,Gas Oil combustion consumption by freight transport,AR-Q,SESCO,annual,kg,5a0d03bf-ebb5-321e-b19a-a3433e10581d -2022,Neuquén,II.1.1,1573.67616,TJ,N2O,3.9,kg/TJ,6137.3370239999995,Gas Oil combustion consumption by freight transport,AR-Q,SESCO,annual,kg,5a0d03bf-ebb5-321e-b19a-a3433e10581d -2022,Rio Negro,II.1.1,557.11488,TJ,CO2,74100.0,kg/TJ,41282212.607999995,Gas Oil combustion consumption by freight transport,AR-R,SESCO,annual,kg,d8fc0a57-ab4e-3a59-86b3-c856f8ddc785 -2022,Rio Negro,II.1.1,557.11488,TJ,CH4,3.9,kg/TJ,2172.748032,Gas Oil combustion consumption by freight transport,AR-R,SESCO,annual,kg,6d33a6db-bbbc-3aea-8f78-89a13196be71 -2022,Rio Negro,II.1.1,557.11488,TJ,N2O,3.9,kg/TJ,2172.748032,Gas Oil combustion consumption by freight transport,AR-R,SESCO,annual,kg,6d33a6db-bbbc-3aea-8f78-89a13196be71 -2022,Salta,II.1.1,402.70187999999996,TJ,CO2,74100.0,kg/TJ,29840209.308,Gas Oil combustion consumption by freight transport,AR-A,SESCO,annual,kg,e2232472-553b-3263-bd8d-4138bb522dfa -2022,Salta,II.1.1,402.70187999999996,TJ,CH4,3.9,kg/TJ,1570.5373319999999,Gas Oil combustion consumption by freight transport,AR-A,SESCO,annual,kg,787158f2-6808-3f3b-a443-ae9d3639bc5c -2022,Salta,II.1.1,402.70187999999996,TJ,N2O,3.9,kg/TJ,1570.5373319999999,Gas Oil combustion consumption by freight transport,AR-A,SESCO,annual,kg,787158f2-6808-3f3b-a443-ae9d3639bc5c -2022,San Juan,II.1.1,101.60556,TJ,CO2,74100.0,kg/TJ,7528971.995999999,Gas Oil combustion consumption by freight transport,AR-J,SESCO,annual,kg,b580eda3-d8d1-30e8-9e5f-7e1dda278daf -2022,San Juan,II.1.1,101.60556,TJ,CH4,3.9,kg/TJ,396.261684,Gas Oil combustion consumption by freight transport,AR-J,SESCO,annual,kg,3a1217e4-5477-366c-9b0d-2652e8b5df62 -2022,San Juan,II.1.1,101.60556,TJ,N2O,3.9,kg/TJ,396.261684,Gas Oil combustion consumption by freight transport,AR-J,SESCO,annual,kg,3a1217e4-5477-366c-9b0d-2652e8b5df62 -2022,San Luis,II.1.1,204.83651999999998,TJ,CO2,74100.0,kg/TJ,15178386.132,Gas Oil combustion consumption by freight transport,AR-D,SESCO,annual,kg,570322ac-7e0d-3a84-bec5-5c0814e5bb83 -2022,San Luis,II.1.1,204.83651999999998,TJ,CH4,3.9,kg/TJ,798.8624279999999,Gas Oil combustion consumption by freight transport,AR-D,SESCO,annual,kg,08ff1256-db81-3a70-a828-04dfeae3e01e -2022,San Luis,II.1.1,204.83651999999998,TJ,N2O,3.9,kg/TJ,798.8624279999999,Gas Oil combustion consumption by freight transport,AR-D,SESCO,annual,kg,08ff1256-db81-3a70-a828-04dfeae3e01e -2022,Santa Cruz,II.1.1,409.81752,TJ,CO2,74100.0,kg/TJ,30367478.232,Gas Oil combustion consumption by freight transport,AR-Z,SESCO,annual,kg,73c6f707-5834-3b05-b74c-a5b50764083e -2022,Santa Cruz,II.1.1,409.81752,TJ,CH4,3.9,kg/TJ,1598.2883279999999,Gas Oil combustion consumption by freight transport,AR-Z,SESCO,annual,kg,6991f408-2840-3c31-9ffe-ca787a30e548 -2022,Santa Cruz,II.1.1,409.81752,TJ,N2O,3.9,kg/TJ,1598.2883279999999,Gas Oil combustion consumption by freight transport,AR-Z,SESCO,annual,kg,6991f408-2840-3c31-9ffe-ca787a30e548 -2022,Santa Fe,II.1.1,1246.03164,TJ,CO2,74100.0,kg/TJ,92330944.52399999,Gas Oil combustion consumption by freight transport,AR-S,SESCO,annual,kg,3d89455b-1995-30cc-ab70-73a1eee62b94 -2022,Santa Fe,II.1.1,1246.03164,TJ,CH4,3.9,kg/TJ,4859.523396,Gas Oil combustion consumption by freight transport,AR-S,SESCO,annual,kg,a9239340-849f-3006-988e-d12e9ebf2123 -2022,Santa Fe,II.1.1,1246.03164,TJ,N2O,3.9,kg/TJ,4859.523396,Gas Oil combustion consumption by freight transport,AR-S,SESCO,annual,kg,a9239340-849f-3006-988e-d12e9ebf2123 -2022,Santiago del Estero,II.1.1,217.623,TJ,CO2,74100.0,kg/TJ,16125864.299999999,Gas Oil combustion consumption by freight transport,AR-G,SESCO,annual,kg,8790affc-12d8-318c-9e16-752857b56d35 -2022,Santiago del Estero,II.1.1,217.623,TJ,CH4,3.9,kg/TJ,848.7297,Gas Oil combustion consumption by freight transport,AR-G,SESCO,annual,kg,64ae34b6-e475-3293-95f6-af49dc7cbb97 -2022,Santiago del Estero,II.1.1,217.623,TJ,N2O,3.9,kg/TJ,848.7297,Gas Oil combustion consumption by freight transport,AR-G,SESCO,annual,kg,64ae34b6-e475-3293-95f6-af49dc7cbb97 -2022,Tierra del Fuego,II.1.1,144.44388,TJ,CO2,74100.0,kg/TJ,10703291.508000001,Gas Oil combustion consumption by freight transport,AR-V,SESCO,annual,kg,d24a2728-abfe-38d9-86ac-966ac67f5822 -2022,Tierra del Fuego,II.1.1,144.44388,TJ,CH4,3.9,kg/TJ,563.331132,Gas Oil combustion consumption by freight transport,AR-V,SESCO,annual,kg,998b1cb2-c83d-37ec-a7da-a1e25d16626e -2022,Tierra del Fuego,II.1.1,144.44388,TJ,N2O,3.9,kg/TJ,563.331132,Gas Oil combustion consumption by freight transport,AR-V,SESCO,annual,kg,998b1cb2-c83d-37ec-a7da-a1e25d16626e -2022,Tucuman,II.1.1,229.362,TJ,CO2,74100.0,kg/TJ,16995724.2,Gas Oil combustion consumption by freight transport,AR-T,SESCO,annual,kg,3ee7793e-e55f-372f-b989-4466d85d4a4f -2022,Tucuman,II.1.1,229.362,TJ,CH4,3.9,kg/TJ,894.5118,Gas Oil combustion consumption by freight transport,AR-T,SESCO,annual,kg,93ee88b5-0301-304e-b96f-d26474be486c -2022,Tucuman,II.1.1,229.362,TJ,N2O,3.9,kg/TJ,894.5118,Gas Oil combustion consumption by freight transport,AR-T,SESCO,annual,kg,93ee88b5-0301-304e-b96f-d26474be486c -2022,Neuquén,II.1.1,2.327522,TJ,CO2,71500.0,kg/TJ,166417.823,Jet Kerosene combustion consumption by freight transport,AR-Q,SESCO,annual,kg,a718028d-e6f9-372c-b528-ccb4b7b32e03 -2022,Neuquén,II.1.1,2.327522,TJ,CH4,0.5,kg/TJ,1.163761,Jet Kerosene combustion consumption by freight transport,AR-Q,SESCO,annual,kg,082c572d-b3f7-3ff9-b914-a787ef1048a7 -2022,Neuquén,II.1.1,2.327522,TJ,N2O,2.0,kg/TJ,4.655044,Jet Kerosene combustion consumption by freight transport,AR-Q,SESCO,annual,kg,3e9a4c02-f58f-3ecf-963a-f658169e9029 -2022,Buenos Aires,II.1.1,730.11862,TJ,CO2,73300.0,kg/TJ,53517694.846,Naphtha combustion consumption by freight transport,AR-B,SESCO,annual,kg,d0c89f85-154d-3075-a073-1157f85f7f73 -2022,Buenos Aires,II.1.1,730.11862,TJ,CH4,0.5,kg/TJ,365.05931,Naphtha combustion consumption by freight transport,AR-B,SESCO,annual,kg,1d8fa7a1-06c5-3c99-bf58-60fcb78ee4c4 -2022,Buenos Aires,II.1.1,730.11862,TJ,N2O,2.0,kg/TJ,1460.23724,Naphtha combustion consumption by freight transport,AR-B,SESCO,annual,kg,685f060d-b2e8-376f-a30e-cb500d19215a -2022,Capital Federal,II.1.1,97.82657499999999,TJ,CO2,73300.0,kg/TJ,7170687.9475,Naphtha combustion consumption by freight transport,AR-C,SESCO,annual,kg,b42a3fb7-7e79-33b1-8f9c-73228843587b -2022,Capital Federal,II.1.1,97.82657499999999,TJ,CH4,0.5,kg/TJ,48.913287499999996,Naphtha combustion consumption by freight transport,AR-C,SESCO,annual,kg,25b58b65-44e2-37e9-b2ad-a790deb37764 -2022,Capital Federal,II.1.1,97.82657499999999,TJ,N2O,2.0,kg/TJ,195.65314999999998,Naphtha combustion consumption by freight transport,AR-C,SESCO,annual,kg,c21b4f07-640d-3ad1-962e-ddede0ce7b1b -2022,Catamarca,II.1.1,5.311075,TJ,CO2,73300.0,kg/TJ,389301.7975,Naphtha combustion consumption by freight transport,AR-K,SESCO,annual,kg,f887c575-6c62-39b6-b087-31bd3105dcba -2022,Catamarca,II.1.1,5.311075,TJ,CH4,0.5,kg/TJ,2.6555375,Naphtha combustion consumption by freight transport,AR-K,SESCO,annual,kg,2531c7d8-6cf6-3b40-8702-50956f20da6e -2022,Catamarca,II.1.1,5.311075,TJ,N2O,2.0,kg/TJ,10.62215,Naphtha combustion consumption by freight transport,AR-K,SESCO,annual,kg,b38b83a5-3970-3dbb-be06-d086ec64b2b1 -2022,Chaco,II.1.1,20.07929,TJ,CO2,73300.0,kg/TJ,1471811.957,Naphtha combustion consumption by freight transport,AR-H,SESCO,annual,kg,6ca3288b-bb30-3b1c-b51f-7b43b848512d -2022,Chaco,II.1.1,20.07929,TJ,CH4,0.5,kg/TJ,10.039645,Naphtha combustion consumption by freight transport,AR-H,SESCO,annual,kg,451cad8d-20a9-37f1-9427-8206f68bc67d -2022,Chaco,II.1.1,20.07929,TJ,N2O,2.0,kg/TJ,40.15858,Naphtha combustion consumption by freight transport,AR-H,SESCO,annual,kg,88f0f400-4f4e-315e-b246-1fdaaf686ae8 -2022,Chubut,II.1.1,24.46521,TJ,CO2,73300.0,kg/TJ,1793299.893,Naphtha combustion consumption by freight transport,AR-U,SESCO,annual,kg,03514858-5a9b-3270-aa95-d8e2b6fca2c2 -2022,Chubut,II.1.1,24.46521,TJ,CH4,0.5,kg/TJ,12.232605,Naphtha combustion consumption by freight transport,AR-U,SESCO,annual,kg,8eafc880-5042-357b-917d-e3e170debd14 -2022,Chubut,II.1.1,24.46521,TJ,N2O,2.0,kg/TJ,48.93042,Naphtha combustion consumption by freight transport,AR-U,SESCO,annual,kg,d5f856d3-0fe7-369b-a1fa-cbe62d6abdb5 -2022,Corrientes,II.1.1,20.319145,TJ,CO2,73300.0,kg/TJ,1489393.3284999998,Naphtha combustion consumption by freight transport,AR-W,SESCO,annual,kg,15f23f67-6fdb-3531-ac55-1355a5b77644 -2022,Corrientes,II.1.1,20.319145,TJ,CH4,0.5,kg/TJ,10.1595725,Naphtha combustion consumption by freight transport,AR-W,SESCO,annual,kg,2d631684-62f6-3987-995a-bd0bfa20d7d1 -2022,Corrientes,II.1.1,20.319145,TJ,N2O,2.0,kg/TJ,40.63829,Naphtha combustion consumption by freight transport,AR-W,SESCO,annual,kg,052cc8c8-b649-3863-8d90-2c1b0ab6916d -2022,Córdoba,II.1.1,120.6128,TJ,CO2,73300.0,kg/TJ,8840918.24,Naphtha combustion consumption by freight transport,AR-X,SESCO,annual,kg,a4823a9d-4de4-3cac-97d9-eb320e8ef7d3 -2022,Córdoba,II.1.1,120.6128,TJ,CH4,0.5,kg/TJ,60.3064,Naphtha combustion consumption by freight transport,AR-X,SESCO,annual,kg,c8c1ef06-5815-306a-af28-b317c277abbc -2022,Córdoba,II.1.1,120.6128,TJ,N2O,2.0,kg/TJ,241.2256,Naphtha combustion consumption by freight transport,AR-X,SESCO,annual,kg,306dac2d-cd80-3a7c-a30a-d3045b272515 -2022,Entre Rios,II.1.1,43.413754999999995,TJ,CO2,73300.0,kg/TJ,3182228.2414999995,Naphtha combustion consumption by freight transport,AR-E,SESCO,annual,kg,3f605aea-0950-3b5c-b4a0-7553b7a703cb -2022,Entre Rios,II.1.1,43.413754999999995,TJ,CH4,0.5,kg/TJ,21.706877499999997,Naphtha combustion consumption by freight transport,AR-E,SESCO,annual,kg,b6bc23ff-a49d-3e8a-85d8-d771d5352a2d -2022,Entre Rios,II.1.1,43.413754999999995,TJ,N2O,2.0,kg/TJ,86.82750999999999,Naphtha combustion consumption by freight transport,AR-E,SESCO,annual,kg,05e7305f-0b9a-38ea-98b8-3c8798bb2a6a -2022,Formosa,II.1.1,6.476084999999999,TJ,CO2,73300.0,kg/TJ,474697.03049999994,Naphtha combustion consumption by freight transport,AR-P,SESCO,annual,kg,b10f9cd1-097e-3404-922d-9b08717bbc0a -2022,Formosa,II.1.1,6.476084999999999,TJ,CH4,0.5,kg/TJ,3.2380424999999997,Naphtha combustion consumption by freight transport,AR-P,SESCO,annual,kg,189c982f-f00c-393d-8b0c-7a283bf81230 -2022,Formosa,II.1.1,6.476084999999999,TJ,N2O,2.0,kg/TJ,12.952169999999999,Naphtha combustion consumption by freight transport,AR-P,SESCO,annual,kg,c56fcc04-9602-37ca-9209-06547edbf45a -2022,Jujuy,II.1.1,9.868319999999999,TJ,CO2,73300.0,kg/TJ,723347.8559999999,Naphtha combustion consumption by freight transport,AR-Y,SESCO,annual,kg,af75dd1f-6238-3223-918a-03d12a742296 -2022,Jujuy,II.1.1,9.868319999999999,TJ,CH4,0.5,kg/TJ,4.934159999999999,Naphtha combustion consumption by freight transport,AR-Y,SESCO,annual,kg,6cad5fec-649b-3f5a-ac3a-1ed1e94310f8 -2022,Jujuy,II.1.1,9.868319999999999,TJ,N2O,2.0,kg/TJ,19.736639999999998,Naphtha combustion consumption by freight transport,AR-Y,SESCO,annual,kg,c7259e87-a792-3f5d-b09e-f0efa19d316d -2022,La Pampa,II.1.1,12.301134999999999,TJ,CO2,73300.0,kg/TJ,901673.1954999999,Naphtha combustion consumption by freight transport,AR-L,SESCO,annual,kg,060a55ed-e4e8-3afd-a2b0-db0a868ad1e0 -2022,La Pampa,II.1.1,12.301134999999999,TJ,CH4,0.5,kg/TJ,6.150567499999999,Naphtha combustion consumption by freight transport,AR-L,SESCO,annual,kg,2529a69a-8d04-3cd0-9b77-ae75188f1c8e -2022,La Pampa,II.1.1,12.301134999999999,TJ,N2O,2.0,kg/TJ,24.602269999999997,Naphtha combustion consumption by freight transport,AR-L,SESCO,annual,kg,c55d3097-97d4-35cd-bfc0-4aeb134f78a9 -2022,La Rioja,II.1.1,9.148755,TJ,CO2,73300.0,kg/TJ,670603.7415,Naphtha combustion consumption by freight transport,AR-F,SESCO,annual,kg,7f8f040e-9cac-3e69-8b3d-d2ecc99600a9 -2022,La Rioja,II.1.1,9.148755,TJ,CH4,0.5,kg/TJ,4.5743775,Naphtha combustion consumption by freight transport,AR-F,SESCO,annual,kg,de927766-c806-31d9-a4ff-52e907385cd1 -2022,La Rioja,II.1.1,9.148755,TJ,N2O,2.0,kg/TJ,18.29751,Naphtha combustion consumption by freight transport,AR-F,SESCO,annual,kg,056cde6d-5d9e-3649-8ce3-4c8c2c3d3df2 -2022,Mendoza,II.1.1,55.509299999999996,TJ,CO2,73300.0,kg/TJ,4068831.69,Naphtha combustion consumption by freight transport,AR-M,SESCO,annual,kg,94bba056-cefe-3a1f-8a12-1925d35f14b0 -2022,Mendoza,II.1.1,55.509299999999996,TJ,CH4,0.5,kg/TJ,27.754649999999998,Naphtha combustion consumption by freight transport,AR-M,SESCO,annual,kg,a22b017a-3d06-3aba-b0d3-ab70d7a5f139 -2022,Mendoza,II.1.1,55.509299999999996,TJ,N2O,2.0,kg/TJ,111.01859999999999,Naphtha combustion consumption by freight transport,AR-M,SESCO,annual,kg,43167fa5-d5d2-3666-ba21-ff4cdbc0c611 -2022,Misiones,II.1.1,18.674425,TJ,CO2,73300.0,kg/TJ,1368835.3525,Naphtha combustion consumption by freight transport,AR-N,SESCO,annual,kg,73bc24b5-2f42-351e-ad94-61c1a7d5c07f -2022,Misiones,II.1.1,18.674425,TJ,CH4,0.5,kg/TJ,9.3372125,Naphtha combustion consumption by freight transport,AR-N,SESCO,annual,kg,a5355ca6-7140-34f0-bec4-53db9e545250 -2022,Misiones,II.1.1,18.674425,TJ,N2O,2.0,kg/TJ,37.34885,Naphtha combustion consumption by freight transport,AR-N,SESCO,annual,kg,65515d7f-8fb7-3d59-8844-076d3c55e0e3 -2022,Neuquén,II.1.1,22.47784,TJ,CO2,73300.0,kg/TJ,1647625.672,Naphtha combustion consumption by freight transport,AR-Q,SESCO,annual,kg,82103afd-57eb-3b01-b7c2-c6239eeb612b -2022,Neuquén,II.1.1,22.47784,TJ,CH4,0.5,kg/TJ,11.23892,Naphtha combustion consumption by freight transport,AR-Q,SESCO,annual,kg,08d0a458-04c6-372d-9d0d-31991c0a9aec -2022,Neuquén,II.1.1,22.47784,TJ,N2O,2.0,kg/TJ,44.95568,Naphtha combustion consumption by freight transport,AR-Q,SESCO,annual,kg,a414939d-b058-3609-a120-b0140ecd268e -2022,Rio Negro,II.1.1,25.56169,TJ,CO2,73300.0,kg/TJ,1873671.8769999999,Naphtha combustion consumption by freight transport,AR-R,SESCO,annual,kg,7554086c-144b-3a2d-b60c-64a12f16fed4 -2022,Rio Negro,II.1.1,25.56169,TJ,CH4,0.5,kg/TJ,12.780845,Naphtha combustion consumption by freight transport,AR-R,SESCO,annual,kg,5797febe-60fc-357a-9917-aa50cf13bd9e -2022,Rio Negro,II.1.1,25.56169,TJ,N2O,2.0,kg/TJ,51.12338,Naphtha combustion consumption by freight transport,AR-R,SESCO,annual,kg,0b85d226-7ff9-3a31-a073-ce20b18a2901 -2022,Salta,II.1.1,33.16852,TJ,CO2,73300.0,kg/TJ,2431252.5160000003,Naphtha combustion consumption by freight transport,AR-A,SESCO,annual,kg,c9540b6b-b838-34b2-a90d-d71a0978d56a -2022,Salta,II.1.1,33.16852,TJ,CH4,0.5,kg/TJ,16.58426,Naphtha combustion consumption by freight transport,AR-A,SESCO,annual,kg,b94835a3-6b2b-3616-a4cc-2f749fd85c68 -2022,Salta,II.1.1,33.16852,TJ,N2O,2.0,kg/TJ,66.33704,Naphtha combustion consumption by freight transport,AR-A,SESCO,annual,kg,e51d7ee2-90ef-3d8b-9b29-141264af5ac6 -2022,San Juan,II.1.1,14.699684999999999,TJ,CO2,73300.0,kg/TJ,1077486.9105,Naphtha combustion consumption by freight transport,AR-J,SESCO,annual,kg,e2dd2c17-e391-333f-8efe-7e2f23601ca7 -2022,San Juan,II.1.1,14.699684999999999,TJ,CH4,0.5,kg/TJ,7.349842499999999,Naphtha combustion consumption by freight transport,AR-J,SESCO,annual,kg,12b0ed15-817e-3dbc-989e-db465db1dce4 -2022,San Juan,II.1.1,14.699684999999999,TJ,N2O,2.0,kg/TJ,29.399369999999998,Naphtha combustion consumption by freight transport,AR-J,SESCO,annual,kg,cdb22fbe-1b85-3ac2-b076-4843fbc44467 -2022,San Luis,II.1.1,12.712315,TJ,CO2,73300.0,kg/TJ,931812.6895,Naphtha combustion consumption by freight transport,AR-D,SESCO,annual,kg,b40d838d-e35a-3bc2-a810-eb8612757ba5 -2022,San Luis,II.1.1,12.712315,TJ,CH4,0.5,kg/TJ,6.3561575,Naphtha combustion consumption by freight transport,AR-D,SESCO,annual,kg,13145368-db63-399b-afb3-0ed361648fbf -2022,San Luis,II.1.1,12.712315,TJ,N2O,2.0,kg/TJ,25.42463,Naphtha combustion consumption by freight transport,AR-D,SESCO,annual,kg,9d744d3f-2c8a-3779-b2b1-dcd31cefcf5b -2022,Santa Cruz,II.1.1,13.534675,TJ,CO2,73300.0,kg/TJ,992091.6775,Naphtha combustion consumption by freight transport,AR-Z,SESCO,annual,kg,6e971820-09cf-3e42-878d-73915a801172 -2022,Santa Cruz,II.1.1,13.534675,TJ,CH4,0.5,kg/TJ,6.7673375,Naphtha combustion consumption by freight transport,AR-Z,SESCO,annual,kg,5c3653ac-416f-3689-aea2-a857d345ae7c -2022,Santa Cruz,II.1.1,13.534675,TJ,N2O,2.0,kg/TJ,27.06935,Naphtha combustion consumption by freight transport,AR-Z,SESCO,annual,kg,48c50a26-7f93-3351-8b1a-8d043d5c89a0 -2022,Santa Fe,II.1.1,111.90948999999999,TJ,CO2,73300.0,kg/TJ,8202965.617,Naphtha combustion consumption by freight transport,AR-S,SESCO,annual,kg,b174d6da-c606-3c68-9a1b-17968533b85a -2022,Santa Fe,II.1.1,111.90948999999999,TJ,CH4,0.5,kg/TJ,55.954744999999996,Naphtha combustion consumption by freight transport,AR-S,SESCO,annual,kg,b3d73272-a185-3360-9003-0c2cae5d11a5 -2022,Santa Fe,II.1.1,111.90948999999999,TJ,N2O,2.0,kg/TJ,223.81897999999998,Naphtha combustion consumption by freight transport,AR-S,SESCO,annual,kg,bfaf356e-05ee-3d06-b722-e56d77e60ae5 -2022,Santiago del Estero,II.1.1,10.519355,TJ,CO2,73300.0,kg/TJ,771068.7215,Naphtha combustion consumption by freight transport,AR-G,SESCO,annual,kg,5ccc17d8-b45f-3cd1-9099-1b0bbcecf942 -2022,Santiago del Estero,II.1.1,10.519355,TJ,CH4,0.5,kg/TJ,5.2596775,Naphtha combustion consumption by freight transport,AR-G,SESCO,annual,kg,5bf3806c-3fda-3e55-b834-e7338bc30172 -2022,Santiago del Estero,II.1.1,10.519355,TJ,N2O,2.0,kg/TJ,21.03871,Naphtha combustion consumption by freight transport,AR-G,SESCO,annual,kg,a668826b-d628-398e-8c74-5a68a9cb8e8e -2022,Tierra del Fuego,II.1.1,12.88364,TJ,CO2,73300.0,kg/TJ,944370.812,Naphtha combustion consumption by freight transport,AR-V,SESCO,annual,kg,6f172269-b9bc-3944-a98d-f2c000260e6d -2022,Tierra del Fuego,II.1.1,12.88364,TJ,CH4,0.5,kg/TJ,6.44182,Naphtha combustion consumption by freight transport,AR-V,SESCO,annual,kg,ab7ceb3e-c676-3f9b-8ecc-3973d32a9a96 -2022,Tierra del Fuego,II.1.1,12.88364,TJ,N2O,2.0,kg/TJ,25.76728,Naphtha combustion consumption by freight transport,AR-V,SESCO,annual,kg,c5c0f7ce-3b82-3267-80f1-63370fb353f1 -2022,Tucuman,II.1.1,36.45796,TJ,CO2,73300.0,kg/TJ,2672368.468,Naphtha combustion consumption by freight transport,AR-T,SESCO,annual,kg,0454d7c2-b50f-399c-b3ab-92650dcd3650 -2022,Tucuman,II.1.1,36.45796,TJ,CH4,0.5,kg/TJ,18.22898,Naphtha combustion consumption by freight transport,AR-T,SESCO,annual,kg,e7d4931e-ba02-3473-be35-1733f6b8b67d -2022,Tucuman,II.1.1,36.45796,TJ,N2O,2.0,kg/TJ,72.91592,Naphtha combustion consumption by freight transport,AR-T,SESCO,annual,kg,c26e4c36-663b-3113-9918-1635540915a8 -2022,Buenos Aires,II.1.1,762.156395,TJ,CO2,73300.0,kg/TJ,55866063.7535,Naphtha combustion consumption by freight transport,AR-B,SESCO,annual,kg,1bc1d733-bbb9-3d98-8e30-bdcae257a237 -2022,Buenos Aires,II.1.1,762.156395,TJ,CH4,0.5,kg/TJ,381.0781975,Naphtha combustion consumption by freight transport,AR-B,SESCO,annual,kg,62044ca4-8856-3115-9b42-0f817683b0be -2022,Buenos Aires,II.1.1,762.156395,TJ,N2O,2.0,kg/TJ,1524.31279,Naphtha combustion consumption by freight transport,AR-B,SESCO,annual,kg,2b320de3-2d3c-3a63-9031-3a7dd8657814 -2022,Capital Federal,II.1.1,135.07263,TJ,CO2,73300.0,kg/TJ,9900823.779000001,Naphtha combustion consumption by freight transport,AR-C,SESCO,annual,kg,13b0e8a1-0b5a-3b42-9538-a797f04c9a94 -2022,Capital Federal,II.1.1,135.07263,TJ,CH4,0.5,kg/TJ,67.536315,Naphtha combustion consumption by freight transport,AR-C,SESCO,annual,kg,33e234fa-19a9-38b2-bafd-6e3b52396ba8 -2022,Capital Federal,II.1.1,135.07263,TJ,N2O,2.0,kg/TJ,270.14526,Naphtha combustion consumption by freight transport,AR-C,SESCO,annual,kg,64df3a67-2725-3552-82ad-e5543c6d1098 -2022,Catamarca,II.1.1,2.227225,TJ,CO2,73300.0,kg/TJ,163255.5925,Naphtha combustion consumption by freight transport,AR-K,SESCO,annual,kg,808f2e3b-4116-3e48-b118-23d24a50ef76 -2022,Catamarca,II.1.1,2.227225,TJ,CH4,0.5,kg/TJ,1.1136125,Naphtha combustion consumption by freight transport,AR-K,SESCO,annual,kg,bf4e7c7c-cb1f-374b-9f65-6f1bbe2dc535 -2022,Catamarca,II.1.1,2.227225,TJ,N2O,2.0,kg/TJ,4.45445,Naphtha combustion consumption by freight transport,AR-K,SESCO,annual,kg,1d207f9c-985e-3e35-ae14-c0533b79af1c -2022,Chaco,II.1.1,18.742955,TJ,CO2,73300.0,kg/TJ,1373858.6014999999,Naphtha combustion consumption by freight transport,AR-H,SESCO,annual,kg,8eb183fb-8527-33c7-a723-371bc7e28c9d -2022,Chaco,II.1.1,18.742955,TJ,CH4,0.5,kg/TJ,9.3714775,Naphtha combustion consumption by freight transport,AR-H,SESCO,annual,kg,587b4bcb-054e-3ad6-9a2c-468f7f3c43e9 -2022,Chaco,II.1.1,18.742955,TJ,N2O,2.0,kg/TJ,37.48591,Naphtha combustion consumption by freight transport,AR-H,SESCO,annual,kg,3f30a94e-6c2a-3b44-9a2d-ead87d0f703c -2022,Chubut,II.1.1,17.54368,TJ,CO2,73300.0,kg/TJ,1285951.744,Naphtha combustion consumption by freight transport,AR-U,SESCO,annual,kg,928ec66e-e2c9-36ab-a3bb-fb204932f022 -2022,Chubut,II.1.1,17.54368,TJ,CH4,0.5,kg/TJ,8.77184,Naphtha combustion consumption by freight transport,AR-U,SESCO,annual,kg,448571a0-a1a0-3a86-871e-cdb93eb109ba -2022,Chubut,II.1.1,17.54368,TJ,N2O,2.0,kg/TJ,35.08736,Naphtha combustion consumption by freight transport,AR-U,SESCO,annual,kg,cdb9fcfe-caec-3b0e-b64e-a0278de53946 -2022,Corrientes,II.1.1,24.259619999999998,TJ,CO2,73300.0,kg/TJ,1778230.146,Naphtha combustion consumption by freight transport,AR-W,SESCO,annual,kg,f7e62983-b2f3-3d0a-8529-3e55c2f11168 -2022,Corrientes,II.1.1,24.259619999999998,TJ,CH4,0.5,kg/TJ,12.129809999999999,Naphtha combustion consumption by freight transport,AR-W,SESCO,annual,kg,04829b8f-6914-3cb6-9f7a-79e667e00e36 -2022,Corrientes,II.1.1,24.259619999999998,TJ,N2O,2.0,kg/TJ,48.519239999999996,Naphtha combustion consumption by freight transport,AR-W,SESCO,annual,kg,fbe49c19-99bf-30e3-a10f-b237682a44be -2022,Córdoba,II.1.1,148.538775,TJ,CO2,73300.0,kg/TJ,10887892.2075,Naphtha combustion consumption by freight transport,AR-X,SESCO,annual,kg,8f3b493f-6304-340f-952d-bb0950270f3a -2022,Córdoba,II.1.1,148.538775,TJ,CH4,0.5,kg/TJ,74.2693875,Naphtha combustion consumption by freight transport,AR-X,SESCO,annual,kg,032280fa-b861-3f21-bffe-009437478a8e -2022,Córdoba,II.1.1,148.538775,TJ,N2O,2.0,kg/TJ,297.07755,Naphtha combustion consumption by freight transport,AR-X,SESCO,annual,kg,408afe42-37df-3701-beb5-7a9afea7fef1 -2022,Entre Rios,II.1.1,40.09005,TJ,CO2,73300.0,kg/TJ,2938600.665,Naphtha combustion consumption by freight transport,AR-E,SESCO,annual,kg,870f27b4-0237-31cf-a73e-28ec784c7fcd -2022,Entre Rios,II.1.1,40.09005,TJ,CH4,0.5,kg/TJ,20.045025,Naphtha combustion consumption by freight transport,AR-E,SESCO,annual,kg,4792ee63-d887-3407-97c5-9d45d6156164 -2022,Entre Rios,II.1.1,40.09005,TJ,N2O,2.0,kg/TJ,80.1801,Naphtha combustion consumption by freight transport,AR-E,SESCO,annual,kg,4d4004f0-6cd2-3df5-a93e-c54cede036df -2022,Formosa,II.1.1,4.18033,TJ,CO2,73300.0,kg/TJ,306418.18899999995,Naphtha combustion consumption by freight transport,AR-P,SESCO,annual,kg,da2f8357-a8ba-3d5f-9e6b-c5e5e33f720d -2022,Formosa,II.1.1,4.18033,TJ,CH4,0.5,kg/TJ,2.090165,Naphtha combustion consumption by freight transport,AR-P,SESCO,annual,kg,fdd3b6d7-22a4-3851-b31d-148c9b8ec402 -2022,Formosa,II.1.1,4.18033,TJ,N2O,2.0,kg/TJ,8.36066,Naphtha combustion consumption by freight transport,AR-P,SESCO,annual,kg,61186fcd-6db5-3bbc-9cac-b105bf7cea86 -2022,Jujuy,II.1.1,5.41387,TJ,CO2,73300.0,kg/TJ,396836.67100000003,Naphtha combustion consumption by freight transport,AR-Y,SESCO,annual,kg,b5caff98-ed52-33c0-b956-4d2ddab9b351 -2022,Jujuy,II.1.1,5.41387,TJ,CH4,0.5,kg/TJ,2.706935,Naphtha combustion consumption by freight transport,AR-Y,SESCO,annual,kg,f7baefe4-c314-3512-8463-f5e4ad47fda1 -2022,Jujuy,II.1.1,5.41387,TJ,N2O,2.0,kg/TJ,10.82774,Naphtha combustion consumption by freight transport,AR-Y,SESCO,annual,kg,5f0d0535-805f-3b21-9138-ecbd8d9bb1b6 -2022,La Pampa,II.1.1,15.247924999999999,TJ,CO2,73300.0,kg/TJ,1117672.9024999999,Naphtha combustion consumption by freight transport,AR-L,SESCO,annual,kg,5355e0fe-1728-3129-b42d-c608e4282db8 -2022,La Pampa,II.1.1,15.247924999999999,TJ,CH4,0.5,kg/TJ,7.623962499999999,Naphtha combustion consumption by freight transport,AR-L,SESCO,annual,kg,41b0cf2a-6664-398a-9ea1-a5599493554e -2022,La Pampa,II.1.1,15.247924999999999,TJ,N2O,2.0,kg/TJ,30.495849999999997,Naphtha combustion consumption by freight transport,AR-L,SESCO,annual,kg,815a5918-c261-3bcb-a4a0-29fce461905a -2022,La Rioja,II.1.1,7.8809499999999995,TJ,CO2,73300.0,kg/TJ,577673.635,Naphtha combustion consumption by freight transport,AR-F,SESCO,annual,kg,81c9464a-5d69-390b-9a04-1d14ced4c7a4 -2022,La Rioja,II.1.1,7.8809499999999995,TJ,CH4,0.5,kg/TJ,3.9404749999999997,Naphtha combustion consumption by freight transport,AR-F,SESCO,annual,kg,bbd6cf5c-476c-3902-9933-2fdb9a383d19 -2022,La Rioja,II.1.1,7.8809499999999995,TJ,N2O,2.0,kg/TJ,15.761899999999999,Naphtha combustion consumption by freight transport,AR-F,SESCO,annual,kg,4aa5f6b7-8068-3fbb-a0cc-e777037711b1 -2022,Mendoza,II.1.1,77.43889999999999,TJ,CO2,73300.0,kg/TJ,5676271.369999999,Naphtha combustion consumption by freight transport,AR-M,SESCO,annual,kg,17e004c7-578e-32b2-9206-6bc271890134 -2022,Mendoza,II.1.1,77.43889999999999,TJ,CH4,0.5,kg/TJ,38.719449999999995,Naphtha combustion consumption by freight transport,AR-M,SESCO,annual,kg,c00ee929-f048-3966-8e52-099e2a429792 -2022,Mendoza,II.1.1,77.43889999999999,TJ,N2O,2.0,kg/TJ,154.87779999999998,Naphtha combustion consumption by freight transport,AR-M,SESCO,annual,kg,ba99686e-b31e-36de-a946-2a86731dbfaa -2022,Misiones,II.1.1,19.428255,TJ,CO2,73300.0,kg/TJ,1424091.0915,Naphtha combustion consumption by freight transport,AR-N,SESCO,annual,kg,261c106d-9405-35d8-a6e9-9848054b85c7 -2022,Misiones,II.1.1,19.428255,TJ,CH4,0.5,kg/TJ,9.7141275,Naphtha combustion consumption by freight transport,AR-N,SESCO,annual,kg,cdb465ef-3f97-3edf-9afb-a769b8a7c7cb -2022,Misiones,II.1.1,19.428255,TJ,N2O,2.0,kg/TJ,38.85651,Naphtha combustion consumption by freight transport,AR-N,SESCO,annual,kg,2899e15c-b0eb-3c51-94ca-6de7623911f5 -2022,Neuquén,II.1.1,47.765409999999996,TJ,CO2,73300.0,kg/TJ,3501204.553,Naphtha combustion consumption by freight transport,AR-Q,SESCO,annual,kg,418c9af0-eb24-329b-8326-3dbc077dba63 -2022,Neuquén,II.1.1,47.765409999999996,TJ,CH4,0.5,kg/TJ,23.882704999999998,Naphtha combustion consumption by freight transport,AR-Q,SESCO,annual,kg,e7f80bde-0eef-3150-b68f-8d97c6f2f73a -2022,Neuquén,II.1.1,47.765409999999996,TJ,N2O,2.0,kg/TJ,95.53081999999999,Naphtha combustion consumption by freight transport,AR-Q,SESCO,annual,kg,96278038-504a-374a-afc5-e3191ead4e71 -2022,Rio Negro,II.1.1,43.345225,TJ,CO2,73300.0,kg/TJ,3177204.9925,Naphtha combustion consumption by freight transport,AR-R,SESCO,annual,kg,ab4c2afa-27d5-3f2a-b805-29c5f600ed01 -2022,Rio Negro,II.1.1,43.345225,TJ,CH4,0.5,kg/TJ,21.6726125,Naphtha combustion consumption by freight transport,AR-R,SESCO,annual,kg,57b0cdc8-9699-34b2-96da-13c7414b80de -2022,Rio Negro,II.1.1,43.345225,TJ,N2O,2.0,kg/TJ,86.69045,Naphtha combustion consumption by freight transport,AR-R,SESCO,annual,kg,73bba719-1ed1-3d7c-9ddd-2b5ef70f43ee -2022,Salta,II.1.1,25.76728,TJ,CO2,73300.0,kg/TJ,1888741.624,Naphtha combustion consumption by freight transport,AR-A,SESCO,annual,kg,3a8b6a2c-25f3-3cef-9603-8e7b8a646076 -2022,Salta,II.1.1,25.76728,TJ,CH4,0.5,kg/TJ,12.88364,Naphtha combustion consumption by freight transport,AR-A,SESCO,annual,kg,9322457a-227f-34b1-825f-e68d7440fb42 -2022,Salta,II.1.1,25.76728,TJ,N2O,2.0,kg/TJ,51.53456,Naphtha combustion consumption by freight transport,AR-A,SESCO,annual,kg,5d749db7-531a-3519-b7b5-f78e379b7fdf -2022,San Juan,II.1.1,10.039645,TJ,CO2,73300.0,kg/TJ,735905.9785,Naphtha combustion consumption by freight transport,AR-J,SESCO,annual,kg,746a15ea-9560-3254-a45d-fccc06bc4b93 -2022,San Juan,II.1.1,10.039645,TJ,CH4,0.5,kg/TJ,5.0198225,Naphtha combustion consumption by freight transport,AR-J,SESCO,annual,kg,76f3bb03-8c2a-3627-999c-c62d76fc31d2 -2022,San Juan,II.1.1,10.039645,TJ,N2O,2.0,kg/TJ,20.07929,Naphtha combustion consumption by freight transport,AR-J,SESCO,annual,kg,cb47adb2-4fd9-3bf6-9e0e-1747a9c3ad35 -2022,San Luis,II.1.1,10.75921,TJ,CO2,73300.0,kg/TJ,788650.093,Naphtha combustion consumption by freight transport,AR-D,SESCO,annual,kg,0174146c-4264-39cd-9f08-52a283febd97 -2022,San Luis,II.1.1,10.75921,TJ,CH4,0.5,kg/TJ,5.379605,Naphtha combustion consumption by freight transport,AR-D,SESCO,annual,kg,e754a7db-281a-3ab0-b295-ae229cf3e6ff -2022,San Luis,II.1.1,10.75921,TJ,N2O,2.0,kg/TJ,21.51842,Naphtha combustion consumption by freight transport,AR-D,SESCO,annual,kg,427907e6-27e4-34df-af78-a43a4a1f71a7 -2022,Santa Cruz,II.1.1,7.298445,TJ,CO2,73300.0,kg/TJ,534976.0185,Naphtha combustion consumption by freight transport,AR-Z,SESCO,annual,kg,dcce29f9-479b-36de-92da-618e8edcb811 -2022,Santa Cruz,II.1.1,7.298445,TJ,CH4,0.5,kg/TJ,3.6492225,Naphtha combustion consumption by freight transport,AR-Z,SESCO,annual,kg,08f32a63-d2c5-3fc1-8674-0e6cbf4b0153 -2022,Santa Cruz,II.1.1,7.298445,TJ,N2O,2.0,kg/TJ,14.59689,Naphtha combustion consumption by freight transport,AR-Z,SESCO,annual,kg,f0ea6625-3bb5-339e-9188-5935cf141f07 -2022,Santa Fe,II.1.1,125.06725,TJ,CO2,73300.0,kg/TJ,9167429.425,Naphtha combustion consumption by freight transport,AR-S,SESCO,annual,kg,c8039c26-81d7-3183-ac73-84c949b05204 -2022,Santa Fe,II.1.1,125.06725,TJ,CH4,0.5,kg/TJ,62.533625,Naphtha combustion consumption by freight transport,AR-S,SESCO,annual,kg,3a0cbe8d-deac-389a-b0d0-31aaa168a9ce -2022,Santa Fe,II.1.1,125.06725,TJ,N2O,2.0,kg/TJ,250.1345,Naphtha combustion consumption by freight transport,AR-S,SESCO,annual,kg,523fd0a9-b5e9-3d4b-988d-db24cd8094c3 -2022,Santiago del Estero,II.1.1,6.818734999999999,TJ,CO2,73300.0,kg/TJ,499813.27549999993,Naphtha combustion consumption by freight transport,AR-G,SESCO,annual,kg,b704e616-d3b9-3ed3-bf8a-91b622f6932b -2022,Santiago del Estero,II.1.1,6.818734999999999,TJ,CH4,0.5,kg/TJ,3.4093674999999997,Naphtha combustion consumption by freight transport,AR-G,SESCO,annual,kg,ca37d37e-6b04-397b-9c33-203d2d3842b7 -2022,Santiago del Estero,II.1.1,6.818734999999999,TJ,N2O,2.0,kg/TJ,13.637469999999999,Naphtha combustion consumption by freight transport,AR-G,SESCO,annual,kg,ca87903b-e97f-340e-8ed7-dcb587e80971 -2022,Tierra del Fuego,II.1.1,8.2236,TJ,CO2,73300.0,kg/TJ,602789.88,Naphtha combustion consumption by freight transport,AR-V,SESCO,annual,kg,f7841edc-82e7-30f7-a119-1573544d350d -2022,Tierra del Fuego,II.1.1,8.2236,TJ,CH4,0.5,kg/TJ,4.1118,Naphtha combustion consumption by freight transport,AR-V,SESCO,annual,kg,b511f33f-47c8-376c-8dda-5076f747a9e7 -2022,Tierra del Fuego,II.1.1,8.2236,TJ,N2O,2.0,kg/TJ,16.4472,Naphtha combustion consumption by freight transport,AR-V,SESCO,annual,kg,974cd13f-a21c-3a84-9cf3-c33545db5386 -2022,Tucuman,II.1.1,18.400305,TJ,CO2,73300.0,kg/TJ,1348742.3565,Naphtha combustion consumption by freight transport,AR-T,SESCO,annual,kg,3b11051e-8579-3b86-8349-08323f1f16df -2022,Tucuman,II.1.1,18.400305,TJ,CH4,0.5,kg/TJ,9.2001525,Naphtha combustion consumption by freight transport,AR-T,SESCO,annual,kg,7cb2b6b8-4d18-3eb3-a7b0-5d68c242bf01 -2022,Tucuman,II.1.1,18.400305,TJ,N2O,2.0,kg/TJ,36.80061,Naphtha combustion consumption by freight transport,AR-T,SESCO,annual,kg,1cadfb69-295b-31f4-994d-66d7bf46c780 -2022,Buenos Aires,II.1.1,6369.400799999999,TJ,CO2,74100.0,kg/TJ,471972599.28,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,c90cfde5-c29e-31ff-8090-c02dda6e80c9 -2022,Buenos Aires,II.1.1,6369.400799999999,TJ,CH4,3.9,kg/TJ,24840.663119999997,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,8c3cc1b0-affa-32e0-83cb-f0d2194c5a20 -2022,Buenos Aires,II.1.1,6369.400799999999,TJ,N2O,3.9,kg/TJ,24840.663119999997,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,8c3cc1b0-affa-32e0-83cb-f0d2194c5a20 -2022,Capital Federal,II.1.1,1473.3709199999998,TJ,CO2,74100.0,kg/TJ,109176785.17199999,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,c7e865de-2927-33d2-af28-3b7b822cc335 -2022,Capital Federal,II.1.1,1473.3709199999998,TJ,CH4,3.9,kg/TJ,5746.146588,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,4be98f6b-193a-378d-8339-50f04f66583b -2022,Capital Federal,II.1.1,1473.3709199999998,TJ,N2O,3.9,kg/TJ,5746.146588,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,4be98f6b-193a-378d-8339-50f04f66583b -2022,Catamarca,II.1.1,67.14708,TJ,CO2,74100.0,kg/TJ,4975598.6280000005,Gas Oil combustion consumption by public passenger transport,AR-K,SESCO,annual,kg,171709a3-deee-3cc3-8a52-f815361bda4f -2022,Catamarca,II.1.1,67.14708,TJ,CH4,3.9,kg/TJ,261.873612,Gas Oil combustion consumption by public passenger transport,AR-K,SESCO,annual,kg,08c0ddac-08e5-3afa-aaf3-08da82653674 -2022,Catamarca,II.1.1,67.14708,TJ,N2O,3.9,kg/TJ,261.873612,Gas Oil combustion consumption by public passenger transport,AR-K,SESCO,annual,kg,08c0ddac-08e5-3afa-aaf3-08da82653674 -2022,Chaco,II.1.1,187.2822,TJ,CO2,74100.0,kg/TJ,13877611.02,Gas Oil combustion consumption by public passenger transport,AR-H,SESCO,annual,kg,7c089baf-f565-34c5-918f-ed56afc6d4b0 -2022,Chaco,II.1.1,187.2822,TJ,CH4,3.9,kg/TJ,730.40058,Gas Oil combustion consumption by public passenger transport,AR-H,SESCO,annual,kg,fb265246-d50f-3789-b8e1-7aacf081b235 -2022,Chaco,II.1.1,187.2822,TJ,N2O,3.9,kg/TJ,730.40058,Gas Oil combustion consumption by public passenger transport,AR-H,SESCO,annual,kg,fb265246-d50f-3789-b8e1-7aacf081b235 -2022,Chubut,II.1.1,10.22196,TJ,CO2,74100.0,kg/TJ,757447.2359999999,Gas Oil combustion consumption by public passenger transport,AR-U,SESCO,annual,kg,1daf0a33-9dab-34d2-80e2-967533254f06 -2022,Chubut,II.1.1,10.22196,TJ,CH4,3.9,kg/TJ,39.865643999999996,Gas Oil combustion consumption by public passenger transport,AR-U,SESCO,annual,kg,b0ad4cbb-7040-31fa-b906-a08fa1dc60e4 -2022,Chubut,II.1.1,10.22196,TJ,N2O,3.9,kg/TJ,39.865643999999996,Gas Oil combustion consumption by public passenger transport,AR-U,SESCO,annual,kg,b0ad4cbb-7040-31fa-b906-a08fa1dc60e4 -2022,Corrientes,II.1.1,127.28688,TJ,CO2,74100.0,kg/TJ,9431957.808,Gas Oil combustion consumption by public passenger transport,AR-W,SESCO,annual,kg,94c82492-703c-3e50-9ea8-827782808a7d -2022,Corrientes,II.1.1,127.28688,TJ,CH4,3.9,kg/TJ,496.41883199999995,Gas Oil combustion consumption by public passenger transport,AR-W,SESCO,annual,kg,ea502fa5-bffd-3ab9-9c8c-4b12e339bb2d -2022,Corrientes,II.1.1,127.28688,TJ,N2O,3.9,kg/TJ,496.41883199999995,Gas Oil combustion consumption by public passenger transport,AR-W,SESCO,annual,kg,ea502fa5-bffd-3ab9-9c8c-4b12e339bb2d -2022,Córdoba,II.1.1,896.0649599999999,TJ,CO2,74100.0,kg/TJ,66398413.53599999,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,47c9cb8e-dfde-3995-bd94-b0e5065eee71 -2022,Córdoba,II.1.1,896.0649599999999,TJ,CH4,3.9,kg/TJ,3494.653344,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,8fc1c3f4-8689-3850-b65d-6f35319556a7 -2022,Córdoba,II.1.1,896.0649599999999,TJ,N2O,3.9,kg/TJ,3494.653344,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,8fc1c3f4-8689-3850-b65d-6f35319556a7 -2022,Entre Rios,II.1.1,227.80884,TJ,CO2,74100.0,kg/TJ,16880635.044,Gas Oil combustion consumption by public passenger transport,AR-E,SESCO,annual,kg,a2972221-7c17-3c1d-9419-efb98e7a4f02 -2022,Entre Rios,II.1.1,227.80884,TJ,CH4,3.9,kg/TJ,888.454476,Gas Oil combustion consumption by public passenger transport,AR-E,SESCO,annual,kg,84d4c2dc-02bc-3047-b8a3-348309093bad -2022,Entre Rios,II.1.1,227.80884,TJ,N2O,3.9,kg/TJ,888.454476,Gas Oil combustion consumption by public passenger transport,AR-E,SESCO,annual,kg,84d4c2dc-02bc-3047-b8a3-348309093bad -2022,Formosa,II.1.1,22.17768,TJ,CO2,74100.0,kg/TJ,1643366.088,Gas Oil combustion consumption by public passenger transport,AR-P,SESCO,annual,kg,9e2493fd-a041-358d-a486-ffd813abfdd0 -2022,Formosa,II.1.1,22.17768,TJ,CH4,3.9,kg/TJ,86.49295199999999,Gas Oil combustion consumption by public passenger transport,AR-P,SESCO,annual,kg,45479125-cdc7-32fc-8861-619263a63787 -2022,Formosa,II.1.1,22.17768,TJ,N2O,3.9,kg/TJ,86.49295199999999,Gas Oil combustion consumption by public passenger transport,AR-P,SESCO,annual,kg,45479125-cdc7-32fc-8861-619263a63787 -2022,Jujuy,II.1.1,210.14615999999998,TJ,CO2,74100.0,kg/TJ,15571830.455999998,Gas Oil combustion consumption by public passenger transport,AR-Y,SESCO,annual,kg,55398d27-e8dd-3a36-a1b6-db0d8feebee8 -2022,Jujuy,II.1.1,210.14615999999998,TJ,CH4,3.9,kg/TJ,819.5700239999999,Gas Oil combustion consumption by public passenger transport,AR-Y,SESCO,annual,kg,1313e23a-4e4a-3314-bdcf-3a3dbfbb8f3f -2022,Jujuy,II.1.1,210.14615999999998,TJ,N2O,3.9,kg/TJ,819.5700239999999,Gas Oil combustion consumption by public passenger transport,AR-Y,SESCO,annual,kg,1313e23a-4e4a-3314-bdcf-3a3dbfbb8f3f -2022,Mendoza,II.1.1,1057.19628,TJ,CO2,74100.0,kg/TJ,78338244.34799999,Gas Oil combustion consumption by public passenger transport,AR-M,SESCO,annual,kg,d6cbb6d8-694f-3259-8ed4-2094da8d93ea -2022,Mendoza,II.1.1,1057.19628,TJ,CH4,3.9,kg/TJ,4123.065492,Gas Oil combustion consumption by public passenger transport,AR-M,SESCO,annual,kg,0699fe54-10e5-30cf-8add-0c3f440d8048 -2022,Mendoza,II.1.1,1057.19628,TJ,N2O,3.9,kg/TJ,4123.065492,Gas Oil combustion consumption by public passenger transport,AR-M,SESCO,annual,kg,0699fe54-10e5-30cf-8add-0c3f440d8048 -2022,Misiones,II.1.1,612.52296,TJ,CO2,74100.0,kg/TJ,45387951.336,Gas Oil combustion consumption by public passenger transport,AR-N,SESCO,annual,kg,ebf195f7-bce3-305f-a8c7-2ce7b615724f -2022,Misiones,II.1.1,612.52296,TJ,CH4,3.9,kg/TJ,2388.839544,Gas Oil combustion consumption by public passenger transport,AR-N,SESCO,annual,kg,43a49c79-2630-3220-b74f-086f53fa60c3 -2022,Misiones,II.1.1,612.52296,TJ,N2O,3.9,kg/TJ,2388.839544,Gas Oil combustion consumption by public passenger transport,AR-N,SESCO,annual,kg,43a49c79-2630-3220-b74f-086f53fa60c3 -2022,Neuquén,II.1.1,49.77336,TJ,CO2,74100.0,kg/TJ,3688205.976,Gas Oil combustion consumption by public passenger transport,AR-Q,SESCO,annual,kg,7bc46125-3e7f-389b-aadb-befa40512129 -2022,Neuquén,II.1.1,49.77336,TJ,CH4,3.9,kg/TJ,194.11610399999998,Gas Oil combustion consumption by public passenger transport,AR-Q,SESCO,annual,kg,0e5b83a9-7a46-3047-a6b0-19338306a126 -2022,Neuquén,II.1.1,49.77336,TJ,N2O,3.9,kg/TJ,194.11610399999998,Gas Oil combustion consumption by public passenger transport,AR-Q,SESCO,annual,kg,0e5b83a9-7a46-3047-a6b0-19338306a126 -2022,Rio Negro,II.1.1,18.2406,TJ,CO2,74100.0,kg/TJ,1351628.46,Gas Oil combustion consumption by public passenger transport,AR-R,SESCO,annual,kg,e463c87e-ed09-3a47-b433-5fa9ec70e157 -2022,Rio Negro,II.1.1,18.2406,TJ,CH4,3.9,kg/TJ,71.13834,Gas Oil combustion consumption by public passenger transport,AR-R,SESCO,annual,kg,07b62f26-a768-31b5-a402-a49d654c78f1 -2022,Rio Negro,II.1.1,18.2406,TJ,N2O,3.9,kg/TJ,71.13834,Gas Oil combustion consumption by public passenger transport,AR-R,SESCO,annual,kg,07b62f26-a768-31b5-a402-a49d654c78f1 -2022,Salta,II.1.1,282.38615999999996,TJ,CO2,74100.0,kg/TJ,20924814.455999997,Gas Oil combustion consumption by public passenger transport,AR-A,SESCO,annual,kg,3b5b0f6f-2676-31bc-b15d-3a261b9a377d -2022,Salta,II.1.1,282.38615999999996,TJ,CH4,3.9,kg/TJ,1101.3060239999998,Gas Oil combustion consumption by public passenger transport,AR-A,SESCO,annual,kg,d918fb46-0fba-337d-9e92-b228eb28c76f -2022,Salta,II.1.1,282.38615999999996,TJ,N2O,3.9,kg/TJ,1101.3060239999998,Gas Oil combustion consumption by public passenger transport,AR-A,SESCO,annual,kg,d918fb46-0fba-337d-9e92-b228eb28c76f -2022,San Juan,II.1.1,53.6382,TJ,CO2,74100.0,kg/TJ,3974590.6199999996,Gas Oil combustion consumption by public passenger transport,AR-J,SESCO,annual,kg,e5dd5274-699f-3916-9409-62c3891c8903 -2022,San Juan,II.1.1,53.6382,TJ,CH4,3.9,kg/TJ,209.18898,Gas Oil combustion consumption by public passenger transport,AR-J,SESCO,annual,kg,be28ec09-0345-3c3a-9ad9-831514cd9045 -2022,San Juan,II.1.1,53.6382,TJ,N2O,3.9,kg/TJ,209.18898,Gas Oil combustion consumption by public passenger transport,AR-J,SESCO,annual,kg,be28ec09-0345-3c3a-9ad9-831514cd9045 -2022,Santa Fe,II.1.1,523.23432,TJ,CO2,74100.0,kg/TJ,38771663.112,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,94e1d1c8-34fe-3356-ac21-439d93970a1c -2022,Santa Fe,II.1.1,523.23432,TJ,CH4,3.9,kg/TJ,2040.613848,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,e1cb157a-42ad-38c1-afa6-c18a9f59ccb8 -2022,Santa Fe,II.1.1,523.23432,TJ,N2O,3.9,kg/TJ,2040.613848,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,e1cb157a-42ad-38c1-afa6-c18a9f59ccb8 -2022,Tierra del Fuego,II.1.1,10.2942,TJ,CO2,74100.0,kg/TJ,762800.22,Gas Oil combustion consumption by public passenger transport,AR-V,SESCO,annual,kg,b917dc6d-b369-33d1-826c-03f8ff363228 -2022,Tierra del Fuego,II.1.1,10.2942,TJ,CH4,3.9,kg/TJ,40.14738,Gas Oil combustion consumption by public passenger transport,AR-V,SESCO,annual,kg,eb514032-dc76-3b53-9c67-dcdbbe8dd0c7 -2022,Tierra del Fuego,II.1.1,10.2942,TJ,N2O,3.9,kg/TJ,40.14738,Gas Oil combustion consumption by public passenger transport,AR-V,SESCO,annual,kg,eb514032-dc76-3b53-9c67-dcdbbe8dd0c7 -2022,Tucuman,II.1.1,105.75936,TJ,CO2,74100.0,kg/TJ,7836768.576,Gas Oil combustion consumption by public passenger transport,AR-T,SESCO,annual,kg,3cced3cf-ad0b-3757-bcc0-a28e6e0a8bc7 -2022,Tucuman,II.1.1,105.75936,TJ,CH4,3.9,kg/TJ,412.461504,Gas Oil combustion consumption by public passenger transport,AR-T,SESCO,annual,kg,8c124421-62f5-3116-ab9c-3fbb4c1d1ef9 -2022,Tucuman,II.1.1,105.75936,TJ,N2O,3.9,kg/TJ,412.461504,Gas Oil combustion consumption by public passenger transport,AR-T,SESCO,annual,kg,8c124421-62f5-3116-ab9c-3fbb4c1d1ef9 -2022,Buenos Aires,II.1.1,5147.4612,TJ,CO2,74100.0,kg/TJ,381426874.91999996,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,89cdce2b-370b-3195-9df4-cf12061e1640 -2022,Buenos Aires,II.1.1,5147.4612,TJ,CH4,3.9,kg/TJ,20075.09868,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,25f3c1cc-54bf-3384-acc6-aa595adeac55 -2022,Buenos Aires,II.1.1,5147.4612,TJ,N2O,3.9,kg/TJ,20075.09868,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,25f3c1cc-54bf-3384-acc6-aa595adeac55 -2022,Capital Federal,II.1.1,1024.07424,TJ,CO2,74100.0,kg/TJ,75883901.184,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,ae800c76-3b5d-3e1c-8d77-f34e6b8076ff -2022,Capital Federal,II.1.1,1024.07424,TJ,CH4,3.9,kg/TJ,3993.8895359999997,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,9aedfd8e-efc7-3d70-99a7-c929de557920 -2022,Capital Federal,II.1.1,1024.07424,TJ,N2O,3.9,kg/TJ,3993.8895359999997,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,9aedfd8e-efc7-3d70-99a7-c929de557920 -2022,Chaco,II.1.1,18.637919999999998,TJ,CO2,74100.0,kg/TJ,1381069.8719999997,Gas Oil combustion consumption by public passenger transport,AR-H,SESCO,annual,kg,41405cc8-1c87-33bc-a58d-a27e46459de4 -2022,Chaco,II.1.1,18.637919999999998,TJ,CH4,3.9,kg/TJ,72.68788799999999,Gas Oil combustion consumption by public passenger transport,AR-H,SESCO,annual,kg,fe409d4c-675a-33d0-8aae-285c88e3031e -2022,Chaco,II.1.1,18.637919999999998,TJ,N2O,3.9,kg/TJ,72.68788799999999,Gas Oil combustion consumption by public passenger transport,AR-H,SESCO,annual,kg,fe409d4c-675a-33d0-8aae-285c88e3031e -2022,Chubut,II.1.1,34.205639999999995,TJ,CO2,74100.0,kg/TJ,2534637.9239999996,Gas Oil combustion consumption by public passenger transport,AR-U,SESCO,annual,kg,aa694f5d-a593-350f-8e3a-a0c2f435e8b8 -2022,Chubut,II.1.1,34.205639999999995,TJ,CH4,3.9,kg/TJ,133.40199599999997,Gas Oil combustion consumption by public passenger transport,AR-U,SESCO,annual,kg,7a305ea2-d7cf-3e1f-91c5-c887cfbd521c -2022,Chubut,II.1.1,34.205639999999995,TJ,N2O,3.9,kg/TJ,133.40199599999997,Gas Oil combustion consumption by public passenger transport,AR-U,SESCO,annual,kg,7a305ea2-d7cf-3e1f-91c5-c887cfbd521c -2022,Corrientes,II.1.1,40.59888,TJ,CO2,74100.0,kg/TJ,3008377.008,Gas Oil combustion consumption by public passenger transport,AR-W,SESCO,annual,kg,8c71911e-050e-3d4e-83bf-9cde4562574f -2022,Corrientes,II.1.1,40.59888,TJ,CH4,3.9,kg/TJ,158.335632,Gas Oil combustion consumption by public passenger transport,AR-W,SESCO,annual,kg,468899c1-a3b9-3662-bd59-cbc41e925ce2 -2022,Corrientes,II.1.1,40.59888,TJ,N2O,3.9,kg/TJ,158.335632,Gas Oil combustion consumption by public passenger transport,AR-W,SESCO,annual,kg,468899c1-a3b9-3662-bd59-cbc41e925ce2 -2022,Córdoba,II.1.1,287.94864,TJ,CO2,74100.0,kg/TJ,21336994.224,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,b3ed3834-c4f7-3d07-a134-3180d9d1b6f9 -2022,Córdoba,II.1.1,287.94864,TJ,CH4,3.9,kg/TJ,1122.999696,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,1768121c-7dd6-364b-b387-61d3ab1d4941 -2022,Córdoba,II.1.1,287.94864,TJ,N2O,3.9,kg/TJ,1122.999696,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,1768121c-7dd6-364b-b387-61d3ab1d4941 -2022,Entre Rios,II.1.1,36.4812,TJ,CO2,74100.0,kg/TJ,2703256.92,Gas Oil combustion consumption by public passenger transport,AR-E,SESCO,annual,kg,723f4f33-0050-31be-bf2c-b02f7938e76b -2022,Entre Rios,II.1.1,36.4812,TJ,CH4,3.9,kg/TJ,142.27668,Gas Oil combustion consumption by public passenger transport,AR-E,SESCO,annual,kg,094b949a-3055-3dc1-9885-43a13e387937 -2022,Entre Rios,II.1.1,36.4812,TJ,N2O,3.9,kg/TJ,142.27668,Gas Oil combustion consumption by public passenger transport,AR-E,SESCO,annual,kg,094b949a-3055-3dc1-9885-43a13e387937 -2022,Mendoza,II.1.1,110.3466,TJ,CO2,74100.0,kg/TJ,8176683.06,Gas Oil combustion consumption by public passenger transport,AR-M,SESCO,annual,kg,02ade1af-599d-3ee0-be29-42e97c1ebb60 -2022,Mendoza,II.1.1,110.3466,TJ,CH4,3.9,kg/TJ,430.35173999999995,Gas Oil combustion consumption by public passenger transport,AR-M,SESCO,annual,kg,e5b0ff0c-e110-34a5-bcd5-3eee60c45edb -2022,Mendoza,II.1.1,110.3466,TJ,N2O,3.9,kg/TJ,430.35173999999995,Gas Oil combustion consumption by public passenger transport,AR-M,SESCO,annual,kg,e5b0ff0c-e110-34a5-bcd5-3eee60c45edb -2022,Misiones,II.1.1,37.275839999999995,TJ,CO2,74100.0,kg/TJ,2762139.7439999995,Gas Oil combustion consumption by public passenger transport,AR-N,SESCO,annual,kg,1944d10d-81b4-3c36-b3a1-00a8992ed440 -2022,Misiones,II.1.1,37.275839999999995,TJ,CH4,3.9,kg/TJ,145.37577599999997,Gas Oil combustion consumption by public passenger transport,AR-N,SESCO,annual,kg,bc68b6fa-ab19-35f6-b7d8-2e19451e9fe1 -2022,Misiones,II.1.1,37.275839999999995,TJ,N2O,3.9,kg/TJ,145.37577599999997,Gas Oil combustion consumption by public passenger transport,AR-N,SESCO,annual,kg,bc68b6fa-ab19-35f6-b7d8-2e19451e9fe1 -2022,Neuquén,II.1.1,14.484119999999999,TJ,CO2,74100.0,kg/TJ,1073273.292,Gas Oil combustion consumption by public passenger transport,AR-Q,SESCO,annual,kg,d7a8d07c-303e-3a04-9027-b92d63a98c9f -2022,Neuquén,II.1.1,14.484119999999999,TJ,CH4,3.9,kg/TJ,56.48806799999999,Gas Oil combustion consumption by public passenger transport,AR-Q,SESCO,annual,kg,a03d76e6-7f28-3eef-9783-52b7a708a1d5 -2022,Neuquén,II.1.1,14.484119999999999,TJ,N2O,3.9,kg/TJ,56.48806799999999,Gas Oil combustion consumption by public passenger transport,AR-Q,SESCO,annual,kg,a03d76e6-7f28-3eef-9783-52b7a708a1d5 -2022,Rio Negro,II.1.1,127.35911999999999,TJ,CO2,74100.0,kg/TJ,9437310.792,Gas Oil combustion consumption by public passenger transport,AR-R,SESCO,annual,kg,7faa27e9-0bcb-304c-b656-ccba0db0fbb2 -2022,Rio Negro,II.1.1,127.35911999999999,TJ,CH4,3.9,kg/TJ,496.700568,Gas Oil combustion consumption by public passenger transport,AR-R,SESCO,annual,kg,7b34b222-6d7d-373b-96b1-b4353e4e3fa2 -2022,Rio Negro,II.1.1,127.35911999999999,TJ,N2O,3.9,kg/TJ,496.700568,Gas Oil combustion consumption by public passenger transport,AR-R,SESCO,annual,kg,7b34b222-6d7d-373b-96b1-b4353e4e3fa2 -2022,Salta,II.1.1,186.12636,TJ,CO2,74100.0,kg/TJ,13791963.276,Gas Oil combustion consumption by public passenger transport,AR-A,SESCO,annual,kg,ea339239-5f69-39a6-ae39-06cb7c32fac3 -2022,Salta,II.1.1,186.12636,TJ,CH4,3.9,kg/TJ,725.892804,Gas Oil combustion consumption by public passenger transport,AR-A,SESCO,annual,kg,e7567bfc-e4f5-3baf-9270-fc926c40073f -2022,Salta,II.1.1,186.12636,TJ,N2O,3.9,kg/TJ,725.892804,Gas Oil combustion consumption by public passenger transport,AR-A,SESCO,annual,kg,e7567bfc-e4f5-3baf-9270-fc926c40073f -2022,San Juan,II.1.1,42.9828,TJ,CO2,74100.0,kg/TJ,3185025.48,Gas Oil combustion consumption by public passenger transport,AR-J,SESCO,annual,kg,aa42dc5a-9baf-3ce7-ab4a-37a64c724f0c -2022,San Juan,II.1.1,42.9828,TJ,CH4,3.9,kg/TJ,167.63291999999998,Gas Oil combustion consumption by public passenger transport,AR-J,SESCO,annual,kg,ac5ceab3-4a0d-3643-b1e9-f4032315f10c -2022,San Juan,II.1.1,42.9828,TJ,N2O,3.9,kg/TJ,167.63291999999998,Gas Oil combustion consumption by public passenger transport,AR-J,SESCO,annual,kg,ac5ceab3-4a0d-3643-b1e9-f4032315f10c -2022,Santa Fe,II.1.1,179.8776,TJ,CO2,74100.0,kg/TJ,13328930.16,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,44d03ff7-a981-3357-9bc0-20b3f6a89432 -2022,Santa Fe,II.1.1,179.8776,TJ,CH4,3.9,kg/TJ,701.52264,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,3fe576ad-9f08-3558-8de0-6116ab098092 -2022,Santa Fe,II.1.1,179.8776,TJ,N2O,3.9,kg/TJ,701.52264,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,3fe576ad-9f08-3558-8de0-6116ab098092 -2022,Tucuman,II.1.1,3.1424399999999997,TJ,CO2,74100.0,kg/TJ,232854.80399999997,Gas Oil combustion consumption by public passenger transport,AR-T,SESCO,annual,kg,fa11db55-c33a-31e1-ab81-756110de4814 -2022,Tucuman,II.1.1,3.1424399999999997,TJ,CH4,3.9,kg/TJ,12.255515999999998,Gas Oil combustion consumption by public passenger transport,AR-T,SESCO,annual,kg,e7f09f8e-8052-3c36-878d-69f0aa7aeec6 -2022,Tucuman,II.1.1,3.1424399999999997,TJ,N2O,3.9,kg/TJ,12.255515999999998,Gas Oil combustion consumption by public passenger transport,AR-T,SESCO,annual,kg,e7f09f8e-8052-3c36-878d-69f0aa7aeec6 -2023,Buenos Aires,II.5.1,577.2698399999999,TJ,CO2,74100.0,kg/TJ,42775695.143999994,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,bb4f7b3d-b6f7-345d-8664-1361e27c6d2f -2023,Buenos Aires,II.5.1,577.2698399999999,TJ,CH4,3.9,kg/TJ,2251.352376,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,6c27e58f-e77e-32fe-8a67-f01a432dab2f -2023,Buenos Aires,II.5.1,577.2698399999999,TJ,N2O,3.9,kg/TJ,2251.352376,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,6c27e58f-e77e-32fe-8a67-f01a432dab2f -2023,Córdoba,II.5.1,178.79399999999998,TJ,CO2,74100.0,kg/TJ,13248635.399999999,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,44fc060d-9299-3f64-a073-12e28bbebc95 -2023,Córdoba,II.5.1,178.79399999999998,TJ,CH4,3.9,kg/TJ,697.2965999999999,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,987a825a-61f2-348f-bb1f-2f6b2987caab -2023,Córdoba,II.5.1,178.79399999999998,TJ,N2O,3.9,kg/TJ,697.2965999999999,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,987a825a-61f2-348f-bb1f-2f6b2987caab -2023,Entre Rios,II.5.1,13.83396,TJ,CO2,74100.0,kg/TJ,1025096.436,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,b1e3fe98-e938-3fc9-be0e-77e810876626 -2023,Entre Rios,II.5.1,13.83396,TJ,CH4,3.9,kg/TJ,53.952444,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,d9984e00-ee47-3fe0-86a9-c4c62bafc226 -2023,Entre Rios,II.5.1,13.83396,TJ,N2O,3.9,kg/TJ,53.952444,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,d9984e00-ee47-3fe0-86a9-c4c62bafc226 -2023,La Pampa,II.5.1,32.182919999999996,TJ,CO2,74100.0,kg/TJ,2384754.3719999995,Gas Oil combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,f54aebc2-f68f-3116-9bfc-a4b338c4a374 -2023,La Pampa,II.5.1,32.182919999999996,TJ,CH4,3.9,kg/TJ,125.51338799999998,Gas Oil combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,eda36320-fb2e-37a0-842b-7a4b86655cf6 -2023,La Pampa,II.5.1,32.182919999999996,TJ,N2O,3.9,kg/TJ,125.51338799999998,Gas Oil combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,eda36320-fb2e-37a0-842b-7a4b86655cf6 -2023,Santa Fe,II.5.1,159.75876,TJ,CO2,74100.0,kg/TJ,11838124.116,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,91d33ec7-e4e7-39d6-b1a3-4237435e3bad -2023,Santa Fe,II.5.1,159.75876,TJ,CH4,3.9,kg/TJ,623.059164,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,f87c6e4d-76f8-3715-84cf-85e43e8ef8c1 -2023,Santa Fe,II.5.1,159.75876,TJ,N2O,3.9,kg/TJ,623.059164,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,f87c6e4d-76f8-3715-84cf-85e43e8ef8c1 -2023,Tucuman,II.5.1,38.829,TJ,CO2,74100.0,kg/TJ,2877228.9,Gas Oil combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,8612a688-909d-3051-8aa0-b9495ffe6999 -2023,Tucuman,II.5.1,38.829,TJ,CH4,3.9,kg/TJ,151.4331,Gas Oil combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,ee7e4276-9b8c-36b4-88c0-55e855a0a264 -2023,Tucuman,II.5.1,38.829,TJ,N2O,3.9,kg/TJ,151.4331,Gas Oil combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,ee7e4276-9b8c-36b4-88c0-55e855a0a264 -2023,Buenos Aires,II.5.1,16.65132,TJ,CO2,74100.0,kg/TJ,1233862.812,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,f0686159-aa99-30e5-af6d-03b618056d27 -2023,Buenos Aires,II.5.1,16.65132,TJ,CH4,3.9,kg/TJ,64.940148,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,86fde6ac-3cd1-3fc5-9db0-f7e43da36df6 -2023,Buenos Aires,II.5.1,16.65132,TJ,N2O,3.9,kg/TJ,64.940148,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,86fde6ac-3cd1-3fc5-9db0-f7e43da36df6 -2023,Córdoba,II.5.1,11.233319999999999,TJ,CO2,74100.0,kg/TJ,832389.012,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,a2c90a56-ac7b-3db0-b5b2-a9149a1bff47 -2023,Córdoba,II.5.1,11.233319999999999,TJ,CH4,3.9,kg/TJ,43.809948,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,4b159f5d-3b8a-32b5-8aff-5f713b6bf6d4 -2023,Córdoba,II.5.1,11.233319999999999,TJ,N2O,3.9,kg/TJ,43.809948,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,4b159f5d-3b8a-32b5-8aff-5f713b6bf6d4 -2023,Santa Fe,II.5.1,11.48616,TJ,CO2,74100.0,kg/TJ,851124.456,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,fbe8f7dc-39bf-3e2c-8af3-d953dd895aa2 -2023,Santa Fe,II.5.1,11.48616,TJ,CH4,3.9,kg/TJ,44.796023999999996,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,a6fc9a68-e6bd-3eac-b635-3c49294e8684 -2023,Santa Fe,II.5.1,11.48616,TJ,N2O,3.9,kg/TJ,44.796023999999996,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,a6fc9a68-e6bd-3eac-b635-3c49294e8684 -2023,Tucuman,II.5.1,1.0836,TJ,CO2,74100.0,kg/TJ,80294.76,Gas Oil combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,fb074a7c-1256-3b58-a014-bb09195b4b7f -2023,Tucuman,II.5.1,1.0836,TJ,CH4,3.9,kg/TJ,4.226039999999999,Gas Oil combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,f8795533-a017-3628-bdb7-6e8d627d92ce -2023,Tucuman,II.5.1,1.0836,TJ,N2O,3.9,kg/TJ,4.226039999999999,Gas Oil combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,f8795533-a017-3628-bdb7-6e8d627d92ce -2023,Buenos Aires,II.5.1,37.999885,TJ,CO2,73300.0,kg/TJ,2785391.5705,Naphtha combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,b1952401-23a5-320e-a48b-f9802afaa7f6 -2023,Buenos Aires,II.5.1,37.999885,TJ,CH4,0.5,kg/TJ,18.9999425,Naphtha combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,56d9cb88-a917-3c89-90a2-7e05b6b3549e -2023,Buenos Aires,II.5.1,37.999885,TJ,N2O,2.0,kg/TJ,75.99977,Naphtha combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,ae9144ef-1145-3f22-9e6a-1be219bf66bd -2023,Córdoba,II.5.1,15.384984999999999,TJ,CO2,73300.0,kg/TJ,1127719.4005,Naphtha combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,af6f3b49-d2a5-33b1-9b02-b26fc8b17e2e -2023,Córdoba,II.5.1,15.384984999999999,TJ,CH4,0.5,kg/TJ,7.692492499999999,Naphtha combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,a7c3f900-8203-372e-ab3b-8a53ccc77971 -2023,Córdoba,II.5.1,15.384984999999999,TJ,N2O,2.0,kg/TJ,30.769969999999997,Naphtha combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,66f6fa93-3422-3c53-8959-7842519043f5 -2023,Tucuman,II.5.1,8.36066,TJ,CO2,73300.0,kg/TJ,612836.3779999999,Naphtha combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,04ada32f-86cc-366b-bb9c-52606d944188 -2023,Tucuman,II.5.1,8.36066,TJ,CH4,0.5,kg/TJ,4.18033,Naphtha combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,cf8dfd3c-eed2-3a40-b29e-be3a4526e864 -2023,Tucuman,II.5.1,8.36066,TJ,N2O,2.0,kg/TJ,16.72132,Naphtha combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,2d54f12e-2e54-3ef1-ab77-495a6ca0d6a8 -2023,Buenos Aires,II.5.1,4.899895,TJ,CO2,73300.0,kg/TJ,359162.3035,Naphtha combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,6b0e4006-cd5f-371d-8eed-00e096506b02 -2023,Buenos Aires,II.5.1,4.899895,TJ,CH4,0.5,kg/TJ,2.4499475,Naphtha combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,8502c0ff-0e9c-3c19-9e99-bcc4a12f95a3 -2023,Buenos Aires,II.5.1,4.899895,TJ,N2O,2.0,kg/TJ,9.79979,Naphtha combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,3645e16e-9d7b-31a3-baf2-410478e15d20 -2023,Córdoba,II.5.1,1.610455,TJ,CO2,73300.0,kg/TJ,118046.3515,Naphtha combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,1f8575c3-7cde-3dfe-ab6c-8681196ae6a4 -2023,Córdoba,II.5.1,1.610455,TJ,CH4,0.5,kg/TJ,0.8052275,Naphtha combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,fa1d93f2-b1a0-3bbb-9599-e1d3ef43ef96 -2023,Córdoba,II.5.1,1.610455,TJ,N2O,2.0,kg/TJ,3.22091,Naphtha combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,92c09eb6-7dce-30e5-8bde-b793c576dd66 -2023,Tucuman,II.5.1,0.20559,TJ,CO2,73300.0,kg/TJ,15069.747,Naphtha combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,be6a13d6-5570-3d94-b66a-85f07c6abf23 -2023,Tucuman,II.5.1,0.20559,TJ,CH4,0.5,kg/TJ,0.102795,Naphtha combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,55cd262f-1399-3409-a00b-77600616f5b2 -2023,Tucuman,II.5.1,0.20559,TJ,N2O,2.0,kg/TJ,0.41118,Naphtha combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,391d80c0-3803-3688-b68e-2ad29c716cf6 -2023,Buenos Aires,II.5.1,322.371,TJ,CO2,74100.0,kg/TJ,23887691.099999998,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,a41821f7-47c7-3613-9431-2a46bc8cebeb -2023,Buenos Aires,II.5.1,322.371,TJ,CH4,3.9,kg/TJ,1257.2468999999999,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,8a9c6b15-e9b0-3f47-9307-e5f2983fa763 -2023,Buenos Aires,II.5.1,322.371,TJ,N2O,3.9,kg/TJ,1257.2468999999999,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,8a9c6b15-e9b0-3f47-9307-e5f2983fa763 -2023,Capital Federal,II.5.1,10.79988,TJ,CO2,74100.0,kg/TJ,800271.108,Gas Oil combustion consumption by agriculture machines,AR-C,SESCO,annual,kg,858aa847-4b4a-31d9-8504-9258801fec82 -2023,Capital Federal,II.5.1,10.79988,TJ,CH4,3.9,kg/TJ,42.119532,Gas Oil combustion consumption by agriculture machines,AR-C,SESCO,annual,kg,738fe312-ef4a-311e-bbd9-0a084fb0d68c -2023,Capital Federal,II.5.1,10.79988,TJ,N2O,3.9,kg/TJ,42.119532,Gas Oil combustion consumption by agriculture machines,AR-C,SESCO,annual,kg,738fe312-ef4a-311e-bbd9-0a084fb0d68c -2023,Córdoba,II.5.1,280.97748,TJ,CO2,74100.0,kg/TJ,20820431.268,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,1e7c21c2-fdb3-367a-b14b-52bc307cd96a -2023,Córdoba,II.5.1,280.97748,TJ,CH4,3.9,kg/TJ,1095.812172,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,00fbc132-5d65-3760-85ea-e9f24c0cbe26 -2023,Córdoba,II.5.1,280.97748,TJ,N2O,3.9,kg/TJ,1095.812172,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,00fbc132-5d65-3760-85ea-e9f24c0cbe26 -2023,Entre Rios,II.5.1,273.57288,TJ,CO2,74100.0,kg/TJ,20271750.408,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,b52cdbeb-fdd0-3b0b-b741-0ca87a0f1744 -2023,Entre Rios,II.5.1,273.57288,TJ,CH4,3.9,kg/TJ,1066.934232,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,8b0ddd79-1040-39b9-a190-bf1c8ded32d8 -2023,Entre Rios,II.5.1,273.57288,TJ,N2O,3.9,kg/TJ,1066.934232,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,8b0ddd79-1040-39b9-a190-bf1c8ded32d8 -2023,Santa Fe,II.5.1,149.60904,TJ,CO2,74100.0,kg/TJ,11086029.864,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,01874680-a7d9-3c67-9e2c-123532c8ac78 -2023,Santa Fe,II.5.1,149.60904,TJ,CH4,3.9,kg/TJ,583.475256,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,17fc1cf1-c93a-31cc-b096-6d372aed1e56 -2023,Santa Fe,II.5.1,149.60904,TJ,N2O,3.9,kg/TJ,583.475256,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,17fc1cf1-c93a-31cc-b096-6d372aed1e56 -2023,Buenos Aires,II.5.1,23.116799999999998,TJ,CO2,74100.0,kg/TJ,1712954.88,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,bfa7d535-0860-3621-9acd-337d88d181ea -2023,Buenos Aires,II.5.1,23.116799999999998,TJ,CH4,3.9,kg/TJ,90.15552,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,361c9d66-3174-3dfb-8be8-e5a325b5021e -2023,Buenos Aires,II.5.1,23.116799999999998,TJ,N2O,3.9,kg/TJ,90.15552,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,361c9d66-3174-3dfb-8be8-e5a325b5021e -2023,Capital Federal,II.5.1,0.32508,TJ,CO2,74100.0,kg/TJ,24088.428,Gas Oil combustion consumption by agriculture machines,AR-C,SESCO,annual,kg,c6ddacfc-b433-34d3-9e3b-2cb8710446be -2023,Capital Federal,II.5.1,0.32508,TJ,CH4,3.9,kg/TJ,1.267812,Gas Oil combustion consumption by agriculture machines,AR-C,SESCO,annual,kg,04990360-e105-3789-8554-9d1a6c508756 -2023,Capital Federal,II.5.1,0.32508,TJ,N2O,3.9,kg/TJ,1.267812,Gas Oil combustion consumption by agriculture machines,AR-C,SESCO,annual,kg,04990360-e105-3789-8554-9d1a6c508756 -2023,Córdoba,II.5.1,16.976399999999998,TJ,CO2,74100.0,kg/TJ,1257951.2399999998,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,70070a3b-ccda-39a9-a66d-3e898a81871e -2023,Córdoba,II.5.1,16.976399999999998,TJ,CH4,3.9,kg/TJ,66.20795999999999,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,c3ec5096-5322-3ca8-a235-83968d79c335 -2023,Córdoba,II.5.1,16.976399999999998,TJ,N2O,3.9,kg/TJ,66.20795999999999,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,c3ec5096-5322-3ca8-a235-83968d79c335 -2023,Entre Rios,II.5.1,7.29624,TJ,CO2,74100.0,kg/TJ,540651.384,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,f5401885-e321-391f-a795-3856dfaa929f -2023,Entre Rios,II.5.1,7.29624,TJ,CH4,3.9,kg/TJ,28.455336,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,294c922a-22aa-344e-a299-53694513973d -2023,Entre Rios,II.5.1,7.29624,TJ,N2O,3.9,kg/TJ,28.455336,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,294c922a-22aa-344e-a299-53694513973d -2023,Santa Fe,II.5.1,7.62132,TJ,CO2,74100.0,kg/TJ,564739.812,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,b5c86a9c-a11f-3085-b44f-3b1f34a0518e -2023,Santa Fe,II.5.1,7.62132,TJ,CH4,3.9,kg/TJ,29.723148,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,295fa484-2599-3e3d-b430-9e3ce82c46dc -2023,Santa Fe,II.5.1,7.62132,TJ,N2O,3.9,kg/TJ,29.723148,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,295fa484-2599-3e3d-b430-9e3ce82c46dc -2023,Buenos Aires,II.5.1,6.955794999999999,TJ,CO2,73300.0,kg/TJ,509859.77349999995,Naphtha combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,6c445695-2f88-396f-abe1-fdc5c764e6aa -2023,Buenos Aires,II.5.1,6.955794999999999,TJ,CH4,0.5,kg/TJ,3.4778974999999996,Naphtha combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,75764012-85dc-32f5-a464-bee2704a636c -2023,Buenos Aires,II.5.1,6.955794999999999,TJ,N2O,2.0,kg/TJ,13.911589999999999,Naphtha combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,0bf971b7-bf72-3e55-a694-651cb6f3da6b -2023,Capital Federal,II.5.1,2.6726699999999997,TJ,CO2,73300.0,kg/TJ,195906.71099999998,Naphtha combustion consumption by agriculture machines,AR-C,SESCO,annual,kg,d4485738-5ec9-3d71-bcb4-a52b64faeca2 -2023,Capital Federal,II.5.1,2.6726699999999997,TJ,CH4,0.5,kg/TJ,1.3363349999999998,Naphtha combustion consumption by agriculture machines,AR-C,SESCO,annual,kg,2adb6075-7f18-3a5a-8374-1064e91e7352 -2023,Capital Federal,II.5.1,2.6726699999999997,TJ,N2O,2.0,kg/TJ,5.345339999999999,Naphtha combustion consumption by agriculture machines,AR-C,SESCO,annual,kg,a50aaf9e-da0d-3b13-acc7-217df7ad82d9 -2023,Córdoba,II.5.1,45.812304999999995,TJ,CO2,73300.0,kg/TJ,3358041.9565,Naphtha combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,804700b6-35b0-3fd3-ae69-5f6d5737b1e4 -2023,Córdoba,II.5.1,45.812304999999995,TJ,CH4,0.5,kg/TJ,22.906152499999997,Naphtha combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,1f670545-baad-3e31-9c1f-6abc21d9c5a5 -2023,Córdoba,II.5.1,45.812304999999995,TJ,N2O,2.0,kg/TJ,91.62460999999999,Naphtha combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,4cad5336-55d5-3535-9e51-9e3b863a1586 -2023,Santa Fe,II.5.1,23.779909999999997,TJ,CO2,73300.0,kg/TJ,1743067.4029999997,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,e76e4c32-b5f2-36ef-8a9c-b38b016255a5 -2023,Santa Fe,II.5.1,23.779909999999997,TJ,CH4,0.5,kg/TJ,11.889954999999999,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,aeeff82c-9021-30c1-98bb-193b9ac60265 -2023,Santa Fe,II.5.1,23.779909999999997,TJ,N2O,2.0,kg/TJ,47.559819999999995,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,58a18cf2-3f77-35c6-ba92-4a28d54d068b -2023,Buenos Aires,II.5.1,0.925155,TJ,CO2,73300.0,kg/TJ,67813.8615,Naphtha combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,6cecb4f2-2a85-33a7-9f93-8446725a7db7 -2023,Buenos Aires,II.5.1,0.925155,TJ,CH4,0.5,kg/TJ,0.4625775,Naphtha combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,def39c1c-e637-37c0-a22f-4bf6e2d623b3 -2023,Buenos Aires,II.5.1,0.925155,TJ,N2O,2.0,kg/TJ,1.85031,Naphtha combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,8d4bdfc6-2cf5-31ad-81ce-24292f4fabd5 -2023,Córdoba,II.5.1,2.3985499999999997,TJ,CO2,73300.0,kg/TJ,175813.71499999997,Naphtha combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,191f5f1f-3287-313b-a0ba-a40fef2557a0 -2023,Córdoba,II.5.1,2.3985499999999997,TJ,CH4,0.5,kg/TJ,1.1992749999999999,Naphtha combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,288dd4a1-7563-3860-862c-c23a82f07290 -2023,Córdoba,II.5.1,2.3985499999999997,TJ,N2O,2.0,kg/TJ,4.7970999999999995,Naphtha combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,3ee01da7-1423-315c-916c-af55ef6e94fa -2023,Santa Fe,II.5.1,1.404865,TJ,CO2,73300.0,kg/TJ,102976.6045,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,d84b363f-aec7-3cdc-a2e5-6d143ea08f12 -2023,Santa Fe,II.5.1,1.404865,TJ,CH4,0.5,kg/TJ,0.7024325,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,4bbac3ac-56f2-3f95-9e7b-a5d132114459 -2023,Santa Fe,II.5.1,1.404865,TJ,N2O,2.0,kg/TJ,2.80973,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,470bed0f-91f6-34af-888b-78f46923ff03 -2023,Chubut,II.1.1,1.30032,TJ,CO2,74100.0,kg/TJ,96353.712,Gas Oil combustion consumption by freight transport,AR-U,SESCO,annual,kg,cdbce76a-a4ef-3931-8a06-0f5ab4ef3a2a -2023,Chubut,II.1.1,1.30032,TJ,CH4,3.9,kg/TJ,5.071248,Gas Oil combustion consumption by freight transport,AR-U,SESCO,annual,kg,cee77155-31ff-3069-b2d5-0e6b8fdbe793 -2023,Chubut,II.1.1,1.30032,TJ,N2O,3.9,kg/TJ,5.071248,Gas Oil combustion consumption by freight transport,AR-U,SESCO,annual,kg,cee77155-31ff-3069-b2d5-0e6b8fdbe793 -2023,Buenos Aires,II.5.1,4776.47268,TJ,CO2,74100.0,kg/TJ,353936625.588,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,9a7b8166-0f7e-3d60-81dc-77364783cb4e -2023,Buenos Aires,II.5.1,4776.47268,TJ,CH4,3.9,kg/TJ,18628.243452,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,b65bb6c6-13ac-3cf1-99fe-29ae57db7f9d -2023,Buenos Aires,II.5.1,4776.47268,TJ,N2O,3.9,kg/TJ,18628.243452,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,b65bb6c6-13ac-3cf1-99fe-29ae57db7f9d -2023,Catamarca,II.5.1,289.17672,TJ,CO2,74100.0,kg/TJ,21427994.952,Gas Oil combustion consumption by agriculture machines,AR-K,SESCO,annual,kg,9127eadc-f6f7-32b5-bc2b-e530d6d7acb0 -2023,Catamarca,II.5.1,289.17672,TJ,CH4,3.9,kg/TJ,1127.789208,Gas Oil combustion consumption by agriculture machines,AR-K,SESCO,annual,kg,c64ae42f-e151-3f70-8e08-fbef0377797a -2023,Catamarca,II.5.1,289.17672,TJ,N2O,3.9,kg/TJ,1127.789208,Gas Oil combustion consumption by agriculture machines,AR-K,SESCO,annual,kg,c64ae42f-e151-3f70-8e08-fbef0377797a -2023,Chaco,II.5.1,568.02312,TJ,CO2,74100.0,kg/TJ,42090513.191999994,Gas Oil combustion consumption by agriculture machines,AR-H,SESCO,annual,kg,541fb8fa-a205-3b39-a812-3dd982ae4a45 -2023,Chaco,II.5.1,568.02312,TJ,CH4,3.9,kg/TJ,2215.2901679999995,Gas Oil combustion consumption by agriculture machines,AR-H,SESCO,annual,kg,5db92c32-9ec4-32f6-bdb8-6756d2e6d5c7 -2023,Chaco,II.5.1,568.02312,TJ,N2O,3.9,kg/TJ,2215.2901679999995,Gas Oil combustion consumption by agriculture machines,AR-H,SESCO,annual,kg,5db92c32-9ec4-32f6-bdb8-6756d2e6d5c7 -2023,Corrientes,II.5.1,880.35276,TJ,CO2,74100.0,kg/TJ,65234139.516,Gas Oil combustion consumption by agriculture machines,AR-W,SESCO,annual,kg,16c7ab5b-4bc1-3bb5-b03b-a92323d9c00e -2023,Corrientes,II.5.1,880.35276,TJ,CH4,3.9,kg/TJ,3433.375764,Gas Oil combustion consumption by agriculture machines,AR-W,SESCO,annual,kg,97f3bb6c-ab59-3f29-920e-512e381158fe -2023,Corrientes,II.5.1,880.35276,TJ,N2O,3.9,kg/TJ,3433.375764,Gas Oil combustion consumption by agriculture machines,AR-W,SESCO,annual,kg,97f3bb6c-ab59-3f29-920e-512e381158fe -2023,Córdoba,II.5.1,2496.72276,TJ,CO2,74100.0,kg/TJ,185007156.516,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,c5f71b9b-0ff8-3f45-93a3-579bbe88c251 -2023,Córdoba,II.5.1,2496.72276,TJ,CH4,3.9,kg/TJ,9737.218764000001,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,cdec1da2-b2a1-3431-9e28-36647baaa00c -2023,Córdoba,II.5.1,2496.72276,TJ,N2O,3.9,kg/TJ,9737.218764000001,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,cdec1da2-b2a1-3431-9e28-36647baaa00c -2023,Entre Rios,II.5.1,719.76324,TJ,CO2,74100.0,kg/TJ,53334456.084,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,b4725c0a-e8db-395a-a98b-df3aca3a6504 -2023,Entre Rios,II.5.1,719.76324,TJ,CH4,3.9,kg/TJ,2807.076636,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,b88c955a-fc53-32f4-bc57-43a2ca411a8a -2023,Entre Rios,II.5.1,719.76324,TJ,N2O,3.9,kg/TJ,2807.076636,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,b88c955a-fc53-32f4-bc57-43a2ca411a8a -2023,Jujuy,II.5.1,115.83684,TJ,CO2,74100.0,kg/TJ,8583509.844,Gas Oil combustion consumption by agriculture machines,AR-Y,SESCO,annual,kg,5f075a92-ebb4-3247-8216-fdb8aff641a4 -2023,Jujuy,II.5.1,115.83684,TJ,CH4,3.9,kg/TJ,451.763676,Gas Oil combustion consumption by agriculture machines,AR-Y,SESCO,annual,kg,e051d5c1-1bb5-3176-8369-a1e3e8007411 -2023,Jujuy,II.5.1,115.83684,TJ,N2O,3.9,kg/TJ,451.763676,Gas Oil combustion consumption by agriculture machines,AR-Y,SESCO,annual,kg,e051d5c1-1bb5-3176-8369-a1e3e8007411 -2023,La Pampa,II.5.1,245.86883999999998,TJ,CO2,74100.0,kg/TJ,18218881.044,Gas Oil combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,10cae01b-45e8-3d3d-adb1-2b07042b00a6 -2023,La Pampa,II.5.1,245.86883999999998,TJ,CH4,3.9,kg/TJ,958.8884759999999,Gas Oil combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,e4ae9fbd-397d-3755-a0c2-b9f7000eb041 -2023,La Pampa,II.5.1,245.86883999999998,TJ,N2O,3.9,kg/TJ,958.8884759999999,Gas Oil combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,e4ae9fbd-397d-3755-a0c2-b9f7000eb041 -2023,Mendoza,II.5.1,356.39603999999997,TJ,CO2,74100.0,kg/TJ,26408946.564,Gas Oil combustion consumption by agriculture machines,AR-M,SESCO,annual,kg,3b187e17-1f55-3ed3-9695-dedcb63c59eb -2023,Mendoza,II.5.1,356.39603999999997,TJ,CH4,3.9,kg/TJ,1389.944556,Gas Oil combustion consumption by agriculture machines,AR-M,SESCO,annual,kg,e438bbd9-212f-3bff-b874-5d30ede5d5a9 -2023,Mendoza,II.5.1,356.39603999999997,TJ,N2O,3.9,kg/TJ,1389.944556,Gas Oil combustion consumption by agriculture machines,AR-M,SESCO,annual,kg,e438bbd9-212f-3bff-b874-5d30ede5d5a9 -2023,Misiones,II.5.1,148.38096,TJ,CO2,74100.0,kg/TJ,10995029.136,Gas Oil combustion consumption by agriculture machines,AR-N,SESCO,annual,kg,23c57ab3-4248-3deb-adda-1ae5a0885f1e -2023,Misiones,II.5.1,148.38096,TJ,CH4,3.9,kg/TJ,578.6857439999999,Gas Oil combustion consumption by agriculture machines,AR-N,SESCO,annual,kg,2859e1bf-63ee-3134-83bc-194003fcb5c6 -2023,Misiones,II.5.1,148.38096,TJ,N2O,3.9,kg/TJ,578.6857439999999,Gas Oil combustion consumption by agriculture machines,AR-N,SESCO,annual,kg,2859e1bf-63ee-3134-83bc-194003fcb5c6 -2023,Neuquén,II.5.1,397.89792,TJ,CO2,74100.0,kg/TJ,29484235.872,Gas Oil combustion consumption by agriculture machines,AR-Q,SESCO,annual,kg,7fa3a05e-fbdb-3e2a-b25b-a7ecd371c83c -2023,Neuquén,II.5.1,397.89792,TJ,CH4,3.9,kg/TJ,1551.801888,Gas Oil combustion consumption by agriculture machines,AR-Q,SESCO,annual,kg,efd5cf47-4123-3080-a8d3-7f303a90117f -2023,Neuquén,II.5.1,397.89792,TJ,N2O,3.9,kg/TJ,1551.801888,Gas Oil combustion consumption by agriculture machines,AR-Q,SESCO,annual,kg,efd5cf47-4123-3080-a8d3-7f303a90117f -2023,Salta,II.5.1,392.55215999999996,TJ,CO2,74100.0,kg/TJ,29088115.055999998,Gas Oil combustion consumption by agriculture machines,AR-A,SESCO,annual,kg,25247c09-6edc-3088-a3bb-fe67c2fb9d32 -2023,Salta,II.5.1,392.55215999999996,TJ,CH4,3.9,kg/TJ,1530.9534239999998,Gas Oil combustion consumption by agriculture machines,AR-A,SESCO,annual,kg,622636f1-0ab3-3b17-95cf-074a2d5e5d1e -2023,Salta,II.5.1,392.55215999999996,TJ,N2O,3.9,kg/TJ,1530.9534239999998,Gas Oil combustion consumption by agriculture machines,AR-A,SESCO,annual,kg,622636f1-0ab3-3b17-95cf-074a2d5e5d1e -2023,San Juan,II.5.1,187.17383999999998,TJ,CO2,74100.0,kg/TJ,13869581.544,Gas Oil combustion consumption by agriculture machines,AR-J,SESCO,annual,kg,5cb8c995-647e-3b8f-a949-ce52fb6110ae -2023,San Juan,II.5.1,187.17383999999998,TJ,CH4,3.9,kg/TJ,729.9779759999999,Gas Oil combustion consumption by agriculture machines,AR-J,SESCO,annual,kg,d2415e25-f41e-3dcc-87a9-b851f5c62ed3 -2023,San Juan,II.5.1,187.17383999999998,TJ,N2O,3.9,kg/TJ,729.9779759999999,Gas Oil combustion consumption by agriculture machines,AR-J,SESCO,annual,kg,d2415e25-f41e-3dcc-87a9-b851f5c62ed3 -2023,San Luis,II.5.1,348.77472,TJ,CO2,74100.0,kg/TJ,25844206.752,Gas Oil combustion consumption by agriculture machines,AR-D,SESCO,annual,kg,e1d82d4d-5c8f-32ae-9f91-f6db2991f5df -2023,San Luis,II.5.1,348.77472,TJ,CH4,3.9,kg/TJ,1360.2214079999999,Gas Oil combustion consumption by agriculture machines,AR-D,SESCO,annual,kg,289f48eb-ab0c-30e1-9d58-7cd252c0757a -2023,San Luis,II.5.1,348.77472,TJ,N2O,3.9,kg/TJ,1360.2214079999999,Gas Oil combustion consumption by agriculture machines,AR-D,SESCO,annual,kg,289f48eb-ab0c-30e1-9d58-7cd252c0757a -2023,Santa Cruz,II.5.1,159.54204,TJ,CO2,74100.0,kg/TJ,11822065.163999999,Gas Oil combustion consumption by agriculture machines,AR-Z,SESCO,annual,kg,ebe95db2-7110-301d-bdad-5ae3ecb4bde9 -2023,Santa Cruz,II.5.1,159.54204,TJ,CH4,3.9,kg/TJ,622.2139559999999,Gas Oil combustion consumption by agriculture machines,AR-Z,SESCO,annual,kg,cdf0721b-63ba-3220-93f8-98215b62a841 -2023,Santa Cruz,II.5.1,159.54204,TJ,N2O,3.9,kg/TJ,622.2139559999999,Gas Oil combustion consumption by agriculture machines,AR-Z,SESCO,annual,kg,cdf0721b-63ba-3220-93f8-98215b62a841 -2023,Santa Fe,II.5.1,4504.5252,TJ,CO2,74100.0,kg/TJ,333785317.32,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,75028960-7318-34ca-9d6a-724ef704b5cc -2023,Santa Fe,II.5.1,4504.5252,TJ,CH4,3.9,kg/TJ,17567.64828,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,269bb254-fbbd-3d39-b1cd-b98a3aadd0eb -2023,Santa Fe,II.5.1,4504.5252,TJ,N2O,3.9,kg/TJ,17567.64828,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,269bb254-fbbd-3d39-b1cd-b98a3aadd0eb -2023,Santiago del Estero,II.5.1,536.34588,TJ,CO2,74100.0,kg/TJ,39743229.708,Gas Oil combustion consumption by agriculture machines,AR-G,SESCO,annual,kg,d3fa7323-3cbf-337f-8760-7822e2f391ab -2023,Santiago del Estero,II.5.1,536.34588,TJ,CH4,3.9,kg/TJ,2091.748932,Gas Oil combustion consumption by agriculture machines,AR-G,SESCO,annual,kg,d4da0f85-64e4-360f-9ca7-e3c5fbbb86a3 -2023,Santiago del Estero,II.5.1,536.34588,TJ,N2O,3.9,kg/TJ,2091.748932,Gas Oil combustion consumption by agriculture machines,AR-G,SESCO,annual,kg,d4da0f85-64e4-360f-9ca7-e3c5fbbb86a3 -2023,Tucuman,II.5.1,234.05759999999998,TJ,CO2,74100.0,kg/TJ,17343668.16,Gas Oil combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,502f2253-da4e-3956-8b56-cf8dafd68f5f -2023,Tucuman,II.5.1,234.05759999999998,TJ,CH4,3.9,kg/TJ,912.8246399999999,Gas Oil combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,27892663-16fd-3e8c-861c-7a339a200868 -2023,Tucuman,II.5.1,234.05759999999998,TJ,N2O,3.9,kg/TJ,912.8246399999999,Gas Oil combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,27892663-16fd-3e8c-861c-7a339a200868 -2023,Buenos Aires,II.5.1,396.92267999999996,TJ,CO2,74100.0,kg/TJ,29411970.587999996,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,9c770b5b-41d6-36b0-927d-4c8ed4c1f95e -2023,Buenos Aires,II.5.1,396.92267999999996,TJ,CH4,3.9,kg/TJ,1547.9984519999998,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,b1c4ac15-6393-39bc-af06-4755085ec41b -2023,Buenos Aires,II.5.1,396.92267999999996,TJ,N2O,3.9,kg/TJ,1547.9984519999998,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,b1c4ac15-6393-39bc-af06-4755085ec41b -2023,Catamarca,II.5.1,63.354479999999995,TJ,CO2,74100.0,kg/TJ,4694566.967999999,Gas Oil combustion consumption by agriculture machines,AR-K,SESCO,annual,kg,6832d6c0-2758-3bb2-81aa-45c30e14bf7a -2023,Catamarca,II.5.1,63.354479999999995,TJ,CH4,3.9,kg/TJ,247.08247199999997,Gas Oil combustion consumption by agriculture machines,AR-K,SESCO,annual,kg,593dcb30-02ad-304c-aca6-983d34e4a4ab -2023,Catamarca,II.5.1,63.354479999999995,TJ,N2O,3.9,kg/TJ,247.08247199999997,Gas Oil combustion consumption by agriculture machines,AR-K,SESCO,annual,kg,593dcb30-02ad-304c-aca6-983d34e4a4ab -2023,Chaco,II.5.1,153.40164,TJ,CO2,74100.0,kg/TJ,11367061.523999998,Gas Oil combustion consumption by agriculture machines,AR-H,SESCO,annual,kg,9c1be85b-c385-3681-869d-79dd6a4b1d1c -2023,Chaco,II.5.1,153.40164,TJ,CH4,3.9,kg/TJ,598.266396,Gas Oil combustion consumption by agriculture machines,AR-H,SESCO,annual,kg,542ba9af-5c24-362d-a12e-409319fd8b23 -2023,Chaco,II.5.1,153.40164,TJ,N2O,3.9,kg/TJ,598.266396,Gas Oil combustion consumption by agriculture machines,AR-H,SESCO,annual,kg,542ba9af-5c24-362d-a12e-409319fd8b23 -2023,Corrientes,II.5.1,78.59711999999999,TJ,CO2,74100.0,kg/TJ,5824046.591999999,Gas Oil combustion consumption by agriculture machines,AR-W,SESCO,annual,kg,c79c5b6a-b7ce-3bfa-bf3e-c9b224f535e7 -2023,Corrientes,II.5.1,78.59711999999999,TJ,CH4,3.9,kg/TJ,306.52876799999996,Gas Oil combustion consumption by agriculture machines,AR-W,SESCO,annual,kg,aceea790-1af7-3241-bf4d-82d3d77fed47 -2023,Corrientes,II.5.1,78.59711999999999,TJ,N2O,3.9,kg/TJ,306.52876799999996,Gas Oil combustion consumption by agriculture machines,AR-W,SESCO,annual,kg,aceea790-1af7-3241-bf4d-82d3d77fed47 -2023,Córdoba,II.5.1,159.03636,TJ,CO2,74100.0,kg/TJ,11784594.276,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,b4779036-8fbb-3ea0-ba70-60c42c8b11cf -2023,Córdoba,II.5.1,159.03636,TJ,CH4,3.9,kg/TJ,620.241804,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,f75bbbc4-6014-3e9c-926b-49cabea82397 -2023,Córdoba,II.5.1,159.03636,TJ,N2O,3.9,kg/TJ,620.241804,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,f75bbbc4-6014-3e9c-926b-49cabea82397 -2023,Entre Rios,II.5.1,44.68044,TJ,CO2,74100.0,kg/TJ,3310820.604,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,07bf56c9-2e7f-33ba-ad8e-af65bb050c71 -2023,Entre Rios,II.5.1,44.68044,TJ,CH4,3.9,kg/TJ,174.253716,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,da68e56a-ad55-3ec3-b562-191f3e5e2d4e -2023,Entre Rios,II.5.1,44.68044,TJ,N2O,3.9,kg/TJ,174.253716,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,da68e56a-ad55-3ec3-b562-191f3e5e2d4e -2023,Jujuy,II.5.1,29.00436,TJ,CO2,74100.0,kg/TJ,2149223.076,Gas Oil combustion consumption by agriculture machines,AR-Y,SESCO,annual,kg,439b795b-d175-3686-be7c-78b8378c260c -2023,Jujuy,II.5.1,29.00436,TJ,CH4,3.9,kg/TJ,113.117004,Gas Oil combustion consumption by agriculture machines,AR-Y,SESCO,annual,kg,b8029a18-ed4f-3274-91c6-d2be4b9fc48b -2023,Jujuy,II.5.1,29.00436,TJ,N2O,3.9,kg/TJ,113.117004,Gas Oil combustion consumption by agriculture machines,AR-Y,SESCO,annual,kg,b8029a18-ed4f-3274-91c6-d2be4b9fc48b -2023,La Pampa,II.5.1,15.350999999999999,TJ,CO2,74100.0,kg/TJ,1137509.0999999999,Gas Oil combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,95b7c8f8-15d6-30a8-af06-6781ad30e73f -2023,La Pampa,II.5.1,15.350999999999999,TJ,CH4,3.9,kg/TJ,59.8689,Gas Oil combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,44eec79b-7e0f-3c0b-b9b9-73ccd16b5448 -2023,La Pampa,II.5.1,15.350999999999999,TJ,N2O,3.9,kg/TJ,59.8689,Gas Oil combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,44eec79b-7e0f-3c0b-b9b9-73ccd16b5448 -2023,Mendoza,II.5.1,125.3364,TJ,CO2,74100.0,kg/TJ,9287427.24,Gas Oil combustion consumption by agriculture machines,AR-M,SESCO,annual,kg,f7ae6dbd-1998-364b-96e8-a825922ebdd5 -2023,Mendoza,II.5.1,125.3364,TJ,CH4,3.9,kg/TJ,488.81196,Gas Oil combustion consumption by agriculture machines,AR-M,SESCO,annual,kg,2c8bf724-90e3-35de-a3de-6c6b8b9f1b54 -2023,Mendoza,II.5.1,125.3364,TJ,N2O,3.9,kg/TJ,488.81196,Gas Oil combustion consumption by agriculture machines,AR-M,SESCO,annual,kg,2c8bf724-90e3-35de-a3de-6c6b8b9f1b54 -2023,Misiones,II.5.1,15.7122,TJ,CO2,74100.0,kg/TJ,1164274.02,Gas Oil combustion consumption by agriculture machines,AR-N,SESCO,annual,kg,453d65e3-b9d2-346d-987e-8b9f538ac667 -2023,Misiones,II.5.1,15.7122,TJ,CH4,3.9,kg/TJ,61.27757999999999,Gas Oil combustion consumption by agriculture machines,AR-N,SESCO,annual,kg,1e03892d-f623-3435-a005-9e4450cf56d6 -2023,Misiones,II.5.1,15.7122,TJ,N2O,3.9,kg/TJ,61.27757999999999,Gas Oil combustion consumption by agriculture machines,AR-N,SESCO,annual,kg,1e03892d-f623-3435-a005-9e4450cf56d6 -2023,Neuquén,II.5.1,25.139519999999997,TJ,CO2,74100.0,kg/TJ,1862838.4319999998,Gas Oil combustion consumption by agriculture machines,AR-Q,SESCO,annual,kg,356173d8-4055-3a84-afa3-1d548731c6d5 -2023,Neuquén,II.5.1,25.139519999999997,TJ,CH4,3.9,kg/TJ,98.04412799999999,Gas Oil combustion consumption by agriculture machines,AR-Q,SESCO,annual,kg,dacfe67e-8bfe-363b-b732-92aff5279d58 -2023,Neuquén,II.5.1,25.139519999999997,TJ,N2O,3.9,kg/TJ,98.04412799999999,Gas Oil combustion consumption by agriculture machines,AR-Q,SESCO,annual,kg,dacfe67e-8bfe-363b-b732-92aff5279d58 -2023,Salta,II.5.1,32.29128,TJ,CO2,74100.0,kg/TJ,2392783.848,Gas Oil combustion consumption by agriculture machines,AR-A,SESCO,annual,kg,b5455068-18e7-37dd-9ddd-a591f602ef31 -2023,Salta,II.5.1,32.29128,TJ,CH4,3.9,kg/TJ,125.935992,Gas Oil combustion consumption by agriculture machines,AR-A,SESCO,annual,kg,1b94004b-d890-324f-95ce-e9224fb11f9a -2023,Salta,II.5.1,32.29128,TJ,N2O,3.9,kg/TJ,125.935992,Gas Oil combustion consumption by agriculture machines,AR-A,SESCO,annual,kg,1b94004b-d890-324f-95ce-e9224fb11f9a -2023,San Juan,II.5.1,27.01776,TJ,CO2,74100.0,kg/TJ,2002016.0159999998,Gas Oil combustion consumption by agriculture machines,AR-J,SESCO,annual,kg,3bf5d693-42a6-3000-8635-f69f51c3fded -2023,San Juan,II.5.1,27.01776,TJ,CH4,3.9,kg/TJ,105.369264,Gas Oil combustion consumption by agriculture machines,AR-J,SESCO,annual,kg,cb40094d-1221-39ed-870e-97d2aa5a7e4e -2023,San Juan,II.5.1,27.01776,TJ,N2O,3.9,kg/TJ,105.369264,Gas Oil combustion consumption by agriculture machines,AR-J,SESCO,annual,kg,cb40094d-1221-39ed-870e-97d2aa5a7e4e -2023,San Luis,II.5.1,26.512079999999997,TJ,CO2,74100.0,kg/TJ,1964545.1279999998,Gas Oil combustion consumption by agriculture machines,AR-D,SESCO,annual,kg,45490173-664a-3e6b-98b3-9fe8536bbeb7 -2023,San Luis,II.5.1,26.512079999999997,TJ,CH4,3.9,kg/TJ,103.39711199999999,Gas Oil combustion consumption by agriculture machines,AR-D,SESCO,annual,kg,4fb58e12-1844-3fa5-a158-2ad52061c3d4 -2023,San Luis,II.5.1,26.512079999999997,TJ,N2O,3.9,kg/TJ,103.39711199999999,Gas Oil combustion consumption by agriculture machines,AR-D,SESCO,annual,kg,4fb58e12-1844-3fa5-a158-2ad52061c3d4 -2023,Santa Cruz,II.5.1,30.55752,TJ,CO2,74100.0,kg/TJ,2264312.232,Gas Oil combustion consumption by agriculture machines,AR-Z,SESCO,annual,kg,e6c48ec2-5d59-3cce-b7bb-626338469347 -2023,Santa Cruz,II.5.1,30.55752,TJ,CH4,3.9,kg/TJ,119.174328,Gas Oil combustion consumption by agriculture machines,AR-Z,SESCO,annual,kg,3f2c3413-9c7f-3a61-808e-02e5c12eaa24 -2023,Santa Cruz,II.5.1,30.55752,TJ,N2O,3.9,kg/TJ,119.174328,Gas Oil combustion consumption by agriculture machines,AR-Z,SESCO,annual,kg,3f2c3413-9c7f-3a61-808e-02e5c12eaa24 -2023,Santa Fe,II.5.1,279.35208,TJ,CO2,74100.0,kg/TJ,20699989.128,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,f40ff65d-b466-3ccf-81dc-79a69fc8fcd4 -2023,Santa Fe,II.5.1,279.35208,TJ,CH4,3.9,kg/TJ,1089.473112,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,02258fdb-b0c7-3cc8-b7a0-61d710329db0 -2023,Santa Fe,II.5.1,279.35208,TJ,N2O,3.9,kg/TJ,1089.473112,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,02258fdb-b0c7-3cc8-b7a0-61d710329db0 -2023,Santiago del Estero,II.5.1,199.52687999999998,TJ,CO2,74100.0,kg/TJ,14784941.807999998,Gas Oil combustion consumption by agriculture machines,AR-G,SESCO,annual,kg,b456e211-32a0-3e30-814d-27cc0d11512d -2023,Santiago del Estero,II.5.1,199.52687999999998,TJ,CH4,3.9,kg/TJ,778.1548319999999,Gas Oil combustion consumption by agriculture machines,AR-G,SESCO,annual,kg,ae72fd16-7b61-38d3-9e85-94c33fb51112 -2023,Santiago del Estero,II.5.1,199.52687999999998,TJ,N2O,3.9,kg/TJ,778.1548319999999,Gas Oil combustion consumption by agriculture machines,AR-G,SESCO,annual,kg,ae72fd16-7b61-38d3-9e85-94c33fb51112 -2023,Tucuman,II.5.1,42.440999999999995,TJ,CO2,74100.0,kg/TJ,3144878.0999999996,Gas Oil combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,47ff41f5-9a30-38fd-a425-0e7a42396b30 -2023,Tucuman,II.5.1,42.440999999999995,TJ,CH4,3.9,kg/TJ,165.51989999999998,Gas Oil combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,13f4e6c9-5a46-3219-be24-b185e98a4c6e -2023,Tucuman,II.5.1,42.440999999999995,TJ,N2O,3.9,kg/TJ,165.51989999999998,Gas Oil combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,13f4e6c9-5a46-3219-be24-b185e98a4c6e -2023,Santa Fe,II.5.1,1.816045,TJ,CO2,73300.0,kg/TJ,133116.0985,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,2c2546cb-1f28-325a-ab98-94951e0e47c9 -2023,Santa Fe,II.5.1,1.816045,TJ,CH4,0.5,kg/TJ,0.9080225,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,71fcd8c4-4abc-3e9b-8817-30b6512043c8 -2023,Santa Fe,II.5.1,1.816045,TJ,N2O,2.0,kg/TJ,3.63209,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,f8bae47b-e065-3e65-8a84-1a7ab2663000 -2023,Santa Fe,II.5.1,1.1650099999999999,TJ,CO2,73300.0,kg/TJ,85395.233,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,9eff493f-6c40-3648-8606-6c9468e10c4c -2023,Santa Fe,II.5.1,1.1650099999999999,TJ,CH4,0.5,kg/TJ,0.5825049999999999,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,1bfa5cff-cd5a-3a65-8457-33b81d34a697 -2023,Santa Fe,II.5.1,1.1650099999999999,TJ,N2O,2.0,kg/TJ,2.3300199999999998,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,dcd4c147-07c4-3145-b63f-ad1a21187238 -2023,Buenos Aires,II.2.1,111.71915999999999,TJ,CO2,74100.0,kg/TJ,8278389.755999999,Gas Oil combustion consumption by railway transport,AR-B,SESCO,annual,kg,1989f5be-c21f-3a3e-9e32-9be3c5c6b113 -2023,Buenos Aires,II.2.1,111.71915999999999,TJ,CH4,3.9,kg/TJ,435.70472399999994,Gas Oil combustion consumption by railway transport,AR-B,SESCO,annual,kg,dd624173-02a6-3bb9-a949-7956121d47a5 -2023,Buenos Aires,II.2.1,111.71915999999999,TJ,N2O,3.9,kg/TJ,435.70472399999994,Gas Oil combustion consumption by railway transport,AR-B,SESCO,annual,kg,dd624173-02a6-3bb9-a949-7956121d47a5 -2023,Córdoba,II.2.1,1.30032,TJ,CO2,74100.0,kg/TJ,96353.712,Gas Oil combustion consumption by railway transport,AR-X,SESCO,annual,kg,96b486d1-4a2f-3ada-9d3e-ec31571c80ad -2023,Córdoba,II.2.1,1.30032,TJ,CH4,3.9,kg/TJ,5.071248,Gas Oil combustion consumption by railway transport,AR-X,SESCO,annual,kg,d99cb075-cd87-3443-b941-99051d523c13 -2023,Córdoba,II.2.1,1.30032,TJ,N2O,3.9,kg/TJ,5.071248,Gas Oil combustion consumption by railway transport,AR-X,SESCO,annual,kg,d99cb075-cd87-3443-b941-99051d523c13 -2023,La Pampa,II.2.1,30.19632,TJ,CO2,74100.0,kg/TJ,2237547.312,Gas Oil combustion consumption by railway transport,AR-L,SESCO,annual,kg,4e62d6dd-ebcd-3cc0-a87d-d7c7b46b3735 -2023,La Pampa,II.2.1,30.19632,TJ,CH4,3.9,kg/TJ,117.765648,Gas Oil combustion consumption by railway transport,AR-L,SESCO,annual,kg,2a6f9074-3362-39d3-aae9-ae4ee9ba71c8 -2023,La Pampa,II.2.1,30.19632,TJ,N2O,3.9,kg/TJ,117.765648,Gas Oil combustion consumption by railway transport,AR-L,SESCO,annual,kg,2a6f9074-3362-39d3-aae9-ae4ee9ba71c8 -2023,Neuquén,II.2.1,2.81736,TJ,CO2,74100.0,kg/TJ,208766.376,Gas Oil combustion consumption by railway transport,AR-Q,SESCO,annual,kg,80149c20-2745-34bb-adb5-05560309138c -2023,Neuquén,II.2.1,2.81736,TJ,CH4,3.9,kg/TJ,10.987703999999999,Gas Oil combustion consumption by railway transport,AR-Q,SESCO,annual,kg,8420e818-7260-3c12-8c7a-e1e9b491d1c4 -2023,Neuquén,II.2.1,2.81736,TJ,N2O,3.9,kg/TJ,10.987703999999999,Gas Oil combustion consumption by railway transport,AR-Q,SESCO,annual,kg,8420e818-7260-3c12-8c7a-e1e9b491d1c4 -2023,Santa Fe,II.2.1,86.11008,TJ,CO2,74100.0,kg/TJ,6380756.927999999,Gas Oil combustion consumption by railway transport,AR-S,SESCO,annual,kg,8333c581-da37-3c5b-8518-1101a6f6fc0a -2023,Santa Fe,II.2.1,86.11008,TJ,CH4,3.9,kg/TJ,335.82931199999996,Gas Oil combustion consumption by railway transport,AR-S,SESCO,annual,kg,1ed5328e-9ff7-38f3-a339-cdf225491dd8 -2023,Santa Fe,II.2.1,86.11008,TJ,N2O,3.9,kg/TJ,335.82931199999996,Gas Oil combustion consumption by railway transport,AR-S,SESCO,annual,kg,1ed5328e-9ff7-38f3-a339-cdf225491dd8 -2023,Santiago del Estero,II.2.1,5.20128,TJ,CO2,74100.0,kg/TJ,385414.848,Gas Oil combustion consumption by railway transport,AR-G,SESCO,annual,kg,6bd6b07d-563a-3cb4-a789-f5f4fa90f72a -2023,Santiago del Estero,II.2.1,5.20128,TJ,CH4,3.9,kg/TJ,20.284992,Gas Oil combustion consumption by railway transport,AR-G,SESCO,annual,kg,41d41861-3c43-3883-bb5d-0e0a89dd10ba -2023,Santiago del Estero,II.2.1,5.20128,TJ,N2O,3.9,kg/TJ,20.284992,Gas Oil combustion consumption by railway transport,AR-G,SESCO,annual,kg,41d41861-3c43-3883-bb5d-0e0a89dd10ba -2023,Tucuman,II.2.1,2.6728799999999997,TJ,CO2,74100.0,kg/TJ,198060.40799999997,Gas Oil combustion consumption by railway transport,AR-T,SESCO,annual,kg,1e15bc02-26cf-31ce-9b9e-53664c7bacca -2023,Tucuman,II.2.1,2.6728799999999997,TJ,CH4,3.9,kg/TJ,10.424231999999998,Gas Oil combustion consumption by railway transport,AR-T,SESCO,annual,kg,927697b9-1705-3469-850e-4272c810b1a8 -2023,Tucuman,II.2.1,2.6728799999999997,TJ,N2O,3.9,kg/TJ,10.424231999999998,Gas Oil combustion consumption by railway transport,AR-T,SESCO,annual,kg,927697b9-1705-3469-850e-4272c810b1a8 -2023,Buenos Aires,II.1.1,1298.8752,TJ,CO2,74100.0,kg/TJ,96246652.32,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,9bf9381d-239f-3570-a645-7b46d398f440 -2023,Buenos Aires,II.1.1,1298.8752,TJ,CH4,3.9,kg/TJ,5065.61328,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,570811f5-55cd-3772-b231-415cb05a9996 -2023,Buenos Aires,II.1.1,1298.8752,TJ,N2O,3.9,kg/TJ,5065.61328,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,570811f5-55cd-3772-b231-415cb05a9996 -2023,Capital Federal,II.1.1,1383.25152,TJ,CO2,74100.0,kg/TJ,102498937.632,Gas Oil combustion consumption by freight transport,AR-C,SESCO,annual,kg,e7afa33a-433d-395e-86ed-0657158d6045 -2023,Capital Federal,II.1.1,1383.25152,TJ,CH4,3.9,kg/TJ,5394.680928,Gas Oil combustion consumption by freight transport,AR-C,SESCO,annual,kg,ad6f4781-0fab-3897-b0e8-e0c551482d3b -2023,Capital Federal,II.1.1,1383.25152,TJ,N2O,3.9,kg/TJ,5394.680928,Gas Oil combustion consumption by freight transport,AR-C,SESCO,annual,kg,ad6f4781-0fab-3897-b0e8-e0c551482d3b -2023,Chaco,II.1.1,24.850559999999998,TJ,CO2,74100.0,kg/TJ,1841426.4959999998,Gas Oil combustion consumption by freight transport,AR-H,SESCO,annual,kg,a69e1070-bc08-372b-a493-20b147889894 -2023,Chaco,II.1.1,24.850559999999998,TJ,CH4,3.9,kg/TJ,96.91718399999999,Gas Oil combustion consumption by freight transport,AR-H,SESCO,annual,kg,88bf00cc-378c-358f-8708-e44f49417952 -2023,Chaco,II.1.1,24.850559999999998,TJ,N2O,3.9,kg/TJ,96.91718399999999,Gas Oil combustion consumption by freight transport,AR-H,SESCO,annual,kg,88bf00cc-378c-358f-8708-e44f49417952 -2023,Chubut,II.1.1,11.377799999999999,TJ,CO2,74100.0,kg/TJ,843094.9799999999,Gas Oil combustion consumption by freight transport,AR-U,SESCO,annual,kg,197d4e49-93ca-348f-b54f-df3cee7d10ac -2023,Chubut,II.1.1,11.377799999999999,TJ,CH4,3.9,kg/TJ,44.373419999999996,Gas Oil combustion consumption by freight transport,AR-U,SESCO,annual,kg,9d67d207-9749-347d-acfc-b6a6d1e4815d -2023,Chubut,II.1.1,11.377799999999999,TJ,N2O,3.9,kg/TJ,44.373419999999996,Gas Oil combustion consumption by freight transport,AR-U,SESCO,annual,kg,9d67d207-9749-347d-acfc-b6a6d1e4815d -2023,Corrientes,II.1.1,51.471,TJ,CO2,74100.0,kg/TJ,3814001.0999999996,Gas Oil combustion consumption by freight transport,AR-W,SESCO,annual,kg,aaf5952d-e2c0-3a1d-b5e0-de40441710c7 -2023,Corrientes,II.1.1,51.471,TJ,CH4,3.9,kg/TJ,200.7369,Gas Oil combustion consumption by freight transport,AR-W,SESCO,annual,kg,c2b9fed4-7c6a-3d28-a6ba-1de89c308480 -2023,Corrientes,II.1.1,51.471,TJ,N2O,3.9,kg/TJ,200.7369,Gas Oil combustion consumption by freight transport,AR-W,SESCO,annual,kg,c2b9fed4-7c6a-3d28-a6ba-1de89c308480 -2023,Córdoba,II.1.1,247.34975999999997,TJ,CO2,74100.0,kg/TJ,18328617.216,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,bc20b65c-0277-3e3f-89d8-06b5def82593 -2023,Córdoba,II.1.1,247.34975999999997,TJ,CH4,3.9,kg/TJ,964.6640639999998,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,8ef930a3-1836-3278-94f4-82e6697b8455 -2023,Córdoba,II.1.1,247.34975999999997,TJ,N2O,3.9,kg/TJ,964.6640639999998,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,8ef930a3-1836-3278-94f4-82e6697b8455 -2023,Entre Rios,II.1.1,37.96212,TJ,CO2,74100.0,kg/TJ,2812993.0919999997,Gas Oil combustion consumption by freight transport,AR-E,SESCO,annual,kg,4b0d7a02-8ea2-3dc3-8f47-26a122d674bb -2023,Entre Rios,II.1.1,37.96212,TJ,CH4,3.9,kg/TJ,148.052268,Gas Oil combustion consumption by freight transport,AR-E,SESCO,annual,kg,16ec0783-facc-31de-b221-d03806f0ebea -2023,Entre Rios,II.1.1,37.96212,TJ,N2O,3.9,kg/TJ,148.052268,Gas Oil combustion consumption by freight transport,AR-E,SESCO,annual,kg,16ec0783-facc-31de-b221-d03806f0ebea -2023,Formosa,II.1.1,0.28896,TJ,CO2,74100.0,kg/TJ,21411.935999999998,Gas Oil combustion consumption by freight transport,AR-P,SESCO,annual,kg,b751b380-81d8-3e76-8144-642ee9fc0e30 -2023,Formosa,II.1.1,0.28896,TJ,CH4,3.9,kg/TJ,1.126944,Gas Oil combustion consumption by freight transport,AR-P,SESCO,annual,kg,2cd82097-6684-3c9f-be50-61ad2dd06ea7 -2023,Formosa,II.1.1,0.28896,TJ,N2O,3.9,kg/TJ,1.126944,Gas Oil combustion consumption by freight transport,AR-P,SESCO,annual,kg,2cd82097-6684-3c9f-be50-61ad2dd06ea7 -2023,La Pampa,II.1.1,7.36848,TJ,CO2,74100.0,kg/TJ,546004.368,Gas Oil combustion consumption by freight transport,AR-L,SESCO,annual,kg,514cc063-503d-3162-bf48-2f77de64b248 -2023,La Pampa,II.1.1,7.36848,TJ,CH4,3.9,kg/TJ,28.737071999999998,Gas Oil combustion consumption by freight transport,AR-L,SESCO,annual,kg,c339c038-c909-3678-8da1-e23c17a2637b -2023,La Pampa,II.1.1,7.36848,TJ,N2O,3.9,kg/TJ,28.737071999999998,Gas Oil combustion consumption by freight transport,AR-L,SESCO,annual,kg,c339c038-c909-3678-8da1-e23c17a2637b -2023,Mendoza,II.1.1,157.23036,TJ,CO2,74100.0,kg/TJ,11650769.675999999,Gas Oil combustion consumption by freight transport,AR-M,SESCO,annual,kg,e6960cbb-0585-385a-9f34-69047aa87b30 -2023,Mendoza,II.1.1,157.23036,TJ,CH4,3.9,kg/TJ,613.198404,Gas Oil combustion consumption by freight transport,AR-M,SESCO,annual,kg,7089906f-c8c2-3f13-b022-22c251101fcc -2023,Mendoza,II.1.1,157.23036,TJ,N2O,3.9,kg/TJ,613.198404,Gas Oil combustion consumption by freight transport,AR-M,SESCO,annual,kg,7089906f-c8c2-3f13-b022-22c251101fcc -2023,Misiones,II.1.1,205.3422,TJ,CO2,74100.0,kg/TJ,15215857.02,Gas Oil combustion consumption by freight transport,AR-N,SESCO,annual,kg,f96526d9-b38c-367a-9508-99b6883e9bff -2023,Misiones,II.1.1,205.3422,TJ,CH4,3.9,kg/TJ,800.83458,Gas Oil combustion consumption by freight transport,AR-N,SESCO,annual,kg,651873ce-f0e8-3668-be6a-acbf8f32de55 -2023,Misiones,II.1.1,205.3422,TJ,N2O,3.9,kg/TJ,800.83458,Gas Oil combustion consumption by freight transport,AR-N,SESCO,annual,kg,651873ce-f0e8-3668-be6a-acbf8f32de55 -2023,Rio Negro,II.1.1,365.5344,TJ,CO2,74100.0,kg/TJ,27086099.04,Gas Oil combustion consumption by freight transport,AR-R,SESCO,annual,kg,9f17be82-0d8b-3433-ab97-0b36b30f7695 -2023,Rio Negro,II.1.1,365.5344,TJ,CH4,3.9,kg/TJ,1425.5841599999999,Gas Oil combustion consumption by freight transport,AR-R,SESCO,annual,kg,ff419c55-3c33-3f12-9dec-8626f7963233 -2023,Rio Negro,II.1.1,365.5344,TJ,N2O,3.9,kg/TJ,1425.5841599999999,Gas Oil combustion consumption by freight transport,AR-R,SESCO,annual,kg,ff419c55-3c33-3f12-9dec-8626f7963233 -2023,Salta,II.1.1,207.61776,TJ,CO2,74100.0,kg/TJ,15384476.016,Gas Oil combustion consumption by freight transport,AR-A,SESCO,annual,kg,f23d4838-a990-3440-a281-ad2baba94a24 -2023,Salta,II.1.1,207.61776,TJ,CH4,3.9,kg/TJ,809.709264,Gas Oil combustion consumption by freight transport,AR-A,SESCO,annual,kg,13700889-9a15-3a01-9f93-0069fc39630b -2023,Salta,II.1.1,207.61776,TJ,N2O,3.9,kg/TJ,809.709264,Gas Oil combustion consumption by freight transport,AR-A,SESCO,annual,kg,13700889-9a15-3a01-9f93-0069fc39630b -2023,San Juan,II.1.1,2.09496,TJ,CO2,74100.0,kg/TJ,155236.536,Gas Oil combustion consumption by freight transport,AR-J,SESCO,annual,kg,4742dec7-34d3-385b-b06f-1542ea8a5ba8 -2023,San Juan,II.1.1,2.09496,TJ,CH4,3.9,kg/TJ,8.170344,Gas Oil combustion consumption by freight transport,AR-J,SESCO,annual,kg,45b99a74-103b-3f1f-8b27-b46cdce74d66 -2023,San Juan,II.1.1,2.09496,TJ,N2O,3.9,kg/TJ,8.170344,Gas Oil combustion consumption by freight transport,AR-J,SESCO,annual,kg,45b99a74-103b-3f1f-8b27-b46cdce74d66 -2023,San Luis,II.1.1,51.398759999999996,TJ,CO2,74100.0,kg/TJ,3808648.1159999995,Gas Oil combustion consumption by freight transport,AR-D,SESCO,annual,kg,dc414a10-d54a-339d-b896-c4e48fe0dae5 -2023,San Luis,II.1.1,51.398759999999996,TJ,CH4,3.9,kg/TJ,200.45516399999997,Gas Oil combustion consumption by freight transport,AR-D,SESCO,annual,kg,ac1b4f0c-408d-3110-a5bb-893e0e146c03 -2023,San Luis,II.1.1,51.398759999999996,TJ,N2O,3.9,kg/TJ,200.45516399999997,Gas Oil combustion consumption by freight transport,AR-D,SESCO,annual,kg,ac1b4f0c-408d-3110-a5bb-893e0e146c03 -2023,Santa Fe,II.1.1,436.76304,TJ,CO2,74100.0,kg/TJ,32364141.264,Gas Oil combustion consumption by freight transport,AR-S,SESCO,annual,kg,62acf951-3d55-323d-8cfe-5e6a0a0aa72a -2023,Santa Fe,II.1.1,436.76304,TJ,CH4,3.9,kg/TJ,1703.3758559999999,Gas Oil combustion consumption by freight transport,AR-S,SESCO,annual,kg,66be1654-777f-3b57-b52d-916fbcbd9582 -2023,Santa Fe,II.1.1,436.76304,TJ,N2O,3.9,kg/TJ,1703.3758559999999,Gas Oil combustion consumption by freight transport,AR-S,SESCO,annual,kg,66be1654-777f-3b57-b52d-916fbcbd9582 -2023,Santiago del Estero,II.1.1,52.08504,TJ,CO2,74100.0,kg/TJ,3859501.464,Gas Oil combustion consumption by freight transport,AR-G,SESCO,annual,kg,4fec1e8d-281c-3995-bc76-9309530f4efd -2023,Santiago del Estero,II.1.1,52.08504,TJ,CH4,3.9,kg/TJ,203.131656,Gas Oil combustion consumption by freight transport,AR-G,SESCO,annual,kg,9f8562f0-cf0f-34ba-a4a1-3dc270114997 -2023,Santiago del Estero,II.1.1,52.08504,TJ,N2O,3.9,kg/TJ,203.131656,Gas Oil combustion consumption by freight transport,AR-G,SESCO,annual,kg,9f8562f0-cf0f-34ba-a4a1-3dc270114997 -2023,Tucuman,II.1.1,44.71656,TJ,CO2,74100.0,kg/TJ,3313497.096,Gas Oil combustion consumption by freight transport,AR-T,SESCO,annual,kg,326c4467-7744-320e-a832-d2efb72efabc -2023,Tucuman,II.1.1,44.71656,TJ,CH4,3.9,kg/TJ,174.394584,Gas Oil combustion consumption by freight transport,AR-T,SESCO,annual,kg,d2f8fcfa-2326-3347-b16c-ecc60a7e063f -2023,Tucuman,II.1.1,44.71656,TJ,N2O,3.9,kg/TJ,174.394584,Gas Oil combustion consumption by freight transport,AR-T,SESCO,annual,kg,d2f8fcfa-2326-3347-b16c-ecc60a7e063f -2023,Buenos Aires,II.1.1,576.98088,TJ,CO2,74100.0,kg/TJ,42754283.208,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,80f25bfc-8b6f-3f79-ac17-e69e989f0758 -2023,Buenos Aires,II.1.1,576.98088,TJ,CH4,3.9,kg/TJ,2250.2254319999997,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,f6b38b46-9e4d-39f2-8bed-95c9f84cdf30 -2023,Buenos Aires,II.1.1,576.98088,TJ,N2O,3.9,kg/TJ,2250.2254319999997,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,f6b38b46-9e4d-39f2-8bed-95c9f84cdf30 -2023,Capital Federal,II.1.1,166.47708,TJ,CO2,74100.0,kg/TJ,12335951.628,Gas Oil combustion consumption by freight transport,AR-C,SESCO,annual,kg,fc7a6cd5-48fd-3b7e-ad01-e3709fa85c1c -2023,Capital Federal,II.1.1,166.47708,TJ,CH4,3.9,kg/TJ,649.260612,Gas Oil combustion consumption by freight transport,AR-C,SESCO,annual,kg,f42f2170-9d1d-33ba-b941-9c8806afeaa3 -2023,Capital Federal,II.1.1,166.47708,TJ,N2O,3.9,kg/TJ,649.260612,Gas Oil combustion consumption by freight transport,AR-C,SESCO,annual,kg,f42f2170-9d1d-33ba-b941-9c8806afeaa3 -2023,Chaco,II.1.1,4.94844,TJ,CO2,74100.0,kg/TJ,366679.404,Gas Oil combustion consumption by freight transport,AR-H,SESCO,annual,kg,52b66ca3-874b-34a8-a8d7-765bc72f4266 -2023,Chaco,II.1.1,4.94844,TJ,CH4,3.9,kg/TJ,19.298916,Gas Oil combustion consumption by freight transport,AR-H,SESCO,annual,kg,ff011b6a-1424-39ea-ad16-3adaec71ce4b -2023,Chaco,II.1.1,4.94844,TJ,N2O,3.9,kg/TJ,19.298916,Gas Oil combustion consumption by freight transport,AR-H,SESCO,annual,kg,ff011b6a-1424-39ea-ad16-3adaec71ce4b -2023,Chubut,II.1.1,1.01136,TJ,CO2,74100.0,kg/TJ,74941.776,Gas Oil combustion consumption by freight transport,AR-U,SESCO,annual,kg,2f662bd1-7503-3ba9-8533-9e7f4e67cb70 -2023,Chubut,II.1.1,1.01136,TJ,CH4,3.9,kg/TJ,3.9443040000000003,Gas Oil combustion consumption by freight transport,AR-U,SESCO,annual,kg,09541e54-6894-396e-a015-411ab926b7c1 -2023,Chubut,II.1.1,1.01136,TJ,N2O,3.9,kg/TJ,3.9443040000000003,Gas Oil combustion consumption by freight transport,AR-U,SESCO,annual,kg,09541e54-6894-396e-a015-411ab926b7c1 -2023,Corrientes,II.1.1,3.53976,TJ,CO2,74100.0,kg/TJ,262296.21599999996,Gas Oil combustion consumption by freight transport,AR-W,SESCO,annual,kg,edbbc741-0d5f-3111-afb8-6741cf8dec9c -2023,Corrientes,II.1.1,3.53976,TJ,CH4,3.9,kg/TJ,13.805063999999998,Gas Oil combustion consumption by freight transport,AR-W,SESCO,annual,kg,c034df8b-cfdc-3a45-8c7b-7829a1268ac9 -2023,Corrientes,II.1.1,3.53976,TJ,N2O,3.9,kg/TJ,13.805063999999998,Gas Oil combustion consumption by freight transport,AR-W,SESCO,annual,kg,c034df8b-cfdc-3a45-8c7b-7829a1268ac9 -2023,Córdoba,II.1.1,21.021839999999997,TJ,CO2,74100.0,kg/TJ,1557718.3439999998,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,28c1f6c0-1512-3a90-8102-98fbd839f460 -2023,Córdoba,II.1.1,21.021839999999997,TJ,CH4,3.9,kg/TJ,81.98517599999998,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,3c18dfb5-d6ba-377a-9409-7b3977b0e0e5 -2023,Córdoba,II.1.1,21.021839999999997,TJ,N2O,3.9,kg/TJ,81.98517599999998,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,3c18dfb5-d6ba-377a-9409-7b3977b0e0e5 -2023,Entre Rios,II.1.1,4.4066399999999994,TJ,CO2,74100.0,kg/TJ,326532.024,Gas Oil combustion consumption by freight transport,AR-E,SESCO,annual,kg,3b0abeb5-9fa3-33de-bcd9-2789ec24fcf7 -2023,Entre Rios,II.1.1,4.4066399999999994,TJ,CH4,3.9,kg/TJ,17.185895999999996,Gas Oil combustion consumption by freight transport,AR-E,SESCO,annual,kg,2eddbfb9-26c9-37d8-8dfc-699538f28640 -2023,Entre Rios,II.1.1,4.4066399999999994,TJ,N2O,3.9,kg/TJ,17.185895999999996,Gas Oil combustion consumption by freight transport,AR-E,SESCO,annual,kg,2eddbfb9-26c9-37d8-8dfc-699538f28640 -2023,La Pampa,II.1.1,0.18059999999999998,TJ,CO2,74100.0,kg/TJ,13382.46,Gas Oil combustion consumption by freight transport,AR-L,SESCO,annual,kg,a66bb4f5-d8cc-3169-8587-27e7a3bcf968 -2023,La Pampa,II.1.1,0.18059999999999998,TJ,CH4,3.9,kg/TJ,0.70434,Gas Oil combustion consumption by freight transport,AR-L,SESCO,annual,kg,cc3d68d1-8be3-34dc-972b-85794ae2c59f -2023,La Pampa,II.1.1,0.18059999999999998,TJ,N2O,3.9,kg/TJ,0.70434,Gas Oil combustion consumption by freight transport,AR-L,SESCO,annual,kg,cc3d68d1-8be3-34dc-972b-85794ae2c59f -2023,Mendoza,II.1.1,12.78648,TJ,CO2,74100.0,kg/TJ,947478.168,Gas Oil combustion consumption by freight transport,AR-M,SESCO,annual,kg,0bc313a2-fbda-3cf1-b288-4279959dcd8e -2023,Mendoza,II.1.1,12.78648,TJ,CH4,3.9,kg/TJ,49.86727199999999,Gas Oil combustion consumption by freight transport,AR-M,SESCO,annual,kg,0d0c5c23-0fc7-3ce8-aad8-8f2aace5d8cf -2023,Mendoza,II.1.1,12.78648,TJ,N2O,3.9,kg/TJ,49.86727199999999,Gas Oil combustion consumption by freight transport,AR-M,SESCO,annual,kg,0d0c5c23-0fc7-3ce8-aad8-8f2aace5d8cf -2023,Misiones,II.1.1,0.65016,TJ,CO2,74100.0,kg/TJ,48176.856,Gas Oil combustion consumption by freight transport,AR-N,SESCO,annual,kg,c60c3579-072a-3ac5-82c9-149085dbb675 -2023,Misiones,II.1.1,0.65016,TJ,CH4,3.9,kg/TJ,2.535624,Gas Oil combustion consumption by freight transport,AR-N,SESCO,annual,kg,dd800d76-7d32-3668-a53a-6e08506d8286 -2023,Misiones,II.1.1,0.65016,TJ,N2O,3.9,kg/TJ,2.535624,Gas Oil combustion consumption by freight transport,AR-N,SESCO,annual,kg,dd800d76-7d32-3668-a53a-6e08506d8286 -2023,Neuquén,II.1.1,0.03612,TJ,CO2,74100.0,kg/TJ,2676.4919999999997,Gas Oil combustion consumption by freight transport,AR-Q,SESCO,annual,kg,72f79e4f-cc41-3c96-90ab-f636da9fd693 -2023,Neuquén,II.1.1,0.03612,TJ,CH4,3.9,kg/TJ,0.140868,Gas Oil combustion consumption by freight transport,AR-Q,SESCO,annual,kg,a2c1117f-32e8-359f-bc8f-87f84ddd7b5b -2023,Neuquén,II.1.1,0.03612,TJ,N2O,3.9,kg/TJ,0.140868,Gas Oil combustion consumption by freight transport,AR-Q,SESCO,annual,kg,a2c1117f-32e8-359f-bc8f-87f84ddd7b5b -2023,Rio Negro,II.1.1,1.0836,TJ,CO2,74100.0,kg/TJ,80294.76,Gas Oil combustion consumption by freight transport,AR-R,SESCO,annual,kg,4c54c5be-1382-3e27-87ce-d225cd0df0f2 -2023,Rio Negro,II.1.1,1.0836,TJ,CH4,3.9,kg/TJ,4.226039999999999,Gas Oil combustion consumption by freight transport,AR-R,SESCO,annual,kg,14ef8d01-cef6-3444-9e0c-9a23c8c72ef5 -2023,Rio Negro,II.1.1,1.0836,TJ,N2O,3.9,kg/TJ,4.226039999999999,Gas Oil combustion consumption by freight transport,AR-R,SESCO,annual,kg,14ef8d01-cef6-3444-9e0c-9a23c8c72ef5 -2023,Salta,II.1.1,0.03612,TJ,CO2,74100.0,kg/TJ,2676.4919999999997,Gas Oil combustion consumption by freight transport,AR-A,SESCO,annual,kg,53ee0eef-d411-34c8-b139-89b5187ff052 -2023,Salta,II.1.1,0.03612,TJ,CH4,3.9,kg/TJ,0.140868,Gas Oil combustion consumption by freight transport,AR-A,SESCO,annual,kg,79a9c050-79d6-37f1-9982-1fee1612bbcb -2023,Salta,II.1.1,0.03612,TJ,N2O,3.9,kg/TJ,0.140868,Gas Oil combustion consumption by freight transport,AR-A,SESCO,annual,kg,79a9c050-79d6-37f1-9982-1fee1612bbcb -2023,San Juan,II.1.1,2.02272,TJ,CO2,74100.0,kg/TJ,149883.552,Gas Oil combustion consumption by freight transport,AR-J,SESCO,annual,kg,9e7ec3e4-3731-3861-9521-5bc1ce1762a9 -2023,San Juan,II.1.1,2.02272,TJ,CH4,3.9,kg/TJ,7.8886080000000005,Gas Oil combustion consumption by freight transport,AR-J,SESCO,annual,kg,d09591d1-c053-3e40-a3c2-e7f7e74be1eb -2023,San Juan,II.1.1,2.02272,TJ,N2O,3.9,kg/TJ,7.8886080000000005,Gas Oil combustion consumption by freight transport,AR-J,SESCO,annual,kg,d09591d1-c053-3e40-a3c2-e7f7e74be1eb -2023,San Luis,II.1.1,1.58928,TJ,CO2,74100.0,kg/TJ,117765.648,Gas Oil combustion consumption by freight transport,AR-D,SESCO,annual,kg,b6ff3edd-8022-3f75-9b82-6733a88c0653 -2023,San Luis,II.1.1,1.58928,TJ,CH4,3.9,kg/TJ,6.198192,Gas Oil combustion consumption by freight transport,AR-D,SESCO,annual,kg,7d1ab74c-81d8-3103-a18d-907da1fdf1c3 -2023,San Luis,II.1.1,1.58928,TJ,N2O,3.9,kg/TJ,6.198192,Gas Oil combustion consumption by freight transport,AR-D,SESCO,annual,kg,7d1ab74c-81d8-3103-a18d-907da1fdf1c3 -2023,Santa Cruz,II.1.1,0.03612,TJ,CO2,74100.0,kg/TJ,2676.4919999999997,Gas Oil combustion consumption by freight transport,AR-Z,SESCO,annual,kg,0a4f77ce-5e6c-3e44-ae37-2d8392a0fda4 -2023,Santa Cruz,II.1.1,0.03612,TJ,CH4,3.9,kg/TJ,0.140868,Gas Oil combustion consumption by freight transport,AR-Z,SESCO,annual,kg,f44d0187-48a6-3dee-8e71-89c418ca2cbb -2023,Santa Cruz,II.1.1,0.03612,TJ,N2O,3.9,kg/TJ,0.140868,Gas Oil combustion consumption by freight transport,AR-Z,SESCO,annual,kg,f44d0187-48a6-3dee-8e71-89c418ca2cbb -2023,Santa Fe,II.1.1,32.905319999999996,TJ,CO2,74100.0,kg/TJ,2438284.212,Gas Oil combustion consumption by freight transport,AR-S,SESCO,annual,kg,386dd14d-8d0d-39d1-b754-73f238c06b3c -2023,Santa Fe,II.1.1,32.905319999999996,TJ,CH4,3.9,kg/TJ,128.33074799999997,Gas Oil combustion consumption by freight transport,AR-S,SESCO,annual,kg,b1bfb6ba-e1d2-3026-a275-8aeb5020fa24 -2023,Santa Fe,II.1.1,32.905319999999996,TJ,N2O,3.9,kg/TJ,128.33074799999997,Gas Oil combustion consumption by freight transport,AR-S,SESCO,annual,kg,b1bfb6ba-e1d2-3026-a275-8aeb5020fa24 -2023,Santiago del Estero,II.1.1,1.15584,TJ,CO2,74100.0,kg/TJ,85647.74399999999,Gas Oil combustion consumption by freight transport,AR-G,SESCO,annual,kg,18d02d5e-9103-3585-a797-32e679054096 -2023,Santiago del Estero,II.1.1,1.15584,TJ,CH4,3.9,kg/TJ,4.507776,Gas Oil combustion consumption by freight transport,AR-G,SESCO,annual,kg,650d60c9-590e-3a16-9ea4-25e6e2d0f14f -2023,Santiago del Estero,II.1.1,1.15584,TJ,N2O,3.9,kg/TJ,4.507776,Gas Oil combustion consumption by freight transport,AR-G,SESCO,annual,kg,650d60c9-590e-3a16-9ea4-25e6e2d0f14f -2023,Tucuman,II.1.1,0.5418,TJ,CO2,74100.0,kg/TJ,40147.38,Gas Oil combustion consumption by freight transport,AR-T,SESCO,annual,kg,13483365-67da-3539-9ac3-063428d908e1 -2023,Tucuman,II.1.1,0.5418,TJ,CH4,3.9,kg/TJ,2.1130199999999997,Gas Oil combustion consumption by freight transport,AR-T,SESCO,annual,kg,a28d3e38-e279-3619-bbc3-920ba16d056c -2023,Tucuman,II.1.1,0.5418,TJ,N2O,3.9,kg/TJ,2.1130199999999997,Gas Oil combustion consumption by freight transport,AR-T,SESCO,annual,kg,a28d3e38-e279-3619-bbc3-920ba16d056c -2023,Buenos Aires,II.1.1,22.27225,TJ,CO2,73300.0,kg/TJ,1632555.925,Naphtha combustion consumption by freight transport,AR-B,SESCO,annual,kg,c292b08a-b431-3465-ab05-35a1ae479062 -2023,Buenos Aires,II.1.1,22.27225,TJ,CH4,0.5,kg/TJ,11.136125,Naphtha combustion consumption by freight transport,AR-B,SESCO,annual,kg,269a7883-1ca8-3c29-b08f-5a475bb60623 -2023,Buenos Aires,II.1.1,22.27225,TJ,N2O,2.0,kg/TJ,44.5445,Naphtha combustion consumption by freight transport,AR-B,SESCO,annual,kg,b3e0af3e-0bb3-3f8d-ac15-ed46755d2ae0 -2023,Capital Federal,II.1.1,28.851129999999998,TJ,CO2,73300.0,kg/TJ,2114787.829,Naphtha combustion consumption by freight transport,AR-C,SESCO,annual,kg,8a13ad47-c3d4-313f-80b8-142c34f88d47 -2023,Capital Federal,II.1.1,28.851129999999998,TJ,CH4,0.5,kg/TJ,14.425564999999999,Naphtha combustion consumption by freight transport,AR-C,SESCO,annual,kg,deafc53a-f4ab-366d-9f50-a54a723fc6dd -2023,Capital Federal,II.1.1,28.851129999999998,TJ,N2O,2.0,kg/TJ,57.702259999999995,Naphtha combustion consumption by freight transport,AR-C,SESCO,annual,kg,fd85ae2a-994e-3c3c-a65d-484cf9ee78be -2023,Chaco,II.1.1,0.034265,TJ,CO2,73300.0,kg/TJ,2511.6245,Naphtha combustion consumption by freight transport,AR-H,SESCO,annual,kg,9b3911a5-364c-30ff-ad52-a4c5f3f0eccd -2023,Chaco,II.1.1,0.034265,TJ,CH4,0.5,kg/TJ,0.0171325,Naphtha combustion consumption by freight transport,AR-H,SESCO,annual,kg,cf792043-323d-3be5-8e13-15cf4be88877 -2023,Chaco,II.1.1,0.034265,TJ,N2O,2.0,kg/TJ,0.06853,Naphtha combustion consumption by freight transport,AR-H,SESCO,annual,kg,560a6c85-e77d-3b4b-8c8b-cef597387b53 -2023,Corrientes,II.1.1,0.034265,TJ,CO2,73300.0,kg/TJ,2511.6245,Naphtha combustion consumption by freight transport,AR-W,SESCO,annual,kg,6b0c2505-58ff-3fba-8c52-dd715f6849f0 -2023,Corrientes,II.1.1,0.034265,TJ,CH4,0.5,kg/TJ,0.0171325,Naphtha combustion consumption by freight transport,AR-W,SESCO,annual,kg,dc3b04b4-6fdc-3e61-833e-9765fb805565 -2023,Corrientes,II.1.1,0.034265,TJ,N2O,2.0,kg/TJ,0.06853,Naphtha combustion consumption by freight transport,AR-W,SESCO,annual,kg,fda6ddb2-27a2-3a76-84f0-e2f08da93338 -2023,Córdoba,II.1.1,3.8034149999999998,TJ,CO2,73300.0,kg/TJ,278790.3195,Naphtha combustion consumption by freight transport,AR-X,SESCO,annual,kg,a0cbdbdf-0f2c-3142-81ad-f5bdfefff6f8 -2023,Córdoba,II.1.1,3.8034149999999998,TJ,CH4,0.5,kg/TJ,1.9017074999999999,Naphtha combustion consumption by freight transport,AR-X,SESCO,annual,kg,ad4caae6-e8a3-33c2-9d40-2a500cbcba0e -2023,Córdoba,II.1.1,3.8034149999999998,TJ,N2O,2.0,kg/TJ,7.6068299999999995,Naphtha combustion consumption by freight transport,AR-X,SESCO,annual,kg,51799e37-399a-3e9d-a8bb-ca6a535aff34 -2023,Mendoza,II.1.1,0.20559,TJ,CO2,73300.0,kg/TJ,15069.747,Naphtha combustion consumption by freight transport,AR-M,SESCO,annual,kg,2d1e5c65-2e61-3f5f-8482-da5f5fcffd6f -2023,Mendoza,II.1.1,0.20559,TJ,CH4,0.5,kg/TJ,0.102795,Naphtha combustion consumption by freight transport,AR-M,SESCO,annual,kg,37030ee2-52a4-3a79-9db9-28e6ac56f390 -2023,Mendoza,II.1.1,0.20559,TJ,N2O,2.0,kg/TJ,0.41118,Naphtha combustion consumption by freight transport,AR-M,SESCO,annual,kg,010b4174-aba4-3178-adbe-0e591d94c6d6 -2023,Rio Negro,II.1.1,0.445445,TJ,CO2,73300.0,kg/TJ,32651.118499999997,Naphtha combustion consumption by freight transport,AR-R,SESCO,annual,kg,c04016d1-2efa-3ec1-82d6-01c77885bdb9 -2023,Rio Negro,II.1.1,0.445445,TJ,CH4,0.5,kg/TJ,0.2227225,Naphtha combustion consumption by freight transport,AR-R,SESCO,annual,kg,2444281a-8def-35b0-9991-4e7c3776969d -2023,Rio Negro,II.1.1,0.445445,TJ,N2O,2.0,kg/TJ,0.89089,Naphtha combustion consumption by freight transport,AR-R,SESCO,annual,kg,16b09300-27ac-35c9-ba83-ed2c47bc9051 -2023,Santa Fe,II.1.1,11.410245,TJ,CO2,73300.0,kg/TJ,836370.9585,Naphtha combustion consumption by freight transport,AR-S,SESCO,annual,kg,d9ce5f40-c03d-3eea-bbda-f1e77322417e -2023,Santa Fe,II.1.1,11.410245,TJ,CH4,0.5,kg/TJ,5.7051225,Naphtha combustion consumption by freight transport,AR-S,SESCO,annual,kg,e589a828-7fd7-38ae-b424-2a0c7bc4a1de -2023,Santa Fe,II.1.1,11.410245,TJ,N2O,2.0,kg/TJ,22.82049,Naphtha combustion consumption by freight transport,AR-S,SESCO,annual,kg,8051e8e9-580b-3264-abb4-7c19e0497b22 -2023,Buenos Aires,II.1.1,13.192025,TJ,CO2,73300.0,kg/TJ,966975.4325,Naphtha combustion consumption by freight transport,AR-B,SESCO,annual,kg,337b3845-5443-32c1-984e-9ab08bbc5347 -2023,Buenos Aires,II.1.1,13.192025,TJ,CH4,0.5,kg/TJ,6.5960125,Naphtha combustion consumption by freight transport,AR-B,SESCO,annual,kg,14af49c1-a658-3198-8699-833883eed496 -2023,Buenos Aires,II.1.1,13.192025,TJ,N2O,2.0,kg/TJ,26.38405,Naphtha combustion consumption by freight transport,AR-B,SESCO,annual,kg,2f6c46cb-91f0-380e-ab67-3ef709aa9750 -2023,Capital Federal,II.1.1,21.72401,TJ,CO2,73300.0,kg/TJ,1592369.933,Naphtha combustion consumption by freight transport,AR-C,SESCO,annual,kg,84839d88-2328-3f39-9042-5b6ff8f51239 -2023,Capital Federal,II.1.1,21.72401,TJ,CH4,0.5,kg/TJ,10.862005,Naphtha combustion consumption by freight transport,AR-C,SESCO,annual,kg,121019d9-eec8-3590-b435-ac8a49000dea -2023,Capital Federal,II.1.1,21.72401,TJ,N2O,2.0,kg/TJ,43.44802,Naphtha combustion consumption by freight transport,AR-C,SESCO,annual,kg,63c1121e-2f32-3992-84af-dde1759b91cd -2023,Chubut,II.1.1,0.06853,TJ,CO2,73300.0,kg/TJ,5023.249,Naphtha combustion consumption by freight transport,AR-U,SESCO,annual,kg,490240b2-df84-3c0d-b9c7-d9eba866b5fe -2023,Chubut,II.1.1,0.06853,TJ,CH4,0.5,kg/TJ,0.034265,Naphtha combustion consumption by freight transport,AR-U,SESCO,annual,kg,5dd1e3f9-31bd-3bff-a714-5d130508fe00 -2023,Chubut,II.1.1,0.06853,TJ,N2O,2.0,kg/TJ,0.13706,Naphtha combustion consumption by freight transport,AR-U,SESCO,annual,kg,7b08d0c8-d3fe-31d1-bc57-7107459ada84 -2023,Córdoba,II.1.1,1.473395,TJ,CO2,73300.0,kg/TJ,107999.8535,Naphtha combustion consumption by freight transport,AR-X,SESCO,annual,kg,89c7f1d8-9cd3-33b6-a11f-3790c5c856f7 -2023,Córdoba,II.1.1,1.473395,TJ,CH4,0.5,kg/TJ,0.7366975,Naphtha combustion consumption by freight transport,AR-X,SESCO,annual,kg,d6f6b3ff-e58f-3302-b5a5-6bc9147de688 -2023,Córdoba,II.1.1,1.473395,TJ,N2O,2.0,kg/TJ,2.94679,Naphtha combustion consumption by freight transport,AR-X,SESCO,annual,kg,3a319fb0-b8ff-32e7-8c55-4f8fb26518ab -2023,Entre Rios,II.1.1,0.102795,TJ,CO2,73300.0,kg/TJ,7534.8735,Naphtha combustion consumption by freight transport,AR-E,SESCO,annual,kg,d1bc0c3c-76ab-30d0-a9ec-93eddb591822 -2023,Entre Rios,II.1.1,0.102795,TJ,CH4,0.5,kg/TJ,0.0513975,Naphtha combustion consumption by freight transport,AR-E,SESCO,annual,kg,70d5639d-21fd-365e-99f0-bcad720d00de -2023,Entre Rios,II.1.1,0.102795,TJ,N2O,2.0,kg/TJ,0.20559,Naphtha combustion consumption by freight transport,AR-E,SESCO,annual,kg,0ecd244a-6cb7-3be0-a46f-2ad42e970d33 -2023,La Rioja,II.1.1,0.41118,TJ,CO2,73300.0,kg/TJ,30139.494,Naphtha combustion consumption by freight transport,AR-F,SESCO,annual,kg,96a7a4e8-035c-3716-8b52-f753ca0b163f -2023,La Rioja,II.1.1,0.41118,TJ,CH4,0.5,kg/TJ,0.20559,Naphtha combustion consumption by freight transport,AR-F,SESCO,annual,kg,7b6fec65-e0ea-3381-a2b3-101d0586af2d -2023,La Rioja,II.1.1,0.41118,TJ,N2O,2.0,kg/TJ,0.82236,Naphtha combustion consumption by freight transport,AR-F,SESCO,annual,kg,2fc2ec4e-67b8-37b2-9fdb-84f3b208c3f3 -2023,Neuquén,II.1.1,0.034265,TJ,CO2,73300.0,kg/TJ,2511.6245,Naphtha combustion consumption by freight transport,AR-Q,SESCO,annual,kg,e77ba54c-02bc-3c6b-87fc-68f4af6b0f34 -2023,Neuquén,II.1.1,0.034265,TJ,CH4,0.5,kg/TJ,0.0171325,Naphtha combustion consumption by freight transport,AR-Q,SESCO,annual,kg,4d782512-402d-38a0-9a9c-ccbbf9dc5626 -2023,Neuquén,II.1.1,0.034265,TJ,N2O,2.0,kg/TJ,0.06853,Naphtha combustion consumption by freight transport,AR-Q,SESCO,annual,kg,96791ba1-94c7-37f1-8d0a-b8d60ede6541 -2023,Rio Negro,II.1.1,0.5825049999999999,TJ,CO2,73300.0,kg/TJ,42697.6165,Naphtha combustion consumption by freight transport,AR-R,SESCO,annual,kg,2989bd7c-d9a4-3f9e-9269-bf67d284a1e5 -2023,Rio Negro,II.1.1,0.5825049999999999,TJ,CH4,0.5,kg/TJ,0.29125249999999997,Naphtha combustion consumption by freight transport,AR-R,SESCO,annual,kg,746c6ed4-3b9c-3d91-b924-e7a3ecbb1c78 -2023,Rio Negro,II.1.1,0.5825049999999999,TJ,N2O,2.0,kg/TJ,1.1650099999999999,Naphtha combustion consumption by freight transport,AR-R,SESCO,annual,kg,64c9ae1e-e114-38f3-b1d2-55e7a015df44 -2023,San Luis,II.1.1,0.9936849999999999,TJ,CO2,73300.0,kg/TJ,72837.1105,Naphtha combustion consumption by freight transport,AR-D,SESCO,annual,kg,6c436c53-5758-3bd9-b6e8-5b557a6e63df -2023,San Luis,II.1.1,0.9936849999999999,TJ,CH4,0.5,kg/TJ,0.49684249999999996,Naphtha combustion consumption by freight transport,AR-D,SESCO,annual,kg,76ad54b7-89e9-3502-be15-add46714a368 -2023,San Luis,II.1.1,0.9936849999999999,TJ,N2O,2.0,kg/TJ,1.9873699999999999,Naphtha combustion consumption by freight transport,AR-D,SESCO,annual,kg,d1f92915-8116-3cb1-8816-e8dabe044896 -2023,Santa Fe,II.1.1,8.669044999999999,TJ,CO2,73300.0,kg/TJ,635440.9984999999,Naphtha combustion consumption by freight transport,AR-S,SESCO,annual,kg,2d73b982-56fd-352a-aa60-61a490f1884d -2023,Santa Fe,II.1.1,8.669044999999999,TJ,CH4,0.5,kg/TJ,4.334522499999999,Naphtha combustion consumption by freight transport,AR-S,SESCO,annual,kg,3f5570d9-2c6e-37c8-96d4-3bf2f801371a -2023,Santa Fe,II.1.1,8.669044999999999,TJ,N2O,2.0,kg/TJ,17.338089999999998,Naphtha combustion consumption by freight transport,AR-S,SESCO,annual,kg,9c5b45e5-f773-32fc-bc05-0e18e01aac36 -2023,Buenos Aires,II.1.1,587.6723999999999,TJ,CO2,74100.0,kg/TJ,43546524.839999996,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,7e061710-4ebc-3bda-9bea-d59264796c8e -2023,Buenos Aires,II.1.1,587.6723999999999,TJ,CH4,3.9,kg/TJ,2291.9223599999996,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,9d037027-40cd-3a26-a798-7149c1c17bcb -2023,Buenos Aires,II.1.1,587.6723999999999,TJ,N2O,3.9,kg/TJ,2291.9223599999996,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,9d037027-40cd-3a26-a798-7149c1c17bcb -2023,Capital Federal,II.1.1,201.69407999999999,TJ,CO2,74100.0,kg/TJ,14945531.328,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,df4b13bb-b11e-35f9-889a-6300a80fc26f -2023,Capital Federal,II.1.1,201.69407999999999,TJ,CH4,3.9,kg/TJ,786.606912,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,041fe182-d606-3355-8cd0-dd2c0a0895df -2023,Capital Federal,II.1.1,201.69407999999999,TJ,N2O,3.9,kg/TJ,786.606912,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,041fe182-d606-3355-8cd0-dd2c0a0895df -2023,Chaco,II.1.1,132.48816,TJ,CO2,74100.0,kg/TJ,9817372.656,Gas Oil combustion consumption by public passenger transport,AR-H,SESCO,annual,kg,49e51009-fe58-3bcb-b19f-45274f8f8066 -2023,Chaco,II.1.1,132.48816,TJ,CH4,3.9,kg/TJ,516.7038239999999,Gas Oil combustion consumption by public passenger transport,AR-H,SESCO,annual,kg,f26f5814-a690-3657-939e-c36593f77289 -2023,Chaco,II.1.1,132.48816,TJ,N2O,3.9,kg/TJ,516.7038239999999,Gas Oil combustion consumption by public passenger transport,AR-H,SESCO,annual,kg,f26f5814-a690-3657-939e-c36593f77289 -2023,Chubut,II.1.1,43.63296,TJ,CO2,74100.0,kg/TJ,3233202.3359999997,Gas Oil combustion consumption by public passenger transport,AR-U,SESCO,annual,kg,3ed7f9b0-426a-3e18-be71-ac2048cb35e3 -2023,Chubut,II.1.1,43.63296,TJ,CH4,3.9,kg/TJ,170.168544,Gas Oil combustion consumption by public passenger transport,AR-U,SESCO,annual,kg,fe269fe8-b6c4-38b1-bf46-e76a1c7603d8 -2023,Chubut,II.1.1,43.63296,TJ,N2O,3.9,kg/TJ,170.168544,Gas Oil combustion consumption by public passenger transport,AR-U,SESCO,annual,kg,fe269fe8-b6c4-38b1-bf46-e76a1c7603d8 -2023,Córdoba,II.1.1,57.4308,TJ,CO2,74100.0,kg/TJ,4255622.28,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,9d4037d4-c9f9-3a12-802f-f684658254df -2023,Córdoba,II.1.1,57.4308,TJ,CH4,3.9,kg/TJ,223.98012,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,64965240-35bb-309e-b8a6-3dca5ad9190f -2023,Córdoba,II.1.1,57.4308,TJ,N2O,3.9,kg/TJ,223.98012,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,64965240-35bb-309e-b8a6-3dca5ad9190f -2023,Entre Rios,II.1.1,45.836279999999995,TJ,CO2,74100.0,kg/TJ,3396468.3479999998,Gas Oil combustion consumption by public passenger transport,AR-E,SESCO,annual,kg,5cbddbb2-065a-3a1a-b802-d266cec26936 -2023,Entre Rios,II.1.1,45.836279999999995,TJ,CH4,3.9,kg/TJ,178.76149199999998,Gas Oil combustion consumption by public passenger transport,AR-E,SESCO,annual,kg,57b1d83a-68e8-3748-af63-0ed8a7c270e5 -2023,Entre Rios,II.1.1,45.836279999999995,TJ,N2O,3.9,kg/TJ,178.76149199999998,Gas Oil combustion consumption by public passenger transport,AR-E,SESCO,annual,kg,57b1d83a-68e8-3748-af63-0ed8a7c270e5 -2023,Mendoza,II.1.1,8.34372,TJ,CO2,74100.0,kg/TJ,618269.652,Gas Oil combustion consumption by public passenger transport,AR-M,SESCO,annual,kg,68c93889-0c59-3f5e-aa55-2e8cfc9b0d61 -2023,Mendoza,II.1.1,8.34372,TJ,CH4,3.9,kg/TJ,32.540507999999996,Gas Oil combustion consumption by public passenger transport,AR-M,SESCO,annual,kg,8bd18e55-7155-3a8f-97ca-ee1cae18af91 -2023,Mendoza,II.1.1,8.34372,TJ,N2O,3.9,kg/TJ,32.540507999999996,Gas Oil combustion consumption by public passenger transport,AR-M,SESCO,annual,kg,8bd18e55-7155-3a8f-97ca-ee1cae18af91 -2023,Rio Negro,II.1.1,42.0798,TJ,CO2,74100.0,kg/TJ,3118113.1799999997,Gas Oil combustion consumption by public passenger transport,AR-R,SESCO,annual,kg,b83ec1d6-8a19-34af-af8b-9ca25f6d7d0a -2023,Rio Negro,II.1.1,42.0798,TJ,CH4,3.9,kg/TJ,164.11122,Gas Oil combustion consumption by public passenger transport,AR-R,SESCO,annual,kg,cfd3388b-6e90-3f5c-b84c-1be77552999a -2023,Rio Negro,II.1.1,42.0798,TJ,N2O,3.9,kg/TJ,164.11122,Gas Oil combustion consumption by public passenger transport,AR-R,SESCO,annual,kg,cfd3388b-6e90-3f5c-b84c-1be77552999a -2023,Santa Fe,II.1.1,434.30688,TJ,CO2,74100.0,kg/TJ,32182139.808,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,0c409504-6d49-3aa5-8d76-2e4885a6452f -2023,Santa Fe,II.1.1,434.30688,TJ,CH4,3.9,kg/TJ,1693.7968319999998,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,908ce5c9-46e0-36a8-b5be-19aaacd138e3 -2023,Santa Fe,II.1.1,434.30688,TJ,N2O,3.9,kg/TJ,1693.7968319999998,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,908ce5c9-46e0-36a8-b5be-19aaacd138e3 -2023,Tucuman,II.1.1,157.66379999999998,TJ,CO2,74100.0,kg/TJ,11682887.579999998,Gas Oil combustion consumption by public passenger transport,AR-T,SESCO,annual,kg,cc402e31-fcfd-3964-a557-0c84a95fd8fb -2023,Tucuman,II.1.1,157.66379999999998,TJ,CH4,3.9,kg/TJ,614.8888199999999,Gas Oil combustion consumption by public passenger transport,AR-T,SESCO,annual,kg,628f4cd0-1643-3bab-bca7-80d5fd61fe88 -2023,Tucuman,II.1.1,157.66379999999998,TJ,N2O,3.9,kg/TJ,614.8888199999999,Gas Oil combustion consumption by public passenger transport,AR-T,SESCO,annual,kg,628f4cd0-1643-3bab-bca7-80d5fd61fe88 -2023,Buenos Aires,II.1.1,700.40292,TJ,CO2,74100.0,kg/TJ,51899856.372,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,e30f41f6-0f8b-393a-ad41-0f7b91513bc8 -2023,Buenos Aires,II.1.1,700.40292,TJ,CH4,3.9,kg/TJ,2731.571388,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,018663f2-9076-32cb-b505-823a09e39310 -2023,Buenos Aires,II.1.1,700.40292,TJ,N2O,3.9,kg/TJ,2731.571388,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,018663f2-9076-32cb-b505-823a09e39310 -2023,Capital Federal,II.1.1,77.62187999999999,TJ,CO2,74100.0,kg/TJ,5751781.307999999,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,a794d947-71fa-36ba-a391-7dfca3633145 -2023,Capital Federal,II.1.1,77.62187999999999,TJ,CH4,3.9,kg/TJ,302.725332,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,e08ee19e-c66e-3df0-a861-72b44cfebd28 -2023,Capital Federal,II.1.1,77.62187999999999,TJ,N2O,3.9,kg/TJ,302.725332,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,e08ee19e-c66e-3df0-a861-72b44cfebd28 -2023,Córdoba,II.1.1,103.62827999999999,TJ,CO2,74100.0,kg/TJ,7678855.5479999995,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,43fdc7b0-1bff-3cad-b714-a1e7a92a304f -2023,Córdoba,II.1.1,103.62827999999999,TJ,CH4,3.9,kg/TJ,404.1502919999999,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,c1c23e61-f84d-3415-80d1-22ba319a5c14 -2023,Córdoba,II.1.1,103.62827999999999,TJ,N2O,3.9,kg/TJ,404.1502919999999,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,c1c23e61-f84d-3415-80d1-22ba319a5c14 -2023,Entre Rios,II.1.1,3.03408,TJ,CO2,74100.0,kg/TJ,224825.32799999998,Gas Oil combustion consumption by public passenger transport,AR-E,SESCO,annual,kg,059ec413-8fd7-3b11-8f2f-68e76df3b0a3 -2023,Entre Rios,II.1.1,3.03408,TJ,CH4,3.9,kg/TJ,11.832911999999999,Gas Oil combustion consumption by public passenger transport,AR-E,SESCO,annual,kg,085f478e-9183-3181-9b7e-6cc510142d12 -2023,Entre Rios,II.1.1,3.03408,TJ,N2O,3.9,kg/TJ,11.832911999999999,Gas Oil combustion consumption by public passenger transport,AR-E,SESCO,annual,kg,085f478e-9183-3181-9b7e-6cc510142d12 -2023,Mendoza,II.1.1,0.50568,TJ,CO2,74100.0,kg/TJ,37470.888,Gas Oil combustion consumption by public passenger transport,AR-M,SESCO,annual,kg,7b5c3439-9baa-3189-ac25-9e10bd354237 -2023,Mendoza,II.1.1,0.50568,TJ,CH4,3.9,kg/TJ,1.9721520000000001,Gas Oil combustion consumption by public passenger transport,AR-M,SESCO,annual,kg,4863ff36-3f71-315f-afa9-228cba621265 -2023,Mendoza,II.1.1,0.50568,TJ,N2O,3.9,kg/TJ,1.9721520000000001,Gas Oil combustion consumption by public passenger transport,AR-M,SESCO,annual,kg,4863ff36-3f71-315f-afa9-228cba621265 -2023,Santa Fe,II.1.1,76.71888,TJ,CO2,74100.0,kg/TJ,5684869.007999999,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,03bade6f-c5d4-3064-b121-1c598fcfe1ec -2023,Santa Fe,II.1.1,76.71888,TJ,CH4,3.9,kg/TJ,299.20363199999997,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,a19fac7e-327d-347d-98b7-9bde216db568 -2023,Santa Fe,II.1.1,76.71888,TJ,N2O,3.9,kg/TJ,299.20363199999997,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,a19fac7e-327d-347d-98b7-9bde216db568 -2023,Buenos Aires,II.1.1,0.06853,TJ,CO2,73300.0,kg/TJ,5023.249,Naphtha combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,34989aa9-fd57-30cc-87ab-b9df38c22441 -2023,Buenos Aires,II.1.1,0.06853,TJ,CH4,0.5,kg/TJ,0.034265,Naphtha combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,a248df0f-843b-347e-bd7f-d919b5cc4bb9 -2023,Buenos Aires,II.1.1,0.06853,TJ,N2O,2.0,kg/TJ,0.13706,Naphtha combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,efff4a9a-dbad-3b75-8612-3b35c385973a -2023,Entre Rios,II.1.1,0.30838499999999996,TJ,CO2,73300.0,kg/TJ,22604.620499999997,Naphtha combustion consumption by public passenger transport,AR-E,SESCO,annual,kg,c8e9b621-406a-3211-8a7a-2c7ee7d21b3b -2023,Entre Rios,II.1.1,0.30838499999999996,TJ,CH4,0.5,kg/TJ,0.15419249999999998,Naphtha combustion consumption by public passenger transport,AR-E,SESCO,annual,kg,38f5897d-3a1a-365c-be6b-778fcaa517c5 -2023,Entre Rios,II.1.1,0.30838499999999996,TJ,N2O,2.0,kg/TJ,0.6167699999999999,Naphtha combustion consumption by public passenger transport,AR-E,SESCO,annual,kg,ea0e6d72-e90e-3f6d-b12d-860eed03e34a -2023,Buenos Aires,II.1.1,0.034265,TJ,CO2,73300.0,kg/TJ,2511.6245,Naphtha combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,da207a9a-c401-36a1-b813-a75d83aa1e40 -2023,Buenos Aires,II.1.1,0.034265,TJ,CH4,0.5,kg/TJ,0.0171325,Naphtha combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,9ae1d432-8fdc-32b3-b35a-79a503b0ab35 -2023,Buenos Aires,II.1.1,0.034265,TJ,N2O,2.0,kg/TJ,0.06853,Naphtha combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,9fb7bfa1-a6a7-3eed-a7ea-24a783ab1383 -2023,Capital Federal,II.1.1,0.75383,TJ,CO2,73300.0,kg/TJ,55255.739,Naphtha combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,5279b8c9-71ca-3223-bfdf-39cb2e905cd8 -2023,Capital Federal,II.1.1,0.75383,TJ,CH4,0.5,kg/TJ,0.376915,Naphtha combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,0460bc36-03c1-37e5-9ffb-7cc8bd10df44 -2023,Capital Federal,II.1.1,0.75383,TJ,N2O,2.0,kg/TJ,1.50766,Naphtha combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,b34e736b-5c77-3ee3-bb15-cb6db9d1d894 -2023,Entre Rios,II.1.1,0.788095,TJ,CO2,73300.0,kg/TJ,57767.3635,Naphtha combustion consumption by public passenger transport,AR-E,SESCO,annual,kg,947cc808-043d-30ee-b581-459592fbbc4d -2023,Entre Rios,II.1.1,0.788095,TJ,CH4,0.5,kg/TJ,0.3940475,Naphtha combustion consumption by public passenger transport,AR-E,SESCO,annual,kg,e6e5f1e3-4f3b-30f7-b7cb-c291dca81ace -2023,Entre Rios,II.1.1,0.788095,TJ,N2O,2.0,kg/TJ,1.57619,Naphtha combustion consumption by public passenger transport,AR-E,SESCO,annual,kg,77c5f9e9-e067-325e-a550-cc790f219de5 -2023,Capital Federal,II.5.1,60.15939999999999,TJ,CO2,69300.0,kg/TJ,4169046.4199999995,Motor Gasoline combustion consumption by agriculture machines,AR-C,SESCO,annual,kg,f6c5eae5-911f-352d-b04a-c4777d186203 -2023,Capital Federal,II.5.1,60.15939999999999,TJ,CH4,33.0,kg/TJ,1985.2601999999997,Motor Gasoline combustion consumption by agriculture machines,AR-C,SESCO,annual,kg,4bb97601-314b-32d1-9689-5069d8545f04 -2023,Capital Federal,II.5.1,60.15939999999999,TJ,N2O,3.2,kg/TJ,192.51008,Motor Gasoline combustion consumption by agriculture machines,AR-C,SESCO,annual,kg,6a3e936a-1893-32de-9d7b-49bd7b4df9b2 -2023,Buenos Aires,II.5.1,816.63708,TJ,CO2,74100.0,kg/TJ,60512807.628,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,51b7f418-52b3-354f-be0c-24c3ba661532 -2023,Buenos Aires,II.5.1,816.63708,TJ,CH4,3.9,kg/TJ,3184.884612,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,73351c39-f8c3-333e-81f3-2a78852721be -2023,Buenos Aires,II.5.1,816.63708,TJ,N2O,3.9,kg/TJ,3184.884612,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,73351c39-f8c3-333e-81f3-2a78852721be -2023,Chaco,II.5.1,58.22544,TJ,CO2,74100.0,kg/TJ,4314505.104,Gas Oil combustion consumption by agriculture machines,AR-H,SESCO,annual,kg,8a2185cb-901b-3c8a-a651-504980b0a44b -2023,Chaco,II.5.1,58.22544,TJ,CH4,3.9,kg/TJ,227.079216,Gas Oil combustion consumption by agriculture machines,AR-H,SESCO,annual,kg,c769450f-c298-313a-b512-cf303e4d2625 -2023,Chaco,II.5.1,58.22544,TJ,N2O,3.9,kg/TJ,227.079216,Gas Oil combustion consumption by agriculture machines,AR-H,SESCO,annual,kg,c769450f-c298-313a-b512-cf303e4d2625 -2023,Corrientes,II.5.1,48.256319999999995,TJ,CO2,74100.0,kg/TJ,3575793.3119999995,Gas Oil combustion consumption by agriculture machines,AR-W,SESCO,annual,kg,eccb99c5-8da8-35fb-b597-9da1271da4b7 -2023,Corrientes,II.5.1,48.256319999999995,TJ,CH4,3.9,kg/TJ,188.19964799999997,Gas Oil combustion consumption by agriculture machines,AR-W,SESCO,annual,kg,f69baf22-a7de-3a9e-9a07-16eb62cebb18 -2023,Corrientes,II.5.1,48.256319999999995,TJ,N2O,3.9,kg/TJ,188.19964799999997,Gas Oil combustion consumption by agriculture machines,AR-W,SESCO,annual,kg,f69baf22-a7de-3a9e-9a07-16eb62cebb18 -2023,Córdoba,II.5.1,375.28679999999997,TJ,CO2,74100.0,kg/TJ,27808751.88,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,7c18fa6b-84de-36a9-ba5c-4c09ce101361 -2023,Córdoba,II.5.1,375.28679999999997,TJ,CH4,3.9,kg/TJ,1463.6185199999998,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,757f74d3-1324-3483-bb95-6d8153daa34c -2023,Córdoba,II.5.1,375.28679999999997,TJ,N2O,3.9,kg/TJ,1463.6185199999998,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,757f74d3-1324-3483-bb95-6d8153daa34c -2023,Entre Rios,II.5.1,196.63728,TJ,CO2,74100.0,kg/TJ,14570822.448,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,3f42e127-765b-3156-b86f-ac2f08b98fe4 -2023,Entre Rios,II.5.1,196.63728,TJ,CH4,3.9,kg/TJ,766.885392,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,46da741e-6fd9-337f-b688-97bdacbad836 -2023,Entre Rios,II.5.1,196.63728,TJ,N2O,3.9,kg/TJ,766.885392,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,46da741e-6fd9-337f-b688-97bdacbad836 -2023,La Pampa,II.5.1,99.61896,TJ,CO2,74100.0,kg/TJ,7381764.936,Gas Oil combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,944bcdc5-d406-33dd-b955-e7ef7fa7c03e -2023,La Pampa,II.5.1,99.61896,TJ,CH4,3.9,kg/TJ,388.513944,Gas Oil combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,eb6f3bdc-88fb-3f96-937d-e86b58d86536 -2023,La Pampa,II.5.1,99.61896,TJ,N2O,3.9,kg/TJ,388.513944,Gas Oil combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,eb6f3bdc-88fb-3f96-937d-e86b58d86536 -2023,Salta,II.5.1,169.98072,TJ,CO2,74100.0,kg/TJ,12595571.352,Gas Oil combustion consumption by agriculture machines,AR-A,SESCO,annual,kg,db9a9aae-6218-3926-af7e-90078e2af68a -2023,Salta,II.5.1,169.98072,TJ,CH4,3.9,kg/TJ,662.924808,Gas Oil combustion consumption by agriculture machines,AR-A,SESCO,annual,kg,92c0e804-d882-3e23-8bb8-d68be8379246 -2023,Salta,II.5.1,169.98072,TJ,N2O,3.9,kg/TJ,662.924808,Gas Oil combustion consumption by agriculture machines,AR-A,SESCO,annual,kg,92c0e804-d882-3e23-8bb8-d68be8379246 -2023,Santa Fe,II.5.1,922.2880799999999,TJ,CO2,74100.0,kg/TJ,68341546.728,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,01acc37c-7089-3f01-8263-46f4e6276766 -2023,Santa Fe,II.5.1,922.2880799999999,TJ,CH4,3.9,kg/TJ,3596.9235119999994,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,d25e1f32-93e0-3788-a234-a7d8090fdba2 -2023,Santa Fe,II.5.1,922.2880799999999,TJ,N2O,3.9,kg/TJ,3596.9235119999994,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,d25e1f32-93e0-3788-a234-a7d8090fdba2 -2023,Tucuman,II.5.1,226.00284,TJ,CO2,74100.0,kg/TJ,16746810.444,Gas Oil combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,139a8503-924b-379e-a313-1c988306eaaf -2023,Tucuman,II.5.1,226.00284,TJ,CH4,3.9,kg/TJ,881.411076,Gas Oil combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,d227f109-356d-3252-86e6-697a82c28e7a -2023,Tucuman,II.5.1,226.00284,TJ,N2O,3.9,kg/TJ,881.411076,Gas Oil combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,d227f109-356d-3252-86e6-697a82c28e7a -2023,Buenos Aires,II.5.1,70.83131999999999,TJ,CO2,74100.0,kg/TJ,5248600.811999999,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,c7c9df8f-f94e-3362-b01e-7b70e839295d -2023,Buenos Aires,II.5.1,70.83131999999999,TJ,CH4,3.9,kg/TJ,276.242148,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,74dc5c99-dd4e-3b1c-a297-35b5803a5583 -2023,Buenos Aires,II.5.1,70.83131999999999,TJ,N2O,3.9,kg/TJ,276.242148,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,74dc5c99-dd4e-3b1c-a297-35b5803a5583 -2023,Córdoba,II.5.1,25.139519999999997,TJ,CO2,74100.0,kg/TJ,1862838.4319999998,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,2c94d2dd-1478-34ee-853a-622f122f418e -2023,Córdoba,II.5.1,25.139519999999997,TJ,CH4,3.9,kg/TJ,98.04412799999999,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,4d0e9f15-d80b-3699-bbe6-d3ad19b6289a -2023,Córdoba,II.5.1,25.139519999999997,TJ,N2O,3.9,kg/TJ,98.04412799999999,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,4d0e9f15-d80b-3699-bbe6-d3ad19b6289a -2023,Entre Rios,II.5.1,52.33788,TJ,CO2,74100.0,kg/TJ,3878236.908,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,da6e81b0-a1a0-343e-8668-dbba8cd44851 -2023,Entre Rios,II.5.1,52.33788,TJ,CH4,3.9,kg/TJ,204.117732,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,123aee52-243b-3541-9cdd-3252dadeee34 -2023,Entre Rios,II.5.1,52.33788,TJ,N2O,3.9,kg/TJ,204.117732,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,123aee52-243b-3541-9cdd-3252dadeee34 -2023,La Pampa,II.5.1,8.09088,TJ,CO2,74100.0,kg/TJ,599534.208,Gas Oil combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,725f5f64-44ce-3811-bab2-38a76b5ac587 -2023,La Pampa,II.5.1,8.09088,TJ,CH4,3.9,kg/TJ,31.554432000000002,Gas Oil combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,369e9e03-2be1-3015-a67d-a7769e20eb15 -2023,La Pampa,II.5.1,8.09088,TJ,N2O,3.9,kg/TJ,31.554432000000002,Gas Oil combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,369e9e03-2be1-3015-a67d-a7769e20eb15 -2023,Santa Fe,II.5.1,135.30552,TJ,CO2,74100.0,kg/TJ,10026139.032,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,49d03cf2-1a14-3b3b-905c-07957a308ee4 -2023,Santa Fe,II.5.1,135.30552,TJ,CH4,3.9,kg/TJ,527.691528,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,ae511163-2ec1-3d5b-a554-5524d6e00285 -2023,Santa Fe,II.5.1,135.30552,TJ,N2O,3.9,kg/TJ,527.691528,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,ae511163-2ec1-3d5b-a554-5524d6e00285 -2023,Tucuman,II.5.1,4.659479999999999,TJ,CO2,74100.0,kg/TJ,345267.46799999994,Gas Oil combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,152cbf9d-146b-3fc9-a8b5-a19c366f9134 -2023,Tucuman,II.5.1,4.659479999999999,TJ,CH4,3.9,kg/TJ,18.171971999999997,Gas Oil combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,3d6a3835-a557-3bae-a53e-1866d640a271 -2023,Tucuman,II.5.1,4.659479999999999,TJ,N2O,3.9,kg/TJ,18.171971999999997,Gas Oil combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,3d6a3835-a557-3bae-a53e-1866d640a271 -2023,Corrientes,II.5.1,1.2335399999999999,TJ,CO2,73300.0,kg/TJ,90418.48199999999,Naphtha combustion consumption by agriculture machines,AR-W,SESCO,annual,kg,25ae34ed-267b-3e3d-851a-599d3de2372f -2023,Corrientes,II.5.1,1.2335399999999999,TJ,CH4,0.5,kg/TJ,0.6167699999999999,Naphtha combustion consumption by agriculture machines,AR-W,SESCO,annual,kg,9ff35404-da6c-3263-ab8a-8183bc574fc3 -2023,Corrientes,II.5.1,1.2335399999999999,TJ,N2O,2.0,kg/TJ,2.4670799999999997,Naphtha combustion consumption by agriculture machines,AR-W,SESCO,annual,kg,f089606b-25b8-3bb7-b048-a3dd2a7d883f -2023,Córdoba,II.5.1,13.0207,TJ,CO2,73300.0,kg/TJ,954417.3099999999,Naphtha combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,66f064a7-91da-3452-9b76-40404b68d482 -2023,Córdoba,II.5.1,13.0207,TJ,CH4,0.5,kg/TJ,6.51035,Naphtha combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,de2394bb-5e98-3f4a-ae72-19c4c6d6000c -2023,Córdoba,II.5.1,13.0207,TJ,N2O,2.0,kg/TJ,26.0414,Naphtha combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,2cf620f2-ba23-36d7-815b-6b82f612b0a1 -2023,Salta,II.5.1,0.23985499999999998,TJ,CO2,73300.0,kg/TJ,17581.371499999997,Naphtha combustion consumption by agriculture machines,AR-A,SESCO,annual,kg,907eec37-5ecb-3f74-b9d8-490004c7520e -2023,Salta,II.5.1,0.23985499999999998,TJ,CH4,0.5,kg/TJ,0.11992749999999999,Naphtha combustion consumption by agriculture machines,AR-A,SESCO,annual,kg,934f44bb-6bcb-37fa-994c-f6006432b84e -2023,Salta,II.5.1,0.23985499999999998,TJ,N2O,2.0,kg/TJ,0.47970999999999997,Naphtha combustion consumption by agriculture machines,AR-A,SESCO,annual,kg,9deb1794-083e-37e0-a47a-7cec40dce6a9 -2023,Santa Fe,II.5.1,111.29271999999999,TJ,CO2,73300.0,kg/TJ,8157756.375999999,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,18c1e591-63ff-3b9d-b206-934d0e3a3035 -2023,Santa Fe,II.5.1,111.29271999999999,TJ,CH4,0.5,kg/TJ,55.646359999999994,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,8cd5b956-f6c8-358b-b053-1199c49ba28b -2023,Santa Fe,II.5.1,111.29271999999999,TJ,N2O,2.0,kg/TJ,222.58543999999998,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,21109993-1449-3d3e-859a-bdb00dad207c -2023,Córdoba,II.5.1,2.3300199999999998,TJ,CO2,73300.0,kg/TJ,170790.466,Naphtha combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,d20066f9-16d6-3337-a316-5bd738dcfb54 -2023,Córdoba,II.5.1,2.3300199999999998,TJ,CH4,0.5,kg/TJ,1.1650099999999999,Naphtha combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,72ccfb1f-8de7-3683-9e90-fcc77dff605f -2023,Córdoba,II.5.1,2.3300199999999998,TJ,N2O,2.0,kg/TJ,4.6600399999999995,Naphtha combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,4d9e7f3b-4fc1-34fc-8c34-d8ffa26c43b0 -2023,Santa Fe,II.5.1,22.54637,TJ,CO2,73300.0,kg/TJ,1652648.9209999999,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,2bcbb5af-55d1-3705-88c1-1ce716701368 -2023,Santa Fe,II.5.1,22.54637,TJ,CH4,0.5,kg/TJ,11.273185,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,7fedb728-bbff-3951-ac5f-721bab66d305 -2023,Santa Fe,II.5.1,22.54637,TJ,N2O,2.0,kg/TJ,45.09274,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,7ead56d4-64a7-3b97-b6e1-803921eb325c -2023,Tucuman,II.5.1,1.1992749999999999,TJ,CO2,73300.0,kg/TJ,87906.85749999998,Naphtha combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,2d55b4cd-9b6f-3037-aaf3-5b38ec5f8a9d -2023,Tucuman,II.5.1,1.1992749999999999,TJ,CH4,0.5,kg/TJ,0.5996374999999999,Naphtha combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,3f792f81-5d61-3695-9a96-0eea4ecd6f0a -2023,Tucuman,II.5.1,1.1992749999999999,TJ,N2O,2.0,kg/TJ,2.3985499999999997,Naphtha combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,905d627e-3fbf-34bd-ac24-a7b923bea618 -2023,Buenos Aires,II.2.1,140.07335999999998,TJ,CO2,74100.0,kg/TJ,10379435.975999998,Gas Oil combustion consumption by railway transport,AR-B,SESCO,annual,kg,87fe669e-bd22-3e0f-ae9a-ca7740e669e0 -2023,Buenos Aires,II.2.1,140.07335999999998,TJ,CH4,3.9,kg/TJ,546.2861039999999,Gas Oil combustion consumption by railway transport,AR-B,SESCO,annual,kg,ad8993cc-a732-3d1e-b252-c74f4e6b1add -2023,Buenos Aires,II.2.1,140.07335999999998,TJ,N2O,3.9,kg/TJ,546.2861039999999,Gas Oil combustion consumption by railway transport,AR-B,SESCO,annual,kg,ad8993cc-a732-3d1e-b252-c74f4e6b1add -2023,Buenos Aires,II.1.1,1.1961,TJ,CO2,69300.0,kg/TJ,82889.73,Motor Gasoline combustion consumption by freight transport,AR-B,SESCO,annual,kg,62afde42-3063-301e-85f1-4065eb644840 -2023,Buenos Aires,II.1.1,1.1961,TJ,CH4,33.0,kg/TJ,39.4713,Motor Gasoline combustion consumption by freight transport,AR-B,SESCO,annual,kg,786ebfd4-c51f-35df-9c5b-e8a871a86484 -2023,Buenos Aires,II.1.1,1.1961,TJ,N2O,3.2,kg/TJ,3.82752,Motor Gasoline combustion consumption by freight transport,AR-B,SESCO,annual,kg,19a14e4d-1496-3233-be72-a0d23f54fa09 -2023,Buenos Aires,II.1.1,3.90096,TJ,CO2,74100.0,kg/TJ,289061.136,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,64494855-31b7-3c00-b78b-d67576679464 -2023,Buenos Aires,II.1.1,3.90096,TJ,CH4,3.9,kg/TJ,15.213744,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,4af3ae56-b4f5-3760-bf34-c0b7003b66c9 -2023,Buenos Aires,II.1.1,3.90096,TJ,N2O,3.9,kg/TJ,15.213744,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,4af3ae56-b4f5-3760-bf34-c0b7003b66c9 -2023,Entre Rios,II.1.1,15.60384,TJ,CO2,74100.0,kg/TJ,1156244.544,Gas Oil combustion consumption by freight transport,AR-E,SESCO,annual,kg,a50b8522-09af-336b-b040-4564e26b2fbf -2023,Entre Rios,II.1.1,15.60384,TJ,CH4,3.9,kg/TJ,60.854976,Gas Oil combustion consumption by freight transport,AR-E,SESCO,annual,kg,1bc1d193-d309-3290-923a-a7c914c87195 -2023,Entre Rios,II.1.1,15.60384,TJ,N2O,3.9,kg/TJ,60.854976,Gas Oil combustion consumption by freight transport,AR-E,SESCO,annual,kg,1bc1d193-d309-3290-923a-a7c914c87195 -2023,Buenos Aires,II.1.1,2.78124,TJ,CO2,74100.0,kg/TJ,206089.884,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,e1663f3a-07e0-38aa-a8ee-461d90389c2a -2023,Buenos Aires,II.1.1,2.78124,TJ,CH4,3.9,kg/TJ,10.846836,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,7313a014-e16d-333a-96ff-a7e82c55af01 -2023,Buenos Aires,II.1.1,2.78124,TJ,N2O,3.9,kg/TJ,10.846836,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,7313a014-e16d-333a-96ff-a7e82c55af01 -2023,Buenos Aires,II.1.1,2707.84416,TJ,CO2,74100.0,kg/TJ,200651252.256,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,3d8ff9ac-50e3-3a4b-aa5b-1fad36431691 -2023,Buenos Aires,II.1.1,2707.84416,TJ,CH4,3.9,kg/TJ,10560.592224,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,5a3f3d52-f8d7-351f-a3d1-bd9df6d6a56d -2023,Buenos Aires,II.1.1,2707.84416,TJ,N2O,3.9,kg/TJ,10560.592224,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,5a3f3d52-f8d7-351f-a3d1-bd9df6d6a56d -2023,Capital Federal,II.1.1,141.37368,TJ,CO2,74100.0,kg/TJ,10475789.688000001,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,3a48334f-faaa-3c1f-944b-1a77bc321c42 -2023,Capital Federal,II.1.1,141.37368,TJ,CH4,3.9,kg/TJ,551.357352,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,9b9a49b1-d029-3601-af2f-1a62ab4ea9d5 -2023,Capital Federal,II.1.1,141.37368,TJ,N2O,3.9,kg/TJ,551.357352,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,9b9a49b1-d029-3601-af2f-1a62ab4ea9d5 -2023,Corrientes,II.1.1,0.57792,TJ,CO2,74100.0,kg/TJ,42823.871999999996,Gas Oil combustion consumption by public passenger transport,AR-W,SESCO,annual,kg,9ab138d4-546f-33bc-8972-d411d127d675 -2023,Corrientes,II.1.1,0.57792,TJ,CH4,3.9,kg/TJ,2.253888,Gas Oil combustion consumption by public passenger transport,AR-W,SESCO,annual,kg,4617c8f5-b0e3-39b3-b5f2-4b8d79287972 -2023,Corrientes,II.1.1,0.57792,TJ,N2O,3.9,kg/TJ,2.253888,Gas Oil combustion consumption by public passenger transport,AR-W,SESCO,annual,kg,4617c8f5-b0e3-39b3-b5f2-4b8d79287972 -2023,Buenos Aires,II.1.1,2397.06768,TJ,CO2,74100.0,kg/TJ,177622715.088,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,1a8ecf0c-9d12-39b1-b506-a8425decb608 -2023,Buenos Aires,II.1.1,2397.06768,TJ,CH4,3.9,kg/TJ,9348.563952,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,4c3666a1-51df-31bb-8e5a-42eb2d6f1a42 -2023,Buenos Aires,II.1.1,2397.06768,TJ,N2O,3.9,kg/TJ,9348.563952,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,4c3666a1-51df-31bb-8e5a-42eb2d6f1a42 -2023,Capital Federal,II.1.1,36.228359999999995,TJ,CO2,74100.0,kg/TJ,2684521.476,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,c1c81b94-3de8-3f31-a3f3-d92db71a31e2 -2023,Capital Federal,II.1.1,36.228359999999995,TJ,CH4,3.9,kg/TJ,141.29060399999997,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,bf34f3de-b036-3328-ba93-ec069ee14a9c -2023,Capital Federal,II.1.1,36.228359999999995,TJ,N2O,3.9,kg/TJ,141.29060399999997,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,bf34f3de-b036-3328-ba93-ec069ee14a9c -2023,Corrientes,II.1.1,43.45236,TJ,CO2,74100.0,kg/TJ,3219819.8759999997,Gas Oil combustion consumption by public passenger transport,AR-W,SESCO,annual,kg,6cf948d0-7bdc-325d-8efc-d45d1325ce93 -2023,Corrientes,II.1.1,43.45236,TJ,CH4,3.9,kg/TJ,169.464204,Gas Oil combustion consumption by public passenger transport,AR-W,SESCO,annual,kg,1e305462-7568-3265-86f1-ac8e74228731 -2023,Corrientes,II.1.1,43.45236,TJ,N2O,3.9,kg/TJ,169.464204,Gas Oil combustion consumption by public passenger transport,AR-W,SESCO,annual,kg,1e305462-7568-3265-86f1-ac8e74228731 -2023,Buenos Aires,II.5.1,2761.7173567199998,TJ,CO2,74100.0,kg/TJ,204643256.13295197,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,8063c84b-3419-3665-a9c6-07e4589f717a -2023,Buenos Aires,II.5.1,2761.7173567199998,TJ,CH4,3.9,kg/TJ,10770.697691207999,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,ec3860e2-e26f-323c-bb4e-eecef314b8fa -2023,Buenos Aires,II.5.1,2761.7173567199998,TJ,N2O,3.9,kg/TJ,10770.697691207999,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,ec3860e2-e26f-323c-bb4e-eecef314b8fa -2023,Capital Federal,II.5.1,207.4935072,TJ,CO2,74100.0,kg/TJ,15375268.883520002,Gas Oil combustion consumption by agriculture machines,AR-C,SESCO,annual,kg,d20a25fa-13ca-3995-b5a5-0d90130d7cee -2023,Capital Federal,II.5.1,207.4935072,TJ,CH4,3.9,kg/TJ,809.22467808,Gas Oil combustion consumption by agriculture machines,AR-C,SESCO,annual,kg,c3858901-00e6-38ff-a638-01ebd35edbe5 -2023,Capital Federal,II.5.1,207.4935072,TJ,N2O,3.9,kg/TJ,809.22467808,Gas Oil combustion consumption by agriculture machines,AR-C,SESCO,annual,kg,c3858901-00e6-38ff-a638-01ebd35edbe5 -2023,Córdoba,II.5.1,1519.1913072,TJ,CO2,74100.0,kg/TJ,112572075.86352,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,2754051c-023f-3051-94b9-f2aad0cb36ed -2023,Córdoba,II.5.1,1519.1913072,TJ,CH4,3.9,kg/TJ,5924.84609808,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,4096e805-5f7d-3dbb-8bcf-e46ca8ec79f6 -2023,Córdoba,II.5.1,1519.1913072,TJ,N2O,3.9,kg/TJ,5924.84609808,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,4096e805-5f7d-3dbb-8bcf-e46ca8ec79f6 -2023,Entre Rios,II.5.1,415.32390564,TJ,CO2,74100.0,kg/TJ,30775501.407924,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,b5127e93-fe55-3bd4-a767-b29b4e3e45ed -2023,Entre Rios,II.5.1,415.32390564,TJ,CH4,3.9,kg/TJ,1619.763231996,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,e3cf4510-b439-34b4-8e0e-4dfb7f0532a5 -2023,Entre Rios,II.5.1,415.32390564,TJ,N2O,3.9,kg/TJ,1619.763231996,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,e3cf4510-b439-34b4-8e0e-4dfb7f0532a5 -2023,Jujuy,II.5.1,5.06236248,TJ,CO2,74100.0,kg/TJ,375121.059768,Gas Oil combustion consumption by agriculture machines,AR-Y,SESCO,annual,kg,884f2c09-38f2-3a44-9c02-395a897f865d -2023,Jujuy,II.5.1,5.06236248,TJ,CH4,3.9,kg/TJ,19.743213672,Gas Oil combustion consumption by agriculture machines,AR-Y,SESCO,annual,kg,a1c3bbdc-bfe6-33a4-af76-71e9ab5a1ca3 -2023,Jujuy,II.5.1,5.06236248,TJ,N2O,3.9,kg/TJ,19.743213672,Gas Oil combustion consumption by agriculture machines,AR-Y,SESCO,annual,kg,a1c3bbdc-bfe6-33a4-af76-71e9ab5a1ca3 -2023,La Pampa,II.5.1,229.78323143999998,TJ,CO2,74100.0,kg/TJ,17026937.449704,Gas Oil combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,1ad2cda7-1f0c-3a86-84fb-31949b145039 -2023,La Pampa,II.5.1,229.78323143999998,TJ,CH4,3.9,kg/TJ,896.1546026159999,Gas Oil combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,84be14ab-0c8f-331d-9c38-6b44c8f1455b -2023,La Pampa,II.5.1,229.78323143999998,TJ,N2O,3.9,kg/TJ,896.1546026159999,Gas Oil combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,84be14ab-0c8f-331d-9c38-6b44c8f1455b -2023,Rio Negro,II.5.1,156.66193956,TJ,CO2,74100.0,kg/TJ,11608649.721396001,Gas Oil combustion consumption by agriculture machines,AR-R,SESCO,annual,kg,9ca78019-9bfb-399a-963f-1a4bba1c03ec -2023,Rio Negro,II.5.1,156.66193956,TJ,CH4,3.9,kg/TJ,610.981564284,Gas Oil combustion consumption by agriculture machines,AR-R,SESCO,annual,kg,b1343d37-53a1-38a6-a1ab-bd778d041313 -2023,Rio Negro,II.5.1,156.66193956,TJ,N2O,3.9,kg/TJ,610.981564284,Gas Oil combustion consumption by agriculture machines,AR-R,SESCO,annual,kg,b1343d37-53a1-38a6-a1ab-bd778d041313 -2023,San Luis,II.5.1,16.8618996,TJ,CO2,74100.0,kg/TJ,1249466.7603600002,Gas Oil combustion consumption by agriculture machines,AR-D,SESCO,annual,kg,448129ac-8704-30ce-8e4f-e46ec19ad129 -2023,San Luis,II.5.1,16.8618996,TJ,CH4,3.9,kg/TJ,65.76140844,Gas Oil combustion consumption by agriculture machines,AR-D,SESCO,annual,kg,57a38a0d-c910-3e88-926c-3233c73d3821 -2023,San Luis,II.5.1,16.8618996,TJ,N2O,3.9,kg/TJ,65.76140844,Gas Oil combustion consumption by agriculture machines,AR-D,SESCO,annual,kg,57a38a0d-c910-3e88-926c-3233c73d3821 -2023,Santa Fe,II.5.1,3773.3627408399993,TJ,CO2,74100.0,kg/TJ,279606179.096244,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,66871ea4-e9a8-3ffb-934a-c756e4f35dfd -2023,Santa Fe,II.5.1,3773.3627408399993,TJ,CH4,3.9,kg/TJ,14716.114689275997,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,2928fb60-62dd-3691-ac24-ba4898d3c957 -2023,Santa Fe,II.5.1,3773.3627408399993,TJ,N2O,3.9,kg/TJ,14716.114689275997,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,2928fb60-62dd-3691-ac24-ba4898d3c957 -2023,Santiago del Estero,II.5.1,108.144183,TJ,CO2,74100.0,kg/TJ,8013483.960299999,Gas Oil combustion consumption by agriculture machines,AR-G,SESCO,annual,kg,110523e4-6b1d-30c0-a77f-ba5f830fa79e -2023,Santiago del Estero,II.5.1,108.144183,TJ,CH4,3.9,kg/TJ,421.7623137,Gas Oil combustion consumption by agriculture machines,AR-G,SESCO,annual,kg,b63db65e-5db5-3920-b78f-2199bb53c9bc -2023,Santiago del Estero,II.5.1,108.144183,TJ,N2O,3.9,kg/TJ,421.7623137,Gas Oil combustion consumption by agriculture machines,AR-G,SESCO,annual,kg,b63db65e-5db5-3920-b78f-2199bb53c9bc -2023,Tucuman,II.5.1,56.525849519999994,TJ,CO2,74100.0,kg/TJ,4188565.4494319996,Gas Oil combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,1bc9f96c-afb4-3a69-80f2-217f57121efc -2023,Tucuman,II.5.1,56.525849519999994,TJ,CH4,3.9,kg/TJ,220.45081312799996,Gas Oil combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,6e250afe-6dc8-34cd-a4f0-76e3ca137aa5 -2023,Tucuman,II.5.1,56.525849519999994,TJ,N2O,3.9,kg/TJ,220.45081312799996,Gas Oil combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,6e250afe-6dc8-34cd-a4f0-76e3ca137aa5 -2023,Buenos Aires,II.5.1,151.70728692,TJ,CO2,74100.0,kg/TJ,11241509.960772,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,6023ec96-21f8-3ada-be77-ffb4667e6f9b -2023,Buenos Aires,II.5.1,151.70728692,TJ,CH4,3.9,kg/TJ,591.658418988,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,7fadf842-9b45-30c6-a81a-169f2b6e7539 -2023,Buenos Aires,II.5.1,151.70728692,TJ,N2O,3.9,kg/TJ,591.658418988,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,7fadf842-9b45-30c6-a81a-169f2b6e7539 -2023,Capital Federal,II.5.1,21.19308492,TJ,CO2,74100.0,kg/TJ,1570407.592572,Gas Oil combustion consumption by agriculture machines,AR-C,SESCO,annual,kg,74467e28-9747-35ef-93e3-e88462300c3a -2023,Capital Federal,II.5.1,21.19308492,TJ,CH4,3.9,kg/TJ,82.653031188,Gas Oil combustion consumption by agriculture machines,AR-C,SESCO,annual,kg,ffa5b623-2ed3-33db-879d-e263bbb5997f -2023,Capital Federal,II.5.1,21.19308492,TJ,N2O,3.9,kg/TJ,82.653031188,Gas Oil combustion consumption by agriculture machines,AR-C,SESCO,annual,kg,ffa5b623-2ed3-33db-879d-e263bbb5997f -2023,Córdoba,II.5.1,54.02266128,TJ,CO2,74100.0,kg/TJ,4003079.200848,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,71b0aeb4-0950-3d8f-a031-03e8486548db -2023,Córdoba,II.5.1,54.02266128,TJ,CH4,3.9,kg/TJ,210.688378992,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,46b49caa-5849-36d0-bf7e-a3eda693418a -2023,Córdoba,II.5.1,54.02266128,TJ,N2O,3.9,kg/TJ,210.688378992,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,46b49caa-5849-36d0-bf7e-a3eda693418a -2023,Entre Rios,II.5.1,34.52858892,TJ,CO2,74100.0,kg/TJ,2558568.4389719996,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,8b5d2fcf-329f-3518-881d-55df6145d7a7 -2023,Entre Rios,II.5.1,34.52858892,TJ,CH4,3.9,kg/TJ,134.661496788,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,924d6385-5f3c-399e-85ad-de697e7b5001 -2023,Entre Rios,II.5.1,34.52858892,TJ,N2O,3.9,kg/TJ,134.661496788,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,924d6385-5f3c-399e-85ad-de697e7b5001 -2023,Jujuy,II.5.1,33.1316118,TJ,CO2,74100.0,kg/TJ,2455052.43438,Gas Oil combustion consumption by agriculture machines,AR-Y,SESCO,annual,kg,16c6b80d-38c6-37dd-85b3-e683c9be49bb -2023,Jujuy,II.5.1,33.1316118,TJ,CH4,3.9,kg/TJ,129.21328602,Gas Oil combustion consumption by agriculture machines,AR-Y,SESCO,annual,kg,46d6a79f-e40f-32bb-be91-7f038c0c3f3e -2023,Jujuy,II.5.1,33.1316118,TJ,N2O,3.9,kg/TJ,129.21328602,Gas Oil combustion consumption by agriculture machines,AR-Y,SESCO,annual,kg,46d6a79f-e40f-32bb-be91-7f038c0c3f3e -2023,La Pampa,II.5.1,10.032691199999999,TJ,CO2,74100.0,kg/TJ,743422.4179199999,Gas Oil combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,80859af7-7fed-3a12-ac40-ec3bbe5f0936 -2023,La Pampa,II.5.1,10.032691199999999,TJ,CH4,3.9,kg/TJ,39.127495679999996,Gas Oil combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,4b010210-ec21-3430-a296-adf4467e67f2 -2023,La Pampa,II.5.1,10.032691199999999,TJ,N2O,3.9,kg/TJ,39.127495679999996,Gas Oil combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,4b010210-ec21-3430-a296-adf4467e67f2 -2023,Rio Negro,II.5.1,237.68408412,TJ,CO2,74100.0,kg/TJ,17612390.633292,Gas Oil combustion consumption by agriculture machines,AR-R,SESCO,annual,kg,2e0eb131-972d-30ec-aafd-63ae85839dad -2023,Rio Negro,II.5.1,237.68408412,TJ,CH4,3.9,kg/TJ,926.967928068,Gas Oil combustion consumption by agriculture machines,AR-R,SESCO,annual,kg,b71aa281-1ce4-39aa-a70d-fdf87fc65dcc -2023,Rio Negro,II.5.1,237.68408412,TJ,N2O,3.9,kg/TJ,926.967928068,Gas Oil combustion consumption by agriculture machines,AR-R,SESCO,annual,kg,b71aa281-1ce4-39aa-a70d-fdf87fc65dcc -2023,San Luis,II.5.1,3.7010358,TJ,CO2,74100.0,kg/TJ,274246.75278,Gas Oil combustion consumption by agriculture machines,AR-D,SESCO,annual,kg,8765ebd3-b6e6-36df-8bd0-2327d8c46efc -2023,San Luis,II.5.1,3.7010358,TJ,CH4,3.9,kg/TJ,14.43403962,Gas Oil combustion consumption by agriculture machines,AR-D,SESCO,annual,kg,f8ec632e-fab5-3758-9add-365cfb40a220 -2023,San Luis,II.5.1,3.7010358,TJ,N2O,3.9,kg/TJ,14.43403962,Gas Oil combustion consumption by agriculture machines,AR-D,SESCO,annual,kg,f8ec632e-fab5-3758-9add-365cfb40a220 -2023,Santa Fe,II.5.1,174.20462891999998,TJ,CO2,74100.0,kg/TJ,12908563.002971997,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,1e64b400-61d6-388a-9b63-bbe00aa069e0 -2023,Santa Fe,II.5.1,174.20462891999998,TJ,CH4,3.9,kg/TJ,679.3980527879999,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,2dd35e43-5f37-3c0b-bdc7-25589d6317d2 -2023,Santa Fe,II.5.1,174.20462891999998,TJ,N2O,3.9,kg/TJ,679.3980527879999,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,2dd35e43-5f37-3c0b-bdc7-25589d6317d2 -2023,Santiago del Estero,II.5.1,2.61465456,TJ,CO2,74100.0,kg/TJ,193745.90289599999,Gas Oil combustion consumption by agriculture machines,AR-G,SESCO,annual,kg,e655b8a0-5976-307c-890a-d4c7f460ac9c -2023,Santiago del Estero,II.5.1,2.61465456,TJ,CH4,3.9,kg/TJ,10.197152784,Gas Oil combustion consumption by agriculture machines,AR-G,SESCO,annual,kg,b5a2c5e6-c604-3cbf-b3da-c92886204c85 -2023,Santiago del Estero,II.5.1,2.61465456,TJ,N2O,3.9,kg/TJ,10.197152784,Gas Oil combustion consumption by agriculture machines,AR-G,SESCO,annual,kg,b5a2c5e6-c604-3cbf-b3da-c92886204c85 -2023,Tucuman,II.5.1,0.6075384,TJ,CO2,74100.0,kg/TJ,45018.595440000005,Gas Oil combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,cc5d8f9f-f2b2-3e9c-b125-797bc02f8df6 -2023,Tucuman,II.5.1,0.6075384,TJ,CH4,3.9,kg/TJ,2.3693997600000003,Gas Oil combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,8c0d57dc-c91a-3cb9-a7f7-cd3d8d135a23 -2023,Tucuman,II.5.1,0.6075384,TJ,N2O,3.9,kg/TJ,2.3693997600000003,Gas Oil combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,8c0d57dc-c91a-3cb9-a7f7-cd3d8d135a23 -2023,Buenos Aires,II.5.1,7.001504509999999,TJ,CO2,73300.0,kg/TJ,513210.2805829999,Naphtha combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,105d42cb-c43b-38d6-8450-b282d4ea35a0 -2023,Buenos Aires,II.5.1,7.001504509999999,TJ,CH4,0.5,kg/TJ,3.5007522549999996,Naphtha combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,7fd2e6fd-d8e2-3718-91aa-dfa6748cd279 -2023,Buenos Aires,II.5.1,7.001504509999999,TJ,N2O,2.0,kg/TJ,14.003009019999999,Naphtha combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,8156764a-4a99-3e75-aaa1-fa057fc27776 -2023,Capital Federal,II.5.1,6.023067435,TJ,CO2,73300.0,kg/TJ,441490.8429855,Naphtha combustion consumption by agriculture machines,AR-C,SESCO,annual,kg,5842603b-1708-3e04-accf-cd92e481ff42 -2023,Capital Federal,II.5.1,6.023067435,TJ,CH4,0.5,kg/TJ,3.0115337175,Naphtha combustion consumption by agriculture machines,AR-C,SESCO,annual,kg,7d1aec64-cc3b-3c7e-892b-d44bf8eeca64 -2023,Capital Federal,II.5.1,6.023067435,TJ,N2O,2.0,kg/TJ,12.04613487,Naphtha combustion consumption by agriculture machines,AR-C,SESCO,annual,kg,4d810809-17da-34e2-a22d-9ccc40413761 -2023,Córdoba,II.5.1,8.137766175,TJ,CO2,73300.0,kg/TJ,596498.2606275,Naphtha combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,207d7591-b9ad-349b-914b-612dc4a8c353 -2023,Córdoba,II.5.1,8.137766175,TJ,CH4,0.5,kg/TJ,4.0688830875,Naphtha combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,39e2efc4-1615-38b4-9293-58acb4b88be9 -2023,Córdoba,II.5.1,8.137766175,TJ,N2O,2.0,kg/TJ,16.27553235,Naphtha combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,fd88d51e-f178-394c-abf5-c326deb73348 -2023,Santa Fe,II.5.1,16.182297285,TJ,CO2,73300.0,kg/TJ,1186162.3909905,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,f1b89796-62e0-3ed4-89f0-11a671608599 -2023,Santa Fe,II.5.1,16.182297285,TJ,CH4,0.5,kg/TJ,8.0911486425,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,d730a91d-c525-37d8-b631-1cee3abdd418 -2023,Santa Fe,II.5.1,16.182297285,TJ,N2O,2.0,kg/TJ,32.36459457,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,3bd0ab2b-b0a0-3648-969a-4942a03c556a -2023,Buenos Aires,II.5.1,4.739294944999999,TJ,CO2,73300.0,kg/TJ,347390.3194684999,Naphtha combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,ce0be3f2-9994-336b-b245-fb7930ecc303 -2023,Buenos Aires,II.5.1,4.739294944999999,TJ,CH4,0.5,kg/TJ,2.3696474724999996,Naphtha combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,518d0b0c-9960-31a3-ab4f-9502c335478e -2023,Buenos Aires,II.5.1,4.739294944999999,TJ,N2O,2.0,kg/TJ,9.478589889999999,Naphtha combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,52c43aee-1c47-3e02-b3b4-152a4756957f -2023,Capital Federal,II.5.1,1.42939874,TJ,CO2,73300.0,kg/TJ,104774.927642,Naphtha combustion consumption by agriculture machines,AR-C,SESCO,annual,kg,732315d7-19ae-3208-920b-03b3c91a6c78 -2023,Capital Federal,II.5.1,1.42939874,TJ,CH4,0.5,kg/TJ,0.71469937,Naphtha combustion consumption by agriculture machines,AR-C,SESCO,annual,kg,2614e342-6c2f-3c74-af8b-168566faf1ef -2023,Capital Federal,II.5.1,1.42939874,TJ,N2O,2.0,kg/TJ,2.85879748,Naphtha combustion consumption by agriculture machines,AR-C,SESCO,annual,kg,6b076860-cd7c-3f6b-8540-68fdc0a06dda -2023,Córdoba,II.5.1,3.06884193,TJ,CO2,73300.0,kg/TJ,224946.113469,Naphtha combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,66e81ca3-f472-3139-95c8-af07ffb35cb5 -2023,Córdoba,II.5.1,3.06884193,TJ,CH4,0.5,kg/TJ,1.534420965,Naphtha combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,ddeab449-570a-314c-b74c-3ec6451bd1c3 -2023,Córdoba,II.5.1,3.06884193,TJ,N2O,2.0,kg/TJ,6.13768386,Naphtha combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,f509e526-134a-37b6-8a1d-3f38b6704412 -2023,Santa Fe,II.5.1,4.19766809,TJ,CO2,73300.0,kg/TJ,307689.070997,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,d765c4ba-db00-31b2-a792-6dfb475aa55c -2023,Santa Fe,II.5.1,4.19766809,TJ,CH4,0.5,kg/TJ,2.098834045,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,01b5bae2-e66e-3362-9150-0d8548e062e0 -2023,Santa Fe,II.5.1,4.19766809,TJ,N2O,2.0,kg/TJ,8.39533618,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,caa67c95-dbcc-3076-99d2-1c1508c2fd52 -2023,Buenos Aires,II.5.1,8991.56832,TJ,CO2,74100.0,kg/TJ,666275212.512,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,2f922cef-5acc-3276-8a2d-256f97b35186 -2023,Buenos Aires,II.5.1,8991.56832,TJ,CH4,3.9,kg/TJ,35067.116448,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,8b1270b7-cd17-3c0f-aa17-ce0a4f790a53 -2023,Buenos Aires,II.5.1,8991.56832,TJ,N2O,3.9,kg/TJ,35067.116448,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,8b1270b7-cd17-3c0f-aa17-ce0a4f790a53 -2023,Capital Federal,II.5.1,89.18028,TJ,CO2,74100.0,kg/TJ,6608258.748,Gas Oil combustion consumption by agriculture machines,AR-C,SESCO,annual,kg,e000c3c6-3297-3238-998d-2c82133f39a0 -2023,Capital Federal,II.5.1,89.18028,TJ,CH4,3.9,kg/TJ,347.803092,Gas Oil combustion consumption by agriculture machines,AR-C,SESCO,annual,kg,0ab6a520-bdf0-31b3-b0c6-359fee1136fd -2023,Capital Federal,II.5.1,89.18028,TJ,N2O,3.9,kg/TJ,347.803092,Gas Oil combustion consumption by agriculture machines,AR-C,SESCO,annual,kg,0ab6a520-bdf0-31b3-b0c6-359fee1136fd -2023,Catamarca,II.5.1,250.81727999999998,TJ,CO2,74100.0,kg/TJ,18585560.448,Gas Oil combustion consumption by agriculture machines,AR-K,SESCO,annual,kg,15d59397-cd33-38a6-a672-896a31a30d7e -2023,Catamarca,II.5.1,250.81727999999998,TJ,CH4,3.9,kg/TJ,978.1873919999999,Gas Oil combustion consumption by agriculture machines,AR-K,SESCO,annual,kg,8decbaa5-a05f-3591-8f9a-c64e7ee1ee95 -2023,Catamarca,II.5.1,250.81727999999998,TJ,N2O,3.9,kg/TJ,978.1873919999999,Gas Oil combustion consumption by agriculture machines,AR-K,SESCO,annual,kg,8decbaa5-a05f-3591-8f9a-c64e7ee1ee95 -2023,Chaco,II.5.1,1158.87408,TJ,CO2,74100.0,kg/TJ,85872569.32800001,Gas Oil combustion consumption by agriculture machines,AR-H,SESCO,annual,kg,bf095aa4-69c8-31b5-8aa9-95144f58bde5 -2023,Chaco,II.5.1,1158.87408,TJ,CH4,3.9,kg/TJ,4519.608912,Gas Oil combustion consumption by agriculture machines,AR-H,SESCO,annual,kg,7c27a69e-d4c9-3579-ac87-ba98e2654555 -2023,Chaco,II.5.1,1158.87408,TJ,N2O,3.9,kg/TJ,4519.608912,Gas Oil combustion consumption by agriculture machines,AR-H,SESCO,annual,kg,7c27a69e-d4c9-3579-ac87-ba98e2654555 -2023,Corrientes,II.5.1,726.012,TJ,CO2,74100.0,kg/TJ,53797489.199999996,Gas Oil combustion consumption by agriculture machines,AR-W,SESCO,annual,kg,3f641dcd-7828-3889-99dd-a8dd4dd94e23 -2023,Corrientes,II.5.1,726.012,TJ,CH4,3.9,kg/TJ,2831.4467999999997,Gas Oil combustion consumption by agriculture machines,AR-W,SESCO,annual,kg,70e59184-1311-32d8-8815-9ecf4477ff9b -2023,Corrientes,II.5.1,726.012,TJ,N2O,3.9,kg/TJ,2831.4467999999997,Gas Oil combustion consumption by agriculture machines,AR-W,SESCO,annual,kg,70e59184-1311-32d8-8815-9ecf4477ff9b -2023,Córdoba,II.5.1,7244.98572,TJ,CO2,74100.0,kg/TJ,536853441.852,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,49accdcb-580d-3834-8f46-d5c90605d770 -2023,Córdoba,II.5.1,7244.98572,TJ,CH4,3.9,kg/TJ,28255.444308,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,51fe9a11-390c-3436-bb1b-2b24edea32ca -2023,Córdoba,II.5.1,7244.98572,TJ,N2O,3.9,kg/TJ,28255.444308,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,51fe9a11-390c-3436-bb1b-2b24edea32ca -2023,Entre Rios,II.5.1,2012.1729599999999,TJ,CO2,74100.0,kg/TJ,149102016.336,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,10eaec50-fdf7-3d73-b25f-552da802f6c0 -2023,Entre Rios,II.5.1,2012.1729599999999,TJ,CH4,3.9,kg/TJ,7847.474544,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,7dcdb88b-4dc8-34d2-b436-f1869b6f8530 -2023,Entre Rios,II.5.1,2012.1729599999999,TJ,N2O,3.9,kg/TJ,7847.474544,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,7dcdb88b-4dc8-34d2-b436-f1869b6f8530 -2023,Formosa,II.5.1,322.44324,TJ,CO2,74100.0,kg/TJ,23893044.084,Gas Oil combustion consumption by agriculture machines,AR-P,SESCO,annual,kg,835f8a9a-a71a-3162-948b-6268ed27f2df -2023,Formosa,II.5.1,322.44324,TJ,CH4,3.9,kg/TJ,1257.528636,Gas Oil combustion consumption by agriculture machines,AR-P,SESCO,annual,kg,0cb529c1-b0d3-3d55-a5e4-1d05e754dcd6 -2023,Formosa,II.5.1,322.44324,TJ,N2O,3.9,kg/TJ,1257.528636,Gas Oil combustion consumption by agriculture machines,AR-P,SESCO,annual,kg,0cb529c1-b0d3-3d55-a5e4-1d05e754dcd6 -2023,Jujuy,II.5.1,932.6906399999999,TJ,CO2,74100.0,kg/TJ,69112376.424,Gas Oil combustion consumption by agriculture machines,AR-Y,SESCO,annual,kg,c95aeed9-abf2-3dcf-82a2-67273184b2ff -2023,Jujuy,II.5.1,932.6906399999999,TJ,CH4,3.9,kg/TJ,3637.4934959999996,Gas Oil combustion consumption by agriculture machines,AR-Y,SESCO,annual,kg,09cbc3af-34bb-3156-8084-f777f4c52d7d -2023,Jujuy,II.5.1,932.6906399999999,TJ,N2O,3.9,kg/TJ,3637.4934959999996,Gas Oil combustion consumption by agriculture machines,AR-Y,SESCO,annual,kg,09cbc3af-34bb-3156-8084-f777f4c52d7d -2023,La Pampa,II.5.1,1452.78252,TJ,CO2,74100.0,kg/TJ,107651184.732,Gas Oil combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,76aae08a-7012-3c57-83a4-ba4e268cf3cf -2023,La Pampa,II.5.1,1452.78252,TJ,CH4,3.9,kg/TJ,5665.851828,Gas Oil combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,8cec8e68-08c2-34e0-8a84-6c9637eb2517 -2023,La Pampa,II.5.1,1452.78252,TJ,N2O,3.9,kg/TJ,5665.851828,Gas Oil combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,8cec8e68-08c2-34e0-8a84-6c9637eb2517 -2023,La Rioja,II.5.1,84.55691999999999,TJ,CO2,74100.0,kg/TJ,6265667.771999999,Gas Oil combustion consumption by agriculture machines,AR-F,SESCO,annual,kg,bc6556e1-7a7a-3f79-a84e-5a342c5e275b -2023,La Rioja,II.5.1,84.55691999999999,TJ,CH4,3.9,kg/TJ,329.77198799999996,Gas Oil combustion consumption by agriculture machines,AR-F,SESCO,annual,kg,7f23f65f-ef6c-30ae-ae96-518474af5966 -2023,La Rioja,II.5.1,84.55691999999999,TJ,N2O,3.9,kg/TJ,329.77198799999996,Gas Oil combustion consumption by agriculture machines,AR-F,SESCO,annual,kg,7f23f65f-ef6c-30ae-ae96-518474af5966 -2023,Mendoza,II.5.1,2486.3202,TJ,CO2,74100.0,kg/TJ,184236326.82000002,Gas Oil combustion consumption by agriculture machines,AR-M,SESCO,annual,kg,f9199add-e498-3845-a04e-be3cf48a7d9d -2023,Mendoza,II.5.1,2486.3202,TJ,CH4,3.9,kg/TJ,9696.64878,Gas Oil combustion consumption by agriculture machines,AR-M,SESCO,annual,kg,08c04a98-5050-3acb-9083-c4815d56c5f0 -2023,Mendoza,II.5.1,2486.3202,TJ,N2O,3.9,kg/TJ,9696.64878,Gas Oil combustion consumption by agriculture machines,AR-M,SESCO,annual,kg,08c04a98-5050-3acb-9083-c4815d56c5f0 -2023,Misiones,II.5.1,1237.8324,TJ,CO2,74100.0,kg/TJ,91723380.84,Gas Oil combustion consumption by agriculture machines,AR-N,SESCO,annual,kg,789efae0-2a63-34cd-a6a4-b67ddbbd814c -2023,Misiones,II.5.1,1237.8324,TJ,CH4,3.9,kg/TJ,4827.54636,Gas Oil combustion consumption by agriculture machines,AR-N,SESCO,annual,kg,44d4e11a-51df-3461-8343-ff5054b7afa5 -2023,Misiones,II.5.1,1237.8324,TJ,N2O,3.9,kg/TJ,4827.54636,Gas Oil combustion consumption by agriculture machines,AR-N,SESCO,annual,kg,44d4e11a-51df-3461-8343-ff5054b7afa5 -2023,Neuquén,II.5.1,0.10836,TJ,CO2,74100.0,kg/TJ,8029.476,Gas Oil combustion consumption by agriculture machines,AR-Q,SESCO,annual,kg,0795293b-ff9e-3e0f-95ba-2c869f527796 -2023,Neuquén,II.5.1,0.10836,TJ,CH4,3.9,kg/TJ,0.422604,Gas Oil combustion consumption by agriculture machines,AR-Q,SESCO,annual,kg,95119bda-fa96-3950-817a-b1b57e2ef13e -2023,Neuquén,II.5.1,0.10836,TJ,N2O,3.9,kg/TJ,0.422604,Gas Oil combustion consumption by agriculture machines,AR-Q,SESCO,annual,kg,95119bda-fa96-3950-817a-b1b57e2ef13e -2023,Rio Negro,II.5.1,158.2056,TJ,CO2,74100.0,kg/TJ,11723034.96,Gas Oil combustion consumption by agriculture machines,AR-R,SESCO,annual,kg,0bc358f8-45fb-3520-a543-72ce8064040b -2023,Rio Negro,II.5.1,158.2056,TJ,CH4,3.9,kg/TJ,617.00184,Gas Oil combustion consumption by agriculture machines,AR-R,SESCO,annual,kg,20e9d325-7b09-35a4-9b25-bc92db859c34 -2023,Rio Negro,II.5.1,158.2056,TJ,N2O,3.9,kg/TJ,617.00184,Gas Oil combustion consumption by agriculture machines,AR-R,SESCO,annual,kg,20e9d325-7b09-35a4-9b25-bc92db859c34 -2023,Salta,II.5.1,1736.8301999999999,TJ,CO2,74100.0,kg/TJ,128699117.82,Gas Oil combustion consumption by agriculture machines,AR-A,SESCO,annual,kg,1bf11900-3515-3aaf-8eb4-8b87d7838cac -2023,Salta,II.5.1,1736.8301999999999,TJ,CH4,3.9,kg/TJ,6773.637779999999,Gas Oil combustion consumption by agriculture machines,AR-A,SESCO,annual,kg,51852086-ae0a-3647-974d-e64a6a977953 -2023,Salta,II.5.1,1736.8301999999999,TJ,N2O,3.9,kg/TJ,6773.637779999999,Gas Oil combustion consumption by agriculture machines,AR-A,SESCO,annual,kg,51852086-ae0a-3647-974d-e64a6a977953 -2023,San Juan,II.5.1,373.51691999999997,TJ,CO2,74100.0,kg/TJ,27677603.771999996,Gas Oil combustion consumption by agriculture machines,AR-J,SESCO,annual,kg,f7c700d2-6f9b-3930-b05c-23295c9c49e1 -2023,San Juan,II.5.1,373.51691999999997,TJ,CH4,3.9,kg/TJ,1456.715988,Gas Oil combustion consumption by agriculture machines,AR-J,SESCO,annual,kg,eba45198-092e-382a-be96-dab2b6af08a8 -2023,San Juan,II.5.1,373.51691999999997,TJ,N2O,3.9,kg/TJ,1456.715988,Gas Oil combustion consumption by agriculture machines,AR-J,SESCO,annual,kg,eba45198-092e-382a-be96-dab2b6af08a8 -2023,San Luis,II.5.1,274.72872,TJ,CO2,74100.0,kg/TJ,20357398.152000003,Gas Oil combustion consumption by agriculture machines,AR-D,SESCO,annual,kg,16f5f5f6-6a35-3457-97bb-efbbf4590439 -2023,San Luis,II.5.1,274.72872,TJ,CH4,3.9,kg/TJ,1071.442008,Gas Oil combustion consumption by agriculture machines,AR-D,SESCO,annual,kg,cba69cc3-f12e-3a08-a649-3b83fdd0c351 -2023,San Luis,II.5.1,274.72872,TJ,N2O,3.9,kg/TJ,1071.442008,Gas Oil combustion consumption by agriculture machines,AR-D,SESCO,annual,kg,cba69cc3-f12e-3a08-a649-3b83fdd0c351 -2023,Santa Fe,II.5.1,6257.212079999999,TJ,CO2,74100.0,kg/TJ,463659415.12799996,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,edf884ec-7d37-3959-830b-add7663d2a06 -2023,Santa Fe,II.5.1,6257.212079999999,TJ,CH4,3.9,kg/TJ,24403.127112,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,eed55759-0a50-35d5-9777-0a1577c152de -2023,Santa Fe,II.5.1,6257.212079999999,TJ,N2O,3.9,kg/TJ,24403.127112,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,eed55759-0a50-35d5-9777-0a1577c152de -2023,Santiago del Estero,II.5.1,1488.07176,TJ,CO2,74100.0,kg/TJ,110266117.41600001,Gas Oil combustion consumption by agriculture machines,AR-G,SESCO,annual,kg,2162f475-6456-35ee-a186-da9d2c735113 -2023,Santiago del Estero,II.5.1,1488.07176,TJ,CH4,3.9,kg/TJ,5803.479864,Gas Oil combustion consumption by agriculture machines,AR-G,SESCO,annual,kg,9c2582dc-f6cd-317d-b403-69d66e050b84 -2023,Santiago del Estero,II.5.1,1488.07176,TJ,N2O,3.9,kg/TJ,5803.479864,Gas Oil combustion consumption by agriculture machines,AR-G,SESCO,annual,kg,9c2582dc-f6cd-317d-b403-69d66e050b84 -2023,Tucuman,II.5.1,1130.3754,TJ,CO2,74100.0,kg/TJ,83760817.13999999,Gas Oil combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,b0b35ee9-2922-38d9-a05a-3d19ff9dbb06 -2023,Tucuman,II.5.1,1130.3754,TJ,CH4,3.9,kg/TJ,4408.464059999999,Gas Oil combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,0fbffb63-ead8-300d-9fda-438208d26e32 -2023,Tucuman,II.5.1,1130.3754,TJ,N2O,3.9,kg/TJ,4408.464059999999,Gas Oil combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,0fbffb63-ead8-300d-9fda-438208d26e32 -2023,Buenos Aires,II.5.1,2140.8324,TJ,CO2,74100.0,kg/TJ,158635680.83999997,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,1a0b7d95-9aa5-3199-a098-e4bfab4567ad -2023,Buenos Aires,II.5.1,2140.8324,TJ,CH4,3.9,kg/TJ,8349.24636,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,f6ab8a3c-71e4-3ce5-bcf5-f3a38c64aa43 -2023,Buenos Aires,II.5.1,2140.8324,TJ,N2O,3.9,kg/TJ,8349.24636,Gas Oil combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,f6ab8a3c-71e4-3ce5-bcf5-f3a38c64aa43 -2023,Capital Federal,II.5.1,10.510919999999999,TJ,CO2,74100.0,kg/TJ,778859.1719999999,Gas Oil combustion consumption by agriculture machines,AR-C,SESCO,annual,kg,db933d9c-bc23-3edd-9425-8b4333e0edf2 -2023,Capital Federal,II.5.1,10.510919999999999,TJ,CH4,3.9,kg/TJ,40.99258799999999,Gas Oil combustion consumption by agriculture machines,AR-C,SESCO,annual,kg,1ec4f59b-36f0-31a8-8389-5eb9df918600 -2023,Capital Federal,II.5.1,10.510919999999999,TJ,N2O,3.9,kg/TJ,40.99258799999999,Gas Oil combustion consumption by agriculture machines,AR-C,SESCO,annual,kg,1ec4f59b-36f0-31a8-8389-5eb9df918600 -2023,Catamarca,II.5.1,59.12844,TJ,CO2,74100.0,kg/TJ,4381417.404,Gas Oil combustion consumption by agriculture machines,AR-K,SESCO,annual,kg,03a71b6b-f8e7-3c73-b219-05e2b692f926 -2023,Catamarca,II.5.1,59.12844,TJ,CH4,3.9,kg/TJ,230.60091599999998,Gas Oil combustion consumption by agriculture machines,AR-K,SESCO,annual,kg,bb3499c0-26c9-3dd1-9d6a-0f149c3790f4 -2023,Catamarca,II.5.1,59.12844,TJ,N2O,3.9,kg/TJ,230.60091599999998,Gas Oil combustion consumption by agriculture machines,AR-K,SESCO,annual,kg,bb3499c0-26c9-3dd1-9d6a-0f149c3790f4 -2023,Chaco,II.5.1,27.48732,TJ,CO2,74100.0,kg/TJ,2036810.412,Gas Oil combustion consumption by agriculture machines,AR-H,SESCO,annual,kg,39ae083f-9075-3f0b-885b-e8f684befae4 -2023,Chaco,II.5.1,27.48732,TJ,CH4,3.9,kg/TJ,107.200548,Gas Oil combustion consumption by agriculture machines,AR-H,SESCO,annual,kg,ffb002bf-a13e-37bd-bced-5527af7126b7 -2023,Chaco,II.5.1,27.48732,TJ,N2O,3.9,kg/TJ,107.200548,Gas Oil combustion consumption by agriculture machines,AR-H,SESCO,annual,kg,ffb002bf-a13e-37bd-bced-5527af7126b7 -2023,Corrientes,II.5.1,29.799,TJ,CO2,74100.0,kg/TJ,2208105.9,Gas Oil combustion consumption by agriculture machines,AR-W,SESCO,annual,kg,11be6a2e-6ffd-39f3-a432-8d5bc7a30bbb -2023,Corrientes,II.5.1,29.799,TJ,CH4,3.9,kg/TJ,116.2161,Gas Oil combustion consumption by agriculture machines,AR-W,SESCO,annual,kg,7579e02d-ce20-36c5-983a-7286b83b2980 -2023,Corrientes,II.5.1,29.799,TJ,N2O,3.9,kg/TJ,116.2161,Gas Oil combustion consumption by agriculture machines,AR-W,SESCO,annual,kg,7579e02d-ce20-36c5-983a-7286b83b2980 -2023,Córdoba,II.5.1,479.493,TJ,CO2,74100.0,kg/TJ,35530431.3,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,dbcd01bf-6294-370b-b330-731404ed7aff -2023,Córdoba,II.5.1,479.493,TJ,CH4,3.9,kg/TJ,1870.0227,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,fa653478-e733-3bd6-91cb-f92a3309a8dc -2023,Córdoba,II.5.1,479.493,TJ,N2O,3.9,kg/TJ,1870.0227,Gas Oil combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,fa653478-e733-3bd6-91cb-f92a3309a8dc -2023,Entre Rios,II.5.1,37.09524,TJ,CO2,74100.0,kg/TJ,2748757.284,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,5ab0f6f2-68da-3119-a2f9-6ef882f29bd6 -2023,Entre Rios,II.5.1,37.09524,TJ,CH4,3.9,kg/TJ,144.67143599999997,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,49a620b5-95b6-3937-995b-368608cd0171 -2023,Entre Rios,II.5.1,37.09524,TJ,N2O,3.9,kg/TJ,144.67143599999997,Gas Oil combustion consumption by agriculture machines,AR-E,SESCO,annual,kg,49a620b5-95b6-3937-995b-368608cd0171 -2023,Formosa,II.5.1,35.0364,TJ,CO2,74100.0,kg/TJ,2596197.24,Gas Oil combustion consumption by agriculture machines,AR-P,SESCO,annual,kg,4a494f7a-14f5-37e4-a12f-1857b98cab08 -2023,Formosa,II.5.1,35.0364,TJ,CH4,3.9,kg/TJ,136.64196,Gas Oil combustion consumption by agriculture machines,AR-P,SESCO,annual,kg,e34c42ae-a5a6-32c2-ac16-f3f837382d8c -2023,Formosa,II.5.1,35.0364,TJ,N2O,3.9,kg/TJ,136.64196,Gas Oil combustion consumption by agriculture machines,AR-P,SESCO,annual,kg,e34c42ae-a5a6-32c2-ac16-f3f837382d8c -2023,Jujuy,II.5.1,30.81036,TJ,CO2,74100.0,kg/TJ,2283047.676,Gas Oil combustion consumption by agriculture machines,AR-Y,SESCO,annual,kg,d40e0eb6-ab57-39e2-ba85-b43f81f0c43f -2023,Jujuy,II.5.1,30.81036,TJ,CH4,3.9,kg/TJ,120.160404,Gas Oil combustion consumption by agriculture machines,AR-Y,SESCO,annual,kg,78e6a5a0-1879-33b5-a78c-6ddafa020eab -2023,Jujuy,II.5.1,30.81036,TJ,N2O,3.9,kg/TJ,120.160404,Gas Oil combustion consumption by agriculture machines,AR-Y,SESCO,annual,kg,78e6a5a0-1879-33b5-a78c-6ddafa020eab -2023,La Pampa,II.5.1,121.79664,TJ,CO2,74100.0,kg/TJ,9025131.024,Gas Oil combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,faa03e97-564a-39a5-b329-33287bcb08f9 -2023,La Pampa,II.5.1,121.79664,TJ,CH4,3.9,kg/TJ,475.006896,Gas Oil combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,6439dd36-b058-3d4d-a384-b8ba96d3c519 -2023,La Pampa,II.5.1,121.79664,TJ,N2O,3.9,kg/TJ,475.006896,Gas Oil combustion consumption by agriculture machines,AR-L,SESCO,annual,kg,6439dd36-b058-3d4d-a384-b8ba96d3c519 -2023,La Rioja,II.5.1,47.75064,TJ,CO2,74100.0,kg/TJ,3538322.4239999996,Gas Oil combustion consumption by agriculture machines,AR-F,SESCO,annual,kg,17d06eb0-6983-362d-b3af-8308775d4323 -2023,La Rioja,II.5.1,47.75064,TJ,CH4,3.9,kg/TJ,186.22749599999997,Gas Oil combustion consumption by agriculture machines,AR-F,SESCO,annual,kg,17a5467a-f37f-3df1-b2e6-a6d2b70353d2 -2023,La Rioja,II.5.1,47.75064,TJ,N2O,3.9,kg/TJ,186.22749599999997,Gas Oil combustion consumption by agriculture machines,AR-F,SESCO,annual,kg,17a5467a-f37f-3df1-b2e6-a6d2b70353d2 -2023,Mendoza,II.5.1,236.11643999999998,TJ,CO2,74100.0,kg/TJ,17496228.204,Gas Oil combustion consumption by agriculture machines,AR-M,SESCO,annual,kg,a6f4a954-8d85-3e3d-a593-0256f3e4c28c -2023,Mendoza,II.5.1,236.11643999999998,TJ,CH4,3.9,kg/TJ,920.8541159999999,Gas Oil combustion consumption by agriculture machines,AR-M,SESCO,annual,kg,43f1eec1-bbd4-363d-acba-b64b11ef28d4 -2023,Mendoza,II.5.1,236.11643999999998,TJ,N2O,3.9,kg/TJ,920.8541159999999,Gas Oil combustion consumption by agriculture machines,AR-M,SESCO,annual,kg,43f1eec1-bbd4-363d-acba-b64b11ef28d4 -2023,Misiones,II.5.1,67.5444,TJ,CO2,74100.0,kg/TJ,5005040.04,Gas Oil combustion consumption by agriculture machines,AR-N,SESCO,annual,kg,4b786a41-aa79-3f96-962b-5e4b7f12fee1 -2023,Misiones,II.5.1,67.5444,TJ,CH4,3.9,kg/TJ,263.42316,Gas Oil combustion consumption by agriculture machines,AR-N,SESCO,annual,kg,8e695b2a-7844-3f86-b116-1115a06aac06 -2023,Misiones,II.5.1,67.5444,TJ,N2O,3.9,kg/TJ,263.42316,Gas Oil combustion consumption by agriculture machines,AR-N,SESCO,annual,kg,8e695b2a-7844-3f86-b116-1115a06aac06 -2023,Rio Negro,II.5.1,58.1532,TJ,CO2,74100.0,kg/TJ,4309152.12,Gas Oil combustion consumption by agriculture machines,AR-R,SESCO,annual,kg,1cacfa1f-1843-38f5-9a39-0c89c5d5f3bf -2023,Rio Negro,II.5.1,58.1532,TJ,CH4,3.9,kg/TJ,226.79747999999998,Gas Oil combustion consumption by agriculture machines,AR-R,SESCO,annual,kg,4ebb658c-def2-318b-afe1-53ce53bdbe89 -2023,Rio Negro,II.5.1,58.1532,TJ,N2O,3.9,kg/TJ,226.79747999999998,Gas Oil combustion consumption by agriculture machines,AR-R,SESCO,annual,kg,4ebb658c-def2-318b-afe1-53ce53bdbe89 -2023,Salta,II.5.1,274.76484,TJ,CO2,74100.0,kg/TJ,20360074.644,Gas Oil combustion consumption by agriculture machines,AR-A,SESCO,annual,kg,c89505bb-edf0-35bb-babd-e21da5f80133 -2023,Salta,II.5.1,274.76484,TJ,CH4,3.9,kg/TJ,1071.582876,Gas Oil combustion consumption by agriculture machines,AR-A,SESCO,annual,kg,a8cafd0b-532d-3b71-a1af-6517a418f96d -2023,Salta,II.5.1,274.76484,TJ,N2O,3.9,kg/TJ,1071.582876,Gas Oil combustion consumption by agriculture machines,AR-A,SESCO,annual,kg,a8cafd0b-532d-3b71-a1af-6517a418f96d -2023,San Juan,II.5.1,61.54848,TJ,CO2,74100.0,kg/TJ,4560742.368,Gas Oil combustion consumption by agriculture machines,AR-J,SESCO,annual,kg,6eee679c-558f-32da-a099-bc8064cccbf3 -2023,San Juan,II.5.1,61.54848,TJ,CH4,3.9,kg/TJ,240.03907199999998,Gas Oil combustion consumption by agriculture machines,AR-J,SESCO,annual,kg,62447040-bc32-3b4d-a3c3-ae0111ae9e92 -2023,San Juan,II.5.1,61.54848,TJ,N2O,3.9,kg/TJ,240.03907199999998,Gas Oil combustion consumption by agriculture machines,AR-J,SESCO,annual,kg,62447040-bc32-3b4d-a3c3-ae0111ae9e92 -2023,San Luis,II.5.1,31.46052,TJ,CO2,74100.0,kg/TJ,2331224.532,Gas Oil combustion consumption by agriculture machines,AR-D,SESCO,annual,kg,88ee4502-49d5-3b28-a20e-a05a62763834 -2023,San Luis,II.5.1,31.46052,TJ,CH4,3.9,kg/TJ,122.696028,Gas Oil combustion consumption by agriculture machines,AR-D,SESCO,annual,kg,22de3b5f-c791-3bfa-8052-d25d0419a588 -2023,San Luis,II.5.1,31.46052,TJ,N2O,3.9,kg/TJ,122.696028,Gas Oil combustion consumption by agriculture machines,AR-D,SESCO,annual,kg,22de3b5f-c791-3bfa-8052-d25d0419a588 -2023,Santa Fe,II.5.1,377.05668,TJ,CO2,74100.0,kg/TJ,27939899.987999998,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,5c0b9229-72b9-3cff-aecf-a0ea0aaf85f8 -2023,Santa Fe,II.5.1,377.05668,TJ,CH4,3.9,kg/TJ,1470.5210519999998,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,d15bc6d8-1921-3de6-b200-7af8e7e7d5c2 -2023,Santa Fe,II.5.1,377.05668,TJ,N2O,3.9,kg/TJ,1470.5210519999998,Gas Oil combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,d15bc6d8-1921-3de6-b200-7af8e7e7d5c2 -2023,Santiago del Estero,II.5.1,223.79952,TJ,CO2,74100.0,kg/TJ,16583544.432,Gas Oil combustion consumption by agriculture machines,AR-G,SESCO,annual,kg,12f06a57-1d8f-3807-8b82-f89be01ebde0 -2023,Santiago del Estero,II.5.1,223.79952,TJ,CH4,3.9,kg/TJ,872.818128,Gas Oil combustion consumption by agriculture machines,AR-G,SESCO,annual,kg,0c1307f5-4ac9-3950-b3ee-9032734d141c -2023,Santiago del Estero,II.5.1,223.79952,TJ,N2O,3.9,kg/TJ,872.818128,Gas Oil combustion consumption by agriculture machines,AR-G,SESCO,annual,kg,0c1307f5-4ac9-3950-b3ee-9032734d141c -2023,Tucuman,II.5.1,67.76111999999999,TJ,CO2,74100.0,kg/TJ,5021098.992,Gas Oil combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,1a00570f-84d3-3143-926e-7ba27c5983c8 -2023,Tucuman,II.5.1,67.76111999999999,TJ,CH4,3.9,kg/TJ,264.26836799999995,Gas Oil combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,669b4238-910f-3c43-8cdb-885fd17e2374 -2023,Tucuman,II.5.1,67.76111999999999,TJ,N2O,3.9,kg/TJ,264.26836799999995,Gas Oil combustion consumption by agriculture machines,AR-T,SESCO,annual,kg,669b4238-910f-3c43-8cdb-885fd17e2374 -2023,Buenos Aires,II.5.1,3.9630779999999994,TJ,CO2,71500.0,kg/TJ,283360.07699999993,Jet Kerosene combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,61b8f565-df72-3d25-a65d-b60347335663 -2023,Buenos Aires,II.5.1,3.9630779999999994,TJ,CH4,0.5,kg/TJ,1.9815389999999997,Jet Kerosene combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,68c29c88-49ca-3c56-9b55-8adc938e9781 -2023,Buenos Aires,II.5.1,3.9630779999999994,TJ,N2O,2.0,kg/TJ,7.926155999999999,Jet Kerosene combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,33564f2c-3350-3e2e-85f8-64045f55d2c7 -2023,Córdoba,II.5.1,0.31453,TJ,CO2,71500.0,kg/TJ,22488.894999999997,Jet Kerosene combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,f15cf9af-afeb-31b9-a32e-757a60ba7346 -2023,Córdoba,II.5.1,0.31453,TJ,CH4,0.5,kg/TJ,0.157265,Jet Kerosene combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,cf48b8c3-2f61-3dd0-b123-b5d477ee9603 -2023,Córdoba,II.5.1,0.31453,TJ,N2O,2.0,kg/TJ,0.62906,Jet Kerosene combustion consumption by agriculture machines,AR-X,SESCO,annual,kg,ba1ec442-4a67-3a2f-9a40-c16e4a8f5665 -2023,Santa Fe,II.5.1,0.25162399999999996,TJ,CO2,71500.0,kg/TJ,17991.115999999998,Jet Kerosene combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,9f968c3e-cbe5-3315-bc81-a6a88ff259f2 -2023,Santa Fe,II.5.1,0.25162399999999996,TJ,CH4,0.5,kg/TJ,0.12581199999999998,Jet Kerosene combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,00ff08c4-4804-379c-97b3-2b1ae630872a -2023,Santa Fe,II.5.1,0.25162399999999996,TJ,N2O,2.0,kg/TJ,0.5032479999999999,Jet Kerosene combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,a0907ad1-e862-3abd-a013-011f9aebfb24 -2023,Buenos Aires,II.5.1,108.14034,TJ,CO2,73300.0,kg/TJ,7926686.921999999,Naphtha combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,cf76e8e5-7d9e-39c0-bff2-e6adc778dd68 -2023,Buenos Aires,II.5.1,108.14034,TJ,CH4,0.5,kg/TJ,54.07017,Naphtha combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,232b048d-a71b-30c7-809e-ce841270b3b7 -2023,Buenos Aires,II.5.1,108.14034,TJ,N2O,2.0,kg/TJ,216.28068,Naphtha combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,3ff96167-f5b9-312b-a1bb-db4a95d97b10 -2023,Salta,II.5.1,0.9594199999999999,TJ,CO2,73300.0,kg/TJ,70325.48599999999,Naphtha combustion consumption by agriculture machines,AR-A,SESCO,annual,kg,a5987929-668c-3854-acf3-b8f9a845d46d -2023,Salta,II.5.1,0.9594199999999999,TJ,CH4,0.5,kg/TJ,0.47970999999999997,Naphtha combustion consumption by agriculture machines,AR-A,SESCO,annual,kg,9deb1794-083e-37e0-a47a-7cec40dce6a9 -2023,Salta,II.5.1,0.9594199999999999,TJ,N2O,2.0,kg/TJ,1.9188399999999999,Naphtha combustion consumption by agriculture machines,AR-A,SESCO,annual,kg,23578ac5-8a6d-3e49-b76c-9659ec3ca21c -2023,Santa Fe,II.5.1,42.55713,TJ,CO2,73300.0,kg/TJ,3119437.629,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,39910d86-8818-366c-9c6a-035d0cc2b85b -2023,Santa Fe,II.5.1,42.55713,TJ,CH4,0.5,kg/TJ,21.278565,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,1812137b-e165-322d-8b3a-544092f497cd -2023,Santa Fe,II.5.1,42.55713,TJ,N2O,2.0,kg/TJ,85.11426,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,adf8f902-3f6f-3fec-83fb-f950bb501b55 -2023,Buenos Aires,II.5.1,8.600515,TJ,CO2,73300.0,kg/TJ,630417.7495,Naphtha combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,7994ee1d-5f75-35f3-b5a3-ec76cdfa386e -2023,Buenos Aires,II.5.1,8.600515,TJ,CH4,0.5,kg/TJ,4.3002575,Naphtha combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,1de9d049-b121-330c-8ff1-e7d6917cd8bf -2023,Buenos Aires,II.5.1,8.600515,TJ,N2O,2.0,kg/TJ,17.20103,Naphtha combustion consumption by agriculture machines,AR-B,SESCO,annual,kg,b521c12d-917e-3dba-9eed-86993a2a0531 -2023,Santa Fe,II.5.1,4.5915099999999995,TJ,CO2,73300.0,kg/TJ,336557.68299999996,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,21cc319e-78c2-342d-b550-c697a40ad960 -2023,Santa Fe,II.5.1,4.5915099999999995,TJ,CH4,0.5,kg/TJ,2.2957549999999998,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,29e45b0a-15af-3796-ae31-0910bedefc79 -2023,Santa Fe,II.5.1,4.5915099999999995,TJ,N2O,2.0,kg/TJ,9.183019999999999,Naphtha combustion consumption by agriculture machines,AR-S,SESCO,annual,kg,1b5dceee-c0ee-3d12-9e70-26cf792db738 -2023,Buenos Aires,II.1.1,12976.2906,TJ,CO2,74100.0,kg/TJ,961543133.46,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,761f39a9-d94a-3044-9b07-fe4fbac70261 -2023,Buenos Aires,II.1.1,12976.2906,TJ,CH4,3.9,kg/TJ,50607.53334,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,06cb629b-b390-3c53-8406-898bb7b679fa -2023,Buenos Aires,II.1.1,12976.2906,TJ,N2O,3.9,kg/TJ,50607.53334,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,06cb629b-b390-3c53-8406-898bb7b679fa -2023,Capital Federal,II.1.1,964.69296,TJ,CO2,74100.0,kg/TJ,71483748.336,Gas Oil combustion consumption by freight transport,AR-C,SESCO,annual,kg,a8d810cf-c90a-345c-8fdb-60a126e316b6 -2023,Capital Federal,II.1.1,964.69296,TJ,CH4,3.9,kg/TJ,3762.3025439999997,Gas Oil combustion consumption by freight transport,AR-C,SESCO,annual,kg,47658663-14b6-3595-9099-6b1c1dc2a669 -2023,Capital Federal,II.1.1,964.69296,TJ,N2O,3.9,kg/TJ,3762.3025439999997,Gas Oil combustion consumption by freight transport,AR-C,SESCO,annual,kg,47658663-14b6-3595-9099-6b1c1dc2a669 -2023,Catamarca,II.1.1,81.95627999999999,TJ,CO2,74100.0,kg/TJ,6072960.347999999,Gas Oil combustion consumption by freight transport,AR-K,SESCO,annual,kg,4114cc78-6aa3-3960-8572-bea2f64effc0 -2023,Catamarca,II.1.1,81.95627999999999,TJ,CH4,3.9,kg/TJ,319.62949199999997,Gas Oil combustion consumption by freight transport,AR-K,SESCO,annual,kg,6e8c38df-ca81-3b20-8b82-8f37d69728d1 -2023,Catamarca,II.1.1,81.95627999999999,TJ,N2O,3.9,kg/TJ,319.62949199999997,Gas Oil combustion consumption by freight transport,AR-K,SESCO,annual,kg,6e8c38df-ca81-3b20-8b82-8f37d69728d1 -2023,Chaco,II.1.1,436.04064,TJ,CO2,74100.0,kg/TJ,32310611.424,Gas Oil combustion consumption by freight transport,AR-H,SESCO,annual,kg,91b6e799-87a0-3985-9694-e41b35472b84 -2023,Chaco,II.1.1,436.04064,TJ,CH4,3.9,kg/TJ,1700.5584959999999,Gas Oil combustion consumption by freight transport,AR-H,SESCO,annual,kg,1b229275-e104-388c-88cf-9f4c1577be95 -2023,Chaco,II.1.1,436.04064,TJ,N2O,3.9,kg/TJ,1700.5584959999999,Gas Oil combustion consumption by freight transport,AR-H,SESCO,annual,kg,1b229275-e104-388c-88cf-9f4c1577be95 -2023,Chubut,II.1.1,892.164,TJ,CO2,74100.0,kg/TJ,66109352.4,Gas Oil combustion consumption by freight transport,AR-U,SESCO,annual,kg,dd6dc6d1-cb73-384d-bc83-5a087b623d60 -2023,Chubut,II.1.1,892.164,TJ,CH4,3.9,kg/TJ,3479.4395999999997,Gas Oil combustion consumption by freight transport,AR-U,SESCO,annual,kg,87dca691-502f-3732-a3fb-9ccd76392bcd -2023,Chubut,II.1.1,892.164,TJ,N2O,3.9,kg/TJ,3479.4395999999997,Gas Oil combustion consumption by freight transport,AR-U,SESCO,annual,kg,87dca691-502f-3732-a3fb-9ccd76392bcd -2023,Corrientes,II.1.1,836.86428,TJ,CO2,74100.0,kg/TJ,62011643.148,Gas Oil combustion consumption by freight transport,AR-W,SESCO,annual,kg,9c6dc021-9214-3882-ac3b-0a29b7373b0f -2023,Corrientes,II.1.1,836.86428,TJ,CH4,3.9,kg/TJ,3263.770692,Gas Oil combustion consumption by freight transport,AR-W,SESCO,annual,kg,ab178dee-3e52-3e38-ad0f-417869475502 -2023,Corrientes,II.1.1,836.86428,TJ,N2O,3.9,kg/TJ,3263.770692,Gas Oil combustion consumption by freight transport,AR-W,SESCO,annual,kg,ab178dee-3e52-3e38-ad0f-417869475502 -2023,Córdoba,II.1.1,3070.23612,TJ,CO2,74100.0,kg/TJ,227504496.492,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,d4220e58-75fc-3254-8d38-29e85a942a25 -2023,Córdoba,II.1.1,3070.23612,TJ,CH4,3.9,kg/TJ,11973.920868,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,11c33551-3b33-353a-bcc3-5ef462566d45 -2023,Córdoba,II.1.1,3070.23612,TJ,N2O,3.9,kg/TJ,11973.920868,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,11c33551-3b33-353a-bcc3-5ef462566d45 -2023,Entre Rios,II.1.1,1276.33632,TJ,CO2,74100.0,kg/TJ,94576521.31199999,Gas Oil combustion consumption by freight transport,AR-E,SESCO,annual,kg,5350117f-081e-3bd9-aa61-f54994c9b328 -2023,Entre Rios,II.1.1,1276.33632,TJ,CH4,3.9,kg/TJ,4977.7116479999995,Gas Oil combustion consumption by freight transport,AR-E,SESCO,annual,kg,6c4b0551-1745-32c3-b207-779a0c228f2b -2023,Entre Rios,II.1.1,1276.33632,TJ,N2O,3.9,kg/TJ,4977.7116479999995,Gas Oil combustion consumption by freight transport,AR-E,SESCO,annual,kg,6c4b0551-1745-32c3-b207-779a0c228f2b -2023,Formosa,II.1.1,87.37428,TJ,CO2,74100.0,kg/TJ,6474434.148,Gas Oil combustion consumption by freight transport,AR-P,SESCO,annual,kg,adce6dbf-9e10-3f49-b913-2bb1467581ca -2023,Formosa,II.1.1,87.37428,TJ,CH4,3.9,kg/TJ,340.759692,Gas Oil combustion consumption by freight transport,AR-P,SESCO,annual,kg,ff596419-2588-3287-84dc-c73553ea03d9 -2023,Formosa,II.1.1,87.37428,TJ,N2O,3.9,kg/TJ,340.759692,Gas Oil combustion consumption by freight transport,AR-P,SESCO,annual,kg,ff596419-2588-3287-84dc-c73553ea03d9 -2023,Jujuy,II.1.1,194.79515999999998,TJ,CO2,74100.0,kg/TJ,14434321.355999999,Gas Oil combustion consumption by freight transport,AR-Y,SESCO,annual,kg,c8708075-7465-32b4-a242-32f2184cfb09 -2023,Jujuy,II.1.1,194.79515999999998,TJ,CH4,3.9,kg/TJ,759.7011239999999,Gas Oil combustion consumption by freight transport,AR-Y,SESCO,annual,kg,b2752f39-4cd9-331f-9bb4-b9a31bb44c20 -2023,Jujuy,II.1.1,194.79515999999998,TJ,N2O,3.9,kg/TJ,759.7011239999999,Gas Oil combustion consumption by freight transport,AR-Y,SESCO,annual,kg,b2752f39-4cd9-331f-9bb4-b9a31bb44c20 -2023,La Pampa,II.1.1,1265.0307599999999,TJ,CO2,74100.0,kg/TJ,93738779.31599998,Gas Oil combustion consumption by freight transport,AR-L,SESCO,annual,kg,9b7071b7-5011-3e6c-a4e8-c3a055603e08 -2023,La Pampa,II.1.1,1265.0307599999999,TJ,CH4,3.9,kg/TJ,4933.6199639999995,Gas Oil combustion consumption by freight transport,AR-L,SESCO,annual,kg,7b6685b0-e194-3e2e-9e6e-bde91be241d0 -2023,La Pampa,II.1.1,1265.0307599999999,TJ,N2O,3.9,kg/TJ,4933.6199639999995,Gas Oil combustion consumption by freight transport,AR-L,SESCO,annual,kg,7b6685b0-e194-3e2e-9e6e-bde91be241d0 -2023,La Rioja,II.1.1,107.457,TJ,CO2,74100.0,kg/TJ,7962563.699999999,Gas Oil combustion consumption by freight transport,AR-F,SESCO,annual,kg,24e7f61c-d13b-3186-8efa-9a0c63197a29 -2023,La Rioja,II.1.1,107.457,TJ,CH4,3.9,kg/TJ,419.0823,Gas Oil combustion consumption by freight transport,AR-F,SESCO,annual,kg,2b417467-530d-39cc-b393-9713341cba06 -2023,La Rioja,II.1.1,107.457,TJ,N2O,3.9,kg/TJ,419.0823,Gas Oil combustion consumption by freight transport,AR-F,SESCO,annual,kg,2b417467-530d-39cc-b393-9713341cba06 -2023,Mendoza,II.1.1,1688.93508,TJ,CO2,74100.0,kg/TJ,125150089.428,Gas Oil combustion consumption by freight transport,AR-M,SESCO,annual,kg,cf9f96f6-aca6-34de-8af8-da0bc6c2eb38 -2023,Mendoza,II.1.1,1688.93508,TJ,CH4,3.9,kg/TJ,6586.846812,Gas Oil combustion consumption by freight transport,AR-M,SESCO,annual,kg,3eeb8144-c8af-3ea8-9465-2be8f55e7054 -2023,Mendoza,II.1.1,1688.93508,TJ,N2O,3.9,kg/TJ,6586.846812,Gas Oil combustion consumption by freight transport,AR-M,SESCO,annual,kg,3eeb8144-c8af-3ea8-9465-2be8f55e7054 -2023,Misiones,II.1.1,492.38784,TJ,CO2,74100.0,kg/TJ,36485938.944,Gas Oil combustion consumption by freight transport,AR-N,SESCO,annual,kg,ebadc4a0-7795-30fd-b945-826d7375e45b -2023,Misiones,II.1.1,492.38784,TJ,CH4,3.9,kg/TJ,1920.3125759999998,Gas Oil combustion consumption by freight transport,AR-N,SESCO,annual,kg,596a1243-52c9-3f17-9a4e-7e2e25e4752c -2023,Misiones,II.1.1,492.38784,TJ,N2O,3.9,kg/TJ,1920.3125759999998,Gas Oil combustion consumption by freight transport,AR-N,SESCO,annual,kg,596a1243-52c9-3f17-9a4e-7e2e25e4752c -2023,Neuquén,II.1.1,1243.10592,TJ,CO2,74100.0,kg/TJ,92114148.67199999,Gas Oil combustion consumption by freight transport,AR-Q,SESCO,annual,kg,76ea7ac0-10a3-35e4-9ed5-ac21b15e53d4 -2023,Neuquén,II.1.1,1243.10592,TJ,CH4,3.9,kg/TJ,4848.113088,Gas Oil combustion consumption by freight transport,AR-Q,SESCO,annual,kg,d6a99a34-049a-3ab5-9885-38df64894434 -2023,Neuquén,II.1.1,1243.10592,TJ,N2O,3.9,kg/TJ,4848.113088,Gas Oil combustion consumption by freight transport,AR-Q,SESCO,annual,kg,d6a99a34-049a-3ab5-9885-38df64894434 -2023,Rio Negro,II.1.1,1537.33944,TJ,CO2,74100.0,kg/TJ,113916852.504,Gas Oil combustion consumption by freight transport,AR-R,SESCO,annual,kg,05fed763-ddd9-3099-91cb-6623065750b6 -2023,Rio Negro,II.1.1,1537.33944,TJ,CH4,3.9,kg/TJ,5995.623815999999,Gas Oil combustion consumption by freight transport,AR-R,SESCO,annual,kg,8c07c68d-76e9-38ad-a0a8-c6f0888fa6eb -2023,Rio Negro,II.1.1,1537.33944,TJ,N2O,3.9,kg/TJ,5995.623815999999,Gas Oil combustion consumption by freight transport,AR-R,SESCO,annual,kg,8c07c68d-76e9-38ad-a0a8-c6f0888fa6eb -2023,Salta,II.1.1,1033.28484,TJ,CO2,74100.0,kg/TJ,76566406.64400001,Gas Oil combustion consumption by freight transport,AR-A,SESCO,annual,kg,5cf0f470-471a-3665-985b-746dca00bc1e -2023,Salta,II.1.1,1033.28484,TJ,CH4,3.9,kg/TJ,4029.810876,Gas Oil combustion consumption by freight transport,AR-A,SESCO,annual,kg,078bf65f-0f86-3aeb-8903-cd95c6f77e3b -2023,Salta,II.1.1,1033.28484,TJ,N2O,3.9,kg/TJ,4029.810876,Gas Oil combustion consumption by freight transport,AR-A,SESCO,annual,kg,078bf65f-0f86-3aeb-8903-cd95c6f77e3b -2023,San Juan,II.1.1,150.801,TJ,CO2,74100.0,kg/TJ,11174354.1,Gas Oil combustion consumption by freight transport,AR-J,SESCO,annual,kg,6fbc82ca-e549-3125-bbff-0ce67951682f -2023,San Juan,II.1.1,150.801,TJ,CH4,3.9,kg/TJ,588.1238999999999,Gas Oil combustion consumption by freight transport,AR-J,SESCO,annual,kg,cbaaa239-467f-3bde-90a5-97c629b05007 -2023,San Juan,II.1.1,150.801,TJ,N2O,3.9,kg/TJ,588.1238999999999,Gas Oil combustion consumption by freight transport,AR-J,SESCO,annual,kg,cbaaa239-467f-3bde-90a5-97c629b05007 -2023,San Luis,II.1.1,516.47988,TJ,CO2,74100.0,kg/TJ,38271159.107999995,Gas Oil combustion consumption by freight transport,AR-D,SESCO,annual,kg,6b380a57-c678-3b84-b798-c90a65de7444 -2023,San Luis,II.1.1,516.47988,TJ,CH4,3.9,kg/TJ,2014.271532,Gas Oil combustion consumption by freight transport,AR-D,SESCO,annual,kg,40101bdb-3d37-3ace-b306-9e5a123b5fe4 -2023,San Luis,II.1.1,516.47988,TJ,N2O,3.9,kg/TJ,2014.271532,Gas Oil combustion consumption by freight transport,AR-D,SESCO,annual,kg,40101bdb-3d37-3ace-b306-9e5a123b5fe4 -2023,Santa Cruz,II.1.1,798.0713999999999,TJ,CO2,74100.0,kg/TJ,59137090.739999995,Gas Oil combustion consumption by freight transport,AR-Z,SESCO,annual,kg,2dcaed76-19fc-3553-81e4-c7cadf9c4cab -2023,Santa Cruz,II.1.1,798.0713999999999,TJ,CH4,3.9,kg/TJ,3112.47846,Gas Oil combustion consumption by freight transport,AR-Z,SESCO,annual,kg,08d0978a-f01e-34df-8722-7cfc50980d8d -2023,Santa Cruz,II.1.1,798.0713999999999,TJ,N2O,3.9,kg/TJ,3112.47846,Gas Oil combustion consumption by freight transport,AR-Z,SESCO,annual,kg,08d0978a-f01e-34df-8722-7cfc50980d8d -2023,Santa Fe,II.1.1,3231.04236,TJ,CO2,74100.0,kg/TJ,239420238.876,Gas Oil combustion consumption by freight transport,AR-S,SESCO,annual,kg,46bff1cc-c899-3239-a60d-5b2fc62b0310 -2023,Santa Fe,II.1.1,3231.04236,TJ,CH4,3.9,kg/TJ,12601.065203999999,Gas Oil combustion consumption by freight transport,AR-S,SESCO,annual,kg,a1187abd-d004-37f5-b37f-9e6d3f387c67 -2023,Santa Fe,II.1.1,3231.04236,TJ,N2O,3.9,kg/TJ,12601.065203999999,Gas Oil combustion consumption by freight transport,AR-S,SESCO,annual,kg,a1187abd-d004-37f5-b37f-9e6d3f387c67 -2023,Santiago del Estero,II.1.1,782.5398,TJ,CO2,74100.0,kg/TJ,57986199.18,Gas Oil combustion consumption by freight transport,AR-G,SESCO,annual,kg,5558f0d3-c481-3b77-9866-89c1a638b5e7 -2023,Santiago del Estero,II.1.1,782.5398,TJ,CH4,3.9,kg/TJ,3051.90522,Gas Oil combustion consumption by freight transport,AR-G,SESCO,annual,kg,f5bcb47b-5560-31eb-a84d-456a7dc1ec2e -2023,Santiago del Estero,II.1.1,782.5398,TJ,N2O,3.9,kg/TJ,3051.90522,Gas Oil combustion consumption by freight transport,AR-G,SESCO,annual,kg,f5bcb47b-5560-31eb-a84d-456a7dc1ec2e -2023,Tierra del Fuego,II.1.1,304.27488,TJ,CO2,74100.0,kg/TJ,22546768.608,Gas Oil combustion consumption by freight transport,AR-V,SESCO,annual,kg,cf55bb30-d3e8-3349-bd21-548d170b592e -2023,Tierra del Fuego,II.1.1,304.27488,TJ,CH4,3.9,kg/TJ,1186.672032,Gas Oil combustion consumption by freight transport,AR-V,SESCO,annual,kg,74a83a03-4621-3b43-a852-5652a5b1d091 -2023,Tierra del Fuego,II.1.1,304.27488,TJ,N2O,3.9,kg/TJ,1186.672032,Gas Oil combustion consumption by freight transport,AR-V,SESCO,annual,kg,74a83a03-4621-3b43-a852-5652a5b1d091 -2023,Tucuman,II.1.1,449.11607999999995,TJ,CO2,74100.0,kg/TJ,33279501.527999997,Gas Oil combustion consumption by freight transport,AR-T,SESCO,annual,kg,2a6944b4-926a-34a6-bd15-19a626da1c14 -2023,Tucuman,II.1.1,449.11607999999995,TJ,CH4,3.9,kg/TJ,1751.5527119999997,Gas Oil combustion consumption by freight transport,AR-T,SESCO,annual,kg,28721c93-74d8-3078-9472-c3f606642b12 -2023,Tucuman,II.1.1,449.11607999999995,TJ,N2O,3.9,kg/TJ,1751.5527119999997,Gas Oil combustion consumption by freight transport,AR-T,SESCO,annual,kg,28721c93-74d8-3078-9472-c3f606642b12 -2023,Buenos Aires,II.1.1,5763.704519999999,TJ,CO2,74100.0,kg/TJ,427090504.9319999,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,65067c76-08b0-3bfc-b367-ab48a7d29287 -2023,Buenos Aires,II.1.1,5763.704519999999,TJ,CH4,3.9,kg/TJ,22478.447627999998,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,6f7a221b-ff9a-3c71-a5b3-f63aa38b67f4 -2023,Buenos Aires,II.1.1,5763.704519999999,TJ,N2O,3.9,kg/TJ,22478.447627999998,Gas Oil combustion consumption by freight transport,AR-B,SESCO,annual,kg,6f7a221b-ff9a-3c71-a5b3-f63aa38b67f4 -2023,Capital Federal,II.1.1,374.9256,TJ,CO2,74100.0,kg/TJ,27781986.959999997,Gas Oil combustion consumption by freight transport,AR-C,SESCO,annual,kg,9b9f9e0a-63bd-31aa-8076-8b2c1f4ae000 -2023,Capital Federal,II.1.1,374.9256,TJ,CH4,3.9,kg/TJ,1462.2098399999998,Gas Oil combustion consumption by freight transport,AR-C,SESCO,annual,kg,ae2498b6-2b57-39bd-beef-c66dd4435b24 -2023,Capital Federal,II.1.1,374.9256,TJ,N2O,3.9,kg/TJ,1462.2098399999998,Gas Oil combustion consumption by freight transport,AR-C,SESCO,annual,kg,ae2498b6-2b57-39bd-beef-c66dd4435b24 -2023,Catamarca,II.1.1,48.256319999999995,TJ,CO2,74100.0,kg/TJ,3575793.3119999995,Gas Oil combustion consumption by freight transport,AR-K,SESCO,annual,kg,440a0744-60ef-3991-8c0b-2fe1494d63d0 -2023,Catamarca,II.1.1,48.256319999999995,TJ,CH4,3.9,kg/TJ,188.19964799999997,Gas Oil combustion consumption by freight transport,AR-K,SESCO,annual,kg,76bfdf6e-08e0-36b3-8b86-ab0b5e4d0b9c -2023,Catamarca,II.1.1,48.256319999999995,TJ,N2O,3.9,kg/TJ,188.19964799999997,Gas Oil combustion consumption by freight transport,AR-K,SESCO,annual,kg,76bfdf6e-08e0-36b3-8b86-ab0b5e4d0b9c -2023,Chaco,II.1.1,230.15663999999998,TJ,CO2,74100.0,kg/TJ,17054607.024,Gas Oil combustion consumption by freight transport,AR-H,SESCO,annual,kg,71e7251a-550f-3b5d-85f5-80754131ab28 -2023,Chaco,II.1.1,230.15663999999998,TJ,CH4,3.9,kg/TJ,897.6108959999999,Gas Oil combustion consumption by freight transport,AR-H,SESCO,annual,kg,349fed4e-ce94-3466-998b-829862a712cb -2023,Chaco,II.1.1,230.15663999999998,TJ,N2O,3.9,kg/TJ,897.6108959999999,Gas Oil combustion consumption by freight transport,AR-H,SESCO,annual,kg,349fed4e-ce94-3466-998b-829862a712cb -2023,Chubut,II.1.1,583.98816,TJ,CO2,74100.0,kg/TJ,43273522.656,Gas Oil combustion consumption by freight transport,AR-U,SESCO,annual,kg,7af6f95a-ae25-3a0c-8ee4-3f44056d2305 -2023,Chubut,II.1.1,583.98816,TJ,CH4,3.9,kg/TJ,2277.553824,Gas Oil combustion consumption by freight transport,AR-U,SESCO,annual,kg,454f2c73-2c34-3bd3-a7a5-4e4fedf0acf7 -2023,Chubut,II.1.1,583.98816,TJ,N2O,3.9,kg/TJ,2277.553824,Gas Oil combustion consumption by freight transport,AR-U,SESCO,annual,kg,454f2c73-2c34-3bd3-a7a5-4e4fedf0acf7 -2023,Corrientes,II.1.1,307.95912,TJ,CO2,74100.0,kg/TJ,22819770.792,Gas Oil combustion consumption by freight transport,AR-W,SESCO,annual,kg,3bd96c5f-150d-33b4-a992-032849bdf3c3 -2023,Corrientes,II.1.1,307.95912,TJ,CH4,3.9,kg/TJ,1201.040568,Gas Oil combustion consumption by freight transport,AR-W,SESCO,annual,kg,4b91b395-9f55-39c3-9ee4-151afcba9c68 -2023,Corrientes,II.1.1,307.95912,TJ,N2O,3.9,kg/TJ,1201.040568,Gas Oil combustion consumption by freight transport,AR-W,SESCO,annual,kg,4b91b395-9f55-39c3-9ee4-151afcba9c68 -2023,Córdoba,II.1.1,996.5508,TJ,CO2,74100.0,kg/TJ,73844414.28,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,a8d5b07f-9c04-3935-8bc3-88a658ee2054 -2023,Córdoba,II.1.1,996.5508,TJ,CH4,3.9,kg/TJ,3886.54812,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,bbc08672-bfbd-3933-b6f5-a0aff1ecde99 -2023,Córdoba,II.1.1,996.5508,TJ,N2O,3.9,kg/TJ,3886.54812,Gas Oil combustion consumption by freight transport,AR-X,SESCO,annual,kg,bbc08672-bfbd-3933-b6f5-a0aff1ecde99 -2023,Entre Rios,II.1.1,399.05375999999995,TJ,CO2,74100.0,kg/TJ,29569883.615999997,Gas Oil combustion consumption by freight transport,AR-E,SESCO,annual,kg,b60623ea-0453-3933-880e-5a9264c49cb5 -2023,Entre Rios,II.1.1,399.05375999999995,TJ,CH4,3.9,kg/TJ,1556.3096639999999,Gas Oil combustion consumption by freight transport,AR-E,SESCO,annual,kg,c4aa7767-bfd0-3fa7-8d08-b52011a28311 -2023,Entre Rios,II.1.1,399.05375999999995,TJ,N2O,3.9,kg/TJ,1556.3096639999999,Gas Oil combustion consumption by freight transport,AR-E,SESCO,annual,kg,c4aa7767-bfd0-3fa7-8d08-b52011a28311 -2023,Formosa,II.1.1,72.27611999999999,TJ,CO2,74100.0,kg/TJ,5355660.492,Gas Oil combustion consumption by freight transport,AR-P,SESCO,annual,kg,5bdd66c9-fb61-3c64-a8d7-78622a7ade89 -2023,Formosa,II.1.1,72.27611999999999,TJ,CH4,3.9,kg/TJ,281.87686799999994,Gas Oil combustion consumption by freight transport,AR-P,SESCO,annual,kg,73eb304a-adc0-39f0-a5de-0685feea5d1e -2023,Formosa,II.1.1,72.27611999999999,TJ,N2O,3.9,kg/TJ,281.87686799999994,Gas Oil combustion consumption by freight transport,AR-P,SESCO,annual,kg,73eb304a-adc0-39f0-a5de-0685feea5d1e -2023,Jujuy,II.1.1,96.8016,TJ,CO2,74100.0,kg/TJ,7172998.56,Gas Oil combustion consumption by freight transport,AR-Y,SESCO,annual,kg,5302fcb8-2442-303a-bd5d-878bbfbccfdc -2023,Jujuy,II.1.1,96.8016,TJ,CH4,3.9,kg/TJ,377.52624,Gas Oil combustion consumption by freight transport,AR-Y,SESCO,annual,kg,aab528d0-d102-38d2-874e-ffde9f983dd4 -2023,Jujuy,II.1.1,96.8016,TJ,N2O,3.9,kg/TJ,377.52624,Gas Oil combustion consumption by freight transport,AR-Y,SESCO,annual,kg,aab528d0-d102-38d2-874e-ffde9f983dd4 -2023,La Pampa,II.1.1,260.49744,TJ,CO2,74100.0,kg/TJ,19302860.303999998,Gas Oil combustion consumption by freight transport,AR-L,SESCO,annual,kg,40c3937a-c7a4-3387-804a-394373f41cc3 -2023,La Pampa,II.1.1,260.49744,TJ,CH4,3.9,kg/TJ,1015.9400159999999,Gas Oil combustion consumption by freight transport,AR-L,SESCO,annual,kg,127cbee2-9973-3037-a801-f718a2e14013 -2023,La Pampa,II.1.1,260.49744,TJ,N2O,3.9,kg/TJ,1015.9400159999999,Gas Oil combustion consumption by freight transport,AR-L,SESCO,annual,kg,127cbee2-9973-3037-a801-f718a2e14013 -2023,La Rioja,II.1.1,101.28048,TJ,CO2,74100.0,kg/TJ,7504883.568,Gas Oil combustion consumption by freight transport,AR-F,SESCO,annual,kg,5a454fd9-60f9-3c20-8a21-082636cbbd3d -2023,La Rioja,II.1.1,101.28048,TJ,CH4,3.9,kg/TJ,394.99387199999995,Gas Oil combustion consumption by freight transport,AR-F,SESCO,annual,kg,df889c89-9d39-39eb-96cc-fa7768f45f56 -2023,La Rioja,II.1.1,101.28048,TJ,N2O,3.9,kg/TJ,394.99387199999995,Gas Oil combustion consumption by freight transport,AR-F,SESCO,annual,kg,df889c89-9d39-39eb-96cc-fa7768f45f56 -2023,Mendoza,II.1.1,715.5372,TJ,CO2,74100.0,kg/TJ,53021306.519999996,Gas Oil combustion consumption by freight transport,AR-M,SESCO,annual,kg,9d80afc6-55bd-3b71-a919-2f47843554e6 -2023,Mendoza,II.1.1,715.5372,TJ,CH4,3.9,kg/TJ,2790.59508,Gas Oil combustion consumption by freight transport,AR-M,SESCO,annual,kg,2625f05b-c409-371a-8023-ac03ef756856 -2023,Mendoza,II.1.1,715.5372,TJ,N2O,3.9,kg/TJ,2790.59508,Gas Oil combustion consumption by freight transport,AR-M,SESCO,annual,kg,2625f05b-c409-371a-8023-ac03ef756856 -2023,Misiones,II.1.1,210.9408,TJ,CO2,74100.0,kg/TJ,15630713.28,Gas Oil combustion consumption by freight transport,AR-N,SESCO,annual,kg,e6ea362a-fba2-30c5-9c60-9b6ce30499d4 -2023,Misiones,II.1.1,210.9408,TJ,CH4,3.9,kg/TJ,822.66912,Gas Oil combustion consumption by freight transport,AR-N,SESCO,annual,kg,3744768f-b35b-3d18-aa6a-e3fbba9bd0ea -2023,Misiones,II.1.1,210.9408,TJ,N2O,3.9,kg/TJ,822.66912,Gas Oil combustion consumption by freight transport,AR-N,SESCO,annual,kg,3744768f-b35b-3d18-aa6a-e3fbba9bd0ea -2023,Neuquén,II.1.1,1647.46932,TJ,CO2,74100.0,kg/TJ,122077476.61199999,Gas Oil combustion consumption by freight transport,AR-Q,SESCO,annual,kg,d63f37b3-314c-36f9-bff9-63067fc5d2e3 -2023,Neuquén,II.1.1,1647.46932,TJ,CH4,3.9,kg/TJ,6425.130348,Gas Oil combustion consumption by freight transport,AR-Q,SESCO,annual,kg,59d6a31d-dcf1-34fe-bd50-d565ccd3e138 -2023,Neuquén,II.1.1,1647.46932,TJ,N2O,3.9,kg/TJ,6425.130348,Gas Oil combustion consumption by freight transport,AR-Q,SESCO,annual,kg,59d6a31d-dcf1-34fe-bd50-d565ccd3e138 -2023,Rio Negro,II.1.1,601.07292,TJ,CO2,74100.0,kg/TJ,44539503.371999994,Gas Oil combustion consumption by freight transport,AR-R,SESCO,annual,kg,1f982feb-c8fe-33a3-ba59-5c2d6dd004dd -2023,Rio Negro,II.1.1,601.07292,TJ,CH4,3.9,kg/TJ,2344.1843879999997,Gas Oil combustion consumption by freight transport,AR-R,SESCO,annual,kg,95a13d2c-8139-353a-983a-8b27afca3db4 -2023,Rio Negro,II.1.1,601.07292,TJ,N2O,3.9,kg/TJ,2344.1843879999997,Gas Oil combustion consumption by freight transport,AR-R,SESCO,annual,kg,95a13d2c-8139-353a-983a-8b27afca3db4 -2023,Salta,II.1.1,378.5376,TJ,CO2,74100.0,kg/TJ,28049636.16,Gas Oil combustion consumption by freight transport,AR-A,SESCO,annual,kg,d2d6f8b8-5525-32ce-ab16-9241991c4f2f -2023,Salta,II.1.1,378.5376,TJ,CH4,3.9,kg/TJ,1476.29664,Gas Oil combustion consumption by freight transport,AR-A,SESCO,annual,kg,23870403-beb3-3704-b32c-6aede457ae0a -2023,Salta,II.1.1,378.5376,TJ,N2O,3.9,kg/TJ,1476.29664,Gas Oil combustion consumption by freight transport,AR-A,SESCO,annual,kg,23870403-beb3-3704-b32c-6aede457ae0a -2023,San Juan,II.1.1,92.21436,TJ,CO2,74100.0,kg/TJ,6833084.076,Gas Oil combustion consumption by freight transport,AR-J,SESCO,annual,kg,0bb5732e-846f-3c28-8940-286567a05d88 -2023,San Juan,II.1.1,92.21436,TJ,CH4,3.9,kg/TJ,359.636004,Gas Oil combustion consumption by freight transport,AR-J,SESCO,annual,kg,3739a081-e5ee-38fd-98c5-4043039a5661 -2023,San Juan,II.1.1,92.21436,TJ,N2O,3.9,kg/TJ,359.636004,Gas Oil combustion consumption by freight transport,AR-J,SESCO,annual,kg,3739a081-e5ee-38fd-98c5-4043039a5661 -2023,San Luis,II.1.1,161.96208,TJ,CO2,74100.0,kg/TJ,12001390.127999999,Gas Oil combustion consumption by freight transport,AR-D,SESCO,annual,kg,95aeeb02-bf13-3b56-95bd-dbb8f4a5d7b9 -2023,San Luis,II.1.1,161.96208,TJ,CH4,3.9,kg/TJ,631.6521119999999,Gas Oil combustion consumption by freight transport,AR-D,SESCO,annual,kg,eaaa3026-8d06-35d9-99f3-e9afff1c25a6 -2023,San Luis,II.1.1,161.96208,TJ,N2O,3.9,kg/TJ,631.6521119999999,Gas Oil combustion consumption by freight transport,AR-D,SESCO,annual,kg,eaaa3026-8d06-35d9-99f3-e9afff1c25a6 -2023,Santa Cruz,II.1.1,479.34851999999995,TJ,CO2,74100.0,kg/TJ,35519725.331999995,Gas Oil combustion consumption by freight transport,AR-Z,SESCO,annual,kg,34529141-8044-37a2-9aa9-2a996eaa10d9 -2023,Santa Cruz,II.1.1,479.34851999999995,TJ,CH4,3.9,kg/TJ,1869.4592279999997,Gas Oil combustion consumption by freight transport,AR-Z,SESCO,annual,kg,a96439d8-7adf-345a-b8c9-81c71de1edff -2023,Santa Cruz,II.1.1,479.34851999999995,TJ,N2O,3.9,kg/TJ,1869.4592279999997,Gas Oil combustion consumption by freight transport,AR-Z,SESCO,annual,kg,a96439d8-7adf-345a-b8c9-81c71de1edff -2023,Santa Fe,II.1.1,976.17912,TJ,CO2,74100.0,kg/TJ,72334872.792,Gas Oil combustion consumption by freight transport,AR-S,SESCO,annual,kg,50c7a0b0-e059-34ed-9b1c-f473ce8e25b5 -2023,Santa Fe,II.1.1,976.17912,TJ,CH4,3.9,kg/TJ,3807.098568,Gas Oil combustion consumption by freight transport,AR-S,SESCO,annual,kg,6f1ea800-8d67-3a5d-a819-1200cd06e9b0 -2023,Santa Fe,II.1.1,976.17912,TJ,N2O,3.9,kg/TJ,3807.098568,Gas Oil combustion consumption by freight transport,AR-S,SESCO,annual,kg,6f1ea800-8d67-3a5d-a819-1200cd06e9b0 -2023,Santiago del Estero,II.1.1,191.94168,TJ,CO2,74100.0,kg/TJ,14222878.488,Gas Oil combustion consumption by freight transport,AR-G,SESCO,annual,kg,89b2663d-90ad-36c3-81eb-4b9d61e0732a -2023,Santiago del Estero,II.1.1,191.94168,TJ,CH4,3.9,kg/TJ,748.572552,Gas Oil combustion consumption by freight transport,AR-G,SESCO,annual,kg,7c21ca75-09ea-38b5-b340-75821c5a7a7a -2023,Santiago del Estero,II.1.1,191.94168,TJ,N2O,3.9,kg/TJ,748.572552,Gas Oil combustion consumption by freight transport,AR-G,SESCO,annual,kg,7c21ca75-09ea-38b5-b340-75821c5a7a7a -2023,Tierra del Fuego,II.1.1,148.23648,TJ,CO2,74100.0,kg/TJ,10984323.168,Gas Oil combustion consumption by freight transport,AR-V,SESCO,annual,kg,924ed928-09b4-3b3c-a37d-13bb4de3a00c -2023,Tierra del Fuego,II.1.1,148.23648,TJ,CH4,3.9,kg/TJ,578.122272,Gas Oil combustion consumption by freight transport,AR-V,SESCO,annual,kg,a3bf831e-90db-3aca-b3b1-1f03c8547fe6 -2023,Tierra del Fuego,II.1.1,148.23648,TJ,N2O,3.9,kg/TJ,578.122272,Gas Oil combustion consumption by freight transport,AR-V,SESCO,annual,kg,a3bf831e-90db-3aca-b3b1-1f03c8547fe6 -2023,Tucuman,II.1.1,230.69843999999998,TJ,CO2,74100.0,kg/TJ,17094754.404,Gas Oil combustion consumption by freight transport,AR-T,SESCO,annual,kg,3534cb96-ddb1-3839-918b-fdfa4367c7dc -2023,Tucuman,II.1.1,230.69843999999998,TJ,CH4,3.9,kg/TJ,899.7239159999999,Gas Oil combustion consumption by freight transport,AR-T,SESCO,annual,kg,cb2f8d89-d4fd-38c5-aaac-549b8b3d82f0 -2023,Tucuman,II.1.1,230.69843999999998,TJ,N2O,3.9,kg/TJ,899.7239159999999,Gas Oil combustion consumption by freight transport,AR-T,SESCO,annual,kg,cb2f8d89-d4fd-38c5-aaac-549b8b3d82f0 -2023,Buenos Aires,II.1.1,808.345615,TJ,CO2,73300.0,kg/TJ,59251733.5795,Naphtha combustion consumption by freight transport,AR-B,SESCO,annual,kg,56bbf372-fe54-314a-8ea3-bff6c20c8e0a -2023,Buenos Aires,II.1.1,808.345615,TJ,CH4,0.5,kg/TJ,404.1728075,Naphtha combustion consumption by freight transport,AR-B,SESCO,annual,kg,7f7587d7-8a13-3cc5-a0c4-59ce55b05657 -2023,Buenos Aires,II.1.1,808.345615,TJ,N2O,2.0,kg/TJ,1616.69123,Naphtha combustion consumption by freight transport,AR-B,SESCO,annual,kg,bdf3b0fe-e2c1-3d5b-a558-3a69f98a57e8 -2023,Capital Federal,II.1.1,123.456795,TJ,CO2,73300.0,kg/TJ,9049383.0735,Naphtha combustion consumption by freight transport,AR-C,SESCO,annual,kg,b93fef22-6ec3-3d8b-9ec4-f9ab3964ed38 -2023,Capital Federal,II.1.1,123.456795,TJ,CH4,0.5,kg/TJ,61.7283975,Naphtha combustion consumption by freight transport,AR-C,SESCO,annual,kg,ed48bf22-9582-34e6-931d-75b91651c836 -2023,Capital Federal,II.1.1,123.456795,TJ,N2O,2.0,kg/TJ,246.91359,Naphtha combustion consumption by freight transport,AR-C,SESCO,annual,kg,0ba95957-cb18-3def-98fc-1fb628c0db93 -2023,Catamarca,II.1.1,5.4824,TJ,CO2,73300.0,kg/TJ,401859.92,Naphtha combustion consumption by freight transport,AR-K,SESCO,annual,kg,0f022759-28d7-3c03-aeff-85a2029642d2 -2023,Catamarca,II.1.1,5.4824,TJ,CH4,0.5,kg/TJ,2.7412,Naphtha combustion consumption by freight transport,AR-K,SESCO,annual,kg,15a7409b-fe9b-3048-a201-53bf149c6da0 -2023,Catamarca,II.1.1,5.4824,TJ,N2O,2.0,kg/TJ,10.9648,Naphtha combustion consumption by freight transport,AR-K,SESCO,annual,kg,73d20885-8897-3178-995d-032ca9534628 -2023,Chaco,II.1.1,22.20372,TJ,CO2,73300.0,kg/TJ,1627532.676,Naphtha combustion consumption by freight transport,AR-H,SESCO,annual,kg,7960d131-e716-31d7-9420-5331d9f185c7 -2023,Chaco,II.1.1,22.20372,TJ,CH4,0.5,kg/TJ,11.10186,Naphtha combustion consumption by freight transport,AR-H,SESCO,annual,kg,896b18da-532a-3083-87cb-fba3ef4dccb2 -2023,Chaco,II.1.1,22.20372,TJ,N2O,2.0,kg/TJ,44.40744,Naphtha combustion consumption by freight transport,AR-H,SESCO,annual,kg,b63d7997-6223-3a73-8e5c-2e274e3a59b9 -2023,Chubut,II.1.1,23.745645,TJ,CO2,73300.0,kg/TJ,1740555.7785,Naphtha combustion consumption by freight transport,AR-U,SESCO,annual,kg,1e819e6b-6bbb-3e53-99ae-edf9775555bb -2023,Chubut,II.1.1,23.745645,TJ,CH4,0.5,kg/TJ,11.8728225,Naphtha combustion consumption by freight transport,AR-U,SESCO,annual,kg,eb1c9e0a-14ac-357b-bdd2-5f4007771cff -2023,Chubut,II.1.1,23.745645,TJ,N2O,2.0,kg/TJ,47.49129,Naphtha combustion consumption by freight transport,AR-U,SESCO,annual,kg,fba5e052-03e2-3a21-9e1e-2d9c9eb83669 -2023,Corrientes,II.1.1,21.415625,TJ,CO2,73300.0,kg/TJ,1569765.3125,Naphtha combustion consumption by freight transport,AR-W,SESCO,annual,kg,334a423c-8317-3a85-a72c-9c84d610468e -2023,Corrientes,II.1.1,21.415625,TJ,CH4,0.5,kg/TJ,10.7078125,Naphtha combustion consumption by freight transport,AR-W,SESCO,annual,kg,8d37fd92-2854-37e7-95c2-c6b0452de1af -2023,Corrientes,II.1.1,21.415625,TJ,N2O,2.0,kg/TJ,42.83125,Naphtha combustion consumption by freight transport,AR-W,SESCO,annual,kg,44416d3c-8176-3f33-84fc-c8599028ecf1 -2023,Córdoba,II.1.1,137.06,TJ,CO2,73300.0,kg/TJ,10046498.0,Naphtha combustion consumption by freight transport,AR-X,SESCO,annual,kg,165b942e-cdd4-300d-af03-2e2d530d62d2 -2023,Córdoba,II.1.1,137.06,TJ,CH4,0.5,kg/TJ,68.53,Naphtha combustion consumption by freight transport,AR-X,SESCO,annual,kg,c61b473c-90eb-3d16-8261-323f23a27abf -2023,Córdoba,II.1.1,137.06,TJ,N2O,2.0,kg/TJ,274.12,Naphtha combustion consumption by freight transport,AR-X,SESCO,annual,kg,f1b9e5a6-339d-30c0-bfab-66026ea804a3 -2023,Entre Rios,II.1.1,44.68156,TJ,CO2,73300.0,kg/TJ,3275158.3479999998,Naphtha combustion consumption by freight transport,AR-E,SESCO,annual,kg,28416528-2e92-3f91-84f6-61c162e992cf -2023,Entre Rios,II.1.1,44.68156,TJ,CH4,0.5,kg/TJ,22.34078,Naphtha combustion consumption by freight transport,AR-E,SESCO,annual,kg,86240adb-5432-37d3-94b7-230f04d3293c -2023,Entre Rios,II.1.1,44.68156,TJ,N2O,2.0,kg/TJ,89.36312,Naphtha combustion consumption by freight transport,AR-E,SESCO,annual,kg,51498c55-5918-3cdc-b2d2-083aa3879f39 -2023,Formosa,II.1.1,7.641095,TJ,CO2,73300.0,kg/TJ,560092.2635,Naphtha combustion consumption by freight transport,AR-P,SESCO,annual,kg,798afe62-f433-3f7f-84a6-3f76f4298c8a -2023,Formosa,II.1.1,7.641095,TJ,CH4,0.5,kg/TJ,3.8205475,Naphtha combustion consumption by freight transport,AR-P,SESCO,annual,kg,11a15d49-f4b9-39f2-a909-fc3160685fc4 -2023,Formosa,II.1.1,7.641095,TJ,N2O,2.0,kg/TJ,15.28219,Naphtha combustion consumption by freight transport,AR-P,SESCO,annual,kg,6cfdc78f-84f4-3f55-820e-f9c1ce29588b -2023,Jujuy,II.1.1,10.07391,TJ,CO2,73300.0,kg/TJ,738417.603,Naphtha combustion consumption by freight transport,AR-Y,SESCO,annual,kg,3323f528-336f-3755-a222-3e1e74247a11 -2023,Jujuy,II.1.1,10.07391,TJ,CH4,0.5,kg/TJ,5.036955,Naphtha combustion consumption by freight transport,AR-Y,SESCO,annual,kg,4b692e95-7649-3eda-8720-10cf6c91746d -2023,Jujuy,II.1.1,10.07391,TJ,N2O,2.0,kg/TJ,20.14782,Naphtha combustion consumption by freight transport,AR-Y,SESCO,annual,kg,ab9b2837-a23d-399e-bf93-b8352081648f -2023,La Pampa,II.1.1,14.288504999999999,TJ,CO2,73300.0,kg/TJ,1047347.4164999999,Naphtha combustion consumption by freight transport,AR-L,SESCO,annual,kg,aa78d89d-3633-3938-b87b-91ca968710b8 -2023,La Pampa,II.1.1,14.288504999999999,TJ,CH4,0.5,kg/TJ,7.1442524999999995,Naphtha combustion consumption by freight transport,AR-L,SESCO,annual,kg,c986acac-b907-3671-9779-c309501e57cd -2023,La Pampa,II.1.1,14.288504999999999,TJ,N2O,2.0,kg/TJ,28.577009999999998,Naphtha combustion consumption by freight transport,AR-L,SESCO,annual,kg,1e85e9ff-1322-32ae-8ee6-6eb7493e0511 -2023,La Rioja,II.1.1,8.737575,TJ,CO2,73300.0,kg/TJ,640464.2474999999,Naphtha combustion consumption by freight transport,AR-F,SESCO,annual,kg,26846e0b-4232-3db2-ad6a-5e6111b13ae5 -2023,La Rioja,II.1.1,8.737575,TJ,CH4,0.5,kg/TJ,4.3687875,Naphtha combustion consumption by freight transport,AR-F,SESCO,annual,kg,07d77919-508c-3cc1-87f5-0a1cea5b9a5d -2023,La Rioja,II.1.1,8.737575,TJ,N2O,2.0,kg/TJ,17.47515,Naphtha combustion consumption by freight transport,AR-F,SESCO,annual,kg,0d37d9d5-0159-3145-a129-e865d38ac450 -2023,Mendoza,II.1.1,59.48404,TJ,CO2,73300.0,kg/TJ,4360180.132,Naphtha combustion consumption by freight transport,AR-M,SESCO,annual,kg,e4abe703-ea69-39f0-9902-23257b6bc3f2 -2023,Mendoza,II.1.1,59.48404,TJ,CH4,0.5,kg/TJ,29.74202,Naphtha combustion consumption by freight transport,AR-M,SESCO,annual,kg,a969541f-8bba-359f-b12e-867226024816 -2023,Mendoza,II.1.1,59.48404,TJ,N2O,2.0,kg/TJ,118.96808,Naphtha combustion consumption by freight transport,AR-M,SESCO,annual,kg,b75f47ad-e57f-30cf-9030-c69696add502 -2023,Misiones,II.1.1,17.8178,TJ,CO2,73300.0,kg/TJ,1306044.74,Naphtha combustion consumption by freight transport,AR-N,SESCO,annual,kg,df0cc66b-f7ee-3698-9dec-f2da7248da21 -2023,Misiones,II.1.1,17.8178,TJ,CH4,0.5,kg/TJ,8.9089,Naphtha combustion consumption by freight transport,AR-N,SESCO,annual,kg,4e88f396-95d5-3019-9f6d-6750877fdbc7 -2023,Misiones,II.1.1,17.8178,TJ,N2O,2.0,kg/TJ,35.6356,Naphtha combustion consumption by freight transport,AR-N,SESCO,annual,kg,21222fda-b128-3fe7-85c4-77afcb898259 -2023,Neuquén,II.1.1,24.12256,TJ,CO2,73300.0,kg/TJ,1768183.648,Naphtha combustion consumption by freight transport,AR-Q,SESCO,annual,kg,b7c75860-712a-38ae-8016-4c77209f999c -2023,Neuquén,II.1.1,24.12256,TJ,CH4,0.5,kg/TJ,12.06128,Naphtha combustion consumption by freight transport,AR-Q,SESCO,annual,kg,8441d0e8-080b-3301-b533-d959187b1ec9 -2023,Neuquén,II.1.1,24.12256,TJ,N2O,2.0,kg/TJ,48.24512,Naphtha combustion consumption by freight transport,AR-Q,SESCO,annual,kg,3236b9a6-db86-38cd-b659-44d7c2015d03 -2023,Rio Negro,II.1.1,27.035085,TJ,CO2,73300.0,kg/TJ,1981671.7304999998,Naphtha combustion consumption by freight transport,AR-R,SESCO,annual,kg,e57e1372-be25-3c11-bf4a-887589e65109 -2023,Rio Negro,II.1.1,27.035085,TJ,CH4,0.5,kg/TJ,13.5175425,Naphtha combustion consumption by freight transport,AR-R,SESCO,annual,kg,dd7d0e29-6d37-3e5e-8a7d-c9f98f1f13fc -2023,Rio Negro,II.1.1,27.035085,TJ,N2O,2.0,kg/TJ,54.07017,Naphtha combustion consumption by freight transport,AR-R,SESCO,annual,kg,f5eb3072-7b87-35d8-92c8-3d8693b84fd7 -2023,Salta,II.1.1,30.1532,TJ,CO2,73300.0,kg/TJ,2210229.56,Naphtha combustion consumption by freight transport,AR-A,SESCO,annual,kg,28c70248-778d-32cf-9b2c-18ec2fe4f690 -2023,Salta,II.1.1,30.1532,TJ,CH4,0.5,kg/TJ,15.0766,Naphtha combustion consumption by freight transport,AR-A,SESCO,annual,kg,f1a5c01f-deb9-37ee-8e02-3bfc19b03508 -2023,Salta,II.1.1,30.1532,TJ,N2O,2.0,kg/TJ,60.3064,Naphtha combustion consumption by freight transport,AR-A,SESCO,annual,kg,ddafd2b1-c06f-31fe-aa83-d924e88f12bf -2023,San Juan,II.1.1,16.10455,TJ,CO2,73300.0,kg/TJ,1180463.515,Naphtha combustion consumption by freight transport,AR-J,SESCO,annual,kg,adf23d79-e9b5-3be2-a4e3-beee28c6fa76 -2023,San Juan,II.1.1,16.10455,TJ,CH4,0.5,kg/TJ,8.052275,Naphtha combustion consumption by freight transport,AR-J,SESCO,annual,kg,4f9a915f-6851-3f6c-86bc-0891cced4c8e -2023,San Juan,II.1.1,16.10455,TJ,N2O,2.0,kg/TJ,32.2091,Naphtha combustion consumption by freight transport,AR-J,SESCO,annual,kg,5dbfcc4f-8515-3e52-b786-97e33e964233 -2023,San Luis,II.1.1,13.0207,TJ,CO2,73300.0,kg/TJ,954417.3099999999,Naphtha combustion consumption by freight transport,AR-D,SESCO,annual,kg,1be1b5ea-2f81-3dbf-8edf-7410f261ef35 -2023,San Luis,II.1.1,13.0207,TJ,CH4,0.5,kg/TJ,6.51035,Naphtha combustion consumption by freight transport,AR-D,SESCO,annual,kg,422a1fb7-05ed-3c78-91bf-ff00baa82181 -2023,San Luis,II.1.1,13.0207,TJ,N2O,2.0,kg/TJ,26.0414,Naphtha combustion consumption by freight transport,AR-D,SESCO,annual,kg,edc6ed3f-7ecc-3a5d-afe4-be114e0669c1 -2023,Santa Cruz,II.1.1,13.43188,TJ,CO2,73300.0,kg/TJ,984556.804,Naphtha combustion consumption by freight transport,AR-Z,SESCO,annual,kg,86e49885-0e7a-3334-b61d-13f3429eb438 -2023,Santa Cruz,II.1.1,13.43188,TJ,CH4,0.5,kg/TJ,6.71594,Naphtha combustion consumption by freight transport,AR-Z,SESCO,annual,kg,751eecbd-b7f2-30fa-af2b-86babdf52e07 -2023,Santa Cruz,II.1.1,13.43188,TJ,N2O,2.0,kg/TJ,26.86376,Naphtha combustion consumption by freight transport,AR-Z,SESCO,annual,kg,932ab429-0594-3f76-9dd9-3f3eef6de32e -2023,Santa Fe,II.1.1,125.58122499999999,TJ,CO2,73300.0,kg/TJ,9205103.792499999,Naphtha combustion consumption by freight transport,AR-S,SESCO,annual,kg,fe79aaf0-5eb8-35f5-af11-0554da440ab0 -2023,Santa Fe,II.1.1,125.58122499999999,TJ,CH4,0.5,kg/TJ,62.790612499999995,Naphtha combustion consumption by freight transport,AR-S,SESCO,annual,kg,5e137354-addf-3ec8-acfd-0bcf6870b05f -2023,Santa Fe,II.1.1,125.58122499999999,TJ,N2O,2.0,kg/TJ,251.16244999999998,Naphtha combustion consumption by freight transport,AR-S,SESCO,annual,kg,b5d93bb3-6cca-3d88-b56d-cadf8c582731 -2023,Santiago del Estero,II.1.1,10.553619999999999,TJ,CO2,73300.0,kg/TJ,773580.3459999999,Naphtha combustion consumption by freight transport,AR-G,SESCO,annual,kg,ac17e692-531b-3afa-9f1d-d3299806c042 -2023,Santiago del Estero,II.1.1,10.553619999999999,TJ,CH4,0.5,kg/TJ,5.276809999999999,Naphtha combustion consumption by freight transport,AR-G,SESCO,annual,kg,f2e6408f-3326-3786-b8f8-687dcbaa2d1b -2023,Santiago del Estero,II.1.1,10.553619999999999,TJ,N2O,2.0,kg/TJ,21.107239999999997,Naphtha combustion consumption by freight transport,AR-G,SESCO,annual,kg,2fa50200-f18e-3941-a973-4d63306c2e02 -2023,Tierra del Fuego,II.1.1,10.690679999999999,TJ,CO2,73300.0,kg/TJ,783626.8439999999,Naphtha combustion consumption by freight transport,AR-V,SESCO,annual,kg,467216e6-930c-3ad0-8129-4b52c0e7320e -2023,Tierra del Fuego,II.1.1,10.690679999999999,TJ,CH4,0.5,kg/TJ,5.345339999999999,Naphtha combustion consumption by freight transport,AR-V,SESCO,annual,kg,925596e5-6592-3129-ae69-a762a8981756 -2023,Tierra del Fuego,II.1.1,10.690679999999999,TJ,N2O,2.0,kg/TJ,21.381359999999997,Naphtha combustion consumption by freight transport,AR-V,SESCO,annual,kg,1a2d8b64-a0df-314c-bc16-9efffe545652 -2023,Tucuman,II.1.1,37.828559999999996,TJ,CO2,73300.0,kg/TJ,2772833.448,Naphtha combustion consumption by freight transport,AR-T,SESCO,annual,kg,5b3ee9fd-bb02-369f-b472-11a40c55687c -2023,Tucuman,II.1.1,37.828559999999996,TJ,CH4,0.5,kg/TJ,18.914279999999998,Naphtha combustion consumption by freight transport,AR-T,SESCO,annual,kg,fb5b3284-edca-3a15-ace5-038aad18f1a0 -2023,Tucuman,II.1.1,37.828559999999996,TJ,N2O,2.0,kg/TJ,75.65711999999999,Naphtha combustion consumption by freight transport,AR-T,SESCO,annual,kg,64b52cb1-88f8-31a2-bd3e-def56b21f32a -2023,Buenos Aires,II.1.1,804.0967549999999,TJ,CO2,73300.0,kg/TJ,58940292.141499996,Naphtha combustion consumption by freight transport,AR-B,SESCO,annual,kg,5a6c9465-52bd-388a-b3b0-e27aeb7ad78a -2023,Buenos Aires,II.1.1,804.0967549999999,TJ,CH4,0.5,kg/TJ,402.04837749999996,Naphtha combustion consumption by freight transport,AR-B,SESCO,annual,kg,6ccc7f36-0373-34d3-8be1-44a4e8cd12db -2023,Buenos Aires,II.1.1,804.0967549999999,TJ,N2O,2.0,kg/TJ,1608.1935099999998,Naphtha combustion consumption by freight transport,AR-B,SESCO,annual,kg,a9347eed-204b-3fe4-8067-fffa69406139 -2023,Capital Federal,II.1.1,128.90493,TJ,CO2,73300.0,kg/TJ,9448731.369,Naphtha combustion consumption by freight transport,AR-C,SESCO,annual,kg,cf09f67f-5e08-3370-bf48-c9b37393866a -2023,Capital Federal,II.1.1,128.90493,TJ,CH4,0.5,kg/TJ,64.452465,Naphtha combustion consumption by freight transport,AR-C,SESCO,annual,kg,3dd55cfb-4874-3e33-8028-783854975a1c -2023,Capital Federal,II.1.1,128.90493,TJ,N2O,2.0,kg/TJ,257.80986,Naphtha combustion consumption by freight transport,AR-C,SESCO,annual,kg,e6f9cd6d-d67a-312f-8244-c4f3458714cb -2023,Catamarca,II.1.1,2.5013449999999997,TJ,CO2,73300.0,kg/TJ,183348.58849999998,Naphtha combustion consumption by freight transport,AR-K,SESCO,annual,kg,179e13e2-252b-3123-82ed-89d8b058a59c -2023,Catamarca,II.1.1,2.5013449999999997,TJ,CH4,0.5,kg/TJ,1.2506724999999999,Naphtha combustion consumption by freight transport,AR-K,SESCO,annual,kg,8f62c34e-cd9f-3b50-9745-c7db38cfab80 -2023,Catamarca,II.1.1,2.5013449999999997,TJ,N2O,2.0,kg/TJ,5.002689999999999,Naphtha combustion consumption by freight transport,AR-K,SESCO,annual,kg,e239c41f-2405-3823-baa9-9fd7f499c248 -2023,Chaco,II.1.1,17.920595,TJ,CO2,73300.0,kg/TJ,1313579.6135,Naphtha combustion consumption by freight transport,AR-H,SESCO,annual,kg,59657944-64db-3162-8839-b3f4500da067 -2023,Chaco,II.1.1,17.920595,TJ,CH4,0.5,kg/TJ,8.9602975,Naphtha combustion consumption by freight transport,AR-H,SESCO,annual,kg,4941ca2b-4061-3e5b-9ccc-6f5ebf7c9ffa -2023,Chaco,II.1.1,17.920595,TJ,N2O,2.0,kg/TJ,35.84119,Naphtha combustion consumption by freight transport,AR-H,SESCO,annual,kg,125beb8a-2f98-3433-a4ff-46e111eba934 -2023,Chubut,II.1.1,17.440884999999998,TJ,CO2,73300.0,kg/TJ,1278416.8705,Naphtha combustion consumption by freight transport,AR-U,SESCO,annual,kg,ae8c0729-96d2-3ead-a129-cbdd38713198 -2023,Chubut,II.1.1,17.440884999999998,TJ,CH4,0.5,kg/TJ,8.720442499999999,Naphtha combustion consumption by freight transport,AR-U,SESCO,annual,kg,e756d243-2edd-31bf-8b5c-0628eba79bd3 -2023,Chubut,II.1.1,17.440884999999998,TJ,N2O,2.0,kg/TJ,34.881769999999996,Naphtha combustion consumption by freight transport,AR-U,SESCO,annual,kg,a9d282bc-619e-3f12-a75f-8a2b8ca28f39 -2023,Corrientes,II.1.1,23.09461,TJ,CO2,73300.0,kg/TJ,1692834.913,Naphtha combustion consumption by freight transport,AR-W,SESCO,annual,kg,b950e0f8-60a5-3b08-bfa9-bae76be3bfdc -2023,Corrientes,II.1.1,23.09461,TJ,CH4,0.5,kg/TJ,11.547305,Naphtha combustion consumption by freight transport,AR-W,SESCO,annual,kg,0da0dcdf-d083-3e61-aab6-8d001c98f5e1 -2023,Corrientes,II.1.1,23.09461,TJ,N2O,2.0,kg/TJ,46.18922,Naphtha combustion consumption by freight transport,AR-W,SESCO,annual,kg,42ff44b5-56e3-32d8-87f7-8721efa87f17 -2023,Córdoba,II.1.1,118.728225,TJ,CO2,73300.0,kg/TJ,8702778.8925,Naphtha combustion consumption by freight transport,AR-X,SESCO,annual,kg,49854a3a-70b7-38ba-95dd-fe567d23632a -2023,Córdoba,II.1.1,118.728225,TJ,CH4,0.5,kg/TJ,59.3641125,Naphtha combustion consumption by freight transport,AR-X,SESCO,annual,kg,569a6eaa-a368-3807-8b09-07f7efa26515 -2023,Córdoba,II.1.1,118.728225,TJ,N2O,2.0,kg/TJ,237.45645,Naphtha combustion consumption by freight transport,AR-X,SESCO,annual,kg,7408f6ef-aad2-39b7-88d4-b832ccb29e8e -2023,Entre Rios,II.1.1,43.65361,TJ,CO2,73300.0,kg/TJ,3199809.613,Naphtha combustion consumption by freight transport,AR-E,SESCO,annual,kg,6b6cd652-1ca9-35b8-be18-3890209c5085 -2023,Entre Rios,II.1.1,43.65361,TJ,CH4,0.5,kg/TJ,21.826805,Naphtha combustion consumption by freight transport,AR-E,SESCO,annual,kg,4f0ace4f-1dfe-36a2-9af3-222ae844148b -2023,Entre Rios,II.1.1,43.65361,TJ,N2O,2.0,kg/TJ,87.30722,Naphtha combustion consumption by freight transport,AR-E,SESCO,annual,kg,408a9d7f-87f6-3bb8-9534-52662806568f -2023,Formosa,II.1.1,3.8034149999999998,TJ,CO2,73300.0,kg/TJ,278790.3195,Naphtha combustion consumption by freight transport,AR-P,SESCO,annual,kg,786a0a9e-9321-3e54-b581-f4e2d297f4db -2023,Formosa,II.1.1,3.8034149999999998,TJ,CH4,0.5,kg/TJ,1.9017074999999999,Naphtha combustion consumption by freight transport,AR-P,SESCO,annual,kg,dab57ab0-4f3c-3a65-95d9-40edd0638a30 -2023,Formosa,II.1.1,3.8034149999999998,TJ,N2O,2.0,kg/TJ,7.6068299999999995,Naphtha combustion consumption by freight transport,AR-P,SESCO,annual,kg,c019d368-4df2-3cdc-af2c-0d7d62aee169 -2023,Jujuy,II.1.1,4.5915099999999995,TJ,CO2,73300.0,kg/TJ,336557.68299999996,Naphtha combustion consumption by freight transport,AR-Y,SESCO,annual,kg,7a89635c-0970-38eb-a947-38dd6d497bdc -2023,Jujuy,II.1.1,4.5915099999999995,TJ,CH4,0.5,kg/TJ,2.2957549999999998,Naphtha combustion consumption by freight transport,AR-Y,SESCO,annual,kg,f2b8f3ae-7d42-3889-8b68-bb27d0ae4691 -2023,Jujuy,II.1.1,4.5915099999999995,TJ,N2O,2.0,kg/TJ,9.183019999999999,Naphtha combustion consumption by freight transport,AR-Y,SESCO,annual,kg,97088566-c9dc-36c5-9830-fbeaee34f9ab -2023,La Pampa,II.1.1,15.727635,TJ,CO2,73300.0,kg/TJ,1152835.6454999999,Naphtha combustion consumption by freight transport,AR-L,SESCO,annual,kg,9e4496bf-ea5a-3df0-b2fb-fa76a92858c0 -2023,La Pampa,II.1.1,15.727635,TJ,CH4,0.5,kg/TJ,7.8638175,Naphtha combustion consumption by freight transport,AR-L,SESCO,annual,kg,2e0fc790-0384-332a-b6d1-f358499cd02c -2023,La Pampa,II.1.1,15.727635,TJ,N2O,2.0,kg/TJ,31.45527,Naphtha combustion consumption by freight transport,AR-L,SESCO,annual,kg,7e354fc0-3825-3155-94ed-5bdc7ae6cce7 -2023,La Rioja,II.1.1,6.681674999999999,TJ,CO2,73300.0,kg/TJ,489766.77749999997,Naphtha combustion consumption by freight transport,AR-F,SESCO,annual,kg,5e683c28-d67d-3e96-9346-3185bad0963e -2023,La Rioja,II.1.1,6.681674999999999,TJ,CH4,0.5,kg/TJ,3.3408374999999997,Naphtha combustion consumption by freight transport,AR-F,SESCO,annual,kg,a3503182-9e9f-3dcf-a349-329087cd9e3f -2023,La Rioja,II.1.1,6.681674999999999,TJ,N2O,2.0,kg/TJ,13.363349999999999,Naphtha combustion consumption by freight transport,AR-F,SESCO,annual,kg,7e411ca4-29b9-33f1-a7fc-92fbfc0dfa9f -2023,Mendoza,II.1.1,69.592215,TJ,CO2,73300.0,kg/TJ,5101109.359499999,Naphtha combustion consumption by freight transport,AR-M,SESCO,annual,kg,fc59ba2c-7c9b-31c4-84a0-621e2f46728e -2023,Mendoza,II.1.1,69.592215,TJ,CH4,0.5,kg/TJ,34.7961075,Naphtha combustion consumption by freight transport,AR-M,SESCO,annual,kg,18fe1cc3-4a68-3cfe-b9ec-028d0e696754 -2023,Mendoza,II.1.1,69.592215,TJ,N2O,2.0,kg/TJ,139.18443,Naphtha combustion consumption by freight transport,AR-M,SESCO,annual,kg,43bbda20-db88-3ffd-8a8e-709f1d709131 -2023,Misiones,II.1.1,18.742955,TJ,CO2,73300.0,kg/TJ,1373858.6014999999,Naphtha combustion consumption by freight transport,AR-N,SESCO,annual,kg,653dce69-8a0c-37ab-b3a6-bd14844b1773 -2023,Misiones,II.1.1,18.742955,TJ,CH4,0.5,kg/TJ,9.3714775,Naphtha combustion consumption by freight transport,AR-N,SESCO,annual,kg,72483d79-f31e-315e-a807-17dbed9329e3 -2023,Misiones,II.1.1,18.742955,TJ,N2O,2.0,kg/TJ,37.48591,Naphtha combustion consumption by freight transport,AR-N,SESCO,annual,kg,21abaa77-fd5a-30ab-bd9e-9b3ecf7fa6fc -2023,Neuquén,II.1.1,46.908784999999995,TJ,CO2,73300.0,kg/TJ,3438413.9404999996,Naphtha combustion consumption by freight transport,AR-Q,SESCO,annual,kg,0b63f0d0-522d-32bd-b16b-37bab1c0e0c6 -2023,Neuquén,II.1.1,46.908784999999995,TJ,CH4,0.5,kg/TJ,23.454392499999997,Naphtha combustion consumption by freight transport,AR-Q,SESCO,annual,kg,914e3a01-5463-3797-a34c-5a48d6c6ddb0 -2023,Neuquén,II.1.1,46.908784999999995,TJ,N2O,2.0,kg/TJ,93.81756999999999,Naphtha combustion consumption by freight transport,AR-Q,SESCO,annual,kg,03f9643a-009b-33c3-9743-421a6f1e359f -2023,Rio Negro,II.1.1,34.74471,TJ,CO2,73300.0,kg/TJ,2546787.243,Naphtha combustion consumption by freight transport,AR-R,SESCO,annual,kg,24febfa7-b8f4-3615-8e36-d2853c8a3e52 -2023,Rio Negro,II.1.1,34.74471,TJ,CH4,0.5,kg/TJ,17.372355,Naphtha combustion consumption by freight transport,AR-R,SESCO,annual,kg,39ad55dd-4fc9-37ce-b74c-725e1dc5e8b0 -2023,Rio Negro,II.1.1,34.74471,TJ,N2O,2.0,kg/TJ,69.48942,Naphtha combustion consumption by freight transport,AR-R,SESCO,annual,kg,2c7f5e50-aada-387b-8896-e457b31fdfca -2023,Salta,II.1.1,25.527424999999997,TJ,CO2,73300.0,kg/TJ,1871160.2524999997,Naphtha combustion consumption by freight transport,AR-A,SESCO,annual,kg,a5c4c764-9b86-3e8b-9d0d-28302acd13e5 -2023,Salta,II.1.1,25.527424999999997,TJ,CH4,0.5,kg/TJ,12.763712499999999,Naphtha combustion consumption by freight transport,AR-A,SESCO,annual,kg,0c1385e1-066d-38c2-ba62-40e4c68a19bb -2023,Salta,II.1.1,25.527424999999997,TJ,N2O,2.0,kg/TJ,51.054849999999995,Naphtha combustion consumption by freight transport,AR-A,SESCO,annual,kg,367eb5e0-c560-3f37-b191-d07d3455eea9 -2023,San Juan,II.1.1,9.731259999999999,TJ,CO2,73300.0,kg/TJ,713301.3579999999,Naphtha combustion consumption by freight transport,AR-J,SESCO,annual,kg,1c436836-e391-3678-b6b1-f1ac09cdfe05 -2023,San Juan,II.1.1,9.731259999999999,TJ,CH4,0.5,kg/TJ,4.8656299999999995,Naphtha combustion consumption by freight transport,AR-J,SESCO,annual,kg,f45336fa-3dc3-320d-9dc0-a9afebfbc899 -2023,San Juan,II.1.1,9.731259999999999,TJ,N2O,2.0,kg/TJ,19.462519999999998,Naphtha combustion consumption by freight transport,AR-J,SESCO,annual,kg,4fb1b813-7b48-31c9-90e3-8deff178a0ef -2023,San Luis,II.1.1,10.245235,TJ,CO2,73300.0,kg/TJ,750975.7255,Naphtha combustion consumption by freight transport,AR-D,SESCO,annual,kg,2870a450-c352-3d08-8f8c-334f75924c23 -2023,San Luis,II.1.1,10.245235,TJ,CH4,0.5,kg/TJ,5.1226175,Naphtha combustion consumption by freight transport,AR-D,SESCO,annual,kg,182839b8-ae1a-3968-a67c-4d0bd699a3b3 -2023,San Luis,II.1.1,10.245235,TJ,N2O,2.0,kg/TJ,20.49047,Naphtha combustion consumption by freight transport,AR-D,SESCO,annual,kg,8f5087f4-db2a-33c5-865f-9b174c4ef97e -2023,Santa Cruz,II.1.1,6.37329,TJ,CO2,73300.0,kg/TJ,467162.157,Naphtha combustion consumption by freight transport,AR-Z,SESCO,annual,kg,6412b911-e0ca-3cf0-82c6-b480cb4a2429 -2023,Santa Cruz,II.1.1,6.37329,TJ,CH4,0.5,kg/TJ,3.186645,Naphtha combustion consumption by freight transport,AR-Z,SESCO,annual,kg,b49a5904-2b6c-331c-9e4b-84bb1a2c239a -2023,Santa Cruz,II.1.1,6.37329,TJ,N2O,2.0,kg/TJ,12.74658,Naphtha combustion consumption by freight transport,AR-Z,SESCO,annual,kg,a6640717-7588-3749-abf1-c06b0bc08e32 -2023,Santa Fe,II.1.1,124.07356499999999,TJ,CO2,73300.0,kg/TJ,9094592.314499998,Naphtha combustion consumption by freight transport,AR-S,SESCO,annual,kg,20ddc48a-e6d0-3d3d-9221-b78a520a28cd -2023,Santa Fe,II.1.1,124.07356499999999,TJ,CH4,0.5,kg/TJ,62.036782499999994,Naphtha combustion consumption by freight transport,AR-S,SESCO,annual,kg,2a6d7aa8-d8b7-360e-af58-934033a5f1f7 -2023,Santa Fe,II.1.1,124.07356499999999,TJ,N2O,2.0,kg/TJ,248.14712999999998,Naphtha combustion consumption by freight transport,AR-S,SESCO,annual,kg,e8f6e5f6-1a85-3114-9f59-fd6b5658abca -2023,Santiago del Estero,II.1.1,6.818734999999999,TJ,CO2,73300.0,kg/TJ,499813.27549999993,Naphtha combustion consumption by freight transport,AR-G,SESCO,annual,kg,b704e616-d3b9-3ed3-bf8a-91b622f6932b -2023,Santiago del Estero,II.1.1,6.818734999999999,TJ,CH4,0.5,kg/TJ,3.4093674999999997,Naphtha combustion consumption by freight transport,AR-G,SESCO,annual,kg,ca37d37e-6b04-397b-9c33-203d2d3842b7 -2023,Santiago del Estero,II.1.1,6.818734999999999,TJ,N2O,2.0,kg/TJ,13.637469999999999,Naphtha combustion consumption by freight transport,AR-G,SESCO,annual,kg,ca87903b-e97f-340e-8ed7-dcb587e80971 -2023,Tierra del Fuego,II.1.1,4.420185,TJ,CO2,73300.0,kg/TJ,323999.5605,Naphtha combustion consumption by freight transport,AR-V,SESCO,annual,kg,3e616596-210c-3dda-a39d-6dff2ef23f19 -2023,Tierra del Fuego,II.1.1,4.420185,TJ,CH4,0.5,kg/TJ,2.2100925,Naphtha combustion consumption by freight transport,AR-V,SESCO,annual,kg,e1ce17fb-3c4b-3b5d-a04e-51f2dbd250c5 -2023,Tierra del Fuego,II.1.1,4.420185,TJ,N2O,2.0,kg/TJ,8.84037,Naphtha combustion consumption by freight transport,AR-V,SESCO,annual,kg,12093b4a-3ed3-3144-8859-535483c439b0 -2023,Tucuman,II.1.1,21.004445,TJ,CO2,73300.0,kg/TJ,1539625.8185,Naphtha combustion consumption by freight transport,AR-T,SESCO,annual,kg,8bfe4099-69ba-395c-80ca-509a9c39690a -2023,Tucuman,II.1.1,21.004445,TJ,CH4,0.5,kg/TJ,10.5022225,Naphtha combustion consumption by freight transport,AR-T,SESCO,annual,kg,3c4768bc-4096-39ac-b98d-574654215047 -2023,Tucuman,II.1.1,21.004445,TJ,N2O,2.0,kg/TJ,42.00889,Naphtha combustion consumption by freight transport,AR-T,SESCO,annual,kg,b0a3a2e3-e7d3-34d1-8d13-e9732c17609d -2023,Buenos Aires,II.1.1,5703.4202399999995,TJ,CO2,74100.0,kg/TJ,422623439.784,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,f80543b9-d0a6-308b-80af-f2b9e31e7246 -2023,Buenos Aires,II.1.1,5703.4202399999995,TJ,CH4,3.9,kg/TJ,22243.338935999996,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,25ae312c-99e1-3966-9aeb-4d6a44ac6172 -2023,Buenos Aires,II.1.1,5703.4202399999995,TJ,N2O,3.9,kg/TJ,22243.338935999996,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,25ae312c-99e1-3966-9aeb-4d6a44ac6172 -2023,Capital Federal,II.1.1,1664.48184,TJ,CO2,74100.0,kg/TJ,123338104.344,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,be0315ff-0c0e-32ed-8017-0e515ffc96f0 -2023,Capital Federal,II.1.1,1664.48184,TJ,CH4,3.9,kg/TJ,6491.479176,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,4b1bd794-2913-3cd1-ad9c-dd513f59e0b2 -2023,Capital Federal,II.1.1,1664.48184,TJ,N2O,3.9,kg/TJ,6491.479176,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,4b1bd794-2913-3cd1-ad9c-dd513f59e0b2 -2023,Catamarca,II.1.1,70.14504,TJ,CO2,74100.0,kg/TJ,5197747.464,Gas Oil combustion consumption by public passenger transport,AR-K,SESCO,annual,kg,06504179-0741-3648-803b-436c501dbc6e -2023,Catamarca,II.1.1,70.14504,TJ,CH4,3.9,kg/TJ,273.565656,Gas Oil combustion consumption by public passenger transport,AR-K,SESCO,annual,kg,6995b8db-999e-32db-b580-a5d6b798aaba -2023,Catamarca,II.1.1,70.14504,TJ,N2O,3.9,kg/TJ,273.565656,Gas Oil combustion consumption by public passenger transport,AR-K,SESCO,annual,kg,6995b8db-999e-32db-b580-a5d6b798aaba -2023,Chaco,II.1.1,83.00376,TJ,CO2,74100.0,kg/TJ,6150578.616,Gas Oil combustion consumption by public passenger transport,AR-H,SESCO,annual,kg,4e4a5008-8663-3e7c-ba0a-f563a75c8a7b -2023,Chaco,II.1.1,83.00376,TJ,CH4,3.9,kg/TJ,323.71466399999997,Gas Oil combustion consumption by public passenger transport,AR-H,SESCO,annual,kg,482cb67e-715e-3362-ae57-f1af7ce213ea -2023,Chaco,II.1.1,83.00376,TJ,N2O,3.9,kg/TJ,323.71466399999997,Gas Oil combustion consumption by public passenger transport,AR-H,SESCO,annual,kg,482cb67e-715e-3362-ae57-f1af7ce213ea -2023,Chubut,II.1.1,5.49024,TJ,CO2,74100.0,kg/TJ,406826.784,Gas Oil combustion consumption by public passenger transport,AR-U,SESCO,annual,kg,620708a5-a7c1-359f-9e18-172479b3c3df -2023,Chubut,II.1.1,5.49024,TJ,CH4,3.9,kg/TJ,21.411936,Gas Oil combustion consumption by public passenger transport,AR-U,SESCO,annual,kg,a51eca68-bf6e-3dd5-8384-c31674e8405c -2023,Chubut,II.1.1,5.49024,TJ,N2O,3.9,kg/TJ,21.411936,Gas Oil combustion consumption by public passenger transport,AR-U,SESCO,annual,kg,a51eca68-bf6e-3dd5-8384-c31674e8405c -2023,Corrientes,II.1.1,124.32504,TJ,CO2,74100.0,kg/TJ,9212485.464,Gas Oil combustion consumption by public passenger transport,AR-W,SESCO,annual,kg,63d99530-68aa-3973-a7fd-f8ebf76e19e3 -2023,Corrientes,II.1.1,124.32504,TJ,CH4,3.9,kg/TJ,484.867656,Gas Oil combustion consumption by public passenger transport,AR-W,SESCO,annual,kg,0c0c65c6-1eb0-3f3f-8f67-7716c94790d2 -2023,Corrientes,II.1.1,124.32504,TJ,N2O,3.9,kg/TJ,484.867656,Gas Oil combustion consumption by public passenger transport,AR-W,SESCO,annual,kg,0c0c65c6-1eb0-3f3f-8f67-7716c94790d2 -2023,Córdoba,II.1.1,782.86488,TJ,CO2,74100.0,kg/TJ,58010287.607999995,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,d24b63d9-8b8f-3132-a535-2c543f13ffae -2023,Córdoba,II.1.1,782.86488,TJ,CH4,3.9,kg/TJ,3053.1730319999997,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,efcf033d-e4e0-3a8b-af60-56f0fc1cee73 -2023,Córdoba,II.1.1,782.86488,TJ,N2O,3.9,kg/TJ,3053.1730319999997,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,efcf033d-e4e0-3a8b-af60-56f0fc1cee73 -2023,Entre Rios,II.1.1,187.39056,TJ,CO2,74100.0,kg/TJ,13885640.496,Gas Oil combustion consumption by public passenger transport,AR-E,SESCO,annual,kg,7aea0725-cd72-312d-a976-41539f17f7ec -2023,Entre Rios,II.1.1,187.39056,TJ,CH4,3.9,kg/TJ,730.823184,Gas Oil combustion consumption by public passenger transport,AR-E,SESCO,annual,kg,61fc4724-4a37-342b-8262-083863c8fa61 -2023,Entre Rios,II.1.1,187.39056,TJ,N2O,3.9,kg/TJ,730.823184,Gas Oil combustion consumption by public passenger transport,AR-E,SESCO,annual,kg,61fc4724-4a37-342b-8262-083863c8fa61 -2023,Formosa,II.1.1,37.96212,TJ,CO2,74100.0,kg/TJ,2812993.0919999997,Gas Oil combustion consumption by public passenger transport,AR-P,SESCO,annual,kg,7493a0e8-ee10-3982-beef-eed0b3b08a90 -2023,Formosa,II.1.1,37.96212,TJ,CH4,3.9,kg/TJ,148.052268,Gas Oil combustion consumption by public passenger transport,AR-P,SESCO,annual,kg,79d13e8a-d8e8-3584-8e3d-4a8c781c227a -2023,Formosa,II.1.1,37.96212,TJ,N2O,3.9,kg/TJ,148.052268,Gas Oil combustion consumption by public passenger transport,AR-P,SESCO,annual,kg,79d13e8a-d8e8-3584-8e3d-4a8c781c227a -2023,Jujuy,II.1.1,198.51551999999998,TJ,CO2,74100.0,kg/TJ,14710000.031999998,Gas Oil combustion consumption by public passenger transport,AR-Y,SESCO,annual,kg,37c926f7-1a36-3c5c-aa22-ad1725ae7b83 -2023,Jujuy,II.1.1,198.51551999999998,TJ,CH4,3.9,kg/TJ,774.210528,Gas Oil combustion consumption by public passenger transport,AR-Y,SESCO,annual,kg,3884ce6c-e54a-3b45-a524-c59f89b0cc24 -2023,Jujuy,II.1.1,198.51551999999998,TJ,N2O,3.9,kg/TJ,774.210528,Gas Oil combustion consumption by public passenger transport,AR-Y,SESCO,annual,kg,3884ce6c-e54a-3b45-a524-c59f89b0cc24 -2023,Mendoza,II.1.1,1214.0654399999999,TJ,CO2,74100.0,kg/TJ,89962249.10399999,Gas Oil combustion consumption by public passenger transport,AR-M,SESCO,annual,kg,ea15720d-33ba-3f0b-9d95-5c2c9e04887d -2023,Mendoza,II.1.1,1214.0654399999999,TJ,CH4,3.9,kg/TJ,4734.855215999999,Gas Oil combustion consumption by public passenger transport,AR-M,SESCO,annual,kg,98a3d296-5538-3f2f-b374-3ae95a36fc60 -2023,Mendoza,II.1.1,1214.0654399999999,TJ,N2O,3.9,kg/TJ,4734.855215999999,Gas Oil combustion consumption by public passenger transport,AR-M,SESCO,annual,kg,98a3d296-5538-3f2f-b374-3ae95a36fc60 -2023,Misiones,II.1.1,650.59344,TJ,CO2,74100.0,kg/TJ,48208973.904,Gas Oil combustion consumption by public passenger transport,AR-N,SESCO,annual,kg,6b79c211-071e-3a7d-bc57-2a09ad53d188 -2023,Misiones,II.1.1,650.59344,TJ,CH4,3.9,kg/TJ,2537.3144159999997,Gas Oil combustion consumption by public passenger transport,AR-N,SESCO,annual,kg,025f8972-a315-3834-ae7a-49f86fbfa440 -2023,Misiones,II.1.1,650.59344,TJ,N2O,3.9,kg/TJ,2537.3144159999997,Gas Oil combustion consumption by public passenger transport,AR-N,SESCO,annual,kg,025f8972-a315-3834-ae7a-49f86fbfa440 -2023,Neuquén,II.1.1,21.708119999999997,TJ,CO2,74100.0,kg/TJ,1608571.6919999998,Gas Oil combustion consumption by public passenger transport,AR-Q,SESCO,annual,kg,e0b1a1e6-eb51-3a8c-94e0-d14a487087cc -2023,Neuquén,II.1.1,21.708119999999997,TJ,CH4,3.9,kg/TJ,84.66166799999999,Gas Oil combustion consumption by public passenger transport,AR-Q,SESCO,annual,kg,5354aecd-e423-38e1-8855-db8d6d085e67 -2023,Neuquén,II.1.1,21.708119999999997,TJ,N2O,3.9,kg/TJ,84.66166799999999,Gas Oil combustion consumption by public passenger transport,AR-Q,SESCO,annual,kg,5354aecd-e423-38e1-8855-db8d6d085e67 -2023,Rio Negro,II.1.1,28.1736,TJ,CO2,74100.0,kg/TJ,2087663.76,Gas Oil combustion consumption by public passenger transport,AR-R,SESCO,annual,kg,f670640a-89e7-3f91-9d62-aa6d2e3d2f11 -2023,Rio Negro,II.1.1,28.1736,TJ,CH4,3.9,kg/TJ,109.87704,Gas Oil combustion consumption by public passenger transport,AR-R,SESCO,annual,kg,8e635a25-77e3-3cd2-b016-625148d21776 -2023,Rio Negro,II.1.1,28.1736,TJ,N2O,3.9,kg/TJ,109.87704,Gas Oil combustion consumption by public passenger transport,AR-R,SESCO,annual,kg,8e635a25-77e3-3cd2-b016-625148d21776 -2023,Salta,II.1.1,287.37072,TJ,CO2,74100.0,kg/TJ,21294170.352,Gas Oil combustion consumption by public passenger transport,AR-A,SESCO,annual,kg,6ff70493-81ef-315d-8c47-786d49ab8058 -2023,Salta,II.1.1,287.37072,TJ,CH4,3.9,kg/TJ,1120.745808,Gas Oil combustion consumption by public passenger transport,AR-A,SESCO,annual,kg,76e0a0e5-1f79-3137-b906-fff3d492c550 -2023,Salta,II.1.1,287.37072,TJ,N2O,3.9,kg/TJ,1120.745808,Gas Oil combustion consumption by public passenger transport,AR-A,SESCO,annual,kg,76e0a0e5-1f79-3137-b906-fff3d492c550 -2023,San Juan,II.1.1,3.0702,TJ,CO2,74100.0,kg/TJ,227501.81999999998,Gas Oil combustion consumption by public passenger transport,AR-J,SESCO,annual,kg,9b7b353a-68e3-3c1d-b14a-d6ed4224e523 -2023,San Juan,II.1.1,3.0702,TJ,CH4,3.9,kg/TJ,11.97378,Gas Oil combustion consumption by public passenger transport,AR-J,SESCO,annual,kg,026ca2c4-03ca-30e4-a19a-2badf58d9a8d -2023,San Juan,II.1.1,3.0702,TJ,N2O,3.9,kg/TJ,11.97378,Gas Oil combustion consumption by public passenger transport,AR-J,SESCO,annual,kg,026ca2c4-03ca-30e4-a19a-2badf58d9a8d -2023,Santa Fe,II.1.1,419.49768,TJ,CO2,74100.0,kg/TJ,31084778.088,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,209148d4-43a0-3aa0-8c2b-98d728d0ea6a -2023,Santa Fe,II.1.1,419.49768,TJ,CH4,3.9,kg/TJ,1636.040952,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,b8be8dc4-17e1-346e-a2c3-f67265b359c4 -2023,Santa Fe,II.1.1,419.49768,TJ,N2O,3.9,kg/TJ,1636.040952,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,b8be8dc4-17e1-346e-a2c3-f67265b359c4 -2023,Tierra del Fuego,II.1.1,9.53568,TJ,CO2,74100.0,kg/TJ,706593.8879999999,Gas Oil combustion consumption by public passenger transport,AR-V,SESCO,annual,kg,08cd1f88-5341-3a47-9736-4743d9c979cd -2023,Tierra del Fuego,II.1.1,9.53568,TJ,CH4,3.9,kg/TJ,37.18915199999999,Gas Oil combustion consumption by public passenger transport,AR-V,SESCO,annual,kg,c9cdc773-abc1-3803-bda7-b84ca150abf0 -2023,Tierra del Fuego,II.1.1,9.53568,TJ,N2O,3.9,kg/TJ,37.18915199999999,Gas Oil combustion consumption by public passenger transport,AR-V,SESCO,annual,kg,c9cdc773-abc1-3803-bda7-b84ca150abf0 -2023,Tucuman,II.1.1,47.3172,TJ,CO2,74100.0,kg/TJ,3506204.52,Gas Oil combustion consumption by public passenger transport,AR-T,SESCO,annual,kg,8bcef5b6-91d4-3c35-a0cf-8f580115303f -2023,Tucuman,II.1.1,47.3172,TJ,CH4,3.9,kg/TJ,184.53708,Gas Oil combustion consumption by public passenger transport,AR-T,SESCO,annual,kg,5f287ff0-16a9-3b29-b797-f84519f32ee3 -2023,Tucuman,II.1.1,47.3172,TJ,N2O,3.9,kg/TJ,184.53708,Gas Oil combustion consumption by public passenger transport,AR-T,SESCO,annual,kg,5f287ff0-16a9-3b29-b797-f84519f32ee3 -2023,Buenos Aires,II.1.1,5114.8809599999995,TJ,CO2,74100.0,kg/TJ,379012679.136,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,fe15e951-61a2-3baf-844a-5d09f638fe5e -2023,Buenos Aires,II.1.1,5114.8809599999995,TJ,CH4,3.9,kg/TJ,19948.035743999997,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,9f34c8d7-809f-35ce-b918-f0b63fd69e4e -2023,Buenos Aires,II.1.1,5114.8809599999995,TJ,N2O,3.9,kg/TJ,19948.035743999997,Gas Oil combustion consumption by public passenger transport,AR-B,SESCO,annual,kg,9f34c8d7-809f-35ce-b918-f0b63fd69e4e -2023,Capital Federal,II.1.1,1080.1686,TJ,CO2,74100.0,kg/TJ,80040493.25999999,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,507278d1-2a4b-39e3-8ab2-a0de75923cc9 -2023,Capital Federal,II.1.1,1080.1686,TJ,CH4,3.9,kg/TJ,4212.65754,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,4931be1f-1f31-3330-800e-e7988ab36316 -2023,Capital Federal,II.1.1,1080.1686,TJ,N2O,3.9,kg/TJ,4212.65754,Gas Oil combustion consumption by public passenger transport,AR-C,SESCO,annual,kg,4931be1f-1f31-3330-800e-e7988ab36316 -2023,Chaco,II.1.1,32.1468,TJ,CO2,74100.0,kg/TJ,2382077.88,Gas Oil combustion consumption by public passenger transport,AR-H,SESCO,annual,kg,6010d215-1254-3ce1-ac5b-7c229ce54624 -2023,Chaco,II.1.1,32.1468,TJ,CH4,3.9,kg/TJ,125.37252,Gas Oil combustion consumption by public passenger transport,AR-H,SESCO,annual,kg,b90df145-15a6-3931-a410-5026ec5a7af9 -2023,Chaco,II.1.1,32.1468,TJ,N2O,3.9,kg/TJ,125.37252,Gas Oil combustion consumption by public passenger transport,AR-H,SESCO,annual,kg,b90df145-15a6-3931-a410-5026ec5a7af9 -2023,Chubut,II.1.1,5.418,TJ,CO2,74100.0,kg/TJ,401473.8,Gas Oil combustion consumption by public passenger transport,AR-U,SESCO,annual,kg,6399b07b-8513-32ff-88cf-62a9680e39dc -2023,Chubut,II.1.1,5.418,TJ,CH4,3.9,kg/TJ,21.1302,Gas Oil combustion consumption by public passenger transport,AR-U,SESCO,annual,kg,7eb87fd9-c8d4-3f88-b8e0-cdd1e7650121 -2023,Chubut,II.1.1,5.418,TJ,N2O,3.9,kg/TJ,21.1302,Gas Oil combustion consumption by public passenger transport,AR-U,SESCO,annual,kg,7eb87fd9-c8d4-3f88-b8e0-cdd1e7650121 -2023,Corrientes,II.1.1,55.371959999999994,TJ,CO2,74100.0,kg/TJ,4103062.2359999996,Gas Oil combustion consumption by public passenger transport,AR-W,SESCO,annual,kg,9143c494-bc71-369b-aff9-70416be8bab7 -2023,Corrientes,II.1.1,55.371959999999994,TJ,CH4,3.9,kg/TJ,215.95064399999998,Gas Oil combustion consumption by public passenger transport,AR-W,SESCO,annual,kg,2ae79a36-e284-343a-8881-5a857caae3e6 -2023,Corrientes,II.1.1,55.371959999999994,TJ,N2O,3.9,kg/TJ,215.95064399999998,Gas Oil combustion consumption by public passenger transport,AR-W,SESCO,annual,kg,2ae79a36-e284-343a-8881-5a857caae3e6 -2023,Córdoba,II.1.1,237.74184,TJ,CO2,74100.0,kg/TJ,17616670.344,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,76e555b7-6d19-3c7a-9b93-8b0ab2be6bf4 -2023,Córdoba,II.1.1,237.74184,TJ,CH4,3.9,kg/TJ,927.193176,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,2e216069-8371-3d2a-b811-deb92a91c12d -2023,Córdoba,II.1.1,237.74184,TJ,N2O,3.9,kg/TJ,927.193176,Gas Oil combustion consumption by public passenger transport,AR-X,SESCO,annual,kg,2e216069-8371-3d2a-b811-deb92a91c12d -2023,Entre Rios,II.1.1,34.89192,TJ,CO2,74100.0,kg/TJ,2585491.272,Gas Oil combustion consumption by public passenger transport,AR-E,SESCO,annual,kg,b1c45e4b-705f-34a0-af3b-d4b86566ad63 -2023,Entre Rios,II.1.1,34.89192,TJ,CH4,3.9,kg/TJ,136.078488,Gas Oil combustion consumption by public passenger transport,AR-E,SESCO,annual,kg,1a86c305-a031-314d-b83f-0119b8983b2f -2023,Entre Rios,II.1.1,34.89192,TJ,N2O,3.9,kg/TJ,136.078488,Gas Oil combustion consumption by public passenger transport,AR-E,SESCO,annual,kg,1a86c305-a031-314d-b83f-0119b8983b2f -2023,Mendoza,II.1.1,43.01892,TJ,CO2,74100.0,kg/TJ,3187701.972,Gas Oil combustion consumption by public passenger transport,AR-M,SESCO,annual,kg,34210070-4f25-3191-a738-abd91f533e93 -2023,Mendoza,II.1.1,43.01892,TJ,CH4,3.9,kg/TJ,167.773788,Gas Oil combustion consumption by public passenger transport,AR-M,SESCO,annual,kg,4277ca58-a60a-3fc9-854c-618f327ada18 -2023,Mendoza,II.1.1,43.01892,TJ,N2O,3.9,kg/TJ,167.773788,Gas Oil combustion consumption by public passenger transport,AR-M,SESCO,annual,kg,4277ca58-a60a-3fc9-854c-618f327ada18 -2023,Misiones,II.1.1,10.25808,TJ,CO2,74100.0,kg/TJ,760123.728,Gas Oil combustion consumption by public passenger transport,AR-N,SESCO,annual,kg,4f7bcde3-f7e1-3619-93f2-8ec8159a1ee2 -2023,Misiones,II.1.1,10.25808,TJ,CH4,3.9,kg/TJ,40.006512,Gas Oil combustion consumption by public passenger transport,AR-N,SESCO,annual,kg,c94ed515-b424-38de-89a3-8026054396c9 -2023,Misiones,II.1.1,10.25808,TJ,N2O,3.9,kg/TJ,40.006512,Gas Oil combustion consumption by public passenger transport,AR-N,SESCO,annual,kg,c94ed515-b424-38de-89a3-8026054396c9 -2023,Neuquén,II.1.1,15.459359999999998,TJ,CO2,74100.0,kg/TJ,1145538.576,Gas Oil combustion consumption by public passenger transport,AR-Q,SESCO,annual,kg,96d2d874-25cf-3e1c-8b8a-0397a4be89c7 -2023,Neuquén,II.1.1,15.459359999999998,TJ,CH4,3.9,kg/TJ,60.29150399999999,Gas Oil combustion consumption by public passenger transport,AR-Q,SESCO,annual,kg,2df8523a-d410-3925-9d65-a2d70d09aacf -2023,Neuquén,II.1.1,15.459359999999998,TJ,N2O,3.9,kg/TJ,60.29150399999999,Gas Oil combustion consumption by public passenger transport,AR-Q,SESCO,annual,kg,2df8523a-d410-3925-9d65-a2d70d09aacf -2023,Rio Negro,II.1.1,76.28544,TJ,CO2,74100.0,kg/TJ,5652751.103999999,Gas Oil combustion consumption by public passenger transport,AR-R,SESCO,annual,kg,c62a2c0e-1126-3d59-b16f-3ddff8d52c83 -2023,Rio Negro,II.1.1,76.28544,TJ,CH4,3.9,kg/TJ,297.51321599999994,Gas Oil combustion consumption by public passenger transport,AR-R,SESCO,annual,kg,17ebeb4b-49ce-3a11-b765-738791233c19 -2023,Rio Negro,II.1.1,76.28544,TJ,N2O,3.9,kg/TJ,297.51321599999994,Gas Oil combustion consumption by public passenger transport,AR-R,SESCO,annual,kg,17ebeb4b-49ce-3a11-b765-738791233c19 -2023,Salta,II.1.1,178.75788,TJ,CO2,74100.0,kg/TJ,13245958.908,Gas Oil combustion consumption by public passenger transport,AR-A,SESCO,annual,kg,15e7c7f7-6e5a-39f3-95f6-ea1aed259607 -2023,Salta,II.1.1,178.75788,TJ,CH4,3.9,kg/TJ,697.155732,Gas Oil combustion consumption by public passenger transport,AR-A,SESCO,annual,kg,1743d341-eeac-3298-bd78-9db7f21967c4 -2023,Salta,II.1.1,178.75788,TJ,N2O,3.9,kg/TJ,697.155732,Gas Oil combustion consumption by public passenger transport,AR-A,SESCO,annual,kg,1743d341-eeac-3298-bd78-9db7f21967c4 -2023,San Juan,II.1.1,1.51704,TJ,CO2,74100.0,kg/TJ,112412.66399999999,Gas Oil combustion consumption by public passenger transport,AR-J,SESCO,annual,kg,d7f94d48-f094-37be-b6b9-d63a587d0775 -2023,San Juan,II.1.1,1.51704,TJ,CH4,3.9,kg/TJ,5.916455999999999,Gas Oil combustion consumption by public passenger transport,AR-J,SESCO,annual,kg,b13c3e27-4fb7-3565-acee-777d9fddf2eb -2023,San Juan,II.1.1,1.51704,TJ,N2O,3.9,kg/TJ,5.916455999999999,Gas Oil combustion consumption by public passenger transport,AR-J,SESCO,annual,kg,b13c3e27-4fb7-3565-acee-777d9fddf2eb -2023,Santa Fe,II.1.1,49.881719999999994,TJ,CO2,74100.0,kg/TJ,3696235.4519999996,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,6a4424a2-401d-3dc2-82bd-66dce8cb8a43 -2023,Santa Fe,II.1.1,49.881719999999994,TJ,CH4,3.9,kg/TJ,194.53870799999999,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,7252ce42-74f6-3dac-b93b-773d668bb0a2 -2023,Santa Fe,II.1.1,49.881719999999994,TJ,N2O,3.9,kg/TJ,194.53870799999999,Gas Oil combustion consumption by public passenger transport,AR-S,SESCO,annual,kg,7252ce42-74f6-3dac-b93b-773d668bb0a2 +id,source_name,GPC_refno,region_name,region_code,temporal_granularity,year,activity_name,activity_value,activity_units,gas_name,emission_factor_value,emission_factor_units,emissions_value,emissions_units +82b75e42-a452-3483-8fbf-4360a5dd1d0b,SESCO,II.5.1,Buenos Aires,AR-B,annual,2010,gas oil combustion consumption by agriculture machines,1.19196,TJ,CO2,74100.0,kg/TJ,88324.23599999999,kg +21294e22-d2e0-3633-8026-6a6e1d459f91,SESCO,II.5.1,Buenos Aires,AR-B,annual,2010,gas oil combustion consumption by agriculture machines,1.19196,TJ,CH4,3.9,kg/TJ,4.648643999999999,kg +21294e22-d2e0-3633-8026-6a6e1d459f91,SESCO,II.5.1,Buenos Aires,AR-B,annual,2010,gas oil combustion consumption by agriculture machines,1.19196,TJ,N2O,3.9,kg/TJ,4.648643999999999,kg +835c6e17-ca0e-3169-9665-1094bbb28481,SESCO,II.5.1,Córdoba,AR-X,annual,2010,gas oil combustion consumption by agriculture machines,1.22808,TJ,CO2,74100.0,kg/TJ,91000.728,kg +3802d37b-22d8-3b23-8545-bc1d77209c4a,SESCO,II.5.1,Córdoba,AR-X,annual,2010,gas oil combustion consumption by agriculture machines,1.22808,TJ,CH4,3.9,kg/TJ,4.789512,kg +3802d37b-22d8-3b23-8545-bc1d77209c4a,SESCO,II.5.1,Córdoba,AR-X,annual,2010,gas oil combustion consumption by agriculture machines,1.22808,TJ,N2O,3.9,kg/TJ,4.789512,kg +4d63310c-3389-3067-a7d2-35295662198c,SESCO,II.5.1,Entre Rios,AR-E,annual,2010,gas oil combustion consumption by agriculture machines,14.95368,TJ,CO2,74100.0,kg/TJ,1108067.688,kg +c4ae6821-a134-3946-8247-e791b243d577,SESCO,II.5.1,Entre Rios,AR-E,annual,2010,gas oil combustion consumption by agriculture machines,14.95368,TJ,CH4,3.9,kg/TJ,58.319352,kg +c4ae6821-a134-3946-8247-e791b243d577,SESCO,II.5.1,Entre Rios,AR-E,annual,2010,gas oil combustion consumption by agriculture machines,14.95368,TJ,N2O,3.9,kg/TJ,58.319352,kg +87f23981-cd13-382f-8e21-1961efb35cf8,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,gas oil combustion consumption by to the public,904.5531599999999,TJ,CO2,74100.0,kg/TJ,67027389.155999996,kg +77114109-c746-3473-bbaf-7307f0d13603,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,gas oil combustion consumption by to the public,904.5531599999999,TJ,CH4,3.9,kg/TJ,3527.7573239999997,kg +77114109-c746-3473-bbaf-7307f0d13603,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,gas oil combustion consumption by to the public,904.5531599999999,TJ,N2O,3.9,kg/TJ,3527.7573239999997,kg +1aa0e782-b578-396d-af92-254200a328ef,SESCO,II.1.1,Capital Federal,AR-C,annual,2010,gas oil combustion consumption by to the public,353.4342,TJ,CO2,74100.0,kg/TJ,26189474.22,kg +7d225fcf-7b53-3fa0-ac69-c2892d3739aa,SESCO,II.1.1,Capital Federal,AR-C,annual,2010,gas oil combustion consumption by to the public,353.4342,TJ,CH4,3.9,kg/TJ,1378.39338,kg +7d225fcf-7b53-3fa0-ac69-c2892d3739aa,SESCO,II.1.1,Capital Federal,AR-C,annual,2010,gas oil combustion consumption by to the public,353.4342,TJ,N2O,3.9,kg/TJ,1378.39338,kg +50ca1069-12b8-34a6-9989-4fb4fd92fc0a,SESCO,II.1.1,Chaco,AR-H,annual,2010,gas oil combustion consumption by to the public,55.37196,TJ,CO2,74100.0,kg/TJ,4103062.236,kg +17a4de01-d7bc-34e1-bb0d-ca1c33370d05,SESCO,II.1.1,Chaco,AR-H,annual,2010,gas oil combustion consumption by to the public,55.37196,TJ,CH4,3.9,kg/TJ,215.950644,kg +17a4de01-d7bc-34e1-bb0d-ca1c33370d05,SESCO,II.1.1,Chaco,AR-H,annual,2010,gas oil combustion consumption by to the public,55.37196,TJ,N2O,3.9,kg/TJ,215.950644,kg +76ff1dbf-3f09-3160-ad08-2dd94a63ed7a,SESCO,II.1.1,Corrientes,AR-W,annual,2010,gas oil combustion consumption by to the public,192.73632,TJ,CO2,74100.0,kg/TJ,14281761.312,kg +862b9c15-4ea8-3cfb-9538-d5c5c96b4fd2,SESCO,II.1.1,Corrientes,AR-W,annual,2010,gas oil combustion consumption by to the public,192.73632,TJ,CH4,3.9,kg/TJ,751.671648,kg +862b9c15-4ea8-3cfb-9538-d5c5c96b4fd2,SESCO,II.1.1,Corrientes,AR-W,annual,2010,gas oil combustion consumption by to the public,192.73632,TJ,N2O,3.9,kg/TJ,751.671648,kg +bee54ee3-ada6-32fb-bffc-5578be83e874,SESCO,II.1.1,Córdoba,AR-X,annual,2010,gas oil combustion consumption by to the public,309.29555999999997,TJ,CO2,74100.0,kg/TJ,22918800.996,kg +89322da0-78cb-379e-b32f-22118bc732ef,SESCO,II.1.1,Córdoba,AR-X,annual,2010,gas oil combustion consumption by to the public,309.29555999999997,TJ,CH4,3.9,kg/TJ,1206.2526839999998,kg +89322da0-78cb-379e-b32f-22118bc732ef,SESCO,II.1.1,Córdoba,AR-X,annual,2010,gas oil combustion consumption by to the public,309.29555999999997,TJ,N2O,3.9,kg/TJ,1206.2526839999998,kg +c2085c3b-e75f-33c5-9a62-cdbe1988f1a2,SESCO,II.1.1,Entre Rios,AR-E,annual,2010,gas oil combustion consumption by to the public,82.10076,TJ,CO2,74100.0,kg/TJ,6083666.316,kg +8396befd-be27-3934-8d11-f6c1ff00c492,SESCO,II.1.1,Entre Rios,AR-E,annual,2010,gas oil combustion consumption by to the public,82.10076,TJ,CH4,3.9,kg/TJ,320.19296399999996,kg +8396befd-be27-3934-8d11-f6c1ff00c492,SESCO,II.1.1,Entre Rios,AR-E,annual,2010,gas oil combustion consumption by to the public,82.10076,TJ,N2O,3.9,kg/TJ,320.19296399999996,kg +888690c3-eda1-317c-a404-4c1eca547d26,SESCO,II.1.1,Jujuy,AR-Y,annual,2010,gas oil combustion consumption by to the public,12.425279999999999,TJ,CO2,74100.0,kg/TJ,920713.2479999999,kg +2285ad24-7b0a-35e0-8142-ca994e7d5c0c,SESCO,II.1.1,Jujuy,AR-Y,annual,2010,gas oil combustion consumption by to the public,12.425279999999999,TJ,CH4,3.9,kg/TJ,48.458591999999996,kg +2285ad24-7b0a-35e0-8142-ca994e7d5c0c,SESCO,II.1.1,Jujuy,AR-Y,annual,2010,gas oil combustion consumption by to the public,12.425279999999999,TJ,N2O,3.9,kg/TJ,48.458591999999996,kg +655455ba-2fa2-313f-9c14-ce039d863f02,SESCO,II.1.1,La Pampa,AR-L,annual,2010,gas oil combustion consumption by to the public,40.52664,TJ,CO2,74100.0,kg/TJ,3003024.024,kg +e9c3ce1b-4f61-3a3b-8028-89ff7ef4f226,SESCO,II.1.1,La Pampa,AR-L,annual,2010,gas oil combustion consumption by to the public,40.52664,TJ,CH4,3.9,kg/TJ,158.053896,kg +e9c3ce1b-4f61-3a3b-8028-89ff7ef4f226,SESCO,II.1.1,La Pampa,AR-L,annual,2010,gas oil combustion consumption by to the public,40.52664,TJ,N2O,3.9,kg/TJ,158.053896,kg +b6e0c1b2-27c7-341f-b20a-3f9df1dffaa8,SESCO,II.1.1,Mendoza,AR-M,annual,2010,gas oil combustion consumption by to the public,38.829,TJ,CO2,74100.0,kg/TJ,2877228.9,kg +dc2b7433-b8fe-329b-90ec-f7cb638f96ce,SESCO,II.1.1,Mendoza,AR-M,annual,2010,gas oil combustion consumption by to the public,38.829,TJ,CH4,3.9,kg/TJ,151.4331,kg +dc2b7433-b8fe-329b-90ec-f7cb638f96ce,SESCO,II.1.1,Mendoza,AR-M,annual,2010,gas oil combustion consumption by to the public,38.829,TJ,N2O,3.9,kg/TJ,151.4331,kg +146c992c-2fdf-3dc2-8a33-af00eb162723,SESCO,II.1.1,Misiones,AR-N,annual,2010,gas oil combustion consumption by to the public,9.31896,TJ,CO2,74100.0,kg/TJ,690534.936,kg +27de1cb2-1c18-3341-b8df-8db3f042836d,SESCO,II.1.1,Misiones,AR-N,annual,2010,gas oil combustion consumption by to the public,9.31896,TJ,CH4,3.9,kg/TJ,36.343944,kg +27de1cb2-1c18-3341-b8df-8db3f042836d,SESCO,II.1.1,Misiones,AR-N,annual,2010,gas oil combustion consumption by to the public,9.31896,TJ,N2O,3.9,kg/TJ,36.343944,kg +0c4d68bf-d6ba-38ce-9fed-871ee9efbbf5,SESCO,II.1.1,San Juan,AR-J,annual,2010,gas oil combustion consumption by to the public,2.20332,TJ,CO2,74100.0,kg/TJ,163266.01200000002,kg +b591d657-f216-3272-8b33-66a645399b0a,SESCO,II.1.1,San Juan,AR-J,annual,2010,gas oil combustion consumption by to the public,2.20332,TJ,CH4,3.9,kg/TJ,8.592948,kg +b591d657-f216-3272-8b33-66a645399b0a,SESCO,II.1.1,San Juan,AR-J,annual,2010,gas oil combustion consumption by to the public,2.20332,TJ,N2O,3.9,kg/TJ,8.592948,kg +b6349cc9-3434-3653-9a6a-bded9c3da7e8,SESCO,II.1.1,San Luis,AR-D,annual,2010,gas oil combustion consumption by to the public,6.2126399999999995,TJ,CO2,74100.0,kg/TJ,460356.62399999995,kg +ae8d2fbd-7ffb-336f-a146-73ceb08b68a4,SESCO,II.1.1,San Luis,AR-D,annual,2010,gas oil combustion consumption by to the public,6.2126399999999995,TJ,CH4,3.9,kg/TJ,24.229295999999998,kg +ae8d2fbd-7ffb-336f-a146-73ceb08b68a4,SESCO,II.1.1,San Luis,AR-D,annual,2010,gas oil combustion consumption by to the public,6.2126399999999995,TJ,N2O,3.9,kg/TJ,24.229295999999998,kg +d8f0b1d5-e828-3c6a-905b-62e74e549bd8,SESCO,II.1.1,Santa Fe,AR-S,annual,2010,gas oil combustion consumption by to the public,324.03252,TJ,CO2,74100.0,kg/TJ,24010809.731999997,kg +971162ba-4c1e-39be-b6d8-4cfe496db36a,SESCO,II.1.1,Santa Fe,AR-S,annual,2010,gas oil combustion consumption by to the public,324.03252,TJ,CH4,3.9,kg/TJ,1263.7268279999998,kg +971162ba-4c1e-39be-b6d8-4cfe496db36a,SESCO,II.1.1,Santa Fe,AR-S,annual,2010,gas oil combustion consumption by to the public,324.03252,TJ,N2O,3.9,kg/TJ,1263.7268279999998,kg +a201e8d1-a948-3ceb-b0ec-4daea3913f15,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2010,gas oil combustion consumption by to the public,137.256,TJ,CO2,74100.0,kg/TJ,10170669.6,kg +d28113f0-8588-3332-ab0e-b344ffbacc4d,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2010,gas oil combustion consumption by to the public,137.256,TJ,CH4,3.9,kg/TJ,535.2984,kg +d28113f0-8588-3332-ab0e-b344ffbacc4d,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2010,gas oil combustion consumption by to the public,137.256,TJ,N2O,3.9,kg/TJ,535.2984,kg +ecd2bfb7-6bd2-3dfd-945b-92be4b6b987c,SESCO,II.1.1,Tucuman,AR-T,annual,2010,gas oil combustion consumption by to the public,2.45616,TJ,CO2,74100.0,kg/TJ,182001.456,kg +d908724b-f283-3919-bad6-4f088b05839b,SESCO,II.1.1,Tucuman,AR-T,annual,2010,gas oil combustion consumption by to the public,2.45616,TJ,CH4,3.9,kg/TJ,9.579024,kg +d908724b-f283-3919-bad6-4f088b05839b,SESCO,II.1.1,Tucuman,AR-T,annual,2010,gas oil combustion consumption by to the public,2.45616,TJ,N2O,3.9,kg/TJ,9.579024,kg +d3d58ef3-7905-3e42-b372-326aa97b823f,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,jet kerosene combustion consumption by to the public,2.0758979999999996,TJ,CO2,71500.0,kg/TJ,148426.70699999997,kg +bf80a0a6-36d0-3962-82e6-a08615f3097f,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,jet kerosene combustion consumption by to the public,2.0758979999999996,TJ,CH4,0.5,kg/TJ,1.0379489999999998,kg +21d078ff-0aa9-3ef5-8511-4929eca2108c,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,jet kerosene combustion consumption by to the public,2.0758979999999996,TJ,N2O,2.0,kg/TJ,4.151795999999999,kg +6e9c71a3-0612-34a2-8609-f6f2b466fc3e,SESCO,II.1.1,Córdoba,AR-X,annual,2010,jet kerosene combustion consumption by to the public,0.28307699999999997,TJ,CO2,71500.0,kg/TJ,20240.0055,kg +48a4d047-2cb3-3478-8455-853ef006a1ea,SESCO,II.1.1,Córdoba,AR-X,annual,2010,jet kerosene combustion consumption by to the public,0.28307699999999997,TJ,CH4,0.5,kg/TJ,0.14153849999999998,kg +16f9ce73-1f85-338c-9107-97b4a0a7c22d,SESCO,II.1.1,Córdoba,AR-X,annual,2010,jet kerosene combustion consumption by to the public,0.28307699999999997,TJ,N2O,2.0,kg/TJ,0.5661539999999999,kg +c37e0b43-e48b-3e32-9bd2-bf32d3a1f4d5,SESCO,II.1.1,Entre Rios,AR-E,annual,2010,jet kerosene combustion consumption by to the public,1.0379489999999998,TJ,CO2,71500.0,kg/TJ,74213.35349999998,kg +321721ef-42b1-303c-a944-720bd1d97ee2,SESCO,II.1.1,Entre Rios,AR-E,annual,2010,jet kerosene combustion consumption by to the public,1.0379489999999998,TJ,CH4,0.5,kg/TJ,0.5189744999999999,kg +3b3b0677-a6ac-31e1-a0a4-117fec1a1415,SESCO,II.1.1,Entre Rios,AR-E,annual,2010,jet kerosene combustion consumption by to the public,1.0379489999999998,TJ,N2O,2.0,kg/TJ,2.0758979999999996,kg +0edb81ad-ff7d-31dd-a9d2-ef4ba9a41728,SESCO,II.1.1,Santa Fe,AR-S,annual,2010,jet kerosene combustion consumption by to the public,1.1637609999999998,TJ,CO2,71500.0,kg/TJ,83208.91149999999,kg +febc9db9-f558-3561-a374-0e5cabecb423,SESCO,II.1.1,Santa Fe,AR-S,annual,2010,jet kerosene combustion consumption by to the public,1.1637609999999998,TJ,CH4,0.5,kg/TJ,0.5818804999999999,kg +3c9720ea-6b76-3f2d-9783-8444a28a0a0b,SESCO,II.1.1,Santa Fe,AR-S,annual,2010,jet kerosene combustion consumption by to the public,1.1637609999999998,TJ,N2O,2.0,kg/TJ,2.3275219999999996,kg +307e8111-cc48-3b1e-9826-ba331db99535,SESCO,I.3.1,Buenos Aires,AR-B,annual,2010,gas oil combustion consumption by petrochemical industries,12.85872,TJ,CO2,74100.0,kg/TJ,952831.152,kg +25e6c702-f978-3ee7-ba1a-8db697dfd369,SESCO,I.3.1,Buenos Aires,AR-B,annual,2010,gas oil combustion consumption by petrochemical industries,12.85872,TJ,CH4,3.9,kg/TJ,50.149008,kg +25e6c702-f978-3ee7-ba1a-8db697dfd369,SESCO,I.3.1,Buenos Aires,AR-B,annual,2010,gas oil combustion consumption by petrochemical industries,12.85872,TJ,N2O,3.9,kg/TJ,50.149008,kg +de8d2d98-5f79-3cfc-ad8f-9e7942fa1aa7,SESCO,I.3.1,Capital Federal,AR-C,annual,2010,gas oil combustion consumption by petrochemical industries,3.28692,TJ,CO2,74100.0,kg/TJ,243560.772,kg +2da7fd6d-44fc-32ed-ab75-9d1d43885eeb,SESCO,I.3.1,Capital Federal,AR-C,annual,2010,gas oil combustion consumption by petrochemical industries,3.28692,TJ,CH4,3.9,kg/TJ,12.818988,kg +2da7fd6d-44fc-32ed-ab75-9d1d43885eeb,SESCO,I.3.1,Capital Federal,AR-C,annual,2010,gas oil combustion consumption by petrochemical industries,3.28692,TJ,N2O,3.9,kg/TJ,12.818988,kg +ab94e4a9-8c3a-3701-b9e6-a1508d6e80fd,SESCO,II.1.1,Capital Federal,AR-C,annual,2010,gas oil combustion consumption by freight transport,1.2642,TJ,CO2,74100.0,kg/TJ,93677.22,kg +711c8d47-8b0c-336d-a927-486b6975cf5e,SESCO,II.1.1,Capital Federal,AR-C,annual,2010,gas oil combustion consumption by freight transport,1.2642,TJ,CH4,3.9,kg/TJ,4.9303799999999995,kg +711c8d47-8b0c-336d-a927-486b6975cf5e,SESCO,II.1.1,Capital Federal,AR-C,annual,2010,gas oil combustion consumption by freight transport,1.2642,TJ,N2O,3.9,kg/TJ,4.9303799999999995,kg +06c09900-d71a-3df3-84c7-57614862480c,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,gas oil combustion consumption by public passenger transport,3652.02096,TJ,CO2,74100.0,kg/TJ,270614753.136,kg +df2a449c-b403-3d1e-9022-5632945450e8,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,gas oil combustion consumption by public passenger transport,3652.02096,TJ,CH4,3.9,kg/TJ,14242.881743999998,kg +df2a449c-b403-3d1e-9022-5632945450e8,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,gas oil combustion consumption by public passenger transport,3652.02096,TJ,N2O,3.9,kg/TJ,14242.881743999998,kg +d3965184-4b80-3387-82a4-f1afcf7da5ee,SESCO,II.1.1,Capital Federal,AR-C,annual,2010,gas oil combustion consumption by public passenger transport,1197.12516,TJ,CO2,74100.0,kg/TJ,88706974.356,kg +1aa4cc80-779e-323f-8ebd-b209b05546f6,SESCO,II.1.1,Capital Federal,AR-C,annual,2010,gas oil combustion consumption by public passenger transport,1197.12516,TJ,CH4,3.9,kg/TJ,4668.788124,kg +1aa4cc80-779e-323f-8ebd-b209b05546f6,SESCO,II.1.1,Capital Federal,AR-C,annual,2010,gas oil combustion consumption by public passenger transport,1197.12516,TJ,N2O,3.9,kg/TJ,4668.788124,kg +e1b493b2-5753-3da7-9de5-5decdc9b3922,SESCO,II.1.1,Córdoba,AR-X,annual,2010,gas oil combustion consumption by public passenger transport,95.03171999999999,TJ,CO2,74100.0,kg/TJ,7041850.452,kg +9343f9b1-353b-3649-af90-e7cd96e99ff9,SESCO,II.1.1,Córdoba,AR-X,annual,2010,gas oil combustion consumption by public passenger transport,95.03171999999999,TJ,CH4,3.9,kg/TJ,370.62370799999997,kg +9343f9b1-353b-3649-af90-e7cd96e99ff9,SESCO,II.1.1,Córdoba,AR-X,annual,2010,gas oil combustion consumption by public passenger transport,95.03171999999999,TJ,N2O,3.9,kg/TJ,370.62370799999997,kg +f1b1ea8d-94f5-3258-8b26-5a5e57bd470e,SESCO,II.1.1,Entre Rios,AR-E,annual,2010,gas oil combustion consumption by public passenger transport,389.08464,TJ,CO2,74100.0,kg/TJ,28831171.823999997,kg +8241ab46-c6a8-3342-bb3a-35901a0f108f,SESCO,II.1.1,Entre Rios,AR-E,annual,2010,gas oil combustion consumption by public passenger transport,389.08464,TJ,CH4,3.9,kg/TJ,1517.4300959999998,kg +8241ab46-c6a8-3342-bb3a-35901a0f108f,SESCO,II.1.1,Entre Rios,AR-E,annual,2010,gas oil combustion consumption by public passenger transport,389.08464,TJ,N2O,3.9,kg/TJ,1517.4300959999998,kg +41b46fa5-435e-328e-b218-c94aeee8eb01,SESCO,II.1.1,Mendoza,AR-M,annual,2010,gas oil combustion consumption by public passenger transport,192.66407999999998,TJ,CO2,74100.0,kg/TJ,14276408.328,kg +95f90a60-daa9-3a57-9bf5-f62beeada642,SESCO,II.1.1,Mendoza,AR-M,annual,2010,gas oil combustion consumption by public passenger transport,192.66407999999998,TJ,CH4,3.9,kg/TJ,751.3899119999999,kg +95f90a60-daa9-3a57-9bf5-f62beeada642,SESCO,II.1.1,Mendoza,AR-M,annual,2010,gas oil combustion consumption by public passenger transport,192.66407999999998,TJ,N2O,3.9,kg/TJ,751.3899119999999,kg +6982e42a-dd8b-3437-add8-77a512c4cfbe,SESCO,II.1.1,Misiones,AR-N,annual,2010,gas oil combustion consumption by public passenger transport,206.06459999999998,TJ,CO2,74100.0,kg/TJ,15269386.86,kg +437f138f-fa16-3f47-8805-9a7eb7e4d7ac,SESCO,II.1.1,Misiones,AR-N,annual,2010,gas oil combustion consumption by public passenger transport,206.06459999999998,TJ,CH4,3.9,kg/TJ,803.65194,kg +437f138f-fa16-3f47-8805-9a7eb7e4d7ac,SESCO,II.1.1,Misiones,AR-N,annual,2010,gas oil combustion consumption by public passenger transport,206.06459999999998,TJ,N2O,3.9,kg/TJ,803.65194,kg +935beb1e-2ddf-3796-9814-5857ef5fc129,SESCO,II.1.1,Salta,AR-A,annual,2010,gas oil combustion consumption by public passenger transport,70.14504,TJ,CO2,74100.0,kg/TJ,5197747.464,kg +686e09b8-c871-3fd9-a9fd-a1fac7e12730,SESCO,II.1.1,Salta,AR-A,annual,2010,gas oil combustion consumption by public passenger transport,70.14504,TJ,CH4,3.9,kg/TJ,273.565656,kg +686e09b8-c871-3fd9-a9fd-a1fac7e12730,SESCO,II.1.1,Salta,AR-A,annual,2010,gas oil combustion consumption by public passenger transport,70.14504,TJ,N2O,3.9,kg/TJ,273.565656,kg +ec41350c-adf3-3382-8281-8df1080f026e,SESCO,II.1.1,San Juan,AR-J,annual,2010,gas oil combustion consumption by public passenger transport,70.7952,TJ,CO2,74100.0,kg/TJ,5245924.319999999,kg +132f1e98-c0e8-3535-9950-e2757f0292ab,SESCO,II.1.1,San Juan,AR-J,annual,2010,gas oil combustion consumption by public passenger transport,70.7952,TJ,CH4,3.9,kg/TJ,276.10128,kg +132f1e98-c0e8-3535-9950-e2757f0292ab,SESCO,II.1.1,San Juan,AR-J,annual,2010,gas oil combustion consumption by public passenger transport,70.7952,TJ,N2O,3.9,kg/TJ,276.10128,kg +53435db9-7ed3-3ee9-8c9e-eb1ae5d8a279,SESCO,II.1.1,San Luis,AR-D,annual,2010,gas oil combustion consumption by public passenger transport,5.56248,TJ,CO2,74100.0,kg/TJ,412179.768,kg +05367247-4faa-3909-b82e-277584e68487,SESCO,II.1.1,San Luis,AR-D,annual,2010,gas oil combustion consumption by public passenger transport,5.56248,TJ,CH4,3.9,kg/TJ,21.693672,kg +05367247-4faa-3909-b82e-277584e68487,SESCO,II.1.1,San Luis,AR-D,annual,2010,gas oil combustion consumption by public passenger transport,5.56248,TJ,N2O,3.9,kg/TJ,21.693672,kg +3b2cb5f7-909e-3b31-b5e8-783a0ed0fae1,SESCO,II.1.1,Santa Fe,AR-S,annual,2010,gas oil combustion consumption by public passenger transport,235.03284,TJ,CO2,74100.0,kg/TJ,17415933.444,kg +9fddf7ad-f83e-35b4-8a97-dbcdf05b7af7,SESCO,II.1.1,Santa Fe,AR-S,annual,2010,gas oil combustion consumption by public passenger transport,235.03284,TJ,CH4,3.9,kg/TJ,916.628076,kg +9fddf7ad-f83e-35b4-8a97-dbcdf05b7af7,SESCO,II.1.1,Santa Fe,AR-S,annual,2010,gas oil combustion consumption by public passenger transport,235.03284,TJ,N2O,3.9,kg/TJ,916.628076,kg +40aae9a5-e7c2-3eac-8ca9-b95ba59c9ae2,SESCO,II.5.1,Córdoba,AR-X,annual,2010,gasoline combustion consumption by agriculture machines,5.9681846,TJ,CO2,69300.0,kg/TJ,413595.19278,kg +a8888648-9e2d-30ba-8e64-e323e917c62b,SESCO,II.5.1,Córdoba,AR-X,annual,2010,gasoline combustion consumption by agriculture machines,5.9681846,TJ,CH4,33.0,kg/TJ,196.9500918,kg +946f18d8-5744-3bb8-923a-76594042ba36,SESCO,II.5.1,Córdoba,AR-X,annual,2010,gasoline combustion consumption by agriculture machines,5.9681846,TJ,N2O,3.2,kg/TJ,19.09819072,kg +6c0a036e-bdf7-3c27-bc29-90a7fdb327b7,SESCO,II.5.1,Santa Fe,AR-S,annual,2010,gasoline combustion consumption by agriculture machines,205.476247,TJ,CO2,69300.0,kg/TJ,14239503.9171,kg +0c667dc1-9604-3089-b7f9-0b4ec2ddfd3b,SESCO,II.5.1,Santa Fe,AR-S,annual,2010,gasoline combustion consumption by agriculture machines,205.476247,TJ,CH4,33.0,kg/TJ,6780.716151,kg +5c9cc714-43f6-33e0-b9cf-90f5bffa11c3,SESCO,II.5.1,Santa Fe,AR-S,annual,2010,gasoline combustion consumption by agriculture machines,205.476247,TJ,N2O,3.2,kg/TJ,657.5239904,kg +fc1d6e11-1690-3194-baa2-e79efd8856d6,SESCO,II.5.1,Buenos Aires,AR-B,annual,2010,gas oil combustion consumption by agriculture machines,204.1235112,TJ,CO2,74100.0,kg/TJ,15125552.17992,kg +1dee880f-e138-3a4d-9781-54625f26504d,SESCO,II.5.1,Buenos Aires,AR-B,annual,2010,gas oil combustion consumption by agriculture machines,204.1235112,TJ,CH4,3.9,kg/TJ,796.08169368,kg +1dee880f-e138-3a4d-9781-54625f26504d,SESCO,II.5.1,Buenos Aires,AR-B,annual,2010,gas oil combustion consumption by agriculture machines,204.1235112,TJ,N2O,3.9,kg/TJ,796.08169368,kg +d703468c-4235-31c3-8a6d-ab446408765d,SESCO,II.5.1,Capital Federal,AR-C,annual,2010,gas oil combustion consumption by agriculture machines,6.03204,TJ,CO2,74100.0,kg/TJ,446974.16400000005,kg +538bf297-8d03-3643-b7b0-d02bd03e4a49,SESCO,II.5.1,Capital Federal,AR-C,annual,2010,gas oil combustion consumption by agriculture machines,6.03204,TJ,CH4,3.9,kg/TJ,23.524956,kg +538bf297-8d03-3643-b7b0-d02bd03e4a49,SESCO,II.5.1,Capital Federal,AR-C,annual,2010,gas oil combustion consumption by agriculture machines,6.03204,TJ,N2O,3.9,kg/TJ,23.524956,kg +2c1b42ff-b58d-3674-9b6f-34f984713855,SESCO,II.5.1,Chaco,AR-H,annual,2010,gas oil combustion consumption by agriculture machines,25.533227999999998,TJ,CO2,74100.0,kg/TJ,1892012.1947999997,kg +b332a4a8-568d-3b94-8c8c-894388318b23,SESCO,II.5.1,Chaco,AR-H,annual,2010,gas oil combustion consumption by agriculture machines,25.533227999999998,TJ,CH4,3.9,kg/TJ,99.57958919999999,kg +b332a4a8-568d-3b94-8c8c-894388318b23,SESCO,II.5.1,Chaco,AR-H,annual,2010,gas oil combustion consumption by agriculture machines,25.533227999999998,TJ,N2O,3.9,kg/TJ,99.57958919999999,kg +92a3424e-7310-3b37-8216-46ce449a2cd7,SESCO,II.5.1,Córdoba,AR-X,annual,2010,gas oil combustion consumption by agriculture machines,51.60283799999999,TJ,CO2,74100.0,kg/TJ,3823770.2957999995,kg +12788acf-2cb2-335b-b33f-f48e3d0d4574,SESCO,II.5.1,Córdoba,AR-X,annual,2010,gas oil combustion consumption by agriculture machines,51.60283799999999,TJ,CH4,3.9,kg/TJ,201.25106819999996,kg +12788acf-2cb2-335b-b33f-f48e3d0d4574,SESCO,II.5.1,Córdoba,AR-X,annual,2010,gas oil combustion consumption by agriculture machines,51.60283799999999,TJ,N2O,3.9,kg/TJ,201.25106819999996,kg +7a4f9a66-a5fb-391d-9e13-3a25ff7b5bbc,SESCO,II.5.1,La Pampa,AR-L,annual,2010,gas oil combustion consumption by agriculture machines,18.3142848,TJ,CO2,74100.0,kg/TJ,1357088.5036799998,kg +3159597d-9596-3350-813a-9e78777c526c,SESCO,II.5.1,La Pampa,AR-L,annual,2010,gas oil combustion consumption by agriculture machines,18.3142848,TJ,CH4,3.9,kg/TJ,71.42571072,kg +3159597d-9596-3350-813a-9e78777c526c,SESCO,II.5.1,La Pampa,AR-L,annual,2010,gas oil combustion consumption by agriculture machines,18.3142848,TJ,N2O,3.9,kg/TJ,71.42571072,kg +82ef3e92-522f-39c3-849b-9eb7c3f1efe8,SESCO,II.5.1,Santa Fe,AR-S,annual,2010,gas oil combustion consumption by agriculture machines,375.100782,TJ,CO2,74100.0,kg/TJ,27794967.9462,kg +4fd28983-1257-39cf-b9ca-164a64bed012,SESCO,II.5.1,Santa Fe,AR-S,annual,2010,gas oil combustion consumption by agriculture machines,375.100782,TJ,CH4,3.9,kg/TJ,1462.8930498,kg +4fd28983-1257-39cf-b9ca-164a64bed012,SESCO,II.5.1,Santa Fe,AR-S,annual,2010,gas oil combustion consumption by agriculture machines,375.100782,TJ,N2O,3.9,kg/TJ,1462.8930498,kg +76eb5cec-aec1-3bdb-bff8-f837ae949281,SESCO,II.1.1,Capital Federal,AR-C,annual,2010,jet kerosene combustion consumption by to the public,0.0062905999999999995,TJ,CO2,71500.0,kg/TJ,449.7779,kg +77270457-0704-3472-93c3-7d628307c512,SESCO,II.1.1,Capital Federal,AR-C,annual,2010,jet kerosene combustion consumption by to the public,0.0062905999999999995,TJ,CH4,0.5,kg/TJ,0.0031452999999999997,kg +fa34b6c0-cb28-3017-a4f6-a4dc4eed0d34,SESCO,II.1.1,Capital Federal,AR-C,annual,2010,jet kerosene combustion consumption by to the public,0.0062905999999999995,TJ,N2O,2.0,kg/TJ,0.012581199999999999,kg +c086a665-9be1-370d-960c-1ecfcae69d30,SESCO,II.1.1,Capital Federal,AR-C,annual,2010,gasoline combustion consumption by to the public,0.077968,TJ,CO2,69300.0,kg/TJ,5403.1824,kg +e606d4c6-5fb5-3a56-95d4-90e99b8cdd82,SESCO,II.1.1,Capital Federal,AR-C,annual,2010,gasoline combustion consumption by to the public,0.077968,TJ,CH4,33.0,kg/TJ,2.5729439999999997,kg +be0656f2-b50e-38c4-b89f-8cc14fe8fd92,SESCO,II.1.1,Capital Federal,AR-C,annual,2010,gasoline combustion consumption by to the public,0.077968,TJ,N2O,3.2,kg/TJ,0.24949759999999999,kg +8f8a3643-17b4-3bd5-b21f-0d205336788e,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,gas oil combustion consumption by to the public,14348.79085752,TJ,CO2,74100.0,kg/TJ,1063245402.542232,kg +b10c6f4b-2b67-381b-be47-1fabdc5a815e,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,gas oil combustion consumption by to the public,14348.79085752,TJ,CH4,3.9,kg/TJ,55960.284344328,kg +b10c6f4b-2b67-381b-be47-1fabdc5a815e,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,gas oil combustion consumption by to the public,14348.79085752,TJ,N2O,3.9,kg/TJ,55960.284344328,kg +b857deac-8a86-3e63-ab49-b97fa9519752,SESCO,II.1.1,Capital Federal,AR-C,annual,2010,gas oil combustion consumption by to the public,1724.6397,TJ,CO2,74100.0,kg/TJ,127795801.77,kg +934243b6-ca71-3176-af96-a384e739737d,SESCO,II.1.1,Capital Federal,AR-C,annual,2010,gas oil combustion consumption by to the public,1724.6397,TJ,CH4,3.9,kg/TJ,6726.09483,kg +934243b6-ca71-3176-af96-a384e739737d,SESCO,II.1.1,Capital Federal,AR-C,annual,2010,gas oil combustion consumption by to the public,1724.6397,TJ,N2O,3.9,kg/TJ,6726.09483,kg +ac04dd54-d4c0-3734-9a28-72bc9f1e448f,SESCO,II.1.1,Catamarca,AR-K,annual,2010,gas oil combustion consumption by to the public,391.4400252,TJ,CO2,74100.0,kg/TJ,29005705.867319997,kg +f8067d2a-a006-39fd-8891-618514a29414,SESCO,II.1.1,Catamarca,AR-K,annual,2010,gas oil combustion consumption by to the public,391.4400252,TJ,CH4,3.9,kg/TJ,1526.61609828,kg +f8067d2a-a006-39fd-8891-618514a29414,SESCO,II.1.1,Catamarca,AR-K,annual,2010,gas oil combustion consumption by to the public,391.4400252,TJ,N2O,3.9,kg/TJ,1526.61609828,kg +15f68a04-140d-35c5-94eb-985bb006204b,SESCO,II.1.1,Chaco,AR-H,annual,2010,gas oil combustion consumption by to the public,619.6230684,TJ,CO2,74100.0,kg/TJ,45914069.368439995,kg +f298d1c5-0db9-30c2-9fe8-0c5be36e3535,SESCO,II.1.1,Chaco,AR-H,annual,2010,gas oil combustion consumption by to the public,619.6230684,TJ,CH4,3.9,kg/TJ,2416.5299667599998,kg +f298d1c5-0db9-30c2-9fe8-0c5be36e3535,SESCO,II.1.1,Chaco,AR-H,annual,2010,gas oil combustion consumption by to the public,619.6230684,TJ,N2O,3.9,kg/TJ,2416.5299667599998,kg +7a1def04-2ad8-354a-a044-3e9b5a2dd434,SESCO,II.1.1,Chubut,AR-U,annual,2010,gas oil combustion consumption by to the public,527.8836864,TJ,CO2,74100.0,kg/TJ,39116181.16224,kg +3716c432-86ba-3ac8-a386-b3c274b5918a,SESCO,II.1.1,Chubut,AR-U,annual,2010,gas oil combustion consumption by to the public,527.8836864,TJ,CH4,3.9,kg/TJ,2058.74637696,kg +3716c432-86ba-3ac8-a386-b3c274b5918a,SESCO,II.1.1,Chubut,AR-U,annual,2010,gas oil combustion consumption by to the public,527.8836864,TJ,N2O,3.9,kg/TJ,2058.74637696,kg +a3b20ea0-6cb5-36b3-86ce-c243a634f637,SESCO,II.1.1,Corrientes,AR-W,annual,2010,gas oil combustion consumption by to the public,1291.3373172,TJ,CO2,74100.0,kg/TJ,95688095.20451999,kg +e69f3b22-4780-3965-b199-149720b1e560,SESCO,II.1.1,Corrientes,AR-W,annual,2010,gas oil combustion consumption by to the public,1291.3373172,TJ,CH4,3.9,kg/TJ,5036.215537079999,kg +e69f3b22-4780-3965-b199-149720b1e560,SESCO,II.1.1,Corrientes,AR-W,annual,2010,gas oil combustion consumption by to the public,1291.3373172,TJ,N2O,3.9,kg/TJ,5036.215537079999,kg +6aa15661-b726-32e8-9b07-ae44740440ea,SESCO,II.1.1,Córdoba,AR-X,annual,2010,gas oil combustion consumption by to the public,7432.72924464,TJ,CO2,74100.0,kg/TJ,550765237.0278239,kg +cbbde85c-77cb-3bfd-9bce-2ed938d80f68,SESCO,II.1.1,Córdoba,AR-X,annual,2010,gas oil combustion consumption by to the public,7432.72924464,TJ,CH4,3.9,kg/TJ,28987.644054096,kg +cbbde85c-77cb-3bfd-9bce-2ed938d80f68,SESCO,II.1.1,Córdoba,AR-X,annual,2010,gas oil combustion consumption by to the public,7432.72924464,TJ,N2O,3.9,kg/TJ,28987.644054096,kg +aeb2197a-2e64-34db-9a2d-3106c4368004,SESCO,II.1.1,Entre Rios,AR-E,annual,2010,gas oil combustion consumption by to the public,2661.5524068,TJ,CO2,74100.0,kg/TJ,197221033.34388,kg +317016bb-96ea-322e-8186-00d4d146b103,SESCO,II.1.1,Entre Rios,AR-E,annual,2010,gas oil combustion consumption by to the public,2661.5524068,TJ,CH4,3.9,kg/TJ,10380.05438652,kg +317016bb-96ea-322e-8186-00d4d146b103,SESCO,II.1.1,Entre Rios,AR-E,annual,2010,gas oil combustion consumption by to the public,2661.5524068,TJ,N2O,3.9,kg/TJ,10380.05438652,kg +6703fd54-de4d-3938-ace5-324dcf9849de,SESCO,II.1.1,Formosa,AR-P,annual,2010,gas oil combustion consumption by to the public,442.9861548,TJ,CO2,74100.0,kg/TJ,32825274.07068,kg +ae01f5b2-0279-35d7-b3a5-9d32dab19142,SESCO,II.1.1,Formosa,AR-P,annual,2010,gas oil combustion consumption by to the public,442.9861548,TJ,CH4,3.9,kg/TJ,1727.64600372,kg +ae01f5b2-0279-35d7-b3a5-9d32dab19142,SESCO,II.1.1,Formosa,AR-P,annual,2010,gas oil combustion consumption by to the public,442.9861548,TJ,N2O,3.9,kg/TJ,1727.64600372,kg +edc00294-533f-3e57-947c-7e8ec68f86e0,SESCO,II.1.1,Jujuy,AR-Y,annual,2010,gas oil combustion consumption by to the public,91.64510879999999,TJ,CO2,74100.0,kg/TJ,6790902.56208,kg +d8cfea10-3d2f-33e5-9296-50180fdd3b12,SESCO,II.1.1,Jujuy,AR-Y,annual,2010,gas oil combustion consumption by to the public,91.64510879999999,TJ,CH4,3.9,kg/TJ,357.41592431999993,kg +d8cfea10-3d2f-33e5-9296-50180fdd3b12,SESCO,II.1.1,Jujuy,AR-Y,annual,2010,gas oil combustion consumption by to the public,91.64510879999999,TJ,N2O,3.9,kg/TJ,357.41592431999993,kg +ece7ba1c-97f1-3ce9-bbba-c0e761b49c34,SESCO,II.1.1,La Pampa,AR-L,annual,2010,gas oil combustion consumption by to the public,419.9730192,TJ,CO2,74100.0,kg/TJ,31120000.72272,kg +264b89db-aa42-3fc4-a72f-d9b52cef0032,SESCO,II.1.1,La Pampa,AR-L,annual,2010,gas oil combustion consumption by to the public,419.9730192,TJ,CH4,3.9,kg/TJ,1637.89477488,kg +264b89db-aa42-3fc4-a72f-d9b52cef0032,SESCO,II.1.1,La Pampa,AR-L,annual,2010,gas oil combustion consumption by to the public,419.9730192,TJ,N2O,3.9,kg/TJ,1637.89477488,kg +c2b70944-deda-377f-80a6-d7a638ac2974,SESCO,II.1.1,La Rioja,AR-F,annual,2010,gas oil combustion consumption by to the public,99.6359364,TJ,CO2,74100.0,kg/TJ,7383022.88724,kg +ed6347ca-c2fc-3dd1-a00a-6a43ebef9dbc,SESCO,II.1.1,La Rioja,AR-F,annual,2010,gas oil combustion consumption by to the public,99.6359364,TJ,CH4,3.9,kg/TJ,388.58015196,kg +ed6347ca-c2fc-3dd1-a00a-6a43ebef9dbc,SESCO,II.1.1,La Rioja,AR-F,annual,2010,gas oil combustion consumption by to the public,99.6359364,TJ,N2O,3.9,kg/TJ,388.58015196,kg +53e15f56-9e0d-3f49-be21-b9ce8e0eb805,SESCO,II.1.1,Mendoza,AR-M,annual,2010,gas oil combustion consumption by to the public,826.5252912000001,TJ,CO2,74100.0,kg/TJ,61245524.077920005,kg +dd3014f7-1052-399f-887a-b898eeb547a9,SESCO,II.1.1,Mendoza,AR-M,annual,2010,gas oil combustion consumption by to the public,826.5252912000001,TJ,CH4,3.9,kg/TJ,3223.4486356800003,kg +dd3014f7-1052-399f-887a-b898eeb547a9,SESCO,II.1.1,Mendoza,AR-M,annual,2010,gas oil combustion consumption by to the public,826.5252912000001,TJ,N2O,3.9,kg/TJ,3223.4486356800003,kg +5fb3cc98-86b1-30bd-b108-d9e8f13fb4ef,SESCO,II.1.1,Misiones,AR-N,annual,2010,gas oil combustion consumption by to the public,1162.9505832,TJ,CO2,74100.0,kg/TJ,86174638.21512,kg +adf80ffa-c6b2-3f88-b0e6-598e06a57bd3,SESCO,II.1.1,Misiones,AR-N,annual,2010,gas oil combustion consumption by to the public,1162.9505832,TJ,CH4,3.9,kg/TJ,4535.50727448,kg +adf80ffa-c6b2-3f88-b0e6-598e06a57bd3,SESCO,II.1.1,Misiones,AR-N,annual,2010,gas oil combustion consumption by to the public,1162.9505832,TJ,N2O,3.9,kg/TJ,4535.50727448,kg +7a02342a-de54-3bdd-9966-99fdf7a3e92a,SESCO,II.1.1,Neuquén,AR-Q,annual,2010,gas oil combustion consumption by to the public,219.566256,TJ,CO2,74100.0,kg/TJ,16269859.569600001,kg +f25de1db-c675-3920-935e-6911750dfdcf,SESCO,II.1.1,Neuquén,AR-Q,annual,2010,gas oil combustion consumption by to the public,219.566256,TJ,CH4,3.9,kg/TJ,856.3083984,kg +f25de1db-c675-3920-935e-6911750dfdcf,SESCO,II.1.1,Neuquén,AR-Q,annual,2010,gas oil combustion consumption by to the public,219.566256,TJ,N2O,3.9,kg/TJ,856.3083984,kg +09371202-c957-39de-8053-bc307ad375c5,SESCO,II.1.1,Rio Negro,AR-R,annual,2010,gas oil combustion consumption by to the public,1017.9750167999999,TJ,CO2,74100.0,kg/TJ,75431948.74487999,kg +77292b2a-cb21-35ff-9cf0-ab3bfda24269,SESCO,II.1.1,Rio Negro,AR-R,annual,2010,gas oil combustion consumption by to the public,1017.9750167999999,TJ,CH4,3.9,kg/TJ,3970.1025655199996,kg +77292b2a-cb21-35ff-9cf0-ab3bfda24269,SESCO,II.1.1,Rio Negro,AR-R,annual,2010,gas oil combustion consumption by to the public,1017.9750167999999,TJ,N2O,3.9,kg/TJ,3970.1025655199996,kg +9f086e36-2e39-350d-ab72-d97b1efb85ad,SESCO,II.1.1,Salta,AR-A,annual,2010,gas oil combustion consumption by to the public,141.98772,TJ,CO2,74100.0,kg/TJ,10521290.052,kg +9de9c5f0-5782-3b92-9a4e-30a6c26f74e1,SESCO,II.1.1,Salta,AR-A,annual,2010,gas oil combustion consumption by to the public,141.98772,TJ,CH4,3.9,kg/TJ,553.752108,kg +9de9c5f0-5782-3b92-9a4e-30a6c26f74e1,SESCO,II.1.1,Salta,AR-A,annual,2010,gas oil combustion consumption by to the public,141.98772,TJ,N2O,3.9,kg/TJ,553.752108,kg +77284aa3-85bc-3839-b82b-894b2dd21b52,SESCO,II.1.1,San Juan,AR-J,annual,2010,gas oil combustion consumption by to the public,580.6972668,TJ,CO2,74100.0,kg/TJ,43029667.46988,kg +5ca8ca56-9b03-3cdf-b85c-8325bd7302fc,SESCO,II.1.1,San Juan,AR-J,annual,2010,gas oil combustion consumption by to the public,580.6972668,TJ,CH4,3.9,kg/TJ,2264.7193405199996,kg +5ca8ca56-9b03-3cdf-b85c-8325bd7302fc,SESCO,II.1.1,San Juan,AR-J,annual,2010,gas oil combustion consumption by to the public,580.6972668,TJ,N2O,3.9,kg/TJ,2264.7193405199996,kg +02c13a8c-5892-3254-b318-06dbdb6c96f1,SESCO,II.1.1,San Luis,AR-D,annual,2010,gas oil combustion consumption by to the public,820.0099656,TJ,CO2,74100.0,kg/TJ,60762738.450959995,kg +8efdb788-7e49-3074-a225-7ceb6dc7b047,SESCO,II.1.1,San Luis,AR-D,annual,2010,gas oil combustion consumption by to the public,820.0099656,TJ,CH4,3.9,kg/TJ,3198.0388658399997,kg +8efdb788-7e49-3074-a225-7ceb6dc7b047,SESCO,II.1.1,San Luis,AR-D,annual,2010,gas oil combustion consumption by to the public,820.0099656,TJ,N2O,3.9,kg/TJ,3198.0388658399997,kg +3d672b1a-ebea-385b-af99-ceebfb164c10,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2010,gas oil combustion consumption by to the public,425.14323599999994,TJ,CO2,74100.0,kg/TJ,31503113.787599996,kg +31177e65-2694-3345-8753-f4dc4df2f3c7,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2010,gas oil combustion consumption by to the public,425.14323599999994,TJ,CH4,3.9,kg/TJ,1658.0586203999997,kg +31177e65-2694-3345-8753-f4dc4df2f3c7,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2010,gas oil combustion consumption by to the public,425.14323599999994,TJ,N2O,3.9,kg/TJ,1658.0586203999997,kg +10d919d8-0fce-30b0-ae6f-75a7d6dc0144,SESCO,II.1.1,Santa Fe,AR-S,annual,2010,gas oil combustion consumption by to the public,4994.36015064,TJ,CO2,74100.0,kg/TJ,370082087.162424,kg +a7f27696-85f3-3d35-b54a-fb5e2b7ad02f,SESCO,II.1.1,Santa Fe,AR-S,annual,2010,gas oil combustion consumption by to the public,4994.36015064,TJ,CH4,3.9,kg/TJ,19478.004587496,kg +a7f27696-85f3-3d35-b54a-fb5e2b7ad02f,SESCO,II.1.1,Santa Fe,AR-S,annual,2010,gas oil combustion consumption by to the public,4994.36015064,TJ,N2O,3.9,kg/TJ,19478.004587496,kg +5cb4585e-dab3-3614-a276-e108feb6cd99,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2010,gas oil combustion consumption by to the public,462.41040719999995,TJ,CO2,74100.0,kg/TJ,34264611.17352,kg +b1438e88-b8c6-35aa-a27f-a66d8f1610a7,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2010,gas oil combustion consumption by to the public,462.41040719999995,TJ,CH4,3.9,kg/TJ,1803.4005880799998,kg +b1438e88-b8c6-35aa-a27f-a66d8f1610a7,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2010,gas oil combustion consumption by to the public,462.41040719999995,TJ,N2O,3.9,kg/TJ,1803.4005880799998,kg +69ce6ef8-867e-3328-9009-da6f33ad879d,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2010,gas oil combustion consumption by to the public,131.38722239999998,TJ,CO2,74100.0,kg/TJ,9735793.179839998,kg +26a45aec-8d1a-39a4-ba7f-c5403d2f5225,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2010,gas oil combustion consumption by to the public,131.38722239999998,TJ,CH4,3.9,kg/TJ,512.41016736,kg +26a45aec-8d1a-39a4-ba7f-c5403d2f5225,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2010,gas oil combustion consumption by to the public,131.38722239999998,TJ,N2O,3.9,kg/TJ,512.41016736,kg +3a7cc347-6ab5-3b8c-86b3-295863284a94,SESCO,II.1.1,Tucuman,AR-T,annual,2010,gas oil combustion consumption by to the public,131.272722,TJ,CO2,74100.0,kg/TJ,9727308.700199999,kg +b77ba828-9577-376e-8545-a829a1042dd5,SESCO,II.1.1,Tucuman,AR-T,annual,2010,gas oil combustion consumption by to the public,131.272722,TJ,CH4,3.9,kg/TJ,511.96361579999996,kg +b77ba828-9577-376e-8545-a829a1042dd5,SESCO,II.1.1,Tucuman,AR-T,annual,2010,gas oil combustion consumption by to the public,131.272722,TJ,N2O,3.9,kg/TJ,511.96361579999996,kg +481c0434-5ed8-3d4d-9a72-61e63d4b06ac,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,gas oil combustion consumption by to the public,873.8450196,TJ,CO2,74100.0,kg/TJ,64751915.95236,kg +c1ee4ebb-c6d3-3d4c-91ca-6545c5edba13,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,gas oil combustion consumption by to the public,873.8450196,TJ,CH4,3.9,kg/TJ,3407.99557644,kg +c1ee4ebb-c6d3-3d4c-91ca-6545c5edba13,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,gas oil combustion consumption by to the public,873.8450196,TJ,N2O,3.9,kg/TJ,3407.99557644,kg +cb703512-8bcd-35da-b50e-cf4b92b36193,SESCO,II.1.1,Capital Federal,AR-C,annual,2010,gas oil combustion consumption by to the public,119.36222423999999,TJ,CO2,74100.0,kg/TJ,8844740.816184,kg +571f2e5b-6e1c-3a95-8e81-e29e81710708,SESCO,II.1.1,Capital Federal,AR-C,annual,2010,gas oil combustion consumption by to the public,119.36222423999999,TJ,CH4,3.9,kg/TJ,465.51267453599996,kg +571f2e5b-6e1c-3a95-8e81-e29e81710708,SESCO,II.1.1,Capital Federal,AR-C,annual,2010,gas oil combustion consumption by to the public,119.36222423999999,TJ,N2O,3.9,kg/TJ,465.51267453599996,kg +a0611401-36a8-3cbb-adea-7c690214d3ca,SESCO,II.1.1,Catamarca,AR-K,annual,2010,gas oil combustion consumption by to the public,31.1903424,TJ,CO2,74100.0,kg/TJ,2311204.3718399997,kg +dcc1de16-91e3-37f7-85a6-55489c68545d,SESCO,II.1.1,Catamarca,AR-K,annual,2010,gas oil combustion consumption by to the public,31.1903424,TJ,CH4,3.9,kg/TJ,121.64233535999999,kg +dcc1de16-91e3-37f7-85a6-55489c68545d,SESCO,II.1.1,Catamarca,AR-K,annual,2010,gas oil combustion consumption by to the public,31.1903424,TJ,N2O,3.9,kg/TJ,121.64233535999999,kg +5e41260c-a9ce-3036-948c-1c63cbf7bf78,SESCO,II.1.1,Chaco,AR-H,annual,2010,gas oil combustion consumption by to the public,54.4602912,TJ,CO2,74100.0,kg/TJ,4035507.57792,kg +d7b6ad42-6baf-3e00-a73c-912e30a0ff6b,SESCO,II.1.1,Chaco,AR-H,annual,2010,gas oil combustion consumption by to the public,54.4602912,TJ,CH4,3.9,kg/TJ,212.39513568,kg +d7b6ad42-6baf-3e00-a73c-912e30a0ff6b,SESCO,II.1.1,Chaco,AR-H,annual,2010,gas oil combustion consumption by to the public,54.4602912,TJ,N2O,3.9,kg/TJ,212.39513568,kg +dd0b761f-4da3-3727-91cc-aa1160f5d2b4,SESCO,II.1.1,Chubut,AR-U,annual,2010,gas oil combustion consumption by to the public,30.259529999999998,TJ,CO2,74100.0,kg/TJ,2242231.173,kg +7311b52e-46e0-3037-985d-8c2685a9b0a6,SESCO,II.1.1,Chubut,AR-U,annual,2010,gas oil combustion consumption by to the public,30.259529999999998,TJ,CH4,3.9,kg/TJ,118.01216699999999,kg +7311b52e-46e0-3037-985d-8c2685a9b0a6,SESCO,II.1.1,Chubut,AR-U,annual,2010,gas oil combustion consumption by to the public,30.259529999999998,TJ,N2O,3.9,kg/TJ,118.01216699999999,kg +6b0f1d65-3431-3c03-ba87-5b34d2e09ba4,SESCO,II.1.1,Corrientes,AR-W,annual,2010,gas oil combustion consumption by to the public,55.0970868,TJ,CO2,74100.0,kg/TJ,4082694.13188,kg +05c5174a-4d4d-370a-8df4-44fe78ae6abc,SESCO,II.1.1,Corrientes,AR-W,annual,2010,gas oil combustion consumption by to the public,55.0970868,TJ,CH4,3.9,kg/TJ,214.87863851999998,kg +05c5174a-4d4d-370a-8df4-44fe78ae6abc,SESCO,II.1.1,Corrientes,AR-W,annual,2010,gas oil combustion consumption by to the public,55.0970868,TJ,N2O,3.9,kg/TJ,214.87863851999998,kg +bef64de6-f493-388a-8dc6-508386c57060,SESCO,II.1.1,Córdoba,AR-X,annual,2010,gas oil combustion consumption by to the public,526.8697618799999,TJ,CO2,74100.0,kg/TJ,39041049.355307996,kg +8b8e5278-0777-3e23-bb57-6381bbecffba,SESCO,II.1.1,Córdoba,AR-X,annual,2010,gas oil combustion consumption by to the public,526.8697618799999,TJ,CH4,3.9,kg/TJ,2054.7920713319995,kg +8b8e5278-0777-3e23-bb57-6381bbecffba,SESCO,II.1.1,Córdoba,AR-X,annual,2010,gas oil combustion consumption by to the public,526.8697618799999,TJ,N2O,3.9,kg/TJ,2054.7920713319995,kg +ccf24f0f-faa6-3cd8-a8cd-db7c61c52f1c,SESCO,II.1.1,Entre Rios,AR-E,annual,2010,gas oil combustion consumption by to the public,187.9460856,TJ,CO2,74100.0,kg/TJ,13926804.94296,kg +ed350f76-bf3e-3074-ae4e-90af838331a5,SESCO,II.1.1,Entre Rios,AR-E,annual,2010,gas oil combustion consumption by to the public,187.9460856,TJ,CH4,3.9,kg/TJ,732.98973384,kg +ed350f76-bf3e-3074-ae4e-90af838331a5,SESCO,II.1.1,Entre Rios,AR-E,annual,2010,gas oil combustion consumption by to the public,187.9460856,TJ,N2O,3.9,kg/TJ,732.98973384,kg +e2d26ffc-a0ba-36df-8afa-459a6274bb9f,SESCO,II.1.1,Formosa,AR-P,annual,2010,gas oil combustion consumption by to the public,49.5931212,TJ,CO2,74100.0,kg/TJ,3674850.28092,kg +48fbef3e-ff9c-39c9-941a-3fe9c9b5226a,SESCO,II.1.1,Formosa,AR-P,annual,2010,gas oil combustion consumption by to the public,49.5931212,TJ,CH4,3.9,kg/TJ,193.41317268,kg +48fbef3e-ff9c-39c9-941a-3fe9c9b5226a,SESCO,II.1.1,Formosa,AR-P,annual,2010,gas oil combustion consumption by to the public,49.5931212,TJ,N2O,3.9,kg/TJ,193.41317268,kg +0e203fa3-2bf6-3af9-bfa8-c861bcaf5c50,SESCO,II.1.1,Jujuy,AR-Y,annual,2010,gas oil combustion consumption by to the public,2.4536316,TJ,CO2,74100.0,kg/TJ,181814.10156,kg +8dad0ac4-ef2e-3071-80ca-7cc7b6052d58,SESCO,II.1.1,Jujuy,AR-Y,annual,2010,gas oil combustion consumption by to the public,2.4536316,TJ,CH4,3.9,kg/TJ,9.56916324,kg +8dad0ac4-ef2e-3071-80ca-7cc7b6052d58,SESCO,II.1.1,Jujuy,AR-Y,annual,2010,gas oil combustion consumption by to the public,2.4536316,TJ,N2O,3.9,kg/TJ,9.56916324,kg +7075036e-239c-3551-891b-5a81dbf218e1,SESCO,II.1.1,La Pampa,AR-L,annual,2010,gas oil combustion consumption by to the public,32.762646,TJ,CO2,74100.0,kg/TJ,2427712.0686,kg +2d516138-44ee-3c02-9333-2566328326c0,SESCO,II.1.1,La Pampa,AR-L,annual,2010,gas oil combustion consumption by to the public,32.762646,TJ,CH4,3.9,kg/TJ,127.77431939999998,kg +2d516138-44ee-3c02-9333-2566328326c0,SESCO,II.1.1,La Pampa,AR-L,annual,2010,gas oil combustion consumption by to the public,32.762646,TJ,N2O,3.9,kg/TJ,127.77431939999998,kg +80b68e09-e4e8-3ffe-aa8d-65eee1161764,SESCO,II.1.1,La Rioja,AR-F,annual,2010,gas oil combustion consumption by to the public,8.0002188,TJ,CO2,74100.0,kg/TJ,592816.21308,kg +3baf5db9-57b3-36f9-990e-923939fd3f99,SESCO,II.1.1,La Rioja,AR-F,annual,2010,gas oil combustion consumption by to the public,8.0002188,TJ,CH4,3.9,kg/TJ,31.200853320000004,kg +3baf5db9-57b3-36f9-990e-923939fd3f99,SESCO,II.1.1,La Rioja,AR-F,annual,2010,gas oil combustion consumption by to the public,8.0002188,TJ,N2O,3.9,kg/TJ,31.200853320000004,kg +b82e719f-2a40-3b9f-ba5c-ad39fd8f8292,SESCO,II.1.1,Mendoza,AR-M,annual,2010,gas oil combustion consumption by to the public,56.027538,TJ,CO2,74100.0,kg/TJ,4151640.5658,kg +3f06f4fb-1c88-3746-802f-1532ae7a8901,SESCO,II.1.1,Mendoza,AR-M,annual,2010,gas oil combustion consumption by to the public,56.027538,TJ,CH4,3.9,kg/TJ,218.50739819999998,kg +3f06f4fb-1c88-3746-802f-1532ae7a8901,SESCO,II.1.1,Mendoza,AR-M,annual,2010,gas oil combustion consumption by to the public,56.027538,TJ,N2O,3.9,kg/TJ,218.50739819999998,kg +ad0372cf-0bfa-3e62-bd46-151b21d79cab,SESCO,II.1.1,Misiones,AR-N,annual,2010,gas oil combustion consumption by to the public,78.85176600000001,TJ,CO2,74100.0,kg/TJ,5842915.860600001,kg +55b850a6-cd8f-32fa-ba26-375f6764178f,SESCO,II.1.1,Misiones,AR-N,annual,2010,gas oil combustion consumption by to the public,78.85176600000001,TJ,CH4,3.9,kg/TJ,307.5218874,kg +55b850a6-cd8f-32fa-ba26-375f6764178f,SESCO,II.1.1,Misiones,AR-N,annual,2010,gas oil combustion consumption by to the public,78.85176600000001,TJ,N2O,3.9,kg/TJ,307.5218874,kg +619940e5-408f-3de3-9d1d-5c869615b187,SESCO,II.1.1,Neuquén,AR-Q,annual,2010,gas oil combustion consumption by to the public,26.037824399999998,TJ,CO2,74100.0,kg/TJ,1929402.7880399998,kg +9cc41a9a-9795-366d-b724-d3bfaa995507,SESCO,II.1.1,Neuquén,AR-Q,annual,2010,gas oil combustion consumption by to the public,26.037824399999998,TJ,CH4,3.9,kg/TJ,101.54751515999999,kg +9cc41a9a-9795-366d-b724-d3bfaa995507,SESCO,II.1.1,Neuquén,AR-Q,annual,2010,gas oil combustion consumption by to the public,26.037824399999998,TJ,N2O,3.9,kg/TJ,101.54751515999999,kg +4bf00b9f-51e5-33c2-b4e6-f9497968d49c,SESCO,II.1.1,Rio Negro,AR-R,annual,2010,gas oil combustion consumption by to the public,54.71999399999999,TJ,CO2,74100.0,kg/TJ,4054751.5553999995,kg +a56336c9-4347-38d6-82c4-ad1741686872,SESCO,II.1.1,Rio Negro,AR-R,annual,2010,gas oil combustion consumption by to the public,54.71999399999999,TJ,CH4,3.9,kg/TJ,213.40797659999996,kg +a56336c9-4347-38d6-82c4-ad1741686872,SESCO,II.1.1,Rio Negro,AR-R,annual,2010,gas oil combustion consumption by to the public,54.71999399999999,TJ,N2O,3.9,kg/TJ,213.40797659999996,kg +c246c531-257b-3ad2-8d89-bf26f5f2c9d0,SESCO,II.1.1,Salta,AR-A,annual,2010,gas oil combustion consumption by to the public,5.2262028,TJ,CO2,74100.0,kg/TJ,387261.62748,kg +e2570d59-fd36-391e-a271-43afe51996cd,SESCO,II.1.1,Salta,AR-A,annual,2010,gas oil combustion consumption by to the public,5.2262028,TJ,CH4,3.9,kg/TJ,20.38219092,kg +e2570d59-fd36-391e-a271-43afe51996cd,SESCO,II.1.1,Salta,AR-A,annual,2010,gas oil combustion consumption by to the public,5.2262028,TJ,N2O,3.9,kg/TJ,20.38219092,kg +f8e482c4-1553-3a8d-a716-138607211035,SESCO,II.1.1,San Juan,AR-J,annual,2010,gas oil combustion consumption by to the public,28.92309,TJ,CO2,74100.0,kg/TJ,2143200.969,kg +83583fa4-1108-398e-b838-ed468d87ea9a,SESCO,II.1.1,San Juan,AR-J,annual,2010,gas oil combustion consumption by to the public,28.92309,TJ,CH4,3.9,kg/TJ,112.800051,kg +83583fa4-1108-398e-b838-ed468d87ea9a,SESCO,II.1.1,San Juan,AR-J,annual,2010,gas oil combustion consumption by to the public,28.92309,TJ,N2O,3.9,kg/TJ,112.800051,kg +c21751f5-2f0a-369c-b34d-f44ba5796910,SESCO,II.1.1,San Luis,AR-D,annual,2010,gas oil combustion consumption by to the public,52.484527199999995,TJ,CO2,74100.0,kg/TJ,3889103.4655199996,kg +35db7b48-013c-3eb6-aeee-b721e53367cd,SESCO,II.1.1,San Luis,AR-D,annual,2010,gas oil combustion consumption by to the public,52.484527199999995,TJ,CH4,3.9,kg/TJ,204.68965607999996,kg +35db7b48-013c-3eb6-aeee-b721e53367cd,SESCO,II.1.1,San Luis,AR-D,annual,2010,gas oil combustion consumption by to the public,52.484527199999995,TJ,N2O,3.9,kg/TJ,204.68965607999996,kg +563dcfc9-3a41-38d9-a29d-e329f126eb92,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2010,gas oil combustion consumption by to the public,17.2277952,TJ,CO2,74100.0,kg/TJ,1276579.62432,kg +fe5a177a-6a2c-3f8f-b0bc-934985c3ae5f,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2010,gas oil combustion consumption by to the public,17.2277952,TJ,CH4,3.9,kg/TJ,67.18840128,kg +fe5a177a-6a2c-3f8f-b0bc-934985c3ae5f,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2010,gas oil combustion consumption by to the public,17.2277952,TJ,N2O,3.9,kg/TJ,67.18840128,kg +25106b1d-3b63-388c-b7b4-6ba47f155aff,SESCO,II.1.1,Santa Fe,AR-S,annual,2010,gas oil combustion consumption by to the public,307.06962888,TJ,CO2,74100.0,kg/TJ,22753859.500008,kg +25166700-5d81-3b73-b2ac-5020f886e93f,SESCO,II.1.1,Santa Fe,AR-S,annual,2010,gas oil combustion consumption by to the public,307.06962888,TJ,CH4,3.9,kg/TJ,1197.5715526319998,kg +25166700-5d81-3b73-b2ac-5020f886e93f,SESCO,II.1.1,Santa Fe,AR-S,annual,2010,gas oil combustion consumption by to the public,307.06962888,TJ,N2O,3.9,kg/TJ,1197.5715526319998,kg +daa6a90a-a9b2-3c42-adff-5c27a91ffa71,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2010,gas oil combustion consumption by to the public,24.9361644,TJ,CO2,74100.0,kg/TJ,1847769.78204,kg +ae2f36fb-a6c9-3cfd-abf1-e043080c2426,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2010,gas oil combustion consumption by to the public,24.9361644,TJ,CH4,3.9,kg/TJ,97.25104116,kg +ae2f36fb-a6c9-3cfd-abf1-e043080c2426,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2010,gas oil combustion consumption by to the public,24.9361644,TJ,N2O,3.9,kg/TJ,97.25104116,kg +6dbacce7-09ff-3887-909d-37e77cd2a062,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2010,gas oil combustion consumption by to the public,15.300432,TJ,CO2,74100.0,kg/TJ,1133762.0112,kg +edf9dd84-e790-3461-ae55-0a6189577c56,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2010,gas oil combustion consumption by to the public,15.300432,TJ,CH4,3.9,kg/TJ,59.6716848,kg +edf9dd84-e790-3461-ae55-0a6189577c56,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2010,gas oil combustion consumption by to the public,15.300432,TJ,N2O,3.9,kg/TJ,59.6716848,kg +e9110e68-1e88-3dda-bcf6-190251451cd0,SESCO,II.1.1,Tucuman,AR-T,annual,2010,gas oil combustion consumption by to the public,6.5229108,TJ,CO2,74100.0,kg/TJ,483347.69028,kg +84a973f6-afd4-3b44-a7f6-9453a2b893c6,SESCO,II.1.1,Tucuman,AR-T,annual,2010,gas oil combustion consumption by to the public,6.5229108,TJ,CH4,3.9,kg/TJ,25.43935212,kg +84a973f6-afd4-3b44-a7f6-9453a2b893c6,SESCO,II.1.1,Tucuman,AR-T,annual,2010,gas oil combustion consumption by to the public,6.5229108,TJ,N2O,3.9,kg/TJ,25.43935212,kg +6fb26f69-eb72-30e8-9fa7-66364b6d57f7,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,jet kerosene combustion consumption by to the public,41.05748808,TJ,CO2,71500.0,kg/TJ,2935610.39772,kg +1d797fb6-15da-3913-98ab-f407200a1fce,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,jet kerosene combustion consumption by to the public,41.05748808,TJ,CH4,0.5,kg/TJ,20.52874404,kg +59249f7f-b487-3fc7-8a54-08069d145213,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,jet kerosene combustion consumption by to the public,41.05748808,TJ,N2O,2.0,kg/TJ,82.11497616,kg +cefb8d1c-a78e-3639-a4f2-ece4e88fa781,SESCO,II.1.1,Córdoba,AR-X,annual,2010,jet kerosene combustion consumption by to the public,22.368430009999994,TJ,CO2,71500.0,kg/TJ,1599342.7457149995,kg +1447b56b-ecae-3bfa-be7d-2a1c97ddd365,SESCO,II.1.1,Córdoba,AR-X,annual,2010,jet kerosene combustion consumption by to the public,22.368430009999994,TJ,CH4,0.5,kg/TJ,11.184215004999997,kg +b5b4a7d8-d6cf-3a33-aca1-c86c35851ed6,SESCO,II.1.1,Córdoba,AR-X,annual,2010,jet kerosene combustion consumption by to the public,22.368430009999994,TJ,N2O,2.0,kg/TJ,44.73686001999999,kg +0936ec29-03ee-3ef8-ba74-db3d446880fc,SESCO,II.1.1,Entre Rios,AR-E,annual,2010,jet kerosene combustion consumption by to the public,4.810736349999999,TJ,CO2,71500.0,kg/TJ,343967.64902499993,kg +9643947e-1f2a-3311-93e6-2189b5499db8,SESCO,II.1.1,Entre Rios,AR-E,annual,2010,jet kerosene combustion consumption by to the public,4.810736349999999,TJ,CH4,0.5,kg/TJ,2.4053681749999996,kg +d41bc0f7-5f3d-331e-8c45-4435723bf707,SESCO,II.1.1,Entre Rios,AR-E,annual,2010,jet kerosene combustion consumption by to the public,4.810736349999999,TJ,N2O,2.0,kg/TJ,9.621472699999998,kg +db19db5a-c9bc-393c-933c-eb7bd01ceefe,SESCO,II.1.1,La Pampa,AR-L,annual,2010,jet kerosene combustion consumption by to the public,0.15663594,TJ,CO2,71500.0,kg/TJ,11199.46971,kg +0f022fde-384b-31ad-8ff7-334c3244062e,SESCO,II.1.1,La Pampa,AR-L,annual,2010,jet kerosene combustion consumption by to the public,0.15663594,TJ,CH4,0.5,kg/TJ,0.07831797,kg +dc686097-fb24-36bb-94f2-12d58b344363,SESCO,II.1.1,La Pampa,AR-L,annual,2010,jet kerosene combustion consumption by to the public,0.15663594,TJ,N2O,2.0,kg/TJ,0.31327188,kg +d836f567-b623-3c7f-aaf7-9368c0b1b3c0,SESCO,II.1.1,Mendoza,AR-M,annual,2010,jet kerosene combustion consumption by to the public,3.0921444299999994,TJ,CO2,71500.0,kg/TJ,221088.32674499997,kg +be7e14ce-d2a7-37ee-ad96-ee5395d23cdc,SESCO,II.1.1,Mendoza,AR-M,annual,2010,jet kerosene combustion consumption by to the public,3.0921444299999994,TJ,CH4,0.5,kg/TJ,1.5460722149999997,kg +3dbff8a5-84e6-3701-bbbb-f38ebfa7a857,SESCO,II.1.1,Mendoza,AR-M,annual,2010,jet kerosene combustion consumption by to the public,3.0921444299999994,TJ,N2O,2.0,kg/TJ,6.184288859999999,kg +582cb3b3-94db-31c8-b7fd-fc7737a71cbd,SESCO,II.1.1,Misiones,AR-N,annual,2010,jet kerosene combustion consumption by to the public,0.7510976399999999,TJ,CO2,71500.0,kg/TJ,53703.48125999999,kg +1f24dfdf-defd-3ec6-8fb2-6e2dcb483015,SESCO,II.1.1,Misiones,AR-N,annual,2010,jet kerosene combustion consumption by to the public,0.7510976399999999,TJ,CH4,0.5,kg/TJ,0.37554881999999995,kg +950f8fae-bea8-3680-9c82-67461450328c,SESCO,II.1.1,Misiones,AR-N,annual,2010,jet kerosene combustion consumption by to the public,0.7510976399999999,TJ,N2O,2.0,kg/TJ,1.5021952799999998,kg +d40b312c-da46-3c44-aa9d-748ac1e5331f,SESCO,II.1.1,San Luis,AR-D,annual,2010,jet kerosene combustion consumption by to the public,0.28150434999999996,TJ,CO2,71500.0,kg/TJ,20127.561024999995,kg +765407bf-3779-3cfd-b64d-baacc623699b,SESCO,II.1.1,San Luis,AR-D,annual,2010,jet kerosene combustion consumption by to the public,0.28150434999999996,TJ,CH4,0.5,kg/TJ,0.14075217499999998,kg +a1e5f6b8-f549-3890-a56c-353cfcdacbae,SESCO,II.1.1,San Luis,AR-D,annual,2010,jet kerosene combustion consumption by to the public,0.28150434999999996,TJ,N2O,2.0,kg/TJ,0.5630086999999999,kg +3d7364e0-e843-3720-848b-4dbc4cfa15de,SESCO,II.1.1,Santa Fe,AR-S,annual,2010,jet kerosene combustion consumption by to the public,15.32799049,TJ,CO2,71500.0,kg/TJ,1095951.3200349999,kg +ee0183fd-af78-3d07-ab62-aa2b02d45770,SESCO,II.1.1,Santa Fe,AR-S,annual,2010,jet kerosene combustion consumption by to the public,15.32799049,TJ,CH4,0.5,kg/TJ,7.663995245,kg +9305eac6-e45a-39e0-9bf4-baba12a95c79,SESCO,II.1.1,Santa Fe,AR-S,annual,2010,jet kerosene combustion consumption by to the public,15.32799049,TJ,N2O,2.0,kg/TJ,30.65598098,kg +378c40bf-b65a-357c-b6a5-021b763c708a,SESCO,I.3.1,Buenos Aires,AR-B,annual,2010,gasoline combustion consumption by petrochemical industries,2.660215,TJ,CO2,69300.0,kg/TJ,184352.8995,kg +c85f6d99-6c20-3de0-a42b-44a8f11f74b9,SESCO,I.3.1,Buenos Aires,AR-B,annual,2010,gasoline combustion consumption by petrochemical industries,2.660215,TJ,CH4,33.0,kg/TJ,87.787095,kg +8a4de54c-5f6a-3fac-bc49-2216bb4db7ba,SESCO,I.3.1,Buenos Aires,AR-B,annual,2010,gasoline combustion consumption by petrochemical industries,2.660215,TJ,N2O,3.2,kg/TJ,8.512688,kg +b6a7f5fa-a802-30b5-9d43-2d1f93c47eaf,SESCO,I.3.1,Buenos Aires,AR-B,annual,2010,jet kerosene combustion consumption by petrochemical industries,6.291229059999999,TJ,CO2,71500.0,kg/TJ,449822.87778999994,kg +a6bd50ec-ad41-3563-8d50-00e7c3e34288,SESCO,I.3.1,Buenos Aires,AR-B,annual,2010,jet kerosene combustion consumption by petrochemical industries,6.291229059999999,TJ,CH4,0.5,kg/TJ,3.1456145299999996,kg +a60a4232-2b2b-3785-ad41-bb9b611b6c26,SESCO,I.3.1,Buenos Aires,AR-B,annual,2010,jet kerosene combustion consumption by petrochemical industries,6.291229059999999,TJ,N2O,2.0,kg/TJ,12.582458119999998,kg +75e68619-2560-3f48-91e3-3597d691e521,SESCO,II.2.1,Capital Federal,AR-C,annual,2010,gas oil combustion consumption by railway transport,115.95170159999999,TJ,CO2,74100.0,kg/TJ,8592021.08856,kg +dbe39aa9-daad-3100-aec0-ec493782b805,SESCO,II.2.1,Capital Federal,AR-C,annual,2010,gas oil combustion consumption by railway transport,115.95170159999999,TJ,CH4,3.9,kg/TJ,452.21163623999996,kg +dbe39aa9-daad-3100-aec0-ec493782b805,SESCO,II.2.1,Capital Federal,AR-C,annual,2010,gas oil combustion consumption by railway transport,115.95170159999999,TJ,N2O,3.9,kg/TJ,452.21163623999996,kg +4f3b4bfc-dfd3-32b3-80fa-bf608bd58a49,SESCO,II.2.1,Mendoza,AR-M,annual,2010,gas oil combustion consumption by railway transport,17.9530848,TJ,CO2,74100.0,kg/TJ,1330323.58368,kg +d1c3b8aa-7287-3f90-a19c-9f0344105910,SESCO,II.2.1,Mendoza,AR-M,annual,2010,gas oil combustion consumption by railway transport,17.9530848,TJ,CH4,3.9,kg/TJ,70.01703072,kg +d1c3b8aa-7287-3f90-a19c-9f0344105910,SESCO,II.2.1,Mendoza,AR-M,annual,2010,gas oil combustion consumption by railway transport,17.9530848,TJ,N2O,3.9,kg/TJ,70.01703072,kg +a1eecf3c-4287-3369-9691-a16b0a60d421,SESCO,II.2.1,Tucuman,AR-T,annual,2010,gas oil combustion consumption by railway transport,0.3048528,TJ,CO2,74100.0,kg/TJ,22589.59248,kg +aa88f922-8577-369a-95fb-0c5ca6d06690,SESCO,II.2.1,Tucuman,AR-T,annual,2010,gas oil combustion consumption by railway transport,0.3048528,TJ,CH4,3.9,kg/TJ,1.18892592,kg +aa88f922-8577-369a-95fb-0c5ca6d06690,SESCO,II.2.1,Tucuman,AR-T,annual,2010,gas oil combustion consumption by railway transport,0.3048528,TJ,N2O,3.9,kg/TJ,1.18892592,kg +6027e3da-b9be-3adf-8f2f-2c5e3a73b560,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,gas oil combustion consumption by freight transport,1540.98727104,TJ,CO2,74100.0,kg/TJ,114187156.784064,kg +00cf7205-92da-3ce3-903d-11aca2a1d664,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,gas oil combustion consumption by freight transport,1540.98727104,TJ,CH4,3.9,kg/TJ,6009.850357056,kg +00cf7205-92da-3ce3-903d-11aca2a1d664,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,gas oil combustion consumption by freight transport,1540.98727104,TJ,N2O,3.9,kg/TJ,6009.850357056,kg +50cc17c9-44fe-3327-a2e9-9a5669d9d377,SESCO,II.1.1,Capital Federal,AR-C,annual,2010,gas oil combustion consumption by freight transport,1331.66435808,TJ,CO2,74100.0,kg/TJ,98676328.93372801,kg +6392611b-e4a2-3a0b-a72a-fb7e59fb474c,SESCO,II.1.1,Capital Federal,AR-C,annual,2010,gas oil combustion consumption by freight transport,1331.66435808,TJ,CH4,3.9,kg/TJ,5193.4909965120005,kg +6392611b-e4a2-3a0b-a72a-fb7e59fb474c,SESCO,II.1.1,Capital Federal,AR-C,annual,2010,gas oil combustion consumption by freight transport,1331.66435808,TJ,N2O,3.9,kg/TJ,5193.4909965120005,kg +96fa843c-2f92-3fde-9810-216364b021ea,SESCO,II.1.1,Chaco,AR-H,annual,2010,gas oil combustion consumption by freight transport,55.8743892,TJ,CO2,74100.0,kg/TJ,4140292.2397200004,kg +50dba2ae-8ce2-315a-9813-4b2a77ed72a6,SESCO,II.1.1,Chaco,AR-H,annual,2010,gas oil combustion consumption by freight transport,55.8743892,TJ,CH4,3.9,kg/TJ,217.91011788,kg +50dba2ae-8ce2-315a-9813-4b2a77ed72a6,SESCO,II.1.1,Chaco,AR-H,annual,2010,gas oil combustion consumption by freight transport,55.8743892,TJ,N2O,3.9,kg/TJ,217.91011788,kg +268aa20b-e31f-3404-ba53-4962da55fb05,SESCO,II.1.1,Chubut,AR-U,annual,2010,gas oil combustion consumption by freight transport,3.5787695999999998,TJ,CO2,74100.0,kg/TJ,265186.82736,kg +a0d51934-1920-3195-836c-834e4aa07025,SESCO,II.1.1,Chubut,AR-U,annual,2010,gas oil combustion consumption by freight transport,3.5787695999999998,TJ,CH4,3.9,kg/TJ,13.957201439999999,kg +a0d51934-1920-3195-836c-834e4aa07025,SESCO,II.1.1,Chubut,AR-U,annual,2010,gas oil combustion consumption by freight transport,3.5787695999999998,TJ,N2O,3.9,kg/TJ,13.957201439999999,kg +c4a850e6-088e-359b-9996-9ab394b8bc25,SESCO,II.1.1,Corrientes,AR-W,annual,2010,gas oil combustion consumption by freight transport,137.25202679999998,TJ,CO2,74100.0,kg/TJ,10170375.185879998,kg +21d8086d-578a-3f6b-9038-1cd2584976a1,SESCO,II.1.1,Corrientes,AR-W,annual,2010,gas oil combustion consumption by freight transport,137.25202679999998,TJ,CH4,3.9,kg/TJ,535.2829045199999,kg +21d8086d-578a-3f6b-9038-1cd2584976a1,SESCO,II.1.1,Corrientes,AR-W,annual,2010,gas oil combustion consumption by freight transport,137.25202679999998,TJ,N2O,3.9,kg/TJ,535.2829045199999,kg +f323359b-ae34-398b-a7c0-6259ff718696,SESCO,II.1.1,Córdoba,AR-X,annual,2010,gas oil combustion consumption by freight transport,265.40795399999996,TJ,CO2,74100.0,kg/TJ,19666729.3914,kg +893874df-3519-3be0-a684-a9c4f53e5820,SESCO,II.1.1,Córdoba,AR-X,annual,2010,gas oil combustion consumption by freight transport,265.40795399999996,TJ,CH4,3.9,kg/TJ,1035.0910205999999,kg +893874df-3519-3be0-a684-a9c4f53e5820,SESCO,II.1.1,Córdoba,AR-X,annual,2010,gas oil combustion consumption by freight transport,265.40795399999996,TJ,N2O,3.9,kg/TJ,1035.0910205999999,kg +f9d497fe-af54-3c90-9328-733e83f3cfa2,SESCO,II.1.1,Entre Rios,AR-E,annual,2010,gas oil combustion consumption by freight transport,238.068726,TJ,CO2,74100.0,kg/TJ,17640892.5966,kg +60abf862-a20d-348a-b6b6-edbbe11de407,SESCO,II.1.1,Entre Rios,AR-E,annual,2010,gas oil combustion consumption by freight transport,238.068726,TJ,CH4,3.9,kg/TJ,928.4680314,kg +60abf862-a20d-348a-b6b6-edbbe11de407,SESCO,II.1.1,Entre Rios,AR-E,annual,2010,gas oil combustion consumption by freight transport,238.068726,TJ,N2O,3.9,kg/TJ,928.4680314,kg +c8ddfcc2-0abf-3deb-b992-e2d4f45fc8ae,SESCO,II.1.1,La Pampa,AR-L,annual,2010,gas oil combustion consumption by freight transport,0.039370800000000004,TJ,CO2,74100.0,kg/TJ,2917.3762800000004,kg +8e618e43-4cc5-3a2b-a729-08cf12199947,SESCO,II.1.1,La Pampa,AR-L,annual,2010,gas oil combustion consumption by freight transport,0.039370800000000004,TJ,CH4,3.9,kg/TJ,0.15354612,kg +8e618e43-4cc5-3a2b-a729-08cf12199947,SESCO,II.1.1,La Pampa,AR-L,annual,2010,gas oil combustion consumption by freight transport,0.039370800000000004,TJ,N2O,3.9,kg/TJ,0.15354612,kg +6c7a3f71-3c27-349e-97b9-369495f0a66e,SESCO,II.1.1,Mendoza,AR-M,annual,2010,gas oil combustion consumption by freight transport,345.2436288,TJ,CO2,74100.0,kg/TJ,25582552.89408,kg +046d6032-a900-3b22-8139-410efbe950f4,SESCO,II.1.1,Mendoza,AR-M,annual,2010,gas oil combustion consumption by freight transport,345.2436288,TJ,CH4,3.9,kg/TJ,1346.45015232,kg +046d6032-a900-3b22-8139-410efbe950f4,SESCO,II.1.1,Mendoza,AR-M,annual,2010,gas oil combustion consumption by freight transport,345.2436288,TJ,N2O,3.9,kg/TJ,1346.45015232,kg +0c7df5f2-4cfa-39a2-8dee-bf0374fb9241,SESCO,II.1.1,Misiones,AR-N,annual,2010,gas oil combustion consumption by freight transport,120.2897136,TJ,CO2,74100.0,kg/TJ,8913467.777759999,kg +6d4a5f81-4949-3099-8999-c6ca64723d27,SESCO,II.1.1,Misiones,AR-N,annual,2010,gas oil combustion consumption by freight transport,120.2897136,TJ,CH4,3.9,kg/TJ,469.12988304,kg +6d4a5f81-4949-3099-8999-c6ca64723d27,SESCO,II.1.1,Misiones,AR-N,annual,2010,gas oil combustion consumption by freight transport,120.2897136,TJ,N2O,3.9,kg/TJ,469.12988304,kg +22a8362d-edda-3c67-8717-1a0ecf82a9ed,SESCO,II.1.1,Rio Negro,AR-R,annual,2010,gas oil combustion consumption by freight transport,14.3577,TJ,CO2,74100.0,kg/TJ,1063905.57,kg +0980d985-f46d-311a-8fd4-4656ba0e4af8,SESCO,II.1.1,Rio Negro,AR-R,annual,2010,gas oil combustion consumption by freight transport,14.3577,TJ,CH4,3.9,kg/TJ,55.99503,kg +0980d985-f46d-311a-8fd4-4656ba0e4af8,SESCO,II.1.1,Rio Negro,AR-R,annual,2010,gas oil combustion consumption by freight transport,14.3577,TJ,N2O,3.9,kg/TJ,55.99503,kg +796a70fb-c3ed-3871-9cdf-3be3b6fd1e7a,SESCO,II.1.1,Salta,AR-A,annual,2010,gas oil combustion consumption by freight transport,6.451032,TJ,CO2,74100.0,kg/TJ,478021.47119999997,kg +fa3c8ea2-6bfc-36a7-a670-3c8262a7fa22,SESCO,II.1.1,Salta,AR-A,annual,2010,gas oil combustion consumption by freight transport,6.451032,TJ,CH4,3.9,kg/TJ,25.159024799999997,kg +fa3c8ea2-6bfc-36a7-a670-3c8262a7fa22,SESCO,II.1.1,Salta,AR-A,annual,2010,gas oil combustion consumption by freight transport,6.451032,TJ,N2O,3.9,kg/TJ,25.159024799999997,kg +83ad76bb-c184-3fc1-9408-031d8d9290d6,SESCO,II.1.1,San Juan,AR-J,annual,2010,gas oil combustion consumption by freight transport,18.420477599999998,TJ,CO2,74100.0,kg/TJ,1364957.39016,kg +05a51916-4e36-32e5-bae1-c4d1a1c1f38f,SESCO,II.1.1,San Juan,AR-J,annual,2010,gas oil combustion consumption by freight transport,18.420477599999998,TJ,CH4,3.9,kg/TJ,71.83986263999999,kg +05a51916-4e36-32e5-bae1-c4d1a1c1f38f,SESCO,II.1.1,San Juan,AR-J,annual,2010,gas oil combustion consumption by freight transport,18.420477599999998,TJ,N2O,3.9,kg/TJ,71.83986263999999,kg +e9c91708-c13c-3d29-9c6a-940e3c99ba21,SESCO,II.1.1,San Luis,AR-D,annual,2010,gas oil combustion consumption by freight transport,147.2085048,TJ,CO2,74100.0,kg/TJ,10908150.20568,kg +0a066901-0c2e-34e6-8f6c-34ed82cb0602,SESCO,II.1.1,San Luis,AR-D,annual,2010,gas oil combustion consumption by freight transport,147.2085048,TJ,CH4,3.9,kg/TJ,574.11316872,kg +0a066901-0c2e-34e6-8f6c-34ed82cb0602,SESCO,II.1.1,San Luis,AR-D,annual,2010,gas oil combustion consumption by freight transport,147.2085048,TJ,N2O,3.9,kg/TJ,574.11316872,kg +170e3f79-d5a8-3344-b36c-0c3f76ffb865,SESCO,II.1.1,Santa Fe,AR-S,annual,2010,gas oil combustion consumption by freight transport,1080.7400184,TJ,CO2,74100.0,kg/TJ,80082835.36344,kg +7218e98c-5146-307d-96bb-f17430bb20c3,SESCO,II.1.1,Santa Fe,AR-S,annual,2010,gas oil combustion consumption by freight transport,1080.7400184,TJ,CH4,3.9,kg/TJ,4214.88607176,kg +7218e98c-5146-307d-96bb-f17430bb20c3,SESCO,II.1.1,Santa Fe,AR-S,annual,2010,gas oil combustion consumption by freight transport,1080.7400184,TJ,N2O,3.9,kg/TJ,4214.88607176,kg +4df94e83-e21a-3d6d-becd-3f4e7fda2dba,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2010,gas oil combustion consumption by freight transport,0.429828,TJ,CO2,74100.0,kg/TJ,31850.2548,kg +03f53f40-00c9-3832-9943-3356b95a5898,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2010,gas oil combustion consumption by freight transport,0.429828,TJ,CH4,3.9,kg/TJ,1.6763291999999999,kg +03f53f40-00c9-3832-9943-3356b95a5898,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2010,gas oil combustion consumption by freight transport,0.429828,TJ,N2O,3.9,kg/TJ,1.6763291999999999,kg +82179f9f-9e0b-33c9-b85f-e1756d5bff17,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2010,gas oil combustion consumption by freight transport,39.2378784,TJ,CO2,74100.0,kg/TJ,2907526.78944,kg +d7fa711c-6130-3579-868a-075a061db305,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2010,gas oil combustion consumption by freight transport,39.2378784,TJ,CH4,3.9,kg/TJ,153.02772575999998,kg +d7fa711c-6130-3579-868a-075a061db305,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2010,gas oil combustion consumption by freight transport,39.2378784,TJ,N2O,3.9,kg/TJ,153.02772575999998,kg +7ef65946-4b1a-3cb3-959a-947a2ebfc2ac,SESCO,II.1.1,Tucuman,AR-T,annual,2010,gas oil combustion consumption by freight transport,220.194744,TJ,CO2,74100.0,kg/TJ,16316430.530399999,kg +a737b73b-b9a3-3657-8df5-269f21dc1888,SESCO,II.1.1,Tucuman,AR-T,annual,2010,gas oil combustion consumption by freight transport,220.194744,TJ,CH4,3.9,kg/TJ,858.7595015999999,kg +a737b73b-b9a3-3657-8df5-269f21dc1888,SESCO,II.1.1,Tucuman,AR-T,annual,2010,gas oil combustion consumption by freight transport,220.194744,TJ,N2O,3.9,kg/TJ,858.7595015999999,kg +df4f5eb5-5f19-30bb-b9c5-1b8d8f4d8f1e,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,gas oil combustion consumption by freight transport,25.457375999999996,TJ,CO2,74100.0,kg/TJ,1886391.5615999997,kg +a27f7fa4-34fa-3e16-a539-b8691708271b,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,gas oil combustion consumption by freight transport,25.457375999999996,TJ,CH4,3.9,kg/TJ,99.28376639999999,kg +a27f7fa4-34fa-3e16-a539-b8691708271b,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,gas oil combustion consumption by freight transport,25.457375999999996,TJ,N2O,3.9,kg/TJ,99.28376639999999,kg +0be3211b-bf98-35a0-b02a-3a7d2a378b10,SESCO,II.1.1,Capital Federal,AR-C,annual,2010,gas oil combustion consumption by freight transport,35.4413052,TJ,CO2,74100.0,kg/TJ,2626200.71532,kg +ff7b877d-5dd6-3f02-9707-82923b823674,SESCO,II.1.1,Capital Federal,AR-C,annual,2010,gas oil combustion consumption by freight transport,35.4413052,TJ,CH4,3.9,kg/TJ,138.22109028,kg +ff7b877d-5dd6-3f02-9707-82923b823674,SESCO,II.1.1,Capital Federal,AR-C,annual,2010,gas oil combustion consumption by freight transport,35.4413052,TJ,N2O,3.9,kg/TJ,138.22109028,kg +150956d0-5fae-3f2e-9dfb-85a653f98cd7,SESCO,II.1.1,Chaco,AR-H,annual,2010,gas oil combustion consumption by freight transport,0.47570039999999997,TJ,CO2,74100.0,kg/TJ,35249.399639999996,kg +65eb001c-1dcb-3891-8ce3-5e1fba418ba7,SESCO,II.1.1,Chaco,AR-H,annual,2010,gas oil combustion consumption by freight transport,0.47570039999999997,TJ,CH4,3.9,kg/TJ,1.8552315599999998,kg +65eb001c-1dcb-3891-8ce3-5e1fba418ba7,SESCO,II.1.1,Chaco,AR-H,annual,2010,gas oil combustion consumption by freight transport,0.47570039999999997,TJ,N2O,3.9,kg/TJ,1.8552315599999998,kg +2f1daed0-fd06-34bc-b799-398f2f42fc83,SESCO,II.1.1,Chubut,AR-U,annual,2010,gas oil combustion consumption by freight transport,0.07187879999999999,TJ,CO2,74100.0,kg/TJ,5326.21908,kg +8f884638-d28d-3888-b453-97e62bd198cc,SESCO,II.1.1,Chubut,AR-U,annual,2010,gas oil combustion consumption by freight transport,0.07187879999999999,TJ,CH4,3.9,kg/TJ,0.28032732,kg +8f884638-d28d-3888-b453-97e62bd198cc,SESCO,II.1.1,Chubut,AR-U,annual,2010,gas oil combustion consumption by freight transport,0.07187879999999999,TJ,N2O,3.9,kg/TJ,0.28032732,kg +a6c2c93d-0178-3683-9a3d-5eb1f7ee7c6c,SESCO,II.1.1,Corrientes,AR-W,annual,2010,gas oil combustion consumption by freight transport,2.318904,TJ,CO2,74100.0,kg/TJ,171830.78639999998,kg +cf49962d-8909-352d-9464-b16ee428c704,SESCO,II.1.1,Corrientes,AR-W,annual,2010,gas oil combustion consumption by freight transport,2.318904,TJ,CH4,3.9,kg/TJ,9.043725599999998,kg +cf49962d-8909-352d-9464-b16ee428c704,SESCO,II.1.1,Corrientes,AR-W,annual,2010,gas oil combustion consumption by freight transport,2.318904,TJ,N2O,3.9,kg/TJ,9.043725599999998,kg +6cae47d2-ca8e-3b2d-82b7-d3fd87ef6769,SESCO,II.1.1,Córdoba,AR-X,annual,2010,gas oil combustion consumption by freight transport,2.8675668,TJ,CO2,74100.0,kg/TJ,212486.69988,kg +351de90b-4efb-3eac-a9c6-d0175590edea,SESCO,II.1.1,Córdoba,AR-X,annual,2010,gas oil combustion consumption by freight transport,2.8675668,TJ,CH4,3.9,kg/TJ,11.18351052,kg +351de90b-4efb-3eac-a9c6-d0175590edea,SESCO,II.1.1,Córdoba,AR-X,annual,2010,gas oil combustion consumption by freight transport,2.8675668,TJ,N2O,3.9,kg/TJ,11.18351052,kg +53a0dc4a-1b1d-3fad-bf8e-c9db7a84c430,SESCO,II.1.1,Entre Rios,AR-E,annual,2010,gas oil combustion consumption by freight transport,7.6942824,TJ,CO2,74100.0,kg/TJ,570146.32584,kg +baf4034c-2262-31e6-a202-5694d436b92f,SESCO,II.1.1,Entre Rios,AR-E,annual,2010,gas oil combustion consumption by freight transport,7.6942824,TJ,CH4,3.9,kg/TJ,30.00770136,kg +baf4034c-2262-31e6-a202-5694d436b92f,SESCO,II.1.1,Entre Rios,AR-E,annual,2010,gas oil combustion consumption by freight transport,7.6942824,TJ,N2O,3.9,kg/TJ,30.00770136,kg +0e460e00-d5b5-3dd2-86f5-0bd6b6832600,SESCO,II.1.1,Mendoza,AR-M,annual,2010,gas oil combustion consumption by freight transport,1.3151292,TJ,CO2,74100.0,kg/TJ,97451.07372000001,kg +40c9a18b-f3c2-3392-bc3c-dbff7d0cd0a5,SESCO,II.1.1,Mendoza,AR-M,annual,2010,gas oil combustion consumption by freight transport,1.3151292,TJ,CH4,3.9,kg/TJ,5.12900388,kg +40c9a18b-f3c2-3392-bc3c-dbff7d0cd0a5,SESCO,II.1.1,Mendoza,AR-M,annual,2010,gas oil combustion consumption by freight transport,1.3151292,TJ,N2O,3.9,kg/TJ,5.12900388,kg +61278244-a35b-314f-9d36-16ba04efed55,SESCO,II.1.1,Misiones,AR-N,annual,2010,gas oil combustion consumption by freight transport,1.6821084,TJ,CO2,74100.0,kg/TJ,124644.23243999999,kg +81d8e281-e786-3b99-944f-a895a7686da8,SESCO,II.1.1,Misiones,AR-N,annual,2010,gas oil combustion consumption by freight transport,1.6821084,TJ,CH4,3.9,kg/TJ,6.560222759999999,kg +81d8e281-e786-3b99-944f-a895a7686da8,SESCO,II.1.1,Misiones,AR-N,annual,2010,gas oil combustion consumption by freight transport,1.6821084,TJ,N2O,3.9,kg/TJ,6.560222759999999,kg +3cdc43ab-ce2d-3113-bf34-90c96d953856,SESCO,II.1.1,Rio Negro,AR-R,annual,2010,gas oil combustion consumption by freight transport,0.3734808,TJ,CO2,74100.0,kg/TJ,27674.92728,kg +72ea5e8c-4552-3e11-8460-5950689c7c08,SESCO,II.1.1,Rio Negro,AR-R,annual,2010,gas oil combustion consumption by freight transport,0.3734808,TJ,CH4,3.9,kg/TJ,1.45657512,kg +72ea5e8c-4552-3e11-8460-5950689c7c08,SESCO,II.1.1,Rio Negro,AR-R,annual,2010,gas oil combustion consumption by freight transport,0.3734808,TJ,N2O,3.9,kg/TJ,1.45657512,kg +3dc7ce06-a35b-3bad-9481-9410078d6a33,SESCO,II.1.1,Salta,AR-A,annual,2010,gas oil combustion consumption by freight transport,0.016253999999999998,TJ,CO2,74100.0,kg/TJ,1204.4213999999997,kg +11b174e1-94b6-3283-a480-d4d7ab174fce,SESCO,II.1.1,Salta,AR-A,annual,2010,gas oil combustion consumption by freight transport,0.016253999999999998,TJ,CH4,3.9,kg/TJ,0.06339059999999999,kg +11b174e1-94b6-3283-a480-d4d7ab174fce,SESCO,II.1.1,Salta,AR-A,annual,2010,gas oil combustion consumption by freight transport,0.016253999999999998,TJ,N2O,3.9,kg/TJ,0.06339059999999999,kg +cfa44bbc-8f01-3c24-a8d7-a96719cd1a7e,SESCO,II.1.1,San Juan,AR-J,annual,2010,gas oil combustion consumption by freight transport,0.0989688,TJ,CO2,74100.0,kg/TJ,7333.5880799999995,kg +09233483-0b94-3f43-a6a8-2552581bc768,SESCO,II.1.1,San Juan,AR-J,annual,2010,gas oil combustion consumption by freight transport,0.0989688,TJ,CH4,3.9,kg/TJ,0.38597832,kg +09233483-0b94-3f43-a6a8-2552581bc768,SESCO,II.1.1,San Juan,AR-J,annual,2010,gas oil combustion consumption by freight transport,0.0989688,TJ,N2O,3.9,kg/TJ,0.38597832,kg +5e3effd7-e345-3900-963b-fb14835861f4,SESCO,II.1.1,San Luis,AR-D,annual,2010,gas oil combustion consumption by freight transport,0.6913368,TJ,CO2,74100.0,kg/TJ,51228.05688,kg +e22337c7-4df9-38c3-a202-d50db0368c67,SESCO,II.1.1,San Luis,AR-D,annual,2010,gas oil combustion consumption by freight transport,0.6913368,TJ,CH4,3.9,kg/TJ,2.6962135199999997,kg +e22337c7-4df9-38c3-a202-d50db0368c67,SESCO,II.1.1,San Luis,AR-D,annual,2010,gas oil combustion consumption by freight transport,0.6913368,TJ,N2O,3.9,kg/TJ,2.6962135199999997,kg +053d56a7-6d71-3c75-920d-84e19dd17fa7,SESCO,II.1.1,Santa Fe,AR-S,annual,2010,gas oil combustion consumption by freight transport,4.2083412,TJ,CO2,74100.0,kg/TJ,311838.08291999996,kg +a6fe05e6-0e74-33c8-bcc0-095ec572d454,SESCO,II.1.1,Santa Fe,AR-S,annual,2010,gas oil combustion consumption by freight transport,4.2083412,TJ,CH4,3.9,kg/TJ,16.412530679999996,kg +a6fe05e6-0e74-33c8-bcc0-095ec572d454,SESCO,II.1.1,Santa Fe,AR-S,annual,2010,gas oil combustion consumption by freight transport,4.2083412,TJ,N2O,3.9,kg/TJ,16.412530679999996,kg +c2a5c162-ce1c-3507-9915-707cf21b44fb,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2010,gas oil combustion consumption by freight transport,0.0278124,TJ,CO2,74100.0,kg/TJ,2060.8988400000003,kg +f443b69e-e7ce-3cff-9323-f202a25a8b7b,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2010,gas oil combustion consumption by freight transport,0.0278124,TJ,CH4,3.9,kg/TJ,0.10846836,kg +f443b69e-e7ce-3cff-9323-f202a25a8b7b,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2010,gas oil combustion consumption by freight transport,0.0278124,TJ,N2O,3.9,kg/TJ,0.10846836,kg +7ad1c363-e0aa-3ce1-9c87-e3e4f37e0b22,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2010,gas oil combustion consumption by freight transport,0.8080043999999998,TJ,CO2,74100.0,kg/TJ,59873.12603999999,kg +241d4499-f5ab-3edf-9f62-4b313f927015,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2010,gas oil combustion consumption by freight transport,0.8080043999999998,TJ,CH4,3.9,kg/TJ,3.1512171599999994,kg +241d4499-f5ab-3edf-9f62-4b313f927015,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2010,gas oil combustion consumption by freight transport,0.8080043999999998,TJ,N2O,3.9,kg/TJ,3.1512171599999994,kg +0b7d48d3-2807-3bc5-bfa7-956d2bb0fb3f,SESCO,II.1.1,Tucuman,AR-T,annual,2010,gas oil combustion consumption by freight transport,0.6053711999999999,TJ,CO2,74100.0,kg/TJ,44858.00591999999,kg +5714fd42-3be8-30e6-b54f-15d3e4aac801,SESCO,II.1.1,Tucuman,AR-T,annual,2010,gas oil combustion consumption by freight transport,0.6053711999999999,TJ,CH4,3.9,kg/TJ,2.3609476799999993,kg +5714fd42-3be8-30e6-b54f-15d3e4aac801,SESCO,II.1.1,Tucuman,AR-T,annual,2010,gas oil combustion consumption by freight transport,0.6053711999999999,TJ,N2O,3.9,kg/TJ,2.3609476799999993,kg +5db89216-cc97-37c9-b69b-a31176295ad3,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,jet kerosene combustion consumption by public passenger transport,682.1652452,TJ,CO2,71500.0,kg/TJ,48774815.031799994,kg +03303326-f2db-368d-95e2-7133c8bada46,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,jet kerosene combustion consumption by public passenger transport,682.1652452,TJ,CH4,0.5,kg/TJ,341.0826226,kg +14548e30-1b1d-3d0a-ae7e-5b5e2e3b2dde,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,jet kerosene combustion consumption by public passenger transport,682.1652452,TJ,N2O,2.0,kg/TJ,1364.3304904,kg +6aa3a134-e7cc-33e6-be7f-9e657a09f2a4,SESCO,II.1.1,Capital Federal,AR-C,annual,2010,jet kerosene combustion consumption by public passenger transport,119.32324609999998,TJ,CO2,71500.0,kg/TJ,8531612.096149998,kg +83508d9c-162e-389a-939c-e2684efe9e1f,SESCO,II.1.1,Capital Federal,AR-C,annual,2010,jet kerosene combustion consumption by public passenger transport,119.32324609999998,TJ,CH4,0.5,kg/TJ,59.66162304999999,kg +da131592-c364-3e9c-bbc6-7dbb1515f4b0,SESCO,II.1.1,Capital Federal,AR-C,annual,2010,jet kerosene combustion consumption by public passenger transport,119.32324609999998,TJ,N2O,2.0,kg/TJ,238.64649219999995,kg +0b265d5e-836f-33b5-96df-ec47fae027d5,SESCO,II.1.1,Córdoba,AR-X,annual,2010,jet kerosene combustion consumption by public passenger transport,21.3282793,TJ,CO2,71500.0,kg/TJ,1524971.9699499998,kg +6b9886d1-aa4b-3bd2-8d59-f74b0184ca44,SESCO,II.1.1,Córdoba,AR-X,annual,2010,jet kerosene combustion consumption by public passenger transport,21.3282793,TJ,CH4,0.5,kg/TJ,10.66413965,kg +8e466c14-e9c0-369a-8740-6cb425aa93ce,SESCO,II.1.1,Córdoba,AR-X,annual,2010,jet kerosene combustion consumption by public passenger transport,21.3282793,TJ,N2O,2.0,kg/TJ,42.6565586,kg +5a0f37ca-3522-32e4-971d-8b599c7cb0a2,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,gas oil combustion consumption by public passenger transport,1015.5936251999999,TJ,CO2,74100.0,kg/TJ,75255487.62731999,kg +d04b0b00-5689-3532-98ce-6527c497a7c1,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,gas oil combustion consumption by public passenger transport,1015.5936251999999,TJ,CH4,3.9,kg/TJ,3960.8151382799997,kg +d04b0b00-5689-3532-98ce-6527c497a7c1,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,gas oil combustion consumption by public passenger transport,1015.5936251999999,TJ,N2O,3.9,kg/TJ,3960.8151382799997,kg +d6788c03-79f2-382b-b2db-0c8f475fa918,SESCO,II.1.1,Capital Federal,AR-C,annual,2010,gas oil combustion consumption by public passenger transport,823.6680186,TJ,CO2,74100.0,kg/TJ,61033800.17826,kg +d8fc04ea-d950-3a5a-a573-58420c63802a,SESCO,II.1.1,Capital Federal,AR-C,annual,2010,gas oil combustion consumption by public passenger transport,823.6680186,TJ,CH4,3.9,kg/TJ,3212.30527254,kg +d8fc04ea-d950-3a5a-a573-58420c63802a,SESCO,II.1.1,Capital Federal,AR-C,annual,2010,gas oil combustion consumption by public passenger transport,823.6680186,TJ,N2O,3.9,kg/TJ,3212.30527254,kg +bb1a299e-fb35-3075-9e14-94cd8925557f,SESCO,II.1.1,Catamarca,AR-K,annual,2010,gas oil combustion consumption by public passenger transport,7.245672,TJ,CO2,74100.0,kg/TJ,536904.2951999999,kg +01cfeb2e-0fbe-399b-bca6-1dd641d46a4a,SESCO,II.1.1,Catamarca,AR-K,annual,2010,gas oil combustion consumption by public passenger transport,7.245672,TJ,CH4,3.9,kg/TJ,28.2581208,kg +01cfeb2e-0fbe-399b-bca6-1dd641d46a4a,SESCO,II.1.1,Catamarca,AR-K,annual,2010,gas oil combustion consumption by public passenger transport,7.245672,TJ,N2O,3.9,kg/TJ,28.2581208,kg +a0d6a0b0-9032-3b3a-8315-96cbb4af1371,SESCO,II.1.1,Chubut,AR-U,annual,2010,gas oil combustion consumption by public passenger transport,252.12157319999997,TJ,CO2,74100.0,kg/TJ,18682208.574119996,kg +5b9a19e8-6ae3-36ee-a914-e92464e742f9,SESCO,II.1.1,Chubut,AR-U,annual,2010,gas oil combustion consumption by public passenger transport,252.12157319999997,TJ,CH4,3.9,kg/TJ,983.2741354799998,kg +5b9a19e8-6ae3-36ee-a914-e92464e742f9,SESCO,II.1.1,Chubut,AR-U,annual,2010,gas oil combustion consumption by public passenger transport,252.12157319999997,TJ,N2O,3.9,kg/TJ,983.2741354799998,kg +592b9061-6745-330d-9708-afe692c06be3,SESCO,II.1.1,Córdoba,AR-X,annual,2010,gas oil combustion consumption by public passenger transport,21.5405232,TJ,CO2,74100.0,kg/TJ,1596152.7691199998,kg +5c0392e5-4bad-38a2-bb9c-4f12cb713b2e,SESCO,II.1.1,Córdoba,AR-X,annual,2010,gas oil combustion consumption by public passenger transport,21.5405232,TJ,CH4,3.9,kg/TJ,84.00804047999999,kg +5c0392e5-4bad-38a2-bb9c-4f12cb713b2e,SESCO,II.1.1,Córdoba,AR-X,annual,2010,gas oil combustion consumption by public passenger transport,21.5405232,TJ,N2O,3.9,kg/TJ,84.00804047999999,kg +78a001f0-edfb-316d-8c22-f442aa295630,SESCO,II.1.1,Entre Rios,AR-E,annual,2010,gas oil combustion consumption by public passenger transport,204.067164,TJ,CO2,74100.0,kg/TJ,15121376.8524,kg +eba6b6ee-9102-30ad-985f-9f1ea6516e3f,SESCO,II.1.1,Entre Rios,AR-E,annual,2010,gas oil combustion consumption by public passenger transport,204.067164,TJ,CH4,3.9,kg/TJ,795.8619395999999,kg +eba6b6ee-9102-30ad-985f-9f1ea6516e3f,SESCO,II.1.1,Entre Rios,AR-E,annual,2010,gas oil combustion consumption by public passenger transport,204.067164,TJ,N2O,3.9,kg/TJ,795.8619395999999,kg +64403689-251a-3405-af52-924b06434f0b,SESCO,II.1.1,La Pampa,AR-L,annual,2010,gas oil combustion consumption by public passenger transport,69.980694,TJ,CO2,74100.0,kg/TJ,5185569.4254,kg +db4df392-23b1-3c5e-a710-088f87b17782,SESCO,II.1.1,La Pampa,AR-L,annual,2010,gas oil combustion consumption by public passenger transport,69.980694,TJ,CH4,3.9,kg/TJ,272.9247066,kg +db4df392-23b1-3c5e-a710-088f87b17782,SESCO,II.1.1,La Pampa,AR-L,annual,2010,gas oil combustion consumption by public passenger transport,69.980694,TJ,N2O,3.9,kg/TJ,272.9247066,kg +4d2f6404-af03-3ae1-9d68-5f6ca0c684af,SESCO,II.1.1,Mendoza,AR-M,annual,2010,gas oil combustion consumption by public passenger transport,91.46884320000001,TJ,CO2,74100.0,kg/TJ,6777841.28112,kg +7e3222de-c157-3847-a093-9a2f0e5d2d4a,SESCO,II.1.1,Mendoza,AR-M,annual,2010,gas oil combustion consumption by public passenger transport,91.46884320000001,TJ,CH4,3.9,kg/TJ,356.72848848,kg +7e3222de-c157-3847-a093-9a2f0e5d2d4a,SESCO,II.1.1,Mendoza,AR-M,annual,2010,gas oil combustion consumption by public passenger transport,91.46884320000001,TJ,N2O,3.9,kg/TJ,356.72848848,kg +0d158071-baf3-3642-ba3e-82dd6ad938a9,SESCO,II.1.1,Misiones,AR-N,annual,2010,gas oil combustion consumption by public passenger transport,474.0583848,TJ,CO2,74100.0,kg/TJ,35127726.31368,kg +6e80d24b-d25c-3d0b-854d-9e6d95d803d1,SESCO,II.1.1,Misiones,AR-N,annual,2010,gas oil combustion consumption by public passenger transport,474.0583848,TJ,CH4,3.9,kg/TJ,1848.82770072,kg +6e80d24b-d25c-3d0b-854d-9e6d95d803d1,SESCO,II.1.1,Misiones,AR-N,annual,2010,gas oil combustion consumption by public passenger transport,474.0583848,TJ,N2O,3.9,kg/TJ,1848.82770072,kg +df010449-abc5-3a30-b860-ebde6123acfb,SESCO,II.1.1,Neuquén,AR-Q,annual,2010,gas oil combustion consumption by public passenger transport,38.2832268,TJ,CO2,74100.0,kg/TJ,2836787.10588,kg +27b8d4d8-e58c-359c-8efe-c7e6a6fe37d4,SESCO,II.1.1,Neuquén,AR-Q,annual,2010,gas oil combustion consumption by public passenger transport,38.2832268,TJ,CH4,3.9,kg/TJ,149.30458452,kg +27b8d4d8-e58c-359c-8efe-c7e6a6fe37d4,SESCO,II.1.1,Neuquén,AR-Q,annual,2010,gas oil combustion consumption by public passenger transport,38.2832268,TJ,N2O,3.9,kg/TJ,149.30458452,kg +ca602253-38dd-341d-ac2b-6cc6d0a7c439,SESCO,II.1.1,Rio Negro,AR-R,annual,2010,gas oil combustion consumption by public passenger transport,165.220104,TJ,CO2,74100.0,kg/TJ,12242809.7064,kg +b3bf2a01-836c-3614-b37c-b2a492f11f85,SESCO,II.1.1,Rio Negro,AR-R,annual,2010,gas oil combustion consumption by public passenger transport,165.220104,TJ,CH4,3.9,kg/TJ,644.3584056,kg +b3bf2a01-836c-3614-b37c-b2a492f11f85,SESCO,II.1.1,Rio Negro,AR-R,annual,2010,gas oil combustion consumption by public passenger transport,165.220104,TJ,N2O,3.9,kg/TJ,644.3584056,kg +3cd035f9-6b9d-3068-841e-6a85e4aa4aef,SESCO,II.1.1,Salta,AR-A,annual,2010,gas oil combustion consumption by public passenger transport,8.26245,TJ,CO2,74100.0,kg/TJ,612247.5449999999,kg +a9781d2d-c1a6-3aeb-adf3-06076c79bbd3,SESCO,II.1.1,Salta,AR-A,annual,2010,gas oil combustion consumption by public passenger transport,8.26245,TJ,CH4,3.9,kg/TJ,32.223555,kg +a9781d2d-c1a6-3aeb-adf3-06076c79bbd3,SESCO,II.1.1,Salta,AR-A,annual,2010,gas oil combustion consumption by public passenger transport,8.26245,TJ,N2O,3.9,kg/TJ,32.223555,kg +5b9807be-1223-3618-a5d9-d6fa223d48ff,SESCO,II.1.1,San Juan,AR-J,annual,2010,gas oil combustion consumption by public passenger transport,5.1918888,TJ,CO2,74100.0,kg/TJ,384718.96008,kg +fa087c42-5b35-3ef2-8823-6ef4bfb58446,SESCO,II.1.1,San Juan,AR-J,annual,2010,gas oil combustion consumption by public passenger transport,5.1918888,TJ,CH4,3.9,kg/TJ,20.24836632,kg +fa087c42-5b35-3ef2-8823-6ef4bfb58446,SESCO,II.1.1,San Juan,AR-J,annual,2010,gas oil combustion consumption by public passenger transport,5.1918888,TJ,N2O,3.9,kg/TJ,20.24836632,kg +8c75e835-d07d-3356-9366-a82bb23d5144,SESCO,II.1.1,San Luis,AR-D,annual,2010,gas oil combustion consumption by public passenger transport,21.702702000000002,TJ,CO2,74100.0,kg/TJ,1608170.2182000002,kg +df32b444-58d1-3abc-8747-9607e3cd9e90,SESCO,II.1.1,San Luis,AR-D,annual,2010,gas oil combustion consumption by public passenger transport,21.702702000000002,TJ,CH4,3.9,kg/TJ,84.6405378,kg +df32b444-58d1-3abc-8747-9607e3cd9e90,SESCO,II.1.1,San Luis,AR-D,annual,2010,gas oil combustion consumption by public passenger transport,21.702702000000002,TJ,N2O,3.9,kg/TJ,84.6405378,kg +3d9c2e86-302e-31ed-95ae-e96006ae46ca,SESCO,II.1.1,Santa Fe,AR-S,annual,2010,gas oil combustion consumption by public passenger transport,107.4006528,TJ,CO2,74100.0,kg/TJ,7958388.37248,kg +cc790e98-d9c2-33a0-99a8-3c9413a519fe,SESCO,II.1.1,Santa Fe,AR-S,annual,2010,gas oil combustion consumption by public passenger transport,107.4006528,TJ,CH4,3.9,kg/TJ,418.86254592,kg +cc790e98-d9c2-33a0-99a8-3c9413a519fe,SESCO,II.1.1,Santa Fe,AR-S,annual,2010,gas oil combustion consumption by public passenger transport,107.4006528,TJ,N2O,3.9,kg/TJ,418.86254592,kg +026b8ee1-5b76-380a-adae-60abc0566ccd,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2010,gas oil combustion consumption by public passenger transport,7.192936799999999,TJ,CO2,74100.0,kg/TJ,532996.61688,kg +fd401a08-6b98-3833-aaf9-ec18d14f67c8,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2010,gas oil combustion consumption by public passenger transport,7.192936799999999,TJ,CH4,3.9,kg/TJ,28.052453519999997,kg +fd401a08-6b98-3833-aaf9-ec18d14f67c8,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2010,gas oil combustion consumption by public passenger transport,7.192936799999999,TJ,N2O,3.9,kg/TJ,28.052453519999997,kg +6b0893bc-9cb0-317f-9003-61f15f70a26b,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,gas oil combustion consumption by public passenger transport,12.9822504,TJ,CO2,74100.0,kg/TJ,961984.7546399999,kg +a06cbcdf-5ed4-3b5d-86cd-d0f01d33a0f7,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,gas oil combustion consumption by public passenger transport,12.9822504,TJ,CH4,3.9,kg/TJ,50.63077656,kg +a06cbcdf-5ed4-3b5d-86cd-d0f01d33a0f7,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,gas oil combustion consumption by public passenger transport,12.9822504,TJ,N2O,3.9,kg/TJ,50.63077656,kg +bdf5097e-a1b9-3aac-b623-3453602b1182,SESCO,II.1.1,Capital Federal,AR-C,annual,2010,gas oil combustion consumption by public passenger transport,16.2167964,TJ,CO2,74100.0,kg/TJ,1201664.61324,kg +1ac768a1-23ec-3c7b-bc9e-ed82e6efa1fb,SESCO,II.1.1,Capital Federal,AR-C,annual,2010,gas oil combustion consumption by public passenger transport,16.2167964,TJ,CH4,3.9,kg/TJ,63.245505959999996,kg +1ac768a1-23ec-3c7b-bc9e-ed82e6efa1fb,SESCO,II.1.1,Capital Federal,AR-C,annual,2010,gas oil combustion consumption by public passenger transport,16.2167964,TJ,N2O,3.9,kg/TJ,63.245505959999996,kg +971323dd-9b0f-3715-a209-049ab56965cb,SESCO,II.1.1,Córdoba,AR-X,annual,2010,gas oil combustion consumption by public passenger transport,0.049484400000000005,TJ,CO2,74100.0,kg/TJ,3666.79404,kg +99282454-b725-39d2-80a6-423ba6c1fcea,SESCO,II.1.1,Córdoba,AR-X,annual,2010,gas oil combustion consumption by public passenger transport,0.049484400000000005,TJ,CH4,3.9,kg/TJ,0.19298916000000002,kg +99282454-b725-39d2-80a6-423ba6c1fcea,SESCO,II.1.1,Córdoba,AR-X,annual,2010,gas oil combustion consumption by public passenger transport,0.049484400000000005,TJ,N2O,3.9,kg/TJ,0.19298916000000002,kg +e6b52afe-3188-3b24-afcb-ea3dade12d70,SESCO,II.1.1,Entre Rios,AR-E,annual,2010,gas oil combustion consumption by public passenger transport,7.971684,TJ,CO2,74100.0,kg/TJ,590701.7844,kg +73d8843a-2fc6-3f99-92b6-3226ef300731,SESCO,II.1.1,Entre Rios,AR-E,annual,2010,gas oil combustion consumption by public passenger transport,7.971684,TJ,CH4,3.9,kg/TJ,31.0895676,kg +73d8843a-2fc6-3f99-92b6-3226ef300731,SESCO,II.1.1,Entre Rios,AR-E,annual,2010,gas oil combustion consumption by public passenger transport,7.971684,TJ,N2O,3.9,kg/TJ,31.0895676,kg +6663f9fd-5f50-327a-a843-088076ae48e4,SESCO,II.1.1,Misiones,AR-N,annual,2010,gas oil combustion consumption by public passenger transport,8.0128608,TJ,CO2,74100.0,kg/TJ,593752.98528,kg +b35c31cc-54e1-34de-ab28-904870238599,SESCO,II.1.1,Misiones,AR-N,annual,2010,gas oil combustion consumption by public passenger transport,8.0128608,TJ,CH4,3.9,kg/TJ,31.25015712,kg +b35c31cc-54e1-34de-ab28-904870238599,SESCO,II.1.1,Misiones,AR-N,annual,2010,gas oil combustion consumption by public passenger transport,8.0128608,TJ,N2O,3.9,kg/TJ,31.25015712,kg +05191746-72a9-3d9c-9e3c-7de4638aea2d,SESCO,II.1.1,Neuquén,AR-Q,annual,2010,gas oil combustion consumption by public passenger transport,0.36156119999999997,TJ,CO2,74100.0,kg/TJ,26791.68492,kg +210a406e-dd46-35c5-8f76-378949f715c4,SESCO,II.1.1,Neuquén,AR-Q,annual,2010,gas oil combustion consumption by public passenger transport,0.36156119999999997,TJ,CH4,3.9,kg/TJ,1.4100886799999999,kg +210a406e-dd46-35c5-8f76-378949f715c4,SESCO,II.1.1,Neuquén,AR-Q,annual,2010,gas oil combustion consumption by public passenger transport,0.36156119999999997,TJ,N2O,3.9,kg/TJ,1.4100886799999999,kg +f23e4162-c420-312b-b8d7-995d25a9787e,SESCO,II.1.1,Salta,AR-A,annual,2010,gas oil combustion consumption by public passenger transport,0.0140868,TJ,CO2,74100.0,kg/TJ,1043.83188,kg +abfd8d0d-095e-3077-aa05-a17df3ce9a90,SESCO,II.1.1,Salta,AR-A,annual,2010,gas oil combustion consumption by public passenger transport,0.0140868,TJ,CH4,3.9,kg/TJ,0.05493852,kg +abfd8d0d-095e-3077-aa05-a17df3ce9a90,SESCO,II.1.1,Salta,AR-A,annual,2010,gas oil combustion consumption by public passenger transport,0.0140868,TJ,N2O,3.9,kg/TJ,0.05493852,kg +264a8aca-545d-39df-99c4-523c64639823,SESCO,II.1.1,San Luis,AR-D,annual,2010,gas oil combustion consumption by public passenger transport,0.006140400000000001,TJ,CO2,74100.0,kg/TJ,455.0036400000001,kg +1aa73750-6eaa-325c-b62f-1650302e8479,SESCO,II.1.1,San Luis,AR-D,annual,2010,gas oil combustion consumption by public passenger transport,0.006140400000000001,TJ,CH4,3.9,kg/TJ,0.023947560000000003,kg +1aa73750-6eaa-325c-b62f-1650302e8479,SESCO,II.1.1,San Luis,AR-D,annual,2010,gas oil combustion consumption by public passenger transport,0.006140400000000001,TJ,N2O,3.9,kg/TJ,0.023947560000000003,kg +74836ac1-c239-3eff-a5be-faf50f7a7d53,SESCO,II.1.1,Santa Fe,AR-S,annual,2010,gas oil combustion consumption by public passenger transport,0.0155316,TJ,CO2,74100.0,kg/TJ,1150.89156,kg +6b097977-468a-3115-bdbf-c6db6692abb8,SESCO,II.1.1,Santa Fe,AR-S,annual,2010,gas oil combustion consumption by public passenger transport,0.0155316,TJ,CH4,3.9,kg/TJ,0.06057324,kg +6b097977-468a-3115-bdbf-c6db6692abb8,SESCO,II.1.1,Santa Fe,AR-S,annual,2010,gas oil combustion consumption by public passenger transport,0.0155316,TJ,N2O,3.9,kg/TJ,0.06057324,kg +82efda5c-76bd-3d49-8630-1a698b6aa470,SESCO,II.5.1,Buenos Aires,AR-B,annual,2010,gasoline combustion consumption by agriculture machines,1.16952,TJ,CO2,69300.0,kg/TJ,81047.73599999999,kg +f77c4cb3-2acc-3846-8997-7ebf1cbdfb03,SESCO,II.5.1,Buenos Aires,AR-B,annual,2010,gasoline combustion consumption by agriculture machines,1.16952,TJ,CH4,33.0,kg/TJ,38.594159999999995,kg +23f87942-d89a-3577-a26b-70a32db95f4e,SESCO,II.5.1,Buenos Aires,AR-B,annual,2010,gasoline combustion consumption by agriculture machines,1.16952,TJ,N2O,3.2,kg/TJ,3.742464,kg +15785e0b-18df-3d99-a486-eb18c6a810ae,SESCO,II.5.1,Buenos Aires,AR-B,annual,2010,gas oil combustion consumption by agriculture machines,1281.23877924,TJ,CO2,74100.0,kg/TJ,94939793.541684,kg +0e19ac30-1f5d-330f-b5e1-5ef0b907c215,SESCO,II.5.1,Buenos Aires,AR-B,annual,2010,gas oil combustion consumption by agriculture machines,1281.23877924,TJ,CH4,3.9,kg/TJ,4996.831239036,kg +0e19ac30-1f5d-330f-b5e1-5ef0b907c215,SESCO,II.5.1,Buenos Aires,AR-B,annual,2010,gas oil combustion consumption by agriculture machines,1281.23877924,TJ,N2O,3.9,kg/TJ,4996.831239036,kg +11591787-cc71-3c9e-aab1-64a9964f5856,SESCO,II.5.1,Corrientes,AR-W,annual,2010,gas oil combustion consumption by agriculture machines,37.18322832,TJ,CO2,74100.0,kg/TJ,2755277.218512,kg +103bd715-328a-33a2-8e88-513edfe77101,SESCO,II.5.1,Corrientes,AR-W,annual,2010,gas oil combustion consumption by agriculture machines,37.18322832,TJ,CH4,3.9,kg/TJ,145.01459044799998,kg +103bd715-328a-33a2-8e88-513edfe77101,SESCO,II.5.1,Corrientes,AR-W,annual,2010,gas oil combustion consumption by agriculture machines,37.18322832,TJ,N2O,3.9,kg/TJ,145.01459044799998,kg +aa49b5c0-6a18-3962-991f-1a8dbe3994fe,SESCO,II.5.1,Córdoba,AR-X,annual,2010,gas oil combustion consumption by agriculture machines,669.1155954,TJ,CO2,74100.0,kg/TJ,49581465.61914,kg +f0709788-56b6-302b-957c-d1a642ae62b2,SESCO,II.5.1,Córdoba,AR-X,annual,2010,gas oil combustion consumption by agriculture machines,669.1155954,TJ,CH4,3.9,kg/TJ,2609.55082206,kg +f0709788-56b6-302b-957c-d1a642ae62b2,SESCO,II.5.1,Córdoba,AR-X,annual,2010,gas oil combustion consumption by agriculture machines,669.1155954,TJ,N2O,3.9,kg/TJ,2609.55082206,kg +7bc09a47-3a08-37b5-952d-645acb6767cd,SESCO,II.5.1,Entre Rios,AR-E,annual,2010,gas oil combustion consumption by agriculture machines,573.03599808,TJ,CO2,74100.0,kg/TJ,42461967.457728,kg +d7b0b12f-f127-3761-9993-61669b65ebfd,SESCO,II.5.1,Entre Rios,AR-E,annual,2010,gas oil combustion consumption by agriculture machines,573.03599808,TJ,CH4,3.9,kg/TJ,2234.840392512,kg +d7b0b12f-f127-3761-9993-61669b65ebfd,SESCO,II.5.1,Entre Rios,AR-E,annual,2010,gas oil combustion consumption by agriculture machines,573.03599808,TJ,N2O,3.9,kg/TJ,2234.840392512,kg +a36505e0-1274-3e9a-b0ba-0619fc62d905,SESCO,II.5.1,La Pampa,AR-L,annual,2010,gas oil combustion consumption by agriculture machines,56.799530759999996,TJ,CO2,74100.0,kg/TJ,4208845.229316,kg +22e356da-b1d7-35f4-b40a-3390d3710aa7,SESCO,II.5.1,La Pampa,AR-L,annual,2010,gas oil combustion consumption by agriculture machines,56.799530759999996,TJ,CH4,3.9,kg/TJ,221.51816996399998,kg +22e356da-b1d7-35f4-b40a-3390d3710aa7,SESCO,II.5.1,La Pampa,AR-L,annual,2010,gas oil combustion consumption by agriculture machines,56.799530759999996,TJ,N2O,3.9,kg/TJ,221.51816996399998,kg +8e788e5e-eb76-38c0-a0cf-88212c0c6ce2,SESCO,II.5.1,Neuquén,AR-Q,annual,2010,gas oil combustion consumption by agriculture machines,13.5516822,TJ,CO2,74100.0,kg/TJ,1004179.65102,kg +5d259937-c866-3da7-b8b2-ec0cdd8e2ea7,SESCO,II.5.1,Neuquén,AR-Q,annual,2010,gas oil combustion consumption by agriculture machines,13.5516822,TJ,CH4,3.9,kg/TJ,52.85156058,kg +5d259937-c866-3da7-b8b2-ec0cdd8e2ea7,SESCO,II.5.1,Neuquén,AR-Q,annual,2010,gas oil combustion consumption by agriculture machines,13.5516822,TJ,N2O,3.9,kg/TJ,52.85156058,kg +be23264a-dcd3-3ef2-b62f-5bdc92deb96d,SESCO,II.5.1,Rio Negro,AR-R,annual,2010,gas oil combustion consumption by agriculture machines,3.7399731600000004,TJ,CO2,74100.0,kg/TJ,277132.011156,kg +1e54aed5-a91c-3d8e-ad60-9fc5e5130242,SESCO,II.5.1,Rio Negro,AR-R,annual,2010,gas oil combustion consumption by agriculture machines,3.7399731600000004,TJ,CH4,3.9,kg/TJ,14.585895324,kg +1e54aed5-a91c-3d8e-ad60-9fc5e5130242,SESCO,II.5.1,Rio Negro,AR-R,annual,2010,gas oil combustion consumption by agriculture machines,3.7399731600000004,TJ,N2O,3.9,kg/TJ,14.585895324,kg +81874b0e-54ee-36ac-9c23-3d62b1356c5e,SESCO,II.5.1,Salta,AR-A,annual,2010,gas oil combustion consumption by agriculture machines,294.13209503999997,TJ,CO2,74100.0,kg/TJ,21795188.242464,kg +1a889c96-f58e-37a4-a6d4-f5b99119e58e,SESCO,II.5.1,Salta,AR-A,annual,2010,gas oil combustion consumption by agriculture machines,294.13209503999997,TJ,CH4,3.9,kg/TJ,1147.115170656,kg +1a889c96-f58e-37a4-a6d4-f5b99119e58e,SESCO,II.5.1,Salta,AR-A,annual,2010,gas oil combustion consumption by agriculture machines,294.13209503999997,TJ,N2O,3.9,kg/TJ,1147.115170656,kg +8d57e6b3-50c3-38fb-b28d-542517d3d784,SESCO,II.5.1,San Luis,AR-D,annual,2010,gas oil combustion consumption by agriculture machines,3.65631924,TJ,CO2,74100.0,kg/TJ,270933.25568400003,kg +c239e335-d04a-3eca-b2aa-ea131d710d70,SESCO,II.5.1,San Luis,AR-D,annual,2010,gas oil combustion consumption by agriculture machines,3.65631924,TJ,CH4,3.9,kg/TJ,14.259645036,kg +c239e335-d04a-3eca-b2aa-ea131d710d70,SESCO,II.5.1,San Luis,AR-D,annual,2010,gas oil combustion consumption by agriculture machines,3.65631924,TJ,N2O,3.9,kg/TJ,14.259645036,kg +48d1e07d-cf6f-395e-b236-eabee075d9c9,SESCO,II.5.1,Santa Cruz,AR-Z,annual,2010,gas oil combustion consumption by agriculture machines,1.2311502,TJ,CO2,74100.0,kg/TJ,91228.22982000001,kg +0c7a9023-20f6-3c8c-beb0-333358ef44ea,SESCO,II.5.1,Santa Cruz,AR-Z,annual,2010,gas oil combustion consumption by agriculture machines,1.2311502,TJ,CH4,3.9,kg/TJ,4.80148578,kg +0c7a9023-20f6-3c8c-beb0-333358ef44ea,SESCO,II.5.1,Santa Cruz,AR-Z,annual,2010,gas oil combustion consumption by agriculture machines,1.2311502,TJ,N2O,3.9,kg/TJ,4.80148578,kg +d8adf129-8670-3b37-971b-1d6168270d62,SESCO,II.5.1,Santa Fe,AR-S,annual,2010,gas oil combustion consumption by agriculture machines,340.30208772000003,TJ,CO2,74100.0,kg/TJ,25216384.700052,kg +a575ee17-a4e2-3d66-8524-9ba5c41d9d73,SESCO,II.5.1,Santa Fe,AR-S,annual,2010,gas oil combustion consumption by agriculture machines,340.30208772000003,TJ,CH4,3.9,kg/TJ,1327.1781421080002,kg +a575ee17-a4e2-3d66-8524-9ba5c41d9d73,SESCO,II.5.1,Santa Fe,AR-S,annual,2010,gas oil combustion consumption by agriculture machines,340.30208772000003,TJ,N2O,3.9,kg/TJ,1327.1781421080002,kg +37c7399c-90bf-33c7-8780-cc8205a1ae8c,SESCO,II.5.1,Santiago del Estero,AR-G,annual,2010,gas oil combustion consumption by agriculture machines,549.08916048,TJ,CO2,74100.0,kg/TJ,40687506.791568,kg +0b2aee6f-80ae-3e37-b431-a6641fa5aaa0,SESCO,II.5.1,Santiago del Estero,AR-G,annual,2010,gas oil combustion consumption by agriculture machines,549.08916048,TJ,CH4,3.9,kg/TJ,2141.447725872,kg +0b2aee6f-80ae-3e37-b431-a6641fa5aaa0,SESCO,II.5.1,Santiago del Estero,AR-G,annual,2010,gas oil combustion consumption by agriculture machines,549.08916048,TJ,N2O,3.9,kg/TJ,2141.447725872,kg +cd9b4738-1d55-3393-9be2-b44bd2e3e445,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,gas oil combustion consumption by to the public,15897.257171879999,TJ,CO2,74100.0,kg/TJ,1177986756.436308,kg +a7e981d1-b938-362b-978d-4d66887fc538,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,gas oil combustion consumption by to the public,15897.257171879999,TJ,CH4,3.9,kg/TJ,61999.30297033199,kg +a7e981d1-b938-362b-978d-4d66887fc538,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,gas oil combustion consumption by to the public,15897.257171879999,TJ,N2O,3.9,kg/TJ,61999.30297033199,kg +a294eccb-37a0-3cd6-b60b-b7ba7f007a31,SESCO,II.1.1,Capital Federal,AR-C,annual,2010,gas oil combustion consumption by to the public,1116.22470372,TJ,CO2,74100.0,kg/TJ,82712250.545652,kg +25d0b03b-1b13-3d7f-ab42-9823b9d7b5bb,SESCO,II.1.1,Capital Federal,AR-C,annual,2010,gas oil combustion consumption by to the public,1116.22470372,TJ,CH4,3.9,kg/TJ,4353.276344508,kg +25d0b03b-1b13-3d7f-ab42-9823b9d7b5bb,SESCO,II.1.1,Capital Federal,AR-C,annual,2010,gas oil combustion consumption by to the public,1116.22470372,TJ,N2O,3.9,kg/TJ,4353.276344508,kg +8f17c3f5-d08b-3e14-8080-a65042104b1c,SESCO,II.1.1,Catamarca,AR-K,annual,2010,gas oil combustion consumption by to the public,154.6851642,TJ,CO2,74100.0,kg/TJ,11462170.66722,kg +01990b31-f688-3ebd-801c-8a2e8c3b3825,SESCO,II.1.1,Catamarca,AR-K,annual,2010,gas oil combustion consumption by to the public,154.6851642,TJ,CH4,3.9,kg/TJ,603.27214038,kg +01990b31-f688-3ebd-801c-8a2e8c3b3825,SESCO,II.1.1,Catamarca,AR-K,annual,2010,gas oil combustion consumption by to the public,154.6851642,TJ,N2O,3.9,kg/TJ,603.27214038,kg +e975b0fe-f754-30db-8aa5-78f70d2e763d,SESCO,II.1.1,Chaco,AR-H,annual,2010,gas oil combustion consumption by to the public,640.93354332,TJ,CO2,74100.0,kg/TJ,47493175.560012,kg +e9809e45-7c9e-32d7-88ea-447513bd56b6,SESCO,II.1.1,Chaco,AR-H,annual,2010,gas oil combustion consumption by to the public,640.93354332,TJ,CH4,3.9,kg/TJ,2499.640818948,kg +e9809e45-7c9e-32d7-88ea-447513bd56b6,SESCO,II.1.1,Chaco,AR-H,annual,2010,gas oil combustion consumption by to the public,640.93354332,TJ,N2O,3.9,kg/TJ,2499.640818948,kg +2e6ee8d5-f262-354d-a844-d2a63bbeec34,SESCO,II.1.1,Chubut,AR-U,annual,2010,gas oil combustion consumption by to the public,1622.6415878399998,TJ,CO2,74100.0,kg/TJ,120237741.65894398,kg +7154bf5b-3357-36a1-b14f-484408aa8625,SESCO,II.1.1,Chubut,AR-U,annual,2010,gas oil combustion consumption by to the public,1622.6415878399998,TJ,CH4,3.9,kg/TJ,6328.3021925759995,kg +7154bf5b-3357-36a1-b14f-484408aa8625,SESCO,II.1.1,Chubut,AR-U,annual,2010,gas oil combustion consumption by to the public,1622.6415878399998,TJ,N2O,3.9,kg/TJ,6328.3021925759995,kg +c91b8a3e-acfa-3e8a-a3bf-cd530b435352,SESCO,II.1.1,Corrientes,AR-W,annual,2010,gas oil combustion consumption by to the public,1243.53116076,TJ,CO2,74100.0,kg/TJ,92145659.01231599,kg +827e43ee-35c6-3bf6-b475-d33e233d50ac,SESCO,II.1.1,Corrientes,AR-W,annual,2010,gas oil combustion consumption by to the public,1243.53116076,TJ,CH4,3.9,kg/TJ,4849.771526963999,kg +827e43ee-35c6-3bf6-b475-d33e233d50ac,SESCO,II.1.1,Corrientes,AR-W,annual,2010,gas oil combustion consumption by to the public,1243.53116076,TJ,N2O,3.9,kg/TJ,4849.771526963999,kg +2f5057ce-caa7-3b73-8fe1-1b0f6f008321,SESCO,II.1.1,Córdoba,AR-X,annual,2010,gas oil combustion consumption by to the public,3902.444532,TJ,CO2,74100.0,kg/TJ,289171139.8212,kg +4cc81132-ec18-370c-b8eb-f3cd0f382d9d,SESCO,II.1.1,Córdoba,AR-X,annual,2010,gas oil combustion consumption by to the public,3902.444532,TJ,CH4,3.9,kg/TJ,15219.533674799999,kg +4cc81132-ec18-370c-b8eb-f3cd0f382d9d,SESCO,II.1.1,Córdoba,AR-X,annual,2010,gas oil combustion consumption by to the public,3902.444532,TJ,N2O,3.9,kg/TJ,15219.533674799999,kg +7e29df02-8695-3d9e-9aaf-7e038c0e2a1b,SESCO,II.1.1,Entre Rios,AR-E,annual,2010,gas oil combustion consumption by to the public,1919.4809491199999,TJ,CO2,74100.0,kg/TJ,142233538.329792,kg +39856afd-c641-3cb5-a898-c8500ec58ec1,SESCO,II.1.1,Entre Rios,AR-E,annual,2010,gas oil combustion consumption by to the public,1919.4809491199999,TJ,CH4,3.9,kg/TJ,7485.975701568,kg +39856afd-c641-3cb5-a898-c8500ec58ec1,SESCO,II.1.1,Entre Rios,AR-E,annual,2010,gas oil combustion consumption by to the public,1919.4809491199999,TJ,N2O,3.9,kg/TJ,7485.975701568,kg +b86f6861-05e0-30da-9195-fbc3831763ad,SESCO,II.1.1,Formosa,AR-P,annual,2010,gas oil combustion consumption by to the public,77.29448832,TJ,CO2,74100.0,kg/TJ,5727521.584512,kg +ecd7e186-aa11-3e21-8f4a-f354f278de5b,SESCO,II.1.1,Formosa,AR-P,annual,2010,gas oil combustion consumption by to the public,77.29448832,TJ,CH4,3.9,kg/TJ,301.448504448,kg +ecd7e186-aa11-3e21-8f4a-f354f278de5b,SESCO,II.1.1,Formosa,AR-P,annual,2010,gas oil combustion consumption by to the public,77.29448832,TJ,N2O,3.9,kg/TJ,301.448504448,kg +095defe4-4290-3572-97b5-2f0d34546c71,SESCO,II.1.1,Jujuy,AR-Y,annual,2010,gas oil combustion consumption by to the public,32.1074292,TJ,CO2,74100.0,kg/TJ,2379160.50372,kg +cea302aa-8e6b-3bad-8168-d1371b83535b,SESCO,II.1.1,Jujuy,AR-Y,annual,2010,gas oil combustion consumption by to the public,32.1074292,TJ,CH4,3.9,kg/TJ,125.21897388,kg +cea302aa-8e6b-3bad-8168-d1371b83535b,SESCO,II.1.1,Jujuy,AR-Y,annual,2010,gas oil combustion consumption by to the public,32.1074292,TJ,N2O,3.9,kg/TJ,125.21897388,kg +0b09a439-72a6-3223-9b97-48199d249273,SESCO,II.1.1,La Pampa,AR-L,annual,2010,gas oil combustion consumption by to the public,686.70697452,TJ,CO2,74100.0,kg/TJ,50884986.811932,kg +894c416e-f301-3684-a299-f2000d8da217,SESCO,II.1.1,La Pampa,AR-L,annual,2010,gas oil combustion consumption by to the public,686.70697452,TJ,CH4,3.9,kg/TJ,2678.157200628,kg +894c416e-f301-3684-a299-f2000d8da217,SESCO,II.1.1,La Pampa,AR-L,annual,2010,gas oil combustion consumption by to the public,686.70697452,TJ,N2O,3.9,kg/TJ,2678.157200628,kg +d4349e28-2eb4-341d-931a-d96ba8844651,SESCO,II.1.1,La Rioja,AR-F,annual,2010,gas oil combustion consumption by to the public,71.48682576,TJ,CO2,74100.0,kg/TJ,5297173.788816,kg +7608a69f-3f67-393e-90f9-5d02ae59c497,SESCO,II.1.1,La Rioja,AR-F,annual,2010,gas oil combustion consumption by to the public,71.48682576,TJ,CH4,3.9,kg/TJ,278.798620464,kg +7608a69f-3f67-393e-90f9-5d02ae59c497,SESCO,II.1.1,La Rioja,AR-F,annual,2010,gas oil combustion consumption by to the public,71.48682576,TJ,N2O,3.9,kg/TJ,278.798620464,kg +57646432-9ecb-334e-b396-65b9a712d485,SESCO,II.1.1,Mendoza,AR-M,annual,2010,gas oil combustion consumption by to the public,695.83569048,TJ,CO2,74100.0,kg/TJ,51561424.664568,kg +01aaaa5c-d100-3869-841f-ad668bb0d010,SESCO,II.1.1,Mendoza,AR-M,annual,2010,gas oil combustion consumption by to the public,695.83569048,TJ,CH4,3.9,kg/TJ,2713.7591928720003,kg +01aaaa5c-d100-3869-841f-ad668bb0d010,SESCO,II.1.1,Mendoza,AR-M,annual,2010,gas oil combustion consumption by to the public,695.83569048,TJ,N2O,3.9,kg/TJ,2713.7591928720003,kg +c6c64318-91d8-3c56-a92c-76e071ea527c,SESCO,II.1.1,Misiones,AR-N,annual,2010,gas oil combustion consumption by to the public,307.32228828,TJ,CO2,74100.0,kg/TJ,22772581.561548002,kg +767519f8-43f8-3082-a37c-7e2600810a65,SESCO,II.1.1,Misiones,AR-N,annual,2010,gas oil combustion consumption by to the public,307.32228828,TJ,CH4,3.9,kg/TJ,1198.556924292,kg +767519f8-43f8-3082-a37c-7e2600810a65,SESCO,II.1.1,Misiones,AR-N,annual,2010,gas oil combustion consumption by to the public,307.32228828,TJ,N2O,3.9,kg/TJ,1198.556924292,kg +ff47f7c1-e05d-380d-909e-18f83e8fcaa0,SESCO,II.1.1,Neuquén,AR-Q,annual,2010,gas oil combustion consumption by to the public,1064.12387928,TJ,CO2,74100.0,kg/TJ,78851579.454648,kg +20a94f73-7f59-36f2-8cd8-7a30d257b658,SESCO,II.1.1,Neuquén,AR-Q,annual,2010,gas oil combustion consumption by to the public,1064.12387928,TJ,CH4,3.9,kg/TJ,4150.083129191999,kg +20a94f73-7f59-36f2-8cd8-7a30d257b658,SESCO,II.1.1,Neuquén,AR-Q,annual,2010,gas oil combustion consumption by to the public,1064.12387928,TJ,N2O,3.9,kg/TJ,4150.083129191999,kg +6c1e1baf-7d95-36b5-ac6d-0c61ad48d4ba,SESCO,II.1.1,Rio Negro,AR-R,annual,2010,gas oil combustion consumption by to the public,1564.78818384,TJ,CO2,74100.0,kg/TJ,115950804.422544,kg +87812f9e-0d74-3c2d-9934-887979cb9a8c,SESCO,II.1.1,Rio Negro,AR-R,annual,2010,gas oil combustion consumption by to the public,1564.78818384,TJ,CH4,3.9,kg/TJ,6102.673916976,kg +87812f9e-0d74-3c2d-9934-887979cb9a8c,SESCO,II.1.1,Rio Negro,AR-R,annual,2010,gas oil combustion consumption by to the public,1564.78818384,TJ,N2O,3.9,kg/TJ,6102.673916976,kg +64e4d479-1e33-3a8d-a5b8-68b271fbe91d,SESCO,II.1.1,Salta,AR-A,annual,2010,gas oil combustion consumption by to the public,44.06148768,TJ,CO2,74100.0,kg/TJ,3264956.237088,kg +d9b2eb8c-5a6f-352c-bb1e-b1d1941c6314,SESCO,II.1.1,Salta,AR-A,annual,2010,gas oil combustion consumption by to the public,44.06148768,TJ,CH4,3.9,kg/TJ,171.839801952,kg +d9b2eb8c-5a6f-352c-bb1e-b1d1941c6314,SESCO,II.1.1,Salta,AR-A,annual,2010,gas oil combustion consumption by to the public,44.06148768,TJ,N2O,3.9,kg/TJ,171.839801952,kg +053d8200-4792-36c5-bb4e-2bf6b6c09acf,SESCO,II.1.1,San Juan,AR-J,annual,2010,gas oil combustion consumption by to the public,454.39740192,TJ,CO2,74100.0,kg/TJ,33670847.482272,kg +1f365aec-d4ac-38b1-bda6-ab5e6ec1313b,SESCO,II.1.1,San Juan,AR-J,annual,2010,gas oil combustion consumption by to the public,454.39740192,TJ,CH4,3.9,kg/TJ,1772.149867488,kg +1f365aec-d4ac-38b1-bda6-ab5e6ec1313b,SESCO,II.1.1,San Juan,AR-J,annual,2010,gas oil combustion consumption by to the public,454.39740192,TJ,N2O,3.9,kg/TJ,1772.149867488,kg +43e3e853-9b5e-3e4e-95cf-dfb5f57a42f6,SESCO,II.1.1,San Luis,AR-D,annual,2010,gas oil combustion consumption by to the public,332.52617412,TJ,CO2,74100.0,kg/TJ,24640189.502292,kg +f2937748-7073-3fbc-ae96-99955eb11182,SESCO,II.1.1,San Luis,AR-D,annual,2010,gas oil combustion consumption by to the public,332.52617412,TJ,CH4,3.9,kg/TJ,1296.852079068,kg +f2937748-7073-3fbc-ae96-99955eb11182,SESCO,II.1.1,San Luis,AR-D,annual,2010,gas oil combustion consumption by to the public,332.52617412,TJ,N2O,3.9,kg/TJ,1296.852079068,kg +082a526e-6b03-37d7-b7de-7a958f267eab,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2010,gas oil combustion consumption by to the public,1145.99722776,TJ,CO2,74100.0,kg/TJ,84918394.577016,kg +00efda49-4ab4-32f6-b93d-80ed2c319e5b,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2010,gas oil combustion consumption by to the public,1145.99722776,TJ,CH4,3.9,kg/TJ,4469.389188264,kg +00efda49-4ab4-32f6-b93d-80ed2c319e5b,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2010,gas oil combustion consumption by to the public,1145.99722776,TJ,N2O,3.9,kg/TJ,4469.389188264,kg +4878c113-175f-33f1-9fdf-99093dc99e05,SESCO,II.1.1,Santa Fe,AR-S,annual,2010,gas oil combustion consumption by to the public,5367.71312196,TJ,CO2,74100.0,kg/TJ,397747542.337236,kg +7d04654b-6a48-3dfb-806f-20a0ab944c55,SESCO,II.1.1,Santa Fe,AR-S,annual,2010,gas oil combustion consumption by to the public,5367.71312196,TJ,CH4,3.9,kg/TJ,20934.081175643998,kg +7d04654b-6a48-3dfb-806f-20a0ab944c55,SESCO,II.1.1,Santa Fe,AR-S,annual,2010,gas oil combustion consumption by to the public,5367.71312196,TJ,N2O,3.9,kg/TJ,20934.081175643998,kg +6993e55b-59ed-341e-b48e-033daa7d2747,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2010,gas oil combustion consumption by to the public,260.91863532,TJ,CO2,74100.0,kg/TJ,19334070.877212003,kg +4a9852d9-b721-35f3-8658-092f4a897238,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2010,gas oil combustion consumption by to the public,260.91863532,TJ,CH4,3.9,kg/TJ,1017.582677748,kg +4a9852d9-b721-35f3-8658-092f4a897238,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2010,gas oil combustion consumption by to the public,260.91863532,TJ,N2O,3.9,kg/TJ,1017.582677748,kg +b90f5b36-7097-3668-89e5-f6538e83382b,SESCO,II.1.1,Tucuman,AR-T,annual,2010,gas oil combustion consumption by to the public,633.5000473199999,TJ,CO2,74100.0,kg/TJ,46942353.50641199,kg +3fd146ba-b710-387e-bda4-d249f27e238b,SESCO,II.1.1,Tucuman,AR-T,annual,2010,gas oil combustion consumption by to the public,633.5000473199999,TJ,CH4,3.9,kg/TJ,2470.6501845479997,kg +3fd146ba-b710-387e-bda4-d249f27e238b,SESCO,II.1.1,Tucuman,AR-T,annual,2010,gas oil combustion consumption by to the public,633.5000473199999,TJ,N2O,3.9,kg/TJ,2470.6501845479997,kg +a8726898-d486-395a-885a-0c6d7b636047,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,gas oil combustion consumption by to the public,187.98896004,TJ,CO2,74100.0,kg/TJ,13929981.938964,kg +b1077eee-41ca-342a-a4e2-a25b5b77afae,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,gas oil combustion consumption by to the public,187.98896004,TJ,CH4,3.9,kg/TJ,733.156944156,kg +b1077eee-41ca-342a-a4e2-a25b5b77afae,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,gas oil combustion consumption by to the public,187.98896004,TJ,N2O,3.9,kg/TJ,733.156944156,kg +a3251518-2716-3640-b065-76d9f9f0d163,SESCO,II.1.1,Capital Federal,AR-C,annual,2010,gas oil combustion consumption by to the public,24.0580872,TJ,CO2,74100.0,kg/TJ,1782704.26152,kg +96d80998-f540-301f-b93f-10cf66bf78b3,SESCO,II.1.1,Capital Federal,AR-C,annual,2010,gas oil combustion consumption by to the public,24.0580872,TJ,CH4,3.9,kg/TJ,93.82654008,kg +96d80998-f540-301f-b93f-10cf66bf78b3,SESCO,II.1.1,Capital Federal,AR-C,annual,2010,gas oil combustion consumption by to the public,24.0580872,TJ,N2O,3.9,kg/TJ,93.82654008,kg +9ce4ec6e-6e22-39e5-9059-d89826bc9203,SESCO,II.1.1,Córdoba,AR-X,annual,2010,gas oil combustion consumption by to the public,25.03321884,TJ,CO2,74100.0,kg/TJ,1854961.516044,kg +ab589121-8ac5-3638-abf2-a426c5c8f3f0,SESCO,II.1.1,Córdoba,AR-X,annual,2010,gas oil combustion consumption by to the public,25.03321884,TJ,CH4,3.9,kg/TJ,97.629553476,kg +ab589121-8ac5-3638-abf2-a426c5c8f3f0,SESCO,II.1.1,Córdoba,AR-X,annual,2010,gas oil combustion consumption by to the public,25.03321884,TJ,N2O,3.9,kg/TJ,97.629553476,kg +63dadbee-89f5-343f-8ba2-f078a9f5012f,SESCO,II.1.1,Entre Rios,AR-E,annual,2010,gas oil combustion consumption by to the public,12.272131199999999,TJ,CO2,74100.0,kg/TJ,909364.9219199999,kg +a5561104-0046-3ab1-afbf-15d984b06b10,SESCO,II.1.1,Entre Rios,AR-E,annual,2010,gas oil combustion consumption by to the public,12.272131199999999,TJ,CH4,3.9,kg/TJ,47.86131167999999,kg +a5561104-0046-3ab1-afbf-15d984b06b10,SESCO,II.1.1,Entre Rios,AR-E,annual,2010,gas oil combustion consumption by to the public,12.272131199999999,TJ,N2O,3.9,kg/TJ,47.86131167999999,kg +3e30ef3f-200f-3ef7-981f-aeeb2cfdcc6b,SESCO,II.1.1,Santa Fe,AR-S,annual,2010,gas oil combustion consumption by to the public,27.72538692,TJ,CO2,74100.0,kg/TJ,2054451.170772,kg +cc57a673-6314-33dd-8fda-0a0aa391512e,SESCO,II.1.1,Santa Fe,AR-S,annual,2010,gas oil combustion consumption by to the public,27.72538692,TJ,CH4,3.9,kg/TJ,108.129008988,kg +cc57a673-6314-33dd-8fda-0a0aa391512e,SESCO,II.1.1,Santa Fe,AR-S,annual,2010,gas oil combustion consumption by to the public,27.72538692,TJ,N2O,3.9,kg/TJ,108.129008988,kg +266c852d-6476-306c-835f-40866ebec28a,SESCO,I.3.1,Tucuman,AR-T,annual,2010,gas oil combustion consumption by petrochemical industries,2.58341076,TJ,CO2,74100.0,kg/TJ,191430.737316,kg +74ed24b0-8f24-3e3c-ab6d-c0d6256f2db9,SESCO,I.3.1,Tucuman,AR-T,annual,2010,gas oil combustion consumption by petrochemical industries,2.58341076,TJ,CH4,3.9,kg/TJ,10.075301964,kg +74ed24b0-8f24-3e3c-ab6d-c0d6256f2db9,SESCO,I.3.1,Tucuman,AR-T,annual,2010,gas oil combustion consumption by petrochemical industries,2.58341076,TJ,N2O,3.9,kg/TJ,10.075301964,kg +b2cd757c-778a-37dc-8604-0856a739ee2e,SESCO,II.2.1,Rio Negro,AR-R,annual,2010,gas oil combustion consumption by railway transport,21.56931084,TJ,CO2,74100.0,kg/TJ,1598285.933244,kg +55c10729-c76b-3c4b-ad94-6e5c9c323aba,SESCO,II.2.1,Rio Negro,AR-R,annual,2010,gas oil combustion consumption by railway transport,21.56931084,TJ,CH4,3.9,kg/TJ,84.12031227599999,kg +55c10729-c76b-3c4b-ad94-6e5c9c323aba,SESCO,II.2.1,Rio Negro,AR-R,annual,2010,gas oil combustion consumption by railway transport,21.56931084,TJ,N2O,3.9,kg/TJ,84.12031227599999,kg +47947c61-e447-34fc-8e8c-065455c32524,SESCO,II.1.1,Capital Federal,AR-C,annual,2010,gasoline combustion consumption by freight transport,10.8168639,TJ,CO2,69300.0,kg/TJ,749608.66827,kg +c5c1486c-d7b2-3c05-a518-c80156bf704f,SESCO,II.1.1,Capital Federal,AR-C,annual,2010,gasoline combustion consumption by freight transport,10.8168639,TJ,CH4,33.0,kg/TJ,356.9565087,kg +20edffa5-2ea6-3e26-94b5-429365e33cde,SESCO,II.1.1,Capital Federal,AR-C,annual,2010,gasoline combustion consumption by freight transport,10.8168639,TJ,N2O,3.2,kg/TJ,34.61396448,kg +714da5b3-c7c1-36a6-9d3c-1de56e419c8d,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,gas oil combustion consumption by freight transport,441.81514439999995,TJ,CO2,74100.0,kg/TJ,32738502.200039998,kg +be256157-741b-3873-9562-990f1f5e86db,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,gas oil combustion consumption by freight transport,441.81514439999995,TJ,CH4,3.9,kg/TJ,1723.0790631599998,kg +be256157-741b-3873-9562-990f1f5e86db,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,gas oil combustion consumption by freight transport,441.81514439999995,TJ,N2O,3.9,kg/TJ,1723.0790631599998,kg +5f34f61a-edc2-3859-880d-00a84c9fab07,SESCO,II.1.1,Capital Federal,AR-C,annual,2010,gas oil combustion consumption by freight transport,2.75115204,TJ,CO2,74100.0,kg/TJ,203860.366164,kg +0fa2c04c-53eb-37f7-ba3c-f757a55a39d9,SESCO,II.1.1,Capital Federal,AR-C,annual,2010,gas oil combustion consumption by freight transport,2.75115204,TJ,CH4,3.9,kg/TJ,10.729492956,kg +0fa2c04c-53eb-37f7-ba3c-f757a55a39d9,SESCO,II.1.1,Capital Federal,AR-C,annual,2010,gas oil combustion consumption by freight transport,2.75115204,TJ,N2O,3.9,kg/TJ,10.729492956,kg +f0743c80-56b0-37ea-8afb-6f7dffe2dfb8,SESCO,II.1.1,Chubut,AR-U,annual,2010,gas oil combustion consumption by freight transport,11.89893936,TJ,CO2,74100.0,kg/TJ,881711.406576,kg +f75e4424-34c4-3413-ad1f-5636f51ade94,SESCO,II.1.1,Chubut,AR-U,annual,2010,gas oil combustion consumption by freight transport,11.89893936,TJ,CH4,3.9,kg/TJ,46.405863503999996,kg +f75e4424-34c4-3413-ad1f-5636f51ade94,SESCO,II.1.1,Chubut,AR-U,annual,2010,gas oil combustion consumption by freight transport,11.89893936,TJ,N2O,3.9,kg/TJ,46.405863503999996,kg +5bafaa80-2f3c-3cf8-99a7-c773ae9d1509,SESCO,II.1.1,Córdoba,AR-X,annual,2010,gas oil combustion consumption by freight transport,82.29324348,TJ,CO2,74100.0,kg/TJ,6097929.341868,kg +a5530255-87d3-3e05-ab43-53d22c07a4ce,SESCO,II.1.1,Córdoba,AR-X,annual,2010,gas oil combustion consumption by freight transport,82.29324348,TJ,CH4,3.9,kg/TJ,320.94364957199997,kg +a5530255-87d3-3e05-ab43-53d22c07a4ce,SESCO,II.1.1,Córdoba,AR-X,annual,2010,gas oil combustion consumption by freight transport,82.29324348,TJ,N2O,3.9,kg/TJ,320.94364957199997,kg +e0d63a60-54dd-319c-acea-02eb49d2b5f7,SESCO,II.1.1,San Luis,AR-D,annual,2010,gas oil combustion consumption by freight transport,28.236629399999998,TJ,CO2,74100.0,kg/TJ,2092334.2385399998,kg +5fc7f6e3-253e-340d-9fb0-7b9d4d80f5ae,SESCO,II.1.1,San Luis,AR-D,annual,2010,gas oil combustion consumption by freight transport,28.236629399999998,TJ,CH4,3.9,kg/TJ,110.12285465999999,kg +5fc7f6e3-253e-340d-9fb0-7b9d4d80f5ae,SESCO,II.1.1,San Luis,AR-D,annual,2010,gas oil combustion consumption by freight transport,28.236629399999998,TJ,N2O,3.9,kg/TJ,110.12285465999999,kg +902850c4-f70c-3ff0-a9ce-44fdcdb272bf,SESCO,II.1.1,Santa Fe,AR-S,annual,2010,gas oil combustion consumption by freight transport,6.103088039999999,TJ,CO2,74100.0,kg/TJ,452238.823764,kg +da8e052a-ca83-325d-86fa-7dd9f6a6a2fb,SESCO,II.1.1,Santa Fe,AR-S,annual,2010,gas oil combustion consumption by freight transport,6.103088039999999,TJ,CH4,3.9,kg/TJ,23.802043356,kg +da8e052a-ca83-325d-86fa-7dd9f6a6a2fb,SESCO,II.1.1,Santa Fe,AR-S,annual,2010,gas oil combustion consumption by freight transport,6.103088039999999,TJ,N2O,3.9,kg/TJ,23.802043356,kg +da8fe3e5-6e1f-37ec-a21b-10b48f9b7c5e,SESCO,II.1.1,Rio Negro,AR-R,annual,2010,gasoline combustion consumption by public passenger transport,2.341698,TJ,CO2,69300.0,kg/TJ,162279.6714,kg +67a954a1-5758-3d6c-92f8-c673c5dcf09c,SESCO,II.1.1,Rio Negro,AR-R,annual,2010,gasoline combustion consumption by public passenger transport,2.341698,TJ,CH4,33.0,kg/TJ,77.276034,kg +b4e2ea4a-0e2a-3c63-8a28-ec9fe1f0d19c,SESCO,II.1.1,Rio Negro,AR-R,annual,2010,gasoline combustion consumption by public passenger transport,2.341698,TJ,N2O,3.2,kg/TJ,7.4934336,kg +6c3a4578-e756-3484-9bb2-5112e4354d77,SESCO,II.1.1,Santa Fe,AR-S,annual,2010,gasoline combustion consumption by public passenger transport,52.4434032,TJ,CO2,69300.0,kg/TJ,3634327.8417599997,kg +39c5027f-6fe5-3ac8-8321-49415a84b7aa,SESCO,II.1.1,Santa Fe,AR-S,annual,2010,gasoline combustion consumption by public passenger transport,52.4434032,TJ,CH4,33.0,kg/TJ,1730.6323055999999,kg +2721b202-5eb8-3248-a351-6e40e4e6f444,SESCO,II.1.1,Santa Fe,AR-S,annual,2010,gasoline combustion consumption by public passenger transport,52.4434032,TJ,N2O,3.2,kg/TJ,167.81889024,kg +85cf5fd8-779e-3c93-925f-11b6a3fe227c,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,gas oil combustion consumption by public passenger transport,728.02330608,TJ,CO2,74100.0,kg/TJ,53946526.980528,kg +16e31b7f-f08e-39d6-ba97-214fd5124904,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,gas oil combustion consumption by public passenger transport,728.02330608,TJ,CH4,3.9,kg/TJ,2839.290893712,kg +16e31b7f-f08e-39d6-ba97-214fd5124904,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,gas oil combustion consumption by public passenger transport,728.02330608,TJ,N2O,3.9,kg/TJ,2839.290893712,kg +24140101-1366-31d8-a002-35a8adfb7718,SESCO,II.1.1,Capital Federal,AR-C,annual,2010,gas oil combustion consumption by public passenger transport,198.36226283999997,TJ,CO2,74100.0,kg/TJ,14698643.676443998,kg +c9aaf31c-9df0-31af-9cb0-273c81435c33,SESCO,II.1.1,Capital Federal,AR-C,annual,2010,gas oil combustion consumption by public passenger transport,198.36226283999997,TJ,CH4,3.9,kg/TJ,773.6128250759999,kg +c9aaf31c-9df0-31af-9cb0-273c81435c33,SESCO,II.1.1,Capital Federal,AR-C,annual,2010,gas oil combustion consumption by public passenger transport,198.36226283999997,TJ,N2O,3.9,kg/TJ,773.6128250759999,kg +c9a8358c-18d6-31c4-809c-962fbe244156,SESCO,II.1.1,Corrientes,AR-W,annual,2010,gas oil combustion consumption by public passenger transport,0.35484287999999997,TJ,CO2,74100.0,kg/TJ,26293.857407999996,kg +94b784e2-fc82-3190-ad30-091cedc4274d,SESCO,II.1.1,Corrientes,AR-W,annual,2010,gas oil combustion consumption by public passenger transport,0.35484287999999997,TJ,CH4,3.9,kg/TJ,1.383887232,kg +94b784e2-fc82-3190-ad30-091cedc4274d,SESCO,II.1.1,Corrientes,AR-W,annual,2010,gas oil combustion consumption by public passenger transport,0.35484287999999997,TJ,N2O,3.9,kg/TJ,1.383887232,kg +c486efd8-d16a-30b7-a727-5e950c4e5aed,SESCO,II.1.1,Córdoba,AR-X,annual,2010,gas oil combustion consumption by public passenger transport,62.506599120000004,TJ,CO2,74100.0,kg/TJ,4631738.994792,kg +d06611f5-6936-3aff-832d-2a60a247da0b,SESCO,II.1.1,Córdoba,AR-X,annual,2010,gas oil combustion consumption by public passenger transport,62.506599120000004,TJ,CH4,3.9,kg/TJ,243.775736568,kg +d06611f5-6936-3aff-832d-2a60a247da0b,SESCO,II.1.1,Córdoba,AR-X,annual,2010,gas oil combustion consumption by public passenger transport,62.506599120000004,TJ,N2O,3.9,kg/TJ,243.775736568,kg +140474bb-45de-380d-b659-cb276d24a3f4,SESCO,II.1.1,Entre Rios,AR-E,annual,2010,gas oil combustion consumption by public passenger transport,65.70935951999999,TJ,CO2,74100.0,kg/TJ,4869063.540432,kg +0c1de430-4c69-3280-afd4-4f019a032417,SESCO,II.1.1,Entre Rios,AR-E,annual,2010,gas oil combustion consumption by public passenger transport,65.70935951999999,TJ,CH4,3.9,kg/TJ,256.26650212799996,kg +0c1de430-4c69-3280-afd4-4f019a032417,SESCO,II.1.1,Entre Rios,AR-E,annual,2010,gas oil combustion consumption by public passenger transport,65.70935951999999,TJ,N2O,3.9,kg/TJ,256.26650212799996,kg +88d65b23-4843-3ddd-8046-e1d29aeefdf2,SESCO,II.1.1,Formosa,AR-P,annual,2010,gas oil combustion consumption by public passenger transport,6.57640452,TJ,CO2,74100.0,kg/TJ,487311.57493199996,kg +a4ceec25-6669-363b-a2c9-0c2be5ea346a,SESCO,II.1.1,Formosa,AR-P,annual,2010,gas oil combustion consumption by public passenger transport,6.57640452,TJ,CH4,3.9,kg/TJ,25.647977628,kg +a4ceec25-6669-363b-a2c9-0c2be5ea346a,SESCO,II.1.1,Formosa,AR-P,annual,2010,gas oil combustion consumption by public passenger transport,6.57640452,TJ,N2O,3.9,kg/TJ,25.647977628,kg +4c34caf3-c33c-3e64-97ae-0115be8eb89f,SESCO,II.1.1,Neuquén,AR-Q,annual,2010,gas oil combustion consumption by public passenger transport,18.79785936,TJ,CO2,74100.0,kg/TJ,1392921.378576,kg +f6b70e16-11c1-3759-a8f3-5e017e4ba352,SESCO,II.1.1,Neuquén,AR-Q,annual,2010,gas oil combustion consumption by public passenger transport,18.79785936,TJ,CH4,3.9,kg/TJ,73.311651504,kg +f6b70e16-11c1-3759-a8f3-5e017e4ba352,SESCO,II.1.1,Neuquén,AR-Q,annual,2010,gas oil combustion consumption by public passenger transport,18.79785936,TJ,N2O,3.9,kg/TJ,73.311651504,kg +6022dfa0-ce5e-3e4c-a412-805851a9d377,SESCO,II.1.1,Rio Negro,AR-R,annual,2010,gas oil combustion consumption by public passenger transport,81.22651151999999,TJ,CO2,74100.0,kg/TJ,6018884.503631999,kg +9d56e398-d38a-37f3-8bf9-0e0f4d349278,SESCO,II.1.1,Rio Negro,AR-R,annual,2010,gas oil combustion consumption by public passenger transport,81.22651151999999,TJ,CH4,3.9,kg/TJ,316.78339492799995,kg +9d56e398-d38a-37f3-8bf9-0e0f4d349278,SESCO,II.1.1,Rio Negro,AR-R,annual,2010,gas oil combustion consumption by public passenger transport,81.22651151999999,TJ,N2O,3.9,kg/TJ,316.78339492799995,kg +d94607e1-ed2d-3059-9a12-b8e3af997c2c,SESCO,II.1.1,San Juan,AR-J,annual,2010,gas oil combustion consumption by public passenger transport,13.24639596,TJ,CO2,74100.0,kg/TJ,981557.9406359999,kg +13f3b31e-2343-3d36-9bbb-cac14a7d7efc,SESCO,II.1.1,San Juan,AR-J,annual,2010,gas oil combustion consumption by public passenger transport,13.24639596,TJ,CH4,3.9,kg/TJ,51.66094424399999,kg +13f3b31e-2343-3d36-9bbb-cac14a7d7efc,SESCO,II.1.1,San Juan,AR-J,annual,2010,gas oil combustion consumption by public passenger transport,13.24639596,TJ,N2O,3.9,kg/TJ,51.66094424399999,kg +9dc92a60-daa5-3696-8567-441082f8b037,SESCO,II.1.1,San Luis,AR-D,annual,2010,gas oil combustion consumption by public passenger transport,48.64630764,TJ,CO2,74100.0,kg/TJ,3604691.396124,kg +d1391aa3-5c41-3f63-ac5a-b8802a874e3d,SESCO,II.1.1,San Luis,AR-D,annual,2010,gas oil combustion consumption by public passenger transport,48.64630764,TJ,CH4,3.9,kg/TJ,189.72059979600002,kg +d1391aa3-5c41-3f63-ac5a-b8802a874e3d,SESCO,II.1.1,San Luis,AR-D,annual,2010,gas oil combustion consumption by public passenger transport,48.64630764,TJ,N2O,3.9,kg/TJ,189.72059979600002,kg +5d5e0a7e-d16c-3eb4-8a86-0a311fa3ff41,SESCO,II.1.1,Santa Fe,AR-S,annual,2010,gas oil combustion consumption by public passenger transport,681.706305,TJ,CO2,74100.0,kg/TJ,50514437.200500004,kg +cad27706-d2df-3906-bb0e-e70fd063d417,SESCO,II.1.1,Santa Fe,AR-S,annual,2010,gas oil combustion consumption by public passenger transport,681.706305,TJ,CH4,3.9,kg/TJ,2658.6545895,kg +cad27706-d2df-3906-bb0e-e70fd063d417,SESCO,II.1.1,Santa Fe,AR-S,annual,2010,gas oil combustion consumption by public passenger transport,681.706305,TJ,N2O,3.9,kg/TJ,2658.6545895,kg +4b1ca251-8ed2-3d4a-a252-40fc40f53c9d,SESCO,I.3.1,Córdoba,AR-X,annual,2010,gas oil combustion consumption by petrochemical industries,0.0299796,TJ,CO2,74100.0,kg/TJ,2221.48836,kg +20410739-04b8-3949-962e-5331cc1e0a8a,SESCO,I.3.1,Córdoba,AR-X,annual,2010,gas oil combustion consumption by petrochemical industries,0.0299796,TJ,CH4,3.9,kg/TJ,0.11692043999999999,kg +20410739-04b8-3949-962e-5331cc1e0a8a,SESCO,I.3.1,Córdoba,AR-X,annual,2010,gas oil combustion consumption by petrochemical industries,0.0299796,TJ,N2O,3.9,kg/TJ,0.11692043999999999,kg +08b744dd-ad66-339e-b209-0dd365ed0140,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,gas oil combustion consumption by to the public,2346.8810349600003,TJ,CO2,74100.0,kg/TJ,173903884.69053602,kg +9fe029f4-f63c-3464-9a00-745c4c4f6ac5,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,gas oil combustion consumption by to the public,2346.8810349600003,TJ,CH4,3.9,kg/TJ,9152.836036344,kg +9fe029f4-f63c-3464-9a00-745c4c4f6ac5,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,gas oil combustion consumption by to the public,2346.8810349600003,TJ,N2O,3.9,kg/TJ,9152.836036344,kg +3ecddea6-8751-368a-b137-8052f57e02fe,SESCO,II.1.1,Capital Federal,AR-C,annual,2010,gas oil combustion consumption by to the public,23.599002,TJ,CO2,74100.0,kg/TJ,1748686.0481999998,kg +20178c2b-feca-3b52-bd40-97de685a317f,SESCO,II.1.1,Capital Federal,AR-C,annual,2010,gas oil combustion consumption by to the public,23.599002,TJ,CH4,3.9,kg/TJ,92.0361078,kg +20178c2b-feca-3b52-bd40-97de685a317f,SESCO,II.1.1,Capital Federal,AR-C,annual,2010,gas oil combustion consumption by to the public,23.599002,TJ,N2O,3.9,kg/TJ,92.0361078,kg +8ff07cc2-ad9d-3344-a3b3-5b79ebff389d,SESCO,II.1.1,Corrientes,AR-W,annual,2010,gas oil combustion consumption by to the public,16.57908,TJ,CO2,74100.0,kg/TJ,1228509.828,kg +dc5c7294-9a04-3e83-b36f-0cbe6dd01b83,SESCO,II.1.1,Corrientes,AR-W,annual,2010,gas oil combustion consumption by to the public,16.57908,TJ,CH4,3.9,kg/TJ,64.658412,kg +dc5c7294-9a04-3e83-b36f-0cbe6dd01b83,SESCO,II.1.1,Corrientes,AR-W,annual,2010,gas oil combustion consumption by to the public,16.57908,TJ,N2O,3.9,kg/TJ,64.658412,kg +66c87f88-c8f8-3b7e-9d52-82c00f6bb15a,SESCO,II.1.1,Córdoba,AR-X,annual,2010,gas oil combustion consumption by to the public,1464.666,TJ,CO2,74100.0,kg/TJ,108531750.6,kg +44ab9863-7368-3f5a-9679-061463bae2c6,SESCO,II.1.1,Córdoba,AR-X,annual,2010,gas oil combustion consumption by to the public,1464.666,TJ,CH4,3.9,kg/TJ,5712.1974,kg +44ab9863-7368-3f5a-9679-061463bae2c6,SESCO,II.1.1,Córdoba,AR-X,annual,2010,gas oil combustion consumption by to the public,1464.666,TJ,N2O,3.9,kg/TJ,5712.1974,kg +640130f2-2f40-3b65-b2e6-1b23dff2680a,SESCO,II.1.1,Entre Rios,AR-E,annual,2010,gas oil combustion consumption by to the public,397.153848,TJ,CO2,74100.0,kg/TJ,29429100.1368,kg +cd701967-8e7e-3154-ac9d-a14bd65793bc,SESCO,II.1.1,Entre Rios,AR-E,annual,2010,gas oil combustion consumption by to the public,397.153848,TJ,CH4,3.9,kg/TJ,1548.9000072,kg +cd701967-8e7e-3154-ac9d-a14bd65793bc,SESCO,II.1.1,Entre Rios,AR-E,annual,2010,gas oil combustion consumption by to the public,397.153848,TJ,N2O,3.9,kg/TJ,1548.9000072,kg +e70f2751-b3a2-3c51-8389-9af761b45570,SESCO,II.1.1,Santa Fe,AR-S,annual,2010,gas oil combustion consumption by to the public,719.07696,TJ,CO2,74100.0,kg/TJ,53283602.736,kg +a3588049-8ab3-3daf-897d-2c9d976d2a99,SESCO,II.1.1,Santa Fe,AR-S,annual,2010,gas oil combustion consumption by to the public,719.07696,TJ,CH4,3.9,kg/TJ,2804.4001439999997,kg +a3588049-8ab3-3daf-897d-2c9d976d2a99,SESCO,II.1.1,Santa Fe,AR-S,annual,2010,gas oil combustion consumption by to the public,719.07696,TJ,N2O,3.9,kg/TJ,2804.4001439999997,kg +d0ccd2ba-3220-305c-a472-4ccc4edcf5be,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,gas oil combustion consumption by to the public,12.131407679999999,TJ,CO2,74100.0,kg/TJ,898937.3090879999,kg +ea094207-58bf-3eaa-a88d-0b47a0f8b290,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,gas oil combustion consumption by to the public,12.131407679999999,TJ,CH4,3.9,kg/TJ,47.31248995199999,kg +ea094207-58bf-3eaa-a88d-0b47a0f8b290,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,gas oil combustion consumption by to the public,12.131407679999999,TJ,N2O,3.9,kg/TJ,47.31248995199999,kg +6cf11c2f-6917-327e-bac2-565fb388cc69,SESCO,II.1.1,Corrientes,AR-W,annual,2010,gas oil combustion consumption by to the public,3.17856,TJ,CO2,74100.0,kg/TJ,235531.296,kg +ad9d49ef-596c-39a5-8c29-5b551683d86d,SESCO,II.1.1,Corrientes,AR-W,annual,2010,gas oil combustion consumption by to the public,3.17856,TJ,CH4,3.9,kg/TJ,12.396384,kg +ad9d49ef-596c-39a5-8c29-5b551683d86d,SESCO,II.1.1,Corrientes,AR-W,annual,2010,gas oil combustion consumption by to the public,3.17856,TJ,N2O,3.9,kg/TJ,12.396384,kg +4d7ce50e-be74-36eb-aa02-5dc8acb62dfe,SESCO,II.1.1,Córdoba,AR-X,annual,2010,gas oil combustion consumption by to the public,10.58316,TJ,CO2,74100.0,kg/TJ,784212.156,kg +5b757aca-5537-34b4-ab82-9b214fb2814b,SESCO,II.1.1,Córdoba,AR-X,annual,2010,gas oil combustion consumption by to the public,10.58316,TJ,CH4,3.9,kg/TJ,41.274324,kg +5b757aca-5537-34b4-ab82-9b214fb2814b,SESCO,II.1.1,Córdoba,AR-X,annual,2010,gas oil combustion consumption by to the public,10.58316,TJ,N2O,3.9,kg/TJ,41.274324,kg +c74c70b1-f013-38d5-bd65-5ab644947e1c,SESCO,II.1.1,Entre Rios,AR-E,annual,2010,gas oil combustion consumption by to the public,3.2977559999999997,TJ,CO2,74100.0,kg/TJ,244363.71959999998,kg +c77f2443-4d27-3cb5-97be-4215e9bdfd3a,SESCO,II.1.1,Entre Rios,AR-E,annual,2010,gas oil combustion consumption by to the public,3.2977559999999997,TJ,CH4,3.9,kg/TJ,12.8612484,kg +c77f2443-4d27-3cb5-97be-4215e9bdfd3a,SESCO,II.1.1,Entre Rios,AR-E,annual,2010,gas oil combustion consumption by to the public,3.2977559999999997,TJ,N2O,3.9,kg/TJ,12.8612484,kg +e9cf7dc9-0745-331f-9935-436d0af77ea7,SESCO,II.1.1,Santa Fe,AR-S,annual,2010,gas oil combustion consumption by to the public,5.92368,TJ,CO2,74100.0,kg/TJ,438944.688,kg +f3fe4f16-0f97-3063-961e-9216d7199f1a,SESCO,II.1.1,Santa Fe,AR-S,annual,2010,gas oil combustion consumption by to the public,5.92368,TJ,CH4,3.9,kg/TJ,23.102352,kg +f3fe4f16-0f97-3063-961e-9216d7199f1a,SESCO,II.1.1,Santa Fe,AR-S,annual,2010,gas oil combustion consumption by to the public,5.92368,TJ,N2O,3.9,kg/TJ,23.102352,kg +10645637-dac5-3866-9d8a-43798cfb70ed,SESCO,II.1.1,Catamarca,AR-K,annual,2010,gas oil combustion consumption by to the public,343.6550712,TJ,CO2,74100.0,kg/TJ,25464840.77592,kg +32f877a4-0869-3ffa-bfd2-f632ebc3cbd4,SESCO,II.1.1,Catamarca,AR-K,annual,2010,gas oil combustion consumption by to the public,343.6550712,TJ,CH4,3.9,kg/TJ,1340.25477768,kg +32f877a4-0869-3ffa-bfd2-f632ebc3cbd4,SESCO,II.1.1,Catamarca,AR-K,annual,2010,gas oil combustion consumption by to the public,343.6550712,TJ,N2O,3.9,kg/TJ,1340.25477768,kg +833c7f3c-5d69-3fd8-916a-ccad14966cfe,SESCO,II.1.1,Chaco,AR-H,annual,2010,gas oil combustion consumption by to the public,286.3012068,TJ,CO2,74100.0,kg/TJ,21214919.42388,kg +715b579e-344e-36fa-bea7-6308ebbaa90c,SESCO,II.1.1,Chaco,AR-H,annual,2010,gas oil combustion consumption by to the public,286.3012068,TJ,CH4,3.9,kg/TJ,1116.5747065199998,kg +715b579e-344e-36fa-bea7-6308ebbaa90c,SESCO,II.1.1,Chaco,AR-H,annual,2010,gas oil combustion consumption by to the public,286.3012068,TJ,N2O,3.9,kg/TJ,1116.5747065199998,kg +40da4348-d68e-3275-840d-55b4a52b6c93,SESCO,II.1.1,Córdoba,AR-X,annual,2010,gas oil combustion consumption by to the public,192.9562908,TJ,CO2,74100.0,kg/TJ,14298061.14828,kg +1df5b50f-12c7-32a0-a8aa-44139458fe33,SESCO,II.1.1,Córdoba,AR-X,annual,2010,gas oil combustion consumption by to the public,192.9562908,TJ,CH4,3.9,kg/TJ,752.52953412,kg +1df5b50f-12c7-32a0-a8aa-44139458fe33,SESCO,II.1.1,Córdoba,AR-X,annual,2010,gas oil combustion consumption by to the public,192.9562908,TJ,N2O,3.9,kg/TJ,752.52953412,kg +6cf105b7-30f3-3eff-ba67-742c51f83bc4,SESCO,II.1.1,Jujuy,AR-Y,annual,2010,gas oil combustion consumption by to the public,1050.887922,TJ,CO2,74100.0,kg/TJ,77870795.0202,kg +7e91581e-b71a-3a8e-9f10-058475a23b56,SESCO,II.1.1,Jujuy,AR-Y,annual,2010,gas oil combustion consumption by to the public,1050.887922,TJ,CH4,3.9,kg/TJ,4098.462895799999,kg +7e91581e-b71a-3a8e-9f10-058475a23b56,SESCO,II.1.1,Jujuy,AR-Y,annual,2010,gas oil combustion consumption by to the public,1050.887922,TJ,N2O,3.9,kg/TJ,4098.462895799999,kg +b55ba5a5-2a50-3fbe-984f-6b2b8d94a0ec,SESCO,II.1.1,La Rioja,AR-F,annual,2010,gas oil combustion consumption by to the public,207.4349928,TJ,CO2,74100.0,kg/TJ,15370932.96648,kg +ee564c29-b560-3add-8d3c-2d405877a007,SESCO,II.1.1,La Rioja,AR-F,annual,2010,gas oil combustion consumption by to the public,207.4349928,TJ,CH4,3.9,kg/TJ,808.99647192,kg +ee564c29-b560-3add-8d3c-2d405877a007,SESCO,II.1.1,La Rioja,AR-F,annual,2010,gas oil combustion consumption by to the public,207.4349928,TJ,N2O,3.9,kg/TJ,808.99647192,kg +55ed64f2-5ff9-322a-8158-f7c219d4ffc0,SESCO,II.1.1,Salta,AR-A,annual,2010,gas oil combustion consumption by to the public,2628.528252,TJ,CO2,74100.0,kg/TJ,194773943.4732,kg +c3ba3a8d-8ed0-3841-a902-27b02f6dc806,SESCO,II.1.1,Salta,AR-A,annual,2010,gas oil combustion consumption by to the public,2628.528252,TJ,CH4,3.9,kg/TJ,10251.2601828,kg +c3ba3a8d-8ed0-3841-a902-27b02f6dc806,SESCO,II.1.1,Salta,AR-A,annual,2010,gas oil combustion consumption by to the public,2628.528252,TJ,N2O,3.9,kg/TJ,10251.2601828,kg +b5f53158-f9b5-3587-8294-f5ad30fe8a4d,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2010,gas oil combustion consumption by to the public,768.1051643999999,TJ,CO2,74100.0,kg/TJ,56916592.68203999,kg +ec82376b-6431-3ce9-9f53-29cd0d27c109,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2010,gas oil combustion consumption by to the public,768.1051643999999,TJ,CH4,3.9,kg/TJ,2995.61014116,kg +ec82376b-6431-3ce9-9f53-29cd0d27c109,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2010,gas oil combustion consumption by to the public,768.1051643999999,TJ,N2O,3.9,kg/TJ,2995.61014116,kg +1781d6bc-3e48-3ea1-9acc-845a783277dc,SESCO,II.1.1,Tucuman,AR-T,annual,2010,gas oil combustion consumption by to the public,3635.0106072,TJ,CO2,74100.0,kg/TJ,269354285.99351996,kg +c6b1f948-7643-35f9-936e-83a3889c3905,SESCO,II.1.1,Tucuman,AR-T,annual,2010,gas oil combustion consumption by to the public,3635.0106072,TJ,CH4,3.9,kg/TJ,14176.54136808,kg +c6b1f948-7643-35f9-936e-83a3889c3905,SESCO,II.1.1,Tucuman,AR-T,annual,2010,gas oil combustion consumption by to the public,3635.0106072,TJ,N2O,3.9,kg/TJ,14176.54136808,kg +85e7ea3c-ddd1-357e-875f-d006d7750cab,SESCO,II.1.1,Catamarca,AR-K,annual,2010,gas oil combustion consumption by to the public,2.0133288,TJ,CO2,74100.0,kg/TJ,149187.66408,kg +2ac0655d-5e90-3816-becb-3c5b5e5cbc04,SESCO,II.1.1,Catamarca,AR-K,annual,2010,gas oil combustion consumption by to the public,2.0133288,TJ,CH4,3.9,kg/TJ,7.85198232,kg +2ac0655d-5e90-3816-becb-3c5b5e5cbc04,SESCO,II.1.1,Catamarca,AR-K,annual,2010,gas oil combustion consumption by to the public,2.0133288,TJ,N2O,3.9,kg/TJ,7.85198232,kg +8be93dfa-5268-330d-8378-f315c7f6f05b,SESCO,II.1.1,Chaco,AR-H,annual,2010,gas oil combustion consumption by to the public,6.6240467999999995,TJ,CO2,74100.0,kg/TJ,490841.86788,kg +c8ddc99a-e288-3ae0-89ba-a5bbf3f2a763,SESCO,II.1.1,Chaco,AR-H,annual,2010,gas oil combustion consumption by to the public,6.6240467999999995,TJ,CH4,3.9,kg/TJ,25.833782519999996,kg +c8ddc99a-e288-3ae0-89ba-a5bbf3f2a763,SESCO,II.1.1,Chaco,AR-H,annual,2010,gas oil combustion consumption by to the public,6.6240467999999995,TJ,N2O,3.9,kg/TJ,25.833782519999996,kg +40b82b43-65d9-3051-8974-a618bdd9d449,SESCO,II.1.1,Córdoba,AR-X,annual,2010,gas oil combustion consumption by to the public,0.251034,TJ,CO2,74100.0,kg/TJ,18601.6194,kg +d17ff401-77c3-3825-b80c-d1ce61b577d1,SESCO,II.1.1,Córdoba,AR-X,annual,2010,gas oil combustion consumption by to the public,0.251034,TJ,CH4,3.9,kg/TJ,0.9790325999999999,kg +d17ff401-77c3-3825-b80c-d1ce61b577d1,SESCO,II.1.1,Córdoba,AR-X,annual,2010,gas oil combustion consumption by to the public,0.251034,TJ,N2O,3.9,kg/TJ,0.9790325999999999,kg +d3a6c20d-b7c8-321a-bb4c-42eb67e90ab3,SESCO,II.1.1,Jujuy,AR-Y,annual,2010,gas oil combustion consumption by to the public,25.4512356,TJ,CO2,74100.0,kg/TJ,1885936.5579600001,kg +b1024bc9-2613-3164-a801-0b681843621f,SESCO,II.1.1,Jujuy,AR-Y,annual,2010,gas oil combustion consumption by to the public,25.4512356,TJ,CH4,3.9,kg/TJ,99.25981884,kg +b1024bc9-2613-3164-a801-0b681843621f,SESCO,II.1.1,Jujuy,AR-Y,annual,2010,gas oil combustion consumption by to the public,25.4512356,TJ,N2O,3.9,kg/TJ,99.25981884,kg +2b2c9a84-cc93-3f3c-99a4-9d629c8b8107,SESCO,II.1.1,La Rioja,AR-F,annual,2010,gas oil combustion consumption by to the public,3.75648,TJ,CO2,74100.0,kg/TJ,278355.168,kg +085829fe-c70b-3fe4-9005-292f748bc657,SESCO,II.1.1,La Rioja,AR-F,annual,2010,gas oil combustion consumption by to the public,3.75648,TJ,CH4,3.9,kg/TJ,14.650272,kg +085829fe-c70b-3fe4-9005-292f748bc657,SESCO,II.1.1,La Rioja,AR-F,annual,2010,gas oil combustion consumption by to the public,3.75648,TJ,N2O,3.9,kg/TJ,14.650272,kg +e0af1e4b-81bf-3396-9b1e-35f6d29273d7,SESCO,II.1.1,Salta,AR-A,annual,2010,gas oil combustion consumption by to the public,77.83065359999999,TJ,CO2,74100.0,kg/TJ,5767251.431759999,kg +501d0abe-0808-3543-957d-e72bf63ce052,SESCO,II.1.1,Salta,AR-A,annual,2010,gas oil combustion consumption by to the public,77.83065359999999,TJ,CH4,3.9,kg/TJ,303.53954903999994,kg +501d0abe-0808-3543-957d-e72bf63ce052,SESCO,II.1.1,Salta,AR-A,annual,2010,gas oil combustion consumption by to the public,77.83065359999999,TJ,N2O,3.9,kg/TJ,303.53954903999994,kg +ac652f42-44bf-33cd-8a1d-6bd463639b5a,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2010,gas oil combustion consumption by to the public,20.8423236,TJ,CO2,74100.0,kg/TJ,1544416.17876,kg +9a0bea70-e263-3115-b349-be828ae9e21c,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2010,gas oil combustion consumption by to the public,20.8423236,TJ,CH4,3.9,kg/TJ,81.28506204,kg +9a0bea70-e263-3115-b349-be828ae9e21c,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2010,gas oil combustion consumption by to the public,20.8423236,TJ,N2O,3.9,kg/TJ,81.28506204,kg +b9df2996-2e46-3372-9145-0fe01ce2b1c1,SESCO,II.1.1,Tucuman,AR-T,annual,2010,gas oil combustion consumption by to the public,110.85950399999999,TJ,CO2,74100.0,kg/TJ,8214689.246399999,kg +6b5e880a-3747-323b-9b81-b3c41f024182,SESCO,II.1.1,Tucuman,AR-T,annual,2010,gas oil combustion consumption by to the public,110.85950399999999,TJ,CH4,3.9,kg/TJ,432.35206559999995,kg +6b5e880a-3747-323b-9b81-b3c41f024182,SESCO,II.1.1,Tucuman,AR-T,annual,2010,gas oil combustion consumption by to the public,110.85950399999999,TJ,N2O,3.9,kg/TJ,432.35206559999995,kg +2a5b7f6f-f66a-34e1-bed4-f01a09e1761f,SESCO,I.3.1,Buenos Aires,AR-B,annual,2010,gasoline combustion consumption by petrochemical industries,410.735424,TJ,CO2,69300.0,kg/TJ,28463964.8832,kg +6cf87083-eec4-3fa5-bfb5-f914ea491073,SESCO,I.3.1,Buenos Aires,AR-B,annual,2010,gasoline combustion consumption by petrochemical industries,410.735424,TJ,CH4,33.0,kg/TJ,13554.268992000001,kg +6299b38b-5e52-3839-b9a9-fe30ab753bb5,SESCO,I.3.1,Buenos Aires,AR-B,annual,2010,gasoline combustion consumption by petrochemical industries,410.735424,TJ,N2O,3.2,kg/TJ,1314.3533568000003,kg +5bb412ca-ffff-3f67-a1f4-ae751ab86442,SESCO,I.3.1,Chaco,AR-H,annual,2010,gasoline combustion consumption by petrochemical industries,16.930574,TJ,CO2,69300.0,kg/TJ,1173288.7782,kg +17cb3035-c769-3b42-af0b-5f21118517a5,SESCO,I.3.1,Chaco,AR-H,annual,2010,gasoline combustion consumption by petrochemical industries,16.930574,TJ,CH4,33.0,kg/TJ,558.708942,kg +cd02062e-3505-3507-be05-4e09e7dd2da8,SESCO,I.3.1,Chaco,AR-H,annual,2010,gasoline combustion consumption by petrochemical industries,16.930574,TJ,N2O,3.2,kg/TJ,54.1778368,kg +c1a8ff75-8c82-386a-9c37-bfd410897334,SESCO,I.3.1,Córdoba,AR-X,annual,2010,gasoline combustion consumption by petrochemical industries,44.023125,TJ,CO2,69300.0,kg/TJ,3050802.5625,kg +cd31867e-144a-380c-a9ef-4dbb99bb47e2,SESCO,I.3.1,Córdoba,AR-X,annual,2010,gasoline combustion consumption by petrochemical industries,44.023125,TJ,CH4,33.0,kg/TJ,1452.763125,kg +6521f2e7-682f-3a03-906d-a25787df69d9,SESCO,I.3.1,Córdoba,AR-X,annual,2010,gasoline combustion consumption by petrochemical industries,44.023125,TJ,N2O,3.2,kg/TJ,140.874,kg +2f4972bf-c7b9-3b76-9887-1dd2f430017f,SESCO,I.3.1,Santa Fe,AR-S,annual,2010,gasoline combustion consumption by petrochemical industries,26.752326999999998,TJ,CO2,69300.0,kg/TJ,1853936.2610999998,kg +da45b984-ab19-3d90-a443-031fbe6417ed,SESCO,I.3.1,Santa Fe,AR-S,annual,2010,gasoline combustion consumption by petrochemical industries,26.752326999999998,TJ,CH4,33.0,kg/TJ,882.826791,kg +a2c37784-b392-3f02-b99b-d6a5028ac471,SESCO,I.3.1,Santa Fe,AR-S,annual,2010,gasoline combustion consumption by petrochemical industries,26.752326999999998,TJ,N2O,3.2,kg/TJ,85.6074464,kg +73da8713-cc6c-3d48-8b24-1e4e2001faa8,SESCO,II.5.1,Buenos Aires,AR-B,annual,2010,gas oil combustion consumption by agriculture machines,349.31651999999997,TJ,CO2,74100.0,kg/TJ,25884354.132,kg +79328e29-152c-3e6b-8306-b80eef164173,SESCO,II.5.1,Buenos Aires,AR-B,annual,2010,gas oil combustion consumption by agriculture machines,349.31651999999997,TJ,CH4,3.9,kg/TJ,1362.334428,kg +79328e29-152c-3e6b-8306-b80eef164173,SESCO,II.5.1,Buenos Aires,AR-B,annual,2010,gas oil combustion consumption by agriculture machines,349.31651999999997,TJ,N2O,3.9,kg/TJ,1362.334428,kg +8b190951-d07f-36b3-ae05-a257f14c32e4,SESCO,II.5.1,Capital Federal,AR-C,annual,2010,gas oil combustion consumption by agriculture machines,95.60964,TJ,CO2,74100.0,kg/TJ,7084674.324,kg +b63c8ad7-8c41-3b37-b108-1033d94f0c29,SESCO,II.5.1,Capital Federal,AR-C,annual,2010,gas oil combustion consumption by agriculture machines,95.60964,TJ,CH4,3.9,kg/TJ,372.877596,kg +b63c8ad7-8c41-3b37-b108-1033d94f0c29,SESCO,II.5.1,Capital Federal,AR-C,annual,2010,gas oil combustion consumption by agriculture machines,95.60964,TJ,N2O,3.9,kg/TJ,372.877596,kg +01dd232f-3f68-3ca9-970d-b8e9e5999474,SESCO,II.5.1,Corrientes,AR-W,annual,2010,gas oil combustion consumption by agriculture machines,12.67812,TJ,CO2,74100.0,kg/TJ,939448.692,kg +bdbd8008-3afc-32c2-83db-59cf22cbba3a,SESCO,II.5.1,Corrientes,AR-W,annual,2010,gas oil combustion consumption by agriculture machines,12.67812,TJ,CH4,3.9,kg/TJ,49.444668,kg +bdbd8008-3afc-32c2-83db-59cf22cbba3a,SESCO,II.5.1,Corrientes,AR-W,annual,2010,gas oil combustion consumption by agriculture machines,12.67812,TJ,N2O,3.9,kg/TJ,49.444668,kg +dad278e1-67dd-3f40-a3d2-e406bdec79c2,SESCO,II.5.1,Córdoba,AR-X,annual,2010,gas oil combustion consumption by agriculture machines,72.31224,TJ,CO2,74100.0,kg/TJ,5358336.984,kg +0d479e44-4d41-3c69-b2d7-bcc10cc028e2,SESCO,II.5.1,Córdoba,AR-X,annual,2010,gas oil combustion consumption by agriculture machines,72.31224,TJ,CH4,3.9,kg/TJ,282.017736,kg +0d479e44-4d41-3c69-b2d7-bcc10cc028e2,SESCO,II.5.1,Córdoba,AR-X,annual,2010,gas oil combustion consumption by agriculture machines,72.31224,TJ,N2O,3.9,kg/TJ,282.017736,kg +981c45c9-bb98-39ca-a73d-513468410ec9,SESCO,II.5.1,Entre Rios,AR-E,annual,2010,gas oil combustion consumption by agriculture machines,32.65248,TJ,CO2,74100.0,kg/TJ,2419548.7679999997,kg +bc5f3170-367f-342c-8825-eeea975f1572,SESCO,II.5.1,Entre Rios,AR-E,annual,2010,gas oil combustion consumption by agriculture machines,32.65248,TJ,CH4,3.9,kg/TJ,127.34467199999999,kg +bc5f3170-367f-342c-8825-eeea975f1572,SESCO,II.5.1,Entre Rios,AR-E,annual,2010,gas oil combustion consumption by agriculture machines,32.65248,TJ,N2O,3.9,kg/TJ,127.34467199999999,kg +ac15516b-8d35-3f9a-8ba0-94e22cc32a0d,SESCO,II.5.1,Formosa,AR-P,annual,2010,gas oil combustion consumption by agriculture machines,12.85872,TJ,CO2,74100.0,kg/TJ,952831.152,kg +66501b0d-ef7a-3574-9a30-708fc6f3f0aa,SESCO,II.5.1,Formosa,AR-P,annual,2010,gas oil combustion consumption by agriculture machines,12.85872,TJ,CH4,3.9,kg/TJ,50.149008,kg +66501b0d-ef7a-3574-9a30-708fc6f3f0aa,SESCO,II.5.1,Formosa,AR-P,annual,2010,gas oil combustion consumption by agriculture machines,12.85872,TJ,N2O,3.9,kg/TJ,50.149008,kg +11a6edb5-1352-3b5f-97e5-118280cc7431,SESCO,II.5.1,La Pampa,AR-L,annual,2010,gas oil combustion consumption by agriculture machines,17.91552,TJ,CO2,74100.0,kg/TJ,1327540.0320000001,kg +d15f3bf5-effa-3872-ad7a-d884bacdc565,SESCO,II.5.1,La Pampa,AR-L,annual,2010,gas oil combustion consumption by agriculture machines,17.91552,TJ,CH4,3.9,kg/TJ,69.87052800000001,kg +d15f3bf5-effa-3872-ad7a-d884bacdc565,SESCO,II.5.1,La Pampa,AR-L,annual,2010,gas oil combustion consumption by agriculture machines,17.91552,TJ,N2O,3.9,kg/TJ,69.87052800000001,kg +383f98ad-e753-39b7-b712-4337996a6480,SESCO,II.5.1,Salta,AR-A,annual,2010,gas oil combustion consumption by agriculture machines,11.48616,TJ,CO2,74100.0,kg/TJ,851124.456,kg +85103960-4aa8-382d-9bdd-413ac97841d9,SESCO,II.5.1,Salta,AR-A,annual,2010,gas oil combustion consumption by agriculture machines,11.48616,TJ,CH4,3.9,kg/TJ,44.796023999999996,kg +85103960-4aa8-382d-9bdd-413ac97841d9,SESCO,II.5.1,Salta,AR-A,annual,2010,gas oil combustion consumption by agriculture machines,11.48616,TJ,N2O,3.9,kg/TJ,44.796023999999996,kg +5b2cfc6d-c969-35a1-af34-8f6121df090e,SESCO,II.5.1,Santa Fe,AR-S,annual,2010,gas oil combustion consumption by agriculture machines,465.44232,TJ,CO2,74100.0,kg/TJ,34489275.912,kg +b55beb54-e30a-31a0-a973-402661cdceed,SESCO,II.5.1,Santa Fe,AR-S,annual,2010,gas oil combustion consumption by agriculture machines,465.44232,TJ,CH4,3.9,kg/TJ,1815.225048,kg +b55beb54-e30a-31a0-a973-402661cdceed,SESCO,II.5.1,Santa Fe,AR-S,annual,2010,gas oil combustion consumption by agriculture machines,465.44232,TJ,N2O,3.9,kg/TJ,1815.225048,kg +32903e43-3ecb-308c-90e5-ed601bad5526,SESCO,II.5.1,Buenos Aires,AR-B,annual,2010,gas oil combustion consumption by agriculture machines,5.02068,TJ,CO2,74100.0,kg/TJ,372032.388,kg +7a064fe6-89cd-38db-b3e4-99884d32db11,SESCO,II.5.1,Buenos Aires,AR-B,annual,2010,gas oil combustion consumption by agriculture machines,5.02068,TJ,CH4,3.9,kg/TJ,19.580651999999997,kg +7a064fe6-89cd-38db-b3e4-99884d32db11,SESCO,II.5.1,Buenos Aires,AR-B,annual,2010,gas oil combustion consumption by agriculture machines,5.02068,TJ,N2O,3.9,kg/TJ,19.580651999999997,kg +c639eeec-a750-32b7-98fd-7835a75905a7,SESCO,II.5.1,Buenos Aires,AR-B,annual,2010,jet kerosene combustion consumption by agriculture machines,0.31453,TJ,CO2,71500.0,kg/TJ,22488.894999999997,kg +a9a2a44c-3501-33bc-9d51-3b6d602712ec,SESCO,II.5.1,Buenos Aires,AR-B,annual,2010,jet kerosene combustion consumption by agriculture machines,0.31453,TJ,CH4,0.5,kg/TJ,0.157265,kg +2bd2b710-ce07-33fb-9593-758c52165496,SESCO,II.5.1,Buenos Aires,AR-B,annual,2010,jet kerosene combustion consumption by agriculture machines,0.31453,TJ,N2O,2.0,kg/TJ,0.62906,kg +174d9969-61e8-3803-b97b-236690585ac2,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,jet kerosene combustion consumption by to the public,705.4907899999998,TJ,CO2,71500.0,kg/TJ,50442591.484999985,kg +0292ae87-9827-3fa8-b513-9f1e1334a387,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,jet kerosene combustion consumption by to the public,705.4907899999998,TJ,CH4,0.5,kg/TJ,352.7453949999999,kg +9c3f3fb9-fc95-3245-aa73-2243dd240403,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,jet kerosene combustion consumption by to the public,705.4907899999998,TJ,N2O,2.0,kg/TJ,1410.9815799999997,kg +e27d71c1-b479-3d11-bd4d-b81f94819717,SESCO,II.1.1,Capital Federal,AR-C,annual,2010,jet kerosene combustion consumption by to the public,339.2206049999999,TJ,CO2,71500.0,kg/TJ,24254273.257499993,kg +b4fff1a1-4270-34ab-ab75-393aa30b2314,SESCO,II.1.1,Capital Federal,AR-C,annual,2010,jet kerosene combustion consumption by to the public,339.2206049999999,TJ,CH4,0.5,kg/TJ,169.61030249999996,kg +302a0452-20c7-3d7e-a847-ba1a9943d48e,SESCO,II.1.1,Capital Federal,AR-C,annual,2010,jet kerosene combustion consumption by to the public,339.2206049999999,TJ,N2O,2.0,kg/TJ,678.4412099999998,kg +e862262b-5c33-3845-bddd-d1c1fa38de10,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,gasoline combustion consumption by to the public,1220.3763999999999,TJ,CO2,69300.0,kg/TJ,84572084.52,kg +2d393270-e47c-3490-8c5b-c4f1171d4746,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,gasoline combustion consumption by to the public,1220.3763999999999,TJ,CH4,33.0,kg/TJ,40272.4212,kg +6820719f-7679-35f7-b72a-15bed2f76800,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,gasoline combustion consumption by to the public,1220.3763999999999,TJ,N2O,3.2,kg/TJ,3905.20448,kg +c876ca4e-f7a4-3ddd-b305-a0f7b56dacaa,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,gas oil combustion consumption by to the public,14197.54392,TJ,CO2,74100.0,kg/TJ,1052038004.472,kg +fb1067ff-0767-396d-b56a-348b7c9cbc49,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,gas oil combustion consumption by to the public,14197.54392,TJ,CH4,3.9,kg/TJ,55370.421288,kg +fb1067ff-0767-396d-b56a-348b7c9cbc49,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,gas oil combustion consumption by to the public,14197.54392,TJ,N2O,3.9,kg/TJ,55370.421288,kg +965e0383-efa8-3ba8-bbeb-1fe8bc71d483,SESCO,II.1.1,Capital Federal,AR-C,annual,2010,gas oil combustion consumption by to the public,1595.81772,TJ,CO2,74100.0,kg/TJ,118250093.052,kg +b0c7aebf-8836-3c87-abde-203f2a62a35b,SESCO,II.1.1,Capital Federal,AR-C,annual,2010,gas oil combustion consumption by to the public,1595.81772,TJ,CH4,3.9,kg/TJ,6223.689108,kg +b0c7aebf-8836-3c87-abde-203f2a62a35b,SESCO,II.1.1,Capital Federal,AR-C,annual,2010,gas oil combustion consumption by to the public,1595.81772,TJ,N2O,3.9,kg/TJ,6223.689108,kg +78d92899-bcb8-3041-ba26-0790437c3551,SESCO,II.1.1,Catamarca,AR-K,annual,2010,gas oil combustion consumption by to the public,39.94872,TJ,CO2,74100.0,kg/TJ,2960200.1520000002,kg +856d4929-7449-366e-bdc5-080d43115118,SESCO,II.1.1,Catamarca,AR-K,annual,2010,gas oil combustion consumption by to the public,39.94872,TJ,CH4,3.9,kg/TJ,155.800008,kg +856d4929-7449-366e-bdc5-080d43115118,SESCO,II.1.1,Catamarca,AR-K,annual,2010,gas oil combustion consumption by to the public,39.94872,TJ,N2O,3.9,kg/TJ,155.800008,kg +5b6d5615-3147-361f-a741-110f20e231be,SESCO,II.1.1,Chaco,AR-H,annual,2010,gas oil combustion consumption by to the public,1576.52964,TJ,CO2,74100.0,kg/TJ,116820846.324,kg +9516ab22-5b70-3146-890a-bd852b896426,SESCO,II.1.1,Chaco,AR-H,annual,2010,gas oil combustion consumption by to the public,1576.52964,TJ,CH4,3.9,kg/TJ,6148.465596,kg +9516ab22-5b70-3146-890a-bd852b896426,SESCO,II.1.1,Chaco,AR-H,annual,2010,gas oil combustion consumption by to the public,1576.52964,TJ,N2O,3.9,kg/TJ,6148.465596,kg +f4629f53-f31a-3b70-a789-1430aa0dbc05,SESCO,II.1.1,Chubut,AR-U,annual,2010,gas oil combustion consumption by to the public,19.54092,TJ,CO2,74100.0,kg/TJ,1447982.172,kg +467453c9-7887-33a6-97b4-847fba88beea,SESCO,II.1.1,Chubut,AR-U,annual,2010,gas oil combustion consumption by to the public,19.54092,TJ,CH4,3.9,kg/TJ,76.209588,kg +467453c9-7887-33a6-97b4-847fba88beea,SESCO,II.1.1,Chubut,AR-U,annual,2010,gas oil combustion consumption by to the public,19.54092,TJ,N2O,3.9,kg/TJ,76.209588,kg +23212cb2-02b5-3af2-bdf3-d98a21557d30,SESCO,II.1.1,Corrientes,AR-W,annual,2010,gas oil combustion consumption by to the public,777.33852,TJ,CO2,74100.0,kg/TJ,57600784.332,kg +5e41801a-27ed-3f0b-a227-edcbca2fcdf9,SESCO,II.1.1,Corrientes,AR-W,annual,2010,gas oil combustion consumption by to the public,777.33852,TJ,CH4,3.9,kg/TJ,3031.6202279999998,kg +5e41801a-27ed-3f0b-a227-edcbca2fcdf9,SESCO,II.1.1,Corrientes,AR-W,annual,2010,gas oil combustion consumption by to the public,777.33852,TJ,N2O,3.9,kg/TJ,3031.6202279999998,kg +51bc435f-bcfc-3be7-a3a6-17d76011942d,SESCO,II.1.1,Córdoba,AR-X,annual,2010,gas oil combustion consumption by to the public,4366.43844,TJ,CO2,74100.0,kg/TJ,323553088.404,kg +9ee39a4e-22ec-3f08-a550-af2fab31532d,SESCO,II.1.1,Córdoba,AR-X,annual,2010,gas oil combustion consumption by to the public,4366.43844,TJ,CH4,3.9,kg/TJ,17029.109915999998,kg +9ee39a4e-22ec-3f08-a550-af2fab31532d,SESCO,II.1.1,Córdoba,AR-X,annual,2010,gas oil combustion consumption by to the public,4366.43844,TJ,N2O,3.9,kg/TJ,17029.109915999998,kg +1a5480ae-b278-356f-9500-6b6ca1557096,SESCO,II.1.1,Entre Rios,AR-E,annual,2010,gas oil combustion consumption by to the public,1536.47256,TJ,CO2,74100.0,kg/TJ,113852616.696,kg +49e50885-c473-325d-841b-51d2851a5c11,SESCO,II.1.1,Entre Rios,AR-E,annual,2010,gas oil combustion consumption by to the public,1536.47256,TJ,CH4,3.9,kg/TJ,5992.2429839999995,kg +49e50885-c473-325d-841b-51d2851a5c11,SESCO,II.1.1,Entre Rios,AR-E,annual,2010,gas oil combustion consumption by to the public,1536.47256,TJ,N2O,3.9,kg/TJ,5992.2429839999995,kg +660a9c57-b149-364d-8dd8-3c3acb4d408a,SESCO,II.1.1,Formosa,AR-P,annual,2010,gas oil combustion consumption by to the public,185.18724,TJ,CO2,74100.0,kg/TJ,13722374.484000001,kg +b5e1512c-a6bf-3467-a522-b61ebad107d9,SESCO,II.1.1,Formosa,AR-P,annual,2010,gas oil combustion consumption by to the public,185.18724,TJ,CH4,3.9,kg/TJ,722.230236,kg +b5e1512c-a6bf-3467-a522-b61ebad107d9,SESCO,II.1.1,Formosa,AR-P,annual,2010,gas oil combustion consumption by to the public,185.18724,TJ,N2O,3.9,kg/TJ,722.230236,kg +076a91d4-fa12-3b5f-819e-56e8ba58a2f9,SESCO,II.1.1,Jujuy,AR-Y,annual,2010,gas oil combustion consumption by to the public,383.30544,TJ,CO2,74100.0,kg/TJ,28402933.104,kg +c8f91506-5bd4-3f7f-8ec1-1306625add10,SESCO,II.1.1,Jujuy,AR-Y,annual,2010,gas oil combustion consumption by to the public,383.30544,TJ,CH4,3.9,kg/TJ,1494.891216,kg +c8f91506-5bd4-3f7f-8ec1-1306625add10,SESCO,II.1.1,Jujuy,AR-Y,annual,2010,gas oil combustion consumption by to the public,383.30544,TJ,N2O,3.9,kg/TJ,1494.891216,kg +209c78c2-1e3b-300f-a26a-54b484039b7a,SESCO,II.1.1,La Pampa,AR-L,annual,2010,gas oil combustion consumption by to the public,511.35084,TJ,CO2,74100.0,kg/TJ,37891097.244,kg +937892c3-7c86-3ecc-afec-ea743bc7ab4f,SESCO,II.1.1,La Pampa,AR-L,annual,2010,gas oil combustion consumption by to the public,511.35084,TJ,CH4,3.9,kg/TJ,1994.268276,kg +937892c3-7c86-3ecc-afec-ea743bc7ab4f,SESCO,II.1.1,La Pampa,AR-L,annual,2010,gas oil combustion consumption by to the public,511.35084,TJ,N2O,3.9,kg/TJ,1994.268276,kg +860c1d6d-4a33-3d6a-a3e9-d8b2ef0943ce,SESCO,II.1.1,La Rioja,AR-F,annual,2010,gas oil combustion consumption by to the public,302.57724,TJ,CO2,74100.0,kg/TJ,22420973.484,kg +31fb2b1c-0128-3a0a-8da0-421cdad8d375,SESCO,II.1.1,La Rioja,AR-F,annual,2010,gas oil combustion consumption by to the public,302.57724,TJ,CH4,3.9,kg/TJ,1180.051236,kg +31fb2b1c-0128-3a0a-8da0-421cdad8d375,SESCO,II.1.1,La Rioja,AR-F,annual,2010,gas oil combustion consumption by to the public,302.57724,TJ,N2O,3.9,kg/TJ,1180.051236,kg +48fd8240-e3a2-3126-92c4-2000a2e6dbf9,SESCO,II.1.1,Mendoza,AR-M,annual,2010,gas oil combustion consumption by to the public,729.40728,TJ,CO2,74100.0,kg/TJ,54049079.448,kg +d4dc9f62-74ac-3a7f-9a53-e6dbc6d976fd,SESCO,II.1.1,Mendoza,AR-M,annual,2010,gas oil combustion consumption by to the public,729.40728,TJ,CH4,3.9,kg/TJ,2844.688392,kg +d4dc9f62-74ac-3a7f-9a53-e6dbc6d976fd,SESCO,II.1.1,Mendoza,AR-M,annual,2010,gas oil combustion consumption by to the public,729.40728,TJ,N2O,3.9,kg/TJ,2844.688392,kg +587e1900-4659-3e16-9cc0-aab7f7c2e2c7,SESCO,II.1.1,Misiones,AR-N,annual,2010,gas oil combustion consumption by to the public,942.5514,TJ,CO2,74100.0,kg/TJ,69843058.74,kg +3abda299-d53a-3787-b34b-99c970a2d378,SESCO,II.1.1,Misiones,AR-N,annual,2010,gas oil combustion consumption by to the public,942.5514,TJ,CH4,3.9,kg/TJ,3675.9504599999996,kg +3abda299-d53a-3787-b34b-99c970a2d378,SESCO,II.1.1,Misiones,AR-N,annual,2010,gas oil combustion consumption by to the public,942.5514,TJ,N2O,3.9,kg/TJ,3675.9504599999996,kg +25eafae4-a7c9-31fe-9e1a-3d85d5b925f0,SESCO,II.1.1,Neuquén,AR-Q,annual,2010,gas oil combustion consumption by to the public,181.503,TJ,CO2,74100.0,kg/TJ,13449372.299999999,kg +bb547c76-015c-3b53-883e-f3df4f96e5a2,SESCO,II.1.1,Neuquén,AR-Q,annual,2010,gas oil combustion consumption by to the public,181.503,TJ,CH4,3.9,kg/TJ,707.8616999999999,kg +bb547c76-015c-3b53-883e-f3df4f96e5a2,SESCO,II.1.1,Neuquén,AR-Q,annual,2010,gas oil combustion consumption by to the public,181.503,TJ,N2O,3.9,kg/TJ,707.8616999999999,kg +35205f2b-075c-3e66-a817-0be66c535b80,SESCO,II.1.1,Rio Negro,AR-R,annual,2010,gas oil combustion consumption by to the public,372.57779999999997,TJ,CO2,74100.0,kg/TJ,27608014.979999997,kg +f0c51173-dff1-3dd6-911d-5a408ffc1ca9,SESCO,II.1.1,Rio Negro,AR-R,annual,2010,gas oil combustion consumption by to the public,372.57779999999997,TJ,CH4,3.9,kg/TJ,1453.0534199999997,kg +f0c51173-dff1-3dd6-911d-5a408ffc1ca9,SESCO,II.1.1,Rio Negro,AR-R,annual,2010,gas oil combustion consumption by to the public,372.57779999999997,TJ,N2O,3.9,kg/TJ,1453.0534199999997,kg +a5f0c6ed-3bfc-3038-a565-7dbf8ba0d2ec,SESCO,II.1.1,Salta,AR-A,annual,2010,gas oil combustion consumption by to the public,335.48256,TJ,CO2,74100.0,kg/TJ,24859257.696,kg +76c8a2ea-2fd8-310e-90da-7fe00273342e,SESCO,II.1.1,Salta,AR-A,annual,2010,gas oil combustion consumption by to the public,335.48256,TJ,CH4,3.9,kg/TJ,1308.3819839999999,kg +76c8a2ea-2fd8-310e-90da-7fe00273342e,SESCO,II.1.1,Salta,AR-A,annual,2010,gas oil combustion consumption by to the public,335.48256,TJ,N2O,3.9,kg/TJ,1308.3819839999999,kg +bbece368-785a-3ee9-a144-5a6d56abda0d,SESCO,II.1.1,San Juan,AR-J,annual,2010,gas oil combustion consumption by to the public,210.11004,TJ,CO2,74100.0,kg/TJ,15569153.964,kg +ba01c47f-04f7-3369-a166-7b3f52fffe3d,SESCO,II.1.1,San Juan,AR-J,annual,2010,gas oil combustion consumption by to the public,210.11004,TJ,CH4,3.9,kg/TJ,819.4291559999999,kg +ba01c47f-04f7-3369-a166-7b3f52fffe3d,SESCO,II.1.1,San Juan,AR-J,annual,2010,gas oil combustion consumption by to the public,210.11004,TJ,N2O,3.9,kg/TJ,819.4291559999999,kg +485da1b6-8574-32e0-a691-d585685681ed,SESCO,II.1.1,San Luis,AR-D,annual,2010,gas oil combustion consumption by to the public,40.34604,TJ,CO2,74100.0,kg/TJ,2989641.5640000002,kg +53d4a45b-443d-3ca6-bff8-d3e30baadc00,SESCO,II.1.1,San Luis,AR-D,annual,2010,gas oil combustion consumption by to the public,40.34604,TJ,CH4,3.9,kg/TJ,157.349556,kg +53d4a45b-443d-3ca6-bff8-d3e30baadc00,SESCO,II.1.1,San Luis,AR-D,annual,2010,gas oil combustion consumption by to the public,40.34604,TJ,N2O,3.9,kg/TJ,157.349556,kg +530270ba-4a80-3837-9078-b9bcffe3b162,SESCO,II.1.1,Santa Fe,AR-S,annual,2010,gas oil combustion consumption by to the public,5345.10984,TJ,CO2,74100.0,kg/TJ,396072639.144,kg +28fe6914-5855-3f0c-98fa-6d9eb9076672,SESCO,II.1.1,Santa Fe,AR-S,annual,2010,gas oil combustion consumption by to the public,5345.10984,TJ,CH4,3.9,kg/TJ,20845.928376,kg +28fe6914-5855-3f0c-98fa-6d9eb9076672,SESCO,II.1.1,Santa Fe,AR-S,annual,2010,gas oil combustion consumption by to the public,5345.10984,TJ,N2O,3.9,kg/TJ,20845.928376,kg +fbe69c50-232f-3db2-af3d-19ca0a8dca59,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2010,gas oil combustion consumption by to the public,445.03452,TJ,CO2,74100.0,kg/TJ,32977057.932,kg +8b9ec636-efef-3c03-a8b8-079f793ec79d,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2010,gas oil combustion consumption by to the public,445.03452,TJ,CH4,3.9,kg/TJ,1735.634628,kg +8b9ec636-efef-3c03-a8b8-079f793ec79d,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2010,gas oil combustion consumption by to the public,445.03452,TJ,N2O,3.9,kg/TJ,1735.634628,kg +d177b8c4-af8e-35bc-a056-33929adc2ee3,SESCO,II.1.1,Tucuman,AR-T,annual,2010,gas oil combustion consumption by to the public,687.25524,TJ,CO2,74100.0,kg/TJ,50925613.283999994,kg +e1e59687-6562-313e-bae7-e55788999c22,SESCO,II.1.1,Tucuman,AR-T,annual,2010,gas oil combustion consumption by to the public,687.25524,TJ,CH4,3.9,kg/TJ,2680.295436,kg +e1e59687-6562-313e-bae7-e55788999c22,SESCO,II.1.1,Tucuman,AR-T,annual,2010,gas oil combustion consumption by to the public,687.25524,TJ,N2O,3.9,kg/TJ,2680.295436,kg +d747ba55-5066-3004-9844-c85ee5f94f4c,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,gas oil combustion consumption by to the public,5409.54792,TJ,CO2,74100.0,kg/TJ,400847500.872,kg +8c502cc9-7dc8-31c5-86fe-b137afb9d877,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,gas oil combustion consumption by to the public,5409.54792,TJ,CH4,3.9,kg/TJ,21097.236888,kg +8c502cc9-7dc8-31c5-86fe-b137afb9d877,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,gas oil combustion consumption by to the public,5409.54792,TJ,N2O,3.9,kg/TJ,21097.236888,kg +41d6d677-3768-3ec4-ad7d-b89b67c4a978,SESCO,II.1.1,Capital Federal,AR-C,annual,2010,gas oil combustion consumption by to the public,1312.88976,TJ,CO2,74100.0,kg/TJ,97285131.216,kg +5f51b9d0-3553-3605-99b2-549e0848ee2c,SESCO,II.1.1,Capital Federal,AR-C,annual,2010,gas oil combustion consumption by to the public,1312.88976,TJ,CH4,3.9,kg/TJ,5120.270064,kg +5f51b9d0-3553-3605-99b2-549e0848ee2c,SESCO,II.1.1,Capital Federal,AR-C,annual,2010,gas oil combustion consumption by to the public,1312.88976,TJ,N2O,3.9,kg/TJ,5120.270064,kg +6162b075-148b-3eaf-9251-06b8cbf99bc0,SESCO,II.1.1,Catamarca,AR-K,annual,2010,gas oil combustion consumption by to the public,18.16836,TJ,CO2,74100.0,kg/TJ,1346275.476,kg +2d8a6950-cb04-3c16-8b57-e748bec56294,SESCO,II.1.1,Catamarca,AR-K,annual,2010,gas oil combustion consumption by to the public,18.16836,TJ,CH4,3.9,kg/TJ,70.856604,kg +2d8a6950-cb04-3c16-8b57-e748bec56294,SESCO,II.1.1,Catamarca,AR-K,annual,2010,gas oil combustion consumption by to the public,18.16836,TJ,N2O,3.9,kg/TJ,70.856604,kg +42d2bb4a-64d5-3a92-857e-0dd1e710ff27,SESCO,II.1.1,Chaco,AR-H,annual,2010,gas oil combustion consumption by to the public,258.14964,TJ,CO2,74100.0,kg/TJ,19128888.323999997,kg +8e098d54-c40e-3df4-8d21-c02f920f1999,SESCO,II.1.1,Chaco,AR-H,annual,2010,gas oil combustion consumption by to the public,258.14964,TJ,CH4,3.9,kg/TJ,1006.7835959999999,kg +8e098d54-c40e-3df4-8d21-c02f920f1999,SESCO,II.1.1,Chaco,AR-H,annual,2010,gas oil combustion consumption by to the public,258.14964,TJ,N2O,3.9,kg/TJ,1006.7835959999999,kg +6eedc141-2ab6-3bcb-8572-4ff2b533dca0,SESCO,II.1.1,Chubut,AR-U,annual,2010,gas oil combustion consumption by to the public,34.92804,TJ,CO2,74100.0,kg/TJ,2588167.7640000004,kg +51a5d1c4-f550-38f6-a57f-c852abcf6e3b,SESCO,II.1.1,Chubut,AR-U,annual,2010,gas oil combustion consumption by to the public,34.92804,TJ,CH4,3.9,kg/TJ,136.219356,kg +51a5d1c4-f550-38f6-a57f-c852abcf6e3b,SESCO,II.1.1,Chubut,AR-U,annual,2010,gas oil combustion consumption by to the public,34.92804,TJ,N2O,3.9,kg/TJ,136.219356,kg +07b9129a-bf0e-38fe-9e50-a81c642dcd07,SESCO,II.1.1,Corrientes,AR-W,annual,2010,gas oil combustion consumption by to the public,185.94576,TJ,CO2,74100.0,kg/TJ,13778580.816,kg +4d3f0176-c37f-384b-8a72-232b3ff9fe60,SESCO,II.1.1,Corrientes,AR-W,annual,2010,gas oil combustion consumption by to the public,185.94576,TJ,CH4,3.9,kg/TJ,725.1884640000001,kg +4d3f0176-c37f-384b-8a72-232b3ff9fe60,SESCO,II.1.1,Corrientes,AR-W,annual,2010,gas oil combustion consumption by to the public,185.94576,TJ,N2O,3.9,kg/TJ,725.1884640000001,kg +86c07beb-e400-3bb9-9a76-a1b27e57826a,SESCO,II.1.1,Córdoba,AR-X,annual,2010,gas oil combustion consumption by to the public,1205.75784,TJ,CO2,74100.0,kg/TJ,89346655.944,kg +1d1b744e-0471-3c31-bb74-796189f93176,SESCO,II.1.1,Córdoba,AR-X,annual,2010,gas oil combustion consumption by to the public,1205.75784,TJ,CH4,3.9,kg/TJ,4702.455576,kg +1d1b744e-0471-3c31-bb74-796189f93176,SESCO,II.1.1,Córdoba,AR-X,annual,2010,gas oil combustion consumption by to the public,1205.75784,TJ,N2O,3.9,kg/TJ,4702.455576,kg +3da8b27b-296d-3c3a-be5c-d019cf0a8919,SESCO,II.1.1,Entre Rios,AR-E,annual,2010,gas oil combustion consumption by to the public,568.63716,TJ,CO2,74100.0,kg/TJ,42136013.556,kg +0ace8959-dd16-30c1-9e16-f67b7702786c,SESCO,II.1.1,Entre Rios,AR-E,annual,2010,gas oil combustion consumption by to the public,568.63716,TJ,CH4,3.9,kg/TJ,2217.684924,kg +0ace8959-dd16-30c1-9e16-f67b7702786c,SESCO,II.1.1,Entre Rios,AR-E,annual,2010,gas oil combustion consumption by to the public,568.63716,TJ,N2O,3.9,kg/TJ,2217.684924,kg +3010f888-c008-308a-ae2d-62d607d8da65,SESCO,II.1.1,Formosa,AR-P,annual,2010,gas oil combustion consumption by to the public,64.2936,TJ,CO2,74100.0,kg/TJ,4764155.76,kg +c1013f78-87a7-36b7-8d04-f6af76e74c4e,SESCO,II.1.1,Formosa,AR-P,annual,2010,gas oil combustion consumption by to the public,64.2936,TJ,CH4,3.9,kg/TJ,250.74504,kg +c1013f78-87a7-36b7-8d04-f6af76e74c4e,SESCO,II.1.1,Formosa,AR-P,annual,2010,gas oil combustion consumption by to the public,64.2936,TJ,N2O,3.9,kg/TJ,250.74504,kg +991b66d7-56f0-3e7b-923a-115b47a0f469,SESCO,II.1.1,Jujuy,AR-Y,annual,2010,gas oil combustion consumption by to the public,76.3938,TJ,CO2,74100.0,kg/TJ,5660780.58,kg +60e2b78a-b954-3d4e-bed0-7302667b3acd,SESCO,II.1.1,Jujuy,AR-Y,annual,2010,gas oil combustion consumption by to the public,76.3938,TJ,CH4,3.9,kg/TJ,297.93582,kg +60e2b78a-b954-3d4e-bed0-7302667b3acd,SESCO,II.1.1,Jujuy,AR-Y,annual,2010,gas oil combustion consumption by to the public,76.3938,TJ,N2O,3.9,kg/TJ,297.93582,kg +e126b246-2664-35cd-8cbf-1a0105e768fc,SESCO,II.1.1,La Pampa,AR-L,annual,2010,gas oil combustion consumption by to the public,181.46688,TJ,CO2,74100.0,kg/TJ,13446695.808,kg +5e4a0d29-e826-3585-abd5-84424b867d0e,SESCO,II.1.1,La Pampa,AR-L,annual,2010,gas oil combustion consumption by to the public,181.46688,TJ,CH4,3.9,kg/TJ,707.720832,kg +5e4a0d29-e826-3585-abd5-84424b867d0e,SESCO,II.1.1,La Pampa,AR-L,annual,2010,gas oil combustion consumption by to the public,181.46688,TJ,N2O,3.9,kg/TJ,707.720832,kg +db55275b-caac-3ad3-be23-5e0014a40248,SESCO,II.1.1,La Rioja,AR-F,annual,2010,gas oil combustion consumption by to the public,60.356519999999996,TJ,CO2,74100.0,kg/TJ,4472418.131999999,kg +6d7aabd2-1cf6-3db2-99cd-27a1313eb917,SESCO,II.1.1,La Rioja,AR-F,annual,2010,gas oil combustion consumption by to the public,60.356519999999996,TJ,CH4,3.9,kg/TJ,235.39042799999999,kg +6d7aabd2-1cf6-3db2-99cd-27a1313eb917,SESCO,II.1.1,La Rioja,AR-F,annual,2010,gas oil combustion consumption by to the public,60.356519999999996,TJ,N2O,3.9,kg/TJ,235.39042799999999,kg +8df4d556-56b0-30f6-a118-621f76525d0d,SESCO,II.1.1,Mendoza,AR-M,annual,2010,gas oil combustion consumption by to the public,286.57608,TJ,CO2,74100.0,kg/TJ,21235287.528,kg +6bde85df-718c-358c-b8c9-452217970724,SESCO,II.1.1,Mendoza,AR-M,annual,2010,gas oil combustion consumption by to the public,286.57608,TJ,CH4,3.9,kg/TJ,1117.646712,kg +6bde85df-718c-358c-b8c9-452217970724,SESCO,II.1.1,Mendoza,AR-M,annual,2010,gas oil combustion consumption by to the public,286.57608,TJ,N2O,3.9,kg/TJ,1117.646712,kg +0740b244-823e-3ef3-8447-91e1e0323b79,SESCO,II.1.1,Misiones,AR-N,annual,2010,gas oil combustion consumption by to the public,213.18024,TJ,CO2,74100.0,kg/TJ,15796655.784,kg +d291dd8c-c4e3-3d72-9b39-c289bd528232,SESCO,II.1.1,Misiones,AR-N,annual,2010,gas oil combustion consumption by to the public,213.18024,TJ,CH4,3.9,kg/TJ,831.402936,kg +d291dd8c-c4e3-3d72-9b39-c289bd528232,SESCO,II.1.1,Misiones,AR-N,annual,2010,gas oil combustion consumption by to the public,213.18024,TJ,N2O,3.9,kg/TJ,831.402936,kg +fb95f879-3edb-3b42-8bc8-ba9d9aba0d62,SESCO,II.1.1,Neuquén,AR-Q,annual,2010,gas oil combustion consumption by to the public,49.8456,TJ,CO2,74100.0,kg/TJ,3693558.96,kg +160edf25-7ee7-3edf-898a-817628f2762c,SESCO,II.1.1,Neuquén,AR-Q,annual,2010,gas oil combustion consumption by to the public,49.8456,TJ,CH4,3.9,kg/TJ,194.39783999999997,kg +160edf25-7ee7-3edf-898a-817628f2762c,SESCO,II.1.1,Neuquén,AR-Q,annual,2010,gas oil combustion consumption by to the public,49.8456,TJ,N2O,3.9,kg/TJ,194.39783999999997,kg +c3ad9b21-9c17-3ee4-82fe-ca9f6cdd44fb,SESCO,II.1.1,Rio Negro,AR-R,annual,2010,gas oil combustion consumption by to the public,134.0052,TJ,CO2,74100.0,kg/TJ,9929785.32,kg +5e0894f8-ae70-36ff-92b8-66f1690d22cf,SESCO,II.1.1,Rio Negro,AR-R,annual,2010,gas oil combustion consumption by to the public,134.0052,TJ,CH4,3.9,kg/TJ,522.62028,kg +5e0894f8-ae70-36ff-92b8-66f1690d22cf,SESCO,II.1.1,Rio Negro,AR-R,annual,2010,gas oil combustion consumption by to the public,134.0052,TJ,N2O,3.9,kg/TJ,522.62028,kg +e72abfa6-e15d-35ef-b4ab-c088c431d65d,SESCO,II.1.1,Salta,AR-A,annual,2010,gas oil combustion consumption by to the public,109.4436,TJ,CO2,74100.0,kg/TJ,8109770.760000001,kg +ba0b1e8c-a5e0-3baa-8f4b-05c0b07d3c19,SESCO,II.1.1,Salta,AR-A,annual,2010,gas oil combustion consumption by to the public,109.4436,TJ,CH4,3.9,kg/TJ,426.83004,kg +ba0b1e8c-a5e0-3baa-8f4b-05c0b07d3c19,SESCO,II.1.1,Salta,AR-A,annual,2010,gas oil combustion consumption by to the public,109.4436,TJ,N2O,3.9,kg/TJ,426.83004,kg +be3cefbf-59eb-3c97-8197-eeec5540a5ea,SESCO,II.1.1,San Juan,AR-J,annual,2010,gas oil combustion consumption by to the public,45.00552,TJ,CO2,74100.0,kg/TJ,3334909.0319999997,kg +d5230cbe-2c78-3107-9643-2b5a60a2feea,SESCO,II.1.1,San Juan,AR-J,annual,2010,gas oil combustion consumption by to the public,45.00552,TJ,CH4,3.9,kg/TJ,175.521528,kg +d5230cbe-2c78-3107-9643-2b5a60a2feea,SESCO,II.1.1,San Juan,AR-J,annual,2010,gas oil combustion consumption by to the public,45.00552,TJ,N2O,3.9,kg/TJ,175.521528,kg +dae9d2d0-fabe-3597-bf00-65949ad35eae,SESCO,II.1.1,San Luis,AR-D,annual,2010,gas oil combustion consumption by to the public,13.94232,TJ,CO2,74100.0,kg/TJ,1033125.912,kg +a678e33f-9253-3bb2-801d-e12923a11f8e,SESCO,II.1.1,San Luis,AR-D,annual,2010,gas oil combustion consumption by to the public,13.94232,TJ,CH4,3.9,kg/TJ,54.375048,kg +a678e33f-9253-3bb2-801d-e12923a11f8e,SESCO,II.1.1,San Luis,AR-D,annual,2010,gas oil combustion consumption by to the public,13.94232,TJ,N2O,3.9,kg/TJ,54.375048,kg +130173ed-8f3b-3a1f-9ba1-c5201e629d57,SESCO,II.1.1,Santa Fe,AR-S,annual,2010,gas oil combustion consumption by to the public,1521.69948,TJ,CO2,74100.0,kg/TJ,112757931.468,kg +5185f248-45a6-3a5b-9302-170431b23dcb,SESCO,II.1.1,Santa Fe,AR-S,annual,2010,gas oil combustion consumption by to the public,1521.69948,TJ,CH4,3.9,kg/TJ,5934.627972,kg +5185f248-45a6-3a5b-9302-170431b23dcb,SESCO,II.1.1,Santa Fe,AR-S,annual,2010,gas oil combustion consumption by to the public,1521.69948,TJ,N2O,3.9,kg/TJ,5934.627972,kg +4a4f986a-bcb5-3478-bb4f-850ed65da734,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2010,gas oil combustion consumption by to the public,106.9152,TJ,CO2,74100.0,kg/TJ,7922416.32,kg +27454f95-1aba-3186-a40f-2af8bb9dfb8c,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2010,gas oil combustion consumption by to the public,106.9152,TJ,CH4,3.9,kg/TJ,416.96927999999997,kg +27454f95-1aba-3186-a40f-2af8bb9dfb8c,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2010,gas oil combustion consumption by to the public,106.9152,TJ,N2O,3.9,kg/TJ,416.96927999999997,kg +5d231ccf-89d1-395c-a012-9fbe5931068c,SESCO,II.1.1,Tucuman,AR-T,annual,2010,gas oil combustion consumption by to the public,150.69263999999998,TJ,CO2,74100.0,kg/TJ,11166324.623999998,kg +9755b57e-2b2d-3be7-ab6d-a976343a320f,SESCO,II.1.1,Tucuman,AR-T,annual,2010,gas oil combustion consumption by to the public,150.69263999999998,TJ,CH4,3.9,kg/TJ,587.701296,kg +9755b57e-2b2d-3be7-ab6d-a976343a320f,SESCO,II.1.1,Tucuman,AR-T,annual,2010,gas oil combustion consumption by to the public,150.69263999999998,TJ,N2O,3.9,kg/TJ,587.701296,kg +877b7e3f-cc56-3558-a035-4c647b39dcf5,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,jet kerosene combustion consumption by to the public,119.80447699999998,TJ,CO2,71500.0,kg/TJ,8566020.105499998,kg +c47d00dd-cf10-3936-a2b6-a05ea0e763f8,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,jet kerosene combustion consumption by to the public,119.80447699999998,TJ,CH4,0.5,kg/TJ,59.90223849999999,kg +9e11c2c0-c3bc-3857-a38f-7f76ab97c3c8,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,jet kerosene combustion consumption by to the public,119.80447699999998,TJ,N2O,2.0,kg/TJ,239.60895399999995,kg +56e386ef-1302-3cd1-b6f5-fdab9364bcb6,SESCO,II.1.1,Chaco,AR-H,annual,2010,jet kerosene combustion consumption by to the public,4.371967,TJ,CO2,71500.0,kg/TJ,312595.6405,kg +0d613e05-1a48-34bc-aba6-08460965a0a4,SESCO,II.1.1,Chaco,AR-H,annual,2010,jet kerosene combustion consumption by to the public,4.371967,TJ,CH4,0.5,kg/TJ,2.1859835,kg +24cf961b-3167-3cd9-949f-eeacc254dff5,SESCO,II.1.1,Chaco,AR-H,annual,2010,jet kerosene combustion consumption by to the public,4.371967,TJ,N2O,2.0,kg/TJ,8.743934,kg +84ca22c3-90e8-3e82-8df4-950ed92f8f9f,SESCO,II.1.1,Córdoba,AR-X,annual,2010,jet kerosene combustion consumption by to the public,35.44753099999999,TJ,CO2,71500.0,kg/TJ,2534498.466499999,kg +bceb5df3-4345-3ea9-bfb2-589b98db4999,SESCO,II.1.1,Córdoba,AR-X,annual,2010,jet kerosene combustion consumption by to the public,35.44753099999999,TJ,CH4,0.5,kg/TJ,17.723765499999995,kg +af3c8684-e7f2-3b0e-99e6-bc0b427b0525,SESCO,II.1.1,Córdoba,AR-X,annual,2010,jet kerosene combustion consumption by to the public,35.44753099999999,TJ,N2O,2.0,kg/TJ,70.89506199999998,kg +1f92e4e0-2fe5-3bbf-89ea-c10318cf73ea,SESCO,II.1.1,Entre Rios,AR-E,annual,2010,jet kerosene combustion consumption by to the public,22.897783999999998,TJ,CO2,71500.0,kg/TJ,1637191.5559999999,kg +b06539dd-08e0-30bc-8b5b-338f1ad0d5a1,SESCO,II.1.1,Entre Rios,AR-E,annual,2010,jet kerosene combustion consumption by to the public,22.897783999999998,TJ,CH4,0.5,kg/TJ,11.448891999999999,kg +b9da4139-484e-3fd8-9a65-2a41d3e5ba25,SESCO,II.1.1,Entre Rios,AR-E,annual,2010,jet kerosene combustion consumption by to the public,22.897783999999998,TJ,N2O,2.0,kg/TJ,45.795567999999996,kg +c234d106-6f0d-3539-bda9-62e9053681f6,SESCO,II.1.1,La Pampa,AR-L,annual,2010,jet kerosene combustion consumption by to the public,2.9251289999999996,TJ,CO2,71500.0,kg/TJ,209146.72349999996,kg +cb8a70c3-b95c-3087-ada6-a8591740cef9,SESCO,II.1.1,La Pampa,AR-L,annual,2010,jet kerosene combustion consumption by to the public,2.9251289999999996,TJ,CH4,0.5,kg/TJ,1.4625644999999998,kg +433657b5-068d-39b0-a617-3a4602210db6,SESCO,II.1.1,La Pampa,AR-L,annual,2010,jet kerosene combustion consumption by to the public,2.9251289999999996,TJ,N2O,2.0,kg/TJ,5.850257999999999,kg +b6a84fa7-c222-37e5-bb8b-2aaac06bc99c,SESCO,II.1.1,Mendoza,AR-M,annual,2010,jet kerosene combustion consumption by to the public,5.001026999999999,TJ,CO2,71500.0,kg/TJ,357573.4304999999,kg +2af91551-30a8-3305-be3d-0782bb535afd,SESCO,II.1.1,Mendoza,AR-M,annual,2010,jet kerosene combustion consumption by to the public,5.001026999999999,TJ,CH4,0.5,kg/TJ,2.5005134999999994,kg +991cafc6-b6e5-3524-8fc1-6f7091c269b9,SESCO,II.1.1,Mendoza,AR-M,annual,2010,jet kerosene combustion consumption by to the public,5.001026999999999,TJ,N2O,2.0,kg/TJ,10.002053999999998,kg +ad27df66-b81c-30de-a5ac-8aedb6fa78e9,SESCO,II.1.1,Santa Fe,AR-S,annual,2010,jet kerosene combustion consumption by to the public,25.414023999999994,TJ,CO2,71500.0,kg/TJ,1817102.7159999995,kg +6103999e-9e67-322c-bbbc-165dc22c884c,SESCO,II.1.1,Santa Fe,AR-S,annual,2010,jet kerosene combustion consumption by to the public,25.414023999999994,TJ,CH4,0.5,kg/TJ,12.707011999999997,kg +c2e3d12f-9d73-3091-89c5-dd8b7005f017,SESCO,II.1.1,Santa Fe,AR-S,annual,2010,jet kerosene combustion consumption by to the public,25.414023999999994,TJ,N2O,2.0,kg/TJ,50.82804799999999,kg +5d545b4e-2a72-3c1e-95f8-740e904cc13d,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2010,jet kerosene combustion consumption by to the public,0.62906,TJ,CO2,71500.0,kg/TJ,44977.78999999999,kg +098b6c1b-32d6-3fbc-8f5c-db870d3a4df4,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2010,jet kerosene combustion consumption by to the public,0.62906,TJ,CH4,0.5,kg/TJ,0.31453,kg +61da2c75-40bc-346f-b02c-b436c3df0d7d,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2010,jet kerosene combustion consumption by to the public,0.62906,TJ,N2O,2.0,kg/TJ,1.25812,kg +fccbff91-77d2-3d8a-863d-228e27cb5f68,SESCO,I.3.1,Buenos Aires,AR-B,annual,2010,gas oil combustion consumption by petrochemical industries,0.18059999999999998,TJ,CO2,74100.0,kg/TJ,13382.46,kg +f200095e-cce8-3c31-9252-d5f4f4554070,SESCO,I.3.1,Buenos Aires,AR-B,annual,2010,gas oil combustion consumption by petrochemical industries,0.18059999999999998,TJ,CH4,3.9,kg/TJ,0.70434,kg +f200095e-cce8-3c31-9252-d5f4f4554070,SESCO,I.3.1,Buenos Aires,AR-B,annual,2010,gas oil combustion consumption by petrochemical industries,0.18059999999999998,TJ,N2O,3.9,kg/TJ,0.70434,kg +3de08342-2466-3a68-ba16-d7420fb24112,SESCO,I.3.1,Capital Federal,AR-C,annual,2010,gas oil combustion consumption by petrochemical industries,1.37256,TJ,CO2,74100.0,kg/TJ,101706.696,kg +d9b3805d-362c-3c41-b311-d6e7bead1f63,SESCO,I.3.1,Capital Federal,AR-C,annual,2010,gas oil combustion consumption by petrochemical industries,1.37256,TJ,CH4,3.9,kg/TJ,5.352984,kg +d9b3805d-362c-3c41-b311-d6e7bead1f63,SESCO,I.3.1,Capital Federal,AR-C,annual,2010,gas oil combustion consumption by petrochemical industries,1.37256,TJ,N2O,3.9,kg/TJ,5.352984,kg +9f325c73-2b72-3859-b004-63b6b18ea35b,SESCO,I.3.1,Capital Federal,AR-C,annual,2010,gas oil combustion consumption by petrochemical industries,0.18059999999999998,TJ,CO2,74100.0,kg/TJ,13382.46,kg +25d89e0f-6ef1-371c-b41c-1eb07c9e8346,SESCO,I.3.1,Capital Federal,AR-C,annual,2010,gas oil combustion consumption by petrochemical industries,0.18059999999999998,TJ,CH4,3.9,kg/TJ,0.70434,kg +25d89e0f-6ef1-371c-b41c-1eb07c9e8346,SESCO,I.3.1,Capital Federal,AR-C,annual,2010,gas oil combustion consumption by petrochemical industries,0.18059999999999998,TJ,N2O,3.9,kg/TJ,0.70434,kg +4ef98a12-fa50-3473-abb9-2dce62e25df0,SESCO,II.2.1,Buenos Aires,AR-B,annual,2010,gas oil combustion consumption by railway transport,875.44044,TJ,CO2,74100.0,kg/TJ,64870136.603999995,kg +aec0e1d7-7b90-3520-8b84-3a98dc63053f,SESCO,II.2.1,Buenos Aires,AR-B,annual,2010,gas oil combustion consumption by railway transport,875.44044,TJ,CH4,3.9,kg/TJ,3414.2177159999997,kg +aec0e1d7-7b90-3520-8b84-3a98dc63053f,SESCO,II.2.1,Buenos Aires,AR-B,annual,2010,gas oil combustion consumption by railway transport,875.44044,TJ,N2O,3.9,kg/TJ,3414.2177159999997,kg +bb44e1a5-b071-3dd4-be1a-f0367b4b0bdf,SESCO,II.2.1,Capital Federal,AR-C,annual,2010,gas oil combustion consumption by railway transport,1494.8262,TJ,CO2,74100.0,kg/TJ,110766621.42,kg +e00226de-805d-3713-b10e-074c8007e0e7,SESCO,II.2.1,Capital Federal,AR-C,annual,2010,gas oil combustion consumption by railway transport,1494.8262,TJ,CH4,3.9,kg/TJ,5829.82218,kg +e00226de-805d-3713-b10e-074c8007e0e7,SESCO,II.2.1,Capital Federal,AR-C,annual,2010,gas oil combustion consumption by railway transport,1494.8262,TJ,N2O,3.9,kg/TJ,5829.82218,kg +8a05f4a3-1498-3532-9f11-2192c16cb780,SESCO,II.2.1,Córdoba,AR-X,annual,2010,gas oil combustion consumption by railway transport,17.157,TJ,CO2,74100.0,kg/TJ,1271333.7,kg +c4f37b6a-01f8-3556-9e9d-7d2e2560083b,SESCO,II.2.1,Córdoba,AR-X,annual,2010,gas oil combustion consumption by railway transport,17.157,TJ,CH4,3.9,kg/TJ,66.9123,kg +c4f37b6a-01f8-3556-9e9d-7d2e2560083b,SESCO,II.2.1,Córdoba,AR-X,annual,2010,gas oil combustion consumption by railway transport,17.157,TJ,N2O,3.9,kg/TJ,66.9123,kg +3bbdb347-9fc5-3b86-99d5-ae4969188fda,SESCO,II.2.1,Santa Fe,AR-S,annual,2010,gas oil combustion consumption by railway transport,256.27139999999997,TJ,CO2,74100.0,kg/TJ,18989710.74,kg +664d2e87-e4df-3485-934f-566c4d2b7886,SESCO,II.2.1,Santa Fe,AR-S,annual,2010,gas oil combustion consumption by railway transport,256.27139999999997,TJ,CH4,3.9,kg/TJ,999.4584599999998,kg +664d2e87-e4df-3485-934f-566c4d2b7886,SESCO,II.2.1,Santa Fe,AR-S,annual,2010,gas oil combustion consumption by railway transport,256.27139999999997,TJ,N2O,3.9,kg/TJ,999.4584599999998,kg +aee0e807-fe14-3f2e-8466-7c9e65037c94,SESCO,II.2.1,Santiago del Estero,AR-G,annual,2010,gas oil combustion consumption by railway transport,7.36848,TJ,CO2,74100.0,kg/TJ,546004.368,kg +13aa7f93-ad76-3868-ad03-d7d0d6dc9c0d,SESCO,II.2.1,Santiago del Estero,AR-G,annual,2010,gas oil combustion consumption by railway transport,7.36848,TJ,CH4,3.9,kg/TJ,28.737071999999998,kg +13aa7f93-ad76-3868-ad03-d7d0d6dc9c0d,SESCO,II.2.1,Santiago del Estero,AR-G,annual,2010,gas oil combustion consumption by railway transport,7.36848,TJ,N2O,3.9,kg/TJ,28.737071999999998,kg +46b9a657-5683-30de-b2da-384f14a55001,SESCO,II.2.1,Tucuman,AR-T,annual,2010,gas oil combustion consumption by railway transport,7.62132,TJ,CO2,74100.0,kg/TJ,564739.812,kg +ffcc70f3-01e0-357f-a17c-441bc9de9267,SESCO,II.2.1,Tucuman,AR-T,annual,2010,gas oil combustion consumption by railway transport,7.62132,TJ,CH4,3.9,kg/TJ,29.723148,kg +ffcc70f3-01e0-357f-a17c-441bc9de9267,SESCO,II.2.1,Tucuman,AR-T,annual,2010,gas oil combustion consumption by railway transport,7.62132,TJ,N2O,3.9,kg/TJ,29.723148,kg +f522c101-adf4-39db-ba79-fbbc8e1b01ff,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,gasoline combustion consumption by freight transport,4.7844,TJ,CO2,69300.0,kg/TJ,331558.92,kg +754108c6-5882-3a57-8b36-7ae3361392c2,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,gasoline combustion consumption by freight transport,4.7844,TJ,CH4,33.0,kg/TJ,157.8852,kg +0e4c3d01-9519-3df8-bc82-69c19e5803e2,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,gasoline combustion consumption by freight transport,4.7844,TJ,N2O,3.2,kg/TJ,15.31008,kg +908ec396-06af-309b-943f-22822d61158a,SESCO,II.1.1,Capital Federal,AR-C,annual,2010,gasoline combustion consumption by freight transport,2.215,TJ,CO2,69300.0,kg/TJ,153499.5,kg +f9ae3f64-b722-3e03-99c9-bcc21c824381,SESCO,II.1.1,Capital Federal,AR-C,annual,2010,gasoline combustion consumption by freight transport,2.215,TJ,CH4,33.0,kg/TJ,73.095,kg +b2454f96-300c-3f0c-a6fd-c5a21595705a,SESCO,II.1.1,Capital Federal,AR-C,annual,2010,gasoline combustion consumption by freight transport,2.215,TJ,N2O,3.2,kg/TJ,7.088,kg +8be79666-4252-3420-99c5-d1e0b4262190,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,gas oil combustion consumption by freight transport,953.2067999999999,TJ,CO2,74100.0,kg/TJ,70632623.88,kg +2378a78f-5048-3f31-b7e0-1bb5d1afdd61,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,gas oil combustion consumption by freight transport,953.2067999999999,TJ,CH4,3.9,kg/TJ,3717.5065199999995,kg +2378a78f-5048-3f31-b7e0-1bb5d1afdd61,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,gas oil combustion consumption by freight transport,953.2067999999999,TJ,N2O,3.9,kg/TJ,3717.5065199999995,kg +70b807f4-cdd5-351f-9647-13d23d00e475,SESCO,II.1.1,Capital Federal,AR-C,annual,2010,gas oil combustion consumption by freight transport,201.29676,TJ,CO2,74100.0,kg/TJ,14916089.916000001,kg +5a64871b-271c-37dd-b3da-a50f13d663fc,SESCO,II.1.1,Capital Federal,AR-C,annual,2010,gas oil combustion consumption by freight transport,201.29676,TJ,CH4,3.9,kg/TJ,785.057364,kg +5a64871b-271c-37dd-b3da-a50f13d663fc,SESCO,II.1.1,Capital Federal,AR-C,annual,2010,gas oil combustion consumption by freight transport,201.29676,TJ,N2O,3.9,kg/TJ,785.057364,kg +2b3ca24f-b438-33aa-bc7f-c8f87f9882e3,SESCO,II.1.1,Córdoba,AR-X,annual,2010,gas oil combustion consumption by freight transport,148.23648,TJ,CO2,74100.0,kg/TJ,10984323.168,kg +e238a20a-68f2-36e1-baad-3e5eaeb20c4d,SESCO,II.1.1,Córdoba,AR-X,annual,2010,gas oil combustion consumption by freight transport,148.23648,TJ,CH4,3.9,kg/TJ,578.122272,kg +e238a20a-68f2-36e1-baad-3e5eaeb20c4d,SESCO,II.1.1,Córdoba,AR-X,annual,2010,gas oil combustion consumption by freight transport,148.23648,TJ,N2O,3.9,kg/TJ,578.122272,kg +827963a8-fb6e-35e0-91c5-5a914d0cb404,SESCO,II.1.1,Entre Rios,AR-E,annual,2010,gas oil combustion consumption by freight transport,29.0766,TJ,CO2,74100.0,kg/TJ,2154576.06,kg +3a09208c-3f0f-3f12-bec6-7fdccb0ef77a,SESCO,II.1.1,Entre Rios,AR-E,annual,2010,gas oil combustion consumption by freight transport,29.0766,TJ,CH4,3.9,kg/TJ,113.39873999999999,kg +3a09208c-3f0f-3f12-bec6-7fdccb0ef77a,SESCO,II.1.1,Entre Rios,AR-E,annual,2010,gas oil combustion consumption by freight transport,29.0766,TJ,N2O,3.9,kg/TJ,113.39873999999999,kg +45f6fda5-1fb9-349f-9e26-f91348c7f71c,SESCO,II.1.1,Jujuy,AR-Y,annual,2010,gas oil combustion consumption by freight transport,6.28488,TJ,CO2,74100.0,kg/TJ,465709.608,kg +9356b3e6-b53c-3656-988e-5e1f378f64d3,SESCO,II.1.1,Jujuy,AR-Y,annual,2010,gas oil combustion consumption by freight transport,6.28488,TJ,CH4,3.9,kg/TJ,24.511032,kg +9356b3e6-b53c-3656-988e-5e1f378f64d3,SESCO,II.1.1,Jujuy,AR-Y,annual,2010,gas oil combustion consumption by freight transport,6.28488,TJ,N2O,3.9,kg/TJ,24.511032,kg +2af8742e-b53d-3ccc-9916-d404ddeec640,SESCO,II.1.1,La Pampa,AR-L,annual,2010,gas oil combustion consumption by freight transport,12.71424,TJ,CO2,74100.0,kg/TJ,942125.184,kg +99113fd5-ee2b-3646-877f-741a9bf63640,SESCO,II.1.1,La Pampa,AR-L,annual,2010,gas oil combustion consumption by freight transport,12.71424,TJ,CH4,3.9,kg/TJ,49.585536,kg +99113fd5-ee2b-3646-877f-741a9bf63640,SESCO,II.1.1,La Pampa,AR-L,annual,2010,gas oil combustion consumption by freight transport,12.71424,TJ,N2O,3.9,kg/TJ,49.585536,kg +bd88b844-c355-3a23-88ca-f3b0da3fd15e,SESCO,II.1.1,Mendoza,AR-M,annual,2010,gas oil combustion consumption by freight transport,9.10224,TJ,CO2,74100.0,kg/TJ,674475.984,kg +6c84c0b9-fec1-34d2-8bbc-3d86d6ffc516,SESCO,II.1.1,Mendoza,AR-M,annual,2010,gas oil combustion consumption by freight transport,9.10224,TJ,CH4,3.9,kg/TJ,35.498736,kg +6c84c0b9-fec1-34d2-8bbc-3d86d6ffc516,SESCO,II.1.1,Mendoza,AR-M,annual,2010,gas oil combustion consumption by freight transport,9.10224,TJ,N2O,3.9,kg/TJ,35.498736,kg +9541f626-e86e-38e8-adc1-0ad06c404fed,SESCO,II.1.1,Salta,AR-A,annual,2010,gas oil combustion consumption by freight transport,40.635,TJ,CO2,74100.0,kg/TJ,3011053.5,kg +70f0aebe-208c-3d78-87a3-80476f8a8d90,SESCO,II.1.1,Salta,AR-A,annual,2010,gas oil combustion consumption by freight transport,40.635,TJ,CH4,3.9,kg/TJ,158.4765,kg +70f0aebe-208c-3d78-87a3-80476f8a8d90,SESCO,II.1.1,Salta,AR-A,annual,2010,gas oil combustion consumption by freight transport,40.635,TJ,N2O,3.9,kg/TJ,158.4765,kg +c76e817b-4a23-3760-9b24-286292b9b42e,SESCO,II.1.1,San Luis,AR-D,annual,2010,gas oil combustion consumption by freight transport,14.19516,TJ,CO2,74100.0,kg/TJ,1051861.356,kg +e2c3240a-0ff9-324b-bae3-4fbd92d9da44,SESCO,II.1.1,San Luis,AR-D,annual,2010,gas oil combustion consumption by freight transport,14.19516,TJ,CH4,3.9,kg/TJ,55.361124,kg +e2c3240a-0ff9-324b-bae3-4fbd92d9da44,SESCO,II.1.1,San Luis,AR-D,annual,2010,gas oil combustion consumption by freight transport,14.19516,TJ,N2O,3.9,kg/TJ,55.361124,kg +de4dd313-0def-3220-b260-f6493c62ef74,SESCO,II.1.1,Santa Fe,AR-S,annual,2010,gas oil combustion consumption by freight transport,85.6044,TJ,CO2,74100.0,kg/TJ,6343286.04,kg +65de742c-f87e-3e37-9051-b3d2ef255cbd,SESCO,II.1.1,Santa Fe,AR-S,annual,2010,gas oil combustion consumption by freight transport,85.6044,TJ,CH4,3.9,kg/TJ,333.85715999999996,kg +65de742c-f87e-3e37-9051-b3d2ef255cbd,SESCO,II.1.1,Santa Fe,AR-S,annual,2010,gas oil combustion consumption by freight transport,85.6044,TJ,N2O,3.9,kg/TJ,333.85715999999996,kg +67d7a300-9399-3667-94db-b484da112b40,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2010,gas oil combustion consumption by freight transport,4.22604,TJ,CO2,74100.0,kg/TJ,313149.564,kg +f79a8b39-7b68-34cd-a663-063d8eacce5c,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2010,gas oil combustion consumption by freight transport,4.22604,TJ,CH4,3.9,kg/TJ,16.481556,kg +f79a8b39-7b68-34cd-a663-063d8eacce5c,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2010,gas oil combustion consumption by freight transport,4.22604,TJ,N2O,3.9,kg/TJ,16.481556,kg +ad3a2614-0df2-32bc-8732-46d9de8f15f7,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,jet kerosene combustion consumption by public passenger transport,2128.707587,TJ,CO2,71500.0,kg/TJ,152202592.4705,kg +d09f4f09-ac04-32d7-a017-cb033ff64221,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,jet kerosene combustion consumption by public passenger transport,2128.707587,TJ,CH4,0.5,kg/TJ,1064.3537935,kg +4a248f36-7c3b-3b6b-baf0-41c421be1533,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,jet kerosene combustion consumption by public passenger transport,2128.707587,TJ,N2O,2.0,kg/TJ,4257.415174,kg +c357f40a-0b72-39a3-a445-26ffdf619086,SESCO,II.1.1,Capital Federal,AR-C,annual,2010,jet kerosene combustion consumption by public passenger transport,368.25172399999997,TJ,CO2,71500.0,kg/TJ,26329998.266,kg +4f65834d-645f-3742-84f7-6757c9f938a1,SESCO,II.1.1,Capital Federal,AR-C,annual,2010,jet kerosene combustion consumption by public passenger transport,368.25172399999997,TJ,CH4,0.5,kg/TJ,184.12586199999998,kg +5d98fef8-b244-3fb8-a11d-1cadfefe64a3,SESCO,II.1.1,Capital Federal,AR-C,annual,2010,jet kerosene combustion consumption by public passenger transport,368.25172399999997,TJ,N2O,2.0,kg/TJ,736.5034479999999,kg +b748ee08-660d-379a-ac45-a5aa6f8b1665,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,gas oil combustion consumption by public passenger transport,4252.47984,TJ,CO2,74100.0,kg/TJ,315108756.144,kg +1e2ebfbf-5d5e-331c-942a-478abf70d76a,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,gas oil combustion consumption by public passenger transport,4252.47984,TJ,CH4,3.9,kg/TJ,16584.671376,kg +1e2ebfbf-5d5e-331c-942a-478abf70d76a,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,gas oil combustion consumption by public passenger transport,4252.47984,TJ,N2O,3.9,kg/TJ,16584.671376,kg +f36a24e9-a578-3e19-880c-b98b5502e67b,SESCO,II.1.1,Capital Federal,AR-C,annual,2010,gas oil combustion consumption by public passenger transport,381.68004,TJ,CO2,74100.0,kg/TJ,28282490.964,kg +4d78fb18-1819-394d-8fd8-849a5d0df668,SESCO,II.1.1,Capital Federal,AR-C,annual,2010,gas oil combustion consumption by public passenger transport,381.68004,TJ,CH4,3.9,kg/TJ,1488.552156,kg +4d78fb18-1819-394d-8fd8-849a5d0df668,SESCO,II.1.1,Capital Federal,AR-C,annual,2010,gas oil combustion consumption by public passenger transport,381.68004,TJ,N2O,3.9,kg/TJ,1488.552156,kg +1c62990e-3c1b-39b7-b564-6d39402d26ff,SESCO,II.1.1,Córdoba,AR-X,annual,2010,gas oil combustion consumption by public passenger transport,12.71424,TJ,CO2,74100.0,kg/TJ,942125.184,kg +28f5d0b4-74bc-3b22-947a-45cf832eb3b0,SESCO,II.1.1,Córdoba,AR-X,annual,2010,gas oil combustion consumption by public passenger transport,12.71424,TJ,CH4,3.9,kg/TJ,49.585536,kg +28f5d0b4-74bc-3b22-947a-45cf832eb3b0,SESCO,II.1.1,Córdoba,AR-X,annual,2010,gas oil combustion consumption by public passenger transport,12.71424,TJ,N2O,3.9,kg/TJ,49.585536,kg +732767db-c57d-3c5e-b1c4-1da8918d1577,SESCO,II.1.1,Entre Rios,AR-E,annual,2010,gas oil combustion consumption by public passenger transport,9.96912,TJ,CO2,74100.0,kg/TJ,738711.792,kg +af18329c-9681-3293-9363-8a52c4a1dcfd,SESCO,II.1.1,Entre Rios,AR-E,annual,2010,gas oil combustion consumption by public passenger transport,9.96912,TJ,CH4,3.9,kg/TJ,38.879568,kg +af18329c-9681-3293-9363-8a52c4a1dcfd,SESCO,II.1.1,Entre Rios,AR-E,annual,2010,gas oil combustion consumption by public passenger transport,9.96912,TJ,N2O,3.9,kg/TJ,38.879568,kg +66b872b5-e3a1-3a56-8469-a6d2b618a40c,SESCO,II.1.1,Misiones,AR-N,annual,2010,gas oil combustion consumption by public passenger transport,15.350999999999999,TJ,CO2,74100.0,kg/TJ,1137509.0999999999,kg +2a04c13d-46d8-30e6-bd5b-c53fdd92711b,SESCO,II.1.1,Misiones,AR-N,annual,2010,gas oil combustion consumption by public passenger transport,15.350999999999999,TJ,CH4,3.9,kg/TJ,59.8689,kg +2a04c13d-46d8-30e6-bd5b-c53fdd92711b,SESCO,II.1.1,Misiones,AR-N,annual,2010,gas oil combustion consumption by public passenger transport,15.350999999999999,TJ,N2O,3.9,kg/TJ,59.8689,kg +238e11b1-e874-3167-8990-c5b9c406caa4,SESCO,II.1.1,Tucuman,AR-T,annual,2010,gas oil combustion consumption by public passenger transport,11.59452,TJ,CO2,74100.0,kg/TJ,859153.9319999999,kg +6b9244f1-56eb-3812-bb78-9c7dae655fe9,SESCO,II.1.1,Tucuman,AR-T,annual,2010,gas oil combustion consumption by public passenger transport,11.59452,TJ,CH4,3.9,kg/TJ,45.218627999999995,kg +6b9244f1-56eb-3812-bb78-9c7dae655fe9,SESCO,II.1.1,Tucuman,AR-T,annual,2010,gas oil combustion consumption by public passenger transport,11.59452,TJ,N2O,3.9,kg/TJ,45.218627999999995,kg +cada7c32-637b-398e-87b4-e509ffcc1cff,SESCO,I.3.1,Buenos Aires,AR-B,annual,2010,gasoline combustion consumption by petrochemical industries,22.107607199999997,TJ,CO2,69300.0,kg/TJ,1532057.1789599997,kg +99a0cb2c-e982-302c-a134-fadad2f5ca0b,SESCO,I.3.1,Buenos Aires,AR-B,annual,2010,gasoline combustion consumption by petrochemical industries,22.107607199999997,TJ,CH4,33.0,kg/TJ,729.5510375999999,kg +32aaacfa-de3c-3bbf-a3e6-62d644ad2dac,SESCO,I.3.1,Buenos Aires,AR-B,annual,2010,gasoline combustion consumption by petrochemical industries,22.107607199999997,TJ,N2O,3.2,kg/TJ,70.74434303999999,kg +f7444b8b-e738-31f2-80f5-37b9df0354d9,SESCO,II.5.1,Buenos Aires,AR-B,annual,2010,gasoline combustion consumption by agriculture machines,126.4322,TJ,CO2,69300.0,kg/TJ,8761751.459999999,kg +f38099eb-14b4-399d-af7e-a04a8578b3be,SESCO,II.5.1,Buenos Aires,AR-B,annual,2010,gasoline combustion consumption by agriculture machines,126.4322,TJ,CH4,33.0,kg/TJ,4172.2626,kg +3d9b535b-bd75-308b-ba63-0b57e1945b0c,SESCO,II.5.1,Buenos Aires,AR-B,annual,2010,gasoline combustion consumption by agriculture machines,126.4322,TJ,N2O,3.2,kg/TJ,404.58304,kg +a0c545bb-6a9d-3241-bd7c-19ba2a61dfc1,SESCO,II.5.1,La Pampa,AR-L,annual,2010,gasoline combustion consumption by agriculture machines,1.1518,TJ,CO2,69300.0,kg/TJ,79819.73999999999,kg +1d9771a7-bc96-3308-a489-6c0159f30e60,SESCO,II.5.1,La Pampa,AR-L,annual,2010,gasoline combustion consumption by agriculture machines,1.1518,TJ,CH4,33.0,kg/TJ,38.0094,kg +80d93d03-4d5b-3f88-a303-35b2eec299da,SESCO,II.5.1,La Pampa,AR-L,annual,2010,gasoline combustion consumption by agriculture machines,1.1518,TJ,N2O,3.2,kg/TJ,3.68576,kg +8e50bde7-ff78-349b-94f1-021db20ea052,SESCO,II.5.1,Salta,AR-A,annual,2010,gasoline combustion consumption by agriculture machines,1.5505,TJ,CO2,69300.0,kg/TJ,107449.65,kg +06e7fe2a-80f3-304e-bc04-85ae4849779e,SESCO,II.5.1,Salta,AR-A,annual,2010,gasoline combustion consumption by agriculture machines,1.5505,TJ,CH4,33.0,kg/TJ,51.1665,kg +d2c6f7ec-dba4-30b2-ac89-d048809312cf,SESCO,II.5.1,Salta,AR-A,annual,2010,gasoline combustion consumption by agriculture machines,1.5505,TJ,N2O,3.2,kg/TJ,4.961600000000001,kg +3a396b8a-50fa-38d4-943a-135d39ed71bc,SESCO,II.5.1,Buenos Aires,AR-B,annual,2010,gas oil combustion consumption by agriculture machines,3637.1034,TJ,CO2,74100.0,kg/TJ,269509361.94,kg +1907341e-1ae1-3c1c-9352-f6a02c72bcfe,SESCO,II.5.1,Buenos Aires,AR-B,annual,2010,gas oil combustion consumption by agriculture machines,3637.1034,TJ,CH4,3.9,kg/TJ,14184.70326,kg +1907341e-1ae1-3c1c-9352-f6a02c72bcfe,SESCO,II.5.1,Buenos Aires,AR-B,annual,2010,gas oil combustion consumption by agriculture machines,3637.1034,TJ,N2O,3.9,kg/TJ,14184.70326,kg +d2ac4149-efed-344b-8181-208e311c26d3,SESCO,II.5.1,Capital Federal,AR-C,annual,2010,gas oil combustion consumption by agriculture machines,26.07864,TJ,CO2,74100.0,kg/TJ,1932427.224,kg +a44317ca-5ad7-3db6-9ff0-55c5215fce90,SESCO,II.5.1,Capital Federal,AR-C,annual,2010,gas oil combustion consumption by agriculture machines,26.07864,TJ,CH4,3.9,kg/TJ,101.706696,kg +a44317ca-5ad7-3db6-9ff0-55c5215fce90,SESCO,II.5.1,Capital Federal,AR-C,annual,2010,gas oil combustion consumption by agriculture machines,26.07864,TJ,N2O,3.9,kg/TJ,101.706696,kg +885c1aa9-c1c8-3144-ab6d-e5d40b3ee0ac,SESCO,II.5.1,Chaco,AR-H,annual,2010,gas oil combustion consumption by agriculture machines,90.5174424,TJ,CO2,74100.0,kg/TJ,6707342.48184,kg +1cdf3724-4cb3-320f-922a-81fe81ea820e,SESCO,II.5.1,Chaco,AR-H,annual,2010,gas oil combustion consumption by agriculture machines,90.5174424,TJ,CH4,3.9,kg/TJ,353.01802535999997,kg +1cdf3724-4cb3-320f-922a-81fe81ea820e,SESCO,II.5.1,Chaco,AR-H,annual,2010,gas oil combustion consumption by agriculture machines,90.5174424,TJ,N2O,3.9,kg/TJ,353.01802535999997,kg +98182d83-6225-31c8-957d-378693409005,SESCO,II.5.1,Corrientes,AR-W,annual,2010,gas oil combustion consumption by agriculture machines,52.471524,TJ,CO2,74100.0,kg/TJ,3888139.9284,kg +f535f951-695d-3bfa-b124-71334a15c5bb,SESCO,II.5.1,Corrientes,AR-W,annual,2010,gas oil combustion consumption by agriculture machines,52.471524,TJ,CH4,3.9,kg/TJ,204.6389436,kg +f535f951-695d-3bfa-b124-71334a15c5bb,SESCO,II.5.1,Corrientes,AR-W,annual,2010,gas oil combustion consumption by agriculture machines,52.471524,TJ,N2O,3.9,kg/TJ,204.6389436,kg +bd5514dd-0291-3332-930b-6f0e046b6514,SESCO,II.5.1,Córdoba,AR-X,annual,2010,gas oil combustion consumption by agriculture machines,1267.34244,TJ,CO2,74100.0,kg/TJ,93910074.80399999,kg +d2e1239c-1f84-32c5-8b56-1f2cd9e1f951,SESCO,II.5.1,Córdoba,AR-X,annual,2010,gas oil combustion consumption by agriculture machines,1267.34244,TJ,CH4,3.9,kg/TJ,4942.635515999999,kg +d2e1239c-1f84-32c5-8b56-1f2cd9e1f951,SESCO,II.5.1,Córdoba,AR-X,annual,2010,gas oil combustion consumption by agriculture machines,1267.34244,TJ,N2O,3.9,kg/TJ,4942.635515999999,kg +861383f7-eb63-3bd0-8e91-1a742d5ff347,SESCO,II.5.1,Entre Rios,AR-E,annual,2010,gas oil combustion consumption by agriculture machines,1100.1790799999999,TJ,CO2,74100.0,kg/TJ,81523269.828,kg +e676b899-f276-34fc-9a14-c2b37d026321,SESCO,II.5.1,Entre Rios,AR-E,annual,2010,gas oil combustion consumption by agriculture machines,1100.1790799999999,TJ,CH4,3.9,kg/TJ,4290.698412,kg +e676b899-f276-34fc-9a14-c2b37d026321,SESCO,II.5.1,Entre Rios,AR-E,annual,2010,gas oil combustion consumption by agriculture machines,1100.1790799999999,TJ,N2O,3.9,kg/TJ,4290.698412,kg +7fcb18b0-f730-3440-bb55-e7b608b14566,SESCO,II.5.1,Formosa,AR-P,annual,2010,gas oil combustion consumption by agriculture machines,10.04136,TJ,CO2,74100.0,kg/TJ,744064.776,kg +555cd33a-2efd-38e6-bd0d-e07e6df05a9b,SESCO,II.5.1,Formosa,AR-P,annual,2010,gas oil combustion consumption by agriculture machines,10.04136,TJ,CH4,3.9,kg/TJ,39.161303999999994,kg +555cd33a-2efd-38e6-bd0d-e07e6df05a9b,SESCO,II.5.1,Formosa,AR-P,annual,2010,gas oil combustion consumption by agriculture machines,10.04136,TJ,N2O,3.9,kg/TJ,39.161303999999994,kg +7a5a51f1-5122-3a2a-8666-333e9944eaa9,SESCO,II.5.1,Jujuy,AR-Y,annual,2010,gas oil combustion consumption by agriculture machines,573.33276,TJ,CO2,74100.0,kg/TJ,42483957.516,kg +c6cbf47a-8771-399b-b4e1-52824c382f1a,SESCO,II.5.1,Jujuy,AR-Y,annual,2010,gas oil combustion consumption by agriculture machines,573.33276,TJ,CH4,3.9,kg/TJ,2235.997764,kg +c6cbf47a-8771-399b-b4e1-52824c382f1a,SESCO,II.5.1,Jujuy,AR-Y,annual,2010,gas oil combustion consumption by agriculture machines,573.33276,TJ,N2O,3.9,kg/TJ,2235.997764,kg +8e9fd3c2-cea9-3bba-afe6-01770a661676,SESCO,II.5.1,La Pampa,AR-L,annual,2010,gas oil combustion consumption by agriculture machines,178.9746,TJ,CO2,74100.0,kg/TJ,13262017.860000001,kg +1e6f53ae-ae5d-3f2b-804c-c2365027becb,SESCO,II.5.1,La Pampa,AR-L,annual,2010,gas oil combustion consumption by agriculture machines,178.9746,TJ,CH4,3.9,kg/TJ,698.00094,kg +1e6f53ae-ae5d-3f2b-804c-c2365027becb,SESCO,II.5.1,La Pampa,AR-L,annual,2010,gas oil combustion consumption by agriculture machines,178.9746,TJ,N2O,3.9,kg/TJ,698.00094,kg +874f009e-e949-33a7-b072-9c32e27af659,SESCO,II.5.1,Mendoza,AR-M,annual,2010,gas oil combustion consumption by agriculture machines,19.5149136,TJ,CO2,74100.0,kg/TJ,1446055.09776,kg +a5335a6d-2fe7-33f1-a8fe-4948c3c68cbe,SESCO,II.5.1,Mendoza,AR-M,annual,2010,gas oil combustion consumption by agriculture machines,19.5149136,TJ,CH4,3.9,kg/TJ,76.10816304,kg +a5335a6d-2fe7-33f1-a8fe-4948c3c68cbe,SESCO,II.5.1,Mendoza,AR-M,annual,2010,gas oil combustion consumption by agriculture machines,19.5149136,TJ,N2O,3.9,kg/TJ,76.10816304,kg +7fee873a-b5ac-34d1-951a-8402b07cc640,SESCO,II.5.1,Misiones,AR-N,annual,2010,gas oil combustion consumption by agriculture machines,13.40052,TJ,CO2,74100.0,kg/TJ,992978.532,kg +07d4be11-b728-3af5-a949-6ae76f1e2351,SESCO,II.5.1,Misiones,AR-N,annual,2010,gas oil combustion consumption by agriculture machines,13.40052,TJ,CH4,3.9,kg/TJ,52.262028,kg +07d4be11-b728-3af5-a949-6ae76f1e2351,SESCO,II.5.1,Misiones,AR-N,annual,2010,gas oil combustion consumption by agriculture machines,13.40052,TJ,N2O,3.9,kg/TJ,52.262028,kg +01fe12b8-4461-3135-9ae4-25cbfd1fb0cc,SESCO,II.5.1,Neuquén,AR-Q,annual,2010,gas oil combustion consumption by agriculture machines,5.34576,TJ,CO2,74100.0,kg/TJ,396120.81600000005,kg +f27ae4fc-2c06-38ba-b210-730d9a7bcd1d,SESCO,II.5.1,Neuquén,AR-Q,annual,2010,gas oil combustion consumption by agriculture machines,5.34576,TJ,CH4,3.9,kg/TJ,20.848464,kg +f27ae4fc-2c06-38ba-b210-730d9a7bcd1d,SESCO,II.5.1,Neuquén,AR-Q,annual,2010,gas oil combustion consumption by agriculture machines,5.34576,TJ,N2O,3.9,kg/TJ,20.848464,kg +e6e2b45a-2a8e-3b54-9f36-a1b2f3ca8052,SESCO,II.5.1,Rio Negro,AR-R,annual,2010,gas oil combustion consumption by agriculture machines,21.094079999999998,TJ,CO2,74100.0,kg/TJ,1563071.328,kg +37a78e89-7e18-3f58-8002-18659fcd831f,SESCO,II.5.1,Rio Negro,AR-R,annual,2010,gas oil combustion consumption by agriculture machines,21.094079999999998,TJ,CH4,3.9,kg/TJ,82.26691199999999,kg +37a78e89-7e18-3f58-8002-18659fcd831f,SESCO,II.5.1,Rio Negro,AR-R,annual,2010,gas oil combustion consumption by agriculture machines,21.094079999999998,TJ,N2O,3.9,kg/TJ,82.26691199999999,kg +4f6f459c-6fba-36e0-b92d-eaf00a8c9ad4,SESCO,II.5.1,Salta,AR-A,annual,2010,gas oil combustion consumption by agriculture machines,303.80532,TJ,CO2,74100.0,kg/TJ,22511974.212,kg +55ec696e-a0b8-3907-8c56-f6fe1c63efe4,SESCO,II.5.1,Salta,AR-A,annual,2010,gas oil combustion consumption by agriculture machines,303.80532,TJ,CH4,3.9,kg/TJ,1184.8407479999998,kg +55ec696e-a0b8-3907-8c56-f6fe1c63efe4,SESCO,II.5.1,Salta,AR-A,annual,2010,gas oil combustion consumption by agriculture machines,303.80532,TJ,N2O,3.9,kg/TJ,1184.8407479999998,kg +e9694837-862a-3ee2-bf6b-265d21d34834,SESCO,II.5.1,San Juan,AR-J,annual,2010,gas oil combustion consumption by agriculture machines,9.860759999999999,TJ,CO2,74100.0,kg/TJ,730682.3159999999,kg +1d14f153-ba52-3379-934b-003e152d6455,SESCO,II.5.1,San Juan,AR-J,annual,2010,gas oil combustion consumption by agriculture machines,9.860759999999999,TJ,CH4,3.9,kg/TJ,38.45696399999999,kg +1d14f153-ba52-3379-934b-003e152d6455,SESCO,II.5.1,San Juan,AR-J,annual,2010,gas oil combustion consumption by agriculture machines,9.860759999999999,TJ,N2O,3.9,kg/TJ,38.45696399999999,kg +4a0d4e98-a4f5-3455-92b2-78d65752a30e,SESCO,II.5.1,San Luis,AR-D,annual,2010,gas oil combustion consumption by agriculture machines,19.360319999999998,TJ,CO2,74100.0,kg/TJ,1434599.7119999998,kg +8f7e85b7-b9b3-3d17-ae9f-cb3f9e0f6a9c,SESCO,II.5.1,San Luis,AR-D,annual,2010,gas oil combustion consumption by agriculture machines,19.360319999999998,TJ,CH4,3.9,kg/TJ,75.505248,kg +8f7e85b7-b9b3-3d17-ae9f-cb3f9e0f6a9c,SESCO,II.5.1,San Luis,AR-D,annual,2010,gas oil combustion consumption by agriculture machines,19.360319999999998,TJ,N2O,3.9,kg/TJ,75.505248,kg +8055fab0-fcfc-31af-95bd-9fb4d6789b5c,SESCO,II.5.1,Santa Fe,AR-S,annual,2010,gas oil combustion consumption by agriculture machines,1769.04924,TJ,CO2,74100.0,kg/TJ,131086548.684,kg +a0d5f3d5-e980-375a-bbed-5ad97e4d2cf2,SESCO,II.5.1,Santa Fe,AR-S,annual,2010,gas oil combustion consumption by agriculture machines,1769.04924,TJ,CH4,3.9,kg/TJ,6899.292036,kg +a0d5f3d5-e980-375a-bbed-5ad97e4d2cf2,SESCO,II.5.1,Santa Fe,AR-S,annual,2010,gas oil combustion consumption by agriculture machines,1769.04924,TJ,N2O,3.9,kg/TJ,6899.292036,kg +99257d5f-5be2-3dd7-bc68-8d0db4462160,SESCO,II.5.1,Santiago del Estero,AR-G,annual,2010,gas oil combustion consumption by agriculture machines,106.554,TJ,CO2,74100.0,kg/TJ,7895651.4,kg +621060b9-1e5e-30d3-939d-f2d268432108,SESCO,II.5.1,Santiago del Estero,AR-G,annual,2010,gas oil combustion consumption by agriculture machines,106.554,TJ,CH4,3.9,kg/TJ,415.5606,kg +621060b9-1e5e-30d3-939d-f2d268432108,SESCO,II.5.1,Santiago del Estero,AR-G,annual,2010,gas oil combustion consumption by agriculture machines,106.554,TJ,N2O,3.9,kg/TJ,415.5606,kg +2fe21338-fb7a-3211-aaf6-e151029ac6d2,SESCO,II.5.1,Tierra del Fuego,AR-V,annual,2010,gas oil combustion consumption by agriculture machines,26.94552,TJ,CO2,74100.0,kg/TJ,1996663.032,kg +ed82dd21-1e75-3e3d-a444-01160705c869,SESCO,II.5.1,Tierra del Fuego,AR-V,annual,2010,gas oil combustion consumption by agriculture machines,26.94552,TJ,CH4,3.9,kg/TJ,105.08752799999999,kg +ed82dd21-1e75-3e3d-a444-01160705c869,SESCO,II.5.1,Tierra del Fuego,AR-V,annual,2010,gas oil combustion consumption by agriculture machines,26.94552,TJ,N2O,3.9,kg/TJ,105.08752799999999,kg +9518847e-61d9-36ca-97a8-bf1f56dae699,SESCO,II.5.1,Tucuman,AR-T,annual,2010,gas oil combustion consumption by agriculture machines,171.46164,TJ,CO2,74100.0,kg/TJ,12705307.523999998,kg +a47be1ca-2b1f-3cb2-8cad-bb6c4d18bec1,SESCO,II.5.1,Tucuman,AR-T,annual,2010,gas oil combustion consumption by agriculture machines,171.46164,TJ,CH4,3.9,kg/TJ,668.700396,kg +a47be1ca-2b1f-3cb2-8cad-bb6c4d18bec1,SESCO,II.5.1,Tucuman,AR-T,annual,2010,gas oil combustion consumption by agriculture machines,171.46164,TJ,N2O,3.9,kg/TJ,668.700396,kg +0606044e-b345-31e6-9582-d5cbfc0a34c0,SESCO,II.5.1,Buenos Aires,AR-B,annual,2010,gas oil combustion consumption by agriculture machines,0.5418,TJ,CO2,74100.0,kg/TJ,40147.38,kg +8c22cee4-1a1f-312c-82c6-21032fdd7e86,SESCO,II.5.1,Buenos Aires,AR-B,annual,2010,gas oil combustion consumption by agriculture machines,0.5418,TJ,CH4,3.9,kg/TJ,2.1130199999999997,kg +8c22cee4-1a1f-312c-82c6-21032fdd7e86,SESCO,II.5.1,Buenos Aires,AR-B,annual,2010,gas oil combustion consumption by agriculture machines,0.5418,TJ,N2O,3.9,kg/TJ,2.1130199999999997,kg +cdeae499-7d51-3011-beee-012daa1032dc,SESCO,II.5.1,Santiago del Estero,AR-G,annual,2010,gas oil combustion consumption by agriculture machines,1.37256,TJ,CO2,74100.0,kg/TJ,101706.696,kg +13c2d3bd-081b-37ce-88ac-60a1745599ca,SESCO,II.5.1,Santiago del Estero,AR-G,annual,2010,gas oil combustion consumption by agriculture machines,1.37256,TJ,CH4,3.9,kg/TJ,5.352984,kg +13c2d3bd-081b-37ce-88ac-60a1745599ca,SESCO,II.5.1,Santiago del Estero,AR-G,annual,2010,gas oil combustion consumption by agriculture machines,1.37256,TJ,N2O,3.9,kg/TJ,5.352984,kg +3e51841f-b89e-35db-a1c6-0555118ff560,SESCO,II.5.1,Buenos Aires,AR-B,annual,2010,jet kerosene combustion consumption by agriculture machines,16.921713999999998,TJ,CO2,71500.0,kg/TJ,1209902.5509999997,kg +d170dcda-7a61-3662-bdf3-608cca1dba36,SESCO,II.5.1,Buenos Aires,AR-B,annual,2010,jet kerosene combustion consumption by agriculture machines,16.921713999999998,TJ,CH4,0.5,kg/TJ,8.460856999999999,kg +e54079ea-c75c-364f-b425-578a64473519,SESCO,II.5.1,Buenos Aires,AR-B,annual,2010,jet kerosene combustion consumption by agriculture machines,16.921713999999998,TJ,N2O,2.0,kg/TJ,33.843427999999996,kg +a8463086-0191-3923-a161-ef690f18e95c,SESCO,II.5.1,Chubut,AR-U,annual,2010,jet kerosene combustion consumption by agriculture machines,0.31453,TJ,CO2,71500.0,kg/TJ,22488.894999999997,kg +da91a37c-277a-3b98-a7d7-9e8dfee68afa,SESCO,II.5.1,Chubut,AR-U,annual,2010,jet kerosene combustion consumption by agriculture machines,0.31453,TJ,CH4,0.5,kg/TJ,0.157265,kg +a3bab00b-4093-3f29-9cfe-6949391cbac4,SESCO,II.5.1,Chubut,AR-U,annual,2010,jet kerosene combustion consumption by agriculture machines,0.31453,TJ,N2O,2.0,kg/TJ,0.62906,kg +b1fdfe89-3a5f-30d1-830c-a23346655eec,SESCO,II.5.1,Córdoba,AR-X,annual,2010,jet kerosene combustion consumption by agriculture machines,1.0064959999999998,TJ,CO2,71500.0,kg/TJ,71964.46399999999,kg +4a505f02-abd5-35d4-a751-9d58fbb05ebd,SESCO,II.5.1,Córdoba,AR-X,annual,2010,jet kerosene combustion consumption by agriculture machines,1.0064959999999998,TJ,CH4,0.5,kg/TJ,0.5032479999999999,kg +73ab0400-df58-3843-aa7f-44a8cecc4cc3,SESCO,II.5.1,Córdoba,AR-X,annual,2010,jet kerosene combustion consumption by agriculture machines,1.0064959999999998,TJ,N2O,2.0,kg/TJ,2.0129919999999997,kg +c247d568-d08f-34e4-a0ba-d36c112f6006,SESCO,II.5.1,Entre Rios,AR-E,annual,2010,jet kerosene combustion consumption by agriculture machines,0.25162399999999996,TJ,CO2,71500.0,kg/TJ,17991.115999999998,kg +aac76367-1829-3b9f-993d-5226ea127951,SESCO,II.5.1,Entre Rios,AR-E,annual,2010,jet kerosene combustion consumption by agriculture machines,0.25162399999999996,TJ,CH4,0.5,kg/TJ,0.12581199999999998,kg +0fc0f7c0-95fb-373d-a5e2-370892b16287,SESCO,II.5.1,Entre Rios,AR-E,annual,2010,jet kerosene combustion consumption by agriculture machines,0.25162399999999996,TJ,N2O,2.0,kg/TJ,0.5032479999999999,kg +1d111386-22b0-372c-8867-90aab9d0ff05,SESCO,II.5.1,La Pampa,AR-L,annual,2010,jet kerosene combustion consumption by agriculture machines,1.5411969999999997,TJ,CO2,71500.0,kg/TJ,110195.58549999997,kg +9c138e9b-0a91-3e52-b160-cc9e492de70f,SESCO,II.5.1,La Pampa,AR-L,annual,2010,jet kerosene combustion consumption by agriculture machines,1.5411969999999997,TJ,CH4,0.5,kg/TJ,0.7705984999999999,kg +86727eef-d6ac-3315-a6a3-dd90e816010f,SESCO,II.5.1,La Pampa,AR-L,annual,2010,jet kerosene combustion consumption by agriculture machines,1.5411969999999997,TJ,N2O,2.0,kg/TJ,3.0823939999999994,kg +f32220b6-4553-3cbc-bc8a-d77346d4d5b4,SESCO,II.5.1,Santa Fe,AR-S,annual,2010,jet kerosene combustion consumption by agriculture machines,4.780855999999999,TJ,CO2,71500.0,kg/TJ,341831.2039999999,kg +162aaa73-b914-39b2-bbe8-7f7c24770164,SESCO,II.5.1,Santa Fe,AR-S,annual,2010,jet kerosene combustion consumption by agriculture machines,4.780855999999999,TJ,CH4,0.5,kg/TJ,2.3904279999999996,kg +854428bd-6e4c-3955-a09b-3f04eb944c2a,SESCO,II.5.1,Santa Fe,AR-S,annual,2010,jet kerosene combustion consumption by agriculture machines,4.780855999999999,TJ,N2O,2.0,kg/TJ,9.561711999999998,kg +aeef9154-9f5d-36f1-898a-7f29ae7aa852,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,gas oil combustion consumption by to the public,50181.1548,TJ,CO2,74100.0,kg/TJ,3718423570.68,kg +6c3030e4-8dec-3c4b-9ef3-9657182c70fd,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,gas oil combustion consumption by to the public,50181.1548,TJ,CH4,3.9,kg/TJ,195706.50371999998,kg +6c3030e4-8dec-3c4b-9ef3-9657182c70fd,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,gas oil combustion consumption by to the public,50181.1548,TJ,N2O,3.9,kg/TJ,195706.50371999998,kg +409e3b9d-b215-3fa0-ba8c-408efe46a286,SESCO,II.1.1,Capital Federal,AR-C,annual,2010,gas oil combustion consumption by to the public,6288.96156,TJ,CO2,74100.0,kg/TJ,466012051.59599996,kg +397a3781-5599-30f6-a273-ec6dcfd3d9c3,SESCO,II.1.1,Capital Federal,AR-C,annual,2010,gas oil combustion consumption by to the public,6288.96156,TJ,CH4,3.9,kg/TJ,24526.950084,kg +397a3781-5599-30f6-a273-ec6dcfd3d9c3,SESCO,II.1.1,Capital Federal,AR-C,annual,2010,gas oil combustion consumption by to the public,6288.96156,TJ,N2O,3.9,kg/TJ,24526.950084,kg +972c462a-0389-3208-83a3-7feaf2472627,SESCO,II.1.1,Catamarca,AR-K,annual,2010,gas oil combustion consumption by to the public,599.51976,TJ,CO2,74100.0,kg/TJ,44424414.216,kg +4bd17d72-1abb-3cc2-a64a-0dc8c93b41c3,SESCO,II.1.1,Catamarca,AR-K,annual,2010,gas oil combustion consumption by to the public,599.51976,TJ,CH4,3.9,kg/TJ,2338.1270640000002,kg +4bd17d72-1abb-3cc2-a64a-0dc8c93b41c3,SESCO,II.1.1,Catamarca,AR-K,annual,2010,gas oil combustion consumption by to the public,599.51976,TJ,N2O,3.9,kg/TJ,2338.1270640000002,kg +2521cfa5-a4e5-3c75-9e57-b1aee752499b,SESCO,II.1.1,Chaco,AR-H,annual,2010,gas oil combustion consumption by to the public,3126.87228,TJ,CO2,74100.0,kg/TJ,231701235.948,kg +f5ff291e-1165-3137-bb08-363127264129,SESCO,II.1.1,Chaco,AR-H,annual,2010,gas oil combustion consumption by to the public,3126.87228,TJ,CH4,3.9,kg/TJ,12194.801892,kg +f5ff291e-1165-3137-bb08-363127264129,SESCO,II.1.1,Chaco,AR-H,annual,2010,gas oil combustion consumption by to the public,3126.87228,TJ,N2O,3.9,kg/TJ,12194.801892,kg +f2bdc336-586e-3d83-8698-03e05197bb03,SESCO,II.1.1,Chubut,AR-U,annual,2010,gas oil combustion consumption by to the public,4563.68976,TJ,CO2,74100.0,kg/TJ,338169411.216,kg +6590e11d-7f09-3141-9e30-77da1d6b459b,SESCO,II.1.1,Chubut,AR-U,annual,2010,gas oil combustion consumption by to the public,4563.68976,TJ,CH4,3.9,kg/TJ,17798.390064,kg +6590e11d-7f09-3141-9e30-77da1d6b459b,SESCO,II.1.1,Chubut,AR-U,annual,2010,gas oil combustion consumption by to the public,4563.68976,TJ,N2O,3.9,kg/TJ,17798.390064,kg +d929b744-59a9-3ae6-8226-7c4faf92324f,SESCO,II.1.1,Corrientes,AR-W,annual,2010,gas oil combustion consumption by to the public,2656.0842,TJ,CO2,74100.0,kg/TJ,196815839.21999997,kg +570a976d-c45a-34da-a22a-cdfb1994cc54,SESCO,II.1.1,Corrientes,AR-W,annual,2010,gas oil combustion consumption by to the public,2656.0842,TJ,CH4,3.9,kg/TJ,10358.728379999999,kg +570a976d-c45a-34da-a22a-cdfb1994cc54,SESCO,II.1.1,Corrientes,AR-W,annual,2010,gas oil combustion consumption by to the public,2656.0842,TJ,N2O,3.9,kg/TJ,10358.728379999999,kg +0ccbf72b-b2cb-39fa-8d97-ef1bb95ebed2,SESCO,II.1.1,Córdoba,AR-X,annual,2010,gas oil combustion consumption by to the public,15734.88336,TJ,CO2,74100.0,kg/TJ,1165954856.976,kg +12eb3dc0-0cc5-3769-babd-9bbd863a2e6e,SESCO,II.1.1,Córdoba,AR-X,annual,2010,gas oil combustion consumption by to the public,15734.88336,TJ,CH4,3.9,kg/TJ,61366.045104,kg +12eb3dc0-0cc5-3769-babd-9bbd863a2e6e,SESCO,II.1.1,Córdoba,AR-X,annual,2010,gas oil combustion consumption by to the public,15734.88336,TJ,N2O,3.9,kg/TJ,61366.045104,kg +049af3a7-7fa8-3fe0-9d23-b888972b0fb6,SESCO,II.1.1,Entre Rios,AR-E,annual,2010,gas oil combustion consumption by to the public,5355.90972,TJ,CO2,74100.0,kg/TJ,396872910.252,kg +d96fd0eb-6e6b-332d-8b70-77eebb57ca6d,SESCO,II.1.1,Entre Rios,AR-E,annual,2010,gas oil combustion consumption by to the public,5355.90972,TJ,CH4,3.9,kg/TJ,20888.047907999997,kg +d96fd0eb-6e6b-332d-8b70-77eebb57ca6d,SESCO,II.1.1,Entre Rios,AR-E,annual,2010,gas oil combustion consumption by to the public,5355.90972,TJ,N2O,3.9,kg/TJ,20888.047907999997,kg +f71252ce-c64c-329b-a7a8-2c2e9a3a08d3,SESCO,II.1.1,Formosa,AR-P,annual,2010,gas oil combustion consumption by to the public,1048.383,TJ,CO2,74100.0,kg/TJ,77685180.3,kg +13478897-554c-3c1e-945f-ead4f72a6031,SESCO,II.1.1,Formosa,AR-P,annual,2010,gas oil combustion consumption by to the public,1048.383,TJ,CH4,3.9,kg/TJ,4088.6937000000003,kg +13478897-554c-3c1e-945f-ead4f72a6031,SESCO,II.1.1,Formosa,AR-P,annual,2010,gas oil combustion consumption by to the public,1048.383,TJ,N2O,3.9,kg/TJ,4088.6937000000003,kg +ab714a3a-7097-3a70-b099-ee28fd41941b,SESCO,II.1.1,Jujuy,AR-Y,annual,2010,gas oil combustion consumption by to the public,2045.54784,TJ,CO2,74100.0,kg/TJ,151575094.944,kg +df1a9e5a-5db2-32c4-9498-4ea2a705528b,SESCO,II.1.1,Jujuy,AR-Y,annual,2010,gas oil combustion consumption by to the public,2045.54784,TJ,CH4,3.9,kg/TJ,7977.636576,kg +df1a9e5a-5db2-32c4-9498-4ea2a705528b,SESCO,II.1.1,Jujuy,AR-Y,annual,2010,gas oil combustion consumption by to the public,2045.54784,TJ,N2O,3.9,kg/TJ,7977.636576,kg +81fbde1c-2784-3587-bba7-6576ebdb45e7,SESCO,II.1.1,La Pampa,AR-L,annual,2010,gas oil combustion consumption by to the public,3043.8324,TJ,CO2,74100.0,kg/TJ,225547980.83999997,kg +668a8922-6097-3a33-82c9-53d570621a89,SESCO,II.1.1,La Pampa,AR-L,annual,2010,gas oil combustion consumption by to the public,3043.8324,TJ,CH4,3.9,kg/TJ,11870.946359999998,kg +668a8922-6097-3a33-82c9-53d570621a89,SESCO,II.1.1,La Pampa,AR-L,annual,2010,gas oil combustion consumption by to the public,3043.8324,TJ,N2O,3.9,kg/TJ,11870.946359999998,kg +efe05937-8a40-36c0-b3dc-f864c669966d,SESCO,II.1.1,La Rioja,AR-F,annual,2010,gas oil combustion consumption by to the public,1028.30028,TJ,CO2,74100.0,kg/TJ,76197050.748,kg +b49b723d-ca49-3a31-886b-387622e79bae,SESCO,II.1.1,La Rioja,AR-F,annual,2010,gas oil combustion consumption by to the public,1028.30028,TJ,CH4,3.9,kg/TJ,4010.3710919999994,kg +b49b723d-ca49-3a31-886b-387622e79bae,SESCO,II.1.1,La Rioja,AR-F,annual,2010,gas oil combustion consumption by to the public,1028.30028,TJ,N2O,3.9,kg/TJ,4010.3710919999994,kg +58a09b87-968c-3b24-8077-4c5352b228af,SESCO,II.1.1,Mendoza,AR-M,annual,2010,gas oil combustion consumption by to the public,11448.559079999999,TJ,CO2,74100.0,kg/TJ,848338227.828,kg +fac52334-3cab-3f1e-a725-ac083973447e,SESCO,II.1.1,Mendoza,AR-M,annual,2010,gas oil combustion consumption by to the public,11448.559079999999,TJ,CH4,3.9,kg/TJ,44649.380412,kg +fac52334-3cab-3f1e-a725-ac083973447e,SESCO,II.1.1,Mendoza,AR-M,annual,2010,gas oil combustion consumption by to the public,11448.559079999999,TJ,N2O,3.9,kg/TJ,44649.380412,kg +5712f481-c3e9-3136-82ce-2b334c2060d6,SESCO,II.1.1,Misiones,AR-N,annual,2010,gas oil combustion consumption by to the public,5401.34868,TJ,CO2,74100.0,kg/TJ,400239937.188,kg +93df3672-9223-3870-a252-25788c78e3b6,SESCO,II.1.1,Misiones,AR-N,annual,2010,gas oil combustion consumption by to the public,5401.34868,TJ,CH4,3.9,kg/TJ,21065.259852,kg +93df3672-9223-3870-a252-25788c78e3b6,SESCO,II.1.1,Misiones,AR-N,annual,2010,gas oil combustion consumption by to the public,5401.34868,TJ,N2O,3.9,kg/TJ,21065.259852,kg +656ed365-d47d-3945-9c30-182c997356db,SESCO,II.1.1,Neuquén,AR-Q,annual,2010,gas oil combustion consumption by to the public,3590.54472,TJ,CO2,74100.0,kg/TJ,266059363.752,kg +a89e706d-e0fa-3e44-8ef9-e1ba921634aa,SESCO,II.1.1,Neuquén,AR-Q,annual,2010,gas oil combustion consumption by to the public,3590.54472,TJ,CH4,3.9,kg/TJ,14003.124408,kg +a89e706d-e0fa-3e44-8ef9-e1ba921634aa,SESCO,II.1.1,Neuquén,AR-Q,annual,2010,gas oil combustion consumption by to the public,3590.54472,TJ,N2O,3.9,kg/TJ,14003.124408,kg +451a3478-a66e-3036-879f-db7e5423b4bc,SESCO,II.1.1,Rio Negro,AR-R,annual,2010,gas oil combustion consumption by to the public,4847.44848,TJ,CO2,74100.0,kg/TJ,359195932.36800003,kg +09ce228b-e936-3813-a981-f1402899e43c,SESCO,II.1.1,Rio Negro,AR-R,annual,2010,gas oil combustion consumption by to the public,4847.44848,TJ,CH4,3.9,kg/TJ,18905.049071999998,kg +09ce228b-e936-3813-a981-f1402899e43c,SESCO,II.1.1,Rio Negro,AR-R,annual,2010,gas oil combustion consumption by to the public,4847.44848,TJ,N2O,3.9,kg/TJ,18905.049071999998,kg +84f74f41-5de8-3717-be41-cd89cf4f9de1,SESCO,II.1.1,Salta,AR-A,annual,2010,gas oil combustion consumption by to the public,4248.14544,TJ,CO2,74100.0,kg/TJ,314787577.10400003,kg +3f88b922-1921-36c5-ad69-dd1dde4db1e6,SESCO,II.1.1,Salta,AR-A,annual,2010,gas oil combustion consumption by to the public,4248.14544,TJ,CH4,3.9,kg/TJ,16567.767216,kg +3f88b922-1921-36c5-ad69-dd1dde4db1e6,SESCO,II.1.1,Salta,AR-A,annual,2010,gas oil combustion consumption by to the public,4248.14544,TJ,N2O,3.9,kg/TJ,16567.767216,kg +88df7be4-816e-3aa1-ba87-b4052f1d473e,SESCO,II.1.1,San Juan,AR-J,annual,2010,gas oil combustion consumption by to the public,2306.04528,TJ,CO2,74100.0,kg/TJ,170877955.248,kg +36849753-5d4d-308d-a417-f3067e06c380,SESCO,II.1.1,San Juan,AR-J,annual,2010,gas oil combustion consumption by to the public,2306.04528,TJ,CH4,3.9,kg/TJ,8993.576592,kg +36849753-5d4d-308d-a417-f3067e06c380,SESCO,II.1.1,San Juan,AR-J,annual,2010,gas oil combustion consumption by to the public,2306.04528,TJ,N2O,3.9,kg/TJ,8993.576592,kg +8a33ed13-f099-3e20-a84d-e0954433011d,SESCO,II.1.1,San Luis,AR-D,annual,2010,gas oil combustion consumption by to the public,1998.1584,TJ,CO2,74100.0,kg/TJ,148063537.44,kg +31276df5-10aa-33bb-8a3f-04fdb2f52861,SESCO,II.1.1,San Luis,AR-D,annual,2010,gas oil combustion consumption by to the public,1998.1584,TJ,CH4,3.9,kg/TJ,7792.81776,kg +31276df5-10aa-33bb-8a3f-04fdb2f52861,SESCO,II.1.1,San Luis,AR-D,annual,2010,gas oil combustion consumption by to the public,1998.1584,TJ,N2O,3.9,kg/TJ,7792.81776,kg +50102609-08bf-3951-9b33-1f13d78350fd,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2010,gas oil combustion consumption by to the public,3608.06292,TJ,CO2,74100.0,kg/TJ,267357462.37199998,kg +d723b24a-ec40-39a4-a5aa-b582a01635ec,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2010,gas oil combustion consumption by to the public,3608.06292,TJ,CH4,3.9,kg/TJ,14071.445387999998,kg +d723b24a-ec40-39a4-a5aa-b582a01635ec,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2010,gas oil combustion consumption by to the public,3608.06292,TJ,N2O,3.9,kg/TJ,14071.445387999998,kg +930e7320-b6c2-3ba6-8030-f4060016e377,SESCO,II.1.1,Santa Fe,AR-S,annual,2010,gas oil combustion consumption by to the public,12111.43332,TJ,CO2,74100.0,kg/TJ,897457209.012,kg +4a0d0303-fd52-368a-b143-1981c9724bd4,SESCO,II.1.1,Santa Fe,AR-S,annual,2010,gas oil combustion consumption by to the public,12111.43332,TJ,CH4,3.9,kg/TJ,47234.589948,kg +4a0d0303-fd52-368a-b143-1981c9724bd4,SESCO,II.1.1,Santa Fe,AR-S,annual,2010,gas oil combustion consumption by to the public,12111.43332,TJ,N2O,3.9,kg/TJ,47234.589948,kg +6ed01123-6e8b-3ad2-8cd4-8e934ccb0378,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2010,gas oil combustion consumption by to the public,2374.60104,TJ,CO2,74100.0,kg/TJ,175957937.064,kg +bb8fac4a-17d7-3b8d-a0d3-e8f87fbf06b2,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2010,gas oil combustion consumption by to the public,2374.60104,TJ,CH4,3.9,kg/TJ,9260.944056,kg +bb8fac4a-17d7-3b8d-a0d3-e8f87fbf06b2,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2010,gas oil combustion consumption by to the public,2374.60104,TJ,N2O,3.9,kg/TJ,9260.944056,kg +9777898d-53e7-3ab5-888a-7b80253f974f,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2010,gas oil combustion consumption by to the public,992.50536,TJ,CO2,74100.0,kg/TJ,73544647.176,kg +b38e5283-321e-3046-9ddd-a5b875507d5b,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2010,gas oil combustion consumption by to the public,992.50536,TJ,CH4,3.9,kg/TJ,3870.770904,kg +b38e5283-321e-3046-9ddd-a5b875507d5b,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2010,gas oil combustion consumption by to the public,992.50536,TJ,N2O,3.9,kg/TJ,3870.770904,kg +2caab9bf-1e14-3f43-bf3e-7aec01eae859,SESCO,II.1.1,Tucuman,AR-T,annual,2010,gas oil combustion consumption by to the public,2970.87,TJ,CO2,74100.0,kg/TJ,220141467.0,kg +5e29eb59-3cc4-3e9a-b958-56c4ca85554d,SESCO,II.1.1,Tucuman,AR-T,annual,2010,gas oil combustion consumption by to the public,2970.87,TJ,CH4,3.9,kg/TJ,11586.393,kg +5e29eb59-3cc4-3e9a-b958-56c4ca85554d,SESCO,II.1.1,Tucuman,AR-T,annual,2010,gas oil combustion consumption by to the public,2970.87,TJ,N2O,3.9,kg/TJ,11586.393,kg +154dfe58-b49b-3201-ae7f-fa1d8bc26e1a,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,gas oil combustion consumption by to the public,6555.021479999999,TJ,CO2,74100.0,kg/TJ,485727091.668,kg +13f3e3a4-5542-3346-8028-e631578a2a1d,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,gas oil combustion consumption by to the public,6555.021479999999,TJ,CH4,3.9,kg/TJ,25564.583771999998,kg +13f3e3a4-5542-3346-8028-e631578a2a1d,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,gas oil combustion consumption by to the public,6555.021479999999,TJ,N2O,3.9,kg/TJ,25564.583771999998,kg +d378568e-063d-3d33-83eb-6a6f049dba5f,SESCO,II.1.1,Capital Federal,AR-C,annual,2010,gas oil combustion consumption by to the public,927.7060799999999,TJ,CO2,74100.0,kg/TJ,68743020.528,kg +827a7726-5d79-37e3-ab4e-098d4ded9ca9,SESCO,II.1.1,Capital Federal,AR-C,annual,2010,gas oil combustion consumption by to the public,927.7060799999999,TJ,CH4,3.9,kg/TJ,3618.0537119999995,kg +827a7726-5d79-37e3-ab4e-098d4ded9ca9,SESCO,II.1.1,Capital Federal,AR-C,annual,2010,gas oil combustion consumption by to the public,927.7060799999999,TJ,N2O,3.9,kg/TJ,3618.0537119999995,kg +cf024841-9567-3c53-a6f3-14afe6e097cc,SESCO,II.1.1,Catamarca,AR-K,annual,2010,gas oil combustion consumption by to the public,48.54528,TJ,CO2,74100.0,kg/TJ,3597205.2479999997,kg +1af44b36-5838-31d7-908c-15a738915029,SESCO,II.1.1,Catamarca,AR-K,annual,2010,gas oil combustion consumption by to the public,48.54528,TJ,CH4,3.9,kg/TJ,189.32659199999998,kg +1af44b36-5838-31d7-908c-15a738915029,SESCO,II.1.1,Catamarca,AR-K,annual,2010,gas oil combustion consumption by to the public,48.54528,TJ,N2O,3.9,kg/TJ,189.32659199999998,kg +36bf6567-fc04-383c-8439-3364861378b8,SESCO,II.1.1,Chaco,AR-H,annual,2010,gas oil combustion consumption by to the public,371.24136,TJ,CO2,74100.0,kg/TJ,27508984.776,kg +570c8a2a-7012-3e07-9a05-690de20a4cf6,SESCO,II.1.1,Chaco,AR-H,annual,2010,gas oil combustion consumption by to the public,371.24136,TJ,CH4,3.9,kg/TJ,1447.8413039999998,kg +570c8a2a-7012-3e07-9a05-690de20a4cf6,SESCO,II.1.1,Chaco,AR-H,annual,2010,gas oil combustion consumption by to the public,371.24136,TJ,N2O,3.9,kg/TJ,1447.8413039999998,kg +1b27a66b-df90-3156-af25-58f5310ea0c8,SESCO,II.1.1,Chubut,AR-U,annual,2010,gas oil combustion consumption by to the public,362.03076,TJ,CO2,74100.0,kg/TJ,26826479.316,kg +e842c74f-7c88-39cc-a980-5e0262a05cf8,SESCO,II.1.1,Chubut,AR-U,annual,2010,gas oil combustion consumption by to the public,362.03076,TJ,CH4,3.9,kg/TJ,1411.919964,kg +e842c74f-7c88-39cc-a980-5e0262a05cf8,SESCO,II.1.1,Chubut,AR-U,annual,2010,gas oil combustion consumption by to the public,362.03076,TJ,N2O,3.9,kg/TJ,1411.919964,kg +b1037e2d-9369-327f-b21c-9de4552f66a4,SESCO,II.1.1,Corrientes,AR-W,annual,2010,gas oil combustion consumption by to the public,278.26848,TJ,CO2,74100.0,kg/TJ,20619694.368,kg +e8e4bf8c-8b49-3c64-ba2c-fac54b9f18a3,SESCO,II.1.1,Corrientes,AR-W,annual,2010,gas oil combustion consumption by to the public,278.26848,TJ,CH4,3.9,kg/TJ,1085.2470720000001,kg +e8e4bf8c-8b49-3c64-ba2c-fac54b9f18a3,SESCO,II.1.1,Corrientes,AR-W,annual,2010,gas oil combustion consumption by to the public,278.26848,TJ,N2O,3.9,kg/TJ,1085.2470720000001,kg +f3e258cd-fbbe-3007-8539-119ebf236508,SESCO,II.1.1,Córdoba,AR-X,annual,2010,gas oil combustion consumption by to the public,1683.9505199999999,TJ,CO2,74100.0,kg/TJ,124780733.53199999,kg +9c542190-c108-31b3-a7ef-88a182cddcab,SESCO,II.1.1,Córdoba,AR-X,annual,2010,gas oil combustion consumption by to the public,1683.9505199999999,TJ,CH4,3.9,kg/TJ,6567.407028,kg +9c542190-c108-31b3-a7ef-88a182cddcab,SESCO,II.1.1,Córdoba,AR-X,annual,2010,gas oil combustion consumption by to the public,1683.9505199999999,TJ,N2O,3.9,kg/TJ,6567.407028,kg +4b08035e-b9e3-3e54-8c61-4f828d70dc77,SESCO,II.1.1,Entre Rios,AR-E,annual,2010,gas oil combustion consumption by to the public,593.16264,TJ,CO2,74100.0,kg/TJ,43953351.624,kg +b3ed9c8e-03bc-339e-9219-1bce62c6edc9,SESCO,II.1.1,Entre Rios,AR-E,annual,2010,gas oil combustion consumption by to the public,593.16264,TJ,CH4,3.9,kg/TJ,2313.334296,kg +b3ed9c8e-03bc-339e-9219-1bce62c6edc9,SESCO,II.1.1,Entre Rios,AR-E,annual,2010,gas oil combustion consumption by to the public,593.16264,TJ,N2O,3.9,kg/TJ,2313.334296,kg +f0fba9d9-43ae-3d8e-aaea-6241195a8382,SESCO,II.1.1,Formosa,AR-P,annual,2010,gas oil combustion consumption by to the public,96.83772,TJ,CO2,74100.0,kg/TJ,7175675.052,kg +7e07505d-406f-3d27-a0b8-9ed5677d2382,SESCO,II.1.1,Formosa,AR-P,annual,2010,gas oil combustion consumption by to the public,96.83772,TJ,CH4,3.9,kg/TJ,377.667108,kg +7e07505d-406f-3d27-a0b8-9ed5677d2382,SESCO,II.1.1,Formosa,AR-P,annual,2010,gas oil combustion consumption by to the public,96.83772,TJ,N2O,3.9,kg/TJ,377.667108,kg +c9a3c0d9-1201-30df-bb72-729733373198,SESCO,II.1.1,Jujuy,AR-Y,annual,2010,gas oil combustion consumption by to the public,117.2094,TJ,CO2,74100.0,kg/TJ,8685216.540000001,kg +673845d4-614b-33f4-9561-f0b92a683443,SESCO,II.1.1,Jujuy,AR-Y,annual,2010,gas oil combustion consumption by to the public,117.2094,TJ,CH4,3.9,kg/TJ,457.11666,kg +673845d4-614b-33f4-9561-f0b92a683443,SESCO,II.1.1,Jujuy,AR-Y,annual,2010,gas oil combustion consumption by to the public,117.2094,TJ,N2O,3.9,kg/TJ,457.11666,kg +357a58b2-c265-3b4d-8517-5a4bbf5fa9e1,SESCO,II.1.1,La Pampa,AR-L,annual,2010,gas oil combustion consumption by to the public,411.26232,TJ,CO2,74100.0,kg/TJ,30474537.912,kg +ab958ff5-0b5d-3855-a123-6f6b9c9309f1,SESCO,II.1.1,La Pampa,AR-L,annual,2010,gas oil combustion consumption by to the public,411.26232,TJ,CH4,3.9,kg/TJ,1603.9230479999999,kg +ab958ff5-0b5d-3855-a123-6f6b9c9309f1,SESCO,II.1.1,La Pampa,AR-L,annual,2010,gas oil combustion consumption by to the public,411.26232,TJ,N2O,3.9,kg/TJ,1603.9230479999999,kg +8ff4e7a9-27c9-3d6f-b8b3-ca7bc9a53f33,SESCO,II.1.1,La Rioja,AR-F,annual,2010,gas oil combustion consumption by to the public,74.51556,TJ,CO2,74100.0,kg/TJ,5521602.995999999,kg +2c7f78a6-c6c0-3333-9950-eeaaffcc9507,SESCO,II.1.1,La Rioja,AR-F,annual,2010,gas oil combustion consumption by to the public,74.51556,TJ,CH4,3.9,kg/TJ,290.610684,kg +2c7f78a6-c6c0-3333-9950-eeaaffcc9507,SESCO,II.1.1,La Rioja,AR-F,annual,2010,gas oil combustion consumption by to the public,74.51556,TJ,N2O,3.9,kg/TJ,290.610684,kg +33d86d99-6758-3d40-ac60-c0e147af0d92,SESCO,II.1.1,Mendoza,AR-M,annual,2010,gas oil combustion consumption by to the public,776.00208,TJ,CO2,74100.0,kg/TJ,57501754.128,kg +45ef6986-aebf-3154-81c0-23ac15cba33e,SESCO,II.1.1,Mendoza,AR-M,annual,2010,gas oil combustion consumption by to the public,776.00208,TJ,CH4,3.9,kg/TJ,3026.4081119999996,kg +45ef6986-aebf-3154-81c0-23ac15cba33e,SESCO,II.1.1,Mendoza,AR-M,annual,2010,gas oil combustion consumption by to the public,776.00208,TJ,N2O,3.9,kg/TJ,3026.4081119999996,kg +900fbc8c-447f-396f-93c2-e3af3f96dc37,SESCO,II.1.1,Misiones,AR-N,annual,2010,gas oil combustion consumption by to the public,280.21896,TJ,CO2,74100.0,kg/TJ,20764224.935999997,kg +54ad2ec2-0b71-3eea-881e-33e12af212aa,SESCO,II.1.1,Misiones,AR-N,annual,2010,gas oil combustion consumption by to the public,280.21896,TJ,CH4,3.9,kg/TJ,1092.853944,kg +54ad2ec2-0b71-3eea-881e-33e12af212aa,SESCO,II.1.1,Misiones,AR-N,annual,2010,gas oil combustion consumption by to the public,280.21896,TJ,N2O,3.9,kg/TJ,1092.853944,kg +1d1711c7-ba07-324c-a0d9-e72721f63b1b,SESCO,II.1.1,Neuquén,AR-Q,annual,2010,gas oil combustion consumption by to the public,357.7686,TJ,CO2,74100.0,kg/TJ,26510653.259999998,kg +09747c2d-8422-39b3-83c2-fb0e2ad49b1f,SESCO,II.1.1,Neuquén,AR-Q,annual,2010,gas oil combustion consumption by to the public,357.7686,TJ,CH4,3.9,kg/TJ,1395.29754,kg +09747c2d-8422-39b3-83c2-fb0e2ad49b1f,SESCO,II.1.1,Neuquén,AR-Q,annual,2010,gas oil combustion consumption by to the public,357.7686,TJ,N2O,3.9,kg/TJ,1395.29754,kg +cb46cc07-e0f7-3f35-aeec-e64b553d64d3,SESCO,II.1.1,Rio Negro,AR-R,annual,2010,gas oil combustion consumption by to the public,420.87023999999997,TJ,CO2,74100.0,kg/TJ,31186484.783999998,kg +7ef7e3cf-e36c-3175-99a7-185dfb586c7b,SESCO,II.1.1,Rio Negro,AR-R,annual,2010,gas oil combustion consumption by to the public,420.87023999999997,TJ,CH4,3.9,kg/TJ,1641.393936,kg +7ef7e3cf-e36c-3175-99a7-185dfb586c7b,SESCO,II.1.1,Rio Negro,AR-R,annual,2010,gas oil combustion consumption by to the public,420.87023999999997,TJ,N2O,3.9,kg/TJ,1641.393936,kg +c1a40de8-e1d7-30bb-951f-bbcf82c0c5ec,SESCO,II.1.1,Salta,AR-A,annual,2010,gas oil combustion consumption by to the public,361.7418,TJ,CO2,74100.0,kg/TJ,26805067.380000003,kg +e4f7616e-4f4a-3ba8-85a2-9054bac03d01,SESCO,II.1.1,Salta,AR-A,annual,2010,gas oil combustion consumption by to the public,361.7418,TJ,CH4,3.9,kg/TJ,1410.79302,kg +e4f7616e-4f4a-3ba8-85a2-9054bac03d01,SESCO,II.1.1,Salta,AR-A,annual,2010,gas oil combustion consumption by to the public,361.7418,TJ,N2O,3.9,kg/TJ,1410.79302,kg +4168da9d-937c-33b9-a3c7-1f9196775d41,SESCO,II.1.1,San Juan,AR-J,annual,2010,gas oil combustion consumption by to the public,170.667,TJ,CO2,74100.0,kg/TJ,12646424.7,kg +73110cd0-5708-3249-99a2-5c200db855f4,SESCO,II.1.1,San Juan,AR-J,annual,2010,gas oil combustion consumption by to the public,170.667,TJ,CH4,3.9,kg/TJ,665.6013,kg +73110cd0-5708-3249-99a2-5c200db855f4,SESCO,II.1.1,San Juan,AR-J,annual,2010,gas oil combustion consumption by to the public,170.667,TJ,N2O,3.9,kg/TJ,665.6013,kg +84005b7c-de6a-35d1-9fec-a201a2b721cd,SESCO,II.1.1,San Luis,AR-D,annual,2010,gas oil combustion consumption by to the public,257.28276,TJ,CO2,74100.0,kg/TJ,19064652.516,kg +4104e60a-d9e0-3579-8d26-c6ea0cf52b4e,SESCO,II.1.1,San Luis,AR-D,annual,2010,gas oil combustion consumption by to the public,257.28276,TJ,CH4,3.9,kg/TJ,1003.4027639999999,kg +4104e60a-d9e0-3579-8d26-c6ea0cf52b4e,SESCO,II.1.1,San Luis,AR-D,annual,2010,gas oil combustion consumption by to the public,257.28276,TJ,N2O,3.9,kg/TJ,1003.4027639999999,kg +6170a896-90fe-3ecb-a3ed-4a519a5f02cb,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2010,gas oil combustion consumption by to the public,107.63759999999999,TJ,CO2,74100.0,kg/TJ,7975946.159999999,kg +25ebee67-e34e-32b3-9a4a-22cae796948a,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2010,gas oil combustion consumption by to the public,107.63759999999999,TJ,CH4,3.9,kg/TJ,419.78664,kg +25ebee67-e34e-32b3-9a4a-22cae796948a,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2010,gas oil combustion consumption by to the public,107.63759999999999,TJ,N2O,3.9,kg/TJ,419.78664,kg +920adee3-7b20-3aa3-9177-906343142944,SESCO,II.1.1,Santa Fe,AR-S,annual,2010,gas oil combustion consumption by to the public,1612.1439599999999,TJ,CO2,74100.0,kg/TJ,119459867.43599999,kg +185e249d-242a-36c3-b444-aaef751b194c,SESCO,II.1.1,Santa Fe,AR-S,annual,2010,gas oil combustion consumption by to the public,1612.1439599999999,TJ,CH4,3.9,kg/TJ,6287.361443999999,kg +185e249d-242a-36c3-b444-aaef751b194c,SESCO,II.1.1,Santa Fe,AR-S,annual,2010,gas oil combustion consumption by to the public,1612.1439599999999,TJ,N2O,3.9,kg/TJ,6287.361443999999,kg +334fabbb-42e3-3369-bb0a-4ad930bd4170,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2010,gas oil combustion consumption by to the public,232.46832,TJ,CO2,74100.0,kg/TJ,17225902.512000002,kg +56fe05c8-2374-367a-9892-94f044562ca0,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2010,gas oil combustion consumption by to the public,232.46832,TJ,CH4,3.9,kg/TJ,906.626448,kg +56fe05c8-2374-367a-9892-94f044562ca0,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2010,gas oil combustion consumption by to the public,232.46832,TJ,N2O,3.9,kg/TJ,906.626448,kg +24fcc238-9378-34fa-86e4-82319849c89e,SESCO,II.1.1,Tucuman,AR-T,annual,2010,gas oil combustion consumption by to the public,213.108,TJ,CO2,74100.0,kg/TJ,15791302.8,kg +23e96e65-fd21-3d8a-b974-a9ddc40b39b7,SESCO,II.1.1,Tucuman,AR-T,annual,2010,gas oil combustion consumption by to the public,213.108,TJ,CH4,3.9,kg/TJ,831.1212,kg +23e96e65-fd21-3d8a-b974-a9ddc40b39b7,SESCO,II.1.1,Tucuman,AR-T,annual,2010,gas oil combustion consumption by to the public,213.108,TJ,N2O,3.9,kg/TJ,831.1212,kg +9c3b0c6c-bf26-3e9d-a90e-bd8f374d1940,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,jet kerosene combustion consumption by to the public,407.37925599999994,TJ,CO2,71500.0,kg/TJ,29127616.803999994,kg +00429d5e-418d-32da-95b2-6236bb9e619f,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,jet kerosene combustion consumption by to the public,407.37925599999994,TJ,CH4,0.5,kg/TJ,203.68962799999997,kg +5663be5e-d294-33f6-a58f-10a1ed0c498a,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,jet kerosene combustion consumption by to the public,407.37925599999994,TJ,N2O,2.0,kg/TJ,814.7585119999999,kg +78606da2-84ae-3d88-8093-a9a67ff8bc00,SESCO,II.1.1,Capital Federal,AR-C,annual,2010,jet kerosene combustion consumption by to the public,18.588722999999998,TJ,CO2,71500.0,kg/TJ,1329093.6944999998,kg +7e9adcb0-311c-3e1a-9bbd-5a949274b42d,SESCO,II.1.1,Capital Federal,AR-C,annual,2010,jet kerosene combustion consumption by to the public,18.588722999999998,TJ,CH4,0.5,kg/TJ,9.294361499999999,kg +73c42028-fec1-3ad7-a71f-39e765bec69c,SESCO,II.1.1,Capital Federal,AR-C,annual,2010,jet kerosene combustion consumption by to the public,18.588722999999998,TJ,N2O,2.0,kg/TJ,37.177445999999996,kg +abdb8ffc-a6ad-3aa4-ab72-b5f71fcc2104,SESCO,II.1.1,Catamarca,AR-K,annual,2010,jet kerosene combustion consumption by to the public,6.384958999999999,TJ,CO2,71500.0,kg/TJ,456524.56849999994,kg +dfbcd048-f26f-32c6-9b4d-ad1201f9d815,SESCO,II.1.1,Catamarca,AR-K,annual,2010,jet kerosene combustion consumption by to the public,6.384958999999999,TJ,CH4,0.5,kg/TJ,3.1924794999999997,kg +6a460f80-4f18-3135-a342-cfb7a5106337,SESCO,II.1.1,Catamarca,AR-K,annual,2010,jet kerosene combustion consumption by to the public,6.384958999999999,TJ,N2O,2.0,kg/TJ,12.769917999999999,kg +10338493-464a-33dc-9aed-12645a67fc03,SESCO,II.1.1,Chaco,AR-H,annual,2010,jet kerosene combustion consumption by to the public,5.001026999999999,TJ,CO2,71500.0,kg/TJ,357573.4304999999,kg +9ed4ade5-0c18-34e5-a86c-1fee0a792d9f,SESCO,II.1.1,Chaco,AR-H,annual,2010,jet kerosene combustion consumption by to the public,5.001026999999999,TJ,CH4,0.5,kg/TJ,2.5005134999999994,kg +8a5c7f16-b8aa-3589-960f-7ba6bc5e8378,SESCO,II.1.1,Chaco,AR-H,annual,2010,jet kerosene combustion consumption by to the public,5.001026999999999,TJ,N2O,2.0,kg/TJ,10.002053999999998,kg +28aad92d-1fd2-371c-9579-0891d28261ba,SESCO,II.1.1,Chubut,AR-U,annual,2010,jet kerosene combustion consumption by to the public,30.446503999999994,TJ,CO2,71500.0,kg/TJ,2176925.0359999994,kg +71cd4219-7084-30f0-84b5-7d09ce1a5804,SESCO,II.1.1,Chubut,AR-U,annual,2010,jet kerosene combustion consumption by to the public,30.446503999999994,TJ,CH4,0.5,kg/TJ,15.223251999999997,kg +599f7a5c-1db3-332e-a872-661e44a264da,SESCO,II.1.1,Chubut,AR-U,annual,2010,jet kerosene combustion consumption by to the public,30.446503999999994,TJ,N2O,2.0,kg/TJ,60.89300799999999,kg +404aaf0f-cf61-35f3-bb57-998f3f78dd4c,SESCO,II.1.1,Corrientes,AR-W,annual,2010,jet kerosene combustion consumption by to the public,10.977096999999999,TJ,CO2,71500.0,kg/TJ,784862.4354999999,kg +8e0ef41f-b6f2-3eee-9987-45dbc3eaaf19,SESCO,II.1.1,Corrientes,AR-W,annual,2010,jet kerosene combustion consumption by to the public,10.977096999999999,TJ,CH4,0.5,kg/TJ,5.488548499999999,kg +c70b4c36-4564-3bbd-a32b-23f69862f0b0,SESCO,II.1.1,Corrientes,AR-W,annual,2010,jet kerosene combustion consumption by to the public,10.977096999999999,TJ,N2O,2.0,kg/TJ,21.954193999999998,kg +facf9509-91f1-3d25-90ac-1f4c3353caf2,SESCO,II.1.1,Córdoba,AR-X,annual,2010,jet kerosene combustion consumption by to the public,222.30980399999996,TJ,CO2,71500.0,kg/TJ,15895150.985999998,kg +78c2b4d2-a90a-328d-980e-a6cee617cf63,SESCO,II.1.1,Córdoba,AR-X,annual,2010,jet kerosene combustion consumption by to the public,222.30980399999996,TJ,CH4,0.5,kg/TJ,111.15490199999998,kg +0833ac72-8a4e-3912-80ad-ea36f0be63d2,SESCO,II.1.1,Córdoba,AR-X,annual,2010,jet kerosene combustion consumption by to the public,222.30980399999996,TJ,N2O,2.0,kg/TJ,444.6196079999999,kg +553a0cd1-404b-3f16-be5c-1d98efe81275,SESCO,II.1.1,Entre Rios,AR-E,annual,2010,jet kerosene combustion consumption by to the public,26.357613999999995,TJ,CO2,71500.0,kg/TJ,1884569.4009999996,kg +ae79a97b-eef5-3fe7-9425-216590d91854,SESCO,II.1.1,Entre Rios,AR-E,annual,2010,jet kerosene combustion consumption by to the public,26.357613999999995,TJ,CH4,0.5,kg/TJ,13.178806999999997,kg +78c0174c-5368-3d0a-ae6a-6d211b9edd10,SESCO,II.1.1,Entre Rios,AR-E,annual,2010,jet kerosene combustion consumption by to the public,26.357613999999995,TJ,N2O,2.0,kg/TJ,52.71522799999999,kg +c054583c-314f-3a37-a766-00a1a8bf2a93,SESCO,II.1.1,Formosa,AR-P,annual,2010,jet kerosene combustion consumption by to the public,0.22017099999999995,TJ,CO2,71500.0,kg/TJ,15742.226499999997,kg +7cefbdee-c13b-3dc9-84c4-c59871d7f649,SESCO,II.1.1,Formosa,AR-P,annual,2010,jet kerosene combustion consumption by to the public,0.22017099999999995,TJ,CH4,0.5,kg/TJ,0.11008549999999998,kg +4c50e37f-6796-3049-87c1-30b2e9c2b16d,SESCO,II.1.1,Formosa,AR-P,annual,2010,jet kerosene combustion consumption by to the public,0.22017099999999995,TJ,N2O,2.0,kg/TJ,0.4403419999999999,kg +16495adb-eade-3cd3-95dd-6416da1c3eca,SESCO,II.1.1,Jujuy,AR-Y,annual,2010,jet kerosene combustion consumption by to the public,5.189744999999999,TJ,CO2,71500.0,kg/TJ,371066.76749999996,kg +4dcd9c10-cb21-39b0-a4c1-132af95cb534,SESCO,II.1.1,Jujuy,AR-Y,annual,2010,jet kerosene combustion consumption by to the public,5.189744999999999,TJ,CH4,0.5,kg/TJ,2.5948724999999997,kg +ed180bbc-1466-3908-9433-7db2224349ca,SESCO,II.1.1,Jujuy,AR-Y,annual,2010,jet kerosene combustion consumption by to the public,5.189744999999999,TJ,N2O,2.0,kg/TJ,10.379489999999999,kg +d597363a-38fc-3fbf-b59a-dd92a8e51224,SESCO,II.1.1,La Pampa,AR-L,annual,2010,jet kerosene combustion consumption by to the public,23.589749999999995,TJ,CO2,71500.0,kg/TJ,1686667.1249999995,kg +a2398d2b-86ae-3a7f-93bf-78d44c62f81a,SESCO,II.1.1,La Pampa,AR-L,annual,2010,jet kerosene combustion consumption by to the public,23.589749999999995,TJ,CH4,0.5,kg/TJ,11.794874999999998,kg +67be3417-b617-3517-ac19-f2c4ba7513ce,SESCO,II.1.1,La Pampa,AR-L,annual,2010,jet kerosene combustion consumption by to the public,23.589749999999995,TJ,N2O,2.0,kg/TJ,47.17949999999999,kg +5b6505e1-525c-3f73-873c-59e3930168c7,SESCO,II.1.1,La Rioja,AR-F,annual,2010,jet kerosene combustion consumption by to the public,5.001026999999999,TJ,CO2,71500.0,kg/TJ,357573.4304999999,kg +deb4db7c-8123-3a7f-855c-0a8d1921a4ee,SESCO,II.1.1,La Rioja,AR-F,annual,2010,jet kerosene combustion consumption by to the public,5.001026999999999,TJ,CH4,0.5,kg/TJ,2.5005134999999994,kg +154c02f2-7624-3498-9982-6f47a9443310,SESCO,II.1.1,La Rioja,AR-F,annual,2010,jet kerosene combustion consumption by to the public,5.001026999999999,TJ,N2O,2.0,kg/TJ,10.002053999999998,kg +b1fdfe62-f257-3902-9edd-c91fcbc1bbef,SESCO,II.1.1,Mendoza,AR-M,annual,2010,jet kerosene combustion consumption by to the public,76.36788399999999,TJ,CO2,71500.0,kg/TJ,5460303.705999999,kg +d0e3ef80-d8a3-3d3b-b96f-d3050cde7678,SESCO,II.1.1,Mendoza,AR-M,annual,2010,jet kerosene combustion consumption by to the public,76.36788399999999,TJ,CH4,0.5,kg/TJ,38.183941999999995,kg +cad3a9d8-8982-3bc7-ab09-8493eaf584e5,SESCO,II.1.1,Mendoza,AR-M,annual,2010,jet kerosene combustion consumption by to the public,76.36788399999999,TJ,N2O,2.0,kg/TJ,152.73576799999998,kg +a423a524-4bc1-305e-87de-a5e4ff3f2f8e,SESCO,II.1.1,Misiones,AR-N,annual,2010,jet kerosene combustion consumption by to the public,10.348036999999998,TJ,CO2,71500.0,kg/TJ,739884.6454999999,kg +ff3ae9c0-030c-38b6-b748-030a155635f2,SESCO,II.1.1,Misiones,AR-N,annual,2010,jet kerosene combustion consumption by to the public,10.348036999999998,TJ,CH4,0.5,kg/TJ,5.174018499999999,kg +be292712-0b31-3ad9-9826-c83bdfcb9427,SESCO,II.1.1,Misiones,AR-N,annual,2010,jet kerosene combustion consumption by to the public,10.348036999999998,TJ,N2O,2.0,kg/TJ,20.696073999999996,kg +613ae80f-095a-3a2a-bba6-2869509bd3c9,SESCO,II.1.1,Neuquén,AR-Q,annual,2010,jet kerosene combustion consumption by to the public,25.539835999999998,TJ,CO2,71500.0,kg/TJ,1826098.2739999997,kg +b74fb063-8a2e-364a-a216-f52f8d3d4993,SESCO,II.1.1,Neuquén,AR-Q,annual,2010,jet kerosene combustion consumption by to the public,25.539835999999998,TJ,CH4,0.5,kg/TJ,12.769917999999999,kg +bc63756d-fa55-3cf6-babe-7fa6345b56ac,SESCO,II.1.1,Neuquén,AR-Q,annual,2010,jet kerosene combustion consumption by to the public,25.539835999999998,TJ,N2O,2.0,kg/TJ,51.079671999999995,kg +b54d2d42-843f-37b0-89ba-6e8972916278,SESCO,II.1.1,Rio Negro,AR-R,annual,2010,jet kerosene combustion consumption by to the public,10.505301999999999,TJ,CO2,71500.0,kg/TJ,751129.0929999999,kg +aee5ac16-7244-38f8-bb4a-efcc242794bb,SESCO,II.1.1,Rio Negro,AR-R,annual,2010,jet kerosene combustion consumption by to the public,10.505301999999999,TJ,CH4,0.5,kg/TJ,5.252650999999999,kg +9bd75740-8bc1-3862-8477-29993f9b690a,SESCO,II.1.1,Rio Negro,AR-R,annual,2010,jet kerosene combustion consumption by to the public,10.505301999999999,TJ,N2O,2.0,kg/TJ,21.010603999999997,kg +f900f4f0-f014-37c4-abdf-85ce5a321aa5,SESCO,II.1.1,Salta,AR-A,annual,2010,jet kerosene combustion consumption by to the public,16.418466,TJ,CO2,71500.0,kg/TJ,1173920.319,kg +9d143cf2-292e-37c7-b4a4-935cef787c56,SESCO,II.1.1,Salta,AR-A,annual,2010,jet kerosene combustion consumption by to the public,16.418466,TJ,CH4,0.5,kg/TJ,8.209233,kg +ba371409-44d1-3afa-9c1b-04a900b7615e,SESCO,II.1.1,Salta,AR-A,annual,2010,jet kerosene combustion consumption by to the public,16.418466,TJ,N2O,2.0,kg/TJ,32.836932,kg +29950a6e-bf6c-3677-9862-476a60861605,SESCO,II.1.1,San Juan,AR-J,annual,2010,jet kerosene combustion consumption by to the public,9.750429999999998,TJ,CO2,71500.0,kg/TJ,697155.7449999999,kg +94199d76-b27f-3858-851e-a723ec902ca4,SESCO,II.1.1,San Juan,AR-J,annual,2010,jet kerosene combustion consumption by to the public,9.750429999999998,TJ,CH4,0.5,kg/TJ,4.875214999999999,kg +106c4a33-2200-3c3b-9a05-adf1b2ea7bc7,SESCO,II.1.1,San Juan,AR-J,annual,2010,jet kerosene combustion consumption by to the public,9.750429999999998,TJ,N2O,2.0,kg/TJ,19.500859999999996,kg +b9fd25d5-cfc2-36b7-9529-9f66f45e0352,SESCO,II.1.1,San Luis,AR-D,annual,2010,jet kerosene combustion consumption by to the public,22.992142999999995,TJ,CO2,71500.0,kg/TJ,1643938.2244999995,kg +8579af88-abdc-3d0d-8d9a-9e57a646849f,SESCO,II.1.1,San Luis,AR-D,annual,2010,jet kerosene combustion consumption by to the public,22.992142999999995,TJ,CH4,0.5,kg/TJ,11.496071499999998,kg +cab0182e-9d2b-3d9d-a4f9-6239a50c5c53,SESCO,II.1.1,San Luis,AR-D,annual,2010,jet kerosene combustion consumption by to the public,22.992142999999995,TJ,N2O,2.0,kg/TJ,45.98428599999999,kg +b08ed48e-caba-3665-b260-085a376fe885,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2010,jet kerosene combustion consumption by to the public,24.659151999999995,TJ,CO2,71500.0,kg/TJ,1763129.3679999996,kg +7821a5c9-a6a9-3342-825a-9156b6c6e27c,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2010,jet kerosene combustion consumption by to the public,24.659151999999995,TJ,CH4,0.5,kg/TJ,12.329575999999998,kg +76c0101a-99d8-35af-92ba-31f3672eba36,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2010,jet kerosene combustion consumption by to the public,24.659151999999995,TJ,N2O,2.0,kg/TJ,49.31830399999999,kg +7a823fcd-2e6a-34d1-84d7-0ae86dca8678,SESCO,II.1.1,Santa Fe,AR-S,annual,2010,jet kerosene combustion consumption by to the public,83.25609099999998,TJ,CO2,71500.0,kg/TJ,5952810.506499999,kg +0b64ddbe-751b-3a2b-8b7a-d470399176f1,SESCO,II.1.1,Santa Fe,AR-S,annual,2010,jet kerosene combustion consumption by to the public,83.25609099999998,TJ,CH4,0.5,kg/TJ,41.62804549999999,kg +5b8044da-395a-349d-9c0a-90f6d6a4fe21,SESCO,II.1.1,Santa Fe,AR-S,annual,2010,jet kerosene combustion consumption by to the public,83.25609099999998,TJ,N2O,2.0,kg/TJ,166.51218199999997,kg +6f94a281-1ee0-3caa-a5f3-e0cec2022fcd,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2010,jet kerosene combustion consumption by to the public,15.065986999999998,TJ,CO2,71500.0,kg/TJ,1077218.0705,kg +0e70d273-ca2b-361c-be68-26839bb7ab43,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2010,jet kerosene combustion consumption by to the public,15.065986999999998,TJ,CH4,0.5,kg/TJ,7.532993499999999,kg +c7c89c35-9355-38a1-96be-f503da996330,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2010,jet kerosene combustion consumption by to the public,15.065986999999998,TJ,N2O,2.0,kg/TJ,30.131973999999996,kg +c1e95c6b-23ab-31c8-b35c-bd4d9c09adfa,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2010,jet kerosene combustion consumption by to the public,4.623590999999999,TJ,CO2,71500.0,kg/TJ,330586.75649999996,kg +f8b3e92c-ac0c-3450-93c0-284247fe034a,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2010,jet kerosene combustion consumption by to the public,4.623590999999999,TJ,CH4,0.5,kg/TJ,2.3117954999999997,kg +51107832-1378-369e-a531-a53f1c5ad9ad,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2010,jet kerosene combustion consumption by to the public,4.623590999999999,TJ,N2O,2.0,kg/TJ,9.247181999999999,kg +73728a6d-0aa7-3a8e-95ab-9e7ed2108e89,SESCO,II.1.1,Tucuman,AR-T,annual,2010,jet kerosene combustion consumption by to the public,15.695046999999997,TJ,CO2,71500.0,kg/TJ,1122195.8604999997,kg +2397fa0b-9504-3d26-8386-529580f4eed8,SESCO,II.1.1,Tucuman,AR-T,annual,2010,jet kerosene combustion consumption by to the public,15.695046999999997,TJ,CH4,0.5,kg/TJ,7.8475234999999985,kg +a0788e67-2fee-39a5-b3da-74136ac2d3e5,SESCO,II.1.1,Tucuman,AR-T,annual,2010,jet kerosene combustion consumption by to the public,15.695046999999997,TJ,N2O,2.0,kg/TJ,31.390093999999994,kg +596a50b4-b363-3acc-ae8e-a612d99779ed,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,gasoline combustion consumption by freight transport,10.9421,TJ,CO2,69300.0,kg/TJ,758287.53,kg +910db66d-5283-3733-87bf-bfe08ab618ba,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,gasoline combustion consumption by freight transport,10.9421,TJ,CH4,33.0,kg/TJ,361.0893,kg +8ce0b643-d7ad-379f-9f9d-d18ceb948323,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,gasoline combustion consumption by freight transport,10.9421,TJ,N2O,3.2,kg/TJ,35.014720000000004,kg +e638da2c-0ad2-30e6-b865-daac95c6165a,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,gas oil combustion consumption by freight transport,9295.26528,TJ,CO2,74100.0,kg/TJ,688779157.248,kg +e347bcc3-ea6b-3496-a0e7-829c39d49638,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,gas oil combustion consumption by freight transport,9295.26528,TJ,CH4,3.9,kg/TJ,36251.534591999996,kg +e347bcc3-ea6b-3496-a0e7-829c39d49638,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,gas oil combustion consumption by freight transport,9295.26528,TJ,N2O,3.9,kg/TJ,36251.534591999996,kg +33ba07fe-10e6-3118-b90b-f5b146e4c84a,SESCO,II.1.1,Capital Federal,AR-C,annual,2010,gas oil combustion consumption by freight transport,770.00616,TJ,CO2,74100.0,kg/TJ,57057456.456,kg +3c810132-9d06-3db0-a073-6ac2f3175176,SESCO,II.1.1,Capital Federal,AR-C,annual,2010,gas oil combustion consumption by freight transport,770.00616,TJ,CH4,3.9,kg/TJ,3003.024024,kg +3c810132-9d06-3db0-a073-6ac2f3175176,SESCO,II.1.1,Capital Federal,AR-C,annual,2010,gas oil combustion consumption by freight transport,770.00616,TJ,N2O,3.9,kg/TJ,3003.024024,kg +f2bf0ecb-adb6-311c-8e94-20e1531ec732,SESCO,II.1.1,Catamarca,AR-K,annual,2010,gas oil combustion consumption by freight transport,33.30264,TJ,CO2,74100.0,kg/TJ,2467725.624,kg +362cd3b9-dd7b-3535-87fc-b868522d7371,SESCO,II.1.1,Catamarca,AR-K,annual,2010,gas oil combustion consumption by freight transport,33.30264,TJ,CH4,3.9,kg/TJ,129.880296,kg +362cd3b9-dd7b-3535-87fc-b868522d7371,SESCO,II.1.1,Catamarca,AR-K,annual,2010,gas oil combustion consumption by freight transport,33.30264,TJ,N2O,3.9,kg/TJ,129.880296,kg +8dcf0e13-7a3f-3a1f-886c-130e35a6c975,SESCO,II.1.1,Chaco,AR-H,annual,2010,gas oil combustion consumption by freight transport,265.01243999999997,TJ,CO2,74100.0,kg/TJ,19637421.803999998,kg +400b2d62-e482-3271-b033-51dec5ebf4e8,SESCO,II.1.1,Chaco,AR-H,annual,2010,gas oil combustion consumption by freight transport,265.01243999999997,TJ,CH4,3.9,kg/TJ,1033.5485159999998,kg +400b2d62-e482-3271-b033-51dec5ebf4e8,SESCO,II.1.1,Chaco,AR-H,annual,2010,gas oil combustion consumption by freight transport,265.01243999999997,TJ,N2O,3.9,kg/TJ,1033.5485159999998,kg +4e8e6352-133b-36b3-8183-848f4a8a1e58,SESCO,II.1.1,Chubut,AR-U,annual,2010,gas oil combustion consumption by freight transport,371.8554,TJ,CO2,74100.0,kg/TJ,27554485.139999997,kg +7889a208-0379-392b-8d94-b0da352ba204,SESCO,II.1.1,Chubut,AR-U,annual,2010,gas oil combustion consumption by freight transport,371.8554,TJ,CH4,3.9,kg/TJ,1450.23606,kg +7889a208-0379-392b-8d94-b0da352ba204,SESCO,II.1.1,Chubut,AR-U,annual,2010,gas oil combustion consumption by freight transport,371.8554,TJ,N2O,3.9,kg/TJ,1450.23606,kg +6fd4d2f1-84a2-358e-a7d1-51a1d641fa5e,SESCO,II.1.1,Corrientes,AR-W,annual,2010,gas oil combustion consumption by freight transport,392.40767999999997,TJ,CO2,74100.0,kg/TJ,29077409.088,kg +ef4a3df0-bb0c-35ec-ae90-ae17196b1165,SESCO,II.1.1,Corrientes,AR-W,annual,2010,gas oil combustion consumption by freight transport,392.40767999999997,TJ,CH4,3.9,kg/TJ,1530.3899519999998,kg +ef4a3df0-bb0c-35ec-ae90-ae17196b1165,SESCO,II.1.1,Corrientes,AR-W,annual,2010,gas oil combustion consumption by freight transport,392.40767999999997,TJ,N2O,3.9,kg/TJ,1530.3899519999998,kg +abe03600-779a-371f-a8d3-83ebcdbfbac7,SESCO,II.1.1,Córdoba,AR-X,annual,2010,gas oil combustion consumption by freight transport,2138.8458,TJ,CO2,74100.0,kg/TJ,158488473.78,kg +b5506e9c-e379-3ed6-a016-0ffe2be6f10f,SESCO,II.1.1,Córdoba,AR-X,annual,2010,gas oil combustion consumption by freight transport,2138.8458,TJ,CH4,3.9,kg/TJ,8341.49862,kg +b5506e9c-e379-3ed6-a016-0ffe2be6f10f,SESCO,II.1.1,Córdoba,AR-X,annual,2010,gas oil combustion consumption by freight transport,2138.8458,TJ,N2O,3.9,kg/TJ,8341.49862,kg +6fe92f62-98e7-3a58-8976-b377e8fa0c85,SESCO,II.1.1,Entre Rios,AR-E,annual,2010,gas oil combustion consumption by freight transport,307.30896,TJ,CO2,74100.0,kg/TJ,22771593.936,kg +5075ae2b-a979-3555-9b16-3d558ee03402,SESCO,II.1.1,Entre Rios,AR-E,annual,2010,gas oil combustion consumption by freight transport,307.30896,TJ,CH4,3.9,kg/TJ,1198.504944,kg +5075ae2b-a979-3555-9b16-3d558ee03402,SESCO,II.1.1,Entre Rios,AR-E,annual,2010,gas oil combustion consumption by freight transport,307.30896,TJ,N2O,3.9,kg/TJ,1198.504944,kg +d616d053-4f25-332c-955c-83e24774dc4f,SESCO,II.1.1,Formosa,AR-P,annual,2010,gas oil combustion consumption by freight transport,38.90124,TJ,CO2,74100.0,kg/TJ,2882581.884,kg +1a4127e3-cc4a-3363-bbfd-72c0d6f76765,SESCO,II.1.1,Formosa,AR-P,annual,2010,gas oil combustion consumption by freight transport,38.90124,TJ,CH4,3.9,kg/TJ,151.714836,kg +1a4127e3-cc4a-3363-bbfd-72c0d6f76765,SESCO,II.1.1,Formosa,AR-P,annual,2010,gas oil combustion consumption by freight transport,38.90124,TJ,N2O,3.9,kg/TJ,151.714836,kg +db73513f-3c06-3f14-abfa-ef9d2fda7738,SESCO,II.1.1,Jujuy,AR-Y,annual,2010,gas oil combustion consumption by freight transport,101.56944,TJ,CO2,74100.0,kg/TJ,7526295.504,kg +fa9d81db-e737-314d-81dc-3601fcb47df9,SESCO,II.1.1,Jujuy,AR-Y,annual,2010,gas oil combustion consumption by freight transport,101.56944,TJ,CH4,3.9,kg/TJ,396.120816,kg +fa9d81db-e737-314d-81dc-3601fcb47df9,SESCO,II.1.1,Jujuy,AR-Y,annual,2010,gas oil combustion consumption by freight transport,101.56944,TJ,N2O,3.9,kg/TJ,396.120816,kg +99040028-52d5-3b9f-897e-83910512435d,SESCO,II.1.1,La Pampa,AR-L,annual,2010,gas oil combustion consumption by freight transport,281.77212,TJ,CO2,74100.0,kg/TJ,20879314.091999996,kg +75ee3031-2575-36d7-be6f-a1c51b47cde7,SESCO,II.1.1,La Pampa,AR-L,annual,2010,gas oil combustion consumption by freight transport,281.77212,TJ,CH4,3.9,kg/TJ,1098.9112679999998,kg +75ee3031-2575-36d7-be6f-a1c51b47cde7,SESCO,II.1.1,La Pampa,AR-L,annual,2010,gas oil combustion consumption by freight transport,281.77212,TJ,N2O,3.9,kg/TJ,1098.9112679999998,kg +34727a41-76d3-3a75-a5e1-9e044c0cd979,SESCO,II.1.1,La Rioja,AR-F,annual,2010,gas oil combustion consumption by freight transport,53.92716,TJ,CO2,74100.0,kg/TJ,3996002.556,kg +be32681f-8586-33ac-b412-7f14e79060a5,SESCO,II.1.1,La Rioja,AR-F,annual,2010,gas oil combustion consumption by freight transport,53.92716,TJ,CH4,3.9,kg/TJ,210.315924,kg +be32681f-8586-33ac-b412-7f14e79060a5,SESCO,II.1.1,La Rioja,AR-F,annual,2010,gas oil combustion consumption by freight transport,53.92716,TJ,N2O,3.9,kg/TJ,210.315924,kg +85051099-6506-3134-8dc4-8b13bcbda9fa,SESCO,II.1.1,Mendoza,AR-M,annual,2010,gas oil combustion consumption by freight transport,1168.2291599999999,TJ,CO2,74100.0,kg/TJ,86565780.756,kg +7e7488e6-7172-32d5-846b-99fca5b4cb97,SESCO,II.1.1,Mendoza,AR-M,annual,2010,gas oil combustion consumption by freight transport,1168.2291599999999,TJ,CH4,3.9,kg/TJ,4556.093723999999,kg +7e7488e6-7172-32d5-846b-99fca5b4cb97,SESCO,II.1.1,Mendoza,AR-M,annual,2010,gas oil combustion consumption by freight transport,1168.2291599999999,TJ,N2O,3.9,kg/TJ,4556.093723999999,kg +daa6ec98-9ff0-36b8-803b-02bda25599e4,SESCO,II.1.1,Misiones,AR-N,annual,2010,gas oil combustion consumption by freight transport,229.21752,TJ,CO2,74100.0,kg/TJ,16985018.232,kg +54ab0eeb-8dd8-31c8-a950-8c04c12e5b1e,SESCO,II.1.1,Misiones,AR-N,annual,2010,gas oil combustion consumption by freight transport,229.21752,TJ,CH4,3.9,kg/TJ,893.9483280000001,kg +54ab0eeb-8dd8-31c8-a950-8c04c12e5b1e,SESCO,II.1.1,Misiones,AR-N,annual,2010,gas oil combustion consumption by freight transport,229.21752,TJ,N2O,3.9,kg/TJ,893.9483280000001,kg +b6ac07a9-c65a-3f29-b672-5f770db9897a,SESCO,II.1.1,Neuquén,AR-Q,annual,2010,gas oil combustion consumption by freight transport,488.66748,TJ,CO2,74100.0,kg/TJ,36210260.268,kg +0b3d7611-abb3-3bdc-9135-89c085af8b81,SESCO,II.1.1,Neuquén,AR-Q,annual,2010,gas oil combustion consumption by freight transport,488.66748,TJ,CH4,3.9,kg/TJ,1905.803172,kg +0b3d7611-abb3-3bdc-9135-89c085af8b81,SESCO,II.1.1,Neuquén,AR-Q,annual,2010,gas oil combustion consumption by freight transport,488.66748,TJ,N2O,3.9,kg/TJ,1905.803172,kg +a7ee44c8-c7fb-3a01-b4ff-ebbb33150166,SESCO,II.1.1,Rio Negro,AR-R,annual,2010,gas oil combustion consumption by freight transport,207.90672,TJ,CO2,74100.0,kg/TJ,15405887.952000001,kg +6d975f46-31e1-3698-8db7-fff4ee27eec5,SESCO,II.1.1,Rio Negro,AR-R,annual,2010,gas oil combustion consumption by freight transport,207.90672,TJ,CH4,3.9,kg/TJ,810.836208,kg +6d975f46-31e1-3698-8db7-fff4ee27eec5,SESCO,II.1.1,Rio Negro,AR-R,annual,2010,gas oil combustion consumption by freight transport,207.90672,TJ,N2O,3.9,kg/TJ,810.836208,kg +88a36a28-0450-316a-b6a2-de6763472ec6,SESCO,II.1.1,Salta,AR-A,annual,2010,gas oil combustion consumption by freight transport,395.18892,TJ,CO2,74100.0,kg/TJ,29283498.972,kg +4cb754af-7003-358c-908d-c2329cac2540,SESCO,II.1.1,Salta,AR-A,annual,2010,gas oil combustion consumption by freight transport,395.18892,TJ,CH4,3.9,kg/TJ,1541.236788,kg +4cb754af-7003-358c-908d-c2329cac2540,SESCO,II.1.1,Salta,AR-A,annual,2010,gas oil combustion consumption by freight transport,395.18892,TJ,N2O,3.9,kg/TJ,1541.236788,kg +5b2ed6a4-fc1c-3741-a533-ae6814131696,SESCO,II.1.1,San Juan,AR-J,annual,2010,gas oil combustion consumption by freight transport,80.07804,TJ,CO2,74100.0,kg/TJ,5933782.764,kg +b3607e36-5224-30b7-8f38-9af8f594b444,SESCO,II.1.1,San Juan,AR-J,annual,2010,gas oil combustion consumption by freight transport,80.07804,TJ,CH4,3.9,kg/TJ,312.304356,kg +b3607e36-5224-30b7-8f38-9af8f594b444,SESCO,II.1.1,San Juan,AR-J,annual,2010,gas oil combustion consumption by freight transport,80.07804,TJ,N2O,3.9,kg/TJ,312.304356,kg +b8d3caeb-3f31-3ebb-93d7-43b0eed82dce,SESCO,II.1.1,San Luis,AR-D,annual,2010,gas oil combustion consumption by freight transport,473.38872,TJ,CO2,74100.0,kg/TJ,35078104.151999995,kg +4dcd12f9-b83b-3ceb-8a32-ecde4e0b3883,SESCO,II.1.1,San Luis,AR-D,annual,2010,gas oil combustion consumption by freight transport,473.38872,TJ,CH4,3.9,kg/TJ,1846.2160079999999,kg +4dcd12f9-b83b-3ceb-8a32-ecde4e0b3883,SESCO,II.1.1,San Luis,AR-D,annual,2010,gas oil combustion consumption by freight transport,473.38872,TJ,N2O,3.9,kg/TJ,1846.2160079999999,kg +10501a53-6e93-369c-a0b3-f3822e5ee9f9,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2010,gas oil combustion consumption by freight transport,207.58164,TJ,CO2,74100.0,kg/TJ,15381799.524,kg +b7970ad8-f53e-3c87-8ea4-05e9aca49ba9,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2010,gas oil combustion consumption by freight transport,207.58164,TJ,CH4,3.9,kg/TJ,809.568396,kg +b7970ad8-f53e-3c87-8ea4-05e9aca49ba9,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2010,gas oil combustion consumption by freight transport,207.58164,TJ,N2O,3.9,kg/TJ,809.568396,kg +7d263919-1f72-3169-a2f5-85f184391052,SESCO,II.1.1,Santa Fe,AR-S,annual,2010,gas oil combustion consumption by freight transport,2097.95796,TJ,CO2,74100.0,kg/TJ,155458684.83600003,kg +85162eb6-d2e4-3d7c-9140-6b6dd32d51e1,SESCO,II.1.1,Santa Fe,AR-S,annual,2010,gas oil combustion consumption by freight transport,2097.95796,TJ,CH4,3.9,kg/TJ,8182.036044,kg +85162eb6-d2e4-3d7c-9140-6b6dd32d51e1,SESCO,II.1.1,Santa Fe,AR-S,annual,2010,gas oil combustion consumption by freight transport,2097.95796,TJ,N2O,3.9,kg/TJ,8182.036044,kg +117945c0-5960-3f22-b762-c251a92c8225,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2010,gas oil combustion consumption by freight transport,338.95008,TJ,CO2,74100.0,kg/TJ,25116200.928,kg +96715972-b5f7-335e-bf15-eda8cf39cbd7,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2010,gas oil combustion consumption by freight transport,338.95008,TJ,CH4,3.9,kg/TJ,1321.905312,kg +96715972-b5f7-335e-bf15-eda8cf39cbd7,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2010,gas oil combustion consumption by freight transport,338.95008,TJ,N2O,3.9,kg/TJ,1321.905312,kg +463e662e-9ec1-3299-8ddf-2f701db5a970,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2010,gas oil combustion consumption by freight transport,39.3708,TJ,CO2,74100.0,kg/TJ,2917376.2800000003,kg +a1bbd5b1-59b1-357b-b126-80d4a4a1ed7c,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2010,gas oil combustion consumption by freight transport,39.3708,TJ,CH4,3.9,kg/TJ,153.54612,kg +a1bbd5b1-59b1-357b-b126-80d4a4a1ed7c,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2010,gas oil combustion consumption by freight transport,39.3708,TJ,N2O,3.9,kg/TJ,153.54612,kg +01b7621c-1427-3135-bf95-2df7a11de085,SESCO,II.1.1,Tucuman,AR-T,annual,2010,gas oil combustion consumption by freight transport,373.98648,TJ,CO2,74100.0,kg/TJ,27712398.167999998,kg +0431cdb8-7771-358a-b46d-646f8346811d,SESCO,II.1.1,Tucuman,AR-T,annual,2010,gas oil combustion consumption by freight transport,373.98648,TJ,CH4,3.9,kg/TJ,1458.5472719999998,kg +0431cdb8-7771-358a-b46d-646f8346811d,SESCO,II.1.1,Tucuman,AR-T,annual,2010,gas oil combustion consumption by freight transport,373.98648,TJ,N2O,3.9,kg/TJ,1458.5472719999998,kg +716719b7-d790-3227-b481-229e336fa8be,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,gas oil combustion consumption by freight transport,63.96852,TJ,CO2,74100.0,kg/TJ,4740067.3319999995,kg +b0f7fd76-5eb8-330b-ba7b-e78e329fd561,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,gas oil combustion consumption by freight transport,63.96852,TJ,CH4,3.9,kg/TJ,249.477228,kg +b0f7fd76-5eb8-330b-ba7b-e78e329fd561,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,gas oil combustion consumption by freight transport,63.96852,TJ,N2O,3.9,kg/TJ,249.477228,kg +23f8f4c1-5e5b-3af0-9b96-43e3e3fa158a,SESCO,II.1.1,Capital Federal,AR-C,annual,2010,gas oil combustion consumption by freight transport,18.52956,TJ,CO2,74100.0,kg/TJ,1373040.396,kg +1d960f5a-cbd0-35a1-b165-d106a5e9efdd,SESCO,II.1.1,Capital Federal,AR-C,annual,2010,gas oil combustion consumption by freight transport,18.52956,TJ,CH4,3.9,kg/TJ,72.265284,kg +1d960f5a-cbd0-35a1-b165-d106a5e9efdd,SESCO,II.1.1,Capital Federal,AR-C,annual,2010,gas oil combustion consumption by freight transport,18.52956,TJ,N2O,3.9,kg/TJ,72.265284,kg +cb361035-83e1-3a31-8b75-c5b2268cb3be,SESCO,II.1.1,Chaco,AR-H,annual,2010,gas oil combustion consumption by freight transport,5.63472,TJ,CO2,74100.0,kg/TJ,417532.752,kg +7f2c88aa-691e-31db-b8ca-8a48273e2a92,SESCO,II.1.1,Chaco,AR-H,annual,2010,gas oil combustion consumption by freight transport,5.63472,TJ,CH4,3.9,kg/TJ,21.975407999999998,kg +7f2c88aa-691e-31db-b8ca-8a48273e2a92,SESCO,II.1.1,Chaco,AR-H,annual,2010,gas oil combustion consumption by freight transport,5.63472,TJ,N2O,3.9,kg/TJ,21.975407999999998,kg +bc5d501f-b80a-3253-b4d3-46dca5be1ae4,SESCO,II.1.1,Chubut,AR-U,annual,2010,gas oil combustion consumption by freight transport,2.81736,TJ,CO2,74100.0,kg/TJ,208766.376,kg +5a4d17be-6849-3d1c-aa7d-66e886f178b3,SESCO,II.1.1,Chubut,AR-U,annual,2010,gas oil combustion consumption by freight transport,2.81736,TJ,CH4,3.9,kg/TJ,10.987703999999999,kg +5a4d17be-6849-3d1c-aa7d-66e886f178b3,SESCO,II.1.1,Chubut,AR-U,annual,2010,gas oil combustion consumption by freight transport,2.81736,TJ,N2O,3.9,kg/TJ,10.987703999999999,kg +26a967ca-ce7a-39ef-8193-cb04f8ff6f6f,SESCO,II.1.1,Corrientes,AR-W,annual,2010,gas oil combustion consumption by freight transport,1.37256,TJ,CO2,74100.0,kg/TJ,101706.696,kg +976f7a0d-e830-33fb-80d3-201c5da4b636,SESCO,II.1.1,Corrientes,AR-W,annual,2010,gas oil combustion consumption by freight transport,1.37256,TJ,CH4,3.9,kg/TJ,5.352984,kg +976f7a0d-e830-33fb-80d3-201c5da4b636,SESCO,II.1.1,Corrientes,AR-W,annual,2010,gas oil combustion consumption by freight transport,1.37256,TJ,N2O,3.9,kg/TJ,5.352984,kg +a7bb97fa-e8b4-3805-973b-1a7e09741a59,SESCO,II.1.1,Córdoba,AR-X,annual,2010,gas oil combustion consumption by freight transport,9.42732,TJ,CO2,74100.0,kg/TJ,698564.412,kg +12155fe1-c3a4-305f-bcdf-ec7f422a0402,SESCO,II.1.1,Córdoba,AR-X,annual,2010,gas oil combustion consumption by freight transport,9.42732,TJ,CH4,3.9,kg/TJ,36.766548,kg +12155fe1-c3a4-305f-bcdf-ec7f422a0402,SESCO,II.1.1,Córdoba,AR-X,annual,2010,gas oil combustion consumption by freight transport,9.42732,TJ,N2O,3.9,kg/TJ,36.766548,kg +f42d650d-5409-376d-8afe-0be282119419,SESCO,II.1.1,Entre Rios,AR-E,annual,2010,gas oil combustion consumption by freight transport,7.07952,TJ,CO2,74100.0,kg/TJ,524592.4319999999,kg +0d53db6a-c166-327e-ba34-5655bcef0496,SESCO,II.1.1,Entre Rios,AR-E,annual,2010,gas oil combustion consumption by freight transport,7.07952,TJ,CH4,3.9,kg/TJ,27.610127999999996,kg +0d53db6a-c166-327e-ba34-5655bcef0496,SESCO,II.1.1,Entre Rios,AR-E,annual,2010,gas oil combustion consumption by freight transport,7.07952,TJ,N2O,3.9,kg/TJ,27.610127999999996,kg +f7d0fc73-b46e-346d-8f12-8fa3fec0c5ac,SESCO,II.1.1,Formosa,AR-P,annual,2010,gas oil combustion consumption by freight transport,0.39732,TJ,CO2,74100.0,kg/TJ,29441.412,kg +83498105-6c41-36ad-b581-bb69b5c8d561,SESCO,II.1.1,Formosa,AR-P,annual,2010,gas oil combustion consumption by freight transport,0.39732,TJ,CH4,3.9,kg/TJ,1.549548,kg +83498105-6c41-36ad-b581-bb69b5c8d561,SESCO,II.1.1,Formosa,AR-P,annual,2010,gas oil combustion consumption by freight transport,0.39732,TJ,N2O,3.9,kg/TJ,1.549548,kg +af3a1ef4-ef4e-3cd1-9367-655b29438884,SESCO,II.1.1,Jujuy,AR-Y,annual,2010,gas oil combustion consumption by freight transport,0.28896,TJ,CO2,74100.0,kg/TJ,21411.935999999998,kg +6cb174f1-6558-3ef0-abfc-e5b1e4e229c6,SESCO,II.1.1,Jujuy,AR-Y,annual,2010,gas oil combustion consumption by freight transport,0.28896,TJ,CH4,3.9,kg/TJ,1.126944,kg +6cb174f1-6558-3ef0-abfc-e5b1e4e229c6,SESCO,II.1.1,Jujuy,AR-Y,annual,2010,gas oil combustion consumption by freight transport,0.28896,TJ,N2O,3.9,kg/TJ,1.126944,kg +0d0f3400-0d0a-3d9f-8fe6-55f9d0171cb6,SESCO,II.1.1,La Pampa,AR-L,annual,2010,gas oil combustion consumption by freight transport,1.37256,TJ,CO2,74100.0,kg/TJ,101706.696,kg +0988c533-39ec-38e2-8e1c-74ae436b913f,SESCO,II.1.1,La Pampa,AR-L,annual,2010,gas oil combustion consumption by freight transport,1.37256,TJ,CH4,3.9,kg/TJ,5.352984,kg +0988c533-39ec-38e2-8e1c-74ae436b913f,SESCO,II.1.1,La Pampa,AR-L,annual,2010,gas oil combustion consumption by freight transport,1.37256,TJ,N2O,3.9,kg/TJ,5.352984,kg +0104c4c5-27f8-3182-a942-51ffd83fdbe3,SESCO,II.1.1,La Rioja,AR-F,annual,2010,gas oil combustion consumption by freight transport,0.5418,TJ,CO2,74100.0,kg/TJ,40147.38,kg +d3a3ea1f-316c-37e0-b863-59b76f8421a3,SESCO,II.1.1,La Rioja,AR-F,annual,2010,gas oil combustion consumption by freight transport,0.5418,TJ,CH4,3.9,kg/TJ,2.1130199999999997,kg +d3a3ea1f-316c-37e0-b863-59b76f8421a3,SESCO,II.1.1,La Rioja,AR-F,annual,2010,gas oil combustion consumption by freight transport,0.5418,TJ,N2O,3.9,kg/TJ,2.1130199999999997,kg +86c55a1d-a33f-3362-85cc-8bf78381d6bf,SESCO,II.1.1,Mendoza,AR-M,annual,2010,gas oil combustion consumption by freight transport,7.0434,TJ,CO2,74100.0,kg/TJ,521915.94,kg +eb78a874-6c73-3c4f-8b66-a5c2aa656ef5,SESCO,II.1.1,Mendoza,AR-M,annual,2010,gas oil combustion consumption by freight transport,7.0434,TJ,CH4,3.9,kg/TJ,27.46926,kg +eb78a874-6c73-3c4f-8b66-a5c2aa656ef5,SESCO,II.1.1,Mendoza,AR-M,annual,2010,gas oil combustion consumption by freight transport,7.0434,TJ,N2O,3.9,kg/TJ,27.46926,kg +84dee5fa-056a-37fe-8b95-4ce2cd9c2738,SESCO,II.1.1,Misiones,AR-N,annual,2010,gas oil combustion consumption by freight transport,0.68628,TJ,CO2,74100.0,kg/TJ,50853.348,kg +9dcdd8b7-4f24-3db8-954a-386b0e69ccde,SESCO,II.1.1,Misiones,AR-N,annual,2010,gas oil combustion consumption by freight transport,0.68628,TJ,CH4,3.9,kg/TJ,2.676492,kg +9dcdd8b7-4f24-3db8-954a-386b0e69ccde,SESCO,II.1.1,Misiones,AR-N,annual,2010,gas oil combustion consumption by freight transport,0.68628,TJ,N2O,3.9,kg/TJ,2.676492,kg +30678c7e-e8b9-3284-852c-acd7d8a20a4d,SESCO,II.1.1,Neuquén,AR-Q,annual,2010,gas oil combustion consumption by freight transport,3.72036,TJ,CO2,74100.0,kg/TJ,275678.676,kg +2e1af95c-9e58-364a-bf9b-b17a305f9cc3,SESCO,II.1.1,Neuquén,AR-Q,annual,2010,gas oil combustion consumption by freight transport,3.72036,TJ,CH4,3.9,kg/TJ,14.509404,kg +2e1af95c-9e58-364a-bf9b-b17a305f9cc3,SESCO,II.1.1,Neuquén,AR-Q,annual,2010,gas oil combustion consumption by freight transport,3.72036,TJ,N2O,3.9,kg/TJ,14.509404,kg +46457e9e-2000-3a82-895e-ddd757c38ea7,SESCO,II.1.1,Rio Negro,AR-R,annual,2010,gas oil combustion consumption by freight transport,1.84212,TJ,CO2,74100.0,kg/TJ,136501.092,kg +8e025840-4fa4-3520-a3fb-106dad4458e4,SESCO,II.1.1,Rio Negro,AR-R,annual,2010,gas oil combustion consumption by freight transport,1.84212,TJ,CH4,3.9,kg/TJ,7.184267999999999,kg +8e025840-4fa4-3520-a3fb-106dad4458e4,SESCO,II.1.1,Rio Negro,AR-R,annual,2010,gas oil combustion consumption by freight transport,1.84212,TJ,N2O,3.9,kg/TJ,7.184267999999999,kg +f19d56fc-14b5-3c84-8640-1b00653bd5ea,SESCO,II.1.1,Salta,AR-A,annual,2010,gas oil combustion consumption by freight transport,3.17856,TJ,CO2,74100.0,kg/TJ,235531.296,kg +62b3fdf2-5fdd-30b3-a57a-5da5a1793d89,SESCO,II.1.1,Salta,AR-A,annual,2010,gas oil combustion consumption by freight transport,3.17856,TJ,CH4,3.9,kg/TJ,12.396384,kg +62b3fdf2-5fdd-30b3-a57a-5da5a1793d89,SESCO,II.1.1,Salta,AR-A,annual,2010,gas oil combustion consumption by freight transport,3.17856,TJ,N2O,3.9,kg/TJ,12.396384,kg +b2e6cbf0-6c42-3a71-a4e6-b9690683f59b,SESCO,II.1.1,San Juan,AR-J,annual,2010,gas oil combustion consumption by freight transport,0.93912,TJ,CO2,74100.0,kg/TJ,69588.792,kg +38b45504-0529-318a-91e1-889bcbd5ecd8,SESCO,II.1.1,San Juan,AR-J,annual,2010,gas oil combustion consumption by freight transport,0.93912,TJ,CH4,3.9,kg/TJ,3.662568,kg +38b45504-0529-318a-91e1-889bcbd5ecd8,SESCO,II.1.1,San Juan,AR-J,annual,2010,gas oil combustion consumption by freight transport,0.93912,TJ,N2O,3.9,kg/TJ,3.662568,kg +bb2c759c-61d0-39f3-b514-310c2328e749,SESCO,II.1.1,San Luis,AR-D,annual,2010,gas oil combustion consumption by freight transport,1.19196,TJ,CO2,74100.0,kg/TJ,88324.23599999999,kg +993547b1-b733-3d55-937b-c1ae654e5a5c,SESCO,II.1.1,San Luis,AR-D,annual,2010,gas oil combustion consumption by freight transport,1.19196,TJ,CH4,3.9,kg/TJ,4.648643999999999,kg +993547b1-b733-3d55-937b-c1ae654e5a5c,SESCO,II.1.1,San Luis,AR-D,annual,2010,gas oil combustion consumption by freight transport,1.19196,TJ,N2O,3.9,kg/TJ,4.648643999999999,kg +f6405d10-10ce-3ba4-9536-44e8606ef4f2,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2010,gas oil combustion consumption by freight transport,0.7223999999999999,TJ,CO2,74100.0,kg/TJ,53529.84,kg +256100b3-07ab-3776-9029-c1bdaeecd2e9,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2010,gas oil combustion consumption by freight transport,0.7223999999999999,TJ,CH4,3.9,kg/TJ,2.81736,kg +256100b3-07ab-3776-9029-c1bdaeecd2e9,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2010,gas oil combustion consumption by freight transport,0.7223999999999999,TJ,N2O,3.9,kg/TJ,2.81736,kg +5d801c16-627d-3587-bf46-18b2008b2800,SESCO,II.1.1,Santa Fe,AR-S,annual,2010,gas oil combustion consumption by freight transport,20.98572,TJ,CO2,74100.0,kg/TJ,1555041.852,kg +5a435e98-dc67-316d-ae66-5ad0e217323f,SESCO,II.1.1,Santa Fe,AR-S,annual,2010,gas oil combustion consumption by freight transport,20.98572,TJ,CH4,3.9,kg/TJ,81.844308,kg +5a435e98-dc67-316d-ae66-5ad0e217323f,SESCO,II.1.1,Santa Fe,AR-S,annual,2010,gas oil combustion consumption by freight transport,20.98572,TJ,N2O,3.9,kg/TJ,81.844308,kg +b1fc00f1-33b0-3715-8698-8dce4188247a,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2010,gas oil combustion consumption by freight transport,1.33644,TJ,CO2,74100.0,kg/TJ,99030.20400000001,kg +31efbfc1-c180-3ab5-8688-dcc070c9aa9e,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2010,gas oil combustion consumption by freight transport,1.33644,TJ,CH4,3.9,kg/TJ,5.212116,kg +31efbfc1-c180-3ab5-8688-dcc070c9aa9e,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2010,gas oil combustion consumption by freight transport,1.33644,TJ,N2O,3.9,kg/TJ,5.212116,kg +90482549-7bba-304d-8207-5715fc912b3a,SESCO,II.1.1,Tucuman,AR-T,annual,2010,gas oil combustion consumption by freight transport,1.6254,TJ,CO2,74100.0,kg/TJ,120442.14,kg +055abed5-5f2a-35cd-bb88-711d97a9daa3,SESCO,II.1.1,Tucuman,AR-T,annual,2010,gas oil combustion consumption by freight transport,1.6254,TJ,CH4,3.9,kg/TJ,6.33906,kg +055abed5-5f2a-35cd-bb88-711d97a9daa3,SESCO,II.1.1,Tucuman,AR-T,annual,2010,gas oil combustion consumption by freight transport,1.6254,TJ,N2O,3.9,kg/TJ,6.33906,kg +91f9c7cd-5773-3730-abc7-6d535027698f,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,jet kerosene combustion consumption by freight transport,0.62906,TJ,CO2,71500.0,kg/TJ,44977.78999999999,kg +a166714a-d954-3d9e-87f2-6ca9ac8a9f35,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,jet kerosene combustion consumption by freight transport,0.62906,TJ,CH4,0.5,kg/TJ,0.31453,kg +c51bb30d-95d8-34fd-9f32-a368c69b6bd9,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,jet kerosene combustion consumption by freight transport,0.62906,TJ,N2O,2.0,kg/TJ,1.25812,kg +706b3455-dc4d-3e10-b83e-06ef54db7ff0,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,gas oil combustion consumption by public passenger transport,12384.60888,TJ,CO2,74100.0,kg/TJ,917699518.008,kg +51c5f5be-d21e-3854-a82d-cb85e0afb95d,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,gas oil combustion consumption by public passenger transport,12384.60888,TJ,CH4,3.9,kg/TJ,48299.974632,kg +51c5f5be-d21e-3854-a82d-cb85e0afb95d,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,gas oil combustion consumption by public passenger transport,12384.60888,TJ,N2O,3.9,kg/TJ,48299.974632,kg +34c45bff-1a1a-36ba-b9d6-379b5a8b0e8b,SESCO,II.1.1,Capital Federal,AR-C,annual,2010,gas oil combustion consumption by public passenger transport,3183.50844,TJ,CO2,74100.0,kg/TJ,235897975.404,kg +8b40346c-1030-32b3-be9e-7840316b53b9,SESCO,II.1.1,Capital Federal,AR-C,annual,2010,gas oil combustion consumption by public passenger transport,3183.50844,TJ,CH4,3.9,kg/TJ,12415.682916,kg +8b40346c-1030-32b3-be9e-7840316b53b9,SESCO,II.1.1,Capital Federal,AR-C,annual,2010,gas oil combustion consumption by public passenger transport,3183.50844,TJ,N2O,3.9,kg/TJ,12415.682916,kg +d2f939f5-8f44-3465-94c8-10fd7e3d65b2,SESCO,II.1.1,Catamarca,AR-K,annual,2010,gas oil combustion consumption by public passenger transport,151.5234,TJ,CO2,74100.0,kg/TJ,11227883.940000001,kg +3e73f96a-d0c8-3e5a-8ed7-21df4defc32d,SESCO,II.1.1,Catamarca,AR-K,annual,2010,gas oil combustion consumption by public passenger transport,151.5234,TJ,CH4,3.9,kg/TJ,590.94126,kg +3e73f96a-d0c8-3e5a-8ed7-21df4defc32d,SESCO,II.1.1,Catamarca,AR-K,annual,2010,gas oil combustion consumption by public passenger transport,151.5234,TJ,N2O,3.9,kg/TJ,590.94126,kg +38464fee-c857-3f61-8c65-a37bd9051892,SESCO,II.1.1,Chaco,AR-H,annual,2010,gas oil combustion consumption by public passenger transport,582.2182799999999,TJ,CO2,74100.0,kg/TJ,43142374.54799999,kg +505905e1-223c-3882-8a1a-f807a23cd593,SESCO,II.1.1,Chaco,AR-H,annual,2010,gas oil combustion consumption by public passenger transport,582.2182799999999,TJ,CH4,3.9,kg/TJ,2270.6512919999996,kg +505905e1-223c-3882-8a1a-f807a23cd593,SESCO,II.1.1,Chaco,AR-H,annual,2010,gas oil combustion consumption by public passenger transport,582.2182799999999,TJ,N2O,3.9,kg/TJ,2270.6512919999996,kg +d9acd73b-12d3-30fa-8763-005fe7df913a,SESCO,II.1.1,Chubut,AR-U,annual,2010,gas oil combustion consumption by public passenger transport,265.3014,TJ,CO2,74100.0,kg/TJ,19658833.74,kg +d7252140-7f27-3c12-94ad-9d3502dcf084,SESCO,II.1.1,Chubut,AR-U,annual,2010,gas oil combustion consumption by public passenger transport,265.3014,TJ,CH4,3.9,kg/TJ,1034.67546,kg +d7252140-7f27-3c12-94ad-9d3502dcf084,SESCO,II.1.1,Chubut,AR-U,annual,2010,gas oil combustion consumption by public passenger transport,265.3014,TJ,N2O,3.9,kg/TJ,1034.67546,kg +7d743c41-ae3e-3a0e-adfb-51bfccf49bee,SESCO,II.1.1,Corrientes,AR-W,annual,2010,gas oil combustion consumption by public passenger transport,573.36888,TJ,CO2,74100.0,kg/TJ,42486634.008,kg +4d11dd15-8138-3d7f-9acd-4c0f3b06235a,SESCO,II.1.1,Corrientes,AR-W,annual,2010,gas oil combustion consumption by public passenger transport,573.36888,TJ,CH4,3.9,kg/TJ,2236.1386319999997,kg +4d11dd15-8138-3d7f-9acd-4c0f3b06235a,SESCO,II.1.1,Corrientes,AR-W,annual,2010,gas oil combustion consumption by public passenger transport,573.36888,TJ,N2O,3.9,kg/TJ,2236.1386319999997,kg +747bfd7a-e1fe-3c69-96c2-d06a1c7459be,SESCO,II.1.1,Córdoba,AR-X,annual,2010,gas oil combustion consumption by public passenger transport,2941.50444,TJ,CO2,74100.0,kg/TJ,217965479.004,kg +4206b7ff-df79-366e-8515-3b5dcd7146bb,SESCO,II.1.1,Córdoba,AR-X,annual,2010,gas oil combustion consumption by public passenger transport,2941.50444,TJ,CH4,3.9,kg/TJ,11471.867316,kg +4206b7ff-df79-366e-8515-3b5dcd7146bb,SESCO,II.1.1,Córdoba,AR-X,annual,2010,gas oil combustion consumption by public passenger transport,2941.50444,TJ,N2O,3.9,kg/TJ,11471.867316,kg +6498974c-6e83-358c-9015-f3cf30522f22,SESCO,II.1.1,Entre Rios,AR-E,annual,2010,gas oil combustion consumption by public passenger transport,465.08112,TJ,CO2,74100.0,kg/TJ,34462510.992,kg +33e19798-3ba8-32bf-9f92-f6e0bb8f0b35,SESCO,II.1.1,Entre Rios,AR-E,annual,2010,gas oil combustion consumption by public passenger transport,465.08112,TJ,CH4,3.9,kg/TJ,1813.816368,kg +33e19798-3ba8-32bf-9f92-f6e0bb8f0b35,SESCO,II.1.1,Entre Rios,AR-E,annual,2010,gas oil combustion consumption by public passenger transport,465.08112,TJ,N2O,3.9,kg/TJ,1813.816368,kg +ff085f77-7713-3862-89b6-e17efa9b7c73,SESCO,II.1.1,Formosa,AR-P,annual,2010,gas oil combustion consumption by public passenger transport,83.03988,TJ,CO2,74100.0,kg/TJ,6153255.108,kg +34f2d5e2-a692-3732-8ec8-6128363a519b,SESCO,II.1.1,Formosa,AR-P,annual,2010,gas oil combustion consumption by public passenger transport,83.03988,TJ,CH4,3.9,kg/TJ,323.855532,kg +34f2d5e2-a692-3732-8ec8-6128363a519b,SESCO,II.1.1,Formosa,AR-P,annual,2010,gas oil combustion consumption by public passenger transport,83.03988,TJ,N2O,3.9,kg/TJ,323.855532,kg +a8e196a7-079b-3070-8576-34dd1e440994,SESCO,II.1.1,Jujuy,AR-Y,annual,2010,gas oil combustion consumption by public passenger transport,696.53808,TJ,CO2,74100.0,kg/TJ,51613471.728,kg +cbe7c8c0-aa74-3738-a0cf-49efd5a34c08,SESCO,II.1.1,Jujuy,AR-Y,annual,2010,gas oil combustion consumption by public passenger transport,696.53808,TJ,CH4,3.9,kg/TJ,2716.498512,kg +cbe7c8c0-aa74-3738-a0cf-49efd5a34c08,SESCO,II.1.1,Jujuy,AR-Y,annual,2010,gas oil combustion consumption by public passenger transport,696.53808,TJ,N2O,3.9,kg/TJ,2716.498512,kg +c8bad5c9-da5f-35f4-8855-7e3d99a3bfa4,SESCO,II.1.1,La Pampa,AR-L,annual,2010,gas oil combustion consumption by public passenger transport,148.85052,TJ,CO2,74100.0,kg/TJ,11029823.532,kg +c62da93c-3b11-3466-ab28-5050a2f63444,SESCO,II.1.1,La Pampa,AR-L,annual,2010,gas oil combustion consumption by public passenger transport,148.85052,TJ,CH4,3.9,kg/TJ,580.517028,kg +c62da93c-3b11-3466-ab28-5050a2f63444,SESCO,II.1.1,La Pampa,AR-L,annual,2010,gas oil combustion consumption by public passenger transport,148.85052,TJ,N2O,3.9,kg/TJ,580.517028,kg +4501e272-159f-301b-aa31-641960a2051d,SESCO,II.1.1,La Rioja,AR-F,annual,2010,gas oil combustion consumption by public passenger transport,162.32328,TJ,CO2,74100.0,kg/TJ,12028155.048,kg +8a244898-1014-3e5f-8936-0ffd6840ced6,SESCO,II.1.1,La Rioja,AR-F,annual,2010,gas oil combustion consumption by public passenger transport,162.32328,TJ,CH4,3.9,kg/TJ,633.060792,kg +8a244898-1014-3e5f-8936-0ffd6840ced6,SESCO,II.1.1,La Rioja,AR-F,annual,2010,gas oil combustion consumption by public passenger transport,162.32328,TJ,N2O,3.9,kg/TJ,633.060792,kg +ec5b3511-a55a-343a-acbc-d7c24f28daa9,SESCO,II.1.1,Mendoza,AR-M,annual,2010,gas oil combustion consumption by public passenger transport,2112.87552,TJ,CO2,74100.0,kg/TJ,156564076.032,kg +7597e62a-2083-32a2-ab8c-447f0fd4ac0a,SESCO,II.1.1,Mendoza,AR-M,annual,2010,gas oil combustion consumption by public passenger transport,2112.87552,TJ,CH4,3.9,kg/TJ,8240.214528,kg +7597e62a-2083-32a2-ab8c-447f0fd4ac0a,SESCO,II.1.1,Mendoza,AR-M,annual,2010,gas oil combustion consumption by public passenger transport,2112.87552,TJ,N2O,3.9,kg/TJ,8240.214528,kg +cd881edc-f507-3b05-a0c4-2b2cf086c39b,SESCO,II.1.1,Misiones,AR-N,annual,2010,gas oil combustion consumption by public passenger transport,828.88176,TJ,CO2,74100.0,kg/TJ,61420138.416,kg +ed584f40-ee99-3080-ab98-42edaaad38e3,SESCO,II.1.1,Misiones,AR-N,annual,2010,gas oil combustion consumption by public passenger transport,828.88176,TJ,CH4,3.9,kg/TJ,3232.638864,kg +ed584f40-ee99-3080-ab98-42edaaad38e3,SESCO,II.1.1,Misiones,AR-N,annual,2010,gas oil combustion consumption by public passenger transport,828.88176,TJ,N2O,3.9,kg/TJ,3232.638864,kg +c78c47a0-5b66-3ecb-b49f-d66b47abcfce,SESCO,II.1.1,Neuquén,AR-Q,annual,2010,gas oil combustion consumption by public passenger transport,472.88304,TJ,CO2,74100.0,kg/TJ,35040633.264,kg +3d5a2b7c-cdc0-352c-9511-43fceb25b784,SESCO,II.1.1,Neuquén,AR-Q,annual,2010,gas oil combustion consumption by public passenger transport,472.88304,TJ,CH4,3.9,kg/TJ,1844.2438559999998,kg +3d5a2b7c-cdc0-352c-9511-43fceb25b784,SESCO,II.1.1,Neuquén,AR-Q,annual,2010,gas oil combustion consumption by public passenger transport,472.88304,TJ,N2O,3.9,kg/TJ,1844.2438559999998,kg +66bb1808-e4b5-38f4-98ed-1e1c1efd7093,SESCO,II.1.1,Rio Negro,AR-R,annual,2010,gas oil combustion consumption by public passenger transport,354.44556,TJ,CO2,74100.0,kg/TJ,26264415.996,kg +c7f002a9-1605-3cdf-89e9-f01e71c04676,SESCO,II.1.1,Rio Negro,AR-R,annual,2010,gas oil combustion consumption by public passenger transport,354.44556,TJ,CH4,3.9,kg/TJ,1382.337684,kg +c7f002a9-1605-3cdf-89e9-f01e71c04676,SESCO,II.1.1,Rio Negro,AR-R,annual,2010,gas oil combustion consumption by public passenger transport,354.44556,TJ,N2O,3.9,kg/TJ,1382.337684,kg +90fcb19a-958c-3609-a540-be10eb7b3681,SESCO,II.1.1,Salta,AR-A,annual,2010,gas oil combustion consumption by public passenger transport,1047.62448,TJ,CO2,74100.0,kg/TJ,77628973.968,kg +b3055f31-5fc1-3661-987c-835d93751aa8,SESCO,II.1.1,Salta,AR-A,annual,2010,gas oil combustion consumption by public passenger transport,1047.62448,TJ,CH4,3.9,kg/TJ,4085.735472,kg +b3055f31-5fc1-3661-987c-835d93751aa8,SESCO,II.1.1,Salta,AR-A,annual,2010,gas oil combustion consumption by public passenger transport,1047.62448,TJ,N2O,3.9,kg/TJ,4085.735472,kg +b6d130fd-18cc-3aa4-832f-5a9d1521c950,SESCO,II.1.1,San Juan,AR-J,annual,2010,gas oil combustion consumption by public passenger transport,558.63192,TJ,CO2,74100.0,kg/TJ,41394625.272,kg +4a6d0c7a-9272-3986-b624-ae6b595ca135,SESCO,II.1.1,San Juan,AR-J,annual,2010,gas oil combustion consumption by public passenger transport,558.63192,TJ,CH4,3.9,kg/TJ,2178.664488,kg +4a6d0c7a-9272-3986-b624-ae6b595ca135,SESCO,II.1.1,San Juan,AR-J,annual,2010,gas oil combustion consumption by public passenger transport,558.63192,TJ,N2O,3.9,kg/TJ,2178.664488,kg +0b161e61-ffb3-3326-a11d-e2f9bc0013f4,SESCO,II.1.1,San Luis,AR-D,annual,2010,gas oil combustion consumption by public passenger transport,184.60932,TJ,CO2,74100.0,kg/TJ,13679550.612,kg +34509a13-1d88-3ee6-a056-e23604f1ef93,SESCO,II.1.1,San Luis,AR-D,annual,2010,gas oil combustion consumption by public passenger transport,184.60932,TJ,CH4,3.9,kg/TJ,719.9763479999999,kg +34509a13-1d88-3ee6-a056-e23604f1ef93,SESCO,II.1.1,San Luis,AR-D,annual,2010,gas oil combustion consumption by public passenger transport,184.60932,TJ,N2O,3.9,kg/TJ,719.9763479999999,kg +5388d8c2-53b5-3b02-8e37-9853a88e018b,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2010,gas oil combustion consumption by public passenger transport,143.7576,TJ,CO2,74100.0,kg/TJ,10652438.16,kg +bba13126-64dc-368e-a7ca-ba13b1b08163,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2010,gas oil combustion consumption by public passenger transport,143.7576,TJ,CH4,3.9,kg/TJ,560.65464,kg +bba13126-64dc-368e-a7ca-ba13b1b08163,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2010,gas oil combustion consumption by public passenger transport,143.7576,TJ,N2O,3.9,kg/TJ,560.65464,kg +5e5353ae-b292-3728-88c2-f6ac1f011377,SESCO,II.1.1,Santa Fe,AR-S,annual,2010,gas oil combustion consumption by public passenger transport,1572.80928,TJ,CO2,74100.0,kg/TJ,116545167.648,kg +d0685512-8017-3349-9adf-ae9fcaa77a45,SESCO,II.1.1,Santa Fe,AR-S,annual,2010,gas oil combustion consumption by public passenger transport,1572.80928,TJ,CH4,3.9,kg/TJ,6133.956192,kg +d0685512-8017-3349-9adf-ae9fcaa77a45,SESCO,II.1.1,Santa Fe,AR-S,annual,2010,gas oil combustion consumption by public passenger transport,1572.80928,TJ,N2O,3.9,kg/TJ,6133.956192,kg +d6bc1cb2-e143-393d-9b81-f91ed66a5960,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2010,gas oil combustion consumption by public passenger transport,430.11696,TJ,CO2,74100.0,kg/TJ,31871666.736,kg +69a96136-9245-37a7-a890-7fcc72ee1ede,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2010,gas oil combustion consumption by public passenger transport,430.11696,TJ,CH4,3.9,kg/TJ,1677.456144,kg +69a96136-9245-37a7-a890-7fcc72ee1ede,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2010,gas oil combustion consumption by public passenger transport,430.11696,TJ,N2O,3.9,kg/TJ,1677.456144,kg +a3757712-3e00-314b-9a18-6bf591454581,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2010,gas oil combustion consumption by public passenger transport,31.53276,TJ,CO2,74100.0,kg/TJ,2336577.516,kg +61c44f4f-cf1d-363e-bc18-fc76f82036b4,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2010,gas oil combustion consumption by public passenger transport,31.53276,TJ,CH4,3.9,kg/TJ,122.977764,kg +61c44f4f-cf1d-363e-bc18-fc76f82036b4,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2010,gas oil combustion consumption by public passenger transport,31.53276,TJ,N2O,3.9,kg/TJ,122.977764,kg +bb504b83-4673-3cd6-a928-e90c32082741,SESCO,II.1.1,Tucuman,AR-T,annual,2010,gas oil combustion consumption by public passenger transport,1267.9926,TJ,CO2,74100.0,kg/TJ,93958251.66,kg +9bb0ef38-fe48-33e8-a854-58c202a4729c,SESCO,II.1.1,Tucuman,AR-T,annual,2010,gas oil combustion consumption by public passenger transport,1267.9926,TJ,CH4,3.9,kg/TJ,4945.17114,kg +9bb0ef38-fe48-33e8-a854-58c202a4729c,SESCO,II.1.1,Tucuman,AR-T,annual,2010,gas oil combustion consumption by public passenger transport,1267.9926,TJ,N2O,3.9,kg/TJ,4945.17114,kg +d0c90f39-cbcc-3e6d-9ba9-24d4410f9d33,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,gas oil combustion consumption by public passenger transport,3.53976,TJ,CO2,74100.0,kg/TJ,262296.21599999996,kg +02e6781a-926c-3534-a05c-0b82cff0ac1c,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,gas oil combustion consumption by public passenger transport,3.53976,TJ,CH4,3.9,kg/TJ,13.805063999999998,kg +02e6781a-926c-3534-a05c-0b82cff0ac1c,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,gas oil combustion consumption by public passenger transport,3.53976,TJ,N2O,3.9,kg/TJ,13.805063999999998,kg +6d9e1a49-7714-3976-bba5-11e784f584e1,SESCO,II.1.1,Capital Federal,AR-C,annual,2010,gas oil combustion consumption by public passenger transport,0.303408,TJ,CO2,74100.0,kg/TJ,22482.5328,kg +b8275c77-01fa-3a3d-9958-db772566c335,SESCO,II.1.1,Capital Federal,AR-C,annual,2010,gas oil combustion consumption by public passenger transport,0.303408,TJ,CH4,3.9,kg/TJ,1.1832912,kg +b8275c77-01fa-3a3d-9958-db772566c335,SESCO,II.1.1,Capital Federal,AR-C,annual,2010,gas oil combustion consumption by public passenger transport,0.303408,TJ,N2O,3.9,kg/TJ,1.1832912,kg +b557c76b-2785-36c8-a9b7-4ccc375dc013,SESCO,II.1.1,Chubut,AR-U,annual,2010,gas oil combustion consumption by public passenger transport,0.335916,TJ,CO2,74100.0,kg/TJ,24891.3756,kg +cf4673cf-9110-3586-9722-77e50d7887e1,SESCO,II.1.1,Chubut,AR-U,annual,2010,gas oil combustion consumption by public passenger transport,0.335916,TJ,CH4,3.9,kg/TJ,1.3100724,kg +cf4673cf-9110-3586-9722-77e50d7887e1,SESCO,II.1.1,Chubut,AR-U,annual,2010,gas oil combustion consumption by public passenger transport,0.335916,TJ,N2O,3.9,kg/TJ,1.3100724,kg +c5e118e1-115a-3af4-b7e8-aeef6af1e466,SESCO,II.1.1,Corrientes,AR-W,annual,2010,gas oil combustion consumption by public passenger transport,0.03612,TJ,CO2,74100.0,kg/TJ,2676.4919999999997,kg +fe070851-74ff-31b5-8b70-6122da117dd5,SESCO,II.1.1,Corrientes,AR-W,annual,2010,gas oil combustion consumption by public passenger transport,0.03612,TJ,CH4,3.9,kg/TJ,0.140868,kg +fe070851-74ff-31b5-8b70-6122da117dd5,SESCO,II.1.1,Corrientes,AR-W,annual,2010,gas oil combustion consumption by public passenger transport,0.03612,TJ,N2O,3.9,kg/TJ,0.140868,kg +ccd5f9db-8161-346d-9201-c6059cc7752e,SESCO,II.1.1,Córdoba,AR-X,annual,2010,gas oil combustion consumption by public passenger transport,0.43344,TJ,CO2,74100.0,kg/TJ,32117.904,kg +554ea7f7-14ed-35d7-b80d-798498353c6f,SESCO,II.1.1,Córdoba,AR-X,annual,2010,gas oil combustion consumption by public passenger transport,0.43344,TJ,CH4,3.9,kg/TJ,1.690416,kg +554ea7f7-14ed-35d7-b80d-798498353c6f,SESCO,II.1.1,Córdoba,AR-X,annual,2010,gas oil combustion consumption by public passenger transport,0.43344,TJ,N2O,3.9,kg/TJ,1.690416,kg +8a2ab565-8480-33cc-94b5-deeec94bbeed,SESCO,II.1.1,Entre Rios,AR-E,annual,2010,gas oil combustion consumption by public passenger transport,0.03612,TJ,CO2,74100.0,kg/TJ,2676.4919999999997,kg +30287ab8-554a-3903-93ab-b6be9fc95809,SESCO,II.1.1,Entre Rios,AR-E,annual,2010,gas oil combustion consumption by public passenger transport,0.03612,TJ,CH4,3.9,kg/TJ,0.140868,kg +30287ab8-554a-3903-93ab-b6be9fc95809,SESCO,II.1.1,Entre Rios,AR-E,annual,2010,gas oil combustion consumption by public passenger transport,0.03612,TJ,N2O,3.9,kg/TJ,0.140868,kg +f3419e1c-f85d-38f1-a9c1-a6ef04a2cdda,SESCO,II.1.1,Jujuy,AR-Y,annual,2010,gas oil combustion consumption by public passenger transport,0.014448,TJ,CO2,74100.0,kg/TJ,1070.5968,kg +4807e9e3-685e-3ced-89a3-4dc5a8ad2790,SESCO,II.1.1,Jujuy,AR-Y,annual,2010,gas oil combustion consumption by public passenger transport,0.014448,TJ,CH4,3.9,kg/TJ,0.0563472,kg +4807e9e3-685e-3ced-89a3-4dc5a8ad2790,SESCO,II.1.1,Jujuy,AR-Y,annual,2010,gas oil combustion consumption by public passenger transport,0.014448,TJ,N2O,3.9,kg/TJ,0.0563472,kg +ec818dca-537f-32ae-9de1-93a24811edbd,SESCO,II.1.1,La Pampa,AR-L,annual,2010,gas oil combustion consumption by public passenger transport,0.122808,TJ,CO2,74100.0,kg/TJ,9100.0728,kg +c621e44a-5f70-3196-8d8a-94d1a32a1476,SESCO,II.1.1,La Pampa,AR-L,annual,2010,gas oil combustion consumption by public passenger transport,0.122808,TJ,CH4,3.9,kg/TJ,0.47895119999999997,kg +c621e44a-5f70-3196-8d8a-94d1a32a1476,SESCO,II.1.1,La Pampa,AR-L,annual,2010,gas oil combustion consumption by public passenger transport,0.122808,TJ,N2O,3.9,kg/TJ,0.47895119999999997,kg +4aaee44c-7ca3-3f0b-af59-988d3c8d95ba,SESCO,II.1.1,Mendoza,AR-M,annual,2010,gas oil combustion consumption by public passenger transport,0.34314,TJ,CO2,74100.0,kg/TJ,25426.674,kg +f8084e86-983e-3396-ae22-f989e06ffcdf,SESCO,II.1.1,Mendoza,AR-M,annual,2010,gas oil combustion consumption by public passenger transport,0.34314,TJ,CH4,3.9,kg/TJ,1.338246,kg +f8084e86-983e-3396-ae22-f989e06ffcdf,SESCO,II.1.1,Mendoza,AR-M,annual,2010,gas oil combustion consumption by public passenger transport,0.34314,TJ,N2O,3.9,kg/TJ,1.338246,kg +b6be1176-369f-37e3-ba74-545b16711859,SESCO,II.1.1,Neuquén,AR-Q,annual,2010,gas oil combustion consumption by public passenger transport,0.07224,TJ,CO2,74100.0,kg/TJ,5352.9839999999995,kg +70557f9e-bcad-3fd5-86fd-f132e3468700,SESCO,II.1.1,Neuquén,AR-Q,annual,2010,gas oil combustion consumption by public passenger transport,0.07224,TJ,CH4,3.9,kg/TJ,0.281736,kg +70557f9e-bcad-3fd5-86fd-f132e3468700,SESCO,II.1.1,Neuquén,AR-Q,annual,2010,gas oil combustion consumption by public passenger transport,0.07224,TJ,N2O,3.9,kg/TJ,0.281736,kg +7e26b0ad-292a-3571-86d4-2e0e6b249243,SESCO,II.1.1,Rio Negro,AR-R,annual,2010,gas oil combustion consumption by public passenger transport,0.375648,TJ,CO2,74100.0,kg/TJ,27835.516799999998,kg +2d1e8184-4b4c-3234-bdaf-143549826526,SESCO,II.1.1,Rio Negro,AR-R,annual,2010,gas oil combustion consumption by public passenger transport,0.375648,TJ,CH4,3.9,kg/TJ,1.4650272,kg +2d1e8184-4b4c-3234-bdaf-143549826526,SESCO,II.1.1,Rio Negro,AR-R,annual,2010,gas oil combustion consumption by public passenger transport,0.375648,TJ,N2O,3.9,kg/TJ,1.4650272,kg +3600f67b-a0b2-345b-972d-249534285155,SESCO,II.1.1,San Luis,AR-D,annual,2010,gas oil combustion consumption by public passenger transport,0.10836,TJ,CO2,74100.0,kg/TJ,8029.476,kg +f86ab7df-63aa-30ba-b5cf-0c1359d6935a,SESCO,II.1.1,San Luis,AR-D,annual,2010,gas oil combustion consumption by public passenger transport,0.10836,TJ,CH4,3.9,kg/TJ,0.422604,kg +f86ab7df-63aa-30ba-b5cf-0c1359d6935a,SESCO,II.1.1,San Luis,AR-D,annual,2010,gas oil combustion consumption by public passenger transport,0.10836,TJ,N2O,3.9,kg/TJ,0.422604,kg +3517372f-6831-3776-b725-c80bf84d945f,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2010,gas oil combustion consumption by public passenger transport,0.050567999999999995,TJ,CO2,74100.0,kg/TJ,3747.0887999999995,kg +596a3d53-1414-34de-a1f8-58e148e99f0e,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2010,gas oil combustion consumption by public passenger transport,0.050567999999999995,TJ,CH4,3.9,kg/TJ,0.19721519999999998,kg +596a3d53-1414-34de-a1f8-58e148e99f0e,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2010,gas oil combustion consumption by public passenger transport,0.050567999999999995,TJ,N2O,3.9,kg/TJ,0.19721519999999998,kg +944e2c7d-6f33-37c3-a03a-635baccfc51d,SESCO,II.1.1,Santa Fe,AR-S,annual,2010,gas oil combustion consumption by public passenger transport,1.19196,TJ,CO2,74100.0,kg/TJ,88324.23599999999,kg +7faa324a-5f81-3c03-94e6-64335edd3c9d,SESCO,II.1.1,Santa Fe,AR-S,annual,2010,gas oil combustion consumption by public passenger transport,1.19196,TJ,CH4,3.9,kg/TJ,4.648643999999999,kg +7faa324a-5f81-3c03-94e6-64335edd3c9d,SESCO,II.1.1,Santa Fe,AR-S,annual,2010,gas oil combustion consumption by public passenger transport,1.19196,TJ,N2O,3.9,kg/TJ,4.648643999999999,kg +41b1152d-d09c-36b8-8bce-5e1bf854b324,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2010,gas oil combustion consumption by public passenger transport,0.010836,TJ,CO2,74100.0,kg/TJ,802.9476,kg +8d2530fc-20ef-3749-a9d9-4e76a2ef4433,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2010,gas oil combustion consumption by public passenger transport,0.010836,TJ,CH4,3.9,kg/TJ,0.0422604,kg +8d2530fc-20ef-3749-a9d9-4e76a2ef4433,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2010,gas oil combustion consumption by public passenger transport,0.010836,TJ,N2O,3.9,kg/TJ,0.0422604,kg +e7ce0cee-5563-370d-859b-b302157397c4,SESCO,II.1.1,Capital Federal,AR-C,annual,2011,gas oil combustion consumption by to the public,47.3172,TJ,CO2,74100.0,kg/TJ,3506204.52,kg +f1ce401f-0f32-34c4-b552-28829a83bdac,SESCO,II.1.1,Capital Federal,AR-C,annual,2011,gas oil combustion consumption by to the public,47.3172,TJ,CH4,3.9,kg/TJ,184.53708,kg +f1ce401f-0f32-34c4-b552-28829a83bdac,SESCO,II.1.1,Capital Federal,AR-C,annual,2011,gas oil combustion consumption by to the public,47.3172,TJ,N2O,3.9,kg/TJ,184.53708,kg +a2571ea6-1dff-3643-91d1-9538995a1111,SESCO,II.1.1,Buenos Aires,AR-B,annual,2011,gas oil combustion consumption by public passenger transport,2677.97292,TJ,CO2,74100.0,kg/TJ,198437793.372,kg +f3eb7562-439d-34f7-b0b9-609a05235829,SESCO,II.1.1,Buenos Aires,AR-B,annual,2011,gas oil combustion consumption by public passenger transport,2677.97292,TJ,CH4,3.9,kg/TJ,10444.094388,kg +f3eb7562-439d-34f7-b0b9-609a05235829,SESCO,II.1.1,Buenos Aires,AR-B,annual,2011,gas oil combustion consumption by public passenger transport,2677.97292,TJ,N2O,3.9,kg/TJ,10444.094388,kg +37b23eb6-c11a-3fff-9101-38b52a1ec563,SESCO,II.1.1,Capital Federal,AR-C,annual,2011,gas oil combustion consumption by public passenger transport,1084.10568,TJ,CO2,74100.0,kg/TJ,80332230.888,kg +5b8fb719-9b0c-3001-9598-f6b0c119b75d,SESCO,II.1.1,Capital Federal,AR-C,annual,2011,gas oil combustion consumption by public passenger transport,1084.10568,TJ,CH4,3.9,kg/TJ,4228.012151999999,kg +5b8fb719-9b0c-3001-9598-f6b0c119b75d,SESCO,II.1.1,Capital Federal,AR-C,annual,2011,gas oil combustion consumption by public passenger transport,1084.10568,TJ,N2O,3.9,kg/TJ,4228.012151999999,kg +52703ed0-6421-34c2-9e49-945f79c51148,SESCO,II.1.1,Córdoba,AR-X,annual,2011,gas oil combustion consumption by public passenger transport,96.36816,TJ,CO2,74100.0,kg/TJ,7140880.656,kg +07829049-8730-3447-a4eb-14f1b4d45717,SESCO,II.1.1,Córdoba,AR-X,annual,2011,gas oil combustion consumption by public passenger transport,96.36816,TJ,CH4,3.9,kg/TJ,375.835824,kg +07829049-8730-3447-a4eb-14f1b4d45717,SESCO,II.1.1,Córdoba,AR-X,annual,2011,gas oil combustion consumption by public passenger transport,96.36816,TJ,N2O,3.9,kg/TJ,375.835824,kg +a05716c3-6cfa-31e7-bd6c-c5d682fedb0a,SESCO,II.1.1,Entre Rios,AR-E,annual,2011,gas oil combustion consumption by public passenger transport,453.37824,TJ,CO2,74100.0,kg/TJ,33595327.584,kg +4d809033-74a5-3ad7-84d3-9455a387b184,SESCO,II.1.1,Entre Rios,AR-E,annual,2011,gas oil combustion consumption by public passenger transport,453.37824,TJ,CH4,3.9,kg/TJ,1768.175136,kg +4d809033-74a5-3ad7-84d3-9455a387b184,SESCO,II.1.1,Entre Rios,AR-E,annual,2011,gas oil combustion consumption by public passenger transport,453.37824,TJ,N2O,3.9,kg/TJ,1768.175136,kg +33905345-05f0-32df-a2eb-7230d0a06e65,SESCO,II.1.1,Mendoza,AR-M,annual,2011,gas oil combustion consumption by public passenger transport,177.27696,TJ,CO2,74100.0,kg/TJ,13136222.736,kg +33dd560d-174f-37c5-b9d3-7060cd543b0e,SESCO,II.1.1,Mendoza,AR-M,annual,2011,gas oil combustion consumption by public passenger transport,177.27696,TJ,CH4,3.9,kg/TJ,691.380144,kg +33dd560d-174f-37c5-b9d3-7060cd543b0e,SESCO,II.1.1,Mendoza,AR-M,annual,2011,gas oil combustion consumption by public passenger transport,177.27696,TJ,N2O,3.9,kg/TJ,691.380144,kg +60cd84ed-718e-35da-9d41-6a32b5bc42b0,SESCO,II.1.1,Misiones,AR-N,annual,2011,gas oil combustion consumption by public passenger transport,227.15868,TJ,CO2,74100.0,kg/TJ,16832458.188,kg +9ddacf94-bb2c-311b-9347-1127356a66d8,SESCO,II.1.1,Misiones,AR-N,annual,2011,gas oil combustion consumption by public passenger transport,227.15868,TJ,CH4,3.9,kg/TJ,885.918852,kg +9ddacf94-bb2c-311b-9347-1127356a66d8,SESCO,II.1.1,Misiones,AR-N,annual,2011,gas oil combustion consumption by public passenger transport,227.15868,TJ,N2O,3.9,kg/TJ,885.918852,kg +0033862a-97b9-37e0-ba77-c27d4658e352,SESCO,II.1.1,Salta,AR-A,annual,2011,gas oil combustion consumption by public passenger transport,71.8788,TJ,CO2,74100.0,kg/TJ,5326219.08,kg +2022963f-eced-3c7b-ab7a-b47f17babab1,SESCO,II.1.1,Salta,AR-A,annual,2011,gas oil combustion consumption by public passenger transport,71.8788,TJ,CH4,3.9,kg/TJ,280.32732,kg +2022963f-eced-3c7b-ab7a-b47f17babab1,SESCO,II.1.1,Salta,AR-A,annual,2011,gas oil combustion consumption by public passenger transport,71.8788,TJ,N2O,3.9,kg/TJ,280.32732,kg +6769c758-d30b-36ff-bd32-7fb879debbfb,SESCO,II.1.1,San Juan,AR-J,annual,2011,gas oil combustion consumption by public passenger transport,88.16892,TJ,CO2,74100.0,kg/TJ,6533316.972,kg +22d34b8f-1e08-3aca-a407-412942ca13df,SESCO,II.1.1,San Juan,AR-J,annual,2011,gas oil combustion consumption by public passenger transport,88.16892,TJ,CH4,3.9,kg/TJ,343.858788,kg +22d34b8f-1e08-3aca-a407-412942ca13df,SESCO,II.1.1,San Juan,AR-J,annual,2011,gas oil combustion consumption by public passenger transport,88.16892,TJ,N2O,3.9,kg/TJ,343.858788,kg +d7b1c3c7-b947-3665-a969-02abee9e429d,SESCO,II.1.1,Santa Fe,AR-S,annual,2011,gas oil combustion consumption by public passenger transport,254.4654,TJ,CO2,74100.0,kg/TJ,18855886.14,kg +9ef0e37e-8973-3803-9eca-8019d6274524,SESCO,II.1.1,Santa Fe,AR-S,annual,2011,gas oil combustion consumption by public passenger transport,254.4654,TJ,CH4,3.9,kg/TJ,992.4150599999999,kg +9ef0e37e-8973-3803-9eca-8019d6274524,SESCO,II.1.1,Santa Fe,AR-S,annual,2011,gas oil combustion consumption by public passenger transport,254.4654,TJ,N2O,3.9,kg/TJ,992.4150599999999,kg +5324cf59-b4b7-36f8-becc-42df3a731a55,SESCO,II.5.1,Santa Fe,AR-S,annual,2011,gasoline combustion consumption by agriculture machines,185.3512,TJ,CO2,69300.0,kg/TJ,12844838.16,kg +eb259dd3-70c0-313a-bda5-2abf46fcee6e,SESCO,II.5.1,Santa Fe,AR-S,annual,2011,gasoline combustion consumption by agriculture machines,185.3512,TJ,CH4,33.0,kg/TJ,6116.5896,kg +92d7cc2a-5987-3778-bde1-abb360252fa5,SESCO,II.5.1,Santa Fe,AR-S,annual,2011,gasoline combustion consumption by agriculture machines,185.3512,TJ,N2O,3.2,kg/TJ,593.1238400000001,kg +1277cc69-543a-3eb3-8977-d1385ee7e3cf,SESCO,II.5.1,Buenos Aires,AR-B,annual,2011,gas oil combustion consumption by agriculture machines,128.40840599999999,TJ,CO2,74100.0,kg/TJ,9515062.884599999,kg +f0e27281-26b8-3aed-b2df-0aee35923150,SESCO,II.5.1,Buenos Aires,AR-B,annual,2011,gas oil combustion consumption by agriculture machines,128.40840599999999,TJ,CH4,3.9,kg/TJ,500.7927833999999,kg +f0e27281-26b8-3aed-b2df-0aee35923150,SESCO,II.5.1,Buenos Aires,AR-B,annual,2011,gas oil combustion consumption by agriculture machines,128.40840599999999,TJ,N2O,3.9,kg/TJ,500.7927833999999,kg +509ffea3-7f2e-3a56-bd03-196fcbb7ed8f,SESCO,II.5.1,Chaco,AR-H,annual,2011,gas oil combustion consumption by agriculture machines,90.9180132,TJ,CO2,74100.0,kg/TJ,6737024.77812,kg +60c6e69e-9053-3a49-a752-7036a8850775,SESCO,II.5.1,Chaco,AR-H,annual,2011,gas oil combustion consumption by agriculture machines,90.9180132,TJ,CH4,3.9,kg/TJ,354.58025148,kg +60c6e69e-9053-3a49-a752-7036a8850775,SESCO,II.5.1,Chaco,AR-H,annual,2011,gas oil combustion consumption by agriculture machines,90.9180132,TJ,N2O,3.9,kg/TJ,354.58025148,kg +26f976f5-35b8-3a49-b9f0-cd886a0d1cda,SESCO,II.5.1,Córdoba,AR-X,annual,2011,gas oil combustion consumption by agriculture machines,57.6561888,TJ,CO2,74100.0,kg/TJ,4272323.59008,kg +a6965113-db55-3789-8e68-5b06ea088f00,SESCO,II.5.1,Córdoba,AR-X,annual,2011,gas oil combustion consumption by agriculture machines,57.6561888,TJ,CH4,3.9,kg/TJ,224.85913632,kg +a6965113-db55-3789-8e68-5b06ea088f00,SESCO,II.5.1,Córdoba,AR-X,annual,2011,gas oil combustion consumption by agriculture machines,57.6561888,TJ,N2O,3.9,kg/TJ,224.85913632,kg +8557b262-101d-3b1c-8ece-1430bd94497f,SESCO,II.5.1,Santa Fe,AR-S,annual,2011,gas oil combustion consumption by agriculture machines,374.66842560000003,TJ,CO2,74100.0,kg/TJ,27762930.336960003,kg +cee69c90-aecc-3afd-ac42-a6fc4544262a,SESCO,II.5.1,Santa Fe,AR-S,annual,2011,gas oil combustion consumption by agriculture machines,374.66842560000003,TJ,CH4,3.9,kg/TJ,1461.20685984,kg +cee69c90-aecc-3afd-ac42-a6fc4544262a,SESCO,II.5.1,Santa Fe,AR-S,annual,2011,gas oil combustion consumption by agriculture machines,374.66842560000003,TJ,N2O,3.9,kg/TJ,1461.20685984,kg +b2e6e280-de84-3050-9378-9302611f1b24,SESCO,II.1.1,Buenos Aires,AR-B,annual,2011,gas oil combustion consumption by to the public,14609.52835104,TJ,CO2,74100.0,kg/TJ,1082566050.812064,kg +c865847d-4ec1-362e-83ea-e219bb400ed9,SESCO,II.1.1,Buenos Aires,AR-B,annual,2011,gas oil combustion consumption by to the public,14609.52835104,TJ,CH4,3.9,kg/TJ,56977.160569056,kg +c865847d-4ec1-362e-83ea-e219bb400ed9,SESCO,II.1.1,Buenos Aires,AR-B,annual,2011,gas oil combustion consumption by to the public,14609.52835104,TJ,N2O,3.9,kg/TJ,56977.160569056,kg +f486590d-a928-37f9-94cd-6b5bc105d048,SESCO,II.1.1,Capital Federal,AR-C,annual,2011,gas oil combustion consumption by to the public,1717.61519076,TJ,CO2,74100.0,kg/TJ,127275285.635316,kg +2b6f344c-f319-3a99-8342-0b40292c976e,SESCO,II.1.1,Capital Federal,AR-C,annual,2011,gas oil combustion consumption by to the public,1717.61519076,TJ,CH4,3.9,kg/TJ,6698.699243964,kg +2b6f344c-f319-3a99-8342-0b40292c976e,SESCO,II.1.1,Capital Federal,AR-C,annual,2011,gas oil combustion consumption by to the public,1717.61519076,TJ,N2O,3.9,kg/TJ,6698.699243964,kg +d80ea2e5-fdc1-34d4-b826-ab407b0e6fc8,SESCO,II.1.1,Catamarca,AR-K,annual,2011,gas oil combustion consumption by to the public,414.0565632,TJ,CO2,74100.0,kg/TJ,30681591.333120003,kg +2c4f105c-7ee6-372f-8952-4a08b648ac78,SESCO,II.1.1,Catamarca,AR-K,annual,2011,gas oil combustion consumption by to the public,414.0565632,TJ,CH4,3.9,kg/TJ,1614.8205964800002,kg +2c4f105c-7ee6-372f-8952-4a08b648ac78,SESCO,II.1.1,Catamarca,AR-K,annual,2011,gas oil combustion consumption by to the public,414.0565632,TJ,N2O,3.9,kg/TJ,1614.8205964800002,kg +762438cd-ae9c-3fe5-81ff-d5a388ecbb23,SESCO,II.1.1,Chaco,AR-H,annual,2011,gas oil combustion consumption by to the public,705.6327348,TJ,CO2,74100.0,kg/TJ,52287385.64868,kg +1e780690-ff16-3cd1-a971-7ddb326f098d,SESCO,II.1.1,Chaco,AR-H,annual,2011,gas oil combustion consumption by to the public,705.6327348,TJ,CH4,3.9,kg/TJ,2751.96766572,kg +1e780690-ff16-3cd1-a971-7ddb326f098d,SESCO,II.1.1,Chaco,AR-H,annual,2011,gas oil combustion consumption by to the public,705.6327348,TJ,N2O,3.9,kg/TJ,2751.96766572,kg +f6cb5fb3-216c-39f3-9a02-0a1dff7c396d,SESCO,II.1.1,Chubut,AR-U,annual,2011,gas oil combustion consumption by to the public,507.75003719999995,TJ,CO2,74100.0,kg/TJ,37624277.756519996,kg +802cc2fd-07bd-3b07-8e56-2b595ab79c83,SESCO,II.1.1,Chubut,AR-U,annual,2011,gas oil combustion consumption by to the public,507.75003719999995,TJ,CH4,3.9,kg/TJ,1980.2251450799997,kg +802cc2fd-07bd-3b07-8e56-2b595ab79c83,SESCO,II.1.1,Chubut,AR-U,annual,2011,gas oil combustion consumption by to the public,507.75003719999995,TJ,N2O,3.9,kg/TJ,1980.2251450799997,kg +8753d6cb-e21b-336d-9460-57df81c70b60,SESCO,II.1.1,Corrientes,AR-W,annual,2011,gas oil combustion consumption by to the public,1198.1935896,TJ,CO2,74100.0,kg/TJ,88786144.98936,kg +721edea7-6d4d-36eb-8148-0c0b97011844,SESCO,II.1.1,Corrientes,AR-W,annual,2011,gas oil combustion consumption by to the public,1198.1935896,TJ,CH4,3.9,kg/TJ,4672.9549994399995,kg +721edea7-6d4d-36eb-8148-0c0b97011844,SESCO,II.1.1,Corrientes,AR-W,annual,2011,gas oil combustion consumption by to the public,1198.1935896,TJ,N2O,3.9,kg/TJ,4672.9549994399995,kg +5ed5b251-634f-3550-b144-fbd7b9211b50,SESCO,II.1.1,Córdoba,AR-X,annual,2011,gas oil combustion consumption by to the public,7823.03658276,TJ,CO2,74100.0,kg/TJ,579687010.782516,kg +e999c36b-bae6-3dcf-a441-3f3c26afc47b,SESCO,II.1.1,Córdoba,AR-X,annual,2011,gas oil combustion consumption by to the public,7823.03658276,TJ,CH4,3.9,kg/TJ,30509.842672764,kg +e999c36b-bae6-3dcf-a441-3f3c26afc47b,SESCO,II.1.1,Córdoba,AR-X,annual,2011,gas oil combustion consumption by to the public,7823.03658276,TJ,N2O,3.9,kg/TJ,30509.842672764,kg +ed2a20d8-938d-3276-9419-e13db432082d,SESCO,II.1.1,Entre Rios,AR-E,annual,2011,gas oil combustion consumption by to the public,2158.5734604,TJ,CO2,74100.0,kg/TJ,159950293.41564,kg +b718e552-670a-3450-a6c4-7d2270718a69,SESCO,II.1.1,Entre Rios,AR-E,annual,2011,gas oil combustion consumption by to the public,2158.5734604,TJ,CH4,3.9,kg/TJ,8418.43649556,kg +b718e552-670a-3450-a6c4-7d2270718a69,SESCO,II.1.1,Entre Rios,AR-E,annual,2011,gas oil combustion consumption by to the public,2158.5734604,TJ,N2O,3.9,kg/TJ,8418.43649556,kg +53106a5b-c524-364d-958b-b6169218dd74,SESCO,II.1.1,Formosa,AR-P,annual,2011,gas oil combustion consumption by to the public,468.3134988,TJ,CO2,74100.0,kg/TJ,34702030.26108,kg +9fd6fed2-dcc4-3f3d-b143-58aae5f73feb,SESCO,II.1.1,Formosa,AR-P,annual,2011,gas oil combustion consumption by to the public,468.3134988,TJ,CH4,3.9,kg/TJ,1826.42264532,kg +9fd6fed2-dcc4-3f3d-b143-58aae5f73feb,SESCO,II.1.1,Formosa,AR-P,annual,2011,gas oil combustion consumption by to the public,468.3134988,TJ,N2O,3.9,kg/TJ,1826.42264532,kg +c2774f91-7d6f-350e-b394-980ca36a2fa5,SESCO,II.1.1,Jujuy,AR-Y,annual,2011,gas oil combustion consumption by to the public,122.8921596,TJ,CO2,74100.0,kg/TJ,9106309.02636,kg +779667eb-4a3a-3874-ac32-d8f2d41dea11,SESCO,II.1.1,Jujuy,AR-Y,annual,2011,gas oil combustion consumption by to the public,122.8921596,TJ,CH4,3.9,kg/TJ,479.27942243999996,kg +779667eb-4a3a-3874-ac32-d8f2d41dea11,SESCO,II.1.1,Jujuy,AR-Y,annual,2011,gas oil combustion consumption by to the public,122.8921596,TJ,N2O,3.9,kg/TJ,479.27942243999996,kg +77997a5e-03cc-30d0-9cb6-31c4bfef1ed8,SESCO,II.1.1,La Pampa,AR-L,annual,2011,gas oil combustion consumption by to the public,440.7124008,TJ,CO2,74100.0,kg/TJ,32656788.89928,kg +a66135a1-7924-35a2-a5a1-fdea484a3cd6,SESCO,II.1.1,La Pampa,AR-L,annual,2011,gas oil combustion consumption by to the public,440.7124008,TJ,CH4,3.9,kg/TJ,1718.77836312,kg +a66135a1-7924-35a2-a5a1-fdea484a3cd6,SESCO,II.1.1,La Pampa,AR-L,annual,2011,gas oil combustion consumption by to the public,440.7124008,TJ,N2O,3.9,kg/TJ,1718.77836312,kg +c612c372-ee6a-36ad-86ca-d6641ef5a50b,SESCO,II.1.1,La Rioja,AR-F,annual,2011,gas oil combustion consumption by to the public,131.5385652,TJ,CO2,74100.0,kg/TJ,9747007.68132,kg +238b964a-e3e1-3b49-88a1-32edf5c95eb8,SESCO,II.1.1,La Rioja,AR-F,annual,2011,gas oil combustion consumption by to the public,131.5385652,TJ,CH4,3.9,kg/TJ,513.00040428,kg +238b964a-e3e1-3b49-88a1-32edf5c95eb8,SESCO,II.1.1,La Rioja,AR-F,annual,2011,gas oil combustion consumption by to the public,131.5385652,TJ,N2O,3.9,kg/TJ,513.00040428,kg +b91f68af-4922-3f1e-aa42-b11aa0c696c3,SESCO,II.1.1,Mendoza,AR-M,annual,2011,gas oil combustion consumption by to the public,854.5746384,TJ,CO2,74100.0,kg/TJ,63323980.70544,kg +3b1c970c-ae82-3a8c-ba41-863a870326d6,SESCO,II.1.1,Mendoza,AR-M,annual,2011,gas oil combustion consumption by to the public,854.5746384,TJ,CH4,3.9,kg/TJ,3332.84108976,kg +3b1c970c-ae82-3a8c-ba41-863a870326d6,SESCO,II.1.1,Mendoza,AR-M,annual,2011,gas oil combustion consumption by to the public,854.5746384,TJ,N2O,3.9,kg/TJ,3332.84108976,kg +cacb3839-85ef-34e9-b254-9c3bc9ff0732,SESCO,II.1.1,Misiones,AR-N,annual,2011,gas oil combustion consumption by to the public,1229.5977624,TJ,CO2,74100.0,kg/TJ,91113194.19384,kg +7499cf75-8165-39e6-b107-07a62953cc5d,SESCO,II.1.1,Misiones,AR-N,annual,2011,gas oil combustion consumption by to the public,1229.5977624,TJ,CH4,3.9,kg/TJ,4795.43127336,kg +7499cf75-8165-39e6-b107-07a62953cc5d,SESCO,II.1.1,Misiones,AR-N,annual,2011,gas oil combustion consumption by to the public,1229.5977624,TJ,N2O,3.9,kg/TJ,4795.43127336,kg +2434ca88-a317-35f9-98fa-744bb9dc9859,SESCO,II.1.1,Neuquén,AR-Q,annual,2011,gas oil combustion consumption by to the public,231.4797156,TJ,CO2,74100.0,kg/TJ,17152646.92596,kg +fee18577-541c-3814-866b-36ba0301a61e,SESCO,II.1.1,Neuquén,AR-Q,annual,2011,gas oil combustion consumption by to the public,231.4797156,TJ,CH4,3.9,kg/TJ,902.77089084,kg +fee18577-541c-3814-866b-36ba0301a61e,SESCO,II.1.1,Neuquén,AR-Q,annual,2011,gas oil combustion consumption by to the public,231.4797156,TJ,N2O,3.9,kg/TJ,902.77089084,kg +698b660a-8bc6-3e29-96cd-f808f5d9a51c,SESCO,II.1.1,Rio Negro,AR-R,annual,2011,gas oil combustion consumption by to the public,962.7330888,TJ,CO2,74100.0,kg/TJ,71338521.88008,kg +ae373a01-0416-34f4-9037-d36cafd810d3,SESCO,II.1.1,Rio Negro,AR-R,annual,2011,gas oil combustion consumption by to the public,962.7330888,TJ,CH4,3.9,kg/TJ,3754.65904632,kg +ae373a01-0416-34f4-9037-d36cafd810d3,SESCO,II.1.1,Rio Negro,AR-R,annual,2011,gas oil combustion consumption by to the public,962.7330888,TJ,N2O,3.9,kg/TJ,3754.65904632,kg +4e232b1f-5a8c-3dbc-b0eb-fc9c3628662a,SESCO,II.1.1,Salta,AR-A,annual,2011,gas oil combustion consumption by to the public,147.28833,TJ,CO2,74100.0,kg/TJ,10914065.253,kg +2f7e6a5a-c927-3848-a037-3a425d5724ce,SESCO,II.1.1,Salta,AR-A,annual,2011,gas oil combustion consumption by to the public,147.28833,TJ,CH4,3.9,kg/TJ,574.424487,kg +2f7e6a5a-c927-3848-a037-3a425d5724ce,SESCO,II.1.1,Salta,AR-A,annual,2011,gas oil combustion consumption by to the public,147.28833,TJ,N2O,3.9,kg/TJ,574.424487,kg +77fe457e-9ec0-35d0-836f-06ee08a98f99,SESCO,II.1.1,San Juan,AR-J,annual,2011,gas oil combustion consumption by to the public,609.2147292,TJ,CO2,74100.0,kg/TJ,45142811.43372,kg +3cdfce64-00b4-3390-b3d0-06e8ea8597eb,SESCO,II.1.1,San Juan,AR-J,annual,2011,gas oil combustion consumption by to the public,609.2147292,TJ,CH4,3.9,kg/TJ,2375.9374438799996,kg +3cdfce64-00b4-3390-b3d0-06e8ea8597eb,SESCO,II.1.1,San Juan,AR-J,annual,2011,gas oil combustion consumption by to the public,609.2147292,TJ,N2O,3.9,kg/TJ,2375.9374438799996,kg +be737691-6686-384f-8eed-cdab59d39b4c,SESCO,II.1.1,San Luis,AR-D,annual,2011,gas oil combustion consumption by to the public,814.0389683999999,TJ,CO2,74100.0,kg/TJ,60320287.55843999,kg +dc951bda-eee2-3b14-971b-2b242ee471c7,SESCO,II.1.1,San Luis,AR-D,annual,2011,gas oil combustion consumption by to the public,814.0389683999999,TJ,CH4,3.9,kg/TJ,3174.7519767599997,kg +dc951bda-eee2-3b14-971b-2b242ee471c7,SESCO,II.1.1,San Luis,AR-D,annual,2011,gas oil combustion consumption by to the public,814.0389683999999,TJ,N2O,3.9,kg/TJ,3174.7519767599997,kg +d13ee147-41f8-3807-8571-4f47f3dd2370,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2011,gas oil combustion consumption by to the public,331.17777839999997,TJ,CO2,74100.0,kg/TJ,24540273.37944,kg +8295f73a-80dd-3a05-a47c-bec750a57d2a,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2011,gas oil combustion consumption by to the public,331.17777839999997,TJ,CH4,3.9,kg/TJ,1291.59333576,kg +8295f73a-80dd-3a05-a47c-bec750a57d2a,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2011,gas oil combustion consumption by to the public,331.17777839999997,TJ,N2O,3.9,kg/TJ,1291.59333576,kg +995f73f9-811b-3cd9-ada7-4d3a6b9e561f,SESCO,II.1.1,Santa Fe,AR-S,annual,2011,gas oil combustion consumption by to the public,5535.196577399999,TJ,CO2,74100.0,kg/TJ,410158066.3853399,kg +54bf4aa9-043a-3320-8246-c656b21ec88c,SESCO,II.1.1,Santa Fe,AR-S,annual,2011,gas oil combustion consumption by to the public,5535.196577399999,TJ,CH4,3.9,kg/TJ,21587.266651859994,kg +54bf4aa9-043a-3320-8246-c656b21ec88c,SESCO,II.1.1,Santa Fe,AR-S,annual,2011,gas oil combustion consumption by to the public,5535.196577399999,TJ,N2O,3.9,kg/TJ,21587.266651859994,kg +dd36ce85-9615-3925-bd73-153f9ea2ad81,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2011,gas oil combustion consumption by to the public,480.2746368,TJ,CO2,74100.0,kg/TJ,35588350.58688,kg +e6ef7540-0a36-3ddc-8e35-248d4d3079fb,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2011,gas oil combustion consumption by to the public,480.2746368,TJ,CH4,3.9,kg/TJ,1873.07108352,kg +e6ef7540-0a36-3ddc-8e35-248d4d3079fb,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2011,gas oil combustion consumption by to the public,480.2746368,TJ,N2O,3.9,kg/TJ,1873.07108352,kg +4da4a302-569c-3cb3-a95e-021a2ab1e2bc,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2011,gas oil combustion consumption by to the public,106.9180896,TJ,CO2,74100.0,kg/TJ,7922630.43936,kg +84dd0dce-3314-36a1-b3a4-d3bdd57e29a8,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2011,gas oil combustion consumption by to the public,106.9180896,TJ,CH4,3.9,kg/TJ,416.98054944,kg +84dd0dce-3314-36a1-b3a4-d3bdd57e29a8,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2011,gas oil combustion consumption by to the public,106.9180896,TJ,N2O,3.9,kg/TJ,416.98054944,kg +41f94d85-b71f-3cbc-8909-df8138bda531,SESCO,II.1.1,Tucuman,AR-T,annual,2011,gas oil combustion consumption by to the public,141.0735228,TJ,CO2,74100.0,kg/TJ,10453548.03948,kg +733d85f0-14a1-3668-b2f0-dce63fe05889,SESCO,II.1.1,Tucuman,AR-T,annual,2011,gas oil combustion consumption by to the public,141.0735228,TJ,CH4,3.9,kg/TJ,550.18673892,kg +733d85f0-14a1-3668-b2f0-dce63fe05889,SESCO,II.1.1,Tucuman,AR-T,annual,2011,gas oil combustion consumption by to the public,141.0735228,TJ,N2O,3.9,kg/TJ,550.18673892,kg +38fd9178-14c9-368e-bf98-93b3f7cc0236,SESCO,II.1.1,Buenos Aires,AR-B,annual,2011,gas oil combustion consumption by to the public,1465.56748296,TJ,CO2,74100.0,kg/TJ,108598550.487336,kg +465d8df8-f302-3915-baec-0069ab935cfa,SESCO,II.1.1,Buenos Aires,AR-B,annual,2011,gas oil combustion consumption by to the public,1465.56748296,TJ,CH4,3.9,kg/TJ,5715.713183544,kg +465d8df8-f302-3915-baec-0069ab935cfa,SESCO,II.1.1,Buenos Aires,AR-B,annual,2011,gas oil combustion consumption by to the public,1465.56748296,TJ,N2O,3.9,kg/TJ,5715.713183544,kg +7f0f4f3a-245b-313d-b377-472ca86d9ca2,SESCO,II.1.1,Capital Federal,AR-C,annual,2011,gas oil combustion consumption by to the public,188.01785604,TJ,CO2,74100.0,kg/TJ,13932123.132564,kg +ceab0226-01a5-38d4-a75b-9f18179e66bb,SESCO,II.1.1,Capital Federal,AR-C,annual,2011,gas oil combustion consumption by to the public,188.01785604,TJ,CH4,3.9,kg/TJ,733.269638556,kg +ceab0226-01a5-38d4-a75b-9f18179e66bb,SESCO,II.1.1,Capital Federal,AR-C,annual,2011,gas oil combustion consumption by to the public,188.01785604,TJ,N2O,3.9,kg/TJ,733.269638556,kg +89e8828e-b7b6-3e39-b8fa-6d1faaa54f61,SESCO,II.1.1,Catamarca,AR-K,annual,2011,gas oil combustion consumption by to the public,52.090458000000005,TJ,CO2,74100.0,kg/TJ,3859902.9378000004,kg +62dfb87f-2a19-333e-9fbe-d3f2ba7de7d3,SESCO,II.1.1,Catamarca,AR-K,annual,2011,gas oil combustion consumption by to the public,52.090458000000005,TJ,CH4,3.9,kg/TJ,203.1527862,kg +62dfb87f-2a19-333e-9fbe-d3f2ba7de7d3,SESCO,II.1.1,Catamarca,AR-K,annual,2011,gas oil combustion consumption by to the public,52.090458000000005,TJ,N2O,3.9,kg/TJ,203.1527862,kg +ae9d6dd6-848a-3597-9adb-2c328e64b90c,SESCO,II.1.1,Chaco,AR-H,annual,2011,gas oil combustion consumption by to the public,82.5038592,TJ,CO2,74100.0,kg/TJ,6113535.96672,kg +ab4750a0-ec5d-3435-a8b0-be41c768c7de,SESCO,II.1.1,Chaco,AR-H,annual,2011,gas oil combustion consumption by to the public,82.5038592,TJ,CH4,3.9,kg/TJ,321.76505088,kg +ab4750a0-ec5d-3435-a8b0-be41c768c7de,SESCO,II.1.1,Chaco,AR-H,annual,2011,gas oil combustion consumption by to the public,82.5038592,TJ,N2O,3.9,kg/TJ,321.76505088,kg +f57799bc-622d-399c-8c81-f22eaa8ad1ac,SESCO,II.1.1,Chubut,AR-U,annual,2011,gas oil combustion consumption by to the public,33.5070792,TJ,CO2,74100.0,kg/TJ,2482874.56872,kg +9e38e086-95f5-33d3-a640-b6fc0c95e3b8,SESCO,II.1.1,Chubut,AR-U,annual,2011,gas oil combustion consumption by to the public,33.5070792,TJ,CH4,3.9,kg/TJ,130.67760888,kg +9e38e086-95f5-33d3-a640-b6fc0c95e3b8,SESCO,II.1.1,Chubut,AR-U,annual,2011,gas oil combustion consumption by to the public,33.5070792,TJ,N2O,3.9,kg/TJ,130.67760888,kg +0af28a42-a158-36d2-a946-7cf89ba7c9a5,SESCO,II.1.1,Corrientes,AR-W,annual,2011,gas oil combustion consumption by to the public,70.4282208,TJ,CO2,74100.0,kg/TJ,5218731.161280001,kg +d86150fe-3abd-33c1-9ad1-e6f77136c909,SESCO,II.1.1,Corrientes,AR-W,annual,2011,gas oil combustion consumption by to the public,70.4282208,TJ,CH4,3.9,kg/TJ,274.67006112,kg +d86150fe-3abd-33c1-9ad1-e6f77136c909,SESCO,II.1.1,Corrientes,AR-W,annual,2011,gas oil combustion consumption by to the public,70.4282208,TJ,N2O,3.9,kg/TJ,274.67006112,kg +778f9a35-e37f-36c0-9b0d-de2e8c031f72,SESCO,II.1.1,Córdoba,AR-X,annual,2011,gas oil combustion consumption by to the public,733.15787244,TJ,CO2,74100.0,kg/TJ,54326998.347804,kg +2b721585-b822-319d-9029-de7e4f29b2fd,SESCO,II.1.1,Córdoba,AR-X,annual,2011,gas oil combustion consumption by to the public,733.15787244,TJ,CH4,3.9,kg/TJ,2859.315702516,kg +2b721585-b822-319d-9029-de7e4f29b2fd,SESCO,II.1.1,Córdoba,AR-X,annual,2011,gas oil combustion consumption by to the public,733.15787244,TJ,N2O,3.9,kg/TJ,2859.315702516,kg +747e3475-d8f9-3886-b250-d690fbd6db8a,SESCO,II.1.1,Entre Rios,AR-E,annual,2011,gas oil combustion consumption by to the public,237.77723759999998,TJ,CO2,74100.0,kg/TJ,17619293.30616,kg +89cf6deb-d4b9-3746-a27f-462879e78e85,SESCO,II.1.1,Entre Rios,AR-E,annual,2011,gas oil combustion consumption by to the public,237.77723759999998,TJ,CH4,3.9,kg/TJ,927.3312266399998,kg +89cf6deb-d4b9-3746-a27f-462879e78e85,SESCO,II.1.1,Entre Rios,AR-E,annual,2011,gas oil combustion consumption by to the public,237.77723759999998,TJ,N2O,3.9,kg/TJ,927.3312266399998,kg +78d713ae-9724-3de7-ac11-6ed7b9401efb,SESCO,II.1.1,Formosa,AR-P,annual,2011,gas oil combustion consumption by to the public,69.9564936,TJ,CO2,74100.0,kg/TJ,5183776.17576,kg +dc4bd448-8e25-3949-9e28-8e9df7b5b9fb,SESCO,II.1.1,Formosa,AR-P,annual,2011,gas oil combustion consumption by to the public,69.9564936,TJ,CH4,3.9,kg/TJ,272.83032504,kg +dc4bd448-8e25-3949-9e28-8e9df7b5b9fb,SESCO,II.1.1,Formosa,AR-P,annual,2011,gas oil combustion consumption by to the public,69.9564936,TJ,N2O,3.9,kg/TJ,272.83032504,kg +a8a1ddd9-2cf7-3207-9094-b025e9431714,SESCO,II.1.1,Jujuy,AR-Y,annual,2011,gas oil combustion consumption by to the public,9.2893416,TJ,CO2,74100.0,kg/TJ,688340.21256,kg +db5e6d95-dde9-3655-8e54-fba127845676,SESCO,II.1.1,Jujuy,AR-Y,annual,2011,gas oil combustion consumption by to the public,9.2893416,TJ,CH4,3.9,kg/TJ,36.22843224,kg +db5e6d95-dde9-3655-8e54-fba127845676,SESCO,II.1.1,Jujuy,AR-Y,annual,2011,gas oil combustion consumption by to the public,9.2893416,TJ,N2O,3.9,kg/TJ,36.22843224,kg +fcb9c85e-bc3a-334b-bb47-5d08e3c51667,SESCO,II.1.1,La Pampa,AR-L,annual,2011,gas oil combustion consumption by to the public,44.438435999999996,TJ,CO2,74100.0,kg/TJ,3292888.1075999998,kg +410c42a4-30ba-34f0-8eef-c8b5ab66a0a1,SESCO,II.1.1,La Pampa,AR-L,annual,2011,gas oil combustion consumption by to the public,44.438435999999996,TJ,CH4,3.9,kg/TJ,173.30990039999998,kg +410c42a4-30ba-34f0-8eef-c8b5ab66a0a1,SESCO,II.1.1,La Pampa,AR-L,annual,2011,gas oil combustion consumption by to the public,44.438435999999996,TJ,N2O,3.9,kg/TJ,173.30990039999998,kg +0b2d0bce-0710-3041-bfc6-3ffd3769c1a4,SESCO,II.1.1,La Rioja,AR-F,annual,2011,gas oil combustion consumption by to the public,13.973022,TJ,CO2,74100.0,kg/TJ,1035400.9302000001,kg +c4db8ce5-4a58-37ce-a8e1-7b2882c7a8dc,SESCO,II.1.1,La Rioja,AR-F,annual,2011,gas oil combustion consumption by to the public,13.973022,TJ,CH4,3.9,kg/TJ,54.4947858,kg +c4db8ce5-4a58-37ce-a8e1-7b2882c7a8dc,SESCO,II.1.1,La Rioja,AR-F,annual,2011,gas oil combustion consumption by to the public,13.973022,TJ,N2O,3.9,kg/TJ,54.4947858,kg +7cb0c271-98e1-3de9-b630-d63a96d39985,SESCO,II.1.1,Mendoza,AR-M,annual,2011,gas oil combustion consumption by to the public,92.3364456,TJ,CO2,74100.0,kg/TJ,6842130.618960001,kg +55728a7f-d311-3c30-98f1-387048ba2cfc,SESCO,II.1.1,Mendoza,AR-M,annual,2011,gas oil combustion consumption by to the public,92.3364456,TJ,CH4,3.9,kg/TJ,360.11213784,kg +55728a7f-d311-3c30-98f1-387048ba2cfc,SESCO,II.1.1,Mendoza,AR-M,annual,2011,gas oil combustion consumption by to the public,92.3364456,TJ,N2O,3.9,kg/TJ,360.11213784,kg +37f44c6f-0d68-33df-9037-ece255fb5ff7,SESCO,II.1.1,Misiones,AR-N,annual,2011,gas oil combustion consumption by to the public,130.4047584,TJ,CO2,74100.0,kg/TJ,9662992.597439999,kg +6a1d616c-cfe3-3d74-80e1-f6c368d511e3,SESCO,II.1.1,Misiones,AR-N,annual,2011,gas oil combustion consumption by to the public,130.4047584,TJ,CH4,3.9,kg/TJ,508.57855775999997,kg +6a1d616c-cfe3-3d74-80e1-f6c368d511e3,SESCO,II.1.1,Misiones,AR-N,annual,2011,gas oil combustion consumption by to the public,130.4047584,TJ,N2O,3.9,kg/TJ,508.57855775999997,kg +53b147ff-edc9-3dc7-a13c-b4c60c06f313,SESCO,II.1.1,Neuquén,AR-Q,annual,2011,gas oil combustion consumption by to the public,52.8244164,TJ,CO2,74100.0,kg/TJ,3914289.25524,kg +10752ed2-fa6d-3c08-96d6-465f29dbf78f,SESCO,II.1.1,Neuquén,AR-Q,annual,2011,gas oil combustion consumption by to the public,52.8244164,TJ,CH4,3.9,kg/TJ,206.01522396,kg +10752ed2-fa6d-3c08-96d6-465f29dbf78f,SESCO,II.1.1,Neuquén,AR-Q,annual,2011,gas oil combustion consumption by to the public,52.8244164,TJ,N2O,3.9,kg/TJ,206.01522396,kg +5fa17f6b-24db-32d6-8a27-c4e0b54d56eb,SESCO,II.1.1,Rio Negro,AR-R,annual,2011,gas oil combustion consumption by to the public,93.94775879999999,TJ,CO2,74100.0,kg/TJ,6961528.927079999,kg +412dfa4b-d5fc-3e74-924b-654f74e3440a,SESCO,II.1.1,Rio Negro,AR-R,annual,2011,gas oil combustion consumption by to the public,93.94775879999999,TJ,CH4,3.9,kg/TJ,366.39625931999996,kg +412dfa4b-d5fc-3e74-924b-654f74e3440a,SESCO,II.1.1,Rio Negro,AR-R,annual,2011,gas oil combustion consumption by to the public,93.94775879999999,TJ,N2O,3.9,kg/TJ,366.39625931999996,kg +1197322e-b9e8-33eb-920d-1ad7dfb723ba,SESCO,II.1.1,Salta,AR-A,annual,2011,gas oil combustion consumption by to the public,7.572558,TJ,CO2,74100.0,kg/TJ,561126.5478,kg +a2a4de8a-5fa5-3f33-a14a-e7c795595f21,SESCO,II.1.1,Salta,AR-A,annual,2011,gas oil combustion consumption by to the public,7.572558,TJ,CH4,3.9,kg/TJ,29.5329762,kg +a2a4de8a-5fa5-3f33-a14a-e7c795595f21,SESCO,II.1.1,Salta,AR-A,annual,2011,gas oil combustion consumption by to the public,7.572558,TJ,N2O,3.9,kg/TJ,29.5329762,kg +42138220-10ac-3a27-8f4d-22a2a02df0dd,SESCO,II.1.1,San Juan,AR-J,annual,2011,gas oil combustion consumption by to the public,59.0847348,TJ,CO2,74100.0,kg/TJ,4378178.84868,kg +f317cb59-655d-3252-94a9-5b6e650da59d,SESCO,II.1.1,San Juan,AR-J,annual,2011,gas oil combustion consumption by to the public,59.0847348,TJ,CH4,3.9,kg/TJ,230.43046572,kg +f317cb59-655d-3252-94a9-5b6e650da59d,SESCO,II.1.1,San Juan,AR-J,annual,2011,gas oil combustion consumption by to the public,59.0847348,TJ,N2O,3.9,kg/TJ,230.43046572,kg +07792195-a2e7-3e0a-90f4-716f3c5808c1,SESCO,II.1.1,San Luis,AR-D,annual,2011,gas oil combustion consumption by to the public,73.9878468,TJ,CO2,74100.0,kg/TJ,5482499.44788,kg +d3b0b1a1-bb23-3769-8f74-6f59af8b8d1c,SESCO,II.1.1,San Luis,AR-D,annual,2011,gas oil combustion consumption by to the public,73.9878468,TJ,CH4,3.9,kg/TJ,288.55260252,kg +d3b0b1a1-bb23-3769-8f74-6f59af8b8d1c,SESCO,II.1.1,San Luis,AR-D,annual,2011,gas oil combustion consumption by to the public,73.9878468,TJ,N2O,3.9,kg/TJ,288.55260252,kg +1723bb81-29b2-3fb5-ba09-84765f405db2,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2011,gas oil combustion consumption by to the public,53.1382992,TJ,CO2,74100.0,kg/TJ,3937547.97072,kg +0da547a1-a2f0-3d32-ab9e-2722a37ccd39,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2011,gas oil combustion consumption by to the public,53.1382992,TJ,CH4,3.9,kg/TJ,207.23936687999998,kg +0da547a1-a2f0-3d32-ab9e-2722a37ccd39,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2011,gas oil combustion consumption by to the public,53.1382992,TJ,N2O,3.9,kg/TJ,207.23936687999998,kg +259d36e4-6472-375d-8bd1-04fbda47b900,SESCO,II.1.1,Santa Fe,AR-S,annual,2011,gas oil combustion consumption by to the public,495.04323791999997,TJ,CO2,74100.0,kg/TJ,36682703.929872,kg +363328ad-b302-34bd-871e-a9eed09ea8c5,SESCO,II.1.1,Santa Fe,AR-S,annual,2011,gas oil combustion consumption by to the public,495.04323791999997,TJ,CH4,3.9,kg/TJ,1930.6686278879997,kg +363328ad-b302-34bd-871e-a9eed09ea8c5,SESCO,II.1.1,Santa Fe,AR-S,annual,2011,gas oil combustion consumption by to the public,495.04323791999997,TJ,N2O,3.9,kg/TJ,1930.6686278879997,kg +d643d7ee-50cd-338f-823d-434329acc6c9,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2011,gas oil combustion consumption by to the public,54.274273199999996,TJ,CO2,74100.0,kg/TJ,4021723.64412,kg +f15e5a93-f2db-3ab3-926d-2c8c7be01a32,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2011,gas oil combustion consumption by to the public,54.274273199999996,TJ,CH4,3.9,kg/TJ,211.66966548,kg +f15e5a93-f2db-3ab3-926d-2c8c7be01a32,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2011,gas oil combustion consumption by to the public,54.274273199999996,TJ,N2O,3.9,kg/TJ,211.66966548,kg +14b979ab-2a0c-3345-80af-b12194973e6d,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2011,gas oil combustion consumption by to the public,15.110802000000001,TJ,CO2,74100.0,kg/TJ,1119710.4282000002,kg +0a55ce18-2112-3d3c-8576-bbf9c7b4d886,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2011,gas oil combustion consumption by to the public,15.110802000000001,TJ,CH4,3.9,kg/TJ,58.9321278,kg +0a55ce18-2112-3d3c-8576-bbf9c7b4d886,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2011,gas oil combustion consumption by to the public,15.110802000000001,TJ,N2O,3.9,kg/TJ,58.9321278,kg +5bf7c75b-a12d-367d-b802-9c3e2c965764,SESCO,II.1.1,Tucuman,AR-T,annual,2011,gas oil combustion consumption by to the public,7.969516799999999,TJ,CO2,74100.0,kg/TJ,590541.19488,kg +226dc907-c419-3d07-a6f9-da149eb0a04f,SESCO,II.1.1,Tucuman,AR-T,annual,2011,gas oil combustion consumption by to the public,7.969516799999999,TJ,CH4,3.9,kg/TJ,31.081115519999997,kg +226dc907-c419-3d07-a6f9-da149eb0a04f,SESCO,II.1.1,Tucuman,AR-T,annual,2011,gas oil combustion consumption by to the public,7.969516799999999,TJ,N2O,3.9,kg/TJ,31.081115519999997,kg +8567a340-978e-35cf-a9f6-6a8f13ff5df7,SESCO,II.1.1,Buenos Aires,AR-B,annual,2011,jet kerosene combustion consumption by to the public,11.260803059999997,TJ,CO2,71500.0,kg/TJ,805147.4187899998,kg +1cbfa969-7945-309e-8d8e-59823e05c68e,SESCO,II.1.1,Buenos Aires,AR-B,annual,2011,jet kerosene combustion consumption by to the public,11.260803059999997,TJ,CH4,0.5,kg/TJ,5.6304015299999985,kg +f0e6823c-262a-3a47-bf2e-796669297138,SESCO,II.1.1,Buenos Aires,AR-B,annual,2011,jet kerosene combustion consumption by to the public,11.260803059999997,TJ,N2O,2.0,kg/TJ,22.521606119999994,kg +fcf6ad09-0bc8-392d-8948-cc37a1b32de6,SESCO,II.1.1,Córdoba,AR-X,annual,2011,jet kerosene combustion consumption by to the public,5.294168959999999,TJ,CO2,71500.0,kg/TJ,378533.0806399999,kg +9caa5682-3254-33e7-afd7-3a41acb1c39b,SESCO,II.1.1,Córdoba,AR-X,annual,2011,jet kerosene combustion consumption by to the public,5.294168959999999,TJ,CH4,0.5,kg/TJ,2.6470844799999993,kg +31ff903c-cc28-32c2-be5a-9fb9240c3612,SESCO,II.1.1,Córdoba,AR-X,annual,2011,jet kerosene combustion consumption by to the public,5.294168959999999,TJ,N2O,2.0,kg/TJ,10.588337919999997,kg +40886a3c-6b0b-3112-ae03-fab60e1d25eb,SESCO,II.1.1,Entre Rios,AR-E,annual,2011,jet kerosene combustion consumption by to the public,4.815454299999999,TJ,CO2,71500.0,kg/TJ,344304.98244999995,kg +25ff17de-3f08-3760-b2af-37f61b92e339,SESCO,II.1.1,Entre Rios,AR-E,annual,2011,jet kerosene combustion consumption by to the public,4.815454299999999,TJ,CH4,0.5,kg/TJ,2.4077271499999995,kg +cb63cb65-8240-3732-b49a-5e5d184a7030,SESCO,II.1.1,Entre Rios,AR-E,annual,2011,jet kerosene combustion consumption by to the public,4.815454299999999,TJ,N2O,2.0,kg/TJ,9.630908599999998,kg +ca4b7f0a-b94c-35ac-83d4-b47cf713abe8,SESCO,II.1.1,Misiones,AR-N,annual,2011,jet kerosene combustion consumption by to the public,1.0363763499999998,TJ,CO2,71500.0,kg/TJ,74100.90902499999,kg +230ccd65-40ca-33d1-aa14-2e674440be07,SESCO,II.1.1,Misiones,AR-N,annual,2011,jet kerosene combustion consumption by to the public,1.0363763499999998,TJ,CH4,0.5,kg/TJ,0.5181881749999999,kg +95690dd4-8c75-3ad3-8d5c-2e85fe050b0c,SESCO,II.1.1,Misiones,AR-N,annual,2011,jet kerosene combustion consumption by to the public,1.0363763499999998,TJ,N2O,2.0,kg/TJ,2.0727526999999997,kg +452aa01f-72df-34cc-9ab9-e8f02505ec90,SESCO,II.1.1,Santa Fe,AR-S,annual,2011,jet kerosene combustion consumption by to the public,10.001739469999999,TJ,CO2,71500.0,kg/TJ,715124.372105,kg +68607483-9a4f-35ae-a5df-3f7f7d99af70,SESCO,II.1.1,Santa Fe,AR-S,annual,2011,jet kerosene combustion consumption by to the public,10.001739469999999,TJ,CH4,0.5,kg/TJ,5.000869734999999,kg +bb531269-fc5a-364c-869c-60df792ca809,SESCO,II.1.1,Santa Fe,AR-S,annual,2011,jet kerosene combustion consumption by to the public,10.001739469999999,TJ,N2O,2.0,kg/TJ,20.003478939999997,kg +7d7eb761-c7aa-3e2b-be0c-e85211ab6e23,SESCO,I.3.1,Buenos Aires,AR-B,annual,2011,gasoline combustion consumption by petrochemical industries,127.427178,TJ,CO2,69300.0,kg/TJ,8830703.4354,kg +df184640-edaa-360a-8d10-03910eddacc9,SESCO,I.3.1,Buenos Aires,AR-B,annual,2011,gasoline combustion consumption by petrochemical industries,127.427178,TJ,CH4,33.0,kg/TJ,4205.096874,kg +d7a3c01e-c617-3a08-b5b8-74c005f83df5,SESCO,I.3.1,Buenos Aires,AR-B,annual,2011,gasoline combustion consumption by petrochemical industries,127.427178,TJ,N2O,3.2,kg/TJ,407.76696960000004,kg +9528bff5-486a-317c-958b-f269474b9476,SESCO,II.2.1,Capital Federal,AR-C,annual,2011,gas oil combustion consumption by railway transport,68.234292,TJ,CO2,74100.0,kg/TJ,5056161.0372,kg +ec52cde9-a5bb-37bc-8592-dedc5517e830,SESCO,II.2.1,Capital Federal,AR-C,annual,2011,gas oil combustion consumption by railway transport,68.234292,TJ,CH4,3.9,kg/TJ,266.11373879999996,kg +ec52cde9-a5bb-37bc-8592-dedc5517e830,SESCO,II.2.1,Capital Federal,AR-C,annual,2011,gas oil combustion consumption by railway transport,68.234292,TJ,N2O,3.9,kg/TJ,266.11373879999996,kg +6dc60b34-317f-35de-9b12-6083aeee7d51,SESCO,II.2.1,Chaco,AR-H,annual,2011,gas oil combustion consumption by railway transport,6.1776036,TJ,CO2,74100.0,kg/TJ,457760.42676,kg +92e881d7-d3b7-3670-9644-959983ffef69,SESCO,II.2.1,Chaco,AR-H,annual,2011,gas oil combustion consumption by railway transport,6.1776036,TJ,CH4,3.9,kg/TJ,24.09265404,kg +92e881d7-d3b7-3670-9644-959983ffef69,SESCO,II.2.1,Chaco,AR-H,annual,2011,gas oil combustion consumption by railway transport,6.1776036,TJ,N2O,3.9,kg/TJ,24.09265404,kg +2a87d4bb-e63b-3a6c-b703-a885e7100c0d,SESCO,II.2.1,Mendoza,AR-M,annual,2011,gas oil combustion consumption by railway transport,42.081606,TJ,CO2,74100.0,kg/TJ,3118247.0046,kg +64af9bb7-2deb-3d2f-b7b3-802cb35d71b9,SESCO,II.2.1,Mendoza,AR-M,annual,2011,gas oil combustion consumption by railway transport,42.081606,TJ,CH4,3.9,kg/TJ,164.1182634,kg +64af9bb7-2deb-3d2f-b7b3-802cb35d71b9,SESCO,II.2.1,Mendoza,AR-M,annual,2011,gas oil combustion consumption by railway transport,42.081606,TJ,N2O,3.9,kg/TJ,164.1182634,kg +a81c6525-9111-3efd-a7a9-a86fb5245975,SESCO,II.1.1,Buenos Aires,AR-B,annual,2011,gas oil combustion consumption by freight transport,1452.7088351999998,TJ,CO2,74100.0,kg/TJ,107645724.68831998,kg +d4426a97-a4f8-3054-89dd-b60e82290237,SESCO,II.1.1,Buenos Aires,AR-B,annual,2011,gas oil combustion consumption by freight transport,1452.7088351999998,TJ,CH4,3.9,kg/TJ,5665.564457279999,kg +d4426a97-a4f8-3054-89dd-b60e82290237,SESCO,II.1.1,Buenos Aires,AR-B,annual,2011,gas oil combustion consumption by freight transport,1452.7088351999998,TJ,N2O,3.9,kg/TJ,5665.564457279999,kg +0b987eb5-749e-3e47-ab61-3f00e022f129,SESCO,II.1.1,Capital Federal,AR-C,annual,2011,gas oil combustion consumption by freight transport,1286.1988860000001,TJ,CO2,74100.0,kg/TJ,95307337.4526,kg +87b87c64-ef96-3f45-8a2b-d03e158725b6,SESCO,II.1.1,Capital Federal,AR-C,annual,2011,gas oil combustion consumption by freight transport,1286.1988860000001,TJ,CH4,3.9,kg/TJ,5016.1756554,kg +87b87c64-ef96-3f45-8a2b-d03e158725b6,SESCO,II.1.1,Capital Federal,AR-C,annual,2011,gas oil combustion consumption by freight transport,1286.1988860000001,TJ,N2O,3.9,kg/TJ,5016.1756554,kg +357483d9-df3d-3be9-8058-08f699dcc571,SESCO,II.1.1,Chaco,AR-H,annual,2011,gas oil combustion consumption by freight transport,121.4379684,TJ,CO2,74100.0,kg/TJ,8998553.45844,kg +9418e234-2a99-39b7-8691-b1aa0f98ce41,SESCO,II.1.1,Chaco,AR-H,annual,2011,gas oil combustion consumption by freight transport,121.4379684,TJ,CH4,3.9,kg/TJ,473.60807676,kg +9418e234-2a99-39b7-8691-b1aa0f98ce41,SESCO,II.1.1,Chaco,AR-H,annual,2011,gas oil combustion consumption by freight transport,121.4379684,TJ,N2O,3.9,kg/TJ,473.60807676,kg +8abe9dda-1583-3780-8041-add5704fe2ab,SESCO,II.1.1,Chubut,AR-U,annual,2011,gas oil combustion consumption by freight transport,19.1880276,TJ,CO2,74100.0,kg/TJ,1421832.84516,kg +787ccf47-e5eb-3258-b634-94483188a1a0,SESCO,II.1.1,Chubut,AR-U,annual,2011,gas oil combustion consumption by freight transport,19.1880276,TJ,CH4,3.9,kg/TJ,74.83330764,kg +787ccf47-e5eb-3258-b634-94483188a1a0,SESCO,II.1.1,Chubut,AR-U,annual,2011,gas oil combustion consumption by freight transport,19.1880276,TJ,N2O,3.9,kg/TJ,74.83330764,kg +40bc651a-ef41-3c66-9326-8d3c89517e94,SESCO,II.1.1,Corrientes,AR-W,annual,2011,gas oil combustion consumption by freight transport,90.7663092,TJ,CO2,74100.0,kg/TJ,6725783.51172,kg +a2b2a90c-92aa-3627-91bc-9466a7d7045c,SESCO,II.1.1,Corrientes,AR-W,annual,2011,gas oil combustion consumption by freight transport,90.7663092,TJ,CH4,3.9,kg/TJ,353.98860587999997,kg +a2b2a90c-92aa-3627-91bc-9466a7d7045c,SESCO,II.1.1,Corrientes,AR-W,annual,2011,gas oil combustion consumption by freight transport,90.7663092,TJ,N2O,3.9,kg/TJ,353.98860587999997,kg +a869d0f6-594c-3051-9959-0c5a528584a2,SESCO,II.1.1,Córdoba,AR-X,annual,2011,gas oil combustion consumption by freight transport,179.2411656,TJ,CO2,74100.0,kg/TJ,13281770.370959999,kg +7eee9ece-ded9-349a-8c18-6a32d77fee59,SESCO,II.1.1,Córdoba,AR-X,annual,2011,gas oil combustion consumption by freight transport,179.2411656,TJ,CH4,3.9,kg/TJ,699.0405458399999,kg +7eee9ece-ded9-349a-8c18-6a32d77fee59,SESCO,II.1.1,Córdoba,AR-X,annual,2011,gas oil combustion consumption by freight transport,179.2411656,TJ,N2O,3.9,kg/TJ,699.0405458399999,kg +ceaebe35-b605-3c6a-9a5e-0922b8db03cf,SESCO,II.1.1,Entre Rios,AR-E,annual,2011,gas oil combustion consumption by freight transport,244.96186679999997,TJ,CO2,74100.0,kg/TJ,18151674.32988,kg +250fe80d-da6a-39e7-8d39-a8b6964c6f90,SESCO,II.1.1,Entre Rios,AR-E,annual,2011,gas oil combustion consumption by freight transport,244.96186679999997,TJ,CH4,3.9,kg/TJ,955.3512805199998,kg +250fe80d-da6a-39e7-8d39-a8b6964c6f90,SESCO,II.1.1,Entre Rios,AR-E,annual,2011,gas oil combustion consumption by freight transport,244.96186679999997,TJ,N2O,3.9,kg/TJ,955.3512805199998,kg +24590e63-e20f-3c2d-8f90-5b81f74ee1ae,SESCO,II.1.1,Mendoza,AR-M,annual,2011,gas oil combustion consumption by freight transport,409.28583359999993,TJ,CO2,74100.0,kg/TJ,30328080.269759994,kg +e8bb547e-5502-3e8b-93bc-e78a9dcf4743,SESCO,II.1.1,Mendoza,AR-M,annual,2011,gas oil combustion consumption by freight transport,409.28583359999993,TJ,CH4,3.9,kg/TJ,1596.2147510399998,kg +e8bb547e-5502-3e8b-93bc-e78a9dcf4743,SESCO,II.1.1,Mendoza,AR-M,annual,2011,gas oil combustion consumption by freight transport,409.28583359999993,TJ,N2O,3.9,kg/TJ,1596.2147510399998,kg +bc413545-76c8-33fe-a70a-06bb516a7da8,SESCO,II.1.1,Misiones,AR-N,annual,2011,gas oil combustion consumption by freight transport,85.8557952,TJ,CO2,74100.0,kg/TJ,6361914.42432,kg +3f79d32c-8285-3663-bb3d-1f2e8efb5751,SESCO,II.1.1,Misiones,AR-N,annual,2011,gas oil combustion consumption by freight transport,85.8557952,TJ,CH4,3.9,kg/TJ,334.83760128,kg +3f79d32c-8285-3663-bb3d-1f2e8efb5751,SESCO,II.1.1,Misiones,AR-N,annual,2011,gas oil combustion consumption by freight transport,85.8557952,TJ,N2O,3.9,kg/TJ,334.83760128,kg +7cbfea1b-5a2d-3675-926a-f01dea4a38f9,SESCO,II.1.1,Rio Negro,AR-R,annual,2011,gas oil combustion consumption by freight transport,11.5645404,TJ,CO2,74100.0,kg/TJ,856932.4436400001,kg +0db96a17-eab3-38ee-ae7e-845d9b2e6659,SESCO,II.1.1,Rio Negro,AR-R,annual,2011,gas oil combustion consumption by freight transport,11.5645404,TJ,CH4,3.9,kg/TJ,45.10170756,kg +0db96a17-eab3-38ee-ae7e-845d9b2e6659,SESCO,II.1.1,Rio Negro,AR-R,annual,2011,gas oil combustion consumption by freight transport,11.5645404,TJ,N2O,3.9,kg/TJ,45.10170756,kg +bcc21a9c-bdf3-38c8-bfc1-95868e51d894,SESCO,II.1.1,Salta,AR-A,annual,2011,gas oil combustion consumption by freight transport,5.160103199999999,TJ,CO2,74100.0,kg/TJ,382363.6471199999,kg +0c1a6993-f599-3f5a-87c5-26fa6d15d80f,SESCO,II.1.1,Salta,AR-A,annual,2011,gas oil combustion consumption by freight transport,5.160103199999999,TJ,CH4,3.9,kg/TJ,20.124402479999997,kg +0c1a6993-f599-3f5a-87c5-26fa6d15d80f,SESCO,II.1.1,Salta,AR-A,annual,2011,gas oil combustion consumption by freight transport,5.160103199999999,TJ,N2O,3.9,kg/TJ,20.124402479999997,kg +d50c18a7-a5bc-36c9-86ad-31b8ba596b57,SESCO,II.1.1,San Juan,AR-J,annual,2011,gas oil combustion consumption by freight transport,7.316106,TJ,CO2,74100.0,kg/TJ,542123.4546,kg +437006b9-113d-3a23-b871-677082a83d65,SESCO,II.1.1,San Juan,AR-J,annual,2011,gas oil combustion consumption by freight transport,7.316106,TJ,CH4,3.9,kg/TJ,28.532813400000002,kg +437006b9-113d-3a23-b871-677082a83d65,SESCO,II.1.1,San Juan,AR-J,annual,2011,gas oil combustion consumption by freight transport,7.316106,TJ,N2O,3.9,kg/TJ,28.532813400000002,kg +eb34fd46-ae3d-323b-a5df-c7e0ea03cb0a,SESCO,II.1.1,San Luis,AR-D,annual,2011,gas oil combustion consumption by freight transport,126.611436,TJ,CO2,74100.0,kg/TJ,9381907.4076,kg +c8a11355-4e10-3f90-84c0-41b33f418b78,SESCO,II.1.1,San Luis,AR-D,annual,2011,gas oil combustion consumption by freight transport,126.611436,TJ,CH4,3.9,kg/TJ,493.7846004,kg +c8a11355-4e10-3f90-84c0-41b33f418b78,SESCO,II.1.1,San Luis,AR-D,annual,2011,gas oil combustion consumption by freight transport,126.611436,TJ,N2O,3.9,kg/TJ,493.7846004,kg +a4ce9bd9-7820-39b9-8912-9134451d1c61,SESCO,II.1.1,Santa Fe,AR-S,annual,2011,gas oil combustion consumption by freight transport,847.2039912,TJ,CO2,74100.0,kg/TJ,62777815.74792,kg +988cb440-a0cc-389b-b019-3871b8b2d349,SESCO,II.1.1,Santa Fe,AR-S,annual,2011,gas oil combustion consumption by freight transport,847.2039912,TJ,CH4,3.9,kg/TJ,3304.09556568,kg +988cb440-a0cc-389b-b019-3871b8b2d349,SESCO,II.1.1,Santa Fe,AR-S,annual,2011,gas oil combustion consumption by freight transport,847.2039912,TJ,N2O,3.9,kg/TJ,3304.09556568,kg +8b7d3334-c562-30a1-aa1d-01dffe55e225,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2011,gas oil combustion consumption by freight transport,0.2828196,TJ,CO2,74100.0,kg/TJ,20956.93236,kg +b09b6926-ebed-331f-9b91-89039adfbf4e,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2011,gas oil combustion consumption by freight transport,0.2828196,TJ,CH4,3.9,kg/TJ,1.10299644,kg +b09b6926-ebed-331f-9b91-89039adfbf4e,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2011,gas oil combustion consumption by freight transport,0.2828196,TJ,N2O,3.9,kg/TJ,1.10299644,kg +f6c57e3d-2e12-35b5-9447-58c1fc0c32ce,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2011,gas oil combustion consumption by freight transport,34.257652799999995,TJ,CO2,74100.0,kg/TJ,2538492.0724799996,kg +708bbf39-213d-3ade-8660-1659a4838d0a,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2011,gas oil combustion consumption by freight transport,34.257652799999995,TJ,CH4,3.9,kg/TJ,133.60484591999997,kg +708bbf39-213d-3ade-8660-1659a4838d0a,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2011,gas oil combustion consumption by freight transport,34.257652799999995,TJ,N2O,3.9,kg/TJ,133.60484591999997,kg +c94f1d58-9d8e-3f66-aeaf-0056ea074bd6,SESCO,II.1.1,Tucuman,AR-T,annual,2011,gas oil combustion consumption by freight transport,76.9384896,TJ,CO2,74100.0,kg/TJ,5701142.07936,kg +440efd4c-d39f-3047-babc-bd738d0ba36c,SESCO,II.1.1,Tucuman,AR-T,annual,2011,gas oil combustion consumption by freight transport,76.9384896,TJ,CH4,3.9,kg/TJ,300.06010943999996,kg +440efd4c-d39f-3047-babc-bd738d0ba36c,SESCO,II.1.1,Tucuman,AR-T,annual,2011,gas oil combustion consumption by freight transport,76.9384896,TJ,N2O,3.9,kg/TJ,300.06010943999996,kg +d6778ecc-03b6-3c8f-a977-8a05e120e476,SESCO,II.1.1,Buenos Aires,AR-B,annual,2011,gas oil combustion consumption by freight transport,89.3904984,TJ,CO2,74100.0,kg/TJ,6623835.9314399995,kg +ba96a283-29d2-3625-9fc2-6f256e672dd2,SESCO,II.1.1,Buenos Aires,AR-B,annual,2011,gas oil combustion consumption by freight transport,89.3904984,TJ,CH4,3.9,kg/TJ,348.62294376,kg +ba96a283-29d2-3625-9fc2-6f256e672dd2,SESCO,II.1.1,Buenos Aires,AR-B,annual,2011,gas oil combustion consumption by freight transport,89.3904984,TJ,N2O,3.9,kg/TJ,348.62294376,kg +f3613124-2703-370c-a322-d19e4a22290f,SESCO,II.1.1,Capital Federal,AR-C,annual,2011,gas oil combustion consumption by freight transport,79.3617804,TJ,CO2,74100.0,kg/TJ,5880707.92764,kg +9f54cfae-c715-3934-9d82-659228eb7225,SESCO,II.1.1,Capital Federal,AR-C,annual,2011,gas oil combustion consumption by freight transport,79.3617804,TJ,CH4,3.9,kg/TJ,309.51094356,kg +9f54cfae-c715-3934-9d82-659228eb7225,SESCO,II.1.1,Capital Federal,AR-C,annual,2011,gas oil combustion consumption by freight transport,79.3617804,TJ,N2O,3.9,kg/TJ,309.51094356,kg +5b94b423-17b2-3da5-bd1a-65f62b44e6d7,SESCO,II.1.1,Chaco,AR-H,annual,2011,gas oil combustion consumption by freight transport,0.2264724,TJ,CO2,74100.0,kg/TJ,16781.60484,kg +7931aec4-eaf1-3bba-be29-82d5896c0924,SESCO,II.1.1,Chaco,AR-H,annual,2011,gas oil combustion consumption by freight transport,0.2264724,TJ,CH4,3.9,kg/TJ,0.8832423599999999,kg +7931aec4-eaf1-3bba-be29-82d5896c0924,SESCO,II.1.1,Chaco,AR-H,annual,2011,gas oil combustion consumption by freight transport,0.2264724,TJ,N2O,3.9,kg/TJ,0.8832423599999999,kg +f8d3cbeb-8ac2-3dd7-a81e-dd5d611b0657,SESCO,II.1.1,Chubut,AR-U,annual,2011,gas oil combustion consumption by freight transport,0.5551644,TJ,CO2,74100.0,kg/TJ,41137.68204,kg +1d41e956-6306-3614-a101-95dbfdb85bc2,SESCO,II.1.1,Chubut,AR-U,annual,2011,gas oil combustion consumption by freight transport,0.5551644,TJ,CH4,3.9,kg/TJ,2.16514116,kg +1d41e956-6306-3614-a101-95dbfdb85bc2,SESCO,II.1.1,Chubut,AR-U,annual,2011,gas oil combustion consumption by freight transport,0.5551644,TJ,N2O,3.9,kg/TJ,2.16514116,kg +7f5f65f8-7a06-358c-a693-29dbc3b2fe15,SESCO,II.1.1,Corrientes,AR-W,annual,2011,gas oil combustion consumption by freight transport,3.8384723999999997,TJ,CO2,74100.0,kg/TJ,284430.80484,kg +4362353f-518a-39bf-bfbb-b62a7b243d4c,SESCO,II.1.1,Corrientes,AR-W,annual,2011,gas oil combustion consumption by freight transport,3.8384723999999997,TJ,CH4,3.9,kg/TJ,14.970042359999999,kg +4362353f-518a-39bf-bfbb-b62a7b243d4c,SESCO,II.1.1,Corrientes,AR-W,annual,2011,gas oil combustion consumption by freight transport,3.8384723999999997,TJ,N2O,3.9,kg/TJ,14.970042359999999,kg +107b511d-760b-3e33-8bf6-403312baf46f,SESCO,II.1.1,Córdoba,AR-X,annual,2011,gas oil combustion consumption by freight transport,6.1599048,TJ,CO2,74100.0,kg/TJ,456448.94567999995,kg +ca8cab6b-639a-3592-a38b-d453f3e3019f,SESCO,II.1.1,Córdoba,AR-X,annual,2011,gas oil combustion consumption by freight transport,6.1599048,TJ,CH4,3.9,kg/TJ,24.023628719999998,kg +ca8cab6b-639a-3592-a38b-d453f3e3019f,SESCO,II.1.1,Córdoba,AR-X,annual,2011,gas oil combustion consumption by freight transport,6.1599048,TJ,N2O,3.9,kg/TJ,24.023628719999998,kg +f322056a-dfcd-3b24-8c53-3ecc7a4c4f6d,SESCO,II.1.1,Entre Rios,AR-E,annual,2011,gas oil combustion consumption by freight transport,3.0008496,TJ,CO2,74100.0,kg/TJ,222362.95536,kg +47826bf7-7b2c-3b54-9b76-cd9e44ffc1ac,SESCO,II.1.1,Entre Rios,AR-E,annual,2011,gas oil combustion consumption by freight transport,3.0008496,TJ,CH4,3.9,kg/TJ,11.70331344,kg +47826bf7-7b2c-3b54-9b76-cd9e44ffc1ac,SESCO,II.1.1,Entre Rios,AR-E,annual,2011,gas oil combustion consumption by freight transport,3.0008496,TJ,N2O,3.9,kg/TJ,11.70331344,kg +6caf5df5-9547-3a0f-b049-22a9b9cfc13f,SESCO,II.1.1,Mendoza,AR-M,annual,2011,gas oil combustion consumption by freight transport,3.1796436,TJ,CO2,74100.0,kg/TJ,235611.59076,kg +79eb4633-e8cf-3843-869e-49c495daa119,SESCO,II.1.1,Mendoza,AR-M,annual,2011,gas oil combustion consumption by freight transport,3.1796436,TJ,CH4,3.9,kg/TJ,12.40061004,kg +79eb4633-e8cf-3843-869e-49c495daa119,SESCO,II.1.1,Mendoza,AR-M,annual,2011,gas oil combustion consumption by freight transport,3.1796436,TJ,N2O,3.9,kg/TJ,12.40061004,kg +8fca8d71-a4f9-3462-bc20-dff02cda3dbf,SESCO,II.1.1,Misiones,AR-N,annual,2011,gas oil combustion consumption by freight transport,3.1579716,TJ,CO2,74100.0,kg/TJ,234005.69556000002,kg +a557dc39-97a3-3ef8-9e22-dcb1cbae3267,SESCO,II.1.1,Misiones,AR-N,annual,2011,gas oil combustion consumption by freight transport,3.1579716,TJ,CH4,3.9,kg/TJ,12.31608924,kg +a557dc39-97a3-3ef8-9e22-dcb1cbae3267,SESCO,II.1.1,Misiones,AR-N,annual,2011,gas oil combustion consumption by freight transport,3.1579716,TJ,N2O,3.9,kg/TJ,12.31608924,kg +da5642a5-7fc4-35d2-8345-e4c954760c98,SESCO,II.1.1,Rio Negro,AR-R,annual,2011,gas oil combustion consumption by freight transport,0.59598,TJ,CO2,74100.0,kg/TJ,44162.117999999995,kg +67e03775-841c-3dc7-ae7e-7030031bfa0f,SESCO,II.1.1,Rio Negro,AR-R,annual,2011,gas oil combustion consumption by freight transport,0.59598,TJ,CH4,3.9,kg/TJ,2.3243219999999996,kg +67e03775-841c-3dc7-ae7e-7030031bfa0f,SESCO,II.1.1,Rio Negro,AR-R,annual,2011,gas oil combustion consumption by freight transport,0.59598,TJ,N2O,3.9,kg/TJ,2.3243219999999996,kg +53792ecd-291e-37b9-84a9-060a915c5c0e,SESCO,II.1.1,Salta,AR-A,annual,2011,gas oil combustion consumption by freight transport,0.0964404,TJ,CO2,74100.0,kg/TJ,7146.2336399999995,kg +941d3148-684a-3a5b-b92f-77a9f44e3378,SESCO,II.1.1,Salta,AR-A,annual,2011,gas oil combustion consumption by freight transport,0.0964404,TJ,CH4,3.9,kg/TJ,0.37611755999999996,kg +941d3148-684a-3a5b-b92f-77a9f44e3378,SESCO,II.1.1,Salta,AR-A,annual,2011,gas oil combustion consumption by freight transport,0.0964404,TJ,N2O,3.9,kg/TJ,0.37611755999999996,kg +d47c4621-a9ff-3224-a584-f61b68e4a17b,SESCO,II.1.1,San Juan,AR-J,annual,2011,gas oil combustion consumption by freight transport,0.8105327999999999,TJ,CO2,74100.0,kg/TJ,60060.48048,kg +d4fb4b2c-380c-3b38-b8e6-ae6f3ef19930,SESCO,II.1.1,San Juan,AR-J,annual,2011,gas oil combustion consumption by freight transport,0.8105327999999999,TJ,CH4,3.9,kg/TJ,3.16107792,kg +d4fb4b2c-380c-3b38-b8e6-ae6f3ef19930,SESCO,II.1.1,San Juan,AR-J,annual,2011,gas oil combustion consumption by freight transport,0.8105327999999999,TJ,N2O,3.9,kg/TJ,3.16107792,kg +74dfc718-f93b-3044-b20b-9272f51f617b,SESCO,II.1.1,San Luis,AR-D,annual,2011,gas oil combustion consumption by freight transport,1.2645612,TJ,CO2,74100.0,kg/TJ,93703.98492,kg +b98ed6a9-4a8f-37f8-b978-56d741124230,SESCO,II.1.1,San Luis,AR-D,annual,2011,gas oil combustion consumption by freight transport,1.2645612,TJ,CH4,3.9,kg/TJ,4.9317886799999995,kg +b98ed6a9-4a8f-37f8-b978-56d741124230,SESCO,II.1.1,San Luis,AR-D,annual,2011,gas oil combustion consumption by freight transport,1.2645612,TJ,N2O,3.9,kg/TJ,4.9317886799999995,kg +3e7e9b22-9054-33cc-9220-aa658472fc10,SESCO,II.1.1,Santa Fe,AR-S,annual,2011,gas oil combustion consumption by freight transport,7.8998052,TJ,CO2,74100.0,kg/TJ,585375.56532,kg +3c89ce46-9680-3847-a21d-1214799196e7,SESCO,II.1.1,Santa Fe,AR-S,annual,2011,gas oil combustion consumption by freight transport,7.8998052,TJ,CH4,3.9,kg/TJ,30.80924028,kg +3c89ce46-9680-3847-a21d-1214799196e7,SESCO,II.1.1,Santa Fe,AR-S,annual,2011,gas oil combustion consumption by freight transport,7.8998052,TJ,N2O,3.9,kg/TJ,30.80924028,kg +d9067a38-1d95-33d4-8a79-832c7a4406ad,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2011,gas oil combustion consumption by freight transport,0.08921639999999999,TJ,CO2,74100.0,kg/TJ,6610.935239999999,kg +98572289-d68d-3c9f-bfec-d79388c08a3f,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2011,gas oil combustion consumption by freight transport,0.08921639999999999,TJ,CH4,3.9,kg/TJ,0.34794395999999994,kg +98572289-d68d-3c9f-bfec-d79388c08a3f,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2011,gas oil combustion consumption by freight transport,0.08921639999999999,TJ,N2O,3.9,kg/TJ,0.34794395999999994,kg +7ce5c12c-daf3-3b3b-af67-705db783b871,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2011,gas oil combustion consumption by freight transport,2.9770104,TJ,CO2,74100.0,kg/TJ,220596.47064,kg +40dfcfb8-79fa-33a7-b221-9d4740e3633a,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2011,gas oil combustion consumption by freight transport,2.9770104,TJ,CH4,3.9,kg/TJ,11.610340560000001,kg +40dfcfb8-79fa-33a7-b221-9d4740e3633a,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2011,gas oil combustion consumption by freight transport,2.9770104,TJ,N2O,3.9,kg/TJ,11.610340560000001,kg +8aa0100a-bc1b-3bc9-b419-41446ea57896,SESCO,II.1.1,Tucuman,AR-T,annual,2011,gas oil combustion consumption by freight transport,1.7691575999999998,TJ,CO2,74100.0,kg/TJ,131094.57815999998,kg +ef8b1d9c-9225-37fe-be7b-c70f020e2356,SESCO,II.1.1,Tucuman,AR-T,annual,2011,gas oil combustion consumption by freight transport,1.7691575999999998,TJ,CH4,3.9,kg/TJ,6.899714639999999,kg +ef8b1d9c-9225-37fe-be7b-c70f020e2356,SESCO,II.1.1,Tucuman,AR-T,annual,2011,gas oil combustion consumption by freight transport,1.7691575999999998,TJ,N2O,3.9,kg/TJ,6.899714639999999,kg +fabafc30-4bc5-3da1-b9d4-88fd6cc9fd45,SESCO,II.1.1,Buenos Aires,AR-B,annual,2011,gas oil combustion consumption by public passenger transport,1340.8408607999997,TJ,CO2,74100.0,kg/TJ,99356307.78527997,kg +65887ac0-02fc-36f8-8cb2-c787d7023f89,SESCO,II.1.1,Buenos Aires,AR-B,annual,2011,gas oil combustion consumption by public passenger transport,1340.8408607999997,TJ,CH4,3.9,kg/TJ,5229.279357119999,kg +65887ac0-02fc-36f8-8cb2-c787d7023f89,SESCO,II.1.1,Buenos Aires,AR-B,annual,2011,gas oil combustion consumption by public passenger transport,1340.8408607999997,TJ,N2O,3.9,kg/TJ,5229.279357119999,kg +6680858e-9f24-3ec5-90f2-d436bd9f9c5d,SESCO,II.1.1,Capital Federal,AR-C,annual,2011,gas oil combustion consumption by public passenger transport,826.4609975999999,TJ,CO2,74100.0,kg/TJ,61240759.92215999,kg +05f1cbd4-3d23-365f-8766-f92bd9c60ac6,SESCO,II.1.1,Capital Federal,AR-C,annual,2011,gas oil combustion consumption by public passenger transport,826.4609975999999,TJ,CH4,3.9,kg/TJ,3223.1978906399995,kg +05f1cbd4-3d23-365f-8766-f92bd9c60ac6,SESCO,II.1.1,Capital Federal,AR-C,annual,2011,gas oil combustion consumption by public passenger transport,826.4609975999999,TJ,N2O,3.9,kg/TJ,3223.1978906399995,kg +ac5de0c4-caf8-396d-a0f0-32a1b67c138e,SESCO,II.1.1,Chubut,AR-U,annual,2011,gas oil combustion consumption by public passenger transport,235.36080959999998,TJ,CO2,74100.0,kg/TJ,17440235.991359998,kg +7139fb7e-3d8a-35ac-8afc-bf06a455759c,SESCO,II.1.1,Chubut,AR-U,annual,2011,gas oil combustion consumption by public passenger transport,235.36080959999998,TJ,CH4,3.9,kg/TJ,917.9071574399999,kg +7139fb7e-3d8a-35ac-8afc-bf06a455759c,SESCO,II.1.1,Chubut,AR-U,annual,2011,gas oil combustion consumption by public passenger transport,235.36080959999998,TJ,N2O,3.9,kg/TJ,917.9071574399999,kg +428889fa-684f-39f0-9576-01fb3be82b74,SESCO,II.1.1,Córdoba,AR-X,annual,2011,gas oil combustion consumption by public passenger transport,13.96941,TJ,CO2,74100.0,kg/TJ,1035133.281,kg +dd0aef25-7d14-3003-b9dd-788824b46131,SESCO,II.1.1,Córdoba,AR-X,annual,2011,gas oil combustion consumption by public passenger transport,13.96941,TJ,CH4,3.9,kg/TJ,54.480699,kg +dd0aef25-7d14-3003-b9dd-788824b46131,SESCO,II.1.1,Córdoba,AR-X,annual,2011,gas oil combustion consumption by public passenger transport,13.96941,TJ,N2O,3.9,kg/TJ,54.480699,kg +47596a0d-35fc-3584-8e3b-82948bab8fa5,SESCO,II.1.1,Entre Rios,AR-E,annual,2011,gas oil combustion consumption by public passenger transport,234.65791439999998,TJ,CO2,74100.0,kg/TJ,17388151.457039997,kg +2437ffbd-6ce3-3f12-9708-f3027bac61c9,SESCO,II.1.1,Entre Rios,AR-E,annual,2011,gas oil combustion consumption by public passenger transport,234.65791439999998,TJ,CH4,3.9,kg/TJ,915.16586616,kg +2437ffbd-6ce3-3f12-9708-f3027bac61c9,SESCO,II.1.1,Entre Rios,AR-E,annual,2011,gas oil combustion consumption by public passenger transport,234.65791439999998,TJ,N2O,3.9,kg/TJ,915.16586616,kg +146f4ebb-b478-3957-8d7e-d46eabefd045,SESCO,II.1.1,La Pampa,AR-L,annual,2011,gas oil combustion consumption by public passenger transport,68.714688,TJ,CO2,74100.0,kg/TJ,5091758.380799999,kg +d3587fef-235e-3887-8baf-d8e0b6b511bd,SESCO,II.1.1,La Pampa,AR-L,annual,2011,gas oil combustion consumption by public passenger transport,68.714688,TJ,CH4,3.9,kg/TJ,267.9872832,kg +d3587fef-235e-3887-8baf-d8e0b6b511bd,SESCO,II.1.1,La Pampa,AR-L,annual,2011,gas oil combustion consumption by public passenger transport,68.714688,TJ,N2O,3.9,kg/TJ,267.9872832,kg +0f19e6b4-4a6d-3eb7-898f-194c33b93c28,SESCO,II.1.1,Mendoza,AR-M,annual,2011,gas oil combustion consumption by public passenger transport,97.9354068,TJ,CO2,74100.0,kg/TJ,7257013.643879999,kg +094fb7e6-4f2d-34f2-8511-35490a769939,SESCO,II.1.1,Mendoza,AR-M,annual,2011,gas oil combustion consumption by public passenger transport,97.9354068,TJ,CH4,3.9,kg/TJ,381.94808651999995,kg +094fb7e6-4f2d-34f2-8511-35490a769939,SESCO,II.1.1,Mendoza,AR-M,annual,2011,gas oil combustion consumption by public passenger transport,97.9354068,TJ,N2O,3.9,kg/TJ,381.94808651999995,kg +c9320f26-14a5-394a-95b0-99d6a8f078e4,SESCO,II.1.1,Misiones,AR-N,annual,2011,gas oil combustion consumption by public passenger transport,470.6566032,TJ,CO2,74100.0,kg/TJ,34875654.29712,kg +e8f1e052-84ad-32a1-9aaf-b609627b3f3f,SESCO,II.1.1,Misiones,AR-N,annual,2011,gas oil combustion consumption by public passenger transport,470.6566032,TJ,CH4,3.9,kg/TJ,1835.56075248,kg +e8f1e052-84ad-32a1-9aaf-b609627b3f3f,SESCO,II.1.1,Misiones,AR-N,annual,2011,gas oil combustion consumption by public passenger transport,470.6566032,TJ,N2O,3.9,kg/TJ,1835.56075248,kg +548e8357-a7c3-39bf-b521-c1bbebdf31bd,SESCO,II.1.1,Neuquén,AR-Q,annual,2011,gas oil combustion consumption by public passenger transport,25.0625844,TJ,CO2,74100.0,kg/TJ,1857137.5040399998,kg +01462fbc-268d-3a9e-96d2-e57ef81edbfc,SESCO,II.1.1,Neuquén,AR-Q,annual,2011,gas oil combustion consumption by public passenger transport,25.0625844,TJ,CH4,3.9,kg/TJ,97.74407916,kg +01462fbc-268d-3a9e-96d2-e57ef81edbfc,SESCO,II.1.1,Neuquén,AR-Q,annual,2011,gas oil combustion consumption by public passenger transport,25.0625844,TJ,N2O,3.9,kg/TJ,97.74407916,kg +7db80599-f60e-3bdf-b62f-7b289e8ece4d,SESCO,II.1.1,Rio Negro,AR-R,annual,2011,gas oil combustion consumption by public passenger transport,168.5384484,TJ,CO2,74100.0,kg/TJ,12488699.02644,kg +50a50c52-369a-3520-a6a8-35a9dac563cb,SESCO,II.1.1,Rio Negro,AR-R,annual,2011,gas oil combustion consumption by public passenger transport,168.5384484,TJ,CH4,3.9,kg/TJ,657.29994876,kg +50a50c52-369a-3520-a6a8-35a9dac563cb,SESCO,II.1.1,Rio Negro,AR-R,annual,2011,gas oil combustion consumption by public passenger transport,168.5384484,TJ,N2O,3.9,kg/TJ,657.29994876,kg +4e491e4a-13fe-39c5-ae28-8f7f35d63669,SESCO,II.1.1,Salta,AR-A,annual,2011,gas oil combustion consumption by public passenger transport,20.057436,TJ,CO2,74100.0,kg/TJ,1486256.0076,kg +567aad91-bab6-37dc-98d9-9b457cb3e401,SESCO,II.1.1,Salta,AR-A,annual,2011,gas oil combustion consumption by public passenger transport,20.057436,TJ,CH4,3.9,kg/TJ,78.2240004,kg +567aad91-bab6-37dc-98d9-9b457cb3e401,SESCO,II.1.1,Salta,AR-A,annual,2011,gas oil combustion consumption by public passenger transport,20.057436,TJ,N2O,3.9,kg/TJ,78.2240004,kg +1a6bcf2e-9006-367a-8656-79b6bf93f0c0,SESCO,II.1.1,San Juan,AR-J,annual,2011,gas oil combustion consumption by public passenger transport,5.3020548,TJ,CO2,74100.0,kg/TJ,392882.26067999995,kg +1d9ded26-1d21-3382-8145-78bafc10ab9a,SESCO,II.1.1,San Juan,AR-J,annual,2011,gas oil combustion consumption by public passenger transport,5.3020548,TJ,CH4,3.9,kg/TJ,20.67801372,kg +1d9ded26-1d21-3382-8145-78bafc10ab9a,SESCO,II.1.1,San Juan,AR-J,annual,2011,gas oil combustion consumption by public passenger transport,5.3020548,TJ,N2O,3.9,kg/TJ,20.67801372,kg +274529bc-f234-3c49-99e2-85f205c5abbd,SESCO,II.1.1,San Luis,AR-D,annual,2011,gas oil combustion consumption by public passenger transport,14.354087999999999,TJ,CO2,74100.0,kg/TJ,1063637.9208,kg +a81363a2-36a8-3cb4-9492-3b25fe85500d,SESCO,II.1.1,San Luis,AR-D,annual,2011,gas oil combustion consumption by public passenger transport,14.354087999999999,TJ,CH4,3.9,kg/TJ,55.98094319999999,kg +a81363a2-36a8-3cb4-9492-3b25fe85500d,SESCO,II.1.1,San Luis,AR-D,annual,2011,gas oil combustion consumption by public passenger transport,14.354087999999999,TJ,N2O,3.9,kg/TJ,55.98094319999999,kg +f61cb9ac-a430-30eb-b85c-9895a8216455,SESCO,II.1.1,Santa Fe,AR-S,annual,2011,gas oil combustion consumption by public passenger transport,86.35641840000001,TJ,CO2,74100.0,kg/TJ,6399010.603440001,kg +91990363-bc60-3ddf-81be-e27f4ceff6c2,SESCO,II.1.1,Santa Fe,AR-S,annual,2011,gas oil combustion consumption by public passenger transport,86.35641840000001,TJ,CH4,3.9,kg/TJ,336.79003176000003,kg +91990363-bc60-3ddf-81be-e27f4ceff6c2,SESCO,II.1.1,Santa Fe,AR-S,annual,2011,gas oil combustion consumption by public passenger transport,86.35641840000001,TJ,N2O,3.9,kg/TJ,336.79003176000003,kg +65f41eb3-aba6-3e09-9200-0a1681684c32,SESCO,II.1.1,Tucuman,AR-T,annual,2011,gas oil combustion consumption by public passenger transport,4.786261199999999,TJ,CO2,74100.0,kg/TJ,354661.95491999993,kg +fa0f4c51-e2c6-329d-a8d2-18b13bb541bb,SESCO,II.1.1,Tucuman,AR-T,annual,2011,gas oil combustion consumption by public passenger transport,4.786261199999999,TJ,CH4,3.9,kg/TJ,18.666418679999996,kg +fa0f4c51-e2c6-329d-a8d2-18b13bb541bb,SESCO,II.1.1,Tucuman,AR-T,annual,2011,gas oil combustion consumption by public passenger transport,4.786261199999999,TJ,N2O,3.9,kg/TJ,18.666418679999996,kg +80309bcd-f882-3dfa-9b93-e69f812ad620,SESCO,II.1.1,Buenos Aires,AR-B,annual,2011,gas oil combustion consumption by public passenger transport,1.2725076000000002,TJ,CO2,74100.0,kg/TJ,94292.81316000002,kg +8ff655b0-1cea-31f1-b86b-66db754dda5d,SESCO,II.1.1,Buenos Aires,AR-B,annual,2011,gas oil combustion consumption by public passenger transport,1.2725076000000002,TJ,CH4,3.9,kg/TJ,4.962779640000001,kg +8ff655b0-1cea-31f1-b86b-66db754dda5d,SESCO,II.1.1,Buenos Aires,AR-B,annual,2011,gas oil combustion consumption by public passenger transport,1.2725076000000002,TJ,N2O,3.9,kg/TJ,4.962779640000001,kg +d2aff0be-ecc0-3d38-8a7d-b1e3ae62aaa0,SESCO,II.1.1,Capital Federal,AR-C,annual,2011,gas oil combustion consumption by public passenger transport,26.1949464,TJ,CO2,74100.0,kg/TJ,1941045.52824,kg +c2b691a1-d6c2-3f16-abb5-8ff29cf02a3b,SESCO,II.1.1,Capital Federal,AR-C,annual,2011,gas oil combustion consumption by public passenger transport,26.1949464,TJ,CH4,3.9,kg/TJ,102.16029096,kg +c2b691a1-d6c2-3f16-abb5-8ff29cf02a3b,SESCO,II.1.1,Capital Federal,AR-C,annual,2011,gas oil combustion consumption by public passenger transport,26.1949464,TJ,N2O,3.9,kg/TJ,102.16029096,kg +e5b9154b-6259-3ffd-9a15-e9c43a9601a8,SESCO,II.1.1,Chubut,AR-U,annual,2011,gas oil combustion consumption by public passenger transport,2.5576572,TJ,CO2,74100.0,kg/TJ,189522.39852,kg +21e6ce2b-3edc-3894-b380-7f2b345aa5c3,SESCO,II.1.1,Chubut,AR-U,annual,2011,gas oil combustion consumption by public passenger transport,2.5576572,TJ,CH4,3.9,kg/TJ,9.97486308,kg +21e6ce2b-3edc-3894-b380-7f2b345aa5c3,SESCO,II.1.1,Chubut,AR-U,annual,2011,gas oil combustion consumption by public passenger transport,2.5576572,TJ,N2O,3.9,kg/TJ,9.97486308,kg +4469763d-4ad8-3774-8888-cca0c5a15bae,SESCO,II.1.1,Córdoba,AR-X,annual,2011,gas oil combustion consumption by public passenger transport,0.1650684,TJ,CO2,74100.0,kg/TJ,12231.568440000001,kg +f6e72fd8-8d14-3e8d-b3e0-1ac1efb786aa,SESCO,II.1.1,Córdoba,AR-X,annual,2011,gas oil combustion consumption by public passenger transport,0.1650684,TJ,CH4,3.9,kg/TJ,0.64376676,kg +f6e72fd8-8d14-3e8d-b3e0-1ac1efb786aa,SESCO,II.1.1,Córdoba,AR-X,annual,2011,gas oil combustion consumption by public passenger transport,0.1650684,TJ,N2O,3.9,kg/TJ,0.64376676,kg +8d653517-8355-342f-8323-7cc7e0640380,SESCO,II.1.1,Entre Rios,AR-E,annual,2011,gas oil combustion consumption by public passenger transport,19.0392132,TJ,CO2,74100.0,kg/TJ,1410805.6981199998,kg +652cf498-300a-3ec4-b6f1-44514cfc08a6,SESCO,II.1.1,Entre Rios,AR-E,annual,2011,gas oil combustion consumption by public passenger transport,19.0392132,TJ,CH4,3.9,kg/TJ,74.25293148,kg +652cf498-300a-3ec4-b6f1-44514cfc08a6,SESCO,II.1.1,Entre Rios,AR-E,annual,2011,gas oil combustion consumption by public passenger transport,19.0392132,TJ,N2O,3.9,kg/TJ,74.25293148,kg +5e9e4fe5-4809-3347-ab03-3e1377446c81,SESCO,II.1.1,Mendoza,AR-M,annual,2011,gas oil combustion consumption by public passenger transport,0.1874628,TJ,CO2,74100.0,kg/TJ,13890.993480000001,kg +3fe5eb41-4765-36ab-8358-1c152ac36428,SESCO,II.1.1,Mendoza,AR-M,annual,2011,gas oil combustion consumption by public passenger transport,0.1874628,TJ,CH4,3.9,kg/TJ,0.73110492,kg +3fe5eb41-4765-36ab-8358-1c152ac36428,SESCO,II.1.1,Mendoza,AR-M,annual,2011,gas oil combustion consumption by public passenger transport,0.1874628,TJ,N2O,3.9,kg/TJ,0.73110492,kg +03a637d0-8589-3391-9590-d8dc25864ee7,SESCO,II.1.1,Misiones,AR-N,annual,2011,gas oil combustion consumption by public passenger transport,1.6329852,TJ,CO2,74100.0,kg/TJ,121004.20332,kg +43620ede-dc83-359f-bd4e-f15ac1f24b42,SESCO,II.1.1,Misiones,AR-N,annual,2011,gas oil combustion consumption by public passenger transport,1.6329852,TJ,CH4,3.9,kg/TJ,6.3686422799999995,kg +43620ede-dc83-359f-bd4e-f15ac1f24b42,SESCO,II.1.1,Misiones,AR-N,annual,2011,gas oil combustion consumption by public passenger transport,1.6329852,TJ,N2O,3.9,kg/TJ,6.3686422799999995,kg +165e5d07-ccea-306e-abcb-a91f9903a1b5,SESCO,II.1.1,Neuquén,AR-Q,annual,2011,gas oil combustion consumption by public passenger transport,0.3525312,TJ,CO2,74100.0,kg/TJ,26122.56192,kg +58cc3032-9f95-3d8f-8717-434826e537c2,SESCO,II.1.1,Neuquén,AR-Q,annual,2011,gas oil combustion consumption by public passenger transport,0.3525312,TJ,CH4,3.9,kg/TJ,1.3748716799999998,kg +58cc3032-9f95-3d8f-8717-434826e537c2,SESCO,II.1.1,Neuquén,AR-Q,annual,2011,gas oil combustion consumption by public passenger transport,0.3525312,TJ,N2O,3.9,kg/TJ,1.3748716799999998,kg +350e51ef-c633-3ec6-8dc7-2fd0ee719afd,SESCO,II.1.1,Rio Negro,AR-R,annual,2011,gas oil combustion consumption by public passenger transport,0.0476784,TJ,CO2,74100.0,kg/TJ,3532.9694400000003,kg +e159ca78-cbd2-3c02-a579-d6002338fe96,SESCO,II.1.1,Rio Negro,AR-R,annual,2011,gas oil combustion consumption by public passenger transport,0.0476784,TJ,CH4,3.9,kg/TJ,0.18594576000000002,kg +e159ca78-cbd2-3c02-a579-d6002338fe96,SESCO,II.1.1,Rio Negro,AR-R,annual,2011,gas oil combustion consumption by public passenger transport,0.0476784,TJ,N2O,3.9,kg/TJ,0.18594576000000002,kg +69559ae2-5659-392b-bc25-5132b47ead70,SESCO,II.1.1,Salta,AR-A,annual,2011,gas oil combustion consumption by public passenger transport,0.15459359999999997,TJ,CO2,74100.0,kg/TJ,11455.385759999997,kg +d9b3052e-10b7-3e5c-b142-687d70a0c85c,SESCO,II.1.1,Salta,AR-A,annual,2011,gas oil combustion consumption by public passenger transport,0.15459359999999997,TJ,CH4,3.9,kg/TJ,0.6029150399999998,kg +d9b3052e-10b7-3e5c-b142-687d70a0c85c,SESCO,II.1.1,Salta,AR-A,annual,2011,gas oil combustion consumption by public passenger transport,0.15459359999999997,TJ,N2O,3.9,kg/TJ,0.6029150399999998,kg +93c0d158-4bd0-3b11-9c6a-1f14f41c3601,SESCO,II.1.1,San Juan,AR-J,annual,2011,gas oil combustion consumption by public passenger transport,0.03864839999999999,TJ,CO2,74100.0,kg/TJ,2863.8464399999993,kg +1604c40e-7ba5-3b88-9aac-9667645158e4,SESCO,II.1.1,San Juan,AR-J,annual,2011,gas oil combustion consumption by public passenger transport,0.03864839999999999,TJ,CH4,3.9,kg/TJ,0.15072875999999996,kg +1604c40e-7ba5-3b88-9aac-9667645158e4,SESCO,II.1.1,San Juan,AR-J,annual,2011,gas oil combustion consumption by public passenger transport,0.03864839999999999,TJ,N2O,3.9,kg/TJ,0.15072875999999996,kg +ab591f3d-2958-3f74-bece-c0232a32154c,SESCO,II.1.1,San Luis,AR-D,annual,2011,gas oil combustion consumption by public passenger transport,0.0242004,TJ,CO2,74100.0,kg/TJ,1793.24964,kg +84c07d94-9177-37bb-b996-5c3e0c9dd32b,SESCO,II.1.1,San Luis,AR-D,annual,2011,gas oil combustion consumption by public passenger transport,0.0242004,TJ,CH4,3.9,kg/TJ,0.09438156,kg +84c07d94-9177-37bb-b996-5c3e0c9dd32b,SESCO,II.1.1,San Luis,AR-D,annual,2011,gas oil combustion consumption by public passenger transport,0.0242004,TJ,N2O,3.9,kg/TJ,0.09438156,kg +f7043895-6ca0-392a-94d9-61801f8fc039,SESCO,II.1.1,Santa Fe,AR-S,annual,2011,gas oil combustion consumption by public passenger transport,0.012280800000000001,TJ,CO2,74100.0,kg/TJ,910.0072800000002,kg +7cbb93d5-69db-3b69-b279-07bd8a28ebfb,SESCO,II.1.1,Santa Fe,AR-S,annual,2011,gas oil combustion consumption by public passenger transport,0.012280800000000001,TJ,CH4,3.9,kg/TJ,0.047895120000000006,kg +7cbb93d5-69db-3b69-b279-07bd8a28ebfb,SESCO,II.1.1,Santa Fe,AR-S,annual,2011,gas oil combustion consumption by public passenger transport,0.012280800000000001,TJ,N2O,3.9,kg/TJ,0.047895120000000006,kg +b4439a41-5faf-350a-af19-68284f1fe06c,SESCO,II.1.1,Tucuman,AR-T,annual,2011,gas oil combustion consumption by public passenger transport,0.059598,TJ,CO2,74100.0,kg/TJ,4416.2118,kg +3fefd840-1a91-3a4b-8ab4-ad8ee951833e,SESCO,II.1.1,Tucuman,AR-T,annual,2011,gas oil combustion consumption by public passenger transport,0.059598,TJ,CH4,3.9,kg/TJ,0.23243219999999998,kg +3fefd840-1a91-3a4b-8ab4-ad8ee951833e,SESCO,II.1.1,Tucuman,AR-T,annual,2011,gas oil combustion consumption by public passenger transport,0.059598,TJ,N2O,3.9,kg/TJ,0.23243219999999998,kg +f3768abf-ed74-33a1-9aa5-98fbc1bd52e4,SESCO,I.3.1,Santa Fe,AR-S,annual,2011,gasoline combustion consumption by petrochemical industries,1.1420540000000001,TJ,CO2,69300.0,kg/TJ,79144.34220000001,kg +23dea50b-8586-3e07-8ffb-e95d737145e3,SESCO,I.3.1,Santa Fe,AR-S,annual,2011,gasoline combustion consumption by petrochemical industries,1.1420540000000001,TJ,CH4,33.0,kg/TJ,37.687782000000006,kg +2a80504d-ba10-3571-814b-8229ae7caef0,SESCO,I.3.1,Santa Fe,AR-S,annual,2011,gasoline combustion consumption by petrochemical industries,1.1420540000000001,TJ,N2O,3.2,kg/TJ,3.6545728000000004,kg +1cd3080a-8f4f-3c26-b801-295ecc049c4f,SESCO,I.3.1,Santa Fe,AR-S,annual,2011,jet kerosene combustion consumption by petrochemical industries,6.119967474999998,TJ,CO2,71500.0,kg/TJ,437577.6744624999,kg +034d681d-c5ec-366d-9f86-b6cd1b6f15df,SESCO,I.3.1,Santa Fe,AR-S,annual,2011,jet kerosene combustion consumption by petrochemical industries,6.119967474999998,TJ,CH4,0.5,kg/TJ,3.059983737499999,kg +712df558-744c-3b94-ad98-27c5e2f2b33d,SESCO,I.3.1,Santa Fe,AR-S,annual,2011,jet kerosene combustion consumption by petrochemical industries,6.119967474999998,TJ,N2O,2.0,kg/TJ,12.239934949999997,kg +d72380e2-9c34-3f09-b53b-2c4c63e252a7,SESCO,II.1.1,Mendoza,AR-M,annual,2011,gasoline combustion consumption by public passenger transport,70.66027199999999,TJ,CO2,69300.0,kg/TJ,4896756.849599999,kg +e8de0528-d641-336a-85c5-49411e43d232,SESCO,II.1.1,Mendoza,AR-M,annual,2011,gasoline combustion consumption by public passenger transport,70.66027199999999,TJ,CH4,33.0,kg/TJ,2331.788976,kg +8e3ac6c2-15a1-3b92-95d5-b1541529abf2,SESCO,II.1.1,Mendoza,AR-M,annual,2011,gasoline combustion consumption by public passenger transport,70.66027199999999,TJ,N2O,3.2,kg/TJ,226.1128704,kg +b393ec0d-af8b-3d13-9afb-7f9cf4d7161f,SESCO,II.5.1,Buenos Aires,AR-B,annual,2011,gas oil combustion consumption by agriculture machines,191.10635082,TJ,CO2,74100.0,kg/TJ,14160980.595762,kg +15c609d7-2a73-375e-b2ca-cf94c24217ca,SESCO,II.5.1,Buenos Aires,AR-B,annual,2011,gas oil combustion consumption by agriculture machines,191.10635082,TJ,CH4,3.9,kg/TJ,745.3147681979999,kg +15c609d7-2a73-375e-b2ca-cf94c24217ca,SESCO,II.5.1,Buenos Aires,AR-B,annual,2011,gas oil combustion consumption by agriculture machines,191.10635082,TJ,N2O,3.9,kg/TJ,745.3147681979999,kg +ee9716c0-2cbb-3404-85a4-4bb13ba3bd93,SESCO,II.5.1,Córdoba,AR-X,annual,2011,gas oil combustion consumption by agriculture machines,321.05828361600004,TJ,CO2,74100.0,kg/TJ,23790418.815945603,kg +585ead09-2266-3bba-81f2-cd0483fd4e88,SESCO,II.5.1,Córdoba,AR-X,annual,2011,gas oil combustion consumption by agriculture machines,321.05828361600004,TJ,CH4,3.9,kg/TJ,1252.1273061024,kg +585ead09-2266-3bba-81f2-cd0483fd4e88,SESCO,II.5.1,Córdoba,AR-X,annual,2011,gas oil combustion consumption by agriculture machines,321.05828361600004,TJ,N2O,3.9,kg/TJ,1252.1273061024,kg +4748b2cf-0a3a-3d10-b102-7a0677ba6841,SESCO,II.5.1,Entre Rios,AR-E,annual,2011,gas oil combustion consumption by agriculture machines,277.385425464,TJ,CO2,74100.0,kg/TJ,20554260.0268824,kg +97a14368-95fd-3046-a746-d3266152509f,SESCO,II.5.1,Entre Rios,AR-E,annual,2011,gas oil combustion consumption by agriculture machines,277.385425464,TJ,CH4,3.9,kg/TJ,1081.8031593096,kg +97a14368-95fd-3046-a746-d3266152509f,SESCO,II.5.1,Entre Rios,AR-E,annual,2011,gas oil combustion consumption by agriculture machines,277.385425464,TJ,N2O,3.9,kg/TJ,1081.8031593096,kg +9bdc48ba-06d7-3207-a1de-e15b9b0b1c2f,SESCO,II.5.1,La Pampa,AR-L,annual,2011,gas oil combustion consumption by agriculture machines,14.617149959999999,TJ,CO2,74100.0,kg/TJ,1083130.812036,kg +c0efd6bd-f22d-3791-9dde-405bfabfbeda,SESCO,II.5.1,La Pampa,AR-L,annual,2011,gas oil combustion consumption by agriculture machines,14.617149959999999,TJ,CH4,3.9,kg/TJ,57.006884844,kg +c0efd6bd-f22d-3791-9dde-405bfabfbeda,SESCO,II.5.1,La Pampa,AR-L,annual,2011,gas oil combustion consumption by agriculture machines,14.617149959999999,TJ,N2O,3.9,kg/TJ,57.006884844,kg +3de0ab25-31e1-3a98-8f3f-d3bd84c582af,SESCO,II.5.1,Salta,AR-A,annual,2011,gas oil combustion consumption by agriculture machines,56.501331264,TJ,CO2,74100.0,kg/TJ,4186748.6466624,kg +4abe56c9-94ca-3821-b5b0-5be5e920121f,SESCO,II.5.1,Salta,AR-A,annual,2011,gas oil combustion consumption by agriculture machines,56.501331264,TJ,CH4,3.9,kg/TJ,220.3551919296,kg +4abe56c9-94ca-3821-b5b0-5be5e920121f,SESCO,II.5.1,Salta,AR-A,annual,2011,gas oil combustion consumption by agriculture machines,56.501331264,TJ,N2O,3.9,kg/TJ,220.3551919296,kg +59b5db2d-bb77-3d3e-957d-009756edba55,SESCO,II.5.1,Santa Fe,AR-S,annual,2011,gas oil combustion consumption by agriculture machines,248.768069592,TJ,CO2,74100.0,kg/TJ,18433713.956767198,kg +85360e45-8e33-321e-8bbb-acf3849955db,SESCO,II.5.1,Santa Fe,AR-S,annual,2011,gas oil combustion consumption by agriculture machines,248.768069592,TJ,CH4,3.9,kg/TJ,970.1954714087999,kg +85360e45-8e33-321e-8bbb-acf3849955db,SESCO,II.5.1,Santa Fe,AR-S,annual,2011,gas oil combustion consumption by agriculture machines,248.768069592,TJ,N2O,3.9,kg/TJ,970.1954714087999,kg +c638f968-e0af-3592-8093-29068e69a023,SESCO,II.5.1,Santiago del Estero,AR-G,annual,2011,gas oil combustion consumption by agriculture machines,104.99442147599999,TJ,CO2,74100.0,kg/TJ,7780086.631371599,kg +83c2d3a3-dd3b-307e-b867-0dbb1ff6b205,SESCO,II.5.1,Santiago del Estero,AR-G,annual,2011,gas oil combustion consumption by agriculture machines,104.99442147599999,TJ,CH4,3.9,kg/TJ,409.47824375639993,kg +83c2d3a3-dd3b-307e-b867-0dbb1ff6b205,SESCO,II.5.1,Santiago del Estero,AR-G,annual,2011,gas oil combustion consumption by agriculture machines,104.99442147599999,TJ,N2O,3.9,kg/TJ,409.47824375639993,kg +12caae67-a2d2-3397-b423-c610efab064a,SESCO,II.1.1,Buenos Aires,AR-B,annual,2011,gas oil combustion consumption by to the public,3343.6922023679995,TJ,CO2,74100.0,kg/TJ,247767592.19546875,kg +02ddcde0-1873-3623-ba8d-616582529c12,SESCO,II.1.1,Buenos Aires,AR-B,annual,2011,gas oil combustion consumption by to the public,3343.6922023679995,TJ,CH4,3.9,kg/TJ,13040.399589235198,kg +02ddcde0-1873-3623-ba8d-616582529c12,SESCO,II.1.1,Buenos Aires,AR-B,annual,2011,gas oil combustion consumption by to the public,3343.6922023679995,TJ,N2O,3.9,kg/TJ,13040.399589235198,kg +29abdf27-86c9-3e9b-834f-858e3699aef0,SESCO,II.1.1,Capital Federal,AR-C,annual,2011,gas oil combustion consumption by to the public,369.96233635199997,TJ,CO2,74100.0,kg/TJ,27414209.1236832,kg +33827833-5aab-381d-98c7-5824cd04a598,SESCO,II.1.1,Capital Federal,AR-C,annual,2011,gas oil combustion consumption by to the public,369.96233635199997,TJ,CH4,3.9,kg/TJ,1442.8531117727998,kg +33827833-5aab-381d-98c7-5824cd04a598,SESCO,II.1.1,Capital Federal,AR-C,annual,2011,gas oil combustion consumption by to the public,369.96233635199997,TJ,N2O,3.9,kg/TJ,1442.8531117727998,kg +5b5e9cd1-5545-3bee-a1de-cb252ac76fff,SESCO,II.1.1,Catamarca,AR-K,annual,2011,gas oil combustion consumption by to the public,95.235295932,TJ,CO2,74100.0,kg/TJ,7056935.4285612,kg +23ee218a-f349-339c-9f34-8bfb1168552f,SESCO,II.1.1,Catamarca,AR-K,annual,2011,gas oil combustion consumption by to the public,95.235295932,TJ,CH4,3.9,kg/TJ,371.4176541348,kg +23ee218a-f349-339c-9f34-8bfb1168552f,SESCO,II.1.1,Catamarca,AR-K,annual,2011,gas oil combustion consumption by to the public,95.235295932,TJ,N2O,3.9,kg/TJ,371.4176541348,kg +82110412-4789-3f30-960f-4fd333dfe9d0,SESCO,II.1.1,Chaco,AR-H,annual,2011,gas oil combustion consumption by to the public,432.213426204,TJ,CO2,74100.0,kg/TJ,32027014.881716397,kg +b63cf728-3138-3a4b-815e-8838f74013ab,SESCO,II.1.1,Chaco,AR-H,annual,2011,gas oil combustion consumption by to the public,432.213426204,TJ,CH4,3.9,kg/TJ,1685.6323621955999,kg +b63cf728-3138-3a4b-815e-8838f74013ab,SESCO,II.1.1,Chaco,AR-H,annual,2011,gas oil combustion consumption by to the public,432.213426204,TJ,N2O,3.9,kg/TJ,1685.6323621955999,kg +e1dc4603-852b-30b5-a378-614dcc113f6b,SESCO,II.1.1,Corrientes,AR-W,annual,2011,gas oil combustion consumption by to the public,691.9724433719999,TJ,CO2,74100.0,kg/TJ,51275158.053865194,kg +d18f216f-c735-3a7c-94eb-6c079646b089,SESCO,II.1.1,Corrientes,AR-W,annual,2011,gas oil combustion consumption by to the public,691.9724433719999,TJ,CH4,3.9,kg/TJ,2698.6925291507996,kg +d18f216f-c735-3a7c-94eb-6c079646b089,SESCO,II.1.1,Corrientes,AR-W,annual,2011,gas oil combustion consumption by to the public,691.9724433719999,TJ,N2O,3.9,kg/TJ,2698.6925291507996,kg +146104bb-e236-348e-aeb2-7db0d5d19e96,SESCO,II.1.1,Córdoba,AR-X,annual,2011,gas oil combustion consumption by to the public,1527.788495688,TJ,CO2,74100.0,kg/TJ,113209127.5304808,kg +3ef76f61-3873-304f-b8b1-b2bbec928cbc,SESCO,II.1.1,Córdoba,AR-X,annual,2011,gas oil combustion consumption by to the public,1527.788495688,TJ,CH4,3.9,kg/TJ,5958.3751331832,kg +3ef76f61-3873-304f-b8b1-b2bbec928cbc,SESCO,II.1.1,Córdoba,AR-X,annual,2011,gas oil combustion consumption by to the public,1527.788495688,TJ,N2O,3.9,kg/TJ,5958.3751331832,kg +2c2546b3-7f71-384e-8fea-a1c449d7bde7,SESCO,II.1.1,Entre Rios,AR-E,annual,2011,gas oil combustion consumption by to the public,834.5217571320001,TJ,CO2,74100.0,kg/TJ,61838062.203481205,kg +05f1004c-61a4-3be8-b935-244f4297f896,SESCO,II.1.1,Entre Rios,AR-E,annual,2011,gas oil combustion consumption by to the public,834.5217571320001,TJ,CH4,3.9,kg/TJ,3254.6348528148,kg +05f1004c-61a4-3be8-b935-244f4297f896,SESCO,II.1.1,Entre Rios,AR-E,annual,2011,gas oil combustion consumption by to the public,834.5217571320001,TJ,N2O,3.9,kg/TJ,3254.6348528148,kg +49612d7f-e6c5-3c34-9d96-1e5eade3b456,SESCO,II.1.1,Formosa,AR-P,annual,2011,gas oil combustion consumption by to the public,47.058461603999994,TJ,CO2,74100.0,kg/TJ,3487032.0048563997,kg +9c4a3c2e-5d05-3498-b52c-a1e21914d99e,SESCO,II.1.1,Formosa,AR-P,annual,2011,gas oil combustion consumption by to the public,47.058461603999994,TJ,CH4,3.9,kg/TJ,183.52800025559998,kg +9c4a3c2e-5d05-3498-b52c-a1e21914d99e,SESCO,II.1.1,Formosa,AR-P,annual,2011,gas oil combustion consumption by to the public,47.058461603999994,TJ,N2O,3.9,kg/TJ,183.52800025559998,kg +5aaf0d37-dc2d-3c7a-a440-75edce1bd137,SESCO,II.1.1,Jujuy,AR-Y,annual,2011,gas oil combustion consumption by to the public,22.397961432000002,TJ,CO2,74100.0,kg/TJ,1659688.9421112002,kg +67c63319-9c7e-37e6-a108-41146479b3f9,SESCO,II.1.1,Jujuy,AR-Y,annual,2011,gas oil combustion consumption by to the public,22.397961432000002,TJ,CH4,3.9,kg/TJ,87.35204958480001,kg +67c63319-9c7e-37e6-a108-41146479b3f9,SESCO,II.1.1,Jujuy,AR-Y,annual,2011,gas oil combustion consumption by to the public,22.397961432000002,TJ,N2O,3.9,kg/TJ,87.35204958480001,kg +dcd8791a-72dd-3a0f-9782-ae5e762b975e,SESCO,II.1.1,La Pampa,AR-L,annual,2011,gas oil combustion consumption by to the public,47.52839364,TJ,CO2,74100.0,kg/TJ,3521853.968724,kg +4eea89c2-ea28-366b-833e-d7630ff1550f,SESCO,II.1.1,La Pampa,AR-L,annual,2011,gas oil combustion consumption by to the public,47.52839364,TJ,CH4,3.9,kg/TJ,185.36073519599998,kg +4eea89c2-ea28-366b-833e-d7630ff1550f,SESCO,II.1.1,La Pampa,AR-L,annual,2011,gas oil combustion consumption by to the public,47.52839364,TJ,N2O,3.9,kg/TJ,185.36073519599998,kg +ae2926bf-79a5-3203-8feb-748c44b9407f,SESCO,II.1.1,La Rioja,AR-F,annual,2011,gas oil combustion consumption by to the public,43.830088511999996,TJ,CO2,74100.0,kg/TJ,3247809.5587392,kg +4fa8a308-19d8-3a0e-b651-1f3add292396,SESCO,II.1.1,La Rioja,AR-F,annual,2011,gas oil combustion consumption by to the public,43.830088511999996,TJ,CH4,3.9,kg/TJ,170.93734519679998,kg +4fa8a308-19d8-3a0e-b651-1f3add292396,SESCO,II.1.1,La Rioja,AR-F,annual,2011,gas oil combustion consumption by to the public,43.830088511999996,TJ,N2O,3.9,kg/TJ,170.93734519679998,kg +e813ffcf-9367-3698-8433-dac956a3d7c1,SESCO,II.1.1,Mendoza,AR-M,annual,2011,gas oil combustion consumption by to the public,429.168835284,TJ,CO2,74100.0,kg/TJ,31801410.6945444,kg +3fe92c51-53fa-3b2f-aae3-38122bef95d1,SESCO,II.1.1,Mendoza,AR-M,annual,2011,gas oil combustion consumption by to the public,429.168835284,TJ,CH4,3.9,kg/TJ,1673.7584576076,kg +3fe92c51-53fa-3b2f-aae3-38122bef95d1,SESCO,II.1.1,Mendoza,AR-M,annual,2011,gas oil combustion consumption by to the public,429.168835284,TJ,N2O,3.9,kg/TJ,1673.7584576076,kg +b1c1baf3-8991-3ebf-8560-4226536a2145,SESCO,II.1.1,Misiones,AR-N,annual,2011,gas oil combustion consumption by to the public,192.71460104399998,TJ,CO2,74100.0,kg/TJ,14280151.937360398,kg +28a2881e-8ee6-3ad5-abac-fd57f8a059bb,SESCO,II.1.1,Misiones,AR-N,annual,2011,gas oil combustion consumption by to the public,192.71460104399998,TJ,CH4,3.9,kg/TJ,751.5869440715999,kg +28a2881e-8ee6-3ad5-abac-fd57f8a059bb,SESCO,II.1.1,Misiones,AR-N,annual,2011,gas oil combustion consumption by to the public,192.71460104399998,TJ,N2O,3.9,kg/TJ,751.5869440715999,kg +a8d86c94-33f6-30c9-8792-8e815a009f0e,SESCO,II.1.1,Salta,AR-A,annual,2011,gas oil combustion consumption by to the public,6.529589388,TJ,CO2,74100.0,kg/TJ,483842.5736508,kg +7982a888-ea03-3ecb-ae08-a3747b5f8620,SESCO,II.1.1,Salta,AR-A,annual,2011,gas oil combustion consumption by to the public,6.529589388,TJ,CH4,3.9,kg/TJ,25.465398613199998,kg +7982a888-ea03-3ecb-ae08-a3747b5f8620,SESCO,II.1.1,Salta,AR-A,annual,2011,gas oil combustion consumption by to the public,6.529589388,TJ,N2O,3.9,kg/TJ,25.465398613199998,kg +785152b5-d18f-3034-9cd6-310666f6ebec,SESCO,II.1.1,San Juan,AR-J,annual,2011,gas oil combustion consumption by to the public,298.811271276,TJ,CO2,74100.0,kg/TJ,22141915.2015516,kg +b0ab55f6-215f-303b-9d6c-8744de174be4,SESCO,II.1.1,San Juan,AR-J,annual,2011,gas oil combustion consumption by to the public,298.811271276,TJ,CH4,3.9,kg/TJ,1165.3639579764001,kg +b0ab55f6-215f-303b-9d6c-8744de174be4,SESCO,II.1.1,San Juan,AR-J,annual,2011,gas oil combustion consumption by to the public,298.811271276,TJ,N2O,3.9,kg/TJ,1165.3639579764001,kg +06c86422-128d-3a5b-9e34-1ce6ff2a842a,SESCO,II.1.1,San Luis,AR-D,annual,2011,gas oil combustion consumption by to the public,180.195701616,TJ,CO2,74100.0,kg/TJ,13352501.4897456,kg +f18604c7-fcc2-3046-9c0f-c5bb925fd965,SESCO,II.1.1,San Luis,AR-D,annual,2011,gas oil combustion consumption by to the public,180.195701616,TJ,CH4,3.9,kg/TJ,702.7632363024001,kg +f18604c7-fcc2-3046-9c0f-c5bb925fd965,SESCO,II.1.1,San Luis,AR-D,annual,2011,gas oil combustion consumption by to the public,180.195701616,TJ,N2O,3.9,kg/TJ,702.7632363024001,kg +db7e5156-f4ef-36b1-800f-cc56ec622788,SESCO,II.1.1,Santa Fe,AR-S,annual,2011,gas oil combustion consumption by to the public,2646.431548992,TJ,CO2,74100.0,kg/TJ,196100577.7803072,kg +be10e383-9ced-3b45-b1a0-f2e85e978aba,SESCO,II.1.1,Santa Fe,AR-S,annual,2011,gas oil combustion consumption by to the public,2646.431548992,TJ,CH4,3.9,kg/TJ,10321.0830410688,kg +be10e383-9ced-3b45-b1a0-f2e85e978aba,SESCO,II.1.1,Santa Fe,AR-S,annual,2011,gas oil combustion consumption by to the public,2646.431548992,TJ,N2O,3.9,kg/TJ,10321.0830410688,kg +b1a6f662-e64d-3602-a1b0-5f2536b3b3c1,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2011,gas oil combustion consumption by to the public,163.371113976,TJ,CO2,74100.0,kg/TJ,12105799.5456216,kg +7e372657-9719-3cfc-8e82-d358ace6196f,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2011,gas oil combustion consumption by to the public,163.371113976,TJ,CH4,3.9,kg/TJ,637.1473445064,kg +7e372657-9719-3cfc-8e82-d358ace6196f,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2011,gas oil combustion consumption by to the public,163.371113976,TJ,N2O,3.9,kg/TJ,637.1473445064,kg +8355acae-c9d9-31c3-800e-50609b5c909f,SESCO,II.1.1,Tucuman,AR-T,annual,2011,gas oil combustion consumption by to the public,388.434711168,TJ,CO2,74100.0,kg/TJ,28783012.097548798,kg +b797bdfb-abce-3bf0-b79b-bd6b95f16dc2,SESCO,II.1.1,Tucuman,AR-T,annual,2011,gas oil combustion consumption by to the public,388.434711168,TJ,CH4,3.9,kg/TJ,1514.8953735552,kg +b797bdfb-abce-3bf0-b79b-bd6b95f16dc2,SESCO,II.1.1,Tucuman,AR-T,annual,2011,gas oil combustion consumption by to the public,388.434711168,TJ,N2O,3.9,kg/TJ,1514.8953735552,kg +5f637b04-321a-39ef-91aa-ffc9e6b856c9,SESCO,II.1.1,Buenos Aires,AR-B,annual,2011,gas oil combustion consumption by public passenger transport,160.13929503600002,TJ,CO2,74100.0,kg/TJ,11866321.7621676,kg +a64d310d-4c90-3924-9d4b-4ac3481dc002,SESCO,II.1.1,Buenos Aires,AR-B,annual,2011,gas oil combustion consumption by public passenger transport,160.13929503600002,TJ,CH4,3.9,kg/TJ,624.5432506404001,kg +a64d310d-4c90-3924-9d4b-4ac3481dc002,SESCO,II.1.1,Buenos Aires,AR-B,annual,2011,gas oil combustion consumption by public passenger transport,160.13929503600002,TJ,N2O,3.9,kg/TJ,624.5432506404001,kg +b9ea86fd-ac8a-3a93-b3f7-2242f657c4f4,SESCO,II.1.1,Capital Federal,AR-C,annual,2011,gas oil combustion consumption by public passenger transport,54.605540556,TJ,CO2,74100.0,kg/TJ,4046270.5551996003,kg +bd6e1822-544b-33b6-aa07-d816a53c4afd,SESCO,II.1.1,Capital Federal,AR-C,annual,2011,gas oil combustion consumption by public passenger transport,54.605540556,TJ,CH4,3.9,kg/TJ,212.9616081684,kg +bd6e1822-544b-33b6-aa07-d816a53c4afd,SESCO,II.1.1,Capital Federal,AR-C,annual,2011,gas oil combustion consumption by public passenger transport,54.605540556,TJ,N2O,3.9,kg/TJ,212.9616081684,kg +b80f4174-0b26-31d4-a18c-25d37edca007,SESCO,II.1.1,Córdoba,AR-X,annual,2011,gas oil combustion consumption by public passenger transport,16.585162608,TJ,CO2,74100.0,kg/TJ,1228960.5492528002,kg +50a3dffb-3377-31a5-a8b3-fc725925b549,SESCO,II.1.1,Córdoba,AR-X,annual,2011,gas oil combustion consumption by public passenger transport,16.585162608,TJ,CH4,3.9,kg/TJ,64.6821341712,kg +50a3dffb-3377-31a5-a8b3-fc725925b549,SESCO,II.1.1,Córdoba,AR-X,annual,2011,gas oil combustion consumption by public passenger transport,16.585162608,TJ,N2O,3.9,kg/TJ,64.6821341712,kg +aa453193-38c4-3e74-a399-c6a331ab5541,SESCO,II.1.1,Entre Rios,AR-E,annual,2011,gas oil combustion consumption by public passenger transport,47.282864328,TJ,CO2,74100.0,kg/TJ,3503660.2467048,kg +b5bdd0f9-89c6-3efc-ad52-0a2876b88df6,SESCO,II.1.1,Entre Rios,AR-E,annual,2011,gas oil combustion consumption by public passenger transport,47.282864328,TJ,CH4,3.9,kg/TJ,184.40317087920002,kg +b5bdd0f9-89c6-3efc-ad52-0a2876b88df6,SESCO,II.1.1,Entre Rios,AR-E,annual,2011,gas oil combustion consumption by public passenger transport,47.282864328,TJ,N2O,3.9,kg/TJ,184.40317087920002,kg +07b1fe91-61f2-3468-8577-b288ce939b44,SESCO,II.1.1,San Juan,AR-J,annual,2011,gas oil combustion consumption by public passenger transport,2.9883340200000004,TJ,CO2,74100.0,kg/TJ,221435.55088200004,kg +35af190f-6d05-3916-975b-791ed96e3af4,SESCO,II.1.1,San Juan,AR-J,annual,2011,gas oil combustion consumption by public passenger transport,2.9883340200000004,TJ,CH4,3.9,kg/TJ,11.654502678000002,kg +35af190f-6d05-3916-975b-791ed96e3af4,SESCO,II.1.1,San Juan,AR-J,annual,2011,gas oil combustion consumption by public passenger transport,2.9883340200000004,TJ,N2O,3.9,kg/TJ,11.654502678000002,kg +aaa0d03c-db10-3606-b601-07bb446aba78,SESCO,II.1.1,Santa Fe,AR-S,annual,2011,gas oil combustion consumption by public passenger transport,306.30896696400004,TJ,CO2,74100.0,kg/TJ,22697494.452032402,kg +c7ca8fd1-8161-3327-9608-7df700b6c02b,SESCO,II.1.1,Santa Fe,AR-S,annual,2011,gas oil combustion consumption by public passenger transport,306.30896696400004,TJ,CH4,3.9,kg/TJ,1194.6049711596002,kg +c7ca8fd1-8161-3327-9608-7df700b6c02b,SESCO,II.1.1,Santa Fe,AR-S,annual,2011,gas oil combustion consumption by public passenger transport,306.30896696400004,TJ,N2O,3.9,kg/TJ,1194.6049711596002,kg +6a9bba89-4036-3204-9ccb-179845b2ca6f,SESCO,II.5.1,Buenos Aires,AR-B,annual,2011,gasoline combustion consumption by agriculture machines,1.122562,TJ,CO2,69300.0,kg/TJ,77793.5466,kg +a1eea6b2-dde1-3975-b432-7eaf2ef6602e,SESCO,II.5.1,Buenos Aires,AR-B,annual,2011,gasoline combustion consumption by agriculture machines,1.122562,TJ,CH4,33.0,kg/TJ,37.044546000000004,kg +e8ede0b6-45f9-30e1-9c53-0b4f4c5a5a5d,SESCO,II.5.1,Buenos Aires,AR-B,annual,2011,gasoline combustion consumption by agriculture machines,1.122562,TJ,N2O,3.2,kg/TJ,3.5921984000000005,kg +371a3675-217f-3b38-ae98-17b3708cf09b,SESCO,II.5.1,Buenos Aires,AR-B,annual,2011,gas oil combustion consumption by agriculture machines,790.515999,TJ,CO2,74100.0,kg/TJ,58577235.5259,kg +7e6de7c3-b32e-3b7a-84bb-c09d3259a032,SESCO,II.5.1,Buenos Aires,AR-B,annual,2011,gas oil combustion consumption by agriculture machines,790.515999,TJ,CH4,3.9,kg/TJ,3083.0123961,kg +7e6de7c3-b32e-3b7a-84bb-c09d3259a032,SESCO,II.5.1,Buenos Aires,AR-B,annual,2011,gas oil combustion consumption by agriculture machines,790.515999,TJ,N2O,3.9,kg/TJ,3083.0123961,kg +4f8765ad-5df9-395e-b049-bd5d44012482,SESCO,II.5.1,Corrientes,AR-W,annual,2011,gas oil combustion consumption by agriculture machines,26.23019952,TJ,CO2,74100.0,kg/TJ,1943657.784432,kg +068f33c2-031b-3681-8a37-5058cefe687d,SESCO,II.5.1,Corrientes,AR-W,annual,2011,gas oil combustion consumption by agriculture machines,26.23019952,TJ,CH4,3.9,kg/TJ,102.29777812799999,kg +068f33c2-031b-3681-8a37-5058cefe687d,SESCO,II.5.1,Corrientes,AR-W,annual,2011,gas oil combustion consumption by agriculture machines,26.23019952,TJ,N2O,3.9,kg/TJ,102.29777812799999,kg +3ea6fbc7-bb6d-31ea-8608-206f1caad863,SESCO,II.5.1,Córdoba,AR-X,annual,2011,gas oil combustion consumption by agriculture machines,277.35363264,TJ,CO2,74100.0,kg/TJ,20551904.178624,kg +4160e508-d3af-33d4-8328-22c980bf8db8,SESCO,II.5.1,Córdoba,AR-X,annual,2011,gas oil combustion consumption by agriculture machines,277.35363264,TJ,CH4,3.9,kg/TJ,1081.679167296,kg +4160e508-d3af-33d4-8328-22c980bf8db8,SESCO,II.5.1,Córdoba,AR-X,annual,2011,gas oil combustion consumption by agriculture machines,277.35363264,TJ,N2O,3.9,kg/TJ,1081.679167296,kg +5597e492-9758-3d61-9b53-75ae24f11641,SESCO,II.5.1,Entre Rios,AR-E,annual,2011,gas oil combustion consumption by agriculture machines,180.15514608,TJ,CO2,74100.0,kg/TJ,13349496.324528001,kg +de6d916e-f383-3567-9537-5f03cc3c8a18,SESCO,II.5.1,Entre Rios,AR-E,annual,2011,gas oil combustion consumption by agriculture machines,180.15514608,TJ,CH4,3.9,kg/TJ,702.605069712,kg +de6d916e-f383-3567-9537-5f03cc3c8a18,SESCO,II.5.1,Entre Rios,AR-E,annual,2011,gas oil combustion consumption by agriculture machines,180.15514608,TJ,N2O,3.9,kg/TJ,702.605069712,kg +28d9e286-581f-3bd1-8197-0e47450819a4,SESCO,II.5.1,La Pampa,AR-L,annual,2011,gas oil combustion consumption by agriculture machines,17.00869128,TJ,CO2,74100.0,kg/TJ,1260344.023848,kg +eee427d5-8892-3d3f-8e5d-c1da1e00b1b8,SESCO,II.5.1,La Pampa,AR-L,annual,2011,gas oil combustion consumption by agriculture machines,17.00869128,TJ,CH4,3.9,kg/TJ,66.333895992,kg +eee427d5-8892-3d3f-8e5d-c1da1e00b1b8,SESCO,II.5.1,La Pampa,AR-L,annual,2011,gas oil combustion consumption by agriculture machines,17.00869128,TJ,N2O,3.9,kg/TJ,66.333895992,kg +7509f8f5-03e5-387c-a062-0c9ce60c6a81,SESCO,II.5.1,Rio Negro,AR-R,annual,2011,gas oil combustion consumption by agriculture machines,1.88651148,TJ,CO2,74100.0,kg/TJ,139790.500668,kg +f61a2415-ccc3-3a92-ba05-27f5c6f613b1,SESCO,II.5.1,Rio Negro,AR-R,annual,2011,gas oil combustion consumption by agriculture machines,1.88651148,TJ,CH4,3.9,kg/TJ,7.357394772,kg +f61a2415-ccc3-3a92-ba05-27f5c6f613b1,SESCO,II.5.1,Rio Negro,AR-R,annual,2011,gas oil combustion consumption by agriculture machines,1.88651148,TJ,N2O,3.9,kg/TJ,7.357394772,kg +08e0dfad-e75b-3eb1-a6a3-83d33eec5e5c,SESCO,II.5.1,Salta,AR-A,annual,2011,gas oil combustion consumption by agriculture machines,136.04919468,TJ,CO2,74100.0,kg/TJ,10081245.325788,kg +44e7acdb-ac0a-3549-9d38-36ce2d874c39,SESCO,II.5.1,Salta,AR-A,annual,2011,gas oil combustion consumption by agriculture machines,136.04919468,TJ,CH4,3.9,kg/TJ,530.591859252,kg +44e7acdb-ac0a-3549-9d38-36ce2d874c39,SESCO,II.5.1,Salta,AR-A,annual,2011,gas oil combustion consumption by agriculture machines,136.04919468,TJ,N2O,3.9,kg/TJ,530.591859252,kg +2a644335-4386-3737-8135-13150bc8b050,SESCO,II.5.1,Santa Cruz,AR-Z,annual,2011,gas oil combustion consumption by agriculture machines,14.32262748,TJ,CO2,74100.0,kg/TJ,1061306.696268,kg +b704bb02-89ef-31a4-a944-a56ef95ea2dc,SESCO,II.5.1,Santa Cruz,AR-Z,annual,2011,gas oil combustion consumption by agriculture machines,14.32262748,TJ,CH4,3.9,kg/TJ,55.858247172,kg +b704bb02-89ef-31a4-a944-a56ef95ea2dc,SESCO,II.5.1,Santa Cruz,AR-Z,annual,2011,gas oil combustion consumption by agriculture machines,14.32262748,TJ,N2O,3.9,kg/TJ,55.858247172,kg +03dfe5bc-c55d-3ffd-a0f7-76eace1c4c5d,SESCO,II.5.1,Santa Fe,AR-S,annual,2011,gas oil combustion consumption by agriculture machines,103.9188654,TJ,CO2,74100.0,kg/TJ,7700387.92614,kg +86d39460-83a8-3540-ab52-cd47f92ac59b,SESCO,II.5.1,Santa Fe,AR-S,annual,2011,gas oil combustion consumption by agriculture machines,103.9188654,TJ,CH4,3.9,kg/TJ,405.28357506,kg +86d39460-83a8-3540-ab52-cd47f92ac59b,SESCO,II.5.1,Santa Fe,AR-S,annual,2011,gas oil combustion consumption by agriculture machines,103.9188654,TJ,N2O,3.9,kg/TJ,405.28357506,kg +b3e0684f-fe62-3a72-ad9d-4fcfded4de82,SESCO,II.5.1,Santiago del Estero,AR-G,annual,2011,gas oil combustion consumption by agriculture machines,31.13341728,TJ,CO2,74100.0,kg/TJ,2306986.220448,kg +14d8f719-0c9e-33b5-87cc-30bb368e7036,SESCO,II.5.1,Santiago del Estero,AR-G,annual,2011,gas oil combustion consumption by agriculture machines,31.13341728,TJ,CH4,3.9,kg/TJ,121.42032739199999,kg +14d8f719-0c9e-33b5-87cc-30bb368e7036,SESCO,II.5.1,Santiago del Estero,AR-G,annual,2011,gas oil combustion consumption by agriculture machines,31.13341728,TJ,N2O,3.9,kg/TJ,121.42032739199999,kg +3c727b35-b86a-3214-8c31-c5f72d1ee4be,SESCO,II.1.1,Buenos Aires,AR-B,annual,2011,gas oil combustion consumption by to the public,13114.747662239999,TJ,CO2,74100.0,kg/TJ,971802801.771984,kg +28188b37-bcf8-3d76-8cb4-23f2b2a48502,SESCO,II.1.1,Buenos Aires,AR-B,annual,2011,gas oil combustion consumption by to the public,13114.747662239999,TJ,CH4,3.9,kg/TJ,51147.51588273599,kg +28188b37-bcf8-3d76-8cb4-23f2b2a48502,SESCO,II.1.1,Buenos Aires,AR-B,annual,2011,gas oil combustion consumption by to the public,13114.747662239999,TJ,N2O,3.9,kg/TJ,51147.51588273599,kg +b78838d2-c41a-3be5-a633-823434c88679,SESCO,II.1.1,Capital Federal,AR-C,annual,2011,gas oil combustion consumption by to the public,897.7778787599999,TJ,CO2,74100.0,kg/TJ,66525340.81611599,kg +6d7a1603-b142-3d86-8be3-57b35ae24568,SESCO,II.1.1,Capital Federal,AR-C,annual,2011,gas oil combustion consumption by to the public,897.7778787599999,TJ,CH4,3.9,kg/TJ,3501.3337271639994,kg +6d7a1603-b142-3d86-8be3-57b35ae24568,SESCO,II.1.1,Capital Federal,AR-C,annual,2011,gas oil combustion consumption by to the public,897.7778787599999,TJ,N2O,3.9,kg/TJ,3501.3337271639994,kg +e331f28a-ca35-35db-a905-55f427cc5b27,SESCO,II.1.1,Catamarca,AR-K,annual,2011,gas oil combustion consumption by to the public,51.65658456,TJ,CO2,74100.0,kg/TJ,3827752.915896,kg +e712c617-9c27-3841-981b-c26da01c6d80,SESCO,II.1.1,Catamarca,AR-K,annual,2011,gas oil combustion consumption by to the public,51.65658456,TJ,CH4,3.9,kg/TJ,201.46067978399998,kg +e712c617-9c27-3841-981b-c26da01c6d80,SESCO,II.1.1,Catamarca,AR-K,annual,2011,gas oil combustion consumption by to the public,51.65658456,TJ,N2O,3.9,kg/TJ,201.46067978399998,kg +5fe89b6e-4d1f-3866-bf1f-7293ed368f2d,SESCO,II.1.1,Chaco,AR-H,annual,2011,gas oil combustion consumption by to the public,193.32153624,TJ,CO2,74100.0,kg/TJ,14325125.835384,kg +35a74168-ed7f-37a5-bc65-b094d5302c9c,SESCO,II.1.1,Chaco,AR-H,annual,2011,gas oil combustion consumption by to the public,193.32153624,TJ,CH4,3.9,kg/TJ,753.953991336,kg +35a74168-ed7f-37a5-bc65-b094d5302c9c,SESCO,II.1.1,Chaco,AR-H,annual,2011,gas oil combustion consumption by to the public,193.32153624,TJ,N2O,3.9,kg/TJ,753.953991336,kg +8ffc0af2-b152-3ea1-8631-dd37bd719e56,SESCO,II.1.1,Chubut,AR-U,annual,2011,gas oil combustion consumption by to the public,1593.6278366400002,TJ,CO2,74100.0,kg/TJ,118087822.69502401,kg +917cfa85-a0eb-391a-8852-3efece2852bf,SESCO,II.1.1,Chubut,AR-U,annual,2011,gas oil combustion consumption by to the public,1593.6278366400002,TJ,CH4,3.9,kg/TJ,6215.148562896001,kg +917cfa85-a0eb-391a-8852-3efece2852bf,SESCO,II.1.1,Chubut,AR-U,annual,2011,gas oil combustion consumption by to the public,1593.6278366400002,TJ,N2O,3.9,kg/TJ,6215.148562896001,kg +878b95c5-9209-3ca8-897d-04df6e8337bb,SESCO,II.1.1,Corrientes,AR-W,annual,2011,gas oil combustion consumption by to the public,359.19844631999996,TJ,CO2,74100.0,kg/TJ,26616604.872312,kg +91ed2a4e-3515-3947-9c66-33350d140586,SESCO,II.1.1,Corrientes,AR-W,annual,2011,gas oil combustion consumption by to the public,359.19844631999996,TJ,CH4,3.9,kg/TJ,1400.873940648,kg +91ed2a4e-3515-3947-9c66-33350d140586,SESCO,II.1.1,Corrientes,AR-W,annual,2011,gas oil combustion consumption by to the public,359.19844631999996,TJ,N2O,3.9,kg/TJ,1400.873940648,kg +c9fa8ea6-00f7-37bc-8e54-0e9dfde149d1,SESCO,II.1.1,Córdoba,AR-X,annual,2011,gas oil combustion consumption by to the public,1840.79280672,TJ,CO2,74100.0,kg/TJ,136402746.977952,kg +8643ce6c-288b-33f8-813d-feb132ac82c8,SESCO,II.1.1,Córdoba,AR-X,annual,2011,gas oil combustion consumption by to the public,1840.79280672,TJ,CH4,3.9,kg/TJ,7179.091946208,kg +8643ce6c-288b-33f8-813d-feb132ac82c8,SESCO,II.1.1,Córdoba,AR-X,annual,2011,gas oil combustion consumption by to the public,1840.79280672,TJ,N2O,3.9,kg/TJ,7179.091946208,kg +d2e18e0f-4d4f-36f2-81d3-927c28dcbe3d,SESCO,II.1.1,Entre Rios,AR-E,annual,2011,gas oil combustion consumption by to the public,934.39102512,TJ,CO2,74100.0,kg/TJ,69238374.961392,kg +dcc16373-9278-3f62-ae23-1bbe8bc827a2,SESCO,II.1.1,Entre Rios,AR-E,annual,2011,gas oil combustion consumption by to the public,934.39102512,TJ,CH4,3.9,kg/TJ,3644.124997968,kg +dcc16373-9278-3f62-ae23-1bbe8bc827a2,SESCO,II.1.1,Entre Rios,AR-E,annual,2011,gas oil combustion consumption by to the public,934.39102512,TJ,N2O,3.9,kg/TJ,3644.124997968,kg +2557d4d8-dd15-3cf7-89ba-8d73cfede6dc,SESCO,II.1.1,Formosa,AR-P,annual,2011,gas oil combustion consumption by to the public,17.658887399999998,TJ,CO2,74100.0,kg/TJ,1308523.55634,kg +e22e0689-d15a-3dae-91f7-8c676af9e715,SESCO,II.1.1,Formosa,AR-P,annual,2011,gas oil combustion consumption by to the public,17.658887399999998,TJ,CH4,3.9,kg/TJ,68.86966085999998,kg +e22e0689-d15a-3dae-91f7-8c676af9e715,SESCO,II.1.1,Formosa,AR-P,annual,2011,gas oil combustion consumption by to the public,17.658887399999998,TJ,N2O,3.9,kg/TJ,68.86966085999998,kg +d214e70b-0401-3934-b48d-900406003775,SESCO,II.1.1,Jujuy,AR-Y,annual,2011,gas oil combustion consumption by to the public,9.79978944,TJ,CO2,74100.0,kg/TJ,726164.397504,kg +f294cb2b-1cc7-3155-b9bf-45c548944e2d,SESCO,II.1.1,Jujuy,AR-Y,annual,2011,gas oil combustion consumption by to the public,9.79978944,TJ,CH4,3.9,kg/TJ,38.219178815999996,kg +f294cb2b-1cc7-3155-b9bf-45c548944e2d,SESCO,II.1.1,Jujuy,AR-Y,annual,2011,gas oil combustion consumption by to the public,9.79978944,TJ,N2O,3.9,kg/TJ,38.219178815999996,kg +65b66f75-e297-381e-a6e7-11693cb0802c,SESCO,II.1.1,La Pampa,AR-L,annual,2011,gas oil combustion consumption by to the public,692.13996432,TJ,CO2,74100.0,kg/TJ,51287571.356111996,kg +825064ca-0f0d-32c4-a59d-1ac686278d75,SESCO,II.1.1,La Pampa,AR-L,annual,2011,gas oil combustion consumption by to the public,692.13996432,TJ,CH4,3.9,kg/TJ,2699.345860848,kg +825064ca-0f0d-32c4-a59d-1ac686278d75,SESCO,II.1.1,La Pampa,AR-L,annual,2011,gas oil combustion consumption by to the public,692.13996432,TJ,N2O,3.9,kg/TJ,2699.345860848,kg +28bdc2a8-f21a-3e76-a614-d59eb26c33ca,SESCO,II.1.1,La Rioja,AR-F,annual,2011,gas oil combustion consumption by to the public,26.5814304,TJ,CO2,74100.0,kg/TJ,1969683.9926399998,kg +5987f333-93ce-3020-95c3-44484c259712,SESCO,II.1.1,La Rioja,AR-F,annual,2011,gas oil combustion consumption by to the public,26.5814304,TJ,CH4,3.9,kg/TJ,103.66757856,kg +5987f333-93ce-3020-95c3-44484c259712,SESCO,II.1.1,La Rioja,AR-F,annual,2011,gas oil combustion consumption by to the public,26.5814304,TJ,N2O,3.9,kg/TJ,103.66757856,kg +462a7e18-dea8-3f60-a968-eb4d3d7be7be,SESCO,II.1.1,Mendoza,AR-M,annual,2011,gas oil combustion consumption by to the public,249.68141436,TJ,CO2,74100.0,kg/TJ,18501392.804076,kg +385d2deb-d79e-3567-ac6a-b500a96c99eb,SESCO,II.1.1,Mendoza,AR-M,annual,2011,gas oil combustion consumption by to the public,249.68141436,TJ,CH4,3.9,kg/TJ,973.757516004,kg +385d2deb-d79e-3567-ac6a-b500a96c99eb,SESCO,II.1.1,Mendoza,AR-M,annual,2011,gas oil combustion consumption by to the public,249.68141436,TJ,N2O,3.9,kg/TJ,973.757516004,kg +28a7abdf-dcb2-3306-8675-d713614d01ef,SESCO,II.1.1,Misiones,AR-N,annual,2011,gas oil combustion consumption by to the public,97.78406400000001,TJ,CO2,74100.0,kg/TJ,7245799.142400001,kg +3668d2b2-90b0-39ff-bee7-f19dfe15902c,SESCO,II.1.1,Misiones,AR-N,annual,2011,gas oil combustion consumption by to the public,97.78406400000001,TJ,CH4,3.9,kg/TJ,381.35784960000007,kg +3668d2b2-90b0-39ff-bee7-f19dfe15902c,SESCO,II.1.1,Misiones,AR-N,annual,2011,gas oil combustion consumption by to the public,97.78406400000001,TJ,N2O,3.9,kg/TJ,381.35784960000007,kg +0cae9434-0e59-3803-b9e7-3d60bd0fc18f,SESCO,II.1.1,Neuquén,AR-Q,annual,2011,gas oil combustion consumption by to the public,987.95109756,TJ,CO2,74100.0,kg/TJ,73207176.329196,kg +3127675f-4493-3442-9457-9946d434c217,SESCO,II.1.1,Neuquén,AR-Q,annual,2011,gas oil combustion consumption by to the public,987.95109756,TJ,CH4,3.9,kg/TJ,3853.009280484,kg +3127675f-4493-3442-9457-9946d434c217,SESCO,II.1.1,Neuquén,AR-Q,annual,2011,gas oil combustion consumption by to the public,987.95109756,TJ,N2O,3.9,kg/TJ,3853.009280484,kg +50251468-bdfe-307a-afea-78771d248c0a,SESCO,II.1.1,Rio Negro,AR-R,annual,2011,gas oil combustion consumption by to the public,1588.01970096,TJ,CO2,74100.0,kg/TJ,117672259.841136,kg +0750aeff-2690-354d-b19c-b3034327c6b2,SESCO,II.1.1,Rio Negro,AR-R,annual,2011,gas oil combustion consumption by to the public,1588.01970096,TJ,CH4,3.9,kg/TJ,6193.276833743999,kg +0750aeff-2690-354d-b19c-b3034327c6b2,SESCO,II.1.1,Rio Negro,AR-R,annual,2011,gas oil combustion consumption by to the public,1588.01970096,TJ,N2O,3.9,kg/TJ,6193.276833743999,kg +78d45079-c0aa-375f-8544-c2b7f4c82840,SESCO,II.1.1,Salta,AR-A,annual,2011,gas oil combustion consumption by to the public,13.04968644,TJ,CO2,74100.0,kg/TJ,966981.765204,kg +1163fe5c-1466-3227-8116-17fc163c4cd9,SESCO,II.1.1,Salta,AR-A,annual,2011,gas oil combustion consumption by to the public,13.04968644,TJ,CH4,3.9,kg/TJ,50.893777116,kg +1163fe5c-1466-3227-8116-17fc163c4cd9,SESCO,II.1.1,Salta,AR-A,annual,2011,gas oil combustion consumption by to the public,13.04968644,TJ,N2O,3.9,kg/TJ,50.893777116,kg +55fa5133-f68a-394e-a035-722f71893858,SESCO,II.1.1,San Juan,AR-J,annual,2011,gas oil combustion consumption by to the public,165.87597096,TJ,CO2,74100.0,kg/TJ,12291409.448136,kg +2ebc7434-e787-353e-8a05-865cc7696504,SESCO,II.1.1,San Juan,AR-J,annual,2011,gas oil combustion consumption by to the public,165.87597096,TJ,CH4,3.9,kg/TJ,646.916286744,kg +2ebc7434-e787-353e-8a05-865cc7696504,SESCO,II.1.1,San Juan,AR-J,annual,2011,gas oil combustion consumption by to the public,165.87597096,TJ,N2O,3.9,kg/TJ,646.916286744,kg +f93e07ed-bb1a-39ad-9dc2-dd76040d67d0,SESCO,II.1.1,San Luis,AR-D,annual,2011,gas oil combustion consumption by to the public,115.04884608,TJ,CO2,74100.0,kg/TJ,8525119.494528001,kg +f0891456-ff3c-3d59-ad22-fd3e0144da1e,SESCO,II.1.1,San Luis,AR-D,annual,2011,gas oil combustion consumption by to the public,115.04884608,TJ,CH4,3.9,kg/TJ,448.690499712,kg +f0891456-ff3c-3d59-ad22-fd3e0144da1e,SESCO,II.1.1,San Luis,AR-D,annual,2011,gas oil combustion consumption by to the public,115.04884608,TJ,N2O,3.9,kg/TJ,448.690499712,kg +0b874a0b-0740-31c2-bfe1-8509df9fcd0d,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2011,gas oil combustion consumption by to the public,1173.3341802,TJ,CO2,74100.0,kg/TJ,86944062.75282,kg +5d9a5397-c26f-3355-b448-f1bfe2bbdf85,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2011,gas oil combustion consumption by to the public,1173.3341802,TJ,CH4,3.9,kg/TJ,4576.00330278,kg +5d9a5397-c26f-3355-b448-f1bfe2bbdf85,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2011,gas oil combustion consumption by to the public,1173.3341802,TJ,N2O,3.9,kg/TJ,4576.00330278,kg +9f9ae66b-b925-3d61-a22a-ece228c0bac2,SESCO,II.1.1,Santa Fe,AR-S,annual,2011,gas oil combustion consumption by to the public,2229.72068592,TJ,CO2,74100.0,kg/TJ,165222302.82667202,kg +044956d0-8818-3f03-b63f-d2a35043bdd0,SESCO,II.1.1,Santa Fe,AR-S,annual,2011,gas oil combustion consumption by to the public,2229.72068592,TJ,CH4,3.9,kg/TJ,8695.910675088,kg +044956d0-8818-3f03-b63f-d2a35043bdd0,SESCO,II.1.1,Santa Fe,AR-S,annual,2011,gas oil combustion consumption by to the public,2229.72068592,TJ,N2O,3.9,kg/TJ,8695.910675088,kg +c5603420-7790-3ee3-b9c6-f4cce6c1f971,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2011,gas oil combustion consumption by to the public,83.42748372000001,TJ,CO2,74100.0,kg/TJ,6181976.543652001,kg +02b58bc2-0706-3594-a2b8-c742fe6af482,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2011,gas oil combustion consumption by to the public,83.42748372000001,TJ,CH4,3.9,kg/TJ,325.36718650800003,kg +02b58bc2-0706-3594-a2b8-c742fe6af482,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2011,gas oil combustion consumption by to the public,83.42748372000001,TJ,N2O,3.9,kg/TJ,325.36718650800003,kg +3bd501c6-bb7a-38c8-9ecf-c1c437548070,SESCO,II.1.1,Tucuman,AR-T,annual,2011,gas oil combustion consumption by to the public,197.20606163999997,TJ,CO2,74100.0,kg/TJ,14612969.167523999,kg +bd5a4390-c7f9-368c-96bb-bba5b3effe26,SESCO,II.1.1,Tucuman,AR-T,annual,2011,gas oil combustion consumption by to the public,197.20606163999997,TJ,CH4,3.9,kg/TJ,769.1036403959998,kg +bd5a4390-c7f9-368c-96bb-bba5b3effe26,SESCO,II.1.1,Tucuman,AR-T,annual,2011,gas oil combustion consumption by to the public,197.20606163999997,TJ,N2O,3.9,kg/TJ,769.1036403959998,kg +d7273bed-3e8a-3b07-ad42-38d0c223e986,SESCO,II.1.1,Buenos Aires,AR-B,annual,2011,gas oil combustion consumption by to the public,640.2771345599999,TJ,CO2,74100.0,kg/TJ,47444535.67089599,kg +d2120ab6-b59a-3d28-aa39-d6b0bab605e3,SESCO,II.1.1,Buenos Aires,AR-B,annual,2011,gas oil combustion consumption by to the public,640.2771345599999,TJ,CH4,3.9,kg/TJ,2497.0808247839996,kg +d2120ab6-b59a-3d28-aa39-d6b0bab605e3,SESCO,II.1.1,Buenos Aires,AR-B,annual,2011,gas oil combustion consumption by to the public,640.2771345599999,TJ,N2O,3.9,kg/TJ,2497.0808247839996,kg +d2c98e83-9f2e-3898-8e60-91bb886a6c20,SESCO,II.1.1,Capital Federal,AR-C,annual,2011,gas oil combustion consumption by to the public,55.10954819999999,TJ,CO2,74100.0,kg/TJ,4083617.5216199993,kg +82afd083-10b8-363c-bc9b-25010d38c921,SESCO,II.1.1,Capital Federal,AR-C,annual,2011,gas oil combustion consumption by to the public,55.10954819999999,TJ,CH4,3.9,kg/TJ,214.92723797999997,kg +82afd083-10b8-363c-bc9b-25010d38c921,SESCO,II.1.1,Capital Federal,AR-C,annual,2011,gas oil combustion consumption by to the public,55.10954819999999,TJ,N2O,3.9,kg/TJ,214.92723797999997,kg +1d750806-e492-3546-988d-337ddafcd3e6,SESCO,II.1.1,Córdoba,AR-X,annual,2011,gas oil combustion consumption by to the public,72.21319896,TJ,CO2,74100.0,kg/TJ,5350998.042936,kg +2a168983-ebfc-3599-9826-17ff2340e8c7,SESCO,II.1.1,Córdoba,AR-X,annual,2011,gas oil combustion consumption by to the public,72.21319896,TJ,CH4,3.9,kg/TJ,281.631475944,kg +2a168983-ebfc-3599-9826-17ff2340e8c7,SESCO,II.1.1,Córdoba,AR-X,annual,2011,gas oil combustion consumption by to the public,72.21319896,TJ,N2O,3.9,kg/TJ,281.631475944,kg +ebb2aee6-fefe-368c-a3d6-4f48afd108c4,SESCO,II.1.1,Entre Rios,AR-E,annual,2011,gas oil combustion consumption by to the public,48.1730634,TJ,CO2,74100.0,kg/TJ,3569623.9979399997,kg +2f1a9200-29cb-314d-8c77-11c61f272d1b,SESCO,II.1.1,Entre Rios,AR-E,annual,2011,gas oil combustion consumption by to the public,48.1730634,TJ,CH4,3.9,kg/TJ,187.87494725999997,kg +2f1a9200-29cb-314d-8c77-11c61f272d1b,SESCO,II.1.1,Entre Rios,AR-E,annual,2011,gas oil combustion consumption by to the public,48.1730634,TJ,N2O,3.9,kg/TJ,187.87494725999997,kg +310f4fc1-d5f6-30e5-80cb-623e141f26ff,SESCO,II.1.1,Santa Fe,AR-S,annual,2011,gas oil combustion consumption by to the public,95.88324899999999,TJ,CO2,74100.0,kg/TJ,7104948.750899999,kg +e7d35028-60d1-3a8c-bcba-b42323655970,SESCO,II.1.1,Santa Fe,AR-S,annual,2011,gas oil combustion consumption by to the public,95.88324899999999,TJ,CH4,3.9,kg/TJ,373.94467109999994,kg +e7d35028-60d1-3a8c-bcba-b42323655970,SESCO,II.1.1,Santa Fe,AR-S,annual,2011,gas oil combustion consumption by to the public,95.88324899999999,TJ,N2O,3.9,kg/TJ,373.94467109999994,kg +903ab533-28ab-33e7-b698-e9b792e01dc8,SESCO,I.3.1,La Pampa,AR-L,annual,2011,gas oil combustion consumption by petrochemical industries,12.89018052,TJ,CO2,74100.0,kg/TJ,955162.3765319999,kg +4776273d-e4a2-3ca7-b1e2-73448d81ddeb,SESCO,I.3.1,La Pampa,AR-L,annual,2011,gas oil combustion consumption by petrochemical industries,12.89018052,TJ,CH4,3.9,kg/TJ,50.271704027999995,kg +4776273d-e4a2-3ca7-b1e2-73448d81ddeb,SESCO,I.3.1,La Pampa,AR-L,annual,2011,gas oil combustion consumption by petrochemical industries,12.89018052,TJ,N2O,3.9,kg/TJ,50.271704027999995,kg +00f71a62-e943-3bde-82c6-e57acaca770f,SESCO,II.2.1,Rio Negro,AR-R,annual,2011,gas oil combustion consumption by railway transport,15.248057999999999,TJ,CO2,74100.0,kg/TJ,1129881.0977999999,kg +a38c5d5d-7ea5-3d1c-8f24-ab1061f52ce8,SESCO,II.2.1,Rio Negro,AR-R,annual,2011,gas oil combustion consumption by railway transport,15.248057999999999,TJ,CH4,3.9,kg/TJ,59.46742619999999,kg +a38c5d5d-7ea5-3d1c-8f24-ab1061f52ce8,SESCO,II.2.1,Rio Negro,AR-R,annual,2011,gas oil combustion consumption by railway transport,15.248057999999999,TJ,N2O,3.9,kg/TJ,59.46742619999999,kg +e1548273-a3a4-355b-abbc-de8863abf4a5,SESCO,II.1.1,Buenos Aires,AR-B,annual,2011,gasoline combustion consumption by freight transport,2.048432,TJ,CO2,69300.0,kg/TJ,141956.3376,kg +59c5f8c8-d382-3555-a5e1-5a7381b296b1,SESCO,II.1.1,Buenos Aires,AR-B,annual,2011,gasoline combustion consumption by freight transport,2.048432,TJ,CH4,33.0,kg/TJ,67.598256,kg +b13c0a64-b05f-3750-b009-8084d6d5e92d,SESCO,II.1.1,Buenos Aires,AR-B,annual,2011,gasoline combustion consumption by freight transport,2.048432,TJ,N2O,3.2,kg/TJ,6.5549824,kg +05cb1f8a-8db0-30fb-9c9f-8b2bcdb68724,SESCO,II.1.1,Buenos Aires,AR-B,annual,2011,gas oil combustion consumption by freight transport,439.54074024,TJ,CO2,74100.0,kg/TJ,32569968.851784,kg +45f16c9e-8b64-31ab-9df2-ca87c0f4d60a,SESCO,II.1.1,Buenos Aires,AR-B,annual,2011,gas oil combustion consumption by freight transport,439.54074024,TJ,CH4,3.9,kg/TJ,1714.208886936,kg +45f16c9e-8b64-31ab-9df2-ca87c0f4d60a,SESCO,II.1.1,Buenos Aires,AR-B,annual,2011,gas oil combustion consumption by freight transport,439.54074024,TJ,N2O,3.9,kg/TJ,1714.208886936,kg +18e6601d-103b-3fd0-87b8-11780540482e,SESCO,II.1.1,Chubut,AR-U,annual,2011,gas oil combustion consumption by freight transport,10.1152254,TJ,CO2,74100.0,kg/TJ,749538.20214,kg +a7244136-0496-350f-a5a5-e1d786b9f693,SESCO,II.1.1,Chubut,AR-U,annual,2011,gas oil combustion consumption by freight transport,10.1152254,TJ,CH4,3.9,kg/TJ,39.44937906,kg +a7244136-0496-350f-a5a5-e1d786b9f693,SESCO,II.1.1,Chubut,AR-U,annual,2011,gas oil combustion consumption by freight transport,10.1152254,TJ,N2O,3.9,kg/TJ,39.44937906,kg +d424c807-1fa8-36f4-ba5c-e8193e8ad4e8,SESCO,II.1.1,Córdoba,AR-X,annual,2011,gas oil combustion consumption by freight transport,67.4591568,TJ,CO2,74100.0,kg/TJ,4998723.51888,kg +d45909f3-bbc3-3e24-8322-cec91c7670aa,SESCO,II.1.1,Córdoba,AR-X,annual,2011,gas oil combustion consumption by freight transport,67.4591568,TJ,CH4,3.9,kg/TJ,263.09071152,kg +d45909f3-bbc3-3e24-8322-cec91c7670aa,SESCO,II.1.1,Córdoba,AR-X,annual,2011,gas oil combustion consumption by freight transport,67.4591568,TJ,N2O,3.9,kg/TJ,263.09071152,kg +fafe7a81-94b4-3eed-a5ff-91c9cf15421d,SESCO,II.1.1,San Luis,AR-D,annual,2011,gas oil combustion consumption by freight transport,29.720077800000002,TJ,CO2,74100.0,kg/TJ,2202257.76498,kg +da5c02bb-cc5b-3a31-a967-385b4cb60503,SESCO,II.1.1,San Luis,AR-D,annual,2011,gas oil combustion consumption by freight transport,29.720077800000002,TJ,CH4,3.9,kg/TJ,115.90830342000001,kg +da5c02bb-cc5b-3a31-a967-385b4cb60503,SESCO,II.1.1,San Luis,AR-D,annual,2011,gas oil combustion consumption by freight transport,29.720077800000002,TJ,N2O,3.9,kg/TJ,115.90830342000001,kg +6b4360ff-72e8-3a32-8cbc-b7d9a3fa70e9,SESCO,II.1.1,Santa Fe,AR-S,annual,2011,gas oil combustion consumption by freight transport,1.78779552,TJ,CO2,74100.0,kg/TJ,132475.648032,kg +b6595520-2ec0-3277-9bde-e1309b90a140,SESCO,II.1.1,Santa Fe,AR-S,annual,2011,gas oil combustion consumption by freight transport,1.78779552,TJ,CH4,3.9,kg/TJ,6.972402528,kg +b6595520-2ec0-3277-9bde-e1309b90a140,SESCO,II.1.1,Santa Fe,AR-S,annual,2011,gas oil combustion consumption by freight transport,1.78779552,TJ,N2O,3.9,kg/TJ,6.972402528,kg +b80949d7-672b-3518-9bfc-4f275b670b2f,SESCO,II.1.1,Buenos Aires,AR-B,annual,2011,gas oil combustion consumption by public passenger transport,343.15090824,TJ,CO2,74100.0,kg/TJ,25427482.300584,kg +a3f8e50f-2a8c-3b92-aa24-d8d4a80f652b,SESCO,II.1.1,Buenos Aires,AR-B,annual,2011,gas oil combustion consumption by public passenger transport,343.15090824,TJ,CH4,3.9,kg/TJ,1338.288542136,kg +a3f8e50f-2a8c-3b92-aa24-d8d4a80f652b,SESCO,II.1.1,Buenos Aires,AR-B,annual,2011,gas oil combustion consumption by public passenger transport,343.15090824,TJ,N2O,3.9,kg/TJ,1338.288542136,kg +1cc46c9c-f7bc-33e6-a1fe-fb0b2ab6dd37,SESCO,II.1.1,Capital Federal,AR-C,annual,2011,gas oil combustion consumption by public passenger transport,112.68948768,TJ,CO2,74100.0,kg/TJ,8350291.037088,kg +b6508c13-6e74-3833-8d83-48eb0a418d46,SESCO,II.1.1,Capital Federal,AR-C,annual,2011,gas oil combustion consumption by public passenger transport,112.68948768,TJ,CH4,3.9,kg/TJ,439.48900195199997,kg +b6508c13-6e74-3833-8d83-48eb0a418d46,SESCO,II.1.1,Capital Federal,AR-C,annual,2011,gas oil combustion consumption by public passenger transport,112.68948768,TJ,N2O,3.9,kg/TJ,439.48900195199997,kg +f40a483d-ee55-307a-a68e-7109339c8e3e,SESCO,II.1.1,Córdoba,AR-X,annual,2011,gas oil combustion consumption by public passenger transport,19.426166759999997,TJ,CO2,74100.0,kg/TJ,1439478.9569159998,kg +b1552fa9-0a6c-3a7b-bda6-08f84887089b,SESCO,II.1.1,Córdoba,AR-X,annual,2011,gas oil combustion consumption by public passenger transport,19.426166759999997,TJ,CH4,3.9,kg/TJ,75.76205036399999,kg +b1552fa9-0a6c-3a7b-bda6-08f84887089b,SESCO,II.1.1,Córdoba,AR-X,annual,2011,gas oil combustion consumption by public passenger transport,19.426166759999997,TJ,N2O,3.9,kg/TJ,75.76205036399999,kg +436250d3-ed39-311f-97e6-1e6b4a1215dd,SESCO,II.1.1,Entre Rios,AR-E,annual,2011,gas oil combustion consumption by public passenger transport,26.12657124,TJ,CO2,74100.0,kg/TJ,1935978.928884,kg +cb1d7c1d-06e6-3dfe-b72f-a56a98bba884,SESCO,II.1.1,Entre Rios,AR-E,annual,2011,gas oil combustion consumption by public passenger transport,26.12657124,TJ,CH4,3.9,kg/TJ,101.893627836,kg +cb1d7c1d-06e6-3dfe-b72f-a56a98bba884,SESCO,II.1.1,Entre Rios,AR-E,annual,2011,gas oil combustion consumption by public passenger transport,26.12657124,TJ,N2O,3.9,kg/TJ,101.893627836,kg +05a07f34-e109-3825-89c1-5698a65f6c59,SESCO,II.1.1,Formosa,AR-P,annual,2011,gas oil combustion consumption by public passenger transport,14.387499,TJ,CO2,74100.0,kg/TJ,1066113.6759,kg +37d90070-69b1-30ad-95ea-f99fa130d0b3,SESCO,II.1.1,Formosa,AR-P,annual,2011,gas oil combustion consumption by public passenger transport,14.387499,TJ,CH4,3.9,kg/TJ,56.111246099999995,kg +37d90070-69b1-30ad-95ea-f99fa130d0b3,SESCO,II.1.1,Formosa,AR-P,annual,2011,gas oil combustion consumption by public passenger transport,14.387499,TJ,N2O,3.9,kg/TJ,56.111246099999995,kg +832d7ef2-1f9c-3997-9490-774777429e0a,SESCO,II.1.1,Neuquén,AR-Q,annual,2011,gas oil combustion consumption by public passenger transport,9.39546216,TJ,CO2,74100.0,kg/TJ,696203.7460559999,kg +e542813d-059b-3bef-8e33-6d697c7fe66d,SESCO,II.1.1,Neuquén,AR-Q,annual,2011,gas oil combustion consumption by public passenger transport,9.39546216,TJ,CH4,3.9,kg/TJ,36.64230242399999,kg +e542813d-059b-3bef-8e33-6d697c7fe66d,SESCO,II.1.1,Neuquén,AR-Q,annual,2011,gas oil combustion consumption by public passenger transport,9.39546216,TJ,N2O,3.9,kg/TJ,36.64230242399999,kg +cb3dbdf8-5345-37e9-8b5e-fda580346d22,SESCO,II.1.1,Rio Negro,AR-R,annual,2011,gas oil combustion consumption by public passenger transport,91.746606,TJ,CO2,74100.0,kg/TJ,6798423.5046,kg +cbf0a217-6bb1-3944-b336-c1bf12bb284d,SESCO,II.1.1,Rio Negro,AR-R,annual,2011,gas oil combustion consumption by public passenger transport,91.746606,TJ,CH4,3.9,kg/TJ,357.8117634,kg +cbf0a217-6bb1-3944-b336-c1bf12bb284d,SESCO,II.1.1,Rio Negro,AR-R,annual,2011,gas oil combustion consumption by public passenger transport,91.746606,TJ,N2O,3.9,kg/TJ,357.8117634,kg +d50e64e8-4e9b-323d-aacc-adca09a44d0d,SESCO,II.1.1,San Juan,AR-J,annual,2011,gas oil combustion consumption by public passenger transport,4.18060104,TJ,CO2,74100.0,kg/TJ,309782.537064,kg +44abf9da-c694-3936-b9d5-ba57437e3c0c,SESCO,II.1.1,San Juan,AR-J,annual,2011,gas oil combustion consumption by public passenger transport,4.18060104,TJ,CH4,3.9,kg/TJ,16.304344055999998,kg +44abf9da-c694-3936-b9d5-ba57437e3c0c,SESCO,II.1.1,San Juan,AR-J,annual,2011,gas oil combustion consumption by public passenger transport,4.18060104,TJ,N2O,3.9,kg/TJ,16.304344055999998,kg +ebd44eef-704a-3576-bd12-9603bb873733,SESCO,II.1.1,San Luis,AR-D,annual,2011,gas oil combustion consumption by public passenger transport,25.85101176,TJ,CO2,74100.0,kg/TJ,1915559.9714159998,kg +d69bd707-31e6-30b1-952e-aa6e6aaa0772,SESCO,II.1.1,San Luis,AR-D,annual,2011,gas oil combustion consumption by public passenger transport,25.85101176,TJ,CH4,3.9,kg/TJ,100.81894586399999,kg +d69bd707-31e6-30b1-952e-aa6e6aaa0772,SESCO,II.1.1,San Luis,AR-D,annual,2011,gas oil combustion consumption by public passenger transport,25.85101176,TJ,N2O,3.9,kg/TJ,100.81894586399999,kg +ccb9b890-3ebd-3b3f-9707-27a880c178a2,SESCO,II.1.1,Santa Fe,AR-S,annual,2011,gas oil combustion consumption by public passenger transport,209.14950084,TJ,CO2,74100.0,kg/TJ,15497978.012244001,kg +be54f64e-39b0-345f-a494-0d0b48dac748,SESCO,II.1.1,Santa Fe,AR-S,annual,2011,gas oil combustion consumption by public passenger transport,209.14950084,TJ,CH4,3.9,kg/TJ,815.683053276,kg +be54f64e-39b0-345f-a494-0d0b48dac748,SESCO,II.1.1,Santa Fe,AR-S,annual,2011,gas oil combustion consumption by public passenger transport,209.14950084,TJ,N2O,3.9,kg/TJ,815.683053276,kg +6817d77b-6395-3665-999c-c424cd7c8860,SESCO,II.1.1,Buenos Aires,AR-B,annual,2011,gas oil combustion consumption by to the public,2316.028848,TJ,CO2,74100.0,kg/TJ,171617737.6368,kg +de2b5311-37e4-3222-bdcb-b98e9a675e81,SESCO,II.1.1,Buenos Aires,AR-B,annual,2011,gas oil combustion consumption by to the public,2316.028848,TJ,CH4,3.9,kg/TJ,9032.5125072,kg +de2b5311-37e4-3222-bdcb-b98e9a675e81,SESCO,II.1.1,Buenos Aires,AR-B,annual,2011,gas oil combustion consumption by to the public,2316.028848,TJ,N2O,3.9,kg/TJ,9032.5125072,kg +6b57652e-3640-3fce-a7ba-f57852222c0f,SESCO,II.1.1,Capital Federal,AR-C,annual,2011,gas oil combustion consumption by to the public,104.56739999999999,TJ,CO2,74100.0,kg/TJ,7748444.34,kg +bf0126f4-774b-3385-8539-27dc965cd234,SESCO,II.1.1,Capital Federal,AR-C,annual,2011,gas oil combustion consumption by to the public,104.56739999999999,TJ,CH4,3.9,kg/TJ,407.81285999999994,kg +bf0126f4-774b-3385-8539-27dc965cd234,SESCO,II.1.1,Capital Federal,AR-C,annual,2011,gas oil combustion consumption by to the public,104.56739999999999,TJ,N2O,3.9,kg/TJ,407.81285999999994,kg +01f3c2e1-2ae3-3c96-b4b6-2ade12362cba,SESCO,II.1.1,Chaco,AR-H,annual,2011,gas oil combustion consumption by to the public,4.55112,TJ,CO2,74100.0,kg/TJ,337237.992,kg +db5733e3-eb1f-36d2-86e3-0d6d1af9ac28,SESCO,II.1.1,Chaco,AR-H,annual,2011,gas oil combustion consumption by to the public,4.55112,TJ,CH4,3.9,kg/TJ,17.749368,kg +db5733e3-eb1f-36d2-86e3-0d6d1af9ac28,SESCO,II.1.1,Chaco,AR-H,annual,2011,gas oil combustion consumption by to the public,4.55112,TJ,N2O,3.9,kg/TJ,17.749368,kg +95181b30-9143-362a-a65b-2443fbcd1adf,SESCO,II.1.1,Corrientes,AR-W,annual,2011,gas oil combustion consumption by to the public,3.612,TJ,CO2,74100.0,kg/TJ,267649.2,kg +daa7a51e-d5a1-324e-b9bb-fd90223a6288,SESCO,II.1.1,Corrientes,AR-W,annual,2011,gas oil combustion consumption by to the public,3.612,TJ,CH4,3.9,kg/TJ,14.0868,kg +daa7a51e-d5a1-324e-b9bb-fd90223a6288,SESCO,II.1.1,Corrientes,AR-W,annual,2011,gas oil combustion consumption by to the public,3.612,TJ,N2O,3.9,kg/TJ,14.0868,kg +ef109b94-3a7b-3bbb-bf5b-77d6c4e50400,SESCO,II.1.1,Córdoba,AR-X,annual,2011,gas oil combustion consumption by to the public,1357.44378,TJ,CO2,74100.0,kg/TJ,100586584.098,kg +9e541e95-e5a7-3025-a96c-14c6e276672f,SESCO,II.1.1,Córdoba,AR-X,annual,2011,gas oil combustion consumption by to the public,1357.44378,TJ,CH4,3.9,kg/TJ,5294.030742,kg +9e541e95-e5a7-3025-a96c-14c6e276672f,SESCO,II.1.1,Córdoba,AR-X,annual,2011,gas oil combustion consumption by to the public,1357.44378,TJ,N2O,3.9,kg/TJ,5294.030742,kg +6301beb3-d134-331e-8d23-8520b981eead,SESCO,II.1.1,Entre Rios,AR-E,annual,2011,gas oil combustion consumption by to the public,441.65729999999996,TJ,CO2,74100.0,kg/TJ,32726805.929999996,kg +6f4b8613-440a-3bbc-acae-87ce81f2b6df,SESCO,II.1.1,Entre Rios,AR-E,annual,2011,gas oil combustion consumption by to the public,441.65729999999996,TJ,CH4,3.9,kg/TJ,1722.46347,kg +6f4b8613-440a-3bbc-acae-87ce81f2b6df,SESCO,II.1.1,Entre Rios,AR-E,annual,2011,gas oil combustion consumption by to the public,441.65729999999996,TJ,N2O,3.9,kg/TJ,1722.46347,kg +ad0281fe-041c-3b4b-9922-0b93ba485ab6,SESCO,II.1.1,Santa Fe,AR-S,annual,2011,gas oil combustion consumption by to the public,771.01752,TJ,CO2,74100.0,kg/TJ,57132398.232,kg +d98ba8ae-85ff-3a9b-9f6b-eb75b705647e,SESCO,II.1.1,Santa Fe,AR-S,annual,2011,gas oil combustion consumption by to the public,771.01752,TJ,CH4,3.9,kg/TJ,3006.968328,kg +d98ba8ae-85ff-3a9b-9f6b-eb75b705647e,SESCO,II.1.1,Santa Fe,AR-S,annual,2011,gas oil combustion consumption by to the public,771.01752,TJ,N2O,3.9,kg/TJ,3006.968328,kg +31d661af-53fb-3a3c-9f53-b532382c9fef,SESCO,II.1.1,Buenos Aires,AR-B,annual,2011,gas oil combustion consumption by to the public,64.138284,TJ,CO2,74100.0,kg/TJ,4752646.8444,kg +54060bd9-c4c2-3947-9c9a-e93ba6216e99,SESCO,II.1.1,Buenos Aires,AR-B,annual,2011,gas oil combustion consumption by to the public,64.138284,TJ,CH4,3.9,kg/TJ,250.1393076,kg +54060bd9-c4c2-3947-9c9a-e93ba6216e99,SESCO,II.1.1,Buenos Aires,AR-B,annual,2011,gas oil combustion consumption by to the public,64.138284,TJ,N2O,3.9,kg/TJ,250.1393076,kg +c725638b-be8d-3041-aa6d-55032a157bc3,SESCO,II.1.1,Capital Federal,AR-C,annual,2011,gas oil combustion consumption by to the public,0.14448,TJ,CO2,74100.0,kg/TJ,10705.967999999999,kg +0094bd51-af35-31e9-8115-6719da240397,SESCO,II.1.1,Capital Federal,AR-C,annual,2011,gas oil combustion consumption by to the public,0.14448,TJ,CH4,3.9,kg/TJ,0.563472,kg +0094bd51-af35-31e9-8115-6719da240397,SESCO,II.1.1,Capital Federal,AR-C,annual,2011,gas oil combustion consumption by to the public,0.14448,TJ,N2O,3.9,kg/TJ,0.563472,kg +babba44d-6c34-393c-84db-5b024262fea6,SESCO,II.1.1,Chaco,AR-H,annual,2011,gas oil combustion consumption by to the public,0.18059999999999998,TJ,CO2,74100.0,kg/TJ,13382.46,kg +3a16cf02-7560-3a48-ab1c-56dc678592d7,SESCO,II.1.1,Chaco,AR-H,annual,2011,gas oil combustion consumption by to the public,0.18059999999999998,TJ,CH4,3.9,kg/TJ,0.70434,kg +3a16cf02-7560-3a48-ab1c-56dc678592d7,SESCO,II.1.1,Chaco,AR-H,annual,2011,gas oil combustion consumption by to the public,0.18059999999999998,TJ,N2O,3.9,kg/TJ,0.70434,kg +2d8d11f1-d4c7-3d0b-9c81-717dad7f153d,SESCO,II.1.1,Corrientes,AR-W,annual,2011,gas oil combustion consumption by to the public,1.9866,TJ,CO2,74100.0,kg/TJ,147207.06,kg +b3af7864-31a3-30d9-9e21-20bad3237444,SESCO,II.1.1,Corrientes,AR-W,annual,2011,gas oil combustion consumption by to the public,1.9866,TJ,CH4,3.9,kg/TJ,7.747739999999999,kg +b3af7864-31a3-30d9-9e21-20bad3237444,SESCO,II.1.1,Corrientes,AR-W,annual,2011,gas oil combustion consumption by to the public,1.9866,TJ,N2O,3.9,kg/TJ,7.747739999999999,kg +54b29a4e-5557-3b20-861f-fbcde3e2baea,SESCO,II.1.1,Córdoba,AR-X,annual,2011,gas oil combustion consumption by to the public,64.58256,TJ,CO2,74100.0,kg/TJ,4785567.696,kg +21df7c8f-53ca-3aa5-9d2f-33e6bb584de5,SESCO,II.1.1,Córdoba,AR-X,annual,2011,gas oil combustion consumption by to the public,64.58256,TJ,CH4,3.9,kg/TJ,251.871984,kg +21df7c8f-53ca-3aa5-9d2f-33e6bb584de5,SESCO,II.1.1,Córdoba,AR-X,annual,2011,gas oil combustion consumption by to the public,64.58256,TJ,N2O,3.9,kg/TJ,251.871984,kg +d6595917-cec2-33f0-a74e-c4dedea1cdfa,SESCO,II.1.1,Entre Rios,AR-E,annual,2011,gas oil combustion consumption by to the public,18.56568,TJ,CO2,74100.0,kg/TJ,1375716.888,kg +85989edc-e1be-33c4-8c1f-185566e2c45b,SESCO,II.1.1,Entre Rios,AR-E,annual,2011,gas oil combustion consumption by to the public,18.56568,TJ,CH4,3.9,kg/TJ,72.406152,kg +85989edc-e1be-33c4-8c1f-185566e2c45b,SESCO,II.1.1,Entre Rios,AR-E,annual,2011,gas oil combustion consumption by to the public,18.56568,TJ,N2O,3.9,kg/TJ,72.406152,kg +578ec365-eeca-3350-ac44-c8f4a8a8151f,SESCO,II.1.1,Santa Fe,AR-S,annual,2011,gas oil combustion consumption by to the public,33.1401,TJ,CO2,74100.0,kg/TJ,2455681.4099999997,kg +1cc42503-6b46-3209-81ff-b97e6a8d6da4,SESCO,II.1.1,Santa Fe,AR-S,annual,2011,gas oil combustion consumption by to the public,33.1401,TJ,CH4,3.9,kg/TJ,129.24639,kg +1cc42503-6b46-3209-81ff-b97e6a8d6da4,SESCO,II.1.1,Santa Fe,AR-S,annual,2011,gas oil combustion consumption by to the public,33.1401,TJ,N2O,3.9,kg/TJ,129.24639,kg +dbb40400-bdb3-3b06-b6b1-c10b884e4014,SESCO,II.1.1,Tucuman,AR-T,annual,2011,gasoline combustion consumption by to the public,17.645133,TJ,CO2,69300.0,kg/TJ,1222807.7169,kg +fd217886-2409-3b44-8b4c-edab3b322d09,SESCO,II.1.1,Tucuman,AR-T,annual,2011,gasoline combustion consumption by to the public,17.645133,TJ,CH4,33.0,kg/TJ,582.289389,kg +9faf35a0-ab8a-3d8e-82f6-fce433557959,SESCO,II.1.1,Tucuman,AR-T,annual,2011,gasoline combustion consumption by to the public,17.645133,TJ,N2O,3.2,kg/TJ,56.464425600000006,kg +f3eca8bd-cb40-3997-b8b2-05056506631f,SESCO,II.1.1,Catamarca,AR-K,annual,2011,gas oil combustion consumption by to the public,335.7093936,TJ,CO2,74100.0,kg/TJ,24876066.06576,kg +0f899e57-0c17-3a89-926d-1f99a293f42f,SESCO,II.1.1,Catamarca,AR-K,annual,2011,gas oil combustion consumption by to the public,335.7093936,TJ,CH4,3.9,kg/TJ,1309.26663504,kg +0f899e57-0c17-3a89-926d-1f99a293f42f,SESCO,II.1.1,Catamarca,AR-K,annual,2011,gas oil combustion consumption by to the public,335.7093936,TJ,N2O,3.9,kg/TJ,1309.26663504,kg +0f6160b1-33a3-36e3-bf90-532623560d22,SESCO,II.1.1,Chaco,AR-H,annual,2011,gas oil combustion consumption by to the public,261.6926508,TJ,CO2,74100.0,kg/TJ,19391425.424280003,kg +4ab2f6d4-82b9-311e-806b-948db4d37a8f,SESCO,II.1.1,Chaco,AR-H,annual,2011,gas oil combustion consumption by to the public,261.6926508,TJ,CH4,3.9,kg/TJ,1020.60133812,kg +4ab2f6d4-82b9-311e-806b-948db4d37a8f,SESCO,II.1.1,Chaco,AR-H,annual,2011,gas oil combustion consumption by to the public,261.6926508,TJ,N2O,3.9,kg/TJ,1020.60133812,kg +3a24045b-0471-35b2-a402-af4fd336a427,SESCO,II.1.1,Córdoba,AR-X,annual,2011,gas oil combustion consumption by to the public,133.9918356,TJ,CO2,74100.0,kg/TJ,9928795.01796,kg +b52f35d1-a4b3-32ad-88f1-221b53f763d1,SESCO,II.1.1,Córdoba,AR-X,annual,2011,gas oil combustion consumption by to the public,133.9918356,TJ,CH4,3.9,kg/TJ,522.56815884,kg +b52f35d1-a4b3-32ad-88f1-221b53f763d1,SESCO,II.1.1,Córdoba,AR-X,annual,2011,gas oil combustion consumption by to the public,133.9918356,TJ,N2O,3.9,kg/TJ,522.56815884,kg +36325634-06f1-3226-877e-187b9a35f193,SESCO,II.1.1,Jujuy,AR-Y,annual,2011,gas oil combustion consumption by to the public,977.8301651999999,TJ,CO2,74100.0,kg/TJ,72457215.24132,kg +743c464b-cbbc-3d6c-8a47-affd5d53b697,SESCO,II.1.1,Jujuy,AR-Y,annual,2011,gas oil combustion consumption by to the public,977.8301651999999,TJ,CH4,3.9,kg/TJ,3813.5376442799993,kg +743c464b-cbbc-3d6c-8a47-affd5d53b697,SESCO,II.1.1,Jujuy,AR-Y,annual,2011,gas oil combustion consumption by to the public,977.8301651999999,TJ,N2O,3.9,kg/TJ,3813.5376442799993,kg +0da2599d-0fb2-3dd2-b5d7-94d61f5698f7,SESCO,II.1.1,La Rioja,AR-F,annual,2011,gas oil combustion consumption by to the public,193.7884956,TJ,CO2,74100.0,kg/TJ,14359727.52396,kg +e8cd9a83-264a-374e-bd3c-9f8c2892a469,SESCO,II.1.1,La Rioja,AR-F,annual,2011,gas oil combustion consumption by to the public,193.7884956,TJ,CH4,3.9,kg/TJ,755.77513284,kg +e8cd9a83-264a-374e-bd3c-9f8c2892a469,SESCO,II.1.1,La Rioja,AR-F,annual,2011,gas oil combustion consumption by to the public,193.7884956,TJ,N2O,3.9,kg/TJ,755.77513284,kg +c702dead-4877-3618-9b51-9aa7d3240670,SESCO,II.1.1,Salta,AR-A,annual,2011,gas oil combustion consumption by to the public,2519.1077688,TJ,CO2,74100.0,kg/TJ,186665885.66808,kg +3e4a1733-96c2-30cb-a138-c43d24508ef3,SESCO,II.1.1,Salta,AR-A,annual,2011,gas oil combustion consumption by to the public,2519.1077688,TJ,CH4,3.9,kg/TJ,9824.52029832,kg +3e4a1733-96c2-30cb-a138-c43d24508ef3,SESCO,II.1.1,Salta,AR-A,annual,2011,gas oil combustion consumption by to the public,2519.1077688,TJ,N2O,3.9,kg/TJ,9824.52029832,kg +796f1a20-56ea-38b6-afcd-4322df3d4f6c,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2011,gas oil combustion consumption by to the public,725.8581288,TJ,CO2,74100.0,kg/TJ,53786087.34408,kg +44264fa2-b519-3e40-8d7a-ae591502fe82,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2011,gas oil combustion consumption by to the public,725.8581288,TJ,CH4,3.9,kg/TJ,2830.84670232,kg +44264fa2-b519-3e40-8d7a-ae591502fe82,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2011,gas oil combustion consumption by to the public,725.8581288,TJ,N2O,3.9,kg/TJ,2830.84670232,kg +40221298-c613-3748-a48a-73de69d3d51b,SESCO,II.1.1,Tucuman,AR-T,annual,2011,gas oil combustion consumption by to the public,3489.2440128,TJ,CO2,74100.0,kg/TJ,258552981.34848,kg +b9ba2d9f-5669-3e7e-b2e0-17dd8e19fe66,SESCO,II.1.1,Tucuman,AR-T,annual,2011,gas oil combustion consumption by to the public,3489.2440128,TJ,CH4,3.9,kg/TJ,13608.051649919998,kg +b9ba2d9f-5669-3e7e-b2e0-17dd8e19fe66,SESCO,II.1.1,Tucuman,AR-T,annual,2011,gas oil combustion consumption by to the public,3489.2440128,TJ,N2O,3.9,kg/TJ,13608.051649919998,kg +0ae64cfd-b180-3cda-af36-31304bea46a7,SESCO,II.1.1,Catamarca,AR-K,annual,2011,gas oil combustion consumption by to the public,9.8470344,TJ,CO2,74100.0,kg/TJ,729665.24904,kg +df3d7be6-01d7-32e5-b5d5-e990d6ac228e,SESCO,II.1.1,Catamarca,AR-K,annual,2011,gas oil combustion consumption by to the public,9.8470344,TJ,CH4,3.9,kg/TJ,38.403434159999996,kg +df3d7be6-01d7-32e5-b5d5-e990d6ac228e,SESCO,II.1.1,Catamarca,AR-K,annual,2011,gas oil combustion consumption by to the public,9.8470344,TJ,N2O,3.9,kg/TJ,38.403434159999996,kg +7351971e-8d4f-3df3-b7e5-fcf968229e9f,SESCO,II.1.1,Chaco,AR-H,annual,2011,gas oil combustion consumption by to the public,20.4623412,TJ,CO2,74100.0,kg/TJ,1516259.48292,kg +f3abfc0b-0b49-3f7c-a8a5-5abea3caea98,SESCO,II.1.1,Chaco,AR-H,annual,2011,gas oil combustion consumption by to the public,20.4623412,TJ,CH4,3.9,kg/TJ,79.80313068,kg +f3abfc0b-0b49-3f7c-a8a5-5abea3caea98,SESCO,II.1.1,Chaco,AR-H,annual,2011,gas oil combustion consumption by to the public,20.4623412,TJ,N2O,3.9,kg/TJ,79.80313068,kg +bbd1b08b-767d-3cf5-ba2d-8c7eb71508b4,SESCO,II.1.1,Córdoba,AR-X,annual,2011,gas oil combustion consumption by to the public,8.091241199999999,TJ,CO2,74100.0,kg/TJ,599560.97292,kg +dce2533b-3022-33b0-8ad0-c29ad03f522a,SESCO,II.1.1,Córdoba,AR-X,annual,2011,gas oil combustion consumption by to the public,8.091241199999999,TJ,CH4,3.9,kg/TJ,31.555840679999996,kg +dce2533b-3022-33b0-8ad0-c29ad03f522a,SESCO,II.1.1,Córdoba,AR-X,annual,2011,gas oil combustion consumption by to the public,8.091241199999999,TJ,N2O,3.9,kg/TJ,31.555840679999996,kg +511e9f34-4dd4-30b6-8e0d-3521042be754,SESCO,II.1.1,Jujuy,AR-Y,annual,2011,gas oil combustion consumption by to the public,52.4563536,TJ,CO2,74100.0,kg/TJ,3887015.80176,kg +3f605b60-d085-3033-b8fd-2f5d4c0cbd6e,SESCO,II.1.1,Jujuy,AR-Y,annual,2011,gas oil combustion consumption by to the public,52.4563536,TJ,CH4,3.9,kg/TJ,204.57977904,kg +3f605b60-d085-3033-b8fd-2f5d4c0cbd6e,SESCO,II.1.1,Jujuy,AR-Y,annual,2011,gas oil combustion consumption by to the public,52.4563536,TJ,N2O,3.9,kg/TJ,204.57977904,kg +38041bb9-6978-3f52-be09-94a6733ee251,SESCO,II.1.1,La Rioja,AR-F,annual,2011,gas oil combustion consumption by to the public,14.0391216,TJ,CO2,74100.0,kg/TJ,1040298.91056,kg +ee052494-3e86-3b9d-a716-75752422d317,SESCO,II.1.1,La Rioja,AR-F,annual,2011,gas oil combustion consumption by to the public,14.0391216,TJ,CH4,3.9,kg/TJ,54.752574239999994,kg +ee052494-3e86-3b9d-a716-75752422d317,SESCO,II.1.1,La Rioja,AR-F,annual,2011,gas oil combustion consumption by to the public,14.0391216,TJ,N2O,3.9,kg/TJ,54.752574239999994,kg +3006d4c8-9f94-3dd8-aee8-9a1d3b7bb260,SESCO,II.1.1,Salta,AR-A,annual,2011,gas oil combustion consumption by to the public,141.5170764,TJ,CO2,74100.0,kg/TJ,10486415.361240001,kg +9eec7944-ebb7-3b30-bf84-1b6c6d23ae86,SESCO,II.1.1,Salta,AR-A,annual,2011,gas oil combustion consumption by to the public,141.5170764,TJ,CH4,3.9,kg/TJ,551.91659796,kg +9eec7944-ebb7-3b30-bf84-1b6c6d23ae86,SESCO,II.1.1,Salta,AR-A,annual,2011,gas oil combustion consumption by to the public,141.5170764,TJ,N2O,3.9,kg/TJ,551.91659796,kg +d5c4264a-95be-33b0-b3dc-36a1940a1236,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2011,gas oil combustion consumption by to the public,36.2850684,TJ,CO2,74100.0,kg/TJ,2688723.56844,kg +733b7123-c4a6-39a7-a306-f74ea30f1d10,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2011,gas oil combustion consumption by to the public,36.2850684,TJ,CH4,3.9,kg/TJ,141.51176676,kg +733b7123-c4a6-39a7-a306-f74ea30f1d10,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2011,gas oil combustion consumption by to the public,36.2850684,TJ,N2O,3.9,kg/TJ,141.51176676,kg +377ae6c3-3a80-3260-832e-c1711bba5f7f,SESCO,II.1.1,Tucuman,AR-T,annual,2011,gas oil combustion consumption by to the public,216.58996799999997,TJ,CO2,74100.0,kg/TJ,16049316.628799997,kg +b56aec6a-1c63-36b4-bab9-de9e911f3086,SESCO,II.1.1,Tucuman,AR-T,annual,2011,gas oil combustion consumption by to the public,216.58996799999997,TJ,CH4,3.9,kg/TJ,844.7008751999998,kg +b56aec6a-1c63-36b4-bab9-de9e911f3086,SESCO,II.1.1,Tucuman,AR-T,annual,2011,gas oil combustion consumption by to the public,216.58996799999997,TJ,N2O,3.9,kg/TJ,844.7008751999998,kg +3affc3de-a8a9-38d9-973c-fef252324aa3,SESCO,I.3.1,Buenos Aires,AR-B,annual,2011,gasoline combustion consumption by petrochemical industries,143.27816099999998,TJ,CO2,69300.0,kg/TJ,9929176.5573,kg +af56d8ee-5d84-3c1a-810d-7514c8cbc6bc,SESCO,I.3.1,Buenos Aires,AR-B,annual,2011,gasoline combustion consumption by petrochemical industries,143.27816099999998,TJ,CH4,33.0,kg/TJ,4728.179313,kg +28d62d7c-4d83-3c32-b56c-a04dc0a01aa3,SESCO,I.3.1,Buenos Aires,AR-B,annual,2011,gasoline combustion consumption by petrochemical industries,143.27816099999998,TJ,N2O,3.2,kg/TJ,458.4901152,kg +197a70a4-3497-3639-bcea-9f9bdc41817c,SESCO,I.3.1,Chaco,AR-H,annual,2011,gasoline combustion consumption by petrochemical industries,1.1907839999999998,TJ,CO2,69300.0,kg/TJ,82521.33119999999,kg +8fccdb34-ba23-33b6-b976-71ce56241da2,SESCO,I.3.1,Chaco,AR-H,annual,2011,gasoline combustion consumption by petrochemical industries,1.1907839999999998,TJ,CH4,33.0,kg/TJ,39.295871999999996,kg +54208466-4a07-3cb9-83e9-02218e4b6890,SESCO,I.3.1,Chaco,AR-H,annual,2011,gasoline combustion consumption by petrochemical industries,1.1907839999999998,TJ,N2O,3.2,kg/TJ,3.8105087999999996,kg +4f6f4fe9-afe1-3954-8ad1-34a5fa080527,SESCO,I.3.1,Santa Fe,AR-S,annual,2011,gasoline combustion consumption by petrochemical industries,14.936187999999998,TJ,CO2,69300.0,kg/TJ,1035077.8283999999,kg +7303bbfd-2d4c-357d-ab24-8b92beb4c1db,SESCO,I.3.1,Santa Fe,AR-S,annual,2011,gasoline combustion consumption by petrochemical industries,14.936187999999998,TJ,CH4,33.0,kg/TJ,492.89420399999995,kg +87f0825d-44bd-3899-9c1d-7209ffb0ea21,SESCO,I.3.1,Santa Fe,AR-S,annual,2011,gasoline combustion consumption by petrochemical industries,14.936187999999998,TJ,N2O,3.2,kg/TJ,47.7958016,kg +4d485571-d6db-3298-8b30-c71cdea924d8,SESCO,II.5.1,Buenos Aires,AR-B,annual,2011,gas oil combustion consumption by agriculture machines,399.23436,TJ,CO2,74100.0,kg/TJ,29583266.075999998,kg +4108a433-41f1-3b77-b0e3-19eab9a5dd61,SESCO,II.5.1,Buenos Aires,AR-B,annual,2011,gas oil combustion consumption by agriculture machines,399.23436,TJ,CH4,3.9,kg/TJ,1557.0140039999999,kg +4108a433-41f1-3b77-b0e3-19eab9a5dd61,SESCO,II.5.1,Buenos Aires,AR-B,annual,2011,gas oil combustion consumption by agriculture machines,399.23436,TJ,N2O,3.9,kg/TJ,1557.0140039999999,kg +7d05e871-2293-313f-9f2f-41264e90f01c,SESCO,II.5.1,Capital Federal,AR-C,annual,2011,gas oil combustion consumption by agriculture machines,96.36816,TJ,CO2,74100.0,kg/TJ,7140880.656,kg +eb845470-175c-322f-835f-2c8b10eaf3c7,SESCO,II.5.1,Capital Federal,AR-C,annual,2011,gas oil combustion consumption by agriculture machines,96.36816,TJ,CH4,3.9,kg/TJ,375.835824,kg +eb845470-175c-322f-835f-2c8b10eaf3c7,SESCO,II.5.1,Capital Federal,AR-C,annual,2011,gas oil combustion consumption by agriculture machines,96.36816,TJ,N2O,3.9,kg/TJ,375.835824,kg +3ffdd473-2270-34e9-aca9-adc1fb24a36b,SESCO,II.5.1,Córdoba,AR-X,annual,2011,gas oil combustion consumption by agriculture machines,149.82576,TJ,CO2,74100.0,kg/TJ,11102088.816,kg +e3a89eb3-82a7-369f-8dd3-4b40b03d29e2,SESCO,II.5.1,Córdoba,AR-X,annual,2011,gas oil combustion consumption by agriculture machines,149.82576,TJ,CH4,3.9,kg/TJ,584.320464,kg +e3a89eb3-82a7-369f-8dd3-4b40b03d29e2,SESCO,II.5.1,Córdoba,AR-X,annual,2011,gas oil combustion consumption by agriculture machines,149.82576,TJ,N2O,3.9,kg/TJ,584.320464,kg +75905586-909a-3191-a161-0c69da72568b,SESCO,II.5.1,La Pampa,AR-L,annual,2011,gas oil combustion consumption by agriculture machines,10.90824,TJ,CO2,74100.0,kg/TJ,808300.5839999999,kg +60af8a50-eac6-394b-b1eb-4426b887bbb5,SESCO,II.5.1,La Pampa,AR-L,annual,2011,gas oil combustion consumption by agriculture machines,10.90824,TJ,CH4,3.9,kg/TJ,42.542136,kg +60af8a50-eac6-394b-b1eb-4426b887bbb5,SESCO,II.5.1,La Pampa,AR-L,annual,2011,gas oil combustion consumption by agriculture machines,10.90824,TJ,N2O,3.9,kg/TJ,42.542136,kg +ebf7c8be-4cce-3d18-92b5-b24f64e3d723,SESCO,II.5.1,Santa Fe,AR-S,annual,2011,gas oil combustion consumption by agriculture machines,437.26872,TJ,CO2,74100.0,kg/TJ,32401612.152,kg +69f2b4a1-7f9d-3417-8f71-b9b8c84d348a,SESCO,II.5.1,Santa Fe,AR-S,annual,2011,gas oil combustion consumption by agriculture machines,437.26872,TJ,CH4,3.9,kg/TJ,1705.348008,kg +69f2b4a1-7f9d-3417-8f71-b9b8c84d348a,SESCO,II.5.1,Santa Fe,AR-S,annual,2011,gas oil combustion consumption by agriculture machines,437.26872,TJ,N2O,3.9,kg/TJ,1705.348008,kg +904321a0-c766-3c8b-9c09-08ee7561f927,SESCO,II.5.1,Buenos Aires,AR-B,annual,2011,gas oil combustion consumption by agriculture machines,5.45412,TJ,CO2,74100.0,kg/TJ,404150.29199999996,kg +30c615d9-7731-312b-b38f-83cdfa9ec271,SESCO,II.5.1,Buenos Aires,AR-B,annual,2011,gas oil combustion consumption by agriculture machines,5.45412,TJ,CH4,3.9,kg/TJ,21.271068,kg +30c615d9-7731-312b-b38f-83cdfa9ec271,SESCO,II.5.1,Buenos Aires,AR-B,annual,2011,gas oil combustion consumption by agriculture machines,5.45412,TJ,N2O,3.9,kg/TJ,21.271068,kg +708da319-be1e-3403-b838-bc7a6de10154,SESCO,II.5.1,Buenos Aires,AR-B,annual,2011,jet kerosene combustion consumption by agriculture machines,0.22017099999999995,TJ,CO2,71500.0,kg/TJ,15742.226499999997,kg +db84a83d-3dc7-37a5-802b-70c078d9aed4,SESCO,II.5.1,Buenos Aires,AR-B,annual,2011,jet kerosene combustion consumption by agriculture machines,0.22017099999999995,TJ,CH4,0.5,kg/TJ,0.11008549999999998,kg +121d6e2a-f4d7-3faa-bba7-4bea9e0d0149,SESCO,II.5.1,Buenos Aires,AR-B,annual,2011,jet kerosene combustion consumption by agriculture machines,0.22017099999999995,TJ,N2O,2.0,kg/TJ,0.4403419999999999,kg +64f2829f-dc94-3e21-af97-cf3dbc8a7fe7,SESCO,II.1.1,Buenos Aires,AR-B,annual,2011,gas oil combustion consumption by to the public,14017.269,TJ,CO2,74100.0,kg/TJ,1038679632.9,kg +1b07e73e-a215-3ac5-a65d-dd3dbd946c73,SESCO,II.1.1,Buenos Aires,AR-B,annual,2011,gas oil combustion consumption by to the public,14017.269,TJ,CH4,3.9,kg/TJ,54667.3491,kg +1b07e73e-a215-3ac5-a65d-dd3dbd946c73,SESCO,II.1.1,Buenos Aires,AR-B,annual,2011,gas oil combustion consumption by to the public,14017.269,TJ,N2O,3.9,kg/TJ,54667.3491,kg +ed9103c6-c21b-3915-9388-5cbc6c164e48,SESCO,II.1.1,Capital Federal,AR-C,annual,2011,gas oil combustion consumption by to the public,1421.61096,TJ,CO2,74100.0,kg/TJ,105341372.13599999,kg +96912676-3814-3962-bf06-ba69f167c0d3,SESCO,II.1.1,Capital Federal,AR-C,annual,2011,gas oil combustion consumption by to the public,1421.61096,TJ,CH4,3.9,kg/TJ,5544.282744,kg +96912676-3814-3962-bf06-ba69f167c0d3,SESCO,II.1.1,Capital Federal,AR-C,annual,2011,gas oil combustion consumption by to the public,1421.61096,TJ,N2O,3.9,kg/TJ,5544.282744,kg +08e81d74-86d0-3c1e-80ce-18668654ad95,SESCO,II.1.1,Catamarca,AR-K,annual,2011,gas oil combustion consumption by to the public,33.37488,TJ,CO2,74100.0,kg/TJ,2473078.608,kg +71aa8511-8b1b-3ed8-9212-db743ffd8c73,SESCO,II.1.1,Catamarca,AR-K,annual,2011,gas oil combustion consumption by to the public,33.37488,TJ,CH4,3.9,kg/TJ,130.16203199999998,kg +71aa8511-8b1b-3ed8-9212-db743ffd8c73,SESCO,II.1.1,Catamarca,AR-K,annual,2011,gas oil combustion consumption by to the public,33.37488,TJ,N2O,3.9,kg/TJ,130.16203199999998,kg +bd61c414-0348-3ee1-8944-7c310d3a7f67,SESCO,II.1.1,Chaco,AR-H,annual,2011,gas oil combustion consumption by to the public,1534.5582,TJ,CO2,74100.0,kg/TJ,113710762.61999999,kg +086f6d2a-a5d9-3049-b52c-8b4b547a8e15,SESCO,II.1.1,Chaco,AR-H,annual,2011,gas oil combustion consumption by to the public,1534.5582,TJ,CH4,3.9,kg/TJ,5984.77698,kg +086f6d2a-a5d9-3049-b52c-8b4b547a8e15,SESCO,II.1.1,Chaco,AR-H,annual,2011,gas oil combustion consumption by to the public,1534.5582,TJ,N2O,3.9,kg/TJ,5984.77698,kg +b5209c67-ac24-3e24-b76c-c27740319de2,SESCO,II.1.1,Chubut,AR-U,annual,2011,gas oil combustion consumption by to the public,49.88172,TJ,CO2,74100.0,kg/TJ,3696235.452,kg +61f5fdd4-79a8-3547-9346-984d60251596,SESCO,II.1.1,Chubut,AR-U,annual,2011,gas oil combustion consumption by to the public,49.88172,TJ,CH4,3.9,kg/TJ,194.538708,kg +61f5fdd4-79a8-3547-9346-984d60251596,SESCO,II.1.1,Chubut,AR-U,annual,2011,gas oil combustion consumption by to the public,49.88172,TJ,N2O,3.9,kg/TJ,194.538708,kg +472f7155-b711-3706-bd6d-2fb0d10e7332,SESCO,II.1.1,Corrientes,AR-W,annual,2011,gas oil combustion consumption by to the public,755.41368,TJ,CO2,74100.0,kg/TJ,55976153.688,kg +aab4b29a-465d-375a-a29d-9a407c5428c7,SESCO,II.1.1,Corrientes,AR-W,annual,2011,gas oil combustion consumption by to the public,755.41368,TJ,CH4,3.9,kg/TJ,2946.113352,kg +aab4b29a-465d-375a-a29d-9a407c5428c7,SESCO,II.1.1,Corrientes,AR-W,annual,2011,gas oil combustion consumption by to the public,755.41368,TJ,N2O,3.9,kg/TJ,2946.113352,kg +75dffe7e-e4ea-376e-8f91-2882dbee07b0,SESCO,II.1.1,Córdoba,AR-X,annual,2011,gas oil combustion consumption by to the public,4956.49476,TJ,CO2,74100.0,kg/TJ,367276261.71599996,kg +2b721683-3887-3dce-9f19-24afea28f593,SESCO,II.1.1,Córdoba,AR-X,annual,2011,gas oil combustion consumption by to the public,4956.49476,TJ,CH4,3.9,kg/TJ,19330.329564,kg +2b721683-3887-3dce-9f19-24afea28f593,SESCO,II.1.1,Córdoba,AR-X,annual,2011,gas oil combustion consumption by to the public,4956.49476,TJ,N2O,3.9,kg/TJ,19330.329564,kg +6f658641-1968-3083-9a47-02af0a5faccd,SESCO,II.1.1,Entre Rios,AR-E,annual,2011,gas oil combustion consumption by to the public,1643.46,TJ,CO2,74100.0,kg/TJ,121780386.0,kg +fb8f622f-8d7b-3c43-b26f-bd4ff07acae0,SESCO,II.1.1,Entre Rios,AR-E,annual,2011,gas oil combustion consumption by to the public,1643.46,TJ,CH4,3.9,kg/TJ,6409.494,kg +fb8f622f-8d7b-3c43-b26f-bd4ff07acae0,SESCO,II.1.1,Entre Rios,AR-E,annual,2011,gas oil combustion consumption by to the public,1643.46,TJ,N2O,3.9,kg/TJ,6409.494,kg +528681d5-5d92-3c07-a257-ebcf29c97b8f,SESCO,II.1.1,Formosa,AR-P,annual,2011,gas oil combustion consumption by to the public,209.02644,TJ,CO2,74100.0,kg/TJ,15488859.204,kg +9b16f5f5-2795-3911-bf3c-ad1913e2bcf4,SESCO,II.1.1,Formosa,AR-P,annual,2011,gas oil combustion consumption by to the public,209.02644,TJ,CH4,3.9,kg/TJ,815.203116,kg +9b16f5f5-2795-3911-bf3c-ad1913e2bcf4,SESCO,II.1.1,Formosa,AR-P,annual,2011,gas oil combustion consumption by to the public,209.02644,TJ,N2O,3.9,kg/TJ,815.203116,kg +e1e8e713-6865-35ad-8c44-3cf9a862fa5e,SESCO,II.1.1,Jujuy,AR-Y,annual,2011,gas oil combustion consumption by to the public,324.42984,TJ,CO2,74100.0,kg/TJ,24040251.144,kg +04c5a6a0-c713-3cea-ac05-eb9a103edb5d,SESCO,II.1.1,Jujuy,AR-Y,annual,2011,gas oil combustion consumption by to the public,324.42984,TJ,CH4,3.9,kg/TJ,1265.276376,kg +04c5a6a0-c713-3cea-ac05-eb9a103edb5d,SESCO,II.1.1,Jujuy,AR-Y,annual,2011,gas oil combustion consumption by to the public,324.42984,TJ,N2O,3.9,kg/TJ,1265.276376,kg +42b17131-8150-36b4-92b2-02e07b49cecc,SESCO,II.1.1,La Pampa,AR-L,annual,2011,gas oil combustion consumption by to the public,499.57572,TJ,CO2,74100.0,kg/TJ,37018560.852,kg +cf25d509-dad0-37c9-80da-593232858bba,SESCO,II.1.1,La Pampa,AR-L,annual,2011,gas oil combustion consumption by to the public,499.57572,TJ,CH4,3.9,kg/TJ,1948.345308,kg +cf25d509-dad0-37c9-80da-593232858bba,SESCO,II.1.1,La Pampa,AR-L,annual,2011,gas oil combustion consumption by to the public,499.57572,TJ,N2O,3.9,kg/TJ,1948.345308,kg +50395ad7-f66a-38b8-80f4-9ad9c2f182c4,SESCO,II.1.1,La Rioja,AR-F,annual,2011,gas oil combustion consumption by to the public,335.26583999999997,TJ,CO2,74100.0,kg/TJ,24843198.744,kg +b55ac629-d2e8-34f9-b8fa-945a2291ef2e,SESCO,II.1.1,La Rioja,AR-F,annual,2011,gas oil combustion consumption by to the public,335.26583999999997,TJ,CH4,3.9,kg/TJ,1307.536776,kg +b55ac629-d2e8-34f9-b8fa-945a2291ef2e,SESCO,II.1.1,La Rioja,AR-F,annual,2011,gas oil combustion consumption by to the public,335.26583999999997,TJ,N2O,3.9,kg/TJ,1307.536776,kg +d6642f80-3688-316d-a1d0-00115b459388,SESCO,II.1.1,Mendoza,AR-M,annual,2011,gas oil combustion consumption by to the public,888.29916,TJ,CO2,74100.0,kg/TJ,65822967.756000005,kg +6a5ce21b-ac08-3fc7-8ae0-42000a372787,SESCO,II.1.1,Mendoza,AR-M,annual,2011,gas oil combustion consumption by to the public,888.29916,TJ,CH4,3.9,kg/TJ,3464.366724,kg +6a5ce21b-ac08-3fc7-8ae0-42000a372787,SESCO,II.1.1,Mendoza,AR-M,annual,2011,gas oil combustion consumption by to the public,888.29916,TJ,N2O,3.9,kg/TJ,3464.366724,kg +3cc0e609-d690-381c-ad43-4ce5a65178cc,SESCO,II.1.1,Misiones,AR-N,annual,2011,gas oil combustion consumption by to the public,1145.40132,TJ,CO2,74100.0,kg/TJ,84874237.81199999,kg +0b9984dd-91f5-3d7d-9f7a-2d7bc9b76896,SESCO,II.1.1,Misiones,AR-N,annual,2011,gas oil combustion consumption by to the public,1145.40132,TJ,CH4,3.9,kg/TJ,4467.065148,kg +0b9984dd-91f5-3d7d-9f7a-2d7bc9b76896,SESCO,II.1.1,Misiones,AR-N,annual,2011,gas oil combustion consumption by to the public,1145.40132,TJ,N2O,3.9,kg/TJ,4467.065148,kg +26e21818-027b-3809-9d09-e5e92cbd0831,SESCO,II.1.1,Neuquén,AR-Q,annual,2011,gas oil combustion consumption by to the public,299.68764,TJ,CO2,74100.0,kg/TJ,22206854.123999998,kg +4353762e-4a18-3565-b827-5e2df5de1260,SESCO,II.1.1,Neuquén,AR-Q,annual,2011,gas oil combustion consumption by to the public,299.68764,TJ,CH4,3.9,kg/TJ,1168.781796,kg +4353762e-4a18-3565-b827-5e2df5de1260,SESCO,II.1.1,Neuquén,AR-Q,annual,2011,gas oil combustion consumption by to the public,299.68764,TJ,N2O,3.9,kg/TJ,1168.781796,kg +6fa1e30b-fbca-301b-b9f5-4fa48c50ae41,SESCO,II.1.1,Rio Negro,AR-R,annual,2011,gas oil combustion consumption by to the public,372.65004,TJ,CO2,74100.0,kg/TJ,27613367.963999998,kg +fd6edc88-90ae-379d-ba47-f23fc1ff75d1,SESCO,II.1.1,Rio Negro,AR-R,annual,2011,gas oil combustion consumption by to the public,372.65004,TJ,CH4,3.9,kg/TJ,1453.3351559999999,kg +fd6edc88-90ae-379d-ba47-f23fc1ff75d1,SESCO,II.1.1,Rio Negro,AR-R,annual,2011,gas oil combustion consumption by to the public,372.65004,TJ,N2O,3.9,kg/TJ,1453.3351559999999,kg +6e537c68-8583-3170-be56-8ed0fd3e5fd2,SESCO,II.1.1,Salta,AR-A,annual,2011,gas oil combustion consumption by to the public,339.3474,TJ,CO2,74100.0,kg/TJ,25145642.34,kg +3b54330b-c4c1-3880-882c-c57a2b34acb8,SESCO,II.1.1,Salta,AR-A,annual,2011,gas oil combustion consumption by to the public,339.3474,TJ,CH4,3.9,kg/TJ,1323.45486,kg +3b54330b-c4c1-3880-882c-c57a2b34acb8,SESCO,II.1.1,Salta,AR-A,annual,2011,gas oil combustion consumption by to the public,339.3474,TJ,N2O,3.9,kg/TJ,1323.45486,kg +d6c6c6e2-817a-3631-9fa8-22b71e90b31d,SESCO,II.1.1,San Juan,AR-J,annual,2011,gas oil combustion consumption by to the public,254.82659999999998,TJ,CO2,74100.0,kg/TJ,18882651.06,kg +20ba0a13-98dd-3732-86e8-0198b8d18dc4,SESCO,II.1.1,San Juan,AR-J,annual,2011,gas oil combustion consumption by to the public,254.82659999999998,TJ,CH4,3.9,kg/TJ,993.8237399999999,kg +20ba0a13-98dd-3732-86e8-0198b8d18dc4,SESCO,II.1.1,San Juan,AR-J,annual,2011,gas oil combustion consumption by to the public,254.82659999999998,TJ,N2O,3.9,kg/TJ,993.8237399999999,kg +e26646a0-2efc-35d6-8179-06f0d4716f55,SESCO,II.1.1,San Luis,AR-D,annual,2011,gas oil combustion consumption by to the public,23.22516,TJ,CO2,74100.0,kg/TJ,1720984.356,kg +e716070e-2d30-3647-a518-e43f2a5bbd4f,SESCO,II.1.1,San Luis,AR-D,annual,2011,gas oil combustion consumption by to the public,23.22516,TJ,CH4,3.9,kg/TJ,90.57812399999999,kg +e716070e-2d30-3647-a518-e43f2a5bbd4f,SESCO,II.1.1,San Luis,AR-D,annual,2011,gas oil combustion consumption by to the public,23.22516,TJ,N2O,3.9,kg/TJ,90.57812399999999,kg +3d248a3a-a0ca-396e-bbaf-e695d53f2c13,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2011,gas oil combustion consumption by to the public,0.18059999999999998,TJ,CO2,74100.0,kg/TJ,13382.46,kg +306a3ed5-391a-3f84-b349-fda58778f506,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2011,gas oil combustion consumption by to the public,0.18059999999999998,TJ,CH4,3.9,kg/TJ,0.70434,kg +306a3ed5-391a-3f84-b349-fda58778f506,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2011,gas oil combustion consumption by to the public,0.18059999999999998,TJ,N2O,3.9,kg/TJ,0.70434,kg +f8a8a558-fe0e-3006-9e56-29b66eb27cee,SESCO,II.1.1,Santa Fe,AR-S,annual,2011,gas oil combustion consumption by to the public,5044.44696,TJ,CO2,74100.0,kg/TJ,373793519.736,kg +aeb1de14-f6aa-3b12-89fc-af352e4c7be8,SESCO,II.1.1,Santa Fe,AR-S,annual,2011,gas oil combustion consumption by to the public,5044.44696,TJ,CH4,3.9,kg/TJ,19673.343144000002,kg +aeb1de14-f6aa-3b12-89fc-af352e4c7be8,SESCO,II.1.1,Santa Fe,AR-S,annual,2011,gas oil combustion consumption by to the public,5044.44696,TJ,N2O,3.9,kg/TJ,19673.343144000002,kg +a20db8d0-735d-348f-afff-9185e26d5a70,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2011,gas oil combustion consumption by to the public,505.02984,TJ,CO2,74100.0,kg/TJ,37422711.144,kg +93113219-3033-305b-99d2-07c4136174b8,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2011,gas oil combustion consumption by to the public,505.02984,TJ,CH4,3.9,kg/TJ,1969.616376,kg +93113219-3033-305b-99d2-07c4136174b8,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2011,gas oil combustion consumption by to the public,505.02984,TJ,N2O,3.9,kg/TJ,1969.616376,kg +e267b218-21f0-3955-93e5-aac85f43e171,SESCO,II.1.1,Tucuman,AR-T,annual,2011,gas oil combustion consumption by to the public,860.27004,TJ,CO2,74100.0,kg/TJ,63746009.964,kg +7eec23fd-1f81-3a5b-bba1-5170ebf607d7,SESCO,II.1.1,Tucuman,AR-T,annual,2011,gas oil combustion consumption by to the public,860.27004,TJ,CH4,3.9,kg/TJ,3355.053156,kg +7eec23fd-1f81-3a5b-bba1-5170ebf607d7,SESCO,II.1.1,Tucuman,AR-T,annual,2011,gas oil combustion consumption by to the public,860.27004,TJ,N2O,3.9,kg/TJ,3355.053156,kg +54ee38c3-7eb2-350c-bf77-30df30c90b5f,SESCO,II.1.1,Buenos Aires,AR-B,annual,2011,gas oil combustion consumption by to the public,6034.85736,TJ,CO2,74100.0,kg/TJ,447182930.376,kg +ca53898f-33bf-3464-bf09-f2f1038eee0f,SESCO,II.1.1,Buenos Aires,AR-B,annual,2011,gas oil combustion consumption by to the public,6034.85736,TJ,CH4,3.9,kg/TJ,23535.943704,kg +ca53898f-33bf-3464-bf09-f2f1038eee0f,SESCO,II.1.1,Buenos Aires,AR-B,annual,2011,gas oil combustion consumption by to the public,6034.85736,TJ,N2O,3.9,kg/TJ,23535.943704,kg +d0a0d0fa-c840-383a-b93b-2127ff824bb7,SESCO,II.1.1,Capital Federal,AR-C,annual,2011,gas oil combustion consumption by to the public,1103.5021199999999,TJ,CO2,74100.0,kg/TJ,81769507.092,kg +7de08b4c-f7a3-3292-88ac-1464b3c085f8,SESCO,II.1.1,Capital Federal,AR-C,annual,2011,gas oil combustion consumption by to the public,1103.5021199999999,TJ,CH4,3.9,kg/TJ,4303.658267999999,kg +7de08b4c-f7a3-3292-88ac-1464b3c085f8,SESCO,II.1.1,Capital Federal,AR-C,annual,2011,gas oil combustion consumption by to the public,1103.5021199999999,TJ,N2O,3.9,kg/TJ,4303.658267999999,kg +3204175a-6911-34a5-b161-2851068f0b5c,SESCO,II.1.1,Catamarca,AR-K,annual,2011,gas oil combustion consumption by to the public,18.674039999999998,TJ,CO2,74100.0,kg/TJ,1383746.3639999998,kg +de1c8506-9836-3360-b41e-8fc329b601f8,SESCO,II.1.1,Catamarca,AR-K,annual,2011,gas oil combustion consumption by to the public,18.674039999999998,TJ,CH4,3.9,kg/TJ,72.82875599999998,kg +de1c8506-9836-3360-b41e-8fc329b601f8,SESCO,II.1.1,Catamarca,AR-K,annual,2011,gas oil combustion consumption by to the public,18.674039999999998,TJ,N2O,3.9,kg/TJ,72.82875599999998,kg +fdb528f5-d2fa-3412-aedd-fd76700a3ffc,SESCO,II.1.1,Chaco,AR-H,annual,2011,gas oil combustion consumption by to the public,263.89272,TJ,CO2,74100.0,kg/TJ,19554450.552,kg +534f197a-3a8c-3de1-a1e5-daaef1669e3c,SESCO,II.1.1,Chaco,AR-H,annual,2011,gas oil combustion consumption by to the public,263.89272,TJ,CH4,3.9,kg/TJ,1029.1816079999999,kg +534f197a-3a8c-3de1-a1e5-daaef1669e3c,SESCO,II.1.1,Chaco,AR-H,annual,2011,gas oil combustion consumption by to the public,263.89272,TJ,N2O,3.9,kg/TJ,1029.1816079999999,kg +f6028edd-4008-3eb5-96c6-6eb1d3984e79,SESCO,II.1.1,Chubut,AR-U,annual,2011,gas oil combustion consumption by to the public,45.22224,TJ,CO2,74100.0,kg/TJ,3350967.984,kg +f38edeef-f225-36bf-b867-42a76258464f,SESCO,II.1.1,Chubut,AR-U,annual,2011,gas oil combustion consumption by to the public,45.22224,TJ,CH4,3.9,kg/TJ,176.366736,kg +f38edeef-f225-36bf-b867-42a76258464f,SESCO,II.1.1,Chubut,AR-U,annual,2011,gas oil combustion consumption by to the public,45.22224,TJ,N2O,3.9,kg/TJ,176.366736,kg +fa93c880-6b04-3ad2-98d2-c34b1b7a6c3a,SESCO,II.1.1,Corrientes,AR-W,annual,2011,gas oil combustion consumption by to the public,194.47008,TJ,CO2,74100.0,kg/TJ,14410232.928,kg +96e5f8d0-d6cc-3d0b-9899-cf07ad95f5e6,SESCO,II.1.1,Corrientes,AR-W,annual,2011,gas oil combustion consumption by to the public,194.47008,TJ,CH4,3.9,kg/TJ,758.433312,kg +96e5f8d0-d6cc-3d0b-9899-cf07ad95f5e6,SESCO,II.1.1,Corrientes,AR-W,annual,2011,gas oil combustion consumption by to the public,194.47008,TJ,N2O,3.9,kg/TJ,758.433312,kg +7e4c9a79-acf9-328b-b778-f14e0641191d,SESCO,II.1.1,Córdoba,AR-X,annual,2011,gas oil combustion consumption by to the public,1213.19856,TJ,CO2,74100.0,kg/TJ,89898013.296,kg +1395691b-3f12-35e8-a4d6-a5961ea82c56,SESCO,II.1.1,Córdoba,AR-X,annual,2011,gas oil combustion consumption by to the public,1213.19856,TJ,CH4,3.9,kg/TJ,4731.474384,kg +1395691b-3f12-35e8-a4d6-a5961ea82c56,SESCO,II.1.1,Córdoba,AR-X,annual,2011,gas oil combustion consumption by to the public,1213.19856,TJ,N2O,3.9,kg/TJ,4731.474384,kg +6d616513-9b91-3604-8fb2-286389824a1d,SESCO,II.1.1,Entre Rios,AR-E,annual,2011,gas oil combustion consumption by to the public,658.1064,TJ,CO2,74100.0,kg/TJ,48765684.24,kg +c9c2ad9c-c898-333e-9f68-20f67411b332,SESCO,II.1.1,Entre Rios,AR-E,annual,2011,gas oil combustion consumption by to the public,658.1064,TJ,CH4,3.9,kg/TJ,2566.61496,kg +c9c2ad9c-c898-333e-9f68-20f67411b332,SESCO,II.1.1,Entre Rios,AR-E,annual,2011,gas oil combustion consumption by to the public,658.1064,TJ,N2O,3.9,kg/TJ,2566.61496,kg +72c21aa9-2e02-3021-89de-e38c0f0e941b,SESCO,II.1.1,Formosa,AR-P,annual,2011,gas oil combustion consumption by to the public,73.97376,TJ,CO2,74100.0,kg/TJ,5481455.615999999,kg +e5b8b5f3-808a-3b32-b817-c6f3116d6be1,SESCO,II.1.1,Formosa,AR-P,annual,2011,gas oil combustion consumption by to the public,73.97376,TJ,CH4,3.9,kg/TJ,288.497664,kg +e5b8b5f3-808a-3b32-b817-c6f3116d6be1,SESCO,II.1.1,Formosa,AR-P,annual,2011,gas oil combustion consumption by to the public,73.97376,TJ,N2O,3.9,kg/TJ,288.497664,kg +0dd01e95-96de-3f83-9ba5-f1b66a3f0398,SESCO,II.1.1,Jujuy,AR-Y,annual,2011,gas oil combustion consumption by to the public,62.307,TJ,CO2,74100.0,kg/TJ,4616948.7,kg +6ec9a4de-f8fc-3406-88ae-6d3d81591a7d,SESCO,II.1.1,Jujuy,AR-Y,annual,2011,gas oil combustion consumption by to the public,62.307,TJ,CH4,3.9,kg/TJ,242.9973,kg +6ec9a4de-f8fc-3406-88ae-6d3d81591a7d,SESCO,II.1.1,Jujuy,AR-Y,annual,2011,gas oil combustion consumption by to the public,62.307,TJ,N2O,3.9,kg/TJ,242.9973,kg +ae93fd10-9960-3088-9ad8-2b40be73a909,SESCO,II.1.1,La Pampa,AR-L,annual,2011,gas oil combustion consumption by to the public,180.2388,TJ,CO2,74100.0,kg/TJ,13355695.08,kg +399dfaf4-7469-378d-980a-fe0419de0d1b,SESCO,II.1.1,La Pampa,AR-L,annual,2011,gas oil combustion consumption by to the public,180.2388,TJ,CH4,3.9,kg/TJ,702.93132,kg +399dfaf4-7469-378d-980a-fe0419de0d1b,SESCO,II.1.1,La Pampa,AR-L,annual,2011,gas oil combustion consumption by to the public,180.2388,TJ,N2O,3.9,kg/TJ,702.93132,kg +a00b8ed4-5e92-33a1-b5c5-ca8bef66b05c,SESCO,II.1.1,La Rioja,AR-F,annual,2011,gas oil combustion consumption by to the public,82.3536,TJ,CO2,74100.0,kg/TJ,6102401.76,kg +2f0f4946-e7d4-3a81-bb88-22a1aaca2407,SESCO,II.1.1,La Rioja,AR-F,annual,2011,gas oil combustion consumption by to the public,82.3536,TJ,CH4,3.9,kg/TJ,321.17904,kg +2f0f4946-e7d4-3a81-bb88-22a1aaca2407,SESCO,II.1.1,La Rioja,AR-F,annual,2011,gas oil combustion consumption by to the public,82.3536,TJ,N2O,3.9,kg/TJ,321.17904,kg +4c9e06e4-d552-34c9-af3b-b7053c308078,SESCO,II.1.1,Mendoza,AR-M,annual,2011,gas oil combustion consumption by to the public,336.9996,TJ,CO2,74100.0,kg/TJ,24971670.36,kg +e1e32b32-d187-36b8-8f49-995b7609e05a,SESCO,II.1.1,Mendoza,AR-M,annual,2011,gas oil combustion consumption by to the public,336.9996,TJ,CH4,3.9,kg/TJ,1314.29844,kg +e1e32b32-d187-36b8-8f49-995b7609e05a,SESCO,II.1.1,Mendoza,AR-M,annual,2011,gas oil combustion consumption by to the public,336.9996,TJ,N2O,3.9,kg/TJ,1314.29844,kg +2e8e54ef-8871-322a-90bc-ec645f3d8483,SESCO,II.1.1,Misiones,AR-N,annual,2011,gas oil combustion consumption by to the public,236.33316,TJ,CO2,74100.0,kg/TJ,17512287.156,kg +84314516-3644-3496-a999-1b2ce1e00340,SESCO,II.1.1,Misiones,AR-N,annual,2011,gas oil combustion consumption by to the public,236.33316,TJ,CH4,3.9,kg/TJ,921.6993239999999,kg +84314516-3644-3496-a999-1b2ce1e00340,SESCO,II.1.1,Misiones,AR-N,annual,2011,gas oil combustion consumption by to the public,236.33316,TJ,N2O,3.9,kg/TJ,921.6993239999999,kg +13365b84-c085-35ef-ae2b-30cfa29e7bf6,SESCO,II.1.1,Neuquén,AR-Q,annual,2011,gas oil combustion consumption by to the public,80.25864,TJ,CO2,74100.0,kg/TJ,5947165.224,kg +f950dce1-7fd0-3c84-8a1e-5a8336c08514,SESCO,II.1.1,Neuquén,AR-Q,annual,2011,gas oil combustion consumption by to the public,80.25864,TJ,CH4,3.9,kg/TJ,313.008696,kg +f950dce1-7fd0-3c84-8a1e-5a8336c08514,SESCO,II.1.1,Neuquén,AR-Q,annual,2011,gas oil combustion consumption by to the public,80.25864,TJ,N2O,3.9,kg/TJ,313.008696,kg +711961d7-c1aa-33e7-b2ea-24f332a0e1a2,SESCO,II.1.1,Rio Negro,AR-R,annual,2011,gas oil combustion consumption by to the public,111.7914,TJ,CO2,74100.0,kg/TJ,8283742.739999999,kg +9b4a6d8a-135d-3d73-bd7e-146b92f01759,SESCO,II.1.1,Rio Negro,AR-R,annual,2011,gas oil combustion consumption by to the public,111.7914,TJ,CH4,3.9,kg/TJ,435.98645999999997,kg +9b4a6d8a-135d-3d73-bd7e-146b92f01759,SESCO,II.1.1,Rio Negro,AR-R,annual,2011,gas oil combustion consumption by to the public,111.7914,TJ,N2O,3.9,kg/TJ,435.98645999999997,kg +63e2041c-71e7-3a3f-9094-f9dc0c57bf4d,SESCO,II.1.1,Salta,AR-A,annual,2011,gas oil combustion consumption by to the public,93.26183999999999,TJ,CO2,74100.0,kg/TJ,6910702.344,kg +a6dfb5af-eaf5-35e5-8ff0-0a6be5bccdd4,SESCO,II.1.1,Salta,AR-A,annual,2011,gas oil combustion consumption by to the public,93.26183999999999,TJ,CH4,3.9,kg/TJ,363.72117599999996,kg +a6dfb5af-eaf5-35e5-8ff0-0a6be5bccdd4,SESCO,II.1.1,Salta,AR-A,annual,2011,gas oil combustion consumption by to the public,93.26183999999999,TJ,N2O,3.9,kg/TJ,363.72117599999996,kg +19324488-54ad-3a9a-91c1-0e724cc342ad,SESCO,II.1.1,San Juan,AR-J,annual,2011,gas oil combustion consumption by to the public,56.74452,TJ,CO2,74100.0,kg/TJ,4204768.932,kg +721a37f3-9d67-3dc7-950d-3cf3308fc3db,SESCO,II.1.1,San Juan,AR-J,annual,2011,gas oil combustion consumption by to the public,56.74452,TJ,CH4,3.9,kg/TJ,221.303628,kg +721a37f3-9d67-3dc7-950d-3cf3308fc3db,SESCO,II.1.1,San Juan,AR-J,annual,2011,gas oil combustion consumption by to the public,56.74452,TJ,N2O,3.9,kg/TJ,221.303628,kg +dc0cb924-32bd-3e5e-9e7d-32c630e59894,SESCO,II.1.1,San Luis,AR-D,annual,2011,gas oil combustion consumption by to the public,8.488199999999999,TJ,CO2,74100.0,kg/TJ,628975.6199999999,kg +54882168-5256-358c-bb33-0ee17d97711c,SESCO,II.1.1,San Luis,AR-D,annual,2011,gas oil combustion consumption by to the public,8.488199999999999,TJ,CH4,3.9,kg/TJ,33.10397999999999,kg +54882168-5256-358c-bb33-0ee17d97711c,SESCO,II.1.1,San Luis,AR-D,annual,2011,gas oil combustion consumption by to the public,8.488199999999999,TJ,N2O,3.9,kg/TJ,33.10397999999999,kg +f960dd20-c449-3b11-a7ca-f9dc06f55995,SESCO,II.1.1,Santa Fe,AR-S,annual,2011,gas oil combustion consumption by to the public,1496.34324,TJ,CO2,74100.0,kg/TJ,110879034.08399999,kg +c71948db-7afe-3d8a-82b5-8e95be359298,SESCO,II.1.1,Santa Fe,AR-S,annual,2011,gas oil combustion consumption by to the public,1496.34324,TJ,CH4,3.9,kg/TJ,5835.738635999999,kg +c71948db-7afe-3d8a-82b5-8e95be359298,SESCO,II.1.1,Santa Fe,AR-S,annual,2011,gas oil combustion consumption by to the public,1496.34324,TJ,N2O,3.9,kg/TJ,5835.738635999999,kg +bfca9ca7-3ac3-3673-942d-71796cf1a0aa,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2011,gas oil combustion consumption by to the public,122.59128,TJ,CO2,74100.0,kg/TJ,9084013.848,kg +41cb25ac-bd1e-34f4-b1f4-2421cf09d6ec,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2011,gas oil combustion consumption by to the public,122.59128,TJ,CH4,3.9,kg/TJ,478.10599199999996,kg +41cb25ac-bd1e-34f4-b1f4-2421cf09d6ec,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2011,gas oil combustion consumption by to the public,122.59128,TJ,N2O,3.9,kg/TJ,478.10599199999996,kg +c951cef6-9e65-3b38-8e42-d1fda0a3e4be,SESCO,II.1.1,Tucuman,AR-T,annual,2011,gas oil combustion consumption by to the public,200.71884,TJ,CO2,74100.0,kg/TJ,14873266.044,kg +15d362fa-7789-3164-8aa2-e4ae96a0f910,SESCO,II.1.1,Tucuman,AR-T,annual,2011,gas oil combustion consumption by to the public,200.71884,TJ,CH4,3.9,kg/TJ,782.8034759999999,kg +15d362fa-7789-3164-8aa2-e4ae96a0f910,SESCO,II.1.1,Tucuman,AR-T,annual,2011,gas oil combustion consumption by to the public,200.71884,TJ,N2O,3.9,kg/TJ,782.8034759999999,kg +ba209ed9-6276-3e56-bab3-7f9b1d9b47bc,SESCO,II.1.1,Buenos Aires,AR-B,annual,2011,jet kerosene combustion consumption by to the public,21.010603999999997,TJ,CO2,71500.0,kg/TJ,1502258.1859999998,kg +950a38cf-52c6-3189-8913-3775899adfc8,SESCO,II.1.1,Buenos Aires,AR-B,annual,2011,jet kerosene combustion consumption by to the public,21.010603999999997,TJ,CH4,0.5,kg/TJ,10.505301999999999,kg +e1c4174c-4443-381b-88bc-36990157247a,SESCO,II.1.1,Buenos Aires,AR-B,annual,2011,jet kerosene combustion consumption by to the public,21.010603999999997,TJ,N2O,2.0,kg/TJ,42.021207999999994,kg +e5b67e02-7507-3c2d-be14-cb39e5bd273d,SESCO,II.1.1,Chaco,AR-H,annual,2011,jet kerosene combustion consumption by to the public,0.9750429999999999,TJ,CO2,71500.0,kg/TJ,69715.57449999999,kg +d7c14ffe-92d9-3ea4-b623-9668e4864928,SESCO,II.1.1,Chaco,AR-H,annual,2011,jet kerosene combustion consumption by to the public,0.9750429999999999,TJ,CH4,0.5,kg/TJ,0.48752149999999994,kg +0abdc28e-beec-3697-8b42-13d5d839ec93,SESCO,II.1.1,Chaco,AR-H,annual,2011,jet kerosene combustion consumption by to the public,0.9750429999999999,TJ,N2O,2.0,kg/TJ,1.9500859999999998,kg +73539096-aa59-3a28-ac14-fa5ea3bb9e1d,SESCO,II.1.1,Córdoba,AR-X,annual,2011,jet kerosene combustion consumption by to the public,5.850257999999999,TJ,CO2,71500.0,kg/TJ,418293.4469999999,kg +0c84cd31-4614-37e6-baf2-bf3a91ef8287,SESCO,II.1.1,Córdoba,AR-X,annual,2011,jet kerosene combustion consumption by to the public,5.850257999999999,TJ,CH4,0.5,kg/TJ,2.9251289999999996,kg +9a2c1a03-4aa1-37e3-8896-e08fe568c7fb,SESCO,II.1.1,Córdoba,AR-X,annual,2011,jet kerosene combustion consumption by to the public,5.850257999999999,TJ,N2O,2.0,kg/TJ,11.700515999999999,kg +0887a69a-ebfd-3618-bbd0-cebaff61e041,SESCO,II.1.1,Entre Rios,AR-E,annual,2011,jet kerosene combustion consumption by to the public,2.9565819999999996,TJ,CO2,71500.0,kg/TJ,211395.61299999998,kg +dd2700f7-7c16-3988-af23-8701293991cf,SESCO,II.1.1,Entre Rios,AR-E,annual,2011,jet kerosene combustion consumption by to the public,2.9565819999999996,TJ,CH4,0.5,kg/TJ,1.4782909999999998,kg +5eb40e3e-c027-3871-a2dc-29e051854b07,SESCO,II.1.1,Entre Rios,AR-E,annual,2011,jet kerosene combustion consumption by to the public,2.9565819999999996,TJ,N2O,2.0,kg/TJ,5.913163999999999,kg +7400d741-6575-3208-a7b2-448c970e44c0,SESCO,II.1.1,La Pampa,AR-L,annual,2011,jet kerosene combustion consumption by to the public,0.31453,TJ,CO2,71500.0,kg/TJ,22488.894999999997,kg +16138a70-d97f-3afc-8e85-635807023d2d,SESCO,II.1.1,La Pampa,AR-L,annual,2011,jet kerosene combustion consumption by to the public,0.31453,TJ,CH4,0.5,kg/TJ,0.157265,kg +7eaa4603-0185-318f-81cd-6f5bffb49759,SESCO,II.1.1,La Pampa,AR-L,annual,2011,jet kerosene combustion consumption by to the public,0.31453,TJ,N2O,2.0,kg/TJ,0.62906,kg +28f2945b-c4fa-3b87-b77c-92a7f6e1c9b2,SESCO,II.1.1,Mendoza,AR-M,annual,2011,jet kerosene combustion consumption by to the public,1.8242739999999997,TJ,CO2,71500.0,kg/TJ,130435.59099999999,kg +f51eddd4-eea6-37da-ba7b-00031d66eeae,SESCO,II.1.1,Mendoza,AR-M,annual,2011,jet kerosene combustion consumption by to the public,1.8242739999999997,TJ,CH4,0.5,kg/TJ,0.9121369999999999,kg +a36edcf7-c69d-346c-a581-1869cb00ced7,SESCO,II.1.1,Mendoza,AR-M,annual,2011,jet kerosene combustion consumption by to the public,1.8242739999999997,TJ,N2O,2.0,kg/TJ,3.6485479999999995,kg +e5e9467b-b30a-3575-9036-9f27ad69245b,SESCO,II.1.1,Santa Fe,AR-S,annual,2011,jet kerosene combustion consumption by to the public,2.0758979999999996,TJ,CO2,71500.0,kg/TJ,148426.70699999997,kg +70dac4f1-5206-3c84-8861-75b6fdc84691,SESCO,II.1.1,Santa Fe,AR-S,annual,2011,jet kerosene combustion consumption by to the public,2.0758979999999996,TJ,CH4,0.5,kg/TJ,1.0379489999999998,kg +c2bb96a8-649e-3752-9e6d-804bbdce99fb,SESCO,II.1.1,Santa Fe,AR-S,annual,2011,jet kerosene combustion consumption by to the public,2.0758979999999996,TJ,N2O,2.0,kg/TJ,4.151795999999999,kg +c2a75594-d16f-38b8-bc01-588c20324ede,SESCO,I.3.1,Buenos Aires,AR-B,annual,2011,gasoline combustion consumption by petrochemical industries,74.9113,TJ,CO2,69300.0,kg/TJ,5191353.09,kg +0560ef28-52c5-3a8a-b1cc-bf3885c9afa1,SESCO,I.3.1,Buenos Aires,AR-B,annual,2011,gasoline combustion consumption by petrochemical industries,74.9113,TJ,CH4,33.0,kg/TJ,2472.0729,kg +2d15e347-a05d-317b-af81-14357cba3d06,SESCO,I.3.1,Buenos Aires,AR-B,annual,2011,gasoline combustion consumption by petrochemical industries,74.9113,TJ,N2O,3.2,kg/TJ,239.71616,kg +46f5160d-9457-38c3-87d8-ec2203319c46,SESCO,I.3.1,Capital Federal,AR-C,annual,2011,gas oil combustion consumption by petrochemical industries,2.3478,TJ,CO2,74100.0,kg/TJ,173971.97999999998,kg +2e321b8f-16a9-35a3-9dd6-fb915fb3974f,SESCO,I.3.1,Capital Federal,AR-C,annual,2011,gas oil combustion consumption by petrochemical industries,2.3478,TJ,CH4,3.9,kg/TJ,9.156419999999999,kg +2e321b8f-16a9-35a3-9dd6-fb915fb3974f,SESCO,I.3.1,Capital Federal,AR-C,annual,2011,gas oil combustion consumption by petrochemical industries,2.3478,TJ,N2O,3.9,kg/TJ,9.156419999999999,kg +690a0056-e364-362f-a5bb-0b49fb76889f,SESCO,II.2.1,Buenos Aires,AR-B,annual,2011,gas oil combustion consumption by railway transport,387.24252,TJ,CO2,74100.0,kg/TJ,28694670.732,kg +8213aeca-14fb-3682-a754-27ebfe96aae1,SESCO,II.2.1,Buenos Aires,AR-B,annual,2011,gas oil combustion consumption by railway transport,387.24252,TJ,CH4,3.9,kg/TJ,1510.245828,kg +8213aeca-14fb-3682-a754-27ebfe96aae1,SESCO,II.2.1,Buenos Aires,AR-B,annual,2011,gas oil combustion consumption by railway transport,387.24252,TJ,N2O,3.9,kg/TJ,1510.245828,kg +e5fff69d-79ac-3961-bb3c-b59f3ed37b3f,SESCO,II.2.1,Capital Federal,AR-C,annual,2011,gas oil combustion consumption by railway transport,2252.15424,TJ,CO2,74100.0,kg/TJ,166884629.184,kg +29528a8e-74a4-3d21-89d9-bd9910b7b8d6,SESCO,II.2.1,Capital Federal,AR-C,annual,2011,gas oil combustion consumption by railway transport,2252.15424,TJ,CH4,3.9,kg/TJ,8783.401536,kg +29528a8e-74a4-3d21-89d9-bd9910b7b8d6,SESCO,II.2.1,Capital Federal,AR-C,annual,2011,gas oil combustion consumption by railway transport,2252.15424,TJ,N2O,3.9,kg/TJ,8783.401536,kg +85633c98-a905-3c3f-b9a4-73c8c84ea327,SESCO,II.2.1,Santa Fe,AR-S,annual,2011,gas oil combustion consumption by railway transport,317.71152,TJ,CO2,74100.0,kg/TJ,23542423.632,kg +f1638e3f-3898-38ed-9135-024886821f03,SESCO,II.2.1,Santa Fe,AR-S,annual,2011,gas oil combustion consumption by railway transport,317.71152,TJ,CH4,3.9,kg/TJ,1239.074928,kg +f1638e3f-3898-38ed-9135-024886821f03,SESCO,II.2.1,Santa Fe,AR-S,annual,2011,gas oil combustion consumption by railway transport,317.71152,TJ,N2O,3.9,kg/TJ,1239.074928,kg +9d20fe4c-e425-3dbd-8077-7c29f00ce4c3,SESCO,II.2.1,Capital Federal,AR-C,annual,2011,gas oil combustion consumption by railway transport,0.5418,TJ,CO2,74100.0,kg/TJ,40147.38,kg +0458878e-61ca-3248-af7b-f874e8e1fe8a,SESCO,II.2.1,Capital Federal,AR-C,annual,2011,gas oil combustion consumption by railway transport,0.5418,TJ,CH4,3.9,kg/TJ,2.1130199999999997,kg +0458878e-61ca-3248-af7b-f874e8e1fe8a,SESCO,II.2.1,Capital Federal,AR-C,annual,2011,gas oil combustion consumption by railway transport,0.5418,TJ,N2O,3.9,kg/TJ,2.1130199999999997,kg +e9ecf68e-bafd-3eaa-92dc-c185f502e256,SESCO,II.1.1,Buenos Aires,AR-B,annual,2011,gasoline combustion consumption by freight transport,5.6704,TJ,CO2,69300.0,kg/TJ,392958.72,kg +d36cb0c4-2d13-3562-9987-52e7bcb90641,SESCO,II.1.1,Buenos Aires,AR-B,annual,2011,gasoline combustion consumption by freight transport,5.6704,TJ,CH4,33.0,kg/TJ,187.1232,kg +5d82299b-7bc6-3f9d-99bb-abc35f05b2e9,SESCO,II.1.1,Buenos Aires,AR-B,annual,2011,gasoline combustion consumption by freight transport,5.6704,TJ,N2O,3.2,kg/TJ,18.14528,kg +ce425ff8-ad91-3169-bba9-2f469cfbecf0,SESCO,II.1.1,Capital Federal,AR-C,annual,2011,gasoline combustion consumption by freight transport,5.8476,TJ,CO2,69300.0,kg/TJ,405238.68,kg +197f1b6f-e53b-307c-a74d-f02a9a849ebe,SESCO,II.1.1,Capital Federal,AR-C,annual,2011,gasoline combustion consumption by freight transport,5.8476,TJ,CH4,33.0,kg/TJ,192.9708,kg +ea2706e7-f02c-31fb-9c2c-c35e5b94fbe3,SESCO,II.1.1,Capital Federal,AR-C,annual,2011,gasoline combustion consumption by freight transport,5.8476,TJ,N2O,3.2,kg/TJ,18.712320000000002,kg +5c5cf758-2567-36f4-b36e-3adf7d5bcbb4,SESCO,II.1.1,Buenos Aires,AR-B,annual,2011,gas oil combustion consumption by freight transport,1015.40544,TJ,CO2,74100.0,kg/TJ,75241543.104,kg +afa6669b-4a47-3310-af80-1a2db5522187,SESCO,II.1.1,Buenos Aires,AR-B,annual,2011,gas oil combustion consumption by freight transport,1015.40544,TJ,CH4,3.9,kg/TJ,3960.081216,kg +afa6669b-4a47-3310-af80-1a2db5522187,SESCO,II.1.1,Buenos Aires,AR-B,annual,2011,gas oil combustion consumption by freight transport,1015.40544,TJ,N2O,3.9,kg/TJ,3960.081216,kg +22ba7e17-7555-30cb-b3e4-bd9c2ce1ebfd,SESCO,II.1.1,Capital Federal,AR-C,annual,2011,gas oil combustion consumption by freight transport,362.78928,TJ,CO2,74100.0,kg/TJ,26882685.648000002,kg +c7cbe9a7-2b18-3797-98c0-8b4dce3a698b,SESCO,II.1.1,Capital Federal,AR-C,annual,2011,gas oil combustion consumption by freight transport,362.78928,TJ,CH4,3.9,kg/TJ,1414.8781920000001,kg +c7cbe9a7-2b18-3797-98c0-8b4dce3a698b,SESCO,II.1.1,Capital Federal,AR-C,annual,2011,gas oil combustion consumption by freight transport,362.78928,TJ,N2O,3.9,kg/TJ,1414.8781920000001,kg +cb5f3107-29ae-345a-87c8-ead06de6f3a1,SESCO,II.1.1,Corrientes,AR-W,annual,2011,gas oil combustion consumption by freight transport,0.39732,TJ,CO2,74100.0,kg/TJ,29441.412,kg +ce536de0-e32d-3279-afe4-6a9a9bff6bf3,SESCO,II.1.1,Corrientes,AR-W,annual,2011,gas oil combustion consumption by freight transport,0.39732,TJ,CH4,3.9,kg/TJ,1.549548,kg +ce536de0-e32d-3279-afe4-6a9a9bff6bf3,SESCO,II.1.1,Corrientes,AR-W,annual,2011,gas oil combustion consumption by freight transport,0.39732,TJ,N2O,3.9,kg/TJ,1.549548,kg +970d4d9f-806b-3e64-98c3-e5bd48ec0a1c,SESCO,II.1.1,Córdoba,AR-X,annual,2011,gas oil combustion consumption by freight transport,200.8272,TJ,CO2,74100.0,kg/TJ,14881295.52,kg +0856219d-7a5c-35c5-bcf1-5b4e2c0466bb,SESCO,II.1.1,Córdoba,AR-X,annual,2011,gas oil combustion consumption by freight transport,200.8272,TJ,CH4,3.9,kg/TJ,783.22608,kg +0856219d-7a5c-35c5-bcf1-5b4e2c0466bb,SESCO,II.1.1,Córdoba,AR-X,annual,2011,gas oil combustion consumption by freight transport,200.8272,TJ,N2O,3.9,kg/TJ,783.22608,kg +a54cee9d-f2e5-3d91-9130-467b0d192a5b,SESCO,II.1.1,Entre Rios,AR-E,annual,2011,gas oil combustion consumption by freight transport,9.82464,TJ,CO2,74100.0,kg/TJ,728005.824,kg +7647d4dc-d744-3a53-a27c-5c5c3d190c27,SESCO,II.1.1,Entre Rios,AR-E,annual,2011,gas oil combustion consumption by freight transport,9.82464,TJ,CH4,3.9,kg/TJ,38.316096,kg +7647d4dc-d744-3a53-a27c-5c5c3d190c27,SESCO,II.1.1,Entre Rios,AR-E,annual,2011,gas oil combustion consumption by freight transport,9.82464,TJ,N2O,3.9,kg/TJ,38.316096,kg +162b8986-906a-3d52-8c73-916e6ba90789,SESCO,II.1.1,Santa Fe,AR-S,annual,2011,gas oil combustion consumption by freight transport,25.93416,TJ,CO2,74100.0,kg/TJ,1921721.2559999998,kg +f1729af7-dc75-38af-8802-302d7d99fc36,SESCO,II.1.1,Santa Fe,AR-S,annual,2011,gas oil combustion consumption by freight transport,25.93416,TJ,CH4,3.9,kg/TJ,101.14322399999999,kg +f1729af7-dc75-38af-8802-302d7d99fc36,SESCO,II.1.1,Santa Fe,AR-S,annual,2011,gas oil combustion consumption by freight transport,25.93416,TJ,N2O,3.9,kg/TJ,101.14322399999999,kg +a5d45857-5023-3f59-9e69-a22beb353e63,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2011,gas oil combustion consumption by freight transport,6.1404,TJ,CO2,74100.0,kg/TJ,455003.63999999996,kg +1464dfd3-3e6c-30a2-b54f-7524a0541d96,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2011,gas oil combustion consumption by freight transport,6.1404,TJ,CH4,3.9,kg/TJ,23.94756,kg +1464dfd3-3e6c-30a2-b54f-7524a0541d96,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2011,gas oil combustion consumption by freight transport,6.1404,TJ,N2O,3.9,kg/TJ,23.94756,kg +62252673-914d-3820-beb4-736c6074fa95,SESCO,II.1.1,Buenos Aires,AR-B,annual,2011,gas oil combustion consumption by public passenger transport,4982.9346,TJ,CO2,74100.0,kg/TJ,369235453.85999995,kg +2e3234ce-5c11-3176-8d52-9c7240479ea9,SESCO,II.1.1,Buenos Aires,AR-B,annual,2011,gas oil combustion consumption by public passenger transport,4982.9346,TJ,CH4,3.9,kg/TJ,19433.444939999998,kg +2e3234ce-5c11-3176-8d52-9c7240479ea9,SESCO,II.1.1,Buenos Aires,AR-B,annual,2011,gas oil combustion consumption by public passenger transport,4982.9346,TJ,N2O,3.9,kg/TJ,19433.444939999998,kg +87806fa5-d98e-3887-a189-ecd9374d3239,SESCO,II.1.1,Capital Federal,AR-C,annual,2011,gas oil combustion consumption by public passenger transport,654.92784,TJ,CO2,74100.0,kg/TJ,48530152.944,kg +67cf2e69-f8a8-3b76-9aaf-263a1c671726,SESCO,II.1.1,Capital Federal,AR-C,annual,2011,gas oil combustion consumption by public passenger transport,654.92784,TJ,CH4,3.9,kg/TJ,2554.2185759999998,kg +67cf2e69-f8a8-3b76-9aaf-263a1c671726,SESCO,II.1.1,Capital Federal,AR-C,annual,2011,gas oil combustion consumption by public passenger transport,654.92784,TJ,N2O,3.9,kg/TJ,2554.2185759999998,kg +4adeaeb6-79d6-34fe-834d-a8881d563594,SESCO,II.1.1,Córdoba,AR-X,annual,2011,gas oil combustion consumption by public passenger transport,12.930959999999999,TJ,CO2,74100.0,kg/TJ,958184.1359999999,kg +bb471230-168a-3e80-9e06-7cabc91f73c4,SESCO,II.1.1,Córdoba,AR-X,annual,2011,gas oil combustion consumption by public passenger transport,12.930959999999999,TJ,CH4,3.9,kg/TJ,50.430744,kg +bb471230-168a-3e80-9e06-7cabc91f73c4,SESCO,II.1.1,Córdoba,AR-X,annual,2011,gas oil combustion consumption by public passenger transport,12.930959999999999,TJ,N2O,3.9,kg/TJ,50.430744,kg +4e88f941-3174-3892-ac5d-c1b22f32635d,SESCO,II.1.1,Misiones,AR-N,annual,2011,gas oil combustion consumption by public passenger transport,18.63792,TJ,CO2,74100.0,kg/TJ,1381069.872,kg +11433101-f0b6-36ec-b730-5f0ea490bc8a,SESCO,II.1.1,Misiones,AR-N,annual,2011,gas oil combustion consumption by public passenger transport,18.63792,TJ,CH4,3.9,kg/TJ,72.687888,kg +11433101-f0b6-36ec-b730-5f0ea490bc8a,SESCO,II.1.1,Misiones,AR-N,annual,2011,gas oil combustion consumption by public passenger transport,18.63792,TJ,N2O,3.9,kg/TJ,72.687888,kg +7b76be45-4207-31b9-86ab-421ea7773348,SESCO,II.5.1,Buenos Aires,AR-B,annual,2011,gasoline combustion consumption by agriculture machines,27.333099999999998,TJ,CO2,69300.0,kg/TJ,1894183.8299999998,kg +2c675b5c-8a82-3ff7-8798-4f442fd1eac4,SESCO,II.5.1,Buenos Aires,AR-B,annual,2011,gasoline combustion consumption by agriculture machines,27.333099999999998,TJ,CH4,33.0,kg/TJ,901.9922999999999,kg +add48363-0a8a-357a-a367-33276dbd5bf7,SESCO,II.5.1,Buenos Aires,AR-B,annual,2011,gasoline combustion consumption by agriculture machines,27.333099999999998,TJ,N2O,3.2,kg/TJ,87.46592,kg +a0c545bb-6a9d-3241-bd7c-19ba2a61dfc1,SESCO,II.5.1,La Pampa,AR-L,annual,2011,gasoline combustion consumption by agriculture machines,1.1518,TJ,CO2,69300.0,kg/TJ,79819.73999999999,kg +1d9771a7-bc96-3308-a489-6c0159f30e60,SESCO,II.5.1,La Pampa,AR-L,annual,2011,gasoline combustion consumption by agriculture machines,1.1518,TJ,CH4,33.0,kg/TJ,38.0094,kg +80d93d03-4d5b-3f88-a303-35b2eec299da,SESCO,II.5.1,La Pampa,AR-L,annual,2011,gasoline combustion consumption by agriculture machines,1.1518,TJ,N2O,3.2,kg/TJ,3.68576,kg +4d809d0b-00a3-35c8-977b-89f2c3986d86,SESCO,II.5.1,Salta,AR-A,annual,2011,gasoline combustion consumption by agriculture machines,9.0372,TJ,CO2,69300.0,kg/TJ,626277.9600000001,kg +ccb10a74-9b3e-33a1-ba29-8cfcf9dab886,SESCO,II.5.1,Salta,AR-A,annual,2011,gasoline combustion consumption by agriculture machines,9.0372,TJ,CH4,33.0,kg/TJ,298.2276,kg +f867804f-9921-3a51-a661-bdf25f818f40,SESCO,II.5.1,Salta,AR-A,annual,2011,gasoline combustion consumption by agriculture machines,9.0372,TJ,N2O,3.2,kg/TJ,28.919040000000003,kg +f22272f8-9ac9-3bcf-9b41-ccc8e3478ab9,SESCO,II.5.1,Buenos Aires,AR-B,annual,2011,gas oil combustion consumption by agriculture machines,10858.17768,TJ,CO2,74100.0,kg/TJ,804590966.088,kg +397846b1-932a-3a66-b2e6-f7e0dfaa484e,SESCO,II.5.1,Buenos Aires,AR-B,annual,2011,gas oil combustion consumption by agriculture machines,10858.17768,TJ,CH4,3.9,kg/TJ,42346.892952,kg +397846b1-932a-3a66-b2e6-f7e0dfaa484e,SESCO,II.5.1,Buenos Aires,AR-B,annual,2011,gas oil combustion consumption by agriculture machines,10858.17768,TJ,N2O,3.9,kg/TJ,42346.892952,kg +57a6f1f4-cf18-351d-8db6-f2b000f8d4d8,SESCO,II.5.1,Capital Federal,AR-C,annual,2011,gas oil combustion consumption by agriculture machines,44.57208,TJ,CO2,74100.0,kg/TJ,3302791.128,kg +0f4b578c-f36c-3d4d-88dd-16d6268731fd,SESCO,II.5.1,Capital Federal,AR-C,annual,2011,gas oil combustion consumption by agriculture machines,44.57208,TJ,CH4,3.9,kg/TJ,173.831112,kg +0f4b578c-f36c-3d4d-88dd-16d6268731fd,SESCO,II.5.1,Capital Federal,AR-C,annual,2011,gas oil combustion consumption by agriculture machines,44.57208,TJ,N2O,3.9,kg/TJ,173.831112,kg +a34c5134-0be8-3440-a349-4779744d684c,SESCO,II.5.1,Catamarca,AR-K,annual,2011,gas oil combustion consumption by agriculture machines,143.46864,TJ,CO2,74100.0,kg/TJ,10631026.224,kg +e4a83d71-e36f-3f58-a348-d0ca7cf7a96a,SESCO,II.5.1,Catamarca,AR-K,annual,2011,gas oil combustion consumption by agriculture machines,143.46864,TJ,CH4,3.9,kg/TJ,559.527696,kg +e4a83d71-e36f-3f58-a348-d0ca7cf7a96a,SESCO,II.5.1,Catamarca,AR-K,annual,2011,gas oil combustion consumption by agriculture machines,143.46864,TJ,N2O,3.9,kg/TJ,559.527696,kg +dd9184bd-678d-34fc-8449-8fb18e6b2364,SESCO,II.5.1,Chaco,AR-H,annual,2011,gas oil combustion consumption by agriculture machines,1360.8932399999999,TJ,CO2,74100.0,kg/TJ,100842189.08399999,kg +e6996bda-79dd-3e0e-a051-b187aec4f1fe,SESCO,II.5.1,Chaco,AR-H,annual,2011,gas oil combustion consumption by agriculture machines,1360.8932399999999,TJ,CH4,3.9,kg/TJ,5307.483635999999,kg +e6996bda-79dd-3e0e-a051-b187aec4f1fe,SESCO,II.5.1,Chaco,AR-H,annual,2011,gas oil combustion consumption by agriculture machines,1360.8932399999999,TJ,N2O,3.9,kg/TJ,5307.483635999999,kg +58583bcb-ce84-3f41-bb2b-b6ca4910df0e,SESCO,II.5.1,Corrientes,AR-W,annual,2011,gas oil combustion consumption by agriculture machines,418.66692,TJ,CO2,74100.0,kg/TJ,31023218.772,kg +4dd42e11-22e9-3c35-9d43-af95a2979e14,SESCO,II.5.1,Corrientes,AR-W,annual,2011,gas oil combustion consumption by agriculture machines,418.66692,TJ,CH4,3.9,kg/TJ,1632.800988,kg +4dd42e11-22e9-3c35-9d43-af95a2979e14,SESCO,II.5.1,Corrientes,AR-W,annual,2011,gas oil combustion consumption by agriculture machines,418.66692,TJ,N2O,3.9,kg/TJ,1632.800988,kg +08925eda-d7a3-39f2-b240-4f6bdd164bf5,SESCO,II.5.1,Córdoba,AR-X,annual,2011,gas oil combustion consumption by agriculture machines,8535.40884,TJ,CO2,74100.0,kg/TJ,632473795.044,kg +ba19581b-dae5-39b6-8752-a88d6bfa19a5,SESCO,II.5.1,Córdoba,AR-X,annual,2011,gas oil combustion consumption by agriculture machines,8535.40884,TJ,CH4,3.9,kg/TJ,33288.094476,kg +ba19581b-dae5-39b6-8752-a88d6bfa19a5,SESCO,II.5.1,Córdoba,AR-X,annual,2011,gas oil combustion consumption by agriculture machines,8535.40884,TJ,N2O,3.9,kg/TJ,33288.094476,kg +6053c758-7202-3617-aad5-f61301a4d638,SESCO,II.5.1,Entre Rios,AR-E,annual,2011,gas oil combustion consumption by agriculture machines,2520.70644,TJ,CO2,74100.0,kg/TJ,186784347.204,kg +25858783-a31f-3fc0-9553-7f11737ef3f1,SESCO,II.5.1,Entre Rios,AR-E,annual,2011,gas oil combustion consumption by agriculture machines,2520.70644,TJ,CH4,3.9,kg/TJ,9830.755116,kg +25858783-a31f-3fc0-9553-7f11737ef3f1,SESCO,II.5.1,Entre Rios,AR-E,annual,2011,gas oil combustion consumption by agriculture machines,2520.70644,TJ,N2O,3.9,kg/TJ,9830.755116,kg +9539952f-7b36-3cfb-8ce5-3d649d95b8b9,SESCO,II.5.1,Formosa,AR-P,annual,2011,gas oil combustion consumption by agriculture machines,333.42372,TJ,CO2,74100.0,kg/TJ,24706697.652,kg +f9c3f3b2-9747-3003-819e-5576e4bd7580,SESCO,II.5.1,Formosa,AR-P,annual,2011,gas oil combustion consumption by agriculture machines,333.42372,TJ,CH4,3.9,kg/TJ,1300.352508,kg +f9c3f3b2-9747-3003-819e-5576e4bd7580,SESCO,II.5.1,Formosa,AR-P,annual,2011,gas oil combustion consumption by agriculture machines,333.42372,TJ,N2O,3.9,kg/TJ,1300.352508,kg +a23a97a1-d558-3c52-8d0a-44e131795286,SESCO,II.5.1,Jujuy,AR-Y,annual,2011,gas oil combustion consumption by agriculture machines,944.10456,TJ,CO2,74100.0,kg/TJ,69958147.896,kg +cdfc0206-30e5-31d1-a0f4-a515d353c2ba,SESCO,II.5.1,Jujuy,AR-Y,annual,2011,gas oil combustion consumption by agriculture machines,944.10456,TJ,CH4,3.9,kg/TJ,3682.007784,kg +cdfc0206-30e5-31d1-a0f4-a515d353c2ba,SESCO,II.5.1,Jujuy,AR-Y,annual,2011,gas oil combustion consumption by agriculture machines,944.10456,TJ,N2O,3.9,kg/TJ,3682.007784,kg +06831ad6-582c-3599-9d6b-1916ae6d4ce7,SESCO,II.5.1,La Pampa,AR-L,annual,2011,gas oil combustion consumption by agriculture machines,2846.21988,TJ,CO2,74100.0,kg/TJ,210904893.108,kg +129451c5-5fb1-3025-8e2f-15ee6c7929c9,SESCO,II.5.1,La Pampa,AR-L,annual,2011,gas oil combustion consumption by agriculture machines,2846.21988,TJ,CH4,3.9,kg/TJ,11100.257532,kg +129451c5-5fb1-3025-8e2f-15ee6c7929c9,SESCO,II.5.1,La Pampa,AR-L,annual,2011,gas oil combustion consumption by agriculture machines,2846.21988,TJ,N2O,3.9,kg/TJ,11100.257532,kg +f59c58ea-34fb-301f-b037-e99f185aa9eb,SESCO,II.5.1,Mendoza,AR-M,annual,2011,gas oil combustion consumption by agriculture machines,477.79536,TJ,CO2,74100.0,kg/TJ,35404636.176,kg +0ea1df0f-a18d-338b-ab58-2c4418c2c77d,SESCO,II.5.1,Mendoza,AR-M,annual,2011,gas oil combustion consumption by agriculture machines,477.79536,TJ,CH4,3.9,kg/TJ,1863.401904,kg +0ea1df0f-a18d-338b-ab58-2c4418c2c77d,SESCO,II.5.1,Mendoza,AR-M,annual,2011,gas oil combustion consumption by agriculture machines,477.79536,TJ,N2O,3.9,kg/TJ,1863.401904,kg +663ea7a1-9824-3f2f-ab4c-2e9931d0ac3f,SESCO,II.5.1,Misiones,AR-N,annual,2011,gas oil combustion consumption by agriculture machines,845.46084,TJ,CO2,74100.0,kg/TJ,62648648.243999995,kg +7a556bfa-b68f-3fb5-aa32-9dd268df7e47,SESCO,II.5.1,Misiones,AR-N,annual,2011,gas oil combustion consumption by agriculture machines,845.46084,TJ,CH4,3.9,kg/TJ,3297.297276,kg +7a556bfa-b68f-3fb5-aa32-9dd268df7e47,SESCO,II.5.1,Misiones,AR-N,annual,2011,gas oil combustion consumption by agriculture machines,845.46084,TJ,N2O,3.9,kg/TJ,3297.297276,kg +0006136a-e871-3eca-a30b-6e313a9d8e6c,SESCO,II.5.1,Rio Negro,AR-R,annual,2011,gas oil combustion consumption by agriculture machines,199.88808,TJ,CO2,74100.0,kg/TJ,14811706.728,kg +22ba5aa0-34ed-3570-8ae7-8f1f63f693a0,SESCO,II.5.1,Rio Negro,AR-R,annual,2011,gas oil combustion consumption by agriculture machines,199.88808,TJ,CH4,3.9,kg/TJ,779.563512,kg +22ba5aa0-34ed-3570-8ae7-8f1f63f693a0,SESCO,II.5.1,Rio Negro,AR-R,annual,2011,gas oil combustion consumption by agriculture machines,199.88808,TJ,N2O,3.9,kg/TJ,779.563512,kg +0c9f04f8-f66a-3681-ae98-931e22332dc2,SESCO,II.5.1,Salta,AR-A,annual,2011,gas oil combustion consumption by agriculture machines,2341.479,TJ,CO2,74100.0,kg/TJ,173503593.89999998,kg +633e2f51-8d6d-32c2-a421-c9572bb25fa7,SESCO,II.5.1,Salta,AR-A,annual,2011,gas oil combustion consumption by agriculture machines,2341.479,TJ,CH4,3.9,kg/TJ,9131.7681,kg +633e2f51-8d6d-32c2-a421-c9572bb25fa7,SESCO,II.5.1,Salta,AR-A,annual,2011,gas oil combustion consumption by agriculture machines,2341.479,TJ,N2O,3.9,kg/TJ,9131.7681,kg +381890a2-cb41-36ed-92d5-cd8241cb10ec,SESCO,II.5.1,San Juan,AR-J,annual,2011,gas oil combustion consumption by agriculture machines,40.56276,TJ,CO2,74100.0,kg/TJ,3005700.516,kg +0aafefc2-d568-3f16-9e74-7b69bcbc0dac,SESCO,II.5.1,San Juan,AR-J,annual,2011,gas oil combustion consumption by agriculture machines,40.56276,TJ,CH4,3.9,kg/TJ,158.194764,kg +0aafefc2-d568-3f16-9e74-7b69bcbc0dac,SESCO,II.5.1,San Juan,AR-J,annual,2011,gas oil combustion consumption by agriculture machines,40.56276,TJ,N2O,3.9,kg/TJ,158.194764,kg +5c8e210b-1c1e-3ce2-a9f1-b142700bd156,SESCO,II.5.1,San Luis,AR-D,annual,2011,gas oil combustion consumption by agriculture machines,640.70580672,TJ,CO2,74100.0,kg/TJ,47476300.277952,kg +8bdc4459-f047-3cc0-9f95-26dc5ed1d672,SESCO,II.5.1,San Luis,AR-D,annual,2011,gas oil combustion consumption by agriculture machines,640.70580672,TJ,CH4,3.9,kg/TJ,2498.752646208,kg +8bdc4459-f047-3cc0-9f95-26dc5ed1d672,SESCO,II.5.1,San Luis,AR-D,annual,2011,gas oil combustion consumption by agriculture machines,640.70580672,TJ,N2O,3.9,kg/TJ,2498.752646208,kg +e167721a-740c-31d5-ae44-e3e0082af734,SESCO,II.5.1,Santa Fe,AR-S,annual,2011,gas oil combustion consumption by agriculture machines,7754.964,TJ,CO2,74100.0,kg/TJ,574642832.4,kg +d7bac018-c169-38ae-982a-6c1aca59cdbc,SESCO,II.5.1,Santa Fe,AR-S,annual,2011,gas oil combustion consumption by agriculture machines,7754.964,TJ,CH4,3.9,kg/TJ,30244.3596,kg +d7bac018-c169-38ae-982a-6c1aca59cdbc,SESCO,II.5.1,Santa Fe,AR-S,annual,2011,gas oil combustion consumption by agriculture machines,7754.964,TJ,N2O,3.9,kg/TJ,30244.3596,kg +f6cc134d-0f2e-3167-a428-9053aa146797,SESCO,II.5.1,Santiago del Estero,AR-G,annual,2011,gas oil combustion consumption by agriculture machines,1885.8252,TJ,CO2,74100.0,kg/TJ,139739647.32,kg +7bbd9d52-7695-3a41-8e5f-99c064f0b485,SESCO,II.5.1,Santiago del Estero,AR-G,annual,2011,gas oil combustion consumption by agriculture machines,1885.8252,TJ,CH4,3.9,kg/TJ,7354.71828,kg +7bbd9d52-7695-3a41-8e5f-99c064f0b485,SESCO,II.5.1,Santiago del Estero,AR-G,annual,2011,gas oil combustion consumption by agriculture machines,1885.8252,TJ,N2O,3.9,kg/TJ,7354.71828,kg +8bbe4f56-3c23-3367-81c0-7cebd9e8c5e3,SESCO,II.5.1,Tucuman,AR-T,annual,2011,gas oil combustion consumption by agriculture machines,1664.48184,TJ,CO2,74100.0,kg/TJ,123338104.344,kg +24cb669b-d4be-3fe4-8a0d-494820c98917,SESCO,II.5.1,Tucuman,AR-T,annual,2011,gas oil combustion consumption by agriculture machines,1664.48184,TJ,CH4,3.9,kg/TJ,6491.479176,kg +24cb669b-d4be-3fe4-8a0d-494820c98917,SESCO,II.5.1,Tucuman,AR-T,annual,2011,gas oil combustion consumption by agriculture machines,1664.48184,TJ,N2O,3.9,kg/TJ,6491.479176,kg +76d5af0e-67a7-3723-bb88-90f2e30ff2cd,SESCO,II.5.1,Buenos Aires,AR-B,annual,2011,gas oil combustion consumption by agriculture machines,39.9126,TJ,CO2,74100.0,kg/TJ,2957523.6599999997,kg +02de41da-bd36-3f6c-af98-de29c9952de7,SESCO,II.5.1,Buenos Aires,AR-B,annual,2011,gas oil combustion consumption by agriculture machines,39.9126,TJ,CH4,3.9,kg/TJ,155.65913999999998,kg +02de41da-bd36-3f6c-af98-de29c9952de7,SESCO,II.5.1,Buenos Aires,AR-B,annual,2011,gas oil combustion consumption by agriculture machines,39.9126,TJ,N2O,3.9,kg/TJ,155.65913999999998,kg +ed5efba0-778f-3b26-af2d-22efe0265797,SESCO,II.5.1,Chaco,AR-H,annual,2011,gas oil combustion consumption by agriculture machines,0.7223999999999999,TJ,CO2,74100.0,kg/TJ,53529.84,kg +ca12e847-7bd4-3d12-901f-712b448f3a97,SESCO,II.5.1,Chaco,AR-H,annual,2011,gas oil combustion consumption by agriculture machines,0.7223999999999999,TJ,CH4,3.9,kg/TJ,2.81736,kg +ca12e847-7bd4-3d12-901f-712b448f3a97,SESCO,II.5.1,Chaco,AR-H,annual,2011,gas oil combustion consumption by agriculture machines,0.7223999999999999,TJ,N2O,3.9,kg/TJ,2.81736,kg +7eeb371c-ca7a-3ca8-836c-26db52975e85,SESCO,II.5.1,Corrientes,AR-W,annual,2011,gas oil combustion consumption by agriculture machines,12.244679999999999,TJ,CO2,74100.0,kg/TJ,907330.788,kg +0df161fc-2881-3da3-b935-e00a007a0ecb,SESCO,II.5.1,Corrientes,AR-W,annual,2011,gas oil combustion consumption by agriculture machines,12.244679999999999,TJ,CH4,3.9,kg/TJ,47.754251999999994,kg +0df161fc-2881-3da3-b935-e00a007a0ecb,SESCO,II.5.1,Corrientes,AR-W,annual,2011,gas oil combustion consumption by agriculture machines,12.244679999999999,TJ,N2O,3.9,kg/TJ,47.754251999999994,kg +510f5af4-a7e4-37c3-a377-472ba4e7e9b0,SESCO,II.5.1,Córdoba,AR-X,annual,2011,gas oil combustion consumption by agriculture machines,6.53772,TJ,CO2,74100.0,kg/TJ,484445.052,kg +be60e047-7435-3dc8-8126-717e76390908,SESCO,II.5.1,Córdoba,AR-X,annual,2011,gas oil combustion consumption by agriculture machines,6.53772,TJ,CH4,3.9,kg/TJ,25.497108,kg +be60e047-7435-3dc8-8126-717e76390908,SESCO,II.5.1,Córdoba,AR-X,annual,2011,gas oil combustion consumption by agriculture machines,6.53772,TJ,N2O,3.9,kg/TJ,25.497108,kg +54766041-8b43-3d06-a614-4b96e3939867,SESCO,II.5.1,La Pampa,AR-L,annual,2011,gas oil combustion consumption by agriculture machines,19.10748,TJ,CO2,74100.0,kg/TJ,1415864.268,kg +7b5e8cf0-3c12-3110-9f97-33373c92ef88,SESCO,II.5.1,La Pampa,AR-L,annual,2011,gas oil combustion consumption by agriculture machines,19.10748,TJ,CH4,3.9,kg/TJ,74.519172,kg +7b5e8cf0-3c12-3110-9f97-33373c92ef88,SESCO,II.5.1,La Pampa,AR-L,annual,2011,gas oil combustion consumption by agriculture machines,19.10748,TJ,N2O,3.9,kg/TJ,74.519172,kg +1d76f53c-8ce4-3d8d-abe6-6458d43704d9,SESCO,II.5.1,Misiones,AR-N,annual,2011,gas oil combustion consumption by agriculture machines,26.40372,TJ,CO2,74100.0,kg/TJ,1956515.652,kg +c2be4756-73cf-3037-9b71-da9c22020d46,SESCO,II.5.1,Misiones,AR-N,annual,2011,gas oil combustion consumption by agriculture machines,26.40372,TJ,CH4,3.9,kg/TJ,102.974508,kg +c2be4756-73cf-3037-9b71-da9c22020d46,SESCO,II.5.1,Misiones,AR-N,annual,2011,gas oil combustion consumption by agriculture machines,26.40372,TJ,N2O,3.9,kg/TJ,102.974508,kg +36866b47-2b06-323a-9de5-357e6c42302a,SESCO,II.5.1,Salta,AR-A,annual,2011,gas oil combustion consumption by agriculture machines,30.701999999999998,TJ,CO2,74100.0,kg/TJ,2275018.1999999997,kg +41784343-d070-3bc0-982c-3d0dae85aa80,SESCO,II.5.1,Salta,AR-A,annual,2011,gas oil combustion consumption by agriculture machines,30.701999999999998,TJ,CH4,3.9,kg/TJ,119.7378,kg +41784343-d070-3bc0-982c-3d0dae85aa80,SESCO,II.5.1,Salta,AR-A,annual,2011,gas oil combustion consumption by agriculture machines,30.701999999999998,TJ,N2O,3.9,kg/TJ,119.7378,kg +1e764e4b-5a61-319a-8645-73a9456a6621,SESCO,II.5.1,Santa Fe,AR-S,annual,2011,gas oil combustion consumption by agriculture machines,23.62248,TJ,CO2,74100.0,kg/TJ,1750425.768,kg +d7419c36-4d26-3137-94c2-0c5fcf797251,SESCO,II.5.1,Santa Fe,AR-S,annual,2011,gas oil combustion consumption by agriculture machines,23.62248,TJ,CH4,3.9,kg/TJ,92.12767199999999,kg +d7419c36-4d26-3137-94c2-0c5fcf797251,SESCO,II.5.1,Santa Fe,AR-S,annual,2011,gas oil combustion consumption by agriculture machines,23.62248,TJ,N2O,3.9,kg/TJ,92.12767199999999,kg +70f5d293-7238-3d21-9038-68961cda019c,SESCO,II.5.1,Santiago del Estero,AR-G,annual,2011,gas oil combustion consumption by agriculture machines,41.06844,TJ,CO2,74100.0,kg/TJ,3043171.404,kg +352843f8-6538-351a-8e44-1ca1556f65ba,SESCO,II.5.1,Santiago del Estero,AR-G,annual,2011,gas oil combustion consumption by agriculture machines,41.06844,TJ,CH4,3.9,kg/TJ,160.16691600000001,kg +352843f8-6538-351a-8e44-1ca1556f65ba,SESCO,II.5.1,Santiago del Estero,AR-G,annual,2011,gas oil combustion consumption by agriculture machines,41.06844,TJ,N2O,3.9,kg/TJ,160.16691600000001,kg +0c15f9f1-172c-32c4-8edd-eb188fb8bbad,SESCO,II.5.1,Tucuman,AR-T,annual,2011,gas oil combustion consumption by agriculture machines,27.70404,TJ,CO2,74100.0,kg/TJ,2052869.3639999998,kg +62059cdb-290b-3620-b82a-81898eea36d1,SESCO,II.5.1,Tucuman,AR-T,annual,2011,gas oil combustion consumption by agriculture machines,27.70404,TJ,CH4,3.9,kg/TJ,108.045756,kg +62059cdb-290b-3620-b82a-81898eea36d1,SESCO,II.5.1,Tucuman,AR-T,annual,2011,gas oil combustion consumption by agriculture machines,27.70404,TJ,N2O,3.9,kg/TJ,108.045756,kg +c6bfefb2-f574-30b7-a05a-cd80839ec7ed,SESCO,II.5.1,Buenos Aires,AR-B,annual,2011,jet kerosene combustion consumption by agriculture machines,25.068040999999997,TJ,CO2,71500.0,kg/TJ,1792364.9314999997,kg +93c7a2f0-958f-3a0e-a9bd-425bdb38f33f,SESCO,II.5.1,Buenos Aires,AR-B,annual,2011,jet kerosene combustion consumption by agriculture machines,25.068040999999997,TJ,CH4,0.5,kg/TJ,12.534020499999999,kg +1000a6c6-fc39-3a09-a495-d5d94d61d8c7,SESCO,II.5.1,Buenos Aires,AR-B,annual,2011,jet kerosene combustion consumption by agriculture machines,25.068040999999997,TJ,N2O,2.0,kg/TJ,50.136081999999995,kg +b1fdfe89-3a5f-30d1-830c-a23346655eec,SESCO,II.5.1,Córdoba,AR-X,annual,2011,jet kerosene combustion consumption by agriculture machines,1.0064959999999998,TJ,CO2,71500.0,kg/TJ,71964.46399999999,kg +4a505f02-abd5-35d4-a751-9d58fbb05ebd,SESCO,II.5.1,Córdoba,AR-X,annual,2011,jet kerosene combustion consumption by agriculture machines,1.0064959999999998,TJ,CH4,0.5,kg/TJ,0.5032479999999999,kg +73ab0400-df58-3843-aa7f-44a8cecc4cc3,SESCO,II.5.1,Córdoba,AR-X,annual,2011,jet kerosene combustion consumption by agriculture machines,1.0064959999999998,TJ,N2O,2.0,kg/TJ,2.0129919999999997,kg +c247d568-d08f-34e4-a0ba-d36c112f6006,SESCO,II.5.1,Entre Rios,AR-E,annual,2011,jet kerosene combustion consumption by agriculture machines,0.25162399999999996,TJ,CO2,71500.0,kg/TJ,17991.115999999998,kg +aac76367-1829-3b9f-993d-5226ea127951,SESCO,II.5.1,Entre Rios,AR-E,annual,2011,jet kerosene combustion consumption by agriculture machines,0.25162399999999996,TJ,CH4,0.5,kg/TJ,0.12581199999999998,kg +0fc0f7c0-95fb-373d-a5e2-370892b16287,SESCO,II.5.1,Entre Rios,AR-E,annual,2011,jet kerosene combustion consumption by agriculture machines,0.25162399999999996,TJ,N2O,2.0,kg/TJ,0.5032479999999999,kg +ccd0555a-12e1-3535-8fea-5295f68c9d4d,SESCO,II.5.1,La Pampa,AR-L,annual,2011,jet kerosene combustion consumption by agriculture machines,6.730941999999999,TJ,CO2,71500.0,kg/TJ,481262.35299999994,kg +9f2e55cb-79b9-3d4e-bd37-1bb7614ea448,SESCO,II.5.1,La Pampa,AR-L,annual,2011,jet kerosene combustion consumption by agriculture machines,6.730941999999999,TJ,CH4,0.5,kg/TJ,3.3654709999999994,kg +d3e9ec48-061c-3436-808a-6f89cdb9b493,SESCO,II.5.1,La Pampa,AR-L,annual,2011,jet kerosene combustion consumption by agriculture machines,6.730941999999999,TJ,N2O,2.0,kg/TJ,13.461883999999998,kg +4ee446b5-5a2e-3c84-a3a6-0d0cf00e70d5,SESCO,II.5.1,Misiones,AR-N,annual,2011,jet kerosene combustion consumption by agriculture machines,2.3904279999999996,TJ,CO2,71500.0,kg/TJ,170915.60199999996,kg +c8d2729f-2f5a-3961-8d26-c5941bb66166,SESCO,II.5.1,Misiones,AR-N,annual,2011,jet kerosene combustion consumption by agriculture machines,2.3904279999999996,TJ,CH4,0.5,kg/TJ,1.1952139999999998,kg +66af93f9-01d7-37f1-9888-a98e0020c9ca,SESCO,II.5.1,Misiones,AR-N,annual,2011,jet kerosene combustion consumption by agriculture machines,2.3904279999999996,TJ,N2O,2.0,kg/TJ,4.780855999999999,kg +1e25bc62-5365-36b6-899d-175f3c967028,SESCO,II.5.1,Santa Cruz,AR-Z,annual,2011,jet kerosene combustion consumption by agriculture machines,0.157265,TJ,CO2,71500.0,kg/TJ,11244.447499999998,kg +59873547-cef1-3082-b4e9-8e9023e909df,SESCO,II.5.1,Santa Cruz,AR-Z,annual,2011,jet kerosene combustion consumption by agriculture machines,0.157265,TJ,CH4,0.5,kg/TJ,0.0786325,kg +e1e096a1-7290-3eff-a80d-3413938a9738,SESCO,II.5.1,Santa Cruz,AR-Z,annual,2011,jet kerosene combustion consumption by agriculture machines,0.157265,TJ,N2O,2.0,kg/TJ,0.31453,kg +84375df9-ce2a-3b95-8eda-c9f9b4118aff,SESCO,II.5.1,Santa Fe,AR-S,annual,2011,jet kerosene combustion consumption by agriculture machines,16.890261,TJ,CO2,71500.0,kg/TJ,1207653.6615,kg +a45a9b56-5e41-33e4-9288-09b16186f171,SESCO,II.5.1,Santa Fe,AR-S,annual,2011,jet kerosene combustion consumption by agriculture machines,16.890261,TJ,CH4,0.5,kg/TJ,8.4451305,kg +16bcab40-d5f2-3450-a966-026d8409c946,SESCO,II.5.1,Santa Fe,AR-S,annual,2011,jet kerosene combustion consumption by agriculture machines,16.890261,TJ,N2O,2.0,kg/TJ,33.780522,kg +40139612-f761-3dab-b508-a3f98a7f2cf4,SESCO,II.1.1,Buenos Aires,AR-B,annual,2011,gas oil combustion consumption by to the public,45201.50712,TJ,CO2,74100.0,kg/TJ,3349431677.592,kg +e0a2851d-6663-36a2-8a7c-df432dd773d1,SESCO,II.1.1,Buenos Aires,AR-B,annual,2011,gas oil combustion consumption by to the public,45201.50712,TJ,CH4,3.9,kg/TJ,176285.877768,kg +e0a2851d-6663-36a2-8a7c-df432dd773d1,SESCO,II.1.1,Buenos Aires,AR-B,annual,2011,gas oil combustion consumption by to the public,45201.50712,TJ,N2O,3.9,kg/TJ,176285.877768,kg +e740c2ba-e4f2-3c26-9400-4cdf7dfd0144,SESCO,II.1.1,Capital Federal,AR-C,annual,2011,gas oil combustion consumption by to the public,5222.44632,TJ,CO2,74100.0,kg/TJ,386983272.312,kg +43dbafac-f2a8-36cb-86e3-e288f2832cff,SESCO,II.1.1,Capital Federal,AR-C,annual,2011,gas oil combustion consumption by to the public,5222.44632,TJ,CH4,3.9,kg/TJ,20367.540648,kg +43dbafac-f2a8-36cb-86e3-e288f2832cff,SESCO,II.1.1,Capital Federal,AR-C,annual,2011,gas oil combustion consumption by to the public,5222.44632,TJ,N2O,3.9,kg/TJ,20367.540648,kg +7c6f3f98-8a03-346f-98db-113fa3dbda54,SESCO,II.1.1,Catamarca,AR-K,annual,2011,gas oil combustion consumption by to the public,595.7994,TJ,CO2,74100.0,kg/TJ,44148735.54,kg +f481e117-1eb3-3f1f-8022-118895c73afd,SESCO,II.1.1,Catamarca,AR-K,annual,2011,gas oil combustion consumption by to the public,595.7994,TJ,CH4,3.9,kg/TJ,2323.61766,kg +f481e117-1eb3-3f1f-8022-118895c73afd,SESCO,II.1.1,Catamarca,AR-K,annual,2011,gas oil combustion consumption by to the public,595.7994,TJ,N2O,3.9,kg/TJ,2323.61766,kg +3ca28019-9c76-33d2-825b-713fe29b7640,SESCO,II.1.1,Chaco,AR-H,annual,2011,gas oil combustion consumption by to the public,2905.89012,TJ,CO2,74100.0,kg/TJ,215326457.892,kg +b5b59939-b18b-3f14-8fcf-7f9a052055e8,SESCO,II.1.1,Chaco,AR-H,annual,2011,gas oil combustion consumption by to the public,2905.89012,TJ,CH4,3.9,kg/TJ,11332.971468,kg +b5b59939-b18b-3f14-8fcf-7f9a052055e8,SESCO,II.1.1,Chaco,AR-H,annual,2011,gas oil combustion consumption by to the public,2905.89012,TJ,N2O,3.9,kg/TJ,11332.971468,kg +a429225b-3355-3c98-9d6e-2c19f9abd108,SESCO,II.1.1,Chubut,AR-U,annual,2011,gas oil combustion consumption by to the public,4616.38884,TJ,CO2,74100.0,kg/TJ,342074413.04399997,kg +68ecb1a0-144a-363e-8157-007c5491cfeb,SESCO,II.1.1,Chubut,AR-U,annual,2011,gas oil combustion consumption by to the public,4616.38884,TJ,CH4,3.9,kg/TJ,18003.916476,kg +68ecb1a0-144a-363e-8157-007c5491cfeb,SESCO,II.1.1,Chubut,AR-U,annual,2011,gas oil combustion consumption by to the public,4616.38884,TJ,N2O,3.9,kg/TJ,18003.916476,kg +bf259599-9908-32fe-86e8-6c0cf311fe05,SESCO,II.1.1,Corrientes,AR-W,annual,2011,gas oil combustion consumption by to the public,2421.26808,TJ,CO2,74100.0,kg/TJ,179415964.728,kg +fabf516a-3155-3356-83c6-1ecfd7de4694,SESCO,II.1.1,Corrientes,AR-W,annual,2011,gas oil combustion consumption by to the public,2421.26808,TJ,CH4,3.9,kg/TJ,9442.945511999998,kg +fabf516a-3155-3356-83c6-1ecfd7de4694,SESCO,II.1.1,Corrientes,AR-W,annual,2011,gas oil combustion consumption by to the public,2421.26808,TJ,N2O,3.9,kg/TJ,9442.945511999998,kg +b51d753f-a336-3ba6-85f9-e874047653f2,SESCO,II.1.1,Córdoba,AR-X,annual,2011,gas oil combustion consumption by to the public,14958.23112,TJ,CO2,74100.0,kg/TJ,1108404925.992,kg +0e0a4ee4-ed85-3304-b634-27a2d009a70e,SESCO,II.1.1,Córdoba,AR-X,annual,2011,gas oil combustion consumption by to the public,14958.23112,TJ,CH4,3.9,kg/TJ,58337.101368,kg +0e0a4ee4-ed85-3304-b634-27a2d009a70e,SESCO,II.1.1,Córdoba,AR-X,annual,2011,gas oil combustion consumption by to the public,14958.23112,TJ,N2O,3.9,kg/TJ,58337.101368,kg +51a04fa8-d00b-311c-8e5e-856f63e7dedc,SESCO,II.1.1,Entre Rios,AR-E,annual,2011,gas oil combustion consumption by to the public,4946.34504,TJ,CO2,74100.0,kg/TJ,366524167.464,kg +ac61c975-aad3-331a-9d30-5e2b3e5e22ef,SESCO,II.1.1,Entre Rios,AR-E,annual,2011,gas oil combustion consumption by to the public,4946.34504,TJ,CH4,3.9,kg/TJ,19290.745656,kg +ac61c975-aad3-331a-9d30-5e2b3e5e22ef,SESCO,II.1.1,Entre Rios,AR-E,annual,2011,gas oil combustion consumption by to the public,4946.34504,TJ,N2O,3.9,kg/TJ,19290.745656,kg +6db01be1-d2ad-3562-bb72-9da32b10730d,SESCO,II.1.1,Formosa,AR-P,annual,2011,gas oil combustion consumption by to the public,977.55168,TJ,CO2,74100.0,kg/TJ,72436579.488,kg +34db7ddd-138d-390b-8e36-efbb2e4dadcc,SESCO,II.1.1,Formosa,AR-P,annual,2011,gas oil combustion consumption by to the public,977.55168,TJ,CH4,3.9,kg/TJ,3812.451552,kg +34db7ddd-138d-390b-8e36-efbb2e4dadcc,SESCO,II.1.1,Formosa,AR-P,annual,2011,gas oil combustion consumption by to the public,977.55168,TJ,N2O,3.9,kg/TJ,3812.451552,kg +b2334571-83e2-39b3-ac24-e4ea0cf53177,SESCO,II.1.1,Jujuy,AR-Y,annual,2011,gas oil combustion consumption by to the public,2205.1259999999997,TJ,CO2,74100.0,kg/TJ,163399836.6,kg +63959933-be38-36e8-8d2c-63877297bd6e,SESCO,II.1.1,Jujuy,AR-Y,annual,2011,gas oil combustion consumption by to the public,2205.1259999999997,TJ,CH4,3.9,kg/TJ,8599.991399999999,kg +63959933-be38-36e8-8d2c-63877297bd6e,SESCO,II.1.1,Jujuy,AR-Y,annual,2011,gas oil combustion consumption by to the public,2205.1259999999997,TJ,N2O,3.9,kg/TJ,8599.991399999999,kg +fcc54fdd-517a-37b4-b95d-e7dfb4b43843,SESCO,II.1.1,La Pampa,AR-L,annual,2011,gas oil combustion consumption by to the public,2851.3128,TJ,CO2,74100.0,kg/TJ,211282278.48000002,kg +5f1da4f4-d980-3535-8aad-d40166903cef,SESCO,II.1.1,La Pampa,AR-L,annual,2011,gas oil combustion consumption by to the public,2851.3128,TJ,CH4,3.9,kg/TJ,11120.119920000001,kg +5f1da4f4-d980-3535-8aad-d40166903cef,SESCO,II.1.1,La Pampa,AR-L,annual,2011,gas oil combustion consumption by to the public,2851.3128,TJ,N2O,3.9,kg/TJ,11120.119920000001,kg +dc7c5139-87ec-3987-b262-ae78178fe845,SESCO,II.1.1,La Rioja,AR-F,annual,2011,gas oil combustion consumption by to the public,1031.18988,TJ,CO2,74100.0,kg/TJ,76411170.108,kg +3fbddc15-bcaf-3556-b5b7-59379c6a212a,SESCO,II.1.1,La Rioja,AR-F,annual,2011,gas oil combustion consumption by to the public,1031.18988,TJ,CH4,3.9,kg/TJ,4021.6405319999994,kg +3fbddc15-bcaf-3556-b5b7-59379c6a212a,SESCO,II.1.1,La Rioja,AR-F,annual,2011,gas oil combustion consumption by to the public,1031.18988,TJ,N2O,3.9,kg/TJ,4021.6405319999994,kg +434101c3-b127-31ef-93fa-93a7bb5b8247,SESCO,II.1.1,Mendoza,AR-M,annual,2011,gas oil combustion consumption by to the public,11123.73192,TJ,CO2,74100.0,kg/TJ,824268535.272,kg +d92896bf-c364-3d48-a26d-16f6b21c9987,SESCO,II.1.1,Mendoza,AR-M,annual,2011,gas oil combustion consumption by to the public,11123.73192,TJ,CH4,3.9,kg/TJ,43382.554488,kg +d92896bf-c364-3d48-a26d-16f6b21c9987,SESCO,II.1.1,Mendoza,AR-M,annual,2011,gas oil combustion consumption by to the public,11123.73192,TJ,N2O,3.9,kg/TJ,43382.554488,kg +815e80a7-ac4f-3b13-a112-6c92d2d087d4,SESCO,II.1.1,Misiones,AR-N,annual,2011,gas oil combustion consumption by to the public,4975.99956,TJ,CO2,74100.0,kg/TJ,368721567.396,kg +509d26f4-7791-370a-a3a0-2cc1f2dad821,SESCO,II.1.1,Misiones,AR-N,annual,2011,gas oil combustion consumption by to the public,4975.99956,TJ,CH4,3.9,kg/TJ,19406.398284,kg +509d26f4-7791-370a-a3a0-2cc1f2dad821,SESCO,II.1.1,Misiones,AR-N,annual,2011,gas oil combustion consumption by to the public,4975.99956,TJ,N2O,3.9,kg/TJ,19406.398284,kg +1ec93c14-4e6a-3877-8bde-2b79928a6abd,SESCO,II.1.1,Neuquén,AR-Q,annual,2011,gas oil combustion consumption by to the public,3543.1191599999997,TJ,CO2,74100.0,kg/TJ,262545129.75599998,kg +5e4b697b-6b41-3c79-ae87-88c9872392d3,SESCO,II.1.1,Neuquén,AR-Q,annual,2011,gas oil combustion consumption by to the public,3543.1191599999997,TJ,CH4,3.9,kg/TJ,13818.164723999998,kg +5e4b697b-6b41-3c79-ae87-88c9872392d3,SESCO,II.1.1,Neuquén,AR-Q,annual,2011,gas oil combustion consumption by to the public,3543.1191599999997,TJ,N2O,3.9,kg/TJ,13818.164723999998,kg +416c8e29-1faa-30ac-9d66-d43c4aed802b,SESCO,II.1.1,Rio Negro,AR-R,annual,2011,gas oil combustion consumption by to the public,4755.23412,TJ,CO2,74100.0,kg/TJ,352362848.292,kg +f9e076d0-39e6-3465-8b7c-f99bc6879aa0,SESCO,II.1.1,Rio Negro,AR-R,annual,2011,gas oil combustion consumption by to the public,4755.23412,TJ,CH4,3.9,kg/TJ,18545.413068,kg +f9e076d0-39e6-3465-8b7c-f99bc6879aa0,SESCO,II.1.1,Rio Negro,AR-R,annual,2011,gas oil combustion consumption by to the public,4755.23412,TJ,N2O,3.9,kg/TJ,18545.413068,kg +39139627-7835-3047-b41a-20658c9985ff,SESCO,II.1.1,Salta,AR-A,annual,2011,gas oil combustion consumption by to the public,4078.59816,TJ,CO2,74100.0,kg/TJ,302224123.656,kg +26234de9-cec9-3721-9255-4a3abe1d615c,SESCO,II.1.1,Salta,AR-A,annual,2011,gas oil combustion consumption by to the public,4078.59816,TJ,CH4,3.9,kg/TJ,15906.532824,kg +26234de9-cec9-3721-9255-4a3abe1d615c,SESCO,II.1.1,Salta,AR-A,annual,2011,gas oil combustion consumption by to the public,4078.59816,TJ,N2O,3.9,kg/TJ,15906.532824,kg +588fe06b-a429-315b-b582-e40cc5c8a3f1,SESCO,II.1.1,San Juan,AR-J,annual,2011,gas oil combustion consumption by to the public,2178.50556,TJ,CO2,74100.0,kg/TJ,161427261.996,kg +ef2f5ce8-b454-3695-994e-38cfcf3278ca,SESCO,II.1.1,San Juan,AR-J,annual,2011,gas oil combustion consumption by to the public,2178.50556,TJ,CH4,3.9,kg/TJ,8496.171684,kg +ef2f5ce8-b454-3695-994e-38cfcf3278ca,SESCO,II.1.1,San Juan,AR-J,annual,2011,gas oil combustion consumption by to the public,2178.50556,TJ,N2O,3.9,kg/TJ,8496.171684,kg +c01895a8-9340-33bf-b44b-4f9023464884,SESCO,II.1.1,San Luis,AR-D,annual,2011,gas oil combustion consumption by to the public,1951.31076,TJ,CO2,74100.0,kg/TJ,144592127.316,kg +7bab7f99-e3e2-3316-89de-70b5097a5539,SESCO,II.1.1,San Luis,AR-D,annual,2011,gas oil combustion consumption by to the public,1951.31076,TJ,CH4,3.9,kg/TJ,7610.111964,kg +7bab7f99-e3e2-3316-89de-70b5097a5539,SESCO,II.1.1,San Luis,AR-D,annual,2011,gas oil combustion consumption by to the public,1951.31076,TJ,N2O,3.9,kg/TJ,7610.111964,kg +ca9141af-d97a-3df7-b153-e06411fcb5ec,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2011,gas oil combustion consumption by to the public,3539.3988,TJ,CO2,74100.0,kg/TJ,262269451.07999998,kg +d633c783-4d30-3627-bb4a-07a4876d201e,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2011,gas oil combustion consumption by to the public,3539.3988,TJ,CH4,3.9,kg/TJ,13803.65532,kg +d633c783-4d30-3627-bb4a-07a4876d201e,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2011,gas oil combustion consumption by to the public,3539.3988,TJ,N2O,3.9,kg/TJ,13803.65532,kg +42bf34cd-64ce-3c35-88a9-5044c2bff8ba,SESCO,II.1.1,Santa Fe,AR-S,annual,2011,gas oil combustion consumption by to the public,11298.80556,TJ,CO2,74100.0,kg/TJ,837241491.996,kg +6702e09b-378f-3732-9942-de3392331544,SESCO,II.1.1,Santa Fe,AR-S,annual,2011,gas oil combustion consumption by to the public,11298.80556,TJ,CH4,3.9,kg/TJ,44065.341684,kg +6702e09b-378f-3732-9942-de3392331544,SESCO,II.1.1,Santa Fe,AR-S,annual,2011,gas oil combustion consumption by to the public,11298.80556,TJ,N2O,3.9,kg/TJ,44065.341684,kg +a54ac57d-d431-3402-87de-907895e2b876,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2011,gas oil combustion consumption by to the public,2227.66488,TJ,CO2,74100.0,kg/TJ,165069967.60799998,kg +548e7c9d-47ae-3cb0-918e-990e260a8344,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2011,gas oil combustion consumption by to the public,2227.66488,TJ,CH4,3.9,kg/TJ,8687.893032,kg +548e7c9d-47ae-3cb0-918e-990e260a8344,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2011,gas oil combustion consumption by to the public,2227.66488,TJ,N2O,3.9,kg/TJ,8687.893032,kg +3d6efc5c-c824-38b9-83bd-f4d532e08a4f,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2011,gas oil combustion consumption by to the public,1001.3908799999999,TJ,CO2,74100.0,kg/TJ,74203064.20799999,kg +616edd75-d11e-32bb-9bfe-aa48a5e39f35,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2011,gas oil combustion consumption by to the public,1001.3908799999999,TJ,CH4,3.9,kg/TJ,3905.424432,kg +616edd75-d11e-32bb-9bfe-aa48a5e39f35,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2011,gas oil combustion consumption by to the public,1001.3908799999999,TJ,N2O,3.9,kg/TJ,3905.424432,kg +e655ca63-4763-33e8-9a4e-32623dd66c8e,SESCO,II.1.1,Tucuman,AR-T,annual,2011,gas oil combustion consumption by to the public,2849.90412,TJ,CO2,74100.0,kg/TJ,211177895.29200003,kg +53b75650-bba4-341a-9750-89fde75f860b,SESCO,II.1.1,Tucuman,AR-T,annual,2011,gas oil combustion consumption by to the public,2849.90412,TJ,CH4,3.9,kg/TJ,11114.626068,kg +53b75650-bba4-341a-9750-89fde75f860b,SESCO,II.1.1,Tucuman,AR-T,annual,2011,gas oil combustion consumption by to the public,2849.90412,TJ,N2O,3.9,kg/TJ,11114.626068,kg +bae96e58-30c7-34c9-9283-aeede0062151,SESCO,II.1.1,Buenos Aires,AR-B,annual,2011,gas oil combustion consumption by to the public,12567.33996,TJ,CO2,74100.0,kg/TJ,931239891.0359999,kg +3d71d473-9cad-34e6-81dc-0dc47b87bbbd,SESCO,II.1.1,Buenos Aires,AR-B,annual,2011,gas oil combustion consumption by to the public,12567.33996,TJ,CH4,3.9,kg/TJ,49012.625843999995,kg +3d71d473-9cad-34e6-81dc-0dc47b87bbbd,SESCO,II.1.1,Buenos Aires,AR-B,annual,2011,gas oil combustion consumption by to the public,12567.33996,TJ,N2O,3.9,kg/TJ,49012.625843999995,kg +41989135-009a-35ce-a044-fb3e2f4a0a81,SESCO,II.1.1,Capital Federal,AR-C,annual,2011,gas oil combustion consumption by to the public,1394.01528,TJ,CO2,74100.0,kg/TJ,103296532.24800001,kg +c407301c-0c3c-3648-a16c-3681885ffa81,SESCO,II.1.1,Capital Federal,AR-C,annual,2011,gas oil combustion consumption by to the public,1394.01528,TJ,CH4,3.9,kg/TJ,5436.659592,kg +c407301c-0c3c-3648-a16c-3681885ffa81,SESCO,II.1.1,Capital Federal,AR-C,annual,2011,gas oil combustion consumption by to the public,1394.01528,TJ,N2O,3.9,kg/TJ,5436.659592,kg +fdb71e26-7e47-36bc-a989-793f69ad0cb5,SESCO,II.1.1,Catamarca,AR-K,annual,2011,gas oil combustion consumption by to the public,114.96996,TJ,CO2,74100.0,kg/TJ,8519274.036,kg +cda3ec59-6742-3ef5-9b90-a9233f2564d4,SESCO,II.1.1,Catamarca,AR-K,annual,2011,gas oil combustion consumption by to the public,114.96996,TJ,CH4,3.9,kg/TJ,448.382844,kg +cda3ec59-6742-3ef5-9b90-a9233f2564d4,SESCO,II.1.1,Catamarca,AR-K,annual,2011,gas oil combustion consumption by to the public,114.96996,TJ,N2O,3.9,kg/TJ,448.382844,kg +5ef9eb90-34fe-347e-ab45-c5dba95d52aa,SESCO,II.1.1,Chaco,AR-H,annual,2011,gas oil combustion consumption by to the public,789.222,TJ,CO2,74100.0,kg/TJ,58481350.199999996,kg +d6aa4a95-4bbd-36fc-b95d-55c616154012,SESCO,II.1.1,Chaco,AR-H,annual,2011,gas oil combustion consumption by to the public,789.222,TJ,CH4,3.9,kg/TJ,3077.9658,kg +d6aa4a95-4bbd-36fc-b95d-55c616154012,SESCO,II.1.1,Chaco,AR-H,annual,2011,gas oil combustion consumption by to the public,789.222,TJ,N2O,3.9,kg/TJ,3077.9658,kg +705aee40-ee31-371b-84e1-129019e2ed7d,SESCO,II.1.1,Chubut,AR-U,annual,2011,gas oil combustion consumption by to the public,639.03504,TJ,CO2,74100.0,kg/TJ,47352496.464,kg +0bff42c6-2356-37cc-9d69-3ff042039470,SESCO,II.1.1,Chubut,AR-U,annual,2011,gas oil combustion consumption by to the public,639.03504,TJ,CH4,3.9,kg/TJ,2492.236656,kg +0bff42c6-2356-37cc-9d69-3ff042039470,SESCO,II.1.1,Chubut,AR-U,annual,2011,gas oil combustion consumption by to the public,639.03504,TJ,N2O,3.9,kg/TJ,2492.236656,kg +ae407e99-a988-38e5-b6ac-a88bc1a2dbc1,SESCO,II.1.1,Corrientes,AR-W,annual,2011,gas oil combustion consumption by to the public,651.67704,TJ,CO2,74100.0,kg/TJ,48289268.664000005,kg +569d0846-5ddc-3710-9394-2c83bdf52680,SESCO,II.1.1,Corrientes,AR-W,annual,2011,gas oil combustion consumption by to the public,651.67704,TJ,CH4,3.9,kg/TJ,2541.540456,kg +569d0846-5ddc-3710-9394-2c83bdf52680,SESCO,II.1.1,Corrientes,AR-W,annual,2011,gas oil combustion consumption by to the public,651.67704,TJ,N2O,3.9,kg/TJ,2541.540456,kg +bcece979-1cda-3e12-9421-572aa36926df,SESCO,II.1.1,Córdoba,AR-X,annual,2011,gas oil combustion consumption by to the public,3281.71872,TJ,CO2,74100.0,kg/TJ,243175357.15199998,kg +ce1f06cf-870f-3b92-95f8-c3a94481ba43,SESCO,II.1.1,Córdoba,AR-X,annual,2011,gas oil combustion consumption by to the public,3281.71872,TJ,CH4,3.9,kg/TJ,12798.703007999999,kg +ce1f06cf-870f-3b92-95f8-c3a94481ba43,SESCO,II.1.1,Córdoba,AR-X,annual,2011,gas oil combustion consumption by to the public,3281.71872,TJ,N2O,3.9,kg/TJ,12798.703007999999,kg +747b4cbf-7393-3bf6-b939-463c29a3e8d6,SESCO,II.1.1,Entre Rios,AR-E,annual,2011,gas oil combustion consumption by to the public,1285.43856,TJ,CO2,74100.0,kg/TJ,95250997.296,kg +2b2bf585-34dd-3e3a-8a2a-5758b0c1754b,SESCO,II.1.1,Entre Rios,AR-E,annual,2011,gas oil combustion consumption by to the public,1285.43856,TJ,CH4,3.9,kg/TJ,5013.210384,kg +2b2bf585-34dd-3e3a-8a2a-5758b0c1754b,SESCO,II.1.1,Entre Rios,AR-E,annual,2011,gas oil combustion consumption by to the public,1285.43856,TJ,N2O,3.9,kg/TJ,5013.210384,kg +27a3a09a-56fc-36fd-95b3-ab9bf03a19b5,SESCO,II.1.1,Formosa,AR-P,annual,2011,gas oil combustion consumption by to the public,224.34132,TJ,CO2,74100.0,kg/TJ,16623691.811999999,kg +51eda8c0-aa12-3406-bfd8-28a3cc3272a0,SESCO,II.1.1,Formosa,AR-P,annual,2011,gas oil combustion consumption by to the public,224.34132,TJ,CH4,3.9,kg/TJ,874.931148,kg +51eda8c0-aa12-3406-bfd8-28a3cc3272a0,SESCO,II.1.1,Formosa,AR-P,annual,2011,gas oil combustion consumption by to the public,224.34132,TJ,N2O,3.9,kg/TJ,874.931148,kg +542f23bb-6e8f-351b-affe-5fc5894fb5cc,SESCO,II.1.1,Jujuy,AR-Y,annual,2011,gas oil combustion consumption by to the public,291.23556,TJ,CO2,74100.0,kg/TJ,21580554.996000003,kg +741e0617-41f4-3f4a-9ba3-8ebf489ff46b,SESCO,II.1.1,Jujuy,AR-Y,annual,2011,gas oil combustion consumption by to the public,291.23556,TJ,CH4,3.9,kg/TJ,1135.818684,kg +741e0617-41f4-3f4a-9ba3-8ebf489ff46b,SESCO,II.1.1,Jujuy,AR-Y,annual,2011,gas oil combustion consumption by to the public,291.23556,TJ,N2O,3.9,kg/TJ,1135.818684,kg +81da818e-3cee-3628-bccc-9c765d2651c0,SESCO,II.1.1,La Pampa,AR-L,annual,2011,gas oil combustion consumption by to the public,717.23484,TJ,CO2,74100.0,kg/TJ,53147101.643999994,kg +05f3ce38-310a-3a7c-b5ff-66461de79a62,SESCO,II.1.1,La Pampa,AR-L,annual,2011,gas oil combustion consumption by to the public,717.23484,TJ,CH4,3.9,kg/TJ,2797.2158759999998,kg +05f3ce38-310a-3a7c-b5ff-66461de79a62,SESCO,II.1.1,La Pampa,AR-L,annual,2011,gas oil combustion consumption by to the public,717.23484,TJ,N2O,3.9,kg/TJ,2797.2158759999998,kg +74aa2d56-644d-39ba-9bcb-19ba43797b37,SESCO,II.1.1,La Rioja,AR-F,annual,2011,gas oil combustion consumption by to the public,185.76516,TJ,CO2,74100.0,kg/TJ,13765198.356,kg +fd166f4b-3123-38da-b2a1-2ee480dd1b86,SESCO,II.1.1,La Rioja,AR-F,annual,2011,gas oil combustion consumption by to the public,185.76516,TJ,CH4,3.9,kg/TJ,724.4841240000001,kg +fd166f4b-3123-38da-b2a1-2ee480dd1b86,SESCO,II.1.1,La Rioja,AR-F,annual,2011,gas oil combustion consumption by to the public,185.76516,TJ,N2O,3.9,kg/TJ,724.4841240000001,kg +a3ce0ba0-8aab-3b05-b023-5a228ea8dd4d,SESCO,II.1.1,Mendoza,AR-M,annual,2011,gas oil combustion consumption by to the public,1626.26688,TJ,CO2,74100.0,kg/TJ,120506375.808,kg +be1760a3-aa48-3f28-bfba-44b001e492fe,SESCO,II.1.1,Mendoza,AR-M,annual,2011,gas oil combustion consumption by to the public,1626.26688,TJ,CH4,3.9,kg/TJ,6342.440831999999,kg +be1760a3-aa48-3f28-bfba-44b001e492fe,SESCO,II.1.1,Mendoza,AR-M,annual,2011,gas oil combustion consumption by to the public,1626.26688,TJ,N2O,3.9,kg/TJ,6342.440831999999,kg +229cee29-1162-37cd-93a0-69f35057aca3,SESCO,II.1.1,Misiones,AR-N,annual,2011,gas oil combustion consumption by to the public,933.08796,TJ,CO2,74100.0,kg/TJ,69141817.836,kg +62448faa-9bde-315d-a896-59104215957d,SESCO,II.1.1,Misiones,AR-N,annual,2011,gas oil combustion consumption by to the public,933.08796,TJ,CH4,3.9,kg/TJ,3639.0430439999996,kg +62448faa-9bde-315d-a896-59104215957d,SESCO,II.1.1,Misiones,AR-N,annual,2011,gas oil combustion consumption by to the public,933.08796,TJ,N2O,3.9,kg/TJ,3639.0430439999996,kg +7574ee51-3ef5-3042-81a9-22f2ed164d11,SESCO,II.1.1,Neuquén,AR-Q,annual,2011,gas oil combustion consumption by to the public,736.37844,TJ,CO2,74100.0,kg/TJ,54565642.404,kg +9a6a304c-2b5b-3321-9ced-b4b7fc2a55eb,SESCO,II.1.1,Neuquén,AR-Q,annual,2011,gas oil combustion consumption by to the public,736.37844,TJ,CH4,3.9,kg/TJ,2871.875916,kg +9a6a304c-2b5b-3321-9ced-b4b7fc2a55eb,SESCO,II.1.1,Neuquén,AR-Q,annual,2011,gas oil combustion consumption by to the public,736.37844,TJ,N2O,3.9,kg/TJ,2871.875916,kg +47de5b1b-4e5c-38da-8098-c501f95e91f0,SESCO,II.1.1,Rio Negro,AR-R,annual,2011,gas oil combustion consumption by to the public,752.16288,TJ,CO2,74100.0,kg/TJ,55735269.408,kg +e17c8c8d-9301-3bd4-b080-d2e47e4c1fe1,SESCO,II.1.1,Rio Negro,AR-R,annual,2011,gas oil combustion consumption by to the public,752.16288,TJ,CH4,3.9,kg/TJ,2933.435232,kg +e17c8c8d-9301-3bd4-b080-d2e47e4c1fe1,SESCO,II.1.1,Rio Negro,AR-R,annual,2011,gas oil combustion consumption by to the public,752.16288,TJ,N2O,3.9,kg/TJ,2933.435232,kg +52f6ffd2-5bbd-3bc1-9b8d-9e77b226a2f8,SESCO,II.1.1,Salta,AR-A,annual,2011,gas oil combustion consumption by to the public,719.22144,TJ,CO2,74100.0,kg/TJ,53294308.704,kg +8c5d2e30-83ff-38af-86c9-54f8a7b0eb41,SESCO,II.1.1,Salta,AR-A,annual,2011,gas oil combustion consumption by to the public,719.22144,TJ,CH4,3.9,kg/TJ,2804.963616,kg +8c5d2e30-83ff-38af-86c9-54f8a7b0eb41,SESCO,II.1.1,Salta,AR-A,annual,2011,gas oil combustion consumption by to the public,719.22144,TJ,N2O,3.9,kg/TJ,2804.963616,kg +4d6016c7-3c4a-31e6-8cd4-02b28527ad15,SESCO,II.1.1,San Juan,AR-J,annual,2011,gas oil combustion consumption by to the public,430.04472,TJ,CO2,74100.0,kg/TJ,31866313.752,kg +e56406da-c09b-3237-8d0d-e0de9713d083,SESCO,II.1.1,San Juan,AR-J,annual,2011,gas oil combustion consumption by to the public,430.04472,TJ,CH4,3.9,kg/TJ,1677.1744079999999,kg +e56406da-c09b-3237-8d0d-e0de9713d083,SESCO,II.1.1,San Juan,AR-J,annual,2011,gas oil combustion consumption by to the public,430.04472,TJ,N2O,3.9,kg/TJ,1677.1744079999999,kg +aef69465-594e-384a-8d7d-f91a6b769ef8,SESCO,II.1.1,San Luis,AR-D,annual,2011,gas oil combustion consumption by to the public,443.7342,TJ,CO2,74100.0,kg/TJ,32880704.22,kg +c3510549-f5db-3ad1-a84b-d8411a631738,SESCO,II.1.1,San Luis,AR-D,annual,2011,gas oil combustion consumption by to the public,443.7342,TJ,CH4,3.9,kg/TJ,1730.5633799999998,kg +c3510549-f5db-3ad1-a84b-d8411a631738,SESCO,II.1.1,San Luis,AR-D,annual,2011,gas oil combustion consumption by to the public,443.7342,TJ,N2O,3.9,kg/TJ,1730.5633799999998,kg +c58b41b1-9d2b-389f-af70-0f04a0963ed5,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2011,gas oil combustion consumption by to the public,341.55072,TJ,CO2,74100.0,kg/TJ,25308908.352,kg +459521c4-a34b-3c92-a5dd-4cc99d60c575,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2011,gas oil combustion consumption by to the public,341.55072,TJ,CH4,3.9,kg/TJ,1332.047808,kg +459521c4-a34b-3c92-a5dd-4cc99d60c575,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2011,gas oil combustion consumption by to the public,341.55072,TJ,N2O,3.9,kg/TJ,1332.047808,kg +9031639a-9191-3ff3-9deb-0714ab7cd052,SESCO,II.1.1,Santa Fe,AR-S,annual,2011,gas oil combustion consumption by to the public,3035.27196,TJ,CO2,74100.0,kg/TJ,224913652.236,kg +5f67f1d9-c1b8-32d7-b8a3-c13e3b510667,SESCO,II.1.1,Santa Fe,AR-S,annual,2011,gas oil combustion consumption by to the public,3035.27196,TJ,CH4,3.9,kg/TJ,11837.560644,kg +5f67f1d9-c1b8-32d7-b8a3-c13e3b510667,SESCO,II.1.1,Santa Fe,AR-S,annual,2011,gas oil combustion consumption by to the public,3035.27196,TJ,N2O,3.9,kg/TJ,11837.560644,kg +42efc8a6-3eb3-39a4-98ca-77d141f311f0,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2011,gas oil combustion consumption by to the public,437.99111999999997,TJ,CO2,74100.0,kg/TJ,32455141.992,kg +cb76c9fd-c8eb-30ed-97c0-03a8176bc678,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2011,gas oil combustion consumption by to the public,437.99111999999997,TJ,CH4,3.9,kg/TJ,1708.165368,kg +cb76c9fd-c8eb-30ed-97c0-03a8176bc678,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2011,gas oil combustion consumption by to the public,437.99111999999997,TJ,N2O,3.9,kg/TJ,1708.165368,kg +df2cf87a-f61b-3499-995f-963e8d7b7d9c,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2011,gas oil combustion consumption by to the public,59.88696,TJ,CO2,74100.0,kg/TJ,4437623.7360000005,kg +a8963ad9-b7a7-3684-82bb-f5e95e492f61,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2011,gas oil combustion consumption by to the public,59.88696,TJ,CH4,3.9,kg/TJ,233.559144,kg +a8963ad9-b7a7-3684-82bb-f5e95e492f61,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2011,gas oil combustion consumption by to the public,59.88696,TJ,N2O,3.9,kg/TJ,233.559144,kg +51bec7da-918a-3806-81b4-60b2bdd18b13,SESCO,II.1.1,Tucuman,AR-T,annual,2011,gas oil combustion consumption by to the public,492.8574,TJ,CO2,74100.0,kg/TJ,36520733.339999996,kg +6cca633c-7959-3bf5-a87d-597acb1af882,SESCO,II.1.1,Tucuman,AR-T,annual,2011,gas oil combustion consumption by to the public,492.8574,TJ,CH4,3.9,kg/TJ,1922.14386,kg +6cca633c-7959-3bf5-a87d-597acb1af882,SESCO,II.1.1,Tucuman,AR-T,annual,2011,gas oil combustion consumption by to the public,492.8574,TJ,N2O,3.9,kg/TJ,1922.14386,kg +83ebe5bb-2eb6-30e2-bc1f-4ac24f5b76db,SESCO,II.1.1,Buenos Aires,AR-B,annual,2011,jet kerosene combustion consumption by to the public,425.1816539999999,TJ,CO2,71500.0,kg/TJ,30400488.260999996,kg +3b4c2169-7bfe-304f-b8de-ffe8b55edda9,SESCO,II.1.1,Buenos Aires,AR-B,annual,2011,jet kerosene combustion consumption by to the public,425.1816539999999,TJ,CH4,0.5,kg/TJ,212.59082699999996,kg +c003bcff-475d-33a5-a28a-ff6b6375c2c1,SESCO,II.1.1,Buenos Aires,AR-B,annual,2011,jet kerosene combustion consumption by to the public,425.1816539999999,TJ,N2O,2.0,kg/TJ,850.3633079999998,kg +95eeab8a-5da1-37db-9d0c-893f031b6021,SESCO,II.1.1,Capital Federal,AR-C,annual,2011,jet kerosene combustion consumption by to the public,21.922740999999995,TJ,CO2,71500.0,kg/TJ,1567475.9814999995,kg +fe2b29b0-bddd-3057-b2a4-5971d2c489a7,SESCO,II.1.1,Capital Federal,AR-C,annual,2011,jet kerosene combustion consumption by to the public,21.922740999999995,TJ,CH4,0.5,kg/TJ,10.961370499999997,kg +5c9e2a97-5c58-33d1-b70d-9031ec02645a,SESCO,II.1.1,Capital Federal,AR-C,annual,2011,jet kerosene combustion consumption by to the public,21.922740999999995,TJ,N2O,2.0,kg/TJ,43.84548199999999,kg +b619b595-c0ee-3f84-915f-4fb296945315,SESCO,II.1.1,Catamarca,AR-K,annual,2011,jet kerosene combustion consumption by to the public,5.755898999999999,TJ,CO2,71500.0,kg/TJ,411546.77849999996,kg +31c546dd-ba1e-30dd-981c-31f2c91462ca,SESCO,II.1.1,Catamarca,AR-K,annual,2011,jet kerosene combustion consumption by to the public,5.755898999999999,TJ,CH4,0.5,kg/TJ,2.8779494999999997,kg +d66c0296-37dc-3bbd-9a77-dc4a85e491c9,SESCO,II.1.1,Catamarca,AR-K,annual,2011,jet kerosene combustion consumption by to the public,5.755898999999999,TJ,N2O,2.0,kg/TJ,11.511797999999999,kg +01a0e36d-968b-3797-873c-1065d18bf88e,SESCO,II.1.1,Chaco,AR-H,annual,2011,jet kerosene combustion consumption by to the public,3.0823939999999994,TJ,CO2,71500.0,kg/TJ,220391.17099999994,kg +d1797454-28ef-3924-bb38-ecaf636fbac1,SESCO,II.1.1,Chaco,AR-H,annual,2011,jet kerosene combustion consumption by to the public,3.0823939999999994,TJ,CH4,0.5,kg/TJ,1.5411969999999997,kg +c2d48bec-6576-3ecc-ae39-e90c11e4e467,SESCO,II.1.1,Chaco,AR-H,annual,2011,jet kerosene combustion consumption by to the public,3.0823939999999994,TJ,N2O,2.0,kg/TJ,6.164787999999999,kg +dd0f1c03-4c99-302e-89a3-95778e17ce13,SESCO,II.1.1,Chubut,AR-U,annual,2011,jet kerosene combustion consumption by to the public,15.978123999999998,TJ,CO2,71500.0,kg/TJ,1142435.866,kg +46b37263-ff7a-3e4b-a069-f5d8fbb9d60d,SESCO,II.1.1,Chubut,AR-U,annual,2011,jet kerosene combustion consumption by to the public,15.978123999999998,TJ,CH4,0.5,kg/TJ,7.989061999999999,kg +fca7a037-9695-3978-a800-d951b5e8dc37,SESCO,II.1.1,Chubut,AR-U,annual,2011,jet kerosene combustion consumption by to the public,15.978123999999998,TJ,N2O,2.0,kg/TJ,31.956247999999995,kg +008f0b71-b60a-3cf7-afc8-f37b8a28f1fc,SESCO,II.1.1,Corrientes,AR-W,annual,2011,jet kerosene combustion consumption by to the public,9.907694999999999,TJ,CO2,71500.0,kg/TJ,708400.1924999999,kg +8438c722-7627-3477-9df7-3f05de11d59b,SESCO,II.1.1,Corrientes,AR-W,annual,2011,jet kerosene combustion consumption by to the public,9.907694999999999,TJ,CH4,0.5,kg/TJ,4.953847499999999,kg +36b47a4c-048d-3591-94d7-72c88878999e,SESCO,II.1.1,Corrientes,AR-W,annual,2011,jet kerosene combustion consumption by to the public,9.907694999999999,TJ,N2O,2.0,kg/TJ,19.815389999999997,kg +64ec650d-897e-316d-b5c2-2c33e54fd922,SESCO,II.1.1,Córdoba,AR-X,annual,2011,jet kerosene combustion consumption by to the public,216.55390499999996,TJ,CO2,71500.0,kg/TJ,15483604.207499998,kg +11c7ca18-98d8-3783-81fe-c79d54723134,SESCO,II.1.1,Córdoba,AR-X,annual,2011,jet kerosene combustion consumption by to the public,216.55390499999996,TJ,CH4,0.5,kg/TJ,108.27695249999998,kg +817b31e9-a11b-3bd0-995a-ed6443366ab6,SESCO,II.1.1,Córdoba,AR-X,annual,2011,jet kerosene combustion consumption by to the public,216.55390499999996,TJ,N2O,2.0,kg/TJ,433.1078099999999,kg +86e05dad-2dd6-3f3e-912c-a160dd85c008,SESCO,II.1.1,Entre Rios,AR-E,annual,2011,jet kerosene combustion consumption by to the public,27.364109999999997,TJ,CO2,71500.0,kg/TJ,1956533.8649999998,kg +cb8e717c-7998-3b39-8342-5d96aac6ee9e,SESCO,II.1.1,Entre Rios,AR-E,annual,2011,jet kerosene combustion consumption by to the public,27.364109999999997,TJ,CH4,0.5,kg/TJ,13.682054999999998,kg +395d2da0-fffc-3cdf-8e20-894ca2e83e35,SESCO,II.1.1,Entre Rios,AR-E,annual,2011,jet kerosene combustion consumption by to the public,27.364109999999997,TJ,N2O,2.0,kg/TJ,54.72821999999999,kg +ec1bb05d-f2f2-3fa4-803b-41fcc277d819,SESCO,II.1.1,Jujuy,AR-Y,annual,2011,jet kerosene combustion consumption by to the public,3.9945309999999994,TJ,CO2,71500.0,kg/TJ,285608.9665,kg +2c0af33a-ce12-3500-98e1-a1ba5e1a9c43,SESCO,II.1.1,Jujuy,AR-Y,annual,2011,jet kerosene combustion consumption by to the public,3.9945309999999994,TJ,CH4,0.5,kg/TJ,1.9972654999999997,kg +7c8cba02-eaac-38f8-a61b-be2b4ff8bb9d,SESCO,II.1.1,Jujuy,AR-Y,annual,2011,jet kerosene combustion consumption by to the public,3.9945309999999994,TJ,N2O,2.0,kg/TJ,7.989061999999999,kg +c41f4fad-062b-307d-9b43-364f5d45b24a,SESCO,II.1.1,La Pampa,AR-L,annual,2011,jet kerosene combustion consumption by to the public,18.022568999999997,TJ,CO2,71500.0,kg/TJ,1288613.6834999998,kg +ec73afe4-377e-3f6a-8080-069147ec0dcb,SESCO,II.1.1,La Pampa,AR-L,annual,2011,jet kerosene combustion consumption by to the public,18.022568999999997,TJ,CH4,0.5,kg/TJ,9.011284499999999,kg +47c29c86-c4a2-38ba-a8d6-d1dd9f034b0d,SESCO,II.1.1,La Pampa,AR-L,annual,2011,jet kerosene combustion consumption by to the public,18.022568999999997,TJ,N2O,2.0,kg/TJ,36.045137999999994,kg +4fbf5640-523e-377b-8896-008f49f6c487,SESCO,II.1.1,La Rioja,AR-F,annual,2011,jet kerosene combustion consumption by to the public,3.5856419999999996,TJ,CO2,71500.0,kg/TJ,256373.40299999996,kg +9f693ecd-945d-32e3-954f-0584aacd41a8,SESCO,II.1.1,La Rioja,AR-F,annual,2011,jet kerosene combustion consumption by to the public,3.5856419999999996,TJ,CH4,0.5,kg/TJ,1.7928209999999998,kg +dfde0dd2-0cf7-3f50-a5f6-b805aa0118ac,SESCO,II.1.1,La Rioja,AR-F,annual,2011,jet kerosene combustion consumption by to the public,3.5856419999999996,TJ,N2O,2.0,kg/TJ,7.171283999999999,kg +0b762990-1dba-3d34-b152-b668488ebeb3,SESCO,II.1.1,Mendoza,AR-M,annual,2011,jet kerosene combustion consumption by to the public,60.35830699999999,TJ,CO2,71500.0,kg/TJ,4315618.950499999,kg +f8ba1dea-f015-3b2d-8e77-88a7ef97aa45,SESCO,II.1.1,Mendoza,AR-M,annual,2011,jet kerosene combustion consumption by to the public,60.35830699999999,TJ,CH4,0.5,kg/TJ,30.179153499999995,kg +9c606ba7-b9d1-38c2-8f04-fc3c3c70e8de,SESCO,II.1.1,Mendoza,AR-M,annual,2011,jet kerosene combustion consumption by to the public,60.35830699999999,TJ,N2O,2.0,kg/TJ,120.71661399999998,kg +9e9cfa46-74df-3b83-9345-29817414f20f,SESCO,II.1.1,Misiones,AR-N,annual,2011,jet kerosene combustion consumption by to the public,6.510770999999999,TJ,CO2,71500.0,kg/TJ,465520.12649999995,kg +35b128f4-d9bc-3ea5-ae90-ba6a099e3750,SESCO,II.1.1,Misiones,AR-N,annual,2011,jet kerosene combustion consumption by to the public,6.510770999999999,TJ,CH4,0.5,kg/TJ,3.2553854999999996,kg +55cc5461-84ae-3d41-a7cf-f77de7e87b69,SESCO,II.1.1,Misiones,AR-N,annual,2011,jet kerosene combustion consumption by to the public,6.510770999999999,TJ,N2O,2.0,kg/TJ,13.021541999999998,kg +cd76dd5d-4e64-3684-bf5e-7fc235e28d18,SESCO,II.1.1,Neuquén,AR-Q,annual,2011,jet kerosene combustion consumption by to the public,9.593164999999999,TJ,CO2,71500.0,kg/TJ,685911.2975,kg +7565b5db-04b9-3856-bce3-d4eb9ee90f70,SESCO,II.1.1,Neuquén,AR-Q,annual,2011,jet kerosene combustion consumption by to the public,9.593164999999999,TJ,CH4,0.5,kg/TJ,4.7965824999999995,kg +53205bb5-957b-3220-b959-150db9e4ecbf,SESCO,II.1.1,Neuquén,AR-Q,annual,2011,jet kerosene combustion consumption by to the public,9.593164999999999,TJ,N2O,2.0,kg/TJ,19.186329999999998,kg +e8be1d7b-6f33-3525-afd2-e18ec8ebab3a,SESCO,II.1.1,Rio Negro,AR-R,annual,2011,jet kerosene combustion consumption by to the public,6.038975999999999,TJ,CO2,71500.0,kg/TJ,431786.7839999999,kg +40376edc-6841-3bfc-b629-4c3f287e7a5b,SESCO,II.1.1,Rio Negro,AR-R,annual,2011,jet kerosene combustion consumption by to the public,6.038975999999999,TJ,CH4,0.5,kg/TJ,3.0194879999999995,kg +90189749-806c-31f7-b369-9d7c01e5c91b,SESCO,II.1.1,Rio Negro,AR-R,annual,2011,jet kerosene combustion consumption by to the public,6.038975999999999,TJ,N2O,2.0,kg/TJ,12.077951999999998,kg +bc76e89a-4bab-34c8-ae4d-e1638c74423b,SESCO,II.1.1,Salta,AR-A,annual,2011,jet kerosene combustion consumption by to the public,13.807866999999998,TJ,CO2,71500.0,kg/TJ,987262.4904999998,kg +3d6769fe-49e1-332f-81dd-396111f2d4da,SESCO,II.1.1,Salta,AR-A,annual,2011,jet kerosene combustion consumption by to the public,13.807866999999998,TJ,CH4,0.5,kg/TJ,6.903933499999999,kg +54d2c11d-b89b-3661-9e8b-ab9d87363a9d,SESCO,II.1.1,Salta,AR-A,annual,2011,jet kerosene combustion consumption by to the public,13.807866999999998,TJ,N2O,2.0,kg/TJ,27.615733999999996,kg +7e305467-bb28-3b71-af1f-6b8b0b7f933f,SESCO,II.1.1,San Juan,AR-J,annual,2011,jet kerosene combustion consumption by to the public,5.189744999999999,TJ,CO2,71500.0,kg/TJ,371066.76749999996,kg +63692fd9-aa2b-32e8-aaee-30ff2064f097,SESCO,II.1.1,San Juan,AR-J,annual,2011,jet kerosene combustion consumption by to the public,5.189744999999999,TJ,CH4,0.5,kg/TJ,2.5948724999999997,kg +e7bf666e-458a-3fec-96ae-481672087f0e,SESCO,II.1.1,San Juan,AR-J,annual,2011,jet kerosene combustion consumption by to the public,5.189744999999999,TJ,N2O,2.0,kg/TJ,10.379489999999999,kg +0ded5ca2-0855-3386-962a-a3bcc0678893,SESCO,II.1.1,San Luis,AR-D,annual,2011,jet kerosene combustion consumption by to the public,17.802397999999997,TJ,CO2,71500.0,kg/TJ,1272871.4569999997,kg +67333fff-629b-3d58-b4ae-b24f7dbafabb,SESCO,II.1.1,San Luis,AR-D,annual,2011,jet kerosene combustion consumption by to the public,17.802397999999997,TJ,CH4,0.5,kg/TJ,8.901198999999998,kg +ee1d25c5-e412-3942-b0c5-2a4199194cde,SESCO,II.1.1,San Luis,AR-D,annual,2011,jet kerosene combustion consumption by to the public,17.802397999999997,TJ,N2O,2.0,kg/TJ,35.60479599999999,kg +faa8a71e-c18d-3b9a-bee7-1a521cf8b47a,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2011,jet kerosene combustion consumption by to the public,18.966158999999998,TJ,CO2,71500.0,kg/TJ,1356080.3684999999,kg +0d6921f9-6379-3546-b9a7-f6a0d461250d,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2011,jet kerosene combustion consumption by to the public,18.966158999999998,TJ,CH4,0.5,kg/TJ,9.483079499999999,kg +d56592cb-7d4f-355f-bd59-1ce40fe6aacc,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2011,jet kerosene combustion consumption by to the public,18.966158999999998,TJ,N2O,2.0,kg/TJ,37.932317999999995,kg +d7007805-975d-367f-95b5-bd68ed3b6daa,SESCO,II.1.1,Santa Fe,AR-S,annual,2011,jet kerosene combustion consumption by to the public,80.70839799999999,TJ,CO2,71500.0,kg/TJ,5770650.4569999995,kg +77c00f7b-9b7f-3aa2-b0d6-ed9d5710f173,SESCO,II.1.1,Santa Fe,AR-S,annual,2011,jet kerosene combustion consumption by to the public,80.70839799999999,TJ,CH4,0.5,kg/TJ,40.354198999999994,kg +e3000f71-b445-3d13-bbdd-16e98986666b,SESCO,II.1.1,Santa Fe,AR-S,annual,2011,jet kerosene combustion consumption by to the public,80.70839799999999,TJ,N2O,2.0,kg/TJ,161.41679599999998,kg +a6427612-5795-34a4-a363-04b0a15a09f9,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2011,jet kerosene combustion consumption by to the public,12.392481999999998,TJ,CO2,71500.0,kg/TJ,886062.4629999999,kg +5cc13467-3c54-3906-9dbe-938358a92e31,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2011,jet kerosene combustion consumption by to the public,12.392481999999998,TJ,CH4,0.5,kg/TJ,6.196240999999999,kg +4ff29c86-1968-378a-a6ee-d9037d8be0be,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2011,jet kerosene combustion consumption by to the public,12.392481999999998,TJ,N2O,2.0,kg/TJ,24.784963999999995,kg +24af7e96-e4a4-3b3b-947f-cea652d1dd53,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2011,jet kerosene combustion consumption by to the public,2.3589749999999996,TJ,CO2,71500.0,kg/TJ,168666.71249999997,kg +312bc8d6-6d32-3fcc-a334-e1eb92aacb47,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2011,jet kerosene combustion consumption by to the public,2.3589749999999996,TJ,CH4,0.5,kg/TJ,1.1794874999999998,kg +d30fd764-452f-3053-85ae-b5bb5e50bcf3,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2011,jet kerosene combustion consumption by to the public,2.3589749999999996,TJ,N2O,2.0,kg/TJ,4.717949999999999,kg +8d1781ec-f9be-3f66-9364-f3c9064e3afe,SESCO,II.1.1,Tucuman,AR-T,annual,2011,jet kerosene combustion consumption by to the public,15.097439999999997,TJ,CO2,71500.0,kg/TJ,1079466.9599999997,kg +c66dd281-d60b-35b1-a862-903d8e9da505,SESCO,II.1.1,Tucuman,AR-T,annual,2011,jet kerosene combustion consumption by to the public,15.097439999999997,TJ,CH4,0.5,kg/TJ,7.5487199999999985,kg +3f4a74b9-a394-3c2b-9470-ab40043299fa,SESCO,II.1.1,Tucuman,AR-T,annual,2011,jet kerosene combustion consumption by to the public,15.097439999999997,TJ,N2O,2.0,kg/TJ,30.194879999999994,kg +c76812d3-9a5b-36b3-84d4-c4611cee0c62,SESCO,II.1.1,Buenos Aires,AR-B,annual,2011,gasoline combustion consumption by freight transport,34.111,TJ,CO2,69300.0,kg/TJ,2363892.3,kg +9f58ed59-2d24-370e-abc0-10341b78ab3c,SESCO,II.1.1,Buenos Aires,AR-B,annual,2011,gasoline combustion consumption by freight transport,34.111,TJ,CH4,33.0,kg/TJ,1125.663,kg +e90c69b9-4c15-379f-9553-dbd51f31f9cd,SESCO,II.1.1,Buenos Aires,AR-B,annual,2011,gasoline combustion consumption by freight transport,34.111,TJ,N2O,3.2,kg/TJ,109.1552,kg +2e5732e8-de59-3006-adbf-b551d2f36d89,SESCO,II.1.1,Capital Federal,AR-C,annual,2011,gasoline combustion consumption by freight transport,3.4997,TJ,CO2,69300.0,kg/TJ,242529.21,kg +1253dbcd-491a-3769-a8a1-eb20eccc6867,SESCO,II.1.1,Capital Federal,AR-C,annual,2011,gasoline combustion consumption by freight transport,3.4997,TJ,CH4,33.0,kg/TJ,115.4901,kg +333c7b5a-bcce-38e0-9d3c-2cedcee5c9fd,SESCO,II.1.1,Capital Federal,AR-C,annual,2011,gasoline combustion consumption by freight transport,3.4997,TJ,N2O,3.2,kg/TJ,11.19904,kg +c69c1eea-9e49-32de-9b85-c77f9620eda6,SESCO,II.1.1,Buenos Aires,AR-B,annual,2011,gas oil combustion consumption by freight transport,6696.53964,TJ,CO2,74100.0,kg/TJ,496213587.324,kg +a8daac81-7338-34cd-bc2f-eeed5c0aea3e,SESCO,II.1.1,Buenos Aires,AR-B,annual,2011,gas oil combustion consumption by freight transport,6696.53964,TJ,CH4,3.9,kg/TJ,26116.504596,kg +a8daac81-7338-34cd-bc2f-eeed5c0aea3e,SESCO,II.1.1,Buenos Aires,AR-B,annual,2011,gas oil combustion consumption by freight transport,6696.53964,TJ,N2O,3.9,kg/TJ,26116.504596,kg +26076bf3-a4df-3244-b355-b7bbf1f211a7,SESCO,II.1.1,Capital Federal,AR-C,annual,2011,gas oil combustion consumption by freight transport,713.29776,TJ,CO2,74100.0,kg/TJ,52855364.016,kg +1d846f3e-4f2c-3006-b1f8-7da946d9b3c9,SESCO,II.1.1,Capital Federal,AR-C,annual,2011,gas oil combustion consumption by freight transport,713.29776,TJ,CH4,3.9,kg/TJ,2781.861264,kg +1d846f3e-4f2c-3006-b1f8-7da946d9b3c9,SESCO,II.1.1,Capital Federal,AR-C,annual,2011,gas oil combustion consumption by freight transport,713.29776,TJ,N2O,3.9,kg/TJ,2781.861264,kg +2bb42240-35bd-3c08-97bc-c37afcac0ddd,SESCO,II.1.1,Catamarca,AR-K,annual,2011,gas oil combustion consumption by freight transport,26.07864,TJ,CO2,74100.0,kg/TJ,1932427.224,kg +2e522ac1-b46b-30c6-a2f2-1ee717bd9912,SESCO,II.1.1,Catamarca,AR-K,annual,2011,gas oil combustion consumption by freight transport,26.07864,TJ,CH4,3.9,kg/TJ,101.706696,kg +2e522ac1-b46b-30c6-a2f2-1ee717bd9912,SESCO,II.1.1,Catamarca,AR-K,annual,2011,gas oil combustion consumption by freight transport,26.07864,TJ,N2O,3.9,kg/TJ,101.706696,kg +9a40a1f0-9fa6-33a5-9517-34471b964860,SESCO,II.1.1,Chaco,AR-H,annual,2011,gas oil combustion consumption by freight transport,111.89976,TJ,CO2,74100.0,kg/TJ,8291772.216,kg +da2a6807-a087-347b-9e05-755616151460,SESCO,II.1.1,Chaco,AR-H,annual,2011,gas oil combustion consumption by freight transport,111.89976,TJ,CH4,3.9,kg/TJ,436.409064,kg +da2a6807-a087-347b-9e05-755616151460,SESCO,II.1.1,Chaco,AR-H,annual,2011,gas oil combustion consumption by freight transport,111.89976,TJ,N2O,3.9,kg/TJ,436.409064,kg +e3219bf5-f1ad-32bb-8cc4-b4abe3fa3b9a,SESCO,II.1.1,Chubut,AR-U,annual,2011,gas oil combustion consumption by freight transport,230.30112,TJ,CO2,74100.0,kg/TJ,17065312.992,kg +25adaacc-78b3-3db4-8147-6af5c37b44b0,SESCO,II.1.1,Chubut,AR-U,annual,2011,gas oil combustion consumption by freight transport,230.30112,TJ,CH4,3.9,kg/TJ,898.174368,kg +25adaacc-78b3-3db4-8147-6af5c37b44b0,SESCO,II.1.1,Chubut,AR-U,annual,2011,gas oil combustion consumption by freight transport,230.30112,TJ,N2O,3.9,kg/TJ,898.174368,kg +2d45eeec-d6d9-380b-b2ee-fae3cae5a4f0,SESCO,II.1.1,Corrientes,AR-W,annual,2011,gas oil combustion consumption by freight transport,458.76012,TJ,CO2,74100.0,kg/TJ,33994124.892,kg +06416850-46f4-38f1-8e50-b2dbdab9b23b,SESCO,II.1.1,Corrientes,AR-W,annual,2011,gas oil combustion consumption by freight transport,458.76012,TJ,CH4,3.9,kg/TJ,1789.164468,kg +06416850-46f4-38f1-8e50-b2dbdab9b23b,SESCO,II.1.1,Corrientes,AR-W,annual,2011,gas oil combustion consumption by freight transport,458.76012,TJ,N2O,3.9,kg/TJ,1789.164468,kg +eb2f7b61-b2a2-348e-b861-f690e05d073a,SESCO,II.1.1,Córdoba,AR-X,annual,2011,gas oil combustion consumption by freight transport,1535.6779199999999,TJ,CO2,74100.0,kg/TJ,113793733.872,kg +e01e62b9-da78-3ebe-becf-3d5fc4db26b5,SESCO,II.1.1,Córdoba,AR-X,annual,2011,gas oil combustion consumption by freight transport,1535.6779199999999,TJ,CH4,3.9,kg/TJ,5989.143888,kg +e01e62b9-da78-3ebe-becf-3d5fc4db26b5,SESCO,II.1.1,Córdoba,AR-X,annual,2011,gas oil combustion consumption by freight transport,1535.6779199999999,TJ,N2O,3.9,kg/TJ,5989.143888,kg +603814e3-ede6-306c-a1ce-aeb24332771a,SESCO,II.1.1,Entre Rios,AR-E,annual,2011,gas oil combustion consumption by freight transport,171.0282,TJ,CO2,74100.0,kg/TJ,12673189.62,kg +4c4f0730-0bd1-3af2-b4f7-a6f8311d0a98,SESCO,II.1.1,Entre Rios,AR-E,annual,2011,gas oil combustion consumption by freight transport,171.0282,TJ,CH4,3.9,kg/TJ,667.0099799999999,kg +4c4f0730-0bd1-3af2-b4f7-a6f8311d0a98,SESCO,II.1.1,Entre Rios,AR-E,annual,2011,gas oil combustion consumption by freight transport,171.0282,TJ,N2O,3.9,kg/TJ,667.0099799999999,kg +b2396f77-23e6-30f3-b01e-671320d39669,SESCO,II.1.1,Formosa,AR-P,annual,2011,gas oil combustion consumption by freight transport,5.56248,TJ,CO2,74100.0,kg/TJ,412179.768,kg +2e1858f4-834d-3f7c-9554-193012ed8010,SESCO,II.1.1,Formosa,AR-P,annual,2011,gas oil combustion consumption by freight transport,5.56248,TJ,CH4,3.9,kg/TJ,21.693672,kg +2e1858f4-834d-3f7c-9554-193012ed8010,SESCO,II.1.1,Formosa,AR-P,annual,2011,gas oil combustion consumption by freight transport,5.56248,TJ,N2O,3.9,kg/TJ,21.693672,kg +4f73da51-99d2-33fd-935f-fd8862dee7f6,SESCO,II.1.1,Jujuy,AR-Y,annual,2011,gas oil combustion consumption by freight transport,30.701999999999998,TJ,CO2,74100.0,kg/TJ,2275018.1999999997,kg +35c15289-7658-3731-8c20-b85c9af13c26,SESCO,II.1.1,Jujuy,AR-Y,annual,2011,gas oil combustion consumption by freight transport,30.701999999999998,TJ,CH4,3.9,kg/TJ,119.7378,kg +35c15289-7658-3731-8c20-b85c9af13c26,SESCO,II.1.1,Jujuy,AR-Y,annual,2011,gas oil combustion consumption by freight transport,30.701999999999998,TJ,N2O,3.9,kg/TJ,119.7378,kg +e6d5e221-8f0e-359e-ad01-865cd126a03c,SESCO,II.1.1,La Pampa,AR-L,annual,2011,gas oil combustion consumption by freight transport,143.90207999999998,TJ,CO2,74100.0,kg/TJ,10663144.127999999,kg +1e7c9103-2918-35d8-858f-0cbcf72536f9,SESCO,II.1.1,La Pampa,AR-L,annual,2011,gas oil combustion consumption by freight transport,143.90207999999998,TJ,CH4,3.9,kg/TJ,561.2181119999999,kg +1e7c9103-2918-35d8-858f-0cbcf72536f9,SESCO,II.1.1,La Pampa,AR-L,annual,2011,gas oil combustion consumption by freight transport,143.90207999999998,TJ,N2O,3.9,kg/TJ,561.2181119999999,kg +512aff53-cbe0-3415-8927-df5099455ace,SESCO,II.1.1,La Rioja,AR-F,annual,2011,gas oil combustion consumption by freight transport,11.41392,TJ,CO2,74100.0,kg/TJ,845771.472,kg +9934bc0d-53b2-3bbd-9530-6012220c0c52,SESCO,II.1.1,La Rioja,AR-F,annual,2011,gas oil combustion consumption by freight transport,11.41392,TJ,CH4,3.9,kg/TJ,44.51428799999999,kg +9934bc0d-53b2-3bbd-9530-6012220c0c52,SESCO,II.1.1,La Rioja,AR-F,annual,2011,gas oil combustion consumption by freight transport,11.41392,TJ,N2O,3.9,kg/TJ,44.51428799999999,kg +40414cac-b3de-38cc-9376-6cf7d0d4d453,SESCO,II.1.1,Mendoza,AR-M,annual,2011,gas oil combustion consumption by freight transport,805.1148,TJ,CO2,74100.0,kg/TJ,59659006.67999999,kg +bd0e8352-492b-35e6-8a5e-885293d7a9db,SESCO,II.1.1,Mendoza,AR-M,annual,2011,gas oil combustion consumption by freight transport,805.1148,TJ,CH4,3.9,kg/TJ,3139.9477199999997,kg +bd0e8352-492b-35e6-8a5e-885293d7a9db,SESCO,II.1.1,Mendoza,AR-M,annual,2011,gas oil combustion consumption by freight transport,805.1148,TJ,N2O,3.9,kg/TJ,3139.9477199999997,kg +9dba301c-9954-39ed-9287-d68b575f34bc,SESCO,II.1.1,Misiones,AR-N,annual,2011,gas oil combustion consumption by freight transport,121.36319999999999,TJ,CO2,74100.0,kg/TJ,8993013.12,kg +34986d83-d729-3aae-be1f-d7dae92e513b,SESCO,II.1.1,Misiones,AR-N,annual,2011,gas oil combustion consumption by freight transport,121.36319999999999,TJ,CH4,3.9,kg/TJ,473.31647999999996,kg +34986d83-d729-3aae-be1f-d7dae92e513b,SESCO,II.1.1,Misiones,AR-N,annual,2011,gas oil combustion consumption by freight transport,121.36319999999999,TJ,N2O,3.9,kg/TJ,473.31647999999996,kg +4831b9b8-4d4f-398e-8951-c58f63fb6fad,SESCO,II.1.1,Neuquén,AR-Q,annual,2011,gas oil combustion consumption by freight transport,416.49971999999997,TJ,CO2,74100.0,kg/TJ,30862629.251999997,kg +7553f31e-ee5e-3878-a73c-29a0814f315e,SESCO,II.1.1,Neuquén,AR-Q,annual,2011,gas oil combustion consumption by freight transport,416.49971999999997,TJ,CH4,3.9,kg/TJ,1624.348908,kg +7553f31e-ee5e-3878-a73c-29a0814f315e,SESCO,II.1.1,Neuquén,AR-Q,annual,2011,gas oil combustion consumption by freight transport,416.49971999999997,TJ,N2O,3.9,kg/TJ,1624.348908,kg +28a377d5-94b3-3539-9715-a631ee8ff227,SESCO,II.1.1,Rio Negro,AR-R,annual,2011,gas oil combustion consumption by freight transport,55.841519999999996,TJ,CO2,74100.0,kg/TJ,4137856.6319999998,kg +78249f5d-93fc-387a-8890-e679dcc25625,SESCO,II.1.1,Rio Negro,AR-R,annual,2011,gas oil combustion consumption by freight transport,55.841519999999996,TJ,CH4,3.9,kg/TJ,217.78192799999997,kg +78249f5d-93fc-387a-8890-e679dcc25625,SESCO,II.1.1,Rio Negro,AR-R,annual,2011,gas oil combustion consumption by freight transport,55.841519999999996,TJ,N2O,3.9,kg/TJ,217.78192799999997,kg +1a157bab-e866-3e81-935d-f13902aca82e,SESCO,II.1.1,Salta,AR-A,annual,2011,gas oil combustion consumption by freight transport,166.54932,TJ,CO2,74100.0,kg/TJ,12341304.612,kg +f329140b-f9e7-36a4-935a-967634fc90a1,SESCO,II.1.1,Salta,AR-A,annual,2011,gas oil combustion consumption by freight transport,166.54932,TJ,CH4,3.9,kg/TJ,649.542348,kg +f329140b-f9e7-36a4-935a-967634fc90a1,SESCO,II.1.1,Salta,AR-A,annual,2011,gas oil combustion consumption by freight transport,166.54932,TJ,N2O,3.9,kg/TJ,649.542348,kg +36936686-095f-30fe-8728-2f2ee7f846cf,SESCO,II.1.1,San Juan,AR-J,annual,2011,gas oil combustion consumption by freight transport,67.83336,TJ,CO2,74100.0,kg/TJ,5026451.976,kg +4b040d41-bc05-3949-b205-2a54f17ac537,SESCO,II.1.1,San Juan,AR-J,annual,2011,gas oil combustion consumption by freight transport,67.83336,TJ,CH4,3.9,kg/TJ,264.550104,kg +4b040d41-bc05-3949-b205-2a54f17ac537,SESCO,II.1.1,San Juan,AR-J,annual,2011,gas oil combustion consumption by freight transport,67.83336,TJ,N2O,3.9,kg/TJ,264.550104,kg +4216ba21-16b1-34ec-b050-638fc992e086,SESCO,II.1.1,San Luis,AR-D,annual,2011,gas oil combustion consumption by freight transport,162.9012,TJ,CO2,74100.0,kg/TJ,12070978.92,kg +0f129a7b-d483-3358-b45f-276dc3875784,SESCO,II.1.1,San Luis,AR-D,annual,2011,gas oil combustion consumption by freight transport,162.9012,TJ,CH4,3.9,kg/TJ,635.31468,kg +0f129a7b-d483-3358-b45f-276dc3875784,SESCO,II.1.1,San Luis,AR-D,annual,2011,gas oil combustion consumption by freight transport,162.9012,TJ,N2O,3.9,kg/TJ,635.31468,kg +eacb6c31-0dc3-3a56-ab2c-cdf928aab3ff,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2011,gas oil combustion consumption by freight transport,91.05852,TJ,CO2,74100.0,kg/TJ,6747436.332,kg +d70799a8-c357-3ff0-97f8-98e2acc07548,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2011,gas oil combustion consumption by freight transport,91.05852,TJ,CH4,3.9,kg/TJ,355.128228,kg +d70799a8-c357-3ff0-97f8-98e2acc07548,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2011,gas oil combustion consumption by freight transport,91.05852,TJ,N2O,3.9,kg/TJ,355.128228,kg +cc612f44-fb18-3477-a71a-2c21f8ae77ef,SESCO,II.1.1,Santa Fe,AR-S,annual,2011,gas oil combustion consumption by freight transport,1220.20584,TJ,CO2,74100.0,kg/TJ,90417252.744,kg +72009aaa-ef09-3dd4-aa76-2c80fd3a042a,SESCO,II.1.1,Santa Fe,AR-S,annual,2011,gas oil combustion consumption by freight transport,1220.20584,TJ,CH4,3.9,kg/TJ,4758.802776,kg +72009aaa-ef09-3dd4-aa76-2c80fd3a042a,SESCO,II.1.1,Santa Fe,AR-S,annual,2011,gas oil combustion consumption by freight transport,1220.20584,TJ,N2O,3.9,kg/TJ,4758.802776,kg +88f03754-2e8b-3403-8203-8edb0ece890b,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2011,gas oil combustion consumption by freight transport,140.03724,TJ,CO2,74100.0,kg/TJ,10376759.484,kg +5aee66f6-9968-31bc-9c77-9a35919e6819,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2011,gas oil combustion consumption by freight transport,140.03724,TJ,CH4,3.9,kg/TJ,546.145236,kg +5aee66f6-9968-31bc-9c77-9a35919e6819,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2011,gas oil combustion consumption by freight transport,140.03724,TJ,N2O,3.9,kg/TJ,546.145236,kg +caab15c0-d86e-354c-bf90-917fe6eb4712,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2011,gas oil combustion consumption by freight transport,5.2374,TJ,CO2,74100.0,kg/TJ,388091.34,kg +efeb422d-e8ad-3212-a529-248281eedc17,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2011,gas oil combustion consumption by freight transport,5.2374,TJ,CH4,3.9,kg/TJ,20.42586,kg +efeb422d-e8ad-3212-a529-248281eedc17,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2011,gas oil combustion consumption by freight transport,5.2374,TJ,N2O,3.9,kg/TJ,20.42586,kg +770b5122-e4a5-3291-852a-99c7ea735f05,SESCO,II.1.1,Tucuman,AR-T,annual,2011,gas oil combustion consumption by freight transport,150.6204,TJ,CO2,74100.0,kg/TJ,11160971.639999999,kg +725478be-c678-30b6-a74f-f73f339fe333,SESCO,II.1.1,Tucuman,AR-T,annual,2011,gas oil combustion consumption by freight transport,150.6204,TJ,CH4,3.9,kg/TJ,587.4195599999999,kg +725478be-c678-30b6-a74f-f73f339fe333,SESCO,II.1.1,Tucuman,AR-T,annual,2011,gas oil combustion consumption by freight transport,150.6204,TJ,N2O,3.9,kg/TJ,587.4195599999999,kg +003bdc22-6238-3139-88fc-b752471c6def,SESCO,II.1.1,Buenos Aires,AR-B,annual,2011,gas oil combustion consumption by freight transport,20.9496,TJ,CO2,74100.0,kg/TJ,1552365.36,kg +788104ba-7ad0-36dd-a1d9-9b31795a216a,SESCO,II.1.1,Buenos Aires,AR-B,annual,2011,gas oil combustion consumption by freight transport,20.9496,TJ,CH4,3.9,kg/TJ,81.70344,kg +788104ba-7ad0-36dd-a1d9-9b31795a216a,SESCO,II.1.1,Buenos Aires,AR-B,annual,2011,gas oil combustion consumption by freight transport,20.9496,TJ,N2O,3.9,kg/TJ,81.70344,kg +f8ce9994-8c28-392d-b869-39ba77ba9fe4,SESCO,II.1.1,Capital Federal,AR-C,annual,2011,gas oil combustion consumption by freight transport,29.90736,TJ,CO2,74100.0,kg/TJ,2216135.376,kg +969f46ae-8e16-39bf-9727-afeb2fb79dda,SESCO,II.1.1,Capital Federal,AR-C,annual,2011,gas oil combustion consumption by freight transport,29.90736,TJ,CH4,3.9,kg/TJ,116.638704,kg +969f46ae-8e16-39bf-9727-afeb2fb79dda,SESCO,II.1.1,Capital Federal,AR-C,annual,2011,gas oil combustion consumption by freight transport,29.90736,TJ,N2O,3.9,kg/TJ,116.638704,kg +ca4b26c1-3201-3021-be28-1a083987c666,SESCO,II.1.1,Chaco,AR-H,annual,2011,gas oil combustion consumption by freight transport,2.02272,TJ,CO2,74100.0,kg/TJ,149883.552,kg +a78a7b4e-ddda-3369-9f2e-5e6d45726575,SESCO,II.1.1,Chaco,AR-H,annual,2011,gas oil combustion consumption by freight transport,2.02272,TJ,CH4,3.9,kg/TJ,7.8886080000000005,kg +a78a7b4e-ddda-3369-9f2e-5e6d45726575,SESCO,II.1.1,Chaco,AR-H,annual,2011,gas oil combustion consumption by freight transport,2.02272,TJ,N2O,3.9,kg/TJ,7.8886080000000005,kg +76efd5a8-b86c-3606-90e0-5e7ddce2a446,SESCO,II.1.1,Chubut,AR-U,annual,2011,gas oil combustion consumption by freight transport,1.11972,TJ,CO2,74100.0,kg/TJ,82971.25200000001,kg +53964884-3fe5-3988-93cd-9b0fcccd26c7,SESCO,II.1.1,Chubut,AR-U,annual,2011,gas oil combustion consumption by freight transport,1.11972,TJ,CH4,3.9,kg/TJ,4.3669080000000005,kg +53964884-3fe5-3988-93cd-9b0fcccd26c7,SESCO,II.1.1,Chubut,AR-U,annual,2011,gas oil combustion consumption by freight transport,1.11972,TJ,N2O,3.9,kg/TJ,4.3669080000000005,kg +882ff5ab-57f8-3b4a-bf4b-dfef3901bdb1,SESCO,II.1.1,Corrientes,AR-W,annual,2011,gas oil combustion consumption by freight transport,0.46956,TJ,CO2,74100.0,kg/TJ,34794.396,kg +78b7d7e6-4d08-3f17-ae8f-870329136b14,SESCO,II.1.1,Corrientes,AR-W,annual,2011,gas oil combustion consumption by freight transport,0.46956,TJ,CH4,3.9,kg/TJ,1.831284,kg +78b7d7e6-4d08-3f17-ae8f-870329136b14,SESCO,II.1.1,Corrientes,AR-W,annual,2011,gas oil combustion consumption by freight transport,0.46956,TJ,N2O,3.9,kg/TJ,1.831284,kg +6c8b044f-3c3b-3032-94e5-b93dae4fb485,SESCO,II.1.1,Córdoba,AR-X,annual,2011,gas oil combustion consumption by freight transport,3.28692,TJ,CO2,74100.0,kg/TJ,243560.772,kg +540a0142-92cd-3370-9dc9-20e4bf9b045e,SESCO,II.1.1,Córdoba,AR-X,annual,2011,gas oil combustion consumption by freight transport,3.28692,TJ,CH4,3.9,kg/TJ,12.818988,kg +540a0142-92cd-3370-9dc9-20e4bf9b045e,SESCO,II.1.1,Córdoba,AR-X,annual,2011,gas oil combustion consumption by freight transport,3.28692,TJ,N2O,3.9,kg/TJ,12.818988,kg +4aa8535e-5d51-3fe4-884a-8db05afee8e9,SESCO,II.1.1,Entre Rios,AR-E,annual,2011,gas oil combustion consumption by freight transport,1.69764,TJ,CO2,74100.0,kg/TJ,125795.124,kg +ed3f967e-dad6-3130-b2c1-df80617cbd8e,SESCO,II.1.1,Entre Rios,AR-E,annual,2011,gas oil combustion consumption by freight transport,1.69764,TJ,CH4,3.9,kg/TJ,6.620796,kg +ed3f967e-dad6-3130-b2c1-df80617cbd8e,SESCO,II.1.1,Entre Rios,AR-E,annual,2011,gas oil combustion consumption by freight transport,1.69764,TJ,N2O,3.9,kg/TJ,6.620796,kg +3266a5f0-7e94-35e3-a244-85b6bdee65bf,SESCO,II.1.1,Formosa,AR-P,annual,2011,gas oil combustion consumption by freight transport,0.14448,TJ,CO2,74100.0,kg/TJ,10705.967999999999,kg +b850ec85-6d63-361b-a71b-bd582ee6fb00,SESCO,II.1.1,Formosa,AR-P,annual,2011,gas oil combustion consumption by freight transport,0.14448,TJ,CH4,3.9,kg/TJ,0.563472,kg +b850ec85-6d63-361b-a71b-bd582ee6fb00,SESCO,II.1.1,Formosa,AR-P,annual,2011,gas oil combustion consumption by freight transport,0.14448,TJ,N2O,3.9,kg/TJ,0.563472,kg +2f2bef49-8cda-3d75-b58f-b70bb7287f1c,SESCO,II.1.1,Jujuy,AR-Y,annual,2011,gas oil combustion consumption by freight transport,0.10836,TJ,CO2,74100.0,kg/TJ,8029.476,kg +425adcec-7882-367e-94d7-8815ba9d4ba0,SESCO,II.1.1,Jujuy,AR-Y,annual,2011,gas oil combustion consumption by freight transport,0.10836,TJ,CH4,3.9,kg/TJ,0.422604,kg +425adcec-7882-367e-94d7-8815ba9d4ba0,SESCO,II.1.1,Jujuy,AR-Y,annual,2011,gas oil combustion consumption by freight transport,0.10836,TJ,N2O,3.9,kg/TJ,0.422604,kg +c7274959-0671-3111-9342-6b90ae4e5586,SESCO,II.1.1,La Pampa,AR-L,annual,2011,gas oil combustion consumption by freight transport,0.43344,TJ,CO2,74100.0,kg/TJ,32117.904,kg +db47159f-9f3f-3a6c-a080-5ba571848ee9,SESCO,II.1.1,La Pampa,AR-L,annual,2011,gas oil combustion consumption by freight transport,0.43344,TJ,CH4,3.9,kg/TJ,1.690416,kg +db47159f-9f3f-3a6c-a080-5ba571848ee9,SESCO,II.1.1,La Pampa,AR-L,annual,2011,gas oil combustion consumption by freight transport,0.43344,TJ,N2O,3.9,kg/TJ,1.690416,kg +2b86252a-aa17-3524-af2d-d11552b7975e,SESCO,II.1.1,La Rioja,AR-F,annual,2011,gas oil combustion consumption by freight transport,0.07224,TJ,CO2,74100.0,kg/TJ,5352.9839999999995,kg +3a77a225-7610-3b5b-9287-3a8a6a499a15,SESCO,II.1.1,La Rioja,AR-F,annual,2011,gas oil combustion consumption by freight transport,0.07224,TJ,CH4,3.9,kg/TJ,0.281736,kg +3a77a225-7610-3b5b-9287-3a8a6a499a15,SESCO,II.1.1,La Rioja,AR-F,annual,2011,gas oil combustion consumption by freight transport,0.07224,TJ,N2O,3.9,kg/TJ,0.281736,kg +dc128501-b7d0-3119-9776-1dd72524cc8a,SESCO,II.1.1,Mendoza,AR-M,annual,2011,gas oil combustion consumption by freight transport,2.13108,TJ,CO2,74100.0,kg/TJ,157913.028,kg +b3e120b2-7c18-311b-af75-5283a53fc8ad,SESCO,II.1.1,Mendoza,AR-M,annual,2011,gas oil combustion consumption by freight transport,2.13108,TJ,CH4,3.9,kg/TJ,8.311212,kg +b3e120b2-7c18-311b-af75-5283a53fc8ad,SESCO,II.1.1,Mendoza,AR-M,annual,2011,gas oil combustion consumption by freight transport,2.13108,TJ,N2O,3.9,kg/TJ,8.311212,kg +179d168f-321a-38e9-a771-65c7884ee55c,SESCO,II.1.1,Misiones,AR-N,annual,2011,gas oil combustion consumption by freight transport,0.36119999999999997,TJ,CO2,74100.0,kg/TJ,26764.92,kg +26e5e1e2-9348-3821-9b8d-d4412b028f6a,SESCO,II.1.1,Misiones,AR-N,annual,2011,gas oil combustion consumption by freight transport,0.36119999999999997,TJ,CH4,3.9,kg/TJ,1.40868,kg +26e5e1e2-9348-3821-9b8d-d4412b028f6a,SESCO,II.1.1,Misiones,AR-N,annual,2011,gas oil combustion consumption by freight transport,0.36119999999999997,TJ,N2O,3.9,kg/TJ,1.40868,kg +a828ec74-074f-330c-992f-c4fc2e507200,SESCO,II.1.1,Neuquén,AR-Q,annual,2011,gas oil combustion consumption by freight transport,1.15584,TJ,CO2,74100.0,kg/TJ,85647.74399999999,kg +38097382-31fd-3b6c-998c-0f1b61652d93,SESCO,II.1.1,Neuquén,AR-Q,annual,2011,gas oil combustion consumption by freight transport,1.15584,TJ,CH4,3.9,kg/TJ,4.507776,kg +38097382-31fd-3b6c-998c-0f1b61652d93,SESCO,II.1.1,Neuquén,AR-Q,annual,2011,gas oil combustion consumption by freight transport,1.15584,TJ,N2O,3.9,kg/TJ,4.507776,kg +5216dbcd-5fe7-388e-a706-ae560f6a92b4,SESCO,II.1.1,Rio Negro,AR-R,annual,2011,gas oil combustion consumption by freight transport,0.50568,TJ,CO2,74100.0,kg/TJ,37470.888,kg +6fc81f89-141d-3277-819a-5016a2ebac5d,SESCO,II.1.1,Rio Negro,AR-R,annual,2011,gas oil combustion consumption by freight transport,0.50568,TJ,CH4,3.9,kg/TJ,1.9721520000000001,kg +6fc81f89-141d-3277-819a-5016a2ebac5d,SESCO,II.1.1,Rio Negro,AR-R,annual,2011,gas oil combustion consumption by freight transport,0.50568,TJ,N2O,3.9,kg/TJ,1.9721520000000001,kg +8ac1c000-9866-327e-97f4-54cb28750c29,SESCO,II.1.1,Salta,AR-A,annual,2011,gas oil combustion consumption by freight transport,1.04748,TJ,CO2,74100.0,kg/TJ,77618.268,kg +a762e3fa-2f03-33d9-8443-135af5aca062,SESCO,II.1.1,Salta,AR-A,annual,2011,gas oil combustion consumption by freight transport,1.04748,TJ,CH4,3.9,kg/TJ,4.085172,kg +a762e3fa-2f03-33d9-8443-135af5aca062,SESCO,II.1.1,Salta,AR-A,annual,2011,gas oil combustion consumption by freight transport,1.04748,TJ,N2O,3.9,kg/TJ,4.085172,kg +fcd1acb9-004f-3a44-bc57-e0ea3fa984f4,SESCO,II.1.1,San Juan,AR-J,annual,2011,gas oil combustion consumption by freight transport,0.18059999999999998,TJ,CO2,74100.0,kg/TJ,13382.46,kg +915fe689-ba13-3c17-95cb-6c71a83471b5,SESCO,II.1.1,San Juan,AR-J,annual,2011,gas oil combustion consumption by freight transport,0.18059999999999998,TJ,CH4,3.9,kg/TJ,0.70434,kg +915fe689-ba13-3c17-95cb-6c71a83471b5,SESCO,II.1.1,San Juan,AR-J,annual,2011,gas oil combustion consumption by freight transport,0.18059999999999998,TJ,N2O,3.9,kg/TJ,0.70434,kg +3e15c984-2e8f-3f8d-94e0-6e21824cb623,SESCO,II.1.1,San Luis,AR-D,annual,2011,gas oil combustion consumption by freight transport,0.36119999999999997,TJ,CO2,74100.0,kg/TJ,26764.92,kg +166bcf8f-cfca-3d06-a441-bf9b914fed2a,SESCO,II.1.1,San Luis,AR-D,annual,2011,gas oil combustion consumption by freight transport,0.36119999999999997,TJ,CH4,3.9,kg/TJ,1.40868,kg +166bcf8f-cfca-3d06-a441-bf9b914fed2a,SESCO,II.1.1,San Luis,AR-D,annual,2011,gas oil combustion consumption by freight transport,0.36119999999999997,TJ,N2O,3.9,kg/TJ,1.40868,kg +242475b1-39c7-3f77-8def-a06fd3e4cad9,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2011,gas oil combustion consumption by freight transport,0.28896,TJ,CO2,74100.0,kg/TJ,21411.935999999998,kg +c063cf8a-f210-3de5-8334-89b44a5e068c,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2011,gas oil combustion consumption by freight transport,0.28896,TJ,CH4,3.9,kg/TJ,1.126944,kg +c063cf8a-f210-3de5-8334-89b44a5e068c,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2011,gas oil combustion consumption by freight transport,0.28896,TJ,N2O,3.9,kg/TJ,1.126944,kg +e9cf7dc9-0745-331f-9935-436d0af77ea7,SESCO,II.1.1,Santa Fe,AR-S,annual,2011,gas oil combustion consumption by freight transport,5.92368,TJ,CO2,74100.0,kg/TJ,438944.688,kg +f3fe4f16-0f97-3063-961e-9216d7199f1a,SESCO,II.1.1,Santa Fe,AR-S,annual,2011,gas oil combustion consumption by freight transport,5.92368,TJ,CH4,3.9,kg/TJ,23.102352,kg +f3fe4f16-0f97-3063-961e-9216d7199f1a,SESCO,II.1.1,Santa Fe,AR-S,annual,2011,gas oil combustion consumption by freight transport,5.92368,TJ,N2O,3.9,kg/TJ,23.102352,kg +30214e35-51c6-34fe-b4ed-f3140282a42c,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2011,gas oil combustion consumption by freight transport,0.36119999999999997,TJ,CO2,74100.0,kg/TJ,26764.92,kg +6773ee25-a1e6-3f80-ab5d-27ea533b7ef9,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2011,gas oil combustion consumption by freight transport,0.36119999999999997,TJ,CH4,3.9,kg/TJ,1.40868,kg +6773ee25-a1e6-3f80-ab5d-27ea533b7ef9,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2011,gas oil combustion consumption by freight transport,0.36119999999999997,TJ,N2O,3.9,kg/TJ,1.40868,kg +fa048901-ed20-33c4-8418-9efab2e3f084,SESCO,II.1.1,Tucuman,AR-T,annual,2011,gas oil combustion consumption by freight transport,0.61404,TJ,CO2,74100.0,kg/TJ,45500.364,kg +34ab5da4-60f9-3342-8789-3bb3edd461d7,SESCO,II.1.1,Tucuman,AR-T,annual,2011,gas oil combustion consumption by freight transport,0.61404,TJ,CH4,3.9,kg/TJ,2.394756,kg +34ab5da4-60f9-3342-8789-3bb3edd461d7,SESCO,II.1.1,Tucuman,AR-T,annual,2011,gas oil combustion consumption by freight transport,0.61404,TJ,N2O,3.9,kg/TJ,2.394756,kg +8812585f-aa4f-33ad-aade-32a79a17ca4e,SESCO,II.1.1,Buenos Aires,AR-B,annual,2011,jet kerosene combustion consumption by freight transport,1.8871799999999996,TJ,CO2,71500.0,kg/TJ,134933.36999999997,kg +8df51a08-c2c4-34f6-ab32-e2f6d1f44958,SESCO,II.1.1,Buenos Aires,AR-B,annual,2011,jet kerosene combustion consumption by freight transport,1.8871799999999996,TJ,CH4,0.5,kg/TJ,0.9435899999999998,kg +327f8496-d160-33f4-b559-80f5779b4a69,SESCO,II.1.1,Buenos Aires,AR-B,annual,2011,jet kerosene combustion consumption by freight transport,1.8871799999999996,TJ,N2O,2.0,kg/TJ,3.7743599999999993,kg +a801966e-179f-370c-9de2-e6f47542a42c,SESCO,II.1.1,Buenos Aires,AR-B,annual,2011,gas oil combustion consumption by public passenger transport,11361.25704,TJ,CO2,74100.0,kg/TJ,841869146.664,kg +bb54e185-b1a2-3d7c-acd9-2b3ab4a1cc35,SESCO,II.1.1,Buenos Aires,AR-B,annual,2011,gas oil combustion consumption by public passenger transport,11361.25704,TJ,CH4,3.9,kg/TJ,44308.902456,kg +bb54e185-b1a2-3d7c-acd9-2b3ab4a1cc35,SESCO,II.1.1,Buenos Aires,AR-B,annual,2011,gas oil combustion consumption by public passenger transport,11361.25704,TJ,N2O,3.9,kg/TJ,44308.902456,kg +80ac7d7e-59a5-3f0c-8349-136888053096,SESCO,II.1.1,Capital Federal,AR-C,annual,2011,gas oil combustion consumption by public passenger transport,2923.011,TJ,CO2,74100.0,kg/TJ,216595115.1,kg +df2ae4b8-cfed-33cc-af2b-0d91f43326ac,SESCO,II.1.1,Capital Federal,AR-C,annual,2011,gas oil combustion consumption by public passenger transport,2923.011,TJ,CH4,3.9,kg/TJ,11399.7429,kg +df2ae4b8-cfed-33cc-af2b-0d91f43326ac,SESCO,II.1.1,Capital Federal,AR-C,annual,2011,gas oil combustion consumption by public passenger transport,2923.011,TJ,N2O,3.9,kg/TJ,11399.7429,kg +2f22b2e1-22ef-35cf-a99c-dc3d1a0a249f,SESCO,II.1.1,Catamarca,AR-K,annual,2011,gas oil combustion consumption by public passenger transport,169.87236,TJ,CO2,74100.0,kg/TJ,12587541.875999998,kg +f8e7e788-d90f-301c-b7d2-fedcab68ff09,SESCO,II.1.1,Catamarca,AR-K,annual,2011,gas oil combustion consumption by public passenger transport,169.87236,TJ,CH4,3.9,kg/TJ,662.5022039999999,kg +f8e7e788-d90f-301c-b7d2-fedcab68ff09,SESCO,II.1.1,Catamarca,AR-K,annual,2011,gas oil combustion consumption by public passenger transport,169.87236,TJ,N2O,3.9,kg/TJ,662.5022039999999,kg +4d059f8c-cc2d-3478-a328-102f0e03ddf5,SESCO,II.1.1,Chaco,AR-H,annual,2011,gas oil combustion consumption by public passenger transport,504.19908,TJ,CO2,74100.0,kg/TJ,37361151.828,kg +b31ada9c-c0f0-36da-8d22-36e7d45a19bd,SESCO,II.1.1,Chaco,AR-H,annual,2011,gas oil combustion consumption by public passenger transport,504.19908,TJ,CH4,3.9,kg/TJ,1966.3764119999998,kg +b31ada9c-c0f0-36da-8d22-36e7d45a19bd,SESCO,II.1.1,Chaco,AR-H,annual,2011,gas oil combustion consumption by public passenger transport,504.19908,TJ,N2O,3.9,kg/TJ,1966.3764119999998,kg +6227ec8f-666d-336f-8b6d-bf2215a75406,SESCO,II.1.1,Chubut,AR-U,annual,2011,gas oil combustion consumption by public passenger transport,176.59068,TJ,CO2,74100.0,kg/TJ,13085369.388,kg +d5735e30-2076-390d-9b47-f9970a58936d,SESCO,II.1.1,Chubut,AR-U,annual,2011,gas oil combustion consumption by public passenger transport,176.59068,TJ,CH4,3.9,kg/TJ,688.7036519999999,kg +d5735e30-2076-390d-9b47-f9970a58936d,SESCO,II.1.1,Chubut,AR-U,annual,2011,gas oil combustion consumption by public passenger transport,176.59068,TJ,N2O,3.9,kg/TJ,688.7036519999999,kg +6736d244-efe3-3269-9115-1c65b381d645,SESCO,II.1.1,Corrientes,AR-W,annual,2011,gas oil combustion consumption by public passenger transport,483.71904,TJ,CO2,74100.0,kg/TJ,35843580.864,kg +bd39c8b6-78c1-3aab-a80d-59776451cae7,SESCO,II.1.1,Corrientes,AR-W,annual,2011,gas oil combustion consumption by public passenger transport,483.71904,TJ,CH4,3.9,kg/TJ,1886.504256,kg +bd39c8b6-78c1-3aab-a80d-59776451cae7,SESCO,II.1.1,Corrientes,AR-W,annual,2011,gas oil combustion consumption by public passenger transport,483.71904,TJ,N2O,3.9,kg/TJ,1886.504256,kg +e1982034-b344-3229-907d-74cb8d2db195,SESCO,II.1.1,Córdoba,AR-X,annual,2011,gas oil combustion consumption by public passenger transport,2434.34352,TJ,CO2,74100.0,kg/TJ,180384854.832,kg +d0d488c1-98f0-3b34-8ff0-9a6476d0a0bc,SESCO,II.1.1,Córdoba,AR-X,annual,2011,gas oil combustion consumption by public passenger transport,2434.34352,TJ,CH4,3.9,kg/TJ,9493.939728,kg +d0d488c1-98f0-3b34-8ff0-9a6476d0a0bc,SESCO,II.1.1,Córdoba,AR-X,annual,2011,gas oil combustion consumption by public passenger transport,2434.34352,TJ,N2O,3.9,kg/TJ,9493.939728,kg +286022d7-72b3-31d5-b08e-b3cb269f78e8,SESCO,II.1.1,Entre Rios,AR-E,annual,2011,gas oil combustion consumption by public passenger transport,419.20871999999997,TJ,CO2,74100.0,kg/TJ,31063366.152,kg +05db1d2d-0610-3f9e-ba83-dc6c3716c4fc,SESCO,II.1.1,Entre Rios,AR-E,annual,2011,gas oil combustion consumption by public passenger transport,419.20871999999997,TJ,CH4,3.9,kg/TJ,1634.9140079999997,kg +05db1d2d-0610-3f9e-ba83-dc6c3716c4fc,SESCO,II.1.1,Entre Rios,AR-E,annual,2011,gas oil combustion consumption by public passenger transport,419.20871999999997,TJ,N2O,3.9,kg/TJ,1634.9140079999997,kg +f402b1d1-5d29-38dc-935b-43d3c88745af,SESCO,II.1.1,Formosa,AR-P,annual,2011,gas oil combustion consumption by public passenger transport,50.06232,TJ,CO2,74100.0,kg/TJ,3709617.912,kg +dcfcd39f-ddfd-3441-9506-7bca40e8abdd,SESCO,II.1.1,Formosa,AR-P,annual,2011,gas oil combustion consumption by public passenger transport,50.06232,TJ,CH4,3.9,kg/TJ,195.243048,kg +dcfcd39f-ddfd-3441-9506-7bca40e8abdd,SESCO,II.1.1,Formosa,AR-P,annual,2011,gas oil combustion consumption by public passenger transport,50.06232,TJ,N2O,3.9,kg/TJ,195.243048,kg +a05a82a8-523b-3991-a005-4b9cad4b3deb,SESCO,II.1.1,Jujuy,AR-Y,annual,2011,gas oil combustion consumption by public passenger transport,516.6966,TJ,CO2,74100.0,kg/TJ,38287218.06,kg +d1459bde-9e14-3df5-b499-b4a3652f6019,SESCO,II.1.1,Jujuy,AR-Y,annual,2011,gas oil combustion consumption by public passenger transport,516.6966,TJ,CH4,3.9,kg/TJ,2015.11674,kg +d1459bde-9e14-3df5-b499-b4a3652f6019,SESCO,II.1.1,Jujuy,AR-Y,annual,2011,gas oil combustion consumption by public passenger transport,516.6966,TJ,N2O,3.9,kg/TJ,2015.11674,kg +3b8a749c-8f7a-347b-a57f-9acf8619de4d,SESCO,II.1.1,La Pampa,AR-L,annual,2011,gas oil combustion consumption by public passenger transport,14.33964,TJ,CO2,74100.0,kg/TJ,1062567.324,kg +59198d0b-9225-3c6f-b255-662b5b1aa671,SESCO,II.1.1,La Pampa,AR-L,annual,2011,gas oil combustion consumption by public passenger transport,14.33964,TJ,CH4,3.9,kg/TJ,55.924595999999994,kg +59198d0b-9225-3c6f-b255-662b5b1aa671,SESCO,II.1.1,La Pampa,AR-L,annual,2011,gas oil combustion consumption by public passenger transport,14.33964,TJ,N2O,3.9,kg/TJ,55.924595999999994,kg +2ad4fcee-aaed-3625-8300-6cb4592bee56,SESCO,II.1.1,La Rioja,AR-F,annual,2011,gas oil combustion consumption by public passenger transport,115.43952,TJ,CO2,74100.0,kg/TJ,8554068.432,kg +08dd3cef-3e26-3ee9-bd83-66c7e71367c2,SESCO,II.1.1,La Rioja,AR-F,annual,2011,gas oil combustion consumption by public passenger transport,115.43952,TJ,CH4,3.9,kg/TJ,450.214128,kg +08dd3cef-3e26-3ee9-bd83-66c7e71367c2,SESCO,II.1.1,La Rioja,AR-F,annual,2011,gas oil combustion consumption by public passenger transport,115.43952,TJ,N2O,3.9,kg/TJ,450.214128,kg +9d808706-9173-3312-8396-6ae236c54488,SESCO,II.1.1,Mendoza,AR-M,annual,2011,gas oil combustion consumption by public passenger transport,1557.8555999999999,TJ,CO2,74100.0,kg/TJ,115437099.96,kg +b827a316-b747-3e08-9e9c-18f0aae350e6,SESCO,II.1.1,Mendoza,AR-M,annual,2011,gas oil combustion consumption by public passenger transport,1557.8555999999999,TJ,CH4,3.9,kg/TJ,6075.636839999999,kg +b827a316-b747-3e08-9e9c-18f0aae350e6,SESCO,II.1.1,Mendoza,AR-M,annual,2011,gas oil combustion consumption by public passenger transport,1557.8555999999999,TJ,N2O,3.9,kg/TJ,6075.636839999999,kg +fccc423d-6fb0-3b64-852a-cce9afe3f529,SESCO,II.1.1,Misiones,AR-N,annual,2011,gas oil combustion consumption by public passenger transport,814.90332,TJ,CO2,74100.0,kg/TJ,60384336.012,kg +e5223648-b8a6-33ce-bf27-4a43e78c98fc,SESCO,II.1.1,Misiones,AR-N,annual,2011,gas oil combustion consumption by public passenger transport,814.90332,TJ,CH4,3.9,kg/TJ,3178.122948,kg +e5223648-b8a6-33ce-bf27-4a43e78c98fc,SESCO,II.1.1,Misiones,AR-N,annual,2011,gas oil combustion consumption by public passenger transport,814.90332,TJ,N2O,3.9,kg/TJ,3178.122948,kg +93ff211d-ca75-3720-bdb0-03176c4c83be,SESCO,II.1.1,Neuquén,AR-Q,annual,2011,gas oil combustion consumption by public passenger transport,229.75932,TJ,CO2,74100.0,kg/TJ,17025165.612,kg +2d344fd0-674e-3a36-a255-16b9df88a2b3,SESCO,II.1.1,Neuquén,AR-Q,annual,2011,gas oil combustion consumption by public passenger transport,229.75932,TJ,CH4,3.9,kg/TJ,896.061348,kg +2d344fd0-674e-3a36-a255-16b9df88a2b3,SESCO,II.1.1,Neuquén,AR-Q,annual,2011,gas oil combustion consumption by public passenger transport,229.75932,TJ,N2O,3.9,kg/TJ,896.061348,kg +23beeebf-14b9-384a-938e-f5bd724f587d,SESCO,II.1.1,Rio Negro,AR-R,annual,2011,gas oil combustion consumption by public passenger transport,231.45696,TJ,CO2,74100.0,kg/TJ,17150960.736,kg +8bd17908-7347-362f-92fa-542afb687d1f,SESCO,II.1.1,Rio Negro,AR-R,annual,2011,gas oil combustion consumption by public passenger transport,231.45696,TJ,CH4,3.9,kg/TJ,902.682144,kg +8bd17908-7347-362f-92fa-542afb687d1f,SESCO,II.1.1,Rio Negro,AR-R,annual,2011,gas oil combustion consumption by public passenger transport,231.45696,TJ,N2O,3.9,kg/TJ,902.682144,kg +91812040-29b0-36ff-8e9f-edbe04449898,SESCO,II.1.1,Salta,AR-A,annual,2011,gas oil combustion consumption by public passenger transport,929.76492,TJ,CO2,74100.0,kg/TJ,68895580.572,kg +6cb3e639-52ad-3800-acc2-4b7f50699969,SESCO,II.1.1,Salta,AR-A,annual,2011,gas oil combustion consumption by public passenger transport,929.76492,TJ,CH4,3.9,kg/TJ,3626.0831879999996,kg +6cb3e639-52ad-3800-acc2-4b7f50699969,SESCO,II.1.1,Salta,AR-A,annual,2011,gas oil combustion consumption by public passenger transport,929.76492,TJ,N2O,3.9,kg/TJ,3626.0831879999996,kg +56198d8c-bc39-3cfd-bc38-aef3c6fe8293,SESCO,II.1.1,San Juan,AR-J,annual,2011,gas oil combustion consumption by public passenger transport,474.29172,TJ,CO2,74100.0,kg/TJ,35145016.452,kg +1e992e14-8926-30ca-bc41-a1a8b1a4f13c,SESCO,II.1.1,San Juan,AR-J,annual,2011,gas oil combustion consumption by public passenger transport,474.29172,TJ,CH4,3.9,kg/TJ,1849.7377079999999,kg +1e992e14-8926-30ca-bc41-a1a8b1a4f13c,SESCO,II.1.1,San Juan,AR-J,annual,2011,gas oil combustion consumption by public passenger transport,474.29172,TJ,N2O,3.9,kg/TJ,1849.7377079999999,kg +064b6576-d9a6-3b95-b8c3-37c9bb9ac1dd,SESCO,II.1.1,San Luis,AR-D,annual,2011,gas oil combustion consumption by public passenger transport,103.37544,TJ,CO2,74100.0,kg/TJ,7660120.104,kg +790dc665-17ee-313a-b3bf-4c09b7889dc2,SESCO,II.1.1,San Luis,AR-D,annual,2011,gas oil combustion consumption by public passenger transport,103.37544,TJ,CH4,3.9,kg/TJ,403.16421599999995,kg +790dc665-17ee-313a-b3bf-4c09b7889dc2,SESCO,II.1.1,San Luis,AR-D,annual,2011,gas oil combustion consumption by public passenger transport,103.37544,TJ,N2O,3.9,kg/TJ,403.16421599999995,kg +b8544d2a-8cd8-3b57-8bde-88f403562b0a,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2011,gas oil combustion consumption by public passenger transport,80.367,TJ,CO2,74100.0,kg/TJ,5955194.7,kg +100660db-666a-3610-bfbc-1477924c8625,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2011,gas oil combustion consumption by public passenger transport,80.367,TJ,CH4,3.9,kg/TJ,313.4313,kg +100660db-666a-3610-bfbc-1477924c8625,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2011,gas oil combustion consumption by public passenger transport,80.367,TJ,N2O,3.9,kg/TJ,313.4313,kg +f5227bf6-792f-3c72-b3d7-ca27dd0863a0,SESCO,II.1.1,Santa Fe,AR-S,annual,2011,gas oil combustion consumption by public passenger transport,1399.90284,TJ,CO2,74100.0,kg/TJ,103732800.44399999,kg +f5a310d9-ab33-3849-839a-6e096901ac4a,SESCO,II.1.1,Santa Fe,AR-S,annual,2011,gas oil combustion consumption by public passenger transport,1399.90284,TJ,CH4,3.9,kg/TJ,5459.621075999999,kg +f5a310d9-ab33-3849-839a-6e096901ac4a,SESCO,II.1.1,Santa Fe,AR-S,annual,2011,gas oil combustion consumption by public passenger transport,1399.90284,TJ,N2O,3.9,kg/TJ,5459.621075999999,kg +0156e03e-3780-3508-bbc0-c7dd2d6c6e0e,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2011,gas oil combustion consumption by public passenger transport,364.16184,TJ,CO2,74100.0,kg/TJ,26984392.344,kg +eb44ae64-c122-3e0d-8020-b6d53ff245d9,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2011,gas oil combustion consumption by public passenger transport,364.16184,TJ,CH4,3.9,kg/TJ,1420.231176,kg +eb44ae64-c122-3e0d-8020-b6d53ff245d9,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2011,gas oil combustion consumption by public passenger transport,364.16184,TJ,N2O,3.9,kg/TJ,1420.231176,kg +0526708d-37fa-3304-a932-75d49c1ba877,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2011,gas oil combustion consumption by public passenger transport,17.987759999999998,TJ,CO2,74100.0,kg/TJ,1332893.0159999998,kg +a32d0e72-4134-343d-90ac-db43cd7aa747,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2011,gas oil combustion consumption by public passenger transport,17.987759999999998,TJ,CH4,3.9,kg/TJ,70.15226399999999,kg +a32d0e72-4134-343d-90ac-db43cd7aa747,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2011,gas oil combustion consumption by public passenger transport,17.987759999999998,TJ,N2O,3.9,kg/TJ,70.15226399999999,kg +99bf8494-73ba-3ebb-b605-9885209ff768,SESCO,II.1.1,Tucuman,AR-T,annual,2011,gas oil combustion consumption by public passenger transport,1098.55368,TJ,CO2,74100.0,kg/TJ,81402827.688,kg +4c33477b-7f98-3e2d-8a9f-28b884137176,SESCO,II.1.1,Tucuman,AR-T,annual,2011,gas oil combustion consumption by public passenger transport,1098.55368,TJ,CH4,3.9,kg/TJ,4284.3593519999995,kg +4c33477b-7f98-3e2d-8a9f-28b884137176,SESCO,II.1.1,Tucuman,AR-T,annual,2011,gas oil combustion consumption by public passenger transport,1098.55368,TJ,N2O,3.9,kg/TJ,4284.3593519999995,kg +84e0bbcf-ed29-315f-a85e-2187553b0672,SESCO,II.5.1,Buenos Aires,AR-B,annual,2012,gas oil combustion consumption by agriculture machines,0.65016,TJ,CO2,74100.0,kg/TJ,48176.856,kg +f44555ee-7e37-32ed-9acd-3edc0dac4830,SESCO,II.5.1,Buenos Aires,AR-B,annual,2012,gas oil combustion consumption by agriculture machines,0.65016,TJ,CH4,3.9,kg/TJ,2.535624,kg +f44555ee-7e37-32ed-9acd-3edc0dac4830,SESCO,II.5.1,Buenos Aires,AR-B,annual,2012,gas oil combustion consumption by agriculture machines,0.65016,TJ,N2O,3.9,kg/TJ,2.535624,kg +ec772ab6-b665-3635-b61f-6e30883d8ce8,SESCO,II.5.1,Santa Fe,AR-S,annual,2012,gas oil combustion consumption by agriculture machines,0.68628,TJ,CO2,74100.0,kg/TJ,50853.348,kg +1baa35d5-422d-3f0c-8898-e96487689493,SESCO,II.5.1,Santa Fe,AR-S,annual,2012,gas oil combustion consumption by agriculture machines,0.68628,TJ,CH4,3.9,kg/TJ,2.676492,kg +1baa35d5-422d-3f0c-8898-e96487689493,SESCO,II.5.1,Santa Fe,AR-S,annual,2012,gas oil combustion consumption by agriculture machines,0.68628,TJ,N2O,3.9,kg/TJ,2.676492,kg +087f4d69-6aea-3ac0-9203-17fe797695bb,SESCO,II.1.1,Capital Federal,AR-C,annual,2012,gas oil combustion consumption by freight transport,0.5418,TJ,CO2,74100.0,kg/TJ,40147.38,kg +c2451603-da4a-396a-a18e-a8408c6f6210,SESCO,II.1.1,Capital Federal,AR-C,annual,2012,gas oil combustion consumption by freight transport,0.5418,TJ,CH4,3.9,kg/TJ,2.1130199999999997,kg +c2451603-da4a-396a-a18e-a8408c6f6210,SESCO,II.1.1,Capital Federal,AR-C,annual,2012,gas oil combustion consumption by freight transport,0.5418,TJ,N2O,3.9,kg/TJ,2.1130199999999997,kg +a028fc3e-2a8e-3fd6-8c7a-5f48d4131508,SESCO,II.5.1,Buenos Aires,AR-B,annual,2012,gas oil combustion consumption by agriculture machines,266.45724,TJ,CO2,74100.0,kg/TJ,19744481.484,kg +31cf76e4-e095-3251-b884-b2573e85abbe,SESCO,II.5.1,Buenos Aires,AR-B,annual,2012,gas oil combustion consumption by agriculture machines,266.45724,TJ,CH4,3.9,kg/TJ,1039.183236,kg +31cf76e4-e095-3251-b884-b2573e85abbe,SESCO,II.5.1,Buenos Aires,AR-B,annual,2012,gas oil combustion consumption by agriculture machines,266.45724,TJ,N2O,3.9,kg/TJ,1039.183236,kg +c5bbf2e8-adc6-38b8-bc72-08ec49fd976b,SESCO,II.1.1,Capital Federal,AR-C,annual,2012,gas oil combustion consumption by to the public,48.25632,TJ,CO2,74100.0,kg/TJ,3575793.3120000004,kg +1f45bced-95ec-3e42-bca6-85ab2e873e87,SESCO,II.1.1,Capital Federal,AR-C,annual,2012,gas oil combustion consumption by to the public,48.25632,TJ,CH4,3.9,kg/TJ,188.199648,kg +1f45bced-95ec-3e42-bca6-85ab2e873e87,SESCO,II.1.1,Capital Federal,AR-C,annual,2012,gas oil combustion consumption by to the public,48.25632,TJ,N2O,3.9,kg/TJ,188.199648,kg +278d7616-1c11-39fb-9f8d-fe0ee662eb78,SESCO,II.1.1,Buenos Aires,AR-B,annual,2012,gas oil combustion consumption by public passenger transport,256.05468,TJ,CO2,74100.0,kg/TJ,18973651.788000003,kg +384719d7-1816-30ff-9936-45305579a303,SESCO,II.1.1,Buenos Aires,AR-B,annual,2012,gas oil combustion consumption by public passenger transport,256.05468,TJ,CH4,3.9,kg/TJ,998.6132520000001,kg +384719d7-1816-30ff-9936-45305579a303,SESCO,II.1.1,Buenos Aires,AR-B,annual,2012,gas oil combustion consumption by public passenger transport,256.05468,TJ,N2O,3.9,kg/TJ,998.6132520000001,kg +77411db6-e928-3b48-8915-6ee287d8a008,SESCO,II.1.1,Capital Federal,AR-C,annual,2012,gas oil combustion consumption by public passenger transport,105.50652,TJ,CO2,74100.0,kg/TJ,7818033.131999999,kg +afa40f11-2773-39ea-a108-29f598acd34b,SESCO,II.1.1,Capital Federal,AR-C,annual,2012,gas oil combustion consumption by public passenger transport,105.50652,TJ,CH4,3.9,kg/TJ,411.47542799999997,kg +afa40f11-2773-39ea-a108-29f598acd34b,SESCO,II.1.1,Capital Federal,AR-C,annual,2012,gas oil combustion consumption by public passenger transport,105.50652,TJ,N2O,3.9,kg/TJ,411.47542799999997,kg +c9d82f0b-d6cc-3b27-8c88-0d77800d01c3,SESCO,II.1.1,Córdoba,AR-X,annual,2012,gas oil combustion consumption by public passenger transport,8.81328,TJ,CO2,74100.0,kg/TJ,653064.0480000001,kg +b98ce312-fa63-3348-9479-7cb29bcadb96,SESCO,II.1.1,Córdoba,AR-X,annual,2012,gas oil combustion consumption by public passenger transport,8.81328,TJ,CH4,3.9,kg/TJ,34.371792,kg +b98ce312-fa63-3348-9479-7cb29bcadb96,SESCO,II.1.1,Córdoba,AR-X,annual,2012,gas oil combustion consumption by public passenger transport,8.81328,TJ,N2O,3.9,kg/TJ,34.371792,kg +0488adce-f4a5-3755-b197-f1d95bcaec2d,SESCO,II.1.1,Entre Rios,AR-E,annual,2012,gas oil combustion consumption by public passenger transport,42.838319999999996,TJ,CO2,74100.0,kg/TJ,3174319.5119999996,kg +97cfd320-e325-3894-89a1-283d91f450df,SESCO,II.1.1,Entre Rios,AR-E,annual,2012,gas oil combustion consumption by public passenger transport,42.838319999999996,TJ,CH4,3.9,kg/TJ,167.069448,kg +97cfd320-e325-3894-89a1-283d91f450df,SESCO,II.1.1,Entre Rios,AR-E,annual,2012,gas oil combustion consumption by public passenger transport,42.838319999999996,TJ,N2O,3.9,kg/TJ,167.069448,kg +1b9c7390-9565-3f00-b58f-e62bb6f6df9a,SESCO,II.1.1,Mendoza,AR-M,annual,2012,gas oil combustion consumption by public passenger transport,16.7958,TJ,CO2,74100.0,kg/TJ,1244568.78,kg +88971981-8806-3092-bfce-910a162f2cbd,SESCO,II.1.1,Mendoza,AR-M,annual,2012,gas oil combustion consumption by public passenger transport,16.7958,TJ,CH4,3.9,kg/TJ,65.50362,kg +88971981-8806-3092-bfce-910a162f2cbd,SESCO,II.1.1,Mendoza,AR-M,annual,2012,gas oil combustion consumption by public passenger transport,16.7958,TJ,N2O,3.9,kg/TJ,65.50362,kg +9ad1be9c-5dc7-3dcd-8d19-4bdcbbcd41f3,SESCO,II.1.1,Misiones,AR-N,annual,2012,gas oil combustion consumption by public passenger transport,21.45528,TJ,CO2,74100.0,kg/TJ,1589836.248,kg +fb755524-196a-3468-a419-7bcc8cfcab22,SESCO,II.1.1,Misiones,AR-N,annual,2012,gas oil combustion consumption by public passenger transport,21.45528,TJ,CH4,3.9,kg/TJ,83.675592,kg +fb755524-196a-3468-a419-7bcc8cfcab22,SESCO,II.1.1,Misiones,AR-N,annual,2012,gas oil combustion consumption by public passenger transport,21.45528,TJ,N2O,3.9,kg/TJ,83.675592,kg +2256f562-811a-3c2b-9b3e-dc6ae64ef779,SESCO,II.1.1,Salta,AR-A,annual,2012,gas oil combustion consumption by public passenger transport,6.57384,TJ,CO2,74100.0,kg/TJ,487121.544,kg +1564c4e0-1fc7-3be1-920a-8934934f313c,SESCO,II.1.1,Salta,AR-A,annual,2012,gas oil combustion consumption by public passenger transport,6.57384,TJ,CH4,3.9,kg/TJ,25.637976,kg +1564c4e0-1fc7-3be1-920a-8934934f313c,SESCO,II.1.1,Salta,AR-A,annual,2012,gas oil combustion consumption by public passenger transport,6.57384,TJ,N2O,3.9,kg/TJ,25.637976,kg +e85be9ba-bb45-3c67-90e7-67d6b0db75e2,SESCO,II.1.1,San Juan,AR-J,annual,2012,gas oil combustion consumption by public passenger transport,8.127,TJ,CO2,74100.0,kg/TJ,602210.7000000001,kg +ab283a4a-5451-3a9a-9dec-0bde2adc4b99,SESCO,II.1.1,San Juan,AR-J,annual,2012,gas oil combustion consumption by public passenger transport,8.127,TJ,CH4,3.9,kg/TJ,31.695300000000003,kg +ab283a4a-5451-3a9a-9dec-0bde2adc4b99,SESCO,II.1.1,San Juan,AR-J,annual,2012,gas oil combustion consumption by public passenger transport,8.127,TJ,N2O,3.9,kg/TJ,31.695300000000003,kg +dd6a1999-da8d-3de9-89a9-ee8a0c7e60a2,SESCO,II.1.1,Santa Fe,AR-S,annual,2012,gas oil combustion consumption by public passenger transport,24.45324,TJ,CO2,74100.0,kg/TJ,1811985.084,kg +e50c3643-3dd7-3cae-b1c3-2a9b5ad8dd2f,SESCO,II.1.1,Santa Fe,AR-S,annual,2012,gas oil combustion consumption by public passenger transport,24.45324,TJ,CH4,3.9,kg/TJ,95.367636,kg +e50c3643-3dd7-3cae-b1c3-2a9b5ad8dd2f,SESCO,II.1.1,Santa Fe,AR-S,annual,2012,gas oil combustion consumption by public passenger transport,24.45324,TJ,N2O,3.9,kg/TJ,95.367636,kg +49990c35-5374-30ca-98a1-f61796c7f25b,SESCO,II.5.1,Buenos Aires,AR-B,annual,2012,gasoline combustion consumption by agriculture machines,199.1728,TJ,CO2,69300.0,kg/TJ,13802675.04,kg +d7dd125f-79ee-3214-a623-6829b382ab45,SESCO,II.5.1,Buenos Aires,AR-B,annual,2012,gasoline combustion consumption by agriculture machines,199.1728,TJ,CH4,33.0,kg/TJ,6572.7024,kg +24d18294-c897-36bd-baab-331833d7bac6,SESCO,II.5.1,Buenos Aires,AR-B,annual,2012,gasoline combustion consumption by agriculture machines,199.1728,TJ,N2O,3.2,kg/TJ,637.35296,kg +7ae424fa-8e3b-39bb-80e9-3c021e892046,SESCO,II.5.1,Córdoba,AR-X,annual,2012,gasoline combustion consumption by agriculture machines,88.6,TJ,CO2,69300.0,kg/TJ,6139980.0,kg +1395dce2-9e5d-349c-9c55-4acdac56240f,SESCO,II.5.1,Córdoba,AR-X,annual,2012,gasoline combustion consumption by agriculture machines,88.6,TJ,CH4,33.0,kg/TJ,2923.7999999999997,kg +d74c6134-6f41-365b-83e1-89bf659912fe,SESCO,II.5.1,Córdoba,AR-X,annual,2012,gasoline combustion consumption by agriculture machines,88.6,TJ,N2O,3.2,kg/TJ,283.52,kg +bd321ca1-d109-3995-a634-7353d4bb1dde,SESCO,II.5.1,Santa Fe,AR-S,annual,2012,gasoline combustion consumption by agriculture machines,259.90189799999996,TJ,CO2,69300.0,kg/TJ,18011201.5314,kg +091e388a-7ddc-3317-b829-b9fb274e24c4,SESCO,II.5.1,Santa Fe,AR-S,annual,2012,gasoline combustion consumption by agriculture machines,259.90189799999996,TJ,CH4,33.0,kg/TJ,8576.762633999999,kg +d65146c3-abef-3e0e-93b5-5067f6ba3260,SESCO,II.5.1,Santa Fe,AR-S,annual,2012,gasoline combustion consumption by agriculture machines,259.90189799999996,TJ,N2O,3.2,kg/TJ,831.6860735999999,kg +d3036eaa-b718-3d48-992c-a184344566b5,SESCO,II.5.1,Buenos Aires,AR-B,annual,2012,gas oil combustion consumption by agriculture machines,79.370088,TJ,CO2,74100.0,kg/TJ,5881323.5208,kg +89db2a94-48d1-3e0d-b0b2-1ad53ae511c8,SESCO,II.5.1,Buenos Aires,AR-B,annual,2012,gas oil combustion consumption by agriculture machines,79.370088,TJ,CH4,3.9,kg/TJ,309.5433432,kg +89db2a94-48d1-3e0d-b0b2-1ad53ae511c8,SESCO,II.5.1,Buenos Aires,AR-B,annual,2012,gas oil combustion consumption by agriculture machines,79.370088,TJ,N2O,3.9,kg/TJ,309.5433432,kg +750bfdf1-68ee-3137-a5b7-b18d13ba1cd9,SESCO,II.5.1,Capital Federal,AR-C,annual,2012,gas oil combustion consumption by agriculture machines,7.224,TJ,CO2,74100.0,kg/TJ,535298.4,kg +136f548c-166a-3c35-9840-072301f80434,SESCO,II.5.1,Capital Federal,AR-C,annual,2012,gas oil combustion consumption by agriculture machines,7.224,TJ,CH4,3.9,kg/TJ,28.1736,kg +136f548c-166a-3c35-9840-072301f80434,SESCO,II.5.1,Capital Federal,AR-C,annual,2012,gas oil combustion consumption by agriculture machines,7.224,TJ,N2O,3.9,kg/TJ,28.1736,kg +ddc2ae4e-78d0-302d-a9a3-6300b1c2ed6d,SESCO,II.5.1,Chaco,AR-H,annual,2012,gas oil combustion consumption by agriculture machines,77.0461272,TJ,CO2,74100.0,kg/TJ,5709118.02552,kg +a6efbddd-601a-39a3-b9ed-24b447773814,SESCO,II.5.1,Chaco,AR-H,annual,2012,gas oil combustion consumption by agriculture machines,77.0461272,TJ,CH4,3.9,kg/TJ,300.47989608,kg +a6efbddd-601a-39a3-b9ed-24b447773814,SESCO,II.5.1,Chaco,AR-H,annual,2012,gas oil combustion consumption by agriculture machines,77.0461272,TJ,N2O,3.9,kg/TJ,300.47989608,kg +b57835cc-a972-3ea3-80b8-77e7c3b47f81,SESCO,II.5.1,Córdoba,AR-X,annual,2012,gas oil combustion consumption by agriculture machines,36.560664,TJ,CO2,74100.0,kg/TJ,2709145.2024000003,kg +3276e06f-7cfd-3c6a-a0c3-a734da0642ee,SESCO,II.5.1,Córdoba,AR-X,annual,2012,gas oil combustion consumption by agriculture machines,36.560664,TJ,CH4,3.9,kg/TJ,142.5865896,kg +3276e06f-7cfd-3c6a-a0c3-a734da0642ee,SESCO,II.5.1,Córdoba,AR-X,annual,2012,gas oil combustion consumption by agriculture machines,36.560664,TJ,N2O,3.9,kg/TJ,142.5865896,kg +5a9ff3f6-636b-32fb-b70f-02ddffcebb71,SESCO,II.5.1,La Pampa,AR-L,annual,2012,gas oil combustion consumption by agriculture machines,22.86396,TJ,CO2,74100.0,kg/TJ,1694219.436,kg +9543368e-645b-3626-bb10-0f0eae63e27d,SESCO,II.5.1,La Pampa,AR-L,annual,2012,gas oil combustion consumption by agriculture machines,22.86396,TJ,CH4,3.9,kg/TJ,89.169444,kg +9543368e-645b-3626-bb10-0f0eae63e27d,SESCO,II.5.1,La Pampa,AR-L,annual,2012,gas oil combustion consumption by agriculture machines,22.86396,TJ,N2O,3.9,kg/TJ,89.169444,kg +0fc1d836-f315-383c-bf28-d22e6ce2c419,SESCO,II.5.1,Mendoza,AR-M,annual,2012,gas oil combustion consumption by agriculture machines,1.15584,TJ,CO2,74100.0,kg/TJ,85647.74399999999,kg +3f039bd9-a42c-3251-8853-84e0a05af018,SESCO,II.5.1,Mendoza,AR-M,annual,2012,gas oil combustion consumption by agriculture machines,1.15584,TJ,CH4,3.9,kg/TJ,4.507776,kg +3f039bd9-a42c-3251-8853-84e0a05af018,SESCO,II.5.1,Mendoza,AR-M,annual,2012,gas oil combustion consumption by agriculture machines,1.15584,TJ,N2O,3.9,kg/TJ,4.507776,kg +d5dbdd10-24c3-36f1-8d6a-25d27630ad8e,SESCO,II.5.1,Rio Negro,AR-R,annual,2012,gas oil combustion consumption by agriculture machines,16.976399999999998,TJ,CO2,74100.0,kg/TJ,1257951.2399999998,kg +3edd096c-3ca2-35d9-b842-f9a1dbb85fdd,SESCO,II.5.1,Rio Negro,AR-R,annual,2012,gas oil combustion consumption by agriculture machines,16.976399999999998,TJ,CH4,3.9,kg/TJ,66.20795999999999,kg +3edd096c-3ca2-35d9-b842-f9a1dbb85fdd,SESCO,II.5.1,Rio Negro,AR-R,annual,2012,gas oil combustion consumption by agriculture machines,16.976399999999998,TJ,N2O,3.9,kg/TJ,66.20795999999999,kg +9ee29d39-1001-3aae-be5a-9be9fe5682e3,SESCO,II.5.1,Santa Fe,AR-S,annual,2012,gas oil combustion consumption by agriculture machines,363.3101304,TJ,CO2,74100.0,kg/TJ,26921280.662639998,kg +6b6e3422-f2d9-36b0-bc60-f5aeabd61bec,SESCO,II.5.1,Santa Fe,AR-S,annual,2012,gas oil combustion consumption by agriculture machines,363.3101304,TJ,CH4,3.9,kg/TJ,1416.90950856,kg +6b6e3422-f2d9-36b0-bc60-f5aeabd61bec,SESCO,II.5.1,Santa Fe,AR-S,annual,2012,gas oil combustion consumption by agriculture machines,363.3101304,TJ,N2O,3.9,kg/TJ,1416.90950856,kg +2444934d-4b6f-383b-bd94-7ae2d575a28d,SESCO,II.1.1,Buenos Aires,AR-B,annual,2012,gas oil combustion consumption by to the public,13210.06687938,TJ,CO2,74100.0,kg/TJ,978865955.762058,kg +930b4397-53a9-3047-ba97-b9971c53847b,SESCO,II.1.1,Buenos Aires,AR-B,annual,2012,gas oil combustion consumption by to the public,13210.06687938,TJ,CH4,3.9,kg/TJ,51519.260829581995,kg +930b4397-53a9-3047-ba97-b9971c53847b,SESCO,II.1.1,Buenos Aires,AR-B,annual,2012,gas oil combustion consumption by to the public,13210.06687938,TJ,N2O,3.9,kg/TJ,51519.260829581995,kg +b78ca80f-35f5-3d1e-87f2-33fd0c43d1f2,SESCO,II.1.1,Capital Federal,AR-C,annual,2012,gas oil combustion consumption by to the public,2135.27454336,TJ,CO2,74100.0,kg/TJ,158223843.662976,kg +4e1cef32-e5d8-35cc-acf5-e034a9dffd9e,SESCO,II.1.1,Capital Federal,AR-C,annual,2012,gas oil combustion consumption by to the public,2135.27454336,TJ,CH4,3.9,kg/TJ,8327.570719103998,kg +4e1cef32-e5d8-35cc-acf5-e034a9dffd9e,SESCO,II.1.1,Capital Federal,AR-C,annual,2012,gas oil combustion consumption by to the public,2135.27454336,TJ,N2O,3.9,kg/TJ,8327.570719103998,kg +09feee88-ddfe-3baf-b3e6-07025f65006c,SESCO,II.1.1,Catamarca,AR-K,annual,2012,gas oil combustion consumption by to the public,401.498278524,TJ,CO2,74100.0,kg/TJ,29751022.4386284,kg +9d742038-192d-3201-8ad0-fd2d85f5032e,SESCO,II.1.1,Catamarca,AR-K,annual,2012,gas oil combustion consumption by to the public,401.498278524,TJ,CH4,3.9,kg/TJ,1565.8432862436,kg +9d742038-192d-3201-8ad0-fd2d85f5032e,SESCO,II.1.1,Catamarca,AR-K,annual,2012,gas oil combustion consumption by to the public,401.498278524,TJ,N2O,3.9,kg/TJ,1565.8432862436,kg +27567b2a-99eb-3f1f-8663-d709a3b77b97,SESCO,II.1.1,Chaco,AR-H,annual,2012,gas oil combustion consumption by to the public,595.5562365479999,TJ,CO2,74100.0,kg/TJ,44130717.12820679,kg +c9ebbc9e-d39a-38e1-ac46-fa64250ae0e6,SESCO,II.1.1,Chaco,AR-H,annual,2012,gas oil combustion consumption by to the public,595.5562365479999,TJ,CH4,3.9,kg/TJ,2322.6693225371996,kg +c9ebbc9e-d39a-38e1-ac46-fa64250ae0e6,SESCO,II.1.1,Chaco,AR-H,annual,2012,gas oil combustion consumption by to the public,595.5562365479999,TJ,N2O,3.9,kg/TJ,2322.6693225371996,kg +1713add5-9a96-355a-8ced-70d7699589fe,SESCO,II.1.1,Chubut,AR-U,annual,2012,gas oil combustion consumption by to the public,542.257015524,TJ,CO2,74100.0,kg/TJ,40181244.8503284,kg +e9821f9a-542d-37fc-8c5d-e34820bd2e1c,SESCO,II.1.1,Chubut,AR-U,annual,2012,gas oil combustion consumption by to the public,542.257015524,TJ,CH4,3.9,kg/TJ,2114.8023605436,kg +e9821f9a-542d-37fc-8c5d-e34820bd2e1c,SESCO,II.1.1,Chubut,AR-U,annual,2012,gas oil combustion consumption by to the public,542.257015524,TJ,N2O,3.9,kg/TJ,2114.8023605436,kg +04a2399d-2e8a-3493-8c00-cae9a0790b1e,SESCO,II.1.1,Corrientes,AR-W,annual,2012,gas oil combustion consumption by to the public,405.23672741999997,TJ,CO2,74100.0,kg/TJ,30028041.501822,kg +447aca6d-e114-3c11-aef8-3b09fa9ab90e,SESCO,II.1.1,Corrientes,AR-W,annual,2012,gas oil combustion consumption by to the public,405.23672741999997,TJ,CH4,3.9,kg/TJ,1580.4232369379997,kg +447aca6d-e114-3c11-aef8-3b09fa9ab90e,SESCO,II.1.1,Corrientes,AR-W,annual,2012,gas oil combustion consumption by to the public,405.23672741999997,TJ,N2O,3.9,kg/TJ,1580.4232369379997,kg +ddc3e093-4fde-3f4b-a4cd-cd82b55e0ee0,SESCO,II.1.1,Córdoba,AR-X,annual,2012,gas oil combustion consumption by to the public,6212.244941112,TJ,CO2,74100.0,kg/TJ,460327350.13639915,kg +fcd081d6-3b5c-3e17-8de0-f62d3d930ac8,SESCO,II.1.1,Córdoba,AR-X,annual,2012,gas oil combustion consumption by to the public,6212.244941112,TJ,CH4,3.9,kg/TJ,24227.7552703368,kg +fcd081d6-3b5c-3e17-8de0-f62d3d930ac8,SESCO,II.1.1,Córdoba,AR-X,annual,2012,gas oil combustion consumption by to the public,6212.244941112,TJ,N2O,3.9,kg/TJ,24227.7552703368,kg +2e926331-1d73-3a75-adf8-06f8b085808a,SESCO,II.1.1,Entre Rios,AR-E,annual,2012,gas oil combustion consumption by to the public,1591.620803556,TJ,CO2,74100.0,kg/TJ,117939101.5434996,kg +bf2ad7ea-9f87-3984-bef5-cfdf70d81f89,SESCO,II.1.1,Entre Rios,AR-E,annual,2012,gas oil combustion consumption by to the public,1591.620803556,TJ,CH4,3.9,kg/TJ,6207.3211338684005,kg +bf2ad7ea-9f87-3984-bef5-cfdf70d81f89,SESCO,II.1.1,Entre Rios,AR-E,annual,2012,gas oil combustion consumption by to the public,1591.620803556,TJ,N2O,3.9,kg/TJ,6207.3211338684005,kg +ab4fb360-33fd-39ba-98f8-249456afb823,SESCO,II.1.1,Formosa,AR-P,annual,2012,gas oil combustion consumption by to the public,431.64337314,TJ,CO2,74100.0,kg/TJ,31984773.949674,kg +f9fab895-2eb9-380f-acfd-cbe237444437,SESCO,II.1.1,Formosa,AR-P,annual,2012,gas oil combustion consumption by to the public,431.64337314,TJ,CH4,3.9,kg/TJ,1683.409155246,kg +f9fab895-2eb9-380f-acfd-cbe237444437,SESCO,II.1.1,Formosa,AR-P,annual,2012,gas oil combustion consumption by to the public,431.64337314,TJ,N2O,3.9,kg/TJ,1683.409155246,kg +b609051b-5f97-34a9-8e96-89c51d90881b,SESCO,II.1.1,Jujuy,AR-Y,annual,2012,gas oil combustion consumption by to the public,142.00377534,TJ,CO2,74100.0,kg/TJ,10522479.752694,kg +73c47870-5ee7-3e9e-9b1d-d80f952f988e,SESCO,II.1.1,Jujuy,AR-Y,annual,2012,gas oil combustion consumption by to the public,142.00377534,TJ,CH4,3.9,kg/TJ,553.814723826,kg +73c47870-5ee7-3e9e-9b1d-d80f952f988e,SESCO,II.1.1,Jujuy,AR-Y,annual,2012,gas oil combustion consumption by to the public,142.00377534,TJ,N2O,3.9,kg/TJ,553.814723826,kg +cfafc0db-84e6-3abd-bff5-67146afb4354,SESCO,II.1.1,La Pampa,AR-L,annual,2012,gas oil combustion consumption by to the public,504.078840132,TJ,CO2,74100.0,kg/TJ,37352242.0537812,kg +eb4668a0-9fcf-325f-83e1-107814f623e0,SESCO,II.1.1,La Pampa,AR-L,annual,2012,gas oil combustion consumption by to the public,504.078840132,TJ,CH4,3.9,kg/TJ,1965.9074765147998,kg +eb4668a0-9fcf-325f-83e1-107814f623e0,SESCO,II.1.1,La Pampa,AR-L,annual,2012,gas oil combustion consumption by to the public,504.078840132,TJ,N2O,3.9,kg/TJ,1965.9074765147998,kg +85215342-7e41-3568-a29c-561f43d74424,SESCO,II.1.1,La Rioja,AR-F,annual,2012,gas oil combustion consumption by to the public,103.776372,TJ,CO2,74100.0,kg/TJ,7689829.1652,kg +1c022259-8481-3598-9bba-4421b76b462c,SESCO,II.1.1,La Rioja,AR-F,annual,2012,gas oil combustion consumption by to the public,103.776372,TJ,CH4,3.9,kg/TJ,404.7278508,kg +1c022259-8481-3598-9bba-4421b76b462c,SESCO,II.1.1,La Rioja,AR-F,annual,2012,gas oil combustion consumption by to the public,103.776372,TJ,N2O,3.9,kg/TJ,404.7278508,kg +923f0a52-192e-3bb5-92b5-60ccb0626823,SESCO,II.1.1,Mendoza,AR-M,annual,2012,gas oil combustion consumption by to the public,657.832335888,TJ,CO2,74100.0,kg/TJ,48745376.0893008,kg +b2326c6b-bcb1-3363-989c-9f3319c53f34,SESCO,II.1.1,Mendoza,AR-M,annual,2012,gas oil combustion consumption by to the public,657.832335888,TJ,CH4,3.9,kg/TJ,2565.5461099632,kg +b2326c6b-bcb1-3363-989c-9f3319c53f34,SESCO,II.1.1,Mendoza,AR-M,annual,2012,gas oil combustion consumption by to the public,657.832335888,TJ,N2O,3.9,kg/TJ,2565.5461099632,kg +082afaf1-b06f-39b8-8394-b5d96ae33e4d,SESCO,II.1.1,Misiones,AR-N,annual,2012,gas oil combustion consumption by to the public,1107.433135452,TJ,CO2,74100.0,kg/TJ,82060795.3369932,kg +e07c0349-42f4-3abe-991c-9a634517b4d4,SESCO,II.1.1,Misiones,AR-N,annual,2012,gas oil combustion consumption by to the public,1107.433135452,TJ,CH4,3.9,kg/TJ,4318.9892282628,kg +e07c0349-42f4-3abe-991c-9a634517b4d4,SESCO,II.1.1,Misiones,AR-N,annual,2012,gas oil combustion consumption by to the public,1107.433135452,TJ,N2O,3.9,kg/TJ,4318.9892282628,kg +c1b45eeb-d29f-3585-8f75-c4cb3e6c6432,SESCO,II.1.1,Neuquén,AR-Q,annual,2012,gas oil combustion consumption by to the public,233.064755112,TJ,CO2,74100.0,kg/TJ,17270098.3537992,kg +d0aa88cf-5259-34a1-b49e-416b142ec4cf,SESCO,II.1.1,Neuquén,AR-Q,annual,2012,gas oil combustion consumption by to the public,233.064755112,TJ,CH4,3.9,kg/TJ,908.9525449368,kg +d0aa88cf-5259-34a1-b49e-416b142ec4cf,SESCO,II.1.1,Neuquén,AR-Q,annual,2012,gas oil combustion consumption by to the public,233.064755112,TJ,N2O,3.9,kg/TJ,908.9525449368,kg +1985a1ba-00a4-3ead-be3d-dcd1a889ad34,SESCO,II.1.1,Rio Negro,AR-R,annual,2012,gas oil combustion consumption by to the public,784.329206472,TJ,CO2,74100.0,kg/TJ,58118794.1995752,kg +4c699196-1925-3da0-9073-0abdd3684cbf,SESCO,II.1.1,Rio Negro,AR-R,annual,2012,gas oil combustion consumption by to the public,784.329206472,TJ,CH4,3.9,kg/TJ,3058.8839052408,kg +4c699196-1925-3da0-9073-0abdd3684cbf,SESCO,II.1.1,Rio Negro,AR-R,annual,2012,gas oil combustion consumption by to the public,784.329206472,TJ,N2O,3.9,kg/TJ,3058.8839052408,kg +ca6770e2-41ff-3828-a5ba-e5a8c3f986e8,SESCO,II.1.1,Salta,AR-A,annual,2012,gas oil combustion consumption by to the public,79.06191938399999,TJ,CO2,74100.0,kg/TJ,5858488.2263544,kg +825fc915-425a-3d9a-a3b6-119c3b3895fc,SESCO,II.1.1,Salta,AR-A,annual,2012,gas oil combustion consumption by to the public,79.06191938399999,TJ,CH4,3.9,kg/TJ,308.34148559759996,kg +825fc915-425a-3d9a-a3b6-119c3b3895fc,SESCO,II.1.1,Salta,AR-A,annual,2012,gas oil combustion consumption by to the public,79.06191938399999,TJ,N2O,3.9,kg/TJ,308.34148559759996,kg +0a3963a5-c9b1-3ae1-a05f-1094af788f66,SESCO,II.1.1,San Juan,AR-J,annual,2012,gas oil combustion consumption by to the public,595.237289724,TJ,CO2,74100.0,kg/TJ,44107083.1685484,kg +d1e96336-0cee-3dfa-842b-5008d49c3b2a,SESCO,II.1.1,San Juan,AR-J,annual,2012,gas oil combustion consumption by to the public,595.237289724,TJ,CH4,3.9,kg/TJ,2321.4254299236,kg +d1e96336-0cee-3dfa-842b-5008d49c3b2a,SESCO,II.1.1,San Juan,AR-J,annual,2012,gas oil combustion consumption by to the public,595.237289724,TJ,N2O,3.9,kg/TJ,2321.4254299236,kg +29f9f4fd-c64e-36df-9fdc-6de17dfd562a,SESCO,II.1.1,San Luis,AR-D,annual,2012,gas oil combustion consumption by to the public,791.073193344,TJ,CO2,74100.0,kg/TJ,58618523.6267904,kg +dba41c75-c606-3bf9-8360-9a1567975128,SESCO,II.1.1,San Luis,AR-D,annual,2012,gas oil combustion consumption by to the public,791.073193344,TJ,CH4,3.9,kg/TJ,3085.1854540415998,kg +dba41c75-c606-3bf9-8360-9a1567975128,SESCO,II.1.1,San Luis,AR-D,annual,2012,gas oil combustion consumption by to the public,791.073193344,TJ,N2O,3.9,kg/TJ,3085.1854540415998,kg +9a002e8e-810e-39b4-b04a-1e998caec4e7,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2012,gas oil combustion consumption by to the public,404.581864596,TJ,CO2,74100.0,kg/TJ,29979516.1665636,kg +5ea6e7c4-71a0-3e82-917c-98d3723358d3,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2012,gas oil combustion consumption by to the public,404.581864596,TJ,CH4,3.9,kg/TJ,1577.8692719244,kg +5ea6e7c4-71a0-3e82-917c-98d3723358d3,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2012,gas oil combustion consumption by to the public,404.581864596,TJ,N2O,3.9,kg/TJ,1577.8692719244,kg +3b813242-c513-3ac9-ba53-c44aeac3f8b9,SESCO,II.1.1,Santa Fe,AR-S,annual,2012,gas oil combustion consumption by to the public,4750.5540516,TJ,CO2,74100.0,kg/TJ,352016055.22356004,kg +e7460e8a-ecaf-3a36-8a3d-86de236b15fe,SESCO,II.1.1,Santa Fe,AR-S,annual,2012,gas oil combustion consumption by to the public,4750.5540516,TJ,CH4,3.9,kg/TJ,18527.16080124,kg +e7460e8a-ecaf-3a36-8a3d-86de236b15fe,SESCO,II.1.1,Santa Fe,AR-S,annual,2012,gas oil combustion consumption by to the public,4750.5540516,TJ,N2O,3.9,kg/TJ,18527.16080124,kg +3e141cff-b2d8-3ae8-be8f-46c280a567e4,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2012,gas oil combustion consumption by to the public,519.541385916,TJ,CO2,74100.0,kg/TJ,38498016.6963756,kg +01ba0080-f8fd-3476-8e48-133e76e5143f,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2012,gas oil combustion consumption by to the public,519.541385916,TJ,CH4,3.9,kg/TJ,2026.2114050723999,kg +01ba0080-f8fd-3476-8e48-133e76e5143f,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2012,gas oil combustion consumption by to the public,519.541385916,TJ,N2O,3.9,kg/TJ,2026.2114050723999,kg +f4311a32-f120-3b53-b918-6cb7400a66d5,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2012,gas oil combustion consumption by to the public,134.385449688,TJ,CO2,74100.0,kg/TJ,9957961.821880799,kg +61795b22-a141-3e29-9401-b2b623861217,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2012,gas oil combustion consumption by to the public,134.385449688,TJ,CH4,3.9,kg/TJ,524.1032537832,kg +61795b22-a141-3e29-9401-b2b623861217,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2012,gas oil combustion consumption by to the public,134.385449688,TJ,N2O,3.9,kg/TJ,524.1032537832,kg +cef17cb7-5bf3-3186-8a40-c410b4a4a9fe,SESCO,II.1.1,Tucuman,AR-T,annual,2012,gas oil combustion consumption by to the public,174.070771812,TJ,CO2,74100.0,kg/TJ,12898644.1912692,kg +1ad26096-8284-3f92-a041-a02c0ebda900,SESCO,II.1.1,Tucuman,AR-T,annual,2012,gas oil combustion consumption by to the public,174.070771812,TJ,CH4,3.9,kg/TJ,678.8760100668,kg +1ad26096-8284-3f92-a041-a02c0ebda900,SESCO,II.1.1,Tucuman,AR-T,annual,2012,gas oil combustion consumption by to the public,174.070771812,TJ,N2O,3.9,kg/TJ,678.8760100668,kg +f4d67302-8215-3979-8c47-69c277033f1a,SESCO,II.1.1,Buenos Aires,AR-B,annual,2012,gas oil combustion consumption by to the public,1655.081162112,TJ,CO2,74100.0,kg/TJ,122641514.11249919,kg +d30e2f51-1dcf-377e-9e34-5f51fe3e95db,SESCO,II.1.1,Buenos Aires,AR-B,annual,2012,gas oil combustion consumption by to the public,1655.081162112,TJ,CH4,3.9,kg/TJ,6454.8165322367995,kg +d30e2f51-1dcf-377e-9e34-5f51fe3e95db,SESCO,II.1.1,Buenos Aires,AR-B,annual,2012,gas oil combustion consumption by to the public,1655.081162112,TJ,N2O,3.9,kg/TJ,6454.8165322367995,kg +663b7069-f454-3672-a407-93f6dfe4e6e8,SESCO,II.1.1,Capital Federal,AR-C,annual,2012,gas oil combustion consumption by to the public,287.600273436,TJ,CO2,74100.0,kg/TJ,21311180.261607602,kg +1fe56a14-2c82-3e40-bd41-a8551c1389cd,SESCO,II.1.1,Capital Federal,AR-C,annual,2012,gas oil combustion consumption by to the public,287.600273436,TJ,CH4,3.9,kg/TJ,1121.6410664004,kg +1fe56a14-2c82-3e40-bd41-a8551c1389cd,SESCO,II.1.1,Capital Federal,AR-C,annual,2012,gas oil combustion consumption by to the public,287.600273436,TJ,N2O,3.9,kg/TJ,1121.6410664004,kg +4b6a7811-1322-3b14-8db7-ba1ad83f9499,SESCO,II.1.1,Catamarca,AR-K,annual,2012,gas oil combustion consumption by to the public,62.44917193199999,TJ,CO2,74100.0,kg/TJ,4627483.6401611995,kg +aa0046c9-0a49-3549-8815-5c1cfa8d056a,SESCO,II.1.1,Catamarca,AR-K,annual,2012,gas oil combustion consumption by to the public,62.44917193199999,TJ,CH4,3.9,kg/TJ,243.55177053479997,kg +aa0046c9-0a49-3549-8815-5c1cfa8d056a,SESCO,II.1.1,Catamarca,AR-K,annual,2012,gas oil combustion consumption by to the public,62.44917193199999,TJ,N2O,3.9,kg/TJ,243.55177053479997,kg +e20cecf7-2853-317d-a881-7ff3be5fdd36,SESCO,II.1.1,Chaco,AR-H,annual,2012,gas oil combustion consumption by to the public,95.356334052,TJ,CO2,74100.0,kg/TJ,7065904.3532532,kg +456ca18e-b031-3452-b15b-9556daab0f29,SESCO,II.1.1,Chaco,AR-H,annual,2012,gas oil combustion consumption by to the public,95.356334052,TJ,CH4,3.9,kg/TJ,371.88970280279995,kg +456ca18e-b031-3452-b15b-9556daab0f29,SESCO,II.1.1,Chaco,AR-H,annual,2012,gas oil combustion consumption by to the public,95.356334052,TJ,N2O,3.9,kg/TJ,371.88970280279995,kg +08105b2c-b473-3a81-8731-53f5d01fff6a,SESCO,II.1.1,Chubut,AR-U,annual,2012,gas oil combustion consumption by to the public,32.690380716,TJ,CO2,74100.0,kg/TJ,2422357.2110556,kg +4ef42505-a164-31f8-bf7b-443c88a17b14,SESCO,II.1.1,Chubut,AR-U,annual,2012,gas oil combustion consumption by to the public,32.690380716,TJ,CH4,3.9,kg/TJ,127.49248479239999,kg +4ef42505-a164-31f8-bf7b-443c88a17b14,SESCO,II.1.1,Chubut,AR-U,annual,2012,gas oil combustion consumption by to the public,32.690380716,TJ,N2O,3.9,kg/TJ,127.49248479239999,kg +2fef8e80-a5e9-3f4d-b1e5-84b0d1e94376,SESCO,II.1.1,Corrientes,AR-W,annual,2012,gas oil combustion consumption by to the public,51.303887208,TJ,CO2,74100.0,kg/TJ,3801618.0421128,kg +79c4b813-99ed-3f0b-84b2-1be9b9f46e6c,SESCO,II.1.1,Corrientes,AR-W,annual,2012,gas oil combustion consumption by to the public,51.303887208,TJ,CH4,3.9,kg/TJ,200.0851601112,kg +79c4b813-99ed-3f0b-84b2-1be9b9f46e6c,SESCO,II.1.1,Corrientes,AR-W,annual,2012,gas oil combustion consumption by to the public,51.303887208,TJ,N2O,3.9,kg/TJ,200.0851601112,kg +68cd4bb7-2aef-32cb-b4e6-5bc1b0b0293f,SESCO,II.1.1,Córdoba,AR-X,annual,2012,gas oil combustion consumption by to the public,649.861153956,TJ,CO2,74100.0,kg/TJ,48154711.508139595,kg +66ca74f8-ab76-3766-b435-e05358087c17,SESCO,II.1.1,Córdoba,AR-X,annual,2012,gas oil combustion consumption by to the public,649.861153956,TJ,CH4,3.9,kg/TJ,2534.4585004284,kg +66ca74f8-ab76-3766-b435-e05358087c17,SESCO,II.1.1,Córdoba,AR-X,annual,2012,gas oil combustion consumption by to the public,649.861153956,TJ,N2O,3.9,kg/TJ,2534.4585004284,kg +20ef0917-9e14-321f-a871-cf649d044e47,SESCO,II.1.1,Entre Rios,AR-E,annual,2012,gas oil combustion consumption by to the public,234.39840664800002,TJ,CO2,74100.0,kg/TJ,17368921.9326168,kg +8fff347d-fbf8-3e19-ba8b-8ba9906a3bdd,SESCO,II.1.1,Entre Rios,AR-E,annual,2012,gas oil combustion consumption by to the public,234.39840664800002,TJ,CH4,3.9,kg/TJ,914.1537859272,kg +8fff347d-fbf8-3e19-ba8b-8ba9906a3bdd,SESCO,II.1.1,Entre Rios,AR-E,annual,2012,gas oil combustion consumption by to the public,234.39840664800002,TJ,N2O,3.9,kg/TJ,914.1537859272,kg +8549d0ac-affb-32de-b50b-3b3c06c07367,SESCO,II.1.1,Formosa,AR-P,annual,2012,gas oil combustion consumption by to the public,88.417754292,TJ,CO2,74100.0,kg/TJ,6551755.5930372,kg +44497d18-4cd0-376e-bdc4-35c47d22de5b,SESCO,II.1.1,Formosa,AR-P,annual,2012,gas oil combustion consumption by to the public,88.417754292,TJ,CH4,3.9,kg/TJ,344.82924173879996,kg +44497d18-4cd0-376e-bdc4-35c47d22de5b,SESCO,II.1.1,Formosa,AR-P,annual,2012,gas oil combustion consumption by to the public,88.417754292,TJ,N2O,3.9,kg/TJ,344.82924173879996,kg +235afb3f-30cb-372a-9509-3b6efb81a429,SESCO,II.1.1,Jujuy,AR-Y,annual,2012,gas oil combustion consumption by to the public,16.02835836,TJ,CO2,74100.0,kg/TJ,1187701.354476,kg +af3d12e2-d5fc-3275-b9ca-edddaaaef896,SESCO,II.1.1,Jujuy,AR-Y,annual,2012,gas oil combustion consumption by to the public,16.02835836,TJ,CH4,3.9,kg/TJ,62.51059760399999,kg +af3d12e2-d5fc-3275-b9ca-edddaaaef896,SESCO,II.1.1,Jujuy,AR-Y,annual,2012,gas oil combustion consumption by to the public,16.02835836,TJ,N2O,3.9,kg/TJ,62.51059760399999,kg +cc1cff1b-e9f9-37f9-a7dd-a898a18a03d7,SESCO,II.1.1,La Pampa,AR-L,annual,2012,gas oil combustion consumption by to the public,52.279640112,TJ,CO2,74100.0,kg/TJ,3873921.3322992004,kg +31c71835-aae3-39de-b408-cdd16ff2d5c9,SESCO,II.1.1,La Pampa,AR-L,annual,2012,gas oil combustion consumption by to the public,52.279640112,TJ,CH4,3.9,kg/TJ,203.8905964368,kg +31c71835-aae3-39de-b408-cdd16ff2d5c9,SESCO,II.1.1,La Pampa,AR-L,annual,2012,gas oil combustion consumption by to the public,52.279640112,TJ,N2O,3.9,kg/TJ,203.8905964368,kg +e675fa27-c633-3488-8439-c9c7cf0c1db5,SESCO,II.1.1,La Rioja,AR-F,annual,2012,gas oil combustion consumption by to the public,29.621358228000002,TJ,CO2,74100.0,kg/TJ,2194942.6446948,kg +f1173453-1832-3972-9cbe-ba596ec0975f,SESCO,II.1.1,La Rioja,AR-F,annual,2012,gas oil combustion consumption by to the public,29.621358228000002,TJ,CH4,3.9,kg/TJ,115.5232970892,kg +f1173453-1832-3972-9cbe-ba596ec0975f,SESCO,II.1.1,La Rioja,AR-F,annual,2012,gas oil combustion consumption by to the public,29.621358228000002,TJ,N2O,3.9,kg/TJ,115.5232970892,kg +224897b6-9b8c-3a8a-8ad8-2aacdf14db4a,SESCO,II.1.1,Mendoza,AR-M,annual,2012,gas oil combustion consumption by to the public,116.61756657599999,TJ,CO2,74100.0,kg/TJ,8641361.683281599,kg +0eb5920b-b783-3490-ab14-ff2a2f4fa694,SESCO,II.1.1,Mendoza,AR-M,annual,2012,gas oil combustion consumption by to the public,116.61756657599999,TJ,CH4,3.9,kg/TJ,454.80850964639995,kg +0eb5920b-b783-3490-ab14-ff2a2f4fa694,SESCO,II.1.1,Mendoza,AR-M,annual,2012,gas oil combustion consumption by to the public,116.61756657599999,TJ,N2O,3.9,kg/TJ,454.80850964639995,kg +72abe830-69c2-3ad4-a9d9-5a5050c82979,SESCO,II.1.1,Misiones,AR-N,annual,2012,gas oil combustion consumption by to the public,103.776039696,TJ,CO2,74100.0,kg/TJ,7689804.5414736,kg +7c8b4036-1726-3876-954a-2ef815aa798f,SESCO,II.1.1,Misiones,AR-N,annual,2012,gas oil combustion consumption by to the public,103.776039696,TJ,CH4,3.9,kg/TJ,404.7265548144,kg +7c8b4036-1726-3876-954a-2ef815aa798f,SESCO,II.1.1,Misiones,AR-N,annual,2012,gas oil combustion consumption by to the public,103.776039696,TJ,N2O,3.9,kg/TJ,404.7265548144,kg +1a0fd856-5f1a-33cc-a757-3946e788a3ed,SESCO,II.1.1,Neuquén,AR-Q,annual,2012,gas oil combustion consumption by to the public,86.200820664,TJ,CO2,74100.0,kg/TJ,6387480.8112024,kg +6465ab38-879d-3285-aec6-887d8866a9d7,SESCO,II.1.1,Neuquén,AR-Q,annual,2012,gas oil combustion consumption by to the public,86.200820664,TJ,CH4,3.9,kg/TJ,336.1832005896,kg +6465ab38-879d-3285-aec6-887d8866a9d7,SESCO,II.1.1,Neuquén,AR-Q,annual,2012,gas oil combustion consumption by to the public,86.200820664,TJ,N2O,3.9,kg/TJ,336.1832005896,kg +2bbcafc3-2ba1-34e8-aaf6-398281face84,SESCO,II.1.1,Rio Negro,AR-R,annual,2012,gas oil combustion consumption by to the public,127.452125388,TJ,CO2,74100.0,kg/TJ,9444202.4912508,kg +f5ef8e7d-51f9-37c6-ba56-69a1399aba3f,SESCO,II.1.1,Rio Negro,AR-R,annual,2012,gas oil combustion consumption by to the public,127.452125388,TJ,CH4,3.9,kg/TJ,497.0632890132,kg +f5ef8e7d-51f9-37c6-ba56-69a1399aba3f,SESCO,II.1.1,Rio Negro,AR-R,annual,2012,gas oil combustion consumption by to the public,127.452125388,TJ,N2O,3.9,kg/TJ,497.0632890132,kg +c3c04518-8a63-354b-8b17-bfd78d60ff3a,SESCO,II.1.1,Salta,AR-A,annual,2012,gas oil combustion consumption by to the public,9.092357568,TJ,CO2,74100.0,kg/TJ,673743.6957888,kg +1482c3ed-5f8b-36d4-aa51-68f82a1cd367,SESCO,II.1.1,Salta,AR-A,annual,2012,gas oil combustion consumption by to the public,9.092357568,TJ,CH4,3.9,kg/TJ,35.4601945152,kg +1482c3ed-5f8b-36d4-aa51-68f82a1cd367,SESCO,II.1.1,Salta,AR-A,annual,2012,gas oil combustion consumption by to the public,9.092357568,TJ,N2O,3.9,kg/TJ,35.4601945152,kg +dd34b930-1ecc-3053-b4ba-9cdaba8bf085,SESCO,II.1.1,San Juan,AR-J,annual,2012,gas oil combustion consumption by to the public,73.083001068,TJ,CO2,74100.0,kg/TJ,5415450.3791388,kg +ccc74620-10b5-37cd-8dce-ffa68d255b76,SESCO,II.1.1,San Juan,AR-J,annual,2012,gas oil combustion consumption by to the public,73.083001068,TJ,CH4,3.9,kg/TJ,285.0237041652,kg +ccc74620-10b5-37cd-8dce-ffa68d255b76,SESCO,II.1.1,San Juan,AR-J,annual,2012,gas oil combustion consumption by to the public,73.083001068,TJ,N2O,3.9,kg/TJ,285.0237041652,kg +c5d1e221-247e-3493-988b-f2a847db44e2,SESCO,II.1.1,San Luis,AR-D,annual,2012,gas oil combustion consumption by to the public,98.38309975199999,TJ,CO2,74100.0,kg/TJ,7290187.6916232,kg +dba5a769-f304-3fad-b9f1-03ed9884262a,SESCO,II.1.1,San Luis,AR-D,annual,2012,gas oil combustion consumption by to the public,98.38309975199999,TJ,CH4,3.9,kg/TJ,383.6940890328,kg +dba5a769-f304-3fad-b9f1-03ed9884262a,SESCO,II.1.1,San Luis,AR-D,annual,2012,gas oil combustion consumption by to the public,98.38309975199999,TJ,N2O,3.9,kg/TJ,383.6940890328,kg +91695a98-2a75-3496-83a1-1fa4b18ea8a7,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2012,gas oil combustion consumption by to the public,40.065611544,TJ,CO2,74100.0,kg/TJ,2968861.8154104,kg +2d5ccf4c-8e97-32cd-984e-674c2648055c,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2012,gas oil combustion consumption by to the public,40.065611544,TJ,CH4,3.9,kg/TJ,156.2558850216,kg +2d5ccf4c-8e97-32cd-984e-674c2648055c,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2012,gas oil combustion consumption by to the public,40.065611544,TJ,N2O,3.9,kg/TJ,156.2558850216,kg +ee740454-d90e-3345-8722-5ba5c4a45d22,SESCO,II.1.1,Santa Fe,AR-S,annual,2012,gas oil combustion consumption by to the public,559.0971456,TJ,CO2,74100.0,kg/TJ,41429098.48896,kg +ae8efc78-f5aa-35a2-bf19-73b8ea317a51,SESCO,II.1.1,Santa Fe,AR-S,annual,2012,gas oil combustion consumption by to the public,559.0971456,TJ,CH4,3.9,kg/TJ,2180.47886784,kg +ae8efc78-f5aa-35a2-bf19-73b8ea317a51,SESCO,II.1.1,Santa Fe,AR-S,annual,2012,gas oil combustion consumption by to the public,559.0971456,TJ,N2O,3.9,kg/TJ,2180.47886784,kg +3dcec76e-5332-30f4-87ba-c74bc27d002b,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2012,gas oil combustion consumption by to the public,60.826715712,TJ,CO2,74100.0,kg/TJ,4507259.6342592,kg +4c82ea3b-da82-3796-83cc-4036f4fd54ac,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2012,gas oil combustion consumption by to the public,60.826715712,TJ,CH4,3.9,kg/TJ,237.2241912768,kg +4c82ea3b-da82-3796-83cc-4036f4fd54ac,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2012,gas oil combustion consumption by to the public,60.826715712,TJ,N2O,3.9,kg/TJ,237.2241912768,kg +941f6ca1-506b-333f-b46d-62150a55f2ca,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2012,gas oil combustion consumption by to the public,26.919788112,TJ,CO2,74100.0,kg/TJ,1994756.2990992,kg +3eaababe-2387-339a-ae56-f47f98eb4ced,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2012,gas oil combustion consumption by to the public,26.919788112,TJ,CH4,3.9,kg/TJ,104.9871736368,kg +3eaababe-2387-339a-ae56-f47f98eb4ced,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2012,gas oil combustion consumption by to the public,26.919788112,TJ,N2O,3.9,kg/TJ,104.9871736368,kg +0ceecec6-4cab-354b-b192-13c5883e4196,SESCO,II.1.1,Tucuman,AR-T,annual,2012,gas oil combustion consumption by to the public,19.717597368,TJ,CO2,74100.0,kg/TJ,1461073.9649688,kg +46902329-c478-350e-83a5-5f5070603753,SESCO,II.1.1,Tucuman,AR-T,annual,2012,gas oil combustion consumption by to the public,19.717597368,TJ,CH4,3.9,kg/TJ,76.8986297352,kg +46902329-c478-350e-83a5-5f5070603753,SESCO,II.1.1,Tucuman,AR-T,annual,2012,gas oil combustion consumption by to the public,19.717597368,TJ,N2O,3.9,kg/TJ,76.8986297352,kg +1cad1f94-9ff9-3b32-8372-b574b630ff50,SESCO,II.1.1,Buenos Aires,AR-B,annual,2012,jet kerosene combustion consumption by to the public,15.110021199999997,TJ,CO2,71500.0,kg/TJ,1080366.5157999997,kg +c3d191e9-a4c4-38fc-b8a9-79c428ddee6b,SESCO,II.1.1,Buenos Aires,AR-B,annual,2012,jet kerosene combustion consumption by to the public,15.110021199999997,TJ,CH4,0.5,kg/TJ,7.555010599999998,kg +5ff16cad-897f-328b-b362-487fffbadbd8,SESCO,II.1.1,Buenos Aires,AR-B,annual,2012,jet kerosene combustion consumption by to the public,15.110021199999997,TJ,N2O,2.0,kg/TJ,30.220042399999993,kg +9f69cc11-81bd-3a46-b0de-b3c5e45e2ff5,SESCO,II.1.1,Córdoba,AR-X,annual,2012,jet kerosene combustion consumption by to the public,8.441985199999998,TJ,CO2,71500.0,kg/TJ,603601.9417999998,kg +2a5407bd-6c7b-3e3f-87bd-319240528b03,SESCO,II.1.1,Córdoba,AR-X,annual,2012,jet kerosene combustion consumption by to the public,8.441985199999998,TJ,CH4,0.5,kg/TJ,4.220992599999999,kg +015178a3-dea0-3c5d-9dfe-0196a48981d5,SESCO,II.1.1,Córdoba,AR-X,annual,2012,jet kerosene combustion consumption by to the public,8.441985199999998,TJ,N2O,2.0,kg/TJ,16.883970399999995,kg +f566c7a0-501d-3fd8-bd28-dc072b2d154c,SESCO,II.1.1,Entre Rios,AR-E,annual,2012,jet kerosene combustion consumption by to the public,4.136698559999999,TJ,CO2,71500.0,kg/TJ,295773.94703999994,kg +2dc70b6c-b0e7-3249-b5cf-fe5398ffd2f5,SESCO,II.1.1,Entre Rios,AR-E,annual,2012,jet kerosene combustion consumption by to the public,4.136698559999999,TJ,CH4,0.5,kg/TJ,2.0683492799999996,kg +fda9d6ae-eae3-3a67-87fc-7726b1b2e6bf,SESCO,II.1.1,Entre Rios,AR-E,annual,2012,jet kerosene combustion consumption by to the public,4.136698559999999,TJ,N2O,2.0,kg/TJ,8.273397119999998,kg +1c6c1cd9-a233-3f00-b2c8-0ac4846bc469,SESCO,II.1.1,Misiones,AR-N,annual,2012,jet kerosene combustion consumption by to the public,1.3524789999999998,TJ,CO2,71500.0,kg/TJ,96702.24849999999,kg +e94aea83-c846-3d3d-b93e-3cb265c4f36c,SESCO,II.1.1,Misiones,AR-N,annual,2012,jet kerosene combustion consumption by to the public,1.3524789999999998,TJ,CH4,0.5,kg/TJ,0.6762394999999999,kg +e164d96f-bac9-30e4-9fc3-8a482209deb2,SESCO,II.1.1,Misiones,AR-N,annual,2012,jet kerosene combustion consumption by to the public,1.3524789999999998,TJ,N2O,2.0,kg/TJ,2.7049579999999995,kg +89900484-4be8-3f9d-889f-db0395f153c9,SESCO,II.1.1,Santa Fe,AR-S,annual,2012,jet kerosene combustion consumption by to the public,5.913163999999999,TJ,CO2,71500.0,kg/TJ,422791.22599999997,kg +3d4c973c-6ffe-34eb-901c-ac27b1e65543,SESCO,II.1.1,Santa Fe,AR-S,annual,2012,jet kerosene combustion consumption by to the public,5.913163999999999,TJ,CH4,0.5,kg/TJ,2.9565819999999996,kg +28ab0eb8-e781-3f2d-ad69-2e615654d638,SESCO,II.1.1,Santa Fe,AR-S,annual,2012,jet kerosene combustion consumption by to the public,5.913163999999999,TJ,N2O,2.0,kg/TJ,11.826327999999998,kg +becb83b2-cd78-3286-8131-20766b8af396,SESCO,I.3.1,Buenos Aires,AR-B,annual,2012,gasoline combustion consumption by petrochemical industries,85.7648,TJ,CO2,69300.0,kg/TJ,5943500.64,kg +b04df15f-4c1d-3304-b9cd-840590072756,SESCO,I.3.1,Buenos Aires,AR-B,annual,2012,gasoline combustion consumption by petrochemical industries,85.7648,TJ,CH4,33.0,kg/TJ,2830.2383999999997,kg +e7470fb5-8f7c-3bb4-9f68-4bee2a10f2d6,SESCO,I.3.1,Buenos Aires,AR-B,annual,2012,gasoline combustion consumption by petrochemical industries,85.7648,TJ,N2O,3.2,kg/TJ,274.44736,kg +a87b8989-5a69-32d1-9a2c-328e8e6024f1,SESCO,I.3.1,Buenos Aires,AR-B,annual,2012,jet kerosene combustion consumption by petrochemical industries,9.058463999999999,TJ,CO2,71500.0,kg/TJ,647680.176,kg +0181deaf-852e-3237-964a-8b764f7e27db,SESCO,I.3.1,Buenos Aires,AR-B,annual,2012,jet kerosene combustion consumption by petrochemical industries,9.058463999999999,TJ,CH4,0.5,kg/TJ,4.5292319999999995,kg +07388c17-edbe-34a3-aa4b-1fa70c6d12de,SESCO,I.3.1,Buenos Aires,AR-B,annual,2012,jet kerosene combustion consumption by petrochemical industries,9.058463999999999,TJ,N2O,2.0,kg/TJ,18.116927999999998,kg +4b680641-33ba-3a62-9207-ea7ce5624d7f,SESCO,II.2.1,Capital Federal,AR-C,annual,2012,gas oil combustion consumption by railway transport,61.260242399999996,TJ,CO2,74100.0,kg/TJ,4539383.96184,kg +e48245e2-e295-315a-9d03-244557ef9e27,SESCO,II.2.1,Capital Federal,AR-C,annual,2012,gas oil combustion consumption by railway transport,61.260242399999996,TJ,CH4,3.9,kg/TJ,238.91494536,kg +e48245e2-e295-315a-9d03-244557ef9e27,SESCO,II.2.1,Capital Federal,AR-C,annual,2012,gas oil combustion consumption by railway transport,61.260242399999996,TJ,N2O,3.9,kg/TJ,238.91494536,kg +6abf2e59-f464-3475-b4be-ae7ab505283c,SESCO,II.2.1,Córdoba,AR-X,annual,2012,gas oil combustion consumption by railway transport,7.51296,TJ,CO2,74100.0,kg/TJ,556710.336,kg +c9effdf8-507e-3bd9-9a9f-b0fe9c1d214a,SESCO,II.2.1,Córdoba,AR-X,annual,2012,gas oil combustion consumption by railway transport,7.51296,TJ,CH4,3.9,kg/TJ,29.300544,kg +c9effdf8-507e-3bd9-9a9f-b0fe9c1d214a,SESCO,II.2.1,Córdoba,AR-X,annual,2012,gas oil combustion consumption by railway transport,7.51296,TJ,N2O,3.9,kg/TJ,29.300544,kg +6d4fd9b0-df05-3e93-b273-c906dd3209d2,SESCO,II.2.1,Mendoza,AR-M,annual,2012,gas oil combustion consumption by railway transport,16.615199999999998,TJ,CO2,74100.0,kg/TJ,1231186.3199999998,kg +ce17a550-c71a-3e41-806a-27de2506226a,SESCO,II.2.1,Mendoza,AR-M,annual,2012,gas oil combustion consumption by railway transport,16.615199999999998,TJ,CH4,3.9,kg/TJ,64.79928,kg +ce17a550-c71a-3e41-806a-27de2506226a,SESCO,II.2.1,Mendoza,AR-M,annual,2012,gas oil combustion consumption by railway transport,16.615199999999998,TJ,N2O,3.9,kg/TJ,64.79928,kg +0225447e-9f9d-3733-83dc-89e0f77d67fa,SESCO,II.1.1,Buenos Aires,AR-B,annual,2012,gas oil combustion consumption by freight transport,1136.395278396,TJ,CO2,74100.0,kg/TJ,84206890.12914361,kg +27ae6c7c-551f-3c4a-ba37-a4d47192f687,SESCO,II.1.1,Buenos Aires,AR-B,annual,2012,gas oil combustion consumption by freight transport,1136.395278396,TJ,CH4,3.9,kg/TJ,4431.9415857444,kg +27ae6c7c-551f-3c4a-ba37-a4d47192f687,SESCO,II.1.1,Buenos Aires,AR-B,annual,2012,gas oil combustion consumption by freight transport,1136.395278396,TJ,N2O,3.9,kg/TJ,4431.9415857444,kg +0a8fc9c4-5fdb-38c1-b223-354b8f38b4a6,SESCO,II.1.1,Capital Federal,AR-C,annual,2012,gas oil combustion consumption by freight transport,280.91463120000003,TJ,CO2,74100.0,kg/TJ,20815774.17192,kg +c272eed1-0872-380c-9104-c0450a000049,SESCO,II.1.1,Capital Federal,AR-C,annual,2012,gas oil combustion consumption by freight transport,280.91463120000003,TJ,CH4,3.9,kg/TJ,1095.56706168,kg +c272eed1-0872-380c-9104-c0450a000049,SESCO,II.1.1,Capital Federal,AR-C,annual,2012,gas oil combustion consumption by freight transport,280.91463120000003,TJ,N2O,3.9,kg/TJ,1095.56706168,kg +3b377db2-f38b-3355-8427-32e3900b7a21,SESCO,II.1.1,Chaco,AR-H,annual,2012,gas oil combustion consumption by freight transport,125.32256604,TJ,CO2,74100.0,kg/TJ,9286402.143564,kg +20000e3f-842e-37ff-bfa2-46220d02da7e,SESCO,II.1.1,Chaco,AR-H,annual,2012,gas oil combustion consumption by freight transport,125.32256604,TJ,CH4,3.9,kg/TJ,488.758007556,kg +20000e3f-842e-37ff-bfa2-46220d02da7e,SESCO,II.1.1,Chaco,AR-H,annual,2012,gas oil combustion consumption by freight transport,125.32256604,TJ,N2O,3.9,kg/TJ,488.758007556,kg +d8b19744-ac35-38bc-8976-4b08341b1830,SESCO,II.1.1,Chubut,AR-U,annual,2012,gas oil combustion consumption by freight transport,21.426665736,TJ,CO2,74100.0,kg/TJ,1587715.9310376,kg +b50d3db0-3bb4-3936-a4f4-1022d4b51182,SESCO,II.1.1,Chubut,AR-U,annual,2012,gas oil combustion consumption by freight transport,21.426665736,TJ,CH4,3.9,kg/TJ,83.5639963704,kg +b50d3db0-3bb4-3936-a4f4-1022d4b51182,SESCO,II.1.1,Chubut,AR-U,annual,2012,gas oil combustion consumption by freight transport,21.426665736,TJ,N2O,3.9,kg/TJ,83.5639963704,kg +5857f1ee-afcc-30d1-8612-e87af9d2bb74,SESCO,II.1.1,Corrientes,AR-W,annual,2012,gas oil combustion consumption by freight transport,285.8135868,TJ,CO2,74100.0,kg/TJ,21178786.78188,kg +3fe05538-8476-3825-a8b9-a68fd3220b2a,SESCO,II.1.1,Corrientes,AR-W,annual,2012,gas oil combustion consumption by freight transport,285.8135868,TJ,CH4,3.9,kg/TJ,1114.67298852,kg +3fe05538-8476-3825-a8b9-a68fd3220b2a,SESCO,II.1.1,Corrientes,AR-W,annual,2012,gas oil combustion consumption by freight transport,285.8135868,TJ,N2O,3.9,kg/TJ,1114.67298852,kg +bffecbbc-2e10-3d93-8260-eb8a5dfb8c20,SESCO,II.1.1,Córdoba,AR-X,annual,2012,gas oil combustion consumption by freight transport,75.852,TJ,CO2,74100.0,kg/TJ,5620633.2,kg +e8e164de-7ae8-3936-88ac-e00a12b3379c,SESCO,II.1.1,Córdoba,AR-X,annual,2012,gas oil combustion consumption by freight transport,75.852,TJ,CH4,3.9,kg/TJ,295.82280000000003,kg +e8e164de-7ae8-3936-88ac-e00a12b3379c,SESCO,II.1.1,Córdoba,AR-X,annual,2012,gas oil combustion consumption by freight transport,75.852,TJ,N2O,3.9,kg/TJ,295.82280000000003,kg +1d9429c4-7138-3c8e-88a0-d41597fceb88,SESCO,II.1.1,Entre Rios,AR-E,annual,2012,gas oil combustion consumption by freight transport,31.5649068,TJ,CO2,74100.0,kg/TJ,2338959.59388,kg +ded90f6c-dded-3166-aa28-a5411e718dc1,SESCO,II.1.1,Entre Rios,AR-E,annual,2012,gas oil combustion consumption by freight transport,31.5649068,TJ,CH4,3.9,kg/TJ,123.10313651999999,kg +ded90f6c-dded-3166-aa28-a5411e718dc1,SESCO,II.1.1,Entre Rios,AR-E,annual,2012,gas oil combustion consumption by freight transport,31.5649068,TJ,N2O,3.9,kg/TJ,123.10313651999999,kg +81e21a98-2226-31d2-8c97-abe1a579775b,SESCO,II.1.1,Formosa,AR-P,annual,2012,gas oil combustion consumption by freight transport,86.48031,TJ,CO2,74100.0,kg/TJ,6408190.971,kg +18dc882d-6638-31ab-967d-749cbdb8e7b5,SESCO,II.1.1,Formosa,AR-P,annual,2012,gas oil combustion consumption by freight transport,86.48031,TJ,CH4,3.9,kg/TJ,337.273209,kg +18dc882d-6638-31ab-967d-749cbdb8e7b5,SESCO,II.1.1,Formosa,AR-P,annual,2012,gas oil combustion consumption by freight transport,86.48031,TJ,N2O,3.9,kg/TJ,337.273209,kg +bacce298-bc8d-30c9-8dd3-3f08e93d6d3c,SESCO,II.1.1,Jujuy,AR-Y,annual,2012,gas oil combustion consumption by freight transport,17.307620399999998,TJ,CO2,74100.0,kg/TJ,1282494.6716399998,kg +5829f7e4-3f79-3584-bf5d-2b94378747a6,SESCO,II.1.1,Jujuy,AR-Y,annual,2012,gas oil combustion consumption by freight transport,17.307620399999998,TJ,CH4,3.9,kg/TJ,67.49971955999999,kg +5829f7e4-3f79-3584-bf5d-2b94378747a6,SESCO,II.1.1,Jujuy,AR-Y,annual,2012,gas oil combustion consumption by freight transport,17.307620399999998,TJ,N2O,3.9,kg/TJ,67.49971955999999,kg +b3ab130e-914f-3250-a631-6678337441bc,SESCO,II.1.1,La Pampa,AR-L,annual,2012,gas oil combustion consumption by freight transport,1.7268972,TJ,CO2,74100.0,kg/TJ,127963.08252,kg +9bc02ba5-3b66-3564-88b1-ef52d84f4445,SESCO,II.1.1,La Pampa,AR-L,annual,2012,gas oil combustion consumption by freight transport,1.7268972,TJ,CH4,3.9,kg/TJ,6.73489908,kg +9bc02ba5-3b66-3564-88b1-ef52d84f4445,SESCO,II.1.1,La Pampa,AR-L,annual,2012,gas oil combustion consumption by freight transport,1.7268972,TJ,N2O,3.9,kg/TJ,6.73489908,kg +3b4d3bf0-74c5-37c9-aa0b-5f0eefca8610,SESCO,II.1.1,La Rioja,AR-F,annual,2012,gas oil combustion consumption by freight transport,97.6460856,TJ,CO2,74100.0,kg/TJ,7235574.942960001,kg +dd92f719-814f-3727-971a-6486d9135bf6,SESCO,II.1.1,La Rioja,AR-F,annual,2012,gas oil combustion consumption by freight transport,97.6460856,TJ,CH4,3.9,kg/TJ,380.81973384,kg +dd92f719-814f-3727-971a-6486d9135bf6,SESCO,II.1.1,La Rioja,AR-F,annual,2012,gas oil combustion consumption by freight transport,97.6460856,TJ,N2O,3.9,kg/TJ,380.81973384,kg +c2fdd2e5-71a7-3dc7-9064-560461931782,SESCO,II.1.1,Mendoza,AR-M,annual,2012,gas oil combustion consumption by freight transport,37.4011764,TJ,CO2,74100.0,kg/TJ,2771427.1712399996,kg +f25ec3ac-8608-3cda-9231-d7b121a3cf8b,SESCO,II.1.1,Mendoza,AR-M,annual,2012,gas oil combustion consumption by freight transport,37.4011764,TJ,CH4,3.9,kg/TJ,145.86458796,kg +f25ec3ac-8608-3cda-9231-d7b121a3cf8b,SESCO,II.1.1,Mendoza,AR-M,annual,2012,gas oil combustion consumption by freight transport,37.4011764,TJ,N2O,3.9,kg/TJ,145.86458796,kg +cfa962c6-20af-3681-8c61-e0ad32cee75c,SESCO,II.1.1,Misiones,AR-N,annual,2012,gas oil combustion consumption by freight transport,103.3801356,TJ,CO2,74100.0,kg/TJ,7660468.04796,kg +826b0677-876c-3596-a1d6-149cf734b0c6,SESCO,II.1.1,Misiones,AR-N,annual,2012,gas oil combustion consumption by freight transport,103.3801356,TJ,CH4,3.9,kg/TJ,403.18252884,kg +826b0677-876c-3596-a1d6-149cf734b0c6,SESCO,II.1.1,Misiones,AR-N,annual,2012,gas oil combustion consumption by freight transport,103.3801356,TJ,N2O,3.9,kg/TJ,403.18252884,kg +adf6fa5a-3a21-3f6d-bfb5-73ccf537a175,SESCO,II.1.1,Rio Negro,AR-R,annual,2012,gas oil combustion consumption by freight transport,0.7563528,TJ,CO2,74100.0,kg/TJ,56045.74248,kg +71272d9b-106d-3cae-8f80-9af9b7483042,SESCO,II.1.1,Rio Negro,AR-R,annual,2012,gas oil combustion consumption by freight transport,0.7563528,TJ,CH4,3.9,kg/TJ,2.94977592,kg +71272d9b-106d-3cae-8f80-9af9b7483042,SESCO,II.1.1,Rio Negro,AR-R,annual,2012,gas oil combustion consumption by freight transport,0.7563528,TJ,N2O,3.9,kg/TJ,2.94977592,kg +bb34b381-dccc-36ea-b03d-33b130c7d740,SESCO,II.1.1,Salta,AR-A,annual,2012,gas oil combustion consumption by freight transport,825.362555892,TJ,CO2,74100.0,kg/TJ,61159365.391597204,kg +85d729a2-0882-3991-a078-801452ec3a9b,SESCO,II.1.1,Salta,AR-A,annual,2012,gas oil combustion consumption by freight transport,825.362555892,TJ,CH4,3.9,kg/TJ,3218.9139679788,kg +85d729a2-0882-3991-a078-801452ec3a9b,SESCO,II.1.1,Salta,AR-A,annual,2012,gas oil combustion consumption by freight transport,825.362555892,TJ,N2O,3.9,kg/TJ,3218.9139679788,kg +f8bda04c-7f1a-314f-a834-aa28dc6eeca8,SESCO,II.1.1,San Juan,AR-J,annual,2012,gas oil combustion consumption by freight transport,2.3651376,TJ,CO2,74100.0,kg/TJ,175256.69616000002,kg +bde7705c-ec40-385d-a24f-51379483d975,SESCO,II.1.1,San Juan,AR-J,annual,2012,gas oil combustion consumption by freight transport,2.3651376,TJ,CH4,3.9,kg/TJ,9.224036640000001,kg +bde7705c-ec40-385d-a24f-51379483d975,SESCO,II.1.1,San Juan,AR-J,annual,2012,gas oil combustion consumption by freight transport,2.3651376,TJ,N2O,3.9,kg/TJ,9.224036640000001,kg +d886cf56-7aca-3ae6-8dc1-38d1e12793c4,SESCO,II.1.1,San Luis,AR-D,annual,2012,gas oil combustion consumption by freight transport,111.59462907599999,TJ,CO2,74100.0,kg/TJ,8269162.014531599,kg +532c8cd0-c13c-34db-a959-983a94be0ce6,SESCO,II.1.1,San Luis,AR-D,annual,2012,gas oil combustion consumption by freight transport,111.59462907599999,TJ,CH4,3.9,kg/TJ,435.21905339639994,kg +532c8cd0-c13c-34db-a959-983a94be0ce6,SESCO,II.1.1,San Luis,AR-D,annual,2012,gas oil combustion consumption by freight transport,111.59462907599999,TJ,N2O,3.9,kg/TJ,435.21905339639994,kg +10fd2297-b675-3cae-9881-4cb9e354a53a,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2012,gas oil combustion consumption by freight transport,54.5227788,TJ,CO2,74100.0,kg/TJ,4040137.9090799997,kg +cac6961a-1513-3ce1-a996-92e4d0333276,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2012,gas oil combustion consumption by freight transport,54.5227788,TJ,CH4,3.9,kg/TJ,212.63883732,kg +cac6961a-1513-3ce1-a996-92e4d0333276,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2012,gas oil combustion consumption by freight transport,54.5227788,TJ,N2O,3.9,kg/TJ,212.63883732,kg +8fceff44-b6a9-3137-991f-6f334a028255,SESCO,II.1.1,Santa Fe,AR-S,annual,2012,gas oil combustion consumption by freight transport,152.5394556,TJ,CO2,74100.0,kg/TJ,11303173.65996,kg +a77e0b8e-2745-3598-bc48-cd88db36d61e,SESCO,II.1.1,Santa Fe,AR-S,annual,2012,gas oil combustion consumption by freight transport,152.5394556,TJ,CH4,3.9,kg/TJ,594.90387684,kg +a77e0b8e-2745-3598-bc48-cd88db36d61e,SESCO,II.1.1,Santa Fe,AR-S,annual,2012,gas oil combustion consumption by freight transport,152.5394556,TJ,N2O,3.9,kg/TJ,594.90387684,kg +c515bf20-92c6-347e-b2d3-6de7a3f409b9,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2012,gas oil combustion consumption by freight transport,39.8201328,TJ,CO2,74100.0,kg/TJ,2950671.8404800002,kg +fd40a7fb-68e6-3c13-9bac-e92030d5097a,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2012,gas oil combustion consumption by freight transport,39.8201328,TJ,CH4,3.9,kg/TJ,155.29851792000002,kg +fd40a7fb-68e6-3c13-9bac-e92030d5097a,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2012,gas oil combustion consumption by freight transport,39.8201328,TJ,N2O,3.9,kg/TJ,155.29851792000002,kg +0b57e888-60cf-3de7-a5d8-2f1c3226cf90,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2012,gas oil combustion consumption by freight transport,10.964226,TJ,CO2,74100.0,kg/TJ,812449.1466,kg +62013b30-c45e-364e-8679-c0e1de99bc5c,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2012,gas oil combustion consumption by freight transport,10.964226,TJ,CH4,3.9,kg/TJ,42.760481399999996,kg +62013b30-c45e-364e-8679-c0e1de99bc5c,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2012,gas oil combustion consumption by freight transport,10.964226,TJ,N2O,3.9,kg/TJ,42.760481399999996,kg +7e06f190-9bfb-30f2-bcfc-5385b3e90c39,SESCO,II.1.1,Tucuman,AR-T,annual,2012,gas oil combustion consumption by freight transport,42.97051919999999,TJ,CO2,74100.0,kg/TJ,3184115.4727199995,kg +a06b669a-15be-302f-a3a3-370070ca0698,SESCO,II.1.1,Tucuman,AR-T,annual,2012,gas oil combustion consumption by freight transport,42.97051919999999,TJ,CH4,3.9,kg/TJ,167.58502487999996,kg +a06b669a-15be-302f-a3a3-370070ca0698,SESCO,II.1.1,Tucuman,AR-T,annual,2012,gas oil combustion consumption by freight transport,42.97051919999999,TJ,N2O,3.9,kg/TJ,167.58502487999996,kg +29957582-ab43-30b4-aacf-486f59eadf6b,SESCO,II.1.1,Buenos Aires,AR-B,annual,2012,gas oil combustion consumption by freight transport,57.6356004,TJ,CO2,74100.0,kg/TJ,4270797.98964,kg +56a796a2-aaa3-301a-8f71-3e4b3f81644f,SESCO,II.1.1,Buenos Aires,AR-B,annual,2012,gas oil combustion consumption by freight transport,57.6356004,TJ,CH4,3.9,kg/TJ,224.77884156,kg +56a796a2-aaa3-301a-8f71-3e4b3f81644f,SESCO,II.1.1,Buenos Aires,AR-B,annual,2012,gas oil combustion consumption by freight transport,57.6356004,TJ,N2O,3.9,kg/TJ,224.77884156,kg +620fad27-4b9d-3c68-bc1a-c0386db64cd1,SESCO,II.1.1,Capital Federal,AR-C,annual,2012,gas oil combustion consumption by freight transport,44.4229044,TJ,CO2,74100.0,kg/TJ,3291737.21604,kg +7bdc04e3-38ff-373e-b9c5-a4122c6d63ed,SESCO,II.1.1,Capital Federal,AR-C,annual,2012,gas oil combustion consumption by freight transport,44.4229044,TJ,CH4,3.9,kg/TJ,173.24932716,kg +7bdc04e3-38ff-373e-b9c5-a4122c6d63ed,SESCO,II.1.1,Capital Federal,AR-C,annual,2012,gas oil combustion consumption by freight transport,44.4229044,TJ,N2O,3.9,kg/TJ,173.24932716,kg +adf1c7bb-620b-31d5-8353-2eabf419c7b0,SESCO,II.1.1,Chaco,AR-H,annual,2012,gas oil combustion consumption by freight transport,0.1509816,TJ,CO2,74100.0,kg/TJ,11187.73656,kg +331db740-2b0a-3ca0-b935-674e3a9b5932,SESCO,II.1.1,Chaco,AR-H,annual,2012,gas oil combustion consumption by freight transport,0.1509816,TJ,CH4,3.9,kg/TJ,0.58882824,kg +331db740-2b0a-3ca0-b935-674e3a9b5932,SESCO,II.1.1,Chaco,AR-H,annual,2012,gas oil combustion consumption by freight transport,0.1509816,TJ,N2O,3.9,kg/TJ,0.58882824,kg +f875ea55-3d83-30a2-a9a2-54783074d2fe,SESCO,II.1.1,Chubut,AR-U,annual,2012,gas oil combustion consumption by freight transport,0.7227612,TJ,CO2,74100.0,kg/TJ,53556.60492,kg +7afc484e-2e2e-313e-b5f8-56c6bc58f90b,SESCO,II.1.1,Chubut,AR-U,annual,2012,gas oil combustion consumption by freight transport,0.7227612,TJ,CH4,3.9,kg/TJ,2.81876868,kg +7afc484e-2e2e-313e-b5f8-56c6bc58f90b,SESCO,II.1.1,Chubut,AR-U,annual,2012,gas oil combustion consumption by freight transport,0.7227612,TJ,N2O,3.9,kg/TJ,2.81876868,kg +c188cb45-3d00-311b-ab47-f32c4f7cb1d7,SESCO,II.1.1,Corrientes,AR-W,annual,2012,gas oil combustion consumption by freight transport,3.032274,TJ,CO2,74100.0,kg/TJ,224691.50340000002,kg +36f20c99-41d7-3f3f-b47a-ac97eb5dbb25,SESCO,II.1.1,Corrientes,AR-W,annual,2012,gas oil combustion consumption by freight transport,3.032274,TJ,CH4,3.9,kg/TJ,11.8258686,kg +36f20c99-41d7-3f3f-b47a-ac97eb5dbb25,SESCO,II.1.1,Corrientes,AR-W,annual,2012,gas oil combustion consumption by freight transport,3.032274,TJ,N2O,3.9,kg/TJ,11.8258686,kg +806a3c58-245c-3762-9ca4-b99896899e98,SESCO,II.1.1,Córdoba,AR-X,annual,2012,gas oil combustion consumption by freight transport,1.5390732,TJ,CO2,74100.0,kg/TJ,114045.32412,kg +78143ca0-92b5-376c-a9e6-803374daf026,SESCO,II.1.1,Córdoba,AR-X,annual,2012,gas oil combustion consumption by freight transport,1.5390732,TJ,CH4,3.9,kg/TJ,6.00238548,kg +78143ca0-92b5-376c-a9e6-803374daf026,SESCO,II.1.1,Córdoba,AR-X,annual,2012,gas oil combustion consumption by freight transport,1.5390732,TJ,N2O,3.9,kg/TJ,6.00238548,kg +260c0dbe-4d42-3e3a-b7a9-4abbbc8c4aec,SESCO,II.1.1,Entre Rios,AR-E,annual,2012,gas oil combustion consumption by freight transport,0.8751876,TJ,CO2,74100.0,kg/TJ,64851.401159999994,kg +ae0d9355-df41-3d33-b174-36230e81ac30,SESCO,II.1.1,Entre Rios,AR-E,annual,2012,gas oil combustion consumption by freight transport,0.8751876,TJ,CH4,3.9,kg/TJ,3.41323164,kg +ae0d9355-df41-3d33-b174-36230e81ac30,SESCO,II.1.1,Entre Rios,AR-E,annual,2012,gas oil combustion consumption by freight transport,0.8751876,TJ,N2O,3.9,kg/TJ,3.41323164,kg +8925bf43-0ddc-38dc-8338-671875e0441e,SESCO,II.1.1,Mendoza,AR-M,annual,2012,gas oil combustion consumption by freight transport,0.19251959999999999,TJ,CO2,74100.0,kg/TJ,14265.70236,kg +e1c145b4-b4be-3be9-b71a-8b8577d22761,SESCO,II.1.1,Mendoza,AR-M,annual,2012,gas oil combustion consumption by freight transport,0.19251959999999999,TJ,CH4,3.9,kg/TJ,0.7508264399999999,kg +e1c145b4-b4be-3be9-b71a-8b8577d22761,SESCO,II.1.1,Mendoza,AR-M,annual,2012,gas oil combustion consumption by freight transport,0.19251959999999999,TJ,N2O,3.9,kg/TJ,0.7508264399999999,kg +a429f988-2d0f-3a02-a0b2-f87364d15912,SESCO,II.1.1,Misiones,AR-N,annual,2012,gas oil combustion consumption by freight transport,0.1834896,TJ,CO2,74100.0,kg/TJ,13596.57936,kg +d44ed1cc-64e5-3e38-b831-8c09b84924a0,SESCO,II.1.1,Misiones,AR-N,annual,2012,gas oil combustion consumption by freight transport,0.1834896,TJ,CH4,3.9,kg/TJ,0.71560944,kg +d44ed1cc-64e5-3e38-b831-8c09b84924a0,SESCO,II.1.1,Misiones,AR-N,annual,2012,gas oil combustion consumption by freight transport,0.1834896,TJ,N2O,3.9,kg/TJ,0.71560944,kg +340c9985-46a6-3074-8d59-1dd96e82e2c5,SESCO,II.1.1,Rio Negro,AR-R,annual,2012,gas oil combustion consumption by freight transport,0.003612,TJ,CO2,74100.0,kg/TJ,267.6492,kg +b9e6d27a-8e12-3d51-a712-0ba403d285a2,SESCO,II.1.1,Rio Negro,AR-R,annual,2012,gas oil combustion consumption by freight transport,0.003612,TJ,CH4,3.9,kg/TJ,0.0140868,kg +b9e6d27a-8e12-3d51-a712-0ba403d285a2,SESCO,II.1.1,Rio Negro,AR-R,annual,2012,gas oil combustion consumption by freight transport,0.003612,TJ,N2O,3.9,kg/TJ,0.0140868,kg +eca3b929-7eb2-3d24-a488-32b93c79b9ad,SESCO,II.1.1,San Juan,AR-J,annual,2012,gas oil combustion consumption by freight transport,0.034675199999999996,TJ,CO2,74100.0,kg/TJ,2569.43232,kg +c146a4e7-5676-391a-9b47-b31e38cf7358,SESCO,II.1.1,San Juan,AR-J,annual,2012,gas oil combustion consumption by freight transport,0.034675199999999996,TJ,CH4,3.9,kg/TJ,0.13523327999999998,kg +c146a4e7-5676-391a-9b47-b31e38cf7358,SESCO,II.1.1,San Juan,AR-J,annual,2012,gas oil combustion consumption by freight transport,0.034675199999999996,TJ,N2O,3.9,kg/TJ,0.13523327999999998,kg +ce689071-5cb6-3fd6-a2c1-a2b802443388,SESCO,II.1.1,San Luis,AR-D,annual,2012,gas oil combustion consumption by freight transport,0.18926880000000001,TJ,CO2,74100.0,kg/TJ,14024.818080000001,kg +b2ede6a9-735f-3d32-b315-ee790406d29b,SESCO,II.1.1,San Luis,AR-D,annual,2012,gas oil combustion consumption by freight transport,0.18926880000000001,TJ,CH4,3.9,kg/TJ,0.7381483200000001,kg +b2ede6a9-735f-3d32-b315-ee790406d29b,SESCO,II.1.1,San Luis,AR-D,annual,2012,gas oil combustion consumption by freight transport,0.18926880000000001,TJ,N2O,3.9,kg/TJ,0.7381483200000001,kg +dfe37c74-2f45-3e5f-94a1-d90ab8ce3489,SESCO,II.1.1,Santa Fe,AR-S,annual,2012,gas oil combustion consumption by freight transport,1.8630696,TJ,CO2,74100.0,kg/TJ,138053.45736,kg +7c873c8b-c573-3394-a194-ee8e94ca49e2,SESCO,II.1.1,Santa Fe,AR-S,annual,2012,gas oil combustion consumption by freight transport,1.8630696,TJ,CH4,3.9,kg/TJ,7.2659714399999995,kg +7c873c8b-c573-3394-a194-ee8e94ca49e2,SESCO,II.1.1,Santa Fe,AR-S,annual,2012,gas oil combustion consumption by freight transport,1.8630696,TJ,N2O,3.9,kg/TJ,7.2659714399999995,kg +8cb3b9f1-af6f-37fe-8b7c-0a9125b08ea2,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2012,gas oil combustion consumption by freight transport,0.9217824,TJ,CO2,74100.0,kg/TJ,68304.07584,kg +54b939f5-3c33-3334-b6be-470292c55135,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2012,gas oil combustion consumption by freight transport,0.9217824,TJ,CH4,3.9,kg/TJ,3.59495136,kg +54b939f5-3c33-3334-b6be-470292c55135,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2012,gas oil combustion consumption by freight transport,0.9217824,TJ,N2O,3.9,kg/TJ,3.59495136,kg +42b8bc28-2157-3ddd-89ca-049f8c3b966e,SESCO,II.1.1,Tucuman,AR-T,annual,2012,gas oil combustion consumption by freight transport,0.2481444,TJ,CO2,74100.0,kg/TJ,18387.50004,kg +5c715d4b-953a-36c2-aa65-8bb1b7b47c67,SESCO,II.1.1,Tucuman,AR-T,annual,2012,gas oil combustion consumption by freight transport,0.2481444,TJ,CH4,3.9,kg/TJ,0.96776316,kg +5c715d4b-953a-36c2-aa65-8bb1b7b47c67,SESCO,II.1.1,Tucuman,AR-T,annual,2012,gas oil combustion consumption by freight transport,0.2481444,TJ,N2O,3.9,kg/TJ,0.96776316,kg +eab75ebe-937f-3c4e-9a57-edd61b8409fb,SESCO,II.1.1,Buenos Aires,AR-B,annual,2012,gas oil combustion consumption by public passenger transport,972.6371928,TJ,CO2,74100.0,kg/TJ,72072415.98648,kg +f1c4921e-5e08-3566-b9e1-ed4f148553e4,SESCO,II.1.1,Buenos Aires,AR-B,annual,2012,gas oil combustion consumption by public passenger transport,972.6371928,TJ,CH4,3.9,kg/TJ,3793.2850519199997,kg +f1c4921e-5e08-3566-b9e1-ed4f148553e4,SESCO,II.1.1,Buenos Aires,AR-B,annual,2012,gas oil combustion consumption by public passenger transport,972.6371928,TJ,N2O,3.9,kg/TJ,3793.2850519199997,kg +5bbf975e-cbc3-38d9-b013-ca5a6ce793d9,SESCO,II.1.1,Capital Federal,AR-C,annual,2012,gas oil combustion consumption by public passenger transport,604.11841392,TJ,CO2,74100.0,kg/TJ,44765174.471471995,kg +29c75748-5599-39d3-b2dd-fa8eb79692af,SESCO,II.1.1,Capital Federal,AR-C,annual,2012,gas oil combustion consumption by public passenger transport,604.11841392,TJ,CH4,3.9,kg/TJ,2356.061814288,kg +29c75748-5599-39d3-b2dd-fa8eb79692af,SESCO,II.1.1,Capital Federal,AR-C,annual,2012,gas oil combustion consumption by public passenger transport,604.11841392,TJ,N2O,3.9,kg/TJ,2356.061814288,kg +1ab79cfd-e1b7-3fd8-bc08-8a9055d6f043,SESCO,II.1.1,Chubut,AR-U,annual,2012,gas oil combustion consumption by public passenger transport,119.8559124,TJ,CO2,74100.0,kg/TJ,8881323.10884,kg +ffe96932-9ad8-3386-8928-b312b132da2b,SESCO,II.1.1,Chubut,AR-U,annual,2012,gas oil combustion consumption by public passenger transport,119.8559124,TJ,CH4,3.9,kg/TJ,467.43805835999996,kg +ffe96932-9ad8-3386-8928-b312b132da2b,SESCO,II.1.1,Chubut,AR-U,annual,2012,gas oil combustion consumption by public passenger transport,119.8559124,TJ,N2O,3.9,kg/TJ,467.43805835999996,kg +fc626a22-7e3e-3b45-b9e7-e23085f1e28b,SESCO,II.1.1,Corrientes,AR-W,annual,2012,gas oil combustion consumption by public passenger transport,1.15584,TJ,CO2,74100.0,kg/TJ,85647.74399999999,kg +855f7de2-c9ce-3cea-aa4f-097805014b06,SESCO,II.1.1,Corrientes,AR-W,annual,2012,gas oil combustion consumption by public passenger transport,1.15584,TJ,CH4,3.9,kg/TJ,4.507776,kg +855f7de2-c9ce-3cea-aa4f-097805014b06,SESCO,II.1.1,Corrientes,AR-W,annual,2012,gas oil combustion consumption by public passenger transport,1.15584,TJ,N2O,3.9,kg/TJ,4.507776,kg +01e9ceef-3b73-32b8-a04a-5c5df04bc42f,SESCO,II.1.1,Córdoba,AR-X,annual,2012,gas oil combustion consumption by public passenger transport,10.4274828,TJ,CO2,74100.0,kg/TJ,772676.47548,kg +0afafbbf-4cd6-3dca-8c2a-c87639b0a21c,SESCO,II.1.1,Córdoba,AR-X,annual,2012,gas oil combustion consumption by public passenger transport,10.4274828,TJ,CH4,3.9,kg/TJ,40.66718292,kg +0afafbbf-4cd6-3dca-8c2a-c87639b0a21c,SESCO,II.1.1,Córdoba,AR-X,annual,2012,gas oil combustion consumption by public passenger transport,10.4274828,TJ,N2O,3.9,kg/TJ,40.66718292,kg +967d04d9-1eda-345f-9f31-0cbd7ca67578,SESCO,II.1.1,Entre Rios,AR-E,annual,2012,gas oil combustion consumption by public passenger transport,105.6701436,TJ,CO2,74100.0,kg/TJ,7830157.64076,kg +5a806990-d35a-33eb-a7f5-02895c0a7e47,SESCO,II.1.1,Entre Rios,AR-E,annual,2012,gas oil combustion consumption by public passenger transport,105.6701436,TJ,CH4,3.9,kg/TJ,412.11356004,kg +5a806990-d35a-33eb-a7f5-02895c0a7e47,SESCO,II.1.1,Entre Rios,AR-E,annual,2012,gas oil combustion consumption by public passenger transport,105.6701436,TJ,N2O,3.9,kg/TJ,412.11356004,kg +bb884dae-c167-3518-91d9-7238f70cd5e8,SESCO,II.1.1,La Pampa,AR-L,annual,2012,gas oil combustion consumption by public passenger transport,7.610484,TJ,CO2,74100.0,kg/TJ,563936.8644,kg +b2ca7884-0a30-36bd-80af-da6d57896eb0,SESCO,II.1.1,La Pampa,AR-L,annual,2012,gas oil combustion consumption by public passenger transport,7.610484,TJ,CH4,3.9,kg/TJ,29.6808876,kg +b2ca7884-0a30-36bd-80af-da6d57896eb0,SESCO,II.1.1,La Pampa,AR-L,annual,2012,gas oil combustion consumption by public passenger transport,7.610484,TJ,N2O,3.9,kg/TJ,29.6808876,kg +dfe18174-93ce-34a3-b71f-5b18c4df7417,SESCO,II.1.1,Mendoza,AR-M,annual,2012,gas oil combustion consumption by public passenger transport,25.542619199999997,TJ,CO2,74100.0,kg/TJ,1892708.0827199998,kg +cffa942f-7664-31a8-a590-2040679c86d0,SESCO,II.1.1,Mendoza,AR-M,annual,2012,gas oil combustion consumption by public passenger transport,25.542619199999997,TJ,CH4,3.9,kg/TJ,99.61621487999999,kg +cffa942f-7664-31a8-a590-2040679c86d0,SESCO,II.1.1,Mendoza,AR-M,annual,2012,gas oil combustion consumption by public passenger transport,25.542619199999997,TJ,N2O,3.9,kg/TJ,99.61621487999999,kg +c543cc91-4458-3f51-b9be-5b0ed6cc2655,SESCO,II.1.1,Misiones,AR-N,annual,2012,gas oil combustion consumption by public passenger transport,251.02204428,TJ,CO2,74100.0,kg/TJ,18600733.481148,kg +777af6e0-015a-341d-ad95-0b055ac6df6e,SESCO,II.1.1,Misiones,AR-N,annual,2012,gas oil combustion consumption by public passenger transport,251.02204428,TJ,CH4,3.9,kg/TJ,978.9859726919999,kg +777af6e0-015a-341d-ad95-0b055ac6df6e,SESCO,II.1.1,Misiones,AR-N,annual,2012,gas oil combustion consumption by public passenger transport,251.02204428,TJ,N2O,3.9,kg/TJ,978.9859726919999,kg +92be0c30-56ff-3407-884a-72878bf1c458,SESCO,II.1.1,Neuquén,AR-Q,annual,2012,gas oil combustion consumption by public passenger transport,8.4426888,TJ,CO2,74100.0,kg/TJ,625603.24008,kg +7a1f95d0-ae0d-3610-bee6-47697a544111,SESCO,II.1.1,Neuquén,AR-Q,annual,2012,gas oil combustion consumption by public passenger transport,8.4426888,TJ,CH4,3.9,kg/TJ,32.92648632,kg +7a1f95d0-ae0d-3610-bee6-47697a544111,SESCO,II.1.1,Neuquén,AR-Q,annual,2012,gas oil combustion consumption by public passenger transport,8.4426888,TJ,N2O,3.9,kg/TJ,32.92648632,kg +e58db8eb-f32b-344f-8ea0-141e5ddc2e90,SESCO,II.1.1,Rio Negro,AR-R,annual,2012,gas oil combustion consumption by public passenger transport,28.49868,TJ,CO2,74100.0,kg/TJ,2111752.188,kg +3cf112cf-8b0a-396f-8068-d71aaf51fc2c,SESCO,II.1.1,Rio Negro,AR-R,annual,2012,gas oil combustion consumption by public passenger transport,28.49868,TJ,CH4,3.9,kg/TJ,111.144852,kg +3cf112cf-8b0a-396f-8068-d71aaf51fc2c,SESCO,II.1.1,Rio Negro,AR-R,annual,2012,gas oil combustion consumption by public passenger transport,28.49868,TJ,N2O,3.9,kg/TJ,111.144852,kg +56f64520-61f0-3759-9691-8a32b40e300b,SESCO,II.1.1,Salta,AR-A,annual,2012,gas oil combustion consumption by public passenger transport,4.815879600000001,TJ,CO2,74100.0,kg/TJ,356856.67836,kg +6af7e95f-b462-3150-b3aa-176fb67c085d,SESCO,II.1.1,Salta,AR-A,annual,2012,gas oil combustion consumption by public passenger transport,4.815879600000001,TJ,CH4,3.9,kg/TJ,18.781930440000004,kg +6af7e95f-b462-3150-b3aa-176fb67c085d,SESCO,II.1.1,Salta,AR-A,annual,2012,gas oil combustion consumption by public passenger transport,4.815879600000001,TJ,N2O,3.9,kg/TJ,18.781930440000004,kg +fd2d2353-2ace-3c0c-9819-720d3b2c3097,SESCO,II.1.1,San Juan,AR-J,annual,2012,gas oil combustion consumption by public passenger transport,2.74512,TJ,CO2,74100.0,kg/TJ,203413.392,kg +bda9f380-90c6-3e58-bbe8-f714ebf55d2b,SESCO,II.1.1,San Juan,AR-J,annual,2012,gas oil combustion consumption by public passenger transport,2.74512,TJ,CH4,3.9,kg/TJ,10.705968,kg +bda9f380-90c6-3e58-bbe8-f714ebf55d2b,SESCO,II.1.1,San Juan,AR-J,annual,2012,gas oil combustion consumption by public passenger transport,2.74512,TJ,N2O,3.9,kg/TJ,10.705968,kg +975b640a-a248-37f7-ba4c-3afa8368dffd,SESCO,II.1.1,San Luis,AR-D,annual,2012,gas oil combustion consumption by public passenger transport,9.299094000000002,TJ,CO2,74100.0,kg/TJ,689062.8654000001,kg +39c8e01e-d5fc-3bc4-a724-267d615e92a1,SESCO,II.1.1,San Luis,AR-D,annual,2012,gas oil combustion consumption by public passenger transport,9.299094000000002,TJ,CH4,3.9,kg/TJ,36.26646660000001,kg +39c8e01e-d5fc-3bc4-a724-267d615e92a1,SESCO,II.1.1,San Luis,AR-D,annual,2012,gas oil combustion consumption by public passenger transport,9.299094000000002,TJ,N2O,3.9,kg/TJ,36.26646660000001,kg +aa183dae-96c3-3cd2-a01a-94b636527639,SESCO,II.1.1,Santa Fe,AR-S,annual,2012,gas oil combustion consumption by public passenger transport,77.7306012,TJ,CO2,74100.0,kg/TJ,5759837.54892,kg +a08f5b85-66ce-3c39-b720-7addfafa9f75,SESCO,II.1.1,Santa Fe,AR-S,annual,2012,gas oil combustion consumption by public passenger transport,77.7306012,TJ,CH4,3.9,kg/TJ,303.14934467999996,kg +a08f5b85-66ce-3c39-b720-7addfafa9f75,SESCO,II.1.1,Santa Fe,AR-S,annual,2012,gas oil combustion consumption by public passenger transport,77.7306012,TJ,N2O,3.9,kg/TJ,303.14934467999996,kg +209989f8-bf91-3796-8779-55419d3a8aea,SESCO,II.1.1,Buenos Aires,AR-B,annual,2012,gas oil combustion consumption by public passenger transport,0.187824,TJ,CO2,74100.0,kg/TJ,13917.758399999999,kg +793ac937-1ea5-3078-aa7e-fbdf6d4ba891,SESCO,II.1.1,Buenos Aires,AR-B,annual,2012,gas oil combustion consumption by public passenger transport,0.187824,TJ,CH4,3.9,kg/TJ,0.7325136,kg +793ac937-1ea5-3078-aa7e-fbdf6d4ba891,SESCO,II.1.1,Buenos Aires,AR-B,annual,2012,gas oil combustion consumption by public passenger transport,0.187824,TJ,N2O,3.9,kg/TJ,0.7325136,kg +abd119b7-71da-3c4b-9b9e-634fa55efe2b,SESCO,II.1.1,Capital Federal,AR-C,annual,2012,gas oil combustion consumption by public passenger transport,14.97174,TJ,CO2,74100.0,kg/TJ,1109405.9340000001,kg +e01ed4b3-436b-34cd-8c26-4d4aef187bac,SESCO,II.1.1,Capital Federal,AR-C,annual,2012,gas oil combustion consumption by public passenger transport,14.97174,TJ,CH4,3.9,kg/TJ,58.389786,kg +e01ed4b3-436b-34cd-8c26-4d4aef187bac,SESCO,II.1.1,Capital Federal,AR-C,annual,2012,gas oil combustion consumption by public passenger transport,14.97174,TJ,N2O,3.9,kg/TJ,58.389786,kg +0b791362-7e8f-3bdc-bff5-3104f73090bb,SESCO,II.1.1,Chubut,AR-U,annual,2012,gas oil combustion consumption by public passenger transport,0.166152,TJ,CO2,74100.0,kg/TJ,12311.8632,kg +f74310d9-e7bd-32e4-a5e1-513c75b03779,SESCO,II.1.1,Chubut,AR-U,annual,2012,gas oil combustion consumption by public passenger transport,0.166152,TJ,CH4,3.9,kg/TJ,0.6479927999999999,kg +f74310d9-e7bd-32e4-a5e1-513c75b03779,SESCO,II.1.1,Chubut,AR-U,annual,2012,gas oil combustion consumption by public passenger transport,0.166152,TJ,N2O,3.9,kg/TJ,0.6479927999999999,kg +d78b322d-6716-31db-ae69-12dbfb35ddd4,SESCO,II.1.1,Córdoba,AR-X,annual,2012,gas oil combustion consumption by public passenger transport,0.1459248,TJ,CO2,74100.0,kg/TJ,10813.02768,kg +8963ae0b-b78c-3c35-b0cd-e546e82ecef3,SESCO,II.1.1,Córdoba,AR-X,annual,2012,gas oil combustion consumption by public passenger transport,0.1459248,TJ,CH4,3.9,kg/TJ,0.56910672,kg +8963ae0b-b78c-3c35-b0cd-e546e82ecef3,SESCO,II.1.1,Córdoba,AR-X,annual,2012,gas oil combustion consumption by public passenger transport,0.1459248,TJ,N2O,3.9,kg/TJ,0.56910672,kg +028f90d3-cc77-3d44-b9dc-9a6804fc78de,SESCO,II.1.1,Entre Rios,AR-E,annual,2012,gas oil combustion consumption by public passenger transport,13.5905112,TJ,CO2,74100.0,kg/TJ,1007056.87992,kg +4cf0849e-1ad0-328a-a8fb-c82eeb599c50,SESCO,II.1.1,Entre Rios,AR-E,annual,2012,gas oil combustion consumption by public passenger transport,13.5905112,TJ,CH4,3.9,kg/TJ,53.002993679999996,kg +4cf0849e-1ad0-328a-a8fb-c82eeb599c50,SESCO,II.1.1,Entre Rios,AR-E,annual,2012,gas oil combustion consumption by public passenger transport,13.5905112,TJ,N2O,3.9,kg/TJ,53.002993679999996,kg +655c40eb-ff36-36b4-b38c-4e6a3b286e66,SESCO,II.1.1,Mendoza,AR-M,annual,2012,gas oil combustion consumption by public passenger transport,0.0093912,TJ,CO2,74100.0,kg/TJ,695.88792,kg +74f8838d-da0c-3cfd-9ee6-7ee750df7d6a,SESCO,II.1.1,Mendoza,AR-M,annual,2012,gas oil combustion consumption by public passenger transport,0.0093912,TJ,CH4,3.9,kg/TJ,0.03662568,kg +74f8838d-da0c-3cfd-9ee6-7ee750df7d6a,SESCO,II.1.1,Mendoza,AR-M,annual,2012,gas oil combustion consumption by public passenger transport,0.0093912,TJ,N2O,3.9,kg/TJ,0.03662568,kg +b001bb9a-730b-36b2-baa6-d7aecaa242f1,SESCO,II.1.1,Neuquén,AR-Q,annual,2012,gas oil combustion consumption by public passenger transport,0.0057792,TJ,CO2,74100.0,kg/TJ,428.23872,kg +9cb0e2d6-a6d7-3297-a04e-5cc1c73532b0,SESCO,II.1.1,Neuquén,AR-Q,annual,2012,gas oil combustion consumption by public passenger transport,0.0057792,TJ,CH4,3.9,kg/TJ,0.02253888,kg +9cb0e2d6-a6d7-3297-a04e-5cc1c73532b0,SESCO,II.1.1,Neuquén,AR-Q,annual,2012,gas oil combustion consumption by public passenger transport,0.0057792,TJ,N2O,3.9,kg/TJ,0.02253888,kg +53ee0eef-d411-34c8-b139-89b5187ff052,SESCO,II.1.1,Salta,AR-A,annual,2012,gas oil combustion consumption by public passenger transport,0.03612,TJ,CO2,74100.0,kg/TJ,2676.4919999999997,kg +79a9c050-79d6-37f1-9982-1fee1612bbcb,SESCO,II.1.1,Salta,AR-A,annual,2012,gas oil combustion consumption by public passenger transport,0.03612,TJ,CH4,3.9,kg/TJ,0.140868,kg +79a9c050-79d6-37f1-9982-1fee1612bbcb,SESCO,II.1.1,Salta,AR-A,annual,2012,gas oil combustion consumption by public passenger transport,0.03612,TJ,N2O,3.9,kg/TJ,0.140868,kg +fabe2e97-510d-3a64-b097-abffe74f3787,SESCO,II.1.1,Santa Fe,AR-S,annual,2012,gas oil combustion consumption by public passenger transport,0.2232216,TJ,CO2,74100.0,kg/TJ,16540.720559999998,kg +6aa71744-1247-3b34-8ddd-e088a9bfaa6a,SESCO,II.1.1,Santa Fe,AR-S,annual,2012,gas oil combustion consumption by public passenger transport,0.2232216,TJ,CH4,3.9,kg/TJ,0.87056424,kg +6aa71744-1247-3b34-8ddd-e088a9bfaa6a,SESCO,II.1.1,Santa Fe,AR-S,annual,2012,gas oil combustion consumption by public passenger transport,0.2232216,TJ,N2O,3.9,kg/TJ,0.87056424,kg +403eaf84-ea1a-3a7f-8109-b267c3b1cc68,SESCO,II.5.1,Buenos Aires,AR-B,annual,2012,gas oil combustion consumption by agriculture machines,326.516604372,TJ,CO2,74100.0,kg/TJ,24194880.3839652,kg +6bf8e381-c0fe-3269-b903-4aac9399b16d,SESCO,II.5.1,Buenos Aires,AR-B,annual,2012,gas oil combustion consumption by agriculture machines,326.516604372,TJ,CH4,3.9,kg/TJ,1273.4147570508,kg +6bf8e381-c0fe-3269-b903-4aac9399b16d,SESCO,II.5.1,Buenos Aires,AR-B,annual,2012,gas oil combustion consumption by agriculture machines,326.516604372,TJ,N2O,3.9,kg/TJ,1273.4147570508,kg +8220feed-85e4-3024-a68f-39482e9635b7,SESCO,II.5.1,Córdoba,AR-X,annual,2012,gas oil combustion consumption by agriculture machines,581.197153152,TJ,CO2,74100.0,kg/TJ,43066709.048563205,kg +2eb86554-12b5-36b1-b4fc-aafc6d78a8b4,SESCO,II.5.1,Córdoba,AR-X,annual,2012,gas oil combustion consumption by agriculture machines,581.197153152,TJ,CH4,3.9,kg/TJ,2266.6688972928,kg +2eb86554-12b5-36b1-b4fc-aafc6d78a8b4,SESCO,II.5.1,Córdoba,AR-X,annual,2012,gas oil combustion consumption by agriculture machines,581.197153152,TJ,N2O,3.9,kg/TJ,2266.6688972928,kg +626bb670-e581-30fa-a70a-63bde79874ac,SESCO,II.5.1,Entre Rios,AR-E,annual,2012,gas oil combustion consumption by agriculture machines,602.131441884,TJ,CO2,74100.0,kg/TJ,44617939.8436044,kg +5db6a5f4-e46c-325b-8ae3-bd7ff3e20fc4,SESCO,II.5.1,Entre Rios,AR-E,annual,2012,gas oil combustion consumption by agriculture machines,602.131441884,TJ,CH4,3.9,kg/TJ,2348.3126233476,kg +5db6a5f4-e46c-325b-8ae3-bd7ff3e20fc4,SESCO,II.5.1,Entre Rios,AR-E,annual,2012,gas oil combustion consumption by agriculture machines,602.131441884,TJ,N2O,3.9,kg/TJ,2348.3126233476,kg +9d3dbade-9e2b-30f8-be9e-82cf561bb19a,SESCO,II.5.1,La Pampa,AR-L,annual,2012,gas oil combustion consumption by agriculture machines,18.09805242,TJ,CO2,74100.0,kg/TJ,1341065.6843219998,kg +634de0a3-0eba-3ca0-9a62-664084d7ceae,SESCO,II.5.1,La Pampa,AR-L,annual,2012,gas oil combustion consumption by agriculture machines,18.09805242,TJ,CH4,3.9,kg/TJ,70.582404438,kg +634de0a3-0eba-3ca0-9a62-664084d7ceae,SESCO,II.5.1,La Pampa,AR-L,annual,2012,gas oil combustion consumption by agriculture machines,18.09805242,TJ,N2O,3.9,kg/TJ,70.582404438,kg +1544019a-dcaf-3373-bc03-d3785eafff89,SESCO,II.5.1,Santa Fe,AR-S,annual,2012,gas oil combustion consumption by agriculture machines,452.237108064,TJ,CO2,74100.0,kg/TJ,33510769.707542397,kg +6eab9214-91d5-36db-88c6-276f0d0e2e31,SESCO,II.5.1,Santa Fe,AR-S,annual,2012,gas oil combustion consumption by agriculture machines,452.237108064,TJ,CH4,3.9,kg/TJ,1763.7247214495999,kg +6eab9214-91d5-36db-88c6-276f0d0e2e31,SESCO,II.5.1,Santa Fe,AR-S,annual,2012,gas oil combustion consumption by agriculture machines,452.237108064,TJ,N2O,3.9,kg/TJ,1763.7247214495999,kg +d78aef6d-c8da-3b4d-b473-e92383b1fccc,SESCO,II.5.1,Santiago del Estero,AR-G,annual,2012,gas oil combustion consumption by agriculture machines,111.05105919600001,TJ,CO2,74100.0,kg/TJ,8228883.4864236,kg +32243880-79d0-3b06-9d70-81fe7879b0b8,SESCO,II.5.1,Santiago del Estero,AR-G,annual,2012,gas oil combustion consumption by agriculture machines,111.05105919600001,TJ,CH4,3.9,kg/TJ,433.0991308644,kg +32243880-79d0-3b06-9d70-81fe7879b0b8,SESCO,II.5.1,Santiago del Estero,AR-G,annual,2012,gas oil combustion consumption by agriculture machines,111.05105919600001,TJ,N2O,3.9,kg/TJ,433.0991308644,kg +cc4eddfd-66d4-313a-ae76-b1d08936d767,SESCO,II.1.1,Buenos Aires,AR-B,annual,2012,gas oil combustion consumption by to the public,4715.930553767999,TJ,CO2,74100.0,kg/TJ,349450454.0342088,kg +71a7cfff-6308-3a6f-a356-b0703f215140,SESCO,II.1.1,Buenos Aires,AR-B,annual,2012,gas oil combustion consumption by to the public,4715.930553767999,TJ,CH4,3.9,kg/TJ,18392.129159695196,kg +71a7cfff-6308-3a6f-a356-b0703f215140,SESCO,II.1.1,Buenos Aires,AR-B,annual,2012,gas oil combustion consumption by to the public,4715.930553767999,TJ,N2O,3.9,kg/TJ,18392.129159695196,kg +17d659d0-fc3c-35ea-9897-f8cc10f390d7,SESCO,II.1.1,Capital Federal,AR-C,annual,2012,gas oil combustion consumption by to the public,695.7239785439999,TJ,CO2,74100.0,kg/TJ,51553146.8101104,kg +8326a2a4-d747-3b7d-8549-da2085f3a4c5,SESCO,II.1.1,Capital Federal,AR-C,annual,2012,gas oil combustion consumption by to the public,695.7239785439999,TJ,CH4,3.9,kg/TJ,2713.3235163215995,kg +8326a2a4-d747-3b7d-8549-da2085f3a4c5,SESCO,II.1.1,Capital Federal,AR-C,annual,2012,gas oil combustion consumption by to the public,695.7239785439999,TJ,N2O,3.9,kg/TJ,2713.3235163215995,kg +1b416a4a-212e-3741-a168-860c49d966d6,SESCO,II.1.1,Catamarca,AR-K,annual,2012,gas oil combustion consumption by to the public,143.899165116,TJ,CO2,74100.0,kg/TJ,10662928.1350956,kg +233204cd-5874-359d-8aaa-118bdbdf061d,SESCO,II.1.1,Catamarca,AR-K,annual,2012,gas oil combustion consumption by to the public,143.899165116,TJ,CH4,3.9,kg/TJ,561.2067439524,kg +233204cd-5874-359d-8aaa-118bdbdf061d,SESCO,II.1.1,Catamarca,AR-K,annual,2012,gas oil combustion consumption by to the public,143.899165116,TJ,N2O,3.9,kg/TJ,561.2067439524,kg +fe572fde-1c10-3a1c-a4ee-504f84ae61f6,SESCO,II.1.1,Chaco,AR-H,annual,2012,gas oil combustion consumption by to the public,550.06266672,TJ,CO2,74100.0,kg/TJ,40759643.603952006,kg +a82b2016-3b84-3d76-a462-66c5e225fb30,SESCO,II.1.1,Chaco,AR-H,annual,2012,gas oil combustion consumption by to the public,550.06266672,TJ,CH4,3.9,kg/TJ,2145.244400208,kg +a82b2016-3b84-3d76-a462-66c5e225fb30,SESCO,II.1.1,Chaco,AR-H,annual,2012,gas oil combustion consumption by to the public,550.06266672,TJ,N2O,3.9,kg/TJ,2145.244400208,kg +d299e23f-756e-3acd-929d-efa64ddd00a5,SESCO,II.1.1,Corrientes,AR-W,annual,2012,gas oil combustion consumption by to the public,870.264458448,TJ,CO2,74100.0,kg/TJ,64486596.3709968,kg +1a9ecf1a-8ad5-3781-90fd-63b218b87af7,SESCO,II.1.1,Corrientes,AR-W,annual,2012,gas oil combustion consumption by to the public,870.264458448,TJ,CH4,3.9,kg/TJ,3394.0313879472,kg +1a9ecf1a-8ad5-3781-90fd-63b218b87af7,SESCO,II.1.1,Corrientes,AR-W,annual,2012,gas oil combustion consumption by to the public,870.264458448,TJ,N2O,3.9,kg/TJ,3394.0313879472,kg +1a6e7699-92cb-3e5a-adce-61be1a413b70,SESCO,II.1.1,Córdoba,AR-X,annual,2012,gas oil combustion consumption by to the public,1844.204795832,TJ,CO2,74100.0,kg/TJ,136655575.3711512,kg +3d7a28c4-f47e-3695-83a6-5d3930cce854,SESCO,II.1.1,Córdoba,AR-X,annual,2012,gas oil combustion consumption by to the public,1844.204795832,TJ,CH4,3.9,kg/TJ,7192.3987037448,kg +3d7a28c4-f47e-3695-83a6-5d3930cce854,SESCO,II.1.1,Córdoba,AR-X,annual,2012,gas oil combustion consumption by to the public,1844.204795832,TJ,N2O,3.9,kg/TJ,7192.3987037448,kg +1881c0af-c242-3f1d-88a4-e945a6fad94f,SESCO,II.1.1,Entre Rios,AR-E,annual,2012,gas oil combustion consumption by to the public,1127.551025496,TJ,CO2,74100.0,kg/TJ,83551530.9892536,kg +06a9c1bb-266b-3bea-be93-b13be3c7b0a8,SESCO,II.1.1,Entre Rios,AR-E,annual,2012,gas oil combustion consumption by to the public,1127.551025496,TJ,CH4,3.9,kg/TJ,4397.448999434399,kg +06a9c1bb-266b-3bea-be93-b13be3c7b0a8,SESCO,II.1.1,Entre Rios,AR-E,annual,2012,gas oil combustion consumption by to the public,1127.551025496,TJ,N2O,3.9,kg/TJ,4397.448999434399,kg +0b823031-c103-3ba5-a1ff-e93b23e9e309,SESCO,II.1.1,Formosa,AR-P,annual,2012,gas oil combustion consumption by to the public,52.394162183999995,TJ,CO2,74100.0,kg/TJ,3882407.4178343997,kg +5e91435f-6fff-354b-a64f-bed226c98222,SESCO,II.1.1,Formosa,AR-P,annual,2012,gas oil combustion consumption by to the public,52.394162183999995,TJ,CH4,3.9,kg/TJ,204.33723251759997,kg +5e91435f-6fff-354b-a64f-bed226c98222,SESCO,II.1.1,Formosa,AR-P,annual,2012,gas oil combustion consumption by to the public,52.394162183999995,TJ,N2O,3.9,kg/TJ,204.33723251759997,kg +164dae26-2dc6-337c-9a72-816c11d32f3c,SESCO,II.1.1,Jujuy,AR-Y,annual,2012,gas oil combustion consumption by to the public,31.133330592,TJ,CO2,74100.0,kg/TJ,2306979.7968672,kg +badd1138-9548-31b7-b8fc-e1c19f0d0325,SESCO,II.1.1,Jujuy,AR-Y,annual,2012,gas oil combustion consumption by to the public,31.133330592,TJ,CH4,3.9,kg/TJ,121.4199893088,kg +badd1138-9548-31b7-b8fc-e1c19f0d0325,SESCO,II.1.1,Jujuy,AR-Y,annual,2012,gas oil combustion consumption by to the public,31.133330592,TJ,N2O,3.9,kg/TJ,121.4199893088,kg +c785889c-2ece-304c-873a-227593ab1634,SESCO,II.1.1,La Pampa,AR-L,annual,2012,gas oil combustion consumption by to the public,95.268945324,TJ,CO2,74100.0,kg/TJ,7059428.8485084,kg +53b6119a-ac3d-3e73-8205-e7e5a72afd78,SESCO,II.1.1,La Pampa,AR-L,annual,2012,gas oil combustion consumption by to the public,95.268945324,TJ,CH4,3.9,kg/TJ,371.54888676359997,kg +53b6119a-ac3d-3e73-8205-e7e5a72afd78,SESCO,II.1.1,La Pampa,AR-L,annual,2012,gas oil combustion consumption by to the public,95.268945324,TJ,N2O,3.9,kg/TJ,371.54888676359997,kg +0db7e250-3d18-38e9-af46-309b05d01312,SESCO,II.1.1,La Rioja,AR-F,annual,2012,gas oil combustion consumption by to the public,67.759140624,TJ,CO2,74100.0,kg/TJ,5020952.320238399,kg +aabdfa1b-153f-3203-80c3-150c0716fbe7,SESCO,II.1.1,La Rioja,AR-F,annual,2012,gas oil combustion consumption by to the public,67.759140624,TJ,CH4,3.9,kg/TJ,264.26064843359995,kg +aabdfa1b-153f-3203-80c3-150c0716fbe7,SESCO,II.1.1,La Rioja,AR-F,annual,2012,gas oil combustion consumption by to the public,67.759140624,TJ,N2O,3.9,kg/TJ,264.26064843359995,kg +bf8e78ac-b30d-3f66-a47b-d352d3483d9c,SESCO,II.1.1,Mendoza,AR-M,annual,2012,gas oil combustion consumption by to the public,607.225842804,TJ,CO2,74100.0,kg/TJ,44995434.9517764,kg +901411bc-b738-3973-9dc6-e003bd2684f0,SESCO,II.1.1,Mendoza,AR-M,annual,2012,gas oil combustion consumption by to the public,607.225842804,TJ,CH4,3.9,kg/TJ,2368.1807869356,kg +901411bc-b738-3973-9dc6-e003bd2684f0,SESCO,II.1.1,Mendoza,AR-M,annual,2012,gas oil combustion consumption by to the public,607.225842804,TJ,N2O,3.9,kg/TJ,2368.1807869356,kg +859b7ae6-bbb5-31da-b6ef-631e4bab412f,SESCO,II.1.1,Misiones,AR-N,annual,2012,gas oil combustion consumption by to the public,281.914169124,TJ,CO2,74100.0,kg/TJ,20889839.9320884,kg +5c3c3d2c-84b8-3eac-9ad1-c89a36f3001f,SESCO,II.1.1,Misiones,AR-N,annual,2012,gas oil combustion consumption by to the public,281.914169124,TJ,CH4,3.9,kg/TJ,1099.4652595836,kg +5c3c3d2c-84b8-3eac-9ad1-c89a36f3001f,SESCO,II.1.1,Misiones,AR-N,annual,2012,gas oil combustion consumption by to the public,281.914169124,TJ,N2O,3.9,kg/TJ,1099.4652595836,kg +c70e176c-459b-3ca1-98b4-4bacf0decb6c,SESCO,II.1.1,Rio Negro,AR-R,annual,2012,gas oil combustion consumption by to the public,0.143457804,TJ,CO2,74100.0,kg/TJ,10630.2232764,kg +5e954829-5dc7-3f73-9916-f2d3df48c565,SESCO,II.1.1,Rio Negro,AR-R,annual,2012,gas oil combustion consumption by to the public,0.143457804,TJ,CH4,3.9,kg/TJ,0.5594854356,kg +5e954829-5dc7-3f73-9916-f2d3df48c565,SESCO,II.1.1,Rio Negro,AR-R,annual,2012,gas oil combustion consumption by to the public,0.143457804,TJ,N2O,3.9,kg/TJ,0.5594854356,kg +a6b71442-6703-3c86-9dc7-8e7e8be144f6,SESCO,II.1.1,San Juan,AR-J,annual,2012,gas oil combustion consumption by to the public,430.960047756,TJ,CO2,74100.0,kg/TJ,31934139.5387196,kg +34cdd5a8-4ed2-349c-890f-0163928e8c15,SESCO,II.1.1,San Juan,AR-J,annual,2012,gas oil combustion consumption by to the public,430.960047756,TJ,CH4,3.9,kg/TJ,1680.7441862484,kg +34cdd5a8-4ed2-349c-890f-0163928e8c15,SESCO,II.1.1,San Juan,AR-J,annual,2012,gas oil combustion consumption by to the public,430.960047756,TJ,N2O,3.9,kg/TJ,1680.7441862484,kg +15aaf909-6e62-3d12-82af-43edf9c5f066,SESCO,II.1.1,San Luis,AR-D,annual,2012,gas oil combustion consumption by to the public,279.096068664,TJ,CO2,74100.0,kg/TJ,20681018.688002396,kg +453fd0ab-9a80-3bc0-acc1-d61286c72ec1,SESCO,II.1.1,San Luis,AR-D,annual,2012,gas oil combustion consumption by to the public,279.096068664,TJ,CH4,3.9,kg/TJ,1088.4746677895998,kg +453fd0ab-9a80-3bc0-acc1-d61286c72ec1,SESCO,II.1.1,San Luis,AR-D,annual,2012,gas oil combustion consumption by to the public,279.096068664,TJ,N2O,3.9,kg/TJ,1088.4746677895998,kg +0af4af0c-9c32-3b06-921b-91818db9c64c,SESCO,II.1.1,Santa Fe,AR-S,annual,2012,gas oil combustion consumption by to the public,3794.0231243880003,TJ,CO2,74100.0,kg/TJ,281137113.5171508,kg +a5966600-154e-3fd3-a57d-8820ad96752a,SESCO,II.1.1,Santa Fe,AR-S,annual,2012,gas oil combustion consumption by to the public,3794.0231243880003,TJ,CH4,3.9,kg/TJ,14796.6901851132,kg +a5966600-154e-3fd3-a57d-8820ad96752a,SESCO,II.1.1,Santa Fe,AR-S,annual,2012,gas oil combustion consumption by to the public,3794.0231243880003,TJ,N2O,3.9,kg/TJ,14796.6901851132,kg +a9e5f523-3b41-3a8e-a812-0f10d2b33d61,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2012,gas oil combustion consumption by to the public,204.80003879999998,TJ,CO2,74100.0,kg/TJ,15175682.875079999,kg +ada23966-fd1d-3adf-9ca6-e2161d04615e,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2012,gas oil combustion consumption by to the public,204.80003879999998,TJ,CH4,3.9,kg/TJ,798.7201513199999,kg +ada23966-fd1d-3adf-9ca6-e2161d04615e,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2012,gas oil combustion consumption by to the public,204.80003879999998,TJ,N2O,3.9,kg/TJ,798.7201513199999,kg +dd499800-f846-34e9-86e3-7012add1a0ed,SESCO,II.1.1,Tucuman,AR-T,annual,2012,gas oil combustion consumption by to the public,469.347516876,TJ,CO2,74100.0,kg/TJ,34778651.0005116,kg +a769a79e-cc0b-34cd-bd0f-e1963cc736b0,SESCO,II.1.1,Tucuman,AR-T,annual,2012,gas oil combustion consumption by to the public,469.347516876,TJ,CH4,3.9,kg/TJ,1830.4553158164,kg +a769a79e-cc0b-34cd-bd0f-e1963cc736b0,SESCO,II.1.1,Tucuman,AR-T,annual,2012,gas oil combustion consumption by to the public,469.347516876,TJ,N2O,3.9,kg/TJ,1830.4553158164,kg +0d197305-e262-3a89-9fe9-14448aada770,SESCO,II.1.1,Buenos Aires,AR-B,annual,2012,gas oil combustion consumption by public passenger transport,183.97929328799998,TJ,CO2,74100.0,kg/TJ,13632865.632640798,kg +fef6a88d-fd90-3062-9291-6d0ce2129e68,SESCO,II.1.1,Buenos Aires,AR-B,annual,2012,gas oil combustion consumption by public passenger transport,183.97929328799998,TJ,CH4,3.9,kg/TJ,717.5192438231999,kg +fef6a88d-fd90-3062-9291-6d0ce2129e68,SESCO,II.1.1,Buenos Aires,AR-B,annual,2012,gas oil combustion consumption by public passenger transport,183.97929328799998,TJ,N2O,3.9,kg/TJ,717.5192438231999,kg +201e0e45-73e4-31fd-9157-cf787f1d4be6,SESCO,II.1.1,Capital Federal,AR-C,annual,2012,gas oil combustion consumption by public passenger transport,2.5117847999999996,TJ,CO2,74100.0,kg/TJ,186123.25367999997,kg +a4627bdd-b6b3-3568-a6eb-6f0c071ecab8,SESCO,II.1.1,Capital Federal,AR-C,annual,2012,gas oil combustion consumption by public passenger transport,2.5117847999999996,TJ,CH4,3.9,kg/TJ,9.795960719999998,kg +a4627bdd-b6b3-3568-a6eb-6f0c071ecab8,SESCO,II.1.1,Capital Federal,AR-C,annual,2012,gas oil combustion consumption by public passenger transport,2.5117847999999996,TJ,N2O,3.9,kg/TJ,9.795960719999998,kg +d01bb936-5142-34d9-abab-59513d6f9cdd,SESCO,II.1.1,Corrientes,AR-W,annual,2012,gas oil combustion consumption by public passenger transport,6.182021076,TJ,CO2,74100.0,kg/TJ,458087.7617316,kg +cb642e42-b11b-3585-a8f3-ffac54380f7b,SESCO,II.1.1,Corrientes,AR-W,annual,2012,gas oil combustion consumption by public passenger transport,6.182021076,TJ,CH4,3.9,kg/TJ,24.109882196399997,kg +cb642e42-b11b-3585-a8f3-ffac54380f7b,SESCO,II.1.1,Corrientes,AR-W,annual,2012,gas oil combustion consumption by public passenger transport,6.182021076,TJ,N2O,3.9,kg/TJ,24.109882196399997,kg +5c16b767-ba74-3a2f-9d3c-f96c22527b41,SESCO,II.1.1,Córdoba,AR-X,annual,2012,gas oil combustion consumption by public passenger transport,79.173457944,TJ,CO2,74100.0,kg/TJ,5866753.2336504,kg +aacb3ba9-d7cb-3a2d-be1c-7a7eda20ec36,SESCO,II.1.1,Córdoba,AR-X,annual,2012,gas oil combustion consumption by public passenger transport,79.173457944,TJ,CH4,3.9,kg/TJ,308.7764859816,kg +aacb3ba9-d7cb-3a2d-be1c-7a7eda20ec36,SESCO,II.1.1,Córdoba,AR-X,annual,2012,gas oil combustion consumption by public passenger transport,79.173457944,TJ,N2O,3.9,kg/TJ,308.7764859816,kg +d454bf1e-1641-321e-bcd9-90f0c1b6acc9,SESCO,II.1.1,Entre Rios,AR-E,annual,2012,gas oil combustion consumption by public passenger transport,48.418350708,TJ,CO2,74100.0,kg/TJ,3587799.7874628,kg +c27f8a3a-6d61-3013-a0a5-22767379a5dc,SESCO,II.1.1,Entre Rios,AR-E,annual,2012,gas oil combustion consumption by public passenger transport,48.418350708,TJ,CH4,3.9,kg/TJ,188.83156776119998,kg +c27f8a3a-6d61-3013-a0a5-22767379a5dc,SESCO,II.1.1,Entre Rios,AR-E,annual,2012,gas oil combustion consumption by public passenger transport,48.418350708,TJ,N2O,3.9,kg/TJ,188.83156776119998,kg +99e6b816-f6e4-3120-90a2-a3fb5329a523,SESCO,II.1.1,Jujuy,AR-Y,annual,2012,gas oil combustion consumption by public passenger transport,34.054799268000004,TJ,CO2,74100.0,kg/TJ,2523460.6257588,kg +1223d03f-9131-3887-8b6e-1ff7dad69aa9,SESCO,II.1.1,Jujuy,AR-Y,annual,2012,gas oil combustion consumption by public passenger transport,34.054799268000004,TJ,CH4,3.9,kg/TJ,132.8137171452,kg +1223d03f-9131-3887-8b6e-1ff7dad69aa9,SESCO,II.1.1,Jujuy,AR-Y,annual,2012,gas oil combustion consumption by public passenger transport,34.054799268000004,TJ,N2O,3.9,kg/TJ,132.8137171452,kg +458eb68d-43fe-320b-9f52-d98d69a9589f,SESCO,II.1.1,Misiones,AR-N,annual,2012,gas oil combustion consumption by public passenger transport,23.190517307999997,TJ,CO2,74100.0,kg/TJ,1718417.3325227997,kg +4b9380e7-78e7-38f0-a812-c6891a6880b8,SESCO,II.1.1,Misiones,AR-N,annual,2012,gas oil combustion consumption by public passenger transport,23.190517307999997,TJ,CH4,3.9,kg/TJ,90.44301750119999,kg +4b9380e7-78e7-38f0-a812-c6891a6880b8,SESCO,II.1.1,Misiones,AR-N,annual,2012,gas oil combustion consumption by public passenger transport,23.190517307999997,TJ,N2O,3.9,kg/TJ,90.44301750119999,kg +ca935c8d-0760-351a-a384-061f034a4d9c,SESCO,II.1.1,Salta,AR-A,annual,2012,gas oil combustion consumption by public passenger transport,13.618551155999999,TJ,CO2,74100.0,kg/TJ,1009134.6406595999,kg +8d367e2d-549e-3a28-9f66-05cd3e6a8459,SESCO,II.1.1,Salta,AR-A,annual,2012,gas oil combustion consumption by public passenger transport,13.618551155999999,TJ,CH4,3.9,kg/TJ,53.112349508399994,kg +8d367e2d-549e-3a28-9f66-05cd3e6a8459,SESCO,II.1.1,Salta,AR-A,annual,2012,gas oil combustion consumption by public passenger transport,13.618551155999999,TJ,N2O,3.9,kg/TJ,53.112349508399994,kg +3e023cab-7119-3ce9-bf72-02076853a251,SESCO,II.1.1,San Juan,AR-J,annual,2012,gas oil combustion consumption by public passenger transport,6.250609344,TJ,CO2,74100.0,kg/TJ,463170.1523904,kg +a6cc0616-e7ae-345b-ad0a-6fb0ac6d9e78,SESCO,II.1.1,San Juan,AR-J,annual,2012,gas oil combustion consumption by public passenger transport,6.250609344,TJ,CH4,3.9,kg/TJ,24.3773764416,kg +a6cc0616-e7ae-345b-ad0a-6fb0ac6d9e78,SESCO,II.1.1,San Juan,AR-J,annual,2012,gas oil combustion consumption by public passenger transport,6.250609344,TJ,N2O,3.9,kg/TJ,24.3773764416,kg +431510fc-f4ac-3b4d-93f9-9e7f13d6644e,SESCO,II.1.1,Santa Fe,AR-S,annual,2012,gas oil combustion consumption by public passenger transport,424.183831008,TJ,CO2,74100.0,kg/TJ,31432021.877692804,kg +880b143d-5e79-3842-b7c4-5c7b52e0566f,SESCO,II.1.1,Santa Fe,AR-S,annual,2012,gas oil combustion consumption by public passenger transport,424.183831008,TJ,CH4,3.9,kg/TJ,1654.3169409312002,kg +880b143d-5e79-3842-b7c4-5c7b52e0566f,SESCO,II.1.1,Santa Fe,AR-S,annual,2012,gas oil combustion consumption by public passenger transport,424.183831008,TJ,N2O,3.9,kg/TJ,1654.3169409312002,kg +9fa79da3-c494-38be-abd6-ff5742fd2c3d,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2012,gas oil combustion consumption by public passenger transport,13.973628816,TJ,CO2,74100.0,kg/TJ,1035445.8952656,kg +76cadee6-3ac3-3f37-9cf9-e772ee34518e,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2012,gas oil combustion consumption by public passenger transport,13.973628816,TJ,CH4,3.9,kg/TJ,54.497152382399996,kg +76cadee6-3ac3-3f37-9cf9-e772ee34518e,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2012,gas oil combustion consumption by public passenger transport,13.973628816,TJ,N2O,3.9,kg/TJ,54.497152382399996,kg +4d93be0d-8349-37b7-9b3d-30b294597723,SESCO,II.1.1,Tucuman,AR-T,annual,2012,gas oil combustion consumption by public passenger transport,5.578683432,TJ,CO2,74100.0,kg/TJ,413380.4423112,kg +9a551afc-27e9-3393-8598-50d03b7f0924,SESCO,II.1.1,Tucuman,AR-T,annual,2012,gas oil combustion consumption by public passenger transport,5.578683432,TJ,CH4,3.9,kg/TJ,21.7568653848,kg +9a551afc-27e9-3393-8598-50d03b7f0924,SESCO,II.1.1,Tucuman,AR-T,annual,2012,gas oil combustion consumption by public passenger transport,5.578683432,TJ,N2O,3.9,kg/TJ,21.7568653848,kg +c027cfa2-f042-360c-a102-5a3460112d2e,SESCO,II.5.1,Buenos Aires,AR-B,annual,2012,gas oil combustion consumption by agriculture machines,668.0527644,TJ,CO2,74100.0,kg/TJ,49502709.84204,kg +5c886852-3f5d-3c2d-b3ae-18495609e99b,SESCO,II.5.1,Buenos Aires,AR-B,annual,2012,gas oil combustion consumption by agriculture machines,668.0527644,TJ,CH4,3.9,kg/TJ,2605.40578116,kg +5c886852-3f5d-3c2d-b3ae-18495609e99b,SESCO,II.5.1,Buenos Aires,AR-B,annual,2012,gas oil combustion consumption by agriculture machines,668.0527644,TJ,N2O,3.9,kg/TJ,2605.40578116,kg +8ad7faa8-a679-39f6-93ca-e528b11f75d9,SESCO,II.5.1,Córdoba,AR-X,annual,2012,gas oil combustion consumption by agriculture machines,47.80305012,TJ,CO2,74100.0,kg/TJ,3542206.013892,kg +63c4a254-1196-3b0d-b3bc-c9a525cc8abd,SESCO,II.5.1,Córdoba,AR-X,annual,2012,gas oil combustion consumption by agriculture machines,47.80305012,TJ,CH4,3.9,kg/TJ,186.431895468,kg +63c4a254-1196-3b0d-b3bc-c9a525cc8abd,SESCO,II.5.1,Córdoba,AR-X,annual,2012,gas oil combustion consumption by agriculture machines,47.80305012,TJ,N2O,3.9,kg/TJ,186.431895468,kg +4d65d824-c749-3fda-8033-a96fdc111bb6,SESCO,II.5.1,Neuquén,AR-Q,annual,2012,gas oil combustion consumption by agriculture machines,14.72764104,TJ,CO2,74100.0,kg/TJ,1091318.201064,kg +5ce0d0d8-d2fc-3be2-a15e-40f54f0296dc,SESCO,II.5.1,Neuquén,AR-Q,annual,2012,gas oil combustion consumption by agriculture machines,14.72764104,TJ,CH4,3.9,kg/TJ,57.437800056,kg +5ce0d0d8-d2fc-3be2-a15e-40f54f0296dc,SESCO,II.5.1,Neuquén,AR-Q,annual,2012,gas oil combustion consumption by agriculture machines,14.72764104,TJ,N2O,3.9,kg/TJ,57.437800056,kg +07783935-b39c-3669-950b-38029c6f0a1f,SESCO,II.5.1,Rio Negro,AR-R,annual,2012,gas oil combustion consumption by agriculture machines,3.32531556,TJ,CO2,74100.0,kg/TJ,246405.882996,kg +c3c912ef-0bb9-3c13-a10d-8c1acf30f5e3,SESCO,II.5.1,Rio Negro,AR-R,annual,2012,gas oil combustion consumption by agriculture machines,3.32531556,TJ,CH4,3.9,kg/TJ,12.968730683999999,kg +c3c912ef-0bb9-3c13-a10d-8c1acf30f5e3,SESCO,II.5.1,Rio Negro,AR-R,annual,2012,gas oil combustion consumption by agriculture machines,3.32531556,TJ,N2O,3.9,kg/TJ,12.968730683999999,kg +4cbaca26-9308-303e-89e8-c84e1c78418c,SESCO,II.5.1,Santa Cruz,AR-Z,annual,2012,gas oil combustion consumption by agriculture machines,6.126891119999999,TJ,CO2,74100.0,kg/TJ,454002.6319919999,kg +eb602002-8ddd-3c20-bb9d-24e8ab29bb95,SESCO,II.5.1,Santa Cruz,AR-Z,annual,2012,gas oil combustion consumption by agriculture machines,6.126891119999999,TJ,CH4,3.9,kg/TJ,23.894875367999994,kg +eb602002-8ddd-3c20-bb9d-24e8ab29bb95,SESCO,II.5.1,Santa Cruz,AR-Z,annual,2012,gas oil combustion consumption by agriculture machines,6.126891119999999,TJ,N2O,3.9,kg/TJ,23.894875367999994,kg +e155433b-8eef-32cd-b372-d1de5db3e892,SESCO,II.5.1,Santa Fe,AR-S,annual,2012,gas oil combustion consumption by agriculture machines,1.9079667599999999,TJ,CO2,74100.0,kg/TJ,141380.336916,kg +42e29197-369a-3c7a-abe6-7ede4cbcb0a5,SESCO,II.5.1,Santa Fe,AR-S,annual,2012,gas oil combustion consumption by agriculture machines,1.9079667599999999,TJ,CH4,3.9,kg/TJ,7.441070364,kg +42e29197-369a-3c7a-abe6-7ede4cbcb0a5,SESCO,II.5.1,Santa Fe,AR-S,annual,2012,gas oil combustion consumption by agriculture machines,1.9079667599999999,TJ,N2O,3.9,kg/TJ,7.441070364,kg +edf1e65c-92a2-36b4-9d01-54f54849c685,SESCO,II.1.1,Buenos Aires,AR-B,annual,2012,gas oil combustion consumption by to the public,10205.831336399999,TJ,CO2,74100.0,kg/TJ,756252102.0272399,kg +d3dd28c9-9a91-368b-a348-1dc1d18717f1,SESCO,II.1.1,Buenos Aires,AR-B,annual,2012,gas oil combustion consumption by to the public,10205.831336399999,TJ,CH4,3.9,kg/TJ,39802.742211959994,kg +d3dd28c9-9a91-368b-a348-1dc1d18717f1,SESCO,II.1.1,Buenos Aires,AR-B,annual,2012,gas oil combustion consumption by to the public,10205.831336399999,TJ,N2O,3.9,kg/TJ,39802.742211959994,kg +f93db2f3-fa04-39f5-abab-b34fce390d19,SESCO,II.1.1,Capital Federal,AR-C,annual,2012,gas oil combustion consumption by to the public,729.80019336,TJ,CO2,74100.0,kg/TJ,54078194.327975996,kg +7376b7df-bf8e-39da-a719-3ae1ab304098,SESCO,II.1.1,Capital Federal,AR-C,annual,2012,gas oil combustion consumption by to the public,729.80019336,TJ,CH4,3.9,kg/TJ,2846.2207541039998,kg +7376b7df-bf8e-39da-a719-3ae1ab304098,SESCO,II.1.1,Capital Federal,AR-C,annual,2012,gas oil combustion consumption by to the public,729.80019336,TJ,N2O,3.9,kg/TJ,2846.2207541039998,kg +8394c24c-c5b1-3df5-b032-47d422c75d0e,SESCO,II.1.1,Chaco,AR-H,annual,2012,gas oil combustion consumption by to the public,8.28535008,TJ,CO2,74100.0,kg/TJ,613944.440928,kg +a8aed3b4-2671-31ec-a0af-9ff96fad2d55,SESCO,II.1.1,Chaco,AR-H,annual,2012,gas oil combustion consumption by to the public,8.28535008,TJ,CH4,3.9,kg/TJ,32.312865312,kg +a8aed3b4-2671-31ec-a0af-9ff96fad2d55,SESCO,II.1.1,Chaco,AR-H,annual,2012,gas oil combustion consumption by to the public,8.28535008,TJ,N2O,3.9,kg/TJ,32.312865312,kg +d6bad29b-6d42-3f7d-b165-530af30c5f79,SESCO,II.1.1,Chubut,AR-U,annual,2012,gas oil combustion consumption by to the public,1572.08301516,TJ,CO2,74100.0,kg/TJ,116491351.42335601,kg +f4c87919-eb24-3e0c-bee7-26c6f9e5260e,SESCO,II.1.1,Chubut,AR-U,annual,2012,gas oil combustion consumption by to the public,1572.08301516,TJ,CH4,3.9,kg/TJ,6131.123759124,kg +f4c87919-eb24-3e0c-bee7-26c6f9e5260e,SESCO,II.1.1,Chubut,AR-U,annual,2012,gas oil combustion consumption by to the public,1572.08301516,TJ,N2O,3.9,kg/TJ,6131.123759124,kg +1017eabf-c5f7-32e8-b8d9-a52871648118,SESCO,II.1.1,Córdoba,AR-X,annual,2012,gas oil combustion consumption by to the public,719.1002574,TJ,CO2,74100.0,kg/TJ,53285329.07334,kg +33651a3c-7e42-3074-aba9-238a75f483c8,SESCO,II.1.1,Córdoba,AR-X,annual,2012,gas oil combustion consumption by to the public,719.1002574,TJ,CH4,3.9,kg/TJ,2804.49100386,kg +33651a3c-7e42-3074-aba9-238a75f483c8,SESCO,II.1.1,Córdoba,AR-X,annual,2012,gas oil combustion consumption by to the public,719.1002574,TJ,N2O,3.9,kg/TJ,2804.49100386,kg +038e21c5-98ef-337c-bfa9-aac598542c1d,SESCO,II.1.1,Entre Rios,AR-E,annual,2012,gas oil combustion consumption by to the public,470.41564668,TJ,CO2,74100.0,kg/TJ,34857799.418988004,kg +7a2f41a4-6f64-3016-93af-c03a7fa29401,SESCO,II.1.1,Entre Rios,AR-E,annual,2012,gas oil combustion consumption by to the public,470.41564668,TJ,CH4,3.9,kg/TJ,1834.621022052,kg +7a2f41a4-6f64-3016-93af-c03a7fa29401,SESCO,II.1.1,Entre Rios,AR-E,annual,2012,gas oil combustion consumption by to the public,470.41564668,TJ,N2O,3.9,kg/TJ,1834.621022052,kg +83a53744-5de7-3dd8-bba6-49d074f6216e,SESCO,II.1.1,La Pampa,AR-L,annual,2012,gas oil combustion consumption by to the public,609.24640644,TJ,CO2,74100.0,kg/TJ,45145158.717204,kg +5eda157e-23e5-3ca9-a243-5c5ddcefdfcd,SESCO,II.1.1,La Pampa,AR-L,annual,2012,gas oil combustion consumption by to the public,609.24640644,TJ,CH4,3.9,kg/TJ,2376.0609851159998,kg +5eda157e-23e5-3ca9-a243-5c5ddcefdfcd,SESCO,II.1.1,La Pampa,AR-L,annual,2012,gas oil combustion consumption by to the public,609.24640644,TJ,N2O,3.9,kg/TJ,2376.0609851159998,kg +bc704d54-7e57-3bce-9473-95d45130d4cd,SESCO,II.1.1,La Rioja,AR-F,annual,2012,gas oil combustion consumption by to the public,13.25022468,TJ,CO2,74100.0,kg/TJ,981841.648788,kg +f6854bff-fec9-33fd-8068-a9d4ae287e9f,SESCO,II.1.1,La Rioja,AR-F,annual,2012,gas oil combustion consumption by to the public,13.25022468,TJ,CH4,3.9,kg/TJ,51.675876252,kg +f6854bff-fec9-33fd-8068-a9d4ae287e9f,SESCO,II.1.1,La Rioja,AR-F,annual,2012,gas oil combustion consumption by to the public,13.25022468,TJ,N2O,3.9,kg/TJ,51.675876252,kg +0365fd53-cc47-31e5-a567-3b7a7463e984,SESCO,II.1.1,Mendoza,AR-M,annual,2012,gas oil combustion consumption by to the public,53.77975427999999,TJ,CO2,74100.0,kg/TJ,3985079.792147999,kg +74d0ac12-ecb5-3af1-879f-92d32df0c4fa,SESCO,II.1.1,Mendoza,AR-M,annual,2012,gas oil combustion consumption by to the public,53.77975427999999,TJ,CH4,3.9,kg/TJ,209.74104169199995,kg +74d0ac12-ecb5-3af1-879f-92d32df0c4fa,SESCO,II.1.1,Mendoza,AR-M,annual,2012,gas oil combustion consumption by to the public,53.77975427999999,TJ,N2O,3.9,kg/TJ,209.74104169199995,kg +881400ce-8cd4-3370-b4fb-2fafe4ef8402,SESCO,II.1.1,Neuquén,AR-Q,annual,2012,gas oil combustion consumption by to the public,971.6833719599999,TJ,CO2,74100.0,kg/TJ,72001737.862236,kg +8efeb8a1-e2b0-3a9c-9c10-b2b731a26568,SESCO,II.1.1,Neuquén,AR-Q,annual,2012,gas oil combustion consumption by to the public,971.6833719599999,TJ,CH4,3.9,kg/TJ,3789.5651506439995,kg +8efeb8a1-e2b0-3a9c-9c10-b2b731a26568,SESCO,II.1.1,Neuquén,AR-Q,annual,2012,gas oil combustion consumption by to the public,971.6833719599999,TJ,N2O,3.9,kg/TJ,3789.5651506439995,kg +efb7d37d-7780-35d9-a9f8-c8dcc541f3ea,SESCO,II.1.1,Rio Negro,AR-R,annual,2012,gas oil combustion consumption by to the public,1541.00673972,TJ,CO2,74100.0,kg/TJ,114188599.413252,kg +95a036f9-53f8-30bd-90dd-c5dea3eaa005,SESCO,II.1.1,Rio Negro,AR-R,annual,2012,gas oil combustion consumption by to the public,1541.00673972,TJ,CH4,3.9,kg/TJ,6009.926284908,kg +95a036f9-53f8-30bd-90dd-c5dea3eaa005,SESCO,II.1.1,Rio Negro,AR-R,annual,2012,gas oil combustion consumption by to the public,1541.00673972,TJ,N2O,3.9,kg/TJ,6009.926284908,kg +ee0c3b46-f28d-35c9-9606-2d40010a3fe3,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2012,gas oil combustion consumption by to the public,1273.11578856,TJ,CO2,74100.0,kg/TJ,94337879.93229601,kg +e09061e2-40b6-33e2-9d27-7879c00b4eb7,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2012,gas oil combustion consumption by to the public,1273.11578856,TJ,CH4,3.9,kg/TJ,4965.151575384,kg +e09061e2-40b6-33e2-9d27-7879c00b4eb7,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2012,gas oil combustion consumption by to the public,1273.11578856,TJ,N2O,3.9,kg/TJ,4965.151575384,kg +06f55e71-2c00-3e5e-aecf-db08d1596217,SESCO,II.1.1,Santa Fe,AR-S,annual,2012,gas oil combustion consumption by to the public,612.1376679599999,TJ,CO2,74100.0,kg/TJ,45359401.19583599,kg +d2d07261-3a64-3b74-9875-5948cd141e69,SESCO,II.1.1,Santa Fe,AR-S,annual,2012,gas oil combustion consumption by to the public,612.1376679599999,TJ,CH4,3.9,kg/TJ,2387.3369050439996,kg +d2d07261-3a64-3b74-9875-5948cd141e69,SESCO,II.1.1,Santa Fe,AR-S,annual,2012,gas oil combustion consumption by to the public,612.1376679599999,TJ,N2O,3.9,kg/TJ,2387.3369050439996,kg +b7800e38-e5c3-3ab9-ab0b-eae112bdfc8c,SESCO,II.1.1,Buenos Aires,AR-B,annual,2012,gas oil combustion consumption by to the public,594.8588351999999,TJ,CO2,74100.0,kg/TJ,44079039.688319996,kg +8d5d0ca1-2a3e-3f07-a72e-518e18dc364c,SESCO,II.1.1,Buenos Aires,AR-B,annual,2012,gas oil combustion consumption by to the public,594.8588351999999,TJ,CH4,3.9,kg/TJ,2319.9494572799995,kg +8d5d0ca1-2a3e-3f07-a72e-518e18dc364c,SESCO,II.1.1,Buenos Aires,AR-B,annual,2012,gas oil combustion consumption by to the public,594.8588351999999,TJ,N2O,3.9,kg/TJ,2319.9494572799995,kg +b3c3032e-1851-32da-a1b1-4e2171be3572,SESCO,II.1.1,Capital Federal,AR-C,annual,2012,gas oil combustion consumption by to the public,159.92541767999998,TJ,CO2,74100.0,kg/TJ,11850473.450087998,kg +c29e5d03-5637-3649-b1fa-99109571deac,SESCO,II.1.1,Capital Federal,AR-C,annual,2012,gas oil combustion consumption by to the public,159.92541767999998,TJ,CH4,3.9,kg/TJ,623.7091289519999,kg +c29e5d03-5637-3649-b1fa-99109571deac,SESCO,II.1.1,Capital Federal,AR-C,annual,2012,gas oil combustion consumption by to the public,159.92541767999998,TJ,N2O,3.9,kg/TJ,623.7091289519999,kg +8c6b92df-7334-37f9-88ac-6b9f5305dbcb,SESCO,II.1.1,Córdoba,AR-X,annual,2012,gas oil combustion consumption by to the public,60.702224519999994,TJ,CO2,74100.0,kg/TJ,4498034.836932,kg +76721a91-b4aa-39da-8aa5-e6177c55b6df,SESCO,II.1.1,Córdoba,AR-X,annual,2012,gas oil combustion consumption by to the public,60.702224519999994,TJ,CH4,3.9,kg/TJ,236.73867562799998,kg +76721a91-b4aa-39da-8aa5-e6177c55b6df,SESCO,II.1.1,Córdoba,AR-X,annual,2012,gas oil combustion consumption by to the public,60.702224519999994,TJ,N2O,3.9,kg/TJ,236.73867562799998,kg +ae50a024-6c8e-33f9-bb4b-db843aebd916,SESCO,II.1.1,Entre Rios,AR-E,annual,2012,gas oil combustion consumption by to the public,51.907149000000004,TJ,CO2,74100.0,kg/TJ,3846319.7409,kg +8ec407d9-3aec-3a6f-be2e-c010b0b4630d,SESCO,II.1.1,Entre Rios,AR-E,annual,2012,gas oil combustion consumption by to the public,51.907149000000004,TJ,CH4,3.9,kg/TJ,202.4378811,kg +8ec407d9-3aec-3a6f-be2e-c010b0b4630d,SESCO,II.1.1,Entre Rios,AR-E,annual,2012,gas oil combustion consumption by to the public,51.907149000000004,TJ,N2O,3.9,kg/TJ,202.4378811,kg +38aa548f-ac21-396e-acb3-91ed50755114,SESCO,II.1.1,Santa Fe,AR-S,annual,2012,gas oil combustion consumption by to the public,86.56024355999999,TJ,CO2,74100.0,kg/TJ,6414114.047795999,kg +bc7bb53c-6404-3180-aa56-e832117b11ca,SESCO,II.1.1,Santa Fe,AR-S,annual,2012,gas oil combustion consumption by to the public,86.56024355999999,TJ,CH4,3.9,kg/TJ,337.58494988399997,kg +bc7bb53c-6404-3180-aa56-e832117b11ca,SESCO,II.1.1,Santa Fe,AR-S,annual,2012,gas oil combustion consumption by to the public,86.56024355999999,TJ,N2O,3.9,kg/TJ,337.58494988399997,kg +bc7cbfa1-3e1d-37a0-a217-78c43b7dba0f,SESCO,II.2.1,Buenos Aires,AR-B,annual,2012,gas oil combustion consumption by railway transport,35.88345012,TJ,CO2,74100.0,kg/TJ,2658963.6538919997,kg +5ca43814-0b4f-3f64-8a9b-fa128670166b,SESCO,II.2.1,Buenos Aires,AR-B,annual,2012,gas oil combustion consumption by railway transport,35.88345012,TJ,CH4,3.9,kg/TJ,139.945455468,kg +5ca43814-0b4f-3f64-8a9b-fa128670166b,SESCO,II.2.1,Buenos Aires,AR-B,annual,2012,gas oil combustion consumption by railway transport,35.88345012,TJ,N2O,3.9,kg/TJ,139.945455468,kg +aa386918-6aec-3030-a228-e62e8a36ee08,SESCO,II.2.1,La Pampa,AR-L,annual,2012,gas oil combustion consumption by railway transport,8.74613292,TJ,CO2,74100.0,kg/TJ,648088.4493720001,kg +a3db5839-cc39-3758-9382-eda3808442dc,SESCO,II.2.1,La Pampa,AR-L,annual,2012,gas oil combustion consumption by railway transport,8.74613292,TJ,CH4,3.9,kg/TJ,34.109918388000004,kg +a3db5839-cc39-3758-9382-eda3808442dc,SESCO,II.2.1,La Pampa,AR-L,annual,2012,gas oil combustion consumption by railway transport,8.74613292,TJ,N2O,3.9,kg/TJ,34.109918388000004,kg +9d030060-e9b9-39ea-8cd2-cb004fe45cae,SESCO,II.2.1,Rio Negro,AR-R,annual,2012,gas oil combustion consumption by railway transport,5.8570386,TJ,CO2,74100.0,kg/TJ,434006.56026,kg +0d3a520b-e658-3021-aad9-b10d94ec672d,SESCO,II.2.1,Rio Negro,AR-R,annual,2012,gas oil combustion consumption by railway transport,5.8570386,TJ,CH4,3.9,kg/TJ,22.84245054,kg +0d3a520b-e658-3021-aad9-b10d94ec672d,SESCO,II.2.1,Rio Negro,AR-R,annual,2012,gas oil combustion consumption by railway transport,5.8570386,TJ,N2O,3.9,kg/TJ,22.84245054,kg +1efb3860-a95f-36cf-a7ae-5e95659efee0,SESCO,II.1.1,Buenos Aires,AR-B,annual,2012,gasoline combustion consumption by freight transport,4.007377999999999,TJ,CO2,69300.0,kg/TJ,277711.29539999994,kg +e747cd0f-047e-31b5-85de-8bdcad8446ea,SESCO,II.1.1,Buenos Aires,AR-B,annual,2012,gasoline combustion consumption by freight transport,4.007377999999999,TJ,CH4,33.0,kg/TJ,132.24347399999996,kg +d22de109-4f57-3434-813f-763ac7f633fc,SESCO,II.1.1,Buenos Aires,AR-B,annual,2012,gasoline combustion consumption by freight transport,4.007377999999999,TJ,N2O,3.2,kg/TJ,12.823609599999997,kg +64546453-79e2-3e53-80be-e8a407ef4602,SESCO,II.1.1,Buenos Aires,AR-B,annual,2012,gas oil combustion consumption by freight transport,385.51616459999997,TJ,CO2,74100.0,kg/TJ,28566747.79686,kg +80c851ff-91f1-3ff0-b54f-65507d86adcb,SESCO,II.1.1,Buenos Aires,AR-B,annual,2012,gas oil combustion consumption by freight transport,385.51616459999997,TJ,CH4,3.9,kg/TJ,1503.5130419399998,kg +80c851ff-91f1-3ff0-b54f-65507d86adcb,SESCO,II.1.1,Buenos Aires,AR-B,annual,2012,gas oil combustion consumption by freight transport,385.51616459999997,TJ,N2O,3.9,kg/TJ,1503.5130419399998,kg +2abf498e-8141-3d57-8c19-4e1a08dccaec,SESCO,II.1.1,Capital Federal,AR-C,annual,2012,gas oil combustion consumption by freight transport,25.41627144,TJ,CO2,74100.0,kg/TJ,1883345.713704,kg +cf440f15-c0bf-30b5-aa85-f07e91736e04,SESCO,II.1.1,Capital Federal,AR-C,annual,2012,gas oil combustion consumption by freight transport,25.41627144,TJ,CH4,3.9,kg/TJ,99.123458616,kg +cf440f15-c0bf-30b5-aa85-f07e91736e04,SESCO,II.1.1,Capital Federal,AR-C,annual,2012,gas oil combustion consumption by freight transport,25.41627144,TJ,N2O,3.9,kg/TJ,99.123458616,kg +44838152-36e2-3a98-9fd7-e5cfc7124c2d,SESCO,II.1.1,Chubut,AR-U,annual,2012,gas oil combustion consumption by freight transport,11.17960956,TJ,CO2,74100.0,kg/TJ,828409.068396,kg +1703cc28-3b9e-39c9-bdc5-4c1965c50408,SESCO,II.1.1,Chubut,AR-U,annual,2012,gas oil combustion consumption by freight transport,11.17960956,TJ,CH4,3.9,kg/TJ,43.600477284,kg +1703cc28-3b9e-39c9-bdc5-4c1965c50408,SESCO,II.1.1,Chubut,AR-U,annual,2012,gas oil combustion consumption by freight transport,11.17960956,TJ,N2O,3.9,kg/TJ,43.600477284,kg +0b0aa758-c2ec-3601-846f-cf3639f6b227,SESCO,II.1.1,Córdoba,AR-X,annual,2012,gas oil combustion consumption by freight transport,16.05458148,TJ,CO2,74100.0,kg/TJ,1189644.487668,kg +f14fe2db-7fcd-3209-9d45-6c833014f8d0,SESCO,II.1.1,Córdoba,AR-X,annual,2012,gas oil combustion consumption by freight transport,16.05458148,TJ,CH4,3.9,kg/TJ,62.612867771999994,kg +f14fe2db-7fcd-3209-9d45-6c833014f8d0,SESCO,II.1.1,Córdoba,AR-X,annual,2012,gas oil combustion consumption by freight transport,16.05458148,TJ,N2O,3.9,kg/TJ,62.612867771999994,kg +e55d5a69-1fc1-383f-9eed-b07395839f23,SESCO,II.1.1,San Luis,AR-D,annual,2012,gas oil combustion consumption by freight transport,53.391428160000004,TJ,CO2,74100.0,kg/TJ,3956304.826656,kg +5cc1ec3d-7ad1-3a4a-afbf-79675a370685,SESCO,II.1.1,San Luis,AR-D,annual,2012,gas oil combustion consumption by freight transport,53.391428160000004,TJ,CH4,3.9,kg/TJ,208.22656982400002,kg +5cc1ec3d-7ad1-3a4a-afbf-79675a370685,SESCO,II.1.1,San Luis,AR-D,annual,2012,gas oil combustion consumption by freight transport,53.391428160000004,TJ,N2O,3.9,kg/TJ,208.22656982400002,kg +9f472df5-4f14-3548-9b7f-6e8c86ba1843,SESCO,II.1.1,Buenos Aires,AR-B,annual,2012,gas oil combustion consumption by public passenger transport,140.88327876,TJ,CO2,74100.0,kg/TJ,10439450.956116,kg +820bee47-9533-3f4d-b301-d600fd8070ed,SESCO,II.1.1,Buenos Aires,AR-B,annual,2012,gas oil combustion consumption by public passenger transport,140.88327876,TJ,CH4,3.9,kg/TJ,549.444787164,kg +820bee47-9533-3f4d-b301-d600fd8070ed,SESCO,II.1.1,Buenos Aires,AR-B,annual,2012,gas oil combustion consumption by public passenger transport,140.88327876,TJ,N2O,3.9,kg/TJ,549.444787164,kg +cea9583e-ab70-3d79-bbe7-5f4ab8e965f0,SESCO,II.1.1,Capital Federal,AR-C,annual,2012,gas oil combustion consumption by public passenger transport,21.971073599999997,TJ,CO2,74100.0,kg/TJ,1628056.5537599998,kg +f88e36c9-5809-3ee2-8cba-9f63169028bc,SESCO,II.1.1,Capital Federal,AR-C,annual,2012,gas oil combustion consumption by public passenger transport,21.971073599999997,TJ,CH4,3.9,kg/TJ,85.68718703999998,kg +f88e36c9-5809-3ee2-8cba-9f63169028bc,SESCO,II.1.1,Capital Federal,AR-C,annual,2012,gas oil combustion consumption by public passenger transport,21.971073599999997,TJ,N2O,3.9,kg/TJ,85.68718703999998,kg +a7942be6-65c3-3b41-9a02-f711d7628487,SESCO,II.1.1,Chubut,AR-U,annual,2012,gas oil combustion consumption by public passenger transport,8.53183296,TJ,CO2,74100.0,kg/TJ,632208.8223359999,kg +d485764b-e545-3a11-94d6-a2e68d47f8e2,SESCO,II.1.1,Chubut,AR-U,annual,2012,gas oil combustion consumption by public passenger transport,8.53183296,TJ,CH4,3.9,kg/TJ,33.274148544,kg +d485764b-e545-3a11-94d6-a2e68d47f8e2,SESCO,II.1.1,Chubut,AR-U,annual,2012,gas oil combustion consumption by public passenger transport,8.53183296,TJ,N2O,3.9,kg/TJ,33.274148544,kg +a7236701-0da0-3405-a2a2-f789c0db5f70,SESCO,II.1.1,Córdoba,AR-X,annual,2012,gas oil combustion consumption by public passenger transport,50.11754748,TJ,CO2,74100.0,kg/TJ,3713710.268268,kg +575d0a46-68b6-3d57-9f82-12ba8c850110,SESCO,II.1.1,Córdoba,AR-X,annual,2012,gas oil combustion consumption by public passenger transport,50.11754748,TJ,CH4,3.9,kg/TJ,195.45843517199998,kg +575d0a46-68b6-3d57-9f82-12ba8c850110,SESCO,II.1.1,Córdoba,AR-X,annual,2012,gas oil combustion consumption by public passenger transport,50.11754748,TJ,N2O,3.9,kg/TJ,195.45843517199998,kg +4a9e06eb-4f4e-382f-8429-30a63284859b,SESCO,II.1.1,Entre Rios,AR-E,annual,2012,gas oil combustion consumption by public passenger transport,2.4380638799999996,TJ,CO2,74100.0,kg/TJ,180660.53350799996,kg +1c5c5b67-cd49-3c20-8eed-96c235aff13f,SESCO,II.1.1,Entre Rios,AR-E,annual,2012,gas oil combustion consumption by public passenger transport,2.4380638799999996,TJ,CH4,3.9,kg/TJ,9.508449131999999,kg +1c5c5b67-cd49-3c20-8eed-96c235aff13f,SESCO,II.1.1,Entre Rios,AR-E,annual,2012,gas oil combustion consumption by public passenger transport,2.4380638799999996,TJ,N2O,3.9,kg/TJ,9.508449131999999,kg +cf42cf27-1b41-3938-aa54-462f38e76cae,SESCO,II.1.1,Formosa,AR-P,annual,2012,gas oil combustion consumption by public passenger transport,18.35759268,TJ,CO2,74100.0,kg/TJ,1360297.617588,kg +02ecba40-059d-3cc3-8763-0cb8d02ebf92,SESCO,II.1.1,Formosa,AR-P,annual,2012,gas oil combustion consumption by public passenger transport,18.35759268,TJ,CH4,3.9,kg/TJ,71.594611452,kg +02ecba40-059d-3cc3-8763-0cb8d02ebf92,SESCO,II.1.1,Formosa,AR-P,annual,2012,gas oil combustion consumption by public passenger transport,18.35759268,TJ,N2O,3.9,kg/TJ,71.594611452,kg +8ab91f94-3a48-32bb-a894-389096b8cdee,SESCO,II.1.1,Neuquén,AR-Q,annual,2012,gas oil combustion consumption by public passenger transport,6.791029559999999,TJ,CO2,74100.0,kg/TJ,503215.29039599997,kg +3abbbd2a-6e5c-3c23-bcae-acd371a40347,SESCO,II.1.1,Neuquén,AR-Q,annual,2012,gas oil combustion consumption by public passenger transport,6.791029559999999,TJ,CH4,3.9,kg/TJ,26.485015283999996,kg +3abbbd2a-6e5c-3c23-bcae-acd371a40347,SESCO,II.1.1,Neuquén,AR-Q,annual,2012,gas oil combustion consumption by public passenger transport,6.791029559999999,TJ,N2O,3.9,kg/TJ,26.485015283999996,kg +8919e25a-b2dc-3b3d-a409-6a47bd66b980,SESCO,II.1.1,Rio Negro,AR-R,annual,2012,gas oil combustion consumption by public passenger transport,39.57917628,TJ,CO2,74100.0,kg/TJ,2932816.9623479997,kg +a119bd97-4c39-3654-989b-83faf6f2bf65,SESCO,II.1.1,Rio Negro,AR-R,annual,2012,gas oil combustion consumption by public passenger transport,39.57917628,TJ,CH4,3.9,kg/TJ,154.358787492,kg +a119bd97-4c39-3654-989b-83faf6f2bf65,SESCO,II.1.1,Rio Negro,AR-R,annual,2012,gas oil combustion consumption by public passenger transport,39.57917628,TJ,N2O,3.9,kg/TJ,154.358787492,kg +a3425bf4-1e6a-3062-8428-ec86e29e723a,SESCO,II.1.1,San Luis,AR-D,annual,2012,gas oil combustion consumption by public passenger transport,2.2616538,TJ,CO2,74100.0,kg/TJ,167588.54658,kg +26381f87-52fa-3e83-96af-27879c259ad8,SESCO,II.1.1,San Luis,AR-D,annual,2012,gas oil combustion consumption by public passenger transport,2.2616538,TJ,CH4,3.9,kg/TJ,8.82044982,kg +26381f87-52fa-3e83-96af-27879c259ad8,SESCO,II.1.1,San Luis,AR-D,annual,2012,gas oil combustion consumption by public passenger transport,2.2616538,TJ,N2O,3.9,kg/TJ,8.82044982,kg +7efa8f38-9ca9-352b-be6c-fcec3fcfc0a6,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2012,gas oil combustion consumption by public passenger transport,5.30270496,TJ,CO2,74100.0,kg/TJ,392930.437536,kg +48910dd7-c0f2-395e-a400-ff740d9a2ff5,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2012,gas oil combustion consumption by public passenger transport,5.30270496,TJ,CH4,3.9,kg/TJ,20.680549344,kg +48910dd7-c0f2-395e-a400-ff740d9a2ff5,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2012,gas oil combustion consumption by public passenger transport,5.30270496,TJ,N2O,3.9,kg/TJ,20.680549344,kg +9c843ccd-b020-3f99-8181-2e81bae65ebc,SESCO,II.1.1,Santa Fe,AR-S,annual,2012,gas oil combustion consumption by public passenger transport,0.50112888,TJ,CO2,74100.0,kg/TJ,37133.650008,kg +85b684c9-3fac-3ccb-8ca6-06c6805d2d5a,SESCO,II.1.1,Santa Fe,AR-S,annual,2012,gas oil combustion consumption by public passenger transport,0.50112888,TJ,CH4,3.9,kg/TJ,1.9544026319999999,kg +85b684c9-3fac-3ccb-8ca6-06c6805d2d5a,SESCO,II.1.1,Santa Fe,AR-S,annual,2012,gas oil combustion consumption by public passenger transport,0.50112888,TJ,N2O,3.9,kg/TJ,1.9544026319999999,kg +252e6f7f-0dbc-3711-a4bb-448c5a4e8615,SESCO,II.1.1,Buenos Aires,AR-B,annual,2012,gas oil combustion consumption by to the public,3660.519996,TJ,CO2,74100.0,kg/TJ,271244531.7036,kg +29d6bab6-b374-3c66-b5b8-045da11ea76f,SESCO,II.1.1,Buenos Aires,AR-B,annual,2012,gas oil combustion consumption by to the public,3660.519996,TJ,CH4,3.9,kg/TJ,14276.0279844,kg +29d6bab6-b374-3c66-b5b8-045da11ea76f,SESCO,II.1.1,Buenos Aires,AR-B,annual,2012,gas oil combustion consumption by to the public,3660.519996,TJ,N2O,3.9,kg/TJ,14276.0279844,kg +1a51b20d-afcf-3259-a556-fd5f1cecf927,SESCO,II.1.1,Capital Federal,AR-C,annual,2012,gas oil combustion consumption by to the public,3023.02728,TJ,CO2,74100.0,kg/TJ,224006321.44799998,kg +37affd8b-dd17-3a5f-a630-4bc8f48d38a7,SESCO,II.1.1,Capital Federal,AR-C,annual,2012,gas oil combustion consumption by to the public,3023.02728,TJ,CH4,3.9,kg/TJ,11789.806391999999,kg +37affd8b-dd17-3a5f-a630-4bc8f48d38a7,SESCO,II.1.1,Capital Federal,AR-C,annual,2012,gas oil combustion consumption by to the public,3023.02728,TJ,N2O,3.9,kg/TJ,11789.806391999999,kg +ff360255-d3fb-3ace-8e0a-f65f67d1194a,SESCO,II.1.1,Chaco,AR-H,annual,2012,gas oil combustion consumption by to the public,91.52808,TJ,CO2,74100.0,kg/TJ,6782230.728,kg +790108eb-3d80-3aa2-9362-ad81ebe4638d,SESCO,II.1.1,Chaco,AR-H,annual,2012,gas oil combustion consumption by to the public,91.52808,TJ,CH4,3.9,kg/TJ,356.959512,kg +790108eb-3d80-3aa2-9362-ad81ebe4638d,SESCO,II.1.1,Chaco,AR-H,annual,2012,gas oil combustion consumption by to the public,91.52808,TJ,N2O,3.9,kg/TJ,356.959512,kg +b44a5fb7-66e0-3b3b-b532-dba40920ada1,SESCO,II.1.1,Corrientes,AR-W,annual,2012,gas oil combustion consumption by to the public,1.2642,TJ,CO2,74100.0,kg/TJ,93677.22,kg +7f054696-b666-3081-9911-aa9fb8bd5d6e,SESCO,II.1.1,Corrientes,AR-W,annual,2012,gas oil combustion consumption by to the public,1.2642,TJ,CH4,3.9,kg/TJ,4.9303799999999995,kg +7f054696-b666-3081-9911-aa9fb8bd5d6e,SESCO,II.1.1,Corrientes,AR-W,annual,2012,gas oil combustion consumption by to the public,1.2642,TJ,N2O,3.9,kg/TJ,4.9303799999999995,kg +785110d8-1b15-3845-a2ad-34400ce5d216,SESCO,II.1.1,Córdoba,AR-X,annual,2012,gas oil combustion consumption by to the public,999.0069599999999,TJ,CO2,74100.0,kg/TJ,74026415.736,kg +e5756608-53e9-3ec0-9a68-1ae0046a6e90,SESCO,II.1.1,Córdoba,AR-X,annual,2012,gas oil combustion consumption by to the public,999.0069599999999,TJ,CH4,3.9,kg/TJ,3896.1271439999996,kg +e5756608-53e9-3ec0-9a68-1ae0046a6e90,SESCO,II.1.1,Córdoba,AR-X,annual,2012,gas oil combustion consumption by to the public,999.0069599999999,TJ,N2O,3.9,kg/TJ,3896.1271439999996,kg +4d47dfad-8ea4-38ae-8222-97afbc3d3c28,SESCO,II.1.1,Entre Rios,AR-E,annual,2012,gas oil combustion consumption by to the public,351.37536,TJ,CO2,74100.0,kg/TJ,26036914.176,kg +24402186-0a87-307e-9ee3-986d10576283,SESCO,II.1.1,Entre Rios,AR-E,annual,2012,gas oil combustion consumption by to the public,351.37536,TJ,CH4,3.9,kg/TJ,1370.363904,kg +24402186-0a87-307e-9ee3-986d10576283,SESCO,II.1.1,Entre Rios,AR-E,annual,2012,gas oil combustion consumption by to the public,351.37536,TJ,N2O,3.9,kg/TJ,1370.363904,kg +db03ca76-74e0-346f-b842-555aac9a978b,SESCO,II.1.1,Rio Negro,AR-R,annual,2012,gas oil combustion consumption by to the public,30.77424,TJ,CO2,74100.0,kg/TJ,2280371.184,kg +ccfe81fe-91d1-35c8-876f-9fd2a4151aa3,SESCO,II.1.1,Rio Negro,AR-R,annual,2012,gas oil combustion consumption by to the public,30.77424,TJ,CH4,3.9,kg/TJ,120.01953599999999,kg +ccfe81fe-91d1-35c8-876f-9fd2a4151aa3,SESCO,II.1.1,Rio Negro,AR-R,annual,2012,gas oil combustion consumption by to the public,30.77424,TJ,N2O,3.9,kg/TJ,120.01953599999999,kg +a7527446-b388-3acc-a6c3-e22753b9dd5e,SESCO,II.1.1,Santa Fe,AR-S,annual,2012,gas oil combustion consumption by to the public,519.29724,TJ,CO2,74100.0,kg/TJ,38479925.484,kg +23caf80f-1b3b-38b9-8a31-9426bd063a1c,SESCO,II.1.1,Santa Fe,AR-S,annual,2012,gas oil combustion consumption by to the public,519.29724,TJ,CH4,3.9,kg/TJ,2025.2592359999999,kg +23caf80f-1b3b-38b9-8a31-9426bd063a1c,SESCO,II.1.1,Santa Fe,AR-S,annual,2012,gas oil combustion consumption by to the public,519.29724,TJ,N2O,3.9,kg/TJ,2025.2592359999999,kg +d8dca527-37c2-3c8d-a1d6-2cddb2f26a72,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2012,gas oil combustion consumption by to the public,2.09496,TJ,CO2,74100.0,kg/TJ,155236.536,kg +3d6b417b-ffb5-3b35-b06a-6c2d766ee383,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2012,gas oil combustion consumption by to the public,2.09496,TJ,CH4,3.9,kg/TJ,8.170344,kg +3d6b417b-ffb5-3b35-b06a-6c2d766ee383,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2012,gas oil combustion consumption by to the public,2.09496,TJ,N2O,3.9,kg/TJ,8.170344,kg +4e563831-a87f-3026-a10b-a9c0843423be,SESCO,II.1.1,Buenos Aires,AR-B,annual,2012,gas oil combustion consumption by to the public,200.473224,TJ,CO2,74100.0,kg/TJ,14855065.8984,kg +8a0620bd-ad10-3324-a027-35fe2a1c2d18,SESCO,II.1.1,Buenos Aires,AR-B,annual,2012,gas oil combustion consumption by to the public,200.473224,TJ,CH4,3.9,kg/TJ,781.8455736,kg +8a0620bd-ad10-3324-a027-35fe2a1c2d18,SESCO,II.1.1,Buenos Aires,AR-B,annual,2012,gas oil combustion consumption by to the public,200.473224,TJ,N2O,3.9,kg/TJ,781.8455736,kg +4440a61a-c44f-3549-b4aa-a851b47c0bec,SESCO,II.1.1,Capital Federal,AR-C,annual,2012,gas oil combustion consumption by to the public,141.62652,TJ,CO2,74100.0,kg/TJ,10494525.132,kg +68433a52-e115-38bc-b401-908d671e2956,SESCO,II.1.1,Capital Federal,AR-C,annual,2012,gas oil combustion consumption by to the public,141.62652,TJ,CH4,3.9,kg/TJ,552.343428,kg +68433a52-e115-38bc-b401-908d671e2956,SESCO,II.1.1,Capital Federal,AR-C,annual,2012,gas oil combustion consumption by to the public,141.62652,TJ,N2O,3.9,kg/TJ,552.343428,kg +7376e318-c26a-3ad4-869f-2adb316801bd,SESCO,II.1.1,Chaco,AR-H,annual,2012,gas oil combustion consumption by to the public,3.82872,TJ,CO2,74100.0,kg/TJ,283708.152,kg +5df741e1-9b35-3ad9-8585-74cb04d977c0,SESCO,II.1.1,Chaco,AR-H,annual,2012,gas oil combustion consumption by to the public,3.82872,TJ,CH4,3.9,kg/TJ,14.932008,kg +5df741e1-9b35-3ad9-8585-74cb04d977c0,SESCO,II.1.1,Chaco,AR-H,annual,2012,gas oil combustion consumption by to the public,3.82872,TJ,N2O,3.9,kg/TJ,14.932008,kg +e05c7f81-5fc8-3b41-a338-76b65a052d30,SESCO,II.1.1,Córdoba,AR-X,annual,2012,gas oil combustion consumption by to the public,67.3638,TJ,CO2,74100.0,kg/TJ,4991657.58,kg +08c2c8fb-b7fb-3a59-935b-609e75014efd,SESCO,II.1.1,Córdoba,AR-X,annual,2012,gas oil combustion consumption by to the public,67.3638,TJ,CH4,3.9,kg/TJ,262.71882,kg +08c2c8fb-b7fb-3a59-935b-609e75014efd,SESCO,II.1.1,Córdoba,AR-X,annual,2012,gas oil combustion consumption by to the public,67.3638,TJ,N2O,3.9,kg/TJ,262.71882,kg +b979468a-cb02-389f-95b5-8d325781e0e9,SESCO,II.1.1,Entre Rios,AR-E,annual,2012,gas oil combustion consumption by to the public,25.93416,TJ,CO2,74100.0,kg/TJ,1921721.2559999998,kg +12a198eb-550d-30d4-8b46-c728d66e1649,SESCO,II.1.1,Entre Rios,AR-E,annual,2012,gas oil combustion consumption by to the public,25.93416,TJ,CH4,3.9,kg/TJ,101.14322399999999,kg +12a198eb-550d-30d4-8b46-c728d66e1649,SESCO,II.1.1,Entre Rios,AR-E,annual,2012,gas oil combustion consumption by to the public,25.93416,TJ,N2O,3.9,kg/TJ,101.14322399999999,kg +dfbf4bfc-a70a-3537-a3fa-f49ca4d803d8,SESCO,II.1.1,Santa Fe,AR-S,annual,2012,gas oil combustion consumption by to the public,34.38624,TJ,CO2,74100.0,kg/TJ,2548020.384,kg +111455bf-600e-367b-a91c-68b832356dc9,SESCO,II.1.1,Santa Fe,AR-S,annual,2012,gas oil combustion consumption by to the public,34.38624,TJ,CH4,3.9,kg/TJ,134.106336,kg +111455bf-600e-367b-a91c-68b832356dc9,SESCO,II.1.1,Santa Fe,AR-S,annual,2012,gas oil combustion consumption by to the public,34.38624,TJ,N2O,3.9,kg/TJ,134.106336,kg +ce437045-5ad6-3c29-999a-ad2f8d409eb0,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2012,gas oil combustion consumption by to the public,0.21672,TJ,CO2,74100.0,kg/TJ,16058.952,kg +003416f0-38b9-3234-bcc8-7552e5018cad,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2012,gas oil combustion consumption by to the public,0.21672,TJ,CH4,3.9,kg/TJ,0.845208,kg +003416f0-38b9-3234-bcc8-7552e5018cad,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2012,gas oil combustion consumption by to the public,0.21672,TJ,N2O,3.9,kg/TJ,0.845208,kg +c4df8abf-43a9-35e2-9fd8-f1bfb9cb27ab,SESCO,II.1.1,Tucuman,AR-T,annual,2012,gasoline combustion consumption by to the public,4.826042,TJ,CO2,69300.0,kg/TJ,334444.7106,kg +de504fd0-2ff2-3c3f-9f6c-88c073afe037,SESCO,II.1.1,Tucuman,AR-T,annual,2012,gasoline combustion consumption by to the public,4.826042,TJ,CH4,33.0,kg/TJ,159.259386,kg +28026971-5538-371e-a141-32ddc5fffbe7,SESCO,II.1.1,Tucuman,AR-T,annual,2012,gasoline combustion consumption by to the public,4.826042,TJ,N2O,3.2,kg/TJ,15.443334400000001,kg +dd604985-9744-3283-adf9-3b999d588ec9,SESCO,II.1.1,Catamarca,AR-K,annual,2012,gas oil combustion consumption by to the public,266.282058,TJ,CO2,74100.0,kg/TJ,19731500.4978,kg +c1a2bb46-b720-356d-b83f-f9aef016f8f8,SESCO,II.1.1,Catamarca,AR-K,annual,2012,gas oil combustion consumption by to the public,266.282058,TJ,CH4,3.9,kg/TJ,1038.5000262,kg +c1a2bb46-b720-356d-b83f-f9aef016f8f8,SESCO,II.1.1,Catamarca,AR-K,annual,2012,gas oil combustion consumption by to the public,266.282058,TJ,N2O,3.9,kg/TJ,1038.5000262,kg +90042ec0-560d-3f7c-9b5a-24f5210efbea,SESCO,II.1.1,Chaco,AR-H,annual,2012,gas oil combustion consumption by to the public,189.37463160000001,TJ,CO2,74100.0,kg/TJ,14032660.201560002,kg +a6334975-72b8-3805-87ff-51f9df14627f,SESCO,II.1.1,Chaco,AR-H,annual,2012,gas oil combustion consumption by to the public,189.37463160000001,TJ,CH4,3.9,kg/TJ,738.5610632400001,kg +a6334975-72b8-3805-87ff-51f9df14627f,SESCO,II.1.1,Chaco,AR-H,annual,2012,gas oil combustion consumption by to the public,189.37463160000001,TJ,N2O,3.9,kg/TJ,738.5610632400001,kg +ac32b0dd-ee9d-3f3c-a6d1-cd4470a9805b,SESCO,II.1.1,Córdoba,AR-X,annual,2012,gas oil combustion consumption by to the public,106.8090072,TJ,CO2,74100.0,kg/TJ,7914547.4335199995,kg +b055d207-cf38-3e0f-9ba6-b88296f19455,SESCO,II.1.1,Córdoba,AR-X,annual,2012,gas oil combustion consumption by to the public,106.8090072,TJ,CH4,3.9,kg/TJ,416.55512808,kg +b055d207-cf38-3e0f-9ba6-b88296f19455,SESCO,II.1.1,Córdoba,AR-X,annual,2012,gas oil combustion consumption by to the public,106.8090072,TJ,N2O,3.9,kg/TJ,416.55512808,kg +4316fda4-01b9-38c1-884d-fa473b374220,SESCO,II.1.1,Jujuy,AR-Y,annual,2012,gas oil combustion consumption by to the public,1014.0989795999999,TJ,CO2,74100.0,kg/TJ,75144734.38836,kg +696db255-620a-32ad-afdd-3cdf8e8bc05d,SESCO,II.1.1,Jujuy,AR-Y,annual,2012,gas oil combustion consumption by to the public,1014.0989795999999,TJ,CH4,3.9,kg/TJ,3954.9860204399997,kg +696db255-620a-32ad-afdd-3cdf8e8bc05d,SESCO,II.1.1,Jujuy,AR-Y,annual,2012,gas oil combustion consumption by to the public,1014.0989795999999,TJ,N2O,3.9,kg/TJ,3954.9860204399997,kg +a4e576f8-fa5e-3ce6-9a15-09933e6b6d03,SESCO,II.1.1,La Rioja,AR-F,annual,2012,gas oil combustion consumption by to the public,209.5252572,TJ,CO2,74100.0,kg/TJ,15525821.55852,kg +265d66ee-b4e8-34e4-bea7-d4b1faf8ae5c,SESCO,II.1.1,La Rioja,AR-F,annual,2012,gas oil combustion consumption by to the public,209.5252572,TJ,CH4,3.9,kg/TJ,817.14850308,kg +265d66ee-b4e8-34e4-bea7-d4b1faf8ae5c,SESCO,II.1.1,La Rioja,AR-F,annual,2012,gas oil combustion consumption by to the public,209.5252572,TJ,N2O,3.9,kg/TJ,817.14850308,kg +6fef03df-421f-37c8-898b-ba1d8cd602ec,SESCO,II.1.1,Salta,AR-A,annual,2012,gas oil combustion consumption by to the public,2443.9362696,TJ,CO2,74100.0,kg/TJ,181095677.57735997,kg +2bd1a08b-5655-375a-99d1-9f468d673b63,SESCO,II.1.1,Salta,AR-A,annual,2012,gas oil combustion consumption by to the public,2443.9362696,TJ,CH4,3.9,kg/TJ,9531.35145144,kg +2bd1a08b-5655-375a-99d1-9f468d673b63,SESCO,II.1.1,Salta,AR-A,annual,2012,gas oil combustion consumption by to the public,2443.9362696,TJ,N2O,3.9,kg/TJ,9531.35145144,kg +448c508a-b6e6-3dfc-9696-9b58c2c8f9c0,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2012,gas oil combustion consumption by to the public,538.406526,TJ,CO2,74100.0,kg/TJ,39895923.5766,kg +d878871a-86f6-3b7f-a10f-001e1a966135,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2012,gas oil combustion consumption by to the public,538.406526,TJ,CH4,3.9,kg/TJ,2099.7854514,kg +d878871a-86f6-3b7f-a10f-001e1a966135,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2012,gas oil combustion consumption by to the public,538.406526,TJ,N2O,3.9,kg/TJ,2099.7854514,kg +6bab40e5-704a-36fe-a1b1-d3900ec04ac6,SESCO,II.1.1,Tucuman,AR-T,annual,2012,gas oil combustion consumption by to the public,3313.1633472,TJ,CO2,74100.0,kg/TJ,245505404.02752,kg +b624df56-767a-36ac-8baf-33020dbb13ec,SESCO,II.1.1,Tucuman,AR-T,annual,2012,gas oil combustion consumption by to the public,3313.1633472,TJ,CH4,3.9,kg/TJ,12921.337054079999,kg +b624df56-767a-36ac-8baf-33020dbb13ec,SESCO,II.1.1,Tucuman,AR-T,annual,2012,gas oil combustion consumption by to the public,3313.1633472,TJ,N2O,3.9,kg/TJ,12921.337054079999,kg +7a6cb14a-ed60-303c-914c-3ba929fe666c,SESCO,II.1.1,Catamarca,AR-K,annual,2012,gas oil combustion consumption by to the public,4.416392399999999,TJ,CO2,74100.0,kg/TJ,327254.67684,kg +8c020048-f92d-3698-819b-cae6155cc142,SESCO,II.1.1,Catamarca,AR-K,annual,2012,gas oil combustion consumption by to the public,4.416392399999999,TJ,CH4,3.9,kg/TJ,17.223930359999997,kg +8c020048-f92d-3698-819b-cae6155cc142,SESCO,II.1.1,Catamarca,AR-K,annual,2012,gas oil combustion consumption by to the public,4.416392399999999,TJ,N2O,3.9,kg/TJ,17.223930359999997,kg +826d29c2-53c7-34e2-be35-57fdce580bd8,SESCO,II.1.1,Chaco,AR-H,annual,2012,gas oil combustion consumption by to the public,6.4326108,TJ,CO2,74100.0,kg/TJ,476656.46028,kg +773effd5-02f1-31e1-9b6f-61ef454ab16b,SESCO,II.1.1,Chaco,AR-H,annual,2012,gas oil combustion consumption by to the public,6.4326108,TJ,CH4,3.9,kg/TJ,25.087182119999998,kg +773effd5-02f1-31e1-9b6f-61ef454ab16b,SESCO,II.1.1,Chaco,AR-H,annual,2012,gas oil combustion consumption by to the public,6.4326108,TJ,N2O,3.9,kg/TJ,25.087182119999998,kg +6eb3aab4-bc85-37e1-bd8a-dce79a470c0a,SESCO,II.1.1,Córdoba,AR-X,annual,2012,gas oil combustion consumption by to the public,2.5489884,TJ,CO2,74100.0,kg/TJ,188880.04043999998,kg +ebc950b5-6429-398a-8fe0-6812367a5607,SESCO,II.1.1,Córdoba,AR-X,annual,2012,gas oil combustion consumption by to the public,2.5489884,TJ,CH4,3.9,kg/TJ,9.941054759999998,kg +ebc950b5-6429-398a-8fe0-6812367a5607,SESCO,II.1.1,Córdoba,AR-X,annual,2012,gas oil combustion consumption by to the public,2.5489884,TJ,N2O,3.9,kg/TJ,9.941054759999998,kg +7d0cd80d-6f76-3419-80fb-75ee0de2cbb7,SESCO,II.1.1,Jujuy,AR-Y,annual,2012,gas oil combustion consumption by to the public,14.272818,TJ,CO2,74100.0,kg/TJ,1057615.8138,kg +bd5be18d-fce8-3854-9900-5ad24704a506,SESCO,II.1.1,Jujuy,AR-Y,annual,2012,gas oil combustion consumption by to the public,14.272818,TJ,CH4,3.9,kg/TJ,55.66399019999999,kg +bd5be18d-fce8-3854-9900-5ad24704a506,SESCO,II.1.1,Jujuy,AR-Y,annual,2012,gas oil combustion consumption by to the public,14.272818,TJ,N2O,3.9,kg/TJ,55.66399019999999,kg +5a2ebdfd-721b-3add-bcb0-a23c3395d939,SESCO,II.1.1,La Rioja,AR-F,annual,2012,gas oil combustion consumption by to the public,3.373608,TJ,CO2,74100.0,kg/TJ,249984.3528,kg +6594c81b-cfd8-3702-aa4c-06cc41c20af0,SESCO,II.1.1,La Rioja,AR-F,annual,2012,gas oil combustion consumption by to the public,3.373608,TJ,CH4,3.9,kg/TJ,13.157071199999999,kg +6594c81b-cfd8-3702-aa4c-06cc41c20af0,SESCO,II.1.1,La Rioja,AR-F,annual,2012,gas oil combustion consumption by to the public,3.373608,TJ,N2O,3.9,kg/TJ,13.157071199999999,kg +8d78715a-0e6b-3443-9d81-74b2b1180b0e,SESCO,II.1.1,Salta,AR-A,annual,2012,gas oil combustion consumption by to the public,31.745506799999998,TJ,CO2,74100.0,kg/TJ,2352342.05388,kg +93686b93-37d2-3d5a-8f44-6946dea4dfe6,SESCO,II.1.1,Salta,AR-A,annual,2012,gas oil combustion consumption by to the public,31.745506799999998,TJ,CH4,3.9,kg/TJ,123.80747652,kg +93686b93-37d2-3d5a-8f44-6946dea4dfe6,SESCO,II.1.1,Salta,AR-A,annual,2012,gas oil combustion consumption by to the public,31.745506799999998,TJ,N2O,3.9,kg/TJ,123.80747652,kg +95312313-e757-332f-965a-cb2df46eb4a3,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2012,gas oil combustion consumption by to the public,12.4129992,TJ,CO2,74100.0,kg/TJ,919803.24072,kg +759297e5-8868-317b-9638-8741e706b28b,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2012,gas oil combustion consumption by to the public,12.4129992,TJ,CH4,3.9,kg/TJ,48.410696879999996,kg +759297e5-8868-317b-9638-8741e706b28b,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2012,gas oil combustion consumption by to the public,12.4129992,TJ,N2O,3.9,kg/TJ,48.410696879999996,kg +c0a8ffa2-4f73-3c13-844e-216fb945cadb,SESCO,II.1.1,Tucuman,AR-T,annual,2012,gas oil combustion consumption by to the public,64.3069644,TJ,CO2,74100.0,kg/TJ,4765146.06204,kg +80f2bb81-ce67-3524-8e34-3ca6701215b0,SESCO,II.1.1,Tucuman,AR-T,annual,2012,gas oil combustion consumption by to the public,64.3069644,TJ,CH4,3.9,kg/TJ,250.79716115999997,kg +80f2bb81-ce67-3524-8e34-3ca6701215b0,SESCO,II.1.1,Tucuman,AR-T,annual,2012,gas oil combustion consumption by to the public,64.3069644,TJ,N2O,3.9,kg/TJ,250.79716115999997,kg +a9954161-f32d-32f8-be7f-ee34e397ebb2,SESCO,I.3.1,Buenos Aires,AR-B,annual,2012,gasoline combustion consumption by petrochemical industries,117.231533,TJ,CO2,69300.0,kg/TJ,8124145.2369,kg +51101885-0ecb-317c-9ed3-707764674f0e,SESCO,I.3.1,Buenos Aires,AR-B,annual,2012,gasoline combustion consumption by petrochemical industries,117.231533,TJ,CH4,33.0,kg/TJ,3868.640589,kg +2b087028-1442-3685-bc71-1e153cf67765,SESCO,I.3.1,Buenos Aires,AR-B,annual,2012,gasoline combustion consumption by petrochemical industries,117.231533,TJ,N2O,3.2,kg/TJ,375.1409056,kg +c0f64b2d-92f0-342a-95de-e4fe7a158728,SESCO,I.3.1,Santa Fe,AR-S,annual,2012,gasoline combustion consumption by petrochemical industries,17.485653,TJ,CO2,69300.0,kg/TJ,1211755.7529,kg +9aa72575-d4e0-3459-b3f4-1214a737d7e5,SESCO,I.3.1,Santa Fe,AR-S,annual,2012,gasoline combustion consumption by petrochemical industries,17.485653,TJ,CH4,33.0,kg/TJ,577.0265489999999,kg +e43a3bca-18ef-3856-85ec-92d53d651965,SESCO,I.3.1,Santa Fe,AR-S,annual,2012,gasoline combustion consumption by petrochemical industries,17.485653,TJ,N2O,3.2,kg/TJ,55.9540896,kg +f6db3d68-35f9-391d-8c5e-f7df05fcc874,SESCO,I.3.1,Tucuman,AR-T,annual,2012,gasoline combustion consumption by petrochemical industries,26.792196999999998,TJ,CO2,69300.0,kg/TJ,1856699.2521,kg +5a0f2e36-a2dd-32b2-9248-ff5da8bba4e9,SESCO,I.3.1,Tucuman,AR-T,annual,2012,gasoline combustion consumption by petrochemical industries,26.792196999999998,TJ,CH4,33.0,kg/TJ,884.1425009999999,kg +aa234583-fc39-3a84-a22f-ccf8583ca0de,SESCO,I.3.1,Tucuman,AR-T,annual,2012,gasoline combustion consumption by petrochemical industries,26.792196999999998,TJ,N2O,3.2,kg/TJ,85.7350304,kg +91f5d102-5f40-3026-887f-646f99c67ab4,SESCO,II.5.1,Buenos Aires,AR-B,annual,2012,gas oil combustion consumption by agriculture machines,358.56324,TJ,CO2,74100.0,kg/TJ,26569536.084,kg +abe17d28-f34d-3340-bae3-074884dfbb7c,SESCO,II.5.1,Buenos Aires,AR-B,annual,2012,gas oil combustion consumption by agriculture machines,358.56324,TJ,CH4,3.9,kg/TJ,1398.396636,kg +abe17d28-f34d-3340-bae3-074884dfbb7c,SESCO,II.5.1,Buenos Aires,AR-B,annual,2012,gas oil combustion consumption by agriculture machines,358.56324,TJ,N2O,3.9,kg/TJ,1398.396636,kg +1e3ad353-4d05-375f-b3e2-7de6618502b6,SESCO,II.5.1,Capital Federal,AR-C,annual,2012,gas oil combustion consumption by agriculture machines,101.3166,TJ,CO2,74100.0,kg/TJ,7507560.06,kg +e9eca6bb-fc2c-3587-93a9-2243ec16aa09,SESCO,II.5.1,Capital Federal,AR-C,annual,2012,gas oil combustion consumption by agriculture machines,101.3166,TJ,CH4,3.9,kg/TJ,395.13473999999997,kg +e9eca6bb-fc2c-3587-93a9-2243ec16aa09,SESCO,II.5.1,Capital Federal,AR-C,annual,2012,gas oil combustion consumption by agriculture machines,101.3166,TJ,N2O,3.9,kg/TJ,395.13473999999997,kg +360e34c6-686a-30e3-b10e-4dca534add00,SESCO,II.5.1,Chubut,AR-U,annual,2012,gas oil combustion consumption by agriculture machines,12.75036,TJ,CO2,74100.0,kg/TJ,944801.6760000001,kg +2a31196a-db7b-33cf-b3fe-f7ae69b620e9,SESCO,II.5.1,Chubut,AR-U,annual,2012,gas oil combustion consumption by agriculture machines,12.75036,TJ,CH4,3.9,kg/TJ,49.726404,kg +2a31196a-db7b-33cf-b3fe-f7ae69b620e9,SESCO,II.5.1,Chubut,AR-U,annual,2012,gas oil combustion consumption by agriculture machines,12.75036,TJ,N2O,3.9,kg/TJ,49.726404,kg +3299d377-b13f-3cc3-afd7-8d7f2ea638b3,SESCO,II.5.1,Córdoba,AR-X,annual,2012,gas oil combustion consumption by agriculture machines,129.63468,TJ,CO2,74100.0,kg/TJ,9605929.788,kg +6827cb5e-ba37-3d8a-9062-eccb49eeb8c0,SESCO,II.5.1,Córdoba,AR-X,annual,2012,gas oil combustion consumption by agriculture machines,129.63468,TJ,CH4,3.9,kg/TJ,505.575252,kg +6827cb5e-ba37-3d8a-9062-eccb49eeb8c0,SESCO,II.5.1,Córdoba,AR-X,annual,2012,gas oil combustion consumption by agriculture machines,129.63468,TJ,N2O,3.9,kg/TJ,505.575252,kg +3735e842-7a5b-321a-b438-d900a07dc2c3,SESCO,II.5.1,Santa Fe,AR-S,annual,2012,gas oil combustion consumption by agriculture machines,413.2128,TJ,CO2,74100.0,kg/TJ,30619068.48,kg +f7fd414c-89e2-3268-98c5-c72446836eb9,SESCO,II.5.1,Santa Fe,AR-S,annual,2012,gas oil combustion consumption by agriculture machines,413.2128,TJ,CH4,3.9,kg/TJ,1611.52992,kg +f7fd414c-89e2-3268-98c5-c72446836eb9,SESCO,II.5.1,Santa Fe,AR-S,annual,2012,gas oil combustion consumption by agriculture machines,413.2128,TJ,N2O,3.9,kg/TJ,1611.52992,kg +53905f71-d54a-39df-bd3b-e05c2b70fe52,SESCO,II.5.1,Buenos Aires,AR-B,annual,2012,gas oil combustion consumption by agriculture machines,5.74308,TJ,CO2,74100.0,kg/TJ,425562.228,kg +0039c135-62ce-3a95-bd77-11bb029b48c6,SESCO,II.5.1,Buenos Aires,AR-B,annual,2012,gas oil combustion consumption by agriculture machines,5.74308,TJ,CH4,3.9,kg/TJ,22.398011999999998,kg +0039c135-62ce-3a95-bd77-11bb029b48c6,SESCO,II.5.1,Buenos Aires,AR-B,annual,2012,gas oil combustion consumption by agriculture machines,5.74308,TJ,N2O,3.9,kg/TJ,22.398011999999998,kg +3d22136b-cca5-3264-a6a1-9e0dda494b63,SESCO,II.5.1,Santa Fe,AR-S,annual,2012,gas oil combustion consumption by agriculture machines,0.36119999999999997,TJ,CO2,74100.0,kg/TJ,26764.92,kg +6c844705-4cb9-3299-8693-173047f30dfc,SESCO,II.5.1,Santa Fe,AR-S,annual,2012,gas oil combustion consumption by agriculture machines,0.36119999999999997,TJ,CH4,3.9,kg/TJ,1.40868,kg +6c844705-4cb9-3299-8693-173047f30dfc,SESCO,II.5.1,Santa Fe,AR-S,annual,2012,gas oil combustion consumption by agriculture machines,0.36119999999999997,TJ,N2O,3.9,kg/TJ,1.40868,kg +324e03e1-3d14-3a66-b460-595b8553b121,SESCO,II.1.1,Buenos Aires,AR-B,annual,2012,gas oil combustion consumption by to the public,14082.35724,TJ,CO2,74100.0,kg/TJ,1043502671.484,kg +c3e959d7-5a1d-3e06-bdd4-ff26e1016511,SESCO,II.1.1,Buenos Aires,AR-B,annual,2012,gas oil combustion consumption by to the public,14082.35724,TJ,CH4,3.9,kg/TJ,54921.193236,kg +c3e959d7-5a1d-3e06-bdd4-ff26e1016511,SESCO,II.1.1,Buenos Aires,AR-B,annual,2012,gas oil combustion consumption by to the public,14082.35724,TJ,N2O,3.9,kg/TJ,54921.193236,kg +eafb5a44-2c1a-3fc2-a277-21da3b421ad3,SESCO,II.1.1,Capital Federal,AR-C,annual,2012,gas oil combustion consumption by to the public,1515.3423599999999,TJ,CO2,74100.0,kg/TJ,112286868.87599999,kg +3e3282cf-642b-3b5d-8b3f-477697cb12c6,SESCO,II.1.1,Capital Federal,AR-C,annual,2012,gas oil combustion consumption by to the public,1515.3423599999999,TJ,CH4,3.9,kg/TJ,5909.835203999999,kg +3e3282cf-642b-3b5d-8b3f-477697cb12c6,SESCO,II.1.1,Capital Federal,AR-C,annual,2012,gas oil combustion consumption by to the public,1515.3423599999999,TJ,N2O,3.9,kg/TJ,5909.835203999999,kg +8a50ed43-8a12-350f-9d05-5ff389bc020a,SESCO,II.1.1,Catamarca,AR-K,annual,2012,gas oil combustion consumption by to the public,24.41712,TJ,CO2,74100.0,kg/TJ,1809308.592,kg +3f25cc23-41b4-326f-bc0b-65cc735338eb,SESCO,II.1.1,Catamarca,AR-K,annual,2012,gas oil combustion consumption by to the public,24.41712,TJ,CH4,3.9,kg/TJ,95.226768,kg +3f25cc23-41b4-326f-bc0b-65cc735338eb,SESCO,II.1.1,Catamarca,AR-K,annual,2012,gas oil combustion consumption by to the public,24.41712,TJ,N2O,3.9,kg/TJ,95.226768,kg +e8a4a838-3b25-3a9c-957f-219034ad7dee,SESCO,II.1.1,Chaco,AR-H,annual,2012,gas oil combustion consumption by to the public,1364.6858399999999,TJ,CO2,74100.0,kg/TJ,101123220.74399999,kg +bbe72a41-fc44-3224-a08a-f2ae2fa4c3a5,SESCO,II.1.1,Chaco,AR-H,annual,2012,gas oil combustion consumption by to the public,1364.6858399999999,TJ,CH4,3.9,kg/TJ,5322.274775999999,kg +bbe72a41-fc44-3224-a08a-f2ae2fa4c3a5,SESCO,II.1.1,Chaco,AR-H,annual,2012,gas oil combustion consumption by to the public,1364.6858399999999,TJ,N2O,3.9,kg/TJ,5322.274775999999,kg +1e4fa2b7-da92-3214-a87f-92ad1cfbceb7,SESCO,II.1.1,Chubut,AR-U,annual,2012,gas oil combustion consumption by to the public,43.27176,TJ,CO2,74100.0,kg/TJ,3206437.416,kg +92b54020-58b0-3345-8c02-7da9c47a3501,SESCO,II.1.1,Chubut,AR-U,annual,2012,gas oil combustion consumption by to the public,43.27176,TJ,CH4,3.9,kg/TJ,168.759864,kg +92b54020-58b0-3345-8c02-7da9c47a3501,SESCO,II.1.1,Chubut,AR-U,annual,2012,gas oil combustion consumption by to the public,43.27176,TJ,N2O,3.9,kg/TJ,168.759864,kg +5190ae5b-e225-3a29-b79a-8df18a37f2a1,SESCO,II.1.1,Corrientes,AR-W,annual,2012,gas oil combustion consumption by to the public,642.46644,TJ,CO2,74100.0,kg/TJ,47606763.204,kg +99d1ff05-8042-32e2-9170-aa7517a68ada,SESCO,II.1.1,Corrientes,AR-W,annual,2012,gas oil combustion consumption by to the public,642.46644,TJ,CH4,3.9,kg/TJ,2505.619116,kg +99d1ff05-8042-32e2-9170-aa7517a68ada,SESCO,II.1.1,Corrientes,AR-W,annual,2012,gas oil combustion consumption by to the public,642.46644,TJ,N2O,3.9,kg/TJ,2505.619116,kg +3a25054a-601b-3eac-a38b-63e28f42a787,SESCO,II.1.1,Córdoba,AR-X,annual,2012,gas oil combustion consumption by to the public,4247.38692,TJ,CO2,74100.0,kg/TJ,314731370.772,kg +9b983ff8-03f3-390f-9b5f-a4dbb3f9dfaf,SESCO,II.1.1,Córdoba,AR-X,annual,2012,gas oil combustion consumption by to the public,4247.38692,TJ,CH4,3.9,kg/TJ,16564.808988,kg +9b983ff8-03f3-390f-9b5f-a4dbb3f9dfaf,SESCO,II.1.1,Córdoba,AR-X,annual,2012,gas oil combustion consumption by to the public,4247.38692,TJ,N2O,3.9,kg/TJ,16564.808988,kg +56723cdb-eb0d-33d2-be56-ee3db1744e1c,SESCO,II.1.1,Entre Rios,AR-E,annual,2012,gas oil combustion consumption by to the public,1417.81836,TJ,CO2,74100.0,kg/TJ,105060340.476,kg +b4c7a395-f58b-3cc0-84b4-d67882728147,SESCO,II.1.1,Entre Rios,AR-E,annual,2012,gas oil combustion consumption by to the public,1417.81836,TJ,CH4,3.9,kg/TJ,5529.491604,kg +b4c7a395-f58b-3cc0-84b4-d67882728147,SESCO,II.1.1,Entre Rios,AR-E,annual,2012,gas oil combustion consumption by to the public,1417.81836,TJ,N2O,3.9,kg/TJ,5529.491604,kg +118e4c27-9a7a-3687-b9fd-004f7e5df84a,SESCO,II.1.1,Formosa,AR-P,annual,2012,gas oil combustion consumption by to the public,244.09896,TJ,CO2,74100.0,kg/TJ,18087732.936,kg +651088a3-9c3c-3a3a-a742-ae636414f323,SESCO,II.1.1,Formosa,AR-P,annual,2012,gas oil combustion consumption by to the public,244.09896,TJ,CH4,3.9,kg/TJ,951.985944,kg +651088a3-9c3c-3a3a-a742-ae636414f323,SESCO,II.1.1,Formosa,AR-P,annual,2012,gas oil combustion consumption by to the public,244.09896,TJ,N2O,3.9,kg/TJ,951.985944,kg +9a0d8a8f-9f0a-33b9-8870-6314cc2e694b,SESCO,II.1.1,Jujuy,AR-Y,annual,2012,gas oil combustion consumption by to the public,186.41532,TJ,CO2,74100.0,kg/TJ,13813375.212000001,kg +a6ad36ba-54b4-377f-8eda-235b123fc83e,SESCO,II.1.1,Jujuy,AR-Y,annual,2012,gas oil combustion consumption by to the public,186.41532,TJ,CH4,3.9,kg/TJ,727.019748,kg +a6ad36ba-54b4-377f-8eda-235b123fc83e,SESCO,II.1.1,Jujuy,AR-Y,annual,2012,gas oil combustion consumption by to the public,186.41532,TJ,N2O,3.9,kg/TJ,727.019748,kg +8ba4c305-6790-3d42-918c-fda33890484c,SESCO,II.1.1,La Pampa,AR-L,annual,2012,gas oil combustion consumption by to the public,406.42224,TJ,CO2,74100.0,kg/TJ,30115887.983999997,kg +fc4e043f-8d1d-3c9a-80e0-29f64e05ce7b,SESCO,II.1.1,La Pampa,AR-L,annual,2012,gas oil combustion consumption by to the public,406.42224,TJ,CH4,3.9,kg/TJ,1585.046736,kg +fc4e043f-8d1d-3c9a-80e0-29f64e05ce7b,SESCO,II.1.1,La Pampa,AR-L,annual,2012,gas oil combustion consumption by to the public,406.42224,TJ,N2O,3.9,kg/TJ,1585.046736,kg +e23d5769-d955-36f2-8529-55cdb5e2626f,SESCO,II.1.1,La Rioja,AR-F,annual,2012,gas oil combustion consumption by to the public,297.70104,TJ,CO2,74100.0,kg/TJ,22059647.064,kg +ec9e3cf6-916d-3887-ae4d-247c1c41c5bf,SESCO,II.1.1,La Rioja,AR-F,annual,2012,gas oil combustion consumption by to the public,297.70104,TJ,CH4,3.9,kg/TJ,1161.034056,kg +ec9e3cf6-916d-3887-ae4d-247c1c41c5bf,SESCO,II.1.1,La Rioja,AR-F,annual,2012,gas oil combustion consumption by to the public,297.70104,TJ,N2O,3.9,kg/TJ,1161.034056,kg +0ab91f3c-257e-3c64-9ad4-20585f9c6e6f,SESCO,II.1.1,Mendoza,AR-M,annual,2012,gas oil combustion consumption by to the public,779.25288,TJ,CO2,74100.0,kg/TJ,57742638.408,kg +4c6d9f70-c0b6-3363-9adf-f6273d6ee286,SESCO,II.1.1,Mendoza,AR-M,annual,2012,gas oil combustion consumption by to the public,779.25288,TJ,CH4,3.9,kg/TJ,3039.086232,kg +4c6d9f70-c0b6-3363-9adf-f6273d6ee286,SESCO,II.1.1,Mendoza,AR-M,annual,2012,gas oil combustion consumption by to the public,779.25288,TJ,N2O,3.9,kg/TJ,3039.086232,kg +fedd8fda-3696-3361-be13-405971dcbaa2,SESCO,II.1.1,Misiones,AR-N,annual,2012,gas oil combustion consumption by to the public,1309.27776,TJ,CO2,74100.0,kg/TJ,97017482.016,kg +cc88c74d-165d-3a2d-abac-ea7f6ae521ce,SESCO,II.1.1,Misiones,AR-N,annual,2012,gas oil combustion consumption by to the public,1309.27776,TJ,CH4,3.9,kg/TJ,5106.183263999999,kg +cc88c74d-165d-3a2d-abac-ea7f6ae521ce,SESCO,II.1.1,Misiones,AR-N,annual,2012,gas oil combustion consumption by to the public,1309.27776,TJ,N2O,3.9,kg/TJ,5106.183263999999,kg +12aed20b-0fb4-38c7-ab48-52a0429dc867,SESCO,II.1.1,Neuquén,AR-Q,annual,2012,gas oil combustion consumption by to the public,325.65792,TJ,CO2,74100.0,kg/TJ,24131251.871999998,kg +ff11696d-878c-3247-930f-6689294d2979,SESCO,II.1.1,Neuquén,AR-Q,annual,2012,gas oil combustion consumption by to the public,325.65792,TJ,CH4,3.9,kg/TJ,1270.0658879999999,kg +ff11696d-878c-3247-930f-6689294d2979,SESCO,II.1.1,Neuquén,AR-Q,annual,2012,gas oil combustion consumption by to the public,325.65792,TJ,N2O,3.9,kg/TJ,1270.0658879999999,kg +d9b747d5-f502-36d4-bbdd-2ee51edf9ece,SESCO,II.1.1,Rio Negro,AR-R,annual,2012,gas oil combustion consumption by to the public,292.35528,TJ,CO2,74100.0,kg/TJ,21663526.248,kg +6639d3b0-f5e3-32f5-b7a3-de5049dd74b7,SESCO,II.1.1,Rio Negro,AR-R,annual,2012,gas oil combustion consumption by to the public,292.35528,TJ,CH4,3.9,kg/TJ,1140.185592,kg +6639d3b0-f5e3-32f5-b7a3-de5049dd74b7,SESCO,II.1.1,Rio Negro,AR-R,annual,2012,gas oil combustion consumption by to the public,292.35528,TJ,N2O,3.9,kg/TJ,1140.185592,kg +81ad4602-d915-3f86-b37f-b172754f1916,SESCO,II.1.1,Salta,AR-A,annual,2012,gas oil combustion consumption by to the public,309.22332,TJ,CO2,74100.0,kg/TJ,22913448.012,kg +9ea138df-f033-370c-8ba2-83ea8e37ae97,SESCO,II.1.1,Salta,AR-A,annual,2012,gas oil combustion consumption by to the public,309.22332,TJ,CH4,3.9,kg/TJ,1205.970948,kg +9ea138df-f033-370c-8ba2-83ea8e37ae97,SESCO,II.1.1,Salta,AR-A,annual,2012,gas oil combustion consumption by to the public,309.22332,TJ,N2O,3.9,kg/TJ,1205.970948,kg +bd787e35-ba45-3a78-b5b2-1f31639a4936,SESCO,II.1.1,San Juan,AR-J,annual,2012,gas oil combustion consumption by to the public,232.4322,TJ,CO2,74100.0,kg/TJ,17223226.02,kg +7f4d2d1f-81f0-3c0e-9114-fdbe0ddee15b,SESCO,II.1.1,San Juan,AR-J,annual,2012,gas oil combustion consumption by to the public,232.4322,TJ,CH4,3.9,kg/TJ,906.4855799999999,kg +7f4d2d1f-81f0-3c0e-9114-fdbe0ddee15b,SESCO,II.1.1,San Juan,AR-J,annual,2012,gas oil combustion consumption by to the public,232.4322,TJ,N2O,3.9,kg/TJ,906.4855799999999,kg +04197e1d-72d7-3302-9e9e-1e32c165058f,SESCO,II.1.1,San Luis,AR-D,annual,2012,gas oil combustion consumption by to the public,38.35944,TJ,CO2,74100.0,kg/TJ,2842434.5039999997,kg +1625545a-a9ee-32b3-a2db-e56f526ae671,SESCO,II.1.1,San Luis,AR-D,annual,2012,gas oil combustion consumption by to the public,38.35944,TJ,CH4,3.9,kg/TJ,149.60181599999999,kg +1625545a-a9ee-32b3-a2db-e56f526ae671,SESCO,II.1.1,San Luis,AR-D,annual,2012,gas oil combustion consumption by to the public,38.35944,TJ,N2O,3.9,kg/TJ,149.60181599999999,kg +13c2e12c-5852-331a-aa6e-db657a6c62ce,SESCO,II.1.1,Santa Fe,AR-S,annual,2012,gas oil combustion consumption by to the public,4527.17244,TJ,CO2,74100.0,kg/TJ,335463477.804,kg +1b816f96-7927-3446-9252-b957c8eb99ea,SESCO,II.1.1,Santa Fe,AR-S,annual,2012,gas oil combustion consumption by to the public,4527.17244,TJ,CH4,3.9,kg/TJ,17655.972516,kg +1b816f96-7927-3446-9252-b957c8eb99ea,SESCO,II.1.1,Santa Fe,AR-S,annual,2012,gas oil combustion consumption by to the public,4527.17244,TJ,N2O,3.9,kg/TJ,17655.972516,kg +2bc31236-0a5c-3a7f-a131-500ea7187fa2,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2012,gas oil combustion consumption by to the public,441.9282,TJ,CO2,74100.0,kg/TJ,32746879.62,kg +4b1bbca7-25e5-3c87-a5b2-d8463db28ad2,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2012,gas oil combustion consumption by to the public,441.9282,TJ,CH4,3.9,kg/TJ,1723.51998,kg +4b1bbca7-25e5-3c87-a5b2-d8463db28ad2,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2012,gas oil combustion consumption by to the public,441.9282,TJ,N2O,3.9,kg/TJ,1723.51998,kg +458375e2-676a-3295-80eb-5cf4e1b482d7,SESCO,II.1.1,Tucuman,AR-T,annual,2012,gas oil combustion consumption by to the public,688.12212,TJ,CO2,74100.0,kg/TJ,50989849.092,kg +59aa554d-c0d5-33b5-8116-18a73ce925e7,SESCO,II.1.1,Tucuman,AR-T,annual,2012,gas oil combustion consumption by to the public,688.12212,TJ,CH4,3.9,kg/TJ,2683.6762679999997,kg +59aa554d-c0d5-33b5-8116-18a73ce925e7,SESCO,II.1.1,Tucuman,AR-T,annual,2012,gas oil combustion consumption by to the public,688.12212,TJ,N2O,3.9,kg/TJ,2683.6762679999997,kg +7b751ed4-ddc1-3ad0-8f8e-879ab7f6b0c2,SESCO,II.1.1,Buenos Aires,AR-B,annual,2012,gas oil combustion consumption by to the public,5868.66924,TJ,CO2,74100.0,kg/TJ,434868390.684,kg +2b30c937-a291-3624-824a-1384e4145468,SESCO,II.1.1,Buenos Aires,AR-B,annual,2012,gas oil combustion consumption by to the public,5868.66924,TJ,CH4,3.9,kg/TJ,22887.810036,kg +2b30c937-a291-3624-824a-1384e4145468,SESCO,II.1.1,Buenos Aires,AR-B,annual,2012,gas oil combustion consumption by to the public,5868.66924,TJ,N2O,3.9,kg/TJ,22887.810036,kg +0c385548-a755-3910-ad40-6c68c26b113d,SESCO,II.1.1,Capital Federal,AR-C,annual,2012,gas oil combustion consumption by to the public,923.01048,TJ,CO2,74100.0,kg/TJ,68395076.568,kg +d93bae3a-7510-37d1-9976-3166dbadde5d,SESCO,II.1.1,Capital Federal,AR-C,annual,2012,gas oil combustion consumption by to the public,923.01048,TJ,CH4,3.9,kg/TJ,3599.740872,kg +d93bae3a-7510-37d1-9976-3166dbadde5d,SESCO,II.1.1,Capital Federal,AR-C,annual,2012,gas oil combustion consumption by to the public,923.01048,TJ,N2O,3.9,kg/TJ,3599.740872,kg +c17cd8e9-ab52-39dc-9a3a-fb28afa4eb93,SESCO,II.1.1,Catamarca,AR-K,annual,2012,gas oil combustion consumption by to the public,23.22516,TJ,CO2,74100.0,kg/TJ,1720984.356,kg +54e17f97-6ca7-3a99-96de-3b4b2af63fe4,SESCO,II.1.1,Catamarca,AR-K,annual,2012,gas oil combustion consumption by to the public,23.22516,TJ,CH4,3.9,kg/TJ,90.57812399999999,kg +54e17f97-6ca7-3a99-96de-3b4b2af63fe4,SESCO,II.1.1,Catamarca,AR-K,annual,2012,gas oil combustion consumption by to the public,23.22516,TJ,N2O,3.9,kg/TJ,90.57812399999999,kg +497fe159-3535-3d4d-b8e1-98e887ae8ca5,SESCO,II.1.1,Chaco,AR-H,annual,2012,gas oil combustion consumption by to the public,283.46976,TJ,CO2,74100.0,kg/TJ,21005109.216000002,kg +3ac81168-f7c2-3b99-b1b3-6dbb66923b75,SESCO,II.1.1,Chaco,AR-H,annual,2012,gas oil combustion consumption by to the public,283.46976,TJ,CH4,3.9,kg/TJ,1105.532064,kg +3ac81168-f7c2-3b99-b1b3-6dbb66923b75,SESCO,II.1.1,Chaco,AR-H,annual,2012,gas oil combustion consumption by to the public,283.46976,TJ,N2O,3.9,kg/TJ,1105.532064,kg +eb47090d-931c-32a9-80ce-e57f9d55b3d0,SESCO,II.1.1,Chubut,AR-U,annual,2012,gas oil combustion consumption by to the public,46.81152,TJ,CO2,74100.0,kg/TJ,3468733.632,kg +1e65b99c-cf23-369e-8f5d-c2c2ea98cce0,SESCO,II.1.1,Chubut,AR-U,annual,2012,gas oil combustion consumption by to the public,46.81152,TJ,CH4,3.9,kg/TJ,182.564928,kg +1e65b99c-cf23-369e-8f5d-c2c2ea98cce0,SESCO,II.1.1,Chubut,AR-U,annual,2012,gas oil combustion consumption by to the public,46.81152,TJ,N2O,3.9,kg/TJ,182.564928,kg +36897184-40e4-3ceb-bdc6-67e916ceb261,SESCO,II.1.1,Corrientes,AR-W,annual,2012,gas oil combustion consumption by to the public,221.81292,TJ,CO2,74100.0,kg/TJ,16436337.372,kg +ac3714d1-20d8-3973-ab2d-be0ed7887e2e,SESCO,II.1.1,Corrientes,AR-W,annual,2012,gas oil combustion consumption by to the public,221.81292,TJ,CH4,3.9,kg/TJ,865.070388,kg +ac3714d1-20d8-3973-ab2d-be0ed7887e2e,SESCO,II.1.1,Corrientes,AR-W,annual,2012,gas oil combustion consumption by to the public,221.81292,TJ,N2O,3.9,kg/TJ,865.070388,kg +e7224872-fcf8-39ee-a0b4-8e4e0cef94f1,SESCO,II.1.1,Córdoba,AR-X,annual,2012,gas oil combustion consumption by to the public,1232.595,TJ,CO2,74100.0,kg/TJ,91335289.5,kg +c5180a80-37fc-3e17-84b8-4c88304c423a,SESCO,II.1.1,Córdoba,AR-X,annual,2012,gas oil combustion consumption by to the public,1232.595,TJ,CH4,3.9,kg/TJ,4807.1205,kg +c5180a80-37fc-3e17-84b8-4c88304c423a,SESCO,II.1.1,Córdoba,AR-X,annual,2012,gas oil combustion consumption by to the public,1232.595,TJ,N2O,3.9,kg/TJ,4807.1205,kg +ef04b67f-1178-39bd-97d8-244255cf8605,SESCO,II.1.1,Entre Rios,AR-E,annual,2012,gas oil combustion consumption by to the public,687.97764,TJ,CO2,74100.0,kg/TJ,50979143.124,kg +4b4eb8e3-d490-3a3b-8ca1-0088ff1ae2fd,SESCO,II.1.1,Entre Rios,AR-E,annual,2012,gas oil combustion consumption by to the public,687.97764,TJ,CH4,3.9,kg/TJ,2683.112796,kg +4b4eb8e3-d490-3a3b-8ca1-0088ff1ae2fd,SESCO,II.1.1,Entre Rios,AR-E,annual,2012,gas oil combustion consumption by to the public,687.97764,TJ,N2O,3.9,kg/TJ,2683.112796,kg +1b09f9b7-500a-38c6-8b99-f6fa34ef4715,SESCO,II.1.1,Formosa,AR-P,annual,2012,gas oil combustion consumption by to the public,94.30932,TJ,CO2,74100.0,kg/TJ,6988320.612,kg +31af9109-c1f2-351e-91f4-0e268975b11f,SESCO,II.1.1,Formosa,AR-P,annual,2012,gas oil combustion consumption by to the public,94.30932,TJ,CH4,3.9,kg/TJ,367.806348,kg +31af9109-c1f2-351e-91f4-0e268975b11f,SESCO,II.1.1,Formosa,AR-P,annual,2012,gas oil combustion consumption by to the public,94.30932,TJ,N2O,3.9,kg/TJ,367.806348,kg +056c31b5-08aa-389e-a252-4d03c1fdad03,SESCO,II.1.1,Jujuy,AR-Y,annual,2012,gas oil combustion consumption by to the public,50.82084,TJ,CO2,74100.0,kg/TJ,3765824.244,kg +34abb441-f73d-3705-b667-12a7d3d53f5a,SESCO,II.1.1,Jujuy,AR-Y,annual,2012,gas oil combustion consumption by to the public,50.82084,TJ,CH4,3.9,kg/TJ,198.20127599999998,kg +34abb441-f73d-3705-b667-12a7d3d53f5a,SESCO,II.1.1,Jujuy,AR-Y,annual,2012,gas oil combustion consumption by to the public,50.82084,TJ,N2O,3.9,kg/TJ,198.20127599999998,kg +e854ee5a-31f2-3ff7-826c-6aaadbeefdb1,SESCO,II.1.1,La Pampa,AR-L,annual,2012,gas oil combustion consumption by to the public,187.93236,TJ,CO2,74100.0,kg/TJ,13925787.875999998,kg +83d7be46-d61d-3895-bcf9-1ff9100f67a1,SESCO,II.1.1,La Pampa,AR-L,annual,2012,gas oil combustion consumption by to the public,187.93236,TJ,CH4,3.9,kg/TJ,732.936204,kg +83d7be46-d61d-3895-bcf9-1ff9100f67a1,SESCO,II.1.1,La Pampa,AR-L,annual,2012,gas oil combustion consumption by to the public,187.93236,TJ,N2O,3.9,kg/TJ,732.936204,kg +eb426115-a8b3-37a7-b07d-d481059c243f,SESCO,II.1.1,La Rioja,AR-F,annual,2012,gas oil combustion consumption by to the public,86.90472,TJ,CO2,74100.0,kg/TJ,6439639.751999999,kg +66aeffed-4a0b-3939-8245-6d1fc696f7b3,SESCO,II.1.1,La Rioja,AR-F,annual,2012,gas oil combustion consumption by to the public,86.90472,TJ,CH4,3.9,kg/TJ,338.928408,kg +66aeffed-4a0b-3939-8245-6d1fc696f7b3,SESCO,II.1.1,La Rioja,AR-F,annual,2012,gas oil combustion consumption by to the public,86.90472,TJ,N2O,3.9,kg/TJ,338.928408,kg +1031e331-f799-32c3-83ca-21d9196ad011,SESCO,II.1.1,Mendoza,AR-M,annual,2012,gas oil combustion consumption by to the public,354.51779999999997,TJ,CO2,74100.0,kg/TJ,26269768.979999997,kg +d9684201-4b5d-3e26-a08b-cb87f4740d77,SESCO,II.1.1,Mendoza,AR-M,annual,2012,gas oil combustion consumption by to the public,354.51779999999997,TJ,CH4,3.9,kg/TJ,1382.6194199999998,kg +d9684201-4b5d-3e26-a08b-cb87f4740d77,SESCO,II.1.1,Mendoza,AR-M,annual,2012,gas oil combustion consumption by to the public,354.51779999999997,TJ,N2O,3.9,kg/TJ,1382.6194199999998,kg +51fb0e56-972c-3085-a6db-dcaf8dc51838,SESCO,II.1.1,Misiones,AR-N,annual,2012,gas oil combustion consumption by to the public,234.99671999999998,TJ,CO2,74100.0,kg/TJ,17413256.952,kg +097f7d69-f304-35c5-9b3b-0d4eb793651b,SESCO,II.1.1,Misiones,AR-N,annual,2012,gas oil combustion consumption by to the public,234.99671999999998,TJ,CH4,3.9,kg/TJ,916.4872079999999,kg +097f7d69-f304-35c5-9b3b-0d4eb793651b,SESCO,II.1.1,Misiones,AR-N,annual,2012,gas oil combustion consumption by to the public,234.99671999999998,TJ,N2O,3.9,kg/TJ,916.4872079999999,kg +e0799629-f77b-3073-a83a-5a6e250bc083,SESCO,II.1.1,Neuquén,AR-Q,annual,2012,gas oil combustion consumption by to the public,111.4302,TJ,CO2,74100.0,kg/TJ,8256977.82,kg +206119ce-d22f-3c29-94f9-18c645f1a665,SESCO,II.1.1,Neuquén,AR-Q,annual,2012,gas oil combustion consumption by to the public,111.4302,TJ,CH4,3.9,kg/TJ,434.57777999999996,kg +206119ce-d22f-3c29-94f9-18c645f1a665,SESCO,II.1.1,Neuquén,AR-Q,annual,2012,gas oil combustion consumption by to the public,111.4302,TJ,N2O,3.9,kg/TJ,434.57777999999996,kg +f1251dc5-099b-3764-a62a-df881814b9f5,SESCO,II.1.1,Rio Negro,AR-R,annual,2012,gas oil combustion consumption by to the public,142.20444,TJ,CO2,74100.0,kg/TJ,10537349.004,kg +924434d8-c0f6-3027-a640-647d48243f45,SESCO,II.1.1,Rio Negro,AR-R,annual,2012,gas oil combustion consumption by to the public,142.20444,TJ,CH4,3.9,kg/TJ,554.597316,kg +924434d8-c0f6-3027-a640-647d48243f45,SESCO,II.1.1,Rio Negro,AR-R,annual,2012,gas oil combustion consumption by to the public,142.20444,TJ,N2O,3.9,kg/TJ,554.597316,kg +43f92be8-2fc3-31d7-b3e2-96302f63364b,SESCO,II.1.1,Salta,AR-A,annual,2012,gas oil combustion consumption by to the public,121.32708,TJ,CO2,74100.0,kg/TJ,8990336.628,kg +2f968d7a-8b7c-309f-9c66-b4f7d5e7931f,SESCO,II.1.1,Salta,AR-A,annual,2012,gas oil combustion consumption by to the public,121.32708,TJ,CH4,3.9,kg/TJ,473.17561199999994,kg +2f968d7a-8b7c-309f-9c66-b4f7d5e7931f,SESCO,II.1.1,Salta,AR-A,annual,2012,gas oil combustion consumption by to the public,121.32708,TJ,N2O,3.9,kg/TJ,473.17561199999994,kg +d31ce2f2-b507-3f01-9892-9d1f46c66196,SESCO,II.1.1,San Juan,AR-J,annual,2012,gas oil combustion consumption by to the public,59.81472,TJ,CO2,74100.0,kg/TJ,4432270.752,kg +efb1ada2-cd5b-3892-8d40-24c08edec470,SESCO,II.1.1,San Juan,AR-J,annual,2012,gas oil combustion consumption by to the public,59.81472,TJ,CH4,3.9,kg/TJ,233.277408,kg +efb1ada2-cd5b-3892-8d40-24c08edec470,SESCO,II.1.1,San Juan,AR-J,annual,2012,gas oil combustion consumption by to the public,59.81472,TJ,N2O,3.9,kg/TJ,233.277408,kg +e8d5d20b-d20f-3b8c-9f28-fd4f1230ea94,SESCO,II.1.1,San Luis,AR-D,annual,2012,gas oil combustion consumption by to the public,20.9496,TJ,CO2,74100.0,kg/TJ,1552365.36,kg +74590a72-364c-3969-a586-38c9d2a5d54a,SESCO,II.1.1,San Luis,AR-D,annual,2012,gas oil combustion consumption by to the public,20.9496,TJ,CH4,3.9,kg/TJ,81.70344,kg +74590a72-364c-3969-a586-38c9d2a5d54a,SESCO,II.1.1,San Luis,AR-D,annual,2012,gas oil combustion consumption by to the public,20.9496,TJ,N2O,3.9,kg/TJ,81.70344,kg +721cbbb7-5f08-3939-8e4b-854b44391611,SESCO,II.1.1,Santa Fe,AR-S,annual,2012,gas oil combustion consumption by to the public,1512.85008,TJ,CO2,74100.0,kg/TJ,112102190.92799999,kg +a9ae7eb6-42a2-34df-9277-2a953144b40d,SESCO,II.1.1,Santa Fe,AR-S,annual,2012,gas oil combustion consumption by to the public,1512.85008,TJ,CH4,3.9,kg/TJ,5900.115312,kg +a9ae7eb6-42a2-34df-9277-2a953144b40d,SESCO,II.1.1,Santa Fe,AR-S,annual,2012,gas oil combustion consumption by to the public,1512.85008,TJ,N2O,3.9,kg/TJ,5900.115312,kg +c9be73a6-4c4d-372a-b466-c88e368387e3,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2012,gas oil combustion consumption by to the public,144.91344,TJ,CO2,74100.0,kg/TJ,10738085.904000001,kg +678f782e-c6dd-3e43-8efe-046084d79bf1,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2012,gas oil combustion consumption by to the public,144.91344,TJ,CH4,3.9,kg/TJ,565.162416,kg +678f782e-c6dd-3e43-8efe-046084d79bf1,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2012,gas oil combustion consumption by to the public,144.91344,TJ,N2O,3.9,kg/TJ,565.162416,kg +a5c8c2fc-32d5-3e2f-97c1-6f1f07b99c90,SESCO,II.1.1,Tucuman,AR-T,annual,2012,gas oil combustion consumption by to the public,246.19392,TJ,CO2,74100.0,kg/TJ,18242969.472,kg +d4ad5d3a-5c4c-3401-87f1-32c6b99c8e9b,SESCO,II.1.1,Tucuman,AR-T,annual,2012,gas oil combustion consumption by to the public,246.19392,TJ,CH4,3.9,kg/TJ,960.1562879999999,kg +d4ad5d3a-5c4c-3401-87f1-32c6b99c8e9b,SESCO,II.1.1,Tucuman,AR-T,annual,2012,gas oil combustion consumption by to the public,246.19392,TJ,N2O,3.9,kg/TJ,960.1562879999999,kg +760070ad-0ddc-3ee2-bf2b-ee32ddcfd1ab,SESCO,II.1.1,Buenos Aires,AR-B,annual,2012,jet kerosene combustion consumption by to the public,0.31453,TJ,CO2,71500.0,kg/TJ,22488.894999999997,kg +14c3d360-c3f9-3a44-aa9c-d7a23f0be055,SESCO,II.1.1,Buenos Aires,AR-B,annual,2012,jet kerosene combustion consumption by to the public,0.31453,TJ,CH4,0.5,kg/TJ,0.157265,kg +3cbb27cd-15a8-30d0-a77a-e64d675f20a7,SESCO,II.1.1,Buenos Aires,AR-B,annual,2012,jet kerosene combustion consumption by to the public,0.31453,TJ,N2O,2.0,kg/TJ,0.62906,kg +e5b67e02-7507-3c2d-be14-cb39e5bd273d,SESCO,II.1.1,Chaco,AR-H,annual,2012,jet kerosene combustion consumption by to the public,0.9750429999999999,TJ,CO2,71500.0,kg/TJ,69715.57449999999,kg +d7c14ffe-92d9-3ea4-b623-9668e4864928,SESCO,II.1.1,Chaco,AR-H,annual,2012,jet kerosene combustion consumption by to the public,0.9750429999999999,TJ,CH4,0.5,kg/TJ,0.48752149999999994,kg +0abdc28e-beec-3697-8b42-13d5d839ec93,SESCO,II.1.1,Chaco,AR-H,annual,2012,jet kerosene combustion consumption by to the public,0.9750429999999999,TJ,N2O,2.0,kg/TJ,1.9500859999999998,kg +6b85b944-a7c3-3ef0-8fd7-55687a20737a,SESCO,II.1.1,Córdoba,AR-X,annual,2012,jet kerosene combustion consumption by to the public,3.2396589999999996,TJ,CO2,71500.0,kg/TJ,231635.61849999998,kg +d3846b24-07c6-350f-83e6-ff4e55bfb5f1,SESCO,II.1.1,Córdoba,AR-X,annual,2012,jet kerosene combustion consumption by to the public,3.2396589999999996,TJ,CH4,0.5,kg/TJ,1.6198294999999998,kg +d8deb42d-29ba-3d8c-8113-c45e3102f669,SESCO,II.1.1,Córdoba,AR-X,annual,2012,jet kerosene combustion consumption by to the public,3.2396589999999996,TJ,N2O,2.0,kg/TJ,6.479317999999999,kg +92cf9644-9116-3164-832a-69ab2101b38d,SESCO,II.1.1,Mendoza,AR-M,annual,2012,jet kerosene combustion consumption by to the public,1.1952139999999998,TJ,CO2,71500.0,kg/TJ,85457.80099999998,kg +ae45e8aa-169d-303b-ade5-420dc9b9c635,SESCO,II.1.1,Mendoza,AR-M,annual,2012,jet kerosene combustion consumption by to the public,1.1952139999999998,TJ,CH4,0.5,kg/TJ,0.5976069999999999,kg +4764c7a8-2aa4-3584-ba60-9a3ed4058c4c,SESCO,II.1.1,Mendoza,AR-M,annual,2012,jet kerosene combustion consumption by to the public,1.1952139999999998,TJ,N2O,2.0,kg/TJ,2.3904279999999996,kg +ee02405e-78fd-3f19-b9a1-023205a35f38,SESCO,II.1.1,Santa Fe,AR-S,annual,2012,jet kerosene combustion consumption by to the public,2.4847869999999994,TJ,CO2,71500.0,kg/TJ,177662.27049999996,kg +a5e0a697-52aa-3736-b4e4-b30073945c3d,SESCO,II.1.1,Santa Fe,AR-S,annual,2012,jet kerosene combustion consumption by to the public,2.4847869999999994,TJ,CH4,0.5,kg/TJ,1.2423934999999997,kg +feb46df7-0899-34ac-a121-1d9df5ef43ab,SESCO,II.1.1,Santa Fe,AR-S,annual,2012,jet kerosene combustion consumption by to the public,2.4847869999999994,TJ,N2O,2.0,kg/TJ,4.969573999999999,kg +1aa2180f-4d32-3364-a7ec-b3b6c69c1592,SESCO,I.3.1,Buenos Aires,AR-B,annual,2012,gasoline combustion consumption by petrochemical industries,145.92419999999998,TJ,CO2,69300.0,kg/TJ,10112547.059999999,kg +0d32e6ef-fbd5-3faa-b2d6-fff493590bcc,SESCO,I.3.1,Buenos Aires,AR-B,annual,2012,gasoline combustion consumption by petrochemical industries,145.92419999999998,TJ,CH4,33.0,kg/TJ,4815.4986,kg +050c6623-06da-3a30-85b5-dd41c40056bc,SESCO,I.3.1,Buenos Aires,AR-B,annual,2012,gasoline combustion consumption by petrochemical industries,145.92419999999998,TJ,N2O,3.2,kg/TJ,466.95743999999996,kg +e7d2fda0-3cf5-3e94-b273-2f0f41aaa38f,SESCO,I.3.1,Capital Federal,AR-C,annual,2012,gas oil combustion consumption by petrochemical industries,2.709,TJ,CO2,74100.0,kg/TJ,200736.9,kg +1a0918db-3dae-3223-83b6-0fcf0fcd3269,SESCO,I.3.1,Capital Federal,AR-C,annual,2012,gas oil combustion consumption by petrochemical industries,2.709,TJ,CH4,3.9,kg/TJ,10.5651,kg +1a0918db-3dae-3223-83b6-0fcf0fcd3269,SESCO,I.3.1,Capital Federal,AR-C,annual,2012,gas oil combustion consumption by petrochemical industries,2.709,TJ,N2O,3.9,kg/TJ,10.5651,kg +4959a717-02f5-394f-a6cc-a260ef46ef63,SESCO,I.3.1,Entre Rios,AR-E,annual,2012,gas oil combustion consumption by petrochemical industries,2.60064,TJ,CO2,74100.0,kg/TJ,192707.424,kg +e1fb6df3-ee5d-3dc2-895f-c4cde407f240,SESCO,I.3.1,Entre Rios,AR-E,annual,2012,gas oil combustion consumption by petrochemical industries,2.60064,TJ,CH4,3.9,kg/TJ,10.142496,kg +e1fb6df3-ee5d-3dc2-895f-c4cde407f240,SESCO,I.3.1,Entre Rios,AR-E,annual,2012,gas oil combustion consumption by petrochemical industries,2.60064,TJ,N2O,3.9,kg/TJ,10.142496,kg +95db9de5-b044-3819-b2f7-9654a80c90b7,SESCO,II.2.1,Buenos Aires,AR-B,annual,2012,gas oil combustion consumption by railway transport,481.299,TJ,CO2,74100.0,kg/TJ,35664255.9,kg +a394393e-c61d-3987-b8d8-689056668f5a,SESCO,II.2.1,Buenos Aires,AR-B,annual,2012,gas oil combustion consumption by railway transport,481.299,TJ,CH4,3.9,kg/TJ,1877.0660999999998,kg +a394393e-c61d-3987-b8d8-689056668f5a,SESCO,II.2.1,Buenos Aires,AR-B,annual,2012,gas oil combustion consumption by railway transport,481.299,TJ,N2O,3.9,kg/TJ,1877.0660999999998,kg +0ecec63b-e3b2-3778-b9a1-51524846dfda,SESCO,II.2.1,Capital Federal,AR-C,annual,2012,gas oil combustion consumption by railway transport,2135.08932,TJ,CO2,74100.0,kg/TJ,158210118.612,kg +3913a77d-d8a9-34be-96e5-965f89118e4a,SESCO,II.2.1,Capital Federal,AR-C,annual,2012,gas oil combustion consumption by railway transport,2135.08932,TJ,CH4,3.9,kg/TJ,8326.848348,kg +3913a77d-d8a9-34be-96e5-965f89118e4a,SESCO,II.2.1,Capital Federal,AR-C,annual,2012,gas oil combustion consumption by railway transport,2135.08932,TJ,N2O,3.9,kg/TJ,8326.848348,kg +37eee7fe-badc-37c6-911b-4b9383059554,SESCO,II.2.1,Santa Fe,AR-S,annual,2012,gas oil combustion consumption by railway transport,202.74156,TJ,CO2,74100.0,kg/TJ,15023149.595999999,kg +c4a9470f-88fa-3d44-ac4c-40b7412a4cad,SESCO,II.2.1,Santa Fe,AR-S,annual,2012,gas oil combustion consumption by railway transport,202.74156,TJ,CH4,3.9,kg/TJ,790.6920839999999,kg +c4a9470f-88fa-3d44-ac4c-40b7412a4cad,SESCO,II.2.1,Santa Fe,AR-S,annual,2012,gas oil combustion consumption by railway transport,202.74156,TJ,N2O,3.9,kg/TJ,790.6920839999999,kg +9d20fe4c-e425-3dbd-8077-7c29f00ce4c3,SESCO,II.2.1,Capital Federal,AR-C,annual,2012,gas oil combustion consumption by railway transport,0.5418,TJ,CO2,74100.0,kg/TJ,40147.38,kg +0458878e-61ca-3248-af7b-f874e8e1fe8a,SESCO,II.2.1,Capital Federal,AR-C,annual,2012,gas oil combustion consumption by railway transport,0.5418,TJ,CH4,3.9,kg/TJ,2.1130199999999997,kg +0458878e-61ca-3248-af7b-f874e8e1fe8a,SESCO,II.2.1,Capital Federal,AR-C,annual,2012,gas oil combustion consumption by railway transport,0.5418,TJ,N2O,3.9,kg/TJ,2.1130199999999997,kg +5a50e96b-f8d9-3f6c-b85d-d6eed52a828f,SESCO,II.1.1,Buenos Aires,AR-B,annual,2012,gasoline combustion consumption by freight transport,4.9616,TJ,CO2,69300.0,kg/TJ,343838.88,kg +403609de-de83-355b-8ba0-0ed65c25acd7,SESCO,II.1.1,Buenos Aires,AR-B,annual,2012,gasoline combustion consumption by freight transport,4.9616,TJ,CH4,33.0,kg/TJ,163.7328,kg +d6e8871a-30d5-36a8-b4b2-e34d56031486,SESCO,II.1.1,Buenos Aires,AR-B,annual,2012,gasoline combustion consumption by freight transport,4.9616,TJ,N2O,3.2,kg/TJ,15.87712,kg +2b1bdaee-ecfa-3085-9018-b18a89e5146d,SESCO,II.1.1,Capital Federal,AR-C,annual,2012,gasoline combustion consumption by freight transport,9.9232,TJ,CO2,69300.0,kg/TJ,687677.76,kg +17df7821-95bd-3750-9604-7721566d1094,SESCO,II.1.1,Capital Federal,AR-C,annual,2012,gasoline combustion consumption by freight transport,9.9232,TJ,CH4,33.0,kg/TJ,327.4656,kg +16bd17f0-7f30-3e69-a61f-eb1fce5076bc,SESCO,II.1.1,Capital Federal,AR-C,annual,2012,gasoline combustion consumption by freight transport,9.9232,TJ,N2O,3.2,kg/TJ,31.75424,kg +7f400c36-2803-3a3e-9de3-cdc39c8c6076,SESCO,II.1.1,Buenos Aires,AR-B,annual,2012,gas oil combustion consumption by freight transport,813.1695599999999,TJ,CO2,74100.0,kg/TJ,60255864.396,kg +10189ee2-b97b-3536-a7d7-6f99f9e36130,SESCO,II.1.1,Buenos Aires,AR-B,annual,2012,gas oil combustion consumption by freight transport,813.1695599999999,TJ,CH4,3.9,kg/TJ,3171.3612839999996,kg +10189ee2-b97b-3536-a7d7-6f99f9e36130,SESCO,II.1.1,Buenos Aires,AR-B,annual,2012,gas oil combustion consumption by freight transport,813.1695599999999,TJ,N2O,3.9,kg/TJ,3171.3612839999996,kg +110f1a4e-8ba4-3c92-9944-1bbdac2b6e71,SESCO,II.1.1,Capital Federal,AR-C,annual,2012,gas oil combustion consumption by freight transport,342.16476,TJ,CO2,74100.0,kg/TJ,25354408.716000002,kg +5f54abeb-614f-31c1-aaa6-d7211eade235,SESCO,II.1.1,Capital Federal,AR-C,annual,2012,gas oil combustion consumption by freight transport,342.16476,TJ,CH4,3.9,kg/TJ,1334.442564,kg +5f54abeb-614f-31c1-aaa6-d7211eade235,SESCO,II.1.1,Capital Federal,AR-C,annual,2012,gas oil combustion consumption by freight transport,342.16476,TJ,N2O,3.9,kg/TJ,1334.442564,kg +b07515d0-18e2-3510-9339-64fe833fe23c,SESCO,II.1.1,Córdoba,AR-X,annual,2012,gas oil combustion consumption by freight transport,203.06664,TJ,CO2,74100.0,kg/TJ,15047238.024,kg +ef86a937-a35a-3766-ae48-27e3d6ace584,SESCO,II.1.1,Córdoba,AR-X,annual,2012,gas oil combustion consumption by freight transport,203.06664,TJ,CH4,3.9,kg/TJ,791.959896,kg +ef86a937-a35a-3766-ae48-27e3d6ace584,SESCO,II.1.1,Córdoba,AR-X,annual,2012,gas oil combustion consumption by freight transport,203.06664,TJ,N2O,3.9,kg/TJ,791.959896,kg +a77b1388-9819-361e-a6ea-a4d3f8fbbfb1,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2012,gas oil combustion consumption by freight transport,2.3478,TJ,CO2,74100.0,kg/TJ,173971.97999999998,kg +1d17f3e5-f8a7-373c-8ca4-a3b9b146039c,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2012,gas oil combustion consumption by freight transport,2.3478,TJ,CH4,3.9,kg/TJ,9.156419999999999,kg +1d17f3e5-f8a7-373c-8ca4-a3b9b146039c,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2012,gas oil combustion consumption by freight transport,2.3478,TJ,N2O,3.9,kg/TJ,9.156419999999999,kg +123b50ce-2fc7-3d54-abcc-f0aca801d6c0,SESCO,II.1.1,Buenos Aires,AR-B,annual,2012,gas oil combustion consumption by public passenger transport,4735.5126,TJ,CO2,74100.0,kg/TJ,350901483.66,kg +26ed70b0-0e5a-35d9-84ac-5e1b1304ab48,SESCO,II.1.1,Buenos Aires,AR-B,annual,2012,gas oil combustion consumption by public passenger transport,4735.5126,TJ,CH4,3.9,kg/TJ,18468.49914,kg +26ed70b0-0e5a-35d9-84ac-5e1b1304ab48,SESCO,II.1.1,Buenos Aires,AR-B,annual,2012,gas oil combustion consumption by public passenger transport,4735.5126,TJ,N2O,3.9,kg/TJ,18468.49914,kg +2e822fc0-634f-30dc-af59-eeb9d19deb29,SESCO,II.1.1,Capital Federal,AR-C,annual,2012,gas oil combustion consumption by public passenger transport,661.899,TJ,CO2,74100.0,kg/TJ,49046715.9,kg +a1b2d137-4552-3c3a-8975-b41d40f77984,SESCO,II.1.1,Capital Federal,AR-C,annual,2012,gas oil combustion consumption by public passenger transport,661.899,TJ,CH4,3.9,kg/TJ,2581.4061,kg +a1b2d137-4552-3c3a-8975-b41d40f77984,SESCO,II.1.1,Capital Federal,AR-C,annual,2012,gas oil combustion consumption by public passenger transport,661.899,TJ,N2O,3.9,kg/TJ,2581.4061,kg +e1cacb83-bbdb-3a47-a0b3-810c1ffa34a6,SESCO,II.1.1,Córdoba,AR-X,annual,2012,gas oil combustion consumption by public passenger transport,5.63472,TJ,CO2,74100.0,kg/TJ,417532.752,kg +3df9bc1a-0d57-3c6b-897d-9b803f5663c3,SESCO,II.1.1,Córdoba,AR-X,annual,2012,gas oil combustion consumption by public passenger transport,5.63472,TJ,CH4,3.9,kg/TJ,21.975407999999998,kg +3df9bc1a-0d57-3c6b-897d-9b803f5663c3,SESCO,II.1.1,Córdoba,AR-X,annual,2012,gas oil combustion consumption by public passenger transport,5.63472,TJ,N2O,3.9,kg/TJ,21.975407999999998,kg +3d5e19fe-aaa7-3f2a-b457-d7093f801acc,SESCO,II.1.1,Misiones,AR-N,annual,2012,gas oil combustion consumption by public passenger transport,1.33644,TJ,CO2,74100.0,kg/TJ,99030.20400000001,kg +18e988ff-9101-3ad8-abd9-b0878e0c9fee,SESCO,II.1.1,Misiones,AR-N,annual,2012,gas oil combustion consumption by public passenger transport,1.33644,TJ,CH4,3.9,kg/TJ,5.212116,kg +18e988ff-9101-3ad8-abd9-b0878e0c9fee,SESCO,II.1.1,Misiones,AR-N,annual,2012,gas oil combustion consumption by public passenger transport,1.33644,TJ,N2O,3.9,kg/TJ,5.212116,kg +eeb8205d-77cd-3f2a-8932-d43d75a1c545,SESCO,II.5.1,Buenos Aires,AR-B,annual,2012,gasoline combustion consumption by agriculture machines,8.7714,TJ,CO2,69300.0,kg/TJ,607858.02,kg +b317fb0b-521a-3f20-ab2a-93fab46f1447,SESCO,II.5.1,Buenos Aires,AR-B,annual,2012,gasoline combustion consumption by agriculture machines,8.7714,TJ,CH4,33.0,kg/TJ,289.45619999999997,kg +c3ec9538-cdd4-3188-b323-3581c89c4abd,SESCO,II.5.1,Buenos Aires,AR-B,annual,2012,gasoline combustion consumption by agriculture machines,8.7714,TJ,N2O,3.2,kg/TJ,28.06848,kg +4923e7a7-f4e7-3ab8-86d3-baabd51cf654,SESCO,II.5.1,Salta,AR-A,annual,2012,gasoline combustion consumption by agriculture machines,3.4111,TJ,CO2,69300.0,kg/TJ,236389.22999999998,kg +02d4c0d6-0eb1-3d4f-b48f-72226e0476a8,SESCO,II.5.1,Salta,AR-A,annual,2012,gasoline combustion consumption by agriculture machines,3.4111,TJ,CH4,33.0,kg/TJ,112.5663,kg +54c775fc-eae4-30f4-ac90-9cbf96fc0915,SESCO,II.5.1,Salta,AR-A,annual,2012,gasoline combustion consumption by agriculture machines,3.4111,TJ,N2O,3.2,kg/TJ,10.91552,kg +5ef78702-906d-34ea-92da-2a0c36bad7b4,SESCO,II.5.1,Buenos Aires,AR-B,annual,2012,gas oil combustion consumption by agriculture machines,8663.23752,TJ,CO2,74100.0,kg/TJ,641945900.232,kg +edbc6a99-3876-3dad-bb6c-df851b620e3f,SESCO,II.5.1,Buenos Aires,AR-B,annual,2012,gas oil combustion consumption by agriculture machines,8663.23752,TJ,CH4,3.9,kg/TJ,33786.626328,kg +edbc6a99-3876-3dad-bb6c-df851b620e3f,SESCO,II.5.1,Buenos Aires,AR-B,annual,2012,gas oil combustion consumption by agriculture machines,8663.23752,TJ,N2O,3.9,kg/TJ,33786.626328,kg +1098f363-9edf-3725-8e5a-5e63ee2e8ccc,SESCO,II.5.1,Capital Federal,AR-C,annual,2012,gas oil combustion consumption by agriculture machines,35.61432,TJ,CO2,74100.0,kg/TJ,2639021.1119999997,kg +7b3b91cb-6489-3224-81d1-daa2b8b11158,SESCO,II.5.1,Capital Federal,AR-C,annual,2012,gas oil combustion consumption by agriculture machines,35.61432,TJ,CH4,3.9,kg/TJ,138.895848,kg +7b3b91cb-6489-3224-81d1-daa2b8b11158,SESCO,II.5.1,Capital Federal,AR-C,annual,2012,gas oil combustion consumption by agriculture machines,35.61432,TJ,N2O,3.9,kg/TJ,138.895848,kg +dcb13266-e297-3c80-847f-b8e66a15ed4f,SESCO,II.5.1,Catamarca,AR-K,annual,2012,gas oil combustion consumption by agriculture machines,195.7704,TJ,CO2,74100.0,kg/TJ,14506586.639999999,kg +9653fb1f-c4b8-322c-ad92-6c21540fd096,SESCO,II.5.1,Catamarca,AR-K,annual,2012,gas oil combustion consumption by agriculture machines,195.7704,TJ,CH4,3.9,kg/TJ,763.50456,kg +9653fb1f-c4b8-322c-ad92-6c21540fd096,SESCO,II.5.1,Catamarca,AR-K,annual,2012,gas oil combustion consumption by agriculture machines,195.7704,TJ,N2O,3.9,kg/TJ,763.50456,kg +68da3984-3549-33b9-a9f4-76f1459abae7,SESCO,II.5.1,Chaco,AR-H,annual,2012,gas oil combustion consumption by agriculture machines,1276.3002,TJ,CO2,74100.0,kg/TJ,94573844.82,kg +7ec7c20a-abb9-3424-a226-e5027d54737c,SESCO,II.5.1,Chaco,AR-H,annual,2012,gas oil combustion consumption by agriculture machines,1276.3002,TJ,CH4,3.9,kg/TJ,4977.570779999999,kg +7ec7c20a-abb9-3424-a226-e5027d54737c,SESCO,II.5.1,Chaco,AR-H,annual,2012,gas oil combustion consumption by agriculture machines,1276.3002,TJ,N2O,3.9,kg/TJ,4977.570779999999,kg +fedbcd65-2676-3d64-8c04-5bd0176e313d,SESCO,II.5.1,Chubut,AR-U,annual,2012,gas oil combustion consumption by agriculture machines,8.34372,TJ,CO2,74100.0,kg/TJ,618269.652,kg +52ef6529-3dd0-362f-b4f8-a7c87d612d68,SESCO,II.5.1,Chubut,AR-U,annual,2012,gas oil combustion consumption by agriculture machines,8.34372,TJ,CH4,3.9,kg/TJ,32.540507999999996,kg +52ef6529-3dd0-362f-b4f8-a7c87d612d68,SESCO,II.5.1,Chubut,AR-U,annual,2012,gas oil combustion consumption by agriculture machines,8.34372,TJ,N2O,3.9,kg/TJ,32.540507999999996,kg +224bf67d-bd48-39eb-a012-af236f3e64fc,SESCO,II.5.1,Corrientes,AR-W,annual,2012,gas oil combustion consumption by agriculture machines,395.58624,TJ,CO2,74100.0,kg/TJ,29312940.384,kg +7ce5a0ea-e1f8-3f2e-8340-4170e01296d6,SESCO,II.5.1,Corrientes,AR-W,annual,2012,gas oil combustion consumption by agriculture machines,395.58624,TJ,CH4,3.9,kg/TJ,1542.786336,kg +7ce5a0ea-e1f8-3f2e-8340-4170e01296d6,SESCO,II.5.1,Corrientes,AR-W,annual,2012,gas oil combustion consumption by agriculture machines,395.58624,TJ,N2O,3.9,kg/TJ,1542.786336,kg +8c12cecf-0c3e-3b3d-8d19-2562bf7bf31d,SESCO,II.5.1,Córdoba,AR-X,annual,2012,gas oil combustion consumption by agriculture machines,7313.14416,TJ,CO2,74100.0,kg/TJ,541903982.256,kg +fac1210f-ed8a-38cd-bd87-968df11c93df,SESCO,II.5.1,Córdoba,AR-X,annual,2012,gas oil combustion consumption by agriculture machines,7313.14416,TJ,CH4,3.9,kg/TJ,28521.262224,kg +fac1210f-ed8a-38cd-bd87-968df11c93df,SESCO,II.5.1,Córdoba,AR-X,annual,2012,gas oil combustion consumption by agriculture machines,7313.14416,TJ,N2O,3.9,kg/TJ,28521.262224,kg +df0d4147-1145-394c-b521-d6108cf7a617,SESCO,II.5.1,Entre Rios,AR-E,annual,2012,gas oil combustion consumption by agriculture machines,1986.45552,TJ,CO2,74100.0,kg/TJ,147196354.032,kg +da8e2701-e810-352f-ac9d-d50ddb84e981,SESCO,II.5.1,Entre Rios,AR-E,annual,2012,gas oil combustion consumption by agriculture machines,1986.45552,TJ,CH4,3.9,kg/TJ,7747.176528,kg +da8e2701-e810-352f-ac9d-d50ddb84e981,SESCO,II.5.1,Entre Rios,AR-E,annual,2012,gas oil combustion consumption by agriculture machines,1986.45552,TJ,N2O,3.9,kg/TJ,7747.176528,kg +03be6eef-7126-38fa-8913-e3afb6f4593e,SESCO,II.5.1,Formosa,AR-P,annual,2012,gas oil combustion consumption by agriculture machines,353.976,TJ,CO2,74100.0,kg/TJ,26229621.6,kg +2bcc1c9f-bbd1-38de-9939-487a3e6ac001,SESCO,II.5.1,Formosa,AR-P,annual,2012,gas oil combustion consumption by agriculture machines,353.976,TJ,CH4,3.9,kg/TJ,1380.5064,kg +2bcc1c9f-bbd1-38de-9939-487a3e6ac001,SESCO,II.5.1,Formosa,AR-P,annual,2012,gas oil combustion consumption by agriculture machines,353.976,TJ,N2O,3.9,kg/TJ,1380.5064,kg +fe2a30d3-7d80-3cda-ae5e-6584b710c765,SESCO,II.5.1,Jujuy,AR-Y,annual,2012,gas oil combustion consumption by agriculture machines,780.9144,TJ,CO2,74100.0,kg/TJ,57865757.04,kg +b3eb22c5-2824-37a3-8b84-c9385e2c5e98,SESCO,II.5.1,Jujuy,AR-Y,annual,2012,gas oil combustion consumption by agriculture machines,780.9144,TJ,CH4,3.9,kg/TJ,3045.56616,kg +b3eb22c5-2824-37a3-8b84-c9385e2c5e98,SESCO,II.5.1,Jujuy,AR-Y,annual,2012,gas oil combustion consumption by agriculture machines,780.9144,TJ,N2O,3.9,kg/TJ,3045.56616,kg +8fa59509-f8ce-39f2-8a7a-17b5884b95d6,SESCO,II.5.1,La Pampa,AR-L,annual,2012,gas oil combustion consumption by agriculture machines,2319.15684,TJ,CO2,74100.0,kg/TJ,171849521.844,kg +fe516c25-1e1a-3800-adb5-f00de7ac3553,SESCO,II.5.1,La Pampa,AR-L,annual,2012,gas oil combustion consumption by agriculture machines,2319.15684,TJ,CH4,3.9,kg/TJ,9044.711676,kg +fe516c25-1e1a-3800-adb5-f00de7ac3553,SESCO,II.5.1,La Pampa,AR-L,annual,2012,gas oil combustion consumption by agriculture machines,2319.15684,TJ,N2O,3.9,kg/TJ,9044.711676,kg +f45a9073-f4db-34eb-b9bd-603349cc9fd7,SESCO,II.5.1,Mendoza,AR-M,annual,2012,gas oil combustion consumption by agriculture machines,393.31068,TJ,CO2,74100.0,kg/TJ,29144321.388,kg +d699d258-7e67-33ab-994e-15ee69771dd1,SESCO,II.5.1,Mendoza,AR-M,annual,2012,gas oil combustion consumption by agriculture machines,393.31068,TJ,CH4,3.9,kg/TJ,1533.911652,kg +d699d258-7e67-33ab-994e-15ee69771dd1,SESCO,II.5.1,Mendoza,AR-M,annual,2012,gas oil combustion consumption by agriculture machines,393.31068,TJ,N2O,3.9,kg/TJ,1533.911652,kg +cd1399e0-5a26-32d4-848d-dde1235337fd,SESCO,II.5.1,Misiones,AR-N,annual,2012,gas oil combustion consumption by agriculture machines,952.37604,TJ,CO2,74100.0,kg/TJ,70571064.564,kg +17c78c81-e40a-3671-813b-2ea8141d2487,SESCO,II.5.1,Misiones,AR-N,annual,2012,gas oil combustion consumption by agriculture machines,952.37604,TJ,CH4,3.9,kg/TJ,3714.266556,kg +17c78c81-e40a-3671-813b-2ea8141d2487,SESCO,II.5.1,Misiones,AR-N,annual,2012,gas oil combustion consumption by agriculture machines,952.37604,TJ,N2O,3.9,kg/TJ,3714.266556,kg +bef43400-0819-316c-8cbd-f92865b11f83,SESCO,II.5.1,Neuquén,AR-Q,annual,2012,gas oil combustion consumption by agriculture machines,30.99096,TJ,CO2,74100.0,kg/TJ,2296430.136,kg +781c682f-0c7c-3dda-9d6a-8d38e98f0bbf,SESCO,II.5.1,Neuquén,AR-Q,annual,2012,gas oil combustion consumption by agriculture machines,30.99096,TJ,CH4,3.9,kg/TJ,120.864744,kg +781c682f-0c7c-3dda-9d6a-8d38e98f0bbf,SESCO,II.5.1,Neuquén,AR-Q,annual,2012,gas oil combustion consumption by agriculture machines,30.99096,TJ,N2O,3.9,kg/TJ,120.864744,kg +874df751-4753-3e64-897f-072f4a5ed895,SESCO,II.5.1,Rio Negro,AR-R,annual,2012,gas oil combustion consumption by agriculture machines,150.76488,TJ,CO2,74100.0,kg/TJ,11171677.608000001,kg +ed678122-e072-3df4-97f3-17e6d186584b,SESCO,II.5.1,Rio Negro,AR-R,annual,2012,gas oil combustion consumption by agriculture machines,150.76488,TJ,CH4,3.9,kg/TJ,587.983032,kg +ed678122-e072-3df4-97f3-17e6d186584b,SESCO,II.5.1,Rio Negro,AR-R,annual,2012,gas oil combustion consumption by agriculture machines,150.76488,TJ,N2O,3.9,kg/TJ,587.983032,kg +37db892e-d417-355e-9531-5f499d2ab5ed,SESCO,II.5.1,Salta,AR-A,annual,2012,gas oil combustion consumption by agriculture machines,1968.07044,TJ,CO2,74100.0,kg/TJ,145834019.604,kg +6a31b34a-3610-3a13-94d5-2ecc270d3ad5,SESCO,II.5.1,Salta,AR-A,annual,2012,gas oil combustion consumption by agriculture machines,1968.07044,TJ,CH4,3.9,kg/TJ,7675.474716,kg +6a31b34a-3610-3a13-94d5-2ecc270d3ad5,SESCO,II.5.1,Salta,AR-A,annual,2012,gas oil combustion consumption by agriculture machines,1968.07044,TJ,N2O,3.9,kg/TJ,7675.474716,kg +c187100c-886d-3bff-8f49-63a21f097f59,SESCO,II.5.1,San Juan,AR-J,annual,2012,gas oil combustion consumption by agriculture machines,116.41476,TJ,CO2,74100.0,kg/TJ,8626333.716,kg +85b02a65-67a6-3b0a-9581-5d0f276bc9c8,SESCO,II.5.1,San Juan,AR-J,annual,2012,gas oil combustion consumption by agriculture machines,116.41476,TJ,CH4,3.9,kg/TJ,454.017564,kg +85b02a65-67a6-3b0a-9581-5d0f276bc9c8,SESCO,II.5.1,San Juan,AR-J,annual,2012,gas oil combustion consumption by agriculture machines,116.41476,TJ,N2O,3.9,kg/TJ,454.017564,kg +aa043c13-e454-357a-9607-b99c2cd277e3,SESCO,II.5.1,San Luis,AR-D,annual,2012,gas oil combustion consumption by agriculture machines,463.20288,TJ,CO2,74100.0,kg/TJ,34323333.408,kg +bff40811-6676-3084-b3f4-14c0079fcb05,SESCO,II.5.1,San Luis,AR-D,annual,2012,gas oil combustion consumption by agriculture machines,463.20288,TJ,CH4,3.9,kg/TJ,1806.4912319999999,kg +bff40811-6676-3084-b3f4-14c0079fcb05,SESCO,II.5.1,San Luis,AR-D,annual,2012,gas oil combustion consumption by agriculture machines,463.20288,TJ,N2O,3.9,kg/TJ,1806.4912319999999,kg +7c8e4b38-dee0-347f-84b1-e93cea62a84a,SESCO,II.5.1,Santa Fe,AR-S,annual,2012,gas oil combustion consumption by agriculture machines,6100.8486,TJ,CO2,74100.0,kg/TJ,452072881.26,kg +110d219e-c329-352a-afa1-dca5bdf54229,SESCO,II.5.1,Santa Fe,AR-S,annual,2012,gas oil combustion consumption by agriculture machines,6100.8486,TJ,CH4,3.9,kg/TJ,23793.309540000002,kg +110d219e-c329-352a-afa1-dca5bdf54229,SESCO,II.5.1,Santa Fe,AR-S,annual,2012,gas oil combustion consumption by agriculture machines,6100.8486,TJ,N2O,3.9,kg/TJ,23793.309540000002,kg +964619e9-0f76-3b99-9875-ccec6ef5e36e,SESCO,II.5.1,Santiago del Estero,AR-G,annual,2012,gas oil combustion consumption by agriculture machines,1517.47344,TJ,CO2,74100.0,kg/TJ,112444781.904,kg +3087eda9-7352-30cc-b741-ee0fa78c4974,SESCO,II.5.1,Santiago del Estero,AR-G,annual,2012,gas oil combustion consumption by agriculture machines,1517.47344,TJ,CH4,3.9,kg/TJ,5918.146416,kg +3087eda9-7352-30cc-b741-ee0fa78c4974,SESCO,II.5.1,Santiago del Estero,AR-G,annual,2012,gas oil combustion consumption by agriculture machines,1517.47344,TJ,N2O,3.9,kg/TJ,5918.146416,kg +6b6c1c36-2167-3c04-ba71-fcae4509d9a2,SESCO,II.5.1,Tucuman,AR-T,annual,2012,gas oil combustion consumption by agriculture machines,1475.75484,TJ,CO2,74100.0,kg/TJ,109353433.64400001,kg +182966ab-1cda-322b-b139-57c328965973,SESCO,II.5.1,Tucuman,AR-T,annual,2012,gas oil combustion consumption by agriculture machines,1475.75484,TJ,CH4,3.9,kg/TJ,5755.443876,kg +182966ab-1cda-322b-b139-57c328965973,SESCO,II.5.1,Tucuman,AR-T,annual,2012,gas oil combustion consumption by agriculture machines,1475.75484,TJ,N2O,3.9,kg/TJ,5755.443876,kg +c9251dbf-66da-3340-a41c-5a7ccb168538,SESCO,II.5.1,Buenos Aires,AR-B,annual,2012,gas oil combustion consumption by agriculture machines,40.05708,TJ,CO2,74100.0,kg/TJ,2968229.628,kg +ff2a3481-4391-3222-9930-f148029075c6,SESCO,II.5.1,Buenos Aires,AR-B,annual,2012,gas oil combustion consumption by agriculture machines,40.05708,TJ,CH4,3.9,kg/TJ,156.222612,kg +ff2a3481-4391-3222-9930-f148029075c6,SESCO,II.5.1,Buenos Aires,AR-B,annual,2012,gas oil combustion consumption by agriculture machines,40.05708,TJ,N2O,3.9,kg/TJ,156.222612,kg +cf2591c3-49f8-3a92-8e5a-2611384552d7,SESCO,II.5.1,Chaco,AR-H,annual,2012,gas oil combustion consumption by agriculture machines,8.95776,TJ,CO2,74100.0,kg/TJ,663770.0160000001,kg +67cd9fdc-4339-3d20-95f1-0be8cd96c734,SESCO,II.5.1,Chaco,AR-H,annual,2012,gas oil combustion consumption by agriculture machines,8.95776,TJ,CH4,3.9,kg/TJ,34.935264000000004,kg +67cd9fdc-4339-3d20-95f1-0be8cd96c734,SESCO,II.5.1,Chaco,AR-H,annual,2012,gas oil combustion consumption by agriculture machines,8.95776,TJ,N2O,3.9,kg/TJ,34.935264000000004,kg +48b124e6-baff-389e-932f-22b4a4fd0a48,SESCO,II.5.1,Corrientes,AR-W,annual,2012,gas oil combustion consumption by agriculture machines,2.56452,TJ,CO2,74100.0,kg/TJ,190030.932,kg +5d9f019d-18b7-3345-a801-6ba735844cc5,SESCO,II.5.1,Corrientes,AR-W,annual,2012,gas oil combustion consumption by agriculture machines,2.56452,TJ,CH4,3.9,kg/TJ,10.001628,kg +5d9f019d-18b7-3345-a801-6ba735844cc5,SESCO,II.5.1,Corrientes,AR-W,annual,2012,gas oil combustion consumption by agriculture machines,2.56452,TJ,N2O,3.9,kg/TJ,10.001628,kg +bf6804c3-0d3d-3954-a067-9cfdd2a82115,SESCO,II.5.1,Córdoba,AR-X,annual,2012,gas oil combustion consumption by agriculture machines,10.6554,TJ,CO2,74100.0,kg/TJ,789565.14,kg +7c97b52a-f5de-3b43-ab58-6a2a522f9736,SESCO,II.5.1,Córdoba,AR-X,annual,2012,gas oil combustion consumption by agriculture machines,10.6554,TJ,CH4,3.9,kg/TJ,41.55606,kg +7c97b52a-f5de-3b43-ab58-6a2a522f9736,SESCO,II.5.1,Córdoba,AR-X,annual,2012,gas oil combustion consumption by agriculture machines,10.6554,TJ,N2O,3.9,kg/TJ,41.55606,kg +24caa789-b58a-3ef0-ba9d-9bb65ddd57c8,SESCO,II.5.1,Entre Rios,AR-E,annual,2012,gas oil combustion consumption by agriculture machines,1.9866,TJ,CO2,74100.0,kg/TJ,147207.06,kg +ddc872aa-b96c-3120-903c-9f823b6c1f70,SESCO,II.5.1,Entre Rios,AR-E,annual,2012,gas oil combustion consumption by agriculture machines,1.9866,TJ,CH4,3.9,kg/TJ,7.747739999999999,kg +ddc872aa-b96c-3120-903c-9f823b6c1f70,SESCO,II.5.1,Entre Rios,AR-E,annual,2012,gas oil combustion consumption by agriculture machines,1.9866,TJ,N2O,3.9,kg/TJ,7.747739999999999,kg +8b1ee078-061f-30ad-aaa5-071878498d20,SESCO,II.5.1,Jujuy,AR-Y,annual,2012,gas oil combustion consumption by agriculture machines,1.33644,TJ,CO2,74100.0,kg/TJ,99030.20400000001,kg +c46150d3-6b88-3173-a8da-f2d196359a95,SESCO,II.5.1,Jujuy,AR-Y,annual,2012,gas oil combustion consumption by agriculture machines,1.33644,TJ,CH4,3.9,kg/TJ,5.212116,kg +c46150d3-6b88-3173-a8da-f2d196359a95,SESCO,II.5.1,Jujuy,AR-Y,annual,2012,gas oil combustion consumption by agriculture machines,1.33644,TJ,N2O,3.9,kg/TJ,5.212116,kg +edf02dd9-842d-3dc3-9881-37738c7533e2,SESCO,II.5.1,La Pampa,AR-L,annual,2012,gas oil combustion consumption by agriculture machines,55.083,TJ,CO2,74100.0,kg/TJ,4081650.3,kg +10a118c4-88cc-3ace-8393-ac0ecb98a76b,SESCO,II.5.1,La Pampa,AR-L,annual,2012,gas oil combustion consumption by agriculture machines,55.083,TJ,CH4,3.9,kg/TJ,214.8237,kg +10a118c4-88cc-3ace-8393-ac0ecb98a76b,SESCO,II.5.1,La Pampa,AR-L,annual,2012,gas oil combustion consumption by agriculture machines,55.083,TJ,N2O,3.9,kg/TJ,214.8237,kg +67d1d61f-ede2-3b65-9225-c5feecad5c33,SESCO,II.5.1,Misiones,AR-N,annual,2012,gas oil combustion consumption by agriculture machines,3.03408,TJ,CO2,74100.0,kg/TJ,224825.32799999998,kg +35b4f497-3825-351c-a21f-8da85fdda7f8,SESCO,II.5.1,Misiones,AR-N,annual,2012,gas oil combustion consumption by agriculture machines,3.03408,TJ,CH4,3.9,kg/TJ,11.832911999999999,kg +35b4f497-3825-351c-a21f-8da85fdda7f8,SESCO,II.5.1,Misiones,AR-N,annual,2012,gas oil combustion consumption by agriculture machines,3.03408,TJ,N2O,3.9,kg/TJ,11.832911999999999,kg +a9246211-e975-3687-820d-2877342746e4,SESCO,II.5.1,Salta,AR-A,annual,2012,gas oil combustion consumption by agriculture machines,55.083,TJ,CO2,74100.0,kg/TJ,4081650.3,kg +8858cfc7-64c2-38c1-9deb-42d19ee1b58a,SESCO,II.5.1,Salta,AR-A,annual,2012,gas oil combustion consumption by agriculture machines,55.083,TJ,CH4,3.9,kg/TJ,214.8237,kg +8858cfc7-64c2-38c1-9deb-42d19ee1b58a,SESCO,II.5.1,Salta,AR-A,annual,2012,gas oil combustion consumption by agriculture machines,55.083,TJ,N2O,3.9,kg/TJ,214.8237,kg +6a387918-b7be-3113-b395-106977e4f753,SESCO,II.5.1,Santa Fe,AR-S,annual,2012,gas oil combustion consumption by agriculture machines,45.61956,TJ,CO2,74100.0,kg/TJ,3380409.396,kg +903fa0f5-b9ee-3816-8f14-093c941bd41d,SESCO,II.5.1,Santa Fe,AR-S,annual,2012,gas oil combustion consumption by agriculture machines,45.61956,TJ,CH4,3.9,kg/TJ,177.916284,kg +903fa0f5-b9ee-3816-8f14-093c941bd41d,SESCO,II.5.1,Santa Fe,AR-S,annual,2012,gas oil combustion consumption by agriculture machines,45.61956,TJ,N2O,3.9,kg/TJ,177.916284,kg +ba0099f8-ac1a-346d-aef8-3099e4f4db4b,SESCO,II.5.1,Santiago del Estero,AR-G,annual,2012,gas oil combustion consumption by agriculture machines,60.57324,TJ,CO2,74100.0,kg/TJ,4488477.084,kg +1b91d313-e125-3c28-ac11-ed86395032e9,SESCO,II.5.1,Santiago del Estero,AR-G,annual,2012,gas oil combustion consumption by agriculture machines,60.57324,TJ,CH4,3.9,kg/TJ,236.235636,kg +1b91d313-e125-3c28-ac11-ed86395032e9,SESCO,II.5.1,Santiago del Estero,AR-G,annual,2012,gas oil combustion consumption by agriculture machines,60.57324,TJ,N2O,3.9,kg/TJ,236.235636,kg +e3d27008-f320-3490-99d9-5db4ff176784,SESCO,II.5.1,Tucuman,AR-T,annual,2012,gas oil combustion consumption by agriculture machines,25.35624,TJ,CO2,74100.0,kg/TJ,1878897.384,kg +44db70ac-33ae-38bb-b9ae-7ad3ef9be930,SESCO,II.5.1,Tucuman,AR-T,annual,2012,gas oil combustion consumption by agriculture machines,25.35624,TJ,CH4,3.9,kg/TJ,98.889336,kg +44db70ac-33ae-38bb-b9ae-7ad3ef9be930,SESCO,II.5.1,Tucuman,AR-T,annual,2012,gas oil combustion consumption by agriculture machines,25.35624,TJ,N2O,3.9,kg/TJ,98.889336,kg +d811cee4-865c-3980-b088-a2f85b3c9ec4,SESCO,II.5.1,Buenos Aires,AR-B,annual,2012,jet kerosene combustion consumption by agriculture machines,17.047525999999998,TJ,CO2,71500.0,kg/TJ,1218898.109,kg +2568d848-45dd-3174-80f1-26db6512f45d,SESCO,II.5.1,Buenos Aires,AR-B,annual,2012,jet kerosene combustion consumption by agriculture machines,17.047525999999998,TJ,CH4,0.5,kg/TJ,8.523762999999999,kg +5e324690-8491-3cc0-a9a3-4116ea82a36a,SESCO,II.5.1,Buenos Aires,AR-B,annual,2012,jet kerosene combustion consumption by agriculture machines,17.047525999999998,TJ,N2O,2.0,kg/TJ,34.095051999999995,kg +f15cf9af-afeb-31b9-a32e-757a60ba7346,SESCO,II.5.1,Córdoba,AR-X,annual,2012,jet kerosene combustion consumption by agriculture machines,0.31453,TJ,CO2,71500.0,kg/TJ,22488.894999999997,kg +cf48b8c3-2f61-3dd0-b123-b5d477ee9603,SESCO,II.5.1,Córdoba,AR-X,annual,2012,jet kerosene combustion consumption by agriculture machines,0.31453,TJ,CH4,0.5,kg/TJ,0.157265,kg +ba1ec442-4a67-3a2f-9a40-c16e4a8f5665,SESCO,II.5.1,Córdoba,AR-X,annual,2012,jet kerosene combustion consumption by agriculture machines,0.31453,TJ,N2O,2.0,kg/TJ,0.62906,kg +cc792cdc-d228-338a-bb13-ca68e37f94ef,SESCO,II.5.1,Entre Rios,AR-E,annual,2012,jet kerosene combustion consumption by agriculture machines,0.28307699999999997,TJ,CO2,71500.0,kg/TJ,20240.0055,kg +dc4b07dd-66f0-3b8c-b844-1bd9cba8b39e,SESCO,II.5.1,Entre Rios,AR-E,annual,2012,jet kerosene combustion consumption by agriculture machines,0.28307699999999997,TJ,CH4,0.5,kg/TJ,0.14153849999999998,kg +37f2b4ef-68e3-3354-a06c-2e31094aa7bb,SESCO,II.5.1,Entre Rios,AR-E,annual,2012,jet kerosene combustion consumption by agriculture machines,0.28307699999999997,TJ,N2O,2.0,kg/TJ,0.5661539999999999,kg +0b485a23-a4e1-3f9c-9b4d-94ca9e0eab2d,SESCO,II.5.1,La Pampa,AR-L,annual,2012,jet kerosene combustion consumption by agriculture machines,2.8307699999999993,TJ,CO2,71500.0,kg/TJ,202400.05499999996,kg +bd5be3db-0457-3765-96b8-bfb9211ae4d3,SESCO,II.5.1,La Pampa,AR-L,annual,2012,jet kerosene combustion consumption by agriculture machines,2.8307699999999993,TJ,CH4,0.5,kg/TJ,1.4153849999999997,kg +038b89bd-ea78-39cf-b61e-81d0256aa806,SESCO,II.5.1,La Pampa,AR-L,annual,2012,jet kerosene combustion consumption by agriculture machines,2.8307699999999993,TJ,N2O,2.0,kg/TJ,5.661539999999999,kg +87038111-3f31-3dc1-8f99-f0774615edc2,SESCO,II.5.1,Santa Fe,AR-S,annual,2012,jet kerosene combustion consumption by agriculture machines,7.485813999999999,TJ,CO2,71500.0,kg/TJ,535235.7009999999,kg +06d86841-67db-3c48-98b8-734f1e95c25d,SESCO,II.5.1,Santa Fe,AR-S,annual,2012,jet kerosene combustion consumption by agriculture machines,7.485813999999999,TJ,CH4,0.5,kg/TJ,3.7429069999999993,kg +6dc73c96-2157-3b9c-ad1e-86ae2775252e,SESCO,II.5.1,Santa Fe,AR-S,annual,2012,jet kerosene combustion consumption by agriculture machines,7.485813999999999,TJ,N2O,2.0,kg/TJ,14.971627999999997,kg +f3de91e4-2fb4-3ca8-ac05-51dd501e7680,SESCO,II.1.1,Buenos Aires,AR-B,annual,2012,gas oil combustion consumption by to the public,42493.9158,TJ,CO2,74100.0,kg/TJ,3148799160.78,kg +37162648-3c07-337e-ac1e-c7db79934105,SESCO,II.1.1,Buenos Aires,AR-B,annual,2012,gas oil combustion consumption by to the public,42493.9158,TJ,CH4,3.9,kg/TJ,165726.27162,kg +37162648-3c07-337e-ac1e-c7db79934105,SESCO,II.1.1,Buenos Aires,AR-B,annual,2012,gas oil combustion consumption by to the public,42493.9158,TJ,N2O,3.9,kg/TJ,165726.27162,kg +18bef0c4-6d6b-36af-ac7b-31358bda7f06,SESCO,II.1.1,Capital Federal,AR-C,annual,2012,gas oil combustion consumption by to the public,4016.07444,TJ,CO2,74100.0,kg/TJ,297591116.004,kg +94e698c1-389a-38df-a1d1-cc89c5925286,SESCO,II.1.1,Capital Federal,AR-C,annual,2012,gas oil combustion consumption by to the public,4016.07444,TJ,CH4,3.9,kg/TJ,15662.690315999998,kg +94e698c1-389a-38df-a1d1-cc89c5925286,SESCO,II.1.1,Capital Federal,AR-C,annual,2012,gas oil combustion consumption by to the public,4016.07444,TJ,N2O,3.9,kg/TJ,15662.690315999998,kg +16e927fe-4a0a-3ab6-812a-e0800f5165c1,SESCO,II.1.1,Catamarca,AR-K,annual,2012,gas oil combustion consumption by to the public,616.42392,TJ,CO2,74100.0,kg/TJ,45677012.471999995,kg +0c7d8b61-4df4-3ee2-bfd3-92e8e3ee6ffc,SESCO,II.1.1,Catamarca,AR-K,annual,2012,gas oil combustion consumption by to the public,616.42392,TJ,CH4,3.9,kg/TJ,2404.0532879999996,kg +0c7d8b61-4df4-3ee2-bfd3-92e8e3ee6ffc,SESCO,II.1.1,Catamarca,AR-K,annual,2012,gas oil combustion consumption by to the public,616.42392,TJ,N2O,3.9,kg/TJ,2404.0532879999996,kg +af14959b-b328-3836-90f2-8b03d7a9a1b6,SESCO,II.1.1,Chaco,AR-H,annual,2012,gas oil combustion consumption by to the public,2690.86776,TJ,CO2,74100.0,kg/TJ,199393301.016,kg +a7d8e499-5e38-3506-b497-7aef66309027,SESCO,II.1.1,Chaco,AR-H,annual,2012,gas oil combustion consumption by to the public,2690.86776,TJ,CH4,3.9,kg/TJ,10494.384264,kg +a7d8e499-5e38-3506-b497-7aef66309027,SESCO,II.1.1,Chaco,AR-H,annual,2012,gas oil combustion consumption by to the public,2690.86776,TJ,N2O,3.9,kg/TJ,10494.384264,kg +5545c683-943a-37c5-a324-77cf9d7d489f,SESCO,II.1.1,Chubut,AR-U,annual,2012,gas oil combustion consumption by to the public,5233.2462,TJ,CO2,74100.0,kg/TJ,387783543.41999996,kg +49096a54-ab70-3e5e-bb3e-b7a4f1d7ee40,SESCO,II.1.1,Chubut,AR-U,annual,2012,gas oil combustion consumption by to the public,5233.2462,TJ,CH4,3.9,kg/TJ,20409.66018,kg +49096a54-ab70-3e5e-bb3e-b7a4f1d7ee40,SESCO,II.1.1,Chubut,AR-U,annual,2012,gas oil combustion consumption by to the public,5233.2462,TJ,N2O,3.9,kg/TJ,20409.66018,kg +26198211-4477-3f87-b520-14a8a2604c92,SESCO,II.1.1,Corrientes,AR-W,annual,2012,gas oil combustion consumption by to the public,2209.67712,TJ,CO2,74100.0,kg/TJ,163737074.59199998,kg +447c6878-07ac-37a8-b9fe-77770b555292,SESCO,II.1.1,Corrientes,AR-W,annual,2012,gas oil combustion consumption by to the public,2209.67712,TJ,CH4,3.9,kg/TJ,8617.740768,kg +447c6878-07ac-37a8-b9fe-77770b555292,SESCO,II.1.1,Corrientes,AR-W,annual,2012,gas oil combustion consumption by to the public,2209.67712,TJ,N2O,3.9,kg/TJ,8617.740768,kg +69471966-f7e1-35fc-8fca-38c36cb25209,SESCO,II.1.1,Córdoba,AR-X,annual,2012,gas oil combustion consumption by to the public,15715.84812,TJ,CO2,74100.0,kg/TJ,1164544345.6920002,kg +d61162da-8f76-3fa4-8e87-f57a7dddd2b9,SESCO,II.1.1,Córdoba,AR-X,annual,2012,gas oil combustion consumption by to the public,15715.84812,TJ,CH4,3.9,kg/TJ,61291.807668,kg +d61162da-8f76-3fa4-8e87-f57a7dddd2b9,SESCO,II.1.1,Córdoba,AR-X,annual,2012,gas oil combustion consumption by to the public,15715.84812,TJ,N2O,3.9,kg/TJ,61291.807668,kg +1163aac8-c334-30fc-b7b0-db76951970f4,SESCO,II.1.1,Entre Rios,AR-E,annual,2012,gas oil combustion consumption by to the public,4788.4645199999995,TJ,CO2,74100.0,kg/TJ,354825220.932,kg +f6f81f96-8acf-3e52-a812-07c1de653805,SESCO,II.1.1,Entre Rios,AR-E,annual,2012,gas oil combustion consumption by to the public,4788.4645199999995,TJ,CH4,3.9,kg/TJ,18675.011627999997,kg +f6f81f96-8acf-3e52-a812-07c1de653805,SESCO,II.1.1,Entre Rios,AR-E,annual,2012,gas oil combustion consumption by to the public,4788.4645199999995,TJ,N2O,3.9,kg/TJ,18675.011627999997,kg +23379767-8c34-3154-a0be-a5e9f5fba3c9,SESCO,II.1.1,Formosa,AR-P,annual,2012,gas oil combustion consumption by to the public,883.5313199999999,TJ,CO2,74100.0,kg/TJ,65469670.812,kg +92bb1d1b-850d-3e5a-9147-80dfd7d2b362,SESCO,II.1.1,Formosa,AR-P,annual,2012,gas oil combustion consumption by to the public,883.5313199999999,TJ,CH4,3.9,kg/TJ,3445.7721479999996,kg +92bb1d1b-850d-3e5a-9147-80dfd7d2b362,SESCO,II.1.1,Formosa,AR-P,annual,2012,gas oil combustion consumption by to the public,883.5313199999999,TJ,N2O,3.9,kg/TJ,3445.7721479999996,kg +7ac507b2-e792-3329-99ff-3928877525d3,SESCO,II.1.1,Jujuy,AR-Y,annual,2012,gas oil combustion consumption by to the public,2226.4006799999997,TJ,CO2,74100.0,kg/TJ,164976290.38799998,kg +3cabb2df-1c5f-3a90-a46a-8960c7a90b8f,SESCO,II.1.1,Jujuy,AR-Y,annual,2012,gas oil combustion consumption by to the public,2226.4006799999997,TJ,CH4,3.9,kg/TJ,8682.962651999998,kg +3cabb2df-1c5f-3a90-a46a-8960c7a90b8f,SESCO,II.1.1,Jujuy,AR-Y,annual,2012,gas oil combustion consumption by to the public,2226.4006799999997,TJ,N2O,3.9,kg/TJ,8682.962651999998,kg +70953292-9814-3362-a51e-aaea80adc5dd,SESCO,II.1.1,La Pampa,AR-L,annual,2012,gas oil combustion consumption by to the public,2999.15196,TJ,CO2,74100.0,kg/TJ,222237160.236,kg +ba519fde-4c03-3920-aee6-a72229b79a96,SESCO,II.1.1,La Pampa,AR-L,annual,2012,gas oil combustion consumption by to the public,2999.15196,TJ,CH4,3.9,kg/TJ,11696.692644,kg +ba519fde-4c03-3920-aee6-a72229b79a96,SESCO,II.1.1,La Pampa,AR-L,annual,2012,gas oil combustion consumption by to the public,2999.15196,TJ,N2O,3.9,kg/TJ,11696.692644,kg +5e876de3-99ea-33b3-a059-303a840ca0d7,SESCO,II.1.1,La Rioja,AR-F,annual,2012,gas oil combustion consumption by to the public,1019.59536,TJ,CO2,74100.0,kg/TJ,75552016.176,kg +047dc116-2085-3fc5-879b-fd679114a27a,SESCO,II.1.1,La Rioja,AR-F,annual,2012,gas oil combustion consumption by to the public,1019.59536,TJ,CH4,3.9,kg/TJ,3976.421904,kg +047dc116-2085-3fc5-879b-fd679114a27a,SESCO,II.1.1,La Rioja,AR-F,annual,2012,gas oil combustion consumption by to the public,1019.59536,TJ,N2O,3.9,kg/TJ,3976.421904,kg +a88d6c58-b5a7-32da-b7b7-eec7ae4873fd,SESCO,II.1.1,Mendoza,AR-M,annual,2012,gas oil combustion consumption by to the public,12815.62884,TJ,CO2,74100.0,kg/TJ,949638097.0439999,kg +c0ed702b-91fe-39b9-ad26-7e0cb5dbdd2d,SESCO,II.1.1,Mendoza,AR-M,annual,2012,gas oil combustion consumption by to the public,12815.62884,TJ,CH4,3.9,kg/TJ,49980.952476,kg +c0ed702b-91fe-39b9-ad26-7e0cb5dbdd2d,SESCO,II.1.1,Mendoza,AR-M,annual,2012,gas oil combustion consumption by to the public,12815.62884,TJ,N2O,3.9,kg/TJ,49980.952476,kg +05ca4771-3d4b-3797-a35a-e5c389b7ff8b,SESCO,II.1.1,Misiones,AR-N,annual,2012,gas oil combustion consumption by to the public,4448.79204,TJ,CO2,74100.0,kg/TJ,329655490.16400003,kg +2c27a1aa-c36d-31cc-aa15-dd6bbee2a514,SESCO,II.1.1,Misiones,AR-N,annual,2012,gas oil combustion consumption by to the public,4448.79204,TJ,CH4,3.9,kg/TJ,17350.288956,kg +2c27a1aa-c36d-31cc-aa15-dd6bbee2a514,SESCO,II.1.1,Misiones,AR-N,annual,2012,gas oil combustion consumption by to the public,4448.79204,TJ,N2O,3.9,kg/TJ,17350.288956,kg +7a0e9dbf-304d-3f44-9f0d-00f98e57f48b,SESCO,II.1.1,Neuquén,AR-Q,annual,2012,gas oil combustion consumption by to the public,3915.62472,TJ,CO2,74100.0,kg/TJ,290147791.752,kg +ad908752-6924-3467-a2d3-0c16e67ad25f,SESCO,II.1.1,Neuquén,AR-Q,annual,2012,gas oil combustion consumption by to the public,3915.62472,TJ,CH4,3.9,kg/TJ,15270.936408,kg +ad908752-6924-3467-a2d3-0c16e67ad25f,SESCO,II.1.1,Neuquén,AR-Q,annual,2012,gas oil combustion consumption by to the public,3915.62472,TJ,N2O,3.9,kg/TJ,15270.936408,kg +44810fc4-d165-3974-b572-5c5b672506dd,SESCO,II.1.1,Rio Negro,AR-R,annual,2012,gas oil combustion consumption by to the public,5045.81952,TJ,CO2,74100.0,kg/TJ,373895226.432,kg +6d5e7eec-4700-3943-b41e-dd32d1c2cffb,SESCO,II.1.1,Rio Negro,AR-R,annual,2012,gas oil combustion consumption by to the public,5045.81952,TJ,CH4,3.9,kg/TJ,19678.696128,kg +6d5e7eec-4700-3943-b41e-dd32d1c2cffb,SESCO,II.1.1,Rio Negro,AR-R,annual,2012,gas oil combustion consumption by to the public,5045.81952,TJ,N2O,3.9,kg/TJ,19678.696128,kg +679ce7ef-a925-3898-ba1a-4a1deffe3a9c,SESCO,II.1.1,Salta,AR-A,annual,2012,gas oil combustion consumption by to the public,4408.8072,TJ,CO2,74100.0,kg/TJ,326692613.52000004,kg +a9064a3a-f468-3e6e-bfc1-f3646f5f2d36,SESCO,II.1.1,Salta,AR-A,annual,2012,gas oil combustion consumption by to the public,4408.8072,TJ,CH4,3.9,kg/TJ,17194.34808,kg +a9064a3a-f468-3e6e-bfc1-f3646f5f2d36,SESCO,II.1.1,Salta,AR-A,annual,2012,gas oil combustion consumption by to the public,4408.8072,TJ,N2O,3.9,kg/TJ,17194.34808,kg +fc228513-0869-3a55-8fc9-41c3e17f8687,SESCO,II.1.1,San Juan,AR-J,annual,2012,gas oil combustion consumption by to the public,2292.31968,TJ,CO2,74100.0,kg/TJ,169860888.28800002,kg +fdb9da5a-2fad-34b9-b839-be61d3e8b7ec,SESCO,II.1.1,San Juan,AR-J,annual,2012,gas oil combustion consumption by to the public,2292.31968,TJ,CH4,3.9,kg/TJ,8940.046752,kg +fdb9da5a-2fad-34b9-b839-be61d3e8b7ec,SESCO,II.1.1,San Juan,AR-J,annual,2012,gas oil combustion consumption by to the public,2292.31968,TJ,N2O,3.9,kg/TJ,8940.046752,kg +1cf2d8fe-9605-34ad-b27b-c1956f2d9cab,SESCO,II.1.1,San Luis,AR-D,annual,2012,gas oil combustion consumption by to the public,2049.41268,TJ,CO2,74100.0,kg/TJ,151861479.588,kg +168e524d-2b31-3505-a003-72741be8ffa2,SESCO,II.1.1,San Luis,AR-D,annual,2012,gas oil combustion consumption by to the public,2049.41268,TJ,CH4,3.9,kg/TJ,7992.709451999999,kg +168e524d-2b31-3505-a003-72741be8ffa2,SESCO,II.1.1,San Luis,AR-D,annual,2012,gas oil combustion consumption by to the public,2049.41268,TJ,N2O,3.9,kg/TJ,7992.709451999999,kg +4da3d965-bbc9-344f-8818-7642186168e1,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2012,gas oil combustion consumption by to the public,3796.212,TJ,CO2,74100.0,kg/TJ,281299309.2,kg +5fd446c4-d963-3eae-a7ff-e81a600f1877,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2012,gas oil combustion consumption by to the public,3796.212,TJ,CH4,3.9,kg/TJ,14805.2268,kg +5fd446c4-d963-3eae-a7ff-e81a600f1877,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2012,gas oil combustion consumption by to the public,3796.212,TJ,N2O,3.9,kg/TJ,14805.2268,kg +3cdcc71e-c6b8-36d9-8fb1-8520595d9f17,SESCO,II.1.1,Santa Fe,AR-S,annual,2012,gas oil combustion consumption by to the public,11981.5458,TJ,CO2,74100.0,kg/TJ,887832543.78,kg +5444ff00-4d5c-36c5-9696-70f254183423,SESCO,II.1.1,Santa Fe,AR-S,annual,2012,gas oil combustion consumption by to the public,11981.5458,TJ,CH4,3.9,kg/TJ,46728.02862,kg +5444ff00-4d5c-36c5-9696-70f254183423,SESCO,II.1.1,Santa Fe,AR-S,annual,2012,gas oil combustion consumption by to the public,11981.5458,TJ,N2O,3.9,kg/TJ,46728.02862,kg +fcad38e7-a332-3a12-b0a3-44fc435ffdbf,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2012,gas oil combustion consumption by to the public,2390.92728,TJ,CO2,74100.0,kg/TJ,177167711.44799998,kg +08033400-b211-320e-96e8-944bbffb8a31,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2012,gas oil combustion consumption by to the public,2390.92728,TJ,CH4,3.9,kg/TJ,9324.616392,kg +08033400-b211-320e-96e8-944bbffb8a31,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2012,gas oil combustion consumption by to the public,2390.92728,TJ,N2O,3.9,kg/TJ,9324.616392,kg +9a02c398-e822-3844-b56d-4fb9336b49c6,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2012,gas oil combustion consumption by to the public,1057.16016,TJ,CO2,74100.0,kg/TJ,78335567.85599999,kg +ba3ec553-4e81-300e-abc7-0f42c3288920,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2012,gas oil combustion consumption by to the public,1057.16016,TJ,CH4,3.9,kg/TJ,4122.924623999999,kg +ba3ec553-4e81-300e-abc7-0f42c3288920,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2012,gas oil combustion consumption by to the public,1057.16016,TJ,N2O,3.9,kg/TJ,4122.924623999999,kg +789f9f56-93b7-3ecc-a6fe-c637e13ff391,SESCO,II.1.1,Tucuman,AR-T,annual,2012,gas oil combustion consumption by to the public,2926.18956,TJ,CO2,74100.0,kg/TJ,216830646.396,kg +bee80a3c-32c6-307b-a939-dbb1580159ac,SESCO,II.1.1,Tucuman,AR-T,annual,2012,gas oil combustion consumption by to the public,2926.18956,TJ,CH4,3.9,kg/TJ,11412.139283999999,kg +bee80a3c-32c6-307b-a939-dbb1580159ac,SESCO,II.1.1,Tucuman,AR-T,annual,2012,gas oil combustion consumption by to the public,2926.18956,TJ,N2O,3.9,kg/TJ,11412.139283999999,kg +e1ab008d-6cde-3084-a7e1-801b871d84a1,SESCO,II.1.1,Buenos Aires,AR-B,annual,2012,gas oil combustion consumption by to the public,9683.5914,TJ,CO2,74100.0,kg/TJ,717554122.74,kg +6da2fcc7-edfd-3a28-98dc-844221277df8,SESCO,II.1.1,Buenos Aires,AR-B,annual,2012,gas oil combustion consumption by to the public,9683.5914,TJ,CH4,3.9,kg/TJ,37766.00646,kg +6da2fcc7-edfd-3a28-98dc-844221277df8,SESCO,II.1.1,Buenos Aires,AR-B,annual,2012,gas oil combustion consumption by to the public,9683.5914,TJ,N2O,3.9,kg/TJ,37766.00646,kg +413fa3a0-0ab7-3d71-be75-b810cec42b8d,SESCO,II.1.1,Capital Federal,AR-C,annual,2012,gas oil combustion consumption by to the public,1150.422,TJ,CO2,74100.0,kg/TJ,85246270.2,kg +dd3d0224-bbe2-3331-baab-055fddabac6d,SESCO,II.1.1,Capital Federal,AR-C,annual,2012,gas oil combustion consumption by to the public,1150.422,TJ,CH4,3.9,kg/TJ,4486.6458,kg +dd3d0224-bbe2-3331-baab-055fddabac6d,SESCO,II.1.1,Capital Federal,AR-C,annual,2012,gas oil combustion consumption by to the public,1150.422,TJ,N2O,3.9,kg/TJ,4486.6458,kg +98ccefb8-a1d6-3ba8-98e6-bc459d8cbde4,SESCO,II.1.1,Catamarca,AR-K,annual,2012,gas oil combustion consumption by to the public,82.13688,TJ,CO2,74100.0,kg/TJ,6086342.808,kg +9af71a59-3c08-3da9-a827-8120235818d2,SESCO,II.1.1,Catamarca,AR-K,annual,2012,gas oil combustion consumption by to the public,82.13688,TJ,CH4,3.9,kg/TJ,320.33383200000003,kg +9af71a59-3c08-3da9-a827-8120235818d2,SESCO,II.1.1,Catamarca,AR-K,annual,2012,gas oil combustion consumption by to the public,82.13688,TJ,N2O,3.9,kg/TJ,320.33383200000003,kg +2eb617be-469f-321d-be29-5e61f9a2c386,SESCO,II.1.1,Chaco,AR-H,annual,2012,gas oil combustion consumption by to the public,675.51624,TJ,CO2,74100.0,kg/TJ,50055753.384,kg +99b0bc48-8b22-3961-bcfe-22542c9593ec,SESCO,II.1.1,Chaco,AR-H,annual,2012,gas oil combustion consumption by to the public,675.51624,TJ,CH4,3.9,kg/TJ,2634.513336,kg +99b0bc48-8b22-3961-bcfe-22542c9593ec,SESCO,II.1.1,Chaco,AR-H,annual,2012,gas oil combustion consumption by to the public,675.51624,TJ,N2O,3.9,kg/TJ,2634.513336,kg +35e1c865-77db-393d-903a-02f2ebc42eed,SESCO,II.1.1,Chubut,AR-U,annual,2012,gas oil combustion consumption by to the public,524.93196,TJ,CO2,74100.0,kg/TJ,38897458.236,kg +a10bf43c-4a3f-3fa8-a772-09a090c5d8cf,SESCO,II.1.1,Chubut,AR-U,annual,2012,gas oil combustion consumption by to the public,524.93196,TJ,CH4,3.9,kg/TJ,2047.234644,kg +a10bf43c-4a3f-3fa8-a772-09a090c5d8cf,SESCO,II.1.1,Chubut,AR-U,annual,2012,gas oil combustion consumption by to the public,524.93196,TJ,N2O,3.9,kg/TJ,2047.234644,kg +7bd3d294-730f-3860-b6ba-a2e307d7a256,SESCO,II.1.1,Corrientes,AR-W,annual,2012,gas oil combustion consumption by to the public,567.51744,TJ,CO2,74100.0,kg/TJ,42053042.304,kg +9c8c51c9-aca5-3d0e-9e88-d33fbfbfa026,SESCO,II.1.1,Corrientes,AR-W,annual,2012,gas oil combustion consumption by to the public,567.51744,TJ,CH4,3.9,kg/TJ,2213.3180159999997,kg +9c8c51c9-aca5-3d0e-9e88-d33fbfbfa026,SESCO,II.1.1,Corrientes,AR-W,annual,2012,gas oil combustion consumption by to the public,567.51744,TJ,N2O,3.9,kg/TJ,2213.3180159999997,kg +486db0e5-47b2-3262-bc8f-047ca09e653d,SESCO,II.1.1,Córdoba,AR-X,annual,2012,gas oil combustion consumption by to the public,2000.07276,TJ,CO2,74100.0,kg/TJ,148205391.516,kg +664f483a-64ea-3112-ba73-ee68cee60b6d,SESCO,II.1.1,Córdoba,AR-X,annual,2012,gas oil combustion consumption by to the public,2000.07276,TJ,CH4,3.9,kg/TJ,7800.283764,kg +664f483a-64ea-3112-ba73-ee68cee60b6d,SESCO,II.1.1,Córdoba,AR-X,annual,2012,gas oil combustion consumption by to the public,2000.07276,TJ,N2O,3.9,kg/TJ,7800.283764,kg +252aa3a6-9f40-3dd1-8760-874fb07737fb,SESCO,II.1.1,Entre Rios,AR-E,annual,2012,gas oil combustion consumption by to the public,998.75412,TJ,CO2,74100.0,kg/TJ,74007680.292,kg +4991a728-a283-3c6d-9025-85b049a4f708,SESCO,II.1.1,Entre Rios,AR-E,annual,2012,gas oil combustion consumption by to the public,998.75412,TJ,CH4,3.9,kg/TJ,3895.141068,kg +4991a728-a283-3c6d-9025-85b049a4f708,SESCO,II.1.1,Entre Rios,AR-E,annual,2012,gas oil combustion consumption by to the public,998.75412,TJ,N2O,3.9,kg/TJ,3895.141068,kg +4f448d0e-e85b-3c7e-b209-4794389f2e10,SESCO,II.1.1,Formosa,AR-P,annual,2012,gas oil combustion consumption by to the public,206.24519999999998,TJ,CO2,74100.0,kg/TJ,15282769.319999998,kg +471ae09d-d8a5-3b09-a820-17ca1855b9d4,SESCO,II.1.1,Formosa,AR-P,annual,2012,gas oil combustion consumption by to the public,206.24519999999998,TJ,CH4,3.9,kg/TJ,804.35628,kg +471ae09d-d8a5-3b09-a820-17ca1855b9d4,SESCO,II.1.1,Formosa,AR-P,annual,2012,gas oil combustion consumption by to the public,206.24519999999998,TJ,N2O,3.9,kg/TJ,804.35628,kg +b442d552-dd33-3e80-8792-a809de5e18e2,SESCO,II.1.1,Jujuy,AR-Y,annual,2012,gas oil combustion consumption by to the public,196.85399999999998,TJ,CO2,74100.0,kg/TJ,14586881.399999999,kg +20b41757-e274-39f2-9f08-0d12d4693397,SESCO,II.1.1,Jujuy,AR-Y,annual,2012,gas oil combustion consumption by to the public,196.85399999999998,TJ,CH4,3.9,kg/TJ,767.7305999999999,kg +20b41757-e274-39f2-9f08-0d12d4693397,SESCO,II.1.1,Jujuy,AR-Y,annual,2012,gas oil combustion consumption by to the public,196.85399999999998,TJ,N2O,3.9,kg/TJ,767.7305999999999,kg +1bd920d0-d164-37f7-8953-47c2515e629b,SESCO,II.1.1,La Pampa,AR-L,annual,2012,gas oil combustion consumption by to the public,575.9334,TJ,CO2,74100.0,kg/TJ,42676664.94,kg +31d526dc-1bb2-3e25-8f4f-f9e5bd07fb7d,SESCO,II.1.1,La Pampa,AR-L,annual,2012,gas oil combustion consumption by to the public,575.9334,TJ,CH4,3.9,kg/TJ,2246.14026,kg +31d526dc-1bb2-3e25-8f4f-f9e5bd07fb7d,SESCO,II.1.1,La Pampa,AR-L,annual,2012,gas oil combustion consumption by to the public,575.9334,TJ,N2O,3.9,kg/TJ,2246.14026,kg +0d952ab5-e1ec-3391-9e0c-37b7c6077eee,SESCO,II.1.1,La Rioja,AR-F,annual,2012,gas oil combustion consumption by to the public,117.35388,TJ,CO2,74100.0,kg/TJ,8695922.508,kg +f9e9e1d6-7587-3e44-8a10-a5ce415fea1c,SESCO,II.1.1,La Rioja,AR-F,annual,2012,gas oil combustion consumption by to the public,117.35388,TJ,CH4,3.9,kg/TJ,457.680132,kg +f9e9e1d6-7587-3e44-8a10-a5ce415fea1c,SESCO,II.1.1,La Rioja,AR-F,annual,2012,gas oil combustion consumption by to the public,117.35388,TJ,N2O,3.9,kg/TJ,457.680132,kg +19f7d4b9-17c6-37c8-9e56-9d51fe9e319d,SESCO,II.1.1,Mendoza,AR-M,annual,2012,gas oil combustion consumption by to the public,1096.27812,TJ,CO2,74100.0,kg/TJ,81234208.692,kg +4a973ddc-77fa-3909-9da9-6c91d2659a56,SESCO,II.1.1,Mendoza,AR-M,annual,2012,gas oil combustion consumption by to the public,1096.27812,TJ,CH4,3.9,kg/TJ,4275.484668,kg +4a973ddc-77fa-3909-9da9-6c91d2659a56,SESCO,II.1.1,Mendoza,AR-M,annual,2012,gas oil combustion consumption by to the public,1096.27812,TJ,N2O,3.9,kg/TJ,4275.484668,kg +8bf89e11-b2ea-3661-ba13-900e01bc86b4,SESCO,II.1.1,Misiones,AR-N,annual,2012,gas oil combustion consumption by to the public,656.95056,TJ,CO2,74100.0,kg/TJ,48680036.496,kg +1a0d9bc5-bf31-3d9e-8a33-8f6b06f553a5,SESCO,II.1.1,Misiones,AR-N,annual,2012,gas oil combustion consumption by to the public,656.95056,TJ,CH4,3.9,kg/TJ,2562.107184,kg +1a0d9bc5-bf31-3d9e-8a33-8f6b06f553a5,SESCO,II.1.1,Misiones,AR-N,annual,2012,gas oil combustion consumption by to the public,656.95056,TJ,N2O,3.9,kg/TJ,2562.107184,kg +cc029df5-0576-3f91-ad91-13b2c6640199,SESCO,II.1.1,Neuquén,AR-Q,annual,2012,gas oil combustion consumption by to the public,663.41604,TJ,CO2,74100.0,kg/TJ,49159128.563999996,kg +72bbb758-3290-3235-960e-0953de6ecb23,SESCO,II.1.1,Neuquén,AR-Q,annual,2012,gas oil combustion consumption by to the public,663.41604,TJ,CH4,3.9,kg/TJ,2587.3225559999996,kg +72bbb758-3290-3235-960e-0953de6ecb23,SESCO,II.1.1,Neuquén,AR-Q,annual,2012,gas oil combustion consumption by to the public,663.41604,TJ,N2O,3.9,kg/TJ,2587.3225559999996,kg +4769ee21-8f96-3e40-b78b-f855a757072b,SESCO,II.1.1,Rio Negro,AR-R,annual,2012,gas oil combustion consumption by to the public,555.56172,TJ,CO2,74100.0,kg/TJ,41167123.452,kg +6dc613f4-df81-3933-9c82-15bf918031b3,SESCO,II.1.1,Rio Negro,AR-R,annual,2012,gas oil combustion consumption by to the public,555.56172,TJ,CH4,3.9,kg/TJ,2166.690708,kg +6dc613f4-df81-3933-9c82-15bf918031b3,SESCO,II.1.1,Rio Negro,AR-R,annual,2012,gas oil combustion consumption by to the public,555.56172,TJ,N2O,3.9,kg/TJ,2166.690708,kg +ea7ce814-25a2-3b22-a2b7-123cad0e9cfd,SESCO,II.1.1,Salta,AR-A,annual,2012,gas oil combustion consumption by to the public,496.86672,TJ,CO2,74100.0,kg/TJ,36817823.952,kg +ddf4f3fa-58c4-3773-b81e-00857fe23894,SESCO,II.1.1,Salta,AR-A,annual,2012,gas oil combustion consumption by to the public,496.86672,TJ,CH4,3.9,kg/TJ,1937.780208,kg +ddf4f3fa-58c4-3773-b81e-00857fe23894,SESCO,II.1.1,Salta,AR-A,annual,2012,gas oil combustion consumption by to the public,496.86672,TJ,N2O,3.9,kg/TJ,1937.780208,kg +f3960f42-73d5-3dbf-bdd5-10a548a39a58,SESCO,II.1.1,San Juan,AR-J,annual,2012,gas oil combustion consumption by to the public,219.68184,TJ,CO2,74100.0,kg/TJ,16278424.343999999,kg +b9b946fc-bbc8-308a-bbb6-970bde717172,SESCO,II.1.1,San Juan,AR-J,annual,2012,gas oil combustion consumption by to the public,219.68184,TJ,CH4,3.9,kg/TJ,856.7591759999999,kg +b9b946fc-bbc8-308a-bbb6-970bde717172,SESCO,II.1.1,San Juan,AR-J,annual,2012,gas oil combustion consumption by to the public,219.68184,TJ,N2O,3.9,kg/TJ,856.7591759999999,kg +0b792e81-acfa-3bfe-989e-f7da7432f2a8,SESCO,II.1.1,San Luis,AR-D,annual,2012,gas oil combustion consumption by to the public,272.63376,TJ,CO2,74100.0,kg/TJ,20202161.616,kg +ce28f07d-dc47-339b-8c8b-2e644aa368cd,SESCO,II.1.1,San Luis,AR-D,annual,2012,gas oil combustion consumption by to the public,272.63376,TJ,CH4,3.9,kg/TJ,1063.2716639999999,kg +ce28f07d-dc47-339b-8c8b-2e644aa368cd,SESCO,II.1.1,San Luis,AR-D,annual,2012,gas oil combustion consumption by to the public,272.63376,TJ,N2O,3.9,kg/TJ,1063.2716639999999,kg +ef6c7ee5-eaf3-355e-928a-1da43330e0c3,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2012,gas oil combustion consumption by to the public,335.15748,TJ,CO2,74100.0,kg/TJ,24835169.268000003,kg +e8bfbe05-1d35-313b-8813-e63cbe931178,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2012,gas oil combustion consumption by to the public,335.15748,TJ,CH4,3.9,kg/TJ,1307.114172,kg +e8bfbe05-1d35-313b-8813-e63cbe931178,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2012,gas oil combustion consumption by to the public,335.15748,TJ,N2O,3.9,kg/TJ,1307.114172,kg +0230e89d-26b6-3902-8429-9a58aebbcc4d,SESCO,II.1.1,Santa Fe,AR-S,annual,2012,gas oil combustion consumption by to the public,2484.08076,TJ,CO2,74100.0,kg/TJ,184070384.31599998,kg +a5bf41d7-4a0f-3e1c-940e-b67b84040597,SESCO,II.1.1,Santa Fe,AR-S,annual,2012,gas oil combustion consumption by to the public,2484.08076,TJ,CH4,3.9,kg/TJ,9687.914964,kg +a5bf41d7-4a0f-3e1c-940e-b67b84040597,SESCO,II.1.1,Santa Fe,AR-S,annual,2012,gas oil combustion consumption by to the public,2484.08076,TJ,N2O,3.9,kg/TJ,9687.914964,kg +3c158af0-0993-37ef-b7bf-8c51304588f1,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2012,gas oil combustion consumption by to the public,342.23699999999997,TJ,CO2,74100.0,kg/TJ,25359761.7,kg +a6187faf-1ec6-373f-94f5-6756952103cc,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2012,gas oil combustion consumption by to the public,342.23699999999997,TJ,CH4,3.9,kg/TJ,1334.7242999999999,kg +a6187faf-1ec6-373f-94f5-6756952103cc,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2012,gas oil combustion consumption by to the public,342.23699999999997,TJ,N2O,3.9,kg/TJ,1334.7242999999999,kg +8ab8d7fc-c680-371a-9bb5-2a5881c809c7,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2012,gas oil combustion consumption by to the public,70.32563999999999,TJ,CO2,74100.0,kg/TJ,5211129.924,kg +14f2cb23-182a-3d70-bb8c-855fd43f7c41,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2012,gas oil combustion consumption by to the public,70.32563999999999,TJ,CH4,3.9,kg/TJ,274.269996,kg +14f2cb23-182a-3d70-bb8c-855fd43f7c41,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2012,gas oil combustion consumption by to the public,70.32563999999999,TJ,N2O,3.9,kg/TJ,274.269996,kg +e614991d-515f-3d41-a9c2-6c9c1b428135,SESCO,II.1.1,Tucuman,AR-T,annual,2012,gas oil combustion consumption by to the public,347.8356,TJ,CO2,74100.0,kg/TJ,25774617.96,kg +85534ba6-560e-3ceb-a6aa-cf31db474120,SESCO,II.1.1,Tucuman,AR-T,annual,2012,gas oil combustion consumption by to the public,347.8356,TJ,CH4,3.9,kg/TJ,1356.55884,kg +85534ba6-560e-3ceb-a6aa-cf31db474120,SESCO,II.1.1,Tucuman,AR-T,annual,2012,gas oil combustion consumption by to the public,347.8356,TJ,N2O,3.9,kg/TJ,1356.55884,kg +91390e65-dd83-3374-a3ec-587f4b491ca9,SESCO,II.1.1,Buenos Aires,AR-B,annual,2012,jet kerosene combustion consumption by to the public,341.2650499999999,TJ,CO2,71500.0,kg/TJ,24400451.074999996,kg +7bba12ea-a650-3123-8c54-690041c5431d,SESCO,II.1.1,Buenos Aires,AR-B,annual,2012,jet kerosene combustion consumption by to the public,341.2650499999999,TJ,CH4,0.5,kg/TJ,170.63252499999996,kg +e172e27f-97e4-308a-adeb-c529094051b2,SESCO,II.1.1,Buenos Aires,AR-B,annual,2012,jet kerosene combustion consumption by to the public,341.2650499999999,TJ,N2O,2.0,kg/TJ,682.5300999999998,kg +d8bfe8d2-bbfc-3f34-8d0d-2500810289bd,SESCO,II.1.1,Capital Federal,AR-C,annual,2012,jet kerosene combustion consumption by to the public,20.381543999999998,TJ,CO2,71500.0,kg/TJ,1457280.396,kg +678257a7-9171-3a48-8c88-40075c0c62d2,SESCO,II.1.1,Capital Federal,AR-C,annual,2012,jet kerosene combustion consumption by to the public,20.381543999999998,TJ,CH4,0.5,kg/TJ,10.190771999999999,kg +65519c7e-6779-3ca2-b111-98646461cbdb,SESCO,II.1.1,Capital Federal,AR-C,annual,2012,jet kerosene combustion consumption by to the public,20.381543999999998,TJ,N2O,2.0,kg/TJ,40.763087999999996,kg +5345a10c-1de7-37b1-906d-a203f2477da3,SESCO,II.1.1,Catamarca,AR-K,annual,2012,jet kerosene combustion consumption by to the public,5.976069999999999,TJ,CO2,71500.0,kg/TJ,427289.00499999995,kg +de141414-1ac2-3fce-bee0-4b3d117b18cd,SESCO,II.1.1,Catamarca,AR-K,annual,2012,jet kerosene combustion consumption by to the public,5.976069999999999,TJ,CH4,0.5,kg/TJ,2.9880349999999996,kg +70367cf8-8043-3436-b57b-538479a9572e,SESCO,II.1.1,Catamarca,AR-K,annual,2012,jet kerosene combustion consumption by to the public,5.976069999999999,TJ,N2O,2.0,kg/TJ,11.952139999999998,kg +79908eb3-a139-3fae-85de-a09b1e347990,SESCO,II.1.1,Chaco,AR-H,annual,2012,jet kerosene combustion consumption by to the public,1.7299149999999996,TJ,CO2,71500.0,kg/TJ,123688.92249999997,kg +b3775ab6-d5d1-395b-b729-a03bd4a98b21,SESCO,II.1.1,Chaco,AR-H,annual,2012,jet kerosene combustion consumption by to the public,1.7299149999999996,TJ,CH4,0.5,kg/TJ,0.8649574999999998,kg +b19cbd92-b9ad-3f5d-be6a-721ee27dc46e,SESCO,II.1.1,Chaco,AR-H,annual,2012,jet kerosene combustion consumption by to the public,1.7299149999999996,TJ,N2O,2.0,kg/TJ,3.4598299999999993,kg +dd0f1c03-4c99-302e-89a3-95778e17ce13,SESCO,II.1.1,Chubut,AR-U,annual,2012,jet kerosene combustion consumption by to the public,15.978123999999998,TJ,CO2,71500.0,kg/TJ,1142435.866,kg +46b37263-ff7a-3e4b-a069-f5d8fbb9d60d,SESCO,II.1.1,Chubut,AR-U,annual,2012,jet kerosene combustion consumption by to the public,15.978123999999998,TJ,CH4,0.5,kg/TJ,7.989061999999999,kg +fca7a037-9695-3978-a800-d951b5e8dc37,SESCO,II.1.1,Chubut,AR-U,annual,2012,jet kerosene combustion consumption by to the public,15.978123999999998,TJ,N2O,2.0,kg/TJ,31.956247999999995,kg +8e520226-2f94-37da-a8cf-d6a031b3b9a7,SESCO,II.1.1,Corrientes,AR-W,annual,2012,jet kerosene combustion consumption by to the public,5.472821999999999,TJ,CO2,71500.0,kg/TJ,391306.7729999999,kg +15b519fb-1859-3a6f-9f18-06a5c916381d,SESCO,II.1.1,Corrientes,AR-W,annual,2012,jet kerosene combustion consumption by to the public,5.472821999999999,TJ,CH4,0.5,kg/TJ,2.7364109999999995,kg +5242df52-51b2-332e-9202-a3beeea3ef3f,SESCO,II.1.1,Corrientes,AR-W,annual,2012,jet kerosene combustion consumption by to the public,5.472821999999999,TJ,N2O,2.0,kg/TJ,10.945643999999998,kg +2ced49ba-331f-3a4b-ac9d-152682035ac5,SESCO,II.1.1,Córdoba,AR-X,annual,2012,jet kerosene combustion consumption by to the public,164.93953199999999,TJ,CO2,71500.0,kg/TJ,11793176.537999999,kg +39295754-e8a0-3666-ad30-badd9ea2a1ed,SESCO,II.1.1,Córdoba,AR-X,annual,2012,jet kerosene combustion consumption by to the public,164.93953199999999,TJ,CH4,0.5,kg/TJ,82.46976599999999,kg +0e34a793-188e-36ca-8e6c-b0a16f5c85a8,SESCO,II.1.1,Córdoba,AR-X,annual,2012,jet kerosene combustion consumption by to the public,164.93953199999999,TJ,N2O,2.0,kg/TJ,329.87906399999997,kg +5f865069-57df-3639-8959-3cf4372073d5,SESCO,II.1.1,Entre Rios,AR-E,annual,2012,jet kerosene combustion consumption by to the public,17.739492,TJ,CO2,71500.0,kg/TJ,1268373.6779999998,kg +a2301ac6-1023-30a6-88c3-86db563b5032,SESCO,II.1.1,Entre Rios,AR-E,annual,2012,jet kerosene combustion consumption by to the public,17.739492,TJ,CH4,0.5,kg/TJ,8.869746,kg +e0bd2a49-0562-339d-9f8e-35a181771c15,SESCO,II.1.1,Entre Rios,AR-E,annual,2012,jet kerosene combustion consumption by to the public,17.739492,TJ,N2O,2.0,kg/TJ,35.478984,kg +42b3a33d-fa35-3dee-97be-093bd454cac5,SESCO,II.1.1,Jujuy,AR-Y,annual,2012,jet kerosene combustion consumption by to the public,3.7114539999999994,TJ,CO2,71500.0,kg/TJ,265368.96099999995,kg +44613af5-ca2a-3595-971d-fb8e26814f47,SESCO,II.1.1,Jujuy,AR-Y,annual,2012,jet kerosene combustion consumption by to the public,3.7114539999999994,TJ,CH4,0.5,kg/TJ,1.8557269999999997,kg +b616eab8-8759-34ae-92f9-e1fd2156fa94,SESCO,II.1.1,Jujuy,AR-Y,annual,2012,jet kerosene combustion consumption by to the public,3.7114539999999994,TJ,N2O,2.0,kg/TJ,7.422907999999999,kg +10bb1797-5e1b-333a-ba03-bc06efd841ca,SESCO,II.1.1,La Pampa,AR-L,annual,2012,jet kerosene combustion consumption by to the public,20.255732,TJ,CO2,71500.0,kg/TJ,1448284.838,kg +c5431d39-4f70-3833-84b0-c744dee78fd4,SESCO,II.1.1,La Pampa,AR-L,annual,2012,jet kerosene combustion consumption by to the public,20.255732,TJ,CH4,0.5,kg/TJ,10.127866,kg +17320e26-9a14-3c19-ba32-67faa806cc90,SESCO,II.1.1,La Pampa,AR-L,annual,2012,jet kerosene combustion consumption by to the public,20.255732,TJ,N2O,2.0,kg/TJ,40.511464,kg +f64d743d-08d4-3c03-a60c-5c69b215c636,SESCO,II.1.1,La Rioja,AR-F,annual,2012,jet kerosene combustion consumption by to the public,1.7299149999999996,TJ,CO2,71500.0,kg/TJ,123688.92249999997,kg +93767ca4-de42-3342-831e-31642a2f1a42,SESCO,II.1.1,La Rioja,AR-F,annual,2012,jet kerosene combustion consumption by to the public,1.7299149999999996,TJ,CH4,0.5,kg/TJ,0.8649574999999998,kg +5c49d455-591c-30a2-bd2c-84ab290eac22,SESCO,II.1.1,La Rioja,AR-F,annual,2012,jet kerosene combustion consumption by to the public,1.7299149999999996,TJ,N2O,2.0,kg/TJ,3.4598299999999993,kg +d4419394-6737-3028-84b9-6c3422efd6ca,SESCO,II.1.1,Mendoza,AR-M,annual,2012,jet kerosene combustion consumption by to the public,44.128558999999996,TJ,CO2,71500.0,kg/TJ,3155191.9684999995,kg +74f6151e-c0e3-35e1-8b87-f884a33027a0,SESCO,II.1.1,Mendoza,AR-M,annual,2012,jet kerosene combustion consumption by to the public,44.128558999999996,TJ,CH4,0.5,kg/TJ,22.064279499999998,kg +71832ba0-0306-332c-a35a-e60855c979d1,SESCO,II.1.1,Mendoza,AR-M,annual,2012,jet kerosene combustion consumption by to the public,44.128558999999996,TJ,N2O,2.0,kg/TJ,88.25711799999999,kg +54e69169-7ff0-3a4b-ad0c-f24653466bd0,SESCO,II.1.1,Neuquén,AR-Q,annual,2012,jet kerosene combustion consumption by to the public,10.06496,TJ,CO2,71500.0,kg/TJ,719644.6399999999,kg +d2772ca8-c6cc-3385-968c-ac4dda574e65,SESCO,II.1.1,Neuquén,AR-Q,annual,2012,jet kerosene combustion consumption by to the public,10.06496,TJ,CH4,0.5,kg/TJ,5.03248,kg +bcb1e024-9085-36f4-aa9e-8f5e48502796,SESCO,II.1.1,Neuquén,AR-Q,annual,2012,jet kerosene combustion consumption by to the public,10.06496,TJ,N2O,2.0,kg/TJ,20.12992,kg +5e5fea2d-6773-3dde-aa24-50506a486bfb,SESCO,II.1.1,Rio Negro,AR-R,annual,2012,jet kerosene combustion consumption by to the public,2.2646159999999997,TJ,CO2,71500.0,kg/TJ,161920.044,kg +e696d295-1c91-36c2-a1e4-ad231b890aaf,SESCO,II.1.1,Rio Negro,AR-R,annual,2012,jet kerosene combustion consumption by to the public,2.2646159999999997,TJ,CH4,0.5,kg/TJ,1.1323079999999999,kg +710f495d-fa2c-3ee2-b8ba-67c178903b50,SESCO,II.1.1,Rio Negro,AR-R,annual,2012,jet kerosene combustion consumption by to the public,2.2646159999999997,TJ,N2O,2.0,kg/TJ,4.5292319999999995,kg +168d67a6-a9b9-355a-ad71-6959368d1b85,SESCO,II.1.1,Salta,AR-A,annual,2012,jet kerosene combustion consumption by to the public,5.850257999999999,TJ,CO2,71500.0,kg/TJ,418293.4469999999,kg +8bb8047e-34a2-32f2-92d5-691849f0188b,SESCO,II.1.1,Salta,AR-A,annual,2012,jet kerosene combustion consumption by to the public,5.850257999999999,TJ,CH4,0.5,kg/TJ,2.9251289999999996,kg +a5ff0d1c-080c-345c-86ba-b8338475c646,SESCO,II.1.1,Salta,AR-A,annual,2012,jet kerosene combustion consumption by to the public,5.850257999999999,TJ,N2O,2.0,kg/TJ,11.700515999999999,kg +e352d5a5-715e-39d1-8117-03478011ae9f,SESCO,II.1.1,San Juan,AR-J,annual,2012,jet kerosene combustion consumption by to the public,4.843761999999999,TJ,CO2,71500.0,kg/TJ,346328.98299999995,kg +bd7168c6-2857-3fb5-a8ac-185883e87240,SESCO,II.1.1,San Juan,AR-J,annual,2012,jet kerosene combustion consumption by to the public,4.843761999999999,TJ,CH4,0.5,kg/TJ,2.4218809999999995,kg +541b67be-cdae-3e2d-a056-79c87ad934e1,SESCO,II.1.1,San Juan,AR-J,annual,2012,jet kerosene combustion consumption by to the public,4.843761999999999,TJ,N2O,2.0,kg/TJ,9.687523999999998,kg +a7c7d996-6e4b-3794-b308-8015b3cb8168,SESCO,II.1.1,San Luis,AR-D,annual,2012,jet kerosene combustion consumption by to the public,8.649574999999999,TJ,CO2,71500.0,kg/TJ,618444.6124999999,kg +942264a8-4a33-3dfc-adf1-30e52ca400a1,SESCO,II.1.1,San Luis,AR-D,annual,2012,jet kerosene combustion consumption by to the public,8.649574999999999,TJ,CH4,0.5,kg/TJ,4.324787499999999,kg +945a3f7b-76c3-3f12-9ba1-abfccea934fb,SESCO,II.1.1,San Luis,AR-D,annual,2012,jet kerosene combustion consumption by to the public,8.649574999999999,TJ,N2O,2.0,kg/TJ,17.299149999999997,kg +6e14562c-c3c3-31ce-8fc0-b28aec4f79b2,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2012,jet kerosene combustion consumption by to the public,18.022568999999997,TJ,CO2,71500.0,kg/TJ,1288613.6834999998,kg +615d650b-f5a7-3b0a-87a9-85c0b1631199,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2012,jet kerosene combustion consumption by to the public,18.022568999999997,TJ,CH4,0.5,kg/TJ,9.011284499999999,kg +88663677-8b0d-3503-83a9-b067101a2f39,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2012,jet kerosene combustion consumption by to the public,18.022568999999997,TJ,N2O,2.0,kg/TJ,36.045137999999994,kg +e300b1e0-565e-3430-8e14-6a7cfee21b77,SESCO,II.1.1,Santa Fe,AR-S,annual,2012,jet kerosene combustion consumption by to the public,62.52856399999999,TJ,CO2,71500.0,kg/TJ,4470792.325999999,kg +a2ab838c-27e8-3f76-b5d0-6e6597af7195,SESCO,II.1.1,Santa Fe,AR-S,annual,2012,jet kerosene combustion consumption by to the public,62.52856399999999,TJ,CH4,0.5,kg/TJ,31.264281999999994,kg +4374f28d-7660-3b7d-9465-42c700b858b5,SESCO,II.1.1,Santa Fe,AR-S,annual,2012,jet kerosene combustion consumption by to the public,62.52856399999999,TJ,N2O,2.0,kg/TJ,125.05712799999998,kg +c5ef8c77-5e84-3b2a-86cd-de3a50bb523e,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2012,jet kerosene combustion consumption by to the public,8.712480999999999,TJ,CO2,71500.0,kg/TJ,622942.3914999999,kg +4a84697a-69a2-3648-8382-5504c8bf54fe,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2012,jet kerosene combustion consumption by to the public,8.712480999999999,TJ,CH4,0.5,kg/TJ,4.356240499999999,kg +8de1a1eb-3a0b-331a-99a5-5aaabdd1a93c,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2012,jet kerosene combustion consumption by to the public,8.712480999999999,TJ,N2O,2.0,kg/TJ,17.424961999999997,kg +1282f674-2986-38b8-a849-ac4a7166c98f,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2012,jet kerosene combustion consumption by to the public,2.2960689999999997,TJ,CO2,71500.0,kg/TJ,164168.93349999998,kg +6def4a84-2b2c-3fdb-8655-32c8ac96ccfa,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2012,jet kerosene combustion consumption by to the public,2.2960689999999997,TJ,CH4,0.5,kg/TJ,1.1480344999999998,kg +55b22f75-72ed-3be9-8421-8964c24acf6b,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2012,jet kerosene combustion consumption by to the public,2.2960689999999997,TJ,N2O,2.0,kg/TJ,4.592137999999999,kg +d2578fa6-9be4-37aa-9393-0ff7d684d6d5,SESCO,II.1.1,Tucuman,AR-T,annual,2012,jet kerosene combustion consumption by to the public,13.807866999999998,TJ,CO2,71500.0,kg/TJ,987262.4904999998,kg +ad0597cf-6b45-3463-b69a-d759b9d76733,SESCO,II.1.1,Tucuman,AR-T,annual,2012,jet kerosene combustion consumption by to the public,13.807866999999998,TJ,CH4,0.5,kg/TJ,6.903933499999999,kg +0a6f71c3-5c08-3725-ab4a-255e4084a0eb,SESCO,II.1.1,Tucuman,AR-T,annual,2012,jet kerosene combustion consumption by to the public,13.807866999999998,TJ,N2O,2.0,kg/TJ,27.615733999999996,kg +db3e31cb-063a-30bc-a9d5-8ca7a0f24e22,SESCO,II.1.1,Buenos Aires,AR-B,annual,2012,gasoline combustion consumption by freight transport,24.0992,TJ,CO2,69300.0,kg/TJ,1670074.56,kg +978fa113-ed08-3ad2-9911-ba8a1987fc1d,SESCO,II.1.1,Buenos Aires,AR-B,annual,2012,gasoline combustion consumption by freight transport,24.0992,TJ,CH4,33.0,kg/TJ,795.2736,kg +dea9245f-8c50-3a9a-8e0f-2d75772a4601,SESCO,II.1.1,Buenos Aires,AR-B,annual,2012,gasoline combustion consumption by freight transport,24.0992,TJ,N2O,3.2,kg/TJ,77.11744,kg +3ae3d11c-aceb-376b-af15-89b37f5747c6,SESCO,II.1.1,Capital Federal,AR-C,annual,2012,gasoline combustion consumption by freight transport,11.872399999999999,TJ,CO2,69300.0,kg/TJ,822757.32,kg +9d8b6b89-7547-3a5a-a01c-d118983a6e6d,SESCO,II.1.1,Capital Federal,AR-C,annual,2012,gasoline combustion consumption by freight transport,11.872399999999999,TJ,CH4,33.0,kg/TJ,391.78919999999994,kg +cf79dfa4-3a68-39bc-a9c5-19890cc7b76c,SESCO,II.1.1,Capital Federal,AR-C,annual,2012,gasoline combustion consumption by freight transport,11.872399999999999,TJ,N2O,3.2,kg/TJ,37.991679999999995,kg +94b51570-0d3c-3cde-9f54-b11ef5a94dd9,SESCO,II.1.1,Buenos Aires,AR-B,annual,2012,gas oil combustion consumption by freight transport,4691.51844,TJ,CO2,74100.0,kg/TJ,347641516.404,kg +522c1df0-cdd4-3690-a21a-9935cbd4049f,SESCO,II.1.1,Buenos Aires,AR-B,annual,2012,gas oil combustion consumption by freight transport,4691.51844,TJ,CH4,3.9,kg/TJ,18296.921916,kg +522c1df0-cdd4-3690-a21a-9935cbd4049f,SESCO,II.1.1,Buenos Aires,AR-B,annual,2012,gas oil combustion consumption by freight transport,4691.51844,TJ,N2O,3.9,kg/TJ,18296.921916,kg +4c40d46c-0501-32ea-bfee-41546549667c,SESCO,II.1.1,Capital Federal,AR-C,annual,2012,gas oil combustion consumption by freight transport,558.1262399999999,TJ,CO2,74100.0,kg/TJ,41357154.383999996,kg +de0defbe-8af5-3329-b1c5-4130b6b043dd,SESCO,II.1.1,Capital Federal,AR-C,annual,2012,gas oil combustion consumption by freight transport,558.1262399999999,TJ,CH4,3.9,kg/TJ,2176.6923359999996,kg +de0defbe-8af5-3329-b1c5-4130b6b043dd,SESCO,II.1.1,Capital Federal,AR-C,annual,2012,gas oil combustion consumption by freight transport,558.1262399999999,TJ,N2O,3.9,kg/TJ,2176.6923359999996,kg +58327837-3ce8-3cdc-a86c-e0a007d2fac3,SESCO,II.1.1,Catamarca,AR-K,annual,2012,gas oil combustion consumption by freight transport,22.35828,TJ,CO2,74100.0,kg/TJ,1656748.548,kg +89463f64-45c2-3fe0-85d7-0be3ef01cc49,SESCO,II.1.1,Catamarca,AR-K,annual,2012,gas oil combustion consumption by freight transport,22.35828,TJ,CH4,3.9,kg/TJ,87.197292,kg +89463f64-45c2-3fe0-85d7-0be3ef01cc49,SESCO,II.1.1,Catamarca,AR-K,annual,2012,gas oil combustion consumption by freight transport,22.35828,TJ,N2O,3.9,kg/TJ,87.197292,kg +2dbad592-2e03-3fae-baeb-d1949e642f77,SESCO,II.1.1,Chaco,AR-H,annual,2012,gas oil combustion consumption by freight transport,16.94028,TJ,CO2,74100.0,kg/TJ,1255274.7480000001,kg +0698de5f-c642-3dcc-a476-40cafa9f52e1,SESCO,II.1.1,Chaco,AR-H,annual,2012,gas oil combustion consumption by freight transport,16.94028,TJ,CH4,3.9,kg/TJ,66.067092,kg +0698de5f-c642-3dcc-a476-40cafa9f52e1,SESCO,II.1.1,Chaco,AR-H,annual,2012,gas oil combustion consumption by freight transport,16.94028,TJ,N2O,3.9,kg/TJ,66.067092,kg +03a65f7c-dcbd-3456-b507-eec6d90859a9,SESCO,II.1.1,Chubut,AR-U,annual,2012,gas oil combustion consumption by freight transport,164.41824,TJ,CO2,74100.0,kg/TJ,12183391.583999999,kg +c212e4f1-302e-3528-8d26-0cb7f35f470d,SESCO,II.1.1,Chubut,AR-U,annual,2012,gas oil combustion consumption by freight transport,164.41824,TJ,CH4,3.9,kg/TJ,641.231136,kg +c212e4f1-302e-3528-8d26-0cb7f35f470d,SESCO,II.1.1,Chubut,AR-U,annual,2012,gas oil combustion consumption by freight transport,164.41824,TJ,N2O,3.9,kg/TJ,641.231136,kg +df74a3ad-7408-3c31-8cb2-56e247686c65,SESCO,II.1.1,Corrientes,AR-W,annual,2012,gas oil combustion consumption by freight transport,185.72904,TJ,CO2,74100.0,kg/TJ,13762521.864,kg +3dd25615-ec01-3d86-8c83-648ec1f67790,SESCO,II.1.1,Corrientes,AR-W,annual,2012,gas oil combustion consumption by freight transport,185.72904,TJ,CH4,3.9,kg/TJ,724.343256,kg +3dd25615-ec01-3d86-8c83-648ec1f67790,SESCO,II.1.1,Corrientes,AR-W,annual,2012,gas oil combustion consumption by freight transport,185.72904,TJ,N2O,3.9,kg/TJ,724.343256,kg +9aa754a9-481e-3039-a47d-9a56d3410e97,SESCO,II.1.1,Córdoba,AR-X,annual,2012,gas oil combustion consumption by freight transport,1015.94724,TJ,CO2,74100.0,kg/TJ,75281690.484,kg +834b3674-ca35-31cc-a780-a35b2baba311,SESCO,II.1.1,Córdoba,AR-X,annual,2012,gas oil combustion consumption by freight transport,1015.94724,TJ,CH4,3.9,kg/TJ,3962.194236,kg +834b3674-ca35-31cc-a780-a35b2baba311,SESCO,II.1.1,Córdoba,AR-X,annual,2012,gas oil combustion consumption by freight transport,1015.94724,TJ,N2O,3.9,kg/TJ,3962.194236,kg +d86ea670-89a6-30c9-8b09-f29ce9f8a542,SESCO,II.1.1,Entre Rios,AR-E,annual,2012,gas oil combustion consumption by freight transport,107.70984,TJ,CO2,74100.0,kg/TJ,7981299.144,kg +f46f494e-56c6-3ba6-a0f1-35579994ed0a,SESCO,II.1.1,Entre Rios,AR-E,annual,2012,gas oil combustion consumption by freight transport,107.70984,TJ,CH4,3.9,kg/TJ,420.068376,kg +f46f494e-56c6-3ba6-a0f1-35579994ed0a,SESCO,II.1.1,Entre Rios,AR-E,annual,2012,gas oil combustion consumption by freight transport,107.70984,TJ,N2O,3.9,kg/TJ,420.068376,kg +8467d8cd-0c1a-38bc-84a2-fae2c1e1b106,SESCO,II.1.1,Jujuy,AR-Y,annual,2012,gas oil combustion consumption by freight transport,15.31488,TJ,CO2,74100.0,kg/TJ,1134832.608,kg +1520ab6e-eb58-3954-8694-632c4e8f3dee,SESCO,II.1.1,Jujuy,AR-Y,annual,2012,gas oil combustion consumption by freight transport,15.31488,TJ,CH4,3.9,kg/TJ,59.728032,kg +1520ab6e-eb58-3954-8694-632c4e8f3dee,SESCO,II.1.1,Jujuy,AR-Y,annual,2012,gas oil combustion consumption by freight transport,15.31488,TJ,N2O,3.9,kg/TJ,59.728032,kg +1d845ebc-a228-34e7-80be-0fc508d9f13a,SESCO,II.1.1,La Pampa,AR-L,annual,2012,gas oil combustion consumption by freight transport,70.03668,TJ,CO2,74100.0,kg/TJ,5189717.988,kg +c32f5bed-c407-3a92-b9ed-2a1425365015,SESCO,II.1.1,La Pampa,AR-L,annual,2012,gas oil combustion consumption by freight transport,70.03668,TJ,CH4,3.9,kg/TJ,273.143052,kg +c32f5bed-c407-3a92-b9ed-2a1425365015,SESCO,II.1.1,La Pampa,AR-L,annual,2012,gas oil combustion consumption by freight transport,70.03668,TJ,N2O,3.9,kg/TJ,273.143052,kg +e07b9a20-8fa8-3e7c-a9d5-2e54dc7741fa,SESCO,II.1.1,La Rioja,AR-F,annual,2012,gas oil combustion consumption by freight transport,0.10836,TJ,CO2,74100.0,kg/TJ,8029.476,kg +6788104c-c872-3539-869a-ed0f648f867f,SESCO,II.1.1,La Rioja,AR-F,annual,2012,gas oil combustion consumption by freight transport,0.10836,TJ,CH4,3.9,kg/TJ,0.422604,kg +6788104c-c872-3539-869a-ed0f648f867f,SESCO,II.1.1,La Rioja,AR-F,annual,2012,gas oil combustion consumption by freight transport,0.10836,TJ,N2O,3.9,kg/TJ,0.422604,kg +5dd087c5-8a9e-3c11-ab9e-de8870fa6dc7,SESCO,II.1.1,Mendoza,AR-M,annual,2012,gas oil combustion consumption by freight transport,672.12096,TJ,CO2,74100.0,kg/TJ,49804163.136,kg +19b03564-0455-36b7-99b7-66c45ed62745,SESCO,II.1.1,Mendoza,AR-M,annual,2012,gas oil combustion consumption by freight transport,672.12096,TJ,CH4,3.9,kg/TJ,2621.2717439999997,kg +19b03564-0455-36b7-99b7-66c45ed62745,SESCO,II.1.1,Mendoza,AR-M,annual,2012,gas oil combustion consumption by freight transport,672.12096,TJ,N2O,3.9,kg/TJ,2621.2717439999997,kg +880b7c7a-98a1-3731-a954-d507886ab2c3,SESCO,II.1.1,Misiones,AR-N,annual,2012,gas oil combustion consumption by freight transport,145.81644,TJ,CO2,74100.0,kg/TJ,10804998.204,kg +2cf81ce2-1c02-3bd0-8c19-4f462d269e0e,SESCO,II.1.1,Misiones,AR-N,annual,2012,gas oil combustion consumption by freight transport,145.81644,TJ,CH4,3.9,kg/TJ,568.684116,kg +2cf81ce2-1c02-3bd0-8c19-4f462d269e0e,SESCO,II.1.1,Misiones,AR-N,annual,2012,gas oil combustion consumption by freight transport,145.81644,TJ,N2O,3.9,kg/TJ,568.684116,kg +62aa44bb-ede1-32db-bf85-32d8ffa96890,SESCO,II.1.1,Neuquén,AR-Q,annual,2012,gas oil combustion consumption by freight transport,336.60228,TJ,CO2,74100.0,kg/TJ,24942228.948,kg +0c51c0c1-92f0-3aaa-9194-b52da6252af3,SESCO,II.1.1,Neuquén,AR-Q,annual,2012,gas oil combustion consumption by freight transport,336.60228,TJ,CH4,3.9,kg/TJ,1312.748892,kg +0c51c0c1-92f0-3aaa-9194-b52da6252af3,SESCO,II.1.1,Neuquén,AR-Q,annual,2012,gas oil combustion consumption by freight transport,336.60228,TJ,N2O,3.9,kg/TJ,1312.748892,kg +3b1022c3-ea8d-32a3-a856-4395b6a75dba,SESCO,II.1.1,Rio Negro,AR-R,annual,2012,gas oil combustion consumption by freight transport,4.8400799999999995,TJ,CO2,74100.0,kg/TJ,358649.92799999996,kg +79fdd900-ca2e-31f2-8582-84e0396be498,SESCO,II.1.1,Rio Negro,AR-R,annual,2012,gas oil combustion consumption by freight transport,4.8400799999999995,TJ,CH4,3.9,kg/TJ,18.876312,kg +79fdd900-ca2e-31f2-8582-84e0396be498,SESCO,II.1.1,Rio Negro,AR-R,annual,2012,gas oil combustion consumption by freight transport,4.8400799999999995,TJ,N2O,3.9,kg/TJ,18.876312,kg +0412c1b7-104d-308c-9ba6-d307001028df,SESCO,II.1.1,Salta,AR-A,annual,2012,gas oil combustion consumption by freight transport,62.41536,TJ,CO2,74100.0,kg/TJ,4624978.176,kg +966cc9ac-5b45-3c1d-a0a1-800d95e633c6,SESCO,II.1.1,Salta,AR-A,annual,2012,gas oil combustion consumption by freight transport,62.41536,TJ,CH4,3.9,kg/TJ,243.419904,kg +966cc9ac-5b45-3c1d-a0a1-800d95e633c6,SESCO,II.1.1,Salta,AR-A,annual,2012,gas oil combustion consumption by freight transport,62.41536,TJ,N2O,3.9,kg/TJ,243.419904,kg +664e36f4-92a9-386a-9da3-2789a1e77fb4,SESCO,II.1.1,San Juan,AR-J,annual,2012,gas oil combustion consumption by freight transport,81.19776,TJ,CO2,74100.0,kg/TJ,6016754.016,kg +0b2c6fe8-469b-37a8-97cb-9bd23857a5c7,SESCO,II.1.1,San Juan,AR-J,annual,2012,gas oil combustion consumption by freight transport,81.19776,TJ,CH4,3.9,kg/TJ,316.671264,kg +0b2c6fe8-469b-37a8-97cb-9bd23857a5c7,SESCO,II.1.1,San Juan,AR-J,annual,2012,gas oil combustion consumption by freight transport,81.19776,TJ,N2O,3.9,kg/TJ,316.671264,kg +8880cc16-1e4c-349c-bf08-dd9b36acb5aa,SESCO,II.1.1,San Luis,AR-D,annual,2012,gas oil combustion consumption by freight transport,81.95627999999999,TJ,CO2,74100.0,kg/TJ,6072960.347999999,kg +33b60c68-bc0c-3cff-ada3-e29c64a96305,SESCO,II.1.1,San Luis,AR-D,annual,2012,gas oil combustion consumption by freight transport,81.95627999999999,TJ,CH4,3.9,kg/TJ,319.62949199999997,kg +33b60c68-bc0c-3cff-ada3-e29c64a96305,SESCO,II.1.1,San Luis,AR-D,annual,2012,gas oil combustion consumption by freight transport,81.95627999999999,TJ,N2O,3.9,kg/TJ,319.62949199999997,kg +c1d44d07-2c20-3409-98eb-c95f08df59cb,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2012,gas oil combustion consumption by freight transport,81.59508,TJ,CO2,74100.0,kg/TJ,6046195.427999999,kg +1469295d-9b35-3c61-94d9-1fe4837b7bcf,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2012,gas oil combustion consumption by freight transport,81.59508,TJ,CH4,3.9,kg/TJ,318.22081199999997,kg +1469295d-9b35-3c61-94d9-1fe4837b7bcf,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2012,gas oil combustion consumption by freight transport,81.59508,TJ,N2O,3.9,kg/TJ,318.22081199999997,kg +03aac554-ea7c-35e5-8eeb-ddfe8e07204f,SESCO,II.1.1,Santa Fe,AR-S,annual,2012,gas oil combustion consumption by freight transport,555.8868,TJ,CO2,74100.0,kg/TJ,41191211.88,kg +427fc5e7-7e6c-35d8-b178-edc112eb2d18,SESCO,II.1.1,Santa Fe,AR-S,annual,2012,gas oil combustion consumption by freight transport,555.8868,TJ,CH4,3.9,kg/TJ,2167.95852,kg +427fc5e7-7e6c-35d8-b178-edc112eb2d18,SESCO,II.1.1,Santa Fe,AR-S,annual,2012,gas oil combustion consumption by freight transport,555.8868,TJ,N2O,3.9,kg/TJ,2167.95852,kg +a15511ef-6877-3220-a680-b801df080d43,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2012,gas oil combustion consumption by freight transport,42.6216,TJ,CO2,74100.0,kg/TJ,3158260.56,kg +12777238-3044-381e-9cdb-7a8d5ccc8417,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2012,gas oil combustion consumption by freight transport,42.6216,TJ,CH4,3.9,kg/TJ,166.22424,kg +12777238-3044-381e-9cdb-7a8d5ccc8417,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2012,gas oil combustion consumption by freight transport,42.6216,TJ,N2O,3.9,kg/TJ,166.22424,kg +59a79577-2eff-3cdf-82bd-57955338ae90,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2012,gas oil combustion consumption by freight transport,0.36119999999999997,TJ,CO2,74100.0,kg/TJ,26764.92,kg +39723431-6851-3518-9b28-3af5203aba97,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2012,gas oil combustion consumption by freight transport,0.36119999999999997,TJ,CH4,3.9,kg/TJ,1.40868,kg +39723431-6851-3518-9b28-3af5203aba97,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2012,gas oil combustion consumption by freight transport,0.36119999999999997,TJ,N2O,3.9,kg/TJ,1.40868,kg +75fb2883-a7f3-3999-b61d-9c82beecd147,SESCO,II.1.1,Tucuman,AR-T,annual,2012,gas oil combustion consumption by freight transport,98.0658,TJ,CO2,74100.0,kg/TJ,7266675.779999999,kg +4ae8189c-04cf-3ba7-ae2d-afe5317b2d30,SESCO,II.1.1,Tucuman,AR-T,annual,2012,gas oil combustion consumption by freight transport,98.0658,TJ,CH4,3.9,kg/TJ,382.45662,kg +4ae8189c-04cf-3ba7-ae2d-afe5317b2d30,SESCO,II.1.1,Tucuman,AR-T,annual,2012,gas oil combustion consumption by freight transport,98.0658,TJ,N2O,3.9,kg/TJ,382.45662,kg +a342ac72-511a-38b6-a677-3461f1ea64c3,SESCO,II.1.1,Buenos Aires,AR-B,annual,2012,gas oil combustion consumption by public passenger transport,10829.96796,TJ,CO2,74100.0,kg/TJ,802500625.836,kg +bfe337c4-45a2-364c-8747-86b5ce257ddb,SESCO,II.1.1,Buenos Aires,AR-B,annual,2012,gas oil combustion consumption by public passenger transport,10829.96796,TJ,CH4,3.9,kg/TJ,42236.875044,kg +bfe337c4-45a2-364c-8747-86b5ce257ddb,SESCO,II.1.1,Buenos Aires,AR-B,annual,2012,gas oil combustion consumption by public passenger transport,10829.96796,TJ,N2O,3.9,kg/TJ,42236.875044,kg +6ca058da-443e-3713-9f6b-c1997faddabf,SESCO,II.1.1,Capital Federal,AR-C,annual,2012,gas oil combustion consumption by public passenger transport,3347.6016,TJ,CO2,74100.0,kg/TJ,248057278.56,kg +29c98ba9-a983-3073-9014-45fb1241930a,SESCO,II.1.1,Capital Federal,AR-C,annual,2012,gas oil combustion consumption by public passenger transport,3347.6016,TJ,CH4,3.9,kg/TJ,13055.64624,kg +29c98ba9-a983-3073-9014-45fb1241930a,SESCO,II.1.1,Capital Federal,AR-C,annual,2012,gas oil combustion consumption by public passenger transport,3347.6016,TJ,N2O,3.9,kg/TJ,13055.64624,kg +36f4f650-37f8-332b-90b2-42fe5982ebdd,SESCO,II.1.1,Catamarca,AR-K,annual,2012,gas oil combustion consumption by public passenger transport,130.97111999999998,TJ,CO2,74100.0,kg/TJ,9704959.991999999,kg +16ecc409-c6b0-3285-b3f1-bc762e9a4758,SESCO,II.1.1,Catamarca,AR-K,annual,2012,gas oil combustion consumption by public passenger transport,130.97111999999998,TJ,CH4,3.9,kg/TJ,510.7873679999999,kg +16ecc409-c6b0-3285-b3f1-bc762e9a4758,SESCO,II.1.1,Catamarca,AR-K,annual,2012,gas oil combustion consumption by public passenger transport,130.97111999999998,TJ,N2O,3.9,kg/TJ,510.7873679999999,kg +16b41e5b-f658-316e-b0cd-5e3cf7b89b64,SESCO,II.1.1,Chaco,AR-H,annual,2012,gas oil combustion consumption by public passenger transport,481.15452,TJ,CO2,74100.0,kg/TJ,35653549.932,kg +30a1d792-0ef8-3247-9f79-09bc46b8f9fc,SESCO,II.1.1,Chaco,AR-H,annual,2012,gas oil combustion consumption by public passenger transport,481.15452,TJ,CH4,3.9,kg/TJ,1876.502628,kg +30a1d792-0ef8-3247-9f79-09bc46b8f9fc,SESCO,II.1.1,Chaco,AR-H,annual,2012,gas oil combustion consumption by public passenger transport,481.15452,TJ,N2O,3.9,kg/TJ,1876.502628,kg +0e32ae73-7bc4-3461-91fd-d5147f987940,SESCO,II.1.1,Chubut,AR-U,annual,2012,gas oil combustion consumption by public passenger transport,145.67195999999998,TJ,CO2,74100.0,kg/TJ,10794292.236,kg +e42ba659-eb2b-3eb7-80d1-6247e5c28d3b,SESCO,II.1.1,Chubut,AR-U,annual,2012,gas oil combustion consumption by public passenger transport,145.67195999999998,TJ,CH4,3.9,kg/TJ,568.120644,kg +e42ba659-eb2b-3eb7-80d1-6247e5c28d3b,SESCO,II.1.1,Chubut,AR-U,annual,2012,gas oil combustion consumption by public passenger transport,145.67195999999998,TJ,N2O,3.9,kg/TJ,568.120644,kg +56f530e0-85c5-3d9c-84f8-c8183e5d620d,SESCO,II.1.1,Corrientes,AR-W,annual,2012,gas oil combustion consumption by public passenger transport,420.798,TJ,CO2,74100.0,kg/TJ,31181131.8,kg +cc7cd5aa-e7d2-30ef-a38e-761628580047,SESCO,II.1.1,Corrientes,AR-W,annual,2012,gas oil combustion consumption by public passenger transport,420.798,TJ,CH4,3.9,kg/TJ,1641.1122,kg +cc7cd5aa-e7d2-30ef-a38e-761628580047,SESCO,II.1.1,Corrientes,AR-W,annual,2012,gas oil combustion consumption by public passenger transport,420.798,TJ,N2O,3.9,kg/TJ,1641.1122,kg +7a3b169b-4426-3949-874a-1dc85e702dbf,SESCO,II.1.1,Córdoba,AR-X,annual,2012,gas oil combustion consumption by public passenger transport,2047.53444,TJ,CO2,74100.0,kg/TJ,151722302.00399998,kg +a3252b4e-3bdc-3740-8956-bb948f1e343a,SESCO,II.1.1,Córdoba,AR-X,annual,2012,gas oil combustion consumption by public passenger transport,2047.53444,TJ,CH4,3.9,kg/TJ,7985.384316,kg +a3252b4e-3bdc-3740-8956-bb948f1e343a,SESCO,II.1.1,Córdoba,AR-X,annual,2012,gas oil combustion consumption by public passenger transport,2047.53444,TJ,N2O,3.9,kg/TJ,7985.384316,kg +53679511-9894-3f11-aa66-7313df70a562,SESCO,II.1.1,Entre Rios,AR-E,annual,2012,gas oil combustion consumption by public passenger transport,438.42456,TJ,CO2,74100.0,kg/TJ,32487259.895999998,kg +bf6a8012-0143-3291-a063-58f2c0555a43,SESCO,II.1.1,Entre Rios,AR-E,annual,2012,gas oil combustion consumption by public passenger transport,438.42456,TJ,CH4,3.9,kg/TJ,1709.8557839999999,kg +bf6a8012-0143-3291-a063-58f2c0555a43,SESCO,II.1.1,Entre Rios,AR-E,annual,2012,gas oil combustion consumption by public passenger transport,438.42456,TJ,N2O,3.9,kg/TJ,1709.8557839999999,kg +8cfe4aa5-b884-3ccc-a586-6c74d56154cd,SESCO,II.1.1,Formosa,AR-P,annual,2012,gas oil combustion consumption by public passenger transport,115.80072,TJ,CO2,74100.0,kg/TJ,8580833.352,kg +fe0b9123-d84c-30a6-b1c3-851a976c797b,SESCO,II.1.1,Formosa,AR-P,annual,2012,gas oil combustion consumption by public passenger transport,115.80072,TJ,CH4,3.9,kg/TJ,451.62280799999996,kg +fe0b9123-d84c-30a6-b1c3-851a976c797b,SESCO,II.1.1,Formosa,AR-P,annual,2012,gas oil combustion consumption by public passenger transport,115.80072,TJ,N2O,3.9,kg/TJ,451.62280799999996,kg +fb7bc855-5323-3c06-8ee8-5ca326341637,SESCO,II.1.1,Jujuy,AR-Y,annual,2012,gas oil combustion consumption by public passenger transport,418.8114,TJ,CO2,74100.0,kg/TJ,31033924.74,kg +b2135812-cd09-3c80-bd76-8a7c698032a6,SESCO,II.1.1,Jujuy,AR-Y,annual,2012,gas oil combustion consumption by public passenger transport,418.8114,TJ,CH4,3.9,kg/TJ,1633.36446,kg +b2135812-cd09-3c80-bd76-8a7c698032a6,SESCO,II.1.1,Jujuy,AR-Y,annual,2012,gas oil combustion consumption by public passenger transport,418.8114,TJ,N2O,3.9,kg/TJ,1633.36446,kg +f2d14cde-73fa-37cb-9783-c59e5d904a18,SESCO,II.1.1,La Pampa,AR-L,annual,2012,gas oil combustion consumption by public passenger transport,10.18584,TJ,CO2,74100.0,kg/TJ,754770.7440000001,kg +b66f5906-bc7d-3004-9e5e-e4b8f9b3776b,SESCO,II.1.1,La Pampa,AR-L,annual,2012,gas oil combustion consumption by public passenger transport,10.18584,TJ,CH4,3.9,kg/TJ,39.724776,kg +b66f5906-bc7d-3004-9e5e-e4b8f9b3776b,SESCO,II.1.1,La Pampa,AR-L,annual,2012,gas oil combustion consumption by public passenger transport,10.18584,TJ,N2O,3.9,kg/TJ,39.724776,kg +7cb6b36b-1c2a-339b-9373-00cf222d9105,SESCO,II.1.1,La Rioja,AR-F,annual,2012,gas oil combustion consumption by public passenger transport,77.80248,TJ,CO2,74100.0,kg/TJ,5765163.768,kg +7f82fb34-6964-36ee-84c2-a02b6acd81b9,SESCO,II.1.1,La Rioja,AR-F,annual,2012,gas oil combustion consumption by public passenger transport,77.80248,TJ,CH4,3.9,kg/TJ,303.429672,kg +7f82fb34-6964-36ee-84c2-a02b6acd81b9,SESCO,II.1.1,La Rioja,AR-F,annual,2012,gas oil combustion consumption by public passenger transport,77.80248,TJ,N2O,3.9,kg/TJ,303.429672,kg +cc3c07b6-3911-3fba-9baa-93ce4e313462,SESCO,II.1.1,Mendoza,AR-M,annual,2012,gas oil combustion consumption by public passenger transport,1664.7708,TJ,CO2,74100.0,kg/TJ,123359516.28,kg +60b2d07f-6a9d-3522-9757-f801049ee3d7,SESCO,II.1.1,Mendoza,AR-M,annual,2012,gas oil combustion consumption by public passenger transport,1664.7708,TJ,CH4,3.9,kg/TJ,6492.6061199999995,kg +60b2d07f-6a9d-3522-9757-f801049ee3d7,SESCO,II.1.1,Mendoza,AR-M,annual,2012,gas oil combustion consumption by public passenger transport,1664.7708,TJ,N2O,3.9,kg/TJ,6492.6061199999995,kg +b64d75d8-fad5-3c36-bde8-9116a497fc77,SESCO,II.1.1,Misiones,AR-N,annual,2012,gas oil combustion consumption by public passenger transport,739.44864,TJ,CO2,74100.0,kg/TJ,54793144.224,kg +cf42b492-15bf-3c23-a1ec-d95d26bff3f9,SESCO,II.1.1,Misiones,AR-N,annual,2012,gas oil combustion consumption by public passenger transport,739.44864,TJ,CH4,3.9,kg/TJ,2883.8496959999998,kg +cf42b492-15bf-3c23-a1ec-d95d26bff3f9,SESCO,II.1.1,Misiones,AR-N,annual,2012,gas oil combustion consumption by public passenger transport,739.44864,TJ,N2O,3.9,kg/TJ,2883.8496959999998,kg +af90b41d-5122-3317-8d00-8c7a788137ce,SESCO,II.1.1,Neuquén,AR-Q,annual,2012,gas oil combustion consumption by public passenger transport,240.45084,TJ,CO2,74100.0,kg/TJ,17817407.244,kg +0b2f840f-76e3-3e59-898d-fdedbc84ef67,SESCO,II.1.1,Neuquén,AR-Q,annual,2012,gas oil combustion consumption by public passenger transport,240.45084,TJ,CH4,3.9,kg/TJ,937.758276,kg +0b2f840f-76e3-3e59-898d-fdedbc84ef67,SESCO,II.1.1,Neuquén,AR-Q,annual,2012,gas oil combustion consumption by public passenger transport,240.45084,TJ,N2O,3.9,kg/TJ,937.758276,kg +7e79036b-c539-3682-a2bb-cd580ea560ad,SESCO,II.1.1,Rio Negro,AR-R,annual,2012,gas oil combustion consumption by public passenger transport,305.90028,TJ,CO2,74100.0,kg/TJ,22667210.748,kg +c91b9dca-e623-3ca6-ace2-8e66e1cffad1,SESCO,II.1.1,Rio Negro,AR-R,annual,2012,gas oil combustion consumption by public passenger transport,305.90028,TJ,CH4,3.9,kg/TJ,1193.011092,kg +c91b9dca-e623-3ca6-ace2-8e66e1cffad1,SESCO,II.1.1,Rio Negro,AR-R,annual,2012,gas oil combustion consumption by public passenger transport,305.90028,TJ,N2O,3.9,kg/TJ,1193.011092,kg +90f375f2-675c-3eb5-8911-b94d2e436e28,SESCO,II.1.1,Salta,AR-A,annual,2012,gas oil combustion consumption by public passenger transport,918.0259199999999,TJ,CO2,74100.0,kg/TJ,68025720.67199999,kg +4ab30d5a-aa21-3aaf-8514-e9a03cb942c7,SESCO,II.1.1,Salta,AR-A,annual,2012,gas oil combustion consumption by public passenger transport,918.0259199999999,TJ,CH4,3.9,kg/TJ,3580.3010879999997,kg +4ab30d5a-aa21-3aaf-8514-e9a03cb942c7,SESCO,II.1.1,Salta,AR-A,annual,2012,gas oil combustion consumption by public passenger transport,918.0259199999999,TJ,N2O,3.9,kg/TJ,3580.3010879999997,kg +d08c990d-2133-3653-88a1-dfc773d492cd,SESCO,II.1.1,San Juan,AR-J,annual,2012,gas oil combustion consumption by public passenger transport,492.3156,TJ,CO2,74100.0,kg/TJ,36480585.96,kg +9f566599-d95f-3ae1-a25d-3c6629323605,SESCO,II.1.1,San Juan,AR-J,annual,2012,gas oil combustion consumption by public passenger transport,492.3156,TJ,CH4,3.9,kg/TJ,1920.0308400000001,kg +9f566599-d95f-3ae1-a25d-3c6629323605,SESCO,II.1.1,San Juan,AR-J,annual,2012,gas oil combustion consumption by public passenger transport,492.3156,TJ,N2O,3.9,kg/TJ,1920.0308400000001,kg +f843bb91-150c-3858-8561-7a66e41e19b3,SESCO,II.1.1,San Luis,AR-D,annual,2012,gas oil combustion consumption by public passenger transport,68.05008,TJ,CO2,74100.0,kg/TJ,5042510.927999999,kg +92cc1646-be9b-33cb-9fab-f260ac8d3c06,SESCO,II.1.1,San Luis,AR-D,annual,2012,gas oil combustion consumption by public passenger transport,68.05008,TJ,CH4,3.9,kg/TJ,265.395312,kg +92cc1646-be9b-33cb-9fab-f260ac8d3c06,SESCO,II.1.1,San Luis,AR-D,annual,2012,gas oil combustion consumption by public passenger transport,68.05008,TJ,N2O,3.9,kg/TJ,265.395312,kg +dd67629c-03e1-3d4d-bc40-6f65493d117c,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2012,gas oil combustion consumption by public passenger transport,45.22224,TJ,CO2,74100.0,kg/TJ,3350967.984,kg +4a3578be-cade-3574-ae22-4f0eb55f595a,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2012,gas oil combustion consumption by public passenger transport,45.22224,TJ,CH4,3.9,kg/TJ,176.366736,kg +4a3578be-cade-3574-ae22-4f0eb55f595a,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2012,gas oil combustion consumption by public passenger transport,45.22224,TJ,N2O,3.9,kg/TJ,176.366736,kg +3bfff277-ff68-3134-9c0d-c61070c052a6,SESCO,II.1.1,Santa Fe,AR-S,annual,2012,gas oil combustion consumption by public passenger transport,1295.51604,TJ,CO2,74100.0,kg/TJ,95997738.564,kg +10a8475f-3e76-3137-ae33-b2c3528b25f4,SESCO,II.1.1,Santa Fe,AR-S,annual,2012,gas oil combustion consumption by public passenger transport,1295.51604,TJ,CH4,3.9,kg/TJ,5052.512556,kg +10a8475f-3e76-3137-ae33-b2c3528b25f4,SESCO,II.1.1,Santa Fe,AR-S,annual,2012,gas oil combustion consumption by public passenger transport,1295.51604,TJ,N2O,3.9,kg/TJ,5052.512556,kg +a5ac3881-d231-3323-bff8-0825b00ec1a0,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2012,gas oil combustion consumption by public passenger transport,302.1438,TJ,CO2,74100.0,kg/TJ,22388855.58,kg +0d1d79ae-78c6-3612-b588-93cc6d6a6336,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2012,gas oil combustion consumption by public passenger transport,302.1438,TJ,CH4,3.9,kg/TJ,1178.3608199999999,kg +0d1d79ae-78c6-3612-b588-93cc6d6a6336,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2012,gas oil combustion consumption by public passenger transport,302.1438,TJ,N2O,3.9,kg/TJ,1178.3608199999999,kg +4bd578b8-627e-36c1-9400-b72d6cd6266a,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2012,gas oil combustion consumption by public passenger transport,10.61928,TJ,CO2,74100.0,kg/TJ,786888.648,kg +03f4dd79-3983-32cd-8743-d1398d465e50,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2012,gas oil combustion consumption by public passenger transport,10.61928,TJ,CH4,3.9,kg/TJ,41.415192,kg +03f4dd79-3983-32cd-8743-d1398d465e50,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2012,gas oil combustion consumption by public passenger transport,10.61928,TJ,N2O,3.9,kg/TJ,41.415192,kg +adbb2021-563a-363e-aa7e-e1127fbe303f,SESCO,II.1.1,Tucuman,AR-T,annual,2012,gas oil combustion consumption by public passenger transport,1101.1543199999999,TJ,CO2,74100.0,kg/TJ,81595535.11199999,kg +a3427255-5adc-3b6c-bd3c-bf2500963949,SESCO,II.1.1,Tucuman,AR-T,annual,2012,gas oil combustion consumption by public passenger transport,1101.1543199999999,TJ,CH4,3.9,kg/TJ,4294.501847999999,kg +a3427255-5adc-3b6c-bd3c-bf2500963949,SESCO,II.1.1,Tucuman,AR-T,annual,2012,gas oil combustion consumption by public passenger transport,1101.1543199999999,TJ,N2O,3.9,kg/TJ,4294.501847999999,kg +4f2500df-f4ab-3807-8e30-6c94b92b344a,SESCO,II.1.1,Capital Federal,AR-C,annual,2013,gas oil combustion consumption by to the public,54.68568,TJ,CO2,74100.0,kg/TJ,4052208.888,kg +e0969d53-be64-3b69-903f-d172d054f170,SESCO,II.1.1,Capital Federal,AR-C,annual,2013,gas oil combustion consumption by to the public,54.68568,TJ,CH4,3.9,kg/TJ,213.274152,kg +e0969d53-be64-3b69-903f-d172d054f170,SESCO,II.1.1,Capital Federal,AR-C,annual,2013,gas oil combustion consumption by to the public,54.68568,TJ,N2O,3.9,kg/TJ,213.274152,kg +1baaa5bd-5a64-36c8-884f-b90d58ee9470,SESCO,II.5.1,Buenos Aires,AR-B,annual,2013,gas oil combustion consumption by agriculture machines,212.6503596,TJ,CO2,74100.0,kg/TJ,15757391.64636,kg +3b9caeaf-94e1-39bb-b079-de3f1ac06575,SESCO,II.5.1,Buenos Aires,AR-B,annual,2013,gas oil combustion consumption by agriculture machines,212.6503596,TJ,CH4,3.9,kg/TJ,829.33640244,kg +3b9caeaf-94e1-39bb-b079-de3f1ac06575,SESCO,II.5.1,Buenos Aires,AR-B,annual,2013,gas oil combustion consumption by agriculture machines,212.6503596,TJ,N2O,3.9,kg/TJ,829.33640244,kg +b6ac0a7b-eb2b-37dc-9b91-9ace9e42dcc9,SESCO,II.5.1,Chaco,AR-H,annual,2013,gas oil combustion consumption by agriculture machines,15.350999999999999,TJ,CO2,74100.0,kg/TJ,1137509.0999999999,kg +e970af7c-66f2-385f-9ea0-e9dc22dac0cb,SESCO,II.5.1,Chaco,AR-H,annual,2013,gas oil combustion consumption by agriculture machines,15.350999999999999,TJ,CH4,3.9,kg/TJ,59.8689,kg +e970af7c-66f2-385f-9ea0-e9dc22dac0cb,SESCO,II.5.1,Chaco,AR-H,annual,2013,gas oil combustion consumption by agriculture machines,15.350999999999999,TJ,N2O,3.9,kg/TJ,59.8689,kg +89dbb157-65d4-377a-8a09-79b243e8f926,SESCO,II.5.1,Córdoba,AR-X,annual,2013,gas oil combustion consumption by agriculture machines,28.997135999999998,TJ,CO2,74100.0,kg/TJ,2148687.7775999997,kg +4b446a58-fba1-3fdb-9044-10f11f9d902a,SESCO,II.5.1,Córdoba,AR-X,annual,2013,gas oil combustion consumption by agriculture machines,28.997135999999998,TJ,CH4,3.9,kg/TJ,113.08883039999999,kg +4b446a58-fba1-3fdb-9044-10f11f9d902a,SESCO,II.5.1,Córdoba,AR-X,annual,2013,gas oil combustion consumption by agriculture machines,28.997135999999998,TJ,N2O,3.9,kg/TJ,113.08883039999999,kg +8200891e-5a69-346b-abb1-ffb3e85ae504,SESCO,II.5.1,La Pampa,AR-L,annual,2013,gas oil combustion consumption by agriculture machines,5.02068,TJ,CO2,74100.0,kg/TJ,372032.388,kg +8924b912-60e1-3ea8-b190-4d4586f81a6d,SESCO,II.5.1,La Pampa,AR-L,annual,2013,gas oil combustion consumption by agriculture machines,5.02068,TJ,CH4,3.9,kg/TJ,19.580651999999997,kg +8924b912-60e1-3ea8-b190-4d4586f81a6d,SESCO,II.5.1,La Pampa,AR-L,annual,2013,gas oil combustion consumption by agriculture machines,5.02068,TJ,N2O,3.9,kg/TJ,19.580651999999997,kg +249e3848-c14b-3369-85f7-a97a0f0f601f,SESCO,II.5.1,Santa Fe,AR-S,annual,2013,gas oil combustion consumption by agriculture machines,369.1706004,TJ,CO2,74100.0,kg/TJ,27355541.48964,kg +677dc339-3048-3733-8b22-5074227adb80,SESCO,II.5.1,Santa Fe,AR-S,annual,2013,gas oil combustion consumption by agriculture machines,369.1706004,TJ,CH4,3.9,kg/TJ,1439.76534156,kg +677dc339-3048-3733-8b22-5074227adb80,SESCO,II.5.1,Santa Fe,AR-S,annual,2013,gas oil combustion consumption by agriculture machines,369.1706004,TJ,N2O,3.9,kg/TJ,1439.76534156,kg +bc051f33-29bc-39f6-beba-1934f6f3dd1b,SESCO,II.5.1,Buenos Aires,AR-B,annual,2013,gas oil combustion consumption by agriculture machines,0.5771976,TJ,CO2,74100.0,kg/TJ,42770.34216,kg +402a14f6-97c9-3e85-95fe-50a0046c4c0e,SESCO,II.5.1,Buenos Aires,AR-B,annual,2013,gas oil combustion consumption by agriculture machines,0.5771976,TJ,CH4,3.9,kg/TJ,2.25107064,kg +402a14f6-97c9-3e85-95fe-50a0046c4c0e,SESCO,II.5.1,Buenos Aires,AR-B,annual,2013,gas oil combustion consumption by agriculture machines,0.5771976,TJ,N2O,3.9,kg/TJ,2.25107064,kg +ec64d929-a1d5-36ca-9f09-ca5d8468fef2,SESCO,II.5.1,Santa Fe,AR-S,annual,2013,gas oil combustion consumption by agriculture machines,6.7725,TJ,CO2,74100.0,kg/TJ,501842.25,kg +273108b4-6030-3e58-a930-d6ad53f3f93e,SESCO,II.5.1,Santa Fe,AR-S,annual,2013,gas oil combustion consumption by agriculture machines,6.7725,TJ,CH4,3.9,kg/TJ,26.41275,kg +273108b4-6030-3e58-a930-d6ad53f3f93e,SESCO,II.5.1,Santa Fe,AR-S,annual,2013,gas oil combustion consumption by agriculture machines,6.7725,TJ,N2O,3.9,kg/TJ,26.41275,kg +2307f20e-bd7c-31c5-a6a4-98fd1a51b2e2,SESCO,II.1.1,Buenos Aires,AR-B,annual,2013,gas oil combustion consumption by to the public,11126.033063796,TJ,CO2,74100.0,kg/TJ,824439050.0272835,kg +45a2365b-eee2-3acf-b344-aab5768b7e62,SESCO,II.1.1,Buenos Aires,AR-B,annual,2013,gas oil combustion consumption by to the public,11126.033063796,TJ,CH4,3.9,kg/TJ,43391.5289488044,kg +45a2365b-eee2-3acf-b344-aab5768b7e62,SESCO,II.1.1,Buenos Aires,AR-B,annual,2013,gas oil combustion consumption by to the public,11126.033063796,TJ,N2O,3.9,kg/TJ,43391.5289488044,kg +efca1fba-e4ba-34be-99d1-bbe478ebdb39,SESCO,II.1.1,Capital Federal,AR-C,annual,2013,gas oil combustion consumption by to the public,1525.0157908439999,TJ,CO2,74100.0,kg/TJ,113003670.10154039,kg +34015ee7-8ab8-372f-bd28-eddf16997bd7,SESCO,II.1.1,Capital Federal,AR-C,annual,2013,gas oil combustion consumption by to the public,1525.0157908439999,TJ,CH4,3.9,kg/TJ,5947.5615842915995,kg +34015ee7-8ab8-372f-bd28-eddf16997bd7,SESCO,II.1.1,Capital Federal,AR-C,annual,2013,gas oil combustion consumption by to the public,1525.0157908439999,TJ,N2O,3.9,kg/TJ,5947.5615842915995,kg +762f8f04-178b-35aa-96ec-e65b3952f649,SESCO,II.1.1,Catamarca,AR-K,annual,2013,gas oil combustion consumption by to the public,473.89898362799994,TJ,CO2,74100.0,kg/TJ,35115914.6868348,kg +472115ed-12bb-3a8f-a458-e8dd4b7f0f0d,SESCO,II.1.1,Catamarca,AR-K,annual,2013,gas oil combustion consumption by to the public,473.89898362799994,TJ,CH4,3.9,kg/TJ,1848.2060361491997,kg +472115ed-12bb-3a8f-a458-e8dd4b7f0f0d,SESCO,II.1.1,Catamarca,AR-K,annual,2013,gas oil combustion consumption by to the public,473.89898362799994,TJ,N2O,3.9,kg/TJ,1848.2060361491997,kg +79a0fe27-c5d3-32bc-9c93-512a48dbd89f,SESCO,II.1.1,Chaco,AR-H,annual,2013,gas oil combustion consumption by to the public,447.498611952,TJ,CO2,74100.0,kg/TJ,33159647.145643197,kg +64465bb9-381c-3b50-bff0-c3e0a6693b2b,SESCO,II.1.1,Chaco,AR-H,annual,2013,gas oil combustion consumption by to the public,447.498611952,TJ,CH4,3.9,kg/TJ,1745.2445866127998,kg +64465bb9-381c-3b50-bff0-c3e0a6693b2b,SESCO,II.1.1,Chaco,AR-H,annual,2013,gas oil combustion consumption by to the public,447.498611952,TJ,N2O,3.9,kg/TJ,1745.2445866127998,kg +ad526280-ecda-35a1-9443-4899af3c9803,SESCO,II.1.1,Chubut,AR-U,annual,2013,gas oil combustion consumption by to the public,419.23021501200003,TJ,CO2,74100.0,kg/TJ,31064958.932389203,kg +8fe02899-b2db-33ca-b496-d0ead5ee5646,SESCO,II.1.1,Chubut,AR-U,annual,2013,gas oil combustion consumption by to the public,419.23021501200003,TJ,CH4,3.9,kg/TJ,1634.9978385468,kg +8fe02899-b2db-33ca-b496-d0ead5ee5646,SESCO,II.1.1,Chubut,AR-U,annual,2013,gas oil combustion consumption by to the public,419.23021501200003,TJ,N2O,3.9,kg/TJ,1634.9978385468,kg +0a904731-04ad-3e53-bc35-d61f5e369455,SESCO,II.1.1,Corrientes,AR-W,annual,2013,gas oil combustion consumption by to the public,355.92257181599996,TJ,CO2,74100.0,kg/TJ,26373862.5715656,kg +59c8e9f1-3485-3d32-a652-1a6918690aaa,SESCO,II.1.1,Corrientes,AR-W,annual,2013,gas oil combustion consumption by to the public,355.92257181599996,TJ,CH4,3.9,kg/TJ,1388.0980300823999,kg +59c8e9f1-3485-3d32-a652-1a6918690aaa,SESCO,II.1.1,Corrientes,AR-W,annual,2013,gas oil combustion consumption by to the public,355.92257181599996,TJ,N2O,3.9,kg/TJ,1388.0980300823999,kg +6d5d937c-1aa2-37cc-9aec-142cb6b7a3f9,SESCO,II.1.1,Córdoba,AR-X,annual,2013,gas oil combustion consumption by to the public,5676.980338596,TJ,CO2,74100.0,kg/TJ,420664243.0899636,kg +987f7248-37f0-3776-9aad-4448326374d2,SESCO,II.1.1,Córdoba,AR-X,annual,2013,gas oil combustion consumption by to the public,5676.980338596,TJ,CH4,3.9,kg/TJ,22140.2233205244,kg +987f7248-37f0-3776-9aad-4448326374d2,SESCO,II.1.1,Córdoba,AR-X,annual,2013,gas oil combustion consumption by to the public,5676.980338596,TJ,N2O,3.9,kg/TJ,22140.2233205244,kg +eec5c690-355a-31a4-8b49-0ff895e96835,SESCO,II.1.1,Entre Rios,AR-E,annual,2013,gas oil combustion consumption by to the public,1524.481865004,TJ,CO2,74100.0,kg/TJ,112964106.19679639,kg +a32aafce-7d40-3591-96b9-7442ac615178,SESCO,II.1.1,Entre Rios,AR-E,annual,2013,gas oil combustion consumption by to the public,1524.481865004,TJ,CH4,3.9,kg/TJ,5945.4792735156,kg +a32aafce-7d40-3591-96b9-7442ac615178,SESCO,II.1.1,Entre Rios,AR-E,annual,2013,gas oil combustion consumption by to the public,1524.481865004,TJ,N2O,3.9,kg/TJ,5945.4792735156,kg +2336f226-60cf-3073-90a2-57c11b8960a0,SESCO,II.1.1,Formosa,AR-P,annual,2013,gas oil combustion consumption by to the public,410.920556172,TJ,CO2,74100.0,kg/TJ,30449213.212345198,kg +8279bfb7-c15c-3262-a7e9-0f5daa757d63,SESCO,II.1.1,Formosa,AR-P,annual,2013,gas oil combustion consumption by to the public,410.920556172,TJ,CH4,3.9,kg/TJ,1602.5901690708,kg +8279bfb7-c15c-3262-a7e9-0f5daa757d63,SESCO,II.1.1,Formosa,AR-P,annual,2013,gas oil combustion consumption by to the public,410.920556172,TJ,N2O,3.9,kg/TJ,1602.5901690708,kg +c0581820-d93f-3818-add0-e666c631638a,SESCO,II.1.1,Jujuy,AR-Y,annual,2013,gas oil combustion consumption by to the public,273.531692364,TJ,CO2,74100.0,kg/TJ,20268698.4041724,kg +1e459054-b6ae-39bf-b92c-25c9f126100c,SESCO,II.1.1,Jujuy,AR-Y,annual,2013,gas oil combustion consumption by to the public,273.531692364,TJ,CH4,3.9,kg/TJ,1066.7736002196,kg +1e459054-b6ae-39bf-b92c-25c9f126100c,SESCO,II.1.1,Jujuy,AR-Y,annual,2013,gas oil combustion consumption by to the public,273.531692364,TJ,N2O,3.9,kg/TJ,1066.7736002196,kg +2c85a9f1-e5a8-39c4-9b27-052586946dec,SESCO,II.1.1,La Pampa,AR-L,annual,2013,gas oil combustion consumption by to the public,382.303575948,TJ,CO2,74100.0,kg/TJ,28328694.9777468,kg +c60bacc4-0d4e-3464-abad-54b9eea5c1f2,SESCO,II.1.1,La Pampa,AR-L,annual,2013,gas oil combustion consumption by to the public,382.303575948,TJ,CH4,3.9,kg/TJ,1490.9839461971999,kg +c60bacc4-0d4e-3464-abad-54b9eea5c1f2,SESCO,II.1.1,La Pampa,AR-L,annual,2013,gas oil combustion consumption by to the public,382.303575948,TJ,N2O,3.9,kg/TJ,1490.9839461971999,kg +35a386ab-6b1f-3837-84a5-4e67c2402e26,SESCO,II.1.1,La Rioja,AR-F,annual,2013,gas oil combustion consumption by to the public,88.922404872,TJ,CO2,74100.0,kg/TJ,6589150.2010152005,kg +45f841fd-e268-3039-8bb4-c4e0dac945e5,SESCO,II.1.1,La Rioja,AR-F,annual,2013,gas oil combustion consumption by to the public,88.922404872,TJ,CH4,3.9,kg/TJ,346.7973790008,kg +45f841fd-e268-3039-8bb4-c4e0dac945e5,SESCO,II.1.1,La Rioja,AR-F,annual,2013,gas oil combustion consumption by to the public,88.922404872,TJ,N2O,3.9,kg/TJ,346.7973790008,kg +7fa9147f-1a13-3ce3-921b-4715c25dcbec,SESCO,II.1.1,Mendoza,AR-M,annual,2013,gas oil combustion consumption by to the public,588.405878004,TJ,CO2,74100.0,kg/TJ,43600875.5600964,kg +12cd7897-4e26-3671-a304-af137d2d93d0,SESCO,II.1.1,Mendoza,AR-M,annual,2013,gas oil combustion consumption by to the public,588.405878004,TJ,CH4,3.9,kg/TJ,2294.7829242156,kg +12cd7897-4e26-3671-a304-af137d2d93d0,SESCO,II.1.1,Mendoza,AR-M,annual,2013,gas oil combustion consumption by to the public,588.405878004,TJ,N2O,3.9,kg/TJ,2294.7829242156,kg +5a9a877f-88b7-3d04-966d-a3eedb135979,SESCO,II.1.1,Misiones,AR-N,annual,2013,gas oil combustion consumption by to the public,1107.957749556,TJ,CO2,74100.0,kg/TJ,82099669.2420996,kg +15ab87cb-71c1-3666-a77a-a79ec0b0d726,SESCO,II.1.1,Misiones,AR-N,annual,2013,gas oil combustion consumption by to the public,1107.957749556,TJ,CH4,3.9,kg/TJ,4321.0352232684,kg +15ab87cb-71c1-3666-a77a-a79ec0b0d726,SESCO,II.1.1,Misiones,AR-N,annual,2013,gas oil combustion consumption by to the public,1107.957749556,TJ,N2O,3.9,kg/TJ,4321.0352232684,kg +991d706c-696b-33a8-b4f7-4ef321a16614,SESCO,II.1.1,Neuquén,AR-Q,annual,2013,gas oil combustion consumption by to the public,190.463953008,TJ,CO2,74100.0,kg/TJ,14113378.9178928,kg +284c6e08-a3d6-3de7-9024-7464b3c2adca,SESCO,II.1.1,Neuquén,AR-Q,annual,2013,gas oil combustion consumption by to the public,190.463953008,TJ,CH4,3.9,kg/TJ,742.8094167312,kg +284c6e08-a3d6-3de7-9024-7464b3c2adca,SESCO,II.1.1,Neuquén,AR-Q,annual,2013,gas oil combustion consumption by to the public,190.463953008,TJ,N2O,3.9,kg/TJ,742.8094167312,kg +49891d83-3e7c-3117-aa67-44953739b335,SESCO,II.1.1,Rio Negro,AR-R,annual,2013,gas oil combustion consumption by to the public,896.708914584,TJ,CO2,74100.0,kg/TJ,66446130.570674405,kg +25d5e00a-b087-3a8b-99c8-b89605f6772e,SESCO,II.1.1,Rio Negro,AR-R,annual,2013,gas oil combustion consumption by to the public,896.708914584,TJ,CH4,3.9,kg/TJ,3497.1647668776,kg +25d5e00a-b087-3a8b-99c8-b89605f6772e,SESCO,II.1.1,Rio Negro,AR-R,annual,2013,gas oil combustion consumption by to the public,896.708914584,TJ,N2O,3.9,kg/TJ,3497.1647668776,kg +4ab89029-2dcd-30eb-95da-9aa33338da56,SESCO,II.1.1,Salta,AR-A,annual,2013,gas oil combustion consumption by to the public,57.334565484,TJ,CO2,74100.0,kg/TJ,4248491.302364401,kg +2eb0374a-8474-30fa-a333-176bb62212ef,SESCO,II.1.1,Salta,AR-A,annual,2013,gas oil combustion consumption by to the public,57.334565484,TJ,CH4,3.9,kg/TJ,223.6048053876,kg +2eb0374a-8474-30fa-a333-176bb62212ef,SESCO,II.1.1,Salta,AR-A,annual,2013,gas oil combustion consumption by to the public,57.334565484,TJ,N2O,3.9,kg/TJ,223.6048053876,kg +a6427d66-97b9-38ee-b9c8-3c2734282b50,SESCO,II.1.1,San Juan,AR-J,annual,2013,gas oil combustion consumption by to the public,599.687132856,TJ,CO2,74100.0,kg/TJ,44436816.544629596,kg +a859b3d5-6742-36c9-b9c5-c398725379ad,SESCO,II.1.1,San Juan,AR-J,annual,2013,gas oil combustion consumption by to the public,599.687132856,TJ,CH4,3.9,kg/TJ,2338.7798181383996,kg +a859b3d5-6742-36c9-b9c5-c398725379ad,SESCO,II.1.1,San Juan,AR-J,annual,2013,gas oil combustion consumption by to the public,599.687132856,TJ,N2O,3.9,kg/TJ,2338.7798181383996,kg +af5ca342-11b6-3723-923b-36dfaf6e0051,SESCO,II.1.1,San Luis,AR-D,annual,2013,gas oil combustion consumption by to the public,982.6176255839999,TJ,CO2,74100.0,kg/TJ,72811966.05577439,kg +1fcff268-d9c0-3c2a-bbac-a6cec63e48ba,SESCO,II.1.1,San Luis,AR-D,annual,2013,gas oil combustion consumption by to the public,982.6176255839999,TJ,CH4,3.9,kg/TJ,3832.2087397775995,kg +1fcff268-d9c0-3c2a-bbac-a6cec63e48ba,SESCO,II.1.1,San Luis,AR-D,annual,2013,gas oil combustion consumption by to the public,982.6176255839999,TJ,N2O,3.9,kg/TJ,3832.2087397775995,kg +2d2e4b53-e280-3b1f-a43e-dd5686575768,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2013,gas oil combustion consumption by to the public,337.681050756,TJ,CO2,74100.0,kg/TJ,25022165.8610196,kg +326d68a1-7439-3baa-94a7-edb92c6f8878,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2013,gas oil combustion consumption by to the public,337.681050756,TJ,CH4,3.9,kg/TJ,1316.9560979484,kg +326d68a1-7439-3baa-94a7-edb92c6f8878,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2013,gas oil combustion consumption by to the public,337.681050756,TJ,N2O,3.9,kg/TJ,1316.9560979484,kg +642127ed-d9cb-3514-ba7f-137148c23ede,SESCO,II.1.1,Santa Fe,AR-S,annual,2013,gas oil combustion consumption by to the public,4043.03807418,TJ,CO2,74100.0,kg/TJ,299589121.29673797,kg +65735464-1128-3644-a8d7-35c7dfa291f3,SESCO,II.1.1,Santa Fe,AR-S,annual,2013,gas oil combustion consumption by to the public,4043.03807418,TJ,CH4,3.9,kg/TJ,15767.848489302,kg +65735464-1128-3644-a8d7-35c7dfa291f3,SESCO,II.1.1,Santa Fe,AR-S,annual,2013,gas oil combustion consumption by to the public,4043.03807418,TJ,N2O,3.9,kg/TJ,15767.848489302,kg +2c737290-2ecc-3629-843c-d39f546557e0,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2013,gas oil combustion consumption by to the public,495.83296559999997,TJ,CO2,74100.0,kg/TJ,36741222.75096,kg +015ead23-22ba-3bc5-86c4-923b91ca2153,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2013,gas oil combustion consumption by to the public,495.83296559999997,TJ,CH4,3.9,kg/TJ,1933.7485658399999,kg +015ead23-22ba-3bc5-86c4-923b91ca2153,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2013,gas oil combustion consumption by to the public,495.83296559999997,TJ,N2O,3.9,kg/TJ,1933.7485658399999,kg +984d2fa2-68dc-3f82-b97a-ac78dcb06f86,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2013,gas oil combustion consumption by to the public,185.490528804,TJ,CO2,74100.0,kg/TJ,13744848.1843764,kg +b4d52376-feb8-36bb-b343-2da9408c1840,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2013,gas oil combustion consumption by to the public,185.490528804,TJ,CH4,3.9,kg/TJ,723.4130623356,kg +b4d52376-feb8-36bb-b343-2da9408c1840,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2013,gas oil combustion consumption by to the public,185.490528804,TJ,N2O,3.9,kg/TJ,723.4130623356,kg +339ca45d-0579-3677-8018-a9308809e78a,SESCO,II.1.1,Tucuman,AR-T,annual,2013,gas oil combustion consumption by to the public,141.39471989999998,TJ,CO2,74100.0,kg/TJ,10477348.74459,kg +ad067f3d-2c9a-3ac8-9f64-cb09a3b173b6,SESCO,II.1.1,Tucuman,AR-T,annual,2013,gas oil combustion consumption by to the public,141.39471989999998,TJ,CH4,3.9,kg/TJ,551.4394076099999,kg +ad067f3d-2c9a-3ac8-9f64-cb09a3b173b6,SESCO,II.1.1,Tucuman,AR-T,annual,2013,gas oil combustion consumption by to the public,141.39471989999998,TJ,N2O,3.9,kg/TJ,551.4394076099999,kg +f360743b-4b97-3b00-b7be-68066a5c8c55,SESCO,II.1.1,Buenos Aires,AR-B,annual,2013,gas oil combustion consumption by to the public,2183.77588338,TJ,CO2,74100.0,kg/TJ,161817792.95845798,kg +a90dd020-edb2-3e6e-bbf9-cc64783e5e69,SESCO,II.1.1,Buenos Aires,AR-B,annual,2013,gas oil combustion consumption by to the public,2183.77588338,TJ,CH4,3.9,kg/TJ,8516.725945182,kg +a90dd020-edb2-3e6e-bbf9-cc64783e5e69,SESCO,II.1.1,Buenos Aires,AR-B,annual,2013,gas oil combustion consumption by to the public,2183.77588338,TJ,N2O,3.9,kg/TJ,8516.725945182,kg +ef8b224c-6b30-36c2-ab16-781eeb4edc69,SESCO,II.1.1,Capital Federal,AR-C,annual,2013,gas oil combustion consumption by to the public,319.67618071199996,TJ,CO2,74100.0,kg/TJ,23688004.990759198,kg +84aab921-62ad-305c-a432-2428e633a342,SESCO,II.1.1,Capital Federal,AR-C,annual,2013,gas oil combustion consumption by to the public,319.67618071199996,TJ,CH4,3.9,kg/TJ,1246.7371047768,kg +84aab921-62ad-305c-a432-2428e633a342,SESCO,II.1.1,Capital Federal,AR-C,annual,2013,gas oil combustion consumption by to the public,319.67618071199996,TJ,N2O,3.9,kg/TJ,1246.7371047768,kg +30661cba-f593-3275-b89c-4e22e650d8db,SESCO,II.1.1,Catamarca,AR-K,annual,2013,gas oil combustion consumption by to the public,99.56623924799999,TJ,CO2,74100.0,kg/TJ,7377858.328276799,kg +6412aee8-0fa1-3606-a523-5e9a9e7ae93e,SESCO,II.1.1,Catamarca,AR-K,annual,2013,gas oil combustion consumption by to the public,99.56623924799999,TJ,CH4,3.9,kg/TJ,388.30833306719995,kg +6412aee8-0fa1-3606-a523-5e9a9e7ae93e,SESCO,II.1.1,Catamarca,AR-K,annual,2013,gas oil combustion consumption by to the public,99.56623924799999,TJ,N2O,3.9,kg/TJ,388.30833306719995,kg +180ea312-1294-3dcd-a9c5-270f946a8986,SESCO,II.1.1,Chaco,AR-H,annual,2013,gas oil combustion consumption by to the public,88.223862132,TJ,CO2,74100.0,kg/TJ,6537388.1839812,kg +f023b9bf-8092-35ea-88a3-1da32bcb3d7a,SESCO,II.1.1,Chaco,AR-H,annual,2013,gas oil combustion consumption by to the public,88.223862132,TJ,CH4,3.9,kg/TJ,344.0730623148,kg +f023b9bf-8092-35ea-88a3-1da32bcb3d7a,SESCO,II.1.1,Chaco,AR-H,annual,2013,gas oil combustion consumption by to the public,88.223862132,TJ,N2O,3.9,kg/TJ,344.0730623148,kg +2f4a105b-0f3c-366d-b3a7-fa10cf9fd070,SESCO,II.1.1,Chubut,AR-U,annual,2013,gas oil combustion consumption by to the public,47.43554718,TJ,CO2,74100.0,kg/TJ,3514974.046038,kg +56896996-ff79-397c-91b8-ba1d4a6e0226,SESCO,II.1.1,Chubut,AR-U,annual,2013,gas oil combustion consumption by to the public,47.43554718,TJ,CH4,3.9,kg/TJ,184.998634002,kg +56896996-ff79-397c-91b8-ba1d4a6e0226,SESCO,II.1.1,Chubut,AR-U,annual,2013,gas oil combustion consumption by to the public,47.43554718,TJ,N2O,3.9,kg/TJ,184.998634002,kg +38ee6687-b895-3c87-9b18-205f1e92b24e,SESCO,II.1.1,Corrientes,AR-W,annual,2013,gas oil combustion consumption by to the public,66.34752768,TJ,CO2,74100.0,kg/TJ,4916351.801088,kg +8d888a44-f3c2-39bc-97ea-b19d5077f6a3,SESCO,II.1.1,Corrientes,AR-W,annual,2013,gas oil combustion consumption by to the public,66.34752768,TJ,CH4,3.9,kg/TJ,258.755357952,kg +8d888a44-f3c2-39bc-97ea-b19d5077f6a3,SESCO,II.1.1,Corrientes,AR-W,annual,2013,gas oil combustion consumption by to the public,66.34752768,TJ,N2O,3.9,kg/TJ,258.755357952,kg +e0f8e3a7-123a-3dce-8a4f-da652c87223b,SESCO,II.1.1,Córdoba,AR-X,annual,2013,gas oil combustion consumption by to the public,724.632096804,TJ,CO2,74100.0,kg/TJ,53695238.373176396,kg +4993f4d6-cf96-30c7-871c-5528c1b04b0a,SESCO,II.1.1,Córdoba,AR-X,annual,2013,gas oil combustion consumption by to the public,724.632096804,TJ,CH4,3.9,kg/TJ,2826.0651775355996,kg +4993f4d6-cf96-30c7-871c-5528c1b04b0a,SESCO,II.1.1,Córdoba,AR-X,annual,2013,gas oil combustion consumption by to the public,724.632096804,TJ,N2O,3.9,kg/TJ,2826.0651775355996,kg +c3bfa098-0ec0-34b5-824f-b7bfbcad3442,SESCO,II.1.1,Entre Rios,AR-E,annual,2013,gas oil combustion consumption by to the public,279.445898088,TJ,CO2,74100.0,kg/TJ,20706941.0483208,kg +9ec0f4f9-debe-3494-bbdf-23da8342009b,SESCO,II.1.1,Entre Rios,AR-E,annual,2013,gas oil combustion consumption by to the public,279.445898088,TJ,CH4,3.9,kg/TJ,1089.8390025432,kg +9ec0f4f9-debe-3494-bbdf-23da8342009b,SESCO,II.1.1,Entre Rios,AR-E,annual,2013,gas oil combustion consumption by to the public,279.445898088,TJ,N2O,3.9,kg/TJ,1089.8390025432,kg +0ba6a109-cd89-3563-9dbc-cddc5b7974dd,SESCO,II.1.1,Formosa,AR-P,annual,2013,gas oil combustion consumption by to the public,142.07128362,TJ,CO2,74100.0,kg/TJ,10527482.116242,kg +9b76bb39-953d-3446-988d-07234338eda1,SESCO,II.1.1,Formosa,AR-P,annual,2013,gas oil combustion consumption by to the public,142.07128362,TJ,CH4,3.9,kg/TJ,554.078006118,kg +9b76bb39-953d-3446-988d-07234338eda1,SESCO,II.1.1,Formosa,AR-P,annual,2013,gas oil combustion consumption by to the public,142.07128362,TJ,N2O,3.9,kg/TJ,554.078006118,kg +1ad3bac3-d6a5-3567-946c-1836ea00b55e,SESCO,II.1.1,Jujuy,AR-Y,annual,2013,gas oil combustion consumption by to the public,22.795364508,TJ,CO2,74100.0,kg/TJ,1689136.5100427999,kg +726a2ced-de47-3682-986a-7b7e509e4e43,SESCO,II.1.1,Jujuy,AR-Y,annual,2013,gas oil combustion consumption by to the public,22.795364508,TJ,CH4,3.9,kg/TJ,88.9019215812,kg +726a2ced-de47-3682-986a-7b7e509e4e43,SESCO,II.1.1,Jujuy,AR-Y,annual,2013,gas oil combustion consumption by to the public,22.795364508,TJ,N2O,3.9,kg/TJ,88.9019215812,kg +b87d3224-dcc3-3476-9c3c-5e2692dd02f5,SESCO,II.1.1,La Pampa,AR-L,annual,2013,gas oil combustion consumption by to the public,59.676582672,TJ,CO2,74100.0,kg/TJ,4422034.7759952005,kg +6a5289c1-acf1-375e-8a40-82532dc04151,SESCO,II.1.1,La Pampa,AR-L,annual,2013,gas oil combustion consumption by to the public,59.676582672,TJ,CH4,3.9,kg/TJ,232.73867242080001,kg +6a5289c1-acf1-375e-8a40-82532dc04151,SESCO,II.1.1,La Pampa,AR-L,annual,2013,gas oil combustion consumption by to the public,59.676582672,TJ,N2O,3.9,kg/TJ,232.73867242080001,kg +8097d9ac-540e-3b75-b3b8-cd9a8c17a2ed,SESCO,II.1.1,La Rioja,AR-F,annual,2013,gas oil combustion consumption by to the public,46.37939838,TJ,CO2,74100.0,kg/TJ,3436713.4199579996,kg +9325639e-cd4c-33ff-9586-60c99d1438eb,SESCO,II.1.1,La Rioja,AR-F,annual,2013,gas oil combustion consumption by to the public,46.37939838,TJ,CH4,3.9,kg/TJ,180.879653682,kg +9325639e-cd4c-33ff-9586-60c99d1438eb,SESCO,II.1.1,La Rioja,AR-F,annual,2013,gas oil combustion consumption by to the public,46.37939838,TJ,N2O,3.9,kg/TJ,180.879653682,kg +ed45c8e7-6be7-3b99-8072-14ab2923e026,SESCO,II.1.1,Mendoza,AR-M,annual,2013,gas oil combustion consumption by to the public,139.90568012399999,TJ,CO2,74100.0,kg/TJ,10367010.897188399,kg +f540e809-cbaf-3fbf-947b-01899f22d16b,SESCO,II.1.1,Mendoza,AR-M,annual,2013,gas oil combustion consumption by to the public,139.90568012399999,TJ,CH4,3.9,kg/TJ,545.6321524836,kg +f540e809-cbaf-3fbf-947b-01899f22d16b,SESCO,II.1.1,Mendoza,AR-M,annual,2013,gas oil combustion consumption by to the public,139.90568012399999,TJ,N2O,3.9,kg/TJ,545.6321524836,kg +2ed18f2f-21df-314f-8e29-da44538b9620,SESCO,II.1.1,Misiones,AR-N,annual,2013,gas oil combustion consumption by to the public,146.38294608,TJ,CO2,74100.0,kg/TJ,10846976.304528002,kg +ec1ef50d-a69e-3153-9736-417ab1fa1ad7,SESCO,II.1.1,Misiones,AR-N,annual,2013,gas oil combustion consumption by to the public,146.38294608,TJ,CH4,3.9,kg/TJ,570.893489712,kg +ec1ef50d-a69e-3153-9736-417ab1fa1ad7,SESCO,II.1.1,Misiones,AR-N,annual,2013,gas oil combustion consumption by to the public,146.38294608,TJ,N2O,3.9,kg/TJ,570.893489712,kg +02aa1f6f-522f-34f8-ba5f-d7d99a3bc497,SESCO,II.1.1,Neuquén,AR-Q,annual,2013,gas oil combustion consumption by to the public,113.16325927199999,TJ,CO2,74100.0,kg/TJ,8385397.5120552,kg +c26f1f09-1cb0-3153-98e8-dd5eadbbc5dc,SESCO,II.1.1,Neuquén,AR-Q,annual,2013,gas oil combustion consumption by to the public,113.16325927199999,TJ,CH4,3.9,kg/TJ,441.33671116079995,kg +c26f1f09-1cb0-3153-98e8-dd5eadbbc5dc,SESCO,II.1.1,Neuquén,AR-Q,annual,2013,gas oil combustion consumption by to the public,113.16325927199999,TJ,N2O,3.9,kg/TJ,441.33671116079995,kg +633fd1b2-d986-38dc-8cbf-4a074bdbfd9f,SESCO,II.1.1,Rio Negro,AR-R,annual,2013,gas oil combustion consumption by to the public,175.434861672,TJ,CO2,74100.0,kg/TJ,12999723.2498952,kg +ec97181f-dc9f-3129-a6b9-1c509379d1d2,SESCO,II.1.1,Rio Negro,AR-R,annual,2013,gas oil combustion consumption by to the public,175.434861672,TJ,CH4,3.9,kg/TJ,684.1959605208,kg +ec97181f-dc9f-3129-a6b9-1c509379d1d2,SESCO,II.1.1,Rio Negro,AR-R,annual,2013,gas oil combustion consumption by to the public,175.434861672,TJ,N2O,3.9,kg/TJ,684.1959605208,kg +83865607-d02e-30b6-9d95-9a045ae54ad5,SESCO,II.1.1,Salta,AR-A,annual,2013,gas oil combustion consumption by to the public,16.00686696,TJ,CO2,74100.0,kg/TJ,1186108.841736,kg +a2a5e24c-9996-361c-b8e0-3982aae74c88,SESCO,II.1.1,Salta,AR-A,annual,2013,gas oil combustion consumption by to the public,16.00686696,TJ,CH4,3.9,kg/TJ,62.426781143999996,kg +a2a5e24c-9996-361c-b8e0-3982aae74c88,SESCO,II.1.1,Salta,AR-A,annual,2013,gas oil combustion consumption by to the public,16.00686696,TJ,N2O,3.9,kg/TJ,62.426781143999996,kg +e473da3f-ee16-3e16-94ce-cb319fbe38f0,SESCO,II.1.1,San Juan,AR-J,annual,2013,gas oil combustion consumption by to the public,79.79485919999999,TJ,CO2,74100.0,kg/TJ,5912799.06672,kg +db4a6d3e-d1fd-3562-91c3-4ccd69a965a8,SESCO,II.1.1,San Juan,AR-J,annual,2013,gas oil combustion consumption by to the public,79.79485919999999,TJ,CH4,3.9,kg/TJ,311.19995087999996,kg +db4a6d3e-d1fd-3562-91c3-4ccd69a965a8,SESCO,II.1.1,San Juan,AR-J,annual,2013,gas oil combustion consumption by to the public,79.79485919999999,TJ,N2O,3.9,kg/TJ,311.19995087999996,kg +2e188bc7-3cf5-34d6-a5a1-9b920ae8f2f8,SESCO,II.1.1,San Luis,AR-D,annual,2013,gas oil combustion consumption by to the public,120.35009179199999,TJ,CO2,74100.0,kg/TJ,8917941.8017872,kg +70672165-3230-3de1-a77a-578d789da085,SESCO,II.1.1,San Luis,AR-D,annual,2013,gas oil combustion consumption by to the public,120.35009179199999,TJ,CH4,3.9,kg/TJ,469.36535798879993,kg +70672165-3230-3de1-a77a-578d789da085,SESCO,II.1.1,San Luis,AR-D,annual,2013,gas oil combustion consumption by to the public,120.35009179199999,TJ,N2O,3.9,kg/TJ,469.36535798879993,kg +c621bb0c-4893-3228-8341-4a9b2aeb8840,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2013,gas oil combustion consumption by to the public,60.336404771999995,TJ,CO2,74100.0,kg/TJ,4470927.5936052,kg +c28eadf8-15a6-361d-9f62-71d6f081dc40,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2013,gas oil combustion consumption by to the public,60.336404771999995,TJ,CH4,3.9,kg/TJ,235.31197861079997,kg +c28eadf8-15a6-361d-9f62-71d6f081dc40,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2013,gas oil combustion consumption by to the public,60.336404771999995,TJ,N2O,3.9,kg/TJ,235.31197861079997,kg +0c0229c9-7809-3916-b696-c04fd4bb4702,SESCO,II.1.1,Santa Fe,AR-S,annual,2013,gas oil combustion consumption by to the public,583.13507784,TJ,CO2,74100.0,kg/TJ,43210309.267944,kg +7ad34abb-0ab3-3c4a-9a20-472f870905bc,SESCO,II.1.1,Santa Fe,AR-S,annual,2013,gas oil combustion consumption by to the public,583.13507784,TJ,CH4,3.9,kg/TJ,2274.226803576,kg +7ad34abb-0ab3-3c4a-9a20-472f870905bc,SESCO,II.1.1,Santa Fe,AR-S,annual,2013,gas oil combustion consumption by to the public,583.13507784,TJ,N2O,3.9,kg/TJ,2274.226803576,kg +5d896944-5460-3687-a36d-19239d4b2e87,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2013,gas oil combustion consumption by to the public,96.37867453199999,TJ,CO2,74100.0,kg/TJ,7141659.782821199,kg +c6ab8fdd-4d4f-362f-84be-4dc55fb7dbae,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2013,gas oil combustion consumption by to the public,96.37867453199999,TJ,CH4,3.9,kg/TJ,375.8768306748,kg +c6ab8fdd-4d4f-362f-84be-4dc55fb7dbae,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2013,gas oil combustion consumption by to the public,96.37867453199999,TJ,N2O,3.9,kg/TJ,375.8768306748,kg +1e4ed8a2-b80e-33e5-b448-e53f0f2114ac,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2013,gas oil combustion consumption by to the public,46.1779752,TJ,CO2,74100.0,kg/TJ,3421787.96232,kg +9bc341d1-0f82-33af-a96b-8a823958ab0a,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2013,gas oil combustion consumption by to the public,46.1779752,TJ,CH4,3.9,kg/TJ,180.09410327999998,kg +9bc341d1-0f82-33af-a96b-8a823958ab0a,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2013,gas oil combustion consumption by to the public,46.1779752,TJ,N2O,3.9,kg/TJ,180.09410327999998,kg +11956d74-5723-3ddd-9023-c7220c57f9d3,SESCO,II.1.1,Tucuman,AR-T,annual,2013,gas oil combustion consumption by to the public,36.37284,TJ,CO2,74100.0,kg/TJ,2695227.4439999997,kg +4d0aa7c4-5fc8-3713-a6a6-834047e7d613,SESCO,II.1.1,Tucuman,AR-T,annual,2013,gas oil combustion consumption by to the public,36.37284,TJ,CH4,3.9,kg/TJ,141.854076,kg +4d0aa7c4-5fc8-3713-a6a6-834047e7d613,SESCO,II.1.1,Tucuman,AR-T,annual,2013,gas oil combustion consumption by to the public,36.37284,TJ,N2O,3.9,kg/TJ,141.854076,kg +b84ab46f-e128-34de-b258-3ac82ad7ba2c,SESCO,II.1.1,Buenos Aires,AR-B,annual,2013,jet kerosene combustion consumption by to the public,10.990936319999998,TJ,CO2,71500.0,kg/TJ,785851.9468799998,kg +a150de83-5960-3f01-8159-19d88cb432a6,SESCO,II.1.1,Buenos Aires,AR-B,annual,2013,jet kerosene combustion consumption by to the public,10.990936319999998,TJ,CH4,0.5,kg/TJ,5.495468159999999,kg +df645560-8237-3608-a2f4-b901549c49ae,SESCO,II.1.1,Buenos Aires,AR-B,annual,2013,jet kerosene combustion consumption by to the public,10.990936319999998,TJ,N2O,2.0,kg/TJ,21.981872639999995,kg +0407635d-573f-3560-9415-d8a9fdeae744,SESCO,II.1.1,Córdoba,AR-X,annual,2013,jet kerosene combustion consumption by to the public,3.5727462699999997,TJ,CO2,71500.0,kg/TJ,255451.35830499997,kg +dad00149-ae6f-3cdb-b63c-3ea8fdab6044,SESCO,II.1.1,Córdoba,AR-X,annual,2013,jet kerosene combustion consumption by to the public,3.5727462699999997,TJ,CH4,0.5,kg/TJ,1.7863731349999998,kg +99e76940-a43c-38a3-b53f-7dec565e3092,SESCO,II.1.1,Córdoba,AR-X,annual,2013,jet kerosene combustion consumption by to the public,3.5727462699999997,TJ,N2O,2.0,kg/TJ,7.145492539999999,kg +089f035a-657b-30fd-8c1e-bdc97ae6ff3d,SESCO,II.1.1,Entre Rios,AR-E,annual,2013,jet kerosene combustion consumption by to the public,3.0128828699999994,TJ,CO2,71500.0,kg/TJ,215421.12520499996,kg +8915bf16-bb8c-3a76-8a0e-da6fde58f24a,SESCO,II.1.1,Entre Rios,AR-E,annual,2013,jet kerosene combustion consumption by to the public,3.0128828699999994,TJ,CH4,0.5,kg/TJ,1.5064414349999997,kg +7edd8545-1aed-358c-b759-2fc75a799115,SESCO,II.1.1,Entre Rios,AR-E,annual,2013,jet kerosene combustion consumption by to the public,3.0128828699999994,TJ,N2O,2.0,kg/TJ,6.025765739999999,kg +14adb0db-3d30-3a2b-bf5d-674a5c9401e3,SESCO,II.1.1,Misiones,AR-N,annual,2013,jet kerosene combustion consumption by to the public,0.9124515299999999,TJ,CO2,71500.0,kg/TJ,65240.284394999995,kg +c5a56613-0cf0-30b0-8235-eaf91edee901,SESCO,II.1.1,Misiones,AR-N,annual,2013,jet kerosene combustion consumption by to the public,0.9124515299999999,TJ,CH4,0.5,kg/TJ,0.45622576499999995,kg +d3adc075-74f0-3ddf-ad7c-99a6dd28d455,SESCO,II.1.1,Misiones,AR-N,annual,2013,jet kerosene combustion consumption by to the public,0.9124515299999999,TJ,N2O,2.0,kg/TJ,1.8249030599999998,kg +e6a8e062-e730-3c94-9d79-6a5cf725db43,SESCO,II.1.1,Santa Fe,AR-S,annual,2013,jet kerosene combustion consumption by to the public,6.30978633,TJ,CO2,71500.0,kg/TJ,451149.722595,kg +a4181cf2-6a54-3083-a688-c88a505f3992,SESCO,II.1.1,Santa Fe,AR-S,annual,2013,jet kerosene combustion consumption by to the public,6.30978633,TJ,CH4,0.5,kg/TJ,3.154893165,kg +914532c6-4b5d-3505-b27f-78c8555cc1ce,SESCO,II.1.1,Santa Fe,AR-S,annual,2013,jet kerosene combustion consumption by to the public,6.30978633,TJ,N2O,2.0,kg/TJ,12.61957266,kg +746f3220-0658-375b-965b-3701f96069c5,SESCO,I.3.1,Buenos Aires,AR-B,annual,2013,gasoline combustion consumption by petrochemical industries,69.88812300000001,TJ,CO2,69300.0,kg/TJ,4843246.923900001,kg +c967105d-e6db-3450-bff6-4c445cef9df3,SESCO,I.3.1,Buenos Aires,AR-B,annual,2013,gasoline combustion consumption by petrochemical industries,69.88812300000001,TJ,CH4,33.0,kg/TJ,2306.3080590000004,kg +f071108e-7e72-3894-9e55-4aaafbfe9125,SESCO,I.3.1,Buenos Aires,AR-B,annual,2013,gasoline combustion consumption by petrochemical industries,69.88812300000001,TJ,N2O,3.2,kg/TJ,223.64199360000003,kg +c97e21ae-5372-328b-bc99-93861368c70c,SESCO,I.3.1,Buenos Aires,AR-B,annual,2013,gas oil combustion consumption by petrochemical industries,11.95572,TJ,CO2,74100.0,kg/TJ,885918.852,kg +6222fc29-0ca7-32e5-877a-ca414fbc8eb8,SESCO,I.3.1,Buenos Aires,AR-B,annual,2013,gas oil combustion consumption by petrochemical industries,11.95572,TJ,CH4,3.9,kg/TJ,46.627308,kg +6222fc29-0ca7-32e5-877a-ca414fbc8eb8,SESCO,I.3.1,Buenos Aires,AR-B,annual,2013,gas oil combustion consumption by petrochemical industries,11.95572,TJ,N2O,3.9,kg/TJ,46.627308,kg +ba3a4b67-855b-3723-8189-0f92c1a118f3,SESCO,I.3.1,Buenos Aires,AR-B,annual,2013,gas oil combustion consumption by petrochemical industries,4.04544,TJ,CO2,74100.0,kg/TJ,299767.104,kg +83ab80a2-049d-3f6c-99ef-17450c5ecb55,SESCO,I.3.1,Buenos Aires,AR-B,annual,2013,gas oil combustion consumption by petrochemical industries,4.04544,TJ,CH4,3.9,kg/TJ,15.777216000000001,kg +83ab80a2-049d-3f6c-99ef-17450c5ecb55,SESCO,I.3.1,Buenos Aires,AR-B,annual,2013,gas oil combustion consumption by petrochemical industries,4.04544,TJ,N2O,3.9,kg/TJ,15.777216000000001,kg +ce00d195-0c03-35a6-b6b0-63754acfd661,SESCO,II.2.1,Buenos Aires,AR-B,annual,2013,gas oil combustion consumption by railway transport,27.12612,TJ,CO2,74100.0,kg/TJ,2010045.492,kg +e5e79b07-7136-3739-bb86-7e9bf9eb047d,SESCO,II.2.1,Buenos Aires,AR-B,annual,2013,gas oil combustion consumption by railway transport,27.12612,TJ,CH4,3.9,kg/TJ,105.791868,kg +e5e79b07-7136-3739-bb86-7e9bf9eb047d,SESCO,II.2.1,Buenos Aires,AR-B,annual,2013,gas oil combustion consumption by railway transport,27.12612,TJ,N2O,3.9,kg/TJ,105.791868,kg +06087d13-9db0-342f-b420-c2eb377c4e63,SESCO,II.2.1,Capital Federal,AR-C,annual,2013,gas oil combustion consumption by railway transport,0.75852,TJ,CO2,74100.0,kg/TJ,56206.331999999995,kg +30883a31-1d68-3863-9f27-ee145973d778,SESCO,II.2.1,Capital Federal,AR-C,annual,2013,gas oil combustion consumption by railway transport,0.75852,TJ,CH4,3.9,kg/TJ,2.9582279999999996,kg +30883a31-1d68-3863-9f27-ee145973d778,SESCO,II.2.1,Capital Federal,AR-C,annual,2013,gas oil combustion consumption by railway transport,0.75852,TJ,N2O,3.9,kg/TJ,2.9582279999999996,kg +ea6a50a3-794e-31cb-a522-c911809f08d6,SESCO,II.2.1,Córdoba,AR-X,annual,2013,gas oil combustion consumption by railway transport,1.072764,TJ,CO2,74100.0,kg/TJ,79491.81240000001,kg +6ea9f494-a802-3a59-8d5b-00769a555ea9,SESCO,II.2.1,Córdoba,AR-X,annual,2013,gas oil combustion consumption by railway transport,1.072764,TJ,CH4,3.9,kg/TJ,4.1837796,kg +6ea9f494-a802-3a59-8d5b-00769a555ea9,SESCO,II.2.1,Córdoba,AR-X,annual,2013,gas oil combustion consumption by railway transport,1.072764,TJ,N2O,3.9,kg/TJ,4.1837796,kg +402c3c4f-e198-3cca-affd-9b1e3a8d0aca,SESCO,II.1.1,Buenos Aires,AR-B,annual,2013,gas oil combustion consumption by freight transport,1617.4546836,TJ,CO2,74100.0,kg/TJ,119853392.05476,kg +f99d64fe-f17f-39c7-ba1f-1f1243f2a533,SESCO,II.1.1,Buenos Aires,AR-B,annual,2013,gas oil combustion consumption by freight transport,1617.4546836,TJ,CH4,3.9,kg/TJ,6308.07326604,kg +f99d64fe-f17f-39c7-ba1f-1f1243f2a533,SESCO,II.1.1,Buenos Aires,AR-B,annual,2013,gas oil combustion consumption by freight transport,1617.4546836,TJ,N2O,3.9,kg/TJ,6308.07326604,kg +d9435cb1-8f12-3a37-b871-3248208382e8,SESCO,II.1.1,Capital Federal,AR-C,annual,2013,gas oil combustion consumption by freight transport,734.4619127999999,TJ,CO2,74100.0,kg/TJ,54423627.738479994,kg +0ced35e3-cfe2-3ce2-b64e-b50b2f9b6cd4,SESCO,II.1.1,Capital Federal,AR-C,annual,2013,gas oil combustion consumption by freight transport,734.4619127999999,TJ,CH4,3.9,kg/TJ,2864.4014599199995,kg +0ced35e3-cfe2-3ce2-b64e-b50b2f9b6cd4,SESCO,II.1.1,Capital Federal,AR-C,annual,2013,gas oil combustion consumption by freight transport,734.4619127999999,TJ,N2O,3.9,kg/TJ,2864.4014599199995,kg +811527fa-705b-3e46-b4d1-aab4240b245a,SESCO,II.1.1,Chaco,AR-H,annual,2013,gas oil combustion consumption by freight transport,111.525672384,TJ,CO2,74100.0,kg/TJ,8264052.3236544,kg +a5816ffd-0796-376e-b8b1-ba759ec7bba5,SESCO,II.1.1,Chaco,AR-H,annual,2013,gas oil combustion consumption by freight transport,111.525672384,TJ,CH4,3.9,kg/TJ,434.9501222976,kg +a5816ffd-0796-376e-b8b1-ba759ec7bba5,SESCO,II.1.1,Chaco,AR-H,annual,2013,gas oil combustion consumption by freight transport,111.525672384,TJ,N2O,3.9,kg/TJ,434.9501222976,kg +4066843c-d913-3f91-954e-deaa2d58f202,SESCO,II.1.1,Chubut,AR-U,annual,2013,gas oil combustion consumption by freight transport,2.875249524,TJ,CO2,74100.0,kg/TJ,213055.9897284,kg +bcaf36d0-e6df-30c9-905f-027923932e43,SESCO,II.1.1,Chubut,AR-U,annual,2013,gas oil combustion consumption by freight transport,2.875249524,TJ,CH4,3.9,kg/TJ,11.2134731436,kg +bcaf36d0-e6df-30c9-905f-027923932e43,SESCO,II.1.1,Chubut,AR-U,annual,2013,gas oil combustion consumption by freight transport,2.875249524,TJ,N2O,3.9,kg/TJ,11.2134731436,kg +24c8891b-dbef-351d-92e4-c4cbad9dff64,SESCO,II.1.1,Corrientes,AR-W,annual,2013,gas oil combustion consumption by freight transport,139.498470468,TJ,CO2,74100.0,kg/TJ,10336836.6616788,kg +94cbe06a-bbea-3b10-bcbf-978e2027754c,SESCO,II.1.1,Corrientes,AR-W,annual,2013,gas oil combustion consumption by freight transport,139.498470468,TJ,CH4,3.9,kg/TJ,544.0440348252,kg +94cbe06a-bbea-3b10-bcbf-978e2027754c,SESCO,II.1.1,Corrientes,AR-W,annual,2013,gas oil combustion consumption by freight transport,139.498470468,TJ,N2O,3.9,kg/TJ,544.0440348252,kg +6c3a8fda-5067-3b04-a9c4-c43b9459415f,SESCO,II.1.1,Córdoba,AR-X,annual,2013,gas oil combustion consumption by freight transport,223.137588492,TJ,CO2,74100.0,kg/TJ,16534495.3072572,kg +c26f7b39-2cca-3411-bb9c-1db5f1e9286d,SESCO,II.1.1,Córdoba,AR-X,annual,2013,gas oil combustion consumption by freight transport,223.137588492,TJ,CH4,3.9,kg/TJ,870.2365951188,kg +c26f7b39-2cca-3411-bb9c-1db5f1e9286d,SESCO,II.1.1,Córdoba,AR-X,annual,2013,gas oil combustion consumption by freight transport,223.137588492,TJ,N2O,3.9,kg/TJ,870.2365951188,kg +23b39f9f-f89d-3d75-aa1a-a0b011bd45a8,SESCO,II.1.1,Entre Rios,AR-E,annual,2013,gas oil combustion consumption by freight transport,61.537123872,TJ,CO2,74100.0,kg/TJ,4559900.8789152,kg +a1b07fe1-f7b1-35e4-998d-ed353278261a,SESCO,II.1.1,Entre Rios,AR-E,annual,2013,gas oil combustion consumption by freight transport,61.537123872,TJ,CH4,3.9,kg/TJ,239.9947831008,kg +a1b07fe1-f7b1-35e4-998d-ed353278261a,SESCO,II.1.1,Entre Rios,AR-E,annual,2013,gas oil combustion consumption by freight transport,61.537123872,TJ,N2O,3.9,kg/TJ,239.9947831008,kg +1c86f950-8b23-3c80-a531-da41ce0254db,SESCO,II.1.1,La Pampa,AR-L,annual,2013,gas oil combustion consumption by freight transport,8.211932568,TJ,CO2,74100.0,kg/TJ,608504.2032888,kg +150909e3-54b7-3b4a-8a50-e53f039c54bf,SESCO,II.1.1,La Pampa,AR-L,annual,2013,gas oil combustion consumption by freight transport,8.211932568,TJ,CH4,3.9,kg/TJ,32.0265370152,kg +150909e3-54b7-3b4a-8a50-e53f039c54bf,SESCO,II.1.1,La Pampa,AR-L,annual,2013,gas oil combustion consumption by freight transport,8.211932568,TJ,N2O,3.9,kg/TJ,32.0265370152,kg +00229041-212d-3226-994b-4637cc53c6cb,SESCO,II.1.1,Mendoza,AR-M,annual,2013,gas oil combustion consumption by freight transport,59.668238952,TJ,CO2,74100.0,kg/TJ,4421416.5063432,kg +f6f27fbc-39e9-3b60-bfad-08697ff7c040,SESCO,II.1.1,Mendoza,AR-M,annual,2013,gas oil combustion consumption by freight transport,59.668238952,TJ,CH4,3.9,kg/TJ,232.7061319128,kg +f6f27fbc-39e9-3b60-bfad-08697ff7c040,SESCO,II.1.1,Mendoza,AR-M,annual,2013,gas oil combustion consumption by freight transport,59.668238952,TJ,N2O,3.9,kg/TJ,232.7061319128,kg +5e13c4a6-2814-3b92-abf4-c89bc3b8e8a8,SESCO,II.1.1,Misiones,AR-N,annual,2013,gas oil combustion consumption by freight transport,42.809875500000004,TJ,CO2,74100.0,kg/TJ,3172211.77455,kg +067a95cc-de58-36e8-b78a-808569f3bf61,SESCO,II.1.1,Misiones,AR-N,annual,2013,gas oil combustion consumption by freight transport,42.809875500000004,TJ,CH4,3.9,kg/TJ,166.95851445000002,kg +067a95cc-de58-36e8-b78a-808569f3bf61,SESCO,II.1.1,Misiones,AR-N,annual,2013,gas oil combustion consumption by freight transport,42.809875500000004,TJ,N2O,3.9,kg/TJ,166.95851445000002,kg +1d688e26-a8f9-39b6-919a-40b42f28315d,SESCO,II.1.1,Rio Negro,AR-R,annual,2013,gas oil combustion consumption by freight transport,0.025284,TJ,CO2,74100.0,kg/TJ,1873.5444,kg +a2ef33fc-3f19-33fb-9033-10926def9d09,SESCO,II.1.1,Rio Negro,AR-R,annual,2013,gas oil combustion consumption by freight transport,0.025284,TJ,CH4,3.9,kg/TJ,0.0986076,kg +a2ef33fc-3f19-33fb-9033-10926def9d09,SESCO,II.1.1,Rio Negro,AR-R,annual,2013,gas oil combustion consumption by freight transport,0.025284,TJ,N2O,3.9,kg/TJ,0.0986076,kg +ecfb860f-b21e-34bb-9d54-a4eb2b30209a,SESCO,II.1.1,Salta,AR-A,annual,2013,gas oil combustion consumption by freight transport,1.0175003999999999,TJ,CO2,74100.0,kg/TJ,75396.77964,kg +04f8c793-e3bf-37ba-95b4-9d111ea1d305,SESCO,II.1.1,Salta,AR-A,annual,2013,gas oil combustion consumption by freight transport,1.0175003999999999,TJ,CH4,3.9,kg/TJ,3.9682515599999992,kg +04f8c793-e3bf-37ba-95b4-9d111ea1d305,SESCO,II.1.1,Salta,AR-A,annual,2013,gas oil combustion consumption by freight transport,1.0175003999999999,TJ,N2O,3.9,kg/TJ,3.9682515599999992,kg +53a19b94-d561-315f-8986-9bca2aefb8e0,SESCO,II.1.1,San Juan,AR-J,annual,2013,gas oil combustion consumption by freight transport,3.020820348,TJ,CO2,74100.0,kg/TJ,223842.7877868,kg +d6c5c2c1-50bc-3481-aa55-724bc68170da,SESCO,II.1.1,San Juan,AR-J,annual,2013,gas oil combustion consumption by freight transport,3.020820348,TJ,CH4,3.9,kg/TJ,11.7811993572,kg +d6c5c2c1-50bc-3481-aa55-724bc68170da,SESCO,II.1.1,San Juan,AR-J,annual,2013,gas oil combustion consumption by freight transport,3.020820348,TJ,N2O,3.9,kg/TJ,11.7811993572,kg +e3bbada2-aa0f-32ea-b69e-315663f464d2,SESCO,II.1.1,San Luis,AR-D,annual,2013,gas oil combustion consumption by freight transport,56.784613199999995,TJ,CO2,74100.0,kg/TJ,4207739.8381199995,kg +810ce514-9ba6-3ceb-9887-91b87aa40251,SESCO,II.1.1,San Luis,AR-D,annual,2013,gas oil combustion consumption by freight transport,56.784613199999995,TJ,CH4,3.9,kg/TJ,221.45999147999999,kg +810ce514-9ba6-3ceb-9887-91b87aa40251,SESCO,II.1.1,San Luis,AR-D,annual,2013,gas oil combustion consumption by freight transport,56.784613199999995,TJ,N2O,3.9,kg/TJ,221.45999147999999,kg +f7cf9bdc-db96-3557-a7e7-76174a691de5,SESCO,II.1.1,Santa Fe,AR-S,annual,2013,gas oil combustion consumption by freight transport,417.39807135599995,TJ,CO2,74100.0,kg/TJ,30929197.087479595,kg +032c0863-dc94-3ef1-87e0-7db8729c2af6,SESCO,II.1.1,Santa Fe,AR-S,annual,2013,gas oil combustion consumption by freight transport,417.39807135599995,TJ,CH4,3.9,kg/TJ,1627.8524782883997,kg +032c0863-dc94-3ef1-87e0-7db8729c2af6,SESCO,II.1.1,Santa Fe,AR-S,annual,2013,gas oil combustion consumption by freight transport,417.39807135599995,TJ,N2O,3.9,kg/TJ,1627.8524782883997,kg +3ae445a6-f478-3dac-ad09-87a9c33698b3,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2013,gas oil combustion consumption by freight transport,2.706027324,TJ,CO2,74100.0,kg/TJ,200516.6247084,kg +b81a2279-c4cf-37d4-a74b-cf04053268f7,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2013,gas oil combustion consumption by freight transport,2.706027324,TJ,CH4,3.9,kg/TJ,10.5535065636,kg +b81a2279-c4cf-37d4-a74b-cf04053268f7,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2013,gas oil combustion consumption by freight transport,2.706027324,TJ,N2O,3.9,kg/TJ,10.5535065636,kg +407fc896-4b29-33f4-bf8a-1806d92d9422,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2013,gas oil combustion consumption by freight transport,13.586812512,TJ,CO2,74100.0,kg/TJ,1006782.8071392,kg +23656fbd-24c1-3217-ba7c-41418ff3d6e9,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2013,gas oil combustion consumption by freight transport,13.586812512,TJ,CH4,3.9,kg/TJ,52.988568796799996,kg +23656fbd-24c1-3217-ba7c-41418ff3d6e9,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2013,gas oil combustion consumption by freight transport,13.586812512,TJ,N2O,3.9,kg/TJ,52.988568796799996,kg +34a445c7-2097-34fd-8fab-00fdbd9adc9e,SESCO,II.1.1,Tucuman,AR-T,annual,2013,gas oil combustion consumption by freight transport,68.819522688,TJ,CO2,74100.0,kg/TJ,5099526.6311808005,kg +97427e90-8948-3dca-bf46-8e031ec992fc,SESCO,II.1.1,Tucuman,AR-T,annual,2013,gas oil combustion consumption by freight transport,68.819522688,TJ,CH4,3.9,kg/TJ,268.3961384832,kg +97427e90-8948-3dca-bf46-8e031ec992fc,SESCO,II.1.1,Tucuman,AR-T,annual,2013,gas oil combustion consumption by freight transport,68.819522688,TJ,N2O,3.9,kg/TJ,268.3961384832,kg +0a03798a-2049-3db9-adf1-ad57ae0abd17,SESCO,II.1.1,Buenos Aires,AR-B,annual,2013,gas oil combustion consumption by freight transport,30.6254256,TJ,CO2,74100.0,kg/TJ,2269344.03696,kg +9c8c8f27-f098-361c-8069-2529fdb2b544,SESCO,II.1.1,Buenos Aires,AR-B,annual,2013,gas oil combustion consumption by freight transport,30.6254256,TJ,CH4,3.9,kg/TJ,119.43915984,kg +9c8c8f27-f098-361c-8069-2529fdb2b544,SESCO,II.1.1,Buenos Aires,AR-B,annual,2013,gas oil combustion consumption by freight transport,30.6254256,TJ,N2O,3.9,kg/TJ,119.43915984,kg +9cb3d895-5cc5-3f1a-bfcb-ed4fc95a5589,SESCO,II.1.1,Capital Federal,AR-C,annual,2013,gas oil combustion consumption by freight transport,31.5988596,TJ,CO2,74100.0,kg/TJ,2341475.49636,kg +2d7b4d34-3668-3994-858f-0643f25d0d74,SESCO,II.1.1,Capital Federal,AR-C,annual,2013,gas oil combustion consumption by freight transport,31.5988596,TJ,CH4,3.9,kg/TJ,123.23555244,kg +2d7b4d34-3668-3994-858f-0643f25d0d74,SESCO,II.1.1,Capital Federal,AR-C,annual,2013,gas oil combustion consumption by freight transport,31.5988596,TJ,N2O,3.9,kg/TJ,123.23555244,kg +7319f218-2a71-3825-8301-47b5139528ca,SESCO,II.1.1,Chaco,AR-H,annual,2013,gas oil combustion consumption by freight transport,0.7901394479999999,TJ,CO2,74100.0,kg/TJ,58549.333096799994,kg +8ccada2b-6a40-33da-b73b-470b511a3cb8,SESCO,II.1.1,Chaco,AR-H,annual,2013,gas oil combustion consumption by freight transport,0.7901394479999999,TJ,CH4,3.9,kg/TJ,3.0815438471999994,kg +8ccada2b-6a40-33da-b73b-470b511a3cb8,SESCO,II.1.1,Chaco,AR-H,annual,2013,gas oil combustion consumption by freight transport,0.7901394479999999,TJ,N2O,3.9,kg/TJ,3.0815438471999994,kg +afff09b1-df9c-3352-ad70-6a9f7d3282f8,SESCO,II.1.1,Chubut,AR-U,annual,2013,gas oil combustion consumption by freight transport,0.082126044,TJ,CO2,74100.0,kg/TJ,6085.539860399999,kg +38bf3cae-168d-34a7-9627-9f094e139e15,SESCO,II.1.1,Chubut,AR-U,annual,2013,gas oil combustion consumption by freight transport,0.082126044,TJ,CH4,3.9,kg/TJ,0.3202915716,kg +38bf3cae-168d-34a7-9627-9f094e139e15,SESCO,II.1.1,Chubut,AR-U,annual,2013,gas oil combustion consumption by freight transport,0.082126044,TJ,N2O,3.9,kg/TJ,0.3202915716,kg +225859e8-2b79-30d2-9a76-3c9f21c77710,SESCO,II.1.1,Corrientes,AR-W,annual,2013,gas oil combustion consumption by freight transport,3.3368089440000004,TJ,CO2,74100.0,kg/TJ,247257.54275040003,kg +9a82e932-cf22-3501-a94f-e6edef1b369f,SESCO,II.1.1,Corrientes,AR-W,annual,2013,gas oil combustion consumption by freight transport,3.3368089440000004,TJ,CH4,3.9,kg/TJ,13.013554881600001,kg +9a82e932-cf22-3501-a94f-e6edef1b369f,SESCO,II.1.1,Corrientes,AR-W,annual,2013,gas oil combustion consumption by freight transport,3.3368089440000004,TJ,N2O,3.9,kg/TJ,13.013554881600001,kg +ba09887f-7d56-33f1-bbf9-e1b734588c2f,SESCO,II.1.1,Córdoba,AR-X,annual,2013,gas oil combustion consumption by freight transport,1.014491604,TJ,CO2,74100.0,kg/TJ,75173.8278564,kg +121209fe-8f46-3132-99f0-6030425937d0,SESCO,II.1.1,Córdoba,AR-X,annual,2013,gas oil combustion consumption by freight transport,1.014491604,TJ,CH4,3.9,kg/TJ,3.9565172556,kg +121209fe-8f46-3132-99f0-6030425937d0,SESCO,II.1.1,Córdoba,AR-X,annual,2013,gas oil combustion consumption by freight transport,1.014491604,TJ,N2O,3.9,kg/TJ,3.9565172556,kg +c7b1dfe5-1867-3017-88ce-695e5c60eb95,SESCO,II.1.1,Entre Rios,AR-E,annual,2013,gas oil combustion consumption by freight transport,1.165079496,TJ,CO2,74100.0,kg/TJ,86332.3906536,kg +047565dd-8700-3008-8469-ffd7aa74f384,SESCO,II.1.1,Entre Rios,AR-E,annual,2013,gas oil combustion consumption by freight transport,1.165079496,TJ,CH4,3.9,kg/TJ,4.5438100344,kg +047565dd-8700-3008-8469-ffd7aa74f384,SESCO,II.1.1,Entre Rios,AR-E,annual,2013,gas oil combustion consumption by freight transport,1.165079496,TJ,N2O,3.9,kg/TJ,4.5438100344,kg +68eacbf9-7c18-360d-bca6-f4f505514592,SESCO,II.1.1,Mendoza,AR-M,annual,2013,gas oil combustion consumption by freight transport,0.093196824,TJ,CO2,74100.0,kg/TJ,6905.8846584,kg +bba05668-2de3-3d3e-a60c-a1a990c56f8d,SESCO,II.1.1,Mendoza,AR-M,annual,2013,gas oil combustion consumption by freight transport,0.093196824,TJ,CH4,3.9,kg/TJ,0.36346761359999996,kg +bba05668-2de3-3d3e-a60c-a1a990c56f8d,SESCO,II.1.1,Mendoza,AR-M,annual,2013,gas oil combustion consumption by freight transport,0.093196824,TJ,N2O,3.9,kg/TJ,0.36346761359999996,kg +067b78dd-2263-30b2-953b-6fa1739fde5a,SESCO,II.1.1,Misiones,AR-N,annual,2013,gas oil combustion consumption by freight transport,0.146816964,TJ,CO2,74100.0,kg/TJ,10879.1370324,kg +1501406c-82a0-362b-b9ad-399094edd024,SESCO,II.1.1,Misiones,AR-N,annual,2013,gas oil combustion consumption by freight transport,0.146816964,TJ,CH4,3.9,kg/TJ,0.5725861595999999,kg +1501406c-82a0-362b-b9ad-399094edd024,SESCO,II.1.1,Misiones,AR-N,annual,2013,gas oil combustion consumption by freight transport,0.146816964,TJ,N2O,3.9,kg/TJ,0.5725861595999999,kg +709ef4fe-ff29-3122-b532-bab1b0073281,SESCO,II.1.1,San Juan,AR-J,annual,2013,gas oil combustion consumption by freight transport,0.006140400000000001,TJ,CO2,74100.0,kg/TJ,455.0036400000001,kg +342db8b8-d851-339a-8031-bcb90de38772,SESCO,II.1.1,San Juan,AR-J,annual,2013,gas oil combustion consumption by freight transport,0.006140400000000001,TJ,CH4,3.9,kg/TJ,0.023947560000000003,kg +342db8b8-d851-339a-8031-bcb90de38772,SESCO,II.1.1,San Juan,AR-J,annual,2013,gas oil combustion consumption by freight transport,0.006140400000000001,TJ,N2O,3.9,kg/TJ,0.023947560000000003,kg +6b0b69cf-1e6b-3e6c-8287-773ac7e11719,SESCO,II.1.1,San Luis,AR-D,annual,2013,gas oil combustion consumption by freight transport,0.2206932,TJ,CO2,74100.0,kg/TJ,16353.36612,kg +1777bd85-9327-31f5-8a7a-ae39cb7c2bbb,SESCO,II.1.1,San Luis,AR-D,annual,2013,gas oil combustion consumption by freight transport,0.2206932,TJ,CH4,3.9,kg/TJ,0.86070348,kg +1777bd85-9327-31f5-8a7a-ae39cb7c2bbb,SESCO,II.1.1,San Luis,AR-D,annual,2013,gas oil combustion consumption by freight transport,0.2206932,TJ,N2O,3.9,kg/TJ,0.86070348,kg +0f527012-d4fc-38e9-b4fe-3ebe955a70d4,SESCO,II.1.1,Santa Fe,AR-S,annual,2013,gas oil combustion consumption by freight transport,2.104383708,TJ,CO2,74100.0,kg/TJ,155934.83276279998,kg +d07433fc-5c9d-353b-bbf7-134994c25a81,SESCO,II.1.1,Santa Fe,AR-S,annual,2013,gas oil combustion consumption by freight transport,2.104383708,TJ,CH4,3.9,kg/TJ,8.207096461199999,kg +d07433fc-5c9d-353b-bbf7-134994c25a81,SESCO,II.1.1,Santa Fe,AR-S,annual,2013,gas oil combustion consumption by freight transport,2.104383708,TJ,N2O,3.9,kg/TJ,8.207096461199999,kg +e4c3aba3-2279-3ab8-be47-e57bd36fb4c2,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2013,gas oil combustion consumption by freight transport,0.014448,TJ,CO2,74100.0,kg/TJ,1070.5968,kg +c06235d0-0c64-3ef2-aa93-23ed81363b63,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2013,gas oil combustion consumption by freight transport,0.014448,TJ,CH4,3.9,kg/TJ,0.0563472,kg +c06235d0-0c64-3ef2-aa93-23ed81363b63,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2013,gas oil combustion consumption by freight transport,0.014448,TJ,N2O,3.9,kg/TJ,0.0563472,kg +988fe5f0-fece-34dc-b089-dc1c5cf7301a,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2013,gas oil combustion consumption by freight transport,0.235383204,TJ,CO2,74100.0,kg/TJ,17441.895416400002,kg +4f76f490-fefc-31e1-a90e-7a66bbab8fb7,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2013,gas oil combustion consumption by freight transport,0.235383204,TJ,CH4,3.9,kg/TJ,0.9179944956,kg +4f76f490-fefc-31e1-a90e-7a66bbab8fb7,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2013,gas oil combustion consumption by freight transport,0.235383204,TJ,N2O,3.9,kg/TJ,0.9179944956,kg +371af207-f454-3e2a-8ae4-199dfc920a95,SESCO,II.1.1,Tucuman,AR-T,annual,2013,gas oil combustion consumption by freight transport,0.253482936,TJ,CO2,74100.0,kg/TJ,18783.0855576,kg +0af17f1b-9322-3ea4-9559-66645657b7b6,SESCO,II.1.1,Tucuman,AR-T,annual,2013,gas oil combustion consumption by freight transport,0.253482936,TJ,CH4,3.9,kg/TJ,0.9885834504,kg +0af17f1b-9322-3ea4-9559-66645657b7b6,SESCO,II.1.1,Tucuman,AR-T,annual,2013,gas oil combustion consumption by freight transport,0.253482936,TJ,N2O,3.9,kg/TJ,0.9885834504,kg +c4890808-f558-3274-8697-bd48821e86af,SESCO,II.1.1,Buenos Aires,AR-B,annual,2013,gas oil combustion consumption by public passenger transport,1983.1216439999998,TJ,CO2,74100.0,kg/TJ,146949313.8204,kg +9cb0ffa0-1c2a-3101-a331-c40f02437ccd,SESCO,II.1.1,Buenos Aires,AR-B,annual,2013,gas oil combustion consumption by public passenger transport,1983.1216439999998,TJ,CH4,3.9,kg/TJ,7734.174411599999,kg +9cb0ffa0-1c2a-3101-a331-c40f02437ccd,SESCO,II.1.1,Buenos Aires,AR-B,annual,2013,gas oil combustion consumption by public passenger transport,1983.1216439999998,TJ,N2O,3.9,kg/TJ,7734.174411599999,kg +91a5f5e9-6f70-35c2-8e34-213a5aec5bc3,SESCO,II.1.1,Capital Federal,AR-C,annual,2013,gas oil combustion consumption by public passenger transport,485.0623428,TJ,CO2,74100.0,kg/TJ,35943119.60148,kg +e9a9dcb4-62d8-3982-a8e6-b000cfe90c1e,SESCO,II.1.1,Capital Federal,AR-C,annual,2013,gas oil combustion consumption by public passenger transport,485.0623428,TJ,CH4,3.9,kg/TJ,1891.74313692,kg +e9a9dcb4-62d8-3982-a8e6-b000cfe90c1e,SESCO,II.1.1,Capital Federal,AR-C,annual,2013,gas oil combustion consumption by public passenger transport,485.0623428,TJ,N2O,3.9,kg/TJ,1891.74313692,kg +17519f81-eb27-36a0-a2aa-3ad7bd6e2d39,SESCO,II.1.1,Chubut,AR-U,annual,2013,gas oil combustion consumption by public passenger transport,18.038328,TJ,CO2,74100.0,kg/TJ,1336640.1048,kg +01a6b590-f9e2-3665-87f3-5d5122e1eabf,SESCO,II.1.1,Chubut,AR-U,annual,2013,gas oil combustion consumption by public passenger transport,18.038328,TJ,CH4,3.9,kg/TJ,70.3494792,kg +01a6b590-f9e2-3665-87f3-5d5122e1eabf,SESCO,II.1.1,Chubut,AR-U,annual,2013,gas oil combustion consumption by public passenger transport,18.038328,TJ,N2O,3.9,kg/TJ,70.3494792,kg +6f8ac9ab-3d5c-3428-b263-cc6a1ef24ec2,SESCO,II.1.1,Córdoba,AR-X,annual,2013,gas oil combustion consumption by public passenger transport,35.844267144,TJ,CO2,74100.0,kg/TJ,2656060.1953704,kg +ce2fdb54-4c28-3302-9c0c-2a46035c0f88,SESCO,II.1.1,Córdoba,AR-X,annual,2013,gas oil combustion consumption by public passenger transport,35.844267144,TJ,CH4,3.9,kg/TJ,139.7926418616,kg +ce2fdb54-4c28-3302-9c0c-2a46035c0f88,SESCO,II.1.1,Córdoba,AR-X,annual,2013,gas oil combustion consumption by public passenger transport,35.844267144,TJ,N2O,3.9,kg/TJ,139.7926418616,kg +369dfc52-cc96-32d8-b248-46ab0bf06297,SESCO,II.1.1,Entre Rios,AR-E,annual,2013,gas oil combustion consumption by public passenger transport,63.225343776,TJ,CO2,74100.0,kg/TJ,4684997.9738016,kg +b8806e16-8f2c-39cb-8d3c-9265dd69a13a,SESCO,II.1.1,Entre Rios,AR-E,annual,2013,gas oil combustion consumption by public passenger transport,63.225343776,TJ,CH4,3.9,kg/TJ,246.57884072640002,kg +b8806e16-8f2c-39cb-8d3c-9265dd69a13a,SESCO,II.1.1,Entre Rios,AR-E,annual,2013,gas oil combustion consumption by public passenger transport,63.225343776,TJ,N2O,3.9,kg/TJ,246.57884072640002,kg +eaeb5740-6e57-3c0f-8856-262c8d11c9b2,SESCO,II.1.1,La Pampa,AR-L,annual,2013,gas oil combustion consumption by public passenger transport,7.744128,TJ,CO2,74100.0,kg/TJ,573839.8848,kg +be56b5bf-1a0e-38af-b8ec-8d6e2dcc20e5,SESCO,II.1.1,La Pampa,AR-L,annual,2013,gas oil combustion consumption by public passenger transport,7.744128,TJ,CH4,3.9,kg/TJ,30.2020992,kg +be56b5bf-1a0e-38af-b8ec-8d6e2dcc20e5,SESCO,II.1.1,La Pampa,AR-L,annual,2013,gas oil combustion consumption by public passenger transport,7.744128,TJ,N2O,3.9,kg/TJ,30.2020992,kg +13932fd8-10cf-3b65-b84d-b9f0330427cc,SESCO,II.1.1,Mendoza,AR-M,annual,2013,gas oil combustion consumption by public passenger transport,0.040454399999999995,TJ,CO2,74100.0,kg/TJ,2997.6710399999997,kg +3c9e07c1-5206-38a8-8ea2-e32cf8d3db63,SESCO,II.1.1,Mendoza,AR-M,annual,2013,gas oil combustion consumption by public passenger transport,0.040454399999999995,TJ,CH4,3.9,kg/TJ,0.15777215999999997,kg +3c9e07c1-5206-38a8-8ea2-e32cf8d3db63,SESCO,II.1.1,Mendoza,AR-M,annual,2013,gas oil combustion consumption by public passenger transport,0.040454399999999995,TJ,N2O,3.9,kg/TJ,0.15777215999999997,kg +a8af94bc-043c-3067-8327-b10ca11d2c08,SESCO,II.1.1,Misiones,AR-N,annual,2013,gas oil combustion consumption by public passenger transport,59.6771028,TJ,CO2,74100.0,kg/TJ,4422073.31748,kg +d31098a0-a339-3886-aa02-9846844acd36,SESCO,II.1.1,Misiones,AR-N,annual,2013,gas oil combustion consumption by public passenger transport,59.6771028,TJ,CH4,3.9,kg/TJ,232.74070092,kg +d31098a0-a339-3886-aa02-9846844acd36,SESCO,II.1.1,Misiones,AR-N,annual,2013,gas oil combustion consumption by public passenger transport,59.6771028,TJ,N2O,3.9,kg/TJ,232.74070092,kg +0840c162-7be7-378e-9ce3-4cffa58f702e,SESCO,II.1.1,Rio Negro,AR-R,annual,2013,gas oil combustion consumption by public passenger transport,43.322714483999995,TJ,CO2,74100.0,kg/TJ,3210213.1432644,kg +ed369790-2f8a-33c6-b947-4e571beb5632,SESCO,II.1.1,Rio Negro,AR-R,annual,2013,gas oil combustion consumption by public passenger transport,43.322714483999995,TJ,CH4,3.9,kg/TJ,168.95858648759997,kg +ed369790-2f8a-33c6-b947-4e571beb5632,SESCO,II.1.1,Rio Negro,AR-R,annual,2013,gas oil combustion consumption by public passenger transport,43.322714483999995,TJ,N2O,3.9,kg/TJ,168.95858648759997,kg +2c3df3da-65ea-3c15-9d34-2849ec41542d,SESCO,II.1.1,San Juan,AR-J,annual,2013,gas oil combustion consumption by public passenger transport,15.740016012,TJ,CO2,74100.0,kg/TJ,1166335.1864892,kg +b48e142d-1920-32d4-a059-bf6d4d627ece,SESCO,II.1.1,San Juan,AR-J,annual,2013,gas oil combustion consumption by public passenger transport,15.740016012,TJ,CH4,3.9,kg/TJ,61.3860624468,kg +b48e142d-1920-32d4-a059-bf6d4d627ece,SESCO,II.1.1,San Juan,AR-J,annual,2013,gas oil combustion consumption by public passenger transport,15.740016012,TJ,N2O,3.9,kg/TJ,61.3860624468,kg +9f0c627a-437a-3fdb-8be3-8cb0646319de,SESCO,II.1.1,San Luis,AR-D,annual,2013,gas oil combustion consumption by public passenger transport,19.620384,TJ,CO2,74100.0,kg/TJ,1453870.4544000002,kg +acbd79da-be37-3822-8c0e-3baf4c7ca9ef,SESCO,II.1.1,San Luis,AR-D,annual,2013,gas oil combustion consumption by public passenger transport,19.620384,TJ,CH4,3.9,kg/TJ,76.51949760000001,kg +acbd79da-be37-3822-8c0e-3baf4c7ca9ef,SESCO,II.1.1,San Luis,AR-D,annual,2013,gas oil combustion consumption by public passenger transport,19.620384,TJ,N2O,3.9,kg/TJ,76.51949760000001,kg +db97c534-19ff-36c7-8ca3-73a0e3a871f4,SESCO,II.1.1,Santa Fe,AR-S,annual,2013,gas oil combustion consumption by public passenger transport,83.306557572,TJ,CO2,74100.0,kg/TJ,6173015.9160852,kg +0a9c342e-1e77-3328-92bf-ce7bf76518b2,SESCO,II.1.1,Santa Fe,AR-S,annual,2013,gas oil combustion consumption by public passenger transport,83.306557572,TJ,CH4,3.9,kg/TJ,324.8955745308,kg +0a9c342e-1e77-3328-92bf-ce7bf76518b2,SESCO,II.1.1,Santa Fe,AR-S,annual,2013,gas oil combustion consumption by public passenger transport,83.306557572,TJ,N2O,3.9,kg/TJ,324.8955745308,kg +5aad6e30-e302-37a7-b173-ae2364bb0249,SESCO,II.1.1,Buenos Aires,AR-B,annual,2013,gas oil combustion consumption by public passenger transport,1.4401044,TJ,CO2,74100.0,kg/TJ,106711.73604,kg +c5ed194f-c196-3779-b021-fcbfd57249c9,SESCO,II.1.1,Buenos Aires,AR-B,annual,2013,gas oil combustion consumption by public passenger transport,1.4401044,TJ,CH4,3.9,kg/TJ,5.6164071600000005,kg +c5ed194f-c196-3779-b021-fcbfd57249c9,SESCO,II.1.1,Buenos Aires,AR-B,annual,2013,gas oil combustion consumption by public passenger transport,1.4401044,TJ,N2O,3.9,kg/TJ,5.6164071600000005,kg +161437c3-0eeb-3f5d-8207-158c129a5aca,SESCO,II.1.1,Capital Federal,AR-C,annual,2013,gas oil combustion consumption by public passenger transport,12.127651199999999,TJ,CO2,74100.0,kg/TJ,898658.9539199999,kg +652afed7-b7f1-343d-9a1c-86f202881d88,SESCO,II.1.1,Capital Federal,AR-C,annual,2013,gas oil combustion consumption by public passenger transport,12.127651199999999,TJ,CH4,3.9,kg/TJ,47.297839679999996,kg +652afed7-b7f1-343d-9a1c-86f202881d88,SESCO,II.1.1,Capital Federal,AR-C,annual,2013,gas oil combustion consumption by public passenger transport,12.127651199999999,TJ,N2O,3.9,kg/TJ,47.297839679999996,kg +8acd2a01-c194-3b52-9bd1-e0817713c408,SESCO,II.1.1,Chaco,AR-H,annual,2013,gas oil combustion consumption by public passenger transport,0.07693559999999999,TJ,CO2,74100.0,kg/TJ,5700.927959999999,kg +7dacf16f-0d52-33b1-8027-56133b3e21d4,SESCO,II.1.1,Chaco,AR-H,annual,2013,gas oil combustion consumption by public passenger transport,0.07693559999999999,TJ,CH4,3.9,kg/TJ,0.30004884,kg +7dacf16f-0d52-33b1-8027-56133b3e21d4,SESCO,II.1.1,Chaco,AR-H,annual,2013,gas oil combustion consumption by public passenger transport,0.07693559999999999,TJ,N2O,3.9,kg/TJ,0.30004884,kg +0858a22a-5867-31da-b9ec-46aa06f3c34b,SESCO,II.1.1,Córdoba,AR-X,annual,2013,gas oil combustion consumption by public passenger transport,0.201885516,TJ,CO2,74100.0,kg/TJ,14959.716735599999,kg +d569d17a-b4b5-37e9-9819-110dffbe3ca5,SESCO,II.1.1,Córdoba,AR-X,annual,2013,gas oil combustion consumption by public passenger transport,0.201885516,TJ,CH4,3.9,kg/TJ,0.7873535124,kg +d569d17a-b4b5-37e9-9819-110dffbe3ca5,SESCO,II.1.1,Córdoba,AR-X,annual,2013,gas oil combustion consumption by public passenger transport,0.201885516,TJ,N2O,3.9,kg/TJ,0.7873535124,kg +1938dab7-4fac-320f-880a-00beedec847a,SESCO,II.1.1,Entre Rios,AR-E,annual,2013,gas oil combustion consumption by public passenger transport,0.42387542399999995,TJ,CO2,74100.0,kg/TJ,31409.168918399995,kg +69b1628c-3547-35fd-97d5-81438562dcc5,SESCO,II.1.1,Entre Rios,AR-E,annual,2013,gas oil combustion consumption by public passenger transport,0.42387542399999995,TJ,CH4,3.9,kg/TJ,1.6531141535999998,kg +69b1628c-3547-35fd-97d5-81438562dcc5,SESCO,II.1.1,Entre Rios,AR-E,annual,2013,gas oil combustion consumption by public passenger transport,0.42387542399999995,TJ,N2O,3.9,kg/TJ,1.6531141535999998,kg +fd52f168-f5f1-3998-b112-1e54114d431c,SESCO,II.1.1,Misiones,AR-N,annual,2013,gas oil combustion consumption by public passenger transport,0.0390096,TJ,CO2,74100.0,kg/TJ,2890.61136,kg +364a4a1f-ae88-3f5d-9270-6284f710a2c5,SESCO,II.1.1,Misiones,AR-N,annual,2013,gas oil combustion consumption by public passenger transport,0.0390096,TJ,CH4,3.9,kg/TJ,0.15213743999999998,kg +364a4a1f-ae88-3f5d-9270-6284f710a2c5,SESCO,II.1.1,Misiones,AR-N,annual,2013,gas oil combustion consumption by public passenger transport,0.0390096,TJ,N2O,3.9,kg/TJ,0.15213743999999998,kg +2fd5ce45-753a-376a-b7bd-dbeb45eaac2b,SESCO,II.1.1,Santa Fe,AR-S,annual,2013,gas oil combustion consumption by public passenger transport,0.10619279999999999,TJ,CO2,74100.0,kg/TJ,7868.886479999999,kg +7c90c772-7054-3308-8290-ce8c5a9c971b,SESCO,II.1.1,Santa Fe,AR-S,annual,2013,gas oil combustion consumption by public passenger transport,0.10619279999999999,TJ,CH4,3.9,kg/TJ,0.41415191999999995,kg +7c90c772-7054-3308-8290-ce8c5a9c971b,SESCO,II.1.1,Santa Fe,AR-S,annual,2013,gas oil combustion consumption by public passenger transport,0.10619279999999999,TJ,N2O,3.9,kg/TJ,0.41415191999999995,kg +6830ab01-d902-36f0-b092-4e2c4b3b718b,SESCO,I.3.1,Córdoba,AR-X,annual,2013,gasoline combustion consumption by petrochemical industries,28.086643,TJ,CO2,69300.0,kg/TJ,1946404.3598999998,kg +3135470e-22f3-36a4-be45-c58051c3e4a4,SESCO,I.3.1,Córdoba,AR-X,annual,2013,gasoline combustion consumption by petrochemical industries,28.086643,TJ,CH4,33.0,kg/TJ,926.8592189999999,kg +842238fc-6fd2-345c-b526-c233c00c7cca,SESCO,I.3.1,Córdoba,AR-X,annual,2013,gasoline combustion consumption by petrochemical industries,28.086643,TJ,N2O,3.2,kg/TJ,89.87725760000001,kg +ef0ee8c3-5366-3c3d-b4dd-75f04e013095,SESCO,II.5.1,Buenos Aires,AR-B,annual,2013,gas oil combustion consumption by agriculture machines,410.110532664,TJ,CO2,74100.0,kg/TJ,30389190.4704024,kg +b913d0d8-418a-3495-8c1f-b808442cffae,SESCO,II.5.1,Buenos Aires,AR-B,annual,2013,gas oil combustion consumption by agriculture machines,410.110532664,TJ,CH4,3.9,kg/TJ,1599.4310773896,kg +b913d0d8-418a-3495-8c1f-b808442cffae,SESCO,II.5.1,Buenos Aires,AR-B,annual,2013,gas oil combustion consumption by agriculture machines,410.110532664,TJ,N2O,3.9,kg/TJ,1599.4310773896,kg +e5fdc642-1a5d-3cd4-8e37-f1e363f02b52,SESCO,II.5.1,Córdoba,AR-X,annual,2013,gas oil combustion consumption by agriculture machines,588.755646024,TJ,CO2,74100.0,kg/TJ,43626793.370378405,kg +cbc1dccb-f8e9-37ee-8381-0d041b4e32e4,SESCO,II.5.1,Córdoba,AR-X,annual,2013,gas oil combustion consumption by agriculture machines,588.755646024,TJ,CH4,3.9,kg/TJ,2296.1470194936,kg +cbc1dccb-f8e9-37ee-8381-0d041b4e32e4,SESCO,II.5.1,Córdoba,AR-X,annual,2013,gas oil combustion consumption by agriculture machines,588.755646024,TJ,N2O,3.9,kg/TJ,2296.1470194936,kg +5bfdf9d1-107f-3ca9-bd28-71560b6d18c8,SESCO,II.5.1,Entre Rios,AR-E,annual,2013,gas oil combustion consumption by agriculture machines,530.895924636,TJ,CO2,74100.0,kg/TJ,39339388.0155276,kg +18783b1b-0cf1-3ac0-91a1-7a9032497081,SESCO,II.5.1,Entre Rios,AR-E,annual,2013,gas oil combustion consumption by agriculture machines,530.895924636,TJ,CH4,3.9,kg/TJ,2070.4941060804,kg +18783b1b-0cf1-3ac0-91a1-7a9032497081,SESCO,II.5.1,Entre Rios,AR-E,annual,2013,gas oil combustion consumption by agriculture machines,530.895924636,TJ,N2O,3.9,kg/TJ,2070.4941060804,kg +2b0d54c5-338b-3b5b-a6e6-1b9eadb0b54b,SESCO,II.5.1,Santa Fe,AR-S,annual,2013,gas oil combustion consumption by agriculture machines,713.868860544,TJ,CO2,74100.0,kg/TJ,52897682.5663104,kg +d7fdede1-d08d-3c18-9c88-38f4fdd68e99,SESCO,II.5.1,Santa Fe,AR-S,annual,2013,gas oil combustion consumption by agriculture machines,713.868860544,TJ,CH4,3.9,kg/TJ,2784.0885561216,kg +d7fdede1-d08d-3c18-9c88-38f4fdd68e99,SESCO,II.5.1,Santa Fe,AR-S,annual,2013,gas oil combustion consumption by agriculture machines,713.868860544,TJ,N2O,3.9,kg/TJ,2784.0885561216,kg +c2e95df4-61cb-3c39-9257-585d04296336,SESCO,II.5.1,Santiago del Estero,AR-G,annual,2013,gas oil combustion consumption by agriculture machines,145.695434388,TJ,CO2,74100.0,kg/TJ,10796031.688150799,kg +eda89051-e10d-3705-99d6-8a631b55d4e3,SESCO,II.5.1,Santiago del Estero,AR-G,annual,2013,gas oil combustion consumption by agriculture machines,145.695434388,TJ,CH4,3.9,kg/TJ,568.2121941132,kg +eda89051-e10d-3705-99d6-8a631b55d4e3,SESCO,II.5.1,Santiago del Estero,AR-G,annual,2013,gas oil combustion consumption by agriculture machines,145.695434388,TJ,N2O,3.9,kg/TJ,568.2121941132,kg +e345bc0a-9021-3bab-a3f9-37234835eb90,SESCO,II.1.1,Buenos Aires,AR-B,annual,2013,gas oil combustion consumption by to the public,4048.46597106,TJ,CO2,74100.0,kg/TJ,299991328.455546,kg +c63490e0-8819-3c13-8bfb-683299011f92,SESCO,II.1.1,Buenos Aires,AR-B,annual,2013,gas oil combustion consumption by to the public,4048.46597106,TJ,CH4,3.9,kg/TJ,15789.017287134,kg +c63490e0-8819-3c13-8bfb-683299011f92,SESCO,II.1.1,Buenos Aires,AR-B,annual,2013,gas oil combustion consumption by to the public,4048.46597106,TJ,N2O,3.9,kg/TJ,15789.017287134,kg +7fefdaa4-6e6b-38c5-9547-0626e594d822,SESCO,II.1.1,Capital Federal,AR-C,annual,2013,gas oil combustion consumption by to the public,411.406641072,TJ,CO2,74100.0,kg/TJ,30485232.1034352,kg +d7a2136b-40cd-3927-be99-bbca18e25289,SESCO,II.1.1,Capital Federal,AR-C,annual,2013,gas oil combustion consumption by to the public,411.406641072,TJ,CH4,3.9,kg/TJ,1604.4859001808,kg +d7a2136b-40cd-3927-be99-bbca18e25289,SESCO,II.1.1,Capital Federal,AR-C,annual,2013,gas oil combustion consumption by to the public,411.406641072,TJ,N2O,3.9,kg/TJ,1604.4859001808,kg +2962cb85-156b-3259-8acd-a0ecaa0c8b23,SESCO,II.1.1,Catamarca,AR-K,annual,2013,gas oil combustion consumption by to the public,151.53273340799998,TJ,CO2,74100.0,kg/TJ,11228575.545532798,kg +345d7a37-1277-3b01-ad52-18423244ea67,SESCO,II.1.1,Catamarca,AR-K,annual,2013,gas oil combustion consumption by to the public,151.53273340799998,TJ,CH4,3.9,kg/TJ,590.9776602912,kg +345d7a37-1277-3b01-ad52-18423244ea67,SESCO,II.1.1,Catamarca,AR-K,annual,2013,gas oil combustion consumption by to the public,151.53273340799998,TJ,N2O,3.9,kg/TJ,590.9776602912,kg +b6a8b948-000b-348d-aa73-da2e01396378,SESCO,II.1.1,Chaco,AR-H,annual,2013,gas oil combustion consumption by to the public,577.2203556000001,TJ,CO2,74100.0,kg/TJ,42772028.34996001,kg +ec9d94fc-0d90-35e3-b17b-52ee1f77274c,SESCO,II.1.1,Chaco,AR-H,annual,2013,gas oil combustion consumption by to the public,577.2203556000001,TJ,CH4,3.9,kg/TJ,2251.15938684,kg +ec9d94fc-0d90-35e3-b17b-52ee1f77274c,SESCO,II.1.1,Chaco,AR-H,annual,2013,gas oil combustion consumption by to the public,577.2203556000001,TJ,N2O,3.9,kg/TJ,2251.15938684,kg +c27bea69-ec64-33b5-a7f6-2ba738666abc,SESCO,II.1.1,Corrientes,AR-W,annual,2013,gas oil combustion consumption by to the public,872.8407030000001,TJ,CO2,74100.0,kg/TJ,64677496.092300005,kg +bb59ac9f-b994-3897-8411-26f72e74e7df,SESCO,II.1.1,Corrientes,AR-W,annual,2013,gas oil combustion consumption by to the public,872.8407030000001,TJ,CH4,3.9,kg/TJ,3404.0787417,kg +bb59ac9f-b994-3897-8411-26f72e74e7df,SESCO,II.1.1,Corrientes,AR-W,annual,2013,gas oil combustion consumption by to the public,872.8407030000001,TJ,N2O,3.9,kg/TJ,3404.0787417,kg +c10c18b3-c3e6-38b2-90bb-64d20c7949f3,SESCO,II.1.1,Córdoba,AR-X,annual,2013,gas oil combustion consumption by to the public,2049.49696602,TJ,CO2,74100.0,kg/TJ,151867725.182082,kg +3f303f2d-c1b9-31c1-b436-f8f88325017a,SESCO,II.1.1,Córdoba,AR-X,annual,2013,gas oil combustion consumption by to the public,2049.49696602,TJ,CH4,3.9,kg/TJ,7993.038167477999,kg +3f303f2d-c1b9-31c1-b436-f8f88325017a,SESCO,II.1.1,Córdoba,AR-X,annual,2013,gas oil combustion consumption by to the public,2049.49696602,TJ,N2O,3.9,kg/TJ,7993.038167477999,kg +8330424d-17f8-3de1-87d6-b076fd99c6b3,SESCO,II.1.1,Entre Rios,AR-E,annual,2013,gas oil combustion consumption by to the public,1266.4127581559999,TJ,CO2,74100.0,kg/TJ,93841185.37935959,kg +de271c3d-00f1-32d2-89d2-2970a48528b3,SESCO,II.1.1,Entre Rios,AR-E,annual,2013,gas oil combustion consumption by to the public,1266.4127581559999,TJ,CH4,3.9,kg/TJ,4939.009756808399,kg +de271c3d-00f1-32d2-89d2-2970a48528b3,SESCO,II.1.1,Entre Rios,AR-E,annual,2013,gas oil combustion consumption by to the public,1266.4127581559999,TJ,N2O,3.9,kg/TJ,4939.009756808399,kg +7892b801-965f-3822-bc9b-9989387596de,SESCO,II.1.1,Formosa,AR-P,annual,2013,gas oil combustion consumption by to the public,23.329189212,TJ,CO2,74100.0,kg/TJ,1728692.9206092,kg +c386bb2d-91d7-3f16-a961-bff23d6fa128,SESCO,II.1.1,Formosa,AR-P,annual,2013,gas oil combustion consumption by to the public,23.329189212,TJ,CH4,3.9,kg/TJ,90.98383792679999,kg +c386bb2d-91d7-3f16-a961-bff23d6fa128,SESCO,II.1.1,Formosa,AR-P,annual,2013,gas oil combustion consumption by to the public,23.329189212,TJ,N2O,3.9,kg/TJ,90.98383792679999,kg +53b46d05-d253-33e8-a4f5-7ed044efe18c,SESCO,II.1.1,Jujuy,AR-Y,annual,2013,gas oil combustion consumption by to the public,30.529295831999995,TJ,CO2,74100.0,kg/TJ,2262220.8211511998,kg +35a54987-0bfb-37d9-a55c-4ed061fd05ac,SESCO,II.1.1,Jujuy,AR-Y,annual,2013,gas oil combustion consumption by to the public,30.529295831999995,TJ,CH4,3.9,kg/TJ,119.06425374479998,kg +35a54987-0bfb-37d9-a55c-4ed061fd05ac,SESCO,II.1.1,Jujuy,AR-Y,annual,2013,gas oil combustion consumption by to the public,30.529295831999995,TJ,N2O,3.9,kg/TJ,119.06425374479998,kg +ca2bfcea-17d3-3ffa-8767-063dc0957e75,SESCO,II.1.1,La Pampa,AR-L,annual,2013,gas oil combustion consumption by to the public,99.38439672,TJ,CO2,74100.0,kg/TJ,7364383.796952,kg +868d67bb-c789-31e0-881a-b93d736a192c,SESCO,II.1.1,La Pampa,AR-L,annual,2013,gas oil combustion consumption by to the public,99.38439672,TJ,CH4,3.9,kg/TJ,387.599147208,kg +868d67bb-c789-31e0-881a-b93d736a192c,SESCO,II.1.1,La Pampa,AR-L,annual,2013,gas oil combustion consumption by to the public,99.38439672,TJ,N2O,3.9,kg/TJ,387.599147208,kg +ef8dcbdb-734d-315d-a64c-ad9d2cf70fac,SESCO,II.1.1,La Rioja,AR-F,annual,2013,gas oil combustion consumption by to the public,68.696313756,TJ,CO2,74100.0,kg/TJ,5090396.8493196,kg +f1d3f7c8-c662-3f40-88ba-6b15d7df9454,SESCO,II.1.1,La Rioja,AR-F,annual,2013,gas oil combustion consumption by to the public,68.696313756,TJ,CH4,3.9,kg/TJ,267.91562364839996,kg +f1d3f7c8-c662-3f40-88ba-6b15d7df9454,SESCO,II.1.1,La Rioja,AR-F,annual,2013,gas oil combustion consumption by to the public,68.696313756,TJ,N2O,3.9,kg/TJ,267.91562364839996,kg +8ad0d531-5740-3e7d-b056-37ec2256bbde,SESCO,II.1.1,Mendoza,AR-M,annual,2013,gas oil combustion consumption by to the public,516.418793856,TJ,CO2,74100.0,kg/TJ,38266632.624729596,kg +848001b4-b973-3334-86da-10da843ddeb3,SESCO,II.1.1,Mendoza,AR-M,annual,2013,gas oil combustion consumption by to the public,516.418793856,TJ,CH4,3.9,kg/TJ,2014.0332960383998,kg +848001b4-b973-3334-86da-10da843ddeb3,SESCO,II.1.1,Mendoza,AR-M,annual,2013,gas oil combustion consumption by to the public,516.418793856,TJ,N2O,3.9,kg/TJ,2014.0332960383998,kg +db910a47-fc3f-3a2e-8b6b-c002239b88fa,SESCO,II.1.1,Misiones,AR-N,annual,2013,gas oil combustion consumption by to the public,308.831446896,TJ,CO2,74100.0,kg/TJ,22884410.2149936,kg +02fdd54c-7acf-3abe-bb73-63acc8396f3e,SESCO,II.1.1,Misiones,AR-N,annual,2013,gas oil combustion consumption by to the public,308.831446896,TJ,CH4,3.9,kg/TJ,1204.4426428944,kg +02fdd54c-7acf-3abe-bb73-63acc8396f3e,SESCO,II.1.1,Misiones,AR-N,annual,2013,gas oil combustion consumption by to the public,308.831446896,TJ,N2O,3.9,kg/TJ,1204.4426428944,kg +b938db98-a837-3903-8545-0d6ad1c2c25a,SESCO,II.1.1,Rio Negro,AR-R,annual,2013,gas oil combustion consumption by to the public,5.28365166,TJ,CO2,74100.0,kg/TJ,391518.58800600003,kg +83900e6f-648c-381f-b7bc-1f9bebf16edb,SESCO,II.1.1,Rio Negro,AR-R,annual,2013,gas oil combustion consumption by to the public,5.28365166,TJ,CH4,3.9,kg/TJ,20.606241474,kg +83900e6f-648c-381f-b7bc-1f9bebf16edb,SESCO,II.1.1,Rio Negro,AR-R,annual,2013,gas oil combustion consumption by to the public,5.28365166,TJ,N2O,3.9,kg/TJ,20.606241474,kg +c69fc8d7-6a00-315e-a8c0-3fb4c6190a01,SESCO,II.1.1,Salta,AR-A,annual,2013,gas oil combustion consumption by to the public,1.2554409,TJ,CO2,74100.0,kg/TJ,93028.17069,kg +4f4270d7-4128-3a3b-bccc-8163328957e6,SESCO,II.1.1,Salta,AR-A,annual,2013,gas oil combustion consumption by to the public,1.2554409,TJ,CH4,3.9,kg/TJ,4.89621951,kg +4f4270d7-4128-3a3b-bccc-8163328957e6,SESCO,II.1.1,Salta,AR-A,annual,2013,gas oil combustion consumption by to the public,1.2554409,TJ,N2O,3.9,kg/TJ,4.89621951,kg +ca221923-f616-3e7e-9c5f-9e7a047d7f4d,SESCO,II.1.1,San Juan,AR-J,annual,2013,gas oil combustion consumption by to the public,436.130372916,TJ,CO2,74100.0,kg/TJ,32317260.6330756,kg +62805d37-7e3d-3611-8209-3c97da5a9a6a,SESCO,II.1.1,San Juan,AR-J,annual,2013,gas oil combustion consumption by to the public,436.130372916,TJ,CH4,3.9,kg/TJ,1700.9084543724,kg +62805d37-7e3d-3611-8209-3c97da5a9a6a,SESCO,II.1.1,San Juan,AR-J,annual,2013,gas oil combustion consumption by to the public,436.130372916,TJ,N2O,3.9,kg/TJ,1700.9084543724,kg +5bda5a10-2a50-332b-a416-40ba00fb8bb0,SESCO,II.1.1,San Luis,AR-D,annual,2013,gas oil combustion consumption by to the public,242.713653252,TJ,CO2,74100.0,kg/TJ,17985081.7059732,kg +8e8e5faf-46a2-32f8-af58-bf3933436bff,SESCO,II.1.1,San Luis,AR-D,annual,2013,gas oil combustion consumption by to the public,242.713653252,TJ,CH4,3.9,kg/TJ,946.5832476828,kg +8e8e5faf-46a2-32f8-af58-bf3933436bff,SESCO,II.1.1,San Luis,AR-D,annual,2013,gas oil combustion consumption by to the public,242.713653252,TJ,N2O,3.9,kg/TJ,946.5832476828,kg +b56da935-188c-36e3-b922-0ddc36e0ba4c,SESCO,II.1.1,Santa Fe,AR-S,annual,2013,gas oil combustion consumption by to the public,3896.6838146040004,TJ,CO2,74100.0,kg/TJ,288744270.6621564,kg +47868d41-4b69-34c5-9ec8-b0aff810e921,SESCO,II.1.1,Santa Fe,AR-S,annual,2013,gas oil combustion consumption by to the public,3896.6838146040004,TJ,CH4,3.9,kg/TJ,15197.066876955601,kg +47868d41-4b69-34c5-9ec8-b0aff810e921,SESCO,II.1.1,Santa Fe,AR-S,annual,2013,gas oil combustion consumption by to the public,3896.6838146040004,TJ,N2O,3.9,kg/TJ,15197.066876955601,kg +1fbb2f0f-2206-362c-b8e0-2c86334da6c3,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2013,gas oil combustion consumption by to the public,198.622680816,TJ,CO2,74100.0,kg/TJ,14717940.648465602,kg +0f4c2e47-7976-3e01-969a-0cb43b5dc994,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2013,gas oil combustion consumption by to the public,198.622680816,TJ,CH4,3.9,kg/TJ,774.6284551824,kg +0f4c2e47-7976-3e01-969a-0cb43b5dc994,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2013,gas oil combustion consumption by to the public,198.622680816,TJ,N2O,3.9,kg/TJ,774.6284551824,kg +c4c22984-e5f4-3eba-be37-e2f35c18f570,SESCO,II.1.1,Tucuman,AR-T,annual,2013,gas oil combustion consumption by to the public,460.78998814799996,TJ,CO2,74100.0,kg/TJ,34144538.1217668,kg +6e28dbcb-4d1b-3ec2-a05e-298e42a184c2,SESCO,II.1.1,Tucuman,AR-T,annual,2013,gas oil combustion consumption by to the public,460.78998814799996,TJ,CH4,3.9,kg/TJ,1797.0809537771997,kg +6e28dbcb-4d1b-3ec2-a05e-298e42a184c2,SESCO,II.1.1,Tucuman,AR-T,annual,2013,gas oil combustion consumption by to the public,460.78998814799996,TJ,N2O,3.9,kg/TJ,1797.0809537771997,kg +8c49abda-bf8c-38be-b529-cfe290742d69,SESCO,II.1.1,Buenos Aires,AR-B,annual,2013,gas oil combustion consumption by to the public,57.996706488,TJ,CO2,74100.0,kg/TJ,4297555.9507608,kg +cb140fa0-d52e-3c4f-953d-97dc50764f2d,SESCO,II.1.1,Buenos Aires,AR-B,annual,2013,gas oil combustion consumption by to the public,57.996706488,TJ,CH4,3.9,kg/TJ,226.1871553032,kg +cb140fa0-d52e-3c4f-953d-97dc50764f2d,SESCO,II.1.1,Buenos Aires,AR-B,annual,2013,gas oil combustion consumption by to the public,57.996706488,TJ,N2O,3.9,kg/TJ,226.1871553032,kg +c1f15bc0-949d-3785-bedd-a37b8335fab1,SESCO,II.1.1,Capital Federal,AR-C,annual,2013,gas oil combustion consumption by to the public,1.2508608840000002,TJ,CO2,74100.0,kg/TJ,92688.79150440001,kg +ae50dbd0-5f74-3d3f-badc-98597aedf7d5,SESCO,II.1.1,Capital Federal,AR-C,annual,2013,gas oil combustion consumption by to the public,1.2508608840000002,TJ,CH4,3.9,kg/TJ,4.878357447600001,kg +ae50dbd0-5f74-3d3f-badc-98597aedf7d5,SESCO,II.1.1,Capital Federal,AR-C,annual,2013,gas oil combustion consumption by to the public,1.2508608840000002,TJ,N2O,3.9,kg/TJ,4.878357447600001,kg +f4efe4bd-a526-3953-955d-b8244503702d,SESCO,II.1.1,Corrientes,AR-W,annual,2013,gas oil combustion consumption by to the public,1.104004188,TJ,CO2,74100.0,kg/TJ,81806.7103308,kg +c798540e-15ed-3dce-a0c2-8a8c15fce4a0,SESCO,II.1.1,Corrientes,AR-W,annual,2013,gas oil combustion consumption by to the public,1.104004188,TJ,CH4,3.9,kg/TJ,4.3056163332,kg +c798540e-15ed-3dce-a0c2-8a8c15fce4a0,SESCO,II.1.1,Corrientes,AR-W,annual,2013,gas oil combustion consumption by to the public,1.104004188,TJ,N2O,3.9,kg/TJ,4.3056163332,kg +bf67b487-ae4a-3866-a0bf-0bfe6197ebb6,SESCO,II.1.1,Córdoba,AR-X,annual,2013,gas oil combustion consumption by to the public,22.584929388,TJ,CO2,74100.0,kg/TJ,1673543.2676507998,kg +ea9d1826-0693-3134-b5c8-884210dd9742,SESCO,II.1.1,Córdoba,AR-X,annual,2013,gas oil combustion consumption by to the public,22.584929388,TJ,CH4,3.9,kg/TJ,88.08122461319999,kg +ea9d1826-0693-3134-b5c8-884210dd9742,SESCO,II.1.1,Córdoba,AR-X,annual,2013,gas oil combustion consumption by to the public,22.584929388,TJ,N2O,3.9,kg/TJ,88.08122461319999,kg +fa0a7ab8-81d9-3279-b570-ec5296213463,SESCO,II.1.1,Entre Rios,AR-E,annual,2013,gas oil combustion consumption by to the public,22.786045548,TJ,CO2,74100.0,kg/TJ,1688445.9751068,kg +15055bd3-5637-35d3-bf88-9192cac4d4ca,SESCO,II.1.1,Entre Rios,AR-E,annual,2013,gas oil combustion consumption by to the public,22.786045548,TJ,CH4,3.9,kg/TJ,88.8655776372,kg +15055bd3-5637-35d3-bf88-9192cac4d4ca,SESCO,II.1.1,Entre Rios,AR-E,annual,2013,gas oil combustion consumption by to the public,22.786045548,TJ,N2O,3.9,kg/TJ,88.8655776372,kg +529aa6ab-e2d8-3198-96d0-a929c09abf38,SESCO,II.1.1,Mendoza,AR-M,annual,2013,gas oil combustion consumption by to the public,16.605191148,TJ,CO2,74100.0,kg/TJ,1230444.6640668,kg +148f7a96-d894-39ba-84a2-c680928287c1,SESCO,II.1.1,Mendoza,AR-M,annual,2013,gas oil combustion consumption by to the public,16.605191148,TJ,CH4,3.9,kg/TJ,64.7602454772,kg +148f7a96-d894-39ba-84a2-c680928287c1,SESCO,II.1.1,Mendoza,AR-M,annual,2013,gas oil combustion consumption by to the public,16.605191148,TJ,N2O,3.9,kg/TJ,64.7602454772,kg +a48ff07f-d7bc-363b-a513-6186812a0e6c,SESCO,II.1.1,Misiones,AR-N,annual,2013,gas oil combustion consumption by to the public,16.063387536,TJ,CO2,74100.0,kg/TJ,1190297.0164176,kg +08cd030c-f3d4-3bc2-a321-6fc0b36efd3c,SESCO,II.1.1,Misiones,AR-N,annual,2013,gas oil combustion consumption by to the public,16.063387536,TJ,CH4,3.9,kg/TJ,62.6472113904,kg +08cd030c-f3d4-3bc2-a321-6fc0b36efd3c,SESCO,II.1.1,Misiones,AR-N,annual,2013,gas oil combustion consumption by to the public,16.063387536,TJ,N2O,3.9,kg/TJ,62.6472113904,kg +95ef1b66-f7c0-3b19-b60d-e94c7e276750,SESCO,II.1.1,San Luis,AR-D,annual,2013,gas oil combustion consumption by to the public,9.549084132,TJ,CO2,74100.0,kg/TJ,707587.1341812001,kg +65ac39bf-62a6-3dc3-a1f0-a11b472db088,SESCO,II.1.1,San Luis,AR-D,annual,2013,gas oil combustion consumption by to the public,9.549084132,TJ,CH4,3.9,kg/TJ,37.2414281148,kg +65ac39bf-62a6-3dc3-a1f0-a11b472db088,SESCO,II.1.1,San Luis,AR-D,annual,2013,gas oil combustion consumption by to the public,9.549084132,TJ,N2O,3.9,kg/TJ,37.2414281148,kg +2d19ee62-fcef-3f43-8efd-6a995ff86ec1,SESCO,II.1.1,Santa Fe,AR-S,annual,2013,gas oil combustion consumption by to the public,82.560412284,TJ,CO2,74100.0,kg/TJ,6117726.550244399,kg +d4ff3a0e-3e44-3ee9-802c-cbce9f4699fe,SESCO,II.1.1,Santa Fe,AR-S,annual,2013,gas oil combustion consumption by to the public,82.560412284,TJ,CH4,3.9,kg/TJ,321.98560790759996,kg +d4ff3a0e-3e44-3ee9-802c-cbce9f4699fe,SESCO,II.1.1,Santa Fe,AR-S,annual,2013,gas oil combustion consumption by to the public,82.560412284,TJ,N2O,3.9,kg/TJ,321.98560790759996,kg +3ab4e26d-65a3-32a2-97ae-e27dd0b44d19,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2013,gas oil combustion consumption by to the public,5.144325984,TJ,CO2,74100.0,kg/TJ,381194.5554144,kg +c6bd9a32-b962-3f58-9f04-65ea1ac93332,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2013,gas oil combustion consumption by to the public,5.144325984,TJ,CH4,3.9,kg/TJ,20.0628713376,kg +c6bd9a32-b962-3f58-9f04-65ea1ac93332,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2013,gas oil combustion consumption by to the public,5.144325984,TJ,N2O,3.9,kg/TJ,20.0628713376,kg +fd4b0ff8-56c9-3cbe-bf98-13204657b3a4,SESCO,II.1.1,Tucuman,AR-T,annual,2013,gas oil combustion consumption by to the public,2.249676408,TJ,CO2,74100.0,kg/TJ,166701.0218328,kg +9bc9f425-95bb-3137-975b-d10cf3b29ee2,SESCO,II.1.1,Tucuman,AR-T,annual,2013,gas oil combustion consumption by to the public,2.249676408,TJ,CH4,3.9,kg/TJ,8.773737991199999,kg +9bc9f425-95bb-3137-975b-d10cf3b29ee2,SESCO,II.1.1,Tucuman,AR-T,annual,2013,gas oil combustion consumption by to the public,2.249676408,TJ,N2O,3.9,kg/TJ,8.773737991199999,kg +357299e6-5eea-3f2c-aba0-e6400d02f6b9,SESCO,II.1.1,Buenos Aires,AR-B,annual,2013,gas oil combustion consumption by public passenger transport,339.633647388,TJ,CO2,74100.0,kg/TJ,25166853.2714508,kg +3a25d8d7-1580-35e5-9d56-6fd074d6c1c8,SESCO,II.1.1,Buenos Aires,AR-B,annual,2013,gas oil combustion consumption by public passenger transport,339.633647388,TJ,CH4,3.9,kg/TJ,1324.5712248132,kg +3a25d8d7-1580-35e5-9d56-6fd074d6c1c8,SESCO,II.1.1,Buenos Aires,AR-B,annual,2013,gas oil combustion consumption by public passenger transport,339.633647388,TJ,N2O,3.9,kg/TJ,1324.5712248132,kg +785f4fc7-fbcd-3504-9b86-535eb0a16303,SESCO,II.1.1,Chaco,AR-H,annual,2013,gas oil combustion consumption by public passenger transport,10.02676752,TJ,CO2,74100.0,kg/TJ,742983.473232,kg +f974ccef-a38e-391a-97a3-f1d94cd235dd,SESCO,II.1.1,Chaco,AR-H,annual,2013,gas oil combustion consumption by public passenger transport,10.02676752,TJ,CH4,3.9,kg/TJ,39.104393328,kg +f974ccef-a38e-391a-97a3-f1d94cd235dd,SESCO,II.1.1,Chaco,AR-H,annual,2013,gas oil combustion consumption by public passenger transport,10.02676752,TJ,N2O,3.9,kg/TJ,39.104393328,kg +35cad524-9788-33dd-a712-25e73714b1ab,SESCO,II.1.1,Corrientes,AR-W,annual,2013,gas oil combustion consumption by public passenger transport,34.600193208,TJ,CO2,74100.0,kg/TJ,2563874.3167128,kg +d6d44add-3627-3a93-900c-f5f5a334e179,SESCO,II.1.1,Corrientes,AR-W,annual,2013,gas oil combustion consumption by public passenger transport,34.600193208,TJ,CH4,3.9,kg/TJ,134.9407535112,kg +d6d44add-3627-3a93-900c-f5f5a334e179,SESCO,II.1.1,Corrientes,AR-W,annual,2013,gas oil combustion consumption by public passenger transport,34.600193208,TJ,N2O,3.9,kg/TJ,134.9407535112,kg +3f08371b-f191-3d94-a84e-ae6aad55c3b5,SESCO,II.1.1,Córdoba,AR-X,annual,2013,gas oil combustion consumption by public passenger transport,307.849521084,TJ,CO2,74100.0,kg/TJ,22811649.5123244,kg +8fd4a005-7c16-3284-b3fb-70fadda96e5a,SESCO,II.1.1,Córdoba,AR-X,annual,2013,gas oil combustion consumption by public passenger transport,307.849521084,TJ,CH4,3.9,kg/TJ,1200.6131322276,kg +8fd4a005-7c16-3284-b3fb-70fadda96e5a,SESCO,II.1.1,Córdoba,AR-X,annual,2013,gas oil combustion consumption by public passenger transport,307.849521084,TJ,N2O,3.9,kg/TJ,1200.6131322276,kg +0c076875-a0e9-3634-9493-5e513c7979b9,SESCO,II.1.1,Entre Rios,AR-E,annual,2013,gas oil combustion consumption by public passenger transport,89.19846641999999,TJ,CO2,74100.0,kg/TJ,6609606.361721999,kg +b2f01721-fb7d-3b06-a15f-42d491971334,SESCO,II.1.1,Entre Rios,AR-E,annual,2013,gas oil combustion consumption by public passenger transport,89.19846641999999,TJ,CH4,3.9,kg/TJ,347.874019038,kg +b2f01721-fb7d-3b06-a15f-42d491971334,SESCO,II.1.1,Entre Rios,AR-E,annual,2013,gas oil combustion consumption by public passenger transport,89.19846641999999,TJ,N2O,3.9,kg/TJ,347.874019038,kg +06b4e73c-6792-373a-b557-7db8f9e535f8,SESCO,II.1.1,Jujuy,AR-Y,annual,2013,gas oil combustion consumption by public passenger transport,198.589067544,TJ,CO2,74100.0,kg/TJ,14715449.905010398,kg +8a0a4c50-98e1-3dc9-8725-451e3496ec30,SESCO,II.1.1,Jujuy,AR-Y,annual,2013,gas oil combustion consumption by public passenger transport,198.589067544,TJ,CH4,3.9,kg/TJ,774.4973634216,kg +8a0a4c50-98e1-3dc9-8725-451e3496ec30,SESCO,II.1.1,Jujuy,AR-Y,annual,2013,gas oil combustion consumption by public passenger transport,198.589067544,TJ,N2O,3.9,kg/TJ,774.4973634216,kg +62d3805b-db95-3641-8e58-b739a890b357,SESCO,II.1.1,Misiones,AR-N,annual,2013,gas oil combustion consumption by public passenger transport,106.313859792,TJ,CO2,74100.0,kg/TJ,7877857.0105872005,kg +e58b5adc-c5dd-3236-8878-9a789e5a0650,SESCO,II.1.1,Misiones,AR-N,annual,2013,gas oil combustion consumption by public passenger transport,106.313859792,TJ,CH4,3.9,kg/TJ,414.6240531888,kg +e58b5adc-c5dd-3236-8878-9a789e5a0650,SESCO,II.1.1,Misiones,AR-N,annual,2013,gas oil combustion consumption by public passenger transport,106.313859792,TJ,N2O,3.9,kg/TJ,414.6240531888,kg +b7276b9c-51aa-32aa-8577-a6ae5eb9327d,SESCO,II.1.1,Salta,AR-A,annual,2013,gas oil combustion consumption by public passenger transport,77.477660064,TJ,CO2,74100.0,kg/TJ,5741094.6107424,kg +163499a0-ff9e-3db0-9648-4514f9669fc9,SESCO,II.1.1,Salta,AR-A,annual,2013,gas oil combustion consumption by public passenger transport,77.477660064,TJ,CH4,3.9,kg/TJ,302.1628742496,kg +163499a0-ff9e-3db0-9648-4514f9669fc9,SESCO,II.1.1,Salta,AR-A,annual,2013,gas oil combustion consumption by public passenger transport,77.477660064,TJ,N2O,3.9,kg/TJ,302.1628742496,kg +f2919f2d-1231-34e8-ae62-d8f61cddcd73,SESCO,II.1.1,Santa Fe,AR-S,annual,2013,gas oil combustion consumption by public passenger transport,231.107311176,TJ,CO2,74100.0,kg/TJ,17125051.7581416,kg +b9636763-46ea-3ffc-9ab5-77114c2d02d9,SESCO,II.1.1,Santa Fe,AR-S,annual,2013,gas oil combustion consumption by public passenger transport,231.107311176,TJ,CH4,3.9,kg/TJ,901.3185135864,kg +b9636763-46ea-3ffc-9ab5-77114c2d02d9,SESCO,II.1.1,Santa Fe,AR-S,annual,2013,gas oil combustion consumption by public passenger transport,231.107311176,TJ,N2O,3.9,kg/TJ,901.3185135864,kg +b442a47b-c6ca-307c-b3fe-d23e24a698c9,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2013,gas oil combustion consumption by public passenger transport,108.047999052,TJ,CO2,74100.0,kg/TJ,8006356.7297532,kg +7315bcc9-145b-3e67-ac3a-c51ce397652d,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2013,gas oil combustion consumption by public passenger transport,108.047999052,TJ,CH4,3.9,kg/TJ,421.38719630279996,kg +7315bcc9-145b-3e67-ac3a-c51ce397652d,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2013,gas oil combustion consumption by public passenger transport,108.047999052,TJ,N2O,3.9,kg/TJ,421.38719630279996,kg +952a272f-1320-3e66-baa5-612f680967a1,SESCO,II.1.1,Tucuman,AR-T,annual,2013,gas oil combustion consumption by public passenger transport,32.633217204,TJ,CO2,74100.0,kg/TJ,2418121.3948164,kg +09339339-5d14-30e9-b566-1734b97df6b2,SESCO,II.1.1,Tucuman,AR-T,annual,2013,gas oil combustion consumption by public passenger transport,32.633217204,TJ,CH4,3.9,kg/TJ,127.26954709559999,kg +09339339-5d14-30e9-b566-1734b97df6b2,SESCO,II.1.1,Tucuman,AR-T,annual,2013,gas oil combustion consumption by public passenger transport,32.633217204,TJ,N2O,3.9,kg/TJ,127.26954709559999,kg +9b8933e1-b220-3820-97b9-0f2c3e86c48f,SESCO,II.5.1,Buenos Aires,AR-B,annual,2013,gas oil combustion consumption by agriculture machines,559.61969364,TJ,CO2,74100.0,kg/TJ,41467819.298724,kg +9fce57d0-48c1-3f92-998e-1a0f091691da,SESCO,II.5.1,Buenos Aires,AR-B,annual,2013,gas oil combustion consumption by agriculture machines,559.61969364,TJ,CH4,3.9,kg/TJ,2182.516805196,kg +9fce57d0-48c1-3f92-998e-1a0f091691da,SESCO,II.5.1,Buenos Aires,AR-B,annual,2013,gas oil combustion consumption by agriculture machines,559.61969364,TJ,N2O,3.9,kg/TJ,2182.516805196,kg +1d6c392c-d113-306f-9a24-f2bd84467f91,SESCO,II.5.1,Córdoba,AR-X,annual,2013,gas oil combustion consumption by agriculture machines,51.13634819999999,TJ,CO2,74100.0,kg/TJ,3789203.4016199997,kg +e6b3996b-97ee-3ca5-b91c-35d4e2ed17c0,SESCO,II.5.1,Córdoba,AR-X,annual,2013,gas oil combustion consumption by agriculture machines,51.13634819999999,TJ,CH4,3.9,kg/TJ,199.43175797999996,kg +e6b3996b-97ee-3ca5-b91c-35d4e2ed17c0,SESCO,II.5.1,Córdoba,AR-X,annual,2013,gas oil combustion consumption by agriculture machines,51.13634819999999,TJ,N2O,3.9,kg/TJ,199.43175797999996,kg +1cebf266-822d-3ea2-903b-c16a8e6a30ae,SESCO,II.5.1,Neuquén,AR-Q,annual,2013,gas oil combustion consumption by agriculture machines,109.79089379999999,TJ,CO2,74100.0,kg/TJ,8135505.230579999,kg +83131ec8-7c78-3ce5-a588-6fcb59e3216f,SESCO,II.5.1,Neuquén,AR-Q,annual,2013,gas oil combustion consumption by agriculture machines,109.79089379999999,TJ,CH4,3.9,kg/TJ,428.18448581999996,kg +83131ec8-7c78-3ce5-a588-6fcb59e3216f,SESCO,II.5.1,Neuquén,AR-Q,annual,2013,gas oil combustion consumption by agriculture machines,109.79089379999999,TJ,N2O,3.9,kg/TJ,428.18448581999996,kg +36fee0c3-ec9d-37a7-9396-7c61dcb70938,SESCO,II.5.1,Rio Negro,AR-R,annual,2013,gas oil combustion consumption by agriculture machines,3.6378258,TJ,CO2,74100.0,kg/TJ,269562.89178,kg +f1a8ef7b-bc20-35e1-8354-2b34989d89e2,SESCO,II.5.1,Rio Negro,AR-R,annual,2013,gas oil combustion consumption by agriculture machines,3.6378258,TJ,CH4,3.9,kg/TJ,14.187520619999999,kg +f1a8ef7b-bc20-35e1-8354-2b34989d89e2,SESCO,II.5.1,Rio Negro,AR-R,annual,2013,gas oil combustion consumption by agriculture machines,3.6378258,TJ,N2O,3.9,kg/TJ,14.187520619999999,kg +6b733a5a-2035-3db9-b27b-784e0cc44b2f,SESCO,II.5.1,Santa Cruz,AR-Z,annual,2013,gas oil combustion consumption by agriculture machines,0.68566596,TJ,CO2,74100.0,kg/TJ,50807.847636,kg +0f1332d1-1300-39ae-937d-c8f57064ca50,SESCO,II.5.1,Santa Cruz,AR-Z,annual,2013,gas oil combustion consumption by agriculture machines,0.68566596,TJ,CH4,3.9,kg/TJ,2.674097244,kg +0f1332d1-1300-39ae-937d-c8f57064ca50,SESCO,II.5.1,Santa Cruz,AR-Z,annual,2013,gas oil combustion consumption by agriculture machines,0.68566596,TJ,N2O,3.9,kg/TJ,2.674097244,kg +4c128b43-d8b2-3845-bf8f-53910b5956cf,SESCO,II.5.1,Santa Fe,AR-S,annual,2013,gas oil combustion consumption by agriculture machines,3.1048751999999995,TJ,CO2,74100.0,kg/TJ,230071.25231999997,kg +a2583d68-5ef0-37bb-88eb-174d3d1b3c5a,SESCO,II.5.1,Santa Fe,AR-S,annual,2013,gas oil combustion consumption by agriculture machines,3.1048751999999995,TJ,CH4,3.9,kg/TJ,12.109013279999997,kg +a2583d68-5ef0-37bb-88eb-174d3d1b3c5a,SESCO,II.5.1,Santa Fe,AR-S,annual,2013,gas oil combustion consumption by agriculture machines,3.1048751999999995,TJ,N2O,3.9,kg/TJ,12.109013279999997,kg +5359dd43-5dc2-3e60-b0c8-d88d057c2c31,SESCO,II.1.1,Buenos Aires,AR-B,annual,2013,gas oil combustion consumption by to the public,9042.09340944,TJ,CO2,74100.0,kg/TJ,670019121.639504,kg +9f960941-54e3-3f50-ab7a-4da792095c86,SESCO,II.1.1,Buenos Aires,AR-B,annual,2013,gas oil combustion consumption by to the public,9042.09340944,TJ,CH4,3.9,kg/TJ,35264.164296816,kg +9f960941-54e3-3f50-ab7a-4da792095c86,SESCO,II.1.1,Buenos Aires,AR-B,annual,2013,gas oil combustion consumption by to the public,9042.09340944,TJ,N2O,3.9,kg/TJ,35264.164296816,kg +1cdfd7ae-14df-3675-bb2f-2e21b55eacf9,SESCO,II.1.1,Capital Federal,AR-C,annual,2013,gas oil combustion consumption by to the public,642.94271832,TJ,CO2,74100.0,kg/TJ,47642055.427512005,kg +121b0009-ad91-3144-afc5-10f4e24c7cd7,SESCO,II.1.1,Capital Federal,AR-C,annual,2013,gas oil combustion consumption by to the public,642.94271832,TJ,CH4,3.9,kg/TJ,2507.476601448,kg +121b0009-ad91-3144-afc5-10f4e24c7cd7,SESCO,II.1.1,Capital Federal,AR-C,annual,2013,gas oil combustion consumption by to the public,642.94271832,TJ,N2O,3.9,kg/TJ,2507.476601448,kg +9157e94a-1815-3bf1-926d-f511df2b5d55,SESCO,II.1.1,Chaco,AR-H,annual,2013,gas oil combustion consumption by to the public,7.64729028,TJ,CO2,74100.0,kg/TJ,566664.209748,kg +4e14c07d-86b3-3966-9607-caa927b1c086,SESCO,II.1.1,Chaco,AR-H,annual,2013,gas oil combustion consumption by to the public,7.64729028,TJ,CH4,3.9,kg/TJ,29.824432092,kg +4e14c07d-86b3-3966-9607-caa927b1c086,SESCO,II.1.1,Chaco,AR-H,annual,2013,gas oil combustion consumption by to the public,7.64729028,TJ,N2O,3.9,kg/TJ,29.824432092,kg +b1781460-a6e9-332f-8025-c527baf40963,SESCO,II.1.1,Chubut,AR-U,annual,2013,gas oil combustion consumption by to the public,1649.06441532,TJ,CO2,74100.0,kg/TJ,122195673.17521201,kg +d50573b2-aef1-3546-8c13-6c890d8058dc,SESCO,II.1.1,Chubut,AR-U,annual,2013,gas oil combustion consumption by to the public,1649.06441532,TJ,CH4,3.9,kg/TJ,6431.351219748,kg +d50573b2-aef1-3546-8c13-6c890d8058dc,SESCO,II.1.1,Chubut,AR-U,annual,2013,gas oil combustion consumption by to the public,1649.06441532,TJ,N2O,3.9,kg/TJ,6431.351219748,kg +0ab76e5b-25bc-31a6-bd5a-ebbdc082de4b,SESCO,II.1.1,Córdoba,AR-X,annual,2013,gas oil combustion consumption by to the public,657.95675484,TJ,CO2,74100.0,kg/TJ,48754595.533644006,kg +be3d30b9-fd38-3f95-9741-a51358afa39f,SESCO,II.1.1,Córdoba,AR-X,annual,2013,gas oil combustion consumption by to the public,657.95675484,TJ,CH4,3.9,kg/TJ,2566.031343876,kg +be3d30b9-fd38-3f95-9741-a51358afa39f,SESCO,II.1.1,Córdoba,AR-X,annual,2013,gas oil combustion consumption by to the public,657.95675484,TJ,N2O,3.9,kg/TJ,2566.031343876,kg +bea2df9a-0343-3a89-9211-5d69c366eb46,SESCO,II.1.1,Entre Rios,AR-E,annual,2013,gas oil combustion consumption by to the public,487.31521943999996,TJ,CO2,74100.0,kg/TJ,36110057.760504,kg +5a747a69-f703-3fec-8036-9cc7599d5b6a,SESCO,II.1.1,Entre Rios,AR-E,annual,2013,gas oil combustion consumption by to the public,487.31521943999996,TJ,CH4,3.9,kg/TJ,1900.529355816,kg +5a747a69-f703-3fec-8036-9cc7599d5b6a,SESCO,II.1.1,Entre Rios,AR-E,annual,2013,gas oil combustion consumption by to the public,487.31521943999996,TJ,N2O,3.9,kg/TJ,1900.529355816,kg +edede6f5-65e5-3adb-9687-b0de7886b272,SESCO,II.1.1,La Pampa,AR-L,annual,2013,gas oil combustion consumption by to the public,541.22211612,TJ,CO2,74100.0,kg/TJ,40104558.804492004,kg +3b53ae36-18ad-3c3b-9ece-2c1bb147cfef,SESCO,II.1.1,La Pampa,AR-L,annual,2013,gas oil combustion consumption by to the public,541.22211612,TJ,CH4,3.9,kg/TJ,2110.766252868,kg +3b53ae36-18ad-3c3b-9ece-2c1bb147cfef,SESCO,II.1.1,La Pampa,AR-L,annual,2013,gas oil combustion consumption by to the public,541.22211612,TJ,N2O,3.9,kg/TJ,2110.766252868,kg +e45d8719-d2c2-3561-8e15-0bf7da8e31da,SESCO,II.1.1,La Rioja,AR-F,annual,2013,gas oil combustion consumption by to the public,1.29139836,TJ,CO2,74100.0,kg/TJ,95692.618476,kg +c3c0636c-f4da-3916-b907-24520986fbaf,SESCO,II.1.1,La Rioja,AR-F,annual,2013,gas oil combustion consumption by to the public,1.29139836,TJ,CH4,3.9,kg/TJ,5.036453604,kg +c3c0636c-f4da-3916-b907-24520986fbaf,SESCO,II.1.1,La Rioja,AR-F,annual,2013,gas oil combustion consumption by to the public,1.29139836,TJ,N2O,3.9,kg/TJ,5.036453604,kg +3d128aff-a568-39a9-b3b9-a8eb0056cf93,SESCO,II.1.1,Mendoza,AR-M,annual,2013,gas oil combustion consumption by to the public,67.66153716,TJ,CO2,74100.0,kg/TJ,5013719.9035559995,kg +8e4fe2e8-4566-3bf2-aef1-4ce22bb136ca,SESCO,II.1.1,Mendoza,AR-M,annual,2013,gas oil combustion consumption by to the public,67.66153716,TJ,CH4,3.9,kg/TJ,263.87999492399996,kg +8e4fe2e8-4566-3bf2-aef1-4ce22bb136ca,SESCO,II.1.1,Mendoza,AR-M,annual,2013,gas oil combustion consumption by to the public,67.66153716,TJ,N2O,3.9,kg/TJ,263.87999492399996,kg +0fafef24-13a9-312e-b8b1-8aa7e1ea25ce,SESCO,II.1.1,Neuquén,AR-Q,annual,2013,gas oil combustion consumption by to the public,1041.1967453999998,TJ,CO2,74100.0,kg/TJ,77152678.83413999,kg +7cc58d51-4ea8-38ca-95dc-4cb22e95073f,SESCO,II.1.1,Neuquén,AR-Q,annual,2013,gas oil combustion consumption by to the public,1041.1967453999998,TJ,CH4,3.9,kg/TJ,4060.667307059999,kg +7cc58d51-4ea8-38ca-95dc-4cb22e95073f,SESCO,II.1.1,Neuquén,AR-Q,annual,2013,gas oil combustion consumption by to the public,1041.1967453999998,TJ,N2O,3.9,kg/TJ,4060.667307059999,kg +a1783c87-d134-3842-ae8f-027af460305a,SESCO,II.1.1,Rio Negro,AR-R,annual,2013,gas oil combustion consumption by to the public,1858.73877588,TJ,CO2,74100.0,kg/TJ,137732543.292708,kg +a59b8d53-8add-3458-aceb-3c31c14cabf2,SESCO,II.1.1,Rio Negro,AR-R,annual,2013,gas oil combustion consumption by to the public,1858.73877588,TJ,CH4,3.9,kg/TJ,7249.081225932,kg +a59b8d53-8add-3458-aceb-3c31c14cabf2,SESCO,II.1.1,Rio Negro,AR-R,annual,2013,gas oil combustion consumption by to the public,1858.73877588,TJ,N2O,3.9,kg/TJ,7249.081225932,kg +387f1cc2-e2f2-3923-bbd0-44bf19e0ed74,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2013,gas oil combustion consumption by to the public,1322.58458472,TJ,CO2,74100.0,kg/TJ,98003517.727752,kg +b58af572-b02a-3854-bd48-3c13c1ba97c4,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2013,gas oil combustion consumption by to the public,1322.58458472,TJ,CH4,3.9,kg/TJ,5158.0798804080005,kg +b58af572-b02a-3854-bd48-3c13c1ba97c4,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2013,gas oil combustion consumption by to the public,1322.58458472,TJ,N2O,3.9,kg/TJ,5158.0798804080005,kg +e6151674-f094-3e70-9c2d-ad98c1084d31,SESCO,II.1.1,Santa Fe,AR-S,annual,2013,gas oil combustion consumption by to the public,531.79699944,TJ,CO2,74100.0,kg/TJ,39406157.658504,kg +653001c6-7737-36c4-86db-7f0dba41110c,SESCO,II.1.1,Santa Fe,AR-S,annual,2013,gas oil combustion consumption by to the public,531.79699944,TJ,CH4,3.9,kg/TJ,2074.008297816,kg +653001c6-7737-36c4-86db-7f0dba41110c,SESCO,II.1.1,Santa Fe,AR-S,annual,2013,gas oil combustion consumption by to the public,531.79699944,TJ,N2O,3.9,kg/TJ,2074.008297816,kg +3ab2b460-fd8b-387f-8240-eb659db0aa4c,SESCO,II.1.1,Buenos Aires,AR-B,annual,2013,gas oil combustion consumption by to the public,849.1892908799999,TJ,CO2,74100.0,kg/TJ,62924926.454207994,kg +0767f6ed-1e27-38a4-ab53-84c341b57609,SESCO,II.1.1,Buenos Aires,AR-B,annual,2013,gas oil combustion consumption by to the public,849.1892908799999,TJ,CH4,3.9,kg/TJ,3311.838234432,kg +0767f6ed-1e27-38a4-ab53-84c341b57609,SESCO,II.1.1,Buenos Aires,AR-B,annual,2013,gas oil combustion consumption by to the public,849.1892908799999,TJ,N2O,3.9,kg/TJ,3311.838234432,kg +1155ba97-ca21-3f71-8049-01d075bf1a8d,SESCO,II.1.1,Capital Federal,AR-C,annual,2013,gas oil combustion consumption by to the public,92.0259942,TJ,CO2,74100.0,kg/TJ,6819126.17022,kg +37bc5f87-87ea-3fcb-8c91-d47e37db5167,SESCO,II.1.1,Capital Federal,AR-C,annual,2013,gas oil combustion consumption by to the public,92.0259942,TJ,CH4,3.9,kg/TJ,358.90137738,kg +37bc5f87-87ea-3fcb-8c91-d47e37db5167,SESCO,II.1.1,Capital Federal,AR-C,annual,2013,gas oil combustion consumption by to the public,92.0259942,TJ,N2O,3.9,kg/TJ,358.90137738,kg +daecc2d9-d2bb-3976-ba1a-7376d369caf2,SESCO,II.1.1,Córdoba,AR-X,annual,2013,gas oil combustion consumption by to the public,62.58631596,TJ,CO2,74100.0,kg/TJ,4637646.012636,kg +2f2218e0-9a64-301c-8377-8caf71dfde82,SESCO,II.1.1,Córdoba,AR-X,annual,2013,gas oil combustion consumption by to the public,62.58631596,TJ,CH4,3.9,kg/TJ,244.086632244,kg +2f2218e0-9a64-301c-8377-8caf71dfde82,SESCO,II.1.1,Córdoba,AR-X,annual,2013,gas oil combustion consumption by to the public,62.58631596,TJ,N2O,3.9,kg/TJ,244.086632244,kg +5526c441-3b7d-3266-8336-c8c1ab9d0017,SESCO,II.1.1,Entre Rios,AR-E,annual,2013,gas oil combustion consumption by to the public,70.61535852,TJ,CO2,74100.0,kg/TJ,5232598.066332,kg +c28d239a-bed9-35e1-af52-e0f083da4361,SESCO,II.1.1,Entre Rios,AR-E,annual,2013,gas oil combustion consumption by to the public,70.61535852,TJ,CH4,3.9,kg/TJ,275.399898228,kg +c28d239a-bed9-35e1-af52-e0f083da4361,SESCO,II.1.1,Entre Rios,AR-E,annual,2013,gas oil combustion consumption by to the public,70.61535852,TJ,N2O,3.9,kg/TJ,275.399898228,kg +ad149aee-6f00-31c3-b0f3-76a17842ca9c,SESCO,II.1.1,La Pampa,AR-L,annual,2013,gas oil combustion consumption by to the public,9.17054292,TJ,CO2,74100.0,kg/TJ,679537.230372,kg +7727c003-50c9-3ebb-aabb-4a3db5f0efb1,SESCO,II.1.1,La Pampa,AR-L,annual,2013,gas oil combustion consumption by to the public,9.17054292,TJ,CH4,3.9,kg/TJ,35.765117388,kg +7727c003-50c9-3ebb-aabb-4a3db5f0efb1,SESCO,II.1.1,La Pampa,AR-L,annual,2013,gas oil combustion consumption by to the public,9.17054292,TJ,N2O,3.9,kg/TJ,35.765117388,kg +02635024-b073-3db8-ba7f-484a9741a7bb,SESCO,II.1.1,Santa Fe,AR-S,annual,2013,gas oil combustion consumption by to the public,105.36948072,TJ,CO2,74100.0,kg/TJ,7807878.521352,kg +9e7417fb-f938-3823-8b8a-ce043fc487ec,SESCO,II.1.1,Santa Fe,AR-S,annual,2013,gas oil combustion consumption by to the public,105.36948072,TJ,CH4,3.9,kg/TJ,410.94097480799996,kg +9e7417fb-f938-3823-8b8a-ce043fc487ec,SESCO,II.1.1,Santa Fe,AR-S,annual,2013,gas oil combustion consumption by to the public,105.36948072,TJ,N2O,3.9,kg/TJ,410.94097480799996,kg +be69c9dd-b6e6-306b-8601-067039a1c705,SESCO,II.2.1,Buenos Aires,AR-B,annual,2013,gas oil combustion consumption by railway transport,41.328215039999996,TJ,CO2,74100.0,kg/TJ,3062420.7344639995,kg +a233079f-6928-3e4e-9e65-40ad69dd7391,SESCO,II.2.1,Buenos Aires,AR-B,annual,2013,gas oil combustion consumption by railway transport,41.328215039999996,TJ,CH4,3.9,kg/TJ,161.180038656,kg +a233079f-6928-3e4e-9e65-40ad69dd7391,SESCO,II.2.1,Buenos Aires,AR-B,annual,2013,gas oil combustion consumption by railway transport,41.328215039999996,TJ,N2O,3.9,kg/TJ,161.180038656,kg +75f010ad-71e2-329a-852e-49c7705893a5,SESCO,II.2.1,La Pampa,AR-L,annual,2013,gas oil combustion consumption by railway transport,22.206901079999998,TJ,CO2,74100.0,kg/TJ,1645531.3700279999,kg +06f37679-e6f3-36e8-848c-c87e1bf143d8,SESCO,II.2.1,La Pampa,AR-L,annual,2013,gas oil combustion consumption by railway transport,22.206901079999998,TJ,CH4,3.9,kg/TJ,86.60691421199999,kg +06f37679-e6f3-36e8-848c-c87e1bf143d8,SESCO,II.2.1,La Pampa,AR-L,annual,2013,gas oil combustion consumption by railway transport,22.206901079999998,TJ,N2O,3.9,kg/TJ,86.60691421199999,kg +da0fd13f-6190-3900-82a4-6d64e1cc79c4,SESCO,II.1.1,Buenos Aires,AR-B,annual,2013,gasoline combustion consumption by freight transport,4.696686,TJ,CO2,69300.0,kg/TJ,325480.33979999996,kg +8a43fdb4-0081-388b-9db6-d0c3845160f9,SESCO,II.1.1,Buenos Aires,AR-B,annual,2013,gasoline combustion consumption by freight transport,4.696686,TJ,CH4,33.0,kg/TJ,154.990638,kg +a5bd7577-3e76-390f-a039-5e95ff04f891,SESCO,II.1.1,Buenos Aires,AR-B,annual,2013,gasoline combustion consumption by freight transport,4.696686,TJ,N2O,3.2,kg/TJ,15.0293952,kg +b8ee7d19-9df5-3145-b6e2-8d6ca239f8e3,SESCO,II.1.1,Buenos Aires,AR-B,annual,2013,gas oil combustion consumption by freight transport,333.48631596,TJ,CO2,74100.0,kg/TJ,24711336.012636002,kg +116c99be-d44a-3007-b0af-60b2f18a3563,SESCO,II.1.1,Buenos Aires,AR-B,annual,2013,gas oil combustion consumption by freight transport,333.48631596,TJ,CH4,3.9,kg/TJ,1300.596632244,kg +116c99be-d44a-3007-b0af-60b2f18a3563,SESCO,II.1.1,Buenos Aires,AR-B,annual,2013,gas oil combustion consumption by freight transport,333.48631596,TJ,N2O,3.9,kg/TJ,1300.596632244,kg +fd33c293-3dac-3e7d-811d-941e3cca9922,SESCO,II.1.1,Capital Federal,AR-C,annual,2013,gas oil combustion consumption by freight transport,26.60216328,TJ,CO2,74100.0,kg/TJ,1971220.299048,kg +50e05191-0ff4-343c-914b-f57499142332,SESCO,II.1.1,Capital Federal,AR-C,annual,2013,gas oil combustion consumption by freight transport,26.60216328,TJ,CH4,3.9,kg/TJ,103.74843679199999,kg +50e05191-0ff4-343c-914b-f57499142332,SESCO,II.1.1,Capital Federal,AR-C,annual,2013,gas oil combustion consumption by freight transport,26.60216328,TJ,N2O,3.9,kg/TJ,103.74843679199999,kg +302b72da-9595-3236-8121-67a60aeeccff,SESCO,II.1.1,Chubut,AR-U,annual,2013,gas oil combustion consumption by freight transport,0.32461044,TJ,CO2,74100.0,kg/TJ,24053.633604,kg +91b68d23-2a15-325b-8827-0eadf02980dd,SESCO,II.1.1,Chubut,AR-U,annual,2013,gas oil combustion consumption by freight transport,0.32461044,TJ,CH4,3.9,kg/TJ,1.265980716,kg +91b68d23-2a15-325b-8827-0eadf02980dd,SESCO,II.1.1,Chubut,AR-U,annual,2013,gas oil combustion consumption by freight transport,0.32461044,TJ,N2O,3.9,kg/TJ,1.265980716,kg +f2a656dd-a6a7-37a1-9aa8-883a3442e897,SESCO,II.1.1,Córdoba,AR-X,annual,2013,gas oil combustion consumption by freight transport,10.938689160000001,TJ,CO2,74100.0,kg/TJ,810556.8667560001,kg +17090ec2-386e-31ed-82bc-a7a8544eee96,SESCO,II.1.1,Córdoba,AR-X,annual,2013,gas oil combustion consumption by freight transport,10.938689160000001,TJ,CH4,3.9,kg/TJ,42.660887724000006,kg +17090ec2-386e-31ed-82bc-a7a8544eee96,SESCO,II.1.1,Córdoba,AR-X,annual,2013,gas oil combustion consumption by freight transport,10.938689160000001,TJ,N2O,3.9,kg/TJ,42.660887724000006,kg +3ce60eab-4ea3-3cba-8434-0a0e0540295f,SESCO,II.1.1,San Luis,AR-D,annual,2013,gas oil combustion consumption by freight transport,57.27432816,TJ,CO2,74100.0,kg/TJ,4244027.716656,kg +54ab74ba-2358-3cd6-b2ea-ae22765fd851,SESCO,II.1.1,San Luis,AR-D,annual,2013,gas oil combustion consumption by freight transport,57.27432816,TJ,CH4,3.9,kg/TJ,223.369879824,kg +54ab74ba-2358-3cd6-b2ea-ae22765fd851,SESCO,II.1.1,San Luis,AR-D,annual,2013,gas oil combustion consumption by freight transport,57.27432816,TJ,N2O,3.9,kg/TJ,223.369879824,kg +ecd2058d-292a-36b0-a9b7-fe77c2de3d62,SESCO,II.1.1,Buenos Aires,AR-B,annual,2013,gas oil combustion consumption by freight transport,1.29786384,TJ,CO2,74100.0,kg/TJ,96171.710544,kg +14afde7e-0d1e-3c8b-8394-c6164ce19078,SESCO,II.1.1,Buenos Aires,AR-B,annual,2013,gas oil combustion consumption by freight transport,1.29786384,TJ,CH4,3.9,kg/TJ,5.061668976,kg +14afde7e-0d1e-3c8b-8394-c6164ce19078,SESCO,II.1.1,Buenos Aires,AR-B,annual,2013,gas oil combustion consumption by freight transport,1.29786384,TJ,N2O,3.9,kg/TJ,5.061668976,kg +e5bc8a55-f5b3-3ed9-96e6-de040a3ac6ef,SESCO,II.1.1,Buenos Aires,AR-B,annual,2013,gas oil combustion consumption by public passenger transport,331.28118995999995,TJ,CO2,74100.0,kg/TJ,24547936.176035997,kg +20eb8f69-3d8b-34de-89f2-b56d6d22d9c2,SESCO,II.1.1,Buenos Aires,AR-B,annual,2013,gas oil combustion consumption by public passenger transport,331.28118995999995,TJ,CH4,3.9,kg/TJ,1291.9966408439998,kg +20eb8f69-3d8b-34de-89f2-b56d6d22d9c2,SESCO,II.1.1,Buenos Aires,AR-B,annual,2013,gas oil combustion consumption by public passenger transport,331.28118995999995,TJ,N2O,3.9,kg/TJ,1291.9966408439998,kg +38b86cdc-247e-35d4-a484-9a00c975049d,SESCO,II.1.1,Capital Federal,AR-C,annual,2013,gas oil combustion consumption by public passenger transport,16.47158688,TJ,CO2,74100.0,kg/TJ,1220544.587808,kg +f89b6299-6009-320d-8556-82cc2da7e112,SESCO,II.1.1,Capital Federal,AR-C,annual,2013,gas oil combustion consumption by public passenger transport,16.47158688,TJ,CH4,3.9,kg/TJ,64.239188832,kg +f89b6299-6009-320d-8556-82cc2da7e112,SESCO,II.1.1,Capital Federal,AR-C,annual,2013,gas oil combustion consumption by public passenger transport,16.47158688,TJ,N2O,3.9,kg/TJ,64.239188832,kg +1056a869-48df-3b85-8a5b-965d953c39c5,SESCO,II.1.1,Chubut,AR-U,annual,2013,gas oil combustion consumption by public passenger transport,58.18960896,TJ,CO2,74100.0,kg/TJ,4311850.023936,kg +281b8c62-d813-317c-8ffa-14b692ce30f7,SESCO,II.1.1,Chubut,AR-U,annual,2013,gas oil combustion consumption by public passenger transport,58.18960896,TJ,CH4,3.9,kg/TJ,226.939474944,kg +281b8c62-d813-317c-8ffa-14b692ce30f7,SESCO,II.1.1,Chubut,AR-U,annual,2013,gas oil combustion consumption by public passenger transport,58.18960896,TJ,N2O,3.9,kg/TJ,226.939474944,kg +e43d5a41-c51d-35fe-b5f7-0e39669c8242,SESCO,II.1.1,Córdoba,AR-X,annual,2013,gas oil combustion consumption by public passenger transport,258.03517572,TJ,CO2,74100.0,kg/TJ,19120406.520852,kg +54b04279-0b96-3c35-8c5f-af28fb7de579,SESCO,II.1.1,Córdoba,AR-X,annual,2013,gas oil combustion consumption by public passenger transport,258.03517572,TJ,CH4,3.9,kg/TJ,1006.3371853079999,kg +54b04279-0b96-3c35-8c5f-af28fb7de579,SESCO,II.1.1,Córdoba,AR-X,annual,2013,gas oil combustion consumption by public passenger transport,258.03517572,TJ,N2O,3.9,kg/TJ,1006.3371853079999,kg +ff027fde-a4f2-388b-ae87-2cf733fc3bdc,SESCO,II.1.1,Neuquén,AR-Q,annual,2013,gas oil combustion consumption by public passenger transport,32.7249006,TJ,CO2,74100.0,kg/TJ,2424915.13446,kg +4883f5c6-822d-38dc-9dc2-15a3e52c37cc,SESCO,II.1.1,Neuquén,AR-Q,annual,2013,gas oil combustion consumption by public passenger transport,32.7249006,TJ,CH4,3.9,kg/TJ,127.62711233999998,kg +4883f5c6-822d-38dc-9dc2-15a3e52c37cc,SESCO,II.1.1,Neuquén,AR-Q,annual,2013,gas oil combustion consumption by public passenger transport,32.7249006,TJ,N2O,3.9,kg/TJ,127.62711233999998,kg +2f7f5f26-4f58-37a2-ade5-3f1d1f823ca2,SESCO,II.1.1,Rio Negro,AR-R,annual,2013,gas oil combustion consumption by public passenger transport,203.11839996,TJ,CO2,74100.0,kg/TJ,15051073.437036,kg +aae12841-e314-3791-991c-2dccaef2059b,SESCO,II.1.1,Rio Negro,AR-R,annual,2013,gas oil combustion consumption by public passenger transport,203.11839996,TJ,CH4,3.9,kg/TJ,792.161759844,kg +aae12841-e314-3791-991c-2dccaef2059b,SESCO,II.1.1,Rio Negro,AR-R,annual,2013,gas oil combustion consumption by public passenger transport,203.11839996,TJ,N2O,3.9,kg/TJ,792.161759844,kg +b356f9c7-bcab-3b9f-b410-974c847034ba,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2013,gas oil combustion consumption by public passenger transport,31.995276599999997,TJ,CO2,74100.0,kg/TJ,2370849.99606,kg +c76f0ed6-b953-33bd-a052-7407326b6c97,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2013,gas oil combustion consumption by public passenger transport,31.995276599999997,TJ,CH4,3.9,kg/TJ,124.78157873999999,kg +c76f0ed6-b953-33bd-a052-7407326b6c97,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2013,gas oil combustion consumption by public passenger transport,31.995276599999997,TJ,N2O,3.9,kg/TJ,124.78157873999999,kg +d1cc20e1-227b-39ec-863a-e6b4ceef2348,SESCO,II.1.1,Santa Fe,AR-S,annual,2013,gas oil combustion consumption by public passenger transport,5.46827904,TJ,CO2,74100.0,kg/TJ,405199.47686399997,kg +695c3cdf-b9a8-3797-8452-220b8ce5062b,SESCO,II.1.1,Santa Fe,AR-S,annual,2013,gas oil combustion consumption by public passenger transport,5.46827904,TJ,CH4,3.9,kg/TJ,21.326288255999998,kg +695c3cdf-b9a8-3797-8452-220b8ce5062b,SESCO,II.1.1,Santa Fe,AR-S,annual,2013,gas oil combustion consumption by public passenger transport,5.46827904,TJ,N2O,3.9,kg/TJ,21.326288255999998,kg +a7728b08-3729-3eaa-a90f-bc3ce726eba5,SESCO,II.1.1,Buenos Aires,AR-B,annual,2013,gas oil combustion consumption by to the public,5380.720547999999,TJ,CO2,74100.0,kg/TJ,398711392.60679996,kg +8ffa7319-8e72-34eb-8887-8e385ab24f37,SESCO,II.1.1,Buenos Aires,AR-B,annual,2013,gas oil combustion consumption by to the public,5380.720547999999,TJ,CH4,3.9,kg/TJ,20984.8101372,kg +8ffa7319-8e72-34eb-8887-8e385ab24f37,SESCO,II.1.1,Buenos Aires,AR-B,annual,2013,gas oil combustion consumption by to the public,5380.720547999999,TJ,N2O,3.9,kg/TJ,20984.8101372,kg +2ffd4bc3-9b4c-38e0-ac02-483f5f45bc44,SESCO,II.1.1,Capital Federal,AR-C,annual,2013,gas oil combustion consumption by to the public,3790.01742,TJ,CO2,74100.0,kg/TJ,280840290.822,kg +610cb444-4f8d-35a0-b808-1078539d20a8,SESCO,II.1.1,Capital Federal,AR-C,annual,2013,gas oil combustion consumption by to the public,3790.01742,TJ,CH4,3.9,kg/TJ,14781.067938,kg +610cb444-4f8d-35a0-b808-1078539d20a8,SESCO,II.1.1,Capital Federal,AR-C,annual,2013,gas oil combustion consumption by to the public,3790.01742,TJ,N2O,3.9,kg/TJ,14781.067938,kg +4b2bb184-276e-3f62-a255-d962fed589c1,SESCO,II.1.1,Chaco,AR-H,annual,2013,gas oil combustion consumption by to the public,7.26012,TJ,CO2,74100.0,kg/TJ,537974.892,kg +b4b975fd-8944-32ae-a018-9e853d305f7d,SESCO,II.1.1,Chaco,AR-H,annual,2013,gas oil combustion consumption by to the public,7.26012,TJ,CH4,3.9,kg/TJ,28.314467999999998,kg +b4b975fd-8944-32ae-a018-9e853d305f7d,SESCO,II.1.1,Chaco,AR-H,annual,2013,gas oil combustion consumption by to the public,7.26012,TJ,N2O,3.9,kg/TJ,28.314467999999998,kg +7514b010-e392-391d-80e2-530172942b6f,SESCO,II.1.1,Corrientes,AR-W,annual,2013,gas oil combustion consumption by to the public,54.61344,TJ,CO2,74100.0,kg/TJ,4046855.9039999996,kg +6be5fe49-251e-3664-ae4a-32ffb1f8e9e3,SESCO,II.1.1,Corrientes,AR-W,annual,2013,gas oil combustion consumption by to the public,54.61344,TJ,CH4,3.9,kg/TJ,212.992416,kg +6be5fe49-251e-3664-ae4a-32ffb1f8e9e3,SESCO,II.1.1,Corrientes,AR-W,annual,2013,gas oil combustion consumption by to the public,54.61344,TJ,N2O,3.9,kg/TJ,212.992416,kg +5a54d310-bde0-3c0d-9f96-a6bd627a61dd,SESCO,II.1.1,Córdoba,AR-X,annual,2013,gas oil combustion consumption by to the public,713.22552,TJ,CO2,74100.0,kg/TJ,52850011.032,kg +e52f648b-539c-31b8-8bb5-cff9aa98cf95,SESCO,II.1.1,Córdoba,AR-X,annual,2013,gas oil combustion consumption by to the public,713.22552,TJ,CH4,3.9,kg/TJ,2781.5795279999998,kg +e52f648b-539c-31b8-8bb5-cff9aa98cf95,SESCO,II.1.1,Córdoba,AR-X,annual,2013,gas oil combustion consumption by to the public,713.22552,TJ,N2O,3.9,kg/TJ,2781.5795279999998,kg +bf227b4c-1a03-3344-a6a9-ac0b6cbfe4b4,SESCO,II.1.1,Entre Rios,AR-E,annual,2013,gas oil combustion consumption by to the public,515.93808,TJ,CO2,74100.0,kg/TJ,38231011.728,kg +6e0b1a2f-6ec0-3c6e-a45e-836c96a43177,SESCO,II.1.1,Entre Rios,AR-E,annual,2013,gas oil combustion consumption by to the public,515.93808,TJ,CH4,3.9,kg/TJ,2012.158512,kg +6e0b1a2f-6ec0-3c6e-a45e-836c96a43177,SESCO,II.1.1,Entre Rios,AR-E,annual,2013,gas oil combustion consumption by to the public,515.93808,TJ,N2O,3.9,kg/TJ,2012.158512,kg +3f2245f6-ae19-372f-9c66-aa7203560cc7,SESCO,II.1.1,La Pampa,AR-L,annual,2013,gas oil combustion consumption by to the public,51.8322,TJ,CO2,74100.0,kg/TJ,3840766.02,kg +8f4d81a8-d9e6-3b95-bf8c-440ea33bbdff,SESCO,II.1.1,La Pampa,AR-L,annual,2013,gas oil combustion consumption by to the public,51.8322,TJ,CH4,3.9,kg/TJ,202.14558,kg +8f4d81a8-d9e6-3b95-bf8c-440ea33bbdff,SESCO,II.1.1,La Pampa,AR-L,annual,2013,gas oil combustion consumption by to the public,51.8322,TJ,N2O,3.9,kg/TJ,202.14558,kg +17ea134c-b82f-3a12-bc03-8e853753d811,SESCO,II.1.1,Rio Negro,AR-R,annual,2013,gas oil combustion consumption by to the public,66.42468,TJ,CO2,74100.0,kg/TJ,4922068.788,kg +d556de11-243c-3b31-a2bf-831c803efa99,SESCO,II.1.1,Rio Negro,AR-R,annual,2013,gas oil combustion consumption by to the public,66.42468,TJ,CH4,3.9,kg/TJ,259.056252,kg +d556de11-243c-3b31-a2bf-831c803efa99,SESCO,II.1.1,Rio Negro,AR-R,annual,2013,gas oil combustion consumption by to the public,66.42468,TJ,N2O,3.9,kg/TJ,259.056252,kg +9cd5cb7e-8911-3040-bbda-7e848dea50c1,SESCO,II.1.1,Salta,AR-A,annual,2013,gas oil combustion consumption by to the public,8.52432,TJ,CO2,74100.0,kg/TJ,631652.112,kg +facc4ccd-6ebb-344c-a7d7-4b78263388d6,SESCO,II.1.1,Salta,AR-A,annual,2013,gas oil combustion consumption by to the public,8.52432,TJ,CH4,3.9,kg/TJ,33.244848,kg +facc4ccd-6ebb-344c-a7d7-4b78263388d6,SESCO,II.1.1,Salta,AR-A,annual,2013,gas oil combustion consumption by to the public,8.52432,TJ,N2O,3.9,kg/TJ,33.244848,kg +014e2ae2-80dd-301f-bd09-bc7ac9bfea5d,SESCO,II.1.1,Santa Fe,AR-S,annual,2013,gas oil combustion consumption by to the public,466.157496,TJ,CO2,74100.0,kg/TJ,34542270.4536,kg +5bb86f0e-722f-30d3-ad57-eaf577caf29d,SESCO,II.1.1,Santa Fe,AR-S,annual,2013,gas oil combustion consumption by to the public,466.157496,TJ,CH4,3.9,kg/TJ,1818.0142343999999,kg +5bb86f0e-722f-30d3-ad57-eaf577caf29d,SESCO,II.1.1,Santa Fe,AR-S,annual,2013,gas oil combustion consumption by to the public,466.157496,TJ,N2O,3.9,kg/TJ,1818.0142343999999,kg +0f97af78-4bfd-3ede-b7a0-29abe8da3a0a,SESCO,II.1.1,Buenos Aires,AR-B,annual,2013,gas oil combustion consumption by to the public,218.52599999999998,TJ,CO2,74100.0,kg/TJ,16192776.599999998,kg +40a9f873-4321-3d65-bf66-d969c435cfba,SESCO,II.1.1,Buenos Aires,AR-B,annual,2013,gas oil combustion consumption by to the public,218.52599999999998,TJ,CH4,3.9,kg/TJ,852.2513999999999,kg +40a9f873-4321-3d65-bf66-d969c435cfba,SESCO,II.1.1,Buenos Aires,AR-B,annual,2013,gas oil combustion consumption by to the public,218.52599999999998,TJ,N2O,3.9,kg/TJ,852.2513999999999,kg +474fffa2-ecbd-33e4-b1b0-634f57fc5294,SESCO,II.1.1,Capital Federal,AR-C,annual,2013,gas oil combustion consumption by to the public,89.5776,TJ,CO2,74100.0,kg/TJ,6637700.16,kg +981a78de-3f3e-3be6-82c4-72a3f41e5b90,SESCO,II.1.1,Capital Federal,AR-C,annual,2013,gas oil combustion consumption by to the public,89.5776,TJ,CH4,3.9,kg/TJ,349.35264,kg +981a78de-3f3e-3be6-82c4-72a3f41e5b90,SESCO,II.1.1,Capital Federal,AR-C,annual,2013,gas oil combustion consumption by to the public,89.5776,TJ,N2O,3.9,kg/TJ,349.35264,kg +462a0323-2347-398b-8121-996b7526317e,SESCO,II.1.1,Chaco,AR-H,annual,2013,gas oil combustion consumption by to the public,0.65016,TJ,CO2,74100.0,kg/TJ,48176.856,kg +c10466f6-7772-3adc-b900-8664b256b525,SESCO,II.1.1,Chaco,AR-H,annual,2013,gas oil combustion consumption by to the public,0.65016,TJ,CH4,3.9,kg/TJ,2.535624,kg +c10466f6-7772-3adc-b900-8664b256b525,SESCO,II.1.1,Chaco,AR-H,annual,2013,gas oil combustion consumption by to the public,0.65016,TJ,N2O,3.9,kg/TJ,2.535624,kg +02493dbc-3e9b-33b7-9d08-08d345c450d4,SESCO,II.1.1,Córdoba,AR-X,annual,2013,gas oil combustion consumption by to the public,30.99096,TJ,CO2,74100.0,kg/TJ,2296430.136,kg +a077b79c-512b-3bd2-8635-605282cecca6,SESCO,II.1.1,Córdoba,AR-X,annual,2013,gas oil combustion consumption by to the public,30.99096,TJ,CH4,3.9,kg/TJ,120.864744,kg +a077b79c-512b-3bd2-8635-605282cecca6,SESCO,II.1.1,Córdoba,AR-X,annual,2013,gas oil combustion consumption by to the public,30.99096,TJ,N2O,3.9,kg/TJ,120.864744,kg +a824a990-f6d0-35cd-9c15-8add26d35b90,SESCO,II.1.1,Entre Rios,AR-E,annual,2013,gas oil combustion consumption by to the public,33.55548,TJ,CO2,74100.0,kg/TJ,2486461.0680000004,kg +25fa40f9-00de-3b7e-9f03-7001ea511811,SESCO,II.1.1,Entre Rios,AR-E,annual,2013,gas oil combustion consumption by to the public,33.55548,TJ,CH4,3.9,kg/TJ,130.866372,kg +25fa40f9-00de-3b7e-9f03-7001ea511811,SESCO,II.1.1,Entre Rios,AR-E,annual,2013,gas oil combustion consumption by to the public,33.55548,TJ,N2O,3.9,kg/TJ,130.866372,kg +7d866814-773a-3e0e-af6a-a6ed171612be,SESCO,II.1.1,Santa Fe,AR-S,annual,2013,gas oil combustion consumption by to the public,69.307056,TJ,CO2,74100.0,kg/TJ,5135652.8496,kg +67a97976-adee-3607-9cae-6c64dc9465cd,SESCO,II.1.1,Santa Fe,AR-S,annual,2013,gas oil combustion consumption by to the public,69.307056,TJ,CH4,3.9,kg/TJ,270.2975184,kg +67a97976-adee-3607-9cae-6c64dc9465cd,SESCO,II.1.1,Santa Fe,AR-S,annual,2013,gas oil combustion consumption by to the public,69.307056,TJ,N2O,3.9,kg/TJ,270.2975184,kg +802fc2e8-fe2c-3e19-ab5a-5db06306e1bf,SESCO,II.1.1,Tucuman,AR-T,annual,2013,gasoline combustion consumption by to the public,33.849187,TJ,CO2,69300.0,kg/TJ,2345748.6591,kg +9e76c46c-292d-3506-9db1-bff98d36f1e5,SESCO,II.1.1,Tucuman,AR-T,annual,2013,gasoline combustion consumption by to the public,33.849187,TJ,CH4,33.0,kg/TJ,1117.023171,kg +bca92644-6f41-39aa-8214-af8a8d663b6a,SESCO,II.1.1,Tucuman,AR-T,annual,2013,gasoline combustion consumption by to the public,33.849187,TJ,N2O,3.2,kg/TJ,108.3173984,kg +5ff6040c-2f93-3640-a4ab-73067938be99,SESCO,II.1.1,Catamarca,AR-K,annual,2013,gas oil combustion consumption by to the public,245.2298772,TJ,CO2,74100.0,kg/TJ,18171533.90052,kg +e50e40c5-92bc-3f81-85d5-ef8b07c266ed,SESCO,II.1.1,Catamarca,AR-K,annual,2013,gas oil combustion consumption by to the public,245.2298772,TJ,CH4,3.9,kg/TJ,956.39652108,kg +e50e40c5-92bc-3f81-85d5-ef8b07c266ed,SESCO,II.1.1,Catamarca,AR-K,annual,2013,gas oil combustion consumption by to the public,245.2298772,TJ,N2O,3.9,kg/TJ,956.39652108,kg +091d2525-fd30-35a3-9e3f-0026a5011601,SESCO,II.1.1,Chaco,AR-H,annual,2013,gas oil combustion consumption by to the public,190.0840284,TJ,CO2,74100.0,kg/TJ,14085226.50444,kg +02539866-12a2-3fe3-9cda-4e647886cb8f,SESCO,II.1.1,Chaco,AR-H,annual,2013,gas oil combustion consumption by to the public,190.0840284,TJ,CH4,3.9,kg/TJ,741.32771076,kg +02539866-12a2-3fe3-9cda-4e647886cb8f,SESCO,II.1.1,Chaco,AR-H,annual,2013,gas oil combustion consumption by to the public,190.0840284,TJ,N2O,3.9,kg/TJ,741.32771076,kg +2cc69358-e877-3b93-9c8a-ce164eb5309b,SESCO,II.1.1,Córdoba,AR-X,annual,2013,gas oil combustion consumption by to the public,109.1748672,TJ,CO2,74100.0,kg/TJ,8089857.659519999,kg +dee3112b-da06-3e1c-8102-749e67eaca8f,SESCO,II.1.1,Córdoba,AR-X,annual,2013,gas oil combustion consumption by to the public,109.1748672,TJ,CH4,3.9,kg/TJ,425.78198208,kg +dee3112b-da06-3e1c-8102-749e67eaca8f,SESCO,II.1.1,Córdoba,AR-X,annual,2013,gas oil combustion consumption by to the public,109.1748672,TJ,N2O,3.9,kg/TJ,425.78198208,kg +df6368b3-a028-396d-ade0-fbdd2062aa20,SESCO,II.1.1,Jujuy,AR-Y,annual,2013,gas oil combustion consumption by to the public,926.8110264000001,TJ,CO2,74100.0,kg/TJ,68676697.05624,kg +89180a4f-144d-3bbf-a378-d1c8e582bb3a,SESCO,II.1.1,Jujuy,AR-Y,annual,2013,gas oil combustion consumption by to the public,926.8110264000001,TJ,CH4,3.9,kg/TJ,3614.56300296,kg +89180a4f-144d-3bbf-a378-d1c8e582bb3a,SESCO,II.1.1,Jujuy,AR-Y,annual,2013,gas oil combustion consumption by to the public,926.8110264000001,TJ,N2O,3.9,kg/TJ,3614.56300296,kg +dce0922f-92d5-34df-b215-bd2f18599fc2,SESCO,II.1.1,La Rioja,AR-F,annual,2013,gas oil combustion consumption by to the public,199.9469556,TJ,CO2,74100.0,kg/TJ,14816069.40996,kg +7dc4e6b6-9aaa-3de0-aa1b-2d9861d91f39,SESCO,II.1.1,La Rioja,AR-F,annual,2013,gas oil combustion consumption by to the public,199.9469556,TJ,CH4,3.9,kg/TJ,779.79312684,kg +7dc4e6b6-9aaa-3de0-aa1b-2d9861d91f39,SESCO,II.1.1,La Rioja,AR-F,annual,2013,gas oil combustion consumption by to the public,199.9469556,TJ,N2O,3.9,kg/TJ,779.79312684,kg +b9596eea-1011-3e56-91ed-237d2c27a700,SESCO,II.1.1,Salta,AR-A,annual,2013,gas oil combustion consumption by to the public,2231.7005676,TJ,CO2,74100.0,kg/TJ,165369012.05916,kg +14246f7c-d79e-3bfa-9d92-e6d8f2c1276c,SESCO,II.1.1,Salta,AR-A,annual,2013,gas oil combustion consumption by to the public,2231.7005676,TJ,CH4,3.9,kg/TJ,8703.63221364,kg +14246f7c-d79e-3bfa-9d92-e6d8f2c1276c,SESCO,II.1.1,Salta,AR-A,annual,2013,gas oil combustion consumption by to the public,2231.7005676,TJ,N2O,3.9,kg/TJ,8703.63221364,kg +d654a662-0a89-361a-8810-bdc798877d1c,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2013,gas oil combustion consumption by to the public,515.3912232,TJ,CO2,74100.0,kg/TJ,38190489.63912,kg +b156f2fe-7d1d-34d2-bae3-24d2fdb0f621,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2013,gas oil combustion consumption by to the public,515.3912232,TJ,CH4,3.9,kg/TJ,2010.02577048,kg +b156f2fe-7d1d-34d2-bae3-24d2fdb0f621,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2013,gas oil combustion consumption by to the public,515.3912232,TJ,N2O,3.9,kg/TJ,2010.02577048,kg +aecb56cb-e919-37ab-8f58-16d515a472e6,SESCO,II.1.1,Tucuman,AR-T,annual,2013,gas oil combustion consumption by to the public,2840.8007964,TJ,CO2,74100.0,kg/TJ,210503339.01323998,kg +249b0101-de29-332a-923e-509386027c54,SESCO,II.1.1,Tucuman,AR-T,annual,2013,gas oil combustion consumption by to the public,2840.8007964,TJ,CH4,3.9,kg/TJ,11079.12310596,kg +249b0101-de29-332a-923e-509386027c54,SESCO,II.1.1,Tucuman,AR-T,annual,2013,gas oil combustion consumption by to the public,2840.8007964,TJ,N2O,3.9,kg/TJ,11079.12310596,kg +f99d159b-89fe-3003-9a18-460757d693fa,SESCO,II.1.1,Catamarca,AR-K,annual,2013,gas oil combustion consumption by to the public,0.5721408,TJ,CO2,74100.0,kg/TJ,42395.63328,kg +623f80fa-5b13-3349-93e7-c4710ddff845,SESCO,II.1.1,Catamarca,AR-K,annual,2013,gas oil combustion consumption by to the public,0.5721408,TJ,CH4,3.9,kg/TJ,2.23134912,kg +623f80fa-5b13-3349-93e7-c4710ddff845,SESCO,II.1.1,Catamarca,AR-K,annual,2013,gas oil combustion consumption by to the public,0.5721408,TJ,N2O,3.9,kg/TJ,2.23134912,kg +d4a45ce9-f533-3e13-af94-9663d79e8e42,SESCO,II.1.1,Jujuy,AR-Y,annual,2013,gas oil combustion consumption by to the public,1.1764284,TJ,CO2,74100.0,kg/TJ,87173.34444,kg +df5e5f04-e579-394f-afd7-802946c788a9,SESCO,II.1.1,Jujuy,AR-Y,annual,2013,gas oil combustion consumption by to the public,1.1764284,TJ,CH4,3.9,kg/TJ,4.58807076,kg +df5e5f04-e579-394f-afd7-802946c788a9,SESCO,II.1.1,Jujuy,AR-Y,annual,2013,gas oil combustion consumption by to the public,1.1764284,TJ,N2O,3.9,kg/TJ,4.58807076,kg +b4d06cfd-5087-3cfd-983f-edb48c0be25b,SESCO,II.1.1,La Rioja,AR-F,annual,2013,gas oil combustion consumption by to the public,0.178794,TJ,CO2,74100.0,kg/TJ,13248.635400000001,kg +91013f65-2041-352c-bc24-009c8d2be36e,SESCO,II.1.1,La Rioja,AR-F,annual,2013,gas oil combustion consumption by to the public,0.178794,TJ,CH4,3.9,kg/TJ,0.6972966,kg +91013f65-2041-352c-bc24-009c8d2be36e,SESCO,II.1.1,La Rioja,AR-F,annual,2013,gas oil combustion consumption by to the public,0.178794,TJ,N2O,3.9,kg/TJ,0.6972966,kg +8cc4ae82-c275-340e-b112-ba38b6726cf1,SESCO,II.1.1,Salta,AR-A,annual,2013,gas oil combustion consumption by to the public,1.964928,TJ,CO2,74100.0,kg/TJ,145601.1648,kg +8147d48b-c9ae-3d84-80c2-b3cb5469bfca,SESCO,II.1.1,Salta,AR-A,annual,2013,gas oil combustion consumption by to the public,1.964928,TJ,CH4,3.9,kg/TJ,7.6632191999999995,kg +8147d48b-c9ae-3d84-80c2-b3cb5469bfca,SESCO,II.1.1,Salta,AR-A,annual,2013,gas oil combustion consumption by to the public,1.964928,TJ,N2O,3.9,kg/TJ,7.6632191999999995,kg +a165a6c7-e4e6-3157-acdb-5157cdd9673c,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2013,gas oil combustion consumption by to the public,2.2867572,TJ,CO2,74100.0,kg/TJ,169448.70852,kg +cb145f98-e0ee-3112-b657-55ec2dd1f653,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2013,gas oil combustion consumption by to the public,2.2867572,TJ,CH4,3.9,kg/TJ,8.91835308,kg +cb145f98-e0ee-3112-b657-55ec2dd1f653,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2013,gas oil combustion consumption by to the public,2.2867572,TJ,N2O,3.9,kg/TJ,8.91835308,kg +a6ec3988-3ed6-3ec0-996e-f9332b2356d9,SESCO,II.1.1,Tucuman,AR-T,annual,2013,gas oil combustion consumption by to the public,4.8624744,TJ,CO2,74100.0,kg/TJ,360309.35304,kg +cdfe2964-7b43-3570-a0e1-9f1f55ee8d8a,SESCO,II.1.1,Tucuman,AR-T,annual,2013,gas oil combustion consumption by to the public,4.8624744,TJ,CH4,3.9,kg/TJ,18.96365016,kg +cdfe2964-7b43-3570-a0e1-9f1f55ee8d8a,SESCO,II.1.1,Tucuman,AR-T,annual,2013,gas oil combustion consumption by to the public,4.8624744,TJ,N2O,3.9,kg/TJ,18.96365016,kg +f1605a02-9c4b-37ad-9146-d1fa42571eff,SESCO,I.3.1,Buenos Aires,AR-B,annual,2013,gasoline combustion consumption by petrochemical industries,52.88091,TJ,CO2,69300.0,kg/TJ,3664647.063,kg +3676827b-945a-304c-8147-45481f0d8db8,SESCO,I.3.1,Buenos Aires,AR-B,annual,2013,gasoline combustion consumption by petrochemical industries,52.88091,TJ,CH4,33.0,kg/TJ,1745.07003,kg +b1e54764-db53-3fc2-a65e-7edd7e7c5fbb,SESCO,I.3.1,Buenos Aires,AR-B,annual,2013,gasoline combustion consumption by petrochemical industries,52.88091,TJ,N2O,3.2,kg/TJ,169.21891200000002,kg +036afb20-974a-37a7-a3ff-7dff43c75529,SESCO,I.3.1,Santa Fe,AR-S,annual,2013,gasoline combustion consumption by petrochemical industries,4.663904,TJ,CO2,69300.0,kg/TJ,323208.5472,kg +ed499de9-55e2-374a-b6ac-048300444bb4,SESCO,I.3.1,Santa Fe,AR-S,annual,2013,gasoline combustion consumption by petrochemical industries,4.663904,TJ,CH4,33.0,kg/TJ,153.908832,kg +1d9684d7-f383-38f8-88f8-a144c3cafac5,SESCO,I.3.1,Santa Fe,AR-S,annual,2013,gasoline combustion consumption by petrochemical industries,4.663904,TJ,N2O,3.2,kg/TJ,14.9244928,kg +8652110c-e65b-3e66-a670-1f855facb936,SESCO,II.5.1,Buenos Aires,AR-B,annual,2013,gas oil combustion consumption by agriculture machines,407.54196,TJ,CO2,74100.0,kg/TJ,30198859.236,kg +d6555e4a-1da6-3f45-90b1-fdc5f5174db8,SESCO,II.5.1,Buenos Aires,AR-B,annual,2013,gas oil combustion consumption by agriculture machines,407.54196,TJ,CH4,3.9,kg/TJ,1589.413644,kg +d6555e4a-1da6-3f45-90b1-fdc5f5174db8,SESCO,II.5.1,Buenos Aires,AR-B,annual,2013,gas oil combustion consumption by agriculture machines,407.54196,TJ,N2O,3.9,kg/TJ,1589.413644,kg +d9d70abd-3753-3ede-9bdd-82350413cb11,SESCO,II.5.1,Capital Federal,AR-C,annual,2013,gas oil combustion consumption by agriculture machines,87.33816,TJ,CO2,74100.0,kg/TJ,6471757.656,kg +06322cd8-d529-3e82-8c06-5e1091365da7,SESCO,II.5.1,Capital Federal,AR-C,annual,2013,gas oil combustion consumption by agriculture machines,87.33816,TJ,CH4,3.9,kg/TJ,340.618824,kg +06322cd8-d529-3e82-8c06-5e1091365da7,SESCO,II.5.1,Capital Federal,AR-C,annual,2013,gas oil combustion consumption by agriculture machines,87.33816,TJ,N2O,3.9,kg/TJ,340.618824,kg +51505052-e7cc-3643-bb07-5150d86a1485,SESCO,II.5.1,Córdoba,AR-X,annual,2013,gas oil combustion consumption by agriculture machines,156.86916,TJ,CO2,74100.0,kg/TJ,11624004.756,kg +c2423173-fe05-3ee7-a8d9-be83c0c7b40e,SESCO,II.5.1,Córdoba,AR-X,annual,2013,gas oil combustion consumption by agriculture machines,156.86916,TJ,CH4,3.9,kg/TJ,611.789724,kg +c2423173-fe05-3ee7-a8d9-be83c0c7b40e,SESCO,II.5.1,Córdoba,AR-X,annual,2013,gas oil combustion consumption by agriculture machines,156.86916,TJ,N2O,3.9,kg/TJ,611.789724,kg +024469e2-5583-3949-b2fd-9eea25743c7d,SESCO,II.5.1,Santa Fe,AR-S,annual,2013,gas oil combustion consumption by agriculture machines,606.88824,TJ,CO2,74100.0,kg/TJ,44970418.584,kg +24236ebe-c44c-384b-8371-599bae45aa24,SESCO,II.5.1,Santa Fe,AR-S,annual,2013,gas oil combustion consumption by agriculture machines,606.88824,TJ,CH4,3.9,kg/TJ,2366.864136,kg +24236ebe-c44c-384b-8371-599bae45aa24,SESCO,II.5.1,Santa Fe,AR-S,annual,2013,gas oil combustion consumption by agriculture machines,606.88824,TJ,N2O,3.9,kg/TJ,2366.864136,kg +d113f0ab-dfbd-3999-8b01-9f72fcf4d211,SESCO,II.5.1,Buenos Aires,AR-B,annual,2013,gas oil combustion consumption by agriculture machines,3.90096,TJ,CO2,74100.0,kg/TJ,289061.136,kg +7928a8e8-1873-356b-a5cd-4495eec8a987,SESCO,II.5.1,Buenos Aires,AR-B,annual,2013,gas oil combustion consumption by agriculture machines,3.90096,TJ,CH4,3.9,kg/TJ,15.213744,kg +7928a8e8-1873-356b-a5cd-4495eec8a987,SESCO,II.5.1,Buenos Aires,AR-B,annual,2013,gas oil combustion consumption by agriculture machines,3.90096,TJ,N2O,3.9,kg/TJ,15.213744,kg +752ccbdc-bc28-3a66-943f-c80529d7645c,SESCO,II.5.1,Capital Federal,AR-C,annual,2013,gas oil combustion consumption by agriculture machines,3.82872,TJ,CO2,74100.0,kg/TJ,283708.152,kg +bd726c0b-ec0b-38f0-98a2-ed69e674644a,SESCO,II.5.1,Capital Federal,AR-C,annual,2013,gas oil combustion consumption by agriculture machines,3.82872,TJ,CH4,3.9,kg/TJ,14.932008,kg +bd726c0b-ec0b-38f0-98a2-ed69e674644a,SESCO,II.5.1,Capital Federal,AR-C,annual,2013,gas oil combustion consumption by agriculture machines,3.82872,TJ,N2O,3.9,kg/TJ,14.932008,kg +9b5b91d0-810b-355e-8a1a-ad79d408dd2e,SESCO,II.5.1,Santa Fe,AR-S,annual,2013,gas oil combustion consumption by agriculture machines,20.15496,TJ,CO2,74100.0,kg/TJ,1493482.5359999998,kg +2b1b94c7-b79b-3394-8c18-132eb7916bb9,SESCO,II.5.1,Santa Fe,AR-S,annual,2013,gas oil combustion consumption by agriculture machines,20.15496,TJ,CH4,3.9,kg/TJ,78.604344,kg +2b1b94c7-b79b-3394-8c18-132eb7916bb9,SESCO,II.5.1,Santa Fe,AR-S,annual,2013,gas oil combustion consumption by agriculture machines,20.15496,TJ,N2O,3.9,kg/TJ,78.604344,kg +d92ec361-3caa-35de-af49-94ec96e5b9c5,SESCO,II.1.1,Buenos Aires,AR-B,annual,2013,gas oil combustion consumption by to the public,13211.9736,TJ,CO2,74100.0,kg/TJ,979007243.76,kg +29298e4f-901d-3584-96f7-2423a4d41bec,SESCO,II.1.1,Buenos Aires,AR-B,annual,2013,gas oil combustion consumption by to the public,13211.9736,TJ,CH4,3.9,kg/TJ,51526.69704,kg +29298e4f-901d-3584-96f7-2423a4d41bec,SESCO,II.1.1,Buenos Aires,AR-B,annual,2013,gas oil combustion consumption by to the public,13211.9736,TJ,N2O,3.9,kg/TJ,51526.69704,kg +668834e1-b04d-3b05-86cf-fdabcd80dc59,SESCO,II.1.1,Capital Federal,AR-C,annual,2013,gas oil combustion consumption by to the public,1052.60904,TJ,CO2,74100.0,kg/TJ,77998329.86400001,kg +7adbe922-6491-3e8e-b3df-aeab3d39268f,SESCO,II.1.1,Capital Federal,AR-C,annual,2013,gas oil combustion consumption by to the public,1052.60904,TJ,CH4,3.9,kg/TJ,4105.175256,kg +7adbe922-6491-3e8e-b3df-aeab3d39268f,SESCO,II.1.1,Capital Federal,AR-C,annual,2013,gas oil combustion consumption by to the public,1052.60904,TJ,N2O,3.9,kg/TJ,4105.175256,kg +86c16878-1d49-33e6-8985-d6e5f9aebbf6,SESCO,II.1.1,Catamarca,AR-K,annual,2013,gas oil combustion consumption by to the public,22.9362,TJ,CO2,74100.0,kg/TJ,1699572.42,kg +2653b0c7-90c0-381f-9129-4d63bde303b5,SESCO,II.1.1,Catamarca,AR-K,annual,2013,gas oil combustion consumption by to the public,22.9362,TJ,CH4,3.9,kg/TJ,89.45118,kg +2653b0c7-90c0-381f-9129-4d63bde303b5,SESCO,II.1.1,Catamarca,AR-K,annual,2013,gas oil combustion consumption by to the public,22.9362,TJ,N2O,3.9,kg/TJ,89.45118,kg +5e43a137-d12c-3597-b61e-76dbc7a8a95c,SESCO,II.1.1,Chaco,AR-H,annual,2013,gas oil combustion consumption by to the public,1450.32636,TJ,CO2,74100.0,kg/TJ,107469183.27600001,kg +cdc5429c-80ca-3b21-bb20-6fcf767d58fc,SESCO,II.1.1,Chaco,AR-H,annual,2013,gas oil combustion consumption by to the public,1450.32636,TJ,CH4,3.9,kg/TJ,5656.272804,kg +cdc5429c-80ca-3b21-bb20-6fcf767d58fc,SESCO,II.1.1,Chaco,AR-H,annual,2013,gas oil combustion consumption by to the public,1450.32636,TJ,N2O,3.9,kg/TJ,5656.272804,kg +6215c0ef-dd3f-340f-8b6d-55c772f4475e,SESCO,II.1.1,Chubut,AR-U,annual,2013,gas oil combustion consumption by to the public,12.605879999999999,TJ,CO2,74100.0,kg/TJ,934095.708,kg +2986318c-c045-3e44-98ae-d5139bb143dc,SESCO,II.1.1,Chubut,AR-U,annual,2013,gas oil combustion consumption by to the public,12.605879999999999,TJ,CH4,3.9,kg/TJ,49.162932,kg +2986318c-c045-3e44-98ae-d5139bb143dc,SESCO,II.1.1,Chubut,AR-U,annual,2013,gas oil combustion consumption by to the public,12.605879999999999,TJ,N2O,3.9,kg/TJ,49.162932,kg +2f322680-eb39-30ac-9405-d75ae1c9ca71,SESCO,II.1.1,Corrientes,AR-W,annual,2013,gas oil combustion consumption by to the public,643.76676,TJ,CO2,74100.0,kg/TJ,47703116.916,kg +c73fa75e-482f-32a9-a763-fe0387c28f5e,SESCO,II.1.1,Corrientes,AR-W,annual,2013,gas oil combustion consumption by to the public,643.76676,TJ,CH4,3.9,kg/TJ,2510.690364,kg +c73fa75e-482f-32a9-a763-fe0387c28f5e,SESCO,II.1.1,Corrientes,AR-W,annual,2013,gas oil combustion consumption by to the public,643.76676,TJ,N2O,3.9,kg/TJ,2510.690364,kg +acaccb1d-e380-3268-af10-6513a11bc502,SESCO,II.1.1,Córdoba,AR-X,annual,2013,gas oil combustion consumption by to the public,4641.7812,TJ,CO2,74100.0,kg/TJ,343955986.92,kg +a6b8507d-781a-322f-b1a6-e99a1cd685e4,SESCO,II.1.1,Córdoba,AR-X,annual,2013,gas oil combustion consumption by to the public,4641.7812,TJ,CH4,3.9,kg/TJ,18102.94668,kg +a6b8507d-781a-322f-b1a6-e99a1cd685e4,SESCO,II.1.1,Córdoba,AR-X,annual,2013,gas oil combustion consumption by to the public,4641.7812,TJ,N2O,3.9,kg/TJ,18102.94668,kg +6b9b6077-5868-3e24-8a5c-2fadcb0599b0,SESCO,II.1.1,Entre Rios,AR-E,annual,2013,gas oil combustion consumption by to the public,1283.8854,TJ,CO2,74100.0,kg/TJ,95135908.13999999,kg +de9d33be-446e-34ac-97d8-0aa2f2ccbda1,SESCO,II.1.1,Entre Rios,AR-E,annual,2013,gas oil combustion consumption by to the public,1283.8854,TJ,CH4,3.9,kg/TJ,5007.15306,kg +de9d33be-446e-34ac-97d8-0aa2f2ccbda1,SESCO,II.1.1,Entre Rios,AR-E,annual,2013,gas oil combustion consumption by to the public,1283.8854,TJ,N2O,3.9,kg/TJ,5007.15306,kg +90ab554e-e895-3f7f-be36-e66acdbfad57,SESCO,II.1.1,Formosa,AR-P,annual,2013,gas oil combustion consumption by to the public,219.7902,TJ,CO2,74100.0,kg/TJ,16286453.82,kg +6669e13d-5076-395c-bd35-5151917ddbbf,SESCO,II.1.1,Formosa,AR-P,annual,2013,gas oil combustion consumption by to the public,219.7902,TJ,CH4,3.9,kg/TJ,857.18178,kg +6669e13d-5076-395c-bd35-5151917ddbbf,SESCO,II.1.1,Formosa,AR-P,annual,2013,gas oil combustion consumption by to the public,219.7902,TJ,N2O,3.9,kg/TJ,857.18178,kg +370e906a-a063-382f-aa72-aa70649dc4f4,SESCO,II.1.1,Jujuy,AR-Y,annual,2013,gas oil combustion consumption by to the public,178.93848,TJ,CO2,74100.0,kg/TJ,13259341.368,kg +837be226-d3d0-3522-a0e7-cbfbd6d4ebdb,SESCO,II.1.1,Jujuy,AR-Y,annual,2013,gas oil combustion consumption by to the public,178.93848,TJ,CH4,3.9,kg/TJ,697.860072,kg +837be226-d3d0-3522-a0e7-cbfbd6d4ebdb,SESCO,II.1.1,Jujuy,AR-Y,annual,2013,gas oil combustion consumption by to the public,178.93848,TJ,N2O,3.9,kg/TJ,697.860072,kg +0fcfe51f-738c-3fac-9dc8-30c0a778998c,SESCO,II.1.1,La Pampa,AR-L,annual,2013,gas oil combustion consumption by to the public,465.55068,TJ,CO2,74100.0,kg/TJ,34497305.388,kg +34bd9b3c-6b67-3a08-b778-56757f69439b,SESCO,II.1.1,La Pampa,AR-L,annual,2013,gas oil combustion consumption by to the public,465.55068,TJ,CH4,3.9,kg/TJ,1815.6476519999999,kg +34bd9b3c-6b67-3a08-b778-56757f69439b,SESCO,II.1.1,La Pampa,AR-L,annual,2013,gas oil combustion consumption by to the public,465.55068,TJ,N2O,3.9,kg/TJ,1815.6476519999999,kg +6771ba6d-f0d7-342c-ab5e-055e1257c53b,SESCO,II.1.1,La Rioja,AR-F,annual,2013,gas oil combustion consumption by to the public,336.9996,TJ,CO2,74100.0,kg/TJ,24971670.36,kg +94410eb9-5834-336b-821f-132e420f0c74,SESCO,II.1.1,La Rioja,AR-F,annual,2013,gas oil combustion consumption by to the public,336.9996,TJ,CH4,3.9,kg/TJ,1314.29844,kg +94410eb9-5834-336b-821f-132e420f0c74,SESCO,II.1.1,La Rioja,AR-F,annual,2013,gas oil combustion consumption by to the public,336.9996,TJ,N2O,3.9,kg/TJ,1314.29844,kg +f77408e1-dbae-3747-b456-9fa48c466670,SESCO,II.1.1,Mendoza,AR-M,annual,2013,gas oil combustion consumption by to the public,804.46464,TJ,CO2,74100.0,kg/TJ,59610829.824,kg +63698560-9535-3218-8726-efbfd048ebaa,SESCO,II.1.1,Mendoza,AR-M,annual,2013,gas oil combustion consumption by to the public,804.46464,TJ,CH4,3.9,kg/TJ,3137.412096,kg +63698560-9535-3218-8726-efbfd048ebaa,SESCO,II.1.1,Mendoza,AR-M,annual,2013,gas oil combustion consumption by to the public,804.46464,TJ,N2O,3.9,kg/TJ,3137.412096,kg +fb9e3925-1573-3259-a12b-c4a9ba941148,SESCO,II.1.1,Misiones,AR-N,annual,2013,gas oil combustion consumption by to the public,1342.18308,TJ,CO2,74100.0,kg/TJ,99455766.228,kg +8dc735e5-751d-32b9-9c03-d1cb16ecf71e,SESCO,II.1.1,Misiones,AR-N,annual,2013,gas oil combustion consumption by to the public,1342.18308,TJ,CH4,3.9,kg/TJ,5234.514012,kg +8dc735e5-751d-32b9-9c03-d1cb16ecf71e,SESCO,II.1.1,Misiones,AR-N,annual,2013,gas oil combustion consumption by to the public,1342.18308,TJ,N2O,3.9,kg/TJ,5234.514012,kg +a8b935ee-44f3-35c1-ab06-1231cdf3ee53,SESCO,II.1.1,Neuquén,AR-Q,annual,2013,gas oil combustion consumption by to the public,399.41496,TJ,CO2,74100.0,kg/TJ,29596648.536000002,kg +7fdc371e-77ce-3e9c-8b8e-d0107b3a25dd,SESCO,II.1.1,Neuquén,AR-Q,annual,2013,gas oil combustion consumption by to the public,399.41496,TJ,CH4,3.9,kg/TJ,1557.718344,kg +7fdc371e-77ce-3e9c-8b8e-d0107b3a25dd,SESCO,II.1.1,Neuquén,AR-Q,annual,2013,gas oil combustion consumption by to the public,399.41496,TJ,N2O,3.9,kg/TJ,1557.718344,kg +ffe2ad0d-bcab-3293-8c86-1287135a16e1,SESCO,II.1.1,Rio Negro,AR-R,annual,2013,gas oil combustion consumption by to the public,294.95592,TJ,CO2,74100.0,kg/TJ,21856233.672,kg +6de9e627-a50f-39e5-9614-35cf53e6f535,SESCO,II.1.1,Rio Negro,AR-R,annual,2013,gas oil combustion consumption by to the public,294.95592,TJ,CH4,3.9,kg/TJ,1150.328088,kg +6de9e627-a50f-39e5-9614-35cf53e6f535,SESCO,II.1.1,Rio Negro,AR-R,annual,2013,gas oil combustion consumption by to the public,294.95592,TJ,N2O,3.9,kg/TJ,1150.328088,kg +ae62aa47-277c-3abe-bdd9-9e47957d9808,SESCO,II.1.1,Salta,AR-A,annual,2013,gas oil combustion consumption by to the public,284.37275999999997,TJ,CO2,74100.0,kg/TJ,21072021.516,kg +81ffebaf-9692-3cd9-ab51-864644603583,SESCO,II.1.1,Salta,AR-A,annual,2013,gas oil combustion consumption by to the public,284.37275999999997,TJ,CH4,3.9,kg/TJ,1109.0537639999998,kg +81ffebaf-9692-3cd9-ab51-864644603583,SESCO,II.1.1,Salta,AR-A,annual,2013,gas oil combustion consumption by to the public,284.37275999999997,TJ,N2O,3.9,kg/TJ,1109.0537639999998,kg +6c662581-9297-3f2b-8da1-27a593e00cd4,SESCO,II.1.1,San Juan,AR-J,annual,2013,gas oil combustion consumption by to the public,243.15984,TJ,CO2,74100.0,kg/TJ,18018144.144,kg +b796f837-8a3e-371d-9b08-1ea03d483b6d,SESCO,II.1.1,San Juan,AR-J,annual,2013,gas oil combustion consumption by to the public,243.15984,TJ,CH4,3.9,kg/TJ,948.3233759999999,kg +b796f837-8a3e-371d-9b08-1ea03d483b6d,SESCO,II.1.1,San Juan,AR-J,annual,2013,gas oil combustion consumption by to the public,243.15984,TJ,N2O,3.9,kg/TJ,948.3233759999999,kg +e4cb96cb-28b1-3c7f-bd21-ae2c40813734,SESCO,II.1.1,San Luis,AR-D,annual,2013,gas oil combustion consumption by to the public,17.95164,TJ,CO2,74100.0,kg/TJ,1330216.524,kg +8703c9ac-ece0-356a-a456-60b25d508ea4,SESCO,II.1.1,San Luis,AR-D,annual,2013,gas oil combustion consumption by to the public,17.95164,TJ,CH4,3.9,kg/TJ,70.011396,kg +8703c9ac-ece0-356a-a456-60b25d508ea4,SESCO,II.1.1,San Luis,AR-D,annual,2013,gas oil combustion consumption by to the public,17.95164,TJ,N2O,3.9,kg/TJ,70.011396,kg +89d68989-0ac9-3827-9468-a5351a98f3c3,SESCO,II.1.1,Santa Fe,AR-S,annual,2013,gas oil combustion consumption by to the public,4970.00364,TJ,CO2,74100.0,kg/TJ,368277269.724,kg +065c265f-80ff-33bf-916d-470ba298a30a,SESCO,II.1.1,Santa Fe,AR-S,annual,2013,gas oil combustion consumption by to the public,4970.00364,TJ,CH4,3.9,kg/TJ,19383.014196,kg +065c265f-80ff-33bf-916d-470ba298a30a,SESCO,II.1.1,Santa Fe,AR-S,annual,2013,gas oil combustion consumption by to the public,4970.00364,TJ,N2O,3.9,kg/TJ,19383.014196,kg +53c576bd-7f98-3d6f-aff7-99cecebd511a,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2013,gas oil combustion consumption by to the public,444.85392,TJ,CO2,74100.0,kg/TJ,32963675.472000003,kg +e74a699e-ebbf-3580-a21f-205dd8facb1c,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2013,gas oil combustion consumption by to the public,444.85392,TJ,CH4,3.9,kg/TJ,1734.930288,kg +e74a699e-ebbf-3580-a21f-205dd8facb1c,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2013,gas oil combustion consumption by to the public,444.85392,TJ,N2O,3.9,kg/TJ,1734.930288,kg +925e148a-3c88-322b-9073-83a6519ee2e6,SESCO,II.1.1,Tucuman,AR-T,annual,2013,gas oil combustion consumption by to the public,697.04376,TJ,CO2,74100.0,kg/TJ,51650942.616000004,kg +4abb6b45-2de6-3e23-b09c-9c446c22d93b,SESCO,II.1.1,Tucuman,AR-T,annual,2013,gas oil combustion consumption by to the public,697.04376,TJ,CH4,3.9,kg/TJ,2718.470664,kg +4abb6b45-2de6-3e23-b09c-9c446c22d93b,SESCO,II.1.1,Tucuman,AR-T,annual,2013,gas oil combustion consumption by to the public,697.04376,TJ,N2O,3.9,kg/TJ,2718.470664,kg +64faee15-c762-3f25-8f0c-bd4b226b6582,SESCO,II.1.1,Buenos Aires,AR-B,annual,2013,gas oil combustion consumption by to the public,6641.67336,TJ,CO2,74100.0,kg/TJ,492147995.976,kg +2fb63749-f0e7-3093-a6b9-89d5f954d168,SESCO,II.1.1,Buenos Aires,AR-B,annual,2013,gas oil combustion consumption by to the public,6641.67336,TJ,CH4,3.9,kg/TJ,25902.526103999997,kg +2fb63749-f0e7-3093-a6b9-89d5f954d168,SESCO,II.1.1,Buenos Aires,AR-B,annual,2013,gas oil combustion consumption by to the public,6641.67336,TJ,N2O,3.9,kg/TJ,25902.526103999997,kg +e5cc2eef-fab6-3de5-81b9-f4639c4cd516,SESCO,II.1.1,Capital Federal,AR-C,annual,2013,gas oil combustion consumption by to the public,1121.95944,TJ,CO2,74100.0,kg/TJ,83137194.50400001,kg +86e0a96f-b53c-3269-b758-d81c106c08b4,SESCO,II.1.1,Capital Federal,AR-C,annual,2013,gas oil combustion consumption by to the public,1121.95944,TJ,CH4,3.9,kg/TJ,4375.641816,kg +86e0a96f-b53c-3269-b758-d81c106c08b4,SESCO,II.1.1,Capital Federal,AR-C,annual,2013,gas oil combustion consumption by to the public,1121.95944,TJ,N2O,3.9,kg/TJ,4375.641816,kg +843bdc14-2f25-31f3-8197-09584b50b4bd,SESCO,II.1.1,Catamarca,AR-K,annual,2013,gas oil combustion consumption by to the public,28.31808,TJ,CO2,74100.0,kg/TJ,2098369.7279999997,kg +015e7233-09c5-3f11-853b-3fb6fe318138,SESCO,II.1.1,Catamarca,AR-K,annual,2013,gas oil combustion consumption by to the public,28.31808,TJ,CH4,3.9,kg/TJ,110.44051199999998,kg +015e7233-09c5-3f11-853b-3fb6fe318138,SESCO,II.1.1,Catamarca,AR-K,annual,2013,gas oil combustion consumption by to the public,28.31808,TJ,N2O,3.9,kg/TJ,110.44051199999998,kg +795c11e8-f004-3c88-af64-1d022655067f,SESCO,II.1.1,Chaco,AR-H,annual,2013,gas oil combustion consumption by to the public,316.66404,TJ,CO2,74100.0,kg/TJ,23464805.364,kg +19eb355f-1339-3337-a2bb-1b96d3455e30,SESCO,II.1.1,Chaco,AR-H,annual,2013,gas oil combustion consumption by to the public,316.66404,TJ,CH4,3.9,kg/TJ,1234.989756,kg +19eb355f-1339-3337-a2bb-1b96d3455e30,SESCO,II.1.1,Chaco,AR-H,annual,2013,gas oil combustion consumption by to the public,316.66404,TJ,N2O,3.9,kg/TJ,1234.989756,kg +596a830d-5d4f-395a-a06f-05d0798a370c,SESCO,II.1.1,Chubut,AR-U,annual,2013,gas oil combustion consumption by to the public,24.9228,TJ,CO2,74100.0,kg/TJ,1846779.48,kg +1b51c404-3896-39fa-9bf1-aad08add830e,SESCO,II.1.1,Chubut,AR-U,annual,2013,gas oil combustion consumption by to the public,24.9228,TJ,CH4,3.9,kg/TJ,97.19891999999999,kg +1b51c404-3896-39fa-9bf1-aad08add830e,SESCO,II.1.1,Chubut,AR-U,annual,2013,gas oil combustion consumption by to the public,24.9228,TJ,N2O,3.9,kg/TJ,97.19891999999999,kg +7b32a55e-d8c0-31e7-9df8-94a2041bfadb,SESCO,II.1.1,Corrientes,AR-W,annual,2013,gas oil combustion consumption by to the public,245.83272,TJ,CO2,74100.0,kg/TJ,18216204.552,kg +3bc37b92-e550-3716-bec7-0e6024c378a2,SESCO,II.1.1,Corrientes,AR-W,annual,2013,gas oil combustion consumption by to the public,245.83272,TJ,CH4,3.9,kg/TJ,958.747608,kg +3bc37b92-e550-3716-bec7-0e6024c378a2,SESCO,II.1.1,Corrientes,AR-W,annual,2013,gas oil combustion consumption by to the public,245.83272,TJ,N2O,3.9,kg/TJ,958.747608,kg +2bb42fbf-cd28-37a1-b3e8-5c412498bcde,SESCO,II.1.1,Córdoba,AR-X,annual,2013,gas oil combustion consumption by to the public,1322.02812,TJ,CO2,74100.0,kg/TJ,97962283.692,kg +e7d7c108-ef99-3aa5-a0c6-b3ef2c64f9f0,SESCO,II.1.1,Córdoba,AR-X,annual,2013,gas oil combustion consumption by to the public,1322.02812,TJ,CH4,3.9,kg/TJ,5155.909667999999,kg +e7d7c108-ef99-3aa5-a0c6-b3ef2c64f9f0,SESCO,II.1.1,Córdoba,AR-X,annual,2013,gas oil combustion consumption by to the public,1322.02812,TJ,N2O,3.9,kg/TJ,5155.909667999999,kg +7962403f-d00e-326a-825a-4461d5875094,SESCO,II.1.1,Entre Rios,AR-E,annual,2013,gas oil combustion consumption by to the public,676.41924,TJ,CO2,74100.0,kg/TJ,50122665.68399999,kg +20aa1445-b714-310d-8cc4-72f40802ace6,SESCO,II.1.1,Entre Rios,AR-E,annual,2013,gas oil combustion consumption by to the public,676.41924,TJ,CH4,3.9,kg/TJ,2638.0350359999998,kg +20aa1445-b714-310d-8cc4-72f40802ace6,SESCO,II.1.1,Entre Rios,AR-E,annual,2013,gas oil combustion consumption by to the public,676.41924,TJ,N2O,3.9,kg/TJ,2638.0350359999998,kg +514ae0a6-b25f-324a-b05f-3dd59d33db77,SESCO,II.1.1,Formosa,AR-P,annual,2013,gas oil combustion consumption by to the public,116.6676,TJ,CO2,74100.0,kg/TJ,8645069.16,kg +d7e9edd7-00ec-343f-8e99-afd2c443d88d,SESCO,II.1.1,Formosa,AR-P,annual,2013,gas oil combustion consumption by to the public,116.6676,TJ,CH4,3.9,kg/TJ,455.00363999999996,kg +d7e9edd7-00ec-343f-8e99-afd2c443d88d,SESCO,II.1.1,Formosa,AR-P,annual,2013,gas oil combustion consumption by to the public,116.6676,TJ,N2O,3.9,kg/TJ,455.00363999999996,kg +08687324-3b0c-39bb-b9f9-27a0d633019f,SESCO,II.1.1,Jujuy,AR-Y,annual,2013,gas oil combustion consumption by to the public,60.53712,TJ,CO2,74100.0,kg/TJ,4485800.592,kg +b553da1c-0138-3cd3-9c9e-bd7e32754623,SESCO,II.1.1,Jujuy,AR-Y,annual,2013,gas oil combustion consumption by to the public,60.53712,TJ,CH4,3.9,kg/TJ,236.094768,kg +b553da1c-0138-3cd3-9c9e-bd7e32754623,SESCO,II.1.1,Jujuy,AR-Y,annual,2013,gas oil combustion consumption by to the public,60.53712,TJ,N2O,3.9,kg/TJ,236.094768,kg +745b3150-2d53-346a-8fbb-892acd6b467b,SESCO,II.1.1,La Pampa,AR-L,annual,2013,gas oil combustion consumption by to the public,206.85924,TJ,CO2,74100.0,kg/TJ,15328269.684,kg +a27c999f-da79-3e9e-8870-6f99105ed12b,SESCO,II.1.1,La Pampa,AR-L,annual,2013,gas oil combustion consumption by to the public,206.85924,TJ,CH4,3.9,kg/TJ,806.751036,kg +a27c999f-da79-3e9e-8870-6f99105ed12b,SESCO,II.1.1,La Pampa,AR-L,annual,2013,gas oil combustion consumption by to the public,206.85924,TJ,N2O,3.9,kg/TJ,806.751036,kg +6101a2f3-81b7-3caf-ac7f-48f0cefc041e,SESCO,II.1.1,La Rioja,AR-F,annual,2013,gas oil combustion consumption by to the public,108.14328,TJ,CO2,74100.0,kg/TJ,8013417.048,kg +c5954835-ded5-3745-98fd-fb8d050614c2,SESCO,II.1.1,La Rioja,AR-F,annual,2013,gas oil combustion consumption by to the public,108.14328,TJ,CH4,3.9,kg/TJ,421.758792,kg +c5954835-ded5-3745-98fd-fb8d050614c2,SESCO,II.1.1,La Rioja,AR-F,annual,2013,gas oil combustion consumption by to the public,108.14328,TJ,N2O,3.9,kg/TJ,421.758792,kg +b44eace3-6ca2-371b-a960-ec443ff2ac65,SESCO,II.1.1,Mendoza,AR-M,annual,2013,gas oil combustion consumption by to the public,336.49392,TJ,CO2,74100.0,kg/TJ,24934199.472,kg +d5368f60-c2d5-3b8f-9580-b420292375b1,SESCO,II.1.1,Mendoza,AR-M,annual,2013,gas oil combustion consumption by to the public,336.49392,TJ,CH4,3.9,kg/TJ,1312.326288,kg +d5368f60-c2d5-3b8f-9580-b420292375b1,SESCO,II.1.1,Mendoza,AR-M,annual,2013,gas oil combustion consumption by to the public,336.49392,TJ,N2O,3.9,kg/TJ,1312.326288,kg +0235b582-1e67-31a3-8160-26ea9d8c7751,SESCO,II.1.1,Misiones,AR-N,annual,2013,gas oil combustion consumption by to the public,295.49772,TJ,CO2,74100.0,kg/TJ,21896381.052,kg +0860f08e-9fbb-3534-812d-b7e1fa48e975,SESCO,II.1.1,Misiones,AR-N,annual,2013,gas oil combustion consumption by to the public,295.49772,TJ,CH4,3.9,kg/TJ,1152.441108,kg +0860f08e-9fbb-3534-812d-b7e1fa48e975,SESCO,II.1.1,Misiones,AR-N,annual,2013,gas oil combustion consumption by to the public,295.49772,TJ,N2O,3.9,kg/TJ,1152.441108,kg +ce665d10-8c0f-3104-bd6c-9f4426d80363,SESCO,II.1.1,Neuquén,AR-Q,annual,2013,gas oil combustion consumption by to the public,195.44532,TJ,CO2,74100.0,kg/TJ,14482498.212000001,kg +eb265a18-3f24-32ad-8064-658fd6a53115,SESCO,II.1.1,Neuquén,AR-Q,annual,2013,gas oil combustion consumption by to the public,195.44532,TJ,CH4,3.9,kg/TJ,762.236748,kg +eb265a18-3f24-32ad-8064-658fd6a53115,SESCO,II.1.1,Neuquén,AR-Q,annual,2013,gas oil combustion consumption by to the public,195.44532,TJ,N2O,3.9,kg/TJ,762.236748,kg +46f18383-6775-389f-8136-33af46ec0895,SESCO,II.1.1,Rio Negro,AR-R,annual,2013,gas oil combustion consumption by to the public,132.5604,TJ,CO2,74100.0,kg/TJ,9822725.639999999,kg +ae75067c-4c53-32c7-8daf-fe309b8d0bf3,SESCO,II.1.1,Rio Negro,AR-R,annual,2013,gas oil combustion consumption by to the public,132.5604,TJ,CH4,3.9,kg/TJ,516.98556,kg +ae75067c-4c53-32c7-8daf-fe309b8d0bf3,SESCO,II.1.1,Rio Negro,AR-R,annual,2013,gas oil combustion consumption by to the public,132.5604,TJ,N2O,3.9,kg/TJ,516.98556,kg +02371671-287c-35ba-b136-1ad4425def44,SESCO,II.1.1,Salta,AR-A,annual,2013,gas oil combustion consumption by to the public,138.3396,TJ,CO2,74100.0,kg/TJ,10250964.36,kg +f8b5d556-d673-3e83-a791-2a147b6e9f4f,SESCO,II.1.1,Salta,AR-A,annual,2013,gas oil combustion consumption by to the public,138.3396,TJ,CH4,3.9,kg/TJ,539.5244399999999,kg +f8b5d556-d673-3e83-a791-2a147b6e9f4f,SESCO,II.1.1,Salta,AR-A,annual,2013,gas oil combustion consumption by to the public,138.3396,TJ,N2O,3.9,kg/TJ,539.5244399999999,kg +b811e627-7213-369f-a3d5-778a403360c2,SESCO,II.1.1,San Juan,AR-J,annual,2013,gas oil combustion consumption by to the public,68.51964,TJ,CO2,74100.0,kg/TJ,5077305.324,kg +dac58ea1-2585-37a2-840b-8ab689015225,SESCO,II.1.1,San Juan,AR-J,annual,2013,gas oil combustion consumption by to the public,68.51964,TJ,CH4,3.9,kg/TJ,267.226596,kg +dac58ea1-2585-37a2-840b-8ab689015225,SESCO,II.1.1,San Juan,AR-J,annual,2013,gas oil combustion consumption by to the public,68.51964,TJ,N2O,3.9,kg/TJ,267.226596,kg +822b705a-c571-37af-a849-7f449566be74,SESCO,II.1.1,San Luis,AR-D,annual,2013,gas oil combustion consumption by to the public,20.2272,TJ,CO2,74100.0,kg/TJ,1498835.52,kg +d130992f-455b-334c-947c-7558bd43253b,SESCO,II.1.1,San Luis,AR-D,annual,2013,gas oil combustion consumption by to the public,20.2272,TJ,CH4,3.9,kg/TJ,78.88607999999999,kg +d130992f-455b-334c-947c-7558bd43253b,SESCO,II.1.1,San Luis,AR-D,annual,2013,gas oil combustion consumption by to the public,20.2272,TJ,N2O,3.9,kg/TJ,78.88607999999999,kg +91b264cc-0722-3fe0-81f3-afc915f37da7,SESCO,II.1.1,Santa Fe,AR-S,annual,2013,gas oil combustion consumption by to the public,1705.98372,TJ,CO2,74100.0,kg/TJ,126413393.652,kg +92bce1af-c372-3ac2-8e02-bd4b412d107d,SESCO,II.1.1,Santa Fe,AR-S,annual,2013,gas oil combustion consumption by to the public,1705.98372,TJ,CH4,3.9,kg/TJ,6653.336507999999,kg +92bce1af-c372-3ac2-8e02-bd4b412d107d,SESCO,II.1.1,Santa Fe,AR-S,annual,2013,gas oil combustion consumption by to the public,1705.98372,TJ,N2O,3.9,kg/TJ,6653.336507999999,kg +854f4bb6-3d4f-34d2-928e-ec57f0b041a4,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2013,gas oil combustion consumption by to the public,160.734,TJ,CO2,74100.0,kg/TJ,11910389.4,kg +cf46dbc7-970c-3900-a16b-c827865347a9,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2013,gas oil combustion consumption by to the public,160.734,TJ,CH4,3.9,kg/TJ,626.8626,kg +cf46dbc7-970c-3900-a16b-c827865347a9,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2013,gas oil combustion consumption by to the public,160.734,TJ,N2O,3.9,kg/TJ,626.8626,kg +ee6ba9d1-8ff5-3fc7-b7fa-58f6fd55354a,SESCO,II.1.1,Tucuman,AR-T,annual,2013,gas oil combustion consumption by to the public,299.83212,TJ,CO2,74100.0,kg/TJ,22217560.091999996,kg +224405e1-ade4-34e3-9a4d-3555ea267017,SESCO,II.1.1,Tucuman,AR-T,annual,2013,gas oil combustion consumption by to the public,299.83212,TJ,CH4,3.9,kg/TJ,1169.3452679999998,kg +224405e1-ade4-34e3-9a4d-3555ea267017,SESCO,II.1.1,Tucuman,AR-T,annual,2013,gas oil combustion consumption by to the public,299.83212,TJ,N2O,3.9,kg/TJ,1169.3452679999998,kg +19155f40-fa18-3029-b781-ae79feb6f86f,SESCO,II.1.1,Entre Rios,AR-E,annual,2013,jet kerosene combustion consumption by to the public,1.4153849999999997,TJ,CO2,71500.0,kg/TJ,101200.02749999998,kg +ae2c3d4d-629c-3556-9bfb-8c08cb1ec01b,SESCO,II.1.1,Entre Rios,AR-E,annual,2013,jet kerosene combustion consumption by to the public,1.4153849999999997,TJ,CH4,0.5,kg/TJ,0.7076924999999998,kg +c7e01b02-89ee-33ec-b371-438c812bdbd5,SESCO,II.1.1,Entre Rios,AR-E,annual,2013,jet kerosene combustion consumption by to the public,1.4153849999999997,TJ,N2O,2.0,kg/TJ,2.8307699999999993,kg +3ad2e17f-04be-3897-a12c-f18a9e630a7b,SESCO,I.3.1,Buenos Aires,AR-B,annual,2013,gasoline combustion consumption by petrochemical industries,183.0033,TJ,CO2,69300.0,kg/TJ,12682128.69,kg +fde6d45e-6638-32e8-b7ff-2e721584b852,SESCO,I.3.1,Buenos Aires,AR-B,annual,2013,gasoline combustion consumption by petrochemical industries,183.0033,TJ,CH4,33.0,kg/TJ,6039.1089,kg +a8691bef-03ec-362f-8086-feff4fdf16e8,SESCO,I.3.1,Buenos Aires,AR-B,annual,2013,gasoline combustion consumption by petrochemical industries,183.0033,TJ,N2O,3.2,kg/TJ,585.61056,kg +74be579b-9890-31f4-bb19-0d781fab6c12,SESCO,I.3.1,Capital Federal,AR-C,annual,2013,gas oil combustion consumption by petrochemical industries,2.5284,TJ,CO2,74100.0,kg/TJ,187354.44,kg +353d42ed-2c3b-3de4-959c-fc1cbe2d83d7,SESCO,I.3.1,Capital Federal,AR-C,annual,2013,gas oil combustion consumption by petrochemical industries,2.5284,TJ,CH4,3.9,kg/TJ,9.860759999999999,kg +353d42ed-2c3b-3de4-959c-fc1cbe2d83d7,SESCO,I.3.1,Capital Federal,AR-C,annual,2013,gas oil combustion consumption by petrochemical industries,2.5284,TJ,N2O,3.9,kg/TJ,9.860759999999999,kg +a7bf202c-f316-3042-95ea-fed9e80068c3,SESCO,II.2.1,Buenos Aires,AR-B,annual,2013,gas oil combustion consumption by railway transport,443.08404,TJ,CO2,74100.0,kg/TJ,32832527.364,kg +f5b37882-0d69-3cb2-9839-2feb92c5b1d2,SESCO,II.2.1,Buenos Aires,AR-B,annual,2013,gas oil combustion consumption by railway transport,443.08404,TJ,CH4,3.9,kg/TJ,1728.027756,kg +f5b37882-0d69-3cb2-9839-2feb92c5b1d2,SESCO,II.2.1,Buenos Aires,AR-B,annual,2013,gas oil combustion consumption by railway transport,443.08404,TJ,N2O,3.9,kg/TJ,1728.027756,kg +7b9ab22e-9097-3a11-ae91-160fba969637,SESCO,II.2.1,Capital Federal,AR-C,annual,2013,gas oil combustion consumption by railway transport,1630.38456,TJ,CO2,74100.0,kg/TJ,120811495.896,kg +c8ee5a44-2d3c-35b0-81bd-5ddcec96d666,SESCO,II.2.1,Capital Federal,AR-C,annual,2013,gas oil combustion consumption by railway transport,1630.38456,TJ,CH4,3.9,kg/TJ,6358.499784,kg +c8ee5a44-2d3c-35b0-81bd-5ddcec96d666,SESCO,II.2.1,Capital Federal,AR-C,annual,2013,gas oil combustion consumption by railway transport,1630.38456,TJ,N2O,3.9,kg/TJ,6358.499784,kg +d1da070e-e768-3221-adcc-7bf1c5fa6401,SESCO,II.2.1,Santa Fe,AR-S,annual,2013,gas oil combustion consumption by railway transport,303.62471999999997,TJ,CO2,74100.0,kg/TJ,22498591.751999997,kg +9f2b0a48-85cc-33fd-b7eb-30830a7ab6ef,SESCO,II.2.1,Santa Fe,AR-S,annual,2013,gas oil combustion consumption by railway transport,303.62471999999997,TJ,CH4,3.9,kg/TJ,1184.1364079999998,kg +9f2b0a48-85cc-33fd-b7eb-30830a7ab6ef,SESCO,II.2.1,Santa Fe,AR-S,annual,2013,gas oil combustion consumption by railway transport,303.62471999999997,TJ,N2O,3.9,kg/TJ,1184.1364079999998,kg +46972f21-d00f-3017-87d5-e043e7c0b7d3,SESCO,II.2.1,Capital Federal,AR-C,annual,2013,gas oil combustion consumption by railway transport,0.68628,TJ,CO2,74100.0,kg/TJ,50853.348,kg +47b2f874-8eba-3024-b2eb-54c34fb88df1,SESCO,II.2.1,Capital Federal,AR-C,annual,2013,gas oil combustion consumption by railway transport,0.68628,TJ,CH4,3.9,kg/TJ,2.676492,kg +47b2f874-8eba-3024-b2eb-54c34fb88df1,SESCO,II.2.1,Capital Federal,AR-C,annual,2013,gas oil combustion consumption by railway transport,0.68628,TJ,N2O,3.9,kg/TJ,2.676492,kg +19fa4822-4490-3a0b-8275-e45fb9178343,SESCO,II.1.1,Buenos Aires,AR-B,annual,2013,gasoline combustion consumption by freight transport,4.5629,TJ,CO2,69300.0,kg/TJ,316208.97,kg +d8cfb1e4-ee14-3699-8fdf-ef22f9e29f8f,SESCO,II.1.1,Buenos Aires,AR-B,annual,2013,gasoline combustion consumption by freight transport,4.5629,TJ,CH4,33.0,kg/TJ,150.5757,kg +9094cffb-c094-313d-b7bb-cbede110c6d7,SESCO,II.1.1,Buenos Aires,AR-B,annual,2013,gasoline combustion consumption by freight transport,4.5629,TJ,N2O,3.2,kg/TJ,14.601280000000001,kg +99c9f11e-4827-33b8-b0ff-a34f85c6027d,SESCO,II.1.1,Capital Federal,AR-C,annual,2013,gasoline combustion consumption by freight transport,11.9167,TJ,CO2,69300.0,kg/TJ,825827.31,kg +1c2edc3e-4280-3840-96f8-7eaf8bcdd565,SESCO,II.1.1,Capital Federal,AR-C,annual,2013,gasoline combustion consumption by freight transport,11.9167,TJ,CH4,33.0,kg/TJ,393.2511,kg +94e183b5-d8ba-3429-838c-cc21cd61d04a,SESCO,II.1.1,Capital Federal,AR-C,annual,2013,gasoline combustion consumption by freight transport,11.9167,TJ,N2O,3.2,kg/TJ,38.13344,kg +a3ab51da-fbd1-337b-88c7-9bff16f1bf78,SESCO,II.1.1,Buenos Aires,AR-B,annual,2013,gas oil combustion consumption by freight transport,668.83404,TJ,CO2,74100.0,kg/TJ,49560602.364,kg +6bd22d26-468b-380c-82a5-3638d3c3e160,SESCO,II.1.1,Buenos Aires,AR-B,annual,2013,gas oil combustion consumption by freight transport,668.83404,TJ,CH4,3.9,kg/TJ,2608.4527559999997,kg +6bd22d26-468b-380c-82a5-3638d3c3e160,SESCO,II.1.1,Buenos Aires,AR-B,annual,2013,gas oil combustion consumption by freight transport,668.83404,TJ,N2O,3.9,kg/TJ,2608.4527559999997,kg +ef07cecb-882b-3f77-83ce-0f36cbf7038f,SESCO,II.1.1,Capital Federal,AR-C,annual,2013,gas oil combustion consumption by freight transport,255.58512,TJ,CO2,74100.0,kg/TJ,18938857.392,kg +03d8632e-5b2f-32b8-82ec-ba477f66c7a3,SESCO,II.1.1,Capital Federal,AR-C,annual,2013,gas oil combustion consumption by freight transport,255.58512,TJ,CH4,3.9,kg/TJ,996.7819679999999,kg +03d8632e-5b2f-32b8-82ec-ba477f66c7a3,SESCO,II.1.1,Capital Federal,AR-C,annual,2013,gas oil combustion consumption by freight transport,255.58512,TJ,N2O,3.9,kg/TJ,996.7819679999999,kg +91723061-ec58-35f1-985b-6dfc269492f6,SESCO,II.1.1,Córdoba,AR-X,annual,2013,gas oil combustion consumption by freight transport,195.48144,TJ,CO2,74100.0,kg/TJ,14485174.704,kg +daf7f40b-b681-330c-8ba5-7e51ac259c4f,SESCO,II.1.1,Córdoba,AR-X,annual,2013,gas oil combustion consumption by freight transport,195.48144,TJ,CH4,3.9,kg/TJ,762.377616,kg +daf7f40b-b681-330c-8ba5-7e51ac259c4f,SESCO,II.1.1,Córdoba,AR-X,annual,2013,gas oil combustion consumption by freight transport,195.48144,TJ,N2O,3.9,kg/TJ,762.377616,kg +525ee814-2a3e-3579-9469-627720741736,SESCO,II.1.1,Capital Federal,AR-C,annual,2013,gas oil combustion consumption by public passenger transport,143.07132,TJ,CO2,74100.0,kg/TJ,10601584.811999999,kg +8e819522-036b-367f-9665-1d88dc3e4957,SESCO,II.1.1,Capital Federal,AR-C,annual,2013,gas oil combustion consumption by public passenger transport,143.07132,TJ,CH4,3.9,kg/TJ,557.9781479999999,kg +8e819522-036b-367f-9665-1d88dc3e4957,SESCO,II.1.1,Capital Federal,AR-C,annual,2013,gas oil combustion consumption by public passenger transport,143.07132,TJ,N2O,3.9,kg/TJ,557.9781479999999,kg +1266e2ac-affd-3ac4-b3cd-7e61a7c50e33,SESCO,II.1.1,Misiones,AR-N,annual,2013,gas oil combustion consumption by public passenger transport,129.77916,TJ,CO2,74100.0,kg/TJ,9616635.756,kg +60565ebd-0215-35db-a2d5-c662e8826d0c,SESCO,II.1.1,Misiones,AR-N,annual,2013,gas oil combustion consumption by public passenger transport,129.77916,TJ,CH4,3.9,kg/TJ,506.13872399999997,kg +60565ebd-0215-35db-a2d5-c662e8826d0c,SESCO,II.1.1,Misiones,AR-N,annual,2013,gas oil combustion consumption by public passenger transport,129.77916,TJ,N2O,3.9,kg/TJ,506.13872399999997,kg +df6fb6a7-e165-3f0b-9ec2-2d0f038e312b,SESCO,II.5.1,Buenos Aires,AR-B,annual,2013,gasoline combustion consumption by agriculture machines,13.4229,TJ,CO2,69300.0,kg/TJ,930206.97,kg +076e0942-5906-3747-af82-d0b71985f5f7,SESCO,II.5.1,Buenos Aires,AR-B,annual,2013,gasoline combustion consumption by agriculture machines,13.4229,TJ,CH4,33.0,kg/TJ,442.95570000000004,kg +675cf6b3-ce8b-30cd-a274-01610a809abd,SESCO,II.5.1,Buenos Aires,AR-B,annual,2013,gasoline combustion consumption by agriculture machines,13.4229,TJ,N2O,3.2,kg/TJ,42.95328000000001,kg +c6f79b74-69f7-38ef-ab1e-6363036a1b07,SESCO,II.5.1,Buenos Aires,AR-B,annual,2013,gas oil combustion consumption by agriculture machines,9182.28192,TJ,CO2,74100.0,kg/TJ,680407090.272,kg +e201dabe-c0e6-3358-8e3e-3d9a7fe8d9c4,SESCO,II.5.1,Buenos Aires,AR-B,annual,2013,gas oil combustion consumption by agriculture machines,9182.28192,TJ,CH4,3.9,kg/TJ,35810.899487999995,kg +e201dabe-c0e6-3358-8e3e-3d9a7fe8d9c4,SESCO,II.5.1,Buenos Aires,AR-B,annual,2013,gas oil combustion consumption by agriculture machines,9182.28192,TJ,N2O,3.9,kg/TJ,35810.899487999995,kg +546c9ed8-5182-3c57-a6cd-0841765ba4d6,SESCO,II.5.1,Capital Federal,AR-C,annual,2013,gas oil combustion consumption by agriculture machines,10.25808,TJ,CO2,74100.0,kg/TJ,760123.728,kg +668eaafa-2007-37d4-87c4-ea46e7bae8ac,SESCO,II.5.1,Capital Federal,AR-C,annual,2013,gas oil combustion consumption by agriculture machines,10.25808,TJ,CH4,3.9,kg/TJ,40.006512,kg +668eaafa-2007-37d4-87c4-ea46e7bae8ac,SESCO,II.5.1,Capital Federal,AR-C,annual,2013,gas oil combustion consumption by agriculture machines,10.25808,TJ,N2O,3.9,kg/TJ,40.006512,kg +83e3b390-1816-33b2-b7d0-c539c5d41448,SESCO,II.5.1,Catamarca,AR-K,annual,2013,gas oil combustion consumption by agriculture machines,107.52924,TJ,CO2,74100.0,kg/TJ,7967916.684,kg +5f331f7c-992e-3bc7-ab9e-f93be501db5d,SESCO,II.5.1,Catamarca,AR-K,annual,2013,gas oil combustion consumption by agriculture machines,107.52924,TJ,CH4,3.9,kg/TJ,419.364036,kg +5f331f7c-992e-3bc7-ab9e-f93be501db5d,SESCO,II.5.1,Catamarca,AR-K,annual,2013,gas oil combustion consumption by agriculture machines,107.52924,TJ,N2O,3.9,kg/TJ,419.364036,kg +9a303c16-2425-353b-9bac-e51383f25ad7,SESCO,II.5.1,Chaco,AR-H,annual,2013,gas oil combustion consumption by agriculture machines,1361.68788,TJ,CO2,74100.0,kg/TJ,100901071.90799999,kg +97242177-4dec-328a-9a9c-e80524e58d46,SESCO,II.5.1,Chaco,AR-H,annual,2013,gas oil combustion consumption by agriculture machines,1361.68788,TJ,CH4,3.9,kg/TJ,5310.582732,kg +97242177-4dec-328a-9a9c-e80524e58d46,SESCO,II.5.1,Chaco,AR-H,annual,2013,gas oil combustion consumption by agriculture machines,1361.68788,TJ,N2O,3.9,kg/TJ,5310.582732,kg +6f9b7788-d40e-30eb-84b8-cf4bc145b3a5,SESCO,II.5.1,Chubut,AR-U,annual,2013,gas oil combustion consumption by agriculture machines,17.26536,TJ,CO2,74100.0,kg/TJ,1279363.176,kg +33767135-cd76-3288-9f61-56c1dbeb387b,SESCO,II.5.1,Chubut,AR-U,annual,2013,gas oil combustion consumption by agriculture machines,17.26536,TJ,CH4,3.9,kg/TJ,67.33490400000001,kg +33767135-cd76-3288-9f61-56c1dbeb387b,SESCO,II.5.1,Chubut,AR-U,annual,2013,gas oil combustion consumption by agriculture machines,17.26536,TJ,N2O,3.9,kg/TJ,67.33490400000001,kg +f512c638-e584-3d86-a765-afd75e68f9e7,SESCO,II.5.1,Corrientes,AR-W,annual,2013,gas oil combustion consumption by agriculture machines,386.77296,TJ,CO2,74100.0,kg/TJ,28659876.336,kg +2d718b7c-4e3f-30d2-b658-439133f624d9,SESCO,II.5.1,Corrientes,AR-W,annual,2013,gas oil combustion consumption by agriculture machines,386.77296,TJ,CH4,3.9,kg/TJ,1508.414544,kg +2d718b7c-4e3f-30d2-b658-439133f624d9,SESCO,II.5.1,Corrientes,AR-W,annual,2013,gas oil combustion consumption by agriculture machines,386.77296,TJ,N2O,3.9,kg/TJ,1508.414544,kg +4494e0ea-01ea-3c04-8b97-93b3d426522e,SESCO,II.5.1,Córdoba,AR-X,annual,2013,gas oil combustion consumption by agriculture machines,7703.24016,TJ,CO2,74100.0,kg/TJ,570810095.8560001,kg +9bc3dca4-5f03-3dda-9ec6-cbdebc92d4b6,SESCO,II.5.1,Córdoba,AR-X,annual,2013,gas oil combustion consumption by agriculture machines,7703.24016,TJ,CH4,3.9,kg/TJ,30042.636624,kg +9bc3dca4-5f03-3dda-9ec6-cbdebc92d4b6,SESCO,II.5.1,Córdoba,AR-X,annual,2013,gas oil combustion consumption by agriculture machines,7703.24016,TJ,N2O,3.9,kg/TJ,30042.636624,kg +86cf46df-fbe6-3c42-bbd3-20afda986b58,SESCO,II.5.1,Entre Rios,AR-E,annual,2013,gas oil combustion consumption by agriculture machines,2400.02952,TJ,CO2,74100.0,kg/TJ,177842187.432,kg +27f7e57f-7c31-3a02-8957-f0b94d1327df,SESCO,II.5.1,Entre Rios,AR-E,annual,2013,gas oil combustion consumption by agriculture machines,2400.02952,TJ,CH4,3.9,kg/TJ,9360.115128,kg +27f7e57f-7c31-3a02-8957-f0b94d1327df,SESCO,II.5.1,Entre Rios,AR-E,annual,2013,gas oil combustion consumption by agriculture machines,2400.02952,TJ,N2O,3.9,kg/TJ,9360.115128,kg +835e118e-e1f2-3843-b6b2-f1557ede98e1,SESCO,II.5.1,Formosa,AR-P,annual,2013,gas oil combustion consumption by agriculture machines,416.60808,TJ,CO2,74100.0,kg/TJ,30870658.727999996,kg +2ff53d3d-4248-3a2c-97b5-ddcab2a7e078,SESCO,II.5.1,Formosa,AR-P,annual,2013,gas oil combustion consumption by agriculture machines,416.60808,TJ,CH4,3.9,kg/TJ,1624.7715119999998,kg +2ff53d3d-4248-3a2c-97b5-ddcab2a7e078,SESCO,II.5.1,Formosa,AR-P,annual,2013,gas oil combustion consumption by agriculture machines,416.60808,TJ,N2O,3.9,kg/TJ,1624.7715119999998,kg +bce4ea19-dfa6-309a-8ea7-eb33b7bdfb8b,SESCO,II.5.1,Jujuy,AR-Y,annual,2013,gas oil combustion consumption by agriculture machines,961.91172,TJ,CO2,74100.0,kg/TJ,71277658.45199999,kg +708f22c8-a559-32ff-988b-a03623f72437,SESCO,II.5.1,Jujuy,AR-Y,annual,2013,gas oil combustion consumption by agriculture machines,961.91172,TJ,CH4,3.9,kg/TJ,3751.4557079999995,kg +708f22c8-a559-32ff-988b-a03623f72437,SESCO,II.5.1,Jujuy,AR-Y,annual,2013,gas oil combustion consumption by agriculture machines,961.91172,TJ,N2O,3.9,kg/TJ,3751.4557079999995,kg +ec48b88d-4d6b-3a74-936e-3bac14add9e5,SESCO,II.5.1,La Pampa,AR-L,annual,2013,gas oil combustion consumption by agriculture machines,2224.59468,TJ,CO2,74100.0,kg/TJ,164842465.78800002,kg +f438b55e-65e6-3649-a9ea-1b1f39228f6d,SESCO,II.5.1,La Pampa,AR-L,annual,2013,gas oil combustion consumption by agriculture machines,2224.59468,TJ,CH4,3.9,kg/TJ,8675.919252,kg +f438b55e-65e6-3649-a9ea-1b1f39228f6d,SESCO,II.5.1,La Pampa,AR-L,annual,2013,gas oil combustion consumption by agriculture machines,2224.59468,TJ,N2O,3.9,kg/TJ,8675.919252,kg +17afd820-51ad-3316-aa45-cc70d2508c53,SESCO,II.5.1,Mendoza,AR-M,annual,2013,gas oil combustion consumption by agriculture machines,514.45716,TJ,CO2,74100.0,kg/TJ,38121275.556,kg +ba755091-d2ae-31c4-8b96-fd35a41d6b8e,SESCO,II.5.1,Mendoza,AR-M,annual,2013,gas oil combustion consumption by agriculture machines,514.45716,TJ,CH4,3.9,kg/TJ,2006.3829240000002,kg +ba755091-d2ae-31c4-8b96-fd35a41d6b8e,SESCO,II.5.1,Mendoza,AR-M,annual,2013,gas oil combustion consumption by agriculture machines,514.45716,TJ,N2O,3.9,kg/TJ,2006.3829240000002,kg +d891d44d-8fcc-3150-9e33-ee3f5ec4792c,SESCO,II.5.1,Misiones,AR-N,annual,2013,gas oil combustion consumption by agriculture machines,1131.49512,TJ,CO2,74100.0,kg/TJ,83843788.392,kg +4fe09dd1-5c0d-3b4c-a3d8-8f9e0aa244dc,SESCO,II.5.1,Misiones,AR-N,annual,2013,gas oil combustion consumption by agriculture machines,1131.49512,TJ,CH4,3.9,kg/TJ,4412.830968,kg +4fe09dd1-5c0d-3b4c-a3d8-8f9e0aa244dc,SESCO,II.5.1,Misiones,AR-N,annual,2013,gas oil combustion consumption by agriculture machines,1131.49512,TJ,N2O,3.9,kg/TJ,4412.830968,kg +b60f80d1-355a-38ee-80c9-418c29ce496a,SESCO,II.5.1,Rio Negro,AR-R,annual,2013,gas oil combustion consumption by agriculture machines,181.75584,TJ,CO2,74100.0,kg/TJ,13468107.744,kg +af931b1f-f62d-3e88-802c-7b324c238b7a,SESCO,II.5.1,Rio Negro,AR-R,annual,2013,gas oil combustion consumption by agriculture machines,181.75584,TJ,CH4,3.9,kg/TJ,708.847776,kg +af931b1f-f62d-3e88-802c-7b324c238b7a,SESCO,II.5.1,Rio Negro,AR-R,annual,2013,gas oil combustion consumption by agriculture machines,181.75584,TJ,N2O,3.9,kg/TJ,708.847776,kg +e87ac00e-cbec-3670-9e56-8dbcb092bf90,SESCO,II.5.1,Salta,AR-A,annual,2013,gas oil combustion consumption by agriculture machines,1749.94176,TJ,CO2,74100.0,kg/TJ,129670684.416,kg +b3321821-9e5b-388b-bdd7-f4def2b481b8,SESCO,II.5.1,Salta,AR-A,annual,2013,gas oil combustion consumption by agriculture machines,1749.94176,TJ,CH4,3.9,kg/TJ,6824.772864,kg +b3321821-9e5b-388b-bdd7-f4def2b481b8,SESCO,II.5.1,Salta,AR-A,annual,2013,gas oil combustion consumption by agriculture machines,1749.94176,TJ,N2O,3.9,kg/TJ,6824.772864,kg +9410f745-e2aa-32df-8b23-b85814d686b2,SESCO,II.5.1,San Luis,AR-D,annual,2013,gas oil combustion consumption by agriculture machines,579.22032,TJ,CO2,74100.0,kg/TJ,42920225.712,kg +ef347b1d-22c0-329e-838a-54960666f1d3,SESCO,II.5.1,San Luis,AR-D,annual,2013,gas oil combustion consumption by agriculture machines,579.22032,TJ,CH4,3.9,kg/TJ,2258.959248,kg +ef347b1d-22c0-329e-838a-54960666f1d3,SESCO,II.5.1,San Luis,AR-D,annual,2013,gas oil combustion consumption by agriculture machines,579.22032,TJ,N2O,3.9,kg/TJ,2258.959248,kg +078ad81a-ac82-352c-bb7b-12aaf1d058f3,SESCO,II.5.1,Santa Cruz,AR-Z,annual,2013,gas oil combustion consumption by agriculture machines,2.05884,TJ,CO2,74100.0,kg/TJ,152560.044,kg +7eb054d7-338c-3e62-9ef0-4f481a710008,SESCO,II.5.1,Santa Cruz,AR-Z,annual,2013,gas oil combustion consumption by agriculture machines,2.05884,TJ,CH4,3.9,kg/TJ,8.029475999999999,kg +7eb054d7-338c-3e62-9ef0-4f481a710008,SESCO,II.5.1,Santa Cruz,AR-Z,annual,2013,gas oil combustion consumption by agriculture machines,2.05884,TJ,N2O,3.9,kg/TJ,8.029475999999999,kg +e5b3f34c-c515-3577-8448-92d98e684428,SESCO,II.5.1,Santa Fe,AR-S,annual,2013,gas oil combustion consumption by agriculture machines,6246.37608,TJ,CO2,74100.0,kg/TJ,462856467.528,kg +3bb3f757-fcc4-3151-95e8-9b12f8f9d1d7,SESCO,II.5.1,Santa Fe,AR-S,annual,2013,gas oil combustion consumption by agriculture machines,6246.37608,TJ,CH4,3.9,kg/TJ,24360.866712,kg +3bb3f757-fcc4-3151-95e8-9b12f8f9d1d7,SESCO,II.5.1,Santa Fe,AR-S,annual,2013,gas oil combustion consumption by agriculture machines,6246.37608,TJ,N2O,3.9,kg/TJ,24360.866712,kg +d9580bdb-6203-35a4-8a7f-91527438a421,SESCO,II.5.1,Santiago del Estero,AR-G,annual,2013,gas oil combustion consumption by agriculture machines,1476.80232,TJ,CO2,74100.0,kg/TJ,109431051.912,kg +67242214-e3ba-3c29-af8a-1fec37da41ae,SESCO,II.5.1,Santiago del Estero,AR-G,annual,2013,gas oil combustion consumption by agriculture machines,1476.80232,TJ,CH4,3.9,kg/TJ,5759.529048,kg +67242214-e3ba-3c29-af8a-1fec37da41ae,SESCO,II.5.1,Santiago del Estero,AR-G,annual,2013,gas oil combustion consumption by agriculture machines,1476.80232,TJ,N2O,3.9,kg/TJ,5759.529048,kg +b31053b0-9735-3697-b500-47c2278be2fe,SESCO,II.5.1,Tucuman,AR-T,annual,2013,gas oil combustion consumption by agriculture machines,1382.1679199999999,TJ,CO2,74100.0,kg/TJ,102418642.872,kg +fedb805e-1fa7-3865-ac6f-ad2dea754704,SESCO,II.5.1,Tucuman,AR-T,annual,2013,gas oil combustion consumption by agriculture machines,1382.1679199999999,TJ,CH4,3.9,kg/TJ,5390.454887999999,kg +fedb805e-1fa7-3865-ac6f-ad2dea754704,SESCO,II.5.1,Tucuman,AR-T,annual,2013,gas oil combustion consumption by agriculture machines,1382.1679199999999,TJ,N2O,3.9,kg/TJ,5390.454887999999,kg +23bdfc6d-fb37-35e8-a7ff-235950ebcab5,SESCO,II.5.1,Buenos Aires,AR-B,annual,2013,gas oil combustion consumption by agriculture machines,100.34136,TJ,CO2,74100.0,kg/TJ,7435294.776,kg +6b87e87e-1304-3606-9ce8-3e273503d9f5,SESCO,II.5.1,Buenos Aires,AR-B,annual,2013,gas oil combustion consumption by agriculture machines,100.34136,TJ,CH4,3.9,kg/TJ,391.331304,kg +6b87e87e-1304-3606-9ce8-3e273503d9f5,SESCO,II.5.1,Buenos Aires,AR-B,annual,2013,gas oil combustion consumption by agriculture machines,100.34136,TJ,N2O,3.9,kg/TJ,391.331304,kg +05fcc22f-0885-37c4-b9d6-a4c8b48d8cf4,SESCO,II.5.1,Chaco,AR-H,annual,2013,gas oil combustion consumption by agriculture machines,7.8380399999999995,TJ,CO2,74100.0,kg/TJ,580798.764,kg +04b3e18a-fa6d-3f08-b9aa-a9558c569d42,SESCO,II.5.1,Chaco,AR-H,annual,2013,gas oil combustion consumption by agriculture machines,7.8380399999999995,TJ,CH4,3.9,kg/TJ,30.568355999999998,kg +04b3e18a-fa6d-3f08-b9aa-a9558c569d42,SESCO,II.5.1,Chaco,AR-H,annual,2013,gas oil combustion consumption by agriculture machines,7.8380399999999995,TJ,N2O,3.9,kg/TJ,30.568355999999998,kg +76dc9ab2-986b-3efb-8d7d-b437336d86ec,SESCO,II.5.1,Corrientes,AR-W,annual,2013,gas oil combustion consumption by agriculture machines,18.56568,TJ,CO2,74100.0,kg/TJ,1375716.888,kg +09bb5dbe-8bb8-358e-88d2-aa435a85c443,SESCO,II.5.1,Corrientes,AR-W,annual,2013,gas oil combustion consumption by agriculture machines,18.56568,TJ,CH4,3.9,kg/TJ,72.406152,kg +09bb5dbe-8bb8-358e-88d2-aa435a85c443,SESCO,II.5.1,Corrientes,AR-W,annual,2013,gas oil combustion consumption by agriculture machines,18.56568,TJ,N2O,3.9,kg/TJ,72.406152,kg +ab2a3acc-7187-3af1-8f55-a8264c6bfd11,SESCO,II.5.1,Córdoba,AR-X,annual,2013,gas oil combustion consumption by agriculture machines,22.61112,TJ,CO2,74100.0,kg/TJ,1675483.992,kg +23a6d479-d20b-385e-8b41-57db297a0076,SESCO,II.5.1,Córdoba,AR-X,annual,2013,gas oil combustion consumption by agriculture machines,22.61112,TJ,CH4,3.9,kg/TJ,88.183368,kg +23a6d479-d20b-385e-8b41-57db297a0076,SESCO,II.5.1,Córdoba,AR-X,annual,2013,gas oil combustion consumption by agriculture machines,22.61112,TJ,N2O,3.9,kg/TJ,88.183368,kg +52da28e2-6270-3eef-a0f9-bf6970979f95,SESCO,II.5.1,Entre Rios,AR-E,annual,2013,gas oil combustion consumption by agriculture machines,6.42936,TJ,CO2,74100.0,kg/TJ,476415.576,kg +bc577fab-4b3b-3780-87c7-8d699452775b,SESCO,II.5.1,Entre Rios,AR-E,annual,2013,gas oil combustion consumption by agriculture machines,6.42936,TJ,CH4,3.9,kg/TJ,25.074504,kg +bc577fab-4b3b-3780-87c7-8d699452775b,SESCO,II.5.1,Entre Rios,AR-E,annual,2013,gas oil combustion consumption by agriculture machines,6.42936,TJ,N2O,3.9,kg/TJ,25.074504,kg +02c37a66-d759-3bf8-97c2-68e42c7608de,SESCO,II.5.1,Jujuy,AR-Y,annual,2013,gas oil combustion consumption by agriculture machines,17.6988,TJ,CO2,74100.0,kg/TJ,1311481.0799999998,kg +e91c7cf0-34bc-361d-bf62-ba7070588d5a,SESCO,II.5.1,Jujuy,AR-Y,annual,2013,gas oil combustion consumption by agriculture machines,17.6988,TJ,CH4,3.9,kg/TJ,69.02532,kg +e91c7cf0-34bc-361d-bf62-ba7070588d5a,SESCO,II.5.1,Jujuy,AR-Y,annual,2013,gas oil combustion consumption by agriculture machines,17.6988,TJ,N2O,3.9,kg/TJ,69.02532,kg +c2dcb365-f01e-39ba-8bdb-f011dc4f28a2,SESCO,II.5.1,La Pampa,AR-L,annual,2013,gas oil combustion consumption by agriculture machines,90.73344,TJ,CO2,74100.0,kg/TJ,6723347.904,kg +3b1c2e68-3b5c-3479-b48b-fcb3272d7488,SESCO,II.5.1,La Pampa,AR-L,annual,2013,gas oil combustion consumption by agriculture machines,90.73344,TJ,CH4,3.9,kg/TJ,353.860416,kg +3b1c2e68-3b5c-3479-b48b-fcb3272d7488,SESCO,II.5.1,La Pampa,AR-L,annual,2013,gas oil combustion consumption by agriculture machines,90.73344,TJ,N2O,3.9,kg/TJ,353.860416,kg +6d1001a5-985f-37cc-85b1-cab23e9300b1,SESCO,II.5.1,Misiones,AR-N,annual,2013,gas oil combustion consumption by agriculture machines,18.09612,TJ,CO2,74100.0,kg/TJ,1340922.4919999999,kg +c000a905-a2d5-39ba-beba-6ac0f7d23d78,SESCO,II.5.1,Misiones,AR-N,annual,2013,gas oil combustion consumption by agriculture machines,18.09612,TJ,CH4,3.9,kg/TJ,70.574868,kg +c000a905-a2d5-39ba-beba-6ac0f7d23d78,SESCO,II.5.1,Misiones,AR-N,annual,2013,gas oil combustion consumption by agriculture machines,18.09612,TJ,N2O,3.9,kg/TJ,70.574868,kg +6b90243f-565b-3580-9751-0a4ab72272be,SESCO,II.5.1,Salta,AR-A,annual,2013,gas oil combustion consumption by agriculture machines,123.31367999999999,TJ,CO2,74100.0,kg/TJ,9137543.688,kg +95e40b21-e2a1-3487-afa1-c97cd42a5640,SESCO,II.5.1,Salta,AR-A,annual,2013,gas oil combustion consumption by agriculture machines,123.31367999999999,TJ,CH4,3.9,kg/TJ,480.92335199999997,kg +95e40b21-e2a1-3487-afa1-c97cd42a5640,SESCO,II.5.1,Salta,AR-A,annual,2013,gas oil combustion consumption by agriculture machines,123.31367999999999,TJ,N2O,3.9,kg/TJ,480.92335199999997,kg +758ef544-1e0a-3afd-abe7-7f21d40a3084,SESCO,II.5.1,Santa Fe,AR-S,annual,2013,gas oil combustion consumption by agriculture machines,88.96356,TJ,CO2,74100.0,kg/TJ,6592199.796,kg +b2f35b30-7722-3677-865d-f1012ea10f08,SESCO,II.5.1,Santa Fe,AR-S,annual,2013,gas oil combustion consumption by agriculture machines,88.96356,TJ,CH4,3.9,kg/TJ,346.957884,kg +b2f35b30-7722-3677-865d-f1012ea10f08,SESCO,II.5.1,Santa Fe,AR-S,annual,2013,gas oil combustion consumption by agriculture machines,88.96356,TJ,N2O,3.9,kg/TJ,346.957884,kg +1b3b26f5-140e-34ce-bcdb-01974f9ac873,SESCO,II.5.1,Santiago del Estero,AR-G,annual,2013,gas oil combustion consumption by agriculture machines,97.19892,TJ,CO2,74100.0,kg/TJ,7202439.972,kg +4c73ea1b-37dd-3f19-8ee6-8171006119f9,SESCO,II.5.1,Santiago del Estero,AR-G,annual,2013,gas oil combustion consumption by agriculture machines,97.19892,TJ,CH4,3.9,kg/TJ,379.075788,kg +4c73ea1b-37dd-3f19-8ee6-8171006119f9,SESCO,II.5.1,Santiago del Estero,AR-G,annual,2013,gas oil combustion consumption by agriculture machines,97.19892,TJ,N2O,3.9,kg/TJ,379.075788,kg +32ed3c0a-23c4-3f63-bc35-d6c9f5170946,SESCO,II.5.1,Tucuman,AR-T,annual,2013,gas oil combustion consumption by agriculture machines,92.50332,TJ,CO2,74100.0,kg/TJ,6854496.012,kg +80940d21-863e-3e5a-a369-319079325d97,SESCO,II.5.1,Tucuman,AR-T,annual,2013,gas oil combustion consumption by agriculture machines,92.50332,TJ,CH4,3.9,kg/TJ,360.762948,kg +80940d21-863e-3e5a-a369-319079325d97,SESCO,II.5.1,Tucuman,AR-T,annual,2013,gas oil combustion consumption by agriculture machines,92.50332,TJ,N2O,3.9,kg/TJ,360.762948,kg +c2bb423e-893a-3ebe-8a18-13855af8929f,SESCO,II.5.1,Buenos Aires,AR-B,annual,2013,jet kerosene combustion consumption by agriculture machines,10.662566999999997,TJ,CO2,71500.0,kg/TJ,762373.5404999998,kg +f92daf5e-dc09-3ed6-b0d6-fece7d39eaa6,SESCO,II.5.1,Buenos Aires,AR-B,annual,2013,jet kerosene combustion consumption by agriculture machines,10.662566999999997,TJ,CH4,0.5,kg/TJ,5.331283499999999,kg +e8b4294a-86e7-3542-b184-08fa93e0341c,SESCO,II.5.1,Buenos Aires,AR-B,annual,2013,jet kerosene combustion consumption by agriculture machines,10.662566999999997,TJ,N2O,2.0,kg/TJ,21.325133999999995,kg +11b9baef-3706-3fd4-9f1c-cb581ac4b75b,SESCO,II.5.1,Córdoba,AR-X,annual,2013,jet kerosene combustion consumption by agriculture machines,0.62906,TJ,CO2,71500.0,kg/TJ,44977.78999999999,kg +e4a00eb6-4649-3045-a36c-a3da6a04d8c6,SESCO,II.5.1,Córdoba,AR-X,annual,2013,jet kerosene combustion consumption by agriculture machines,0.62906,TJ,CH4,0.5,kg/TJ,0.31453,kg +845cbfb1-a493-3cfb-80e7-7a024903736c,SESCO,II.5.1,Córdoba,AR-X,annual,2013,jet kerosene combustion consumption by agriculture machines,0.62906,TJ,N2O,2.0,kg/TJ,1.25812,kg +cc792cdc-d228-338a-bb13-ca68e37f94ef,SESCO,II.5.1,Entre Rios,AR-E,annual,2013,jet kerosene combustion consumption by agriculture machines,0.28307699999999997,TJ,CO2,71500.0,kg/TJ,20240.0055,kg +dc4b07dd-66f0-3b8c-b844-1bd9cba8b39e,SESCO,II.5.1,Entre Rios,AR-E,annual,2013,jet kerosene combustion consumption by agriculture machines,0.28307699999999997,TJ,CH4,0.5,kg/TJ,0.14153849999999998,kg +37f2b4ef-68e3-3354-a06c-2e31094aa7bb,SESCO,II.5.1,Entre Rios,AR-E,annual,2013,jet kerosene combustion consumption by agriculture machines,0.28307699999999997,TJ,N2O,2.0,kg/TJ,0.5661539999999999,kg +5662dad5-287f-3cb4-887d-ad13ca5e61a3,SESCO,II.5.1,La Pampa,AR-L,annual,2013,jet kerosene combustion consumption by agriculture machines,3.0509409999999995,TJ,CO2,71500.0,kg/TJ,218142.28149999995,kg +694f5150-26d7-3b4c-8a2a-8dd35e399d54,SESCO,II.5.1,La Pampa,AR-L,annual,2013,jet kerosene combustion consumption by agriculture machines,3.0509409999999995,TJ,CH4,0.5,kg/TJ,1.5254704999999997,kg +6bf47226-07c6-3869-b641-a10329cce6bf,SESCO,II.5.1,La Pampa,AR-L,annual,2013,jet kerosene combustion consumption by agriculture machines,3.0509409999999995,TJ,N2O,2.0,kg/TJ,6.101881999999999,kg +550f933c-dbe9-3c50-80ab-9497c6fa28d4,SESCO,II.5.1,Santa Fe,AR-S,annual,2013,jet kerosene combustion consumption by agriculture machines,4.277607999999999,TJ,CO2,71500.0,kg/TJ,305848.97199999995,kg +fa642a8d-1b95-38d2-8843-2f98b10d82ea,SESCO,II.5.1,Santa Fe,AR-S,annual,2013,jet kerosene combustion consumption by agriculture machines,4.277607999999999,TJ,CH4,0.5,kg/TJ,2.1388039999999995,kg +4f9c62ab-1b4b-3760-8117-2956871c53b7,SESCO,II.5.1,Santa Fe,AR-S,annual,2013,jet kerosene combustion consumption by agriculture machines,4.277607999999999,TJ,N2O,2.0,kg/TJ,8.555215999999998,kg +b9bfe258-b9ea-31c7-8ea8-d686c9e9c433,SESCO,II.1.1,Buenos Aires,AR-B,annual,2013,gas oil combustion consumption by to the public,40443.564,TJ,CO2,74100.0,kg/TJ,2996868092.4,kg +7a551d27-e687-31a4-916a-8df8d83b9ca5,SESCO,II.1.1,Buenos Aires,AR-B,annual,2013,gas oil combustion consumption by to the public,40443.564,TJ,CH4,3.9,kg/TJ,157729.8996,kg +7a551d27-e687-31a4-916a-8df8d83b9ca5,SESCO,II.1.1,Buenos Aires,AR-B,annual,2013,gas oil combustion consumption by to the public,40443.564,TJ,N2O,3.9,kg/TJ,157729.8996,kg +462e4041-437c-3a87-a5ee-7fba0e0cc6b7,SESCO,II.1.1,Capital Federal,AR-C,annual,2013,gas oil combustion consumption by to the public,4598.00376,TJ,CO2,74100.0,kg/TJ,340712078.616,kg +55d71ed6-e469-3e54-9dbc-0b8aa1b721b0,SESCO,II.1.1,Capital Federal,AR-C,annual,2013,gas oil combustion consumption by to the public,4598.00376,TJ,CH4,3.9,kg/TJ,17932.214664,kg +55d71ed6-e469-3e54-9dbc-0b8aa1b721b0,SESCO,II.1.1,Capital Federal,AR-C,annual,2013,gas oil combustion consumption by to the public,4598.00376,TJ,N2O,3.9,kg/TJ,17932.214664,kg +83ba919c-e2f9-3743-bf0e-29baae953f8d,SESCO,II.1.1,Catamarca,AR-K,annual,2013,gas oil combustion consumption by to the public,506.65524,TJ,CO2,74100.0,kg/TJ,37543153.284,kg +d57eea46-0276-3447-b105-29fb821fb986,SESCO,II.1.1,Catamarca,AR-K,annual,2013,gas oil combustion consumption by to the public,506.65524,TJ,CH4,3.9,kg/TJ,1975.955436,kg +d57eea46-0276-3447-b105-29fb821fb986,SESCO,II.1.1,Catamarca,AR-K,annual,2013,gas oil combustion consumption by to the public,506.65524,TJ,N2O,3.9,kg/TJ,1975.955436,kg +d547d992-e708-32ae-a821-b16ecb920658,SESCO,II.1.1,Chaco,AR-H,annual,2013,gas oil combustion consumption by to the public,2698.66968,TJ,CO2,74100.0,kg/TJ,199971423.288,kg +d2c70f52-c55c-388c-81af-a70ea400c64d,SESCO,II.1.1,Chaco,AR-H,annual,2013,gas oil combustion consumption by to the public,2698.66968,TJ,CH4,3.9,kg/TJ,10524.811752,kg +d2c70f52-c55c-388c-81af-a70ea400c64d,SESCO,II.1.1,Chaco,AR-H,annual,2013,gas oil combustion consumption by to the public,2698.66968,TJ,N2O,3.9,kg/TJ,10524.811752,kg +1871847e-433e-3637-b046-2c0e9e4bb97f,SESCO,II.1.1,Chubut,AR-U,annual,2013,gas oil combustion consumption by to the public,5510.06988,TJ,CO2,74100.0,kg/TJ,408296178.108,kg +ad34499d-3e59-364c-9d1d-7ba14e5c4951,SESCO,II.1.1,Chubut,AR-U,annual,2013,gas oil combustion consumption by to the public,5510.06988,TJ,CH4,3.9,kg/TJ,21489.272532,kg +ad34499d-3e59-364c-9d1d-7ba14e5c4951,SESCO,II.1.1,Chubut,AR-U,annual,2013,gas oil combustion consumption by to the public,5510.06988,TJ,N2O,3.9,kg/TJ,21489.272532,kg +7c030ccf-2002-353d-8398-9fabfec43630,SESCO,II.1.1,Corrientes,AR-W,annual,2013,gas oil combustion consumption by to the public,2136.96756,TJ,CO2,74100.0,kg/TJ,158349296.196,kg +c5b3cc71-9658-3acb-8c68-8b1ef319296f,SESCO,II.1.1,Corrientes,AR-W,annual,2013,gas oil combustion consumption by to the public,2136.96756,TJ,CH4,3.9,kg/TJ,8334.173484,kg +c5b3cc71-9658-3acb-8c68-8b1ef319296f,SESCO,II.1.1,Corrientes,AR-W,annual,2013,gas oil combustion consumption by to the public,2136.96756,TJ,N2O,3.9,kg/TJ,8334.173484,kg +e040b715-eed7-3bd4-8ff2-88be7e3218c5,SESCO,II.1.1,Córdoba,AR-X,annual,2013,gas oil combustion consumption by to the public,13719.53184,TJ,CO2,74100.0,kg/TJ,1016617309.344,kg +9bfbc108-4684-3944-9700-be41958ea3a5,SESCO,II.1.1,Córdoba,AR-X,annual,2013,gas oil combustion consumption by to the public,13719.53184,TJ,CH4,3.9,kg/TJ,53506.174176,kg +9bfbc108-4684-3944-9700-be41958ea3a5,SESCO,II.1.1,Córdoba,AR-X,annual,2013,gas oil combustion consumption by to the public,13719.53184,TJ,N2O,3.9,kg/TJ,53506.174176,kg +c7ef7953-ed54-3477-81d7-1930408b9099,SESCO,II.1.1,Entre Rios,AR-E,annual,2013,gas oil combustion consumption by to the public,4479.92748,TJ,CO2,74100.0,kg/TJ,331962626.268,kg +ef7405b2-10e7-399f-a493-90bf10a2c74b,SESCO,II.1.1,Entre Rios,AR-E,annual,2013,gas oil combustion consumption by to the public,4479.92748,TJ,CH4,3.9,kg/TJ,17471.717172,kg +ef7405b2-10e7-399f-a493-90bf10a2c74b,SESCO,II.1.1,Entre Rios,AR-E,annual,2013,gas oil combustion consumption by to the public,4479.92748,TJ,N2O,3.9,kg/TJ,17471.717172,kg +5d811acd-2145-3bc6-a7a5-2c422f25f41f,SESCO,II.1.1,Formosa,AR-P,annual,2013,gas oil combustion consumption by to the public,887.93796,TJ,CO2,74100.0,kg/TJ,65796202.835999995,kg +686436a3-a96b-3b08-ab2d-f93f7fda0701,SESCO,II.1.1,Formosa,AR-P,annual,2013,gas oil combustion consumption by to the public,887.93796,TJ,CH4,3.9,kg/TJ,3462.958044,kg +686436a3-a96b-3b08-ab2d-f93f7fda0701,SESCO,II.1.1,Formosa,AR-P,annual,2013,gas oil combustion consumption by to the public,887.93796,TJ,N2O,3.9,kg/TJ,3462.958044,kg +987e7646-7e45-320b-80ff-f9fd0b7f48d5,SESCO,II.1.1,Jujuy,AR-Y,annual,2013,gas oil combustion consumption by to the public,2084.26848,TJ,CO2,74100.0,kg/TJ,154444294.368,kg +4ba768f2-81b7-3d87-984e-a06c06c9d45b,SESCO,II.1.1,Jujuy,AR-Y,annual,2013,gas oil combustion consumption by to the public,2084.26848,TJ,CH4,3.9,kg/TJ,8128.647072000001,kg +4ba768f2-81b7-3d87-984e-a06c06c9d45b,SESCO,II.1.1,Jujuy,AR-Y,annual,2013,gas oil combustion consumption by to the public,2084.26848,TJ,N2O,3.9,kg/TJ,8128.647072000001,kg +8c27ec5e-09cb-397e-bbdd-bcdc6e413a2e,SESCO,II.1.1,La Pampa,AR-L,annual,2013,gas oil combustion consumption by to the public,2690.7594,TJ,CO2,74100.0,kg/TJ,199385271.54,kg +707b015f-4953-37b6-86c5-a569c7f8ac56,SESCO,II.1.1,La Pampa,AR-L,annual,2013,gas oil combustion consumption by to the public,2690.7594,TJ,CH4,3.9,kg/TJ,10493.961659999999,kg +707b015f-4953-37b6-86c5-a569c7f8ac56,SESCO,II.1.1,La Pampa,AR-L,annual,2013,gas oil combustion consumption by to the public,2690.7594,TJ,N2O,3.9,kg/TJ,10493.961659999999,kg +d2fd1beb-7f1a-3cbb-a19f-66e82fc3ed24,SESCO,II.1.1,La Rioja,AR-F,annual,2013,gas oil combustion consumption by to the public,906.46752,TJ,CO2,74100.0,kg/TJ,67169243.23200001,kg +3fdab34c-b50c-3a60-90f4-ba4dc9da6a13,SESCO,II.1.1,La Rioja,AR-F,annual,2013,gas oil combustion consumption by to the public,906.46752,TJ,CH4,3.9,kg/TJ,3535.223328,kg +3fdab34c-b50c-3a60-90f4-ba4dc9da6a13,SESCO,II.1.1,La Rioja,AR-F,annual,2013,gas oil combustion consumption by to the public,906.46752,TJ,N2O,3.9,kg/TJ,3535.223328,kg +5a75f61b-128b-38f5-ac31-a04a5fc2be64,SESCO,II.1.1,Mendoza,AR-M,annual,2013,gas oil combustion consumption by to the public,14070.076439999999,TJ,CO2,74100.0,kg/TJ,1042592664.2039999,kg +0b2f53e6-2216-32ca-844a-451f6cda4ede,SESCO,II.1.1,Mendoza,AR-M,annual,2013,gas oil combustion consumption by to the public,14070.076439999999,TJ,CH4,3.9,kg/TJ,54873.298116,kg +0b2f53e6-2216-32ca-844a-451f6cda4ede,SESCO,II.1.1,Mendoza,AR-M,annual,2013,gas oil combustion consumption by to the public,14070.076439999999,TJ,N2O,3.9,kg/TJ,54873.298116,kg +d91ec29c-e1f0-367f-a043-2b0edecf851f,SESCO,II.1.1,Misiones,AR-N,annual,2013,gas oil combustion consumption by to the public,4545.5214,TJ,CO2,74100.0,kg/TJ,336823135.73999995,kg +659c8ded-229c-34e6-8dab-8edbc0170d9c,SESCO,II.1.1,Misiones,AR-N,annual,2013,gas oil combustion consumption by to the public,4545.5214,TJ,CH4,3.9,kg/TJ,17727.53346,kg +659c8ded-229c-34e6-8dab-8edbc0170d9c,SESCO,II.1.1,Misiones,AR-N,annual,2013,gas oil combustion consumption by to the public,4545.5214,TJ,N2O,3.9,kg/TJ,17727.53346,kg +eccb5050-3992-3981-b4d7-3612803c373b,SESCO,II.1.1,Neuquén,AR-Q,annual,2013,gas oil combustion consumption by to the public,3825.2886,TJ,CO2,74100.0,kg/TJ,283453885.26,kg +26f3fc8d-2042-3cb4-918b-0504a66518f7,SESCO,II.1.1,Neuquén,AR-Q,annual,2013,gas oil combustion consumption by to the public,3825.2886,TJ,CH4,3.9,kg/TJ,14918.62554,kg +26f3fc8d-2042-3cb4-918b-0504a66518f7,SESCO,II.1.1,Neuquén,AR-Q,annual,2013,gas oil combustion consumption by to the public,3825.2886,TJ,N2O,3.9,kg/TJ,14918.62554,kg +1dc7482e-48cb-3c30-90af-88941efd7185,SESCO,II.1.1,Rio Negro,AR-R,annual,2013,gas oil combustion consumption by to the public,5150.09796,TJ,CO2,74100.0,kg/TJ,381622258.836,kg +7aa010bd-507f-3804-b6e2-28d8e91c198f,SESCO,II.1.1,Rio Negro,AR-R,annual,2013,gas oil combustion consumption by to the public,5150.09796,TJ,CH4,3.9,kg/TJ,20085.382043999998,kg +7aa010bd-507f-3804-b6e2-28d8e91c198f,SESCO,II.1.1,Rio Negro,AR-R,annual,2013,gas oil combustion consumption by to the public,5150.09796,TJ,N2O,3.9,kg/TJ,20085.382043999998,kg +b01bb4a6-aaf9-3514-8fc1-f7883bdffa53,SESCO,II.1.1,Salta,AR-A,annual,2013,gas oil combustion consumption by to the public,4130.8638,TJ,CO2,74100.0,kg/TJ,306097007.58,kg +9c5618d5-08a4-3f4f-8f84-404c3fb1e586,SESCO,II.1.1,Salta,AR-A,annual,2013,gas oil combustion consumption by to the public,4130.8638,TJ,CH4,3.9,kg/TJ,16110.36882,kg +9c5618d5-08a4-3f4f-8f84-404c3fb1e586,SESCO,II.1.1,Salta,AR-A,annual,2013,gas oil combustion consumption by to the public,4130.8638,TJ,N2O,3.9,kg/TJ,16110.36882,kg +f9e183e3-fbc1-33b0-8694-951177ea65b1,SESCO,II.1.1,San Juan,AR-J,annual,2013,gas oil combustion consumption by to the public,2369.36364,TJ,CO2,74100.0,kg/TJ,175569845.724,kg +3ccd6cdf-a0e5-35ef-bc22-7638cd2dec1c,SESCO,II.1.1,San Juan,AR-J,annual,2013,gas oil combustion consumption by to the public,2369.36364,TJ,CH4,3.9,kg/TJ,9240.518195999999,kg +3ccd6cdf-a0e5-35ef-bc22-7638cd2dec1c,SESCO,II.1.1,San Juan,AR-J,annual,2013,gas oil combustion consumption by to the public,2369.36364,TJ,N2O,3.9,kg/TJ,9240.518195999999,kg +16889143-db74-3ec9-a976-bd892884526d,SESCO,II.1.1,San Luis,AR-D,annual,2013,gas oil combustion consumption by to the public,2047.49832,TJ,CO2,74100.0,kg/TJ,151719625.512,kg +502d749a-1a1d-3e30-9f0d-44daa456fc20,SESCO,II.1.1,San Luis,AR-D,annual,2013,gas oil combustion consumption by to the public,2047.49832,TJ,CH4,3.9,kg/TJ,7985.243447999999,kg +502d749a-1a1d-3e30-9f0d-44daa456fc20,SESCO,II.1.1,San Luis,AR-D,annual,2013,gas oil combustion consumption by to the public,2047.49832,TJ,N2O,3.9,kg/TJ,7985.243447999999,kg +cdcd1e36-d005-323c-9674-b072fbe40896,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2013,gas oil combustion consumption by to the public,3786.71244,TJ,CO2,74100.0,kg/TJ,280595391.80399996,kg +88844ede-63f2-3b41-a1f5-cac1e3c12e71,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2013,gas oil combustion consumption by to the public,3786.71244,TJ,CH4,3.9,kg/TJ,14768.178515999998,kg +88844ede-63f2-3b41-a1f5-cac1e3c12e71,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2013,gas oil combustion consumption by to the public,3786.71244,TJ,N2O,3.9,kg/TJ,14768.178515999998,kg +fdcbbf7b-0e0a-3f2b-8f60-a74fe1bda8dd,SESCO,II.1.1,Santa Fe,AR-S,annual,2013,gas oil combustion consumption by to the public,11060.16072,TJ,CO2,74100.0,kg/TJ,819557909.352,kg +96320e8c-91c0-38c1-9ccc-9e6277b45922,SESCO,II.1.1,Santa Fe,AR-S,annual,2013,gas oil combustion consumption by to the public,11060.16072,TJ,CH4,3.9,kg/TJ,43134.626808,kg +96320e8c-91c0-38c1-9ccc-9e6277b45922,SESCO,II.1.1,Santa Fe,AR-S,annual,2013,gas oil combustion consumption by to the public,11060.16072,TJ,N2O,3.9,kg/TJ,43134.626808,kg +a92f2c90-8dbb-3cca-840d-7ed770604bda,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2013,gas oil combustion consumption by to the public,2253.38232,TJ,CO2,74100.0,kg/TJ,166975629.912,kg +912f2540-e8c6-35d2-9b92-f52de4c66fb1,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2013,gas oil combustion consumption by to the public,2253.38232,TJ,CH4,3.9,kg/TJ,8788.191048,kg +912f2540-e8c6-35d2-9b92-f52de4c66fb1,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2013,gas oil combustion consumption by to the public,2253.38232,TJ,N2O,3.9,kg/TJ,8788.191048,kg +59d9e0c8-e1fd-3e70-933e-0feffc4fb93b,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2013,gas oil combustion consumption by to the public,1126.54668,TJ,CO2,74100.0,kg/TJ,83477108.98799999,kg +2ce7d8e8-0235-35db-b0e1-bb985bc3e2e2,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2013,gas oil combustion consumption by to the public,1126.54668,TJ,CH4,3.9,kg/TJ,4393.532052,kg +2ce7d8e8-0235-35db-b0e1-bb985bc3e2e2,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2013,gas oil combustion consumption by to the public,1126.54668,TJ,N2O,3.9,kg/TJ,4393.532052,kg +35f64572-334f-38c6-bdaf-8560e0177fd2,SESCO,II.1.1,Tucuman,AR-T,annual,2013,gas oil combustion consumption by to the public,2407.07292,TJ,CO2,74100.0,kg/TJ,178364103.372,kg +0db0cd9e-0c76-38b2-8eb3-d06385ae4da3,SESCO,II.1.1,Tucuman,AR-T,annual,2013,gas oil combustion consumption by to the public,2407.07292,TJ,CH4,3.9,kg/TJ,9387.584388,kg +0db0cd9e-0c76-38b2-8eb3-d06385ae4da3,SESCO,II.1.1,Tucuman,AR-T,annual,2013,gas oil combustion consumption by to the public,2407.07292,TJ,N2O,3.9,kg/TJ,9387.584388,kg +54b6fdd9-7ea2-3915-840f-f54622aed810,SESCO,II.1.1,Buenos Aires,AR-B,annual,2013,gas oil combustion consumption by to the public,11309.13588,TJ,CO2,74100.0,kg/TJ,838006968.708,kg +b2664008-c9b0-3dee-a0d5-0bbc9dde17ba,SESCO,II.1.1,Buenos Aires,AR-B,annual,2013,gas oil combustion consumption by to the public,11309.13588,TJ,CH4,3.9,kg/TJ,44105.629931999996,kg +b2664008-c9b0-3dee-a0d5-0bbc9dde17ba,SESCO,II.1.1,Buenos Aires,AR-B,annual,2013,gas oil combustion consumption by to the public,11309.13588,TJ,N2O,3.9,kg/TJ,44105.629931999996,kg +27a9459d-418f-39a7-95f4-5887e95f5947,SESCO,II.1.1,Capital Federal,AR-C,annual,2013,gas oil combustion consumption by to the public,1481.93136,TJ,CO2,74100.0,kg/TJ,109811113.77600001,kg +5de5124e-a01b-31ef-9567-d63a997bcd31,SESCO,II.1.1,Capital Federal,AR-C,annual,2013,gas oil combustion consumption by to the public,1481.93136,TJ,CH4,3.9,kg/TJ,5779.532304,kg +5de5124e-a01b-31ef-9567-d63a997bcd31,SESCO,II.1.1,Capital Federal,AR-C,annual,2013,gas oil combustion consumption by to the public,1481.93136,TJ,N2O,3.9,kg/TJ,5779.532304,kg +99f108f7-4cc9-38f3-96f7-ccd6cff31560,SESCO,II.1.1,Catamarca,AR-K,annual,2013,gas oil combustion consumption by to the public,139.7844,TJ,CO2,74100.0,kg/TJ,10358024.040000001,kg +f0a7f380-b165-3459-8b33-53d2da74eca4,SESCO,II.1.1,Catamarca,AR-K,annual,2013,gas oil combustion consumption by to the public,139.7844,TJ,CH4,3.9,kg/TJ,545.15916,kg +f0a7f380-b165-3459-8b33-53d2da74eca4,SESCO,II.1.1,Catamarca,AR-K,annual,2013,gas oil combustion consumption by to the public,139.7844,TJ,N2O,3.9,kg/TJ,545.15916,kg +61bf2eac-cae7-33e7-badb-d773a174b927,SESCO,II.1.1,Chaco,AR-H,annual,2013,gas oil combustion consumption by to the public,786.98256,TJ,CO2,74100.0,kg/TJ,58315407.696,kg +8b2b7248-a0cc-3a22-a236-e8f1eb182555,SESCO,II.1.1,Chaco,AR-H,annual,2013,gas oil combustion consumption by to the public,786.98256,TJ,CH4,3.9,kg/TJ,3069.231984,kg +8b2b7248-a0cc-3a22-a236-e8f1eb182555,SESCO,II.1.1,Chaco,AR-H,annual,2013,gas oil combustion consumption by to the public,786.98256,TJ,N2O,3.9,kg/TJ,3069.231984,kg +3f1050e4-2e32-33ce-b7eb-1054cd73735e,SESCO,II.1.1,Chubut,AR-U,annual,2013,gas oil combustion consumption by to the public,818.33472,TJ,CO2,74100.0,kg/TJ,60638602.752,kg +4c997464-d8dc-3e23-abe1-3babd6073cc1,SESCO,II.1.1,Chubut,AR-U,annual,2013,gas oil combustion consumption by to the public,818.33472,TJ,CH4,3.9,kg/TJ,3191.5054079999995,kg +4c997464-d8dc-3e23-abe1-3babd6073cc1,SESCO,II.1.1,Chubut,AR-U,annual,2013,gas oil combustion consumption by to the public,818.33472,TJ,N2O,3.9,kg/TJ,3191.5054079999995,kg +a46a3f27-6a1f-33f1-b8fe-9c599256c952,SESCO,II.1.1,Corrientes,AR-W,annual,2013,gas oil combustion consumption by to the public,706.94064,TJ,CO2,74100.0,kg/TJ,52384301.424,kg +b37221ac-d039-3689-a821-0abb02ab570e,SESCO,II.1.1,Corrientes,AR-W,annual,2013,gas oil combustion consumption by to the public,706.94064,TJ,CH4,3.9,kg/TJ,2757.068496,kg +b37221ac-d039-3689-a821-0abb02ab570e,SESCO,II.1.1,Corrientes,AR-W,annual,2013,gas oil combustion consumption by to the public,706.94064,TJ,N2O,3.9,kg/TJ,2757.068496,kg +57a37460-1689-3533-a974-7ab5e9f47314,SESCO,II.1.1,Córdoba,AR-X,annual,2013,gas oil combustion consumption by to the public,2581.17132,TJ,CO2,74100.0,kg/TJ,191264794.812,kg +60bf4866-0e4b-3c9d-85ee-13c9a2fce0aa,SESCO,II.1.1,Córdoba,AR-X,annual,2013,gas oil combustion consumption by to the public,2581.17132,TJ,CH4,3.9,kg/TJ,10066.568148,kg +60bf4866-0e4b-3c9d-85ee-13c9a2fce0aa,SESCO,II.1.1,Córdoba,AR-X,annual,2013,gas oil combustion consumption by to the public,2581.17132,TJ,N2O,3.9,kg/TJ,10066.568148,kg +84b29052-38d7-3832-ab1b-7290b1aee3bf,SESCO,II.1.1,Entre Rios,AR-E,annual,2013,gas oil combustion consumption by to the public,1221.32556,TJ,CO2,74100.0,kg/TJ,90500223.996,kg +64a9d81d-d5ba-31ab-bd0c-957b058f4b70,SESCO,II.1.1,Entre Rios,AR-E,annual,2013,gas oil combustion consumption by to the public,1221.32556,TJ,CH4,3.9,kg/TJ,4763.1696839999995,kg +64a9d81d-d5ba-31ab-bd0c-957b058f4b70,SESCO,II.1.1,Entre Rios,AR-E,annual,2013,gas oil combustion consumption by to the public,1221.32556,TJ,N2O,3.9,kg/TJ,4763.1696839999995,kg +f6ab7ddf-e3b8-36ce-80b8-d7e133b7980d,SESCO,II.1.1,Formosa,AR-P,annual,2013,gas oil combustion consumption by to the public,245.90496,TJ,CO2,74100.0,kg/TJ,18221557.536,kg +e0e1c68d-35cd-3675-86dd-8079817e07a3,SESCO,II.1.1,Formosa,AR-P,annual,2013,gas oil combustion consumption by to the public,245.90496,TJ,CH4,3.9,kg/TJ,959.0293439999999,kg +e0e1c68d-35cd-3675-86dd-8079817e07a3,SESCO,II.1.1,Formosa,AR-P,annual,2013,gas oil combustion consumption by to the public,245.90496,TJ,N2O,3.9,kg/TJ,959.0293439999999,kg +27f116cc-cc9c-3251-ab49-a29fb324820e,SESCO,II.1.1,Jujuy,AR-Y,annual,2013,gas oil combustion consumption by to the public,262.30344,TJ,CO2,74100.0,kg/TJ,19436684.904000003,kg +d9d69b37-a900-370f-b2b5-6b28a23f4104,SESCO,II.1.1,Jujuy,AR-Y,annual,2013,gas oil combustion consumption by to the public,262.30344,TJ,CH4,3.9,kg/TJ,1022.983416,kg +d9d69b37-a900-370f-b2b5-6b28a23f4104,SESCO,II.1.1,Jujuy,AR-Y,annual,2013,gas oil combustion consumption by to the public,262.30344,TJ,N2O,3.9,kg/TJ,1022.983416,kg +e107e4b1-6783-36ee-966a-a6f2c6743662,SESCO,II.1.1,La Pampa,AR-L,annual,2013,gas oil combustion consumption by to the public,733.38048,TJ,CO2,74100.0,kg/TJ,54343493.568,kg +65ffb3d3-cbfa-368b-9058-ce67e406ebba,SESCO,II.1.1,La Pampa,AR-L,annual,2013,gas oil combustion consumption by to the public,733.38048,TJ,CH4,3.9,kg/TJ,2860.183872,kg +65ffb3d3-cbfa-368b-9058-ce67e406ebba,SESCO,II.1.1,La Pampa,AR-L,annual,2013,gas oil combustion consumption by to the public,733.38048,TJ,N2O,3.9,kg/TJ,2860.183872,kg +f8e5f4de-8ae6-37e7-8f88-8cce4f700cb8,SESCO,II.1.1,La Rioja,AR-F,annual,2013,gas oil combustion consumption by to the public,163.37076,TJ,CO2,74100.0,kg/TJ,12105773.316,kg +701ae4fe-3d53-3344-9d7f-1c82a0d3488a,SESCO,II.1.1,La Rioja,AR-F,annual,2013,gas oil combustion consumption by to the public,163.37076,TJ,CH4,3.9,kg/TJ,637.1459639999999,kg +701ae4fe-3d53-3344-9d7f-1c82a0d3488a,SESCO,II.1.1,La Rioja,AR-F,annual,2013,gas oil combustion consumption by to the public,163.37076,TJ,N2O,3.9,kg/TJ,637.1459639999999,kg +1cbdb7b6-ef6e-3c5b-a1c6-468bec7ef139,SESCO,II.1.1,Mendoza,AR-M,annual,2013,gas oil combustion consumption by to the public,1493.30916,TJ,CO2,74100.0,kg/TJ,110654208.756,kg +cbfc32de-0035-341f-b58a-922fdbe1ed68,SESCO,II.1.1,Mendoza,AR-M,annual,2013,gas oil combustion consumption by to the public,1493.30916,TJ,CH4,3.9,kg/TJ,5823.905724,kg +cbfc32de-0035-341f-b58a-922fdbe1ed68,SESCO,II.1.1,Mendoza,AR-M,annual,2013,gas oil combustion consumption by to the public,1493.30916,TJ,N2O,3.9,kg/TJ,5823.905724,kg +c0e626a4-f3e9-3507-87a6-862258ab6544,SESCO,II.1.1,Misiones,AR-N,annual,2013,gas oil combustion consumption by to the public,794.71224,TJ,CO2,74100.0,kg/TJ,58888176.984,kg +ead02864-159d-3692-a6ef-8961ada20f33,SESCO,II.1.1,Misiones,AR-N,annual,2013,gas oil combustion consumption by to the public,794.71224,TJ,CH4,3.9,kg/TJ,3099.377736,kg +ead02864-159d-3692-a6ef-8961ada20f33,SESCO,II.1.1,Misiones,AR-N,annual,2013,gas oil combustion consumption by to the public,794.71224,TJ,N2O,3.9,kg/TJ,3099.377736,kg +e2d6a8ac-c3d3-3264-9d15-a0e6b6339694,SESCO,II.1.1,Neuquén,AR-Q,annual,2013,gas oil combustion consumption by to the public,984.0894,TJ,CO2,74100.0,kg/TJ,72921024.53999999,kg +0cda087f-07d6-3cf1-8ef8-448f52142817,SESCO,II.1.1,Neuquén,AR-Q,annual,2013,gas oil combustion consumption by to the public,984.0894,TJ,CH4,3.9,kg/TJ,3837.9486599999996,kg +0cda087f-07d6-3cf1-8ef8-448f52142817,SESCO,II.1.1,Neuquén,AR-Q,annual,2013,gas oil combustion consumption by to the public,984.0894,TJ,N2O,3.9,kg/TJ,3837.9486599999996,kg +f3488a8b-60ef-372b-8808-d01ce5924c56,SESCO,II.1.1,Rio Negro,AR-R,annual,2013,gas oil combustion consumption by to the public,848.85612,TJ,CO2,74100.0,kg/TJ,62900238.492000006,kg +414cd522-866c-306e-a752-eddc976ec5b1,SESCO,II.1.1,Rio Negro,AR-R,annual,2013,gas oil combustion consumption by to the public,848.85612,TJ,CH4,3.9,kg/TJ,3310.538868,kg +414cd522-866c-306e-a752-eddc976ec5b1,SESCO,II.1.1,Rio Negro,AR-R,annual,2013,gas oil combustion consumption by to the public,848.85612,TJ,N2O,3.9,kg/TJ,3310.538868,kg +2656cfc0-0013-3a77-b7b8-627a2fdba939,SESCO,II.1.1,Salta,AR-A,annual,2013,gas oil combustion consumption by to the public,644.70588,TJ,CO2,74100.0,kg/TJ,47772705.708,kg +5a80c87b-bd72-3bf9-9940-84767ae03681,SESCO,II.1.1,Salta,AR-A,annual,2013,gas oil combustion consumption by to the public,644.70588,TJ,CH4,3.9,kg/TJ,2514.352932,kg +5a80c87b-bd72-3bf9-9940-84767ae03681,SESCO,II.1.1,Salta,AR-A,annual,2013,gas oil combustion consumption by to the public,644.70588,TJ,N2O,3.9,kg/TJ,2514.352932,kg +15843ef5-a518-3a59-b037-47bed7021338,SESCO,II.1.1,San Juan,AR-J,annual,2013,gas oil combustion consumption by to the public,343.10388,TJ,CO2,74100.0,kg/TJ,25423997.508,kg +0e267cd0-a42c-3c20-b29d-b420518d1894,SESCO,II.1.1,San Juan,AR-J,annual,2013,gas oil combustion consumption by to the public,343.10388,TJ,CH4,3.9,kg/TJ,1338.105132,kg +0e267cd0-a42c-3c20-b29d-b420518d1894,SESCO,II.1.1,San Juan,AR-J,annual,2013,gas oil combustion consumption by to the public,343.10388,TJ,N2O,3.9,kg/TJ,1338.105132,kg +d58cf38a-56a9-3cf4-ace0-9803debf81c3,SESCO,II.1.1,San Luis,AR-D,annual,2013,gas oil combustion consumption by to the public,419.60604,TJ,CO2,74100.0,kg/TJ,31092807.564,kg +f677540b-ce1a-3b05-b040-e7902c9447f0,SESCO,II.1.1,San Luis,AR-D,annual,2013,gas oil combustion consumption by to the public,419.60604,TJ,CH4,3.9,kg/TJ,1636.463556,kg +f677540b-ce1a-3b05-b040-e7902c9447f0,SESCO,II.1.1,San Luis,AR-D,annual,2013,gas oil combustion consumption by to the public,419.60604,TJ,N2O,3.9,kg/TJ,1636.463556,kg +b95c9474-56d1-3eff-a6bd-55bc933556e8,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2013,gas oil combustion consumption by to the public,480.32376,TJ,CO2,74100.0,kg/TJ,35591990.616,kg +e36f0da8-11a7-32ed-8b72-95caea55895e,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2013,gas oil combustion consumption by to the public,480.32376,TJ,CH4,3.9,kg/TJ,1873.2626639999999,kg +e36f0da8-11a7-32ed-8b72-95caea55895e,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2013,gas oil combustion consumption by to the public,480.32376,TJ,N2O,3.9,kg/TJ,1873.2626639999999,kg +1217e68f-cd2c-30b0-bb42-3581196ca0df,SESCO,II.1.1,Santa Fe,AR-S,annual,2013,gas oil combustion consumption by to the public,2723.95368,TJ,CO2,74100.0,kg/TJ,201844967.688,kg +c6985375-9cd9-36a5-b852-9244ad3609fd,SESCO,II.1.1,Santa Fe,AR-S,annual,2013,gas oil combustion consumption by to the public,2723.95368,TJ,CH4,3.9,kg/TJ,10623.419352,kg +c6985375-9cd9-36a5-b852-9244ad3609fd,SESCO,II.1.1,Santa Fe,AR-S,annual,2013,gas oil combustion consumption by to the public,2723.95368,TJ,N2O,3.9,kg/TJ,10623.419352,kg +bc31dc6e-75e0-386b-b4f7-9d5d6a59ef7a,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2013,gas oil combustion consumption by to the public,435.10152,TJ,CO2,74100.0,kg/TJ,32241022.632,kg +e5a09244-64d3-31f5-a487-f535c9836715,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2013,gas oil combustion consumption by to the public,435.10152,TJ,CH4,3.9,kg/TJ,1696.895928,kg +e5a09244-64d3-31f5-a487-f535c9836715,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2013,gas oil combustion consumption by to the public,435.10152,TJ,N2O,3.9,kg/TJ,1696.895928,kg +ff0ba52c-4946-3535-94f8-57bbceb1f993,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2013,gas oil combustion consumption by to the public,90.40836,TJ,CO2,74100.0,kg/TJ,6699259.476,kg +792af063-1349-35b5-bf4e-89c952f82e2a,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2013,gas oil combustion consumption by to the public,90.40836,TJ,CH4,3.9,kg/TJ,352.592604,kg +792af063-1349-35b5-bf4e-89c952f82e2a,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2013,gas oil combustion consumption by to the public,90.40836,TJ,N2O,3.9,kg/TJ,352.592604,kg +b17b14ce-b415-3817-b696-79b3017cd46a,SESCO,II.1.1,Tucuman,AR-T,annual,2013,gas oil combustion consumption by to the public,463.16676,TJ,CO2,74100.0,kg/TJ,34320656.916,kg +b12b1cd7-3d8e-30a6-9231-3cbb850dc514,SESCO,II.1.1,Tucuman,AR-T,annual,2013,gas oil combustion consumption by to the public,463.16676,TJ,CH4,3.9,kg/TJ,1806.350364,kg +b12b1cd7-3d8e-30a6-9231-3cbb850dc514,SESCO,II.1.1,Tucuman,AR-T,annual,2013,gas oil combustion consumption by to the public,463.16676,TJ,N2O,3.9,kg/TJ,1806.350364,kg +4b53b44d-a9da-3b35-8a9e-83adc4be7abe,SESCO,II.1.1,Buenos Aires,AR-B,annual,2013,jet kerosene combustion consumption by to the public,258.638019,TJ,CO2,71500.0,kg/TJ,18492618.3585,kg +e826ffb0-d9b9-3427-b409-8a74e9bba42a,SESCO,II.1.1,Buenos Aires,AR-B,annual,2013,jet kerosene combustion consumption by to the public,258.638019,TJ,CH4,0.5,kg/TJ,129.3190095,kg +6e87b304-b7b6-3c83-a498-6191edb87459,SESCO,II.1.1,Buenos Aires,AR-B,annual,2013,jet kerosene combustion consumption by to the public,258.638019,TJ,N2O,2.0,kg/TJ,517.276038,kg +f2a70a71-eac7-3863-b84d-5cee56637c66,SESCO,II.1.1,Capital Federal,AR-C,annual,2013,jet kerosene combustion consumption by to the public,10.002053999999998,TJ,CO2,71500.0,kg/TJ,715146.8609999998,kg +4ba6ca5c-2ec8-3097-b335-e33f73468cb2,SESCO,II.1.1,Capital Federal,AR-C,annual,2013,jet kerosene combustion consumption by to the public,10.002053999999998,TJ,CH4,0.5,kg/TJ,5.001026999999999,kg +a95c4b36-e7d8-3c26-a291-34ed77d06803,SESCO,II.1.1,Capital Federal,AR-C,annual,2013,jet kerosene combustion consumption by to the public,10.002053999999998,TJ,N2O,2.0,kg/TJ,20.004107999999995,kg +586f6c0f-5d93-3eb0-a7c6-ef98e6e860a8,SESCO,II.1.1,Catamarca,AR-K,annual,2013,jet kerosene combustion consumption by to the public,5.1268389999999995,TJ,CO2,71500.0,kg/TJ,366568.9885,kg +e28b9fbd-85a9-331c-9152-1f73359c7af7,SESCO,II.1.1,Catamarca,AR-K,annual,2013,jet kerosene combustion consumption by to the public,5.1268389999999995,TJ,CH4,0.5,kg/TJ,2.5634194999999997,kg +54dcdd47-d763-3153-a122-69edee915717,SESCO,II.1.1,Catamarca,AR-K,annual,2013,jet kerosene combustion consumption by to the public,5.1268389999999995,TJ,N2O,2.0,kg/TJ,10.253677999999999,kg +2b54a080-6149-30d8-8771-c4346f1f83e4,SESCO,II.1.1,Chaco,AR-H,annual,2013,jet kerosene combustion consumption by to the public,2.20171,TJ,CO2,71500.0,kg/TJ,157422.26499999998,kg +26fe5913-9ace-366c-82db-3c5fc5933c22,SESCO,II.1.1,Chaco,AR-H,annual,2013,jet kerosene combustion consumption by to the public,2.20171,TJ,CH4,0.5,kg/TJ,1.100855,kg +ff8eda42-7af6-3cd7-92f3-09448a9ab050,SESCO,II.1.1,Chaco,AR-H,annual,2013,jet kerosene combustion consumption by to the public,2.20171,TJ,N2O,2.0,kg/TJ,4.40342,kg +c4fe952f-c08f-3b5c-b873-12214ff3a354,SESCO,II.1.1,Chubut,AR-U,annual,2013,jet kerosene combustion consumption by to the public,13.524789999999998,TJ,CO2,71500.0,kg/TJ,967022.4849999999,kg +4b197424-f6ba-3663-8be5-d49da01144d8,SESCO,II.1.1,Chubut,AR-U,annual,2013,jet kerosene combustion consumption by to the public,13.524789999999998,TJ,CH4,0.5,kg/TJ,6.762394999999999,kg +c2f9202a-8319-31ce-ab83-fe515dbd8989,SESCO,II.1.1,Chubut,AR-U,annual,2013,jet kerosene combustion consumption by to the public,13.524789999999998,TJ,N2O,2.0,kg/TJ,27.049579999999995,kg +f745484a-354e-3ff0-b4fa-e1dc4b6f2242,SESCO,II.1.1,Corrientes,AR-W,annual,2013,jet kerosene combustion consumption by to the public,5.1268389999999995,TJ,CO2,71500.0,kg/TJ,366568.9885,kg +9084be11-98d0-3c6e-b10f-1d93bff44a97,SESCO,II.1.1,Corrientes,AR-W,annual,2013,jet kerosene combustion consumption by to the public,5.1268389999999995,TJ,CH4,0.5,kg/TJ,2.5634194999999997,kg +3c40027e-3f6b-34c4-ac33-bc2e0f99f685,SESCO,II.1.1,Corrientes,AR-W,annual,2013,jet kerosene combustion consumption by to the public,5.1268389999999995,TJ,N2O,2.0,kg/TJ,10.253677999999999,kg +86f5c2a9-c178-37f8-bf91-f47c6a6d33a4,SESCO,II.1.1,Córdoba,AR-X,annual,2013,jet kerosene combustion consumption by to the public,132.54294199999998,TJ,CO2,71500.0,kg/TJ,9476820.352999998,kg +577610e3-4202-3c68-9e9a-0c70651401f7,SESCO,II.1.1,Córdoba,AR-X,annual,2013,jet kerosene combustion consumption by to the public,132.54294199999998,TJ,CH4,0.5,kg/TJ,66.27147099999999,kg +fc66df2d-0659-3223-92dd-ade70c9f9e37,SESCO,II.1.1,Córdoba,AR-X,annual,2013,jet kerosene combustion consumption by to the public,132.54294199999998,TJ,N2O,2.0,kg/TJ,265.08588399999996,kg +d454def1-c884-345f-b246-c7fb9bfa23ef,SESCO,II.1.1,Entre Rios,AR-E,annual,2013,jet kerosene combustion consumption by to the public,13.996584999999998,TJ,CO2,71500.0,kg/TJ,1000755.8274999999,kg +0d96a949-49b7-383b-8157-d5021dbd4fb4,SESCO,II.1.1,Entre Rios,AR-E,annual,2013,jet kerosene combustion consumption by to the public,13.996584999999998,TJ,CH4,0.5,kg/TJ,6.998292499999999,kg +13af1d02-d18f-370f-8807-5569c9831518,SESCO,II.1.1,Entre Rios,AR-E,annual,2013,jet kerosene combustion consumption by to the public,13.996584999999998,TJ,N2O,2.0,kg/TJ,27.993169999999996,kg +d27ec511-aedf-3d28-8535-5d4bbbcea09b,SESCO,II.1.1,Jujuy,AR-Y,annual,2013,jet kerosene combustion consumption by to the public,3.7429069999999993,TJ,CO2,71500.0,kg/TJ,267617.85049999994,kg +eb693cc9-ae26-3c0c-a583-48731f539a70,SESCO,II.1.1,Jujuy,AR-Y,annual,2013,jet kerosene combustion consumption by to the public,3.7429069999999993,TJ,CH4,0.5,kg/TJ,1.8714534999999997,kg +2b1e197a-ddbf-3d4b-a39f-dfc2e2248bb4,SESCO,II.1.1,Jujuy,AR-Y,annual,2013,jet kerosene combustion consumption by to the public,3.7429069999999993,TJ,N2O,2.0,kg/TJ,7.485813999999999,kg +a3948838-600b-3872-8f58-17e3e9dd3d2d,SESCO,II.1.1,La Pampa,AR-L,annual,2013,jet kerosene combustion consumption by to the public,10.473848999999998,TJ,CO2,71500.0,kg/TJ,748880.2034999998,kg +f064bbc8-c1bf-3499-846d-cf67a67770e2,SESCO,II.1.1,La Pampa,AR-L,annual,2013,jet kerosene combustion consumption by to the public,10.473848999999998,TJ,CH4,0.5,kg/TJ,5.236924499999999,kg +54adc027-6d08-31f1-9942-a2b0af8c777c,SESCO,II.1.1,La Pampa,AR-L,annual,2013,jet kerosene combustion consumption by to the public,10.473848999999998,TJ,N2O,2.0,kg/TJ,20.947697999999995,kg +263a5920-af10-3522-852a-8a05ae34a992,SESCO,II.1.1,La Rioja,AR-F,annual,2013,jet kerosene combustion consumption by to the public,2.1388039999999995,TJ,CO2,71500.0,kg/TJ,152924.48599999998,kg +39a79695-e74a-3d9e-8e25-d8c6c64c6c52,SESCO,II.1.1,La Rioja,AR-F,annual,2013,jet kerosene combustion consumption by to the public,2.1388039999999995,TJ,CH4,0.5,kg/TJ,1.0694019999999997,kg +57323d55-04cc-3815-a5b7-ade7fce7f52a,SESCO,II.1.1,La Rioja,AR-F,annual,2013,jet kerosene combustion consumption by to the public,2.1388039999999995,TJ,N2O,2.0,kg/TJ,4.277607999999999,kg +21bf6901-d964-3eb0-becf-43cefe2f9df1,SESCO,II.1.1,Mendoza,AR-M,annual,2013,jet kerosene combustion consumption by to the public,50.26189399999999,TJ,CO2,71500.0,kg/TJ,3593725.420999999,kg +ffbd534e-c784-39fc-9dcf-cc6a2d0821a7,SESCO,II.1.1,Mendoza,AR-M,annual,2013,jet kerosene combustion consumption by to the public,50.26189399999999,TJ,CH4,0.5,kg/TJ,25.130946999999995,kg +7e2d325d-e2bc-3b98-97bc-686b117856d8,SESCO,II.1.1,Mendoza,AR-M,annual,2013,jet kerosene combustion consumption by to the public,50.26189399999999,TJ,N2O,2.0,kg/TJ,100.52378799999998,kg +d6986b4d-9bc0-3b21-8f43-b4f7779266da,SESCO,II.1.1,Neuquén,AR-Q,annual,2013,jet kerosene combustion consumption by to the public,9.184275999999999,TJ,CO2,71500.0,kg/TJ,656675.7339999999,kg +0677ed92-819b-36e2-b82f-dc85ae49814c,SESCO,II.1.1,Neuquén,AR-Q,annual,2013,jet kerosene combustion consumption by to the public,9.184275999999999,TJ,CH4,0.5,kg/TJ,4.592137999999999,kg +56162c92-30a6-3808-b569-f5c21fa5ce9f,SESCO,II.1.1,Neuquén,AR-Q,annual,2013,jet kerosene combustion consumption by to the public,9.184275999999999,TJ,N2O,2.0,kg/TJ,18.368551999999998,kg +dad46b44-2cda-3b64-b1b1-7a332c823bdc,SESCO,II.1.1,Rio Negro,AR-R,annual,2013,jet kerosene combustion consumption by to the public,1.7928209999999998,TJ,CO2,71500.0,kg/TJ,128186.70149999998,kg +50497b97-34e8-3a17-8aa6-f34c2a3fd104,SESCO,II.1.1,Rio Negro,AR-R,annual,2013,jet kerosene combustion consumption by to the public,1.7928209999999998,TJ,CH4,0.5,kg/TJ,0.8964104999999999,kg +7a3498d7-b046-3216-8377-4fff95c81297,SESCO,II.1.1,Rio Negro,AR-R,annual,2013,jet kerosene combustion consumption by to the public,1.7928209999999998,TJ,N2O,2.0,kg/TJ,3.5856419999999996,kg +d511835f-49d8-3c04-8142-15bb220832b4,SESCO,II.1.1,Salta,AR-A,annual,2013,jet kerosene combustion consumption by to the public,3.1138469999999994,TJ,CO2,71500.0,kg/TJ,222640.06049999996,kg +91714b59-91e7-39f2-8dc5-6d56204ee365,SESCO,II.1.1,Salta,AR-A,annual,2013,jet kerosene combustion consumption by to the public,3.1138469999999994,TJ,CH4,0.5,kg/TJ,1.5569234999999997,kg +74c6c8ef-d011-366e-8410-b6423d77e17a,SESCO,II.1.1,Salta,AR-A,annual,2013,jet kerosene combustion consumption by to the public,3.1138469999999994,TJ,N2O,2.0,kg/TJ,6.227693999999999,kg +5c7f0c61-5a1f-3032-ad2d-53aa5bd36306,SESCO,II.1.1,San Juan,AR-J,annual,2013,jet kerosene combustion consumption by to the public,4.025983999999999,TJ,CO2,71500.0,kg/TJ,287857.85599999997,kg +94e9ca31-6dba-3129-9408-1340a94344b8,SESCO,II.1.1,San Juan,AR-J,annual,2013,jet kerosene combustion consumption by to the public,4.025983999999999,TJ,CH4,0.5,kg/TJ,2.0129919999999997,kg +63c7990a-162f-3362-b18c-a3f9c4f44fbb,SESCO,II.1.1,San Juan,AR-J,annual,2013,jet kerosene combustion consumption by to the public,4.025983999999999,TJ,N2O,2.0,kg/TJ,8.051967999999999,kg +c9a2c018-96ad-369b-9c3f-abe17efa8b2a,SESCO,II.1.1,San Luis,AR-D,annual,2013,jet kerosene combustion consumption by to the public,7.737437999999999,TJ,CO2,71500.0,kg/TJ,553226.8169999999,kg +25c03b5c-0f89-3ff0-9de6-71fb409682d0,SESCO,II.1.1,San Luis,AR-D,annual,2013,jet kerosene combustion consumption by to the public,7.737437999999999,TJ,CH4,0.5,kg/TJ,3.8687189999999996,kg +07b2c48b-e2c6-3a4b-8b6d-b724891c78e9,SESCO,II.1.1,San Luis,AR-D,annual,2013,jet kerosene combustion consumption by to the public,7.737437999999999,TJ,N2O,2.0,kg/TJ,15.474875999999998,kg +8468312a-f7f9-3497-965b-128197062d13,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2013,jet kerosene combustion consumption by to the public,15.820858999999997,TJ,CO2,71500.0,kg/TJ,1131191.4184999997,kg +9d490b98-f356-39ff-be24-39debe635bd2,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2013,jet kerosene combustion consumption by to the public,15.820858999999997,TJ,CH4,0.5,kg/TJ,7.9104294999999984,kg +8810ca23-0024-3887-92e8-5f87a9327da2,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2013,jet kerosene combustion consumption by to the public,15.820858999999997,TJ,N2O,2.0,kg/TJ,31.641717999999994,kg +11f3f694-6e90-3205-8a96-a7cb427a7e41,SESCO,II.1.1,Santa Fe,AR-S,annual,2013,jet kerosene combustion consumption by to the public,51.86599699999999,TJ,CO2,71500.0,kg/TJ,3708418.7854999993,kg +ba51c37b-401e-3a85-a0c2-e7a7d66ec104,SESCO,II.1.1,Santa Fe,AR-S,annual,2013,jet kerosene combustion consumption by to the public,51.86599699999999,TJ,CH4,0.5,kg/TJ,25.932998499999997,kg +1fe5ab31-eb75-369a-b830-b0e1dba1e196,SESCO,II.1.1,Santa Fe,AR-S,annual,2013,jet kerosene combustion consumption by to the public,51.86599699999999,TJ,N2O,2.0,kg/TJ,103.73199399999999,kg +5010bf03-da02-33e2-882f-0420dc051209,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2013,jet kerosene combustion consumption by to the public,7.045471999999998,TJ,CO2,71500.0,kg/TJ,503751.2479999999,kg +38f20a2c-c810-30fe-a779-968f5840a954,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2013,jet kerosene combustion consumption by to the public,7.045471999999998,TJ,CH4,0.5,kg/TJ,3.522735999999999,kg +617dc736-61f7-34e5-a4b3-9b75e8f1c7d5,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2013,jet kerosene combustion consumption by to the public,7.045471999999998,TJ,N2O,2.0,kg/TJ,14.090943999999997,kg +14fdcd68-602c-3416-938a-b9557fa74d62,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2013,jet kerosene combustion consumption by to the public,2.7678639999999994,TJ,CO2,71500.0,kg/TJ,197902.27599999995,kg +06589a5f-3816-380e-85b0-9c1639e4a503,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2013,jet kerosene combustion consumption by to the public,2.7678639999999994,TJ,CH4,0.5,kg/TJ,1.3839319999999997,kg +5fc3a679-58cd-39b8-bb19-da76b6168b40,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2013,jet kerosene combustion consumption by to the public,2.7678639999999994,TJ,N2O,2.0,kg/TJ,5.535727999999999,kg +a26bbd41-726c-3c0d-8936-b673658d69c0,SESCO,II.1.1,Tucuman,AR-T,annual,2013,jet kerosene combustion consumption by to the public,12.361028999999998,TJ,CO2,71500.0,kg/TJ,883813.5734999999,kg +ab1bf21c-f5a9-322f-b4f7-979182308e0b,SESCO,II.1.1,Tucuman,AR-T,annual,2013,jet kerosene combustion consumption by to the public,12.361028999999998,TJ,CH4,0.5,kg/TJ,6.180514499999999,kg +6cae9ccb-fe39-38be-96db-e6133b633278,SESCO,II.1.1,Tucuman,AR-T,annual,2013,jet kerosene combustion consumption by to the public,12.361028999999998,TJ,N2O,2.0,kg/TJ,24.722057999999997,kg +8b2705d5-5357-3561-9ad6-48231418d7b5,SESCO,I.3.1,Neuquén,AR-Q,annual,2013,Aviation Gasoline combustion consumption by petrochemical industries,2.7049579999999995,TJ,,,kg/TJ,,kg +6b57dee5-386c-38ae-825d-d1d37961b6b1,SESCO,I.3.1,Neuquén,AR-Q,annual,2013,gas oil combustion consumption by petrochemical industries,0.5418,TJ,CO2,74100.0,kg/TJ,40147.38,kg +211c8522-7e25-343d-92c4-916d7993fec5,SESCO,I.3.1,Neuquén,AR-Q,annual,2013,gas oil combustion consumption by petrochemical industries,0.5418,TJ,CH4,3.9,kg/TJ,2.1130199999999997,kg +211c8522-7e25-343d-92c4-916d7993fec5,SESCO,I.3.1,Neuquén,AR-Q,annual,2013,gas oil combustion consumption by petrochemical industries,0.5418,TJ,N2O,3.9,kg/TJ,2.1130199999999997,kg +f8941dab-21f1-3c31-af4c-ce83a95ca389,SESCO,I.3.1,Neuquén,AR-Q,annual,2013,gas oil combustion consumption by petrochemical industries,2.31168,TJ,CO2,74100.0,kg/TJ,171295.48799999998,kg +f0e691c7-2837-35f8-8214-558fb83fa5db,SESCO,I.3.1,Neuquén,AR-Q,annual,2013,gas oil combustion consumption by petrochemical industries,2.31168,TJ,CH4,3.9,kg/TJ,9.015552,kg +f0e691c7-2837-35f8-8214-558fb83fa5db,SESCO,I.3.1,Neuquén,AR-Q,annual,2013,gas oil combustion consumption by petrochemical industries,2.31168,TJ,N2O,3.9,kg/TJ,9.015552,kg +a40597bd-695c-3ab1-8125-ed3c5181346d,SESCO,II.1.1,Buenos Aires,AR-B,annual,2013,gasoline combustion consumption by freight transport,43.1925,TJ,CO2,69300.0,kg/TJ,2993240.25,kg +49ee9632-ffef-3974-b6b1-b8f6461f8219,SESCO,II.1.1,Buenos Aires,AR-B,annual,2013,gasoline combustion consumption by freight transport,43.1925,TJ,CH4,33.0,kg/TJ,1425.3525000000002,kg +c1842c26-ccd2-310e-aad4-12c1423719d9,SESCO,II.1.1,Buenos Aires,AR-B,annual,2013,gasoline combustion consumption by freight transport,43.1925,TJ,N2O,3.2,kg/TJ,138.216,kg +b5fdfd2f-69b4-3373-a5b6-34d1cd3c99ba,SESCO,II.1.1,Capital Federal,AR-C,annual,2013,gasoline combustion consumption by freight transport,15.504999999999999,TJ,CO2,69300.0,kg/TJ,1074496.5,kg +e1ed1263-9d5e-3700-9a9a-33f2d374fec6,SESCO,II.1.1,Capital Federal,AR-C,annual,2013,gasoline combustion consumption by freight transport,15.504999999999999,TJ,CH4,33.0,kg/TJ,511.66499999999996,kg +d702cd67-77db-311d-b319-3704f879f6cd,SESCO,II.1.1,Capital Federal,AR-C,annual,2013,gasoline combustion consumption by freight transport,15.504999999999999,TJ,N2O,3.2,kg/TJ,49.616,kg +58a31817-623e-3908-b1c5-0a4c680e6bba,SESCO,II.1.1,Buenos Aires,AR-B,annual,2013,gas oil combustion consumption by freight transport,6913.22352,TJ,CO2,74100.0,kg/TJ,512269862.83199996,kg +2a48b68b-b282-37c3-a3ad-354f88a9e4f4,SESCO,II.1.1,Buenos Aires,AR-B,annual,2013,gas oil combustion consumption by freight transport,6913.22352,TJ,CH4,3.9,kg/TJ,26961.571728,kg +2a48b68b-b282-37c3-a3ad-354f88a9e4f4,SESCO,II.1.1,Buenos Aires,AR-B,annual,2013,gas oil combustion consumption by freight transport,6913.22352,TJ,N2O,3.9,kg/TJ,26961.571728,kg +28d9bc12-4c0c-3357-8140-2499457c04cc,SESCO,II.1.1,Capital Federal,AR-C,annual,2013,gas oil combustion consumption by freight transport,4009.7895599999997,TJ,CO2,74100.0,kg/TJ,297125406.39599997,kg +2b695d44-4218-3c64-b0d7-c0b254508429,SESCO,II.1.1,Capital Federal,AR-C,annual,2013,gas oil combustion consumption by freight transport,4009.7895599999997,TJ,CH4,3.9,kg/TJ,15638.179283999998,kg +2b695d44-4218-3c64-b0d7-c0b254508429,SESCO,II.1.1,Capital Federal,AR-C,annual,2013,gas oil combustion consumption by freight transport,4009.7895599999997,TJ,N2O,3.9,kg/TJ,15638.179283999998,kg +243457bb-72b1-3c23-bb17-a359f21613b2,SESCO,II.1.1,Catamarca,AR-K,annual,2013,gas oil combustion consumption by freight transport,19.28808,TJ,CO2,74100.0,kg/TJ,1429246.7280000001,kg +84884a7b-dedd-3734-bd0b-daaa12f39305,SESCO,II.1.1,Catamarca,AR-K,annual,2013,gas oil combustion consumption by freight transport,19.28808,TJ,CH4,3.9,kg/TJ,75.223512,kg +84884a7b-dedd-3734-bd0b-daaa12f39305,SESCO,II.1.1,Catamarca,AR-K,annual,2013,gas oil combustion consumption by freight transport,19.28808,TJ,N2O,3.9,kg/TJ,75.223512,kg +9815914e-8025-3c58-b11b-dc596e167a2d,SESCO,II.1.1,Chaco,AR-H,annual,2013,gas oil combustion consumption by freight transport,195.7704,TJ,CO2,74100.0,kg/TJ,14506586.639999999,kg +d77925be-93bd-301e-9bbe-883e10422cda,SESCO,II.1.1,Chaco,AR-H,annual,2013,gas oil combustion consumption by freight transport,195.7704,TJ,CH4,3.9,kg/TJ,763.50456,kg +d77925be-93bd-301e-9bbe-883e10422cda,SESCO,II.1.1,Chaco,AR-H,annual,2013,gas oil combustion consumption by freight transport,195.7704,TJ,N2O,3.9,kg/TJ,763.50456,kg +6664c558-3aed-3b27-9867-96f84a97915b,SESCO,II.1.1,Chubut,AR-U,annual,2013,gas oil combustion consumption by freight transport,212.89128,TJ,CO2,74100.0,kg/TJ,15775243.848,kg +dcb96f3e-4553-39cc-a180-00d0f3562fb6,SESCO,II.1.1,Chubut,AR-U,annual,2013,gas oil combustion consumption by freight transport,212.89128,TJ,CH4,3.9,kg/TJ,830.275992,kg +dcb96f3e-4553-39cc-a180-00d0f3562fb6,SESCO,II.1.1,Chubut,AR-U,annual,2013,gas oil combustion consumption by freight transport,212.89128,TJ,N2O,3.9,kg/TJ,830.275992,kg +3bb9e608-7e4b-3eb8-b753-5c0fa5e232a1,SESCO,II.1.1,Corrientes,AR-W,annual,2013,gas oil combustion consumption by freight transport,297.05088,TJ,CO2,74100.0,kg/TJ,22011470.208,kg +d5dcd818-3b7b-3694-83a1-f202f3191756,SESCO,II.1.1,Corrientes,AR-W,annual,2013,gas oil combustion consumption by freight transport,297.05088,TJ,CH4,3.9,kg/TJ,1158.498432,kg +d5dcd818-3b7b-3694-83a1-f202f3191756,SESCO,II.1.1,Corrientes,AR-W,annual,2013,gas oil combustion consumption by freight transport,297.05088,TJ,N2O,3.9,kg/TJ,1158.498432,kg +d84b24d4-8d56-3c30-adf7-fc1ab182e391,SESCO,II.1.1,Córdoba,AR-X,annual,2013,gas oil combustion consumption by freight transport,1935.2012399999999,TJ,CO2,74100.0,kg/TJ,143398411.884,kg +f5459c5c-7a7e-39ab-a350-3871dc76ffbd,SESCO,II.1.1,Córdoba,AR-X,annual,2013,gas oil combustion consumption by freight transport,1935.2012399999999,TJ,CH4,3.9,kg/TJ,7547.284835999999,kg +f5459c5c-7a7e-39ab-a350-3871dc76ffbd,SESCO,II.1.1,Córdoba,AR-X,annual,2013,gas oil combustion consumption by freight transport,1935.2012399999999,TJ,N2O,3.9,kg/TJ,7547.284835999999,kg +05d78a72-00f1-39c4-86ea-a68d32372cfb,SESCO,II.1.1,Entre Rios,AR-E,annual,2013,gas oil combustion consumption by freight transport,301.602,TJ,CO2,74100.0,kg/TJ,22348708.2,kg +caa3f3e8-7dd8-38be-b0ec-3f2172e77530,SESCO,II.1.1,Entre Rios,AR-E,annual,2013,gas oil combustion consumption by freight transport,301.602,TJ,CH4,3.9,kg/TJ,1176.2477999999999,kg +caa3f3e8-7dd8-38be-b0ec-3f2172e77530,SESCO,II.1.1,Entre Rios,AR-E,annual,2013,gas oil combustion consumption by freight transport,301.602,TJ,N2O,3.9,kg/TJ,1176.2477999999999,kg +70893583-bacc-388a-8047-9dbeb9eb7ca0,SESCO,II.1.1,Formosa,AR-P,annual,2013,gas oil combustion consumption by freight transport,1.22808,TJ,CO2,74100.0,kg/TJ,91000.728,kg +94fa41a5-2fc3-3a00-b214-32c85358ccee,SESCO,II.1.1,Formosa,AR-P,annual,2013,gas oil combustion consumption by freight transport,1.22808,TJ,CH4,3.9,kg/TJ,4.789512,kg +94fa41a5-2fc3-3a00-b214-32c85358ccee,SESCO,II.1.1,Formosa,AR-P,annual,2013,gas oil combustion consumption by freight transport,1.22808,TJ,N2O,3.9,kg/TJ,4.789512,kg +c8ef4f7b-cd37-3380-a433-ba1cbc4dc550,SESCO,II.1.1,Jujuy,AR-Y,annual,2013,gas oil combustion consumption by freight transport,93.1896,TJ,CO2,74100.0,kg/TJ,6905349.36,kg +a2c9b583-3f3e-33cb-9c2b-41202b888d11,SESCO,II.1.1,Jujuy,AR-Y,annual,2013,gas oil combustion consumption by freight transport,93.1896,TJ,CH4,3.9,kg/TJ,363.43944,kg +a2c9b583-3f3e-33cb-9c2b-41202b888d11,SESCO,II.1.1,Jujuy,AR-Y,annual,2013,gas oil combustion consumption by freight transport,93.1896,TJ,N2O,3.9,kg/TJ,363.43944,kg +2e67cc2b-6ca2-3eb3-bd21-81e4e6bb4c3f,SESCO,II.1.1,La Pampa,AR-L,annual,2013,gas oil combustion consumption by freight transport,69.67548,TJ,CO2,74100.0,kg/TJ,5162953.067999999,kg +ede50abe-9bed-3567-898a-bf81179cb3c0,SESCO,II.1.1,La Pampa,AR-L,annual,2013,gas oil combustion consumption by freight transport,69.67548,TJ,CH4,3.9,kg/TJ,271.73437199999995,kg +ede50abe-9bed-3567-898a-bf81179cb3c0,SESCO,II.1.1,La Pampa,AR-L,annual,2013,gas oil combustion consumption by freight transport,69.67548,TJ,N2O,3.9,kg/TJ,271.73437199999995,kg +d4a3dd28-9e19-3a6c-9994-09db10d88e15,SESCO,II.1.1,La Rioja,AR-F,annual,2013,gas oil combustion consumption by freight transport,1.40868,TJ,CO2,74100.0,kg/TJ,104383.188,kg +488c47cf-a431-38ae-9819-8da40fb4e6ac,SESCO,II.1.1,La Rioja,AR-F,annual,2013,gas oil combustion consumption by freight transport,1.40868,TJ,CH4,3.9,kg/TJ,5.4938519999999995,kg +488c47cf-a431-38ae-9819-8da40fb4e6ac,SESCO,II.1.1,La Rioja,AR-F,annual,2013,gas oil combustion consumption by freight transport,1.40868,TJ,N2O,3.9,kg/TJ,5.4938519999999995,kg +d5cc99e7-9144-3888-b4c8-c905caa902cb,SESCO,II.1.1,Mendoza,AR-M,annual,2013,gas oil combustion consumption by freight transport,1598.1294,TJ,CO2,74100.0,kg/TJ,118421388.54,kg +9d109c5f-1064-3f7a-9385-4ce7e6b32147,SESCO,II.1.1,Mendoza,AR-M,annual,2013,gas oil combustion consumption by freight transport,1598.1294,TJ,CH4,3.9,kg/TJ,6232.70466,kg +9d109c5f-1064-3f7a-9385-4ce7e6b32147,SESCO,II.1.1,Mendoza,AR-M,annual,2013,gas oil combustion consumption by freight transport,1598.1294,TJ,N2O,3.9,kg/TJ,6232.70466,kg +07905e67-45be-3546-b885-fa1c5da8949c,SESCO,II.1.1,Misiones,AR-N,annual,2013,gas oil combustion consumption by freight transport,474.72516,TJ,CO2,74100.0,kg/TJ,35177134.356,kg +2ae5e220-30c2-3d40-a16c-7d09f8550bb9,SESCO,II.1.1,Misiones,AR-N,annual,2013,gas oil combustion consumption by freight transport,474.72516,TJ,CH4,3.9,kg/TJ,1851.428124,kg +2ae5e220-30c2-3d40-a16c-7d09f8550bb9,SESCO,II.1.1,Misiones,AR-N,annual,2013,gas oil combustion consumption by freight transport,474.72516,TJ,N2O,3.9,kg/TJ,1851.428124,kg +5de01d9e-de76-3947-953c-ee258234adf5,SESCO,II.1.1,Neuquén,AR-Q,annual,2013,gas oil combustion consumption by freight transport,676.49148,TJ,CO2,74100.0,kg/TJ,50128018.668000005,kg +59f6c520-5c5c-30db-b56f-c4a3c2085f5a,SESCO,II.1.1,Neuquén,AR-Q,annual,2013,gas oil combustion consumption by freight transport,676.49148,TJ,CH4,3.9,kg/TJ,2638.316772,kg +59f6c520-5c5c-30db-b56f-c4a3c2085f5a,SESCO,II.1.1,Neuquén,AR-Q,annual,2013,gas oil combustion consumption by freight transport,676.49148,TJ,N2O,3.9,kg/TJ,2638.316772,kg +367338d6-ff15-3366-8f92-e1d5ed475f6b,SESCO,II.1.1,Rio Negro,AR-R,annual,2013,gas oil combustion consumption by freight transport,119.44884,TJ,CO2,74100.0,kg/TJ,8851159.044,kg +16e49d9f-c989-35c5-bb00-5c86eb54b63e,SESCO,II.1.1,Rio Negro,AR-R,annual,2013,gas oil combustion consumption by freight transport,119.44884,TJ,CH4,3.9,kg/TJ,465.850476,kg +16e49d9f-c989-35c5-bb00-5c86eb54b63e,SESCO,II.1.1,Rio Negro,AR-R,annual,2013,gas oil combustion consumption by freight transport,119.44884,TJ,N2O,3.9,kg/TJ,465.850476,kg +c2f997dc-fed0-3969-bca8-62315963351a,SESCO,II.1.1,Salta,AR-A,annual,2013,gas oil combustion consumption by freight transport,234.63551999999999,TJ,CO2,74100.0,kg/TJ,17386492.031999998,kg +2a90ab1c-6fef-3654-90bb-a93e7306dd98,SESCO,II.1.1,Salta,AR-A,annual,2013,gas oil combustion consumption by freight transport,234.63551999999999,TJ,CH4,3.9,kg/TJ,915.0785279999999,kg +2a90ab1c-6fef-3654-90bb-a93e7306dd98,SESCO,II.1.1,Salta,AR-A,annual,2013,gas oil combustion consumption by freight transport,234.63551999999999,TJ,N2O,3.9,kg/TJ,915.0785279999999,kg +c41ade22-8e16-361b-aca2-ba68bf33fd5a,SESCO,II.1.1,San Juan,AR-J,annual,2013,gas oil combustion consumption by freight transport,107.67372,TJ,CO2,74100.0,kg/TJ,7978622.652,kg +40527a5e-6338-3d3d-b8b2-869613431e22,SESCO,II.1.1,San Juan,AR-J,annual,2013,gas oil combustion consumption by freight transport,107.67372,TJ,CH4,3.9,kg/TJ,419.927508,kg +40527a5e-6338-3d3d-b8b2-869613431e22,SESCO,II.1.1,San Juan,AR-J,annual,2013,gas oil combustion consumption by freight transport,107.67372,TJ,N2O,3.9,kg/TJ,419.927508,kg +e6fc2df3-1422-37f2-958c-f1fcaeabb4db,SESCO,II.1.1,San Luis,AR-D,annual,2013,gas oil combustion consumption by freight transport,134.33028,TJ,CO2,74100.0,kg/TJ,9953873.748,kg +24c96caf-a5e9-3949-be1b-74437dea0002,SESCO,II.1.1,San Luis,AR-D,annual,2013,gas oil combustion consumption by freight transport,134.33028,TJ,CH4,3.9,kg/TJ,523.8880919999999,kg +24c96caf-a5e9-3949-be1b-74437dea0002,SESCO,II.1.1,San Luis,AR-D,annual,2013,gas oil combustion consumption by freight transport,134.33028,TJ,N2O,3.9,kg/TJ,523.8880919999999,kg +408e45a0-76b3-3acf-a70c-03f9760c3332,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2013,gas oil combustion consumption by freight transport,95.60964,TJ,CO2,74100.0,kg/TJ,7084674.324,kg +72af24b0-1c77-3baa-b76a-008d484be343,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2013,gas oil combustion consumption by freight transport,95.60964,TJ,CH4,3.9,kg/TJ,372.877596,kg +72af24b0-1c77-3baa-b76a-008d484be343,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2013,gas oil combustion consumption by freight transport,95.60964,TJ,N2O,3.9,kg/TJ,372.877596,kg +9ceaad3e-2c54-3aaa-840a-af66d0ec935d,SESCO,II.1.1,Santa Fe,AR-S,annual,2013,gas oil combustion consumption by freight transport,1899.40632,TJ,CO2,74100.0,kg/TJ,140746008.312,kg +d135e5ba-f9f4-34dd-b0f5-2ab2e49a50ea,SESCO,II.1.1,Santa Fe,AR-S,annual,2013,gas oil combustion consumption by freight transport,1899.40632,TJ,CH4,3.9,kg/TJ,7407.684648,kg +d135e5ba-f9f4-34dd-b0f5-2ab2e49a50ea,SESCO,II.1.1,Santa Fe,AR-S,annual,2013,gas oil combustion consumption by freight transport,1899.40632,TJ,N2O,3.9,kg/TJ,7407.684648,kg +506d936d-ec64-3fec-b5b4-2136c3718468,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2013,gas oil combustion consumption by freight transport,56.49168,TJ,CO2,74100.0,kg/TJ,4186033.4880000004,kg +a710ce9c-98fe-3781-8dec-fea523855fc1,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2013,gas oil combustion consumption by freight transport,56.49168,TJ,CH4,3.9,kg/TJ,220.317552,kg +a710ce9c-98fe-3781-8dec-fea523855fc1,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2013,gas oil combustion consumption by freight transport,56.49168,TJ,N2O,3.9,kg/TJ,220.317552,kg +c180356f-c42c-31f9-bf56-8f3c26ac70c0,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2013,gas oil combustion consumption by freight transport,1.806,TJ,CO2,74100.0,kg/TJ,133824.6,kg +449b0895-3c80-3aeb-8c6f-149b1a89065a,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2013,gas oil combustion consumption by freight transport,1.806,TJ,CH4,3.9,kg/TJ,7.0434,kg +449b0895-3c80-3aeb-8c6f-149b1a89065a,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2013,gas oil combustion consumption by freight transport,1.806,TJ,N2O,3.9,kg/TJ,7.0434,kg +d874257d-5ab8-3d60-89ab-2776d54779b0,SESCO,II.1.1,Tucuman,AR-T,annual,2013,gas oil combustion consumption by freight transport,272.74212,TJ,CO2,74100.0,kg/TJ,20210191.092,kg +10d20593-b244-3ab8-924c-33d299b51b41,SESCO,II.1.1,Tucuman,AR-T,annual,2013,gas oil combustion consumption by freight transport,272.74212,TJ,CH4,3.9,kg/TJ,1063.694268,kg +10d20593-b244-3ab8-924c-33d299b51b41,SESCO,II.1.1,Tucuman,AR-T,annual,2013,gas oil combustion consumption by freight transport,272.74212,TJ,N2O,3.9,kg/TJ,1063.694268,kg +98b8d372-d2d2-3326-a998-254c106c55a0,SESCO,II.1.1,Buenos Aires,AR-B,annual,2013,gas oil combustion consumption by freight transport,243.52104,TJ,CO2,74100.0,kg/TJ,18044909.064,kg +622cba15-07f9-308d-b5ec-c37fe464bbc1,SESCO,II.1.1,Buenos Aires,AR-B,annual,2013,gas oil combustion consumption by freight transport,243.52104,TJ,CH4,3.9,kg/TJ,949.732056,kg +622cba15-07f9-308d-b5ec-c37fe464bbc1,SESCO,II.1.1,Buenos Aires,AR-B,annual,2013,gas oil combustion consumption by freight transport,243.52104,TJ,N2O,3.9,kg/TJ,949.732056,kg +64513b98-be0e-331b-8ce1-0d16d27a254a,SESCO,II.1.1,Capital Federal,AR-C,annual,2013,gas oil combustion consumption by freight transport,444.02316,TJ,CO2,74100.0,kg/TJ,32902116.156000003,kg +62966a3a-ecaf-3a59-a1a3-4f454697559e,SESCO,II.1.1,Capital Federal,AR-C,annual,2013,gas oil combustion consumption by freight transport,444.02316,TJ,CH4,3.9,kg/TJ,1731.6903240000001,kg +62966a3a-ecaf-3a59-a1a3-4f454697559e,SESCO,II.1.1,Capital Federal,AR-C,annual,2013,gas oil combustion consumption by freight transport,444.02316,TJ,N2O,3.9,kg/TJ,1731.6903240000001,kg +53841e57-48e1-339d-b047-7a112356ab38,SESCO,II.1.1,Chaco,AR-H,annual,2013,gas oil combustion consumption by freight transport,7.7658,TJ,CO2,74100.0,kg/TJ,575445.78,kg +733cdd07-8699-3e43-a99d-496be7b8eea4,SESCO,II.1.1,Chaco,AR-H,annual,2013,gas oil combustion consumption by freight transport,7.7658,TJ,CH4,3.9,kg/TJ,30.28662,kg +733cdd07-8699-3e43-a99d-496be7b8eea4,SESCO,II.1.1,Chaco,AR-H,annual,2013,gas oil combustion consumption by freight transport,7.7658,TJ,N2O,3.9,kg/TJ,30.28662,kg +cb90f215-b38e-32c2-9f5e-311fedc4a69b,SESCO,II.1.1,Chubut,AR-U,annual,2013,gas oil combustion consumption by freight transport,5.70696,TJ,CO2,74100.0,kg/TJ,422885.736,kg +61c39b14-81ae-3aa3-b41a-d0c25e05bcb8,SESCO,II.1.1,Chubut,AR-U,annual,2013,gas oil combustion consumption by freight transport,5.70696,TJ,CH4,3.9,kg/TJ,22.257143999999997,kg +61c39b14-81ae-3aa3-b41a-d0c25e05bcb8,SESCO,II.1.1,Chubut,AR-U,annual,2013,gas oil combustion consumption by freight transport,5.70696,TJ,N2O,3.9,kg/TJ,22.257143999999997,kg +af855d1f-8418-3796-9584-248bd96c2002,SESCO,II.1.1,Corrientes,AR-W,annual,2013,gas oil combustion consumption by freight transport,2.45616,TJ,CO2,74100.0,kg/TJ,182001.456,kg +d77c6ff7-fc3e-39c1-900f-ba0d1f8a82ef,SESCO,II.1.1,Corrientes,AR-W,annual,2013,gas oil combustion consumption by freight transport,2.45616,TJ,CH4,3.9,kg/TJ,9.579024,kg +d77c6ff7-fc3e-39c1-900f-ba0d1f8a82ef,SESCO,II.1.1,Corrientes,AR-W,annual,2013,gas oil combustion consumption by freight transport,2.45616,TJ,N2O,3.9,kg/TJ,9.579024,kg +0c46753a-658b-3fb1-94a1-7af2873302cd,SESCO,II.1.1,Córdoba,AR-X,annual,2013,gas oil combustion consumption by freight transport,9.35508,TJ,CO2,74100.0,kg/TJ,693211.428,kg +0b79e4d5-7a43-3e85-a94d-e48895d506ad,SESCO,II.1.1,Córdoba,AR-X,annual,2013,gas oil combustion consumption by freight transport,9.35508,TJ,CH4,3.9,kg/TJ,36.484812,kg +0b79e4d5-7a43-3e85-a94d-e48895d506ad,SESCO,II.1.1,Córdoba,AR-X,annual,2013,gas oil combustion consumption by freight transport,9.35508,TJ,N2O,3.9,kg/TJ,36.484812,kg +9059c9d5-cdb2-394e-9825-a41d125db20e,SESCO,II.1.1,Entre Rios,AR-E,annual,2013,gas oil combustion consumption by freight transport,12.56976,TJ,CO2,74100.0,kg/TJ,931419.216,kg +153dfb07-9fc9-3866-af6c-b986e0886876,SESCO,II.1.1,Entre Rios,AR-E,annual,2013,gas oil combustion consumption by freight transport,12.56976,TJ,CH4,3.9,kg/TJ,49.022064,kg +153dfb07-9fc9-3866-af6c-b986e0886876,SESCO,II.1.1,Entre Rios,AR-E,annual,2013,gas oil combustion consumption by freight transport,12.56976,TJ,N2O,3.9,kg/TJ,49.022064,kg +3cc7a3d7-3ec1-35f3-b910-cd13ade9bd29,SESCO,II.1.1,La Pampa,AR-L,annual,2013,gas oil combustion consumption by freight transport,0.32508,TJ,CO2,74100.0,kg/TJ,24088.428,kg +17c36316-a6c4-3bf7-a27b-15791fa3c06a,SESCO,II.1.1,La Pampa,AR-L,annual,2013,gas oil combustion consumption by freight transport,0.32508,TJ,CH4,3.9,kg/TJ,1.267812,kg +17c36316-a6c4-3bf7-a27b-15791fa3c06a,SESCO,II.1.1,La Pampa,AR-L,annual,2013,gas oil combustion consumption by freight transport,0.32508,TJ,N2O,3.9,kg/TJ,1.267812,kg +abe9be6a-3b4f-3db7-91c5-686f0274e36e,SESCO,II.1.1,La Rioja,AR-F,annual,2013,gas oil combustion consumption by freight transport,1.73376,TJ,CO2,74100.0,kg/TJ,128471.616,kg +86ff24a2-569f-34a9-a097-02c4a4b8c62f,SESCO,II.1.1,La Rioja,AR-F,annual,2013,gas oil combustion consumption by freight transport,1.73376,TJ,CH4,3.9,kg/TJ,6.761664,kg +86ff24a2-569f-34a9-a097-02c4a4b8c62f,SESCO,II.1.1,La Rioja,AR-F,annual,2013,gas oil combustion consumption by freight transport,1.73376,TJ,N2O,3.9,kg/TJ,6.761664,kg +d0e6710d-a3e9-3cb2-bdae-94dc4f9e4f0e,SESCO,II.1.1,Mendoza,AR-M,annual,2013,gas oil combustion consumption by freight transport,13.978439999999999,TJ,CO2,74100.0,kg/TJ,1035802.404,kg +1ee55afb-3eeb-30f2-9779-3c95176cebd1,SESCO,II.1.1,Mendoza,AR-M,annual,2013,gas oil combustion consumption by freight transport,13.978439999999999,TJ,CH4,3.9,kg/TJ,54.515916,kg +1ee55afb-3eeb-30f2-9779-3c95176cebd1,SESCO,II.1.1,Mendoza,AR-M,annual,2013,gas oil combustion consumption by freight transport,13.978439999999999,TJ,N2O,3.9,kg/TJ,54.515916,kg +e0536112-588b-3a40-8344-9c9b3e7da2b9,SESCO,II.1.1,Misiones,AR-N,annual,2013,gas oil combustion consumption by freight transport,5.70696,TJ,CO2,74100.0,kg/TJ,422885.736,kg +1db85fc2-b5ae-30b3-8666-324010674dc6,SESCO,II.1.1,Misiones,AR-N,annual,2013,gas oil combustion consumption by freight transport,5.70696,TJ,CH4,3.9,kg/TJ,22.257143999999997,kg +1db85fc2-b5ae-30b3-8666-324010674dc6,SESCO,II.1.1,Misiones,AR-N,annual,2013,gas oil combustion consumption by freight transport,5.70696,TJ,N2O,3.9,kg/TJ,22.257143999999997,kg +37ab93e9-9bd0-3b7e-b98c-5fc0636ab478,SESCO,II.1.1,Neuquén,AR-Q,annual,2013,gas oil combustion consumption by freight transport,8.09088,TJ,CO2,74100.0,kg/TJ,599534.208,kg +6dc5f9bb-91a0-3903-b7d8-856f564b0572,SESCO,II.1.1,Neuquén,AR-Q,annual,2013,gas oil combustion consumption by freight transport,8.09088,TJ,CH4,3.9,kg/TJ,31.554432000000002,kg +6dc5f9bb-91a0-3903-b7d8-856f564b0572,SESCO,II.1.1,Neuquén,AR-Q,annual,2013,gas oil combustion consumption by freight transport,8.09088,TJ,N2O,3.9,kg/TJ,31.554432000000002,kg +c815995b-868f-3ed0-a1bb-c790c336661e,SESCO,II.1.1,Rio Negro,AR-R,annual,2013,gas oil combustion consumption by freight transport,2.05884,TJ,CO2,74100.0,kg/TJ,152560.044,kg +ec0a4c42-3760-3a08-86fc-bb901da4000f,SESCO,II.1.1,Rio Negro,AR-R,annual,2013,gas oil combustion consumption by freight transport,2.05884,TJ,CH4,3.9,kg/TJ,8.029475999999999,kg +ec0a4c42-3760-3a08-86fc-bb901da4000f,SESCO,II.1.1,Rio Negro,AR-R,annual,2013,gas oil combustion consumption by freight transport,2.05884,TJ,N2O,3.9,kg/TJ,8.029475999999999,kg +1b565d69-23ce-3159-9b95-42fb7c9b9c48,SESCO,II.1.1,Salta,AR-A,annual,2013,gas oil combustion consumption by freight transport,5.74308,TJ,CO2,74100.0,kg/TJ,425562.228,kg +1ce952b2-d973-3749-88c8-c17f8085d05e,SESCO,II.1.1,Salta,AR-A,annual,2013,gas oil combustion consumption by freight transport,5.74308,TJ,CH4,3.9,kg/TJ,22.398011999999998,kg +1ce952b2-d973-3749-88c8-c17f8085d05e,SESCO,II.1.1,Salta,AR-A,annual,2013,gas oil combustion consumption by freight transport,5.74308,TJ,N2O,3.9,kg/TJ,22.398011999999998,kg +3a1d06cc-b3de-3bb9-a51d-2ab2c2c37807,SESCO,II.1.1,San Juan,AR-J,annual,2013,gas oil combustion consumption by freight transport,1.84212,TJ,CO2,74100.0,kg/TJ,136501.092,kg +6be1b85f-d063-3f01-9da6-6784707f2219,SESCO,II.1.1,San Juan,AR-J,annual,2013,gas oil combustion consumption by freight transport,1.84212,TJ,CH4,3.9,kg/TJ,7.184267999999999,kg +6be1b85f-d063-3f01-9da6-6784707f2219,SESCO,II.1.1,San Juan,AR-J,annual,2013,gas oil combustion consumption by freight transport,1.84212,TJ,N2O,3.9,kg/TJ,7.184267999999999,kg +eb81d4cf-131d-3f0c-94c8-971f5f44bacc,SESCO,II.1.1,San Luis,AR-D,annual,2013,gas oil combustion consumption by freight transport,0.7223999999999999,TJ,CO2,74100.0,kg/TJ,53529.84,kg +7e5d937e-766b-3587-8992-45b28338d71e,SESCO,II.1.1,San Luis,AR-D,annual,2013,gas oil combustion consumption by freight transport,0.7223999999999999,TJ,CH4,3.9,kg/TJ,2.81736,kg +7e5d937e-766b-3587-8992-45b28338d71e,SESCO,II.1.1,San Luis,AR-D,annual,2013,gas oil combustion consumption by freight transport,0.7223999999999999,TJ,N2O,3.9,kg/TJ,2.81736,kg +a13fb712-a266-3a55-81c4-58aac738fd72,SESCO,II.1.1,Santa Fe,AR-S,annual,2013,gas oil combustion consumption by freight transport,113.16396,TJ,CO2,74100.0,kg/TJ,8385449.436000001,kg +00c28c21-16e0-3e6d-8ce6-45af038f60f3,SESCO,II.1.1,Santa Fe,AR-S,annual,2013,gas oil combustion consumption by freight transport,113.16396,TJ,CH4,3.9,kg/TJ,441.339444,kg +00c28c21-16e0-3e6d-8ce6-45af038f60f3,SESCO,II.1.1,Santa Fe,AR-S,annual,2013,gas oil combustion consumption by freight transport,113.16396,TJ,N2O,3.9,kg/TJ,441.339444,kg +9538ea72-cb1a-31e8-a3c1-d6e09531b470,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2013,gas oil combustion consumption by freight transport,0.07224,TJ,CO2,74100.0,kg/TJ,5352.9839999999995,kg +bac7c95d-2ce8-3ad1-87f4-8e0804123eab,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2013,gas oil combustion consumption by freight transport,0.07224,TJ,CH4,3.9,kg/TJ,0.281736,kg +bac7c95d-2ce8-3ad1-87f4-8e0804123eab,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2013,gas oil combustion consumption by freight transport,0.07224,TJ,N2O,3.9,kg/TJ,0.281736,kg +c8e60b34-4072-3e7b-a816-fe32070fa1bf,SESCO,II.1.1,Tucuman,AR-T,annual,2013,gas oil combustion consumption by freight transport,5.38188,TJ,CO2,74100.0,kg/TJ,398797.30799999996,kg +5a39e953-ee5d-3059-9599-c1fc4a8d0828,SESCO,II.1.1,Tucuman,AR-T,annual,2013,gas oil combustion consumption by freight transport,5.38188,TJ,CH4,3.9,kg/TJ,20.989331999999997,kg +5a39e953-ee5d-3059-9599-c1fc4a8d0828,SESCO,II.1.1,Tucuman,AR-T,annual,2013,gas oil combustion consumption by freight transport,5.38188,TJ,N2O,3.9,kg/TJ,20.989331999999997,kg +2d600228-873e-3aa2-8f24-df66ab1dcd8f,SESCO,II.1.1,Buenos Aires,AR-B,annual,2013,gas oil combustion consumption by public passenger transport,11423.99748,TJ,CO2,74100.0,kg/TJ,846518213.268,kg +8ba38711-592f-379e-9cde-09ff1a2eeaed,SESCO,II.1.1,Buenos Aires,AR-B,annual,2013,gas oil combustion consumption by public passenger transport,11423.99748,TJ,CH4,3.9,kg/TJ,44553.590172,kg +8ba38711-592f-379e-9cde-09ff1a2eeaed,SESCO,II.1.1,Buenos Aires,AR-B,annual,2013,gas oil combustion consumption by public passenger transport,11423.99748,TJ,N2O,3.9,kg/TJ,44553.590172,kg +e3ffdafc-f113-3bef-9b2f-87580883a397,SESCO,II.1.1,Capital Federal,AR-C,annual,2013,gas oil combustion consumption by public passenger transport,3101.4799199999998,TJ,CO2,74100.0,kg/TJ,229819662.072,kg +0d392e18-986b-3863-85d8-5689a733bc4e,SESCO,II.1.1,Capital Federal,AR-C,annual,2013,gas oil combustion consumption by public passenger transport,3101.4799199999998,TJ,CH4,3.9,kg/TJ,12095.771687999999,kg +0d392e18-986b-3863-85d8-5689a733bc4e,SESCO,II.1.1,Capital Federal,AR-C,annual,2013,gas oil combustion consumption by public passenger transport,3101.4799199999998,TJ,N2O,3.9,kg/TJ,12095.771687999999,kg +44be6cb3-d3b9-3b68-b120-b3d083bd45a4,SESCO,II.1.1,Catamarca,AR-K,annual,2013,gas oil combustion consumption by public passenger transport,223.14936,TJ,CO2,74100.0,kg/TJ,16535367.576,kg +f297d9df-189c-345e-970b-52c6e349f5a8,SESCO,II.1.1,Catamarca,AR-K,annual,2013,gas oil combustion consumption by public passenger transport,223.14936,TJ,CH4,3.9,kg/TJ,870.282504,kg +f297d9df-189c-345e-970b-52c6e349f5a8,SESCO,II.1.1,Catamarca,AR-K,annual,2013,gas oil combustion consumption by public passenger transport,223.14936,TJ,N2O,3.9,kg/TJ,870.282504,kg +1e6c0867-eb43-3d32-880d-98e860ecd707,SESCO,II.1.1,Chaco,AR-H,annual,2013,gas oil combustion consumption by public passenger transport,574.8498,TJ,CO2,74100.0,kg/TJ,42596370.18,kg +1f46db66-d915-3d43-977b-278b324a2384,SESCO,II.1.1,Chaco,AR-H,annual,2013,gas oil combustion consumption by public passenger transport,574.8498,TJ,CH4,3.9,kg/TJ,2241.9142199999997,kg +1f46db66-d915-3d43-977b-278b324a2384,SESCO,II.1.1,Chaco,AR-H,annual,2013,gas oil combustion consumption by public passenger transport,574.8498,TJ,N2O,3.9,kg/TJ,2241.9142199999997,kg +1a474ca4-e651-3ddc-b666-0db09b95b934,SESCO,II.1.1,Chubut,AR-U,annual,2013,gas oil combustion consumption by public passenger transport,104.31456,TJ,CO2,74100.0,kg/TJ,7729708.896,kg +6e42f391-6e50-336d-a398-fcc9726cbe11,SESCO,II.1.1,Chubut,AR-U,annual,2013,gas oil combustion consumption by public passenger transport,104.31456,TJ,CH4,3.9,kg/TJ,406.826784,kg +6e42f391-6e50-336d-a398-fcc9726cbe11,SESCO,II.1.1,Chubut,AR-U,annual,2013,gas oil combustion consumption by public passenger transport,104.31456,TJ,N2O,3.9,kg/TJ,406.826784,kg +f6b555ac-515e-3cb9-98ce-6ed0aa707d4c,SESCO,II.1.1,Corrientes,AR-W,annual,2013,gas oil combustion consumption by public passenger transport,512.43444,TJ,CO2,74100.0,kg/TJ,37971392.004,kg +343421a4-7ac6-3da0-8fe0-1f94de8ce360,SESCO,II.1.1,Corrientes,AR-W,annual,2013,gas oil combustion consumption by public passenger transport,512.43444,TJ,CH4,3.9,kg/TJ,1998.494316,kg +343421a4-7ac6-3da0-8fe0-1f94de8ce360,SESCO,II.1.1,Corrientes,AR-W,annual,2013,gas oil combustion consumption by public passenger transport,512.43444,TJ,N2O,3.9,kg/TJ,1998.494316,kg +5fd64ddd-64fc-3cde-8e3c-068945957eb6,SESCO,II.1.1,Córdoba,AR-X,annual,2013,gas oil combustion consumption by public passenger transport,1846.3821599999999,TJ,CO2,74100.0,kg/TJ,136816918.056,kg +e7bf06d0-cd92-3c9d-9c46-586367806c2c,SESCO,II.1.1,Córdoba,AR-X,annual,2013,gas oil combustion consumption by public passenger transport,1846.3821599999999,TJ,CH4,3.9,kg/TJ,7200.890423999999,kg +e7bf06d0-cd92-3c9d-9c46-586367806c2c,SESCO,II.1.1,Córdoba,AR-X,annual,2013,gas oil combustion consumption by public passenger transport,1846.3821599999999,TJ,N2O,3.9,kg/TJ,7200.890423999999,kg +d9423e28-5a5b-382a-9256-5f9540bbc2d2,SESCO,II.1.1,Entre Rios,AR-E,annual,2013,gas oil combustion consumption by public passenger transport,509.36424,TJ,CO2,74100.0,kg/TJ,37743890.184,kg +5ebbba37-bcb8-3903-8a43-d7dba511f0b9,SESCO,II.1.1,Entre Rios,AR-E,annual,2013,gas oil combustion consumption by public passenger transport,509.36424,TJ,CH4,3.9,kg/TJ,1986.520536,kg +5ebbba37-bcb8-3903-8a43-d7dba511f0b9,SESCO,II.1.1,Entre Rios,AR-E,annual,2013,gas oil combustion consumption by public passenger transport,509.36424,TJ,N2O,3.9,kg/TJ,1986.520536,kg +e5ba1329-e077-3e84-8c50-708955122a74,SESCO,II.1.1,Formosa,AR-P,annual,2013,gas oil combustion consumption by public passenger transport,56.7084,TJ,CO2,74100.0,kg/TJ,4202092.4399999995,kg +d0cfa271-23ae-327e-921b-5582077f673c,SESCO,II.1.1,Formosa,AR-P,annual,2013,gas oil combustion consumption by public passenger transport,56.7084,TJ,CH4,3.9,kg/TJ,221.16276,kg +d0cfa271-23ae-327e-921b-5582077f673c,SESCO,II.1.1,Formosa,AR-P,annual,2013,gas oil combustion consumption by public passenger transport,56.7084,TJ,N2O,3.9,kg/TJ,221.16276,kg +16ff4046-67ce-3fcf-8a0c-961ff5f879ec,SESCO,II.1.1,Jujuy,AR-Y,annual,2013,gas oil combustion consumption by public passenger transport,508.35287999999997,TJ,CO2,74100.0,kg/TJ,37668948.408,kg +2085e291-b6c7-3581-afc0-39fc6f79739b,SESCO,II.1.1,Jujuy,AR-Y,annual,2013,gas oil combustion consumption by public passenger transport,508.35287999999997,TJ,CH4,3.9,kg/TJ,1982.576232,kg +2085e291-b6c7-3581-afc0-39fc6f79739b,SESCO,II.1.1,Jujuy,AR-Y,annual,2013,gas oil combustion consumption by public passenger transport,508.35287999999997,TJ,N2O,3.9,kg/TJ,1982.576232,kg +b178b0ce-7b97-3212-81e6-6b6ec5765244,SESCO,II.1.1,La Pampa,AR-L,annual,2013,gas oil combustion consumption by public passenger transport,27.993,TJ,CO2,74100.0,kg/TJ,2074281.2999999998,kg +b9025e38-f387-3518-bbeb-70b40709352c,SESCO,II.1.1,La Pampa,AR-L,annual,2013,gas oil combustion consumption by public passenger transport,27.993,TJ,CH4,3.9,kg/TJ,109.17269999999999,kg +b9025e38-f387-3518-bbeb-70b40709352c,SESCO,II.1.1,La Pampa,AR-L,annual,2013,gas oil combustion consumption by public passenger transport,27.993,TJ,N2O,3.9,kg/TJ,109.17269999999999,kg +f8c8975f-db1c-3819-b252-564a96ed831a,SESCO,II.1.1,La Rioja,AR-F,annual,2013,gas oil combustion consumption by public passenger transport,140.36232,TJ,CO2,74100.0,kg/TJ,10400847.912,kg +3eb6f0de-287f-386c-b7c8-929bcd2afde4,SESCO,II.1.1,La Rioja,AR-F,annual,2013,gas oil combustion consumption by public passenger transport,140.36232,TJ,CH4,3.9,kg/TJ,547.413048,kg +3eb6f0de-287f-386c-b7c8-929bcd2afde4,SESCO,II.1.1,La Rioja,AR-F,annual,2013,gas oil combustion consumption by public passenger transport,140.36232,TJ,N2O,3.9,kg/TJ,547.413048,kg +6afa0a92-037a-35b2-82b7-2cc81b85348f,SESCO,II.1.1,Mendoza,AR-M,annual,2013,gas oil combustion consumption by public passenger transport,1938.5242799999999,TJ,CO2,74100.0,kg/TJ,143644649.148,kg +1513baac-8136-3778-a1a8-80f92b4ebf51,SESCO,II.1.1,Mendoza,AR-M,annual,2013,gas oil combustion consumption by public passenger transport,1938.5242799999999,TJ,CH4,3.9,kg/TJ,7560.244691999999,kg +1513baac-8136-3778-a1a8-80f92b4ebf51,SESCO,II.1.1,Mendoza,AR-M,annual,2013,gas oil combustion consumption by public passenger transport,1938.5242799999999,TJ,N2O,3.9,kg/TJ,7560.244691999999,kg +3ffc474a-cad8-32a8-8e04-f4e8ff1a671a,SESCO,II.1.1,Misiones,AR-N,annual,2013,gas oil combustion consumption by public passenger transport,797.5296,TJ,CO2,74100.0,kg/TJ,59096943.36,kg +2a44a290-c061-3620-abda-239fe579f748,SESCO,II.1.1,Misiones,AR-N,annual,2013,gas oil combustion consumption by public passenger transport,797.5296,TJ,CH4,3.9,kg/TJ,3110.3654399999996,kg +2a44a290-c061-3620-abda-239fe579f748,SESCO,II.1.1,Misiones,AR-N,annual,2013,gas oil combustion consumption by public passenger transport,797.5296,TJ,N2O,3.9,kg/TJ,3110.3654399999996,kg +dde8c894-8317-3e10-b68c-c0ab5e142a9e,SESCO,II.1.1,Neuquén,AR-Q,annual,2013,gas oil combustion consumption by public passenger transport,290.65764,TJ,CO2,74100.0,kg/TJ,21537731.124,kg +95a5acb4-73d0-3f4b-9e7a-b4fc5d69f3b5,SESCO,II.1.1,Neuquén,AR-Q,annual,2013,gas oil combustion consumption by public passenger transport,290.65764,TJ,CH4,3.9,kg/TJ,1133.5647960000001,kg +95a5acb4-73d0-3f4b-9e7a-b4fc5d69f3b5,SESCO,II.1.1,Neuquén,AR-Q,annual,2013,gas oil combustion consumption by public passenger transport,290.65764,TJ,N2O,3.9,kg/TJ,1133.5647960000001,kg +9c719040-2606-39a7-822d-788b08e8495f,SESCO,II.1.1,Rio Negro,AR-R,annual,2013,gas oil combustion consumption by public passenger transport,167.5968,TJ,CO2,74100.0,kg/TJ,12418922.88,kg +8adb36de-3cf6-3123-b780-facd8859826c,SESCO,II.1.1,Rio Negro,AR-R,annual,2013,gas oil combustion consumption by public passenger transport,167.5968,TJ,CH4,3.9,kg/TJ,653.62752,kg +8adb36de-3cf6-3123-b780-facd8859826c,SESCO,II.1.1,Rio Negro,AR-R,annual,2013,gas oil combustion consumption by public passenger transport,167.5968,TJ,N2O,3.9,kg/TJ,653.62752,kg +be51c4b2-014d-36f9-a04e-437629f0ad9b,SESCO,II.1.1,Salta,AR-A,annual,2013,gas oil combustion consumption by public passenger transport,985.64256,TJ,CO2,74100.0,kg/TJ,73036113.696,kg +5546d149-c8a1-3307-a847-2fdc3d230a6e,SESCO,II.1.1,Salta,AR-A,annual,2013,gas oil combustion consumption by public passenger transport,985.64256,TJ,CH4,3.9,kg/TJ,3844.005984,kg +5546d149-c8a1-3307-a847-2fdc3d230a6e,SESCO,II.1.1,Salta,AR-A,annual,2013,gas oil combustion consumption by public passenger transport,985.64256,TJ,N2O,3.9,kg/TJ,3844.005984,kg +dd9f6be6-14f3-3827-87a5-cf055c6e497a,SESCO,II.1.1,San Juan,AR-J,annual,2013,gas oil combustion consumption by public passenger transport,488.73972,TJ,CO2,74100.0,kg/TJ,36215613.252,kg +e4ac59e1-297a-397c-a5d3-89bd6ee6da5b,SESCO,II.1.1,San Juan,AR-J,annual,2013,gas oil combustion consumption by public passenger transport,488.73972,TJ,CH4,3.9,kg/TJ,1906.0849079999998,kg +e4ac59e1-297a-397c-a5d3-89bd6ee6da5b,SESCO,II.1.1,San Juan,AR-J,annual,2013,gas oil combustion consumption by public passenger transport,488.73972,TJ,N2O,3.9,kg/TJ,1906.0849079999998,kg +576c4959-1404-37eb-a17f-a6ef28df26d2,SESCO,II.1.1,San Luis,AR-D,annual,2013,gas oil combustion consumption by public passenger transport,163.94868,TJ,CO2,74100.0,kg/TJ,12148597.188,kg +8f00eddd-8292-3dae-895f-c6a69e4f82ef,SESCO,II.1.1,San Luis,AR-D,annual,2013,gas oil combustion consumption by public passenger transport,163.94868,TJ,CH4,3.9,kg/TJ,639.399852,kg +8f00eddd-8292-3dae-895f-c6a69e4f82ef,SESCO,II.1.1,San Luis,AR-D,annual,2013,gas oil combustion consumption by public passenger transport,163.94868,TJ,N2O,3.9,kg/TJ,639.399852,kg +cd796fb8-6ac1-3ba5-b777-23ea902bff20,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2013,gas oil combustion consumption by public passenger transport,42.72996,TJ,CO2,74100.0,kg/TJ,3166290.036,kg +77392ee4-61d4-34da-8f70-459a0a297ff8,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2013,gas oil combustion consumption by public passenger transport,42.72996,TJ,CH4,3.9,kg/TJ,166.646844,kg +77392ee4-61d4-34da-8f70-459a0a297ff8,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2013,gas oil combustion consumption by public passenger transport,42.72996,TJ,N2O,3.9,kg/TJ,166.646844,kg +9757c54b-e3f1-3931-b6e4-2cbd788c5576,SESCO,II.1.1,Santa Fe,AR-S,annual,2013,gas oil combustion consumption by public passenger transport,1947.91548,TJ,CO2,74100.0,kg/TJ,144340537.068,kg +629eafcf-3712-3d9f-aa66-f79741d6685e,SESCO,II.1.1,Santa Fe,AR-S,annual,2013,gas oil combustion consumption by public passenger transport,1947.91548,TJ,CH4,3.9,kg/TJ,7596.870371999999,kg +629eafcf-3712-3d9f-aa66-f79741d6685e,SESCO,II.1.1,Santa Fe,AR-S,annual,2013,gas oil combustion consumption by public passenger transport,1947.91548,TJ,N2O,3.9,kg/TJ,7596.870371999999,kg +24fa1c91-c39f-3492-ac00-95253f352ce6,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2013,gas oil combustion consumption by public passenger transport,252.37044,TJ,CO2,74100.0,kg/TJ,18700649.604,kg +6ace1a6d-54b3-3152-b5fc-313109c1d33a,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2013,gas oil combustion consumption by public passenger transport,252.37044,TJ,CH4,3.9,kg/TJ,984.244716,kg +6ace1a6d-54b3-3152-b5fc-313109c1d33a,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2013,gas oil combustion consumption by public passenger transport,252.37044,TJ,N2O,3.9,kg/TJ,984.244716,kg +1cc19e33-0a41-32b5-8cdc-984b37919436,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2013,gas oil combustion consumption by public passenger transport,20.51616,TJ,CO2,74100.0,kg/TJ,1520247.456,kg +ed90706c-85da-3f64-a517-44f507a1ced0,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2013,gas oil combustion consumption by public passenger transport,20.51616,TJ,CH4,3.9,kg/TJ,80.013024,kg +ed90706c-85da-3f64-a517-44f507a1ced0,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2013,gas oil combustion consumption by public passenger transport,20.51616,TJ,N2O,3.9,kg/TJ,80.013024,kg +ef615512-e469-3af8-bd0d-c92d382afc7a,SESCO,II.1.1,Tucuman,AR-T,annual,2013,gas oil combustion consumption by public passenger transport,1452.7464,TJ,CO2,74100.0,kg/TJ,107648508.24,kg +b019049f-8cfd-3bec-b665-c5026428bff6,SESCO,II.1.1,Tucuman,AR-T,annual,2013,gas oil combustion consumption by public passenger transport,1452.7464,TJ,CH4,3.9,kg/TJ,5665.710959999999,kg +b019049f-8cfd-3bec-b665-c5026428bff6,SESCO,II.1.1,Tucuman,AR-T,annual,2013,gas oil combustion consumption by public passenger transport,1452.7464,TJ,N2O,3.9,kg/TJ,5665.710959999999,kg +0e0ca11e-d0f1-3e2c-8b86-290bab76f213,SESCO,II.1.1,Buenos Aires,AR-B,annual,2013,gas oil combustion consumption by public passenger transport,0.18059999999999998,TJ,CO2,74100.0,kg/TJ,13382.46,kg +86ff3cff-1134-39af-bd53-68845d9d94f5,SESCO,II.1.1,Buenos Aires,AR-B,annual,2013,gas oil combustion consumption by public passenger transport,0.18059999999999998,TJ,CH4,3.9,kg/TJ,0.70434,kg +86ff3cff-1134-39af-bd53-68845d9d94f5,SESCO,II.1.1,Buenos Aires,AR-B,annual,2013,gas oil combustion consumption by public passenger transport,0.18059999999999998,TJ,N2O,3.9,kg/TJ,0.70434,kg +6ff5d257-5139-3a1f-b90b-7a3b2c62076b,SESCO,II.1.1,Capital Federal,AR-C,annual,2014,gas oil combustion consumption by to the public,81.63119999999999,TJ,CO2,74100.0,kg/TJ,6048871.919999999,kg +b77f0963-e9cf-3740-9380-fbd2e88f0b0a,SESCO,II.1.1,Capital Federal,AR-C,annual,2014,gas oil combustion consumption by to the public,81.63119999999999,TJ,CH4,3.9,kg/TJ,318.36168,kg +b77f0963-e9cf-3740-9380-fbd2e88f0b0a,SESCO,II.1.1,Capital Federal,AR-C,annual,2014,gas oil combustion consumption by to the public,81.63119999999999,TJ,N2O,3.9,kg/TJ,318.36168,kg +ca490833-30cd-3430-90ab-2de81a2f70eb,SESCO,II.5.1,Buenos Aires,AR-B,annual,2014,gas oil combustion consumption by agriculture machines,136.30243199999998,TJ,CO2,74100.0,kg/TJ,10100010.211199999,kg +bb19dec5-0f29-3c52-b52b-16a0a65b95ce,SESCO,II.5.1,Buenos Aires,AR-B,annual,2014,gas oil combustion consumption by agriculture machines,136.30243199999998,TJ,CH4,3.9,kg/TJ,531.5794847999999,kg +bb19dec5-0f29-3c52-b52b-16a0a65b95ce,SESCO,II.5.1,Buenos Aires,AR-B,annual,2014,gas oil combustion consumption by agriculture machines,136.30243199999998,TJ,N2O,3.9,kg/TJ,531.5794847999999,kg +2fa39a91-7537-3adc-9851-4cc659f1bc8c,SESCO,II.5.1,Córdoba,AR-X,annual,2014,gas oil combustion consumption by agriculture machines,27.696816,TJ,CO2,74100.0,kg/TJ,2052334.0655999999,kg +2e810a27-26a8-3c3b-9efa-569dbfc3d981,SESCO,II.5.1,Córdoba,AR-X,annual,2014,gas oil combustion consumption by agriculture machines,27.696816,TJ,CH4,3.9,kg/TJ,108.0175824,kg +2e810a27-26a8-3c3b-9efa-569dbfc3d981,SESCO,II.5.1,Córdoba,AR-X,annual,2014,gas oil combustion consumption by agriculture machines,27.696816,TJ,N2O,3.9,kg/TJ,108.0175824,kg +7e9811e8-5eef-3020-96f9-c6f66aa4bab4,SESCO,II.5.1,Santa Fe,AR-S,annual,2014,gas oil combustion consumption by agriculture machines,427.96059599999995,TJ,CO2,74100.0,kg/TJ,31711880.163599998,kg +9a3e204b-3521-355d-ad52-ccfd39475c65,SESCO,II.5.1,Santa Fe,AR-S,annual,2014,gas oil combustion consumption by agriculture machines,427.96059599999995,TJ,CH4,3.9,kg/TJ,1669.0463243999998,kg +9a3e204b-3521-355d-ad52-ccfd39475c65,SESCO,II.5.1,Santa Fe,AR-S,annual,2014,gas oil combustion consumption by agriculture machines,427.96059599999995,TJ,N2O,3.9,kg/TJ,1669.0463243999998,kg +93a4490f-0047-32b2-84b9-583244175e82,SESCO,II.5.1,Buenos Aires,AR-B,annual,2014,gas oil combustion consumption by agriculture machines,1.69764,TJ,CO2,74100.0,kg/TJ,125795.124,kg +3f6112d4-a57c-38e9-ac4e-397c9c8bb3ff,SESCO,II.5.1,Buenos Aires,AR-B,annual,2014,gas oil combustion consumption by agriculture machines,1.69764,TJ,CH4,3.9,kg/TJ,6.620796,kg +3f6112d4-a57c-38e9-ac4e-397c9c8bb3ff,SESCO,II.5.1,Buenos Aires,AR-B,annual,2014,gas oil combustion consumption by agriculture machines,1.69764,TJ,N2O,3.9,kg/TJ,6.620796,kg +b9223b2c-07dc-3b6e-9fa4-121554515e86,SESCO,II.5.1,Córdoba,AR-X,annual,2014,gas oil combustion consumption by agriculture machines,2.85348,TJ,CO2,74100.0,kg/TJ,211442.868,kg +ba3b3d47-4a11-3a1a-bccc-89e8fd9cea81,SESCO,II.5.1,Córdoba,AR-X,annual,2014,gas oil combustion consumption by agriculture machines,2.85348,TJ,CH4,3.9,kg/TJ,11.128571999999998,kg +ba3b3d47-4a11-3a1a-bccc-89e8fd9cea81,SESCO,II.5.1,Córdoba,AR-X,annual,2014,gas oil combustion consumption by agriculture machines,2.85348,TJ,N2O,3.9,kg/TJ,11.128571999999998,kg +96ad1ba4-4434-3567-83a7-bb4d37870f8e,SESCO,II.5.1,Santa Fe,AR-S,annual,2014,gas oil combustion consumption by agriculture machines,9.965508,TJ,CO2,74100.0,kg/TJ,738444.1428,kg +ef63923c-dcd6-3b98-b033-fba58f9f24dc,SESCO,II.5.1,Santa Fe,AR-S,annual,2014,gas oil combustion consumption by agriculture machines,9.965508,TJ,CH4,3.9,kg/TJ,38.8654812,kg +ef63923c-dcd6-3b98-b033-fba58f9f24dc,SESCO,II.5.1,Santa Fe,AR-S,annual,2014,gas oil combustion consumption by agriculture machines,9.965508,TJ,N2O,3.9,kg/TJ,38.8654812,kg +8d505229-aab8-3610-a7f6-5e8c708d0786,SESCO,II.1.1,Buenos Aires,AR-B,annual,2014,gas oil combustion consumption by to the public,11302.964250648001,TJ,CO2,74100.0,kg/TJ,837549650.9730169,kg +d944d9a0-0fe0-3e21-b525-3ad50728e58b,SESCO,II.1.1,Buenos Aires,AR-B,annual,2014,gas oil combustion consumption by to the public,11302.964250648001,TJ,CH4,3.9,kg/TJ,44081.560577527205,kg +d944d9a0-0fe0-3e21-b525-3ad50728e58b,SESCO,II.1.1,Buenos Aires,AR-B,annual,2014,gas oil combustion consumption by to the public,11302.964250648001,TJ,N2O,3.9,kg/TJ,44081.560577527205,kg +b5e75af6-87c0-3b2f-b0f1-a976845e0e35,SESCO,II.1.1,Capital Federal,AR-C,annual,2014,gas oil combustion consumption by to the public,1291.6487510640002,TJ,CO2,74100.0,kg/TJ,95711172.45384242,kg +39b28bfc-7482-3518-9e07-abb5566008a4,SESCO,II.1.1,Capital Federal,AR-C,annual,2014,gas oil combustion consumption by to the public,1291.6487510640002,TJ,CH4,3.9,kg/TJ,5037.4301291496,kg +39b28bfc-7482-3518-9e07-abb5566008a4,SESCO,II.1.1,Capital Federal,AR-C,annual,2014,gas oil combustion consumption by to the public,1291.6487510640002,TJ,N2O,3.9,kg/TJ,5037.4301291496,kg +eb246d8a-2e44-312e-a846-88f90f039210,SESCO,II.1.1,Catamarca,AR-K,annual,2014,gas oil combustion consumption by to the public,412.43074059599996,TJ,CO2,74100.0,kg/TJ,30561117.8781636,kg +2892320e-dcff-3769-b68f-ac93a69ccd9c,SESCO,II.1.1,Catamarca,AR-K,annual,2014,gas oil combustion consumption by to the public,412.43074059599996,TJ,CH4,3.9,kg/TJ,1608.4798883243998,kg +2892320e-dcff-3769-b68f-ac93a69ccd9c,SESCO,II.1.1,Catamarca,AR-K,annual,2014,gas oil combustion consumption by to the public,412.43074059599996,TJ,N2O,3.9,kg/TJ,1608.4798883243998,kg +984be23e-27b4-35c8-a60d-87088c5024fd,SESCO,II.1.1,Chaco,AR-H,annual,2014,gas oil combustion consumption by to the public,360.065770596,TJ,CO2,74100.0,kg/TJ,26680873.6011636,kg +f8b96f8e-46c5-3a0b-9d4a-ff2679a27eb8,SESCO,II.1.1,Chaco,AR-H,annual,2014,gas oil combustion consumption by to the public,360.065770596,TJ,CH4,3.9,kg/TJ,1404.2565053244,kg +f8b96f8e-46c5-3a0b-9d4a-ff2679a27eb8,SESCO,II.1.1,Chaco,AR-H,annual,2014,gas oil combustion consumption by to the public,360.065770596,TJ,N2O,3.9,kg/TJ,1404.2565053244,kg +1ba28c5e-7ec3-3e89-a56e-c0895c20ad6a,SESCO,II.1.1,Chubut,AR-U,annual,2014,gas oil combustion consumption by to the public,517.254928512,TJ,CO2,74100.0,kg/TJ,38328590.2027392,kg +a7c96fe4-235c-38de-b2df-96b2790bc0d6,SESCO,II.1.1,Chubut,AR-U,annual,2014,gas oil combustion consumption by to the public,517.254928512,TJ,CH4,3.9,kg/TJ,2017.2942211968,kg +a7c96fe4-235c-38de-b2df-96b2790bc0d6,SESCO,II.1.1,Chubut,AR-U,annual,2014,gas oil combustion consumption by to the public,517.254928512,TJ,N2O,3.9,kg/TJ,2017.2942211968,kg +01b88500-6729-31f4-be98-8612e174fe9e,SESCO,II.1.1,Corrientes,AR-W,annual,2014,gas oil combustion consumption by to the public,423.642327192,TJ,CO2,74100.0,kg/TJ,31391896.444927197,kg +d74b2928-3106-3a4c-a379-782e686c14c7,SESCO,II.1.1,Corrientes,AR-W,annual,2014,gas oil combustion consumption by to the public,423.642327192,TJ,CH4,3.9,kg/TJ,1652.2050760487998,kg +d74b2928-3106-3a4c-a379-782e686c14c7,SESCO,II.1.1,Corrientes,AR-W,annual,2014,gas oil combustion consumption by to the public,423.642327192,TJ,N2O,3.9,kg/TJ,1652.2050760487998,kg +f69dc237-390f-34d2-b60d-85d465dbc091,SESCO,II.1.1,Córdoba,AR-X,annual,2014,gas oil combustion consumption by to the public,5002.757425764,TJ,CO2,74100.0,kg/TJ,370704325.24911237,kg +ac2bb13c-96c7-366f-b6d9-8049873d4b9b,SESCO,II.1.1,Córdoba,AR-X,annual,2014,gas oil combustion consumption by to the public,5002.757425764,TJ,CH4,3.9,kg/TJ,19510.7539604796,kg +ac2bb13c-96c7-366f-b6d9-8049873d4b9b,SESCO,II.1.1,Córdoba,AR-X,annual,2014,gas oil combustion consumption by to the public,5002.757425764,TJ,N2O,3.9,kg/TJ,19510.7539604796,kg +9fa4feff-0866-3cf5-93a0-7686277f4b5a,SESCO,II.1.1,Entre Rios,AR-E,annual,2014,gas oil combustion consumption by to the public,1381.766522052,TJ,CO2,74100.0,kg/TJ,102388899.2840532,kg +2bd0dc1d-e547-3ab4-b77f-0cbdfc39fc52,SESCO,II.1.1,Entre Rios,AR-E,annual,2014,gas oil combustion consumption by to the public,1381.766522052,TJ,CH4,3.9,kg/TJ,5388.8894360028,kg +2bd0dc1d-e547-3ab4-b77f-0cbdfc39fc52,SESCO,II.1.1,Entre Rios,AR-E,annual,2014,gas oil combustion consumption by to the public,1381.766522052,TJ,N2O,3.9,kg/TJ,5388.8894360028,kg +1512b2b3-b651-3153-adff-df53cf34bedd,SESCO,II.1.1,Formosa,AR-P,annual,2014,gas oil combustion consumption by to the public,396.61274872800004,TJ,CO2,74100.0,kg/TJ,29389004.680744804,kg +27032b26-82fc-3b1e-ae3e-292c4eef08be,SESCO,II.1.1,Formosa,AR-P,annual,2014,gas oil combustion consumption by to the public,396.61274872800004,TJ,CH4,3.9,kg/TJ,1546.7897200392001,kg +27032b26-82fc-3b1e-ae3e-292c4eef08be,SESCO,II.1.1,Formosa,AR-P,annual,2014,gas oil combustion consumption by to the public,396.61274872800004,TJ,N2O,3.9,kg/TJ,1546.7897200392001,kg +1045ae7a-867d-339f-872d-08dce97a0900,SESCO,II.1.1,Jujuy,AR-Y,annual,2014,gas oil combustion consumption by to the public,204.14421879600002,TJ,CO2,74100.0,kg/TJ,15127086.612783602,kg +765bf1ce-92e8-3d8a-b703-8f69a39ee827,SESCO,II.1.1,Jujuy,AR-Y,annual,2014,gas oil combustion consumption by to the public,204.14421879600002,TJ,CH4,3.9,kg/TJ,796.1624533044001,kg +765bf1ce-92e8-3d8a-b703-8f69a39ee827,SESCO,II.1.1,Jujuy,AR-Y,annual,2014,gas oil combustion consumption by to the public,204.14421879600002,TJ,N2O,3.9,kg/TJ,796.1624533044001,kg +66743a41-0687-34de-9fb1-181fb53890b6,SESCO,II.1.1,La Pampa,AR-L,annual,2014,gas oil combustion consumption by to the public,327.473506248,TJ,CO2,74100.0,kg/TJ,24265786.8129768,kg +e3653a96-f47a-37f4-b284-2af32ff92659,SESCO,II.1.1,La Pampa,AR-L,annual,2014,gas oil combustion consumption by to the public,327.473506248,TJ,CH4,3.9,kg/TJ,1277.1466743672,kg +e3653a96-f47a-37f4-b284-2af32ff92659,SESCO,II.1.1,La Pampa,AR-L,annual,2014,gas oil combustion consumption by to the public,327.473506248,TJ,N2O,3.9,kg/TJ,1277.1466743672,kg +9b5891b9-68e2-3492-977b-4e248668597d,SESCO,II.1.1,La Rioja,AR-F,annual,2014,gas oil combustion consumption by to the public,56.301316764,TJ,CO2,74100.0,kg/TJ,4171927.5722124,kg +2d8d08be-f435-3e55-805b-e70c4ea1a1e1,SESCO,II.1.1,La Rioja,AR-F,annual,2014,gas oil combustion consumption by to the public,56.301316764,TJ,CH4,3.9,kg/TJ,219.5751353796,kg +2d8d08be-f435-3e55-805b-e70c4ea1a1e1,SESCO,II.1.1,La Rioja,AR-F,annual,2014,gas oil combustion consumption by to the public,56.301316764,TJ,N2O,3.9,kg/TJ,219.5751353796,kg +8e92c08f-b8c0-3cff-b4b1-7df9df30d7bb,SESCO,II.1.1,Mendoza,AR-M,annual,2014,gas oil combustion consumption by to the public,393.39753776399994,TJ,CO2,74100.0,kg/TJ,29150757.548312396,kg +264d119a-2afd-3f1f-919c-ac366310c75f,SESCO,II.1.1,Mendoza,AR-M,annual,2014,gas oil combustion consumption by to the public,393.39753776399994,TJ,CH4,3.9,kg/TJ,1534.2503972795996,kg +264d119a-2afd-3f1f-919c-ac366310c75f,SESCO,II.1.1,Mendoza,AR-M,annual,2014,gas oil combustion consumption by to the public,393.39753776399994,TJ,N2O,3.9,kg/TJ,1534.2503972795996,kg +86391b8f-c691-3de8-b609-e92869ee5929,SESCO,II.1.1,Misiones,AR-N,annual,2014,gas oil combustion consumption by to the public,898.971236604,TJ,CO2,74100.0,kg/TJ,66613768.6323564,kg +d001240d-d396-3403-9fb6-45818232837f,SESCO,II.1.1,Misiones,AR-N,annual,2014,gas oil combustion consumption by to the public,898.971236604,TJ,CH4,3.9,kg/TJ,3505.9878227555996,kg +d001240d-d396-3403-9fb6-45818232837f,SESCO,II.1.1,Misiones,AR-N,annual,2014,gas oil combustion consumption by to the public,898.971236604,TJ,N2O,3.9,kg/TJ,3505.9878227555996,kg +7ea663d0-616a-367e-97f7-e65c07c62e7c,SESCO,II.1.1,Neuquén,AR-Q,annual,2014,gas oil combustion consumption by to the public,200.915408652,TJ,CO2,74100.0,kg/TJ,14887831.7811132,kg +a8657ac4-c331-3fb9-be43-446e9468ba7a,SESCO,II.1.1,Neuquén,AR-Q,annual,2014,gas oil combustion consumption by to the public,200.915408652,TJ,CH4,3.9,kg/TJ,783.5700937427999,kg +a8657ac4-c331-3fb9-be43-446e9468ba7a,SESCO,II.1.1,Neuquén,AR-Q,annual,2014,gas oil combustion consumption by to the public,200.915408652,TJ,N2O,3.9,kg/TJ,783.5700937427999,kg +b19eb90a-73b4-3c6b-89b5-57430d0ef795,SESCO,II.1.1,Rio Negro,AR-R,annual,2014,gas oil combustion consumption by to the public,678.987169728,TJ,CO2,74100.0,kg/TJ,50312949.2768448,kg +f81fc1ca-bc4d-344a-acb2-862f4f86ffe4,SESCO,II.1.1,Rio Negro,AR-R,annual,2014,gas oil combustion consumption by to the public,678.987169728,TJ,CH4,3.9,kg/TJ,2648.0499619392,kg +f81fc1ca-bc4d-344a-acb2-862f4f86ffe4,SESCO,II.1.1,Rio Negro,AR-R,annual,2014,gas oil combustion consumption by to the public,678.987169728,TJ,N2O,3.9,kg/TJ,2648.0499619392,kg +bfabe5d1-9e9b-3339-9549-59a4aef9e125,SESCO,II.1.1,Salta,AR-A,annual,2014,gas oil combustion consumption by to the public,48.464811864,TJ,CO2,74100.0,kg/TJ,3591242.5591224,kg +3c230931-8c2e-3a71-9c99-46c9cfd091c9,SESCO,II.1.1,Salta,AR-A,annual,2014,gas oil combustion consumption by to the public,48.464811864,TJ,CH4,3.9,kg/TJ,189.01276626959998,kg +3c230931-8c2e-3a71-9c99-46c9cfd091c9,SESCO,II.1.1,Salta,AR-A,annual,2014,gas oil combustion consumption by to the public,48.464811864,TJ,N2O,3.9,kg/TJ,189.01276626959998,kg +ccdd488c-22ea-3707-b66e-291ac531977a,SESCO,II.1.1,San Juan,AR-J,annual,2014,gas oil combustion consumption by to the public,439.294521036,TJ,CO2,74100.0,kg/TJ,32551724.0087676,kg +8ba14248-0062-3350-853a-b5ef357aa7f5,SESCO,II.1.1,San Juan,AR-J,annual,2014,gas oil combustion consumption by to the public,439.294521036,TJ,CH4,3.9,kg/TJ,1713.2486320404,kg +8ba14248-0062-3350-853a-b5ef357aa7f5,SESCO,II.1.1,San Juan,AR-J,annual,2014,gas oil combustion consumption by to the public,439.294521036,TJ,N2O,3.9,kg/TJ,1713.2486320404,kg +d7e1186f-93f1-3e26-bcce-41b42bb14d37,SESCO,II.1.1,San Luis,AR-D,annual,2014,gas oil combustion consumption by to the public,882.3518828040001,TJ,CO2,74100.0,kg/TJ,65382274.5157764,kg +0e8706e3-fef6-34e4-8d93-b627fa193065,SESCO,II.1.1,San Luis,AR-D,annual,2014,gas oil combustion consumption by to the public,882.3518828040001,TJ,CH4,3.9,kg/TJ,3441.1723429356,kg +0e8706e3-fef6-34e4-8d93-b627fa193065,SESCO,II.1.1,San Luis,AR-D,annual,2014,gas oil combustion consumption by to the public,882.3518828040001,TJ,N2O,3.9,kg/TJ,3441.1723429356,kg +4bbb299e-63ca-397e-9341-96715e3212fb,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2014,gas oil combustion consumption by to the public,306.592039404,TJ,CO2,74100.0,kg/TJ,22718470.119836397,kg +7550e27e-cfa7-3251-89db-b6f9dcd80082,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2014,gas oil combustion consumption by to the public,306.592039404,TJ,CH4,3.9,kg/TJ,1195.7089536756,kg +7550e27e-cfa7-3251-89db-b6f9dcd80082,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2014,gas oil combustion consumption by to the public,306.592039404,TJ,N2O,3.9,kg/TJ,1195.7089536756,kg +72bbb9d7-c4a0-31d6-adbc-9033c9c784a1,SESCO,II.1.1,Santa Fe,AR-S,annual,2014,gas oil combustion consumption by to the public,3716.675871972,TJ,CO2,74100.0,kg/TJ,275405682.1131252,kg +e943c935-0460-3faa-836a-e25f20825357,SESCO,II.1.1,Santa Fe,AR-S,annual,2014,gas oil combustion consumption by to the public,3716.675871972,TJ,CH4,3.9,kg/TJ,14495.0359006908,kg +e943c935-0460-3faa-836a-e25f20825357,SESCO,II.1.1,Santa Fe,AR-S,annual,2014,gas oil combustion consumption by to the public,3716.675871972,TJ,N2O,3.9,kg/TJ,14495.0359006908,kg +c5e16c9f-7783-30cb-9fe0-79a7a9666c79,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2014,gas oil combustion consumption by to the public,366.796049928,TJ,CO2,74100.0,kg/TJ,27179587.2996648,kg +b9aada16-f2ff-32ec-87a1-7fb381a42980,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2014,gas oil combustion consumption by to the public,366.796049928,TJ,CH4,3.9,kg/TJ,1430.5045947192,kg +b9aada16-f2ff-32ec-87a1-7fb381a42980,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2014,gas oil combustion consumption by to the public,366.796049928,TJ,N2O,3.9,kg/TJ,1430.5045947192,kg +365c15e2-b745-3b9e-9336-9067b946ec8b,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2014,gas oil combustion consumption by to the public,109.17681768,TJ,CO2,74100.0,kg/TJ,8090002.190088,kg +d702940a-9906-3c5a-88d9-1bbcdc9a261b,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2014,gas oil combustion consumption by to the public,109.17681768,TJ,CH4,3.9,kg/TJ,425.789588952,kg +d702940a-9906-3c5a-88d9-1bbcdc9a261b,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2014,gas oil combustion consumption by to the public,109.17681768,TJ,N2O,3.9,kg/TJ,425.789588952,kg +b7b2f3cf-f111-3b6a-bbc6-2bd7a1a2bf2c,SESCO,II.1.1,Tucuman,AR-T,annual,2014,gas oil combustion consumption by to the public,140.38040889599998,TJ,CO2,74100.0,kg/TJ,10402188.299193598,kg +57fa0e43-d4ce-3e54-907f-fb7b6ee2bff7,SESCO,II.1.1,Tucuman,AR-T,annual,2014,gas oil combustion consumption by to the public,140.38040889599998,TJ,CH4,3.9,kg/TJ,547.4835946943999,kg +57fa0e43-d4ce-3e54-907f-fb7b6ee2bff7,SESCO,II.1.1,Tucuman,AR-T,annual,2014,gas oil combustion consumption by to the public,140.38040889599998,TJ,N2O,3.9,kg/TJ,547.4835946943999,kg +c08cb4c8-3f85-3020-96f1-6f22d0d6e4d1,SESCO,II.1.1,Buenos Aires,AR-B,annual,2014,gas oil combustion consumption by to the public,2257.347281028,TJ,CO2,74100.0,kg/TJ,167269433.5241748,kg +a2641f37-c11a-350a-b8cc-3a484847f7b4,SESCO,II.1.1,Buenos Aires,AR-B,annual,2014,gas oil combustion consumption by to the public,2257.347281028,TJ,CH4,3.9,kg/TJ,8803.6543960092,kg +a2641f37-c11a-350a-b8cc-3a484847f7b4,SESCO,II.1.1,Buenos Aires,AR-B,annual,2014,gas oil combustion consumption by to the public,2257.347281028,TJ,N2O,3.9,kg/TJ,8803.6543960092,kg +e63065a9-4758-31b9-bf22-1815e645bee0,SESCO,II.1.1,Capital Federal,AR-C,annual,2014,gas oil combustion consumption by to the public,372.706249944,TJ,CO2,74100.0,kg/TJ,27617533.1208504,kg +3bfb5d95-f271-37c9-b66e-bd87a8721fef,SESCO,II.1.1,Capital Federal,AR-C,annual,2014,gas oil combustion consumption by to the public,372.706249944,TJ,CH4,3.9,kg/TJ,1453.5543747815998,kg +3bfb5d95-f271-37c9-b66e-bd87a8721fef,SESCO,II.1.1,Capital Federal,AR-C,annual,2014,gas oil combustion consumption by to the public,372.706249944,TJ,N2O,3.9,kg/TJ,1453.5543747815998,kg +f3f10a41-ed06-36de-a550-52805c3aeee6,SESCO,II.1.1,Catamarca,AR-K,annual,2014,gas oil combustion consumption by to the public,108.0293214,TJ,CO2,74100.0,kg/TJ,8004972.71574,kg +4b653800-a8ec-3db3-8c42-11e989691c10,SESCO,II.1.1,Catamarca,AR-K,annual,2014,gas oil combustion consumption by to the public,108.0293214,TJ,CH4,3.9,kg/TJ,421.31435346,kg +4b653800-a8ec-3db3-8c42-11e989691c10,SESCO,II.1.1,Catamarca,AR-K,annual,2014,gas oil combustion consumption by to the public,108.0293214,TJ,N2O,3.9,kg/TJ,421.31435346,kg +c801656e-21d0-3fe8-b50d-b0c8f861c0ef,SESCO,II.1.1,Chaco,AR-H,annual,2014,gas oil combustion consumption by to the public,80.10951135599998,TJ,CO2,74100.0,kg/TJ,5936114.791479599,kg +bb308dd2-2b8e-3f96-89e7-402ece85d366,SESCO,II.1.1,Chaco,AR-H,annual,2014,gas oil combustion consumption by to the public,80.10951135599998,TJ,CH4,3.9,kg/TJ,312.4270942883999,kg +bb308dd2-2b8e-3f96-89e7-402ece85d366,SESCO,II.1.1,Chaco,AR-H,annual,2014,gas oil combustion consumption by to the public,80.10951135599998,TJ,N2O,3.9,kg/TJ,312.4270942883999,kg +33936f85-bfdf-398b-a6b2-45fca47aa505,SESCO,II.1.1,Chubut,AR-U,annual,2014,gas oil combustion consumption by to the public,77.91763778400001,TJ,CO2,74100.0,kg/TJ,5773696.9597944,kg +4e0219e6-ad84-35c2-89f0-466b2ac50f5d,SESCO,II.1.1,Chubut,AR-U,annual,2014,gas oil combustion consumption by to the public,77.91763778400001,TJ,CH4,3.9,kg/TJ,303.8787873576,kg +4e0219e6-ad84-35c2-89f0-466b2ac50f5d,SESCO,II.1.1,Chubut,AR-U,annual,2014,gas oil combustion consumption by to the public,77.91763778400001,TJ,N2O,3.9,kg/TJ,303.8787873576,kg +b1a1e486-20f4-3354-9e23-e53f9e4e009c,SESCO,II.1.1,Corrientes,AR-W,annual,2014,gas oil combustion consumption by to the public,86.189475372,TJ,CO2,74100.0,kg/TJ,6386640.1250652,kg +76808553-4a50-3572-85b7-73fd3310c253,SESCO,II.1.1,Corrientes,AR-W,annual,2014,gas oil combustion consumption by to the public,86.189475372,TJ,CH4,3.9,kg/TJ,336.1389539508,kg +76808553-4a50-3572-85b7-73fd3310c253,SESCO,II.1.1,Corrientes,AR-W,annual,2014,gas oil combustion consumption by to the public,86.189475372,TJ,N2O,3.9,kg/TJ,336.1389539508,kg +b69435a6-61be-3e87-8283-b2584868ecab,SESCO,II.1.1,Córdoba,AR-X,annual,2014,gas oil combustion consumption by to the public,747.555947376,TJ,CO2,74100.0,kg/TJ,55393895.7005616,kg +6c5a8c64-d813-3a96-9856-5e70c2c533cb,SESCO,II.1.1,Córdoba,AR-X,annual,2014,gas oil combustion consumption by to the public,747.555947376,TJ,CH4,3.9,kg/TJ,2915.4681947664,kg +6c5a8c64-d813-3a96-9856-5e70c2c533cb,SESCO,II.1.1,Córdoba,AR-X,annual,2014,gas oil combustion consumption by to the public,747.555947376,TJ,N2O,3.9,kg/TJ,2915.4681947664,kg +d62f5e91-b6d7-33a8-90fe-af3339387758,SESCO,II.1.1,Entre Rios,AR-E,annual,2014,gas oil combustion consumption by to the public,303.59409385199996,TJ,CO2,74100.0,kg/TJ,22496322.354433198,kg +6b2a8140-9dd9-3fa4-81ee-23e74c1861cb,SESCO,II.1.1,Entre Rios,AR-E,annual,2014,gas oil combustion consumption by to the public,303.59409385199996,TJ,CH4,3.9,kg/TJ,1184.0169660227998,kg +6b2a8140-9dd9-3fa4-81ee-23e74c1861cb,SESCO,II.1.1,Entre Rios,AR-E,annual,2014,gas oil combustion consumption by to the public,303.59409385199996,TJ,N2O,3.9,kg/TJ,1184.0169660227998,kg +c48fa6ce-735c-32d4-aa36-476740a5b5ba,SESCO,II.1.1,Formosa,AR-P,annual,2014,gas oil combustion consumption by to the public,142.426299876,TJ,CO2,74100.0,kg/TJ,10553788.8208116,kg +951e0867-7685-3ba9-b61c-9f0d8594e2db,SESCO,II.1.1,Formosa,AR-P,annual,2014,gas oil combustion consumption by to the public,142.426299876,TJ,CH4,3.9,kg/TJ,555.4625695164,kg +951e0867-7685-3ba9-b61c-9f0d8594e2db,SESCO,II.1.1,Formosa,AR-P,annual,2014,gas oil combustion consumption by to the public,142.426299876,TJ,N2O,3.9,kg/TJ,555.4625695164,kg +ac441c0f-ed54-36d5-b8e0-25cf9767a4d8,SESCO,II.1.1,Jujuy,AR-Y,annual,2014,gas oil combustion consumption by to the public,25.534994268,TJ,CO2,74100.0,kg/TJ,1892143.0752587998,kg +28f0cfbc-fe5f-39f1-953e-c4b5bfcca110,SESCO,II.1.1,Jujuy,AR-Y,annual,2014,gas oil combustion consumption by to the public,25.534994268,TJ,CH4,3.9,kg/TJ,99.58647764519999,kg +28f0cfbc-fe5f-39f1-953e-c4b5bfcca110,SESCO,II.1.1,Jujuy,AR-Y,annual,2014,gas oil combustion consumption by to the public,25.534994268,TJ,N2O,3.9,kg/TJ,99.58647764519999,kg +fec0a83f-cbee-30f9-8342-78a54b6e4aa7,SESCO,II.1.1,La Pampa,AR-L,annual,2014,gas oil combustion consumption by to the public,82.77612092400001,TJ,CO2,74100.0,kg/TJ,6133710.560468401,kg +0cca3c45-bdc6-39ae-a78a-fd608abecf08,SESCO,II.1.1,La Pampa,AR-L,annual,2014,gas oil combustion consumption by to the public,82.77612092400001,TJ,CH4,3.9,kg/TJ,322.8268716036,kg +0cca3c45-bdc6-39ae-a78a-fd608abecf08,SESCO,II.1.1,La Pampa,AR-L,annual,2014,gas oil combustion consumption by to the public,82.77612092400001,TJ,N2O,3.9,kg/TJ,322.8268716036,kg +18eafecd-66fc-3452-a6be-874e0a5d5589,SESCO,II.1.1,La Rioja,AR-F,annual,2014,gas oil combustion consumption by to the public,34.230158256,TJ,CO2,74100.0,kg/TJ,2536454.7267696,kg +2519af8c-f09e-3c6a-8f8c-4d27c6ce0a35,SESCO,II.1.1,La Rioja,AR-F,annual,2014,gas oil combustion consumption by to the public,34.230158256,TJ,CH4,3.9,kg/TJ,133.4976171984,kg +2519af8c-f09e-3c6a-8f8c-4d27c6ce0a35,SESCO,II.1.1,La Rioja,AR-F,annual,2014,gas oil combustion consumption by to the public,34.230158256,TJ,N2O,3.9,kg/TJ,133.4976171984,kg +dfc86eb3-3b79-3bd3-a588-056481633cec,SESCO,II.1.1,Mendoza,AR-M,annual,2014,gas oil combustion consumption by to the public,166.329970464,TJ,CO2,74100.0,kg/TJ,12325050.811382402,kg +8e059022-6673-36a1-8fba-fc9469c05dbe,SESCO,II.1.1,Mendoza,AR-M,annual,2014,gas oil combustion consumption by to the public,166.329970464,TJ,CH4,3.9,kg/TJ,648.6868848096001,kg +8e059022-6673-36a1-8fba-fc9469c05dbe,SESCO,II.1.1,Mendoza,AR-M,annual,2014,gas oil combustion consumption by to the public,166.329970464,TJ,N2O,3.9,kg/TJ,648.6868848096001,kg +3497a13c-9360-3192-9507-f7f1dc9de6e4,SESCO,II.1.1,Misiones,AR-N,annual,2014,gas oil combustion consumption by to the public,148.086394176,TJ,CO2,74100.0,kg/TJ,10973201.8084416,kg +74a98ec9-6b2e-3463-9364-d94bb1d8671a,SESCO,II.1.1,Misiones,AR-N,annual,2014,gas oil combustion consumption by to the public,148.086394176,TJ,CH4,3.9,kg/TJ,577.5369372864,kg +74a98ec9-6b2e-3463-9364-d94bb1d8671a,SESCO,II.1.1,Misiones,AR-N,annual,2014,gas oil combustion consumption by to the public,148.086394176,TJ,N2O,3.9,kg/TJ,577.5369372864,kg +0af4c794-1f5d-3c6a-bdd6-5fd4ad211506,SESCO,II.1.1,Neuquén,AR-Q,annual,2014,gas oil combustion consumption by to the public,131.45026624800002,TJ,CO2,74100.0,kg/TJ,9740464.728976801,kg +810e3e9b-ce9d-3c3c-80e7-c5513a98eaa3,SESCO,II.1.1,Neuquén,AR-Q,annual,2014,gas oil combustion consumption by to the public,131.45026624800002,TJ,CH4,3.9,kg/TJ,512.6560383672,kg +810e3e9b-ce9d-3c3c-80e7-c5513a98eaa3,SESCO,II.1.1,Neuquén,AR-Q,annual,2014,gas oil combustion consumption by to the public,131.45026624800002,TJ,N2O,3.9,kg/TJ,512.6560383672,kg +600c1154-cd8f-3382-9faa-bf5d2221ae9f,SESCO,II.1.1,Rio Negro,AR-R,annual,2014,gas oil combustion consumption by to the public,190.82238982799998,TJ,CO2,74100.0,kg/TJ,14139939.0862548,kg +9be77640-cccb-34e5-9f15-1583510e1c6d,SESCO,II.1.1,Rio Negro,AR-R,annual,2014,gas oil combustion consumption by to the public,190.82238982799998,TJ,CH4,3.9,kg/TJ,744.2073203291999,kg +9be77640-cccb-34e5-9f15-1583510e1c6d,SESCO,II.1.1,Rio Negro,AR-R,annual,2014,gas oil combustion consumption by to the public,190.82238982799998,TJ,N2O,3.9,kg/TJ,744.2073203291999,kg +b044dbcc-79a3-35df-9037-0267096eb775,SESCO,II.1.1,Salta,AR-A,annual,2014,gas oil combustion consumption by to the public,13.073800152,TJ,CO2,74100.0,kg/TJ,968768.5912632,kg +25b82b28-567b-3314-b055-09e1711aaf30,SESCO,II.1.1,Salta,AR-A,annual,2014,gas oil combustion consumption by to the public,13.073800152,TJ,CH4,3.9,kg/TJ,50.9878205928,kg +25b82b28-567b-3314-b055-09e1711aaf30,SESCO,II.1.1,Salta,AR-A,annual,2014,gas oil combustion consumption by to the public,13.073800152,TJ,N2O,3.9,kg/TJ,50.9878205928,kg +2f961b99-5f2a-3f25-a9f8-f7ff4145c227,SESCO,II.1.1,San Juan,AR-J,annual,2014,gas oil combustion consumption by to the public,69.212649156,TJ,CO2,74100.0,kg/TJ,5128657.302459599,kg +edd540cc-63bc-3961-a60d-87db1fcd94ec,SESCO,II.1.1,San Juan,AR-J,annual,2014,gas oil combustion consumption by to the public,69.212649156,TJ,CH4,3.9,kg/TJ,269.92933170839996,kg +edd540cc-63bc-3961-a60d-87db1fcd94ec,SESCO,II.1.1,San Juan,AR-J,annual,2014,gas oil combustion consumption by to the public,69.212649156,TJ,N2O,3.9,kg/TJ,269.92933170839996,kg +70174638-ad03-3f5c-8b01-857fe5e8913c,SESCO,II.1.1,San Luis,AR-D,annual,2014,gas oil combustion consumption by to the public,156.265963224,TJ,CO2,74100.0,kg/TJ,11579307.874898398,kg +a1b0c0ef-0d16-36bc-97ef-6cb9f3c9754f,SESCO,II.1.1,San Luis,AR-D,annual,2014,gas oil combustion consumption by to the public,156.265963224,TJ,CH4,3.9,kg/TJ,609.4372565735999,kg +a1b0c0ef-0d16-36bc-97ef-6cb9f3c9754f,SESCO,II.1.1,San Luis,AR-D,annual,2014,gas oil combustion consumption by to the public,156.265963224,TJ,N2O,3.9,kg/TJ,609.4372565735999,kg +94f7dba4-5361-38ec-9438-a03652b7078b,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2014,gas oil combustion consumption by to the public,72.87427081199999,TJ,CO2,74100.0,kg/TJ,5399983.467169199,kg +fb450090-7a1a-3520-8246-11dab8a5ae17,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2014,gas oil combustion consumption by to the public,72.87427081199999,TJ,CH4,3.9,kg/TJ,284.20965616679996,kg +fb450090-7a1a-3520-8246-11dab8a5ae17,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2014,gas oil combustion consumption by to the public,72.87427081199999,TJ,N2O,3.9,kg/TJ,284.20965616679996,kg +b08cc2ac-9353-3b6e-9940-fb3c19e86bde,SESCO,II.1.1,Santa Fe,AR-S,annual,2014,gas oil combustion consumption by to the public,686.1634046400001,TJ,CO2,74100.0,kg/TJ,50844708.283824004,kg +8e01a94a-9d36-39b4-8a06-3eef93aa0297,SESCO,II.1.1,Santa Fe,AR-S,annual,2014,gas oil combustion consumption by to the public,686.1634046400001,TJ,CH4,3.9,kg/TJ,2676.037278096,kg +8e01a94a-9d36-39b4-8a06-3eef93aa0297,SESCO,II.1.1,Santa Fe,AR-S,annual,2014,gas oil combustion consumption by to the public,686.1634046400001,TJ,N2O,3.9,kg/TJ,2676.037278096,kg +acb435e3-a7fb-36f3-99a0-2bfdf32712d3,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2014,gas oil combustion consumption by to the public,114.505839672,TJ,CO2,74100.0,kg/TJ,8484882.7196952,kg +23700462-8618-3f19-8b88-d3af9c316f22,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2014,gas oil combustion consumption by to the public,114.505839672,TJ,CH4,3.9,kg/TJ,446.57277472079994,kg +23700462-8618-3f19-8b88-d3af9c316f22,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2014,gas oil combustion consumption by to the public,114.505839672,TJ,N2O,3.9,kg/TJ,446.57277472079994,kg +491fe057-e96e-3506-8aaa-dbed9e1b864d,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2014,gas oil combustion consumption by to the public,58.987958483999996,TJ,CO2,74100.0,kg/TJ,4371007.7236644,kg +3e0f0ae8-c6c4-384d-a4a1-38e7568cb436,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2014,gas oil combustion consumption by to the public,58.987958483999996,TJ,CH4,3.9,kg/TJ,230.0530380876,kg +3e0f0ae8-c6c4-384d-a4a1-38e7568cb436,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2014,gas oil combustion consumption by to the public,58.987958483999996,TJ,N2O,3.9,kg/TJ,230.0530380876,kg +8443d4f0-ad29-35f1-a45e-45b04f0e2ea4,SESCO,II.1.1,Tucuman,AR-T,annual,2014,gas oil combustion consumption by to the public,24.270696744,TJ,CO2,74100.0,kg/TJ,1798458.6287304,kg +9e117ab0-2557-3b62-a630-7865a1c90c79,SESCO,II.1.1,Tucuman,AR-T,annual,2014,gas oil combustion consumption by to the public,24.270696744,TJ,CH4,3.9,kg/TJ,94.65571730159999,kg +9e117ab0-2557-3b62-a630-7865a1c90c79,SESCO,II.1.1,Tucuman,AR-T,annual,2014,gas oil combustion consumption by to the public,24.270696744,TJ,N2O,3.9,kg/TJ,94.65571730159999,kg +12b6e568-446d-3082-8c43-aa525bcb422e,SESCO,II.1.1,Buenos Aires,AR-B,annual,2014,jet kerosene combustion consumption by to the public,8.932652,TJ,CO2,71500.0,kg/TJ,638684.6179999999,kg +778c31dd-8ec0-343d-bad4-905df13b70e3,SESCO,II.1.1,Buenos Aires,AR-B,annual,2014,jet kerosene combustion consumption by to the public,8.932652,TJ,CH4,0.5,kg/TJ,4.466326,kg +8b4d8424-c2d8-3f17-bb29-f6743194e59b,SESCO,II.1.1,Buenos Aires,AR-B,annual,2014,jet kerosene combustion consumption by to the public,8.932652,TJ,N2O,2.0,kg/TJ,17.865304,kg +d4ad1af5-1e77-34d2-86fd-7acf48446d10,SESCO,II.1.1,Córdoba,AR-X,annual,2014,jet kerosene combustion consumption by to the public,2.4847869999999994,TJ,CO2,71500.0,kg/TJ,177662.27049999996,kg +a13abc8c-beae-3cb8-87e8-edc6ab5b67ae,SESCO,II.1.1,Córdoba,AR-X,annual,2014,jet kerosene combustion consumption by to the public,2.4847869999999994,TJ,CH4,0.5,kg/TJ,1.2423934999999997,kg +2dadac96-f2cb-3b12-9ff4-cfadc70756f7,SESCO,II.1.1,Córdoba,AR-X,annual,2014,jet kerosene combustion consumption by to the public,2.4847869999999994,TJ,N2O,2.0,kg/TJ,4.969573999999999,kg +d24ca53e-4c3b-349f-b3c6-3d49173085c3,SESCO,II.1.1,Entre Rios,AR-E,annual,2014,jet kerosene combustion consumption by to the public,2.1702569999999994,TJ,CO2,71500.0,kg/TJ,155173.37549999997,kg +d038b9e9-6b68-324f-9702-5e205589328b,SESCO,II.1.1,Entre Rios,AR-E,annual,2014,jet kerosene combustion consumption by to the public,2.1702569999999994,TJ,CH4,0.5,kg/TJ,1.0851284999999997,kg +f17be1a6-0e36-34a6-9112-10d0da5c5647,SESCO,II.1.1,Entre Rios,AR-E,annual,2014,jet kerosene combustion consumption by to the public,2.1702569999999994,TJ,N2O,2.0,kg/TJ,4.340513999999999,kg +43ce6b81-84e9-3d14-9b3d-895697be0d64,SESCO,II.1.1,Mendoza,AR-M,annual,2014,jet kerosene combustion consumption by to the public,0.157265,TJ,CO2,71500.0,kg/TJ,11244.447499999998,kg +6854e353-c525-3968-98e1-57d136212235,SESCO,II.1.1,Mendoza,AR-M,annual,2014,jet kerosene combustion consumption by to the public,0.157265,TJ,CH4,0.5,kg/TJ,0.0786325,kg +b2657b9f-dd87-360c-a6dd-8e846c102a8f,SESCO,II.1.1,Mendoza,AR-M,annual,2014,jet kerosene combustion consumption by to the public,0.157265,TJ,N2O,2.0,kg/TJ,0.31453,kg +e66c28f0-7e40-372f-a5a8-c935df277fd4,SESCO,II.1.1,Misiones,AR-N,annual,2014,jet kerosene combustion consumption by to the public,0.62906,TJ,CO2,71500.0,kg/TJ,44977.78999999999,kg +6837d2da-a8e8-32e0-85df-7823659a37f1,SESCO,II.1.1,Misiones,AR-N,annual,2014,jet kerosene combustion consumption by to the public,0.62906,TJ,CH4,0.5,kg/TJ,0.31453,kg +39e3e3e2-3b55-3ad6-a3d7-f7cc125fc28c,SESCO,II.1.1,Misiones,AR-N,annual,2014,jet kerosene combustion consumption by to the public,0.62906,TJ,N2O,2.0,kg/TJ,1.25812,kg +86168535-51f7-39db-b354-b3aeb01c8244,SESCO,II.1.1,Santa Fe,AR-S,annual,2014,jet kerosene combustion consumption by to the public,4.025983999999999,TJ,CO2,71500.0,kg/TJ,287857.85599999997,kg +6cac0084-c573-3e94-a0cc-0f6e231365b8,SESCO,II.1.1,Santa Fe,AR-S,annual,2014,jet kerosene combustion consumption by to the public,4.025983999999999,TJ,CH4,0.5,kg/TJ,2.0129919999999997,kg +05f2d69e-479a-3722-95ec-0b39c15cf30b,SESCO,II.1.1,Santa Fe,AR-S,annual,2014,jet kerosene combustion consumption by to the public,4.025983999999999,TJ,N2O,2.0,kg/TJ,8.051967999999999,kg +b60133f6-96f8-3320-a66b-e40b6b00ce6f,SESCO,I.3.1,Buenos Aires,AR-B,annual,2014,gasoline combustion consumption by petrochemical industries,31.6745,TJ,CO2,69300.0,kg/TJ,2195042.85,kg +c902aff5-9304-3616-9583-bb71ae6d20d0,SESCO,I.3.1,Buenos Aires,AR-B,annual,2014,gasoline combustion consumption by petrochemical industries,31.6745,TJ,CH4,33.0,kg/TJ,1045.2585,kg +1804636a-e7f8-32d7-bef1-f7ae115f6552,SESCO,I.3.1,Buenos Aires,AR-B,annual,2014,gasoline combustion consumption by petrochemical industries,31.6745,TJ,N2O,3.2,kg/TJ,101.3584,kg +3e763863-b8fb-3fe5-9af7-4eff1a290ac4,SESCO,I.3.1,Buenos Aires,AR-B,annual,2014,gas oil combustion consumption by petrochemical industries,33.48324,TJ,CO2,74100.0,kg/TJ,2481108.0840000003,kg +341db6b1-9732-32ac-8386-60d5b7602a91,SESCO,I.3.1,Buenos Aires,AR-B,annual,2014,gas oil combustion consumption by petrochemical industries,33.48324,TJ,CH4,3.9,kg/TJ,130.58463600000002,kg +341db6b1-9732-32ac-8386-60d5b7602a91,SESCO,I.3.1,Buenos Aires,AR-B,annual,2014,gas oil combustion consumption by petrochemical industries,33.48324,TJ,N2O,3.9,kg/TJ,130.58463600000002,kg +27b492ea-0872-3090-8296-ab9685f662d1,SESCO,II.1.1,Buenos Aires,AR-B,annual,2014,gas oil combustion consumption by freight transport,1349.8181255999998,TJ,CO2,74100.0,kg/TJ,100021523.10695998,kg +042d18d9-d0cc-3877-9c1a-3aed377e4d95,SESCO,II.1.1,Buenos Aires,AR-B,annual,2014,gas oil combustion consumption by freight transport,1349.8181255999998,TJ,CH4,3.9,kg/TJ,5264.290689839999,kg +042d18d9-d0cc-3877-9c1a-3aed377e4d95,SESCO,II.1.1,Buenos Aires,AR-B,annual,2014,gas oil combustion consumption by freight transport,1349.8181255999998,TJ,N2O,3.9,kg/TJ,5264.290689839999,kg +d8465c4a-5115-385c-bbdb-4e6562cc5049,SESCO,II.1.1,Capital Federal,AR-C,annual,2014,gas oil combustion consumption by freight transport,441.88124400000004,TJ,CO2,74100.0,kg/TJ,32743400.180400003,kg +62ddf26c-d947-3682-8d6a-dc687a2d062d,SESCO,II.1.1,Capital Federal,AR-C,annual,2014,gas oil combustion consumption by freight transport,441.88124400000004,TJ,CH4,3.9,kg/TJ,1723.3368516,kg +62ddf26c-d947-3682-8d6a-dc687a2d062d,SESCO,II.1.1,Capital Federal,AR-C,annual,2014,gas oil combustion consumption by freight transport,441.88124400000004,TJ,N2O,3.9,kg/TJ,1723.3368516,kg +b6a3402b-0578-3767-8316-1a901f65832f,SESCO,II.1.1,Catamarca,AR-K,annual,2014,gas oil combustion consumption by freight transport,10.07748,TJ,CO2,74100.0,kg/TJ,746741.2679999999,kg +f9585115-c258-3f10-ac3e-da5bcda51eb1,SESCO,II.1.1,Catamarca,AR-K,annual,2014,gas oil combustion consumption by freight transport,10.07748,TJ,CH4,3.9,kg/TJ,39.302172,kg +f9585115-c258-3f10-ac3e-da5bcda51eb1,SESCO,II.1.1,Catamarca,AR-K,annual,2014,gas oil combustion consumption by freight transport,10.07748,TJ,N2O,3.9,kg/TJ,39.302172,kg +7de89f6f-fdf2-3e1b-87b3-dc0e34a52293,SESCO,II.1.1,Chaco,AR-H,annual,2014,gas oil combustion consumption by freight transport,29.6194836,TJ,CO2,74100.0,kg/TJ,2194803.73476,kg +59dce0c4-82c1-31fe-ac29-26d1e2718c38,SESCO,II.1.1,Chaco,AR-H,annual,2014,gas oil combustion consumption by freight transport,29.6194836,TJ,CH4,3.9,kg/TJ,115.51598603999999,kg +59dce0c4-82c1-31fe-ac29-26d1e2718c38,SESCO,II.1.1,Chaco,AR-H,annual,2014,gas oil combustion consumption by freight transport,29.6194836,TJ,N2O,3.9,kg/TJ,115.51598603999999,kg +1f50a6fe-6f67-30b8-911f-99863e22a440,SESCO,II.1.1,Chubut,AR-U,annual,2014,gas oil combustion consumption by freight transport,0.5894784,TJ,CO2,74100.0,kg/TJ,43680.34944,kg +896db00a-8c5c-36b2-96bc-cfa38c773e00,SESCO,II.1.1,Chubut,AR-U,annual,2014,gas oil combustion consumption by freight transport,0.5894784,TJ,CH4,3.9,kg/TJ,2.2989657599999997,kg +896db00a-8c5c-36b2-96bc-cfa38c773e00,SESCO,II.1.1,Chubut,AR-U,annual,2014,gas oil combustion consumption by freight transport,0.5894784,TJ,N2O,3.9,kg/TJ,2.2989657599999997,kg +526d19d9-8722-34df-9cff-9fa0028aee7e,SESCO,II.1.1,Corrientes,AR-W,annual,2014,gas oil combustion consumption by freight transport,66.164616,TJ,CO2,74100.0,kg/TJ,4902798.0456,kg +c8d519a2-9ec5-3450-8c50-a98bd591076c,SESCO,II.1.1,Corrientes,AR-W,annual,2014,gas oil combustion consumption by freight transport,66.164616,TJ,CH4,3.9,kg/TJ,258.0420024,kg +c8d519a2-9ec5-3450-8c50-a98bd591076c,SESCO,II.1.1,Corrientes,AR-W,annual,2014,gas oil combustion consumption by freight transport,66.164616,TJ,N2O,3.9,kg/TJ,258.0420024,kg +76b62f08-a824-3a17-b8c9-f28f1ab230d9,SESCO,II.1.1,Córdoba,AR-X,annual,2014,gas oil combustion consumption by freight transport,123.5011428,TJ,CO2,74100.0,kg/TJ,9151434.68148,kg +657b621e-89d7-395d-abee-ae9f93723734,SESCO,II.1.1,Córdoba,AR-X,annual,2014,gas oil combustion consumption by freight transport,123.5011428,TJ,CH4,3.9,kg/TJ,481.65445692,kg +657b621e-89d7-395d-abee-ae9f93723734,SESCO,II.1.1,Córdoba,AR-X,annual,2014,gas oil combustion consumption by freight transport,123.5011428,TJ,N2O,3.9,kg/TJ,481.65445692,kg +ffe1703d-04b1-39f4-9cc5-5906f9015f21,SESCO,II.1.1,Entre Rios,AR-E,annual,2014,gas oil combustion consumption by freight transport,57.6666636,TJ,CO2,74100.0,kg/TJ,4273099.77276,kg +3ff11043-f29c-3167-8018-717b326c0734,SESCO,II.1.1,Entre Rios,AR-E,annual,2014,gas oil combustion consumption by freight transport,57.6666636,TJ,CH4,3.9,kg/TJ,224.89998803999998,kg +3ff11043-f29c-3167-8018-717b326c0734,SESCO,II.1.1,Entre Rios,AR-E,annual,2014,gas oil combustion consumption by freight transport,57.6666636,TJ,N2O,3.9,kg/TJ,224.89998803999998,kg +d57ebe41-a5ee-39e2-b91f-d38d932ec763,SESCO,II.1.1,Formosa,AR-P,annual,2014,gas oil combustion consumption by freight transport,1.95048,TJ,CO2,74100.0,kg/TJ,144530.568,kg +974a0719-5c10-36c1-ae11-b7d63b0b84ba,SESCO,II.1.1,Formosa,AR-P,annual,2014,gas oil combustion consumption by freight transport,1.95048,TJ,CH4,3.9,kg/TJ,7.606872,kg +974a0719-5c10-36c1-ae11-b7d63b0b84ba,SESCO,II.1.1,Formosa,AR-P,annual,2014,gas oil combustion consumption by freight transport,1.95048,TJ,N2O,3.9,kg/TJ,7.606872,kg +e9151dd4-e5c9-369f-be06-bd10a536d9e5,SESCO,II.1.1,La Pampa,AR-L,annual,2014,gas oil combustion consumption by freight transport,7.5335484,TJ,CO2,74100.0,kg/TJ,558235.93644,kg +7409dd02-792b-38b8-9331-390f33d58c86,SESCO,II.1.1,La Pampa,AR-L,annual,2014,gas oil combustion consumption by freight transport,7.5335484,TJ,CH4,3.9,kg/TJ,29.38083876,kg +7409dd02-792b-38b8-9331-390f33d58c86,SESCO,II.1.1,La Pampa,AR-L,annual,2014,gas oil combustion consumption by freight transport,7.5335484,TJ,N2O,3.9,kg/TJ,29.38083876,kg +e6e8bc9e-cacb-3a53-8d7d-776114be171e,SESCO,II.1.1,Mendoza,AR-M,annual,2014,gas oil combustion consumption by freight transport,19.4639844,TJ,CO2,74100.0,kg/TJ,1442281.24404,kg +d30cb497-2383-3f18-9216-ee9ee988f1f9,SESCO,II.1.1,Mendoza,AR-M,annual,2014,gas oil combustion consumption by freight transport,19.4639844,TJ,CH4,3.9,kg/TJ,75.90953916000001,kg +d30cb497-2383-3f18-9216-ee9ee988f1f9,SESCO,II.1.1,Mendoza,AR-M,annual,2014,gas oil combustion consumption by freight transport,19.4639844,TJ,N2O,3.9,kg/TJ,75.90953916000001,kg +f20a7f1e-7979-39ae-a2eb-ea71e37fd86f,SESCO,II.1.1,Misiones,AR-N,annual,2014,gas oil combustion consumption by freight transport,24.7039128,TJ,CO2,74100.0,kg/TJ,1830559.93848,kg +022556e5-1a53-3a0d-a047-bfd938e0dac9,SESCO,II.1.1,Misiones,AR-N,annual,2014,gas oil combustion consumption by freight transport,24.7039128,TJ,CH4,3.9,kg/TJ,96.34525992,kg +022556e5-1a53-3a0d-a047-bfd938e0dac9,SESCO,II.1.1,Misiones,AR-N,annual,2014,gas oil combustion consumption by freight transport,24.7039128,TJ,N2O,3.9,kg/TJ,96.34525992,kg +eab5c455-365c-3389-b240-dc6ee2698791,SESCO,II.1.1,Rio Negro,AR-R,annual,2014,gas oil combustion consumption by freight transport,18.99912,TJ,CO2,74100.0,kg/TJ,1407834.7920000001,kg +5cc0e774-066d-3f40-9f1a-422d17972052,SESCO,II.1.1,Rio Negro,AR-R,annual,2014,gas oil combustion consumption by freight transport,18.99912,TJ,CH4,3.9,kg/TJ,74.096568,kg +5cc0e774-066d-3f40-9f1a-422d17972052,SESCO,II.1.1,Rio Negro,AR-R,annual,2014,gas oil combustion consumption by freight transport,18.99912,TJ,N2O,3.9,kg/TJ,74.096568,kg +6cb60035-5cf4-3f22-b8c1-27c66737948d,SESCO,II.1.1,Salta,AR-A,annual,2014,gas oil combustion consumption by freight transport,0.502068,TJ,CO2,74100.0,kg/TJ,37203.2388,kg +14b7f838-135b-33b5-b1e4-8081ab18861e,SESCO,II.1.1,Salta,AR-A,annual,2014,gas oil combustion consumption by freight transport,0.502068,TJ,CH4,3.9,kg/TJ,1.9580651999999998,kg +14b7f838-135b-33b5-b1e4-8081ab18861e,SESCO,II.1.1,Salta,AR-A,annual,2014,gas oil combustion consumption by freight transport,0.502068,TJ,N2O,3.9,kg/TJ,1.9580651999999998,kg +1fb67c8c-938a-3fc3-a7d7-bb06e8a3d558,SESCO,II.1.1,San Juan,AR-J,annual,2014,gas oil combustion consumption by freight transport,10.2837252,TJ,CO2,74100.0,kg/TJ,762024.0373199999,kg +b2f096a6-f5cd-303f-85a3-8ea23596ff0b,SESCO,II.1.1,San Juan,AR-J,annual,2014,gas oil combustion consumption by freight transport,10.2837252,TJ,CH4,3.9,kg/TJ,40.10652828,kg +b2f096a6-f5cd-303f-85a3-8ea23596ff0b,SESCO,II.1.1,San Juan,AR-J,annual,2014,gas oil combustion consumption by freight transport,10.2837252,TJ,N2O,3.9,kg/TJ,40.10652828,kg +83a002e7-c7f6-3e34-a2f0-5e08098b13bd,SESCO,II.1.1,San Luis,AR-D,annual,2014,gas oil combustion consumption by freight transport,55.52005199999999,TJ,CO2,74100.0,kg/TJ,4114035.8531999993,kg +953edff4-413e-38b9-901b-a54fb1f1eb1d,SESCO,II.1.1,San Luis,AR-D,annual,2014,gas oil combustion consumption by freight transport,55.52005199999999,TJ,CH4,3.9,kg/TJ,216.52820279999997,kg +953edff4-413e-38b9-901b-a54fb1f1eb1d,SESCO,II.1.1,San Luis,AR-D,annual,2014,gas oil combustion consumption by freight transport,55.52005199999999,TJ,N2O,3.9,kg/TJ,216.52820279999997,kg +16adf4aa-5c0e-30bc-adcb-6ad01485dffc,SESCO,II.1.1,Santa Fe,AR-S,annual,2014,gas oil combustion consumption by freight transport,349.59500519999995,TJ,CO2,74100.0,kg/TJ,25904989.885319997,kg +834e92f8-a7d7-3fbc-b412-9458c74ce811,SESCO,II.1.1,Santa Fe,AR-S,annual,2014,gas oil combustion consumption by freight transport,349.59500519999995,TJ,CH4,3.9,kg/TJ,1363.4205202799997,kg +834e92f8-a7d7-3fbc-b412-9458c74ce811,SESCO,II.1.1,Santa Fe,AR-S,annual,2014,gas oil combustion consumption by freight transport,349.59500519999995,TJ,N2O,3.9,kg/TJ,1363.4205202799997,kg +54a02b3b-668e-3f12-8d6a-aa004af83b1b,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2014,gas oil combustion consumption by freight transport,6.797783999999999,TJ,CO2,74100.0,kg/TJ,503715.79439999996,kg +6ac48aed-0cf4-3858-950f-607a4f58cbd2,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2014,gas oil combustion consumption by freight transport,6.797783999999999,TJ,CH4,3.9,kg/TJ,26.511357599999997,kg +6ac48aed-0cf4-3858-950f-607a4f58cbd2,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2014,gas oil combustion consumption by freight transport,6.797783999999999,TJ,N2O,3.9,kg/TJ,26.511357599999997,kg +45ba0f41-8b9e-3500-a699-0f8f27bf6613,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2014,gas oil combustion consumption by freight transport,1.9569816,TJ,CO2,74100.0,kg/TJ,145012.33656,kg +a5fde8a0-13bb-3707-b8b2-6635454b3548,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2014,gas oil combustion consumption by freight transport,1.9569816,TJ,CH4,3.9,kg/TJ,7.63222824,kg +a5fde8a0-13bb-3707-b8b2-6635454b3548,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2014,gas oil combustion consumption by freight transport,1.9569816,TJ,N2O,3.9,kg/TJ,7.63222824,kg +e778578b-acc0-3bb0-b2a6-5414851ac396,SESCO,II.1.1,Tucuman,AR-T,annual,2014,gas oil combustion consumption by freight transport,37.034558399999995,TJ,CO2,74100.0,kg/TJ,2744260.7774399994,kg +37ceb41b-bff3-36f7-b2d8-5bbdf748bc6d,SESCO,II.1.1,Tucuman,AR-T,annual,2014,gas oil combustion consumption by freight transport,37.034558399999995,TJ,CH4,3.9,kg/TJ,144.43477775999997,kg +37ceb41b-bff3-36f7-b2d8-5bbdf748bc6d,SESCO,II.1.1,Tucuman,AR-T,annual,2014,gas oil combustion consumption by freight transport,37.034558399999995,TJ,N2O,3.9,kg/TJ,144.43477775999997,kg +d344dd10-a230-3c09-95d6-5ff631090c77,SESCO,II.1.1,Buenos Aires,AR-B,annual,2014,gas oil combustion consumption by freight transport,27.1091436,TJ,CO2,74100.0,kg/TJ,2008787.54076,kg +b13df2f7-f10d-3790-ab37-4a52bb1a1e5f,SESCO,II.1.1,Buenos Aires,AR-B,annual,2014,gas oil combustion consumption by freight transport,27.1091436,TJ,CH4,3.9,kg/TJ,105.72566004,kg +b13df2f7-f10d-3790-ab37-4a52bb1a1e5f,SESCO,II.1.1,Buenos Aires,AR-B,annual,2014,gas oil combustion consumption by freight transport,27.1091436,TJ,N2O,3.9,kg/TJ,105.72566004,kg +3e148982-7d9e-36d0-aa8a-60c1eceb9fa9,SESCO,II.1.1,Capital Federal,AR-C,annual,2014,gas oil combustion consumption by freight transport,31.894682399999997,TJ,CO2,74100.0,kg/TJ,2363395.9658399997,kg +7eb49098-3e8a-323a-abef-ed400c2a96f5,SESCO,II.1.1,Capital Federal,AR-C,annual,2014,gas oil combustion consumption by freight transport,31.894682399999997,TJ,CH4,3.9,kg/TJ,124.38926135999999,kg +7eb49098-3e8a-323a-abef-ed400c2a96f5,SESCO,II.1.1,Capital Federal,AR-C,annual,2014,gas oil combustion consumption by freight transport,31.894682399999997,TJ,N2O,3.9,kg/TJ,124.38926135999999,kg +85a86d3f-78bb-3d6d-802c-320b69b9cf9b,SESCO,II.1.1,Chaco,AR-H,annual,2014,gas oil combustion consumption by freight transport,0.5710572,TJ,CO2,74100.0,kg/TJ,42315.338520000005,kg +d936230d-84ce-3a2e-a7e3-a23321c378f2,SESCO,II.1.1,Chaco,AR-H,annual,2014,gas oil combustion consumption by freight transport,0.5710572,TJ,CH4,3.9,kg/TJ,2.22712308,kg +d936230d-84ce-3a2e-a7e3-a23321c378f2,SESCO,II.1.1,Chaco,AR-H,annual,2014,gas oil combustion consumption by freight transport,0.5710572,TJ,N2O,3.9,kg/TJ,2.22712308,kg +a9fe2643-7501-361d-925f-d6b9077a89f0,SESCO,II.1.1,Corrientes,AR-W,annual,2014,gas oil combustion consumption by freight transport,1.3014036,TJ,CO2,74100.0,kg/TJ,96434.00676,kg +787c4d7e-c3ec-3d7b-ab42-4bceb61ed670,SESCO,II.1.1,Corrientes,AR-W,annual,2014,gas oil combustion consumption by freight transport,1.3014036,TJ,CH4,3.9,kg/TJ,5.07547404,kg +787c4d7e-c3ec-3d7b-ab42-4bceb61ed670,SESCO,II.1.1,Corrientes,AR-W,annual,2014,gas oil combustion consumption by freight transport,1.3014036,TJ,N2O,3.9,kg/TJ,5.07547404,kg +baeb021d-3201-34f6-9404-af2b68d3ad08,SESCO,II.1.1,Córdoba,AR-X,annual,2014,gas oil combustion consumption by freight transport,0.7733291999999999,TJ,CO2,74100.0,kg/TJ,57303.693719999996,kg +7b38a352-023a-373f-861e-e63447a1b201,SESCO,II.1.1,Córdoba,AR-X,annual,2014,gas oil combustion consumption by freight transport,0.7733291999999999,TJ,CH4,3.9,kg/TJ,3.01598388,kg +7b38a352-023a-373f-861e-e63447a1b201,SESCO,II.1.1,Córdoba,AR-X,annual,2014,gas oil combustion consumption by freight transport,0.7733291999999999,TJ,N2O,3.9,kg/TJ,3.01598388,kg +0fc72a99-01ee-377e-828c-087a28419b5d,SESCO,II.1.1,Entre Rios,AR-E,annual,2014,gas oil combustion consumption by freight transport,1.7164224,TJ,CO2,74100.0,kg/TJ,127186.89984,kg +0b40b9bf-10ac-37b5-8968-b51b755041d8,SESCO,II.1.1,Entre Rios,AR-E,annual,2014,gas oil combustion consumption by freight transport,1.7164224,TJ,CH4,3.9,kg/TJ,6.69404736,kg +0b40b9bf-10ac-37b5-8968-b51b755041d8,SESCO,II.1.1,Entre Rios,AR-E,annual,2014,gas oil combustion consumption by freight transport,1.7164224,TJ,N2O,3.9,kg/TJ,6.69404736,kg +90413690-5952-38c1-9172-8147f141866f,SESCO,II.1.1,Mendoza,AR-M,annual,2014,gas oil combustion consumption by freight transport,0.0285348,TJ,CO2,74100.0,kg/TJ,2114.42868,kg +bc7f7c61-57ce-3dc5-96b3-71ad99a99e07,SESCO,II.1.1,Mendoza,AR-M,annual,2014,gas oil combustion consumption by freight transport,0.0285348,TJ,CH4,3.9,kg/TJ,0.11128571999999999,kg +bc7f7c61-57ce-3dc5-96b3-71ad99a99e07,SESCO,II.1.1,Mendoza,AR-M,annual,2014,gas oil combustion consumption by freight transport,0.0285348,TJ,N2O,3.9,kg/TJ,0.11128571999999999,kg +9a472f53-cb6e-3d98-937b-ea552d9abe01,SESCO,II.1.1,Misiones,AR-N,annual,2014,gas oil combustion consumption by freight transport,0.05418,TJ,CO2,74100.0,kg/TJ,4014.738,kg +1a748f3c-4c85-3d85-a203-3bb4eb40d9b1,SESCO,II.1.1,Misiones,AR-N,annual,2014,gas oil combustion consumption by freight transport,0.05418,TJ,CH4,3.9,kg/TJ,0.211302,kg +1a748f3c-4c85-3d85-a203-3bb4eb40d9b1,SESCO,II.1.1,Misiones,AR-N,annual,2014,gas oil combustion consumption by freight transport,0.05418,TJ,N2O,3.9,kg/TJ,0.211302,kg +926e98b0-717c-3943-8131-b3ea241feb0b,SESCO,II.1.1,San Juan,AR-J,annual,2014,gas oil combustion consumption by freight transport,0.003612,TJ,CO2,74100.0,kg/TJ,267.6492,kg +7eaa99ec-6d18-3ed4-afb4-10bcc7922d85,SESCO,II.1.1,San Juan,AR-J,annual,2014,gas oil combustion consumption by freight transport,0.003612,TJ,CH4,3.9,kg/TJ,0.0140868,kg +7eaa99ec-6d18-3ed4-afb4-10bcc7922d85,SESCO,II.1.1,San Juan,AR-J,annual,2014,gas oil combustion consumption by freight transport,0.003612,TJ,N2O,3.9,kg/TJ,0.0140868,kg +69ed602e-800c-3597-a340-3707ef891d7f,SESCO,II.1.1,San Luis,AR-D,annual,2014,gas oil combustion consumption by freight transport,0.1755432,TJ,CO2,74100.0,kg/TJ,13007.75112,kg +550f448c-00dc-33e8-a540-77b0b728422d,SESCO,II.1.1,San Luis,AR-D,annual,2014,gas oil combustion consumption by freight transport,0.1755432,TJ,CH4,3.9,kg/TJ,0.68461848,kg +550f448c-00dc-33e8-a540-77b0b728422d,SESCO,II.1.1,San Luis,AR-D,annual,2014,gas oil combustion consumption by freight transport,0.1755432,TJ,N2O,3.9,kg/TJ,0.68461848,kg +6ff05dd3-815d-3fdd-994d-c3c8712d5552,SESCO,II.1.1,Santa Fe,AR-S,annual,2014,gas oil combustion consumption by freight transport,1.8255048,TJ,CO2,74100.0,kg/TJ,135269.90568,kg +05c41f5a-9a71-3062-88b3-bdabf9f1ee66,SESCO,II.1.1,Santa Fe,AR-S,annual,2014,gas oil combustion consumption by freight transport,1.8255048,TJ,CH4,3.9,kg/TJ,7.11946872,kg +05c41f5a-9a71-3062-88b3-bdabf9f1ee66,SESCO,II.1.1,Santa Fe,AR-S,annual,2014,gas oil combustion consumption by freight transport,1.8255048,TJ,N2O,3.9,kg/TJ,7.11946872,kg +3c8c274a-f4c1-32eb-b1d8-294aef5a8545,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2014,gas oil combustion consumption by freight transport,0.18059999999999998,TJ,CO2,74100.0,kg/TJ,13382.46,kg +57674291-16cd-3d81-b3c2-f42e9b17a22d,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2014,gas oil combustion consumption by freight transport,0.18059999999999998,TJ,CH4,3.9,kg/TJ,0.70434,kg +57674291-16cd-3d81-b3c2-f42e9b17a22d,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2014,gas oil combustion consumption by freight transport,0.18059999999999998,TJ,N2O,3.9,kg/TJ,0.70434,kg +750db3fd-2d13-321d-a371-278fbf9aa4db,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2014,gas oil combustion consumption by freight transport,0.047678399999999996,TJ,CO2,74100.0,kg/TJ,3532.96944,kg +fa77b9e1-079c-3e54-b303-8251167c762e,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2014,gas oil combustion consumption by freight transport,0.047678399999999996,TJ,CH4,3.9,kg/TJ,0.18594576,kg +fa77b9e1-079c-3e54-b303-8251167c762e,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2014,gas oil combustion consumption by freight transport,0.047678399999999996,TJ,N2O,3.9,kg/TJ,0.18594576,kg +8c8f0565-03fd-3cce-b840-7ecb2b2eda63,SESCO,II.1.1,Tucuman,AR-T,annual,2014,gas oil combustion consumption by freight transport,0.30918719999999994,TJ,CO2,74100.0,kg/TJ,22910.771519999995,kg +dd9011b6-0e56-3ec1-ab22-3b97931fa945,SESCO,II.1.1,Tucuman,AR-T,annual,2014,gas oil combustion consumption by freight transport,0.30918719999999994,TJ,CH4,3.9,kg/TJ,1.2058300799999997,kg +dd9011b6-0e56-3ec1-ab22-3b97931fa945,SESCO,II.1.1,Tucuman,AR-T,annual,2014,gas oil combustion consumption by freight transport,0.30918719999999994,TJ,N2O,3.9,kg/TJ,1.2058300799999997,kg +63b3ec96-1b47-35f7-9d4e-1e7ebdb145ee,SESCO,II.1.1,Buenos Aires,AR-B,annual,2014,jet kerosene combustion consumption by freight transport,0.5347009999999999,TJ,CO2,71500.0,kg/TJ,38231.121499999994,kg +f558a779-9293-3ccc-a986-b218d6cd2c6b,SESCO,II.1.1,Buenos Aires,AR-B,annual,2014,jet kerosene combustion consumption by freight transport,0.5347009999999999,TJ,CH4,0.5,kg/TJ,0.26735049999999994,kg +fe78243a-56cc-3c0e-ab75-fb6f37a75f37,SESCO,II.1.1,Buenos Aires,AR-B,annual,2014,jet kerosene combustion consumption by freight transport,0.5347009999999999,TJ,N2O,2.0,kg/TJ,1.0694019999999997,kg +10b57edf-be7a-3c6c-a857-230502b81b50,SESCO,II.1.1,Buenos Aires,AR-B,annual,2014,gas oil combustion consumption by public passenger transport,2229.857364,TJ,CO2,74100.0,kg/TJ,165232430.6724,kg +a157fb05-24ba-3d7d-b42b-5a113573abf2,SESCO,II.1.1,Buenos Aires,AR-B,annual,2014,gas oil combustion consumption by public passenger transport,2229.857364,TJ,CH4,3.9,kg/TJ,8696.4437196,kg +a157fb05-24ba-3d7d-b42b-5a113573abf2,SESCO,II.1.1,Buenos Aires,AR-B,annual,2014,gas oil combustion consumption by public passenger transport,2229.857364,TJ,N2O,3.9,kg/TJ,8696.4437196,kg +6a271262-5b5d-3091-8a5c-285511a3e5ec,SESCO,II.1.1,Capital Federal,AR-C,annual,2014,gas oil combustion consumption by public passenger transport,151.3453284,TJ,CO2,74100.0,kg/TJ,11214688.83444,kg +28440ac1-0d44-3d7b-8f4d-93774d9b81cd,SESCO,II.1.1,Capital Federal,AR-C,annual,2014,gas oil combustion consumption by public passenger transport,151.3453284,TJ,CH4,3.9,kg/TJ,590.24678076,kg +28440ac1-0d44-3d7b-8f4d-93774d9b81cd,SESCO,II.1.1,Capital Federal,AR-C,annual,2014,gas oil combustion consumption by public passenger transport,151.3453284,TJ,N2O,3.9,kg/TJ,590.24678076,kg +1f3960a5-cb83-3751-a14f-9a0d86c4d5df,SESCO,II.1.1,Catamarca,AR-K,annual,2014,gas oil combustion consumption by public passenger transport,0.21672,TJ,CO2,74100.0,kg/TJ,16058.952,kg +23b635c7-9afa-38e5-a1f8-18d89d130fd4,SESCO,II.1.1,Catamarca,AR-K,annual,2014,gas oil combustion consumption by public passenger transport,0.21672,TJ,CH4,3.9,kg/TJ,0.845208,kg +23b635c7-9afa-38e5-a1f8-18d89d130fd4,SESCO,II.1.1,Catamarca,AR-K,annual,2014,gas oil combustion consumption by public passenger transport,0.21672,TJ,N2O,3.9,kg/TJ,0.845208,kg +3ab2a1c9-0a8e-3499-a13e-fafefc72bad9,SESCO,II.1.1,Chubut,AR-U,annual,2014,gas oil combustion consumption by public passenger transport,14.155427999999999,TJ,CO2,74100.0,kg/TJ,1048917.2148,kg +d0ab494a-139c-3611-aeb8-f0b60320a2b9,SESCO,II.1.1,Chubut,AR-U,annual,2014,gas oil combustion consumption by public passenger transport,14.155427999999999,TJ,CH4,3.9,kg/TJ,55.20616919999999,kg +d0ab494a-139c-3611-aeb8-f0b60320a2b9,SESCO,II.1.1,Chubut,AR-U,annual,2014,gas oil combustion consumption by public passenger transport,14.155427999999999,TJ,N2O,3.9,kg/TJ,55.20616919999999,kg +0354494c-5c8c-3661-957c-252edf68e61f,SESCO,II.1.1,Corrientes,AR-W,annual,2014,gas oil combustion consumption by public passenger transport,0.25284,TJ,CO2,74100.0,kg/TJ,18735.444,kg +84fe2139-6d90-3674-99aa-dc1595dbd8cd,SESCO,II.1.1,Corrientes,AR-W,annual,2014,gas oil combustion consumption by public passenger transport,0.25284,TJ,CH4,3.9,kg/TJ,0.9860760000000001,kg +84fe2139-6d90-3674-99aa-dc1595dbd8cd,SESCO,II.1.1,Corrientes,AR-W,annual,2014,gas oil combustion consumption by public passenger transport,0.25284,TJ,N2O,3.9,kg/TJ,0.9860760000000001,kg +12761a28-6f61-3b34-857f-75fd356823cf,SESCO,II.1.1,Córdoba,AR-X,annual,2014,gas oil combustion consumption by public passenger transport,66.0277212,TJ,CO2,74100.0,kg/TJ,4892654.14092,kg +45eda22c-f48c-345c-884b-c573403e22f0,SESCO,II.1.1,Córdoba,AR-X,annual,2014,gas oil combustion consumption by public passenger transport,66.0277212,TJ,CH4,3.9,kg/TJ,257.50811268,kg +45eda22c-f48c-345c-884b-c573403e22f0,SESCO,II.1.1,Córdoba,AR-X,annual,2014,gas oil combustion consumption by public passenger transport,66.0277212,TJ,N2O,3.9,kg/TJ,257.50811268,kg +7639fa44-5f2a-3ded-8c00-3325f618e6c5,SESCO,II.1.1,Entre Rios,AR-E,annual,2014,gas oil combustion consumption by public passenger transport,52.18942679999999,TJ,CO2,74100.0,kg/TJ,3867236.5258799996,kg +e2874374-31b6-3468-b2b3-5223d81c75ff,SESCO,II.1.1,Entre Rios,AR-E,annual,2014,gas oil combustion consumption by public passenger transport,52.18942679999999,TJ,CH4,3.9,kg/TJ,203.53876451999997,kg +e2874374-31b6-3468-b2b3-5223d81c75ff,SESCO,II.1.1,Entre Rios,AR-E,annual,2014,gas oil combustion consumption by public passenger transport,52.18942679999999,TJ,N2O,3.9,kg/TJ,203.53876451999997,kg +56c1393e-c115-3923-8de0-56d824f718cb,SESCO,II.1.1,La Pampa,AR-L,annual,2014,gas oil combustion consumption by public passenger transport,9.13836,TJ,CO2,74100.0,kg/TJ,677152.476,kg +37c478b9-75c1-329f-ac56-f461b4141398,SESCO,II.1.1,La Pampa,AR-L,annual,2014,gas oil combustion consumption by public passenger transport,9.13836,TJ,CH4,3.9,kg/TJ,35.639604,kg +37c478b9-75c1-329f-ac56-f461b4141398,SESCO,II.1.1,La Pampa,AR-L,annual,2014,gas oil combustion consumption by public passenger transport,9.13836,TJ,N2O,3.9,kg/TJ,35.639604,kg +3171c01c-7c94-3a55-8596-ea71eb868367,SESCO,II.1.1,Mendoza,AR-M,annual,2014,gas oil combustion consumption by public passenger transport,0.43344,TJ,CO2,74100.0,kg/TJ,32117.904,kg +41e56719-715a-34df-8e41-11a75a71e38e,SESCO,II.1.1,Mendoza,AR-M,annual,2014,gas oil combustion consumption by public passenger transport,0.43344,TJ,CH4,3.9,kg/TJ,1.690416,kg +41e56719-715a-34df-8e41-11a75a71e38e,SESCO,II.1.1,Mendoza,AR-M,annual,2014,gas oil combustion consumption by public passenger transport,0.43344,TJ,N2O,3.9,kg/TJ,1.690416,kg +bd27bfe5-0c4c-3b8f-b951-fe6d04263c80,SESCO,II.1.1,Misiones,AR-N,annual,2014,gas oil combustion consumption by public passenger transport,19.636999199999998,TJ,CO2,74100.0,kg/TJ,1455101.6407199998,kg +5be08e9d-fc2b-33f8-a6e3-e97a2e2b8d88,SESCO,II.1.1,Misiones,AR-N,annual,2014,gas oil combustion consumption by public passenger transport,19.636999199999998,TJ,CH4,3.9,kg/TJ,76.58429688,kg +5be08e9d-fc2b-33f8-a6e3-e97a2e2b8d88,SESCO,II.1.1,Misiones,AR-N,annual,2014,gas oil combustion consumption by public passenger transport,19.636999199999998,TJ,N2O,3.9,kg/TJ,76.58429688,kg +6f30bd03-f35f-395b-941f-1354d67f4918,SESCO,II.1.1,Rio Negro,AR-R,annual,2014,gas oil combustion consumption by public passenger transport,56.1871884,TJ,CO2,74100.0,kg/TJ,4163470.66044,kg +bceaa9a5-76d5-3b50-8cbe-62444cc190cf,SESCO,II.1.1,Rio Negro,AR-R,annual,2014,gas oil combustion consumption by public passenger transport,56.1871884,TJ,CH4,3.9,kg/TJ,219.13003475999997,kg +bceaa9a5-76d5-3b50-8cbe-62444cc190cf,SESCO,II.1.1,Rio Negro,AR-R,annual,2014,gas oil combustion consumption by public passenger transport,56.1871884,TJ,N2O,3.9,kg/TJ,219.13003475999997,kg +9663ccf5-b0e0-3e28-a85e-00588fecfada,SESCO,II.1.1,San Juan,AR-J,annual,2014,gas oil combustion consumption by public passenger transport,0.729624,TJ,CO2,74100.0,kg/TJ,54065.1384,kg +8e5e34c4-36f1-3fc9-b0ce-283aeb1ed0a3,SESCO,II.1.1,San Juan,AR-J,annual,2014,gas oil combustion consumption by public passenger transport,0.729624,TJ,CH4,3.9,kg/TJ,2.8455336,kg +8e5e34c4-36f1-3fc9-b0ce-283aeb1ed0a3,SESCO,II.1.1,San Juan,AR-J,annual,2014,gas oil combustion consumption by public passenger transport,0.729624,TJ,N2O,3.9,kg/TJ,2.8455336,kg +c7d53982-bf06-329b-a27c-77a41c6fb3f2,SESCO,II.1.1,San Luis,AR-D,annual,2014,gas oil combustion consumption by public passenger transport,0.14448,TJ,CO2,74100.0,kg/TJ,10705.967999999999,kg +0605f77b-cca0-37a9-a55e-72a5085f78b0,SESCO,II.1.1,San Luis,AR-D,annual,2014,gas oil combustion consumption by public passenger transport,0.14448,TJ,CH4,3.9,kg/TJ,0.563472,kg +0605f77b-cca0-37a9-a55e-72a5085f78b0,SESCO,II.1.1,San Luis,AR-D,annual,2014,gas oil combustion consumption by public passenger transport,0.14448,TJ,N2O,3.9,kg/TJ,0.563472,kg +f1d6f31d-aae0-38e0-a734-f3eebde86bed,SESCO,II.1.1,Santa Fe,AR-S,annual,2014,gas oil combustion consumption by public passenger transport,4.6807908000000005,TJ,CO2,74100.0,kg/TJ,346846.59828000003,kg +03cc1d1e-d9c8-33f9-85f8-4bd04ccaac58,SESCO,II.1.1,Santa Fe,AR-S,annual,2014,gas oil combustion consumption by public passenger transport,4.6807908000000005,TJ,CH4,3.9,kg/TJ,18.255084120000003,kg +03cc1d1e-d9c8-33f9-85f8-4bd04ccaac58,SESCO,II.1.1,Santa Fe,AR-S,annual,2014,gas oil combustion consumption by public passenger transport,4.6807908000000005,TJ,N2O,3.9,kg/TJ,18.255084120000003,kg +47022a84-9713-3490-9244-8578249c6297,SESCO,II.1.1,Buenos Aires,AR-B,annual,2014,gas oil combustion consumption by public passenger transport,1.3097112,TJ,CO2,74100.0,kg/TJ,97049.59992,kg +b4f9a759-d28e-35da-a326-63cbecd2aa41,SESCO,II.1.1,Buenos Aires,AR-B,annual,2014,gas oil combustion consumption by public passenger transport,1.3097112,TJ,CH4,3.9,kg/TJ,5.10787368,kg +b4f9a759-d28e-35da-a326-63cbecd2aa41,SESCO,II.1.1,Buenos Aires,AR-B,annual,2014,gas oil combustion consumption by public passenger transport,1.3097112,TJ,N2O,3.9,kg/TJ,5.10787368,kg +0bc0fd18-47bc-35b8-a589-107bfdc9bb52,SESCO,II.1.1,Capital Federal,AR-C,annual,2014,gas oil combustion consumption by public passenger transport,14.010947999999999,TJ,CO2,74100.0,kg/TJ,1038211.2468,kg +fb2dc791-b868-34c1-a693-d1b84a7aa8aa,SESCO,II.1.1,Capital Federal,AR-C,annual,2014,gas oil combustion consumption by public passenger transport,14.010947999999999,TJ,CH4,3.9,kg/TJ,54.64269719999999,kg +fb2dc791-b868-34c1-a693-d1b84a7aa8aa,SESCO,II.1.1,Capital Federal,AR-C,annual,2014,gas oil combustion consumption by public passenger transport,14.010947999999999,TJ,N2O,3.9,kg/TJ,54.64269719999999,kg +ad53deed-156b-38bd-91bd-4a081cea6069,SESCO,II.1.1,Córdoba,AR-X,annual,2014,gas oil combustion consumption by public passenger transport,0.1043868,TJ,CO2,74100.0,kg/TJ,7735.06188,kg +b58abf9e-3190-3808-a9b1-db486b26a053,SESCO,II.1.1,Córdoba,AR-X,annual,2014,gas oil combustion consumption by public passenger transport,0.1043868,TJ,CH4,3.9,kg/TJ,0.40710852,kg +b58abf9e-3190-3808-a9b1-db486b26a053,SESCO,II.1.1,Córdoba,AR-X,annual,2014,gas oil combustion consumption by public passenger transport,0.1043868,TJ,N2O,3.9,kg/TJ,0.40710852,kg +dc7e38bb-5bb8-3b71-a3e1-3fef7fc017d9,SESCO,II.1.1,Entre Rios,AR-E,annual,2014,gas oil combustion consumption by public passenger transport,0.083076,TJ,CO2,74100.0,kg/TJ,6155.9316,kg +4dcf5870-1560-3092-8e90-3ddb0d69b0f9,SESCO,II.1.1,Entre Rios,AR-E,annual,2014,gas oil combustion consumption by public passenger transport,0.083076,TJ,CH4,3.9,kg/TJ,0.32399639999999996,kg +4dcf5870-1560-3092-8e90-3ddb0d69b0f9,SESCO,II.1.1,Entre Rios,AR-E,annual,2014,gas oil combustion consumption by public passenger transport,0.083076,TJ,N2O,3.9,kg/TJ,0.32399639999999996,kg +dec01366-662c-3711-9ef7-ad6089613cd5,SESCO,II.1.1,Rio Negro,AR-R,annual,2014,gas oil combustion consumption by public passenger transport,2.709,TJ,CO2,74100.0,kg/TJ,200736.9,kg +4f3ff4b9-5664-3d23-9d56-11ae78b953a6,SESCO,II.1.1,Rio Negro,AR-R,annual,2014,gas oil combustion consumption by public passenger transport,2.709,TJ,CH4,3.9,kg/TJ,10.5651,kg +4f3ff4b9-5664-3d23-9d56-11ae78b953a6,SESCO,II.1.1,Rio Negro,AR-R,annual,2014,gas oil combustion consumption by public passenger transport,2.709,TJ,N2O,3.9,kg/TJ,10.5651,kg +6094e6c0-2180-309d-a873-64d8ffa1681c,SESCO,II.1.1,Chubut,AR-U,annual,2014,gas oil combustion consumption by freight transport,0.5250042,TJ,CO2,74100.0,kg/TJ,38902.81122,kg +7e5f2b86-d2f8-32b9-adaa-094fb46a4781,SESCO,II.1.1,Chubut,AR-U,annual,2014,gas oil combustion consumption by freight transport,0.5250042,TJ,CH4,3.9,kg/TJ,2.0475163800000002,kg +7e5f2b86-d2f8-32b9-adaa-094fb46a4781,SESCO,II.1.1,Chubut,AR-U,annual,2014,gas oil combustion consumption by freight transport,0.5250042,TJ,N2O,3.9,kg/TJ,2.0475163800000002,kg +f6d767ca-e6bd-36a0-a28c-f47d8b179d29,SESCO,II.5.1,Buenos Aires,AR-B,annual,2014,gas oil combustion consumption by agriculture machines,460.87538305199996,TJ,CO2,74100.0,kg/TJ,34150865.884153195,kg +42bc125f-1c39-3d6b-8547-e5b8bbe2abe8,SESCO,II.5.1,Buenos Aires,AR-B,annual,2014,gas oil combustion consumption by agriculture machines,460.87538305199996,TJ,CH4,3.9,kg/TJ,1797.4139939027998,kg +42bc125f-1c39-3d6b-8547-e5b8bbe2abe8,SESCO,II.5.1,Buenos Aires,AR-B,annual,2014,gas oil combustion consumption by agriculture machines,460.87538305199996,TJ,N2O,3.9,kg/TJ,1797.4139939027998,kg +9376a1d4-744c-3c9a-96a6-16d3f4f75b4b,SESCO,II.5.1,Córdoba,AR-X,annual,2014,gas oil combustion consumption by agriculture machines,586.015579212,TJ,CO2,74100.0,kg/TJ,43423754.419609204,kg +08ff8213-0e51-3d7f-ab73-e7998d1881cb,SESCO,II.5.1,Córdoba,AR-X,annual,2014,gas oil combustion consumption by agriculture machines,586.015579212,TJ,CH4,3.9,kg/TJ,2285.4607589268003,kg +08ff8213-0e51-3d7f-ab73-e7998d1881cb,SESCO,II.5.1,Córdoba,AR-X,annual,2014,gas oil combustion consumption by agriculture machines,586.015579212,TJ,N2O,3.9,kg/TJ,2285.4607589268003,kg +5f5addb3-a442-3dd5-9937-1e59842bf707,SESCO,II.5.1,Entre Rios,AR-E,annual,2014,gas oil combustion consumption by agriculture machines,450.445053996,TJ,CO2,74100.0,kg/TJ,33377978.501103602,kg +646d08fc-7481-311a-9a35-1b7bd883ddd0,SESCO,II.5.1,Entre Rios,AR-E,annual,2014,gas oil combustion consumption by agriculture machines,450.445053996,TJ,CH4,3.9,kg/TJ,1756.7357105844,kg +646d08fc-7481-311a-9a35-1b7bd883ddd0,SESCO,II.5.1,Entre Rios,AR-E,annual,2014,gas oil combustion consumption by agriculture machines,450.445053996,TJ,N2O,3.9,kg/TJ,1756.7357105844,kg +a8696264-38ac-321f-a300-bae931111fec,SESCO,II.5.1,Santa Fe,AR-S,annual,2014,gas oil combustion consumption by agriculture machines,855.709229004,TJ,CO2,74100.0,kg/TJ,63408053.8691964,kg +a3b1dfc6-5250-3b73-9c99-27dd72864687,SESCO,II.5.1,Santa Fe,AR-S,annual,2014,gas oil combustion consumption by agriculture machines,855.709229004,TJ,CH4,3.9,kg/TJ,3337.2659931156,kg +a3b1dfc6-5250-3b73-9c99-27dd72864687,SESCO,II.5.1,Santa Fe,AR-S,annual,2014,gas oil combustion consumption by agriculture machines,855.709229004,TJ,N2O,3.9,kg/TJ,3337.2659931156,kg +bdcafa16-225f-317d-adb3-34b2e594c95e,SESCO,II.5.1,Santiago del Estero,AR-G,annual,2014,gas oil combustion consumption by agriculture machines,103.84646286,TJ,CO2,74100.0,kg/TJ,7695022.897926,kg +4539cb9f-5299-380e-92ce-fbff39e446f4,SESCO,II.5.1,Santiago del Estero,AR-G,annual,2014,gas oil combustion consumption by agriculture machines,103.84646286,TJ,CH4,3.9,kg/TJ,405.001205154,kg +4539cb9f-5299-380e-92ce-fbff39e446f4,SESCO,II.5.1,Santiago del Estero,AR-G,annual,2014,gas oil combustion consumption by agriculture machines,103.84646286,TJ,N2O,3.9,kg/TJ,405.001205154,kg +b1c8a8e5-faa7-35ed-9c30-01655fef626c,SESCO,II.1.1,Buenos Aires,AR-B,annual,2014,gas oil combustion consumption by to the public,3285.899747256,TJ,CO2,74100.0,kg/TJ,243485171.2716696,kg +7bd841fd-6c8f-3ad5-9e0d-859c628f785f,SESCO,II.1.1,Buenos Aires,AR-B,annual,2014,gas oil combustion consumption by to the public,3285.899747256,TJ,CH4,3.9,kg/TJ,12815.009014298399,kg +7bd841fd-6c8f-3ad5-9e0d-859c628f785f,SESCO,II.1.1,Buenos Aires,AR-B,annual,2014,gas oil combustion consumption by to the public,3285.899747256,TJ,N2O,3.9,kg/TJ,12815.009014298399,kg +0552831a-f2cc-3078-94df-4320a5177e8f,SESCO,II.1.1,Capital Federal,AR-C,annual,2014,gas oil combustion consumption by to the public,341.297966688,TJ,CO2,74100.0,kg/TJ,25290179.3315808,kg +ae184c9c-c9d8-3a8e-bef5-fec27ada8acb,SESCO,II.1.1,Capital Federal,AR-C,annual,2014,gas oil combustion consumption by to the public,341.297966688,TJ,CH4,3.9,kg/TJ,1331.0620700831998,kg +ae184c9c-c9d8-3a8e-bef5-fec27ada8acb,SESCO,II.1.1,Capital Federal,AR-C,annual,2014,gas oil combustion consumption by to the public,341.297966688,TJ,N2O,3.9,kg/TJ,1331.0620700831998,kg +fda77481-8816-3042-baac-3ace321223d9,SESCO,II.1.1,Catamarca,AR-K,annual,2014,gas oil combustion consumption by to the public,119.999251008,TJ,CO2,74100.0,kg/TJ,8891944.4996928,kg +fe1b1072-f891-36db-9402-4ff023fc8b55,SESCO,II.1.1,Catamarca,AR-K,annual,2014,gas oil combustion consumption by to the public,119.999251008,TJ,CH4,3.9,kg/TJ,467.9970789312,kg +fe1b1072-f891-36db-9402-4ff023fc8b55,SESCO,II.1.1,Catamarca,AR-K,annual,2014,gas oil combustion consumption by to the public,119.999251008,TJ,N2O,3.9,kg/TJ,467.9970789312,kg +d09a1efe-f8ac-3bff-9f0a-583d1c880e17,SESCO,II.1.1,Chaco,AR-H,annual,2014,gas oil combustion consumption by to the public,620.989697496,TJ,CO2,74100.0,kg/TJ,46015336.5844536,kg +a7f149d7-2265-39eb-a6ba-00d6186ecf4c,SESCO,II.1.1,Chaco,AR-H,annual,2014,gas oil combustion consumption by to the public,620.989697496,TJ,CH4,3.9,kg/TJ,2421.8598202343996,kg +a7f149d7-2265-39eb-a6ba-00d6186ecf4c,SESCO,II.1.1,Chaco,AR-H,annual,2014,gas oil combustion consumption by to the public,620.989697496,TJ,N2O,3.9,kg/TJ,2421.8598202343996,kg +f483f727-b63a-3fdb-aa7b-8e3817561b8d,SESCO,II.1.1,Corrientes,AR-W,annual,2014,gas oil combustion consumption by to the public,639.579195024,TJ,CO2,74100.0,kg/TJ,47392818.3512784,kg +1c4253ff-6cbe-3579-b061-4924b12c1182,SESCO,II.1.1,Corrientes,AR-W,annual,2014,gas oil combustion consumption by to the public,639.579195024,TJ,CH4,3.9,kg/TJ,2494.3588605935997,kg +1c4253ff-6cbe-3579-b061-4924b12c1182,SESCO,II.1.1,Corrientes,AR-W,annual,2014,gas oil combustion consumption by to the public,639.579195024,TJ,N2O,3.9,kg/TJ,2494.3588605935997,kg +6d1a0e69-33c5-3486-b74f-e9ba1724865a,SESCO,II.1.1,Córdoba,AR-X,annual,2014,gas oil combustion consumption by to the public,2102.9482161240003,TJ,CO2,74100.0,kg/TJ,155828462.81478843,kg +a4f16639-87e9-3173-b052-52de270a9b4e,SESCO,II.1.1,Córdoba,AR-X,annual,2014,gas oil combustion consumption by to the public,2102.9482161240003,TJ,CH4,3.9,kg/TJ,8201.4980428836,kg +a4f16639-87e9-3173-b052-52de270a9b4e,SESCO,II.1.1,Córdoba,AR-X,annual,2014,gas oil combustion consumption by to the public,2102.9482161240003,TJ,N2O,3.9,kg/TJ,8201.4980428836,kg +4235fe87-123d-3af9-9cd1-4fc9483d61d5,SESCO,II.1.1,Entre Rios,AR-E,annual,2014,gas oil combustion consumption by to the public,1177.979540892,TJ,CO2,74100.0,kg/TJ,87288283.98009719,kg +083a91f0-19e3-32ae-89f6-55c4b9316ec8,SESCO,II.1.1,Entre Rios,AR-E,annual,2014,gas oil combustion consumption by to the public,1177.979540892,TJ,CH4,3.9,kg/TJ,4594.1202094788,kg +083a91f0-19e3-32ae-89f6-55c4b9316ec8,SESCO,II.1.1,Entre Rios,AR-E,annual,2014,gas oil combustion consumption by to the public,1177.979540892,TJ,N2O,3.9,kg/TJ,4594.1202094788,kg +668e8807-5972-37bd-b39b-6d416fec6e08,SESCO,II.1.1,Jujuy,AR-Y,annual,2014,gas oil combustion consumption by to the public,58.908552275999995,TJ,CO2,74100.0,kg/TJ,4365123.723651599,kg +b0b251c7-bd57-3df0-886c-f4c9c80a003a,SESCO,II.1.1,Jujuy,AR-Y,annual,2014,gas oil combustion consumption by to the public,58.908552275999995,TJ,CH4,3.9,kg/TJ,229.74335387639996,kg +b0b251c7-bd57-3df0-886c-f4c9c80a003a,SESCO,II.1.1,Jujuy,AR-Y,annual,2014,gas oil combustion consumption by to the public,58.908552275999995,TJ,N2O,3.9,kg/TJ,229.74335387639996,kg +6287a0f6-f6a0-3904-8d1f-6f821feaad4a,SESCO,II.1.1,La Pampa,AR-L,annual,2014,gas oil combustion consumption by to the public,102.31901668799999,TJ,CO2,74100.0,kg/TJ,7581839.1365808,kg +40ac8e73-6e19-3d68-9e55-72b17a8e4e12,SESCO,II.1.1,La Pampa,AR-L,annual,2014,gas oil combustion consumption by to the public,102.31901668799999,TJ,CH4,3.9,kg/TJ,399.04416508319997,kg +40ac8e73-6e19-3d68-9e55-72b17a8e4e12,SESCO,II.1.1,La Pampa,AR-L,annual,2014,gas oil combustion consumption by to the public,102.31901668799999,TJ,N2O,3.9,kg/TJ,399.04416508319997,kg +03902af0-04f0-32d1-a4bc-a65710d828e4,SESCO,II.1.1,La Rioja,AR-F,annual,2014,gas oil combustion consumption by to the public,60.246545436000005,TJ,CO2,74100.0,kg/TJ,4464269.0168076,kg +12294c26-31f5-32de-9cb9-a331529dd1c8,SESCO,II.1.1,La Rioja,AR-F,annual,2014,gas oil combustion consumption by to the public,60.246545436000005,TJ,CH4,3.9,kg/TJ,234.9615272004,kg +12294c26-31f5-32de-9cb9-a331529dd1c8,SESCO,II.1.1,La Rioja,AR-F,annual,2014,gas oil combustion consumption by to the public,60.246545436000005,TJ,N2O,3.9,kg/TJ,234.9615272004,kg +8c52ee86-6f26-3a30-b660-7459885a7708,SESCO,II.1.1,Mendoza,AR-M,annual,2014,gas oil combustion consumption by to the public,509.954281872,TJ,CO2,74100.0,kg/TJ,37787612.2867152,kg +c26ffe27-2d08-3fe7-9ed2-b0ae18a97a0f,SESCO,II.1.1,Mendoza,AR-M,annual,2014,gas oil combustion consumption by to the public,509.954281872,TJ,CH4,3.9,kg/TJ,1988.8216993008,kg +c26ffe27-2d08-3fe7-9ed2-b0ae18a97a0f,SESCO,II.1.1,Mendoza,AR-M,annual,2014,gas oil combustion consumption by to the public,509.954281872,TJ,N2O,3.9,kg/TJ,1988.8216993008,kg +3fa9b14b-fab5-3fc5-8e9a-47b6cc2ebb2c,SESCO,II.1.1,Misiones,AR-N,annual,2014,gas oil combustion consumption by to the public,301.731504648,TJ,CO2,74100.0,kg/TJ,22358304.4944168,kg +547cfde5-803b-37af-8b08-fccfec0d7bbd,SESCO,II.1.1,Misiones,AR-N,annual,2014,gas oil combustion consumption by to the public,301.731504648,TJ,CH4,3.9,kg/TJ,1176.7528681272,kg +547cfde5-803b-37af-8b08-fccfec0d7bbd,SESCO,II.1.1,Misiones,AR-N,annual,2014,gas oil combustion consumption by to the public,301.731504648,TJ,N2O,3.9,kg/TJ,1176.7528681272,kg +679ce480-42f1-3ed9-88b1-58623985d48c,SESCO,II.1.1,Salta,AR-A,annual,2014,gas oil combustion consumption by to the public,5.646365088,TJ,CO2,74100.0,kg/TJ,418395.6530208,kg +2d08c348-5ca8-3007-b07d-dd406f62f6c4,SESCO,II.1.1,Salta,AR-A,annual,2014,gas oil combustion consumption by to the public,5.646365088,TJ,CH4,3.9,kg/TJ,22.0208238432,kg +2d08c348-5ca8-3007-b07d-dd406f62f6c4,SESCO,II.1.1,Salta,AR-A,annual,2014,gas oil combustion consumption by to the public,5.646365088,TJ,N2O,3.9,kg/TJ,22.0208238432,kg +552c4f47-cfd3-39cb-985e-ef7a547ce8d5,SESCO,II.1.1,San Juan,AR-J,annual,2014,gas oil combustion consumption by to the public,384.56837941199996,TJ,CO2,74100.0,kg/TJ,28496516.914429195,kg +d0b7dc05-66cb-3887-93da-581189bee47b,SESCO,II.1.1,San Juan,AR-J,annual,2014,gas oil combustion consumption by to the public,384.56837941199996,TJ,CH4,3.9,kg/TJ,1499.8166797067997,kg +d0b7dc05-66cb-3887-93da-581189bee47b,SESCO,II.1.1,San Juan,AR-J,annual,2014,gas oil combustion consumption by to the public,384.56837941199996,TJ,N2O,3.9,kg/TJ,1499.8166797067997,kg +2b25543a-849d-3ee2-8e41-b9758e5d86f8,SESCO,II.1.1,San Luis,AR-D,annual,2014,gas oil combustion consumption by to the public,205.87494471600002,TJ,CO2,74100.0,kg/TJ,15255333.403455602,kg +f0f3a030-e03d-31d0-adf1-be150fceaa16,SESCO,II.1.1,San Luis,AR-D,annual,2014,gas oil combustion consumption by to the public,205.87494471600002,TJ,CH4,3.9,kg/TJ,802.9122843924,kg +f0f3a030-e03d-31d0-adf1-be150fceaa16,SESCO,II.1.1,San Luis,AR-D,annual,2014,gas oil combustion consumption by to the public,205.87494471600002,TJ,N2O,3.9,kg/TJ,802.9122843924,kg +b60f29ca-7ea7-3dc7-91f0-9231bdb6ffcd,SESCO,II.1.1,Santa Fe,AR-S,annual,2014,gas oil combustion consumption by to the public,3665.270198604,TJ,CO2,74100.0,kg/TJ,271596521.71655643,kg +7a0ababe-c336-3449-a3bb-ee5ccbab9dd8,SESCO,II.1.1,Santa Fe,AR-S,annual,2014,gas oil combustion consumption by to the public,3665.270198604,TJ,CH4,3.9,kg/TJ,14294.5537745556,kg +7a0ababe-c336-3449-a3bb-ee5ccbab9dd8,SESCO,II.1.1,Santa Fe,AR-S,annual,2014,gas oil combustion consumption by to the public,3665.270198604,TJ,N2O,3.9,kg/TJ,14294.5537745556,kg +8201a742-7ff2-3813-b577-5320dfacdf63,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2014,gas oil combustion consumption by to the public,165.80931149999998,TJ,CO2,74100.0,kg/TJ,12286469.982149998,kg +4797b4ff-8393-328f-9366-9b25e2c80764,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2014,gas oil combustion consumption by to the public,165.80931149999998,TJ,CH4,3.9,kg/TJ,646.65631485,kg +4797b4ff-8393-328f-9366-9b25e2c80764,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2014,gas oil combustion consumption by to the public,165.80931149999998,TJ,N2O,3.9,kg/TJ,646.65631485,kg +a6d6e915-ae59-3db4-88ac-71a67e35a810,SESCO,II.1.1,Tucuman,AR-T,annual,2014,gas oil combustion consumption by to the public,523.098812208,TJ,CO2,74100.0,kg/TJ,38761621.9846128,kg +12cc111f-0a70-3f3d-ada0-815891e195bc,SESCO,II.1.1,Tucuman,AR-T,annual,2014,gas oil combustion consumption by to the public,523.098812208,TJ,CH4,3.9,kg/TJ,2040.0853676112001,kg +12cc111f-0a70-3f3d-ada0-815891e195bc,SESCO,II.1.1,Tucuman,AR-T,annual,2014,gas oil combustion consumption by to the public,523.098812208,TJ,N2O,3.9,kg/TJ,2040.0853676112001,kg +d6ca6543-6dcd-39bf-8ee2-a5f920a5d187,SESCO,II.1.1,Buenos Aires,AR-B,annual,2014,gas oil combustion consumption by to the public,155.581243608,TJ,CO2,74100.0,kg/TJ,11528570.1513528,kg +e85516b4-0d32-38df-85e2-241dbd962a64,SESCO,II.1.1,Buenos Aires,AR-B,annual,2014,gas oil combustion consumption by to the public,155.581243608,TJ,CH4,3.9,kg/TJ,606.7668500712,kg +e85516b4-0d32-38df-85e2-241dbd962a64,SESCO,II.1.1,Buenos Aires,AR-B,annual,2014,gas oil combustion consumption by to the public,155.581243608,TJ,N2O,3.9,kg/TJ,606.7668500712,kg +9bc14a87-4f44-392c-8e3c-5baf0569cde8,SESCO,II.1.1,Capital Federal,AR-C,annual,2014,gas oil combustion consumption by to the public,7.169274588,TJ,CO2,74100.0,kg/TJ,531243.2469708,kg +ad01f020-dde4-3380-86c3-8d46445015d1,SESCO,II.1.1,Capital Federal,AR-C,annual,2014,gas oil combustion consumption by to the public,7.169274588,TJ,CH4,3.9,kg/TJ,27.9601708932,kg +ad01f020-dde4-3380-86c3-8d46445015d1,SESCO,II.1.1,Capital Federal,AR-C,annual,2014,gas oil combustion consumption by to the public,7.169274588,TJ,N2O,3.9,kg/TJ,27.9601708932,kg +39dbae5c-9921-3f19-acb1-26ab40676b51,SESCO,II.1.1,Catamarca,AR-K,annual,2014,gas oil combustion consumption by to the public,3.841358388,TJ,CO2,74100.0,kg/TJ,284644.6565508,kg +f6ee7420-46c6-3808-b0ea-4be8b9b9be97,SESCO,II.1.1,Catamarca,AR-K,annual,2014,gas oil combustion consumption by to the public,3.841358388,TJ,CH4,3.9,kg/TJ,14.9812977132,kg +f6ee7420-46c6-3808-b0ea-4be8b9b9be97,SESCO,II.1.1,Catamarca,AR-K,annual,2014,gas oil combustion consumption by to the public,3.841358388,TJ,N2O,3.9,kg/TJ,14.9812977132,kg +5bf8d649-2525-3bad-bfeb-42303194ccb2,SESCO,II.1.1,Chaco,AR-H,annual,2014,gas oil combustion consumption by to the public,1.9334783159999998,TJ,CO2,74100.0,kg/TJ,143270.74321559997,kg +5d732c8d-ac84-389d-89ce-aa0f0d4dc52e,SESCO,II.1.1,Chaco,AR-H,annual,2014,gas oil combustion consumption by to the public,1.9334783159999998,TJ,CH4,3.9,kg/TJ,7.540565432399998,kg +5d732c8d-ac84-389d-89ce-aa0f0d4dc52e,SESCO,II.1.1,Chaco,AR-H,annual,2014,gas oil combustion consumption by to the public,1.9334783159999998,TJ,N2O,3.9,kg/TJ,7.540565432399998,kg +ea266c93-74ee-3c71-bb0e-60eee4f42005,SESCO,II.1.1,Corrientes,AR-W,annual,2014,gas oil combustion consumption by to the public,19.300913436,TJ,CO2,74100.0,kg/TJ,1430197.6856075998,kg +144a9b86-d246-3aa1-9225-774b9166f0d9,SESCO,II.1.1,Corrientes,AR-W,annual,2014,gas oil combustion consumption by to the public,19.300913436,TJ,CH4,3.9,kg/TJ,75.2735624004,kg +144a9b86-d246-3aa1-9225-774b9166f0d9,SESCO,II.1.1,Corrientes,AR-W,annual,2014,gas oil combustion consumption by to the public,19.300913436,TJ,N2O,3.9,kg/TJ,75.2735624004,kg +84ccce1a-dca9-34c1-a694-dd3e936c3089,SESCO,II.1.1,Córdoba,AR-X,annual,2014,gas oil combustion consumption by to the public,75.69227374799999,TJ,CO2,74100.0,kg/TJ,5608797.4847268,kg +8f6a8311-f4d1-3e4f-ac69-4d53e56c7c98,SESCO,II.1.1,Córdoba,AR-X,annual,2014,gas oil combustion consumption by to the public,75.69227374799999,TJ,CH4,3.9,kg/TJ,295.19986761719997,kg +8f6a8311-f4d1-3e4f-ac69-4d53e56c7c98,SESCO,II.1.1,Córdoba,AR-X,annual,2014,gas oil combustion consumption by to the public,75.69227374799999,TJ,N2O,3.9,kg/TJ,295.19986761719997,kg +cc8b4fcf-aa47-34fb-8b2d-f369c6587db0,SESCO,II.1.1,Entre Rios,AR-E,annual,2014,gas oil combustion consumption by to the public,69.014986068,TJ,CO2,74100.0,kg/TJ,5114010.4676388,kg +ff865edc-73b3-3426-97a9-312f984dc84b,SESCO,II.1.1,Entre Rios,AR-E,annual,2014,gas oil combustion consumption by to the public,69.014986068,TJ,CH4,3.9,kg/TJ,269.15844566519996,kg +ff865edc-73b3-3426-97a9-312f984dc84b,SESCO,II.1.1,Entre Rios,AR-E,annual,2014,gas oil combustion consumption by to the public,69.014986068,TJ,N2O,3.9,kg/TJ,269.15844566519996,kg +73a5e5ab-0be5-3109-ad9b-a127f95f4b6c,SESCO,II.1.1,Mendoza,AR-M,annual,2014,gas oil combustion consumption by to the public,28.890892632,TJ,CO2,74100.0,kg/TJ,2140815.1440312,kg +1013ffaa-ff0c-3759-815f-9011d7692691,SESCO,II.1.1,Mendoza,AR-M,annual,2014,gas oil combustion consumption by to the public,28.890892632,TJ,CH4,3.9,kg/TJ,112.6744812648,kg +1013ffaa-ff0c-3759-815f-9011d7692691,SESCO,II.1.1,Mendoza,AR-M,annual,2014,gas oil combustion consumption by to the public,28.890892632,TJ,N2O,3.9,kg/TJ,112.6744812648,kg +319610aa-acf5-3fff-900a-12de157b7191,SESCO,II.1.1,Misiones,AR-N,annual,2014,gas oil combustion consumption by to the public,23.066604036,TJ,CO2,74100.0,kg/TJ,1709235.3590676,kg +af48267f-26e5-38f6-9222-776cc3721f83,SESCO,II.1.1,Misiones,AR-N,annual,2014,gas oil combustion consumption by to the public,23.066604036,TJ,CH4,3.9,kg/TJ,89.9597557404,kg +af48267f-26e5-38f6-9222-776cc3721f83,SESCO,II.1.1,Misiones,AR-N,annual,2014,gas oil combustion consumption by to the public,23.066604036,TJ,N2O,3.9,kg/TJ,89.9597557404,kg +a723595f-7650-37a5-b1cb-c86121c123b4,SESCO,II.1.1,Salta,AR-A,annual,2014,gas oil combustion consumption by to the public,2.145289608,TJ,CO2,74100.0,kg/TJ,158965.9599528,kg +d27f3040-3809-31c1-9cf7-bd06ae83b901,SESCO,II.1.1,Salta,AR-A,annual,2014,gas oil combustion consumption by to the public,2.145289608,TJ,CH4,3.9,kg/TJ,8.3666294712,kg +d27f3040-3809-31c1-9cf7-bd06ae83b901,SESCO,II.1.1,Salta,AR-A,annual,2014,gas oil combustion consumption by to the public,2.145289608,TJ,N2O,3.9,kg/TJ,8.3666294712,kg +b0d0720d-7297-360c-b5a5-04c35b670392,SESCO,II.1.1,San Luis,AR-D,annual,2014,gas oil combustion consumption by to the public,26.928742259999996,TJ,CO2,74100.0,kg/TJ,1995419.8014659998,kg +d21ad90b-e6ae-3dc1-8ffc-0a99b20b4c4e,SESCO,II.1.1,San Luis,AR-D,annual,2014,gas oil combustion consumption by to the public,26.928742259999996,TJ,CH4,3.9,kg/TJ,105.02209481399998,kg +d21ad90b-e6ae-3dc1-8ffc-0a99b20b4c4e,SESCO,II.1.1,San Luis,AR-D,annual,2014,gas oil combustion consumption by to the public,26.928742259999996,TJ,N2O,3.9,kg/TJ,105.02209481399998,kg +2c6ad564-2ec0-33bf-bcff-a89c60b0136b,SESCO,II.1.1,Santa Fe,AR-S,annual,2014,gas oil combustion consumption by to the public,169.673418264,TJ,CO2,74100.0,kg/TJ,12572800.2933624,kg +8617cc40-6355-30b8-8479-bab417c7aa40,SESCO,II.1.1,Santa Fe,AR-S,annual,2014,gas oil combustion consumption by to the public,169.673418264,TJ,CH4,3.9,kg/TJ,661.7263312296,kg +8617cc40-6355-30b8-8479-bab417c7aa40,SESCO,II.1.1,Santa Fe,AR-S,annual,2014,gas oil combustion consumption by to the public,169.673418264,TJ,N2O,3.9,kg/TJ,661.7263312296,kg +284689d1-2c43-31e3-a25d-a5f7e6e511c9,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2014,gas oil combustion consumption by to the public,9.909355847999999,TJ,CO2,74100.0,kg/TJ,734283.2683367999,kg +994d437b-e343-3c4d-b618-785b65ff6888,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2014,gas oil combustion consumption by to the public,9.909355847999999,TJ,CH4,3.9,kg/TJ,38.646487807199996,kg +994d437b-e343-3c4d-b618-785b65ff6888,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2014,gas oil combustion consumption by to the public,9.909355847999999,TJ,N2O,3.9,kg/TJ,38.646487807199996,kg +de359937-e424-3f2b-8aa5-0e3a1e5bede0,SESCO,II.1.1,Tucuman,AR-T,annual,2014,gas oil combustion consumption by to the public,16.042470444,TJ,CO2,74100.0,kg/TJ,1188747.0599004,kg +93e97b81-850a-349f-8150-dc5cf43801a6,SESCO,II.1.1,Tucuman,AR-T,annual,2014,gas oil combustion consumption by to the public,16.042470444,TJ,CH4,3.9,kg/TJ,62.56563473159999,kg +93e97b81-850a-349f-8150-dc5cf43801a6,SESCO,II.1.1,Tucuman,AR-T,annual,2014,gas oil combustion consumption by to the public,16.042470444,TJ,N2O,3.9,kg/TJ,62.56563473159999,kg +571d7593-85ac-381f-819b-25086693d6c5,SESCO,II.1.1,Buenos Aires,AR-B,annual,2014,gas oil combustion consumption by public passenger transport,405.69825072,TJ,CO2,74100.0,kg/TJ,30062240.378351998,kg +89f975d7-6e1d-3d67-ab01-c2f1aedf628e,SESCO,II.1.1,Buenos Aires,AR-B,annual,2014,gas oil combustion consumption by public passenger transport,405.69825072,TJ,CH4,3.9,kg/TJ,1582.223177808,kg +89f975d7-6e1d-3d67-ab01-c2f1aedf628e,SESCO,II.1.1,Buenos Aires,AR-B,annual,2014,gas oil combustion consumption by public passenger transport,405.69825072,TJ,N2O,3.9,kg/TJ,1582.223177808,kg +af07c14b-2867-3bda-b673-b4be46ab22c6,SESCO,II.1.1,Chaco,AR-H,annual,2014,gas oil combustion consumption by public passenger transport,17.422016052,TJ,CO2,74100.0,kg/TJ,1290971.3894532,kg +4a08fc21-218e-3d96-aa0b-561872df87e6,SESCO,II.1.1,Chaco,AR-H,annual,2014,gas oil combustion consumption by public passenger transport,17.422016052,TJ,CH4,3.9,kg/TJ,67.9458626028,kg +4a08fc21-218e-3d96-aa0b-561872df87e6,SESCO,II.1.1,Chaco,AR-H,annual,2014,gas oil combustion consumption by public passenger transport,17.422016052,TJ,N2O,3.9,kg/TJ,67.9458626028,kg +02edd6e5-ec80-3c6d-91cf-0bf66bee2d22,SESCO,II.1.1,Corrientes,AR-W,annual,2014,gas oil combustion consumption by public passenger transport,34.726075019999996,TJ,CO2,74100.0,kg/TJ,2573202.158982,kg +28b5d4ab-f96e-33ff-a13b-4331dfbfe8bd,SESCO,II.1.1,Corrientes,AR-W,annual,2014,gas oil combustion consumption by public passenger transport,34.726075019999996,TJ,CH4,3.9,kg/TJ,135.43169257799997,kg +28b5d4ab-f96e-33ff-a13b-4331dfbfe8bd,SESCO,II.1.1,Corrientes,AR-W,annual,2014,gas oil combustion consumption by public passenger transport,34.726075019999996,TJ,N2O,3.9,kg/TJ,135.43169257799997,kg +a1a7a3e2-095a-39fa-a6e3-265c35718452,SESCO,II.1.1,Córdoba,AR-X,annual,2014,gas oil combustion consumption by public passenger transport,330.853453308,TJ,CO2,74100.0,kg/TJ,24516240.890122797,kg +40505df6-3b55-3ad0-bc89-d1679952a3fa,SESCO,II.1.1,Córdoba,AR-X,annual,2014,gas oil combustion consumption by public passenger transport,330.853453308,TJ,CH4,3.9,kg/TJ,1290.3284679012,kg +40505df6-3b55-3ad0-bc89-d1679952a3fa,SESCO,II.1.1,Córdoba,AR-X,annual,2014,gas oil combustion consumption by public passenger transport,330.853453308,TJ,N2O,3.9,kg/TJ,1290.3284679012,kg +9cebe517-a109-3d2f-a887-5985918b42d0,SESCO,II.1.1,Entre Rios,AR-E,annual,2014,gas oil combustion consumption by public passenger transport,95.658987144,TJ,CO2,74100.0,kg/TJ,7088330.9473704,kg +6d226c6b-8dbf-3ee1-87df-24415dae7846,SESCO,II.1.1,Entre Rios,AR-E,annual,2014,gas oil combustion consumption by public passenger transport,95.658987144,TJ,CH4,3.9,kg/TJ,373.07004986159995,kg +6d226c6b-8dbf-3ee1-87df-24415dae7846,SESCO,II.1.1,Entre Rios,AR-E,annual,2014,gas oil combustion consumption by public passenger transport,95.658987144,TJ,N2O,3.9,kg/TJ,373.07004986159995,kg +1f5d8224-687b-3419-a58d-cf62153d9a4d,SESCO,II.1.1,Jujuy,AR-Y,annual,2014,gas oil combustion consumption by public passenger transport,107.9331519,TJ,CO2,74100.0,kg/TJ,7997846.55579,kg +2f569486-4076-3b2a-bae6-9bf94529c183,SESCO,II.1.1,Jujuy,AR-Y,annual,2014,gas oil combustion consumption by public passenger transport,107.9331519,TJ,CH4,3.9,kg/TJ,420.93929241,kg +2f569486-4076-3b2a-bae6-9bf94529c183,SESCO,II.1.1,Jujuy,AR-Y,annual,2014,gas oil combustion consumption by public passenger transport,107.9331519,TJ,N2O,3.9,kg/TJ,420.93929241,kg +0a5598e0-7ccc-37bf-83d1-336a32aad16b,SESCO,II.1.1,Misiones,AR-N,annual,2014,gas oil combustion consumption by public passenger transport,14.307738816,TJ,CO2,74100.0,kg/TJ,1060203.4462656,kg +1b5e076c-6ea6-394b-b8aa-9c5fe65d7d4c,SESCO,II.1.1,Misiones,AR-N,annual,2014,gas oil combustion consumption by public passenger transport,14.307738816,TJ,CH4,3.9,kg/TJ,55.8001813824,kg +1b5e076c-6ea6-394b-b8aa-9c5fe65d7d4c,SESCO,II.1.1,Misiones,AR-N,annual,2014,gas oil combustion consumption by public passenger transport,14.307738816,TJ,N2O,3.9,kg/TJ,55.8001813824,kg +7df731d0-9cc2-38a8-90e3-e9301767c709,SESCO,II.1.1,Salta,AR-A,annual,2014,gas oil combustion consumption by public passenger transport,90.417527256,TJ,CO2,74100.0,kg/TJ,6699938.7696696,kg +e8a10ca7-add2-3b93-99d9-110774b9217f,SESCO,II.1.1,Salta,AR-A,annual,2014,gas oil combustion consumption by public passenger transport,90.417527256,TJ,CH4,3.9,kg/TJ,352.6283562984,kg +e8a10ca7-add2-3b93-99d9-110774b9217f,SESCO,II.1.1,Salta,AR-A,annual,2014,gas oil combustion consumption by public passenger transport,90.417527256,TJ,N2O,3.9,kg/TJ,352.6283562984,kg +f64fb68d-9496-369e-8b81-c021527566b3,SESCO,II.1.1,Santa Fe,AR-S,annual,2014,gas oil combustion consumption by public passenger transport,287.146714596,TJ,CO2,74100.0,kg/TJ,21277571.5515636,kg +5d36c83c-cfdc-3abe-aa93-9fb300df602a,SESCO,II.1.1,Santa Fe,AR-S,annual,2014,gas oil combustion consumption by public passenger transport,287.146714596,TJ,CH4,3.9,kg/TJ,1119.8721869244,kg +5d36c83c-cfdc-3abe-aa93-9fb300df602a,SESCO,II.1.1,Santa Fe,AR-S,annual,2014,gas oil combustion consumption by public passenger transport,287.146714596,TJ,N2O,3.9,kg/TJ,1119.8721869244,kg +59fbc363-b99e-3d03-a07b-2188eba473d5,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2014,gas oil combustion consumption by public passenger transport,119.468695164,TJ,CO2,74100.0,kg/TJ,8852630.3116524,kg +c5c5a21e-00d1-33b3-975d-aa817be45d07,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2014,gas oil combustion consumption by public passenger transport,119.468695164,TJ,CH4,3.9,kg/TJ,465.9279111396,kg +c5c5a21e-00d1-33b3-975d-aa817be45d07,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2014,gas oil combustion consumption by public passenger transport,119.468695164,TJ,N2O,3.9,kg/TJ,465.9279111396,kg +729d157a-1843-3797-82ab-13b33774a551,SESCO,II.1.1,Tucuman,AR-T,annual,2014,gas oil combustion consumption by public passenger transport,30.958293072,TJ,CO2,74100.0,kg/TJ,2294009.5166352,kg +de34cd09-e4cb-3576-bd95-06598db5a442,SESCO,II.1.1,Tucuman,AR-T,annual,2014,gas oil combustion consumption by public passenger transport,30.958293072,TJ,CH4,3.9,kg/TJ,120.7373429808,kg +de34cd09-e4cb-3576-bd95-06598db5a442,SESCO,II.1.1,Tucuman,AR-T,annual,2014,gas oil combustion consumption by public passenger transport,30.958293072,TJ,N2O,3.9,kg/TJ,120.7373429808,kg +0a4775d8-bb23-3cb1-aac4-b0c74bcc315b,SESCO,II.5.1,Buenos Aires,AR-B,annual,2014,gas oil combustion consumption by agriculture machines,405.36406847999996,TJ,CO2,74100.0,kg/TJ,30037477.474368,kg +bdb7a4bb-bd90-303e-8337-cd879e698827,SESCO,II.5.1,Buenos Aires,AR-B,annual,2014,gas oil combustion consumption by agriculture machines,405.36406847999996,TJ,CH4,3.9,kg/TJ,1580.9198670719998,kg +bdb7a4bb-bd90-303e-8337-cd879e698827,SESCO,II.5.1,Buenos Aires,AR-B,annual,2014,gas oil combustion consumption by agriculture machines,405.36406847999996,TJ,N2O,3.9,kg/TJ,1580.9198670719998,kg +73cdbf0d-0c10-32a9-bfda-20df2ac5e99b,SESCO,II.5.1,Córdoba,AR-X,annual,2014,gas oil combustion consumption by agriculture machines,64.75254072,TJ,CO2,74100.0,kg/TJ,4798163.267352,kg +415937c7-7f48-37eb-9669-95e4372db936,SESCO,II.5.1,Córdoba,AR-X,annual,2014,gas oil combustion consumption by agriculture machines,64.75254072,TJ,CH4,3.9,kg/TJ,252.53490880799998,kg +415937c7-7f48-37eb-9669-95e4372db936,SESCO,II.5.1,Córdoba,AR-X,annual,2014,gas oil combustion consumption by agriculture machines,64.75254072,TJ,N2O,3.9,kg/TJ,252.53490880799998,kg +6a6cfde2-0a6a-38ca-8485-898150474852,SESCO,II.5.1,Neuquén,AR-Q,annual,2014,gas oil combustion consumption by agriculture machines,51.60207947999999,TJ,CO2,74100.0,kg/TJ,3823714.0894679995,kg +b22c5e63-71ba-3856-a51c-c2f8ab4ec27d,SESCO,II.5.1,Neuquén,AR-Q,annual,2014,gas oil combustion consumption by agriculture machines,51.60207947999999,TJ,CH4,3.9,kg/TJ,201.24810997199998,kg +b22c5e63-71ba-3856-a51c-c2f8ab4ec27d,SESCO,II.5.1,Neuquén,AR-Q,annual,2014,gas oil combustion consumption by agriculture machines,51.60207947999999,TJ,N2O,3.9,kg/TJ,201.24810997199998,kg +60bf848d-6ad1-3f80-9c19-61237c61189e,SESCO,II.5.1,Rio Negro,AR-R,annual,2014,gas oil combustion consumption by agriculture machines,5.4907818,TJ,CO2,74100.0,kg/TJ,406866.93137999997,kg +eadb8a95-7c44-35d2-b7c5-ce097f10f7f8,SESCO,II.5.1,Rio Negro,AR-R,annual,2014,gas oil combustion consumption by agriculture machines,5.4907818,TJ,CH4,3.9,kg/TJ,21.414049019999997,kg +eadb8a95-7c44-35d2-b7c5-ce097f10f7f8,SESCO,II.5.1,Rio Negro,AR-R,annual,2014,gas oil combustion consumption by agriculture machines,5.4907818,TJ,N2O,3.9,kg/TJ,21.414049019999997,kg +9e891157-f5bd-303d-996f-012afc5f1b22,SESCO,II.5.1,Santa Fe,AR-S,annual,2014,gas oil combustion consumption by agriculture machines,7.21692048,TJ,CO2,74100.0,kg/TJ,534773.8075679999,kg +24af5343-5e63-32c4-a71d-aa2d8dbdef1a,SESCO,II.5.1,Santa Fe,AR-S,annual,2014,gas oil combustion consumption by agriculture machines,7.21692048,TJ,CH4,3.9,kg/TJ,28.145989871999998,kg +24af5343-5e63-32c4-a71d-aa2d8dbdef1a,SESCO,II.5.1,Santa Fe,AR-S,annual,2014,gas oil combustion consumption by agriculture machines,7.21692048,TJ,N2O,3.9,kg/TJ,28.145989871999998,kg +3485fd94-4517-30c4-9f5f-3f0245ac136d,SESCO,II.1.1,Buenos Aires,AR-B,annual,2014,gas oil combustion consumption by to the public,8303.62033452,TJ,CO2,74100.0,kg/TJ,615298266.7879319,kg +50ed8a93-835b-3d95-881c-813eb3c45209,SESCO,II.1.1,Buenos Aires,AR-B,annual,2014,gas oil combustion consumption by to the public,8303.62033452,TJ,CH4,3.9,kg/TJ,32384.119304627995,kg +50ed8a93-835b-3d95-881c-813eb3c45209,SESCO,II.1.1,Buenos Aires,AR-B,annual,2014,gas oil combustion consumption by to the public,8303.62033452,TJ,N2O,3.9,kg/TJ,32384.119304627995,kg +ab85f7a7-bec1-3819-a6f2-85b41a27adc9,SESCO,II.1.1,Capital Federal,AR-C,annual,2014,gas oil combustion consumption by to the public,538.41349716,TJ,CO2,74100.0,kg/TJ,39896440.139556,kg +ee29934b-b9b9-31b8-bdd1-774a6f4f8de7,SESCO,II.1.1,Capital Federal,AR-C,annual,2014,gas oil combustion consumption by to the public,538.41349716,TJ,CH4,3.9,kg/TJ,2099.812638924,kg +ee29934b-b9b9-31b8-bdd1-774a6f4f8de7,SESCO,II.1.1,Capital Federal,AR-C,annual,2014,gas oil combustion consumption by to the public,538.41349716,TJ,N2O,3.9,kg/TJ,2099.812638924,kg +876d7e8c-d6e7-3637-adf6-a7c28c9578e5,SESCO,II.1.1,Chaco,AR-H,annual,2014,gas oil combustion consumption by to the public,7.28529564,TJ,CO2,74100.0,kg/TJ,539840.406924,kg +79f915fe-6d76-36f6-a7a2-314cf4f09470,SESCO,II.1.1,Chaco,AR-H,annual,2014,gas oil combustion consumption by to the public,7.28529564,TJ,CH4,3.9,kg/TJ,28.412652996,kg +79f915fe-6d76-36f6-a7a2-314cf4f09470,SESCO,II.1.1,Chaco,AR-H,annual,2014,gas oil combustion consumption by to the public,7.28529564,TJ,N2O,3.9,kg/TJ,28.412652996,kg +f7d0ec9d-26e9-3629-ae3b-2dc8256875d1,SESCO,II.1.1,Chubut,AR-U,annual,2014,gas oil combustion consumption by to the public,1639.3622221199998,TJ,CO2,74100.0,kg/TJ,121476740.659092,kg +c23e8a20-b164-3520-9fe1-37c859db922b,SESCO,II.1.1,Chubut,AR-U,annual,2014,gas oil combustion consumption by to the public,1639.3622221199998,TJ,CH4,3.9,kg/TJ,6393.5126662679995,kg +c23e8a20-b164-3520-9fe1-37c859db922b,SESCO,II.1.1,Chubut,AR-U,annual,2014,gas oil combustion consumption by to the public,1639.3622221199998,TJ,N2O,3.9,kg/TJ,6393.5126662679995,kg +4a68bc15-3554-36df-8a86-96b7c78a55b6,SESCO,II.1.1,Córdoba,AR-X,annual,2014,gas oil combustion consumption by to the public,498.4590702,TJ,CO2,74100.0,kg/TJ,36935817.10182,kg +d171b28e-b2dc-363d-8cdf-1cdb3230677f,SESCO,II.1.1,Córdoba,AR-X,annual,2014,gas oil combustion consumption by to the public,498.4590702,TJ,CH4,3.9,kg/TJ,1943.9903737799998,kg +d171b28e-b2dc-363d-8cdf-1cdb3230677f,SESCO,II.1.1,Córdoba,AR-X,annual,2014,gas oil combustion consumption by to the public,498.4590702,TJ,N2O,3.9,kg/TJ,1943.9903737799998,kg +a74d0fa7-88ac-3df0-bba6-c84aeb1848a0,SESCO,II.1.1,Entre Rios,AR-E,annual,2014,gas oil combustion consumption by to the public,439.42028004,TJ,CO2,74100.0,kg/TJ,32561042.750964,kg +8146f479-3ff5-3e52-9776-f2f569150e8e,SESCO,II.1.1,Entre Rios,AR-E,annual,2014,gas oil combustion consumption by to the public,439.42028004,TJ,CH4,3.9,kg/TJ,1713.739092156,kg +8146f479-3ff5-3e52-9776-f2f569150e8e,SESCO,II.1.1,Entre Rios,AR-E,annual,2014,gas oil combustion consumption by to the public,439.42028004,TJ,N2O,3.9,kg/TJ,1713.739092156,kg +82fff68a-2871-38a8-87c0-702c7bdbff03,SESCO,II.1.1,La Pampa,AR-L,annual,2014,gas oil combustion consumption by to the public,533.89560756,TJ,CO2,74100.0,kg/TJ,39561664.520196006,kg +b71890ea-2b18-3bea-ae37-fb46d6accf02,SESCO,II.1.1,La Pampa,AR-L,annual,2014,gas oil combustion consumption by to the public,533.89560756,TJ,CH4,3.9,kg/TJ,2082.192869484,kg +b71890ea-2b18-3bea-ae37-fb46d6accf02,SESCO,II.1.1,La Pampa,AR-L,annual,2014,gas oil combustion consumption by to the public,533.89560756,TJ,N2O,3.9,kg/TJ,2082.192869484,kg +22943470-21ca-303a-be80-a8afa95506d7,SESCO,II.1.1,Mendoza,AR-M,annual,2014,gas oil combustion consumption by to the public,64.69933596,TJ,CO2,74100.0,kg/TJ,4794220.794636,kg +177d8c1c-e64d-36e1-a824-ce0fcd7adaf1,SESCO,II.1.1,Mendoza,AR-M,annual,2014,gas oil combustion consumption by to the public,64.69933596,TJ,CH4,3.9,kg/TJ,252.327410244,kg +177d8c1c-e64d-36e1-a824-ce0fcd7adaf1,SESCO,II.1.1,Mendoza,AR-M,annual,2014,gas oil combustion consumption by to the public,64.69933596,TJ,N2O,3.9,kg/TJ,252.327410244,kg +f8e9f1dc-e661-3404-a43c-4f7707f303dc,SESCO,II.1.1,Neuquén,AR-Q,annual,2014,gas oil combustion consumption by to the public,993.83215596,TJ,CO2,74100.0,kg/TJ,73642962.75663601,kg +b2766237-59de-3d8b-abe6-d8ff4c0c34d8,SESCO,II.1.1,Neuquén,AR-Q,annual,2014,gas oil combustion consumption by to the public,993.83215596,TJ,CH4,3.9,kg/TJ,3875.945408244,kg +b2766237-59de-3d8b-abe6-d8ff4c0c34d8,SESCO,II.1.1,Neuquén,AR-Q,annual,2014,gas oil combustion consumption by to the public,993.83215596,TJ,N2O,3.9,kg/TJ,3875.945408244,kg +42d6144e-32ad-3625-aef6-c85df04391f5,SESCO,II.1.1,Rio Negro,AR-R,annual,2014,gas oil combustion consumption by to the public,2130.70738608,TJ,CO2,74100.0,kg/TJ,157885417.308528,kg +965286f9-25c7-33ae-9d22-102c38728fb1,SESCO,II.1.1,Rio Negro,AR-R,annual,2014,gas oil combustion consumption by to the public,2130.70738608,TJ,CH4,3.9,kg/TJ,8309.758805712001,kg +965286f9-25c7-33ae-9d22-102c38728fb1,SESCO,II.1.1,Rio Negro,AR-R,annual,2014,gas oil combustion consumption by to the public,2130.70738608,TJ,N2O,3.9,kg/TJ,8309.758805712001,kg +44a01822-fce3-3f99-8c82-47893ebb3379,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2014,gas oil combustion consumption by to the public,1420.11223284,TJ,CO2,74100.0,kg/TJ,105230316.45344399,kg +18f8b353-89bb-3658-8490-399aeb12b5fa,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2014,gas oil combustion consumption by to the public,1420.11223284,TJ,CH4,3.9,kg/TJ,5538.437708076,kg +18f8b353-89bb-3658-8490-399aeb12b5fa,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2014,gas oil combustion consumption by to the public,1420.11223284,TJ,N2O,3.9,kg/TJ,5538.437708076,kg +fea43ca4-6a3d-3239-9e78-8006368fca12,SESCO,II.1.1,Santa Fe,AR-S,annual,2014,gas oil combustion consumption by to the public,481.46211791999997,TJ,CO2,74100.0,kg/TJ,35676342.937872,kg +74e8eaec-233f-3ea9-9d0d-e9ca4a8e7d7b,SESCO,II.1.1,Santa Fe,AR-S,annual,2014,gas oil combustion consumption by to the public,481.46211791999997,TJ,CH4,3.9,kg/TJ,1877.7022598879998,kg +74e8eaec-233f-3ea9-9d0d-e9ca4a8e7d7b,SESCO,II.1.1,Santa Fe,AR-S,annual,2014,gas oil combustion consumption by to the public,481.46211791999997,TJ,N2O,3.9,kg/TJ,1877.7022598879998,kg +13e6bf27-5026-3294-b9ee-4a9a2e431e35,SESCO,II.1.1,Buenos Aires,AR-B,annual,2014,gas oil combustion consumption by to the public,986.44861392,TJ,CO2,74100.0,kg/TJ,73095842.291472,kg +a5f65c26-6061-31d4-ba6b-7e1fbc04e202,SESCO,II.1.1,Buenos Aires,AR-B,annual,2014,gas oil combustion consumption by to the public,986.44861392,TJ,CH4,3.9,kg/TJ,3847.1495942879997,kg +a5f65c26-6061-31d4-ba6b-7e1fbc04e202,SESCO,II.1.1,Buenos Aires,AR-B,annual,2014,gas oil combustion consumption by to the public,986.44861392,TJ,N2O,3.9,kg/TJ,3847.1495942879997,kg +78dcc744-b1bb-306e-80f6-76eb5ae4383a,SESCO,II.1.1,Capital Federal,AR-C,annual,2014,gas oil combustion consumption by to the public,147.10661028,TJ,CO2,74100.0,kg/TJ,10900599.821748002,kg +bdd9131e-3d69-3ada-b0fa-9478abdd1d66,SESCO,II.1.1,Capital Federal,AR-C,annual,2014,gas oil combustion consumption by to the public,147.10661028,TJ,CH4,3.9,kg/TJ,573.715780092,kg +bdd9131e-3d69-3ada-b0fa-9478abdd1d66,SESCO,II.1.1,Capital Federal,AR-C,annual,2014,gas oil combustion consumption by to the public,147.10661028,TJ,N2O,3.9,kg/TJ,573.715780092,kg +e36edc34-9606-3468-bb14-ae62843fa6f7,SESCO,II.1.1,Chubut,AR-U,annual,2014,gas oil combustion consumption by to the public,3.25943268,TJ,CO2,74100.0,kg/TJ,241523.961588,kg +798f3355-d2e0-30f5-bdcf-88db60549bc4,SESCO,II.1.1,Chubut,AR-U,annual,2014,gas oil combustion consumption by to the public,3.25943268,TJ,CH4,3.9,kg/TJ,12.711787452000001,kg +798f3355-d2e0-30f5-bdcf-88db60549bc4,SESCO,II.1.1,Chubut,AR-U,annual,2014,gas oil combustion consumption by to the public,3.25943268,TJ,N2O,3.9,kg/TJ,12.711787452000001,kg +bdd102fa-4ca9-31b3-8df7-a7cd90da73ef,SESCO,II.1.1,Córdoba,AR-X,annual,2014,gas oil combustion consumption by to the public,75.90144828,TJ,CO2,74100.0,kg/TJ,5624297.317547999,kg +29e893c9-2a00-3787-9f84-ac84aee09035,SESCO,II.1.1,Córdoba,AR-X,annual,2014,gas oil combustion consumption by to the public,75.90144828,TJ,CH4,3.9,kg/TJ,296.015648292,kg +29e893c9-2a00-3787-9f84-ac84aee09035,SESCO,II.1.1,Córdoba,AR-X,annual,2014,gas oil combustion consumption by to the public,75.90144828,TJ,N2O,3.9,kg/TJ,296.015648292,kg +452b8e03-1280-3f22-b04a-6df18f47013f,SESCO,II.1.1,Entre Rios,AR-E,annual,2014,gas oil combustion consumption by to the public,68.1607878,TJ,CO2,74100.0,kg/TJ,5050714.37598,kg +32fae030-51a7-3a13-ade0-8df2a9e3ad85,SESCO,II.1.1,Entre Rios,AR-E,annual,2014,gas oil combustion consumption by to the public,68.1607878,TJ,CH4,3.9,kg/TJ,265.82707242,kg +32fae030-51a7-3a13-ade0-8df2a9e3ad85,SESCO,II.1.1,Entre Rios,AR-E,annual,2014,gas oil combustion consumption by to the public,68.1607878,TJ,N2O,3.9,kg/TJ,265.82707242,kg +56658383-bcbc-32a5-85f4-1db656a59211,SESCO,II.1.1,La Pampa,AR-L,annual,2014,gas oil combustion consumption by to the public,43.0167528,TJ,CO2,74100.0,kg/TJ,3187541.38248,kg +8356f3ac-2f0d-3e03-9f7c-0dd39742e25e,SESCO,II.1.1,La Pampa,AR-L,annual,2014,gas oil combustion consumption by to the public,43.0167528,TJ,CH4,3.9,kg/TJ,167.76533591999998,kg +8356f3ac-2f0d-3e03-9f7c-0dd39742e25e,SESCO,II.1.1,La Pampa,AR-L,annual,2014,gas oil combustion consumption by to the public,43.0167528,TJ,N2O,3.9,kg/TJ,167.76533591999998,kg +9942056d-0cc4-3a8d-8410-1cd5242b2d69,SESCO,II.1.1,Neuquén,AR-Q,annual,2014,gas oil combustion consumption by to the public,122.48743499999999,TJ,CO2,74100.0,kg/TJ,9076318.9335,kg +a28cec61-e13b-3d4b-beac-d3ed8a0443e4,SESCO,II.1.1,Neuquén,AR-Q,annual,2014,gas oil combustion consumption by to the public,122.48743499999999,TJ,CH4,3.9,kg/TJ,477.7009965,kg +a28cec61-e13b-3d4b-beac-d3ed8a0443e4,SESCO,II.1.1,Neuquén,AR-Q,annual,2014,gas oil combustion consumption by to the public,122.48743499999999,TJ,N2O,3.9,kg/TJ,477.7009965,kg +5a7b97c6-8c16-35c8-8d29-519839d20b1c,SESCO,II.1.1,Rio Negro,AR-R,annual,2014,gas oil combustion consumption by to the public,75.42672312,TJ,CO2,74100.0,kg/TJ,5589120.183192001,kg +56672863-6c6c-3ba9-bc2d-bc20466d662e,SESCO,II.1.1,Rio Negro,AR-R,annual,2014,gas oil combustion consumption by to the public,75.42672312,TJ,CH4,3.9,kg/TJ,294.16422016800004,kg +56672863-6c6c-3ba9-bc2d-bc20466d662e,SESCO,II.1.1,Rio Negro,AR-R,annual,2014,gas oil combustion consumption by to the public,75.42672312,TJ,N2O,3.9,kg/TJ,294.16422016800004,kg +b5d5612c-6810-3521-ac2b-880d623c1ef7,SESCO,II.1.1,Santa Fe,AR-S,annual,2014,gas oil combustion consumption by to the public,126.45211068,TJ,CO2,74100.0,kg/TJ,9370101.401388,kg +b04cd84a-b502-3a19-8aca-74e7a676f1bf,SESCO,II.1.1,Santa Fe,AR-S,annual,2014,gas oil combustion consumption by to the public,126.45211068,TJ,CH4,3.9,kg/TJ,493.163231652,kg +b04cd84a-b502-3a19-8aca-74e7a676f1bf,SESCO,II.1.1,Santa Fe,AR-S,annual,2014,gas oil combustion consumption by to the public,126.45211068,TJ,N2O,3.9,kg/TJ,493.163231652,kg +688a9376-cd35-3ac5-b128-75bfcbea73ca,SESCO,II.2.1,Buenos Aires,AR-B,annual,2014,gas oil combustion consumption by railway transport,31.795460759999997,TJ,CO2,74100.0,kg/TJ,2356043.6423159996,kg +94c46f17-79b5-3802-af40-316befa19f6c,SESCO,II.2.1,Buenos Aires,AR-B,annual,2014,gas oil combustion consumption by railway transport,31.795460759999997,TJ,CH4,3.9,kg/TJ,124.00229696399998,kg +94c46f17-79b5-3802-af40-316befa19f6c,SESCO,II.2.1,Buenos Aires,AR-B,annual,2014,gas oil combustion consumption by railway transport,31.795460759999997,TJ,N2O,3.9,kg/TJ,124.00229696399998,kg +ece888ea-64c7-3ea8-9760-7d4c914d7f21,SESCO,II.1.1,Buenos Aires,AR-B,annual,2014,gasoline combustion consumption by freight transport,7.426895,TJ,CO2,69300.0,kg/TJ,514683.8235,kg +b8c54d9f-bbdd-3dc1-89ae-9a86b900d273,SESCO,II.1.1,Buenos Aires,AR-B,annual,2014,gasoline combustion consumption by freight transport,7.426895,TJ,CH4,33.0,kg/TJ,245.087535,kg +0c056c86-a353-32ff-86fd-b197a4a7b495,SESCO,II.1.1,Buenos Aires,AR-B,annual,2014,gasoline combustion consumption by freight transport,7.426895,TJ,N2O,3.2,kg/TJ,23.766064,kg +238693e8-6554-369f-a817-b3b5490ec071,SESCO,II.1.1,Buenos Aires,AR-B,annual,2014,gas oil combustion consumption by freight transport,285.60557172,TJ,CO2,74100.0,kg/TJ,21163372.864452,kg +875ea892-184b-35e6-8847-4f679756a9ef,SESCO,II.1.1,Buenos Aires,AR-B,annual,2014,gas oil combustion consumption by freight transport,285.60557172,TJ,CH4,3.9,kg/TJ,1113.861729708,kg +875ea892-184b-35e6-8847-4f679756a9ef,SESCO,II.1.1,Buenos Aires,AR-B,annual,2014,gas oil combustion consumption by freight transport,285.60557172,TJ,N2O,3.9,kg/TJ,1113.861729708,kg +29c94b10-3c81-3df0-bec7-e229f716773d,SESCO,II.1.1,San Luis,AR-D,annual,2014,gas oil combustion consumption by freight transport,55.78654536,TJ,CO2,74100.0,kg/TJ,4133783.011176,kg +5d3dc221-e567-3ec5-a6d4-179e6b4594c1,SESCO,II.1.1,San Luis,AR-D,annual,2014,gas oil combustion consumption by freight transport,55.78654536,TJ,CH4,3.9,kg/TJ,217.56752690399998,kg +5d3dc221-e567-3ec5-a6d4-179e6b4594c1,SESCO,II.1.1,San Luis,AR-D,annual,2014,gas oil combustion consumption by freight transport,55.78654536,TJ,N2O,3.9,kg/TJ,217.56752690399998,kg +b00e0175-742e-354f-a924-be330a6c4473,SESCO,II.1.1,Buenos Aires,AR-B,annual,2014,gas oil combustion consumption by freight transport,2.66247744,TJ,CO2,74100.0,kg/TJ,197289.578304,kg +8b2a5392-e1de-348c-84c6-ea6a82ef30a0,SESCO,II.1.1,Buenos Aires,AR-B,annual,2014,gas oil combustion consumption by freight transport,2.66247744,TJ,CH4,3.9,kg/TJ,10.383662015999999,kg +8b2a5392-e1de-348c-84c6-ea6a82ef30a0,SESCO,II.1.1,Buenos Aires,AR-B,annual,2014,gas oil combustion consumption by freight transport,2.66247744,TJ,N2O,3.9,kg/TJ,10.383662015999999,kg +f325b0b1-4fcd-3ee0-a9c3-c171c6e5187a,SESCO,II.1.1,Buenos Aires,AR-B,annual,2014,gas oil combustion consumption by public passenger transport,443.17824096,TJ,CO2,74100.0,kg/TJ,32839507.655136,kg +9f2f8a6f-8371-3596-8e90-99aed61dba40,SESCO,II.1.1,Buenos Aires,AR-B,annual,2014,gas oil combustion consumption by public passenger transport,443.17824096,TJ,CH4,3.9,kg/TJ,1728.3951397439998,kg +9f2f8a6f-8371-3596-8e90-99aed61dba40,SESCO,II.1.1,Buenos Aires,AR-B,annual,2014,gas oil combustion consumption by public passenger transport,443.17824096,TJ,N2O,3.9,kg/TJ,1728.3951397439998,kg +305f6e6d-cb82-32ab-802d-99f9d447d0e3,SESCO,II.1.1,Capital Federal,AR-C,annual,2014,gas oil combustion consumption by public passenger transport,15.846747,TJ,CO2,74100.0,kg/TJ,1174243.9527,kg +1a901dde-0d80-3e70-902a-95f61cd70cbe,SESCO,II.1.1,Capital Federal,AR-C,annual,2014,gas oil combustion consumption by public passenger transport,15.846747,TJ,CH4,3.9,kg/TJ,61.8023133,kg +1a901dde-0d80-3e70-902a-95f61cd70cbe,SESCO,II.1.1,Capital Federal,AR-C,annual,2014,gas oil combustion consumption by public passenger transport,15.846747,TJ,N2O,3.9,kg/TJ,61.8023133,kg +efb2d4e3-1669-3f6b-a253-77651eac60c4,SESCO,II.1.1,Chubut,AR-U,annual,2014,gas oil combustion consumption by public passenger transport,20.48787804,TJ,CO2,74100.0,kg/TJ,1518151.7627639999,kg +937ccb24-8a2d-360d-aa26-668b80fc0013,SESCO,II.1.1,Chubut,AR-U,annual,2014,gas oil combustion consumption by public passenger transport,20.48787804,TJ,CH4,3.9,kg/TJ,79.902724356,kg +937ccb24-8a2d-360d-aa26-668b80fc0013,SESCO,II.1.1,Chubut,AR-U,annual,2014,gas oil combustion consumption by public passenger transport,20.48787804,TJ,N2O,3.9,kg/TJ,79.902724356,kg +21f4a188-d550-327f-9a52-3e6c8a8b9f45,SESCO,II.1.1,Córdoba,AR-X,annual,2014,gas oil combustion consumption by public passenger transport,270.50228268,TJ,CO2,74100.0,kg/TJ,20044219.146588,kg +6e093682-b2fc-3c4d-9260-cc01c3085fbc,SESCO,II.1.1,Córdoba,AR-X,annual,2014,gas oil combustion consumption by public passenger transport,270.50228268,TJ,CH4,3.9,kg/TJ,1054.958902452,kg +6e093682-b2fc-3c4d-9260-cc01c3085fbc,SESCO,II.1.1,Córdoba,AR-X,annual,2014,gas oil combustion consumption by public passenger transport,270.50228268,TJ,N2O,3.9,kg/TJ,1054.958902452,kg +f5ae7682-beaa-3259-bc7f-061a1a7da5de,SESCO,II.1.1,Neuquén,AR-Q,annual,2014,gas oil combustion consumption by public passenger transport,25.54092156,TJ,CO2,74100.0,kg/TJ,1892582.2875960001,kg +82612a60-0937-3e7f-8a5a-b1cc7dd43777,SESCO,II.1.1,Neuquén,AR-Q,annual,2014,gas oil combustion consumption by public passenger transport,25.54092156,TJ,CH4,3.9,kg/TJ,99.60959408400001,kg +82612a60-0937-3e7f-8a5a-b1cc7dd43777,SESCO,II.1.1,Neuquén,AR-Q,annual,2014,gas oil combustion consumption by public passenger transport,25.54092156,TJ,N2O,3.9,kg/TJ,99.60959408400001,kg +9d82435b-a3db-3a82-8a88-2814e338eecc,SESCO,II.1.1,Rio Negro,AR-R,annual,2014,gas oil combustion consumption by public passenger transport,124.13114784,TJ,CO2,74100.0,kg/TJ,9198118.054944,kg +c26d4e49-73ce-3c9a-9e5a-c6a4d9bf73ca,SESCO,II.1.1,Rio Negro,AR-R,annual,2014,gas oil combustion consumption by public passenger transport,124.13114784,TJ,CH4,3.9,kg/TJ,484.111476576,kg +c26d4e49-73ce-3c9a-9e5a-c6a4d9bf73ca,SESCO,II.1.1,Rio Negro,AR-R,annual,2014,gas oil combustion consumption by public passenger transport,124.13114784,TJ,N2O,3.9,kg/TJ,484.111476576,kg +43064ff4-aafd-34cc-a734-1dcefc7478f7,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2014,gas oil combustion consumption by public passenger transport,19.14276924,TJ,CO2,74100.0,kg/TJ,1418479.200684,kg +1228b506-ffae-3993-96ae-5caeb8fa494b,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2014,gas oil combustion consumption by public passenger transport,19.14276924,TJ,CH4,3.9,kg/TJ,74.65680003599999,kg +1228b506-ffae-3993-96ae-5caeb8fa494b,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2014,gas oil combustion consumption by public passenger transport,19.14276924,TJ,N2O,3.9,kg/TJ,74.65680003599999,kg +94ef5cdb-d4f3-3d58-adef-3db091d7c5f5,SESCO,II.1.1,Santa Fe,AR-S,annual,2014,gas oil combustion consumption by public passenger transport,6.941216519999999,TJ,CO2,74100.0,kg/TJ,514344.1441319999,kg +b1f16df7-98da-362b-8d3a-199fc4a01748,SESCO,II.1.1,Santa Fe,AR-S,annual,2014,gas oil combustion consumption by public passenger transport,6.941216519999999,TJ,CH4,3.9,kg/TJ,27.070744427999998,kg +b1f16df7-98da-362b-8d3a-199fc4a01748,SESCO,II.1.1,Santa Fe,AR-S,annual,2014,gas oil combustion consumption by public passenger transport,6.941216519999999,TJ,N2O,3.9,kg/TJ,27.070744427999998,kg +a38315ec-7b86-30de-a70d-bc7c0fa995d1,SESCO,II.1.1,Buenos Aires,AR-B,annual,2014,gas oil combustion consumption by to the public,2565.4374479999997,TJ,CO2,74100.0,kg/TJ,190098914.89679998,kg +21b31130-d50f-3808-89ea-265d7b195b52,SESCO,II.1.1,Buenos Aires,AR-B,annual,2014,gas oil combustion consumption by to the public,2565.4374479999997,TJ,CH4,3.9,kg/TJ,10005.2060472,kg +21b31130-d50f-3808-89ea-265d7b195b52,SESCO,II.1.1,Buenos Aires,AR-B,annual,2014,gas oil combustion consumption by to the public,2565.4374479999997,TJ,N2O,3.9,kg/TJ,10005.2060472,kg +e093c3ec-343e-359e-9afd-4a05f5971876,SESCO,II.1.1,Capital Federal,AR-C,annual,2014,gas oil combustion consumption by to the public,793.21326,TJ,CO2,74100.0,kg/TJ,58777102.566,kg +88f872d9-7533-3373-8d47-c64d02e71697,SESCO,II.1.1,Capital Federal,AR-C,annual,2014,gas oil combustion consumption by to the public,793.21326,TJ,CH4,3.9,kg/TJ,3093.5317139999997,kg +88f872d9-7533-3373-8d47-c64d02e71697,SESCO,II.1.1,Capital Federal,AR-C,annual,2014,gas oil combustion consumption by to the public,793.21326,TJ,N2O,3.9,kg/TJ,3093.5317139999997,kg +6b86d133-5c13-30a8-87d7-ccc6c82530ab,SESCO,II.1.1,Corrientes,AR-W,annual,2014,gas oil combustion consumption by to the public,4.76784,TJ,CO2,74100.0,kg/TJ,353296.94399999996,kg +81226f26-1ff7-3090-bcd6-e078f41c3461,SESCO,II.1.1,Corrientes,AR-W,annual,2014,gas oil combustion consumption by to the public,4.76784,TJ,CH4,3.9,kg/TJ,18.594575999999996,kg +81226f26-1ff7-3090-bcd6-e078f41c3461,SESCO,II.1.1,Corrientes,AR-W,annual,2014,gas oil combustion consumption by to the public,4.76784,TJ,N2O,3.9,kg/TJ,18.594575999999996,kg +84fb5841-1b97-30b0-bc7f-e3a07ce4e107,SESCO,II.1.1,Córdoba,AR-X,annual,2014,gas oil combustion consumption by to the public,446.76828,TJ,CO2,74100.0,kg/TJ,33105529.548,kg +9e366af1-2e85-3c41-8472-dc1e4bf2b6c8,SESCO,II.1.1,Córdoba,AR-X,annual,2014,gas oil combustion consumption by to the public,446.76828,TJ,CH4,3.9,kg/TJ,1742.396292,kg +9e366af1-2e85-3c41-8472-dc1e4bf2b6c8,SESCO,II.1.1,Córdoba,AR-X,annual,2014,gas oil combustion consumption by to the public,446.76828,TJ,N2O,3.9,kg/TJ,1742.396292,kg +e6d8e27a-81c2-3a87-a879-2bc5980c344e,SESCO,II.1.1,Entre Rios,AR-E,annual,2014,gas oil combustion consumption by to the public,249.37248,TJ,CO2,74100.0,kg/TJ,18478500.768,kg +0b0dfcc0-008b-324a-b0a2-c676fefe3997,SESCO,II.1.1,Entre Rios,AR-E,annual,2014,gas oil combustion consumption by to the public,249.37248,TJ,CH4,3.9,kg/TJ,972.5526719999999,kg +0b0dfcc0-008b-324a-b0a2-c676fefe3997,SESCO,II.1.1,Entre Rios,AR-E,annual,2014,gas oil combustion consumption by to the public,249.37248,TJ,N2O,3.9,kg/TJ,972.5526719999999,kg +c4e14505-9e35-3d6f-a1ae-251dba21c2f6,SESCO,II.1.1,La Pampa,AR-L,annual,2014,gas oil combustion consumption by to the public,65.84676,TJ,CO2,74100.0,kg/TJ,4879244.916,kg +b45020b1-ee05-31d4-90c7-f6d7511afca2,SESCO,II.1.1,La Pampa,AR-L,annual,2014,gas oil combustion consumption by to the public,65.84676,TJ,CH4,3.9,kg/TJ,256.802364,kg +b45020b1-ee05-31d4-90c7-f6d7511afca2,SESCO,II.1.1,La Pampa,AR-L,annual,2014,gas oil combustion consumption by to the public,65.84676,TJ,N2O,3.9,kg/TJ,256.802364,kg +130d891e-9c05-39ce-be80-6c2c9698fbec,SESCO,II.1.1,Rio Negro,AR-R,annual,2014,gas oil combustion consumption by to the public,19.82988,TJ,CO2,74100.0,kg/TJ,1469394.108,kg +4edf9649-f2e1-3bda-b644-374133ad3e7a,SESCO,II.1.1,Rio Negro,AR-R,annual,2014,gas oil combustion consumption by to the public,19.82988,TJ,CH4,3.9,kg/TJ,77.33653199999999,kg +4edf9649-f2e1-3bda-b644-374133ad3e7a,SESCO,II.1.1,Rio Negro,AR-R,annual,2014,gas oil combustion consumption by to the public,19.82988,TJ,N2O,3.9,kg/TJ,77.33653199999999,kg +45dbfecf-eba6-36dd-95ce-755266d1285a,SESCO,II.1.1,Salta,AR-A,annual,2014,gas oil combustion consumption by to the public,14.989799999999999,TJ,CO2,74100.0,kg/TJ,1110744.18,kg +63c3dbab-0265-3e2f-aa17-bf4e28f6cbbc,SESCO,II.1.1,Salta,AR-A,annual,2014,gas oil combustion consumption by to the public,14.989799999999999,TJ,CH4,3.9,kg/TJ,58.46021999999999,kg +63c3dbab-0265-3e2f-aa17-bf4e28f6cbbc,SESCO,II.1.1,Salta,AR-A,annual,2014,gas oil combustion consumption by to the public,14.989799999999999,TJ,N2O,3.9,kg/TJ,58.46021999999999,kg +134c92ee-c378-3212-8be7-718e90ce1e6c,SESCO,II.1.1,Santa Fe,AR-S,annual,2014,gas oil combustion consumption by to the public,208.37628,TJ,CO2,74100.0,kg/TJ,15440682.348000001,kg +293ce2f1-6d9e-379a-b524-efab557c6245,SESCO,II.1.1,Santa Fe,AR-S,annual,2014,gas oil combustion consumption by to the public,208.37628,TJ,CH4,3.9,kg/TJ,812.667492,kg +293ce2f1-6d9e-379a-b524-efab557c6245,SESCO,II.1.1,Santa Fe,AR-S,annual,2014,gas oil combustion consumption by to the public,208.37628,TJ,N2O,3.9,kg/TJ,812.667492,kg +8dd20904-7ea5-398b-ad6e-8b96fa49e839,SESCO,II.1.1,Buenos Aires,AR-B,annual,2014,gas oil combustion consumption by to the public,126.86066400000001,TJ,CO2,74100.0,kg/TJ,9400375.2024,kg +d20390d5-63d0-39db-a1bf-36df98ccc730,SESCO,II.1.1,Buenos Aires,AR-B,annual,2014,gas oil combustion consumption by to the public,126.86066400000001,TJ,CH4,3.9,kg/TJ,494.75658960000004,kg +d20390d5-63d0-39db-a1bf-36df98ccc730,SESCO,II.1.1,Buenos Aires,AR-B,annual,2014,gas oil combustion consumption by to the public,126.86066400000001,TJ,N2O,3.9,kg/TJ,494.75658960000004,kg +0f9cd18c-1d56-3cb0-bd60-4a4ee089f8c4,SESCO,II.1.1,Capital Federal,AR-C,annual,2014,gas oil combustion consumption by to the public,29.2572,TJ,CO2,74100.0,kg/TJ,2167958.52,kg +ea864647-96d9-36f3-8fcf-8e0611a6b614,SESCO,II.1.1,Capital Federal,AR-C,annual,2014,gas oil combustion consumption by to the public,29.2572,TJ,CH4,3.9,kg/TJ,114.10308,kg +ea864647-96d9-36f3-8fcf-8e0611a6b614,SESCO,II.1.1,Capital Federal,AR-C,annual,2014,gas oil combustion consumption by to the public,29.2572,TJ,N2O,3.9,kg/TJ,114.10308,kg +dc39d352-0b68-345a-87d1-05e16d963661,SESCO,II.1.1,Córdoba,AR-X,annual,2014,gas oil combustion consumption by to the public,14.12292,TJ,CO2,74100.0,kg/TJ,1046508.3720000001,kg +755b0bf9-9a59-31a0-895e-90ddf4e1be6c,SESCO,II.1.1,Córdoba,AR-X,annual,2014,gas oil combustion consumption by to the public,14.12292,TJ,CH4,3.9,kg/TJ,55.079388,kg +755b0bf9-9a59-31a0-895e-90ddf4e1be6c,SESCO,II.1.1,Córdoba,AR-X,annual,2014,gas oil combustion consumption by to the public,14.12292,TJ,N2O,3.9,kg/TJ,55.079388,kg +f09c14c7-c0a9-3877-9a0a-a62f3eddb87b,SESCO,II.1.1,Entre Rios,AR-E,annual,2014,gas oil combustion consumption by to the public,11.88348,TJ,CO2,74100.0,kg/TJ,880565.868,kg +b9f394fa-2b43-3b8d-abfc-82317f492cb1,SESCO,II.1.1,Entre Rios,AR-E,annual,2014,gas oil combustion consumption by to the public,11.88348,TJ,CH4,3.9,kg/TJ,46.345572000000004,kg +b9f394fa-2b43-3b8d-abfc-82317f492cb1,SESCO,II.1.1,Entre Rios,AR-E,annual,2014,gas oil combustion consumption by to the public,11.88348,TJ,N2O,3.9,kg/TJ,46.345572000000004,kg +c221fb3d-fab5-3a4a-a016-cf2958732916,SESCO,II.1.1,La Pampa,AR-L,annual,2014,gas oil combustion consumption by to the public,0.903,TJ,CO2,74100.0,kg/TJ,66912.3,kg +a77625a4-06e7-301d-83da-059279420a1d,SESCO,II.1.1,La Pampa,AR-L,annual,2014,gas oil combustion consumption by to the public,0.903,TJ,CH4,3.9,kg/TJ,3.5217,kg +a77625a4-06e7-301d-83da-059279420a1d,SESCO,II.1.1,La Pampa,AR-L,annual,2014,gas oil combustion consumption by to the public,0.903,TJ,N2O,3.9,kg/TJ,3.5217,kg +1fa44850-b7b5-34a1-8187-28863c80877f,SESCO,II.1.1,Santa Fe,AR-S,annual,2014,gas oil combustion consumption by to the public,37.373364,TJ,CO2,74100.0,kg/TJ,2769366.2724,kg +a4cadc22-3695-393e-818d-3d20d919a6ba,SESCO,II.1.1,Santa Fe,AR-S,annual,2014,gas oil combustion consumption by to the public,37.373364,TJ,CH4,3.9,kg/TJ,145.7561196,kg +a4cadc22-3695-393e-818d-3d20d919a6ba,SESCO,II.1.1,Santa Fe,AR-S,annual,2014,gas oil combustion consumption by to the public,37.373364,TJ,N2O,3.9,kg/TJ,145.7561196,kg +16c76883-9fae-3331-bac2-b2aeedc12871,SESCO,II.1.1,Tucuman,AR-T,annual,2014,gasoline combustion consumption by to the public,29.002766999999995,TJ,CO2,69300.0,kg/TJ,2009891.7530999996,kg +03d5d3b5-cf17-3c19-86a4-f401403d6729,SESCO,II.1.1,Tucuman,AR-T,annual,2014,gasoline combustion consumption by to the public,29.002766999999995,TJ,CH4,33.0,kg/TJ,957.0913109999998,kg +2118ca0e-6339-3ff9-b776-bb6986f47e39,SESCO,II.1.1,Tucuman,AR-T,annual,2014,gasoline combustion consumption by to the public,29.002766999999995,TJ,N2O,3.2,kg/TJ,92.80885439999999,kg +ea4cb014-8f99-3102-927b-4bbf5b15c849,SESCO,II.1.1,Catamarca,AR-K,annual,2014,gas oil combustion consumption by to the public,226.7014008,TJ,CO2,74100.0,kg/TJ,16798573.79928,kg +5093c9cf-d096-39fa-9eae-6e688eb1c8cc,SESCO,II.1.1,Catamarca,AR-K,annual,2014,gas oil combustion consumption by to the public,226.7014008,TJ,CH4,3.9,kg/TJ,884.1354631199999,kg +5093c9cf-d096-39fa-9eae-6e688eb1c8cc,SESCO,II.1.1,Catamarca,AR-K,annual,2014,gas oil combustion consumption by to the public,226.7014008,TJ,N2O,3.9,kg/TJ,884.1354631199999,kg +3eb85c6d-e941-3333-a8f9-b25a6d4336bb,SESCO,II.1.1,Chaco,AR-H,annual,2014,gas oil combustion consumption by to the public,136.4609988,TJ,CO2,74100.0,kg/TJ,10111760.01108,kg +5ce42c15-8d02-3433-a927-d0fc582630c0,SESCO,II.1.1,Chaco,AR-H,annual,2014,gas oil combustion consumption by to the public,136.4609988,TJ,CH4,3.9,kg/TJ,532.1978953199999,kg +5ce42c15-8d02-3433-a927-d0fc582630c0,SESCO,II.1.1,Chaco,AR-H,annual,2014,gas oil combustion consumption by to the public,136.4609988,TJ,N2O,3.9,kg/TJ,532.1978953199999,kg +0f835d5a-7bb5-3946-b8be-3e1feb110dbb,SESCO,II.1.1,Córdoba,AR-X,annual,2014,gas oil combustion consumption by to the public,76.70009759999999,TJ,CO2,74100.0,kg/TJ,5683477.232159999,kg +4ccb563c-73ff-3b42-a196-c11e596499de,SESCO,II.1.1,Córdoba,AR-X,annual,2014,gas oil combustion consumption by to the public,76.70009759999999,TJ,CH4,3.9,kg/TJ,299.13038063999994,kg +4ccb563c-73ff-3b42-a196-c11e596499de,SESCO,II.1.1,Córdoba,AR-X,annual,2014,gas oil combustion consumption by to the public,76.70009759999999,TJ,N2O,3.9,kg/TJ,299.13038063999994,kg +fb620e16-2e46-320e-802f-0806ba09bd71,SESCO,II.1.1,Jujuy,AR-Y,annual,2014,gas oil combustion consumption by to the public,799.4645484,TJ,CO2,74100.0,kg/TJ,59240323.03644,kg +b8a696fb-0c07-32f0-abca-b71a76378412,SESCO,II.1.1,Jujuy,AR-Y,annual,2014,gas oil combustion consumption by to the public,799.4645484,TJ,CH4,3.9,kg/TJ,3117.91173876,kg +b8a696fb-0c07-32f0-abca-b71a76378412,SESCO,II.1.1,Jujuy,AR-Y,annual,2014,gas oil combustion consumption by to the public,799.4645484,TJ,N2O,3.9,kg/TJ,3117.91173876,kg +a446450b-18ec-3253-986a-e21ea4e11a56,SESCO,II.1.1,La Rioja,AR-F,annual,2014,gas oil combustion consumption by to the public,187.2413844,TJ,CO2,74100.0,kg/TJ,13874586.58404,kg +2d79f680-5bd5-33fa-87c8-50bc54c5d67d,SESCO,II.1.1,La Rioja,AR-F,annual,2014,gas oil combustion consumption by to the public,187.2413844,TJ,CH4,3.9,kg/TJ,730.2413991599999,kg +2d79f680-5bd5-33fa-87c8-50bc54c5d67d,SESCO,II.1.1,La Rioja,AR-F,annual,2014,gas oil combustion consumption by to the public,187.2413844,TJ,N2O,3.9,kg/TJ,730.2413991599999,kg +460a7636-e56e-3881-aca4-e85e3099e220,SESCO,II.1.1,Salta,AR-A,annual,2014,gas oil combustion consumption by to the public,2258.3921640000003,TJ,CO2,74100.0,kg/TJ,167346859.35240003,kg +28a9f9a6-ced1-3612-915c-e8f68487bc4d,SESCO,II.1.1,Salta,AR-A,annual,2014,gas oil combustion consumption by to the public,2258.3921640000003,TJ,CH4,3.9,kg/TJ,8807.729439600002,kg +28a9f9a6-ced1-3612-915c-e8f68487bc4d,SESCO,II.1.1,Salta,AR-A,annual,2014,gas oil combustion consumption by to the public,2258.3921640000003,TJ,N2O,3.9,kg/TJ,8807.729439600002,kg +382c5965-21c8-3a35-b816-b2691a28ebbf,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2014,gas oil combustion consumption by to the public,411.7687224,TJ,CO2,74100.0,kg/TJ,30512062.32984,kg +0f09b9d7-43ff-340e-8806-0c4e55d46eba,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2014,gas oil combustion consumption by to the public,411.7687224,TJ,CH4,3.9,kg/TJ,1605.89801736,kg +0f09b9d7-43ff-340e-8806-0c4e55d46eba,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2014,gas oil combustion consumption by to the public,411.7687224,TJ,N2O,3.9,kg/TJ,1605.89801736,kg +29c295fd-0092-3678-b299-426884f930e4,SESCO,II.1.1,Tucuman,AR-T,annual,2014,gas oil combustion consumption by to the public,2576.2940364,TJ,CO2,74100.0,kg/TJ,190903388.09724,kg +9c5e20af-c84b-32f4-8b3c-d9c6f337746c,SESCO,II.1.1,Tucuman,AR-T,annual,2014,gas oil combustion consumption by to the public,2576.2940364,TJ,CH4,3.9,kg/TJ,10047.54674196,kg +9c5e20af-c84b-32f4-8b3c-d9c6f337746c,SESCO,II.1.1,Tucuman,AR-T,annual,2014,gas oil combustion consumption by to the public,2576.2940364,TJ,N2O,3.9,kg/TJ,10047.54674196,kg +d0baface-52dd-3419-8459-00305ab99c8b,SESCO,II.1.1,Catamarca,AR-K,annual,2014,gas oil combustion consumption by to the public,9.3543576,TJ,CO2,74100.0,kg/TJ,693157.89816,kg +8765d987-919b-3d0f-8fd7-30c298f92729,SESCO,II.1.1,Catamarca,AR-K,annual,2014,gas oil combustion consumption by to the public,9.3543576,TJ,CH4,3.9,kg/TJ,36.481994639999996,kg +8765d987-919b-3d0f-8fd7-30c298f92729,SESCO,II.1.1,Catamarca,AR-K,annual,2014,gas oil combustion consumption by to the public,9.3543576,TJ,N2O,3.9,kg/TJ,36.481994639999996,kg +fa52816d-9c21-37b1-b294-fea891897b5e,SESCO,II.1.1,Chaco,AR-H,annual,2014,gas oil combustion consumption by to the public,3.7864595999999997,TJ,CO2,74100.0,kg/TJ,280576.65635999996,kg +3ae03213-c685-3213-9fed-e55b1364ec5e,SESCO,II.1.1,Chaco,AR-H,annual,2014,gas oil combustion consumption by to the public,3.7864595999999997,TJ,CH4,3.9,kg/TJ,14.767192439999999,kg +3ae03213-c685-3213-9fed-e55b1364ec5e,SESCO,II.1.1,Chaco,AR-H,annual,2014,gas oil combustion consumption by to the public,3.7864595999999997,TJ,N2O,3.9,kg/TJ,14.767192439999999,kg +61827115-9b94-35ec-81ac-1afd68c76fbd,SESCO,II.1.1,Jujuy,AR-Y,annual,2014,gas oil combustion consumption by to the public,24.1400796,TJ,CO2,74100.0,kg/TJ,1788779.89836,kg +425a88fb-d3d4-31e7-b600-64f0f53ba1e2,SESCO,II.1.1,Jujuy,AR-Y,annual,2014,gas oil combustion consumption by to the public,24.1400796,TJ,CH4,3.9,kg/TJ,94.14631044,kg +425a88fb-d3d4-31e7-b600-64f0f53ba1e2,SESCO,II.1.1,Jujuy,AR-Y,annual,2014,gas oil combustion consumption by to the public,24.1400796,TJ,N2O,3.9,kg/TJ,94.14631044,kg +c519212c-394a-38c5-8d81-f9885c5d6bfa,SESCO,II.1.1,La Rioja,AR-F,annual,2014,gas oil combustion consumption by to the public,17.0984856,TJ,CO2,74100.0,kg/TJ,1266997.78296,kg +99697f88-4281-388e-861b-c22e62abc493,SESCO,II.1.1,La Rioja,AR-F,annual,2014,gas oil combustion consumption by to the public,17.0984856,TJ,CH4,3.9,kg/TJ,66.68409384,kg +99697f88-4281-388e-861b-c22e62abc493,SESCO,II.1.1,La Rioja,AR-F,annual,2014,gas oil combustion consumption by to the public,17.0984856,TJ,N2O,3.9,kg/TJ,66.68409384,kg +0559db5d-6706-34cf-96da-a58c2aef4938,SESCO,II.1.1,Salta,AR-A,annual,2014,gas oil combustion consumption by to the public,48.1122012,TJ,CO2,74100.0,kg/TJ,3565114.10892,kg +d231aeda-0177-3a59-a283-3a09a9e9a845,SESCO,II.1.1,Salta,AR-A,annual,2014,gas oil combustion consumption by to the public,48.1122012,TJ,CH4,3.9,kg/TJ,187.63758468,kg +d231aeda-0177-3a59-a283-3a09a9e9a845,SESCO,II.1.1,Salta,AR-A,annual,2014,gas oil combustion consumption by to the public,48.1122012,TJ,N2O,3.9,kg/TJ,187.63758468,kg +99d6c0c8-7b74-39a3-b627-f8bba6c670db,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2014,gas oil combustion consumption by to the public,34.4946,TJ,CO2,74100.0,kg/TJ,2556049.86,kg +653d26a5-a47c-34fc-9bf0-5ee597075967,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2014,gas oil combustion consumption by to the public,34.4946,TJ,CH4,3.9,kg/TJ,134.52893999999998,kg +653d26a5-a47c-34fc-9bf0-5ee597075967,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2014,gas oil combustion consumption by to the public,34.4946,TJ,N2O,3.9,kg/TJ,134.52893999999998,kg +9a4a4a73-ef7e-3942-9014-e7a7d740bdcf,SESCO,II.1.1,Tucuman,AR-T,annual,2014,gas oil combustion consumption by to the public,89.51258399999999,TJ,CO2,74100.0,kg/TJ,6632882.474399999,kg +ffdb225e-b816-37a9-ac12-91d056ff54ec,SESCO,II.1.1,Tucuman,AR-T,annual,2014,gas oil combustion consumption by to the public,89.51258399999999,TJ,CH4,3.9,kg/TJ,349.09907759999993,kg +ffdb225e-b816-37a9-ac12-91d056ff54ec,SESCO,II.1.1,Tucuman,AR-T,annual,2014,gas oil combustion consumption by to the public,89.51258399999999,TJ,N2O,3.9,kg/TJ,349.09907759999993,kg +e19bf225-cc69-38da-9081-4622ff7a8b35,SESCO,I.3.1,Buenos Aires,AR-B,annual,2014,gasoline combustion consumption by petrochemical industries,2.2504399999999998,TJ,CO2,69300.0,kg/TJ,155955.492,kg +b5975815-af1c-3010-929c-df3db9037cbd,SESCO,I.3.1,Buenos Aires,AR-B,annual,2014,gasoline combustion consumption by petrochemical industries,2.2504399999999998,TJ,CH4,33.0,kg/TJ,74.26451999999999,kg +f319d82e-a517-36ad-9de8-b60e71a3a149,SESCO,I.3.1,Buenos Aires,AR-B,annual,2014,gasoline combustion consumption by petrochemical industries,2.2504399999999998,TJ,N2O,3.2,kg/TJ,7.201408,kg +07260bf6-670e-3f0c-8973-d2995598491c,SESCO,I.3.1,Córdoba,AR-X,annual,2014,gasoline combustion consumption by petrochemical industries,66.673272,TJ,CO2,69300.0,kg/TJ,4620457.7496,kg +d8d7cf7e-b49a-3a37-bc08-0329c8c64393,SESCO,I.3.1,Córdoba,AR-X,annual,2014,gasoline combustion consumption by petrochemical industries,66.673272,TJ,CH4,33.0,kg/TJ,2200.217976,kg +077e9ac9-226a-3a73-b339-755de1bd73bf,SESCO,I.3.1,Córdoba,AR-X,annual,2014,gasoline combustion consumption by petrochemical industries,66.673272,TJ,N2O,3.2,kg/TJ,213.3544704,kg +b940a896-f848-30cf-bb6e-4457348643e8,SESCO,II.5.1,Buenos Aires,AR-B,annual,2014,gasoline combustion consumption by agriculture machines,7.1323,TJ,CO2,69300.0,kg/TJ,494268.39,kg +e0e6949a-0c47-3f09-9daf-12e0513cdd0d,SESCO,II.5.1,Buenos Aires,AR-B,annual,2014,gasoline combustion consumption by agriculture machines,7.1323,TJ,CH4,33.0,kg/TJ,235.36589999999998,kg +ceed7f57-0dce-3957-b9bd-68f2906134e6,SESCO,II.5.1,Buenos Aires,AR-B,annual,2014,gasoline combustion consumption by agriculture machines,7.1323,TJ,N2O,3.2,kg/TJ,22.82336,kg +771b74cc-bd50-365f-8aa5-53bd35b56042,SESCO,II.5.1,Capital Federal,AR-C,annual,2014,gasoline combustion consumption by agriculture machines,96.131,TJ,CO2,69300.0,kg/TJ,6661878.3,kg +4e300cd8-a3ad-3d2b-b906-6dc15439a2fe,SESCO,II.5.1,Capital Federal,AR-C,annual,2014,gasoline combustion consumption by agriculture machines,96.131,TJ,CH4,33.0,kg/TJ,3172.323,kg +b0ec7491-71d1-3c13-b966-3cd8b5769752,SESCO,II.5.1,Capital Federal,AR-C,annual,2014,gasoline combustion consumption by agriculture machines,96.131,TJ,N2O,3.2,kg/TJ,307.61920000000003,kg +1f3cc612-9ad1-3f0e-a6cb-1b6e46cf8c1c,SESCO,II.5.1,Buenos Aires,AR-B,annual,2014,gas oil combustion consumption by agriculture machines,462.48048,TJ,CO2,74100.0,kg/TJ,34269803.568,kg +6fcf2697-710b-3596-b391-d65da7095c88,SESCO,II.5.1,Buenos Aires,AR-B,annual,2014,gas oil combustion consumption by agriculture machines,462.48048,TJ,CH4,3.9,kg/TJ,1803.6738719999998,kg +6fcf2697-710b-3596-b391-d65da7095c88,SESCO,II.5.1,Buenos Aires,AR-B,annual,2014,gas oil combustion consumption by agriculture machines,462.48048,TJ,N2O,3.9,kg/TJ,1803.6738719999998,kg +56f081f9-dbbf-3769-b77d-3221b941e113,SESCO,II.5.1,Capital Federal,AR-C,annual,2014,gas oil combustion consumption by agriculture machines,2.67288,TJ,CO2,74100.0,kg/TJ,198060.40800000002,kg +20aa5ab7-20c1-34ad-8be6-2ff6b3a2cace,SESCO,II.5.1,Capital Federal,AR-C,annual,2014,gas oil combustion consumption by agriculture machines,2.67288,TJ,CH4,3.9,kg/TJ,10.424232,kg +20aa5ab7-20c1-34ad-8be6-2ff6b3a2cace,SESCO,II.5.1,Capital Federal,AR-C,annual,2014,gas oil combustion consumption by agriculture machines,2.67288,TJ,N2O,3.9,kg/TJ,10.424232,kg +fbdaf68a-e280-3da0-b0e7-0eeab8a3998c,SESCO,II.5.1,Córdoba,AR-X,annual,2014,gas oil combustion consumption by agriculture machines,161.34804,TJ,CO2,74100.0,kg/TJ,11955889.764,kg +c2f8f4b5-178f-3d7b-a43c-767d77131842,SESCO,II.5.1,Córdoba,AR-X,annual,2014,gas oil combustion consumption by agriculture machines,161.34804,TJ,CH4,3.9,kg/TJ,629.257356,kg +c2f8f4b5-178f-3d7b-a43c-767d77131842,SESCO,II.5.1,Córdoba,AR-X,annual,2014,gas oil combustion consumption by agriculture machines,161.34804,TJ,N2O,3.9,kg/TJ,629.257356,kg +7702bbce-d6d8-3b3b-943d-9813fcabef95,SESCO,II.5.1,Santa Fe,AR-S,annual,2014,gas oil combustion consumption by agriculture machines,669.05076,TJ,CO2,74100.0,kg/TJ,49576661.316,kg +0685759c-92cc-3fbd-b4f9-7d9c401f9d79,SESCO,II.5.1,Santa Fe,AR-S,annual,2014,gas oil combustion consumption by agriculture machines,669.05076,TJ,CH4,3.9,kg/TJ,2609.297964,kg +0685759c-92cc-3fbd-b4f9-7d9c401f9d79,SESCO,II.5.1,Santa Fe,AR-S,annual,2014,gas oil combustion consumption by agriculture machines,669.05076,TJ,N2O,3.9,kg/TJ,2609.297964,kg +69e92b83-ebed-3d9e-a39e-66b817c8da1d,SESCO,II.5.1,Buenos Aires,AR-B,annual,2014,gas oil combustion consumption by agriculture machines,3.9732,TJ,CO2,74100.0,kg/TJ,294414.12,kg +94a1d593-ccb1-3171-89e2-fbfd0b568f1e,SESCO,II.5.1,Buenos Aires,AR-B,annual,2014,gas oil combustion consumption by agriculture machines,3.9732,TJ,CH4,3.9,kg/TJ,15.495479999999999,kg +94a1d593-ccb1-3171-89e2-fbfd0b568f1e,SESCO,II.5.1,Buenos Aires,AR-B,annual,2014,gas oil combustion consumption by agriculture machines,3.9732,TJ,N2O,3.9,kg/TJ,15.495479999999999,kg +37de61af-776d-37e3-a497-1e78573d2c99,SESCO,II.5.1,Córdoba,AR-X,annual,2014,gas oil combustion consumption by agriculture machines,0.93912,TJ,CO2,74100.0,kg/TJ,69588.792,kg +994e13a1-3b34-34bf-8f87-f4c9fa9089d7,SESCO,II.5.1,Córdoba,AR-X,annual,2014,gas oil combustion consumption by agriculture machines,0.93912,TJ,CH4,3.9,kg/TJ,3.662568,kg +994e13a1-3b34-34bf-8f87-f4c9fa9089d7,SESCO,II.5.1,Córdoba,AR-X,annual,2014,gas oil combustion consumption by agriculture machines,0.93912,TJ,N2O,3.9,kg/TJ,3.662568,kg +1aca342f-c2ce-3080-9603-96e9d1519e3e,SESCO,II.5.1,Santa Fe,AR-S,annual,2014,gas oil combustion consumption by agriculture machines,28.20972,TJ,CO2,74100.0,kg/TJ,2090340.252,kg +691bed5e-791d-35c0-a2e8-f74efc1f1be0,SESCO,II.5.1,Santa Fe,AR-S,annual,2014,gas oil combustion consumption by agriculture machines,28.20972,TJ,CH4,3.9,kg/TJ,110.017908,kg +691bed5e-791d-35c0-a2e8-f74efc1f1be0,SESCO,II.5.1,Santa Fe,AR-S,annual,2014,gas oil combustion consumption by agriculture machines,28.20972,TJ,N2O,3.9,kg/TJ,110.017908,kg +87c6f5b7-18bc-37c0-86a4-ce1c41bafe2d,SESCO,II.1.1,Buenos Aires,AR-B,annual,2014,gas oil combustion consumption by to the public,12357.15768,TJ,CO2,74100.0,kg/TJ,915665384.088,kg +d319db3c-d766-3e5c-9356-dd46d6c615e7,SESCO,II.1.1,Buenos Aires,AR-B,annual,2014,gas oil combustion consumption by to the public,12357.15768,TJ,CH4,3.9,kg/TJ,48192.914952,kg +d319db3c-d766-3e5c-9356-dd46d6c615e7,SESCO,II.1.1,Buenos Aires,AR-B,annual,2014,gas oil combustion consumption by to the public,12357.15768,TJ,N2O,3.9,kg/TJ,48192.914952,kg +e0e98e3b-1eec-3b50-afe6-2ce4e3bae75e,SESCO,II.1.1,Capital Federal,AR-C,annual,2014,gas oil combustion consumption by to the public,1098.7703999999999,TJ,CO2,74100.0,kg/TJ,81418886.63999999,kg +28a58fc6-1927-34a3-a5d8-12afb1455d6e,SESCO,II.1.1,Capital Federal,AR-C,annual,2014,gas oil combustion consumption by to the public,1098.7703999999999,TJ,CH4,3.9,kg/TJ,4285.204559999999,kg +28a58fc6-1927-34a3-a5d8-12afb1455d6e,SESCO,II.1.1,Capital Federal,AR-C,annual,2014,gas oil combustion consumption by to the public,1098.7703999999999,TJ,N2O,3.9,kg/TJ,4285.204559999999,kg +cddf0441-b3c4-3c43-84fd-cfb21dc63637,SESCO,II.1.1,Catamarca,AR-K,annual,2014,gas oil combustion consumption by to the public,18.02388,TJ,CO2,74100.0,kg/TJ,1335569.508,kg +93ec5313-282e-3e02-af50-4d22aa95ef9d,SESCO,II.1.1,Catamarca,AR-K,annual,2014,gas oil combustion consumption by to the public,18.02388,TJ,CH4,3.9,kg/TJ,70.29313199999999,kg +93ec5313-282e-3e02-af50-4d22aa95ef9d,SESCO,II.1.1,Catamarca,AR-K,annual,2014,gas oil combustion consumption by to the public,18.02388,TJ,N2O,3.9,kg/TJ,70.29313199999999,kg +bd558d37-65d3-38e9-bfb1-37b2a094ac62,SESCO,II.1.1,Chaco,AR-H,annual,2014,gas oil combustion consumption by to the public,1516.93164,TJ,CO2,74100.0,kg/TJ,112404634.524,kg +905a9dbe-cf64-3b38-9d0c-ce675694792a,SESCO,II.1.1,Chaco,AR-H,annual,2014,gas oil combustion consumption by to the public,1516.93164,TJ,CH4,3.9,kg/TJ,5916.033396,kg +905a9dbe-cf64-3b38-9d0c-ce675694792a,SESCO,II.1.1,Chaco,AR-H,annual,2014,gas oil combustion consumption by to the public,1516.93164,TJ,N2O,3.9,kg/TJ,5916.033396,kg +76d575bc-3bfb-367c-a15d-0e6a6654d4de,SESCO,II.1.1,Corrientes,AR-W,annual,2014,gas oil combustion consumption by to the public,648.96804,TJ,CO2,74100.0,kg/TJ,48088531.764,kg +331d9822-88c6-3023-ab28-4dcaaec5b0ca,SESCO,II.1.1,Corrientes,AR-W,annual,2014,gas oil combustion consumption by to the public,648.96804,TJ,CH4,3.9,kg/TJ,2530.975356,kg +331d9822-88c6-3023-ab28-4dcaaec5b0ca,SESCO,II.1.1,Corrientes,AR-W,annual,2014,gas oil combustion consumption by to the public,648.96804,TJ,N2O,3.9,kg/TJ,2530.975356,kg +4a0bd0e3-52b6-3ca3-9c21-f3b84bda42d4,SESCO,II.1.1,Córdoba,AR-X,annual,2014,gas oil combustion consumption by to the public,4946.3089199999995,TJ,CO2,74100.0,kg/TJ,366521490.97199994,kg +a43c62ab-254b-316a-b5b9-7d7620ab6c46,SESCO,II.1.1,Córdoba,AR-X,annual,2014,gas oil combustion consumption by to the public,4946.3089199999995,TJ,CH4,3.9,kg/TJ,19290.604787999997,kg +a43c62ab-254b-316a-b5b9-7d7620ab6c46,SESCO,II.1.1,Córdoba,AR-X,annual,2014,gas oil combustion consumption by to the public,4946.3089199999995,TJ,N2O,3.9,kg/TJ,19290.604787999997,kg +2c793915-0c41-3856-8bb1-5c4c8c416281,SESCO,II.1.1,Entre Rios,AR-E,annual,2014,gas oil combustion consumption by to the public,1215.9798,TJ,CO2,74100.0,kg/TJ,90104103.18,kg +73b55d57-a624-3c59-befd-e4a8c090a0ed,SESCO,II.1.1,Entre Rios,AR-E,annual,2014,gas oil combustion consumption by to the public,1215.9798,TJ,CH4,3.9,kg/TJ,4742.32122,kg +73b55d57-a624-3c59-befd-e4a8c090a0ed,SESCO,II.1.1,Entre Rios,AR-E,annual,2014,gas oil combustion consumption by to the public,1215.9798,TJ,N2O,3.9,kg/TJ,4742.32122,kg +3dd7ee6a-451a-3a06-8958-63313e33b02c,SESCO,II.1.1,Formosa,AR-P,annual,2014,gas oil combustion consumption by to the public,195.51756,TJ,CO2,74100.0,kg/TJ,14487851.196,kg +614b92fa-f44a-353b-89bd-c98fa1e7e650,SESCO,II.1.1,Formosa,AR-P,annual,2014,gas oil combustion consumption by to the public,195.51756,TJ,CH4,3.9,kg/TJ,762.518484,kg +614b92fa-f44a-353b-89bd-c98fa1e7e650,SESCO,II.1.1,Formosa,AR-P,annual,2014,gas oil combustion consumption by to the public,195.51756,TJ,N2O,3.9,kg/TJ,762.518484,kg +81ecbc00-32c2-38f9-93e7-9d6d731e102a,SESCO,II.1.1,Jujuy,AR-Y,annual,2014,gas oil combustion consumption by to the public,134.69147999999998,TJ,CO2,74100.0,kg/TJ,9980638.668,kg +21ecc724-45c1-3dab-8670-37ae9005cb32,SESCO,II.1.1,Jujuy,AR-Y,annual,2014,gas oil combustion consumption by to the public,134.69147999999998,TJ,CH4,3.9,kg/TJ,525.2967719999999,kg +21ecc724-45c1-3dab-8670-37ae9005cb32,SESCO,II.1.1,Jujuy,AR-Y,annual,2014,gas oil combustion consumption by to the public,134.69147999999998,TJ,N2O,3.9,kg/TJ,525.2967719999999,kg +13249716-fb32-398a-9e0f-507c216f040e,SESCO,II.1.1,La Pampa,AR-L,annual,2014,gas oil combustion consumption by to the public,500.262,TJ,CO2,74100.0,kg/TJ,37069414.2,kg +0d5fbfe5-bdd7-3090-82b3-fa15ba3a9cfa,SESCO,II.1.1,La Pampa,AR-L,annual,2014,gas oil combustion consumption by to the public,500.262,TJ,CH4,3.9,kg/TJ,1951.0218,kg +0d5fbfe5-bdd7-3090-82b3-fa15ba3a9cfa,SESCO,II.1.1,La Pampa,AR-L,annual,2014,gas oil combustion consumption by to the public,500.262,TJ,N2O,3.9,kg/TJ,1951.0218,kg +1450a308-a38a-333d-9a01-8982e2bc61f8,SESCO,II.1.1,La Rioja,AR-F,annual,2014,gas oil combustion consumption by to the public,248.97516,TJ,CO2,74100.0,kg/TJ,18449059.356,kg +79cb1424-14a6-37df-8c96-85fb7303ac88,SESCO,II.1.1,La Rioja,AR-F,annual,2014,gas oil combustion consumption by to the public,248.97516,TJ,CH4,3.9,kg/TJ,971.003124,kg +79cb1424-14a6-37df-8c96-85fb7303ac88,SESCO,II.1.1,La Rioja,AR-F,annual,2014,gas oil combustion consumption by to the public,248.97516,TJ,N2O,3.9,kg/TJ,971.003124,kg +642c698d-55e9-3fe3-9ccb-1f6511610255,SESCO,II.1.1,Mendoza,AR-M,annual,2014,gas oil combustion consumption by to the public,507.59436,TJ,CO2,74100.0,kg/TJ,37612742.076,kg +a384eaba-4a36-323f-8f0c-96d90aa6c0c9,SESCO,II.1.1,Mendoza,AR-M,annual,2014,gas oil combustion consumption by to the public,507.59436,TJ,CH4,3.9,kg/TJ,1979.618004,kg +a384eaba-4a36-323f-8f0c-96d90aa6c0c9,SESCO,II.1.1,Mendoza,AR-M,annual,2014,gas oil combustion consumption by to the public,507.59436,TJ,N2O,3.9,kg/TJ,1979.618004,kg +48a67d14-9f8c-3926-a3a2-4307f0972a23,SESCO,II.1.1,Misiones,AR-N,annual,2014,gas oil combustion consumption by to the public,1308.41088,TJ,CO2,74100.0,kg/TJ,96953246.20799999,kg +020a4530-3247-3d8d-a5ef-644a96efd938,SESCO,II.1.1,Misiones,AR-N,annual,2014,gas oil combustion consumption by to the public,1308.41088,TJ,CH4,3.9,kg/TJ,5102.8024319999995,kg +020a4530-3247-3d8d-a5ef-644a96efd938,SESCO,II.1.1,Misiones,AR-N,annual,2014,gas oil combustion consumption by to the public,1308.41088,TJ,N2O,3.9,kg/TJ,5102.8024319999995,kg +d7029da2-5d73-373c-ba25-0ccb4249929e,SESCO,II.1.1,Neuquén,AR-Q,annual,2014,gas oil combustion consumption by to the public,548.26548,TJ,CO2,74100.0,kg/TJ,40626472.068,kg +6f4d118d-0851-3f2d-a1a3-6623adcf3d6c,SESCO,II.1.1,Neuquén,AR-Q,annual,2014,gas oil combustion consumption by to the public,548.26548,TJ,CH4,3.9,kg/TJ,2138.235372,kg +6f4d118d-0851-3f2d-a1a3-6623adcf3d6c,SESCO,II.1.1,Neuquén,AR-Q,annual,2014,gas oil combustion consumption by to the public,548.26548,TJ,N2O,3.9,kg/TJ,2138.235372,kg +c24964b5-2e87-3681-90d1-696fd7177983,SESCO,II.1.1,Rio Negro,AR-R,annual,2014,gas oil combustion consumption by to the public,192.1584,TJ,CO2,74100.0,kg/TJ,14238937.44,kg +79df95ba-9513-37bd-b2d1-95e1ddfdf5d1,SESCO,II.1.1,Rio Negro,AR-R,annual,2014,gas oil combustion consumption by to the public,192.1584,TJ,CH4,3.9,kg/TJ,749.4177599999999,kg +79df95ba-9513-37bd-b2d1-95e1ddfdf5d1,SESCO,II.1.1,Rio Negro,AR-R,annual,2014,gas oil combustion consumption by to the public,192.1584,TJ,N2O,3.9,kg/TJ,749.4177599999999,kg +d700dc24-9b3c-30b3-ad0f-77cc7d67ecef,SESCO,II.1.1,Salta,AR-A,annual,2014,gas oil combustion consumption by to the public,162.9012,TJ,CO2,74100.0,kg/TJ,12070978.92,kg +70fb7fc4-30b3-389b-8d45-38e05d462402,SESCO,II.1.1,Salta,AR-A,annual,2014,gas oil combustion consumption by to the public,162.9012,TJ,CH4,3.9,kg/TJ,635.31468,kg +70fb7fc4-30b3-389b-8d45-38e05d462402,SESCO,II.1.1,Salta,AR-A,annual,2014,gas oil combustion consumption by to the public,162.9012,TJ,N2O,3.9,kg/TJ,635.31468,kg +b1584320-7615-3930-a807-ac992f8a6602,SESCO,II.1.1,San Juan,AR-J,annual,2014,gas oil combustion consumption by to the public,271.40568,TJ,CO2,74100.0,kg/TJ,20111160.888,kg +dcc801d8-319e-30e0-aca3-4ae0ae7d5798,SESCO,II.1.1,San Juan,AR-J,annual,2014,gas oil combustion consumption by to the public,271.40568,TJ,CH4,3.9,kg/TJ,1058.482152,kg +dcc801d8-319e-30e0-aca3-4ae0ae7d5798,SESCO,II.1.1,San Juan,AR-J,annual,2014,gas oil combustion consumption by to the public,271.40568,TJ,N2O,3.9,kg/TJ,1058.482152,kg +4325af29-f4a8-396e-8137-d3c7fd02a4e8,SESCO,II.1.1,San Luis,AR-D,annual,2014,gas oil combustion consumption by to the public,10.2942,TJ,CO2,74100.0,kg/TJ,762800.22,kg +27ce1da7-0398-362a-b2c2-a4e3abe580b4,SESCO,II.1.1,San Luis,AR-D,annual,2014,gas oil combustion consumption by to the public,10.2942,TJ,CH4,3.9,kg/TJ,40.14738,kg +27ce1da7-0398-362a-b2c2-a4e3abe580b4,SESCO,II.1.1,San Luis,AR-D,annual,2014,gas oil combustion consumption by to the public,10.2942,TJ,N2O,3.9,kg/TJ,40.14738,kg +1d43d6ec-4873-3b9f-a435-238dcee65b3f,SESCO,II.1.1,Santa Fe,AR-S,annual,2014,gas oil combustion consumption by to the public,5042.20752,TJ,CO2,74100.0,kg/TJ,373627577.232,kg +85653b1e-f824-38e9-b121-823817f9379a,SESCO,II.1.1,Santa Fe,AR-S,annual,2014,gas oil combustion consumption by to the public,5042.20752,TJ,CH4,3.9,kg/TJ,19664.609328,kg +85653b1e-f824-38e9-b121-823817f9379a,SESCO,II.1.1,Santa Fe,AR-S,annual,2014,gas oil combustion consumption by to the public,5042.20752,TJ,N2O,3.9,kg/TJ,19664.609328,kg +e2ac390b-121d-3f2b-bd1b-c5bf591a5dd7,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2014,gas oil combustion consumption by to the public,367.30428,TJ,CO2,74100.0,kg/TJ,27217247.148000002,kg +5fce08ad-e7f3-38c7-8fae-8bc9ff959829,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2014,gas oil combustion consumption by to the public,367.30428,TJ,CH4,3.9,kg/TJ,1432.486692,kg +5fce08ad-e7f3-38c7-8fae-8bc9ff959829,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2014,gas oil combustion consumption by to the public,367.30428,TJ,N2O,3.9,kg/TJ,1432.486692,kg +afc537cb-aa92-3b63-97e3-1689a94bc3cd,SESCO,II.1.1,Tucuman,AR-T,annual,2014,gas oil combustion consumption by to the public,666.34176,TJ,CO2,74100.0,kg/TJ,49375924.416,kg +412bf704-7184-39ce-9419-29fa1919844a,SESCO,II.1.1,Tucuman,AR-T,annual,2014,gas oil combustion consumption by to the public,666.34176,TJ,CH4,3.9,kg/TJ,2598.732864,kg +412bf704-7184-39ce-9419-29fa1919844a,SESCO,II.1.1,Tucuman,AR-T,annual,2014,gas oil combustion consumption by to the public,666.34176,TJ,N2O,3.9,kg/TJ,2598.732864,kg +76237d66-b3e6-3514-b717-3910e52f7a02,SESCO,II.1.1,Buenos Aires,AR-B,annual,2014,gas oil combustion consumption by to the public,5921.98236,TJ,CO2,74100.0,kg/TJ,438818892.876,kg +aaedbd18-def2-3f77-bb7c-dedbf50d2eb3,SESCO,II.1.1,Buenos Aires,AR-B,annual,2014,gas oil combustion consumption by to the public,5921.98236,TJ,CH4,3.9,kg/TJ,23095.731204,kg +aaedbd18-def2-3f77-bb7c-dedbf50d2eb3,SESCO,II.1.1,Buenos Aires,AR-B,annual,2014,gas oil combustion consumption by to the public,5921.98236,TJ,N2O,3.9,kg/TJ,23095.731204,kg +07d91176-5ee3-3b32-9f24-19eef1fdc033,SESCO,II.1.1,Capital Federal,AR-C,annual,2014,gas oil combustion consumption by to the public,906.0702,TJ,CO2,74100.0,kg/TJ,67139801.82,kg +861e7ce8-2e6e-3ccf-8670-aafedb63c2d6,SESCO,II.1.1,Capital Federal,AR-C,annual,2014,gas oil combustion consumption by to the public,906.0702,TJ,CH4,3.9,kg/TJ,3533.67378,kg +861e7ce8-2e6e-3ccf-8670-aafedb63c2d6,SESCO,II.1.1,Capital Federal,AR-C,annual,2014,gas oil combustion consumption by to the public,906.0702,TJ,N2O,3.9,kg/TJ,3533.67378,kg +a7a52f7d-8843-3c52-baaf-ec506adb4c0e,SESCO,II.1.1,Catamarca,AR-K,annual,2014,gas oil combustion consumption by to the public,26.11476,TJ,CO2,74100.0,kg/TJ,1935103.716,kg +5381d048-a964-3bd8-b99e-09cf250c5507,SESCO,II.1.1,Catamarca,AR-K,annual,2014,gas oil combustion consumption by to the public,26.11476,TJ,CH4,3.9,kg/TJ,101.847564,kg +5381d048-a964-3bd8-b99e-09cf250c5507,SESCO,II.1.1,Catamarca,AR-K,annual,2014,gas oil combustion consumption by to the public,26.11476,TJ,N2O,3.9,kg/TJ,101.847564,kg +fa7ab2eb-d995-392a-b1ed-f5a7900d8ed3,SESCO,II.1.1,Chaco,AR-H,annual,2014,gas oil combustion consumption by to the public,336.89124,TJ,CO2,74100.0,kg/TJ,24963640.884,kg +ee2f0791-69f8-338d-8f1b-70ee77b7b9a6,SESCO,II.1.1,Chaco,AR-H,annual,2014,gas oil combustion consumption by to the public,336.89124,TJ,CH4,3.9,kg/TJ,1313.875836,kg +ee2f0791-69f8-338d-8f1b-70ee77b7b9a6,SESCO,II.1.1,Chaco,AR-H,annual,2014,gas oil combustion consumption by to the public,336.89124,TJ,N2O,3.9,kg/TJ,1313.875836,kg +4aa25503-88eb-32c2-aaee-2332b4704bfe,SESCO,II.1.1,Corrientes,AR-W,annual,2014,gas oil combustion consumption by to the public,258.33024,TJ,CO2,74100.0,kg/TJ,19142270.784,kg +16093cd6-558c-39ee-8b8e-57248ec9ee99,SESCO,II.1.1,Corrientes,AR-W,annual,2014,gas oil combustion consumption by to the public,258.33024,TJ,CH4,3.9,kg/TJ,1007.487936,kg +16093cd6-558c-39ee-8b8e-57248ec9ee99,SESCO,II.1.1,Corrientes,AR-W,annual,2014,gas oil combustion consumption by to the public,258.33024,TJ,N2O,3.9,kg/TJ,1007.487936,kg +eeb93187-7ac0-35de-b6a5-61817285207f,SESCO,II.1.1,Córdoba,AR-X,annual,2014,gas oil combustion consumption by to the public,1172.34684,TJ,CO2,74100.0,kg/TJ,86870900.844,kg +4b6b8994-a260-3629-a65a-2bde6040a6db,SESCO,II.1.1,Córdoba,AR-X,annual,2014,gas oil combustion consumption by to the public,1172.34684,TJ,CH4,3.9,kg/TJ,4572.152676,kg +4b6b8994-a260-3629-a65a-2bde6040a6db,SESCO,II.1.1,Córdoba,AR-X,annual,2014,gas oil combustion consumption by to the public,1172.34684,TJ,N2O,3.9,kg/TJ,4572.152676,kg +f3078d08-d9e9-3889-8afd-2abb91eb6d13,SESCO,II.1.1,Entre Rios,AR-E,annual,2014,gas oil combustion consumption by to the public,598.11108,TJ,CO2,74100.0,kg/TJ,44320031.028000005,kg +89898a2a-2a56-3147-9d05-c393bb5c8c80,SESCO,II.1.1,Entre Rios,AR-E,annual,2014,gas oil combustion consumption by to the public,598.11108,TJ,CH4,3.9,kg/TJ,2332.633212,kg +89898a2a-2a56-3147-9d05-c393bb5c8c80,SESCO,II.1.1,Entre Rios,AR-E,annual,2014,gas oil combustion consumption by to the public,598.11108,TJ,N2O,3.9,kg/TJ,2332.633212,kg +c071294a-8368-3fea-949e-fff72f38b4d1,SESCO,II.1.1,Formosa,AR-P,annual,2014,gas oil combustion consumption by to the public,128.87616,TJ,CO2,74100.0,kg/TJ,9549723.456,kg +76723a70-244c-3a81-8446-64d4723fa616,SESCO,II.1.1,Formosa,AR-P,annual,2014,gas oil combustion consumption by to the public,128.87616,TJ,CH4,3.9,kg/TJ,502.61702399999996,kg +76723a70-244c-3a81-8446-64d4723fa616,SESCO,II.1.1,Formosa,AR-P,annual,2014,gas oil combustion consumption by to the public,128.87616,TJ,N2O,3.9,kg/TJ,502.61702399999996,kg +3f736329-5282-391b-b407-c3c6ba49d53c,SESCO,II.1.1,Jujuy,AR-Y,annual,2014,gas oil combustion consumption by to the public,48.25632,TJ,CO2,74100.0,kg/TJ,3575793.3120000004,kg +af46da06-0a20-30c2-86f4-101a0f6f4a77,SESCO,II.1.1,Jujuy,AR-Y,annual,2014,gas oil combustion consumption by to the public,48.25632,TJ,CH4,3.9,kg/TJ,188.199648,kg +af46da06-0a20-30c2-86f4-101a0f6f4a77,SESCO,II.1.1,Jujuy,AR-Y,annual,2014,gas oil combustion consumption by to the public,48.25632,TJ,N2O,3.9,kg/TJ,188.199648,kg +3c41b537-af43-3fa7-b5e8-f231bb9d770d,SESCO,II.1.1,La Pampa,AR-L,annual,2014,gas oil combustion consumption by to the public,192.37512,TJ,CO2,74100.0,kg/TJ,14254996.392,kg +e4933056-8ffe-361b-964e-84e6de52a2c8,SESCO,II.1.1,La Pampa,AR-L,annual,2014,gas oil combustion consumption by to the public,192.37512,TJ,CH4,3.9,kg/TJ,750.262968,kg +e4933056-8ffe-361b-964e-84e6de52a2c8,SESCO,II.1.1,La Pampa,AR-L,annual,2014,gas oil combustion consumption by to the public,192.37512,TJ,N2O,3.9,kg/TJ,750.262968,kg +2c5bdfb5-e7a1-3ffc-a7d7-38d44761d2cd,SESCO,II.1.1,La Rioja,AR-F,annual,2014,gas oil combustion consumption by to the public,96.65711999999999,TJ,CO2,74100.0,kg/TJ,7162292.591999999,kg +1c7c7148-a987-3a4c-9bff-7d41760f68c6,SESCO,II.1.1,La Rioja,AR-F,annual,2014,gas oil combustion consumption by to the public,96.65711999999999,TJ,CH4,3.9,kg/TJ,376.962768,kg +1c7c7148-a987-3a4c-9bff-7d41760f68c6,SESCO,II.1.1,La Rioja,AR-F,annual,2014,gas oil combustion consumption by to the public,96.65711999999999,TJ,N2O,3.9,kg/TJ,376.962768,kg +a010905a-083b-31c6-bde5-0aa7715005e0,SESCO,II.1.1,Mendoza,AR-M,annual,2014,gas oil combustion consumption by to the public,280.36343999999997,TJ,CO2,74100.0,kg/TJ,20774930.904,kg +af2acb66-3d3c-39fd-8cd5-a83844cd34c3,SESCO,II.1.1,Mendoza,AR-M,annual,2014,gas oil combustion consumption by to the public,280.36343999999997,TJ,CH4,3.9,kg/TJ,1093.4174159999998,kg +af2acb66-3d3c-39fd-8cd5-a83844cd34c3,SESCO,II.1.1,Mendoza,AR-M,annual,2014,gas oil combustion consumption by to the public,280.36343999999997,TJ,N2O,3.9,kg/TJ,1093.4174159999998,kg +daf250e4-3cef-3c4e-aedd-227ab45f274b,SESCO,II.1.1,Misiones,AR-N,annual,2014,gas oil combustion consumption by to the public,310.34304,TJ,CO2,74100.0,kg/TJ,22996419.264,kg +c7a302ea-a9c8-3a8a-85b2-3fbb07fda81c,SESCO,II.1.1,Misiones,AR-N,annual,2014,gas oil combustion consumption by to the public,310.34304,TJ,CH4,3.9,kg/TJ,1210.3378559999999,kg +c7a302ea-a9c8-3a8a-85b2-3fbb07fda81c,SESCO,II.1.1,Misiones,AR-N,annual,2014,gas oil combustion consumption by to the public,310.34304,TJ,N2O,3.9,kg/TJ,1210.3378559999999,kg +dda144b1-6653-3e9f-8971-7c59bb72b0c2,SESCO,II.1.1,Neuquén,AR-Q,annual,2014,gas oil combustion consumption by to the public,312.65472,TJ,CO2,74100.0,kg/TJ,23167714.752,kg +951677e2-be01-3c63-9652-916dc2c9b122,SESCO,II.1.1,Neuquén,AR-Q,annual,2014,gas oil combustion consumption by to the public,312.65472,TJ,CH4,3.9,kg/TJ,1219.353408,kg +951677e2-be01-3c63-9652-916dc2c9b122,SESCO,II.1.1,Neuquén,AR-Q,annual,2014,gas oil combustion consumption by to the public,312.65472,TJ,N2O,3.9,kg/TJ,1219.353408,kg +fb91683b-c121-3df1-b002-62a705311381,SESCO,II.1.1,Rio Negro,AR-R,annual,2014,gas oil combustion consumption by to the public,94.41768,TJ,CO2,74100.0,kg/TJ,6996350.088,kg +21520b08-51cc-3cd8-a5a7-74ff36524ea8,SESCO,II.1.1,Rio Negro,AR-R,annual,2014,gas oil combustion consumption by to the public,94.41768,TJ,CH4,3.9,kg/TJ,368.228952,kg +21520b08-51cc-3cd8-a5a7-74ff36524ea8,SESCO,II.1.1,Rio Negro,AR-R,annual,2014,gas oil combustion consumption by to the public,94.41768,TJ,N2O,3.9,kg/TJ,368.228952,kg +74430fd4-5b1b-39d9-80d0-20a22231b33e,SESCO,II.1.1,Salta,AR-A,annual,2014,gas oil combustion consumption by to the public,106.51787999999999,TJ,CO2,74100.0,kg/TJ,7892974.907999999,kg +b7c46a5e-784b-3335-a37e-ca77daa2ed06,SESCO,II.1.1,Salta,AR-A,annual,2014,gas oil combustion consumption by to the public,106.51787999999999,TJ,CH4,3.9,kg/TJ,415.41973199999995,kg +b7c46a5e-784b-3335-a37e-ca77daa2ed06,SESCO,II.1.1,Salta,AR-A,annual,2014,gas oil combustion consumption by to the public,106.51787999999999,TJ,N2O,3.9,kg/TJ,415.41973199999995,kg +41291a37-481b-351f-9be2-6044d9b9c1ac,SESCO,II.1.1,San Juan,AR-J,annual,2014,gas oil combustion consumption by to the public,56.38332,TJ,CO2,74100.0,kg/TJ,4178004.0119999996,kg +02d394ce-6c83-3f52-877b-afcdf4e4b85a,SESCO,II.1.1,San Juan,AR-J,annual,2014,gas oil combustion consumption by to the public,56.38332,TJ,CH4,3.9,kg/TJ,219.894948,kg +02d394ce-6c83-3f52-877b-afcdf4e4b85a,SESCO,II.1.1,San Juan,AR-J,annual,2014,gas oil combustion consumption by to the public,56.38332,TJ,N2O,3.9,kg/TJ,219.894948,kg +a7c4354c-1f54-3399-b0fa-ace00f61d3cd,SESCO,II.1.1,San Luis,AR-D,annual,2014,gas oil combustion consumption by to the public,14.55636,TJ,CO2,74100.0,kg/TJ,1078626.276,kg +47b155b2-309e-33d3-8154-6931e4c8ab4e,SESCO,II.1.1,San Luis,AR-D,annual,2014,gas oil combustion consumption by to the public,14.55636,TJ,CH4,3.9,kg/TJ,56.769804,kg +47b155b2-309e-33d3-8154-6931e4c8ab4e,SESCO,II.1.1,San Luis,AR-D,annual,2014,gas oil combustion consumption by to the public,14.55636,TJ,N2O,3.9,kg/TJ,56.769804,kg +930f13bb-0b55-35e0-afe4-f751638fcd30,SESCO,II.1.1,Santa Fe,AR-S,annual,2014,gas oil combustion consumption by to the public,1588.9910399999999,TJ,CO2,74100.0,kg/TJ,117744236.064,kg +be6fe528-4dbc-3123-9cb5-bdf1e16fd24f,SESCO,II.1.1,Santa Fe,AR-S,annual,2014,gas oil combustion consumption by to the public,1588.9910399999999,TJ,CH4,3.9,kg/TJ,6197.0650559999995,kg +be6fe528-4dbc-3123-9cb5-bdf1e16fd24f,SESCO,II.1.1,Santa Fe,AR-S,annual,2014,gas oil combustion consumption by to the public,1588.9910399999999,TJ,N2O,3.9,kg/TJ,6197.0650559999995,kg +ba745cc4-8f98-3b0a-90cb-3b844574b939,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2014,gas oil combustion consumption by to the public,154.01568,TJ,CO2,74100.0,kg/TJ,11412561.888,kg +ed19a0bf-fa76-30b2-b371-60d77b4eab4e,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2014,gas oil combustion consumption by to the public,154.01568,TJ,CH4,3.9,kg/TJ,600.661152,kg +ed19a0bf-fa76-30b2-b371-60d77b4eab4e,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2014,gas oil combustion consumption by to the public,154.01568,TJ,N2O,3.9,kg/TJ,600.661152,kg +1ad2572f-0fac-3d9d-9faf-b8751db9c069,SESCO,II.1.1,Tucuman,AR-T,annual,2014,gas oil combustion consumption by to the public,267.72144,TJ,CO2,74100.0,kg/TJ,19838158.703999996,kg +997d657a-a480-3426-851b-784a82f6d096,SESCO,II.1.1,Tucuman,AR-T,annual,2014,gas oil combustion consumption by to the public,267.72144,TJ,CH4,3.9,kg/TJ,1044.1136159999999,kg +997d657a-a480-3426-851b-784a82f6d096,SESCO,II.1.1,Tucuman,AR-T,annual,2014,gas oil combustion consumption by to the public,267.72144,TJ,N2O,3.9,kg/TJ,1044.1136159999999,kg +bc67b383-5256-3d23-b4da-d265c8800b27,SESCO,II.1.1,Neuquén,AR-Q,annual,2014,jet kerosene combustion consumption by to the public,0.31453,TJ,CO2,71500.0,kg/TJ,22488.894999999997,kg +3d669da5-4f47-36c6-be7f-cf9e8d64918f,SESCO,II.1.1,Neuquén,AR-Q,annual,2014,jet kerosene combustion consumption by to the public,0.31453,TJ,CH4,0.5,kg/TJ,0.157265,kg +44067b72-0648-3214-bb7f-545a02223b2c,SESCO,II.1.1,Neuquén,AR-Q,annual,2014,jet kerosene combustion consumption by to the public,0.31453,TJ,N2O,2.0,kg/TJ,0.62906,kg +138ad2f2-a7b4-3cd7-a5d8-3b4240a041a6,SESCO,I.3.1,Buenos Aires,AR-B,annual,2014,gasoline combustion consumption by petrochemical industries,42.1736,TJ,CO2,69300.0,kg/TJ,2922630.48,kg +ec9a42d4-19fa-39c4-8cca-0a07ca14ec1c,SESCO,I.3.1,Buenos Aires,AR-B,annual,2014,gasoline combustion consumption by petrochemical industries,42.1736,TJ,CH4,33.0,kg/TJ,1391.7288,kg +96337837-19e8-3326-a5c0-70b20214c16f,SESCO,I.3.1,Buenos Aires,AR-B,annual,2014,gasoline combustion consumption by petrochemical industries,42.1736,TJ,N2O,3.2,kg/TJ,134.95552,kg +1061a609-550a-3d8b-be85-67b71cd05cb9,SESCO,I.3.1,Capital Federal,AR-C,annual,2014,gas oil combustion consumption by petrochemical industries,2.92572,TJ,CO2,74100.0,kg/TJ,216795.852,kg +635458ba-22a9-3845-bfd6-6ddacd352c8f,SESCO,I.3.1,Capital Federal,AR-C,annual,2014,gas oil combustion consumption by petrochemical industries,2.92572,TJ,CH4,3.9,kg/TJ,11.410308,kg +635458ba-22a9-3845-bfd6-6ddacd352c8f,SESCO,I.3.1,Capital Federal,AR-C,annual,2014,gas oil combustion consumption by petrochemical industries,2.92572,TJ,N2O,3.9,kg/TJ,11.410308,kg +fcf1ea20-bded-34e2-9e59-2ee55e7be92b,SESCO,II.2.1,Buenos Aires,AR-B,annual,2014,gas oil combustion consumption by railway transport,567.37296,TJ,CO2,74100.0,kg/TJ,42042336.336,kg +6aaf261a-fa6c-30fe-ace9-ffc4ec9315f4,SESCO,II.2.1,Buenos Aires,AR-B,annual,2014,gas oil combustion consumption by railway transport,567.37296,TJ,CH4,3.9,kg/TJ,2212.754544,kg +6aaf261a-fa6c-30fe-ace9-ffc4ec9315f4,SESCO,II.2.1,Buenos Aires,AR-B,annual,2014,gas oil combustion consumption by railway transport,567.37296,TJ,N2O,3.9,kg/TJ,2212.754544,kg +f047d085-33e6-3bae-8945-e00b2f33a36c,SESCO,II.2.1,Capital Federal,AR-C,annual,2014,gas oil combustion consumption by railway transport,1049.39436,TJ,CO2,74100.0,kg/TJ,77760122.076,kg +23064763-fea8-368a-b207-b07a19d2f6b3,SESCO,II.2.1,Capital Federal,AR-C,annual,2014,gas oil combustion consumption by railway transport,1049.39436,TJ,CH4,3.9,kg/TJ,4092.638004,kg +23064763-fea8-368a-b207-b07a19d2f6b3,SESCO,II.2.1,Capital Federal,AR-C,annual,2014,gas oil combustion consumption by railway transport,1049.39436,TJ,N2O,3.9,kg/TJ,4092.638004,kg +4b29a378-3ea8-3ca9-b7d1-f6ea0449a5e4,SESCO,II.2.1,Santa Fe,AR-S,annual,2014,gas oil combustion consumption by railway transport,327.4278,TJ,CO2,74100.0,kg/TJ,24262399.98,kg +cd5adb59-b63c-3978-aeae-fa58aec546fc,SESCO,II.2.1,Santa Fe,AR-S,annual,2014,gas oil combustion consumption by railway transport,327.4278,TJ,CH4,3.9,kg/TJ,1276.96842,kg +cd5adb59-b63c-3978-aeae-fa58aec546fc,SESCO,II.2.1,Santa Fe,AR-S,annual,2014,gas oil combustion consumption by railway transport,327.4278,TJ,N2O,3.9,kg/TJ,1276.96842,kg +085eb847-98e8-3bd6-ba06-64ddafb46864,SESCO,II.2.1,Capital Federal,AR-C,annual,2014,gas oil combustion consumption by railway transport,1.58928,TJ,CO2,74100.0,kg/TJ,117765.648,kg +5115e60a-6307-398f-8d83-887dca01ab2b,SESCO,II.2.1,Capital Federal,AR-C,annual,2014,gas oil combustion consumption by railway transport,1.58928,TJ,CH4,3.9,kg/TJ,6.198192,kg +5115e60a-6307-398f-8d83-887dca01ab2b,SESCO,II.2.1,Capital Federal,AR-C,annual,2014,gas oil combustion consumption by railway transport,1.58928,TJ,N2O,3.9,kg/TJ,6.198192,kg +0bbdb932-2390-333a-b029-2f3bf380b211,SESCO,II.1.1,Buenos Aires,AR-B,annual,2014,gasoline combustion consumption by freight transport,21.8399,TJ,CO2,69300.0,kg/TJ,1513505.07,kg +d8e5c3b6-6388-32fe-9450-0397026de426,SESCO,II.1.1,Buenos Aires,AR-B,annual,2014,gasoline combustion consumption by freight transport,21.8399,TJ,CH4,33.0,kg/TJ,720.7167,kg +852efafa-9c85-31f8-a318-e63f39ead03d,SESCO,II.1.1,Buenos Aires,AR-B,annual,2014,gasoline combustion consumption by freight transport,21.8399,TJ,N2O,3.2,kg/TJ,69.88768,kg +e21e4696-ceed-3e36-b84a-da17906311ac,SESCO,II.1.1,Buenos Aires,AR-B,annual,2014,gas oil combustion consumption by freight transport,705.38748,TJ,CO2,74100.0,kg/TJ,52269212.268,kg +f328630b-8d64-3ca8-930b-46832c6ded98,SESCO,II.1.1,Buenos Aires,AR-B,annual,2014,gas oil combustion consumption by freight transport,705.38748,TJ,CH4,3.9,kg/TJ,2751.011172,kg +f328630b-8d64-3ca8-930b-46832c6ded98,SESCO,II.1.1,Buenos Aires,AR-B,annual,2014,gas oil combustion consumption by freight transport,705.38748,TJ,N2O,3.9,kg/TJ,2751.011172,kg +257b8172-1e60-3bc1-9712-9c28cbacfcb8,SESCO,II.1.1,Capital Federal,AR-C,annual,2014,gas oil combustion consumption by freight transport,185.76516,TJ,CO2,74100.0,kg/TJ,13765198.356,kg +66ced78c-13df-36e9-9f82-2e7314663417,SESCO,II.1.1,Capital Federal,AR-C,annual,2014,gas oil combustion consumption by freight transport,185.76516,TJ,CH4,3.9,kg/TJ,724.4841240000001,kg +66ced78c-13df-36e9-9f82-2e7314663417,SESCO,II.1.1,Capital Federal,AR-C,annual,2014,gas oil combustion consumption by freight transport,185.76516,TJ,N2O,3.9,kg/TJ,724.4841240000001,kg +32fbb736-fe17-3ba7-aaca-6082b6f232de,SESCO,II.1.1,Córdoba,AR-X,annual,2014,gas oil combustion consumption by freight transport,139.31484,TJ,CO2,74100.0,kg/TJ,10323229.644,kg +5f9c93cb-4198-3966-877e-86e0f16ab71b,SESCO,II.1.1,Córdoba,AR-X,annual,2014,gas oil combustion consumption by freight transport,139.31484,TJ,CH4,3.9,kg/TJ,543.327876,kg +5f9c93cb-4198-3966-877e-86e0f16ab71b,SESCO,II.1.1,Córdoba,AR-X,annual,2014,gas oil combustion consumption by freight transport,139.31484,TJ,N2O,3.9,kg/TJ,543.327876,kg +bdee06f0-17e0-36a5-9cfc-b68ac7d207d0,SESCO,II.1.1,Buenos Aires,AR-B,annual,2014,gas oil combustion consumption by freight transport,0.7223999999999999,TJ,CO2,74100.0,kg/TJ,53529.84,kg +da53f9c5-7dc1-3826-aa52-8fc8275909da,SESCO,II.1.1,Buenos Aires,AR-B,annual,2014,gas oil combustion consumption by freight transport,0.7223999999999999,TJ,CH4,3.9,kg/TJ,2.81736,kg +da53f9c5-7dc1-3826-aa52-8fc8275909da,SESCO,II.1.1,Buenos Aires,AR-B,annual,2014,gas oil combustion consumption by freight transport,0.7223999999999999,TJ,N2O,3.9,kg/TJ,2.81736,kg +7e8681c7-ebf5-3094-ab5d-a8d1f8076bb0,SESCO,II.1.1,Córdoba,AR-X,annual,2014,gas oil combustion consumption by freight transport,1.58928,TJ,CO2,74100.0,kg/TJ,117765.648,kg +eef29059-71ee-3d99-89a3-143b1e42ecf7,SESCO,II.1.1,Córdoba,AR-X,annual,2014,gas oil combustion consumption by freight transport,1.58928,TJ,CH4,3.9,kg/TJ,6.198192,kg +eef29059-71ee-3d99-89a3-143b1e42ecf7,SESCO,II.1.1,Córdoba,AR-X,annual,2014,gas oil combustion consumption by freight transport,1.58928,TJ,N2O,3.9,kg/TJ,6.198192,kg +8e9ed68d-c673-3310-b1cd-5f0c946986ba,SESCO,II.1.1,Buenos Aires,AR-B,annual,2014,gas oil combustion consumption by public passenger transport,33.12204,TJ,CO2,74100.0,kg/TJ,2454343.164,kg +029405ba-d2a9-37ec-b803-220ae55711a3,SESCO,II.1.1,Buenos Aires,AR-B,annual,2014,gas oil combustion consumption by public passenger transport,33.12204,TJ,CH4,3.9,kg/TJ,129.17595599999999,kg +029405ba-d2a9-37ec-b803-220ae55711a3,SESCO,II.1.1,Buenos Aires,AR-B,annual,2014,gas oil combustion consumption by public passenger transport,33.12204,TJ,N2O,3.9,kg/TJ,129.17595599999999,kg +26451670-9e37-37ed-881f-0820224fa72b,SESCO,II.1.1,Capital Federal,AR-C,annual,2014,gas oil combustion consumption by public passenger transport,14.37576,TJ,CO2,74100.0,kg/TJ,1065243.8159999999,kg +9fb2ef86-f505-3b9a-8d09-d79e3fa15153,SESCO,II.1.1,Capital Federal,AR-C,annual,2014,gas oil combustion consumption by public passenger transport,14.37576,TJ,CH4,3.9,kg/TJ,56.065464,kg +9fb2ef86-f505-3b9a-8d09-d79e3fa15153,SESCO,II.1.1,Capital Federal,AR-C,annual,2014,gas oil combustion consumption by public passenger transport,14.37576,TJ,N2O,3.9,kg/TJ,56.065464,kg +f58b96d6-83d1-3a50-8d70-fd8216d381fe,SESCO,II.1.1,Misiones,AR-N,annual,2014,gas oil combustion consumption by public passenger transport,340.53936,TJ,CO2,74100.0,kg/TJ,25233966.575999998,kg +6ba536a8-70b8-3228-b8f4-84b62bd8f9a7,SESCO,II.1.1,Misiones,AR-N,annual,2014,gas oil combustion consumption by public passenger transport,340.53936,TJ,CH4,3.9,kg/TJ,1328.103504,kg +6ba536a8-70b8-3228-b8f4-84b62bd8f9a7,SESCO,II.1.1,Misiones,AR-N,annual,2014,gas oil combustion consumption by public passenger transport,340.53936,TJ,N2O,3.9,kg/TJ,1328.103504,kg +a8d29ee4-dd8f-3768-9af7-bde07f079d75,SESCO,II.5.1,Buenos Aires,AR-B,annual,2014,gasoline combustion consumption by agriculture machines,8.7271,TJ,CO2,69300.0,kg/TJ,604788.03,kg +14a8a9cf-2b3d-3c39-9b3a-0cbd72f6b53a,SESCO,II.5.1,Buenos Aires,AR-B,annual,2014,gasoline combustion consumption by agriculture machines,8.7271,TJ,CH4,33.0,kg/TJ,287.9943,kg +7ea212ec-5848-3b67-a7d3-c2cb2fd58ae8,SESCO,II.5.1,Buenos Aires,AR-B,annual,2014,gasoline combustion consumption by agriculture machines,8.7271,TJ,N2O,3.2,kg/TJ,27.926720000000003,kg +d46a6409-7e45-3139-87ac-71fca6719767,SESCO,II.5.1,Buenos Aires,AR-B,annual,2014,gas oil combustion consumption by agriculture machines,9231.0078,TJ,CO2,74100.0,kg/TJ,684017677.9799999,kg +8cb925f9-ef9a-3133-a302-5e82f0db86c6,SESCO,II.5.1,Buenos Aires,AR-B,annual,2014,gas oil combustion consumption by agriculture machines,9231.0078,TJ,CH4,3.9,kg/TJ,36000.93042,kg +8cb925f9-ef9a-3133-a302-5e82f0db86c6,SESCO,II.5.1,Buenos Aires,AR-B,annual,2014,gas oil combustion consumption by agriculture machines,9231.0078,TJ,N2O,3.9,kg/TJ,36000.93042,kg +326ed521-65d3-3a5c-9a3b-b97ecce4c002,SESCO,II.5.1,Capital Federal,AR-C,annual,2014,gas oil combustion consumption by agriculture machines,18.89076,TJ,CO2,74100.0,kg/TJ,1399805.316,kg +9b473fc5-fbfc-3619-bc74-9f301216b662,SESCO,II.5.1,Capital Federal,AR-C,annual,2014,gas oil combustion consumption by agriculture machines,18.89076,TJ,CH4,3.9,kg/TJ,73.673964,kg +9b473fc5-fbfc-3619-bc74-9f301216b662,SESCO,II.5.1,Capital Federal,AR-C,annual,2014,gas oil combustion consumption by agriculture machines,18.89076,TJ,N2O,3.9,kg/TJ,73.673964,kg +6df99718-2cf5-3ca9-94c5-51c313955e8f,SESCO,II.5.1,Catamarca,AR-K,annual,2014,gas oil combustion consumption by agriculture machines,91.09464,TJ,CO2,74100.0,kg/TJ,6750112.824,kg +20e04904-789d-3c48-8ffa-627b585f0dd9,SESCO,II.5.1,Catamarca,AR-K,annual,2014,gas oil combustion consumption by agriculture machines,91.09464,TJ,CH4,3.9,kg/TJ,355.269096,kg +20e04904-789d-3c48-8ffa-627b585f0dd9,SESCO,II.5.1,Catamarca,AR-K,annual,2014,gas oil combustion consumption by agriculture machines,91.09464,TJ,N2O,3.9,kg/TJ,355.269096,kg +87a47d1f-05ec-354e-a9ab-e5fa857eec00,SESCO,II.5.1,Chaco,AR-H,annual,2014,gas oil combustion consumption by agriculture machines,1385.4548399999999,TJ,CO2,74100.0,kg/TJ,102662203.644,kg +ba6b138b-a6d4-35c8-a2f0-c43ba1348903,SESCO,II.5.1,Chaco,AR-H,annual,2014,gas oil combustion consumption by agriculture machines,1385.4548399999999,TJ,CH4,3.9,kg/TJ,5403.273875999999,kg +ba6b138b-a6d4-35c8-a2f0-c43ba1348903,SESCO,II.5.1,Chaco,AR-H,annual,2014,gas oil combustion consumption by agriculture machines,1385.4548399999999,TJ,N2O,3.9,kg/TJ,5403.273875999999,kg +d701cdce-b759-35c4-b94a-bddae2f2af39,SESCO,II.5.1,Chubut,AR-U,annual,2014,gas oil combustion consumption by agriculture machines,19.21584,TJ,CO2,74100.0,kg/TJ,1423893.744,kg +5a1190be-9cc5-3cca-8fc4-5d1d838d9c57,SESCO,II.5.1,Chubut,AR-U,annual,2014,gas oil combustion consumption by agriculture machines,19.21584,TJ,CH4,3.9,kg/TJ,74.941776,kg +5a1190be-9cc5-3cca-8fc4-5d1d838d9c57,SESCO,II.5.1,Chubut,AR-U,annual,2014,gas oil combustion consumption by agriculture machines,19.21584,TJ,N2O,3.9,kg/TJ,74.941776,kg +fa4babb1-fc0d-383a-a717-209b052fbddf,SESCO,II.5.1,Corrientes,AR-W,annual,2014,gas oil combustion consumption by agriculture machines,418.59468,TJ,CO2,74100.0,kg/TJ,31017865.788,kg +74ee0bdd-4467-3ec4-a579-cca3d237a454,SESCO,II.5.1,Corrientes,AR-W,annual,2014,gas oil combustion consumption by agriculture machines,418.59468,TJ,CH4,3.9,kg/TJ,1632.5192519999998,kg +74ee0bdd-4467-3ec4-a579-cca3d237a454,SESCO,II.5.1,Corrientes,AR-W,annual,2014,gas oil combustion consumption by agriculture machines,418.59468,TJ,N2O,3.9,kg/TJ,1632.5192519999998,kg +11ee677e-c6d0-358e-b89f-ac8b018c26c6,SESCO,II.5.1,Córdoba,AR-X,annual,2014,gas oil combustion consumption by agriculture machines,7946.90568,TJ,CO2,74100.0,kg/TJ,588865710.888,kg +5a3597ae-bb8f-3188-a74e-ce946cac5fea,SESCO,II.5.1,Córdoba,AR-X,annual,2014,gas oil combustion consumption by agriculture machines,7946.90568,TJ,CH4,3.9,kg/TJ,30992.932151999998,kg +5a3597ae-bb8f-3188-a74e-ce946cac5fea,SESCO,II.5.1,Córdoba,AR-X,annual,2014,gas oil combustion consumption by agriculture machines,7946.90568,TJ,N2O,3.9,kg/TJ,30992.932151999998,kg +f00e2325-3f0c-3f38-bb58-ade253cf6871,SESCO,II.5.1,Entre Rios,AR-E,annual,2014,gas oil combustion consumption by agriculture machines,2325.1166399999997,TJ,CO2,74100.0,kg/TJ,172291143.024,kg +1dc6064b-1fc7-3eb9-8c0f-a09ffb867630,SESCO,II.5.1,Entre Rios,AR-E,annual,2014,gas oil combustion consumption by agriculture machines,2325.1166399999997,TJ,CH4,3.9,kg/TJ,9067.954896,kg +1dc6064b-1fc7-3eb9-8c0f-a09ffb867630,SESCO,II.5.1,Entre Rios,AR-E,annual,2014,gas oil combustion consumption by agriculture machines,2325.1166399999997,TJ,N2O,3.9,kg/TJ,9067.954896,kg +bec46821-b637-3fa3-8b0d-c57a92b1d805,SESCO,II.5.1,Formosa,AR-P,annual,2014,gas oil combustion consumption by agriculture machines,367.91832,TJ,CO2,74100.0,kg/TJ,27262747.512,kg +5483f7b4-3c64-3d19-8f89-73dc16df0490,SESCO,II.5.1,Formosa,AR-P,annual,2014,gas oil combustion consumption by agriculture machines,367.91832,TJ,CH4,3.9,kg/TJ,1434.8814479999999,kg +5483f7b4-3c64-3d19-8f89-73dc16df0490,SESCO,II.5.1,Formosa,AR-P,annual,2014,gas oil combustion consumption by agriculture machines,367.91832,TJ,N2O,3.9,kg/TJ,1434.8814479999999,kg +f5a63c6e-cd75-3152-bf58-e64f291d4aa0,SESCO,II.5.1,Jujuy,AR-Y,annual,2014,gas oil combustion consumption by agriculture machines,1085.98392,TJ,CO2,74100.0,kg/TJ,80471408.47199999,kg +e6f8f373-0d25-360a-b51e-3aea0e0adb79,SESCO,II.5.1,Jujuy,AR-Y,annual,2014,gas oil combustion consumption by agriculture machines,1085.98392,TJ,CH4,3.9,kg/TJ,4235.337288,kg +e6f8f373-0d25-360a-b51e-3aea0e0adb79,SESCO,II.5.1,Jujuy,AR-Y,annual,2014,gas oil combustion consumption by agriculture machines,1085.98392,TJ,N2O,3.9,kg/TJ,4235.337288,kg +6e00544e-4b2b-35ea-b6f4-537b697fc7d4,SESCO,II.5.1,La Pampa,AR-L,annual,2014,gas oil combustion consumption by agriculture machines,2042.51376,TJ,CO2,74100.0,kg/TJ,151350269.616,kg +d438e46a-c7b6-3b22-8f67-986b16db1161,SESCO,II.5.1,La Pampa,AR-L,annual,2014,gas oil combustion consumption by agriculture machines,2042.51376,TJ,CH4,3.9,kg/TJ,7965.803664,kg +d438e46a-c7b6-3b22-8f67-986b16db1161,SESCO,II.5.1,La Pampa,AR-L,annual,2014,gas oil combustion consumption by agriculture machines,2042.51376,TJ,N2O,3.9,kg/TJ,7965.803664,kg +27c17b51-c18b-3ead-9ccf-d6b806c8c5e1,SESCO,II.5.1,Mendoza,AR-M,annual,2014,gas oil combustion consumption by agriculture machines,466.95936,TJ,CO2,74100.0,kg/TJ,34601688.576,kg +eaf217db-0ccd-3b2b-95d2-7ff5dce51aaa,SESCO,II.5.1,Mendoza,AR-M,annual,2014,gas oil combustion consumption by agriculture machines,466.95936,TJ,CH4,3.9,kg/TJ,1821.141504,kg +eaf217db-0ccd-3b2b-95d2-7ff5dce51aaa,SESCO,II.5.1,Mendoza,AR-M,annual,2014,gas oil combustion consumption by agriculture machines,466.95936,TJ,N2O,3.9,kg/TJ,1821.141504,kg +c12e48c4-cc84-3c97-8074-afa18a9e9160,SESCO,II.5.1,Misiones,AR-N,annual,2014,gas oil combustion consumption by agriculture machines,1015.47768,TJ,CO2,74100.0,kg/TJ,75246896.088,kg +46cd2d39-5a6c-3a85-bc63-065b4848797e,SESCO,II.5.1,Misiones,AR-N,annual,2014,gas oil combustion consumption by agriculture machines,1015.47768,TJ,CH4,3.9,kg/TJ,3960.362952,kg +46cd2d39-5a6c-3a85-bc63-065b4848797e,SESCO,II.5.1,Misiones,AR-N,annual,2014,gas oil combustion consumption by agriculture machines,1015.47768,TJ,N2O,3.9,kg/TJ,3960.362952,kg +0795293b-ff9e-3e0f-95ba-2c869f527796,SESCO,II.5.1,Neuquén,AR-Q,annual,2014,gas oil combustion consumption by agriculture machines,0.10836,TJ,CO2,74100.0,kg/TJ,8029.476,kg +95119bda-fa96-3950-817a-b1b57e2ef13e,SESCO,II.5.1,Neuquén,AR-Q,annual,2014,gas oil combustion consumption by agriculture machines,0.10836,TJ,CH4,3.9,kg/TJ,0.422604,kg +95119bda-fa96-3950-817a-b1b57e2ef13e,SESCO,II.5.1,Neuquén,AR-Q,annual,2014,gas oil combustion consumption by agriculture machines,0.10836,TJ,N2O,3.9,kg/TJ,0.422604,kg +9b7eb59c-4e5d-321f-afe3-6b9956308347,SESCO,II.5.1,Rio Negro,AR-R,annual,2014,gas oil combustion consumption by agriculture machines,201.69407999999999,TJ,CO2,74100.0,kg/TJ,14945531.328,kg +cb643db9-96be-38f8-9eb6-734dc1a4ab89,SESCO,II.5.1,Rio Negro,AR-R,annual,2014,gas oil combustion consumption by agriculture machines,201.69407999999999,TJ,CH4,3.9,kg/TJ,786.606912,kg +cb643db9-96be-38f8-9eb6-734dc1a4ab89,SESCO,II.5.1,Rio Negro,AR-R,annual,2014,gas oil combustion consumption by agriculture machines,201.69407999999999,TJ,N2O,3.9,kg/TJ,786.606912,kg +1629c483-a1bd-3298-8b2b-a65d3c2411f8,SESCO,II.5.1,Salta,AR-A,annual,2014,gas oil combustion consumption by agriculture machines,1891.67664,TJ,CO2,74100.0,kg/TJ,140173239.024,kg +e4fc38aa-861a-3cef-8cbf-2d7393044ece,SESCO,II.5.1,Salta,AR-A,annual,2014,gas oil combustion consumption by agriculture machines,1891.67664,TJ,CH4,3.9,kg/TJ,7377.538895999999,kg +e4fc38aa-861a-3cef-8cbf-2d7393044ece,SESCO,II.5.1,Salta,AR-A,annual,2014,gas oil combustion consumption by agriculture machines,1891.67664,TJ,N2O,3.9,kg/TJ,7377.538895999999,kg +7c0815e4-b50c-3188-af60-dbc67aab74cd,SESCO,II.5.1,San Luis,AR-D,annual,2014,gas oil combustion consumption by agriculture machines,610.03068,TJ,CO2,74100.0,kg/TJ,45203273.388,kg +8084c344-de5d-3f84-8892-57145a01df61,SESCO,II.5.1,San Luis,AR-D,annual,2014,gas oil combustion consumption by agriculture machines,610.03068,TJ,CH4,3.9,kg/TJ,2379.119652,kg +8084c344-de5d-3f84-8892-57145a01df61,SESCO,II.5.1,San Luis,AR-D,annual,2014,gas oil combustion consumption by agriculture machines,610.03068,TJ,N2O,3.9,kg/TJ,2379.119652,kg +595b9dee-606c-3371-abf3-d1252e8a6c16,SESCO,II.5.1,Santa Cruz,AR-Z,annual,2014,gas oil combustion consumption by agriculture machines,1.76988,TJ,CO2,74100.0,kg/TJ,131148.10799999998,kg +af2a6152-ac33-36a3-93ea-d6a021cd65f0,SESCO,II.5.1,Santa Cruz,AR-Z,annual,2014,gas oil combustion consumption by agriculture machines,1.76988,TJ,CH4,3.9,kg/TJ,6.902531999999999,kg +af2a6152-ac33-36a3-93ea-d6a021cd65f0,SESCO,II.5.1,Santa Cruz,AR-Z,annual,2014,gas oil combustion consumption by agriculture machines,1.76988,TJ,N2O,3.9,kg/TJ,6.902531999999999,kg +bc805d94-1c8b-33b2-acaa-9078a8061e48,SESCO,II.5.1,Santa Fe,AR-S,annual,2014,gas oil combustion consumption by agriculture machines,6437.34252,TJ,CO2,74100.0,kg/TJ,477007080.732,kg +2f08f161-0195-3c78-b7df-cc3a88a67aea,SESCO,II.5.1,Santa Fe,AR-S,annual,2014,gas oil combustion consumption by agriculture machines,6437.34252,TJ,CH4,3.9,kg/TJ,25105.635828,kg +2f08f161-0195-3c78-b7df-cc3a88a67aea,SESCO,II.5.1,Santa Fe,AR-S,annual,2014,gas oil combustion consumption by agriculture machines,6437.34252,TJ,N2O,3.9,kg/TJ,25105.635828,kg +779da3f1-2aff-3d00-af80-659be145af5d,SESCO,II.5.1,Santiago del Estero,AR-G,annual,2014,gas oil combustion consumption by agriculture machines,1738.2749999999999,TJ,CO2,74100.0,kg/TJ,128806177.49999999,kg +2327e88b-ab98-3405-9343-8db145fec055,SESCO,II.5.1,Santiago del Estero,AR-G,annual,2014,gas oil combustion consumption by agriculture machines,1738.2749999999999,TJ,CH4,3.9,kg/TJ,6779.272499999999,kg +2327e88b-ab98-3405-9343-8db145fec055,SESCO,II.5.1,Santiago del Estero,AR-G,annual,2014,gas oil combustion consumption by agriculture machines,1738.2749999999999,TJ,N2O,3.9,kg/TJ,6779.272499999999,kg +2790679c-7178-36b4-a465-fa95f858a1b5,SESCO,II.5.1,Tucuman,AR-T,annual,2014,gas oil combustion consumption by agriculture machines,1476.9468,TJ,CO2,74100.0,kg/TJ,109441757.88,kg +a52f736b-d1c7-3913-afa0-27b125c884dd,SESCO,II.5.1,Tucuman,AR-T,annual,2014,gas oil combustion consumption by agriculture machines,1476.9468,TJ,CH4,3.9,kg/TJ,5760.092519999999,kg +a52f736b-d1c7-3913-afa0-27b125c884dd,SESCO,II.5.1,Tucuman,AR-T,annual,2014,gas oil combustion consumption by agriculture machines,1476.9468,TJ,N2O,3.9,kg/TJ,5760.092519999999,kg +32dcbe39-f96d-35dd-923e-c6131e8f38a6,SESCO,II.5.1,Buenos Aires,AR-B,annual,2014,gas oil combustion consumption by agriculture machines,130.06812,TJ,CO2,74100.0,kg/TJ,9638047.692,kg +b90dff1f-e886-3ab6-8342-6d00063504a2,SESCO,II.5.1,Buenos Aires,AR-B,annual,2014,gas oil combustion consumption by agriculture machines,130.06812,TJ,CH4,3.9,kg/TJ,507.26566799999995,kg +b90dff1f-e886-3ab6-8342-6d00063504a2,SESCO,II.5.1,Buenos Aires,AR-B,annual,2014,gas oil combustion consumption by agriculture machines,130.06812,TJ,N2O,3.9,kg/TJ,507.26566799999995,kg +60a99f73-c378-350e-98de-953fa71cf459,SESCO,II.5.1,Catamarca,AR-K,annual,2014,gas oil combustion consumption by agriculture machines,7.0434,TJ,CO2,74100.0,kg/TJ,521915.94,kg +aa496ba2-caaa-38d6-b5b1-506b1c81e22a,SESCO,II.5.1,Catamarca,AR-K,annual,2014,gas oil combustion consumption by agriculture machines,7.0434,TJ,CH4,3.9,kg/TJ,27.46926,kg +aa496ba2-caaa-38d6-b5b1-506b1c81e22a,SESCO,II.5.1,Catamarca,AR-K,annual,2014,gas oil combustion consumption by agriculture machines,7.0434,TJ,N2O,3.9,kg/TJ,27.46926,kg +ea2773cc-d8a2-3942-b1fe-262d9d7a7a65,SESCO,II.5.1,Chaco,AR-H,annual,2014,gas oil combustion consumption by agriculture machines,44.64432,TJ,CO2,74100.0,kg/TJ,3308144.112,kg +33fea331-768e-3aef-be3c-98d282bccb55,SESCO,II.5.1,Chaco,AR-H,annual,2014,gas oil combustion consumption by agriculture machines,44.64432,TJ,CH4,3.9,kg/TJ,174.11284799999999,kg +33fea331-768e-3aef-be3c-98d282bccb55,SESCO,II.5.1,Chaco,AR-H,annual,2014,gas oil combustion consumption by agriculture machines,44.64432,TJ,N2O,3.9,kg/TJ,174.11284799999999,kg +c9e8630f-c13e-3a28-b044-46ef96068607,SESCO,II.5.1,Chubut,AR-U,annual,2014,gas oil combustion consumption by agriculture machines,0.32508,TJ,CO2,74100.0,kg/TJ,24088.428,kg +920b32bc-2159-3418-a13b-0a98d54d2419,SESCO,II.5.1,Chubut,AR-U,annual,2014,gas oil combustion consumption by agriculture machines,0.32508,TJ,CH4,3.9,kg/TJ,1.267812,kg +920b32bc-2159-3418-a13b-0a98d54d2419,SESCO,II.5.1,Chubut,AR-U,annual,2014,gas oil combustion consumption by agriculture machines,0.32508,TJ,N2O,3.9,kg/TJ,1.267812,kg +56d6b5dd-66b5-3c8d-8f98-595ac6cfbf11,SESCO,II.5.1,Corrientes,AR-W,annual,2014,gas oil combustion consumption by agriculture machines,30.23244,TJ,CO2,74100.0,kg/TJ,2240223.804,kg +e14a65ad-9078-3df2-99e4-711333108301,SESCO,II.5.1,Corrientes,AR-W,annual,2014,gas oil combustion consumption by agriculture machines,30.23244,TJ,CH4,3.9,kg/TJ,117.906516,kg +e14a65ad-9078-3df2-99e4-711333108301,SESCO,II.5.1,Corrientes,AR-W,annual,2014,gas oil combustion consumption by agriculture machines,30.23244,TJ,N2O,3.9,kg/TJ,117.906516,kg +1ac908de-927c-3386-9c99-8654c17207c7,SESCO,II.5.1,Córdoba,AR-X,annual,2014,gas oil combustion consumption by agriculture machines,27.4512,TJ,CO2,74100.0,kg/TJ,2034133.92,kg +604cf9b0-5597-3f43-98b2-2141ce8ee3c3,SESCO,II.5.1,Córdoba,AR-X,annual,2014,gas oil combustion consumption by agriculture machines,27.4512,TJ,CH4,3.9,kg/TJ,107.05968,kg +604cf9b0-5597-3f43-98b2-2141ce8ee3c3,SESCO,II.5.1,Córdoba,AR-X,annual,2014,gas oil combustion consumption by agriculture machines,27.4512,TJ,N2O,3.9,kg/TJ,107.05968,kg +12922e33-37c7-3088-9606-7f9d54b992d3,SESCO,II.5.1,Entre Rios,AR-E,annual,2014,gas oil combustion consumption by agriculture machines,5.9597999999999995,TJ,CO2,74100.0,kg/TJ,441621.18,kg +f5e42838-2a63-3999-a975-1c2e5e040377,SESCO,II.5.1,Entre Rios,AR-E,annual,2014,gas oil combustion consumption by agriculture machines,5.9597999999999995,TJ,CH4,3.9,kg/TJ,23.243219999999997,kg +f5e42838-2a63-3999-a975-1c2e5e040377,SESCO,II.5.1,Entre Rios,AR-E,annual,2014,gas oil combustion consumption by agriculture machines,5.9597999999999995,TJ,N2O,3.9,kg/TJ,23.243219999999997,kg +aafa8fd2-0ad4-310e-9d10-27443fff0ad9,SESCO,II.5.1,Jujuy,AR-Y,annual,2014,gas oil combustion consumption by agriculture machines,13.3644,TJ,CO2,74100.0,kg/TJ,990302.04,kg +56dbca05-65e9-309a-9629-9b9f7c9cf183,SESCO,II.5.1,Jujuy,AR-Y,annual,2014,gas oil combustion consumption by agriculture machines,13.3644,TJ,CH4,3.9,kg/TJ,52.121159999999996,kg +56dbca05-65e9-309a-9629-9b9f7c9cf183,SESCO,II.5.1,Jujuy,AR-Y,annual,2014,gas oil combustion consumption by agriculture machines,13.3644,TJ,N2O,3.9,kg/TJ,52.121159999999996,kg +2e8dea21-6fa9-3043-85d2-7c13ecc90f55,SESCO,II.5.1,La Pampa,AR-L,annual,2014,gas oil combustion consumption by agriculture machines,74.98512,TJ,CO2,74100.0,kg/TJ,5556397.392,kg +dc49de2b-e92c-3064-aaf3-01bd6e597f39,SESCO,II.5.1,La Pampa,AR-L,annual,2014,gas oil combustion consumption by agriculture machines,74.98512,TJ,CH4,3.9,kg/TJ,292.441968,kg +dc49de2b-e92c-3064-aaf3-01bd6e597f39,SESCO,II.5.1,La Pampa,AR-L,annual,2014,gas oil combustion consumption by agriculture machines,74.98512,TJ,N2O,3.9,kg/TJ,292.441968,kg +55a08202-2816-3ade-b8a1-43fafca45a55,SESCO,II.5.1,Misiones,AR-N,annual,2014,gas oil combustion consumption by agriculture machines,14.88144,TJ,CO2,74100.0,kg/TJ,1102714.704,kg +091e6eef-1647-3187-a368-e4c2a2f795b2,SESCO,II.5.1,Misiones,AR-N,annual,2014,gas oil combustion consumption by agriculture machines,14.88144,TJ,CH4,3.9,kg/TJ,58.037616,kg +091e6eef-1647-3187-a368-e4c2a2f795b2,SESCO,II.5.1,Misiones,AR-N,annual,2014,gas oil combustion consumption by agriculture machines,14.88144,TJ,N2O,3.9,kg/TJ,58.037616,kg +3719960b-2d0d-3891-b140-16a6e67b97cf,SESCO,II.5.1,Salta,AR-A,annual,2014,gas oil combustion consumption by agriculture machines,109.94928,TJ,CO2,74100.0,kg/TJ,8147241.648,kg +b5c2291c-90a7-3959-87be-084f764957b1,SESCO,II.5.1,Salta,AR-A,annual,2014,gas oil combustion consumption by agriculture machines,109.94928,TJ,CH4,3.9,kg/TJ,428.802192,kg +b5c2291c-90a7-3959-87be-084f764957b1,SESCO,II.5.1,Salta,AR-A,annual,2014,gas oil combustion consumption by agriculture machines,109.94928,TJ,N2O,3.9,kg/TJ,428.802192,kg +1a64da6f-b5b7-3b61-8698-79f7417a6c39,SESCO,II.5.1,San Luis,AR-D,annual,2014,gas oil combustion consumption by agriculture machines,17.91552,TJ,CO2,74100.0,kg/TJ,1327540.0320000001,kg +7e3fb144-3843-327e-ba7d-091e4456c168,SESCO,II.5.1,San Luis,AR-D,annual,2014,gas oil combustion consumption by agriculture machines,17.91552,TJ,CH4,3.9,kg/TJ,69.87052800000001,kg +7e3fb144-3843-327e-ba7d-091e4456c168,SESCO,II.5.1,San Luis,AR-D,annual,2014,gas oil combustion consumption by agriculture machines,17.91552,TJ,N2O,3.9,kg/TJ,69.87052800000001,kg +55fb29c4-05f1-32ae-8811-be87d9cc6d86,SESCO,II.5.1,Santa Fe,AR-S,annual,2014,gas oil combustion consumption by agriculture machines,102.25572,TJ,CO2,74100.0,kg/TJ,7577148.852,kg +7d8668f6-0781-3eb1-aae9-6ffbe2081225,SESCO,II.5.1,Santa Fe,AR-S,annual,2014,gas oil combustion consumption by agriculture machines,102.25572,TJ,CH4,3.9,kg/TJ,398.797308,kg +7d8668f6-0781-3eb1-aae9-6ffbe2081225,SESCO,II.5.1,Santa Fe,AR-S,annual,2014,gas oil combustion consumption by agriculture machines,102.25572,TJ,N2O,3.9,kg/TJ,398.797308,kg +8ea212b2-c44d-340c-bcef-3470f971126e,SESCO,II.5.1,Santiago del Estero,AR-G,annual,2014,gas oil combustion consumption by agriculture machines,91.49195999999999,TJ,CO2,74100.0,kg/TJ,6779554.236,kg +cdbd44d5-9869-3cdd-8cd5-242232f30caa,SESCO,II.5.1,Santiago del Estero,AR-G,annual,2014,gas oil combustion consumption by agriculture machines,91.49195999999999,TJ,CH4,3.9,kg/TJ,356.81864399999995,kg +cdbd44d5-9869-3cdd-8cd5-242232f30caa,SESCO,II.5.1,Santiago del Estero,AR-G,annual,2014,gas oil combustion consumption by agriculture machines,91.49195999999999,TJ,N2O,3.9,kg/TJ,356.81864399999995,kg +4383c80b-5b50-3b21-83bf-14aea5f2af16,SESCO,II.5.1,Tucuman,AR-T,annual,2014,gas oil combustion consumption by agriculture machines,59.27292,TJ,CO2,74100.0,kg/TJ,4392123.3719999995,kg +0949cf96-145e-30f2-affe-717658248e4a,SESCO,II.5.1,Tucuman,AR-T,annual,2014,gas oil combustion consumption by agriculture machines,59.27292,TJ,CH4,3.9,kg/TJ,231.164388,kg +0949cf96-145e-30f2-affe-717658248e4a,SESCO,II.5.1,Tucuman,AR-T,annual,2014,gas oil combustion consumption by agriculture machines,59.27292,TJ,N2O,3.9,kg/TJ,231.164388,kg +e67786ed-0dcd-39ba-996b-d88457429d28,SESCO,II.5.1,Buenos Aires,AR-B,annual,2014,jet kerosene combustion consumption by agriculture machines,8.366497999999998,TJ,CO2,71500.0,kg/TJ,598204.6069999998,kg +b74d7a07-b868-3901-a05c-ae57669f7817,SESCO,II.5.1,Buenos Aires,AR-B,annual,2014,jet kerosene combustion consumption by agriculture machines,8.366497999999998,TJ,CH4,0.5,kg/TJ,4.183248999999999,kg +ee43cfa7-6051-3c0c-ba36-f01eee452206,SESCO,II.5.1,Buenos Aires,AR-B,annual,2014,jet kerosene combustion consumption by agriculture machines,8.366497999999998,TJ,N2O,2.0,kg/TJ,16.732995999999996,kg +6b33979f-9d99-3242-968a-1e16da1409a8,SESCO,II.5.1,Córdoba,AR-X,annual,2014,jet kerosene combustion consumption by agriculture machines,0.7548719999999999,TJ,CO2,71500.0,kg/TJ,53973.34799999999,kg +99870a91-f9c8-3f3f-a901-9bb48cff51ec,SESCO,II.5.1,Córdoba,AR-X,annual,2014,jet kerosene combustion consumption by agriculture machines,0.7548719999999999,TJ,CH4,0.5,kg/TJ,0.37743599999999994,kg +d48d69bd-caa8-380a-b713-1468aa8f2bdd,SESCO,II.5.1,Córdoba,AR-X,annual,2014,jet kerosene combustion consumption by agriculture machines,0.7548719999999999,TJ,N2O,2.0,kg/TJ,1.5097439999999998,kg +fde7ca6d-a175-3877-9429-c9191f909738,SESCO,II.5.1,Entre Rios,AR-E,annual,2014,jet kerosene combustion consumption by agriculture machines,0.157265,TJ,CO2,71500.0,kg/TJ,11244.447499999998,kg +0a2b02da-e900-3b4a-9805-c75316635314,SESCO,II.5.1,Entre Rios,AR-E,annual,2014,jet kerosene combustion consumption by agriculture machines,0.157265,TJ,CH4,0.5,kg/TJ,0.0786325,kg +fc0df5e4-0fc4-3c4f-8a62-418b1dffb0b0,SESCO,II.5.1,Entre Rios,AR-E,annual,2014,jet kerosene combustion consumption by agriculture machines,0.157265,TJ,N2O,2.0,kg/TJ,0.31453,kg +118346bd-92ac-39d8-b0f5-df77c308780e,SESCO,II.5.1,La Pampa,AR-L,annual,2014,jet kerosene combustion consumption by agriculture machines,1.25812,TJ,CO2,71500.0,kg/TJ,89955.57999999999,kg +9d293ba2-ebba-3922-9dc9-35878266eeb5,SESCO,II.5.1,La Pampa,AR-L,annual,2014,jet kerosene combustion consumption by agriculture machines,1.25812,TJ,CH4,0.5,kg/TJ,0.62906,kg +15e93144-a210-360d-9b34-9ab7dab7fccf,SESCO,II.5.1,La Pampa,AR-L,annual,2014,jet kerosene combustion consumption by agriculture machines,1.25812,TJ,N2O,2.0,kg/TJ,2.51624,kg +688d079c-3dc5-39e4-83bf-244c26ba1e73,SESCO,II.5.1,Santa Fe,AR-S,annual,2014,jet kerosene combustion consumption by agriculture machines,2.9251289999999996,TJ,CO2,71500.0,kg/TJ,209146.72349999996,kg +c864b1bf-3098-32c4-b5dc-282bfa62799d,SESCO,II.5.1,Santa Fe,AR-S,annual,2014,jet kerosene combustion consumption by agriculture machines,2.9251289999999996,TJ,CH4,0.5,kg/TJ,1.4625644999999998,kg +27b2e318-1b91-3dbb-a96c-5f6c321a74b6,SESCO,II.5.1,Santa Fe,AR-S,annual,2014,jet kerosene combustion consumption by agriculture machines,2.9251289999999996,TJ,N2O,2.0,kg/TJ,5.850257999999999,kg +c04f370f-0a89-3cd5-9987-a4d9ac52df66,SESCO,II.1.1,Buenos Aires,AR-B,annual,2014,gas oil combustion consumption by to the public,38284.45488,TJ,CO2,74100.0,kg/TJ,2836878106.608,kg +ab3f894f-fa5b-3fbb-9268-60a725becf6f,SESCO,II.1.1,Buenos Aires,AR-B,annual,2014,gas oil combustion consumption by to the public,38284.45488,TJ,CH4,3.9,kg/TJ,149309.374032,kg +ab3f894f-fa5b-3fbb-9268-60a725becf6f,SESCO,II.1.1,Buenos Aires,AR-B,annual,2014,gas oil combustion consumption by to the public,38284.45488,TJ,N2O,3.9,kg/TJ,149309.374032,kg +67a5389f-5b3c-3ca6-8bb2-516d1a140158,SESCO,II.1.1,Capital Federal,AR-C,annual,2014,gas oil combustion consumption by to the public,4196.16876,TJ,CO2,74100.0,kg/TJ,310936105.116,kg +c99edece-1aef-3220-8669-67b7779231e7,SESCO,II.1.1,Capital Federal,AR-C,annual,2014,gas oil combustion consumption by to the public,4196.16876,TJ,CH4,3.9,kg/TJ,16365.058163999998,kg +c99edece-1aef-3220-8669-67b7779231e7,SESCO,II.1.1,Capital Federal,AR-C,annual,2014,gas oil combustion consumption by to the public,4196.16876,TJ,N2O,3.9,kg/TJ,16365.058163999998,kg +d6c0c22f-08c2-32da-a03c-035ef74b1d68,SESCO,II.1.1,Catamarca,AR-K,annual,2014,gas oil combustion consumption by to the public,456.3762,TJ,CO2,74100.0,kg/TJ,33817476.42,kg +982d542e-1039-34e8-8244-7d490ee3f61a,SESCO,II.1.1,Catamarca,AR-K,annual,2014,gas oil combustion consumption by to the public,456.3762,TJ,CH4,3.9,kg/TJ,1779.86718,kg +982d542e-1039-34e8-8244-7d490ee3f61a,SESCO,II.1.1,Catamarca,AR-K,annual,2014,gas oil combustion consumption by to the public,456.3762,TJ,N2O,3.9,kg/TJ,1779.86718,kg +f1674f04-4f3a-3454-958b-b24b7c6936de,SESCO,II.1.1,Chaco,AR-H,annual,2014,gas oil combustion consumption by to the public,2749.05708,TJ,CO2,74100.0,kg/TJ,203705129.628,kg +fa1b8674-d705-38aa-aed4-fb61a6b28ea3,SESCO,II.1.1,Chaco,AR-H,annual,2014,gas oil combustion consumption by to the public,2749.05708,TJ,CH4,3.9,kg/TJ,10721.322612,kg +fa1b8674-d705-38aa-aed4-fb61a6b28ea3,SESCO,II.1.1,Chaco,AR-H,annual,2014,gas oil combustion consumption by to the public,2749.05708,TJ,N2O,3.9,kg/TJ,10721.322612,kg +8069cabf-7e29-3375-ba6d-f0060cc3e24e,SESCO,II.1.1,Chubut,AR-U,annual,2014,gas oil combustion consumption by to the public,5372.7055199999995,TJ,CO2,74100.0,kg/TJ,398117479.03199995,kg +0ceb604f-5e3e-3a81-9cea-0b821eed3250,SESCO,II.1.1,Chubut,AR-U,annual,2014,gas oil combustion consumption by to the public,5372.7055199999995,TJ,CH4,3.9,kg/TJ,20953.551527999996,kg +0ceb604f-5e3e-3a81-9cea-0b821eed3250,SESCO,II.1.1,Chubut,AR-U,annual,2014,gas oil combustion consumption by to the public,5372.7055199999995,TJ,N2O,3.9,kg/TJ,20953.551527999996,kg +be3fcd2f-9da7-328c-9fa5-53a7be82a869,SESCO,II.1.1,Corrientes,AR-W,annual,2014,gas oil combustion consumption by to the public,2126.2760399999997,TJ,CO2,74100.0,kg/TJ,157557054.56399998,kg +d77f924b-0a13-362f-ba33-3af953bcc08d,SESCO,II.1.1,Corrientes,AR-W,annual,2014,gas oil combustion consumption by to the public,2126.2760399999997,TJ,CH4,3.9,kg/TJ,8292.476556,kg +d77f924b-0a13-362f-ba33-3af953bcc08d,SESCO,II.1.1,Corrientes,AR-W,annual,2014,gas oil combustion consumption by to the public,2126.2760399999997,TJ,N2O,3.9,kg/TJ,8292.476556,kg +e119db29-26e3-33dd-b492-13f8231af781,SESCO,II.1.1,Córdoba,AR-X,annual,2014,gas oil combustion consumption by to the public,13765.1514,TJ,CO2,74100.0,kg/TJ,1019997718.74,kg +8ddd2cc4-0205-3840-8d0b-5846ec7c8fc5,SESCO,II.1.1,Córdoba,AR-X,annual,2014,gas oil combustion consumption by to the public,13765.1514,TJ,CH4,3.9,kg/TJ,53684.09046,kg +8ddd2cc4-0205-3840-8d0b-5846ec7c8fc5,SESCO,II.1.1,Córdoba,AR-X,annual,2014,gas oil combustion consumption by to the public,13765.1514,TJ,N2O,3.9,kg/TJ,53684.09046,kg +aa920211-30e9-3acc-ad18-75ec14f79fc4,SESCO,II.1.1,Entre Rios,AR-E,annual,2014,gas oil combustion consumption by to the public,4504.41684,TJ,CO2,74100.0,kg/TJ,333777287.844,kg +3d7b8d70-328f-3152-bfcf-cbc98bbdf439,SESCO,II.1.1,Entre Rios,AR-E,annual,2014,gas oil combustion consumption by to the public,4504.41684,TJ,CH4,3.9,kg/TJ,17567.225676,kg +3d7b8d70-328f-3152-bfcf-cbc98bbdf439,SESCO,II.1.1,Entre Rios,AR-E,annual,2014,gas oil combustion consumption by to the public,4504.41684,TJ,N2O,3.9,kg/TJ,17567.225676,kg +9bb54f96-5a46-3a7e-a3db-60357c7db33d,SESCO,II.1.1,Formosa,AR-P,annual,2014,gas oil combustion consumption by to the public,892.164,TJ,CO2,74100.0,kg/TJ,66109352.4,kg +c0547fd8-ccd0-3c2b-b8c4-d7888745c393,SESCO,II.1.1,Formosa,AR-P,annual,2014,gas oil combustion consumption by to the public,892.164,TJ,CH4,3.9,kg/TJ,3479.4395999999997,kg +c0547fd8-ccd0-3c2b-b8c4-d7888745c393,SESCO,II.1.1,Formosa,AR-P,annual,2014,gas oil combustion consumption by to the public,892.164,TJ,N2O,3.9,kg/TJ,3479.4395999999997,kg +8fe55c0c-8afd-3520-b475-28178d72f243,SESCO,II.1.1,Jujuy,AR-Y,annual,2014,gas oil combustion consumption by to the public,2042.15256,TJ,CO2,74100.0,kg/TJ,151323504.696,kg +7e46bb14-91d3-3b24-8f19-bf0594e9a0d1,SESCO,II.1.1,Jujuy,AR-Y,annual,2014,gas oil combustion consumption by to the public,2042.15256,TJ,CH4,3.9,kg/TJ,7964.394984,kg +7e46bb14-91d3-3b24-8f19-bf0594e9a0d1,SESCO,II.1.1,Jujuy,AR-Y,annual,2014,gas oil combustion consumption by to the public,2042.15256,TJ,N2O,3.9,kg/TJ,7964.394984,kg +776891e7-47dc-36fe-94f1-d985441f484d,SESCO,II.1.1,La Pampa,AR-L,annual,2014,gas oil combustion consumption by to the public,2541.4031999999997,TJ,CO2,74100.0,kg/TJ,188317977.11999997,kg +26be41a7-5a48-34c3-b908-4b044ee06520,SESCO,II.1.1,La Pampa,AR-L,annual,2014,gas oil combustion consumption by to the public,2541.4031999999997,TJ,CH4,3.9,kg/TJ,9911.472479999999,kg +26be41a7-5a48-34c3-b908-4b044ee06520,SESCO,II.1.1,La Pampa,AR-L,annual,2014,gas oil combustion consumption by to the public,2541.4031999999997,TJ,N2O,3.9,kg/TJ,9911.472479999999,kg +ba9d9935-d85e-39e4-a527-a876cf24c6cc,SESCO,II.1.1,La Rioja,AR-F,annual,2014,gas oil combustion consumption by to the public,861.89544,TJ,CO2,74100.0,kg/TJ,63866452.104,kg +4c8b5d88-2251-3cdb-b455-3c7504b5d475,SESCO,II.1.1,La Rioja,AR-F,annual,2014,gas oil combustion consumption by to the public,861.89544,TJ,CH4,3.9,kg/TJ,3361.3922159999997,kg +4c8b5d88-2251-3cdb-b455-3c7504b5d475,SESCO,II.1.1,La Rioja,AR-F,annual,2014,gas oil combustion consumption by to the public,861.89544,TJ,N2O,3.9,kg/TJ,3361.3922159999997,kg +869c95cd-48bb-3bdc-9be1-c890ea46f45c,SESCO,II.1.1,Mendoza,AR-M,annual,2014,gas oil combustion consumption by to the public,12651.824639999999,TJ,CO2,74100.0,kg/TJ,937500205.8239999,kg +6c23cb93-d1c5-31b3-a0c6-7ab647c1fbe7,SESCO,II.1.1,Mendoza,AR-M,annual,2014,gas oil combustion consumption by to the public,12651.824639999999,TJ,CH4,3.9,kg/TJ,49342.116096,kg +6c23cb93-d1c5-31b3-a0c6-7ab647c1fbe7,SESCO,II.1.1,Mendoza,AR-M,annual,2014,gas oil combustion consumption by to the public,12651.824639999999,TJ,N2O,3.9,kg/TJ,49342.116096,kg +45e47202-1e2a-3217-a0e2-fa7e0f55e3ba,SESCO,II.1.1,Misiones,AR-N,annual,2014,gas oil combustion consumption by to the public,4386.2321999999995,TJ,CO2,74100.0,kg/TJ,325019806.02,kg +065670ea-7bd5-3490-82b6-ea23c7eaef5d,SESCO,II.1.1,Misiones,AR-N,annual,2014,gas oil combustion consumption by to the public,4386.2321999999995,TJ,CH4,3.9,kg/TJ,17106.305579999997,kg +065670ea-7bd5-3490-82b6-ea23c7eaef5d,SESCO,II.1.1,Misiones,AR-N,annual,2014,gas oil combustion consumption by to the public,4386.2321999999995,TJ,N2O,3.9,kg/TJ,17106.305579999997,kg +61773162-f55f-37e8-9f00-811912c8a094,SESCO,II.1.1,Neuquén,AR-Q,annual,2014,gas oil combustion consumption by to the public,3638.76492,TJ,CO2,74100.0,kg/TJ,269632480.572,kg +fa8dd66f-025b-3270-aa65-a933f8c61bc3,SESCO,II.1.1,Neuquén,AR-Q,annual,2014,gas oil combustion consumption by to the public,3638.76492,TJ,CH4,3.9,kg/TJ,14191.183187999999,kg +fa8dd66f-025b-3270-aa65-a933f8c61bc3,SESCO,II.1.1,Neuquén,AR-Q,annual,2014,gas oil combustion consumption by to the public,3638.76492,TJ,N2O,3.9,kg/TJ,14191.183187999999,kg +c5b4dbbb-a9cd-3bd2-aaa6-9f8e7c10cb4a,SESCO,II.1.1,Rio Negro,AR-R,annual,2014,gas oil combustion consumption by to the public,4832.20584,TJ,CO2,74100.0,kg/TJ,358066452.74399996,kg +c224bd7c-0bfc-3552-8dd3-f45c66f425eb,SESCO,II.1.1,Rio Negro,AR-R,annual,2014,gas oil combustion consumption by to the public,4832.20584,TJ,CH4,3.9,kg/TJ,18845.602776,kg +c224bd7c-0bfc-3552-8dd3-f45c66f425eb,SESCO,II.1.1,Rio Negro,AR-R,annual,2014,gas oil combustion consumption by to the public,4832.20584,TJ,N2O,3.9,kg/TJ,18845.602776,kg +fa8952ba-fc5e-37f7-b0e6-886caeab6226,SESCO,II.1.1,Salta,AR-A,annual,2014,gas oil combustion consumption by to the public,4162.72164,TJ,CO2,74100.0,kg/TJ,308457673.524,kg +bccfad04-b7c5-3584-8976-79c565ac4490,SESCO,II.1.1,Salta,AR-A,annual,2014,gas oil combustion consumption by to the public,4162.72164,TJ,CH4,3.9,kg/TJ,16234.614395999999,kg +bccfad04-b7c5-3584-8976-79c565ac4490,SESCO,II.1.1,Salta,AR-A,annual,2014,gas oil combustion consumption by to the public,4162.72164,TJ,N2O,3.9,kg/TJ,16234.614395999999,kg +b6fd24ee-1c0f-3969-bf37-028e866ea6b3,SESCO,II.1.1,San Juan,AR-J,annual,2014,gas oil combustion consumption by to the public,2359.0694399999998,TJ,CO2,74100.0,kg/TJ,174807045.50399998,kg +043d9b2b-63f8-3701-a396-e3deb72e60b2,SESCO,II.1.1,San Juan,AR-J,annual,2014,gas oil combustion consumption by to the public,2359.0694399999998,TJ,CH4,3.9,kg/TJ,9200.370815999999,kg +043d9b2b-63f8-3701-a396-e3deb72e60b2,SESCO,II.1.1,San Juan,AR-J,annual,2014,gas oil combustion consumption by to the public,2359.0694399999998,TJ,N2O,3.9,kg/TJ,9200.370815999999,kg +16806e31-282f-303d-8061-ddddb82cde43,SESCO,II.1.1,San Luis,AR-D,annual,2014,gas oil combustion consumption by to the public,2153.69112,TJ,CO2,74100.0,kg/TJ,159588511.99199998,kg +910a5de0-aaaf-345d-8387-79e8eacca47a,SESCO,II.1.1,San Luis,AR-D,annual,2014,gas oil combustion consumption by to the public,2153.69112,TJ,CH4,3.9,kg/TJ,8399.395368,kg +910a5de0-aaaf-345d-8387-79e8eacca47a,SESCO,II.1.1,San Luis,AR-D,annual,2014,gas oil combustion consumption by to the public,2153.69112,TJ,N2O,3.9,kg/TJ,8399.395368,kg +b7bf778c-e3b1-378e-9133-ded176beabc5,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2014,gas oil combustion consumption by to the public,3444.65604,TJ,CO2,74100.0,kg/TJ,255249012.56399998,kg +f106a4ae-f39b-377e-8b09-106e49a2554d,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2014,gas oil combustion consumption by to the public,3444.65604,TJ,CH4,3.9,kg/TJ,13434.158555999998,kg +f106a4ae-f39b-377e-8b09-106e49a2554d,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2014,gas oil combustion consumption by to the public,3444.65604,TJ,N2O,3.9,kg/TJ,13434.158555999998,kg +d5c558ad-c568-38b4-be86-9b0a516bbab6,SESCO,II.1.1,Santa Fe,AR-S,annual,2014,gas oil combustion consumption by to the public,10780.05012,TJ,CO2,74100.0,kg/TJ,798801713.892,kg +6f4bc927-66be-35e8-a461-d86eebc37261,SESCO,II.1.1,Santa Fe,AR-S,annual,2014,gas oil combustion consumption by to the public,10780.05012,TJ,CH4,3.9,kg/TJ,42042.195468,kg +6f4bc927-66be-35e8-a461-d86eebc37261,SESCO,II.1.1,Santa Fe,AR-S,annual,2014,gas oil combustion consumption by to the public,10780.05012,TJ,N2O,3.9,kg/TJ,42042.195468,kg +981bb55a-fd2d-3d3c-9359-db26f98b71a0,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2014,gas oil combustion consumption by to the public,2331.61824,TJ,CO2,74100.0,kg/TJ,172772911.584,kg +55bfe04a-9b14-3319-80e0-7bd91b18c427,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2014,gas oil combustion consumption by to the public,2331.61824,TJ,CH4,3.9,kg/TJ,9093.311135999998,kg +55bfe04a-9b14-3319-80e0-7bd91b18c427,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2014,gas oil combustion consumption by to the public,2331.61824,TJ,N2O,3.9,kg/TJ,9093.311135999998,kg +3c6dbdb0-49e9-30bb-9e53-b17c03a7a218,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2014,gas oil combustion consumption by to the public,1116.32472,TJ,CO2,74100.0,kg/TJ,82719661.752,kg +13d9a468-a089-3147-81ec-7375448cbe8a,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2014,gas oil combustion consumption by to the public,1116.32472,TJ,CH4,3.9,kg/TJ,4353.666408,kg +13d9a468-a089-3147-81ec-7375448cbe8a,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2014,gas oil combustion consumption by to the public,1116.32472,TJ,N2O,3.9,kg/TJ,4353.666408,kg +56cd58fa-5f75-3b3b-b8fd-a6b4790f26f9,SESCO,II.1.1,Tucuman,AR-T,annual,2014,gas oil combustion consumption by to the public,2416.428,TJ,CO2,74100.0,kg/TJ,179057314.79999998,kg +ad817860-d220-3697-a6a7-24c45d4a8636,SESCO,II.1.1,Tucuman,AR-T,annual,2014,gas oil combustion consumption by to the public,2416.428,TJ,CH4,3.9,kg/TJ,9424.0692,kg +ad817860-d220-3697-a6a7-24c45d4a8636,SESCO,II.1.1,Tucuman,AR-T,annual,2014,gas oil combustion consumption by to the public,2416.428,TJ,N2O,3.9,kg/TJ,9424.0692,kg +eb34f81f-c3cc-3ed7-824d-08df913912d6,SESCO,II.1.1,Buenos Aires,AR-B,annual,2014,gas oil combustion consumption by to the public,12169.5504,TJ,CO2,74100.0,kg/TJ,901763684.64,kg +b28b02ec-0c01-33ad-b9d9-d3afeabcf335,SESCO,II.1.1,Buenos Aires,AR-B,annual,2014,gas oil combustion consumption by to the public,12169.5504,TJ,CH4,3.9,kg/TJ,47461.24656,kg +b28b02ec-0c01-33ad-b9d9-d3afeabcf335,SESCO,II.1.1,Buenos Aires,AR-B,annual,2014,gas oil combustion consumption by to the public,12169.5504,TJ,N2O,3.9,kg/TJ,47461.24656,kg +b537d9a7-987e-3357-a490-27661b2e9ac3,SESCO,II.1.1,Capital Federal,AR-C,annual,2014,gas oil combustion consumption by to the public,1665.89052,TJ,CO2,74100.0,kg/TJ,123442487.53199999,kg +4350c5df-2e8f-32a9-88c1-84eb28d494d7,SESCO,II.1.1,Capital Federal,AR-C,annual,2014,gas oil combustion consumption by to the public,1665.89052,TJ,CH4,3.9,kg/TJ,6496.973027999999,kg +4350c5df-2e8f-32a9-88c1-84eb28d494d7,SESCO,II.1.1,Capital Federal,AR-C,annual,2014,gas oil combustion consumption by to the public,1665.89052,TJ,N2O,3.9,kg/TJ,6496.973027999999,kg +95009a1b-0de1-3584-8f96-4bbd5ed3e950,SESCO,II.1.1,Catamarca,AR-K,annual,2014,gas oil combustion consumption by to the public,195.91487999999998,TJ,CO2,74100.0,kg/TJ,14517292.608,kg +a06cffc0-ef82-3ab3-808b-4758ba420ef8,SESCO,II.1.1,Catamarca,AR-K,annual,2014,gas oil combustion consumption by to the public,195.91487999999998,TJ,CH4,3.9,kg/TJ,764.0680319999999,kg +a06cffc0-ef82-3ab3-808b-4758ba420ef8,SESCO,II.1.1,Catamarca,AR-K,annual,2014,gas oil combustion consumption by to the public,195.91487999999998,TJ,N2O,3.9,kg/TJ,764.0680319999999,kg +08eb99e9-46a1-3c54-965e-70e79c79a9b0,SESCO,II.1.1,Chaco,AR-H,annual,2014,gas oil combustion consumption by to the public,832.42152,TJ,CO2,74100.0,kg/TJ,61682434.632,kg +e16dea9a-08f2-3b61-8212-598492b9880e,SESCO,II.1.1,Chaco,AR-H,annual,2014,gas oil combustion consumption by to the public,832.42152,TJ,CH4,3.9,kg/TJ,3246.4439279999997,kg +e16dea9a-08f2-3b61-8212-598492b9880e,SESCO,II.1.1,Chaco,AR-H,annual,2014,gas oil combustion consumption by to the public,832.42152,TJ,N2O,3.9,kg/TJ,3246.4439279999997,kg +cfa9bdc2-f7a5-34b0-8ac4-450552da5f6d,SESCO,II.1.1,Chubut,AR-U,annual,2014,gas oil combustion consumption by to the public,1092.59388,TJ,CO2,74100.0,kg/TJ,80961206.50799999,kg +99d0ff39-91e7-314d-af3c-7462dc07c5ff,SESCO,II.1.1,Chubut,AR-U,annual,2014,gas oil combustion consumption by to the public,1092.59388,TJ,CH4,3.9,kg/TJ,4261.116131999999,kg +99d0ff39-91e7-314d-af3c-7462dc07c5ff,SESCO,II.1.1,Chubut,AR-U,annual,2014,gas oil combustion consumption by to the public,1092.59388,TJ,N2O,3.9,kg/TJ,4261.116131999999,kg +982c2ad2-007e-3290-8b4d-ce562f6876cc,SESCO,II.1.1,Corrientes,AR-W,annual,2014,gas oil combustion consumption by to the public,741.3629999999999,TJ,CO2,74100.0,kg/TJ,54934998.3,kg +942a1abd-00fb-3679-9f8a-90ab38d03e3a,SESCO,II.1.1,Corrientes,AR-W,annual,2014,gas oil combustion consumption by to the public,741.3629999999999,TJ,CH4,3.9,kg/TJ,2891.3156999999997,kg +942a1abd-00fb-3679-9f8a-90ab38d03e3a,SESCO,II.1.1,Corrientes,AR-W,annual,2014,gas oil combustion consumption by to the public,741.3629999999999,TJ,N2O,3.9,kg/TJ,2891.3156999999997,kg +482c8398-0e73-3b67-9811-5e92919bf846,SESCO,II.1.1,Córdoba,AR-X,annual,2014,gas oil combustion consumption by to the public,2858.06724,TJ,CO2,74100.0,kg/TJ,211782782.484,kg +a4f6398a-8cbd-39ad-95a0-68a0168aaeaa,SESCO,II.1.1,Córdoba,AR-X,annual,2014,gas oil combustion consumption by to the public,2858.06724,TJ,CH4,3.9,kg/TJ,11146.462236,kg +a4f6398a-8cbd-39ad-95a0-68a0168aaeaa,SESCO,II.1.1,Córdoba,AR-X,annual,2014,gas oil combustion consumption by to the public,2858.06724,TJ,N2O,3.9,kg/TJ,11146.462236,kg +071ba22f-8d9a-36ed-811c-e97988d05645,SESCO,II.1.1,Entre Rios,AR-E,annual,2014,gas oil combustion consumption by to the public,1375.70244,TJ,CO2,74100.0,kg/TJ,101939550.804,kg +460f5bc3-a858-36fa-a640-7f5efc50ae97,SESCO,II.1.1,Entre Rios,AR-E,annual,2014,gas oil combustion consumption by to the public,1375.70244,TJ,CH4,3.9,kg/TJ,5365.239516,kg +460f5bc3-a858-36fa-a640-7f5efc50ae97,SESCO,II.1.1,Entre Rios,AR-E,annual,2014,gas oil combustion consumption by to the public,1375.70244,TJ,N2O,3.9,kg/TJ,5365.239516,kg +5a98c4aa-e813-324a-ac91-f443fcdf535b,SESCO,II.1.1,Formosa,AR-P,annual,2014,gas oil combustion consumption by to the public,261.5088,TJ,CO2,74100.0,kg/TJ,19377802.080000002,kg +1e18ab42-560a-3eae-8044-d2915a820bcf,SESCO,II.1.1,Formosa,AR-P,annual,2014,gas oil combustion consumption by to the public,261.5088,TJ,CH4,3.9,kg/TJ,1019.88432,kg +1e18ab42-560a-3eae-8044-d2915a820bcf,SESCO,II.1.1,Formosa,AR-P,annual,2014,gas oil combustion consumption by to the public,261.5088,TJ,N2O,3.9,kg/TJ,1019.88432,kg +b3b7a07b-36e3-3f44-a54b-b0bbb7c6a616,SESCO,II.1.1,Jujuy,AR-Y,annual,2014,gas oil combustion consumption by to the public,355.9626,TJ,CO2,74100.0,kg/TJ,26376828.66,kg +b49b5b0f-20e1-3cce-b318-8882b898f313,SESCO,II.1.1,Jujuy,AR-Y,annual,2014,gas oil combustion consumption by to the public,355.9626,TJ,CH4,3.9,kg/TJ,1388.25414,kg +b49b5b0f-20e1-3cce-b318-8882b898f313,SESCO,II.1.1,Jujuy,AR-Y,annual,2014,gas oil combustion consumption by to the public,355.9626,TJ,N2O,3.9,kg/TJ,1388.25414,kg +d8136bcc-1283-3452-92bc-617a4e5815a5,SESCO,II.1.1,La Pampa,AR-L,annual,2014,gas oil combustion consumption by to the public,816.63708,TJ,CO2,74100.0,kg/TJ,60512807.628,kg +fdf7597d-96a0-30db-be15-a6de308a7e9e,SESCO,II.1.1,La Pampa,AR-L,annual,2014,gas oil combustion consumption by to the public,816.63708,TJ,CH4,3.9,kg/TJ,3184.884612,kg +fdf7597d-96a0-30db-be15-a6de308a7e9e,SESCO,II.1.1,La Pampa,AR-L,annual,2014,gas oil combustion consumption by to the public,816.63708,TJ,N2O,3.9,kg/TJ,3184.884612,kg +7efd045c-affa-33f3-947d-6a18a9206202,SESCO,II.1.1,La Rioja,AR-F,annual,2014,gas oil combustion consumption by to the public,238.35587999999998,TJ,CO2,74100.0,kg/TJ,17662170.708,kg +621a7392-a5d1-3a4e-8f2b-707ab39e1dfa,SESCO,II.1.1,La Rioja,AR-F,annual,2014,gas oil combustion consumption by to the public,238.35587999999998,TJ,CH4,3.9,kg/TJ,929.5879319999999,kg +621a7392-a5d1-3a4e-8f2b-707ab39e1dfa,SESCO,II.1.1,La Rioja,AR-F,annual,2014,gas oil combustion consumption by to the public,238.35587999999998,TJ,N2O,3.9,kg/TJ,929.5879319999999,kg +f22986e3-966d-30a4-a975-d182f9eaa755,SESCO,II.1.1,Mendoza,AR-M,annual,2014,gas oil combustion consumption by to the public,1902.76548,TJ,CO2,74100.0,kg/TJ,140994922.068,kg +fea919fb-b9d4-30bf-9897-18b1eea3f841,SESCO,II.1.1,Mendoza,AR-M,annual,2014,gas oil combustion consumption by to the public,1902.76548,TJ,CH4,3.9,kg/TJ,7420.785372,kg +fea919fb-b9d4-30bf-9897-18b1eea3f841,SESCO,II.1.1,Mendoza,AR-M,annual,2014,gas oil combustion consumption by to the public,1902.76548,TJ,N2O,3.9,kg/TJ,7420.785372,kg +0599dc65-ade0-374c-b8de-a25538f75280,SESCO,II.1.1,Misiones,AR-N,annual,2014,gas oil combustion consumption by to the public,876.30732,TJ,CO2,74100.0,kg/TJ,64934372.412,kg +64b4ad93-f0ee-3d94-81eb-c858335e95d7,SESCO,II.1.1,Misiones,AR-N,annual,2014,gas oil combustion consumption by to the public,876.30732,TJ,CH4,3.9,kg/TJ,3417.598548,kg +64b4ad93-f0ee-3d94-81eb-c858335e95d7,SESCO,II.1.1,Misiones,AR-N,annual,2014,gas oil combustion consumption by to the public,876.30732,TJ,N2O,3.9,kg/TJ,3417.598548,kg +61a4034c-49e6-37be-9dcc-dc6ef39d9375,SESCO,II.1.1,Neuquén,AR-Q,annual,2014,gas oil combustion consumption by to the public,1312.2395999999999,TJ,CO2,74100.0,kg/TJ,97236954.35999998,kg +0e46d286-1aca-3e89-b4a6-4042c1f8938f,SESCO,II.1.1,Neuquén,AR-Q,annual,2014,gas oil combustion consumption by to the public,1312.2395999999999,TJ,CH4,3.9,kg/TJ,5117.734439999999,kg +0e46d286-1aca-3e89-b4a6-4042c1f8938f,SESCO,II.1.1,Neuquén,AR-Q,annual,2014,gas oil combustion consumption by to the public,1312.2395999999999,TJ,N2O,3.9,kg/TJ,5117.734439999999,kg +eb4c5a23-41bf-337a-8eb5-d3485aef127c,SESCO,II.1.1,Rio Negro,AR-R,annual,2014,gas oil combustion consumption by to the public,1052.64516,TJ,CO2,74100.0,kg/TJ,78001006.356,kg +2cd33023-3109-3ffa-915c-53fe23a5fbe1,SESCO,II.1.1,Rio Negro,AR-R,annual,2014,gas oil combustion consumption by to the public,1052.64516,TJ,CH4,3.9,kg/TJ,4105.316124,kg +2cd33023-3109-3ffa-915c-53fe23a5fbe1,SESCO,II.1.1,Rio Negro,AR-R,annual,2014,gas oil combustion consumption by to the public,1052.64516,TJ,N2O,3.9,kg/TJ,4105.316124,kg +7d821276-776b-32df-8142-b5e7c2369d5d,SESCO,II.1.1,Salta,AR-A,annual,2014,gas oil combustion consumption by to the public,846.14712,TJ,CO2,74100.0,kg/TJ,62699501.592,kg +3e88708b-2302-3958-b08c-37c8342526e1,SESCO,II.1.1,Salta,AR-A,annual,2014,gas oil combustion consumption by to the public,846.14712,TJ,CH4,3.9,kg/TJ,3299.973768,kg +3e88708b-2302-3958-b08c-37c8342526e1,SESCO,II.1.1,Salta,AR-A,annual,2014,gas oil combustion consumption by to the public,846.14712,TJ,N2O,3.9,kg/TJ,3299.973768,kg +895a3027-1ed3-3f59-b3eb-fbf6dbb30953,SESCO,II.1.1,San Juan,AR-J,annual,2014,gas oil combustion consumption by to the public,413.86296,TJ,CO2,74100.0,kg/TJ,30667245.336,kg +8282dd2d-9094-3e01-b261-98bcba02734d,SESCO,II.1.1,San Juan,AR-J,annual,2014,gas oil combustion consumption by to the public,413.86296,TJ,CH4,3.9,kg/TJ,1614.0655439999998,kg +8282dd2d-9094-3e01-b261-98bcba02734d,SESCO,II.1.1,San Juan,AR-J,annual,2014,gas oil combustion consumption by to the public,413.86296,TJ,N2O,3.9,kg/TJ,1614.0655439999998,kg +ca723f7f-fd98-38d9-939b-740ff3bdb4c8,SESCO,II.1.1,San Luis,AR-D,annual,2014,gas oil combustion consumption by to the public,474.6168,TJ,CO2,74100.0,kg/TJ,35169104.88,kg +c8378150-cbee-3614-9459-e97537acf084,SESCO,II.1.1,San Luis,AR-D,annual,2014,gas oil combustion consumption by to the public,474.6168,TJ,CH4,3.9,kg/TJ,1851.00552,kg +c8378150-cbee-3614-9459-e97537acf084,SESCO,II.1.1,San Luis,AR-D,annual,2014,gas oil combustion consumption by to the public,474.6168,TJ,N2O,3.9,kg/TJ,1851.00552,kg +720f9bc5-aace-35a4-9ab9-9dabe001dff1,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2014,gas oil combustion consumption by to the public,648.354,TJ,CO2,74100.0,kg/TJ,48043031.400000006,kg +8e69d41d-8540-3d63-855c-e602326cb752,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2014,gas oil combustion consumption by to the public,648.354,TJ,CH4,3.9,kg/TJ,2528.5806000000002,kg +8e69d41d-8540-3d63-855c-e602326cb752,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2014,gas oil combustion consumption by to the public,648.354,TJ,N2O,3.9,kg/TJ,2528.5806000000002,kg +fd68bbf4-704c-3942-9f5a-22eac9d10fde,SESCO,II.1.1,Santa Fe,AR-S,annual,2014,gas oil combustion consumption by to the public,2936.41152,TJ,CO2,74100.0,kg/TJ,217588093.632,kg +fcaa3737-c90b-3dbb-b580-b5d83deda861,SESCO,II.1.1,Santa Fe,AR-S,annual,2014,gas oil combustion consumption by to the public,2936.41152,TJ,CH4,3.9,kg/TJ,11452.004928,kg +fcaa3737-c90b-3dbb-b580-b5d83deda861,SESCO,II.1.1,Santa Fe,AR-S,annual,2014,gas oil combustion consumption by to the public,2936.41152,TJ,N2O,3.9,kg/TJ,11452.004928,kg +bc37f372-66fd-3d95-986c-dda324de89cf,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2014,gas oil combustion consumption by to the public,541.76388,TJ,CO2,74100.0,kg/TJ,40144703.508,kg +f7e9ba02-7867-3fe1-81ff-7382bb24acc8,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2014,gas oil combustion consumption by to the public,541.76388,TJ,CH4,3.9,kg/TJ,2112.879132,kg +f7e9ba02-7867-3fe1-81ff-7382bb24acc8,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2014,gas oil combustion consumption by to the public,541.76388,TJ,N2O,3.9,kg/TJ,2112.879132,kg +97eade84-cac0-3f16-8e33-8d5fcb33f7a2,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2014,gas oil combustion consumption by to the public,116.3064,TJ,CO2,74100.0,kg/TJ,8618304.24,kg +18a444be-78c1-3712-9524-70187108ce3d,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2014,gas oil combustion consumption by to the public,116.3064,TJ,CH4,3.9,kg/TJ,453.59495999999996,kg +18a444be-78c1-3712-9524-70187108ce3d,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2014,gas oil combustion consumption by to the public,116.3064,TJ,N2O,3.9,kg/TJ,453.59495999999996,kg +29ca66fa-49a6-3af2-96ae-ab0eb46e724c,SESCO,II.1.1,Tucuman,AR-T,annual,2014,gas oil combustion consumption by to the public,573.9467999999999,TJ,CO2,74100.0,kg/TJ,42529457.879999995,kg +53b4fc96-5324-3502-8fc3-3b4022fb106a,SESCO,II.1.1,Tucuman,AR-T,annual,2014,gas oil combustion consumption by to the public,573.9467999999999,TJ,CH4,3.9,kg/TJ,2238.39252,kg +53b4fc96-5324-3502-8fc3-3b4022fb106a,SESCO,II.1.1,Tucuman,AR-T,annual,2014,gas oil combustion consumption by to the public,573.9467999999999,TJ,N2O,3.9,kg/TJ,2238.39252,kg +c9def9c3-db44-3307-bb78-59c65bfa2ded,SESCO,II.1.1,Buenos Aires,AR-B,annual,2014,jet kerosene combustion consumption by to the public,198.43697699999996,TJ,CO2,71500.0,kg/TJ,14188243.855499998,kg +84acbdb8-75e1-3221-8530-25bd774f13ac,SESCO,II.1.1,Buenos Aires,AR-B,annual,2014,jet kerosene combustion consumption by to the public,198.43697699999996,TJ,CH4,0.5,kg/TJ,99.21848849999998,kg +4192f46c-9b25-3892-973c-736a6c825582,SESCO,II.1.1,Buenos Aires,AR-B,annual,2014,jet kerosene combustion consumption by to the public,198.43697699999996,TJ,N2O,2.0,kg/TJ,396.8739539999999,kg +1000752e-2d63-38b8-ace5-787b26bc167c,SESCO,II.1.1,Capital Federal,AR-C,annual,2014,jet kerosene combustion consumption by to the public,8.901198999999998,TJ,CO2,71500.0,kg/TJ,636435.7284999999,kg +13248a51-3f17-308c-98be-f127581e5dc0,SESCO,II.1.1,Capital Federal,AR-C,annual,2014,jet kerosene combustion consumption by to the public,8.901198999999998,TJ,CH4,0.5,kg/TJ,4.450599499999999,kg +13fa4e76-eba4-381b-bab5-1071b8dfb32b,SESCO,II.1.1,Capital Federal,AR-C,annual,2014,jet kerosene combustion consumption by to the public,8.901198999999998,TJ,N2O,2.0,kg/TJ,17.802397999999997,kg +7dcb49ff-b971-34fa-8326-83d2ffcb4571,SESCO,II.1.1,Catamarca,AR-K,annual,2014,jet kerosene combustion consumption by to the public,4.592137999999999,TJ,CO2,71500.0,kg/TJ,328337.86699999997,kg +2dbf1e31-8dbc-37e9-a9aa-e7a674ac5fd5,SESCO,II.1.1,Catamarca,AR-K,annual,2014,jet kerosene combustion consumption by to the public,4.592137999999999,TJ,CH4,0.5,kg/TJ,2.2960689999999997,kg +760a3082-2d12-33db-b57b-8864a01ec9f4,SESCO,II.1.1,Catamarca,AR-K,annual,2014,jet kerosene combustion consumption by to the public,4.592137999999999,TJ,N2O,2.0,kg/TJ,9.184275999999999,kg +40ef9af4-7001-3a7e-9de4-557fc743f9d4,SESCO,II.1.1,Chaco,AR-H,annual,2014,jet kerosene combustion consumption by to the public,2.5476929999999998,TJ,CO2,71500.0,kg/TJ,182160.0495,kg +a1de8be3-bc52-3353-99d6-238f179b9328,SESCO,II.1.1,Chaco,AR-H,annual,2014,jet kerosene combustion consumption by to the public,2.5476929999999998,TJ,CH4,0.5,kg/TJ,1.2738464999999999,kg +e3a7d5fd-c934-322e-a94f-c12ba7cad844,SESCO,II.1.1,Chaco,AR-H,annual,2014,jet kerosene combustion consumption by to the public,2.5476929999999998,TJ,N2O,2.0,kg/TJ,5.0953859999999995,kg +f4505fab-1801-3c96-b3e7-8a0f3265c94c,SESCO,II.1.1,Chubut,AR-U,annual,2014,jet kerosene combustion consumption by to the public,15.003080999999998,TJ,CO2,71500.0,kg/TJ,1072720.2914999998,kg +554b0644-6f3f-3522-b0df-690121e459a8,SESCO,II.1.1,Chubut,AR-U,annual,2014,jet kerosene combustion consumption by to the public,15.003080999999998,TJ,CH4,0.5,kg/TJ,7.501540499999999,kg +ac32dc48-3a5a-30bc-9591-ce887474244b,SESCO,II.1.1,Chubut,AR-U,annual,2014,jet kerosene combustion consumption by to the public,15.003080999999998,TJ,N2O,2.0,kg/TJ,30.006161999999996,kg +e3039d60-1c45-3b1e-b5b2-cc8030ebbce9,SESCO,II.1.1,Corrientes,AR-W,annual,2014,jet kerosene combustion consumption by to the public,3.4598299999999993,TJ,CO2,71500.0,kg/TJ,247377.84499999994,kg +8f7febb4-7ec3-39c0-824e-f4844014b57b,SESCO,II.1.1,Corrientes,AR-W,annual,2014,jet kerosene combustion consumption by to the public,3.4598299999999993,TJ,CH4,0.5,kg/TJ,1.7299149999999996,kg +d2500f17-1968-3062-9c92-c96a93ee5b82,SESCO,II.1.1,Corrientes,AR-W,annual,2014,jet kerosene combustion consumption by to the public,3.4598299999999993,TJ,N2O,2.0,kg/TJ,6.919659999999999,kg +d916d772-fdb3-3f86-8d40-85d560ed8f72,SESCO,II.1.1,Córdoba,AR-X,annual,2014,jet kerosene combustion consumption by to the public,92.47181999999998,TJ,CO2,71500.0,kg/TJ,6611735.129999999,kg +e9ca6f84-278f-3966-91e7-58159cf53b92,SESCO,II.1.1,Córdoba,AR-X,annual,2014,jet kerosene combustion consumption by to the public,92.47181999999998,TJ,CH4,0.5,kg/TJ,46.23590999999999,kg +e83d560f-6990-306e-b8cd-bf2af60c3fe9,SESCO,II.1.1,Córdoba,AR-X,annual,2014,jet kerosene combustion consumption by to the public,92.47181999999998,TJ,N2O,2.0,kg/TJ,184.94363999999996,kg +c313c133-4176-366e-8435-aed2cedf83ff,SESCO,II.1.1,Entre Rios,AR-E,annual,2014,jet kerosene combustion consumption by to the public,9.467353,TJ,CO2,71500.0,kg/TJ,676915.7394999999,kg +abaa3c6b-e554-3e4d-b3ad-d473a1d7183c,SESCO,II.1.1,Entre Rios,AR-E,annual,2014,jet kerosene combustion consumption by to the public,9.467353,TJ,CH4,0.5,kg/TJ,4.7336765,kg +d594feb3-2619-3d2c-8756-661638dec290,SESCO,II.1.1,Entre Rios,AR-E,annual,2014,jet kerosene combustion consumption by to the public,9.467353,TJ,N2O,2.0,kg/TJ,18.934706,kg +412fdbc7-2ca6-387e-9129-5f99bc9d6aae,SESCO,II.1.1,Jujuy,AR-Y,annual,2014,jet kerosene combustion consumption by to the public,3.9001719999999995,TJ,CO2,71500.0,kg/TJ,278862.29799999995,kg +6ff41e2a-3b5e-3f70-ae02-ad2aa21f2074,SESCO,II.1.1,Jujuy,AR-Y,annual,2014,jet kerosene combustion consumption by to the public,3.9001719999999995,TJ,CH4,0.5,kg/TJ,1.9500859999999998,kg +830ea12e-fab0-31e6-80ea-b379bcca99f3,SESCO,II.1.1,Jujuy,AR-Y,annual,2014,jet kerosene combustion consumption by to the public,3.9001719999999995,TJ,N2O,2.0,kg/TJ,7.800343999999999,kg +1eb0ee5d-a706-38c0-a953-168eb76ffe0d,SESCO,II.1.1,La Pampa,AR-L,annual,2014,jet kerosene combustion consumption by to the public,4.246154999999999,TJ,CO2,71500.0,kg/TJ,303600.0824999999,kg +50f4a9b3-6bb0-3324-93d5-2ca460091311,SESCO,II.1.1,La Pampa,AR-L,annual,2014,jet kerosene combustion consumption by to the public,4.246154999999999,TJ,CH4,0.5,kg/TJ,2.1230774999999995,kg +e976d368-3920-3106-a6a7-96bbeb680144,SESCO,II.1.1,La Pampa,AR-L,annual,2014,jet kerosene combustion consumption by to the public,4.246154999999999,TJ,N2O,2.0,kg/TJ,8.492309999999998,kg +b05592a4-1c1d-30f2-984a-1a878130ea1a,SESCO,II.1.1,La Rioja,AR-F,annual,2014,jet kerosene combustion consumption by to the public,2.20171,TJ,CO2,71500.0,kg/TJ,157422.26499999998,kg +f40fd700-5282-3730-bd89-02ccb0cb9b9a,SESCO,II.1.1,La Rioja,AR-F,annual,2014,jet kerosene combustion consumption by to the public,2.20171,TJ,CH4,0.5,kg/TJ,1.100855,kg +3e655195-5d5f-37fc-9fcf-753a66cda2f6,SESCO,II.1.1,La Rioja,AR-F,annual,2014,jet kerosene combustion consumption by to the public,2.20171,TJ,N2O,2.0,kg/TJ,4.40342,kg +c383ae4f-3c29-32ef-ad8f-72d55ccfa247,SESCO,II.1.1,Mendoza,AR-M,annual,2014,jet kerosene combustion consumption by to the public,40.19693399999999,TJ,CO2,71500.0,kg/TJ,2874080.7809999995,kg +c4ce8650-36b2-3f15-a097-2db7030c0965,SESCO,II.1.1,Mendoza,AR-M,annual,2014,jet kerosene combustion consumption by to the public,40.19693399999999,TJ,CH4,0.5,kg/TJ,20.098466999999996,kg +5d0e8fd8-b422-3fce-bc77-a650f4d44f37,SESCO,II.1.1,Mendoza,AR-M,annual,2014,jet kerosene combustion consumption by to the public,40.19693399999999,TJ,N2O,2.0,kg/TJ,80.39386799999998,kg +47a72043-6263-3435-8cdc-b49a4ea98e2c,SESCO,II.1.1,Neuquén,AR-Q,annual,2014,jet kerosene combustion consumption by to the public,7.643078999999998,TJ,CO2,71500.0,kg/TJ,546480.1484999999,kg +9dede23a-96d1-36eb-a4d8-9880d5cf3405,SESCO,II.1.1,Neuquén,AR-Q,annual,2014,jet kerosene combustion consumption by to the public,7.643078999999998,TJ,CH4,0.5,kg/TJ,3.821539499999999,kg +57c87011-6b78-3c4d-9201-1c1ec0959b2b,SESCO,II.1.1,Neuquén,AR-Q,annual,2014,jet kerosene combustion consumption by to the public,7.643078999999998,TJ,N2O,2.0,kg/TJ,15.286157999999997,kg +c63adb27-28ab-346c-99a0-36f71382ab4c,SESCO,II.1.1,Rio Negro,AR-R,annual,2014,jet kerosene combustion consumption by to the public,2.6420519999999996,TJ,CO2,71500.0,kg/TJ,188906.71799999996,kg +8e0e2b44-2c40-317c-8259-fb67da844c05,SESCO,II.1.1,Rio Negro,AR-R,annual,2014,jet kerosene combustion consumption by to the public,2.6420519999999996,TJ,CH4,0.5,kg/TJ,1.3210259999999998,kg +d2198fd6-46d0-383c-8f6e-3e9b585b377f,SESCO,II.1.1,Rio Negro,AR-R,annual,2014,jet kerosene combustion consumption by to the public,2.6420519999999996,TJ,N2O,2.0,kg/TJ,5.284103999999999,kg +d8dadb21-4455-377c-b904-83e023b3dcaa,SESCO,II.1.1,Salta,AR-A,annual,2014,jet kerosene combustion consumption by to the public,1.6670089999999997,TJ,CO2,71500.0,kg/TJ,119191.14349999998,kg +ef23f7fe-8c09-3018-bc39-0ca8f4692888,SESCO,II.1.1,Salta,AR-A,annual,2014,jet kerosene combustion consumption by to the public,1.6670089999999997,TJ,CH4,0.5,kg/TJ,0.8335044999999999,kg +27d53c25-50ec-3145-bfeb-d69ce2f7c539,SESCO,II.1.1,Salta,AR-A,annual,2014,jet kerosene combustion consumption by to the public,1.6670089999999997,TJ,N2O,2.0,kg/TJ,3.3340179999999995,kg +1c433326-b64a-3df8-b542-b4630d79f8d9,SESCO,II.1.1,San Juan,AR-J,annual,2014,jet kerosene combustion consumption by to the public,4.088889999999999,TJ,CO2,71500.0,kg/TJ,292355.63499999995,kg +2b54ef4b-e36e-3404-a7cf-e36db229b5f4,SESCO,II.1.1,San Juan,AR-J,annual,2014,jet kerosene combustion consumption by to the public,4.088889999999999,TJ,CH4,0.5,kg/TJ,2.0444449999999996,kg +3e77b802-6132-38b6-88cf-d3d4bbee1bcc,SESCO,II.1.1,San Juan,AR-J,annual,2014,jet kerosene combustion consumption by to the public,4.088889999999999,TJ,N2O,2.0,kg/TJ,8.177779999999998,kg +fd1f5123-267b-3658-85b5-185989c7b1b3,SESCO,II.1.1,San Luis,AR-D,annual,2014,jet kerosene combustion consumption by to the public,6.888206999999999,TJ,CO2,71500.0,kg/TJ,492506.8004999999,kg +3f4f391d-ae8d-36d2-ba0d-28fac5c9be44,SESCO,II.1.1,San Luis,AR-D,annual,2014,jet kerosene combustion consumption by to the public,6.888206999999999,TJ,CH4,0.5,kg/TJ,3.4441034999999993,kg +3ca7fcc6-bc10-3313-8a81-f74373205a95,SESCO,II.1.1,San Luis,AR-D,annual,2014,jet kerosene combustion consumption by to the public,6.888206999999999,TJ,N2O,2.0,kg/TJ,13.776413999999997,kg +4b95e7bd-43a7-31f0-9921-9bcba6739dbb,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2014,jet kerosene combustion consumption by to the public,13.493336999999999,TJ,CO2,71500.0,kg/TJ,964773.5954999999,kg +21148c47-034d-3ac3-8994-63dcb4543e34,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2014,jet kerosene combustion consumption by to the public,13.493336999999999,TJ,CH4,0.5,kg/TJ,6.746668499999999,kg +b3e503d0-ed28-373d-bb5c-1fff855e2fd0,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2014,jet kerosene combustion consumption by to the public,13.493336999999999,TJ,N2O,2.0,kg/TJ,26.986673999999997,kg +b596f9d9-5f60-374f-b9ae-724ccec3ceb8,SESCO,II.1.1,Santa Fe,AR-S,annual,2014,jet kerosene combustion consumption by to the public,37.680693999999995,TJ,CO2,71500.0,kg/TJ,2694169.621,kg +4c2ef46e-a954-3a6c-9816-907f373219e7,SESCO,II.1.1,Santa Fe,AR-S,annual,2014,jet kerosene combustion consumption by to the public,37.680693999999995,TJ,CH4,0.5,kg/TJ,18.840346999999998,kg +1317a0a0-6b56-3e70-84db-c0431c1d8f35,SESCO,II.1.1,Santa Fe,AR-S,annual,2014,jet kerosene combustion consumption by to the public,37.680693999999995,TJ,N2O,2.0,kg/TJ,75.36138799999999,kg +78839e93-e473-36fa-aae8-0a9ba179476e,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2014,jet kerosene combustion consumption by to the public,5.598633999999999,TJ,CO2,71500.0,kg/TJ,400302.3309999999,kg +84ab4ab6-e826-3421-bff0-8435d1159eab,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2014,jet kerosene combustion consumption by to the public,5.598633999999999,TJ,CH4,0.5,kg/TJ,2.7993169999999994,kg +db0241d6-e604-3685-b68a-81ff61ec192d,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2014,jet kerosene combustion consumption by to the public,5.598633999999999,TJ,N2O,2.0,kg/TJ,11.197267999999998,kg +144b54dc-5326-31f9-a003-fb72cba819c8,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2014,jet kerosene combustion consumption by to the public,1.5097439999999998,TJ,CO2,71500.0,kg/TJ,107946.69599999998,kg +e4335985-9857-39ef-8fee-c4cee1c54cc7,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2014,jet kerosene combustion consumption by to the public,1.5097439999999998,TJ,CH4,0.5,kg/TJ,0.7548719999999999,kg +41ddbb2b-adcb-3320-9be7-2067754af462,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2014,jet kerosene combustion consumption by to the public,1.5097439999999998,TJ,N2O,2.0,kg/TJ,3.0194879999999995,kg +089dec81-e1c0-3fa7-8f4d-09530c279241,SESCO,II.1.1,Tucuman,AR-T,annual,2014,jet kerosene combustion consumption by to the public,10.851284999999999,TJ,CO2,71500.0,kg/TJ,775866.8775,kg +4303589e-79a7-3c47-a283-d30cd90a5d25,SESCO,II.1.1,Tucuman,AR-T,annual,2014,jet kerosene combustion consumption by to the public,10.851284999999999,TJ,CH4,0.5,kg/TJ,5.4256424999999995,kg +ccafffdc-3e87-3b54-aed2-e2a5bf5d3278,SESCO,II.1.1,Tucuman,AR-T,annual,2014,jet kerosene combustion consumption by to the public,10.851284999999999,TJ,N2O,2.0,kg/TJ,21.702569999999998,kg +8d567245-4932-3a58-b1c0-09381b0fa566,SESCO,II.1.1,Buenos Aires,AR-B,annual,2014,gasoline combustion consumption by freight transport,49.2616,TJ,CO2,69300.0,kg/TJ,3413828.88,kg +bb2fee2f-328a-37f9-a374-e6336d156e68,SESCO,II.1.1,Buenos Aires,AR-B,annual,2014,gasoline combustion consumption by freight transport,49.2616,TJ,CH4,33.0,kg/TJ,1625.6328,kg +993acd24-ecc1-382d-99f7-2bd420bdd01c,SESCO,II.1.1,Buenos Aires,AR-B,annual,2014,gasoline combustion consumption by freight transport,49.2616,TJ,N2O,3.2,kg/TJ,157.63712,kg +55d446b2-c7a4-357b-bd2a-5f0294fcc8a4,SESCO,II.1.1,Capital Federal,AR-C,annual,2014,gasoline combustion consumption by freight transport,49.7046,TJ,CO2,69300.0,kg/TJ,3444528.78,kg +f6773e0a-68ec-3277-bee7-fe976d216fd3,SESCO,II.1.1,Capital Federal,AR-C,annual,2014,gasoline combustion consumption by freight transport,49.7046,TJ,CH4,33.0,kg/TJ,1640.2518,kg +a83dcb3a-3296-34e9-b072-7b3e862976de,SESCO,II.1.1,Capital Federal,AR-C,annual,2014,gasoline combustion consumption by freight transport,49.7046,TJ,N2O,3.2,kg/TJ,159.05472,kg +e8692205-f128-3491-9ef3-6307a7507fce,SESCO,II.1.1,Buenos Aires,AR-B,annual,2014,gas oil combustion consumption by freight transport,6974.0496,TJ,CO2,74100.0,kg/TJ,516777075.36,kg +e2373197-5e52-3eec-a4a0-454c7c8957dd,SESCO,II.1.1,Buenos Aires,AR-B,annual,2014,gas oil combustion consumption by freight transport,6974.0496,TJ,CH4,3.9,kg/TJ,27198.79344,kg +e2373197-5e52-3eec-a4a0-454c7c8957dd,SESCO,II.1.1,Buenos Aires,AR-B,annual,2014,gas oil combustion consumption by freight transport,6974.0496,TJ,N2O,3.9,kg/TJ,27198.79344,kg +72839089-0bf4-303d-8cdc-f868ef2fe343,SESCO,II.1.1,Capital Federal,AR-C,annual,2014,gas oil combustion consumption by freight transport,3617.99592,TJ,CO2,74100.0,kg/TJ,268093497.672,kg +d07e45d3-e7f2-3b41-81b9-10d14ac31b0b,SESCO,II.1.1,Capital Federal,AR-C,annual,2014,gas oil combustion consumption by freight transport,3617.99592,TJ,CH4,3.9,kg/TJ,14110.184087999998,kg +d07e45d3-e7f2-3b41-81b9-10d14ac31b0b,SESCO,II.1.1,Capital Federal,AR-C,annual,2014,gas oil combustion consumption by freight transport,3617.99592,TJ,N2O,3.9,kg/TJ,14110.184087999998,kg +01c4c139-4433-349e-a8b5-e14ed7019956,SESCO,II.1.1,Catamarca,AR-K,annual,2014,gas oil combustion consumption by freight transport,21.38304,TJ,CO2,74100.0,kg/TJ,1584483.2640000002,kg +f0d73dc8-7039-3d49-9da2-0d8d36caf629,SESCO,II.1.1,Catamarca,AR-K,annual,2014,gas oil combustion consumption by freight transport,21.38304,TJ,CH4,3.9,kg/TJ,83.393856,kg +f0d73dc8-7039-3d49-9da2-0d8d36caf629,SESCO,II.1.1,Catamarca,AR-K,annual,2014,gas oil combustion consumption by freight transport,21.38304,TJ,N2O,3.9,kg/TJ,83.393856,kg +433eeb6e-3fb8-3b71-9217-e3af8e5f0b65,SESCO,II.1.1,Chaco,AR-H,annual,2014,gas oil combustion consumption by freight transport,189.30492,TJ,CO2,74100.0,kg/TJ,14027494.572,kg +8a09a45a-e3e5-3e7c-a29b-68c6703c2e50,SESCO,II.1.1,Chaco,AR-H,annual,2014,gas oil combustion consumption by freight transport,189.30492,TJ,CH4,3.9,kg/TJ,738.289188,kg +8a09a45a-e3e5-3e7c-a29b-68c6703c2e50,SESCO,II.1.1,Chaco,AR-H,annual,2014,gas oil combustion consumption by freight transport,189.30492,TJ,N2O,3.9,kg/TJ,738.289188,kg +7458ee4f-4f4b-3969-957c-c7b4ce562887,SESCO,II.1.1,Chubut,AR-U,annual,2014,gas oil combustion consumption by freight transport,134.04131999999998,TJ,CO2,74100.0,kg/TJ,9932461.811999999,kg +7178075c-8c60-3d3d-94e3-e02c820156ca,SESCO,II.1.1,Chubut,AR-U,annual,2014,gas oil combustion consumption by freight transport,134.04131999999998,TJ,CH4,3.9,kg/TJ,522.7611479999999,kg +7178075c-8c60-3d3d-94e3-e02c820156ca,SESCO,II.1.1,Chubut,AR-U,annual,2014,gas oil combustion consumption by freight transport,134.04131999999998,TJ,N2O,3.9,kg/TJ,522.7611479999999,kg +36bdfd8d-307a-3780-8b2f-0fabdc788d45,SESCO,II.1.1,Corrientes,AR-W,annual,2014,gas oil combustion consumption by freight transport,296.32848,TJ,CO2,74100.0,kg/TJ,21957940.368,kg +15b1e152-e810-3516-8c77-2678acdb8898,SESCO,II.1.1,Corrientes,AR-W,annual,2014,gas oil combustion consumption by freight transport,296.32848,TJ,CH4,3.9,kg/TJ,1155.681072,kg +15b1e152-e810-3516-8c77-2678acdb8898,SESCO,II.1.1,Corrientes,AR-W,annual,2014,gas oil combustion consumption by freight transport,296.32848,TJ,N2O,3.9,kg/TJ,1155.681072,kg +60e73505-8ef8-35f3-9e56-a7c1f5412ac3,SESCO,II.1.1,Córdoba,AR-X,annual,2014,gas oil combustion consumption by freight transport,1829.00844,TJ,CO2,74100.0,kg/TJ,135529525.404,kg +feed1716-58c8-3958-9ff0-30ef943d03d9,SESCO,II.1.1,Córdoba,AR-X,annual,2014,gas oil combustion consumption by freight transport,1829.00844,TJ,CH4,3.9,kg/TJ,7133.1329160000005,kg +feed1716-58c8-3958-9ff0-30ef943d03d9,SESCO,II.1.1,Córdoba,AR-X,annual,2014,gas oil combustion consumption by freight transport,1829.00844,TJ,N2O,3.9,kg/TJ,7133.1329160000005,kg +2fba9354-c0d5-388d-9629-3bf3649bea9a,SESCO,II.1.1,Entre Rios,AR-E,annual,2014,gas oil combustion consumption by freight transport,264.79572,TJ,CO2,74100.0,kg/TJ,19621362.852,kg +44dacf9b-5f07-37c9-a0c7-f08452232f67,SESCO,II.1.1,Entre Rios,AR-E,annual,2014,gas oil combustion consumption by freight transport,264.79572,TJ,CH4,3.9,kg/TJ,1032.703308,kg +44dacf9b-5f07-37c9-a0c7-f08452232f67,SESCO,II.1.1,Entre Rios,AR-E,annual,2014,gas oil combustion consumption by freight transport,264.79572,TJ,N2O,3.9,kg/TJ,1032.703308,kg +7ecc4aa4-7e9a-360d-be4c-8ddef3b054f0,SESCO,II.1.1,Formosa,AR-P,annual,2014,gas oil combustion consumption by freight transport,0.65016,TJ,CO2,74100.0,kg/TJ,48176.856,kg +417a0213-c971-3029-9133-d7fe0ede65ba,SESCO,II.1.1,Formosa,AR-P,annual,2014,gas oil combustion consumption by freight transport,0.65016,TJ,CH4,3.9,kg/TJ,2.535624,kg +417a0213-c971-3029-9133-d7fe0ede65ba,SESCO,II.1.1,Formosa,AR-P,annual,2014,gas oil combustion consumption by freight transport,0.65016,TJ,N2O,3.9,kg/TJ,2.535624,kg +2110f949-73b6-3d1d-b4fd-48a539ad437e,SESCO,II.1.1,Jujuy,AR-Y,annual,2014,gas oil combustion consumption by freight transport,44.39148,TJ,CO2,74100.0,kg/TJ,3289408.668,kg +7a7e82e5-5696-3eb6-b3f9-e777245721d6,SESCO,II.1.1,Jujuy,AR-Y,annual,2014,gas oil combustion consumption by freight transport,44.39148,TJ,CH4,3.9,kg/TJ,173.126772,kg +7a7e82e5-5696-3eb6-b3f9-e777245721d6,SESCO,II.1.1,Jujuy,AR-Y,annual,2014,gas oil combustion consumption by freight transport,44.39148,TJ,N2O,3.9,kg/TJ,173.126772,kg +b6aa9c9a-564e-3095-8390-406f803ab56d,SESCO,II.1.1,La Pampa,AR-L,annual,2014,gas oil combustion consumption by freight transport,36.22836,TJ,CO2,74100.0,kg/TJ,2684521.4760000003,kg +1372788a-1696-3e1e-808f-5537f2e09ed9,SESCO,II.1.1,La Pampa,AR-L,annual,2014,gas oil combustion consumption by freight transport,36.22836,TJ,CH4,3.9,kg/TJ,141.290604,kg +1372788a-1696-3e1e-808f-5537f2e09ed9,SESCO,II.1.1,La Pampa,AR-L,annual,2014,gas oil combustion consumption by freight transport,36.22836,TJ,N2O,3.9,kg/TJ,141.290604,kg +0f32c794-bf5d-3ed9-97a7-822dbd65b2d8,SESCO,II.1.1,La Rioja,AR-F,annual,2014,gas oil combustion consumption by freight transport,0.7223999999999999,TJ,CO2,74100.0,kg/TJ,53529.84,kg +d083e39e-ba7a-33a3-a441-47765e7ef6d1,SESCO,II.1.1,La Rioja,AR-F,annual,2014,gas oil combustion consumption by freight transport,0.7223999999999999,TJ,CH4,3.9,kg/TJ,2.81736,kg +d083e39e-ba7a-33a3-a441-47765e7ef6d1,SESCO,II.1.1,La Rioja,AR-F,annual,2014,gas oil combustion consumption by freight transport,0.7223999999999999,TJ,N2O,3.9,kg/TJ,2.81736,kg +40e3608a-2a5b-389b-b152-cdd4fdee4d1c,SESCO,II.1.1,Mendoza,AR-M,annual,2014,gas oil combustion consumption by freight transport,1569.1972799999999,TJ,CO2,74100.0,kg/TJ,116277518.44799998,kg +cdb97d3e-7ded-359b-b195-aecc50591576,SESCO,II.1.1,Mendoza,AR-M,annual,2014,gas oil combustion consumption by freight transport,1569.1972799999999,TJ,CH4,3.9,kg/TJ,6119.869392,kg +cdb97d3e-7ded-359b-b195-aecc50591576,SESCO,II.1.1,Mendoza,AR-M,annual,2014,gas oil combustion consumption by freight transport,1569.1972799999999,TJ,N2O,3.9,kg/TJ,6119.869392,kg +0f2f14c5-d892-35f1-94ba-7a2bf6d3ab9f,SESCO,II.1.1,Misiones,AR-N,annual,2014,gas oil combustion consumption by freight transport,426.43272,TJ,CO2,74100.0,kg/TJ,31598664.552,kg +8826fec0-79c7-3255-a1c2-6af5b515b5d5,SESCO,II.1.1,Misiones,AR-N,annual,2014,gas oil combustion consumption by freight transport,426.43272,TJ,CH4,3.9,kg/TJ,1663.087608,kg +8826fec0-79c7-3255-a1c2-6af5b515b5d5,SESCO,II.1.1,Misiones,AR-N,annual,2014,gas oil combustion consumption by freight transport,426.43272,TJ,N2O,3.9,kg/TJ,1663.087608,kg +40cc6108-d4b8-31a3-9dca-c6c195846d17,SESCO,II.1.1,Neuquén,AR-Q,annual,2014,gas oil combustion consumption by freight transport,634.84512,TJ,CO2,74100.0,kg/TJ,47042023.392,kg +eae12174-a6c4-31fe-9a94-a0bd66837fff,SESCO,II.1.1,Neuquén,AR-Q,annual,2014,gas oil combustion consumption by freight transport,634.84512,TJ,CH4,3.9,kg/TJ,2475.895968,kg +eae12174-a6c4-31fe-9a94-a0bd66837fff,SESCO,II.1.1,Neuquén,AR-Q,annual,2014,gas oil combustion consumption by freight transport,634.84512,TJ,N2O,3.9,kg/TJ,2475.895968,kg +5c493f2a-c44a-3fce-abfe-9cb285d5780d,SESCO,II.1.1,Rio Negro,AR-R,annual,2014,gas oil combustion consumption by freight transport,132.12696,TJ,CO2,74100.0,kg/TJ,9790607.736,kg +b588f9a3-bc64-317f-a04c-c693b64338e1,SESCO,II.1.1,Rio Negro,AR-R,annual,2014,gas oil combustion consumption by freight transport,132.12696,TJ,CH4,3.9,kg/TJ,515.2951439999999,kg +b588f9a3-bc64-317f-a04c-c693b64338e1,SESCO,II.1.1,Rio Negro,AR-R,annual,2014,gas oil combustion consumption by freight transport,132.12696,TJ,N2O,3.9,kg/TJ,515.2951439999999,kg +7ee08b65-b9d9-3698-b760-a98e03423de0,SESCO,II.1.1,Salta,AR-A,annual,2014,gas oil combustion consumption by freight transport,188.40192,TJ,CO2,74100.0,kg/TJ,13960582.272,kg +ab735e59-ce00-3121-b07f-198768d2e342,SESCO,II.1.1,Salta,AR-A,annual,2014,gas oil combustion consumption by freight transport,188.40192,TJ,CH4,3.9,kg/TJ,734.767488,kg +ab735e59-ce00-3121-b07f-198768d2e342,SESCO,II.1.1,Salta,AR-A,annual,2014,gas oil combustion consumption by freight transport,188.40192,TJ,N2O,3.9,kg/TJ,734.767488,kg +1eae2ef7-e252-3289-a4f7-21767df77288,SESCO,II.1.1,San Juan,AR-J,annual,2014,gas oil combustion consumption by freight transport,110.12988,TJ,CO2,74100.0,kg/TJ,8160624.108,kg +95adba3b-5342-369f-ac3e-7699948ab2aa,SESCO,II.1.1,San Juan,AR-J,annual,2014,gas oil combustion consumption by freight transport,110.12988,TJ,CH4,3.9,kg/TJ,429.506532,kg +95adba3b-5342-369f-ac3e-7699948ab2aa,SESCO,II.1.1,San Juan,AR-J,annual,2014,gas oil combustion consumption by freight transport,110.12988,TJ,N2O,3.9,kg/TJ,429.506532,kg +ad78a3cd-d3ca-3131-addc-05671be7b05f,SESCO,II.1.1,San Luis,AR-D,annual,2014,gas oil combustion consumption by freight transport,159.54204,TJ,CO2,74100.0,kg/TJ,11822065.163999999,kg +138c5d6b-4970-399e-903f-cc3c3ecf94b6,SESCO,II.1.1,San Luis,AR-D,annual,2014,gas oil combustion consumption by freight transport,159.54204,TJ,CH4,3.9,kg/TJ,622.2139559999999,kg +138c5d6b-4970-399e-903f-cc3c3ecf94b6,SESCO,II.1.1,San Luis,AR-D,annual,2014,gas oil combustion consumption by freight transport,159.54204,TJ,N2O,3.9,kg/TJ,622.2139559999999,kg +4e32fc87-dee6-34c9-9cd2-c4c772693a82,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2014,gas oil combustion consumption by freight transport,57.71976,TJ,CO2,74100.0,kg/TJ,4277034.216,kg +5187079e-98cd-3703-ad08-db7d0590dcaa,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2014,gas oil combustion consumption by freight transport,57.71976,TJ,CH4,3.9,kg/TJ,225.107064,kg +5187079e-98cd-3703-ad08-db7d0590dcaa,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2014,gas oil combustion consumption by freight transport,57.71976,TJ,N2O,3.9,kg/TJ,225.107064,kg +8b8e4031-d19e-323f-bb63-5595edf6a6c5,SESCO,II.1.1,Santa Fe,AR-S,annual,2014,gas oil combustion consumption by freight transport,1731.80952,TJ,CO2,74100.0,kg/TJ,128327085.432,kg +e233787e-d914-3dff-9f4f-ae7aa3cb21c6,SESCO,II.1.1,Santa Fe,AR-S,annual,2014,gas oil combustion consumption by freight transport,1731.80952,TJ,CH4,3.9,kg/TJ,6754.057128,kg +e233787e-d914-3dff-9f4f-ae7aa3cb21c6,SESCO,II.1.1,Santa Fe,AR-S,annual,2014,gas oil combustion consumption by freight transport,1731.80952,TJ,N2O,3.9,kg/TJ,6754.057128,kg +5abb776a-ebe2-3d03-aeb0-5a3b300cda61,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2014,gas oil combustion consumption by freight transport,75.4908,TJ,CO2,74100.0,kg/TJ,5593868.279999999,kg +0cc188dd-a8cb-3ffa-8f02-b0545b636e29,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2014,gas oil combustion consumption by freight transport,75.4908,TJ,CH4,3.9,kg/TJ,294.41411999999997,kg +0cc188dd-a8cb-3ffa-8f02-b0545b636e29,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2014,gas oil combustion consumption by freight transport,75.4908,TJ,N2O,3.9,kg/TJ,294.41411999999997,kg +7b2de18b-7a13-35f8-a738-954d50eec356,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2014,gas oil combustion consumption by freight transport,9.89688,TJ,CO2,74100.0,kg/TJ,733358.808,kg +167c160a-4602-3e55-9185-6ae6f74a0cbd,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2014,gas oil combustion consumption by freight transport,9.89688,TJ,CH4,3.9,kg/TJ,38.597832,kg +167c160a-4602-3e55-9185-6ae6f74a0cbd,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2014,gas oil combustion consumption by freight transport,9.89688,TJ,N2O,3.9,kg/TJ,38.597832,kg +f66c311d-cfe9-37e3-b147-d092d8e4af54,SESCO,II.1.1,Tucuman,AR-T,annual,2014,gas oil combustion consumption by freight transport,291.74124,TJ,CO2,74100.0,kg/TJ,21618025.884,kg +09ef47bc-d26e-3de4-bb5e-1fc62ddf0070,SESCO,II.1.1,Tucuman,AR-T,annual,2014,gas oil combustion consumption by freight transport,291.74124,TJ,CH4,3.9,kg/TJ,1137.790836,kg +09ef47bc-d26e-3de4-bb5e-1fc62ddf0070,SESCO,II.1.1,Tucuman,AR-T,annual,2014,gas oil combustion consumption by freight transport,291.74124,TJ,N2O,3.9,kg/TJ,1137.790836,kg +6996fb2f-e105-3d1d-9c41-fbc27c4c245b,SESCO,II.1.1,Buenos Aires,AR-B,annual,2014,gas oil combustion consumption by freight transport,348.48575999999997,TJ,CO2,74100.0,kg/TJ,25822794.816,kg +1c3e39a6-6cb3-35ba-b219-109d6375e7ee,SESCO,II.1.1,Buenos Aires,AR-B,annual,2014,gas oil combustion consumption by freight transport,348.48575999999997,TJ,CH4,3.9,kg/TJ,1359.0944639999998,kg +1c3e39a6-6cb3-35ba-b219-109d6375e7ee,SESCO,II.1.1,Buenos Aires,AR-B,annual,2014,gas oil combustion consumption by freight transport,348.48575999999997,TJ,N2O,3.9,kg/TJ,1359.0944639999998,kg +963b47a9-b94d-3f95-9281-685340853120,SESCO,II.1.1,Capital Federal,AR-C,annual,2014,gas oil combustion consumption by freight transport,555.1644,TJ,CO2,74100.0,kg/TJ,41137682.04,kg +f4f61724-b1fc-33ca-bc92-4ed5dcded00f,SESCO,II.1.1,Capital Federal,AR-C,annual,2014,gas oil combustion consumption by freight transport,555.1644,TJ,CH4,3.9,kg/TJ,2165.14116,kg +f4f61724-b1fc-33ca-bc92-4ed5dcded00f,SESCO,II.1.1,Capital Federal,AR-C,annual,2014,gas oil combustion consumption by freight transport,555.1644,TJ,N2O,3.9,kg/TJ,2165.14116,kg +55d70975-75f3-3aff-92c1-44c6b8f84b77,SESCO,II.1.1,Chaco,AR-H,annual,2014,gas oil combustion consumption by freight transport,11.95572,TJ,CO2,74100.0,kg/TJ,885918.852,kg +750293e8-d08e-32c3-9953-1d75ee22015a,SESCO,II.1.1,Chaco,AR-H,annual,2014,gas oil combustion consumption by freight transport,11.95572,TJ,CH4,3.9,kg/TJ,46.627308,kg +750293e8-d08e-32c3-9953-1d75ee22015a,SESCO,II.1.1,Chaco,AR-H,annual,2014,gas oil combustion consumption by freight transport,11.95572,TJ,N2O,3.9,kg/TJ,46.627308,kg +0290ecc5-e362-3a24-8b51-ca450d43ed11,SESCO,II.1.1,Chubut,AR-U,annual,2014,gas oil combustion consumption by freight transport,5.5986,TJ,CO2,74100.0,kg/TJ,414856.26,kg +504137f9-39ea-3232-a6d3-68c644cd431a,SESCO,II.1.1,Chubut,AR-U,annual,2014,gas oil combustion consumption by freight transport,5.5986,TJ,CH4,3.9,kg/TJ,21.83454,kg +504137f9-39ea-3232-a6d3-68c644cd431a,SESCO,II.1.1,Chubut,AR-U,annual,2014,gas oil combustion consumption by freight transport,5.5986,TJ,N2O,3.9,kg/TJ,21.83454,kg +405c72df-70b9-3c1c-b0f4-1b87ab506056,SESCO,II.1.1,Corrientes,AR-W,annual,2014,gas oil combustion consumption by freight transport,2.09496,TJ,CO2,74100.0,kg/TJ,155236.536,kg +f55a4c18-584e-33fe-9655-beefeefad836,SESCO,II.1.1,Corrientes,AR-W,annual,2014,gas oil combustion consumption by freight transport,2.09496,TJ,CH4,3.9,kg/TJ,8.170344,kg +f55a4c18-584e-33fe-9655-beefeefad836,SESCO,II.1.1,Corrientes,AR-W,annual,2014,gas oil combustion consumption by freight transport,2.09496,TJ,N2O,3.9,kg/TJ,8.170344,kg +ad0c9164-4f10-38cc-b706-f5d6e0a28f20,SESCO,II.1.1,Córdoba,AR-X,annual,2014,gas oil combustion consumption by freight transport,10.69152,TJ,CO2,74100.0,kg/TJ,792241.6320000001,kg +2b2a1f69-d2c7-3d87-a16a-5e661e3ac826,SESCO,II.1.1,Córdoba,AR-X,annual,2014,gas oil combustion consumption by freight transport,10.69152,TJ,CH4,3.9,kg/TJ,41.696928,kg +2b2a1f69-d2c7-3d87-a16a-5e661e3ac826,SESCO,II.1.1,Córdoba,AR-X,annual,2014,gas oil combustion consumption by freight transport,10.69152,TJ,N2O,3.9,kg/TJ,41.696928,kg +07f3def1-59f3-3120-9c6a-e91f3dd8dc1c,SESCO,II.1.1,Entre Rios,AR-E,annual,2014,gas oil combustion consumption by freight transport,13.3644,TJ,CO2,74100.0,kg/TJ,990302.04,kg +616ab8ad-913c-373d-b12d-3c6ba66f5c20,SESCO,II.1.1,Entre Rios,AR-E,annual,2014,gas oil combustion consumption by freight transport,13.3644,TJ,CH4,3.9,kg/TJ,52.121159999999996,kg +616ab8ad-913c-373d-b12d-3c6ba66f5c20,SESCO,II.1.1,Entre Rios,AR-E,annual,2014,gas oil combustion consumption by freight transport,13.3644,TJ,N2O,3.9,kg/TJ,52.121159999999996,kg +af3a1ef4-ef4e-3cd1-9367-655b29438884,SESCO,II.1.1,Jujuy,AR-Y,annual,2014,gas oil combustion consumption by freight transport,0.28896,TJ,CO2,74100.0,kg/TJ,21411.935999999998,kg +6cb174f1-6558-3ef0-abfc-e5b1e4e229c6,SESCO,II.1.1,Jujuy,AR-Y,annual,2014,gas oil combustion consumption by freight transport,0.28896,TJ,CH4,3.9,kg/TJ,1.126944,kg +6cb174f1-6558-3ef0-abfc-e5b1e4e229c6,SESCO,II.1.1,Jujuy,AR-Y,annual,2014,gas oil combustion consumption by freight transport,0.28896,TJ,N2O,3.9,kg/TJ,1.126944,kg +7c49e1a9-b233-362c-b6e9-98ed67c4f775,SESCO,II.1.1,La Pampa,AR-L,annual,2014,gas oil combustion consumption by freight transport,0.21672,TJ,CO2,74100.0,kg/TJ,16058.952,kg +a25c2419-5257-34a0-bec8-a15894894c5b,SESCO,II.1.1,La Pampa,AR-L,annual,2014,gas oil combustion consumption by freight transport,0.21672,TJ,CH4,3.9,kg/TJ,0.845208,kg +a25c2419-5257-34a0-bec8-a15894894c5b,SESCO,II.1.1,La Pampa,AR-L,annual,2014,gas oil combustion consumption by freight transport,0.21672,TJ,N2O,3.9,kg/TJ,0.845208,kg +dcda983a-3be1-39f0-9809-9fe6bb5bcd49,SESCO,II.1.1,La Rioja,AR-F,annual,2014,gas oil combustion consumption by freight transport,1.87824,TJ,CO2,74100.0,kg/TJ,139177.584,kg +753c3625-6f30-3a2f-9f81-35543347157d,SESCO,II.1.1,La Rioja,AR-F,annual,2014,gas oil combustion consumption by freight transport,1.87824,TJ,CH4,3.9,kg/TJ,7.325136,kg +753c3625-6f30-3a2f-9f81-35543347157d,SESCO,II.1.1,La Rioja,AR-F,annual,2014,gas oil combustion consumption by freight transport,1.87824,TJ,N2O,3.9,kg/TJ,7.325136,kg +2bf22b79-75b1-3d78-ae83-1b1d2f923a8b,SESCO,II.1.1,Mendoza,AR-M,annual,2014,gas oil combustion consumption by freight transport,23.00844,TJ,CO2,74100.0,kg/TJ,1704925.404,kg +1319ea1f-1720-3c01-a7f5-9e9908c0f6f6,SESCO,II.1.1,Mendoza,AR-M,annual,2014,gas oil combustion consumption by freight transport,23.00844,TJ,CH4,3.9,kg/TJ,89.732916,kg +1319ea1f-1720-3c01-a7f5-9e9908c0f6f6,SESCO,II.1.1,Mendoza,AR-M,annual,2014,gas oil combustion consumption by freight transport,23.00844,TJ,N2O,3.9,kg/TJ,89.732916,kg +facdc35d-ee6c-37ab-b888-65871bf8fea0,SESCO,II.1.1,Misiones,AR-N,annual,2014,gas oil combustion consumption by freight transport,6.28488,TJ,CO2,74100.0,kg/TJ,465709.608,kg +13244397-76da-3f9a-9309-6c8764143d96,SESCO,II.1.1,Misiones,AR-N,annual,2014,gas oil combustion consumption by freight transport,6.28488,TJ,CH4,3.9,kg/TJ,24.511032,kg +13244397-76da-3f9a-9309-6c8764143d96,SESCO,II.1.1,Misiones,AR-N,annual,2014,gas oil combustion consumption by freight transport,6.28488,TJ,N2O,3.9,kg/TJ,24.511032,kg +313fa9df-0845-38b5-ba47-cf8ecca87193,SESCO,II.1.1,Neuquén,AR-Q,annual,2014,gas oil combustion consumption by freight transport,10.07748,TJ,CO2,74100.0,kg/TJ,746741.2679999999,kg +02ce5a90-0258-35a6-8918-273f22064b0b,SESCO,II.1.1,Neuquén,AR-Q,annual,2014,gas oil combustion consumption by freight transport,10.07748,TJ,CH4,3.9,kg/TJ,39.302172,kg +02ce5a90-0258-35a6-8918-273f22064b0b,SESCO,II.1.1,Neuquén,AR-Q,annual,2014,gas oil combustion consumption by freight transport,10.07748,TJ,N2O,3.9,kg/TJ,39.302172,kg +1252ac9f-174a-3c3c-b9e8-380d43a42f2c,SESCO,II.1.1,Rio Negro,AR-R,annual,2014,gas oil combustion consumption by freight transport,2.60064,TJ,CO2,74100.0,kg/TJ,192707.424,kg +b02cfbd0-00af-341c-9698-efcd8fca5ceb,SESCO,II.1.1,Rio Negro,AR-R,annual,2014,gas oil combustion consumption by freight transport,2.60064,TJ,CH4,3.9,kg/TJ,10.142496,kg +b02cfbd0-00af-341c-9698-efcd8fca5ceb,SESCO,II.1.1,Rio Negro,AR-R,annual,2014,gas oil combustion consumption by freight transport,2.60064,TJ,N2O,3.9,kg/TJ,10.142496,kg +88de971b-955b-3e2e-9e3c-7566abe5ffcf,SESCO,II.1.1,Salta,AR-A,annual,2014,gas oil combustion consumption by freight transport,14.77308,TJ,CO2,74100.0,kg/TJ,1094685.2280000001,kg +78a06ec3-d954-36e5-ba08-2ccba2a34c8e,SESCO,II.1.1,Salta,AR-A,annual,2014,gas oil combustion consumption by freight transport,14.77308,TJ,CH4,3.9,kg/TJ,57.615012,kg +78a06ec3-d954-36e5-ba08-2ccba2a34c8e,SESCO,II.1.1,Salta,AR-A,annual,2014,gas oil combustion consumption by freight transport,14.77308,TJ,N2O,3.9,kg/TJ,57.615012,kg +9b7b353a-68e3-3c1d-b14a-d6ed4224e523,SESCO,II.1.1,San Juan,AR-J,annual,2014,gas oil combustion consumption by freight transport,3.0702,TJ,CO2,74100.0,kg/TJ,227501.81999999998,kg +026ca2c4-03ca-30e4-a19a-2badf58d9a8d,SESCO,II.1.1,San Juan,AR-J,annual,2014,gas oil combustion consumption by freight transport,3.0702,TJ,CH4,3.9,kg/TJ,11.97378,kg +026ca2c4-03ca-30e4-a19a-2badf58d9a8d,SESCO,II.1.1,San Juan,AR-J,annual,2014,gas oil combustion consumption by freight transport,3.0702,TJ,N2O,3.9,kg/TJ,11.97378,kg +bb2c759c-61d0-39f3-b514-310c2328e749,SESCO,II.1.1,San Luis,AR-D,annual,2014,gas oil combustion consumption by freight transport,1.19196,TJ,CO2,74100.0,kg/TJ,88324.23599999999,kg +993547b1-b733-3d55-937b-c1ae654e5a5c,SESCO,II.1.1,San Luis,AR-D,annual,2014,gas oil combustion consumption by freight transport,1.19196,TJ,CH4,3.9,kg/TJ,4.648643999999999,kg +993547b1-b733-3d55-937b-c1ae654e5a5c,SESCO,II.1.1,San Luis,AR-D,annual,2014,gas oil combustion consumption by freight transport,1.19196,TJ,N2O,3.9,kg/TJ,4.648643999999999,kg +c9307b02-028a-3124-9818-0ec2062b503b,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2014,gas oil combustion consumption by freight transport,1.01136,TJ,CO2,74100.0,kg/TJ,74941.776,kg +3b42235f-98bd-3efa-a542-aeac86a64d8d,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2014,gas oil combustion consumption by freight transport,1.01136,TJ,CH4,3.9,kg/TJ,3.9443040000000003,kg +3b42235f-98bd-3efa-a542-aeac86a64d8d,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2014,gas oil combustion consumption by freight transport,1.01136,TJ,N2O,3.9,kg/TJ,3.9443040000000003,kg +5626e13d-1f12-3628-905d-c58044712bb0,SESCO,II.1.1,Santa Fe,AR-S,annual,2014,gas oil combustion consumption by freight transport,130.46544,TJ,CO2,74100.0,kg/TJ,9667489.104,kg +798996b1-5adf-3253-b5c3-12f67240d27b,SESCO,II.1.1,Santa Fe,AR-S,annual,2014,gas oil combustion consumption by freight transport,130.46544,TJ,CH4,3.9,kg/TJ,508.81521599999996,kg +798996b1-5adf-3253-b5c3-12f67240d27b,SESCO,II.1.1,Santa Fe,AR-S,annual,2014,gas oil combustion consumption by freight transport,130.46544,TJ,N2O,3.9,kg/TJ,508.81521599999996,kg +767c2e44-8146-3aae-830c-229491064951,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2014,gas oil combustion consumption by freight transport,0.03612,TJ,CO2,74100.0,kg/TJ,2676.4919999999997,kg +a8914733-0b94-3d52-b39a-ea4e29ecfc53,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2014,gas oil combustion consumption by freight transport,0.03612,TJ,CH4,3.9,kg/TJ,0.140868,kg +a8914733-0b94-3d52-b39a-ea4e29ecfc53,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2014,gas oil combustion consumption by freight transport,0.03612,TJ,N2O,3.9,kg/TJ,0.140868,kg +6942ddf3-f7fa-3aae-b246-ba1e26fe550c,SESCO,II.1.1,Tucuman,AR-T,annual,2014,gas oil combustion consumption by freight transport,6.6822,TJ,CO2,74100.0,kg/TJ,495151.02,kg +093850a4-8e32-336f-83e6-c839b4ea4dc4,SESCO,II.1.1,Tucuman,AR-T,annual,2014,gas oil combustion consumption by freight transport,6.6822,TJ,CH4,3.9,kg/TJ,26.060579999999998,kg +093850a4-8e32-336f-83e6-c839b4ea4dc4,SESCO,II.1.1,Tucuman,AR-T,annual,2014,gas oil combustion consumption by freight transport,6.6822,TJ,N2O,3.9,kg/TJ,26.060579999999998,kg +b975c56b-56f3-363f-97b3-67548fe4ee2f,SESCO,II.1.1,Buenos Aires,AR-B,annual,2014,gas oil combustion consumption by public passenger transport,11235.34272,TJ,CO2,74100.0,kg/TJ,832538895.552,kg +1c624c28-7d7c-3257-ad57-22aef0efa379,SESCO,II.1.1,Buenos Aires,AR-B,annual,2014,gas oil combustion consumption by public passenger transport,11235.34272,TJ,CH4,3.9,kg/TJ,43817.836608,kg +1c624c28-7d7c-3257-ad57-22aef0efa379,SESCO,II.1.1,Buenos Aires,AR-B,annual,2014,gas oil combustion consumption by public passenger transport,11235.34272,TJ,N2O,3.9,kg/TJ,43817.836608,kg +03bcfe22-9603-3ff7-bd99-f986a075eeb0,SESCO,II.1.1,Capital Federal,AR-C,annual,2014,gas oil combustion consumption by public passenger transport,2645.68164,TJ,CO2,74100.0,kg/TJ,196045009.524,kg +cf5d88e5-11a7-3c9a-91c3-8c6ece9c4f67,SESCO,II.1.1,Capital Federal,AR-C,annual,2014,gas oil combustion consumption by public passenger transport,2645.68164,TJ,CH4,3.9,kg/TJ,10318.158395999999,kg +cf5d88e5-11a7-3c9a-91c3-8c6ece9c4f67,SESCO,II.1.1,Capital Federal,AR-C,annual,2014,gas oil combustion consumption by public passenger transport,2645.68164,TJ,N2O,3.9,kg/TJ,10318.158395999999,kg +44be6cb3-d3b9-3b68-b120-b3d083bd45a4,SESCO,II.1.1,Catamarca,AR-K,annual,2014,gas oil combustion consumption by public passenger transport,223.14936,TJ,CO2,74100.0,kg/TJ,16535367.576,kg +f297d9df-189c-345e-970b-52c6e349f5a8,SESCO,II.1.1,Catamarca,AR-K,annual,2014,gas oil combustion consumption by public passenger transport,223.14936,TJ,CH4,3.9,kg/TJ,870.282504,kg +f297d9df-189c-345e-970b-52c6e349f5a8,SESCO,II.1.1,Catamarca,AR-K,annual,2014,gas oil combustion consumption by public passenger transport,223.14936,TJ,N2O,3.9,kg/TJ,870.282504,kg +1a72a92d-e621-3aa1-9db8-1d87c2929958,SESCO,II.1.1,Chaco,AR-H,annual,2014,gas oil combustion consumption by public passenger transport,494.30219999999997,TJ,CO2,74100.0,kg/TJ,36627793.019999996,kg +720eb68a-6a83-381d-9067-0b9897108935,SESCO,II.1.1,Chaco,AR-H,annual,2014,gas oil combustion consumption by public passenger transport,494.30219999999997,TJ,CH4,3.9,kg/TJ,1927.77858,kg +720eb68a-6a83-381d-9067-0b9897108935,SESCO,II.1.1,Chaco,AR-H,annual,2014,gas oil combustion consumption by public passenger transport,494.30219999999997,TJ,N2O,3.9,kg/TJ,1927.77858,kg +3eaf7117-864d-3285-8580-3a4d7b22ae32,SESCO,II.1.1,Chubut,AR-U,annual,2014,gas oil combustion consumption by public passenger transport,100.73868,TJ,CO2,74100.0,kg/TJ,7464736.188,kg +473abd1e-440a-3cb8-98f4-a203a199e0de,SESCO,II.1.1,Chubut,AR-U,annual,2014,gas oil combustion consumption by public passenger transport,100.73868,TJ,CH4,3.9,kg/TJ,392.880852,kg +473abd1e-440a-3cb8-98f4-a203a199e0de,SESCO,II.1.1,Chubut,AR-U,annual,2014,gas oil combustion consumption by public passenger transport,100.73868,TJ,N2O,3.9,kg/TJ,392.880852,kg +bda5e1d6-d602-3d18-98cf-6507f8645c10,SESCO,II.1.1,Corrientes,AR-W,annual,2014,gas oil combustion consumption by public passenger transport,508.06392,TJ,CO2,74100.0,kg/TJ,37647536.472,kg +788d6631-3e68-35ae-9507-a1f8edfea361,SESCO,II.1.1,Corrientes,AR-W,annual,2014,gas oil combustion consumption by public passenger transport,508.06392,TJ,CH4,3.9,kg/TJ,1981.449288,kg +788d6631-3e68-35ae-9507-a1f8edfea361,SESCO,II.1.1,Corrientes,AR-W,annual,2014,gas oil combustion consumption by public passenger transport,508.06392,TJ,N2O,3.9,kg/TJ,1981.449288,kg +8453448d-9719-3227-9ada-3f49f72e12d0,SESCO,II.1.1,Córdoba,AR-X,annual,2014,gas oil combustion consumption by public passenger transport,1711.04052,TJ,CO2,74100.0,kg/TJ,126788102.532,kg +9c3f4855-4b50-3cc4-a6c0-70d001be2aea,SESCO,II.1.1,Córdoba,AR-X,annual,2014,gas oil combustion consumption by public passenger transport,1711.04052,TJ,CH4,3.9,kg/TJ,6673.0580279999995,kg +9c3f4855-4b50-3cc4-a6c0-70d001be2aea,SESCO,II.1.1,Córdoba,AR-X,annual,2014,gas oil combustion consumption by public passenger transport,1711.04052,TJ,N2O,3.9,kg/TJ,6673.0580279999995,kg +2a7555cf-16d5-3ec7-8092-5d8297b5bd06,SESCO,II.1.1,Entre Rios,AR-E,annual,2014,gas oil combustion consumption by public passenger transport,480.10704,TJ,CO2,74100.0,kg/TJ,35575931.664,kg +b469a6d7-8179-3270-94e6-31caaf781b42,SESCO,II.1.1,Entre Rios,AR-E,annual,2014,gas oil combustion consumption by public passenger transport,480.10704,TJ,CH4,3.9,kg/TJ,1872.417456,kg +b469a6d7-8179-3270-94e6-31caaf781b42,SESCO,II.1.1,Entre Rios,AR-E,annual,2014,gas oil combustion consumption by public passenger transport,480.10704,TJ,N2O,3.9,kg/TJ,1872.417456,kg +cc5461e5-bb13-3a5a-83ee-008ad5f57e50,SESCO,II.1.1,Formosa,AR-P,annual,2014,gas oil combustion consumption by public passenger transport,57.286319999999996,TJ,CO2,74100.0,kg/TJ,4244916.312,kg +06162153-ed97-3e3a-ba45-1cfd9bdcdd0b,SESCO,II.1.1,Formosa,AR-P,annual,2014,gas oil combustion consumption by public passenger transport,57.286319999999996,TJ,CH4,3.9,kg/TJ,223.41664799999998,kg +06162153-ed97-3e3a-ba45-1cfd9bdcdd0b,SESCO,II.1.1,Formosa,AR-P,annual,2014,gas oil combustion consumption by public passenger transport,57.286319999999996,TJ,N2O,3.9,kg/TJ,223.41664799999998,kg +225b9ba3-cd66-3be1-b2f3-e52c40817a57,SESCO,II.1.1,Jujuy,AR-Y,annual,2014,gas oil combustion consumption by public passenger transport,593.70444,TJ,CO2,74100.0,kg/TJ,43993499.004,kg +40605e94-ab88-3a3f-aefc-92514b75ab3e,SESCO,II.1.1,Jujuy,AR-Y,annual,2014,gas oil combustion consumption by public passenger transport,593.70444,TJ,CH4,3.9,kg/TJ,2315.447316,kg +40605e94-ab88-3a3f-aefc-92514b75ab3e,SESCO,II.1.1,Jujuy,AR-Y,annual,2014,gas oil combustion consumption by public passenger transport,593.70444,TJ,N2O,3.9,kg/TJ,2315.447316,kg +5d4a10a0-6ec9-351b-8468-ddc790007e72,SESCO,II.1.1,La Pampa,AR-L,annual,2014,gas oil combustion consumption by public passenger transport,46.305839999999996,TJ,CO2,74100.0,kg/TJ,3431262.744,kg +f125b067-65dc-3082-8e4e-a7ea66bdd996,SESCO,II.1.1,La Pampa,AR-L,annual,2014,gas oil combustion consumption by public passenger transport,46.305839999999996,TJ,CH4,3.9,kg/TJ,180.592776,kg +f125b067-65dc-3082-8e4e-a7ea66bdd996,SESCO,II.1.1,La Pampa,AR-L,annual,2014,gas oil combustion consumption by public passenger transport,46.305839999999996,TJ,N2O,3.9,kg/TJ,180.592776,kg +eff673cf-972c-35d6-9dd8-d90018b3c607,SESCO,II.1.1,La Rioja,AR-F,annual,2014,gas oil combustion consumption by public passenger transport,116.05356,TJ,CO2,74100.0,kg/TJ,8599568.796,kg +4b412151-af4b-3e37-b619-ceb5437ae061,SESCO,II.1.1,La Rioja,AR-F,annual,2014,gas oil combustion consumption by public passenger transport,116.05356,TJ,CH4,3.9,kg/TJ,452.608884,kg +4b412151-af4b-3e37-b619-ceb5437ae061,SESCO,II.1.1,La Rioja,AR-F,annual,2014,gas oil combustion consumption by public passenger transport,116.05356,TJ,N2O,3.9,kg/TJ,452.608884,kg +f978975a-45b7-3841-aa04-00467869815d,SESCO,II.1.1,Mendoza,AR-M,annual,2014,gas oil combustion consumption by public passenger transport,1788.01224,TJ,CO2,74100.0,kg/TJ,132491706.984,kg +c7f29ef9-ebc6-348e-a9bc-5239fd22bf53,SESCO,II.1.1,Mendoza,AR-M,annual,2014,gas oil combustion consumption by public passenger transport,1788.01224,TJ,CH4,3.9,kg/TJ,6973.247736,kg +c7f29ef9-ebc6-348e-a9bc-5239fd22bf53,SESCO,II.1.1,Mendoza,AR-M,annual,2014,gas oil combustion consumption by public passenger transport,1788.01224,TJ,N2O,3.9,kg/TJ,6973.247736,kg +1e7a2bfa-875b-3415-947f-d3753801b2c9,SESCO,II.1.1,Misiones,AR-N,annual,2014,gas oil combustion consumption by public passenger transport,1015.3332,TJ,CO2,74100.0,kg/TJ,75236190.12,kg +471142dd-30ee-3dbf-8df7-76b6d2a0229d,SESCO,II.1.1,Misiones,AR-N,annual,2014,gas oil combustion consumption by public passenger transport,1015.3332,TJ,CH4,3.9,kg/TJ,3959.79948,kg +471142dd-30ee-3dbf-8df7-76b6d2a0229d,SESCO,II.1.1,Misiones,AR-N,annual,2014,gas oil combustion consumption by public passenger transport,1015.3332,TJ,N2O,3.9,kg/TJ,3959.79948,kg +697aeb24-a7aa-3242-9690-d7fec083b446,SESCO,II.1.1,Neuquén,AR-Q,annual,2014,gas oil combustion consumption by public passenger transport,319.15632,TJ,CO2,74100.0,kg/TJ,23649483.312,kg +77b2f118-74db-3865-9a84-f76a8f2df622,SESCO,II.1.1,Neuquén,AR-Q,annual,2014,gas oil combustion consumption by public passenger transport,319.15632,TJ,CH4,3.9,kg/TJ,1244.709648,kg +77b2f118-74db-3865-9a84-f76a8f2df622,SESCO,II.1.1,Neuquén,AR-Q,annual,2014,gas oil combustion consumption by public passenger transport,319.15632,TJ,N2O,3.9,kg/TJ,1244.709648,kg +a8229873-fa83-34f5-82ac-833c4169c8da,SESCO,II.1.1,Rio Negro,AR-R,annual,2014,gas oil combustion consumption by public passenger transport,379.26,TJ,CO2,74100.0,kg/TJ,28103166.0,kg +3a340795-4de5-3ff4-9f37-9fe1f4461de1,SESCO,II.1.1,Rio Negro,AR-R,annual,2014,gas oil combustion consumption by public passenger transport,379.26,TJ,CH4,3.9,kg/TJ,1479.114,kg +3a340795-4de5-3ff4-9f37-9fe1f4461de1,SESCO,II.1.1,Rio Negro,AR-R,annual,2014,gas oil combustion consumption by public passenger transport,379.26,TJ,N2O,3.9,kg/TJ,1479.114,kg +0dc82f1e-f2d6-39e4-a221-b0e37bb28ced,SESCO,II.1.1,Salta,AR-A,annual,2014,gas oil combustion consumption by public passenger transport,870.45588,TJ,CO2,74100.0,kg/TJ,64500780.708,kg +0a11788d-470b-34fd-8eb1-6c98e840b646,SESCO,II.1.1,Salta,AR-A,annual,2014,gas oil combustion consumption by public passenger transport,870.45588,TJ,CH4,3.9,kg/TJ,3394.777932,kg +0a11788d-470b-34fd-8eb1-6c98e840b646,SESCO,II.1.1,Salta,AR-A,annual,2014,gas oil combustion consumption by public passenger transport,870.45588,TJ,N2O,3.9,kg/TJ,3394.777932,kg +817f8383-ecf7-326d-aba7-4d69199710ac,SESCO,II.1.1,San Juan,AR-J,annual,2014,gas oil combustion consumption by public passenger transport,510.48395999999997,TJ,CO2,74100.0,kg/TJ,37826861.436,kg +cb25d470-5e36-38de-8d75-2076ccff115a,SESCO,II.1.1,San Juan,AR-J,annual,2014,gas oil combustion consumption by public passenger transport,510.48395999999997,TJ,CH4,3.9,kg/TJ,1990.8874439999997,kg +cb25d470-5e36-38de-8d75-2076ccff115a,SESCO,II.1.1,San Juan,AR-J,annual,2014,gas oil combustion consumption by public passenger transport,510.48395999999997,TJ,N2O,3.9,kg/TJ,1990.8874439999997,kg +65f575b6-c875-350e-b5a8-cc8c46219e1a,SESCO,II.1.1,San Luis,AR-D,annual,2014,gas oil combustion consumption by public passenger transport,181.03343999999998,TJ,CO2,74100.0,kg/TJ,13414577.904,kg +9b018a2f-615c-375f-b595-d0e1d5df5558,SESCO,II.1.1,San Luis,AR-D,annual,2014,gas oil combustion consumption by public passenger transport,181.03343999999998,TJ,CH4,3.9,kg/TJ,706.030416,kg +9b018a2f-615c-375f-b595-d0e1d5df5558,SESCO,II.1.1,San Luis,AR-D,annual,2014,gas oil combustion consumption by public passenger transport,181.03343999999998,TJ,N2O,3.9,kg/TJ,706.030416,kg +a8762057-20c2-3b90-ba4c-e1ffc7cbfd81,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2014,gas oil combustion consumption by public passenger transport,56.05824,TJ,CO2,74100.0,kg/TJ,4153915.584,kg +5764f3c0-ad1e-3858-87ab-71655ac247ad,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2014,gas oil combustion consumption by public passenger transport,56.05824,TJ,CH4,3.9,kg/TJ,218.62713599999998,kg +5764f3c0-ad1e-3858-87ab-71655ac247ad,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2014,gas oil combustion consumption by public passenger transport,56.05824,TJ,N2O,3.9,kg/TJ,218.62713599999998,kg +9b06fa8a-a36e-319c-a8bc-e5d2b190d5ad,SESCO,II.1.1,Santa Fe,AR-S,annual,2014,gas oil combustion consumption by public passenger transport,1939.75236,TJ,CO2,74100.0,kg/TJ,143735649.876,kg +ad7c7505-d163-3d43-b02e-539eb659cb41,SESCO,II.1.1,Santa Fe,AR-S,annual,2014,gas oil combustion consumption by public passenger transport,1939.75236,TJ,CH4,3.9,kg/TJ,7565.034204,kg +ad7c7505-d163-3d43-b02e-539eb659cb41,SESCO,II.1.1,Santa Fe,AR-S,annual,2014,gas oil combustion consumption by public passenger transport,1939.75236,TJ,N2O,3.9,kg/TJ,7565.034204,kg +50b330db-ac0f-332a-8918-d22226c2d07c,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2014,gas oil combustion consumption by public passenger transport,248.72232,TJ,CO2,74100.0,kg/TJ,18430323.912,kg +95df6410-4dd1-3e37-9916-a4d9bbb7fa48,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2014,gas oil combustion consumption by public passenger transport,248.72232,TJ,CH4,3.9,kg/TJ,970.0170479999999,kg +95df6410-4dd1-3e37-9916-a4d9bbb7fa48,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2014,gas oil combustion consumption by public passenger transport,248.72232,TJ,N2O,3.9,kg/TJ,970.0170479999999,kg +ff8c831c-f256-385f-a8fe-969a55943f0c,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2014,gas oil combustion consumption by public passenger transport,20.11884,TJ,CO2,74100.0,kg/TJ,1490806.044,kg +48adf1e0-37dc-3a48-a717-78448c335e3b,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2014,gas oil combustion consumption by public passenger transport,20.11884,TJ,CH4,3.9,kg/TJ,78.463476,kg +48adf1e0-37dc-3a48-a717-78448c335e3b,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2014,gas oil combustion consumption by public passenger transport,20.11884,TJ,N2O,3.9,kg/TJ,78.463476,kg +8b2b0f0e-b4d1-34d0-a4ee-5e5fbb62e942,SESCO,II.1.1,Tucuman,AR-T,annual,2014,gas oil combustion consumption by public passenger transport,1330.94976,TJ,CO2,74100.0,kg/TJ,98623377.21599999,kg +47b93f9a-9907-3ab9-92bb-5cdefb20ce5d,SESCO,II.1.1,Tucuman,AR-T,annual,2014,gas oil combustion consumption by public passenger transport,1330.94976,TJ,CH4,3.9,kg/TJ,5190.704064,kg +47b93f9a-9907-3ab9-92bb-5cdefb20ce5d,SESCO,II.1.1,Tucuman,AR-T,annual,2014,gas oil combustion consumption by public passenger transport,1330.94976,TJ,N2O,3.9,kg/TJ,5190.704064,kg +deb9700c-020e-3352-be24-93240448a852,SESCO,II.1.1,Capital Federal,AR-C,annual,2015,gas oil combustion consumption by to the public,110.8884,TJ,CO2,74100.0,kg/TJ,8216830.44,kg +339fca91-67cf-3de8-bf24-c137b892afac,SESCO,II.1.1,Capital Federal,AR-C,annual,2015,gas oil combustion consumption by to the public,110.8884,TJ,CH4,3.9,kg/TJ,432.46476,kg +339fca91-67cf-3de8-bf24-c137b892afac,SESCO,II.1.1,Capital Federal,AR-C,annual,2015,gas oil combustion consumption by to the public,110.8884,TJ,N2O,3.9,kg/TJ,432.46476,kg +31309df6-4bd8-3189-bd88-dbd3f7fe5fe3,SESCO,II.5.1,Buenos Aires,AR-B,annual,2015,gas oil combustion consumption by agriculture machines,179.44416,TJ,CO2,74100.0,kg/TJ,13296812.256000001,kg +17c5b5d1-a7d5-3ca0-88b0-4948af8e167e,SESCO,II.5.1,Buenos Aires,AR-B,annual,2015,gas oil combustion consumption by agriculture machines,179.44416,TJ,CH4,3.9,kg/TJ,699.832224,kg +17c5b5d1-a7d5-3ca0-88b0-4948af8e167e,SESCO,II.5.1,Buenos Aires,AR-B,annual,2015,gas oil combustion consumption by agriculture machines,179.44416,TJ,N2O,3.9,kg/TJ,699.832224,kg +d64a373e-d09a-36f5-b773-16e836409b0b,SESCO,II.5.1,Córdoba,AR-X,annual,2015,gas oil combustion consumption by agriculture machines,31.85784,TJ,CO2,74100.0,kg/TJ,2360665.944,kg +c13b6166-12d7-3211-b9fb-78f520020451,SESCO,II.5.1,Córdoba,AR-X,annual,2015,gas oil combustion consumption by agriculture machines,31.85784,TJ,CH4,3.9,kg/TJ,124.245576,kg +c13b6166-12d7-3211-b9fb-78f520020451,SESCO,II.5.1,Córdoba,AR-X,annual,2015,gas oil combustion consumption by agriculture machines,31.85784,TJ,N2O,3.9,kg/TJ,124.245576,kg +49d8436e-be9e-393f-8a79-dce4c2611301,SESCO,II.5.1,Santa Fe,AR-S,annual,2015,gas oil combustion consumption by agriculture machines,515.7936,TJ,CO2,74100.0,kg/TJ,38220305.76,kg +f8faf169-42c1-3bef-b7e2-0e7bad11b127,SESCO,II.5.1,Santa Fe,AR-S,annual,2015,gas oil combustion consumption by agriculture machines,515.7936,TJ,CH4,3.9,kg/TJ,2011.59504,kg +f8faf169-42c1-3bef-b7e2-0e7bad11b127,SESCO,II.5.1,Santa Fe,AR-S,annual,2015,gas oil combustion consumption by agriculture machines,515.7936,TJ,N2O,3.9,kg/TJ,2011.59504,kg +2a8ecce2-24f2-3af9-8d93-71f89e5670ce,SESCO,II.5.1,Buenos Aires,AR-B,annual,2015,gas oil combustion consumption by agriculture machines,1.37256,TJ,CO2,74100.0,kg/TJ,101706.696,kg +b977c5ab-fc6f-3a41-9ccb-0023b3f2f337,SESCO,II.5.1,Buenos Aires,AR-B,annual,2015,gas oil combustion consumption by agriculture machines,1.37256,TJ,CH4,3.9,kg/TJ,5.352984,kg +b977c5ab-fc6f-3a41-9ccb-0023b3f2f337,SESCO,II.5.1,Buenos Aires,AR-B,annual,2015,gas oil combustion consumption by agriculture machines,1.37256,TJ,N2O,3.9,kg/TJ,5.352984,kg +e852951c-6371-3299-a5b8-ecb768fb4112,SESCO,II.5.1,Córdoba,AR-X,annual,2015,gas oil combustion consumption by agriculture machines,6.2126399999999995,TJ,CO2,74100.0,kg/TJ,460356.62399999995,kg +8e1fa45e-7d7c-32a9-8988-a2bf4b03ee07,SESCO,II.5.1,Córdoba,AR-X,annual,2015,gas oil combustion consumption by agriculture machines,6.2126399999999995,TJ,CH4,3.9,kg/TJ,24.229295999999998,kg +8e1fa45e-7d7c-32a9-8988-a2bf4b03ee07,SESCO,II.5.1,Córdoba,AR-X,annual,2015,gas oil combustion consumption by agriculture machines,6.2126399999999995,TJ,N2O,3.9,kg/TJ,24.229295999999998,kg +e4afd0db-b098-3f2b-9058-54bff095ceb8,SESCO,II.5.1,Santa Fe,AR-S,annual,2015,gas oil combustion consumption by agriculture machines,15.31488,TJ,CO2,74100.0,kg/TJ,1134832.608,kg +911582cf-d143-3061-a8dd-cddc95dd32de,SESCO,II.5.1,Santa Fe,AR-S,annual,2015,gas oil combustion consumption by agriculture machines,15.31488,TJ,CH4,3.9,kg/TJ,59.728032,kg +911582cf-d143-3061-a8dd-cddc95dd32de,SESCO,II.5.1,Santa Fe,AR-S,annual,2015,gas oil combustion consumption by agriculture machines,15.31488,TJ,N2O,3.9,kg/TJ,59.728032,kg +696849a8-04f9-3155-9506-a0bfd5e492af,SESCO,II.5.1,Tucuman,AR-T,annual,2015,gas oil combustion consumption by agriculture machines,0.5418,TJ,CO2,74100.0,kg/TJ,40147.38,kg +a5a69524-0532-399a-865a-dd8f5dc17583,SESCO,II.5.1,Tucuman,AR-T,annual,2015,gas oil combustion consumption by agriculture machines,0.5418,TJ,CH4,3.9,kg/TJ,2.1130199999999997,kg +a5a69524-0532-399a-865a-dd8f5dc17583,SESCO,II.5.1,Tucuman,AR-T,annual,2015,gas oil combustion consumption by agriculture machines,0.5418,TJ,N2O,3.9,kg/TJ,2.1130199999999997,kg +7059f0a6-2440-3f00-813c-ca23f6936de3,SESCO,II.1.1,Buenos Aires,AR-B,annual,2015,jet kerosene combustion consumption by to the public,1.0694019999999997,TJ,CO2,71500.0,kg/TJ,76462.24299999999,kg +d2c6d594-7488-302f-8a92-9b3a0d85d7bc,SESCO,II.1.1,Buenos Aires,AR-B,annual,2015,jet kerosene combustion consumption by to the public,1.0694019999999997,TJ,CH4,0.5,kg/TJ,0.5347009999999999,kg +feb3d6e5-9d60-3cbe-932e-a601bc272299,SESCO,II.1.1,Buenos Aires,AR-B,annual,2015,jet kerosene combustion consumption by to the public,1.0694019999999997,TJ,N2O,2.0,kg/TJ,2.1388039999999995,kg +00517090-08a1-3a16-9ac6-99b5b896125b,SESCO,II.1.1,Córdoba,AR-X,annual,2015,jet kerosene combustion consumption by to the public,1.0694019999999997,TJ,CO2,71500.0,kg/TJ,76462.24299999999,kg +065bd601-816a-32b3-ac29-74ddb2bfd4d1,SESCO,II.1.1,Córdoba,AR-X,annual,2015,jet kerosene combustion consumption by to the public,1.0694019999999997,TJ,CH4,0.5,kg/TJ,0.5347009999999999,kg +4951de93-0f76-3786-a91f-d263b1aa93f9,SESCO,II.1.1,Córdoba,AR-X,annual,2015,jet kerosene combustion consumption by to the public,1.0694019999999997,TJ,N2O,2.0,kg/TJ,2.1388039999999995,kg +69bb9767-157d-336c-9bde-6b10116e4880,SESCO,II.1.1,Entre Rios,AR-E,annual,2015,jet kerosene combustion consumption by to the public,0.37743599999999994,TJ,CO2,71500.0,kg/TJ,26986.673999999995,kg +d5a7ab39-0883-32b6-9fc6-65455d89c216,SESCO,II.1.1,Entre Rios,AR-E,annual,2015,jet kerosene combustion consumption by to the public,0.37743599999999994,TJ,CH4,0.5,kg/TJ,0.18871799999999997,kg +30aa5592-ac3d-3539-85b0-7136e6eb4001,SESCO,II.1.1,Entre Rios,AR-E,annual,2015,jet kerosene combustion consumption by to the public,0.37743599999999994,TJ,N2O,2.0,kg/TJ,0.7548719999999999,kg +4e4f5b09-349c-3a7a-af4b-4458338f7f34,SESCO,II.1.1,Misiones,AR-N,annual,2015,jet kerosene combustion consumption by to the public,0.5032479999999999,TJ,CO2,71500.0,kg/TJ,35982.231999999996,kg +1c040b32-6845-3b87-8a45-076e7bbf3312,SESCO,II.1.1,Misiones,AR-N,annual,2015,jet kerosene combustion consumption by to the public,0.5032479999999999,TJ,CH4,0.5,kg/TJ,0.25162399999999996,kg +9c7ce6fd-d1d6-341e-a482-b6ab5bbcd5c4,SESCO,II.1.1,Misiones,AR-N,annual,2015,jet kerosene combustion consumption by to the public,0.5032479999999999,TJ,N2O,2.0,kg/TJ,1.0064959999999998,kg +792afa13-bb2b-3c59-9411-a406e23cb4d4,SESCO,II.1.1,Santa Fe,AR-S,annual,2015,jet kerosene combustion consumption by to the public,1.0694019999999997,TJ,CO2,71500.0,kg/TJ,76462.24299999999,kg +214d01ba-3819-36f6-adb7-fa6b86442849,SESCO,II.1.1,Santa Fe,AR-S,annual,2015,jet kerosene combustion consumption by to the public,1.0694019999999997,TJ,CH4,0.5,kg/TJ,0.5347009999999999,kg +a96536a4-d6e8-3e82-ad49-73274525e06b,SESCO,II.1.1,Santa Fe,AR-S,annual,2015,jet kerosene combustion consumption by to the public,1.0694019999999997,TJ,N2O,2.0,kg/TJ,2.1388039999999995,kg +0f419b55-5f45-3aa3-a101-ba0320a8125f,SESCO,II.1.1,Buenos Aires,AR-B,annual,2015,gas oil combustion consumption by to the public,10993.994341344001,TJ,CO2,74100.0,kg/TJ,814654980.6935905,kg +5f3dc818-05b2-38c7-9a09-2d20dc43f3cc,SESCO,II.1.1,Buenos Aires,AR-B,annual,2015,gas oil combustion consumption by to the public,10993.994341344001,TJ,CH4,3.9,kg/TJ,42876.577931241605,kg +5f3dc818-05b2-38c7-9a09-2d20dc43f3cc,SESCO,II.1.1,Buenos Aires,AR-B,annual,2015,gas oil combustion consumption by to the public,10993.994341344001,TJ,N2O,3.9,kg/TJ,42876.577931241605,kg +2b2e81f2-e584-3d15-b86a-340b84e0eb7e,SESCO,II.1.1,Capital Federal,AR-C,annual,2015,gas oil combustion consumption by to the public,1260.4077612,TJ,CO2,74100.0,kg/TJ,93396215.10492,kg +3ab587ba-1d9e-3fcd-a56f-c5cd40daf5f6,SESCO,II.1.1,Capital Federal,AR-C,annual,2015,gas oil combustion consumption by to the public,1260.4077612,TJ,CH4,3.9,kg/TJ,4915.59026868,kg +3ab587ba-1d9e-3fcd-a56f-c5cd40daf5f6,SESCO,II.1.1,Capital Federal,AR-C,annual,2015,gas oil combustion consumption by to the public,1260.4077612,TJ,N2O,3.9,kg/TJ,4915.59026868,kg +4a440a6c-4b10-39f1-853c-130c5b457010,SESCO,II.1.1,Catamarca,AR-K,annual,2015,gas oil combustion consumption by to the public,355.69751532,TJ,CO2,74100.0,kg/TJ,26357185.885211997,kg +9a7860b4-b6bc-3d3d-a5d3-887e74c94869,SESCO,II.1.1,Catamarca,AR-K,annual,2015,gas oil combustion consumption by to the public,355.69751532,TJ,CH4,3.9,kg/TJ,1387.2203097479999,kg +9a7860b4-b6bc-3d3d-a5d3-887e74c94869,SESCO,II.1.1,Catamarca,AR-K,annual,2015,gas oil combustion consumption by to the public,355.69751532,TJ,N2O,3.9,kg/TJ,1387.2203097479999,kg +4fcf3293-8469-330c-bc16-f5b73af322e5,SESCO,II.1.1,Chaco,AR-H,annual,2015,gas oil combustion consumption by to the public,323.087461872,TJ,CO2,74100.0,kg/TJ,23940780.9247152,kg +ee65b6bc-73ed-3903-a667-37fcfa7ee92b,SESCO,II.1.1,Chaco,AR-H,annual,2015,gas oil combustion consumption by to the public,323.087461872,TJ,CH4,3.9,kg/TJ,1260.0411013008,kg +ee65b6bc-73ed-3903-a667-37fcfa7ee92b,SESCO,II.1.1,Chaco,AR-H,annual,2015,gas oil combustion consumption by to the public,323.087461872,TJ,N2O,3.9,kg/TJ,1260.0411013008,kg +d5b69950-d379-3c9e-aead-7fc353ec5d32,SESCO,II.1.1,Chubut,AR-U,annual,2015,gas oil combustion consumption by to the public,397.311089196,TJ,CO2,74100.0,kg/TJ,29440751.7094236,kg +a924c339-d1da-3ce4-87bd-34ac00f47c8b,SESCO,II.1.1,Chubut,AR-U,annual,2015,gas oil combustion consumption by to the public,397.311089196,TJ,CH4,3.9,kg/TJ,1549.5132478644,kg +a924c339-d1da-3ce4-87bd-34ac00f47c8b,SESCO,II.1.1,Chubut,AR-U,annual,2015,gas oil combustion consumption by to the public,397.311089196,TJ,N2O,3.9,kg/TJ,1549.5132478644,kg +9972abbd-6890-3d93-a32d-280b699e1099,SESCO,II.1.1,Corrientes,AR-W,annual,2015,gas oil combustion consumption by to the public,679.861064232,TJ,CO2,74100.0,kg/TJ,50377704.8595912,kg +45b777d8-4cd4-386c-ac88-f8285b592591,SESCO,II.1.1,Corrientes,AR-W,annual,2015,gas oil combustion consumption by to the public,679.861064232,TJ,CH4,3.9,kg/TJ,2651.4581505048,kg +45b777d8-4cd4-386c-ac88-f8285b592591,SESCO,II.1.1,Corrientes,AR-W,annual,2015,gas oil combustion consumption by to the public,679.861064232,TJ,N2O,3.9,kg/TJ,2651.4581505048,kg +cca888fa-dd84-3750-a1ff-185fcad1f9f0,SESCO,II.1.1,Córdoba,AR-X,annual,2015,gas oil combustion consumption by to the public,4555.12932,TJ,CO2,74100.0,kg/TJ,337535082.612,kg +b4d25b88-d0ee-3116-b993-93314dea47be,SESCO,II.1.1,Córdoba,AR-X,annual,2015,gas oil combustion consumption by to the public,4555.12932,TJ,CH4,3.9,kg/TJ,17765.004348,kg +b4d25b88-d0ee-3116-b993-93314dea47be,SESCO,II.1.1,Córdoba,AR-X,annual,2015,gas oil combustion consumption by to the public,4555.12932,TJ,N2O,3.9,kg/TJ,17765.004348,kg +f5617084-7e23-3cec-b061-c3cb7e8ba09d,SESCO,II.1.1,Entre Rios,AR-E,annual,2015,gas oil combustion consumption by to the public,1412.6318386320002,TJ,CO2,74100.0,kg/TJ,104676019.24263121,kg +fc0ea6a6-9d33-3af5-9496-0700bc125fb8,SESCO,II.1.1,Entre Rios,AR-E,annual,2015,gas oil combustion consumption by to the public,1412.6318386320002,TJ,CH4,3.9,kg/TJ,5509.2641706648,kg +fc0ea6a6-9d33-3af5-9496-0700bc125fb8,SESCO,II.1.1,Entre Rios,AR-E,annual,2015,gas oil combustion consumption by to the public,1412.6318386320002,TJ,N2O,3.9,kg/TJ,5509.2641706648,kg +a3354043-737d-37b6-9571-1fc12704f4db,SESCO,II.1.1,Formosa,AR-P,annual,2015,gas oil combustion consumption by to the public,426.808104324,TJ,CO2,74100.0,kg/TJ,31626480.5304084,kg +7487a934-ccb0-3469-a909-38fbf6dda5f8,SESCO,II.1.1,Formosa,AR-P,annual,2015,gas oil combustion consumption by to the public,426.808104324,TJ,CH4,3.9,kg/TJ,1664.5516068636,kg +7487a934-ccb0-3469-a909-38fbf6dda5f8,SESCO,II.1.1,Formosa,AR-P,annual,2015,gas oil combustion consumption by to the public,426.808104324,TJ,N2O,3.9,kg/TJ,1664.5516068636,kg +c60c05e5-3a05-3270-a243-4e50ae8eaad9,SESCO,II.1.1,Jujuy,AR-Y,annual,2015,gas oil combustion consumption by to the public,145.38799900799998,TJ,CO2,74100.0,kg/TJ,10773250.726492798,kg +1d970b94-17b5-39e3-80ed-0b4113d9de99,SESCO,II.1.1,Jujuy,AR-Y,annual,2015,gas oil combustion consumption by to the public,145.38799900799998,TJ,CH4,3.9,kg/TJ,567.0131961312,kg +1d970b94-17b5-39e3-80ed-0b4113d9de99,SESCO,II.1.1,Jujuy,AR-Y,annual,2015,gas oil combustion consumption by to the public,145.38799900799998,TJ,N2O,3.9,kg/TJ,567.0131961312,kg +0e2f9aa2-3b63-327a-b62c-c9003bb2bfd4,SESCO,II.1.1,La Pampa,AR-L,annual,2015,gas oil combustion consumption by to the public,341.56538471999994,TJ,CO2,74100.0,kg/TJ,25309995.007751994,kg +62b8ceb4-a861-3ca2-8de0-79f48bddfbd8,SESCO,II.1.1,La Pampa,AR-L,annual,2015,gas oil combustion consumption by to the public,341.56538471999994,TJ,CH4,3.9,kg/TJ,1332.1050004079998,kg +62b8ceb4-a861-3ca2-8de0-79f48bddfbd8,SESCO,II.1.1,La Pampa,AR-L,annual,2015,gas oil combustion consumption by to the public,341.56538471999994,TJ,N2O,3.9,kg/TJ,1332.1050004079998,kg +e2078492-15cd-3f36-a3af-5bc8359f1f05,SESCO,II.1.1,La Rioja,AR-F,annual,2015,gas oil combustion consumption by to the public,49.602216216,TJ,CO2,74100.0,kg/TJ,3675524.2216056003,kg +ee6a0e0b-4fd2-32cd-8c2c-99f82955b919,SESCO,II.1.1,La Rioja,AR-F,annual,2015,gas oil combustion consumption by to the public,49.602216216,TJ,CH4,3.9,kg/TJ,193.4486432424,kg +ee6a0e0b-4fd2-32cd-8c2c-99f82955b919,SESCO,II.1.1,La Rioja,AR-F,annual,2015,gas oil combustion consumption by to the public,49.602216216,TJ,N2O,3.9,kg/TJ,193.4486432424,kg +6261e4dc-c0b9-3369-9d33-0f9c13576ee5,SESCO,II.1.1,Mendoza,AR-M,annual,2015,gas oil combustion consumption by to the public,443.24309442,TJ,CO2,74100.0,kg/TJ,32844313.296522,kg +3ed786b1-2e94-33ce-a7ba-a2efe9b830ea,SESCO,II.1.1,Mendoza,AR-M,annual,2015,gas oil combustion consumption by to the public,443.24309442,TJ,CH4,3.9,kg/TJ,1728.648068238,kg +3ed786b1-2e94-33ce-a7ba-a2efe9b830ea,SESCO,II.1.1,Mendoza,AR-M,annual,2015,gas oil combustion consumption by to the public,443.24309442,TJ,N2O,3.9,kg/TJ,1728.648068238,kg +a521955e-abc9-37ff-bb58-e24137f1b9bb,SESCO,II.1.1,Misiones,AR-N,annual,2015,gas oil combustion consumption by to the public,707.7066007199999,TJ,CO2,74100.0,kg/TJ,52441059.11335199,kg +05a607a7-735f-3684-917e-bb907e8f5dbb,SESCO,II.1.1,Misiones,AR-N,annual,2015,gas oil combustion consumption by to the public,707.7066007199999,TJ,CH4,3.9,kg/TJ,2760.0557428079996,kg +05a607a7-735f-3684-917e-bb907e8f5dbb,SESCO,II.1.1,Misiones,AR-N,annual,2015,gas oil combustion consumption by to the public,707.7066007199999,TJ,N2O,3.9,kg/TJ,2760.0557428079996,kg +de7666f4-a97a-375d-8f74-8aecda313078,SESCO,II.1.1,Neuquén,AR-Q,annual,2015,gas oil combustion consumption by to the public,153.75257108399998,TJ,CO2,74100.0,kg/TJ,11393065.5173244,kg +5b8f8fd9-4862-3211-9f59-a6f770d08631,SESCO,II.1.1,Neuquén,AR-Q,annual,2015,gas oil combustion consumption by to the public,153.75257108399998,TJ,CH4,3.9,kg/TJ,599.6350272276,kg +5b8f8fd9-4862-3211-9f59-a6f770d08631,SESCO,II.1.1,Neuquén,AR-Q,annual,2015,gas oil combustion consumption by to the public,153.75257108399998,TJ,N2O,3.9,kg/TJ,599.6350272276,kg +a402120a-0bba-35f3-bec8-3f22aea25ec8,SESCO,II.1.1,Rio Negro,AR-R,annual,2015,gas oil combustion consumption by to the public,534.139681236,TJ,CO2,74100.0,kg/TJ,39579750.3795876,kg +d5bf28b6-06c9-3607-b1a7-1ea340b2cc48,SESCO,II.1.1,Rio Negro,AR-R,annual,2015,gas oil combustion consumption by to the public,534.139681236,TJ,CH4,3.9,kg/TJ,2083.1447568204,kg +d5bf28b6-06c9-3607-b1a7-1ea340b2cc48,SESCO,II.1.1,Rio Negro,AR-R,annual,2015,gas oil combustion consumption by to the public,534.139681236,TJ,N2O,3.9,kg/TJ,2083.1447568204,kg +f4e59d3f-1f22-3078-9b6d-504ea420ce01,SESCO,II.1.1,Salta,AR-A,annual,2015,gas oil combustion consumption by to the public,34.556502456,TJ,CO2,74100.0,kg/TJ,2560636.8319896,kg +80ef6559-b6e0-3ecf-9253-2d99a956ff3b,SESCO,II.1.1,Salta,AR-A,annual,2015,gas oil combustion consumption by to the public,34.556502456,TJ,CH4,3.9,kg/TJ,134.7703595784,kg +80ef6559-b6e0-3ecf-9253-2d99a956ff3b,SESCO,II.1.1,Salta,AR-A,annual,2015,gas oil combustion consumption by to the public,34.556502456,TJ,N2O,3.9,kg/TJ,134.7703595784,kg +7a85cc03-188e-33dd-82a9-ee4335a478f0,SESCO,II.1.1,San Juan,AR-J,annual,2015,gas oil combustion consumption by to the public,427.795531212,TJ,CO2,74100.0,kg/TJ,31699648.8628092,kg +fa7da0ac-0ab2-3612-a4a5-2d9809ac19b2,SESCO,II.1.1,San Juan,AR-J,annual,2015,gas oil combustion consumption by to the public,427.795531212,TJ,CH4,3.9,kg/TJ,1668.4025717268,kg +fa7da0ac-0ab2-3612-a4a5-2d9809ac19b2,SESCO,II.1.1,San Juan,AR-J,annual,2015,gas oil combustion consumption by to the public,427.795531212,TJ,N2O,3.9,kg/TJ,1668.4025717268,kg +be9bf70c-7b0d-3c3d-9dec-a80eb19b6a15,SESCO,II.1.1,San Luis,AR-D,annual,2015,gas oil combustion consumption by to the public,914.2562995440001,TJ,CO2,74100.0,kg/TJ,67746391.79621041,kg +4dceb256-d041-392e-b77e-1463382592b8,SESCO,II.1.1,San Luis,AR-D,annual,2015,gas oil combustion consumption by to the public,914.2562995440001,TJ,CH4,3.9,kg/TJ,3565.5995682216003,kg +4dceb256-d041-392e-b77e-1463382592b8,SESCO,II.1.1,San Luis,AR-D,annual,2015,gas oil combustion consumption by to the public,914.2562995440001,TJ,N2O,3.9,kg/TJ,3565.5995682216003,kg +c4ba62a8-2a96-32b2-a0c9-4495bc325932,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2015,gas oil combustion consumption by to the public,250.9485762,TJ,CO2,74100.0,kg/TJ,18595289.49642,kg +661683bb-6c60-3a28-91a7-0c0e65609e68,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2015,gas oil combustion consumption by to the public,250.9485762,TJ,CH4,3.9,kg/TJ,978.69944718,kg +661683bb-6c60-3a28-91a7-0c0e65609e68,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2015,gas oil combustion consumption by to the public,250.9485762,TJ,N2O,3.9,kg/TJ,978.69944718,kg +19e6d827-f515-3ba8-9c97-70ef9eb3a8e3,SESCO,II.1.1,Santa Fe,AR-S,annual,2015,gas oil combustion consumption by to the public,3407.5567653959997,TJ,CO2,74100.0,kg/TJ,252499956.31584358,kg +047cbd32-0160-38a0-adb0-62bb54c94375,SESCO,II.1.1,Santa Fe,AR-S,annual,2015,gas oil combustion consumption by to the public,3407.5567653959997,TJ,CH4,3.9,kg/TJ,13289.471385044399,kg +047cbd32-0160-38a0-adb0-62bb54c94375,SESCO,II.1.1,Santa Fe,AR-S,annual,2015,gas oil combustion consumption by to the public,3407.5567653959997,TJ,N2O,3.9,kg/TJ,13289.471385044399,kg +4a0e7fc9-6a69-3417-bf21-b0de21a4d2af,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2015,gas oil combustion consumption by to the public,392.37780876,TJ,CO2,74100.0,kg/TJ,29075195.629116,kg +fcbb9d54-1149-3bde-8583-7e5ef156bb64,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2015,gas oil combustion consumption by to the public,392.37780876,TJ,CH4,3.9,kg/TJ,1530.273454164,kg +fcbb9d54-1149-3bde-8583-7e5ef156bb64,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2015,gas oil combustion consumption by to the public,392.37780876,TJ,N2O,3.9,kg/TJ,1530.273454164,kg +dccb5788-090f-3db1-87f8-9a59e96c3199,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2015,gas oil combustion consumption by to the public,119.91572712,TJ,CO2,74100.0,kg/TJ,8885755.379592,kg +cdef01f2-ff0e-3d0b-817a-b3ec4befa8a5,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2015,gas oil combustion consumption by to the public,119.91572712,TJ,CH4,3.9,kg/TJ,467.671335768,kg +cdef01f2-ff0e-3d0b-817a-b3ec4befa8a5,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2015,gas oil combustion consumption by to the public,119.91572712,TJ,N2O,3.9,kg/TJ,467.671335768,kg +e7f2ad7f-854c-3962-bfbc-dd1fe142ceea,SESCO,II.1.1,Tucuman,AR-T,annual,2015,gas oil combustion consumption by to the public,153.754218156,TJ,CO2,74100.0,kg/TJ,11393187.5653596,kg +e956502a-76bf-3165-b89f-34173b4bd8d1,SESCO,II.1.1,Tucuman,AR-T,annual,2015,gas oil combustion consumption by to the public,153.754218156,TJ,CH4,3.9,kg/TJ,599.6414508084,kg +e956502a-76bf-3165-b89f-34173b4bd8d1,SESCO,II.1.1,Tucuman,AR-T,annual,2015,gas oil combustion consumption by to the public,153.754218156,TJ,N2O,3.9,kg/TJ,599.6414508084,kg +95ca7e57-cc3a-3eb7-9027-85bc09fba0a2,SESCO,II.1.1,Buenos Aires,AR-B,annual,2015,gas oil combustion consumption by to the public,3155.600867412,TJ,CO2,74100.0,kg/TJ,233830024.2752292,kg +3347afdc-234f-3e0b-8f6e-0b4b273684fd,SESCO,II.1.1,Buenos Aires,AR-B,annual,2015,gas oil combustion consumption by to the public,3155.600867412,TJ,CH4,3.9,kg/TJ,12306.8433829068,kg +3347afdc-234f-3e0b-8f6e-0b4b273684fd,SESCO,II.1.1,Buenos Aires,AR-B,annual,2015,gas oil combustion consumption by to the public,3155.600867412,TJ,N2O,3.9,kg/TJ,12306.8433829068,kg +2a54b453-4f87-3f8f-a9a9-5d61a9e5aba6,SESCO,II.1.1,Capital Federal,AR-C,annual,2015,gas oil combustion consumption by to the public,554.986588464,TJ,CO2,74100.0,kg/TJ,41124506.205182396,kg +531c99a0-18b0-30e6-acdd-76a744045a0e,SESCO,II.1.1,Capital Federal,AR-C,annual,2015,gas oil combustion consumption by to the public,554.986588464,TJ,CH4,3.9,kg/TJ,2164.4476950096,kg +531c99a0-18b0-30e6-acdd-76a744045a0e,SESCO,II.1.1,Capital Federal,AR-C,annual,2015,gas oil combustion consumption by to the public,554.986588464,TJ,N2O,3.9,kg/TJ,2164.4476950096,kg +209e8112-5a3d-311a-9ad5-3e94adbe0b07,SESCO,II.1.1,Catamarca,AR-K,annual,2015,gas oil combustion consumption by to the public,144.268203156,TJ,CO2,74100.0,kg/TJ,10690273.8538596,kg +d52ea226-6663-32ae-8d21-d14ca5db2783,SESCO,II.1.1,Catamarca,AR-K,annual,2015,gas oil combustion consumption by to the public,144.268203156,TJ,CH4,3.9,kg/TJ,562.6459923084,kg +d52ea226-6663-32ae-8d21-d14ca5db2783,SESCO,II.1.1,Catamarca,AR-K,annual,2015,gas oil combustion consumption by to the public,144.268203156,TJ,N2O,3.9,kg/TJ,562.6459923084,kg +5a9f2156-e115-3066-8277-5d17d4c6c02e,SESCO,II.1.1,Chaco,AR-H,annual,2015,gas oil combustion consumption by to the public,87.78974307600001,TJ,CO2,74100.0,kg/TJ,6505219.9619316,kg +b3c472e3-7c6d-3f12-8f56-a0c452235b02,SESCO,II.1.1,Chaco,AR-H,annual,2015,gas oil combustion consumption by to the public,87.78974307600001,TJ,CH4,3.9,kg/TJ,342.37999799640005,kg +b3c472e3-7c6d-3f12-8f56-a0c452235b02,SESCO,II.1.1,Chaco,AR-H,annual,2015,gas oil combustion consumption by to the public,87.78974307600001,TJ,N2O,3.9,kg/TJ,342.37999799640005,kg +7b02bf04-4b25-3913-8b21-da29a2431973,SESCO,II.1.1,Chubut,AR-U,annual,2015,gas oil combustion consumption by to the public,135.919585284,TJ,CO2,74100.0,kg/TJ,10071641.2695444,kg +0495c09f-726c-32fc-9054-7ce37bd3d113,SESCO,II.1.1,Chubut,AR-U,annual,2015,gas oil combustion consumption by to the public,135.919585284,TJ,CH4,3.9,kg/TJ,530.0863826076,kg +0495c09f-726c-32fc-9054-7ce37bd3d113,SESCO,II.1.1,Chubut,AR-U,annual,2015,gas oil combustion consumption by to the public,135.919585284,TJ,N2O,3.9,kg/TJ,530.0863826076,kg +01c1a7b8-92d1-3f90-af4d-c647121bd70d,SESCO,II.1.1,Corrientes,AR-W,annual,2015,gas oil combustion consumption by to the public,141.135898428,TJ,CO2,74100.0,kg/TJ,10458170.073514799,kg +69adb734-5b4e-3f9a-a906-55f8b4b35337,SESCO,II.1.1,Corrientes,AR-W,annual,2015,gas oil combustion consumption by to the public,141.135898428,TJ,CH4,3.9,kg/TJ,550.4300038691999,kg +69adb734-5b4e-3f9a-a906-55f8b4b35337,SESCO,II.1.1,Corrientes,AR-W,annual,2015,gas oil combustion consumption by to the public,141.135898428,TJ,N2O,3.9,kg/TJ,550.4300038691999,kg +14658d9c-24ff-31c4-bda0-91740929ec7e,SESCO,II.1.1,Córdoba,AR-X,annual,2015,gas oil combustion consumption by to the public,890.7192,TJ,CO2,74100.0,kg/TJ,66002292.72,kg +42e5d2b7-c211-3f35-9c99-918e6654899d,SESCO,II.1.1,Córdoba,AR-X,annual,2015,gas oil combustion consumption by to the public,890.7192,TJ,CH4,3.9,kg/TJ,3473.80488,kg +42e5d2b7-c211-3f35-9c99-918e6654899d,SESCO,II.1.1,Córdoba,AR-X,annual,2015,gas oil combustion consumption by to the public,890.7192,TJ,N2O,3.9,kg/TJ,3473.80488,kg +53e5fbf3-1718-3b51-bf61-5aa61b351d8e,SESCO,II.1.1,Entre Rios,AR-E,annual,2015,gas oil combustion consumption by to the public,384.43570703999995,TJ,CO2,74100.0,kg/TJ,28486685.891664,kg +e0e5a965-076d-398d-b466-c3e0b4e2b21f,SESCO,II.1.1,Entre Rios,AR-E,annual,2015,gas oil combustion consumption by to the public,384.43570703999995,TJ,CH4,3.9,kg/TJ,1499.2992574559999,kg +e0e5a965-076d-398d-b466-c3e0b4e2b21f,SESCO,II.1.1,Entre Rios,AR-E,annual,2015,gas oil combustion consumption by to the public,384.43570703999995,TJ,N2O,3.9,kg/TJ,1499.2992574559999,kg +352c034c-587d-305d-a20e-b7237d73bc33,SESCO,II.1.1,Formosa,AR-P,annual,2015,gas oil combustion consumption by to the public,170.50718706,TJ,CO2,74100.0,kg/TJ,12634582.561146,kg +e9ad2dfc-4bfb-3313-98a6-33fd6c5a19d1,SESCO,II.1.1,Formosa,AR-P,annual,2015,gas oil combustion consumption by to the public,170.50718706,TJ,CH4,3.9,kg/TJ,664.978029534,kg +e9ad2dfc-4bfb-3313-98a6-33fd6c5a19d1,SESCO,II.1.1,Formosa,AR-P,annual,2015,gas oil combustion consumption by to the public,170.50718706,TJ,N2O,3.9,kg/TJ,664.978029534,kg +7c9f8454-914e-3c98-bb26-ea538bf2dd93,SESCO,II.1.1,Jujuy,AR-Y,annual,2015,gas oil combustion consumption by to the public,27.337956576000003,TJ,CO2,74100.0,kg/TJ,2025742.5822816002,kg +e30820c3-9d60-3bc2-a64e-06b4296a2aa0,SESCO,II.1.1,Jujuy,AR-Y,annual,2015,gas oil combustion consumption by to the public,27.337956576000003,TJ,CH4,3.9,kg/TJ,106.61803064640002,kg +e30820c3-9d60-3bc2-a64e-06b4296a2aa0,SESCO,II.1.1,Jujuy,AR-Y,annual,2015,gas oil combustion consumption by to the public,27.337956576000003,TJ,N2O,3.9,kg/TJ,106.61803064640002,kg +06e89a13-c8f5-30d2-8db4-727287af8ea9,SESCO,II.1.1,La Pampa,AR-L,annual,2015,gas oil combustion consumption by to the public,101.035077108,TJ,CO2,74100.0,kg/TJ,7486699.2137028,kg +09c25015-0881-34f2-8fc9-e53729f5c71e,SESCO,II.1.1,La Pampa,AR-L,annual,2015,gas oil combustion consumption by to the public,101.035077108,TJ,CH4,3.9,kg/TJ,394.0368007212,kg +09c25015-0881-34f2-8fc9-e53729f5c71e,SESCO,II.1.1,La Pampa,AR-L,annual,2015,gas oil combustion consumption by to the public,101.035077108,TJ,N2O,3.9,kg/TJ,394.0368007212,kg +96375e01-02bf-326f-a590-ced6e2dbd0de,SESCO,II.1.1,La Rioja,AR-F,annual,2015,gas oil combustion consumption by to the public,46.43608872,TJ,CO2,74100.0,kg/TJ,3440914.174152,kg +759bf0c6-1225-3919-b8dc-e4ef8eb831f5,SESCO,II.1.1,La Rioja,AR-F,annual,2015,gas oil combustion consumption by to the public,46.43608872,TJ,CH4,3.9,kg/TJ,181.100746008,kg +759bf0c6-1225-3919-b8dc-e4ef8eb831f5,SESCO,II.1.1,La Rioja,AR-F,annual,2015,gas oil combustion consumption by to the public,46.43608872,TJ,N2O,3.9,kg/TJ,181.100746008,kg +1e5866a9-a7c1-39ca-beb5-e694f1a29463,SESCO,II.1.1,Mendoza,AR-M,annual,2015,gas oil combustion consumption by to the public,197.34377275199998,TJ,CO2,74100.0,kg/TJ,14623173.560923198,kg +30fc4143-ff57-39cf-b823-16435cec63d4,SESCO,II.1.1,Mendoza,AR-M,annual,2015,gas oil combustion consumption by to the public,197.34377275199998,TJ,CH4,3.9,kg/TJ,769.6407137327999,kg +30fc4143-ff57-39cf-b823-16435cec63d4,SESCO,II.1.1,Mendoza,AR-M,annual,2015,gas oil combustion consumption by to the public,197.34377275199998,TJ,N2O,3.9,kg/TJ,769.6407137327999,kg +2e36495b-a169-3edc-b85a-e64b333b7c97,SESCO,II.1.1,Misiones,AR-N,annual,2015,gas oil combustion consumption by to the public,182.349771996,TJ,CO2,74100.0,kg/TJ,13512118.1049036,kg +3a8418ac-fd6f-30b6-80ab-e9d246ce69d4,SESCO,II.1.1,Misiones,AR-N,annual,2015,gas oil combustion consumption by to the public,182.349771996,TJ,CH4,3.9,kg/TJ,711.1641107843999,kg +3a8418ac-fd6f-30b6-80ab-e9d246ce69d4,SESCO,II.1.1,Misiones,AR-N,annual,2015,gas oil combustion consumption by to the public,182.349771996,TJ,N2O,3.9,kg/TJ,711.1641107843999,kg +5e62eed3-579c-30bb-9100-3c7120c7eff3,SESCO,II.1.1,Neuquén,AR-Q,annual,2015,gas oil combustion consumption by to the public,145.449854508,TJ,CO2,74100.0,kg/TJ,10777834.219042799,kg +54ade082-4ad3-3a7f-8f81-a9dccd78da3f,SESCO,II.1.1,Neuquén,AR-Q,annual,2015,gas oil combustion consumption by to the public,145.449854508,TJ,CH4,3.9,kg/TJ,567.2544325811999,kg +54ade082-4ad3-3a7f-8f81-a9dccd78da3f,SESCO,II.1.1,Neuquén,AR-Q,annual,2015,gas oil combustion consumption by to the public,145.449854508,TJ,N2O,3.9,kg/TJ,567.2544325811999,kg +e69774fd-5522-3987-806c-1087bab1e6eb,SESCO,II.1.1,Rio Negro,AR-R,annual,2015,gas oil combustion consumption by to the public,194.16125399999999,TJ,CO2,74100.0,kg/TJ,14387348.9214,kg +cfdbc5d1-5bb7-3693-a1d9-74b145d6c5c3,SESCO,II.1.1,Rio Negro,AR-R,annual,2015,gas oil combustion consumption by to the public,194.16125399999999,TJ,CH4,3.9,kg/TJ,757.2288905999999,kg +cfdbc5d1-5bb7-3693-a1d9-74b145d6c5c3,SESCO,II.1.1,Rio Negro,AR-R,annual,2015,gas oil combustion consumption by to the public,194.16125399999999,TJ,N2O,3.9,kg/TJ,757.2288905999999,kg +16172a9a-72f1-33e9-8744-ba58a63f7e47,SESCO,II.1.1,Salta,AR-A,annual,2015,gas oil combustion consumption by to the public,15.925929263999999,TJ,CO2,74100.0,kg/TJ,1180111.3584623998,kg +a7f56c8f-74ce-387a-84b1-b4eada0a19fb,SESCO,II.1.1,Salta,AR-A,annual,2015,gas oil combustion consumption by to the public,15.925929263999999,TJ,CH4,3.9,kg/TJ,62.11112412959999,kg +a7f56c8f-74ce-387a-84b1-b4eada0a19fb,SESCO,II.1.1,Salta,AR-A,annual,2015,gas oil combustion consumption by to the public,15.925929263999999,TJ,N2O,3.9,kg/TJ,62.11112412959999,kg +2196f806-e36b-34ad-965d-7c7a44640119,SESCO,II.1.1,San Juan,AR-J,annual,2015,gas oil combustion consumption by to the public,92.27364375600001,TJ,CO2,74100.0,kg/TJ,6837477.002319601,kg +3c881f21-33e6-3908-bad1-3397471c5aff,SESCO,II.1.1,San Juan,AR-J,annual,2015,gas oil combustion consumption by to the public,92.27364375600001,TJ,CH4,3.9,kg/TJ,359.86721064840003,kg +3c881f21-33e6-3908-bad1-3397471c5aff,SESCO,II.1.1,San Juan,AR-J,annual,2015,gas oil combustion consumption by to the public,92.27364375600001,TJ,N2O,3.9,kg/TJ,359.86721064840003,kg +bef3cc42-17d2-3975-80d3-294b6c555e40,SESCO,II.1.1,San Luis,AR-D,annual,2015,gas oil combustion consumption by to the public,177.08553483600002,TJ,CO2,74100.0,kg/TJ,13122038.131347602,kg +b6247041-f2fe-3270-9a15-3eab1b3c147a,SESCO,II.1.1,San Luis,AR-D,annual,2015,gas oil combustion consumption by to the public,177.08553483600002,TJ,CH4,3.9,kg/TJ,690.6335858604001,kg +b6247041-f2fe-3270-9a15-3eab1b3c147a,SESCO,II.1.1,San Luis,AR-D,annual,2015,gas oil combustion consumption by to the public,177.08553483600002,TJ,N2O,3.9,kg/TJ,690.6335858604001,kg +89d07be7-d3b6-3d74-9904-bf36f1fe2023,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2015,gas oil combustion consumption by to the public,73.06264383599999,TJ,CO2,74100.0,kg/TJ,5413941.908247599,kg +be2bc1e8-7693-3f31-9a4a-8d117acc23fd,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2015,gas oil combustion consumption by to the public,73.06264383599999,TJ,CH4,3.9,kg/TJ,284.94431096039995,kg +be2bc1e8-7693-3f31-9a4a-8d117acc23fd,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2015,gas oil combustion consumption by to the public,73.06264383599999,TJ,N2O,3.9,kg/TJ,284.94431096039995,kg +2cd29df3-04de-383d-97a3-80f23ee7fb10,SESCO,II.1.1,Santa Fe,AR-S,annual,2015,gas oil combustion consumption by to the public,814.290569484,TJ,CO2,74100.0,kg/TJ,60338931.1987644,kg +3e45f3e4-ed2c-3f2b-9b69-64986618f862,SESCO,II.1.1,Santa Fe,AR-S,annual,2015,gas oil combustion consumption by to the public,814.290569484,TJ,CH4,3.9,kg/TJ,3175.7332209876,kg +3e45f3e4-ed2c-3f2b-9b69-64986618f862,SESCO,II.1.1,Santa Fe,AR-S,annual,2015,gas oil combustion consumption by to the public,814.290569484,TJ,N2O,3.9,kg/TJ,3175.7332209876,kg +281964cf-0bac-3271-9454-f6a0e049e97b,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2015,gas oil combustion consumption by to the public,115.804324776,TJ,CO2,74100.0,kg/TJ,8581100.4659016,kg +e85e28d4-a287-3d7a-98ac-c18696a6d753,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2015,gas oil combustion consumption by to the public,115.804324776,TJ,CH4,3.9,kg/TJ,451.6368666264,kg +e85e28d4-a287-3d7a-98ac-c18696a6d753,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2015,gas oil combustion consumption by to the public,115.804324776,TJ,N2O,3.9,kg/TJ,451.6368666264,kg +035e38ac-e1e5-3e60-aed0-bd9a69cdb4b6,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2015,gas oil combustion consumption by to the public,85.95297606000001,TJ,CO2,74100.0,kg/TJ,6369115.526046,kg +1f62d07a-6bfd-308a-ba55-7074b46cd676,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2015,gas oil combustion consumption by to the public,85.95297606000001,TJ,CH4,3.9,kg/TJ,335.216606634,kg +1f62d07a-6bfd-308a-ba55-7074b46cd676,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2015,gas oil combustion consumption by to the public,85.95297606000001,TJ,N2O,3.9,kg/TJ,335.216606634,kg +386d29ad-962b-3f22-8744-b0ccd5f97d9d,SESCO,II.1.1,Tucuman,AR-T,annual,2015,gas oil combustion consumption by to the public,26.932802148,TJ,CO2,74100.0,kg/TJ,1995720.6391668,kg +5d44ffea-c64d-3811-9946-bd68d60885b2,SESCO,II.1.1,Tucuman,AR-T,annual,2015,gas oil combustion consumption by to the public,26.932802148,TJ,CH4,3.9,kg/TJ,105.0379283772,kg +5d44ffea-c64d-3811-9946-bd68d60885b2,SESCO,II.1.1,Tucuman,AR-T,annual,2015,gas oil combustion consumption by to the public,26.932802148,TJ,N2O,3.9,kg/TJ,105.0379283772,kg +32047fd8-3757-39ce-89d3-ebc75d5c2fa3,SESCO,II.1.1,Buenos Aires,AR-B,annual,2015,jet kerosene combustion consumption by to the public,5.1316135653999995,TJ,CO2,71500.0,kg/TJ,366910.36992609996,kg +12a36820-9094-31b7-922c-9658be21bc50,SESCO,II.1.1,Buenos Aires,AR-B,annual,2015,jet kerosene combustion consumption by to the public,5.1316135653999995,TJ,CH4,0.5,kg/TJ,2.5658067826999997,kg +bb1b53e4-2933-36fe-a2f5-8812d68536fa,SESCO,II.1.1,Buenos Aires,AR-B,annual,2015,jet kerosene combustion consumption by to the public,5.1316135653999995,TJ,N2O,2.0,kg/TJ,10.263227130799999,kg +9eb49eba-3370-3125-a0b2-f5636f5fee99,SESCO,II.1.1,Chubut,AR-U,annual,2015,jet kerosene combustion consumption by to the public,0.157265,TJ,CO2,71500.0,kg/TJ,11244.447499999998,kg +45e1eef7-e193-318b-b4b4-4fc66372becb,SESCO,II.1.1,Chubut,AR-U,annual,2015,jet kerosene combustion consumption by to the public,0.157265,TJ,CH4,0.5,kg/TJ,0.0786325,kg +cb939c91-c935-36dd-902f-bb7bc3a3d9b5,SESCO,II.1.1,Chubut,AR-U,annual,2015,jet kerosene combustion consumption by to the public,0.157265,TJ,N2O,2.0,kg/TJ,0.31453,kg +cb6a74ed-0a50-3ad0-a751-a6170811454b,SESCO,II.1.1,Corrientes,AR-W,annual,2015,jet kerosene combustion consumption by to the public,0.18871799999999997,TJ,CO2,71500.0,kg/TJ,13493.336999999998,kg +ac78e8f6-e5d5-339d-822a-50d99bc79d44,SESCO,II.1.1,Corrientes,AR-W,annual,2015,jet kerosene combustion consumption by to the public,0.18871799999999997,TJ,CH4,0.5,kg/TJ,0.09435899999999998,kg +6f9a812a-7caa-31f1-aff4-4d92ba471a22,SESCO,II.1.1,Corrientes,AR-W,annual,2015,jet kerosene combustion consumption by to the public,0.18871799999999997,TJ,N2O,2.0,kg/TJ,0.37743599999999994,kg +0c308e31-8fc9-364c-94a7-c41eabf1644b,SESCO,II.1.1,Córdoba,AR-X,annual,2015,jet kerosene combustion consumption by to the public,1.8871799999999996,TJ,CO2,71500.0,kg/TJ,134933.36999999997,kg +baeafae9-42f7-33b5-86ff-3b7442e5cc14,SESCO,II.1.1,Córdoba,AR-X,annual,2015,jet kerosene combustion consumption by to the public,1.8871799999999996,TJ,CH4,0.5,kg/TJ,0.9435899999999998,kg +23751ef8-fa6b-30a4-bb32-63b2743e4983,SESCO,II.1.1,Córdoba,AR-X,annual,2015,jet kerosene combustion consumption by to the public,1.8871799999999996,TJ,N2O,2.0,kg/TJ,3.7743599999999993,kg +852f2706-6120-3417-8f6f-17b1c0738e7d,SESCO,II.1.1,Entre Rios,AR-E,annual,2015,jet kerosene combustion consumption by to the public,1.3520575298,TJ,CO2,71500.0,kg/TJ,96672.1133807,kg +d3c1c7e9-e137-3953-aeab-443b6af9a742,SESCO,II.1.1,Entre Rios,AR-E,annual,2015,jet kerosene combustion consumption by to the public,1.3520575298,TJ,CH4,0.5,kg/TJ,0.6760287649,kg +80b0ef53-7ec7-3639-a254-80b77a74e5dc,SESCO,II.1.1,Entre Rios,AR-E,annual,2015,jet kerosene combustion consumption by to the public,1.3520575298,TJ,N2O,2.0,kg/TJ,2.7041150596,kg +6452b081-0b7e-3658-9036-f1c373914a00,SESCO,II.1.1,La Pampa,AR-L,annual,2015,jet kerosene combustion consumption by to the public,0.28307699999999997,TJ,CO2,71500.0,kg/TJ,20240.0055,kg +a3143b42-e344-35c9-9179-6930153cd9fa,SESCO,II.1.1,La Pampa,AR-L,annual,2015,jet kerosene combustion consumption by to the public,0.28307699999999997,TJ,CH4,0.5,kg/TJ,0.14153849999999998,kg +dd1c1f50-04c3-3aa6-8819-a5a19fe438d4,SESCO,II.1.1,La Pampa,AR-L,annual,2015,jet kerosene combustion consumption by to the public,0.28307699999999997,TJ,N2O,2.0,kg/TJ,0.5661539999999999,kg +96e0a3d4-13f0-3ead-9000-bb1d24d1a611,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2015,jet kerosene combustion consumption by to the public,0.5032479999999999,TJ,CO2,71500.0,kg/TJ,35982.231999999996,kg +0e1030bb-3247-3f31-93c3-a83335e82ee5,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2015,jet kerosene combustion consumption by to the public,0.5032479999999999,TJ,CH4,0.5,kg/TJ,0.25162399999999996,kg +8104479c-90ff-3eae-884c-894722c26858,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2015,jet kerosene combustion consumption by to the public,0.5032479999999999,TJ,N2O,2.0,kg/TJ,1.0064959999999998,kg +983b6455-6cf3-3145-bbb5-42e9d1588475,SESCO,II.1.1,Santa Fe,AR-S,annual,2015,jet kerosene combustion consumption by to the public,1.6041029999999998,TJ,CO2,71500.0,kg/TJ,114693.36449999998,kg +efc229ee-e940-35e0-955c-3393be70cb3d,SESCO,II.1.1,Santa Fe,AR-S,annual,2015,jet kerosene combustion consumption by to the public,1.6041029999999998,TJ,CH4,0.5,kg/TJ,0.8020514999999999,kg +147b23f2-e352-3d00-848d-604e478fe289,SESCO,II.1.1,Santa Fe,AR-S,annual,2015,jet kerosene combustion consumption by to the public,1.6041029999999998,TJ,N2O,2.0,kg/TJ,3.2082059999999997,kg +de990a59-bef4-3c1d-85d4-2b601240cc40,SESCO,I.3.1,Buenos Aires,AR-B,annual,2015,gasoline combustion consumption by petrochemical industries,64.7223,TJ,CO2,69300.0,kg/TJ,4485255.390000001,kg +39b3408d-2f9c-3a99-9fc0-97ecb45303d6,SESCO,I.3.1,Buenos Aires,AR-B,annual,2015,gasoline combustion consumption by petrochemical industries,64.7223,TJ,CH4,33.0,kg/TJ,2135.8359,kg +98ceedba-f1e9-3ec4-9db0-5f1c3b4e36d2,SESCO,I.3.1,Buenos Aires,AR-B,annual,2015,gasoline combustion consumption by petrochemical industries,64.7223,TJ,N2O,3.2,kg/TJ,207.11136000000002,kg +c8b46d57-fd2b-3e4a-8891-b729ed3a1939,SESCO,I.3.1,Buenos Aires,AR-B,annual,2015,gas oil combustion consumption by petrochemical industries,1830.59772,TJ,CO2,74100.0,kg/TJ,135647291.052,kg +c867acb8-ef4e-3382-90c2-248882677d2a,SESCO,I.3.1,Buenos Aires,AR-B,annual,2015,gas oil combustion consumption by petrochemical industries,1830.59772,TJ,CH4,3.9,kg/TJ,7139.331107999999,kg +c867acb8-ef4e-3382-90c2-248882677d2a,SESCO,I.3.1,Buenos Aires,AR-B,annual,2015,gas oil combustion consumption by petrochemical industries,1830.59772,TJ,N2O,3.9,kg/TJ,7139.331107999999,kg +60ef1ac7-0388-3535-a7d1-bffe45e00b8f,SESCO,I.3.1,Buenos Aires,AR-B,annual,2015,gas oil combustion consumption by petrochemical industries,116.88432,TJ,CO2,74100.0,kg/TJ,8661128.112,kg +21c39554-53bc-35fc-ac05-5df9d1f36217,SESCO,I.3.1,Buenos Aires,AR-B,annual,2015,gas oil combustion consumption by petrochemical industries,116.88432,TJ,CH4,3.9,kg/TJ,455.848848,kg +21c39554-53bc-35fc-ac05-5df9d1f36217,SESCO,I.3.1,Buenos Aires,AR-B,annual,2015,gas oil combustion consumption by petrochemical industries,116.88432,TJ,N2O,3.9,kg/TJ,455.848848,kg +4fd13449-99c4-39f5-96a5-cb136c369a50,SESCO,I.3.1,Buenos Aires,AR-B,annual,2015,jet kerosene combustion consumption by petrochemical industries,5.850257999999999,TJ,CO2,71500.0,kg/TJ,418293.4469999999,kg +b84c3712-dd67-34e6-9b33-816a5cdea4d6,SESCO,I.3.1,Buenos Aires,AR-B,annual,2015,jet kerosene combustion consumption by petrochemical industries,5.850257999999999,TJ,CH4,0.5,kg/TJ,2.9251289999999996,kg +0bf221b7-ca35-3ff4-baa0-0f72d19ba36a,SESCO,I.3.1,Buenos Aires,AR-B,annual,2015,jet kerosene combustion consumption by petrochemical industries,5.850257999999999,TJ,N2O,2.0,kg/TJ,11.700515999999999,kg +37be43c4-8176-3b0e-9579-257619e1f5e5,SESCO,II.2.1,Córdoba,AR-X,annual,2015,gas oil combustion consumption by railway transport,0.07224,TJ,CO2,74100.0,kg/TJ,5352.9839999999995,kg +e6d994ac-cda9-3133-9b60-8151e401d716,SESCO,II.2.1,Córdoba,AR-X,annual,2015,gas oil combustion consumption by railway transport,0.07224,TJ,CH4,3.9,kg/TJ,0.281736,kg +e6d994ac-cda9-3133-9b60-8151e401d716,SESCO,II.2.1,Córdoba,AR-X,annual,2015,gas oil combustion consumption by railway transport,0.07224,TJ,N2O,3.9,kg/TJ,0.281736,kg +380f8ddf-b831-3f43-b66f-14209617dd30,SESCO,II.2.1,Entre Rios,AR-E,annual,2015,gas oil combustion consumption by railway transport,0.14448,TJ,CO2,74100.0,kg/TJ,10705.967999999999,kg +dccf72ba-6fb8-32ac-a466-11f9b0fcb44c,SESCO,II.2.1,Entre Rios,AR-E,annual,2015,gas oil combustion consumption by railway transport,0.14448,TJ,CH4,3.9,kg/TJ,0.563472,kg +dccf72ba-6fb8-32ac-a466-11f9b0fcb44c,SESCO,II.2.1,Entre Rios,AR-E,annual,2015,gas oil combustion consumption by railway transport,0.14448,TJ,N2O,3.9,kg/TJ,0.563472,kg +ec4fe54a-33a4-313d-97dd-1835e9e69638,SESCO,II.1.1,Buenos Aires,AR-B,annual,2015,gas oil combustion consumption by freight transport,1416.155445768,TJ,CO2,74100.0,kg/TJ,104937118.5314088,kg +ed7c4775-02e8-30ee-bc2a-2125f6d33416,SESCO,II.1.1,Buenos Aires,AR-B,annual,2015,gas oil combustion consumption by freight transport,1416.155445768,TJ,CH4,3.9,kg/TJ,5523.0062384952,kg +ed7c4775-02e8-30ee-bc2a-2125f6d33416,SESCO,II.1.1,Buenos Aires,AR-B,annual,2015,gas oil combustion consumption by freight transport,1416.155445768,TJ,N2O,3.9,kg/TJ,5523.0062384952,kg +c5969ba8-8286-322b-96af-a9b8a9ed6a52,SESCO,II.1.1,Capital Federal,AR-C,annual,2015,gas oil combustion consumption by freight transport,177.612876,TJ,CO2,74100.0,kg/TJ,13161114.1116,kg +1ce6640b-a972-3782-8d0c-1b62c03fc286,SESCO,II.1.1,Capital Federal,AR-C,annual,2015,gas oil combustion consumption by freight transport,177.612876,TJ,CH4,3.9,kg/TJ,692.6902163999999,kg +1ce6640b-a972-3782-8d0c-1b62c03fc286,SESCO,II.1.1,Capital Federal,AR-C,annual,2015,gas oil combustion consumption by freight transport,177.612876,TJ,N2O,3.9,kg/TJ,692.6902163999999,kg +5a4b0d73-54cd-3eb0-aaef-91e1a6462d96,SESCO,II.1.1,Catamarca,AR-K,annual,2015,gas oil combustion consumption by freight transport,38.720639999999996,TJ,CO2,74100.0,kg/TJ,2869199.4239999996,kg +67125f53-f364-3fe3-b7ec-f30c657c65d3,SESCO,II.1.1,Catamarca,AR-K,annual,2015,gas oil combustion consumption by freight transport,38.720639999999996,TJ,CH4,3.9,kg/TJ,151.010496,kg +67125f53-f364-3fe3-b7ec-f30c657c65d3,SESCO,II.1.1,Catamarca,AR-K,annual,2015,gas oil combustion consumption by freight transport,38.720639999999996,TJ,N2O,3.9,kg/TJ,151.010496,kg +4707bcbb-5e01-3e73-ac9b-f21650771f95,SESCO,II.1.1,Chubut,AR-U,annual,2015,gas oil combustion consumption by freight transport,1.58928,TJ,CO2,74100.0,kg/TJ,117765.648,kg +6030dc85-974f-33a8-8a07-ffe998897e43,SESCO,II.1.1,Chubut,AR-U,annual,2015,gas oil combustion consumption by freight transport,1.58928,TJ,CH4,3.9,kg/TJ,6.198192,kg +6030dc85-974f-33a8-8a07-ffe998897e43,SESCO,II.1.1,Chubut,AR-U,annual,2015,gas oil combustion consumption by freight transport,1.58928,TJ,N2O,3.9,kg/TJ,6.198192,kg +b54a4d8e-7ec3-36ad-97c8-5ffe8d3a92a7,SESCO,II.1.1,Corrientes,AR-W,annual,2015,gas oil combustion consumption by freight transport,98.39088,TJ,CO2,74100.0,kg/TJ,7290764.208,kg +45e3fbc7-4fb2-3020-b1f3-d94f93fcfbae,SESCO,II.1.1,Corrientes,AR-W,annual,2015,gas oil combustion consumption by freight transport,98.39088,TJ,CH4,3.9,kg/TJ,383.724432,kg +45e3fbc7-4fb2-3020-b1f3-d94f93fcfbae,SESCO,II.1.1,Corrientes,AR-W,annual,2015,gas oil combustion consumption by freight transport,98.39088,TJ,N2O,3.9,kg/TJ,383.724432,kg +59538005-d4ed-3102-bfd3-cf13f9db6d4f,SESCO,II.1.1,Córdoba,AR-X,annual,2015,gas oil combustion consumption by freight transport,126.6006,TJ,CO2,74100.0,kg/TJ,9381104.46,kg +ea3bc380-22d7-360f-bfbe-e4479dfe00ca,SESCO,II.1.1,Córdoba,AR-X,annual,2015,gas oil combustion consumption by freight transport,126.6006,TJ,CH4,3.9,kg/TJ,493.74234,kg +ea3bc380-22d7-360f-bfbe-e4479dfe00ca,SESCO,II.1.1,Córdoba,AR-X,annual,2015,gas oil combustion consumption by freight transport,126.6006,TJ,N2O,3.9,kg/TJ,493.74234,kg +e02aff79-b181-3812-8f8e-9ee31f0136a1,SESCO,II.1.1,Entre Rios,AR-E,annual,2015,gas oil combustion consumption by freight transport,89.83044,TJ,CO2,74100.0,kg/TJ,6656435.603999999,kg +68348863-e41d-3181-884a-29b7c030e3a9,SESCO,II.1.1,Entre Rios,AR-E,annual,2015,gas oil combustion consumption by freight transport,89.83044,TJ,CH4,3.9,kg/TJ,350.338716,kg +68348863-e41d-3181-884a-29b7c030e3a9,SESCO,II.1.1,Entre Rios,AR-E,annual,2015,gas oil combustion consumption by freight transport,89.83044,TJ,N2O,3.9,kg/TJ,350.338716,kg +fabc7f5d-ccb0-35bf-964e-527bf1fc4d0d,SESCO,II.1.1,Formosa,AR-P,annual,2015,gas oil combustion consumption by freight transport,4.47888,TJ,CO2,74100.0,kg/TJ,331885.00800000003,kg +4a8e33ab-3db1-364b-8856-e667be5954e5,SESCO,II.1.1,Formosa,AR-P,annual,2015,gas oil combustion consumption by freight transport,4.47888,TJ,CH4,3.9,kg/TJ,17.467632000000002,kg +4a8e33ab-3db1-364b-8856-e667be5954e5,SESCO,II.1.1,Formosa,AR-P,annual,2015,gas oil combustion consumption by freight transport,4.47888,TJ,N2O,3.9,kg/TJ,17.467632000000002,kg +1087d05b-0aed-3061-9158-9cecb0e89b85,SESCO,II.1.1,La Pampa,AR-L,annual,2015,gas oil combustion consumption by freight transport,19.721519999999998,TJ,CO2,74100.0,kg/TJ,1461364.6319999998,kg +d87eb64a-f252-3ff8-b893-3789951916d5,SESCO,II.1.1,La Pampa,AR-L,annual,2015,gas oil combustion consumption by freight transport,19.721519999999998,TJ,CH4,3.9,kg/TJ,76.91392799999998,kg +d87eb64a-f252-3ff8-b893-3789951916d5,SESCO,II.1.1,La Pampa,AR-L,annual,2015,gas oil combustion consumption by freight transport,19.721519999999998,TJ,N2O,3.9,kg/TJ,76.91392799999998,kg +15753383-3d82-3222-925e-2b6fe899c208,SESCO,II.1.1,Mendoza,AR-M,annual,2015,gas oil combustion consumption by freight transport,22.82784,TJ,CO2,74100.0,kg/TJ,1691542.944,kg +63eeb02e-ba53-3e1d-8813-bf298c45fef2,SESCO,II.1.1,Mendoza,AR-M,annual,2015,gas oil combustion consumption by freight transport,22.82784,TJ,CH4,3.9,kg/TJ,89.02857599999999,kg +63eeb02e-ba53-3e1d-8813-bf298c45fef2,SESCO,II.1.1,Mendoza,AR-M,annual,2015,gas oil combustion consumption by freight transport,22.82784,TJ,N2O,3.9,kg/TJ,89.02857599999999,kg +52341a90-c811-3f28-b114-b162114262ad,SESCO,II.1.1,Misiones,AR-N,annual,2015,gas oil combustion consumption by freight transport,17.40984,TJ,CO2,74100.0,kg/TJ,1290069.1439999999,kg +41cf6dfc-9ebc-3a18-8fcd-a643470f9002,SESCO,II.1.1,Misiones,AR-N,annual,2015,gas oil combustion consumption by freight transport,17.40984,TJ,CH4,3.9,kg/TJ,67.898376,kg +41cf6dfc-9ebc-3a18-8fcd-a643470f9002,SESCO,II.1.1,Misiones,AR-N,annual,2015,gas oil combustion consumption by freight transport,17.40984,TJ,N2O,3.9,kg/TJ,67.898376,kg +55740a7a-c668-395f-959e-c8e35f4e65ff,SESCO,II.1.1,Rio Negro,AR-R,annual,2015,gas oil combustion consumption by freight transport,71.62595999999999,TJ,CO2,74100.0,kg/TJ,5307483.635999999,kg +c846a224-6648-38a9-8d04-1d39ce0976b1,SESCO,II.1.1,Rio Negro,AR-R,annual,2015,gas oil combustion consumption by freight transport,71.62595999999999,TJ,CH4,3.9,kg/TJ,279.34124399999996,kg +c846a224-6648-38a9-8d04-1d39ce0976b1,SESCO,II.1.1,Rio Negro,AR-R,annual,2015,gas oil combustion consumption by freight transport,71.62595999999999,TJ,N2O,3.9,kg/TJ,279.34124399999996,kg +37a1ce93-86ee-32e9-b3e8-8cef44bd14eb,SESCO,II.1.1,San Juan,AR-J,annual,2015,gas oil combustion consumption by freight transport,23.04456,TJ,CO2,74100.0,kg/TJ,1707601.896,kg +04a2373e-c7be-317c-9f09-09a0a1b56204,SESCO,II.1.1,San Juan,AR-J,annual,2015,gas oil combustion consumption by freight transport,23.04456,TJ,CH4,3.9,kg/TJ,89.873784,kg +04a2373e-c7be-317c-9f09-09a0a1b56204,SESCO,II.1.1,San Juan,AR-J,annual,2015,gas oil combustion consumption by freight transport,23.04456,TJ,N2O,3.9,kg/TJ,89.873784,kg +d3d14057-dd88-3b3f-9abf-49b3a393c82a,SESCO,II.1.1,San Luis,AR-D,annual,2015,gas oil combustion consumption by freight transport,105.2898,TJ,CO2,74100.0,kg/TJ,7801974.18,kg +180d5089-4909-377a-99f9-e053d23d5bc7,SESCO,II.1.1,San Luis,AR-D,annual,2015,gas oil combustion consumption by freight transport,105.2898,TJ,CH4,3.9,kg/TJ,410.63022,kg +180d5089-4909-377a-99f9-e053d23d5bc7,SESCO,II.1.1,San Luis,AR-D,annual,2015,gas oil combustion consumption by freight transport,105.2898,TJ,N2O,3.9,kg/TJ,410.63022,kg +6c87e082-c3b0-33d3-bc78-2a90bdd4f601,SESCO,II.1.1,Santa Fe,AR-S,annual,2015,gas oil combustion consumption by freight transport,690.21708,TJ,CO2,74100.0,kg/TJ,51145085.628,kg +a7da7141-3e6f-3fdf-a636-f2970cab892c,SESCO,II.1.1,Santa Fe,AR-S,annual,2015,gas oil combustion consumption by freight transport,690.21708,TJ,CH4,3.9,kg/TJ,2691.846612,kg +a7da7141-3e6f-3fdf-a636-f2970cab892c,SESCO,II.1.1,Santa Fe,AR-S,annual,2015,gas oil combustion consumption by freight transport,690.21708,TJ,N2O,3.9,kg/TJ,2691.846612,kg +ffc62ae8-46f9-3eea-ab9f-e3d5f3aef805,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2015,gas oil combustion consumption by freight transport,12.20856,TJ,CO2,74100.0,kg/TJ,904654.296,kg +1955350b-c554-3a95-bc68-9d2d5eb7be10,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2015,gas oil combustion consumption by freight transport,12.20856,TJ,CH4,3.9,kg/TJ,47.613384,kg +1955350b-c554-3a95-bc68-9d2d5eb7be10,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2015,gas oil combustion consumption by freight transport,12.20856,TJ,N2O,3.9,kg/TJ,47.613384,kg +af1b120c-2d34-350c-b4ed-6710363d76f5,SESCO,II.1.1,Tucuman,AR-T,annual,2015,gas oil combustion consumption by freight transport,36.58956,TJ,CO2,74100.0,kg/TJ,2711286.3959999997,kg +93601f58-0bbe-3f56-83eb-c79bb22fdcfa,SESCO,II.1.1,Tucuman,AR-T,annual,2015,gas oil combustion consumption by freight transport,36.58956,TJ,CH4,3.9,kg/TJ,142.699284,kg +93601f58-0bbe-3f56-83eb-c79bb22fdcfa,SESCO,II.1.1,Tucuman,AR-T,annual,2015,gas oil combustion consumption by freight transport,36.58956,TJ,N2O,3.9,kg/TJ,142.699284,kg +5ec3918f-7758-345f-98ad-ca01478ee0f3,SESCO,II.1.1,Buenos Aires,AR-B,annual,2015,gas oil combustion consumption by freight transport,54.32448,TJ,CO2,74100.0,kg/TJ,4025443.968,kg +bdbd4e23-a159-3618-9437-e3b4d1dfa6bc,SESCO,II.1.1,Buenos Aires,AR-B,annual,2015,gas oil combustion consumption by freight transport,54.32448,TJ,CH4,3.9,kg/TJ,211.865472,kg +bdbd4e23-a159-3618-9437-e3b4d1dfa6bc,SESCO,II.1.1,Buenos Aires,AR-B,annual,2015,gas oil combustion consumption by freight transport,54.32448,TJ,N2O,3.9,kg/TJ,211.865472,kg +af4cd1b7-292a-36a7-b839-b11cb3e9c11c,SESCO,II.1.1,Capital Federal,AR-C,annual,2015,gas oil combustion consumption by freight transport,24.30876,TJ,CO2,74100.0,kg/TJ,1801279.116,kg +5af90376-5eac-35bd-aaa2-65168972fd0b,SESCO,II.1.1,Capital Federal,AR-C,annual,2015,gas oil combustion consumption by freight transport,24.30876,TJ,CH4,3.9,kg/TJ,94.804164,kg +5af90376-5eac-35bd-aaa2-65168972fd0b,SESCO,II.1.1,Capital Federal,AR-C,annual,2015,gas oil combustion consumption by freight transport,24.30876,TJ,N2O,3.9,kg/TJ,94.804164,kg +addbd6f5-eaee-3654-b113-8290a3d9ea35,SESCO,II.1.1,Catamarca,AR-K,annual,2015,gas oil combustion consumption by freight transport,0.46956,TJ,CO2,74100.0,kg/TJ,34794.396,kg +ad29b53f-5abf-3bda-bd72-72399974dca9,SESCO,II.1.1,Catamarca,AR-K,annual,2015,gas oil combustion consumption by freight transport,0.46956,TJ,CH4,3.9,kg/TJ,1.831284,kg +ad29b53f-5abf-3bda-bd72-72399974dca9,SESCO,II.1.1,Catamarca,AR-K,annual,2015,gas oil combustion consumption by freight transport,0.46956,TJ,N2O,3.9,kg/TJ,1.831284,kg +9b3269e4-b6ae-38d5-b672-810f65029af8,SESCO,II.1.1,Chubut,AR-U,annual,2015,gas oil combustion consumption by freight transport,0.36119999999999997,TJ,CO2,74100.0,kg/TJ,26764.92,kg +6e2da646-499d-3587-acc8-b34e1c18a66e,SESCO,II.1.1,Chubut,AR-U,annual,2015,gas oil combustion consumption by freight transport,0.36119999999999997,TJ,CH4,3.9,kg/TJ,1.40868,kg +6e2da646-499d-3587-acc8-b34e1c18a66e,SESCO,II.1.1,Chubut,AR-U,annual,2015,gas oil combustion consumption by freight transport,0.36119999999999997,TJ,N2O,3.9,kg/TJ,1.40868,kg +bfc55cf8-16e5-38c9-a409-94f70b943b40,SESCO,II.1.1,Corrientes,AR-W,annual,2015,gas oil combustion consumption by freight transport,4.26216,TJ,CO2,74100.0,kg/TJ,315826.056,kg +7b15b13a-7c52-34d0-85ed-b7ca349090ae,SESCO,II.1.1,Corrientes,AR-W,annual,2015,gas oil combustion consumption by freight transport,4.26216,TJ,CH4,3.9,kg/TJ,16.622424,kg +7b15b13a-7c52-34d0-85ed-b7ca349090ae,SESCO,II.1.1,Corrientes,AR-W,annual,2015,gas oil combustion consumption by freight transport,4.26216,TJ,N2O,3.9,kg/TJ,16.622424,kg +f3ddb8d6-09c5-3a1c-b503-dba3e097c536,SESCO,II.1.1,Córdoba,AR-X,annual,2015,gas oil combustion consumption by freight transport,3.5758799999999997,TJ,CO2,74100.0,kg/TJ,264972.708,kg +6897c778-da80-307a-8354-6317ab69c44b,SESCO,II.1.1,Córdoba,AR-X,annual,2015,gas oil combustion consumption by freight transport,3.5758799999999997,TJ,CH4,3.9,kg/TJ,13.945931999999999,kg +6897c778-da80-307a-8354-6317ab69c44b,SESCO,II.1.1,Córdoba,AR-X,annual,2015,gas oil combustion consumption by freight transport,3.5758799999999997,TJ,N2O,3.9,kg/TJ,13.945931999999999,kg +699d24ff-b993-36d0-8fdd-6eb5464b26b2,SESCO,II.1.1,Entre Rios,AR-E,annual,2015,gas oil combustion consumption by freight transport,1.30032,TJ,CO2,74100.0,kg/TJ,96353.712,kg +9333fda9-3e51-3064-96ad-2e04f2a5c3d6,SESCO,II.1.1,Entre Rios,AR-E,annual,2015,gas oil combustion consumption by freight transport,1.30032,TJ,CH4,3.9,kg/TJ,5.071248,kg +9333fda9-3e51-3064-96ad-2e04f2a5c3d6,SESCO,II.1.1,Entre Rios,AR-E,annual,2015,gas oil combustion consumption by freight transport,1.30032,TJ,N2O,3.9,kg/TJ,5.071248,kg +04c78ffd-9cc4-3825-a216-511c3e714d6f,SESCO,II.1.1,La Pampa,AR-L,annual,2015,gas oil combustion consumption by freight transport,0.14448,TJ,CO2,74100.0,kg/TJ,10705.967999999999,kg +eaf5d924-0aba-3011-b07b-f8b117d8562c,SESCO,II.1.1,La Pampa,AR-L,annual,2015,gas oil combustion consumption by freight transport,0.14448,TJ,CH4,3.9,kg/TJ,0.563472,kg +eaf5d924-0aba-3011-b07b-f8b117d8562c,SESCO,II.1.1,La Pampa,AR-L,annual,2015,gas oil combustion consumption by freight transport,0.14448,TJ,N2O,3.9,kg/TJ,0.563472,kg +2cc10979-2c35-30a8-bd88-00c0de5c5fc8,SESCO,II.1.1,Misiones,AR-N,annual,2015,gas oil combustion consumption by freight transport,0.43344,TJ,CO2,74100.0,kg/TJ,32117.904,kg +61ace39c-b50a-3065-9b0f-716f3b6b4a38,SESCO,II.1.1,Misiones,AR-N,annual,2015,gas oil combustion consumption by freight transport,0.43344,TJ,CH4,3.9,kg/TJ,1.690416,kg +61ace39c-b50a-3065-9b0f-716f3b6b4a38,SESCO,II.1.1,Misiones,AR-N,annual,2015,gas oil combustion consumption by freight transport,0.43344,TJ,N2O,3.9,kg/TJ,1.690416,kg +33776a0d-18f2-335e-aa2a-352b36b04606,SESCO,II.1.1,Rio Negro,AR-R,annual,2015,gas oil combustion consumption by freight transport,0.14448,TJ,CO2,74100.0,kg/TJ,10705.967999999999,kg +36805139-87cb-360d-b97a-c8c62b5b659b,SESCO,II.1.1,Rio Negro,AR-R,annual,2015,gas oil combustion consumption by freight transport,0.14448,TJ,CH4,3.9,kg/TJ,0.563472,kg +36805139-87cb-360d-b97a-c8c62b5b659b,SESCO,II.1.1,Rio Negro,AR-R,annual,2015,gas oil combustion consumption by freight transport,0.14448,TJ,N2O,3.9,kg/TJ,0.563472,kg +3eee0545-483d-3dac-a0b8-66b4b1fe7a69,SESCO,II.1.1,San Juan,AR-J,annual,2015,gas oil combustion consumption by freight transport,0.28896,TJ,CO2,74100.0,kg/TJ,21411.935999999998,kg +d20d4978-b2fd-3ed2-8356-1883363b7bce,SESCO,II.1.1,San Juan,AR-J,annual,2015,gas oil combustion consumption by freight transport,0.28896,TJ,CH4,3.9,kg/TJ,1.126944,kg +d20d4978-b2fd-3ed2-8356-1883363b7bce,SESCO,II.1.1,San Juan,AR-J,annual,2015,gas oil combustion consumption by freight transport,0.28896,TJ,N2O,3.9,kg/TJ,1.126944,kg +d1a627b5-9e09-3e53-a6ad-dea571646ce9,SESCO,II.1.1,San Luis,AR-D,annual,2015,gas oil combustion consumption by freight transport,0.03612,TJ,CO2,74100.0,kg/TJ,2676.4919999999997,kg +c6a9bf1d-3e70-3e85-a609-9e2f1e66173d,SESCO,II.1.1,San Luis,AR-D,annual,2015,gas oil combustion consumption by freight transport,0.03612,TJ,CH4,3.9,kg/TJ,0.140868,kg +c6a9bf1d-3e70-3e85-a609-9e2f1e66173d,SESCO,II.1.1,San Luis,AR-D,annual,2015,gas oil combustion consumption by freight transport,0.03612,TJ,N2O,3.9,kg/TJ,0.140868,kg +e7b2a92c-bb47-3548-b49f-5d8cb518f0bb,SESCO,II.1.1,Santa Fe,AR-S,annual,2015,gas oil combustion consumption by freight transport,5.49024,TJ,CO2,74100.0,kg/TJ,406826.784,kg +7fed4078-8cc1-3649-9f4c-51ed669b212e,SESCO,II.1.1,Santa Fe,AR-S,annual,2015,gas oil combustion consumption by freight transport,5.49024,TJ,CH4,3.9,kg/TJ,21.411936,kg +7fed4078-8cc1-3649-9f4c-51ed669b212e,SESCO,II.1.1,Santa Fe,AR-S,annual,2015,gas oil combustion consumption by freight transport,5.49024,TJ,N2O,3.9,kg/TJ,21.411936,kg +e7d7bd7e-52eb-370a-aa42-c7551a78080a,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2015,gas oil combustion consumption by freight transport,0.68628,TJ,CO2,74100.0,kg/TJ,50853.348,kg +1bb66a92-70f7-37ac-923c-f327035de06c,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2015,gas oil combustion consumption by freight transport,0.68628,TJ,CH4,3.9,kg/TJ,2.676492,kg +1bb66a92-70f7-37ac-923c-f327035de06c,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2015,gas oil combustion consumption by freight transport,0.68628,TJ,N2O,3.9,kg/TJ,2.676492,kg +1ba2bc5e-ae0f-3026-b6ff-3c033e267978,SESCO,II.1.1,Tucuman,AR-T,annual,2015,gas oil combustion consumption by freight transport,1.0836,TJ,CO2,74100.0,kg/TJ,80294.76,kg +a9453276-3661-336d-8733-d6f7a1f56ca7,SESCO,II.1.1,Tucuman,AR-T,annual,2015,gas oil combustion consumption by freight transport,1.0836,TJ,CH4,3.9,kg/TJ,4.226039999999999,kg +a9453276-3661-336d-8733-d6f7a1f56ca7,SESCO,II.1.1,Tucuman,AR-T,annual,2015,gas oil combustion consumption by freight transport,1.0836,TJ,N2O,3.9,kg/TJ,4.226039999999999,kg +4a7e5556-df8e-3b09-b9ef-6f6314bba381,SESCO,II.1.1,Buenos Aires,AR-B,annual,2015,jet kerosene combustion consumption by freight transport,0.9435899999999998,TJ,CO2,71500.0,kg/TJ,67466.68499999998,kg +13b94e1e-3b3b-3975-a275-076ee6d49989,SESCO,II.1.1,Buenos Aires,AR-B,annual,2015,jet kerosene combustion consumption by freight transport,0.9435899999999998,TJ,CH4,0.5,kg/TJ,0.4717949999999999,kg +28b0b48c-382a-3f01-a590-79c3a70510f4,SESCO,II.1.1,Buenos Aires,AR-B,annual,2015,jet kerosene combustion consumption by freight transport,0.9435899999999998,TJ,N2O,2.0,kg/TJ,1.8871799999999996,kg +1bf68087-bc2a-3734-af06-30741085dc15,SESCO,II.1.1,Buenos Aires,AR-B,annual,2015,gas oil combustion consumption by public passenger transport,2647.74048,TJ,CO2,74100.0,kg/TJ,196197569.568,kg +32a28254-bddd-36c0-ab5d-70575294c74c,SESCO,II.1.1,Buenos Aires,AR-B,annual,2015,gas oil combustion consumption by public passenger transport,2647.74048,TJ,CH4,3.9,kg/TJ,10326.187871999999,kg +32a28254-bddd-36c0-ab5d-70575294c74c,SESCO,II.1.1,Buenos Aires,AR-B,annual,2015,gas oil combustion consumption by public passenger transport,2647.74048,TJ,N2O,3.9,kg/TJ,10326.187871999999,kg +b1f79d05-db5e-3458-b0d7-625b3627f03b,SESCO,II.1.1,Capital Federal,AR-C,annual,2015,gas oil combustion consumption by public passenger transport,501.12241452,TJ,CO2,74100.0,kg/TJ,37133170.915932,kg +341a4010-84b3-3345-a527-977cba23646f,SESCO,II.1.1,Capital Federal,AR-C,annual,2015,gas oil combustion consumption by public passenger transport,501.12241452,TJ,CH4,3.9,kg/TJ,1954.377416628,kg +341a4010-84b3-3345-a527-977cba23646f,SESCO,II.1.1,Capital Federal,AR-C,annual,2015,gas oil combustion consumption by public passenger transport,501.12241452,TJ,N2O,3.9,kg/TJ,1954.377416628,kg +b9978beb-db3a-3942-bf60-40a779aaa013,SESCO,II.1.1,Catamarca,AR-K,annual,2015,gas oil combustion consumption by public passenger transport,0.5418,TJ,CO2,74100.0,kg/TJ,40147.38,kg +ba4527a4-c8a1-3e7e-8d20-bd1ccde7dc1e,SESCO,II.1.1,Catamarca,AR-K,annual,2015,gas oil combustion consumption by public passenger transport,0.5418,TJ,CH4,3.9,kg/TJ,2.1130199999999997,kg +ba4527a4-c8a1-3e7e-8d20-bd1ccde7dc1e,SESCO,II.1.1,Catamarca,AR-K,annual,2015,gas oil combustion consumption by public passenger transport,0.5418,TJ,N2O,3.9,kg/TJ,2.1130199999999997,kg +6eb69363-5776-349a-a5c0-93fce0ec9fe5,SESCO,II.1.1,Chubut,AR-U,annual,2015,gas oil combustion consumption by public passenger transport,11.29468788,TJ,CO2,74100.0,kg/TJ,836936.371908,kg +2e4949a0-0887-31ae-b8f6-43654db39c09,SESCO,II.1.1,Chubut,AR-U,annual,2015,gas oil combustion consumption by public passenger transport,11.29468788,TJ,CH4,3.9,kg/TJ,44.049282731999995,kg +2e4949a0-0887-31ae-b8f6-43654db39c09,SESCO,II.1.1,Chubut,AR-U,annual,2015,gas oil combustion consumption by public passenger transport,11.29468788,TJ,N2O,3.9,kg/TJ,44.049282731999995,kg +2ba8a317-c81d-305d-81f6-bbe89e069275,SESCO,II.1.1,Corrientes,AR-W,annual,2015,gas oil combustion consumption by public passenger transport,0.65016,TJ,CO2,74100.0,kg/TJ,48176.856,kg +ab969a44-ed61-369c-a191-19805cd98dbe,SESCO,II.1.1,Corrientes,AR-W,annual,2015,gas oil combustion consumption by public passenger transport,0.65016,TJ,CH4,3.9,kg/TJ,2.535624,kg +ab969a44-ed61-369c-a191-19805cd98dbe,SESCO,II.1.1,Corrientes,AR-W,annual,2015,gas oil combustion consumption by public passenger transport,0.65016,TJ,N2O,3.9,kg/TJ,2.535624,kg +914ab449-f90a-3bbe-8f2c-1079e690295b,SESCO,II.1.1,Córdoba,AR-X,annual,2015,gas oil combustion consumption by public passenger transport,105.10930836,TJ,CO2,74100.0,kg/TJ,7788599.749476,kg +5edc1763-babc-364f-9725-97fcebbd9735,SESCO,II.1.1,Córdoba,AR-X,annual,2015,gas oil combustion consumption by public passenger transport,105.10930836,TJ,CH4,3.9,kg/TJ,409.926302604,kg +5edc1763-babc-364f-9725-97fcebbd9735,SESCO,II.1.1,Córdoba,AR-X,annual,2015,gas oil combustion consumption by public passenger transport,105.10930836,TJ,N2O,3.9,kg/TJ,409.926302604,kg +86dec258-1790-36b5-a415-12293af6b60d,SESCO,II.1.1,Entre Rios,AR-E,annual,2015,gas oil combustion consumption by public passenger transport,68.22468408,TJ,CO2,74100.0,kg/TJ,5055449.0903280005,kg +85c007c9-8325-3fda-a15d-f64cad2db276,SESCO,II.1.1,Entre Rios,AR-E,annual,2015,gas oil combustion consumption by public passenger transport,68.22468408,TJ,CH4,3.9,kg/TJ,266.076267912,kg +85c007c9-8325-3fda-a15d-f64cad2db276,SESCO,II.1.1,Entre Rios,AR-E,annual,2015,gas oil combustion consumption by public passenger transport,68.22468408,TJ,N2O,3.9,kg/TJ,266.076267912,kg +2414251f-b129-33ed-999e-1e583acfab98,SESCO,II.1.1,Formosa,AR-P,annual,2015,gas oil combustion consumption by public passenger transport,0.50568,TJ,CO2,74100.0,kg/TJ,37470.888,kg +0ab8a1ee-c755-3d6f-b804-eed5a6e78006,SESCO,II.1.1,Formosa,AR-P,annual,2015,gas oil combustion consumption by public passenger transport,0.50568,TJ,CH4,3.9,kg/TJ,1.9721520000000001,kg +0ab8a1ee-c755-3d6f-b804-eed5a6e78006,SESCO,II.1.1,Formosa,AR-P,annual,2015,gas oil combustion consumption by public passenger transport,0.50568,TJ,N2O,3.9,kg/TJ,1.9721520000000001,kg +6ec28570-120b-3e7d-9e1b-4d7168b4eb68,SESCO,II.1.1,La Pampa,AR-L,annual,2015,gas oil combustion consumption by public passenger transport,1.19196,TJ,CO2,74100.0,kg/TJ,88324.23599999999,kg +9b292f88-ac74-38cf-ab26-bf28ba3b5511,SESCO,II.1.1,La Pampa,AR-L,annual,2015,gas oil combustion consumption by public passenger transport,1.19196,TJ,CH4,3.9,kg/TJ,4.648643999999999,kg +9b292f88-ac74-38cf-ab26-bf28ba3b5511,SESCO,II.1.1,La Pampa,AR-L,annual,2015,gas oil combustion consumption by public passenger transport,1.19196,TJ,N2O,3.9,kg/TJ,4.648643999999999,kg +86c92e06-059c-3e42-9387-071565a595bb,SESCO,II.1.1,Mendoza,AR-M,annual,2015,gas oil combustion consumption by public passenger transport,1.19196,TJ,CO2,74100.0,kg/TJ,88324.23599999999,kg +a0568891-5f36-3c91-a71f-36ed431a340b,SESCO,II.1.1,Mendoza,AR-M,annual,2015,gas oil combustion consumption by public passenger transport,1.19196,TJ,CH4,3.9,kg/TJ,4.648643999999999,kg +a0568891-5f36-3c91-a71f-36ed431a340b,SESCO,II.1.1,Mendoza,AR-M,annual,2015,gas oil combustion consumption by public passenger transport,1.19196,TJ,N2O,3.9,kg/TJ,4.648643999999999,kg +84dee5fa-056a-37fe-8b95-4ce2cd9c2738,SESCO,II.1.1,Misiones,AR-N,annual,2015,gas oil combustion consumption by public passenger transport,0.68628,TJ,CO2,74100.0,kg/TJ,50853.348,kg +9dcdd8b7-4f24-3db8-954a-386b0e69ccde,SESCO,II.1.1,Misiones,AR-N,annual,2015,gas oil combustion consumption by public passenger transport,0.68628,TJ,CH4,3.9,kg/TJ,2.676492,kg +9dcdd8b7-4f24-3db8-954a-386b0e69ccde,SESCO,II.1.1,Misiones,AR-N,annual,2015,gas oil combustion consumption by public passenger transport,0.68628,TJ,N2O,3.9,kg/TJ,2.676492,kg +bbe530dc-85a6-3b89-aa50-b53300229a78,SESCO,II.1.1,Rio Negro,AR-R,annual,2015,gas oil combustion consumption by public passenger transport,55.10225196,TJ,CO2,74100.0,kg/TJ,4083076.8702359996,kg +9ada7076-3e68-356f-a341-f648ba62b883,SESCO,II.1.1,Rio Negro,AR-R,annual,2015,gas oil combustion consumption by public passenger transport,55.10225196,TJ,CH4,3.9,kg/TJ,214.898782644,kg +9ada7076-3e68-356f-a341-f648ba62b883,SESCO,II.1.1,Rio Negro,AR-R,annual,2015,gas oil combustion consumption by public passenger transport,55.10225196,TJ,N2O,3.9,kg/TJ,214.898782644,kg +fb471af3-2bb2-3a62-a9c8-e2d443a41095,SESCO,II.1.1,San Juan,AR-J,annual,2015,gas oil combustion consumption by public passenger transport,0.10836,TJ,CO2,74100.0,kg/TJ,8029.476,kg +bf6e68db-cf87-3c85-9c4c-f9585f4dd4c2,SESCO,II.1.1,San Juan,AR-J,annual,2015,gas oil combustion consumption by public passenger transport,0.10836,TJ,CH4,3.9,kg/TJ,0.422604,kg +bf6e68db-cf87-3c85-9c4c-f9585f4dd4c2,SESCO,II.1.1,San Juan,AR-J,annual,2015,gas oil combustion consumption by public passenger transport,0.10836,TJ,N2O,3.9,kg/TJ,0.422604,kg +72d043a2-68e2-365f-8cc4-12717010f16b,SESCO,II.1.1,San Luis,AR-D,annual,2015,gas oil combustion consumption by public passenger transport,0.28896,TJ,CO2,74100.0,kg/TJ,21411.935999999998,kg +082f2789-22a0-35e4-b33b-02c355e293fe,SESCO,II.1.1,San Luis,AR-D,annual,2015,gas oil combustion consumption by public passenger transport,0.28896,TJ,CH4,3.9,kg/TJ,1.126944,kg +082f2789-22a0-35e4-b33b-02c355e293fe,SESCO,II.1.1,San Luis,AR-D,annual,2015,gas oil combustion consumption by public passenger transport,0.28896,TJ,N2O,3.9,kg/TJ,1.126944,kg +1b061d8d-2107-3846-86e0-c2620d0cf4c7,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2015,gas oil combustion consumption by public passenger transport,1.33644,TJ,CO2,74100.0,kg/TJ,99030.20400000001,kg +1caaa6e4-9010-38e3-8ca8-86c62229341f,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2015,gas oil combustion consumption by public passenger transport,1.33644,TJ,CH4,3.9,kg/TJ,5.212116,kg +1caaa6e4-9010-38e3-8ca8-86c62229341f,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2015,gas oil combustion consumption by public passenger transport,1.33644,TJ,N2O,3.9,kg/TJ,5.212116,kg +4cab21bc-993c-3e05-b935-96a5d368d470,SESCO,II.1.1,Santa Fe,AR-S,annual,2015,gas oil combustion consumption by public passenger transport,24.483039,TJ,CO2,74100.0,kg/TJ,1814193.1899,kg +e1267c08-1376-3dec-9abf-43e450dbba17,SESCO,II.1.1,Santa Fe,AR-S,annual,2015,gas oil combustion consumption by public passenger transport,24.483039,TJ,CH4,3.9,kg/TJ,95.48385210000001,kg +e1267c08-1376-3dec-9abf-43e450dbba17,SESCO,II.1.1,Santa Fe,AR-S,annual,2015,gas oil combustion consumption by public passenger transport,24.483039,TJ,N2O,3.9,kg/TJ,95.48385210000001,kg +89f99194-aab6-37c4-add6-863a428bf31a,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2015,gas oil combustion consumption by public passenger transport,1.04748,TJ,CO2,74100.0,kg/TJ,77618.268,kg +9cba0d8e-cd23-3eb7-9dd6-8cc9c9ad1f4f,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2015,gas oil combustion consumption by public passenger transport,1.04748,TJ,CH4,3.9,kg/TJ,4.085172,kg +9cba0d8e-cd23-3eb7-9dd6-8cc9c9ad1f4f,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2015,gas oil combustion consumption by public passenger transport,1.04748,TJ,N2O,3.9,kg/TJ,4.085172,kg +cef426be-5a9d-3bf8-ab91-89be40b0fdba,SESCO,II.1.1,Buenos Aires,AR-B,annual,2015,gas oil combustion consumption by public passenger transport,2.709,TJ,CO2,74100.0,kg/TJ,200736.9,kg +3a0a7fab-e268-39e6-a956-3e05fd289bd5,SESCO,II.1.1,Buenos Aires,AR-B,annual,2015,gas oil combustion consumption by public passenger transport,2.709,TJ,CH4,3.9,kg/TJ,10.5651,kg +3a0a7fab-e268-39e6-a956-3e05fd289bd5,SESCO,II.1.1,Buenos Aires,AR-B,annual,2015,gas oil combustion consumption by public passenger transport,2.709,TJ,N2O,3.9,kg/TJ,10.5651,kg +89f98616-6ba2-3e3f-9d78-731641893eb4,SESCO,II.1.1,Capital Federal,AR-C,annual,2015,gas oil combustion consumption by public passenger transport,1.58928,TJ,CO2,74100.0,kg/TJ,117765.648,kg +527f8061-3fa3-3e7d-a248-2011e759d3c6,SESCO,II.1.1,Capital Federal,AR-C,annual,2015,gas oil combustion consumption by public passenger transport,1.58928,TJ,CH4,3.9,kg/TJ,6.198192,kg +527f8061-3fa3-3e7d-a248-2011e759d3c6,SESCO,II.1.1,Capital Federal,AR-C,annual,2015,gas oil combustion consumption by public passenger transport,1.58928,TJ,N2O,3.9,kg/TJ,6.198192,kg +0018d26a-3f3a-3ed0-a113-24f50a4bca7b,SESCO,II.1.1,Chubut,AR-U,annual,2015,gas oil combustion consumption by public passenger transport,0.03612,TJ,CO2,74100.0,kg/TJ,2676.4919999999997,kg +c935cdd5-ed88-35ce-8d68-c14891c9caad,SESCO,II.1.1,Chubut,AR-U,annual,2015,gas oil combustion consumption by public passenger transport,0.03612,TJ,CH4,3.9,kg/TJ,0.140868,kg +c935cdd5-ed88-35ce-8d68-c14891c9caad,SESCO,II.1.1,Chubut,AR-U,annual,2015,gas oil combustion consumption by public passenger transport,0.03612,TJ,N2O,3.9,kg/TJ,0.140868,kg +28809476-dab0-3901-b5ea-abb4c3766011,SESCO,II.1.1,Córdoba,AR-X,annual,2015,gas oil combustion consumption by public passenger transport,0.25284,TJ,CO2,74100.0,kg/TJ,18735.444,kg +a2f8dee5-ff9c-39ca-9c73-9ed6d3c5abfb,SESCO,II.1.1,Córdoba,AR-X,annual,2015,gas oil combustion consumption by public passenger transport,0.25284,TJ,CH4,3.9,kg/TJ,0.9860760000000001,kg +a2f8dee5-ff9c-39ca-9c73-9ed6d3c5abfb,SESCO,II.1.1,Córdoba,AR-X,annual,2015,gas oil combustion consumption by public passenger transport,0.25284,TJ,N2O,3.9,kg/TJ,0.9860760000000001,kg +83603ce7-9f88-3e83-ad2a-7abd7389dfcf,SESCO,II.1.1,Rio Negro,AR-R,annual,2015,gas oil combustion consumption by public passenger transport,1.04748,TJ,CO2,74100.0,kg/TJ,77618.268,kg +b3cdb47e-51ee-3e55-a68f-15c68e5bc468,SESCO,II.1.1,Rio Negro,AR-R,annual,2015,gas oil combustion consumption by public passenger transport,1.04748,TJ,CH4,3.9,kg/TJ,4.085172,kg +b3cdb47e-51ee-3e55-a68f-15c68e5bc468,SESCO,II.1.1,Rio Negro,AR-R,annual,2015,gas oil combustion consumption by public passenger transport,1.04748,TJ,N2O,3.9,kg/TJ,4.085172,kg +1e03caf0-d720-3e35-9bb5-b1240d7df42c,SESCO,II.1.1,Santa Fe,AR-S,annual,2015,gas oil combustion consumption by public passenger transport,0.32508,TJ,CO2,74100.0,kg/TJ,24088.428,kg +bfb25bab-0ca7-3cd4-8471-f064ca1128ff,SESCO,II.1.1,Santa Fe,AR-S,annual,2015,gas oil combustion consumption by public passenger transport,0.32508,TJ,CH4,3.9,kg/TJ,1.267812,kg +bfb25bab-0ca7-3cd4-8471-f064ca1128ff,SESCO,II.1.1,Santa Fe,AR-S,annual,2015,gas oil combustion consumption by public passenger transport,0.32508,TJ,N2O,3.9,kg/TJ,1.267812,kg +02b10c80-f015-39cb-aa5e-0fa5fb8fab17,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2015,gas oil combustion consumption by public passenger transport,0.07224,TJ,CO2,74100.0,kg/TJ,5352.9839999999995,kg +e5567771-8320-33a5-9f80-456ff2ef92f1,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2015,gas oil combustion consumption by public passenger transport,0.07224,TJ,CH4,3.9,kg/TJ,0.281736,kg +e5567771-8320-33a5-9f80-456ff2ef92f1,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2015,gas oil combustion consumption by public passenger transport,0.07224,TJ,N2O,3.9,kg/TJ,0.281736,kg +d81e7146-bedf-3a92-ac37-6962db108bb5,SESCO,II.1.1,Buenos Aires,AR-B,annual,2015,jet kerosene combustion consumption by public passenger transport,6.510770999999999,TJ,CO2,71500.0,kg/TJ,465520.12649999995,kg +88e45efd-212a-37f5-a8d9-834416aad79f,SESCO,II.1.1,Buenos Aires,AR-B,annual,2015,jet kerosene combustion consumption by public passenger transport,6.510770999999999,TJ,CH4,0.5,kg/TJ,3.2553854999999996,kg +f9ccd047-5f9b-309d-96e7-7e6f30e9db2b,SESCO,II.1.1,Buenos Aires,AR-B,annual,2015,jet kerosene combustion consumption by public passenger transport,6.510770999999999,TJ,N2O,2.0,kg/TJ,13.021541999999998,kg +2d0c105b-5f5a-3ee2-8d7d-e9f012406e89,SESCO,II.1.1,Chubut,AR-U,annual,2015,gas oil combustion consumption by freight transport,0.6472704,TJ,CO2,74100.0,kg/TJ,47962.73664,kg +45816fed-1f8d-3b12-b8ec-37cd2bc1c26f,SESCO,II.1.1,Chubut,AR-U,annual,2015,gas oil combustion consumption by freight transport,0.6472704,TJ,CH4,3.9,kg/TJ,2.52435456,kg +45816fed-1f8d-3b12-b8ec-37cd2bc1c26f,SESCO,II.1.1,Chubut,AR-U,annual,2015,gas oil combustion consumption by freight transport,0.6472704,TJ,N2O,3.9,kg/TJ,2.52435456,kg +1340f39a-24dd-3ddf-8d84-d628ad9a534b,SESCO,II.1.1,Chubut,AR-U,annual,2015,gas oil combustion consumption by freight transport,0.72250836,TJ,CO2,74100.0,kg/TJ,53537.869476,kg +a684e5f3-0578-3e8a-b1a3-1cd93ca77531,SESCO,II.1.1,Chubut,AR-U,annual,2015,gas oil combustion consumption by freight transport,0.72250836,TJ,CH4,3.9,kg/TJ,2.8177826039999996,kg +a684e5f3-0578-3e8a-b1a3-1cd93ca77531,SESCO,II.1.1,Chubut,AR-U,annual,2015,gas oil combustion consumption by freight transport,0.72250836,TJ,N2O,3.9,kg/TJ,2.8177826039999996,kg +74749242-9e49-3d76-a7d2-4cfe0bbdf5fe,SESCO,II.5.1,Buenos Aires,AR-B,annual,2015,gas oil combustion consumption by agriculture machines,399.507784788,TJ,CO2,74100.0,kg/TJ,29603526.8527908,kg +13005a9b-289a-3202-8629-45267189378e,SESCO,II.5.1,Buenos Aires,AR-B,annual,2015,gas oil combustion consumption by agriculture machines,399.507784788,TJ,CH4,3.9,kg/TJ,1558.0803606732,kg +13005a9b-289a-3202-8629-45267189378e,SESCO,II.5.1,Buenos Aires,AR-B,annual,2015,gas oil combustion consumption by agriculture machines,399.507784788,TJ,N2O,3.9,kg/TJ,1558.0803606732,kg +577f2d78-7ffd-3e47-a1e3-ffb474aabc96,SESCO,II.5.1,Córdoba,AR-X,annual,2015,gas oil combustion consumption by agriculture machines,557.551115688,TJ,CO2,74100.0,kg/TJ,41314537.6724808,kg +f193c50a-23da-389d-909a-4b3147c7769a,SESCO,II.5.1,Córdoba,AR-X,annual,2015,gas oil combustion consumption by agriculture machines,557.551115688,TJ,CH4,3.9,kg/TJ,2174.4493511831997,kg +f193c50a-23da-389d-909a-4b3147c7769a,SESCO,II.5.1,Córdoba,AR-X,annual,2015,gas oil combustion consumption by agriculture machines,557.551115688,TJ,N2O,3.9,kg/TJ,2174.4493511831997,kg +dc2c7474-d658-3186-a7c9-62a18177c8a2,SESCO,II.5.1,Entre Rios,AR-E,annual,2015,gas oil combustion consumption by agriculture machines,394.85030583599996,TJ,CO2,74100.0,kg/TJ,29258407.662447598,kg +a200201d-67cd-31a2-8c5b-3d7c82d245df,SESCO,II.5.1,Entre Rios,AR-E,annual,2015,gas oil combustion consumption by agriculture machines,394.85030583599996,TJ,CH4,3.9,kg/TJ,1539.9161927603998,kg +a200201d-67cd-31a2-8c5b-3d7c82d245df,SESCO,II.5.1,Entre Rios,AR-E,annual,2015,gas oil combustion consumption by agriculture machines,394.85030583599996,TJ,N2O,3.9,kg/TJ,1539.9161927603998,kg +a970b4cd-b604-30c8-b92f-0a46274a6c9e,SESCO,II.5.1,La Pampa,AR-L,annual,2015,gas oil combustion consumption by agriculture machines,80.77418798400001,TJ,CO2,74100.0,kg/TJ,5985367.329614401,kg +c38d99df-004e-3e22-a109-59bb1c6adc50,SESCO,II.5.1,La Pampa,AR-L,annual,2015,gas oil combustion consumption by agriculture machines,80.77418798400001,TJ,CH4,3.9,kg/TJ,315.01933313760003,kg +c38d99df-004e-3e22-a109-59bb1c6adc50,SESCO,II.5.1,La Pampa,AR-L,annual,2015,gas oil combustion consumption by agriculture machines,80.77418798400001,TJ,N2O,3.9,kg/TJ,315.01933313760003,kg +c51584f8-454c-3943-9831-3cb14ef4a90d,SESCO,II.5.1,Santa Fe,AR-S,annual,2015,gas oil combustion consumption by agriculture machines,1123.565259348,TJ,CO2,74100.0,kg/TJ,83256185.71768679,kg +dd052940-1468-3c29-b893-e4d4f4a658f4,SESCO,II.5.1,Santa Fe,AR-S,annual,2015,gas oil combustion consumption by agriculture machines,1123.565259348,TJ,CH4,3.9,kg/TJ,4381.9045114572,kg +dd052940-1468-3c29-b893-e4d4f4a658f4,SESCO,II.5.1,Santa Fe,AR-S,annual,2015,gas oil combustion consumption by agriculture machines,1123.565259348,TJ,N2O,3.9,kg/TJ,4381.9045114572,kg +fdea2ee8-b4e4-304a-a34d-dad51a959ca1,SESCO,II.5.1,Santiago del Estero,AR-G,annual,2015,gas oil combustion consumption by agriculture machines,55.894713924,TJ,CO2,74100.0,kg/TJ,4141798.3017684002,kg +6bc57544-9cde-3fc5-912b-a29b57e89344,SESCO,II.5.1,Santiago del Estero,AR-G,annual,2015,gas oil combustion consumption by agriculture machines,55.894713924,TJ,CH4,3.9,kg/TJ,217.9893843036,kg +6bc57544-9cde-3fc5-912b-a29b57e89344,SESCO,II.5.1,Santiago del Estero,AR-G,annual,2015,gas oil combustion consumption by agriculture machines,55.894713924,TJ,N2O,3.9,kg/TJ,217.9893843036,kg +d47efe3a-852e-3d99-8486-7be48de8e980,SESCO,II.5.1,Córdoba,AR-X,annual,2015,gas oil combustion consumption by agriculture machines,0.359552928,TJ,CO2,74100.0,kg/TJ,26642.8719648,kg +8f2acbe6-a123-32ae-883b-3761ede56bab,SESCO,II.5.1,Córdoba,AR-X,annual,2015,gas oil combustion consumption by agriculture machines,0.359552928,TJ,CH4,3.9,kg/TJ,1.4022564192,kg +8f2acbe6-a123-32ae-883b-3761ede56bab,SESCO,II.5.1,Córdoba,AR-X,annual,2015,gas oil combustion consumption by agriculture machines,0.359552928,TJ,N2O,3.9,kg/TJ,1.4022564192,kg +7e064799-abf7-3669-8f76-ef5fa861448b,SESCO,II.5.1,Entre Rios,AR-E,annual,2015,gas oil combustion consumption by agriculture machines,1.934106804,TJ,CO2,74100.0,kg/TJ,143317.3141764,kg +a329212e-ab2c-3e60-887a-30d0763d80cc,SESCO,II.5.1,Entre Rios,AR-E,annual,2015,gas oil combustion consumption by agriculture machines,1.934106804,TJ,CH4,3.9,kg/TJ,7.5430165356,kg +a329212e-ab2c-3e60-887a-30d0763d80cc,SESCO,II.5.1,Entre Rios,AR-E,annual,2015,gas oil combustion consumption by agriculture machines,1.934106804,TJ,N2O,3.9,kg/TJ,7.5430165356,kg +ca1a78dc-5be3-30ad-bad6-e0e04f6b4f97,SESCO,II.1.1,Buenos Aires,AR-B,annual,2015,gas oil combustion consumption by to the public,3228.586517856,TJ,CO2,74100.0,kg/TJ,239238260.97312957,kg +9d7d3473-8f64-34a8-a36b-1d242f6f223d,SESCO,II.1.1,Buenos Aires,AR-B,annual,2015,gas oil combustion consumption by to the public,3228.586517856,TJ,CH4,3.9,kg/TJ,12591.487419638399,kg +9d7d3473-8f64-34a8-a36b-1d242f6f223d,SESCO,II.1.1,Buenos Aires,AR-B,annual,2015,gas oil combustion consumption by to the public,3228.586517856,TJ,N2O,3.9,kg/TJ,12591.487419638399,kg +0043f6eb-bf49-3e7f-8a15-04c8883aaf4c,SESCO,II.1.1,Capital Federal,AR-C,annual,2015,gas oil combustion consumption by to the public,285.04399240799995,TJ,CO2,74100.0,kg/TJ,21121759.837432798,kg +f7adba1a-7e86-3427-a8e8-d54b1d904f75,SESCO,II.1.1,Capital Federal,AR-C,annual,2015,gas oil combustion consumption by to the public,285.04399240799995,TJ,CH4,3.9,kg/TJ,1111.6715703911998,kg +f7adba1a-7e86-3427-a8e8-d54b1d904f75,SESCO,II.1.1,Capital Federal,AR-C,annual,2015,gas oil combustion consumption by to the public,285.04399240799995,TJ,N2O,3.9,kg/TJ,1111.6715703911998,kg +4a522037-3c83-3a55-aef5-edb1b694664d,SESCO,II.1.1,Catamarca,AR-K,annual,2015,gas oil combustion consumption by to the public,112.382496576,TJ,CO2,74100.0,kg/TJ,8327542.9962816,kg +5aec50f6-324f-3586-9fe9-31e0384a0d16,SESCO,II.1.1,Catamarca,AR-K,annual,2015,gas oil combustion consumption by to the public,112.382496576,TJ,CH4,3.9,kg/TJ,438.29173664639995,kg +5aec50f6-324f-3586-9fe9-31e0384a0d16,SESCO,II.1.1,Catamarca,AR-K,annual,2015,gas oil combustion consumption by to the public,112.382496576,TJ,N2O,3.9,kg/TJ,438.29173664639995,kg +a4a6a464-142c-3d61-b51e-132a74c0717f,SESCO,II.1.1,Chaco,AR-H,annual,2015,gas oil combustion consumption by to the public,580.758161508,TJ,CO2,74100.0,kg/TJ,43034179.7677428,kg +81a4c76c-6c48-35d6-b3f3-233d191964c2,SESCO,II.1.1,Chaco,AR-H,annual,2015,gas oil combustion consumption by to the public,580.758161508,TJ,CH4,3.9,kg/TJ,2264.9568298811996,kg +81a4c76c-6c48-35d6-b3f3-233d191964c2,SESCO,II.1.1,Chaco,AR-H,annual,2015,gas oil combustion consumption by to the public,580.758161508,TJ,N2O,3.9,kg/TJ,2264.9568298811996,kg +dc93fb4d-d766-39cd-a430-326e974df633,SESCO,II.1.1,Corrientes,AR-W,annual,2015,gas oil combustion consumption by to the public,611.036683404,TJ,CO2,74100.0,kg/TJ,45277818.2402364,kg +d33540a0-edf7-3518-b129-8be9193eb3af,SESCO,II.1.1,Corrientes,AR-W,annual,2015,gas oil combustion consumption by to the public,611.036683404,TJ,CH4,3.9,kg/TJ,2383.0430652756,kg +d33540a0-edf7-3518-b129-8be9193eb3af,SESCO,II.1.1,Corrientes,AR-W,annual,2015,gas oil combustion consumption by to the public,611.036683404,TJ,N2O,3.9,kg/TJ,2383.0430652756,kg +09d443cd-96ba-3a4f-adeb-97f550926c76,SESCO,II.1.1,Córdoba,AR-X,annual,2015,gas oil combustion consumption by to the public,2147.435233524,TJ,CO2,74100.0,kg/TJ,159124950.8041284,kg +533fb501-716c-3457-b516-96a940523fe0,SESCO,II.1.1,Córdoba,AR-X,annual,2015,gas oil combustion consumption by to the public,2147.435233524,TJ,CH4,3.9,kg/TJ,8374.9974107436,kg +533fb501-716c-3457-b516-96a940523fe0,SESCO,II.1.1,Córdoba,AR-X,annual,2015,gas oil combustion consumption by to the public,2147.435233524,TJ,N2O,3.9,kg/TJ,8374.9974107436,kg +ebbadb54-f1f2-39c4-a483-23e07db22d21,SESCO,II.1.1,Entre Rios,AR-E,annual,2015,gas oil combustion consumption by to the public,1017.465984864,TJ,CO2,74100.0,kg/TJ,75394229.4784224,kg +302f4268-23d5-378b-9546-baa62a84393e,SESCO,II.1.1,Entre Rios,AR-E,annual,2015,gas oil combustion consumption by to the public,1017.465984864,TJ,CH4,3.9,kg/TJ,3968.1173409696,kg +302f4268-23d5-378b-9546-baa62a84393e,SESCO,II.1.1,Entre Rios,AR-E,annual,2015,gas oil combustion consumption by to the public,1017.465984864,TJ,N2O,3.9,kg/TJ,3968.1173409696,kg +d55f70f7-255a-3cdd-bd63-f4b093b37f55,SESCO,II.1.1,Jujuy,AR-Y,annual,2015,gas oil combustion consumption by to the public,52.243397304,TJ,CO2,74100.0,kg/TJ,3871235.7402264,kg +0b214163-b88c-3d0f-9257-62e6aa7a8e3d,SESCO,II.1.1,Jujuy,AR-Y,annual,2015,gas oil combustion consumption by to the public,52.243397304,TJ,CH4,3.9,kg/TJ,203.7492494856,kg +0b214163-b88c-3d0f-9257-62e6aa7a8e3d,SESCO,II.1.1,Jujuy,AR-Y,annual,2015,gas oil combustion consumption by to the public,52.243397304,TJ,N2O,3.9,kg/TJ,203.7492494856,kg +68250acb-af67-3aec-aad0-426ef979277e,SESCO,II.1.1,La Pampa,AR-L,annual,2015,gas oil combustion consumption by to the public,71.739958332,TJ,CO2,74100.0,kg/TJ,5315930.9124012,kg +f8df539c-0bfc-3bd4-955e-4738aa5ed2fb,SESCO,II.1.1,La Pampa,AR-L,annual,2015,gas oil combustion consumption by to the public,71.739958332,TJ,CH4,3.9,kg/TJ,279.7858374948,kg +f8df539c-0bfc-3bd4-955e-4738aa5ed2fb,SESCO,II.1.1,La Pampa,AR-L,annual,2015,gas oil combustion consumption by to the public,71.739958332,TJ,N2O,3.9,kg/TJ,279.7858374948,kg +045633f5-9f25-3ea8-b289-b9aa4112eb0d,SESCO,II.1.1,La Rioja,AR-F,annual,2015,gas oil combustion consumption by to the public,60.509636291999996,TJ,CO2,74100.0,kg/TJ,4483764.0492372,kg +5d80e713-5d49-3ba1-a771-9d9be9303ddb,SESCO,II.1.1,La Rioja,AR-F,annual,2015,gas oil combustion consumption by to the public,60.509636291999996,TJ,CH4,3.9,kg/TJ,235.9875815388,kg +5d80e713-5d49-3ba1-a771-9d9be9303ddb,SESCO,II.1.1,La Rioja,AR-F,annual,2015,gas oil combustion consumption by to the public,60.509636291999996,TJ,N2O,3.9,kg/TJ,235.9875815388,kg +203f8a90-aa2f-3140-92d8-1c3212c9b0e8,SESCO,II.1.1,Mendoza,AR-M,annual,2015,gas oil combustion consumption by to the public,457.94176722000003,TJ,CO2,74100.0,kg/TJ,33933484.951002,kg +8876d08f-b1a2-39c1-af13-f1617555f9a9,SESCO,II.1.1,Mendoza,AR-M,annual,2015,gas oil combustion consumption by to the public,457.94176722000003,TJ,CH4,3.9,kg/TJ,1785.9728921580001,kg +8876d08f-b1a2-39c1-af13-f1617555f9a9,SESCO,II.1.1,Mendoza,AR-M,annual,2015,gas oil combustion consumption by to the public,457.94176722000003,TJ,N2O,3.9,kg/TJ,1785.9728921580001,kg +b3b960f6-872b-3b4e-8729-2f0ccbaef4df,SESCO,II.1.1,Misiones,AR-N,annual,2015,gas oil combustion consumption by to the public,346.560206412,TJ,CO2,74100.0,kg/TJ,25680111.295129202,kg +db3d2072-5bca-3140-9de0-bf47bd59f3df,SESCO,II.1.1,Misiones,AR-N,annual,2015,gas oil combustion consumption by to the public,346.560206412,TJ,CH4,3.9,kg/TJ,1351.5848050068,kg +db3d2072-5bca-3140-9de0-bf47bd59f3df,SESCO,II.1.1,Misiones,AR-N,annual,2015,gas oil combustion consumption by to the public,346.560206412,TJ,N2O,3.9,kg/TJ,1351.5848050068,kg +2abdc503-d8b2-307f-9182-c3bb932d98a6,SESCO,II.1.1,Salta,AR-A,annual,2015,gas oil combustion consumption by to the public,39.847995768,TJ,CO2,74100.0,kg/TJ,2952736.4864088,kg +d5f5755e-3275-3eb9-ae10-ca5b75d5033d,SESCO,II.1.1,Salta,AR-A,annual,2015,gas oil combustion consumption by to the public,39.847995768,TJ,CH4,3.9,kg/TJ,155.40718349519997,kg +d5f5755e-3275-3eb9-ae10-ca5b75d5033d,SESCO,II.1.1,Salta,AR-A,annual,2015,gas oil combustion consumption by to the public,39.847995768,TJ,N2O,3.9,kg/TJ,155.40718349519997,kg +496f8e67-1ee1-3d39-9934-7efeeb3f6037,SESCO,II.1.1,San Juan,AR-J,annual,2015,gas oil combustion consumption by to the public,409.77115998,TJ,CO2,74100.0,kg/TJ,30364042.954517998,kg +9e866a60-06a2-3d0c-9bfa-30c124f05d87,SESCO,II.1.1,San Juan,AR-J,annual,2015,gas oil combustion consumption by to the public,409.77115998,TJ,CH4,3.9,kg/TJ,1598.107523922,kg +9e866a60-06a2-3d0c-9bfa-30c124f05d87,SESCO,II.1.1,San Juan,AR-J,annual,2015,gas oil combustion consumption by to the public,409.77115998,TJ,N2O,3.9,kg/TJ,1598.107523922,kg +620e35ba-a7d5-3489-b8b1-234f9ffe5033,SESCO,II.1.1,San Luis,AR-D,annual,2015,gas oil combustion consumption by to the public,218.78415686399998,TJ,CO2,74100.0,kg/TJ,16211906.0236224,kg +0ae7f75a-90a7-3b25-8b11-189d84ad974a,SESCO,II.1.1,San Luis,AR-D,annual,2015,gas oil combustion consumption by to the public,218.78415686399998,TJ,CH4,3.9,kg/TJ,853.2582117695999,kg +0ae7f75a-90a7-3b25-8b11-189d84ad974a,SESCO,II.1.1,San Luis,AR-D,annual,2015,gas oil combustion consumption by to the public,218.78415686399998,TJ,N2O,3.9,kg/TJ,853.2582117695999,kg +b1912d28-61aa-302a-ab77-bf715017bed2,SESCO,II.1.1,Santa Fe,AR-S,annual,2015,gas oil combustion consumption by to the public,3356.7315223680002,TJ,CO2,74100.0,kg/TJ,248733805.80746883,kg +89215625-4b8c-3218-a7f0-9735cd1b7b54,SESCO,II.1.1,Santa Fe,AR-S,annual,2015,gas oil combustion consumption by to the public,3356.7315223680002,TJ,CH4,3.9,kg/TJ,13091.2529372352,kg +89215625-4b8c-3218-a7f0-9735cd1b7b54,SESCO,II.1.1,Santa Fe,AR-S,annual,2015,gas oil combustion consumption by to the public,3356.7315223680002,TJ,N2O,3.9,kg/TJ,13091.2529372352,kg +3afaa55f-da3c-3506-ad8e-fc5e86b1ab7a,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2015,gas oil combustion consumption by to the public,133.644682668,TJ,CO2,74100.0,kg/TJ,9903070.9856988,kg +cf3f07fe-42a5-322a-9fef-208a16220309,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2015,gas oil combustion consumption by to the public,133.644682668,TJ,CH4,3.9,kg/TJ,521.2142624052,kg +cf3f07fe-42a5-322a-9fef-208a16220309,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2015,gas oil combustion consumption by to the public,133.644682668,TJ,N2O,3.9,kg/TJ,521.2142624052,kg +eb72d1b9-031a-3e9a-9548-92b59f6db25f,SESCO,II.1.1,Tucuman,AR-T,annual,2015,gas oil combustion consumption by to the public,682.44867936,TJ,CO2,74100.0,kg/TJ,50569447.140576005,kg +97a26bd3-abc8-3866-925d-cca28541d80a,SESCO,II.1.1,Tucuman,AR-T,annual,2015,gas oil combustion consumption by to the public,682.44867936,TJ,CH4,3.9,kg/TJ,2661.549849504,kg +97a26bd3-abc8-3866-925d-cca28541d80a,SESCO,II.1.1,Tucuman,AR-T,annual,2015,gas oil combustion consumption by to the public,682.44867936,TJ,N2O,3.9,kg/TJ,2661.549849504,kg +21f6d005-666b-31c2-8855-bd9280601c11,SESCO,II.1.1,Buenos Aires,AR-B,annual,2015,gas oil combustion consumption by to the public,300.511620276,TJ,CO2,74100.0,kg/TJ,22267911.062451597,kg +9da80c15-b76e-3c31-b1bc-943457c12397,SESCO,II.1.1,Buenos Aires,AR-B,annual,2015,gas oil combustion consumption by to the public,300.511620276,TJ,CH4,3.9,kg/TJ,1171.9953190764,kg +9da80c15-b76e-3c31-b1bc-943457c12397,SESCO,II.1.1,Buenos Aires,AR-B,annual,2015,gas oil combustion consumption by to the public,300.511620276,TJ,N2O,3.9,kg/TJ,1171.9953190764,kg +7dbf6c74-c9c8-3d11-95c9-7de03491750b,SESCO,II.1.1,Capital Federal,AR-C,annual,2015,gas oil combustion consumption by to the public,14.166451824,TJ,CO2,74100.0,kg/TJ,1049734.0801584,kg +7d67f5b3-6cbd-328c-b78c-63144956338c,SESCO,II.1.1,Capital Federal,AR-C,annual,2015,gas oil combustion consumption by to the public,14.166451824,TJ,CH4,3.9,kg/TJ,55.24916211359999,kg +7d67f5b3-6cbd-328c-b78c-63144956338c,SESCO,II.1.1,Capital Federal,AR-C,annual,2015,gas oil combustion consumption by to the public,14.166451824,TJ,N2O,3.9,kg/TJ,55.24916211359999,kg +02573bcf-3f25-353f-9b64-67864ffd7daa,SESCO,II.1.1,Catamarca,AR-K,annual,2015,gas oil combustion consumption by to the public,18.953251211999998,TJ,CO2,74100.0,kg/TJ,1404435.9148091997,kg +42d974d1-1718-35df-8bc0-2ee758730fbd,SESCO,II.1.1,Catamarca,AR-K,annual,2015,gas oil combustion consumption by to the public,18.953251211999998,TJ,CH4,3.9,kg/TJ,73.91767972679999,kg +42d974d1-1718-35df-8bc0-2ee758730fbd,SESCO,II.1.1,Catamarca,AR-K,annual,2015,gas oil combustion consumption by to the public,18.953251211999998,TJ,N2O,3.9,kg/TJ,73.91767972679999,kg +6b23dcbc-a3ea-3950-b887-20fbf3e236f6,SESCO,II.1.1,Chaco,AR-H,annual,2015,gas oil combustion consumption by to the public,26.833446864,TJ,CO2,74100.0,kg/TJ,1988358.4126223999,kg +e643b4fb-2bb2-31e3-942f-c0c23b420836,SESCO,II.1.1,Chaco,AR-H,annual,2015,gas oil combustion consumption by to the public,26.833446864,TJ,CH4,3.9,kg/TJ,104.65044276959999,kg +e643b4fb-2bb2-31e3-942f-c0c23b420836,SESCO,II.1.1,Chaco,AR-H,annual,2015,gas oil combustion consumption by to the public,26.833446864,TJ,N2O,3.9,kg/TJ,104.65044276959999,kg +c6d337ac-9986-3f03-b911-3b3ec32109f0,SESCO,II.1.1,Corrientes,AR-W,annual,2015,gas oil combustion consumption by to the public,79.54776228,TJ,CO2,74100.0,kg/TJ,5894489.184948,kg +5f4235fe-b250-3e37-9bdc-c6eb4fd1a653,SESCO,II.1.1,Corrientes,AR-W,annual,2015,gas oil combustion consumption by to the public,79.54776228,TJ,CH4,3.9,kg/TJ,310.236272892,kg +5f4235fe-b250-3e37-9bdc-c6eb4fd1a653,SESCO,II.1.1,Corrientes,AR-W,annual,2015,gas oil combustion consumption by to the public,79.54776228,TJ,N2O,3.9,kg/TJ,310.236272892,kg +1fdc559b-0293-3ed6-a9f2-cc46f97f7bb9,SESCO,II.1.1,Córdoba,AR-X,annual,2015,gas oil combustion consumption by to the public,164.17806367199998,TJ,CO2,74100.0,kg/TJ,12165594.518095199,kg +a32d4180-2ab0-300d-830e-d153b7ee1415,SESCO,II.1.1,Córdoba,AR-X,annual,2015,gas oil combustion consumption by to the public,164.17806367199998,TJ,CH4,3.9,kg/TJ,640.2944483207999,kg +a32d4180-2ab0-300d-830e-d153b7ee1415,SESCO,II.1.1,Córdoba,AR-X,annual,2015,gas oil combustion consumption by to the public,164.17806367199998,TJ,N2O,3.9,kg/TJ,640.2944483207999,kg +03d0da12-7ee3-3c68-963e-7a05f4995e22,SESCO,II.1.1,Entre Rios,AR-E,annual,2015,gas oil combustion consumption by to the public,115.239028716,TJ,CO2,74100.0,kg/TJ,8539212.027855601,kg +328a661e-54de-398c-8f4a-842a20d0defe,SESCO,II.1.1,Entre Rios,AR-E,annual,2015,gas oil combustion consumption by to the public,115.239028716,TJ,CH4,3.9,kg/TJ,449.4322119924,kg +328a661e-54de-398c-8f4a-842a20d0defe,SESCO,II.1.1,Entre Rios,AR-E,annual,2015,gas oil combustion consumption by to the public,115.239028716,TJ,N2O,3.9,kg/TJ,449.4322119924,kg +93ea0298-2b87-3ab3-b62f-aa9cb9c44230,SESCO,II.1.1,La Pampa,AR-L,annual,2015,gas oil combustion consumption by to the public,2.1876294720000002,TJ,CO2,74100.0,kg/TJ,162103.34387520002,kg +4a2e9e27-853b-3bb2-9a0a-797bf3b56b7f,SESCO,II.1.1,La Pampa,AR-L,annual,2015,gas oil combustion consumption by to the public,2.1876294720000002,TJ,CH4,3.9,kg/TJ,8.5317549408,kg +4a2e9e27-853b-3bb2-9a0a-797bf3b56b7f,SESCO,II.1.1,La Pampa,AR-L,annual,2015,gas oil combustion consumption by to the public,2.1876294720000002,TJ,N2O,3.9,kg/TJ,8.5317549408,kg +c96c4e1e-8b61-3143-ae0d-f67e6f29f27d,SESCO,II.1.1,La Rioja,AR-F,annual,2015,gas oil combustion consumption by to the public,5.9217295199999995,TJ,CO2,74100.0,kg/TJ,438800.157432,kg +56d90437-eba6-31d8-a038-39c7e9b2c925,SESCO,II.1.1,La Rioja,AR-F,annual,2015,gas oil combustion consumption by to the public,5.9217295199999995,TJ,CH4,3.9,kg/TJ,23.094745127999996,kg +56d90437-eba6-31d8-a038-39c7e9b2c925,SESCO,II.1.1,La Rioja,AR-F,annual,2015,gas oil combustion consumption by to the public,5.9217295199999995,TJ,N2O,3.9,kg/TJ,23.094745127999996,kg +1d5f8413-84d8-3175-833f-aa38b73c7c51,SESCO,II.1.1,Mendoza,AR-M,annual,2015,gas oil combustion consumption by to the public,52.016567316,TJ,CO2,74100.0,kg/TJ,3854427.6381155998,kg +38e95ade-6cd7-3798-9957-f143473d77a3,SESCO,II.1.1,Mendoza,AR-M,annual,2015,gas oil combustion consumption by to the public,52.016567316,TJ,CH4,3.9,kg/TJ,202.8646125324,kg +38e95ade-6cd7-3798-9957-f143473d77a3,SESCO,II.1.1,Mendoza,AR-M,annual,2015,gas oil combustion consumption by to the public,52.016567316,TJ,N2O,3.9,kg/TJ,202.8646125324,kg +aa25a2da-d194-3b46-866d-34405cc3e5c2,SESCO,II.1.1,Misiones,AR-N,annual,2015,gas oil combustion consumption by to the public,41.553365448,TJ,CO2,74100.0,kg/TJ,3079104.3796968,kg +cd3a362a-2d8f-34d7-af48-c4e012fffa13,SESCO,II.1.1,Misiones,AR-N,annual,2015,gas oil combustion consumption by to the public,41.553365448,TJ,CH4,3.9,kg/TJ,162.0581252472,kg +cd3a362a-2d8f-34d7-af48-c4e012fffa13,SESCO,II.1.1,Misiones,AR-N,annual,2015,gas oil combustion consumption by to the public,41.553365448,TJ,N2O,3.9,kg/TJ,162.0581252472,kg +25828090-9bfb-3f59-a6b1-67596d58286f,SESCO,II.1.1,Salta,AR-A,annual,2015,gas oil combustion consumption by to the public,6.448207415999999,TJ,CO2,74100.0,kg/TJ,477812.1695255999,kg +631751a6-ee57-3615-89a1-5ec39d68bd07,SESCO,II.1.1,Salta,AR-A,annual,2015,gas oil combustion consumption by to the public,6.448207415999999,TJ,CH4,3.9,kg/TJ,25.148008922399995,kg +631751a6-ee57-3615-89a1-5ec39d68bd07,SESCO,II.1.1,Salta,AR-A,annual,2015,gas oil combustion consumption by to the public,6.448207415999999,TJ,N2O,3.9,kg/TJ,25.148008922399995,kg +0eccfc4e-e157-37db-8629-79f65ef43412,SESCO,II.1.1,San Juan,AR-J,annual,2015,gas oil combustion consumption by to the public,8.651466012,TJ,CO2,74100.0,kg/TJ,641073.6314892,kg +f283eb40-5579-3318-af90-dd7fc4487d0f,SESCO,II.1.1,San Juan,AR-J,annual,2015,gas oil combustion consumption by to the public,8.651466012,TJ,CH4,3.9,kg/TJ,33.7407174468,kg +f283eb40-5579-3318-af90-dd7fc4487d0f,SESCO,II.1.1,San Juan,AR-J,annual,2015,gas oil combustion consumption by to the public,8.651466012,TJ,N2O,3.9,kg/TJ,33.7407174468,kg +f91c221c-9ee0-370d-95fb-20c878deb1f0,SESCO,II.1.1,San Luis,AR-D,annual,2015,gas oil combustion consumption by to the public,45.766925988,TJ,CO2,74100.0,kg/TJ,3391329.2157107997,kg +cf59f3a8-3bde-3fef-8c53-ae657b613c57,SESCO,II.1.1,San Luis,AR-D,annual,2015,gas oil combustion consumption by to the public,45.766925988,TJ,CH4,3.9,kg/TJ,178.49101135319998,kg +cf59f3a8-3bde-3fef-8c53-ae657b613c57,SESCO,II.1.1,San Luis,AR-D,annual,2015,gas oil combustion consumption by to the public,45.766925988,TJ,N2O,3.9,kg/TJ,178.49101135319998,kg +a1fb6743-7e5f-3b1a-a7ad-faf4b4b5b871,SESCO,II.1.1,Santa Fe,AR-S,annual,2015,gas oil combustion consumption by to the public,381.69819029999996,TJ,CO2,74100.0,kg/TJ,28283835.901229996,kg +e2632ba7-19fa-3b92-aacf-2649924ecd0b,SESCO,II.1.1,Santa Fe,AR-S,annual,2015,gas oil combustion consumption by to the public,381.69819029999996,TJ,CH4,3.9,kg/TJ,1488.6229421699998,kg +e2632ba7-19fa-3b92-aacf-2649924ecd0b,SESCO,II.1.1,Santa Fe,AR-S,annual,2015,gas oil combustion consumption by to the public,381.69819029999996,TJ,N2O,3.9,kg/TJ,1488.6229421699998,kg +4e4e79ce-f997-3802-812b-6c569116ecc5,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2015,gas oil combustion consumption by to the public,14.310892092,TJ,CO2,74100.0,kg/TJ,1060437.1040172,kg +0547e15b-69f7-3712-b9d2-cd33643bcbba,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2015,gas oil combustion consumption by to the public,14.310892092,TJ,CH4,3.9,kg/TJ,55.812479158799995,kg +0547e15b-69f7-3712-b9d2-cd33643bcbba,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2015,gas oil combustion consumption by to the public,14.310892092,TJ,N2O,3.9,kg/TJ,55.812479158799995,kg +f522e06d-11c1-377d-81ab-f75dc3ce320c,SESCO,II.1.1,Tucuman,AR-T,annual,2015,gas oil combustion consumption by to the public,43.271958659999996,TJ,CO2,74100.0,kg/TJ,3206452.1367059997,kg +445d3f7d-ec11-35ff-b927-421bdbae6319,SESCO,II.1.1,Tucuman,AR-T,annual,2015,gas oil combustion consumption by to the public,43.271958659999996,TJ,CH4,3.9,kg/TJ,168.76063877399997,kg +445d3f7d-ec11-35ff-b927-421bdbae6319,SESCO,II.1.1,Tucuman,AR-T,annual,2015,gas oil combustion consumption by to the public,43.271958659999996,TJ,N2O,3.9,kg/TJ,168.76063877399997,kg +637c58b1-17ac-3f02-ad37-f95ed0f9863d,SESCO,II.1.1,Buenos Aires,AR-B,annual,2015,gas oil combustion consumption by public passenger transport,276.226807836,TJ,CO2,74100.0,kg/TJ,20468406.460647598,kg +340b68b7-42fe-3cda-88b9-49cfae50ac8c,SESCO,II.1.1,Buenos Aires,AR-B,annual,2015,gas oil combustion consumption by public passenger transport,276.226807836,TJ,CH4,3.9,kg/TJ,1077.2845505603998,kg +340b68b7-42fe-3cda-88b9-49cfae50ac8c,SESCO,II.1.1,Buenos Aires,AR-B,annual,2015,gas oil combustion consumption by public passenger transport,276.226807836,TJ,N2O,3.9,kg/TJ,1077.2845505603998,kg +efcb4789-e066-3955-aeb9-026d295d21fb,SESCO,II.1.1,Chaco,AR-H,annual,2015,gas oil combustion consumption by public passenger transport,10.009765836000001,TJ,CO2,74100.0,kg/TJ,741723.6484476001,kg +d98a15b5-f3c9-3e1e-b07d-562af549e470,SESCO,II.1.1,Chaco,AR-H,annual,2015,gas oil combustion consumption by public passenger transport,10.009765836000001,TJ,CH4,3.9,kg/TJ,39.038086760400006,kg +d98a15b5-f3c9-3e1e-b07d-562af549e470,SESCO,II.1.1,Chaco,AR-H,annual,2015,gas oil combustion consumption by public passenger transport,10.009765836000001,TJ,N2O,3.9,kg/TJ,39.038086760400006,kg +eae98625-df56-3345-8efd-d3bf4a1201f0,SESCO,II.1.1,Corrientes,AR-W,annual,2015,gas oil combustion consumption by public passenger transport,38.07293616,TJ,CO2,74100.0,kg/TJ,2821204.569456,kg +1ebb69e6-8179-3d98-8de5-6e02810e0879,SESCO,II.1.1,Corrientes,AR-W,annual,2015,gas oil combustion consumption by public passenger transport,38.07293616,TJ,CH4,3.9,kg/TJ,148.48445102399998,kg +1ebb69e6-8179-3d98-8de5-6e02810e0879,SESCO,II.1.1,Corrientes,AR-W,annual,2015,gas oil combustion consumption by public passenger transport,38.07293616,TJ,N2O,3.9,kg/TJ,148.48445102399998,kg +ac7422e5-e092-37b4-9f1c-0ae497b0ad45,SESCO,II.1.1,Córdoba,AR-X,annual,2015,gas oil combustion consumption by public passenger transport,335.997905712,TJ,CO2,74100.0,kg/TJ,24897444.8132592,kg +801019af-1457-3dcc-8712-132e16637720,SESCO,II.1.1,Córdoba,AR-X,annual,2015,gas oil combustion consumption by public passenger transport,335.997905712,TJ,CH4,3.9,kg/TJ,1310.3918322768,kg +801019af-1457-3dcc-8712-132e16637720,SESCO,II.1.1,Córdoba,AR-X,annual,2015,gas oil combustion consumption by public passenger transport,335.997905712,TJ,N2O,3.9,kg/TJ,1310.3918322768,kg +a6c8d22b-1919-33fc-95ee-070707af813a,SESCO,II.1.1,Entre Rios,AR-E,annual,2015,gas oil combustion consumption by public passenger transport,95.89006845600001,TJ,CO2,74100.0,kg/TJ,7105454.0725896,kg +ca6a1256-0ca8-3d18-8682-f5429a8a6d24,SESCO,II.1.1,Entre Rios,AR-E,annual,2015,gas oil combustion consumption by public passenger transport,95.89006845600001,TJ,CH4,3.9,kg/TJ,373.9712669784,kg +ca6a1256-0ca8-3d18-8682-f5429a8a6d24,SESCO,II.1.1,Entre Rios,AR-E,annual,2015,gas oil combustion consumption by public passenger transport,95.89006845600001,TJ,N2O,3.9,kg/TJ,373.9712669784,kg +43a7c1bf-edf6-3b46-86b5-e8e1e8ae50ae,SESCO,II.1.1,Jujuy,AR-Y,annual,2015,gas oil combustion consumption by public passenger transport,105.053224836,TJ,CO2,74100.0,kg/TJ,7784443.9603476,kg +be470e93-1aba-3b1c-aba4-f57fa7555d96,SESCO,II.1.1,Jujuy,AR-Y,annual,2015,gas oil combustion consumption by public passenger transport,105.053224836,TJ,CH4,3.9,kg/TJ,409.70757686039997,kg +be470e93-1aba-3b1c-aba4-f57fa7555d96,SESCO,II.1.1,Jujuy,AR-Y,annual,2015,gas oil combustion consumption by public passenger transport,105.053224836,TJ,N2O,3.9,kg/TJ,409.70757686039997,kg +7d59b0cb-7f2e-3269-8475-88735b7292ab,SESCO,II.1.1,Salta,AR-A,annual,2015,gas oil combustion consumption by public passenger transport,90.21431613600001,TJ,CO2,74100.0,kg/TJ,6684880.825677601,kg +6bed3032-9208-382c-869c-ec7528dde87f,SESCO,II.1.1,Salta,AR-A,annual,2015,gas oil combustion consumption by public passenger transport,90.21431613600001,TJ,CH4,3.9,kg/TJ,351.83583293040004,kg +6bed3032-9208-382c-869c-ec7528dde87f,SESCO,II.1.1,Salta,AR-A,annual,2015,gas oil combustion consumption by public passenger transport,90.21431613600001,TJ,N2O,3.9,kg/TJ,351.83583293040004,kg +325393fa-71a2-3c68-894e-9b5da95d4b3f,SESCO,II.1.1,Santa Fe,AR-S,annual,2015,gas oil combustion consumption by public passenger transport,306.389406204,TJ,CO2,74100.0,kg/TJ,22703454.9997164,kg +0cff952c-72a1-35ce-8675-c78d1a5afe79,SESCO,II.1.1,Santa Fe,AR-S,annual,2015,gas oil combustion consumption by public passenger transport,306.389406204,TJ,CH4,3.9,kg/TJ,1194.9186841956,kg +0cff952c-72a1-35ce-8675-c78d1a5afe79,SESCO,II.1.1,Santa Fe,AR-S,annual,2015,gas oil combustion consumption by public passenger transport,306.389406204,TJ,N2O,3.9,kg/TJ,1194.9186841956,kg +ccccb12a-e5d0-38ef-ba6b-7398db024db2,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2015,gas oil combustion consumption by public passenger transport,126.25103064,TJ,CO2,74100.0,kg/TJ,9355201.370424,kg +922de990-575a-3d3d-aed1-a203e1c2a995,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2015,gas oil combustion consumption by public passenger transport,126.25103064,TJ,CH4,3.9,kg/TJ,492.37901949599996,kg +922de990-575a-3d3d-aed1-a203e1c2a995,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2015,gas oil combustion consumption by public passenger transport,126.25103064,TJ,N2O,3.9,kg/TJ,492.37901949599996,kg +a2d30a25-b5b3-321c-8886-8c37b9111404,SESCO,II.1.1,Tucuman,AR-T,annual,2015,gas oil combustion consumption by public passenger transport,29.206642836,TJ,CO2,74100.0,kg/TJ,2164212.2341476,kg +24f75ce5-fb4b-357d-8c82-583dedf08a9b,SESCO,II.1.1,Tucuman,AR-T,annual,2015,gas oil combustion consumption by public passenger transport,29.206642836,TJ,CH4,3.9,kg/TJ,113.9059070604,kg +24f75ce5-fb4b-357d-8c82-583dedf08a9b,SESCO,II.1.1,Tucuman,AR-T,annual,2015,gas oil combustion consumption by public passenger transport,29.206642836,TJ,N2O,3.9,kg/TJ,113.9059070604,kg +74e43219-a8fa-3906-ab84-b73be40422e9,SESCO,II.1.1,Córdoba,AR-X,annual,2015,gas oil combustion consumption by public passenger transport,0.7917937439999999,TJ,CO2,74100.0,kg/TJ,58671.91643039999,kg +e477a4b6-d356-3057-982b-6646661ef1ff,SESCO,II.1.1,Córdoba,AR-X,annual,2015,gas oil combustion consumption by public passenger transport,0.7917937439999999,TJ,CH4,3.9,kg/TJ,3.0879956015999994,kg +e477a4b6-d356-3057-982b-6646661ef1ff,SESCO,II.1.1,Córdoba,AR-X,annual,2015,gas oil combustion consumption by public passenger transport,0.7917937439999999,TJ,N2O,3.9,kg/TJ,3.0879956015999994,kg +bcc34d8e-0073-3ef1-a981-5686e9ca4de3,SESCO,II.5.1,Buenos Aires,AR-B,annual,2015,gas oil combustion consumption by agriculture machines,519.48419712,TJ,CO2,74100.0,kg/TJ,38493779.006592,kg +e7737653-77c1-34ff-87f1-38a2009fd908,SESCO,II.5.1,Buenos Aires,AR-B,annual,2015,gas oil combustion consumption by agriculture machines,519.48419712,TJ,CH4,3.9,kg/TJ,2025.9883687679999,kg +e7737653-77c1-34ff-87f1-38a2009fd908,SESCO,II.5.1,Buenos Aires,AR-B,annual,2015,gas oil combustion consumption by agriculture machines,519.48419712,TJ,N2O,3.9,kg/TJ,2025.9883687679999,kg +b562d65d-10a0-3d3a-b270-1514020891a2,SESCO,II.5.1,Córdoba,AR-X,annual,2015,gas oil combustion consumption by agriculture machines,78.08840592,TJ,CO2,74100.0,kg/TJ,5786350.878672,kg +879a0791-1bb7-320d-b0a4-3c4ae94ea3ba,SESCO,II.5.1,Córdoba,AR-X,annual,2015,gas oil combustion consumption by agriculture machines,78.08840592,TJ,CH4,3.9,kg/TJ,304.544783088,kg +879a0791-1bb7-320d-b0a4-3c4ae94ea3ba,SESCO,II.5.1,Córdoba,AR-X,annual,2015,gas oil combustion consumption by agriculture machines,78.08840592,TJ,N2O,3.9,kg/TJ,304.544783088,kg +2d5c5f1f-f127-3bd5-9647-68fc09fa027a,SESCO,II.5.1,La Pampa,AR-L,annual,2015,gas oil combustion consumption by agriculture machines,3.61730964,TJ,CO2,74100.0,kg/TJ,268042.644324,kg +f1e52adb-6a98-3550-94aa-fbc1c6a46dde,SESCO,II.5.1,La Pampa,AR-L,annual,2015,gas oil combustion consumption by agriculture machines,3.61730964,TJ,CH4,3.9,kg/TJ,14.107507596000001,kg +f1e52adb-6a98-3550-94aa-fbc1c6a46dde,SESCO,II.5.1,La Pampa,AR-L,annual,2015,gas oil combustion consumption by agriculture machines,3.61730964,TJ,N2O,3.9,kg/TJ,14.107507596000001,kg +ebde6a9f-73fb-3cca-aa7d-beaed16e4072,SESCO,II.5.1,Neuquén,AR-Q,annual,2015,gas oil combustion consumption by agriculture machines,50.72526648,TJ,CO2,74100.0,kg/TJ,3758742.246168,kg +03c3a84c-df6e-3b6f-a334-c09bae00daec,SESCO,II.5.1,Neuquén,AR-Q,annual,2015,gas oil combustion consumption by agriculture machines,50.72526648,TJ,CH4,3.9,kg/TJ,197.828539272,kg +03c3a84c-df6e-3b6f-a334-c09bae00daec,SESCO,II.5.1,Neuquén,AR-Q,annual,2015,gas oil combustion consumption by agriculture machines,50.72526648,TJ,N2O,3.9,kg/TJ,197.828539272,kg +d89fbdfb-0246-3fa2-ac52-93f58892575f,SESCO,II.5.1,Rio Negro,AR-R,annual,2015,gas oil combustion consumption by agriculture machines,4.19718012,TJ,CO2,74100.0,kg/TJ,311011.04689199995,kg +639e7d05-e8f1-32ae-912f-279ca3cd464f,SESCO,II.5.1,Rio Negro,AR-R,annual,2015,gas oil combustion consumption by agriculture machines,4.19718012,TJ,CH4,3.9,kg/TJ,16.369002467999998,kg +639e7d05-e8f1-32ae-912f-279ca3cd464f,SESCO,II.5.1,Rio Negro,AR-R,annual,2015,gas oil combustion consumption by agriculture machines,4.19718012,TJ,N2O,3.9,kg/TJ,16.369002467999998,kg +fb72110c-b0cc-332d-aed4-41771a3e394c,SESCO,II.5.1,Santa Fe,AR-S,annual,2015,gas oil combustion consumption by agriculture machines,8.47367976,TJ,CO2,74100.0,kg/TJ,627899.6702159999,kg +36629245-85af-3362-a5a7-4157479c3b63,SESCO,II.5.1,Santa Fe,AR-S,annual,2015,gas oil combustion consumption by agriculture machines,8.47367976,TJ,CH4,3.9,kg/TJ,33.047351064,kg +36629245-85af-3362-a5a7-4157479c3b63,SESCO,II.5.1,Santa Fe,AR-S,annual,2015,gas oil combustion consumption by agriculture machines,8.47367976,TJ,N2O,3.9,kg/TJ,33.047351064,kg +8f275869-0f92-3693-9915-698c5f24c0b6,SESCO,II.5.1,Buenos Aires,AR-B,annual,2015,gas oil combustion consumption by agriculture machines,1.19152656,TJ,CO2,74100.0,kg/TJ,88292.118096,kg +1eb2afb5-59e2-3954-bf04-6e6d5992072e,SESCO,II.5.1,Buenos Aires,AR-B,annual,2015,gas oil combustion consumption by agriculture machines,1.19152656,TJ,CH4,3.9,kg/TJ,4.646953584,kg +1eb2afb5-59e2-3954-bf04-6e6d5992072e,SESCO,II.5.1,Buenos Aires,AR-B,annual,2015,gas oil combustion consumption by agriculture machines,1.19152656,TJ,N2O,3.9,kg/TJ,4.646953584,kg +14449ced-2715-31a6-9eb3-ef775c1cb54d,SESCO,II.1.1,Córdoba,AR-X,annual,2015,gasoline combustion consumption by to the public,1.189898,TJ,CO2,69300.0,kg/TJ,82459.93139999999,kg +5d52c85f-fc8b-3f37-b0f9-4936dbdf2af5,SESCO,II.1.1,Córdoba,AR-X,annual,2015,gasoline combustion consumption by to the public,1.189898,TJ,CH4,33.0,kg/TJ,39.266633999999996,kg +722657d5-4c67-38c1-a313-4c0359fdcd43,SESCO,II.1.1,Córdoba,AR-X,annual,2015,gasoline combustion consumption by to the public,1.189898,TJ,N2O,3.2,kg/TJ,3.8076735999999998,kg +f758bf99-3818-384b-805c-4ace661b72ea,SESCO,II.1.1,La Pampa,AR-L,annual,2015,gasoline combustion consumption by to the public,1.202302,TJ,CO2,69300.0,kg/TJ,83319.5286,kg +cdcb95c9-1100-3478-a336-fe1e5f8f7abc,SESCO,II.1.1,La Pampa,AR-L,annual,2015,gasoline combustion consumption by to the public,1.202302,TJ,CH4,33.0,kg/TJ,39.675966,kg +6b4db3a2-b91d-36cd-bd25-ff66df8ae9fd,SESCO,II.1.1,La Pampa,AR-L,annual,2015,gasoline combustion consumption by to the public,1.202302,TJ,N2O,3.2,kg/TJ,3.8473664000000003,kg +257ccf4a-3d73-37c7-b349-1852dcf1cadc,SESCO,II.1.1,Buenos Aires,AR-B,annual,2015,gas oil combustion consumption by to the public,8595.35554248,TJ,CO2,74100.0,kg/TJ,636915845.697768,kg +bac54b06-f5dc-3e5d-afbf-23b18775ec96,SESCO,II.1.1,Buenos Aires,AR-B,annual,2015,gas oil combustion consumption by to the public,8595.35554248,TJ,CH4,3.9,kg/TJ,33521.886615671996,kg +bac54b06-f5dc-3e5d-afbf-23b18775ec96,SESCO,II.1.1,Buenos Aires,AR-B,annual,2015,gas oil combustion consumption by to the public,8595.35554248,TJ,N2O,3.9,kg/TJ,33521.886615671996,kg +07c7a679-a6dc-3fe7-898c-25bd66a70666,SESCO,II.1.1,Capital Federal,AR-C,annual,2015,gas oil combustion consumption by to the public,361.6843692,TJ,CO2,74100.0,kg/TJ,26800811.75772,kg +fc50ac1a-12c8-3519-b69a-5a399024f40d,SESCO,II.1.1,Capital Federal,AR-C,annual,2015,gas oil combustion consumption by to the public,361.6843692,TJ,CH4,3.9,kg/TJ,1410.56903988,kg +fc50ac1a-12c8-3519-b69a-5a399024f40d,SESCO,II.1.1,Capital Federal,AR-C,annual,2015,gas oil combustion consumption by to the public,361.6843692,TJ,N2O,3.9,kg/TJ,1410.56903988,kg +aee260f7-7e66-35f6-8579-c44a7932bba5,SESCO,II.1.1,Chaco,AR-H,annual,2015,gas oil combustion consumption by to the public,3.6558135600000004,TJ,CO2,74100.0,kg/TJ,270895.78479600005,kg +5f95c38d-82b6-307f-b2e0-615efe654aa0,SESCO,II.1.1,Chaco,AR-H,annual,2015,gas oil combustion consumption by to the public,3.6558135600000004,TJ,CH4,3.9,kg/TJ,14.257672884000002,kg +5f95c38d-82b6-307f-b2e0-615efe654aa0,SESCO,II.1.1,Chaco,AR-H,annual,2015,gas oil combustion consumption by to the public,3.6558135600000004,TJ,N2O,3.9,kg/TJ,14.257672884000002,kg +35062a87-21c3-317f-a83c-2abe412cc0cd,SESCO,II.1.1,Chubut,AR-U,annual,2015,gas oil combustion consumption by to the public,1534.65413472,TJ,CO2,74100.0,kg/TJ,113717871.382752,kg +9fe02220-9b4b-3deb-bc68-a58aa3f34432,SESCO,II.1.1,Chubut,AR-U,annual,2015,gas oil combustion consumption by to the public,1534.65413472,TJ,CH4,3.9,kg/TJ,5985.151125408,kg +9fe02220-9b4b-3deb-bc68-a58aa3f34432,SESCO,II.1.1,Chubut,AR-U,annual,2015,gas oil combustion consumption by to the public,1534.65413472,TJ,N2O,3.9,kg/TJ,5985.151125408,kg +813b0ba5-2de6-3ac4-8011-a15a1a806e18,SESCO,II.1.1,Córdoba,AR-X,annual,2015,gas oil combustion consumption by to the public,491.20180368,TJ,CO2,74100.0,kg/TJ,36398053.652688004,kg +4f71afaa-2222-39f7-946c-1f15aad0fda2,SESCO,II.1.1,Córdoba,AR-X,annual,2015,gas oil combustion consumption by to the public,491.20180368,TJ,CH4,3.9,kg/TJ,1915.687034352,kg +4f71afaa-2222-39f7-946c-1f15aad0fda2,SESCO,II.1.1,Córdoba,AR-X,annual,2015,gas oil combustion consumption by to the public,491.20180368,TJ,N2O,3.9,kg/TJ,1915.687034352,kg +d5c9f4d2-b700-3f68-833b-36a1c720e7de,SESCO,II.1.1,Entre Rios,AR-E,annual,2015,gas oil combustion consumption by to the public,554.08437588,TJ,CO2,74100.0,kg/TJ,41057652.252708,kg +6ca8db0f-493f-3bb6-9c03-0c49a4eccb92,SESCO,II.1.1,Entre Rios,AR-E,annual,2015,gas oil combustion consumption by to the public,554.08437588,TJ,CH4,3.9,kg/TJ,2160.929065932,kg +6ca8db0f-493f-3bb6-9c03-0c49a4eccb92,SESCO,II.1.1,Entre Rios,AR-E,annual,2015,gas oil combustion consumption by to the public,554.08437588,TJ,N2O,3.9,kg/TJ,2160.929065932,kg +60086b77-950f-3ffa-b0e9-e85d6244d774,SESCO,II.1.1,La Pampa,AR-L,annual,2015,gas oil combustion consumption by to the public,528.50216916,TJ,CO2,74100.0,kg/TJ,39162010.734756,kg +8b309489-1cd3-3130-bd74-46207406b2d7,SESCO,II.1.1,La Pampa,AR-L,annual,2015,gas oil combustion consumption by to the public,528.50216916,TJ,CH4,3.9,kg/TJ,2061.158459724,kg +8b309489-1cd3-3130-bd74-46207406b2d7,SESCO,II.1.1,La Pampa,AR-L,annual,2015,gas oil combustion consumption by to the public,528.50216916,TJ,N2O,3.9,kg/TJ,2061.158459724,kg +70a785c7-5c0b-3095-b817-6acccc385476,SESCO,II.1.1,Mendoza,AR-M,annual,2015,gas oil combustion consumption by to the public,52.474269119999995,TJ,CO2,74100.0,kg/TJ,3888343.3417919995,kg +f12332ee-033a-3f5a-859f-9092403e2cbf,SESCO,II.1.1,Mendoza,AR-M,annual,2015,gas oil combustion consumption by to the public,52.474269119999995,TJ,CH4,3.9,kg/TJ,204.64964956799997,kg +f12332ee-033a-3f5a-859f-9092403e2cbf,SESCO,II.1.1,Mendoza,AR-M,annual,2015,gas oil combustion consumption by to the public,52.474269119999995,TJ,N2O,3.9,kg/TJ,204.64964956799997,kg +fffc5cd2-f750-3af1-a53d-f845280ed292,SESCO,II.1.1,Neuquén,AR-Q,annual,2015,gas oil combustion consumption by to the public,913.8711808800001,TJ,CO2,74100.0,kg/TJ,67717854.50320801,kg +24ade537-0e57-3114-862b-f789259198b5,SESCO,II.1.1,Neuquén,AR-Q,annual,2015,gas oil combustion consumption by to the public,913.8711808800001,TJ,CH4,3.9,kg/TJ,3564.0976054320004,kg +24ade537-0e57-3114-862b-f789259198b5,SESCO,II.1.1,Neuquén,AR-Q,annual,2015,gas oil combustion consumption by to the public,913.8711808800001,TJ,N2O,3.9,kg/TJ,3564.0976054320004,kg +f24446c7-73a4-3497-b19c-c0d56543a9c9,SESCO,II.1.1,Rio Negro,AR-R,annual,2015,gas oil combustion consumption by to the public,2537.17632924,TJ,CO2,74100.0,kg/TJ,188004765.996684,kg +8f091495-3095-3513-9f51-3dc9fbdd9c42,SESCO,II.1.1,Rio Negro,AR-R,annual,2015,gas oil combustion consumption by to the public,2537.17632924,TJ,CH4,3.9,kg/TJ,9894.987684036,kg +8f091495-3095-3513-9f51-3dc9fbdd9c42,SESCO,II.1.1,Rio Negro,AR-R,annual,2015,gas oil combustion consumption by to the public,2537.17632924,TJ,N2O,3.9,kg/TJ,9894.987684036,kg +ab304372-ffb5-37df-a10b-32dba4a1c3e9,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2015,gas oil combustion consumption by to the public,1055.03059704,TJ,CO2,74100.0,kg/TJ,78177767.240664,kg +bb5ed65e-800e-3d43-ab3d-b9920613e6f0,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2015,gas oil combustion consumption by to the public,1055.03059704,TJ,CH4,3.9,kg/TJ,4114.6193284559995,kg +bb5ed65e-800e-3d43-ab3d-b9920613e6f0,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2015,gas oil combustion consumption by to the public,1055.03059704,TJ,N2O,3.9,kg/TJ,4114.6193284559995,kg +961b6b3b-2897-3947-8ed8-170b81d7a31a,SESCO,II.1.1,Santa Fe,AR-S,annual,2015,gas oil combustion consumption by to the public,420.83722631999996,TJ,CO2,74100.0,kg/TJ,31184038.470311996,kg +8938fc1d-c060-3c1f-9982-40972ce76648,SESCO,II.1.1,Santa Fe,AR-S,annual,2015,gas oil combustion consumption by to the public,420.83722631999996,TJ,CH4,3.9,kg/TJ,1641.2651826479998,kg +8938fc1d-c060-3c1f-9982-40972ce76648,SESCO,II.1.1,Santa Fe,AR-S,annual,2015,gas oil combustion consumption by to the public,420.83722631999996,TJ,N2O,3.9,kg/TJ,1641.2651826479998,kg +0a48c2f1-7bb2-3d53-94f5-4e20615b9b84,SESCO,II.1.1,Buenos Aires,AR-B,annual,2015,gas oil combustion consumption by to the public,1262.24728056,TJ,CO2,74100.0,kg/TJ,93532523.48949601,kg +20b29b39-d453-3d70-ace2-1843da201898,SESCO,II.1.1,Buenos Aires,AR-B,annual,2015,gas oil combustion consumption by to the public,1262.24728056,TJ,CH4,3.9,kg/TJ,4922.764394184,kg +20b29b39-d453-3d70-ace2-1843da201898,SESCO,II.1.1,Buenos Aires,AR-B,annual,2015,gas oil combustion consumption by to the public,1262.24728056,TJ,N2O,3.9,kg/TJ,4922.764394184,kg +719ad434-9d6f-3a4e-adf4-1987f38bd6c7,SESCO,II.1.1,Capital Federal,AR-C,annual,2015,gas oil combustion consumption by to the public,127.50825947999999,TJ,CO2,74100.0,kg/TJ,9448362.027468,kg +e8469442-6716-3333-8157-8bf051a6483c,SESCO,II.1.1,Capital Federal,AR-C,annual,2015,gas oil combustion consumption by to the public,127.50825947999999,TJ,CH4,3.9,kg/TJ,497.28221197199997,kg +e8469442-6716-3333-8157-8bf051a6483c,SESCO,II.1.1,Capital Federal,AR-C,annual,2015,gas oil combustion consumption by to the public,127.50825947999999,TJ,N2O,3.9,kg/TJ,497.28221197199997,kg +14c7461d-8ad1-3344-841e-820a84e82428,SESCO,II.1.1,Chubut,AR-U,annual,2015,gas oil combustion consumption by to the public,140.37662351999998,TJ,CO2,74100.0,kg/TJ,10401907.802831998,kg +cd7ab3f1-5f9d-36ee-86e3-c4316b8979f2,SESCO,II.1.1,Chubut,AR-U,annual,2015,gas oil combustion consumption by to the public,140.37662351999998,TJ,CH4,3.9,kg/TJ,547.4688317279999,kg +cd7ab3f1-5f9d-36ee-86e3-c4316b8979f2,SESCO,II.1.1,Chubut,AR-U,annual,2015,gas oil combustion consumption by to the public,140.37662351999998,TJ,N2O,3.9,kg/TJ,547.4688317279999,kg +148c0b5c-1757-3b5c-b5e2-fa4fd1e5a818,SESCO,II.1.1,Córdoba,AR-X,annual,2015,gas oil combustion consumption by to the public,98.23180752,TJ,CO2,74100.0,kg/TJ,7278976.937232,kg +96306c0c-2600-3baf-b40d-0a0efc3e1f62,SESCO,II.1.1,Córdoba,AR-X,annual,2015,gas oil combustion consumption by to the public,98.23180752,TJ,CH4,3.9,kg/TJ,383.10404932800003,kg +96306c0c-2600-3baf-b40d-0a0efc3e1f62,SESCO,II.1.1,Córdoba,AR-X,annual,2015,gas oil combustion consumption by to the public,98.23180752,TJ,N2O,3.9,kg/TJ,383.10404932800003,kg +4726bb79-672d-347b-a778-409a28f0cd9b,SESCO,II.1.1,Entre Rios,AR-E,annual,2015,gas oil combustion consumption by to the public,91.86699395999999,TJ,CO2,74100.0,kg/TJ,6807344.252435999,kg +b601964b-dd38-3b96-9e4b-96298d2c5e4a,SESCO,II.1.1,Entre Rios,AR-E,annual,2015,gas oil combustion consumption by to the public,91.86699395999999,TJ,CH4,3.9,kg/TJ,358.28127644399996,kg +b601964b-dd38-3b96-9e4b-96298d2c5e4a,SESCO,II.1.1,Entre Rios,AR-E,annual,2015,gas oil combustion consumption by to the public,91.86699395999999,TJ,N2O,3.9,kg/TJ,358.28127644399996,kg +08c8517b-645f-3203-a5a2-10db6c5cec64,SESCO,II.1.1,La Pampa,AR-L,annual,2015,gas oil combustion consumption by to the public,71.91224711999999,TJ,CO2,74100.0,kg/TJ,5328697.511591999,kg +ffbc7c3f-485b-3114-8324-716ac1387865,SESCO,II.1.1,La Pampa,AR-L,annual,2015,gas oil combustion consumption by to the public,71.91224711999999,TJ,CH4,3.9,kg/TJ,280.45776376799995,kg +ffbc7c3f-485b-3114-8324-716ac1387865,SESCO,II.1.1,La Pampa,AR-L,annual,2015,gas oil combustion consumption by to the public,71.91224711999999,TJ,N2O,3.9,kg/TJ,280.45776376799995,kg +d5e5cf83-62c5-3bd5-88be-1226556c4744,SESCO,II.1.1,Neuquén,AR-Q,annual,2015,gas oil combustion consumption by to the public,297.79498812,TJ,CO2,74100.0,kg/TJ,22066608.619692,kg +55daa6cd-4f75-3a6c-9326-592914b96cb7,SESCO,II.1.1,Neuquén,AR-Q,annual,2015,gas oil combustion consumption by to the public,297.79498812,TJ,CH4,3.9,kg/TJ,1161.4004536680002,kg +55daa6cd-4f75-3a6c-9326-592914b96cb7,SESCO,II.1.1,Neuquén,AR-Q,annual,2015,gas oil combustion consumption by to the public,297.79498812,TJ,N2O,3.9,kg/TJ,1161.4004536680002,kg +bbb2cf14-1513-36f4-a099-4dea9687cbb7,SESCO,II.1.1,Rio Negro,AR-R,annual,2015,gas oil combustion consumption by to the public,204.1784136,TJ,CO2,74100.0,kg/TJ,15129620.44776,kg +6dfc728d-5138-3ba7-b327-e8150c739c65,SESCO,II.1.1,Rio Negro,AR-R,annual,2015,gas oil combustion consumption by to the public,204.1784136,TJ,CH4,3.9,kg/TJ,796.29581304,kg +6dfc728d-5138-3ba7-b327-e8150c739c65,SESCO,II.1.1,Rio Negro,AR-R,annual,2015,gas oil combustion consumption by to the public,204.1784136,TJ,N2O,3.9,kg/TJ,796.29581304,kg +9f341421-422b-3982-a49f-0793194ea73d,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2015,gas oil combustion consumption by to the public,68.59469736,TJ,CO2,74100.0,kg/TJ,5082867.074376,kg +88a5b382-7850-30ca-978c-d81a5d2765b2,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2015,gas oil combustion consumption by to the public,68.59469736,TJ,CH4,3.9,kg/TJ,267.519319704,kg +88a5b382-7850-30ca-978c-d81a5d2765b2,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2015,gas oil combustion consumption by to the public,68.59469736,TJ,N2O,3.9,kg/TJ,267.519319704,kg +2a3a6a91-7270-3916-8af8-a966d6c3bf39,SESCO,II.1.1,Santa Fe,AR-S,annual,2015,gas oil combustion consumption by to the public,154.07715624,TJ,CO2,74100.0,kg/TJ,11417117.277384,kg +a446d41c-9133-3a1a-99c0-56b77e34538b,SESCO,II.1.1,Santa Fe,AR-S,annual,2015,gas oil combustion consumption by to the public,154.07715624,TJ,CH4,3.9,kg/TJ,600.9009093359999,kg +a446d41c-9133-3a1a-99c0-56b77e34538b,SESCO,II.1.1,Santa Fe,AR-S,annual,2015,gas oil combustion consumption by to the public,154.07715624,TJ,N2O,3.9,kg/TJ,600.9009093359999,kg +40a71d6c-791d-3282-a8a9-1068c4fb5c34,SESCO,II.2.1,Buenos Aires,AR-B,annual,2015,gas oil combustion consumption by railway transport,32.15012304,TJ,CO2,74100.0,kg/TJ,2382324.117264,kg +3b934d9c-a608-3267-9644-d4c83775900e,SESCO,II.2.1,Buenos Aires,AR-B,annual,2015,gas oil combustion consumption by railway transport,32.15012304,TJ,CH4,3.9,kg/TJ,125.38547985599999,kg +3b934d9c-a608-3267-9644-d4c83775900e,SESCO,II.2.1,Buenos Aires,AR-B,annual,2015,gas oil combustion consumption by railway transport,32.15012304,TJ,N2O,3.9,kg/TJ,125.38547985599999,kg +5d5acd89-b165-37eb-8f2a-74c332633e3a,SESCO,II.1.1,Buenos Aires,AR-B,annual,2015,gasoline combustion consumption by freight transport,1.085793,TJ,CO2,69300.0,kg/TJ,75245.4549,kg +6afe4e1d-c895-37cd-8cd6-ed31674c5112,SESCO,II.1.1,Buenos Aires,AR-B,annual,2015,gasoline combustion consumption by freight transport,1.085793,TJ,CH4,33.0,kg/TJ,35.831169,kg +d54db7ad-e0d3-3bc0-bbf9-4a4892a0ece5,SESCO,II.1.1,Buenos Aires,AR-B,annual,2015,gasoline combustion consumption by freight transport,1.085793,TJ,N2O,3.2,kg/TJ,3.4745376,kg +de5097b4-2818-33d2-a922-36ad700bf936,SESCO,II.1.1,Buenos Aires,AR-B,annual,2015,gas oil combustion consumption by freight transport,283.58328516,TJ,CO2,74100.0,kg/TJ,21013521.430356,kg +f79824d3-a8bc-3878-befe-7dc25f64e302,SESCO,II.1.1,Buenos Aires,AR-B,annual,2015,gas oil combustion consumption by freight transport,283.58328516,TJ,CH4,3.9,kg/TJ,1105.974812124,kg +f79824d3-a8bc-3878-befe-7dc25f64e302,SESCO,II.1.1,Buenos Aires,AR-B,annual,2015,gas oil combustion consumption by freight transport,283.58328516,TJ,N2O,3.9,kg/TJ,1105.974812124,kg +4af4318b-99ff-3ac4-b77a-9afe4d758417,SESCO,II.1.1,Chubut,AR-U,annual,2015,gas oil combustion consumption by freight transport,0.5326616399999999,TJ,CO2,74100.0,kg/TJ,39470.227523999994,kg +22f538cf-adf1-3714-b909-c075673b64aa,SESCO,II.1.1,Chubut,AR-U,annual,2015,gas oil combustion consumption by freight transport,0.5326616399999999,TJ,CH4,3.9,kg/TJ,2.0773803959999997,kg +22f538cf-adf1-3714-b909-c075673b64aa,SESCO,II.1.1,Chubut,AR-U,annual,2015,gas oil combustion consumption by freight transport,0.5326616399999999,TJ,N2O,3.9,kg/TJ,2.0773803959999997,kg +c3af7820-8265-331c-9daf-6a96c3586ad4,SESCO,II.1.1,San Luis,AR-D,annual,2015,gas oil combustion consumption by freight transport,68.2402518,TJ,CO2,74100.0,kg/TJ,5056602.65838,kg +117acec6-259f-314e-85c8-6582fa05503f,SESCO,II.1.1,San Luis,AR-D,annual,2015,gas oil combustion consumption by freight transport,68.2402518,TJ,CH4,3.9,kg/TJ,266.13698202,kg +117acec6-259f-314e-85c8-6582fa05503f,SESCO,II.1.1,San Luis,AR-D,annual,2015,gas oil combustion consumption by freight transport,68.2402518,TJ,N2O,3.9,kg/TJ,266.13698202,kg +2db9451d-6cb0-397f-a041-e1232676cb94,SESCO,II.1.1,Buenos Aires,AR-B,annual,2015,gas oil combustion consumption by freight transport,3.42041952,TJ,CO2,74100.0,kg/TJ,253453.08643199998,kg +9f968687-c513-3eea-806d-e69d18e57770,SESCO,II.1.1,Buenos Aires,AR-B,annual,2015,gas oil combustion consumption by freight transport,3.42041952,TJ,CH4,3.9,kg/TJ,13.339636127999999,kg +9f968687-c513-3eea-806d-e69d18e57770,SESCO,II.1.1,Buenos Aires,AR-B,annual,2015,gas oil combustion consumption by freight transport,3.42041952,TJ,N2O,3.9,kg/TJ,13.339636127999999,kg +ee253d82-19fc-3cb4-ac20-50fc6b839ebe,SESCO,II.1.1,Buenos Aires,AR-B,annual,2015,gas oil combustion consumption by public passenger transport,439.65520452,TJ,CO2,74100.0,kg/TJ,32578450.654932,kg +11965d67-789f-33ea-b491-70446b1748f3,SESCO,II.1.1,Buenos Aires,AR-B,annual,2015,gas oil combustion consumption by public passenger transport,439.65520452,TJ,CH4,3.9,kg/TJ,1714.655297628,kg +11965d67-789f-33ea-b491-70446b1748f3,SESCO,II.1.1,Buenos Aires,AR-B,annual,2015,gas oil combustion consumption by public passenger transport,439.65520452,TJ,N2O,3.9,kg/TJ,1714.655297628,kg +6e82297c-b061-3b65-9747-23222cfdfbb4,SESCO,II.1.1,Capital Federal,AR-C,annual,2015,gas oil combustion consumption by public passenger transport,58.76008824,TJ,CO2,74100.0,kg/TJ,4354122.538584,kg +26f16087-64e7-3a0e-9f4e-3f2d282626b1,SESCO,II.1.1,Capital Federal,AR-C,annual,2015,gas oil combustion consumption by public passenger transport,58.76008824,TJ,CH4,3.9,kg/TJ,229.164344136,kg +26f16087-64e7-3a0e-9f4e-3f2d282626b1,SESCO,II.1.1,Capital Federal,AR-C,annual,2015,gas oil combustion consumption by public passenger transport,58.76008824,TJ,N2O,3.9,kg/TJ,229.164344136,kg +e547dc82-dbac-3bea-ba03-4a7fe2f81f69,SESCO,II.1.1,Chubut,AR-U,annual,2015,gas oil combustion consumption by public passenger transport,35.23502388,TJ,CO2,74100.0,kg/TJ,2610915.269508,kg +f16ae9d4-6db7-3051-8661-734956136e9e,SESCO,II.1.1,Chubut,AR-U,annual,2015,gas oil combustion consumption by public passenger transport,35.23502388,TJ,CH4,3.9,kg/TJ,137.416593132,kg +f16ae9d4-6db7-3051-8661-734956136e9e,SESCO,II.1.1,Chubut,AR-U,annual,2015,gas oil combustion consumption by public passenger transport,35.23502388,TJ,N2O,3.9,kg/TJ,137.416593132,kg +1a9354b5-fc17-3bec-b771-efc364e7d864,SESCO,II.1.1,Córdoba,AR-X,annual,2015,gas oil combustion consumption by public passenger transport,283.72238328,TJ,CO2,74100.0,kg/TJ,21023828.601047996,kg +6af060ed-0019-350d-8bd0-5fec96d95c9c,SESCO,II.1.1,Córdoba,AR-X,annual,2015,gas oil combustion consumption by public passenger transport,283.72238328,TJ,CH4,3.9,kg/TJ,1106.5172947919998,kg +6af060ed-0019-350d-8bd0-5fec96d95c9c,SESCO,II.1.1,Córdoba,AR-X,annual,2015,gas oil combustion consumption by public passenger transport,283.72238328,TJ,N2O,3.9,kg/TJ,1106.5172947919998,kg +8402ab6d-987f-3e54-b2e4-b4737ef66586,SESCO,II.1.1,Neuquén,AR-Q,annual,2015,gas oil combustion consumption by public passenger transport,27.757750440000002,TJ,CO2,74100.0,kg/TJ,2056849.3076040002,kg +a1072ccd-4db6-393a-83e9-6640defc3cda,SESCO,II.1.1,Neuquén,AR-Q,annual,2015,gas oil combustion consumption by public passenger transport,27.757750440000002,TJ,CH4,3.9,kg/TJ,108.25522671600001,kg +a1072ccd-4db6-393a-83e9-6640defc3cda,SESCO,II.1.1,Neuquén,AR-Q,annual,2015,gas oil combustion consumption by public passenger transport,27.757750440000002,TJ,N2O,3.9,kg/TJ,108.25522671600001,kg +873495b9-f324-385b-bcea-ec64a5108d7a,SESCO,II.1.1,Rio Negro,AR-R,annual,2015,gas oil combustion consumption by public passenger transport,135.34369884,TJ,CO2,74100.0,kg/TJ,10028968.084044,kg +72b3209e-a5b8-3241-a6a6-fbe833cdd7ec,SESCO,II.1.1,Rio Negro,AR-R,annual,2015,gas oil combustion consumption by public passenger transport,135.34369884,TJ,CH4,3.9,kg/TJ,527.840425476,kg +72b3209e-a5b8-3241-a6a6-fbe833cdd7ec,SESCO,II.1.1,Rio Negro,AR-R,annual,2015,gas oil combustion consumption by public passenger transport,135.34369884,TJ,N2O,3.9,kg/TJ,527.840425476,kg +41346242-9270-30b0-b191-f8e43c486357,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2015,gas oil combustion consumption by public passenger transport,5.545900919999999,TJ,CO2,74100.0,kg/TJ,410951.25817199994,kg +537dd183-f299-3b9a-8ea4-cf45a2075059,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2015,gas oil combustion consumption by public passenger transport,5.545900919999999,TJ,CH4,3.9,kg/TJ,21.629013587999996,kg +537dd183-f299-3b9a-8ea4-cf45a2075059,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2015,gas oil combustion consumption by public passenger transport,5.545900919999999,TJ,N2O,3.9,kg/TJ,21.629013587999996,kg +9835d48c-c7a0-3f1b-b4db-6ee4c9a6cbae,SESCO,II.1.1,Santa Fe,AR-S,annual,2015,gas oil combustion consumption by public passenger transport,6.38738856,TJ,CO2,74100.0,kg/TJ,473305.492296,kg +bea94718-9c59-3a12-ab02-3b5104894abe,SESCO,II.1.1,Santa Fe,AR-S,annual,2015,gas oil combustion consumption by public passenger transport,6.38738856,TJ,CH4,3.9,kg/TJ,24.910815384,kg +bea94718-9c59-3a12-ab02-3b5104894abe,SESCO,II.1.1,Santa Fe,AR-S,annual,2015,gas oil combustion consumption by public passenger transport,6.38738856,TJ,N2O,3.9,kg/TJ,24.910815384,kg +da1c421e-13d9-32cf-96fd-330f0db6cf06,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2015,gas oil combustion consumption by public passenger transport,0.17922744,TJ,CO2,74100.0,kg/TJ,13280.753304,kg +0d5e1a37-05d9-3daa-ab92-70a5f0c3f7a4,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2015,gas oil combustion consumption by public passenger transport,0.17922744,TJ,CH4,3.9,kg/TJ,0.6989870159999999,kg +0d5e1a37-05d9-3daa-ab92-70a5f0c3f7a4,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2015,gas oil combustion consumption by public passenger transport,0.17922744,TJ,N2O,3.9,kg/TJ,0.6989870159999999,kg +9fa27f70-410f-34d8-ab05-4222279bd86a,SESCO,II.1.1,Buenos Aires,AR-B,annual,2015,gas oil combustion consumption by to the public,707.4752159999999,TJ,CO2,74100.0,kg/TJ,52423913.5056,kg +d385955e-f98b-36a0-85ad-4e683dd3b8cf,SESCO,II.1.1,Buenos Aires,AR-B,annual,2015,gas oil combustion consumption by to the public,707.4752159999999,TJ,CH4,3.9,kg/TJ,2759.1533423999995,kg +d385955e-f98b-36a0-85ad-4e683dd3b8cf,SESCO,II.1.1,Buenos Aires,AR-B,annual,2015,gas oil combustion consumption by to the public,707.4752159999999,TJ,N2O,3.9,kg/TJ,2759.1533423999995,kg +d4851e5b-0c70-3ad2-a290-90951b9b83c5,SESCO,II.1.1,Capital Federal,AR-C,annual,2015,gas oil combustion consumption by to the public,12.17244,TJ,CO2,74100.0,kg/TJ,901977.804,kg +ed3328fc-46d6-3020-87fe-4f66cf3c3414,SESCO,II.1.1,Capital Federal,AR-C,annual,2015,gas oil combustion consumption by to the public,12.17244,TJ,CH4,3.9,kg/TJ,47.472516,kg +ed3328fc-46d6-3020-87fe-4f66cf3c3414,SESCO,II.1.1,Capital Federal,AR-C,annual,2015,gas oil combustion consumption by to the public,12.17244,TJ,N2O,3.9,kg/TJ,47.472516,kg +d814e8bc-7a46-3120-b84f-2a3ce57f16ac,SESCO,II.1.1,Córdoba,AR-X,annual,2015,gas oil combustion consumption by to the public,310.48752,TJ,CO2,74100.0,kg/TJ,23007125.232,kg +36e7897d-7e0f-3208-b7c8-d5bdf4200bab,SESCO,II.1.1,Córdoba,AR-X,annual,2015,gas oil combustion consumption by to the public,310.48752,TJ,CH4,3.9,kg/TJ,1210.9013280000001,kg +36e7897d-7e0f-3208-b7c8-d5bdf4200bab,SESCO,II.1.1,Córdoba,AR-X,annual,2015,gas oil combustion consumption by to the public,310.48752,TJ,N2O,3.9,kg/TJ,1210.9013280000001,kg +622a82ac-3138-3413-be9d-cf1da9dcb07a,SESCO,II.1.1,Entre Rios,AR-E,annual,2015,gas oil combustion consumption by to the public,21.4914,TJ,CO2,74100.0,kg/TJ,1592512.74,kg +3eccd9f9-8e22-36dc-8161-baff23f14c43,SESCO,II.1.1,Entre Rios,AR-E,annual,2015,gas oil combustion consumption by to the public,21.4914,TJ,CH4,3.9,kg/TJ,83.81645999999999,kg +3eccd9f9-8e22-36dc-8161-baff23f14c43,SESCO,II.1.1,Entre Rios,AR-E,annual,2015,gas oil combustion consumption by to the public,21.4914,TJ,N2O,3.9,kg/TJ,83.81645999999999,kg +5d52d47e-b398-3156-9be4-acc7bfbca34f,SESCO,II.1.1,Salta,AR-A,annual,2015,gas oil combustion consumption by to the public,1.22808,TJ,CO2,74100.0,kg/TJ,91000.728,kg +272fc265-5bd2-387d-a355-fecafb508894,SESCO,II.1.1,Salta,AR-A,annual,2015,gas oil combustion consumption by to the public,1.22808,TJ,CH4,3.9,kg/TJ,4.789512,kg +272fc265-5bd2-387d-a355-fecafb508894,SESCO,II.1.1,Salta,AR-A,annual,2015,gas oil combustion consumption by to the public,1.22808,TJ,N2O,3.9,kg/TJ,4.789512,kg +2253786e-c948-3572-93a6-3e7fb06dbf6b,SESCO,II.1.1,Santa Fe,AR-S,annual,2015,gas oil combustion consumption by to the public,49.80948,TJ,CO2,74100.0,kg/TJ,3690882.468,kg +3ef11998-9a49-3340-bcbe-0e78d9ce4183,SESCO,II.1.1,Santa Fe,AR-S,annual,2015,gas oil combustion consumption by to the public,49.80948,TJ,CH4,3.9,kg/TJ,194.256972,kg +3ef11998-9a49-3340-bcbe-0e78d9ce4183,SESCO,II.1.1,Santa Fe,AR-S,annual,2015,gas oil combustion consumption by to the public,49.80948,TJ,N2O,3.9,kg/TJ,194.256972,kg +d4bdc1a4-6d82-3801-9ba2-074f0b8ae917,SESCO,II.1.1,Buenos Aires,AR-B,annual,2015,gas oil combustion consumption by to the public,99.88986,TJ,CO2,74100.0,kg/TJ,7401838.626,kg +79713691-9b74-31d5-af24-0282e9c12b4c,SESCO,II.1.1,Buenos Aires,AR-B,annual,2015,gas oil combustion consumption by to the public,99.88986,TJ,CH4,3.9,kg/TJ,389.570454,kg +79713691-9b74-31d5-af24-0282e9c12b4c,SESCO,II.1.1,Buenos Aires,AR-B,annual,2015,gas oil combustion consumption by to the public,99.88986,TJ,N2O,3.9,kg/TJ,389.570454,kg +cb9cec1e-dda9-34fb-acc5-8e12b7132f4c,SESCO,II.1.1,Capital Federal,AR-C,annual,2015,gas oil combustion consumption by to the public,7.47684,TJ,CO2,74100.0,kg/TJ,554033.844,kg +f4e4ac8d-7a66-398f-8866-b4d4efbf87c0,SESCO,II.1.1,Capital Federal,AR-C,annual,2015,gas oil combustion consumption by to the public,7.47684,TJ,CH4,3.9,kg/TJ,29.159676,kg +f4e4ac8d-7a66-398f-8866-b4d4efbf87c0,SESCO,II.1.1,Capital Federal,AR-C,annual,2015,gas oil combustion consumption by to the public,7.47684,TJ,N2O,3.9,kg/TJ,29.159676,kg +051fb0a4-3061-3963-b2f7-e1a751ab8b8b,SESCO,II.1.1,Córdoba,AR-X,annual,2015,gas oil combustion consumption by to the public,6.53772,TJ,CO2,74100.0,kg/TJ,484445.052,kg +40922a9f-e286-3088-8931-f2512d7fd90f,SESCO,II.1.1,Córdoba,AR-X,annual,2015,gas oil combustion consumption by to the public,6.53772,TJ,CH4,3.9,kg/TJ,25.497108,kg +40922a9f-e286-3088-8931-f2512d7fd90f,SESCO,II.1.1,Córdoba,AR-X,annual,2015,gas oil combustion consumption by to the public,6.53772,TJ,N2O,3.9,kg/TJ,25.497108,kg +28387d03-7481-36f3-bbc9-afef05e4947b,SESCO,II.1.1,Entre Rios,AR-E,annual,2015,gas oil combustion consumption by to the public,3.53976,TJ,CO2,74100.0,kg/TJ,262296.21599999996,kg +2d363b84-2f38-3cf0-8973-2cb18e928846,SESCO,II.1.1,Entre Rios,AR-E,annual,2015,gas oil combustion consumption by to the public,3.53976,TJ,CH4,3.9,kg/TJ,13.805063999999998,kg +2d363b84-2f38-3cf0-8973-2cb18e928846,SESCO,II.1.1,Entre Rios,AR-E,annual,2015,gas oil combustion consumption by to the public,3.53976,TJ,N2O,3.9,kg/TJ,13.805063999999998,kg +65bb37bc-a0cb-375b-946e-a4a49a532c7d,SESCO,II.1.1,Santa Fe,AR-S,annual,2015,gas oil combustion consumption by to the public,9.46344,TJ,CO2,74100.0,kg/TJ,701240.904,kg +23ab6742-da88-317a-9497-9aeb81be017e,SESCO,II.1.1,Santa Fe,AR-S,annual,2015,gas oil combustion consumption by to the public,9.46344,TJ,CH4,3.9,kg/TJ,36.907416,kg +23ab6742-da88-317a-9497-9aeb81be017e,SESCO,II.1.1,Santa Fe,AR-S,annual,2015,gas oil combustion consumption by to the public,9.46344,TJ,N2O,3.9,kg/TJ,36.907416,kg +b1404367-cd27-3861-af21-f561655d1bb6,SESCO,II.1.1,Catamarca,AR-K,annual,2015,gas oil combustion consumption by to the public,208.233606,TJ,CO2,74100.0,kg/TJ,15430110.2046,kg +71327c8c-7f8f-3607-8275-2bba7f118406,SESCO,II.1.1,Catamarca,AR-K,annual,2015,gas oil combustion consumption by to the public,208.233606,TJ,CH4,3.9,kg/TJ,812.1110634,kg +71327c8c-7f8f-3607-8275-2bba7f118406,SESCO,II.1.1,Catamarca,AR-K,annual,2015,gas oil combustion consumption by to the public,208.233606,TJ,N2O,3.9,kg/TJ,812.1110634,kg +17d0e4d4-7256-3a71-b2d5-353bbd677b3e,SESCO,II.1.1,Chaco,AR-H,annual,2015,gas oil combustion consumption by to the public,113.0028648,TJ,CO2,74100.0,kg/TJ,8373512.28168,kg +ae3e1bb1-f963-3998-881b-489781c49f21,SESCO,II.1.1,Chaco,AR-H,annual,2015,gas oil combustion consumption by to the public,113.0028648,TJ,CH4,3.9,kg/TJ,440.71117272,kg +ae3e1bb1-f963-3998-881b-489781c49f21,SESCO,II.1.1,Chaco,AR-H,annual,2015,gas oil combustion consumption by to the public,113.0028648,TJ,N2O,3.9,kg/TJ,440.71117272,kg +8ba60dbf-2758-3e8c-a167-aea875654209,SESCO,II.1.1,Córdoba,AR-X,annual,2015,gas oil combustion consumption by to the public,0.0050568,TJ,CO2,74100.0,kg/TJ,374.70888,kg +78da9a55-0a23-3474-8a5f-ea2abdf86eb7,SESCO,II.1.1,Córdoba,AR-X,annual,2015,gas oil combustion consumption by to the public,0.0050568,TJ,CH4,3.9,kg/TJ,0.01972152,kg +78da9a55-0a23-3474-8a5f-ea2abdf86eb7,SESCO,II.1.1,Córdoba,AR-X,annual,2015,gas oil combustion consumption by to the public,0.0050568,TJ,N2O,3.9,kg/TJ,0.01972152,kg +87a2c9ed-79ec-38b1-a849-bb5f293d7d5f,SESCO,II.1.1,Jujuy,AR-Y,annual,2015,gas oil combustion consumption by to the public,817.1629871999999,TJ,CO2,74100.0,kg/TJ,60551777.35151999,kg +19c626ea-79db-3972-b230-fc1edefbc0ee,SESCO,II.1.1,Jujuy,AR-Y,annual,2015,gas oil combustion consumption by to the public,817.1629871999999,TJ,CH4,3.9,kg/TJ,3186.9356500799995,kg +19c626ea-79db-3972-b230-fc1edefbc0ee,SESCO,II.1.1,Jujuy,AR-Y,annual,2015,gas oil combustion consumption by to the public,817.1629871999999,TJ,N2O,3.9,kg/TJ,3186.9356500799995,kg +5a55100d-9c91-3424-87b4-ef10fc1683b9,SESCO,II.1.1,La Rioja,AR-F,annual,2015,gas oil combustion consumption by to the public,153.7082988,TJ,CO2,74100.0,kg/TJ,11389784.94108,kg +5fbda1d6-0a3b-3159-b372-825da103abef,SESCO,II.1.1,La Rioja,AR-F,annual,2015,gas oil combustion consumption by to the public,153.7082988,TJ,CH4,3.9,kg/TJ,599.46236532,kg +5fbda1d6-0a3b-3159-b372-825da103abef,SESCO,II.1.1,La Rioja,AR-F,annual,2015,gas oil combustion consumption by to the public,153.7082988,TJ,N2O,3.9,kg/TJ,599.46236532,kg +f6677296-2c64-3f2d-a5d6-a2de3a1aaf7b,SESCO,II.1.1,Salta,AR-A,annual,2015,gas oil combustion consumption by to the public,2151.3140628,TJ,CO2,74100.0,kg/TJ,159412372.05348,kg +9952b020-a466-316a-98b4-929b645e9bb3,SESCO,II.1.1,Salta,AR-A,annual,2015,gas oil combustion consumption by to the public,2151.3140628,TJ,CH4,3.9,kg/TJ,8390.12484492,kg +9952b020-a466-316a-98b4-929b645e9bb3,SESCO,II.1.1,Salta,AR-A,annual,2015,gas oil combustion consumption by to the public,2151.3140628,TJ,N2O,3.9,kg/TJ,8390.12484492,kg +b6fe7941-421e-3b63-af3b-04bb93bfcf20,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2015,gas oil combustion consumption by to the public,348.3300828,TJ,CO2,74100.0,kg/TJ,25811259.13548,kg +e86b6571-80eb-34ee-b8fd-39f0a48e9ffb,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2015,gas oil combustion consumption by to the public,348.3300828,TJ,CH4,3.9,kg/TJ,1358.48732292,kg +e86b6571-80eb-34ee-b8fd-39f0a48e9ffb,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2015,gas oil combustion consumption by to the public,348.3300828,TJ,N2O,3.9,kg/TJ,1358.48732292,kg +b0b2fc9d-f0d8-3752-bddf-fb4f19d68f09,SESCO,II.1.1,Tucuman,AR-T,annual,2015,gas oil combustion consumption by to the public,2474.1687096,TJ,CO2,74100.0,kg/TJ,183335901.38136,kg +6802a36a-3228-31ea-b99f-257beeef2cdc,SESCO,II.1.1,Tucuman,AR-T,annual,2015,gas oil combustion consumption by to the public,2474.1687096,TJ,CH4,3.9,kg/TJ,9649.25796744,kg +6802a36a-3228-31ea-b99f-257beeef2cdc,SESCO,II.1.1,Tucuman,AR-T,annual,2015,gas oil combustion consumption by to the public,2474.1687096,TJ,N2O,3.9,kg/TJ,9649.25796744,kg +c67da380-eb78-3e41-938d-fb992b728529,SESCO,II.1.1,Catamarca,AR-K,annual,2015,gas oil combustion consumption by to the public,19.4914356,TJ,CO2,74100.0,kg/TJ,1444315.37796,kg +b5c5096a-aee1-3519-aff5-99bcf133d956,SESCO,II.1.1,Catamarca,AR-K,annual,2015,gas oil combustion consumption by to the public,19.4914356,TJ,CH4,3.9,kg/TJ,76.01659884,kg +b5c5096a-aee1-3519-aff5-99bcf133d956,SESCO,II.1.1,Catamarca,AR-K,annual,2015,gas oil combustion consumption by to the public,19.4914356,TJ,N2O,3.9,kg/TJ,76.01659884,kg +00a5c952-a873-3f3a-bd1d-7efa808462a2,SESCO,II.1.1,Chaco,AR-H,annual,2015,gas oil combustion consumption by to the public,5.4664008,TJ,CO2,74100.0,kg/TJ,405060.29928,kg +907a5243-9454-3925-b3e4-ee1699acb0fd,SESCO,II.1.1,Chaco,AR-H,annual,2015,gas oil combustion consumption by to the public,5.4664008,TJ,CH4,3.9,kg/TJ,21.31896312,kg +907a5243-9454-3925-b3e4-ee1699acb0fd,SESCO,II.1.1,Chaco,AR-H,annual,2015,gas oil combustion consumption by to the public,5.4664008,TJ,N2O,3.9,kg/TJ,21.31896312,kg +3facbb04-3ac7-33cb-9930-bf39b4e24be4,SESCO,II.1.1,Jujuy,AR-Y,annual,2015,gas oil combustion consumption by to the public,27.971689199999997,TJ,CO2,74100.0,kg/TJ,2072702.1697199997,kg +9490913a-d1d8-39e1-a449-f748891f99ec,SESCO,II.1.1,Jujuy,AR-Y,annual,2015,gas oil combustion consumption by to the public,27.971689199999997,TJ,CH4,3.9,kg/TJ,109.08958787999998,kg +9490913a-d1d8-39e1-a449-f748891f99ec,SESCO,II.1.1,Jujuy,AR-Y,annual,2015,gas oil combustion consumption by to the public,27.971689199999997,TJ,N2O,3.9,kg/TJ,109.08958787999998,kg +6c6864a6-3dae-3cbd-be01-44c34fa81542,SESCO,II.1.1,La Rioja,AR-F,annual,2015,gas oil combustion consumption by to the public,14.2796808,TJ,CO2,74100.0,kg/TJ,1058124.3472799999,kg +973313b9-ccc8-384d-adb8-b7b64545e438,SESCO,II.1.1,La Rioja,AR-F,annual,2015,gas oil combustion consumption by to the public,14.2796808,TJ,CH4,3.9,kg/TJ,55.69075512,kg +973313b9-ccc8-384d-adb8-b7b64545e438,SESCO,II.1.1,La Rioja,AR-F,annual,2015,gas oil combustion consumption by to the public,14.2796808,TJ,N2O,3.9,kg/TJ,55.69075512,kg +a6690a97-30cb-3f0b-b627-219bb973107f,SESCO,II.1.1,Salta,AR-A,annual,2015,gas oil combustion consumption by to the public,66.7999668,TJ,CO2,74100.0,kg/TJ,4949877.539880001,kg +b6d105ca-da5a-3a1f-9d23-8b79cd77c871,SESCO,II.1.1,Salta,AR-A,annual,2015,gas oil combustion consumption by to the public,66.7999668,TJ,CH4,3.9,kg/TJ,260.51987052000004,kg +b6d105ca-da5a-3a1f-9d23-8b79cd77c871,SESCO,II.1.1,Salta,AR-A,annual,2015,gas oil combustion consumption by to the public,66.7999668,TJ,N2O,3.9,kg/TJ,260.51987052000004,kg +f9e7ad6b-f8fc-335f-b670-d058af6e027a,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2015,gas oil combustion consumption by to the public,38.829,TJ,CO2,74100.0,kg/TJ,2877228.9,kg +e83a7058-38d2-3c83-b282-852fe40a8023,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2015,gas oil combustion consumption by to the public,38.829,TJ,CH4,3.9,kg/TJ,151.4331,kg +e83a7058-38d2-3c83-b282-852fe40a8023,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2015,gas oil combustion consumption by to the public,38.829,TJ,N2O,3.9,kg/TJ,151.4331,kg +009d73a2-0409-3a86-bb43-2c0c27580b6e,SESCO,II.1.1,Tucuman,AR-T,annual,2015,gas oil combustion consumption by to the public,122.0967972,TJ,CO2,74100.0,kg/TJ,9047372.67252,kg +ae06977d-f338-3e8c-be90-44363096c3f7,SESCO,II.1.1,Tucuman,AR-T,annual,2015,gas oil combustion consumption by to the public,122.0967972,TJ,CH4,3.9,kg/TJ,476.17750908,kg +ae06977d-f338-3e8c-be90-44363096c3f7,SESCO,II.1.1,Tucuman,AR-T,annual,2015,gas oil combustion consumption by to the public,122.0967972,TJ,N2O,3.9,kg/TJ,476.17750908,kg +04b7bc36-0cb4-3760-84db-00c25532068c,SESCO,I.3.1,Buenos Aires,AR-B,annual,2015,gasoline combustion consumption by petrochemical industries,4.479616,TJ,CO2,69300.0,kg/TJ,310437.3888,kg +1bf742d9-76e9-3e4d-a992-2ac83c04a1d6,SESCO,I.3.1,Buenos Aires,AR-B,annual,2015,gasoline combustion consumption by petrochemical industries,4.479616,TJ,CH4,33.0,kg/TJ,147.827328,kg +c0e1cc08-628c-36a9-b5ae-268b3ce751a0,SESCO,I.3.1,Buenos Aires,AR-B,annual,2015,gasoline combustion consumption by petrochemical industries,4.479616,TJ,N2O,3.2,kg/TJ,14.3347712,kg +c2d5d190-4b1f-38db-ad77-65a3884b8044,SESCO,II.5.1,Capital Federal,AR-C,annual,2015,gasoline combustion consumption by agriculture machines,60.248,TJ,CO2,69300.0,kg/TJ,4175186.4,kg +604b4395-e7ed-3144-9d6e-fb714c896013,SESCO,II.5.1,Capital Federal,AR-C,annual,2015,gasoline combustion consumption by agriculture machines,60.248,TJ,CH4,33.0,kg/TJ,1988.184,kg +b30cd947-b34f-330f-9b1c-f09b0131cc07,SESCO,II.5.1,Capital Federal,AR-C,annual,2015,gasoline combustion consumption by agriculture machines,60.248,TJ,N2O,3.2,kg/TJ,192.7936,kg +e6021fba-0bd3-3f18-8f69-be382a49da43,SESCO,II.5.1,Buenos Aires,AR-B,annual,2015,gas oil combustion consumption by agriculture machines,440.55564,TJ,CO2,74100.0,kg/TJ,32645172.924,kg +7035be4e-fd37-3586-a359-a5631913600e,SESCO,II.5.1,Buenos Aires,AR-B,annual,2015,gas oil combustion consumption by agriculture machines,440.55564,TJ,CH4,3.9,kg/TJ,1718.166996,kg +7035be4e-fd37-3586-a359-a5631913600e,SESCO,II.5.1,Buenos Aires,AR-B,annual,2015,gas oil combustion consumption by agriculture machines,440.55564,TJ,N2O,3.9,kg/TJ,1718.166996,kg +e3d73b30-a3c0-3172-9ee8-4c8b9566d1ea,SESCO,II.5.1,Capital Federal,AR-C,annual,2015,gas oil combustion consumption by agriculture machines,21.16632,TJ,CO2,74100.0,kg/TJ,1568424.312,kg +26b83eec-daf3-3636-a54e-83821c20b080,SESCO,II.5.1,Capital Federal,AR-C,annual,2015,gas oil combustion consumption by agriculture machines,21.16632,TJ,CH4,3.9,kg/TJ,82.548648,kg +26b83eec-daf3-3636-a54e-83821c20b080,SESCO,II.5.1,Capital Federal,AR-C,annual,2015,gas oil combustion consumption by agriculture machines,21.16632,TJ,N2O,3.9,kg/TJ,82.548648,kg +1f141379-a5e9-3d58-94b7-a2c353f80517,SESCO,II.5.1,Córdoba,AR-X,annual,2015,gas oil combustion consumption by agriculture machines,166.07976,TJ,CO2,74100.0,kg/TJ,12306510.216,kg +139e20c5-59e1-3e56-8c9f-d917ce958207,SESCO,II.5.1,Córdoba,AR-X,annual,2015,gas oil combustion consumption by agriculture machines,166.07976,TJ,CH4,3.9,kg/TJ,647.711064,kg +139e20c5-59e1-3e56-8c9f-d917ce958207,SESCO,II.5.1,Córdoba,AR-X,annual,2015,gas oil combustion consumption by agriculture machines,166.07976,TJ,N2O,3.9,kg/TJ,647.711064,kg +1ba327d0-f9ce-351e-81c8-810340c989d3,SESCO,II.5.1,Santa Fe,AR-S,annual,2015,gas oil combustion consumption by agriculture machines,482.77992,TJ,CO2,74100.0,kg/TJ,35773992.072,kg +caec9172-e3af-3008-aadb-fcc0e707702a,SESCO,II.5.1,Santa Fe,AR-S,annual,2015,gas oil combustion consumption by agriculture machines,482.77992,TJ,CH4,3.9,kg/TJ,1882.841688,kg +caec9172-e3af-3008-aadb-fcc0e707702a,SESCO,II.5.1,Santa Fe,AR-S,annual,2015,gas oil combustion consumption by agriculture machines,482.77992,TJ,N2O,3.9,kg/TJ,1882.841688,kg +432b9c12-d887-35d6-a960-6a4df53626f5,SESCO,II.5.1,Buenos Aires,AR-B,annual,2015,gas oil combustion consumption by agriculture machines,7.26012,TJ,CO2,74100.0,kg/TJ,537974.892,kg +77bc9fe8-5005-3940-a105-affb5737a1c9,SESCO,II.5.1,Buenos Aires,AR-B,annual,2015,gas oil combustion consumption by agriculture machines,7.26012,TJ,CH4,3.9,kg/TJ,28.314467999999998,kg +77bc9fe8-5005-3940-a105-affb5737a1c9,SESCO,II.5.1,Buenos Aires,AR-B,annual,2015,gas oil combustion consumption by agriculture machines,7.26012,TJ,N2O,3.9,kg/TJ,28.314467999999998,kg +6272e44a-681e-3b6f-8c71-481df3bc7ac5,SESCO,II.5.1,Santa Fe,AR-S,annual,2015,gas oil combustion consumption by agriculture machines,21.63588,TJ,CO2,74100.0,kg/TJ,1603218.708,kg +2d74ee74-c249-3d44-9c29-f94df4d851b3,SESCO,II.5.1,Santa Fe,AR-S,annual,2015,gas oil combustion consumption by agriculture machines,21.63588,TJ,CH4,3.9,kg/TJ,84.379932,kg +2d74ee74-c249-3d44-9c29-f94df4d851b3,SESCO,II.5.1,Santa Fe,AR-S,annual,2015,gas oil combustion consumption by agriculture machines,21.63588,TJ,N2O,3.9,kg/TJ,84.379932,kg +356cb051-a1e2-37ee-94cf-e48575bcc418,SESCO,II.1.1,Buenos Aires,AR-B,annual,2015,gas oil combustion consumption by to the public,12129.6378,TJ,CO2,74100.0,kg/TJ,898806160.98,kg +49841838-8507-3a62-874c-a3693825becc,SESCO,II.1.1,Buenos Aires,AR-B,annual,2015,gas oil combustion consumption by to the public,12129.6378,TJ,CH4,3.9,kg/TJ,47305.58742,kg +49841838-8507-3a62-874c-a3693825becc,SESCO,II.1.1,Buenos Aires,AR-B,annual,2015,gas oil combustion consumption by to the public,12129.6378,TJ,N2O,3.9,kg/TJ,47305.58742,kg +3ee2a0ca-f37d-3c1a-9fee-b5a3bf0cb09d,SESCO,II.1.1,Capital Federal,AR-C,annual,2015,gas oil combustion consumption by to the public,1186.6142399999999,TJ,CO2,74100.0,kg/TJ,87928115.18399999,kg +0992e129-1c2c-3116-adc3-d438861831f6,SESCO,II.1.1,Capital Federal,AR-C,annual,2015,gas oil combustion consumption by to the public,1186.6142399999999,TJ,CH4,3.9,kg/TJ,4627.795536,kg +0992e129-1c2c-3116-adc3-d438861831f6,SESCO,II.1.1,Capital Federal,AR-C,annual,2015,gas oil combustion consumption by to the public,1186.6142399999999,TJ,N2O,3.9,kg/TJ,4627.795536,kg +e6b45fe4-2f09-3ab8-871f-4be677f4e526,SESCO,II.1.1,Catamarca,AR-K,annual,2015,gas oil combustion consumption by to the public,13.76172,TJ,CO2,74100.0,kg/TJ,1019743.452,kg +582689f9-6bb5-3951-bf34-7ed036f171b0,SESCO,II.1.1,Catamarca,AR-K,annual,2015,gas oil combustion consumption by to the public,13.76172,TJ,CH4,3.9,kg/TJ,53.670708,kg +582689f9-6bb5-3951-bf34-7ed036f171b0,SESCO,II.1.1,Catamarca,AR-K,annual,2015,gas oil combustion consumption by to the public,13.76172,TJ,N2O,3.9,kg/TJ,53.670708,kg +790057af-ddfb-3bf1-8c02-6fd688b938cd,SESCO,II.1.1,Chaco,AR-H,annual,2015,gas oil combustion consumption by to the public,1610.37408,TJ,CO2,74100.0,kg/TJ,119328719.32800001,kg +f312371d-9b69-3c5e-9c22-d1c1a83ccbd4,SESCO,II.1.1,Chaco,AR-H,annual,2015,gas oil combustion consumption by to the public,1610.37408,TJ,CH4,3.9,kg/TJ,6280.458912,kg +f312371d-9b69-3c5e-9c22-d1c1a83ccbd4,SESCO,II.1.1,Chaco,AR-H,annual,2015,gas oil combustion consumption by to the public,1610.37408,TJ,N2O,3.9,kg/TJ,6280.458912,kg +a194cb13-5e14-360c-988e-49b58c965e4d,SESCO,II.1.1,Corrientes,AR-W,annual,2015,gas oil combustion consumption by to the public,651.71316,TJ,CO2,74100.0,kg/TJ,48291945.156,kg +37f64efb-14fc-376b-8885-f8d708e33c4e,SESCO,II.1.1,Corrientes,AR-W,annual,2015,gas oil combustion consumption by to the public,651.71316,TJ,CH4,3.9,kg/TJ,2541.681324,kg +37f64efb-14fc-376b-8885-f8d708e33c4e,SESCO,II.1.1,Corrientes,AR-W,annual,2015,gas oil combustion consumption by to the public,651.71316,TJ,N2O,3.9,kg/TJ,2541.681324,kg +7ae40664-303c-3da1-9e4c-4d7386277436,SESCO,II.1.1,Córdoba,AR-X,annual,2015,gas oil combustion consumption by to the public,5083.78164,TJ,CO2,74100.0,kg/TJ,376708219.524,kg +5a025d6f-f258-3e2d-ba4d-ea720e232fe9,SESCO,II.1.1,Córdoba,AR-X,annual,2015,gas oil combustion consumption by to the public,5083.78164,TJ,CH4,3.9,kg/TJ,19826.748396,kg +5a025d6f-f258-3e2d-ba4d-ea720e232fe9,SESCO,II.1.1,Córdoba,AR-X,annual,2015,gas oil combustion consumption by to the public,5083.78164,TJ,N2O,3.9,kg/TJ,19826.748396,kg +14c93f77-7165-377b-bf90-ba19b35ad1fc,SESCO,II.1.1,Entre Rios,AR-E,annual,2015,gas oil combustion consumption by to the public,1131.60348,TJ,CO2,74100.0,kg/TJ,83851817.868,kg +b8823e0c-03a7-31a7-90fc-e2e653cc0f49,SESCO,II.1.1,Entre Rios,AR-E,annual,2015,gas oil combustion consumption by to the public,1131.60348,TJ,CH4,3.9,kg/TJ,4413.253572,kg +b8823e0c-03a7-31a7-90fc-e2e653cc0f49,SESCO,II.1.1,Entre Rios,AR-E,annual,2015,gas oil combustion consumption by to the public,1131.60348,TJ,N2O,3.9,kg/TJ,4413.253572,kg +ab8f94d2-35c5-377c-bd20-a6f3aa538100,SESCO,II.1.1,Formosa,AR-P,annual,2015,gas oil combustion consumption by to the public,172.68972,TJ,CO2,74100.0,kg/TJ,12796308.252,kg +78d37211-8ab4-3f0d-a3fa-188375d09f3f,SESCO,II.1.1,Formosa,AR-P,annual,2015,gas oil combustion consumption by to the public,172.68972,TJ,CH4,3.9,kg/TJ,673.489908,kg +78d37211-8ab4-3f0d-a3fa-188375d09f3f,SESCO,II.1.1,Formosa,AR-P,annual,2015,gas oil combustion consumption by to the public,172.68972,TJ,N2O,3.9,kg/TJ,673.489908,kg +86ac5f7f-8086-3969-b1ce-214fa433d455,SESCO,II.1.1,Jujuy,AR-Y,annual,2015,gas oil combustion consumption by to the public,120.38795999999999,TJ,CO2,74100.0,kg/TJ,8920747.836,kg +8205efa5-b162-3f2e-9cf7-c777d419a59e,SESCO,II.1.1,Jujuy,AR-Y,annual,2015,gas oil combustion consumption by to the public,120.38795999999999,TJ,CH4,3.9,kg/TJ,469.513044,kg +8205efa5-b162-3f2e-9cf7-c777d419a59e,SESCO,II.1.1,Jujuy,AR-Y,annual,2015,gas oil combustion consumption by to the public,120.38795999999999,TJ,N2O,3.9,kg/TJ,469.513044,kg +e22f1b86-aab5-3de5-82ba-018828e8b51b,SESCO,II.1.1,La Pampa,AR-L,annual,2015,gas oil combustion consumption by to the public,588.79212,TJ,CO2,74100.0,kg/TJ,43629496.092,kg +9aaa67d2-b067-33aa-a5ff-ef28ad6eecac,SESCO,II.1.1,La Pampa,AR-L,annual,2015,gas oil combustion consumption by to the public,588.79212,TJ,CH4,3.9,kg/TJ,2296.289268,kg +9aaa67d2-b067-33aa-a5ff-ef28ad6eecac,SESCO,II.1.1,La Pampa,AR-L,annual,2015,gas oil combustion consumption by to the public,588.79212,TJ,N2O,3.9,kg/TJ,2296.289268,kg +c7d466e6-77ff-3bbe-a374-aff1dda2bbc7,SESCO,II.1.1,La Rioja,AR-F,annual,2015,gas oil combustion consumption by to the public,245.03808,TJ,CO2,74100.0,kg/TJ,18157321.728,kg +b2cb9e73-8329-312d-a491-89dc051f26d4,SESCO,II.1.1,La Rioja,AR-F,annual,2015,gas oil combustion consumption by to the public,245.03808,TJ,CH4,3.9,kg/TJ,955.648512,kg +b2cb9e73-8329-312d-a491-89dc051f26d4,SESCO,II.1.1,La Rioja,AR-F,annual,2015,gas oil combustion consumption by to the public,245.03808,TJ,N2O,3.9,kg/TJ,955.648512,kg +b10def6c-33d4-3eb8-a039-e7baf1a3ee20,SESCO,II.1.1,Mendoza,AR-M,annual,2015,gas oil combustion consumption by to the public,547.5792,TJ,CO2,74100.0,kg/TJ,40575618.72,kg +34d2f7d4-f860-3c0f-892b-a39ace03fe67,SESCO,II.1.1,Mendoza,AR-M,annual,2015,gas oil combustion consumption by to the public,547.5792,TJ,CH4,3.9,kg/TJ,2135.55888,kg +34d2f7d4-f860-3c0f-892b-a39ace03fe67,SESCO,II.1.1,Mendoza,AR-M,annual,2015,gas oil combustion consumption by to the public,547.5792,TJ,N2O,3.9,kg/TJ,2135.55888,kg +f11d58db-d94e-376e-b85e-a5220e06df56,SESCO,II.1.1,Misiones,AR-N,annual,2015,gas oil combustion consumption by to the public,1276.26408,TJ,CO2,74100.0,kg/TJ,94571168.328,kg +2fd77bc4-0532-3d0b-82ba-18662a993dbc,SESCO,II.1.1,Misiones,AR-N,annual,2015,gas oil combustion consumption by to the public,1276.26408,TJ,CH4,3.9,kg/TJ,4977.429912,kg +2fd77bc4-0532-3d0b-82ba-18662a993dbc,SESCO,II.1.1,Misiones,AR-N,annual,2015,gas oil combustion consumption by to the public,1276.26408,TJ,N2O,3.9,kg/TJ,4977.429912,kg +b5323a65-b632-3211-a474-d7496fce1f59,SESCO,II.1.1,Neuquén,AR-Q,annual,2015,gas oil combustion consumption by to the public,686.85792,TJ,CO2,74100.0,kg/TJ,50896171.872,kg +3a16f1d2-13b0-3dff-ac1d-fde52a87f985,SESCO,II.1.1,Neuquén,AR-Q,annual,2015,gas oil combustion consumption by to the public,686.85792,TJ,CH4,3.9,kg/TJ,2678.745888,kg +3a16f1d2-13b0-3dff-ac1d-fde52a87f985,SESCO,II.1.1,Neuquén,AR-Q,annual,2015,gas oil combustion consumption by to the public,686.85792,TJ,N2O,3.9,kg/TJ,2678.745888,kg +a0b50633-b35c-3ad2-80f1-240b87ceb00b,SESCO,II.1.1,Rio Negro,AR-R,annual,2015,gas oil combustion consumption by to the public,199.77972,TJ,CO2,74100.0,kg/TJ,14803677.252,kg +9a5a77cb-a8b1-3ec8-99b0-6af759095a02,SESCO,II.1.1,Rio Negro,AR-R,annual,2015,gas oil combustion consumption by to the public,199.77972,TJ,CH4,3.9,kg/TJ,779.140908,kg +9a5a77cb-a8b1-3ec8-99b0-6af759095a02,SESCO,II.1.1,Rio Negro,AR-R,annual,2015,gas oil combustion consumption by to the public,199.77972,TJ,N2O,3.9,kg/TJ,779.140908,kg +8b6248a1-4bf0-3b98-bed6-f6477a5ebe82,SESCO,II.1.1,Salta,AR-A,annual,2015,gas oil combustion consumption by to the public,119.70168,TJ,CO2,74100.0,kg/TJ,8869894.488,kg +ffccf8ea-8e7d-3c96-a621-fdad389a730a,SESCO,II.1.1,Salta,AR-A,annual,2015,gas oil combustion consumption by to the public,119.70168,TJ,CH4,3.9,kg/TJ,466.836552,kg +ffccf8ea-8e7d-3c96-a621-fdad389a730a,SESCO,II.1.1,Salta,AR-A,annual,2015,gas oil combustion consumption by to the public,119.70168,TJ,N2O,3.9,kg/TJ,466.836552,kg +0a4dd393-00f9-3568-ae94-270b13931dce,SESCO,II.1.1,San Juan,AR-J,annual,2015,gas oil combustion consumption by to the public,213.54144,TJ,CO2,74100.0,kg/TJ,15823420.704,kg +4e61c63a-8f2b-3485-b884-b654d35fda39,SESCO,II.1.1,San Juan,AR-J,annual,2015,gas oil combustion consumption by to the public,213.54144,TJ,CH4,3.9,kg/TJ,832.811616,kg +4e61c63a-8f2b-3485-b884-b654d35fda39,SESCO,II.1.1,San Juan,AR-J,annual,2015,gas oil combustion consumption by to the public,213.54144,TJ,N2O,3.9,kg/TJ,832.811616,kg +b41ac6c3-6a0e-3f55-8894-47631f64de2d,SESCO,II.1.1,San Luis,AR-D,annual,2015,gas oil combustion consumption by to the public,21.094079999999998,TJ,CO2,74100.0,kg/TJ,1563071.328,kg +874e900e-4848-3013-999b-024d4b0557b9,SESCO,II.1.1,San Luis,AR-D,annual,2015,gas oil combustion consumption by to the public,21.094079999999998,TJ,CH4,3.9,kg/TJ,82.26691199999999,kg +874e900e-4848-3013-999b-024d4b0557b9,SESCO,II.1.1,San Luis,AR-D,annual,2015,gas oil combustion consumption by to the public,21.094079999999998,TJ,N2O,3.9,kg/TJ,82.26691199999999,kg +dba774c2-f906-31c2-bd07-585eacd9ca3f,SESCO,II.1.1,Santa Fe,AR-S,annual,2015,gas oil combustion consumption by to the public,4896.86064,TJ,CO2,74100.0,kg/TJ,362857373.42399997,kg +09ba5e8a-d9c1-3bb3-a918-71e47469c6a5,SESCO,II.1.1,Santa Fe,AR-S,annual,2015,gas oil combustion consumption by to the public,4896.86064,TJ,CH4,3.9,kg/TJ,19097.756495999998,kg +09ba5e8a-d9c1-3bb3-a918-71e47469c6a5,SESCO,II.1.1,Santa Fe,AR-S,annual,2015,gas oil combustion consumption by to the public,4896.86064,TJ,N2O,3.9,kg/TJ,19097.756495999998,kg +9bfe6431-ffd7-3cbd-bb74-85d4b6d4494f,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2015,gas oil combustion consumption by to the public,405.6276,TJ,CO2,74100.0,kg/TJ,30057005.159999996,kg +e15e6cb2-d8b6-32c7-99dc-c7233f760bf6,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2015,gas oil combustion consumption by to the public,405.6276,TJ,CH4,3.9,kg/TJ,1581.9476399999999,kg +e15e6cb2-d8b6-32c7-99dc-c7233f760bf6,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2015,gas oil combustion consumption by to the public,405.6276,TJ,N2O,3.9,kg/TJ,1581.9476399999999,kg +417aa7c2-9d3e-378e-a51b-01a97fa37d35,SESCO,II.1.1,Tucuman,AR-T,annual,2015,gas oil combustion consumption by to the public,662.6214,TJ,CO2,74100.0,kg/TJ,49100245.74,kg +1bf9d0c9-2d1b-3c80-88ba-f9ebee9b0b2e,SESCO,II.1.1,Tucuman,AR-T,annual,2015,gas oil combustion consumption by to the public,662.6214,TJ,CH4,3.9,kg/TJ,2584.2234599999997,kg +1bf9d0c9-2d1b-3c80-88ba-f9ebee9b0b2e,SESCO,II.1.1,Tucuman,AR-T,annual,2015,gas oil combustion consumption by to the public,662.6214,TJ,N2O,3.9,kg/TJ,2584.2234599999997,kg +2eafbf9c-2539-3195-87e8-191225021635,SESCO,II.1.1,Buenos Aires,AR-B,annual,2015,gas oil combustion consumption by to the public,7258.53072,TJ,CO2,74100.0,kg/TJ,537857126.352,kg +a674386d-13e0-367b-9608-580398846673,SESCO,II.1.1,Buenos Aires,AR-B,annual,2015,gas oil combustion consumption by to the public,7258.53072,TJ,CH4,3.9,kg/TJ,28308.269807999997,kg +a674386d-13e0-367b-9608-580398846673,SESCO,II.1.1,Buenos Aires,AR-B,annual,2015,gas oil combustion consumption by to the public,7258.53072,TJ,N2O,3.9,kg/TJ,28308.269807999997,kg +2be4ddcf-6556-3049-aabb-09b6f2898255,SESCO,II.1.1,Capital Federal,AR-C,annual,2015,gas oil combustion consumption by to the public,1269.18456,TJ,CO2,74100.0,kg/TJ,94046575.896,kg +e0dfeb83-efa7-3f89-94dc-8aac18d3203e,SESCO,II.1.1,Capital Federal,AR-C,annual,2015,gas oil combustion consumption by to the public,1269.18456,TJ,CH4,3.9,kg/TJ,4949.819783999999,kg +e0dfeb83-efa7-3f89-94dc-8aac18d3203e,SESCO,II.1.1,Capital Federal,AR-C,annual,2015,gas oil combustion consumption by to the public,1269.18456,TJ,N2O,3.9,kg/TJ,4949.819783999999,kg +3b071502-0432-36ef-9c59-23c34d5d706e,SESCO,II.1.1,Catamarca,AR-K,annual,2015,gas oil combustion consumption by to the public,36.22836,TJ,CO2,74100.0,kg/TJ,2684521.4760000003,kg +0f2667fd-b6ee-3513-8a2d-a5c2409fada7,SESCO,II.1.1,Catamarca,AR-K,annual,2015,gas oil combustion consumption by to the public,36.22836,TJ,CH4,3.9,kg/TJ,141.290604,kg +0f2667fd-b6ee-3513-8a2d-a5c2409fada7,SESCO,II.1.1,Catamarca,AR-K,annual,2015,gas oil combustion consumption by to the public,36.22836,TJ,N2O,3.9,kg/TJ,141.290604,kg +d1f837fd-6fa4-37ca-a277-484c545c73fc,SESCO,II.1.1,Chaco,AR-H,annual,2015,gas oil combustion consumption by to the public,397.28388,TJ,CO2,74100.0,kg/TJ,29438735.508,kg +5c014c10-8f67-3382-898d-3d2eb6dcd736,SESCO,II.1.1,Chaco,AR-H,annual,2015,gas oil combustion consumption by to the public,397.28388,TJ,CH4,3.9,kg/TJ,1549.407132,kg +5c014c10-8f67-3382-898d-3d2eb6dcd736,SESCO,II.1.1,Chaco,AR-H,annual,2015,gas oil combustion consumption by to the public,397.28388,TJ,N2O,3.9,kg/TJ,1549.407132,kg +8632ef60-8f8c-3079-af1e-e44680a19593,SESCO,II.1.1,Corrientes,AR-W,annual,2015,gas oil combustion consumption by to the public,307.34508,TJ,CO2,74100.0,kg/TJ,22774270.428,kg +36b2488a-54d6-3cda-95f7-5e1ed0f3a899,SESCO,II.1.1,Corrientes,AR-W,annual,2015,gas oil combustion consumption by to the public,307.34508,TJ,CH4,3.9,kg/TJ,1198.645812,kg +36b2488a-54d6-3cda-95f7-5e1ed0f3a899,SESCO,II.1.1,Corrientes,AR-W,annual,2015,gas oil combustion consumption by to the public,307.34508,TJ,N2O,3.9,kg/TJ,1198.645812,kg +7daef7e3-5f5f-37ee-a186-01e96419708b,SESCO,II.1.1,Córdoba,AR-X,annual,2015,gas oil combustion consumption by to the public,1275.61392,TJ,CO2,74100.0,kg/TJ,94522991.472,kg +59451453-2815-301c-99b9-0c0627f65a7b,SESCO,II.1.1,Córdoba,AR-X,annual,2015,gas oil combustion consumption by to the public,1275.61392,TJ,CH4,3.9,kg/TJ,4974.8942879999995,kg +59451453-2815-301c-99b9-0c0627f65a7b,SESCO,II.1.1,Córdoba,AR-X,annual,2015,gas oil combustion consumption by to the public,1275.61392,TJ,N2O,3.9,kg/TJ,4974.8942879999995,kg +1063f6d6-a349-387b-81af-3160f2963481,SESCO,II.1.1,Entre Rios,AR-E,annual,2015,gas oil combustion consumption by to the public,651.92988,TJ,CO2,74100.0,kg/TJ,48308004.108,kg +edf7aa71-0fcc-388f-970c-6860ed88bf52,SESCO,II.1.1,Entre Rios,AR-E,annual,2015,gas oil combustion consumption by to the public,651.92988,TJ,CH4,3.9,kg/TJ,2542.526532,kg +edf7aa71-0fcc-388f-970c-6860ed88bf52,SESCO,II.1.1,Entre Rios,AR-E,annual,2015,gas oil combustion consumption by to the public,651.92988,TJ,N2O,3.9,kg/TJ,2542.526532,kg +3d35da88-76b9-359d-9b5b-0a43d42c02e4,SESCO,II.1.1,Formosa,AR-P,annual,2015,gas oil combustion consumption by to the public,149.06724,TJ,CO2,74100.0,kg/TJ,11045882.484,kg +b24b8624-047a-31b6-b954-6081ba539ea7,SESCO,II.1.1,Formosa,AR-P,annual,2015,gas oil combustion consumption by to the public,149.06724,TJ,CH4,3.9,kg/TJ,581.3622359999999,kg +b24b8624-047a-31b6-b954-6081ba539ea7,SESCO,II.1.1,Formosa,AR-P,annual,2015,gas oil combustion consumption by to the public,149.06724,TJ,N2O,3.9,kg/TJ,581.3622359999999,kg +43394cdb-f5ac-3c62-8a86-2b7f78c3ff63,SESCO,II.1.1,Jujuy,AR-Y,annual,2015,gas oil combustion consumption by to the public,44.6082,TJ,CO2,74100.0,kg/TJ,3305467.6199999996,kg +4b2f4e56-e3b9-342c-8a2c-c1156f7f683a,SESCO,II.1.1,Jujuy,AR-Y,annual,2015,gas oil combustion consumption by to the public,44.6082,TJ,CH4,3.9,kg/TJ,173.97197999999997,kg +4b2f4e56-e3b9-342c-8a2c-c1156f7f683a,SESCO,II.1.1,Jujuy,AR-Y,annual,2015,gas oil combustion consumption by to the public,44.6082,TJ,N2O,3.9,kg/TJ,173.97197999999997,kg +1ae4a1e5-632b-3ea4-a4cb-6355133f4320,SESCO,II.1.1,La Pampa,AR-L,annual,2015,gas oil combustion consumption by to the public,217.47852,TJ,CO2,74100.0,kg/TJ,16115158.332,kg +c8b1cf77-6215-341a-83d0-31a1e392163a,SESCO,II.1.1,La Pampa,AR-L,annual,2015,gas oil combustion consumption by to the public,217.47852,TJ,CH4,3.9,kg/TJ,848.166228,kg +c8b1cf77-6215-341a-83d0-31a1e392163a,SESCO,II.1.1,La Pampa,AR-L,annual,2015,gas oil combustion consumption by to the public,217.47852,TJ,N2O,3.9,kg/TJ,848.166228,kg +c159b0c7-9228-31ed-a134-a34c6f416030,SESCO,II.1.1,La Rioja,AR-F,annual,2015,gas oil combustion consumption by to the public,117.7512,TJ,CO2,74100.0,kg/TJ,8725363.92,kg +0a0e9f29-6e67-3531-8f76-10a0b8842e62,SESCO,II.1.1,La Rioja,AR-F,annual,2015,gas oil combustion consumption by to the public,117.7512,TJ,CH4,3.9,kg/TJ,459.22968,kg +0a0e9f29-6e67-3531-8f76-10a0b8842e62,SESCO,II.1.1,La Rioja,AR-F,annual,2015,gas oil combustion consumption by to the public,117.7512,TJ,N2O,3.9,kg/TJ,459.22968,kg +1e1c981c-71d7-30eb-b07e-5dfdae23dd64,SESCO,II.1.1,Mendoza,AR-M,annual,2015,gas oil combustion consumption by to the public,366.14844,TJ,CO2,74100.0,kg/TJ,27131599.404,kg +80c87abf-52db-3024-83da-7fb5f083a7bc,SESCO,II.1.1,Mendoza,AR-M,annual,2015,gas oil combustion consumption by to the public,366.14844,TJ,CH4,3.9,kg/TJ,1427.978916,kg +80c87abf-52db-3024-83da-7fb5f083a7bc,SESCO,II.1.1,Mendoza,AR-M,annual,2015,gas oil combustion consumption by to the public,366.14844,TJ,N2O,3.9,kg/TJ,1427.978916,kg +3796b440-99df-3129-9580-e36f34cf0a5c,SESCO,II.1.1,Misiones,AR-N,annual,2015,gas oil combustion consumption by to the public,375.32292,TJ,CO2,74100.0,kg/TJ,27811428.372,kg +5c25e02c-b6fc-3c3f-aa24-2e68a03a7fbb,SESCO,II.1.1,Misiones,AR-N,annual,2015,gas oil combustion consumption by to the public,375.32292,TJ,CH4,3.9,kg/TJ,1463.759388,kg +5c25e02c-b6fc-3c3f-aa24-2e68a03a7fbb,SESCO,II.1.1,Misiones,AR-N,annual,2015,gas oil combustion consumption by to the public,375.32292,TJ,N2O,3.9,kg/TJ,1463.759388,kg +efa04700-44c2-3d2c-b681-b71cdf0450ca,SESCO,II.1.1,Neuquén,AR-Q,annual,2015,gas oil combustion consumption by to the public,455.94275999999996,TJ,CO2,74100.0,kg/TJ,33785358.515999995,kg +3155c169-5c75-34b1-b35a-32f430586f4c,SESCO,II.1.1,Neuquén,AR-Q,annual,2015,gas oil combustion consumption by to the public,455.94275999999996,TJ,CH4,3.9,kg/TJ,1778.1767639999998,kg +3155c169-5c75-34b1-b35a-32f430586f4c,SESCO,II.1.1,Neuquén,AR-Q,annual,2015,gas oil combustion consumption by to the public,455.94275999999996,TJ,N2O,3.9,kg/TJ,1778.1767639999998,kg +df026e2d-c777-369a-aa1d-7f5801e0e83c,SESCO,II.1.1,Rio Negro,AR-R,annual,2015,gas oil combustion consumption by to the public,126.74508,TJ,CO2,74100.0,kg/TJ,9391810.428,kg +9a127452-dc71-38fd-b5ad-3fd256dde404,SESCO,II.1.1,Rio Negro,AR-R,annual,2015,gas oil combustion consumption by to the public,126.74508,TJ,CH4,3.9,kg/TJ,494.305812,kg +9a127452-dc71-38fd-b5ad-3fd256dde404,SESCO,II.1.1,Rio Negro,AR-R,annual,2015,gas oil combustion consumption by to the public,126.74508,TJ,N2O,3.9,kg/TJ,494.305812,kg +21fd236a-373b-3c5a-89fc-5bbff4e931db,SESCO,II.1.1,Salta,AR-A,annual,2015,gas oil combustion consumption by to the public,99.72731999999999,TJ,CO2,74100.0,kg/TJ,7389794.412,kg +de838bc3-aba0-30d7-bf9b-0a47606f501a,SESCO,II.1.1,Salta,AR-A,annual,2015,gas oil combustion consumption by to the public,99.72731999999999,TJ,CH4,3.9,kg/TJ,388.93654799999996,kg +de838bc3-aba0-30d7-bf9b-0a47606f501a,SESCO,II.1.1,Salta,AR-A,annual,2015,gas oil combustion consumption by to the public,99.72731999999999,TJ,N2O,3.9,kg/TJ,388.93654799999996,kg +a07eef49-b600-388a-965e-0a17a711c503,SESCO,II.1.1,San Juan,AR-J,annual,2015,gas oil combustion consumption by to the public,64.40196,TJ,CO2,74100.0,kg/TJ,4772185.2360000005,kg +9b47b4d1-f5d9-3404-b8c1-6c1fde159133,SESCO,II.1.1,San Juan,AR-J,annual,2015,gas oil combustion consumption by to the public,64.40196,TJ,CH4,3.9,kg/TJ,251.167644,kg +9b47b4d1-f5d9-3404-b8c1-6c1fde159133,SESCO,II.1.1,San Juan,AR-J,annual,2015,gas oil combustion consumption by to the public,64.40196,TJ,N2O,3.9,kg/TJ,251.167644,kg +647a4e69-681f-3360-bd5a-adff1a7119bb,SESCO,II.1.1,San Luis,AR-D,annual,2015,gas oil combustion consumption by to the public,24.0198,TJ,CO2,74100.0,kg/TJ,1779867.18,kg +c64daa9f-8b48-3a11-a469-12dc63906050,SESCO,II.1.1,San Luis,AR-D,annual,2015,gas oil combustion consumption by to the public,24.0198,TJ,CH4,3.9,kg/TJ,93.67721999999999,kg +c64daa9f-8b48-3a11-a469-12dc63906050,SESCO,II.1.1,San Luis,AR-D,annual,2015,gas oil combustion consumption by to the public,24.0198,TJ,N2O,3.9,kg/TJ,93.67721999999999,kg +53d91177-ac43-341d-aa5e-9512ed12cd41,SESCO,II.1.1,Santa Fe,AR-S,annual,2015,gas oil combustion consumption by to the public,1889.54556,TJ,CO2,74100.0,kg/TJ,140015325.996,kg +1695c644-6f50-36c4-a8d6-ebbdecf9898f,SESCO,II.1.1,Santa Fe,AR-S,annual,2015,gas oil combustion consumption by to the public,1889.54556,TJ,CH4,3.9,kg/TJ,7369.2276839999995,kg +1695c644-6f50-36c4-a8d6-ebbdecf9898f,SESCO,II.1.1,Santa Fe,AR-S,annual,2015,gas oil combustion consumption by to the public,1889.54556,TJ,N2O,3.9,kg/TJ,7369.2276839999995,kg +c000afb8-2c67-36a2-b922-b8350c32b153,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2015,gas oil combustion consumption by to the public,183.20064,TJ,CO2,74100.0,kg/TJ,13575167.423999999,kg +aef3af46-05f9-3dfa-8630-f191a06d90f4,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2015,gas oil combustion consumption by to the public,183.20064,TJ,CH4,3.9,kg/TJ,714.482496,kg +aef3af46-05f9-3dfa-8630-f191a06d90f4,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2015,gas oil combustion consumption by to the public,183.20064,TJ,N2O,3.9,kg/TJ,714.482496,kg +11f35220-5395-352c-9ed4-6a60ef252489,SESCO,II.1.1,Tucuman,AR-T,annual,2015,gas oil combustion consumption by to the public,351.08639999999997,TJ,CO2,74100.0,kg/TJ,26015502.24,kg +82debf70-39c5-3cbc-92df-30c08865a948,SESCO,II.1.1,Tucuman,AR-T,annual,2015,gas oil combustion consumption by to the public,351.08639999999997,TJ,CH4,3.9,kg/TJ,1369.23696,kg +82debf70-39c5-3cbc-92df-30c08865a948,SESCO,II.1.1,Tucuman,AR-T,annual,2015,gas oil combustion consumption by to the public,351.08639999999997,TJ,N2O,3.9,kg/TJ,1369.23696,kg +9511f5dc-e3da-39cb-92f9-81a4d36debc0,SESCO,II.1.1,Buenos Aires,AR-B,annual,2015,jet kerosene combustion consumption by to the public,1.4782909999999998,TJ,CO2,71500.0,kg/TJ,105697.80649999999,kg +926b30df-69a7-3559-a65f-6e5f208048ee,SESCO,II.1.1,Buenos Aires,AR-B,annual,2015,jet kerosene combustion consumption by to the public,1.4782909999999998,TJ,CH4,0.5,kg/TJ,0.7391454999999999,kg +bf995fff-4793-37e4-8be9-bca94c9db965,SESCO,II.1.1,Buenos Aires,AR-B,annual,2015,jet kerosene combustion consumption by to the public,1.4782909999999998,TJ,N2O,2.0,kg/TJ,2.9565819999999996,kg +e1e53ab8-0858-3f41-81a0-9ceb60b9786e,SESCO,II.1.1,Entre Rios,AR-E,annual,2015,jet kerosene combustion consumption by to the public,4.025983999999999,TJ,CO2,71500.0,kg/TJ,287857.85599999997,kg +031f0cf6-5d35-3195-8f32-8e9757298b5f,SESCO,II.1.1,Entre Rios,AR-E,annual,2015,jet kerosene combustion consumption by to the public,4.025983999999999,TJ,CH4,0.5,kg/TJ,2.0129919999999997,kg +893fbe45-cba8-3347-b137-a8d202c56e29,SESCO,II.1.1,Entre Rios,AR-E,annual,2015,jet kerosene combustion consumption by to the public,4.025983999999999,TJ,N2O,2.0,kg/TJ,8.051967999999999,kg +772ff027-ecfa-3e49-a460-0890e67bc66f,SESCO,II.1.1,Santa Fe,AR-S,annual,2015,jet kerosene combustion consumption by to the public,3.1452999999999993,TJ,CO2,71500.0,kg/TJ,224888.94999999995,kg +e9990713-c5a6-3769-9d5a-817405ff98b9,SESCO,II.1.1,Santa Fe,AR-S,annual,2015,jet kerosene combustion consumption by to the public,3.1452999999999993,TJ,CH4,0.5,kg/TJ,1.5726499999999997,kg +d82592e7-cca5-3995-aa6d-ca4457ebc208,SESCO,II.1.1,Santa Fe,AR-S,annual,2015,jet kerosene combustion consumption by to the public,3.1452999999999993,TJ,N2O,2.0,kg/TJ,6.290599999999999,kg +0743bd13-7a4e-3d4f-9e84-b54595a3fed3,SESCO,I.3.1,Buenos Aires,AR-B,annual,2015,gasoline combustion consumption by petrochemical industries,41.5091,TJ,CO2,69300.0,kg/TJ,2876580.63,kg +90ec23a1-bb6b-3b94-8898-148c1c5720fd,SESCO,I.3.1,Buenos Aires,AR-B,annual,2015,gasoline combustion consumption by petrochemical industries,41.5091,TJ,CH4,33.0,kg/TJ,1369.8002999999999,kg +3ab8c8b7-6f09-3b58-88bb-472e81020d8b,SESCO,I.3.1,Buenos Aires,AR-B,annual,2015,gasoline combustion consumption by petrochemical industries,41.5091,TJ,N2O,3.2,kg/TJ,132.82912,kg +55176457-cb25-3049-8c4f-35d4c082a082,SESCO,I.3.1,Buenos Aires,AR-B,annual,2015,gas oil combustion consumption by petrochemical industries,1.0836,TJ,CO2,74100.0,kg/TJ,80294.76,kg +22ce5a88-3842-31b7-a4b3-2449e9805851,SESCO,I.3.1,Buenos Aires,AR-B,annual,2015,gas oil combustion consumption by petrochemical industries,1.0836,TJ,CH4,3.9,kg/TJ,4.226039999999999,kg +22ce5a88-3842-31b7-a4b3-2449e9805851,SESCO,I.3.1,Buenos Aires,AR-B,annual,2015,gas oil combustion consumption by petrochemical industries,1.0836,TJ,N2O,3.9,kg/TJ,4.226039999999999,kg +46f5160d-9457-38c3-87d8-ec2203319c46,SESCO,I.3.1,Capital Federal,AR-C,annual,2015,gas oil combustion consumption by petrochemical industries,2.3478,TJ,CO2,74100.0,kg/TJ,173971.97999999998,kg +2e321b8f-16a9-35a3-9dd6-fb915fb3974f,SESCO,I.3.1,Capital Federal,AR-C,annual,2015,gas oil combustion consumption by petrochemical industries,2.3478,TJ,CH4,3.9,kg/TJ,9.156419999999999,kg +2e321b8f-16a9-35a3-9dd6-fb915fb3974f,SESCO,I.3.1,Capital Federal,AR-C,annual,2015,gas oil combustion consumption by petrochemical industries,2.3478,TJ,N2O,3.9,kg/TJ,9.156419999999999,kg +89f3aa03-492e-3376-98f5-228c93ab23e8,SESCO,II.2.1,Buenos Aires,AR-B,annual,2015,gas oil combustion consumption by railway transport,539.52444,TJ,CO2,74100.0,kg/TJ,39978761.004,kg +02aeb827-57e0-39f3-9e50-21a16055c376,SESCO,II.2.1,Buenos Aires,AR-B,annual,2015,gas oil combustion consumption by railway transport,539.52444,TJ,CH4,3.9,kg/TJ,2104.145316,kg +02aeb827-57e0-39f3-9e50-21a16055c376,SESCO,II.2.1,Buenos Aires,AR-B,annual,2015,gas oil combustion consumption by railway transport,539.52444,TJ,N2O,3.9,kg/TJ,2104.145316,kg +cd80a16d-76a1-3583-ba36-b46f3c6021af,SESCO,II.2.1,Capital Federal,AR-C,annual,2015,gas oil combustion consumption by railway transport,281.3748,TJ,CO2,74100.0,kg/TJ,20849872.68,kg +cdbc6d22-0c9f-3b33-a6e6-5a41f2ec9e1b,SESCO,II.2.1,Capital Federal,AR-C,annual,2015,gas oil combustion consumption by railway transport,281.3748,TJ,CH4,3.9,kg/TJ,1097.3617199999999,kg +cdbc6d22-0c9f-3b33-a6e6-5a41f2ec9e1b,SESCO,II.2.1,Capital Federal,AR-C,annual,2015,gas oil combustion consumption by railway transport,281.3748,TJ,N2O,3.9,kg/TJ,1097.3617199999999,kg +55708f1a-08e3-3fdf-a3e4-91b7b94a5a58,SESCO,II.2.1,Santa Fe,AR-S,annual,2015,gas oil combustion consumption by railway transport,352.45896,TJ,CO2,74100.0,kg/TJ,26117208.936,kg +747ec81c-105d-33f0-b072-2d3a61fdd940,SESCO,II.2.1,Santa Fe,AR-S,annual,2015,gas oil combustion consumption by railway transport,352.45896,TJ,CH4,3.9,kg/TJ,1374.5899439999998,kg +747ec81c-105d-33f0-b072-2d3a61fdd940,SESCO,II.2.1,Santa Fe,AR-S,annual,2015,gas oil combustion consumption by railway transport,352.45896,TJ,N2O,3.9,kg/TJ,1374.5899439999998,kg +06087d13-9db0-342f-b420-c2eb377c4e63,SESCO,II.2.1,Capital Federal,AR-C,annual,2015,gas oil combustion consumption by railway transport,0.75852,TJ,CO2,74100.0,kg/TJ,56206.331999999995,kg +30883a31-1d68-3863-9f27-ee145973d778,SESCO,II.2.1,Capital Federal,AR-C,annual,2015,gas oil combustion consumption by railway transport,0.75852,TJ,CH4,3.9,kg/TJ,2.9582279999999996,kg +30883a31-1d68-3863-9f27-ee145973d778,SESCO,II.2.1,Capital Federal,AR-C,annual,2015,gas oil combustion consumption by railway transport,0.75852,TJ,N2O,3.9,kg/TJ,2.9582279999999996,kg +6338f2d0-417a-3055-891a-3c383dedbdf0,SESCO,II.1.1,Buenos Aires,AR-B,annual,2015,gasoline combustion consumption by freight transport,10.3219,TJ,CO2,69300.0,kg/TJ,715307.6699999999,kg +e069689b-b581-38db-9b89-fd59135a9f02,SESCO,II.1.1,Buenos Aires,AR-B,annual,2015,gasoline combustion consumption by freight transport,10.3219,TJ,CH4,33.0,kg/TJ,340.6227,kg +df0aa558-016c-3da8-8d33-8ba8bd28da10,SESCO,II.1.1,Buenos Aires,AR-B,annual,2015,gasoline combustion consumption by freight transport,10.3219,TJ,N2O,3.2,kg/TJ,33.03008,kg +fc185a9c-a339-3002-a8bc-13c18df1bfec,SESCO,II.1.1,Capital Federal,AR-C,annual,2015,gasoline combustion consumption by freight transport,9.5688,TJ,CO2,69300.0,kg/TJ,663117.84,kg +6f4dc749-cb84-3932-9c67-4098f722c43a,SESCO,II.1.1,Capital Federal,AR-C,annual,2015,gasoline combustion consumption by freight transport,9.5688,TJ,CH4,33.0,kg/TJ,315.7704,kg +01628c9f-681d-3137-a7e9-a095b7e6e273,SESCO,II.1.1,Capital Federal,AR-C,annual,2015,gasoline combustion consumption by freight transport,9.5688,TJ,N2O,3.2,kg/TJ,30.62016,kg +9a63ab71-b80d-303e-be58-c06cc2d027b0,SESCO,II.1.1,Buenos Aires,AR-B,annual,2015,gas oil combustion consumption by freight transport,567.987,TJ,CO2,74100.0,kg/TJ,42087836.699999996,kg +46623fb3-b51a-3e1b-be1a-2964ffd36a53,SESCO,II.1.1,Buenos Aires,AR-B,annual,2015,gas oil combustion consumption by freight transport,567.987,TJ,CH4,3.9,kg/TJ,2215.1493,kg +46623fb3-b51a-3e1b-be1a-2964ffd36a53,SESCO,II.1.1,Buenos Aires,AR-B,annual,2015,gas oil combustion consumption by freight transport,567.987,TJ,N2O,3.9,kg/TJ,2215.1493,kg +a5109dd3-23cd-31ba-a28f-b696384b403a,SESCO,II.1.1,Capital Federal,AR-C,annual,2015,gas oil combustion consumption by freight transport,193.96439999999998,TJ,CO2,74100.0,kg/TJ,14372762.04,kg +a438eb60-bdb3-3ac0-81c7-4005d530dc0b,SESCO,II.1.1,Capital Federal,AR-C,annual,2015,gas oil combustion consumption by freight transport,193.96439999999998,TJ,CH4,3.9,kg/TJ,756.46116,kg +a438eb60-bdb3-3ac0-81c7-4005d530dc0b,SESCO,II.1.1,Capital Federal,AR-C,annual,2015,gas oil combustion consumption by freight transport,193.96439999999998,TJ,N2O,3.9,kg/TJ,756.46116,kg +4b4776d1-d401-3e64-92cf-0cfa58733839,SESCO,II.1.1,Córdoba,AR-X,annual,2015,gas oil combustion consumption by freight transport,132.63264,TJ,CO2,74100.0,kg/TJ,9828078.624,kg +ed5cadeb-3d6e-31b8-ab8b-58580d43b931,SESCO,II.1.1,Córdoba,AR-X,annual,2015,gas oil combustion consumption by freight transport,132.63264,TJ,CH4,3.9,kg/TJ,517.267296,kg +ed5cadeb-3d6e-31b8-ab8b-58580d43b931,SESCO,II.1.1,Córdoba,AR-X,annual,2015,gas oil combustion consumption by freight transport,132.63264,TJ,N2O,3.9,kg/TJ,517.267296,kg +93c28e86-9ece-3307-9a13-8061184d52d4,SESCO,II.1.1,San Juan,AR-J,annual,2015,gas oil combustion consumption by freight transport,1.33644,TJ,CO2,74100.0,kg/TJ,99030.20400000001,kg +b121ab16-c847-3ad8-89d1-c15f5d2a64d5,SESCO,II.1.1,San Juan,AR-J,annual,2015,gas oil combustion consumption by freight transport,1.33644,TJ,CH4,3.9,kg/TJ,5.212116,kg +b121ab16-c847-3ad8-89d1-c15f5d2a64d5,SESCO,II.1.1,San Juan,AR-J,annual,2015,gas oil combustion consumption by freight transport,1.33644,TJ,N2O,3.9,kg/TJ,5.212116,kg +83a8a190-40e2-3d90-9387-66f63069bb25,SESCO,II.1.1,Buenos Aires,AR-B,annual,2015,gas oil combustion consumption by freight transport,8.59656,TJ,CO2,74100.0,kg/TJ,637005.096,kg +f5417b8c-dff2-321e-b443-2f4cace931a4,SESCO,II.1.1,Buenos Aires,AR-B,annual,2015,gas oil combustion consumption by freight transport,8.59656,TJ,CH4,3.9,kg/TJ,33.526584,kg +f5417b8c-dff2-321e-b443-2f4cace931a4,SESCO,II.1.1,Buenos Aires,AR-B,annual,2015,gas oil combustion consumption by freight transport,8.59656,TJ,N2O,3.9,kg/TJ,33.526584,kg +be4a6696-14a8-384a-a6df-e7817b520c1b,SESCO,II.1.1,Córdoba,AR-X,annual,2015,gas oil combustion consumption by freight transport,0.75852,TJ,CO2,74100.0,kg/TJ,56206.331999999995,kg +44f8ee51-a865-328d-b0f7-72d9a645745d,SESCO,II.1.1,Córdoba,AR-X,annual,2015,gas oil combustion consumption by freight transport,0.75852,TJ,CH4,3.9,kg/TJ,2.9582279999999996,kg +44f8ee51-a865-328d-b0f7-72d9a645745d,SESCO,II.1.1,Córdoba,AR-X,annual,2015,gas oil combustion consumption by freight transport,0.75852,TJ,N2O,3.9,kg/TJ,2.9582279999999996,kg +9c928086-ad01-3a33-ac49-347b604512e6,SESCO,II.1.1,Buenos Aires,AR-B,annual,2015,gas oil combustion consumption by public passenger transport,6092.75772,TJ,CO2,74100.0,kg/TJ,451473347.052,kg +b9be1025-22c1-38cd-b31c-1e59ffc76925,SESCO,II.1.1,Buenos Aires,AR-B,annual,2015,gas oil combustion consumption by public passenger transport,6092.75772,TJ,CH4,3.9,kg/TJ,23761.755107999998,kg +b9be1025-22c1-38cd-b31c-1e59ffc76925,SESCO,II.1.1,Buenos Aires,AR-B,annual,2015,gas oil combustion consumption by public passenger transport,6092.75772,TJ,N2O,3.9,kg/TJ,23761.755107999998,kg +1a013615-6f88-358b-b001-bdfefaeaf398,SESCO,II.1.1,Capital Federal,AR-C,annual,2015,gas oil combustion consumption by public passenger transport,127.43136,TJ,CO2,74100.0,kg/TJ,9442663.776,kg +6810ec7a-aa6c-3a83-ae09-be37b2ed159a,SESCO,II.1.1,Capital Federal,AR-C,annual,2015,gas oil combustion consumption by public passenger transport,127.43136,TJ,CH4,3.9,kg/TJ,496.982304,kg +6810ec7a-aa6c-3a83-ae09-be37b2ed159a,SESCO,II.1.1,Capital Federal,AR-C,annual,2015,gas oil combustion consumption by public passenger transport,127.43136,TJ,N2O,3.9,kg/TJ,496.982304,kg +c17549a4-d22f-32e8-b6c0-b0a36811a9bc,SESCO,II.1.1,Misiones,AR-N,annual,2015,gas oil combustion consumption by public passenger transport,339.31128,TJ,CO2,74100.0,kg/TJ,25142965.848,kg +c62b5db7-caed-3ead-9a7e-f9e362389abe,SESCO,II.1.1,Misiones,AR-N,annual,2015,gas oil combustion consumption by public passenger transport,339.31128,TJ,CH4,3.9,kg/TJ,1323.313992,kg +c62b5db7-caed-3ead-9a7e-f9e362389abe,SESCO,II.1.1,Misiones,AR-N,annual,2015,gas oil combustion consumption by public passenger transport,339.31128,TJ,N2O,3.9,kg/TJ,1323.313992,kg +e21538d4-82c1-3b2d-9072-b91e2e6d7c3b,SESCO,II.5.1,Buenos Aires,AR-B,annual,2015,gasoline combustion consumption by agriculture machines,15.150599999999999,TJ,CO2,69300.0,kg/TJ,1049936.5799999998,kg +ae2ca80f-b78a-34f9-b3e6-34fbec9b91a2,SESCO,II.5.1,Buenos Aires,AR-B,annual,2015,gasoline combustion consumption by agriculture machines,15.150599999999999,TJ,CH4,33.0,kg/TJ,499.96979999999996,kg +24301adc-9409-33c8-b6b7-70e2b291963a,SESCO,II.5.1,Buenos Aires,AR-B,annual,2015,gasoline combustion consumption by agriculture machines,15.150599999999999,TJ,N2O,3.2,kg/TJ,48.48192,kg +79e7f49d-5d66-3794-ab66-dfe08fedd7fd,SESCO,II.5.1,Buenos Aires,AR-B,annual,2015,gas oil combustion consumption by agriculture machines,8549.64012,TJ,CO2,74100.0,kg/TJ,633528332.892,kg +68acb4d5-36c8-37d5-b8da-cf7d4a08aabd,SESCO,II.5.1,Buenos Aires,AR-B,annual,2015,gas oil combustion consumption by agriculture machines,8549.64012,TJ,CH4,3.9,kg/TJ,33343.596467999996,kg +68acb4d5-36c8-37d5-b8da-cf7d4a08aabd,SESCO,II.5.1,Buenos Aires,AR-B,annual,2015,gas oil combustion consumption by agriculture machines,8549.64012,TJ,N2O,3.9,kg/TJ,33343.596467999996,kg +db84b8ea-db39-3793-8e84-0ea533c6fa07,SESCO,II.5.1,Capital Federal,AR-C,annual,2015,gas oil combustion consumption by agriculture machines,16.976399999999998,TJ,CO2,74100.0,kg/TJ,1257951.2399999998,kg +24dd3f78-3cfe-3cd1-b8db-25fecc423b3b,SESCO,II.5.1,Capital Federal,AR-C,annual,2015,gas oil combustion consumption by agriculture machines,16.976399999999998,TJ,CH4,3.9,kg/TJ,66.20795999999999,kg +24dd3f78-3cfe-3cd1-b8db-25fecc423b3b,SESCO,II.5.1,Capital Federal,AR-C,annual,2015,gas oil combustion consumption by agriculture machines,16.976399999999998,TJ,N2O,3.9,kg/TJ,66.20795999999999,kg +ff1cfd1c-aa80-342f-9102-99adbd7fd717,SESCO,II.5.1,Catamarca,AR-K,annual,2015,gas oil combustion consumption by agriculture machines,124.28892,TJ,CO2,74100.0,kg/TJ,9209808.972000001,kg +f5fba0d2-d743-3862-b776-3e6e1c0f7016,SESCO,II.5.1,Catamarca,AR-K,annual,2015,gas oil combustion consumption by agriculture machines,124.28892,TJ,CH4,3.9,kg/TJ,484.726788,kg +f5fba0d2-d743-3862-b776-3e6e1c0f7016,SESCO,II.5.1,Catamarca,AR-K,annual,2015,gas oil combustion consumption by agriculture machines,124.28892,TJ,N2O,3.9,kg/TJ,484.726788,kg +fe8c51c9-9eef-3080-8197-523818daea05,SESCO,II.5.1,Chaco,AR-H,annual,2015,gas oil combustion consumption by agriculture machines,1341.02724,TJ,CO2,74100.0,kg/TJ,99370118.484,kg +4a3c985d-1739-3edf-b91f-6f9fc2c3c4f8,SESCO,II.5.1,Chaco,AR-H,annual,2015,gas oil combustion consumption by agriculture machines,1341.02724,TJ,CH4,3.9,kg/TJ,5230.006235999999,kg +4a3c985d-1739-3edf-b91f-6f9fc2c3c4f8,SESCO,II.5.1,Chaco,AR-H,annual,2015,gas oil combustion consumption by agriculture machines,1341.02724,TJ,N2O,3.9,kg/TJ,5230.006235999999,kg +4ec062f3-cc02-3c48-b061-57b174ae4315,SESCO,II.5.1,Chubut,AR-U,annual,2015,gas oil combustion consumption by agriculture machines,1.15584,TJ,CO2,74100.0,kg/TJ,85647.74399999999,kg +db5257b5-578c-3155-ac2b-ab1e2c7d3a48,SESCO,II.5.1,Chubut,AR-U,annual,2015,gas oil combustion consumption by agriculture machines,1.15584,TJ,CH4,3.9,kg/TJ,4.507776,kg +db5257b5-578c-3155-ac2b-ab1e2c7d3a48,SESCO,II.5.1,Chubut,AR-U,annual,2015,gas oil combustion consumption by agriculture machines,1.15584,TJ,N2O,3.9,kg/TJ,4.507776,kg +9a068367-69d7-3686-b8ba-9974e119a06d,SESCO,II.5.1,Corrientes,AR-W,annual,2015,gas oil combustion consumption by agriculture machines,334.2906,TJ,CO2,74100.0,kg/TJ,24770933.459999997,kg +0fb78296-1a47-39b6-8734-13a14a09fe57,SESCO,II.5.1,Corrientes,AR-W,annual,2015,gas oil combustion consumption by agriculture machines,334.2906,TJ,CH4,3.9,kg/TJ,1303.73334,kg +0fb78296-1a47-39b6-8734-13a14a09fe57,SESCO,II.5.1,Corrientes,AR-W,annual,2015,gas oil combustion consumption by agriculture machines,334.2906,TJ,N2O,3.9,kg/TJ,1303.73334,kg +973f3755-f6e1-380a-93c7-a38c9e3c793d,SESCO,II.5.1,Córdoba,AR-X,annual,2015,gas oil combustion consumption by agriculture machines,7403.29968,TJ,CO2,74100.0,kg/TJ,548584506.288,kg +abefe977-49d5-3aeb-a84f-e7941d723a24,SESCO,II.5.1,Córdoba,AR-X,annual,2015,gas oil combustion consumption by agriculture machines,7403.29968,TJ,CH4,3.9,kg/TJ,28872.868752,kg +abefe977-49d5-3aeb-a84f-e7941d723a24,SESCO,II.5.1,Córdoba,AR-X,annual,2015,gas oil combustion consumption by agriculture machines,7403.29968,TJ,N2O,3.9,kg/TJ,28872.868752,kg +2a21e21e-2c83-3396-b64f-ed7819e7104c,SESCO,II.5.1,Entre Rios,AR-E,annual,2015,gas oil combustion consumption by agriculture machines,2098.60812,TJ,CO2,74100.0,kg/TJ,155506861.692,kg +a4adf205-cfba-3906-a976-bd3cdfa40f4b,SESCO,II.5.1,Entre Rios,AR-E,annual,2015,gas oil combustion consumption by agriculture machines,2098.60812,TJ,CH4,3.9,kg/TJ,8184.571668,kg +a4adf205-cfba-3906-a976-bd3cdfa40f4b,SESCO,II.5.1,Entre Rios,AR-E,annual,2015,gas oil combustion consumption by agriculture machines,2098.60812,TJ,N2O,3.9,kg/TJ,8184.571668,kg +682ee2ff-6cb4-3353-bd36-83f1d3411519,SESCO,II.5.1,Formosa,AR-P,annual,2015,gas oil combustion consumption by agriculture machines,339.99756,TJ,CO2,74100.0,kg/TJ,25193819.196000002,kg +0982cf28-e54b-3675-8115-25cf66db221e,SESCO,II.5.1,Formosa,AR-P,annual,2015,gas oil combustion consumption by agriculture machines,339.99756,TJ,CH4,3.9,kg/TJ,1325.9904840000002,kg +0982cf28-e54b-3675-8115-25cf66db221e,SESCO,II.5.1,Formosa,AR-P,annual,2015,gas oil combustion consumption by agriculture machines,339.99756,TJ,N2O,3.9,kg/TJ,1325.9904840000002,kg +521036d0-6f91-383a-9412-7bd933437c5a,SESCO,II.5.1,Jujuy,AR-Y,annual,2015,gas oil combustion consumption by agriculture machines,1086.56184,TJ,CO2,74100.0,kg/TJ,80514232.34400001,kg +85f9bdc3-f3e2-37eb-973a-69624b024fe3,SESCO,II.5.1,Jujuy,AR-Y,annual,2015,gas oil combustion consumption by agriculture machines,1086.56184,TJ,CH4,3.9,kg/TJ,4237.591176,kg +85f9bdc3-f3e2-37eb-973a-69624b024fe3,SESCO,II.5.1,Jujuy,AR-Y,annual,2015,gas oil combustion consumption by agriculture machines,1086.56184,TJ,N2O,3.9,kg/TJ,4237.591176,kg +61fb609f-3c18-3363-9d69-26cc5ea6689d,SESCO,II.5.1,La Pampa,AR-L,annual,2015,gas oil combustion consumption by agriculture machines,1989.63408,TJ,CO2,74100.0,kg/TJ,147431885.328,kg +16b40a06-97f2-3238-a1a9-9cd02266bae6,SESCO,II.5.1,La Pampa,AR-L,annual,2015,gas oil combustion consumption by agriculture machines,1989.63408,TJ,CH4,3.9,kg/TJ,7759.572912,kg +16b40a06-97f2-3238-a1a9-9cd02266bae6,SESCO,II.5.1,La Pampa,AR-L,annual,2015,gas oil combustion consumption by agriculture machines,1989.63408,TJ,N2O,3.9,kg/TJ,7759.572912,kg +4dcad23b-84b8-3fd6-9713-dce3f38c2727,SESCO,II.5.1,La Rioja,AR-F,annual,2015,gas oil combustion consumption by agriculture machines,31.31604,TJ,CO2,74100.0,kg/TJ,2320518.5640000002,kg +133ebd51-bd0f-3348-9a8b-1c38e33f43d2,SESCO,II.5.1,La Rioja,AR-F,annual,2015,gas oil combustion consumption by agriculture machines,31.31604,TJ,CH4,3.9,kg/TJ,122.13255600000001,kg +133ebd51-bd0f-3348-9a8b-1c38e33f43d2,SESCO,II.5.1,La Rioja,AR-F,annual,2015,gas oil combustion consumption by agriculture machines,31.31604,TJ,N2O,3.9,kg/TJ,122.13255600000001,kg +b6aca28a-26e7-348a-9e28-229080ee41c5,SESCO,II.5.1,Mendoza,AR-M,annual,2015,gas oil combustion consumption by agriculture machines,1072.43892,TJ,CO2,74100.0,kg/TJ,79467723.972,kg +1b6406d6-0b46-3f7f-b0a7-26882b900146,SESCO,II.5.1,Mendoza,AR-M,annual,2015,gas oil combustion consumption by agriculture machines,1072.43892,TJ,CH4,3.9,kg/TJ,4182.511788,kg +1b6406d6-0b46-3f7f-b0a7-26882b900146,SESCO,II.5.1,Mendoza,AR-M,annual,2015,gas oil combustion consumption by agriculture machines,1072.43892,TJ,N2O,3.9,kg/TJ,4182.511788,kg +902051d5-08ec-3abe-a2af-ff8dc8373897,SESCO,II.5.1,Misiones,AR-N,annual,2015,gas oil combustion consumption by agriculture machines,977.15436,TJ,CO2,74100.0,kg/TJ,72407138.076,kg +db078204-4ee4-33af-b74a-d8f66df0e810,SESCO,II.5.1,Misiones,AR-N,annual,2015,gas oil combustion consumption by agriculture machines,977.15436,TJ,CH4,3.9,kg/TJ,3810.902004,kg +db078204-4ee4-33af-b74a-d8f66df0e810,SESCO,II.5.1,Misiones,AR-N,annual,2015,gas oil combustion consumption by agriculture machines,977.15436,TJ,N2O,3.9,kg/TJ,3810.902004,kg +62f6a26c-5cb4-30cb-9e7c-29da0d7aea8a,SESCO,II.5.1,Neuquén,AR-Q,annual,2015,gas oil combustion consumption by agriculture machines,71.8788,TJ,CO2,74100.0,kg/TJ,5326219.08,kg +880cd3d5-1963-3f6e-b290-f5eed5888dc2,SESCO,II.5.1,Neuquén,AR-Q,annual,2015,gas oil combustion consumption by agriculture machines,71.8788,TJ,CH4,3.9,kg/TJ,280.32732,kg +880cd3d5-1963-3f6e-b290-f5eed5888dc2,SESCO,II.5.1,Neuquén,AR-Q,annual,2015,gas oil combustion consumption by agriculture machines,71.8788,TJ,N2O,3.9,kg/TJ,280.32732,kg +a64ab1be-b058-3aa0-97ce-04a78ca91533,SESCO,II.5.1,Rio Negro,AR-R,annual,2015,gas oil combustion consumption by agriculture machines,199.16568,TJ,CO2,74100.0,kg/TJ,14758176.888,kg +04502ead-42b5-37b0-bfb6-2bc78a57b46a,SESCO,II.5.1,Rio Negro,AR-R,annual,2015,gas oil combustion consumption by agriculture machines,199.16568,TJ,CH4,3.9,kg/TJ,776.746152,kg +04502ead-42b5-37b0-bfb6-2bc78a57b46a,SESCO,II.5.1,Rio Negro,AR-R,annual,2015,gas oil combustion consumption by agriculture machines,199.16568,TJ,N2O,3.9,kg/TJ,776.746152,kg +1364f1a2-058d-3613-9248-314bbdf696b4,SESCO,II.5.1,Salta,AR-A,annual,2015,gas oil combustion consumption by agriculture machines,1651.91208,TJ,CO2,74100.0,kg/TJ,122406685.128,kg +c396c644-61ad-3685-b2c8-9902b4358a7c,SESCO,II.5.1,Salta,AR-A,annual,2015,gas oil combustion consumption by agriculture machines,1651.91208,TJ,CH4,3.9,kg/TJ,6442.457112,kg +c396c644-61ad-3685-b2c8-9902b4358a7c,SESCO,II.5.1,Salta,AR-A,annual,2015,gas oil combustion consumption by agriculture machines,1651.91208,TJ,N2O,3.9,kg/TJ,6442.457112,kg +1b41ee13-f703-3dbc-abf5-cf4b8d09be17,SESCO,II.5.1,San Juan,AR-J,annual,2015,gas oil combustion consumption by agriculture machines,118.22076,TJ,CO2,74100.0,kg/TJ,8760158.316,kg +7f3b7c73-e315-349b-b0ef-d54512e8a5e2,SESCO,II.5.1,San Juan,AR-J,annual,2015,gas oil combustion consumption by agriculture machines,118.22076,TJ,CH4,3.9,kg/TJ,461.06096399999996,kg +7f3b7c73-e315-349b-b0ef-d54512e8a5e2,SESCO,II.5.1,San Juan,AR-J,annual,2015,gas oil combustion consumption by agriculture machines,118.22076,TJ,N2O,3.9,kg/TJ,461.06096399999996,kg +8f611625-8fe6-3d34-bee3-3af026ce945b,SESCO,II.5.1,San Luis,AR-D,annual,2015,gas oil combustion consumption by agriculture machines,636.94008,TJ,CO2,74100.0,kg/TJ,47197259.927999996,kg +13639e44-4c76-31c8-921e-47ef0c9ac9b3,SESCO,II.5.1,San Luis,AR-D,annual,2015,gas oil combustion consumption by agriculture machines,636.94008,TJ,CH4,3.9,kg/TJ,2484.066312,kg +13639e44-4c76-31c8-921e-47ef0c9ac9b3,SESCO,II.5.1,San Luis,AR-D,annual,2015,gas oil combustion consumption by agriculture machines,636.94008,TJ,N2O,3.9,kg/TJ,2484.066312,kg +cbf38eb8-da7f-3564-bbd8-f5b49a97e86d,SESCO,II.5.1,Santa Cruz,AR-Z,annual,2015,gas oil combustion consumption by agriculture machines,0.61404,TJ,CO2,74100.0,kg/TJ,45500.364,kg +a09b9d80-7251-3e27-8f04-dbe8d223f397,SESCO,II.5.1,Santa Cruz,AR-Z,annual,2015,gas oil combustion consumption by agriculture machines,0.61404,TJ,CH4,3.9,kg/TJ,2.394756,kg +a09b9d80-7251-3e27-8f04-dbe8d223f397,SESCO,II.5.1,Santa Cruz,AR-Z,annual,2015,gas oil combustion consumption by agriculture machines,0.61404,TJ,N2O,3.9,kg/TJ,2.394756,kg +6e57a13c-e776-3305-8f71-2a237c9974cd,SESCO,II.5.1,Santa Fe,AR-S,annual,2015,gas oil combustion consumption by agriculture machines,6227.088,TJ,CO2,74100.0,kg/TJ,461427220.79999995,kg +4ea452aa-aca7-37df-b095-58ae1284e224,SESCO,II.5.1,Santa Fe,AR-S,annual,2015,gas oil combustion consumption by agriculture machines,6227.088,TJ,CH4,3.9,kg/TJ,24285.6432,kg +4ea452aa-aca7-37df-b095-58ae1284e224,SESCO,II.5.1,Santa Fe,AR-S,annual,2015,gas oil combustion consumption by agriculture machines,6227.088,TJ,N2O,3.9,kg/TJ,24285.6432,kg +53f17455-c25b-3469-bb21-2c01d30c4779,SESCO,II.5.1,Santiago del Estero,AR-G,annual,2015,gas oil combustion consumption by agriculture machines,1760.77776,TJ,CO2,74100.0,kg/TJ,130473632.016,kg +f68a1984-b465-3890-b82e-b91fb36fb561,SESCO,II.5.1,Santiago del Estero,AR-G,annual,2015,gas oil combustion consumption by agriculture machines,1760.77776,TJ,CH4,3.9,kg/TJ,6867.033264,kg +f68a1984-b465-3890-b82e-b91fb36fb561,SESCO,II.5.1,Santiago del Estero,AR-G,annual,2015,gas oil combustion consumption by agriculture machines,1760.77776,TJ,N2O,3.9,kg/TJ,6867.033264,kg +2e14be7e-f46e-3328-85d9-007da1e8ee25,SESCO,II.5.1,Tucuman,AR-T,annual,2015,gas oil combustion consumption by agriculture machines,1393.4734799999999,TJ,CO2,74100.0,kg/TJ,103256384.86799999,kg +8cf640e5-0618-3009-9d90-947db8e6bf7e,SESCO,II.5.1,Tucuman,AR-T,annual,2015,gas oil combustion consumption by agriculture machines,1393.4734799999999,TJ,CH4,3.9,kg/TJ,5434.546571999999,kg +8cf640e5-0618-3009-9d90-947db8e6bf7e,SESCO,II.5.1,Tucuman,AR-T,annual,2015,gas oil combustion consumption by agriculture machines,1393.4734799999999,TJ,N2O,3.9,kg/TJ,5434.546571999999,kg +1758b2b1-1cca-318f-90b6-91659266b727,SESCO,II.5.1,Buenos Aires,AR-B,annual,2015,gas oil combustion consumption by agriculture machines,187.86012,TJ,CO2,74100.0,kg/TJ,13920434.891999999,kg +284faad3-9c06-334a-82b1-9edb5ea1b3af,SESCO,II.5.1,Buenos Aires,AR-B,annual,2015,gas oil combustion consumption by agriculture machines,187.86012,TJ,CH4,3.9,kg/TJ,732.654468,kg +284faad3-9c06-334a-82b1-9edb5ea1b3af,SESCO,II.5.1,Buenos Aires,AR-B,annual,2015,gas oil combustion consumption by agriculture machines,187.86012,TJ,N2O,3.9,kg/TJ,732.654468,kg +3d9d367d-6fa6-3e0d-b992-51d895c7b007,SESCO,II.5.1,Catamarca,AR-K,annual,2015,gas oil combustion consumption by agriculture machines,19.93824,TJ,CO2,74100.0,kg/TJ,1477423.584,kg +ffe93fe5-75fa-3392-9379-5623c8b192b5,SESCO,II.5.1,Catamarca,AR-K,annual,2015,gas oil combustion consumption by agriculture machines,19.93824,TJ,CH4,3.9,kg/TJ,77.759136,kg +ffe93fe5-75fa-3392-9379-5623c8b192b5,SESCO,II.5.1,Catamarca,AR-K,annual,2015,gas oil combustion consumption by agriculture machines,19.93824,TJ,N2O,3.9,kg/TJ,77.759136,kg +525047bd-e467-336e-9bf1-e1b347801369,SESCO,II.5.1,Chaco,AR-H,annual,2015,gas oil combustion consumption by agriculture machines,79.39176,TJ,CO2,74100.0,kg/TJ,5882929.416,kg +c40df824-b7c9-3139-b299-0e80e7b0c7cf,SESCO,II.5.1,Chaco,AR-H,annual,2015,gas oil combustion consumption by agriculture machines,79.39176,TJ,CH4,3.9,kg/TJ,309.627864,kg +c40df824-b7c9-3139-b299-0e80e7b0c7cf,SESCO,II.5.1,Chaco,AR-H,annual,2015,gas oil combustion consumption by agriculture machines,79.39176,TJ,N2O,3.9,kg/TJ,309.627864,kg +c65f8013-17f5-34b9-94d4-b5b354325a26,SESCO,II.5.1,Corrientes,AR-W,annual,2015,gas oil combustion consumption by agriculture machines,27.74016,TJ,CO2,74100.0,kg/TJ,2055545.856,kg +6210595f-3a1e-3bf0-a2ac-2fded2d4f641,SESCO,II.5.1,Corrientes,AR-W,annual,2015,gas oil combustion consumption by agriculture machines,27.74016,TJ,CH4,3.9,kg/TJ,108.186624,kg +6210595f-3a1e-3bf0-a2ac-2fded2d4f641,SESCO,II.5.1,Corrientes,AR-W,annual,2015,gas oil combustion consumption by agriculture machines,27.74016,TJ,N2O,3.9,kg/TJ,108.186624,kg +04e8234a-85d9-319f-bde9-a6005a0efd49,SESCO,II.5.1,Córdoba,AR-X,annual,2015,gas oil combustion consumption by agriculture machines,38.75676,TJ,CO2,74100.0,kg/TJ,2871875.916,kg +e9b810a9-51e6-3208-826a-6a1af9d7ee0c,SESCO,II.5.1,Córdoba,AR-X,annual,2015,gas oil combustion consumption by agriculture machines,38.75676,TJ,CH4,3.9,kg/TJ,151.151364,kg +e9b810a9-51e6-3208-826a-6a1af9d7ee0c,SESCO,II.5.1,Córdoba,AR-X,annual,2015,gas oil combustion consumption by agriculture machines,38.75676,TJ,N2O,3.9,kg/TJ,151.151364,kg +610b93b8-1f6d-3f31-87ed-efb6a274d80a,SESCO,II.5.1,Entre Rios,AR-E,annual,2015,gas oil combustion consumption by agriculture machines,12.2808,TJ,CO2,74100.0,kg/TJ,910007.2799999999,kg +c561f53b-2939-325f-add8-c193c8e07de7,SESCO,II.5.1,Entre Rios,AR-E,annual,2015,gas oil combustion consumption by agriculture machines,12.2808,TJ,CH4,3.9,kg/TJ,47.89512,kg +c561f53b-2939-325f-add8-c193c8e07de7,SESCO,II.5.1,Entre Rios,AR-E,annual,2015,gas oil combustion consumption by agriculture machines,12.2808,TJ,N2O,3.9,kg/TJ,47.89512,kg +06a4dc13-0be6-3ed7-8280-772f8eea201c,SESCO,II.5.1,Jujuy,AR-Y,annual,2015,gas oil combustion consumption by agriculture machines,10.6554,TJ,CO2,74100.0,kg/TJ,789565.14,kg +44f751d6-f1a8-3f29-ae12-7d4cfcf04d37,SESCO,II.5.1,Jujuy,AR-Y,annual,2015,gas oil combustion consumption by agriculture machines,10.6554,TJ,CH4,3.9,kg/TJ,41.55606,kg +44f751d6-f1a8-3f29-ae12-7d4cfcf04d37,SESCO,II.5.1,Jujuy,AR-Y,annual,2015,gas oil combustion consumption by agriculture machines,10.6554,TJ,N2O,3.9,kg/TJ,41.55606,kg +7ceb17e7-3e03-3176-bd08-914fd9fd779d,SESCO,II.5.1,La Pampa,AR-L,annual,2015,gas oil combustion consumption by agriculture machines,98.2464,TJ,CO2,74100.0,kg/TJ,7280058.239999999,kg +7093ac8c-2520-3c7d-a306-434933bebd34,SESCO,II.5.1,La Pampa,AR-L,annual,2015,gas oil combustion consumption by agriculture machines,98.2464,TJ,CH4,3.9,kg/TJ,383.16096,kg +7093ac8c-2520-3c7d-a306-434933bebd34,SESCO,II.5.1,La Pampa,AR-L,annual,2015,gas oil combustion consumption by agriculture machines,98.2464,TJ,N2O,3.9,kg/TJ,383.16096,kg +fdaa72f9-a3e0-3bb3-a1f9-54b16b070531,SESCO,II.5.1,Mendoza,AR-M,annual,2015,gas oil combustion consumption by agriculture machines,14.989799999999999,TJ,CO2,74100.0,kg/TJ,1110744.18,kg +af9bf487-0fcb-3d49-b0d3-9d9cac60d758,SESCO,II.5.1,Mendoza,AR-M,annual,2015,gas oil combustion consumption by agriculture machines,14.989799999999999,TJ,CH4,3.9,kg/TJ,58.46021999999999,kg +af9bf487-0fcb-3d49-b0d3-9d9cac60d758,SESCO,II.5.1,Mendoza,AR-M,annual,2015,gas oil combustion consumption by agriculture machines,14.989799999999999,TJ,N2O,3.9,kg/TJ,58.46021999999999,kg +9f8eb2a6-2e09-3604-9900-6478f500c172,SESCO,II.5.1,Misiones,AR-N,annual,2015,gas oil combustion consumption by agriculture machines,18.963,TJ,CO2,74100.0,kg/TJ,1405158.3,kg +4f0ff86e-fff4-3ca8-a80b-617af2b4ec55,SESCO,II.5.1,Misiones,AR-N,annual,2015,gas oil combustion consumption by agriculture machines,18.963,TJ,CH4,3.9,kg/TJ,73.95570000000001,kg +4f0ff86e-fff4-3ca8-a80b-617af2b4ec55,SESCO,II.5.1,Misiones,AR-N,annual,2015,gas oil combustion consumption by agriculture machines,18.963,TJ,N2O,3.9,kg/TJ,73.95570000000001,kg +24ff453b-6c3a-3b21-8534-b00335383b8c,SESCO,II.5.1,Salta,AR-A,annual,2015,gas oil combustion consumption by agriculture machines,102.5808,TJ,CO2,74100.0,kg/TJ,7601237.279999999,kg +84657468-daf4-315d-9901-f2f56beb5bd5,SESCO,II.5.1,Salta,AR-A,annual,2015,gas oil combustion consumption by agriculture machines,102.5808,TJ,CH4,3.9,kg/TJ,400.06512,kg +84657468-daf4-315d-9901-f2f56beb5bd5,SESCO,II.5.1,Salta,AR-A,annual,2015,gas oil combustion consumption by agriculture machines,102.5808,TJ,N2O,3.9,kg/TJ,400.06512,kg +ee1e2358-3665-3d02-9ae7-851db4455a0a,SESCO,II.5.1,San Luis,AR-D,annual,2015,gas oil combustion consumption by agriculture machines,23.04456,TJ,CO2,74100.0,kg/TJ,1707601.896,kg +4103467d-353c-3cef-8178-d9b38cdffd8c,SESCO,II.5.1,San Luis,AR-D,annual,2015,gas oil combustion consumption by agriculture machines,23.04456,TJ,CH4,3.9,kg/TJ,89.873784,kg +4103467d-353c-3cef-8178-d9b38cdffd8c,SESCO,II.5.1,San Luis,AR-D,annual,2015,gas oil combustion consumption by agriculture machines,23.04456,TJ,N2O,3.9,kg/TJ,89.873784,kg +42fa8c36-82de-3811-8e05-4ce45c0bb09d,SESCO,II.5.1,Santa Fe,AR-S,annual,2015,gas oil combustion consumption by agriculture machines,100.34136,TJ,CO2,74100.0,kg/TJ,7435294.776,kg +cb24a525-33eb-32a5-999f-8df41d6eed75,SESCO,II.5.1,Santa Fe,AR-S,annual,2015,gas oil combustion consumption by agriculture machines,100.34136,TJ,CH4,3.9,kg/TJ,391.331304,kg +cb24a525-33eb-32a5-999f-8df41d6eed75,SESCO,II.5.1,Santa Fe,AR-S,annual,2015,gas oil combustion consumption by agriculture machines,100.34136,TJ,N2O,3.9,kg/TJ,391.331304,kg +1392f3a6-186f-3788-96df-b36564308528,SESCO,II.5.1,Santiago del Estero,AR-G,annual,2015,gas oil combustion consumption by agriculture machines,73.75704,TJ,CO2,74100.0,kg/TJ,5465396.664,kg +3287fef0-9c09-3f68-b149-cfa6e80dc81b,SESCO,II.5.1,Santiago del Estero,AR-G,annual,2015,gas oil combustion consumption by agriculture machines,73.75704,TJ,CH4,3.9,kg/TJ,287.65245600000003,kg +3287fef0-9c09-3f68-b149-cfa6e80dc81b,SESCO,II.5.1,Santiago del Estero,AR-G,annual,2015,gas oil combustion consumption by agriculture machines,73.75704,TJ,N2O,3.9,kg/TJ,287.65245600000003,kg +7a0a7d55-bf06-3d86-956d-01c145a08817,SESCO,II.5.1,Tucuman,AR-T,annual,2015,gas oil combustion consumption by agriculture machines,79.6446,TJ,CO2,74100.0,kg/TJ,5901664.859999999,kg +1d144ad3-1c38-377c-9b9e-4d717e533f85,SESCO,II.5.1,Tucuman,AR-T,annual,2015,gas oil combustion consumption by agriculture machines,79.6446,TJ,CH4,3.9,kg/TJ,310.61393999999996,kg +1d144ad3-1c38-377c-9b9e-4d717e533f85,SESCO,II.5.1,Tucuman,AR-T,annual,2015,gas oil combustion consumption by agriculture machines,79.6446,TJ,N2O,3.9,kg/TJ,310.61393999999996,kg +5af99938-531a-3e20-9ac6-19c055abc2df,SESCO,II.5.1,Buenos Aires,AR-B,annual,2015,jet kerosene combustion consumption by agriculture machines,6.605129999999999,TJ,CO2,71500.0,kg/TJ,472266.7949999999,kg +60b02794-4a12-31c3-a40d-b4e89716a0e1,SESCO,II.5.1,Buenos Aires,AR-B,annual,2015,jet kerosene combustion consumption by agriculture machines,6.605129999999999,TJ,CH4,0.5,kg/TJ,3.3025649999999995,kg +f3625e33-4480-388e-b0d6-d5bef0ac5cfa,SESCO,II.5.1,Buenos Aires,AR-B,annual,2015,jet kerosene combustion consumption by agriculture machines,6.605129999999999,TJ,N2O,2.0,kg/TJ,13.210259999999998,kg +4a64b351-a92e-3cd9-9ebf-28db8df40a03,SESCO,II.5.1,Córdoba,AR-X,annual,2015,jet kerosene combustion consumption by agriculture machines,0.25162399999999996,TJ,CO2,71500.0,kg/TJ,17991.115999999998,kg +dd9f38f2-756a-3004-b75c-4f37f836ba76,SESCO,II.5.1,Córdoba,AR-X,annual,2015,jet kerosene combustion consumption by agriculture machines,0.25162399999999996,TJ,CH4,0.5,kg/TJ,0.12581199999999998,kg +4a505f02-abd5-35d4-a751-9d58fbb05ebd,SESCO,II.5.1,Córdoba,AR-X,annual,2015,jet kerosene combustion consumption by agriculture machines,0.25162399999999996,TJ,N2O,2.0,kg/TJ,0.5032479999999999,kg +fde7ca6d-a175-3877-9429-c9191f909738,SESCO,II.5.1,Entre Rios,AR-E,annual,2015,jet kerosene combustion consumption by agriculture machines,0.157265,TJ,CO2,71500.0,kg/TJ,11244.447499999998,kg +0a2b02da-e900-3b4a-9805-c75316635314,SESCO,II.5.1,Entre Rios,AR-E,annual,2015,jet kerosene combustion consumption by agriculture machines,0.157265,TJ,CH4,0.5,kg/TJ,0.0786325,kg +fc0df5e4-0fc4-3c4f-8a62-418b1dffb0b0,SESCO,II.5.1,Entre Rios,AR-E,annual,2015,jet kerosene combustion consumption by agriculture machines,0.157265,TJ,N2O,2.0,kg/TJ,0.31453,kg +b842143a-fa98-34d1-bf80-ea031832470a,SESCO,II.5.1,La Pampa,AR-L,annual,2015,jet kerosene combustion consumption by agriculture machines,1.100855,TJ,CO2,71500.0,kg/TJ,78711.13249999999,kg +8381f7a1-f4a4-332c-8004-947d4a7c3a38,SESCO,II.5.1,La Pampa,AR-L,annual,2015,jet kerosene combustion consumption by agriculture machines,1.100855,TJ,CH4,0.5,kg/TJ,0.5504275,kg +13b73472-f63c-3c2b-b7af-1b199a854359,SESCO,II.5.1,La Pampa,AR-L,annual,2015,jet kerosene combustion consumption by agriculture machines,1.100855,TJ,N2O,2.0,kg/TJ,2.20171,kg +260725dc-3e9a-3897-8f67-1c61705b3fab,SESCO,II.5.1,Santa Fe,AR-S,annual,2015,jet kerosene combustion consumption by agriculture machines,1.7928209999999998,TJ,CO2,71500.0,kg/TJ,128186.70149999998,kg +74da5d0b-ba03-3433-8c76-909240085642,SESCO,II.5.1,Santa Fe,AR-S,annual,2015,jet kerosene combustion consumption by agriculture machines,1.7928209999999998,TJ,CH4,0.5,kg/TJ,0.8964104999999999,kg +2ef639ff-353a-3b61-9a01-48e8f4789b31,SESCO,II.5.1,Santa Fe,AR-S,annual,2015,jet kerosene combustion consumption by agriculture machines,1.7928209999999998,TJ,N2O,2.0,kg/TJ,3.5856419999999996,kg +6307b24c-bce6-354a-82ab-0ec97a8a38c6,SESCO,II.1.1,Buenos Aires,AR-B,annual,2015,gas oil combustion consumption by to the public,35370.51,TJ,CO2,74100.0,kg/TJ,2620954791.0,kg +356836ec-577a-3cde-8b5c-1b07f1d7a501,SESCO,II.1.1,Buenos Aires,AR-B,annual,2015,gas oil combustion consumption by to the public,35370.51,TJ,CH4,3.9,kg/TJ,137944.989,kg +356836ec-577a-3cde-8b5c-1b07f1d7a501,SESCO,II.1.1,Buenos Aires,AR-B,annual,2015,gas oil combustion consumption by to the public,35370.51,TJ,N2O,3.9,kg/TJ,137944.989,kg +b769168b-cba5-35b5-b270-346a0388dcc7,SESCO,II.1.1,Capital Federal,AR-C,annual,2015,gas oil combustion consumption by to the public,3902.65764,TJ,CO2,74100.0,kg/TJ,289186931.124,kg +be63fb4a-07ba-3781-b44f-5d39d6715e5d,SESCO,II.1.1,Capital Federal,AR-C,annual,2015,gas oil combustion consumption by to the public,3902.65764,TJ,CH4,3.9,kg/TJ,15220.364796,kg +be63fb4a-07ba-3781-b44f-5d39d6715e5d,SESCO,II.1.1,Capital Federal,AR-C,annual,2015,gas oil combustion consumption by to the public,3902.65764,TJ,N2O,3.9,kg/TJ,15220.364796,kg +bfc5f338-65ec-3a04-818c-3d17d99928e4,SESCO,II.1.1,Catamarca,AR-K,annual,2015,gas oil combustion consumption by to the public,412.99608,TJ,CO2,74100.0,kg/TJ,30603009.528,kg +adc001a2-01b4-3629-9b0f-ada5d86db2ba,SESCO,II.1.1,Catamarca,AR-K,annual,2015,gas oil combustion consumption by to the public,412.99608,TJ,CH4,3.9,kg/TJ,1610.684712,kg +adc001a2-01b4-3629-9b0f-ada5d86db2ba,SESCO,II.1.1,Catamarca,AR-K,annual,2015,gas oil combustion consumption by to the public,412.99608,TJ,N2O,3.9,kg/TJ,1610.684712,kg +e6996584-b524-3f21-8b50-5b443ab14fe4,SESCO,II.1.1,Chaco,AR-H,annual,2015,gas oil combustion consumption by to the public,2602.55436,TJ,CO2,74100.0,kg/TJ,192849278.076,kg +f493e89e-0d41-36c8-938c-51bae7649cc3,SESCO,II.1.1,Chaco,AR-H,annual,2015,gas oil combustion consumption by to the public,2602.55436,TJ,CH4,3.9,kg/TJ,10149.962004,kg +f493e89e-0d41-36c8-938c-51bae7649cc3,SESCO,II.1.1,Chaco,AR-H,annual,2015,gas oil combustion consumption by to the public,2602.55436,TJ,N2O,3.9,kg/TJ,10149.962004,kg +d6dc9f95-3471-3728-9733-c189325d1fc3,SESCO,II.1.1,Chubut,AR-U,annual,2015,gas oil combustion consumption by to the public,5248.99452,TJ,CO2,74100.0,kg/TJ,388950493.93200004,kg +b9344762-5ee9-34f8-bbfb-7eba4327360e,SESCO,II.1.1,Chubut,AR-U,annual,2015,gas oil combustion consumption by to the public,5248.99452,TJ,CH4,3.9,kg/TJ,20471.078628,kg +b9344762-5ee9-34f8-bbfb-7eba4327360e,SESCO,II.1.1,Chubut,AR-U,annual,2015,gas oil combustion consumption by to the public,5248.99452,TJ,N2O,3.9,kg/TJ,20471.078628,kg +1b937f9e-3c73-3b6d-9431-b7951f3793c8,SESCO,II.1.1,Corrientes,AR-W,annual,2015,gas oil combustion consumption by to the public,1936.32096,TJ,CO2,74100.0,kg/TJ,143481383.136,kg +b88aba58-711e-3c54-b7e5-2574f161064d,SESCO,II.1.1,Corrientes,AR-W,annual,2015,gas oil combustion consumption by to the public,1936.32096,TJ,CH4,3.9,kg/TJ,7551.651744,kg +b88aba58-711e-3c54-b7e5-2574f161064d,SESCO,II.1.1,Corrientes,AR-W,annual,2015,gas oil combustion consumption by to the public,1936.32096,TJ,N2O,3.9,kg/TJ,7551.651744,kg +f9a530b2-1eef-3dba-9dc9-a37f5b254cb5,SESCO,II.1.1,Córdoba,AR-X,annual,2015,gas oil combustion consumption by to the public,13642.7046,TJ,CO2,74100.0,kg/TJ,1010924410.8599999,kg +ed8c5138-a3e1-3a4a-9e2c-1f65cf7a0b54,SESCO,II.1.1,Córdoba,AR-X,annual,2015,gas oil combustion consumption by to the public,13642.7046,TJ,CH4,3.9,kg/TJ,53206.54794,kg +ed8c5138-a3e1-3a4a-9e2c-1f65cf7a0b54,SESCO,II.1.1,Córdoba,AR-X,annual,2015,gas oil combustion consumption by to the public,13642.7046,TJ,N2O,3.9,kg/TJ,53206.54794,kg +d33986be-5c6d-3272-93c8-6a4c479c8a04,SESCO,II.1.1,Entre Rios,AR-E,annual,2015,gas oil combustion consumption by to the public,4278.34176,TJ,CO2,74100.0,kg/TJ,317025124.416,kg +294fe84e-26af-3cd5-84ec-6f445d30c392,SESCO,II.1.1,Entre Rios,AR-E,annual,2015,gas oil combustion consumption by to the public,4278.34176,TJ,CH4,3.9,kg/TJ,16685.532864,kg +294fe84e-26af-3cd5-84ec-6f445d30c392,SESCO,II.1.1,Entre Rios,AR-E,annual,2015,gas oil combustion consumption by to the public,4278.34176,TJ,N2O,3.9,kg/TJ,16685.532864,kg +8c84110b-36fe-39b4-87cf-8cd9cae90521,SESCO,II.1.1,Formosa,AR-P,annual,2015,gas oil combustion consumption by to the public,769.68108,TJ,CO2,74100.0,kg/TJ,57033368.028,kg +8f6e9f39-5390-3669-aeb4-24df10e940e7,SESCO,II.1.1,Formosa,AR-P,annual,2015,gas oil combustion consumption by to the public,769.68108,TJ,CH4,3.9,kg/TJ,3001.756212,kg +8f6e9f39-5390-3669-aeb4-24df10e940e7,SESCO,II.1.1,Formosa,AR-P,annual,2015,gas oil combustion consumption by to the public,769.68108,TJ,N2O,3.9,kg/TJ,3001.756212,kg +a1a43e0c-a11a-38aa-a25c-68f8653c87d0,SESCO,II.1.1,Jujuy,AR-Y,annual,2015,gas oil combustion consumption by to the public,1933.6842,TJ,CO2,74100.0,kg/TJ,143285999.22,kg +5b97993e-a297-3f99-9c26-6268a8933037,SESCO,II.1.1,Jujuy,AR-Y,annual,2015,gas oil combustion consumption by to the public,1933.6842,TJ,CH4,3.9,kg/TJ,7541.36838,kg +5b97993e-a297-3f99-9c26-6268a8933037,SESCO,II.1.1,Jujuy,AR-Y,annual,2015,gas oil combustion consumption by to the public,1933.6842,TJ,N2O,3.9,kg/TJ,7541.36838,kg +2a3e49c7-fcda-3ade-88d8-efd2986b53a6,SESCO,II.1.1,La Pampa,AR-L,annual,2015,gas oil combustion consumption by to the public,2419.02864,TJ,CO2,74100.0,kg/TJ,179250022.224,kg +3e5b304e-d9de-3fd7-903a-077b2a7c8b72,SESCO,II.1.1,La Pampa,AR-L,annual,2015,gas oil combustion consumption by to the public,2419.02864,TJ,CH4,3.9,kg/TJ,9434.211696,kg +3e5b304e-d9de-3fd7-903a-077b2a7c8b72,SESCO,II.1.1,La Pampa,AR-L,annual,2015,gas oil combustion consumption by to the public,2419.02864,TJ,N2O,3.9,kg/TJ,9434.211696,kg +fb2b714f-9072-32f2-9c0e-0aa3fb358ee4,SESCO,II.1.1,La Rioja,AR-F,annual,2015,gas oil combustion consumption by to the public,810.06324,TJ,CO2,74100.0,kg/TJ,60025686.084,kg +c02c735f-69a2-35fd-ba4a-d7711f00ce5d,SESCO,II.1.1,La Rioja,AR-F,annual,2015,gas oil combustion consumption by to the public,810.06324,TJ,CH4,3.9,kg/TJ,3159.246636,kg +c02c735f-69a2-35fd-ba4a-d7711f00ce5d,SESCO,II.1.1,La Rioja,AR-F,annual,2015,gas oil combustion consumption by to the public,810.06324,TJ,N2O,3.9,kg/TJ,3159.246636,kg +90243bb4-4fa4-3f13-ae94-f4bb6c14260b,SESCO,II.1.1,Mendoza,AR-M,annual,2015,gas oil combustion consumption by to the public,11536.9086,TJ,CO2,74100.0,kg/TJ,854884927.26,kg +c0b3c2a0-4c9d-3469-ae18-fb96cd126075,SESCO,II.1.1,Mendoza,AR-M,annual,2015,gas oil combustion consumption by to the public,11536.9086,TJ,CH4,3.9,kg/TJ,44993.94354,kg +c0b3c2a0-4c9d-3469-ae18-fb96cd126075,SESCO,II.1.1,Mendoza,AR-M,annual,2015,gas oil combustion consumption by to the public,11536.9086,TJ,N2O,3.9,kg/TJ,44993.94354,kg +9dc4e083-85f1-34a4-9d9d-36a62f051056,SESCO,II.1.1,Misiones,AR-N,annual,2015,gas oil combustion consumption by to the public,3857.36316,TJ,CO2,74100.0,kg/TJ,285830610.156,kg +94f15e3b-2844-3b49-91ea-01df5f62f4ab,SESCO,II.1.1,Misiones,AR-N,annual,2015,gas oil combustion consumption by to the public,3857.36316,TJ,CH4,3.9,kg/TJ,15043.716323999999,kg +94f15e3b-2844-3b49-91ea-01df5f62f4ab,SESCO,II.1.1,Misiones,AR-N,annual,2015,gas oil combustion consumption by to the public,3857.36316,TJ,N2O,3.9,kg/TJ,15043.716323999999,kg +55b52b0e-156a-3e38-bd06-fa5cffdd459e,SESCO,II.1.1,Neuquén,AR-Q,annual,2015,gas oil combustion consumption by to the public,3143.0901599999997,TJ,CO2,74100.0,kg/TJ,232902980.85599998,kg +62ce04f0-3e12-35e4-bc23-dbe045004b48,SESCO,II.1.1,Neuquén,AR-Q,annual,2015,gas oil combustion consumption by to the public,3143.0901599999997,TJ,CH4,3.9,kg/TJ,12258.051623999998,kg +62ce04f0-3e12-35e4-bc23-dbe045004b48,SESCO,II.1.1,Neuquén,AR-Q,annual,2015,gas oil combustion consumption by to the public,3143.0901599999997,TJ,N2O,3.9,kg/TJ,12258.051623999998,kg +b667f663-b13c-3df4-97ba-a229ffba1488,SESCO,II.1.1,Rio Negro,AR-R,annual,2015,gas oil combustion consumption by to the public,4518.35916,TJ,CO2,74100.0,kg/TJ,334810413.756,kg +037604fe-5d79-35d4-9dad-113b9a8863d4,SESCO,II.1.1,Rio Negro,AR-R,annual,2015,gas oil combustion consumption by to the public,4518.35916,TJ,CH4,3.9,kg/TJ,17621.600724,kg +037604fe-5d79-35d4-9dad-113b9a8863d4,SESCO,II.1.1,Rio Negro,AR-R,annual,2015,gas oil combustion consumption by to the public,4518.35916,TJ,N2O,3.9,kg/TJ,17621.600724,kg +2f0e4192-8af9-30dc-bbec-885bf4541c57,SESCO,II.1.1,Salta,AR-A,annual,2015,gas oil combustion consumption by to the public,4155.38928,TJ,CO2,74100.0,kg/TJ,307914345.648,kg +716bed4b-f31a-36bf-a330-b1da0eda7aef,SESCO,II.1.1,Salta,AR-A,annual,2015,gas oil combustion consumption by to the public,4155.38928,TJ,CH4,3.9,kg/TJ,16206.018192000001,kg +716bed4b-f31a-36bf-a330-b1da0eda7aef,SESCO,II.1.1,Salta,AR-A,annual,2015,gas oil combustion consumption by to the public,4155.38928,TJ,N2O,3.9,kg/TJ,16206.018192000001,kg +9454fde6-8ca3-30cb-b2a8-e1c05ead9641,SESCO,II.1.1,San Juan,AR-J,annual,2015,gas oil combustion consumption by to the public,2214.84228,TJ,CO2,74100.0,kg/TJ,164119812.94799998,kg +6222571d-87e5-3c25-b622-4abc0f51dc7e,SESCO,II.1.1,San Juan,AR-J,annual,2015,gas oil combustion consumption by to the public,2214.84228,TJ,CH4,3.9,kg/TJ,8637.884892,kg +6222571d-87e5-3c25-b622-4abc0f51dc7e,SESCO,II.1.1,San Juan,AR-J,annual,2015,gas oil combustion consumption by to the public,2214.84228,TJ,N2O,3.9,kg/TJ,8637.884892,kg +75fea948-5df1-396d-91b6-b21a8029ee17,SESCO,II.1.1,San Luis,AR-D,annual,2015,gas oil combustion consumption by to the public,2059.67076,TJ,CO2,74100.0,kg/TJ,152621603.31599998,kg +54ce2503-7fc9-396e-8275-291592b206c7,SESCO,II.1.1,San Luis,AR-D,annual,2015,gas oil combustion consumption by to the public,2059.67076,TJ,CH4,3.9,kg/TJ,8032.715964,kg +54ce2503-7fc9-396e-8275-291592b206c7,SESCO,II.1.1,San Luis,AR-D,annual,2015,gas oil combustion consumption by to the public,2059.67076,TJ,N2O,3.9,kg/TJ,8032.715964,kg +a9cdb861-bb57-3ae9-aaa3-214fe44ffd64,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2015,gas oil combustion consumption by to the public,3340.95552,TJ,CO2,74100.0,kg/TJ,247564804.032,kg +87f1eeb9-251a-3304-aac4-e5eb726cf578,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2015,gas oil combustion consumption by to the public,3340.95552,TJ,CH4,3.9,kg/TJ,13029.726528,kg +87f1eeb9-251a-3304-aac4-e5eb726cf578,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2015,gas oil combustion consumption by to the public,3340.95552,TJ,N2O,3.9,kg/TJ,13029.726528,kg +fcb152a3-a114-36da-a7f7-5a8c87a1c22f,SESCO,II.1.1,Santa Fe,AR-S,annual,2015,gas oil combustion consumption by to the public,10010.18844,TJ,CO2,74100.0,kg/TJ,741754963.404,kg +96da9233-b0e4-39f4-8f2b-5bac572121a1,SESCO,II.1.1,Santa Fe,AR-S,annual,2015,gas oil combustion consumption by to the public,10010.18844,TJ,CH4,3.9,kg/TJ,39039.734916,kg +96da9233-b0e4-39f4-8f2b-5bac572121a1,SESCO,II.1.1,Santa Fe,AR-S,annual,2015,gas oil combustion consumption by to the public,10010.18844,TJ,N2O,3.9,kg/TJ,39039.734916,kg +67f25b81-82b2-3e4e-9dcc-fde963c5683d,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2015,gas oil combustion consumption by to the public,2405.15856,TJ,CO2,74100.0,kg/TJ,178222249.296,kg +3bffd5e1-48d5-375e-b0c3-44d14851cdf3,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2015,gas oil combustion consumption by to the public,2405.15856,TJ,CH4,3.9,kg/TJ,9380.118384,kg +3bffd5e1-48d5-375e-b0c3-44d14851cdf3,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2015,gas oil combustion consumption by to the public,2405.15856,TJ,N2O,3.9,kg/TJ,9380.118384,kg +29fe3ea5-339b-3590-a388-4ff70d180dfd,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2015,gas oil combustion consumption by to the public,1131.459,TJ,CO2,74100.0,kg/TJ,83841111.9,kg +18a24ef1-c873-3831-9c93-5781efa5e313,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2015,gas oil combustion consumption by to the public,1131.459,TJ,CH4,3.9,kg/TJ,4412.6901,kg +18a24ef1-c873-3831-9c93-5781efa5e313,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2015,gas oil combustion consumption by to the public,1131.459,TJ,N2O,3.9,kg/TJ,4412.6901,kg +487cd585-7b57-3e0c-881d-3f154ebbb11e,SESCO,II.1.1,Tucuman,AR-T,annual,2015,gas oil combustion consumption by to the public,2318.0009999999997,TJ,CO2,74100.0,kg/TJ,171763874.1,kg +40e5afc8-c57b-3b74-8a7e-2c208a0d71e0,SESCO,II.1.1,Tucuman,AR-T,annual,2015,gas oil combustion consumption by to the public,2318.0009999999997,TJ,CH4,3.9,kg/TJ,9040.203899999999,kg +40e5afc8-c57b-3b74-8a7e-2c208a0d71e0,SESCO,II.1.1,Tucuman,AR-T,annual,2015,gas oil combustion consumption by to the public,2318.0009999999997,TJ,N2O,3.9,kg/TJ,9040.203899999999,kg +71855e2a-31fb-33a4-97b4-175f5b9fbc5b,SESCO,II.1.1,Buenos Aires,AR-B,annual,2015,gas oil combustion consumption by to the public,14565.71508,TJ,CO2,74100.0,kg/TJ,1079319487.428,kg +bd6ce2e2-0789-3b46-82eb-3b209fd8b53c,SESCO,II.1.1,Buenos Aires,AR-B,annual,2015,gas oil combustion consumption by to the public,14565.71508,TJ,CH4,3.9,kg/TJ,56806.288812,kg +bd6ce2e2-0789-3b46-82eb-3b209fd8b53c,SESCO,II.1.1,Buenos Aires,AR-B,annual,2015,gas oil combustion consumption by to the public,14565.71508,TJ,N2O,3.9,kg/TJ,56806.288812,kg +9a1ca1e9-9d56-3ee9-8e5e-e23eab53915e,SESCO,II.1.1,Capital Federal,AR-C,annual,2015,gas oil combustion consumption by to the public,1808.3478,TJ,CO2,74100.0,kg/TJ,133998571.98,kg +d167b477-7d4e-3dc5-ba18-86ed26b44d8a,SESCO,II.1.1,Capital Federal,AR-C,annual,2015,gas oil combustion consumption by to the public,1808.3478,TJ,CH4,3.9,kg/TJ,7052.55642,kg +d167b477-7d4e-3dc5-ba18-86ed26b44d8a,SESCO,II.1.1,Capital Federal,AR-C,annual,2015,gas oil combustion consumption by to the public,1808.3478,TJ,N2O,3.9,kg/TJ,7052.55642,kg +a8c7215c-e069-3b94-b4af-00f2cd4e53d2,SESCO,II.1.1,Catamarca,AR-K,annual,2015,gas oil combustion consumption by to the public,259.73892,TJ,CO2,74100.0,kg/TJ,19246653.972,kg +daf73bdd-cb91-31d4-b414-af3837e3ad41,SESCO,II.1.1,Catamarca,AR-K,annual,2015,gas oil combustion consumption by to the public,259.73892,TJ,CH4,3.9,kg/TJ,1012.981788,kg +daf73bdd-cb91-31d4-b414-af3837e3ad41,SESCO,II.1.1,Catamarca,AR-K,annual,2015,gas oil combustion consumption by to the public,259.73892,TJ,N2O,3.9,kg/TJ,1012.981788,kg +bd6e0604-f6f7-3316-98b3-f50e18bea3ed,SESCO,II.1.1,Chaco,AR-H,annual,2015,gas oil combustion consumption by to the public,1041.1589999999999,TJ,CO2,74100.0,kg/TJ,77149881.89999999,kg +d00ceeb7-4de6-321e-8b6e-8a1275cb63f1,SESCO,II.1.1,Chaco,AR-H,annual,2015,gas oil combustion consumption by to the public,1041.1589999999999,TJ,CH4,3.9,kg/TJ,4060.5200999999993,kg +d00ceeb7-4de6-321e-8b6e-8a1275cb63f1,SESCO,II.1.1,Chaco,AR-H,annual,2015,gas oil combustion consumption by to the public,1041.1589999999999,TJ,N2O,3.9,kg/TJ,4060.5200999999993,kg +98cc549e-3dde-312a-9de5-c6281af8ea39,SESCO,II.1.1,Chubut,AR-U,annual,2015,gas oil combustion consumption by to the public,1486.8798,TJ,CO2,74100.0,kg/TJ,110177793.17999999,kg +5f509fdb-16f6-3875-b309-3ac8176646be,SESCO,II.1.1,Chubut,AR-U,annual,2015,gas oil combustion consumption by to the public,1486.8798,TJ,CH4,3.9,kg/TJ,5798.83122,kg +5f509fdb-16f6-3875-b309-3ac8176646be,SESCO,II.1.1,Chubut,AR-U,annual,2015,gas oil combustion consumption by to the public,1486.8798,TJ,N2O,3.9,kg/TJ,5798.83122,kg +cfa678fe-f4c9-3f18-b0f6-36c8e7231d09,SESCO,II.1.1,Corrientes,AR-W,annual,2015,gas oil combustion consumption by to the public,942.3346799999999,TJ,CO2,74100.0,kg/TJ,69826999.788,kg +a70c1a2f-c1cf-38e1-85c4-384bc5799212,SESCO,II.1.1,Corrientes,AR-W,annual,2015,gas oil combustion consumption by to the public,942.3346799999999,TJ,CH4,3.9,kg/TJ,3675.105252,kg +a70c1a2f-c1cf-38e1-85c4-384bc5799212,SESCO,II.1.1,Corrientes,AR-W,annual,2015,gas oil combustion consumption by to the public,942.3346799999999,TJ,N2O,3.9,kg/TJ,3675.105252,kg +41d2ff8f-d91c-37fb-9dd8-49706388da08,SESCO,II.1.1,Córdoba,AR-X,annual,2015,gas oil combustion consumption by to the public,3487.16928,TJ,CO2,74100.0,kg/TJ,258399243.648,kg +0b607ac6-13e8-373e-958e-d31eefa220b3,SESCO,II.1.1,Córdoba,AR-X,annual,2015,gas oil combustion consumption by to the public,3487.16928,TJ,CH4,3.9,kg/TJ,13599.960192,kg +0b607ac6-13e8-373e-958e-d31eefa220b3,SESCO,II.1.1,Córdoba,AR-X,annual,2015,gas oil combustion consumption by to the public,3487.16928,TJ,N2O,3.9,kg/TJ,13599.960192,kg +b3b39715-f352-3f21-8de4-8ba1ebcc81c8,SESCO,II.1.1,Entre Rios,AR-E,annual,2015,gas oil combustion consumption by to the public,1642.52088,TJ,CO2,74100.0,kg/TJ,121710797.208,kg +ac4df489-5bf4-3151-b5f9-3c20e334cf81,SESCO,II.1.1,Entre Rios,AR-E,annual,2015,gas oil combustion consumption by to the public,1642.52088,TJ,CH4,3.9,kg/TJ,6405.831432,kg +ac4df489-5bf4-3151-b5f9-3c20e334cf81,SESCO,II.1.1,Entre Rios,AR-E,annual,2015,gas oil combustion consumption by to the public,1642.52088,TJ,N2O,3.9,kg/TJ,6405.831432,kg +1968a8a0-5f29-3520-8e4a-1934d49208db,SESCO,II.1.1,Formosa,AR-P,annual,2015,gas oil combustion consumption by to the public,329.92008,TJ,CO2,74100.0,kg/TJ,24447077.928,kg +0dbc1688-1b2f-36c8-8aec-3c105f0ef4f6,SESCO,II.1.1,Formosa,AR-P,annual,2015,gas oil combustion consumption by to the public,329.92008,TJ,CH4,3.9,kg/TJ,1286.688312,kg +0dbc1688-1b2f-36c8-8aec-3c105f0ef4f6,SESCO,II.1.1,Formosa,AR-P,annual,2015,gas oil combustion consumption by to the public,329.92008,TJ,N2O,3.9,kg/TJ,1286.688312,kg +6c5a1397-be19-3f69-9937-f5355b39ad80,SESCO,II.1.1,Jujuy,AR-Y,annual,2015,gas oil combustion consumption by to the public,558.84864,TJ,CO2,74100.0,kg/TJ,41410684.22400001,kg +9ad2c66b-69f7-36af-acb0-85684343ceab,SESCO,II.1.1,Jujuy,AR-Y,annual,2015,gas oil combustion consumption by to the public,558.84864,TJ,CH4,3.9,kg/TJ,2179.509696,kg +9ad2c66b-69f7-36af-acb0-85684343ceab,SESCO,II.1.1,Jujuy,AR-Y,annual,2015,gas oil combustion consumption by to the public,558.84864,TJ,N2O,3.9,kg/TJ,2179.509696,kg +51a8bdd9-7663-3a34-8375-7b0228bcbaa0,SESCO,II.1.1,La Pampa,AR-L,annual,2015,gas oil combustion consumption by to the public,1009.8790799999999,TJ,CO2,74100.0,kg/TJ,74832039.828,kg +fbf5eb06-e563-332f-ba25-70a25d7f4c35,SESCO,II.1.1,La Pampa,AR-L,annual,2015,gas oil combustion consumption by to the public,1009.8790799999999,TJ,CH4,3.9,kg/TJ,3938.5284119999997,kg +fbf5eb06-e563-332f-ba25-70a25d7f4c35,SESCO,II.1.1,La Pampa,AR-L,annual,2015,gas oil combustion consumption by to the public,1009.8790799999999,TJ,N2O,3.9,kg/TJ,3938.5284119999997,kg +bc0b5c9e-76e2-3293-a822-4c066f314339,SESCO,II.1.1,La Rioja,AR-F,annual,2015,gas oil combustion consumption by to the public,344.15136,TJ,CO2,74100.0,kg/TJ,25501615.776,kg +ab140677-c079-3da4-b631-7ff1156161f1,SESCO,II.1.1,La Rioja,AR-F,annual,2015,gas oil combustion consumption by to the public,344.15136,TJ,CH4,3.9,kg/TJ,1342.190304,kg +ab140677-c079-3da4-b631-7ff1156161f1,SESCO,II.1.1,La Rioja,AR-F,annual,2015,gas oil combustion consumption by to the public,344.15136,TJ,N2O,3.9,kg/TJ,1342.190304,kg +0a2c1a28-d008-3ef5-8e53-4bbdfde9a9c0,SESCO,II.1.1,Mendoza,AR-M,annual,2015,gas oil combustion consumption by to the public,2703.90708,TJ,CO2,74100.0,kg/TJ,200359514.628,kg +c8e8f03c-f511-32ef-9dc5-93365cec7d0d,SESCO,II.1.1,Mendoza,AR-M,annual,2015,gas oil combustion consumption by to the public,2703.90708,TJ,CH4,3.9,kg/TJ,10545.237611999999,kg +c8e8f03c-f511-32ef-9dc5-93365cec7d0d,SESCO,II.1.1,Mendoza,AR-M,annual,2015,gas oil combustion consumption by to the public,2703.90708,TJ,N2O,3.9,kg/TJ,10545.237611999999,kg +6b572d1e-afa1-33e9-a536-ae2e9114e6ba,SESCO,II.1.1,Misiones,AR-N,annual,2015,gas oil combustion consumption by to the public,1085.2254,TJ,CO2,74100.0,kg/TJ,80415202.14,kg +9181a1f7-ef23-3716-bbb6-85a4af4feee1,SESCO,II.1.1,Misiones,AR-N,annual,2015,gas oil combustion consumption by to the public,1085.2254,TJ,CH4,3.9,kg/TJ,4232.37906,kg +9181a1f7-ef23-3716-bbb6-85a4af4feee1,SESCO,II.1.1,Misiones,AR-N,annual,2015,gas oil combustion consumption by to the public,1085.2254,TJ,N2O,3.9,kg/TJ,4232.37906,kg +020796c1-5806-3fe3-8a40-8d512f77f520,SESCO,II.1.1,Neuquén,AR-Q,annual,2015,gas oil combustion consumption by to the public,1815.28284,TJ,CO2,74100.0,kg/TJ,134512458.444,kg +d72f3b8c-c8b2-3763-b98e-f5dcb8e9b18d,SESCO,II.1.1,Neuquén,AR-Q,annual,2015,gas oil combustion consumption by to the public,1815.28284,TJ,CH4,3.9,kg/TJ,7079.603076,kg +d72f3b8c-c8b2-3763-b98e-f5dcb8e9b18d,SESCO,II.1.1,Neuquén,AR-Q,annual,2015,gas oil combustion consumption by to the public,1815.28284,TJ,N2O,3.9,kg/TJ,7079.603076,kg +ae43e80d-ff87-33b3-baa3-66c33f4f2885,SESCO,II.1.1,Rio Negro,AR-R,annual,2015,gas oil combustion consumption by to the public,1376.5332,TJ,CO2,74100.0,kg/TJ,102001110.12,kg +2b0feb56-381d-3484-bffb-53558334fb97,SESCO,II.1.1,Rio Negro,AR-R,annual,2015,gas oil combustion consumption by to the public,1376.5332,TJ,CH4,3.9,kg/TJ,5368.47948,kg +2b0feb56-381d-3484-bffb-53558334fb97,SESCO,II.1.1,Rio Negro,AR-R,annual,2015,gas oil combustion consumption by to the public,1376.5332,TJ,N2O,3.9,kg/TJ,5368.47948,kg +0fb105af-3af1-3227-9b48-9f7413af493c,SESCO,II.1.1,Salta,AR-A,annual,2015,gas oil combustion consumption by to the public,1213.48752,TJ,CO2,74100.0,kg/TJ,89919425.232,kg +2594cf88-8744-3008-9954-903eeb77777f,SESCO,II.1.1,Salta,AR-A,annual,2015,gas oil combustion consumption by to the public,1213.48752,TJ,CH4,3.9,kg/TJ,4732.601328,kg +2594cf88-8744-3008-9954-903eeb77777f,SESCO,II.1.1,Salta,AR-A,annual,2015,gas oil combustion consumption by to the public,1213.48752,TJ,N2O,3.9,kg/TJ,4732.601328,kg +786c2c8c-cbdc-389c-82d3-2dacfd8a13ad,SESCO,II.1.1,San Juan,AR-J,annual,2015,gas oil combustion consumption by to the public,577.59492,TJ,CO2,74100.0,kg/TJ,42799783.572,kg +89ade0dd-f861-34cb-957a-8c0b7981d091,SESCO,II.1.1,San Juan,AR-J,annual,2015,gas oil combustion consumption by to the public,577.59492,TJ,CH4,3.9,kg/TJ,2252.620188,kg +89ade0dd-f861-34cb-957a-8c0b7981d091,SESCO,II.1.1,San Juan,AR-J,annual,2015,gas oil combustion consumption by to the public,577.59492,TJ,N2O,3.9,kg/TJ,2252.620188,kg +25c5bcb3-60b5-3ab7-b5fe-301c15108a13,SESCO,II.1.1,San Luis,AR-D,annual,2015,gas oil combustion consumption by to the public,615.01524,TJ,CO2,74100.0,kg/TJ,45572629.283999994,kg +8e44d5b9-41a0-3ae3-9c39-fd90aca795fc,SESCO,II.1.1,San Luis,AR-D,annual,2015,gas oil combustion consumption by to the public,615.01524,TJ,CH4,3.9,kg/TJ,2398.5594359999996,kg +8e44d5b9-41a0-3ae3-9c39-fd90aca795fc,SESCO,II.1.1,San Luis,AR-D,annual,2015,gas oil combustion consumption by to the public,615.01524,TJ,N2O,3.9,kg/TJ,2398.5594359999996,kg +b6d9cd10-aa08-3da4-a6dd-57c2b3d63fa8,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2015,gas oil combustion consumption by to the public,1062.1086,TJ,CO2,74100.0,kg/TJ,78702247.26,kg +852db092-7ab3-3b46-8e96-211301646e9a,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2015,gas oil combustion consumption by to the public,1062.1086,TJ,CH4,3.9,kg/TJ,4142.22354,kg +852db092-7ab3-3b46-8e96-211301646e9a,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2015,gas oil combustion consumption by to the public,1062.1086,TJ,N2O,3.9,kg/TJ,4142.22354,kg +30f9c1fc-8160-310d-ada2-adb53c6c0bba,SESCO,II.1.1,Santa Fe,AR-S,annual,2015,gas oil combustion consumption by to the public,3343.55616,TJ,CO2,74100.0,kg/TJ,247757511.456,kg +de9bd409-8ba3-347f-be90-e8628848f39b,SESCO,II.1.1,Santa Fe,AR-S,annual,2015,gas oil combustion consumption by to the public,3343.55616,TJ,CH4,3.9,kg/TJ,13039.869024,kg +de9bd409-8ba3-347f-be90-e8628848f39b,SESCO,II.1.1,Santa Fe,AR-S,annual,2015,gas oil combustion consumption by to the public,3343.55616,TJ,N2O,3.9,kg/TJ,13039.869024,kg +e14e3d95-83f3-3733-ad7e-aa8362a9245a,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2015,gas oil combustion consumption by to the public,703.03968,TJ,CO2,74100.0,kg/TJ,52095240.287999995,kg +eab71d4c-f559-3d24-b285-10db4586f0c8,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2015,gas oil combustion consumption by to the public,703.03968,TJ,CH4,3.9,kg/TJ,2741.8547519999997,kg +eab71d4c-f559-3d24-b285-10db4586f0c8,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2015,gas oil combustion consumption by to the public,703.03968,TJ,N2O,3.9,kg/TJ,2741.8547519999997,kg +ab4b880d-c35f-3afe-811d-4d6ed19d01e2,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2015,gas oil combustion consumption by to the public,230.62619999999998,TJ,CO2,74100.0,kg/TJ,17089401.419999998,kg +be3bfe42-2b55-3351-8b20-3d8d84b3f900,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2015,gas oil combustion consumption by to the public,230.62619999999998,TJ,CH4,3.9,kg/TJ,899.4421799999999,kg +be3bfe42-2b55-3351-8b20-3d8d84b3f900,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2015,gas oil combustion consumption by to the public,230.62619999999998,TJ,N2O,3.9,kg/TJ,899.4421799999999,kg +879c889b-8b7f-3dd8-a4a9-843edc08ef75,SESCO,II.1.1,Tucuman,AR-T,annual,2015,gas oil combustion consumption by to the public,796.33764,TJ,CO2,74100.0,kg/TJ,59008619.124,kg +b7197ca3-3e68-358c-9218-ff66b12126c3,SESCO,II.1.1,Tucuman,AR-T,annual,2015,gas oil combustion consumption by to the public,796.33764,TJ,CH4,3.9,kg/TJ,3105.7167959999997,kg +b7197ca3-3e68-358c-9218-ff66b12126c3,SESCO,II.1.1,Tucuman,AR-T,annual,2015,gas oil combustion consumption by to the public,796.33764,TJ,N2O,3.9,kg/TJ,3105.7167959999997,kg +a5c4424a-0b91-3099-831e-0a70a370ddad,SESCO,II.1.1,Buenos Aires,AR-B,annual,2015,jet kerosene combustion consumption by to the public,159.30944499999998,TJ,CO2,71500.0,kg/TJ,11390625.317499999,kg +d1861ae4-5ee3-3766-86bf-b18c7c54ad7a,SESCO,II.1.1,Buenos Aires,AR-B,annual,2015,jet kerosene combustion consumption by to the public,159.30944499999998,TJ,CH4,0.5,kg/TJ,79.65472249999999,kg +8e9c2fc3-6752-3d7e-ab8e-f355cf77f41e,SESCO,II.1.1,Buenos Aires,AR-B,annual,2015,jet kerosene combustion consumption by to the public,159.30944499999998,TJ,N2O,2.0,kg/TJ,318.61888999999996,kg +3d70aadb-e730-3f89-9c1c-002e6b44235e,SESCO,II.1.1,Capital Federal,AR-C,annual,2015,jet kerosene combustion consumption by to the public,8.209233,TJ,CO2,71500.0,kg/TJ,586960.1595,kg +5cecc801-dd85-306f-9765-18b84dea41b0,SESCO,II.1.1,Capital Federal,AR-C,annual,2015,jet kerosene combustion consumption by to the public,8.209233,TJ,CH4,0.5,kg/TJ,4.1046165,kg +6eb78b6e-a5e3-3ef3-86c2-c51455df45d8,SESCO,II.1.1,Capital Federal,AR-C,annual,2015,jet kerosene combustion consumption by to the public,8.209233,TJ,N2O,2.0,kg/TJ,16.418466,kg +29f8ab07-33b7-3152-9ec6-b6a337086be9,SESCO,II.1.1,Catamarca,AR-K,annual,2015,jet kerosene combustion consumption by to the public,4.214701999999999,TJ,CO2,71500.0,kg/TJ,301351.1929999999,kg +f8819442-7c3e-3637-8b87-42db3d811221,SESCO,II.1.1,Catamarca,AR-K,annual,2015,jet kerosene combustion consumption by to the public,4.214701999999999,TJ,CH4,0.5,kg/TJ,2.1073509999999995,kg +65fc2ba7-1470-3cb9-8376-2a8cfbd3e413,SESCO,II.1.1,Catamarca,AR-K,annual,2015,jet kerosene combustion consumption by to the public,4.214701999999999,TJ,N2O,2.0,kg/TJ,8.429403999999998,kg +5270fa1f-e19a-3a3f-8707-e7abb0098177,SESCO,II.1.1,Chaco,AR-H,annual,2015,jet kerosene combustion consumption by to the public,1.4782909999999998,TJ,CO2,71500.0,kg/TJ,105697.80649999999,kg +563602ca-7a0d-3ed4-8459-bd8f212e81f6,SESCO,II.1.1,Chaco,AR-H,annual,2015,jet kerosene combustion consumption by to the public,1.4782909999999998,TJ,CH4,0.5,kg/TJ,0.7391454999999999,kg +6f3905a2-c0e1-34fe-95b9-d2273a918a77,SESCO,II.1.1,Chaco,AR-H,annual,2015,jet kerosene combustion consumption by to the public,1.4782909999999998,TJ,N2O,2.0,kg/TJ,2.9565819999999996,kg +6cebcd35-f56a-3361-a6b0-e548182686d2,SESCO,II.1.1,Chubut,AR-U,annual,2015,jet kerosene combustion consumption by to the public,14.059490999999998,TJ,CO2,71500.0,kg/TJ,1005253.6064999999,kg +55ef798a-329b-337c-bbd5-23706e95a644,SESCO,II.1.1,Chubut,AR-U,annual,2015,jet kerosene combustion consumption by to the public,14.059490999999998,TJ,CH4,0.5,kg/TJ,7.029745499999999,kg +8d4e98a1-99c3-3b06-8781-b4ddc116c8b9,SESCO,II.1.1,Chubut,AR-U,annual,2015,jet kerosene combustion consumption by to the public,14.059490999999998,TJ,N2O,2.0,kg/TJ,28.118981999999995,kg +dd2f4b38-6e83-3127-b3e3-c6f95b812051,SESCO,II.1.1,Corrientes,AR-W,annual,2015,jet kerosene combustion consumption by to the public,3.2396589999999996,TJ,CO2,71500.0,kg/TJ,231635.61849999998,kg +741c7497-9464-3ef9-b8b1-70694628c19c,SESCO,II.1.1,Corrientes,AR-W,annual,2015,jet kerosene combustion consumption by to the public,3.2396589999999996,TJ,CH4,0.5,kg/TJ,1.6198294999999998,kg +026a36fb-7749-3a28-91ec-cf7d7eed021e,SESCO,II.1.1,Corrientes,AR-W,annual,2015,jet kerosene combustion consumption by to the public,3.2396589999999996,TJ,N2O,2.0,kg/TJ,6.479317999999999,kg +01e6745c-b0c8-3aef-a489-bc0aa1d3b8f4,SESCO,II.1.1,Córdoba,AR-X,annual,2015,jet kerosene combustion consumption by to the public,70.73779699999999,TJ,CO2,71500.0,kg/TJ,5057752.485499999,kg +2537c75a-9994-33c4-8fc0-82f559a3ab6e,SESCO,II.1.1,Córdoba,AR-X,annual,2015,jet kerosene combustion consumption by to the public,70.73779699999999,TJ,CH4,0.5,kg/TJ,35.36889849999999,kg +1d83f980-7a96-3c45-bae7-6c207e4ceac4,SESCO,II.1.1,Córdoba,AR-X,annual,2015,jet kerosene combustion consumption by to the public,70.73779699999999,TJ,N2O,2.0,kg/TJ,141.47559399999997,kg +a9ab379a-2ef7-3a8d-aa09-19119db9b22e,SESCO,II.1.1,Entre Rios,AR-E,annual,2015,jet kerosene combustion consumption by to the public,7.265642999999999,TJ,CO2,71500.0,kg/TJ,519493.47449999995,kg +bc8b01f7-0a8d-327e-a9d9-c79a35998d4b,SESCO,II.1.1,Entre Rios,AR-E,annual,2015,jet kerosene combustion consumption by to the public,7.265642999999999,TJ,CH4,0.5,kg/TJ,3.6328214999999995,kg +d717a2ee-f8bd-3cdb-82b8-3aad5db3df5a,SESCO,II.1.1,Entre Rios,AR-E,annual,2015,jet kerosene combustion consumption by to the public,7.265642999999999,TJ,N2O,2.0,kg/TJ,14.531285999999998,kg +d6e0c48f-42d1-3d6b-a00c-62a4ad26cc67,SESCO,II.1.1,Jujuy,AR-Y,annual,2015,jet kerosene combustion consumption by to the public,3.8058129999999992,TJ,CO2,71500.0,kg/TJ,272115.6294999999,kg +a24bbda5-6785-3ca6-adcd-de9ccd3492e6,SESCO,II.1.1,Jujuy,AR-Y,annual,2015,jet kerosene combustion consumption by to the public,3.8058129999999992,TJ,CH4,0.5,kg/TJ,1.9029064999999996,kg +f1e8e061-e2fa-3fe0-a956-b68b792f65a0,SESCO,II.1.1,Jujuy,AR-Y,annual,2015,jet kerosene combustion consumption by to the public,3.8058129999999992,TJ,N2O,2.0,kg/TJ,7.6116259999999984,kg +1eb0ee5d-a706-38c0-a953-168eb76ffe0d,SESCO,II.1.1,La Pampa,AR-L,annual,2015,jet kerosene combustion consumption by to the public,4.246154999999999,TJ,CO2,71500.0,kg/TJ,303600.0824999999,kg +50f4a9b3-6bb0-3324-93d5-2ca460091311,SESCO,II.1.1,La Pampa,AR-L,annual,2015,jet kerosene combustion consumption by to the public,4.246154999999999,TJ,CH4,0.5,kg/TJ,2.1230774999999995,kg +e976d368-3920-3106-a6a7-96bbeb680144,SESCO,II.1.1,La Pampa,AR-L,annual,2015,jet kerosene combustion consumption by to the public,4.246154999999999,TJ,N2O,2.0,kg/TJ,8.492309999999998,kg +a55dc745-fd58-31d6-a58d-d24c46f75192,SESCO,II.1.1,La Rioja,AR-F,annual,2015,jet kerosene combustion consumption by to the public,2.7364109999999995,TJ,CO2,71500.0,kg/TJ,195653.38649999996,kg +87bfa2df-afb1-38ce-860b-71f0c2d69fa8,SESCO,II.1.1,La Rioja,AR-F,annual,2015,jet kerosene combustion consumption by to the public,2.7364109999999995,TJ,CH4,0.5,kg/TJ,1.3682054999999997,kg +d9e8130e-4f80-3dca-9add-911f3a6b00d2,SESCO,II.1.1,La Rioja,AR-F,annual,2015,jet kerosene combustion consumption by to the public,2.7364109999999995,TJ,N2O,2.0,kg/TJ,5.472821999999999,kg +12e9bba2-1912-322a-916e-3c0a39cc7606,SESCO,II.1.1,Mendoza,AR-M,annual,2015,jet kerosene combustion consumption by to the public,31.201375999999996,TJ,CO2,71500.0,kg/TJ,2230898.3839999996,kg +caf8d0b8-30e2-3f86-8f77-b4ad35387ef9,SESCO,II.1.1,Mendoza,AR-M,annual,2015,jet kerosene combustion consumption by to the public,31.201375999999996,TJ,CH4,0.5,kg/TJ,15.600687999999998,kg +117a7b24-7a87-32fc-a80d-473247980501,SESCO,II.1.1,Mendoza,AR-M,annual,2015,jet kerosene combustion consumption by to the public,31.201375999999996,TJ,N2O,2.0,kg/TJ,62.40275199999999,kg +87bfb418-3806-3283-9442-138678456112,SESCO,II.1.1,Neuquén,AR-Q,annual,2015,jet kerosene combustion consumption by to the public,7.737437999999999,TJ,CO2,71500.0,kg/TJ,553226.8169999999,kg +1defacc1-2d19-33db-9523-f2f90f0e4dde,SESCO,II.1.1,Neuquén,AR-Q,annual,2015,jet kerosene combustion consumption by to the public,7.737437999999999,TJ,CH4,0.5,kg/TJ,3.8687189999999996,kg +46531171-0013-3e10-9517-a1e316b083c5,SESCO,II.1.1,Neuquén,AR-Q,annual,2015,jet kerosene combustion consumption by to the public,7.737437999999999,TJ,N2O,2.0,kg/TJ,15.474875999999998,kg +efb9ec62-a140-3f58-8cfa-e4bfdac10aa2,SESCO,II.1.1,Rio Negro,AR-R,annual,2015,jet kerosene combustion consumption by to the public,2.7049579999999995,TJ,CO2,71500.0,kg/TJ,193404.49699999997,kg +00320cff-2969-3aae-9fcb-cbd1e7803136,SESCO,II.1.1,Rio Negro,AR-R,annual,2015,jet kerosene combustion consumption by to the public,2.7049579999999995,TJ,CH4,0.5,kg/TJ,1.3524789999999998,kg +fa675c9b-d3a1-3e12-8da2-98cbfd7d1c8d,SESCO,II.1.1,Rio Negro,AR-R,annual,2015,jet kerosene combustion consumption by to the public,2.7049579999999995,TJ,N2O,2.0,kg/TJ,5.409915999999999,kg +ee528f83-e6ab-388f-a668-9ec7094fa741,SESCO,II.1.1,Salta,AR-A,annual,2015,jet kerosene combustion consumption by to the public,1.2895729999999999,TJ,CO2,71500.0,kg/TJ,92204.46949999999,kg +14e49c10-7111-3ee0-a4d9-675a592e25c9,SESCO,II.1.1,Salta,AR-A,annual,2015,jet kerosene combustion consumption by to the public,1.2895729999999999,TJ,CH4,0.5,kg/TJ,0.6447864999999999,kg +c0e7d1b1-b4e2-3bb7-a565-81c346df0196,SESCO,II.1.1,Salta,AR-A,annual,2015,jet kerosene combustion consumption by to the public,1.2895729999999999,TJ,N2O,2.0,kg/TJ,2.5791459999999997,kg +d12aad43-c8ba-3739-87b4-a3b5bbf9b833,SESCO,II.1.1,San Juan,AR-J,annual,2015,jet kerosene combustion consumption by to the public,3.2082059999999997,TJ,CO2,71500.0,kg/TJ,229386.72899999996,kg +f63271a0-50eb-3165-83e4-c8a83e2a952e,SESCO,II.1.1,San Juan,AR-J,annual,2015,jet kerosene combustion consumption by to the public,3.2082059999999997,TJ,CH4,0.5,kg/TJ,1.6041029999999998,kg +4c97f967-764d-37d3-865a-899a4f47e708,SESCO,II.1.1,San Juan,AR-J,annual,2015,jet kerosene combustion consumption by to the public,3.2082059999999997,TJ,N2O,2.0,kg/TJ,6.416411999999999,kg +46612b0b-d619-307c-9132-cc7f1bb221e2,SESCO,II.1.1,San Luis,AR-D,annual,2015,jet kerosene combustion consumption by to the public,6.856753999999999,TJ,CO2,71500.0,kg/TJ,490257.9109999999,kg +c9cc32e5-3eed-3e16-9889-ea3aa4e23a87,SESCO,II.1.1,San Luis,AR-D,annual,2015,jet kerosene combustion consumption by to the public,6.856753999999999,TJ,CH4,0.5,kg/TJ,3.4283769999999993,kg +0cc2b335-6073-3fea-b6f6-b6609662bbab,SESCO,II.1.1,San Luis,AR-D,annual,2015,jet kerosene combustion consumption by to the public,6.856753999999999,TJ,N2O,2.0,kg/TJ,13.713507999999997,kg +c58842aa-b102-3786-aad0-ee140e76a12a,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2015,jet kerosene combustion consumption by to the public,9.718976999999999,TJ,CO2,71500.0,kg/TJ,694906.8555,kg +27b1da6a-6b6e-3a3d-aae5-8168b3b60dd4,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2015,jet kerosene combustion consumption by to the public,9.718976999999999,TJ,CH4,0.5,kg/TJ,4.859488499999999,kg +55c0c5e6-36f2-32a8-8881-6bf34390317a,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2015,jet kerosene combustion consumption by to the public,9.718976999999999,TJ,N2O,2.0,kg/TJ,19.437953999999998,kg +fdcf8e52-67ab-31d7-956b-84c5c72d79ed,SESCO,II.1.1,Santa Fe,AR-S,annual,2015,jet kerosene combustion consumption by to the public,30.194879999999994,TJ,CO2,71500.0,kg/TJ,2158933.9199999995,kg +9928b0ef-5746-3bc8-8166-e9732b5e6282,SESCO,II.1.1,Santa Fe,AR-S,annual,2015,jet kerosene combustion consumption by to the public,30.194879999999994,TJ,CH4,0.5,kg/TJ,15.097439999999997,kg +b810f00e-8235-308e-87fb-81b8f7550b70,SESCO,II.1.1,Santa Fe,AR-S,annual,2015,jet kerosene combustion consumption by to the public,30.194879999999994,TJ,N2O,2.0,kg/TJ,60.38975999999999,kg +992cd0de-c9ec-36e7-961f-d6a21e32d6b1,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2015,jet kerosene combustion consumption by to the public,5.189744999999999,TJ,CO2,71500.0,kg/TJ,371066.76749999996,kg +c2471dde-b3d8-328d-ba13-e447b1105769,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2015,jet kerosene combustion consumption by to the public,5.189744999999999,TJ,CH4,0.5,kg/TJ,2.5948724999999997,kg +3c72de9d-2cbc-3c7b-aa5b-91a8ca4d7492,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2015,jet kerosene combustion consumption by to the public,5.189744999999999,TJ,N2O,2.0,kg/TJ,10.379489999999999,kg +d597201e-e956-36f6-b55c-d9e7e5708a19,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2015,jet kerosene combustion consumption by to the public,0.31453,TJ,CO2,71500.0,kg/TJ,22488.894999999997,kg +4b1ac901-02d8-31c5-819a-b1d3d0fcc5d2,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2015,jet kerosene combustion consumption by to the public,0.31453,TJ,CH4,0.5,kg/TJ,0.157265,kg +18d7b1ee-08aa-325c-9b42-acec0c94c818,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2015,jet kerosene combustion consumption by to the public,0.31453,TJ,N2O,2.0,kg/TJ,0.62906,kg +ebfaf0eb-83b7-3e70-a0d2-7b368efdfa3c,SESCO,II.1.1,Tucuman,AR-T,annual,2015,jet kerosene combustion consumption by to the public,11.291626999999998,TJ,CO2,71500.0,kg/TJ,807351.3304999999,kg +5ad8a54f-c976-3fd5-9b4d-6056f28b42b0,SESCO,II.1.1,Tucuman,AR-T,annual,2015,jet kerosene combustion consumption by to the public,11.291626999999998,TJ,CH4,0.5,kg/TJ,5.645813499999999,kg +d64ce80a-4fa3-301b-95b5-1e3fa3d5d3e2,SESCO,II.1.1,Tucuman,AR-T,annual,2015,jet kerosene combustion consumption by to the public,11.291626999999998,TJ,N2O,2.0,kg/TJ,22.583253999999997,kg +db5b03e8-0868-3e46-bb99-f4afe8bf9d95,SESCO,II.1.1,Buenos Aires,AR-B,annual,2015,gasoline combustion consumption by freight transport,29.0608,TJ,CO2,69300.0,kg/TJ,2013913.44,kg +3e950d7d-750e-3d28-9716-a168e1579bbe,SESCO,II.1.1,Buenos Aires,AR-B,annual,2015,gasoline combustion consumption by freight transport,29.0608,TJ,CH4,33.0,kg/TJ,959.0064,kg +375d59f7-d79b-3ec6-a7b4-5cb9f1da2134,SESCO,II.1.1,Buenos Aires,AR-B,annual,2015,gasoline combustion consumption by freight transport,29.0608,TJ,N2O,3.2,kg/TJ,92.99456,kg +b854de17-dcd6-399b-88d7-76cadd1781cf,SESCO,II.1.1,Capital Federal,AR-C,annual,2015,gasoline combustion consumption by freight transport,2.4365,TJ,CO2,69300.0,kg/TJ,168849.45,kg +4bae93d9-2269-31b5-ba16-2ed4398e5862,SESCO,II.1.1,Capital Federal,AR-C,annual,2015,gasoline combustion consumption by freight transport,2.4365,TJ,CH4,33.0,kg/TJ,80.4045,kg +85090383-9b98-3884-8791-91f863693051,SESCO,II.1.1,Capital Federal,AR-C,annual,2015,gasoline combustion consumption by freight transport,2.4365,TJ,N2O,3.2,kg/TJ,7.796800000000001,kg +40258345-1b22-365f-ac04-8ae289b96193,SESCO,II.1.1,Buenos Aires,AR-B,annual,2015,gas oil combustion consumption by freight transport,7016.34612,TJ,CO2,74100.0,kg/TJ,519911247.492,kg +66b171d0-7280-3643-b917-4c08dc9bdc7c,SESCO,II.1.1,Buenos Aires,AR-B,annual,2015,gas oil combustion consumption by freight transport,7016.34612,TJ,CH4,3.9,kg/TJ,27363.749868,kg +66b171d0-7280-3643-b917-4c08dc9bdc7c,SESCO,II.1.1,Buenos Aires,AR-B,annual,2015,gas oil combustion consumption by freight transport,7016.34612,TJ,N2O,3.9,kg/TJ,27363.749868,kg +47dab972-9b97-315d-a866-370e0b6f677a,SESCO,II.1.1,Capital Federal,AR-C,annual,2015,gas oil combustion consumption by freight transport,3403.62372,TJ,CO2,74100.0,kg/TJ,252208517.652,kg +280dc4e2-7d54-3c8e-a31a-07d31970515a,SESCO,II.1.1,Capital Federal,AR-C,annual,2015,gas oil combustion consumption by freight transport,3403.62372,TJ,CH4,3.9,kg/TJ,13274.132508,kg +280dc4e2-7d54-3c8e-a31a-07d31970515a,SESCO,II.1.1,Capital Federal,AR-C,annual,2015,gas oil combustion consumption by freight transport,3403.62372,TJ,N2O,3.9,kg/TJ,13274.132508,kg +11f01d3c-36db-3cad-a19e-d03df581bb91,SESCO,II.1.1,Catamarca,AR-K,annual,2015,gas oil combustion consumption by freight transport,24.45324,TJ,CO2,74100.0,kg/TJ,1811985.084,kg +a398d834-f0e7-3ef2-987f-80e2f118910a,SESCO,II.1.1,Catamarca,AR-K,annual,2015,gas oil combustion consumption by freight transport,24.45324,TJ,CH4,3.9,kg/TJ,95.367636,kg +a398d834-f0e7-3ef2-987f-80e2f118910a,SESCO,II.1.1,Catamarca,AR-K,annual,2015,gas oil combustion consumption by freight transport,24.45324,TJ,N2O,3.9,kg/TJ,95.367636,kg +0cda1707-3ecb-3289-af7e-9a8425d4b79d,SESCO,II.1.1,Chaco,AR-H,annual,2015,gas oil combustion consumption by freight transport,195.33696,TJ,CO2,74100.0,kg/TJ,14474468.736,kg +102166e9-63f6-3af3-8525-1ccf966da59c,SESCO,II.1.1,Chaco,AR-H,annual,2015,gas oil combustion consumption by freight transport,195.33696,TJ,CH4,3.9,kg/TJ,761.814144,kg +102166e9-63f6-3af3-8525-1ccf966da59c,SESCO,II.1.1,Chaco,AR-H,annual,2015,gas oil combustion consumption by freight transport,195.33696,TJ,N2O,3.9,kg/TJ,761.814144,kg +2f56c5a3-9fab-3026-8e61-7535eb10e057,SESCO,II.1.1,Chubut,AR-U,annual,2015,gas oil combustion consumption by freight transport,228.459,TJ,CO2,74100.0,kg/TJ,16928811.9,kg +302e7d60-b5be-31f9-b2f4-bbf881ef651e,SESCO,II.1.1,Chubut,AR-U,annual,2015,gas oil combustion consumption by freight transport,228.459,TJ,CH4,3.9,kg/TJ,890.9901,kg +302e7d60-b5be-31f9-b2f4-bbf881ef651e,SESCO,II.1.1,Chubut,AR-U,annual,2015,gas oil combustion consumption by freight transport,228.459,TJ,N2O,3.9,kg/TJ,890.9901,kg +5f8b0f4b-edd7-38dc-9b72-24a41776d4fb,SESCO,II.1.1,Corrientes,AR-W,annual,2015,gas oil combustion consumption by freight transport,151.63175999999999,TJ,CO2,74100.0,kg/TJ,11235913.416,kg +be894948-5507-319d-a04c-d47caba82717,SESCO,II.1.1,Corrientes,AR-W,annual,2015,gas oil combustion consumption by freight transport,151.63175999999999,TJ,CH4,3.9,kg/TJ,591.3638639999999,kg +be894948-5507-319d-a04c-d47caba82717,SESCO,II.1.1,Corrientes,AR-W,annual,2015,gas oil combustion consumption by freight transport,151.63175999999999,TJ,N2O,3.9,kg/TJ,591.3638639999999,kg +775017a9-2d7f-3d60-a1b0-74533725d12e,SESCO,II.1.1,Córdoba,AR-X,annual,2015,gas oil combustion consumption by freight transport,1676.18472,TJ,CO2,74100.0,kg/TJ,124205287.752,kg +aaa96551-c336-3771-8293-dde8107641d7,SESCO,II.1.1,Córdoba,AR-X,annual,2015,gas oil combustion consumption by freight transport,1676.18472,TJ,CH4,3.9,kg/TJ,6537.120408,kg +aaa96551-c336-3771-8293-dde8107641d7,SESCO,II.1.1,Córdoba,AR-X,annual,2015,gas oil combustion consumption by freight transport,1676.18472,TJ,N2O,3.9,kg/TJ,6537.120408,kg +051fea49-3d74-36e6-86c7-b6319e9f305b,SESCO,II.1.1,Entre Rios,AR-E,annual,2015,gas oil combustion consumption by freight transport,199.88808,TJ,CO2,74100.0,kg/TJ,14811706.728,kg +435f5fb2-a0ca-3038-9881-8c6b41351a33,SESCO,II.1.1,Entre Rios,AR-E,annual,2015,gas oil combustion consumption by freight transport,199.88808,TJ,CH4,3.9,kg/TJ,779.563512,kg +435f5fb2-a0ca-3038-9881-8c6b41351a33,SESCO,II.1.1,Entre Rios,AR-E,annual,2015,gas oil combustion consumption by freight transport,199.88808,TJ,N2O,3.9,kg/TJ,779.563512,kg +4bf1240c-e8cc-37a8-bfad-f8a030a3ef15,SESCO,II.1.1,Jujuy,AR-Y,annual,2015,gas oil combustion consumption by freight transport,44.210879999999996,TJ,CO2,74100.0,kg/TJ,3276026.2079999996,kg +bfd99c05-a074-3175-9f6d-5c29951d561f,SESCO,II.1.1,Jujuy,AR-Y,annual,2015,gas oil combustion consumption by freight transport,44.210879999999996,TJ,CH4,3.9,kg/TJ,172.422432,kg +bfd99c05-a074-3175-9f6d-5c29951d561f,SESCO,II.1.1,Jujuy,AR-Y,annual,2015,gas oil combustion consumption by freight transport,44.210879999999996,TJ,N2O,3.9,kg/TJ,172.422432,kg +e5f1854d-b2ef-3164-839e-af0e972dc688,SESCO,II.1.1,La Pampa,AR-L,annual,2015,gas oil combustion consumption by freight transport,31.027079999999998,TJ,CO2,74100.0,kg/TJ,2299106.628,kg +13ba07f9-32de-36aa-9cb2-908baae5336c,SESCO,II.1.1,La Pampa,AR-L,annual,2015,gas oil combustion consumption by freight transport,31.027079999999998,TJ,CH4,3.9,kg/TJ,121.00561199999999,kg +13ba07f9-32de-36aa-9cb2-908baae5336c,SESCO,II.1.1,La Pampa,AR-L,annual,2015,gas oil combustion consumption by freight transport,31.027079999999998,TJ,N2O,3.9,kg/TJ,121.00561199999999,kg +fe444169-8361-367d-ab01-0aed55615d4f,SESCO,II.1.1,La Rioja,AR-F,annual,2015,gas oil combustion consumption by freight transport,1.33644,TJ,CO2,74100.0,kg/TJ,99030.20400000001,kg +4f21e28b-c1ab-32ad-9373-0f23c905977b,SESCO,II.1.1,La Rioja,AR-F,annual,2015,gas oil combustion consumption by freight transport,1.33644,TJ,CH4,3.9,kg/TJ,5.212116,kg +4f21e28b-c1ab-32ad-9373-0f23c905977b,SESCO,II.1.1,La Rioja,AR-F,annual,2015,gas oil combustion consumption by freight transport,1.33644,TJ,N2O,3.9,kg/TJ,5.212116,kg +51166465-e9db-3279-b059-9f11d9e3639a,SESCO,II.1.1,Mendoza,AR-M,annual,2015,gas oil combustion consumption by freight transport,1464.3409199999999,TJ,CO2,74100.0,kg/TJ,108507662.17199999,kg +ccb91ff5-81bd-3f4a-9f04-ed27eed0fa59,SESCO,II.1.1,Mendoza,AR-M,annual,2015,gas oil combustion consumption by freight transport,1464.3409199999999,TJ,CH4,3.9,kg/TJ,5710.929587999999,kg +ccb91ff5-81bd-3f4a-9f04-ed27eed0fa59,SESCO,II.1.1,Mendoza,AR-M,annual,2015,gas oil combustion consumption by freight transport,1464.3409199999999,TJ,N2O,3.9,kg/TJ,5710.929587999999,kg +0636c071-8817-3ded-8cfc-9f77450705c9,SESCO,II.1.1,Misiones,AR-N,annual,2015,gas oil combustion consumption by freight transport,480.10704,TJ,CO2,74100.0,kg/TJ,35575931.664,kg +570614cc-e3d5-3fd6-8af5-dac96ccdbe67,SESCO,II.1.1,Misiones,AR-N,annual,2015,gas oil combustion consumption by freight transport,480.10704,TJ,CH4,3.9,kg/TJ,1872.417456,kg +570614cc-e3d5-3fd6-8af5-dac96ccdbe67,SESCO,II.1.1,Misiones,AR-N,annual,2015,gas oil combustion consumption by freight transport,480.10704,TJ,N2O,3.9,kg/TJ,1872.417456,kg +e72729b9-bc3b-37f4-b21f-e55c0f22a24f,SESCO,II.1.1,Neuquén,AR-Q,annual,2015,gas oil combustion consumption by freight transport,771.48708,TJ,CO2,74100.0,kg/TJ,57167192.628,kg +4e8ec421-5bd3-3e84-8b2a-3d65cb404c15,SESCO,II.1.1,Neuquén,AR-Q,annual,2015,gas oil combustion consumption by freight transport,771.48708,TJ,CH4,3.9,kg/TJ,3008.799612,kg +4e8ec421-5bd3-3e84-8b2a-3d65cb404c15,SESCO,II.1.1,Neuquén,AR-Q,annual,2015,gas oil combustion consumption by freight transport,771.48708,TJ,N2O,3.9,kg/TJ,3008.799612,kg +83001ee3-5b7f-399a-b854-6797fbacd8fc,SESCO,II.1.1,Rio Negro,AR-R,annual,2015,gas oil combustion consumption by freight transport,140.00112,TJ,CO2,74100.0,kg/TJ,10374082.991999999,kg +b67ce10a-3311-3885-bfb7-fffeb1e583ac,SESCO,II.1.1,Rio Negro,AR-R,annual,2015,gas oil combustion consumption by freight transport,140.00112,TJ,CH4,3.9,kg/TJ,546.0043679999999,kg +b67ce10a-3311-3885-bfb7-fffeb1e583ac,SESCO,II.1.1,Rio Negro,AR-R,annual,2015,gas oil combustion consumption by freight transport,140.00112,TJ,N2O,3.9,kg/TJ,546.0043679999999,kg +8ed4a537-4a91-3b5b-9f19-8d76557364a3,SESCO,II.1.1,Salta,AR-A,annual,2015,gas oil combustion consumption by freight transport,146.24988,TJ,CO2,74100.0,kg/TJ,10837116.108,kg +04d68029-fac2-3027-a878-a93c7614a49b,SESCO,II.1.1,Salta,AR-A,annual,2015,gas oil combustion consumption by freight transport,146.24988,TJ,CH4,3.9,kg/TJ,570.3745319999999,kg +04d68029-fac2-3027-a878-a93c7614a49b,SESCO,II.1.1,Salta,AR-A,annual,2015,gas oil combustion consumption by freight transport,146.24988,TJ,N2O,3.9,kg/TJ,570.3745319999999,kg +c4fea8c1-d784-375a-87c5-9d67d143fb53,SESCO,II.1.1,San Juan,AR-J,annual,2015,gas oil combustion consumption by freight transport,102.83364,TJ,CO2,74100.0,kg/TJ,7619972.724,kg +99c12a9b-cf01-3c3c-8dd2-8759427f2171,SESCO,II.1.1,San Juan,AR-J,annual,2015,gas oil combustion consumption by freight transport,102.83364,TJ,CH4,3.9,kg/TJ,401.051196,kg +99c12a9b-cf01-3c3c-8dd2-8759427f2171,SESCO,II.1.1,San Juan,AR-J,annual,2015,gas oil combustion consumption by freight transport,102.83364,TJ,N2O,3.9,kg/TJ,401.051196,kg +ede52816-0196-3458-be8d-ab6f634e3c8a,SESCO,II.1.1,San Luis,AR-D,annual,2015,gas oil combustion consumption by freight transport,130.10424,TJ,CO2,74100.0,kg/TJ,9640724.184,kg +50b47f2a-9045-3a07-972f-08d2777a823e,SESCO,II.1.1,San Luis,AR-D,annual,2015,gas oil combustion consumption by freight transport,130.10424,TJ,CH4,3.9,kg/TJ,507.406536,kg +50b47f2a-9045-3a07-972f-08d2777a823e,SESCO,II.1.1,San Luis,AR-D,annual,2015,gas oil combustion consumption by freight transport,130.10424,TJ,N2O,3.9,kg/TJ,507.406536,kg +2b3a8eeb-fe15-3b94-a247-0e97031eda3f,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2015,gas oil combustion consumption by freight transport,71.04804,TJ,CO2,74100.0,kg/TJ,5264659.764,kg +cfa33b4e-1c01-35bc-9ca8-c208174122f4,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2015,gas oil combustion consumption by freight transport,71.04804,TJ,CH4,3.9,kg/TJ,277.087356,kg +cfa33b4e-1c01-35bc-9ca8-c208174122f4,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2015,gas oil combustion consumption by freight transport,71.04804,TJ,N2O,3.9,kg/TJ,277.087356,kg +b51a179a-c811-3a43-9019-6cf615570e0b,SESCO,II.1.1,Santa Fe,AR-S,annual,2015,gas oil combustion consumption by freight transport,1626.95316,TJ,CO2,74100.0,kg/TJ,120557229.156,kg +80fcc7aa-c7ae-37f0-a32d-0db750877290,SESCO,II.1.1,Santa Fe,AR-S,annual,2015,gas oil combustion consumption by freight transport,1626.95316,TJ,CH4,3.9,kg/TJ,6345.117324,kg +80fcc7aa-c7ae-37f0-a32d-0db750877290,SESCO,II.1.1,Santa Fe,AR-S,annual,2015,gas oil combustion consumption by freight transport,1626.95316,TJ,N2O,3.9,kg/TJ,6345.117324,kg +b037a896-5891-32c0-916a-00176caf97ca,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2015,gas oil combustion consumption by freight transport,98.21028,TJ,CO2,74100.0,kg/TJ,7277381.748,kg +35a9d7a8-901f-33e4-8e4c-aa361a191615,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2015,gas oil combustion consumption by freight transport,98.21028,TJ,CH4,3.9,kg/TJ,383.020092,kg +35a9d7a8-901f-33e4-8e4c-aa361a191615,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2015,gas oil combustion consumption by freight transport,98.21028,TJ,N2O,3.9,kg/TJ,383.020092,kg +3c5e44d7-a0b2-3b51-92b9-edfd6736ec32,SESCO,II.1.1,Tucuman,AR-T,annual,2015,gas oil combustion consumption by freight transport,285.45636,TJ,CO2,74100.0,kg/TJ,21152316.276,kg +8cc5430a-a527-32a7-831b-e25ec9f3b46f,SESCO,II.1.1,Tucuman,AR-T,annual,2015,gas oil combustion consumption by freight transport,285.45636,TJ,CH4,3.9,kg/TJ,1113.279804,kg +8cc5430a-a527-32a7-831b-e25ec9f3b46f,SESCO,II.1.1,Tucuman,AR-T,annual,2015,gas oil combustion consumption by freight transport,285.45636,TJ,N2O,3.9,kg/TJ,1113.279804,kg +488623d4-5dca-330d-b6e9-0866942f2d1d,SESCO,II.1.1,Buenos Aires,AR-B,annual,2015,gas oil combustion consumption by freight transport,400.71528,TJ,CO2,74100.0,kg/TJ,29693002.248,kg +fc1878fe-d0b0-33b3-886b-72cd1cbf6a9c,SESCO,II.1.1,Buenos Aires,AR-B,annual,2015,gas oil combustion consumption by freight transport,400.71528,TJ,CH4,3.9,kg/TJ,1562.789592,kg +fc1878fe-d0b0-33b3-886b-72cd1cbf6a9c,SESCO,II.1.1,Buenos Aires,AR-B,annual,2015,gas oil combustion consumption by freight transport,400.71528,TJ,N2O,3.9,kg/TJ,1562.789592,kg +c1f9e2f6-b57d-364f-80d4-2db7039f3914,SESCO,II.1.1,Capital Federal,AR-C,annual,2015,gas oil combustion consumption by freight transport,772.57068,TJ,CO2,74100.0,kg/TJ,57247487.388000004,kg +7fb419d1-cb4a-377a-9716-ee1db2b1ac23,SESCO,II.1.1,Capital Federal,AR-C,annual,2015,gas oil combustion consumption by freight transport,772.57068,TJ,CH4,3.9,kg/TJ,3013.0256520000003,kg +7fb419d1-cb4a-377a-9716-ee1db2b1ac23,SESCO,II.1.1,Capital Federal,AR-C,annual,2015,gas oil combustion consumption by freight transport,772.57068,TJ,N2O,3.9,kg/TJ,3013.0256520000003,kg +9d44d99c-3cf5-39b0-a5b2-e7f4f46fbb1a,SESCO,II.1.1,Chaco,AR-H,annual,2015,gas oil combustion consumption by freight transport,20.48004,TJ,CO2,74100.0,kg/TJ,1517570.964,kg +804551ba-00cc-33ca-9972-4432356fa573,SESCO,II.1.1,Chaco,AR-H,annual,2015,gas oil combustion consumption by freight transport,20.48004,TJ,CH4,3.9,kg/TJ,79.87215599999999,kg +804551ba-00cc-33ca-9972-4432356fa573,SESCO,II.1.1,Chaco,AR-H,annual,2015,gas oil combustion consumption by freight transport,20.48004,TJ,N2O,3.9,kg/TJ,79.87215599999999,kg +c76268ed-556b-3e06-8390-617eb7073a3c,SESCO,II.1.1,Chubut,AR-U,annual,2015,gas oil combustion consumption by freight transport,10.4748,TJ,CO2,74100.0,kg/TJ,776182.68,kg +10a430e8-68c8-39cc-8b28-93d4eb8c8675,SESCO,II.1.1,Chubut,AR-U,annual,2015,gas oil combustion consumption by freight transport,10.4748,TJ,CH4,3.9,kg/TJ,40.85172,kg +10a430e8-68c8-39cc-8b28-93d4eb8c8675,SESCO,II.1.1,Chubut,AR-U,annual,2015,gas oil combustion consumption by freight transport,10.4748,TJ,N2O,3.9,kg/TJ,40.85172,kg +0f51b2bd-3359-3567-a2d8-a86126ea759e,SESCO,II.1.1,Corrientes,AR-W,annual,2015,gas oil combustion consumption by freight transport,2.96184,TJ,CO2,74100.0,kg/TJ,219472.344,kg +b6863e51-c660-3a9b-94b1-25504a92f4d2,SESCO,II.1.1,Corrientes,AR-W,annual,2015,gas oil combustion consumption by freight transport,2.96184,TJ,CH4,3.9,kg/TJ,11.551176,kg +b6863e51-c660-3a9b-94b1-25504a92f4d2,SESCO,II.1.1,Corrientes,AR-W,annual,2015,gas oil combustion consumption by freight transport,2.96184,TJ,N2O,3.9,kg/TJ,11.551176,kg +5da21488-9987-3f1b-9b12-8710cf9b8d70,SESCO,II.1.1,Córdoba,AR-X,annual,2015,gas oil combustion consumption by freight transport,19.39644,TJ,CO2,74100.0,kg/TJ,1437276.204,kg +e618f020-3377-3fec-8d34-8a5696592bb1,SESCO,II.1.1,Córdoba,AR-X,annual,2015,gas oil combustion consumption by freight transport,19.39644,TJ,CH4,3.9,kg/TJ,75.64611599999999,kg +e618f020-3377-3fec-8d34-8a5696592bb1,SESCO,II.1.1,Córdoba,AR-X,annual,2015,gas oil combustion consumption by freight transport,19.39644,TJ,N2O,3.9,kg/TJ,75.64611599999999,kg +d37448b1-0659-3846-86cb-e9ba9df460eb,SESCO,II.1.1,Entre Rios,AR-E,annual,2015,gas oil combustion consumption by freight transport,15.96504,TJ,CO2,74100.0,kg/TJ,1183009.464,kg +485f7c82-28a5-30c5-b070-1c710ba8ef5c,SESCO,II.1.1,Entre Rios,AR-E,annual,2015,gas oil combustion consumption by freight transport,15.96504,TJ,CH4,3.9,kg/TJ,62.263656,kg +485f7c82-28a5-30c5-b070-1c710ba8ef5c,SESCO,II.1.1,Entre Rios,AR-E,annual,2015,gas oil combustion consumption by freight transport,15.96504,TJ,N2O,3.9,kg/TJ,62.263656,kg +3ff4451d-7617-3b97-a080-eaa02a384379,SESCO,II.1.1,Jujuy,AR-Y,annual,2015,gas oil combustion consumption by freight transport,0.03612,TJ,CO2,74100.0,kg/TJ,2676.4919999999997,kg +6f4c9fad-dbde-38f3-a1fc-be6512e67ea9,SESCO,II.1.1,Jujuy,AR-Y,annual,2015,gas oil combustion consumption by freight transport,0.03612,TJ,CH4,3.9,kg/TJ,0.140868,kg +6f4c9fad-dbde-38f3-a1fc-be6512e67ea9,SESCO,II.1.1,Jujuy,AR-Y,annual,2015,gas oil combustion consumption by freight transport,0.03612,TJ,N2O,3.9,kg/TJ,0.140868,kg +a66bb4f5-d8cc-3169-8587-27e7a3bcf968,SESCO,II.1.1,La Pampa,AR-L,annual,2015,gas oil combustion consumption by freight transport,0.18059999999999998,TJ,CO2,74100.0,kg/TJ,13382.46,kg +cc3d68d1-8be3-34dc-972b-85794ae2c59f,SESCO,II.1.1,La Pampa,AR-L,annual,2015,gas oil combustion consumption by freight transport,0.18059999999999998,TJ,CH4,3.9,kg/TJ,0.70434,kg +cc3d68d1-8be3-34dc-972b-85794ae2c59f,SESCO,II.1.1,La Pampa,AR-L,annual,2015,gas oil combustion consumption by freight transport,0.18059999999999998,TJ,N2O,3.9,kg/TJ,0.70434,kg +35e79542-f4c4-3a93-a558-775ea0aa4d47,SESCO,II.1.1,La Rioja,AR-F,annual,2015,gas oil combustion consumption by freight transport,2.8895999999999997,TJ,CO2,74100.0,kg/TJ,214119.36,kg +57bc2b56-49c0-3e57-b0c5-46bc9a8512bf,SESCO,II.1.1,La Rioja,AR-F,annual,2015,gas oil combustion consumption by freight transport,2.8895999999999997,TJ,CH4,3.9,kg/TJ,11.26944,kg +57bc2b56-49c0-3e57-b0c5-46bc9a8512bf,SESCO,II.1.1,La Rioja,AR-F,annual,2015,gas oil combustion consumption by freight transport,2.8895999999999997,TJ,N2O,3.9,kg/TJ,11.26944,kg +e5e990fe-0558-3ff9-b3f9-01859864a662,SESCO,II.1.1,Mendoza,AR-M,annual,2015,gas oil combustion consumption by freight transport,36.91464,TJ,CO2,74100.0,kg/TJ,2735374.824,kg +7e445236-9686-348b-9ac2-162f18189469,SESCO,II.1.1,Mendoza,AR-M,annual,2015,gas oil combustion consumption by freight transport,36.91464,TJ,CH4,3.9,kg/TJ,143.967096,kg +7e445236-9686-348b-9ac2-162f18189469,SESCO,II.1.1,Mendoza,AR-M,annual,2015,gas oil combustion consumption by freight transport,36.91464,TJ,N2O,3.9,kg/TJ,143.967096,kg +a3b55dd4-8505-32f0-b011-66ff73b8af7f,SESCO,II.1.1,Misiones,AR-N,annual,2015,gas oil combustion consumption by freight transport,11.99184,TJ,CO2,74100.0,kg/TJ,888595.344,kg +dc262bdc-12be-346e-8971-54f35839af90,SESCO,II.1.1,Misiones,AR-N,annual,2015,gas oil combustion consumption by freight transport,11.99184,TJ,CH4,3.9,kg/TJ,46.768176,kg +dc262bdc-12be-346e-8971-54f35839af90,SESCO,II.1.1,Misiones,AR-N,annual,2015,gas oil combustion consumption by freight transport,11.99184,TJ,N2O,3.9,kg/TJ,46.768176,kg +00231b43-4cc7-36dd-b616-869c50a9decb,SESCO,II.1.1,Neuquén,AR-Q,annual,2015,gas oil combustion consumption by freight transport,71.55372,TJ,CO2,74100.0,kg/TJ,5302130.652,kg +0b54e7c6-a306-37a1-8188-93177f2ac0be,SESCO,II.1.1,Neuquén,AR-Q,annual,2015,gas oil combustion consumption by freight transport,71.55372,TJ,CH4,3.9,kg/TJ,279.059508,kg +0b54e7c6-a306-37a1-8188-93177f2ac0be,SESCO,II.1.1,Neuquén,AR-Q,annual,2015,gas oil combustion consumption by freight transport,71.55372,TJ,N2O,3.9,kg/TJ,279.059508,kg +2b49f254-33e2-340a-869e-08075b271ba2,SESCO,II.1.1,Rio Negro,AR-R,annual,2015,gas oil combustion consumption by freight transport,3.82872,TJ,CO2,74100.0,kg/TJ,283708.152,kg +215a9ad0-b54b-370e-ae0b-6a0f94baf96a,SESCO,II.1.1,Rio Negro,AR-R,annual,2015,gas oil combustion consumption by freight transport,3.82872,TJ,CH4,3.9,kg/TJ,14.932008,kg +215a9ad0-b54b-370e-ae0b-6a0f94baf96a,SESCO,II.1.1,Rio Negro,AR-R,annual,2015,gas oil combustion consumption by freight transport,3.82872,TJ,N2O,3.9,kg/TJ,14.932008,kg +b2f93aae-b46b-3785-9e4b-fb0a90223712,SESCO,II.1.1,Salta,AR-A,annual,2015,gas oil combustion consumption by freight transport,24.850559999999998,TJ,CO2,74100.0,kg/TJ,1841426.4959999998,kg +896c0c65-26a8-3a7f-9c76-acd2b91c9134,SESCO,II.1.1,Salta,AR-A,annual,2015,gas oil combustion consumption by freight transport,24.850559999999998,TJ,CH4,3.9,kg/TJ,96.91718399999999,kg +896c0c65-26a8-3a7f-9c76-acd2b91c9134,SESCO,II.1.1,Salta,AR-A,annual,2015,gas oil combustion consumption by freight transport,24.850559999999998,TJ,N2O,3.9,kg/TJ,96.91718399999999,kg +5628cee7-bf04-33e5-b7ae-a9a05144a38d,SESCO,II.1.1,San Juan,AR-J,annual,2015,gas oil combustion consumption by freight transport,4.47888,TJ,CO2,74100.0,kg/TJ,331885.00800000003,kg +cb55ba07-aaa8-370e-b385-b6e08715c268,SESCO,II.1.1,San Juan,AR-J,annual,2015,gas oil combustion consumption by freight transport,4.47888,TJ,CH4,3.9,kg/TJ,17.467632000000002,kg +cb55ba07-aaa8-370e-b385-b6e08715c268,SESCO,II.1.1,San Juan,AR-J,annual,2015,gas oil combustion consumption by freight transport,4.47888,TJ,N2O,3.9,kg/TJ,17.467632000000002,kg +c4e86503-1b32-3541-984b-c261d3fb5e01,SESCO,II.1.1,San Luis,AR-D,annual,2015,gas oil combustion consumption by freight transport,2.56452,TJ,CO2,74100.0,kg/TJ,190030.932,kg +333e4407-343c-3afd-882c-ac80eb2d6757,SESCO,II.1.1,San Luis,AR-D,annual,2015,gas oil combustion consumption by freight transport,2.56452,TJ,CH4,3.9,kg/TJ,10.001628,kg +333e4407-343c-3afd-882c-ac80eb2d6757,SESCO,II.1.1,San Luis,AR-D,annual,2015,gas oil combustion consumption by freight transport,2.56452,TJ,N2O,3.9,kg/TJ,10.001628,kg +53363f11-0de6-32dc-8844-30d7cda218d9,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2015,gas oil combustion consumption by freight transport,2.78124,TJ,CO2,74100.0,kg/TJ,206089.884,kg +257ba2e0-62f8-37e5-a13b-8d0ba33ed8dc,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2015,gas oil combustion consumption by freight transport,2.78124,TJ,CH4,3.9,kg/TJ,10.846836,kg +257ba2e0-62f8-37e5-a13b-8d0ba33ed8dc,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2015,gas oil combustion consumption by freight transport,2.78124,TJ,N2O,3.9,kg/TJ,10.846836,kg +46effbdf-1462-3e54-bc5a-c90627a35be8,SESCO,II.1.1,Santa Fe,AR-S,annual,2015,gas oil combustion consumption by freight transport,163.33464,TJ,CO2,74100.0,kg/TJ,12103096.824000001,kg +5ccc8378-8b6b-373b-ba19-dfb601e9e136,SESCO,II.1.1,Santa Fe,AR-S,annual,2015,gas oil combustion consumption by freight transport,163.33464,TJ,CH4,3.9,kg/TJ,637.005096,kg +5ccc8378-8b6b-373b-ba19-dfb601e9e136,SESCO,II.1.1,Santa Fe,AR-S,annual,2015,gas oil combustion consumption by freight transport,163.33464,TJ,N2O,3.9,kg/TJ,637.005096,kg +02b10c80-f015-39cb-aa5e-0fa5fb8fab17,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2015,gas oil combustion consumption by freight transport,0.07224,TJ,CO2,74100.0,kg/TJ,5352.9839999999995,kg +e5567771-8320-33a5-9f80-456ff2ef92f1,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2015,gas oil combustion consumption by freight transport,0.07224,TJ,CH4,3.9,kg/TJ,0.281736,kg +e5567771-8320-33a5-9f80-456ff2ef92f1,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2015,gas oil combustion consumption by freight transport,0.07224,TJ,N2O,3.9,kg/TJ,0.281736,kg +7dbcbed4-861d-3134-9d5c-9e3cdbc7c6be,SESCO,II.1.1,Tucuman,AR-T,annual,2015,gas oil combustion consumption by freight transport,7.91028,TJ,CO2,74100.0,kg/TJ,586151.748,kg +d56941bb-185e-3406-a2bc-6f90d948214b,SESCO,II.1.1,Tucuman,AR-T,annual,2015,gas oil combustion consumption by freight transport,7.91028,TJ,CH4,3.9,kg/TJ,30.850092,kg +d56941bb-185e-3406-a2bc-6f90d948214b,SESCO,II.1.1,Tucuman,AR-T,annual,2015,gas oil combustion consumption by freight transport,7.91028,TJ,N2O,3.9,kg/TJ,30.850092,kg +1eb1f34f-f896-309f-96f6-fdb9c8735d29,SESCO,II.1.1,Buenos Aires,AR-B,annual,2015,gas oil combustion consumption by public passenger transport,11800.29564,TJ,CO2,74100.0,kg/TJ,874401906.924,kg +8e371021-004c-321c-a78a-9ec46b65fc33,SESCO,II.1.1,Buenos Aires,AR-B,annual,2015,gas oil combustion consumption by public passenger transport,11800.29564,TJ,CH4,3.9,kg/TJ,46021.152996,kg +8e371021-004c-321c-a78a-9ec46b65fc33,SESCO,II.1.1,Buenos Aires,AR-B,annual,2015,gas oil combustion consumption by public passenger transport,11800.29564,TJ,N2O,3.9,kg/TJ,46021.152996,kg +ac2aaf82-f553-3640-be43-130086fc4cfb,SESCO,II.1.1,Capital Federal,AR-C,annual,2015,gas oil combustion consumption by public passenger transport,2518.90044,TJ,CO2,74100.0,kg/TJ,186650522.604,kg +2c6aa34e-5ae8-3a35-a2cc-4c4511c83bf7,SESCO,II.1.1,Capital Federal,AR-C,annual,2015,gas oil combustion consumption by public passenger transport,2518.90044,TJ,CH4,3.9,kg/TJ,9823.711716,kg +2c6aa34e-5ae8-3a35-a2cc-4c4511c83bf7,SESCO,II.1.1,Capital Federal,AR-C,annual,2015,gas oil combustion consumption by public passenger transport,2518.90044,TJ,N2O,3.9,kg/TJ,9823.711716,kg +5399a173-8654-3c28-a1c2-b4e82e2a6719,SESCO,II.1.1,Catamarca,AR-K,annual,2015,gas oil combustion consumption by public passenger transport,209.24316,TJ,CO2,74100.0,kg/TJ,15504918.156,kg +d09ec43b-4410-35c8-ad8c-a02248e17eba,SESCO,II.1.1,Catamarca,AR-K,annual,2015,gas oil combustion consumption by public passenger transport,209.24316,TJ,CH4,3.9,kg/TJ,816.048324,kg +d09ec43b-4410-35c8-ad8c-a02248e17eba,SESCO,II.1.1,Catamarca,AR-K,annual,2015,gas oil combustion consumption by public passenger transport,209.24316,TJ,N2O,3.9,kg/TJ,816.048324,kg +b9525f5f-52ea-3ce3-939a-5370141905e2,SESCO,II.1.1,Chaco,AR-H,annual,2015,gas oil combustion consumption by public passenger transport,542.3418,TJ,CO2,74100.0,kg/TJ,40187527.38,kg +7f9e27e3-1c81-336f-ac98-118efe9ebd07,SESCO,II.1.1,Chaco,AR-H,annual,2015,gas oil combustion consumption by public passenger transport,542.3418,TJ,CH4,3.9,kg/TJ,2115.13302,kg +7f9e27e3-1c81-336f-ac98-118efe9ebd07,SESCO,II.1.1,Chaco,AR-H,annual,2015,gas oil combustion consumption by public passenger transport,542.3418,TJ,N2O,3.9,kg/TJ,2115.13302,kg +af90817a-6a1f-3e39-9982-0ed66e745e0b,SESCO,II.1.1,Chubut,AR-U,annual,2015,gas oil combustion consumption by public passenger transport,181.90032,TJ,CO2,74100.0,kg/TJ,13478813.712,kg +a25fb703-5301-3989-9a3b-8403ad4793f5,SESCO,II.1.1,Chubut,AR-U,annual,2015,gas oil combustion consumption by public passenger transport,181.90032,TJ,CH4,3.9,kg/TJ,709.411248,kg +a25fb703-5301-3989-9a3b-8403ad4793f5,SESCO,II.1.1,Chubut,AR-U,annual,2015,gas oil combustion consumption by public passenger transport,181.90032,TJ,N2O,3.9,kg/TJ,709.411248,kg +e003a019-8806-3a58-bf3d-5939b03c2109,SESCO,II.1.1,Corrientes,AR-W,annual,2015,gas oil combustion consumption by public passenger transport,489.46211999999997,TJ,CO2,74100.0,kg/TJ,36269143.092,kg +878168a1-d798-3af9-9a3f-67e771da2e4e,SESCO,II.1.1,Corrientes,AR-W,annual,2015,gas oil combustion consumption by public passenger transport,489.46211999999997,TJ,CH4,3.9,kg/TJ,1908.9022679999998,kg +878168a1-d798-3af9-9a3f-67e771da2e4e,SESCO,II.1.1,Corrientes,AR-W,annual,2015,gas oil combustion consumption by public passenger transport,489.46211999999997,TJ,N2O,3.9,kg/TJ,1908.9022679999998,kg +7a8d21c4-c69a-3cc5-8d90-a184421592b2,SESCO,II.1.1,Córdoba,AR-X,annual,2015,gas oil combustion consumption by public passenger transport,1873.3637999999999,TJ,CO2,74100.0,kg/TJ,138816257.57999998,kg +b78d614d-669e-366a-b048-4ba1721e7943,SESCO,II.1.1,Córdoba,AR-X,annual,2015,gas oil combustion consumption by public passenger transport,1873.3637999999999,TJ,CH4,3.9,kg/TJ,7306.11882,kg +b78d614d-669e-366a-b048-4ba1721e7943,SESCO,II.1.1,Córdoba,AR-X,annual,2015,gas oil combustion consumption by public passenger transport,1873.3637999999999,TJ,N2O,3.9,kg/TJ,7306.11882,kg +e6f47383-294f-367b-962a-ffc852bab211,SESCO,II.1.1,Entre Rios,AR-E,annual,2015,gas oil combustion consumption by public passenger transport,534.72048,TJ,CO2,74100.0,kg/TJ,39622787.567999996,kg +22a6d1fb-01d1-346e-b049-02274d161de8,SESCO,II.1.1,Entre Rios,AR-E,annual,2015,gas oil combustion consumption by public passenger transport,534.72048,TJ,CH4,3.9,kg/TJ,2085.4098719999997,kg +22a6d1fb-01d1-346e-b049-02274d161de8,SESCO,II.1.1,Entre Rios,AR-E,annual,2015,gas oil combustion consumption by public passenger transport,534.72048,TJ,N2O,3.9,kg/TJ,2085.4098719999997,kg +2b94db17-e255-3d14-90b1-2c6de4014b93,SESCO,II.1.1,Formosa,AR-P,annual,2015,gas oil combustion consumption by public passenger transport,75.41856,TJ,CO2,74100.0,kg/TJ,5588515.296,kg +786f8e01-c87f-38b2-a6ea-9033e3f8e600,SESCO,II.1.1,Formosa,AR-P,annual,2015,gas oil combustion consumption by public passenger transport,75.41856,TJ,CH4,3.9,kg/TJ,294.132384,kg +786f8e01-c87f-38b2-a6ea-9033e3f8e600,SESCO,II.1.1,Formosa,AR-P,annual,2015,gas oil combustion consumption by public passenger transport,75.41856,TJ,N2O,3.9,kg/TJ,294.132384,kg +7be12cd4-6c06-3c8f-ba1a-866d3a1a6da7,SESCO,II.1.1,Jujuy,AR-Y,annual,2015,gas oil combustion consumption by public passenger transport,630.40236,TJ,CO2,74100.0,kg/TJ,46712814.876,kg +cc798670-5ff6-3227-87ae-083bebb01dc3,SESCO,II.1.1,Jujuy,AR-Y,annual,2015,gas oil combustion consumption by public passenger transport,630.40236,TJ,CH4,3.9,kg/TJ,2458.569204,kg +cc798670-5ff6-3227-87ae-083bebb01dc3,SESCO,II.1.1,Jujuy,AR-Y,annual,2015,gas oil combustion consumption by public passenger transport,630.40236,TJ,N2O,3.9,kg/TJ,2458.569204,kg +b617281d-a7a6-3877-8324-c426d50e0506,SESCO,II.1.1,La Pampa,AR-L,annual,2015,gas oil combustion consumption by public passenger transport,56.27496,TJ,CO2,74100.0,kg/TJ,4169974.536,kg +599ad311-98ae-3752-afe9-4e61be769b39,SESCO,II.1.1,La Pampa,AR-L,annual,2015,gas oil combustion consumption by public passenger transport,56.27496,TJ,CH4,3.9,kg/TJ,219.472344,kg +599ad311-98ae-3752-afe9-4e61be769b39,SESCO,II.1.1,La Pampa,AR-L,annual,2015,gas oil combustion consumption by public passenger transport,56.27496,TJ,N2O,3.9,kg/TJ,219.472344,kg +513c5f89-2481-32d5-b1f5-98791fc2c71f,SESCO,II.1.1,La Rioja,AR-F,annual,2015,gas oil combustion consumption by public passenger transport,131.98248,TJ,CO2,74100.0,kg/TJ,9779901.768000001,kg +d62e934b-997d-329b-a767-db205f339cd4,SESCO,II.1.1,La Rioja,AR-F,annual,2015,gas oil combustion consumption by public passenger transport,131.98248,TJ,CH4,3.9,kg/TJ,514.731672,kg +d62e934b-997d-329b-a767-db205f339cd4,SESCO,II.1.1,La Rioja,AR-F,annual,2015,gas oil combustion consumption by public passenger transport,131.98248,TJ,N2O,3.9,kg/TJ,514.731672,kg +be0306e2-99a2-3636-8384-997971930916,SESCO,II.1.1,Mendoza,AR-M,annual,2015,gas oil combustion consumption by public passenger transport,1749.43608,TJ,CO2,74100.0,kg/TJ,129633213.528,kg +8f60a1f0-ac81-3350-953d-cb3bd5ffc7a7,SESCO,II.1.1,Mendoza,AR-M,annual,2015,gas oil combustion consumption by public passenger transport,1749.43608,TJ,CH4,3.9,kg/TJ,6822.800711999999,kg +8f60a1f0-ac81-3350-953d-cb3bd5ffc7a7,SESCO,II.1.1,Mendoza,AR-M,annual,2015,gas oil combustion consumption by public passenger transport,1749.43608,TJ,N2O,3.9,kg/TJ,6822.800711999999,kg +f6079a5e-ddd6-3db9-93cb-6bccdf593dcb,SESCO,II.1.1,Misiones,AR-N,annual,2015,gas oil combustion consumption by public passenger transport,1114.4826,TJ,CO2,74100.0,kg/TJ,82583160.66,kg +a3459531-86e6-3544-afea-f32018bcffd1,SESCO,II.1.1,Misiones,AR-N,annual,2015,gas oil combustion consumption by public passenger transport,1114.4826,TJ,CH4,3.9,kg/TJ,4346.48214,kg +a3459531-86e6-3544-afea-f32018bcffd1,SESCO,II.1.1,Misiones,AR-N,annual,2015,gas oil combustion consumption by public passenger transport,1114.4826,TJ,N2O,3.9,kg/TJ,4346.48214,kg +48dfbf9a-6e1d-34ae-bd01-d7956805bff7,SESCO,II.1.1,Neuquén,AR-Q,annual,2015,gas oil combustion consumption by public passenger transport,310.01796,TJ,CO2,74100.0,kg/TJ,22972330.836000003,kg +9226d477-8d22-396b-b750-f8c617d810e7,SESCO,II.1.1,Neuquén,AR-Q,annual,2015,gas oil combustion consumption by public passenger transport,310.01796,TJ,CH4,3.9,kg/TJ,1209.070044,kg +9226d477-8d22-396b-b750-f8c617d810e7,SESCO,II.1.1,Neuquén,AR-Q,annual,2015,gas oil combustion consumption by public passenger transport,310.01796,TJ,N2O,3.9,kg/TJ,1209.070044,kg +0bd098d5-61dc-3f3a-9397-b4d6ff62e409,SESCO,II.1.1,Rio Negro,AR-R,annual,2015,gas oil combustion consumption by public passenger transport,504.0546,TJ,CO2,74100.0,kg/TJ,37350445.86,kg +78292441-1424-307a-a775-b975abb40fd4,SESCO,II.1.1,Rio Negro,AR-R,annual,2015,gas oil combustion consumption by public passenger transport,504.0546,TJ,CH4,3.9,kg/TJ,1965.81294,kg +78292441-1424-307a-a775-b975abb40fd4,SESCO,II.1.1,Rio Negro,AR-R,annual,2015,gas oil combustion consumption by public passenger transport,504.0546,TJ,N2O,3.9,kg/TJ,1965.81294,kg +865b8075-57cf-3622-91d5-05a563fbd15b,SESCO,II.1.1,Salta,AR-A,annual,2015,gas oil combustion consumption by public passenger transport,897.2207999999999,TJ,CO2,74100.0,kg/TJ,66484061.279999994,kg +becb18c8-febb-3b32-ba7f-e2cc59c8c77b,SESCO,II.1.1,Salta,AR-A,annual,2015,gas oil combustion consumption by public passenger transport,897.2207999999999,TJ,CH4,3.9,kg/TJ,3499.1611199999998,kg +becb18c8-febb-3b32-ba7f-e2cc59c8c77b,SESCO,II.1.1,Salta,AR-A,annual,2015,gas oil combustion consumption by public passenger transport,897.2207999999999,TJ,N2O,3.9,kg/TJ,3499.1611199999998,kg +90e46e59-f68d-3e41-9636-caddf24af2e7,SESCO,II.1.1,San Juan,AR-J,annual,2015,gas oil combustion consumption by public passenger transport,541.8361199999999,TJ,CO2,74100.0,kg/TJ,40150056.492,kg +ddd608ca-0242-383a-b907-1d895934c116,SESCO,II.1.1,San Juan,AR-J,annual,2015,gas oil combustion consumption by public passenger transport,541.8361199999999,TJ,CH4,3.9,kg/TJ,2113.1608679999995,kg +ddd608ca-0242-383a-b907-1d895934c116,SESCO,II.1.1,San Juan,AR-J,annual,2015,gas oil combustion consumption by public passenger transport,541.8361199999999,TJ,N2O,3.9,kg/TJ,2113.1608679999995,kg +bcae1103-59b6-3c2c-9aa7-81b4ed2198b7,SESCO,II.1.1,San Luis,AR-D,annual,2015,gas oil combustion consumption by public passenger transport,165.50184,TJ,CO2,74100.0,kg/TJ,12263686.343999999,kg +e1260323-8308-38a9-9d1a-7e3154baa29d,SESCO,II.1.1,San Luis,AR-D,annual,2015,gas oil combustion consumption by public passenger transport,165.50184,TJ,CH4,3.9,kg/TJ,645.4571759999999,kg +e1260323-8308-38a9-9d1a-7e3154baa29d,SESCO,II.1.1,San Luis,AR-D,annual,2015,gas oil combustion consumption by public passenger transport,165.50184,TJ,N2O,3.9,kg/TJ,645.4571759999999,kg +c1542c26-9787-3d02-b0bf-cd1e701aafb4,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2015,gas oil combustion consumption by public passenger transport,32.47188,TJ,CO2,74100.0,kg/TJ,2406166.3079999997,kg +ce168d73-a62f-300f-aa15-b10ad0d2651c,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2015,gas oil combustion consumption by public passenger transport,32.47188,TJ,CH4,3.9,kg/TJ,126.64033199999999,kg +ce168d73-a62f-300f-aa15-b10ad0d2651c,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2015,gas oil combustion consumption by public passenger transport,32.47188,TJ,N2O,3.9,kg/TJ,126.64033199999999,kg +14754a13-c7dd-30a6-ae51-88b9ab97e421,SESCO,II.1.1,Santa Fe,AR-S,annual,2015,gas oil combustion consumption by public passenger transport,1986.13044,TJ,CO2,74100.0,kg/TJ,147172265.604,kg +8fa83610-8255-383c-ab0e-c1ea05ab9f40,SESCO,II.1.1,Santa Fe,AR-S,annual,2015,gas oil combustion consumption by public passenger transport,1986.13044,TJ,CH4,3.9,kg/TJ,7745.908716,kg +8fa83610-8255-383c-ab0e-c1ea05ab9f40,SESCO,II.1.1,Santa Fe,AR-S,annual,2015,gas oil combustion consumption by public passenger transport,1986.13044,TJ,N2O,3.9,kg/TJ,7745.908716,kg +3172dcdb-1367-39e1-9646-2dc96617534b,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2015,gas oil combustion consumption by public passenger transport,249.5892,TJ,CO2,74100.0,kg/TJ,18494559.72,kg +faf356ed-fec3-3438-8ae6-520b11cf7578,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2015,gas oil combustion consumption by public passenger transport,249.5892,TJ,CH4,3.9,kg/TJ,973.39788,kg +faf356ed-fec3-3438-8ae6-520b11cf7578,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2015,gas oil combustion consumption by public passenger transport,249.5892,TJ,N2O,3.9,kg/TJ,973.39788,kg +73b676a9-e91e-3b8a-847e-9b412662e1cf,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2015,gas oil combustion consumption by public passenger transport,14.33964,TJ,CO2,74100.0,kg/TJ,1062567.324,kg +945a6de6-f66f-3036-9104-3301fcd68073,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2015,gas oil combustion consumption by public passenger transport,14.33964,TJ,CH4,3.9,kg/TJ,55.924595999999994,kg +945a6de6-f66f-3036-9104-3301fcd68073,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2015,gas oil combustion consumption by public passenger transport,14.33964,TJ,N2O,3.9,kg/TJ,55.924595999999994,kg +eb426fe0-c60e-3f15-aa27-7bbdadc174af,SESCO,II.1.1,Tucuman,AR-T,annual,2015,gas oil combustion consumption by public passenger transport,1432.55532,TJ,CO2,74100.0,kg/TJ,106152349.212,kg +710322e6-3069-325d-b5e2-37240468c302,SESCO,II.1.1,Tucuman,AR-T,annual,2015,gas oil combustion consumption by public passenger transport,1432.55532,TJ,CH4,3.9,kg/TJ,5586.965748,kg +710322e6-3069-325d-b5e2-37240468c302,SESCO,II.1.1,Tucuman,AR-T,annual,2015,gas oil combustion consumption by public passenger transport,1432.55532,TJ,N2O,3.9,kg/TJ,5586.965748,kg +5e0a9044-da1d-30a2-b43c-81e4e0307588,SESCO,II.1.1,Capital Federal,AR-C,annual,2016,gas oil combustion consumption by to the public,87.66324,TJ,CO2,74100.0,kg/TJ,6495846.084,kg +20e03e3a-11b8-39f2-89c0-0eb47487d63f,SESCO,II.1.1,Capital Federal,AR-C,annual,2016,gas oil combustion consumption by to the public,87.66324,TJ,CH4,3.9,kg/TJ,341.886636,kg +20e03e3a-11b8-39f2-89c0-0eb47487d63f,SESCO,II.1.1,Capital Federal,AR-C,annual,2016,gas oil combustion consumption by to the public,87.66324,TJ,N2O,3.9,kg/TJ,341.886636,kg +4553a5e4-6fe5-3b96-ac40-698d3414c969,SESCO,II.5.1,Córdoba,AR-X,annual,2016,gasoline combustion consumption by agriculture machines,237.3151,TJ,CO2,69300.0,kg/TJ,16445936.43,kg +3da820c1-3a36-3807-a524-76892bf86563,SESCO,II.5.1,Córdoba,AR-X,annual,2016,gasoline combustion consumption by agriculture machines,237.3151,TJ,CH4,33.0,kg/TJ,7831.3983,kg +4bf7eb9c-df1e-370f-afba-672c635e99e6,SESCO,II.5.1,Córdoba,AR-X,annual,2016,gasoline combustion consumption by agriculture machines,237.3151,TJ,N2O,3.2,kg/TJ,759.40832,kg +7f859afa-1346-3001-b1c0-2d80ed6bba8d,SESCO,II.5.1,Buenos Aires,AR-B,annual,2016,gas oil combustion consumption by agriculture machines,114.21144,TJ,CO2,74100.0,kg/TJ,8463067.704,kg +d3709c6b-6248-3fac-a2b0-ac9f1af4c0a5,SESCO,II.5.1,Buenos Aires,AR-B,annual,2016,gas oil combustion consumption by agriculture machines,114.21144,TJ,CH4,3.9,kg/TJ,445.42461599999996,kg +d3709c6b-6248-3fac-a2b0-ac9f1af4c0a5,SESCO,II.5.1,Buenos Aires,AR-B,annual,2016,gas oil combustion consumption by agriculture machines,114.21144,TJ,N2O,3.9,kg/TJ,445.42461599999996,kg +7754ff50-78e4-3032-8c0b-71bb783f06ff,SESCO,II.5.1,Chaco,AR-H,annual,2016,gas oil combustion consumption by agriculture machines,4.47888,TJ,CO2,74100.0,kg/TJ,331885.00800000003,kg +c8d5f7b3-4de8-3300-bfd6-39882af38b47,SESCO,II.5.1,Chaco,AR-H,annual,2016,gas oil combustion consumption by agriculture machines,4.47888,TJ,CH4,3.9,kg/TJ,17.467632000000002,kg +c8d5f7b3-4de8-3300-bfd6-39882af38b47,SESCO,II.5.1,Chaco,AR-H,annual,2016,gas oil combustion consumption by agriculture machines,4.47888,TJ,N2O,3.9,kg/TJ,17.467632000000002,kg +068655a7-59ae-3f32-b493-d3a91ffc7909,SESCO,II.5.1,Corrientes,AR-W,annual,2016,gas oil combustion consumption by agriculture machines,2.5284,TJ,CO2,74100.0,kg/TJ,187354.44,kg +8d5e4b4a-28be-3cfc-97b7-0fdcc96f0ca1,SESCO,II.5.1,Corrientes,AR-W,annual,2016,gas oil combustion consumption by agriculture machines,2.5284,TJ,CH4,3.9,kg/TJ,9.860759999999999,kg +8d5e4b4a-28be-3cfc-97b7-0fdcc96f0ca1,SESCO,II.5.1,Corrientes,AR-W,annual,2016,gas oil combustion consumption by agriculture machines,2.5284,TJ,N2O,3.9,kg/TJ,9.860759999999999,kg +63a0eb29-0e97-310d-aff1-f539f1005652,SESCO,II.5.1,Córdoba,AR-X,annual,2016,gas oil combustion consumption by agriculture machines,113.01948,TJ,CO2,74100.0,kg/TJ,8374743.468,kg +ec1b8551-227a-3be8-83af-c2dbf8ce0605,SESCO,II.5.1,Córdoba,AR-X,annual,2016,gas oil combustion consumption by agriculture machines,113.01948,TJ,CH4,3.9,kg/TJ,440.77597199999997,kg +ec1b8551-227a-3be8-83af-c2dbf8ce0605,SESCO,II.5.1,Córdoba,AR-X,annual,2016,gas oil combustion consumption by agriculture machines,113.01948,TJ,N2O,3.9,kg/TJ,440.77597199999997,kg +977b6ba5-0e4b-3629-a1f0-35eae1c13cbf,SESCO,II.5.1,Santa Fe,AR-S,annual,2016,gas oil combustion consumption by agriculture machines,471.58272,TJ,CO2,74100.0,kg/TJ,34944279.552,kg +37d965a2-8838-3c78-a506-39fa879e18b9,SESCO,II.5.1,Santa Fe,AR-S,annual,2016,gas oil combustion consumption by agriculture machines,471.58272,TJ,CH4,3.9,kg/TJ,1839.1726079999999,kg +37d965a2-8838-3c78-a506-39fa879e18b9,SESCO,II.5.1,Santa Fe,AR-S,annual,2016,gas oil combustion consumption by agriculture machines,471.58272,TJ,N2O,3.9,kg/TJ,1839.1726079999999,kg +6ee711fb-72a6-3483-91fc-83a96d8afc72,SESCO,II.5.1,Tucuman,AR-T,annual,2016,gas oil combustion consumption by agriculture machines,9.71628,TJ,CO2,74100.0,kg/TJ,719976.348,kg +3dcec89f-15d8-3cd3-afa7-2c85b3dd99ec,SESCO,II.5.1,Tucuman,AR-T,annual,2016,gas oil combustion consumption by agriculture machines,9.71628,TJ,CH4,3.9,kg/TJ,37.893491999999995,kg +3dcec89f-15d8-3cd3-afa7-2c85b3dd99ec,SESCO,II.5.1,Tucuman,AR-T,annual,2016,gas oil combustion consumption by agriculture machines,9.71628,TJ,N2O,3.9,kg/TJ,37.893491999999995,kg +3c72b7d5-d471-3269-a9a8-5d5c9c48c9f7,SESCO,II.5.1,Buenos Aires,AR-B,annual,2016,gas oil combustion consumption by agriculture machines,10.43868,TJ,CO2,74100.0,kg/TJ,773506.188,kg +063ef4bf-1c5d-3894-b034-28e9421cc7a7,SESCO,II.5.1,Buenos Aires,AR-B,annual,2016,gas oil combustion consumption by agriculture machines,10.43868,TJ,CH4,3.9,kg/TJ,40.710851999999996,kg +063ef4bf-1c5d-3894-b034-28e9421cc7a7,SESCO,II.5.1,Buenos Aires,AR-B,annual,2016,gas oil combustion consumption by agriculture machines,10.43868,TJ,N2O,3.9,kg/TJ,40.710851999999996,kg +97717d70-fe4e-3e4b-9df1-8d5f7ecd3e77,SESCO,II.5.1,Chaco,AR-H,annual,2016,gas oil combustion consumption by agriculture machines,1.04748,TJ,CO2,74100.0,kg/TJ,77618.268,kg +e8569d22-8f57-3e80-b5bc-ea0873fb1431,SESCO,II.5.1,Chaco,AR-H,annual,2016,gas oil combustion consumption by agriculture machines,1.04748,TJ,CH4,3.9,kg/TJ,4.085172,kg +e8569d22-8f57-3e80-b5bc-ea0873fb1431,SESCO,II.5.1,Chaco,AR-H,annual,2016,gas oil combustion consumption by agriculture machines,1.04748,TJ,N2O,3.9,kg/TJ,4.085172,kg +26855941-11e5-36bd-b03e-2262ce15b713,SESCO,II.5.1,Córdoba,AR-X,annual,2016,gas oil combustion consumption by agriculture machines,11.738999999999999,TJ,CO2,74100.0,kg/TJ,869859.8999999999,kg +60d8a771-1951-3634-b370-920cd88c130f,SESCO,II.5.1,Córdoba,AR-X,annual,2016,gas oil combustion consumption by agriculture machines,11.738999999999999,TJ,CH4,3.9,kg/TJ,45.78209999999999,kg +60d8a771-1951-3634-b370-920cd88c130f,SESCO,II.5.1,Córdoba,AR-X,annual,2016,gas oil combustion consumption by agriculture machines,11.738999999999999,TJ,N2O,3.9,kg/TJ,45.78209999999999,kg +973edb3f-5f58-3b50-829a-1c8bfae819b0,SESCO,II.5.1,Santa Fe,AR-S,annual,2016,gas oil combustion consumption by agriculture machines,26.62044,TJ,CO2,74100.0,kg/TJ,1972574.6039999998,kg +2ddf5058-4488-3074-a53e-d16663b64d88,SESCO,II.5.1,Santa Fe,AR-S,annual,2016,gas oil combustion consumption by agriculture machines,26.62044,TJ,CH4,3.9,kg/TJ,103.81971599999999,kg +2ddf5058-4488-3074-a53e-d16663b64d88,SESCO,II.5.1,Santa Fe,AR-S,annual,2016,gas oil combustion consumption by agriculture machines,26.62044,TJ,N2O,3.9,kg/TJ,103.81971599999999,kg +74710120-27a3-386f-ac36-989cbe562afb,SESCO,II.5.1,Tucuman,AR-T,annual,2016,gas oil combustion consumption by agriculture machines,6.10428,TJ,CO2,74100.0,kg/TJ,452327.148,kg +c91b8d86-f331-383d-a180-bfa3dfafb558,SESCO,II.5.1,Tucuman,AR-T,annual,2016,gas oil combustion consumption by agriculture machines,6.10428,TJ,CH4,3.9,kg/TJ,23.806692,kg +c91b8d86-f331-383d-a180-bfa3dfafb558,SESCO,II.5.1,Tucuman,AR-T,annual,2016,gas oil combustion consumption by agriculture machines,6.10428,TJ,N2O,3.9,kg/TJ,23.806692,kg +559b7b90-bcb7-37df-adc3-851f90a76562,SESCO,II.1.1,Buenos Aires,AR-B,annual,2016,gas oil combustion consumption by to the public,10061.7678,TJ,CO2,74100.0,kg/TJ,745576993.98,kg +78ad1973-4929-3e3c-a854-786ba935d8c0,SESCO,II.1.1,Buenos Aires,AR-B,annual,2016,gas oil combustion consumption by to the public,10061.7678,TJ,CH4,3.9,kg/TJ,39240.89442,kg +78ad1973-4929-3e3c-a854-786ba935d8c0,SESCO,II.1.1,Buenos Aires,AR-B,annual,2016,gas oil combustion consumption by to the public,10061.7678,TJ,N2O,3.9,kg/TJ,39240.89442,kg +6d6838c5-92f6-37df-801b-a7bf5179c6dd,SESCO,II.1.1,Capital Federal,AR-C,annual,2016,gas oil combustion consumption by to the public,1156.0206,TJ,CO2,74100.0,kg/TJ,85661126.46000001,kg +55aec61d-8c5a-33c2-b648-eef1db5d3c3a,SESCO,II.1.1,Capital Federal,AR-C,annual,2016,gas oil combustion consumption by to the public,1156.0206,TJ,CH4,3.9,kg/TJ,4508.48034,kg +55aec61d-8c5a-33c2-b648-eef1db5d3c3a,SESCO,II.1.1,Capital Federal,AR-C,annual,2016,gas oil combustion consumption by to the public,1156.0206,TJ,N2O,3.9,kg/TJ,4508.48034,kg +6f79cb60-4c6e-3970-bf0e-47bb5978e7c5,SESCO,II.1.1,Catamarca,AR-K,annual,2016,gas oil combustion consumption by to the public,258.47472,TJ,CO2,74100.0,kg/TJ,19152976.752,kg +eb955919-2550-30ef-81a3-03ac628ff751,SESCO,II.1.1,Catamarca,AR-K,annual,2016,gas oil combustion consumption by to the public,258.47472,TJ,CH4,3.9,kg/TJ,1008.0514079999999,kg +eb955919-2550-30ef-81a3-03ac628ff751,SESCO,II.1.1,Catamarca,AR-K,annual,2016,gas oil combustion consumption by to the public,258.47472,TJ,N2O,3.9,kg/TJ,1008.0514079999999,kg +cdaa7f28-238e-31be-b432-2b13a0d11429,SESCO,II.1.1,Chaco,AR-H,annual,2016,gas oil combustion consumption by to the public,362.68092,TJ,CO2,74100.0,kg/TJ,26874656.172000002,kg +57fbd021-3b73-3001-a000-72fbc7a63dba,SESCO,II.1.1,Chaco,AR-H,annual,2016,gas oil combustion consumption by to the public,362.68092,TJ,CH4,3.9,kg/TJ,1414.455588,kg +57fbd021-3b73-3001-a000-72fbc7a63dba,SESCO,II.1.1,Chaco,AR-H,annual,2016,gas oil combustion consumption by to the public,362.68092,TJ,N2O,3.9,kg/TJ,1414.455588,kg +8fa0e0e8-ed62-3441-baee-21885fb788be,SESCO,II.1.1,Chubut,AR-U,annual,2016,gas oil combustion consumption by to the public,279.46044,TJ,CO2,74100.0,kg/TJ,20708018.604000002,kg +212ca008-7eed-382c-8ca2-05cee1d4b1aa,SESCO,II.1.1,Chubut,AR-U,annual,2016,gas oil combustion consumption by to the public,279.46044,TJ,CH4,3.9,kg/TJ,1089.895716,kg +212ca008-7eed-382c-8ca2-05cee1d4b1aa,SESCO,II.1.1,Chubut,AR-U,annual,2016,gas oil combustion consumption by to the public,279.46044,TJ,N2O,3.9,kg/TJ,1089.895716,kg +b4aee10f-3345-31c4-b661-835ce05a4133,SESCO,II.1.1,Corrientes,AR-W,annual,2016,gas oil combustion consumption by to the public,694.33476,TJ,CO2,74100.0,kg/TJ,51450205.716,kg +0a488b3b-24c3-3a7a-a3ba-2e290121bddf,SESCO,II.1.1,Corrientes,AR-W,annual,2016,gas oil combustion consumption by to the public,694.33476,TJ,CH4,3.9,kg/TJ,2707.9055639999997,kg +0a488b3b-24c3-3a7a-a3ba-2e290121bddf,SESCO,II.1.1,Corrientes,AR-W,annual,2016,gas oil combustion consumption by to the public,694.33476,TJ,N2O,3.9,kg/TJ,2707.9055639999997,kg +2d9b208c-10a3-397a-9a56-10157b92fcaf,SESCO,II.1.1,Córdoba,AR-X,annual,2016,gas oil combustion consumption by to the public,4039.40796,TJ,CO2,74100.0,kg/TJ,299320129.836,kg +ef3912f3-67f2-35af-b44c-d6e8400eaab3,SESCO,II.1.1,Córdoba,AR-X,annual,2016,gas oil combustion consumption by to the public,4039.40796,TJ,CH4,3.9,kg/TJ,15753.691044,kg +ef3912f3-67f2-35af-b44c-d6e8400eaab3,SESCO,II.1.1,Córdoba,AR-X,annual,2016,gas oil combustion consumption by to the public,4039.40796,TJ,N2O,3.9,kg/TJ,15753.691044,kg +8d6a9cd0-0cad-3a15-ae46-e0b92f85fdbf,SESCO,II.1.1,Entre Rios,AR-E,annual,2016,gas oil combustion consumption by to the public,1222.15632,TJ,CO2,74100.0,kg/TJ,90561783.312,kg +55ec3f23-6c7e-3603-aaa8-02e181e0a348,SESCO,II.1.1,Entre Rios,AR-E,annual,2016,gas oil combustion consumption by to the public,1222.15632,TJ,CH4,3.9,kg/TJ,4766.409648,kg +55ec3f23-6c7e-3603-aaa8-02e181e0a348,SESCO,II.1.1,Entre Rios,AR-E,annual,2016,gas oil combustion consumption by to the public,1222.15632,TJ,N2O,3.9,kg/TJ,4766.409648,kg +ac6e5a0b-3c49-3c8a-b6d0-a16ad202d5ce,SESCO,II.1.1,Formosa,AR-P,annual,2016,gas oil combustion consumption by to the public,533.42016,TJ,CO2,74100.0,kg/TJ,39526433.856,kg +42addc9d-9816-3fc1-9808-2585bbe4d249,SESCO,II.1.1,Formosa,AR-P,annual,2016,gas oil combustion consumption by to the public,533.42016,TJ,CH4,3.9,kg/TJ,2080.338624,kg +42addc9d-9816-3fc1-9808-2585bbe4d249,SESCO,II.1.1,Formosa,AR-P,annual,2016,gas oil combustion consumption by to the public,533.42016,TJ,N2O,3.9,kg/TJ,2080.338624,kg +a8bd4443-0002-32b8-ad2d-de18831b23a2,SESCO,II.1.1,Jujuy,AR-Y,annual,2016,gas oil combustion consumption by to the public,162.14267999999998,TJ,CO2,74100.0,kg/TJ,12014772.588,kg +a80bc81f-0f60-3213-ab6a-04ff908d34cd,SESCO,II.1.1,Jujuy,AR-Y,annual,2016,gas oil combustion consumption by to the public,162.14267999999998,TJ,CH4,3.9,kg/TJ,632.3564519999999,kg +a80bc81f-0f60-3213-ab6a-04ff908d34cd,SESCO,II.1.1,Jujuy,AR-Y,annual,2016,gas oil combustion consumption by to the public,162.14267999999998,TJ,N2O,3.9,kg/TJ,632.3564519999999,kg +bd8cbd1e-3e5e-3f6d-84c4-8979fd197822,SESCO,II.1.1,La Pampa,AR-L,annual,2016,gas oil combustion consumption by to the public,421.70099999999996,TJ,CO2,74100.0,kg/TJ,31248044.099999998,kg +25b77df6-edfb-339e-b9cf-b08087b2c582,SESCO,II.1.1,La Pampa,AR-L,annual,2016,gas oil combustion consumption by to the public,421.70099999999996,TJ,CH4,3.9,kg/TJ,1644.6338999999998,kg +25b77df6-edfb-339e-b9cf-b08087b2c582,SESCO,II.1.1,La Pampa,AR-L,annual,2016,gas oil combustion consumption by to the public,421.70099999999996,TJ,N2O,3.9,kg/TJ,1644.6338999999998,kg +da251be7-dc3c-3c49-8b79-d6f4814b75a1,SESCO,II.1.1,La Rioja,AR-F,annual,2016,gas oil combustion consumption by to the public,68.23067999999999,TJ,CO2,74100.0,kg/TJ,5055893.387999999,kg +a84d1121-033d-35be-9517-3166c9b5ef1f,SESCO,II.1.1,La Rioja,AR-F,annual,2016,gas oil combustion consumption by to the public,68.23067999999999,TJ,CH4,3.9,kg/TJ,266.099652,kg +a84d1121-033d-35be-9517-3166c9b5ef1f,SESCO,II.1.1,La Rioja,AR-F,annual,2016,gas oil combustion consumption by to the public,68.23067999999999,TJ,N2O,3.9,kg/TJ,266.099652,kg +180d8f8a-8e90-32c4-8574-8e43f8ea9009,SESCO,II.1.1,Mendoza,AR-M,annual,2016,gas oil combustion consumption by to the public,446.29872,TJ,CO2,74100.0,kg/TJ,33070735.152,kg +67343848-814f-3b15-9f54-c2609c71fb79,SESCO,II.1.1,Mendoza,AR-M,annual,2016,gas oil combustion consumption by to the public,446.29872,TJ,CH4,3.9,kg/TJ,1740.565008,kg +67343848-814f-3b15-9f54-c2609c71fb79,SESCO,II.1.1,Mendoza,AR-M,annual,2016,gas oil combustion consumption by to the public,446.29872,TJ,N2O,3.9,kg/TJ,1740.565008,kg +6d968a9a-ee8b-32d5-acdd-c68fcaf53316,SESCO,II.1.1,Misiones,AR-N,annual,2016,gas oil combustion consumption by to the public,618.48276,TJ,CO2,74100.0,kg/TJ,45829572.515999995,kg +94feb594-7312-311b-8cef-3ccbb8af505e,SESCO,II.1.1,Misiones,AR-N,annual,2016,gas oil combustion consumption by to the public,618.48276,TJ,CH4,3.9,kg/TJ,2412.0827639999998,kg +94feb594-7312-311b-8cef-3ccbb8af505e,SESCO,II.1.1,Misiones,AR-N,annual,2016,gas oil combustion consumption by to the public,618.48276,TJ,N2O,3.9,kg/TJ,2412.0827639999998,kg +9d9558fd-a041-3e7d-9097-6c593fa69c35,SESCO,II.1.1,Neuquén,AR-Q,annual,2016,gas oil combustion consumption by to the public,102.039,TJ,CO2,74100.0,kg/TJ,7561089.9,kg +865c97ec-1f13-304c-9f1f-e37dc4130ee3,SESCO,II.1.1,Neuquén,AR-Q,annual,2016,gas oil combustion consumption by to the public,102.039,TJ,CH4,3.9,kg/TJ,397.9521,kg +865c97ec-1f13-304c-9f1f-e37dc4130ee3,SESCO,II.1.1,Neuquén,AR-Q,annual,2016,gas oil combustion consumption by to the public,102.039,TJ,N2O,3.9,kg/TJ,397.9521,kg +275d2c95-cb20-3d51-b5c4-5c7225fb173f,SESCO,II.1.1,Rio Negro,AR-R,annual,2016,gas oil combustion consumption by to the public,503.40443999999997,TJ,CO2,74100.0,kg/TJ,37302269.004,kg +7799b286-4fbe-3c14-905e-6666af02ab73,SESCO,II.1.1,Rio Negro,AR-R,annual,2016,gas oil combustion consumption by to the public,503.40443999999997,TJ,CH4,3.9,kg/TJ,1963.277316,kg +7799b286-4fbe-3c14-905e-6666af02ab73,SESCO,II.1.1,Rio Negro,AR-R,annual,2016,gas oil combustion consumption by to the public,503.40443999999997,TJ,N2O,3.9,kg/TJ,1963.277316,kg +3feebf5d-0d20-3b25-91b7-ed547f36d03e,SESCO,II.1.1,Salta,AR-A,annual,2016,gas oil combustion consumption by to the public,36.91464,TJ,CO2,74100.0,kg/TJ,2735374.824,kg +07d81ac5-b5f1-3252-9d5b-d499af4d7f22,SESCO,II.1.1,Salta,AR-A,annual,2016,gas oil combustion consumption by to the public,36.91464,TJ,CH4,3.9,kg/TJ,143.967096,kg +07d81ac5-b5f1-3252-9d5b-d499af4d7f22,SESCO,II.1.1,Salta,AR-A,annual,2016,gas oil combustion consumption by to the public,36.91464,TJ,N2O,3.9,kg/TJ,143.967096,kg +b58c61f8-253b-361d-bac4-842d3ac401b7,SESCO,II.1.1,San Juan,AR-J,annual,2016,gas oil combustion consumption by to the public,312.2574,TJ,CO2,74100.0,kg/TJ,23138273.34,kg +716655f6-2084-3c44-b135-58a7d0076fd0,SESCO,II.1.1,San Juan,AR-J,annual,2016,gas oil combustion consumption by to the public,312.2574,TJ,CH4,3.9,kg/TJ,1217.80386,kg +716655f6-2084-3c44-b135-58a7d0076fd0,SESCO,II.1.1,San Juan,AR-J,annual,2016,gas oil combustion consumption by to the public,312.2574,TJ,N2O,3.9,kg/TJ,1217.80386,kg +85060dd8-6043-3d7a-9910-d84a38dbb512,SESCO,II.1.1,San Luis,AR-D,annual,2016,gas oil combustion consumption by to the public,666.81132,TJ,CO2,74100.0,kg/TJ,49410718.812,kg +02b140a3-fe3a-3c8e-92a3-ed90f4ce9579,SESCO,II.1.1,San Luis,AR-D,annual,2016,gas oil combustion consumption by to the public,666.81132,TJ,CH4,3.9,kg/TJ,2600.564148,kg +02b140a3-fe3a-3c8e-92a3-ed90f4ce9579,SESCO,II.1.1,San Luis,AR-D,annual,2016,gas oil combustion consumption by to the public,666.81132,TJ,N2O,3.9,kg/TJ,2600.564148,kg +3bcaafff-a600-3e1d-a542-684caf68ccf9,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2016,gas oil combustion consumption by to the public,47.71452,TJ,CO2,74100.0,kg/TJ,3535645.932,kg +1b17f1e4-e912-319d-8872-161f3eae86cc,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2016,gas oil combustion consumption by to the public,47.71452,TJ,CH4,3.9,kg/TJ,186.086628,kg +1b17f1e4-e912-319d-8872-161f3eae86cc,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2016,gas oil combustion consumption by to the public,47.71452,TJ,N2O,3.9,kg/TJ,186.086628,kg +b531b28d-337e-3e7e-9c34-e0edada6cebd,SESCO,II.1.1,Santa Fe,AR-S,annual,2016,gas oil combustion consumption by to the public,3143.5236,TJ,CO2,74100.0,kg/TJ,232935098.76,kg +7cb9f88a-dc4e-3474-a4e2-d005ef77b898,SESCO,II.1.1,Santa Fe,AR-S,annual,2016,gas oil combustion consumption by to the public,3143.5236,TJ,CH4,3.9,kg/TJ,12259.74204,kg +7cb9f88a-dc4e-3474-a4e2-d005ef77b898,SESCO,II.1.1,Santa Fe,AR-S,annual,2016,gas oil combustion consumption by to the public,3143.5236,TJ,N2O,3.9,kg/TJ,12259.74204,kg +0401a3f6-baba-3080-b6c4-7e7545c1d3cd,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2016,gas oil combustion consumption by to the public,501.16499999999996,TJ,CO2,74100.0,kg/TJ,37136326.5,kg +7a78aef4-4b9d-3e90-bfb4-4cd2a530c159,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2016,gas oil combustion consumption by to the public,501.16499999999996,TJ,CH4,3.9,kg/TJ,1954.5434999999998,kg +7a78aef4-4b9d-3e90-bfb4-4cd2a530c159,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2016,gas oil combustion consumption by to the public,501.16499999999996,TJ,N2O,3.9,kg/TJ,1954.5434999999998,kg +82061c3b-5695-3725-b640-63b4f9280e8b,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2016,gas oil combustion consumption by to the public,109.22688,TJ,CO2,74100.0,kg/TJ,8093711.807999999,kg +86ee8bf5-0563-3c23-8bb1-53e673f660a4,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2016,gas oil combustion consumption by to the public,109.22688,TJ,CH4,3.9,kg/TJ,425.984832,kg +86ee8bf5-0563-3c23-8bb1-53e673f660a4,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2016,gas oil combustion consumption by to the public,109.22688,TJ,N2O,3.9,kg/TJ,425.984832,kg +7a8fd617-c2f3-3dd4-ba62-85ae02dda46c,SESCO,II.1.1,Tucuman,AR-T,annual,2016,gas oil combustion consumption by to the public,192.55572,TJ,CO2,74100.0,kg/TJ,14268378.852,kg +afcd85e6-cf7c-3468-af05-fd8672b9c9d9,SESCO,II.1.1,Tucuman,AR-T,annual,2016,gas oil combustion consumption by to the public,192.55572,TJ,CH4,3.9,kg/TJ,750.967308,kg +afcd85e6-cf7c-3468-af05-fd8672b9c9d9,SESCO,II.1.1,Tucuman,AR-T,annual,2016,gas oil combustion consumption by to the public,192.55572,TJ,N2O,3.9,kg/TJ,750.967308,kg +fdca5ee0-048f-353d-a678-a1d704c3dcca,SESCO,II.1.1,Buenos Aires,AR-B,annual,2016,gas oil combustion consumption by to the public,3277.67328,TJ,CO2,74100.0,kg/TJ,242875590.048,kg +c451ae2b-aff0-3859-9119-cbc1e125b111,SESCO,II.1.1,Buenos Aires,AR-B,annual,2016,gas oil combustion consumption by to the public,3277.67328,TJ,CH4,3.9,kg/TJ,12782.925792,kg +c451ae2b-aff0-3859-9119-cbc1e125b111,SESCO,II.1.1,Buenos Aires,AR-B,annual,2016,gas oil combustion consumption by to the public,3277.67328,TJ,N2O,3.9,kg/TJ,12782.925792,kg +77cd1e89-f7c9-352c-9401-e011cc16b9fd,SESCO,II.1.1,Capital Federal,AR-C,annual,2016,gas oil combustion consumption by to the public,643.3694399999999,TJ,CO2,74100.0,kg/TJ,47673675.50399999,kg +6d104b8e-6f2b-377f-81a1-ff266ff7fb54,SESCO,II.1.1,Capital Federal,AR-C,annual,2016,gas oil combustion consumption by to the public,643.3694399999999,TJ,CH4,3.9,kg/TJ,2509.1408159999996,kg +6d104b8e-6f2b-377f-81a1-ff266ff7fb54,SESCO,II.1.1,Capital Federal,AR-C,annual,2016,gas oil combustion consumption by to the public,643.3694399999999,TJ,N2O,3.9,kg/TJ,2509.1408159999996,kg +40d239f2-a651-33d3-9210-b0803a2e0ee7,SESCO,II.1.1,Catamarca,AR-K,annual,2016,gas oil combustion consumption by to the public,147.7308,TJ,CO2,74100.0,kg/TJ,10946852.28,kg +5af0bd04-c4a4-3bc3-9a02-7bef6ced21fd,SESCO,II.1.1,Catamarca,AR-K,annual,2016,gas oil combustion consumption by to the public,147.7308,TJ,CH4,3.9,kg/TJ,576.1501199999999,kg +5af0bd04-c4a4-3bc3-9a02-7bef6ced21fd,SESCO,II.1.1,Catamarca,AR-K,annual,2016,gas oil combustion consumption by to the public,147.7308,TJ,N2O,3.9,kg/TJ,576.1501199999999,kg +02a2637a-d388-39b2-ad2c-f02641f71f3d,SESCO,II.1.1,Chaco,AR-H,annual,2016,gas oil combustion consumption by to the public,109.87704,TJ,CO2,74100.0,kg/TJ,8141888.664,kg +239a824c-d10d-3c1d-b9ae-bf72411487e3,SESCO,II.1.1,Chaco,AR-H,annual,2016,gas oil combustion consumption by to the public,109.87704,TJ,CH4,3.9,kg/TJ,428.52045599999997,kg +239a824c-d10d-3c1d-b9ae-bf72411487e3,SESCO,II.1.1,Chaco,AR-H,annual,2016,gas oil combustion consumption by to the public,109.87704,TJ,N2O,3.9,kg/TJ,428.52045599999997,kg +e845689c-eac4-31aa-979a-d317e4986566,SESCO,II.1.1,Chubut,AR-U,annual,2016,gas oil combustion consumption by to the public,136.96704,TJ,CO2,74100.0,kg/TJ,10149257.663999999,kg +a5ed652d-de75-3c1c-974e-e8610e1dd3e7,SESCO,II.1.1,Chubut,AR-U,annual,2016,gas oil combustion consumption by to the public,136.96704,TJ,CH4,3.9,kg/TJ,534.1714559999999,kg +a5ed652d-de75-3c1c-974e-e8610e1dd3e7,SESCO,II.1.1,Chubut,AR-U,annual,2016,gas oil combustion consumption by to the public,136.96704,TJ,N2O,3.9,kg/TJ,534.1714559999999,kg +e83b3ddf-51a6-3e4e-a5b5-bd0980938bcc,SESCO,II.1.1,Corrientes,AR-W,annual,2016,gas oil combustion consumption by to the public,197.82924,TJ,CO2,74100.0,kg/TJ,14659146.684,kg +62ce2849-7726-3dd8-89b3-f4a216b9632c,SESCO,II.1.1,Corrientes,AR-W,annual,2016,gas oil combustion consumption by to the public,197.82924,TJ,CH4,3.9,kg/TJ,771.534036,kg +62ce2849-7726-3dd8-89b3-f4a216b9632c,SESCO,II.1.1,Corrientes,AR-W,annual,2016,gas oil combustion consumption by to the public,197.82924,TJ,N2O,3.9,kg/TJ,771.534036,kg +43156f7c-e2fe-38d1-95ec-d2d47a9db45e,SESCO,II.1.1,Córdoba,AR-X,annual,2016,gas oil combustion consumption by to the public,916.76172,TJ,CO2,74100.0,kg/TJ,67932043.45199999,kg +33ea0eaf-6f53-358f-a41b-2c696126c18a,SESCO,II.1.1,Córdoba,AR-X,annual,2016,gas oil combustion consumption by to the public,916.76172,TJ,CH4,3.9,kg/TJ,3575.370708,kg +33ea0eaf-6f53-358f-a41b-2c696126c18a,SESCO,II.1.1,Córdoba,AR-X,annual,2016,gas oil combustion consumption by to the public,916.76172,TJ,N2O,3.9,kg/TJ,3575.370708,kg +54888009-0341-38cb-8c62-1e7ca8af69c4,SESCO,II.1.1,Entre Rios,AR-E,annual,2016,gas oil combustion consumption by to the public,379.72956,TJ,CO2,74100.0,kg/TJ,28137960.395999998,kg +9d254427-d5a0-3769-a710-e66bee1a237e,SESCO,II.1.1,Entre Rios,AR-E,annual,2016,gas oil combustion consumption by to the public,379.72956,TJ,CH4,3.9,kg/TJ,1480.945284,kg +9d254427-d5a0-3769-a710-e66bee1a237e,SESCO,II.1.1,Entre Rios,AR-E,annual,2016,gas oil combustion consumption by to the public,379.72956,TJ,N2O,3.9,kg/TJ,1480.945284,kg +c4f312d5-33c9-3ba5-9246-ad5b85472796,SESCO,II.1.1,Formosa,AR-P,annual,2016,gas oil combustion consumption by to the public,231.27635999999998,TJ,CO2,74100.0,kg/TJ,17137578.276,kg +4d6ff0f8-f15a-3f06-9aba-84c80482321c,SESCO,II.1.1,Formosa,AR-P,annual,2016,gas oil combustion consumption by to the public,231.27635999999998,TJ,CH4,3.9,kg/TJ,901.9778039999999,kg +4d6ff0f8-f15a-3f06-9aba-84c80482321c,SESCO,II.1.1,Formosa,AR-P,annual,2016,gas oil combustion consumption by to the public,231.27635999999998,TJ,N2O,3.9,kg/TJ,901.9778039999999,kg +7fd29d66-fbcb-3f82-9c7e-a42157dab327,SESCO,II.1.1,Jujuy,AR-Y,annual,2016,gas oil combustion consumption by to the public,38.97348,TJ,CO2,74100.0,kg/TJ,2887934.8680000002,kg +ffcb4caf-54ae-35d1-8009-eab987a34a99,SESCO,II.1.1,Jujuy,AR-Y,annual,2016,gas oil combustion consumption by to the public,38.97348,TJ,CH4,3.9,kg/TJ,151.99657200000001,kg +ffcb4caf-54ae-35d1-8009-eab987a34a99,SESCO,II.1.1,Jujuy,AR-Y,annual,2016,gas oil combustion consumption by to the public,38.97348,TJ,N2O,3.9,kg/TJ,151.99657200000001,kg +8a7fe9b9-0e1d-3e0e-94b1-93523a96e448,SESCO,II.1.1,La Pampa,AR-L,annual,2016,gas oil combustion consumption by to the public,119.66556,TJ,CO2,74100.0,kg/TJ,8867217.996,kg +c3358c70-3a78-359a-aa25-ab0ad0f48032,SESCO,II.1.1,La Pampa,AR-L,annual,2016,gas oil combustion consumption by to the public,119.66556,TJ,CH4,3.9,kg/TJ,466.69568399999997,kg +c3358c70-3a78-359a-aa25-ab0ad0f48032,SESCO,II.1.1,La Pampa,AR-L,annual,2016,gas oil combustion consumption by to the public,119.66556,TJ,N2O,3.9,kg/TJ,466.69568399999997,kg +08906142-7b51-32d2-99b8-78e9a288b952,SESCO,II.1.1,La Rioja,AR-F,annual,2016,gas oil combustion consumption by to the public,41.42964,TJ,CO2,74100.0,kg/TJ,3069936.324,kg +ae4c2214-0c79-3902-bd5a-61dd3fdd97c2,SESCO,II.1.1,La Rioja,AR-F,annual,2016,gas oil combustion consumption by to the public,41.42964,TJ,CH4,3.9,kg/TJ,161.575596,kg +ae4c2214-0c79-3902-bd5a-61dd3fdd97c2,SESCO,II.1.1,La Rioja,AR-F,annual,2016,gas oil combustion consumption by to the public,41.42964,TJ,N2O,3.9,kg/TJ,161.575596,kg +4ad484d7-a982-3012-a47f-f086800f6d88,SESCO,II.1.1,Mendoza,AR-M,annual,2016,gas oil combustion consumption by to the public,219.50124,TJ,CO2,74100.0,kg/TJ,16265041.884,kg +107df4f3-c549-3157-b4fa-ccb7f241aa12,SESCO,II.1.1,Mendoza,AR-M,annual,2016,gas oil combustion consumption by to the public,219.50124,TJ,CH4,3.9,kg/TJ,856.0548359999999,kg +107df4f3-c549-3157-b4fa-ccb7f241aa12,SESCO,II.1.1,Mendoza,AR-M,annual,2016,gas oil combustion consumption by to the public,219.50124,TJ,N2O,3.9,kg/TJ,856.0548359999999,kg +46123862-bb8a-3955-a512-54b578362b3f,SESCO,II.1.1,Misiones,AR-N,annual,2016,gas oil combustion consumption by to the public,163.87644,TJ,CO2,74100.0,kg/TJ,12143244.204,kg +88bdc739-081e-346c-a4c6-0e91e4988faa,SESCO,II.1.1,Misiones,AR-N,annual,2016,gas oil combustion consumption by to the public,163.87644,TJ,CH4,3.9,kg/TJ,639.118116,kg +88bdc739-081e-346c-a4c6-0e91e4988faa,SESCO,II.1.1,Misiones,AR-N,annual,2016,gas oil combustion consumption by to the public,163.87644,TJ,N2O,3.9,kg/TJ,639.118116,kg +5e8ed78d-3bfc-3901-985c-ecf72d444b8c,SESCO,II.1.1,Neuquén,AR-Q,annual,2016,gas oil combustion consumption by to the public,122.88024,TJ,CO2,74100.0,kg/TJ,9105425.784,kg +873a7c14-efe2-3407-a5dd-681f1e9ad1ab,SESCO,II.1.1,Neuquén,AR-Q,annual,2016,gas oil combustion consumption by to the public,122.88024,TJ,CH4,3.9,kg/TJ,479.232936,kg +873a7c14-efe2-3407-a5dd-681f1e9ad1ab,SESCO,II.1.1,Neuquén,AR-Q,annual,2016,gas oil combustion consumption by to the public,122.88024,TJ,N2O,3.9,kg/TJ,479.232936,kg +d3c0588a-b395-3a18-8a3f-67802c82f4d2,SESCO,II.1.1,Rio Negro,AR-R,annual,2016,gas oil combustion consumption by to the public,236.9472,TJ,CO2,74100.0,kg/TJ,17557787.52,kg +5e92b6d0-b045-3ae8-abb5-5b4c3f330188,SESCO,II.1.1,Rio Negro,AR-R,annual,2016,gas oil combustion consumption by to the public,236.9472,TJ,CH4,3.9,kg/TJ,924.09408,kg +5e92b6d0-b045-3ae8-abb5-5b4c3f330188,SESCO,II.1.1,Rio Negro,AR-R,annual,2016,gas oil combustion consumption by to the public,236.9472,TJ,N2O,3.9,kg/TJ,924.09408,kg +f9a21c4f-1973-3a93-933b-9965b5f22fed,SESCO,II.1.1,Salta,AR-A,annual,2016,gas oil combustion consumption by to the public,24.09204,TJ,CO2,74100.0,kg/TJ,1785220.164,kg +aab86220-b2f7-3348-80c3-7794c841282f,SESCO,II.1.1,Salta,AR-A,annual,2016,gas oil combustion consumption by to the public,24.09204,TJ,CH4,3.9,kg/TJ,93.958956,kg +aab86220-b2f7-3348-80c3-7794c841282f,SESCO,II.1.1,Salta,AR-A,annual,2016,gas oil combustion consumption by to the public,24.09204,TJ,N2O,3.9,kg/TJ,93.958956,kg +745e85fa-7d31-3249-b511-f702ce19d861,SESCO,II.1.1,San Juan,AR-J,annual,2016,gas oil combustion consumption by to the public,76.5744,TJ,CO2,74100.0,kg/TJ,5674163.04,kg +db38b340-d95b-3a13-ac22-7135d339267e,SESCO,II.1.1,San Juan,AR-J,annual,2016,gas oil combustion consumption by to the public,76.5744,TJ,CH4,3.9,kg/TJ,298.64016,kg +db38b340-d95b-3a13-ac22-7135d339267e,SESCO,II.1.1,San Juan,AR-J,annual,2016,gas oil combustion consumption by to the public,76.5744,TJ,N2O,3.9,kg/TJ,298.64016,kg +5061d8dc-6aa6-375e-879b-525405b8cc27,SESCO,II.1.1,San Luis,AR-D,annual,2016,gas oil combustion consumption by to the public,153.54612,TJ,CO2,74100.0,kg/TJ,11377767.492,kg +a36f0181-a738-3020-9c08-87d487a88ce3,SESCO,II.1.1,San Luis,AR-D,annual,2016,gas oil combustion consumption by to the public,153.54612,TJ,CH4,3.9,kg/TJ,598.829868,kg +a36f0181-a738-3020-9c08-87d487a88ce3,SESCO,II.1.1,San Luis,AR-D,annual,2016,gas oil combustion consumption by to the public,153.54612,TJ,N2O,3.9,kg/TJ,598.829868,kg +3bcaafff-a600-3e1d-a542-684caf68ccf9,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2016,gas oil combustion consumption by to the public,47.71452,TJ,CO2,74100.0,kg/TJ,3535645.932,kg +1b17f1e4-e912-319d-8872-161f3eae86cc,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2016,gas oil combustion consumption by to the public,47.71452,TJ,CH4,3.9,kg/TJ,186.086628,kg +1b17f1e4-e912-319d-8872-161f3eae86cc,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2016,gas oil combustion consumption by to the public,47.71452,TJ,N2O,3.9,kg/TJ,186.086628,kg +c09b7d1b-bb70-3a94-966a-a21f8b7954e8,SESCO,II.1.1,Santa Fe,AR-S,annual,2016,gas oil combustion consumption by to the public,839.93448,TJ,CO2,74100.0,kg/TJ,62239144.968,kg +ccf7ad4e-a428-36c8-ab6a-4135b844c3b8,SESCO,II.1.1,Santa Fe,AR-S,annual,2016,gas oil combustion consumption by to the public,839.93448,TJ,CH4,3.9,kg/TJ,3275.744472,kg +ccf7ad4e-a428-36c8-ab6a-4135b844c3b8,SESCO,II.1.1,Santa Fe,AR-S,annual,2016,gas oil combustion consumption by to the public,839.93448,TJ,N2O,3.9,kg/TJ,3275.744472,kg +75894ffb-e04a-3fa7-b634-7e7387e15f21,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2016,gas oil combustion consumption by to the public,151.05384,TJ,CO2,74100.0,kg/TJ,11193089.544,kg +5d95640d-83bf-3ce0-a32f-b7821191fd13,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2016,gas oil combustion consumption by to the public,151.05384,TJ,CH4,3.9,kg/TJ,589.1099760000001,kg +5d95640d-83bf-3ce0-a32f-b7821191fd13,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2016,gas oil combustion consumption by to the public,151.05384,TJ,N2O,3.9,kg/TJ,589.1099760000001,kg +41d78c1a-02fc-33f0-8702-5693f3e192e8,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2016,gas oil combustion consumption by to the public,81.52284,TJ,CO2,74100.0,kg/TJ,6040842.444,kg +ce8d72b6-536d-3e79-ba86-fb372cb81d42,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2016,gas oil combustion consumption by to the public,81.52284,TJ,CH4,3.9,kg/TJ,317.939076,kg +ce8d72b6-536d-3e79-ba86-fb372cb81d42,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2016,gas oil combustion consumption by to the public,81.52284,TJ,N2O,3.9,kg/TJ,317.939076,kg +3c6da6fd-232c-3629-9287-aac452c5573b,SESCO,II.1.1,Tucuman,AR-T,annual,2016,gas oil combustion consumption by to the public,35.5782,TJ,CO2,74100.0,kg/TJ,2636344.62,kg +634beb42-06e6-3076-a6bf-a44539daf344,SESCO,II.1.1,Tucuman,AR-T,annual,2016,gas oil combustion consumption by to the public,35.5782,TJ,CH4,3.9,kg/TJ,138.75498000000002,kg +634beb42-06e6-3076-a6bf-a44539daf344,SESCO,II.1.1,Tucuman,AR-T,annual,2016,gas oil combustion consumption by to the public,35.5782,TJ,N2O,3.9,kg/TJ,138.75498000000002,kg +38672ff6-2fe6-3fbf-a7de-497cc11d9683,SESCO,II.1.1,Buenos Aires,AR-B,annual,2016,jet kerosene combustion consumption by to the public,11.008549999999998,TJ,CO2,71500.0,kg/TJ,787111.3249999998,kg +1712d099-8927-37cf-bae4-d984429aae7c,SESCO,II.1.1,Buenos Aires,AR-B,annual,2016,jet kerosene combustion consumption by to the public,11.008549999999998,TJ,CH4,0.5,kg/TJ,5.504274999999999,kg +f3246bb7-85ba-391e-9680-3006622bc565,SESCO,II.1.1,Buenos Aires,AR-B,annual,2016,jet kerosene combustion consumption by to the public,11.008549999999998,TJ,N2O,2.0,kg/TJ,22.017099999999996,kg +ef2334e7-72d0-397c-b18f-cc1b6544bf4a,SESCO,II.1.1,Córdoba,AR-X,annual,2016,jet kerosene combustion consumption by to the public,6.007522999999999,TJ,CO2,71500.0,kg/TJ,429537.89449999994,kg +12a6265e-981a-3d99-9072-c3cdd5f00bb3,SESCO,II.1.1,Córdoba,AR-X,annual,2016,jet kerosene combustion consumption by to the public,6.007522999999999,TJ,CH4,0.5,kg/TJ,3.0037614999999995,kg +7ba70488-7bd2-3b63-b029-11a09533dd7b,SESCO,II.1.1,Córdoba,AR-X,annual,2016,jet kerosene combustion consumption by to the public,6.007522999999999,TJ,N2O,2.0,kg/TJ,12.015045999999998,kg +64f3a691-d917-3052-a982-19448a56182e,SESCO,II.1.1,Entre Rios,AR-E,annual,2016,jet kerosene combustion consumption by to the public,2.6420519999999996,TJ,CO2,71500.0,kg/TJ,188906.71799999996,kg +436a2017-b30c-3d57-96ea-90efd2ed7699,SESCO,II.1.1,Entre Rios,AR-E,annual,2016,jet kerosene combustion consumption by to the public,2.6420519999999996,TJ,CH4,0.5,kg/TJ,1.3210259999999998,kg +5d683240-796b-39b8-bacd-18fc20cca008,SESCO,II.1.1,Entre Rios,AR-E,annual,2016,jet kerosene combustion consumption by to the public,2.6420519999999996,TJ,N2O,2.0,kg/TJ,5.284103999999999,kg +4bdab40e-68cd-3f23-98e5-51405a639762,SESCO,II.1.1,Misiones,AR-N,annual,2016,jet kerosene combustion consumption by to the public,0.5976069999999999,TJ,CO2,71500.0,kg/TJ,42728.90049999999,kg +ffe8e5bd-3043-325a-979f-a5fc1bdd4150,SESCO,II.1.1,Misiones,AR-N,annual,2016,jet kerosene combustion consumption by to the public,0.5976069999999999,TJ,CH4,0.5,kg/TJ,0.29880349999999994,kg +2b708ed9-77b1-3eea-8e8d-394fe22bb9df,SESCO,II.1.1,Misiones,AR-N,annual,2016,jet kerosene combustion consumption by to the public,0.5976069999999999,TJ,N2O,2.0,kg/TJ,1.1952139999999998,kg +c6a4a720-803b-3a3c-bdb1-509bc640aea4,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2016,jet kerosene combustion consumption by to the public,1.4468379999999998,TJ,CO2,71500.0,kg/TJ,103448.91699999999,kg +cd5c740d-03a9-3d9e-8924-a161b1fa3e84,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2016,jet kerosene combustion consumption by to the public,1.4468379999999998,TJ,CH4,0.5,kg/TJ,0.7234189999999999,kg +6f091618-6ebf-3b4d-ae15-df6722ca53b1,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2016,jet kerosene combustion consumption by to the public,1.4468379999999998,TJ,N2O,2.0,kg/TJ,2.8936759999999997,kg +36210880-9dd8-3d61-a231-0b6f9974aa20,SESCO,II.1.1,Santa Fe,AR-S,annual,2016,jet kerosene combustion consumption by to the public,5.158291999999999,TJ,CO2,71500.0,kg/TJ,368817.87799999997,kg +c462cfd9-856c-3b23-a23b-0b198c70e9c9,SESCO,II.1.1,Santa Fe,AR-S,annual,2016,jet kerosene combustion consumption by to the public,5.158291999999999,TJ,CH4,0.5,kg/TJ,2.5791459999999997,kg +f23df2c5-7350-3534-8970-d7b8db248144,SESCO,II.1.1,Santa Fe,AR-S,annual,2016,jet kerosene combustion consumption by to the public,5.158291999999999,TJ,N2O,2.0,kg/TJ,10.316583999999999,kg +67776745-117d-36bb-8a97-0c0d6922fc37,SESCO,I.3.1,Buenos Aires,AR-B,annual,2016,gasoline combustion consumption by petrochemical industries,19.5363,TJ,CO2,69300.0,kg/TJ,1353865.59,kg +3666f79b-858d-3129-aa7c-40da151e7e34,SESCO,I.3.1,Buenos Aires,AR-B,annual,2016,gasoline combustion consumption by petrochemical industries,19.5363,TJ,CH4,33.0,kg/TJ,644.6979,kg +2989b76b-6ecb-3ae9-90d5-834a61fc3c60,SESCO,I.3.1,Buenos Aires,AR-B,annual,2016,gasoline combustion consumption by petrochemical industries,19.5363,TJ,N2O,3.2,kg/TJ,62.516160000000006,kg +8f3b02dd-0595-3f60-a26c-55b34fc2123f,SESCO,I.3.1,Buenos Aires,AR-B,annual,2016,gas oil combustion consumption by petrochemical industries,9.31896,TJ,CO2,74100.0,kg/TJ,690534.936,kg +3794399e-6ded-3792-940e-aabb96924cb9,SESCO,I.3.1,Buenos Aires,AR-B,annual,2016,gas oil combustion consumption by petrochemical industries,9.31896,TJ,CH4,3.9,kg/TJ,36.343944,kg +3794399e-6ded-3792-940e-aabb96924cb9,SESCO,I.3.1,Buenos Aires,AR-B,annual,2016,gas oil combustion consumption by petrochemical industries,9.31896,TJ,N2O,3.9,kg/TJ,36.343944,kg +9c8989c5-eb6b-3868-b307-2149eca7b4c9,SESCO,I.3.1,San Luis,AR-D,annual,2016,gas oil combustion consumption by petrochemical industries,2.6367599999999998,TJ,CO2,74100.0,kg/TJ,195383.916,kg +84444cc8-395d-3676-a54b-4605446029a4,SESCO,I.3.1,San Luis,AR-D,annual,2016,gas oil combustion consumption by petrochemical industries,2.6367599999999998,TJ,CH4,3.9,kg/TJ,10.283363999999999,kg +84444cc8-395d-3676-a54b-4605446029a4,SESCO,I.3.1,San Luis,AR-D,annual,2016,gas oil combustion consumption by petrochemical industries,2.6367599999999998,TJ,N2O,3.9,kg/TJ,10.283363999999999,kg +7d183e71-c8a5-335a-a432-eb308d7e3778,SESCO,I.3.1,Capital Federal,AR-C,annual,2016,jet kerosene combustion consumption by petrochemical industries,2.7993169999999994,TJ,CO2,71500.0,kg/TJ,200151.16549999994,kg +b4194c9a-199e-3d7d-944b-e503ae9c8d59,SESCO,I.3.1,Capital Federal,AR-C,annual,2016,jet kerosene combustion consumption by petrochemical industries,2.7993169999999994,TJ,CH4,0.5,kg/TJ,1.3996584999999997,kg +3e8646a2-d506-3c8c-932b-d7ec84ac8e99,SESCO,I.3.1,Capital Federal,AR-C,annual,2016,jet kerosene combustion consumption by petrochemical industries,2.7993169999999994,TJ,N2O,2.0,kg/TJ,5.598633999999999,kg +40598967-2299-3ec5-86b0-bcbbc29b45c4,SESCO,II.2.1,Buenos Aires,AR-B,annual,2016,gas oil combustion consumption by railway transport,27.05388,TJ,CO2,74100.0,kg/TJ,2004692.508,kg +846a650b-3fd4-3993-bf67-c045593b5e7a,SESCO,II.2.1,Buenos Aires,AR-B,annual,2016,gas oil combustion consumption by railway transport,27.05388,TJ,CH4,3.9,kg/TJ,105.510132,kg +846a650b-3fd4-3993-bf67-c045593b5e7a,SESCO,II.2.1,Buenos Aires,AR-B,annual,2016,gas oil combustion consumption by railway transport,27.05388,TJ,N2O,3.9,kg/TJ,105.510132,kg +d950a83e-4fda-3e89-94bf-4e806d6f5273,SESCO,II.2.1,La Pampa,AR-L,annual,2016,gas oil combustion consumption by railway transport,5.20128,TJ,CO2,74100.0,kg/TJ,385414.848,kg +7a28ed90-e260-39b5-a28f-6ab25e36abb7,SESCO,II.2.1,La Pampa,AR-L,annual,2016,gas oil combustion consumption by railway transport,5.20128,TJ,CH4,3.9,kg/TJ,20.284992,kg +7a28ed90-e260-39b5-a28f-6ab25e36abb7,SESCO,II.2.1,La Pampa,AR-L,annual,2016,gas oil combustion consumption by railway transport,5.20128,TJ,N2O,3.9,kg/TJ,20.284992,kg +0b448b50-047a-3f1a-84da-e185ceb3fd47,SESCO,II.2.1,Santa Fe,AR-S,annual,2016,gas oil combustion consumption by railway transport,31.93008,TJ,CO2,74100.0,kg/TJ,2366018.928,kg +2d48a9fb-d025-3bd4-b27f-f584037df6a8,SESCO,II.2.1,Santa Fe,AR-S,annual,2016,gas oil combustion consumption by railway transport,31.93008,TJ,CH4,3.9,kg/TJ,124.527312,kg +2d48a9fb-d025-3bd4-b27f-f584037df6a8,SESCO,II.2.1,Santa Fe,AR-S,annual,2016,gas oil combustion consumption by railway transport,31.93008,TJ,N2O,3.9,kg/TJ,124.527312,kg +e21833d2-fd98-3f84-be7c-a5cc1064a013,SESCO,II.2.1,Santiago del Estero,AR-G,annual,2016,gas oil combustion consumption by railway transport,2.60064,TJ,CO2,74100.0,kg/TJ,192707.424,kg +713b80d2-506d-3a57-9c97-393491820477,SESCO,II.2.1,Santiago del Estero,AR-G,annual,2016,gas oil combustion consumption by railway transport,2.60064,TJ,CH4,3.9,kg/TJ,10.142496,kg +713b80d2-506d-3a57-9c97-393491820477,SESCO,II.2.1,Santiago del Estero,AR-G,annual,2016,gas oil combustion consumption by railway transport,2.60064,TJ,N2O,3.9,kg/TJ,10.142496,kg +1bc38164-ece8-3fd8-af8e-54a85306d657,SESCO,II.1.1,Buenos Aires,AR-B,annual,2016,gas oil combustion consumption by freight transport,1717.07256,TJ,CO2,74100.0,kg/TJ,127235076.69600001,kg +6ab98fb9-9a85-3595-b9c1-5922397be97b,SESCO,II.1.1,Buenos Aires,AR-B,annual,2016,gas oil combustion consumption by freight transport,1717.07256,TJ,CH4,3.9,kg/TJ,6696.582984,kg +6ab98fb9-9a85-3595-b9c1-5922397be97b,SESCO,II.1.1,Buenos Aires,AR-B,annual,2016,gas oil combustion consumption by freight transport,1717.07256,TJ,N2O,3.9,kg/TJ,6696.582984,kg +413c19e1-ec1a-35c1-b710-c59127294c04,SESCO,II.1.1,Capital Federal,AR-C,annual,2016,gas oil combustion consumption by freight transport,235.64687999999998,TJ,CO2,74100.0,kg/TJ,17461433.808,kg +62bc3bb9-637e-33dd-a992-63f06dac7363,SESCO,II.1.1,Capital Federal,AR-C,annual,2016,gas oil combustion consumption by freight transport,235.64687999999998,TJ,CH4,3.9,kg/TJ,919.0228319999999,kg +62bc3bb9-637e-33dd-a992-63f06dac7363,SESCO,II.1.1,Capital Federal,AR-C,annual,2016,gas oil combustion consumption by freight transport,235.64687999999998,TJ,N2O,3.9,kg/TJ,919.0228319999999,kg +2e65dd8c-191b-33e8-8bd1-9d9db0afe48c,SESCO,II.1.1,Catamarca,AR-K,annual,2016,gas oil combustion consumption by freight transport,38.14272,TJ,CO2,74100.0,kg/TJ,2826375.5519999997,kg +89a42ce3-1880-3924-b1d4-f5962fc3ae57,SESCO,II.1.1,Catamarca,AR-K,annual,2016,gas oil combustion consumption by freight transport,38.14272,TJ,CH4,3.9,kg/TJ,148.75660799999997,kg +89a42ce3-1880-3924-b1d4-f5962fc3ae57,SESCO,II.1.1,Catamarca,AR-K,annual,2016,gas oil combustion consumption by freight transport,38.14272,TJ,N2O,3.9,kg/TJ,148.75660799999997,kg +0c54da9a-8bf7-34ea-9420-310fffb758b5,SESCO,II.1.1,Chaco,AR-H,annual,2016,gas oil combustion consumption by freight transport,21.20244,TJ,CO2,74100.0,kg/TJ,1571100.804,kg +2b33ad8a-64b2-38fd-b214-b6e5e8721302,SESCO,II.1.1,Chaco,AR-H,annual,2016,gas oil combustion consumption by freight transport,21.20244,TJ,CH4,3.9,kg/TJ,82.689516,kg +2b33ad8a-64b2-38fd-b214-b6e5e8721302,SESCO,II.1.1,Chaco,AR-H,annual,2016,gas oil combustion consumption by freight transport,21.20244,TJ,N2O,3.9,kg/TJ,82.689516,kg +448cb0d1-dfb9-36a9-a270-ac8a8d65560a,SESCO,II.1.1,Chubut,AR-U,annual,2016,gas oil combustion consumption by freight transport,19.1436,TJ,CO2,74100.0,kg/TJ,1418540.76,kg +5940314e-1012-32a2-9aa8-a80e9102bb3e,SESCO,II.1.1,Chubut,AR-U,annual,2016,gas oil combustion consumption by freight transport,19.1436,TJ,CH4,3.9,kg/TJ,74.66004,kg +5940314e-1012-32a2-9aa8-a80e9102bb3e,SESCO,II.1.1,Chubut,AR-U,annual,2016,gas oil combustion consumption by freight transport,19.1436,TJ,N2O,3.9,kg/TJ,74.66004,kg +d9332edc-f372-35ce-85f5-1c52e0def98a,SESCO,II.1.1,Corrientes,AR-W,annual,2016,gas oil combustion consumption by freight transport,74.66004,TJ,CO2,74100.0,kg/TJ,5532308.964,kg +512114df-4cd2-3f88-bd86-350659c04a45,SESCO,II.1.1,Corrientes,AR-W,annual,2016,gas oil combustion consumption by freight transport,74.66004,TJ,CH4,3.9,kg/TJ,291.174156,kg +512114df-4cd2-3f88-bd86-350659c04a45,SESCO,II.1.1,Corrientes,AR-W,annual,2016,gas oil combustion consumption by freight transport,74.66004,TJ,N2O,3.9,kg/TJ,291.174156,kg +750f2b19-59e1-3b2a-85dc-52306e077902,SESCO,II.1.1,Córdoba,AR-X,annual,2016,gas oil combustion consumption by freight transport,288.30984,TJ,CO2,74100.0,kg/TJ,21363759.144,kg +6807dd41-f2cd-3b6d-ad7a-71146b4e6320,SESCO,II.1.1,Córdoba,AR-X,annual,2016,gas oil combustion consumption by freight transport,288.30984,TJ,CH4,3.9,kg/TJ,1124.408376,kg +6807dd41-f2cd-3b6d-ad7a-71146b4e6320,SESCO,II.1.1,Córdoba,AR-X,annual,2016,gas oil combustion consumption by freight transport,288.30984,TJ,N2O,3.9,kg/TJ,1124.408376,kg +778a1a84-1ba0-3535-adab-ccd2ca861510,SESCO,II.1.1,Entre Rios,AR-E,annual,2016,gas oil combustion consumption by freight transport,130.06812,TJ,CO2,74100.0,kg/TJ,9638047.692,kg +a5c5329e-a694-3ea5-a0c4-7cd043da9dbf,SESCO,II.1.1,Entre Rios,AR-E,annual,2016,gas oil combustion consumption by freight transport,130.06812,TJ,CH4,3.9,kg/TJ,507.26566799999995,kg +a5c5329e-a694-3ea5-a0c4-7cd043da9dbf,SESCO,II.1.1,Entre Rios,AR-E,annual,2016,gas oil combustion consumption by freight transport,130.06812,TJ,N2O,3.9,kg/TJ,507.26566799999995,kg +ccff8922-dc61-360c-a83d-bce60e54ee31,SESCO,II.1.1,Formosa,AR-P,annual,2016,gas oil combustion consumption by freight transport,4.11768,TJ,CO2,74100.0,kg/TJ,305120.088,kg +f1362575-8411-311c-b647-c8be0ad34334,SESCO,II.1.1,Formosa,AR-P,annual,2016,gas oil combustion consumption by freight transport,4.11768,TJ,CH4,3.9,kg/TJ,16.058951999999998,kg +f1362575-8411-311c-b647-c8be0ad34334,SESCO,II.1.1,Formosa,AR-P,annual,2016,gas oil combustion consumption by freight transport,4.11768,TJ,N2O,3.9,kg/TJ,16.058951999999998,kg +71ad4d26-ecdd-30d8-a988-ee2472c8a846,SESCO,II.1.1,La Pampa,AR-L,annual,2016,gas oil combustion consumption by freight transport,22.43052,TJ,CO2,74100.0,kg/TJ,1662101.5320000001,kg +cb3af6a2-8335-3779-b6df-7870b29f6784,SESCO,II.1.1,La Pampa,AR-L,annual,2016,gas oil combustion consumption by freight transport,22.43052,TJ,CH4,3.9,kg/TJ,87.479028,kg +cb3af6a2-8335-3779-b6df-7870b29f6784,SESCO,II.1.1,La Pampa,AR-L,annual,2016,gas oil combustion consumption by freight transport,22.43052,TJ,N2O,3.9,kg/TJ,87.479028,kg +c6b7eb5d-0966-337f-a456-944f6e7dbbcd,SESCO,II.1.1,La Rioja,AR-F,annual,2016,gas oil combustion consumption by freight transport,1.5531599999999999,TJ,CO2,74100.0,kg/TJ,115089.15599999999,kg +95efcec2-a892-3636-813f-edc556a136ff,SESCO,II.1.1,La Rioja,AR-F,annual,2016,gas oil combustion consumption by freight transport,1.5531599999999999,TJ,CH4,3.9,kg/TJ,6.0573239999999995,kg +95efcec2-a892-3636-813f-edc556a136ff,SESCO,II.1.1,La Rioja,AR-F,annual,2016,gas oil combustion consumption by freight transport,1.5531599999999999,TJ,N2O,3.9,kg/TJ,6.0573239999999995,kg +1bd8dc5a-b4d0-3747-84e2-81bcaf31222b,SESCO,II.1.1,Mendoza,AR-M,annual,2016,gas oil combustion consumption by freight transport,26.187,TJ,CO2,74100.0,kg/TJ,1940456.7000000002,kg +4916cc34-6030-32df-8236-cb2e88235bbd,SESCO,II.1.1,Mendoza,AR-M,annual,2016,gas oil combustion consumption by freight transport,26.187,TJ,CH4,3.9,kg/TJ,102.1293,kg +4916cc34-6030-32df-8236-cb2e88235bbd,SESCO,II.1.1,Mendoza,AR-M,annual,2016,gas oil combustion consumption by freight transport,26.187,TJ,N2O,3.9,kg/TJ,102.1293,kg +7e631e93-6bea-3d0e-8a94-7722d48ae398,SESCO,II.1.1,Misiones,AR-N,annual,2016,gas oil combustion consumption by freight transport,27.48732,TJ,CO2,74100.0,kg/TJ,2036810.412,kg +ccc2d713-b12e-354e-af41-ee18a9039998,SESCO,II.1.1,Misiones,AR-N,annual,2016,gas oil combustion consumption by freight transport,27.48732,TJ,CH4,3.9,kg/TJ,107.200548,kg +ccc2d713-b12e-354e-af41-ee18a9039998,SESCO,II.1.1,Misiones,AR-N,annual,2016,gas oil combustion consumption by freight transport,27.48732,TJ,N2O,3.9,kg/TJ,107.200548,kg +8e1719d5-afad-395c-a11f-6b3fb8b1a13c,SESCO,II.1.1,Neuquén,AR-Q,annual,2016,gas oil combustion consumption by freight transport,0.32508,TJ,CO2,74100.0,kg/TJ,24088.428,kg +cd168156-5aa7-349b-99d4-b59f077ac82a,SESCO,II.1.1,Neuquén,AR-Q,annual,2016,gas oil combustion consumption by freight transport,0.32508,TJ,CH4,3.9,kg/TJ,1.267812,kg +cd168156-5aa7-349b-99d4-b59f077ac82a,SESCO,II.1.1,Neuquén,AR-Q,annual,2016,gas oil combustion consumption by freight transport,0.32508,TJ,N2O,3.9,kg/TJ,1.267812,kg +166f64bb-1656-3da4-bd42-b34966b51d7a,SESCO,II.1.1,Rio Negro,AR-R,annual,2016,gas oil combustion consumption by freight transport,86.18232,TJ,CO2,74100.0,kg/TJ,6386109.9120000005,kg +5c735a50-290c-36bf-beab-92ec68c51601,SESCO,II.1.1,Rio Negro,AR-R,annual,2016,gas oil combustion consumption by freight transport,86.18232,TJ,CH4,3.9,kg/TJ,336.111048,kg +5c735a50-290c-36bf-beab-92ec68c51601,SESCO,II.1.1,Rio Negro,AR-R,annual,2016,gas oil combustion consumption by freight transport,86.18232,TJ,N2O,3.9,kg/TJ,336.111048,kg +c925808b-5e63-3966-af86-469fe9504073,SESCO,II.1.1,Salta,AR-A,annual,2016,gas oil combustion consumption by freight transport,23.08068,TJ,CO2,74100.0,kg/TJ,1710278.388,kg +13e4bd10-7aa4-35d4-9e8c-6fdac63b824c,SESCO,II.1.1,Salta,AR-A,annual,2016,gas oil combustion consumption by freight transport,23.08068,TJ,CH4,3.9,kg/TJ,90.014652,kg +13e4bd10-7aa4-35d4-9e8c-6fdac63b824c,SESCO,II.1.1,Salta,AR-A,annual,2016,gas oil combustion consumption by freight transport,23.08068,TJ,N2O,3.9,kg/TJ,90.014652,kg +367a0d23-a029-3e90-ab1d-937dfaa980a9,SESCO,II.1.1,San Juan,AR-J,annual,2016,gas oil combustion consumption by freight transport,12.8226,TJ,CO2,74100.0,kg/TJ,950154.6599999999,kg +ef045d02-c2fb-384f-8927-d58c21b265e1,SESCO,II.1.1,San Juan,AR-J,annual,2016,gas oil combustion consumption by freight transport,12.8226,TJ,CH4,3.9,kg/TJ,50.00814,kg +ef045d02-c2fb-384f-8927-d58c21b265e1,SESCO,II.1.1,San Juan,AR-J,annual,2016,gas oil combustion consumption by freight transport,12.8226,TJ,N2O,3.9,kg/TJ,50.00814,kg +22422fbe-71e2-3780-b0e6-9a1a0029881d,SESCO,II.1.1,San Luis,AR-D,annual,2016,gas oil combustion consumption by freight transport,84.84588,TJ,CO2,74100.0,kg/TJ,6287079.708,kg +a631eff9-8971-3ded-b636-83450ef5147f,SESCO,II.1.1,San Luis,AR-D,annual,2016,gas oil combustion consumption by freight transport,84.84588,TJ,CH4,3.9,kg/TJ,330.89893199999995,kg +a631eff9-8971-3ded-b636-83450ef5147f,SESCO,II.1.1,San Luis,AR-D,annual,2016,gas oil combustion consumption by freight transport,84.84588,TJ,N2O,3.9,kg/TJ,330.89893199999995,kg +d697c3c9-f655-3d13-9423-8eb27b8e0cc3,SESCO,II.1.1,Santa Fe,AR-S,annual,2016,gas oil combustion consumption by freight transport,556.9704,TJ,CO2,74100.0,kg/TJ,41271506.64,kg +38645e12-803f-3523-884c-5472a88b508d,SESCO,II.1.1,Santa Fe,AR-S,annual,2016,gas oil combustion consumption by freight transport,556.9704,TJ,CH4,3.9,kg/TJ,2172.18456,kg +38645e12-803f-3523-884c-5472a88b508d,SESCO,II.1.1,Santa Fe,AR-S,annual,2016,gas oil combustion consumption by freight transport,556.9704,TJ,N2O,3.9,kg/TJ,2172.18456,kg +ebdb40e2-07cc-36b5-9a91-b65355083c1f,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2016,gas oil combustion consumption by freight transport,37.60092,TJ,CO2,74100.0,kg/TJ,2786228.1720000003,kg +765ee279-37e5-3712-958a-0b60bffb97c9,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2016,gas oil combustion consumption by freight transport,37.60092,TJ,CH4,3.9,kg/TJ,146.643588,kg +765ee279-37e5-3712-958a-0b60bffb97c9,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2016,gas oil combustion consumption by freight transport,37.60092,TJ,N2O,3.9,kg/TJ,146.643588,kg +531a02f9-53f1-3b75-bbb3-a3668a8ad0fb,SESCO,II.1.1,Tucuman,AR-T,annual,2016,gas oil combustion consumption by freight transport,46.08912,TJ,CO2,74100.0,kg/TJ,3415203.792,kg +60d130cc-116a-3dc8-9777-d2e6e5fa4e17,SESCO,II.1.1,Tucuman,AR-T,annual,2016,gas oil combustion consumption by freight transport,46.08912,TJ,CH4,3.9,kg/TJ,179.747568,kg +60d130cc-116a-3dc8-9777-d2e6e5fa4e17,SESCO,II.1.1,Tucuman,AR-T,annual,2016,gas oil combustion consumption by freight transport,46.08912,TJ,N2O,3.9,kg/TJ,179.747568,kg +82ccb204-0124-373f-b0a6-63e417bb38c6,SESCO,II.1.1,Buenos Aires,AR-B,annual,2016,gas oil combustion consumption by freight transport,65.5578,TJ,CO2,74100.0,kg/TJ,4857832.98,kg +99051b36-196b-3862-87fd-29a80007d464,SESCO,II.1.1,Buenos Aires,AR-B,annual,2016,gas oil combustion consumption by freight transport,65.5578,TJ,CH4,3.9,kg/TJ,255.67542,kg +99051b36-196b-3862-87fd-29a80007d464,SESCO,II.1.1,Buenos Aires,AR-B,annual,2016,gas oil combustion consumption by freight transport,65.5578,TJ,N2O,3.9,kg/TJ,255.67542,kg +70463576-b76b-3910-a612-9fefb7ac9905,SESCO,II.1.1,Capital Federal,AR-C,annual,2016,gas oil combustion consumption by freight transport,17.662679999999998,TJ,CO2,74100.0,kg/TJ,1308804.5879999998,kg +e0480165-60eb-395b-ac53-a6cd79e55071,SESCO,II.1.1,Capital Federal,AR-C,annual,2016,gas oil combustion consumption by freight transport,17.662679999999998,TJ,CH4,3.9,kg/TJ,68.884452,kg +e0480165-60eb-395b-ac53-a6cd79e55071,SESCO,II.1.1,Capital Federal,AR-C,annual,2016,gas oil combustion consumption by freight transport,17.662679999999998,TJ,N2O,3.9,kg/TJ,68.884452,kg +9e6bb34e-b818-3b6a-8c14-d80f8d52bdc5,SESCO,II.1.1,Catamarca,AR-K,annual,2016,gas oil combustion consumption by freight transport,0.28896,TJ,CO2,74100.0,kg/TJ,21411.935999999998,kg +2aeca832-1095-385a-8e32-082f13ecca68,SESCO,II.1.1,Catamarca,AR-K,annual,2016,gas oil combustion consumption by freight transport,0.28896,TJ,CH4,3.9,kg/TJ,1.126944,kg +2aeca832-1095-385a-8e32-082f13ecca68,SESCO,II.1.1,Catamarca,AR-K,annual,2016,gas oil combustion consumption by freight transport,0.28896,TJ,N2O,3.9,kg/TJ,1.126944,kg +67a60d13-020b-3323-ac21-2e3818aff67a,SESCO,II.1.1,Chaco,AR-H,annual,2016,gas oil combustion consumption by freight transport,1.15584,TJ,CO2,74100.0,kg/TJ,85647.74399999999,kg +cc3386e0-37ce-3ba8-964c-d99385034fb6,SESCO,II.1.1,Chaco,AR-H,annual,2016,gas oil combustion consumption by freight transport,1.15584,TJ,CH4,3.9,kg/TJ,4.507776,kg +cc3386e0-37ce-3ba8-964c-d99385034fb6,SESCO,II.1.1,Chaco,AR-H,annual,2016,gas oil combustion consumption by freight transport,1.15584,TJ,N2O,3.9,kg/TJ,4.507776,kg +3968bdb6-698a-3a3c-a398-1404b3d63786,SESCO,II.1.1,Chubut,AR-U,annual,2016,gas oil combustion consumption by freight transport,2.96184,TJ,CO2,74100.0,kg/TJ,219472.344,kg +ada6965d-fbf6-3ad3-8775-fd61f39b3377,SESCO,II.1.1,Chubut,AR-U,annual,2016,gas oil combustion consumption by freight transport,2.96184,TJ,CH4,3.9,kg/TJ,11.551176,kg +ada6965d-fbf6-3ad3-8775-fd61f39b3377,SESCO,II.1.1,Chubut,AR-U,annual,2016,gas oil combustion consumption by freight transport,2.96184,TJ,N2O,3.9,kg/TJ,11.551176,kg +4d7862dd-4989-3705-8eea-0695906cb013,SESCO,II.1.1,Corrientes,AR-W,annual,2016,gas oil combustion consumption by freight transport,3.28692,TJ,CO2,74100.0,kg/TJ,243560.772,kg +915894d3-0f20-346a-9fc5-ab5172fce7a9,SESCO,II.1.1,Corrientes,AR-W,annual,2016,gas oil combustion consumption by freight transport,3.28692,TJ,CH4,3.9,kg/TJ,12.818988,kg +915894d3-0f20-346a-9fc5-ab5172fce7a9,SESCO,II.1.1,Corrientes,AR-W,annual,2016,gas oil combustion consumption by freight transport,3.28692,TJ,N2O,3.9,kg/TJ,12.818988,kg +8b3198b0-61b7-37df-84e1-b552912121af,SESCO,II.1.1,Córdoba,AR-X,annual,2016,gas oil combustion consumption by freight transport,8.41596,TJ,CO2,74100.0,kg/TJ,623622.636,kg +76142f5a-1dde-3785-9766-e9ba0f1610ce,SESCO,II.1.1,Córdoba,AR-X,annual,2016,gas oil combustion consumption by freight transport,8.41596,TJ,CH4,3.9,kg/TJ,32.822244,kg +76142f5a-1dde-3785-9766-e9ba0f1610ce,SESCO,II.1.1,Córdoba,AR-X,annual,2016,gas oil combustion consumption by freight transport,8.41596,TJ,N2O,3.9,kg/TJ,32.822244,kg +8e4d4e30-7673-3731-8d36-3ffac7956cee,SESCO,II.1.1,Entre Rios,AR-E,annual,2016,gas oil combustion consumption by freight transport,3.64812,TJ,CO2,74100.0,kg/TJ,270325.692,kg +21ebb885-0617-3094-9839-cb4873b53117,SESCO,II.1.1,Entre Rios,AR-E,annual,2016,gas oil combustion consumption by freight transport,3.64812,TJ,CH4,3.9,kg/TJ,14.227668,kg +21ebb885-0617-3094-9839-cb4873b53117,SESCO,II.1.1,Entre Rios,AR-E,annual,2016,gas oil combustion consumption by freight transport,3.64812,TJ,N2O,3.9,kg/TJ,14.227668,kg +8bea11b5-260a-31e0-9b47-d09d467faf65,SESCO,II.1.1,La Pampa,AR-L,annual,2016,gas oil combustion consumption by freight transport,0.5418,TJ,CO2,74100.0,kg/TJ,40147.38,kg +333d2d89-a037-3c59-9930-cb4c6875fb58,SESCO,II.1.1,La Pampa,AR-L,annual,2016,gas oil combustion consumption by freight transport,0.5418,TJ,CH4,3.9,kg/TJ,2.1130199999999997,kg +333d2d89-a037-3c59-9930-cb4c6875fb58,SESCO,II.1.1,La Pampa,AR-L,annual,2016,gas oil combustion consumption by freight transport,0.5418,TJ,N2O,3.9,kg/TJ,2.1130199999999997,kg +f50c4d5d-b8e1-3452-b402-b4f68dab72dd,SESCO,II.1.1,La Rioja,AR-F,annual,2016,gas oil combustion consumption by freight transport,0.21672,TJ,CO2,74100.0,kg/TJ,16058.952,kg +f6d41ec4-5e64-3a97-98a5-1b3163bf62a4,SESCO,II.1.1,La Rioja,AR-F,annual,2016,gas oil combustion consumption by freight transport,0.21672,TJ,CH4,3.9,kg/TJ,0.845208,kg +f6d41ec4-5e64-3a97-98a5-1b3163bf62a4,SESCO,II.1.1,La Rioja,AR-F,annual,2016,gas oil combustion consumption by freight transport,0.21672,TJ,N2O,3.9,kg/TJ,0.845208,kg +c1b344f6-d1a6-3422-b99f-311077f011f5,SESCO,II.1.1,Mendoza,AR-M,annual,2016,gas oil combustion consumption by freight transport,0.10836,TJ,CO2,74100.0,kg/TJ,8029.476,kg +457dda64-64fc-3918-9756-c397c0a16169,SESCO,II.1.1,Mendoza,AR-M,annual,2016,gas oil combustion consumption by freight transport,0.10836,TJ,CH4,3.9,kg/TJ,0.422604,kg +457dda64-64fc-3918-9756-c397c0a16169,SESCO,II.1.1,Mendoza,AR-M,annual,2016,gas oil combustion consumption by freight transport,0.10836,TJ,N2O,3.9,kg/TJ,0.422604,kg +890f66fb-48c7-3d14-88fd-375e8290f8ba,SESCO,II.1.1,Misiones,AR-N,annual,2016,gas oil combustion consumption by freight transport,0.8307599999999999,TJ,CO2,74100.0,kg/TJ,61559.316,kg +f29bd6d2-b1f8-3f20-808d-9c607613b62d,SESCO,II.1.1,Misiones,AR-N,annual,2016,gas oil combustion consumption by freight transport,0.8307599999999999,TJ,CH4,3.9,kg/TJ,3.2399639999999996,kg +f29bd6d2-b1f8-3f20-808d-9c607613b62d,SESCO,II.1.1,Misiones,AR-N,annual,2016,gas oil combustion consumption by freight transport,0.8307599999999999,TJ,N2O,3.9,kg/TJ,3.2399639999999996,kg +72f79e4f-cc41-3c96-90ab-f636da9fd693,SESCO,II.1.1,Neuquén,AR-Q,annual,2016,gas oil combustion consumption by freight transport,0.03612,TJ,CO2,74100.0,kg/TJ,2676.4919999999997,kg +a2c1117f-32e8-359f-bc8f-87f84ddd7b5b,SESCO,II.1.1,Neuquén,AR-Q,annual,2016,gas oil combustion consumption by freight transport,0.03612,TJ,CH4,3.9,kg/TJ,0.140868,kg +a2c1117f-32e8-359f-bc8f-87f84ddd7b5b,SESCO,II.1.1,Neuquén,AR-Q,annual,2016,gas oil combustion consumption by freight transport,0.03612,TJ,N2O,3.9,kg/TJ,0.140868,kg +01a18194-ee5d-3e55-9f47-ba31040304ac,SESCO,II.1.1,Rio Negro,AR-R,annual,2016,gas oil combustion consumption by freight transport,1.87824,TJ,CO2,74100.0,kg/TJ,139177.584,kg +fe7c9d56-be2a-3213-be8a-7b33995face3,SESCO,II.1.1,Rio Negro,AR-R,annual,2016,gas oil combustion consumption by freight transport,1.87824,TJ,CH4,3.9,kg/TJ,7.325136,kg +fe7c9d56-be2a-3213-be8a-7b33995face3,SESCO,II.1.1,Rio Negro,AR-R,annual,2016,gas oil combustion consumption by freight transport,1.87824,TJ,N2O,3.9,kg/TJ,7.325136,kg +5cd0e16f-163c-3a53-a0e0-a0697fe4b69c,SESCO,II.1.1,San Juan,AR-J,annual,2016,gas oil combustion consumption by freight transport,0.43344,TJ,CO2,74100.0,kg/TJ,32117.904,kg +5e0ed554-cb39-3f88-862e-c79e577bf25b,SESCO,II.1.1,San Juan,AR-J,annual,2016,gas oil combustion consumption by freight transport,0.43344,TJ,CH4,3.9,kg/TJ,1.690416,kg +5e0ed554-cb39-3f88-862e-c79e577bf25b,SESCO,II.1.1,San Juan,AR-J,annual,2016,gas oil combustion consumption by freight transport,0.43344,TJ,N2O,3.9,kg/TJ,1.690416,kg +42f8f147-e9c5-3509-817f-c0bc625fc14a,SESCO,II.1.1,San Luis,AR-D,annual,2016,gas oil combustion consumption by freight transport,1.48092,TJ,CO2,74100.0,kg/TJ,109736.172,kg +327d77fe-ac4d-3c3c-8a25-3e072317700f,SESCO,II.1.1,San Luis,AR-D,annual,2016,gas oil combustion consumption by freight transport,1.48092,TJ,CH4,3.9,kg/TJ,5.775588,kg +327d77fe-ac4d-3c3c-8a25-3e072317700f,SESCO,II.1.1,San Luis,AR-D,annual,2016,gas oil combustion consumption by freight transport,1.48092,TJ,N2O,3.9,kg/TJ,5.775588,kg +98936536-2ae7-321c-b5f2-4d69e2371727,SESCO,II.1.1,Santa Fe,AR-S,annual,2016,gas oil combustion consumption by freight transport,13.3644,TJ,CO2,74100.0,kg/TJ,990302.04,kg +c68b3d0d-46f1-3c24-877b-ba5f236aaddb,SESCO,II.1.1,Santa Fe,AR-S,annual,2016,gas oil combustion consumption by freight transport,13.3644,TJ,CH4,3.9,kg/TJ,52.121159999999996,kg +c68b3d0d-46f1-3c24-877b-ba5f236aaddb,SESCO,II.1.1,Santa Fe,AR-S,annual,2016,gas oil combustion consumption by freight transport,13.3644,TJ,N2O,3.9,kg/TJ,52.121159999999996,kg +ca406244-8172-39b0-99af-a624f00b1e70,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2016,gas oil combustion consumption by freight transport,0.79464,TJ,CO2,74100.0,kg/TJ,58882.824,kg +28e25b1d-b28d-3f63-8222-25e81195204f,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2016,gas oil combustion consumption by freight transport,0.79464,TJ,CH4,3.9,kg/TJ,3.099096,kg +28e25b1d-b28d-3f63-8222-25e81195204f,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2016,gas oil combustion consumption by freight transport,0.79464,TJ,N2O,3.9,kg/TJ,3.099096,kg +c021b19e-a9f5-3ab7-8709-f4a98c171122,SESCO,II.1.1,Tucuman,AR-T,annual,2016,gas oil combustion consumption by freight transport,0.68628,TJ,CO2,74100.0,kg/TJ,50853.348,kg +ef12b4a6-156e-3826-9bc9-a9db162e2d38,SESCO,II.1.1,Tucuman,AR-T,annual,2016,gas oil combustion consumption by freight transport,0.68628,TJ,CH4,3.9,kg/TJ,2.676492,kg +ef12b4a6-156e-3826-9bc9-a9db162e2d38,SESCO,II.1.1,Tucuman,AR-T,annual,2016,gas oil combustion consumption by freight transport,0.68628,TJ,N2O,3.9,kg/TJ,2.676492,kg +0c836115-5e43-39ad-a581-bee825394999,SESCO,II.1.1,Buenos Aires,AR-B,annual,2016,jet kerosene combustion consumption by freight transport,0.37743599999999994,TJ,CO2,71500.0,kg/TJ,26986.673999999995,kg +6bf78263-32a2-3ed3-9932-0f065d162243,SESCO,II.1.1,Buenos Aires,AR-B,annual,2016,jet kerosene combustion consumption by freight transport,0.37743599999999994,TJ,CH4,0.5,kg/TJ,0.18871799999999997,kg +1d0ad3c9-0f5c-3332-81a6-18a826c27eaf,SESCO,II.1.1,Buenos Aires,AR-B,annual,2016,jet kerosene combustion consumption by freight transport,0.37743599999999994,TJ,N2O,2.0,kg/TJ,0.7548719999999999,kg +b49e7992-91d4-394e-8d1e-a137c020ad30,SESCO,II.1.1,Capital Federal,AR-C,annual,2016,gasoline combustion consumption by public passenger transport,1.0189,TJ,CO2,69300.0,kg/TJ,70609.76999999999,kg +10d86630-2cdd-3ae5-8506-12f86bbedeee,SESCO,II.1.1,Capital Federal,AR-C,annual,2016,gasoline combustion consumption by public passenger transport,1.0189,TJ,CH4,33.0,kg/TJ,33.6237,kg +f081b002-9c4e-361a-8330-8f334881b065,SESCO,II.1.1,Capital Federal,AR-C,annual,2016,gasoline combustion consumption by public passenger transport,1.0189,TJ,N2O,3.2,kg/TJ,3.26048,kg +4f0e15a0-917e-3afa-88d2-4ec59b86fd5d,SESCO,II.1.1,Buenos Aires,AR-B,annual,2016,gas oil combustion consumption by public passenger transport,2169.33108,TJ,CO2,74100.0,kg/TJ,160747433.028,kg +224208f5-3f0c-3a59-9a6b-ac3cc37fba96,SESCO,II.1.1,Buenos Aires,AR-B,annual,2016,gas oil combustion consumption by public passenger transport,2169.33108,TJ,CH4,3.9,kg/TJ,8460.391211999999,kg +224208f5-3f0c-3a59-9a6b-ac3cc37fba96,SESCO,II.1.1,Buenos Aires,AR-B,annual,2016,gas oil combustion consumption by public passenger transport,2169.33108,TJ,N2O,3.9,kg/TJ,8460.391211999999,kg +360c694c-5d57-3ec5-999a-c3081f23e85c,SESCO,II.1.1,Capital Federal,AR-C,annual,2016,gas oil combustion consumption by public passenger transport,633.97824,TJ,CO2,74100.0,kg/TJ,46977787.584,kg +dfce4820-9b77-36c2-856c-65300e60583b,SESCO,II.1.1,Capital Federal,AR-C,annual,2016,gas oil combustion consumption by public passenger transport,633.97824,TJ,CH4,3.9,kg/TJ,2472.515136,kg +dfce4820-9b77-36c2-856c-65300e60583b,SESCO,II.1.1,Capital Federal,AR-C,annual,2016,gas oil combustion consumption by public passenger transport,633.97824,TJ,N2O,3.9,kg/TJ,2472.515136,kg +c8a1f203-1b34-3eb3-b447-11b85dcb0d21,SESCO,II.1.1,Catamarca,AR-K,annual,2016,gas oil combustion consumption by public passenger transport,0.79464,TJ,CO2,74100.0,kg/TJ,58882.824,kg +be9e595c-2875-3052-9025-c0284bd58968,SESCO,II.1.1,Catamarca,AR-K,annual,2016,gas oil combustion consumption by public passenger transport,0.79464,TJ,CH4,3.9,kg/TJ,3.099096,kg +be9e595c-2875-3052-9025-c0284bd58968,SESCO,II.1.1,Catamarca,AR-K,annual,2016,gas oil combustion consumption by public passenger transport,0.79464,TJ,N2O,3.9,kg/TJ,3.099096,kg +2d2393f2-9bf8-3df8-8971-7620be341900,SESCO,II.1.1,Chaco,AR-H,annual,2016,gas oil combustion consumption by public passenger transport,0.5418,TJ,CO2,74100.0,kg/TJ,40147.38,kg +9deddbf3-06c6-3ff7-be4f-09086c5ebeaf,SESCO,II.1.1,Chaco,AR-H,annual,2016,gas oil combustion consumption by public passenger transport,0.5418,TJ,CH4,3.9,kg/TJ,2.1130199999999997,kg +9deddbf3-06c6-3ff7-be4f-09086c5ebeaf,SESCO,II.1.1,Chaco,AR-H,annual,2016,gas oil combustion consumption by public passenger transport,0.5418,TJ,N2O,3.9,kg/TJ,2.1130199999999997,kg +21093fe2-7448-304e-a290-96b9688341f6,SESCO,II.1.1,Chubut,AR-U,annual,2016,gas oil combustion consumption by public passenger transport,14.59248,TJ,CO2,74100.0,kg/TJ,1081302.768,kg +e9be97f2-8df0-3fdc-a973-b272cf24d723,SESCO,II.1.1,Chubut,AR-U,annual,2016,gas oil combustion consumption by public passenger transport,14.59248,TJ,CH4,3.9,kg/TJ,56.910672,kg +e9be97f2-8df0-3fdc-a973-b272cf24d723,SESCO,II.1.1,Chubut,AR-U,annual,2016,gas oil combustion consumption by public passenger transport,14.59248,TJ,N2O,3.9,kg/TJ,56.910672,kg +b57b7a47-b0b8-3afc-a76e-67cbd6512b37,SESCO,II.1.1,Corrientes,AR-W,annual,2016,gas oil combustion consumption by public passenger transport,2.6367599999999998,TJ,CO2,74100.0,kg/TJ,195383.916,kg +6bbf126c-7a15-39cb-aaad-49ddd0fecf8c,SESCO,II.1.1,Corrientes,AR-W,annual,2016,gas oil combustion consumption by public passenger transport,2.6367599999999998,TJ,CH4,3.9,kg/TJ,10.283363999999999,kg +6bbf126c-7a15-39cb-aaad-49ddd0fecf8c,SESCO,II.1.1,Corrientes,AR-W,annual,2016,gas oil combustion consumption by public passenger transport,2.6367599999999998,TJ,N2O,3.9,kg/TJ,10.283363999999999,kg +8823b6bb-69c3-33ca-9026-4a11cb909df5,SESCO,II.1.1,Córdoba,AR-X,annual,2016,gas oil combustion consumption by public passenger transport,96.47652,TJ,CO2,74100.0,kg/TJ,7148910.131999999,kg +1e0e1e0f-d789-3496-bd47-1acdcacd0f97,SESCO,II.1.1,Córdoba,AR-X,annual,2016,gas oil combustion consumption by public passenger transport,96.47652,TJ,CH4,3.9,kg/TJ,376.258428,kg +1e0e1e0f-d789-3496-bd47-1acdcacd0f97,SESCO,II.1.1,Córdoba,AR-X,annual,2016,gas oil combustion consumption by public passenger transport,96.47652,TJ,N2O,3.9,kg/TJ,376.258428,kg +e5098f28-dbe4-37e5-a551-8526ae688230,SESCO,II.1.1,Entre Rios,AR-E,annual,2016,gas oil combustion consumption by public passenger transport,50.89308,TJ,CO2,74100.0,kg/TJ,3771177.2279999997,kg +7cd2c88e-6eaf-3eea-a5ca-0f478caa5d34,SESCO,II.1.1,Entre Rios,AR-E,annual,2016,gas oil combustion consumption by public passenger transport,50.89308,TJ,CH4,3.9,kg/TJ,198.48301199999997,kg +7cd2c88e-6eaf-3eea-a5ca-0f478caa5d34,SESCO,II.1.1,Entre Rios,AR-E,annual,2016,gas oil combustion consumption by public passenger transport,50.89308,TJ,N2O,3.9,kg/TJ,198.48301199999997,kg +bb89abdd-df1d-3f71-bada-cf9d6cd6db03,SESCO,II.1.1,Formosa,AR-P,annual,2016,gas oil combustion consumption by public passenger transport,0.36119999999999997,TJ,CO2,74100.0,kg/TJ,26764.92,kg +454aa7ee-5023-3d4b-8f5b-bbf0e142d23f,SESCO,II.1.1,Formosa,AR-P,annual,2016,gas oil combustion consumption by public passenger transport,0.36119999999999997,TJ,CH4,3.9,kg/TJ,1.40868,kg +454aa7ee-5023-3d4b-8f5b-bbf0e142d23f,SESCO,II.1.1,Formosa,AR-P,annual,2016,gas oil combustion consumption by public passenger transport,0.36119999999999997,TJ,N2O,3.9,kg/TJ,1.40868,kg +c5e1b29b-622a-324d-b245-affe0fa8206f,SESCO,II.1.1,La Pampa,AR-L,annual,2016,gas oil combustion consumption by public passenger transport,3.64812,TJ,CO2,74100.0,kg/TJ,270325.692,kg +bfe47d1d-bfb0-370f-be61-060da7fea084,SESCO,II.1.1,La Pampa,AR-L,annual,2016,gas oil combustion consumption by public passenger transport,3.64812,TJ,CH4,3.9,kg/TJ,14.227668,kg +bfe47d1d-bfb0-370f-be61-060da7fea084,SESCO,II.1.1,La Pampa,AR-L,annual,2016,gas oil combustion consumption by public passenger transport,3.64812,TJ,N2O,3.9,kg/TJ,14.227668,kg +c87cd4e3-b98d-367a-a9d0-04537f69367f,SESCO,II.1.1,Mendoza,AR-M,annual,2016,gas oil combustion consumption by public passenger transport,0.68628,TJ,CO2,74100.0,kg/TJ,50853.348,kg +6f760926-dc94-3879-b646-3eb4686153c5,SESCO,II.1.1,Mendoza,AR-M,annual,2016,gas oil combustion consumption by public passenger transport,0.68628,TJ,CH4,3.9,kg/TJ,2.676492,kg +6f760926-dc94-3879-b646-3eb4686153c5,SESCO,II.1.1,Mendoza,AR-M,annual,2016,gas oil combustion consumption by public passenger transport,0.68628,TJ,N2O,3.9,kg/TJ,2.676492,kg +7a174182-1f8e-340b-9276-de9defc00513,SESCO,II.1.1,Misiones,AR-N,annual,2016,gas oil combustion consumption by public passenger transport,17.55432,TJ,CO2,74100.0,kg/TJ,1300775.112,kg +b0550759-fec2-31d9-9324-adac028e56c9,SESCO,II.1.1,Misiones,AR-N,annual,2016,gas oil combustion consumption by public passenger transport,17.55432,TJ,CH4,3.9,kg/TJ,68.461848,kg +b0550759-fec2-31d9-9324-adac028e56c9,SESCO,II.1.1,Misiones,AR-N,annual,2016,gas oil combustion consumption by public passenger transport,17.55432,TJ,N2O,3.9,kg/TJ,68.461848,kg +e81e7444-3aaf-355f-9589-911e50b1982a,SESCO,II.1.1,Rio Negro,AR-R,annual,2016,gas oil combustion consumption by public passenger transport,42.65772,TJ,CO2,74100.0,kg/TJ,3160937.0519999997,kg +a566ea40-66cf-33ff-b9e3-8a860a33d3ce,SESCO,II.1.1,Rio Negro,AR-R,annual,2016,gas oil combustion consumption by public passenger transport,42.65772,TJ,CH4,3.9,kg/TJ,166.365108,kg +a566ea40-66cf-33ff-b9e3-8a860a33d3ce,SESCO,II.1.1,Rio Negro,AR-R,annual,2016,gas oil combustion consumption by public passenger transport,42.65772,TJ,N2O,3.9,kg/TJ,166.365108,kg +3e15c984-2e8f-3f8d-94e0-6e21824cb623,SESCO,II.1.1,San Luis,AR-D,annual,2016,gas oil combustion consumption by public passenger transport,0.36119999999999997,TJ,CO2,74100.0,kg/TJ,26764.92,kg +166bcf8f-cfca-3d06-a441-bf9b914fed2a,SESCO,II.1.1,San Luis,AR-D,annual,2016,gas oil combustion consumption by public passenger transport,0.36119999999999997,TJ,CH4,3.9,kg/TJ,1.40868,kg +166bcf8f-cfca-3d06-a441-bf9b914fed2a,SESCO,II.1.1,San Luis,AR-D,annual,2016,gas oil combustion consumption by public passenger transport,0.36119999999999997,TJ,N2O,3.9,kg/TJ,1.40868,kg +d98d10e2-b574-376d-840d-313d9050e58a,SESCO,II.1.1,Santa Fe,AR-S,annual,2016,gas oil combustion consumption by public passenger transport,81.73956,TJ,CO2,74100.0,kg/TJ,6056901.396,kg +c4ae1704-24a3-3dbe-bfc4-a99697331b93,SESCO,II.1.1,Santa Fe,AR-S,annual,2016,gas oil combustion consumption by public passenger transport,81.73956,TJ,CH4,3.9,kg/TJ,318.78428399999996,kg +c4ae1704-24a3-3dbe-bfc4-a99697331b93,SESCO,II.1.1,Santa Fe,AR-S,annual,2016,gas oil combustion consumption by public passenger transport,81.73956,TJ,N2O,3.9,kg/TJ,318.78428399999996,kg +5fc1f659-bf28-3e80-a7a5-5eb7469e32c9,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2016,gas oil combustion consumption by public passenger transport,2.1672,TJ,CO2,74100.0,kg/TJ,160589.52,kg +fbe0b765-556d-3c5a-9ebb-68c431ce0bd5,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2016,gas oil combustion consumption by public passenger transport,2.1672,TJ,CH4,3.9,kg/TJ,8.452079999999999,kg +fbe0b765-556d-3c5a-9ebb-68c431ce0bd5,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2016,gas oil combustion consumption by public passenger transport,2.1672,TJ,N2O,3.9,kg/TJ,8.452079999999999,kg +b52de9dd-f832-3bc4-828c-b27ffb31d294,SESCO,II.1.1,Tucuman,AR-T,annual,2016,gas oil combustion consumption by public passenger transport,0.03612,TJ,CO2,74100.0,kg/TJ,2676.4919999999997,kg +ed0e8af5-4f73-3538-bbbc-56ce6cf73097,SESCO,II.1.1,Tucuman,AR-T,annual,2016,gas oil combustion consumption by public passenger transport,0.03612,TJ,CH4,3.9,kg/TJ,0.140868,kg +ed0e8af5-4f73-3538-bbbc-56ce6cf73097,SESCO,II.1.1,Tucuman,AR-T,annual,2016,gas oil combustion consumption by public passenger transport,0.03612,TJ,N2O,3.9,kg/TJ,0.140868,kg +f2172b81-63fa-3a21-9b35-0697cebe3183,SESCO,II.1.1,Buenos Aires,AR-B,annual,2016,gas oil combustion consumption by public passenger transport,5.16516,TJ,CO2,74100.0,kg/TJ,382738.356,kg +39d13e98-5cae-3c2b-ada3-a7648aa20306,SESCO,II.1.1,Buenos Aires,AR-B,annual,2016,gas oil combustion consumption by public passenger transport,5.16516,TJ,CH4,3.9,kg/TJ,20.144124,kg +39d13e98-5cae-3c2b-ada3-a7648aa20306,SESCO,II.1.1,Buenos Aires,AR-B,annual,2016,gas oil combustion consumption by public passenger transport,5.16516,TJ,N2O,3.9,kg/TJ,20.144124,kg +618def75-fb62-3d81-b21c-83c07ef1aaf8,SESCO,II.1.1,Capital Federal,AR-C,annual,2016,gas oil combustion consumption by public passenger transport,3.64812,TJ,CO2,74100.0,kg/TJ,270325.692,kg +cf5e0468-2a6c-3357-ad1b-2fe108082be4,SESCO,II.1.1,Capital Federal,AR-C,annual,2016,gas oil combustion consumption by public passenger transport,3.64812,TJ,CH4,3.9,kg/TJ,14.227668,kg +cf5e0468-2a6c-3357-ad1b-2fe108082be4,SESCO,II.1.1,Capital Federal,AR-C,annual,2016,gas oil combustion consumption by public passenger transport,3.64812,TJ,N2O,3.9,kg/TJ,14.227668,kg +99d6cc73-96ef-3908-bdbf-2390d40ac905,SESCO,II.1.1,Chaco,AR-H,annual,2016,gas oil combustion consumption by public passenger transport,0.03612,TJ,CO2,74100.0,kg/TJ,2676.4919999999997,kg +4fd51885-17e1-3f6f-abb6-0b1a2a70f00e,SESCO,II.1.1,Chaco,AR-H,annual,2016,gas oil combustion consumption by public passenger transport,0.03612,TJ,CH4,3.9,kg/TJ,0.140868,kg +4fd51885-17e1-3f6f-abb6-0b1a2a70f00e,SESCO,II.1.1,Chaco,AR-H,annual,2016,gas oil combustion consumption by public passenger transport,0.03612,TJ,N2O,3.9,kg/TJ,0.140868,kg +96fb7b8c-4d56-3313-b78a-794e8ba39676,SESCO,II.1.1,Chubut,AR-U,annual,2016,gas oil combustion consumption by public passenger transport,0.18059999999999998,TJ,CO2,74100.0,kg/TJ,13382.46,kg +f258055d-6d65-36aa-b30d-5e1e3966ba1c,SESCO,II.1.1,Chubut,AR-U,annual,2016,gas oil combustion consumption by public passenger transport,0.18059999999999998,TJ,CH4,3.9,kg/TJ,0.70434,kg +f258055d-6d65-36aa-b30d-5e1e3966ba1c,SESCO,II.1.1,Chubut,AR-U,annual,2016,gas oil combustion consumption by public passenger transport,0.18059999999999998,TJ,N2O,3.9,kg/TJ,0.70434,kg +24829ddb-375e-3ddd-beb2-94459f329f15,SESCO,II.1.1,Corrientes,AR-W,annual,2016,gas oil combustion consumption by public passenger transport,0.07224,TJ,CO2,74100.0,kg/TJ,5352.9839999999995,kg +b091fa72-c11f-3ff4-96a5-8f77cc089c1e,SESCO,II.1.1,Corrientes,AR-W,annual,2016,gas oil combustion consumption by public passenger transport,0.07224,TJ,CH4,3.9,kg/TJ,0.281736,kg +b091fa72-c11f-3ff4-96a5-8f77cc089c1e,SESCO,II.1.1,Corrientes,AR-W,annual,2016,gas oil combustion consumption by public passenger transport,0.07224,TJ,N2O,3.9,kg/TJ,0.281736,kg +10a33825-45eb-3581-8a96-85ad24adcaa5,SESCO,II.1.1,Córdoba,AR-X,annual,2016,gas oil combustion consumption by public passenger transport,0.18059999999999998,TJ,CO2,74100.0,kg/TJ,13382.46,kg +3ac96b27-f4dd-30a7-bbac-b021e2afbe58,SESCO,II.1.1,Córdoba,AR-X,annual,2016,gas oil combustion consumption by public passenger transport,0.18059999999999998,TJ,CH4,3.9,kg/TJ,0.70434,kg +3ac96b27-f4dd-30a7-bbac-b021e2afbe58,SESCO,II.1.1,Córdoba,AR-X,annual,2016,gas oil combustion consumption by public passenger transport,0.18059999999999998,TJ,N2O,3.9,kg/TJ,0.70434,kg +04c78ffd-9cc4-3825-a216-511c3e714d6f,SESCO,II.1.1,La Pampa,AR-L,annual,2016,gas oil combustion consumption by public passenger transport,0.14448,TJ,CO2,74100.0,kg/TJ,10705.967999999999,kg +eaf5d924-0aba-3011-b07b-f8b117d8562c,SESCO,II.1.1,La Pampa,AR-L,annual,2016,gas oil combustion consumption by public passenger transport,0.14448,TJ,CH4,3.9,kg/TJ,0.563472,kg +eaf5d924-0aba-3011-b07b-f8b117d8562c,SESCO,II.1.1,La Pampa,AR-L,annual,2016,gas oil combustion consumption by public passenger transport,0.14448,TJ,N2O,3.9,kg/TJ,0.563472,kg +537218ba-46ce-3de4-813c-d01f0ee430af,SESCO,II.1.1,Rio Negro,AR-R,annual,2016,gas oil combustion consumption by public passenger transport,0.25284,TJ,CO2,74100.0,kg/TJ,18735.444,kg +ed711632-0a7d-3c16-b847-7697f1ba8194,SESCO,II.1.1,Rio Negro,AR-R,annual,2016,gas oil combustion consumption by public passenger transport,0.25284,TJ,CH4,3.9,kg/TJ,0.9860760000000001,kg +ed711632-0a7d-3c16-b847-7697f1ba8194,SESCO,II.1.1,Rio Negro,AR-R,annual,2016,gas oil combustion consumption by public passenger transport,0.25284,TJ,N2O,3.9,kg/TJ,0.9860760000000001,kg +897b7cff-1f36-3b89-85ab-f012eea58a33,SESCO,II.1.1,Santa Fe,AR-S,annual,2016,gas oil combustion consumption by public passenger transport,0.903,TJ,CO2,74100.0,kg/TJ,66912.3,kg +bd75807f-1e01-3e71-b029-62578e461e0e,SESCO,II.1.1,Santa Fe,AR-S,annual,2016,gas oil combustion consumption by public passenger transport,0.903,TJ,CH4,3.9,kg/TJ,3.5217,kg +bd75807f-1e01-3e71-b029-62578e461e0e,SESCO,II.1.1,Santa Fe,AR-S,annual,2016,gas oil combustion consumption by public passenger transport,0.903,TJ,N2O,3.9,kg/TJ,3.5217,kg +e93fd977-9574-34d3-8bd8-52cbcdb4ccc2,SESCO,II.1.1,Chubut,AR-U,annual,2016,gas oil combustion consumption by freight transport,1.3205472,TJ,CO2,74100.0,kg/TJ,97852.54752000001,kg +4214f9a8-7432-378b-9ea9-d1ab262de79b,SESCO,II.1.1,Chubut,AR-U,annual,2016,gas oil combustion consumption by freight transport,1.3205472,TJ,CH4,3.9,kg/TJ,5.15013408,kg +4214f9a8-7432-378b-9ea9-d1ab262de79b,SESCO,II.1.1,Chubut,AR-U,annual,2016,gas oil combustion consumption by freight transport,1.3205472,TJ,N2O,3.9,kg/TJ,5.15013408,kg +2be9dd78-6991-331c-b48f-2884a440528e,SESCO,II.5.1,Buenos Aires,AR-B,annual,2016,gas oil combustion consumption by agriculture machines,530.229810432,TJ,CO2,74100.0,kg/TJ,39290028.9530112,kg +0723c0d1-b636-3451-b4ae-28cc64efd60d,SESCO,II.5.1,Buenos Aires,AR-B,annual,2016,gas oil combustion consumption by agriculture machines,530.229810432,TJ,CH4,3.9,kg/TJ,2067.8962606848,kg +0723c0d1-b636-3451-b4ae-28cc64efd60d,SESCO,II.5.1,Buenos Aires,AR-B,annual,2016,gas oil combustion consumption by agriculture machines,530.229810432,TJ,N2O,3.9,kg/TJ,2067.8962606848,kg +ba8684d6-5fff-393c-b665-0bbe3a9cd9fd,SESCO,II.5.1,Córdoba,AR-X,annual,2016,gas oil combustion consumption by agriculture machines,661.141354104,TJ,CO2,74100.0,kg/TJ,48990574.3391064,kg +69ed2eab-c38c-3ac9-bd22-3ed26856ddae,SESCO,II.5.1,Córdoba,AR-X,annual,2016,gas oil combustion consumption by agriculture machines,661.141354104,TJ,CH4,3.9,kg/TJ,2578.4512810056,kg +69ed2eab-c38c-3ac9-bd22-3ed26856ddae,SESCO,II.5.1,Córdoba,AR-X,annual,2016,gas oil combustion consumption by agriculture machines,661.141354104,TJ,N2O,3.9,kg/TJ,2578.4512810056,kg +302065a3-8d1a-3acb-8936-1b6b7890259a,SESCO,II.5.1,Entre Rios,AR-E,annual,2016,gas oil combustion consumption by agriculture machines,365.998025484,TJ,CO2,74100.0,kg/TJ,27120453.688364398,kg +0e369c50-b76a-3eca-a76b-31a8d4706ca4,SESCO,II.5.1,Entre Rios,AR-E,annual,2016,gas oil combustion consumption by agriculture machines,365.998025484,TJ,CH4,3.9,kg/TJ,1427.3922993876,kg +0e369c50-b76a-3eca-a76b-31a8d4706ca4,SESCO,II.5.1,Entre Rios,AR-E,annual,2016,gas oil combustion consumption by agriculture machines,365.998025484,TJ,N2O,3.9,kg/TJ,1427.3922993876,kg +034385b1-5a12-321f-ae56-e0cf2a1baa97,SESCO,II.5.1,La Pampa,AR-L,annual,2016,gas oil combustion consumption by agriculture machines,53.113325832,TJ,CO2,74100.0,kg/TJ,3935697.4441512,kg +867e4289-e93a-3897-ae1c-2ec194cb0060,SESCO,II.5.1,La Pampa,AR-L,annual,2016,gas oil combustion consumption by agriculture machines,53.113325832,TJ,CH4,3.9,kg/TJ,207.1419707448,kg +867e4289-e93a-3897-ae1c-2ec194cb0060,SESCO,II.5.1,La Pampa,AR-L,annual,2016,gas oil combustion consumption by agriculture machines,53.113325832,TJ,N2O,3.9,kg/TJ,207.1419707448,kg +56cc5b58-41f6-3c3c-9ce7-381937b211f7,SESCO,II.5.1,Santa Fe,AR-S,annual,2016,gas oil combustion consumption by agriculture machines,852.000712752,TJ,CO2,74100.0,kg/TJ,63133252.814923204,kg +54201a25-1d2b-3933-a66c-1230d00379f6,SESCO,II.5.1,Santa Fe,AR-S,annual,2016,gas oil combustion consumption by agriculture machines,852.000712752,TJ,CH4,3.9,kg/TJ,3322.8027797328,kg +54201a25-1d2b-3933-a66c-1230d00379f6,SESCO,II.5.1,Santa Fe,AR-S,annual,2016,gas oil combustion consumption by agriculture machines,852.000712752,TJ,N2O,3.9,kg/TJ,3322.8027797328,kg +1d7be19c-dd88-3d2e-98c7-32c59c24ed77,SESCO,II.5.1,Santiago del Estero,AR-G,annual,2016,gas oil combustion consumption by agriculture machines,87.505944624,TJ,CO2,74100.0,kg/TJ,6484190.4966384,kg +cfd16578-4488-3ddf-8f71-7abf21b3575c,SESCO,II.5.1,Santiago del Estero,AR-G,annual,2016,gas oil combustion consumption by agriculture machines,87.505944624,TJ,CH4,3.9,kg/TJ,341.2731840336,kg +cfd16578-4488-3ddf-8f71-7abf21b3575c,SESCO,II.5.1,Santiago del Estero,AR-G,annual,2016,gas oil combustion consumption by agriculture machines,87.505944624,TJ,N2O,3.9,kg/TJ,341.2731840336,kg +dc853017-1be5-3aaa-b67e-f2a4937ccda4,SESCO,II.5.1,Buenos Aires,AR-B,annual,2016,gas oil combustion consumption by agriculture machines,12.820328051999999,TJ,CO2,74100.0,kg/TJ,949986.3086531999,kg +d53678d7-dc52-3a95-9c20-aacb7da96ce6,SESCO,II.5.1,Buenos Aires,AR-B,annual,2016,gas oil combustion consumption by agriculture machines,12.820328051999999,TJ,CH4,3.9,kg/TJ,49.99927940279999,kg +d53678d7-dc52-3a95-9c20-aacb7da96ce6,SESCO,II.5.1,Buenos Aires,AR-B,annual,2016,gas oil combustion consumption by agriculture machines,12.820328051999999,TJ,N2O,3.9,kg/TJ,49.99927940279999,kg +f8f0440e-25f6-3b9e-b335-8dad69483da5,SESCO,II.5.1,Córdoba,AR-X,annual,2016,gas oil combustion consumption by agriculture machines,3.0206975399999996,TJ,CO2,74100.0,kg/TJ,223833.68771399997,kg +c900f67e-2a47-3d77-92d2-1802ba140e0b,SESCO,II.5.1,Córdoba,AR-X,annual,2016,gas oil combustion consumption by agriculture machines,3.0206975399999996,TJ,CH4,3.9,kg/TJ,11.780720405999999,kg +c900f67e-2a47-3d77-92d2-1802ba140e0b,SESCO,II.5.1,Córdoba,AR-X,annual,2016,gas oil combustion consumption by agriculture machines,3.0206975399999996,TJ,N2O,3.9,kg/TJ,11.780720405999999,kg +6ff094ff-c269-329e-bd41-74139e7ec3f7,SESCO,II.5.1,Entre Rios,AR-E,annual,2016,gas oil combustion consumption by agriculture machines,12.326878284000001,TJ,CO2,74100.0,kg/TJ,913421.6808444001,kg +7b0fe9ba-546f-3950-93a8-1b7f0694439d,SESCO,II.5.1,Entre Rios,AR-E,annual,2016,gas oil combustion consumption by agriculture machines,12.326878284000001,TJ,CH4,3.9,kg/TJ,48.0748253076,kg +7b0fe9ba-546f-3950-93a8-1b7f0694439d,SESCO,II.5.1,Entre Rios,AR-E,annual,2016,gas oil combustion consumption by agriculture machines,12.326878284000001,TJ,N2O,3.9,kg/TJ,48.0748253076,kg +221fbf82-58fd-37fb-9543-9c923ed90526,SESCO,II.5.1,La Pampa,AR-L,annual,2016,gas oil combustion consumption by agriculture machines,10.302471480000001,TJ,CO2,74100.0,kg/TJ,763413.1366680001,kg +af281f83-415a-3599-9838-a8f2843ad7e9,SESCO,II.5.1,La Pampa,AR-L,annual,2016,gas oil combustion consumption by agriculture machines,10.302471480000001,TJ,CH4,3.9,kg/TJ,40.179638772000004,kg +af281f83-415a-3599-9838-a8f2843ad7e9,SESCO,II.5.1,La Pampa,AR-L,annual,2016,gas oil combustion consumption by agriculture machines,10.302471480000001,TJ,N2O,3.9,kg/TJ,40.179638772000004,kg +aad77600-be89-3d62-a2d1-e0f21d7d5564,SESCO,II.5.1,Santa Fe,AR-S,annual,2016,gas oil combustion consumption by agriculture machines,2.156085876,TJ,CO2,74100.0,kg/TJ,159765.9634116,kg +53885975-8891-3dfd-bef2-f435ffee1d8f,SESCO,II.5.1,Santa Fe,AR-S,annual,2016,gas oil combustion consumption by agriculture machines,2.156085876,TJ,CH4,3.9,kg/TJ,8.4087349164,kg +53885975-8891-3dfd-bef2-f435ffee1d8f,SESCO,II.5.1,Santa Fe,AR-S,annual,2016,gas oil combustion consumption by agriculture machines,2.156085876,TJ,N2O,3.9,kg/TJ,8.4087349164,kg +d0338ad3-bce4-39dd-ab11-641065616382,SESCO,II.1.1,Buenos Aires,AR-B,annual,2016,gas oil combustion consumption by to the public,2735.834295684,TJ,CO2,74100.0,kg/TJ,202725321.31018442,kg +0894e877-4cc0-3c70-bda6-1154ee94fd3e,SESCO,II.1.1,Buenos Aires,AR-B,annual,2016,gas oil combustion consumption by to the public,2735.834295684,TJ,CH4,3.9,kg/TJ,10669.7537531676,kg +0894e877-4cc0-3c70-bda6-1154ee94fd3e,SESCO,II.1.1,Buenos Aires,AR-B,annual,2016,gas oil combustion consumption by to the public,2735.834295684,TJ,N2O,3.9,kg/TJ,10669.7537531676,kg +43f92162-a8e0-3953-8ab3-76c0a78b77fb,SESCO,II.1.1,Capital Federal,AR-C,annual,2016,gas oil combustion consumption by to the public,226.96647103200002,TJ,CO2,74100.0,kg/TJ,16818215.5034712,kg +8fe10c13-9f52-3086-8b5c-cb98f48b8be9,SESCO,II.1.1,Capital Federal,AR-C,annual,2016,gas oil combustion consumption by to the public,226.96647103200002,TJ,CH4,3.9,kg/TJ,885.1692370248,kg +8fe10c13-9f52-3086-8b5c-cb98f48b8be9,SESCO,II.1.1,Capital Federal,AR-C,annual,2016,gas oil combustion consumption by to the public,226.96647103200002,TJ,N2O,3.9,kg/TJ,885.1692370248,kg +59e5df58-bbca-3fbf-866b-defefb6ef774,SESCO,II.1.1,Catamarca,AR-K,annual,2016,gas oil combustion consumption by to the public,92.06013121199999,TJ,CO2,74100.0,kg/TJ,6821655.722809199,kg +4b4e58ae-330d-3bff-8c07-c8138b515609,SESCO,II.1.1,Catamarca,AR-K,annual,2016,gas oil combustion consumption by to the public,92.06013121199999,TJ,CH4,3.9,kg/TJ,359.03451172679996,kg +4b4e58ae-330d-3bff-8c07-c8138b515609,SESCO,II.1.1,Catamarca,AR-K,annual,2016,gas oil combustion consumption by to the public,92.06013121199999,TJ,N2O,3.9,kg/TJ,359.03451172679996,kg +2d66bc81-9d2d-3bcc-8302-fb4a2b2da004,SESCO,II.1.1,Chaco,AR-H,annual,2016,gas oil combustion consumption by to the public,474.43802767200003,TJ,CO2,74100.0,kg/TJ,35155857.850495204,kg +ddedb4a3-39c5-3ee2-9a6f-b42d8b9fc468,SESCO,II.1.1,Chaco,AR-H,annual,2016,gas oil combustion consumption by to the public,474.43802767200003,TJ,CH4,3.9,kg/TJ,1850.3083079208002,kg +ddedb4a3-39c5-3ee2-9a6f-b42d8b9fc468,SESCO,II.1.1,Chaco,AR-H,annual,2016,gas oil combustion consumption by to the public,474.43802767200003,TJ,N2O,3.9,kg/TJ,1850.3083079208002,kg +aabad1fb-b1a3-3675-b6a2-2a5da25998d3,SESCO,II.1.1,Corrientes,AR-W,annual,2016,gas oil combustion consumption by to the public,417.202402092,TJ,CO2,74100.0,kg/TJ,30914697.9950172,kg +c4d297a4-0c82-34ee-81e9-f1a2984fc0ae,SESCO,II.1.1,Corrientes,AR-W,annual,2016,gas oil combustion consumption by to the public,417.202402092,TJ,CH4,3.9,kg/TJ,1627.0893681588,kg +c4d297a4-0c82-34ee-81e9-f1a2984fc0ae,SESCO,II.1.1,Corrientes,AR-W,annual,2016,gas oil combustion consumption by to the public,417.202402092,TJ,N2O,3.9,kg/TJ,1627.0893681588,kg +9736c0a1-cab6-3971-ac13-f23f0c516c2e,SESCO,II.1.1,Córdoba,AR-X,annual,2016,gas oil combustion consumption by to the public,1946.891163756,TJ,CO2,74100.0,kg/TJ,144264635.2343196,kg +93ff0d21-a39e-3542-8d34-fe44d513252a,SESCO,II.1.1,Córdoba,AR-X,annual,2016,gas oil combustion consumption by to the public,1946.891163756,TJ,CH4,3.9,kg/TJ,7592.8755386484,kg +93ff0d21-a39e-3542-8d34-fe44d513252a,SESCO,II.1.1,Córdoba,AR-X,annual,2016,gas oil combustion consumption by to the public,1946.891163756,TJ,N2O,3.9,kg/TJ,7592.8755386484,kg +dbc91072-4273-3a91-bf8c-c2fb72056625,SESCO,II.1.1,Entre Rios,AR-E,annual,2016,gas oil combustion consumption by to the public,742.389407592,TJ,CO2,74100.0,kg/TJ,55011055.1025672,kg +df2c3ab5-57c3-389b-90f8-706880854269,SESCO,II.1.1,Entre Rios,AR-E,annual,2016,gas oil combustion consumption by to the public,742.389407592,TJ,CH4,3.9,kg/TJ,2895.3186896088,kg +df2c3ab5-57c3-389b-90f8-706880854269,SESCO,II.1.1,Entre Rios,AR-E,annual,2016,gas oil combustion consumption by to the public,742.389407592,TJ,N2O,3.9,kg/TJ,2895.3186896088,kg +c2a1c5d4-ad25-35e8-92b2-eb59988c1a91,SESCO,II.1.1,Jujuy,AR-Y,annual,2016,gas oil combustion consumption by to the public,59.502368688,TJ,CO2,74100.0,kg/TJ,4409125.5197808,kg +e17d8772-921d-3812-8b92-3dd70047fd18,SESCO,II.1.1,Jujuy,AR-Y,annual,2016,gas oil combustion consumption by to the public,59.502368688,TJ,CH4,3.9,kg/TJ,232.05923788319998,kg +e17d8772-921d-3812-8b92-3dd70047fd18,SESCO,II.1.1,Jujuy,AR-Y,annual,2016,gas oil combustion consumption by to the public,59.502368688,TJ,N2O,3.9,kg/TJ,232.05923788319998,kg +3a9b2bbc-ec4c-322d-9248-80f8e92a2817,SESCO,II.1.1,La Pampa,AR-L,annual,2016,gas oil combustion consumption by to the public,75.879375348,TJ,CO2,74100.0,kg/TJ,5622661.713286799,kg +2d4c8260-bf9e-39f9-89df-662dbd873328,SESCO,II.1.1,La Pampa,AR-L,annual,2016,gas oil combustion consumption by to the public,75.879375348,TJ,CH4,3.9,kg/TJ,295.9295638572,kg +2d4c8260-bf9e-39f9-89df-662dbd873328,SESCO,II.1.1,La Pampa,AR-L,annual,2016,gas oil combustion consumption by to the public,75.879375348,TJ,N2O,3.9,kg/TJ,295.9295638572,kg +7bdb595f-622e-316e-9556-d1c5d1e7538e,SESCO,II.1.1,La Rioja,AR-F,annual,2016,gas oil combustion consumption by to the public,50.595295883999995,TJ,CO2,74100.0,kg/TJ,3749111.4250044,kg +c7507343-df54-3ca4-b17c-ae43c8f2557c,SESCO,II.1.1,La Rioja,AR-F,annual,2016,gas oil combustion consumption by to the public,50.595295883999995,TJ,CH4,3.9,kg/TJ,197.32165394759997,kg +c7507343-df54-3ca4-b17c-ae43c8f2557c,SESCO,II.1.1,La Rioja,AR-F,annual,2016,gas oil combustion consumption by to the public,50.595295883999995,TJ,N2O,3.9,kg/TJ,197.32165394759997,kg +fd4a3df2-06e8-3a40-aa70-5244640b9d83,SESCO,II.1.1,Mendoza,AR-M,annual,2016,gas oil combustion consumption by to the public,387.425402784,TJ,CO2,74100.0,kg/TJ,28708222.346294403,kg +ea21b959-9048-385b-a4ee-fdfe8cc79827,SESCO,II.1.1,Mendoza,AR-M,annual,2016,gas oil combustion consumption by to the public,387.425402784,TJ,CH4,3.9,kg/TJ,1510.9590708576002,kg +ea21b959-9048-385b-a4ee-fdfe8cc79827,SESCO,II.1.1,Mendoza,AR-M,annual,2016,gas oil combustion consumption by to the public,387.425402784,TJ,N2O,3.9,kg/TJ,1510.9590708576002,kg +05f8da3f-99e2-3405-9934-423602ec4097,SESCO,II.1.1,Misiones,AR-N,annual,2016,gas oil combustion consumption by to the public,329.70484092,TJ,CO2,74100.0,kg/TJ,24431128.712171998,kg +cc17911e-a6e9-3d62-9253-cb4378993c33,SESCO,II.1.1,Misiones,AR-N,annual,2016,gas oil combustion consumption by to the public,329.70484092,TJ,CH4,3.9,kg/TJ,1285.8488795879998,kg +cc17911e-a6e9-3d62-9253-cb4378993c33,SESCO,II.1.1,Misiones,AR-N,annual,2016,gas oil combustion consumption by to the public,329.70484092,TJ,N2O,3.9,kg/TJ,1285.8488795879998,kg +66b50f8e-bbf7-3cbf-adb0-adadb8e7a8ef,SESCO,II.1.1,Salta,AR-A,annual,2016,gas oil combustion consumption by to the public,21.091367388,TJ,CO2,74100.0,kg/TJ,1562870.3234507998,kg +98fe2081-5249-3518-8242-82b2131baae0,SESCO,II.1.1,Salta,AR-A,annual,2016,gas oil combustion consumption by to the public,21.091367388,TJ,CH4,3.9,kg/TJ,82.25633281319999,kg +98fe2081-5249-3518-8242-82b2131baae0,SESCO,II.1.1,Salta,AR-A,annual,2016,gas oil combustion consumption by to the public,21.091367388,TJ,N2O,3.9,kg/TJ,82.25633281319999,kg +7e5ef733-9625-311a-b416-d5462364d9a9,SESCO,II.1.1,San Juan,AR-J,annual,2016,gas oil combustion consumption by to the public,377.60010901199996,TJ,CO2,74100.0,kg/TJ,27980168.0777892,kg +f35d237b-1c08-309f-9cb0-61fadb10543f,SESCO,II.1.1,San Juan,AR-J,annual,2016,gas oil combustion consumption by to the public,377.60010901199996,TJ,CH4,3.9,kg/TJ,1472.6404251467998,kg +f35d237b-1c08-309f-9cb0-61fadb10543f,SESCO,II.1.1,San Juan,AR-J,annual,2016,gas oil combustion consumption by to the public,377.60010901199996,TJ,N2O,3.9,kg/TJ,1472.6404251467998,kg +030bfc1d-e653-3e03-ba0a-9bbf82eba8d3,SESCO,II.1.1,San Luis,AR-D,annual,2016,gas oil combustion consumption by to the public,235.663885296,TJ,CO2,74100.0,kg/TJ,17462693.9004336,kg +1fdc1ad4-6639-33bc-8589-ef460038c998,SESCO,II.1.1,San Luis,AR-D,annual,2016,gas oil combustion consumption by to the public,235.663885296,TJ,CH4,3.9,kg/TJ,919.0891526544,kg +1fdc1ad4-6639-33bc-8589-ef460038c998,SESCO,II.1.1,San Luis,AR-D,annual,2016,gas oil combustion consumption by to the public,235.663885296,TJ,N2O,3.9,kg/TJ,919.0891526544,kg +01d587ef-6dcb-3d69-a9b6-b79ec9729f0c,SESCO,II.1.1,Santa Fe,AR-S,annual,2016,gas oil combustion consumption by to the public,2724.4792187760004,TJ,CO2,74100.0,kg/TJ,201883910.11130163,kg +d82540ea-e9da-3a1b-ad3b-e654b2fa1b9e,SESCO,II.1.1,Santa Fe,AR-S,annual,2016,gas oil combustion consumption by to the public,2724.4792187760004,TJ,CH4,3.9,kg/TJ,10625.468953226402,kg +d82540ea-e9da-3a1b-ad3b-e654b2fa1b9e,SESCO,II.1.1,Santa Fe,AR-S,annual,2016,gas oil combustion consumption by to the public,2724.4792187760004,TJ,N2O,3.9,kg/TJ,10625.468953226402,kg +5cba0f19-7693-3612-819e-1672cf5a23e2,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2016,gas oil combustion consumption by to the public,158.300480016,TJ,CO2,74100.0,kg/TJ,11730065.5691856,kg +0f40261e-6420-3035-a2b8-12b1128a9144,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2016,gas oil combustion consumption by to the public,158.300480016,TJ,CH4,3.9,kg/TJ,617.3718720623999,kg +0f40261e-6420-3035-a2b8-12b1128a9144,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2016,gas oil combustion consumption by to the public,158.300480016,TJ,N2O,3.9,kg/TJ,617.3718720623999,kg +6933f2ff-b93c-3b7d-b7f2-f7325d92b68e,SESCO,II.1.1,Tucuman,AR-T,annual,2016,gas oil combustion consumption by to the public,429.308460756,TJ,CO2,74100.0,kg/TJ,31811756.9420196,kg +62b40e72-8607-3225-8aec-cc9ff0816410,SESCO,II.1.1,Tucuman,AR-T,annual,2016,gas oil combustion consumption by to the public,429.308460756,TJ,CH4,3.9,kg/TJ,1674.3029969483998,kg +62b40e72-8607-3225-8aec-cc9ff0816410,SESCO,II.1.1,Tucuman,AR-T,annual,2016,gas oil combustion consumption by to the public,429.308460756,TJ,N2O,3.9,kg/TJ,1674.3029969483998,kg +c5858a77-3418-3ea2-9a29-16d5cc43215d,SESCO,II.1.1,Buenos Aires,AR-B,annual,2016,gas oil combustion consumption by to the public,472.48231388399995,TJ,CO2,74100.0,kg/TJ,35010939.4588044,kg +ba1c4cee-4442-3b94-b3fd-20aefa478ec5,SESCO,II.1.1,Buenos Aires,AR-B,annual,2016,gas oil combustion consumption by to the public,472.48231388399995,TJ,CH4,3.9,kg/TJ,1842.6810241475998,kg +ba1c4cee-4442-3b94-b3fd-20aefa478ec5,SESCO,II.1.1,Buenos Aires,AR-B,annual,2016,gas oil combustion consumption by to the public,472.48231388399995,TJ,N2O,3.9,kg/TJ,1842.6810241475998,kg +a0f43b1a-a311-3345-b00b-d6394cbd3cdd,SESCO,II.1.1,Capital Federal,AR-C,annual,2016,gas oil combustion consumption by to the public,33.244291751999995,TJ,CO2,74100.0,kg/TJ,2463402.0188231994,kg +69275c08-3b51-3e1e-99ca-a9d99fb3f7cf,SESCO,II.1.1,Capital Federal,AR-C,annual,2016,gas oil combustion consumption by to the public,33.244291751999995,TJ,CH4,3.9,kg/TJ,129.65273783279997,kg +69275c08-3b51-3e1e-99ca-a9d99fb3f7cf,SESCO,II.1.1,Capital Federal,AR-C,annual,2016,gas oil combustion consumption by to the public,33.244291751999995,TJ,N2O,3.9,kg/TJ,129.65273783279997,kg +dc531cec-11ef-37f6-8422-97b64e4de969,SESCO,II.1.1,Catamarca,AR-K,annual,2016,gas oil combustion consumption by to the public,39.7792269,TJ,CO2,74100.0,kg/TJ,2947640.71329,kg +ed72a467-3368-36d8-9d1b-16ea378d0408,SESCO,II.1.1,Catamarca,AR-K,annual,2016,gas oil combustion consumption by to the public,39.7792269,TJ,CH4,3.9,kg/TJ,155.13898490999998,kg +ed72a467-3368-36d8-9d1b-16ea378d0408,SESCO,II.1.1,Catamarca,AR-K,annual,2016,gas oil combustion consumption by to the public,39.7792269,TJ,N2O,3.9,kg/TJ,155.13898490999998,kg +6b7b9530-f7a9-34e1-a6b1-8a4aebee38fd,SESCO,II.1.1,Chaco,AR-H,annual,2016,gas oil combustion consumption by to the public,76.447394856,TJ,CO2,74100.0,kg/TJ,5664751.9588296,kg +1df1fda6-5dc2-3b6a-84c1-457d54866348,SESCO,II.1.1,Chaco,AR-H,annual,2016,gas oil combustion consumption by to the public,76.447394856,TJ,CH4,3.9,kg/TJ,298.1448399384,kg +1df1fda6-5dc2-3b6a-84c1-457d54866348,SESCO,II.1.1,Chaco,AR-H,annual,2016,gas oil combustion consumption by to the public,76.447394856,TJ,N2O,3.9,kg/TJ,298.1448399384,kg +b15eb449-8d3b-3f03-b2c6-9a6224419138,SESCO,II.1.1,Corrientes,AR-W,annual,2016,gas oil combustion consumption by to the public,119.81704366799998,TJ,CO2,74100.0,kg/TJ,8878442.9357988,kg +09e71ca4-0afd-3ab6-8922-dfc1186527c0,SESCO,II.1.1,Corrientes,AR-W,annual,2016,gas oil combustion consumption by to the public,119.81704366799998,TJ,CH4,3.9,kg/TJ,467.28647030519994,kg +09e71ca4-0afd-3ab6-8922-dfc1186527c0,SESCO,II.1.1,Corrientes,AR-W,annual,2016,gas oil combustion consumption by to the public,119.81704366799998,TJ,N2O,3.9,kg/TJ,467.28647030519994,kg +78fdc835-3f64-3e7d-91a9-fa394ec7a1b5,SESCO,II.1.1,Córdoba,AR-X,annual,2016,gas oil combustion consumption by to the public,230.152403124,TJ,CO2,74100.0,kg/TJ,17054293.0714884,kg +832fb3a9-8a16-3b5a-b1c3-2ca4898804bc,SESCO,II.1.1,Córdoba,AR-X,annual,2016,gas oil combustion consumption by to the public,230.152403124,TJ,CH4,3.9,kg/TJ,897.5943721836,kg +832fb3a9-8a16-3b5a-b1c3-2ca4898804bc,SESCO,II.1.1,Córdoba,AR-X,annual,2016,gas oil combustion consumption by to the public,230.152403124,TJ,N2O,3.9,kg/TJ,897.5943721836,kg +59c217e9-ce88-3321-b90b-5cc2efa67547,SESCO,II.1.1,Entre Rios,AR-E,annual,2016,gas oil combustion consumption by to the public,128.15636064,TJ,CO2,74100.0,kg/TJ,9496386.323424,kg +290fc9de-9b92-387f-8196-d8383a35fe52,SESCO,II.1.1,Entre Rios,AR-E,annual,2016,gas oil combustion consumption by to the public,128.15636064,TJ,CH4,3.9,kg/TJ,499.809806496,kg +290fc9de-9b92-387f-8196-d8383a35fe52,SESCO,II.1.1,Entre Rios,AR-E,annual,2016,gas oil combustion consumption by to the public,128.15636064,TJ,N2O,3.9,kg/TJ,499.809806496,kg +137f4275-65c3-390c-9468-b6d4bdd11c8d,SESCO,II.1.1,La Pampa,AR-L,annual,2016,gas oil combustion consumption by to the public,9.376979555999998,TJ,CO2,74100.0,kg/TJ,694834.1850995999,kg +e12857ff-2c54-3112-b04e-cf06dfc938a0,SESCO,II.1.1,La Pampa,AR-L,annual,2016,gas oil combustion consumption by to the public,9.376979555999998,TJ,CH4,3.9,kg/TJ,36.57022026839999,kg +e12857ff-2c54-3112-b04e-cf06dfc938a0,SESCO,II.1.1,La Pampa,AR-L,annual,2016,gas oil combustion consumption by to the public,9.376979555999998,TJ,N2O,3.9,kg/TJ,36.57022026839999,kg +6475aa3d-894e-36eb-9800-656a586f2b6e,SESCO,II.1.1,La Rioja,AR-F,annual,2016,gas oil combustion consumption by to the public,11.752718375999999,TJ,CO2,74100.0,kg/TJ,870876.4316615999,kg +d9beeee7-912a-3722-a270-6243ba0ced32,SESCO,II.1.1,La Rioja,AR-F,annual,2016,gas oil combustion consumption by to the public,11.752718375999999,TJ,CH4,3.9,kg/TJ,45.835601666399995,kg +d9beeee7-912a-3722-a270-6243ba0ced32,SESCO,II.1.1,La Rioja,AR-F,annual,2016,gas oil combustion consumption by to the public,11.752718375999999,TJ,N2O,3.9,kg/TJ,45.835601666399995,kg +d3102fa3-59e7-39c9-a48b-ec19636519b3,SESCO,II.1.1,Mendoza,AR-M,annual,2016,gas oil combustion consumption by to the public,62.593453272,TJ,CO2,74100.0,kg/TJ,4638174.8874552,kg +ab4ed32a-14d9-35f5-9a1a-50fba962e113,SESCO,II.1.1,Mendoza,AR-M,annual,2016,gas oil combustion consumption by to the public,62.593453272,TJ,CH4,3.9,kg/TJ,244.11446776079998,kg +ab4ed32a-14d9-35f5-9a1a-50fba962e113,SESCO,II.1.1,Mendoza,AR-M,annual,2016,gas oil combustion consumption by to the public,62.593453272,TJ,N2O,3.9,kg/TJ,244.11446776079998,kg +0ff383ad-e4c3-3595-9798-b780997ebc5a,SESCO,II.1.1,Misiones,AR-N,annual,2016,gas oil combustion consumption by to the public,71.5278942,TJ,CO2,74100.0,kg/TJ,5300216.960220001,kg +a512722b-51d5-31b5-a73e-ddf3f212d950,SESCO,II.1.1,Misiones,AR-N,annual,2016,gas oil combustion consumption by to the public,71.5278942,TJ,CH4,3.9,kg/TJ,278.95878738,kg +a512722b-51d5-31b5-a73e-ddf3f212d950,SESCO,II.1.1,Misiones,AR-N,annual,2016,gas oil combustion consumption by to the public,71.5278942,TJ,N2O,3.9,kg/TJ,278.95878738,kg +623f83c6-ef33-3da8-9fb0-c4f608b64898,SESCO,II.1.1,Salta,AR-A,annual,2016,gas oil combustion consumption by to the public,3.8660753039999998,TJ,CO2,74100.0,kg/TJ,286476.18002639996,kg +3c800e4e-00c7-3c49-b160-2b37396b9140,SESCO,II.1.1,Salta,AR-A,annual,2016,gas oil combustion consumption by to the public,3.8660753039999998,TJ,CH4,3.9,kg/TJ,15.077693685599998,kg +3c800e4e-00c7-3c49-b160-2b37396b9140,SESCO,II.1.1,Salta,AR-A,annual,2016,gas oil combustion consumption by to the public,3.8660753039999998,TJ,N2O,3.9,kg/TJ,15.077693685599998,kg +d5f17d54-60c6-3a57-bc8b-5f6fb5bb66bf,SESCO,II.1.1,San Juan,AR-J,annual,2016,gas oil combustion consumption by to the public,33.592618584,TJ,CO2,74100.0,kg/TJ,2489213.0370744,kg +3c1b1344-128b-3803-80f7-72be8b86e5fe,SESCO,II.1.1,San Juan,AR-J,annual,2016,gas oil combustion consumption by to the public,33.592618584,TJ,CH4,3.9,kg/TJ,131.0112124776,kg +3c1b1344-128b-3803-80f7-72be8b86e5fe,SESCO,II.1.1,San Juan,AR-J,annual,2016,gas oil combustion consumption by to the public,33.592618584,TJ,N2O,3.9,kg/TJ,131.0112124776,kg +9cd0a9cf-fade-3456-bc22-ae968669707d,SESCO,II.1.1,San Luis,AR-D,annual,2016,gas oil combustion consumption by to the public,53.868486672,TJ,CO2,74100.0,kg/TJ,3991654.8623952004,kg +3e2f539d-0766-3f6a-a561-e872e621b38c,SESCO,II.1.1,San Luis,AR-D,annual,2016,gas oil combustion consumption by to the public,53.868486672,TJ,CH4,3.9,kg/TJ,210.0870980208,kg +3e2f539d-0766-3f6a-a561-e872e621b38c,SESCO,II.1.1,San Luis,AR-D,annual,2016,gas oil combustion consumption by to the public,53.868486672,TJ,N2O,3.9,kg/TJ,210.0870980208,kg +418a5fa9-1fc1-3893-ba64-99ec16d4f0ef,SESCO,II.1.1,Santa Fe,AR-S,annual,2016,gas oil combustion consumption by to the public,453.513910332,TJ,CO2,74100.0,kg/TJ,33605380.755601205,kg +45eedb10-cf45-376a-a8ce-3f20ebd5a9a3,SESCO,II.1.1,Santa Fe,AR-S,annual,2016,gas oil combustion consumption by to the public,453.513910332,TJ,CH4,3.9,kg/TJ,1768.7042502948,kg +45eedb10-cf45-376a-a8ce-3f20ebd5a9a3,SESCO,II.1.1,Santa Fe,AR-S,annual,2016,gas oil combustion consumption by to the public,453.513910332,TJ,N2O,3.9,kg/TJ,1768.7042502948,kg +6427ab71-7415-3b1c-a22f-28b1b3dcbf2a,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2016,gas oil combustion consumption by to the public,42.327135312,TJ,CO2,74100.0,kg/TJ,3136440.7266192003,kg +4082cef2-66ef-3acb-9184-fa0e8f659f0d,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2016,gas oil combustion consumption by to the public,42.327135312,TJ,CH4,3.9,kg/TJ,165.0758277168,kg +4082cef2-66ef-3acb-9184-fa0e8f659f0d,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2016,gas oil combustion consumption by to the public,42.327135312,TJ,N2O,3.9,kg/TJ,165.0758277168,kg +b3a8bd12-083a-3b94-864d-58899728746a,SESCO,II.1.1,Tucuman,AR-T,annual,2016,gas oil combustion consumption by to the public,53.0497149,TJ,CO2,74100.0,kg/TJ,3930983.87409,kg +b36c059c-bbf0-3e91-a6a8-093776521270,SESCO,II.1.1,Tucuman,AR-T,annual,2016,gas oil combustion consumption by to the public,53.0497149,TJ,CH4,3.9,kg/TJ,206.89388810999998,kg +b36c059c-bbf0-3e91-a6a8-093776521270,SESCO,II.1.1,Tucuman,AR-T,annual,2016,gas oil combustion consumption by to the public,53.0497149,TJ,N2O,3.9,kg/TJ,206.89388810999998,kg +e6529626-0e82-3c73-967a-373b69bec01f,SESCO,II.1.1,Buenos Aires,AR-B,annual,2016,gas oil combustion consumption by public passenger transport,278.829708948,TJ,CO2,74100.0,kg/TJ,20661281.433046803,kg +d9951712-4f66-317a-85dc-2e1617fcbcb7,SESCO,II.1.1,Buenos Aires,AR-B,annual,2016,gas oil combustion consumption by public passenger transport,278.829708948,TJ,CH4,3.9,kg/TJ,1087.4358648972,kg +d9951712-4f66-317a-85dc-2e1617fcbcb7,SESCO,II.1.1,Buenos Aires,AR-B,annual,2016,gas oil combustion consumption by public passenger transport,278.829708948,TJ,N2O,3.9,kg/TJ,1087.4358648972,kg +ce2863c0-6edc-3ee9-aa5b-661e7bd92eeb,SESCO,II.1.1,Chaco,AR-H,annual,2016,gas oil combustion consumption by public passenger transport,14.378259504,TJ,CO2,74100.0,kg/TJ,1065429.0292464,kg +d5976fce-f182-3fc1-a09c-6101b851ddfb,SESCO,II.1.1,Chaco,AR-H,annual,2016,gas oil combustion consumption by public passenger transport,14.378259504,TJ,CH4,3.9,kg/TJ,56.0752120656,kg +d5976fce-f182-3fc1-a09c-6101b851ddfb,SESCO,II.1.1,Chaco,AR-H,annual,2016,gas oil combustion consumption by public passenger transport,14.378259504,TJ,N2O,3.9,kg/TJ,56.0752120656,kg +3be9ea7a-0d69-3bab-9ab0-465fd995bd79,SESCO,II.1.1,Corrientes,AR-W,annual,2016,gas oil combustion consumption by public passenger transport,40.7256612,TJ,CO2,74100.0,kg/TJ,3017771.49492,kg +76bd7fba-e99d-3440-9368-5d4941409a86,SESCO,II.1.1,Corrientes,AR-W,annual,2016,gas oil combustion consumption by public passenger transport,40.7256612,TJ,CH4,3.9,kg/TJ,158.83007867999999,kg +76bd7fba-e99d-3440-9368-5d4941409a86,SESCO,II.1.1,Corrientes,AR-W,annual,2016,gas oil combustion consumption by public passenger transport,40.7256612,TJ,N2O,3.9,kg/TJ,158.83007867999999,kg +e8a486c7-4a7e-339f-ae38-ec4a883ab52d,SESCO,II.1.1,Córdoba,AR-X,annual,2016,gas oil combustion consumption by public passenger transport,335.5111851,TJ,CO2,74100.0,kg/TJ,24861378.815909997,kg +d5a6f8f3-b40f-322a-8fee-63b851b446d7,SESCO,II.1.1,Córdoba,AR-X,annual,2016,gas oil combustion consumption by public passenger transport,335.5111851,TJ,CH4,3.9,kg/TJ,1308.49362189,kg +d5a6f8f3-b40f-322a-8fee-63b851b446d7,SESCO,II.1.1,Córdoba,AR-X,annual,2016,gas oil combustion consumption by public passenger transport,335.5111851,TJ,N2O,3.9,kg/TJ,1308.49362189,kg +f7881c1f-2444-39cb-8751-dd3d16c1f631,SESCO,II.1.1,Entre Rios,AR-E,annual,2016,gas oil combustion consumption by public passenger transport,100.779715932,TJ,CO2,74100.0,kg/TJ,7467776.9505612,kg +ca17a7e1-1a8e-362f-ba8b-74963f8a2a9d,SESCO,II.1.1,Entre Rios,AR-E,annual,2016,gas oil combustion consumption by public passenger transport,100.779715932,TJ,CH4,3.9,kg/TJ,393.0408921348,kg +ca17a7e1-1a8e-362f-ba8b-74963f8a2a9d,SESCO,II.1.1,Entre Rios,AR-E,annual,2016,gas oil combustion consumption by public passenger transport,100.779715932,TJ,N2O,3.9,kg/TJ,393.0408921348,kg +db281374-fc17-3dcc-bcd8-7dbc277be97e,SESCO,II.1.1,Jujuy,AR-Y,annual,2016,gas oil combustion consumption by public passenger transport,100.18061155199999,TJ,CO2,74100.0,kg/TJ,7423383.316003199,kg +81876e61-72db-365f-88dd-1cdf529662e4,SESCO,II.1.1,Jujuy,AR-Y,annual,2016,gas oil combustion consumption by public passenger transport,100.18061155199999,TJ,CH4,3.9,kg/TJ,390.7043850527999,kg +81876e61-72db-365f-88dd-1cdf529662e4,SESCO,II.1.1,Jujuy,AR-Y,annual,2016,gas oil combustion consumption by public passenger transport,100.18061155199999,TJ,N2O,3.9,kg/TJ,390.7043850527999,kg +1cba7c20-1a56-3793-b7ed-8b5c571e3c70,SESCO,II.1.1,Salta,AR-A,annual,2016,gas oil combustion consumption by public passenger transport,88.80195911999999,TJ,CO2,74100.0,kg/TJ,6580225.170791999,kg +b77065bc-09d4-3482-90bb-168bb0acc468,SESCO,II.1.1,Salta,AR-A,annual,2016,gas oil combustion consumption by public passenger transport,88.80195911999999,TJ,CH4,3.9,kg/TJ,346.32764056799994,kg +b77065bc-09d4-3482-90bb-168bb0acc468,SESCO,II.1.1,Salta,AR-A,annual,2016,gas oil combustion consumption by public passenger transport,88.80195911999999,TJ,N2O,3.9,kg/TJ,346.32764056799994,kg +702f01b2-ae5f-38fd-a898-fb12b42cac70,SESCO,II.1.1,Santa Fe,AR-S,annual,2016,gas oil combustion consumption by public passenger transport,294.059681664,TJ,CO2,74100.0,kg/TJ,21789822.4113024,kg +42e1c2b7-f24a-3a9c-92fd-5c89b07e5a3c,SESCO,II.1.1,Santa Fe,AR-S,annual,2016,gas oil combustion consumption by public passenger transport,294.059681664,TJ,CH4,3.9,kg/TJ,1146.8327584895999,kg +42e1c2b7-f24a-3a9c-92fd-5c89b07e5a3c,SESCO,II.1.1,Santa Fe,AR-S,annual,2016,gas oil combustion consumption by public passenger transport,294.059681664,TJ,N2O,3.9,kg/TJ,1146.8327584895999,kg +1c1b8a40-8ca1-3c1a-b44e-594c33204002,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2016,gas oil combustion consumption by public passenger transport,122.61948610799999,TJ,CO2,74100.0,kg/TJ,9086103.920602798,kg +ff49c440-023d-3a31-9d6e-599b25eae28c,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2016,gas oil combustion consumption by public passenger transport,122.61948610799999,TJ,CH4,3.9,kg/TJ,478.21599582119995,kg +ff49c440-023d-3a31-9d6e-599b25eae28c,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2016,gas oil combustion consumption by public passenger transport,122.61948610799999,TJ,N2O,3.9,kg/TJ,478.21599582119995,kg +f61f7f9c-e310-3f80-b509-c5d8c89d0688,SESCO,II.1.1,Tucuman,AR-T,annual,2016,gas oil combustion consumption by public passenger transport,30.535208676,TJ,CO2,74100.0,kg/TJ,2262658.9628916,kg +95c6f04d-452c-34db-bc54-b0ad11b6dfbd,SESCO,II.1.1,Tucuman,AR-T,annual,2016,gas oil combustion consumption by public passenger transport,30.535208676,TJ,CH4,3.9,kg/TJ,119.0873138364,kg +95c6f04d-452c-34db-bc54-b0ad11b6dfbd,SESCO,II.1.1,Tucuman,AR-T,annual,2016,gas oil combustion consumption by public passenger transport,30.535208676,TJ,N2O,3.9,kg/TJ,119.0873138364,kg +4eb11c39-4509-3eb6-8124-975919ce9bf8,SESCO,II.1.1,Corrientes,AR-W,annual,2016,gas oil combustion consumption by public passenger transport,1.04130348,TJ,CO2,74100.0,kg/TJ,77160.587868,kg +b3ce020f-9f57-30f4-a466-25f769d2f403,SESCO,II.1.1,Corrientes,AR-W,annual,2016,gas oil combustion consumption by public passenger transport,1.04130348,TJ,CH4,3.9,kg/TJ,4.061083572,kg +b3ce020f-9f57-30f4-a466-25f769d2f403,SESCO,II.1.1,Corrientes,AR-W,annual,2016,gas oil combustion consumption by public passenger transport,1.04130348,TJ,N2O,3.9,kg/TJ,4.061083572,kg +2f063fd7-1414-3a50-b5a9-c64da6992781,SESCO,II.1.1,Entre Rios,AR-E,annual,2016,gas oil combustion consumption by public passenger transport,0.683133948,TJ,CO2,74100.0,kg/TJ,50620.2255468,kg +e785bb21-e581-3dc3-9cbe-bdd3e83b03e5,SESCO,II.1.1,Entre Rios,AR-E,annual,2016,gas oil combustion consumption by public passenger transport,0.683133948,TJ,CH4,3.9,kg/TJ,2.6642223972,kg +e785bb21-e581-3dc3-9cbe-bdd3e83b03e5,SESCO,II.1.1,Entre Rios,AR-E,annual,2016,gas oil combustion consumption by public passenger transport,0.683133948,TJ,N2O,3.9,kg/TJ,2.6642223972,kg +74a34b44-5f61-3c81-b3ee-55b881d183fc,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2016,gas oil combustion consumption by public passenger transport,0.393585192,TJ,CO2,74100.0,kg/TJ,29164.662727199997,kg +b036a28c-4524-3e79-9f3a-eb050bc1b946,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2016,gas oil combustion consumption by public passenger transport,0.393585192,TJ,CH4,3.9,kg/TJ,1.5349822487999998,kg +b036a28c-4524-3e79-9f3a-eb050bc1b946,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2016,gas oil combustion consumption by public passenger transport,0.393585192,TJ,N2O,3.9,kg/TJ,1.5349822487999998,kg +7643497d-f394-3b1f-92ac-30084c7f0613,SESCO,II.1.1,Tucuman,AR-T,annual,2016,gas oil combustion consumption by public passenger transport,0.17946221999999998,TJ,CO2,74100.0,kg/TJ,13298.150501999999,kg +3b186a8f-6b05-3fd9-beb1-c0bc649f270d,SESCO,II.1.1,Tucuman,AR-T,annual,2016,gas oil combustion consumption by public passenger transport,0.17946221999999998,TJ,CH4,3.9,kg/TJ,0.6999026579999998,kg +3b186a8f-6b05-3fd9-beb1-c0bc649f270d,SESCO,II.1.1,Tucuman,AR-T,annual,2016,gas oil combustion consumption by public passenger transport,0.17946221999999998,TJ,N2O,3.9,kg/TJ,0.6999026579999998,kg +f9fc498f-d1c4-337a-a316-a463e2f60000,SESCO,II.5.1,Buenos Aires,AR-B,annual,2016,gas oil combustion consumption by agriculture machines,548.362180464,TJ,CO2,74100.0,kg/TJ,40633637.5723824,kg +ab11570d-17d1-3e27-b287-a0235532ba57,SESCO,II.5.1,Buenos Aires,AR-B,annual,2016,gas oil combustion consumption by agriculture machines,548.362180464,TJ,CH4,3.9,kg/TJ,2138.6125038095997,kg +ab11570d-17d1-3e27-b287-a0235532ba57,SESCO,II.5.1,Buenos Aires,AR-B,annual,2016,gas oil combustion consumption by agriculture machines,548.362180464,TJ,N2O,3.9,kg/TJ,2138.6125038095997,kg +67a2c75f-bf7d-3c0d-9553-afae943902de,SESCO,II.5.1,Córdoba,AR-X,annual,2016,gas oil combustion consumption by agriculture machines,63.65401593599999,TJ,CO2,74100.0,kg/TJ,4716762.580857599,kg +3b969fb0-6470-377d-b8ea-362ee7b8fd9b,SESCO,II.5.1,Córdoba,AR-X,annual,2016,gas oil combustion consumption by agriculture machines,63.65401593599999,TJ,CH4,3.9,kg/TJ,248.25066215039996,kg +3b969fb0-6470-377d-b8ea-362ee7b8fd9b,SESCO,II.5.1,Córdoba,AR-X,annual,2016,gas oil combustion consumption by agriculture machines,63.65401593599999,TJ,N2O,3.9,kg/TJ,248.25066215039996,kg +cb818b47-354a-32f8-a029-1e2fd80f7838,SESCO,II.5.1,La Pampa,AR-L,annual,2016,gas oil combustion consumption by agriculture machines,54.17328168,TJ,CO2,74100.0,kg/TJ,4014240.1724880002,kg +b8aceb62-c787-384c-b158-fb1a1b79c569,SESCO,II.5.1,La Pampa,AR-L,annual,2016,gas oil combustion consumption by agriculture machines,54.17328168,TJ,CH4,3.9,kg/TJ,211.275798552,kg +b8aceb62-c787-384c-b158-fb1a1b79c569,SESCO,II.5.1,La Pampa,AR-L,annual,2016,gas oil combustion consumption by agriculture machines,54.17328168,TJ,N2O,3.9,kg/TJ,211.275798552,kg +3a27689a-0e75-3e7d-9770-c19aa3701907,SESCO,II.5.1,Neuquén,AR-Q,annual,2016,gas oil combustion consumption by agriculture machines,12.764432351999998,TJ,CO2,74100.0,kg/TJ,945844.4372831999,kg +c4709580-44a2-337f-be4f-1771e21d2549,SESCO,II.5.1,Neuquén,AR-Q,annual,2016,gas oil combustion consumption by agriculture machines,12.764432351999998,TJ,CH4,3.9,kg/TJ,49.781286172799994,kg +c4709580-44a2-337f-be4f-1771e21d2549,SESCO,II.5.1,Neuquén,AR-Q,annual,2016,gas oil combustion consumption by agriculture machines,12.764432351999998,TJ,N2O,3.9,kg/TJ,49.781286172799994,kg +3f719f07-0271-3a26-9389-0222c2a5de8c,SESCO,II.5.1,Rio Negro,AR-R,annual,2016,gas oil combustion consumption by agriculture machines,5.841853752,TJ,CO2,74100.0,kg/TJ,432881.36302319996,kg +0e8a5dda-81b0-308f-ab59-42b91360575e,SESCO,II.5.1,Rio Negro,AR-R,annual,2016,gas oil combustion consumption by agriculture machines,5.841853752,TJ,CH4,3.9,kg/TJ,22.783229632799998,kg +0e8a5dda-81b0-308f-ab59-42b91360575e,SESCO,II.5.1,Rio Negro,AR-R,annual,2016,gas oil combustion consumption by agriculture machines,5.841853752,TJ,N2O,3.9,kg/TJ,22.783229632799998,kg +56892a89-be99-30c1-868d-c68222728ac8,SESCO,II.1.1,Buenos Aires,AR-B,annual,2016,gas oil combustion consumption by to the public,8034.014680272,TJ,CO2,74100.0,kg/TJ,595320487.8081552,kg +974c1cb4-efed-3fa9-94cc-403525a1fde4,SESCO,II.1.1,Buenos Aires,AR-B,annual,2016,gas oil combustion consumption by to the public,8034.014680272,TJ,CH4,3.9,kg/TJ,31332.6572530608,kg +974c1cb4-efed-3fa9-94cc-403525a1fde4,SESCO,II.1.1,Buenos Aires,AR-B,annual,2016,gas oil combustion consumption by to the public,8034.014680272,TJ,N2O,3.9,kg/TJ,31332.6572530608,kg +e73fa2f9-e468-3ad4-af19-0e5b5742c1a8,SESCO,II.1.1,Capital Federal,AR-C,annual,2016,gas oil combustion consumption by to the public,547.799499492,TJ,CO2,74100.0,kg/TJ,40591942.912357196,kg +ad07644a-ea08-3209-a243-5ba6d0e97843,SESCO,II.1.1,Capital Federal,AR-C,annual,2016,gas oil combustion consumption by to the public,547.799499492,TJ,CH4,3.9,kg/TJ,2136.4180480187997,kg +ad07644a-ea08-3209-a243-5ba6d0e97843,SESCO,II.1.1,Capital Federal,AR-C,annual,2016,gas oil combustion consumption by to the public,547.799499492,TJ,N2O,3.9,kg/TJ,2136.4180480187997,kg +0f5e78d7-6eff-3714-b987-b45fe2e50ee4,SESCO,II.1.1,Chubut,AR-U,annual,2016,gas oil combustion consumption by to the public,1329.441121512,TJ,CO2,74100.0,kg/TJ,98511587.1040392,kg +59f47c59-4a91-3d43-9ead-c6138095d52d,SESCO,II.1.1,Chubut,AR-U,annual,2016,gas oil combustion consumption by to the public,1329.441121512,TJ,CH4,3.9,kg/TJ,5184.8203738968,kg +59f47c59-4a91-3d43-9ead-c6138095d52d,SESCO,II.1.1,Chubut,AR-U,annual,2016,gas oil combustion consumption by to the public,1329.441121512,TJ,N2O,3.9,kg/TJ,5184.8203738968,kg +a224b77e-f793-3cf1-ab92-ffe0217c409f,SESCO,II.1.1,Córdoba,AR-X,annual,2016,gas oil combustion consumption by to the public,443.81751078,TJ,CO2,74100.0,kg/TJ,32886877.548798002,kg +1b6ce56d-6039-328f-a197-4df54202b0a4,SESCO,II.1.1,Córdoba,AR-X,annual,2016,gas oil combustion consumption by to the public,443.81751078,TJ,CH4,3.9,kg/TJ,1730.888292042,kg +1b6ce56d-6039-328f-a197-4df54202b0a4,SESCO,II.1.1,Córdoba,AR-X,annual,2016,gas oil combustion consumption by to the public,443.81751078,TJ,N2O,3.9,kg/TJ,1730.888292042,kg +a8e1836c-c530-302a-ab6e-321da937b61d,SESCO,II.1.1,Entre Rios,AR-E,annual,2016,gas oil combustion consumption by to the public,664.624889712,TJ,CO2,74100.0,kg/TJ,49248704.327659205,kg +714293ec-0c8b-3279-992b-fdd95366d5bb,SESCO,II.1.1,Entre Rios,AR-E,annual,2016,gas oil combustion consumption by to the public,664.624889712,TJ,CH4,3.9,kg/TJ,2592.0370698768,kg +714293ec-0c8b-3279-992b-fdd95366d5bb,SESCO,II.1.1,Entre Rios,AR-E,annual,2016,gas oil combustion consumption by to the public,664.624889712,TJ,N2O,3.9,kg/TJ,2592.0370698768,kg +c1153d73-1cab-3e3b-8804-de8d39d6a5de,SESCO,II.1.1,La Pampa,AR-L,annual,2016,gas oil combustion consumption by to the public,1416.54068724,TJ,CO2,74100.0,kg/TJ,104965664.924484,kg +23f54e8d-564a-3f23-9dbb-5d15bc20605c,SESCO,II.1.1,La Pampa,AR-L,annual,2016,gas oil combustion consumption by to the public,1416.54068724,TJ,CH4,3.9,kg/TJ,5524.508680235999,kg +23f54e8d-564a-3f23-9dbb-5d15bc20605c,SESCO,II.1.1,La Pampa,AR-L,annual,2016,gas oil combustion consumption by to the public,1416.54068724,TJ,N2O,3.9,kg/TJ,5524.508680235999,kg +5de1ae3c-a3e0-393b-9531-ff77a9b4d914,SESCO,II.1.1,Mendoza,AR-M,annual,2016,gas oil combustion consumption by to the public,23.477544887999997,TJ,CO2,74100.0,kg/TJ,1739686.0762007998,kg +4bb7312d-e08d-3605-863c-be4ce0af8906,SESCO,II.1.1,Mendoza,AR-M,annual,2016,gas oil combustion consumption by to the public,23.477544887999997,TJ,CH4,3.9,kg/TJ,91.56242506319998,kg +4bb7312d-e08d-3605-863c-be4ce0af8906,SESCO,II.1.1,Mendoza,AR-M,annual,2016,gas oil combustion consumption by to the public,23.477544887999997,TJ,N2O,3.9,kg/TJ,91.56242506319998,kg +7881fd03-0fcd-3259-ab53-944a426a4557,SESCO,II.1.1,Neuquén,AR-Q,annual,2016,gas oil combustion consumption by to the public,649.588722468,TJ,CO2,74100.0,kg/TJ,48134524.3348788,kg +82a456e0-18d9-3d33-8ebb-827f0817282e,SESCO,II.1.1,Neuquén,AR-Q,annual,2016,gas oil combustion consumption by to the public,649.588722468,TJ,CH4,3.9,kg/TJ,2533.3960176252,kg +82a456e0-18d9-3d33-8ebb-827f0817282e,SESCO,II.1.1,Neuquén,AR-Q,annual,2016,gas oil combustion consumption by to the public,649.588722468,TJ,N2O,3.9,kg/TJ,2533.3960176252,kg +d6540a9c-f927-317e-9b86-aaea18d5beee,SESCO,II.1.1,Rio Negro,AR-R,annual,2016,gas oil combustion consumption by to the public,2113.3873945799996,TJ,CO2,74100.0,kg/TJ,156602005.93837798,kg +e68d2267-2efa-32d2-ac6d-d149532905b4,SESCO,II.1.1,Rio Negro,AR-R,annual,2016,gas oil combustion consumption by to the public,2113.3873945799996,TJ,CH4,3.9,kg/TJ,8242.210838861998,kg +e68d2267-2efa-32d2-ac6d-d149532905b4,SESCO,II.1.1,Rio Negro,AR-R,annual,2016,gas oil combustion consumption by to the public,2113.3873945799996,TJ,N2O,3.9,kg/TJ,8242.210838861998,kg +af51b997-e0b2-3ade-8827-b2c04696ef53,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2016,gas oil combustion consumption by to the public,765.3815972040001,TJ,CO2,74100.0,kg/TJ,56714776.3528164,kg +85b2939c-6e75-30b0-8159-444470c6f958,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2016,gas oil combustion consumption by to the public,765.3815972040001,TJ,CH4,3.9,kg/TJ,2984.9882290956,kg +85b2939c-6e75-30b0-8159-444470c6f958,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2016,gas oil combustion consumption by to the public,765.3815972040001,TJ,N2O,3.9,kg/TJ,2984.9882290956,kg +ab198db7-38c2-3048-b030-e6671cc1539e,SESCO,II.1.1,Santa Fe,AR-S,annual,2016,gas oil combustion consumption by to the public,384.834219,TJ,CO2,74100.0,kg/TJ,28516215.6279,kg +516675eb-0ed5-3b35-ae6a-b8e93a479845,SESCO,II.1.1,Santa Fe,AR-S,annual,2016,gas oil combustion consumption by to the public,384.834219,TJ,CH4,3.9,kg/TJ,1500.8534541000001,kg +516675eb-0ed5-3b35-ae6a-b8e93a479845,SESCO,II.1.1,Santa Fe,AR-S,annual,2016,gas oil combustion consumption by to the public,384.834219,TJ,N2O,3.9,kg/TJ,1500.8534541000001,kg +3321f878-783a-3a39-8d56-46f91a438e63,SESCO,II.1.1,Buenos Aires,AR-B,annual,2016,gas oil combustion consumption by to the public,1210.240046652,TJ,CO2,74100.0,kg/TJ,89678787.4569132,kg +5bd0f5cd-8402-3131-9d78-1f4e8ba941bc,SESCO,II.1.1,Buenos Aires,AR-B,annual,2016,gas oil combustion consumption by to the public,1210.240046652,TJ,CH4,3.9,kg/TJ,4719.9361819428,kg +5bd0f5cd-8402-3131-9d78-1f4e8ba941bc,SESCO,II.1.1,Buenos Aires,AR-B,annual,2016,gas oil combustion consumption by to the public,1210.240046652,TJ,N2O,3.9,kg/TJ,4719.9361819428,kg +b1fea958-f512-3c2c-ac52-90063218f222,SESCO,II.1.1,Capital Federal,AR-C,annual,2016,gas oil combustion consumption by to the public,204.442331604,TJ,CO2,74100.0,kg/TJ,15149176.771856401,kg +1b387fc2-2c43-3df5-be03-290c30a39349,SESCO,II.1.1,Capital Federal,AR-C,annual,2016,gas oil combustion consumption by to the public,204.442331604,TJ,CH4,3.9,kg/TJ,797.3250932556,kg +1b387fc2-2c43-3df5-be03-290c30a39349,SESCO,II.1.1,Capital Federal,AR-C,annual,2016,gas oil combustion consumption by to the public,204.442331604,TJ,N2O,3.9,kg/TJ,797.3250932556,kg +09508739-5170-3fb6-be1c-965966513888,SESCO,II.1.1,Chubut,AR-U,annual,2016,gas oil combustion consumption by to the public,301.77318351599996,TJ,CO2,74100.0,kg/TJ,22361392.898535598,kg +bb805223-2af9-3e8d-a4f9-705f912de449,SESCO,II.1.1,Chubut,AR-U,annual,2016,gas oil combustion consumption by to the public,301.77318351599996,TJ,CH4,3.9,kg/TJ,1176.9154157123999,kg +bb805223-2af9-3e8d-a4f9-705f912de449,SESCO,II.1.1,Chubut,AR-U,annual,2016,gas oil combustion consumption by to the public,301.77318351599996,TJ,N2O,3.9,kg/TJ,1176.9154157123999,kg +5730adff-f049-3c23-982b-d8a5cf021f1f,SESCO,II.1.1,Córdoba,AR-X,annual,2016,gas oil combustion consumption by to the public,103.02429219599999,TJ,CO2,74100.0,kg/TJ,7634100.051723599,kg +fa87f238-645f-3166-bd05-961a466431eb,SESCO,II.1.1,Córdoba,AR-X,annual,2016,gas oil combustion consumption by to the public,103.02429219599999,TJ,CH4,3.9,kg/TJ,401.79473956439995,kg +fa87f238-645f-3166-bd05-961a466431eb,SESCO,II.1.1,Córdoba,AR-X,annual,2016,gas oil combustion consumption by to the public,103.02429219599999,TJ,N2O,3.9,kg/TJ,401.79473956439995,kg +d07edab2-e94b-3f30-95db-d43165905ce7,SESCO,II.1.1,Entre Rios,AR-E,annual,2016,gas oil combustion consumption by to the public,124.87881378,TJ,CO2,74100.0,kg/TJ,9253520.101098001,kg +51b62f8b-50c0-3fb6-936b-689f4a1827f8,SESCO,II.1.1,Entre Rios,AR-E,annual,2016,gas oil combustion consumption by to the public,124.87881378,TJ,CH4,3.9,kg/TJ,487.027373742,kg +51b62f8b-50c0-3fb6-936b-689f4a1827f8,SESCO,II.1.1,Entre Rios,AR-E,annual,2016,gas oil combustion consumption by to the public,124.87881378,TJ,N2O,3.9,kg/TJ,487.027373742,kg +0c205780-e405-3c54-8557-b35b7c3ace97,SESCO,II.1.1,La Pampa,AR-L,annual,2016,gas oil combustion consumption by to the public,125.912882424,TJ,CO2,74100.0,kg/TJ,9330144.5876184,kg +75cb902c-6fd5-30a5-9e58-2bf399de48ba,SESCO,II.1.1,La Pampa,AR-L,annual,2016,gas oil combustion consumption by to the public,125.912882424,TJ,CH4,3.9,kg/TJ,491.0602414536,kg +75cb902c-6fd5-30a5-9e58-2bf399de48ba,SESCO,II.1.1,La Pampa,AR-L,annual,2016,gas oil combustion consumption by to the public,125.912882424,TJ,N2O,3.9,kg/TJ,491.0602414536,kg +3339e156-f1dc-3159-9b45-7c95e7cb33d4,SESCO,II.1.1,Neuquén,AR-Q,annual,2016,gas oil combustion consumption by to the public,341.927354076,TJ,CO2,74100.0,kg/TJ,25336816.937031597,kg +d84611b0-d5eb-34e6-b44a-e9fe87d76cb6,SESCO,II.1.1,Neuquén,AR-Q,annual,2016,gas oil combustion consumption by to the public,341.927354076,TJ,CH4,3.9,kg/TJ,1333.5166808963997,kg +d84611b0-d5eb-34e6-b44a-e9fe87d76cb6,SESCO,II.1.1,Neuquén,AR-Q,annual,2016,gas oil combustion consumption by to the public,341.927354076,TJ,N2O,3.9,kg/TJ,1333.5166808963997,kg +065de24d-d7ca-3d76-a308-0f481764903a,SESCO,II.1.1,Rio Negro,AR-R,annual,2016,gas oil combustion consumption by to the public,271.004809404,TJ,CO2,74100.0,kg/TJ,20081456.3768364,kg +69e7df84-cc7d-3663-8ca7-3769aa180530,SESCO,II.1.1,Rio Negro,AR-R,annual,2016,gas oil combustion consumption by to the public,271.004809404,TJ,CH4,3.9,kg/TJ,1056.9187566756,kg +69e7df84-cc7d-3663-8ca7-3769aa180530,SESCO,II.1.1,Rio Negro,AR-R,annual,2016,gas oil combustion consumption by to the public,271.004809404,TJ,N2O,3.9,kg/TJ,1056.9187566756,kg +c602614f-5a27-324e-a9da-a1749685ead9,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2016,gas oil combustion consumption by to the public,250.140279228,TJ,CO2,74100.0,kg/TJ,18535394.6907948,kg +8f0afc26-bbe3-3b83-85e9-bd1fc71316f4,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2016,gas oil combustion consumption by to the public,250.140279228,TJ,CH4,3.9,kg/TJ,975.5470889892,kg +8f0afc26-bbe3-3b83-85e9-bd1fc71316f4,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2016,gas oil combustion consumption by to the public,250.140279228,TJ,N2O,3.9,kg/TJ,975.5470889892,kg +ad575d02-5926-3158-8545-52308958feaa,SESCO,II.1.1,Santa Fe,AR-S,annual,2016,gas oil combustion consumption by to the public,161.996332596,TJ,CO2,74100.0,kg/TJ,12003928.2453636,kg +655ab869-2488-38f3-8d12-896d79b2170f,SESCO,II.1.1,Santa Fe,AR-S,annual,2016,gas oil combustion consumption by to the public,161.996332596,TJ,CH4,3.9,kg/TJ,631.7856971244,kg +655ab869-2488-38f3-8d12-896d79b2170f,SESCO,II.1.1,Santa Fe,AR-S,annual,2016,gas oil combustion consumption by to the public,161.996332596,TJ,N2O,3.9,kg/TJ,631.7856971244,kg +da62d2bb-5e60-3640-b686-4904d9c6bbf9,SESCO,II.2.1,Buenos Aires,AR-B,annual,2016,gas oil combustion consumption by railway transport,3.8343547200000003,TJ,CO2,74100.0,kg/TJ,284125.68475200003,kg +4f822ad6-2fc6-30e0-8d1e-48635175924c,SESCO,II.2.1,Buenos Aires,AR-B,annual,2016,gas oil combustion consumption by railway transport,3.8343547200000003,TJ,CH4,3.9,kg/TJ,14.953983408000001,kg +4f822ad6-2fc6-30e0-8d1e-48635175924c,SESCO,II.2.1,Buenos Aires,AR-B,annual,2016,gas oil combustion consumption by railway transport,3.8343547200000003,TJ,N2O,3.9,kg/TJ,14.953983408000001,kg +6fe01190-e899-3375-9ce6-028d9e03a7c8,SESCO,II.1.1,Buenos Aires,AR-B,annual,2016,gasoline combustion consumption by freight transport,1.037949,TJ,CO2,69300.0,kg/TJ,71929.8657,kg +8af476d1-5257-3057-a7f1-c25026d059c3,SESCO,II.1.1,Buenos Aires,AR-B,annual,2016,gasoline combustion consumption by freight transport,1.037949,TJ,CH4,33.0,kg/TJ,34.252317,kg +b841c359-0dbf-32d8-9af5-555f1ef16a30,SESCO,II.1.1,Buenos Aires,AR-B,annual,2016,gasoline combustion consumption by freight transport,1.037949,TJ,N2O,3.2,kg/TJ,3.3214368000000003,kg +52236d0b-537b-3590-bccb-fa2fc7cdfc92,SESCO,II.1.1,Buenos Aires,AR-B,annual,2016,gas oil combustion consumption by freight transport,210.976786356,TJ,CO2,74100.0,kg/TJ,15633379.8689796,kg +0eeff11e-4e56-3134-94b6-a877d592c0b6,SESCO,II.1.1,Buenos Aires,AR-B,annual,2016,gas oil combustion consumption by freight transport,210.976786356,TJ,CH4,3.9,kg/TJ,822.8094667884,kg +0eeff11e-4e56-3134-94b6-a877d592c0b6,SESCO,II.1.1,Buenos Aires,AR-B,annual,2016,gas oil combustion consumption by freight transport,210.976786356,TJ,N2O,3.9,kg/TJ,822.8094667884,kg +51600aea-e807-30ec-b80c-2b276ae805ef,SESCO,II.1.1,Chubut,AR-U,annual,2016,gas oil combustion consumption by freight transport,4.596587856,TJ,CO2,74100.0,kg/TJ,340607.16012960003,kg +7ba67a2a-4497-3e06-865c-322ded752716,SESCO,II.1.1,Chubut,AR-U,annual,2016,gas oil combustion consumption by freight transport,4.596587856,TJ,CH4,3.9,kg/TJ,17.9266926384,kg +7ba67a2a-4497-3e06-865c-322ded752716,SESCO,II.1.1,Chubut,AR-U,annual,2016,gas oil combustion consumption by freight transport,4.596587856,TJ,N2O,3.9,kg/TJ,17.9266926384,kg +4ea3ec45-53d4-344f-bcd9-e790db63869e,SESCO,II.1.1,San Luis,AR-D,annual,2016,gas oil combustion consumption by freight transport,47.061412608,TJ,CO2,74100.0,kg/TJ,3487250.6742527997,kg +0f870ec8-93aa-36a6-b18a-c67ab11177b5,SESCO,II.1.1,San Luis,AR-D,annual,2016,gas oil combustion consumption by freight transport,47.061412608,TJ,CH4,3.9,kg/TJ,183.5395091712,kg +0f870ec8-93aa-36a6-b18a-c67ab11177b5,SESCO,II.1.1,San Luis,AR-D,annual,2016,gas oil combustion consumption by freight transport,47.061412608,TJ,N2O,3.9,kg/TJ,183.5395091712,kg +75c7aa6a-7147-334d-a245-d8042f391acf,SESCO,II.1.1,Buenos Aires,AR-B,annual,2016,gas oil combustion consumption by freight transport,2.62588788,TJ,CO2,74100.0,kg/TJ,194578.291908,kg +7101af19-4f5e-300e-9a8d-4633d0b824fe,SESCO,II.1.1,Buenos Aires,AR-B,annual,2016,gas oil combustion consumption by freight transport,2.62588788,TJ,CH4,3.9,kg/TJ,10.240962732,kg +7101af19-4f5e-300e-9a8d-4633d0b824fe,SESCO,II.1.1,Buenos Aires,AR-B,annual,2016,gas oil combustion consumption by freight transport,2.62588788,TJ,N2O,3.9,kg/TJ,10.240962732,kg +5f89c6f4-442d-3aa4-a98b-1fab7d87a8a0,SESCO,II.1.1,Buenos Aires,AR-B,annual,2016,gas oil combustion consumption by public passenger transport,459.017821752,TJ,CO2,74100.0,kg/TJ,34013220.5918232,kg +8370355b-497a-3f58-a2ba-3863fa9a9912,SESCO,II.1.1,Buenos Aires,AR-B,annual,2016,gas oil combustion consumption by public passenger transport,459.017821752,TJ,CH4,3.9,kg/TJ,1790.1695048328,kg +8370355b-497a-3f58-a2ba-3863fa9a9912,SESCO,II.1.1,Buenos Aires,AR-B,annual,2016,gas oil combustion consumption by public passenger transport,459.017821752,TJ,N2O,3.9,kg/TJ,1790.1695048328,kg +4864499c-b26a-3dd5-9205-499ff6e0fad6,SESCO,II.1.1,Capital Federal,AR-C,annual,2016,gas oil combustion consumption by public passenger transport,63.907018476000005,TJ,CO2,74100.0,kg/TJ,4735510.0690716,kg +62f10833-49d6-3fe1-902c-464735b951af,SESCO,II.1.1,Capital Federal,AR-C,annual,2016,gas oil combustion consumption by public passenger transport,63.907018476000005,TJ,CH4,3.9,kg/TJ,249.2373720564,kg +62f10833-49d6-3fe1-902c-464735b951af,SESCO,II.1.1,Capital Federal,AR-C,annual,2016,gas oil combustion consumption by public passenger transport,63.907018476000005,TJ,N2O,3.9,kg/TJ,249.2373720564,kg +cf3fc7e5-5fb3-3122-8155-39e6a9ee62a5,SESCO,II.1.1,Chubut,AR-U,annual,2016,gas oil combustion consumption by public passenger transport,36.607612776,TJ,CO2,74100.0,kg/TJ,2712624.1067016004,kg +70c7bd7b-8b83-3f4a-b8b2-862233d01f9f,SESCO,II.1.1,Chubut,AR-U,annual,2016,gas oil combustion consumption by public passenger transport,36.607612776,TJ,CH4,3.9,kg/TJ,142.7696898264,kg +70c7bd7b-8b83-3f4a-b8b2-862233d01f9f,SESCO,II.1.1,Chubut,AR-U,annual,2016,gas oil combustion consumption by public passenger transport,36.607612776,TJ,N2O,3.9,kg/TJ,142.7696898264,kg +578f069d-524b-32a6-a3c0-c0a61a4e5bb8,SESCO,II.1.1,Córdoba,AR-X,annual,2016,gas oil combustion consumption by public passenger transport,253.71222576,TJ,CO2,74100.0,kg/TJ,18800075.928815998,kg +39cc4eed-85fc-3624-8864-06a397d612dc,SESCO,II.1.1,Córdoba,AR-X,annual,2016,gas oil combustion consumption by public passenger transport,253.71222576,TJ,CH4,3.9,kg/TJ,989.477680464,kg +39cc4eed-85fc-3624-8864-06a397d612dc,SESCO,II.1.1,Córdoba,AR-X,annual,2016,gas oil combustion consumption by public passenger transport,253.71222576,TJ,N2O,3.9,kg/TJ,989.477680464,kg +8ec062d2-9e63-3bd6-8a30-d9c115d654fb,SESCO,II.1.1,Neuquén,AR-Q,annual,2016,gas oil combustion consumption by public passenger transport,27.404807471999998,TJ,CO2,74100.0,kg/TJ,2030696.2336751998,kg +3d6edd36-a6d7-3af0-8890-abca3ca7d70d,SESCO,II.1.1,Neuquén,AR-Q,annual,2016,gas oil combustion consumption by public passenger transport,27.404807471999998,TJ,CH4,3.9,kg/TJ,106.8787491408,kg +3d6edd36-a6d7-3af0-8890-abca3ca7d70d,SESCO,II.1.1,Neuquén,AR-Q,annual,2016,gas oil combustion consumption by public passenger transport,27.404807471999998,TJ,N2O,3.9,kg/TJ,106.8787491408,kg +e3f67733-c89d-3db3-aa16-00ca066bec86,SESCO,II.1.1,Rio Negro,AR-R,annual,2016,gas oil combustion consumption by public passenger transport,145.919786544,TJ,CO2,74100.0,kg/TJ,10812656.1829104,kg +04ad23bb-8a4a-3b24-810b-750183f6ba91,SESCO,II.1.1,Rio Negro,AR-R,annual,2016,gas oil combustion consumption by public passenger transport,145.919786544,TJ,CH4,3.9,kg/TJ,569.0871675216,kg +04ad23bb-8a4a-3b24-810b-750183f6ba91,SESCO,II.1.1,Rio Negro,AR-R,annual,2016,gas oil combustion consumption by public passenger transport,145.919786544,TJ,N2O,3.9,kg/TJ,569.0871675216,kg +d85f3c33-1db0-307b-935d-ebd1b1af5e9d,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2016,gas oil combustion consumption by public passenger transport,0.18208092,TJ,CO2,74100.0,kg/TJ,13492.196172,kg +94e321c3-aa95-349a-bf87-90ef60937732,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2016,gas oil combustion consumption by public passenger transport,0.18208092,TJ,CH4,3.9,kg/TJ,0.710115588,kg +94e321c3-aa95-349a-bf87-90ef60937732,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2016,gas oil combustion consumption by public passenger transport,0.18208092,TJ,N2O,3.9,kg/TJ,0.710115588,kg +4723eeaf-a8f2-346a-8814-526c1ce4f72a,SESCO,II.1.1,Santa Fe,AR-S,annual,2016,gas oil combustion consumption by public passenger transport,7.766497115999999,TJ,CO2,74100.0,kg/TJ,575497.4362955999,kg +9236cfd1-ace5-3571-a092-26602dfdab59,SESCO,II.1.1,Santa Fe,AR-S,annual,2016,gas oil combustion consumption by public passenger transport,7.766497115999999,TJ,CH4,3.9,kg/TJ,30.289338752399996,kg +9236cfd1-ace5-3571-a092-26602dfdab59,SESCO,II.1.1,Santa Fe,AR-S,annual,2016,gas oil combustion consumption by public passenger transport,7.766497115999999,TJ,N2O,3.9,kg/TJ,30.289338752399996,kg +f5188691-b3fc-3466-b047-f40a8803e9d1,SESCO,II.1.1,Buenos Aires,AR-B,annual,2016,gas oil combustion consumption by public passenger transport,0.21455280000000002,TJ,CO2,74100.0,kg/TJ,15898.362480000002,kg +9726120a-492f-3378-83c3-bd418b0481f5,SESCO,II.1.1,Buenos Aires,AR-B,annual,2016,gas oil combustion consumption by public passenger transport,0.21455280000000002,TJ,CH4,3.9,kg/TJ,0.8367559200000001,kg +9726120a-492f-3378-83c3-bd418b0481f5,SESCO,II.1.1,Buenos Aires,AR-B,annual,2016,gas oil combustion consumption by public passenger transport,0.21455280000000002,TJ,N2O,3.9,kg/TJ,0.8367559200000001,kg +f9d529a2-d166-34ec-955d-4818e33698f3,SESCO,II.1.1,Buenos Aires,AR-B,annual,2016,gas oil combustion consumption by to the public,1039.432464,TJ,CO2,74100.0,kg/TJ,77021945.5824,kg +bce5de26-6cb3-37fe-ac17-2dec8fcd5f5e,SESCO,II.1.1,Buenos Aires,AR-B,annual,2016,gas oil combustion consumption by to the public,1039.432464,TJ,CH4,3.9,kg/TJ,4053.7866096,kg +bce5de26-6cb3-37fe-ac17-2dec8fcd5f5e,SESCO,II.1.1,Buenos Aires,AR-B,annual,2016,gas oil combustion consumption by to the public,1039.432464,TJ,N2O,3.9,kg/TJ,4053.7866096,kg +10379676-ab86-3a3e-86fc-351250ba6a02,SESCO,II.1.1,Capital Federal,AR-C,annual,2016,gas oil combustion consumption by to the public,200.6466,TJ,CO2,74100.0,kg/TJ,14867913.06,kg +a3a3cc2a-7cf4-32dc-bc83-5cd0b68c5d39,SESCO,II.1.1,Capital Federal,AR-C,annual,2016,gas oil combustion consumption by to the public,200.6466,TJ,CH4,3.9,kg/TJ,782.52174,kg +a3a3cc2a-7cf4-32dc-bc83-5cd0b68c5d39,SESCO,II.1.1,Capital Federal,AR-C,annual,2016,gas oil combustion consumption by to the public,200.6466,TJ,N2O,3.9,kg/TJ,782.52174,kg +dd6deb8b-6e89-3b2e-be23-349b2e3fdf6d,SESCO,II.1.1,Corrientes,AR-W,annual,2016,gas oil combustion consumption by to the public,3.3230399999999998,TJ,CO2,74100.0,kg/TJ,246237.264,kg +74719293-a63e-312d-bb72-b64747a7cbe1,SESCO,II.1.1,Corrientes,AR-W,annual,2016,gas oil combustion consumption by to the public,3.3230399999999998,TJ,CH4,3.9,kg/TJ,12.959855999999998,kg +74719293-a63e-312d-bb72-b64747a7cbe1,SESCO,II.1.1,Corrientes,AR-W,annual,2016,gas oil combustion consumption by to the public,3.3230399999999998,TJ,N2O,3.9,kg/TJ,12.959855999999998,kg +c34b3576-75ec-3257-8e55-01f8be5c4b83,SESCO,II.1.1,Córdoba,AR-X,annual,2016,gas oil combustion consumption by to the public,595.9077599999999,TJ,CO2,74100.0,kg/TJ,44156765.015999995,kg +a9aa22ef-7bce-3ed9-99f4-a5b899b2a86e,SESCO,II.1.1,Córdoba,AR-X,annual,2016,gas oil combustion consumption by to the public,595.9077599999999,TJ,CH4,3.9,kg/TJ,2324.0402639999998,kg +a9aa22ef-7bce-3ed9-99f4-a5b899b2a86e,SESCO,II.1.1,Córdoba,AR-X,annual,2016,gas oil combustion consumption by to the public,595.9077599999999,TJ,N2O,3.9,kg/TJ,2324.0402639999998,kg +2602a3b4-689e-3835-8eab-8d41e08c5396,SESCO,II.1.1,Entre Rios,AR-E,annual,2016,gas oil combustion consumption by to the public,34.028651999999994,TJ,CO2,74100.0,kg/TJ,2521523.1131999996,kg +0bcb1a32-4955-3eac-aa72-8317d8342dbe,SESCO,II.1.1,Entre Rios,AR-E,annual,2016,gas oil combustion consumption by to the public,34.028651999999994,TJ,CH4,3.9,kg/TJ,132.71174279999997,kg +0bcb1a32-4955-3eac-aa72-8317d8342dbe,SESCO,II.1.1,Entre Rios,AR-E,annual,2016,gas oil combustion consumption by to the public,34.028651999999994,TJ,N2O,3.9,kg/TJ,132.71174279999997,kg +c14feacc-78cf-34bb-8d03-aaa0658393f2,SESCO,II.1.1,Salta,AR-A,annual,2016,gas oil combustion consumption by to the public,10.2942,TJ,CO2,74100.0,kg/TJ,762800.22,kg +5e64212a-94d0-3d48-9cb0-602ebba5c17a,SESCO,II.1.1,Salta,AR-A,annual,2016,gas oil combustion consumption by to the public,10.2942,TJ,CH4,3.9,kg/TJ,40.14738,kg +5e64212a-94d0-3d48-9cb0-602ebba5c17a,SESCO,II.1.1,Salta,AR-A,annual,2016,gas oil combustion consumption by to the public,10.2942,TJ,N2O,3.9,kg/TJ,40.14738,kg +fc35c416-0b81-317f-aa6f-fe5a7f1a840f,SESCO,II.1.1,Santa Fe,AR-S,annual,2016,gas oil combustion consumption by to the public,52.51848,TJ,CO2,74100.0,kg/TJ,3891619.368,kg +5fd6225d-12d0-3092-a7c5-46fa23a6dad2,SESCO,II.1.1,Santa Fe,AR-S,annual,2016,gas oil combustion consumption by to the public,52.51848,TJ,CH4,3.9,kg/TJ,204.822072,kg +5fd6225d-12d0-3092-a7c5-46fa23a6dad2,SESCO,II.1.1,Santa Fe,AR-S,annual,2016,gas oil combustion consumption by to the public,52.51848,TJ,N2O,3.9,kg/TJ,204.822072,kg +26a589c9-7aa8-3c1f-8fce-bf2ca2e74ac4,SESCO,II.1.1,Buenos Aires,AR-B,annual,2016,gas oil combustion consumption by to the public,94.717476,TJ,CO2,74100.0,kg/TJ,7018564.971600001,kg +29a7ef6b-227c-3c33-ad74-c09248976583,SESCO,II.1.1,Buenos Aires,AR-B,annual,2016,gas oil combustion consumption by to the public,94.717476,TJ,CH4,3.9,kg/TJ,369.3981564,kg +29a7ef6b-227c-3c33-ad74-c09248976583,SESCO,II.1.1,Buenos Aires,AR-B,annual,2016,gas oil combustion consumption by to the public,94.717476,TJ,N2O,3.9,kg/TJ,369.3981564,kg +76a2d6cf-a6ca-304c-b34f-e9adff59728a,SESCO,II.1.1,Capital Federal,AR-C,annual,2016,gas oil combustion consumption by to the public,12.56976,TJ,CO2,74100.0,kg/TJ,931419.216,kg +ff713bf0-f92c-3a63-abc1-2aaf0bfa3c2a,SESCO,II.1.1,Capital Federal,AR-C,annual,2016,gas oil combustion consumption by to the public,12.56976,TJ,CH4,3.9,kg/TJ,49.022064,kg +ff713bf0-f92c-3a63-abc1-2aaf0bfa3c2a,SESCO,II.1.1,Capital Federal,AR-C,annual,2016,gas oil combustion consumption by to the public,12.56976,TJ,N2O,3.9,kg/TJ,49.022064,kg +2e3f8a12-60f9-300d-962d-51272213d6ee,SESCO,II.1.1,Córdoba,AR-X,annual,2016,gas oil combustion consumption by to the public,11.77512,TJ,CO2,74100.0,kg/TJ,872536.392,kg +db0989d5-b416-34db-bfc4-b020550b7e0f,SESCO,II.1.1,Córdoba,AR-X,annual,2016,gas oil combustion consumption by to the public,11.77512,TJ,CH4,3.9,kg/TJ,45.922968,kg +db0989d5-b416-34db-bfc4-b020550b7e0f,SESCO,II.1.1,Córdoba,AR-X,annual,2016,gas oil combustion consumption by to the public,11.77512,TJ,N2O,3.9,kg/TJ,45.922968,kg +e08bf9c2-fda1-3bca-a0c3-b9cc0e0caaea,SESCO,II.1.1,Entre Rios,AR-E,annual,2016,gas oil combustion consumption by to the public,6.461868,TJ,CO2,74100.0,kg/TJ,478824.4188,kg +8aaa26bd-3347-3881-8da0-b066c5e0150b,SESCO,II.1.1,Entre Rios,AR-E,annual,2016,gas oil combustion consumption by to the public,6.461868,TJ,CH4,3.9,kg/TJ,25.2012852,kg +8aaa26bd-3347-3881-8da0-b066c5e0150b,SESCO,II.1.1,Entre Rios,AR-E,annual,2016,gas oil combustion consumption by to the public,6.461868,TJ,N2O,3.9,kg/TJ,25.2012852,kg +ab00b845-e120-300e-963b-f51be004cb5d,SESCO,II.1.1,Santa Fe,AR-S,annual,2016,gas oil combustion consumption by to the public,5.45412,TJ,CO2,74100.0,kg/TJ,404150.29199999996,kg +b6e910eb-6131-3c7b-a058-39432f93aa97,SESCO,II.1.1,Santa Fe,AR-S,annual,2016,gas oil combustion consumption by to the public,5.45412,TJ,CH4,3.9,kg/TJ,21.271068,kg +b6e910eb-6131-3c7b-a058-39432f93aa97,SESCO,II.1.1,Santa Fe,AR-S,annual,2016,gas oil combustion consumption by to the public,5.45412,TJ,N2O,3.9,kg/TJ,21.271068,kg +5feb7a6a-349f-3bdb-8627-ec663bf4448d,SESCO,II.1.1,Catamarca,AR-K,annual,2016,gas oil combustion consumption by to the public,178.77991319999998,TJ,CO2,74100.0,kg/TJ,13247591.568119999,kg +3c058028-b69d-344e-bd1a-236203580c2a,SESCO,II.1.1,Catamarca,AR-K,annual,2016,gas oil combustion consumption by to the public,178.77991319999998,TJ,CH4,3.9,kg/TJ,697.24166148,kg +3c058028-b69d-344e-bd1a-236203580c2a,SESCO,II.1.1,Catamarca,AR-K,annual,2016,gas oil combustion consumption by to the public,178.77991319999998,TJ,N2O,3.9,kg/TJ,697.24166148,kg +1b63e880-281c-3b16-9cdb-46328dddd0e4,SESCO,II.1.1,Chaco,AR-H,annual,2016,gas oil combustion consumption by to the public,102.2452452,TJ,CO2,74100.0,kg/TJ,7576372.66932,kg +572c7cfa-5a63-3cee-a1da-a64d70f92840,SESCO,II.1.1,Chaco,AR-H,annual,2016,gas oil combustion consumption by to the public,102.2452452,TJ,CH4,3.9,kg/TJ,398.75645628,kg +572c7cfa-5a63-3cee-a1da-a64d70f92840,SESCO,II.1.1,Chaco,AR-H,annual,2016,gas oil combustion consumption by to the public,102.2452452,TJ,N2O,3.9,kg/TJ,398.75645628,kg +d387d6ab-2f81-3304-92fb-5cf028fd4d29,SESCO,II.1.1,Jujuy,AR-Y,annual,2016,gas oil combustion consumption by to the public,581.4359208,TJ,CO2,74100.0,kg/TJ,43084401.73128,kg +ab054197-6733-3d55-af7c-4dd0de7da448,SESCO,II.1.1,Jujuy,AR-Y,annual,2016,gas oil combustion consumption by to the public,581.4359208,TJ,CH4,3.9,kg/TJ,2267.60009112,kg +ab054197-6733-3d55-af7c-4dd0de7da448,SESCO,II.1.1,Jujuy,AR-Y,annual,2016,gas oil combustion consumption by to the public,581.4359208,TJ,N2O,3.9,kg/TJ,2267.60009112,kg +0cce1bdf-36d1-3198-931e-4dcbcc156e82,SESCO,II.1.1,La Rioja,AR-F,annual,2016,gas oil combustion consumption by to the public,177.4283028,TJ,CO2,74100.0,kg/TJ,13147437.237480002,kg +77e7a665-dddd-32ea-84d0-0f591685f8dc,SESCO,II.1.1,La Rioja,AR-F,annual,2016,gas oil combustion consumption by to the public,177.4283028,TJ,CH4,3.9,kg/TJ,691.97038092,kg +77e7a665-dddd-32ea-84d0-0f591685f8dc,SESCO,II.1.1,La Rioja,AR-F,annual,2016,gas oil combustion consumption by to the public,177.4283028,TJ,N2O,3.9,kg/TJ,691.97038092,kg +79267c1b-ce46-3bdd-ac50-b8a953c2d3d0,SESCO,II.1.1,Salta,AR-A,annual,2016,gas oil combustion consumption by to the public,1827.2107476,TJ,CO2,74100.0,kg/TJ,135396316.39716,kg +d9de5152-b6e7-3eae-bd84-3f4e77ac823b,SESCO,II.1.1,Salta,AR-A,annual,2016,gas oil combustion consumption by to the public,1827.2107476,TJ,CH4,3.9,kg/TJ,7126.12191564,kg +d9de5152-b6e7-3eae-bd84-3f4e77ac823b,SESCO,II.1.1,Salta,AR-A,annual,2016,gas oil combustion consumption by to the public,1827.2107476,TJ,N2O,3.9,kg/TJ,7126.12191564,kg +2a1df0cd-b736-30f4-bf05-f18d942aae0c,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2016,gas oil combustion consumption by to the public,302.553762,TJ,CO2,74100.0,kg/TJ,22419233.764200002,kg +83a988ed-8983-352b-981b-0afb19141601,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2016,gas oil combustion consumption by to the public,302.553762,TJ,CH4,3.9,kg/TJ,1179.9596718,kg +83a988ed-8983-352b-981b-0afb19141601,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2016,gas oil combustion consumption by to the public,302.553762,TJ,N2O,3.9,kg/TJ,1179.9596718,kg +154ba052-2859-30bf-9074-1df49e318afa,SESCO,II.1.1,Tucuman,AR-T,annual,2016,gas oil combustion consumption by to the public,1987.3155371999999,TJ,CO2,74100.0,kg/TJ,147260081.30652,kg +77b930b7-d68c-35e6-9f9b-c79743da5185,SESCO,II.1.1,Tucuman,AR-T,annual,2016,gas oil combustion consumption by to the public,1987.3155371999999,TJ,CH4,3.9,kg/TJ,7750.530595079999,kg +77b930b7-d68c-35e6-9f9b-c79743da5185,SESCO,II.1.1,Tucuman,AR-T,annual,2016,gas oil combustion consumption by to the public,1987.3155371999999,TJ,N2O,3.9,kg/TJ,7750.530595079999,kg +cb913ddd-3083-3d73-9c9e-fd3170f5d387,SESCO,II.1.1,Catamarca,AR-K,annual,2016,gas oil combustion consumption by to the public,26.894952,TJ,CO2,74100.0,kg/TJ,1992915.9432,kg +0a3688b1-7fa1-36bc-89b6-1a8200519eac,SESCO,II.1.1,Catamarca,AR-K,annual,2016,gas oil combustion consumption by to the public,26.894952,TJ,CH4,3.9,kg/TJ,104.8903128,kg +0a3688b1-7fa1-36bc-89b6-1a8200519eac,SESCO,II.1.1,Catamarca,AR-K,annual,2016,gas oil combustion consumption by to the public,26.894952,TJ,N2O,3.9,kg/TJ,104.8903128,kg +f2036d1f-38f8-38b7-aa43-aec980be1526,SESCO,II.1.1,Chaco,AR-H,annual,2016,gas oil combustion consumption by to the public,8.8400088,TJ,CO2,74100.0,kg/TJ,655044.65208,kg +8b3d5840-bdf9-3e3a-8ee2-97bfa9654517,SESCO,II.1.1,Chaco,AR-H,annual,2016,gas oil combustion consumption by to the public,8.8400088,TJ,CH4,3.9,kg/TJ,34.47603432,kg +8b3d5840-bdf9-3e3a-8ee2-97bfa9654517,SESCO,II.1.1,Chaco,AR-H,annual,2016,gas oil combustion consumption by to the public,8.8400088,TJ,N2O,3.9,kg/TJ,34.47603432,kg +70ead23a-35c4-339f-8bb3-9ffa68e6e94a,SESCO,II.1.1,Jujuy,AR-Y,annual,2016,gas oil combustion consumption by to the public,47.405694000000004,TJ,CO2,74100.0,kg/TJ,3512761.9254,kg +07be5a37-d5bc-314d-8f7d-649fdfa43b94,SESCO,II.1.1,Jujuy,AR-Y,annual,2016,gas oil combustion consumption by to the public,47.405694000000004,TJ,CH4,3.9,kg/TJ,184.88220660000002,kg +07be5a37-d5bc-314d-8f7d-649fdfa43b94,SESCO,II.1.1,Jujuy,AR-Y,annual,2016,gas oil combustion consumption by to the public,47.405694000000004,TJ,N2O,3.9,kg/TJ,184.88220660000002,kg +ae5af42c-d031-3420-84b1-56af37e7395a,SESCO,II.1.1,La Rioja,AR-F,annual,2016,gas oil combustion consumption by to the public,51.111605999999995,TJ,CO2,74100.0,kg/TJ,3787370.0045999996,kg +6361c710-acbc-3945-ba2b-1e664b0ecbc0,SESCO,II.1.1,La Rioja,AR-F,annual,2016,gas oil combustion consumption by to the public,51.111605999999995,TJ,CH4,3.9,kg/TJ,199.33526339999997,kg +6361c710-acbc-3945-ba2b-1e664b0ecbc0,SESCO,II.1.1,La Rioja,AR-F,annual,2016,gas oil combustion consumption by to the public,51.111605999999995,TJ,N2O,3.9,kg/TJ,199.33526339999997,kg +00d435cc-0404-3f8f-920d-048b57841280,SESCO,II.1.1,Salta,AR-A,annual,2016,gas oil combustion consumption by to the public,121.7670216,TJ,CO2,74100.0,kg/TJ,9022936.300560001,kg +9169a7a9-ccf5-382d-b377-d24fddd47a3d,SESCO,II.1.1,Salta,AR-A,annual,2016,gas oil combustion consumption by to the public,121.7670216,TJ,CH4,3.9,kg/TJ,474.89138424000004,kg +9169a7a9-ccf5-382d-b377-d24fddd47a3d,SESCO,II.1.1,Salta,AR-A,annual,2016,gas oil combustion consumption by to the public,121.7670216,TJ,N2O,3.9,kg/TJ,474.89138424000004,kg +c8cced7b-b840-3d69-93c0-1eed6301df75,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2016,gas oil combustion consumption by to the public,54.9461052,TJ,CO2,74100.0,kg/TJ,4071506.3953199997,kg +f5b0f46d-87a7-38fb-8686-d11af3700b9b,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2016,gas oil combustion consumption by to the public,54.9461052,TJ,CH4,3.9,kg/TJ,214.28981027999998,kg +f5b0f46d-87a7-38fb-8686-d11af3700b9b,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2016,gas oil combustion consumption by to the public,54.9461052,TJ,N2O,3.9,kg/TJ,214.28981027999998,kg +1ddfc819-055e-3304-b652-8c40589fa524,SESCO,II.1.1,Tucuman,AR-T,annual,2016,gas oil combustion consumption by to the public,227.80631160000002,TJ,CO2,74100.0,kg/TJ,16880447.68956,kg +ce1146b4-d097-3c2a-a88a-638c02173560,SESCO,II.1.1,Tucuman,AR-T,annual,2016,gas oil combustion consumption by to the public,227.80631160000002,TJ,CH4,3.9,kg/TJ,888.4446152400001,kg +ce1146b4-d097-3c2a-a88a-638c02173560,SESCO,II.1.1,Tucuman,AR-T,annual,2016,gas oil combustion consumption by to the public,227.80631160000002,TJ,N2O,3.9,kg/TJ,888.4446152400001,kg +333b97cc-fe48-353a-a3a3-a49d53d13bae,SESCO,I.3.1,Buenos Aires,AR-B,annual,2016,gasoline combustion consumption by petrochemical industries,28.017535000000002,TJ,CO2,69300.0,kg/TJ,1941615.1755000001,kg +c4f9d7bb-6963-36ef-9dfa-f359e714dab6,SESCO,I.3.1,Buenos Aires,AR-B,annual,2016,gasoline combustion consumption by petrochemical industries,28.017535000000002,TJ,CH4,33.0,kg/TJ,924.578655,kg +17273c6b-02be-3965-a9ac-bdbd05cc1596,SESCO,I.3.1,Buenos Aires,AR-B,annual,2016,gasoline combustion consumption by petrochemical industries,28.017535000000002,TJ,N2O,3.2,kg/TJ,89.65611200000001,kg +4d1d0ac8-c31c-3910-b849-c8f1495253d6,SESCO,II.5.1,Buenos Aires,AR-B,annual,2016,gas oil combustion consumption by agriculture machines,389.80704,TJ,CO2,74100.0,kg/TJ,28884701.663999997,kg +eb2f80ff-759b-36e5-a515-316c8d413e1d,SESCO,II.5.1,Buenos Aires,AR-B,annual,2016,gas oil combustion consumption by agriculture machines,389.80704,TJ,CH4,3.9,kg/TJ,1520.2474559999998,kg +eb2f80ff-759b-36e5-a515-316c8d413e1d,SESCO,II.5.1,Buenos Aires,AR-B,annual,2016,gas oil combustion consumption by agriculture machines,389.80704,TJ,N2O,3.9,kg/TJ,1520.2474559999998,kg +caa95192-8e79-32e8-9472-0dc0f46fd7e5,SESCO,II.5.1,Capital Federal,AR-C,annual,2016,gas oil combustion consumption by agriculture machines,19.866,TJ,CO2,74100.0,kg/TJ,1472070.5999999999,kg +5f310f78-bc1e-39a1-b06f-bd00f46ede7b,SESCO,II.5.1,Capital Federal,AR-C,annual,2016,gas oil combustion consumption by agriculture machines,19.866,TJ,CH4,3.9,kg/TJ,77.4774,kg +5f310f78-bc1e-39a1-b06f-bd00f46ede7b,SESCO,II.5.1,Capital Federal,AR-C,annual,2016,gas oil combustion consumption by agriculture machines,19.866,TJ,N2O,3.9,kg/TJ,77.4774,kg +3a6117d0-3c20-3e40-8a22-b7ffb99331bb,SESCO,II.5.1,Córdoba,AR-X,annual,2016,gas oil combustion consumption by agriculture machines,187.17383999999998,TJ,CO2,74100.0,kg/TJ,13869581.544,kg +3e63aa53-22cc-3f0f-a6f1-252f5ebdfbb4,SESCO,II.5.1,Córdoba,AR-X,annual,2016,gas oil combustion consumption by agriculture machines,187.17383999999998,TJ,CH4,3.9,kg/TJ,729.9779759999999,kg +3e63aa53-22cc-3f0f-a6f1-252f5ebdfbb4,SESCO,II.5.1,Córdoba,AR-X,annual,2016,gas oil combustion consumption by agriculture machines,187.17383999999998,TJ,N2O,3.9,kg/TJ,729.9779759999999,kg +3e693ace-fce1-399f-8223-e8be464f3312,SESCO,II.5.1,Entre Rios,AR-E,annual,2016,gas oil combustion consumption by agriculture machines,25.24788,TJ,CO2,74100.0,kg/TJ,1870867.9079999998,kg +3b9953a5-bcf1-3d67-af77-b90cdd225285,SESCO,II.5.1,Entre Rios,AR-E,annual,2016,gas oil combustion consumption by agriculture machines,25.24788,TJ,CH4,3.9,kg/TJ,98.466732,kg +3b9953a5-bcf1-3d67-af77-b90cdd225285,SESCO,II.5.1,Entre Rios,AR-E,annual,2016,gas oil combustion consumption by agriculture machines,25.24788,TJ,N2O,3.9,kg/TJ,98.466732,kg +0d3a0a29-a94f-3c24-900a-014bb29803f3,SESCO,II.5.1,Santa Fe,AR-S,annual,2016,gas oil combustion consumption by agriculture machines,47.24496,TJ,CO2,74100.0,kg/TJ,3500851.536,kg +e87534dc-50c1-39a1-afff-cb3d22ab177b,SESCO,II.5.1,Santa Fe,AR-S,annual,2016,gas oil combustion consumption by agriculture machines,47.24496,TJ,CH4,3.9,kg/TJ,184.25534399999998,kg +e87534dc-50c1-39a1-afff-cb3d22ab177b,SESCO,II.5.1,Santa Fe,AR-S,annual,2016,gas oil combustion consumption by agriculture machines,47.24496,TJ,N2O,3.9,kg/TJ,184.25534399999998,kg +c9a72fd5-6cba-3bf7-8c95-a73810113fc7,SESCO,II.5.1,Buenos Aires,AR-B,annual,2016,gas oil combustion consumption by agriculture machines,7.5851999999999995,TJ,CO2,74100.0,kg/TJ,562063.32,kg +acb8f5e5-53a0-3419-b10b-656ae7c8fcef,SESCO,II.5.1,Buenos Aires,AR-B,annual,2016,gas oil combustion consumption by agriculture machines,7.5851999999999995,TJ,CH4,3.9,kg/TJ,29.582279999999997,kg +acb8f5e5-53a0-3419-b10b-656ae7c8fcef,SESCO,II.5.1,Buenos Aires,AR-B,annual,2016,gas oil combustion consumption by agriculture machines,7.5851999999999995,TJ,N2O,3.9,kg/TJ,29.582279999999997,kg +7affca53-79fb-3f03-9e43-e8aff290c4d3,SESCO,II.5.1,Córdoba,AR-X,annual,2016,gas oil combustion consumption by agriculture machines,1.33644,TJ,CO2,74100.0,kg/TJ,99030.20400000001,kg +5bc15247-2b16-372c-a5bd-827ad37ed1bf,SESCO,II.5.1,Córdoba,AR-X,annual,2016,gas oil combustion consumption by agriculture machines,1.33644,TJ,CH4,3.9,kg/TJ,5.212116,kg +5bc15247-2b16-372c-a5bd-827ad37ed1bf,SESCO,II.5.1,Córdoba,AR-X,annual,2016,gas oil combustion consumption by agriculture machines,1.33644,TJ,N2O,3.9,kg/TJ,5.212116,kg +a60b6e08-8712-37f5-ae54-a9c0f937481f,SESCO,II.5.1,Entre Rios,AR-E,annual,2016,gas oil combustion consumption by agriculture machines,8.23536,TJ,CO2,74100.0,kg/TJ,610240.176,kg +dc09d4ab-ea70-3ee7-8afa-490602ea27ad,SESCO,II.5.1,Entre Rios,AR-E,annual,2016,gas oil combustion consumption by agriculture machines,8.23536,TJ,CH4,3.9,kg/TJ,32.117903999999996,kg +dc09d4ab-ea70-3ee7-8afa-490602ea27ad,SESCO,II.5.1,Entre Rios,AR-E,annual,2016,gas oil combustion consumption by agriculture machines,8.23536,TJ,N2O,3.9,kg/TJ,32.117903999999996,kg +3499a7f2-6ab2-3aa5-86f8-c5d410735564,SESCO,II.1.1,Buenos Aires,AR-B,annual,2016,gas oil combustion consumption by to the public,13904.24952,TJ,CO2,74100.0,kg/TJ,1030304889.4319999,kg +9ebfd6bd-8479-3608-aed3-59463b26767c,SESCO,II.1.1,Buenos Aires,AR-B,annual,2016,gas oil combustion consumption by to the public,13904.24952,TJ,CH4,3.9,kg/TJ,54226.573127999996,kg +9ebfd6bd-8479-3608-aed3-59463b26767c,SESCO,II.1.1,Buenos Aires,AR-B,annual,2016,gas oil combustion consumption by to the public,13904.24952,TJ,N2O,3.9,kg/TJ,54226.573127999996,kg +2fc7c775-c0d6-378b-a284-1b0e6e96bd27,SESCO,II.1.1,Capital Federal,AR-C,annual,2016,gas oil combustion consumption by to the public,1054.8846,TJ,CO2,74100.0,kg/TJ,78166948.86,kg +6178a452-23c9-333d-b966-ea91add6a65e,SESCO,II.1.1,Capital Federal,AR-C,annual,2016,gas oil combustion consumption by to the public,1054.8846,TJ,CH4,3.9,kg/TJ,4114.04994,kg +6178a452-23c9-333d-b966-ea91add6a65e,SESCO,II.1.1,Capital Federal,AR-C,annual,2016,gas oil combustion consumption by to the public,1054.8846,TJ,N2O,3.9,kg/TJ,4114.04994,kg +1a68d241-6bda-3867-bfb5-af083e021c09,SESCO,II.1.1,Catamarca,AR-K,annual,2016,gas oil combustion consumption by to the public,12.642,TJ,CO2,74100.0,kg/TJ,936772.2,kg +49cf501d-17f9-3242-9155-bf3133f4fefd,SESCO,II.1.1,Catamarca,AR-K,annual,2016,gas oil combustion consumption by to the public,12.642,TJ,CH4,3.9,kg/TJ,49.303799999999995,kg +49cf501d-17f9-3242-9155-bf3133f4fefd,SESCO,II.1.1,Catamarca,AR-K,annual,2016,gas oil combustion consumption by to the public,12.642,TJ,N2O,3.9,kg/TJ,49.303799999999995,kg +9764bbb5-cbe9-3378-b020-dc3e8ad12d84,SESCO,II.1.1,Chaco,AR-H,annual,2016,gas oil combustion consumption by to the public,1790.14332,TJ,CO2,74100.0,kg/TJ,132649620.012,kg +409c8554-7403-34fd-bba2-ae90a6db4dc5,SESCO,II.1.1,Chaco,AR-H,annual,2016,gas oil combustion consumption by to the public,1790.14332,TJ,CH4,3.9,kg/TJ,6981.558948,kg +409c8554-7403-34fd-bba2-ae90a6db4dc5,SESCO,II.1.1,Chaco,AR-H,annual,2016,gas oil combustion consumption by to the public,1790.14332,TJ,N2O,3.9,kg/TJ,6981.558948,kg +08bbd466-c56f-39dd-8e22-f4a61f073fd9,SESCO,II.1.1,Corrientes,AR-W,annual,2016,gas oil combustion consumption by to the public,620.28876,TJ,CO2,74100.0,kg/TJ,45963397.116000004,kg +f132db89-8979-327b-8c50-07e46d9d07b7,SESCO,II.1.1,Corrientes,AR-W,annual,2016,gas oil combustion consumption by to the public,620.28876,TJ,CH4,3.9,kg/TJ,2419.1261640000002,kg +f132db89-8979-327b-8c50-07e46d9d07b7,SESCO,II.1.1,Corrientes,AR-W,annual,2016,gas oil combustion consumption by to the public,620.28876,TJ,N2O,3.9,kg/TJ,2419.1261640000002,kg +3ae526bb-1833-34dd-b39b-16d2bd0d375f,SESCO,II.1.1,Córdoba,AR-X,annual,2016,gas oil combustion consumption by to the public,5382.782999999999,TJ,CO2,74100.0,kg/TJ,398864220.29999995,kg +f9e0582d-d959-3896-b062-89819955a6ca,SESCO,II.1.1,Córdoba,AR-X,annual,2016,gas oil combustion consumption by to the public,5382.782999999999,TJ,CH4,3.9,kg/TJ,20992.853699999996,kg +f9e0582d-d959-3896-b062-89819955a6ca,SESCO,II.1.1,Córdoba,AR-X,annual,2016,gas oil combustion consumption by to the public,5382.782999999999,TJ,N2O,3.9,kg/TJ,20992.853699999996,kg +ca26dd0d-08a7-33b6-82a8-f359daf5168e,SESCO,II.1.1,Entre Rios,AR-E,annual,2016,gas oil combustion consumption by to the public,1163.89476,TJ,CO2,74100.0,kg/TJ,86244601.71599999,kg +316d524e-cea0-3917-9ca3-f81ea4bae287,SESCO,II.1.1,Entre Rios,AR-E,annual,2016,gas oil combustion consumption by to the public,1163.89476,TJ,CH4,3.9,kg/TJ,4539.189563999999,kg +316d524e-cea0-3917-9ca3-f81ea4bae287,SESCO,II.1.1,Entre Rios,AR-E,annual,2016,gas oil combustion consumption by to the public,1163.89476,TJ,N2O,3.9,kg/TJ,4539.189563999999,kg +efd22726-c361-335e-8fce-cc778a7c0502,SESCO,II.1.1,Formosa,AR-P,annual,2016,gas oil combustion consumption by to the public,142.16832,TJ,CO2,74100.0,kg/TJ,10534672.512,kg +593e2a23-4638-3ebb-bfdf-e553c8e86d9e,SESCO,II.1.1,Formosa,AR-P,annual,2016,gas oil combustion consumption by to the public,142.16832,TJ,CH4,3.9,kg/TJ,554.4564479999999,kg +593e2a23-4638-3ebb-bfdf-e553c8e86d9e,SESCO,II.1.1,Formosa,AR-P,annual,2016,gas oil combustion consumption by to the public,142.16832,TJ,N2O,3.9,kg/TJ,554.4564479999999,kg +c30bbced-d17f-38fc-985c-bd8fab0686e7,SESCO,II.1.1,Jujuy,AR-Y,annual,2016,gas oil combustion consumption by to the public,106.59012,TJ,CO2,74100.0,kg/TJ,7898327.892,kg +c1d89c50-e7d1-3dfd-8ebe-2d9fb3061708,SESCO,II.1.1,Jujuy,AR-Y,annual,2016,gas oil combustion consumption by to the public,106.59012,TJ,CH4,3.9,kg/TJ,415.701468,kg +c1d89c50-e7d1-3dfd-8ebe-2d9fb3061708,SESCO,II.1.1,Jujuy,AR-Y,annual,2016,gas oil combustion consumption by to the public,106.59012,TJ,N2O,3.9,kg/TJ,415.701468,kg +101ae487-94a6-39b9-85da-ed1c196a8c63,SESCO,II.1.1,La Pampa,AR-L,annual,2016,gas oil combustion consumption by to the public,739.15968,TJ,CO2,74100.0,kg/TJ,54771732.287999995,kg +29c2f28b-ec63-312e-a5a2-ff3ce2ffbac9,SESCO,II.1.1,La Pampa,AR-L,annual,2016,gas oil combustion consumption by to the public,739.15968,TJ,CH4,3.9,kg/TJ,2882.7227519999997,kg +29c2f28b-ec63-312e-a5a2-ff3ce2ffbac9,SESCO,II.1.1,La Pampa,AR-L,annual,2016,gas oil combustion consumption by to the public,739.15968,TJ,N2O,3.9,kg/TJ,2882.7227519999997,kg +bea2aa2c-3e31-353c-b07e-1332e03908d7,SESCO,II.1.1,La Rioja,AR-F,annual,2016,gas oil combustion consumption by to the public,252.37044,TJ,CO2,74100.0,kg/TJ,18700649.604,kg +6bfc5349-773c-3519-a44e-e026f1116980,SESCO,II.1.1,La Rioja,AR-F,annual,2016,gas oil combustion consumption by to the public,252.37044,TJ,CH4,3.9,kg/TJ,984.244716,kg +6bfc5349-773c-3519-a44e-e026f1116980,SESCO,II.1.1,La Rioja,AR-F,annual,2016,gas oil combustion consumption by to the public,252.37044,TJ,N2O,3.9,kg/TJ,984.244716,kg +3bdefb3f-c863-30f8-9f4a-3210720d88b4,SESCO,II.1.1,Mendoza,AR-M,annual,2016,gas oil combustion consumption by to the public,611.00592,TJ,CO2,74100.0,kg/TJ,45275538.672,kg +6560867f-563b-3ac4-ad5c-141037ed86b1,SESCO,II.1.1,Mendoza,AR-M,annual,2016,gas oil combustion consumption by to the public,611.00592,TJ,CH4,3.9,kg/TJ,2382.9230879999996,kg +6560867f-563b-3ac4-ad5c-141037ed86b1,SESCO,II.1.1,Mendoza,AR-M,annual,2016,gas oil combustion consumption by to the public,611.00592,TJ,N2O,3.9,kg/TJ,2382.9230879999996,kg +839b001b-5011-3104-9358-650d220bd34d,SESCO,II.1.1,Misiones,AR-N,annual,2016,gas oil combustion consumption by to the public,1149.3383999999999,TJ,CO2,74100.0,kg/TJ,85165975.43999998,kg +16340739-fbee-3f11-8183-4d7b8989ac37,SESCO,II.1.1,Misiones,AR-N,annual,2016,gas oil combustion consumption by to the public,1149.3383999999999,TJ,CH4,3.9,kg/TJ,4482.41976,kg +16340739-fbee-3f11-8183-4d7b8989ac37,SESCO,II.1.1,Misiones,AR-N,annual,2016,gas oil combustion consumption by to the public,1149.3383999999999,TJ,N2O,3.9,kg/TJ,4482.41976,kg +8548ab39-1a26-3118-ac92-1bc81400547c,SESCO,II.1.1,Neuquén,AR-Q,annual,2016,gas oil combustion consumption by to the public,555.77844,TJ,CO2,74100.0,kg/TJ,41183182.40400001,kg +e45c16c9-e124-3910-afea-6aa0412ca72d,SESCO,II.1.1,Neuquén,AR-Q,annual,2016,gas oil combustion consumption by to the public,555.77844,TJ,CH4,3.9,kg/TJ,2167.5359160000003,kg +e45c16c9-e124-3910-afea-6aa0412ca72d,SESCO,II.1.1,Neuquén,AR-Q,annual,2016,gas oil combustion consumption by to the public,555.77844,TJ,N2O,3.9,kg/TJ,2167.5359160000003,kg +fee556a7-e1a5-35fe-92c8-ec966ab89608,SESCO,II.1.1,Rio Negro,AR-R,annual,2016,gas oil combustion consumption by to the public,223.51056,TJ,CO2,74100.0,kg/TJ,16562132.496,kg +f69ba749-a0cd-36f1-b305-a29824b72770,SESCO,II.1.1,Rio Negro,AR-R,annual,2016,gas oil combustion consumption by to the public,223.51056,TJ,CH4,3.9,kg/TJ,871.691184,kg +f69ba749-a0cd-36f1-b305-a29824b72770,SESCO,II.1.1,Rio Negro,AR-R,annual,2016,gas oil combustion consumption by to the public,223.51056,TJ,N2O,3.9,kg/TJ,871.691184,kg +dae60fff-afc6-3ac5-a209-e257219ce268,SESCO,II.1.1,Salta,AR-A,annual,2016,gas oil combustion consumption by to the public,122.69964,TJ,CO2,74100.0,kg/TJ,9092043.324000001,kg +46c770d7-625b-3c02-9b0f-6e7d7f11a92d,SESCO,II.1.1,Salta,AR-A,annual,2016,gas oil combustion consumption by to the public,122.69964,TJ,CH4,3.9,kg/TJ,478.528596,kg +46c770d7-625b-3c02-9b0f-6e7d7f11a92d,SESCO,II.1.1,Salta,AR-A,annual,2016,gas oil combustion consumption by to the public,122.69964,TJ,N2O,3.9,kg/TJ,478.528596,kg +6d96df63-56d3-3f8b-a50f-79ddfded5e15,SESCO,II.1.1,San Juan,AR-J,annual,2016,gas oil combustion consumption by to the public,280.90524,TJ,CO2,74100.0,kg/TJ,20815078.283999998,kg +6f569528-b4d9-3664-9a77-fa21d949fa67,SESCO,II.1.1,San Juan,AR-J,annual,2016,gas oil combustion consumption by to the public,280.90524,TJ,CH4,3.9,kg/TJ,1095.530436,kg +6f569528-b4d9-3664-9a77-fa21d949fa67,SESCO,II.1.1,San Juan,AR-J,annual,2016,gas oil combustion consumption by to the public,280.90524,TJ,N2O,3.9,kg/TJ,1095.530436,kg +881915e0-4970-3535-9de7-361f6cf20d46,SESCO,II.1.1,San Luis,AR-D,annual,2016,gas oil combustion consumption by to the public,54.97464,TJ,CO2,74100.0,kg/TJ,4073620.824,kg +4476025e-df94-3488-add8-88a808e7dc13,SESCO,II.1.1,San Luis,AR-D,annual,2016,gas oil combustion consumption by to the public,54.97464,TJ,CH4,3.9,kg/TJ,214.401096,kg +4476025e-df94-3488-add8-88a808e7dc13,SESCO,II.1.1,San Luis,AR-D,annual,2016,gas oil combustion consumption by to the public,54.97464,TJ,N2O,3.9,kg/TJ,214.401096,kg +6653597e-96a3-3794-ae89-a74204719c35,SESCO,II.1.1,Santa Fe,AR-S,annual,2016,gas oil combustion consumption by to the public,5181.34176,TJ,CO2,74100.0,kg/TJ,383937424.416,kg +50ab4a42-be19-362b-ae1b-8e78d8474945,SESCO,II.1.1,Santa Fe,AR-S,annual,2016,gas oil combustion consumption by to the public,5181.34176,TJ,CH4,3.9,kg/TJ,20207.232864,kg +50ab4a42-be19-362b-ae1b-8e78d8474945,SESCO,II.1.1,Santa Fe,AR-S,annual,2016,gas oil combustion consumption by to the public,5181.34176,TJ,N2O,3.9,kg/TJ,20207.232864,kg +426adb85-56c7-3384-bdfc-be22add19913,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2016,gas oil combustion consumption by to the public,455.32872,TJ,CO2,74100.0,kg/TJ,33739858.151999995,kg +8a5846b1-780f-39f6-bea5-24b322ef2d00,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2016,gas oil combustion consumption by to the public,455.32872,TJ,CH4,3.9,kg/TJ,1775.782008,kg +8a5846b1-780f-39f6-bea5-24b322ef2d00,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2016,gas oil combustion consumption by to the public,455.32872,TJ,N2O,3.9,kg/TJ,1775.782008,kg +3785f054-5d52-3eb7-98f8-301f17b9c755,SESCO,II.1.1,Tucuman,AR-T,annual,2016,gas oil combustion consumption by to the public,860.30616,TJ,CO2,74100.0,kg/TJ,63748686.456,kg +bae7fcfd-e396-34a4-a2c2-c67ba360c54e,SESCO,II.1.1,Tucuman,AR-T,annual,2016,gas oil combustion consumption by to the public,860.30616,TJ,CH4,3.9,kg/TJ,3355.194024,kg +bae7fcfd-e396-34a4-a2c2-c67ba360c54e,SESCO,II.1.1,Tucuman,AR-T,annual,2016,gas oil combustion consumption by to the public,860.30616,TJ,N2O,3.9,kg/TJ,3355.194024,kg +ba558b5b-38b5-3a9d-8794-f4de6d5dda79,SESCO,II.1.1,Buenos Aires,AR-B,annual,2016,gas oil combustion consumption by to the public,7827.6374399999995,TJ,CO2,74100.0,kg/TJ,580027934.304,kg +2daa18a0-b585-326b-9989-b1020e1ebe4f,SESCO,II.1.1,Buenos Aires,AR-B,annual,2016,gas oil combustion consumption by to the public,7827.6374399999995,TJ,CH4,3.9,kg/TJ,30527.786016,kg +2daa18a0-b585-326b-9989-b1020e1ebe4f,SESCO,II.1.1,Buenos Aires,AR-B,annual,2016,gas oil combustion consumption by to the public,7827.6374399999995,TJ,N2O,3.9,kg/TJ,30527.786016,kg +8ff4de31-6d13-3f14-9c23-1ab6e48c5a2a,SESCO,II.1.1,Capital Federal,AR-C,annual,2016,gas oil combustion consumption by to the public,1372.41552,TJ,CO2,74100.0,kg/TJ,101695990.032,kg +3df7aa46-c90d-36fe-b5ba-6e1c2ba6465b,SESCO,II.1.1,Capital Federal,AR-C,annual,2016,gas oil combustion consumption by to the public,1372.41552,TJ,CH4,3.9,kg/TJ,5352.420528,kg +3df7aa46-c90d-36fe-b5ba-6e1c2ba6465b,SESCO,II.1.1,Capital Federal,AR-C,annual,2016,gas oil combustion consumption by to the public,1372.41552,TJ,N2O,3.9,kg/TJ,5352.420528,kg +ac8a7a3a-676d-332a-8caa-813d275c17e6,SESCO,II.1.1,Catamarca,AR-K,annual,2016,gas oil combustion consumption by to the public,43.30788,TJ,CO2,74100.0,kg/TJ,3209113.908,kg +90e3f0a0-fc6c-3fba-935b-3a4305bff4de,SESCO,II.1.1,Catamarca,AR-K,annual,2016,gas oil combustion consumption by to the public,43.30788,TJ,CH4,3.9,kg/TJ,168.90073199999998,kg +90e3f0a0-fc6c-3fba-935b-3a4305bff4de,SESCO,II.1.1,Catamarca,AR-K,annual,2016,gas oil combustion consumption by to the public,43.30788,TJ,N2O,3.9,kg/TJ,168.90073199999998,kg +a1f028de-42e1-3628-a09c-543a0c7fe9f8,SESCO,II.1.1,Chaco,AR-H,annual,2016,gas oil combustion consumption by to the public,445.179,TJ,CO2,74100.0,kg/TJ,32987763.9,kg +5e9d95e9-1aa4-3433-8645-4873845fc8be,SESCO,II.1.1,Chaco,AR-H,annual,2016,gas oil combustion consumption by to the public,445.179,TJ,CH4,3.9,kg/TJ,1736.1980999999998,kg +5e9d95e9-1aa4-3433-8645-4873845fc8be,SESCO,II.1.1,Chaco,AR-H,annual,2016,gas oil combustion consumption by to the public,445.179,TJ,N2O,3.9,kg/TJ,1736.1980999999998,kg +3a81f636-5fed-3556-918c-33f8dde36787,SESCO,II.1.1,Corrientes,AR-W,annual,2016,gas oil combustion consumption by to the public,332.01504,TJ,CO2,74100.0,kg/TJ,24602314.464,kg +986d755f-f74a-30d8-9d8f-897c982b116e,SESCO,II.1.1,Corrientes,AR-W,annual,2016,gas oil combustion consumption by to the public,332.01504,TJ,CH4,3.9,kg/TJ,1294.8586559999999,kg +986d755f-f74a-30d8-9d8f-897c982b116e,SESCO,II.1.1,Corrientes,AR-W,annual,2016,gas oil combustion consumption by to the public,332.01504,TJ,N2O,3.9,kg/TJ,1294.8586559999999,kg +710fc57d-3986-3711-b695-fd3c5cfa15f6,SESCO,II.1.1,Córdoba,AR-X,annual,2016,gas oil combustion consumption by to the public,1592.38632,TJ,CO2,74100.0,kg/TJ,117995826.312,kg +8b93d727-2688-3d48-8a87-7d27a630a2ef,SESCO,II.1.1,Córdoba,AR-X,annual,2016,gas oil combustion consumption by to the public,1592.38632,TJ,CH4,3.9,kg/TJ,6210.306648,kg +8b93d727-2688-3d48-8a87-7d27a630a2ef,SESCO,II.1.1,Córdoba,AR-X,annual,2016,gas oil combustion consumption by to the public,1592.38632,TJ,N2O,3.9,kg/TJ,6210.306648,kg +2220ff61-2cb5-3d1a-9b8b-551fc614b518,SESCO,II.1.1,Entre Rios,AR-E,annual,2016,gas oil combustion consumption by to the public,661.5378,TJ,CO2,74100.0,kg/TJ,49019950.98,kg +4b7e61fc-45c7-3f1b-beea-da617b4073cf,SESCO,II.1.1,Entre Rios,AR-E,annual,2016,gas oil combustion consumption by to the public,661.5378,TJ,CH4,3.9,kg/TJ,2579.9974199999997,kg +4b7e61fc-45c7-3f1b-beea-da617b4073cf,SESCO,II.1.1,Entre Rios,AR-E,annual,2016,gas oil combustion consumption by to the public,661.5378,TJ,N2O,3.9,kg/TJ,2579.9974199999997,kg +216f1301-c7d1-3aee-b9bb-d05afbe62e58,SESCO,II.1.1,Formosa,AR-P,annual,2016,gas oil combustion consumption by to the public,155.4966,TJ,CO2,74100.0,kg/TJ,11522298.06,kg +d4e5c206-1822-3cff-950d-2b93e3510190,SESCO,II.1.1,Formosa,AR-P,annual,2016,gas oil combustion consumption by to the public,155.4966,TJ,CH4,3.9,kg/TJ,606.43674,kg +d4e5c206-1822-3cff-950d-2b93e3510190,SESCO,II.1.1,Formosa,AR-P,annual,2016,gas oil combustion consumption by to the public,155.4966,TJ,N2O,3.9,kg/TJ,606.43674,kg +ddccfbb6-b105-35f3-b08c-f91182819bad,SESCO,II.1.1,Jujuy,AR-Y,annual,2016,gas oil combustion consumption by to the public,53.20476,TJ,CO2,74100.0,kg/TJ,3942472.716,kg +1977302b-70b4-39f2-95c2-2c7348d84da0,SESCO,II.1.1,Jujuy,AR-Y,annual,2016,gas oil combustion consumption by to the public,53.20476,TJ,CH4,3.9,kg/TJ,207.498564,kg +1977302b-70b4-39f2-95c2-2c7348d84da0,SESCO,II.1.1,Jujuy,AR-Y,annual,2016,gas oil combustion consumption by to the public,53.20476,TJ,N2O,3.9,kg/TJ,207.498564,kg +d6f9b026-453e-3ec5-8f94-a1c0388fb5be,SESCO,II.1.1,La Pampa,AR-L,annual,2016,gas oil combustion consumption by to the public,251.17848,TJ,CO2,74100.0,kg/TJ,18612325.368,kg +23d4aaa4-c8a6-3919-b9d0-12c63e3b8ff2,SESCO,II.1.1,La Pampa,AR-L,annual,2016,gas oil combustion consumption by to the public,251.17848,TJ,CH4,3.9,kg/TJ,979.596072,kg +23d4aaa4-c8a6-3919-b9d0-12c63e3b8ff2,SESCO,II.1.1,La Pampa,AR-L,annual,2016,gas oil combustion consumption by to the public,251.17848,TJ,N2O,3.9,kg/TJ,979.596072,kg +73e568c3-5665-32ea-b36d-2d80deb1cd92,SESCO,II.1.1,La Rioja,AR-F,annual,2016,gas oil combustion consumption by to the public,128.65944,TJ,CO2,74100.0,kg/TJ,9533664.503999999,kg +d8869a45-e96c-38d1-870d-2401393be171,SESCO,II.1.1,La Rioja,AR-F,annual,2016,gas oil combustion consumption by to the public,128.65944,TJ,CH4,3.9,kg/TJ,501.77181599999994,kg +d8869a45-e96c-38d1-870d-2401393be171,SESCO,II.1.1,La Rioja,AR-F,annual,2016,gas oil combustion consumption by to the public,128.65944,TJ,N2O,3.9,kg/TJ,501.77181599999994,kg +8ad4441f-dc5d-3d47-b52b-a2af2a8ba3a5,SESCO,II.1.1,Mendoza,AR-M,annual,2016,gas oil combustion consumption by to the public,457.13472,TJ,CO2,74100.0,kg/TJ,33873682.752000004,kg +5dff0ff3-b10a-31f9-974b-5c2f1d992aea,SESCO,II.1.1,Mendoza,AR-M,annual,2016,gas oil combustion consumption by to the public,457.13472,TJ,CH4,3.9,kg/TJ,1782.825408,kg +5dff0ff3-b10a-31f9-974b-5c2f1d992aea,SESCO,II.1.1,Mendoza,AR-M,annual,2016,gas oil combustion consumption by to the public,457.13472,TJ,N2O,3.9,kg/TJ,1782.825408,kg +232d61ea-de1a-3f9c-81af-84ad05969da8,SESCO,II.1.1,Misiones,AR-N,annual,2016,gas oil combustion consumption by to the public,388.36224,TJ,CO2,74100.0,kg/TJ,28777641.983999997,kg +9349c15c-327e-38e0-afac-ee51e9cf78bb,SESCO,II.1.1,Misiones,AR-N,annual,2016,gas oil combustion consumption by to the public,388.36224,TJ,CH4,3.9,kg/TJ,1514.6127359999998,kg +9349c15c-327e-38e0-afac-ee51e9cf78bb,SESCO,II.1.1,Misiones,AR-N,annual,2016,gas oil combustion consumption by to the public,388.36224,TJ,N2O,3.9,kg/TJ,1514.6127359999998,kg +d5c252fa-2c68-3fbb-8188-fb07f16b73a1,SESCO,II.1.1,Neuquén,AR-Q,annual,2016,gas oil combustion consumption by to the public,517.419,TJ,CO2,74100.0,kg/TJ,38340747.9,kg +06352cd4-c5c8-311e-bf20-5c79d055351f,SESCO,II.1.1,Neuquén,AR-Q,annual,2016,gas oil combustion consumption by to the public,517.419,TJ,CH4,3.9,kg/TJ,2017.9341,kg +06352cd4-c5c8-311e-bf20-5c79d055351f,SESCO,II.1.1,Neuquén,AR-Q,annual,2016,gas oil combustion consumption by to the public,517.419,TJ,N2O,3.9,kg/TJ,2017.9341,kg +1a537832-9e64-3787-bf8f-bcb41c30034c,SESCO,II.1.1,Rio Negro,AR-R,annual,2016,gas oil combustion consumption by to the public,135.19716,TJ,CO2,74100.0,kg/TJ,10018109.556,kg +716a76b8-0081-3437-a5f3-0c976caa6010,SESCO,II.1.1,Rio Negro,AR-R,annual,2016,gas oil combustion consumption by to the public,135.19716,TJ,CH4,3.9,kg/TJ,527.268924,kg +716a76b8-0081-3437-a5f3-0c976caa6010,SESCO,II.1.1,Rio Negro,AR-R,annual,2016,gas oil combustion consumption by to the public,135.19716,TJ,N2O,3.9,kg/TJ,527.268924,kg +ba436f0f-0d70-319b-8d1d-d456c0db9146,SESCO,II.1.1,Salta,AR-A,annual,2016,gas oil combustion consumption by to the public,109.55196,TJ,CO2,74100.0,kg/TJ,8117800.236,kg +61e62fb6-f87f-34b8-915c-5621ef916636,SESCO,II.1.1,Salta,AR-A,annual,2016,gas oil combustion consumption by to the public,109.55196,TJ,CH4,3.9,kg/TJ,427.252644,kg +61e62fb6-f87f-34b8-915c-5621ef916636,SESCO,II.1.1,Salta,AR-A,annual,2016,gas oil combustion consumption by to the public,109.55196,TJ,N2O,3.9,kg/TJ,427.252644,kg +16e69860-f80f-3f01-8cac-000bc7e40827,SESCO,II.1.1,San Juan,AR-J,annual,2016,gas oil combustion consumption by to the public,65.70228,TJ,CO2,74100.0,kg/TJ,4868538.948,kg +ab7a74f8-d344-3fa5-aaaf-bc8b5dfd8bb7,SESCO,II.1.1,San Juan,AR-J,annual,2016,gas oil combustion consumption by to the public,65.70228,TJ,CH4,3.9,kg/TJ,256.238892,kg +ab7a74f8-d344-3fa5-aaaf-bc8b5dfd8bb7,SESCO,II.1.1,San Juan,AR-J,annual,2016,gas oil combustion consumption by to the public,65.70228,TJ,N2O,3.9,kg/TJ,256.238892,kg +8e54cfd1-68f0-397b-a895-7b57ba984cf3,SESCO,II.1.1,San Luis,AR-D,annual,2016,gas oil combustion consumption by to the public,29.72676,TJ,CO2,74100.0,kg/TJ,2202752.9159999997,kg +7e348da8-845b-324d-a5d4-b3eb8b0796f9,SESCO,II.1.1,San Luis,AR-D,annual,2016,gas oil combustion consumption by to the public,29.72676,TJ,CH4,3.9,kg/TJ,115.93436399999999,kg +7e348da8-845b-324d-a5d4-b3eb8b0796f9,SESCO,II.1.1,San Luis,AR-D,annual,2016,gas oil combustion consumption by to the public,29.72676,TJ,N2O,3.9,kg/TJ,115.93436399999999,kg +f3bb9205-038f-3d9a-9c91-d40fae9bf0c2,SESCO,II.1.1,Santa Fe,AR-S,annual,2016,gas oil combustion consumption by to the public,2043.27228,TJ,CO2,74100.0,kg/TJ,151406475.94799998,kg +18a4f4b6-8561-3fbb-a42e-b59a57fe0fbb,SESCO,II.1.1,Santa Fe,AR-S,annual,2016,gas oil combustion consumption by to the public,2043.27228,TJ,CH4,3.9,kg/TJ,7968.7618919999995,kg +18a4f4b6-8561-3fbb-a42e-b59a57fe0fbb,SESCO,II.1.1,Santa Fe,AR-S,annual,2016,gas oil combustion consumption by to the public,2043.27228,TJ,N2O,3.9,kg/TJ,7968.7618919999995,kg +c0bbcab3-0cd8-3e7b-866d-3abbda84a478,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2016,gas oil combustion consumption by to the public,218.34539999999998,TJ,CO2,74100.0,kg/TJ,16179394.139999999,kg +9f6dbc80-1793-303b-89e7-1b8e60397241,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2016,gas oil combustion consumption by to the public,218.34539999999998,TJ,CH4,3.9,kg/TJ,851.5470599999999,kg +9f6dbc80-1793-303b-89e7-1b8e60397241,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2016,gas oil combustion consumption by to the public,218.34539999999998,TJ,N2O,3.9,kg/TJ,851.5470599999999,kg +2202dfe6-697e-3081-b325-40d45c78d6db,SESCO,II.1.1,Tucuman,AR-T,annual,2016,gas oil combustion consumption by to the public,445.46796,TJ,CO2,74100.0,kg/TJ,33009175.836,kg +2ce8d86b-c817-34b0-af6f-2c7395c4dc75,SESCO,II.1.1,Tucuman,AR-T,annual,2016,gas oil combustion consumption by to the public,445.46796,TJ,CH4,3.9,kg/TJ,1737.325044,kg +2ce8d86b-c817-34b0-af6f-2c7395c4dc75,SESCO,II.1.1,Tucuman,AR-T,annual,2016,gas oil combustion consumption by to the public,445.46796,TJ,N2O,3.9,kg/TJ,1737.325044,kg +2b858ecc-3d98-3934-b210-2e6e3a7408cf,SESCO,II.1.1,Buenos Aires,AR-B,annual,2016,jet kerosene combustion consumption by to the public,0.7863249999999998,TJ,CO2,71500.0,kg/TJ,56222.23749999999,kg +fcd0f7a0-31b3-3427-b9dd-178bddde6ea4,SESCO,II.1.1,Buenos Aires,AR-B,annual,2016,jet kerosene combustion consumption by to the public,0.7863249999999998,TJ,CH4,0.5,kg/TJ,0.3931624999999999,kg +eb4d95be-4453-3e0c-be80-7a9ee177465f,SESCO,II.1.1,Buenos Aires,AR-B,annual,2016,jet kerosene combustion consumption by to the public,0.7863249999999998,TJ,N2O,2.0,kg/TJ,1.5726499999999997,kg +da735b81-5e18-33c0-b5d8-41a1d5217ba5,SESCO,II.1.1,Entre Rios,AR-E,annual,2016,jet kerosene combustion consumption by to the public,5.03248,TJ,CO2,71500.0,kg/TJ,359822.31999999995,kg +d66ba6aa-aa51-3411-ad70-4d605e4cb45a,SESCO,II.1.1,Entre Rios,AR-E,annual,2016,jet kerosene combustion consumption by to the public,5.03248,TJ,CH4,0.5,kg/TJ,2.51624,kg +1b78e457-283e-37bc-97d3-0b7fd554cd9e,SESCO,II.1.1,Entre Rios,AR-E,annual,2016,jet kerosene combustion consumption by to the public,5.03248,TJ,N2O,2.0,kg/TJ,10.06496,kg +817b7288-92c8-317e-a5ee-b1609618e952,SESCO,II.1.1,Santa Fe,AR-S,annual,2016,jet kerosene combustion consumption by to the public,1.100855,TJ,CO2,71500.0,kg/TJ,78711.13249999999,kg +4c5e1ffa-c059-30f5-912e-be9bcbd63f0f,SESCO,II.1.1,Santa Fe,AR-S,annual,2016,jet kerosene combustion consumption by to the public,1.100855,TJ,CH4,0.5,kg/TJ,0.5504275,kg +9c556cbe-fac7-3424-b502-928622effc85,SESCO,II.1.1,Santa Fe,AR-S,annual,2016,jet kerosene combustion consumption by to the public,1.100855,TJ,N2O,2.0,kg/TJ,2.20171,kg +a0737e12-179b-305e-8caf-f24f7efbbb7f,SESCO,I.3.1,Buenos Aires,AR-B,annual,2016,gasoline combustion consumption by petrochemical industries,18.9604,TJ,CO2,69300.0,kg/TJ,1313955.72,kg +13a64f84-188f-3be8-91ed-43493c79356e,SESCO,I.3.1,Buenos Aires,AR-B,annual,2016,gasoline combustion consumption by petrochemical industries,18.9604,TJ,CH4,33.0,kg/TJ,625.6932,kg +02a62491-df8b-386a-9186-bfb908949d1b,SESCO,I.3.1,Buenos Aires,AR-B,annual,2016,gasoline combustion consumption by petrochemical industries,18.9604,TJ,N2O,3.2,kg/TJ,60.673280000000005,kg +fbf8fb9b-c812-3757-ab22-0aa463c99018,SESCO,I.3.1,Capital Federal,AR-C,annual,2016,gas oil combustion consumption by petrochemical industries,2.31168,TJ,CO2,74100.0,kg/TJ,171295.48799999998,kg +f187583f-851a-3776-8c89-e4703fde130f,SESCO,I.3.1,Capital Federal,AR-C,annual,2016,gas oil combustion consumption by petrochemical industries,2.31168,TJ,CH4,3.9,kg/TJ,9.015552,kg +f187583f-851a-3776-8c89-e4703fde130f,SESCO,I.3.1,Capital Federal,AR-C,annual,2016,gas oil combustion consumption by petrochemical industries,2.31168,TJ,N2O,3.9,kg/TJ,9.015552,kg +c4e403a9-6c29-3b1c-91a5-5d907918eadc,SESCO,II.2.1,Buenos Aires,AR-B,annual,2016,gas oil combustion consumption by railway transport,286.251,TJ,CO2,74100.0,kg/TJ,21211199.099999998,kg +3c5ee5ad-79fb-3e34-9a26-9fa274b5c312,SESCO,II.2.1,Buenos Aires,AR-B,annual,2016,gas oil combustion consumption by railway transport,286.251,TJ,CH4,3.9,kg/TJ,1116.3789,kg +3c5ee5ad-79fb-3e34-9a26-9fa274b5c312,SESCO,II.2.1,Buenos Aires,AR-B,annual,2016,gas oil combustion consumption by railway transport,286.251,TJ,N2O,3.9,kg/TJ,1116.3789,kg +fdc01a05-a633-339e-8046-b6fe7a10f0e3,SESCO,II.2.1,Capital Federal,AR-C,annual,2016,gas oil combustion consumption by railway transport,63.21,TJ,CO2,74100.0,kg/TJ,4683861.0,kg +5c3dab5b-6389-32a5-ac43-e69735833ab5,SESCO,II.2.1,Capital Federal,AR-C,annual,2016,gas oil combustion consumption by railway transport,63.21,TJ,CH4,3.9,kg/TJ,246.519,kg +5c3dab5b-6389-32a5-ac43-e69735833ab5,SESCO,II.2.1,Capital Federal,AR-C,annual,2016,gas oil combustion consumption by railway transport,63.21,TJ,N2O,3.9,kg/TJ,246.519,kg +b7649460-8240-3f4f-8c76-2dd775b7b608,SESCO,II.2.1,Santa Fe,AR-S,annual,2016,gas oil combustion consumption by railway transport,78.34428,TJ,CO2,74100.0,kg/TJ,5805311.148,kg +567f48fd-caeb-3a70-96bd-a10e19823008,SESCO,II.2.1,Santa Fe,AR-S,annual,2016,gas oil combustion consumption by railway transport,78.34428,TJ,CH4,3.9,kg/TJ,305.542692,kg +567f48fd-caeb-3a70-96bd-a10e19823008,SESCO,II.2.1,Santa Fe,AR-S,annual,2016,gas oil combustion consumption by railway transport,78.34428,TJ,N2O,3.9,kg/TJ,305.542692,kg +0be12027-5646-345d-9809-97282a594414,SESCO,II.1.1,Capital Federal,AR-C,annual,2016,gasoline combustion consumption by freight transport,10.189,TJ,CO2,69300.0,kg/TJ,706097.7,kg +46040588-7cf8-3040-91c7-1675784fa318,SESCO,II.1.1,Capital Federal,AR-C,annual,2016,gasoline combustion consumption by freight transport,10.189,TJ,CH4,33.0,kg/TJ,336.237,kg +6d134e5a-0832-3410-8b19-f359de99d380,SESCO,II.1.1,Capital Federal,AR-C,annual,2016,gasoline combustion consumption by freight transport,10.189,TJ,N2O,3.2,kg/TJ,32.604800000000004,kg +1fc0784d-5da5-39d4-86fe-23904a1671a2,SESCO,II.1.1,Buenos Aires,AR-B,annual,2016,gas oil combustion consumption by freight transport,216.32268,TJ,CO2,74100.0,kg/TJ,16029510.588,kg +c4475c1e-c3d5-3d43-9808-908b28dde5ee,SESCO,II.1.1,Buenos Aires,AR-B,annual,2016,gas oil combustion consumption by freight transport,216.32268,TJ,CH4,3.9,kg/TJ,843.6584519999999,kg +c4475c1e-c3d5-3d43-9808-908b28dde5ee,SESCO,II.1.1,Buenos Aires,AR-B,annual,2016,gas oil combustion consumption by freight transport,216.32268,TJ,N2O,3.9,kg/TJ,843.6584519999999,kg +2994dd9f-25d1-38be-97be-6c832b3ae0bd,SESCO,II.1.1,Capital Federal,AR-C,annual,2016,gas oil combustion consumption by freight transport,114.10307999999999,TJ,CO2,74100.0,kg/TJ,8455038.228,kg +133951bc-29ac-3bf2-912a-db91b3512e33,SESCO,II.1.1,Capital Federal,AR-C,annual,2016,gas oil combustion consumption by freight transport,114.10307999999999,TJ,CH4,3.9,kg/TJ,445.002012,kg +133951bc-29ac-3bf2-912a-db91b3512e33,SESCO,II.1.1,Capital Federal,AR-C,annual,2016,gas oil combustion consumption by freight transport,114.10307999999999,TJ,N2O,3.9,kg/TJ,445.002012,kg +d4ec4b57-57f6-3d8e-8ac1-e5a0d9278e49,SESCO,II.1.1,Córdoba,AR-X,annual,2016,gas oil combustion consumption by freight transport,99.07715999999999,TJ,CO2,74100.0,kg/TJ,7341617.556,kg +6493073f-916c-3312-af38-a3aef2284e2e,SESCO,II.1.1,Córdoba,AR-X,annual,2016,gas oil combustion consumption by freight transport,99.07715999999999,TJ,CH4,3.9,kg/TJ,386.400924,kg +6493073f-916c-3312-af38-a3aef2284e2e,SESCO,II.1.1,Córdoba,AR-X,annual,2016,gas oil combustion consumption by freight transport,99.07715999999999,TJ,N2O,3.9,kg/TJ,386.400924,kg +6cb81566-6129-36ae-a65e-5feee7d02437,SESCO,II.1.1,Buenos Aires,AR-B,annual,2016,gas oil combustion consumption by freight transport,23.33352,TJ,CO2,74100.0,kg/TJ,1729013.832,kg +d16ad73a-d57c-3a37-ac91-3676204d2f89,SESCO,II.1.1,Buenos Aires,AR-B,annual,2016,gas oil combustion consumption by freight transport,23.33352,TJ,CH4,3.9,kg/TJ,91.000728,kg +d16ad73a-d57c-3a37-ac91-3676204d2f89,SESCO,II.1.1,Buenos Aires,AR-B,annual,2016,gas oil combustion consumption by freight transport,23.33352,TJ,N2O,3.9,kg/TJ,91.000728,kg +a53e937c-d3c9-3f1b-9015-eeaf84540e7e,SESCO,II.1.1,Córdoba,AR-X,annual,2016,gas oil combustion consumption by freight transport,0.97524,TJ,CO2,74100.0,kg/TJ,72265.284,kg +55880b0e-98a4-3a9f-9763-0855eaed1431,SESCO,II.1.1,Córdoba,AR-X,annual,2016,gas oil combustion consumption by freight transport,0.97524,TJ,CH4,3.9,kg/TJ,3.803436,kg +55880b0e-98a4-3a9f-9763-0855eaed1431,SESCO,II.1.1,Córdoba,AR-X,annual,2016,gas oil combustion consumption by freight transport,0.97524,TJ,N2O,3.9,kg/TJ,3.803436,kg +6782a491-209a-38f4-8f70-b9a16adb210f,SESCO,II.1.1,Buenos Aires,AR-B,annual,2016,gas oil combustion consumption by public passenger transport,6382.29564,TJ,CO2,74100.0,kg/TJ,472928106.924,kg +c01fe38c-51c5-30f5-8199-8758bab9fb2a,SESCO,II.1.1,Buenos Aires,AR-B,annual,2016,gas oil combustion consumption by public passenger transport,6382.29564,TJ,CH4,3.9,kg/TJ,24890.952996,kg +c01fe38c-51c5-30f5-8199-8758bab9fb2a,SESCO,II.1.1,Buenos Aires,AR-B,annual,2016,gas oil combustion consumption by public passenger transport,6382.29564,TJ,N2O,3.9,kg/TJ,24890.952996,kg +094b6da0-8eb9-36b8-841a-a26e335ee69e,SESCO,II.1.1,Capital Federal,AR-C,annual,2016,gas oil combustion consumption by public passenger transport,112.54992,TJ,CO2,74100.0,kg/TJ,8339949.072,kg +4e9362d3-4dc9-3afb-868e-af3647833be1,SESCO,II.1.1,Capital Federal,AR-C,annual,2016,gas oil combustion consumption by public passenger transport,112.54992,TJ,CH4,3.9,kg/TJ,438.944688,kg +4e9362d3-4dc9-3afb-868e-af3647833be1,SESCO,II.1.1,Capital Federal,AR-C,annual,2016,gas oil combustion consumption by public passenger transport,112.54992,TJ,N2O,3.9,kg/TJ,438.944688,kg +648d5e2f-32cf-3905-9136-e89c76655f6c,SESCO,II.1.1,Misiones,AR-N,annual,2016,gas oil combustion consumption by public passenger transport,66.78587999999999,TJ,CO2,74100.0,kg/TJ,4948833.708,kg +411533d3-2635-3dad-8267-5ab7b5c0e862,SESCO,II.1.1,Misiones,AR-N,annual,2016,gas oil combustion consumption by public passenger transport,66.78587999999999,TJ,CH4,3.9,kg/TJ,260.464932,kg +411533d3-2635-3dad-8267-5ab7b5c0e862,SESCO,II.1.1,Misiones,AR-N,annual,2016,gas oil combustion consumption by public passenger transport,66.78587999999999,TJ,N2O,3.9,kg/TJ,260.464932,kg +c0a2eef3-d73b-3d84-8bdc-d0ed4de8fac7,SESCO,II.1.1,Buenos Aires,AR-B,annual,2016,gas oil combustion consumption by public passenger transport,30.340799999999998,TJ,CO2,74100.0,kg/TJ,2248253.28,kg +2a25ba4c-74a4-352a-8e39-d25e29b42002,SESCO,II.1.1,Buenos Aires,AR-B,annual,2016,gas oil combustion consumption by public passenger transport,30.340799999999998,TJ,CH4,3.9,kg/TJ,118.32911999999999,kg +2a25ba4c-74a4-352a-8e39-d25e29b42002,SESCO,II.1.1,Buenos Aires,AR-B,annual,2016,gas oil combustion consumption by public passenger transport,30.340799999999998,TJ,N2O,3.9,kg/TJ,118.32911999999999,kg +c8076c9e-8f49-3b6b-86e7-c26632f916e7,SESCO,II.5.1,Buenos Aires,AR-B,annual,2016,gasoline combustion consumption by agriculture machines,7.4424,TJ,CO2,69300.0,kg/TJ,515758.32,kg +0269ff0b-337f-3458-a927-acfff52d72ba,SESCO,II.5.1,Buenos Aires,AR-B,annual,2016,gasoline combustion consumption by agriculture machines,7.4424,TJ,CH4,33.0,kg/TJ,245.5992,kg +8db669ee-117c-32a0-9330-014b28531c42,SESCO,II.5.1,Buenos Aires,AR-B,annual,2016,gasoline combustion consumption by agriculture machines,7.4424,TJ,N2O,3.2,kg/TJ,23.81568,kg +e451a04a-b4cc-384e-85b9-653ab9c7d599,SESCO,II.5.1,Jujuy,AR-Y,annual,2016,gasoline combustion consumption by agriculture machines,4.6514999999999995,TJ,CO2,69300.0,kg/TJ,322348.94999999995,kg +cd639f78-a688-3dd8-8164-f2f7bb3e3f9b,SESCO,II.5.1,Jujuy,AR-Y,annual,2016,gasoline combustion consumption by agriculture machines,4.6514999999999995,TJ,CH4,33.0,kg/TJ,153.49949999999998,kg +a4de63c6-7d19-3555-9ea9-a88c290485b4,SESCO,II.5.1,Jujuy,AR-Y,annual,2016,gasoline combustion consumption by agriculture machines,4.6514999999999995,TJ,N2O,3.2,kg/TJ,14.884799999999998,kg +9e61a047-e8ee-3bef-8309-affa0b8ec468,SESCO,II.5.1,Salta,AR-A,annual,2016,gasoline combustion consumption by agriculture machines,3.4997,TJ,CO2,69300.0,kg/TJ,242529.21,kg +95e94e23-4bf9-3a61-8d33-841a1b4e8142,SESCO,II.5.1,Salta,AR-A,annual,2016,gasoline combustion consumption by agriculture machines,3.4997,TJ,CH4,33.0,kg/TJ,115.4901,kg +bff36242-0f1d-3d24-8d54-a55b77b33775,SESCO,II.5.1,Salta,AR-A,annual,2016,gasoline combustion consumption by agriculture machines,3.4997,TJ,N2O,3.2,kg/TJ,11.19904,kg +48dec184-fff3-385a-b885-3f34eae61411,SESCO,II.5.1,Santa Fe,AR-S,annual,2016,gasoline combustion consumption by agriculture machines,1.1961,TJ,CO2,69300.0,kg/TJ,82889.73,kg +0492c906-1745-3d37-8b94-f2b8d7426d64,SESCO,II.5.1,Santa Fe,AR-S,annual,2016,gasoline combustion consumption by agriculture machines,1.1961,TJ,CH4,33.0,kg/TJ,39.4713,kg +9a19e42f-2a12-397d-9da7-c1644ceea70d,SESCO,II.5.1,Santa Fe,AR-S,annual,2016,gasoline combustion consumption by agriculture machines,1.1961,TJ,N2O,3.2,kg/TJ,3.82752,kg +02e23d64-faa2-3037-993c-98bb1c424a4c,SESCO,II.5.1,Buenos Aires,AR-B,annual,2016,gas oil combustion consumption by agriculture machines,10148.52804,TJ,CO2,74100.0,kg/TJ,752005927.7639999,kg +9788fc88-0186-3212-9586-846b73d7da1c,SESCO,II.5.1,Buenos Aires,AR-B,annual,2016,gas oil combustion consumption by agriculture machines,10148.52804,TJ,CH4,3.9,kg/TJ,39579.259355999995,kg +9788fc88-0186-3212-9586-846b73d7da1c,SESCO,II.5.1,Buenos Aires,AR-B,annual,2016,gas oil combustion consumption by agriculture machines,10148.52804,TJ,N2O,3.9,kg/TJ,39579.259355999995,kg +83158d79-b095-3f3a-8587-7b8e8ceac647,SESCO,II.5.1,Capital Federal,AR-C,annual,2016,gas oil combustion consumption by agriculture machines,18.09612,TJ,CO2,74100.0,kg/TJ,1340922.4919999999,kg +5d00577f-497d-3f5c-8751-259ef4f6e093,SESCO,II.5.1,Capital Federal,AR-C,annual,2016,gas oil combustion consumption by agriculture machines,18.09612,TJ,CH4,3.9,kg/TJ,70.574868,kg +5d00577f-497d-3f5c-8751-259ef4f6e093,SESCO,II.5.1,Capital Federal,AR-C,annual,2016,gas oil combustion consumption by agriculture machines,18.09612,TJ,N2O,3.9,kg/TJ,70.574868,kg +3462e7b0-c508-340f-b9d0-05e17b306800,SESCO,II.5.1,Catamarca,AR-K,annual,2016,gas oil combustion consumption by agriculture machines,127.90092,TJ,CO2,74100.0,kg/TJ,9477458.172,kg +79459760-12c3-360b-ba4b-a6e211be6e70,SESCO,II.5.1,Catamarca,AR-K,annual,2016,gas oil combustion consumption by agriculture machines,127.90092,TJ,CH4,3.9,kg/TJ,498.813588,kg +79459760-12c3-360b-ba4b-a6e211be6e70,SESCO,II.5.1,Catamarca,AR-K,annual,2016,gas oil combustion consumption by agriculture machines,127.90092,TJ,N2O,3.9,kg/TJ,498.813588,kg +e56c3897-d031-3678-81b7-c677948cf820,SESCO,II.5.1,Chaco,AR-H,annual,2016,gas oil combustion consumption by agriculture machines,1142.4756,TJ,CO2,74100.0,kg/TJ,84657441.96,kg +8d06c282-1931-35b9-b4df-34dfb5d44f12,SESCO,II.5.1,Chaco,AR-H,annual,2016,gas oil combustion consumption by agriculture machines,1142.4756,TJ,CH4,3.9,kg/TJ,4455.65484,kg +8d06c282-1931-35b9-b4df-34dfb5d44f12,SESCO,II.5.1,Chaco,AR-H,annual,2016,gas oil combustion consumption by agriculture machines,1142.4756,TJ,N2O,3.9,kg/TJ,4455.65484,kg +00af115b-2189-3e1a-a321-6f864ba7ad1d,SESCO,II.5.1,Chubut,AR-U,annual,2016,gas oil combustion consumption by agriculture machines,0.10836,TJ,CO2,74100.0,kg/TJ,8029.476,kg +994dbd39-79ab-37e0-9409-857e8eb366cc,SESCO,II.5.1,Chubut,AR-U,annual,2016,gas oil combustion consumption by agriculture machines,0.10836,TJ,CH4,3.9,kg/TJ,0.422604,kg +994dbd39-79ab-37e0-9409-857e8eb366cc,SESCO,II.5.1,Chubut,AR-U,annual,2016,gas oil combustion consumption by agriculture machines,0.10836,TJ,N2O,3.9,kg/TJ,0.422604,kg +d15019e5-ba29-389d-b00a-c36812b7689a,SESCO,II.5.1,Corrientes,AR-W,annual,2016,gas oil combustion consumption by agriculture machines,257.355,TJ,CO2,74100.0,kg/TJ,19070005.5,kg +1d53e245-8f46-34d2-bdf2-988289d396b9,SESCO,II.5.1,Corrientes,AR-W,annual,2016,gas oil combustion consumption by agriculture machines,257.355,TJ,CH4,3.9,kg/TJ,1003.6845000000001,kg +1d53e245-8f46-34d2-bdf2-988289d396b9,SESCO,II.5.1,Corrientes,AR-W,annual,2016,gas oil combustion consumption by agriculture machines,257.355,TJ,N2O,3.9,kg/TJ,1003.6845000000001,kg +66213f43-faee-3a44-a834-ea0b5a3eca77,SESCO,II.5.1,Córdoba,AR-X,annual,2016,gas oil combustion consumption by agriculture machines,7882.68432,TJ,CO2,74100.0,kg/TJ,584106908.112,kg +cc317d96-699c-3bed-8b6e-4a5651e2f437,SESCO,II.5.1,Córdoba,AR-X,annual,2016,gas oil combustion consumption by agriculture machines,7882.68432,TJ,CH4,3.9,kg/TJ,30742.468848,kg +cc317d96-699c-3bed-8b6e-4a5651e2f437,SESCO,II.5.1,Córdoba,AR-X,annual,2016,gas oil combustion consumption by agriculture machines,7882.68432,TJ,N2O,3.9,kg/TJ,30742.468848,kg +93753e41-72e6-30dd-9038-bd8334a672b0,SESCO,II.5.1,Entre Rios,AR-E,annual,2016,gas oil combustion consumption by agriculture machines,1997.1109199999999,TJ,CO2,74100.0,kg/TJ,147985919.172,kg +16e3afb6-9aef-3254-a875-b9d6ef031a2f,SESCO,II.5.1,Entre Rios,AR-E,annual,2016,gas oil combustion consumption by agriculture machines,1997.1109199999999,TJ,CH4,3.9,kg/TJ,7788.732587999999,kg +16e3afb6-9aef-3254-a875-b9d6ef031a2f,SESCO,II.5.1,Entre Rios,AR-E,annual,2016,gas oil combustion consumption by agriculture machines,1997.1109199999999,TJ,N2O,3.9,kg/TJ,7788.732587999999,kg +99f65982-17ea-32f0-9c54-872bb036b270,SESCO,II.5.1,Formosa,AR-P,annual,2016,gas oil combustion consumption by agriculture machines,258.7998,TJ,CO2,74100.0,kg/TJ,19177065.18,kg +9151a19a-efdb-3cb2-a609-2f78e77c04a1,SESCO,II.5.1,Formosa,AR-P,annual,2016,gas oil combustion consumption by agriculture machines,258.7998,TJ,CH4,3.9,kg/TJ,1009.31922,kg +9151a19a-efdb-3cb2-a609-2f78e77c04a1,SESCO,II.5.1,Formosa,AR-P,annual,2016,gas oil combustion consumption by agriculture machines,258.7998,TJ,N2O,3.9,kg/TJ,1009.31922,kg +5b6042b2-c8dc-355c-aaa5-56ba55c928f5,SESCO,II.5.1,Jujuy,AR-Y,annual,2016,gas oil combustion consumption by agriculture machines,1101.51552,TJ,CO2,74100.0,kg/TJ,81622300.03199999,kg +aea56f48-55e7-3ed4-8c47-707da1f9cd31,SESCO,II.5.1,Jujuy,AR-Y,annual,2016,gas oil combustion consumption by agriculture machines,1101.51552,TJ,CH4,3.9,kg/TJ,4295.910527999999,kg +aea56f48-55e7-3ed4-8c47-707da1f9cd31,SESCO,II.5.1,Jujuy,AR-Y,annual,2016,gas oil combustion consumption by agriculture machines,1101.51552,TJ,N2O,3.9,kg/TJ,4295.910527999999,kg +f34baf12-515c-3832-82ea-a7786641772e,SESCO,II.5.1,La Pampa,AR-L,annual,2016,gas oil combustion consumption by agriculture machines,1910.82024,TJ,CO2,74100.0,kg/TJ,141591779.784,kg +9c026001-e434-3870-9be5-f1f46a41cf87,SESCO,II.5.1,La Pampa,AR-L,annual,2016,gas oil combustion consumption by agriculture machines,1910.82024,TJ,CH4,3.9,kg/TJ,7452.198936,kg +9c026001-e434-3870-9be5-f1f46a41cf87,SESCO,II.5.1,La Pampa,AR-L,annual,2016,gas oil combustion consumption by agriculture machines,1910.82024,TJ,N2O,3.9,kg/TJ,7452.198936,kg +25c5716e-d1b1-3f05-9a4e-80725a213ddf,SESCO,II.5.1,La Rioja,AR-F,annual,2016,gas oil combustion consumption by agriculture machines,119.5572,TJ,CO2,74100.0,kg/TJ,8859188.52,kg +548dad2f-56b9-36cd-aae1-62bd93e7080f,SESCO,II.5.1,La Rioja,AR-F,annual,2016,gas oil combustion consumption by agriculture machines,119.5572,TJ,CH4,3.9,kg/TJ,466.27308,kg +548dad2f-56b9-36cd-aae1-62bd93e7080f,SESCO,II.5.1,La Rioja,AR-F,annual,2016,gas oil combustion consumption by agriculture machines,119.5572,TJ,N2O,3.9,kg/TJ,466.27308,kg +40dbea9d-5833-3ac2-a648-c08c5acb440a,SESCO,II.5.1,Mendoza,AR-M,annual,2016,gas oil combustion consumption by agriculture machines,2484.26136,TJ,CO2,74100.0,kg/TJ,184083766.776,kg +2af858eb-7319-3227-a53b-eba2251315da,SESCO,II.5.1,Mendoza,AR-M,annual,2016,gas oil combustion consumption by agriculture machines,2484.26136,TJ,CH4,3.9,kg/TJ,9688.619304,kg +2af858eb-7319-3227-a53b-eba2251315da,SESCO,II.5.1,Mendoza,AR-M,annual,2016,gas oil combustion consumption by agriculture machines,2484.26136,TJ,N2O,3.9,kg/TJ,9688.619304,kg +455df631-9c28-3175-87c8-fbd5cc013831,SESCO,II.5.1,Misiones,AR-N,annual,2016,gas oil combustion consumption by agriculture machines,1019.45088,TJ,CO2,74100.0,kg/TJ,75541310.208,kg +0615b662-3cac-35b3-951e-cae196792c08,SESCO,II.5.1,Misiones,AR-N,annual,2016,gas oil combustion consumption by agriculture machines,1019.45088,TJ,CH4,3.9,kg/TJ,3975.858432,kg +0615b662-3cac-35b3-951e-cae196792c08,SESCO,II.5.1,Misiones,AR-N,annual,2016,gas oil combustion consumption by agriculture machines,1019.45088,TJ,N2O,3.9,kg/TJ,3975.858432,kg +e12297ce-74ac-3873-8cd6-714e8580b097,SESCO,II.5.1,Rio Negro,AR-R,annual,2016,gas oil combustion consumption by agriculture machines,209.92944,TJ,CO2,74100.0,kg/TJ,15555771.504,kg +99dc5fd9-1696-3747-8e4c-9d9ff564ace3,SESCO,II.5.1,Rio Negro,AR-R,annual,2016,gas oil combustion consumption by agriculture machines,209.92944,TJ,CH4,3.9,kg/TJ,818.724816,kg +99dc5fd9-1696-3747-8e4c-9d9ff564ace3,SESCO,II.5.1,Rio Negro,AR-R,annual,2016,gas oil combustion consumption by agriculture machines,209.92944,TJ,N2O,3.9,kg/TJ,818.724816,kg +74c2366c-3070-3314-95c9-e3e07611df3e,SESCO,II.5.1,Salta,AR-A,annual,2016,gas oil combustion consumption by agriculture machines,1696.44804,TJ,CO2,74100.0,kg/TJ,125706799.764,kg +02c12cf6-105a-3dcb-83a6-9b00bf94a529,SESCO,II.5.1,Salta,AR-A,annual,2016,gas oil combustion consumption by agriculture machines,1696.44804,TJ,CH4,3.9,kg/TJ,6616.1473559999995,kg +02c12cf6-105a-3dcb-83a6-9b00bf94a529,SESCO,II.5.1,Salta,AR-A,annual,2016,gas oil combustion consumption by agriculture machines,1696.44804,TJ,N2O,3.9,kg/TJ,6616.1473559999995,kg +6d92fecf-9acd-3fae-b176-e5fa71e7c18e,SESCO,II.5.1,San Juan,AR-J,annual,2016,gas oil combustion consumption by agriculture machines,490.97916,TJ,CO2,74100.0,kg/TJ,36381555.756,kg +cebe2342-011e-35f1-9d96-c53b6ba7f859,SESCO,II.5.1,San Juan,AR-J,annual,2016,gas oil combustion consumption by agriculture machines,490.97916,TJ,CH4,3.9,kg/TJ,1914.818724,kg +cebe2342-011e-35f1-9d96-c53b6ba7f859,SESCO,II.5.1,San Juan,AR-J,annual,2016,gas oil combustion consumption by agriculture machines,490.97916,TJ,N2O,3.9,kg/TJ,1914.818724,kg +8ad92af1-3e7f-36cb-a1a0-01608f499461,SESCO,II.5.1,San Luis,AR-D,annual,2016,gas oil combustion consumption by agriculture machines,555.56172,TJ,CO2,74100.0,kg/TJ,41167123.452,kg +26173ed1-441c-370d-b236-221f15b9e652,SESCO,II.5.1,San Luis,AR-D,annual,2016,gas oil combustion consumption by agriculture machines,555.56172,TJ,CH4,3.9,kg/TJ,2166.690708,kg +26173ed1-441c-370d-b236-221f15b9e652,SESCO,II.5.1,San Luis,AR-D,annual,2016,gas oil combustion consumption by agriculture machines,555.56172,TJ,N2O,3.9,kg/TJ,2166.690708,kg +9e6d2eca-b8be-3f93-bcdc-bf25aa3f5804,SESCO,II.5.1,Santa Cruz,AR-Z,annual,2016,gas oil combustion consumption by agriculture machines,0.5418,TJ,CO2,74100.0,kg/TJ,40147.38,kg +67752b36-df1c-3d18-9351-19b618e436e5,SESCO,II.5.1,Santa Cruz,AR-Z,annual,2016,gas oil combustion consumption by agriculture machines,0.5418,TJ,CH4,3.9,kg/TJ,2.1130199999999997,kg +67752b36-df1c-3d18-9351-19b618e436e5,SESCO,II.5.1,Santa Cruz,AR-Z,annual,2016,gas oil combustion consumption by agriculture machines,0.5418,TJ,N2O,3.9,kg/TJ,2.1130199999999997,kg +3d0a4474-c8d4-3def-9d4e-26b3abc59864,SESCO,II.5.1,Santa Fe,AR-S,annual,2016,gas oil combustion consumption by agriculture machines,6693.72228,TJ,CO2,74100.0,kg/TJ,496004820.948,kg +0a7f0d10-01d8-3eea-8e2a-a41759da0cae,SESCO,II.5.1,Santa Fe,AR-S,annual,2016,gas oil combustion consumption by agriculture machines,6693.72228,TJ,CH4,3.9,kg/TJ,26105.516892,kg +0a7f0d10-01d8-3eea-8e2a-a41759da0cae,SESCO,II.5.1,Santa Fe,AR-S,annual,2016,gas oil combustion consumption by agriculture machines,6693.72228,TJ,N2O,3.9,kg/TJ,26105.516892,kg +a55594e6-ef34-31d4-8be8-b9d374089045,SESCO,II.5.1,Santiago del Estero,AR-G,annual,2016,gas oil combustion consumption by agriculture machines,1782.522,TJ,CO2,74100.0,kg/TJ,132084880.19999999,kg +4ae82c3e-cbd7-3e23-b7f4-3eb40713e4cb,SESCO,II.5.1,Santiago del Estero,AR-G,annual,2016,gas oil combustion consumption by agriculture machines,1782.522,TJ,CH4,3.9,kg/TJ,6951.8358,kg +4ae82c3e-cbd7-3e23-b7f4-3eb40713e4cb,SESCO,II.5.1,Santiago del Estero,AR-G,annual,2016,gas oil combustion consumption by agriculture machines,1782.522,TJ,N2O,3.9,kg/TJ,6951.8358,kg +d8319ec6-e146-3aec-b5b8-c23994f00eb0,SESCO,II.5.1,Tucuman,AR-T,annual,2016,gas oil combustion consumption by agriculture machines,1466.86932,TJ,CO2,74100.0,kg/TJ,108695016.612,kg +6c7d5547-e597-3e31-b342-393b0d8ac0ed,SESCO,II.5.1,Tucuman,AR-T,annual,2016,gas oil combustion consumption by agriculture machines,1466.86932,TJ,CH4,3.9,kg/TJ,5720.7903479999995,kg +6c7d5547-e597-3e31-b342-393b0d8ac0ed,SESCO,II.5.1,Tucuman,AR-T,annual,2016,gas oil combustion consumption by agriculture machines,1466.86932,TJ,N2O,3.9,kg/TJ,5720.7903479999995,kg +080d6807-8016-3600-b220-0ee98693c35b,SESCO,II.5.1,Buenos Aires,AR-B,annual,2016,gas oil combustion consumption by agriculture machines,246.62735999999998,TJ,CO2,74100.0,kg/TJ,18275087.376,kg +c63af8b1-d35c-39a7-a99f-5f2d8e5730df,SESCO,II.5.1,Buenos Aires,AR-B,annual,2016,gas oil combustion consumption by agriculture machines,246.62735999999998,TJ,CH4,3.9,kg/TJ,961.8467039999999,kg +c63af8b1-d35c-39a7-a99f-5f2d8e5730df,SESCO,II.5.1,Buenos Aires,AR-B,annual,2016,gas oil combustion consumption by agriculture machines,246.62735999999998,TJ,N2O,3.9,kg/TJ,961.8467039999999,kg +1cf20bf3-5cf3-319f-8228-37f5f1160205,SESCO,II.5.1,Catamarca,AR-K,annual,2016,gas oil combustion consumption by agriculture machines,9.5718,TJ,CO2,74100.0,kg/TJ,709270.38,kg +00b51f2c-4bcc-3041-ad93-f646a9f049f7,SESCO,II.5.1,Catamarca,AR-K,annual,2016,gas oil combustion consumption by agriculture machines,9.5718,TJ,CH4,3.9,kg/TJ,37.33002,kg +00b51f2c-4bcc-3041-ad93-f646a9f049f7,SESCO,II.5.1,Catamarca,AR-K,annual,2016,gas oil combustion consumption by agriculture machines,9.5718,TJ,N2O,3.9,kg/TJ,37.33002,kg +a3cbada8-1e80-3336-8389-2c3a1281a748,SESCO,II.5.1,Chaco,AR-H,annual,2016,gas oil combustion consumption by agriculture machines,59.81472,TJ,CO2,74100.0,kg/TJ,4432270.752,kg +232dce1b-9d66-3fd2-a7a8-1b434054a9ce,SESCO,II.5.1,Chaco,AR-H,annual,2016,gas oil combustion consumption by agriculture machines,59.81472,TJ,CH4,3.9,kg/TJ,233.277408,kg +232dce1b-9d66-3fd2-a7a8-1b434054a9ce,SESCO,II.5.1,Chaco,AR-H,annual,2016,gas oil combustion consumption by agriculture machines,59.81472,TJ,N2O,3.9,kg/TJ,233.277408,kg +4d5b3623-86ff-326e-92f0-cb53d72ce19e,SESCO,II.5.1,Corrientes,AR-W,annual,2016,gas oil combustion consumption by agriculture machines,14.8092,TJ,CO2,74100.0,kg/TJ,1097361.72,kg +630bde62-b5a7-3d38-b73d-5daf3e161fcc,SESCO,II.5.1,Corrientes,AR-W,annual,2016,gas oil combustion consumption by agriculture machines,14.8092,TJ,CH4,3.9,kg/TJ,57.75588,kg +630bde62-b5a7-3d38-b73d-5daf3e161fcc,SESCO,II.5.1,Corrientes,AR-W,annual,2016,gas oil combustion consumption by agriculture machines,14.8092,TJ,N2O,3.9,kg/TJ,57.75588,kg +daadf975-d134-3c9f-8951-a1e4001882c1,SESCO,II.5.1,Córdoba,AR-X,annual,2016,gas oil combustion consumption by agriculture machines,61.11504,TJ,CO2,74100.0,kg/TJ,4528624.464,kg +c29679f8-39d1-3ad1-8b08-558942b8ac1b,SESCO,II.5.1,Córdoba,AR-X,annual,2016,gas oil combustion consumption by agriculture machines,61.11504,TJ,CH4,3.9,kg/TJ,238.348656,kg +c29679f8-39d1-3ad1-8b08-558942b8ac1b,SESCO,II.5.1,Córdoba,AR-X,annual,2016,gas oil combustion consumption by agriculture machines,61.11504,TJ,N2O,3.9,kg/TJ,238.348656,kg +0a80dd69-0bff-3b75-9847-dcb7d2d67e48,SESCO,II.5.1,Entre Rios,AR-E,annual,2016,gas oil combustion consumption by agriculture machines,26.15088,TJ,CO2,74100.0,kg/TJ,1937780.208,kg +b7bd2319-7660-3e10-922e-8f5ebf29add2,SESCO,II.5.1,Entre Rios,AR-E,annual,2016,gas oil combustion consumption by agriculture machines,26.15088,TJ,CH4,3.9,kg/TJ,101.988432,kg +b7bd2319-7660-3e10-922e-8f5ebf29add2,SESCO,II.5.1,Entre Rios,AR-E,annual,2016,gas oil combustion consumption by agriculture machines,26.15088,TJ,N2O,3.9,kg/TJ,101.988432,kg +c121e74d-9460-326c-aa90-04126b550bfb,SESCO,II.5.1,Formosa,AR-P,annual,2016,gas oil combustion consumption by agriculture machines,4.62336,TJ,CO2,74100.0,kg/TJ,342590.97599999997,kg +bfac1636-2cd4-35ce-b34c-ec0950f754fd,SESCO,II.5.1,Formosa,AR-P,annual,2016,gas oil combustion consumption by agriculture machines,4.62336,TJ,CH4,3.9,kg/TJ,18.031104,kg +bfac1636-2cd4-35ce-b34c-ec0950f754fd,SESCO,II.5.1,Formosa,AR-P,annual,2016,gas oil combustion consumption by agriculture machines,4.62336,TJ,N2O,3.9,kg/TJ,18.031104,kg +92272ab0-7150-375b-a72a-b342f840afdb,SESCO,II.5.1,Jujuy,AR-Y,annual,2016,gas oil combustion consumption by agriculture machines,14.484119999999999,TJ,CO2,74100.0,kg/TJ,1073273.292,kg +fa312056-8500-3f00-9fc0-180f8c0e776b,SESCO,II.5.1,Jujuy,AR-Y,annual,2016,gas oil combustion consumption by agriculture machines,14.484119999999999,TJ,CH4,3.9,kg/TJ,56.48806799999999,kg +fa312056-8500-3f00-9fc0-180f8c0e776b,SESCO,II.5.1,Jujuy,AR-Y,annual,2016,gas oil combustion consumption by agriculture machines,14.484119999999999,TJ,N2O,3.9,kg/TJ,56.48806799999999,kg +1edd381b-b3ea-3345-b96f-186699cfab24,SESCO,II.5.1,La Pampa,AR-L,annual,2016,gas oil combustion consumption by agriculture machines,94.95948,TJ,CO2,74100.0,kg/TJ,7036497.468,kg +651ba714-a6f4-344a-ba6f-09073e041739,SESCO,II.5.1,La Pampa,AR-L,annual,2016,gas oil combustion consumption by agriculture machines,94.95948,TJ,CH4,3.9,kg/TJ,370.341972,kg +651ba714-a6f4-344a-ba6f-09073e041739,SESCO,II.5.1,La Pampa,AR-L,annual,2016,gas oil combustion consumption by agriculture machines,94.95948,TJ,N2O,3.9,kg/TJ,370.341972,kg +38b18c50-d6c1-30aa-97ee-59e8797d0197,SESCO,II.5.1,Mendoza,AR-M,annual,2016,gas oil combustion consumption by agriculture machines,54.64956,TJ,CO2,74100.0,kg/TJ,4049532.396,kg +a913230c-1328-31f6-b211-84852a6d508f,SESCO,II.5.1,Mendoza,AR-M,annual,2016,gas oil combustion consumption by agriculture machines,54.64956,TJ,CH4,3.9,kg/TJ,213.133284,kg +a913230c-1328-31f6-b211-84852a6d508f,SESCO,II.5.1,Mendoza,AR-M,annual,2016,gas oil combustion consumption by agriculture machines,54.64956,TJ,N2O,3.9,kg/TJ,213.133284,kg +193528d2-8ac0-3b00-a382-c2876a264d9c,SESCO,II.5.1,Misiones,AR-N,annual,2016,gas oil combustion consumption by agriculture machines,73.46808,TJ,CO2,74100.0,kg/TJ,5443984.728,kg +bfe4077a-9f35-34ac-8933-fc835f7b31df,SESCO,II.5.1,Misiones,AR-N,annual,2016,gas oil combustion consumption by agriculture machines,73.46808,TJ,CH4,3.9,kg/TJ,286.525512,kg +bfe4077a-9f35-34ac-8933-fc835f7b31df,SESCO,II.5.1,Misiones,AR-N,annual,2016,gas oil combustion consumption by agriculture machines,73.46808,TJ,N2O,3.9,kg/TJ,286.525512,kg +7bebb4eb-7cdc-3130-bc1b-675341947a83,SESCO,II.5.1,Rio Negro,AR-R,annual,2016,gas oil combustion consumption by agriculture machines,4.1537999999999995,TJ,CO2,74100.0,kg/TJ,307796.57999999996,kg +13c10e70-b9e5-31c1-a805-a2e5cb00dedb,SESCO,II.5.1,Rio Negro,AR-R,annual,2016,gas oil combustion consumption by agriculture machines,4.1537999999999995,TJ,CH4,3.9,kg/TJ,16.19982,kg +13c10e70-b9e5-31c1-a805-a2e5cb00dedb,SESCO,II.5.1,Rio Negro,AR-R,annual,2016,gas oil combustion consumption by agriculture machines,4.1537999999999995,TJ,N2O,3.9,kg/TJ,16.19982,kg +5f2a279d-31cf-37c9-8ff0-dc10560ddcd5,SESCO,II.5.1,Salta,AR-A,annual,2016,gas oil combustion consumption by agriculture machines,107.38476,TJ,CO2,74100.0,kg/TJ,7957210.716,kg +726c1971-78fe-3492-b346-fa37941e8e95,SESCO,II.5.1,Salta,AR-A,annual,2016,gas oil combustion consumption by agriculture machines,107.38476,TJ,CH4,3.9,kg/TJ,418.800564,kg +726c1971-78fe-3492-b346-fa37941e8e95,SESCO,II.5.1,Salta,AR-A,annual,2016,gas oil combustion consumption by agriculture machines,107.38476,TJ,N2O,3.9,kg/TJ,418.800564,kg +77776ff5-3790-3d75-b590-5cb15e3f8983,SESCO,II.5.1,San Juan,AR-J,annual,2016,gas oil combustion consumption by agriculture machines,24.0198,TJ,CO2,74100.0,kg/TJ,1779867.18,kg +347cc392-6cbc-3f8b-a7e6-cb6e06b86f66,SESCO,II.5.1,San Juan,AR-J,annual,2016,gas oil combustion consumption by agriculture machines,24.0198,TJ,CH4,3.9,kg/TJ,93.67721999999999,kg +347cc392-6cbc-3f8b-a7e6-cb6e06b86f66,SESCO,II.5.1,San Juan,AR-J,annual,2016,gas oil combustion consumption by agriculture machines,24.0198,TJ,N2O,3.9,kg/TJ,93.67721999999999,kg +1bd88a0a-2488-3bc5-b633-1914010f2555,SESCO,II.5.1,San Luis,AR-D,annual,2016,gas oil combustion consumption by agriculture machines,31.352159999999998,TJ,CO2,74100.0,kg/TJ,2323195.056,kg +b276908b-6857-32a7-b982-d25e3f4c9c91,SESCO,II.5.1,San Luis,AR-D,annual,2016,gas oil combustion consumption by agriculture machines,31.352159999999998,TJ,CH4,3.9,kg/TJ,122.27342399999999,kg +b276908b-6857-32a7-b982-d25e3f4c9c91,SESCO,II.5.1,San Luis,AR-D,annual,2016,gas oil combustion consumption by agriculture machines,31.352159999999998,TJ,N2O,3.9,kg/TJ,122.27342399999999,kg +f7fb1424-609a-3dd6-8da8-1e8c92dd4210,SESCO,II.5.1,Santa Fe,AR-S,annual,2016,gas oil combustion consumption by agriculture machines,133.21056,TJ,CO2,74100.0,kg/TJ,9870902.496,kg +edd527df-697b-3446-bad9-219925fdb61b,SESCO,II.5.1,Santa Fe,AR-S,annual,2016,gas oil combustion consumption by agriculture machines,133.21056,TJ,CH4,3.9,kg/TJ,519.521184,kg +edd527df-697b-3446-bad9-219925fdb61b,SESCO,II.5.1,Santa Fe,AR-S,annual,2016,gas oil combustion consumption by agriculture machines,133.21056,TJ,N2O,3.9,kg/TJ,519.521184,kg +1bf1536e-5fa5-39b4-8536-fc65d6ab5a0e,SESCO,II.5.1,Santiago del Estero,AR-G,annual,2016,gas oil combustion consumption by agriculture machines,80.33088,TJ,CO2,74100.0,kg/TJ,5952518.208,kg +940ea05c-99da-34d5-8b2d-71bcf99e0def,SESCO,II.5.1,Santiago del Estero,AR-G,annual,2016,gas oil combustion consumption by agriculture machines,80.33088,TJ,CH4,3.9,kg/TJ,313.29043199999995,kg +940ea05c-99da-34d5-8b2d-71bcf99e0def,SESCO,II.5.1,Santiago del Estero,AR-G,annual,2016,gas oil combustion consumption by agriculture machines,80.33088,TJ,N2O,3.9,kg/TJ,313.29043199999995,kg +76667790-2878-362c-b30f-60139bcdd168,SESCO,II.5.1,Tucuman,AR-T,annual,2016,gas oil combustion consumption by agriculture machines,72.27611999999999,TJ,CO2,74100.0,kg/TJ,5355660.492,kg +bb5a186c-36ec-3886-b2ac-917d5fc1aef1,SESCO,II.5.1,Tucuman,AR-T,annual,2016,gas oil combustion consumption by agriculture machines,72.27611999999999,TJ,CH4,3.9,kg/TJ,281.87686799999994,kg +bb5a186c-36ec-3886-b2ac-917d5fc1aef1,SESCO,II.5.1,Tucuman,AR-T,annual,2016,gas oil combustion consumption by agriculture machines,72.27611999999999,TJ,N2O,3.9,kg/TJ,281.87686799999994,kg +624bb00b-a1f3-36a9-91aa-1374f262ccbe,SESCO,II.5.1,Buenos Aires,AR-B,annual,2016,jet kerosene combustion consumption by agriculture machines,8.429403999999998,TJ,CO2,71500.0,kg/TJ,602702.3859999998,kg +1a7022c2-485e-3511-816f-1d59a7eaeb00,SESCO,II.5.1,Buenos Aires,AR-B,annual,2016,jet kerosene combustion consumption by agriculture machines,8.429403999999998,TJ,CH4,0.5,kg/TJ,4.214701999999999,kg +16197db5-2b01-3b47-ab90-cad747d2978e,SESCO,II.5.1,Buenos Aires,AR-B,annual,2016,jet kerosene combustion consumption by agriculture machines,8.429403999999998,TJ,N2O,2.0,kg/TJ,16.858807999999996,kg +f15cf9af-afeb-31b9-a32e-757a60ba7346,SESCO,II.5.1,Córdoba,AR-X,annual,2016,jet kerosene combustion consumption by agriculture machines,0.31453,TJ,CO2,71500.0,kg/TJ,22488.894999999997,kg +cf48b8c3-2f61-3dd0-b123-b5d477ee9603,SESCO,II.5.1,Córdoba,AR-X,annual,2016,jet kerosene combustion consumption by agriculture machines,0.31453,TJ,CH4,0.5,kg/TJ,0.157265,kg +ba1ec442-4a67-3a2f-9a40-c16e4a8f5665,SESCO,II.5.1,Córdoba,AR-X,annual,2016,jet kerosene combustion consumption by agriculture machines,0.31453,TJ,N2O,2.0,kg/TJ,0.62906,kg +fde7ca6d-a175-3877-9429-c9191f909738,SESCO,II.5.1,Entre Rios,AR-E,annual,2016,jet kerosene combustion consumption by agriculture machines,0.157265,TJ,CO2,71500.0,kg/TJ,11244.447499999998,kg +0a2b02da-e900-3b4a-9805-c75316635314,SESCO,II.5.1,Entre Rios,AR-E,annual,2016,jet kerosene combustion consumption by agriculture machines,0.157265,TJ,CH4,0.5,kg/TJ,0.0786325,kg +fc0df5e4-0fc4-3c4f-8a62-418b1dffb0b0,SESCO,II.5.1,Entre Rios,AR-E,annual,2016,jet kerosene combustion consumption by agriculture machines,0.157265,TJ,N2O,2.0,kg/TJ,0.31453,kg +9d18ff69-70b1-3f46-8a74-c876b630d713,SESCO,II.5.1,La Pampa,AR-L,annual,2016,jet kerosene combustion consumption by agriculture machines,0.62906,TJ,CO2,71500.0,kg/TJ,44977.78999999999,kg +23a3138c-0ad2-3901-9a62-3cd2ca98c8b6,SESCO,II.5.1,La Pampa,AR-L,annual,2016,jet kerosene combustion consumption by agriculture machines,0.62906,TJ,CH4,0.5,kg/TJ,0.31453,kg +e785db31-9b87-35a7-87cf-9d142049639d,SESCO,II.5.1,La Pampa,AR-L,annual,2016,jet kerosene combustion consumption by agriculture machines,0.62906,TJ,N2O,2.0,kg/TJ,1.25812,kg +c8d612d3-26de-3d78-9af0-86c24650f57b,SESCO,II.5.1,Santa Fe,AR-S,annual,2016,jet kerosene combustion consumption by agriculture machines,2.2646159999999997,TJ,CO2,71500.0,kg/TJ,161920.044,kg +287cd96d-70fb-34ea-924e-a52cb435fdc2,SESCO,II.5.1,Santa Fe,AR-S,annual,2016,jet kerosene combustion consumption by agriculture machines,2.2646159999999997,TJ,CH4,0.5,kg/TJ,1.1323079999999999,kg +4ca112ec-1201-3256-8ab3-b6de639987a9,SESCO,II.5.1,Santa Fe,AR-S,annual,2016,jet kerosene combustion consumption by agriculture machines,2.2646159999999997,TJ,N2O,2.0,kg/TJ,4.5292319999999995,kg +80772fc6-2ebb-3e7c-8263-f95213e24b6a,SESCO,II.1.1,Buenos Aires,AR-B,annual,2016,gas oil combustion consumption by to the public,29699.41716,TJ,CO2,74100.0,kg/TJ,2200726811.556,kg +167f083c-4e56-3a22-a762-ab644593b1a3,SESCO,II.1.1,Buenos Aires,AR-B,annual,2016,gas oil combustion consumption by to the public,29699.41716,TJ,CH4,3.9,kg/TJ,115827.726924,kg +167f083c-4e56-3a22-a762-ab644593b1a3,SESCO,II.1.1,Buenos Aires,AR-B,annual,2016,gas oil combustion consumption by to the public,29699.41716,TJ,N2O,3.9,kg/TJ,115827.726924,kg +50874858-b0f5-376f-bb6b-19bb7f2426ef,SESCO,II.1.1,Capital Federal,AR-C,annual,2016,gas oil combustion consumption by to the public,3471.52932,TJ,CO2,74100.0,kg/TJ,257240322.61200002,kg +b3d08e33-a8e7-3f60-a320-90df6da43ff1,SESCO,II.1.1,Capital Federal,AR-C,annual,2016,gas oil combustion consumption by to the public,3471.52932,TJ,CH4,3.9,kg/TJ,13538.964348,kg +b3d08e33-a8e7-3f60-a320-90df6da43ff1,SESCO,II.1.1,Capital Federal,AR-C,annual,2016,gas oil combustion consumption by to the public,3471.52932,TJ,N2O,3.9,kg/TJ,13538.964348,kg +4d0a5756-81a1-3ee4-b344-de5b3042d270,SESCO,II.1.1,Catamarca,AR-K,annual,2016,gas oil combustion consumption by to the public,322.9128,TJ,CO2,74100.0,kg/TJ,23927838.48,kg +3839dd8d-6f2a-33ce-bb61-c6d351641c6e,SESCO,II.1.1,Catamarca,AR-K,annual,2016,gas oil combustion consumption by to the public,322.9128,TJ,CH4,3.9,kg/TJ,1259.3599199999999,kg +3839dd8d-6f2a-33ce-bb61-c6d351641c6e,SESCO,II.1.1,Catamarca,AR-K,annual,2016,gas oil combustion consumption by to the public,322.9128,TJ,N2O,3.9,kg/TJ,1259.3599199999999,kg +8bc62ef8-b155-37ab-a781-034955a0ae40,SESCO,II.1.1,Chaco,AR-H,annual,2016,gas oil combustion consumption by to the public,2165.14116,TJ,CO2,74100.0,kg/TJ,160436959.956,kg +7e68b86b-12f3-3ea4-8e7c-73dea62c7a29,SESCO,II.1.1,Chaco,AR-H,annual,2016,gas oil combustion consumption by to the public,2165.14116,TJ,CH4,3.9,kg/TJ,8444.050524,kg +7e68b86b-12f3-3ea4-8e7c-73dea62c7a29,SESCO,II.1.1,Chaco,AR-H,annual,2016,gas oil combustion consumption by to the public,2165.14116,TJ,N2O,3.9,kg/TJ,8444.050524,kg +f1fc7712-2159-3507-a5a3-2e000382b833,SESCO,II.1.1,Chubut,AR-U,annual,2016,gas oil combustion consumption by to the public,4197.61356,TJ,CO2,74100.0,kg/TJ,311043164.796,kg +da329d36-4772-3a6a-8be0-16a9465155a4,SESCO,II.1.1,Chubut,AR-U,annual,2016,gas oil combustion consumption by to the public,4197.61356,TJ,CH4,3.9,kg/TJ,16370.692883999998,kg +da329d36-4772-3a6a-8be0-16a9465155a4,SESCO,II.1.1,Chubut,AR-U,annual,2016,gas oil combustion consumption by to the public,4197.61356,TJ,N2O,3.9,kg/TJ,16370.692883999998,kg +60e49e80-5efd-3872-822e-e4f950b2e7df,SESCO,II.1.1,Corrientes,AR-W,annual,2016,gas oil combustion consumption by to the public,1752.47016,TJ,CO2,74100.0,kg/TJ,129858038.856,kg +fc2660e5-77bc-3a76-a600-f1be3272c734,SESCO,II.1.1,Corrientes,AR-W,annual,2016,gas oil combustion consumption by to the public,1752.47016,TJ,CH4,3.9,kg/TJ,6834.633624,kg +fc2660e5-77bc-3a76-a600-f1be3272c734,SESCO,II.1.1,Corrientes,AR-W,annual,2016,gas oil combustion consumption by to the public,1752.47016,TJ,N2O,3.9,kg/TJ,6834.633624,kg +ad463d8a-95fb-3419-b273-43eb4e32eacb,SESCO,II.1.1,Córdoba,AR-X,annual,2016,gas oil combustion consumption by to the public,11936.14296,TJ,CO2,74100.0,kg/TJ,884468193.336,kg +93f54198-f11d-30e2-aa04-ae7f70f2eee1,SESCO,II.1.1,Córdoba,AR-X,annual,2016,gas oil combustion consumption by to the public,11936.14296,TJ,CH4,3.9,kg/TJ,46550.957544,kg +93f54198-f11d-30e2-aa04-ae7f70f2eee1,SESCO,II.1.1,Córdoba,AR-X,annual,2016,gas oil combustion consumption by to the public,11936.14296,TJ,N2O,3.9,kg/TJ,46550.957544,kg +bce4d73b-93d1-3c8f-b48e-821130cf3290,SESCO,II.1.1,Entre Rios,AR-E,annual,2016,gas oil combustion consumption by to the public,3660.5814,TJ,CO2,74100.0,kg/TJ,271249081.74,kg +833dab75-c79a-3f47-9446-2183c88e3740,SESCO,II.1.1,Entre Rios,AR-E,annual,2016,gas oil combustion consumption by to the public,3660.5814,TJ,CH4,3.9,kg/TJ,14276.26746,kg +833dab75-c79a-3f47-9446-2183c88e3740,SESCO,II.1.1,Entre Rios,AR-E,annual,2016,gas oil combustion consumption by to the public,3660.5814,TJ,N2O,3.9,kg/TJ,14276.26746,kg +4118b2b8-04b7-33e0-9233-cf43ad545ad2,SESCO,II.1.1,Formosa,AR-P,annual,2016,gas oil combustion consumption by to the public,574.56084,TJ,CO2,74100.0,kg/TJ,42574958.243999995,kg +3e5623b8-601a-3641-a4f6-894c0fcc3dd8,SESCO,II.1.1,Formosa,AR-P,annual,2016,gas oil combustion consumption by to the public,574.56084,TJ,CH4,3.9,kg/TJ,2240.787276,kg +3e5623b8-601a-3641-a4f6-894c0fcc3dd8,SESCO,II.1.1,Formosa,AR-P,annual,2016,gas oil combustion consumption by to the public,574.56084,TJ,N2O,3.9,kg/TJ,2240.787276,kg +6b51c8a8-be33-38e9-9087-5742f3f711fe,SESCO,II.1.1,Jujuy,AR-Y,annual,2016,gas oil combustion consumption by to the public,1619.00676,TJ,CO2,74100.0,kg/TJ,119968400.916,kg +0cd9438c-97fb-3f1b-9430-7b7469fc1aa3,SESCO,II.1.1,Jujuy,AR-Y,annual,2016,gas oil combustion consumption by to the public,1619.00676,TJ,CH4,3.9,kg/TJ,6314.126364,kg +0cd9438c-97fb-3f1b-9430-7b7469fc1aa3,SESCO,II.1.1,Jujuy,AR-Y,annual,2016,gas oil combustion consumption by to the public,1619.00676,TJ,N2O,3.9,kg/TJ,6314.126364,kg +7f1e983c-b6b2-3d17-b605-b4e9b97ee9d3,SESCO,II.1.1,La Pampa,AR-L,annual,2016,gas oil combustion consumption by to the public,2712.28692,TJ,CO2,74100.0,kg/TJ,200980460.772,kg +e200aa30-d4f2-3b84-9939-9542e6a3272e,SESCO,II.1.1,La Pampa,AR-L,annual,2016,gas oil combustion consumption by to the public,2712.28692,TJ,CH4,3.9,kg/TJ,10577.918988,kg +e200aa30-d4f2-3b84-9939-9542e6a3272e,SESCO,II.1.1,La Pampa,AR-L,annual,2016,gas oil combustion consumption by to the public,2712.28692,TJ,N2O,3.9,kg/TJ,10577.918988,kg +0ea017b8-b20b-3f93-a6df-11dc16b1f138,SESCO,II.1.1,La Rioja,AR-F,annual,2016,gas oil combustion consumption by to the public,691.62576,TJ,CO2,74100.0,kg/TJ,51249468.816,kg +131b983b-6747-3013-8cc8-4f718caa5027,SESCO,II.1.1,La Rioja,AR-F,annual,2016,gas oil combustion consumption by to the public,691.62576,TJ,CH4,3.9,kg/TJ,2697.340464,kg +131b983b-6747-3013-8cc8-4f718caa5027,SESCO,II.1.1,La Rioja,AR-F,annual,2016,gas oil combustion consumption by to the public,691.62576,TJ,N2O,3.9,kg/TJ,2697.340464,kg +e3682d41-0d95-35a9-8a73-cc7f041f7746,SESCO,II.1.1,Mendoza,AR-M,annual,2016,gas oil combustion consumption by to the public,8947.06848,TJ,CO2,74100.0,kg/TJ,662977774.368,kg +4b32b266-0e27-31e6-9cab-5f2bbfd69d9d,SESCO,II.1.1,Mendoza,AR-M,annual,2016,gas oil combustion consumption by to the public,8947.06848,TJ,CH4,3.9,kg/TJ,34893.567072,kg +4b32b266-0e27-31e6-9cab-5f2bbfd69d9d,SESCO,II.1.1,Mendoza,AR-M,annual,2016,gas oil combustion consumption by to the public,8947.06848,TJ,N2O,3.9,kg/TJ,34893.567072,kg +fef284de-8e25-321d-905b-6a4b09ca1cdd,SESCO,II.1.1,Misiones,AR-N,annual,2016,gas oil combustion consumption by to the public,3028.22856,TJ,CO2,74100.0,kg/TJ,224391736.296,kg +d39e3b77-60d1-3c54-b87e-4a67dbf24cea,SESCO,II.1.1,Misiones,AR-N,annual,2016,gas oil combustion consumption by to the public,3028.22856,TJ,CH4,3.9,kg/TJ,11810.091384,kg +d39e3b77-60d1-3c54-b87e-4a67dbf24cea,SESCO,II.1.1,Misiones,AR-N,annual,2016,gas oil combustion consumption by to the public,3028.22856,TJ,N2O,3.9,kg/TJ,11810.091384,kg +2c38e3f2-b720-329b-8dbc-06df3807087f,SESCO,II.1.1,Neuquén,AR-Q,annual,2016,gas oil combustion consumption by to the public,2350.90632,TJ,CO2,74100.0,kg/TJ,174202158.312,kg +4901c163-60bf-3a5c-a399-4cbdb44a055b,SESCO,II.1.1,Neuquén,AR-Q,annual,2016,gas oil combustion consumption by to the public,2350.90632,TJ,CH4,3.9,kg/TJ,9168.534648,kg +4901c163-60bf-3a5c-a399-4cbdb44a055b,SESCO,II.1.1,Neuquén,AR-Q,annual,2016,gas oil combustion consumption by to the public,2350.90632,TJ,N2O,3.9,kg/TJ,9168.534648,kg +a920619b-e68a-3d8b-8b10-9b2999d5e824,SESCO,II.1.1,Rio Negro,AR-R,annual,2016,gas oil combustion consumption by to the public,3933.90144,TJ,CO2,74100.0,kg/TJ,291502096.704,kg +3fdd7662-f2bb-3c18-8161-8df6dac75cf4,SESCO,II.1.1,Rio Negro,AR-R,annual,2016,gas oil combustion consumption by to the public,3933.90144,TJ,CH4,3.9,kg/TJ,15342.215616,kg +3fdd7662-f2bb-3c18-8161-8df6dac75cf4,SESCO,II.1.1,Rio Negro,AR-R,annual,2016,gas oil combustion consumption by to the public,3933.90144,TJ,N2O,3.9,kg/TJ,15342.215616,kg +94c822ea-e79f-3372-aa3d-a8b1baaf65a6,SESCO,II.1.1,Salta,AR-A,annual,2016,gas oil combustion consumption by to the public,3893.84436,TJ,CO2,74100.0,kg/TJ,288533867.076,kg +44427341-a0f4-3f82-813a-10eb35635720,SESCO,II.1.1,Salta,AR-A,annual,2016,gas oil combustion consumption by to the public,3893.84436,TJ,CH4,3.9,kg/TJ,15185.993004,kg +44427341-a0f4-3f82-813a-10eb35635720,SESCO,II.1.1,Salta,AR-A,annual,2016,gas oil combustion consumption by to the public,3893.84436,TJ,N2O,3.9,kg/TJ,15185.993004,kg +78da8401-680d-39e1-93fe-5da717157270,SESCO,II.1.1,San Juan,AR-J,annual,2016,gas oil combustion consumption by to the public,1917.10512,TJ,CO2,74100.0,kg/TJ,142057489.392,kg +07530548-cca8-3e26-96b4-28ae9921602a,SESCO,II.1.1,San Juan,AR-J,annual,2016,gas oil combustion consumption by to the public,1917.10512,TJ,CH4,3.9,kg/TJ,7476.709967999999,kg +07530548-cca8-3e26-96b4-28ae9921602a,SESCO,II.1.1,San Juan,AR-J,annual,2016,gas oil combustion consumption by to the public,1917.10512,TJ,N2O,3.9,kg/TJ,7476.709967999999,kg +040138b2-4fae-377e-a537-3ae6f8066d05,SESCO,II.1.1,San Luis,AR-D,annual,2016,gas oil combustion consumption by to the public,1758.46608,TJ,CO2,74100.0,kg/TJ,130302336.528,kg +8d3d0314-23d1-3236-9af8-66460d76a8a1,SESCO,II.1.1,San Luis,AR-D,annual,2016,gas oil combustion consumption by to the public,1758.46608,TJ,CH4,3.9,kg/TJ,6858.017712,kg +8d3d0314-23d1-3236-9af8-66460d76a8a1,SESCO,II.1.1,San Luis,AR-D,annual,2016,gas oil combustion consumption by to the public,1758.46608,TJ,N2O,3.9,kg/TJ,6858.017712,kg +a87e657b-6623-3d3f-8126-454344c1dd81,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2016,gas oil combustion consumption by to the public,2541.18648,TJ,CO2,74100.0,kg/TJ,188301918.16799998,kg +dd873607-deba-31bf-83d0-dc7ae3dce3c7,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2016,gas oil combustion consumption by to the public,2541.18648,TJ,CH4,3.9,kg/TJ,9910.627272,kg +dd873607-deba-31bf-83d0-dc7ae3dce3c7,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2016,gas oil combustion consumption by to the public,2541.18648,TJ,N2O,3.9,kg/TJ,9910.627272,kg +c775ca3f-b6fc-33f0-bc63-65958b7f202a,SESCO,II.1.1,Santa Fe,AR-S,annual,2016,gas oil combustion consumption by to the public,8340.68592,TJ,CO2,74100.0,kg/TJ,618044826.672,kg +374716aa-d437-3d92-be04-995035f52dfd,SESCO,II.1.1,Santa Fe,AR-S,annual,2016,gas oil combustion consumption by to the public,8340.68592,TJ,CH4,3.9,kg/TJ,32528.675088,kg +374716aa-d437-3d92-be04-995035f52dfd,SESCO,II.1.1,Santa Fe,AR-S,annual,2016,gas oil combustion consumption by to the public,8340.68592,TJ,N2O,3.9,kg/TJ,32528.675088,kg +6a547ddb-87ac-3629-8278-fc237ea70e29,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2016,gas oil combustion consumption by to the public,2173.95444,TJ,CO2,74100.0,kg/TJ,161090024.004,kg +570435a2-7a95-3172-a037-401963a1c383,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2016,gas oil combustion consumption by to the public,2173.95444,TJ,CH4,3.9,kg/TJ,8478.422316,kg +570435a2-7a95-3172-a037-401963a1c383,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2016,gas oil combustion consumption by to the public,2173.95444,TJ,N2O,3.9,kg/TJ,8478.422316,kg +73b3d632-6352-3c17-be80-a543940b0187,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2016,gas oil combustion consumption by to the public,946.41624,TJ,CO2,74100.0,kg/TJ,70129443.384,kg +148cb2fc-daa4-3415-b68c-0a3b477a9327,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2016,gas oil combustion consumption by to the public,946.41624,TJ,CH4,3.9,kg/TJ,3691.023336,kg +148cb2fc-daa4-3415-b68c-0a3b477a9327,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2016,gas oil combustion consumption by to the public,946.41624,TJ,N2O,3.9,kg/TJ,3691.023336,kg +4c0b1f27-78a4-32d7-bc7e-63caa4c04d82,SESCO,II.1.1,Tucuman,AR-T,annual,2016,gas oil combustion consumption by to the public,1964.9279999999999,TJ,CO2,74100.0,kg/TJ,145601164.79999998,kg +a59a936d-94b2-36cc-b619-ba1b379e6a52,SESCO,II.1.1,Tucuman,AR-T,annual,2016,gas oil combustion consumption by to the public,1964.9279999999999,TJ,CH4,3.9,kg/TJ,7663.2192,kg +a59a936d-94b2-36cc-b619-ba1b379e6a52,SESCO,II.1.1,Tucuman,AR-T,annual,2016,gas oil combustion consumption by to the public,1964.9279999999999,TJ,N2O,3.9,kg/TJ,7663.2192,kg +92dc9a36-9fe1-3a73-b263-fb140d2b6f42,SESCO,II.1.1,Buenos Aires,AR-B,annual,2016,gas oil combustion consumption by to the public,13968.507,TJ,CO2,74100.0,kg/TJ,1035066368.6999999,kg +20018339-3664-3f1d-8dcf-69793da75fa3,SESCO,II.1.1,Buenos Aires,AR-B,annual,2016,gas oil combustion consumption by to the public,13968.507,TJ,CH4,3.9,kg/TJ,54477.177299999996,kg +20018339-3664-3f1d-8dcf-69793da75fa3,SESCO,II.1.1,Buenos Aires,AR-B,annual,2016,gas oil combustion consumption by to the public,13968.507,TJ,N2O,3.9,kg/TJ,54477.177299999996,kg +f325e79d-f51c-3d99-95f6-b6263d5569d5,SESCO,II.1.1,Capital Federal,AR-C,annual,2016,gas oil combustion consumption by to the public,1927.29096,TJ,CO2,74100.0,kg/TJ,142812260.136,kg +d5250660-3636-305c-b92f-2b10c575e45f,SESCO,II.1.1,Capital Federal,AR-C,annual,2016,gas oil combustion consumption by to the public,1927.29096,TJ,CH4,3.9,kg/TJ,7516.434744,kg +d5250660-3636-305c-b92f-2b10c575e45f,SESCO,II.1.1,Capital Federal,AR-C,annual,2016,gas oil combustion consumption by to the public,1927.29096,TJ,N2O,3.9,kg/TJ,7516.434744,kg +540c6afb-0c72-30e7-8d63-72b96a648418,SESCO,II.1.1,Catamarca,AR-K,annual,2016,gas oil combustion consumption by to the public,267.8298,TJ,CO2,74100.0,kg/TJ,19846188.18,kg +693a5705-42a5-3dc7-9833-d29010c8c16b,SESCO,II.1.1,Catamarca,AR-K,annual,2016,gas oil combustion consumption by to the public,267.8298,TJ,CH4,3.9,kg/TJ,1044.53622,kg +693a5705-42a5-3dc7-9833-d29010c8c16b,SESCO,II.1.1,Catamarca,AR-K,annual,2016,gas oil combustion consumption by to the public,267.8298,TJ,N2O,3.9,kg/TJ,1044.53622,kg +00478d81-9121-38ad-8d79-3605cffead01,SESCO,II.1.1,Chaco,AR-H,annual,2016,gas oil combustion consumption by to the public,1076.95392,TJ,CO2,74100.0,kg/TJ,79802285.47199999,kg +6f1c6cc7-4dc8-35c8-85a2-98bdcac70bbb,SESCO,II.1.1,Chaco,AR-H,annual,2016,gas oil combustion consumption by to the public,1076.95392,TJ,CH4,3.9,kg/TJ,4200.120287999999,kg +6f1c6cc7-4dc8-35c8-85a2-98bdcac70bbb,SESCO,II.1.1,Chaco,AR-H,annual,2016,gas oil combustion consumption by to the public,1076.95392,TJ,N2O,3.9,kg/TJ,4200.120287999999,kg +83a840af-403d-34ae-9c8e-60b8f4adf662,SESCO,II.1.1,Chubut,AR-U,annual,2016,gas oil combustion consumption by to the public,1683.58932,TJ,CO2,74100.0,kg/TJ,124753968.612,kg +c53e3ca9-03f9-37ff-8baf-2a99119a3550,SESCO,II.1.1,Chubut,AR-U,annual,2016,gas oil combustion consumption by to the public,1683.58932,TJ,CH4,3.9,kg/TJ,6565.998348,kg +c53e3ca9-03f9-37ff-8baf-2a99119a3550,SESCO,II.1.1,Chubut,AR-U,annual,2016,gas oil combustion consumption by to the public,1683.58932,TJ,N2O,3.9,kg/TJ,6565.998348,kg +98a75168-e3ea-3129-9157-eac6bfe5b175,SESCO,II.1.1,Corrientes,AR-W,annual,2016,gas oil combustion consumption by to the public,1010.96268,TJ,CO2,74100.0,kg/TJ,74912334.588,kg +52f711ba-ff6c-3ddd-8242-a56fd5f5a4f3,SESCO,II.1.1,Corrientes,AR-W,annual,2016,gas oil combustion consumption by to the public,1010.96268,TJ,CH4,3.9,kg/TJ,3942.7544519999997,kg +52f711ba-ff6c-3ddd-8242-a56fd5f5a4f3,SESCO,II.1.1,Corrientes,AR-W,annual,2016,gas oil combustion consumption by to the public,1010.96268,TJ,N2O,3.9,kg/TJ,3942.7544519999997,kg +723ae602-efa8-327a-9d26-c7ca95c58b77,SESCO,II.1.1,Córdoba,AR-X,annual,2016,gas oil combustion consumption by to the public,3805.92828,TJ,CO2,74100.0,kg/TJ,282019285.548,kg +8016b4bb-8ec9-3d7d-b27b-f0a5b4bc6144,SESCO,II.1.1,Córdoba,AR-X,annual,2016,gas oil combustion consumption by to the public,3805.92828,TJ,CH4,3.9,kg/TJ,14843.120292,kg +8016b4bb-8ec9-3d7d-b27b-f0a5b4bc6144,SESCO,II.1.1,Córdoba,AR-X,annual,2016,gas oil combustion consumption by to the public,3805.92828,TJ,N2O,3.9,kg/TJ,14843.120292,kg +f1c711a4-52f7-312b-a065-d773715e1d8a,SESCO,II.1.1,Entre Rios,AR-E,annual,2016,gas oil combustion consumption by to the public,1566.23544,TJ,CO2,74100.0,kg/TJ,116058046.10399999,kg +77a071eb-b15f-32bc-82f4-e4c4391a80fb,SESCO,II.1.1,Entre Rios,AR-E,annual,2016,gas oil combustion consumption by to the public,1566.23544,TJ,CH4,3.9,kg/TJ,6108.318216,kg +77a071eb-b15f-32bc-82f4-e4c4391a80fb,SESCO,II.1.1,Entre Rios,AR-E,annual,2016,gas oil combustion consumption by to the public,1566.23544,TJ,N2O,3.9,kg/TJ,6108.318216,kg +48c3883c-d203-3506-bbf5-c9855ed17337,SESCO,II.1.1,Formosa,AR-P,annual,2016,gas oil combustion consumption by to the public,334.43507999999997,TJ,CO2,74100.0,kg/TJ,24781639.428,kg +7ff0be4f-a64c-3729-a0a2-b52d016cf4f1,SESCO,II.1.1,Formosa,AR-P,annual,2016,gas oil combustion consumption by to the public,334.43507999999997,TJ,CH4,3.9,kg/TJ,1304.2968119999998,kg +7ff0be4f-a64c-3729-a0a2-b52d016cf4f1,SESCO,II.1.1,Formosa,AR-P,annual,2016,gas oil combustion consumption by to the public,334.43507999999997,TJ,N2O,3.9,kg/TJ,1304.2968119999998,kg +95abb0cf-2c4b-3b5d-b47c-57379cc62192,SESCO,II.1.1,Jujuy,AR-Y,annual,2016,gas oil combustion consumption by to the public,663.30768,TJ,CO2,74100.0,kg/TJ,49151099.088,kg +4a68eea0-18bc-3e92-b520-fc3a2101d97f,SESCO,II.1.1,Jujuy,AR-Y,annual,2016,gas oil combustion consumption by to the public,663.30768,TJ,CH4,3.9,kg/TJ,2586.8999519999998,kg +4a68eea0-18bc-3e92-b520-fc3a2101d97f,SESCO,II.1.1,Jujuy,AR-Y,annual,2016,gas oil combustion consumption by to the public,663.30768,TJ,N2O,3.9,kg/TJ,2586.8999519999998,kg +9b133e59-95fe-39f7-857f-900396cff759,SESCO,II.1.1,La Pampa,AR-L,annual,2016,gas oil combustion consumption by to the public,1178.63172,TJ,CO2,74100.0,kg/TJ,87336610.452,kg +2f6f0255-d703-3299-8228-f0c7b2f7e723,SESCO,II.1.1,La Pampa,AR-L,annual,2016,gas oil combustion consumption by to the public,1178.63172,TJ,CH4,3.9,kg/TJ,4596.663708,kg +2f6f0255-d703-3299-8228-f0c7b2f7e723,SESCO,II.1.1,La Pampa,AR-L,annual,2016,gas oil combustion consumption by to the public,1178.63172,TJ,N2O,3.9,kg/TJ,4596.663708,kg +d17d1d31-1d28-3d0f-9e3b-e2ce84066c44,SESCO,II.1.1,La Rioja,AR-F,annual,2016,gas oil combustion consumption by to the public,379.29612,TJ,CO2,74100.0,kg/TJ,28105842.492,kg +5d94ed6e-b910-3c2b-a004-f61512c29556,SESCO,II.1.1,La Rioja,AR-F,annual,2016,gas oil combustion consumption by to the public,379.29612,TJ,CH4,3.9,kg/TJ,1479.2548679999998,kg +5d94ed6e-b910-3c2b-a004-f61512c29556,SESCO,II.1.1,La Rioja,AR-F,annual,2016,gas oil combustion consumption by to the public,379.29612,TJ,N2O,3.9,kg/TJ,1479.2548679999998,kg +8e497d42-d5b4-3440-a1bf-fead96947bc1,SESCO,II.1.1,Mendoza,AR-M,annual,2016,gas oil combustion consumption by to the public,2936.12256,TJ,CO2,74100.0,kg/TJ,217566681.69599998,kg +57c465f8-245b-3909-9299-e22eea5f6fba,SESCO,II.1.1,Mendoza,AR-M,annual,2016,gas oil combustion consumption by to the public,2936.12256,TJ,CH4,3.9,kg/TJ,11450.877983999999,kg +57c465f8-245b-3909-9299-e22eea5f6fba,SESCO,II.1.1,Mendoza,AR-M,annual,2016,gas oil combustion consumption by to the public,2936.12256,TJ,N2O,3.9,kg/TJ,11450.877983999999,kg +1948c130-e035-3eb6-aee1-0853969dfe59,SESCO,II.1.1,Misiones,AR-N,annual,2016,gas oil combustion consumption by to the public,1030.43136,TJ,CO2,74100.0,kg/TJ,76354963.77600001,kg +89016b45-8eec-3c2b-9d0d-df8a49e1bb2f,SESCO,II.1.1,Misiones,AR-N,annual,2016,gas oil combustion consumption by to the public,1030.43136,TJ,CH4,3.9,kg/TJ,4018.682304,kg +89016b45-8eec-3c2b-9d0d-df8a49e1bb2f,SESCO,II.1.1,Misiones,AR-N,annual,2016,gas oil combustion consumption by to the public,1030.43136,TJ,N2O,3.9,kg/TJ,4018.682304,kg +2ac0dc91-6881-32e4-88eb-f1793979c31e,SESCO,II.1.1,Neuquén,AR-Q,annual,2016,gas oil combustion consumption by to the public,2058.84,TJ,CO2,74100.0,kg/TJ,152560044.0,kg +749a7052-16b1-3964-bf26-081ec74b2085,SESCO,II.1.1,Neuquén,AR-Q,annual,2016,gas oil combustion consumption by to the public,2058.84,TJ,CH4,3.9,kg/TJ,8029.476000000001,kg +749a7052-16b1-3964-bf26-081ec74b2085,SESCO,II.1.1,Neuquén,AR-Q,annual,2016,gas oil combustion consumption by to the public,2058.84,TJ,N2O,3.9,kg/TJ,8029.476000000001,kg +66957213-8c46-38c3-afbe-59644fb80c85,SESCO,II.1.1,Rio Negro,AR-R,annual,2016,gas oil combustion consumption by to the public,1528.85124,TJ,CO2,74100.0,kg/TJ,113287876.884,kg +eeb60665-67f2-31a7-bd9f-dc1cca91bac2,SESCO,II.1.1,Rio Negro,AR-R,annual,2016,gas oil combustion consumption by to the public,1528.85124,TJ,CH4,3.9,kg/TJ,5962.5198359999995,kg +eeb60665-67f2-31a7-bd9f-dc1cca91bac2,SESCO,II.1.1,Rio Negro,AR-R,annual,2016,gas oil combustion consumption by to the public,1528.85124,TJ,N2O,3.9,kg/TJ,5962.5198359999995,kg +3c0cadd0-ef5f-35ea-8d9c-7bcdbb61eed2,SESCO,II.1.1,Salta,AR-A,annual,2016,gas oil combustion consumption by to the public,1415.79564,TJ,CO2,74100.0,kg/TJ,104910456.92400001,kg +a94be54a-acd5-3f7c-99c3-1818da1e9ef9,SESCO,II.1.1,Salta,AR-A,annual,2016,gas oil combustion consumption by to the public,1415.79564,TJ,CH4,3.9,kg/TJ,5521.602996,kg +a94be54a-acd5-3f7c-99c3-1818da1e9ef9,SESCO,II.1.1,Salta,AR-A,annual,2016,gas oil combustion consumption by to the public,1415.79564,TJ,N2O,3.9,kg/TJ,5521.602996,kg +4dc0cd6e-f56b-36b4-a7fc-2777ec947b84,SESCO,II.1.1,San Juan,AR-J,annual,2016,gas oil combustion consumption by to the public,607.50228,TJ,CO2,74100.0,kg/TJ,45015918.94800001,kg +52cf6326-345a-3bf6-96ff-4aae04c788ed,SESCO,II.1.1,San Juan,AR-J,annual,2016,gas oil combustion consumption by to the public,607.50228,TJ,CH4,3.9,kg/TJ,2369.2588920000003,kg +52cf6326-345a-3bf6-96ff-4aae04c788ed,SESCO,II.1.1,San Juan,AR-J,annual,2016,gas oil combustion consumption by to the public,607.50228,TJ,N2O,3.9,kg/TJ,2369.2588920000003,kg +3b624f44-6870-356d-af87-380723e844cd,SESCO,II.1.1,San Luis,AR-D,annual,2016,gas oil combustion consumption by to the public,644.05572,TJ,CO2,74100.0,kg/TJ,47724528.852,kg +2ba4fb1b-278f-3416-8b08-6d934f27a14b,SESCO,II.1.1,San Luis,AR-D,annual,2016,gas oil combustion consumption by to the public,644.05572,TJ,CH4,3.9,kg/TJ,2511.8173079999997,kg +2ba4fb1b-278f-3416-8b08-6d934f27a14b,SESCO,II.1.1,San Luis,AR-D,annual,2016,gas oil combustion consumption by to the public,644.05572,TJ,N2O,3.9,kg/TJ,2511.8173079999997,kg +9c028f93-73fa-30b2-9539-9e8bbc27d380,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2016,gas oil combustion consumption by to the public,1144.35384,TJ,CO2,74100.0,kg/TJ,84796619.544,kg +f6fa77dd-42cf-3645-9c1b-396218022764,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2016,gas oil combustion consumption by to the public,1144.35384,TJ,CH4,3.9,kg/TJ,4462.979976,kg +f6fa77dd-42cf-3645-9c1b-396218022764,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2016,gas oil combustion consumption by to the public,1144.35384,TJ,N2O,3.9,kg/TJ,4462.979976,kg +548ecf99-c5f3-37fa-b6de-3b14b037a671,SESCO,II.1.1,Santa Fe,AR-S,annual,2016,gas oil combustion consumption by to the public,3197.01732,TJ,CO2,74100.0,kg/TJ,236898983.412,kg +8f692794-6af4-3870-8828-ed3675ca0894,SESCO,II.1.1,Santa Fe,AR-S,annual,2016,gas oil combustion consumption by to the public,3197.01732,TJ,CH4,3.9,kg/TJ,12468.367548,kg +8f692794-6af4-3870-8828-ed3675ca0894,SESCO,II.1.1,Santa Fe,AR-S,annual,2016,gas oil combustion consumption by to the public,3197.01732,TJ,N2O,3.9,kg/TJ,12468.367548,kg +4d76303c-13d0-39d1-abfd-989a117ac7bb,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2016,gas oil combustion consumption by to the public,757.94208,TJ,CO2,74100.0,kg/TJ,56163508.128000006,kg +b2cd0460-3f15-3b53-999b-befd3005e667,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2016,gas oil combustion consumption by to the public,757.94208,TJ,CH4,3.9,kg/TJ,2955.974112,kg +b2cd0460-3f15-3b53-999b-befd3005e667,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2016,gas oil combustion consumption by to the public,757.94208,TJ,N2O,3.9,kg/TJ,2955.974112,kg +676f5f7a-a08d-352e-a4c2-3174d7ab71ae,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2016,gas oil combustion consumption by to the public,306.00864,TJ,CO2,74100.0,kg/TJ,22675240.224,kg +ecb499a5-3c2e-3882-8659-b901d08c6a30,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2016,gas oil combustion consumption by to the public,306.00864,TJ,CH4,3.9,kg/TJ,1193.433696,kg +ecb499a5-3c2e-3882-8659-b901d08c6a30,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2016,gas oil combustion consumption by to the public,306.00864,TJ,N2O,3.9,kg/TJ,1193.433696,kg +cae087cb-4dfc-3be8-8f9b-0ba41f89d671,SESCO,II.1.1,Tucuman,AR-T,annual,2016,gas oil combustion consumption by to the public,890.24964,TJ,CO2,74100.0,kg/TJ,65967498.324,kg +5cf92507-f5cf-326b-8c81-953956905f6c,SESCO,II.1.1,Tucuman,AR-T,annual,2016,gas oil combustion consumption by to the public,890.24964,TJ,CH4,3.9,kg/TJ,3471.973596,kg +5cf92507-f5cf-326b-8c81-953956905f6c,SESCO,II.1.1,Tucuman,AR-T,annual,2016,gas oil combustion consumption by to the public,890.24964,TJ,N2O,3.9,kg/TJ,3471.973596,kg +952553ce-6819-37b8-9c64-00eaeb4640e1,SESCO,II.1.1,Buenos Aires,AR-B,annual,2016,jet kerosene combustion consumption by to the public,128.92584699999998,TJ,CO2,71500.0,kg/TJ,9218198.060499998,kg +317237e2-7885-3e97-9bcf-84e8819ace6b,SESCO,II.1.1,Buenos Aires,AR-B,annual,2016,jet kerosene combustion consumption by to the public,128.92584699999998,TJ,CH4,0.5,kg/TJ,64.46292349999999,kg +c837df18-5302-3914-a25d-2d24f15ef022,SESCO,II.1.1,Buenos Aires,AR-B,annual,2016,jet kerosene combustion consumption by to the public,128.92584699999998,TJ,N2O,2.0,kg/TJ,257.85169399999995,kg +bff95acd-728e-32c6-b22b-3c3ec2b13690,SESCO,II.1.1,Capital Federal,AR-C,annual,2016,jet kerosene combustion consumption by to the public,3.9316249999999995,TJ,CO2,71500.0,kg/TJ,281111.18749999994,kg +e29ad113-785e-3650-b812-231b67a26c38,SESCO,II.1.1,Capital Federal,AR-C,annual,2016,jet kerosene combustion consumption by to the public,3.9316249999999995,TJ,CH4,0.5,kg/TJ,1.9658124999999997,kg +ad0ee2b5-fccd-3cbf-bd6f-b0dc0696e47f,SESCO,II.1.1,Capital Federal,AR-C,annual,2016,jet kerosene combustion consumption by to the public,3.9316249999999995,TJ,N2O,2.0,kg/TJ,7.863249999999999,kg +4b8b75d7-0707-3d44-bcc0-7a7c2754c834,SESCO,II.1.1,Catamarca,AR-K,annual,2016,jet kerosene combustion consumption by to the public,3.6485479999999995,TJ,CO2,71500.0,kg/TJ,260871.18199999997,kg +735f84f9-70ef-39d4-89a3-3f5122144007,SESCO,II.1.1,Catamarca,AR-K,annual,2016,jet kerosene combustion consumption by to the public,3.6485479999999995,TJ,CH4,0.5,kg/TJ,1.8242739999999997,kg +e47841bd-a212-30eb-baba-a8f939767454,SESCO,II.1.1,Catamarca,AR-K,annual,2016,jet kerosene combustion consumption by to the public,3.6485479999999995,TJ,N2O,2.0,kg/TJ,7.297095999999999,kg +1d01083f-249c-38d8-9823-f535f6b0eb72,SESCO,II.1.1,Chaco,AR-H,annual,2016,jet kerosene combustion consumption by to the public,0.9435899999999998,TJ,CO2,71500.0,kg/TJ,67466.68499999998,kg +0a81a26c-f7e7-3f2f-a200-0d3a6c36b990,SESCO,II.1.1,Chaco,AR-H,annual,2016,jet kerosene combustion consumption by to the public,0.9435899999999998,TJ,CH4,0.5,kg/TJ,0.4717949999999999,kg +12142e69-ca7e-32d9-87d9-abf69f579e26,SESCO,II.1.1,Chaco,AR-H,annual,2016,jet kerosene combustion consumption by to the public,0.9435899999999998,TJ,N2O,2.0,kg/TJ,1.8871799999999996,kg +05529dd7-0a31-3866-8166-6953d5ec4352,SESCO,II.1.1,Chubut,AR-U,annual,2016,jet kerosene combustion consumption by to the public,9.215728999999998,TJ,CO2,71500.0,kg/TJ,658924.6234999999,kg +a9c5f8a0-db05-3105-98bf-3f46463c0bd6,SESCO,II.1.1,Chubut,AR-U,annual,2016,jet kerosene combustion consumption by to the public,9.215728999999998,TJ,CH4,0.5,kg/TJ,4.607864499999999,kg +b73aac60-1c02-357a-a117-d89d1245337f,SESCO,II.1.1,Chubut,AR-U,annual,2016,jet kerosene combustion consumption by to the public,9.215728999999998,TJ,N2O,2.0,kg/TJ,18.431457999999996,kg +72203bf4-2a4b-389c-af41-5b65fe783a83,SESCO,II.1.1,Corrientes,AR-W,annual,2016,jet kerosene combustion consumption by to the public,3.7429069999999993,TJ,CO2,71500.0,kg/TJ,267617.85049999994,kg +8c530a14-ae4c-397a-9f73-7a89530d3223,SESCO,II.1.1,Corrientes,AR-W,annual,2016,jet kerosene combustion consumption by to the public,3.7429069999999993,TJ,CH4,0.5,kg/TJ,1.8714534999999997,kg +b25cb99f-2ddd-3784-b726-ea3e8ae983c4,SESCO,II.1.1,Corrientes,AR-W,annual,2016,jet kerosene combustion consumption by to the public,3.7429069999999993,TJ,N2O,2.0,kg/TJ,7.485813999999999,kg +7d730abe-d221-3eeb-9041-e42ffd38ce0e,SESCO,II.1.1,Córdoba,AR-X,annual,2016,jet kerosene combustion consumption by to the public,64.88753899999999,TJ,CO2,71500.0,kg/TJ,4639459.038499999,kg +d49fd6be-49d6-3eed-897b-3dab2d322165,SESCO,II.1.1,Córdoba,AR-X,annual,2016,jet kerosene combustion consumption by to the public,64.88753899999999,TJ,CH4,0.5,kg/TJ,32.443769499999995,kg +16baaf0f-0df3-3976-8240-18eb616f393a,SESCO,II.1.1,Córdoba,AR-X,annual,2016,jet kerosene combustion consumption by to the public,64.88753899999999,TJ,N2O,2.0,kg/TJ,129.77507799999998,kg +4bf65d8f-80dc-3165-b815-33db4918e588,SESCO,II.1.1,Entre Rios,AR-E,annual,2016,jet kerosene combustion consumption by to the public,7.485813999999999,TJ,CO2,71500.0,kg/TJ,535235.7009999999,kg +3ec12641-1dfb-3001-ba88-930bf7dc53c4,SESCO,II.1.1,Entre Rios,AR-E,annual,2016,jet kerosene combustion consumption by to the public,7.485813999999999,TJ,CH4,0.5,kg/TJ,3.7429069999999993,kg +5e3af14f-ef5c-31ef-8713-e23a63b3b391,SESCO,II.1.1,Entre Rios,AR-E,annual,2016,jet kerosene combustion consumption by to the public,7.485813999999999,TJ,N2O,2.0,kg/TJ,14.971627999999997,kg +3e7530cd-020d-37a3-8131-d38d5a482fe8,SESCO,II.1.1,Jujuy,AR-Y,annual,2016,jet kerosene combustion consumption by to the public,4.309060999999999,TJ,CO2,71500.0,kg/TJ,308097.86149999994,kg +ddf205f6-b4a7-37eb-be15-069d92f704fd,SESCO,II.1.1,Jujuy,AR-Y,annual,2016,jet kerosene combustion consumption by to the public,4.309060999999999,TJ,CH4,0.5,kg/TJ,2.1545304999999995,kg +3c92f437-b28c-34cf-afec-b374a846a880,SESCO,II.1.1,Jujuy,AR-Y,annual,2016,jet kerosene combustion consumption by to the public,4.309060999999999,TJ,N2O,2.0,kg/TJ,8.618121999999998,kg +84c5e2e1-6719-3213-80ef-25a5776a3a08,SESCO,II.1.1,La Pampa,AR-L,annual,2016,jet kerosene combustion consumption by to the public,2.233163,TJ,CO2,71500.0,kg/TJ,159671.15449999998,kg +d1516f2b-5350-34a9-ac06-4b36473ae80b,SESCO,II.1.1,La Pampa,AR-L,annual,2016,jet kerosene combustion consumption by to the public,2.233163,TJ,CH4,0.5,kg/TJ,1.1165815,kg +d4a3e0a1-49f6-384e-9e25-ba058b5ffbf1,SESCO,II.1.1,La Pampa,AR-L,annual,2016,jet kerosene combustion consumption by to the public,2.233163,TJ,N2O,2.0,kg/TJ,4.466326,kg +6194e669-8653-36e6-8af6-e59e16c7873f,SESCO,II.1.1,La Rioja,AR-F,annual,2016,jet kerosene combustion consumption by to the public,2.8622229999999997,TJ,CO2,71500.0,kg/TJ,204648.94449999998,kg +a24f15d6-0886-3ac5-bd00-b524896fab05,SESCO,II.1.1,La Rioja,AR-F,annual,2016,jet kerosene combustion consumption by to the public,2.8622229999999997,TJ,CH4,0.5,kg/TJ,1.4311114999999999,kg +85f4c033-074c-36ed-b852-40a4b7dcc4ee,SESCO,II.1.1,La Rioja,AR-F,annual,2016,jet kerosene combustion consumption by to the public,2.8622229999999997,TJ,N2O,2.0,kg/TJ,5.7244459999999995,kg +9d90d122-5bce-379c-9a14-07a4711957f8,SESCO,II.1.1,Mendoza,AR-M,annual,2016,jet kerosene combustion consumption by to the public,23.369578999999995,TJ,CO2,71500.0,kg/TJ,1670924.8984999997,kg +3651d6b2-e736-3d88-97b4-dcaffa80d860,SESCO,II.1.1,Mendoza,AR-M,annual,2016,jet kerosene combustion consumption by to the public,23.369578999999995,TJ,CH4,0.5,kg/TJ,11.684789499999997,kg +e4c939a4-c361-390c-8e9a-3acfe7f76fcc,SESCO,II.1.1,Mendoza,AR-M,annual,2016,jet kerosene combustion consumption by to the public,23.369578999999995,TJ,N2O,2.0,kg/TJ,46.73915799999999,kg +12bb6c06-5cfd-3237-85ef-90951d094781,SESCO,II.1.1,Neuquén,AR-Q,annual,2016,jet kerosene combustion consumption by to the public,7.863249999999999,TJ,CO2,71500.0,kg/TJ,562222.3749999999,kg +b2609622-0bfc-3262-a418-d85b4ac8b58a,SESCO,II.1.1,Neuquén,AR-Q,annual,2016,jet kerosene combustion consumption by to the public,7.863249999999999,TJ,CH4,0.5,kg/TJ,3.9316249999999995,kg +012c513a-b6fe-3149-951f-ba7f35f54d48,SESCO,II.1.1,Neuquén,AR-Q,annual,2016,jet kerosene combustion consumption by to the public,7.863249999999999,TJ,N2O,2.0,kg/TJ,15.726499999999998,kg +44563552-7f7c-3cd4-8682-dc0254f45028,SESCO,II.1.1,Rio Negro,AR-R,annual,2016,jet kerosene combustion consumption by to the public,1.3839319999999997,TJ,CO2,71500.0,kg/TJ,98951.13799999998,kg +c4a8df54-80f1-36ed-9950-261a4de06908,SESCO,II.1.1,Rio Negro,AR-R,annual,2016,jet kerosene combustion consumption by to the public,1.3839319999999997,TJ,CH4,0.5,kg/TJ,0.6919659999999999,kg +f46979de-0db0-36b0-9294-c9ffd61ccb83,SESCO,II.1.1,Rio Negro,AR-R,annual,2016,jet kerosene combustion consumption by to the public,1.3839319999999997,TJ,N2O,2.0,kg/TJ,2.7678639999999994,kg +82ddd54b-dda3-30a9-8a38-502fb66b5b92,SESCO,II.1.1,Salta,AR-A,annual,2016,jet kerosene combustion consumption by to the public,0.6605129999999999,TJ,CO2,71500.0,kg/TJ,47226.67949999999,kg +b9cc91a3-fd96-3cda-a075-fdc6ab0fec34,SESCO,II.1.1,Salta,AR-A,annual,2016,jet kerosene combustion consumption by to the public,0.6605129999999999,TJ,CH4,0.5,kg/TJ,0.33025649999999995,kg +34336290-12fa-3e9c-abfc-1cf0f82bc762,SESCO,II.1.1,Salta,AR-A,annual,2016,jet kerosene combustion consumption by to the public,0.6605129999999999,TJ,N2O,2.0,kg/TJ,1.3210259999999998,kg +59ba985f-cb37-303f-9f97-057276789315,SESCO,II.1.1,San Juan,AR-J,annual,2016,jet kerosene combustion consumption by to the public,3.522735999999999,TJ,CO2,71500.0,kg/TJ,251875.62399999995,kg +7168980a-0cc3-3258-90bd-f0463dfcdae8,SESCO,II.1.1,San Juan,AR-J,annual,2016,jet kerosene combustion consumption by to the public,3.522735999999999,TJ,CH4,0.5,kg/TJ,1.7613679999999996,kg +8c0654ed-ed19-3dba-85a2-32b1de319fdd,SESCO,II.1.1,San Juan,AR-J,annual,2016,jet kerosene combustion consumption by to the public,3.522735999999999,TJ,N2O,2.0,kg/TJ,7.045471999999998,kg +32c00c50-1858-3c70-ae1d-2a03f78ed4d5,SESCO,II.1.1,San Luis,AR-D,annual,2016,jet kerosene combustion consumption by to the public,6.9825659999999985,TJ,CO2,71500.0,kg/TJ,499253.46899999987,kg +a77a1148-789c-393f-a1b2-b4b8b97c8c48,SESCO,II.1.1,San Luis,AR-D,annual,2016,jet kerosene combustion consumption by to the public,6.9825659999999985,TJ,CH4,0.5,kg/TJ,3.4912829999999992,kg +bf68b56f-c771-3431-83c9-254b52a8bf78,SESCO,II.1.1,San Luis,AR-D,annual,2016,jet kerosene combustion consumption by to the public,6.9825659999999985,TJ,N2O,2.0,kg/TJ,13.965131999999997,kg +46f2b54a-a271-3c08-9058-f13872eb0536,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2016,jet kerosene combustion consumption by to the public,7.831796999999999,TJ,CO2,71500.0,kg/TJ,559973.4855,kg +54b42715-f8b5-361d-84cb-aab3cb58db4f,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2016,jet kerosene combustion consumption by to the public,7.831796999999999,TJ,CH4,0.5,kg/TJ,3.9158984999999995,kg +c0e1f0f0-36ad-3086-9101-a189648f10a5,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2016,jet kerosene combustion consumption by to the public,7.831796999999999,TJ,N2O,2.0,kg/TJ,15.663593999999998,kg +8dda3718-205f-360a-a1b4-70f5a583a17a,SESCO,II.1.1,Santa Fe,AR-S,annual,2016,jet kerosene combustion consumption by to the public,28.118981999999995,TJ,CO2,71500.0,kg/TJ,2010507.2129999998,kg +184c5589-e25e-346c-9f75-3a02d3e8e4fb,SESCO,II.1.1,Santa Fe,AR-S,annual,2016,jet kerosene combustion consumption by to the public,28.118981999999995,TJ,CH4,0.5,kg/TJ,14.059490999999998,kg +184d20b6-244b-3949-8ea1-843b29f91123,SESCO,II.1.1,Santa Fe,AR-S,annual,2016,jet kerosene combustion consumption by to the public,28.118981999999995,TJ,N2O,2.0,kg/TJ,56.23796399999999,kg +be05672b-0a14-34e2-8b71-a0f315248974,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2016,jet kerosene combustion consumption by to the public,3.2711119999999996,TJ,CO2,71500.0,kg/TJ,233884.50799999997,kg +3dcf29ae-e2fe-36f4-9b9e-67a65ce19019,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2016,jet kerosene combustion consumption by to the public,3.2711119999999996,TJ,CH4,0.5,kg/TJ,1.6355559999999998,kg +8bfaf884-deca-3f02-b5c6-811a40ffaae8,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2016,jet kerosene combustion consumption by to the public,3.2711119999999996,TJ,N2O,2.0,kg/TJ,6.542223999999999,kg +7ad841a1-99a3-3646-8684-078bc7429154,SESCO,II.1.1,Tucuman,AR-T,annual,2016,jet kerosene combustion consumption by to the public,10.568207999999998,TJ,CO2,71500.0,kg/TJ,755626.8719999999,kg +d0c43816-e919-3c5b-8c11-671a9ea5033b,SESCO,II.1.1,Tucuman,AR-T,annual,2016,jet kerosene combustion consumption by to the public,10.568207999999998,TJ,CH4,0.5,kg/TJ,5.284103999999999,kg +2dee317e-c95a-3c4f-87f9-182f6e436a3e,SESCO,II.1.1,Tucuman,AR-T,annual,2016,jet kerosene combustion consumption by to the public,10.568207999999998,TJ,N2O,2.0,kg/TJ,21.136415999999997,kg +6986b955-acd8-3368-8668-b5897f13e7ad,SESCO,II.1.1,Buenos Aires,AR-B,annual,2016,gas oil combustion consumption by freight transport,8246.99064,TJ,CO2,74100.0,kg/TJ,611102006.424,kg +fa723d7b-1d91-39d8-bca7-8a11cae4f94a,SESCO,II.1.1,Buenos Aires,AR-B,annual,2016,gas oil combustion consumption by freight transport,8246.99064,TJ,CH4,3.9,kg/TJ,32163.263496,kg +fa723d7b-1d91-39d8-bca7-8a11cae4f94a,SESCO,II.1.1,Buenos Aires,AR-B,annual,2016,gas oil combustion consumption by freight transport,8246.99064,TJ,N2O,3.9,kg/TJ,32163.263496,kg +71cab15c-5e3e-3dd2-a5a4-3c6201c172e7,SESCO,II.1.1,Capital Federal,AR-C,annual,2016,gas oil combustion consumption by freight transport,3331.9977599999997,TJ,CO2,74100.0,kg/TJ,246901034.01599997,kg +099b9e71-a6b3-3dbf-a334-021269106704,SESCO,II.1.1,Capital Federal,AR-C,annual,2016,gas oil combustion consumption by freight transport,3331.9977599999997,TJ,CH4,3.9,kg/TJ,12994.791264,kg +099b9e71-a6b3-3dbf-a334-021269106704,SESCO,II.1.1,Capital Federal,AR-C,annual,2016,gas oil combustion consumption by freight transport,3331.9977599999997,TJ,N2O,3.9,kg/TJ,12994.791264,kg +4070cc4d-e6d5-3e9d-831c-1500895284e2,SESCO,II.1.1,Catamarca,AR-K,annual,2016,gas oil combustion consumption by freight transport,15.60384,TJ,CO2,74100.0,kg/TJ,1156244.544,kg +edd990f0-dfa0-3f49-828a-990153bfa0f9,SESCO,II.1.1,Catamarca,AR-K,annual,2016,gas oil combustion consumption by freight transport,15.60384,TJ,CH4,3.9,kg/TJ,60.854976,kg +edd990f0-dfa0-3f49-828a-990153bfa0f9,SESCO,II.1.1,Catamarca,AR-K,annual,2016,gas oil combustion consumption by freight transport,15.60384,TJ,N2O,3.9,kg/TJ,60.854976,kg +39ef7aad-6878-3393-98b7-d885d266582a,SESCO,II.1.1,Chaco,AR-H,annual,2016,gas oil combustion consumption by freight transport,219.0678,TJ,CO2,74100.0,kg/TJ,16232923.98,kg +b67e5ffe-42d5-36a2-909d-f6199c1a9901,SESCO,II.1.1,Chaco,AR-H,annual,2016,gas oil combustion consumption by freight transport,219.0678,TJ,CH4,3.9,kg/TJ,854.36442,kg +b67e5ffe-42d5-36a2-909d-f6199c1a9901,SESCO,II.1.1,Chaco,AR-H,annual,2016,gas oil combustion consumption by freight transport,219.0678,TJ,N2O,3.9,kg/TJ,854.36442,kg +2f2d04ae-bf42-311b-ada2-1e0b589b5d80,SESCO,II.1.1,Chubut,AR-U,annual,2016,gas oil combustion consumption by freight transport,207.69,TJ,CO2,74100.0,kg/TJ,15389829.0,kg +d161d5c9-27c1-3c11-b096-b8188a8ddf02,SESCO,II.1.1,Chubut,AR-U,annual,2016,gas oil combustion consumption by freight transport,207.69,TJ,CH4,3.9,kg/TJ,809.991,kg +d161d5c9-27c1-3c11-b096-b8188a8ddf02,SESCO,II.1.1,Chubut,AR-U,annual,2016,gas oil combustion consumption by freight transport,207.69,TJ,N2O,3.9,kg/TJ,809.991,kg +a6143878-7d3f-382f-89e7-f5a1a03af974,SESCO,II.1.1,Corrientes,AR-W,annual,2016,gas oil combustion consumption by freight transport,214.84176,TJ,CO2,74100.0,kg/TJ,15919774.416,kg +6e3908c1-9433-3dc2-a044-32cdbeb202ff,SESCO,II.1.1,Corrientes,AR-W,annual,2016,gas oil combustion consumption by freight transport,214.84176,TJ,CH4,3.9,kg/TJ,837.8828639999999,kg +6e3908c1-9433-3dc2-a044-32cdbeb202ff,SESCO,II.1.1,Corrientes,AR-W,annual,2016,gas oil combustion consumption by freight transport,214.84176,TJ,N2O,3.9,kg/TJ,837.8828639999999,kg +b8d89750-1ef6-3735-ac57-7b269cfe7edc,SESCO,II.1.1,Córdoba,AR-X,annual,2016,gas oil combustion consumption by freight transport,2025.57348,TJ,CO2,74100.0,kg/TJ,150094994.868,kg +52e6de84-4411-3ee3-86b8-8ba238620d1b,SESCO,II.1.1,Córdoba,AR-X,annual,2016,gas oil combustion consumption by freight transport,2025.57348,TJ,CH4,3.9,kg/TJ,7899.736572,kg +52e6de84-4411-3ee3-86b8-8ba238620d1b,SESCO,II.1.1,Córdoba,AR-X,annual,2016,gas oil combustion consumption by freight transport,2025.57348,TJ,N2O,3.9,kg/TJ,7899.736572,kg +c26df134-69e5-3b03-b7b8-0206d8d36667,SESCO,II.1.1,Entre Rios,AR-E,annual,2016,gas oil combustion consumption by freight transport,350.7252,TJ,CO2,74100.0,kg/TJ,25988737.319999997,kg +5f67a2e7-ace0-3e78-890d-1e7eff54d71c,SESCO,II.1.1,Entre Rios,AR-E,annual,2016,gas oil combustion consumption by freight transport,350.7252,TJ,CH4,3.9,kg/TJ,1367.82828,kg +5f67a2e7-ace0-3e78-890d-1e7eff54d71c,SESCO,II.1.1,Entre Rios,AR-E,annual,2016,gas oil combustion consumption by freight transport,350.7252,TJ,N2O,3.9,kg/TJ,1367.82828,kg +3ae1cba5-102f-3511-8ac9-9961f581c23a,SESCO,II.1.1,Formosa,AR-P,annual,2016,gas oil combustion consumption by freight transport,1.91436,TJ,CO2,74100.0,kg/TJ,141854.076,kg +4068cdb2-c2d3-31c9-be77-e552cffb55a1,SESCO,II.1.1,Formosa,AR-P,annual,2016,gas oil combustion consumption by freight transport,1.91436,TJ,CH4,3.9,kg/TJ,7.466004,kg +4068cdb2-c2d3-31c9-be77-e552cffb55a1,SESCO,II.1.1,Formosa,AR-P,annual,2016,gas oil combustion consumption by freight transport,1.91436,TJ,N2O,3.9,kg/TJ,7.466004,kg +757b93f3-6d7d-335a-85cb-15ec805e09d8,SESCO,II.1.1,Jujuy,AR-Y,annual,2016,gas oil combustion consumption by freight transport,81.8118,TJ,CO2,74100.0,kg/TJ,6062254.380000001,kg +6d8478c0-510a-3848-804a-5e44b7b36350,SESCO,II.1.1,Jujuy,AR-Y,annual,2016,gas oil combustion consumption by freight transport,81.8118,TJ,CH4,3.9,kg/TJ,319.06602000000004,kg +6d8478c0-510a-3848-804a-5e44b7b36350,SESCO,II.1.1,Jujuy,AR-Y,annual,2016,gas oil combustion consumption by freight transport,81.8118,TJ,N2O,3.9,kg/TJ,319.06602000000004,kg +d09d46e6-3b3b-3bbf-aa49-915c16743a38,SESCO,II.1.1,La Pampa,AR-L,annual,2016,gas oil combustion consumption by freight transport,59.7786,TJ,CO2,74100.0,kg/TJ,4429594.26,kg +2ba8fff1-11f1-396f-93f1-1c6321bf76d7,SESCO,II.1.1,La Pampa,AR-L,annual,2016,gas oil combustion consumption by freight transport,59.7786,TJ,CH4,3.9,kg/TJ,233.13654,kg +2ba8fff1-11f1-396f-93f1-1c6321bf76d7,SESCO,II.1.1,La Pampa,AR-L,annual,2016,gas oil combustion consumption by freight transport,59.7786,TJ,N2O,3.9,kg/TJ,233.13654,kg +11e6132e-636e-3b5f-a0bf-f39940c6ca11,SESCO,II.1.1,La Rioja,AR-F,annual,2016,gas oil combustion consumption by freight transport,2.20332,TJ,CO2,74100.0,kg/TJ,163266.01200000002,kg +ce4fc89a-a2a1-3ebd-a098-7639a6396fce,SESCO,II.1.1,La Rioja,AR-F,annual,2016,gas oil combustion consumption by freight transport,2.20332,TJ,CH4,3.9,kg/TJ,8.592948,kg +ce4fc89a-a2a1-3ebd-a098-7639a6396fce,SESCO,II.1.1,La Rioja,AR-F,annual,2016,gas oil combustion consumption by freight transport,2.20332,TJ,N2O,3.9,kg/TJ,8.592948,kg +998893cd-928e-3ae6-b517-d4611370cac1,SESCO,II.1.1,Mendoza,AR-M,annual,2016,gas oil combustion consumption by freight transport,1451.15712,TJ,CO2,74100.0,kg/TJ,107530742.59200001,kg +f20ab9ed-c08d-3060-bb20-5b2fce2800e1,SESCO,II.1.1,Mendoza,AR-M,annual,2016,gas oil combustion consumption by freight transport,1451.15712,TJ,CH4,3.9,kg/TJ,5659.5127680000005,kg +f20ab9ed-c08d-3060-bb20-5b2fce2800e1,SESCO,II.1.1,Mendoza,AR-M,annual,2016,gas oil combustion consumption by freight transport,1451.15712,TJ,N2O,3.9,kg/TJ,5659.5127680000005,kg +8970e668-6361-31ed-8320-b30518eaea64,SESCO,II.1.1,Misiones,AR-N,annual,2016,gas oil combustion consumption by freight transport,575.82504,TJ,CO2,74100.0,kg/TJ,42668635.463999994,kg +e55c6110-17b2-316a-bc46-d52ec554f3b1,SESCO,II.1.1,Misiones,AR-N,annual,2016,gas oil combustion consumption by freight transport,575.82504,TJ,CH4,3.9,kg/TJ,2245.717656,kg +e55c6110-17b2-316a-bc46-d52ec554f3b1,SESCO,II.1.1,Misiones,AR-N,annual,2016,gas oil combustion consumption by freight transport,575.82504,TJ,N2O,3.9,kg/TJ,2245.717656,kg +995abab9-6d2c-3871-aa71-acb696a05b0a,SESCO,II.1.1,Neuquén,AR-Q,annual,2016,gas oil combustion consumption by freight transport,972.02532,TJ,CO2,74100.0,kg/TJ,72027076.212,kg +ada7c9cb-5df9-35bf-b6f6-3abfdf029720,SESCO,II.1.1,Neuquén,AR-Q,annual,2016,gas oil combustion consumption by freight transport,972.02532,TJ,CH4,3.9,kg/TJ,3790.8987479999996,kg +ada7c9cb-5df9-35bf-b6f6-3abfdf029720,SESCO,II.1.1,Neuquén,AR-Q,annual,2016,gas oil combustion consumption by freight transport,972.02532,TJ,N2O,3.9,kg/TJ,3790.8987479999996,kg +8c00a24e-e781-3309-920c-2221767d0c7f,SESCO,II.1.1,Rio Negro,AR-R,annual,2016,gas oil combustion consumption by freight transport,192.84467999999998,TJ,CO2,74100.0,kg/TJ,14289790.787999999,kg +e6e9b266-380b-33e5-a401-e1c034d56edd,SESCO,II.1.1,Rio Negro,AR-R,annual,2016,gas oil combustion consumption by freight transport,192.84467999999998,TJ,CH4,3.9,kg/TJ,752.0942519999999,kg +e6e9b266-380b-33e5-a401-e1c034d56edd,SESCO,II.1.1,Rio Negro,AR-R,annual,2016,gas oil combustion consumption by freight transport,192.84467999999998,TJ,N2O,3.9,kg/TJ,752.0942519999999,kg +1d403655-95d1-363f-8047-30857db55ebb,SESCO,II.1.1,Salta,AR-A,annual,2016,gas oil combustion consumption by freight transport,238.42812,TJ,CO2,74100.0,kg/TJ,17667523.692,kg +1c0493a2-2a99-3e3e-bde0-86fafc29b301,SESCO,II.1.1,Salta,AR-A,annual,2016,gas oil combustion consumption by freight transport,238.42812,TJ,CH4,3.9,kg/TJ,929.869668,kg +1c0493a2-2a99-3e3e-bde0-86fafc29b301,SESCO,II.1.1,Salta,AR-A,annual,2016,gas oil combustion consumption by freight transport,238.42812,TJ,N2O,3.9,kg/TJ,929.869668,kg +7d3c2542-0f80-3bc4-ae5a-91208e729854,SESCO,II.1.1,San Juan,AR-J,annual,2016,gas oil combustion consumption by freight transport,67.03872,TJ,CO2,74100.0,kg/TJ,4967569.152,kg +1c5f4a32-88ec-318a-8faa-0611b76e2816,SESCO,II.1.1,San Juan,AR-J,annual,2016,gas oil combustion consumption by freight transport,67.03872,TJ,CH4,3.9,kg/TJ,261.451008,kg +1c5f4a32-88ec-318a-8faa-0611b76e2816,SESCO,II.1.1,San Juan,AR-J,annual,2016,gas oil combustion consumption by freight transport,67.03872,TJ,N2O,3.9,kg/TJ,261.451008,kg +2a2b146e-aa07-3870-88c5-faa0dd6b4c18,SESCO,II.1.1,San Luis,AR-D,annual,2016,gas oil combustion consumption by freight transport,121.11036,TJ,CO2,74100.0,kg/TJ,8974277.676,kg +5b943b7b-99a3-3dba-a4cd-e58f4142341e,SESCO,II.1.1,San Luis,AR-D,annual,2016,gas oil combustion consumption by freight transport,121.11036,TJ,CH4,3.9,kg/TJ,472.330404,kg +5b943b7b-99a3-3dba-a4cd-e58f4142341e,SESCO,II.1.1,San Luis,AR-D,annual,2016,gas oil combustion consumption by freight transport,121.11036,TJ,N2O,3.9,kg/TJ,472.330404,kg +cb736609-9b64-3aa2-a3e2-24475f7b9070,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2016,gas oil combustion consumption by freight transport,90.6612,TJ,CO2,74100.0,kg/TJ,6717994.92,kg +f798ea6c-8008-37dd-8bf9-7453a7b60693,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2016,gas oil combustion consumption by freight transport,90.6612,TJ,CH4,3.9,kg/TJ,353.57867999999996,kg +f798ea6c-8008-37dd-8bf9-7453a7b60693,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2016,gas oil combustion consumption by freight transport,90.6612,TJ,N2O,3.9,kg/TJ,353.57867999999996,kg +0f92c100-7a61-3c63-acfb-01fb1a7016ff,SESCO,II.1.1,Santa Fe,AR-S,annual,2016,gas oil combustion consumption by freight transport,2135.99232,TJ,CO2,74100.0,kg/TJ,158277030.912,kg +4b5824ed-a400-32b6-b5ed-90e418acb608,SESCO,II.1.1,Santa Fe,AR-S,annual,2016,gas oil combustion consumption by freight transport,2135.99232,TJ,CH4,3.9,kg/TJ,8330.370047999999,kg +4b5824ed-a400-32b6-b5ed-90e418acb608,SESCO,II.1.1,Santa Fe,AR-S,annual,2016,gas oil combustion consumption by freight transport,2135.99232,TJ,N2O,3.9,kg/TJ,8330.370047999999,kg +14cd6f6e-37d1-376b-9486-06e637e572ba,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2016,gas oil combustion consumption by freight transport,125.19192,TJ,CO2,74100.0,kg/TJ,9276721.272,kg +ba7100bf-e54f-34c7-a669-2db2604fb9c1,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2016,gas oil combustion consumption by freight transport,125.19192,TJ,CH4,3.9,kg/TJ,488.24848799999995,kg +ba7100bf-e54f-34c7-a669-2db2604fb9c1,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2016,gas oil combustion consumption by freight transport,125.19192,TJ,N2O,3.9,kg/TJ,488.24848799999995,kg +20827050-3dae-3bc2-b325-ca5a50cd8f67,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2016,gas oil combustion consumption by freight transport,26.83716,TJ,CO2,74100.0,kg/TJ,1988633.556,kg +c41c53b9-379a-3618-98f2-f10babf8d654,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2016,gas oil combustion consumption by freight transport,26.83716,TJ,CH4,3.9,kg/TJ,104.664924,kg +c41c53b9-379a-3618-98f2-f10babf8d654,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2016,gas oil combustion consumption by freight transport,26.83716,TJ,N2O,3.9,kg/TJ,104.664924,kg +199c2f45-3121-3f50-bcb9-6bbc81e3d507,SESCO,II.1.1,Tucuman,AR-T,annual,2016,gas oil combustion consumption by freight transport,351.77268,TJ,CO2,74100.0,kg/TJ,26066355.588,kg +9e2518cc-f813-3768-bb65-51b985f04895,SESCO,II.1.1,Tucuman,AR-T,annual,2016,gas oil combustion consumption by freight transport,351.77268,TJ,CH4,3.9,kg/TJ,1371.9134519999998,kg +9e2518cc-f813-3768-bb65-51b985f04895,SESCO,II.1.1,Tucuman,AR-T,annual,2016,gas oil combustion consumption by freight transport,351.77268,TJ,N2O,3.9,kg/TJ,1371.9134519999998,kg +06d195a2-32c8-34eb-b912-f3e0564cc9bc,SESCO,II.1.1,Buenos Aires,AR-B,annual,2016,gas oil combustion consumption by freight transport,667.20864,TJ,CO2,74100.0,kg/TJ,49440160.224,kg +e5583d67-f480-3693-8e06-5883d7de4e33,SESCO,II.1.1,Buenos Aires,AR-B,annual,2016,gas oil combustion consumption by freight transport,667.20864,TJ,CH4,3.9,kg/TJ,2602.113696,kg +e5583d67-f480-3693-8e06-5883d7de4e33,SESCO,II.1.1,Buenos Aires,AR-B,annual,2016,gas oil combustion consumption by freight transport,667.20864,TJ,N2O,3.9,kg/TJ,2602.113696,kg +ded8c87a-995f-3d47-b710-1ec077e8e7c6,SESCO,II.1.1,Capital Federal,AR-C,annual,2016,gas oil combustion consumption by freight transport,955.0128,TJ,CO2,74100.0,kg/TJ,70766448.48,kg +0a4111c0-79b6-3195-8fef-754f66519fe5,SESCO,II.1.1,Capital Federal,AR-C,annual,2016,gas oil combustion consumption by freight transport,955.0128,TJ,CH4,3.9,kg/TJ,3724.54992,kg +0a4111c0-79b6-3195-8fef-754f66519fe5,SESCO,II.1.1,Capital Federal,AR-C,annual,2016,gas oil combustion consumption by freight transport,955.0128,TJ,N2O,3.9,kg/TJ,3724.54992,kg +66286718-d044-3e3b-a5ba-729b50377f72,SESCO,II.1.1,Chaco,AR-H,annual,2016,gas oil combustion consumption by freight transport,31.46052,TJ,CO2,74100.0,kg/TJ,2331224.532,kg +bb0de27f-d8f2-3178-a651-8001c31a721e,SESCO,II.1.1,Chaco,AR-H,annual,2016,gas oil combustion consumption by freight transport,31.46052,TJ,CH4,3.9,kg/TJ,122.696028,kg +bb0de27f-d8f2-3178-a651-8001c31a721e,SESCO,II.1.1,Chaco,AR-H,annual,2016,gas oil combustion consumption by freight transport,31.46052,TJ,N2O,3.9,kg/TJ,122.696028,kg +7d7f52d7-e7de-39b1-be17-0bfdfe35dab7,SESCO,II.1.1,Chubut,AR-U,annual,2016,gas oil combustion consumption by freight transport,50.748599999999996,TJ,CO2,74100.0,kg/TJ,3760471.26,kg +48d8ba8e-2daf-34e3-8bf2-115b33beb1b2,SESCO,II.1.1,Chubut,AR-U,annual,2016,gas oil combustion consumption by freight transport,50.748599999999996,TJ,CH4,3.9,kg/TJ,197.91953999999998,kg +48d8ba8e-2daf-34e3-8bf2-115b33beb1b2,SESCO,II.1.1,Chubut,AR-U,annual,2016,gas oil combustion consumption by freight transport,50.748599999999996,TJ,N2O,3.9,kg/TJ,197.91953999999998,kg +c1ed515c-1694-3bd0-9c0c-c3339bf25876,SESCO,II.1.1,Corrientes,AR-W,annual,2016,gas oil combustion consumption by freight transport,20.48004,TJ,CO2,74100.0,kg/TJ,1517570.964,kg +80f7828f-2167-32d5-a25f-a14e1c8be148,SESCO,II.1.1,Corrientes,AR-W,annual,2016,gas oil combustion consumption by freight transport,20.48004,TJ,CH4,3.9,kg/TJ,79.87215599999999,kg +80f7828f-2167-32d5-a25f-a14e1c8be148,SESCO,II.1.1,Corrientes,AR-W,annual,2016,gas oil combustion consumption by freight transport,20.48004,TJ,N2O,3.9,kg/TJ,79.87215599999999,kg +880b3d56-d2c5-3965-9371-50ab678cf7d4,SESCO,II.1.1,Córdoba,AR-X,annual,2016,gas oil combustion consumption by freight transport,33.5916,TJ,CO2,74100.0,kg/TJ,2489137.56,kg +731927cc-a029-392a-9690-3c8e8384fe8e,SESCO,II.1.1,Córdoba,AR-X,annual,2016,gas oil combustion consumption by freight transport,33.5916,TJ,CH4,3.9,kg/TJ,131.00724,kg +731927cc-a029-392a-9690-3c8e8384fe8e,SESCO,II.1.1,Córdoba,AR-X,annual,2016,gas oil combustion consumption by freight transport,33.5916,TJ,N2O,3.9,kg/TJ,131.00724,kg +1d0fffc3-f4bd-3963-89a5-7c852e8df873,SESCO,II.1.1,Entre Rios,AR-E,annual,2016,gas oil combustion consumption by freight transport,23.44188,TJ,CO2,74100.0,kg/TJ,1737043.3080000002,kg +9472acc7-9f66-3a3e-9339-ea730065c436,SESCO,II.1.1,Entre Rios,AR-E,annual,2016,gas oil combustion consumption by freight transport,23.44188,TJ,CH4,3.9,kg/TJ,91.423332,kg +9472acc7-9f66-3a3e-9339-ea730065c436,SESCO,II.1.1,Entre Rios,AR-E,annual,2016,gas oil combustion consumption by freight transport,23.44188,TJ,N2O,3.9,kg/TJ,91.423332,kg +2414251f-b129-33ed-999e-1e583acfab98,SESCO,II.1.1,Formosa,AR-P,annual,2016,gas oil combustion consumption by freight transport,0.50568,TJ,CO2,74100.0,kg/TJ,37470.888,kg +0ab8a1ee-c755-3d6f-b804-eed5a6e78006,SESCO,II.1.1,Formosa,AR-P,annual,2016,gas oil combustion consumption by freight transport,0.50568,TJ,CH4,3.9,kg/TJ,1.9721520000000001,kg +0ab8a1ee-c755-3d6f-b804-eed5a6e78006,SESCO,II.1.1,Formosa,AR-P,annual,2016,gas oil combustion consumption by freight transport,0.50568,TJ,N2O,3.9,kg/TJ,1.9721520000000001,kg +3ff4451d-7617-3b97-a080-eaa02a384379,SESCO,II.1.1,Jujuy,AR-Y,annual,2016,gas oil combustion consumption by freight transport,0.03612,TJ,CO2,74100.0,kg/TJ,2676.4919999999997,kg +6f4c9fad-dbde-38f3-a1fc-be6512e67ea9,SESCO,II.1.1,Jujuy,AR-Y,annual,2016,gas oil combustion consumption by freight transport,0.03612,TJ,CH4,3.9,kg/TJ,0.140868,kg +6f4c9fad-dbde-38f3-a1fc-be6512e67ea9,SESCO,II.1.1,Jujuy,AR-Y,annual,2016,gas oil combustion consumption by freight transport,0.03612,TJ,N2O,3.9,kg/TJ,0.140868,kg +f13b35ca-684b-3109-ab9e-a63adb8f1c7d,SESCO,II.1.1,La Pampa,AR-L,annual,2016,gas oil combustion consumption by freight transport,0.8307599999999999,TJ,CO2,74100.0,kg/TJ,61559.316,kg +300d52d1-a3e3-3446-bff5-704258a12062,SESCO,II.1.1,La Pampa,AR-L,annual,2016,gas oil combustion consumption by freight transport,0.8307599999999999,TJ,CH4,3.9,kg/TJ,3.2399639999999996,kg +300d52d1-a3e3-3446-bff5-704258a12062,SESCO,II.1.1,La Pampa,AR-L,annual,2016,gas oil combustion consumption by freight transport,0.8307599999999999,TJ,N2O,3.9,kg/TJ,3.2399639999999996,kg +b276888d-87cf-3ef2-8c5c-14c4077c148b,SESCO,II.1.1,La Rioja,AR-F,annual,2016,gas oil combustion consumption by freight transport,4.47888,TJ,CO2,74100.0,kg/TJ,331885.00800000003,kg +6a2de516-cd37-3aa3-98ee-f8d1c9546357,SESCO,II.1.1,La Rioja,AR-F,annual,2016,gas oil combustion consumption by freight transport,4.47888,TJ,CH4,3.9,kg/TJ,17.467632000000002,kg +6a2de516-cd37-3aa3-98ee-f8d1c9546357,SESCO,II.1.1,La Rioja,AR-F,annual,2016,gas oil combustion consumption by freight transport,4.47888,TJ,N2O,3.9,kg/TJ,17.467632000000002,kg +f950c731-681a-3aee-9785-fb4bcefd8995,SESCO,II.1.1,Mendoza,AR-M,annual,2016,gas oil combustion consumption by freight transport,59.48964,TJ,CO2,74100.0,kg/TJ,4408182.324,kg +412dd5d0-d2f6-3d5a-8d60-a66e14038489,SESCO,II.1.1,Mendoza,AR-M,annual,2016,gas oil combustion consumption by freight transport,59.48964,TJ,CH4,3.9,kg/TJ,232.009596,kg +412dd5d0-d2f6-3d5a-8d60-a66e14038489,SESCO,II.1.1,Mendoza,AR-M,annual,2016,gas oil combustion consumption by freight transport,59.48964,TJ,N2O,3.9,kg/TJ,232.009596,kg +eb9fd088-f633-3325-a730-30e096be1f40,SESCO,II.1.1,Misiones,AR-N,annual,2016,gas oil combustion consumption by freight transport,10.58316,TJ,CO2,74100.0,kg/TJ,784212.156,kg +ecdd3f94-e8d5-3992-adea-3ad0c3bb176d,SESCO,II.1.1,Misiones,AR-N,annual,2016,gas oil combustion consumption by freight transport,10.58316,TJ,CH4,3.9,kg/TJ,41.274324,kg +ecdd3f94-e8d5-3992-adea-3ad0c3bb176d,SESCO,II.1.1,Misiones,AR-N,annual,2016,gas oil combustion consumption by freight transport,10.58316,TJ,N2O,3.9,kg/TJ,41.274324,kg +2fedbd53-3554-3e0c-8825-543c2584fe4a,SESCO,II.1.1,Neuquén,AR-Q,annual,2016,gas oil combustion consumption by freight transport,264.14556,TJ,CO2,74100.0,kg/TJ,19573185.996,kg +53a054c5-b09a-3516-a41e-cd03c14319ba,SESCO,II.1.1,Neuquén,AR-Q,annual,2016,gas oil combustion consumption by freight transport,264.14556,TJ,CH4,3.9,kg/TJ,1030.167684,kg +53a054c5-b09a-3516-a41e-cd03c14319ba,SESCO,II.1.1,Neuquén,AR-Q,annual,2016,gas oil combustion consumption by freight transport,264.14556,TJ,N2O,3.9,kg/TJ,1030.167684,kg +b7f7517e-9c81-3800-99fa-76eb28063a0f,SESCO,II.1.1,Rio Negro,AR-R,annual,2016,gas oil combustion consumption by freight transport,11.34168,TJ,CO2,74100.0,kg/TJ,840418.488,kg +63132229-6633-3910-80a9-62f8e82b9dce,SESCO,II.1.1,Rio Negro,AR-R,annual,2016,gas oil combustion consumption by freight transport,11.34168,TJ,CH4,3.9,kg/TJ,44.232552,kg +63132229-6633-3910-80a9-62f8e82b9dce,SESCO,II.1.1,Rio Negro,AR-R,annual,2016,gas oil combustion consumption by freight transport,11.34168,TJ,N2O,3.9,kg/TJ,44.232552,kg +08f95bdb-96d3-326b-a119-0602b5e3041a,SESCO,II.1.1,Salta,AR-A,annual,2016,gas oil combustion consumption by freight transport,58.695,TJ,CO2,74100.0,kg/TJ,4349299.5,kg +d3262697-8456-31df-a105-fa1904714b10,SESCO,II.1.1,Salta,AR-A,annual,2016,gas oil combustion consumption by freight transport,58.695,TJ,CH4,3.9,kg/TJ,228.91049999999998,kg +d3262697-8456-31df-a105-fa1904714b10,SESCO,II.1.1,Salta,AR-A,annual,2016,gas oil combustion consumption by freight transport,58.695,TJ,N2O,3.9,kg/TJ,228.91049999999998,kg +3776ca81-7d84-33a3-b0f7-1dcc172c65fe,SESCO,II.1.1,San Juan,AR-J,annual,2016,gas oil combustion consumption by freight transport,3.72036,TJ,CO2,74100.0,kg/TJ,275678.676,kg +97b0ddd0-0bda-3aa7-b9fe-e3a4bc9ac580,SESCO,II.1.1,San Juan,AR-J,annual,2016,gas oil combustion consumption by freight transport,3.72036,TJ,CH4,3.9,kg/TJ,14.509404,kg +97b0ddd0-0bda-3aa7-b9fe-e3a4bc9ac580,SESCO,II.1.1,San Juan,AR-J,annual,2016,gas oil combustion consumption by freight transport,3.72036,TJ,N2O,3.9,kg/TJ,14.509404,kg +96560c11-3ae5-3cfc-85c8-eae5f091043e,SESCO,II.1.1,San Luis,AR-D,annual,2016,gas oil combustion consumption by freight transport,9.89688,TJ,CO2,74100.0,kg/TJ,733358.808,kg +caa87d1c-f165-3a2c-9d08-b1224dadb463,SESCO,II.1.1,San Luis,AR-D,annual,2016,gas oil combustion consumption by freight transport,9.89688,TJ,CH4,3.9,kg/TJ,38.597832,kg +caa87d1c-f165-3a2c-9d08-b1224dadb463,SESCO,II.1.1,San Luis,AR-D,annual,2016,gas oil combustion consumption by freight transport,9.89688,TJ,N2O,3.9,kg/TJ,38.597832,kg +e4697bd0-5932-3594-9f74-84b40d76b3d1,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2016,gas oil combustion consumption by freight transport,16.254,TJ,CO2,74100.0,kg/TJ,1204421.4000000001,kg +e95b3eca-8dcc-3c78-8ac3-f15b417d3d9a,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2016,gas oil combustion consumption by freight transport,16.254,TJ,CH4,3.9,kg/TJ,63.390600000000006,kg +e95b3eca-8dcc-3c78-8ac3-f15b417d3d9a,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2016,gas oil combustion consumption by freight transport,16.254,TJ,N2O,3.9,kg/TJ,63.390600000000006,kg +f2019d44-e969-354f-948c-3494af2366fe,SESCO,II.1.1,Santa Fe,AR-S,annual,2016,gas oil combustion consumption by freight transport,194.61455999999998,TJ,CO2,74100.0,kg/TJ,14420938.895999998,kg +2a4e210e-104c-377a-8353-d0f9b7f4c820,SESCO,II.1.1,Santa Fe,AR-S,annual,2016,gas oil combustion consumption by freight transport,194.61455999999998,TJ,CH4,3.9,kg/TJ,758.9967839999999,kg +2a4e210e-104c-377a-8353-d0f9b7f4c820,SESCO,II.1.1,Santa Fe,AR-S,annual,2016,gas oil combustion consumption by freight transport,194.61455999999998,TJ,N2O,3.9,kg/TJ,758.9967839999999,kg +0c9eec92-5f57-3a80-a23b-d2c783e39929,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2016,gas oil combustion consumption by freight transport,0.14448,TJ,CO2,74100.0,kg/TJ,10705.967999999999,kg +3a321140-ea17-3d62-bf1c-3271d4d13d27,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2016,gas oil combustion consumption by freight transport,0.14448,TJ,CH4,3.9,kg/TJ,0.563472,kg +3a321140-ea17-3d62-bf1c-3271d4d13d27,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2016,gas oil combustion consumption by freight transport,0.14448,TJ,N2O,3.9,kg/TJ,0.563472,kg +6781a9b0-eb70-3a34-844a-521d3ffac2f9,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2016,gas oil combustion consumption by freight transport,6.79056,TJ,CO2,74100.0,kg/TJ,503180.496,kg +d6594538-b8b9-3da4-8a6e-0039d9f9bb09,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2016,gas oil combustion consumption by freight transport,6.79056,TJ,CH4,3.9,kg/TJ,26.483184,kg +d6594538-b8b9-3da4-8a6e-0039d9f9bb09,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2016,gas oil combustion consumption by freight transport,6.79056,TJ,N2O,3.9,kg/TJ,26.483184,kg +de54f55a-7550-38ef-93f1-a6ec2596d9a3,SESCO,II.1.1,Tucuman,AR-T,annual,2016,gas oil combustion consumption by freight transport,12.642,TJ,CO2,74100.0,kg/TJ,936772.2,kg +02b0084c-1723-3316-8067-2434633fc9bb,SESCO,II.1.1,Tucuman,AR-T,annual,2016,gas oil combustion consumption by freight transport,12.642,TJ,CH4,3.9,kg/TJ,49.303799999999995,kg +02b0084c-1723-3316-8067-2434633fc9bb,SESCO,II.1.1,Tucuman,AR-T,annual,2016,gas oil combustion consumption by freight transport,12.642,TJ,N2O,3.9,kg/TJ,49.303799999999995,kg +6b64edc9-5665-30e3-8bc7-57d1e56723d7,SESCO,II.1.1,Buenos Aires,AR-B,annual,2016,gas oil combustion consumption by public passenger transport,11807.2668,TJ,CO2,74100.0,kg/TJ,874918469.88,kg +2bdcd47c-f9fd-3bb6-8485-999d111e2a24,SESCO,II.1.1,Buenos Aires,AR-B,annual,2016,gas oil combustion consumption by public passenger transport,11807.2668,TJ,CH4,3.9,kg/TJ,46048.34052,kg +2bdcd47c-f9fd-3bb6-8485-999d111e2a24,SESCO,II.1.1,Buenos Aires,AR-B,annual,2016,gas oil combustion consumption by public passenger transport,11807.2668,TJ,N2O,3.9,kg/TJ,46048.34052,kg +d1d0f6d6-510c-32e6-a4d0-532c64ba0a32,SESCO,II.1.1,Capital Federal,AR-C,annual,2016,gas oil combustion consumption by public passenger transport,2822.4168,TJ,CO2,74100.0,kg/TJ,209141084.88,kg +b56a0163-bd5c-3131-aef5-8f3b87e54e20,SESCO,II.1.1,Capital Federal,AR-C,annual,2016,gas oil combustion consumption by public passenger transport,2822.4168,TJ,CH4,3.9,kg/TJ,11007.425519999999,kg +b56a0163-bd5c-3131-aef5-8f3b87e54e20,SESCO,II.1.1,Capital Federal,AR-C,annual,2016,gas oil combustion consumption by public passenger transport,2822.4168,TJ,N2O,3.9,kg/TJ,11007.425519999999,kg +90a659f8-cd58-37ff-af39-182db41bfa24,SESCO,II.1.1,Catamarca,AR-K,annual,2016,gas oil combustion consumption by public passenger transport,222.3186,TJ,CO2,74100.0,kg/TJ,16473808.26,kg +37e12f22-a53f-384d-a77e-2f577e4850cb,SESCO,II.1.1,Catamarca,AR-K,annual,2016,gas oil combustion consumption by public passenger transport,222.3186,TJ,CH4,3.9,kg/TJ,867.04254,kg +37e12f22-a53f-384d-a77e-2f577e4850cb,SESCO,II.1.1,Catamarca,AR-K,annual,2016,gas oil combustion consumption by public passenger transport,222.3186,TJ,N2O,3.9,kg/TJ,867.04254,kg +56ec0bcf-9f32-33f1-9e86-2b7dd143fc9c,SESCO,II.1.1,Chaco,AR-H,annual,2016,gas oil combustion consumption by public passenger transport,551.69688,TJ,CO2,74100.0,kg/TJ,40880738.808,kg +197d157c-0210-3373-8b95-2910db17b1bb,SESCO,II.1.1,Chaco,AR-H,annual,2016,gas oil combustion consumption by public passenger transport,551.69688,TJ,CH4,3.9,kg/TJ,2151.617832,kg +197d157c-0210-3373-8b95-2910db17b1bb,SESCO,II.1.1,Chaco,AR-H,annual,2016,gas oil combustion consumption by public passenger transport,551.69688,TJ,N2O,3.9,kg/TJ,2151.617832,kg +b24f5e01-c0a0-3a24-8c3e-5fe9ba89138e,SESCO,II.1.1,Chubut,AR-U,annual,2016,gas oil combustion consumption by public passenger transport,182.98391999999998,TJ,CO2,74100.0,kg/TJ,13559108.472,kg +0b3c1688-a995-3613-b761-abb213f20f7e,SESCO,II.1.1,Chubut,AR-U,annual,2016,gas oil combustion consumption by public passenger transport,182.98391999999998,TJ,CH4,3.9,kg/TJ,713.6372879999999,kg +0b3c1688-a995-3613-b761-abb213f20f7e,SESCO,II.1.1,Chubut,AR-U,annual,2016,gas oil combustion consumption by public passenger transport,182.98391999999998,TJ,N2O,3.9,kg/TJ,713.6372879999999,kg +e60483d5-b2ab-3d97-9e14-c2da4bc306f9,SESCO,II.1.1,Corrientes,AR-W,annual,2016,gas oil combustion consumption by public passenger transport,535.33452,TJ,CO2,74100.0,kg/TJ,39668287.932,kg +0e0ce8e7-1384-3c91-b039-8e035f396e3b,SESCO,II.1.1,Corrientes,AR-W,annual,2016,gas oil combustion consumption by public passenger transport,535.33452,TJ,CH4,3.9,kg/TJ,2087.804628,kg +0e0ce8e7-1384-3c91-b039-8e035f396e3b,SESCO,II.1.1,Corrientes,AR-W,annual,2016,gas oil combustion consumption by public passenger transport,535.33452,TJ,N2O,3.9,kg/TJ,2087.804628,kg +4a1ff20c-36c1-3d82-9f06-ec569e8eeadd,SESCO,II.1.1,Córdoba,AR-X,annual,2016,gas oil combustion consumption by public passenger transport,1843.2036,TJ,CO2,74100.0,kg/TJ,136581386.76,kg +d6a47217-c473-3f75-bf42-3d7075f0c376,SESCO,II.1.1,Córdoba,AR-X,annual,2016,gas oil combustion consumption by public passenger transport,1843.2036,TJ,CH4,3.9,kg/TJ,7188.49404,kg +d6a47217-c473-3f75-bf42-3d7075f0c376,SESCO,II.1.1,Córdoba,AR-X,annual,2016,gas oil combustion consumption by public passenger transport,1843.2036,TJ,N2O,3.9,kg/TJ,7188.49404,kg +17ce69b3-4faa-3365-a953-f9af4eaa27ae,SESCO,II.1.1,Entre Rios,AR-E,annual,2016,gas oil combustion consumption by public passenger transport,513.66252,TJ,CO2,74100.0,kg/TJ,38062392.732,kg +d7566903-66cf-34e1-aa3c-48fe45d36e34,SESCO,II.1.1,Entre Rios,AR-E,annual,2016,gas oil combustion consumption by public passenger transport,513.66252,TJ,CH4,3.9,kg/TJ,2003.2838279999999,kg +d7566903-66cf-34e1-aa3c-48fe45d36e34,SESCO,II.1.1,Entre Rios,AR-E,annual,2016,gas oil combustion consumption by public passenger transport,513.66252,TJ,N2O,3.9,kg/TJ,2003.2838279999999,kg +a982866e-61c1-3675-9072-724a2622c571,SESCO,II.1.1,Formosa,AR-P,annual,2016,gas oil combustion consumption by public passenger transport,75.02123999999999,TJ,CO2,74100.0,kg/TJ,5559073.884,kg +88f6a37c-244f-35b4-b284-e43103a42595,SESCO,II.1.1,Formosa,AR-P,annual,2016,gas oil combustion consumption by public passenger transport,75.02123999999999,TJ,CH4,3.9,kg/TJ,292.582836,kg +88f6a37c-244f-35b4-b284-e43103a42595,SESCO,II.1.1,Formosa,AR-P,annual,2016,gas oil combustion consumption by public passenger transport,75.02123999999999,TJ,N2O,3.9,kg/TJ,292.582836,kg +9eddc1d1-8862-35ff-b7e5-a4f1afb07cda,SESCO,II.1.1,Jujuy,AR-Y,annual,2016,gas oil combustion consumption by public passenger transport,684.6546,TJ,CO2,74100.0,kg/TJ,50732905.86,kg +1b30c1e5-53b5-3be5-9efe-6653b267e2dd,SESCO,II.1.1,Jujuy,AR-Y,annual,2016,gas oil combustion consumption by public passenger transport,684.6546,TJ,CH4,3.9,kg/TJ,2670.15294,kg +1b30c1e5-53b5-3be5-9efe-6653b267e2dd,SESCO,II.1.1,Jujuy,AR-Y,annual,2016,gas oil combustion consumption by public passenger transport,684.6546,TJ,N2O,3.9,kg/TJ,2670.15294,kg +ed211ce8-8431-3b3f-bfe8-4a434491c212,SESCO,II.1.1,La Pampa,AR-L,annual,2016,gas oil combustion consumption by public passenger transport,49.77336,TJ,CO2,74100.0,kg/TJ,3688205.976,kg +37732118-f581-3830-9900-91bfbf06e0fe,SESCO,II.1.1,La Pampa,AR-L,annual,2016,gas oil combustion consumption by public passenger transport,49.77336,TJ,CH4,3.9,kg/TJ,194.11610399999998,kg +37732118-f581-3830-9900-91bfbf06e0fe,SESCO,II.1.1,La Pampa,AR-L,annual,2016,gas oil combustion consumption by public passenger transport,49.77336,TJ,N2O,3.9,kg/TJ,194.11610399999998,kg +e791a827-8759-3bdf-a6cf-770abda85917,SESCO,II.1.1,La Rioja,AR-F,annual,2016,gas oil combustion consumption by public passenger transport,140.25396,TJ,CO2,74100.0,kg/TJ,10392818.436,kg +8a51e3b3-7986-3a20-9919-b1750d424b0b,SESCO,II.1.1,La Rioja,AR-F,annual,2016,gas oil combustion consumption by public passenger transport,140.25396,TJ,CH4,3.9,kg/TJ,546.990444,kg +8a51e3b3-7986-3a20-9919-b1750d424b0b,SESCO,II.1.1,La Rioja,AR-F,annual,2016,gas oil combustion consumption by public passenger transport,140.25396,TJ,N2O,3.9,kg/TJ,546.990444,kg +4d43614e-e900-3f3c-bcf6-54e088f6c0b2,SESCO,II.1.1,Mendoza,AR-M,annual,2016,gas oil combustion consumption by public passenger transport,1921.15056,TJ,CO2,74100.0,kg/TJ,142357256.496,kg +f755d9c8-d753-3bbe-96d3-cdbecf146d26,SESCO,II.1.1,Mendoza,AR-M,annual,2016,gas oil combustion consumption by public passenger transport,1921.15056,TJ,CH4,3.9,kg/TJ,7492.487184,kg +f755d9c8-d753-3bbe-96d3-cdbecf146d26,SESCO,II.1.1,Mendoza,AR-M,annual,2016,gas oil combustion consumption by public passenger transport,1921.15056,TJ,N2O,3.9,kg/TJ,7492.487184,kg +7876d9ef-2331-39af-9a33-460b6f1e20a1,SESCO,II.1.1,Misiones,AR-N,annual,2016,gas oil combustion consumption by public passenger transport,1264.63344,TJ,CO2,74100.0,kg/TJ,93709337.904,kg +57276603-5f4e-347b-a44e-e204b2d615b3,SESCO,II.1.1,Misiones,AR-N,annual,2016,gas oil combustion consumption by public passenger transport,1264.63344,TJ,CH4,3.9,kg/TJ,4932.0704160000005,kg +57276603-5f4e-347b-a44e-e204b2d615b3,SESCO,II.1.1,Misiones,AR-N,annual,2016,gas oil combustion consumption by public passenger transport,1264.63344,TJ,N2O,3.9,kg/TJ,4932.0704160000005,kg +a013b5ea-cbbf-3c3a-84e8-68d9adfe5bd1,SESCO,II.1.1,Neuquén,AR-Q,annual,2016,gas oil combustion consumption by public passenger transport,307.99523999999997,TJ,CO2,74100.0,kg/TJ,22822447.283999998,kg +5bedc6a3-78ca-3260-87fa-382a026fb803,SESCO,II.1.1,Neuquén,AR-Q,annual,2016,gas oil combustion consumption by public passenger transport,307.99523999999997,TJ,CH4,3.9,kg/TJ,1201.1814359999998,kg +5bedc6a3-78ca-3260-87fa-382a026fb803,SESCO,II.1.1,Neuquén,AR-Q,annual,2016,gas oil combustion consumption by public passenger transport,307.99523999999997,TJ,N2O,3.9,kg/TJ,1201.1814359999998,kg +4d8bcfea-ded7-3544-a7bf-a319d3b8087b,SESCO,II.1.1,Rio Negro,AR-R,annual,2016,gas oil combustion consumption by public passenger transport,534.68436,TJ,CO2,74100.0,kg/TJ,39620111.076,kg +93b287b9-3227-3c85-97c9-492609dd867d,SESCO,II.1.1,Rio Negro,AR-R,annual,2016,gas oil combustion consumption by public passenger transport,534.68436,TJ,CH4,3.9,kg/TJ,2085.2690039999998,kg +93b287b9-3227-3c85-97c9-492609dd867d,SESCO,II.1.1,Rio Negro,AR-R,annual,2016,gas oil combustion consumption by public passenger transport,534.68436,TJ,N2O,3.9,kg/TJ,2085.2690039999998,kg +085515ab-3423-3ec7-8975-5334d3f8c6dc,SESCO,II.1.1,Salta,AR-A,annual,2016,gas oil combustion consumption by public passenger transport,899.85756,TJ,CO2,74100.0,kg/TJ,66679445.196,kg +a272407c-b244-311f-998f-7e10126d5790,SESCO,II.1.1,Salta,AR-A,annual,2016,gas oil combustion consumption by public passenger transport,899.85756,TJ,CH4,3.9,kg/TJ,3509.444484,kg +a272407c-b244-311f-998f-7e10126d5790,SESCO,II.1.1,Salta,AR-A,annual,2016,gas oil combustion consumption by public passenger transport,899.85756,TJ,N2O,3.9,kg/TJ,3509.444484,kg +cde4f3d2-de10-3eee-8987-02efa0e6bc97,SESCO,II.1.1,San Juan,AR-J,annual,2016,gas oil combustion consumption by public passenger transport,524.17344,TJ,CO2,74100.0,kg/TJ,38841251.904,kg +4e367c2a-677e-37a0-b82b-20d79188c463,SESCO,II.1.1,San Juan,AR-J,annual,2016,gas oil combustion consumption by public passenger transport,524.17344,TJ,CH4,3.9,kg/TJ,2044.2764160000002,kg +4e367c2a-677e-37a0-b82b-20d79188c463,SESCO,II.1.1,San Juan,AR-J,annual,2016,gas oil combustion consumption by public passenger transport,524.17344,TJ,N2O,3.9,kg/TJ,2044.2764160000002,kg +a9ce02ff-e5c6-3975-aeb7-634e42a92798,SESCO,II.1.1,San Luis,AR-D,annual,2016,gas oil combustion consumption by public passenger transport,163.76808,TJ,CO2,74100.0,kg/TJ,12135214.728,kg +0f950783-a81a-3272-b8c2-3451bf707f68,SESCO,II.1.1,San Luis,AR-D,annual,2016,gas oil combustion consumption by public passenger transport,163.76808,TJ,CH4,3.9,kg/TJ,638.695512,kg +0f950783-a81a-3272-b8c2-3451bf707f68,SESCO,II.1.1,San Luis,AR-D,annual,2016,gas oil combustion consumption by public passenger transport,163.76808,TJ,N2O,3.9,kg/TJ,638.695512,kg +c60ec7fd-18ad-30e2-b15f-e8951f7ec936,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2016,gas oil combustion consumption by public passenger transport,27.88464,TJ,CO2,74100.0,kg/TJ,2066251.824,kg +947c56ec-d87a-3b9f-8c0b-2c99f234d1f4,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2016,gas oil combustion consumption by public passenger transport,27.88464,TJ,CH4,3.9,kg/TJ,108.750096,kg +947c56ec-d87a-3b9f-8c0b-2c99f234d1f4,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2016,gas oil combustion consumption by public passenger transport,27.88464,TJ,N2O,3.9,kg/TJ,108.750096,kg +bf388fc4-db05-3753-9161-8fda710176f6,SESCO,II.1.1,Santa Fe,AR-S,annual,2016,gas oil combustion consumption by public passenger transport,1971.71856,TJ,CO2,74100.0,kg/TJ,146104345.296,kg +a5cfbfb1-65cb-3b48-ad8c-8d3efc347bcf,SESCO,II.1.1,Santa Fe,AR-S,annual,2016,gas oil combustion consumption by public passenger transport,1971.71856,TJ,CH4,3.9,kg/TJ,7689.702384,kg +a5cfbfb1-65cb-3b48-ad8c-8d3efc347bcf,SESCO,II.1.1,Santa Fe,AR-S,annual,2016,gas oil combustion consumption by public passenger transport,1971.71856,TJ,N2O,3.9,kg/TJ,7689.702384,kg +586d567f-630f-33f8-b460-8872a3bdf51c,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2016,gas oil combustion consumption by public passenger transport,270.61104,TJ,CO2,74100.0,kg/TJ,20052278.064,kg +737be1cc-2014-322b-84f7-b74c34f76d37,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2016,gas oil combustion consumption by public passenger transport,270.61104,TJ,CH4,3.9,kg/TJ,1055.383056,kg +737be1cc-2014-322b-84f7-b74c34f76d37,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2016,gas oil combustion consumption by public passenger transport,270.61104,TJ,N2O,3.9,kg/TJ,1055.383056,kg +bf7040dc-4ea2-3602-9c2b-1ae2ae454ee4,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2016,gas oil combustion consumption by public passenger transport,18.92688,TJ,CO2,74100.0,kg/TJ,1402481.808,kg +47ce67ac-2e24-3a5f-baac-e9d6a51c8766,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2016,gas oil combustion consumption by public passenger transport,18.92688,TJ,CH4,3.9,kg/TJ,73.814832,kg +47ce67ac-2e24-3a5f-baac-e9d6a51c8766,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2016,gas oil combustion consumption by public passenger transport,18.92688,TJ,N2O,3.9,kg/TJ,73.814832,kg +403bbbd7-c667-3c18-bec3-230489ed9f1f,SESCO,II.1.1,Tucuman,AR-T,annual,2016,gas oil combustion consumption by public passenger transport,1305.1961999999999,TJ,CO2,74100.0,kg/TJ,96715038.41999999,kg +d2a4e265-0b7c-39fc-999e-58f8643a4726,SESCO,II.1.1,Tucuman,AR-T,annual,2016,gas oil combustion consumption by public passenger transport,1305.1961999999999,TJ,CH4,3.9,kg/TJ,5090.265179999999,kg +d2a4e265-0b7c-39fc-999e-58f8643a4726,SESCO,II.1.1,Tucuman,AR-T,annual,2016,gas oil combustion consumption by public passenger transport,1305.1961999999999,TJ,N2O,3.9,kg/TJ,5090.265179999999,kg +b457b6b0-3c03-3171-a513-07a7faad4680,SESCO,II.1.1,Buenos Aires,AR-B,annual,2016,gas oil combustion consumption by public passenger transport,197.2152,TJ,CO2,74100.0,kg/TJ,14613646.32,kg +db15f1c6-262b-3db9-859d-732af34a21fd,SESCO,II.1.1,Buenos Aires,AR-B,annual,2016,gas oil combustion consumption by public passenger transport,197.2152,TJ,CH4,3.9,kg/TJ,769.13928,kg +db15f1c6-262b-3db9-859d-732af34a21fd,SESCO,II.1.1,Buenos Aires,AR-B,annual,2016,gas oil combustion consumption by public passenger transport,197.2152,TJ,N2O,3.9,kg/TJ,769.13928,kg +e54de786-4eb9-33ed-9225-528960a05cbf,SESCO,II.1.1,Capital Federal,AR-C,annual,2016,gas oil combustion consumption by public passenger transport,16.21788,TJ,CO2,74100.0,kg/TJ,1201744.908,kg +559b1da0-6f89-3985-9eb0-c01b4f2543dc,SESCO,II.1.1,Capital Federal,AR-C,annual,2016,gas oil combustion consumption by public passenger transport,16.21788,TJ,CH4,3.9,kg/TJ,63.249732,kg +559b1da0-6f89-3985-9eb0-c01b4f2543dc,SESCO,II.1.1,Capital Federal,AR-C,annual,2016,gas oil combustion consumption by public passenger transport,16.21788,TJ,N2O,3.9,kg/TJ,63.249732,kg +a9e3decb-cb9c-300b-b56a-490ad92cd049,SESCO,II.1.1,Catamarca,AR-K,annual,2016,gas oil combustion consumption by public passenger transport,1.51704,TJ,CO2,74100.0,kg/TJ,112412.66399999999,kg +6f889af1-64ac-3e53-a823-8754ca5473a7,SESCO,II.1.1,Catamarca,AR-K,annual,2016,gas oil combustion consumption by public passenger transport,1.51704,TJ,CH4,3.9,kg/TJ,5.916455999999999,kg +6f889af1-64ac-3e53-a823-8754ca5473a7,SESCO,II.1.1,Catamarca,AR-K,annual,2016,gas oil combustion consumption by public passenger transport,1.51704,TJ,N2O,3.9,kg/TJ,5.916455999999999,kg +77852307-07b7-3fc6-9e4a-0cb36d2d8d53,SESCO,II.1.1,Chaco,AR-H,annual,2016,gas oil combustion consumption by public passenger transport,0.36119999999999997,TJ,CO2,74100.0,kg/TJ,26764.92,kg +482dc135-d506-38b7-8495-85d6110528e9,SESCO,II.1.1,Chaco,AR-H,annual,2016,gas oil combustion consumption by public passenger transport,0.36119999999999997,TJ,CH4,3.9,kg/TJ,1.40868,kg +482dc135-d506-38b7-8495-85d6110528e9,SESCO,II.1.1,Chaco,AR-H,annual,2016,gas oil combustion consumption by public passenger transport,0.36119999999999997,TJ,N2O,3.9,kg/TJ,1.40868,kg +a8d6f83e-d1aa-3454-b597-bbcdd4bc8d34,SESCO,II.1.1,Chubut,AR-U,annual,2016,gas oil combustion consumption by public passenger transport,17.08476,TJ,CO2,74100.0,kg/TJ,1265980.716,kg +09bda723-5956-3bfd-bd46-226eaecaf7ab,SESCO,II.1.1,Chubut,AR-U,annual,2016,gas oil combustion consumption by public passenger transport,17.08476,TJ,CH4,3.9,kg/TJ,66.63056399999999,kg +09bda723-5956-3bfd-bd46-226eaecaf7ab,SESCO,II.1.1,Chubut,AR-U,annual,2016,gas oil combustion consumption by public passenger transport,17.08476,TJ,N2O,3.9,kg/TJ,66.63056399999999,kg +6e5b1f51-5de0-3ecb-a3cd-0a1208ba0ddb,SESCO,II.1.1,Corrientes,AR-W,annual,2016,gas oil combustion consumption by public passenger transport,0.61404,TJ,CO2,74100.0,kg/TJ,45500.364,kg +c0c456b5-28be-371b-ad1c-68d211427519,SESCO,II.1.1,Corrientes,AR-W,annual,2016,gas oil combustion consumption by public passenger transport,0.61404,TJ,CH4,3.9,kg/TJ,2.394756,kg +c0c456b5-28be-371b-ad1c-68d211427519,SESCO,II.1.1,Corrientes,AR-W,annual,2016,gas oil combustion consumption by public passenger transport,0.61404,TJ,N2O,3.9,kg/TJ,2.394756,kg +482321cf-4511-3080-a7a7-fdb7f694380e,SESCO,II.1.1,Córdoba,AR-X,annual,2016,gas oil combustion consumption by public passenger transport,18.348959999999998,TJ,CO2,74100.0,kg/TJ,1359657.9359999998,kg +d9f000ca-531f-3348-9de4-4a14f29b2cdb,SESCO,II.1.1,Córdoba,AR-X,annual,2016,gas oil combustion consumption by public passenger transport,18.348959999999998,TJ,CH4,3.9,kg/TJ,71.56094399999999,kg +d9f000ca-531f-3348-9de4-4a14f29b2cdb,SESCO,II.1.1,Córdoba,AR-X,annual,2016,gas oil combustion consumption by public passenger transport,18.348959999999998,TJ,N2O,3.9,kg/TJ,71.56094399999999,kg +69a4cfd6-c1a7-3438-a912-7c72e1dc1240,SESCO,II.1.1,Entre Rios,AR-E,annual,2016,gas oil combustion consumption by public passenger transport,0.10836,TJ,CO2,74100.0,kg/TJ,8029.476,kg +9b56ed13-146c-35b6-9929-9cc7f814afd9,SESCO,II.1.1,Entre Rios,AR-E,annual,2016,gas oil combustion consumption by public passenger transport,0.10836,TJ,CH4,3.9,kg/TJ,0.422604,kg +9b56ed13-146c-35b6-9929-9cc7f814afd9,SESCO,II.1.1,Entre Rios,AR-E,annual,2016,gas oil combustion consumption by public passenger transport,0.10836,TJ,N2O,3.9,kg/TJ,0.422604,kg +0f9fc0a2-18fb-3576-a802-5a2d657ce0e3,SESCO,II.1.1,La Rioja,AR-F,annual,2016,gas oil combustion consumption by public passenger transport,0.14448,TJ,CO2,74100.0,kg/TJ,10705.967999999999,kg +2624729b-8f4c-3a70-b11b-f9b1e0be4e4f,SESCO,II.1.1,La Rioja,AR-F,annual,2016,gas oil combustion consumption by public passenger transport,0.14448,TJ,CH4,3.9,kg/TJ,0.563472,kg +2624729b-8f4c-3a70-b11b-f9b1e0be4e4f,SESCO,II.1.1,La Rioja,AR-F,annual,2016,gas oil combustion consumption by public passenger transport,0.14448,TJ,N2O,3.9,kg/TJ,0.563472,kg +b668b0d4-c35e-32b3-9971-bba6ef55f405,SESCO,II.1.1,Mendoza,AR-M,annual,2016,gas oil combustion consumption by public passenger transport,4.08156,TJ,CO2,74100.0,kg/TJ,302443.59599999996,kg +d5eea2f1-9abb-3583-a973-a73cad085546,SESCO,II.1.1,Mendoza,AR-M,annual,2016,gas oil combustion consumption by public passenger transport,4.08156,TJ,CH4,3.9,kg/TJ,15.918083999999999,kg +d5eea2f1-9abb-3583-a973-a73cad085546,SESCO,II.1.1,Mendoza,AR-M,annual,2016,gas oil combustion consumption by public passenger transport,4.08156,TJ,N2O,3.9,kg/TJ,15.918083999999999,kg +bc006969-7453-3b57-8994-5ec1a6c75bc0,SESCO,II.1.1,Misiones,AR-N,annual,2016,gas oil combustion consumption by public passenger transport,6.8989199999999995,TJ,CO2,74100.0,kg/TJ,511209.97199999995,kg +4ac1e0b4-d845-392d-88f5-05fa2929b837,SESCO,II.1.1,Misiones,AR-N,annual,2016,gas oil combustion consumption by public passenger transport,6.8989199999999995,TJ,CH4,3.9,kg/TJ,26.905787999999998,kg +4ac1e0b4-d845-392d-88f5-05fa2929b837,SESCO,II.1.1,Misiones,AR-N,annual,2016,gas oil combustion consumption by public passenger transport,6.8989199999999995,TJ,N2O,3.9,kg/TJ,26.905787999999998,kg +718af895-5852-3f80-979b-9c482e49f1c3,SESCO,II.1.1,Neuquén,AR-Q,annual,2016,gas oil combustion consumption by public passenger transport,0.14448,TJ,CO2,74100.0,kg/TJ,10705.967999999999,kg +b599201c-898f-31ef-abbb-9945a9e87931,SESCO,II.1.1,Neuquén,AR-Q,annual,2016,gas oil combustion consumption by public passenger transport,0.14448,TJ,CH4,3.9,kg/TJ,0.563472,kg +b599201c-898f-31ef-abbb-9945a9e87931,SESCO,II.1.1,Neuquén,AR-Q,annual,2016,gas oil combustion consumption by public passenger transport,0.14448,TJ,N2O,3.9,kg/TJ,0.563472,kg +9696cbf7-6df9-35f5-aa11-ff9d530c0089,SESCO,II.1.1,Rio Negro,AR-R,annual,2016,gas oil combustion consumption by public passenger transport,16.65132,TJ,CO2,74100.0,kg/TJ,1233862.812,kg +28d2a7a5-ffa9-36c2-8927-7ea7053667ac,SESCO,II.1.1,Rio Negro,AR-R,annual,2016,gas oil combustion consumption by public passenger transport,16.65132,TJ,CH4,3.9,kg/TJ,64.940148,kg +28d2a7a5-ffa9-36c2-8927-7ea7053667ac,SESCO,II.1.1,Rio Negro,AR-R,annual,2016,gas oil combustion consumption by public passenger transport,16.65132,TJ,N2O,3.9,kg/TJ,64.940148,kg +4ed62cf0-8b52-3b40-9ce2-7b1221c0c74a,SESCO,II.1.1,Salta,AR-A,annual,2016,gas oil combustion consumption by public passenger transport,3.7925999999999997,TJ,CO2,74100.0,kg/TJ,281031.66,kg +44a1d30d-03b7-344b-abda-c4aede2054ab,SESCO,II.1.1,Salta,AR-A,annual,2016,gas oil combustion consumption by public passenger transport,3.7925999999999997,TJ,CH4,3.9,kg/TJ,14.791139999999999,kg +44a1d30d-03b7-344b-abda-c4aede2054ab,SESCO,II.1.1,Salta,AR-A,annual,2016,gas oil combustion consumption by public passenger transport,3.7925999999999997,TJ,N2O,3.9,kg/TJ,14.791139999999999,kg +32d0040d-8e11-3f92-848b-6a2caf524937,SESCO,II.1.1,San Juan,AR-J,annual,2016,gas oil combustion consumption by public passenger transport,14.484119999999999,TJ,CO2,74100.0,kg/TJ,1073273.292,kg +0847cdec-852a-325a-8ee2-f7c9710125c7,SESCO,II.1.1,San Juan,AR-J,annual,2016,gas oil combustion consumption by public passenger transport,14.484119999999999,TJ,CH4,3.9,kg/TJ,56.48806799999999,kg +0847cdec-852a-325a-8ee2-f7c9710125c7,SESCO,II.1.1,San Juan,AR-J,annual,2016,gas oil combustion consumption by public passenger transport,14.484119999999999,TJ,N2O,3.9,kg/TJ,56.48806799999999,kg +bee6046d-4f8b-36ba-9658-3195e0c202e9,SESCO,II.1.1,Santa Fe,AR-S,annual,2016,gas oil combustion consumption by public passenger transport,6.42936,TJ,CO2,74100.0,kg/TJ,476415.576,kg +c6a3a802-d7da-3c72-b3b3-42f2a1e3352f,SESCO,II.1.1,Santa Fe,AR-S,annual,2016,gas oil combustion consumption by public passenger transport,6.42936,TJ,CH4,3.9,kg/TJ,25.074504,kg +c6a3a802-d7da-3c72-b3b3-42f2a1e3352f,SESCO,II.1.1,Santa Fe,AR-S,annual,2016,gas oil combustion consumption by public passenger transport,6.42936,TJ,N2O,3.9,kg/TJ,25.074504,kg +ca406244-8172-39b0-99af-a624f00b1e70,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2016,gas oil combustion consumption by public passenger transport,0.79464,TJ,CO2,74100.0,kg/TJ,58882.824,kg +28e25b1d-b28d-3f63-8222-25e81195204f,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2016,gas oil combustion consumption by public passenger transport,0.79464,TJ,CH4,3.9,kg/TJ,3.099096,kg +28e25b1d-b28d-3f63-8222-25e81195204f,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2016,gas oil combustion consumption by public passenger transport,0.79464,TJ,N2O,3.9,kg/TJ,3.099096,kg +878a045f-d90e-3777-9ed1-745dc711c633,SESCO,II.1.1,Tucuman,AR-T,annual,2016,gas oil combustion consumption by public passenger transport,4.5872399999999995,TJ,CO2,74100.0,kg/TJ,339914.48399999994,kg +9cb4464a-3207-39d1-8d94-012b3b88d4e0,SESCO,II.1.1,Tucuman,AR-T,annual,2016,gas oil combustion consumption by public passenger transport,4.5872399999999995,TJ,CH4,3.9,kg/TJ,17.890235999999998,kg +9cb4464a-3207-39d1-8d94-012b3b88d4e0,SESCO,II.1.1,Tucuman,AR-T,annual,2016,gas oil combustion consumption by public passenger transport,4.5872399999999995,TJ,N2O,3.9,kg/TJ,17.890235999999998,kg +c3f5259f-d4b1-3fa7-a8e0-050e7acde9c6,SESCO,II.1.1,Capital Federal,AR-C,annual,2017,gas oil combustion consumption by to the public,45.3306,TJ,CO2,74100.0,kg/TJ,3358997.46,kg +fe532bf6-439f-3526-9509-e78e90a72655,SESCO,II.1.1,Capital Federal,AR-C,annual,2017,gas oil combustion consumption by to the public,45.3306,TJ,CH4,3.9,kg/TJ,176.78933999999998,kg +fe532bf6-439f-3526-9509-e78e90a72655,SESCO,II.1.1,Capital Federal,AR-C,annual,2017,gas oil combustion consumption by to the public,45.3306,TJ,N2O,3.9,kg/TJ,176.78933999999998,kg +14fbfc32-e4ec-3ede-a47e-ca9d80346480,SESCO,II.5.1,Buenos Aires,AR-B,annual,2017,gas oil combustion consumption by agriculture machines,159.00024,TJ,CO2,74100.0,kg/TJ,11781917.784,kg +790c3e61-105f-39af-bdc5-641d19d22889,SESCO,II.5.1,Buenos Aires,AR-B,annual,2017,gas oil combustion consumption by agriculture machines,159.00024,TJ,CH4,3.9,kg/TJ,620.1009359999999,kg +790c3e61-105f-39af-bdc5-641d19d22889,SESCO,II.5.1,Buenos Aires,AR-B,annual,2017,gas oil combustion consumption by agriculture machines,159.00024,TJ,N2O,3.9,kg/TJ,620.1009359999999,kg +2a7b22a8-3d37-393a-b2ac-37747e71ba46,SESCO,II.5.1,Chaco,AR-H,annual,2017,gas oil combustion consumption by agriculture machines,4.29828,TJ,CO2,74100.0,kg/TJ,318502.548,kg +5b1df199-ee37-3a5e-a872-3a30b55b303c,SESCO,II.5.1,Chaco,AR-H,annual,2017,gas oil combustion consumption by agriculture machines,4.29828,TJ,CH4,3.9,kg/TJ,16.763292,kg +5b1df199-ee37-3a5e-a872-3a30b55b303c,SESCO,II.5.1,Chaco,AR-H,annual,2017,gas oil combustion consumption by agriculture machines,4.29828,TJ,N2O,3.9,kg/TJ,16.763292,kg +7f54f3eb-c1db-3616-bc84-8ad9e6f1a374,SESCO,II.5.1,Corrientes,AR-W,annual,2017,gas oil combustion consumption by agriculture machines,1.30032,TJ,CO2,74100.0,kg/TJ,96353.712,kg +83fe8447-74c4-3e68-bbcf-8572f3b06c17,SESCO,II.5.1,Corrientes,AR-W,annual,2017,gas oil combustion consumption by agriculture machines,1.30032,TJ,CH4,3.9,kg/TJ,5.071248,kg +83fe8447-74c4-3e68-bbcf-8572f3b06c17,SESCO,II.5.1,Corrientes,AR-W,annual,2017,gas oil combustion consumption by agriculture machines,1.30032,TJ,N2O,3.9,kg/TJ,5.071248,kg +3b021822-bf2f-381f-8fd5-ef33c0953b57,SESCO,II.5.1,Córdoba,AR-X,annual,2017,gas oil combustion consumption by agriculture machines,163.19016,TJ,CO2,74100.0,kg/TJ,12092390.855999999,kg +5725368e-9201-3af8-af41-d7120481bfa5,SESCO,II.5.1,Córdoba,AR-X,annual,2017,gas oil combustion consumption by agriculture machines,163.19016,TJ,CH4,3.9,kg/TJ,636.4416239999999,kg +5725368e-9201-3af8-af41-d7120481bfa5,SESCO,II.5.1,Córdoba,AR-X,annual,2017,gas oil combustion consumption by agriculture machines,163.19016,TJ,N2O,3.9,kg/TJ,636.4416239999999,kg +5acc04ee-2ad5-348d-a2c4-1eb28e9db549,SESCO,II.5.1,Santa Fe,AR-S,annual,2017,gas oil combustion consumption by agriculture machines,355.85424,TJ,CO2,74100.0,kg/TJ,26368799.184,kg +95a6abb5-c78b-32ba-9be0-df66107e5043,SESCO,II.5.1,Santa Fe,AR-S,annual,2017,gas oil combustion consumption by agriculture machines,355.85424,TJ,CH4,3.9,kg/TJ,1387.831536,kg +95a6abb5-c78b-32ba-9be0-df66107e5043,SESCO,II.5.1,Santa Fe,AR-S,annual,2017,gas oil combustion consumption by agriculture machines,355.85424,TJ,N2O,3.9,kg/TJ,1387.831536,kg +37c7d879-e20a-3461-b653-0c39662c1a21,SESCO,II.5.1,Tucuman,AR-T,annual,2017,gas oil combustion consumption by agriculture machines,25.8258,TJ,CO2,74100.0,kg/TJ,1913691.78,kg +653999aa-1206-3e54-9c0c-decb13e7e7be,SESCO,II.5.1,Tucuman,AR-T,annual,2017,gas oil combustion consumption by agriculture machines,25.8258,TJ,CH4,3.9,kg/TJ,100.72062,kg +653999aa-1206-3e54-9c0c-decb13e7e7be,SESCO,II.5.1,Tucuman,AR-T,annual,2017,gas oil combustion consumption by agriculture machines,25.8258,TJ,N2O,3.9,kg/TJ,100.72062,kg +5b1f9e30-da79-3d84-ba85-85ff770a7638,SESCO,II.5.1,Buenos Aires,AR-B,annual,2017,gas oil combustion consumption by agriculture machines,19.866,TJ,CO2,74100.0,kg/TJ,1472070.5999999999,kg +1d719c61-efbf-3575-8ab9-717e2f2250b5,SESCO,II.5.1,Buenos Aires,AR-B,annual,2017,gas oil combustion consumption by agriculture machines,19.866,TJ,CH4,3.9,kg/TJ,77.4774,kg +1d719c61-efbf-3575-8ab9-717e2f2250b5,SESCO,II.5.1,Buenos Aires,AR-B,annual,2017,gas oil combustion consumption by agriculture machines,19.866,TJ,N2O,3.9,kg/TJ,77.4774,kg +6b62d8de-47f1-38a9-a20d-ce6683388f87,SESCO,II.5.1,Chaco,AR-H,annual,2017,gas oil combustion consumption by agriculture machines,1.2642,TJ,CO2,74100.0,kg/TJ,93677.22,kg +e9bad7bf-5759-3e79-b175-400b10d2a7a9,SESCO,II.5.1,Chaco,AR-H,annual,2017,gas oil combustion consumption by agriculture machines,1.2642,TJ,CH4,3.9,kg/TJ,4.9303799999999995,kg +e9bad7bf-5759-3e79-b175-400b10d2a7a9,SESCO,II.5.1,Chaco,AR-H,annual,2017,gas oil combustion consumption by agriculture machines,1.2642,TJ,N2O,3.9,kg/TJ,4.9303799999999995,kg +dd122313-b5cd-3bf2-909f-ba5dd6c642e7,SESCO,II.5.1,Córdoba,AR-X,annual,2017,gas oil combustion consumption by agriculture machines,10.22196,TJ,CO2,74100.0,kg/TJ,757447.2359999999,kg +b3ce7d44-49dd-30c4-b0df-c076ca363931,SESCO,II.5.1,Córdoba,AR-X,annual,2017,gas oil combustion consumption by agriculture machines,10.22196,TJ,CH4,3.9,kg/TJ,39.865643999999996,kg +b3ce7d44-49dd-30c4-b0df-c076ca363931,SESCO,II.5.1,Córdoba,AR-X,annual,2017,gas oil combustion consumption by agriculture machines,10.22196,TJ,N2O,3.9,kg/TJ,39.865643999999996,kg +bcf52b9a-654a-324e-ace3-5398b52a0071,SESCO,II.5.1,Santa Fe,AR-S,annual,2017,gas oil combustion consumption by agriculture machines,33.230399999999996,TJ,CO2,74100.0,kg/TJ,2462372.6399999997,kg +0b0b219e-26b0-3ef5-8eb7-91c580a47afb,SESCO,II.5.1,Santa Fe,AR-S,annual,2017,gas oil combustion consumption by agriculture machines,33.230399999999996,TJ,CH4,3.9,kg/TJ,129.59856,kg +0b0b219e-26b0-3ef5-8eb7-91c580a47afb,SESCO,II.5.1,Santa Fe,AR-S,annual,2017,gas oil combustion consumption by agriculture machines,33.230399999999996,TJ,N2O,3.9,kg/TJ,129.59856,kg +41dc9f3e-29f2-3d6c-88f1-c3ee9063de3c,SESCO,II.5.1,Tucuman,AR-T,annual,2017,gas oil combustion consumption by agriculture machines,21.23856,TJ,CO2,74100.0,kg/TJ,1573777.296,kg +c88168d6-3bed-3f94-a966-f72985b019f7,SESCO,II.5.1,Tucuman,AR-T,annual,2017,gas oil combustion consumption by agriculture machines,21.23856,TJ,CH4,3.9,kg/TJ,82.830384,kg +c88168d6-3bed-3f94-a966-f72985b019f7,SESCO,II.5.1,Tucuman,AR-T,annual,2017,gas oil combustion consumption by agriculture machines,21.23856,TJ,N2O,3.9,kg/TJ,82.830384,kg +e3c3ccbe-aa55-3ae6-a3bd-17bfb4c9a2dc,SESCO,II.5.1,Córdoba,AR-X,annual,2017,jet kerosene combustion consumption by agriculture machines,0.8806839999999998,TJ,CO2,71500.0,kg/TJ,62968.90599999999,kg +1f8f0335-95f8-3329-92d7-b481a70187f9,SESCO,II.5.1,Córdoba,AR-X,annual,2017,jet kerosene combustion consumption by agriculture machines,0.8806839999999998,TJ,CH4,0.5,kg/TJ,0.4403419999999999,kg +79c82c3e-444e-3d0a-801e-454edf90494a,SESCO,II.5.1,Córdoba,AR-X,annual,2017,jet kerosene combustion consumption by agriculture machines,0.8806839999999998,TJ,N2O,2.0,kg/TJ,1.7613679999999996,kg +3f01edd0-e221-35e2-9676-9dd19f894ab7,SESCO,II.1.1,Buenos Aires,AR-B,annual,2017,gas oil combustion consumption by to the public,8481.62616,TJ,CO2,74100.0,kg/TJ,628488498.456,kg +106bd569-dde0-32c8-806d-54a8009ba003,SESCO,II.1.1,Buenos Aires,AR-B,annual,2017,gas oil combustion consumption by to the public,8481.62616,TJ,CH4,3.9,kg/TJ,33078.342024,kg +106bd569-dde0-32c8-806d-54a8009ba003,SESCO,II.1.1,Buenos Aires,AR-B,annual,2017,gas oil combustion consumption by to the public,8481.62616,TJ,N2O,3.9,kg/TJ,33078.342024,kg +46f96fec-f7f2-3a0c-a8bf-d27e508f80c7,SESCO,II.1.1,Capital Federal,AR-C,annual,2017,gas oil combustion consumption by to the public,971.95308,TJ,CO2,74100.0,kg/TJ,72021723.228,kg +aecdf844-06ea-3f02-866f-7351d52b0c52,SESCO,II.1.1,Capital Federal,AR-C,annual,2017,gas oil combustion consumption by to the public,971.95308,TJ,CH4,3.9,kg/TJ,3790.6170119999997,kg +aecdf844-06ea-3f02-866f-7351d52b0c52,SESCO,II.1.1,Capital Federal,AR-C,annual,2017,gas oil combustion consumption by to the public,971.95308,TJ,N2O,3.9,kg/TJ,3790.6170119999997,kg +08b953e2-7362-31b4-a9d1-c617770021e3,SESCO,II.1.1,Catamarca,AR-K,annual,2017,gas oil combustion consumption by to the public,294.16128,TJ,CO2,74100.0,kg/TJ,21797350.847999997,kg +e30aa8fc-68db-3317-8764-83c78156314c,SESCO,II.1.1,Catamarca,AR-K,annual,2017,gas oil combustion consumption by to the public,294.16128,TJ,CH4,3.9,kg/TJ,1147.2289919999998,kg +e30aa8fc-68db-3317-8764-83c78156314c,SESCO,II.1.1,Catamarca,AR-K,annual,2017,gas oil combustion consumption by to the public,294.16128,TJ,N2O,3.9,kg/TJ,1147.2289919999998,kg +91d278aa-9587-33e6-9844-1e06f82c12c9,SESCO,II.1.1,Chaco,AR-H,annual,2017,gas oil combustion consumption by to the public,319.44527999999997,TJ,CO2,74100.0,kg/TJ,23670895.247999996,kg +a1cf9572-0b61-3683-a2f4-ffa3fd98abe6,SESCO,II.1.1,Chaco,AR-H,annual,2017,gas oil combustion consumption by to the public,319.44527999999997,TJ,CH4,3.9,kg/TJ,1245.8365919999999,kg +a1cf9572-0b61-3683-a2f4-ffa3fd98abe6,SESCO,II.1.1,Chaco,AR-H,annual,2017,gas oil combustion consumption by to the public,319.44527999999997,TJ,N2O,3.9,kg/TJ,1245.8365919999999,kg +1230720e-2a75-3e8c-88c9-8bee04bd94e3,SESCO,II.1.1,Chubut,AR-U,annual,2017,gas oil combustion consumption by to the public,351.44759999999997,TJ,CO2,74100.0,kg/TJ,26042267.159999996,kg +c032a972-caba-349d-afdb-922e74aeeb83,SESCO,II.1.1,Chubut,AR-U,annual,2017,gas oil combustion consumption by to the public,351.44759999999997,TJ,CH4,3.9,kg/TJ,1370.6456399999997,kg +c032a972-caba-349d-afdb-922e74aeeb83,SESCO,II.1.1,Chubut,AR-U,annual,2017,gas oil combustion consumption by to the public,351.44759999999997,TJ,N2O,3.9,kg/TJ,1370.6456399999997,kg +c063458b-8ca8-359a-b3b9-60672367c9c3,SESCO,II.1.1,Corrientes,AR-W,annual,2017,gas oil combustion consumption by to the public,594.0295199999999,TJ,CO2,74100.0,kg/TJ,44017587.432,kg +4920bcdc-7f2e-3f0d-8d3d-c291b7dacb1b,SESCO,II.1.1,Corrientes,AR-W,annual,2017,gas oil combustion consumption by to the public,594.0295199999999,TJ,CH4,3.9,kg/TJ,2316.715128,kg +4920bcdc-7f2e-3f0d-8d3d-c291b7dacb1b,SESCO,II.1.1,Corrientes,AR-W,annual,2017,gas oil combustion consumption by to the public,594.0295199999999,TJ,N2O,3.9,kg/TJ,2316.715128,kg +d2ef0058-e58c-3572-93f6-a039187cf368,SESCO,II.1.1,Córdoba,AR-X,annual,2017,gas oil combustion consumption by to the public,4492.9668,TJ,CO2,74100.0,kg/TJ,332928839.88,kg +0b8744e8-e3e8-3a57-a0cb-5bc8d7a731c1,SESCO,II.1.1,Córdoba,AR-X,annual,2017,gas oil combustion consumption by to the public,4492.9668,TJ,CH4,3.9,kg/TJ,17522.57052,kg +0b8744e8-e3e8-3a57-a0cb-5bc8d7a731c1,SESCO,II.1.1,Córdoba,AR-X,annual,2017,gas oil combustion consumption by to the public,4492.9668,TJ,N2O,3.9,kg/TJ,17522.57052,kg +a4cbb65f-4b0c-3e10-a651-3772ddb5dc57,SESCO,II.1.1,Entre Rios,AR-E,annual,2017,gas oil combustion consumption by to the public,990.7354799999999,TJ,CO2,74100.0,kg/TJ,73413499.06799999,kg +0bf8c3da-e16b-3814-acd6-0252b3905e0e,SESCO,II.1.1,Entre Rios,AR-E,annual,2017,gas oil combustion consumption by to the public,990.7354799999999,TJ,CH4,3.9,kg/TJ,3863.8683719999995,kg +0bf8c3da-e16b-3814-acd6-0252b3905e0e,SESCO,II.1.1,Entre Rios,AR-E,annual,2017,gas oil combustion consumption by to the public,990.7354799999999,TJ,N2O,3.9,kg/TJ,3863.8683719999995,kg +1f0bf332-6225-3ead-b752-64468d12e803,SESCO,II.1.1,Formosa,AR-P,annual,2017,gas oil combustion consumption by to the public,527.06304,TJ,CO2,74100.0,kg/TJ,39055371.264,kg +e688b666-3b61-33c2-9b0c-9487af2a465f,SESCO,II.1.1,Formosa,AR-P,annual,2017,gas oil combustion consumption by to the public,527.06304,TJ,CH4,3.9,kg/TJ,2055.5458559999997,kg +e688b666-3b61-33c2-9b0c-9487af2a465f,SESCO,II.1.1,Formosa,AR-P,annual,2017,gas oil combustion consumption by to the public,527.06304,TJ,N2O,3.9,kg/TJ,2055.5458559999997,kg +66e0b295-3b9a-3e0a-926e-b594ef566ae4,SESCO,II.1.1,Jujuy,AR-Y,annual,2017,gas oil combustion consumption by to the public,118.18464,TJ,CO2,74100.0,kg/TJ,8757481.824000001,kg +87910b5c-e599-3766-996a-361a4cdc9e4a,SESCO,II.1.1,Jujuy,AR-Y,annual,2017,gas oil combustion consumption by to the public,118.18464,TJ,CH4,3.9,kg/TJ,460.920096,kg +87910b5c-e599-3766-996a-361a4cdc9e4a,SESCO,II.1.1,Jujuy,AR-Y,annual,2017,gas oil combustion consumption by to the public,118.18464,TJ,N2O,3.9,kg/TJ,460.920096,kg +2a1c9b6a-c98a-32b1-a607-1e02269c200e,SESCO,II.1.1,La Pampa,AR-L,annual,2017,gas oil combustion consumption by to the public,380.74092,TJ,CO2,74100.0,kg/TJ,28212902.172000002,kg +af31d9b5-2899-359a-8a78-885ff852ccc1,SESCO,II.1.1,La Pampa,AR-L,annual,2017,gas oil combustion consumption by to the public,380.74092,TJ,CH4,3.9,kg/TJ,1484.889588,kg +af31d9b5-2899-359a-8a78-885ff852ccc1,SESCO,II.1.1,La Pampa,AR-L,annual,2017,gas oil combustion consumption by to the public,380.74092,TJ,N2O,3.9,kg/TJ,1484.889588,kg +4142aba3-1fd4-3608-be47-6e08978bb3cc,SESCO,II.1.1,La Rioja,AR-F,annual,2017,gas oil combustion consumption by to the public,53.67432,TJ,CO2,74100.0,kg/TJ,3977267.112,kg +082b5d1c-a8c9-3da0-8d9e-ca1e65e477a3,SESCO,II.1.1,La Rioja,AR-F,annual,2017,gas oil combustion consumption by to the public,53.67432,TJ,CH4,3.9,kg/TJ,209.329848,kg +082b5d1c-a8c9-3da0-8d9e-ca1e65e477a3,SESCO,II.1.1,La Rioja,AR-F,annual,2017,gas oil combustion consumption by to the public,53.67432,TJ,N2O,3.9,kg/TJ,209.329848,kg +078ef524-8c2e-360e-95b4-2cae74b4e038,SESCO,II.1.1,Mendoza,AR-M,annual,2017,gas oil combustion consumption by to the public,453.88392,TJ,CO2,74100.0,kg/TJ,33632798.472,kg +b6b34eba-2b8f-3a8e-bbad-ffaf659d0873,SESCO,II.1.1,Mendoza,AR-M,annual,2017,gas oil combustion consumption by to the public,453.88392,TJ,CH4,3.9,kg/TJ,1770.147288,kg +b6b34eba-2b8f-3a8e-bbad-ffaf659d0873,SESCO,II.1.1,Mendoza,AR-M,annual,2017,gas oil combustion consumption by to the public,453.88392,TJ,N2O,3.9,kg/TJ,1770.147288,kg +da48cf1c-8d8b-3d69-a821-6b3961a7d5bd,SESCO,II.1.1,Misiones,AR-N,annual,2017,gas oil combustion consumption by to the public,577.81164,TJ,CO2,74100.0,kg/TJ,42815842.524000004,kg +b20e07ea-0771-3929-a7c4-035f362f373e,SESCO,II.1.1,Misiones,AR-N,annual,2017,gas oil combustion consumption by to the public,577.81164,TJ,CH4,3.9,kg/TJ,2253.465396,kg +b20e07ea-0771-3929-a7c4-035f362f373e,SESCO,II.1.1,Misiones,AR-N,annual,2017,gas oil combustion consumption by to the public,577.81164,TJ,N2O,3.9,kg/TJ,2253.465396,kg +09b9db71-c9dc-3992-ab22-3719bd7c60da,SESCO,II.1.1,Neuquén,AR-Q,annual,2017,gas oil combustion consumption by to the public,115.25892,TJ,CO2,74100.0,kg/TJ,8540685.972000001,kg +ff67e643-4c9b-3e29-b9e7-ca012bef5843,SESCO,II.1.1,Neuquén,AR-Q,annual,2017,gas oil combustion consumption by to the public,115.25892,TJ,CH4,3.9,kg/TJ,449.509788,kg +ff67e643-4c9b-3e29-b9e7-ca012bef5843,SESCO,II.1.1,Neuquén,AR-Q,annual,2017,gas oil combustion consumption by to the public,115.25892,TJ,N2O,3.9,kg/TJ,449.509788,kg +41c7962d-80ea-332d-a191-868a35fcec19,SESCO,II.1.1,Rio Negro,AR-R,annual,2017,gas oil combustion consumption by to the public,497.1918,TJ,CO2,74100.0,kg/TJ,36841912.38,kg +fe96370d-b270-3b6f-b201-09488fc8bb01,SESCO,II.1.1,Rio Negro,AR-R,annual,2017,gas oil combustion consumption by to the public,497.1918,TJ,CH4,3.9,kg/TJ,1939.04802,kg +fe96370d-b270-3b6f-b201-09488fc8bb01,SESCO,II.1.1,Rio Negro,AR-R,annual,2017,gas oil combustion consumption by to the public,497.1918,TJ,N2O,3.9,kg/TJ,1939.04802,kg +638b4844-a65f-3b9b-ad4a-521f039a4d63,SESCO,II.1.1,Salta,AR-A,annual,2017,gas oil combustion consumption by to the public,49.55664,TJ,CO2,74100.0,kg/TJ,3672147.024,kg +1c544a79-c376-355f-ad0a-0f952a248764,SESCO,II.1.1,Salta,AR-A,annual,2017,gas oil combustion consumption by to the public,49.55664,TJ,CH4,3.9,kg/TJ,193.270896,kg +1c544a79-c376-355f-ad0a-0f952a248764,SESCO,II.1.1,Salta,AR-A,annual,2017,gas oil combustion consumption by to the public,49.55664,TJ,N2O,3.9,kg/TJ,193.270896,kg +2e6eadaf-46f4-3a2a-96e3-0becd5e1b154,SESCO,II.1.1,San Juan,AR-J,annual,2017,gas oil combustion consumption by to the public,255.47675999999998,TJ,CO2,74100.0,kg/TJ,18930827.915999997,kg +be9fe349-8bd3-3726-8137-6cccb322e378,SESCO,II.1.1,San Juan,AR-J,annual,2017,gas oil combustion consumption by to the public,255.47675999999998,TJ,CH4,3.9,kg/TJ,996.3593639999999,kg +be9fe349-8bd3-3726-8137-6cccb322e378,SESCO,II.1.1,San Juan,AR-J,annual,2017,gas oil combustion consumption by to the public,255.47675999999998,TJ,N2O,3.9,kg/TJ,996.3593639999999,kg +8f488663-4bb4-32ce-9b84-5afbb3e3f001,SESCO,II.1.1,San Luis,AR-D,annual,2017,gas oil combustion consumption by to the public,539.56056,TJ,CO2,74100.0,kg/TJ,39981437.496,kg +186ce29a-7cea-3b8c-9b85-85550a990245,SESCO,II.1.1,San Luis,AR-D,annual,2017,gas oil combustion consumption by to the public,539.56056,TJ,CH4,3.9,kg/TJ,2104.286184,kg +186ce29a-7cea-3b8c-9b85-85550a990245,SESCO,II.1.1,San Luis,AR-D,annual,2017,gas oil combustion consumption by to the public,539.56056,TJ,N2O,3.9,kg/TJ,2104.286184,kg +5d8247e5-9c4f-3ff8-b0fd-2f07085bf61e,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2017,gas oil combustion consumption by to the public,74.84064,TJ,CO2,74100.0,kg/TJ,5545691.424,kg +3d63850f-f6d4-3490-82f1-362e876d29f4,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2017,gas oil combustion consumption by to the public,74.84064,TJ,CH4,3.9,kg/TJ,291.878496,kg +3d63850f-f6d4-3490-82f1-362e876d29f4,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2017,gas oil combustion consumption by to the public,74.84064,TJ,N2O,3.9,kg/TJ,291.878496,kg +715c5bf5-e772-31a8-91cc-1ebe098dbaaf,SESCO,II.1.1,Santa Fe,AR-S,annual,2017,gas oil combustion consumption by to the public,2806.524,TJ,CO2,74100.0,kg/TJ,207963428.4,kg +e13947dd-43ff-3cdc-a155-1e3741bb1c98,SESCO,II.1.1,Santa Fe,AR-S,annual,2017,gas oil combustion consumption by to the public,2806.524,TJ,CH4,3.9,kg/TJ,10945.443599999999,kg +e13947dd-43ff-3cdc-a155-1e3741bb1c98,SESCO,II.1.1,Santa Fe,AR-S,annual,2017,gas oil combustion consumption by to the public,2806.524,TJ,N2O,3.9,kg/TJ,10945.443599999999,kg +14ef937a-9243-3a10-bafd-3ca312ede803,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2017,gas oil combustion consumption by to the public,406.13328,TJ,CO2,74100.0,kg/TJ,30094476.048,kg +b03ebfb7-ed5c-3248-a8b4-baf31e8018e4,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2017,gas oil combustion consumption by to the public,406.13328,TJ,CH4,3.9,kg/TJ,1583.919792,kg +b03ebfb7-ed5c-3248-a8b4-baf31e8018e4,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2017,gas oil combustion consumption by to the public,406.13328,TJ,N2O,3.9,kg/TJ,1583.919792,kg +961bb0ad-f4cf-33bd-959c-869699e01dfa,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2017,gas oil combustion consumption by to the public,93.47856,TJ,CO2,74100.0,kg/TJ,6926761.296,kg +1617b127-a215-32ed-87ab-861cd6b81730,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2017,gas oil combustion consumption by to the public,93.47856,TJ,CH4,3.9,kg/TJ,364.56638399999997,kg +1617b127-a215-32ed-87ab-861cd6b81730,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2017,gas oil combustion consumption by to the public,93.47856,TJ,N2O,3.9,kg/TJ,364.56638399999997,kg +c67fa17b-ad42-362e-85b3-afd4df53e9bd,SESCO,II.1.1,Tucuman,AR-T,annual,2017,gas oil combustion consumption by to the public,93.44244,TJ,CO2,74100.0,kg/TJ,6924084.8040000005,kg +d084b9ea-84bd-322c-b904-c3e4d11cf0b3,SESCO,II.1.1,Tucuman,AR-T,annual,2017,gas oil combustion consumption by to the public,93.44244,TJ,CH4,3.9,kg/TJ,364.425516,kg +d084b9ea-84bd-322c-b904-c3e4d11cf0b3,SESCO,II.1.1,Tucuman,AR-T,annual,2017,gas oil combustion consumption by to the public,93.44244,TJ,N2O,3.9,kg/TJ,364.425516,kg +c6637627-59aa-3313-877b-05f27bf77605,SESCO,II.1.1,Buenos Aires,AR-B,annual,2017,gas oil combustion consumption by to the public,3434.86752,TJ,CO2,74100.0,kg/TJ,254523683.232,kg +1f43ba0b-a651-35af-b91a-1630cf8eb6fa,SESCO,II.1.1,Buenos Aires,AR-B,annual,2017,gas oil combustion consumption by to the public,3434.86752,TJ,CH4,3.9,kg/TJ,13395.983327999998,kg +1f43ba0b-a651-35af-b91a-1630cf8eb6fa,SESCO,II.1.1,Buenos Aires,AR-B,annual,2017,gas oil combustion consumption by to the public,3434.86752,TJ,N2O,3.9,kg/TJ,13395.983327999998,kg +c1058581-5274-3004-bee9-1f26f4061696,SESCO,II.1.1,Capital Federal,AR-C,annual,2017,gas oil combustion consumption by to the public,636.94008,TJ,CO2,74100.0,kg/TJ,47197259.927999996,kg +ca779a3e-32a9-3f1b-885a-ad615bbe3b61,SESCO,II.1.1,Capital Federal,AR-C,annual,2017,gas oil combustion consumption by to the public,636.94008,TJ,CH4,3.9,kg/TJ,2484.066312,kg +ca779a3e-32a9-3f1b-885a-ad615bbe3b61,SESCO,II.1.1,Capital Federal,AR-C,annual,2017,gas oil combustion consumption by to the public,636.94008,TJ,N2O,3.9,kg/TJ,2484.066312,kg +f63bab0d-a1c4-391b-bfae-29d07c6a4d59,SESCO,II.1.1,Catamarca,AR-K,annual,2017,gas oil combustion consumption by to the public,195.62592,TJ,CO2,74100.0,kg/TJ,14495880.672,kg +a1bf6f5d-17a3-3732-883a-f3aaebab726d,SESCO,II.1.1,Catamarca,AR-K,annual,2017,gas oil combustion consumption by to the public,195.62592,TJ,CH4,3.9,kg/TJ,762.941088,kg +a1bf6f5d-17a3-3732-883a-f3aaebab726d,SESCO,II.1.1,Catamarca,AR-K,annual,2017,gas oil combustion consumption by to the public,195.62592,TJ,N2O,3.9,kg/TJ,762.941088,kg +b832f2b7-b6cc-353d-b442-0d055e552fa9,SESCO,II.1.1,Chaco,AR-H,annual,2017,gas oil combustion consumption by to the public,130.17648,TJ,CO2,74100.0,kg/TJ,9646077.168,kg +4923a12d-4ff6-3dc4-94e4-0fa23efcd297,SESCO,II.1.1,Chaco,AR-H,annual,2017,gas oil combustion consumption by to the public,130.17648,TJ,CH4,3.9,kg/TJ,507.688272,kg +4923a12d-4ff6-3dc4-94e4-0fa23efcd297,SESCO,II.1.1,Chaco,AR-H,annual,2017,gas oil combustion consumption by to the public,130.17648,TJ,N2O,3.9,kg/TJ,507.688272,kg +78b9258e-4ee9-3476-aa49-5b08352b2245,SESCO,II.1.1,Chubut,AR-U,annual,2017,gas oil combustion consumption by to the public,159.39756,TJ,CO2,74100.0,kg/TJ,11811359.196,kg +34babd81-35f5-34f5-873a-483b64371890,SESCO,II.1.1,Chubut,AR-U,annual,2017,gas oil combustion consumption by to the public,159.39756,TJ,CH4,3.9,kg/TJ,621.650484,kg +34babd81-35f5-34f5-873a-483b64371890,SESCO,II.1.1,Chubut,AR-U,annual,2017,gas oil combustion consumption by to the public,159.39756,TJ,N2O,3.9,kg/TJ,621.650484,kg +21afe105-3f28-3648-953d-d2b51a23145d,SESCO,II.1.1,Corrientes,AR-W,annual,2017,gas oil combustion consumption by to the public,221.30724,TJ,CO2,74100.0,kg/TJ,16398866.484000001,kg +6a1fcabd-b551-3963-b270-e22ca092562b,SESCO,II.1.1,Corrientes,AR-W,annual,2017,gas oil combustion consumption by to the public,221.30724,TJ,CH4,3.9,kg/TJ,863.098236,kg +6a1fcabd-b551-3963-b270-e22ca092562b,SESCO,II.1.1,Corrientes,AR-W,annual,2017,gas oil combustion consumption by to the public,221.30724,TJ,N2O,3.9,kg/TJ,863.098236,kg +67316e60-3ecc-37d6-b0ea-621bca43d7f4,SESCO,II.1.1,Córdoba,AR-X,annual,2017,gas oil combustion consumption by to the public,1097.65068,TJ,CO2,74100.0,kg/TJ,81335915.388,kg +d07ce123-3b08-3a59-a47d-c965313973f5,SESCO,II.1.1,Córdoba,AR-X,annual,2017,gas oil combustion consumption by to the public,1097.65068,TJ,CH4,3.9,kg/TJ,4280.837652,kg +d07ce123-3b08-3a59-a47d-c965313973f5,SESCO,II.1.1,Córdoba,AR-X,annual,2017,gas oil combustion consumption by to the public,1097.65068,TJ,N2O,3.9,kg/TJ,4280.837652,kg +e9ba4277-7d46-3a92-ae74-aec58106149e,SESCO,II.1.1,Entre Rios,AR-E,annual,2017,gas oil combustion consumption by to the public,438.38844,TJ,CO2,74100.0,kg/TJ,32484583.404,kg +38bf922e-d451-3568-9503-becda96bef6c,SESCO,II.1.1,Entre Rios,AR-E,annual,2017,gas oil combustion consumption by to the public,438.38844,TJ,CH4,3.9,kg/TJ,1709.714916,kg +38bf922e-d451-3568-9503-becda96bef6c,SESCO,II.1.1,Entre Rios,AR-E,annual,2017,gas oil combustion consumption by to the public,438.38844,TJ,N2O,3.9,kg/TJ,1709.714916,kg +09abd41c-14c0-341d-a631-f82de66ee9e7,SESCO,II.1.1,Formosa,AR-P,annual,2017,gas oil combustion consumption by to the public,304.16652,TJ,CO2,74100.0,kg/TJ,22538739.132,kg +23d0310f-15ff-38a2-867e-307b14c75c2f,SESCO,II.1.1,Formosa,AR-P,annual,2017,gas oil combustion consumption by to the public,304.16652,TJ,CH4,3.9,kg/TJ,1186.2494279999999,kg +23d0310f-15ff-38a2-867e-307b14c75c2f,SESCO,II.1.1,Formosa,AR-P,annual,2017,gas oil combustion consumption by to the public,304.16652,TJ,N2O,3.9,kg/TJ,1186.2494279999999,kg +1366da50-8416-3fcc-9830-16d79b5dd428,SESCO,II.1.1,Jujuy,AR-Y,annual,2017,gas oil combustion consumption by to the public,56.13048,TJ,CO2,74100.0,kg/TJ,4159268.568,kg +8883b98a-7dbc-3a22-812f-b0dc9e414058,SESCO,II.1.1,Jujuy,AR-Y,annual,2017,gas oil combustion consumption by to the public,56.13048,TJ,CH4,3.9,kg/TJ,218.908872,kg +8883b98a-7dbc-3a22-812f-b0dc9e414058,SESCO,II.1.1,Jujuy,AR-Y,annual,2017,gas oil combustion consumption by to the public,56.13048,TJ,N2O,3.9,kg/TJ,218.908872,kg +b91e58de-a119-3463-9a41-d376ac0c0a5a,SESCO,II.1.1,La Pampa,AR-L,annual,2017,gas oil combustion consumption by to the public,163.44299999999998,TJ,CO2,74100.0,kg/TJ,12111126.299999999,kg +81a20cf0-8635-37c0-95e5-0073649f46dc,SESCO,II.1.1,La Pampa,AR-L,annual,2017,gas oil combustion consumption by to the public,163.44299999999998,TJ,CH4,3.9,kg/TJ,637.4277,kg +81a20cf0-8635-37c0-95e5-0073649f46dc,SESCO,II.1.1,La Pampa,AR-L,annual,2017,gas oil combustion consumption by to the public,163.44299999999998,TJ,N2O,3.9,kg/TJ,637.4277,kg +f3c98d12-0a05-3383-be56-5fc3d833e8f2,SESCO,II.1.1,La Rioja,AR-F,annual,2017,gas oil combustion consumption by to the public,72.27611999999999,TJ,CO2,74100.0,kg/TJ,5355660.492,kg +67a33825-e741-3c3e-9075-d77de05ef958,SESCO,II.1.1,La Rioja,AR-F,annual,2017,gas oil combustion consumption by to the public,72.27611999999999,TJ,CH4,3.9,kg/TJ,281.87686799999994,kg +67a33825-e741-3c3e-9075-d77de05ef958,SESCO,II.1.1,La Rioja,AR-F,annual,2017,gas oil combustion consumption by to the public,72.27611999999999,TJ,N2O,3.9,kg/TJ,281.87686799999994,kg +d761831f-c377-37c0-93c5-78f275dc8ad5,SESCO,II.1.1,Mendoza,AR-M,annual,2017,gas oil combustion consumption by to the public,268.51608,TJ,CO2,74100.0,kg/TJ,19897041.528,kg +746d845c-3f98-35a3-8dfb-82f120aa3c34,SESCO,II.1.1,Mendoza,AR-M,annual,2017,gas oil combustion consumption by to the public,268.51608,TJ,CH4,3.9,kg/TJ,1047.212712,kg +746d845c-3f98-35a3-8dfb-82f120aa3c34,SESCO,II.1.1,Mendoza,AR-M,annual,2017,gas oil combustion consumption by to the public,268.51608,TJ,N2O,3.9,kg/TJ,1047.212712,kg +c047eeac-6055-3974-8028-36b46be5ffbf,SESCO,II.1.1,Misiones,AR-N,annual,2017,gas oil combustion consumption by to the public,184.57319999999999,TJ,CO2,74100.0,kg/TJ,13676874.12,kg +81296291-5e62-3956-ba78-30bf74caf805,SESCO,II.1.1,Misiones,AR-N,annual,2017,gas oil combustion consumption by to the public,184.57319999999999,TJ,CH4,3.9,kg/TJ,719.83548,kg +81296291-5e62-3956-ba78-30bf74caf805,SESCO,II.1.1,Misiones,AR-N,annual,2017,gas oil combustion consumption by to the public,184.57319999999999,TJ,N2O,3.9,kg/TJ,719.83548,kg +c51bedfa-0748-3238-bacf-39f4605e83e4,SESCO,II.1.1,Neuquén,AR-Q,annual,2017,gas oil combustion consumption by to the public,151.704,TJ,CO2,74100.0,kg/TJ,11241266.4,kg +3f63d5d1-94bc-3069-8b6a-0108558422af,SESCO,II.1.1,Neuquén,AR-Q,annual,2017,gas oil combustion consumption by to the public,151.704,TJ,CH4,3.9,kg/TJ,591.6456000000001,kg +3f63d5d1-94bc-3069-8b6a-0108558422af,SESCO,II.1.1,Neuquén,AR-Q,annual,2017,gas oil combustion consumption by to the public,151.704,TJ,N2O,3.9,kg/TJ,591.6456000000001,kg +8a667ae3-5c2f-3f3f-a205-d23c932de841,SESCO,II.1.1,Rio Negro,AR-R,annual,2017,gas oil combustion consumption by to the public,291.59676,TJ,CO2,74100.0,kg/TJ,21607319.916,kg +de047db1-584a-3b2b-bc66-d10a859ad59e,SESCO,II.1.1,Rio Negro,AR-R,annual,2017,gas oil combustion consumption by to the public,291.59676,TJ,CH4,3.9,kg/TJ,1137.227364,kg +de047db1-584a-3b2b-bc66-d10a859ad59e,SESCO,II.1.1,Rio Negro,AR-R,annual,2017,gas oil combustion consumption by to the public,291.59676,TJ,N2O,3.9,kg/TJ,1137.227364,kg +3072ec0f-d277-3692-b0bf-d8de3301af6e,SESCO,II.1.1,Salta,AR-A,annual,2017,gas oil combustion consumption by to the public,39.58752,TJ,CO2,74100.0,kg/TJ,2933435.232,kg +a49f6036-266d-30f7-b114-bd29a3a0f9a4,SESCO,II.1.1,Salta,AR-A,annual,2017,gas oil combustion consumption by to the public,39.58752,TJ,CH4,3.9,kg/TJ,154.391328,kg +a49f6036-266d-30f7-b114-bd29a3a0f9a4,SESCO,II.1.1,Salta,AR-A,annual,2017,gas oil combustion consumption by to the public,39.58752,TJ,N2O,3.9,kg/TJ,154.391328,kg +c7e262d5-9dca-35db-ab14-268982678f95,SESCO,II.1.1,San Juan,AR-J,annual,2017,gas oil combustion consumption by to the public,91.5642,TJ,CO2,74100.0,kg/TJ,6784907.22,kg +235ae2e2-160a-39fc-bd3e-b1502c8fad3b,SESCO,II.1.1,San Juan,AR-J,annual,2017,gas oil combustion consumption by to the public,91.5642,TJ,CH4,3.9,kg/TJ,357.10038,kg +235ae2e2-160a-39fc-bd3e-b1502c8fad3b,SESCO,II.1.1,San Juan,AR-J,annual,2017,gas oil combustion consumption by to the public,91.5642,TJ,N2O,3.9,kg/TJ,357.10038,kg +4a8a9c9d-934b-32cb-b8c4-973031b51205,SESCO,II.1.1,San Luis,AR-D,annual,2017,gas oil combustion consumption by to the public,175.94052,TJ,CO2,74100.0,kg/TJ,13037192.532,kg +a4c13b65-9f46-3534-b974-8fd8f067a1e9,SESCO,II.1.1,San Luis,AR-D,annual,2017,gas oil combustion consumption by to the public,175.94052,TJ,CH4,3.9,kg/TJ,686.1680279999999,kg +a4c13b65-9f46-3534-b974-8fd8f067a1e9,SESCO,II.1.1,San Luis,AR-D,annual,2017,gas oil combustion consumption by to the public,175.94052,TJ,N2O,3.9,kg/TJ,686.1680279999999,kg +0eee0a73-49bd-37cb-8ac3-e7e63a7c7aab,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2017,gas oil combustion consumption by to the public,33.0498,TJ,CO2,74100.0,kg/TJ,2448990.1799999997,kg +2b7b5d4f-551c-327b-b37c-beeafdc3b020,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2017,gas oil combustion consumption by to the public,33.0498,TJ,CH4,3.9,kg/TJ,128.89422,kg +2b7b5d4f-551c-327b-b37c-beeafdc3b020,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2017,gas oil combustion consumption by to the public,33.0498,TJ,N2O,3.9,kg/TJ,128.89422,kg +ad7850d2-e37b-33bd-950b-775f2ce1c73d,SESCO,II.1.1,Santa Fe,AR-S,annual,2017,gas oil combustion consumption by to the public,950.42556,TJ,CO2,74100.0,kg/TJ,70426533.996,kg +4edabf17-1f87-3f51-87c4-1f84f6767f05,SESCO,II.1.1,Santa Fe,AR-S,annual,2017,gas oil combustion consumption by to the public,950.42556,TJ,CH4,3.9,kg/TJ,3706.659684,kg +4edabf17-1f87-3f51-87c4-1f84f6767f05,SESCO,II.1.1,Santa Fe,AR-S,annual,2017,gas oil combustion consumption by to the public,950.42556,TJ,N2O,3.9,kg/TJ,3706.659684,kg +a3c7a112-2cfb-3763-928b-f6bf2dd12d06,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2017,gas oil combustion consumption by to the public,174.71244,TJ,CO2,74100.0,kg/TJ,12946191.804,kg +0504f3f3-3f4d-310f-9d11-a9bf6750ab9a,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2017,gas oil combustion consumption by to the public,174.71244,TJ,CH4,3.9,kg/TJ,681.3785159999999,kg +0504f3f3-3f4d-310f-9d11-a9bf6750ab9a,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2017,gas oil combustion consumption by to the public,174.71244,TJ,N2O,3.9,kg/TJ,681.3785159999999,kg +2af8075d-4e05-36a2-8c11-5fba550846d3,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2017,gas oil combustion consumption by to the public,88.92744,TJ,CO2,74100.0,kg/TJ,6589523.3040000005,kg +8107bc53-486e-3916-969f-57112d827923,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2017,gas oil combustion consumption by to the public,88.92744,TJ,CH4,3.9,kg/TJ,346.817016,kg +8107bc53-486e-3916-969f-57112d827923,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2017,gas oil combustion consumption by to the public,88.92744,TJ,N2O,3.9,kg/TJ,346.817016,kg +4e0f4bfe-ef30-3819-9fc8-2325a2f74852,SESCO,II.1.1,Tucuman,AR-T,annual,2017,gas oil combustion consumption by to the public,24.59772,TJ,CO2,74100.0,kg/TJ,1822691.052,kg +6ae331e5-08bf-37f6-a24f-2934225ce593,SESCO,II.1.1,Tucuman,AR-T,annual,2017,gas oil combustion consumption by to the public,24.59772,TJ,CH4,3.9,kg/TJ,95.931108,kg +6ae331e5-08bf-37f6-a24f-2934225ce593,SESCO,II.1.1,Tucuman,AR-T,annual,2017,gas oil combustion consumption by to the public,24.59772,TJ,N2O,3.9,kg/TJ,95.931108,kg +055fe4dc-40d7-34f6-8ed7-e0dc9318175c,SESCO,II.1.1,Buenos Aires,AR-B,annual,2017,jet kerosene combustion consumption by to the public,14.845815999999997,TJ,CO2,71500.0,kg/TJ,1061475.8439999998,kg +166126ea-0ef8-3b25-bd3e-63ca885d66cb,SESCO,II.1.1,Buenos Aires,AR-B,annual,2017,jet kerosene combustion consumption by to the public,14.845815999999997,TJ,CH4,0.5,kg/TJ,7.422907999999999,kg +0f4bbf59-e9a7-3770-a649-3aeada4abba3,SESCO,II.1.1,Buenos Aires,AR-B,annual,2017,jet kerosene combustion consumption by to the public,14.845815999999997,TJ,N2O,2.0,kg/TJ,29.691631999999995,kg +bd8f0411-b442-382e-a410-87f571b8fd02,SESCO,II.1.1,Córdoba,AR-X,annual,2017,jet kerosene combustion consumption by to the public,8.240685999999998,TJ,CO2,71500.0,kg/TJ,589209.0489999999,kg +948ad7bb-ddc8-35e7-ac99-fb4dd61b207e,SESCO,II.1.1,Córdoba,AR-X,annual,2017,jet kerosene combustion consumption by to the public,8.240685999999998,TJ,CH4,0.5,kg/TJ,4.120342999999999,kg +c44c1799-e319-3d5d-b152-3e6ff25cfa41,SESCO,II.1.1,Córdoba,AR-X,annual,2017,jet kerosene combustion consumption by to the public,8.240685999999998,TJ,N2O,2.0,kg/TJ,16.481371999999997,kg +19155f40-fa18-3029-b781-ae79feb6f86f,SESCO,II.1.1,Entre Rios,AR-E,annual,2017,jet kerosene combustion consumption by to the public,1.4153849999999997,TJ,CO2,71500.0,kg/TJ,101200.02749999998,kg +ae2c3d4d-629c-3556-9bfb-8c08cb1ec01b,SESCO,II.1.1,Entre Rios,AR-E,annual,2017,jet kerosene combustion consumption by to the public,1.4153849999999997,TJ,CH4,0.5,kg/TJ,0.7076924999999998,kg +c7e01b02-89ee-33ec-b371-438c812bdbd5,SESCO,II.1.1,Entre Rios,AR-E,annual,2017,jet kerosene combustion consumption by to the public,1.4153849999999997,TJ,N2O,2.0,kg/TJ,2.8307699999999993,kg +1573b4c9-91e7-3999-b169-c1571b8b33f8,SESCO,II.1.1,Misiones,AR-N,annual,2017,jet kerosene combustion consumption by to the public,0.34598299999999993,TJ,CO2,71500.0,kg/TJ,24737.784499999994,kg +3224d0a5-067b-3f49-90d2-b318cb7e111e,SESCO,II.1.1,Misiones,AR-N,annual,2017,jet kerosene combustion consumption by to the public,0.34598299999999993,TJ,CH4,0.5,kg/TJ,0.17299149999999996,kg +cd818895-1a0e-303d-bcae-10afe0148f12,SESCO,II.1.1,Misiones,AR-N,annual,2017,jet kerosene combustion consumption by to the public,0.34598299999999993,TJ,N2O,2.0,kg/TJ,0.6919659999999999,kg +67637d28-9263-3522-a5c7-fea55dec836b,SESCO,II.1.1,Santa Fe,AR-S,annual,2017,jet kerosene combustion consumption by to the public,6.447864999999999,TJ,CO2,71500.0,kg/TJ,461022.3475,kg +a0cbab96-5c16-3237-a9e8-42478d64ba3d,SESCO,II.1.1,Santa Fe,AR-S,annual,2017,jet kerosene combustion consumption by to the public,6.447864999999999,TJ,CH4,0.5,kg/TJ,3.2239324999999996,kg +1e320775-2db8-383a-b144-dc43695b1fd6,SESCO,II.1.1,Santa Fe,AR-S,annual,2017,jet kerosene combustion consumption by to the public,6.447864999999999,TJ,N2O,2.0,kg/TJ,12.895729999999999,kg +d49ae266-0b4a-32f4-9538-7536f1c4a2e5,SESCO,I.3.1,San Luis,AR-D,annual,2017,gas oil combustion consumption by petrochemical industries,9.10224,TJ,CO2,74100.0,kg/TJ,674475.984,kg +8bae8e99-8619-3912-8fa4-238fca906091,SESCO,I.3.1,San Luis,AR-D,annual,2017,gas oil combustion consumption by petrochemical industries,9.10224,TJ,CH4,3.9,kg/TJ,35.498736,kg +8bae8e99-8619-3912-8fa4-238fca906091,SESCO,I.3.1,San Luis,AR-D,annual,2017,gas oil combustion consumption by petrochemical industries,9.10224,TJ,N2O,3.9,kg/TJ,35.498736,kg +47cd41f8-913b-3271-808a-18b4d60238fb,SESCO,I.3.1,Capital Federal,AR-C,annual,2017,jet kerosene combustion consumption by petrochemical industries,10.316583999999999,TJ,CO2,71500.0,kg/TJ,737635.7559999999,kg +cd1bba2d-49b9-3cfa-84a3-20208a24d168,SESCO,I.3.1,Capital Federal,AR-C,annual,2017,jet kerosene combustion consumption by petrochemical industries,10.316583999999999,TJ,CH4,0.5,kg/TJ,5.158291999999999,kg +fc638cd1-64d1-3a73-8f33-e38ad4b99c5a,SESCO,I.3.1,Capital Federal,AR-C,annual,2017,jet kerosene combustion consumption by petrochemical industries,10.316583999999999,TJ,N2O,2.0,kg/TJ,20.633167999999998,kg +9703aee7-df0f-3e92-bbc0-83755b25feeb,SESCO,II.2.1,Buenos Aires,AR-B,annual,2017,gas oil combustion consumption by railway transport,100.55808,TJ,CO2,74100.0,kg/TJ,7451353.728,kg +48db8878-61ca-3b17-a2bc-6fd4b7351f93,SESCO,II.2.1,Buenos Aires,AR-B,annual,2017,gas oil combustion consumption by railway transport,100.55808,TJ,CH4,3.9,kg/TJ,392.176512,kg +48db8878-61ca-3b17-a2bc-6fd4b7351f93,SESCO,II.2.1,Buenos Aires,AR-B,annual,2017,gas oil combustion consumption by railway transport,100.55808,TJ,N2O,3.9,kg/TJ,392.176512,kg +9b68bde2-62d2-388c-927d-db27e6ab1de1,SESCO,II.2.1,Capital Federal,AR-C,annual,2017,gas oil combustion consumption by railway transport,3.612,TJ,CO2,74100.0,kg/TJ,267649.2,kg +4f69dcc6-2b6d-3fb3-a15f-b0784de78c3b,SESCO,II.2.1,Capital Federal,AR-C,annual,2017,gas oil combustion consumption by railway transport,3.612,TJ,CH4,3.9,kg/TJ,14.0868,kg +4f69dcc6-2b6d-3fb3-a15f-b0784de78c3b,SESCO,II.2.1,Capital Federal,AR-C,annual,2017,gas oil combustion consumption by railway transport,3.612,TJ,N2O,3.9,kg/TJ,14.0868,kg +e8842bd7-fd68-3480-9409-800d875ebc26,SESCO,II.2.1,La Pampa,AR-L,annual,2017,gas oil combustion consumption by railway transport,18.02388,TJ,CO2,74100.0,kg/TJ,1335569.508,kg +50aa376a-4a89-355c-b775-eb1d90731d21,SESCO,II.2.1,La Pampa,AR-L,annual,2017,gas oil combustion consumption by railway transport,18.02388,TJ,CH4,3.9,kg/TJ,70.29313199999999,kg +50aa376a-4a89-355c-b775-eb1d90731d21,SESCO,II.2.1,La Pampa,AR-L,annual,2017,gas oil combustion consumption by railway transport,18.02388,TJ,N2O,3.9,kg/TJ,70.29313199999999,kg +6f3718a1-5f96-3aa9-b7f5-cf3968097e64,SESCO,II.2.1,Santa Fe,AR-S,annual,2017,gas oil combustion consumption by railway transport,193.35036,TJ,CO2,74100.0,kg/TJ,14327261.675999999,kg +5c178d28-189f-32bc-b599-74f2c22202f8,SESCO,II.2.1,Santa Fe,AR-S,annual,2017,gas oil combustion consumption by railway transport,193.35036,TJ,CH4,3.9,kg/TJ,754.0664039999999,kg +5c178d28-189f-32bc-b599-74f2c22202f8,SESCO,II.2.1,Santa Fe,AR-S,annual,2017,gas oil combustion consumption by railway transport,193.35036,TJ,N2O,3.9,kg/TJ,754.0664039999999,kg +ca577714-2050-3456-a66b-5085d99edd97,SESCO,II.2.1,Santiago del Estero,AR-G,annual,2017,gas oil combustion consumption by railway transport,27.30672,TJ,CO2,74100.0,kg/TJ,2023427.9519999998,kg +4a8fa62d-8ea1-3882-aee6-7019a6d51918,SESCO,II.2.1,Santiago del Estero,AR-G,annual,2017,gas oil combustion consumption by railway transport,27.30672,TJ,CH4,3.9,kg/TJ,106.496208,kg +4a8fa62d-8ea1-3882-aee6-7019a6d51918,SESCO,II.2.1,Santiago del Estero,AR-G,annual,2017,gas oil combustion consumption by railway transport,27.30672,TJ,N2O,3.9,kg/TJ,106.496208,kg +1cc5eedf-3bc6-37f9-98e2-f7cdfd470bb0,SESCO,II.2.1,Tucuman,AR-T,annual,2017,gas oil combustion consumption by railway transport,6.42936,TJ,CO2,74100.0,kg/TJ,476415.576,kg +fb86a85a-b72f-3184-baad-11f135b43552,SESCO,II.2.1,Tucuman,AR-T,annual,2017,gas oil combustion consumption by railway transport,6.42936,TJ,CH4,3.9,kg/TJ,25.074504,kg +fb86a85a-b72f-3184-baad-11f135b43552,SESCO,II.2.1,Tucuman,AR-T,annual,2017,gas oil combustion consumption by railway transport,6.42936,TJ,N2O,3.9,kg/TJ,25.074504,kg +03cef51b-c1b3-3fcf-916a-3ee8939fc9eb,SESCO,II.1.1,Buenos Aires,AR-B,annual,2017,gas oil combustion consumption by freight transport,2351.5926,TJ,CO2,74100.0,kg/TJ,174253011.66,kg +243e14df-5d28-349b-a26f-5de45eb98cd6,SESCO,II.1.1,Buenos Aires,AR-B,annual,2017,gas oil combustion consumption by freight transport,2351.5926,TJ,CH4,3.9,kg/TJ,9171.21114,kg +243e14df-5d28-349b-a26f-5de45eb98cd6,SESCO,II.1.1,Buenos Aires,AR-B,annual,2017,gas oil combustion consumption by freight transport,2351.5926,TJ,N2O,3.9,kg/TJ,9171.21114,kg +aefa53cd-e65c-3230-80ec-22a8829847d0,SESCO,II.1.1,Capital Federal,AR-C,annual,2017,gas oil combustion consumption by freight transport,261.25596,TJ,CO2,74100.0,kg/TJ,19359066.636,kg +b4bf2dbd-114b-3337-addd-535c3bc5737f,SESCO,II.1.1,Capital Federal,AR-C,annual,2017,gas oil combustion consumption by freight transport,261.25596,TJ,CH4,3.9,kg/TJ,1018.8982440000001,kg +b4bf2dbd-114b-3337-addd-535c3bc5737f,SESCO,II.1.1,Capital Federal,AR-C,annual,2017,gas oil combustion consumption by freight transport,261.25596,TJ,N2O,3.9,kg/TJ,1018.8982440000001,kg +65f29ba7-cc68-3a33-843c-e44b7eba3da4,SESCO,II.1.1,Catamarca,AR-K,annual,2017,gas oil combustion consumption by freight transport,36.697919999999996,TJ,CO2,74100.0,kg/TJ,2719315.8719999995,kg +92de4f81-bba9-3b6d-b345-064c55496d88,SESCO,II.1.1,Catamarca,AR-K,annual,2017,gas oil combustion consumption by freight transport,36.697919999999996,TJ,CH4,3.9,kg/TJ,143.12188799999998,kg +92de4f81-bba9-3b6d-b345-064c55496d88,SESCO,II.1.1,Catamarca,AR-K,annual,2017,gas oil combustion consumption by freight transport,36.697919999999996,TJ,N2O,3.9,kg/TJ,143.12188799999998,kg +aae168ea-695b-38b0-8e2a-0299c28731d5,SESCO,II.1.1,Chaco,AR-H,annual,2017,gas oil combustion consumption by freight transport,53.85492,TJ,CO2,74100.0,kg/TJ,3990649.572,kg +a97834cc-d3dc-39a7-9e71-95881420b732,SESCO,II.1.1,Chaco,AR-H,annual,2017,gas oil combustion consumption by freight transport,53.85492,TJ,CH4,3.9,kg/TJ,210.034188,kg +a97834cc-d3dc-39a7-9e71-95881420b732,SESCO,II.1.1,Chaco,AR-H,annual,2017,gas oil combustion consumption by freight transport,53.85492,TJ,N2O,3.9,kg/TJ,210.034188,kg +70f71f60-ae08-3271-8677-1fc067412b30,SESCO,II.1.1,Chubut,AR-U,annual,2017,gas oil combustion consumption by freight transport,20.87736,TJ,CO2,74100.0,kg/TJ,1547012.376,kg +6f6f6d49-978f-3d62-a723-b9ef9e3cbaef,SESCO,II.1.1,Chubut,AR-U,annual,2017,gas oil combustion consumption by freight transport,20.87736,TJ,CH4,3.9,kg/TJ,81.42170399999999,kg +6f6f6d49-978f-3d62-a723-b9ef9e3cbaef,SESCO,II.1.1,Chubut,AR-U,annual,2017,gas oil combustion consumption by freight transport,20.87736,TJ,N2O,3.9,kg/TJ,81.42170399999999,kg +2f50d9b3-7d34-3be3-b706-bb364272abcd,SESCO,II.1.1,Corrientes,AR-W,annual,2017,gas oil combustion consumption by freight transport,64.43808,TJ,CO2,74100.0,kg/TJ,4774861.728,kg +e0260274-9b3f-344b-8a4b-7ec9eb7e10ae,SESCO,II.1.1,Corrientes,AR-W,annual,2017,gas oil combustion consumption by freight transport,64.43808,TJ,CH4,3.9,kg/TJ,251.30851199999998,kg +e0260274-9b3f-344b-8a4b-7ec9eb7e10ae,SESCO,II.1.1,Corrientes,AR-W,annual,2017,gas oil combustion consumption by freight transport,64.43808,TJ,N2O,3.9,kg/TJ,251.30851199999998,kg +4261a267-70c6-3ce2-8947-20b870713dc7,SESCO,II.1.1,Córdoba,AR-X,annual,2017,gas oil combustion consumption by freight transport,645.2838,TJ,CO2,74100.0,kg/TJ,47815529.580000006,kg +f7968b8a-3c11-35ee-ba5d-5120101ed50f,SESCO,II.1.1,Córdoba,AR-X,annual,2017,gas oil combustion consumption by freight transport,645.2838,TJ,CH4,3.9,kg/TJ,2516.60682,kg +f7968b8a-3c11-35ee-ba5d-5120101ed50f,SESCO,II.1.1,Córdoba,AR-X,annual,2017,gas oil combustion consumption by freight transport,645.2838,TJ,N2O,3.9,kg/TJ,2516.60682,kg +6fdf9f9e-b1de-326e-8ab9-b4466c54b329,SESCO,II.1.1,Entre Rios,AR-E,annual,2017,gas oil combustion consumption by freight transport,214.08324,TJ,CO2,74100.0,kg/TJ,15863568.083999999,kg +9d29bdc1-d03f-3a78-b098-9a68e199169b,SESCO,II.1.1,Entre Rios,AR-E,annual,2017,gas oil combustion consumption by freight transport,214.08324,TJ,CH4,3.9,kg/TJ,834.924636,kg +9d29bdc1-d03f-3a78-b098-9a68e199169b,SESCO,II.1.1,Entre Rios,AR-E,annual,2017,gas oil combustion consumption by freight transport,214.08324,TJ,N2O,3.9,kg/TJ,834.924636,kg +e6ac4cb8-bce5-3a14-8a2d-cf992ff9c5cf,SESCO,II.1.1,Formosa,AR-P,annual,2017,gas oil combustion consumption by freight transport,4.6956,TJ,CO2,74100.0,kg/TJ,347943.95999999996,kg +4f116e71-bacc-3c40-8355-5f18c3a91679,SESCO,II.1.1,Formosa,AR-P,annual,2017,gas oil combustion consumption by freight transport,4.6956,TJ,CH4,3.9,kg/TJ,18.312839999999998,kg +4f116e71-bacc-3c40-8355-5f18c3a91679,SESCO,II.1.1,Formosa,AR-P,annual,2017,gas oil combustion consumption by freight transport,4.6956,TJ,N2O,3.9,kg/TJ,18.312839999999998,kg +c4182bd5-c49c-30bc-b943-4b0d788ec553,SESCO,II.1.1,Jujuy,AR-Y,annual,2017,gas oil combustion consumption by freight transport,2.81736,TJ,CO2,74100.0,kg/TJ,208766.376,kg +c8e4aaaa-079c-3abd-8ca7-ce934eacf3ca,SESCO,II.1.1,Jujuy,AR-Y,annual,2017,gas oil combustion consumption by freight transport,2.81736,TJ,CH4,3.9,kg/TJ,10.987703999999999,kg +c8e4aaaa-079c-3abd-8ca7-ce934eacf3ca,SESCO,II.1.1,Jujuy,AR-Y,annual,2017,gas oil combustion consumption by freight transport,2.81736,TJ,N2O,3.9,kg/TJ,10.987703999999999,kg +bfb8cbed-ab72-31e5-98ef-3d66e39efa2a,SESCO,II.1.1,La Pampa,AR-L,annual,2017,gas oil combustion consumption by freight transport,10.4748,TJ,CO2,74100.0,kg/TJ,776182.68,kg +2aa2ff6c-a620-3d69-9328-fd1cc3fee167,SESCO,II.1.1,La Pampa,AR-L,annual,2017,gas oil combustion consumption by freight transport,10.4748,TJ,CH4,3.9,kg/TJ,40.85172,kg +2aa2ff6c-a620-3d69-9328-fd1cc3fee167,SESCO,II.1.1,La Pampa,AR-L,annual,2017,gas oil combustion consumption by freight transport,10.4748,TJ,N2O,3.9,kg/TJ,40.85172,kg +ad4ffb32-4d51-3bf6-a193-b56cad287803,SESCO,II.1.1,La Rioja,AR-F,annual,2017,gas oil combustion consumption by freight transport,4.04544,TJ,CO2,74100.0,kg/TJ,299767.104,kg +f07b412b-1708-3532-b51d-b5c12e689636,SESCO,II.1.1,La Rioja,AR-F,annual,2017,gas oil combustion consumption by freight transport,4.04544,TJ,CH4,3.9,kg/TJ,15.777216000000001,kg +f07b412b-1708-3532-b51d-b5c12e689636,SESCO,II.1.1,La Rioja,AR-F,annual,2017,gas oil combustion consumption by freight transport,4.04544,TJ,N2O,3.9,kg/TJ,15.777216000000001,kg +170e178a-c1e8-331b-8fcb-c7d173161fc7,SESCO,II.1.1,Mendoza,AR-M,annual,2017,gas oil combustion consumption by freight transport,48.4008,TJ,CO2,74100.0,kg/TJ,3586499.28,kg +f44fb8b0-aac8-30f8-aca3-a7371ba676df,SESCO,II.1.1,Mendoza,AR-M,annual,2017,gas oil combustion consumption by freight transport,48.4008,TJ,CH4,3.9,kg/TJ,188.76312,kg +f44fb8b0-aac8-30f8-aca3-a7371ba676df,SESCO,II.1.1,Mendoza,AR-M,annual,2017,gas oil combustion consumption by freight transport,48.4008,TJ,N2O,3.9,kg/TJ,188.76312,kg +082d578c-30ef-34e8-bd13-158489d4ce05,SESCO,II.1.1,Misiones,AR-N,annual,2017,gas oil combustion consumption by freight transport,56.13048,TJ,CO2,74100.0,kg/TJ,4159268.568,kg +0ae57fd6-a2d7-3691-aa6a-10662642a453,SESCO,II.1.1,Misiones,AR-N,annual,2017,gas oil combustion consumption by freight transport,56.13048,TJ,CH4,3.9,kg/TJ,218.908872,kg +0ae57fd6-a2d7-3691-aa6a-10662642a453,SESCO,II.1.1,Misiones,AR-N,annual,2017,gas oil combustion consumption by freight transport,56.13048,TJ,N2O,3.9,kg/TJ,218.908872,kg +c9168f0b-0249-3c48-905d-65bcb3cf68b8,SESCO,II.1.1,Neuquén,AR-Q,annual,2017,gas oil combustion consumption by freight transport,0.7223999999999999,TJ,CO2,74100.0,kg/TJ,53529.84,kg +1a7f15fd-0936-3977-84c6-d083887424bd,SESCO,II.1.1,Neuquén,AR-Q,annual,2017,gas oil combustion consumption by freight transport,0.7223999999999999,TJ,CH4,3.9,kg/TJ,2.81736,kg +1a7f15fd-0936-3977-84c6-d083887424bd,SESCO,II.1.1,Neuquén,AR-Q,annual,2017,gas oil combustion consumption by freight transport,0.7223999999999999,TJ,N2O,3.9,kg/TJ,2.81736,kg +eacefd7b-8bd6-3834-9cb8-e4cb3103f2fc,SESCO,II.1.1,Rio Negro,AR-R,annual,2017,gas oil combustion consumption by freight transport,103.15872,TJ,CO2,74100.0,kg/TJ,7644061.152,kg +3a2404c0-1f3e-31b0-9683-3f393e6ebd08,SESCO,II.1.1,Rio Negro,AR-R,annual,2017,gas oil combustion consumption by freight transport,103.15872,TJ,CH4,3.9,kg/TJ,402.319008,kg +3a2404c0-1f3e-31b0-9683-3f393e6ebd08,SESCO,II.1.1,Rio Negro,AR-R,annual,2017,gas oil combustion consumption by freight transport,103.15872,TJ,N2O,3.9,kg/TJ,402.319008,kg +1998518f-ffb1-3077-b31f-91b1a141dc11,SESCO,II.1.1,Salta,AR-A,annual,2017,gas oil combustion consumption by freight transport,30.37692,TJ,CO2,74100.0,kg/TJ,2250929.772,kg +9e84bf17-6acf-3498-8227-3f8f37ad03e3,SESCO,II.1.1,Salta,AR-A,annual,2017,gas oil combustion consumption by freight transport,30.37692,TJ,CH4,3.9,kg/TJ,118.46998799999999,kg +9e84bf17-6acf-3498-8227-3f8f37ad03e3,SESCO,II.1.1,Salta,AR-A,annual,2017,gas oil combustion consumption by freight transport,30.37692,TJ,N2O,3.9,kg/TJ,118.46998799999999,kg +4fd54572-4848-39f0-ba16-8f81727f444e,SESCO,II.1.1,San Juan,AR-J,annual,2017,gas oil combustion consumption by freight transport,9.60792,TJ,CO2,74100.0,kg/TJ,711946.872,kg +c23e2d65-eeeb-3199-a355-602f9b98b4a5,SESCO,II.1.1,San Juan,AR-J,annual,2017,gas oil combustion consumption by freight transport,9.60792,TJ,CH4,3.9,kg/TJ,37.470888,kg +c23e2d65-eeeb-3199-a355-602f9b98b4a5,SESCO,II.1.1,San Juan,AR-J,annual,2017,gas oil combustion consumption by freight transport,9.60792,TJ,N2O,3.9,kg/TJ,37.470888,kg +7df4ae95-92f0-3110-b06c-cd5a2dd09f03,SESCO,II.1.1,San Luis,AR-D,annual,2017,gas oil combustion consumption by freight transport,68.55575999999999,TJ,CO2,74100.0,kg/TJ,5079981.816,kg +efb4124d-7341-344d-91ec-71298259c4b4,SESCO,II.1.1,San Luis,AR-D,annual,2017,gas oil combustion consumption by freight transport,68.55575999999999,TJ,CH4,3.9,kg/TJ,267.367464,kg +efb4124d-7341-344d-91ec-71298259c4b4,SESCO,II.1.1,San Luis,AR-D,annual,2017,gas oil combustion consumption by freight transport,68.55575999999999,TJ,N2O,3.9,kg/TJ,267.367464,kg +5c5b12b3-52b2-385f-8277-2682846e2a0c,SESCO,II.1.1,Santa Fe,AR-S,annual,2017,gas oil combustion consumption by freight transport,528.7968,TJ,CO2,74100.0,kg/TJ,39183842.879999995,kg +28b190f1-8582-39a1-b64b-afbcc2544889,SESCO,II.1.1,Santa Fe,AR-S,annual,2017,gas oil combustion consumption by freight transport,528.7968,TJ,CH4,3.9,kg/TJ,2062.30752,kg +28b190f1-8582-39a1-b64b-afbcc2544889,SESCO,II.1.1,Santa Fe,AR-S,annual,2017,gas oil combustion consumption by freight transport,528.7968,TJ,N2O,3.9,kg/TJ,2062.30752,kg +a78a0103-9113-3def-a9eb-6d12ea0dfdae,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2017,gas oil combustion consumption by freight transport,40.74336,TJ,CO2,74100.0,kg/TJ,3019082.9760000003,kg +285a4151-c971-3e25-86fa-7344b62852e3,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2017,gas oil combustion consumption by freight transport,40.74336,TJ,CH4,3.9,kg/TJ,158.899104,kg +285a4151-c971-3e25-86fa-7344b62852e3,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2017,gas oil combustion consumption by freight transport,40.74336,TJ,N2O,3.9,kg/TJ,158.899104,kg +fe1f3a2b-9666-325c-9149-5490eb4d886e,SESCO,II.1.1,Tucuman,AR-T,annual,2017,gas oil combustion consumption by freight transport,75.02123999999999,TJ,CO2,74100.0,kg/TJ,5559073.884,kg +c8c3ed77-74e5-3637-8104-fd6a970b48c3,SESCO,II.1.1,Tucuman,AR-T,annual,2017,gas oil combustion consumption by freight transport,75.02123999999999,TJ,CH4,3.9,kg/TJ,292.582836,kg +c8c3ed77-74e5-3637-8104-fd6a970b48c3,SESCO,II.1.1,Tucuman,AR-T,annual,2017,gas oil combustion consumption by freight transport,75.02123999999999,TJ,N2O,3.9,kg/TJ,292.582836,kg +1360a410-a100-3ed8-8110-1b2f3afbf308,SESCO,II.1.1,Buenos Aires,AR-B,annual,2017,gas oil combustion consumption by freight transport,126.99792,TJ,CO2,74100.0,kg/TJ,9410545.872,kg +2ac9c102-4307-3b52-813e-23402e35bf26,SESCO,II.1.1,Buenos Aires,AR-B,annual,2017,gas oil combustion consumption by freight transport,126.99792,TJ,CH4,3.9,kg/TJ,495.291888,kg +2ac9c102-4307-3b52-813e-23402e35bf26,SESCO,II.1.1,Buenos Aires,AR-B,annual,2017,gas oil combustion consumption by freight transport,126.99792,TJ,N2O,3.9,kg/TJ,495.291888,kg +5e05e94b-fe38-318a-bf6f-17dee6a2f62d,SESCO,II.1.1,Capital Federal,AR-C,annual,2017,gas oil combustion consumption by freight transport,14.19516,TJ,CO2,74100.0,kg/TJ,1051861.356,kg +36a028ca-244d-3f71-b503-41e20409539d,SESCO,II.1.1,Capital Federal,AR-C,annual,2017,gas oil combustion consumption by freight transport,14.19516,TJ,CH4,3.9,kg/TJ,55.361124,kg +36a028ca-244d-3f71-b503-41e20409539d,SESCO,II.1.1,Capital Federal,AR-C,annual,2017,gas oil combustion consumption by freight transport,14.19516,TJ,N2O,3.9,kg/TJ,55.361124,kg +2f879b47-794a-321e-b940-24683e313bc5,SESCO,II.1.1,Catamarca,AR-K,annual,2017,gas oil combustion consumption by freight transport,0.50568,TJ,CO2,74100.0,kg/TJ,37470.888,kg +61a92087-6b0a-3461-8ed7-a1498db89eae,SESCO,II.1.1,Catamarca,AR-K,annual,2017,gas oil combustion consumption by freight transport,0.50568,TJ,CH4,3.9,kg/TJ,1.9721520000000001,kg +61a92087-6b0a-3461-8ed7-a1498db89eae,SESCO,II.1.1,Catamarca,AR-K,annual,2017,gas oil combustion consumption by freight transport,0.50568,TJ,N2O,3.9,kg/TJ,1.9721520000000001,kg +3a9b65fc-7bb9-3a83-a236-8b2db5ef8b7e,SESCO,II.1.1,Chaco,AR-H,annual,2017,gas oil combustion consumption by freight transport,1.87824,TJ,CO2,74100.0,kg/TJ,139177.584,kg +34d11f8f-26a9-3a2d-b3b8-c80bc5e79ca9,SESCO,II.1.1,Chaco,AR-H,annual,2017,gas oil combustion consumption by freight transport,1.87824,TJ,CH4,3.9,kg/TJ,7.325136,kg +34d11f8f-26a9-3a2d-b3b8-c80bc5e79ca9,SESCO,II.1.1,Chaco,AR-H,annual,2017,gas oil combustion consumption by freight transport,1.87824,TJ,N2O,3.9,kg/TJ,7.325136,kg +cd6a502c-7fc7-3752-b56f-f4f753d0a48b,SESCO,II.1.1,Chubut,AR-U,annual,2017,gas oil combustion consumption by freight transport,7.4046,TJ,CO2,74100.0,kg/TJ,548680.86,kg +10c23aa7-6651-3606-aedc-919ba611cab5,SESCO,II.1.1,Chubut,AR-U,annual,2017,gas oil combustion consumption by freight transport,7.4046,TJ,CH4,3.9,kg/TJ,28.87794,kg +10c23aa7-6651-3606-aedc-919ba611cab5,SESCO,II.1.1,Chubut,AR-U,annual,2017,gas oil combustion consumption by freight transport,7.4046,TJ,N2O,3.9,kg/TJ,28.87794,kg +a6aa5e55-c3ac-37cb-b9ba-3b60a0a25964,SESCO,II.1.1,Corrientes,AR-W,annual,2017,gas oil combustion consumption by freight transport,4.37052,TJ,CO2,74100.0,kg/TJ,323855.532,kg +21e36700-5eb5-325d-99d4-ead79f8f367e,SESCO,II.1.1,Corrientes,AR-W,annual,2017,gas oil combustion consumption by freight transport,4.37052,TJ,CH4,3.9,kg/TJ,17.045028,kg +21e36700-5eb5-325d-99d4-ead79f8f367e,SESCO,II.1.1,Corrientes,AR-W,annual,2017,gas oil combustion consumption by freight transport,4.37052,TJ,N2O,3.9,kg/TJ,17.045028,kg +ffc89d39-eda1-3488-a595-b2918fec7610,SESCO,II.1.1,Córdoba,AR-X,annual,2017,gas oil combustion consumption by freight transport,21.34692,TJ,CO2,74100.0,kg/TJ,1581806.772,kg +bf2ff250-aec8-3f01-83d0-41fb51f28e71,SESCO,II.1.1,Córdoba,AR-X,annual,2017,gas oil combustion consumption by freight transport,21.34692,TJ,CH4,3.9,kg/TJ,83.252988,kg +bf2ff250-aec8-3f01-83d0-41fb51f28e71,SESCO,II.1.1,Córdoba,AR-X,annual,2017,gas oil combustion consumption by freight transport,21.34692,TJ,N2O,3.9,kg/TJ,83.252988,kg +a405c6d1-b6f1-3efb-8b9a-d4c6836ca817,SESCO,II.1.1,Entre Rios,AR-E,annual,2017,gas oil combustion consumption by freight transport,10.6554,TJ,CO2,74100.0,kg/TJ,789565.14,kg +c2b8daef-1be2-3472-8808-75fe2f176ac4,SESCO,II.1.1,Entre Rios,AR-E,annual,2017,gas oil combustion consumption by freight transport,10.6554,TJ,CH4,3.9,kg/TJ,41.55606,kg +c2b8daef-1be2-3472-8808-75fe2f176ac4,SESCO,II.1.1,Entre Rios,AR-E,annual,2017,gas oil combustion consumption by freight transport,10.6554,TJ,N2O,3.9,kg/TJ,41.55606,kg +3266a5f0-7e94-35e3-a244-85b6bdee65bf,SESCO,II.1.1,Formosa,AR-P,annual,2017,gas oil combustion consumption by freight transport,0.14448,TJ,CO2,74100.0,kg/TJ,10705.967999999999,kg +b850ec85-6d63-361b-a71b-bd582ee6fb00,SESCO,II.1.1,Formosa,AR-P,annual,2017,gas oil combustion consumption by freight transport,0.14448,TJ,CH4,3.9,kg/TJ,0.563472,kg +b850ec85-6d63-361b-a71b-bd582ee6fb00,SESCO,II.1.1,Formosa,AR-P,annual,2017,gas oil combustion consumption by freight transport,0.14448,TJ,N2O,3.9,kg/TJ,0.563472,kg +8bea11b5-260a-31e0-9b47-d09d467faf65,SESCO,II.1.1,La Pampa,AR-L,annual,2017,gas oil combustion consumption by freight transport,0.5418,TJ,CO2,74100.0,kg/TJ,40147.38,kg +333d2d89-a037-3c59-9930-cb4c6875fb58,SESCO,II.1.1,La Pampa,AR-L,annual,2017,gas oil combustion consumption by freight transport,0.5418,TJ,CH4,3.9,kg/TJ,2.1130199999999997,kg +333d2d89-a037-3c59-9930-cb4c6875fb58,SESCO,II.1.1,La Pampa,AR-L,annual,2017,gas oil combustion consumption by freight transport,0.5418,TJ,N2O,3.9,kg/TJ,2.1130199999999997,kg +0f9fc0a2-18fb-3576-a802-5a2d657ce0e3,SESCO,II.1.1,La Rioja,AR-F,annual,2017,gas oil combustion consumption by freight transport,0.14448,TJ,CO2,74100.0,kg/TJ,10705.967999999999,kg +2624729b-8f4c-3a70-b11b-f9b1e0be4e4f,SESCO,II.1.1,La Rioja,AR-F,annual,2017,gas oil combustion consumption by freight transport,0.14448,TJ,CH4,3.9,kg/TJ,0.563472,kg +2624729b-8f4c-3a70-b11b-f9b1e0be4e4f,SESCO,II.1.1,La Rioja,AR-F,annual,2017,gas oil combustion consumption by freight transport,0.14448,TJ,N2O,3.9,kg/TJ,0.563472,kg +596be2ac-a9b6-3333-8828-17dfc6c376d9,SESCO,II.1.1,Mendoza,AR-M,annual,2017,gas oil combustion consumption by freight transport,0.7223999999999999,TJ,CO2,74100.0,kg/TJ,53529.84,kg +1bbdd795-933b-3bb8-bf13-80aa435a5d13,SESCO,II.1.1,Mendoza,AR-M,annual,2017,gas oil combustion consumption by freight transport,0.7223999999999999,TJ,CH4,3.9,kg/TJ,2.81736,kg +1bbdd795-933b-3bb8-bf13-80aa435a5d13,SESCO,II.1.1,Mendoza,AR-M,annual,2017,gas oil combustion consumption by freight transport,0.7223999999999999,TJ,N2O,3.9,kg/TJ,2.81736,kg +27c84913-bf89-30d4-bba2-9044bda805d2,SESCO,II.1.1,Misiones,AR-N,annual,2017,gas oil combustion consumption by freight transport,1.76988,TJ,CO2,74100.0,kg/TJ,131148.10799999998,kg +9422ae97-c7b7-3b83-8301-5d8a9d37099b,SESCO,II.1.1,Misiones,AR-N,annual,2017,gas oil combustion consumption by freight transport,1.76988,TJ,CH4,3.9,kg/TJ,6.902531999999999,kg +9422ae97-c7b7-3b83-8301-5d8a9d37099b,SESCO,II.1.1,Misiones,AR-N,annual,2017,gas oil combustion consumption by freight transport,1.76988,TJ,N2O,3.9,kg/TJ,6.902531999999999,kg +76a94174-8b9b-3c8e-926d-e0823931a1b1,SESCO,II.1.1,Rio Negro,AR-R,annual,2017,gas oil combustion consumption by freight transport,24.95892,TJ,CO2,74100.0,kg/TJ,1849455.9719999998,kg +e84894c9-8d6d-3a6c-99e0-530744ada256,SESCO,II.1.1,Rio Negro,AR-R,annual,2017,gas oil combustion consumption by freight transport,24.95892,TJ,CH4,3.9,kg/TJ,97.339788,kg +e84894c9-8d6d-3a6c-99e0-530744ada256,SESCO,II.1.1,Rio Negro,AR-R,annual,2017,gas oil combustion consumption by freight transport,24.95892,TJ,N2O,3.9,kg/TJ,97.339788,kg +249c2a77-8015-3ed5-8095-15cf3216736e,SESCO,II.1.1,San Juan,AR-J,annual,2017,gas oil combustion consumption by freight transport,0.903,TJ,CO2,74100.0,kg/TJ,66912.3,kg +4c4a956a-814e-3144-b0e5-a879091cec95,SESCO,II.1.1,San Juan,AR-J,annual,2017,gas oil combustion consumption by freight transport,0.903,TJ,CH4,3.9,kg/TJ,3.5217,kg +4c4a956a-814e-3144-b0e5-a879091cec95,SESCO,II.1.1,San Juan,AR-J,annual,2017,gas oil combustion consumption by freight transport,0.903,TJ,N2O,3.9,kg/TJ,3.5217,kg +f6474bb7-9794-3b57-b123-bb6f981bea5a,SESCO,II.1.1,San Luis,AR-D,annual,2017,gas oil combustion consumption by freight transport,2.27556,TJ,CO2,74100.0,kg/TJ,168618.996,kg +3d0225f9-fc33-372b-abb4-c9e9b6a2fe08,SESCO,II.1.1,San Luis,AR-D,annual,2017,gas oil combustion consumption by freight transport,2.27556,TJ,CH4,3.9,kg/TJ,8.874684,kg +3d0225f9-fc33-372b-abb4-c9e9b6a2fe08,SESCO,II.1.1,San Luis,AR-D,annual,2017,gas oil combustion consumption by freight transport,2.27556,TJ,N2O,3.9,kg/TJ,8.874684,kg +3a6b22a1-d066-3fee-8de5-6c6dfb8b93a2,SESCO,II.1.1,Santa Fe,AR-S,annual,2017,gas oil combustion consumption by freight transport,72.52896,TJ,CO2,74100.0,kg/TJ,5374395.936,kg +d6146a43-e5e8-36c4-8f6b-19e3e4d1f75a,SESCO,II.1.1,Santa Fe,AR-S,annual,2017,gas oil combustion consumption by freight transport,72.52896,TJ,CH4,3.9,kg/TJ,282.86294399999997,kg +d6146a43-e5e8-36c4-8f6b-19e3e4d1f75a,SESCO,II.1.1,Santa Fe,AR-S,annual,2017,gas oil combustion consumption by freight transport,72.52896,TJ,N2O,3.9,kg/TJ,282.86294399999997,kg +382753e5-8459-3aa5-90fa-0b0ffff7972a,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2017,gas oil combustion consumption by freight transport,2.67288,TJ,CO2,74100.0,kg/TJ,198060.40800000002,kg +10d130c0-d208-3c46-a4aa-90a9f39f6daf,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2017,gas oil combustion consumption by freight transport,2.67288,TJ,CH4,3.9,kg/TJ,10.424232,kg +10d130c0-d208-3c46-a4aa-90a9f39f6daf,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2017,gas oil combustion consumption by freight transport,2.67288,TJ,N2O,3.9,kg/TJ,10.424232,kg +c021b19e-a9f5-3ab7-8709-f4a98c171122,SESCO,II.1.1,Tucuman,AR-T,annual,2017,gas oil combustion consumption by freight transport,0.68628,TJ,CO2,74100.0,kg/TJ,50853.348,kg +ef12b4a6-156e-3826-9bc9-a9db162e2d38,SESCO,II.1.1,Tucuman,AR-T,annual,2017,gas oil combustion consumption by freight transport,0.68628,TJ,CH4,3.9,kg/TJ,2.676492,kg +ef12b4a6-156e-3826-9bc9-a9db162e2d38,SESCO,II.1.1,Tucuman,AR-T,annual,2017,gas oil combustion consumption by freight transport,0.68628,TJ,N2O,3.9,kg/TJ,2.676492,kg +a0262c9d-49cf-3f8e-b692-c32d800535b4,SESCO,II.1.1,Buenos Aires,AR-B,annual,2017,gas oil combustion consumption by public passenger transport,635.27856,TJ,CO2,74100.0,kg/TJ,47074141.296,kg +b3abcaaf-b15c-373e-979f-e2d737dd8c30,SESCO,II.1.1,Buenos Aires,AR-B,annual,2017,gas oil combustion consumption by public passenger transport,635.27856,TJ,CH4,3.9,kg/TJ,2477.5863839999997,kg +b3abcaaf-b15c-373e-979f-e2d737dd8c30,SESCO,II.1.1,Buenos Aires,AR-B,annual,2017,gas oil combustion consumption by public passenger transport,635.27856,TJ,N2O,3.9,kg/TJ,2477.5863839999997,kg +30617ab5-4a64-3381-855a-4fc553a9463e,SESCO,II.1.1,Capital Federal,AR-C,annual,2017,gas oil combustion consumption by public passenger transport,945.94668,TJ,CO2,74100.0,kg/TJ,70094648.988,kg +d0f119b5-ea08-3ef1-83d7-0fdd21343f42,SESCO,II.1.1,Capital Federal,AR-C,annual,2017,gas oil combustion consumption by public passenger transport,945.94668,TJ,CH4,3.9,kg/TJ,3689.192052,kg +d0f119b5-ea08-3ef1-83d7-0fdd21343f42,SESCO,II.1.1,Capital Federal,AR-C,annual,2017,gas oil combustion consumption by public passenger transport,945.94668,TJ,N2O,3.9,kg/TJ,3689.192052,kg +9e6bb34e-b818-3b6a-8c14-d80f8d52bdc5,SESCO,II.1.1,Catamarca,AR-K,annual,2017,gas oil combustion consumption by public passenger transport,0.28896,TJ,CO2,74100.0,kg/TJ,21411.935999999998,kg +2aeca832-1095-385a-8e32-082f13ecca68,SESCO,II.1.1,Catamarca,AR-K,annual,2017,gas oil combustion consumption by public passenger transport,0.28896,TJ,CH4,3.9,kg/TJ,1.126944,kg +2aeca832-1095-385a-8e32-082f13ecca68,SESCO,II.1.1,Catamarca,AR-K,annual,2017,gas oil combustion consumption by public passenger transport,0.28896,TJ,N2O,3.9,kg/TJ,1.126944,kg +ca4b26c1-3201-3021-be28-1a083987c666,SESCO,II.1.1,Chaco,AR-H,annual,2017,gas oil combustion consumption by public passenger transport,2.02272,TJ,CO2,74100.0,kg/TJ,149883.552,kg +a78a7b4e-ddda-3369-9f2e-5e6d45726575,SESCO,II.1.1,Chaco,AR-H,annual,2017,gas oil combustion consumption by public passenger transport,2.02272,TJ,CH4,3.9,kg/TJ,7.8886080000000005,kg +a78a7b4e-ddda-3369-9f2e-5e6d45726575,SESCO,II.1.1,Chaco,AR-H,annual,2017,gas oil combustion consumption by public passenger transport,2.02272,TJ,N2O,3.9,kg/TJ,7.8886080000000005,kg +fb41621e-a11a-32ec-a243-47eddf8495cb,SESCO,II.1.1,Chubut,AR-U,annual,2017,gas oil combustion consumption by public passenger transport,18.20448,TJ,CO2,74100.0,kg/TJ,1348951.968,kg +de800fd1-57ba-3d06-ac87-5acd8fdd19ac,SESCO,II.1.1,Chubut,AR-U,annual,2017,gas oil combustion consumption by public passenger transport,18.20448,TJ,CH4,3.9,kg/TJ,70.997472,kg +de800fd1-57ba-3d06-ac87-5acd8fdd19ac,SESCO,II.1.1,Chubut,AR-U,annual,2017,gas oil combustion consumption by public passenger transport,18.20448,TJ,N2O,3.9,kg/TJ,70.997472,kg +5ed37bc2-0961-372b-82d9-3e77f36e318f,SESCO,II.1.1,Corrientes,AR-W,annual,2017,gas oil combustion consumption by public passenger transport,1.19196,TJ,CO2,74100.0,kg/TJ,88324.23599999999,kg +6ef3ace8-d016-36b9-b06d-e0f221e0dc23,SESCO,II.1.1,Corrientes,AR-W,annual,2017,gas oil combustion consumption by public passenger transport,1.19196,TJ,CH4,3.9,kg/TJ,4.648643999999999,kg +6ef3ace8-d016-36b9-b06d-e0f221e0dc23,SESCO,II.1.1,Corrientes,AR-W,annual,2017,gas oil combustion consumption by public passenger transport,1.19196,TJ,N2O,3.9,kg/TJ,4.648643999999999,kg +ffa1bbd1-047f-3a8d-ae2d-6fa8e0113682,SESCO,II.1.1,Córdoba,AR-X,annual,2017,gas oil combustion consumption by public passenger transport,59.92308,TJ,CO2,74100.0,kg/TJ,4440300.228,kg +81c08e7a-e909-3c7c-9f48-302abeccd16c,SESCO,II.1.1,Córdoba,AR-X,annual,2017,gas oil combustion consumption by public passenger transport,59.92308,TJ,CH4,3.9,kg/TJ,233.700012,kg +81c08e7a-e909-3c7c-9f48-302abeccd16c,SESCO,II.1.1,Córdoba,AR-X,annual,2017,gas oil combustion consumption by public passenger transport,59.92308,TJ,N2O,3.9,kg/TJ,233.700012,kg +8abbcc8a-7823-3cf8-b174-63a0fcef4878,SESCO,II.1.1,Entre Rios,AR-E,annual,2017,gas oil combustion consumption by public passenger transport,46.34196,TJ,CO2,74100.0,kg/TJ,3433939.236,kg +e7cac919-efa0-3ae7-8a40-8dda33eb1057,SESCO,II.1.1,Entre Rios,AR-E,annual,2017,gas oil combustion consumption by public passenger transport,46.34196,TJ,CH4,3.9,kg/TJ,180.733644,kg +e7cac919-efa0-3ae7-8a40-8dda33eb1057,SESCO,II.1.1,Entre Rios,AR-E,annual,2017,gas oil combustion consumption by public passenger transport,46.34196,TJ,N2O,3.9,kg/TJ,180.733644,kg +f4f59301-29bb-3397-a821-3d925d037e51,SESCO,II.1.1,Formosa,AR-P,annual,2017,gas oil combustion consumption by public passenger transport,0.07224,TJ,CO2,74100.0,kg/TJ,5352.9839999999995,kg +9fd6e638-79a3-3588-8412-63560d92cdb2,SESCO,II.1.1,Formosa,AR-P,annual,2017,gas oil combustion consumption by public passenger transport,0.07224,TJ,CH4,3.9,kg/TJ,0.281736,kg +9fd6e638-79a3-3588-8412-63560d92cdb2,SESCO,II.1.1,Formosa,AR-P,annual,2017,gas oil combustion consumption by public passenger transport,0.07224,TJ,N2O,3.9,kg/TJ,0.281736,kg +04c9ebcb-0b50-3e80-9c32-f97f4ee5626c,SESCO,II.1.1,La Pampa,AR-L,annual,2017,gas oil combustion consumption by public passenger transport,4.00932,TJ,CO2,74100.0,kg/TJ,297090.61199999996,kg +7ed3057c-844d-3e07-8697-9b203aaaeb50,SESCO,II.1.1,La Pampa,AR-L,annual,2017,gas oil combustion consumption by public passenger transport,4.00932,TJ,CH4,3.9,kg/TJ,15.636347999999998,kg +7ed3057c-844d-3e07-8697-9b203aaaeb50,SESCO,II.1.1,La Pampa,AR-L,annual,2017,gas oil combustion consumption by public passenger transport,4.00932,TJ,N2O,3.9,kg/TJ,15.636347999999998,kg +86c92e06-059c-3e42-9387-071565a595bb,SESCO,II.1.1,Mendoza,AR-M,annual,2017,gas oil combustion consumption by public passenger transport,1.19196,TJ,CO2,74100.0,kg/TJ,88324.23599999999,kg +a0568891-5f36-3c91-a71f-36ed431a340b,SESCO,II.1.1,Mendoza,AR-M,annual,2017,gas oil combustion consumption by public passenger transport,1.19196,TJ,CH4,3.9,kg/TJ,4.648643999999999,kg +a0568891-5f36-3c91-a71f-36ed431a340b,SESCO,II.1.1,Mendoza,AR-M,annual,2017,gas oil combustion consumption by public passenger transport,1.19196,TJ,N2O,3.9,kg/TJ,4.648643999999999,kg +41ee3ed6-8df8-382c-888f-643cdffcdcc6,SESCO,II.1.1,Misiones,AR-N,annual,2017,gas oil combustion consumption by public passenger transport,196.78176,TJ,CO2,74100.0,kg/TJ,14581528.416,kg +77cc1b8b-32d3-35e4-8c94-36f2da1d4ed6,SESCO,II.1.1,Misiones,AR-N,annual,2017,gas oil combustion consumption by public passenger transport,196.78176,TJ,CH4,3.9,kg/TJ,767.448864,kg +77cc1b8b-32d3-35e4-8c94-36f2da1d4ed6,SESCO,II.1.1,Misiones,AR-N,annual,2017,gas oil combustion consumption by public passenger transport,196.78176,TJ,N2O,3.9,kg/TJ,767.448864,kg +a828ec74-074f-330c-992f-c4fc2e507200,SESCO,II.1.1,Neuquén,AR-Q,annual,2017,gas oil combustion consumption by public passenger transport,1.15584,TJ,CO2,74100.0,kg/TJ,85647.74399999999,kg +38097382-31fd-3b6c-998c-0f1b61652d93,SESCO,II.1.1,Neuquén,AR-Q,annual,2017,gas oil combustion consumption by public passenger transport,1.15584,TJ,CH4,3.9,kg/TJ,4.507776,kg +38097382-31fd-3b6c-998c-0f1b61652d93,SESCO,II.1.1,Neuquén,AR-Q,annual,2017,gas oil combustion consumption by public passenger transport,1.15584,TJ,N2O,3.9,kg/TJ,4.507776,kg +123ab455-e72c-35be-b5fa-2ec0a044a7dd,SESCO,II.1.1,Rio Negro,AR-R,annual,2017,gas oil combustion consumption by public passenger transport,48.83424,TJ,CO2,74100.0,kg/TJ,3618617.184,kg +cc0ce614-31c3-3bcd-a415-cefe574d87b8,SESCO,II.1.1,Rio Negro,AR-R,annual,2017,gas oil combustion consumption by public passenger transport,48.83424,TJ,CH4,3.9,kg/TJ,190.453536,kg +cc0ce614-31c3-3bcd-a415-cefe574d87b8,SESCO,II.1.1,Rio Negro,AR-R,annual,2017,gas oil combustion consumption by public passenger transport,48.83424,TJ,N2O,3.9,kg/TJ,190.453536,kg +81d68113-d191-36d2-959d-8c44c6334729,SESCO,II.1.1,Salta,AR-A,annual,2017,gas oil combustion consumption by public passenger transport,0.10836,TJ,CO2,74100.0,kg/TJ,8029.476,kg +53f60864-b496-3d8b-93da-a1aa1518f340,SESCO,II.1.1,Salta,AR-A,annual,2017,gas oil combustion consumption by public passenger transport,0.10836,TJ,CH4,3.9,kg/TJ,0.422604,kg +53f60864-b496-3d8b-93da-a1aa1518f340,SESCO,II.1.1,Salta,AR-A,annual,2017,gas oil combustion consumption by public passenger transport,0.10836,TJ,N2O,3.9,kg/TJ,0.422604,kg +f1c36709-d37a-3179-ace9-0637f6c05a1f,SESCO,II.1.1,San Juan,AR-J,annual,2017,gas oil combustion consumption by public passenger transport,0.03612,TJ,CO2,74100.0,kg/TJ,2676.4919999999997,kg +5e76d161-edcd-3406-a470-b0dd11894374,SESCO,II.1.1,San Juan,AR-J,annual,2017,gas oil combustion consumption by public passenger transport,0.03612,TJ,CH4,3.9,kg/TJ,0.140868,kg +5e76d161-edcd-3406-a470-b0dd11894374,SESCO,II.1.1,San Juan,AR-J,annual,2017,gas oil combustion consumption by public passenger transport,0.03612,TJ,N2O,3.9,kg/TJ,0.140868,kg +0e18d52a-365c-32b6-ab20-a1436128b167,SESCO,II.1.1,San Luis,AR-D,annual,2017,gas oil combustion consumption by public passenger transport,0.75852,TJ,CO2,74100.0,kg/TJ,56206.331999999995,kg +855a7003-daa5-3289-8066-fae37880133b,SESCO,II.1.1,San Luis,AR-D,annual,2017,gas oil combustion consumption by public passenger transport,0.75852,TJ,CH4,3.9,kg/TJ,2.9582279999999996,kg +855a7003-daa5-3289-8066-fae37880133b,SESCO,II.1.1,San Luis,AR-D,annual,2017,gas oil combustion consumption by public passenger transport,0.75852,TJ,N2O,3.9,kg/TJ,2.9582279999999996,kg +f0290b39-6791-3ba7-96ea-6c38acd911fc,SESCO,II.1.1,Santa Fe,AR-S,annual,2017,gas oil combustion consumption by public passenger transport,198.2988,TJ,CO2,74100.0,kg/TJ,14693941.08,kg +8bb7a877-6e9f-35c9-91e0-120d45936a1f,SESCO,II.1.1,Santa Fe,AR-S,annual,2017,gas oil combustion consumption by public passenger transport,198.2988,TJ,CH4,3.9,kg/TJ,773.36532,kg +8bb7a877-6e9f-35c9-91e0-120d45936a1f,SESCO,II.1.1,Santa Fe,AR-S,annual,2017,gas oil combustion consumption by public passenger transport,198.2988,TJ,N2O,3.9,kg/TJ,773.36532,kg +409ad42d-4625-3a07-9abd-1961858e3ed5,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2017,gas oil combustion consumption by public passenger transport,0.46956,TJ,CO2,74100.0,kg/TJ,34794.396,kg +7d6b8347-1987-39b7-b4a7-412faa4f2657,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2017,gas oil combustion consumption by public passenger transport,0.46956,TJ,CH4,3.9,kg/TJ,1.831284,kg +7d6b8347-1987-39b7-b4a7-412faa4f2657,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2017,gas oil combustion consumption by public passenger transport,0.46956,TJ,N2O,3.9,kg/TJ,1.831284,kg +47abeab0-7e36-3084-a1da-96da2595878c,SESCO,II.1.1,Tucuman,AR-T,annual,2017,gas oil combustion consumption by public passenger transport,2.67288,TJ,CO2,74100.0,kg/TJ,198060.40800000002,kg +57610bcb-d39a-3b17-8d6c-db065ac72733,SESCO,II.1.1,Tucuman,AR-T,annual,2017,gas oil combustion consumption by public passenger transport,2.67288,TJ,CH4,3.9,kg/TJ,10.424232,kg +57610bcb-d39a-3b17-8d6c-db065ac72733,SESCO,II.1.1,Tucuman,AR-T,annual,2017,gas oil combustion consumption by public passenger transport,2.67288,TJ,N2O,3.9,kg/TJ,10.424232,kg +5ca29847-2183-3dc9-b534-9731136b0383,SESCO,II.1.1,Buenos Aires,AR-B,annual,2017,gas oil combustion consumption by public passenger transport,87.30204,TJ,CO2,74100.0,kg/TJ,6469081.164000001,kg +f6c4aed4-edc3-3670-8a41-fba63863e6ac,SESCO,II.1.1,Buenos Aires,AR-B,annual,2017,gas oil combustion consumption by public passenger transport,87.30204,TJ,CH4,3.9,kg/TJ,340.477956,kg +f6c4aed4-edc3-3670-8a41-fba63863e6ac,SESCO,II.1.1,Buenos Aires,AR-B,annual,2017,gas oil combustion consumption by public passenger transport,87.30204,TJ,N2O,3.9,kg/TJ,340.477956,kg +88662fdd-e424-3c69-8d84-3f87833d3554,SESCO,II.1.1,Capital Federal,AR-C,annual,2017,gas oil combustion consumption by public passenger transport,23.2974,TJ,CO2,74100.0,kg/TJ,1726337.34,kg +542b3993-e37a-345a-b5ce-0debcc07e760,SESCO,II.1.1,Capital Federal,AR-C,annual,2017,gas oil combustion consumption by public passenger transport,23.2974,TJ,CH4,3.9,kg/TJ,90.85986,kg +542b3993-e37a-345a-b5ce-0debcc07e760,SESCO,II.1.1,Capital Federal,AR-C,annual,2017,gas oil combustion consumption by public passenger transport,23.2974,TJ,N2O,3.9,kg/TJ,90.85986,kg +99d6cc73-96ef-3908-bdbf-2390d40ac905,SESCO,II.1.1,Chaco,AR-H,annual,2017,gas oil combustion consumption by public passenger transport,0.03612,TJ,CO2,74100.0,kg/TJ,2676.4919999999997,kg +4fd51885-17e1-3f6f-abb6-0b1a2a70f00e,SESCO,II.1.1,Chaco,AR-H,annual,2017,gas oil combustion consumption by public passenger transport,0.03612,TJ,CH4,3.9,kg/TJ,0.140868,kg +4fd51885-17e1-3f6f-abb6-0b1a2a70f00e,SESCO,II.1.1,Chaco,AR-H,annual,2017,gas oil combustion consumption by public passenger transport,0.03612,TJ,N2O,3.9,kg/TJ,0.140868,kg +0d6104fd-94d3-3997-8eb4-d403eccbcb02,SESCO,II.1.1,Chubut,AR-U,annual,2017,gas oil combustion consumption by public passenger transport,9.10224,TJ,CO2,74100.0,kg/TJ,674475.984,kg +d43989ba-72a5-3743-a7e3-da93e6f02651,SESCO,II.1.1,Chubut,AR-U,annual,2017,gas oil combustion consumption by public passenger transport,9.10224,TJ,CH4,3.9,kg/TJ,35.498736,kg +d43989ba-72a5-3743-a7e3-da93e6f02651,SESCO,II.1.1,Chubut,AR-U,annual,2017,gas oil combustion consumption by public passenger transport,9.10224,TJ,N2O,3.9,kg/TJ,35.498736,kg +c5e118e1-115a-3af4-b7e8-aeef6af1e466,SESCO,II.1.1,Corrientes,AR-W,annual,2017,gas oil combustion consumption by public passenger transport,0.03612,TJ,CO2,74100.0,kg/TJ,2676.4919999999997,kg +fe070851-74ff-31b5-8b70-6122da117dd5,SESCO,II.1.1,Corrientes,AR-W,annual,2017,gas oil combustion consumption by public passenger transport,0.03612,TJ,CH4,3.9,kg/TJ,0.140868,kg +fe070851-74ff-31b5-8b70-6122da117dd5,SESCO,II.1.1,Corrientes,AR-W,annual,2017,gas oil combustion consumption by public passenger transport,0.03612,TJ,N2O,3.9,kg/TJ,0.140868,kg +1e9c1bbf-cfa6-37fd-977d-39b377b9f868,SESCO,II.1.1,Córdoba,AR-X,annual,2017,gas oil combustion consumption by public passenger transport,1.6254,TJ,CO2,74100.0,kg/TJ,120442.14,kg +3693a7bc-7bd8-30be-9552-d6f5749c09a9,SESCO,II.1.1,Córdoba,AR-X,annual,2017,gas oil combustion consumption by public passenger transport,1.6254,TJ,CH4,3.9,kg/TJ,6.33906,kg +3693a7bc-7bd8-30be-9552-d6f5749c09a9,SESCO,II.1.1,Córdoba,AR-X,annual,2017,gas oil combustion consumption by public passenger transport,1.6254,TJ,N2O,3.9,kg/TJ,6.33906,kg +8a2ab565-8480-33cc-94b5-deeec94bbeed,SESCO,II.1.1,Entre Rios,AR-E,annual,2017,gas oil combustion consumption by public passenger transport,0.03612,TJ,CO2,74100.0,kg/TJ,2676.4919999999997,kg +30287ab8-554a-3903-93ab-b6be9fc95809,SESCO,II.1.1,Entre Rios,AR-E,annual,2017,gas oil combustion consumption by public passenger transport,0.03612,TJ,CH4,3.9,kg/TJ,0.140868,kg +30287ab8-554a-3903-93ab-b6be9fc95809,SESCO,II.1.1,Entre Rios,AR-E,annual,2017,gas oil combustion consumption by public passenger transport,0.03612,TJ,N2O,3.9,kg/TJ,0.140868,kg +5ed104b2-fc3e-353d-8c16-c37d63123043,SESCO,II.1.1,La Pampa,AR-L,annual,2017,gas oil combustion consumption by public passenger transport,5.30964,TJ,CO2,74100.0,kg/TJ,393444.324,kg +040549f1-e259-3228-a736-4726834c31cf,SESCO,II.1.1,La Pampa,AR-L,annual,2017,gas oil combustion consumption by public passenger transport,5.30964,TJ,CH4,3.9,kg/TJ,20.707596,kg +040549f1-e259-3228-a736-4726834c31cf,SESCO,II.1.1,La Pampa,AR-L,annual,2017,gas oil combustion consumption by public passenger transport,5.30964,TJ,N2O,3.9,kg/TJ,20.707596,kg +14cca3ab-15f7-30c0-8660-60d68fc7b862,SESCO,II.1.1,Mendoza,AR-M,annual,2017,gas oil combustion consumption by public passenger transport,0.03612,TJ,CO2,74100.0,kg/TJ,2676.4919999999997,kg +984a4d7f-0f47-3c13-8ebc-3b59b250bc76,SESCO,II.1.1,Mendoza,AR-M,annual,2017,gas oil combustion consumption by public passenger transport,0.03612,TJ,CH4,3.9,kg/TJ,0.140868,kg +984a4d7f-0f47-3c13-8ebc-3b59b250bc76,SESCO,II.1.1,Mendoza,AR-M,annual,2017,gas oil combustion consumption by public passenger transport,0.03612,TJ,N2O,3.9,kg/TJ,0.140868,kg +03bbf370-4a85-3278-924e-3bdd0a4a194c,SESCO,II.1.1,Misiones,AR-N,annual,2017,gas oil combustion consumption by public passenger transport,1.6254,TJ,CO2,74100.0,kg/TJ,120442.14,kg +a147230f-6169-34fb-9066-5a473e398060,SESCO,II.1.1,Misiones,AR-N,annual,2017,gas oil combustion consumption by public passenger transport,1.6254,TJ,CH4,3.9,kg/TJ,6.33906,kg +a147230f-6169-34fb-9066-5a473e398060,SESCO,II.1.1,Misiones,AR-N,annual,2017,gas oil combustion consumption by public passenger transport,1.6254,TJ,N2O,3.9,kg/TJ,6.33906,kg +31acfe61-5d40-3006-a0bd-2ffe234c544b,SESCO,II.1.1,Neuquén,AR-Q,annual,2017,gas oil combustion consumption by public passenger transport,1.91436,TJ,CO2,74100.0,kg/TJ,141854.076,kg +c983443c-2734-3ce0-a966-e83096a1c10b,SESCO,II.1.1,Neuquén,AR-Q,annual,2017,gas oil combustion consumption by public passenger transport,1.91436,TJ,CH4,3.9,kg/TJ,7.466004,kg +c983443c-2734-3ce0-a966-e83096a1c10b,SESCO,II.1.1,Neuquén,AR-Q,annual,2017,gas oil combustion consumption by public passenger transport,1.91436,TJ,N2O,3.9,kg/TJ,7.466004,kg +0f220e50-9123-3734-b8bc-c8391783f175,SESCO,II.1.1,Rio Negro,AR-R,annual,2017,gas oil combustion consumption by public passenger transport,12.642,TJ,CO2,74100.0,kg/TJ,936772.2,kg +99a7a3aa-e8bb-3f2d-a4c3-df239cdc59fe,SESCO,II.1.1,Rio Negro,AR-R,annual,2017,gas oil combustion consumption by public passenger transport,12.642,TJ,CH4,3.9,kg/TJ,49.303799999999995,kg +99a7a3aa-e8bb-3f2d-a4c3-df239cdc59fe,SESCO,II.1.1,Rio Negro,AR-R,annual,2017,gas oil combustion consumption by public passenger transport,12.642,TJ,N2O,3.9,kg/TJ,49.303799999999995,kg +d1a627b5-9e09-3e53-a6ad-dea571646ce9,SESCO,II.1.1,San Luis,AR-D,annual,2017,gas oil combustion consumption by public passenger transport,0.03612,TJ,CO2,74100.0,kg/TJ,2676.4919999999997,kg +c6a9bf1d-3e70-3e85-a609-9e2f1e66173d,SESCO,II.1.1,San Luis,AR-D,annual,2017,gas oil combustion consumption by public passenger transport,0.03612,TJ,CH4,3.9,kg/TJ,0.140868,kg +c6a9bf1d-3e70-3e85-a609-9e2f1e66173d,SESCO,II.1.1,San Luis,AR-D,annual,2017,gas oil combustion consumption by public passenger transport,0.03612,TJ,N2O,3.9,kg/TJ,0.140868,kg +54ecfd19-1973-3501-9dd4-edca2e1d0325,SESCO,II.1.1,Santa Fe,AR-S,annual,2017,gas oil combustion consumption by public passenger transport,10.22196,TJ,CO2,74100.0,kg/TJ,757447.2359999999,kg +8740ce93-637c-3d99-aad5-5db1addbfeac,SESCO,II.1.1,Santa Fe,AR-S,annual,2017,gas oil combustion consumption by public passenger transport,10.22196,TJ,CH4,3.9,kg/TJ,39.865643999999996,kg +8740ce93-637c-3d99-aad5-5db1addbfeac,SESCO,II.1.1,Santa Fe,AR-S,annual,2017,gas oil combustion consumption by public passenger transport,10.22196,TJ,N2O,3.9,kg/TJ,39.865643999999996,kg +2e81bdbc-0867-3229-aecf-aa2872d28d38,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2017,gas oil combustion consumption by public passenger transport,0.03612,TJ,CO2,74100.0,kg/TJ,2676.4919999999997,kg +48da0990-3249-3c47-9984-d65d7d36f667,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2017,gas oil combustion consumption by public passenger transport,0.03612,TJ,CH4,3.9,kg/TJ,0.140868,kg +48da0990-3249-3c47-9984-d65d7d36f667,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2017,gas oil combustion consumption by public passenger transport,0.03612,TJ,N2O,3.9,kg/TJ,0.140868,kg +4342d217-5966-3509-9295-612f90685c55,SESCO,II.1.1,Tucuman,AR-T,annual,2017,gas oil combustion consumption by public passenger transport,0.07224,TJ,CO2,74100.0,kg/TJ,5352.9839999999995,kg +72b62858-a0a0-30c3-a79c-b52525c6f9e7,SESCO,II.1.1,Tucuman,AR-T,annual,2017,gas oil combustion consumption by public passenger transport,0.07224,TJ,CH4,3.9,kg/TJ,0.281736,kg +72b62858-a0a0-30c3-a79c-b52525c6f9e7,SESCO,II.1.1,Tucuman,AR-T,annual,2017,gas oil combustion consumption by public passenger transport,0.07224,TJ,N2O,3.9,kg/TJ,0.281736,kg +667b3d24-f5d6-37a2-9c1a-092fec9cfb31,SESCO,II.1.1,Chubut,AR-U,annual,2017,gas oil combustion consumption by freight transport,0.29799,TJ,CO2,74100.0,kg/TJ,22081.058999999997,kg +f00ad871-a22c-30a0-85bc-198fe004336b,SESCO,II.1.1,Chubut,AR-U,annual,2017,gas oil combustion consumption by freight transport,0.29799,TJ,CH4,3.9,kg/TJ,1.1621609999999998,kg +f00ad871-a22c-30a0-85bc-198fe004336b,SESCO,II.1.1,Chubut,AR-U,annual,2017,gas oil combustion consumption by freight transport,0.29799,TJ,N2O,3.9,kg/TJ,1.1621609999999998,kg +6d73c098-03ef-328c-8d41-11b9744de38f,SESCO,II.5.1,Buenos Aires,AR-B,annual,2017,gas oil combustion consumption by agriculture machines,467.363387484,TJ,CO2,74100.0,kg/TJ,34631627.0125644,kg +38c1c221-f4ef-3bdc-8bbe-f479df9b8911,SESCO,II.5.1,Buenos Aires,AR-B,annual,2017,gas oil combustion consumption by agriculture machines,467.363387484,TJ,CH4,3.9,kg/TJ,1822.7172111876,kg +38c1c221-f4ef-3bdc-8bbe-f479df9b8911,SESCO,II.5.1,Buenos Aires,AR-B,annual,2017,gas oil combustion consumption by agriculture machines,467.363387484,TJ,N2O,3.9,kg/TJ,1822.7172111876,kg +e2ecf921-85c2-319e-a50e-c067e29febc4,SESCO,II.5.1,Corrientes,AR-W,annual,2017,gas oil combustion consumption by agriculture machines,11.788386876,TJ,CO2,74100.0,kg/TJ,873519.4675116,kg +94777bbf-e7bb-3643-91b0-95f97b283689,SESCO,II.5.1,Corrientes,AR-W,annual,2017,gas oil combustion consumption by agriculture machines,11.788386876,TJ,CH4,3.9,kg/TJ,45.9747088164,kg +94777bbf-e7bb-3643-91b0-95f97b283689,SESCO,II.5.1,Corrientes,AR-W,annual,2017,gas oil combustion consumption by agriculture machines,11.788386876,TJ,N2O,3.9,kg/TJ,45.9747088164,kg +fd77ec79-536c-37b8-b8ba-0bf2040b8ddf,SESCO,II.5.1,Córdoba,AR-X,annual,2017,gas oil combustion consumption by agriculture machines,855.508582404,TJ,CO2,74100.0,kg/TJ,63393185.9561364,kg +a1d6234e-42b6-3dfb-9f32-5b0485a6484c,SESCO,II.5.1,Córdoba,AR-X,annual,2017,gas oil combustion consumption by agriculture machines,855.508582404,TJ,CH4,3.9,kg/TJ,3336.4834713756,kg +a1d6234e-42b6-3dfb-9f32-5b0485a6484c,SESCO,II.5.1,Córdoba,AR-X,annual,2017,gas oil combustion consumption by agriculture machines,855.508582404,TJ,N2O,3.9,kg/TJ,3336.4834713756,kg +fb25870d-3f3d-3384-ad27-f29ff120105d,SESCO,II.5.1,Entre Rios,AR-E,annual,2017,gas oil combustion consumption by agriculture machines,342.90032573999997,TJ,CO2,74100.0,kg/TJ,25408914.137333997,kg +adf2d760-1c04-3706-9d17-69c8e388552f,SESCO,II.5.1,Entre Rios,AR-E,annual,2017,gas oil combustion consumption by agriculture machines,342.90032573999997,TJ,CH4,3.9,kg/TJ,1337.311270386,kg +adf2d760-1c04-3706-9d17-69c8e388552f,SESCO,II.5.1,Entre Rios,AR-E,annual,2017,gas oil combustion consumption by agriculture machines,342.90032573999997,TJ,N2O,3.9,kg/TJ,1337.311270386,kg +cc0b3294-7541-3457-8b25-6ceefe283325,SESCO,II.5.1,La Pampa,AR-L,annual,2017,gas oil combustion consumption by agriculture machines,73.07430698399999,TJ,CO2,74100.0,kg/TJ,5414806.147514399,kg +284b4df5-c7cd-3d35-ad49-caec22356c43,SESCO,II.5.1,La Pampa,AR-L,annual,2017,gas oil combustion consumption by agriculture machines,73.07430698399999,TJ,CH4,3.9,kg/TJ,284.98979723759993,kg +284b4df5-c7cd-3d35-ad49-caec22356c43,SESCO,II.5.1,La Pampa,AR-L,annual,2017,gas oil combustion consumption by agriculture machines,73.07430698399999,TJ,N2O,3.9,kg/TJ,284.98979723759993,kg +f6f28a1d-262e-3de5-928b-f1889e6cf0fd,SESCO,II.5.1,Santa Fe,AR-S,annual,2017,gas oil combustion consumption by agriculture machines,374.200140636,TJ,CO2,74100.0,kg/TJ,27728230.421127602,kg +3001dbf1-6270-31eb-8e20-591031f0f4d3,SESCO,II.5.1,Santa Fe,AR-S,annual,2017,gas oil combustion consumption by agriculture machines,374.200140636,TJ,CH4,3.9,kg/TJ,1459.3805484804,kg +3001dbf1-6270-31eb-8e20-591031f0f4d3,SESCO,II.5.1,Santa Fe,AR-S,annual,2017,gas oil combustion consumption by agriculture machines,374.200140636,TJ,N2O,3.9,kg/TJ,1459.3805484804,kg +1f96d8c1-d935-38ec-b592-ee40e6c3a823,SESCO,II.5.1,Santiago del Estero,AR-G,annual,2017,gas oil combustion consumption by agriculture machines,211.194474372,TJ,CO2,74100.0,kg/TJ,15649510.5509652,kg +1b291c00-3ffc-3c10-8a57-963a5f1898a5,SESCO,II.5.1,Santiago del Estero,AR-G,annual,2017,gas oil combustion consumption by agriculture machines,211.194474372,TJ,CH4,3.9,kg/TJ,823.6584500508,kg +1b291c00-3ffc-3c10-8a57-963a5f1898a5,SESCO,II.5.1,Santiago del Estero,AR-G,annual,2017,gas oil combustion consumption by agriculture machines,211.194474372,TJ,N2O,3.9,kg/TJ,823.6584500508,kg +deaa53d4-a488-3699-ae8a-fc877d01c787,SESCO,II.5.1,Tucuman,AR-T,annual,2017,gas oil combustion consumption by agriculture machines,28.711921643999997,TJ,CO2,74100.0,kg/TJ,2127553.3938204,kg +e2f7da78-1741-3182-9b66-767a4369d851,SESCO,II.5.1,Tucuman,AR-T,annual,2017,gas oil combustion consumption by agriculture machines,28.711921643999997,TJ,CH4,3.9,kg/TJ,111.97649441159999,kg +e2f7da78-1741-3182-9b66-767a4369d851,SESCO,II.5.1,Tucuman,AR-T,annual,2017,gas oil combustion consumption by agriculture machines,28.711921643999997,TJ,N2O,3.9,kg/TJ,111.97649441159999,kg +671985f7-a3f7-32ba-bace-519cf1ea63e2,SESCO,II.5.1,Buenos Aires,AR-B,annual,2017,gas oil combustion consumption by agriculture machines,7.100119236,TJ,CO2,74100.0,kg/TJ,526118.8353876,kg +af315541-e7dd-3b2e-b062-0a1c33e73244,SESCO,II.5.1,Buenos Aires,AR-B,annual,2017,gas oil combustion consumption by agriculture machines,7.100119236,TJ,CH4,3.9,kg/TJ,27.6904650204,kg +af315541-e7dd-3b2e-b062-0a1c33e73244,SESCO,II.5.1,Buenos Aires,AR-B,annual,2017,gas oil combustion consumption by agriculture machines,7.100119236,TJ,N2O,3.9,kg/TJ,27.6904650204,kg +9f70f44c-680a-3bd9-b7ef-f2ca4523f947,SESCO,II.5.1,Córdoba,AR-X,annual,2017,gas oil combustion consumption by agriculture machines,17.760294299999998,TJ,CO2,74100.0,kg/TJ,1316037.80763,kg +dea0a157-c998-319d-8635-f0890c8ccaa8,SESCO,II.5.1,Córdoba,AR-X,annual,2017,gas oil combustion consumption by agriculture machines,17.760294299999998,TJ,CH4,3.9,kg/TJ,69.26514776999998,kg +dea0a157-c998-319d-8635-f0890c8ccaa8,SESCO,II.5.1,Córdoba,AR-X,annual,2017,gas oil combustion consumption by agriculture machines,17.760294299999998,TJ,N2O,3.9,kg/TJ,69.26514776999998,kg +58e3e9e7-41f6-3bf0-baab-3f4d81f787fe,SESCO,II.5.1,Entre Rios,AR-E,annual,2017,gas oil combustion consumption by agriculture machines,16.482701004,TJ,CO2,74100.0,kg/TJ,1221368.1443963998,kg +def0347a-7740-356e-a4eb-396a857e601d,SESCO,II.5.1,Entre Rios,AR-E,annual,2017,gas oil combustion consumption by agriculture machines,16.482701004,TJ,CH4,3.9,kg/TJ,64.2825339156,kg +def0347a-7740-356e-a4eb-396a857e601d,SESCO,II.5.1,Entre Rios,AR-E,annual,2017,gas oil combustion consumption by agriculture machines,16.482701004,TJ,N2O,3.9,kg/TJ,64.2825339156,kg +8a926e06-c581-36d6-b9c9-a766fbe2d2af,SESCO,II.5.1,La Pampa,AR-L,annual,2017,gas oil combustion consumption by agriculture machines,20.197267355999998,TJ,CO2,74100.0,kg/TJ,1496617.5110795998,kg +19c8886e-0be8-3619-92bf-0cc036eea0ad,SESCO,II.5.1,La Pampa,AR-L,annual,2017,gas oil combustion consumption by agriculture machines,20.197267355999998,TJ,CH4,3.9,kg/TJ,78.76934268839999,kg +19c8886e-0be8-3619-92bf-0cc036eea0ad,SESCO,II.5.1,La Pampa,AR-L,annual,2017,gas oil combustion consumption by agriculture machines,20.197267355999998,TJ,N2O,3.9,kg/TJ,78.76934268839999,kg +08abfe3b-f7d1-3e67-82e3-7f1bde2554bd,SESCO,II.5.1,Santa Fe,AR-S,annual,2017,gas oil combustion consumption by agriculture machines,13.977262488,TJ,CO2,74100.0,kg/TJ,1035715.1503608,kg +282aa95a-6b3d-3702-90ec-d96b12f51f90,SESCO,II.5.1,Santa Fe,AR-S,annual,2017,gas oil combustion consumption by agriculture machines,13.977262488,TJ,CH4,3.9,kg/TJ,54.5113237032,kg +282aa95a-6b3d-3702-90ec-d96b12f51f90,SESCO,II.5.1,Santa Fe,AR-S,annual,2017,gas oil combustion consumption by agriculture machines,13.977262488,TJ,N2O,3.9,kg/TJ,54.5113237032,kg +3c3934b2-458f-3407-9bdc-cd94f84d67e3,SESCO,II.1.1,Buenos Aires,AR-B,annual,2017,gas oil combustion consumption by to the public,2517.8647531799998,TJ,CO2,74100.0,kg/TJ,186573778.210638,kg +17973780-7467-3d65-9f15-632d44b3146d,SESCO,II.1.1,Buenos Aires,AR-B,annual,2017,gas oil combustion consumption by to the public,2517.8647531799998,TJ,CH4,3.9,kg/TJ,9819.672537401999,kg +17973780-7467-3d65-9f15-632d44b3146d,SESCO,II.1.1,Buenos Aires,AR-B,annual,2017,gas oil combustion consumption by to the public,2517.8647531799998,TJ,N2O,3.9,kg/TJ,9819.672537401999,kg +75183ccb-17e3-311f-91c4-5ca92e5c0b88,SESCO,II.1.1,Capital Federal,AR-C,annual,2017,gas oil combustion consumption by to the public,226.92128129999998,TJ,CO2,74100.0,kg/TJ,16814866.94433,kg +79391b4f-df1b-3c0d-8dfc-662450bcb652,SESCO,II.1.1,Capital Federal,AR-C,annual,2017,gas oil combustion consumption by to the public,226.92128129999998,TJ,CH4,3.9,kg/TJ,884.9929970699999,kg +79391b4f-df1b-3c0d-8dfc-662450bcb652,SESCO,II.1.1,Capital Federal,AR-C,annual,2017,gas oil combustion consumption by to the public,226.92128129999998,TJ,N2O,3.9,kg/TJ,884.9929970699999,kg +6546f74b-e853-3355-807e-d16c95783217,SESCO,II.1.1,Catamarca,AR-K,annual,2017,gas oil combustion consumption by to the public,89.875095156,TJ,CO2,74100.0,kg/TJ,6659744.5510596,kg +d4f180a3-cd0a-3172-b7fc-fbaf9db3165e,SESCO,II.1.1,Catamarca,AR-K,annual,2017,gas oil combustion consumption by to the public,89.875095156,TJ,CH4,3.9,kg/TJ,350.5128711084,kg +d4f180a3-cd0a-3172-b7fc-fbaf9db3165e,SESCO,II.1.1,Catamarca,AR-K,annual,2017,gas oil combustion consumption by to the public,89.875095156,TJ,N2O,3.9,kg/TJ,350.5128711084,kg +77b13d53-f5a6-3411-b7fa-c64689eb1716,SESCO,II.1.1,Chaco,AR-H,annual,2017,gas oil combustion consumption by to the public,468.94604307599997,TJ,CO2,74100.0,kg/TJ,34748901.7919316,kg +fdae94bd-56c6-314d-9127-df647cdcc376,SESCO,II.1.1,Chaco,AR-H,annual,2017,gas oil combustion consumption by to the public,468.94604307599997,TJ,CH4,3.9,kg/TJ,1828.8895679963998,kg +fdae94bd-56c6-314d-9127-df647cdcc376,SESCO,II.1.1,Chaco,AR-H,annual,2017,gas oil combustion consumption by to the public,468.94604307599997,TJ,N2O,3.9,kg/TJ,1828.8895679963998,kg +6d44861b-6587-3ba5-8e86-286e55e51aeb,SESCO,II.1.1,Corrientes,AR-W,annual,2017,gas oil combustion consumption by to the public,372.72020310000005,TJ,CO2,74100.0,kg/TJ,27618567.04971,kg +ea3e6fe2-40ba-3d03-8e15-8dc64a781cc8,SESCO,II.1.1,Corrientes,AR-W,annual,2017,gas oil combustion consumption by to the public,372.72020310000005,TJ,CH4,3.9,kg/TJ,1453.6087920900002,kg +ea3e6fe2-40ba-3d03-8e15-8dc64a781cc8,SESCO,II.1.1,Corrientes,AR-W,annual,2017,gas oil combustion consumption by to the public,372.72020310000005,TJ,N2O,3.9,kg/TJ,1453.6087920900002,kg +a55b278d-0f82-3b57-9390-05611ab09cee,SESCO,II.1.1,Córdoba,AR-X,annual,2017,gas oil combustion consumption by to the public,1684.8493625879998,TJ,CO2,74100.0,kg/TJ,124847337.76777078,kg +0414c9ff-a1da-365b-ab94-30f670f78e0c,SESCO,II.1.1,Córdoba,AR-X,annual,2017,gas oil combustion consumption by to the public,1684.8493625879998,TJ,CH4,3.9,kg/TJ,6570.912514093199,kg +0414c9ff-a1da-365b-ab94-30f670f78e0c,SESCO,II.1.1,Córdoba,AR-X,annual,2017,gas oil combustion consumption by to the public,1684.8493625879998,TJ,N2O,3.9,kg/TJ,6570.912514093199,kg +120ebc60-d69b-35c8-9ffb-85cd75405cbc,SESCO,II.1.1,Entre Rios,AR-E,annual,2017,gas oil combustion consumption by to the public,759.9520424159999,TJ,CO2,74100.0,kg/TJ,56312446.343025595,kg +a01805a1-d9a9-3696-9ecc-2a06ca626396,SESCO,II.1.1,Entre Rios,AR-E,annual,2017,gas oil combustion consumption by to the public,759.9520424159999,TJ,CH4,3.9,kg/TJ,2963.8129654223994,kg +a01805a1-d9a9-3696-9ecc-2a06ca626396,SESCO,II.1.1,Entre Rios,AR-E,annual,2017,gas oil combustion consumption by to the public,759.9520424159999,TJ,N2O,3.9,kg/TJ,2963.8129654223994,kg +b22607bf-cc77-3e65-a7a7-0905af5496e3,SESCO,II.1.1,Jujuy,AR-Y,annual,2017,gas oil combustion consumption by to the public,48.17728944,TJ,CO2,74100.0,kg/TJ,3569937.147504,kg +f273138e-c4fb-3ca9-bf67-44116a2f546e,SESCO,II.1.1,Jujuy,AR-Y,annual,2017,gas oil combustion consumption by to the public,48.17728944,TJ,CH4,3.9,kg/TJ,187.891428816,kg +f273138e-c4fb-3ca9-bf67-44116a2f546e,SESCO,II.1.1,Jujuy,AR-Y,annual,2017,gas oil combustion consumption by to the public,48.17728944,TJ,N2O,3.9,kg/TJ,187.891428816,kg +d2696f97-8ab4-366a-bb3e-f798e76da0e9,SESCO,II.1.1,La Pampa,AR-L,annual,2017,gas oil combustion consumption by to the public,39.048215891999995,TJ,CO2,74100.0,kg/TJ,2893472.7975971997,kg +259b22df-e0f8-385b-ad83-af157acb0afa,SESCO,II.1.1,La Pampa,AR-L,annual,2017,gas oil combustion consumption by to the public,39.048215891999995,TJ,CH4,3.9,kg/TJ,152.28804197879998,kg +259b22df-e0f8-385b-ad83-af157acb0afa,SESCO,II.1.1,La Pampa,AR-L,annual,2017,gas oil combustion consumption by to the public,39.048215891999995,TJ,N2O,3.9,kg/TJ,152.28804197879998,kg +63865c6f-b905-3db5-be35-b31d7ee9b39d,SESCO,II.1.1,La Rioja,AR-F,annual,2017,gas oil combustion consumption by to the public,41.07423726,TJ,CO2,74100.0,kg/TJ,3043600.980966,kg +7586a60f-44de-35f3-98bf-ac804676b402,SESCO,II.1.1,La Rioja,AR-F,annual,2017,gas oil combustion consumption by to the public,41.07423726,TJ,CH4,3.9,kg/TJ,160.18952531399998,kg +7586a60f-44de-35f3-98bf-ac804676b402,SESCO,II.1.1,La Rioja,AR-F,annual,2017,gas oil combustion consumption by to the public,41.07423726,TJ,N2O,3.9,kg/TJ,160.18952531399998,kg +58c09546-2b2d-30c9-a7d1-f1e4cbceb9a6,SESCO,II.1.1,Mendoza,AR-M,annual,2017,gas oil combustion consumption by to the public,320.061436632,TJ,CO2,74100.0,kg/TJ,23716552.4544312,kg +5a0fbebc-d91b-385f-8e27-1b1c76c4345d,SESCO,II.1.1,Mendoza,AR-M,annual,2017,gas oil combustion consumption by to the public,320.061436632,TJ,CH4,3.9,kg/TJ,1248.2396028648,kg +5a0fbebc-d91b-385f-8e27-1b1c76c4345d,SESCO,II.1.1,Mendoza,AR-M,annual,2017,gas oil combustion consumption by to the public,320.061436632,TJ,N2O,3.9,kg/TJ,1248.2396028648,kg +d5f96f45-2ab1-3651-84c7-29f5777a7b3a,SESCO,II.1.1,Misiones,AR-N,annual,2017,gas oil combustion consumption by to the public,376.322790228,TJ,CO2,74100.0,kg/TJ,27885518.7558948,kg +39c1c1a8-92f7-3d35-9b7e-5f69150d632e,SESCO,II.1.1,Misiones,AR-N,annual,2017,gas oil combustion consumption by to the public,376.322790228,TJ,CH4,3.9,kg/TJ,1467.6588818891998,kg +39c1c1a8-92f7-3d35-9b7e-5f69150d632e,SESCO,II.1.1,Misiones,AR-N,annual,2017,gas oil combustion consumption by to the public,376.322790228,TJ,N2O,3.9,kg/TJ,1467.6588818891998,kg +444d8deb-641a-3090-8eb6-d34ba6a67c36,SESCO,II.1.1,San Juan,AR-J,annual,2017,gas oil combustion consumption by to the public,377.966297184,TJ,CO2,74100.0,kg/TJ,28007302.6213344,kg +3edc5770-dff1-3797-83fb-a81fb566e45e,SESCO,II.1.1,San Juan,AR-J,annual,2017,gas oil combustion consumption by to the public,377.966297184,TJ,CH4,3.9,kg/TJ,1474.0685590176,kg +3edc5770-dff1-3797-83fb-a81fb566e45e,SESCO,II.1.1,San Juan,AR-J,annual,2017,gas oil combustion consumption by to the public,377.966297184,TJ,N2O,3.9,kg/TJ,1474.0685590176,kg +4172cc1d-ff51-363e-89da-7bf26d631504,SESCO,II.1.1,San Luis,AR-D,annual,2017,gas oil combustion consumption by to the public,261.490620804,TJ,CO2,74100.0,kg/TJ,19376455.0015764,kg +6f40cbb9-3ad2-3322-a22a-e016fe605f82,SESCO,II.1.1,San Luis,AR-D,annual,2017,gas oil combustion consumption by to the public,261.490620804,TJ,CH4,3.9,kg/TJ,1019.8134211356,kg +6f40cbb9-3ad2-3322-a22a-e016fe605f82,SESCO,II.1.1,San Luis,AR-D,annual,2017,gas oil combustion consumption by to the public,261.490620804,TJ,N2O,3.9,kg/TJ,1019.8134211356,kg +848fa7cc-706c-3f79-991a-fde276352c2f,SESCO,II.1.1,Santa Fe,AR-S,annual,2017,gas oil combustion consumption by to the public,2542.862603316,TJ,CO2,74100.0,kg/TJ,188426118.90571558,kg +52b4fc9f-b843-302b-873a-30fb163d145a,SESCO,II.1.1,Santa Fe,AR-S,annual,2017,gas oil combustion consumption by to the public,2542.862603316,TJ,CH4,3.9,kg/TJ,9917.164152932399,kg +52b4fc9f-b843-302b-873a-30fb163d145a,SESCO,II.1.1,Santa Fe,AR-S,annual,2017,gas oil combustion consumption by to the public,2542.862603316,TJ,N2O,3.9,kg/TJ,9917.164152932399,kg +7195642c-9067-3fef-99d2-74b825c451b1,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2017,gas oil combustion consumption by to the public,158.302625544,TJ,CO2,74100.0,kg/TJ,11730224.552810399,kg +d9b013e1-eb9f-3afa-b5e3-8dfabdd48d9d,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2017,gas oil combustion consumption by to the public,158.302625544,TJ,CH4,3.9,kg/TJ,617.3802396215999,kg +d9b013e1-eb9f-3afa-b5e3-8dfabdd48d9d,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2017,gas oil combustion consumption by to the public,158.302625544,TJ,N2O,3.9,kg/TJ,617.3802396215999,kg +77337eac-cbeb-3264-8b46-7c950b3d917e,SESCO,II.1.1,Tucuman,AR-T,annual,2017,gas oil combustion consumption by to the public,308.978086872,TJ,CO2,74100.0,kg/TJ,22895276.2372152,kg +92c6f33c-e7bc-3894-a6e6-e8d9af2f8bc3,SESCO,II.1.1,Tucuman,AR-T,annual,2017,gas oil combustion consumption by to the public,308.978086872,TJ,CH4,3.9,kg/TJ,1205.0145388008,kg +92c6f33c-e7bc-3894-a6e6-e8d9af2f8bc3,SESCO,II.1.1,Tucuman,AR-T,annual,2017,gas oil combustion consumption by to the public,308.978086872,TJ,N2O,3.9,kg/TJ,1205.0145388008,kg +f6cee6e1-b112-3d5f-8c36-3ee4c300a6a2,SESCO,II.1.1,Buenos Aires,AR-B,annual,2017,gas oil combustion consumption by to the public,569.1673510319999,TJ,CO2,74100.0,kg/TJ,42175300.71147119,kg +cd2f53e4-7dad-36c5-b54d-8674d3687074,SESCO,II.1.1,Buenos Aires,AR-B,annual,2017,gas oil combustion consumption by to the public,569.1673510319999,TJ,CH4,3.9,kg/TJ,2219.7526690247996,kg +cd2f53e4-7dad-36c5-b54d-8674d3687074,SESCO,II.1.1,Buenos Aires,AR-B,annual,2017,gas oil combustion consumption by to the public,569.1673510319999,TJ,N2O,3.9,kg/TJ,2219.7526690247996,kg +3934b57a-138e-3720-ae10-87230615d8c7,SESCO,II.1.1,Capital Federal,AR-C,annual,2017,gas oil combustion consumption by to the public,41.673919559999995,TJ,CO2,74100.0,kg/TJ,3088037.4393959995,kg +db483172-9a84-3d65-8d4c-51eb62315be8,SESCO,II.1.1,Capital Federal,AR-C,annual,2017,gas oil combustion consumption by to the public,41.673919559999995,TJ,CH4,3.9,kg/TJ,162.52828628399996,kg +db483172-9a84-3d65-8d4c-51eb62315be8,SESCO,II.1.1,Capital Federal,AR-C,annual,2017,gas oil combustion consumption by to the public,41.673919559999995,TJ,N2O,3.9,kg/TJ,162.52828628399996,kg +ac0fdd64-7e0e-34f9-8fb2-74fae44d935c,SESCO,II.1.1,Catamarca,AR-K,annual,2017,gas oil combustion consumption by to the public,46.124542884,TJ,CO2,74100.0,kg/TJ,3417828.6277044,kg +6ffa2ac0-3b50-3d57-99fd-04f7d2cb3b13,SESCO,II.1.1,Catamarca,AR-K,annual,2017,gas oil combustion consumption by to the public,46.124542884,TJ,CH4,3.9,kg/TJ,179.88571724759998,kg +6ffa2ac0-3b50-3d57-99fd-04f7d2cb3b13,SESCO,II.1.1,Catamarca,AR-K,annual,2017,gas oil combustion consumption by to the public,46.124542884,TJ,N2O,3.9,kg/TJ,179.88571724759998,kg +f0f9502c-239f-361a-a89e-8cf3557d199b,SESCO,II.1.1,Chaco,AR-H,annual,2017,gas oil combustion consumption by to the public,76.168750728,TJ,CO2,74100.0,kg/TJ,5644104.4289448,kg +b71b5b26-058c-34ca-8e78-f82d7d672f0b,SESCO,II.1.1,Chaco,AR-H,annual,2017,gas oil combustion consumption by to the public,76.168750728,TJ,CH4,3.9,kg/TJ,297.05812783920004,kg +b71b5b26-058c-34ca-8e78-f82d7d672f0b,SESCO,II.1.1,Chaco,AR-H,annual,2017,gas oil combustion consumption by to the public,76.168750728,TJ,N2O,3.9,kg/TJ,297.05812783920004,kg +4ddb3666-ba40-3908-ab55-10e8f3b62e32,SESCO,II.1.1,Corrientes,AR-W,annual,2017,gas oil combustion consumption by to the public,115.879815576,TJ,CO2,74100.0,kg/TJ,8586694.3341816,kg +79e2afe2-b2f6-3137-bc0c-1a14830c3445,SESCO,II.1.1,Corrientes,AR-W,annual,2017,gas oil combustion consumption by to the public,115.879815576,TJ,CH4,3.9,kg/TJ,451.9312807464,kg +79e2afe2-b2f6-3137-bc0c-1a14830c3445,SESCO,II.1.1,Corrientes,AR-W,annual,2017,gas oil combustion consumption by to the public,115.879815576,TJ,N2O,3.9,kg/TJ,451.9312807464,kg +58d366c8-a77d-3aed-bdeb-208324820904,SESCO,II.1.1,Córdoba,AR-X,annual,2017,gas oil combustion consumption by to the public,310.24598917199995,TJ,CO2,74100.0,kg/TJ,22989227.797645196,kg +4aa82dc7-a447-33b9-a1c0-68f5a1d19e3e,SESCO,II.1.1,Córdoba,AR-X,annual,2017,gas oil combustion consumption by to the public,310.24598917199995,TJ,CH4,3.9,kg/TJ,1209.9593577708,kg +4aa82dc7-a447-33b9-a1c0-68f5a1d19e3e,SESCO,II.1.1,Córdoba,AR-X,annual,2017,gas oil combustion consumption by to the public,310.24598917199995,TJ,N2O,3.9,kg/TJ,1209.9593577708,kg +fd36b9a2-dec2-3383-be6e-05e3af4cf5ed,SESCO,II.1.1,Entre Rios,AR-E,annual,2017,gas oil combustion consumption by to the public,119.879332608,TJ,CO2,74100.0,kg/TJ,8883058.5462528,kg +42750d0a-257d-36d2-a2b7-2c4a571aa298,SESCO,II.1.1,Entre Rios,AR-E,annual,2017,gas oil combustion consumption by to the public,119.879332608,TJ,CH4,3.9,kg/TJ,467.5293971712,kg +42750d0a-257d-36d2-a2b7-2c4a571aa298,SESCO,II.1.1,Entre Rios,AR-E,annual,2017,gas oil combustion consumption by to the public,119.879332608,TJ,N2O,3.9,kg/TJ,467.5293971712,kg +e3ce1084-efb0-3bc4-a165-f1d5f4d919b0,SESCO,II.1.1,La Pampa,AR-L,annual,2017,gas oil combustion consumption by to the public,9.426919068,TJ,CO2,74100.0,kg/TJ,698534.7029388,kg +1d52f3f3-e0ac-398e-bb02-53d8b5e3be99,SESCO,II.1.1,La Pampa,AR-L,annual,2017,gas oil combustion consumption by to the public,9.426919068,TJ,CH4,3.9,kg/TJ,36.7649843652,kg +1d52f3f3-e0ac-398e-bb02-53d8b5e3be99,SESCO,II.1.1,La Pampa,AR-L,annual,2017,gas oil combustion consumption by to the public,9.426919068,TJ,N2O,3.9,kg/TJ,36.7649843652,kg +947fe27f-c608-3e8e-9486-daf3d4e7d2ed,SESCO,II.1.1,La Rioja,AR-F,annual,2017,gas oil combustion consumption by to the public,17.10610692,TJ,CO2,74100.0,kg/TJ,1267562.522772,kg +59725a8e-4661-3b43-83eb-6ee5892aed63,SESCO,II.1.1,La Rioja,AR-F,annual,2017,gas oil combustion consumption by to the public,17.10610692,TJ,CH4,3.9,kg/TJ,66.71381698799999,kg +59725a8e-4661-3b43-83eb-6ee5892aed63,SESCO,II.1.1,La Rioja,AR-F,annual,2017,gas oil combustion consumption by to the public,17.10610692,TJ,N2O,3.9,kg/TJ,66.71381698799999,kg +3a249c37-3c8a-3268-b4cd-2642584d8379,SESCO,II.1.1,Mendoza,AR-M,annual,2017,gas oil combustion consumption by to the public,78.680640276,TJ,CO2,74100.0,kg/TJ,5830235.4444516,kg +055d1cb7-a135-3cc4-a0e5-c5bdca0f9ddb,SESCO,II.1.1,Mendoza,AR-M,annual,2017,gas oil combustion consumption by to the public,78.680640276,TJ,CH4,3.9,kg/TJ,306.85449707640004,kg +055d1cb7-a135-3cc4-a0e5-c5bdca0f9ddb,SESCO,II.1.1,Mendoza,AR-M,annual,2017,gas oil combustion consumption by to the public,78.680640276,TJ,N2O,3.9,kg/TJ,306.85449707640004,kg +46812913-ff11-3ce5-a292-a2464cc34331,SESCO,II.1.1,Misiones,AR-N,annual,2017,gas oil combustion consumption by to the public,94.657780476,TJ,CO2,74100.0,kg/TJ,7014141.5332716,kg +acff14bd-0ad9-3abb-91ef-a9caf0bc5054,SESCO,II.1.1,Misiones,AR-N,annual,2017,gas oil combustion consumption by to the public,94.657780476,TJ,CH4,3.9,kg/TJ,369.1653438564,kg +acff14bd-0ad9-3abb-91ef-a9caf0bc5054,SESCO,II.1.1,Misiones,AR-N,annual,2017,gas oil combustion consumption by to the public,94.657780476,TJ,N2O,3.9,kg/TJ,369.1653438564,kg +29677650-0131-31c2-81ee-d6de8320354e,SESCO,II.1.1,San Juan,AR-J,annual,2017,gas oil combustion consumption by to the public,56.76173118,TJ,CO2,74100.0,kg/TJ,4206044.280437999,kg +4efbb857-930f-33ad-82a0-31f1e23bd1ea,SESCO,II.1.1,San Juan,AR-J,annual,2017,gas oil combustion consumption by to the public,56.76173118,TJ,CH4,3.9,kg/TJ,221.37075160199998,kg +4efbb857-930f-33ad-82a0-31f1e23bd1ea,SESCO,II.1.1,San Juan,AR-J,annual,2017,gas oil combustion consumption by to the public,56.76173118,TJ,N2O,3.9,kg/TJ,221.37075160199998,kg +9f291ba5-9b63-33a1-b5ac-dbf3fb807326,SESCO,II.1.1,San Luis,AR-D,annual,2017,gas oil combustion consumption by to the public,63.411553211999994,TJ,CO2,74100.0,kg/TJ,4698796.0930092,kg +61e59f30-f4fe-3165-820f-65111a42aa0a,SESCO,II.1.1,San Luis,AR-D,annual,2017,gas oil combustion consumption by to the public,63.411553211999994,TJ,CH4,3.9,kg/TJ,247.30505752679997,kg +61e59f30-f4fe-3165-820f-65111a42aa0a,SESCO,II.1.1,San Luis,AR-D,annual,2017,gas oil combustion consumption by to the public,63.411553211999994,TJ,N2O,3.9,kg/TJ,247.30505752679997,kg +190be9f4-cab8-33dc-ae97-f65977b0f3f6,SESCO,II.1.1,Santa Fe,AR-S,annual,2017,gas oil combustion consumption by to the public,498.117479748,TJ,CO2,74100.0,kg/TJ,36910505.2493268,kg +2e77c7fd-6b42-3fd9-a30b-5ec24fff1483,SESCO,II.1.1,Santa Fe,AR-S,annual,2017,gas oil combustion consumption by to the public,498.117479748,TJ,CH4,3.9,kg/TJ,1942.6581710172,kg +2e77c7fd-6b42-3fd9-a30b-5ec24fff1483,SESCO,II.1.1,Santa Fe,AR-S,annual,2017,gas oil combustion consumption by to the public,498.117479748,TJ,N2O,3.9,kg/TJ,1942.6581710172,kg +39e89f72-a71a-3139-b79a-9a7720eda222,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2017,gas oil combustion consumption by to the public,67.89854215199999,TJ,CO2,74100.0,kg/TJ,5031281.973463199,kg +764b8efd-5da5-37f7-a36e-bcc821670c9f,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2017,gas oil combustion consumption by to the public,67.89854215199999,TJ,CH4,3.9,kg/TJ,264.80431439279994,kg +764b8efd-5da5-37f7-a36e-bcc821670c9f,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2017,gas oil combustion consumption by to the public,67.89854215199999,TJ,N2O,3.9,kg/TJ,264.80431439279994,kg +5f14aa07-a264-34bd-9061-48ee2c09cb74,SESCO,II.1.1,Tucuman,AR-T,annual,2017,gas oil combustion consumption by to the public,70.071152928,TJ,CO2,74100.0,kg/TJ,5192272.431964801,kg +d4389829-e883-30ee-b53a-d15937c36746,SESCO,II.1.1,Tucuman,AR-T,annual,2017,gas oil combustion consumption by to the public,70.071152928,TJ,CH4,3.9,kg/TJ,273.2774964192,kg +d4389829-e883-30ee-b53a-d15937c36746,SESCO,II.1.1,Tucuman,AR-T,annual,2017,gas oil combustion consumption by to the public,70.071152928,TJ,N2O,3.9,kg/TJ,273.2774964192,kg +6a2e054e-5fa8-347b-a72b-cba96c32a25f,SESCO,II.1.1,Buenos Aires,AR-B,annual,2017,gas oil combustion consumption by public passenger transport,235.69900477200002,TJ,CO2,74100.0,kg/TJ,17465296.2536052,kg +26e54846-116b-393b-a246-0e242d6a419e,SESCO,II.1.1,Buenos Aires,AR-B,annual,2017,gas oil combustion consumption by public passenger transport,235.69900477200002,TJ,CH4,3.9,kg/TJ,919.2261186108001,kg +26e54846-116b-393b-a246-0e242d6a419e,SESCO,II.1.1,Buenos Aires,AR-B,annual,2017,gas oil combustion consumption by public passenger transport,235.69900477200002,TJ,N2O,3.9,kg/TJ,919.2261186108001,kg +916ea2ad-4c30-3977-b48e-52e8962fb5b6,SESCO,II.1.1,Chaco,AR-H,annual,2017,gas oil combustion consumption by public passenger transport,18.47341146,TJ,CO2,74100.0,kg/TJ,1368879.7891860001,kg +19d7d05f-e589-3aa7-a602-11c811a1a396,SESCO,II.1.1,Chaco,AR-H,annual,2017,gas oil combustion consumption by public passenger transport,18.47341146,TJ,CH4,3.9,kg/TJ,72.046304694,kg +19d7d05f-e589-3aa7-a602-11c811a1a396,SESCO,II.1.1,Chaco,AR-H,annual,2017,gas oil combustion consumption by public passenger transport,18.47341146,TJ,N2O,3.9,kg/TJ,72.046304694,kg +2bc4fac9-d5a5-3c26-ac3f-17e2724922d0,SESCO,II.1.1,Corrientes,AR-W,annual,2017,gas oil combustion consumption by public passenger transport,40.182221352,TJ,CO2,74100.0,kg/TJ,2977502.6021832,kg +bdf8bfc6-b181-3ce5-9330-e67dcf169442,SESCO,II.1.1,Corrientes,AR-W,annual,2017,gas oil combustion consumption by public passenger transport,40.182221352,TJ,CH4,3.9,kg/TJ,156.7106632728,kg +bdf8bfc6-b181-3ce5-9330-e67dcf169442,SESCO,II.1.1,Corrientes,AR-W,annual,2017,gas oil combustion consumption by public passenger transport,40.182221352,TJ,N2O,3.9,kg/TJ,156.7106632728,kg +c5c85e13-78f5-3b20-b6f9-6ab99f2988c0,SESCO,II.1.1,Córdoba,AR-X,annual,2017,gas oil combustion consumption by public passenger transport,313.29673493999996,TJ,CO2,74100.0,kg/TJ,23215288.059054,kg +98c4f4e3-d815-35fb-9a6e-3150207d6153,SESCO,II.1.1,Córdoba,AR-X,annual,2017,gas oil combustion consumption by public passenger transport,313.29673493999996,TJ,CH4,3.9,kg/TJ,1221.857266266,kg +98c4f4e3-d815-35fb-9a6e-3150207d6153,SESCO,II.1.1,Córdoba,AR-X,annual,2017,gas oil combustion consumption by public passenger transport,313.29673493999996,TJ,N2O,3.9,kg/TJ,1221.857266266,kg +ee8b0e27-d952-3ed7-ba1d-cab3ea52ea1e,SESCO,II.1.1,Entre Rios,AR-E,annual,2017,gas oil combustion consumption by public passenger transport,94.01039449199999,TJ,CO2,74100.0,kg/TJ,6966170.231857199,kg +4663b242-6423-3aaa-81b2-69a7568480bf,SESCO,II.1.1,Entre Rios,AR-E,annual,2017,gas oil combustion consumption by public passenger transport,94.01039449199999,TJ,CH4,3.9,kg/TJ,366.64053851879993,kg +4663b242-6423-3aaa-81b2-69a7568480bf,SESCO,II.1.1,Entre Rios,AR-E,annual,2017,gas oil combustion consumption by public passenger transport,94.01039449199999,TJ,N2O,3.9,kg/TJ,366.64053851879993,kg +cb97370c-8d7c-325f-a6f4-4472c9d61f21,SESCO,II.1.1,Jujuy,AR-Y,annual,2017,gas oil combustion consumption by public passenger transport,101.284301496,TJ,CO2,74100.0,kg/TJ,7505166.7408536,kg +73a3441c-a88a-312e-8b5a-087ee2ccbebc,SESCO,II.1.1,Jujuy,AR-Y,annual,2017,gas oil combustion consumption by public passenger transport,101.284301496,TJ,CH4,3.9,kg/TJ,395.00877583439996,kg +73a3441c-a88a-312e-8b5a-087ee2ccbebc,SESCO,II.1.1,Jujuy,AR-Y,annual,2017,gas oil combustion consumption by public passenger transport,101.284301496,TJ,N2O,3.9,kg/TJ,395.00877583439996,kg +bc35bbd7-646f-38f5-b152-3da313ef19f0,SESCO,II.1.1,Salta,AR-A,annual,2017,gas oil combustion consumption by public passenger transport,77.558623044,TJ,CO2,74100.0,kg/TJ,5747093.9675604,kg +a6eba0fa-090b-3e61-a701-b807cec0b2f3,SESCO,II.1.1,Salta,AR-A,annual,2017,gas oil combustion consumption by public passenger transport,77.558623044,TJ,CH4,3.9,kg/TJ,302.4786298716,kg +a6eba0fa-090b-3e61-a701-b807cec0b2f3,SESCO,II.1.1,Salta,AR-A,annual,2017,gas oil combustion consumption by public passenger transport,77.558623044,TJ,N2O,3.9,kg/TJ,302.4786298716,kg +192d9872-76c9-3047-8600-6518c607b6d1,SESCO,II.1.1,Santa Fe,AR-S,annual,2017,gas oil combustion consumption by public passenger transport,272.668485768,TJ,CO2,74100.0,kg/TJ,20204734.7954088,kg +5d43ba6d-b1d2-368b-90a9-15ab241b066a,SESCO,II.1.1,Santa Fe,AR-S,annual,2017,gas oil combustion consumption by public passenger transport,272.668485768,TJ,CH4,3.9,kg/TJ,1063.4070944952,kg +5d43ba6d-b1d2-368b-90a9-15ab241b066a,SESCO,II.1.1,Santa Fe,AR-S,annual,2017,gas oil combustion consumption by public passenger transport,272.668485768,TJ,N2O,3.9,kg/TJ,1063.4070944952,kg +f6133e4b-e670-3ee6-a286-075b878a30a3,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2017,gas oil combustion consumption by public passenger transport,121.465567692,TJ,CO2,74100.0,kg/TJ,9000598.565977199,kg +9787019c-d09f-305b-8ef1-af6141ec1d33,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2017,gas oil combustion consumption by public passenger transport,121.465567692,TJ,CH4,3.9,kg/TJ,473.71571399879997,kg +9787019c-d09f-305b-8ef1-af6141ec1d33,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2017,gas oil combustion consumption by public passenger transport,121.465567692,TJ,N2O,3.9,kg/TJ,473.71571399879997,kg +7d77b6bb-5af9-3962-a41c-286454c6b874,SESCO,II.1.1,Tucuman,AR-T,annual,2017,gas oil combustion consumption by public passenger transport,27.257156136,TJ,CO2,74100.0,kg/TJ,2019755.2696776,kg +e90796e3-9220-3b57-a514-cae2a075f052,SESCO,II.1.1,Tucuman,AR-T,annual,2017,gas oil combustion consumption by public passenger transport,27.257156136,TJ,CH4,3.9,kg/TJ,106.3029089304,kg +e90796e3-9220-3b57-a514-cae2a075f052,SESCO,II.1.1,Tucuman,AR-T,annual,2017,gas oil combustion consumption by public passenger transport,27.257156136,TJ,N2O,3.9,kg/TJ,106.3029089304,kg +2c008d92-5298-3e9e-99f2-e1f1229900d8,SESCO,II.1.1,Buenos Aires,AR-B,annual,2017,gas oil combustion consumption by public passenger transport,23.747393796,TJ,CO2,74100.0,kg/TJ,1759681.8802836,kg +3eac7284-a543-37d1-abd5-58fe88f8da0b,SESCO,II.1.1,Buenos Aires,AR-B,annual,2017,gas oil combustion consumption by public passenger transport,23.747393796,TJ,CH4,3.9,kg/TJ,92.6148358044,kg +3eac7284-a543-37d1-abd5-58fe88f8da0b,SESCO,II.1.1,Buenos Aires,AR-B,annual,2017,gas oil combustion consumption by public passenger transport,23.747393796,TJ,N2O,3.9,kg/TJ,92.6148358044,kg +f091200c-d27d-3dd3-a2d5-93d4443306f6,SESCO,II.1.1,Corrientes,AR-W,annual,2017,gas oil combustion consumption by public passenger transport,3.98976102,TJ,CO2,74100.0,kg/TJ,295641.291582,kg +e7490413-0fe9-3956-b4d5-2b635b747e4c,SESCO,II.1.1,Corrientes,AR-W,annual,2017,gas oil combustion consumption by public passenger transport,3.98976102,TJ,CH4,3.9,kg/TJ,15.560067978,kg +e7490413-0fe9-3956-b4d5-2b635b747e4c,SESCO,II.1.1,Corrientes,AR-W,annual,2017,gas oil combustion consumption by public passenger transport,3.98976102,TJ,N2O,3.9,kg/TJ,15.560067978,kg +ba3ef0d0-30fa-3099-8e3b-7e1e1af1caeb,SESCO,II.1.1,Córdoba,AR-X,annual,2017,gas oil combustion consumption by public passenger transport,18.552691248,TJ,CO2,74100.0,kg/TJ,1374754.4214768,kg +c7b81b05-0a00-3179-8d9a-29852d2ee701,SESCO,II.1.1,Córdoba,AR-X,annual,2017,gas oil combustion consumption by public passenger transport,18.552691248,TJ,CH4,3.9,kg/TJ,72.35549586719999,kg +c7b81b05-0a00-3179-8d9a-29852d2ee701,SESCO,II.1.1,Córdoba,AR-X,annual,2017,gas oil combustion consumption by public passenger transport,18.552691248,TJ,N2O,3.9,kg/TJ,72.35549586719999,kg +76c3cc7b-8389-3ee9-b66f-ece60e927063,SESCO,II.1.1,Entre Rios,AR-E,annual,2017,gas oil combustion consumption by public passenger transport,4.567258416,TJ,CO2,74100.0,kg/TJ,338433.8486256,kg +a8e7b5e3-cb8d-37ee-bd54-6d31526bf1da,SESCO,II.1.1,Entre Rios,AR-E,annual,2017,gas oil combustion consumption by public passenger transport,4.567258416,TJ,CH4,3.9,kg/TJ,17.812307822399998,kg +a8e7b5e3-cb8d-37ee-bd54-6d31526bf1da,SESCO,II.1.1,Entre Rios,AR-E,annual,2017,gas oil combustion consumption by public passenger transport,4.567258416,TJ,N2O,3.9,kg/TJ,17.812307822399998,kg +b5a2773e-5eeb-30f3-b8e1-7b9c3a394980,SESCO,II.1.1,Jujuy,AR-Y,annual,2017,gas oil combustion consumption by public passenger transport,2.6988322200000003,TJ,CO2,74100.0,kg/TJ,199983.467502,kg +ed660806-bd64-3f19-b1e9-426b190890de,SESCO,II.1.1,Jujuy,AR-Y,annual,2017,gas oil combustion consumption by public passenger transport,2.6988322200000003,TJ,CH4,3.9,kg/TJ,10.525445658,kg +ed660806-bd64-3f19-b1e9-426b190890de,SESCO,II.1.1,Jujuy,AR-Y,annual,2017,gas oil combustion consumption by public passenger transport,2.6988322200000003,TJ,N2O,3.9,kg/TJ,10.525445658,kg +76b81b66-cfa0-3b7e-a4ae-7ea7cbfac925,SESCO,II.1.1,Santa Fe,AR-S,annual,2017,gas oil combustion consumption by public passenger transport,18.02935218,TJ,CO2,74100.0,kg/TJ,1335974.996538,kg +8ad2a584-989c-3a72-9afe-30fd83b377ea,SESCO,II.1.1,Santa Fe,AR-S,annual,2017,gas oil combustion consumption by public passenger transport,18.02935218,TJ,CH4,3.9,kg/TJ,70.314473502,kg +8ad2a584-989c-3a72-9afe-30fd83b377ea,SESCO,II.1.1,Santa Fe,AR-S,annual,2017,gas oil combustion consumption by public passenger transport,18.02935218,TJ,N2O,3.9,kg/TJ,70.314473502,kg +39d9bd17-4015-35c3-9f74-1baaa0683b6f,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2017,gas oil combustion consumption by public passenger transport,7.802093375999999,TJ,CO2,74100.0,kg/TJ,578135.1191615999,kg +f453fe8c-5ea2-388a-bbfe-510d36464c21,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2017,gas oil combustion consumption by public passenger transport,7.802093375999999,TJ,CH4,3.9,kg/TJ,30.428164166399995,kg +f453fe8c-5ea2-388a-bbfe-510d36464c21,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2017,gas oil combustion consumption by public passenger transport,7.802093375999999,TJ,N2O,3.9,kg/TJ,30.428164166399995,kg +38a3992e-f6db-3736-8238-f516fbd23647,SESCO,II.1.1,Tucuman,AR-T,annual,2017,gas oil combustion consumption by public passenger transport,3.30963948,TJ,CO2,74100.0,kg/TJ,245244.285468,kg +b27e6b8b-baba-37b8-b8a4-e68512c5b701,SESCO,II.1.1,Tucuman,AR-T,annual,2017,gas oil combustion consumption by public passenger transport,3.30963948,TJ,CH4,3.9,kg/TJ,12.907593971999999,kg +b27e6b8b-baba-37b8-b8a4-e68512c5b701,SESCO,II.1.1,Tucuman,AR-T,annual,2017,gas oil combustion consumption by public passenger transport,3.30963948,TJ,N2O,3.9,kg/TJ,12.907593971999999,kg +b339e239-2d35-387b-8338-b178b225dbff,SESCO,II.5.1,Buenos Aires,AR-B,annual,2017,gas oil combustion consumption by agriculture machines,448.42745219999995,TJ,CO2,74100.0,kg/TJ,33228474.208019998,kg +a8dc0630-4a70-305f-a770-8a843b9e3fc3,SESCO,II.5.1,Buenos Aires,AR-B,annual,2017,gas oil combustion consumption by agriculture machines,448.42745219999995,TJ,CH4,3.9,kg/TJ,1748.8670635799997,kg +a8dc0630-4a70-305f-a770-8a843b9e3fc3,SESCO,II.5.1,Buenos Aires,AR-B,annual,2017,gas oil combustion consumption by agriculture machines,448.42745219999995,TJ,N2O,3.9,kg/TJ,1748.8670635799997,kg +d56ee912-758d-3413-af99-d649532afffa,SESCO,II.5.1,Córdoba,AR-X,annual,2017,gas oil combustion consumption by agriculture machines,53.24203584,TJ,CO2,74100.0,kg/TJ,3945234.855744,kg +ea23c7fd-2102-372a-bed3-aa4b86729355,SESCO,II.5.1,Córdoba,AR-X,annual,2017,gas oil combustion consumption by agriculture machines,53.24203584,TJ,CH4,3.9,kg/TJ,207.643939776,kg +ea23c7fd-2102-372a-bed3-aa4b86729355,SESCO,II.5.1,Córdoba,AR-X,annual,2017,gas oil combustion consumption by agriculture machines,53.24203584,TJ,N2O,3.9,kg/TJ,207.643939776,kg +de4d18cc-39b4-37cb-a31c-4ec328db3f2e,SESCO,II.5.1,Entre Rios,AR-E,annual,2017,gas oil combustion consumption by agriculture machines,16.69000452,TJ,CO2,74100.0,kg/TJ,1236729.334932,kg +3ce191ee-cb85-39d0-a8fe-4e389c75d0c6,SESCO,II.5.1,Entre Rios,AR-E,annual,2017,gas oil combustion consumption by agriculture machines,16.69000452,TJ,CH4,3.9,kg/TJ,65.09101762799999,kg +3ce191ee-cb85-39d0-a8fe-4e389c75d0c6,SESCO,II.5.1,Entre Rios,AR-E,annual,2017,gas oil combustion consumption by agriculture machines,16.69000452,TJ,N2O,3.9,kg/TJ,65.09101762799999,kg +1a79708a-8ef2-3f98-8fe7-afcd23c00593,SESCO,II.5.1,La Pampa,AR-L,annual,2017,gas oil combustion consumption by agriculture machines,6.11695812,TJ,CO2,74100.0,kg/TJ,453266.596692,kg +7ed76d4f-6401-3243-a283-3dbf12fc473b,SESCO,II.5.1,La Pampa,AR-L,annual,2017,gas oil combustion consumption by agriculture machines,6.11695812,TJ,CH4,3.9,kg/TJ,23.856136667999998,kg +7ed76d4f-6401-3243-a283-3dbf12fc473b,SESCO,II.5.1,La Pampa,AR-L,annual,2017,gas oil combustion consumption by agriculture machines,6.11695812,TJ,N2O,3.9,kg/TJ,23.856136667999998,kg +0092590b-aa44-3729-b08c-94856f534d80,SESCO,II.5.1,Neuquén,AR-Q,annual,2017,gas oil combustion consumption by agriculture machines,1.2481988400000001,TJ,CO2,74100.0,kg/TJ,92491.53404400001,kg +b35fed21-ad56-3cf1-aa78-f419fabc29ee,SESCO,II.5.1,Neuquén,AR-Q,annual,2017,gas oil combustion consumption by agriculture machines,1.2481988400000001,TJ,CH4,3.9,kg/TJ,4.867975476000001,kg +b35fed21-ad56-3cf1-aa78-f419fabc29ee,SESCO,II.5.1,Neuquén,AR-Q,annual,2017,gas oil combustion consumption by agriculture machines,1.2481988400000001,TJ,N2O,3.9,kg/TJ,4.867975476000001,kg +33d3ceab-1502-3cbc-9200-5ce5c7809335,SESCO,II.5.1,Rio Negro,AR-R,annual,2017,gas oil combustion consumption by agriculture machines,2.4658762800000003,TJ,CO2,74100.0,kg/TJ,182721.43234800003,kg +9f3f8157-4943-3431-83b7-c0b3b93da2f9,SESCO,II.5.1,Rio Negro,AR-R,annual,2017,gas oil combustion consumption by agriculture machines,2.4658762800000003,TJ,CH4,3.9,kg/TJ,9.616917492,kg +9f3f8157-4943-3431-83b7-c0b3b93da2f9,SESCO,II.5.1,Rio Negro,AR-R,annual,2017,gas oil combustion consumption by agriculture machines,2.4658762800000003,TJ,N2O,3.9,kg/TJ,9.616917492,kg +e0ba5a67-084a-38ea-a5b7-30bb5eb70bc7,SESCO,II.1.1,Buenos Aires,AR-B,annual,2017,gas oil combustion consumption by to the public,8096.1690516,TJ,CO2,74100.0,kg/TJ,599926126.72356,kg +cfa8c862-7b44-3242-8cb9-94d6d5784cd2,SESCO,II.1.1,Buenos Aires,AR-B,annual,2017,gas oil combustion consumption by to the public,8096.1690516,TJ,CH4,3.9,kg/TJ,31575.05930124,kg +cfa8c862-7b44-3242-8cb9-94d6d5784cd2,SESCO,II.1.1,Buenos Aires,AR-B,annual,2017,gas oil combustion consumption by to the public,8096.1690516,TJ,N2O,3.9,kg/TJ,31575.05930124,kg +1dab5ce5-3c4b-3224-a46a-c16e443361e8,SESCO,II.1.1,Capital Federal,AR-C,annual,2017,gas oil combustion consumption by to the public,420.29257284,TJ,CO2,74100.0,kg/TJ,31143679.647444,kg +6b9adca4-917b-3d22-bbc6-486e64d3be1d,SESCO,II.1.1,Capital Federal,AR-C,annual,2017,gas oil combustion consumption by to the public,420.29257284,TJ,CH4,3.9,kg/TJ,1639.1410340759999,kg +6b9adca4-917b-3d22-bbc6-486e64d3be1d,SESCO,II.1.1,Capital Federal,AR-C,annual,2017,gas oil combustion consumption by to the public,420.29257284,TJ,N2O,3.9,kg/TJ,1639.1410340759999,kg +cdae4a1d-b4cc-393a-903c-1d831af5bd3c,SESCO,II.1.1,Chubut,AR-U,annual,2017,gas oil combustion consumption by to the public,1264.33693092,TJ,CO2,74100.0,kg/TJ,93687366.581172,kg +67558db5-c3f7-35f2-b4a2-946d7be0b6e2,SESCO,II.1.1,Chubut,AR-U,annual,2017,gas oil combustion consumption by to the public,1264.33693092,TJ,CH4,3.9,kg/TJ,4930.914030588,kg +67558db5-c3f7-35f2-b4a2-946d7be0b6e2,SESCO,II.1.1,Chubut,AR-U,annual,2017,gas oil combustion consumption by to the public,1264.33693092,TJ,N2O,3.9,kg/TJ,4930.914030588,kg +2d5bcfb4-5cd2-3d50-b0fc-a682787dbb8c,SESCO,II.1.1,Córdoba,AR-X,annual,2017,gas oil combustion consumption by to the public,426.97101636,TJ,CO2,74100.0,kg/TJ,31638552.312276002,kg +8fa4231b-5d8f-32b9-82ad-92d11e82a87e,SESCO,II.1.1,Córdoba,AR-X,annual,2017,gas oil combustion consumption by to the public,426.97101636,TJ,CH4,3.9,kg/TJ,1665.186963804,kg +8fa4231b-5d8f-32b9-82ad-92d11e82a87e,SESCO,II.1.1,Córdoba,AR-X,annual,2017,gas oil combustion consumption by to the public,426.97101636,TJ,N2O,3.9,kg/TJ,1665.186963804,kg +8783e0af-d366-3a33-b5ff-16394ac6d2e8,SESCO,II.1.1,Entre Rios,AR-E,annual,2017,gas oil combustion consumption by to the public,576.9729336,TJ,CO2,74100.0,kg/TJ,42753694.379760005,kg +c3926e83-4f8b-3b07-9a59-c42177b723a8,SESCO,II.1.1,Entre Rios,AR-E,annual,2017,gas oil combustion consumption by to the public,576.9729336,TJ,CH4,3.9,kg/TJ,2250.19444104,kg +c3926e83-4f8b-3b07-9a59-c42177b723a8,SESCO,II.1.1,Entre Rios,AR-E,annual,2017,gas oil combustion consumption by to the public,576.9729336,TJ,N2O,3.9,kg/TJ,2250.19444104,kg +e3d27de6-2a8b-3b70-8886-debf5f2002f7,SESCO,II.1.1,La Pampa,AR-L,annual,2017,gas oil combustion consumption by to the public,1453.29860256,TJ,CO2,74100.0,kg/TJ,107689426.449696,kg +85954ee6-aedb-3a69-8eb4-ce87bda43d03,SESCO,II.1.1,La Pampa,AR-L,annual,2017,gas oil combustion consumption by to the public,1453.29860256,TJ,CH4,3.9,kg/TJ,5667.864549984,kg +85954ee6-aedb-3a69-8eb4-ce87bda43d03,SESCO,II.1.1,La Pampa,AR-L,annual,2017,gas oil combustion consumption by to the public,1453.29860256,TJ,N2O,3.9,kg/TJ,5667.864549984,kg +b22a2c87-865e-3db5-9808-cdccb77a44d1,SESCO,II.1.1,Neuquén,AR-Q,annual,2017,gas oil combustion consumption by to the public,455.73644256,TJ,CO2,74100.0,kg/TJ,33770070.393696,kg +5b04e5ce-338d-3b14-8bef-905f72b99b1a,SESCO,II.1.1,Neuquén,AR-Q,annual,2017,gas oil combustion consumption by to the public,455.73644256,TJ,CH4,3.9,kg/TJ,1777.372125984,kg +5b04e5ce-338d-3b14-8bef-905f72b99b1a,SESCO,II.1.1,Neuquén,AR-Q,annual,2017,gas oil combustion consumption by to the public,455.73644256,TJ,N2O,3.9,kg/TJ,1777.372125984,kg +767a8001-9e2d-311a-9236-4cf890c3f9d3,SESCO,II.1.1,Rio Negro,AR-R,annual,2017,gas oil combustion consumption by to the public,1118.90390472,TJ,CO2,74100.0,kg/TJ,82910779.33975199,kg +b88f3976-0908-3343-a943-8b6ee0adfcda,SESCO,II.1.1,Rio Negro,AR-R,annual,2017,gas oil combustion consumption by to the public,1118.90390472,TJ,CH4,3.9,kg/TJ,4363.725228408,kg +b88f3976-0908-3343-a943-8b6ee0adfcda,SESCO,II.1.1,Rio Negro,AR-R,annual,2017,gas oil combustion consumption by to the public,1118.90390472,TJ,N2O,3.9,kg/TJ,4363.725228408,kg +33fcd8ac-70fe-31e5-a4dd-3352727f5adf,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2017,gas oil combustion consumption by to the public,702.26393076,TJ,CO2,74100.0,kg/TJ,52037757.269316,kg +c75eb2e1-970c-3feb-9a51-bb982443f0fa,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2017,gas oil combustion consumption by to the public,702.26393076,TJ,CH4,3.9,kg/TJ,2738.829329964,kg +c75eb2e1-970c-3feb-9a51-bb982443f0fa,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2017,gas oil combustion consumption by to the public,702.26393076,TJ,N2O,3.9,kg/TJ,2738.829329964,kg +e5f78164-4a91-354b-855e-975d098b05b1,SESCO,II.1.1,Santa Fe,AR-S,annual,2017,gas oil combustion consumption by to the public,365.53309967999996,TJ,CO2,74100.0,kg/TJ,27086002.686288,kg +412eceb2-84cf-336a-bc36-8a6d1ae9f11a,SESCO,II.1.1,Santa Fe,AR-S,annual,2017,gas oil combustion consumption by to the public,365.53309967999996,TJ,CH4,3.9,kg/TJ,1425.5790887519997,kg +412eceb2-84cf-336a-bc36-8a6d1ae9f11a,SESCO,II.1.1,Santa Fe,AR-S,annual,2017,gas oil combustion consumption by to the public,365.53309967999996,TJ,N2O,3.9,kg/TJ,1425.5790887519997,kg +e325f61a-6e51-3989-bd71-a539941fffa0,SESCO,II.1.1,Buenos Aires,AR-B,annual,2017,gas oil combustion consumption by to the public,1446.195135,TJ,CO2,74100.0,kg/TJ,107163059.5035,kg +264df1be-ce83-3340-bb07-16043be05be7,SESCO,II.1.1,Buenos Aires,AR-B,annual,2017,gas oil combustion consumption by to the public,1446.195135,TJ,CH4,3.9,kg/TJ,5640.1610265,kg +264df1be-ce83-3340-bb07-16043be05be7,SESCO,II.1.1,Buenos Aires,AR-B,annual,2017,gas oil combustion consumption by to the public,1446.195135,TJ,N2O,3.9,kg/TJ,5640.1610265,kg +d57463fb-0e8b-3c51-b405-a8d4c0fa59ea,SESCO,II.1.1,Capital Federal,AR-C,annual,2017,gas oil combustion consumption by to the public,126.94150056,TJ,CO2,74100.0,kg/TJ,9406365.191496,kg +041cb9d0-e534-3cce-a472-bca8e94d9814,SESCO,II.1.1,Capital Federal,AR-C,annual,2017,gas oil combustion consumption by to the public,126.94150056,TJ,CH4,3.9,kg/TJ,495.07185218399997,kg +041cb9d0-e534-3cce-a472-bca8e94d9814,SESCO,II.1.1,Capital Federal,AR-C,annual,2017,gas oil combustion consumption by to the public,126.94150056,TJ,N2O,3.9,kg/TJ,495.07185218399997,kg +485a5b90-00d2-3020-a778-7320bca1a081,SESCO,II.1.1,Chubut,AR-U,annual,2017,gas oil combustion consumption by to the public,447.00110952,TJ,CO2,74100.0,kg/TJ,33122782.215432,kg +ac61e122-fdc8-3168-8d38-c295d5cf5f47,SESCO,II.1.1,Chubut,AR-U,annual,2017,gas oil combustion consumption by to the public,447.00110952,TJ,CH4,3.9,kg/TJ,1743.304327128,kg +ac61e122-fdc8-3168-8d38-c295d5cf5f47,SESCO,II.1.1,Chubut,AR-U,annual,2017,gas oil combustion consumption by to the public,447.00110952,TJ,N2O,3.9,kg/TJ,1743.304327128,kg +5c274ae4-38f5-35de-b4b7-0868eda6eb8e,SESCO,II.1.1,Córdoba,AR-X,annual,2017,gas oil combustion consumption by to the public,120.67254948,TJ,CO2,74100.0,kg/TJ,8941835.916468,kg +f0926bc3-7aa8-35e2-96f7-6413f2ec0b49,SESCO,II.1.1,Córdoba,AR-X,annual,2017,gas oil combustion consumption by to the public,120.67254948,TJ,CH4,3.9,kg/TJ,470.622942972,kg +f0926bc3-7aa8-35e2-96f7-6413f2ec0b49,SESCO,II.1.1,Córdoba,AR-X,annual,2017,gas oil combustion consumption by to the public,120.67254948,TJ,N2O,3.9,kg/TJ,470.622942972,kg +e2889195-958a-3654-812d-adf8cdf8baad,SESCO,II.1.1,Entre Rios,AR-E,annual,2017,gas oil combustion consumption by to the public,88.93173828,TJ,CO2,74100.0,kg/TJ,6589841.806548,kg +4ad25103-6e73-3565-b4dc-46152068d3de,SESCO,II.1.1,Entre Rios,AR-E,annual,2017,gas oil combustion consumption by to the public,88.93173828,TJ,CH4,3.9,kg/TJ,346.83377929200003,kg +4ad25103-6e73-3565-b4dc-46152068d3de,SESCO,II.1.1,Entre Rios,AR-E,annual,2017,gas oil combustion consumption by to the public,88.93173828,TJ,N2O,3.9,kg/TJ,346.83377929200003,kg +7fe34696-6662-3c0e-97cd-ebf2153cf24f,SESCO,II.1.1,La Pampa,AR-L,annual,2017,gas oil combustion consumption by to the public,179.7706848,TJ,CO2,74100.0,kg/TJ,13321007.74368,kg +0bf49625-07a4-3861-b15d-002e42cdc2ef,SESCO,II.1.1,La Pampa,AR-L,annual,2017,gas oil combustion consumption by to the public,179.7706848,TJ,CH4,3.9,kg/TJ,701.1056707199999,kg +0bf49625-07a4-3861-b15d-002e42cdc2ef,SESCO,II.1.1,La Pampa,AR-L,annual,2017,gas oil combustion consumption by to the public,179.7706848,TJ,N2O,3.9,kg/TJ,701.1056707199999,kg +9235cf49-6840-3b89-baf1-c3790850826f,SESCO,II.1.1,Neuquén,AR-Q,annual,2017,gas oil combustion consumption by to the public,373.62296832,TJ,CO2,74100.0,kg/TJ,27685461.952512,kg +389f9e72-37ee-3f60-b3ac-e830ef22c364,SESCO,II.1.1,Neuquén,AR-Q,annual,2017,gas oil combustion consumption by to the public,373.62296832,TJ,CH4,3.9,kg/TJ,1457.1295764479999,kg +389f9e72-37ee-3f60-b3ac-e830ef22c364,SESCO,II.1.1,Neuquén,AR-Q,annual,2017,gas oil combustion consumption by to the public,373.62296832,TJ,N2O,3.9,kg/TJ,1457.1295764479999,kg +2cb117e8-f0e7-3850-9211-6b72541a734b,SESCO,II.1.1,Rio Negro,AR-R,annual,2017,gas oil combustion consumption by to the public,372.79990188,TJ,CO2,74100.0,kg/TJ,27624472.729307998,kg +69f70a10-64bc-3a51-95b1-e97113337832,SESCO,II.1.1,Rio Negro,AR-R,annual,2017,gas oil combustion consumption by to the public,372.79990188,TJ,CH4,3.9,kg/TJ,1453.919617332,kg +69f70a10-64bc-3a51-95b1-e97113337832,SESCO,II.1.1,Rio Negro,AR-R,annual,2017,gas oil combustion consumption by to the public,372.79990188,TJ,N2O,3.9,kg/TJ,1453.919617332,kg +b331c0a6-6b30-3335-880f-84de5926772f,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2017,gas oil combustion consumption by to the public,359.8377342,TJ,CO2,74100.0,kg/TJ,26663976.10422,kg +9a673d8f-5b23-35ec-ad53-1483e0703a22,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2017,gas oil combustion consumption by to the public,359.8377342,TJ,CH4,3.9,kg/TJ,1403.36716338,kg +9a673d8f-5b23-35ec-ad53-1483e0703a22,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2017,gas oil combustion consumption by to the public,359.8377342,TJ,N2O,3.9,kg/TJ,1403.36716338,kg +ac40451c-8615-3e73-bf84-cacd608b13a9,SESCO,II.1.1,Santa Fe,AR-S,annual,2017,gas oil combustion consumption by to the public,221.84076852,TJ,CO2,74100.0,kg/TJ,16438400.947332,kg +ce594be1-437a-3ea7-b8f1-aab5123a6141,SESCO,II.1.1,Santa Fe,AR-S,annual,2017,gas oil combustion consumption by to the public,221.84076852,TJ,CH4,3.9,kg/TJ,865.1789972280001,kg +ce594be1-437a-3ea7-b8f1-aab5123a6141,SESCO,II.1.1,Santa Fe,AR-S,annual,2017,gas oil combustion consumption by to the public,221.84076852,TJ,N2O,3.9,kg/TJ,865.1789972280001,kg +373ab054-d856-3c91-bc2f-75e08ea6f2ce,SESCO,I.3.1,Santa Cruz,AR-Z,annual,2017,gas oil combustion consumption by petrochemical industries,39.09841908,TJ,CO2,74100.0,kg/TJ,2897192.853828,kg +69571c3e-e6f7-35ae-8024-b365f1c7bd8e,SESCO,I.3.1,Santa Cruz,AR-Z,annual,2017,gas oil combustion consumption by petrochemical industries,39.09841908,TJ,CH4,3.9,kg/TJ,152.483834412,kg +69571c3e-e6f7-35ae-8024-b365f1c7bd8e,SESCO,I.3.1,Santa Cruz,AR-Z,annual,2017,gas oil combustion consumption by petrochemical industries,39.09841908,TJ,N2O,3.9,kg/TJ,152.483834412,kg +1bdc40ce-1523-302d-ab0a-f8d8f54798f0,SESCO,I.3.1,Santa Cruz,AR-Z,annual,2017,gas oil combustion consumption by petrochemical industries,0.18164748,TJ,CO2,74100.0,kg/TJ,13460.078268,kg +8facff39-9951-35f3-818b-1b335eaa476c,SESCO,I.3.1,Santa Cruz,AR-Z,annual,2017,gas oil combustion consumption by petrochemical industries,0.18164748,TJ,CH4,3.9,kg/TJ,0.708425172,kg +8facff39-9951-35f3-818b-1b335eaa476c,SESCO,I.3.1,Santa Cruz,AR-Z,annual,2017,gas oil combustion consumption by petrochemical industries,0.18164748,TJ,N2O,3.9,kg/TJ,0.708425172,kg +c71af81e-5133-3fe8-b3c3-0a828c18cb4c,SESCO,II.1.1,Buenos Aires,AR-B,annual,2017,gas oil combustion consumption by freight transport,166.24034952,TJ,CO2,74100.0,kg/TJ,12318409.899432,kg +0d6c43a8-fcd0-3290-ac63-0ecc4d003708,SESCO,II.1.1,Buenos Aires,AR-B,annual,2017,gas oil combustion consumption by freight transport,166.24034952,TJ,CH4,3.9,kg/TJ,648.337363128,kg +0d6c43a8-fcd0-3290-ac63-0ecc4d003708,SESCO,II.1.1,Buenos Aires,AR-B,annual,2017,gas oil combustion consumption by freight transport,166.24034952,TJ,N2O,3.9,kg/TJ,648.337363128,kg +8933e642-8519-3ce7-bba3-c25f66cc6684,SESCO,II.1.1,Chubut,AR-U,annual,2017,gas oil combustion consumption by freight transport,5.15078424,TJ,CO2,74100.0,kg/TJ,381673.112184,kg +667ba3a9-a8dd-3a8d-bbed-aed35989291c,SESCO,II.1.1,Chubut,AR-U,annual,2017,gas oil combustion consumption by freight transport,5.15078424,TJ,CH4,3.9,kg/TJ,20.088058536,kg +667ba3a9-a8dd-3a8d-bbed-aed35989291c,SESCO,II.1.1,Chubut,AR-U,annual,2017,gas oil combustion consumption by freight transport,5.15078424,TJ,N2O,3.9,kg/TJ,20.088058536,kg +5580f66e-dd10-3edd-8d1c-c673c62b189f,SESCO,II.1.1,San Luis,AR-D,annual,2017,gas oil combustion consumption by freight transport,34.60035936,TJ,CO2,74100.0,kg/TJ,2563886.6285759998,kg +fef94ba0-69e6-3333-9d18-c5edcdfd0fa5,SESCO,II.1.1,San Luis,AR-D,annual,2017,gas oil combustion consumption by freight transport,34.60035936,TJ,CH4,3.9,kg/TJ,134.941401504,kg +fef94ba0-69e6-3333-9d18-c5edcdfd0fa5,SESCO,II.1.1,San Luis,AR-D,annual,2017,gas oil combustion consumption by freight transport,34.60035936,TJ,N2O,3.9,kg/TJ,134.941401504,kg +7c0e16bc-83ba-37a6-89a6-09b6de9364c3,SESCO,II.1.1,Buenos Aires,AR-B,annual,2017,gas oil combustion consumption by freight transport,4.77997632,TJ,CO2,74100.0,kg/TJ,354196.24531200004,kg +98a1fbf3-9913-323f-8214-2549d0031392,SESCO,II.1.1,Buenos Aires,AR-B,annual,2017,gas oil combustion consumption by freight transport,4.77997632,TJ,CH4,3.9,kg/TJ,18.641907648,kg +98a1fbf3-9913-323f-8214-2549d0031392,SESCO,II.1.1,Buenos Aires,AR-B,annual,2017,gas oil combustion consumption by freight transport,4.77997632,TJ,N2O,3.9,kg/TJ,18.641907648,kg +087014e0-996b-319d-846f-38daaaa61ed1,SESCO,II.1.1,Buenos Aires,AR-B,annual,2017,gas oil combustion consumption by public passenger transport,439.35121860000004,TJ,CO2,74100.0,kg/TJ,32555925.298260003,kg +0cc43bc1-143d-3bb4-8888-304fc9c189c8,SESCO,II.1.1,Buenos Aires,AR-B,annual,2017,gas oil combustion consumption by public passenger transport,439.35121860000004,TJ,CH4,3.9,kg/TJ,1713.4697525400002,kg +0cc43bc1-143d-3bb4-8888-304fc9c189c8,SESCO,II.1.1,Buenos Aires,AR-B,annual,2017,gas oil combustion consumption by public passenger transport,439.35121860000004,TJ,N2O,3.9,kg/TJ,1713.4697525400002,kg +81e151a1-0711-3d64-9aa6-714c417d9577,SESCO,II.1.1,Capital Federal,AR-C,annual,2017,gas oil combustion consumption by public passenger transport,68.99595443999999,TJ,CO2,74100.0,kg/TJ,5112600.2240039995,kg +8fc44171-73c8-3384-8123-0d72a1c1e470,SESCO,II.1.1,Capital Federal,AR-C,annual,2017,gas oil combustion consumption by public passenger transport,68.99595443999999,TJ,CH4,3.9,kg/TJ,269.08422231599997,kg +8fc44171-73c8-3384-8123-0d72a1c1e470,SESCO,II.1.1,Capital Federal,AR-C,annual,2017,gas oil combustion consumption by public passenger transport,68.99595443999999,TJ,N2O,3.9,kg/TJ,269.08422231599997,kg +e7086cd5-5bf2-3dd3-8253-93975f55ab66,SESCO,II.1.1,Chubut,AR-U,annual,2017,gas oil combustion consumption by public passenger transport,37.78227852,TJ,CO2,74100.0,kg/TJ,2799666.8383319997,kg +bd975df1-8748-337d-8e80-4fabd35d78ad,SESCO,II.1.1,Chubut,AR-U,annual,2017,gas oil combustion consumption by public passenger transport,37.78227852,TJ,CH4,3.9,kg/TJ,147.35088622799998,kg +bd975df1-8748-337d-8e80-4fabd35d78ad,SESCO,II.1.1,Chubut,AR-U,annual,2017,gas oil combustion consumption by public passenger transport,37.78227852,TJ,N2O,3.9,kg/TJ,147.35088622799998,kg +8f2ebd15-8995-3a12-a177-c954452b4d36,SESCO,II.1.1,Córdoba,AR-X,annual,2017,gas oil combustion consumption by public passenger transport,209.52988056,TJ,CO2,74100.0,kg/TJ,15526164.149496,kg +111e8051-4b74-3b79-90ec-5ab657d13db9,SESCO,II.1.1,Córdoba,AR-X,annual,2017,gas oil combustion consumption by public passenger transport,209.52988056,TJ,CH4,3.9,kg/TJ,817.166534184,kg +111e8051-4b74-3b79-90ec-5ab657d13db9,SESCO,II.1.1,Córdoba,AR-X,annual,2017,gas oil combustion consumption by public passenger transport,209.52988056,TJ,N2O,3.9,kg/TJ,817.166534184,kg +9170671e-d93c-395b-8b21-c5349fa49de3,SESCO,II.1.1,Neuquén,AR-Q,annual,2017,gas oil combustion consumption by public passenger transport,22.84864512,TJ,CO2,74100.0,kg/TJ,1693084.603392,kg +69ed0b27-1496-3afa-85cd-f2d119596335,SESCO,II.1.1,Neuquén,AR-Q,annual,2017,gas oil combustion consumption by public passenger transport,22.84864512,TJ,CH4,3.9,kg/TJ,89.109715968,kg +69ed0b27-1496-3afa-85cd-f2d119596335,SESCO,II.1.1,Neuquén,AR-Q,annual,2017,gas oil combustion consumption by public passenger transport,22.84864512,TJ,N2O,3.9,kg/TJ,89.109715968,kg +d91c0c5c-6ff1-3a01-9971-35399bbfc4e8,SESCO,II.1.1,Rio Negro,AR-R,annual,2017,gas oil combustion consumption by public passenger transport,120.03932976,TJ,CO2,74100.0,kg/TJ,8894914.335216,kg +321869d1-66f9-398b-aeaa-f48f82dedfc8,SESCO,II.1.1,Rio Negro,AR-R,annual,2017,gas oil combustion consumption by public passenger transport,120.03932976,TJ,CH4,3.9,kg/TJ,468.153386064,kg +321869d1-66f9-398b-aeaa-f48f82dedfc8,SESCO,II.1.1,Rio Negro,AR-R,annual,2017,gas oil combustion consumption by public passenger transport,120.03932976,TJ,N2O,3.9,kg/TJ,468.153386064,kg +3b08ea58-65ad-3862-97c1-f7a9a5c2dc5d,SESCO,II.1.1,Santa Fe,AR-S,annual,2017,gas oil combustion consumption by public passenger transport,5.545214639999999,TJ,CO2,74100.0,kg/TJ,410900.40482399997,kg +ada0350f-0366-3058-8d83-626543909ba6,SESCO,II.1.1,Santa Fe,AR-S,annual,2017,gas oil combustion consumption by public passenger transport,5.545214639999999,TJ,CH4,3.9,kg/TJ,21.626337095999997,kg +ada0350f-0366-3058-8d83-626543909ba6,SESCO,II.1.1,Santa Fe,AR-S,annual,2017,gas oil combustion consumption by public passenger transport,5.545214639999999,TJ,N2O,3.9,kg/TJ,21.626337095999997,kg +ac37acac-e64f-3629-98da-f5e35f02bb1b,SESCO,II.1.1,Buenos Aires,AR-B,annual,2017,gas oil combustion consumption by public passenger transport,25.38408852,TJ,CO2,74100.0,kg/TJ,1880960.959332,kg +23b74004-f005-3fc1-b3a9-c036292968f2,SESCO,II.1.1,Buenos Aires,AR-B,annual,2017,gas oil combustion consumption by public passenger transport,25.38408852,TJ,CH4,3.9,kg/TJ,98.99794522799999,kg +23b74004-f005-3fc1-b3a9-c036292968f2,SESCO,II.1.1,Buenos Aires,AR-B,annual,2017,gas oil combustion consumption by public passenger transport,25.38408852,TJ,N2O,3.9,kg/TJ,98.99794522799999,kg +bcee8d9e-13e9-3dd7-aa95-9b4cd227d9d9,SESCO,II.1.1,Córdoba,AR-X,annual,2017,gas oil combustion consumption by public passenger transport,3.41019756,TJ,CO2,74100.0,kg/TJ,252695.63919599997,kg +e30fed9c-8de5-377e-8729-e5787d43281f,SESCO,II.1.1,Córdoba,AR-X,annual,2017,gas oil combustion consumption by public passenger transport,3.41019756,TJ,CH4,3.9,kg/TJ,13.299770484,kg +e30fed9c-8de5-377e-8729-e5787d43281f,SESCO,II.1.1,Córdoba,AR-X,annual,2017,gas oil combustion consumption by public passenger transport,3.41019756,TJ,N2O,3.9,kg/TJ,13.299770484,kg +67c969e0-50d5-3574-9d88-86597c5c6987,SESCO,II.1.1,Neuquén,AR-Q,annual,2017,gas oil combustion consumption by public passenger transport,5.91829812,TJ,CO2,74100.0,kg/TJ,438545.89069200004,kg +0a90ab7f-bc7a-33f8-9003-c75d9aa7423b,SESCO,II.1.1,Neuquén,AR-Q,annual,2017,gas oil combustion consumption by public passenger transport,5.91829812,TJ,CH4,3.9,kg/TJ,23.081362668,kg +0a90ab7f-bc7a-33f8-9003-c75d9aa7423b,SESCO,II.1.1,Neuquén,AR-Q,annual,2017,gas oil combustion consumption by public passenger transport,5.91829812,TJ,N2O,3.9,kg/TJ,23.081362668,kg +50db05d7-2ec2-3c56-a153-dd6c4535a467,SESCO,II.1.1,Rio Negro,AR-R,annual,2017,gas oil combustion consumption by public passenger transport,4.65608472,TJ,CO2,74100.0,kg/TJ,345015.877752,kg +2a9948a0-af13-3aa7-938d-6b9a94f259cc,SESCO,II.1.1,Rio Negro,AR-R,annual,2017,gas oil combustion consumption by public passenger transport,4.65608472,TJ,CH4,3.9,kg/TJ,18.158730408,kg +2a9948a0-af13-3aa7-938d-6b9a94f259cc,SESCO,II.1.1,Rio Negro,AR-R,annual,2017,gas oil combustion consumption by public passenger transport,4.65608472,TJ,N2O,3.9,kg/TJ,18.158730408,kg +f9e4864f-26bd-32c3-871e-e1b27a912e10,SESCO,II.1.1,Buenos Aires,AR-B,annual,2017,gas oil combustion consumption by to the public,695.8192919999999,TJ,CO2,74100.0,kg/TJ,51560209.5372,kg +077fb8c1-9662-3a62-8f36-77ae7908b089,SESCO,II.1.1,Buenos Aires,AR-B,annual,2017,gas oil combustion consumption by to the public,695.8192919999999,TJ,CH4,3.9,kg/TJ,2713.6952387999995,kg +077fb8c1-9662-3a62-8f36-77ae7908b089,SESCO,II.1.1,Buenos Aires,AR-B,annual,2017,gas oil combustion consumption by to the public,695.8192919999999,TJ,N2O,3.9,kg/TJ,2713.6952387999995,kg +1080509c-6a46-3ec3-a9a5-90fb6b6d5b82,SESCO,II.1.1,Capital Federal,AR-C,annual,2017,gas oil combustion consumption by to the public,128.91228,TJ,CO2,74100.0,kg/TJ,9552399.948,kg +090c8067-0310-3a2d-a8bb-d07cad364d69,SESCO,II.1.1,Capital Federal,AR-C,annual,2017,gas oil combustion consumption by to the public,128.91228,TJ,CH4,3.9,kg/TJ,502.757892,kg +090c8067-0310-3a2d-a8bb-d07cad364d69,SESCO,II.1.1,Capital Federal,AR-C,annual,2017,gas oil combustion consumption by to the public,128.91228,TJ,N2O,3.9,kg/TJ,502.757892,kg +0273a293-59c4-3b82-b98e-a619390d683d,SESCO,II.1.1,Corrientes,AR-W,annual,2017,gas oil combustion consumption by to the public,31.0632,TJ,CO2,74100.0,kg/TJ,2301783.12,kg +b24a9e78-256a-3a61-9de6-20517abc3c98,SESCO,II.1.1,Corrientes,AR-W,annual,2017,gas oil combustion consumption by to the public,31.0632,TJ,CH4,3.9,kg/TJ,121.14648,kg +b24a9e78-256a-3a61-9de6-20517abc3c98,SESCO,II.1.1,Corrientes,AR-W,annual,2017,gas oil combustion consumption by to the public,31.0632,TJ,N2O,3.9,kg/TJ,121.14648,kg +19acfadc-ea4a-33b9-b58b-451f458984a0,SESCO,II.1.1,Córdoba,AR-X,annual,2017,gas oil combustion consumption by to the public,279.17148,TJ,CO2,74100.0,kg/TJ,20686606.667999998,kg +f927c891-d72a-3b8e-850d-bb9d03aaf550,SESCO,II.1.1,Córdoba,AR-X,annual,2017,gas oil combustion consumption by to the public,279.17148,TJ,CH4,3.9,kg/TJ,1088.768772,kg +f927c891-d72a-3b8e-850d-bb9d03aaf550,SESCO,II.1.1,Córdoba,AR-X,annual,2017,gas oil combustion consumption by to the public,279.17148,TJ,N2O,3.9,kg/TJ,1088.768772,kg +dc6ca151-56a8-3316-a4ad-175714cf716c,SESCO,II.1.1,Entre Rios,AR-E,annual,2017,gas oil combustion consumption by to the public,41.823348,TJ,CO2,74100.0,kg/TJ,3099110.0868,kg +1958ea23-8983-3011-a44e-c523422bbbe4,SESCO,II.1.1,Entre Rios,AR-E,annual,2017,gas oil combustion consumption by to the public,41.823348,TJ,CH4,3.9,kg/TJ,163.1110572,kg +1958ea23-8983-3011-a44e-c523422bbbe4,SESCO,II.1.1,Entre Rios,AR-E,annual,2017,gas oil combustion consumption by to the public,41.823348,TJ,N2O,3.9,kg/TJ,163.1110572,kg +b1cc8d99-0263-3227-8aab-a4f42902a5d9,SESCO,II.1.1,Salta,AR-A,annual,2017,gas oil combustion consumption by to the public,7.00728,TJ,CO2,74100.0,kg/TJ,519239.448,kg +5462f0e4-a946-394b-ba4a-0e17e7acea8c,SESCO,II.1.1,Salta,AR-A,annual,2017,gas oil combustion consumption by to the public,7.00728,TJ,CH4,3.9,kg/TJ,27.328391999999997,kg +5462f0e4-a946-394b-ba4a-0e17e7acea8c,SESCO,II.1.1,Salta,AR-A,annual,2017,gas oil combustion consumption by to the public,7.00728,TJ,N2O,3.9,kg/TJ,27.328391999999997,kg +dca24ec7-89d5-3f78-a7d8-8aa19e843e3f,SESCO,II.1.1,Santa Fe,AR-S,annual,2017,gas oil combustion consumption by to the public,36.64374,TJ,CO2,74100.0,kg/TJ,2715301.134,kg +9f6fb612-9f34-307d-88a2-a09bd2094519,SESCO,II.1.1,Santa Fe,AR-S,annual,2017,gas oil combustion consumption by to the public,36.64374,TJ,CH4,3.9,kg/TJ,142.910586,kg +9f6fb612-9f34-307d-88a2-a09bd2094519,SESCO,II.1.1,Santa Fe,AR-S,annual,2017,gas oil combustion consumption by to the public,36.64374,TJ,N2O,3.9,kg/TJ,142.910586,kg +58ea4b6d-a3e5-3b20-92be-f4a75202c0d7,SESCO,II.1.1,Buenos Aires,AR-B,annual,2017,gas oil combustion consumption by to the public,42.6216,TJ,CO2,74100.0,kg/TJ,3158260.56,kg +cba12c8d-2201-3530-90a8-fccc00e3d879,SESCO,II.1.1,Buenos Aires,AR-B,annual,2017,gas oil combustion consumption by to the public,42.6216,TJ,CH4,3.9,kg/TJ,166.22424,kg +cba12c8d-2201-3530-90a8-fccc00e3d879,SESCO,II.1.1,Buenos Aires,AR-B,annual,2017,gas oil combustion consumption by to the public,42.6216,TJ,N2O,3.9,kg/TJ,166.22424,kg +138df3cc-a54e-3ea1-9bd6-80698d7851ad,SESCO,II.1.1,Capital Federal,AR-C,annual,2017,gas oil combustion consumption by to the public,1.4447999999999999,TJ,CO2,74100.0,kg/TJ,107059.68,kg +0855ece8-3f2a-3e8f-b309-65bf3b6ad119,SESCO,II.1.1,Capital Federal,AR-C,annual,2017,gas oil combustion consumption by to the public,1.4447999999999999,TJ,CH4,3.9,kg/TJ,5.63472,kg +0855ece8-3f2a-3e8f-b309-65bf3b6ad119,SESCO,II.1.1,Capital Federal,AR-C,annual,2017,gas oil combustion consumption by to the public,1.4447999999999999,TJ,N2O,3.9,kg/TJ,5.63472,kg +cb5f3107-29ae-345a-87c8-ead06de6f3a1,SESCO,II.1.1,Corrientes,AR-W,annual,2017,gas oil combustion consumption by to the public,0.39732,TJ,CO2,74100.0,kg/TJ,29441.412,kg +ce536de0-e32d-3279-afe4-6a9a9bff6bf3,SESCO,II.1.1,Corrientes,AR-W,annual,2017,gas oil combustion consumption by to the public,0.39732,TJ,CH4,3.9,kg/TJ,1.549548,kg +ce536de0-e32d-3279-afe4-6a9a9bff6bf3,SESCO,II.1.1,Corrientes,AR-W,annual,2017,gas oil combustion consumption by to the public,0.39732,TJ,N2O,3.9,kg/TJ,1.549548,kg +100de17e-fcd7-3692-9a3b-8f304f9180eb,SESCO,II.1.1,Córdoba,AR-X,annual,2017,gas oil combustion consumption by to the public,6.79056,TJ,CO2,74100.0,kg/TJ,503180.496,kg +28d0072f-4707-3e70-97b5-4d9baf85300d,SESCO,II.1.1,Córdoba,AR-X,annual,2017,gas oil combustion consumption by to the public,6.79056,TJ,CH4,3.9,kg/TJ,26.483184,kg +28d0072f-4707-3e70-97b5-4d9baf85300d,SESCO,II.1.1,Córdoba,AR-X,annual,2017,gas oil combustion consumption by to the public,6.79056,TJ,N2O,3.9,kg/TJ,26.483184,kg +5b6b76b0-00b2-320e-bbd6-21efb46f984f,SESCO,II.1.1,Entre Rios,AR-E,annual,2017,gas oil combustion consumption by to the public,7.028951999999999,TJ,CO2,74100.0,kg/TJ,520845.34319999994,kg +038da1b3-5011-3645-aa0f-e81dddfe138c,SESCO,II.1.1,Entre Rios,AR-E,annual,2017,gas oil combustion consumption by to the public,7.028951999999999,TJ,CH4,3.9,kg/TJ,27.412912799999997,kg +038da1b3-5011-3645-aa0f-e81dddfe138c,SESCO,II.1.1,Entre Rios,AR-E,annual,2017,gas oil combustion consumption by to the public,7.028951999999999,TJ,N2O,3.9,kg/TJ,27.412912799999997,kg +68a40b0a-05a6-3fcf-bb51-e7b0ac34b889,SESCO,II.1.1,Santa Fe,AR-S,annual,2017,gas oil combustion consumption by to the public,1.806,TJ,CO2,74100.0,kg/TJ,133824.6,kg +577a550b-acc3-3aa5-9299-7ea583add2cb,SESCO,II.1.1,Santa Fe,AR-S,annual,2017,gas oil combustion consumption by to the public,1.806,TJ,CH4,3.9,kg/TJ,7.0434,kg +577a550b-acc3-3aa5-9299-7ea583add2cb,SESCO,II.1.1,Santa Fe,AR-S,annual,2017,gas oil combustion consumption by to the public,1.806,TJ,N2O,3.9,kg/TJ,7.0434,kg +b0c726f2-03ab-397c-a3f3-320e534bd209,SESCO,II.1.1,Catamarca,AR-K,annual,2017,gas oil combustion consumption by to the public,125.66870399999999,TJ,CO2,74100.0,kg/TJ,9312050.9664,kg +96ba3fb4-81fc-370f-9bb3-82c87387fae0,SESCO,II.1.1,Catamarca,AR-K,annual,2017,gas oil combustion consumption by to the public,125.66870399999999,TJ,CH4,3.9,kg/TJ,490.10794559999994,kg +96ba3fb4-81fc-370f-9bb3-82c87387fae0,SESCO,II.1.1,Catamarca,AR-K,annual,2017,gas oil combustion consumption by to the public,125.66870399999999,TJ,N2O,3.9,kg/TJ,490.10794559999994,kg +8a706bdc-f306-3fbc-91ff-adbc2242c265,SESCO,II.1.1,Chaco,AR-H,annual,2017,gas oil combustion consumption by to the public,136.995936,TJ,CO2,74100.0,kg/TJ,10151398.8576,kg +c5f87a0b-a172-3852-a422-d6f2502145ac,SESCO,II.1.1,Chaco,AR-H,annual,2017,gas oil combustion consumption by to the public,136.995936,TJ,CH4,3.9,kg/TJ,534.2841504,kg +c5f87a0b-a172-3852-a422-d6f2502145ac,SESCO,II.1.1,Chaco,AR-H,annual,2017,gas oil combustion consumption by to the public,136.995936,TJ,N2O,3.9,kg/TJ,534.2841504,kg +e5885f18-888a-3c22-9de0-a50413ff9ef6,SESCO,II.1.1,Jujuy,AR-Y,annual,2017,gas oil combustion consumption by to the public,594.7035192,TJ,CO2,74100.0,kg/TJ,44067530.772719994,kg +10271a58-1ff4-377f-8fbe-8ab9cbfbc97b,SESCO,II.1.1,Jujuy,AR-Y,annual,2017,gas oil combustion consumption by to the public,594.7035192,TJ,CH4,3.9,kg/TJ,2319.3437248799996,kg +10271a58-1ff4-377f-8fbe-8ab9cbfbc97b,SESCO,II.1.1,Jujuy,AR-Y,annual,2017,gas oil combustion consumption by to the public,594.7035192,TJ,N2O,3.9,kg/TJ,2319.3437248799996,kg +373fa03d-4862-3250-911b-5c81a108766b,SESCO,II.1.1,La Rioja,AR-F,annual,2017,gas oil combustion consumption by to the public,157.5919212,TJ,CO2,74100.0,kg/TJ,11677561.36092,kg +03788a31-8ed6-3fbf-ba76-4758eeb7fece,SESCO,II.1.1,La Rioja,AR-F,annual,2017,gas oil combustion consumption by to the public,157.5919212,TJ,CH4,3.9,kg/TJ,614.60849268,kg +03788a31-8ed6-3fbf-ba76-4758eeb7fece,SESCO,II.1.1,La Rioja,AR-F,annual,2017,gas oil combustion consumption by to the public,157.5919212,TJ,N2O,3.9,kg/TJ,614.60849268,kg +188c2e95-d779-38c5-b5e9-f7ebaa32f950,SESCO,II.1.1,Salta,AR-A,annual,2017,gas oil combustion consumption by to the public,1811.3901875999998,TJ,CO2,74100.0,kg/TJ,134224012.90115997,kg +ab4ee3e9-09ed-30dd-af5e-b68c020300e0,SESCO,II.1.1,Salta,AR-A,annual,2017,gas oil combustion consumption by to the public,1811.3901875999998,TJ,CH4,3.9,kg/TJ,7064.421731639999,kg +ab4ee3e9-09ed-30dd-af5e-b68c020300e0,SESCO,II.1.1,Salta,AR-A,annual,2017,gas oil combustion consumption by to the public,1811.3901875999998,TJ,N2O,3.9,kg/TJ,7064.421731639999,kg +4f70accc-abf4-3e4d-8caf-a9fcb2ed4468,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2017,gas oil combustion consumption by to the public,418.29777359999997,TJ,CO2,74100.0,kg/TJ,30995865.02376,kg +cf794013-ad23-3bea-8c82-ad2c5be957bc,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2017,gas oil combustion consumption by to the public,418.29777359999997,TJ,CH4,3.9,kg/TJ,1631.36131704,kg +cf794013-ad23-3bea-8c82-ad2c5be957bc,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2017,gas oil combustion consumption by to the public,418.29777359999997,TJ,N2O,3.9,kg/TJ,1631.36131704,kg +ba5cb92e-e25d-301c-b0d5-70c22a6388ca,SESCO,II.1.1,Tucuman,AR-T,annual,2017,gas oil combustion consumption by to the public,2082.8197068,TJ,CO2,74100.0,kg/TJ,154336940.27388,kg +1859a204-eca6-37e8-9086-c3ae6a5bd525,SESCO,II.1.1,Tucuman,AR-T,annual,2017,gas oil combustion consumption by to the public,2082.8197068,TJ,CH4,3.9,kg/TJ,8122.99685652,kg +1859a204-eca6-37e8-9086-c3ae6a5bd525,SESCO,II.1.1,Tucuman,AR-T,annual,2017,gas oil combustion consumption by to the public,2082.8197068,TJ,N2O,3.9,kg/TJ,8122.99685652,kg +6cb0121e-adb5-3cb0-8403-eab589dddb0e,SESCO,II.1.1,Catamarca,AR-K,annual,2017,gas oil combustion consumption by to the public,31.8600072,TJ,CO2,74100.0,kg/TJ,2360826.53352,kg +594337a7-0079-380d-8575-3ddf3df9b8ff,SESCO,II.1.1,Catamarca,AR-K,annual,2017,gas oil combustion consumption by to the public,31.8600072,TJ,CH4,3.9,kg/TJ,124.25402808,kg +594337a7-0079-380d-8575-3ddf3df9b8ff,SESCO,II.1.1,Catamarca,AR-K,annual,2017,gas oil combustion consumption by to the public,31.8600072,TJ,N2O,3.9,kg/TJ,124.25402808,kg +c74133a5-a058-3276-8012-f7cac4a1da46,SESCO,II.1.1,Chaco,AR-H,annual,2017,gas oil combustion consumption by to the public,13.4554224,TJ,CO2,74100.0,kg/TJ,997046.79984,kg +6f4b7318-f1ec-3a70-988a-fa7c9761ccc0,SESCO,II.1.1,Chaco,AR-H,annual,2017,gas oil combustion consumption by to the public,13.4554224,TJ,CH4,3.9,kg/TJ,52.47614736,kg +6f4b7318-f1ec-3a70-988a-fa7c9761ccc0,SESCO,II.1.1,Chaco,AR-H,annual,2017,gas oil combustion consumption by to the public,13.4554224,TJ,N2O,3.9,kg/TJ,52.47614736,kg +981c4390-5623-3650-a5c0-291ca6f8d812,SESCO,II.1.1,Jujuy,AR-Y,annual,2017,gas oil combustion consumption by to the public,64.49659439999999,TJ,CO2,74100.0,kg/TJ,4779197.64504,kg +2267a804-22f3-3138-8e92-cfc2b61f27d8,SESCO,II.1.1,Jujuy,AR-Y,annual,2017,gas oil combustion consumption by to the public,64.49659439999999,TJ,CH4,3.9,kg/TJ,251.53671815999996,kg +2267a804-22f3-3138-8e92-cfc2b61f27d8,SESCO,II.1.1,Jujuy,AR-Y,annual,2017,gas oil combustion consumption by to the public,64.49659439999999,TJ,N2O,3.9,kg/TJ,251.53671815999996,kg +fd311b8f-314c-3c07-8c0c-2929d458b149,SESCO,II.1.1,La Rioja,AR-F,annual,2017,gas oil combustion consumption by to the public,25.0531932,TJ,CO2,74100.0,kg/TJ,1856441.61612,kg +6b1f28ea-4755-3b54-a4e2-173ef7c93b02,SESCO,II.1.1,La Rioja,AR-F,annual,2017,gas oil combustion consumption by to the public,25.0531932,TJ,CH4,3.9,kg/TJ,97.70745348,kg +6b1f28ea-4755-3b54-a4e2-173ef7c93b02,SESCO,II.1.1,La Rioja,AR-F,annual,2017,gas oil combustion consumption by to the public,25.0531932,TJ,N2O,3.9,kg/TJ,97.70745348,kg +2422e613-81d0-35bb-98a5-be9202ea80e6,SESCO,II.1.1,Salta,AR-A,annual,2017,gas oil combustion consumption by to the public,192.60917759999998,TJ,CO2,74100.0,kg/TJ,14272340.060159998,kg +c15a3707-8ee4-350d-867c-c3f5e18b2c43,SESCO,II.1.1,Salta,AR-A,annual,2017,gas oil combustion consumption by to the public,192.60917759999998,TJ,CH4,3.9,kg/TJ,751.1757926399999,kg +c15a3707-8ee4-350d-867c-c3f5e18b2c43,SESCO,II.1.1,Salta,AR-A,annual,2017,gas oil combustion consumption by to the public,192.60917759999998,TJ,N2O,3.9,kg/TJ,751.1757926399999,kg +b47c3ce8-5bbf-3fa7-9ea9-7fb79cc99038,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2017,gas oil combustion consumption by to the public,101.30720879999998,TJ,CO2,74100.0,kg/TJ,7506864.172079999,kg +17399789-7f5d-3289-8721-b8a0de31d88b,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2017,gas oil combustion consumption by to the public,101.30720879999998,TJ,CH4,3.9,kg/TJ,395.0981143199999,kg +17399789-7f5d-3289-8721-b8a0de31d88b,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2017,gas oil combustion consumption by to the public,101.30720879999998,TJ,N2O,3.9,kg/TJ,395.0981143199999,kg +49504bc9-cb97-356a-8e75-8d7617a0ab8f,SESCO,II.1.1,Tucuman,AR-T,annual,2017,gas oil combustion consumption by to the public,331.0538868,TJ,CO2,74100.0,kg/TJ,24531093.01188,kg +67a81ef0-b4b2-3eb4-842f-b6d965e8af9e,SESCO,II.1.1,Tucuman,AR-T,annual,2017,gas oil combustion consumption by to the public,331.0538868,TJ,CH4,3.9,kg/TJ,1291.11015852,kg +67a81ef0-b4b2-3eb4-842f-b6d965e8af9e,SESCO,II.1.1,Tucuman,AR-T,annual,2017,gas oil combustion consumption by to the public,331.0538868,TJ,N2O,3.9,kg/TJ,1291.11015852,kg +5cb15411-0fb8-31a1-a365-5a4bfcb7443d,SESCO,I.3.1,Buenos Aires,AR-B,annual,2017,gasoline combustion consumption by petrochemical industries,46.30679,TJ,CO2,69300.0,kg/TJ,3209060.547,kg +627d722b-670e-316b-9c2f-49d5cc95d857,SESCO,I.3.1,Buenos Aires,AR-B,annual,2017,gasoline combustion consumption by petrochemical industries,46.30679,TJ,CH4,33.0,kg/TJ,1528.12407,kg +55243b39-6886-3d1d-9465-4286931411e1,SESCO,I.3.1,Buenos Aires,AR-B,annual,2017,gasoline combustion consumption by petrochemical industries,46.30679,TJ,N2O,3.2,kg/TJ,148.181728,kg +c8484bd0-f606-34ed-b5a6-c4dc2a715fec,SESCO,II.5.1,Capital Federal,AR-C,annual,2017,gasoline combustion consumption by agriculture machines,14.043099999999999,TJ,CO2,69300.0,kg/TJ,973186.83,kg +e22958c9-8d36-3ded-8dfa-4e2b1321591d,SESCO,II.5.1,Capital Federal,AR-C,annual,2017,gasoline combustion consumption by agriculture machines,14.043099999999999,TJ,CH4,33.0,kg/TJ,463.42229999999995,kg +ee6da9bb-a3d8-33fa-ae07-2c25df892e68,SESCO,II.5.1,Capital Federal,AR-C,annual,2017,gasoline combustion consumption by agriculture machines,14.043099999999999,TJ,N2O,3.2,kg/TJ,44.93792,kg +c3cab043-d46c-34e7-9b81-d65c34ad03c7,SESCO,II.5.1,Buenos Aires,AR-B,annual,2017,gas oil combustion consumption by agriculture machines,306.87552,TJ,CO2,74100.0,kg/TJ,22739476.031999998,kg +113734da-964d-3b38-a3b5-241352c8bdf6,SESCO,II.5.1,Buenos Aires,AR-B,annual,2017,gas oil combustion consumption by agriculture machines,306.87552,TJ,CH4,3.9,kg/TJ,1196.8145279999999,kg +113734da-964d-3b38-a3b5-241352c8bdf6,SESCO,II.5.1,Buenos Aires,AR-B,annual,2017,gas oil combustion consumption by agriculture machines,306.87552,TJ,N2O,3.9,kg/TJ,1196.8145279999999,kg +b947511c-94a7-3279-8d31-9c423f9e6b76,SESCO,II.5.1,Córdoba,AR-X,annual,2017,gas oil combustion consumption by agriculture machines,57.39468,TJ,CO2,74100.0,kg/TJ,4252945.788,kg +f9ffe272-ea95-3c1a-9b37-73029c394470,SESCO,II.5.1,Córdoba,AR-X,annual,2017,gas oil combustion consumption by agriculture machines,57.39468,TJ,CH4,3.9,kg/TJ,223.839252,kg +f9ffe272-ea95-3c1a-9b37-73029c394470,SESCO,II.5.1,Córdoba,AR-X,annual,2017,gas oil combustion consumption by agriculture machines,57.39468,TJ,N2O,3.9,kg/TJ,223.839252,kg +37292780-6eb5-3029-b186-7aa396514ab2,SESCO,II.5.1,Entre Rios,AR-E,annual,2017,gas oil combustion consumption by agriculture machines,47.38944,TJ,CO2,74100.0,kg/TJ,3511557.504,kg +e8a4e764-9250-3c7f-970e-9f0561cdae3d,SESCO,II.5.1,Entre Rios,AR-E,annual,2017,gas oil combustion consumption by agriculture machines,47.38944,TJ,CH4,3.9,kg/TJ,184.818816,kg +e8a4e764-9250-3c7f-970e-9f0561cdae3d,SESCO,II.5.1,Entre Rios,AR-E,annual,2017,gas oil combustion consumption by agriculture machines,47.38944,TJ,N2O,3.9,kg/TJ,184.818816,kg +28d5f278-ce62-39e3-bf4d-18777089082a,SESCO,II.5.1,Santa Fe,AR-S,annual,2017,gas oil combustion consumption by agriculture machines,41.82696,TJ,CO2,74100.0,kg/TJ,3099377.736,kg +37e7487c-ded1-3206-8057-9bb46102550c,SESCO,II.5.1,Santa Fe,AR-S,annual,2017,gas oil combustion consumption by agriculture machines,41.82696,TJ,CH4,3.9,kg/TJ,163.125144,kg +37e7487c-ded1-3206-8057-9bb46102550c,SESCO,II.5.1,Santa Fe,AR-S,annual,2017,gas oil combustion consumption by agriculture machines,41.82696,TJ,N2O,3.9,kg/TJ,163.125144,kg +2c6a4e16-f788-3652-a2d9-ca8b15538a7c,SESCO,II.5.1,Buenos Aires,AR-B,annual,2017,gas oil combustion consumption by agriculture machines,15.856679999999999,TJ,CO2,74100.0,kg/TJ,1174979.988,kg +480e02e3-019e-3beb-9f3c-cd7f4aecca07,SESCO,II.5.1,Buenos Aires,AR-B,annual,2017,gas oil combustion consumption by agriculture machines,15.856679999999999,TJ,CH4,3.9,kg/TJ,61.841052,kg +480e02e3-019e-3beb-9f3c-cd7f4aecca07,SESCO,II.5.1,Buenos Aires,AR-B,annual,2017,gas oil combustion consumption by agriculture machines,15.856679999999999,TJ,N2O,3.9,kg/TJ,61.841052,kg +021e0cd9-a31c-3a7e-992c-fcd6bff10ae1,SESCO,II.5.1,Entre Rios,AR-E,annual,2017,gas oil combustion consumption by agriculture machines,23.40576,TJ,CO2,74100.0,kg/TJ,1734366.816,kg +a3c9686d-fef0-38d1-95a9-44fbc9167d60,SESCO,II.5.1,Entre Rios,AR-E,annual,2017,gas oil combustion consumption by agriculture machines,23.40576,TJ,CH4,3.9,kg/TJ,91.282464,kg +a3c9686d-fef0-38d1-95a9-44fbc9167d60,SESCO,II.5.1,Entre Rios,AR-E,annual,2017,gas oil combustion consumption by agriculture machines,23.40576,TJ,N2O,3.9,kg/TJ,91.282464,kg +d754c465-4afa-311d-bc0c-bc43646e5e0d,SESCO,II.1.1,Buenos Aires,AR-B,annual,2017,gas oil combustion consumption by to the public,14149.21536,TJ,CO2,74100.0,kg/TJ,1048456858.176,kg +14593df4-0102-3f7f-a225-bae0b43fc0c2,SESCO,II.1.1,Buenos Aires,AR-B,annual,2017,gas oil combustion consumption by to the public,14149.21536,TJ,CH4,3.9,kg/TJ,55181.939904,kg +14593df4-0102-3f7f-a225-bae0b43fc0c2,SESCO,II.1.1,Buenos Aires,AR-B,annual,2017,gas oil combustion consumption by to the public,14149.21536,TJ,N2O,3.9,kg/TJ,55181.939904,kg +276b20b1-48cc-3110-9bb1-490a0bf5f3b9,SESCO,II.1.1,Capital Federal,AR-C,annual,2017,gas oil combustion consumption by to the public,944.8992,TJ,CO2,74100.0,kg/TJ,70017030.72,kg +c2173a3d-4cb7-377b-9d10-91e99d2a939c,SESCO,II.1.1,Capital Federal,AR-C,annual,2017,gas oil combustion consumption by to the public,944.8992,TJ,CH4,3.9,kg/TJ,3685.10688,kg +c2173a3d-4cb7-377b-9d10-91e99d2a939c,SESCO,II.1.1,Capital Federal,AR-C,annual,2017,gas oil combustion consumption by to the public,944.8992,TJ,N2O,3.9,kg/TJ,3685.10688,kg +a44e45fc-657e-36c3-98c0-cc7fe0c71935,SESCO,II.1.1,Catamarca,AR-K,annual,2017,gas oil combustion consumption by to the public,8.16312,TJ,CO2,74100.0,kg/TJ,604887.1919999999,kg +b96c61de-6136-35ba-9b25-6b439d056a0e,SESCO,II.1.1,Catamarca,AR-K,annual,2017,gas oil combustion consumption by to the public,8.16312,TJ,CH4,3.9,kg/TJ,31.836167999999997,kg +b96c61de-6136-35ba-9b25-6b439d056a0e,SESCO,II.1.1,Catamarca,AR-K,annual,2017,gas oil combustion consumption by to the public,8.16312,TJ,N2O,3.9,kg/TJ,31.836167999999997,kg +899b89c9-9f5b-389e-9f60-77bfc59cfadd,SESCO,II.1.1,Chaco,AR-H,annual,2017,gas oil combustion consumption by to the public,1884.6693599999999,TJ,CO2,74100.0,kg/TJ,139653999.576,kg +88c598f4-51bb-3735-b968-0f7f11d8f7e8,SESCO,II.1.1,Chaco,AR-H,annual,2017,gas oil combustion consumption by to the public,1884.6693599999999,TJ,CH4,3.9,kg/TJ,7350.210504,kg +88c598f4-51bb-3735-b968-0f7f11d8f7e8,SESCO,II.1.1,Chaco,AR-H,annual,2017,gas oil combustion consumption by to the public,1884.6693599999999,TJ,N2O,3.9,kg/TJ,7350.210504,kg +aecb2577-c243-3c8a-b9de-0d366782c10c,SESCO,II.1.1,Corrientes,AR-W,annual,2017,gas oil combustion consumption by to the public,690.2532,TJ,CO2,74100.0,kg/TJ,51147762.12,kg +e5d3d3b2-34bb-3b88-af32-1e71f2635c87,SESCO,II.1.1,Corrientes,AR-W,annual,2017,gas oil combustion consumption by to the public,690.2532,TJ,CH4,3.9,kg/TJ,2691.98748,kg +e5d3d3b2-34bb-3b88-af32-1e71f2635c87,SESCO,II.1.1,Corrientes,AR-W,annual,2017,gas oil combustion consumption by to the public,690.2532,TJ,N2O,3.9,kg/TJ,2691.98748,kg +fbe9e5f3-0d5e-34a0-8c5d-cc90f8844740,SESCO,II.1.1,Córdoba,AR-X,annual,2017,gas oil combustion consumption by to the public,5817.6316799999995,TJ,CO2,74100.0,kg/TJ,431086507.488,kg +c7a73707-77ea-3db0-b35d-933f0850c8d7,SESCO,II.1.1,Córdoba,AR-X,annual,2017,gas oil combustion consumption by to the public,5817.6316799999995,TJ,CH4,3.9,kg/TJ,22688.763551999997,kg +c7a73707-77ea-3db0-b35d-933f0850c8d7,SESCO,II.1.1,Córdoba,AR-X,annual,2017,gas oil combustion consumption by to the public,5817.6316799999995,TJ,N2O,3.9,kg/TJ,22688.763551999997,kg +01a34059-49cc-374e-8e56-ea5295f49a64,SESCO,II.1.1,Entre Rios,AR-E,annual,2017,gas oil combustion consumption by to the public,1381.37328,TJ,CO2,74100.0,kg/TJ,102359760.04800001,kg +674de32d-d464-3299-a259-46aafab1cc22,SESCO,II.1.1,Entre Rios,AR-E,annual,2017,gas oil combustion consumption by to the public,1381.37328,TJ,CH4,3.9,kg/TJ,5387.355792,kg +674de32d-d464-3299-a259-46aafab1cc22,SESCO,II.1.1,Entre Rios,AR-E,annual,2017,gas oil combustion consumption by to the public,1381.37328,TJ,N2O,3.9,kg/TJ,5387.355792,kg +b52dc761-6770-3a5e-a0d4-c5456977c204,SESCO,II.1.1,Formosa,AR-P,annual,2017,gas oil combustion consumption by to the public,133.86072,TJ,CO2,74100.0,kg/TJ,9919079.351999998,kg +1b4f9edf-c221-3136-8d79-23e8fb663155,SESCO,II.1.1,Formosa,AR-P,annual,2017,gas oil combustion consumption by to the public,133.86072,TJ,CH4,3.9,kg/TJ,522.0568079999999,kg +1b4f9edf-c221-3136-8d79-23e8fb663155,SESCO,II.1.1,Formosa,AR-P,annual,2017,gas oil combustion consumption by to the public,133.86072,TJ,N2O,3.9,kg/TJ,522.0568079999999,kg +4e20125b-466c-3bf6-80d7-482273776b1f,SESCO,II.1.1,Jujuy,AR-Y,annual,2017,gas oil combustion consumption by to the public,77.4774,TJ,CO2,74100.0,kg/TJ,5741075.34,kg +4f11884f-b42c-35d0-8b05-63085fd44b36,SESCO,II.1.1,Jujuy,AR-Y,annual,2017,gas oil combustion consumption by to the public,77.4774,TJ,CH4,3.9,kg/TJ,302.16186,kg +4f11884f-b42c-35d0-8b05-63085fd44b36,SESCO,II.1.1,Jujuy,AR-Y,annual,2017,gas oil combustion consumption by to the public,77.4774,TJ,N2O,3.9,kg/TJ,302.16186,kg +43cf7af0-1fb1-31d1-bb41-8b981e431b86,SESCO,II.1.1,La Pampa,AR-L,annual,2017,gas oil combustion consumption by to the public,746.85324,TJ,CO2,74100.0,kg/TJ,55341825.084,kg +13fda8bd-85b3-3d3c-887f-82694a1d2010,SESCO,II.1.1,La Pampa,AR-L,annual,2017,gas oil combustion consumption by to the public,746.85324,TJ,CH4,3.9,kg/TJ,2912.727636,kg +13fda8bd-85b3-3d3c-887f-82694a1d2010,SESCO,II.1.1,La Pampa,AR-L,annual,2017,gas oil combustion consumption by to the public,746.85324,TJ,N2O,3.9,kg/TJ,2912.727636,kg +93988103-ad1b-3c93-b6c4-43bc338d371c,SESCO,II.1.1,La Rioja,AR-F,annual,2017,gas oil combustion consumption by to the public,230.84292,TJ,CO2,74100.0,kg/TJ,17105460.371999998,kg +5c844ea0-1a80-3985-b8bb-ce9e016de477,SESCO,II.1.1,La Rioja,AR-F,annual,2017,gas oil combustion consumption by to the public,230.84292,TJ,CH4,3.9,kg/TJ,900.287388,kg +5c844ea0-1a80-3985-b8bb-ce9e016de477,SESCO,II.1.1,La Rioja,AR-F,annual,2017,gas oil combustion consumption by to the public,230.84292,TJ,N2O,3.9,kg/TJ,900.287388,kg +6f8fadae-719a-3dd5-bca2-71de04cc0456,SESCO,II.1.1,Mendoza,AR-M,annual,2017,gas oil combustion consumption by to the public,1118.85312,TJ,CO2,74100.0,kg/TJ,82907016.192,kg +bec08158-b37e-3251-bb00-671a61c58f79,SESCO,II.1.1,Mendoza,AR-M,annual,2017,gas oil combustion consumption by to the public,1118.85312,TJ,CH4,3.9,kg/TJ,4363.527168,kg +bec08158-b37e-3251-bb00-671a61c58f79,SESCO,II.1.1,Mendoza,AR-M,annual,2017,gas oil combustion consumption by to the public,1118.85312,TJ,N2O,3.9,kg/TJ,4363.527168,kg +54c2da58-2f68-3ecd-ba1a-67252eb44148,SESCO,II.1.1,Misiones,AR-N,annual,2017,gas oil combustion consumption by to the public,1077.6402,TJ,CO2,74100.0,kg/TJ,79853138.82000001,kg +bea1d700-03b7-34f9-851e-5887f2186657,SESCO,II.1.1,Misiones,AR-N,annual,2017,gas oil combustion consumption by to the public,1077.6402,TJ,CH4,3.9,kg/TJ,4202.79678,kg +bea1d700-03b7-34f9-851e-5887f2186657,SESCO,II.1.1,Misiones,AR-N,annual,2017,gas oil combustion consumption by to the public,1077.6402,TJ,N2O,3.9,kg/TJ,4202.79678,kg +28556724-9f3b-39cd-a11b-433ed6a6ad63,SESCO,II.1.1,Neuquén,AR-Q,annual,2017,gas oil combustion consumption by to the public,695.8518,TJ,CO2,74100.0,kg/TJ,51562618.38,kg +eb7a578b-a35d-3f63-a17e-00aef8a75af2,SESCO,II.1.1,Neuquén,AR-Q,annual,2017,gas oil combustion consumption by to the public,695.8518,TJ,CH4,3.9,kg/TJ,2713.82202,kg +eb7a578b-a35d-3f63-a17e-00aef8a75af2,SESCO,II.1.1,Neuquén,AR-Q,annual,2017,gas oil combustion consumption by to the public,695.8518,TJ,N2O,3.9,kg/TJ,2713.82202,kg +b85772d0-2906-3004-8572-41da2b005fda,SESCO,II.1.1,Rio Negro,AR-R,annual,2017,gas oil combustion consumption by to the public,206.49804,TJ,CO2,74100.0,kg/TJ,15301504.764,kg +ab783897-f97d-3803-bf88-e8711190da26,SESCO,II.1.1,Rio Negro,AR-R,annual,2017,gas oil combustion consumption by to the public,206.49804,TJ,CH4,3.9,kg/TJ,805.342356,kg +ab783897-f97d-3803-bf88-e8711190da26,SESCO,II.1.1,Rio Negro,AR-R,annual,2017,gas oil combustion consumption by to the public,206.49804,TJ,N2O,3.9,kg/TJ,805.342356,kg +b3a3d419-4d52-369f-8afe-821bf1c713b7,SESCO,II.1.1,Salta,AR-A,annual,2017,gas oil combustion consumption by to the public,99.22164,TJ,CO2,74100.0,kg/TJ,7352323.523999999,kg +a0615ab3-c84a-3fb4-a293-c40f5c9551b7,SESCO,II.1.1,Salta,AR-A,annual,2017,gas oil combustion consumption by to the public,99.22164,TJ,CH4,3.9,kg/TJ,386.96439599999997,kg +a0615ab3-c84a-3fb4-a293-c40f5c9551b7,SESCO,II.1.1,Salta,AR-A,annual,2017,gas oil combustion consumption by to the public,99.22164,TJ,N2O,3.9,kg/TJ,386.96439599999997,kg +76ae1d1b-771a-3779-96aa-0a0d0b6e053f,SESCO,II.1.1,San Juan,AR-J,annual,2017,gas oil combustion consumption by to the public,225.85836,TJ,CO2,74100.0,kg/TJ,16736104.476,kg +edc3a4d2-2f6c-3b2e-81f3-7a8f7fc09530,SESCO,II.1.1,San Juan,AR-J,annual,2017,gas oil combustion consumption by to the public,225.85836,TJ,CH4,3.9,kg/TJ,880.847604,kg +edc3a4d2-2f6c-3b2e-81f3-7a8f7fc09530,SESCO,II.1.1,San Juan,AR-J,annual,2017,gas oil combustion consumption by to the public,225.85836,TJ,N2O,3.9,kg/TJ,880.847604,kg +63e37a60-b0fa-3d68-92e3-0749ce5e368b,SESCO,II.1.1,San Luis,AR-D,annual,2017,gas oil combustion consumption by to the public,164.49048,TJ,CO2,74100.0,kg/TJ,12188744.568,kg +ef7574a3-ef33-386e-bb69-716c507051d6,SESCO,II.1.1,San Luis,AR-D,annual,2017,gas oil combustion consumption by to the public,164.49048,TJ,CH4,3.9,kg/TJ,641.5128719999999,kg +ef7574a3-ef33-386e-bb69-716c507051d6,SESCO,II.1.1,San Luis,AR-D,annual,2017,gas oil combustion consumption by to the public,164.49048,TJ,N2O,3.9,kg/TJ,641.5128719999999,kg +6a5be37c-dbcb-3988-b9a8-c6a34b3438a7,SESCO,II.1.1,Santa Fe,AR-S,annual,2017,gas oil combustion consumption by to the public,5251.70352,TJ,CO2,74100.0,kg/TJ,389151230.832,kg +b6a43832-2d47-3846-8c9e-00e1ad1586e6,SESCO,II.1.1,Santa Fe,AR-S,annual,2017,gas oil combustion consumption by to the public,5251.70352,TJ,CH4,3.9,kg/TJ,20481.643728,kg +b6a43832-2d47-3846-8c9e-00e1ad1586e6,SESCO,II.1.1,Santa Fe,AR-S,annual,2017,gas oil combustion consumption by to the public,5251.70352,TJ,N2O,3.9,kg/TJ,20481.643728,kg +eb43e34c-df32-3017-9c19-781a716264e8,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2017,gas oil combustion consumption by to the public,374.31156,TJ,CO2,74100.0,kg/TJ,27736486.595999997,kg +2344c43c-2abd-381f-be94-4427b50f9cd1,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2017,gas oil combustion consumption by to the public,374.31156,TJ,CH4,3.9,kg/TJ,1459.8150839999998,kg +2344c43c-2abd-381f-be94-4427b50f9cd1,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2017,gas oil combustion consumption by to the public,374.31156,TJ,N2O,3.9,kg/TJ,1459.8150839999998,kg +230cd542-11f0-39dc-8c2a-28cdb080d6aa,SESCO,II.1.1,Tucuman,AR-T,annual,2017,gas oil combustion consumption by to the public,834.4081199999999,TJ,CO2,74100.0,kg/TJ,61829641.691999994,kg +b4faebe6-865f-3748-8976-9b63157f869b,SESCO,II.1.1,Tucuman,AR-T,annual,2017,gas oil combustion consumption by to the public,834.4081199999999,TJ,CH4,3.9,kg/TJ,3254.1916679999995,kg +b4faebe6-865f-3748-8976-9b63157f869b,SESCO,II.1.1,Tucuman,AR-T,annual,2017,gas oil combustion consumption by to the public,834.4081199999999,TJ,N2O,3.9,kg/TJ,3254.1916679999995,kg +2751c916-fefd-3a43-b346-ba4a768ac657,SESCO,II.1.1,Buenos Aires,AR-B,annual,2017,gas oil combustion consumption by to the public,9169.965,TJ,CO2,74100.0,kg/TJ,679494406.5,kg +697d3383-adb3-31df-a98c-967cf7eb0154,SESCO,II.1.1,Buenos Aires,AR-B,annual,2017,gas oil combustion consumption by to the public,9169.965,TJ,CH4,3.9,kg/TJ,35762.8635,kg +697d3383-adb3-31df-a98c-967cf7eb0154,SESCO,II.1.1,Buenos Aires,AR-B,annual,2017,gas oil combustion consumption by to the public,9169.965,TJ,N2O,3.9,kg/TJ,35762.8635,kg +18fea953-35f4-314c-93eb-71cc8262e610,SESCO,II.1.1,Capital Federal,AR-C,annual,2017,gas oil combustion consumption by to the public,1526.10612,TJ,CO2,74100.0,kg/TJ,113084463.492,kg +e6bd0e5a-cecc-3a3c-9556-213bf2d0cdbb,SESCO,II.1.1,Capital Federal,AR-C,annual,2017,gas oil combustion consumption by to the public,1526.10612,TJ,CH4,3.9,kg/TJ,5951.813867999999,kg +e6bd0e5a-cecc-3a3c-9556-213bf2d0cdbb,SESCO,II.1.1,Capital Federal,AR-C,annual,2017,gas oil combustion consumption by to the public,1526.10612,TJ,N2O,3.9,kg/TJ,5951.813867999999,kg +d6ea3eae-a0ce-388b-9b56-08117e10041e,SESCO,II.1.1,Catamarca,AR-K,annual,2017,gas oil combustion consumption by to the public,43.41624,TJ,CO2,74100.0,kg/TJ,3217143.384,kg +360ba7fb-da69-3229-aa32-5300795b9b57,SESCO,II.1.1,Catamarca,AR-K,annual,2017,gas oil combustion consumption by to the public,43.41624,TJ,CH4,3.9,kg/TJ,169.323336,kg +360ba7fb-da69-3229-aa32-5300795b9b57,SESCO,II.1.1,Catamarca,AR-K,annual,2017,gas oil combustion consumption by to the public,43.41624,TJ,N2O,3.9,kg/TJ,169.323336,kg +76655b96-a4bb-3d44-b12e-753093773080,SESCO,II.1.1,Chaco,AR-H,annual,2017,gas oil combustion consumption by to the public,540.3552,TJ,CO2,74100.0,kg/TJ,40040320.32,kg +f3e053d1-9d6d-3ef6-83b9-ae73d9889a8a,SESCO,II.1.1,Chaco,AR-H,annual,2017,gas oil combustion consumption by to the public,540.3552,TJ,CH4,3.9,kg/TJ,2107.38528,kg +f3e053d1-9d6d-3ef6-83b9-ae73d9889a8a,SESCO,II.1.1,Chaco,AR-H,annual,2017,gas oil combustion consumption by to the public,540.3552,TJ,N2O,3.9,kg/TJ,2107.38528,kg +b2e0f6bd-c9de-3d66-a229-209a2176144d,SESCO,II.1.1,Corrientes,AR-W,annual,2017,gas oil combustion consumption by to the public,414.80208,TJ,CO2,74100.0,kg/TJ,30736834.128,kg +92d02b27-d31b-34b3-9174-27fdd7e20c8d,SESCO,II.1.1,Corrientes,AR-W,annual,2017,gas oil combustion consumption by to the public,414.80208,TJ,CH4,3.9,kg/TJ,1617.728112,kg +92d02b27-d31b-34b3-9174-27fdd7e20c8d,SESCO,II.1.1,Corrientes,AR-W,annual,2017,gas oil combustion consumption by to the public,414.80208,TJ,N2O,3.9,kg/TJ,1617.728112,kg +645233e4-3737-30cb-b2cb-72061a055bd9,SESCO,II.1.1,Córdoba,AR-X,annual,2017,gas oil combustion consumption by to the public,2103.99,TJ,CO2,74100.0,kg/TJ,155905658.99999997,kg +a915122f-3ae8-3058-9b47-6ad77636a411,SESCO,II.1.1,Córdoba,AR-X,annual,2017,gas oil combustion consumption by to the public,2103.99,TJ,CH4,3.9,kg/TJ,8205.561,kg +a915122f-3ae8-3058-9b47-6ad77636a411,SESCO,II.1.1,Córdoba,AR-X,annual,2017,gas oil combustion consumption by to the public,2103.99,TJ,N2O,3.9,kg/TJ,8205.561,kg +359ab64d-0331-3fb0-b036-8dbc18fb40d9,SESCO,II.1.1,Entre Rios,AR-E,annual,2017,gas oil combustion consumption by to the public,715.03152,TJ,CO2,74100.0,kg/TJ,52983835.632,kg +6c431ab7-f444-3c65-868b-cdd69f5f3c51,SESCO,II.1.1,Entre Rios,AR-E,annual,2017,gas oil combustion consumption by to the public,715.03152,TJ,CH4,3.9,kg/TJ,2788.622928,kg +6c431ab7-f444-3c65-868b-cdd69f5f3c51,SESCO,II.1.1,Entre Rios,AR-E,annual,2017,gas oil combustion consumption by to the public,715.03152,TJ,N2O,3.9,kg/TJ,2788.622928,kg +b2183d89-a96e-3709-ab43-063ba6db30e0,SESCO,II.1.1,Formosa,AR-P,annual,2017,gas oil combustion consumption by to the public,184.86216,TJ,CO2,74100.0,kg/TJ,13698286.056,kg +18eb1b4b-4979-32a3-bfbd-97b283b90f3c,SESCO,II.1.1,Formosa,AR-P,annual,2017,gas oil combustion consumption by to the public,184.86216,TJ,CH4,3.9,kg/TJ,720.9624239999999,kg +18eb1b4b-4979-32a3-bfbd-97b283b90f3c,SESCO,II.1.1,Formosa,AR-P,annual,2017,gas oil combustion consumption by to the public,184.86216,TJ,N2O,3.9,kg/TJ,720.9624239999999,kg +7e71e804-1444-3481-8231-b7f900591e6c,SESCO,II.1.1,Jujuy,AR-Y,annual,2017,gas oil combustion consumption by to the public,57.936479999999996,TJ,CO2,74100.0,kg/TJ,4293093.168,kg +a0ff315c-ad4c-33d9-b9db-39b705a143bf,SESCO,II.1.1,Jujuy,AR-Y,annual,2017,gas oil combustion consumption by to the public,57.936479999999996,TJ,CH4,3.9,kg/TJ,225.95227199999997,kg +a0ff315c-ad4c-33d9-b9db-39b705a143bf,SESCO,II.1.1,Jujuy,AR-Y,annual,2017,gas oil combustion consumption by to the public,57.936479999999996,TJ,N2O,3.9,kg/TJ,225.95227199999997,kg +97030d98-24d0-33d8-8643-b1dd1396a126,SESCO,II.1.1,La Pampa,AR-L,annual,2017,gas oil combustion consumption by to the public,303.98592,TJ,CO2,74100.0,kg/TJ,22525356.672000002,kg +22692872-3d05-355a-832a-faa7419eb781,SESCO,II.1.1,La Pampa,AR-L,annual,2017,gas oil combustion consumption by to the public,303.98592,TJ,CH4,3.9,kg/TJ,1185.545088,kg +22692872-3d05-355a-832a-faa7419eb781,SESCO,II.1.1,La Pampa,AR-L,annual,2017,gas oil combustion consumption by to the public,303.98592,TJ,N2O,3.9,kg/TJ,1185.545088,kg +c610483f-6610-31f9-a884-53d12b1e6eea,SESCO,II.1.1,La Rioja,AR-F,annual,2017,gas oil combustion consumption by to the public,167.81351999999998,TJ,CO2,74100.0,kg/TJ,12434981.831999999,kg +ad5e296e-5f37-3ec4-b2af-f52ce061a8d6,SESCO,II.1.1,La Rioja,AR-F,annual,2017,gas oil combustion consumption by to the public,167.81351999999998,TJ,CH4,3.9,kg/TJ,654.472728,kg +ad5e296e-5f37-3ec4-b2af-f52ce061a8d6,SESCO,II.1.1,La Rioja,AR-F,annual,2017,gas oil combustion consumption by to the public,167.81351999999998,TJ,N2O,3.9,kg/TJ,654.472728,kg +6885fdab-0d19-3752-89bb-52339a083151,SESCO,II.1.1,Mendoza,AR-M,annual,2017,gas oil combustion consumption by to the public,628.95756,TJ,CO2,74100.0,kg/TJ,46605755.195999995,kg +a65bb233-f1d6-3e25-857d-cbc70428f1e2,SESCO,II.1.1,Mendoza,AR-M,annual,2017,gas oil combustion consumption by to the public,628.95756,TJ,CH4,3.9,kg/TJ,2452.934484,kg +a65bb233-f1d6-3e25-857d-cbc70428f1e2,SESCO,II.1.1,Mendoza,AR-M,annual,2017,gas oil combustion consumption by to the public,628.95756,TJ,N2O,3.9,kg/TJ,2452.934484,kg +fc5cafb0-3418-382d-a41b-a17212df3b3c,SESCO,II.1.1,Misiones,AR-N,annual,2017,gas oil combustion consumption by to the public,446.91276,TJ,CO2,74100.0,kg/TJ,33116235.516,kg +80f58130-8356-36d4-906a-acd7e244fe83,SESCO,II.1.1,Misiones,AR-N,annual,2017,gas oil combustion consumption by to the public,446.91276,TJ,CH4,3.9,kg/TJ,1742.959764,kg +80f58130-8356-36d4-906a-acd7e244fe83,SESCO,II.1.1,Misiones,AR-N,annual,2017,gas oil combustion consumption by to the public,446.91276,TJ,N2O,3.9,kg/TJ,1742.959764,kg +0621429c-7c28-3ce3-a4ef-277b129df0c6,SESCO,II.1.1,Neuquén,AR-Q,annual,2017,gas oil combustion consumption by to the public,685.16028,TJ,CO2,74100.0,kg/TJ,50770376.747999996,kg +30b92075-51f4-3089-9bef-1fb6ac5c8bfb,SESCO,II.1.1,Neuquén,AR-Q,annual,2017,gas oil combustion consumption by to the public,685.16028,TJ,CH4,3.9,kg/TJ,2672.1250919999998,kg +30b92075-51f4-3089-9bef-1fb6ac5c8bfb,SESCO,II.1.1,Neuquén,AR-Q,annual,2017,gas oil combustion consumption by to the public,685.16028,TJ,N2O,3.9,kg/TJ,2672.1250919999998,kg +a627f403-5ef8-33fc-a0b8-227af5aeb1e8,SESCO,II.1.1,Rio Negro,AR-R,annual,2017,gas oil combustion consumption by to the public,142.63788,TJ,CO2,74100.0,kg/TJ,10569466.908,kg +c010b17f-690f-31d7-af43-97ba942ba71e,SESCO,II.1.1,Rio Negro,AR-R,annual,2017,gas oil combustion consumption by to the public,142.63788,TJ,CH4,3.9,kg/TJ,556.287732,kg +c010b17f-690f-31d7-af43-97ba942ba71e,SESCO,II.1.1,Rio Negro,AR-R,annual,2017,gas oil combustion consumption by to the public,142.63788,TJ,N2O,3.9,kg/TJ,556.287732,kg +1b24c94a-466c-3050-8f1d-018589afaadb,SESCO,II.1.1,Salta,AR-A,annual,2017,gas oil combustion consumption by to the public,145.27464,TJ,CO2,74100.0,kg/TJ,10764850.824000001,kg +c144b38d-86d1-31d9-89ee-616a7b03bffd,SESCO,II.1.1,Salta,AR-A,annual,2017,gas oil combustion consumption by to the public,145.27464,TJ,CH4,3.9,kg/TJ,566.571096,kg +c144b38d-86d1-31d9-89ee-616a7b03bffd,SESCO,II.1.1,Salta,AR-A,annual,2017,gas oil combustion consumption by to the public,145.27464,TJ,N2O,3.9,kg/TJ,566.571096,kg +081fbc52-63e2-39cb-b985-a6dd7dfd978c,SESCO,II.1.1,San Juan,AR-J,annual,2017,gas oil combustion consumption by to the public,78.70548,TJ,CO2,74100.0,kg/TJ,5832076.068,kg +1e388c95-ba3d-3bf0-a44a-26e23acda794,SESCO,II.1.1,San Juan,AR-J,annual,2017,gas oil combustion consumption by to the public,78.70548,TJ,CH4,3.9,kg/TJ,306.951372,kg +1e388c95-ba3d-3bf0-a44a-26e23acda794,SESCO,II.1.1,San Juan,AR-J,annual,2017,gas oil combustion consumption by to the public,78.70548,TJ,N2O,3.9,kg/TJ,306.951372,kg +890f6300-637c-3865-b6e6-92bce4e68414,SESCO,II.1.1,San Luis,AR-D,annual,2017,gas oil combustion consumption by to the public,65.95512,TJ,CO2,74100.0,kg/TJ,4887274.392,kg +9f752f44-79bf-3207-b3c4-77b9b32910ba,SESCO,II.1.1,San Luis,AR-D,annual,2017,gas oil combustion consumption by to the public,65.95512,TJ,CH4,3.9,kg/TJ,257.224968,kg +9f752f44-79bf-3207-b3c4-77b9b32910ba,SESCO,II.1.1,San Luis,AR-D,annual,2017,gas oil combustion consumption by to the public,65.95512,TJ,N2O,3.9,kg/TJ,257.224968,kg +508d2166-272e-3055-b032-87edce4f7105,SESCO,II.1.1,Santa Fe,AR-S,annual,2017,gas oil combustion consumption by to the public,2225.1726,TJ,CO2,74100.0,kg/TJ,164885289.66,kg +265c667a-a7ac-35b4-8ffc-171e680aec74,SESCO,II.1.1,Santa Fe,AR-S,annual,2017,gas oil combustion consumption by to the public,2225.1726,TJ,CH4,3.9,kg/TJ,8678.173139999999,kg +265c667a-a7ac-35b4-8ffc-171e680aec74,SESCO,II.1.1,Santa Fe,AR-S,annual,2017,gas oil combustion consumption by to the public,2225.1726,TJ,N2O,3.9,kg/TJ,8678.173139999999,kg +acc524b1-d8e6-3167-bb7d-c4a56943afdc,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2017,gas oil combustion consumption by to the public,273.2478,TJ,CO2,74100.0,kg/TJ,20247661.98,kg +eee5e27b-170f-3265-a5f5-0b4871d6194c,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2017,gas oil combustion consumption by to the public,273.2478,TJ,CH4,3.9,kg/TJ,1065.66642,kg +eee5e27b-170f-3265-a5f5-0b4871d6194c,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2017,gas oil combustion consumption by to the public,273.2478,TJ,N2O,3.9,kg/TJ,1065.66642,kg +be37d4d0-adbb-351b-8218-bbadc3c74f9d,SESCO,II.1.1,Tucuman,AR-T,annual,2017,gas oil combustion consumption by to the public,516.76884,TJ,CO2,74100.0,kg/TJ,38292571.044,kg +c58cdccd-c7cc-3bb5-91c7-e4a717cdbeb0,SESCO,II.1.1,Tucuman,AR-T,annual,2017,gas oil combustion consumption by to the public,516.76884,TJ,CH4,3.9,kg/TJ,2015.3984759999998,kg +c58cdccd-c7cc-3bb5-91c7-e4a717cdbeb0,SESCO,II.1.1,Tucuman,AR-T,annual,2017,gas oil combustion consumption by to the public,516.76884,TJ,N2O,3.9,kg/TJ,2015.3984759999998,kg +78ff86a2-19d9-39d3-b1bd-f6c7282dc696,SESCO,II.1.1,Buenos Aires,AR-B,annual,2017,jet kerosene combustion consumption by to the public,1.5411969999999997,TJ,CO2,71500.0,kg/TJ,110195.58549999997,kg +8d3543c5-0997-3a51-924c-1254d2add484,SESCO,II.1.1,Buenos Aires,AR-B,annual,2017,jet kerosene combustion consumption by to the public,1.5411969999999997,TJ,CH4,0.5,kg/TJ,0.7705984999999999,kg +587e61e2-1ac7-3db5-a49b-f269e8709b81,SESCO,II.1.1,Buenos Aires,AR-B,annual,2017,jet kerosene combustion consumption by to the public,1.5411969999999997,TJ,N2O,2.0,kg/TJ,3.0823939999999994,kg +10622715-1ca7-36d7-95e7-907fb0e284f2,SESCO,II.1.1,Entre Rios,AR-E,annual,2017,jet kerosene combustion consumption by to the public,2.5791459999999997,TJ,CO2,71500.0,kg/TJ,184408.93899999998,kg +68b09de0-18d1-3dc9-9f0a-bdf2c07c40ef,SESCO,II.1.1,Entre Rios,AR-E,annual,2017,jet kerosene combustion consumption by to the public,2.5791459999999997,TJ,CH4,0.5,kg/TJ,1.2895729999999999,kg +1b662cf7-9953-3ec6-beff-b089007b872f,SESCO,II.1.1,Entre Rios,AR-E,annual,2017,jet kerosene combustion consumption by to the public,2.5791459999999997,TJ,N2O,2.0,kg/TJ,5.158291999999999,kg +0c23bba5-392f-320f-8e11-2270b4fa00fd,SESCO,I.3.1,Buenos Aires,AR-B,annual,2017,gasoline combustion consumption by petrochemical industries,12.0496,TJ,CO2,69300.0,kg/TJ,835037.28,kg +777cd734-2308-3ecf-b4b5-2ee0f02c31ce,SESCO,I.3.1,Buenos Aires,AR-B,annual,2017,gasoline combustion consumption by petrochemical industries,12.0496,TJ,CH4,33.0,kg/TJ,397.6368,kg +f73ac3ef-8306-3c8c-911e-83e25df7daa5,SESCO,I.3.1,Buenos Aires,AR-B,annual,2017,gasoline combustion consumption by petrochemical industries,12.0496,TJ,N2O,3.2,kg/TJ,38.55872,kg +74be579b-9890-31f4-bb19-0d781fab6c12,SESCO,I.3.1,Capital Federal,AR-C,annual,2017,gas oil combustion consumption by petrochemical industries,2.5284,TJ,CO2,74100.0,kg/TJ,187354.44,kg +353d42ed-2c3b-3de4-959c-fc1cbe2d83d7,SESCO,I.3.1,Capital Federal,AR-C,annual,2017,gas oil combustion consumption by petrochemical industries,2.5284,TJ,CH4,3.9,kg/TJ,9.860759999999999,kg +353d42ed-2c3b-3de4-959c-fc1cbe2d83d7,SESCO,I.3.1,Capital Federal,AR-C,annual,2017,gas oil combustion consumption by petrochemical industries,2.5284,TJ,N2O,3.9,kg/TJ,9.860759999999999,kg +454a388e-537d-392e-9c90-99422ec01df7,SESCO,II.2.1,Buenos Aires,AR-B,annual,2017,gas oil combustion consumption by railway transport,246.04944,TJ,CO2,74100.0,kg/TJ,18232263.504,kg +12f97e43-3d6d-3571-ba75-8464f391efbc,SESCO,II.2.1,Buenos Aires,AR-B,annual,2017,gas oil combustion consumption by railway transport,246.04944,TJ,CH4,3.9,kg/TJ,959.592816,kg +12f97e43-3d6d-3571-ba75-8464f391efbc,SESCO,II.2.1,Buenos Aires,AR-B,annual,2017,gas oil combustion consumption by railway transport,246.04944,TJ,N2O,3.9,kg/TJ,959.592816,kg +95409caa-ec2d-3ef8-9082-01e24ce4b8aa,SESCO,II.2.1,Santa Fe,AR-S,annual,2017,gas oil combustion consumption by railway transport,10.51092,TJ,CO2,74100.0,kg/TJ,778859.172,kg +9de76c3e-ad49-3a90-bec5-1c712f5db0d2,SESCO,II.2.1,Santa Fe,AR-S,annual,2017,gas oil combustion consumption by railway transport,10.51092,TJ,CH4,3.9,kg/TJ,40.992588,kg +9de76c3e-ad49-3a90-bec5-1c712f5db0d2,SESCO,II.2.1,Santa Fe,AR-S,annual,2017,gas oil combustion consumption by railway transport,10.51092,TJ,N2O,3.9,kg/TJ,40.992588,kg +39f9342e-aab2-374e-963d-3c8db8b3a87a,SESCO,II.1.1,Buenos Aires,AR-B,annual,2017,gasoline combustion consumption by freight transport,1.7277,TJ,CO2,69300.0,kg/TJ,119729.61,kg +bdfdb4a0-481e-3e73-83ce-c0390d257a1b,SESCO,II.1.1,Buenos Aires,AR-B,annual,2017,gasoline combustion consumption by freight transport,1.7277,TJ,CH4,33.0,kg/TJ,57.0141,kg +9b515d53-3bef-333e-8786-64977bd939e1,SESCO,II.1.1,Buenos Aires,AR-B,annual,2017,gasoline combustion consumption by freight transport,1.7277,TJ,N2O,3.2,kg/TJ,5.52864,kg +8c3c2798-6b67-3568-9c3b-71a070b0057b,SESCO,II.1.1,Capital Federal,AR-C,annual,2017,gasoline combustion consumption by freight transport,1.6391,TJ,CO2,69300.0,kg/TJ,113589.63,kg +6a3e9756-1baa-38b9-bd93-04f3c8978b7a,SESCO,II.1.1,Capital Federal,AR-C,annual,2017,gasoline combustion consumption by freight transport,1.6391,TJ,CH4,33.0,kg/TJ,54.0903,kg +d02c20ed-f802-310f-a79b-4e311b3fa1ae,SESCO,II.1.1,Capital Federal,AR-C,annual,2017,gasoline combustion consumption by freight transport,1.6391,TJ,N2O,3.2,kg/TJ,5.24512,kg +adbdd768-b6e3-383a-bc8b-be1b14fabf16,SESCO,II.1.1,Santa Fe,AR-S,annual,2017,gasoline combustion consumption by freight transport,12.8027,TJ,CO2,69300.0,kg/TJ,887227.11,kg +53c308df-cc2f-32aa-8cd7-f68292e1e9a4,SESCO,II.1.1,Santa Fe,AR-S,annual,2017,gasoline combustion consumption by freight transport,12.8027,TJ,CH4,33.0,kg/TJ,422.4891,kg +a77b242b-ae8e-3cc0-a6e6-5807c61c9bd3,SESCO,II.1.1,Santa Fe,AR-S,annual,2017,gasoline combustion consumption by freight transport,12.8027,TJ,N2O,3.2,kg/TJ,40.96864,kg +2b1bd6c1-6ec8-3b09-8f86-dd071962a24d,SESCO,II.1.1,Buenos Aires,AR-B,annual,2017,gas oil combustion consumption by freight transport,168.82488,TJ,CO2,74100.0,kg/TJ,12509923.608000001,kg +85be1d2f-63cb-3aff-aa0f-f16bf3a69de3,SESCO,II.1.1,Buenos Aires,AR-B,annual,2017,gas oil combustion consumption by freight transport,168.82488,TJ,CH4,3.9,kg/TJ,658.4170320000001,kg +85be1d2f-63cb-3aff-aa0f-f16bf3a69de3,SESCO,II.1.1,Buenos Aires,AR-B,annual,2017,gas oil combustion consumption by freight transport,168.82488,TJ,N2O,3.9,kg/TJ,658.4170320000001,kg +6d6c10d9-8d03-30ff-9214-05b74de0c21c,SESCO,II.1.1,Capital Federal,AR-C,annual,2017,gas oil combustion consumption by freight transport,67.94172,TJ,CO2,74100.0,kg/TJ,5034481.4520000005,kg +8e896688-7dca-381c-a2db-360c1910eff1,SESCO,II.1.1,Capital Federal,AR-C,annual,2017,gas oil combustion consumption by freight transport,67.94172,TJ,CH4,3.9,kg/TJ,264.972708,kg +8e896688-7dca-381c-a2db-360c1910eff1,SESCO,II.1.1,Capital Federal,AR-C,annual,2017,gas oil combustion consumption by freight transport,67.94172,TJ,N2O,3.9,kg/TJ,264.972708,kg +71a2db4e-c450-30bb-949d-7203cd9c93a9,SESCO,II.1.1,Córdoba,AR-X,annual,2017,gas oil combustion consumption by freight transport,96.90996,TJ,CO2,74100.0,kg/TJ,7181028.036,kg +fc7097b8-aa37-37d4-b22b-675fd4a8146c,SESCO,II.1.1,Córdoba,AR-X,annual,2017,gas oil combustion consumption by freight transport,96.90996,TJ,CH4,3.9,kg/TJ,377.948844,kg +fc7097b8-aa37-37d4-b22b-675fd4a8146c,SESCO,II.1.1,Córdoba,AR-X,annual,2017,gas oil combustion consumption by freight transport,96.90996,TJ,N2O,3.9,kg/TJ,377.948844,kg +8e9ceff3-2bde-324d-8c1d-bf5e0a01c999,SESCO,II.1.1,Buenos Aires,AR-B,annual,2017,gas oil combustion consumption by freight transport,30.41304,TJ,CO2,74100.0,kg/TJ,2253606.264,kg +4c423c99-5bd2-3ce6-99bd-162b9dc99c32,SESCO,II.1.1,Buenos Aires,AR-B,annual,2017,gas oil combustion consumption by freight transport,30.41304,TJ,CH4,3.9,kg/TJ,118.610856,kg +4c423c99-5bd2-3ce6-99bd-162b9dc99c32,SESCO,II.1.1,Buenos Aires,AR-B,annual,2017,gas oil combustion consumption by freight transport,30.41304,TJ,N2O,3.9,kg/TJ,118.610856,kg +813f792e-97f1-3c1a-856b-efca62719106,SESCO,II.1.1,Córdoba,AR-X,annual,2017,gas oil combustion consumption by freight transport,0.7223999999999999,TJ,CO2,74100.0,kg/TJ,53529.84,kg +8ac32acd-1993-35f9-892f-fa62535ad1b1,SESCO,II.1.1,Córdoba,AR-X,annual,2017,gas oil combustion consumption by freight transport,0.7223999999999999,TJ,CH4,3.9,kg/TJ,2.81736,kg +8ac32acd-1993-35f9-892f-fa62535ad1b1,SESCO,II.1.1,Córdoba,AR-X,annual,2017,gas oil combustion consumption by freight transport,0.7223999999999999,TJ,N2O,3.9,kg/TJ,2.81736,kg +ad8e0f83-e8f1-3cc7-9e3d-191036ae94b5,SESCO,II.1.1,Buenos Aires,AR-B,annual,2017,gas oil combustion consumption by public passenger transport,5864.40708,TJ,CO2,74100.0,kg/TJ,434552564.628,kg +8eb0355e-0434-3e50-a56a-d660ca60e058,SESCO,II.1.1,Buenos Aires,AR-B,annual,2017,gas oil combustion consumption by public passenger transport,5864.40708,TJ,CH4,3.9,kg/TJ,22871.187611999998,kg +8eb0355e-0434-3e50-a56a-d660ca60e058,SESCO,II.1.1,Buenos Aires,AR-B,annual,2017,gas oil combustion consumption by public passenger transport,5864.40708,TJ,N2O,3.9,kg/TJ,22871.187611999998,kg +5af62793-ed38-3e85-9ef5-5f715ab1836c,SESCO,II.1.1,Capital Federal,AR-C,annual,2017,gas oil combustion consumption by public passenger transport,87.91608,TJ,CO2,74100.0,kg/TJ,6514581.528,kg +76141d08-c403-343e-b54f-35a088ba900c,SESCO,II.1.1,Capital Federal,AR-C,annual,2017,gas oil combustion consumption by public passenger transport,87.91608,TJ,CH4,3.9,kg/TJ,342.872712,kg +76141d08-c403-343e-b54f-35a088ba900c,SESCO,II.1.1,Capital Federal,AR-C,annual,2017,gas oil combustion consumption by public passenger transport,87.91608,TJ,N2O,3.9,kg/TJ,342.872712,kg +da869438-94b9-35cb-a81e-b1589947d4e1,SESCO,II.1.1,Buenos Aires,AR-B,annual,2017,gas oil combustion consumption by public passenger transport,406.5306,TJ,CO2,74100.0,kg/TJ,30123917.46,kg +9b456bf5-559f-31a7-8d08-4e620a91aa89,SESCO,II.1.1,Buenos Aires,AR-B,annual,2017,gas oil combustion consumption by public passenger transport,406.5306,TJ,CH4,3.9,kg/TJ,1585.4693399999999,kg +9b456bf5-559f-31a7-8d08-4e620a91aa89,SESCO,II.1.1,Buenos Aires,AR-B,annual,2017,gas oil combustion consumption by public passenger transport,406.5306,TJ,N2O,3.9,kg/TJ,1585.4693399999999,kg +31734171-ca40-35ac-8284-180bd2d370bb,SESCO,II.1.1,Buenos Aires,AR-B,annual,2017,gas oil combustion consumption by to the public,3579.6485079599997,TJ,CO2,74100.0,kg/TJ,265251954.43983597,kg +f1fb6763-3ea7-3f66-aa7e-f4a4eb0347b9,SESCO,II.1.1,Buenos Aires,AR-B,annual,2017,gas oil combustion consumption by to the public,3579.6485079599997,TJ,CH4,3.9,kg/TJ,13960.629181043998,kg +f1fb6763-3ea7-3f66-aa7e-f4a4eb0347b9,SESCO,II.1.1,Buenos Aires,AR-B,annual,2017,gas oil combustion consumption by to the public,3579.6485079599997,TJ,N2O,3.9,kg/TJ,13960.629181043998,kg +819aa862-9ff7-37bc-8269-a1d61cde2d7f,SESCO,II.1.1,Buenos Aires,AR-B,annual,2017,gas oil combustion consumption by to the public,533.36081484,TJ,CO2,74100.0,kg/TJ,39522036.379644,kg +95aba26e-a5a2-3e2f-8b32-044516fe8c22,SESCO,II.1.1,Buenos Aires,AR-B,annual,2017,gas oil combustion consumption by to the public,533.36081484,TJ,CH4,3.9,kg/TJ,2080.1071778759997,kg +95aba26e-a5a2-3e2f-8b32-044516fe8c22,SESCO,II.1.1,Buenos Aires,AR-B,annual,2017,gas oil combustion consumption by to the public,533.36081484,TJ,N2O,3.9,kg/TJ,2080.1071778759997,kg +665af30c-b6ac-383d-9cf9-fdd82df38dcc,SESCO,II.5.1,Buenos Aires,AR-B,annual,2017,gasoline combustion consumption by agriculture machines,7.5752999999999995,TJ,CO2,69300.0,kg/TJ,524968.2899999999,kg +336a93b7-5774-3f3f-9508-50054c86daff,SESCO,II.5.1,Buenos Aires,AR-B,annual,2017,gasoline combustion consumption by agriculture machines,7.5752999999999995,TJ,CH4,33.0,kg/TJ,249.98489999999998,kg +1883f630-5532-30c2-bc83-b7a24575d6c1,SESCO,II.5.1,Buenos Aires,AR-B,annual,2017,gasoline combustion consumption by agriculture machines,7.5752999999999995,TJ,N2O,3.2,kg/TJ,24.24096,kg +1bd40197-396f-38c5-b398-0de059b91ed3,SESCO,II.5.1,Salta,AR-A,annual,2017,gasoline combustion consumption by agriculture machines,1.1961,TJ,CO2,69300.0,kg/TJ,82889.73,kg +70f8085c-3ede-3967-8d1c-b16862d7f20d,SESCO,II.5.1,Salta,AR-A,annual,2017,gasoline combustion consumption by agriculture machines,1.1961,TJ,CH4,33.0,kg/TJ,39.4713,kg +28a985fb-c4f0-3928-ae16-1626dce5a10c,SESCO,II.5.1,Salta,AR-A,annual,2017,gasoline combustion consumption by agriculture machines,1.1961,TJ,N2O,3.2,kg/TJ,3.82752,kg +c7f09c04-3022-35df-b1ab-0399a0cf6d1b,SESCO,II.5.1,Santa Fe,AR-S,annual,2017,gasoline combustion consumption by agriculture machines,20.5552,TJ,CO2,69300.0,kg/TJ,1424475.3599999999,kg +1fe2bf66-062f-3178-a68d-5fa08e187ddb,SESCO,II.5.1,Santa Fe,AR-S,annual,2017,gasoline combustion consumption by agriculture machines,20.5552,TJ,CH4,33.0,kg/TJ,678.3216,kg +d0dc5169-499e-3efb-84b2-e2d5eb1acca5,SESCO,II.5.1,Santa Fe,AR-S,annual,2017,gasoline combustion consumption by agriculture machines,20.5552,TJ,N2O,3.2,kg/TJ,65.77664,kg +e6786a88-3f9a-3971-b8eb-64cfcbe56538,SESCO,II.5.1,Buenos Aires,AR-B,annual,2017,gas oil combustion consumption by agriculture machines,10168.43016,TJ,CO2,74100.0,kg/TJ,753480674.856,kg +02fdede3-1e98-39b2-82a7-d95d72cb4726,SESCO,II.5.1,Buenos Aires,AR-B,annual,2017,gas oil combustion consumption by agriculture machines,10168.43016,TJ,CH4,3.9,kg/TJ,39656.877624,kg +02fdede3-1e98-39b2-82a7-d95d72cb4726,SESCO,II.5.1,Buenos Aires,AR-B,annual,2017,gas oil combustion consumption by agriculture machines,10168.43016,TJ,N2O,3.9,kg/TJ,39656.877624,kg +2e0b3a79-0908-3ab1-b8c3-6c33bcff6193,SESCO,II.5.1,Capital Federal,AR-C,annual,2017,gas oil combustion consumption by agriculture machines,40.59888,TJ,CO2,74100.0,kg/TJ,3008377.008,kg +9371e611-cacb-3de3-a8a7-1bc7749ba129,SESCO,II.5.1,Capital Federal,AR-C,annual,2017,gas oil combustion consumption by agriculture machines,40.59888,TJ,CH4,3.9,kg/TJ,158.335632,kg +9371e611-cacb-3de3-a8a7-1bc7749ba129,SESCO,II.5.1,Capital Federal,AR-C,annual,2017,gas oil combustion consumption by agriculture machines,40.59888,TJ,N2O,3.9,kg/TJ,158.335632,kg +fd07e0eb-3674-319a-830a-d2d6bbe744bb,SESCO,II.5.1,Catamarca,AR-K,annual,2017,gas oil combustion consumption by agriculture machines,155.74944,TJ,CO2,74100.0,kg/TJ,11541033.503999999,kg +1e35ecf7-759c-35c5-95c1-86fff66f23e3,SESCO,II.5.1,Catamarca,AR-K,annual,2017,gas oil combustion consumption by agriculture machines,155.74944,TJ,CH4,3.9,kg/TJ,607.422816,kg +1e35ecf7-759c-35c5-95c1-86fff66f23e3,SESCO,II.5.1,Catamarca,AR-K,annual,2017,gas oil combustion consumption by agriculture machines,155.74944,TJ,N2O,3.9,kg/TJ,607.422816,kg +d09f95d7-025a-3641-ade5-75d76adb064f,SESCO,II.5.1,Chaco,AR-H,annual,2017,gas oil combustion consumption by agriculture machines,1247.47644,TJ,CO2,74100.0,kg/TJ,92438004.204,kg +575e7b07-33a1-3e02-997d-b0d0e13558d1,SESCO,II.5.1,Chaco,AR-H,annual,2017,gas oil combustion consumption by agriculture machines,1247.47644,TJ,CH4,3.9,kg/TJ,4865.158116,kg +575e7b07-33a1-3e02-997d-b0d0e13558d1,SESCO,II.5.1,Chaco,AR-H,annual,2017,gas oil combustion consumption by agriculture machines,1247.47644,TJ,N2O,3.9,kg/TJ,4865.158116,kg +9ad35ad3-03ed-33c9-af44-cd7e096950c6,SESCO,II.5.1,Corrientes,AR-W,annual,2017,gas oil combustion consumption by agriculture machines,304.4916,TJ,CO2,74100.0,kg/TJ,22562827.56,kg +58e36d6e-ab63-3a64-838a-52ec295917ed,SESCO,II.5.1,Corrientes,AR-W,annual,2017,gas oil combustion consumption by agriculture machines,304.4916,TJ,CH4,3.9,kg/TJ,1187.51724,kg +58e36d6e-ab63-3a64-838a-52ec295917ed,SESCO,II.5.1,Corrientes,AR-W,annual,2017,gas oil combustion consumption by agriculture machines,304.4916,TJ,N2O,3.9,kg/TJ,1187.51724,kg +c3ef865b-b8f9-385a-850b-c165a6eec508,SESCO,II.5.1,Córdoba,AR-X,annual,2017,gas oil combustion consumption by agriculture machines,8039.409,TJ,CO2,74100.0,kg/TJ,595720206.9,kg +025d2ed8-6ab8-3981-b056-ad2ef9145624,SESCO,II.5.1,Córdoba,AR-X,annual,2017,gas oil combustion consumption by agriculture machines,8039.409,TJ,CH4,3.9,kg/TJ,31353.695099999997,kg +025d2ed8-6ab8-3981-b056-ad2ef9145624,SESCO,II.5.1,Córdoba,AR-X,annual,2017,gas oil combustion consumption by agriculture machines,8039.409,TJ,N2O,3.9,kg/TJ,31353.695099999997,kg +fb7bf971-2d8c-3ee8-95fc-5948ef1006e2,SESCO,II.5.1,Entre Rios,AR-E,annual,2017,gas oil combustion consumption by agriculture machines,2093.62356,TJ,CO2,74100.0,kg/TJ,155137505.796,kg +06be89ad-32b0-35bc-90be-6bb0ef617cdb,SESCO,II.5.1,Entre Rios,AR-E,annual,2017,gas oil combustion consumption by agriculture machines,2093.62356,TJ,CH4,3.9,kg/TJ,8165.131883999999,kg +06be89ad-32b0-35bc-90be-6bb0ef617cdb,SESCO,II.5.1,Entre Rios,AR-E,annual,2017,gas oil combustion consumption by agriculture machines,2093.62356,TJ,N2O,3.9,kg/TJ,8165.131883999999,kg +e743d08e-68c3-35d2-8427-3d0f0b1fe500,SESCO,II.5.1,Formosa,AR-P,annual,2017,gas oil combustion consumption by agriculture machines,194.25336,TJ,CO2,74100.0,kg/TJ,14394173.976,kg +236844a4-b460-3120-a938-af5ddbedae65,SESCO,II.5.1,Formosa,AR-P,annual,2017,gas oil combustion consumption by agriculture machines,194.25336,TJ,CH4,3.9,kg/TJ,757.5881039999999,kg +236844a4-b460-3120-a938-af5ddbedae65,SESCO,II.5.1,Formosa,AR-P,annual,2017,gas oil combustion consumption by agriculture machines,194.25336,TJ,N2O,3.9,kg/TJ,757.5881039999999,kg +069c5117-1511-39da-99a8-a59905221c84,SESCO,II.5.1,Jujuy,AR-Y,annual,2017,gas oil combustion consumption by agriculture machines,1070.74128,TJ,CO2,74100.0,kg/TJ,79341928.84799999,kg +fd305b28-9400-3008-816c-b2ba55dc9988,SESCO,II.5.1,Jujuy,AR-Y,annual,2017,gas oil combustion consumption by agriculture machines,1070.74128,TJ,CH4,3.9,kg/TJ,4175.890992,kg +fd305b28-9400-3008-816c-b2ba55dc9988,SESCO,II.5.1,Jujuy,AR-Y,annual,2017,gas oil combustion consumption by agriculture machines,1070.74128,TJ,N2O,3.9,kg/TJ,4175.890992,kg +13ce51e7-734a-3ebf-876c-38072c770420,SESCO,II.5.1,La Pampa,AR-L,annual,2017,gas oil combustion consumption by agriculture machines,1778.5488,TJ,CO2,74100.0,kg/TJ,131790466.08,kg +e9607575-c2a5-3ea5-81b4-059fbc06378e,SESCO,II.5.1,La Pampa,AR-L,annual,2017,gas oil combustion consumption by agriculture machines,1778.5488,TJ,CH4,3.9,kg/TJ,6936.34032,kg +e9607575-c2a5-3ea5-81b4-059fbc06378e,SESCO,II.5.1,La Pampa,AR-L,annual,2017,gas oil combustion consumption by agriculture machines,1778.5488,TJ,N2O,3.9,kg/TJ,6936.34032,kg +851a6a46-907c-334c-acb9-009443cba9e4,SESCO,II.5.1,La Rioja,AR-F,annual,2017,gas oil combustion consumption by agriculture machines,162.86508,TJ,CO2,74100.0,kg/TJ,12068302.428000001,kg +23cf81c6-e995-32a2-ab3d-3b712813537d,SESCO,II.5.1,La Rioja,AR-F,annual,2017,gas oil combustion consumption by agriculture machines,162.86508,TJ,CH4,3.9,kg/TJ,635.173812,kg +23cf81c6-e995-32a2-ab3d-3b712813537d,SESCO,II.5.1,La Rioja,AR-F,annual,2017,gas oil combustion consumption by agriculture machines,162.86508,TJ,N2O,3.9,kg/TJ,635.173812,kg +53f477b7-5063-377a-bbf2-2d661b31ed38,SESCO,II.5.1,Mendoza,AR-M,annual,2017,gas oil combustion consumption by agriculture machines,2729.0466,TJ,CO2,74100.0,kg/TJ,202222353.06,kg +d1f3de27-72f5-3879-a36c-4319097b010a,SESCO,II.5.1,Mendoza,AR-M,annual,2017,gas oil combustion consumption by agriculture machines,2729.0466,TJ,CH4,3.9,kg/TJ,10643.28174,kg +d1f3de27-72f5-3879-a36c-4319097b010a,SESCO,II.5.1,Mendoza,AR-M,annual,2017,gas oil combustion consumption by agriculture machines,2729.0466,TJ,N2O,3.9,kg/TJ,10643.28174,kg +781476bd-c045-3ee9-8964-cdc46eb25486,SESCO,II.5.1,Misiones,AR-N,annual,2017,gas oil combustion consumption by agriculture machines,1087.4287199999999,TJ,CO2,74100.0,kg/TJ,80578468.152,kg +9fb00b79-886a-323e-9792-262e388dfbaf,SESCO,II.5.1,Misiones,AR-N,annual,2017,gas oil combustion consumption by agriculture machines,1087.4287199999999,TJ,CH4,3.9,kg/TJ,4240.972008,kg +9fb00b79-886a-323e-9792-262e388dfbaf,SESCO,II.5.1,Misiones,AR-N,annual,2017,gas oil combustion consumption by agriculture machines,1087.4287199999999,TJ,N2O,3.9,kg/TJ,4240.972008,kg +cdbc4816-d18f-3b19-98a9-243b274c7366,SESCO,II.5.1,Rio Negro,AR-R,annual,2017,gas oil combustion consumption by agriculture machines,238.86156,TJ,CO2,74100.0,kg/TJ,17699641.596,kg +1a245766-1afe-3126-a6a9-a666273dad12,SESCO,II.5.1,Rio Negro,AR-R,annual,2017,gas oil combustion consumption by agriculture machines,238.86156,TJ,CH4,3.9,kg/TJ,931.560084,kg +1a245766-1afe-3126-a6a9-a666273dad12,SESCO,II.5.1,Rio Negro,AR-R,annual,2017,gas oil combustion consumption by agriculture machines,238.86156,TJ,N2O,3.9,kg/TJ,931.560084,kg +c21d59c0-9383-3ad2-a429-d9d8f1644af6,SESCO,II.5.1,Salta,AR-A,annual,2017,gas oil combustion consumption by agriculture machines,1923.67896,TJ,CO2,74100.0,kg/TJ,142544610.936,kg +151aa1a9-59d8-32eb-af93-5a19d51eb9fe,SESCO,II.5.1,Salta,AR-A,annual,2017,gas oil combustion consumption by agriculture machines,1923.67896,TJ,CH4,3.9,kg/TJ,7502.347944,kg +151aa1a9-59d8-32eb-af93-5a19d51eb9fe,SESCO,II.5.1,Salta,AR-A,annual,2017,gas oil combustion consumption by agriculture machines,1923.67896,TJ,N2O,3.9,kg/TJ,7502.347944,kg +beb5e747-9926-3824-91fd-7e174c128882,SESCO,II.5.1,San Juan,AR-J,annual,2017,gas oil combustion consumption by agriculture machines,704.3038799999999,TJ,CO2,74100.0,kg/TJ,52188917.507999994,kg +9c2eba95-f389-353b-8d72-40ce79a2c72a,SESCO,II.5.1,San Juan,AR-J,annual,2017,gas oil combustion consumption by agriculture machines,704.3038799999999,TJ,CH4,3.9,kg/TJ,2746.7851319999995,kg +9c2eba95-f389-353b-8d72-40ce79a2c72a,SESCO,II.5.1,San Juan,AR-J,annual,2017,gas oil combustion consumption by agriculture machines,704.3038799999999,TJ,N2O,3.9,kg/TJ,2746.7851319999995,kg +07f84202-a60b-39e4-93cd-583ef543ac8b,SESCO,II.5.1,San Luis,AR-D,annual,2017,gas oil combustion consumption by agriculture machines,572.0685599999999,TJ,CO2,74100.0,kg/TJ,42390280.296,kg +bc42490a-74b0-3275-ab1b-9ae9a17336ec,SESCO,II.5.1,San Luis,AR-D,annual,2017,gas oil combustion consumption by agriculture machines,572.0685599999999,TJ,CH4,3.9,kg/TJ,2231.0673839999995,kg +bc42490a-74b0-3275-ab1b-9ae9a17336ec,SESCO,II.5.1,San Luis,AR-D,annual,2017,gas oil combustion consumption by agriculture machines,572.0685599999999,TJ,N2O,3.9,kg/TJ,2231.0673839999995,kg +1c01650f-3ea2-34c1-bbe6-22670dac256b,SESCO,II.5.1,Santa Fe,AR-S,annual,2017,gas oil combustion consumption by agriculture machines,7288.32972,TJ,CO2,74100.0,kg/TJ,540065232.252,kg +86840368-48c0-3b9b-842f-0cdaa4fea50a,SESCO,II.5.1,Santa Fe,AR-S,annual,2017,gas oil combustion consumption by agriculture machines,7288.32972,TJ,CH4,3.9,kg/TJ,28424.485908,kg +86840368-48c0-3b9b-842f-0cdaa4fea50a,SESCO,II.5.1,Santa Fe,AR-S,annual,2017,gas oil combustion consumption by agriculture machines,7288.32972,TJ,N2O,3.9,kg/TJ,28424.485908,kg +4679e7b9-58c6-36b4-94d4-7ec0ee97d886,SESCO,II.5.1,Santiago del Estero,AR-G,annual,2017,gas oil combustion consumption by agriculture machines,1750.1946,TJ,CO2,74100.0,kg/TJ,129689419.86,kg +2d100af3-5386-338c-9b7b-e6d317abf777,SESCO,II.5.1,Santiago del Estero,AR-G,annual,2017,gas oil combustion consumption by agriculture machines,1750.1946,TJ,CH4,3.9,kg/TJ,6825.75894,kg +2d100af3-5386-338c-9b7b-e6d317abf777,SESCO,II.5.1,Santiago del Estero,AR-G,annual,2017,gas oil combustion consumption by agriculture machines,1750.1946,TJ,N2O,3.9,kg/TJ,6825.75894,kg +832e8723-f528-3846-9d78-b691ce06d080,SESCO,II.5.1,Tucuman,AR-T,annual,2017,gas oil combustion consumption by agriculture machines,1223.7456,TJ,CO2,74100.0,kg/TJ,90679548.96,kg +a679e092-bf15-3aae-acfa-fa8255ee83be,SESCO,II.5.1,Tucuman,AR-T,annual,2017,gas oil combustion consumption by agriculture machines,1223.7456,TJ,CH4,3.9,kg/TJ,4772.60784,kg +a679e092-bf15-3aae-acfa-fa8255ee83be,SESCO,II.5.1,Tucuman,AR-T,annual,2017,gas oil combustion consumption by agriculture machines,1223.7456,TJ,N2O,3.9,kg/TJ,4772.60784,kg +0e3871fe-eb73-320b-a75b-a0fd101a69d5,SESCO,II.5.1,Buenos Aires,AR-B,annual,2017,gas oil combustion consumption by agriculture machines,557.94564,TJ,CO2,74100.0,kg/TJ,41343771.924,kg +37b9b4c8-214d-3137-ad61-0f54b944bcda,SESCO,II.5.1,Buenos Aires,AR-B,annual,2017,gas oil combustion consumption by agriculture machines,557.94564,TJ,CH4,3.9,kg/TJ,2175.987996,kg +37b9b4c8-214d-3137-ad61-0f54b944bcda,SESCO,II.5.1,Buenos Aires,AR-B,annual,2017,gas oil combustion consumption by agriculture machines,557.94564,TJ,N2O,3.9,kg/TJ,2175.987996,kg +003831e7-8530-343e-a9f7-c5cf8f22aec1,SESCO,II.5.1,Capital Federal,AR-C,annual,2017,gas oil combustion consumption by agriculture machines,2.60064,TJ,CO2,74100.0,kg/TJ,192707.424,kg +7590ccc9-113e-3d75-a4fd-67608737eec0,SESCO,II.5.1,Capital Federal,AR-C,annual,2017,gas oil combustion consumption by agriculture machines,2.60064,TJ,CH4,3.9,kg/TJ,10.142496,kg +7590ccc9-113e-3d75-a4fd-67608737eec0,SESCO,II.5.1,Capital Federal,AR-C,annual,2017,gas oil combustion consumption by agriculture machines,2.60064,TJ,N2O,3.9,kg/TJ,10.142496,kg +607d85ac-fe21-3a4e-ac37-9af7a4e43aae,SESCO,II.5.1,Catamarca,AR-K,annual,2017,gas oil combustion consumption by agriculture machines,9.82464,TJ,CO2,74100.0,kg/TJ,728005.824,kg +d33e9bbd-6c3d-3653-8aff-642fc63bbac9,SESCO,II.5.1,Catamarca,AR-K,annual,2017,gas oil combustion consumption by agriculture machines,9.82464,TJ,CH4,3.9,kg/TJ,38.316096,kg +d33e9bbd-6c3d-3653-8aff-642fc63bbac9,SESCO,II.5.1,Catamarca,AR-K,annual,2017,gas oil combustion consumption by agriculture machines,9.82464,TJ,N2O,3.9,kg/TJ,38.316096,kg +9e6933f4-c492-35a3-bca3-d5dbf8428a4d,SESCO,II.5.1,Chaco,AR-H,annual,2017,gas oil combustion consumption by agriculture machines,103.51992,TJ,CO2,74100.0,kg/TJ,7670826.072,kg +aadf2da5-ec4a-35e7-83b7-5033910c452f,SESCO,II.5.1,Chaco,AR-H,annual,2017,gas oil combustion consumption by agriculture machines,103.51992,TJ,CH4,3.9,kg/TJ,403.727688,kg +aadf2da5-ec4a-35e7-83b7-5033910c452f,SESCO,II.5.1,Chaco,AR-H,annual,2017,gas oil combustion consumption by agriculture machines,103.51992,TJ,N2O,3.9,kg/TJ,403.727688,kg +ee270f27-b023-3590-b5a6-37025b1eccd5,SESCO,II.5.1,Corrientes,AR-W,annual,2017,gas oil combustion consumption by agriculture machines,7.91028,TJ,CO2,74100.0,kg/TJ,586151.748,kg +d737bfbe-4e3f-3b9a-97e0-e0d6f7ff3989,SESCO,II.5.1,Corrientes,AR-W,annual,2017,gas oil combustion consumption by agriculture machines,7.91028,TJ,CH4,3.9,kg/TJ,30.850092,kg +d737bfbe-4e3f-3b9a-97e0-e0d6f7ff3989,SESCO,II.5.1,Corrientes,AR-W,annual,2017,gas oil combustion consumption by agriculture machines,7.91028,TJ,N2O,3.9,kg/TJ,30.850092,kg +99e45696-097b-369d-b86b-6fe854451872,SESCO,II.5.1,Córdoba,AR-X,annual,2017,gas oil combustion consumption by agriculture machines,274.11468,TJ,CO2,74100.0,kg/TJ,20311897.788000003,kg +ad8b59ac-92c1-30ed-92f5-9568b0a736db,SESCO,II.5.1,Córdoba,AR-X,annual,2017,gas oil combustion consumption by agriculture machines,274.11468,TJ,CH4,3.9,kg/TJ,1069.047252,kg +ad8b59ac-92c1-30ed-92f5-9568b0a736db,SESCO,II.5.1,Córdoba,AR-X,annual,2017,gas oil combustion consumption by agriculture machines,274.11468,TJ,N2O,3.9,kg/TJ,1069.047252,kg +d3195bec-95e7-3c9f-a4cf-4d13b7ea77da,SESCO,II.5.1,Entre Rios,AR-E,annual,2017,gas oil combustion consumption by agriculture machines,42.22428,TJ,CO2,74100.0,kg/TJ,3128819.148,kg +6ee8beb2-8632-36b0-9509-662ee45dd268,SESCO,II.5.1,Entre Rios,AR-E,annual,2017,gas oil combustion consumption by agriculture machines,42.22428,TJ,CH4,3.9,kg/TJ,164.674692,kg +6ee8beb2-8632-36b0-9509-662ee45dd268,SESCO,II.5.1,Entre Rios,AR-E,annual,2017,gas oil combustion consumption by agriculture machines,42.22428,TJ,N2O,3.9,kg/TJ,164.674692,kg +423ecbd0-30b3-33b7-a68a-73c07c03e13d,SESCO,II.5.1,Formosa,AR-P,annual,2017,gas oil combustion consumption by agriculture machines,9.53568,TJ,CO2,74100.0,kg/TJ,706593.8879999999,kg +afb05873-b107-3b4f-9f95-236fab284542,SESCO,II.5.1,Formosa,AR-P,annual,2017,gas oil combustion consumption by agriculture machines,9.53568,TJ,CH4,3.9,kg/TJ,37.18915199999999,kg +afb05873-b107-3b4f-9f95-236fab284542,SESCO,II.5.1,Formosa,AR-P,annual,2017,gas oil combustion consumption by agriculture machines,9.53568,TJ,N2O,3.9,kg/TJ,37.18915199999999,kg +ba8f5917-49ec-3b89-a5ae-ce305025405c,SESCO,II.5.1,Jujuy,AR-Y,annual,2017,gas oil combustion consumption by agriculture machines,24.0198,TJ,CO2,74100.0,kg/TJ,1779867.18,kg +63ad919a-7f66-3b18-af81-9bd8a6def492,SESCO,II.5.1,Jujuy,AR-Y,annual,2017,gas oil combustion consumption by agriculture machines,24.0198,TJ,CH4,3.9,kg/TJ,93.67721999999999,kg +63ad919a-7f66-3b18-af81-9bd8a6def492,SESCO,II.5.1,Jujuy,AR-Y,annual,2017,gas oil combustion consumption by agriculture machines,24.0198,TJ,N2O,3.9,kg/TJ,93.67721999999999,kg +4b24e9a4-d2ac-3537-afce-9e2ad8ccf2a1,SESCO,II.5.1,La Pampa,AR-L,annual,2017,gas oil combustion consumption by agriculture machines,142.38504,TJ,CO2,74100.0,kg/TJ,10550731.464,kg +6b8a9644-5504-3a32-a331-9199de271502,SESCO,II.5.1,La Pampa,AR-L,annual,2017,gas oil combustion consumption by agriculture machines,142.38504,TJ,CH4,3.9,kg/TJ,555.301656,kg +6b8a9644-5504-3a32-a331-9199de271502,SESCO,II.5.1,La Pampa,AR-L,annual,2017,gas oil combustion consumption by agriculture machines,142.38504,TJ,N2O,3.9,kg/TJ,555.301656,kg +95bb409a-a6d7-346a-b106-86b2d698c74c,SESCO,II.5.1,Mendoza,AR-M,annual,2017,gas oil combustion consumption by agriculture machines,156.36348,TJ,CO2,74100.0,kg/TJ,11586533.868,kg +1c62d003-d1b6-3c2f-862d-11ecc97a4437,SESCO,II.5.1,Mendoza,AR-M,annual,2017,gas oil combustion consumption by agriculture machines,156.36348,TJ,CH4,3.9,kg/TJ,609.817572,kg +1c62d003-d1b6-3c2f-862d-11ecc97a4437,SESCO,II.5.1,Mendoza,AR-M,annual,2017,gas oil combustion consumption by agriculture machines,156.36348,TJ,N2O,3.9,kg/TJ,609.817572,kg +3a6a39ba-9ca3-3f38-a4aa-26794979f971,SESCO,II.5.1,Misiones,AR-N,annual,2017,gas oil combustion consumption by agriculture machines,110.56332,TJ,CO2,74100.0,kg/TJ,8192742.012,kg +ffcb023c-b1ab-38ca-9df0-017b3f215f24,SESCO,II.5.1,Misiones,AR-N,annual,2017,gas oil combustion consumption by agriculture machines,110.56332,TJ,CH4,3.9,kg/TJ,431.196948,kg +ffcb023c-b1ab-38ca-9df0-017b3f215f24,SESCO,II.5.1,Misiones,AR-N,annual,2017,gas oil combustion consumption by agriculture machines,110.56332,TJ,N2O,3.9,kg/TJ,431.196948,kg +443979ef-ead2-3e56-9516-2573b764b77e,SESCO,II.5.1,Rio Negro,AR-R,annual,2017,gas oil combustion consumption by agriculture machines,37.31196,TJ,CO2,74100.0,kg/TJ,2764816.236,kg +7722df82-7ebe-3142-a735-68c69d495590,SESCO,II.5.1,Rio Negro,AR-R,annual,2017,gas oil combustion consumption by agriculture machines,37.31196,TJ,CH4,3.9,kg/TJ,145.51664399999999,kg +7722df82-7ebe-3142-a735-68c69d495590,SESCO,II.5.1,Rio Negro,AR-R,annual,2017,gas oil combustion consumption by agriculture machines,37.31196,TJ,N2O,3.9,kg/TJ,145.51664399999999,kg +72857803-99b1-3308-acff-dd588c6924cb,SESCO,II.5.1,Salta,AR-A,annual,2017,gas oil combustion consumption by agriculture machines,107.13192,TJ,CO2,74100.0,kg/TJ,7938475.272,kg +3e27b934-8bc4-3ea5-ab0c-19917e487c7e,SESCO,II.5.1,Salta,AR-A,annual,2017,gas oil combustion consumption by agriculture machines,107.13192,TJ,CH4,3.9,kg/TJ,417.814488,kg +3e27b934-8bc4-3ea5-ab0c-19917e487c7e,SESCO,II.5.1,Salta,AR-A,annual,2017,gas oil combustion consumption by agriculture machines,107.13192,TJ,N2O,3.9,kg/TJ,417.814488,kg +87b7cecc-1181-3261-9796-cb62596ff5f8,SESCO,II.5.1,San Juan,AR-J,annual,2017,gas oil combustion consumption by agriculture machines,93.47856,TJ,CO2,74100.0,kg/TJ,6926761.296,kg +d7fa041f-074f-3c3f-8071-c7b89e0331e0,SESCO,II.5.1,San Juan,AR-J,annual,2017,gas oil combustion consumption by agriculture machines,93.47856,TJ,CH4,3.9,kg/TJ,364.56638399999997,kg +d7fa041f-074f-3c3f-8071-c7b89e0331e0,SESCO,II.5.1,San Juan,AR-J,annual,2017,gas oil combustion consumption by agriculture machines,93.47856,TJ,N2O,3.9,kg/TJ,364.56638399999997,kg +0e2a0305-84cc-320f-97c5-386738721e08,SESCO,II.5.1,San Luis,AR-D,annual,2017,gas oil combustion consumption by agriculture machines,40.815599999999996,TJ,CO2,74100.0,kg/TJ,3024435.9599999995,kg +a1dd10c3-0f78-3ada-912e-2fcc194e583a,SESCO,II.5.1,San Luis,AR-D,annual,2017,gas oil combustion consumption by agriculture machines,40.815599999999996,TJ,CH4,3.9,kg/TJ,159.18084,kg +a1dd10c3-0f78-3ada-912e-2fcc194e583a,SESCO,II.5.1,San Luis,AR-D,annual,2017,gas oil combustion consumption by agriculture machines,40.815599999999996,TJ,N2O,3.9,kg/TJ,159.18084,kg +017833fc-a19a-383b-9018-b3efb52fe3b0,SESCO,II.5.1,Santa Fe,AR-S,annual,2017,gas oil combustion consumption by agriculture machines,271.87524,TJ,CO2,74100.0,kg/TJ,20145955.284,kg +77a059e6-a468-31c6-9f36-e56ca5b8b9a7,SESCO,II.5.1,Santa Fe,AR-S,annual,2017,gas oil combustion consumption by agriculture machines,271.87524,TJ,CH4,3.9,kg/TJ,1060.3134360000001,kg +77a059e6-a468-31c6-9f36-e56ca5b8b9a7,SESCO,II.5.1,Santa Fe,AR-S,annual,2017,gas oil combustion consumption by agriculture machines,271.87524,TJ,N2O,3.9,kg/TJ,1060.3134360000001,kg +c2065e3a-3d5c-32d9-b2ab-4d53b2988c29,SESCO,II.5.1,Santiago del Estero,AR-G,annual,2017,gas oil combustion consumption by agriculture machines,213.21636,TJ,CO2,74100.0,kg/TJ,15799332.276,kg +b4738337-a334-3b9f-8375-1ab23925f6f9,SESCO,II.5.1,Santiago del Estero,AR-G,annual,2017,gas oil combustion consumption by agriculture machines,213.21636,TJ,CH4,3.9,kg/TJ,831.543804,kg +b4738337-a334-3b9f-8375-1ab23925f6f9,SESCO,II.5.1,Santiago del Estero,AR-G,annual,2017,gas oil combustion consumption by agriculture machines,213.21636,TJ,N2O,3.9,kg/TJ,831.543804,kg +15ac4515-bad0-36b3-bc71-cffd18b34a80,SESCO,II.5.1,Tucuman,AR-T,annual,2017,gas oil combustion consumption by agriculture machines,139.71216,TJ,CO2,74100.0,kg/TJ,10352671.056000002,kg +cfa1eaae-02a9-3e13-be65-be07b5cc871e,SESCO,II.5.1,Tucuman,AR-T,annual,2017,gas oil combustion consumption by agriculture machines,139.71216,TJ,CH4,3.9,kg/TJ,544.877424,kg +cfa1eaae-02a9-3e13-be65-be07b5cc871e,SESCO,II.5.1,Tucuman,AR-T,annual,2017,gas oil combustion consumption by agriculture machines,139.71216,TJ,N2O,3.9,kg/TJ,544.877424,kg +ef11f596-9d33-325a-b382-098e8a3d0c50,SESCO,II.5.1,Buenos Aires,AR-B,annual,2017,jet kerosene combustion consumption by agriculture machines,7.108377999999999,TJ,CO2,71500.0,kg/TJ,508249.02699999994,kg +706afca4-0a62-3cb2-bd61-f3ee1dab2ba9,SESCO,II.5.1,Buenos Aires,AR-B,annual,2017,jet kerosene combustion consumption by agriculture machines,7.108377999999999,TJ,CH4,0.5,kg/TJ,3.5541889999999996,kg +2e38cf76-9a6c-3657-94f8-3edf7c321a9a,SESCO,II.5.1,Buenos Aires,AR-B,annual,2017,jet kerosene combustion consumption by agriculture machines,7.108377999999999,TJ,N2O,2.0,kg/TJ,14.216755999999998,kg +f15cf9af-afeb-31b9-a32e-757a60ba7346,SESCO,II.5.1,Córdoba,AR-X,annual,2017,jet kerosene combustion consumption by agriculture machines,0.31453,TJ,CO2,71500.0,kg/TJ,22488.894999999997,kg +cf48b8c3-2f61-3dd0-b123-b5d477ee9603,SESCO,II.5.1,Córdoba,AR-X,annual,2017,jet kerosene combustion consumption by agriculture machines,0.31453,TJ,CH4,0.5,kg/TJ,0.157265,kg +ba1ec442-4a67-3a2f-9a40-c16e4a8f5665,SESCO,II.5.1,Córdoba,AR-X,annual,2017,jet kerosene combustion consumption by agriculture machines,0.31453,TJ,N2O,2.0,kg/TJ,0.62906,kg +731686e1-2f7c-34e6-b141-5be8582cd2ae,SESCO,II.5.1,La Pampa,AR-L,annual,2017,jet kerosene combustion consumption by agriculture machines,0.31453,TJ,CO2,71500.0,kg/TJ,22488.894999999997,kg +4d017e54-c7f3-30ac-b76b-f4146c487ab4,SESCO,II.5.1,La Pampa,AR-L,annual,2017,jet kerosene combustion consumption by agriculture machines,0.31453,TJ,CH4,0.5,kg/TJ,0.157265,kg +9d293ba2-ebba-3922-9dc9-35878266eeb5,SESCO,II.5.1,La Pampa,AR-L,annual,2017,jet kerosene combustion consumption by agriculture machines,0.31453,TJ,N2O,2.0,kg/TJ,0.62906,kg +8a95dc8e-0171-3606-af47-71e485b4d134,SESCO,II.5.1,Santa Fe,AR-S,annual,2017,jet kerosene combustion consumption by agriculture machines,3.5541889999999996,TJ,CO2,71500.0,kg/TJ,254124.51349999997,kg +c904cebe-9491-3cec-960e-9be60b65bb55,SESCO,II.5.1,Santa Fe,AR-S,annual,2017,jet kerosene combustion consumption by agriculture machines,3.5541889999999996,TJ,CH4,0.5,kg/TJ,1.7770944999999998,kg +dd03e001-5d38-37ad-9ba4-7f1b0763d445,SESCO,II.5.1,Santa Fe,AR-S,annual,2017,jet kerosene combustion consumption by agriculture machines,3.5541889999999996,TJ,N2O,2.0,kg/TJ,7.108377999999999,kg +d769adb9-da7d-3915-998e-d97f6d0ec620,SESCO,II.1.1,Buenos Aires,AR-B,annual,2017,gas oil combustion consumption by to the public,25514.22888,TJ,CO2,74100.0,kg/TJ,1890604360.008,kg +65803f3c-3372-3a33-9fb8-10081f3fded6,SESCO,II.1.1,Buenos Aires,AR-B,annual,2017,gas oil combustion consumption by to the public,25514.22888,TJ,CH4,3.9,kg/TJ,99505.492632,kg +65803f3c-3372-3a33-9fb8-10081f3fded6,SESCO,II.1.1,Buenos Aires,AR-B,annual,2017,gas oil combustion consumption by to the public,25514.22888,TJ,N2O,3.9,kg/TJ,99505.492632,kg +ea6b19f6-519a-3f2c-950c-3b370ee1d9c2,SESCO,II.1.1,Capital Federal,AR-C,annual,2017,gas oil combustion consumption by to the public,2881.87032,TJ,CO2,74100.0,kg/TJ,213546590.712,kg +7a2c115e-b67e-303e-b03e-cec739f43761,SESCO,II.1.1,Capital Federal,AR-C,annual,2017,gas oil combustion consumption by to the public,2881.87032,TJ,CH4,3.9,kg/TJ,11239.294248,kg +7a2c115e-b67e-303e-b03e-cec739f43761,SESCO,II.1.1,Capital Federal,AR-C,annual,2017,gas oil combustion consumption by to the public,2881.87032,TJ,N2O,3.9,kg/TJ,11239.294248,kg +2a6dcbcd-1626-3d25-b7d1-35d67a9c1d1d,SESCO,II.1.1,Catamarca,AR-K,annual,2017,gas oil combustion consumption by to the public,295.1004,TJ,CO2,74100.0,kg/TJ,21866939.639999997,kg +5bf74180-8485-3bf6-9ce2-c9f38b3682e1,SESCO,II.1.1,Catamarca,AR-K,annual,2017,gas oil combustion consumption by to the public,295.1004,TJ,CH4,3.9,kg/TJ,1150.8915599999998,kg +5bf74180-8485-3bf6-9ce2-c9f38b3682e1,SESCO,II.1.1,Catamarca,AR-K,annual,2017,gas oil combustion consumption by to the public,295.1004,TJ,N2O,3.9,kg/TJ,1150.8915599999998,kg +6f03bb53-919d-3538-ac67-8ab2f0ec2837,SESCO,II.1.1,Chaco,AR-H,annual,2017,gas oil combustion consumption by to the public,1956.72876,TJ,CO2,74100.0,kg/TJ,144993601.116,kg +cab3752e-e8a4-3710-b115-46c481e74778,SESCO,II.1.1,Chaco,AR-H,annual,2017,gas oil combustion consumption by to the public,1956.72876,TJ,CH4,3.9,kg/TJ,7631.242163999999,kg +cab3752e-e8a4-3710-b115-46c481e74778,SESCO,II.1.1,Chaco,AR-H,annual,2017,gas oil combustion consumption by to the public,1956.72876,TJ,N2O,3.9,kg/TJ,7631.242163999999,kg +b8e25e4a-7daa-3b0a-b5ee-998bd52b4cd9,SESCO,II.1.1,Chubut,AR-U,annual,2017,gas oil combustion consumption by to the public,3545.39472,TJ,CO2,74100.0,kg/TJ,262713748.75199997,kg +d9c3f270-7aaa-3eb7-9ed8-ab2764e32f69,SESCO,II.1.1,Chubut,AR-U,annual,2017,gas oil combustion consumption by to the public,3545.39472,TJ,CH4,3.9,kg/TJ,13827.039407999999,kg +d9c3f270-7aaa-3eb7-9ed8-ab2764e32f69,SESCO,II.1.1,Chubut,AR-U,annual,2017,gas oil combustion consumption by to the public,3545.39472,TJ,N2O,3.9,kg/TJ,13827.039407999999,kg +4b7cbbc2-b479-388e-b799-19609d327c79,SESCO,II.1.1,Corrientes,AR-W,annual,2017,gas oil combustion consumption by to the public,1572.80928,TJ,CO2,74100.0,kg/TJ,116545167.648,kg +d97c8519-20ca-3e4e-be6f-2f2cd4e89454,SESCO,II.1.1,Corrientes,AR-W,annual,2017,gas oil combustion consumption by to the public,1572.80928,TJ,CH4,3.9,kg/TJ,6133.956192,kg +d97c8519-20ca-3e4e-be6f-2f2cd4e89454,SESCO,II.1.1,Corrientes,AR-W,annual,2017,gas oil combustion consumption by to the public,1572.80928,TJ,N2O,3.9,kg/TJ,6133.956192,kg +0b8c5416-143f-3c1a-8f4e-5fc5fac30868,SESCO,II.1.1,Córdoba,AR-X,annual,2017,gas oil combustion consumption by to the public,10122.124319999999,TJ,CO2,74100.0,kg/TJ,750049412.1119999,kg +25538efc-ab64-35bb-804e-8a04eb1b054b,SESCO,II.1.1,Córdoba,AR-X,annual,2017,gas oil combustion consumption by to the public,10122.124319999999,TJ,CH4,3.9,kg/TJ,39476.284847999996,kg +25538efc-ab64-35bb-804e-8a04eb1b054b,SESCO,II.1.1,Córdoba,AR-X,annual,2017,gas oil combustion consumption by to the public,10122.124319999999,TJ,N2O,3.9,kg/TJ,39476.284847999996,kg +6eace600-dd6a-353d-9933-e4c20f686802,SESCO,II.1.1,Entre Rios,AR-E,annual,2017,gas oil combustion consumption by to the public,3412.87044,TJ,CO2,74100.0,kg/TJ,252893699.604,kg +ec3ad034-68c6-32f9-9102-18a6d6ff5f67,SESCO,II.1.1,Entre Rios,AR-E,annual,2017,gas oil combustion consumption by to the public,3412.87044,TJ,CH4,3.9,kg/TJ,13310.194716,kg +ec3ad034-68c6-32f9-9102-18a6d6ff5f67,SESCO,II.1.1,Entre Rios,AR-E,annual,2017,gas oil combustion consumption by to the public,3412.87044,TJ,N2O,3.9,kg/TJ,13310.194716,kg +ee75bfce-de4c-3d16-8f05-a487bbcb66d8,SESCO,II.1.1,Formosa,AR-P,annual,2017,gas oil combustion consumption by to the public,496.54164,TJ,CO2,74100.0,kg/TJ,36793735.524,kg +9f1c4543-f093-3155-b8ee-9394b710aaac,SESCO,II.1.1,Formosa,AR-P,annual,2017,gas oil combustion consumption by to the public,496.54164,TJ,CH4,3.9,kg/TJ,1936.5123959999999,kg +9f1c4543-f093-3155-b8ee-9394b710aaac,SESCO,II.1.1,Formosa,AR-P,annual,2017,gas oil combustion consumption by to the public,496.54164,TJ,N2O,3.9,kg/TJ,1936.5123959999999,kg +8983a07c-eca5-312f-b767-a0f924712426,SESCO,II.1.1,Jujuy,AR-Y,annual,2017,gas oil combustion consumption by to the public,1522.78308,TJ,CO2,74100.0,kg/TJ,112838226.228,kg +45d7d340-cfe9-3783-b446-c36104f2abd5,SESCO,II.1.1,Jujuy,AR-Y,annual,2017,gas oil combustion consumption by to the public,1522.78308,TJ,CH4,3.9,kg/TJ,5938.854012,kg +45d7d340-cfe9-3783-b446-c36104f2abd5,SESCO,II.1.1,Jujuy,AR-Y,annual,2017,gas oil combustion consumption by to the public,1522.78308,TJ,N2O,3.9,kg/TJ,5938.854012,kg +d84f1bb3-2c96-392b-b5ae-d4359d2a150f,SESCO,II.1.1,La Pampa,AR-L,annual,2017,gas oil combustion consumption by to the public,2397.3205199999998,TJ,CO2,74100.0,kg/TJ,177641450.53199998,kg +312351a9-e90e-37c9-88fc-a733461601d8,SESCO,II.1.1,La Pampa,AR-L,annual,2017,gas oil combustion consumption by to the public,2397.3205199999998,TJ,CH4,3.9,kg/TJ,9349.550028,kg +312351a9-e90e-37c9-88fc-a733461601d8,SESCO,II.1.1,La Pampa,AR-L,annual,2017,gas oil combustion consumption by to the public,2397.3205199999998,TJ,N2O,3.9,kg/TJ,9349.550028,kg +a371cf30-6131-33af-a21a-cc0a9485066b,SESCO,II.1.1,La Rioja,AR-F,annual,2017,gas oil combustion consumption by to the public,641.41896,TJ,CO2,74100.0,kg/TJ,47529144.936,kg +b87e6bfd-482a-39c0-a9c7-4752ba26f074,SESCO,II.1.1,La Rioja,AR-F,annual,2017,gas oil combustion consumption by to the public,641.41896,TJ,CH4,3.9,kg/TJ,2501.533944,kg +b87e6bfd-482a-39c0-a9c7-4752ba26f074,SESCO,II.1.1,La Rioja,AR-F,annual,2017,gas oil combustion consumption by to the public,641.41896,TJ,N2O,3.9,kg/TJ,2501.533944,kg +3bc1ad3c-9b34-312e-81c1-f955dabf294e,SESCO,II.1.1,Mendoza,AR-M,annual,2017,gas oil combustion consumption by to the public,7515.4884,TJ,CO2,74100.0,kg/TJ,556897690.44,kg +6dd1357c-12a0-3818-b9f0-f1c6a89821b1,SESCO,II.1.1,Mendoza,AR-M,annual,2017,gas oil combustion consumption by to the public,7515.4884,TJ,CH4,3.9,kg/TJ,29310.40476,kg +6dd1357c-12a0-3818-b9f0-f1c6a89821b1,SESCO,II.1.1,Mendoza,AR-M,annual,2017,gas oil combustion consumption by to the public,7515.4884,TJ,N2O,3.9,kg/TJ,29310.40476,kg +9baf5838-03be-3853-ac78-0292959d182b,SESCO,II.1.1,Misiones,AR-N,annual,2017,gas oil combustion consumption by to the public,2690.037,TJ,CO2,74100.0,kg/TJ,199331741.7,kg +a28e20b8-2148-3bfd-aea9-0607a8d0e5d3,SESCO,II.1.1,Misiones,AR-N,annual,2017,gas oil combustion consumption by to the public,2690.037,TJ,CH4,3.9,kg/TJ,10491.144299999998,kg +a28e20b8-2148-3bfd-aea9-0607a8d0e5d3,SESCO,II.1.1,Misiones,AR-N,annual,2017,gas oil combustion consumption by to the public,2690.037,TJ,N2O,3.9,kg/TJ,10491.144299999998,kg +5b4381de-beaf-3f90-b127-6f19a4501acc,SESCO,II.1.1,Neuquén,AR-Q,annual,2017,gas oil combustion consumption by to the public,1975.61952,TJ,CO2,74100.0,kg/TJ,146393406.432,kg +6e46e6e8-b102-32fd-ae4a-ea9a433d4c63,SESCO,II.1.1,Neuquén,AR-Q,annual,2017,gas oil combustion consumption by to the public,1975.61952,TJ,CH4,3.9,kg/TJ,7704.916128,kg +6e46e6e8-b102-32fd-ae4a-ea9a433d4c63,SESCO,II.1.1,Neuquén,AR-Q,annual,2017,gas oil combustion consumption by to the public,1975.61952,TJ,N2O,3.9,kg/TJ,7704.916128,kg +93a40d10-c417-3431-b4e0-3e9dbadc0ad0,SESCO,II.1.1,Rio Negro,AR-R,annual,2017,gas oil combustion consumption by to the public,3563.3824799999998,TJ,CO2,74100.0,kg/TJ,264046641.76799998,kg +05a5233d-1048-302f-941b-846073ddd26d,SESCO,II.1.1,Rio Negro,AR-R,annual,2017,gas oil combustion consumption by to the public,3563.3824799999998,TJ,CH4,3.9,kg/TJ,13897.191671999999,kg +05a5233d-1048-302f-941b-846073ddd26d,SESCO,II.1.1,Rio Negro,AR-R,annual,2017,gas oil combustion consumption by to the public,3563.3824799999998,TJ,N2O,3.9,kg/TJ,13897.191671999999,kg +871fb441-5df2-381a-b718-6a4e867048a6,SESCO,II.1.1,Salta,AR-A,annual,2017,gas oil combustion consumption by to the public,3364.9392,TJ,CO2,74100.0,kg/TJ,249341994.72,kg +db79e67b-4e38-32b1-9439-4dda54bc6564,SESCO,II.1.1,Salta,AR-A,annual,2017,gas oil combustion consumption by to the public,3364.9392,TJ,CH4,3.9,kg/TJ,13123.262879999998,kg +db79e67b-4e38-32b1-9439-4dda54bc6564,SESCO,II.1.1,Salta,AR-A,annual,2017,gas oil combustion consumption by to the public,3364.9392,TJ,N2O,3.9,kg/TJ,13123.262879999998,kg +8836f014-6a07-3eef-a5f2-8b4f9228082c,SESCO,II.1.1,San Juan,AR-J,annual,2017,gas oil combustion consumption by to the public,1668.2022,TJ,CO2,74100.0,kg/TJ,123613783.02,kg +f928060c-bb17-3d07-a9bc-38a4a8f632c4,SESCO,II.1.1,San Juan,AR-J,annual,2017,gas oil combustion consumption by to the public,1668.2022,TJ,CH4,3.9,kg/TJ,6505.988579999999,kg +f928060c-bb17-3d07-a9bc-38a4a8f632c4,SESCO,II.1.1,San Juan,AR-J,annual,2017,gas oil combustion consumption by to the public,1668.2022,TJ,N2O,3.9,kg/TJ,6505.988579999999,kg +c46ae8d4-ab26-32fc-85f9-11308fb6bb58,SESCO,II.1.1,San Luis,AR-D,annual,2017,gas oil combustion consumption by to the public,1496.95728,TJ,CO2,74100.0,kg/TJ,110924534.448,kg +f950c9ca-019c-3a4e-bbb7-031da0ff2991,SESCO,II.1.1,San Luis,AR-D,annual,2017,gas oil combustion consumption by to the public,1496.95728,TJ,CH4,3.9,kg/TJ,5838.133392000001,kg +f950c9ca-019c-3a4e-bbb7-031da0ff2991,SESCO,II.1.1,San Luis,AR-D,annual,2017,gas oil combustion consumption by to the public,1496.95728,TJ,N2O,3.9,kg/TJ,5838.133392000001,kg +2bea01f0-a521-3fee-acc6-9718d357e30f,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2017,gas oil combustion consumption by to the public,2032.07508,TJ,CO2,74100.0,kg/TJ,150576763.428,kg +b1b2ea2b-4384-3ef4-91d2-1449e8dc06fb,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2017,gas oil combustion consumption by to the public,2032.07508,TJ,CH4,3.9,kg/TJ,7925.092812,kg +b1b2ea2b-4384-3ef4-91d2-1449e8dc06fb,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2017,gas oil combustion consumption by to the public,2032.07508,TJ,N2O,3.9,kg/TJ,7925.092812,kg +fc69d290-2ae5-376a-a752-eaefaa6b7131,SESCO,II.1.1,Santa Fe,AR-S,annual,2017,gas oil combustion consumption by to the public,7095.44892,TJ,CO2,74100.0,kg/TJ,525772764.972,kg +9f22b42b-7ebb-330d-bcaf-e3dcc3ac7d29,SESCO,II.1.1,Santa Fe,AR-S,annual,2017,gas oil combustion consumption by to the public,7095.44892,TJ,CH4,3.9,kg/TJ,27672.250787999998,kg +9f22b42b-7ebb-330d-bcaf-e3dcc3ac7d29,SESCO,II.1.1,Santa Fe,AR-S,annual,2017,gas oil combustion consumption by to the public,7095.44892,TJ,N2O,3.9,kg/TJ,27672.250787999998,kg +30e7ebb8-c370-3e42-9b7b-f296a914fc02,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2017,gas oil combustion consumption by to the public,2133.21108,TJ,CO2,74100.0,kg/TJ,158070941.028,kg +ca8ef701-66ad-3a2c-93f5-a79cbf0f28fe,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2017,gas oil combustion consumption by to the public,2133.21108,TJ,CH4,3.9,kg/TJ,8319.523212,kg +ca8ef701-66ad-3a2c-93f5-a79cbf0f28fe,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2017,gas oil combustion consumption by to the public,2133.21108,TJ,N2O,3.9,kg/TJ,8319.523212,kg +c5961131-bbb4-3b90-a41d-a94227633659,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2017,gas oil combustion consumption by to the public,834.98604,TJ,CO2,74100.0,kg/TJ,61872465.564,kg +4d73a38b-deed-3bd9-9bd6-ca034a5acf9b,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2017,gas oil combustion consumption by to the public,834.98604,TJ,CH4,3.9,kg/TJ,3256.445556,kg +4d73a38b-deed-3bd9-9bd6-ca034a5acf9b,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2017,gas oil combustion consumption by to the public,834.98604,TJ,N2O,3.9,kg/TJ,3256.445556,kg +bce96243-a007-31db-a46f-5aff0280fb7d,SESCO,II.1.1,Tucuman,AR-T,annual,2017,gas oil combustion consumption by to the public,1726.1748,TJ,CO2,74100.0,kg/TJ,127909552.68,kg +acd6f2c9-08aa-3159-85da-f43d845b6a22,SESCO,II.1.1,Tucuman,AR-T,annual,2017,gas oil combustion consumption by to the public,1726.1748,TJ,CH4,3.9,kg/TJ,6732.08172,kg +acd6f2c9-08aa-3159-85da-f43d845b6a22,SESCO,II.1.1,Tucuman,AR-T,annual,2017,gas oil combustion consumption by to the public,1726.1748,TJ,N2O,3.9,kg/TJ,6732.08172,kg +7beeca82-e4a0-386f-8533-1c55981a5997,SESCO,II.1.1,Buenos Aires,AR-B,annual,2017,gas oil combustion consumption by to the public,15919.49268,TJ,CO2,74100.0,kg/TJ,1179634407.588,kg +8a721bfc-65bf-3d51-b599-c8ac1689e8e8,SESCO,II.1.1,Buenos Aires,AR-B,annual,2017,gas oil combustion consumption by to the public,15919.49268,TJ,CH4,3.9,kg/TJ,62086.02145199999,kg +8a721bfc-65bf-3d51-b599-c8ac1689e8e8,SESCO,II.1.1,Buenos Aires,AR-B,annual,2017,gas oil combustion consumption by to the public,15919.49268,TJ,N2O,3.9,kg/TJ,62086.02145199999,kg +d9caba89-c678-30c2-b8a7-75af3b37b3bd,SESCO,II.1.1,Capital Federal,AR-C,annual,2017,gas oil combustion consumption by to the public,2173.59324,TJ,CO2,74100.0,kg/TJ,161063259.08400002,kg +43a939b3-32b5-308f-a2bc-7786c4894cfb,SESCO,II.1.1,Capital Federal,AR-C,annual,2017,gas oil combustion consumption by to the public,2173.59324,TJ,CH4,3.9,kg/TJ,8477.013636,kg +43a939b3-32b5-308f-a2bc-7786c4894cfb,SESCO,II.1.1,Capital Federal,AR-C,annual,2017,gas oil combustion consumption by to the public,2173.59324,TJ,N2O,3.9,kg/TJ,8477.013636,kg +fe44930d-5a9a-3ffa-b541-994e36bcf021,SESCO,II.1.1,Catamarca,AR-K,annual,2017,gas oil combustion consumption by to the public,359.43012,TJ,CO2,74100.0,kg/TJ,26633771.892,kg +ad8b8be1-1295-3497-af80-c2f5911d6ad1,SESCO,II.1.1,Catamarca,AR-K,annual,2017,gas oil combustion consumption by to the public,359.43012,TJ,CH4,3.9,kg/TJ,1401.777468,kg +ad8b8be1-1295-3497-af80-c2f5911d6ad1,SESCO,II.1.1,Catamarca,AR-K,annual,2017,gas oil combustion consumption by to the public,359.43012,TJ,N2O,3.9,kg/TJ,1401.777468,kg +87083465-1ed0-3135-bdcd-13d2a6d5461d,SESCO,II.1.1,Chaco,AR-H,annual,2017,gas oil combustion consumption by to the public,1283.8854,TJ,CO2,74100.0,kg/TJ,95135908.13999999,kg +beafdafe-daf0-34fd-84a2-8b9ed67c6920,SESCO,II.1.1,Chaco,AR-H,annual,2017,gas oil combustion consumption by to the public,1283.8854,TJ,CH4,3.9,kg/TJ,5007.15306,kg +beafdafe-daf0-34fd-84a2-8b9ed67c6920,SESCO,II.1.1,Chaco,AR-H,annual,2017,gas oil combustion consumption by to the public,1283.8854,TJ,N2O,3.9,kg/TJ,5007.15306,kg +6afed5cb-80b3-3a85-aa29-2c8bea3002a3,SESCO,II.1.1,Chubut,AR-U,annual,2017,gas oil combustion consumption by to the public,1970.38212,TJ,CO2,74100.0,kg/TJ,146005315.092,kg +91248574-7be3-3637-aba2-23f4845eecd0,SESCO,II.1.1,Chubut,AR-U,annual,2017,gas oil combustion consumption by to the public,1970.38212,TJ,CH4,3.9,kg/TJ,7684.490268,kg +91248574-7be3-3637-aba2-23f4845eecd0,SESCO,II.1.1,Chubut,AR-U,annual,2017,gas oil combustion consumption by to the public,1970.38212,TJ,N2O,3.9,kg/TJ,7684.490268,kg +94fc7a9b-6369-3164-aad0-b487392e6761,SESCO,II.1.1,Corrientes,AR-W,annual,2017,gas oil combustion consumption by to the public,1170.97428,TJ,CO2,74100.0,kg/TJ,86769194.14799999,kg +f9ce4e4e-3c56-3aeb-a59f-ab49984104e1,SESCO,II.1.1,Corrientes,AR-W,annual,2017,gas oil combustion consumption by to the public,1170.97428,TJ,CH4,3.9,kg/TJ,4566.799692,kg +f9ce4e4e-3c56-3aeb-a59f-ab49984104e1,SESCO,II.1.1,Corrientes,AR-W,annual,2017,gas oil combustion consumption by to the public,1170.97428,TJ,N2O,3.9,kg/TJ,4566.799692,kg +3c9cff13-67e3-34c6-9dd2-d9735050922d,SESCO,II.1.1,Córdoba,AR-X,annual,2017,gas oil combustion consumption by to the public,4838.8158,TJ,CO2,74100.0,kg/TJ,358556250.78000003,kg +35397f41-7e1c-3559-9aa5-ad84e70a82e6,SESCO,II.1.1,Córdoba,AR-X,annual,2017,gas oil combustion consumption by to the public,4838.8158,TJ,CH4,3.9,kg/TJ,18871.38162,kg +35397f41-7e1c-3559-9aa5-ad84e70a82e6,SESCO,II.1.1,Córdoba,AR-X,annual,2017,gas oil combustion consumption by to the public,4838.8158,TJ,N2O,3.9,kg/TJ,18871.38162,kg +11423e6e-1a49-3a3e-8a34-ef6cb1d835df,SESCO,II.1.1,Entre Rios,AR-E,annual,2017,gas oil combustion consumption by to the public,1757.52696,TJ,CO2,74100.0,kg/TJ,130232747.73599999,kg +4ff40742-b043-3d97-b73a-cba617a211b3,SESCO,II.1.1,Entre Rios,AR-E,annual,2017,gas oil combustion consumption by to the public,1757.52696,TJ,CH4,3.9,kg/TJ,6854.355143999999,kg +4ff40742-b043-3d97-b73a-cba617a211b3,SESCO,II.1.1,Entre Rios,AR-E,annual,2017,gas oil combustion consumption by to the public,1757.52696,TJ,N2O,3.9,kg/TJ,6854.355143999999,kg +5e54310a-d335-3103-ab87-91a454aeb465,SESCO,II.1.1,Formosa,AR-P,annual,2017,gas oil combustion consumption by to the public,378.8988,TJ,CO2,74100.0,kg/TJ,28076401.08,kg +ec3821b1-0119-3c19-a4f3-67934c42c706,SESCO,II.1.1,Formosa,AR-P,annual,2017,gas oil combustion consumption by to the public,378.8988,TJ,CH4,3.9,kg/TJ,1477.70532,kg +ec3821b1-0119-3c19-a4f3-67934c42c706,SESCO,II.1.1,Formosa,AR-P,annual,2017,gas oil combustion consumption by to the public,378.8988,TJ,N2O,3.9,kg/TJ,1477.70532,kg +d40ead91-f10d-320c-8572-f2d5ea14623f,SESCO,II.1.1,Jujuy,AR-Y,annual,2017,gas oil combustion consumption by to the public,870.38364,TJ,CO2,74100.0,kg/TJ,64495427.724,kg +7dadfba1-d547-3119-9fb6-5b1c7f9e5438,SESCO,II.1.1,Jujuy,AR-Y,annual,2017,gas oil combustion consumption by to the public,870.38364,TJ,CH4,3.9,kg/TJ,3394.496196,kg +7dadfba1-d547-3119-9fb6-5b1c7f9e5438,SESCO,II.1.1,Jujuy,AR-Y,annual,2017,gas oil combustion consumption by to the public,870.38364,TJ,N2O,3.9,kg/TJ,3394.496196,kg +13da701b-61a3-363b-836b-26afbca1bba7,SESCO,II.1.1,La Pampa,AR-L,annual,2017,gas oil combustion consumption by to the public,1417.31268,TJ,CO2,74100.0,kg/TJ,105022869.588,kg +ae0c64f9-10b1-32bb-a695-7247bd22e488,SESCO,II.1.1,La Pampa,AR-L,annual,2017,gas oil combustion consumption by to the public,1417.31268,TJ,CH4,3.9,kg/TJ,5527.519452,kg +ae0c64f9-10b1-32bb-a695-7247bd22e488,SESCO,II.1.1,La Pampa,AR-L,annual,2017,gas oil combustion consumption by to the public,1417.31268,TJ,N2O,3.9,kg/TJ,5527.519452,kg +0f202bb8-a3d3-3583-825d-1a3a4ec622b6,SESCO,II.1.1,La Rioja,AR-F,annual,2017,gas oil combustion consumption by to the public,481.1184,TJ,CO2,74100.0,kg/TJ,35650873.44,kg +2f15f4d4-c62e-34ac-a745-248e46419e42,SESCO,II.1.1,La Rioja,AR-F,annual,2017,gas oil combustion consumption by to the public,481.1184,TJ,CH4,3.9,kg/TJ,1876.36176,kg +2f15f4d4-c62e-34ac-a745-248e46419e42,SESCO,II.1.1,La Rioja,AR-F,annual,2017,gas oil combustion consumption by to the public,481.1184,TJ,N2O,3.9,kg/TJ,1876.36176,kg +e577e2e6-01b0-334f-88af-41a8ba18d694,SESCO,II.1.1,Mendoza,AR-M,annual,2017,gas oil combustion consumption by to the public,3401.56488,TJ,CO2,74100.0,kg/TJ,252055957.60799998,kg +57be8ce9-2797-3600-a83f-9caa7c786f2c,SESCO,II.1.1,Mendoza,AR-M,annual,2017,gas oil combustion consumption by to the public,3401.56488,TJ,CH4,3.9,kg/TJ,13266.103031999999,kg +57be8ce9-2797-3600-a83f-9caa7c786f2c,SESCO,II.1.1,Mendoza,AR-M,annual,2017,gas oil combustion consumption by to the public,3401.56488,TJ,N2O,3.9,kg/TJ,13266.103031999999,kg +013cdcec-5d5b-36a1-985e-520559f83466,SESCO,II.1.1,Misiones,AR-N,annual,2017,gas oil combustion consumption by to the public,1243.93668,TJ,CO2,74100.0,kg/TJ,92175707.988,kg +26658018-ba1a-3ad7-8e39-5f4e865fcd69,SESCO,II.1.1,Misiones,AR-N,annual,2017,gas oil combustion consumption by to the public,1243.93668,TJ,CH4,3.9,kg/TJ,4851.353052,kg +26658018-ba1a-3ad7-8e39-5f4e865fcd69,SESCO,II.1.1,Misiones,AR-N,annual,2017,gas oil combustion consumption by to the public,1243.93668,TJ,N2O,3.9,kg/TJ,4851.353052,kg +1ae1535c-2db8-3198-a102-57b01b6f47ef,SESCO,II.1.1,Neuquén,AR-Q,annual,2017,gas oil combustion consumption by to the public,2350.6173599999997,TJ,CO2,74100.0,kg/TJ,174180746.376,kg +9d92324d-acd2-3682-baab-2d847e744e41,SESCO,II.1.1,Neuquén,AR-Q,annual,2017,gas oil combustion consumption by to the public,2350.6173599999997,TJ,CH4,3.9,kg/TJ,9167.407704,kg +9d92324d-acd2-3682-baab-2d847e744e41,SESCO,II.1.1,Neuquén,AR-Q,annual,2017,gas oil combustion consumption by to the public,2350.6173599999997,TJ,N2O,3.9,kg/TJ,9167.407704,kg +eba7c17b-39f9-3020-9057-117bdce301fc,SESCO,II.1.1,Rio Negro,AR-R,annual,2017,gas oil combustion consumption by to the public,1739.7198,TJ,CO2,74100.0,kg/TJ,128913237.18,kg +797e94ed-95b2-3778-8c95-538aa1815eb2,SESCO,II.1.1,Rio Negro,AR-R,annual,2017,gas oil combustion consumption by to the public,1739.7198,TJ,CH4,3.9,kg/TJ,6784.90722,kg +797e94ed-95b2-3778-8c95-538aa1815eb2,SESCO,II.1.1,Rio Negro,AR-R,annual,2017,gas oil combustion consumption by to the public,1739.7198,TJ,N2O,3.9,kg/TJ,6784.90722,kg +8f5e74b4-bdc3-388d-a2a8-ae8e62453902,SESCO,II.1.1,Salta,AR-A,annual,2017,gas oil combustion consumption by to the public,1875.1698,TJ,CO2,74100.0,kg/TJ,138950082.18,kg +6d6af1cd-4f43-3d56-b085-0d1891b7adc3,SESCO,II.1.1,Salta,AR-A,annual,2017,gas oil combustion consumption by to the public,1875.1698,TJ,CH4,3.9,kg/TJ,7313.162219999999,kg +6d6af1cd-4f43-3d56-b085-0d1891b7adc3,SESCO,II.1.1,Salta,AR-A,annual,2017,gas oil combustion consumption by to the public,1875.1698,TJ,N2O,3.9,kg/TJ,7313.162219999999,kg +c420ba52-4dae-3e08-8ea4-e681a4e6c811,SESCO,II.1.1,San Juan,AR-J,annual,2017,gas oil combustion consumption by to the public,794.8206,TJ,CO2,74100.0,kg/TJ,58896206.46,kg +c86488a7-b77f-30b4-b8ca-15cee69d6b3a,SESCO,II.1.1,San Juan,AR-J,annual,2017,gas oil combustion consumption by to the public,794.8206,TJ,CH4,3.9,kg/TJ,3099.80034,kg +c86488a7-b77f-30b4-b8ca-15cee69d6b3a,SESCO,II.1.1,San Juan,AR-J,annual,2017,gas oil combustion consumption by to the public,794.8206,TJ,N2O,3.9,kg/TJ,3099.80034,kg +05861db4-0066-3b3f-8aea-c673c3cdb045,SESCO,II.1.1,San Luis,AR-D,annual,2017,gas oil combustion consumption by to the public,755.3053199999999,TJ,CO2,74100.0,kg/TJ,55968124.212,kg +eb3a5c5b-9a48-310e-9a38-0cc826decb35,SESCO,II.1.1,San Luis,AR-D,annual,2017,gas oil combustion consumption by to the public,755.3053199999999,TJ,CH4,3.9,kg/TJ,2945.6907479999995,kg +eb3a5c5b-9a48-310e-9a38-0cc826decb35,SESCO,II.1.1,San Luis,AR-D,annual,2017,gas oil combustion consumption by to the public,755.3053199999999,TJ,N2O,3.9,kg/TJ,2945.6907479999995,kg +ec8a794e-3082-3bb8-85a9-c21ad19b9dab,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2017,gas oil combustion consumption by to the public,1427.2818,TJ,CO2,74100.0,kg/TJ,105761581.38,kg +e2d59946-091f-3403-a351-a7dfad15ae56,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2017,gas oil combustion consumption by to the public,1427.2818,TJ,CH4,3.9,kg/TJ,5566.39902,kg +e2d59946-091f-3403-a351-a7dfad15ae56,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2017,gas oil combustion consumption by to the public,1427.2818,TJ,N2O,3.9,kg/TJ,5566.39902,kg +300426f5-7d2e-35a7-8813-cc912f59c833,SESCO,II.1.1,Santa Fe,AR-S,annual,2017,gas oil combustion consumption by to the public,3719.16804,TJ,CO2,74100.0,kg/TJ,275590351.764,kg +21c13ef5-51d8-3c8e-9e92-4c8266b7da61,SESCO,II.1.1,Santa Fe,AR-S,annual,2017,gas oil combustion consumption by to the public,3719.16804,TJ,CH4,3.9,kg/TJ,14504.755356,kg +21c13ef5-51d8-3c8e-9e92-4c8266b7da61,SESCO,II.1.1,Santa Fe,AR-S,annual,2017,gas oil combustion consumption by to the public,3719.16804,TJ,N2O,3.9,kg/TJ,14504.755356,kg +a9a47153-4166-3038-802f-cfead6fa64fc,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2017,gas oil combustion consumption by to the public,950.02824,TJ,CO2,74100.0,kg/TJ,70397092.58399999,kg +3c4a87c2-f13d-3bfc-aac6-a2e68f37eefc,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2017,gas oil combustion consumption by to the public,950.02824,TJ,CH4,3.9,kg/TJ,3705.110136,kg +3c4a87c2-f13d-3bfc-aac6-a2e68f37eefc,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2017,gas oil combustion consumption by to the public,950.02824,TJ,N2O,3.9,kg/TJ,3705.110136,kg +d44a8414-3e4d-3346-b76e-8b103c0cb7ff,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2017,gas oil combustion consumption by to the public,384.53352,TJ,CO2,74100.0,kg/TJ,28493933.832000002,kg +c3cd6e3c-2640-32fd-92f2-a8333424b543,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2017,gas oil combustion consumption by to the public,384.53352,TJ,CH4,3.9,kg/TJ,1499.680728,kg +c3cd6e3c-2640-32fd-92f2-a8333424b543,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2017,gas oil combustion consumption by to the public,384.53352,TJ,N2O,3.9,kg/TJ,1499.680728,kg +308f56ab-6f56-30c0-b1b2-f7e21b471481,SESCO,II.1.1,Tucuman,AR-T,annual,2017,gas oil combustion consumption by to the public,1166.96496,TJ,CO2,74100.0,kg/TJ,86472103.536,kg +1179e8f3-bf05-3598-99f5-9a7120e0b422,SESCO,II.1.1,Tucuman,AR-T,annual,2017,gas oil combustion consumption by to the public,1166.96496,TJ,CH4,3.9,kg/TJ,4551.163344,kg +1179e8f3-bf05-3598-99f5-9a7120e0b422,SESCO,II.1.1,Tucuman,AR-T,annual,2017,gas oil combustion consumption by to the public,1166.96496,TJ,N2O,3.9,kg/TJ,4551.163344,kg +f90e6382-3b87-38c9-b3fb-8baeb9439c21,SESCO,II.1.1,Buenos Aires,AR-B,annual,2017,jet kerosene combustion consumption by to the public,96.12036799999998,TJ,CO2,71500.0,kg/TJ,6872606.311999999,kg +6c7c87b4-51d9-3805-add1-421e21382557,SESCO,II.1.1,Buenos Aires,AR-B,annual,2017,jet kerosene combustion consumption by to the public,96.12036799999998,TJ,CH4,0.5,kg/TJ,48.06018399999999,kg +47a2d7ec-f7a9-3690-bed4-be48db59dfd3,SESCO,II.1.1,Buenos Aires,AR-B,annual,2017,jet kerosene combustion consumption by to the public,96.12036799999998,TJ,N2O,2.0,kg/TJ,192.24073599999997,kg +a8aba6a2-6fc5-3792-875d-09f07f4696dc,SESCO,II.1.1,Capital Federal,AR-C,annual,2017,jet kerosene combustion consumption by to the public,2.5476929999999998,TJ,CO2,71500.0,kg/TJ,182160.0495,kg +3249eb2f-8d6d-3493-a830-95dcd2da4ac2,SESCO,II.1.1,Capital Federal,AR-C,annual,2017,jet kerosene combustion consumption by to the public,2.5476929999999998,TJ,CH4,0.5,kg/TJ,1.2738464999999999,kg +a3241e36-b634-3fcd-86d0-5caa55920568,SESCO,II.1.1,Capital Federal,AR-C,annual,2017,jet kerosene combustion consumption by to the public,2.5476929999999998,TJ,N2O,2.0,kg/TJ,5.0953859999999995,kg +6b476be4-131e-35bf-935f-3e9559309126,SESCO,II.1.1,Catamarca,AR-K,annual,2017,jet kerosene combustion consumption by to the public,3.5541889999999996,TJ,CO2,71500.0,kg/TJ,254124.51349999997,kg +082fa422-f9a8-3e13-962e-59d83d78e36c,SESCO,II.1.1,Catamarca,AR-K,annual,2017,jet kerosene combustion consumption by to the public,3.5541889999999996,TJ,CH4,0.5,kg/TJ,1.7770944999999998,kg +aa643f30-8c96-3c27-ab48-b64e81e5b6fd,SESCO,II.1.1,Catamarca,AR-K,annual,2017,jet kerosene combustion consumption by to the public,3.5541889999999996,TJ,N2O,2.0,kg/TJ,7.108377999999999,kg +f654e150-9b67-37a3-9e45-3e57814d9c51,SESCO,II.1.1,Chaco,AR-H,annual,2017,jet kerosene combustion consumption by to the public,0.5976069999999999,TJ,CO2,71500.0,kg/TJ,42728.90049999999,kg +b3c0bfea-9e1d-3ec3-a2fd-0e0b4bef209e,SESCO,II.1.1,Chaco,AR-H,annual,2017,jet kerosene combustion consumption by to the public,0.5976069999999999,TJ,CH4,0.5,kg/TJ,0.29880349999999994,kg +eebfa245-7adf-3d93-a152-3f66e55dcee3,SESCO,II.1.1,Chaco,AR-H,annual,2017,jet kerosene combustion consumption by to the public,0.5976069999999999,TJ,N2O,2.0,kg/TJ,1.1952139999999998,kg +8a041542-9929-3614-82ab-34ea03ddb3b0,SESCO,II.1.1,Chubut,AR-U,annual,2017,jet kerosene combustion consumption by to the public,8.303591999999998,TJ,CO2,71500.0,kg/TJ,593706.8279999999,kg +311b6dd0-2643-3be5-89a0-2553042f3938,SESCO,II.1.1,Chubut,AR-U,annual,2017,jet kerosene combustion consumption by to the public,8.303591999999998,TJ,CH4,0.5,kg/TJ,4.151795999999999,kg +af4576f6-0963-35c9-818f-b71c02cac3be,SESCO,II.1.1,Chubut,AR-U,annual,2017,jet kerosene combustion consumption by to the public,8.303591999999998,TJ,N2O,2.0,kg/TJ,16.607183999999997,kg +f710eea3-563b-382f-b0da-e236b426caf5,SESCO,II.1.1,Corrientes,AR-W,annual,2017,jet kerosene combustion consumption by to the public,2.7678639999999994,TJ,CO2,71500.0,kg/TJ,197902.27599999995,kg +1fdf1ff1-0b92-3723-9e78-2123d7dabeea,SESCO,II.1.1,Corrientes,AR-W,annual,2017,jet kerosene combustion consumption by to the public,2.7678639999999994,TJ,CH4,0.5,kg/TJ,1.3839319999999997,kg +a2b438d5-7e92-3b30-a411-53112d30a16f,SESCO,II.1.1,Corrientes,AR-W,annual,2017,jet kerosene combustion consumption by to the public,2.7678639999999994,TJ,N2O,2.0,kg/TJ,5.535727999999999,kg +0250b039-7c54-3099-9fe5-e48bd0120aa5,SESCO,II.1.1,Córdoba,AR-X,annual,2017,jet kerosene combustion consumption by to the public,41.234882999999996,TJ,CO2,71500.0,kg/TJ,2948294.1344999997,kg +52728a9a-165c-3775-8501-76b9584ea01e,SESCO,II.1.1,Córdoba,AR-X,annual,2017,jet kerosene combustion consumption by to the public,41.234882999999996,TJ,CH4,0.5,kg/TJ,20.617441499999998,kg +39295754-e8a0-3666-ad30-badd9ea2a1ed,SESCO,II.1.1,Córdoba,AR-X,annual,2017,jet kerosene combustion consumption by to the public,41.234882999999996,TJ,N2O,2.0,kg/TJ,82.46976599999999,kg +8cb91134-2a4b-363e-af82-9d7fb127e056,SESCO,II.1.1,Entre Rios,AR-E,annual,2017,jet kerosene combustion consumption by to the public,6.762394999999999,TJ,CO2,71500.0,kg/TJ,483511.24249999993,kg +c472dcba-4685-3516-aa84-a004369b7ccf,SESCO,II.1.1,Entre Rios,AR-E,annual,2017,jet kerosene combustion consumption by to the public,6.762394999999999,TJ,CH4,0.5,kg/TJ,3.3811974999999994,kg +da2eb8c5-2971-377f-aee2-1a6b334e2709,SESCO,II.1.1,Entre Rios,AR-E,annual,2017,jet kerosene combustion consumption by to the public,6.762394999999999,TJ,N2O,2.0,kg/TJ,13.524789999999998,kg +7a52bebe-5482-3525-8307-d861e91d7154,SESCO,II.1.1,Jujuy,AR-Y,annual,2017,jet kerosene combustion consumption by to the public,3.9630779999999994,TJ,CO2,71500.0,kg/TJ,283360.07699999993,kg +651a8ee3-3e4e-3f0a-a75b-4748ec909a03,SESCO,II.1.1,Jujuy,AR-Y,annual,2017,jet kerosene combustion consumption by to the public,3.9630779999999994,TJ,CH4,0.5,kg/TJ,1.9815389999999997,kg +3291c58a-847d-389e-9ac9-451ea8e49cd1,SESCO,II.1.1,Jujuy,AR-Y,annual,2017,jet kerosene combustion consumption by to the public,3.9630779999999994,TJ,N2O,2.0,kg/TJ,7.926155999999999,kg +f27c036b-27a4-32c9-92c2-a444936c2987,SESCO,II.1.1,La Pampa,AR-L,annual,2017,jet kerosene combustion consumption by to the public,2.4533339999999995,TJ,CO2,71500.0,kg/TJ,175413.38099999996,kg +e480c30c-a2c8-3215-9be4-067f3fc365b0,SESCO,II.1.1,La Pampa,AR-L,annual,2017,jet kerosene combustion consumption by to the public,2.4533339999999995,TJ,CH4,0.5,kg/TJ,1.2266669999999997,kg +4f99e8ed-9692-38a9-809b-7e65b88e59dc,SESCO,II.1.1,La Pampa,AR-L,annual,2017,jet kerosene combustion consumption by to the public,2.4533339999999995,TJ,N2O,2.0,kg/TJ,4.906667999999999,kg +878378fb-2e8e-391b-99db-a4ba8c70e406,SESCO,II.1.1,La Rioja,AR-F,annual,2017,jet kerosene combustion consumption by to the public,2.0444449999999996,TJ,CO2,71500.0,kg/TJ,146177.81749999998,kg +e1994795-a8c0-37f3-9e99-96c1675d9be1,SESCO,II.1.1,La Rioja,AR-F,annual,2017,jet kerosene combustion consumption by to the public,2.0444449999999996,TJ,CH4,0.5,kg/TJ,1.0222224999999998,kg +a3c50921-a520-360e-bd6d-ebb07a9b088c,SESCO,II.1.1,La Rioja,AR-F,annual,2017,jet kerosene combustion consumption by to the public,2.0444449999999996,TJ,N2O,2.0,kg/TJ,4.088889999999999,kg +ab206c93-ec36-3ebb-9e41-2d5dcf2975a0,SESCO,II.1.1,Mendoza,AR-M,annual,2017,jet kerosene combustion consumption by to the public,15.978123999999998,TJ,CO2,71500.0,kg/TJ,1142435.866,kg +0532f9e2-1c1c-3af6-8175-196b5eb3d7ff,SESCO,II.1.1,Mendoza,AR-M,annual,2017,jet kerosene combustion consumption by to the public,15.978123999999998,TJ,CH4,0.5,kg/TJ,7.989061999999999,kg +8cb9d7d6-b4ff-379d-9b32-c8e8bef753c0,SESCO,II.1.1,Mendoza,AR-M,annual,2017,jet kerosene combustion consumption by to the public,15.978123999999998,TJ,N2O,2.0,kg/TJ,31.956247999999995,kg +a43941b1-a788-3524-8441-7c8e92da22b7,SESCO,II.1.1,Neuquén,AR-Q,annual,2017,jet kerosene combustion consumption by to the public,7.800343999999999,TJ,CO2,71500.0,kg/TJ,557724.5959999999,kg +fea026e0-8a2c-35ad-b55a-15a60f6abe30,SESCO,II.1.1,Neuquén,AR-Q,annual,2017,jet kerosene combustion consumption by to the public,7.800343999999999,TJ,CH4,0.5,kg/TJ,3.9001719999999995,kg +3627540e-0753-3ef6-9d8a-88c3397c3e30,SESCO,II.1.1,Neuquén,AR-Q,annual,2017,jet kerosene combustion consumption by to the public,7.800343999999999,TJ,N2O,2.0,kg/TJ,15.600687999999998,kg +a7b438f6-23ee-311d-bcda-99bdf73b4c0c,SESCO,II.1.1,Rio Negro,AR-R,annual,2017,jet kerosene combustion consumption by to the public,0.8177779999999999,TJ,CO2,71500.0,kg/TJ,58471.12699999999,kg +81fdf674-303f-38b4-af2e-a68fd1ec6d36,SESCO,II.1.1,Rio Negro,AR-R,annual,2017,jet kerosene combustion consumption by to the public,0.8177779999999999,TJ,CH4,0.5,kg/TJ,0.40888899999999995,kg +faa1c4b8-5332-3a26-a1e7-a98487d0abc0,SESCO,II.1.1,Rio Negro,AR-R,annual,2017,jet kerosene combustion consumption by to the public,0.8177779999999999,TJ,N2O,2.0,kg/TJ,1.6355559999999998,kg +3f265112-1a94-3e02-b39a-39a2c9d353c8,SESCO,II.1.1,Salta,AR-A,annual,2017,jet kerosene combustion consumption by to the public,0.37743599999999994,TJ,CO2,71500.0,kg/TJ,26986.673999999995,kg +74761a34-5f8d-3c25-b659-6fd007e84237,SESCO,II.1.1,Salta,AR-A,annual,2017,jet kerosene combustion consumption by to the public,0.37743599999999994,TJ,CH4,0.5,kg/TJ,0.18871799999999997,kg +c657a217-3fae-38ac-bb31-2af922dc2c83,SESCO,II.1.1,Salta,AR-A,annual,2017,jet kerosene combustion consumption by to the public,0.37743599999999994,TJ,N2O,2.0,kg/TJ,0.7548719999999999,kg +6c865507-e2b0-375f-adac-49e93bd71e1d,SESCO,II.1.1,San Juan,AR-J,annual,2017,jet kerosene combustion consumption by to the public,3.1767529999999993,TJ,CO2,71500.0,kg/TJ,227137.83949999994,kg +ce16b9fe-0352-39f6-bd69-0ad226efaea3,SESCO,II.1.1,San Juan,AR-J,annual,2017,jet kerosene combustion consumption by to the public,3.1767529999999993,TJ,CH4,0.5,kg/TJ,1.5883764999999996,kg +dd8ced4e-f657-3b4e-bf0e-d7302929f998,SESCO,II.1.1,San Juan,AR-J,annual,2017,jet kerosene combustion consumption by to the public,3.1767529999999993,TJ,N2O,2.0,kg/TJ,6.3535059999999985,kg +d50641ab-bcdf-3245-8cd3-b7535e82257d,SESCO,II.1.1,San Luis,AR-D,annual,2017,jet kerosene combustion consumption by to the public,5.692992999999999,TJ,CO2,71500.0,kg/TJ,407048.9994999999,kg +32c3bcaa-ced9-35a5-9c63-5487c1d1bbf9,SESCO,II.1.1,San Luis,AR-D,annual,2017,jet kerosene combustion consumption by to the public,5.692992999999999,TJ,CH4,0.5,kg/TJ,2.8464964999999993,kg +ef3d3e7d-72a3-378a-833d-845593f89616,SESCO,II.1.1,San Luis,AR-D,annual,2017,jet kerosene combustion consumption by to the public,5.692992999999999,TJ,N2O,2.0,kg/TJ,11.385985999999997,kg +5786849d-f751-36eb-b46b-362f5217c904,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2017,jet kerosene combustion consumption by to the public,7.360001999999999,TJ,CO2,71500.0,kg/TJ,526240.1429999999,kg +a93ec8a7-533f-3339-ad44-026fae86ee0a,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2017,jet kerosene combustion consumption by to the public,7.360001999999999,TJ,CH4,0.5,kg/TJ,3.6800009999999994,kg +2728c3a5-a782-34e3-bbc8-77e6d90bd11a,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2017,jet kerosene combustion consumption by to the public,7.360001999999999,TJ,N2O,2.0,kg/TJ,14.720003999999998,kg +bdcdeac8-c909-360c-bd8a-93cf0ef08072,SESCO,II.1.1,Santa Fe,AR-S,annual,2017,jet kerosene combustion consumption by to the public,21.262227999999997,TJ,CO2,71500.0,kg/TJ,1520249.3019999997,kg +7faceaa1-38d1-33e1-a6f0-8869b6f34f26,SESCO,II.1.1,Santa Fe,AR-S,annual,2017,jet kerosene combustion consumption by to the public,21.262227999999997,TJ,CH4,0.5,kg/TJ,10.631113999999998,kg +677b67c3-022e-3e2d-b0b1-6210479896f7,SESCO,II.1.1,Santa Fe,AR-S,annual,2017,jet kerosene combustion consumption by to the public,21.262227999999997,TJ,N2O,2.0,kg/TJ,42.524455999999994,kg +e2d61e97-e5f6-3fc8-869c-1a48fd7c03d7,SESCO,II.1.1,Tucuman,AR-T,annual,2017,jet kerosene combustion consumption by to the public,10.725472999999997,TJ,CO2,71500.0,kg/TJ,766871.3194999999,kg +9920b8f5-5355-3578-a00b-cb78446323b7,SESCO,II.1.1,Tucuman,AR-T,annual,2017,jet kerosene combustion consumption by to the public,10.725472999999997,TJ,CH4,0.5,kg/TJ,5.362736499999999,kg +a06578ed-0a5d-3e59-be91-5dff6ef9376f,SESCO,II.1.1,Tucuman,AR-T,annual,2017,jet kerosene combustion consumption by to the public,10.725472999999997,TJ,N2O,2.0,kg/TJ,21.450945999999995,kg +ebecf47b-8a12-36c2-90d8-d986740d0709,SESCO,II.1.1,Buenos Aires,AR-B,annual,2017,gas oil combustion consumption by freight transport,9561.07236,TJ,CO2,74100.0,kg/TJ,708475461.876,kg +4a351df3-c374-3592-af36-2bf80afb74a5,SESCO,II.1.1,Buenos Aires,AR-B,annual,2017,gas oil combustion consumption by freight transport,9561.07236,TJ,CH4,3.9,kg/TJ,37288.182204,kg +4a351df3-c374-3592-af36-2bf80afb74a5,SESCO,II.1.1,Buenos Aires,AR-B,annual,2017,gas oil combustion consumption by freight transport,9561.07236,TJ,N2O,3.9,kg/TJ,37288.182204,kg +733e54de-e9fb-3f3a-bd24-caf0c32b661d,SESCO,II.1.1,Capital Federal,AR-C,annual,2017,gas oil combustion consumption by freight transport,4040.99724,TJ,CO2,74100.0,kg/TJ,299437895.484,kg +63e07a67-67ee-3a5f-b353-9b68d8b2d86c,SESCO,II.1.1,Capital Federal,AR-C,annual,2017,gas oil combustion consumption by freight transport,4040.99724,TJ,CH4,3.9,kg/TJ,15759.889236,kg +63e07a67-67ee-3a5f-b353-9b68d8b2d86c,SESCO,II.1.1,Capital Federal,AR-C,annual,2017,gas oil combustion consumption by freight transport,4040.99724,TJ,N2O,3.9,kg/TJ,15759.889236,kg +788b4863-e686-384f-928b-5231d1afdd93,SESCO,II.1.1,Catamarca,AR-K,annual,2017,gas oil combustion consumption by freight transport,23.36964,TJ,CO2,74100.0,kg/TJ,1731690.324,kg +1bc652e5-f06f-3efc-8a14-11d9c2a15793,SESCO,II.1.1,Catamarca,AR-K,annual,2017,gas oil combustion consumption by freight transport,23.36964,TJ,CH4,3.9,kg/TJ,91.14159599999999,kg +1bc652e5-f06f-3efc-8a14-11d9c2a15793,SESCO,II.1.1,Catamarca,AR-K,annual,2017,gas oil combustion consumption by freight transport,23.36964,TJ,N2O,3.9,kg/TJ,91.14159599999999,kg +486554a0-7c84-31ed-b558-a89ca1bc3a1a,SESCO,II.1.1,Chaco,AR-H,annual,2017,gas oil combustion consumption by freight transport,262.73688,TJ,CO2,74100.0,kg/TJ,19468802.808,kg +38a7160b-63f4-36a8-b095-b7b99bd0c148,SESCO,II.1.1,Chaco,AR-H,annual,2017,gas oil combustion consumption by freight transport,262.73688,TJ,CH4,3.9,kg/TJ,1024.673832,kg +38a7160b-63f4-36a8-b095-b7b99bd0c148,SESCO,II.1.1,Chaco,AR-H,annual,2017,gas oil combustion consumption by freight transport,262.73688,TJ,N2O,3.9,kg/TJ,1024.673832,kg +7826f9ed-1b0a-3ad4-826c-f676ef69fc76,SESCO,II.1.1,Chubut,AR-U,annual,2017,gas oil combustion consumption by freight transport,221.99352,TJ,CO2,74100.0,kg/TJ,16449719.831999999,kg +31ad7a5c-6e87-315a-b849-afa9003fdb47,SESCO,II.1.1,Chubut,AR-U,annual,2017,gas oil combustion consumption by freight transport,221.99352,TJ,CH4,3.9,kg/TJ,865.774728,kg +31ad7a5c-6e87-315a-b849-afa9003fdb47,SESCO,II.1.1,Chubut,AR-U,annual,2017,gas oil combustion consumption by freight transport,221.99352,TJ,N2O,3.9,kg/TJ,865.774728,kg +f7b354ca-a322-3762-a19d-7869903682e9,SESCO,II.1.1,Corrientes,AR-W,annual,2017,gas oil combustion consumption by freight transport,323.34623999999997,TJ,CO2,74100.0,kg/TJ,23959956.383999996,kg +1d2f1c2a-e65a-3071-8095-b4c27ca7b69c,SESCO,II.1.1,Corrientes,AR-W,annual,2017,gas oil combustion consumption by freight transport,323.34623999999997,TJ,CH4,3.9,kg/TJ,1261.0503359999998,kg +1d2f1c2a-e65a-3071-8095-b4c27ca7b69c,SESCO,II.1.1,Corrientes,AR-W,annual,2017,gas oil combustion consumption by freight transport,323.34623999999997,TJ,N2O,3.9,kg/TJ,1261.0503359999998,kg +184094bf-3f4c-351f-88d4-3057fe536109,SESCO,II.1.1,Córdoba,AR-X,annual,2017,gas oil combustion consumption by freight transport,2655.57852,TJ,CO2,74100.0,kg/TJ,196778368.332,kg +c40e5aa3-e4dc-362a-ab0e-47041e58b327,SESCO,II.1.1,Córdoba,AR-X,annual,2017,gas oil combustion consumption by freight transport,2655.57852,TJ,CH4,3.9,kg/TJ,10356.756228,kg +c40e5aa3-e4dc-362a-ab0e-47041e58b327,SESCO,II.1.1,Córdoba,AR-X,annual,2017,gas oil combustion consumption by freight transport,2655.57852,TJ,N2O,3.9,kg/TJ,10356.756228,kg +a28ed434-3e54-3e43-9373-c08888d37f9f,SESCO,II.1.1,Entre Rios,AR-E,annual,2017,gas oil combustion consumption by freight transport,555.48948,TJ,CO2,74100.0,kg/TJ,41161770.467999995,kg +abd11c6c-bd21-3d84-a93a-5fc75fea7786,SESCO,II.1.1,Entre Rios,AR-E,annual,2017,gas oil combustion consumption by freight transport,555.48948,TJ,CH4,3.9,kg/TJ,2166.4089719999997,kg +abd11c6c-bd21-3d84-a93a-5fc75fea7786,SESCO,II.1.1,Entre Rios,AR-E,annual,2017,gas oil combustion consumption by freight transport,555.48948,TJ,N2O,3.9,kg/TJ,2166.4089719999997,kg +04fda7f2-8505-3f16-ab52-00e87bf5be32,SESCO,II.1.1,Formosa,AR-P,annual,2017,gas oil combustion consumption by freight transport,26.40372,TJ,CO2,74100.0,kg/TJ,1956515.652,kg +c01f2fb7-8341-3af0-b38d-fdd8208a6a3c,SESCO,II.1.1,Formosa,AR-P,annual,2017,gas oil combustion consumption by freight transport,26.40372,TJ,CH4,3.9,kg/TJ,102.974508,kg +c01f2fb7-8341-3af0-b38d-fdd8208a6a3c,SESCO,II.1.1,Formosa,AR-P,annual,2017,gas oil combustion consumption by freight transport,26.40372,TJ,N2O,3.9,kg/TJ,102.974508,kg +4fbb9565-717c-3faa-b962-45c63f4569d3,SESCO,II.1.1,Jujuy,AR-Y,annual,2017,gas oil combustion consumption by freight transport,154.08792,TJ,CO2,74100.0,kg/TJ,11417914.872,kg +73e10711-d158-39f9-a42e-d244251f6847,SESCO,II.1.1,Jujuy,AR-Y,annual,2017,gas oil combustion consumption by freight transport,154.08792,TJ,CH4,3.9,kg/TJ,600.9428879999999,kg +73e10711-d158-39f9-a42e-d244251f6847,SESCO,II.1.1,Jujuy,AR-Y,annual,2017,gas oil combustion consumption by freight transport,154.08792,TJ,N2O,3.9,kg/TJ,600.9428879999999,kg +e88b806e-d121-3aff-9bfb-d884f27b79da,SESCO,II.1.1,La Pampa,AR-L,annual,2017,gas oil combustion consumption by freight transport,179.44416,TJ,CO2,74100.0,kg/TJ,13296812.256000001,kg +6d6cbe2e-f512-36bf-86f9-fa950bbc6938,SESCO,II.1.1,La Pampa,AR-L,annual,2017,gas oil combustion consumption by freight transport,179.44416,TJ,CH4,3.9,kg/TJ,699.832224,kg +6d6cbe2e-f512-36bf-86f9-fa950bbc6938,SESCO,II.1.1,La Pampa,AR-L,annual,2017,gas oil combustion consumption by freight transport,179.44416,TJ,N2O,3.9,kg/TJ,699.832224,kg +bd8b2ba2-651a-36a5-80ca-8ed650e51867,SESCO,II.1.1,La Rioja,AR-F,annual,2017,gas oil combustion consumption by freight transport,11.48616,TJ,CO2,74100.0,kg/TJ,851124.456,kg +3c6ee583-12c9-389c-80ea-d58bceeda7b5,SESCO,II.1.1,La Rioja,AR-F,annual,2017,gas oil combustion consumption by freight transport,11.48616,TJ,CH4,3.9,kg/TJ,44.796023999999996,kg +3c6ee583-12c9-389c-80ea-d58bceeda7b5,SESCO,II.1.1,La Rioja,AR-F,annual,2017,gas oil combustion consumption by freight transport,11.48616,TJ,N2O,3.9,kg/TJ,44.796023999999996,kg +c62df0b6-2bb8-3817-95c7-d262ff0193b1,SESCO,II.1.1,Mendoza,AR-M,annual,2017,gas oil combustion consumption by freight transport,1920.42816,TJ,CO2,74100.0,kg/TJ,142303726.656,kg +24656b27-0a8b-36bf-b68d-4c600c85852f,SESCO,II.1.1,Mendoza,AR-M,annual,2017,gas oil combustion consumption by freight transport,1920.42816,TJ,CH4,3.9,kg/TJ,7489.669824,kg +24656b27-0a8b-36bf-b68d-4c600c85852f,SESCO,II.1.1,Mendoza,AR-M,annual,2017,gas oil combustion consumption by freight transport,1920.42816,TJ,N2O,3.9,kg/TJ,7489.669824,kg +b6d6d26d-0bf6-39c9-9f35-15b673d7c35d,SESCO,II.1.1,Misiones,AR-N,annual,2017,gas oil combustion consumption by freight transport,825.73932,TJ,CO2,74100.0,kg/TJ,61187283.612,kg +aa4fe41e-b5aa-3732-86b8-d5372fe0a64c,SESCO,II.1.1,Misiones,AR-N,annual,2017,gas oil combustion consumption by freight transport,825.73932,TJ,CH4,3.9,kg/TJ,3220.383348,kg +aa4fe41e-b5aa-3732-86b8-d5372fe0a64c,SESCO,II.1.1,Misiones,AR-N,annual,2017,gas oil combustion consumption by freight transport,825.73932,TJ,N2O,3.9,kg/TJ,3220.383348,kg +eb0c0f49-9780-3d22-ab5f-0e84ca5f329e,SESCO,II.1.1,Neuquén,AR-Q,annual,2017,gas oil combustion consumption by freight transport,999.54876,TJ,CO2,74100.0,kg/TJ,74066563.116,kg +1113f174-3e03-3220-8de1-1b6bb490f490,SESCO,II.1.1,Neuquén,AR-Q,annual,2017,gas oil combustion consumption by freight transport,999.54876,TJ,CH4,3.9,kg/TJ,3898.240164,kg +1113f174-3e03-3220-8de1-1b6bb490f490,SESCO,II.1.1,Neuquén,AR-Q,annual,2017,gas oil combustion consumption by freight transport,999.54876,TJ,N2O,3.9,kg/TJ,3898.240164,kg +b8231c5b-3fae-3b85-a228-2db81efab4dd,SESCO,II.1.1,Rio Negro,AR-R,annual,2017,gas oil combustion consumption by freight transport,344.29584,TJ,CO2,74100.0,kg/TJ,25512321.744,kg +92a89756-2530-36ad-9db4-b1be72b9488f,SESCO,II.1.1,Rio Negro,AR-R,annual,2017,gas oil combustion consumption by freight transport,344.29584,TJ,CH4,3.9,kg/TJ,1342.753776,kg +92a89756-2530-36ad-9db4-b1be72b9488f,SESCO,II.1.1,Rio Negro,AR-R,annual,2017,gas oil combustion consumption by freight transport,344.29584,TJ,N2O,3.9,kg/TJ,1342.753776,kg +e3520ff5-de2c-3c6a-99cf-bc9242266085,SESCO,II.1.1,Salta,AR-A,annual,2017,gas oil combustion consumption by freight transport,343.06776,TJ,CO2,74100.0,kg/TJ,25421321.016000003,kg +936d334b-a31b-3d91-ab53-d2ac60e28049,SESCO,II.1.1,Salta,AR-A,annual,2017,gas oil combustion consumption by freight transport,343.06776,TJ,CH4,3.9,kg/TJ,1337.964264,kg +936d334b-a31b-3d91-ab53-d2ac60e28049,SESCO,II.1.1,Salta,AR-A,annual,2017,gas oil combustion consumption by freight transport,343.06776,TJ,N2O,3.9,kg/TJ,1337.964264,kg +aacbe3fc-fe0a-3291-ae4d-566f9ab7e26f,SESCO,II.1.1,San Juan,AR-J,annual,2017,gas oil combustion consumption by freight transport,120.099,TJ,CO2,74100.0,kg/TJ,8899335.9,kg +c4fe6075-6f63-35b2-9819-089cb89c154c,SESCO,II.1.1,San Juan,AR-J,annual,2017,gas oil combustion consumption by freight transport,120.099,TJ,CH4,3.9,kg/TJ,468.3861,kg +c4fe6075-6f63-35b2-9819-089cb89c154c,SESCO,II.1.1,San Juan,AR-J,annual,2017,gas oil combustion consumption by freight transport,120.099,TJ,N2O,3.9,kg/TJ,468.3861,kg +581cf875-dfae-3d17-93d2-24971a85f366,SESCO,II.1.1,San Luis,AR-D,annual,2017,gas oil combustion consumption by freight transport,183.8508,TJ,CO2,74100.0,kg/TJ,13623344.28,kg +4b30fe2e-9628-3530-a38e-acb33d115311,SESCO,II.1.1,San Luis,AR-D,annual,2017,gas oil combustion consumption by freight transport,183.8508,TJ,CH4,3.9,kg/TJ,717.01812,kg +4b30fe2e-9628-3530-a38e-acb33d115311,SESCO,II.1.1,San Luis,AR-D,annual,2017,gas oil combustion consumption by freight transport,183.8508,TJ,N2O,3.9,kg/TJ,717.01812,kg +42c08f1d-00af-379d-bfff-6b29b20873c8,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2017,gas oil combustion consumption by freight transport,132.23532,TJ,CO2,74100.0,kg/TJ,9798637.212,kg +d32f205a-9a66-3e43-af97-366558b9ea73,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2017,gas oil combustion consumption by freight transport,132.23532,TJ,CH4,3.9,kg/TJ,515.717748,kg +d32f205a-9a66-3e43-af97-366558b9ea73,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2017,gas oil combustion consumption by freight transport,132.23532,TJ,N2O,3.9,kg/TJ,515.717748,kg +fd5ed197-7517-3a6b-9ae7-dfc4d09348dd,SESCO,II.1.1,Santa Fe,AR-S,annual,2017,gas oil combustion consumption by freight transport,2468.9826,TJ,CO2,74100.0,kg/TJ,182951610.66,kg +d9812b57-10f4-3e09-8226-2fbf1b8b1353,SESCO,II.1.1,Santa Fe,AR-S,annual,2017,gas oil combustion consumption by freight transport,2468.9826,TJ,CH4,3.9,kg/TJ,9629.03214,kg +d9812b57-10f4-3e09-8226-2fbf1b8b1353,SESCO,II.1.1,Santa Fe,AR-S,annual,2017,gas oil combustion consumption by freight transport,2468.9826,TJ,N2O,3.9,kg/TJ,9629.03214,kg +935bfca3-9192-35c4-8e39-c01163020ce3,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2017,gas oil combustion consumption by freight transport,220.54872,TJ,CO2,74100.0,kg/TJ,16342660.152,kg +f91269ce-0dbd-35de-a578-eb17522c930b,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2017,gas oil combustion consumption by freight transport,220.54872,TJ,CH4,3.9,kg/TJ,860.140008,kg +f91269ce-0dbd-35de-a578-eb17522c930b,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2017,gas oil combustion consumption by freight transport,220.54872,TJ,N2O,3.9,kg/TJ,860.140008,kg +23b95649-e1ba-3714-8a49-9564b35bb111,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2017,gas oil combustion consumption by freight transport,200.71884,TJ,CO2,74100.0,kg/TJ,14873266.044,kg +76c0fe52-4ddc-39eb-83d3-5ea0a7845fd6,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2017,gas oil combustion consumption by freight transport,200.71884,TJ,CH4,3.9,kg/TJ,782.8034759999999,kg +76c0fe52-4ddc-39eb-83d3-5ea0a7845fd6,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2017,gas oil combustion consumption by freight transport,200.71884,TJ,N2O,3.9,kg/TJ,782.8034759999999,kg +9f413994-f4c5-38f9-b4a5-4c621c7d0142,SESCO,II.1.1,Tucuman,AR-T,annual,2017,gas oil combustion consumption by freight transport,664.13844,TJ,CO2,74100.0,kg/TJ,49212658.404,kg +41a748d4-2262-363d-96ec-b57f555b53f1,SESCO,II.1.1,Tucuman,AR-T,annual,2017,gas oil combustion consumption by freight transport,664.13844,TJ,CH4,3.9,kg/TJ,2590.1399159999996,kg +41a748d4-2262-363d-96ec-b57f555b53f1,SESCO,II.1.1,Tucuman,AR-T,annual,2017,gas oil combustion consumption by freight transport,664.13844,TJ,N2O,3.9,kg/TJ,2590.1399159999996,kg +78cd42b3-247d-31c9-8a6d-1912e5c7a092,SESCO,II.1.1,Buenos Aires,AR-B,annual,2017,gas oil combustion consumption by freight transport,1389.5364,TJ,CO2,74100.0,kg/TJ,102964647.24,kg +96d2cc1b-a7d7-3d68-b71c-649bfea317e0,SESCO,II.1.1,Buenos Aires,AR-B,annual,2017,gas oil combustion consumption by freight transport,1389.5364,TJ,CH4,3.9,kg/TJ,5419.19196,kg +96d2cc1b-a7d7-3d68-b71c-649bfea317e0,SESCO,II.1.1,Buenos Aires,AR-B,annual,2017,gas oil combustion consumption by freight transport,1389.5364,TJ,N2O,3.9,kg/TJ,5419.19196,kg +9fbcb57d-0adb-3ce2-b5d0-702af09cbd45,SESCO,II.1.1,Capital Federal,AR-C,annual,2017,gas oil combustion consumption by freight transport,1452.5658,TJ,CO2,74100.0,kg/TJ,107635125.78,kg +e9ab0026-9076-3850-b061-31ff5c102272,SESCO,II.1.1,Capital Federal,AR-C,annual,2017,gas oil combustion consumption by freight transport,1452.5658,TJ,CH4,3.9,kg/TJ,5665.00662,kg +e9ab0026-9076-3850-b061-31ff5c102272,SESCO,II.1.1,Capital Federal,AR-C,annual,2017,gas oil combustion consumption by freight transport,1452.5658,TJ,N2O,3.9,kg/TJ,5665.00662,kg +834fb272-094c-3b88-9302-3201e2475633,SESCO,II.1.1,Catamarca,AR-K,annual,2017,gas oil combustion consumption by freight transport,2.31168,TJ,CO2,74100.0,kg/TJ,171295.48799999998,kg +607b120c-bba9-3cad-9ee1-bcaed7c21d76,SESCO,II.1.1,Catamarca,AR-K,annual,2017,gas oil combustion consumption by freight transport,2.31168,TJ,CH4,3.9,kg/TJ,9.015552,kg +607b120c-bba9-3cad-9ee1-bcaed7c21d76,SESCO,II.1.1,Catamarca,AR-K,annual,2017,gas oil combustion consumption by freight transport,2.31168,TJ,N2O,3.9,kg/TJ,9.015552,kg +00a64904-70bc-3ecd-ae3d-4a29f4abd910,SESCO,II.1.1,Chaco,AR-H,annual,2017,gas oil combustion consumption by freight transport,74.66004,TJ,CO2,74100.0,kg/TJ,5532308.964,kg +a0fa08d2-4e47-3ba5-99be-ab59e86e898e,SESCO,II.1.1,Chaco,AR-H,annual,2017,gas oil combustion consumption by freight transport,74.66004,TJ,CH4,3.9,kg/TJ,291.174156,kg +a0fa08d2-4e47-3ba5-99be-ab59e86e898e,SESCO,II.1.1,Chaco,AR-H,annual,2017,gas oil combustion consumption by freight transport,74.66004,TJ,N2O,3.9,kg/TJ,291.174156,kg +ba8a5588-eee9-3b1c-9803-67fdc77e3c67,SESCO,II.1.1,Chubut,AR-U,annual,2017,gas oil combustion consumption by freight transport,159.21696,TJ,CO2,74100.0,kg/TJ,11797976.736,kg +0f14ef69-2185-3a44-9652-c56c5a7a0d64,SESCO,II.1.1,Chubut,AR-U,annual,2017,gas oil combustion consumption by freight transport,159.21696,TJ,CH4,3.9,kg/TJ,620.946144,kg +0f14ef69-2185-3a44-9652-c56c5a7a0d64,SESCO,II.1.1,Chubut,AR-U,annual,2017,gas oil combustion consumption by freight transport,159.21696,TJ,N2O,3.9,kg/TJ,620.946144,kg +d8ae9ee3-3ddd-3f3b-ae34-ecb0755fba3c,SESCO,II.1.1,Corrientes,AR-W,annual,2017,gas oil combustion consumption by freight transport,40.12932,TJ,CO2,74100.0,kg/TJ,2973582.612,kg +d88a1f41-909d-3e20-8c66-4c63fdca6fb6,SESCO,II.1.1,Corrientes,AR-W,annual,2017,gas oil combustion consumption by freight transport,40.12932,TJ,CH4,3.9,kg/TJ,156.504348,kg +d88a1f41-909d-3e20-8c66-4c63fdca6fb6,SESCO,II.1.1,Corrientes,AR-W,annual,2017,gas oil combustion consumption by freight transport,40.12932,TJ,N2O,3.9,kg/TJ,156.504348,kg +dd8ecc15-7844-33c7-856a-9b2ef8fc0450,SESCO,II.1.1,Córdoba,AR-X,annual,2017,gas oil combustion consumption by freight transport,173.80944,TJ,CO2,74100.0,kg/TJ,12879279.503999999,kg +1e885226-df28-385f-ba95-d060ff4bca2f,SESCO,II.1.1,Córdoba,AR-X,annual,2017,gas oil combustion consumption by freight transport,173.80944,TJ,CH4,3.9,kg/TJ,677.856816,kg +1e885226-df28-385f-ba95-d060ff4bca2f,SESCO,II.1.1,Córdoba,AR-X,annual,2017,gas oil combustion consumption by freight transport,173.80944,TJ,N2O,3.9,kg/TJ,677.856816,kg +01dcf267-5dc4-3188-bfa6-c0299531b8b4,SESCO,II.1.1,Entre Rios,AR-E,annual,2017,gas oil combustion consumption by freight transport,83.69004,TJ,CO2,74100.0,kg/TJ,6201431.964,kg +85e9689b-faca-3da1-84b0-edfa6d696b6a,SESCO,II.1.1,Entre Rios,AR-E,annual,2017,gas oil combustion consumption by freight transport,83.69004,TJ,CH4,3.9,kg/TJ,326.39115599999997,kg +85e9689b-faca-3da1-84b0-edfa6d696b6a,SESCO,II.1.1,Entre Rios,AR-E,annual,2017,gas oil combustion consumption by freight transport,83.69004,TJ,N2O,3.9,kg/TJ,326.39115599999997,kg +51ffa501-b90f-37a4-8689-25909cae9ea7,SESCO,II.1.1,Formosa,AR-P,annual,2017,gas oil combustion consumption by freight transport,7.11564,TJ,CO2,74100.0,kg/TJ,527268.924,kg +6ff79616-635c-3e7f-8649-fbe1266c62e8,SESCO,II.1.1,Formosa,AR-P,annual,2017,gas oil combustion consumption by freight transport,7.11564,TJ,CH4,3.9,kg/TJ,27.750996,kg +6ff79616-635c-3e7f-8649-fbe1266c62e8,SESCO,II.1.1,Formosa,AR-P,annual,2017,gas oil combustion consumption by freight transport,7.11564,TJ,N2O,3.9,kg/TJ,27.750996,kg +c4182bd5-c49c-30bc-b943-4b0d788ec553,SESCO,II.1.1,Jujuy,AR-Y,annual,2017,gas oil combustion consumption by freight transport,2.81736,TJ,CO2,74100.0,kg/TJ,208766.376,kg +c8e4aaaa-079c-3abd-8ca7-ce934eacf3ca,SESCO,II.1.1,Jujuy,AR-Y,annual,2017,gas oil combustion consumption by freight transport,2.81736,TJ,CH4,3.9,kg/TJ,10.987703999999999,kg +c8e4aaaa-079c-3abd-8ca7-ce934eacf3ca,SESCO,II.1.1,Jujuy,AR-Y,annual,2017,gas oil combustion consumption by freight transport,2.81736,TJ,N2O,3.9,kg/TJ,10.987703999999999,kg +11a5e135-6acb-32b6-8c31-f9b29ea1ed92,SESCO,II.1.1,La Pampa,AR-L,annual,2017,gas oil combustion consumption by freight transport,20.44392,TJ,CO2,74100.0,kg/TJ,1514894.4719999998,kg +f61f4142-44b4-3af7-88f9-1935ba62bc56,SESCO,II.1.1,La Pampa,AR-L,annual,2017,gas oil combustion consumption by freight transport,20.44392,TJ,CH4,3.9,kg/TJ,79.73128799999999,kg +f61f4142-44b4-3af7-88f9-1935ba62bc56,SESCO,II.1.1,La Pampa,AR-L,annual,2017,gas oil combustion consumption by freight transport,20.44392,TJ,N2O,3.9,kg/TJ,79.73128799999999,kg +d45cc40a-a13b-3769-b409-962e7e00148b,SESCO,II.1.1,La Rioja,AR-F,annual,2017,gas oil combustion consumption by freight transport,6.42936,TJ,CO2,74100.0,kg/TJ,476415.576,kg +18bc4fe7-e637-3f00-91f8-f52aebe6f4ea,SESCO,II.1.1,La Rioja,AR-F,annual,2017,gas oil combustion consumption by freight transport,6.42936,TJ,CH4,3.9,kg/TJ,25.074504,kg +18bc4fe7-e637-3f00-91f8-f52aebe6f4ea,SESCO,II.1.1,La Rioja,AR-F,annual,2017,gas oil combustion consumption by freight transport,6.42936,TJ,N2O,3.9,kg/TJ,25.074504,kg +c2f024c2-d101-31bb-bdc5-f0a0575a0b37,SESCO,II.1.1,Mendoza,AR-M,annual,2017,gas oil combustion consumption by freight transport,187.31832,TJ,CO2,74100.0,kg/TJ,13880287.512,kg +c14a560b-80c4-3796-97fe-4c2243bd161e,SESCO,II.1.1,Mendoza,AR-M,annual,2017,gas oil combustion consumption by freight transport,187.31832,TJ,CH4,3.9,kg/TJ,730.541448,kg +c14a560b-80c4-3796-97fe-4c2243bd161e,SESCO,II.1.1,Mendoza,AR-M,annual,2017,gas oil combustion consumption by freight transport,187.31832,TJ,N2O,3.9,kg/TJ,730.541448,kg +6186c99c-1c94-3d8c-b229-777dbde3a2d4,SESCO,II.1.1,Misiones,AR-N,annual,2017,gas oil combustion consumption by freight transport,56.05824,TJ,CO2,74100.0,kg/TJ,4153915.584,kg +3c196085-022d-3f42-afda-1470050c01fd,SESCO,II.1.1,Misiones,AR-N,annual,2017,gas oil combustion consumption by freight transport,56.05824,TJ,CH4,3.9,kg/TJ,218.62713599999998,kg +3c196085-022d-3f42-afda-1470050c01fd,SESCO,II.1.1,Misiones,AR-N,annual,2017,gas oil combustion consumption by freight transport,56.05824,TJ,N2O,3.9,kg/TJ,218.62713599999998,kg +cf74dc40-0d32-3920-a21d-ca9322abe430,SESCO,II.1.1,Neuquén,AR-Q,annual,2017,gas oil combustion consumption by freight transport,439.07472,TJ,CO2,74100.0,kg/TJ,32535436.752,kg +fafa4175-5ea3-3b26-80bc-442eb2f81a83,SESCO,II.1.1,Neuquén,AR-Q,annual,2017,gas oil combustion consumption by freight transport,439.07472,TJ,CH4,3.9,kg/TJ,1712.391408,kg +fafa4175-5ea3-3b26-80bc-442eb2f81a83,SESCO,II.1.1,Neuquén,AR-Q,annual,2017,gas oil combustion consumption by freight transport,439.07472,TJ,N2O,3.9,kg/TJ,1712.391408,kg +ae1ef08e-4fae-3ba0-9289-4b03741d40a3,SESCO,II.1.1,Rio Negro,AR-R,annual,2017,gas oil combustion consumption by freight transport,78.52488,TJ,CO2,74100.0,kg/TJ,5818693.608,kg +cb9d389d-fbbc-332f-a483-53810a99d085,SESCO,II.1.1,Rio Negro,AR-R,annual,2017,gas oil combustion consumption by freight transport,78.52488,TJ,CH4,3.9,kg/TJ,306.247032,kg +cb9d389d-fbbc-332f-a483-53810a99d085,SESCO,II.1.1,Rio Negro,AR-R,annual,2017,gas oil combustion consumption by freight transport,78.52488,TJ,N2O,3.9,kg/TJ,306.247032,kg +150b613b-ba92-3749-bd8c-439c31efd812,SESCO,II.1.1,Salta,AR-A,annual,2017,gas oil combustion consumption by freight transport,93.94812,TJ,CO2,74100.0,kg/TJ,6961555.692,kg +198a02e7-3152-317a-bd89-24a05379cb85,SESCO,II.1.1,Salta,AR-A,annual,2017,gas oil combustion consumption by freight transport,93.94812,TJ,CH4,3.9,kg/TJ,366.397668,kg +198a02e7-3152-317a-bd89-24a05379cb85,SESCO,II.1.1,Salta,AR-A,annual,2017,gas oil combustion consumption by freight transport,93.94812,TJ,N2O,3.9,kg/TJ,366.397668,kg +8e7f9997-3651-3a95-80a1-2d78ea1ad94b,SESCO,II.1.1,San Juan,AR-J,annual,2017,gas oil combustion consumption by freight transport,9.174479999999999,TJ,CO2,74100.0,kg/TJ,679828.9679999999,kg +206afeda-4597-3511-9edf-391173ba2a6b,SESCO,II.1.1,San Juan,AR-J,annual,2017,gas oil combustion consumption by freight transport,9.174479999999999,TJ,CH4,3.9,kg/TJ,35.780471999999996,kg +206afeda-4597-3511-9edf-391173ba2a6b,SESCO,II.1.1,San Juan,AR-J,annual,2017,gas oil combustion consumption by freight transport,9.174479999999999,TJ,N2O,3.9,kg/TJ,35.780471999999996,kg +b702673e-3169-324e-b35c-65056d01cd91,SESCO,II.1.1,San Luis,AR-D,annual,2017,gas oil combustion consumption by freight transport,34.89192,TJ,CO2,74100.0,kg/TJ,2585491.272,kg +782c8fe4-7d09-3b75-a840-ae44885adbb3,SESCO,II.1.1,San Luis,AR-D,annual,2017,gas oil combustion consumption by freight transport,34.89192,TJ,CH4,3.9,kg/TJ,136.078488,kg +782c8fe4-7d09-3b75-a840-ae44885adbb3,SESCO,II.1.1,San Luis,AR-D,annual,2017,gas oil combustion consumption by freight transport,34.89192,TJ,N2O,3.9,kg/TJ,136.078488,kg +b75160cd-9b81-38c2-819b-5f6f1f350534,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2017,gas oil combustion consumption by freight transport,58.83948,TJ,CO2,74100.0,kg/TJ,4360005.468,kg +34efa040-9999-3205-8913-4a791c0f8a4c,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2017,gas oil combustion consumption by freight transport,58.83948,TJ,CH4,3.9,kg/TJ,229.473972,kg +34efa040-9999-3205-8913-4a791c0f8a4c,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2017,gas oil combustion consumption by freight transport,58.83948,TJ,N2O,3.9,kg/TJ,229.473972,kg +20950d4f-c651-32f6-a65d-f73fdb2ae9a6,SESCO,II.1.1,Santa Fe,AR-S,annual,2017,gas oil combustion consumption by freight transport,392.51604,TJ,CO2,74100.0,kg/TJ,29085438.564,kg +29d3df79-a3b6-3a5e-8de4-50235b642395,SESCO,II.1.1,Santa Fe,AR-S,annual,2017,gas oil combustion consumption by freight transport,392.51604,TJ,CH4,3.9,kg/TJ,1530.8125559999999,kg +29d3df79-a3b6-3a5e-8de4-50235b642395,SESCO,II.1.1,Santa Fe,AR-S,annual,2017,gas oil combustion consumption by freight transport,392.51604,TJ,N2O,3.9,kg/TJ,1530.8125559999999,kg +d5449743-230d-32c3-85c0-4f9052fb39a1,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2017,gas oil combustion consumption by freight transport,5.7791999999999994,TJ,CO2,74100.0,kg/TJ,428238.72,kg +e42116a7-04de-32e7-bb8a-459851b88aa0,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2017,gas oil combustion consumption by freight transport,5.7791999999999994,TJ,CH4,3.9,kg/TJ,22.53888,kg +e42116a7-04de-32e7-bb8a-459851b88aa0,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2017,gas oil combustion consumption by freight transport,5.7791999999999994,TJ,N2O,3.9,kg/TJ,22.53888,kg +ce524cd0-1d2b-3499-b327-eb425d71ebeb,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2017,gas oil combustion consumption by freight transport,27.595679999999998,TJ,CO2,74100.0,kg/TJ,2044839.8879999998,kg +ba0a16b3-45e9-35a3-8809-dddb45890edb,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2017,gas oil combustion consumption by freight transport,27.595679999999998,TJ,CH4,3.9,kg/TJ,107.62315199999999,kg +ba0a16b3-45e9-35a3-8809-dddb45890edb,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2017,gas oil combustion consumption by freight transport,27.595679999999998,TJ,N2O,3.9,kg/TJ,107.62315199999999,kg +0555233f-63d0-3222-97f9-ae5da6c298ef,SESCO,II.1.1,Tucuman,AR-T,annual,2017,gas oil combustion consumption by freight transport,44.82492,TJ,CO2,74100.0,kg/TJ,3321526.5719999997,kg +c4f80f64-fc3e-3522-9efb-49afdbb6a91a,SESCO,II.1.1,Tucuman,AR-T,annual,2017,gas oil combustion consumption by freight transport,44.82492,TJ,CH4,3.9,kg/TJ,174.817188,kg +c4f80f64-fc3e-3522-9efb-49afdbb6a91a,SESCO,II.1.1,Tucuman,AR-T,annual,2017,gas oil combustion consumption by freight transport,44.82492,TJ,N2O,3.9,kg/TJ,174.817188,kg +f85b3785-c083-3bbf-800b-c7cae626f65c,SESCO,II.1.1,Buenos Aires,AR-B,annual,2017,gas oil combustion consumption by public passenger transport,10411.4094,TJ,CO2,74100.0,kg/TJ,771485436.5400001,kg +f0e34b9f-0555-3903-b8a0-3a806060da3d,SESCO,II.1.1,Buenos Aires,AR-B,annual,2017,gas oil combustion consumption by public passenger transport,10411.4094,TJ,CH4,3.9,kg/TJ,40604.496660000004,kg +f0e34b9f-0555-3903-b8a0-3a806060da3d,SESCO,II.1.1,Buenos Aires,AR-B,annual,2017,gas oil combustion consumption by public passenger transport,10411.4094,TJ,N2O,3.9,kg/TJ,40604.496660000004,kg +468ff9ce-09c7-3dad-9b9c-bbaa149a25ef,SESCO,II.1.1,Capital Federal,AR-C,annual,2017,gas oil combustion consumption by public passenger transport,2453.73996,TJ,CO2,74100.0,kg/TJ,181822131.03599998,kg +7f8bbef2-9ded-3fa4-8302-f586aa79375c,SESCO,II.1.1,Capital Federal,AR-C,annual,2017,gas oil combustion consumption by public passenger transport,2453.73996,TJ,CH4,3.9,kg/TJ,9569.585844,kg +7f8bbef2-9ded-3fa4-8302-f586aa79375c,SESCO,II.1.1,Capital Federal,AR-C,annual,2017,gas oil combustion consumption by public passenger transport,2453.73996,TJ,N2O,3.9,kg/TJ,9569.585844,kg +0aafe510-cece-3246-b7da-a8537b663068,SESCO,II.1.1,Catamarca,AR-K,annual,2017,gas oil combustion consumption by public passenger transport,202.12752,TJ,CO2,74100.0,kg/TJ,14977649.232,kg +f5c007be-d0fa-3524-8421-b3d8d2f4c9af,SESCO,II.1.1,Catamarca,AR-K,annual,2017,gas oil combustion consumption by public passenger transport,202.12752,TJ,CH4,3.9,kg/TJ,788.297328,kg +f5c007be-d0fa-3524-8421-b3d8d2f4c9af,SESCO,II.1.1,Catamarca,AR-K,annual,2017,gas oil combustion consumption by public passenger transport,202.12752,TJ,N2O,3.9,kg/TJ,788.297328,kg +c360641a-1026-3a79-a72b-78cfc64597e5,SESCO,II.1.1,Chaco,AR-H,annual,2017,gas oil combustion consumption by public passenger transport,573.36888,TJ,CO2,74100.0,kg/TJ,42486634.008,kg +68e26562-378b-3b9d-a685-5f9b5de990f5,SESCO,II.1.1,Chaco,AR-H,annual,2017,gas oil combustion consumption by public passenger transport,573.36888,TJ,CH4,3.9,kg/TJ,2236.1386319999997,kg +68e26562-378b-3b9d-a685-5f9b5de990f5,SESCO,II.1.1,Chaco,AR-H,annual,2017,gas oil combustion consumption by public passenger transport,573.36888,TJ,N2O,3.9,kg/TJ,2236.1386319999997,kg +7217d350-fade-355f-8e97-3b522212264b,SESCO,II.1.1,Chubut,AR-U,annual,2017,gas oil combustion consumption by public passenger transport,108.97404,TJ,CO2,74100.0,kg/TJ,8074976.364,kg +93bd5338-7543-35f7-8a24-a270e9d99ec4,SESCO,II.1.1,Chubut,AR-U,annual,2017,gas oil combustion consumption by public passenger transport,108.97404,TJ,CH4,3.9,kg/TJ,424.998756,kg +93bd5338-7543-35f7-8a24-a270e9d99ec4,SESCO,II.1.1,Chubut,AR-U,annual,2017,gas oil combustion consumption by public passenger transport,108.97404,TJ,N2O,3.9,kg/TJ,424.998756,kg +776517f2-a964-3bd7-a430-89f1c8747f09,SESCO,II.1.1,Corrientes,AR-W,annual,2017,gas oil combustion consumption by public passenger transport,526.23228,TJ,CO2,74100.0,kg/TJ,38993811.948,kg +47878543-c6e4-372a-9c08-69de4ff12dd5,SESCO,II.1.1,Corrientes,AR-W,annual,2017,gas oil combustion consumption by public passenger transport,526.23228,TJ,CH4,3.9,kg/TJ,2052.305892,kg +47878543-c6e4-372a-9c08-69de4ff12dd5,SESCO,II.1.1,Corrientes,AR-W,annual,2017,gas oil combustion consumption by public passenger transport,526.23228,TJ,N2O,3.9,kg/TJ,2052.305892,kg +0449fd37-7993-3313-95a8-5ab0a2daad78,SESCO,II.1.1,Córdoba,AR-X,annual,2017,gas oil combustion consumption by public passenger transport,1841.0364,TJ,CO2,74100.0,kg/TJ,136420797.24,kg +1f8181a3-e0f6-3964-924f-183d77dbc9a4,SESCO,II.1.1,Córdoba,AR-X,annual,2017,gas oil combustion consumption by public passenger transport,1841.0364,TJ,CH4,3.9,kg/TJ,7180.04196,kg +1f8181a3-e0f6-3964-924f-183d77dbc9a4,SESCO,II.1.1,Córdoba,AR-X,annual,2017,gas oil combustion consumption by public passenger transport,1841.0364,TJ,N2O,3.9,kg/TJ,7180.04196,kg +2b3ac049-55c2-3cb9-b781-e559aeb4d8ed,SESCO,II.1.1,Entre Rios,AR-E,annual,2017,gas oil combustion consumption by public passenger transport,497.04732,TJ,CO2,74100.0,kg/TJ,36831206.412,kg +05f03a37-a9e5-3811-8877-244167d32686,SESCO,II.1.1,Entre Rios,AR-E,annual,2017,gas oil combustion consumption by public passenger transport,497.04732,TJ,CH4,3.9,kg/TJ,1938.484548,kg +05f03a37-a9e5-3811-8877-244167d32686,SESCO,II.1.1,Entre Rios,AR-E,annual,2017,gas oil combustion consumption by public passenger transport,497.04732,TJ,N2O,3.9,kg/TJ,1938.484548,kg +4cea0034-1ded-3137-bef2-75fdca1ec94f,SESCO,II.1.1,Formosa,AR-P,annual,2017,gas oil combustion consumption by public passenger transport,78.63324,TJ,CO2,74100.0,kg/TJ,5826723.084,kg +83bddc68-e38c-3fb3-b7db-4ef01cbea7e1,SESCO,II.1.1,Formosa,AR-P,annual,2017,gas oil combustion consumption by public passenger transport,78.63324,TJ,CH4,3.9,kg/TJ,306.66963599999997,kg +83bddc68-e38c-3fb3-b7db-4ef01cbea7e1,SESCO,II.1.1,Formosa,AR-P,annual,2017,gas oil combustion consumption by public passenger transport,78.63324,TJ,N2O,3.9,kg/TJ,306.66963599999997,kg +8744b7c5-8758-33a1-b350-e73aa26a59b3,SESCO,II.1.1,Jujuy,AR-Y,annual,2017,gas oil combustion consumption by public passenger transport,663.84948,TJ,CO2,74100.0,kg/TJ,49191246.467999995,kg +310aed91-eb36-3836-af05-596927ddb02f,SESCO,II.1.1,Jujuy,AR-Y,annual,2017,gas oil combustion consumption by public passenger transport,663.84948,TJ,CH4,3.9,kg/TJ,2589.012972,kg +310aed91-eb36-3836-af05-596927ddb02f,SESCO,II.1.1,Jujuy,AR-Y,annual,2017,gas oil combustion consumption by public passenger transport,663.84948,TJ,N2O,3.9,kg/TJ,2589.012972,kg +5c170c94-e1e1-3d00-a7da-ad2673ac759d,SESCO,II.1.1,La Pampa,AR-L,annual,2017,gas oil combustion consumption by public passenger transport,53.493719999999996,TJ,CO2,74100.0,kg/TJ,3963884.652,kg +97de3cce-6f63-3761-a880-a2f70c38980f,SESCO,II.1.1,La Pampa,AR-L,annual,2017,gas oil combustion consumption by public passenger transport,53.493719999999996,TJ,CH4,3.9,kg/TJ,208.62550799999997,kg +97de3cce-6f63-3761-a880-a2f70c38980f,SESCO,II.1.1,La Pampa,AR-L,annual,2017,gas oil combustion consumption by public passenger transport,53.493719999999996,TJ,N2O,3.9,kg/TJ,208.62550799999997,kg +95211428-90c7-320a-85e5-29ebefb6030f,SESCO,II.1.1,La Rioja,AR-F,annual,2017,gas oil combustion consumption by public passenger transport,129.16512,TJ,CO2,74100.0,kg/TJ,9571135.392,kg +caa53e12-daa7-3eb8-8db9-3b38c8eaf87e,SESCO,II.1.1,La Rioja,AR-F,annual,2017,gas oil combustion consumption by public passenger transport,129.16512,TJ,CH4,3.9,kg/TJ,503.743968,kg +caa53e12-daa7-3eb8-8db9-3b38c8eaf87e,SESCO,II.1.1,La Rioja,AR-F,annual,2017,gas oil combustion consumption by public passenger transport,129.16512,TJ,N2O,3.9,kg/TJ,503.743968,kg +ba87fc96-07ad-32fc-811c-faca9010b744,SESCO,II.1.1,Mendoza,AR-M,annual,2017,gas oil combustion consumption by public passenger transport,1776.45384,TJ,CO2,74100.0,kg/TJ,131635229.544,kg +cb68f288-5a3d-3c2c-85a5-023168f15618,SESCO,II.1.1,Mendoza,AR-M,annual,2017,gas oil combustion consumption by public passenger transport,1776.45384,TJ,CH4,3.9,kg/TJ,6928.169975999999,kg +cb68f288-5a3d-3c2c-85a5-023168f15618,SESCO,II.1.1,Mendoza,AR-M,annual,2017,gas oil combustion consumption by public passenger transport,1776.45384,TJ,N2O,3.9,kg/TJ,6928.169975999999,kg +be04f20e-0a53-3b1f-81c0-43ea3501cc84,SESCO,II.1.1,Misiones,AR-N,annual,2017,gas oil combustion consumption by public passenger transport,1057.91868,TJ,CO2,74100.0,kg/TJ,78391774.188,kg +ef06943f-79d6-305b-bd5c-097b3c767664,SESCO,II.1.1,Misiones,AR-N,annual,2017,gas oil combustion consumption by public passenger transport,1057.91868,TJ,CH4,3.9,kg/TJ,4125.882852,kg +ef06943f-79d6-305b-bd5c-097b3c767664,SESCO,II.1.1,Misiones,AR-N,annual,2017,gas oil combustion consumption by public passenger transport,1057.91868,TJ,N2O,3.9,kg/TJ,4125.882852,kg +41f2c437-9cc6-3d2e-9662-69366e3acfb0,SESCO,II.1.1,Neuquén,AR-Q,annual,2017,gas oil combustion consumption by public passenger transport,275.2344,TJ,CO2,74100.0,kg/TJ,20394869.04,kg +443b8c03-7ed9-33a5-950a-77594148c7eb,SESCO,II.1.1,Neuquén,AR-Q,annual,2017,gas oil combustion consumption by public passenger transport,275.2344,TJ,CH4,3.9,kg/TJ,1073.41416,kg +443b8c03-7ed9-33a5-950a-77594148c7eb,SESCO,II.1.1,Neuquén,AR-Q,annual,2017,gas oil combustion consumption by public passenger transport,275.2344,TJ,N2O,3.9,kg/TJ,1073.41416,kg +3cf32780-5fe0-32c3-b9c4-ccaf0c3098f9,SESCO,II.1.1,Rio Negro,AR-R,annual,2017,gas oil combustion consumption by public passenger transport,284.87844,TJ,CO2,74100.0,kg/TJ,21109492.404,kg +c0666909-4cc9-3817-921c-b1486de8a643,SESCO,II.1.1,Rio Negro,AR-R,annual,2017,gas oil combustion consumption by public passenger transport,284.87844,TJ,CH4,3.9,kg/TJ,1111.025916,kg +c0666909-4cc9-3817-921c-b1486de8a643,SESCO,II.1.1,Rio Negro,AR-R,annual,2017,gas oil combustion consumption by public passenger transport,284.87844,TJ,N2O,3.9,kg/TJ,1111.025916,kg +d83ae1cf-3a21-34f4-8ad6-62f670dc7b83,SESCO,II.1.1,Salta,AR-A,annual,2017,gas oil combustion consumption by public passenger transport,758.55612,TJ,CO2,74100.0,kg/TJ,56209008.492,kg +c2a4bacb-00df-3808-a571-df6dcb382720,SESCO,II.1.1,Salta,AR-A,annual,2017,gas oil combustion consumption by public passenger transport,758.55612,TJ,CH4,3.9,kg/TJ,2958.368868,kg +c2a4bacb-00df-3808-a571-df6dcb382720,SESCO,II.1.1,Salta,AR-A,annual,2017,gas oil combustion consumption by public passenger transport,758.55612,TJ,N2O,3.9,kg/TJ,2958.368868,kg +dbf2a340-ce04-307a-ba93-7c94207a1952,SESCO,II.1.1,San Juan,AR-J,annual,2017,gas oil combustion consumption by public passenger transport,462.73332,TJ,CO2,74100.0,kg/TJ,34288539.012,kg +6f621264-5b10-34db-a5ba-bea7b9348279,SESCO,II.1.1,San Juan,AR-J,annual,2017,gas oil combustion consumption by public passenger transport,462.73332,TJ,CH4,3.9,kg/TJ,1804.659948,kg +6f621264-5b10-34db-a5ba-bea7b9348279,SESCO,II.1.1,San Juan,AR-J,annual,2017,gas oil combustion consumption by public passenger transport,462.73332,TJ,N2O,3.9,kg/TJ,1804.659948,kg +ffad86ea-0dde-3805-b677-378a304e5b89,SESCO,II.1.1,San Luis,AR-D,annual,2017,gas oil combustion consumption by public passenger transport,150.4398,TJ,CO2,74100.0,kg/TJ,11147589.18,kg +c11f557d-8179-343b-ab13-b2b4f902c54b,SESCO,II.1.1,San Luis,AR-D,annual,2017,gas oil combustion consumption by public passenger transport,150.4398,TJ,CH4,3.9,kg/TJ,586.7152199999999,kg +c11f557d-8179-343b-ab13-b2b4f902c54b,SESCO,II.1.1,San Luis,AR-D,annual,2017,gas oil combustion consumption by public passenger transport,150.4398,TJ,N2O,3.9,kg/TJ,586.7152199999999,kg +165d64b5-8826-310a-8b5c-91a481d740cc,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2017,gas oil combustion consumption by public passenger transport,32.21904,TJ,CO2,74100.0,kg/TJ,2387430.864,kg +21e5b639-b9c0-370d-a9cc-40e453083fbf,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2017,gas oil combustion consumption by public passenger transport,32.21904,TJ,CH4,3.9,kg/TJ,125.65425599999999,kg +21e5b639-b9c0-370d-a9cc-40e453083fbf,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2017,gas oil combustion consumption by public passenger transport,32.21904,TJ,N2O,3.9,kg/TJ,125.65425599999999,kg +af3ab77e-39c5-3fee-9bd1-a27decefd081,SESCO,II.1.1,Santa Fe,AR-S,annual,2017,gas oil combustion consumption by public passenger transport,1722.5628,TJ,CO2,74100.0,kg/TJ,127641903.47999999,kg +6c876be5-7829-36ac-b48b-a59c93126d12,SESCO,II.1.1,Santa Fe,AR-S,annual,2017,gas oil combustion consumption by public passenger transport,1722.5628,TJ,CH4,3.9,kg/TJ,6717.994919999999,kg +6c876be5-7829-36ac-b48b-a59c93126d12,SESCO,II.1.1,Santa Fe,AR-S,annual,2017,gas oil combustion consumption by public passenger transport,1722.5628,TJ,N2O,3.9,kg/TJ,6717.994919999999,kg +5f2d4423-0c82-364d-85c0-9833e049455d,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2017,gas oil combustion consumption by public passenger transport,254.17643999999999,TJ,CO2,74100.0,kg/TJ,18834474.204,kg +3877da5d-7e61-39e0-bdae-8234b13f8232,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2017,gas oil combustion consumption by public passenger transport,254.17643999999999,TJ,CH4,3.9,kg/TJ,991.288116,kg +3877da5d-7e61-39e0-bdae-8234b13f8232,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2017,gas oil combustion consumption by public passenger transport,254.17643999999999,TJ,N2O,3.9,kg/TJ,991.288116,kg +73822739-8759-322a-b0fd-4687b62871db,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2017,gas oil combustion consumption by public passenger transport,13.68948,TJ,CO2,74100.0,kg/TJ,1014390.468,kg +67c0b515-8b05-3fbd-95ee-4627761a1300,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2017,gas oil combustion consumption by public passenger transport,13.68948,TJ,CH4,3.9,kg/TJ,53.388971999999995,kg +67c0b515-8b05-3fbd-95ee-4627761a1300,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2017,gas oil combustion consumption by public passenger transport,13.68948,TJ,N2O,3.9,kg/TJ,53.388971999999995,kg +35166dbd-c1e9-33c6-aff0-7fc904f4cd60,SESCO,II.1.1,Tucuman,AR-T,annual,2017,gas oil combustion consumption by public passenger transport,1243.53936,TJ,CO2,74100.0,kg/TJ,92146266.576,kg +82f60e29-e9dd-3601-81ac-71910fe2d3a1,SESCO,II.1.1,Tucuman,AR-T,annual,2017,gas oil combustion consumption by public passenger transport,1243.53936,TJ,CH4,3.9,kg/TJ,4849.8035039999995,kg +82f60e29-e9dd-3601-81ac-71910fe2d3a1,SESCO,II.1.1,Tucuman,AR-T,annual,2017,gas oil combustion consumption by public passenger transport,1243.53936,TJ,N2O,3.9,kg/TJ,4849.8035039999995,kg +003fbe84-a25a-35f1-a32a-02dccb63aefc,SESCO,II.1.1,Buenos Aires,AR-B,annual,2017,gas oil combustion consumption by public passenger transport,1060.0497599999999,TJ,CO2,74100.0,kg/TJ,78549687.21599999,kg +f62f0fbf-6017-3542-bb8f-24a4a1dfdcc7,SESCO,II.1.1,Buenos Aires,AR-B,annual,2017,gas oil combustion consumption by public passenger transport,1060.0497599999999,TJ,CH4,3.9,kg/TJ,4134.194063999999,kg +f62f0fbf-6017-3542-bb8f-24a4a1dfdcc7,SESCO,II.1.1,Buenos Aires,AR-B,annual,2017,gas oil combustion consumption by public passenger transport,1060.0497599999999,TJ,N2O,3.9,kg/TJ,4134.194063999999,kg +e77f4bb0-a543-36a4-b061-b850e782d50d,SESCO,II.1.1,Capital Federal,AR-C,annual,2017,gas oil combustion consumption by public passenger transport,105.14532,TJ,CO2,74100.0,kg/TJ,7791268.212,kg +f0af072d-71c6-3f30-bdd0-f0b6d755d3ab,SESCO,II.1.1,Capital Federal,AR-C,annual,2017,gas oil combustion consumption by public passenger transport,105.14532,TJ,CH4,3.9,kg/TJ,410.06674799999996,kg +f0af072d-71c6-3f30-bdd0-f0b6d755d3ab,SESCO,II.1.1,Capital Federal,AR-C,annual,2017,gas oil combustion consumption by public passenger transport,105.14532,TJ,N2O,3.9,kg/TJ,410.06674799999996,kg +2c3a0f03-f1e2-3481-9322-e80b88d34760,SESCO,II.1.1,Catamarca,AR-K,annual,2017,gas oil combustion consumption by public passenger transport,19.90212,TJ,CO2,74100.0,kg/TJ,1474747.092,kg +943f5fc4-733d-33e6-8b8f-af2dabf081f1,SESCO,II.1.1,Catamarca,AR-K,annual,2017,gas oil combustion consumption by public passenger transport,19.90212,TJ,CH4,3.9,kg/TJ,77.618268,kg +943f5fc4-733d-33e6-8b8f-af2dabf081f1,SESCO,II.1.1,Catamarca,AR-K,annual,2017,gas oil combustion consumption by public passenger transport,19.90212,TJ,N2O,3.9,kg/TJ,77.618268,kg +44f2d1ff-c296-3179-a9ce-1b9d2cbe2320,SESCO,II.1.1,Chaco,AR-H,annual,2017,gas oil combustion consumption by public passenger transport,12.71424,TJ,CO2,74100.0,kg/TJ,942125.184,kg +9452bdb4-6971-3f16-be31-b14000fd4feb,SESCO,II.1.1,Chaco,AR-H,annual,2017,gas oil combustion consumption by public passenger transport,12.71424,TJ,CH4,3.9,kg/TJ,49.585536,kg +9452bdb4-6971-3f16-be31-b14000fd4feb,SESCO,II.1.1,Chaco,AR-H,annual,2017,gas oil combustion consumption by public passenger transport,12.71424,TJ,N2O,3.9,kg/TJ,49.585536,kg +ab2dce6c-35dd-33eb-b803-5f2833e0ed5c,SESCO,II.1.1,Chubut,AR-U,annual,2017,gas oil combustion consumption by public passenger transport,44.57208,TJ,CO2,74100.0,kg/TJ,3302791.128,kg +c9056c80-fcd5-396d-9064-d2ca9af0f0cc,SESCO,II.1.1,Chubut,AR-U,annual,2017,gas oil combustion consumption by public passenger transport,44.57208,TJ,CH4,3.9,kg/TJ,173.831112,kg +c9056c80-fcd5-396d-9064-d2ca9af0f0cc,SESCO,II.1.1,Chubut,AR-U,annual,2017,gas oil combustion consumption by public passenger transport,44.57208,TJ,N2O,3.9,kg/TJ,173.831112,kg +957bd06a-501a-3200-8ea0-c031cf2f5e13,SESCO,II.1.1,Corrientes,AR-W,annual,2017,gas oil combustion consumption by public passenger transport,30.340799999999998,TJ,CO2,74100.0,kg/TJ,2248253.28,kg +d9cac611-626e-3026-bb12-429c517e8358,SESCO,II.1.1,Corrientes,AR-W,annual,2017,gas oil combustion consumption by public passenger transport,30.340799999999998,TJ,CH4,3.9,kg/TJ,118.32911999999999,kg +d9cac611-626e-3026-bb12-429c517e8358,SESCO,II.1.1,Corrientes,AR-W,annual,2017,gas oil combustion consumption by public passenger transport,30.340799999999998,TJ,N2O,3.9,kg/TJ,118.32911999999999,kg +100b038b-7a57-3717-bdb1-3177178c48be,SESCO,II.1.1,Córdoba,AR-X,annual,2017,gas oil combustion consumption by public passenger transport,132.23532,TJ,CO2,74100.0,kg/TJ,9798637.212,kg +05676a1d-060a-3a84-949f-44f14ca8f4a5,SESCO,II.1.1,Córdoba,AR-X,annual,2017,gas oil combustion consumption by public passenger transport,132.23532,TJ,CH4,3.9,kg/TJ,515.717748,kg +05676a1d-060a-3a84-949f-44f14ca8f4a5,SESCO,II.1.1,Córdoba,AR-X,annual,2017,gas oil combustion consumption by public passenger transport,132.23532,TJ,N2O,3.9,kg/TJ,515.717748,kg +aee36da4-942f-3cd6-96f3-2007c6714a4a,SESCO,II.1.1,Entre Rios,AR-E,annual,2017,gas oil combustion consumption by public passenger transport,2.85348,TJ,CO2,74100.0,kg/TJ,211442.868,kg +0ca0c03e-5ef7-3fc2-aeac-ff5ee9a3a5fe,SESCO,II.1.1,Entre Rios,AR-E,annual,2017,gas oil combustion consumption by public passenger transport,2.85348,TJ,CH4,3.9,kg/TJ,11.128571999999998,kg +0ca0c03e-5ef7-3fc2-aeac-ff5ee9a3a5fe,SESCO,II.1.1,Entre Rios,AR-E,annual,2017,gas oil combustion consumption by public passenger transport,2.85348,TJ,N2O,3.9,kg/TJ,11.128571999999998,kg +a89a7425-88c5-3df4-8a9c-f16f702ed629,SESCO,II.1.1,Jujuy,AR-Y,annual,2017,gas oil combustion consumption by public passenger transport,1.9866,TJ,CO2,74100.0,kg/TJ,147207.06,kg +ba418045-45a4-3859-acf1-847bb0f0bfbe,SESCO,II.1.1,Jujuy,AR-Y,annual,2017,gas oil combustion consumption by public passenger transport,1.9866,TJ,CH4,3.9,kg/TJ,7.747739999999999,kg +ba418045-45a4-3859-acf1-847bb0f0bfbe,SESCO,II.1.1,Jujuy,AR-Y,annual,2017,gas oil combustion consumption by public passenger transport,1.9866,TJ,N2O,3.9,kg/TJ,7.747739999999999,kg +c2d92942-312a-3b8e-8597-934099487cf9,SESCO,II.1.1,La Pampa,AR-L,annual,2017,gas oil combustion consumption by public passenger transport,0.7223999999999999,TJ,CO2,74100.0,kg/TJ,53529.84,kg +5121f64c-eed1-3c43-9359-2561bc77629a,SESCO,II.1.1,La Pampa,AR-L,annual,2017,gas oil combustion consumption by public passenger transport,0.7223999999999999,TJ,CH4,3.9,kg/TJ,2.81736,kg +5121f64c-eed1-3c43-9359-2561bc77629a,SESCO,II.1.1,La Pampa,AR-L,annual,2017,gas oil combustion consumption by public passenger transport,0.7223999999999999,TJ,N2O,3.9,kg/TJ,2.81736,kg +27fc11dc-cb1f-3dce-b146-88f21c1fce84,SESCO,II.1.1,La Rioja,AR-F,annual,2017,gas oil combustion consumption by public passenger transport,2.81736,TJ,CO2,74100.0,kg/TJ,208766.376,kg +0b8db15d-90a0-30cd-bb6d-ca35f2539ecf,SESCO,II.1.1,La Rioja,AR-F,annual,2017,gas oil combustion consumption by public passenger transport,2.81736,TJ,CH4,3.9,kg/TJ,10.987703999999999,kg +0b8db15d-90a0-30cd-bb6d-ca35f2539ecf,SESCO,II.1.1,La Rioja,AR-F,annual,2017,gas oil combustion consumption by public passenger transport,2.81736,TJ,N2O,3.9,kg/TJ,10.987703999999999,kg +7db95e28-b59b-3508-9668-1b04f72da7ea,SESCO,II.1.1,Mendoza,AR-M,annual,2017,gas oil combustion consumption by public passenger transport,133.31892,TJ,CO2,74100.0,kg/TJ,9878931.972,kg +02d01cda-49dd-3c58-b6b9-c3a017cc7c5e,SESCO,II.1.1,Mendoza,AR-M,annual,2017,gas oil combustion consumption by public passenger transport,133.31892,TJ,CH4,3.9,kg/TJ,519.9437879999999,kg +02d01cda-49dd-3c58-b6b9-c3a017cc7c5e,SESCO,II.1.1,Mendoza,AR-M,annual,2017,gas oil combustion consumption by public passenger transport,133.31892,TJ,N2O,3.9,kg/TJ,519.9437879999999,kg +bd659b55-7234-3a1d-b542-16e18f8efba0,SESCO,II.1.1,Misiones,AR-N,annual,2017,gas oil combustion consumption by public passenger transport,76.0326,TJ,CO2,74100.0,kg/TJ,5634015.66,kg +55a040f6-a99d-3cab-872c-e072d05a0e69,SESCO,II.1.1,Misiones,AR-N,annual,2017,gas oil combustion consumption by public passenger transport,76.0326,TJ,CH4,3.9,kg/TJ,296.52714,kg +55a040f6-a99d-3cab-872c-e072d05a0e69,SESCO,II.1.1,Misiones,AR-N,annual,2017,gas oil combustion consumption by public passenger transport,76.0326,TJ,N2O,3.9,kg/TJ,296.52714,kg +e08a06ff-8304-311c-b7ad-d0a28a1363da,SESCO,II.1.1,Neuquén,AR-Q,annual,2017,gas oil combustion consumption by public passenger transport,19.57704,TJ,CO2,74100.0,kg/TJ,1450658.664,kg +1f93c534-c6bf-3621-9cff-51efdfc145f1,SESCO,II.1.1,Neuquén,AR-Q,annual,2017,gas oil combustion consumption by public passenger transport,19.57704,TJ,CH4,3.9,kg/TJ,76.350456,kg +1f93c534-c6bf-3621-9cff-51efdfc145f1,SESCO,II.1.1,Neuquén,AR-Q,annual,2017,gas oil combustion consumption by public passenger transport,19.57704,TJ,N2O,3.9,kg/TJ,76.350456,kg +392cb7f8-6795-30b3-a84c-1732d8afb2ff,SESCO,II.1.1,Rio Negro,AR-R,annual,2017,gas oil combustion consumption by public passenger transport,105.25368,TJ,CO2,74100.0,kg/TJ,7799297.688,kg +c82a458c-6825-3d3b-b136-7b10f386d69c,SESCO,II.1.1,Rio Negro,AR-R,annual,2017,gas oil combustion consumption by public passenger transport,105.25368,TJ,CH4,3.9,kg/TJ,410.489352,kg +c82a458c-6825-3d3b-b136-7b10f386d69c,SESCO,II.1.1,Rio Negro,AR-R,annual,2017,gas oil combustion consumption by public passenger transport,105.25368,TJ,N2O,3.9,kg/TJ,410.489352,kg +f1481d66-7992-3772-a1ee-889b3552573c,SESCO,II.1.1,Salta,AR-A,annual,2017,gas oil combustion consumption by public passenger transport,102.72528,TJ,CO2,74100.0,kg/TJ,7611943.248,kg +cdd11d9e-1407-39ec-b282-fafc0fa38b89,SESCO,II.1.1,Salta,AR-A,annual,2017,gas oil combustion consumption by public passenger transport,102.72528,TJ,CH4,3.9,kg/TJ,400.62859199999997,kg +cdd11d9e-1407-39ec-b282-fafc0fa38b89,SESCO,II.1.1,Salta,AR-A,annual,2017,gas oil combustion consumption by public passenger transport,102.72528,TJ,N2O,3.9,kg/TJ,400.62859199999997,kg +d3b4b4cd-6a04-3b99-8910-e4821723c7cf,SESCO,II.1.1,San Juan,AR-J,annual,2017,gas oil combustion consumption by public passenger transport,99.11328,TJ,CO2,74100.0,kg/TJ,7344294.048,kg +ab780ede-f32a-3789-a6ad-225fe2bb9829,SESCO,II.1.1,San Juan,AR-J,annual,2017,gas oil combustion consumption by public passenger transport,99.11328,TJ,CH4,3.9,kg/TJ,386.541792,kg +ab780ede-f32a-3789-a6ad-225fe2bb9829,SESCO,II.1.1,San Juan,AR-J,annual,2017,gas oil combustion consumption by public passenger transport,99.11328,TJ,N2O,3.9,kg/TJ,386.541792,kg +30445ad9-ef23-3736-8340-bca30bf9220e,SESCO,II.1.1,San Luis,AR-D,annual,2017,gas oil combustion consumption by public passenger transport,14.989799999999999,TJ,CO2,74100.0,kg/TJ,1110744.18,kg +ec59e81d-511a-3e20-9572-281d693a064f,SESCO,II.1.1,San Luis,AR-D,annual,2017,gas oil combustion consumption by public passenger transport,14.989799999999999,TJ,CH4,3.9,kg/TJ,58.46021999999999,kg +ec59e81d-511a-3e20-9572-281d693a064f,SESCO,II.1.1,San Luis,AR-D,annual,2017,gas oil combustion consumption by public passenger transport,14.989799999999999,TJ,N2O,3.9,kg/TJ,58.46021999999999,kg +c782d8ab-db76-3c5e-af65-b3cc7aca75c6,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2017,gas oil combustion consumption by public passenger transport,2.81736,TJ,CO2,74100.0,kg/TJ,208766.376,kg +76f29514-715e-3fa7-b6c2-a0f19bb671e8,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2017,gas oil combustion consumption by public passenger transport,2.81736,TJ,CH4,3.9,kg/TJ,10.987703999999999,kg +76f29514-715e-3fa7-b6c2-a0f19bb671e8,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2017,gas oil combustion consumption by public passenger transport,2.81736,TJ,N2O,3.9,kg/TJ,10.987703999999999,kg +ae46c33e-a5a3-3778-8442-e736e95ce63a,SESCO,II.1.1,Santa Fe,AR-S,annual,2017,gas oil combustion consumption by public passenger transport,134.87208,TJ,CO2,74100.0,kg/TJ,9994021.128,kg +ad08118a-eaef-3568-9c64-11c1fd43f1db,SESCO,II.1.1,Santa Fe,AR-S,annual,2017,gas oil combustion consumption by public passenger transport,134.87208,TJ,CH4,3.9,kg/TJ,526.001112,kg +ad08118a-eaef-3568-9c64-11c1fd43f1db,SESCO,II.1.1,Santa Fe,AR-S,annual,2017,gas oil combustion consumption by public passenger transport,134.87208,TJ,N2O,3.9,kg/TJ,526.001112,kg +b0ec0bab-d3a5-3805-91a4-d9687a2ecf37,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2017,gas oil combustion consumption by public passenger transport,11.0166,TJ,CO2,74100.0,kg/TJ,816330.06,kg +c4ff7872-8ab7-3759-967f-d1fe8900635b,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2017,gas oil combustion consumption by public passenger transport,11.0166,TJ,CH4,3.9,kg/TJ,42.96474,kg +c4ff7872-8ab7-3759-967f-d1fe8900635b,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2017,gas oil combustion consumption by public passenger transport,11.0166,TJ,N2O,3.9,kg/TJ,42.96474,kg +f55df6ae-947c-382a-a15b-4f2bd5556f0c,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2017,gas oil combustion consumption by public passenger transport,2.05884,TJ,CO2,74100.0,kg/TJ,152560.044,kg +e7cc6ab8-64de-3129-94b9-db64b3d7d685,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2017,gas oil combustion consumption by public passenger transport,2.05884,TJ,CH4,3.9,kg/TJ,8.029475999999999,kg +e7cc6ab8-64de-3129-94b9-db64b3d7d685,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2017,gas oil combustion consumption by public passenger transport,2.05884,TJ,N2O,3.9,kg/TJ,8.029475999999999,kg +7abfc512-b5b9-3ed8-9248-89cf17b4fd3c,SESCO,II.1.1,Tucuman,AR-T,annual,2017,gas oil combustion consumption by public passenger transport,85.53216,TJ,CO2,74100.0,kg/TJ,6337933.056000001,kg +4be0aa8c-b80b-3e69-87e3-dbe6f0f5dd7f,SESCO,II.1.1,Tucuman,AR-T,annual,2017,gas oil combustion consumption by public passenger transport,85.53216,TJ,CH4,3.9,kg/TJ,333.575424,kg +4be0aa8c-b80b-3e69-87e3-dbe6f0f5dd7f,SESCO,II.1.1,Tucuman,AR-T,annual,2017,gas oil combustion consumption by public passenger transport,85.53216,TJ,N2O,3.9,kg/TJ,333.575424,kg +1ab39bee-9ba6-3fbe-b495-ec404df31e32,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,gas oil combustion consumption by to the public,2974.3014,TJ,CO2,74100.0,kg/TJ,220395733.73999998,kg +240ad650-8c29-3c22-a085-6d54386b1de1,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,gas oil combustion consumption by to the public,2974.3014,TJ,CH4,3.9,kg/TJ,11599.775459999999,kg +240ad650-8c29-3c22-a085-6d54386b1de1,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,gas oil combustion consumption by to the public,2974.3014,TJ,N2O,3.9,kg/TJ,11599.775459999999,kg +d3bffade-a4ff-3fcc-81dd-bb8e4ffc8189,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,gas oil combustion consumption by to the public,131.838,TJ,CO2,74100.0,kg/TJ,9769195.799999999,kg +481daf89-535f-3633-a4ae-b65486864912,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,gas oil combustion consumption by to the public,131.838,TJ,CH4,3.9,kg/TJ,514.1682,kg +481daf89-535f-3633-a4ae-b65486864912,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,gas oil combustion consumption by to the public,131.838,TJ,N2O,3.9,kg/TJ,514.1682,kg +90d0c1b0-b5d9-3886-bfe4-99206748c1f2,SESCO,II.1.1,Chaco,AR-H,annual,2018,gas oil combustion consumption by to the public,89.43312,TJ,CO2,74100.0,kg/TJ,6626994.192,kg +07ba4c06-09db-308f-85ee-1083fe17e6b4,SESCO,II.1.1,Chaco,AR-H,annual,2018,gas oil combustion consumption by to the public,89.43312,TJ,CH4,3.9,kg/TJ,348.789168,kg +07ba4c06-09db-308f-85ee-1083fe17e6b4,SESCO,II.1.1,Chaco,AR-H,annual,2018,gas oil combustion consumption by to the public,89.43312,TJ,N2O,3.9,kg/TJ,348.789168,kg +1ed210d4-5430-347a-a5fa-09bcfea76459,SESCO,II.1.1,Corrientes,AR-W,annual,2018,gas oil combustion consumption by to the public,1.04748,TJ,CO2,74100.0,kg/TJ,77618.268,kg +74412031-6c1f-3f73-bfc2-f1a278e51acd,SESCO,II.1.1,Corrientes,AR-W,annual,2018,gas oil combustion consumption by to the public,1.04748,TJ,CH4,3.9,kg/TJ,4.085172,kg +74412031-6c1f-3f73-bfc2-f1a278e51acd,SESCO,II.1.1,Corrientes,AR-W,annual,2018,gas oil combustion consumption by to the public,1.04748,TJ,N2O,3.9,kg/TJ,4.085172,kg +09be0000-c286-3172-8049-42341c4e2736,SESCO,II.1.1,Córdoba,AR-X,annual,2018,gas oil combustion consumption by to the public,1085.73108,TJ,CO2,74100.0,kg/TJ,80452673.028,kg +47bc644b-d9f6-3d14-ab6e-2834d39377f8,SESCO,II.1.1,Córdoba,AR-X,annual,2018,gas oil combustion consumption by to the public,1085.73108,TJ,CH4,3.9,kg/TJ,4234.351212,kg +47bc644b-d9f6-3d14-ab6e-2834d39377f8,SESCO,II.1.1,Córdoba,AR-X,annual,2018,gas oil combustion consumption by to the public,1085.73108,TJ,N2O,3.9,kg/TJ,4234.351212,kg +915c2d7e-7e4e-31d8-8b99-fc30c0fde2a1,SESCO,II.1.1,Entre Rios,AR-E,annual,2018,gas oil combustion consumption by to the public,5.20128,TJ,CO2,74100.0,kg/TJ,385414.848,kg +e9bf8a8a-36ca-36e3-ad53-d0f327d051e7,SESCO,II.1.1,Entre Rios,AR-E,annual,2018,gas oil combustion consumption by to the public,5.20128,TJ,CH4,3.9,kg/TJ,20.284992,kg +e9bf8a8a-36ca-36e3-ad53-d0f327d051e7,SESCO,II.1.1,Entre Rios,AR-E,annual,2018,gas oil combustion consumption by to the public,5.20128,TJ,N2O,3.9,kg/TJ,20.284992,kg +b7f2517e-6b9a-3ee5-8ecd-dc4c8c7f69d9,SESCO,II.1.1,Mendoza,AR-M,annual,2018,gas oil combustion consumption by to the public,402.30456,TJ,CO2,74100.0,kg/TJ,29810767.895999998,kg +3d4e2fca-54cb-304c-8789-6f836ca02415,SESCO,II.1.1,Mendoza,AR-M,annual,2018,gas oil combustion consumption by to the public,402.30456,TJ,CH4,3.9,kg/TJ,1568.987784,kg +3d4e2fca-54cb-304c-8789-6f836ca02415,SESCO,II.1.1,Mendoza,AR-M,annual,2018,gas oil combustion consumption by to the public,402.30456,TJ,N2O,3.9,kg/TJ,1568.987784,kg +c60c3579-072a-3ac5-82c9-149085dbb675,SESCO,II.1.1,Misiones,AR-N,annual,2018,gas oil combustion consumption by to the public,0.65016,TJ,CO2,74100.0,kg/TJ,48176.856,kg +dd800d76-7d32-3668-a53a-6e08506d8286,SESCO,II.1.1,Misiones,AR-N,annual,2018,gas oil combustion consumption by to the public,0.65016,TJ,CH4,3.9,kg/TJ,2.535624,kg +dd800d76-7d32-3668-a53a-6e08506d8286,SESCO,II.1.1,Misiones,AR-N,annual,2018,gas oil combustion consumption by to the public,0.65016,TJ,N2O,3.9,kg/TJ,2.535624,kg +0c8fe6c7-6264-3cd0-9906-982e6b70936d,SESCO,II.1.1,San Juan,AR-J,annual,2018,gas oil combustion consumption by to the public,2.99796,TJ,CO2,74100.0,kg/TJ,222148.836,kg +8ea3e33e-579e-3723-baf2-fcc93fe29727,SESCO,II.1.1,San Juan,AR-J,annual,2018,gas oil combustion consumption by to the public,2.99796,TJ,CH4,3.9,kg/TJ,11.692044,kg +8ea3e33e-579e-3723-baf2-fcc93fe29727,SESCO,II.1.1,San Juan,AR-J,annual,2018,gas oil combustion consumption by to the public,2.99796,TJ,N2O,3.9,kg/TJ,11.692044,kg +833f0b95-65b3-3a41-90c7-29ba13f7cbf5,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,gas oil combustion consumption by to the public,1219.98912,TJ,CO2,74100.0,kg/TJ,90401193.792,kg +a9877e2f-c4d8-3cae-86ce-7bae0395e793,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,gas oil combustion consumption by to the public,1219.98912,TJ,CH4,3.9,kg/TJ,4757.957568,kg +a9877e2f-c4d8-3cae-86ce-7bae0395e793,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,gas oil combustion consumption by to the public,1219.98912,TJ,N2O,3.9,kg/TJ,4757.957568,kg +4cdc9eb3-5881-38cb-a577-ead6ebb559ef,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2018,gas oil combustion consumption by to the public,2.8895999999999997,TJ,CO2,74100.0,kg/TJ,214119.36,kg +ff309e58-245d-3dfe-a533-909700256333,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2018,gas oil combustion consumption by to the public,2.8895999999999997,TJ,CH4,3.9,kg/TJ,11.26944,kg +ff309e58-245d-3dfe-a533-909700256333,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2018,gas oil combustion consumption by to the public,2.8895999999999997,TJ,N2O,3.9,kg/TJ,11.26944,kg +7d0d85d5-4475-3068-ba2d-9dfe36c5f405,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,gas oil combustion consumption by to the public,375.32292,TJ,CO2,74100.0,kg/TJ,27811428.372,kg +fb677d91-8b9d-3df0-8fd9-257e68c32ad4,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,gas oil combustion consumption by to the public,375.32292,TJ,CH4,3.9,kg/TJ,1463.759388,kg +fb677d91-8b9d-3df0-8fd9-257e68c32ad4,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,gas oil combustion consumption by to the public,375.32292,TJ,N2O,3.9,kg/TJ,1463.759388,kg +20947247-76bc-3123-bd99-1456061d4a6d,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,gas oil combustion consumption by to the public,12.38916,TJ,CO2,74100.0,kg/TJ,918036.756,kg +c4a866c4-be36-3e05-86d0-2d2a8e2b2d0e,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,gas oil combustion consumption by to the public,12.38916,TJ,CH4,3.9,kg/TJ,48.317724,kg +c4a866c4-be36-3e05-86d0-2d2a8e2b2d0e,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,gas oil combustion consumption by to the public,12.38916,TJ,N2O,3.9,kg/TJ,48.317724,kg +043b8280-8dbc-3e0a-bcd6-c9aa4bc88f89,SESCO,II.1.1,Chaco,AR-H,annual,2018,gas oil combustion consumption by to the public,31.027079999999998,TJ,CO2,74100.0,kg/TJ,2299106.628,kg +8544f869-7637-3c0a-8bb9-b5ea0f518fe8,SESCO,II.1.1,Chaco,AR-H,annual,2018,gas oil combustion consumption by to the public,31.027079999999998,TJ,CH4,3.9,kg/TJ,121.00561199999999,kg +8544f869-7637-3c0a-8bb9-b5ea0f518fe8,SESCO,II.1.1,Chaco,AR-H,annual,2018,gas oil combustion consumption by to the public,31.027079999999998,TJ,N2O,3.9,kg/TJ,121.00561199999999,kg +882ff5ab-57f8-3b4a-bf4b-dfef3901bdb1,SESCO,II.1.1,Corrientes,AR-W,annual,2018,gas oil combustion consumption by to the public,0.46956,TJ,CO2,74100.0,kg/TJ,34794.396,kg +78b7d7e6-4d08-3f17-ae8f-870329136b14,SESCO,II.1.1,Corrientes,AR-W,annual,2018,gas oil combustion consumption by to the public,0.46956,TJ,CH4,3.9,kg/TJ,1.831284,kg +78b7d7e6-4d08-3f17-ae8f-870329136b14,SESCO,II.1.1,Corrientes,AR-W,annual,2018,gas oil combustion consumption by to the public,0.46956,TJ,N2O,3.9,kg/TJ,1.831284,kg +9276efcc-ef72-306e-9a52-8af6eb6b2e3c,SESCO,II.1.1,Córdoba,AR-X,annual,2018,gas oil combustion consumption by to the public,149.57292,TJ,CO2,74100.0,kg/TJ,11083353.372000001,kg +67c90958-0ddf-3374-ae5b-3776a541ffda,SESCO,II.1.1,Córdoba,AR-X,annual,2018,gas oil combustion consumption by to the public,149.57292,TJ,CH4,3.9,kg/TJ,583.334388,kg +67c90958-0ddf-3374-ae5b-3776a541ffda,SESCO,II.1.1,Córdoba,AR-X,annual,2018,gas oil combustion consumption by to the public,149.57292,TJ,N2O,3.9,kg/TJ,583.334388,kg +8778be24-62a3-3d55-bc48-bc015e7ae12c,SESCO,II.1.1,Mendoza,AR-M,annual,2018,gas oil combustion consumption by to the public,63.49896,TJ,CO2,74100.0,kg/TJ,4705272.936,kg +13a8c0dd-0dd0-3e36-9e91-c3a7f8bc1a59,SESCO,II.1.1,Mendoza,AR-M,annual,2018,gas oil combustion consumption by to the public,63.49896,TJ,CH4,3.9,kg/TJ,247.645944,kg +13a8c0dd-0dd0-3e36-9e91-c3a7f8bc1a59,SESCO,II.1.1,Mendoza,AR-M,annual,2018,gas oil combustion consumption by to the public,63.49896,TJ,N2O,3.9,kg/TJ,247.645944,kg +62055cbf-72e9-3137-b12b-3fb010d1b60a,SESCO,II.1.1,Misiones,AR-N,annual,2018,gas oil combustion consumption by to the public,0.21672,TJ,CO2,74100.0,kg/TJ,16058.952,kg +c1c960ec-61d1-3ff0-ad36-943a66342c9d,SESCO,II.1.1,Misiones,AR-N,annual,2018,gas oil combustion consumption by to the public,0.21672,TJ,CH4,3.9,kg/TJ,0.845208,kg +c1c960ec-61d1-3ff0-ad36-943a66342c9d,SESCO,II.1.1,Misiones,AR-N,annual,2018,gas oil combustion consumption by to the public,0.21672,TJ,N2O,3.9,kg/TJ,0.845208,kg +3b298f31-513d-3bea-b9f6-6d9113eb2595,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,gas oil combustion consumption by to the public,124.39728,TJ,CO2,74100.0,kg/TJ,9217838.447999999,kg +d244128f-069c-3b01-bff0-c5284bf821ec,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,gas oil combustion consumption by to the public,124.39728,TJ,CH4,3.9,kg/TJ,485.149392,kg +d244128f-069c-3b01-bff0-c5284bf821ec,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,gas oil combustion consumption by to the public,124.39728,TJ,N2O,3.9,kg/TJ,485.149392,kg +b5b98223-ed65-3e90-9cb8-182d23d63904,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,jet kerosene combustion consumption by to the public,0.31453,TJ,CO2,71500.0,kg/TJ,22488.894999999997,kg +4f70fa38-25bc-3bde-adb8-109bedb763c0,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,jet kerosene combustion consumption by to the public,0.31453,TJ,CH4,0.5,kg/TJ,0.157265,kg +97827aa4-e8f4-3be2-bf2a-fca668b5efb9,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,jet kerosene combustion consumption by to the public,0.31453,TJ,N2O,2.0,kg/TJ,0.62906,kg +3b4777a9-59e0-3de1-bce0-e86fbcd53b18,SESCO,II.5.1,Buenos Aires,AR-B,annual,2018,gas oil combustion consumption by agriculture machines,40.74336,TJ,CO2,74100.0,kg/TJ,3019082.9760000003,kg +22a43a42-e758-357d-888c-2002944abc66,SESCO,II.5.1,Buenos Aires,AR-B,annual,2018,gas oil combustion consumption by agriculture machines,40.74336,TJ,CH4,3.9,kg/TJ,158.899104,kg +22a43a42-e758-357d-888c-2002944abc66,SESCO,II.5.1,Buenos Aires,AR-B,annual,2018,gas oil combustion consumption by agriculture machines,40.74336,TJ,N2O,3.9,kg/TJ,158.899104,kg +7affca53-79fb-3f03-9e43-e8aff290c4d3,SESCO,II.5.1,Córdoba,AR-X,annual,2018,gas oil combustion consumption by agriculture machines,1.33644,TJ,CO2,74100.0,kg/TJ,99030.20400000001,kg +5bc15247-2b16-372c-a5bd-827ad37ed1bf,SESCO,II.5.1,Córdoba,AR-X,annual,2018,gas oil combustion consumption by agriculture machines,1.33644,TJ,CH4,3.9,kg/TJ,5.212116,kg +5bc15247-2b16-372c-a5bd-827ad37ed1bf,SESCO,II.5.1,Córdoba,AR-X,annual,2018,gas oil combustion consumption by agriculture machines,1.33644,TJ,N2O,3.9,kg/TJ,5.212116,kg +c57d8751-a2f3-3e71-bc85-b0ba57223a8b,SESCO,II.5.1,Santa Fe,AR-S,annual,2018,gas oil combustion consumption by agriculture machines,76.5744,TJ,CO2,74100.0,kg/TJ,5674163.04,kg +4658e8f3-9c51-3285-97f2-46531d78e214,SESCO,II.5.1,Santa Fe,AR-S,annual,2018,gas oil combustion consumption by agriculture machines,76.5744,TJ,CH4,3.9,kg/TJ,298.64016,kg +4658e8f3-9c51-3285-97f2-46531d78e214,SESCO,II.5.1,Santa Fe,AR-S,annual,2018,gas oil combustion consumption by agriculture machines,76.5744,TJ,N2O,3.9,kg/TJ,298.64016,kg +90da84b8-f111-3cb7-99e9-8257fc2c49a2,SESCO,II.5.1,Tucuman,AR-T,annual,2018,gas oil combustion consumption by agriculture machines,5.2735199999999995,TJ,CO2,74100.0,kg/TJ,390767.832,kg +ffdacb5d-d294-3d96-9de6-a0610076fade,SESCO,II.5.1,Tucuman,AR-T,annual,2018,gas oil combustion consumption by agriculture machines,5.2735199999999995,TJ,CH4,3.9,kg/TJ,20.566727999999998,kg +ffdacb5d-d294-3d96-9de6-a0610076fade,SESCO,II.5.1,Tucuman,AR-T,annual,2018,gas oil combustion consumption by agriculture machines,5.2735199999999995,TJ,N2O,3.9,kg/TJ,20.566727999999998,kg +5b2d9209-d8fc-308c-a01a-12d3c58f331a,SESCO,II.5.1,Buenos Aires,AR-B,annual,2018,gas oil combustion consumption by agriculture machines,4.62336,TJ,CO2,74100.0,kg/TJ,342590.97599999997,kg +e2761fc5-a9db-39c8-853b-4b71c0aef6cc,SESCO,II.5.1,Buenos Aires,AR-B,annual,2018,gas oil combustion consumption by agriculture machines,4.62336,TJ,CH4,3.9,kg/TJ,18.031104,kg +e2761fc5-a9db-39c8-853b-4b71c0aef6cc,SESCO,II.5.1,Buenos Aires,AR-B,annual,2018,gas oil combustion consumption by agriculture machines,4.62336,TJ,N2O,3.9,kg/TJ,18.031104,kg +8f4854a8-e502-3713-b7ad-0d90d4b218ad,SESCO,II.5.1,Córdoba,AR-X,annual,2018,gas oil combustion consumption by agriculture machines,2.5284,TJ,CO2,74100.0,kg/TJ,187354.44,kg +9c678e78-642a-3c21-9c52-393a6eb5f96d,SESCO,II.5.1,Córdoba,AR-X,annual,2018,gas oil combustion consumption by agriculture machines,2.5284,TJ,CH4,3.9,kg/TJ,9.860759999999999,kg +9c678e78-642a-3c21-9c52-393a6eb5f96d,SESCO,II.5.1,Córdoba,AR-X,annual,2018,gas oil combustion consumption by agriculture machines,2.5284,TJ,N2O,3.9,kg/TJ,9.860759999999999,kg +b3ac713b-c01f-36cb-b9cb-c6c6730c1312,SESCO,II.5.1,Santa Fe,AR-S,annual,2018,gas oil combustion consumption by agriculture machines,9.24672,TJ,CO2,74100.0,kg/TJ,685181.9519999999,kg +e0c72e40-d472-3e45-8e79-b86c8def2ec9,SESCO,II.5.1,Santa Fe,AR-S,annual,2018,gas oil combustion consumption by agriculture machines,9.24672,TJ,CH4,3.9,kg/TJ,36.062208,kg +e0c72e40-d472-3e45-8e79-b86c8def2ec9,SESCO,II.5.1,Santa Fe,AR-S,annual,2018,gas oil combustion consumption by agriculture machines,9.24672,TJ,N2O,3.9,kg/TJ,36.062208,kg +fa818f0e-1216-3fd1-ac6b-3e648fd68b6a,SESCO,II.5.1,Tucuman,AR-T,annual,2018,gas oil combustion consumption by agriculture machines,4.6956,TJ,CO2,74100.0,kg/TJ,347943.95999999996,kg +d531778d-008a-3723-965b-dda1839a3a32,SESCO,II.5.1,Tucuman,AR-T,annual,2018,gas oil combustion consumption by agriculture machines,4.6956,TJ,CH4,3.9,kg/TJ,18.312839999999998,kg +d531778d-008a-3723-965b-dda1839a3a32,SESCO,II.5.1,Tucuman,AR-T,annual,2018,gas oil combustion consumption by agriculture machines,4.6956,TJ,N2O,3.9,kg/TJ,18.312839999999998,kg +4feec27a-c736-3000-990f-80dcb8f83107,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,gas oil combustion consumption by to the public,1888.49808,TJ,CO2,74100.0,kg/TJ,139937707.72800002,kg +2cdab03b-b13d-3d1c-b1d8-58e891e0cc6f,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,gas oil combustion consumption by to the public,1888.49808,TJ,CH4,3.9,kg/TJ,7365.142512,kg +2cdab03b-b13d-3d1c-b1d8-58e891e0cc6f,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,gas oil combustion consumption by to the public,1888.49808,TJ,N2O,3.9,kg/TJ,7365.142512,kg +410514d4-113e-3fb4-9153-1c40ddb933fe,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,gas oil combustion consumption by to the public,206.71475999999998,TJ,CO2,74100.0,kg/TJ,15317563.715999998,kg +d249c032-750b-311a-bc7e-b94f14b5864e,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,gas oil combustion consumption by to the public,206.71475999999998,TJ,CH4,3.9,kg/TJ,806.187564,kg +d249c032-750b-311a-bc7e-b94f14b5864e,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,gas oil combustion consumption by to the public,206.71475999999998,TJ,N2O,3.9,kg/TJ,806.187564,kg +a6073365-6348-3642-95c6-cd892e9dbfd9,SESCO,II.1.1,Catamarca,AR-K,annual,2018,gas oil combustion consumption by to the public,71.40924,TJ,CO2,74100.0,kg/TJ,5291424.683999999,kg +36614760-66d6-3e1b-93fc-143235015fb2,SESCO,II.1.1,Catamarca,AR-K,annual,2018,gas oil combustion consumption by to the public,71.40924,TJ,CH4,3.9,kg/TJ,278.496036,kg +36614760-66d6-3e1b-93fc-143235015fb2,SESCO,II.1.1,Catamarca,AR-K,annual,2018,gas oil combustion consumption by to the public,71.40924,TJ,N2O,3.9,kg/TJ,278.496036,kg +35b5e8d2-6717-3224-9ed7-f589ae0f3e57,SESCO,II.1.1,Chaco,AR-H,annual,2018,gas oil combustion consumption by to the public,66.6414,TJ,CO2,74100.0,kg/TJ,4938127.74,kg +45f42763-bf25-3bfc-b53b-9ae92f37aaa7,SESCO,II.1.1,Chaco,AR-H,annual,2018,gas oil combustion consumption by to the public,66.6414,TJ,CH4,3.9,kg/TJ,259.90146,kg +45f42763-bf25-3bfc-b53b-9ae92f37aaa7,SESCO,II.1.1,Chaco,AR-H,annual,2018,gas oil combustion consumption by to the public,66.6414,TJ,N2O,3.9,kg/TJ,259.90146,kg +6efeefd9-44c4-3523-9462-908be4173095,SESCO,II.1.1,Chubut,AR-U,annual,2018,gas oil combustion consumption by to the public,99.1494,TJ,CO2,74100.0,kg/TJ,7346970.54,kg +b558764f-1c86-31e3-ae02-19fe3589f7f8,SESCO,II.1.1,Chubut,AR-U,annual,2018,gas oil combustion consumption by to the public,99.1494,TJ,CH4,3.9,kg/TJ,386.68266,kg +b558764f-1c86-31e3-ae02-19fe3589f7f8,SESCO,II.1.1,Chubut,AR-U,annual,2018,gas oil combustion consumption by to the public,99.1494,TJ,N2O,3.9,kg/TJ,386.68266,kg +675920a4-43bc-3fd5-a15f-e6a354a48930,SESCO,II.1.1,Corrientes,AR-W,annual,2018,gas oil combustion consumption by to the public,125.76984,TJ,CO2,74100.0,kg/TJ,9319545.144,kg +28b1b895-0f36-3df8-9fd4-8a2e0a161b42,SESCO,II.1.1,Corrientes,AR-W,annual,2018,gas oil combustion consumption by to the public,125.76984,TJ,CH4,3.9,kg/TJ,490.50237599999997,kg +28b1b895-0f36-3df8-9fd4-8a2e0a161b42,SESCO,II.1.1,Corrientes,AR-W,annual,2018,gas oil combustion consumption by to the public,125.76984,TJ,N2O,3.9,kg/TJ,490.50237599999997,kg +406db7ad-55fc-3c77-ae0d-5a9d41f4ee47,SESCO,II.1.1,Córdoba,AR-X,annual,2018,gas oil combustion consumption by to the public,1032.6707999999999,TJ,CO2,74100.0,kg/TJ,76520906.27999999,kg +1f1d4bb8-265a-3652-8f84-0701aecff5da,SESCO,II.1.1,Córdoba,AR-X,annual,2018,gas oil combustion consumption by to the public,1032.6707999999999,TJ,CH4,3.9,kg/TJ,4027.4161199999994,kg +1f1d4bb8-265a-3652-8f84-0701aecff5da,SESCO,II.1.1,Córdoba,AR-X,annual,2018,gas oil combustion consumption by to the public,1032.6707999999999,TJ,N2O,3.9,kg/TJ,4027.4161199999994,kg +51d59cc6-1a30-3e14-958a-83929a2877bb,SESCO,II.1.1,Entre Rios,AR-E,annual,2018,gas oil combustion consumption by to the public,283.57812,TJ,CO2,74100.0,kg/TJ,21013138.692,kg +d25fbe09-f8c0-3837-abbd-b78a4b1d5db9,SESCO,II.1.1,Entre Rios,AR-E,annual,2018,gas oil combustion consumption by to the public,283.57812,TJ,CH4,3.9,kg/TJ,1105.954668,kg +d25fbe09-f8c0-3837-abbd-b78a4b1d5db9,SESCO,II.1.1,Entre Rios,AR-E,annual,2018,gas oil combustion consumption by to the public,283.57812,TJ,N2O,3.9,kg/TJ,1105.954668,kg +e90b6130-edb9-38c0-9a1d-63392c13a05c,SESCO,II.1.1,Formosa,AR-P,annual,2018,gas oil combustion consumption by to the public,117.31775999999999,TJ,CO2,74100.0,kg/TJ,8693246.015999999,kg +c383e987-fcde-325c-9051-7a658f7a94ef,SESCO,II.1.1,Formosa,AR-P,annual,2018,gas oil combustion consumption by to the public,117.31775999999999,TJ,CH4,3.9,kg/TJ,457.53926399999995,kg +c383e987-fcde-325c-9051-7a658f7a94ef,SESCO,II.1.1,Formosa,AR-P,annual,2018,gas oil combustion consumption by to the public,117.31775999999999,TJ,N2O,3.9,kg/TJ,457.53926399999995,kg +84f394f2-c723-3d52-acb7-e48eba7d66b9,SESCO,II.1.1,Jujuy,AR-Y,annual,2018,gas oil combustion consumption by to the public,20.2272,TJ,CO2,74100.0,kg/TJ,1498835.52,kg +edc549c9-c739-3a8b-a3e2-4cd6ca5e2403,SESCO,II.1.1,Jujuy,AR-Y,annual,2018,gas oil combustion consumption by to the public,20.2272,TJ,CH4,3.9,kg/TJ,78.88607999999999,kg +edc549c9-c739-3a8b-a3e2-4cd6ca5e2403,SESCO,II.1.1,Jujuy,AR-Y,annual,2018,gas oil combustion consumption by to the public,20.2272,TJ,N2O,3.9,kg/TJ,78.88607999999999,kg +fca3fd35-40f1-3e0e-89ee-601576c37606,SESCO,II.1.1,La Pampa,AR-L,annual,2018,gas oil combustion consumption by to the public,80.43924,TJ,CO2,74100.0,kg/TJ,5960547.683999999,kg +07dfb454-9f84-3185-b29a-684a3d9296a6,SESCO,II.1.1,La Pampa,AR-L,annual,2018,gas oil combustion consumption by to the public,80.43924,TJ,CH4,3.9,kg/TJ,313.713036,kg +07dfb454-9f84-3185-b29a-684a3d9296a6,SESCO,II.1.1,La Pampa,AR-L,annual,2018,gas oil combustion consumption by to the public,80.43924,TJ,N2O,3.9,kg/TJ,313.713036,kg +19b1badc-4d7d-34eb-bd8c-a29beee1dfbc,SESCO,II.1.1,La Rioja,AR-F,annual,2018,gas oil combustion consumption by to the public,13.0032,TJ,CO2,74100.0,kg/TJ,963537.12,kg +0e37b98b-08fb-3171-9a48-b796af45c911,SESCO,II.1.1,La Rioja,AR-F,annual,2018,gas oil combustion consumption by to the public,13.0032,TJ,CH4,3.9,kg/TJ,50.71248,kg +0e37b98b-08fb-3171-9a48-b796af45c911,SESCO,II.1.1,La Rioja,AR-F,annual,2018,gas oil combustion consumption by to the public,13.0032,TJ,N2O,3.9,kg/TJ,50.71248,kg +49c2d775-e768-3b1c-93ac-36eb25cf6c20,SESCO,II.1.1,Mendoza,AR-M,annual,2018,gas oil combustion consumption by to the public,137.68944,TJ,CO2,74100.0,kg/TJ,10202787.503999999,kg +d79d5a95-d827-3a96-aef8-2daac8e1942f,SESCO,II.1.1,Mendoza,AR-M,annual,2018,gas oil combustion consumption by to the public,137.68944,TJ,CH4,3.9,kg/TJ,536.9888159999999,kg +d79d5a95-d827-3a96-aef8-2daac8e1942f,SESCO,II.1.1,Mendoza,AR-M,annual,2018,gas oil combustion consumption by to the public,137.68944,TJ,N2O,3.9,kg/TJ,536.9888159999999,kg +5966a1ce-7701-3158-9268-9dc778882703,SESCO,II.1.1,Misiones,AR-N,annual,2018,gas oil combustion consumption by to the public,147.62243999999998,TJ,CO2,74100.0,kg/TJ,10938822.804,kg +884a56bd-678d-3db5-b748-e68a58fac80f,SESCO,II.1.1,Misiones,AR-N,annual,2018,gas oil combustion consumption by to the public,147.62243999999998,TJ,CH4,3.9,kg/TJ,575.7275159999999,kg +884a56bd-678d-3db5-b748-e68a58fac80f,SESCO,II.1.1,Misiones,AR-N,annual,2018,gas oil combustion consumption by to the public,147.62243999999998,TJ,N2O,3.9,kg/TJ,575.7275159999999,kg +597fc1a1-63fe-34ad-a012-14e4dd9ef739,SESCO,II.1.1,Neuquén,AR-Q,annual,2018,gas oil combustion consumption by to the public,41.538,TJ,CO2,74100.0,kg/TJ,3077965.8,kg +a99213ce-701c-3723-9e8b-b0f006c99ee9,SESCO,II.1.1,Neuquén,AR-Q,annual,2018,gas oil combustion consumption by to the public,41.538,TJ,CH4,3.9,kg/TJ,161.9982,kg +a99213ce-701c-3723-9e8b-b0f006c99ee9,SESCO,II.1.1,Neuquén,AR-Q,annual,2018,gas oil combustion consumption by to the public,41.538,TJ,N2O,3.9,kg/TJ,161.9982,kg +194a3ef8-1f27-3bb5-a7e2-2b2a14a7089f,SESCO,II.1.1,Rio Negro,AR-R,annual,2018,gas oil combustion consumption by to the public,121.905,TJ,CO2,74100.0,kg/TJ,9033160.5,kg +22acaa43-2608-3727-8263-1bfd284d6962,SESCO,II.1.1,Rio Negro,AR-R,annual,2018,gas oil combustion consumption by to the public,121.905,TJ,CH4,3.9,kg/TJ,475.4295,kg +22acaa43-2608-3727-8263-1bfd284d6962,SESCO,II.1.1,Rio Negro,AR-R,annual,2018,gas oil combustion consumption by to the public,121.905,TJ,N2O,3.9,kg/TJ,475.4295,kg +c15492eb-8a99-3988-8165-5710764e1b55,SESCO,II.1.1,Salta,AR-A,annual,2018,gas oil combustion consumption by to the public,9.49956,TJ,CO2,74100.0,kg/TJ,703917.3960000001,kg +d298134d-e490-3b4e-a815-7cc09eeb91d9,SESCO,II.1.1,Salta,AR-A,annual,2018,gas oil combustion consumption by to the public,9.49956,TJ,CH4,3.9,kg/TJ,37.048284,kg +d298134d-e490-3b4e-a815-7cc09eeb91d9,SESCO,II.1.1,Salta,AR-A,annual,2018,gas oil combustion consumption by to the public,9.49956,TJ,N2O,3.9,kg/TJ,37.048284,kg +6c8a1d0c-cb05-3e9a-bb04-1bb90897b970,SESCO,II.1.1,San Juan,AR-J,annual,2018,gas oil combustion consumption by to the public,72.7818,TJ,CO2,74100.0,kg/TJ,5393131.38,kg +f35aa3dc-1991-3d3e-83d0-24851356fefa,SESCO,II.1.1,San Juan,AR-J,annual,2018,gas oil combustion consumption by to the public,72.7818,TJ,CH4,3.9,kg/TJ,283.84902,kg +f35aa3dc-1991-3d3e-83d0-24851356fefa,SESCO,II.1.1,San Juan,AR-J,annual,2018,gas oil combustion consumption by to the public,72.7818,TJ,N2O,3.9,kg/TJ,283.84902,kg +8a3cb5c7-a3b9-3dad-9db4-dc4a47de1a46,SESCO,II.1.1,San Luis,AR-D,annual,2018,gas oil combustion consumption by to the public,124.18056,TJ,CO2,74100.0,kg/TJ,9201779.496,kg +db47e661-7e7e-3fe9-914d-4bc2da0f242f,SESCO,II.1.1,San Luis,AR-D,annual,2018,gas oil combustion consumption by to the public,124.18056,TJ,CH4,3.9,kg/TJ,484.30418399999996,kg +db47e661-7e7e-3fe9-914d-4bc2da0f242f,SESCO,II.1.1,San Luis,AR-D,annual,2018,gas oil combustion consumption by to the public,124.18056,TJ,N2O,3.9,kg/TJ,484.30418399999996,kg +3d248a3a-a0ca-396e-bbaf-e695d53f2c13,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2018,gas oil combustion consumption by to the public,0.18059999999999998,TJ,CO2,74100.0,kg/TJ,13382.46,kg +306a3ed5-391a-3f84-b349-fda58778f506,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2018,gas oil combustion consumption by to the public,0.18059999999999998,TJ,CH4,3.9,kg/TJ,0.70434,kg +306a3ed5-391a-3f84-b349-fda58778f506,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2018,gas oil combustion consumption by to the public,0.18059999999999998,TJ,N2O,3.9,kg/TJ,0.70434,kg +229de79f-546f-3c68-94a0-4d854032ddf6,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,gas oil combustion consumption by to the public,434.84868,TJ,CO2,74100.0,kg/TJ,32222287.188,kg +159c34df-34f3-36e2-ba3e-ecd31e7b9c93,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,gas oil combustion consumption by to the public,434.84868,TJ,CH4,3.9,kg/TJ,1695.909852,kg +159c34df-34f3-36e2-ba3e-ecd31e7b9c93,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,gas oil combustion consumption by to the public,434.84868,TJ,N2O,3.9,kg/TJ,1695.909852,kg +a6a48b65-532d-323a-b57c-6c3ad583ba09,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2018,gas oil combustion consumption by to the public,74.55168,TJ,CO2,74100.0,kg/TJ,5524279.488,kg +33d00875-1eff-385f-9172-043ed1ab1654,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2018,gas oil combustion consumption by to the public,74.55168,TJ,CH4,3.9,kg/TJ,290.751552,kg +33d00875-1eff-385f-9172-043ed1ab1654,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2018,gas oil combustion consumption by to the public,74.55168,TJ,N2O,3.9,kg/TJ,290.751552,kg +61c8f356-6492-309c-9087-aab8ef7ad9eb,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2018,gas oil combustion consumption by to the public,23.58636,TJ,CO2,74100.0,kg/TJ,1747749.2759999998,kg +a7546bae-641c-3b6c-bac1-bcbc4164f944,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2018,gas oil combustion consumption by to the public,23.58636,TJ,CH4,3.9,kg/TJ,91.98680399999999,kg +a7546bae-641c-3b6c-bac1-bcbc4164f944,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2018,gas oil combustion consumption by to the public,23.58636,TJ,N2O,3.9,kg/TJ,91.98680399999999,kg +771f915f-cb04-3cee-b2d2-0cded3cdccae,SESCO,II.1.1,Tucuman,AR-T,annual,2018,gas oil combustion consumption by to the public,11.738999999999999,TJ,CO2,74100.0,kg/TJ,869859.8999999999,kg +f4ed68c5-d028-3ee3-a4d3-0d1d3ce873c9,SESCO,II.1.1,Tucuman,AR-T,annual,2018,gas oil combustion consumption by to the public,11.738999999999999,TJ,CH4,3.9,kg/TJ,45.78209999999999,kg +f4ed68c5-d028-3ee3-a4d3-0d1d3ce873c9,SESCO,II.1.1,Tucuman,AR-T,annual,2018,gas oil combustion consumption by to the public,11.738999999999999,TJ,N2O,3.9,kg/TJ,45.78209999999999,kg +7527a05e-3170-386e-9bbc-a62a7513f6ed,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,gas oil combustion consumption by to the public,890.79144,TJ,CO2,74100.0,kg/TJ,66007645.703999996,kg +344fac12-142d-3f20-8a93-8d7f6926ed05,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,gas oil combustion consumption by to the public,890.79144,TJ,CH4,3.9,kg/TJ,3474.0866159999996,kg +344fac12-142d-3f20-8a93-8d7f6926ed05,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,gas oil combustion consumption by to the public,890.79144,TJ,N2O,3.9,kg/TJ,3474.0866159999996,kg +e9f97f71-1c03-3056-acfb-bd37d0544e75,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,gas oil combustion consumption by to the public,162.68448,TJ,CO2,74100.0,kg/TJ,12054919.968,kg +41aaa052-b28c-3116-8d06-3298a1160352,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,gas oil combustion consumption by to the public,162.68448,TJ,CH4,3.9,kg/TJ,634.469472,kg +41aaa052-b28c-3116-8d06-3298a1160352,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,gas oil combustion consumption by to the public,162.68448,TJ,N2O,3.9,kg/TJ,634.469472,kg +d11d5290-a65b-3a84-a9ab-8305a6db35ad,SESCO,II.1.1,Catamarca,AR-K,annual,2018,gas oil combustion consumption by to the public,48.43692,TJ,CO2,74100.0,kg/TJ,3589175.772,kg +380f9410-1ee3-3340-8fef-8b9bc06f7f25,SESCO,II.1.1,Catamarca,AR-K,annual,2018,gas oil combustion consumption by to the public,48.43692,TJ,CH4,3.9,kg/TJ,188.903988,kg +380f9410-1ee3-3340-8fef-8b9bc06f7f25,SESCO,II.1.1,Catamarca,AR-K,annual,2018,gas oil combustion consumption by to the public,48.43692,TJ,N2O,3.9,kg/TJ,188.903988,kg +4573a2d1-dc48-3bac-98d0-80f723e5de2b,SESCO,II.1.1,Chaco,AR-H,annual,2018,gas oil combustion consumption by to the public,28.3542,TJ,CO2,74100.0,kg/TJ,2101046.2199999997,kg +1bae3f4b-3e06-3166-9d5c-bb51ac325e9a,SESCO,II.1.1,Chaco,AR-H,annual,2018,gas oil combustion consumption by to the public,28.3542,TJ,CH4,3.9,kg/TJ,110.58138,kg +1bae3f4b-3e06-3166-9d5c-bb51ac325e9a,SESCO,II.1.1,Chaco,AR-H,annual,2018,gas oil combustion consumption by to the public,28.3542,TJ,N2O,3.9,kg/TJ,110.58138,kg +b5889f4e-478e-3afc-971e-b01607860da5,SESCO,II.1.1,Chubut,AR-U,annual,2018,gas oil combustion consumption by to the public,42.94668,TJ,CO2,74100.0,kg/TJ,3182348.988,kg +e1d6a881-12fc-36ee-b337-d5bb5606a071,SESCO,II.1.1,Chubut,AR-U,annual,2018,gas oil combustion consumption by to the public,42.94668,TJ,CH4,3.9,kg/TJ,167.492052,kg +e1d6a881-12fc-36ee-b337-d5bb5606a071,SESCO,II.1.1,Chubut,AR-U,annual,2018,gas oil combustion consumption by to the public,42.94668,TJ,N2O,3.9,kg/TJ,167.492052,kg +cfe33863-827f-39ca-8b42-939e5d919e5b,SESCO,II.1.1,Corrientes,AR-W,annual,2018,gas oil combustion consumption by to the public,57.90036,TJ,CO2,74100.0,kg/TJ,4290416.676,kg +1eb33b89-cf68-36d9-9673-9cc26721df2d,SESCO,II.1.1,Corrientes,AR-W,annual,2018,gas oil combustion consumption by to the public,57.90036,TJ,CH4,3.9,kg/TJ,225.81140399999998,kg +1eb33b89-cf68-36d9-9673-9cc26721df2d,SESCO,II.1.1,Corrientes,AR-W,annual,2018,gas oil combustion consumption by to the public,57.90036,TJ,N2O,3.9,kg/TJ,225.81140399999998,kg +47acbef0-0dfe-30be-8c75-3e8aac3a4dfb,SESCO,II.1.1,Córdoba,AR-X,annual,2018,gas oil combustion consumption by to the public,269.38295999999997,TJ,CO2,74100.0,kg/TJ,19961277.336,kg +298ed8fd-8c5e-3ce6-83a4-fe6477096674,SESCO,II.1.1,Córdoba,AR-X,annual,2018,gas oil combustion consumption by to the public,269.38295999999997,TJ,CH4,3.9,kg/TJ,1050.5935439999998,kg +298ed8fd-8c5e-3ce6-83a4-fe6477096674,SESCO,II.1.1,Córdoba,AR-X,annual,2018,gas oil combustion consumption by to the public,269.38295999999997,TJ,N2O,3.9,kg/TJ,1050.5935439999998,kg +9b2ca6c5-30df-3066-b385-e8616400a68e,SESCO,II.1.1,Entre Rios,AR-E,annual,2018,gas oil combustion consumption by to the public,126.49224,TJ,CO2,74100.0,kg/TJ,9373074.984,kg +d3cc141b-2253-3eed-b627-ec2232d03cd8,SESCO,II.1.1,Entre Rios,AR-E,annual,2018,gas oil combustion consumption by to the public,126.49224,TJ,CH4,3.9,kg/TJ,493.319736,kg +d3cc141b-2253-3eed-b627-ec2232d03cd8,SESCO,II.1.1,Entre Rios,AR-E,annual,2018,gas oil combustion consumption by to the public,126.49224,TJ,N2O,3.9,kg/TJ,493.319736,kg +64fffd55-b870-333d-b8f2-64cdf1784458,SESCO,II.1.1,Formosa,AR-P,annual,2018,gas oil combustion consumption by to the public,74.69615999999999,TJ,CO2,74100.0,kg/TJ,5534985.455999999,kg +535658dc-217b-31e1-adc7-2a8dee7a5761,SESCO,II.1.1,Formosa,AR-P,annual,2018,gas oil combustion consumption by to the public,74.69615999999999,TJ,CH4,3.9,kg/TJ,291.31502399999994,kg +535658dc-217b-31e1-adc7-2a8dee7a5761,SESCO,II.1.1,Formosa,AR-P,annual,2018,gas oil combustion consumption by to the public,74.69615999999999,TJ,N2O,3.9,kg/TJ,291.31502399999994,kg +bea07bba-9ef7-302a-9b58-5302ef3ef7f9,SESCO,II.1.1,Jujuy,AR-Y,annual,2018,gas oil combustion consumption by to the public,12.02796,TJ,CO2,74100.0,kg/TJ,891271.836,kg +5e4d141e-7727-30d6-89e5-f9a09db3badb,SESCO,II.1.1,Jujuy,AR-Y,annual,2018,gas oil combustion consumption by to the public,12.02796,TJ,CH4,3.9,kg/TJ,46.909044,kg +5e4d141e-7727-30d6-89e5-f9a09db3badb,SESCO,II.1.1,Jujuy,AR-Y,annual,2018,gas oil combustion consumption by to the public,12.02796,TJ,N2O,3.9,kg/TJ,46.909044,kg +506276db-3c44-339e-986f-5210dcbb65ce,SESCO,II.1.1,La Pampa,AR-L,annual,2018,gas oil combustion consumption by to the public,37.85376,TJ,CO2,74100.0,kg/TJ,2804963.616,kg +697a5bd0-87fc-3d44-8685-30f1923d4601,SESCO,II.1.1,La Pampa,AR-L,annual,2018,gas oil combustion consumption by to the public,37.85376,TJ,CH4,3.9,kg/TJ,147.629664,kg +697a5bd0-87fc-3d44-8685-30f1923d4601,SESCO,II.1.1,La Pampa,AR-L,annual,2018,gas oil combustion consumption by to the public,37.85376,TJ,N2O,3.9,kg/TJ,147.629664,kg +7fdd6b44-ba36-3a80-a925-d5d4a938b177,SESCO,II.1.1,La Rioja,AR-F,annual,2018,gas oil combustion consumption by to the public,20.55228,TJ,CO2,74100.0,kg/TJ,1522923.9479999999,kg +6dbdebdf-b560-325a-a98e-dfd8c434048e,SESCO,II.1.1,La Rioja,AR-F,annual,2018,gas oil combustion consumption by to the public,20.55228,TJ,CH4,3.9,kg/TJ,80.153892,kg +6dbdebdf-b560-325a-a98e-dfd8c434048e,SESCO,II.1.1,La Rioja,AR-F,annual,2018,gas oil combustion consumption by to the public,20.55228,TJ,N2O,3.9,kg/TJ,80.153892,kg +235ada73-53bc-3ab3-a827-175128b14149,SESCO,II.1.1,Mendoza,AR-M,annual,2018,gas oil combustion consumption by to the public,73.143,TJ,CO2,74100.0,kg/TJ,5419896.3,kg +0753ae97-bfc9-37d3-941f-d05a46b298c4,SESCO,II.1.1,Mendoza,AR-M,annual,2018,gas oil combustion consumption by to the public,73.143,TJ,CH4,3.9,kg/TJ,285.2577,kg +0753ae97-bfc9-37d3-941f-d05a46b298c4,SESCO,II.1.1,Mendoza,AR-M,annual,2018,gas oil combustion consumption by to the public,73.143,TJ,N2O,3.9,kg/TJ,285.2577,kg +46ff9b09-b8aa-35d3-a526-440b30568cfd,SESCO,II.1.1,Misiones,AR-N,annual,2018,gas oil combustion consumption by to the public,52.9158,TJ,CO2,74100.0,kg/TJ,3921060.78,kg +430fdc62-64bd-3e2e-8c92-f8951d5d6007,SESCO,II.1.1,Misiones,AR-N,annual,2018,gas oil combustion consumption by to the public,52.9158,TJ,CH4,3.9,kg/TJ,206.37161999999998,kg +430fdc62-64bd-3e2e-8c92-f8951d5d6007,SESCO,II.1.1,Misiones,AR-N,annual,2018,gas oil combustion consumption by to the public,52.9158,TJ,N2O,3.9,kg/TJ,206.37161999999998,kg +4b9bed06-8069-388b-9990-849eb70ffa5d,SESCO,II.1.1,Neuquén,AR-Q,annual,2018,gas oil combustion consumption by to the public,54.93852,TJ,CO2,74100.0,kg/TJ,4070944.332,kg +85ee9605-01f5-3852-b230-21e3a70a54a4,SESCO,II.1.1,Neuquén,AR-Q,annual,2018,gas oil combustion consumption by to the public,54.93852,TJ,CH4,3.9,kg/TJ,214.26022799999998,kg +85ee9605-01f5-3852-b230-21e3a70a54a4,SESCO,II.1.1,Neuquén,AR-Q,annual,2018,gas oil combustion consumption by to the public,54.93852,TJ,N2O,3.9,kg/TJ,214.26022799999998,kg +c0f2a697-df27-3356-8e91-9148aa104590,SESCO,II.1.1,Rio Negro,AR-R,annual,2018,gas oil combustion consumption by to the public,87.69936,TJ,CO2,74100.0,kg/TJ,6498522.576,kg +cd17ad5c-7670-3c26-897f-b102dff4641f,SESCO,II.1.1,Rio Negro,AR-R,annual,2018,gas oil combustion consumption by to the public,87.69936,TJ,CH4,3.9,kg/TJ,342.02750399999996,kg +cd17ad5c-7670-3c26-897f-b102dff4641f,SESCO,II.1.1,Rio Negro,AR-R,annual,2018,gas oil combustion consumption by to the public,87.69936,TJ,N2O,3.9,kg/TJ,342.02750399999996,kg +eadeb139-27bf-3565-9de2-d8c8971f92ec,SESCO,II.1.1,Salta,AR-A,annual,2018,gas oil combustion consumption by to the public,8.81328,TJ,CO2,74100.0,kg/TJ,653064.0480000001,kg +da50f002-c0f8-36ee-b1d0-0d67082980b3,SESCO,II.1.1,Salta,AR-A,annual,2018,gas oil combustion consumption by to the public,8.81328,TJ,CH4,3.9,kg/TJ,34.371792,kg +da50f002-c0f8-36ee-b1d0-0d67082980b3,SESCO,II.1.1,Salta,AR-A,annual,2018,gas oil combustion consumption by to the public,8.81328,TJ,N2O,3.9,kg/TJ,34.371792,kg +3e4dc666-251a-3567-81eb-df28e0088961,SESCO,II.1.1,San Juan,AR-J,annual,2018,gas oil combustion consumption by to the public,25.97028,TJ,CO2,74100.0,kg/TJ,1924397.748,kg +2e5feafe-38f7-38ca-8c4b-4db05ac32a29,SESCO,II.1.1,San Juan,AR-J,annual,2018,gas oil combustion consumption by to the public,25.97028,TJ,CH4,3.9,kg/TJ,101.28409199999999,kg +2e5feafe-38f7-38ca-8c4b-4db05ac32a29,SESCO,II.1.1,San Juan,AR-J,annual,2018,gas oil combustion consumption by to the public,25.97028,TJ,N2O,3.9,kg/TJ,101.28409199999999,kg +f8e774e2-5e3e-3fcb-a0c8-029a0b10d27e,SESCO,II.1.1,San Luis,AR-D,annual,2018,gas oil combustion consumption by to the public,46.45032,TJ,CO2,74100.0,kg/TJ,3441968.712,kg +b459e39a-3b91-3b78-9218-38ecc7cab764,SESCO,II.1.1,San Luis,AR-D,annual,2018,gas oil combustion consumption by to the public,46.45032,TJ,CH4,3.9,kg/TJ,181.15624799999998,kg +b459e39a-3b91-3b78-9218-38ecc7cab764,SESCO,II.1.1,San Luis,AR-D,annual,2018,gas oil combustion consumption by to the public,46.45032,TJ,N2O,3.9,kg/TJ,181.15624799999998,kg +fd42fa56-432a-34b7-9091-c4dc532f1daf,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2018,gas oil combustion consumption by to the public,1.11972,TJ,CO2,74100.0,kg/TJ,82971.25200000001,kg +f65ea153-3d50-33ab-b321-d810aa4e1c92,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2018,gas oil combustion consumption by to the public,1.11972,TJ,CH4,3.9,kg/TJ,4.3669080000000005,kg +f65ea153-3d50-33ab-b321-d810aa4e1c92,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2018,gas oil combustion consumption by to the public,1.11972,TJ,N2O,3.9,kg/TJ,4.3669080000000005,kg +920bfdc1-313a-368c-a880-02bd953125c4,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,gas oil combustion consumption by to the public,216.39491999999998,TJ,CO2,74100.0,kg/TJ,16034863.571999999,kg +2f93a4d3-6855-35cc-a71b-c3e0bc0b8623,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,gas oil combustion consumption by to the public,216.39491999999998,TJ,CH4,3.9,kg/TJ,843.9401879999999,kg +2f93a4d3-6855-35cc-a71b-c3e0bc0b8623,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,gas oil combustion consumption by to the public,216.39491999999998,TJ,N2O,3.9,kg/TJ,843.9401879999999,kg +873a47c8-ea78-3fb3-95ec-4d9d8ae546a1,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2018,gas oil combustion consumption by to the public,48.50916,TJ,CO2,74100.0,kg/TJ,3594528.756,kg +077cf0ce-18ce-3e72-bf5c-76df9b9779d6,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2018,gas oil combustion consumption by to the public,48.50916,TJ,CH4,3.9,kg/TJ,189.185724,kg +077cf0ce-18ce-3e72-bf5c-76df9b9779d6,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2018,gas oil combustion consumption by to the public,48.50916,TJ,N2O,3.9,kg/TJ,189.185724,kg +f7c60885-548a-331c-a8e1-3691fdd04a55,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2018,gas oil combustion consumption by to the public,24.63384,TJ,CO2,74100.0,kg/TJ,1825367.544,kg +e77b9095-f1ec-31cc-b2b6-3f4d9b2e35f7,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2018,gas oil combustion consumption by to the public,24.63384,TJ,CH4,3.9,kg/TJ,96.07197599999999,kg +e77b9095-f1ec-31cc-b2b6-3f4d9b2e35f7,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2018,gas oil combustion consumption by to the public,24.63384,TJ,N2O,3.9,kg/TJ,96.07197599999999,kg +bc9b2b4c-8ad1-356c-b9cd-66c3d57d3b67,SESCO,II.1.1,Tucuman,AR-T,annual,2018,gas oil combustion consumption by to the public,3.86484,TJ,CO2,74100.0,kg/TJ,286384.64400000003,kg +8521e7de-d289-3e36-b169-574a99b37f38,SESCO,II.1.1,Tucuman,AR-T,annual,2018,gas oil combustion consumption by to the public,3.86484,TJ,CH4,3.9,kg/TJ,15.072875999999999,kg +8521e7de-d289-3e36-b169-574a99b37f38,SESCO,II.1.1,Tucuman,AR-T,annual,2018,gas oil combustion consumption by to the public,3.86484,TJ,N2O,3.9,kg/TJ,15.072875999999999,kg +8c1e0ea1-4248-3272-a18b-7750992b1312,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,jet kerosene combustion consumption by to the public,3.2396589999999996,TJ,CO2,71500.0,kg/TJ,231635.61849999998,kg +0c4a1963-c237-32dc-a317-64e891103a6f,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,jet kerosene combustion consumption by to the public,3.2396589999999996,TJ,CH4,0.5,kg/TJ,1.6198294999999998,kg +59d0c51f-9a51-3340-9dbd-390d9c685103,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,jet kerosene combustion consumption by to the public,3.2396589999999996,TJ,N2O,2.0,kg/TJ,6.479317999999999,kg +5dcecfe0-594c-32dc-abbf-479248082f25,SESCO,II.1.1,Córdoba,AR-X,annual,2018,jet kerosene combustion consumption by to the public,0.6919659999999999,TJ,CO2,71500.0,kg/TJ,49475.56899999999,kg +a6dcc6eb-f7d1-36d8-be84-7c073a8aaf4c,SESCO,II.1.1,Córdoba,AR-X,annual,2018,jet kerosene combustion consumption by to the public,0.6919659999999999,TJ,CH4,0.5,kg/TJ,0.34598299999999993,kg +4f494f1f-2bc0-32a6-8579-8e605573e93c,SESCO,II.1.1,Córdoba,AR-X,annual,2018,jet kerosene combustion consumption by to the public,0.6919659999999999,TJ,N2O,2.0,kg/TJ,1.3839319999999997,kg +5bee6964-7626-35ea-bb08-ff6e6f43d15d,SESCO,II.1.1,Entre Rios,AR-E,annual,2018,jet kerosene combustion consumption by to the public,0.31453,TJ,CO2,71500.0,kg/TJ,22488.894999999997,kg +8087ef65-c490-392f-9423-751ecce1f826,SESCO,II.1.1,Entre Rios,AR-E,annual,2018,jet kerosene combustion consumption by to the public,0.31453,TJ,CH4,0.5,kg/TJ,0.157265,kg +78265cbd-9b82-3a51-be1a-7fe5fe67525d,SESCO,II.1.1,Entre Rios,AR-E,annual,2018,jet kerosene combustion consumption by to the public,0.31453,TJ,N2O,2.0,kg/TJ,0.62906,kg +3dd13639-c844-3e0f-9aea-c5142e61ad8f,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,jet kerosene combustion consumption by to the public,0.8177779999999999,TJ,CO2,71500.0,kg/TJ,58471.12699999999,kg +db4bb48b-c730-351c-86fc-b61d91a041c9,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,jet kerosene combustion consumption by to the public,0.8177779999999999,TJ,CH4,0.5,kg/TJ,0.40888899999999995,kg +6c8d7f49-16cb-3d1b-8982-adea718d4ebe,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,jet kerosene combustion consumption by to the public,0.8177779999999999,TJ,N2O,2.0,kg/TJ,1.6355559999999998,kg +1068470e-690c-32df-a951-9a99e115df7a,SESCO,I.3.1,San Luis,AR-D,annual,2018,gas oil combustion consumption by petrochemical industries,3.90096,TJ,CO2,74100.0,kg/TJ,289061.136,kg +40a364c7-e7fd-3d41-becf-6246c3a8bec5,SESCO,I.3.1,San Luis,AR-D,annual,2018,gas oil combustion consumption by petrochemical industries,3.90096,TJ,CH4,3.9,kg/TJ,15.213744,kg +40a364c7-e7fd-3d41-becf-6246c3a8bec5,SESCO,I.3.1,San Luis,AR-D,annual,2018,gas oil combustion consumption by petrochemical industries,3.90096,TJ,N2O,3.9,kg/TJ,15.213744,kg +3f0c2fab-ed26-3a66-b74c-609eb76cf471,SESCO,I.3.1,Capital Federal,AR-C,annual,2018,jet kerosene combustion consumption by petrochemical industries,2.51624,TJ,CO2,71500.0,kg/TJ,179911.15999999997,kg +9f54cebe-1847-3fc8-a477-ba1b9f9842f7,SESCO,I.3.1,Capital Federal,AR-C,annual,2018,jet kerosene combustion consumption by petrochemical industries,2.51624,TJ,CH4,0.5,kg/TJ,1.25812,kg +4bd7b099-9469-3031-9fe9-7c0986963df6,SESCO,I.3.1,Capital Federal,AR-C,annual,2018,jet kerosene combustion consumption by petrochemical industries,2.51624,TJ,N2O,2.0,kg/TJ,5.03248,kg +210f05db-2557-3eb6-819b-53747e0ca3b4,SESCO,II.2.1,Buenos Aires,AR-B,annual,2018,gas oil combustion consumption by railway transport,49.88172,TJ,CO2,74100.0,kg/TJ,3696235.452,kg +418d0c8b-0c54-34ba-bde8-a3e539106fea,SESCO,II.2.1,Buenos Aires,AR-B,annual,2018,gas oil combustion consumption by railway transport,49.88172,TJ,CH4,3.9,kg/TJ,194.538708,kg +418d0c8b-0c54-34ba-bde8-a3e539106fea,SESCO,II.2.1,Buenos Aires,AR-B,annual,2018,gas oil combustion consumption by railway transport,49.88172,TJ,N2O,3.9,kg/TJ,194.538708,kg +359a60e7-d407-3369-b724-b6f444c7bd92,SESCO,II.2.1,La Pampa,AR-L,annual,2018,gas oil combustion consumption by railway transport,15.45936,TJ,CO2,74100.0,kg/TJ,1145538.5760000001,kg +aa62d513-76ed-3dad-8e01-3adf53ce1e6d,SESCO,II.2.1,La Pampa,AR-L,annual,2018,gas oil combustion consumption by railway transport,15.45936,TJ,CH4,3.9,kg/TJ,60.291503999999996,kg +aa62d513-76ed-3dad-8e01-3adf53ce1e6d,SESCO,II.2.1,La Pampa,AR-L,annual,2018,gas oil combustion consumption by railway transport,15.45936,TJ,N2O,3.9,kg/TJ,60.291503999999996,kg +a43a0a72-6cc9-3b19-b460-cc137f8506ce,SESCO,II.2.1,Santa Fe,AR-S,annual,2018,gas oil combustion consumption by railway transport,43.38012,TJ,CO2,74100.0,kg/TJ,3214466.892,kg +35137b53-2e66-3da1-b5da-f1e47bb92f3a,SESCO,II.2.1,Santa Fe,AR-S,annual,2018,gas oil combustion consumption by railway transport,43.38012,TJ,CH4,3.9,kg/TJ,169.182468,kg +35137b53-2e66-3da1-b5da-f1e47bb92f3a,SESCO,II.2.1,Santa Fe,AR-S,annual,2018,gas oil combustion consumption by railway transport,43.38012,TJ,N2O,3.9,kg/TJ,169.182468,kg +8576173b-0107-3a3a-b196-77738a7e13f7,SESCO,II.2.1,Santiago del Estero,AR-G,annual,2018,gas oil combustion consumption by railway transport,1.30032,TJ,CO2,74100.0,kg/TJ,96353.712,kg +68a2e866-5ab4-36e0-b1e5-43a38a2e0b01,SESCO,II.2.1,Santiago del Estero,AR-G,annual,2018,gas oil combustion consumption by railway transport,1.30032,TJ,CH4,3.9,kg/TJ,5.071248,kg +68a2e866-5ab4-36e0-b1e5-43a38a2e0b01,SESCO,II.2.1,Santiago del Estero,AR-G,annual,2018,gas oil combustion consumption by railway transport,1.30032,TJ,N2O,3.9,kg/TJ,5.071248,kg +10a3bc31-90e3-39f4-8bd9-ae771f058037,SESCO,II.2.1,Tucuman,AR-T,annual,2018,gas oil combustion consumption by railway transport,1.30032,TJ,CO2,74100.0,kg/TJ,96353.712,kg +94eba858-4de5-3004-b4d2-78f989756616,SESCO,II.2.1,Tucuman,AR-T,annual,2018,gas oil combustion consumption by railway transport,1.30032,TJ,CH4,3.9,kg/TJ,5.071248,kg +94eba858-4de5-3004-b4d2-78f989756616,SESCO,II.2.1,Tucuman,AR-T,annual,2018,gas oil combustion consumption by railway transport,1.30032,TJ,N2O,3.9,kg/TJ,5.071248,kg +a1b1e343-c9ac-3eca-ad8f-909f8126bf03,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,gas oil combustion consumption by freight transport,764.1186,TJ,CO2,74100.0,kg/TJ,56621188.26,kg +3d6b7169-cb32-319a-bab9-df1ebd2555e1,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,gas oil combustion consumption by freight transport,764.1186,TJ,CH4,3.9,kg/TJ,2980.06254,kg +3d6b7169-cb32-319a-bab9-df1ebd2555e1,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,gas oil combustion consumption by freight transport,764.1186,TJ,N2O,3.9,kg/TJ,2980.06254,kg +48088478-07cb-3213-82de-2aa9aa06ef1d,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,gas oil combustion consumption by freight transport,129.41796,TJ,CO2,74100.0,kg/TJ,9589870.836,kg +c04cace8-8417-3b42-a5bd-bd0d7c28ba08,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,gas oil combustion consumption by freight transport,129.41796,TJ,CH4,3.9,kg/TJ,504.73004399999996,kg +c04cace8-8417-3b42-a5bd-bd0d7c28ba08,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,gas oil combustion consumption by freight transport,129.41796,TJ,N2O,3.9,kg/TJ,504.73004399999996,kg +58881477-82af-3bc6-aa91-f03a3e0c1f55,SESCO,II.1.1,Catamarca,AR-K,annual,2018,gas oil combustion consumption by freight transport,7.0434,TJ,CO2,74100.0,kg/TJ,521915.94,kg +41a791a9-93e3-3d50-87a8-224e50b931a5,SESCO,II.1.1,Catamarca,AR-K,annual,2018,gas oil combustion consumption by freight transport,7.0434,TJ,CH4,3.9,kg/TJ,27.46926,kg +41a791a9-93e3-3d50-87a8-224e50b931a5,SESCO,II.1.1,Catamarca,AR-K,annual,2018,gas oil combustion consumption by freight transport,7.0434,TJ,N2O,3.9,kg/TJ,27.46926,kg +f3d16c6b-42ef-35c3-a11a-d42057b397ce,SESCO,II.1.1,Chaco,AR-H,annual,2018,gas oil combustion consumption by freight transport,7.07952,TJ,CO2,74100.0,kg/TJ,524592.4319999999,kg +d15d1b78-bad9-39ef-b702-36a8512f373e,SESCO,II.1.1,Chaco,AR-H,annual,2018,gas oil combustion consumption by freight transport,7.07952,TJ,CH4,3.9,kg/TJ,27.610127999999996,kg +d15d1b78-bad9-39ef-b702-36a8512f373e,SESCO,II.1.1,Chaco,AR-H,annual,2018,gas oil combustion consumption by freight transport,7.07952,TJ,N2O,3.9,kg/TJ,27.610127999999996,kg +a6bdae9c-0338-3385-b009-795ad3e7c7b3,SESCO,II.1.1,Chubut,AR-U,annual,2018,gas oil combustion consumption by freight transport,5.20128,TJ,CO2,74100.0,kg/TJ,385414.848,kg +17b8a06e-4590-3546-b21f-0663966d8213,SESCO,II.1.1,Chubut,AR-U,annual,2018,gas oil combustion consumption by freight transport,5.20128,TJ,CH4,3.9,kg/TJ,20.284992,kg +17b8a06e-4590-3546-b21f-0663966d8213,SESCO,II.1.1,Chubut,AR-U,annual,2018,gas oil combustion consumption by freight transport,5.20128,TJ,N2O,3.9,kg/TJ,20.284992,kg +16d6b23b-4a7c-3591-adf7-9a9d4a953f16,SESCO,II.1.1,Corrientes,AR-W,annual,2018,gas oil combustion consumption by freight transport,12.17244,TJ,CO2,74100.0,kg/TJ,901977.804,kg +742b44cd-e3c3-3965-a4d9-92687c250313,SESCO,II.1.1,Corrientes,AR-W,annual,2018,gas oil combustion consumption by freight transport,12.17244,TJ,CH4,3.9,kg/TJ,47.472516,kg +742b44cd-e3c3-3965-a4d9-92687c250313,SESCO,II.1.1,Corrientes,AR-W,annual,2018,gas oil combustion consumption by freight transport,12.17244,TJ,N2O,3.9,kg/TJ,47.472516,kg +b4df9389-31c3-39bb-a3b0-b3d9f9658d86,SESCO,II.1.1,Córdoba,AR-X,annual,2018,gas oil combustion consumption by freight transport,145.2024,TJ,CO2,74100.0,kg/TJ,10759497.840000002,kg +8223af5d-f200-36da-bcfc-29fe76156c21,SESCO,II.1.1,Córdoba,AR-X,annual,2018,gas oil combustion consumption by freight transport,145.2024,TJ,CH4,3.9,kg/TJ,566.28936,kg +8223af5d-f200-36da-bcfc-29fe76156c21,SESCO,II.1.1,Córdoba,AR-X,annual,2018,gas oil combustion consumption by freight transport,145.2024,TJ,N2O,3.9,kg/TJ,566.28936,kg +9ffdbce4-5d1e-3c81-b99a-96946aea78fb,SESCO,II.1.1,Entre Rios,AR-E,annual,2018,gas oil combustion consumption by freight transport,83.83452,TJ,CO2,74100.0,kg/TJ,6212137.932,kg +0ad76807-bdf8-3ca5-b361-661691cf3707,SESCO,II.1.1,Entre Rios,AR-E,annual,2018,gas oil combustion consumption by freight transport,83.83452,TJ,CH4,3.9,kg/TJ,326.95462799999996,kg +0ad76807-bdf8-3ca5-b361-661691cf3707,SESCO,II.1.1,Entre Rios,AR-E,annual,2018,gas oil combustion consumption by freight transport,83.83452,TJ,N2O,3.9,kg/TJ,326.95462799999996,kg +229ea2ac-e6fb-3a34-a824-5dcb870118f8,SESCO,II.1.1,Formosa,AR-P,annual,2018,gas oil combustion consumption by freight transport,1.6254,TJ,CO2,74100.0,kg/TJ,120442.14,kg +c9dfe182-f1c1-3250-b6cf-dbc0568adac4,SESCO,II.1.1,Formosa,AR-P,annual,2018,gas oil combustion consumption by freight transport,1.6254,TJ,CH4,3.9,kg/TJ,6.33906,kg +c9dfe182-f1c1-3250-b6cf-dbc0568adac4,SESCO,II.1.1,Formosa,AR-P,annual,2018,gas oil combustion consumption by freight transport,1.6254,TJ,N2O,3.9,kg/TJ,6.33906,kg +8bbe05e4-01ff-3622-91b0-f374a0892866,SESCO,II.1.1,Jujuy,AR-Y,annual,2018,gas oil combustion consumption by freight transport,1.58928,TJ,CO2,74100.0,kg/TJ,117765.648,kg +bda43028-c56c-3c33-ba2b-5161dc6cf374,SESCO,II.1.1,Jujuy,AR-Y,annual,2018,gas oil combustion consumption by freight transport,1.58928,TJ,CH4,3.9,kg/TJ,6.198192,kg +bda43028-c56c-3c33-ba2b-5161dc6cf374,SESCO,II.1.1,Jujuy,AR-Y,annual,2018,gas oil combustion consumption by freight transport,1.58928,TJ,N2O,3.9,kg/TJ,6.198192,kg +0a494c27-a079-3cfb-93d9-ccc1106a2fdb,SESCO,II.1.1,La Pampa,AR-L,annual,2018,gas oil combustion consumption by freight transport,3.86484,TJ,CO2,74100.0,kg/TJ,286384.64400000003,kg +895be83c-8205-399f-b314-6dffdddbdb03,SESCO,II.1.1,La Pampa,AR-L,annual,2018,gas oil combustion consumption by freight transport,3.86484,TJ,CH4,3.9,kg/TJ,15.072875999999999,kg +895be83c-8205-399f-b314-6dffdddbdb03,SESCO,II.1.1,La Pampa,AR-L,annual,2018,gas oil combustion consumption by freight transport,3.86484,TJ,N2O,3.9,kg/TJ,15.072875999999999,kg +c6b7eb5d-0966-337f-a456-944f6e7dbbcd,SESCO,II.1.1,La Rioja,AR-F,annual,2018,gas oil combustion consumption by freight transport,1.5531599999999999,TJ,CO2,74100.0,kg/TJ,115089.15599999999,kg +95efcec2-a892-3636-813f-edc556a136ff,SESCO,II.1.1,La Rioja,AR-F,annual,2018,gas oil combustion consumption by freight transport,1.5531599999999999,TJ,CH4,3.9,kg/TJ,6.0573239999999995,kg +95efcec2-a892-3636-813f-edc556a136ff,SESCO,II.1.1,La Rioja,AR-F,annual,2018,gas oil combustion consumption by freight transport,1.5531599999999999,TJ,N2O,3.9,kg/TJ,6.0573239999999995,kg +620ffbc6-67c2-38d7-9d16-793178bd88e9,SESCO,II.1.1,Mendoza,AR-M,annual,2018,gas oil combustion consumption by freight transport,14.05068,TJ,CO2,74100.0,kg/TJ,1041155.388,kg +faa62325-a6a1-3dfe-b079-bb14b23594d2,SESCO,II.1.1,Mendoza,AR-M,annual,2018,gas oil combustion consumption by freight transport,14.05068,TJ,CH4,3.9,kg/TJ,54.797652,kg +faa62325-a6a1-3dfe-b079-bb14b23594d2,SESCO,II.1.1,Mendoza,AR-M,annual,2018,gas oil combustion consumption by freight transport,14.05068,TJ,N2O,3.9,kg/TJ,54.797652,kg +658837f7-48d2-33ec-886a-b0dcb5eae512,SESCO,II.1.1,Misiones,AR-N,annual,2018,gas oil combustion consumption by freight transport,18.71016,TJ,CO2,74100.0,kg/TJ,1386422.856,kg +cfd9735f-502d-3977-b589-56f0c7fb85eb,SESCO,II.1.1,Misiones,AR-N,annual,2018,gas oil combustion consumption by freight transport,18.71016,TJ,CH4,3.9,kg/TJ,72.969624,kg +cfd9735f-502d-3977-b589-56f0c7fb85eb,SESCO,II.1.1,Misiones,AR-N,annual,2018,gas oil combustion consumption by freight transport,18.71016,TJ,N2O,3.9,kg/TJ,72.969624,kg +e30631ac-6337-3a36-99d2-d9263d87d364,SESCO,II.1.1,Neuquén,AR-Q,annual,2018,gas oil combustion consumption by freight transport,0.18059999999999998,TJ,CO2,74100.0,kg/TJ,13382.46,kg +f824b395-8ea3-337f-a5fe-790ab36c3acf,SESCO,II.1.1,Neuquén,AR-Q,annual,2018,gas oil combustion consumption by freight transport,0.18059999999999998,TJ,CH4,3.9,kg/TJ,0.70434,kg +f824b395-8ea3-337f-a5fe-790ab36c3acf,SESCO,II.1.1,Neuquén,AR-Q,annual,2018,gas oil combustion consumption by freight transport,0.18059999999999998,TJ,N2O,3.9,kg/TJ,0.70434,kg +6259ebb4-3763-351d-b42d-4fbef6b4bc11,SESCO,II.1.1,Rio Negro,AR-R,annual,2018,gas oil combustion consumption by freight transport,28.42644,TJ,CO2,74100.0,kg/TJ,2106399.204,kg +2802ce3f-0c3a-3ca7-89c5-16dc220ae8d6,SESCO,II.1.1,Rio Negro,AR-R,annual,2018,gas oil combustion consumption by freight transport,28.42644,TJ,CH4,3.9,kg/TJ,110.86311599999999,kg +2802ce3f-0c3a-3ca7-89c5-16dc220ae8d6,SESCO,II.1.1,Rio Negro,AR-R,annual,2018,gas oil combustion consumption by freight transport,28.42644,TJ,N2O,3.9,kg/TJ,110.86311599999999,kg +9dd3dc4b-84d9-37fb-9240-89de74d5cbee,SESCO,II.1.1,Salta,AR-A,annual,2018,gas oil combustion consumption by freight transport,11.34168,TJ,CO2,74100.0,kg/TJ,840418.488,kg +3fab6c58-2f88-3be7-a47c-789d7fe2bcbc,SESCO,II.1.1,Salta,AR-A,annual,2018,gas oil combustion consumption by freight transport,11.34168,TJ,CH4,3.9,kg/TJ,44.232552,kg +3fab6c58-2f88-3be7-a47c-789d7fe2bcbc,SESCO,II.1.1,Salta,AR-A,annual,2018,gas oil combustion consumption by freight transport,11.34168,TJ,N2O,3.9,kg/TJ,44.232552,kg +ad6917f5-9f90-3146-b019-43ae7b59613f,SESCO,II.1.1,San Juan,AR-J,annual,2018,gas oil combustion consumption by freight transport,2.31168,TJ,CO2,74100.0,kg/TJ,171295.48799999998,kg +a1034353-5c1b-35a7-a446-99d91434a8d7,SESCO,II.1.1,San Juan,AR-J,annual,2018,gas oil combustion consumption by freight transport,2.31168,TJ,CH4,3.9,kg/TJ,9.015552,kg +a1034353-5c1b-35a7-a446-99d91434a8d7,SESCO,II.1.1,San Juan,AR-J,annual,2018,gas oil combustion consumption by freight transport,2.31168,TJ,N2O,3.9,kg/TJ,9.015552,kg +688e90e9-874e-360b-a08b-102a093ed518,SESCO,II.1.1,San Luis,AR-D,annual,2018,gas oil combustion consumption by freight transport,15.24264,TJ,CO2,74100.0,kg/TJ,1129479.624,kg +b74cd50f-5f9f-3f67-afae-8e7845777291,SESCO,II.1.1,San Luis,AR-D,annual,2018,gas oil combustion consumption by freight transport,15.24264,TJ,CH4,3.9,kg/TJ,59.446296,kg +b74cd50f-5f9f-3f67-afae-8e7845777291,SESCO,II.1.1,San Luis,AR-D,annual,2018,gas oil combustion consumption by freight transport,15.24264,TJ,N2O,3.9,kg/TJ,59.446296,kg +5f970834-9755-38cf-b0f4-64bcd89f5af5,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,gas oil combustion consumption by freight transport,187.49892,TJ,CO2,74100.0,kg/TJ,13893669.972,kg +9d2884db-be7f-38e8-a946-4c1893403547,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,gas oil combustion consumption by freight transport,187.49892,TJ,CH4,3.9,kg/TJ,731.245788,kg +9d2884db-be7f-38e8-a946-4c1893403547,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,gas oil combustion consumption by freight transport,187.49892,TJ,N2O,3.9,kg/TJ,731.245788,kg +bbe42665-82e3-3ea6-9a12-3b3138399940,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2018,gas oil combustion consumption by freight transport,12.31692,TJ,CO2,74100.0,kg/TJ,912683.772,kg +217057de-b12a-3530-8e35-7945c2cb1c75,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2018,gas oil combustion consumption by freight transport,12.31692,TJ,CH4,3.9,kg/TJ,48.035987999999996,kg +217057de-b12a-3530-8e35-7945c2cb1c75,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2018,gas oil combustion consumption by freight transport,12.31692,TJ,N2O,3.9,kg/TJ,48.035987999999996,kg +767c2e44-8146-3aae-830c-229491064951,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2018,gas oil combustion consumption by freight transport,0.03612,TJ,CO2,74100.0,kg/TJ,2676.4919999999997,kg +a8914733-0b94-3d52-b39a-ea4e29ecfc53,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2018,gas oil combustion consumption by freight transport,0.03612,TJ,CH4,3.9,kg/TJ,0.140868,kg +a8914733-0b94-3d52-b39a-ea4e29ecfc53,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2018,gas oil combustion consumption by freight transport,0.03612,TJ,N2O,3.9,kg/TJ,0.140868,kg +fb7105e5-abdd-35a9-8c93-11ebf7a0f5a8,SESCO,II.1.1,Tucuman,AR-T,annual,2018,gas oil combustion consumption by freight transport,10.51092,TJ,CO2,74100.0,kg/TJ,778859.172,kg +4a41fa51-34ce-30b6-82e7-0819a0af5e75,SESCO,II.1.1,Tucuman,AR-T,annual,2018,gas oil combustion consumption by freight transport,10.51092,TJ,CH4,3.9,kg/TJ,40.992588,kg +4a41fa51-34ce-30b6-82e7-0819a0af5e75,SESCO,II.1.1,Tucuman,AR-T,annual,2018,gas oil combustion consumption by freight transport,10.51092,TJ,N2O,3.9,kg/TJ,40.992588,kg +e4ee4c7d-78fb-384a-973c-74a45367f27b,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,gas oil combustion consumption by freight transport,78.77772,TJ,CO2,74100.0,kg/TJ,5837429.052,kg +86f5e72e-1c5a-35de-a762-ffd8ec62c0af,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,gas oil combustion consumption by freight transport,78.77772,TJ,CH4,3.9,kg/TJ,307.233108,kg +86f5e72e-1c5a-35de-a762-ffd8ec62c0af,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,gas oil combustion consumption by freight transport,78.77772,TJ,N2O,3.9,kg/TJ,307.233108,kg +5b2d1c43-cbee-3430-b9f4-f811236e4464,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,gas oil combustion consumption by freight transport,22.9362,TJ,CO2,74100.0,kg/TJ,1699572.42,kg +25b8c0f4-775a-3555-a0c8-eaeac3cbc465,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,gas oil combustion consumption by freight transport,22.9362,TJ,CH4,3.9,kg/TJ,89.45118,kg +25b8c0f4-775a-3555-a0c8-eaeac3cbc465,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,gas oil combustion consumption by freight transport,22.9362,TJ,N2O,3.9,kg/TJ,89.45118,kg +dde2bc20-2d66-3919-8f37-0f9a02485b8f,SESCO,II.1.1,Catamarca,AR-K,annual,2018,gas oil combustion consumption by freight transport,0.18059999999999998,TJ,CO2,74100.0,kg/TJ,13382.46,kg +6c8a7c1e-8bc4-3ad4-a8fe-63372738898f,SESCO,II.1.1,Catamarca,AR-K,annual,2018,gas oil combustion consumption by freight transport,0.18059999999999998,TJ,CH4,3.9,kg/TJ,0.70434,kg +6c8a7c1e-8bc4-3ad4-a8fe-63372738898f,SESCO,II.1.1,Catamarca,AR-K,annual,2018,gas oil combustion consumption by freight transport,0.18059999999999998,TJ,N2O,3.9,kg/TJ,0.70434,kg +9fec9256-e6de-33a3-9299-24c0d9147558,SESCO,II.1.1,Chaco,AR-H,annual,2018,gas oil combustion consumption by freight transport,0.07224,TJ,CO2,74100.0,kg/TJ,5352.9839999999995,kg +7479c1e2-0224-32cb-aa47-6eb9710dd581,SESCO,II.1.1,Chaco,AR-H,annual,2018,gas oil combustion consumption by freight transport,0.07224,TJ,CH4,3.9,kg/TJ,0.281736,kg +7479c1e2-0224-32cb-aa47-6eb9710dd581,SESCO,II.1.1,Chaco,AR-H,annual,2018,gas oil combustion consumption by freight transport,0.07224,TJ,N2O,3.9,kg/TJ,0.281736,kg +dbc1b242-10fd-34d2-817e-c3e09da91ad3,SESCO,II.1.1,Chubut,AR-U,annual,2018,gas oil combustion consumption by freight transport,0.61404,TJ,CO2,74100.0,kg/TJ,45500.364,kg +031f9293-7ff4-3363-8445-ea2f5c31dad3,SESCO,II.1.1,Chubut,AR-U,annual,2018,gas oil combustion consumption by freight transport,0.61404,TJ,CH4,3.9,kg/TJ,2.394756,kg +031f9293-7ff4-3363-8445-ea2f5c31dad3,SESCO,II.1.1,Chubut,AR-U,annual,2018,gas oil combustion consumption by freight transport,0.61404,TJ,N2O,3.9,kg/TJ,2.394756,kg +4dfe56d8-4542-3af8-b0f2-4266bc96857b,SESCO,II.1.1,Corrientes,AR-W,annual,2018,gas oil combustion consumption by freight transport,1.22808,TJ,CO2,74100.0,kg/TJ,91000.728,kg +095ff872-3b63-3c3a-a920-8c49bbe96308,SESCO,II.1.1,Corrientes,AR-W,annual,2018,gas oil combustion consumption by freight transport,1.22808,TJ,CH4,3.9,kg/TJ,4.789512,kg +095ff872-3b63-3c3a-a920-8c49bbe96308,SESCO,II.1.1,Corrientes,AR-W,annual,2018,gas oil combustion consumption by freight transport,1.22808,TJ,N2O,3.9,kg/TJ,4.789512,kg +0a54095a-323e-328e-ab47-bbc914e4cc1f,SESCO,II.1.1,Córdoba,AR-X,annual,2018,gas oil combustion consumption by freight transport,6.42936,TJ,CO2,74100.0,kg/TJ,476415.576,kg +0c2973c8-ada2-3f6e-bec3-7f1faed852c9,SESCO,II.1.1,Córdoba,AR-X,annual,2018,gas oil combustion consumption by freight transport,6.42936,TJ,CH4,3.9,kg/TJ,25.074504,kg +0c2973c8-ada2-3f6e-bec3-7f1faed852c9,SESCO,II.1.1,Córdoba,AR-X,annual,2018,gas oil combustion consumption by freight transport,6.42936,TJ,N2O,3.9,kg/TJ,25.074504,kg +aee36da4-942f-3cd6-96f3-2007c6714a4a,SESCO,II.1.1,Entre Rios,AR-E,annual,2018,gas oil combustion consumption by freight transport,2.85348,TJ,CO2,74100.0,kg/TJ,211442.868,kg +0ca0c03e-5ef7-3fc2-aeac-ff5ee9a3a5fe,SESCO,II.1.1,Entre Rios,AR-E,annual,2018,gas oil combustion consumption by freight transport,2.85348,TJ,CH4,3.9,kg/TJ,11.128571999999998,kg +0ca0c03e-5ef7-3fc2-aeac-ff5ee9a3a5fe,SESCO,II.1.1,Entre Rios,AR-E,annual,2018,gas oil combustion consumption by freight transport,2.85348,TJ,N2O,3.9,kg/TJ,11.128571999999998,kg +3266a5f0-7e94-35e3-a244-85b6bdee65bf,SESCO,II.1.1,Formosa,AR-P,annual,2018,gas oil combustion consumption by freight transport,0.14448,TJ,CO2,74100.0,kg/TJ,10705.967999999999,kg +b850ec85-6d63-361b-a71b-bd582ee6fb00,SESCO,II.1.1,Formosa,AR-P,annual,2018,gas oil combustion consumption by freight transport,0.14448,TJ,CH4,3.9,kg/TJ,0.563472,kg +b850ec85-6d63-361b-a71b-bd582ee6fb00,SESCO,II.1.1,Formosa,AR-P,annual,2018,gas oil combustion consumption by freight transport,0.14448,TJ,N2O,3.9,kg/TJ,0.563472,kg +5ba0f049-0653-35a9-8d48-7459ba7d4c3d,SESCO,II.1.1,La Pampa,AR-L,annual,2018,gas oil combustion consumption by freight transport,0.28896,TJ,CO2,74100.0,kg/TJ,21411.935999999998,kg +5dc698ce-7188-38fe-8b00-db5ec8b4c379,SESCO,II.1.1,La Pampa,AR-L,annual,2018,gas oil combustion consumption by freight transport,0.28896,TJ,CH4,3.9,kg/TJ,1.126944,kg +5dc698ce-7188-38fe-8b00-db5ec8b4c379,SESCO,II.1.1,La Pampa,AR-L,annual,2018,gas oil combustion consumption by freight transport,0.28896,TJ,N2O,3.9,kg/TJ,1.126944,kg +f5e747bb-eea1-3d84-9913-63025b9d770a,SESCO,II.1.1,La Rioja,AR-F,annual,2018,gas oil combustion consumption by freight transport,0.03612,TJ,CO2,74100.0,kg/TJ,2676.4919999999997,kg +f389654d-6500-34da-9fe1-077ab51887a6,SESCO,II.1.1,La Rioja,AR-F,annual,2018,gas oil combustion consumption by freight transport,0.03612,TJ,CH4,3.9,kg/TJ,0.140868,kg +f389654d-6500-34da-9fe1-077ab51887a6,SESCO,II.1.1,La Rioja,AR-F,annual,2018,gas oil combustion consumption by freight transport,0.03612,TJ,N2O,3.9,kg/TJ,0.140868,kg +be8e310f-e204-3186-8102-6945f1d140dc,SESCO,II.1.1,Mendoza,AR-M,annual,2018,gas oil combustion consumption by freight transport,0.32508,TJ,CO2,74100.0,kg/TJ,24088.428,kg +ae41c496-c38b-3bb8-9e48-da8c8c8747ea,SESCO,II.1.1,Mendoza,AR-M,annual,2018,gas oil combustion consumption by freight transport,0.32508,TJ,CH4,3.9,kg/TJ,1.267812,kg +ae41c496-c38b-3bb8-9e48-da8c8c8747ea,SESCO,II.1.1,Mendoza,AR-M,annual,2018,gas oil combustion consumption by freight transport,0.32508,TJ,N2O,3.9,kg/TJ,1.267812,kg +d392ec4a-5f39-38cb-96e6-a335883abcda,SESCO,II.1.1,Misiones,AR-N,annual,2018,gas oil combustion consumption by freight transport,0.18059999999999998,TJ,CO2,74100.0,kg/TJ,13382.46,kg +d3d01c5c-38e0-3811-b330-8032f91f2e54,SESCO,II.1.1,Misiones,AR-N,annual,2018,gas oil combustion consumption by freight transport,0.18059999999999998,TJ,CH4,3.9,kg/TJ,0.70434,kg +d3d01c5c-38e0-3811-b330-8032f91f2e54,SESCO,II.1.1,Misiones,AR-N,annual,2018,gas oil combustion consumption by freight transport,0.18059999999999998,TJ,N2O,3.9,kg/TJ,0.70434,kg +72f79e4f-cc41-3c96-90ab-f636da9fd693,SESCO,II.1.1,Neuquén,AR-Q,annual,2018,gas oil combustion consumption by freight transport,0.03612,TJ,CO2,74100.0,kg/TJ,2676.4919999999997,kg +a2c1117f-32e8-359f-bc8f-87f84ddd7b5b,SESCO,II.1.1,Neuquén,AR-Q,annual,2018,gas oil combustion consumption by freight transport,0.03612,TJ,CH4,3.9,kg/TJ,0.140868,kg +a2c1117f-32e8-359f-bc8f-87f84ddd7b5b,SESCO,II.1.1,Neuquén,AR-Q,annual,2018,gas oil combustion consumption by freight transport,0.03612,TJ,N2O,3.9,kg/TJ,0.140868,kg +ecf942b6-0681-373f-b96a-bef6b9083540,SESCO,II.1.1,Rio Negro,AR-R,annual,2018,gas oil combustion consumption by freight transport,12.8226,TJ,CO2,74100.0,kg/TJ,950154.6599999999,kg +121881c6-2e39-346e-ae14-7693800d2756,SESCO,II.1.1,Rio Negro,AR-R,annual,2018,gas oil combustion consumption by freight transport,12.8226,TJ,CH4,3.9,kg/TJ,50.00814,kg +121881c6-2e39-346e-ae14-7693800d2756,SESCO,II.1.1,Rio Negro,AR-R,annual,2018,gas oil combustion consumption by freight transport,12.8226,TJ,N2O,3.9,kg/TJ,50.00814,kg +53ee0eef-d411-34c8-b139-89b5187ff052,SESCO,II.1.1,Salta,AR-A,annual,2018,gas oil combustion consumption by freight transport,0.03612,TJ,CO2,74100.0,kg/TJ,2676.4919999999997,kg +79a9c050-79d6-37f1-9982-1fee1612bbcb,SESCO,II.1.1,Salta,AR-A,annual,2018,gas oil combustion consumption by freight transport,0.03612,TJ,CH4,3.9,kg/TJ,0.140868,kg +79a9c050-79d6-37f1-9982-1fee1612bbcb,SESCO,II.1.1,Salta,AR-A,annual,2018,gas oil combustion consumption by freight transport,0.03612,TJ,N2O,3.9,kg/TJ,0.140868,kg +18d7dce6-946d-3483-82e0-5a34ed632c64,SESCO,II.1.1,San Juan,AR-J,annual,2018,gas oil combustion consumption by freight transport,0.32508,TJ,CO2,74100.0,kg/TJ,24088.428,kg +e4c8f839-6da9-348e-bf41-4894afb33e34,SESCO,II.1.1,San Juan,AR-J,annual,2018,gas oil combustion consumption by freight transport,0.32508,TJ,CH4,3.9,kg/TJ,1.267812,kg +e4c8f839-6da9-348e-bf41-4894afb33e34,SESCO,II.1.1,San Juan,AR-J,annual,2018,gas oil combustion consumption by freight transport,0.32508,TJ,N2O,3.9,kg/TJ,1.267812,kg +2360e819-0bcd-3ad8-a72a-b02e983a3688,SESCO,II.1.1,San Luis,AR-D,annual,2018,gas oil combustion consumption by freight transport,0.46956,TJ,CO2,74100.0,kg/TJ,34794.396,kg +c6eeb74a-ac58-3854-8e49-e915c07cbd94,SESCO,II.1.1,San Luis,AR-D,annual,2018,gas oil combustion consumption by freight transport,0.46956,TJ,CH4,3.9,kg/TJ,1.831284,kg +c6eeb74a-ac58-3854-8e49-e915c07cbd94,SESCO,II.1.1,San Luis,AR-D,annual,2018,gas oil combustion consumption by freight transport,0.46956,TJ,N2O,3.9,kg/TJ,1.831284,kg +be97a2b0-7ec3-3805-859f-dd317e7dc93c,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,gas oil combustion consumption by freight transport,50.026199999999996,TJ,CO2,74100.0,kg/TJ,3706941.4199999995,kg +ee52d6be-49bf-3070-95f3-cb774b422600,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,gas oil combustion consumption by freight transport,50.026199999999996,TJ,CH4,3.9,kg/TJ,195.10217999999998,kg +ee52d6be-49bf-3070-95f3-cb774b422600,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,gas oil combustion consumption by freight transport,50.026199999999996,TJ,N2O,3.9,kg/TJ,195.10217999999998,kg +395d08a8-f1e6-34fb-a86f-458c9f5d5ff0,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2018,gas oil combustion consumption by freight transport,1.01136,TJ,CO2,74100.0,kg/TJ,74941.776,kg +71e54b13-f611-3002-a968-277422bea047,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2018,gas oil combustion consumption by freight transport,1.01136,TJ,CH4,3.9,kg/TJ,3.9443040000000003,kg +71e54b13-f611-3002-a968-277422bea047,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2018,gas oil combustion consumption by freight transport,1.01136,TJ,N2O,3.9,kg/TJ,3.9443040000000003,kg +9538ea72-cb1a-31e8-a3c1-d6e09531b470,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2018,gas oil combustion consumption by freight transport,0.07224,TJ,CO2,74100.0,kg/TJ,5352.9839999999995,kg +bac7c95d-2ce8-3ad1-87f4-8e0804123eab,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2018,gas oil combustion consumption by freight transport,0.07224,TJ,CH4,3.9,kg/TJ,0.281736,kg +bac7c95d-2ce8-3ad1-87f4-8e0804123eab,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2018,gas oil combustion consumption by freight transport,0.07224,TJ,N2O,3.9,kg/TJ,0.281736,kg +f0415f61-a3cc-3da0-bad0-c1fc1f561c41,SESCO,II.1.1,Tucuman,AR-T,annual,2018,gas oil combustion consumption by freight transport,0.10836,TJ,CO2,74100.0,kg/TJ,8029.476,kg +5a8be346-8e85-32df-b000-79159c5b6842,SESCO,II.1.1,Tucuman,AR-T,annual,2018,gas oil combustion consumption by freight transport,0.10836,TJ,CH4,3.9,kg/TJ,0.422604,kg +5a8be346-8e85-32df-b000-79159c5b6842,SESCO,II.1.1,Tucuman,AR-T,annual,2018,gas oil combustion consumption by freight transport,0.10836,TJ,N2O,3.9,kg/TJ,0.422604,kg +debdcfe2-08a8-3e10-abac-a2580c5bbf6b,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,gas oil combustion consumption by public passenger transport,244.74912,TJ,CO2,74100.0,kg/TJ,18135909.792,kg +df232c0e-8f8a-3aed-9808-8519a095eb05,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,gas oil combustion consumption by public passenger transport,244.74912,TJ,CH4,3.9,kg/TJ,954.521568,kg +df232c0e-8f8a-3aed-9808-8519a095eb05,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,gas oil combustion consumption by public passenger transport,244.74912,TJ,N2O,3.9,kg/TJ,954.521568,kg +2e1d5bd2-1097-3192-bc39-fa732e2186bd,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,gas oil combustion consumption by public passenger transport,126.70896,TJ,CO2,74100.0,kg/TJ,9389133.936,kg +c5708678-ef15-3807-8936-b4e8d4bb16b3,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,gas oil combustion consumption by public passenger transport,126.70896,TJ,CH4,3.9,kg/TJ,494.164944,kg +c5708678-ef15-3807-8936-b4e8d4bb16b3,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,gas oil combustion consumption by public passenger transport,126.70896,TJ,N2O,3.9,kg/TJ,494.164944,kg +2caad93c-1601-3750-aada-d58a6cf14cd4,SESCO,II.1.1,Chaco,AR-H,annual,2018,gas oil combustion consumption by public passenger transport,8.16312,TJ,CO2,74100.0,kg/TJ,604887.1919999999,kg +560da30b-0e33-33d6-b718-1e8da4a27e84,SESCO,II.1.1,Chaco,AR-H,annual,2018,gas oil combustion consumption by public passenger transport,8.16312,TJ,CH4,3.9,kg/TJ,31.836167999999997,kg +560da30b-0e33-33d6-b718-1e8da4a27e84,SESCO,II.1.1,Chaco,AR-H,annual,2018,gas oil combustion consumption by public passenger transport,8.16312,TJ,N2O,3.9,kg/TJ,31.836167999999997,kg +c6c241ed-a5c2-39f7-8fdb-840215b1d1a7,SESCO,II.1.1,Chubut,AR-U,annual,2018,gas oil combustion consumption by public passenger transport,6.24876,TJ,CO2,74100.0,kg/TJ,463033.116,kg +d2dee2c1-f023-3369-af2e-3ed87c125bd8,SESCO,II.1.1,Chubut,AR-U,annual,2018,gas oil combustion consumption by public passenger transport,6.24876,TJ,CH4,3.9,kg/TJ,24.370164,kg +d2dee2c1-f023-3369-af2e-3ed87c125bd8,SESCO,II.1.1,Chubut,AR-U,annual,2018,gas oil combustion consumption by public passenger transport,6.24876,TJ,N2O,3.9,kg/TJ,24.370164,kg +cb5f3107-29ae-345a-87c8-ead06de6f3a1,SESCO,II.1.1,Corrientes,AR-W,annual,2018,gas oil combustion consumption by public passenger transport,0.39732,TJ,CO2,74100.0,kg/TJ,29441.412,kg +ce536de0-e32d-3279-afe4-6a9a9bff6bf3,SESCO,II.1.1,Corrientes,AR-W,annual,2018,gas oil combustion consumption by public passenger transport,0.39732,TJ,CH4,3.9,kg/TJ,1.549548,kg +ce536de0-e32d-3279-afe4-6a9a9bff6bf3,SESCO,II.1.1,Corrientes,AR-W,annual,2018,gas oil combustion consumption by public passenger transport,0.39732,TJ,N2O,3.9,kg/TJ,1.549548,kg +f4f63ae2-709b-3748-a479-69d215cbda2a,SESCO,II.1.1,Córdoba,AR-X,annual,2018,gas oil combustion consumption by public passenger transport,18.52956,TJ,CO2,74100.0,kg/TJ,1373040.396,kg +50432436-ca0d-3533-be08-bb40a2f63c39,SESCO,II.1.1,Córdoba,AR-X,annual,2018,gas oil combustion consumption by public passenger transport,18.52956,TJ,CH4,3.9,kg/TJ,72.265284,kg +50432436-ca0d-3533-be08-bb40a2f63c39,SESCO,II.1.1,Córdoba,AR-X,annual,2018,gas oil combustion consumption by public passenger transport,18.52956,TJ,N2O,3.9,kg/TJ,72.265284,kg +b79fa94e-bf2c-3f25-809c-2c57c4890e3e,SESCO,II.1.1,Entre Rios,AR-E,annual,2018,gas oil combustion consumption by public passenger transport,10.22196,TJ,CO2,74100.0,kg/TJ,757447.2359999999,kg +80044c5a-d081-3dd3-b358-3c54619e6349,SESCO,II.1.1,Entre Rios,AR-E,annual,2018,gas oil combustion consumption by public passenger transport,10.22196,TJ,CH4,3.9,kg/TJ,39.865643999999996,kg +80044c5a-d081-3dd3-b358-3c54619e6349,SESCO,II.1.1,Entre Rios,AR-E,annual,2018,gas oil combustion consumption by public passenger transport,10.22196,TJ,N2O,3.9,kg/TJ,39.865643999999996,kg +b054b9b4-c32b-3710-a90a-bb14ab31ee8b,SESCO,II.1.1,La Pampa,AR-L,annual,2018,gas oil combustion consumption by public passenger transport,1.84212,TJ,CO2,74100.0,kg/TJ,136501.092,kg +b2582760-5efc-3359-b56d-42a1247fc63a,SESCO,II.1.1,La Pampa,AR-L,annual,2018,gas oil combustion consumption by public passenger transport,1.84212,TJ,CH4,3.9,kg/TJ,7.184267999999999,kg +b2582760-5efc-3359-b56d-42a1247fc63a,SESCO,II.1.1,La Pampa,AR-L,annual,2018,gas oil combustion consumption by public passenger transport,1.84212,TJ,N2O,3.9,kg/TJ,7.184267999999999,kg +be8e310f-e204-3186-8102-6945f1d140dc,SESCO,II.1.1,Mendoza,AR-M,annual,2018,gas oil combustion consumption by public passenger transport,0.32508,TJ,CO2,74100.0,kg/TJ,24088.428,kg +ae41c496-c38b-3bb8-9e48-da8c8c8747ea,SESCO,II.1.1,Mendoza,AR-M,annual,2018,gas oil combustion consumption by public passenger transport,0.32508,TJ,CH4,3.9,kg/TJ,1.267812,kg +ae41c496-c38b-3bb8-9e48-da8c8c8747ea,SESCO,II.1.1,Mendoza,AR-M,annual,2018,gas oil combustion consumption by public passenger transport,0.32508,TJ,N2O,3.9,kg/TJ,1.267812,kg +967730d1-5cb7-3911-acd9-94d913ee5bc5,SESCO,II.1.1,Misiones,AR-N,annual,2018,gas oil combustion consumption by public passenger transport,11.88348,TJ,CO2,74100.0,kg/TJ,880565.868,kg +b63bedc2-4c7b-3c9c-b2b0-02dad68c214e,SESCO,II.1.1,Misiones,AR-N,annual,2018,gas oil combustion consumption by public passenger transport,11.88348,TJ,CH4,3.9,kg/TJ,46.345572000000004,kg +b63bedc2-4c7b-3c9c-b2b0-02dad68c214e,SESCO,II.1.1,Misiones,AR-N,annual,2018,gas oil combustion consumption by public passenger transport,11.88348,TJ,N2O,3.9,kg/TJ,46.345572000000004,kg +61ab90f3-7e96-3afe-aac5-5471c3f2449f,SESCO,II.1.1,Neuquén,AR-Q,annual,2018,gas oil combustion consumption by public passenger transport,1.87824,TJ,CO2,74100.0,kg/TJ,139177.584,kg +9ba65473-1584-3cc5-adbf-4446befba27a,SESCO,II.1.1,Neuquén,AR-Q,annual,2018,gas oil combustion consumption by public passenger transport,1.87824,TJ,CH4,3.9,kg/TJ,7.325136,kg +9ba65473-1584-3cc5-adbf-4446befba27a,SESCO,II.1.1,Neuquén,AR-Q,annual,2018,gas oil combustion consumption by public passenger transport,1.87824,TJ,N2O,3.9,kg/TJ,7.325136,kg +71fcc04a-dfa5-3c83-981a-c14f9e929c6e,SESCO,II.1.1,Rio Negro,AR-R,annual,2018,gas oil combustion consumption by public passenger transport,9.71628,TJ,CO2,74100.0,kg/TJ,719976.348,kg +fb9794d1-e8a4-3dea-84ad-cc1bf6365cc9,SESCO,II.1.1,Rio Negro,AR-R,annual,2018,gas oil combustion consumption by public passenger transport,9.71628,TJ,CH4,3.9,kg/TJ,37.893491999999995,kg +fb9794d1-e8a4-3dea-84ad-cc1bf6365cc9,SESCO,II.1.1,Rio Negro,AR-R,annual,2018,gas oil combustion consumption by public passenger transport,9.71628,TJ,N2O,3.9,kg/TJ,37.893491999999995,kg +53ee0eef-d411-34c8-b139-89b5187ff052,SESCO,II.1.1,Salta,AR-A,annual,2018,gas oil combustion consumption by public passenger transport,0.03612,TJ,CO2,74100.0,kg/TJ,2676.4919999999997,kg +79a9c050-79d6-37f1-9982-1fee1612bbcb,SESCO,II.1.1,Salta,AR-A,annual,2018,gas oil combustion consumption by public passenger transport,0.03612,TJ,CH4,3.9,kg/TJ,0.140868,kg +79a9c050-79d6-37f1-9982-1fee1612bbcb,SESCO,II.1.1,Salta,AR-A,annual,2018,gas oil combustion consumption by public passenger transport,0.03612,TJ,N2O,3.9,kg/TJ,0.140868,kg +49241a0a-c4c1-38ec-9eb5-884cbc2f0133,SESCO,II.1.1,San Luis,AR-D,annual,2018,gas oil combustion consumption by public passenger transport,0.07224,TJ,CO2,74100.0,kg/TJ,5352.9839999999995,kg +ce3c8f8e-dba6-3efa-8c07-9095e2ad535d,SESCO,II.1.1,San Luis,AR-D,annual,2018,gas oil combustion consumption by public passenger transport,0.07224,TJ,CH4,3.9,kg/TJ,0.281736,kg +ce3c8f8e-dba6-3efa-8c07-9095e2ad535d,SESCO,II.1.1,San Luis,AR-D,annual,2018,gas oil combustion consumption by public passenger transport,0.07224,TJ,N2O,3.9,kg/TJ,0.281736,kg +90805535-c066-3a24-a4f4-e9039d5ebe98,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,gas oil combustion consumption by public passenger transport,66.2802,TJ,CO2,74100.0,kg/TJ,4911362.819999999,kg +244cbe5c-309c-3592-a04c-435381d133c2,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,gas oil combustion consumption by public passenger transport,66.2802,TJ,CH4,3.9,kg/TJ,258.49278,kg +244cbe5c-309c-3592-a04c-435381d133c2,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,gas oil combustion consumption by public passenger transport,66.2802,TJ,N2O,3.9,kg/TJ,258.49278,kg +02b10c80-f015-39cb-aa5e-0fa5fb8fab17,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2018,gas oil combustion consumption by public passenger transport,0.07224,TJ,CO2,74100.0,kg/TJ,5352.9839999999995,kg +e5567771-8320-33a5-9f80-456ff2ef92f1,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2018,gas oil combustion consumption by public passenger transport,0.07224,TJ,CH4,3.9,kg/TJ,0.281736,kg +e5567771-8320-33a5-9f80-456ff2ef92f1,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2018,gas oil combustion consumption by public passenger transport,0.07224,TJ,N2O,3.9,kg/TJ,0.281736,kg +bf59a6dc-c11c-3eb5-b516-4e7236c510a1,SESCO,II.1.1,Tucuman,AR-T,annual,2018,gas oil combustion consumption by public passenger transport,51.2904,TJ,CO2,74100.0,kg/TJ,3800618.6399999997,kg +e5ef501f-8b2b-3c87-8e75-33e422f5b636,SESCO,II.1.1,Tucuman,AR-T,annual,2018,gas oil combustion consumption by public passenger transport,51.2904,TJ,CH4,3.9,kg/TJ,200.03256,kg +e5ef501f-8b2b-3c87-8e75-33e422f5b636,SESCO,II.1.1,Tucuman,AR-T,annual,2018,gas oil combustion consumption by public passenger transport,51.2904,TJ,N2O,3.9,kg/TJ,200.03256,kg +39216de8-6105-3e51-bc0e-cca184fc40fe,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,gas oil combustion consumption by public passenger transport,44.39148,TJ,CO2,74100.0,kg/TJ,3289408.668,kg +63b86839-cb40-3edf-9f83-e54bea5f5109,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,gas oil combustion consumption by public passenger transport,44.39148,TJ,CH4,3.9,kg/TJ,173.126772,kg +63b86839-cb40-3edf-9f83-e54bea5f5109,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,gas oil combustion consumption by public passenger transport,44.39148,TJ,N2O,3.9,kg/TJ,173.126772,kg +410393e0-9d75-3196-baeb-7b2b55924cef,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,gas oil combustion consumption by public passenger transport,9.13836,TJ,CO2,74100.0,kg/TJ,677152.476,kg +c46d8fec-2dce-34a4-a2f7-d1379aead8b6,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,gas oil combustion consumption by public passenger transport,9.13836,TJ,CH4,3.9,kg/TJ,35.639604,kg +c46d8fec-2dce-34a4-a2f7-d1379aead8b6,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,gas oil combustion consumption by public passenger transport,9.13836,TJ,N2O,3.9,kg/TJ,35.639604,kg +a9dc33d8-0727-3032-9e1c-376a4c2181c2,SESCO,II.1.1,Chubut,AR-U,annual,2018,gas oil combustion consumption by public passenger transport,2.45616,TJ,CO2,74100.0,kg/TJ,182001.456,kg +38781bfc-d8b6-3787-a510-b1fe95db551d,SESCO,II.1.1,Chubut,AR-U,annual,2018,gas oil combustion consumption by public passenger transport,2.45616,TJ,CH4,3.9,kg/TJ,9.579024,kg +38781bfc-d8b6-3787-a510-b1fe95db551d,SESCO,II.1.1,Chubut,AR-U,annual,2018,gas oil combustion consumption by public passenger transport,2.45616,TJ,N2O,3.9,kg/TJ,9.579024,kg +64245b8a-1aed-38fd-84c8-4b316ff8939f,SESCO,II.1.1,Córdoba,AR-X,annual,2018,gas oil combustion consumption by public passenger transport,1.87824,TJ,CO2,74100.0,kg/TJ,139177.584,kg +5eb9ad3e-f951-3df7-89c9-9b002dbfc215,SESCO,II.1.1,Córdoba,AR-X,annual,2018,gas oil combustion consumption by public passenger transport,1.87824,TJ,CH4,3.9,kg/TJ,7.325136,kg +5eb9ad3e-f951-3df7-89c9-9b002dbfc215,SESCO,II.1.1,Córdoba,AR-X,annual,2018,gas oil combustion consumption by public passenger transport,1.87824,TJ,N2O,3.9,kg/TJ,7.325136,kg +4ae422fa-60c7-3057-a25e-edc610450bf1,SESCO,II.1.1,Entre Rios,AR-E,annual,2018,gas oil combustion consumption by public passenger transport,0.21672,TJ,CO2,74100.0,kg/TJ,16058.952,kg +71ab4a7b-48e7-3c90-82a7-2ebb5d7ff9a7,SESCO,II.1.1,Entre Rios,AR-E,annual,2018,gas oil combustion consumption by public passenger transport,0.21672,TJ,CH4,3.9,kg/TJ,0.845208,kg +71ab4a7b-48e7-3c90-82a7-2ebb5d7ff9a7,SESCO,II.1.1,Entre Rios,AR-E,annual,2018,gas oil combustion consumption by public passenger transport,0.21672,TJ,N2O,3.9,kg/TJ,0.845208,kg +5f1d1992-16e3-388d-99a2-0f69b47a14ea,SESCO,II.1.1,La Pampa,AR-L,annual,2018,gas oil combustion consumption by public passenger transport,4.1537999999999995,TJ,CO2,74100.0,kg/TJ,307796.57999999996,kg +b60dd16b-bf34-3ebc-adb0-8a1d24144185,SESCO,II.1.1,La Pampa,AR-L,annual,2018,gas oil combustion consumption by public passenger transport,4.1537999999999995,TJ,CH4,3.9,kg/TJ,16.19982,kg +b60dd16b-bf34-3ebc-adb0-8a1d24144185,SESCO,II.1.1,La Pampa,AR-L,annual,2018,gas oil combustion consumption by public passenger transport,4.1537999999999995,TJ,N2O,3.9,kg/TJ,16.19982,kg +14cca3ab-15f7-30c0-8660-60d68fc7b862,SESCO,II.1.1,Mendoza,AR-M,annual,2018,gas oil combustion consumption by public passenger transport,0.03612,TJ,CO2,74100.0,kg/TJ,2676.4919999999997,kg +984a4d7f-0f47-3c13-8ebc-3b59b250bc76,SESCO,II.1.1,Mendoza,AR-M,annual,2018,gas oil combustion consumption by public passenger transport,0.03612,TJ,CH4,3.9,kg/TJ,0.140868,kg +984a4d7f-0f47-3c13-8ebc-3b59b250bc76,SESCO,II.1.1,Mendoza,AR-M,annual,2018,gas oil combustion consumption by public passenger transport,0.03612,TJ,N2O,3.9,kg/TJ,0.140868,kg +8096f219-7d3c-3a5f-8a02-7c991fbb6cd2,SESCO,II.1.1,Neuquén,AR-Q,annual,2018,gas oil combustion consumption by public passenger transport,2.5284,TJ,CO2,74100.0,kg/TJ,187354.44,kg +bf48c769-d642-3148-8ccf-b81cdd421726,SESCO,II.1.1,Neuquén,AR-Q,annual,2018,gas oil combustion consumption by public passenger transport,2.5284,TJ,CH4,3.9,kg/TJ,9.860759999999999,kg +bf48c769-d642-3148-8ccf-b81cdd421726,SESCO,II.1.1,Neuquén,AR-Q,annual,2018,gas oil combustion consumption by public passenger transport,2.5284,TJ,N2O,3.9,kg/TJ,9.860759999999999,kg +f7bd39f0-9424-3d2c-927d-b0b4e2bcabb0,SESCO,II.1.1,Rio Negro,AR-R,annual,2018,gas oil combustion consumption by public passenger transport,10.25808,TJ,CO2,74100.0,kg/TJ,760123.728,kg +decff439-b6b5-3965-bcf9-0477ade8fe81,SESCO,II.1.1,Rio Negro,AR-R,annual,2018,gas oil combustion consumption by public passenger transport,10.25808,TJ,CH4,3.9,kg/TJ,40.006512,kg +decff439-b6b5-3965-bcf9-0477ade8fe81,SESCO,II.1.1,Rio Negro,AR-R,annual,2018,gas oil combustion consumption by public passenger transport,10.25808,TJ,N2O,3.9,kg/TJ,40.006512,kg +125341f8-153a-3bc6-aa20-f3392eba762c,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,gas oil combustion consumption by public passenger transport,3.46752,TJ,CO2,74100.0,kg/TJ,256943.232,kg +fb18f972-18c3-393a-91e4-a5feb5dfec1e,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,gas oil combustion consumption by public passenger transport,3.46752,TJ,CH4,3.9,kg/TJ,13.523328,kg +fb18f972-18c3-393a-91e4-a5feb5dfec1e,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,gas oil combustion consumption by public passenger transport,3.46752,TJ,N2O,3.9,kg/TJ,13.523328,kg +4e49b584-9421-3575-8867-1a54400d92d5,SESCO,II.1.1,Chubut,AR-U,annual,2018,gas oil combustion consumption by freight transport,0.10398948,TJ,CO2,74100.0,kg/TJ,7705.620468,kg +ded601dc-4bfe-3222-b541-745095600822,SESCO,II.1.1,Chubut,AR-U,annual,2018,gas oil combustion consumption by freight transport,0.10398948,TJ,CH4,3.9,kg/TJ,0.40555897199999996,kg +ded601dc-4bfe-3222-b541-745095600822,SESCO,II.1.1,Chubut,AR-U,annual,2018,gas oil combustion consumption by freight transport,0.10398948,TJ,N2O,3.9,kg/TJ,0.40555897199999996,kg +17080a63-b1bb-3ec6-937c-2037ba0c2d10,SESCO,II.1.1,Chubut,AR-U,annual,2018,gas oil combustion consumption by freight transport,2.57990712,TJ,CO2,74100.0,kg/TJ,191171.117592,kg +370c67cd-cd55-3083-93eb-76b60e8ea9f3,SESCO,II.1.1,Chubut,AR-U,annual,2018,gas oil combustion consumption by freight transport,2.57990712,TJ,CH4,3.9,kg/TJ,10.061637768,kg +370c67cd-cd55-3083-93eb-76b60e8ea9f3,SESCO,II.1.1,Chubut,AR-U,annual,2018,gas oil combustion consumption by freight transport,2.57990712,TJ,N2O,3.9,kg/TJ,10.061637768,kg +662bd11d-54ff-3c31-a3a4-5b54e87816f1,SESCO,II.5.1,Buenos Aires,AR-B,annual,2018,gas oil combustion consumption by agriculture machines,69.770713992,TJ,CO2,74100.0,kg/TJ,5170009.9068072,kg +8195e1f4-6742-34bd-acfb-4c32aa5d23a6,SESCO,II.5.1,Buenos Aires,AR-B,annual,2018,gas oil combustion consumption by agriculture machines,69.770713992,TJ,CH4,3.9,kg/TJ,272.1057845688,kg +8195e1f4-6742-34bd-acfb-4c32aa5d23a6,SESCO,II.5.1,Buenos Aires,AR-B,annual,2018,gas oil combustion consumption by agriculture machines,69.770713992,TJ,N2O,3.9,kg/TJ,272.1057845688,kg +c9a6c06e-ded7-3629-95b3-510bf04a4ae8,SESCO,II.5.1,Corrientes,AR-W,annual,2018,gas oil combustion consumption by agriculture machines,2.2124005679999996,TJ,CO2,74100.0,kg/TJ,163938.88208879996,kg +983830de-2665-352b-a6bb-c4648f052005,SESCO,II.5.1,Corrientes,AR-W,annual,2018,gas oil combustion consumption by agriculture machines,2.2124005679999996,TJ,CH4,3.9,kg/TJ,8.628362215199997,kg +983830de-2665-352b-a6bb-c4648f052005,SESCO,II.5.1,Corrientes,AR-W,annual,2018,gas oil combustion consumption by agriculture machines,2.2124005679999996,TJ,N2O,3.9,kg/TJ,8.628362215199997,kg +edef4a5e-1983-3c39-b503-89314ebe6532,SESCO,II.5.1,Córdoba,AR-X,annual,2018,gas oil combustion consumption by agriculture machines,118.283290944,TJ,CO2,74100.0,kg/TJ,8764791.8589504,kg +2c8d2e8a-0df4-3f3a-9fba-40574ef1601d,SESCO,II.5.1,Córdoba,AR-X,annual,2018,gas oil combustion consumption by agriculture machines,118.283290944,TJ,CH4,3.9,kg/TJ,461.30483468159997,kg +2c8d2e8a-0df4-3f3a-9fba-40574ef1601d,SESCO,II.5.1,Córdoba,AR-X,annual,2018,gas oil combustion consumption by agriculture machines,118.283290944,TJ,N2O,3.9,kg/TJ,461.30483468159997,kg +a9a13651-d932-38d1-8791-575f43050683,SESCO,II.5.1,Entre Rios,AR-E,annual,2018,gas oil combustion consumption by agriculture machines,94.837531656,TJ,CO2,74100.0,kg/TJ,7027461.0957096,kg +84de0141-5e6b-3740-bcde-0c74cb1493b7,SESCO,II.5.1,Entre Rios,AR-E,annual,2018,gas oil combustion consumption by agriculture machines,94.837531656,TJ,CH4,3.9,kg/TJ,369.86637345839995,kg +84de0141-5e6b-3740-bcde-0c74cb1493b7,SESCO,II.5.1,Entre Rios,AR-E,annual,2018,gas oil combustion consumption by agriculture machines,94.837531656,TJ,N2O,3.9,kg/TJ,369.86637345839995,kg +738f9a68-97b3-3d2a-906a-eb969850ae20,SESCO,II.5.1,La Pampa,AR-L,annual,2018,gas oil combustion consumption by agriculture machines,20.071526412,TJ,CO2,74100.0,kg/TJ,1487300.1071292001,kg +61d1a987-5bc5-3796-a3d0-03d97e0ea4a4,SESCO,II.5.1,La Pampa,AR-L,annual,2018,gas oil combustion consumption by agriculture machines,20.071526412,TJ,CH4,3.9,kg/TJ,78.2789530068,kg +61d1a987-5bc5-3796-a3d0-03d97e0ea4a4,SESCO,II.5.1,La Pampa,AR-L,annual,2018,gas oil combustion consumption by agriculture machines,20.071526412,TJ,N2O,3.9,kg/TJ,78.2789530068,kg +7f1e692b-8982-3fef-a6d0-9b8f75aaf4d7,SESCO,II.5.1,Santa Fe,AR-S,annual,2018,gas oil combustion consumption by agriculture machines,92.64480926399999,TJ,CO2,74100.0,kg/TJ,6864980.366462399,kg +0392b918-4658-357b-836c-f4d074b6a833,SESCO,II.5.1,Santa Fe,AR-S,annual,2018,gas oil combustion consumption by agriculture machines,92.64480926399999,TJ,CH4,3.9,kg/TJ,361.31475612959997,kg +0392b918-4658-357b-836c-f4d074b6a833,SESCO,II.5.1,Santa Fe,AR-S,annual,2018,gas oil combustion consumption by agriculture machines,92.64480926399999,TJ,N2O,3.9,kg/TJ,361.31475612959997,kg +341a2be2-5447-3d9f-9a3d-2d6018a5ce66,SESCO,II.5.1,Santiago del Estero,AR-G,annual,2018,gas oil combustion consumption by agriculture machines,29.305073447999998,TJ,CO2,74100.0,kg/TJ,2171505.9424968,kg +ce5846c9-f5ea-39bd-947d-c0a6d1fab464,SESCO,II.5.1,Santiago del Estero,AR-G,annual,2018,gas oil combustion consumption by agriculture machines,29.305073447999998,TJ,CH4,3.9,kg/TJ,114.28978644719999,kg +ce5846c9-f5ea-39bd-947d-c0a6d1fab464,SESCO,II.5.1,Santiago del Estero,AR-G,annual,2018,gas oil combustion consumption by agriculture machines,29.305073447999998,TJ,N2O,3.9,kg/TJ,114.28978644719999,kg +e44d2c02-d842-35f5-812b-4edf08bc3d25,SESCO,II.5.1,Tucuman,AR-T,annual,2018,gas oil combustion consumption by agriculture machines,1.6384754400000001,TJ,CO2,74100.0,kg/TJ,121411.030104,kg +b39f1746-0937-312f-8ae5-33b8c9f6c418,SESCO,II.5.1,Tucuman,AR-T,annual,2018,gas oil combustion consumption by agriculture machines,1.6384754400000001,TJ,CH4,3.9,kg/TJ,6.390054216,kg +b39f1746-0937-312f-8ae5-33b8c9f6c418,SESCO,II.5.1,Tucuman,AR-T,annual,2018,gas oil combustion consumption by agriculture machines,1.6384754400000001,TJ,N2O,3.9,kg/TJ,6.390054216,kg +da609c03-a700-32b0-8edb-bb811340b6b6,SESCO,II.5.1,Córdoba,AR-X,annual,2018,gas oil combustion consumption by agriculture machines,2.4308579399999997,TJ,CO2,74100.0,kg/TJ,180126.57335399996,kg +792512eb-c034-329f-8e31-e8d52b8f6d16,SESCO,II.5.1,Córdoba,AR-X,annual,2018,gas oil combustion consumption by agriculture machines,2.4308579399999997,TJ,CH4,3.9,kg/TJ,9.480345965999998,kg +792512eb-c034-329f-8e31-e8d52b8f6d16,SESCO,II.5.1,Córdoba,AR-X,annual,2018,gas oil combustion consumption by agriculture machines,2.4308579399999997,TJ,N2O,3.9,kg/TJ,9.480345965999998,kg +870740aa-42b9-36ac-8119-ada76acb9980,SESCO,II.5.1,Entre Rios,AR-E,annual,2018,gas oil combustion consumption by agriculture machines,3.0690983400000005,TJ,CO2,74100.0,kg/TJ,227420.18699400005,kg +ac9eebf3-5022-3934-afe9-613542ba6785,SESCO,II.5.1,Entre Rios,AR-E,annual,2018,gas oil combustion consumption by agriculture machines,3.0690983400000005,TJ,CH4,3.9,kg/TJ,11.969483526000001,kg +ac9eebf3-5022-3934-afe9-613542ba6785,SESCO,II.5.1,Entre Rios,AR-E,annual,2018,gas oil combustion consumption by agriculture machines,3.0690983400000005,TJ,N2O,3.9,kg/TJ,11.969483526000001,kg +0e179c1d-e922-3fd4-91f9-d5fda0b66496,SESCO,II.5.1,La Pampa,AR-L,annual,2018,gas oil combustion consumption by agriculture machines,3.998581524,TJ,CO2,74100.0,kg/TJ,296294.8909284,kg +0ce083d9-2fa9-3062-9db1-0be39dfba0a6,SESCO,II.5.1,La Pampa,AR-L,annual,2018,gas oil combustion consumption by agriculture machines,3.998581524,TJ,CH4,3.9,kg/TJ,15.5944679436,kg +0ce083d9-2fa9-3062-9db1-0be39dfba0a6,SESCO,II.5.1,La Pampa,AR-L,annual,2018,gas oil combustion consumption by agriculture machines,3.998581524,TJ,N2O,3.9,kg/TJ,15.5944679436,kg +19c9e276-be4d-369e-a174-91bf00322c36,SESCO,II.5.1,Santa Fe,AR-S,annual,2018,gas oil combustion consumption by agriculture machines,3.714790296,TJ,CO2,74100.0,kg/TJ,275265.96093359997,kg +532b37d3-731c-36b8-8741-8fa92b8f81ec,SESCO,II.5.1,Santa Fe,AR-S,annual,2018,gas oil combustion consumption by agriculture machines,3.714790296,TJ,CH4,3.9,kg/TJ,14.4876821544,kg +532b37d3-731c-36b8-8741-8fa92b8f81ec,SESCO,II.5.1,Santa Fe,AR-S,annual,2018,gas oil combustion consumption by agriculture machines,3.714790296,TJ,N2O,3.9,kg/TJ,14.4876821544,kg +463c6ad1-ea9b-32f8-b5e2-f73d2eaff94a,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,gas oil combustion consumption by to the public,397.72991143200005,TJ,CO2,74100.0,kg/TJ,29471786.437111203,kg +a2d85ce0-529a-3393-ac9e-9fba9b119864,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,gas oil combustion consumption by to the public,397.72991143200005,TJ,CH4,3.9,kg/TJ,1551.1466545848002,kg +a2d85ce0-529a-3393-ac9e-9fba9b119864,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,gas oil combustion consumption by to the public,397.72991143200005,TJ,N2O,3.9,kg/TJ,1551.1466545848002,kg +672e2537-0a7d-3538-9ada-58d286e19e9f,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,gas oil combustion consumption by to the public,42.161427588,TJ,CO2,74100.0,kg/TJ,3124161.7842708,kg +70294450-0247-3a08-83d2-0b7a46289f3e,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,gas oil combustion consumption by to the public,42.161427588,TJ,CH4,3.9,kg/TJ,164.4295675932,kg +70294450-0247-3a08-83d2-0b7a46289f3e,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,gas oil combustion consumption by to the public,42.161427588,TJ,N2O,3.9,kg/TJ,164.4295675932,kg +db334a21-d3d6-3906-a3a5-617e8f369a62,SESCO,II.1.1,Catamarca,AR-K,annual,2018,gas oil combustion consumption by to the public,11.850553007999999,TJ,CO2,74100.0,kg/TJ,878125.9778927999,kg +4b458580-77ff-354f-a475-e013715fce82,SESCO,II.1.1,Catamarca,AR-K,annual,2018,gas oil combustion consumption by to the public,11.850553007999999,TJ,CH4,3.9,kg/TJ,46.21715673119999,kg +4b458580-77ff-354f-a475-e013715fce82,SESCO,II.1.1,Catamarca,AR-K,annual,2018,gas oil combustion consumption by to the public,11.850553007999999,TJ,N2O,3.9,kg/TJ,46.21715673119999,kg +6a322803-950d-3982-aaf9-f3f63b7bbca8,SESCO,II.1.1,Chaco,AR-H,annual,2018,gas oil combustion consumption by to the public,69.694085412,TJ,CO2,74100.0,kg/TJ,5164331.729029201,kg +e1585bd8-60a9-3d5d-b237-c71fc3368010,SESCO,II.1.1,Chaco,AR-H,annual,2018,gas oil combustion consumption by to the public,69.694085412,TJ,CH4,3.9,kg/TJ,271.80693310680005,kg +e1585bd8-60a9-3d5d-b237-c71fc3368010,SESCO,II.1.1,Chaco,AR-H,annual,2018,gas oil combustion consumption by to the public,69.694085412,TJ,N2O,3.9,kg/TJ,271.80693310680005,kg +408bafad-320d-3576-9f31-499c14ffc36a,SESCO,II.1.1,Corrientes,AR-W,annual,2018,gas oil combustion consumption by to the public,91.65396181199999,TJ,CO2,74100.0,kg/TJ,6791558.570269199,kg +9b972212-50a6-397c-be49-51cf43b55b46,SESCO,II.1.1,Corrientes,AR-W,annual,2018,gas oil combustion consumption by to the public,91.65396181199999,TJ,CH4,3.9,kg/TJ,357.4504510668,kg +9b972212-50a6-397c-be49-51cf43b55b46,SESCO,II.1.1,Corrientes,AR-W,annual,2018,gas oil combustion consumption by to the public,91.65396181199999,TJ,N2O,3.9,kg/TJ,357.4504510668,kg +405de142-e33a-3825-8222-0d9d814fb750,SESCO,II.1.1,Córdoba,AR-X,annual,2018,gas oil combustion consumption by to the public,221.39362459199998,TJ,CO2,74100.0,kg/TJ,16405267.582267199,kg +f72b8bec-1d2a-3212-8821-eb56a32da8fd,SESCO,II.1.1,Córdoba,AR-X,annual,2018,gas oil combustion consumption by to the public,221.39362459199998,TJ,CH4,3.9,kg/TJ,863.4351359087999,kg +f72b8bec-1d2a-3212-8821-eb56a32da8fd,SESCO,II.1.1,Córdoba,AR-X,annual,2018,gas oil combustion consumption by to the public,221.39362459199998,TJ,N2O,3.9,kg/TJ,863.4351359087999,kg +ac86718e-7843-395d-8a78-c9c8fdbc2f9d,SESCO,II.1.1,Entre Rios,AR-E,annual,2018,gas oil combustion consumption by to the public,122.98252461599999,TJ,CO2,74100.0,kg/TJ,9113005.074045599,kg +58fe2bd5-4acb-3516-91ba-59ff29a26878,SESCO,II.1.1,Entre Rios,AR-E,annual,2018,gas oil combustion consumption by to the public,122.98252461599999,TJ,CH4,3.9,kg/TJ,479.6318460024,kg +58fe2bd5-4acb-3516-91ba-59ff29a26878,SESCO,II.1.1,Entre Rios,AR-E,annual,2018,gas oil combustion consumption by to the public,122.98252461599999,TJ,N2O,3.9,kg/TJ,479.6318460024,kg +b24dc09e-ddda-3d8f-9533-6a9f46bcb6a6,SESCO,II.1.1,Jujuy,AR-Y,annual,2018,gas oil combustion consumption by to the public,5.38426392,TJ,CO2,74100.0,kg/TJ,398973.95647200005,kg +0beb2ce8-b491-3720-8715-f58790e2a47f,SESCO,II.1.1,Jujuy,AR-Y,annual,2018,gas oil combustion consumption by to the public,5.38426392,TJ,CH4,3.9,kg/TJ,20.998629288,kg +0beb2ce8-b491-3720-8715-f58790e2a47f,SESCO,II.1.1,Jujuy,AR-Y,annual,2018,gas oil combustion consumption by to the public,5.38426392,TJ,N2O,3.9,kg/TJ,20.998629288,kg +653f059f-fe98-301c-bb75-a0bbfe6098f6,SESCO,II.1.1,La Rioja,AR-F,annual,2018,gas oil combustion consumption by to the public,7.095333336,TJ,CO2,74100.0,kg/TJ,525764.2001976001,kg +5deea726-6371-3ae0-96ac-edd5daadd701,SESCO,II.1.1,La Rioja,AR-F,annual,2018,gas oil combustion consumption by to the public,7.095333336,TJ,CH4,3.9,kg/TJ,27.671800010400002,kg +5deea726-6371-3ae0-96ac-edd5daadd701,SESCO,II.1.1,La Rioja,AR-F,annual,2018,gas oil combustion consumption by to the public,7.095333336,TJ,N2O,3.9,kg/TJ,27.671800010400002,kg +45abfb22-85fa-3a89-a0ea-210f4fbb0cb7,SESCO,II.1.1,Mendoza,AR-M,annual,2018,gas oil combustion consumption by to the public,50.206395456,TJ,CO2,74100.0,kg/TJ,3720293.9032896003,kg +31c736a6-2a7e-3f91-b58d-2fa45fb9ada2,SESCO,II.1.1,Mendoza,AR-M,annual,2018,gas oil combustion consumption by to the public,50.206395456,TJ,CH4,3.9,kg/TJ,195.8049422784,kg +31c736a6-2a7e-3f91-b58d-2fa45fb9ada2,SESCO,II.1.1,Mendoza,AR-M,annual,2018,gas oil combustion consumption by to the public,50.206395456,TJ,N2O,3.9,kg/TJ,195.8049422784,kg +29cf8434-77fb-3c8c-a145-88f1c0a69819,SESCO,II.1.1,Misiones,AR-N,annual,2018,gas oil combustion consumption by to the public,70.573520724,TJ,CO2,74100.0,kg/TJ,5229497.8856484005,kg +1083f317-f1bf-3401-bee4-e4dec43d5cf2,SESCO,II.1.1,Misiones,AR-N,annual,2018,gas oil combustion consumption by to the public,70.573520724,TJ,CH4,3.9,kg/TJ,275.2367308236,kg +1083f317-f1bf-3401-bee4-e4dec43d5cf2,SESCO,II.1.1,Misiones,AR-N,annual,2018,gas oil combustion consumption by to the public,70.573520724,TJ,N2O,3.9,kg/TJ,275.2367308236,kg +36e6c4cd-b05f-3eda-a59a-4a6150a905f6,SESCO,II.1.1,San Juan,AR-J,annual,2018,gas oil combustion consumption by to the public,60.514880915999996,TJ,CO2,74100.0,kg/TJ,4484152.6758755995,kg +06b47f60-ec28-3e68-984b-73b37e1c6655,SESCO,II.1.1,San Juan,AR-J,annual,2018,gas oil combustion consumption by to the public,60.514880915999996,TJ,CH4,3.9,kg/TJ,236.0080355724,kg +06b47f60-ec28-3e68-984b-73b37e1c6655,SESCO,II.1.1,San Juan,AR-J,annual,2018,gas oil combustion consumption by to the public,60.514880915999996,TJ,N2O,3.9,kg/TJ,236.0080355724,kg +edf905d6-2cac-3b8f-8dfe-164c7e58496e,SESCO,II.1.1,San Luis,AR-D,annual,2018,gas oil combustion consumption by to the public,31.918127892,TJ,CO2,74100.0,kg/TJ,2365133.2767972,kg +e170c837-62cd-3dba-98ab-167a8c1136e0,SESCO,II.1.1,San Luis,AR-D,annual,2018,gas oil combustion consumption by to the public,31.918127892,TJ,CH4,3.9,kg/TJ,124.4806987788,kg +e170c837-62cd-3dba-98ab-167a8c1136e0,SESCO,II.1.1,San Luis,AR-D,annual,2018,gas oil combustion consumption by to the public,31.918127892,TJ,N2O,3.9,kg/TJ,124.4806987788,kg +c82cc31c-8b31-39a7-91c8-4d5419929154,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,gas oil combustion consumption by to the public,382.28863310400004,TJ,CO2,74100.0,kg/TJ,28327587.713006403,kg +d9af5bc1-aea3-3064-a08f-7bc19d812087,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,gas oil combustion consumption by to the public,382.28863310400004,TJ,CH4,3.9,kg/TJ,1490.9256691056,kg +d9af5bc1-aea3-3064-a08f-7bc19d812087,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,gas oil combustion consumption by to the public,382.28863310400004,TJ,N2O,3.9,kg/TJ,1490.9256691056,kg +f54ce466-5eef-35d0-8c37-5eb1e1e7eeff,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2018,gas oil combustion consumption by to the public,19.579510608,TJ,CO2,74100.0,kg/TJ,1450841.7360528,kg +4d537ec0-a5f9-30e4-ae9d-db50e28d9129,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2018,gas oil combustion consumption by to the public,19.579510608,TJ,CH4,3.9,kg/TJ,76.3600913712,kg +4d537ec0-a5f9-30e4-ae9d-db50e28d9129,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2018,gas oil combustion consumption by to the public,19.579510608,TJ,N2O,3.9,kg/TJ,76.3600913712,kg +17868799-56c1-37e5-8880-4f8d9ecd5551,SESCO,II.1.1,Tucuman,AR-T,annual,2018,gas oil combustion consumption by to the public,43.050878976,TJ,CO2,74100.0,kg/TJ,3190070.1321216,kg +16e528b7-a1d8-391a-b9f9-237acc492365,SESCO,II.1.1,Tucuman,AR-T,annual,2018,gas oil combustion consumption by to the public,43.050878976,TJ,CH4,3.9,kg/TJ,167.8984280064,kg +16e528b7-a1d8-391a-b9f9-237acc492365,SESCO,II.1.1,Tucuman,AR-T,annual,2018,gas oil combustion consumption by to the public,43.050878976,TJ,N2O,3.9,kg/TJ,167.8984280064,kg +5505f17a-375f-3bae-9804-16983cee6d8c,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,gas oil combustion consumption by to the public,103.263590808,TJ,CO2,74100.0,kg/TJ,7651832.0788728,kg +9ce6c272-87de-359a-9474-01bfc15a2975,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,gas oil combustion consumption by to the public,103.263590808,TJ,CH4,3.9,kg/TJ,402.7280041512,kg +9ce6c272-87de-359a-9474-01bfc15a2975,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,gas oil combustion consumption by to the public,103.263590808,TJ,N2O,3.9,kg/TJ,402.7280041512,kg +46bd741a-8b3f-3eb1-9ae7-b70d6c58ab96,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,gas oil combustion consumption by to the public,7.857151092,TJ,CO2,74100.0,kg/TJ,582214.8959172,kg +cd706973-2d91-316d-9ad1-5911b9f5b88a,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,gas oil combustion consumption by to the public,7.857151092,TJ,CH4,3.9,kg/TJ,30.642889258799997,kg +cd706973-2d91-316d-9ad1-5911b9f5b88a,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,gas oil combustion consumption by to the public,7.857151092,TJ,N2O,3.9,kg/TJ,30.642889258799997,kg +fef4995c-8bfa-3404-aac7-4c7d352bee93,SESCO,II.1.1,Catamarca,AR-K,annual,2018,gas oil combustion consumption by to the public,11.391829008,TJ,CO2,74100.0,kg/TJ,844134.5294928,kg +4f6e6825-bb43-3841-8511-fb31b2227d50,SESCO,II.1.1,Catamarca,AR-K,annual,2018,gas oil combustion consumption by to the public,11.391829008,TJ,CH4,3.9,kg/TJ,44.4281331312,kg +4f6e6825-bb43-3841-8511-fb31b2227d50,SESCO,II.1.1,Catamarca,AR-K,annual,2018,gas oil combustion consumption by to the public,11.391829008,TJ,N2O,3.9,kg/TJ,44.4281331312,kg +9a591880-e8f6-3194-a697-ca3a16b13611,SESCO,II.1.1,Chaco,AR-H,annual,2018,gas oil combustion consumption by to the public,12.394834452,TJ,CO2,74100.0,kg/TJ,918457.2328932,kg +8c897059-79df-32c0-8001-16db77a4ef40,SESCO,II.1.1,Chaco,AR-H,annual,2018,gas oil combustion consumption by to the public,12.394834452,TJ,CH4,3.9,kg/TJ,48.3398543628,kg +8c897059-79df-32c0-8001-16db77a4ef40,SESCO,II.1.1,Chaco,AR-H,annual,2018,gas oil combustion consumption by to the public,12.394834452,TJ,N2O,3.9,kg/TJ,48.3398543628,kg +f9940f73-c4e6-353e-a7c4-e84badcbb525,SESCO,II.1.1,Corrientes,AR-W,annual,2018,gas oil combustion consumption by to the public,19.605433932,TJ,CO2,74100.0,kg/TJ,1452762.6543612,kg +04a9aa4d-e23d-351d-992a-a1394a5fff7e,SESCO,II.1.1,Corrientes,AR-W,annual,2018,gas oil combustion consumption by to the public,19.605433932,TJ,CH4,3.9,kg/TJ,76.4611923348,kg +04a9aa4d-e23d-351d-992a-a1394a5fff7e,SESCO,II.1.1,Corrientes,AR-W,annual,2018,gas oil combustion consumption by to the public,19.605433932,TJ,N2O,3.9,kg/TJ,76.4611923348,kg +2fe3bbaf-f88f-3ef2-94ec-73d543841e0c,SESCO,II.1.1,Córdoba,AR-X,annual,2018,gas oil combustion consumption by to the public,62.852112203999994,TJ,CO2,74100.0,kg/TJ,4657341.5143164,kg +7d9e5cf7-e540-340c-96ed-7ef27a88ca79,SESCO,II.1.1,Córdoba,AR-X,annual,2018,gas oil combustion consumption by to the public,62.852112203999994,TJ,CH4,3.9,kg/TJ,245.12323759559996,kg +7d9e5cf7-e540-340c-96ed-7ef27a88ca79,SESCO,II.1.1,Córdoba,AR-X,annual,2018,gas oil combustion consumption by to the public,62.852112203999994,TJ,N2O,3.9,kg/TJ,245.12323759559996,kg +803c3111-9bfe-3b80-979b-3eaa489fb6d3,SESCO,II.1.1,Entre Rios,AR-E,annual,2018,gas oil combustion consumption by to the public,14.672915628,TJ,CO2,74100.0,kg/TJ,1087263.0480348,kg +04f365f4-4638-3edc-9bfd-3020b9068e9a,SESCO,II.1.1,Entre Rios,AR-E,annual,2018,gas oil combustion consumption by to the public,14.672915628,TJ,CH4,3.9,kg/TJ,57.2243709492,kg +04f365f4-4638-3edc-9bfd-3020b9068e9a,SESCO,II.1.1,Entre Rios,AR-E,annual,2018,gas oil combustion consumption by to the public,14.672915628,TJ,N2O,3.9,kg/TJ,57.2243709492,kg +d76d0cdb-10d8-3e32-97a7-d55311aa36be,SESCO,II.1.1,La Rioja,AR-F,annual,2018,gas oil combustion consumption by to the public,3.8942886359999997,TJ,CO2,74100.0,kg/TJ,288566.7879276,kg +91c61015-c821-3707-81f8-31dd2a9dcb23,SESCO,II.1.1,La Rioja,AR-F,annual,2018,gas oil combustion consumption by to the public,3.8942886359999997,TJ,CH4,3.9,kg/TJ,15.187725680399998,kg +91c61015-c821-3707-81f8-31dd2a9dcb23,SESCO,II.1.1,La Rioja,AR-F,annual,2018,gas oil combustion consumption by to the public,3.8942886359999997,TJ,N2O,3.9,kg/TJ,15.187725680399998,kg +ea2079c9-c637-32f4-aa47-f3f0eef213f8,SESCO,II.1.1,Mendoza,AR-M,annual,2018,gas oil combustion consumption by to the public,14.537303088,TJ,CO2,74100.0,kg/TJ,1077214.1588208,kg +511744f0-c474-36b6-b3fd-8c768ca88339,SESCO,II.1.1,Mendoza,AR-M,annual,2018,gas oil combustion consumption by to the public,14.537303088,TJ,CH4,3.9,kg/TJ,56.695482043199995,kg +511744f0-c474-36b6-b3fd-8c768ca88339,SESCO,II.1.1,Mendoza,AR-M,annual,2018,gas oil combustion consumption by to the public,14.537303088,TJ,N2O,3.9,kg/TJ,56.695482043199995,kg +d704f5f0-e891-3879-b443-b092dacd113c,SESCO,II.1.1,Misiones,AR-N,annual,2018,gas oil combustion consumption by to the public,16.959409152,TJ,CO2,74100.0,kg/TJ,1256692.2181632,kg +50dc51ba-62ed-3f65-975b-38d477184c7a,SESCO,II.1.1,Misiones,AR-N,annual,2018,gas oil combustion consumption by to the public,16.959409152,TJ,CH4,3.9,kg/TJ,66.1416956928,kg +50dc51ba-62ed-3f65-975b-38d477184c7a,SESCO,II.1.1,Misiones,AR-N,annual,2018,gas oil combustion consumption by to the public,16.959409152,TJ,N2O,3.9,kg/TJ,66.1416956928,kg +70a21ff0-6015-3fa3-882b-2db65fd40237,SESCO,II.1.1,San Juan,AR-J,annual,2018,gas oil combustion consumption by to the public,11.107510428000001,TJ,CO2,74100.0,kg/TJ,823066.5227148001,kg +0d085c9b-6422-350a-8c0c-863444450058,SESCO,II.1.1,San Juan,AR-J,annual,2018,gas oil combustion consumption by to the public,11.107510428000001,TJ,CH4,3.9,kg/TJ,43.3192906692,kg +0d085c9b-6422-350a-8c0c-863444450058,SESCO,II.1.1,San Juan,AR-J,annual,2018,gas oil combustion consumption by to the public,11.107510428000001,TJ,N2O,3.9,kg/TJ,43.3192906692,kg +487dda5f-a8fc-316f-930b-098ad07346d1,SESCO,II.1.1,San Luis,AR-D,annual,2018,gas oil combustion consumption by to the public,11.074377552,TJ,CO2,74100.0,kg/TJ,820611.3766032,kg +f4d72908-8065-373e-bf96-e448a573dbe3,SESCO,II.1.1,San Luis,AR-D,annual,2018,gas oil combustion consumption by to the public,11.074377552,TJ,CH4,3.9,kg/TJ,43.190072452799996,kg +f4d72908-8065-373e-bf96-e448a573dbe3,SESCO,II.1.1,San Luis,AR-D,annual,2018,gas oil combustion consumption by to the public,11.074377552,TJ,N2O,3.9,kg/TJ,43.190072452799996,kg +fc9bffc4-94a6-3f78-885e-c739b631f789,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,gas oil combustion consumption by to the public,83.16261576000001,TJ,CO2,74100.0,kg/TJ,6162349.827816,kg +3313a9c1-bd6f-3bed-9a6a-c7bf7072ec68,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,gas oil combustion consumption by to the public,83.16261576000001,TJ,CH4,3.9,kg/TJ,324.33420146400005,kg +3313a9c1-bd6f-3bed-9a6a-c7bf7072ec68,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,gas oil combustion consumption by to the public,83.16261576000001,TJ,N2O,3.9,kg/TJ,324.33420146400005,kg +c811d4a5-4f71-3761-bd41-de31552976c7,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2018,gas oil combustion consumption by to the public,10.003936068,TJ,CO2,74100.0,kg/TJ,741291.6626388,kg +728971e0-c621-3e35-93d2-7446abb0cc41,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2018,gas oil combustion consumption by to the public,10.003936068,TJ,CH4,3.9,kg/TJ,39.015350665199996,kg +728971e0-c621-3e35-93d2-7446abb0cc41,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2018,gas oil combustion consumption by to the public,10.003936068,TJ,N2O,3.9,kg/TJ,39.015350665199996,kg +e1812227-4e0c-346d-ad2f-097ad4c665c6,SESCO,II.1.1,Tucuman,AR-T,annual,2018,gas oil combustion consumption by to the public,8.960064456,TJ,CO2,74100.0,kg/TJ,663940.7761896,kg +bd8e622d-54b3-3723-8454-4908b0790ad1,SESCO,II.1.1,Tucuman,AR-T,annual,2018,gas oil combustion consumption by to the public,8.960064456,TJ,CH4,3.9,kg/TJ,34.9442513784,kg +bd8e622d-54b3-3723-8454-4908b0790ad1,SESCO,II.1.1,Tucuman,AR-T,annual,2018,gas oil combustion consumption by to the public,8.960064456,TJ,N2O,3.9,kg/TJ,34.9442513784,kg +92e8f6b0-351e-35d6-9e02-34a8d9b28514,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,gas oil combustion consumption by public passenger transport,20.622229992,TJ,CO2,74100.0,kg/TJ,1528107.2424072002,kg +60a93b7b-74f6-3e02-a73c-0bf1adba770d,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,gas oil combustion consumption by public passenger transport,20.622229992,TJ,CH4,3.9,kg/TJ,80.4266969688,kg +60a93b7b-74f6-3e02-a73c-0bf1adba770d,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,gas oil combustion consumption by public passenger transport,20.622229992,TJ,N2O,3.9,kg/TJ,80.4266969688,kg +fca72ccf-6b85-3c33-bf5d-bcd9deb08e9c,SESCO,II.1.1,Chaco,AR-H,annual,2018,gas oil combustion consumption by public passenger transport,1.964736564,TJ,CO2,74100.0,kg/TJ,145586.9793924,kg +e7a73cac-99cc-3112-a50c-ad3d8a44f65b,SESCO,II.1.1,Chaco,AR-H,annual,2018,gas oil combustion consumption by public passenger transport,1.964736564,TJ,CH4,3.9,kg/TJ,7.6624725996,kg +e7a73cac-99cc-3112-a50c-ad3d8a44f65b,SESCO,II.1.1,Chaco,AR-H,annual,2018,gas oil combustion consumption by public passenger transport,1.964736564,TJ,N2O,3.9,kg/TJ,7.6624725996,kg +44bd3a4e-ad1f-3452-aeac-2a51dcf396c5,SESCO,II.1.1,Corrientes,AR-W,annual,2018,gas oil combustion consumption by public passenger transport,6.457418016,TJ,CO2,74100.0,kg/TJ,478494.6749856,kg +24410092-c403-3fbe-9fba-a315f6148dcf,SESCO,II.1.1,Corrientes,AR-W,annual,2018,gas oil combustion consumption by public passenger transport,6.457418016,TJ,CH4,3.9,kg/TJ,25.1839302624,kg +24410092-c403-3fbe-9fba-a315f6148dcf,SESCO,II.1.1,Corrientes,AR-W,annual,2018,gas oil combustion consumption by public passenger transport,6.457418016,TJ,N2O,3.9,kg/TJ,25.1839302624,kg +fc720e79-9bca-3e69-a76e-56a87491b1cf,SESCO,II.1.1,Córdoba,AR-X,annual,2018,gas oil combustion consumption by public passenger transport,45.605361228,TJ,CO2,74100.0,kg/TJ,3379357.2669948,kg +67b4522a-3b5c-3088-900e-a30ac3655ad1,SESCO,II.1.1,Córdoba,AR-X,annual,2018,gas oil combustion consumption by public passenger transport,45.605361228,TJ,CH4,3.9,kg/TJ,177.86090878919998,kg +67b4522a-3b5c-3088-900e-a30ac3655ad1,SESCO,II.1.1,Córdoba,AR-X,annual,2018,gas oil combustion consumption by public passenger transport,45.605361228,TJ,N2O,3.9,kg/TJ,177.86090878919998,kg +dcb06cb4-d6da-31a2-9e6e-f030cb6bdddc,SESCO,II.1.1,Entre Rios,AR-E,annual,2018,gas oil combustion consumption by public passenger transport,16.619169588,TJ,CO2,74100.0,kg/TJ,1231480.4664707999,kg +2d590843-78ed-3827-bf99-a6e07af21e1f,SESCO,II.1.1,Entre Rios,AR-E,annual,2018,gas oil combustion consumption by public passenger transport,16.619169588,TJ,CH4,3.9,kg/TJ,64.81476139319999,kg +2d590843-78ed-3827-bf99-a6e07af21e1f,SESCO,II.1.1,Entre Rios,AR-E,annual,2018,gas oil combustion consumption by public passenger transport,16.619169588,TJ,N2O,3.9,kg/TJ,64.81476139319999,kg +27c6116c-884c-3206-9dae-c4a8b80ede5b,SESCO,II.1.1,Jujuy,AR-Y,annual,2018,gas oil combustion consumption by public passenger transport,19.646245920000002,TJ,CO2,74100.0,kg/TJ,1455786.8226720002,kg +323c9f3a-3010-3f27-b198-4a547ae7a293,SESCO,II.1.1,Jujuy,AR-Y,annual,2018,gas oil combustion consumption by public passenger transport,19.646245920000002,TJ,CH4,3.9,kg/TJ,76.620359088,kg +323c9f3a-3010-3f27-b198-4a547ae7a293,SESCO,II.1.1,Jujuy,AR-Y,annual,2018,gas oil combustion consumption by public passenger transport,19.646245920000002,TJ,N2O,3.9,kg/TJ,76.620359088,kg +5627dd27-6e8b-30ae-bd32-1fc3906672c6,SESCO,II.1.1,Salta,AR-A,annual,2018,gas oil combustion consumption by public passenger transport,13.89133662,TJ,CO2,74100.0,kg/TJ,1029348.043542,kg +26b47f93-a5c0-33b2-8854-4faa5bd23a4d,SESCO,II.1.1,Salta,AR-A,annual,2018,gas oil combustion consumption by public passenger transport,13.89133662,TJ,CH4,3.9,kg/TJ,54.176212818,kg +26b47f93-a5c0-33b2-8854-4faa5bd23a4d,SESCO,II.1.1,Salta,AR-A,annual,2018,gas oil combustion consumption by public passenger transport,13.89133662,TJ,N2O,3.9,kg/TJ,54.176212818,kg +a00b54c0-90ee-39f2-b971-61df1aec854c,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,gas oil combustion consumption by public passenger transport,41.86300776,TJ,CO2,74100.0,kg/TJ,3102048.875016,kg +c9f1d04e-f924-3530-8db9-e5e6400e46fc,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,gas oil combustion consumption by public passenger transport,41.86300776,TJ,CH4,3.9,kg/TJ,163.265730264,kg +c9f1d04e-f924-3530-8db9-e5e6400e46fc,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,gas oil combustion consumption by public passenger transport,41.86300776,TJ,N2O,3.9,kg/TJ,163.265730264,kg +76e64e83-6e9f-3e8d-97fb-1751e328d398,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2018,gas oil combustion consumption by public passenger transport,18.94129188,TJ,CO2,74100.0,kg/TJ,1403549.7283080001,kg +906e14e0-4277-33c0-8478-af9721eff638,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2018,gas oil combustion consumption by public passenger transport,18.94129188,TJ,CH4,3.9,kg/TJ,73.871038332,kg +906e14e0-4277-33c0-8478-af9721eff638,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2018,gas oil combustion consumption by public passenger transport,18.94129188,TJ,N2O,3.9,kg/TJ,73.871038332,kg +6228c3cd-6163-3615-883d-0a3d099d6fed,SESCO,II.1.1,Tucuman,AR-T,annual,2018,gas oil combustion consumption by public passenger transport,5.390523516,TJ,CO2,74100.0,kg/TJ,399437.7925356,kg +1c66adf7-767e-3e17-affe-62670c97c6c1,SESCO,II.1.1,Tucuman,AR-T,annual,2018,gas oil combustion consumption by public passenger transport,5.390523516,TJ,CH4,3.9,kg/TJ,21.0230417124,kg +1c66adf7-767e-3e17-affe-62670c97c6c1,SESCO,II.1.1,Tucuman,AR-T,annual,2018,gas oil combustion consumption by public passenger transport,5.390523516,TJ,N2O,3.9,kg/TJ,21.0230417124,kg +d3a7e212-8b9e-3923-8eac-31053abc6d56,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,gas oil combustion consumption by public passenger transport,2.7527052000000003,TJ,CO2,74100.0,kg/TJ,203975.45532,kg +228d467c-d625-34cf-80c0-47fb65ff60b6,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,gas oil combustion consumption by public passenger transport,2.7527052000000003,TJ,CH4,3.9,kg/TJ,10.735550280000002,kg +228d467c-d625-34cf-80c0-47fb65ff60b6,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,gas oil combustion consumption by public passenger transport,2.7527052000000003,TJ,N2O,3.9,kg/TJ,10.735550280000002,kg +bb4cbc86-6d35-39c7-8871-b9c4e10619ac,SESCO,II.1.1,Corrientes,AR-W,annual,2018,gas oil combustion consumption by public passenger transport,1.287580476,TJ,CO2,74100.0,kg/TJ,95409.7132716,kg +a633401c-de33-39be-ba43-c201db9dda79,SESCO,II.1.1,Corrientes,AR-W,annual,2018,gas oil combustion consumption by public passenger transport,1.287580476,TJ,CH4,3.9,kg/TJ,5.0215638564,kg +a633401c-de33-39be-ba43-c201db9dda79,SESCO,II.1.1,Corrientes,AR-W,annual,2018,gas oil combustion consumption by public passenger transport,1.287580476,TJ,N2O,3.9,kg/TJ,5.0215638564,kg +b4b0f800-c8c3-340d-a49e-d70e001ac18b,SESCO,II.1.1,Córdoba,AR-X,annual,2018,gas oil combustion consumption by public passenger transport,5.003573567999999,TJ,CO2,74100.0,kg/TJ,370764.80138879997,kg +93130626-5bb3-3f78-8cae-1d0f534e20e3,SESCO,II.1.1,Córdoba,AR-X,annual,2018,gas oil combustion consumption by public passenger transport,5.003573567999999,TJ,CH4,3.9,kg/TJ,19.513936915199995,kg +93130626-5bb3-3f78-8cae-1d0f534e20e3,SESCO,II.1.1,Córdoba,AR-X,annual,2018,gas oil combustion consumption by public passenger transport,5.003573567999999,TJ,N2O,3.9,kg/TJ,19.513936915199995,kg +479f2808-8f62-3e70-bf1e-1da5ebae29db,SESCO,II.1.1,Entre Rios,AR-E,annual,2018,gas oil combustion consumption by public passenger transport,1.145343528,TJ,CO2,74100.0,kg/TJ,84869.95542479999,kg +cf7ad199-4de7-3993-b946-62fea143f9aa,SESCO,II.1.1,Entre Rios,AR-E,annual,2018,gas oil combustion consumption by public passenger transport,1.145343528,TJ,CH4,3.9,kg/TJ,4.4668397592,kg +cf7ad199-4de7-3993-b946-62fea143f9aa,SESCO,II.1.1,Entre Rios,AR-E,annual,2018,gas oil combustion consumption by public passenger transport,1.145343528,TJ,N2O,3.9,kg/TJ,4.4668397592,kg +2d1b951b-017d-38d6-89b7-49638725f819,SESCO,II.1.1,Jujuy,AR-Y,annual,2018,gas oil combustion consumption by public passenger transport,1.036145544,TJ,CO2,74100.0,kg/TJ,76778.3848104,kg +1bc3f84c-fab5-3f84-9489-5a11f1b66754,SESCO,II.1.1,Jujuy,AR-Y,annual,2018,gas oil combustion consumption by public passenger transport,1.036145544,TJ,CH4,3.9,kg/TJ,4.0409676216,kg +1bc3f84c-fab5-3f84-9489-5a11f1b66754,SESCO,II.1.1,Jujuy,AR-Y,annual,2018,gas oil combustion consumption by public passenger transport,1.036145544,TJ,N2O,3.9,kg/TJ,4.0409676216,kg +4c53df69-d681-3c39-a313-7657fc9ab34a,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,gas oil combustion consumption by public passenger transport,7.9632860999999995,TJ,CO2,74100.0,kg/TJ,590079.50001,kg +27985118-12d0-3809-ad1f-1caf4bb1223e,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,gas oil combustion consumption by public passenger transport,7.9632860999999995,TJ,CH4,3.9,kg/TJ,31.056815789999998,kg +27985118-12d0-3809-ad1f-1caf4bb1223e,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,gas oil combustion consumption by public passenger transport,7.9632860999999995,TJ,N2O,3.9,kg/TJ,31.056815789999998,kg +a29d14da-e163-3a33-b2e0-ec751442eaf3,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2018,gas oil combustion consumption by public passenger transport,2.1060416159999997,TJ,CO2,74100.0,kg/TJ,156057.6837456,kg +e797a2fc-4a18-367c-a959-9f36561906ad,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2018,gas oil combustion consumption by public passenger transport,2.1060416159999997,TJ,CH4,3.9,kg/TJ,8.213562302399998,kg +e797a2fc-4a18-367c-a959-9f36561906ad,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2018,gas oil combustion consumption by public passenger transport,2.1060416159999997,TJ,N2O,3.9,kg/TJ,8.213562302399998,kg +2b47b649-d913-393b-a41d-d1834b37c414,SESCO,II.1.1,Tucuman,AR-T,annual,2018,gas oil combustion consumption by public passenger transport,0.9287029919999998,TJ,CO2,74100.0,kg/TJ,68816.89170719999,kg +0122c151-f5c0-3e1b-94dd-52b883771934,SESCO,II.1.1,Tucuman,AR-T,annual,2018,gas oil combustion consumption by public passenger transport,0.9287029919999998,TJ,CH4,3.9,kg/TJ,3.6219416687999995,kg +0122c151-f5c0-3e1b-94dd-52b883771934,SESCO,II.1.1,Tucuman,AR-T,annual,2018,gas oil combustion consumption by public passenger transport,0.9287029919999998,TJ,N2O,3.9,kg/TJ,3.6219416687999995,kg +10a9e729-a64c-3c9f-a211-2348fae96ed2,SESCO,II.5.1,Buenos Aires,AR-B,annual,2018,gas oil combustion consumption by agriculture machines,976.35972,TJ,CO2,74100.0,kg/TJ,72348255.252,kg +b63e176f-89db-36d7-9128-9510b232f475,SESCO,II.5.1,Buenos Aires,AR-B,annual,2018,gas oil combustion consumption by agriculture machines,976.35972,TJ,CH4,3.9,kg/TJ,3807.802908,kg +b63e176f-89db-36d7-9128-9510b232f475,SESCO,II.5.1,Buenos Aires,AR-B,annual,2018,gas oil combustion consumption by agriculture machines,976.35972,TJ,N2O,3.9,kg/TJ,3807.802908,kg +0be4b689-13eb-3757-9037-0874500b7c14,SESCO,II.5.1,Chaco,AR-H,annual,2018,gas oil combustion consumption by agriculture machines,188.76312,TJ,CO2,74100.0,kg/TJ,13987347.192,kg +e753406c-2200-36c1-a65f-2496a93f5b82,SESCO,II.5.1,Chaco,AR-H,annual,2018,gas oil combustion consumption by agriculture machines,188.76312,TJ,CH4,3.9,kg/TJ,736.176168,kg +e753406c-2200-36c1-a65f-2496a93f5b82,SESCO,II.5.1,Chaco,AR-H,annual,2018,gas oil combustion consumption by agriculture machines,188.76312,TJ,N2O,3.9,kg/TJ,736.176168,kg +80f37125-5042-3412-a450-be55389608b6,SESCO,II.5.1,Corrientes,AR-W,annual,2018,gas oil combustion consumption by agriculture machines,65.88288,TJ,CO2,74100.0,kg/TJ,4881921.408,kg +4b61b60c-3cc8-3c08-9ba6-d5eb77c381e1,SESCO,II.5.1,Corrientes,AR-W,annual,2018,gas oil combustion consumption by agriculture machines,65.88288,TJ,CH4,3.9,kg/TJ,256.94323199999997,kg +4b61b60c-3cc8-3c08-9ba6-d5eb77c381e1,SESCO,II.5.1,Corrientes,AR-W,annual,2018,gas oil combustion consumption by agriculture machines,65.88288,TJ,N2O,3.9,kg/TJ,256.94323199999997,kg +fbd44267-0f11-35cd-931c-7dc7a907c587,SESCO,II.5.1,Córdoba,AR-X,annual,2018,gas oil combustion consumption by agriculture machines,871.79232,TJ,CO2,74100.0,kg/TJ,64599810.912,kg +b333e8cd-eb58-322c-b26c-221120f57898,SESCO,II.5.1,Córdoba,AR-X,annual,2018,gas oil combustion consumption by agriculture machines,871.79232,TJ,CH4,3.9,kg/TJ,3399.990048,kg +b333e8cd-eb58-322c-b26c-221120f57898,SESCO,II.5.1,Córdoba,AR-X,annual,2018,gas oil combustion consumption by agriculture machines,871.79232,TJ,N2O,3.9,kg/TJ,3399.990048,kg +0bf037d7-0299-30e9-baab-d19689b188e4,SESCO,II.5.1,Entre Rios,AR-E,annual,2018,gas oil combustion consumption by agriculture machines,60.356519999999996,TJ,CO2,74100.0,kg/TJ,4472418.131999999,kg +6f6f14f2-46f9-358e-bdd5-0c44d2655648,SESCO,II.5.1,Entre Rios,AR-E,annual,2018,gas oil combustion consumption by agriculture machines,60.356519999999996,TJ,CH4,3.9,kg/TJ,235.39042799999999,kg +6f6f14f2-46f9-358e-bdd5-0c44d2655648,SESCO,II.5.1,Entre Rios,AR-E,annual,2018,gas oil combustion consumption by agriculture machines,60.356519999999996,TJ,N2O,3.9,kg/TJ,235.39042799999999,kg +cd805883-98c7-3571-9a07-f25ceb06e603,SESCO,II.5.1,Mendoza,AR-M,annual,2018,gas oil combustion consumption by agriculture machines,242.25683999999998,TJ,CO2,74100.0,kg/TJ,17951231.844,kg +b1599e20-3f08-3659-97c8-2dfcd3ea380a,SESCO,II.5.1,Mendoza,AR-M,annual,2018,gas oil combustion consumption by agriculture machines,242.25683999999998,TJ,CH4,3.9,kg/TJ,944.8016759999999,kg +b1599e20-3f08-3659-97c8-2dfcd3ea380a,SESCO,II.5.1,Mendoza,AR-M,annual,2018,gas oil combustion consumption by agriculture machines,242.25683999999998,TJ,N2O,3.9,kg/TJ,944.8016759999999,kg +46e81395-e04a-3e9b-9fcb-59efd6420654,SESCO,II.5.1,Santa Fe,AR-S,annual,2018,gas oil combustion consumption by agriculture machines,1243.7921999999999,TJ,CO2,74100.0,kg/TJ,92165002.02,kg +24e5a7aa-979b-3c67-a07a-4487db036c58,SESCO,II.5.1,Santa Fe,AR-S,annual,2018,gas oil combustion consumption by agriculture machines,1243.7921999999999,TJ,CH4,3.9,kg/TJ,4850.78958,kg +24e5a7aa-979b-3c67-a07a-4487db036c58,SESCO,II.5.1,Santa Fe,AR-S,annual,2018,gas oil combustion consumption by agriculture machines,1243.7921999999999,TJ,N2O,3.9,kg/TJ,4850.78958,kg +09e1a690-26ff-30dc-bcdc-65f772ae1f1d,SESCO,II.5.1,Tucuman,AR-T,annual,2018,gas oil combustion consumption by agriculture machines,86.54352,TJ,CO2,74100.0,kg/TJ,6412874.832,kg +5d79c1b9-b1de-3d3e-85f6-3bb57fe2e841,SESCO,II.5.1,Tucuman,AR-T,annual,2018,gas oil combustion consumption by agriculture machines,86.54352,TJ,CH4,3.9,kg/TJ,337.519728,kg +5d79c1b9-b1de-3d3e-85f6-3bb57fe2e841,SESCO,II.5.1,Tucuman,AR-T,annual,2018,gas oil combustion consumption by agriculture machines,86.54352,TJ,N2O,3.9,kg/TJ,337.519728,kg +0503953c-dbfc-3295-99a7-1c0b0a74998f,SESCO,II.5.1,Buenos Aires,AR-B,annual,2018,gas oil combustion consumption by agriculture machines,40.23768,TJ,CO2,74100.0,kg/TJ,2981612.088,kg +0bf16a5e-b30b-35b4-bc4f-fe1ed0029788,SESCO,II.5.1,Buenos Aires,AR-B,annual,2018,gas oil combustion consumption by agriculture machines,40.23768,TJ,CH4,3.9,kg/TJ,156.926952,kg +0bf16a5e-b30b-35b4-bc4f-fe1ed0029788,SESCO,II.5.1,Buenos Aires,AR-B,annual,2018,gas oil combustion consumption by agriculture machines,40.23768,TJ,N2O,3.9,kg/TJ,156.926952,kg +3f628eda-42e9-323e-9305-f3cdaecc42dd,SESCO,II.5.1,Chaco,AR-H,annual,2018,gas oil combustion consumption by agriculture machines,52.33788,TJ,CO2,74100.0,kg/TJ,3878236.908,kg +eb765062-9e34-3170-8d99-6b0da8914569,SESCO,II.5.1,Chaco,AR-H,annual,2018,gas oil combustion consumption by agriculture machines,52.33788,TJ,CH4,3.9,kg/TJ,204.117732,kg +eb765062-9e34-3170-8d99-6b0da8914569,SESCO,II.5.1,Chaco,AR-H,annual,2018,gas oil combustion consumption by agriculture machines,52.33788,TJ,N2O,3.9,kg/TJ,204.117732,kg +81bbb153-432d-3f9a-9c77-a52ccd964fde,SESCO,II.5.1,Corrientes,AR-W,annual,2018,gas oil combustion consumption by agriculture machines,21.672,TJ,CO2,74100.0,kg/TJ,1605895.2,kg +23d70b2c-fc53-3086-b7f8-bc4ed86dac53,SESCO,II.5.1,Corrientes,AR-W,annual,2018,gas oil combustion consumption by agriculture machines,21.672,TJ,CH4,3.9,kg/TJ,84.5208,kg +23d70b2c-fc53-3086-b7f8-bc4ed86dac53,SESCO,II.5.1,Corrientes,AR-W,annual,2018,gas oil combustion consumption by agriculture machines,21.672,TJ,N2O,3.9,kg/TJ,84.5208,kg +da751f5b-d64e-39d8-b553-ecb63b5b4e53,SESCO,II.5.1,Córdoba,AR-X,annual,2018,gas oil combustion consumption by agriculture machines,55.48032,TJ,CO2,74100.0,kg/TJ,4111091.712,kg +85a9fc2a-f876-34b5-8431-0c93ddbe735e,SESCO,II.5.1,Córdoba,AR-X,annual,2018,gas oil combustion consumption by agriculture machines,55.48032,TJ,CH4,3.9,kg/TJ,216.373248,kg +85a9fc2a-f876-34b5-8431-0c93ddbe735e,SESCO,II.5.1,Córdoba,AR-X,annual,2018,gas oil combustion consumption by agriculture machines,55.48032,TJ,N2O,3.9,kg/TJ,216.373248,kg +069ad12a-833e-3622-a190-358ecf869900,SESCO,II.5.1,Mendoza,AR-M,annual,2018,gas oil combustion consumption by agriculture machines,80.15028,TJ,CO2,74100.0,kg/TJ,5939135.748,kg +7f43633a-9cba-3c59-8ed7-49e2ad87a21b,SESCO,II.5.1,Mendoza,AR-M,annual,2018,gas oil combustion consumption by agriculture machines,80.15028,TJ,CH4,3.9,kg/TJ,312.58609199999995,kg +7f43633a-9cba-3c59-8ed7-49e2ad87a21b,SESCO,II.5.1,Mendoza,AR-M,annual,2018,gas oil combustion consumption by agriculture machines,80.15028,TJ,N2O,3.9,kg/TJ,312.58609199999995,kg +5d2975c2-11f6-3890-8119-7f065c7096e4,SESCO,II.5.1,Santa Fe,AR-S,annual,2018,gas oil combustion consumption by agriculture machines,57.2502,TJ,CO2,74100.0,kg/TJ,4242239.82,kg +cf9ce32c-695d-363d-8291-8189a910d337,SESCO,II.5.1,Santa Fe,AR-S,annual,2018,gas oil combustion consumption by agriculture machines,57.2502,TJ,CH4,3.9,kg/TJ,223.27578,kg +cf9ce32c-695d-363d-8291-8189a910d337,SESCO,II.5.1,Santa Fe,AR-S,annual,2018,gas oil combustion consumption by agriculture machines,57.2502,TJ,N2O,3.9,kg/TJ,223.27578,kg +37e804dc-a7e2-3db3-8af3-13411c3da411,SESCO,II.5.1,Tucuman,AR-T,annual,2018,gas oil combustion consumption by agriculture machines,21.81648,TJ,CO2,74100.0,kg/TJ,1616601.1679999998,kg +eb4ce6d6-a309-3a27-b4a8-d07a7b965d3f,SESCO,II.5.1,Tucuman,AR-T,annual,2018,gas oil combustion consumption by agriculture machines,21.81648,TJ,CH4,3.9,kg/TJ,85.084272,kg +eb4ce6d6-a309-3a27-b4a8-d07a7b965d3f,SESCO,II.5.1,Tucuman,AR-T,annual,2018,gas oil combustion consumption by agriculture machines,21.81648,TJ,N2O,3.9,kg/TJ,85.084272,kg +a9d1011e-bc01-36d5-ae98-1aff351994b3,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,gas oil combustion consumption by to the public,6734.8629599999995,TJ,CO2,74100.0,kg/TJ,499053345.33599997,kg +c967db07-16ca-3e52-a669-f84398f6e375,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,gas oil combustion consumption by to the public,6734.8629599999995,TJ,CH4,3.9,kg/TJ,26265.965544,kg +c967db07-16ca-3e52-a669-f84398f6e375,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,gas oil combustion consumption by to the public,6734.8629599999995,TJ,N2O,3.9,kg/TJ,26265.965544,kg +f1b3e22b-bdd6-3cb1-8c38-8a0ea2c793ac,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,gas oil combustion consumption by to the public,653.5191599999999,TJ,CO2,74100.0,kg/TJ,48425769.756,kg +61d6bd1d-4e70-3b5a-b739-facb2ddbd76c,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,gas oil combustion consumption by to the public,653.5191599999999,TJ,CH4,3.9,kg/TJ,2548.7247239999997,kg +61d6bd1d-4e70-3b5a-b739-facb2ddbd76c,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,gas oil combustion consumption by to the public,653.5191599999999,TJ,N2O,3.9,kg/TJ,2548.7247239999997,kg +0382ea5e-bd3e-39cf-b951-d402d5053de6,SESCO,II.1.1,Catamarca,AR-K,annual,2018,gas oil combustion consumption by to the public,191.90556,TJ,CO2,74100.0,kg/TJ,14220201.996000001,kg +5d6c5568-451b-30b9-a3a9-f2368444f1fb,SESCO,II.1.1,Catamarca,AR-K,annual,2018,gas oil combustion consumption by to the public,191.90556,TJ,CH4,3.9,kg/TJ,748.431684,kg +5d6c5568-451b-30b9-a3a9-f2368444f1fb,SESCO,II.1.1,Catamarca,AR-K,annual,2018,gas oil combustion consumption by to the public,191.90556,TJ,N2O,3.9,kg/TJ,748.431684,kg +28f2162e-ec42-35d0-b453-a851e75244a8,SESCO,II.1.1,Chaco,AR-H,annual,2018,gas oil combustion consumption by to the public,240.88428,TJ,CO2,74100.0,kg/TJ,17849525.148,kg +4b8bfe07-00e4-3944-b9bb-68d5d50b306e,SESCO,II.1.1,Chaco,AR-H,annual,2018,gas oil combustion consumption by to the public,240.88428,TJ,CH4,3.9,kg/TJ,939.4486919999999,kg +4b8bfe07-00e4-3944-b9bb-68d5d50b306e,SESCO,II.1.1,Chaco,AR-H,annual,2018,gas oil combustion consumption by to the public,240.88428,TJ,N2O,3.9,kg/TJ,939.4486919999999,kg +bdc1a1e5-0b2a-364f-a12c-5f0c464d8a6e,SESCO,II.1.1,Chubut,AR-U,annual,2018,gas oil combustion consumption by to the public,925.53888,TJ,CO2,74100.0,kg/TJ,68582431.008,kg +e8d35c0b-ecaa-3cd5-92a6-1c2a1afb7644,SESCO,II.1.1,Chubut,AR-U,annual,2018,gas oil combustion consumption by to the public,925.53888,TJ,CH4,3.9,kg/TJ,3609.601632,kg +e8d35c0b-ecaa-3cd5-92a6-1c2a1afb7644,SESCO,II.1.1,Chubut,AR-U,annual,2018,gas oil combustion consumption by to the public,925.53888,TJ,N2O,3.9,kg/TJ,3609.601632,kg +1cc31470-9f7a-33e2-9816-62c11642dc9f,SESCO,II.1.1,Corrientes,AR-W,annual,2018,gas oil combustion consumption by to the public,433.33164,TJ,CO2,74100.0,kg/TJ,32109874.524,kg +16c118b6-24fd-384a-aeef-a9c6aad49196,SESCO,II.1.1,Corrientes,AR-W,annual,2018,gas oil combustion consumption by to the public,433.33164,TJ,CH4,3.9,kg/TJ,1689.9933959999998,kg +16c118b6-24fd-384a-aeef-a9c6aad49196,SESCO,II.1.1,Corrientes,AR-W,annual,2018,gas oil combustion consumption by to the public,433.33164,TJ,N2O,3.9,kg/TJ,1689.9933959999998,kg +8869935e-2349-3250-b496-f57610505596,SESCO,II.1.1,Córdoba,AR-X,annual,2018,gas oil combustion consumption by to the public,2909.53824,TJ,CO2,74100.0,kg/TJ,215596783.584,kg +957617d9-c141-3c2c-87e8-d41c1120fe4a,SESCO,II.1.1,Córdoba,AR-X,annual,2018,gas oil combustion consumption by to the public,2909.53824,TJ,CH4,3.9,kg/TJ,11347.199136,kg +957617d9-c141-3c2c-87e8-d41c1120fe4a,SESCO,II.1.1,Córdoba,AR-X,annual,2018,gas oil combustion consumption by to the public,2909.53824,TJ,N2O,3.9,kg/TJ,11347.199136,kg +9fa10010-b1bc-361d-b079-9c5a6bad9111,SESCO,II.1.1,Entre Rios,AR-E,annual,2018,gas oil combustion consumption by to the public,1027.9752,TJ,CO2,74100.0,kg/TJ,76172962.32000001,kg +d54aebad-9563-3814-8045-e1be7c5e2d60,SESCO,II.1.1,Entre Rios,AR-E,annual,2018,gas oil combustion consumption by to the public,1027.9752,TJ,CH4,3.9,kg/TJ,4009.1032800000003,kg +d54aebad-9563-3814-8045-e1be7c5e2d60,SESCO,II.1.1,Entre Rios,AR-E,annual,2018,gas oil combustion consumption by to the public,1027.9752,TJ,N2O,3.9,kg/TJ,4009.1032800000003,kg +5c07c325-6ac9-3927-8477-d62d7bfadb80,SESCO,II.1.1,Formosa,AR-P,annual,2018,gas oil combustion consumption by to the public,369.57984,TJ,CO2,74100.0,kg/TJ,27385866.143999998,kg +fe8ef99d-0ae2-38b5-8e9f-770a9480c9b2,SESCO,II.1.1,Formosa,AR-P,annual,2018,gas oil combustion consumption by to the public,369.57984,TJ,CH4,3.9,kg/TJ,1441.3613759999998,kg +fe8ef99d-0ae2-38b5-8e9f-770a9480c9b2,SESCO,II.1.1,Formosa,AR-P,annual,2018,gas oil combustion consumption by to the public,369.57984,TJ,N2O,3.9,kg/TJ,1441.3613759999998,kg +9f6f8397-e2ac-39da-afde-5310ab6b5e65,SESCO,II.1.1,Jujuy,AR-Y,annual,2018,gas oil combustion consumption by to the public,108.36,TJ,CO2,74100.0,kg/TJ,8029476.0,kg +d3c22005-46bf-341f-9fba-db05ec43a37e,SESCO,II.1.1,Jujuy,AR-Y,annual,2018,gas oil combustion consumption by to the public,108.36,TJ,CH4,3.9,kg/TJ,422.604,kg +d3c22005-46bf-341f-9fba-db05ec43a37e,SESCO,II.1.1,Jujuy,AR-Y,annual,2018,gas oil combustion consumption by to the public,108.36,TJ,N2O,3.9,kg/TJ,422.604,kg +5925eb69-b9be-3c8d-acbd-0a61c48908f4,SESCO,II.1.1,La Pampa,AR-L,annual,2018,gas oil combustion consumption by to the public,313.05204,TJ,CO2,74100.0,kg/TJ,23197156.163999997,kg +fb11c41b-8fd5-39e8-b506-2ab672e1f7e8,SESCO,II.1.1,La Pampa,AR-L,annual,2018,gas oil combustion consumption by to the public,313.05204,TJ,CH4,3.9,kg/TJ,1220.902956,kg +fb11c41b-8fd5-39e8-b506-2ab672e1f7e8,SESCO,II.1.1,La Pampa,AR-L,annual,2018,gas oil combustion consumption by to the public,313.05204,TJ,N2O,3.9,kg/TJ,1220.902956,kg +fa07285e-76ff-3f2f-a021-6e6415439e5e,SESCO,II.1.1,La Rioja,AR-F,annual,2018,gas oil combustion consumption by to the public,43.885799999999996,TJ,CO2,74100.0,kg/TJ,3251937.78,kg +cc9021d8-719c-3ee2-a0e7-3230d4f689a4,SESCO,II.1.1,La Rioja,AR-F,annual,2018,gas oil combustion consumption by to the public,43.885799999999996,TJ,CH4,3.9,kg/TJ,171.15462,kg +cc9021d8-719c-3ee2-a0e7-3230d4f689a4,SESCO,II.1.1,La Rioja,AR-F,annual,2018,gas oil combustion consumption by to the public,43.885799999999996,TJ,N2O,3.9,kg/TJ,171.15462,kg +ae388f59-8f26-3e9c-9512-044fc7139bef,SESCO,II.1.1,Mendoza,AR-M,annual,2018,gas oil combustion consumption by to the public,646.83696,TJ,CO2,74100.0,kg/TJ,47930618.736,kg +2d52ede1-8865-32eb-9a9e-cf1f4466eda9,SESCO,II.1.1,Mendoza,AR-M,annual,2018,gas oil combustion consumption by to the public,646.83696,TJ,CH4,3.9,kg/TJ,2522.664144,kg +2d52ede1-8865-32eb-9a9e-cf1f4466eda9,SESCO,II.1.1,Mendoza,AR-M,annual,2018,gas oil combustion consumption by to the public,646.83696,TJ,N2O,3.9,kg/TJ,2522.664144,kg +fd01f846-b2c5-3bbd-bdca-23f8107a1f0c,SESCO,II.1.1,Misiones,AR-N,annual,2018,gas oil combustion consumption by to the public,540.96924,TJ,CO2,74100.0,kg/TJ,40085820.684,kg +5b8f27d1-43eb-36af-a980-6d81f5d3a692,SESCO,II.1.1,Misiones,AR-N,annual,2018,gas oil combustion consumption by to the public,540.96924,TJ,CH4,3.9,kg/TJ,2109.780036,kg +5b8f27d1-43eb-36af-a980-6d81f5d3a692,SESCO,II.1.1,Misiones,AR-N,annual,2018,gas oil combustion consumption by to the public,540.96924,TJ,N2O,3.9,kg/TJ,2109.780036,kg +ccb23134-ca24-3681-9499-5207ac09cba0,SESCO,II.1.1,Neuquén,AR-Q,annual,2018,gas oil combustion consumption by to the public,128.15376,TJ,CO2,74100.0,kg/TJ,9496193.616,kg +a63d086c-22d0-3792-9f1a-9a36b74cf7e7,SESCO,II.1.1,Neuquén,AR-Q,annual,2018,gas oil combustion consumption by to the public,128.15376,TJ,CH4,3.9,kg/TJ,499.799664,kg +a63d086c-22d0-3792-9f1a-9a36b74cf7e7,SESCO,II.1.1,Neuquén,AR-Q,annual,2018,gas oil combustion consumption by to the public,128.15376,TJ,N2O,3.9,kg/TJ,499.799664,kg +c4858b45-6590-351d-b435-61ce5d72255f,SESCO,II.1.1,Rio Negro,AR-R,annual,2018,gas oil combustion consumption by to the public,370.80791999999997,TJ,CO2,74100.0,kg/TJ,27476866.871999998,kg +1bc594db-d257-35c4-ad43-0aa7ec802b78,SESCO,II.1.1,Rio Negro,AR-R,annual,2018,gas oil combustion consumption by to the public,370.80791999999997,TJ,CH4,3.9,kg/TJ,1446.150888,kg +1bc594db-d257-35c4-ad43-0aa7ec802b78,SESCO,II.1.1,Rio Negro,AR-R,annual,2018,gas oil combustion consumption by to the public,370.80791999999997,TJ,N2O,3.9,kg/TJ,1446.150888,kg +871363f6-9d95-344c-9757-820f0f38b101,SESCO,II.1.1,Salta,AR-A,annual,2018,gas oil combustion consumption by to the public,41.86308,TJ,CO2,74100.0,kg/TJ,3102054.2279999997,kg +0ee893a3-0c6e-34b4-913e-0222116fb865,SESCO,II.1.1,Salta,AR-A,annual,2018,gas oil combustion consumption by to the public,41.86308,TJ,CH4,3.9,kg/TJ,163.266012,kg +0ee893a3-0c6e-34b4-913e-0222116fb865,SESCO,II.1.1,Salta,AR-A,annual,2018,gas oil combustion consumption by to the public,41.86308,TJ,N2O,3.9,kg/TJ,163.266012,kg +e5294b87-13f9-3f68-916b-7fa8a933b588,SESCO,II.1.1,San Juan,AR-J,annual,2018,gas oil combustion consumption by to the public,259.91952,TJ,CO2,74100.0,kg/TJ,19260036.432,kg +2e4015a5-add1-3ebf-899e-9d81c1abca95,SESCO,II.1.1,San Juan,AR-J,annual,2018,gas oil combustion consumption by to the public,259.91952,TJ,CH4,3.9,kg/TJ,1013.6861279999999,kg +2e4015a5-add1-3ebf-899e-9d81c1abca95,SESCO,II.1.1,San Juan,AR-J,annual,2018,gas oil combustion consumption by to the public,259.91952,TJ,N2O,3.9,kg/TJ,1013.6861279999999,kg +2c1cac57-14e4-3fbb-aac8-7864eab2dca6,SESCO,II.1.1,San Luis,AR-D,annual,2018,gas oil combustion consumption by to the public,520.01964,TJ,CO2,74100.0,kg/TJ,38533455.324,kg +41ac8a64-d21e-3a1a-854e-06a48428f410,SESCO,II.1.1,San Luis,AR-D,annual,2018,gas oil combustion consumption by to the public,520.01964,TJ,CH4,3.9,kg/TJ,2028.0765959999999,kg +41ac8a64-d21e-3a1a-854e-06a48428f410,SESCO,II.1.1,San Luis,AR-D,annual,2018,gas oil combustion consumption by to the public,520.01964,TJ,N2O,3.9,kg/TJ,2028.0765959999999,kg +421b7e84-f487-3f70-bb2d-5de0215a9971,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2018,gas oil combustion consumption by to the public,383.34156,TJ,CO2,74100.0,kg/TJ,28405609.596,kg +b4a5c5c6-2d8c-36fa-a579-4333baa30134,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2018,gas oil combustion consumption by to the public,383.34156,TJ,CH4,3.9,kg/TJ,1495.032084,kg +b4a5c5c6-2d8c-36fa-a579-4333baa30134,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2018,gas oil combustion consumption by to the public,383.34156,TJ,N2O,3.9,kg/TJ,1495.032084,kg +a332ec35-618d-38e0-be2b-8f0ef47275f1,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,gas oil combustion consumption by to the public,1643.46,TJ,CO2,74100.0,kg/TJ,121780386.0,kg +777f6a66-11e5-36d6-acef-569cc365f05f,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,gas oil combustion consumption by to the public,1643.46,TJ,CH4,3.9,kg/TJ,6409.494,kg +777f6a66-11e5-36d6-acef-569cc365f05f,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,gas oil combustion consumption by to the public,1643.46,TJ,N2O,3.9,kg/TJ,6409.494,kg +564d89ce-ad24-3840-8da4-f018a32acb20,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2018,gas oil combustion consumption by to the public,270.86388,TJ,CO2,74100.0,kg/TJ,20071013.508,kg +72bb9e8d-cdfc-36c5-bcee-096df2b8166d,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2018,gas oil combustion consumption by to the public,270.86388,TJ,CH4,3.9,kg/TJ,1056.369132,kg +72bb9e8d-cdfc-36c5-bcee-096df2b8166d,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2018,gas oil combustion consumption by to the public,270.86388,TJ,N2O,3.9,kg/TJ,1056.369132,kg +b0edf4c5-d02e-34cf-a477-806411eb3a7d,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2018,gas oil combustion consumption by to the public,33.952799999999996,TJ,CO2,74100.0,kg/TJ,2515902.4799999995,kg +ff8270b9-8e96-3089-9305-3934da609ce1,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2018,gas oil combustion consumption by to the public,33.952799999999996,TJ,CH4,3.9,kg/TJ,132.41591999999997,kg +ff8270b9-8e96-3089-9305-3934da609ce1,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2018,gas oil combustion consumption by to the public,33.952799999999996,TJ,N2O,3.9,kg/TJ,132.41591999999997,kg +4e2d7148-d484-3da6-abbf-bbd23d2d971c,SESCO,II.1.1,Tucuman,AR-T,annual,2018,gas oil combustion consumption by to the public,59.27292,TJ,CO2,74100.0,kg/TJ,4392123.3719999995,kg +80b39511-799f-3b2a-b83d-40148b1d8503,SESCO,II.1.1,Tucuman,AR-T,annual,2018,gas oil combustion consumption by to the public,59.27292,TJ,CH4,3.9,kg/TJ,231.164388,kg +80b39511-799f-3b2a-b83d-40148b1d8503,SESCO,II.1.1,Tucuman,AR-T,annual,2018,gas oil combustion consumption by to the public,59.27292,TJ,N2O,3.9,kg/TJ,231.164388,kg +6ba018fb-1efc-3dd5-b1fb-18e8905e5f00,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,gas oil combustion consumption by to the public,2539.74168,TJ,CO2,74100.0,kg/TJ,188194858.488,kg +14c17f71-003b-3d17-9586-d60055c4fa55,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,gas oil combustion consumption by to the public,2539.74168,TJ,CH4,3.9,kg/TJ,9904.992552,kg +14c17f71-003b-3d17-9586-d60055c4fa55,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,gas oil combustion consumption by to the public,2539.74168,TJ,N2O,3.9,kg/TJ,9904.992552,kg +20602188-f71e-3ce7-b1a5-08c77edb5509,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,gas oil combustion consumption by to the public,458.68788,TJ,CO2,74100.0,kg/TJ,33988771.908,kg +32388462-48b3-3896-aa35-0e20a0f744ef,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,gas oil combustion consumption by to the public,458.68788,TJ,CH4,3.9,kg/TJ,1788.882732,kg +32388462-48b3-3896-aa35-0e20a0f744ef,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,gas oil combustion consumption by to the public,458.68788,TJ,N2O,3.9,kg/TJ,1788.882732,kg +7a72e145-498c-3fe7-b956-28415d67cacb,SESCO,II.1.1,Catamarca,AR-K,annual,2018,gas oil combustion consumption by to the public,146.6472,TJ,CO2,74100.0,kg/TJ,10866557.52,kg +58f1affa-1f22-3d89-a6d9-366eac59d26d,SESCO,II.1.1,Catamarca,AR-K,annual,2018,gas oil combustion consumption by to the public,146.6472,TJ,CH4,3.9,kg/TJ,571.92408,kg +58f1affa-1f22-3d89-a6d9-366eac59d26d,SESCO,II.1.1,Catamarca,AR-K,annual,2018,gas oil combustion consumption by to the public,146.6472,TJ,N2O,3.9,kg/TJ,571.92408,kg +8ee00f94-198a-3ccb-b97f-b2b0d2e4ac1e,SESCO,II.1.1,Chaco,AR-H,annual,2018,gas oil combustion consumption by to the public,97.99356,TJ,CO2,74100.0,kg/TJ,7261322.796,kg +997b396a-57df-3a88-b16d-15e2795628cc,SESCO,II.1.1,Chaco,AR-H,annual,2018,gas oil combustion consumption by to the public,97.99356,TJ,CH4,3.9,kg/TJ,382.174884,kg +997b396a-57df-3a88-b16d-15e2795628cc,SESCO,II.1.1,Chaco,AR-H,annual,2018,gas oil combustion consumption by to the public,97.99356,TJ,N2O,3.9,kg/TJ,382.174884,kg +6f9c1201-02b2-32db-8e80-18948366ba61,SESCO,II.1.1,Chubut,AR-U,annual,2018,gas oil combustion consumption by to the public,387.92879999999997,TJ,CO2,74100.0,kg/TJ,28745524.08,kg +4c0a2a96-f4c0-3523-8155-38237b71e22a,SESCO,II.1.1,Chubut,AR-U,annual,2018,gas oil combustion consumption by to the public,387.92879999999997,TJ,CH4,3.9,kg/TJ,1512.92232,kg +4c0a2a96-f4c0-3523-8155-38237b71e22a,SESCO,II.1.1,Chubut,AR-U,annual,2018,gas oil combustion consumption by to the public,387.92879999999997,TJ,N2O,3.9,kg/TJ,1512.92232,kg +6373dfc6-c7e4-3d46-859f-595b47246bce,SESCO,II.1.1,Corrientes,AR-W,annual,2018,gas oil combustion consumption by to the public,163.0818,TJ,CO2,74100.0,kg/TJ,12084361.379999999,kg +527f9827-08b3-3263-a877-20be935c03d8,SESCO,II.1.1,Corrientes,AR-W,annual,2018,gas oil combustion consumption by to the public,163.0818,TJ,CH4,3.9,kg/TJ,636.01902,kg +527f9827-08b3-3263-a877-20be935c03d8,SESCO,II.1.1,Corrientes,AR-W,annual,2018,gas oil combustion consumption by to the public,163.0818,TJ,N2O,3.9,kg/TJ,636.01902,kg +0433f5a7-a641-36c0-abdc-8dd3981efc54,SESCO,II.1.1,Córdoba,AR-X,annual,2018,gas oil combustion consumption by to the public,821.62164,TJ,CO2,74100.0,kg/TJ,60882163.524,kg +e5d077a8-5d33-3597-b700-6902cac41583,SESCO,II.1.1,Córdoba,AR-X,annual,2018,gas oil combustion consumption by to the public,821.62164,TJ,CH4,3.9,kg/TJ,3204.324396,kg +e5d077a8-5d33-3597-b700-6902cac41583,SESCO,II.1.1,Córdoba,AR-X,annual,2018,gas oil combustion consumption by to the public,821.62164,TJ,N2O,3.9,kg/TJ,3204.324396,kg +539a9941-163d-33eb-b1aa-23082cb7d911,SESCO,II.1.1,Entre Rios,AR-E,annual,2018,gas oil combustion consumption by to the public,376.98444,TJ,CO2,74100.0,kg/TJ,27934547.004,kg +f872d214-fcf6-346d-848c-a55f82f064c6,SESCO,II.1.1,Entre Rios,AR-E,annual,2018,gas oil combustion consumption by to the public,376.98444,TJ,CH4,3.9,kg/TJ,1470.239316,kg +f872d214-fcf6-346d-848c-a55f82f064c6,SESCO,II.1.1,Entre Rios,AR-E,annual,2018,gas oil combustion consumption by to the public,376.98444,TJ,N2O,3.9,kg/TJ,1470.239316,kg +4c2f77af-2e38-3a77-853e-9b527a39c1a4,SESCO,II.1.1,Formosa,AR-P,annual,2018,gas oil combustion consumption by to the public,213.108,TJ,CO2,74100.0,kg/TJ,15791302.8,kg +5b9ccdb2-354f-3f4d-b930-af94a4ff11de,SESCO,II.1.1,Formosa,AR-P,annual,2018,gas oil combustion consumption by to the public,213.108,TJ,CH4,3.9,kg/TJ,831.1212,kg +5b9ccdb2-354f-3f4d-b930-af94a4ff11de,SESCO,II.1.1,Formosa,AR-P,annual,2018,gas oil combustion consumption by to the public,213.108,TJ,N2O,3.9,kg/TJ,831.1212,kg +b7d80819-ee05-390c-9ef6-c3a6fb3a4b7f,SESCO,II.1.1,Jujuy,AR-Y,annual,2018,gas oil combustion consumption by to the public,50.24292,TJ,CO2,74100.0,kg/TJ,3723000.372,kg +f5bdff82-04db-31de-b265-1e612a0992e2,SESCO,II.1.1,Jujuy,AR-Y,annual,2018,gas oil combustion consumption by to the public,50.24292,TJ,CH4,3.9,kg/TJ,195.947388,kg +f5bdff82-04db-31de-b265-1e612a0992e2,SESCO,II.1.1,Jujuy,AR-Y,annual,2018,gas oil combustion consumption by to the public,50.24292,TJ,N2O,3.9,kg/TJ,195.947388,kg +94329e3a-09da-3c87-87f7-14912c990701,SESCO,II.1.1,La Pampa,AR-L,annual,2018,gas oil combustion consumption by to the public,114.03084,TJ,CO2,74100.0,kg/TJ,8449685.243999999,kg +5c541777-ddd2-30ad-9082-5fb997fe2d3c,SESCO,II.1.1,La Pampa,AR-L,annual,2018,gas oil combustion consumption by to the public,114.03084,TJ,CH4,3.9,kg/TJ,444.72027599999996,kg +5c541777-ddd2-30ad-9082-5fb997fe2d3c,SESCO,II.1.1,La Pampa,AR-L,annual,2018,gas oil combustion consumption by to the public,114.03084,TJ,N2O,3.9,kg/TJ,444.72027599999996,kg +eed2ee45-920a-3d6e-aaf5-7432f5662a82,SESCO,II.1.1,La Rioja,AR-F,annual,2018,gas oil combustion consumption by to the public,52.30176,TJ,CO2,74100.0,kg/TJ,3875560.416,kg +e11fb791-136b-35c7-8704-02ca3f23e3b9,SESCO,II.1.1,La Rioja,AR-F,annual,2018,gas oil combustion consumption by to the public,52.30176,TJ,CH4,3.9,kg/TJ,203.976864,kg +e11fb791-136b-35c7-8704-02ca3f23e3b9,SESCO,II.1.1,La Rioja,AR-F,annual,2018,gas oil combustion consumption by to the public,52.30176,TJ,N2O,3.9,kg/TJ,203.976864,kg +ae6fe071-1fd2-3fd6-88b3-15948dab2a3c,SESCO,II.1.1,Mendoza,AR-M,annual,2018,gas oil combustion consumption by to the public,257.96904,TJ,CO2,74100.0,kg/TJ,19115505.864,kg +8c7f70fc-8a9b-390e-8489-531d6df3ba89,SESCO,II.1.1,Mendoza,AR-M,annual,2018,gas oil combustion consumption by to the public,257.96904,TJ,CH4,3.9,kg/TJ,1006.079256,kg +8c7f70fc-8a9b-390e-8489-531d6df3ba89,SESCO,II.1.1,Mendoza,AR-M,annual,2018,gas oil combustion consumption by to the public,257.96904,TJ,N2O,3.9,kg/TJ,1006.079256,kg +7d7b3da2-af68-38a8-9b97-47cc65cc740e,SESCO,II.1.1,Misiones,AR-N,annual,2018,gas oil combustion consumption by to the public,168.60816,TJ,CO2,74100.0,kg/TJ,12493864.656,kg +b2cf0bba-6210-3a0b-afac-e10b86103d27,SESCO,II.1.1,Misiones,AR-N,annual,2018,gas oil combustion consumption by to the public,168.60816,TJ,CH4,3.9,kg/TJ,657.571824,kg +b2cf0bba-6210-3a0b-afac-e10b86103d27,SESCO,II.1.1,Misiones,AR-N,annual,2018,gas oil combustion consumption by to the public,168.60816,TJ,N2O,3.9,kg/TJ,657.571824,kg +f800f6ee-d448-3582-8b51-279e0e769807,SESCO,II.1.1,Neuquén,AR-Q,annual,2018,gas oil combustion consumption by to the public,178.9746,TJ,CO2,74100.0,kg/TJ,13262017.860000001,kg +38a36f58-ebe3-3be1-89f8-d45f2cc3dec8,SESCO,II.1.1,Neuquén,AR-Q,annual,2018,gas oil combustion consumption by to the public,178.9746,TJ,CH4,3.9,kg/TJ,698.00094,kg +38a36f58-ebe3-3be1-89f8-d45f2cc3dec8,SESCO,II.1.1,Neuquén,AR-Q,annual,2018,gas oil combustion consumption by to the public,178.9746,TJ,N2O,3.9,kg/TJ,698.00094,kg +1b9ecd3a-598d-3919-8281-17700ffe8d99,SESCO,II.1.1,Rio Negro,AR-R,annual,2018,gas oil combustion consumption by to the public,235.28567999999999,TJ,CO2,74100.0,kg/TJ,17434668.888,kg +e1e0785e-fe78-3cd6-adb3-6f92940f907c,SESCO,II.1.1,Rio Negro,AR-R,annual,2018,gas oil combustion consumption by to the public,235.28567999999999,TJ,CH4,3.9,kg/TJ,917.6141519999999,kg +e1e0785e-fe78-3cd6-adb3-6f92940f907c,SESCO,II.1.1,Rio Negro,AR-R,annual,2018,gas oil combustion consumption by to the public,235.28567999999999,TJ,N2O,3.9,kg/TJ,917.6141519999999,kg +0159ea42-144c-34af-bf6f-9375fbd489d0,SESCO,II.1.1,Salta,AR-A,annual,2018,gas oil combustion consumption by to the public,30.62976,TJ,CO2,74100.0,kg/TJ,2269665.216,kg +ef86a670-1d17-3617-a960-58b4d87247f0,SESCO,II.1.1,Salta,AR-A,annual,2018,gas oil combustion consumption by to the public,30.62976,TJ,CH4,3.9,kg/TJ,119.456064,kg +ef86a670-1d17-3617-a960-58b4d87247f0,SESCO,II.1.1,Salta,AR-A,annual,2018,gas oil combustion consumption by to the public,30.62976,TJ,N2O,3.9,kg/TJ,119.456064,kg +52c008e4-e50b-3dc1-9421-f79c6f7eb006,SESCO,II.1.1,San Juan,AR-J,annual,2018,gas oil combustion consumption by to the public,91.16687999999999,TJ,CO2,74100.0,kg/TJ,6755465.807999999,kg +f98872b8-2998-383c-af45-0da158976a1b,SESCO,II.1.1,San Juan,AR-J,annual,2018,gas oil combustion consumption by to the public,91.16687999999999,TJ,CH4,3.9,kg/TJ,355.55083199999996,kg +f98872b8-2998-383c-af45-0da158976a1b,SESCO,II.1.1,San Juan,AR-J,annual,2018,gas oil combustion consumption by to the public,91.16687999999999,TJ,N2O,3.9,kg/TJ,355.55083199999996,kg +a4fc6c7b-cd40-30e2-9f82-7afe3191049f,SESCO,II.1.1,San Luis,AR-D,annual,2018,gas oil combustion consumption by to the public,134.65536,TJ,CO2,74100.0,kg/TJ,9977962.176,kg +42f5d3d3-8303-3b0b-93f7-f164fe36116b,SESCO,II.1.1,San Luis,AR-D,annual,2018,gas oil combustion consumption by to the public,134.65536,TJ,CH4,3.9,kg/TJ,525.155904,kg +42f5d3d3-8303-3b0b-93f7-f164fe36116b,SESCO,II.1.1,San Luis,AR-D,annual,2018,gas oil combustion consumption by to the public,134.65536,TJ,N2O,3.9,kg/TJ,525.155904,kg +94db4925-1098-38de-9212-8c3df50b481f,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2018,gas oil combustion consumption by to the public,206.20908,TJ,CO2,74100.0,kg/TJ,15280092.828,kg +17c316d1-4c74-3b82-858d-1e5496ab13c0,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2018,gas oil combustion consumption by to the public,206.20908,TJ,CH4,3.9,kg/TJ,804.215412,kg +17c316d1-4c74-3b82-858d-1e5496ab13c0,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2018,gas oil combustion consumption by to the public,206.20908,TJ,N2O,3.9,kg/TJ,804.215412,kg +42d1ad7c-711c-3a6c-93a4-0716d43ad309,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,gas oil combustion consumption by to the public,716.15124,TJ,CO2,74100.0,kg/TJ,53066806.884,kg +98955634-e6d4-3931-abde-fd35a37f8d5b,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,gas oil combustion consumption by to the public,716.15124,TJ,CH4,3.9,kg/TJ,2792.989836,kg +98955634-e6d4-3931-abde-fd35a37f8d5b,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,gas oil combustion consumption by to the public,716.15124,TJ,N2O,3.9,kg/TJ,2792.989836,kg +18ef7f06-4e1b-378b-9b45-e5e856ef54bf,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2018,gas oil combustion consumption by to the public,136.20852,TJ,CO2,74100.0,kg/TJ,10093051.332,kg +46a3779b-a345-305e-8f81-392736048282,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2018,gas oil combustion consumption by to the public,136.20852,TJ,CH4,3.9,kg/TJ,531.213228,kg +46a3779b-a345-305e-8f81-392736048282,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2018,gas oil combustion consumption by to the public,136.20852,TJ,N2O,3.9,kg/TJ,531.213228,kg +59940fa4-d726-3754-9695-818ad2bd16bb,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2018,gas oil combustion consumption by to the public,62.054159999999996,TJ,CO2,74100.0,kg/TJ,4598213.256,kg +876ba50b-4082-34d0-8908-9ee96dfe2687,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2018,gas oil combustion consumption by to the public,62.054159999999996,TJ,CH4,3.9,kg/TJ,242.01122399999997,kg +876ba50b-4082-34d0-8908-9ee96dfe2687,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2018,gas oil combustion consumption by to the public,62.054159999999996,TJ,N2O,3.9,kg/TJ,242.01122399999997,kg +17540e38-ade6-3031-95a9-973e33408375,SESCO,II.1.1,Tucuman,AR-T,annual,2018,gas oil combustion consumption by to the public,20.91348,TJ,CO2,74100.0,kg/TJ,1549688.868,kg +0ae90ada-5369-3a7f-8ce2-96dc37e28eba,SESCO,II.1.1,Tucuman,AR-T,annual,2018,gas oil combustion consumption by to the public,20.91348,TJ,CH4,3.9,kg/TJ,81.562572,kg +0ae90ada-5369-3a7f-8ce2-96dc37e28eba,SESCO,II.1.1,Tucuman,AR-T,annual,2018,gas oil combustion consumption by to the public,20.91348,TJ,N2O,3.9,kg/TJ,81.562572,kg +f31bd348-f2b0-3c36-b581-0140a71a69a7,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,jet kerosene combustion consumption by to the public,8.397950999999999,TJ,CO2,71500.0,kg/TJ,600453.4964999999,kg +dfdf1e36-edec-3f82-9f52-4fb90ce50eb1,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,jet kerosene combustion consumption by to the public,8.397950999999999,TJ,CH4,0.5,kg/TJ,4.1989754999999995,kg +da03b7d1-9d79-3a4b-9aa2-0869b5229436,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,jet kerosene combustion consumption by to the public,8.397950999999999,TJ,N2O,2.0,kg/TJ,16.795901999999998,kg +b0ac59bb-1b40-384d-ab1e-81a2e08de6d8,SESCO,II.1.1,Córdoba,AR-X,annual,2018,jet kerosene combustion consumption by to the public,4.214701999999999,TJ,CO2,71500.0,kg/TJ,301351.1929999999,kg +de71f510-b0f8-3165-8235-32fcf4c8ffba,SESCO,II.1.1,Córdoba,AR-X,annual,2018,jet kerosene combustion consumption by to the public,4.214701999999999,TJ,CH4,0.5,kg/TJ,2.1073509999999995,kg +b0d62bb1-4e1a-3c3f-9953-ddf0bc6e11dd,SESCO,II.1.1,Córdoba,AR-X,annual,2018,jet kerosene combustion consumption by to the public,4.214701999999999,TJ,N2O,2.0,kg/TJ,8.429403999999998,kg +a2e28935-1962-3961-908b-44f5ffec7371,SESCO,II.1.1,Entre Rios,AR-E,annual,2018,jet kerosene combustion consumption by to the public,2.0129919999999997,TJ,CO2,71500.0,kg/TJ,143928.92799999999,kg +044e9e65-5577-329e-8d50-37e3cc2dde68,SESCO,II.1.1,Entre Rios,AR-E,annual,2018,jet kerosene combustion consumption by to the public,2.0129919999999997,TJ,CH4,0.5,kg/TJ,1.0064959999999998,kg +2f4d482d-5fbe-3737-861d-079b01100550,SESCO,II.1.1,Entre Rios,AR-E,annual,2018,jet kerosene combustion consumption by to the public,2.0129919999999997,TJ,N2O,2.0,kg/TJ,4.025983999999999,kg +a325e54c-4718-32cc-bb38-3abbe8e35e8b,SESCO,II.1.1,Misiones,AR-N,annual,2018,jet kerosene combustion consumption by to the public,0.6605129999999999,TJ,CO2,71500.0,kg/TJ,47226.67949999999,kg +f2e82b4e-627b-3239-b444-d822cfb4cff2,SESCO,II.1.1,Misiones,AR-N,annual,2018,jet kerosene combustion consumption by to the public,0.6605129999999999,TJ,CH4,0.5,kg/TJ,0.33025649999999995,kg +a5052063-37a1-34fd-a71f-67d395945631,SESCO,II.1.1,Misiones,AR-N,annual,2018,jet kerosene combustion consumption by to the public,0.6605129999999999,TJ,N2O,2.0,kg/TJ,1.3210259999999998,kg +baf44c77-4723-33df-9bba-e730c8a9f908,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,jet kerosene combustion consumption by to the public,4.4977789999999995,TJ,CO2,71500.0,kg/TJ,321591.19849999994,kg +12271e99-d2be-342c-8e2e-822052bf80ab,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,jet kerosene combustion consumption by to the public,4.4977789999999995,TJ,CH4,0.5,kg/TJ,2.2488894999999998,kg +9cb3ec24-c4c5-358e-82a5-a36c3327442d,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,jet kerosene combustion consumption by to the public,4.4977789999999995,TJ,N2O,2.0,kg/TJ,8.995557999999999,kg +f6a38ac4-24c7-3e1f-992a-65cd619eb287,SESCO,I.3.1,San Luis,AR-D,annual,2018,gas oil combustion consumption by petrochemical industries,5.30964,TJ,CO2,74100.0,kg/TJ,393444.324,kg +04427c7a-a1b7-3667-902a-514cbeeca0a2,SESCO,I.3.1,San Luis,AR-D,annual,2018,gas oil combustion consumption by petrochemical industries,5.30964,TJ,CH4,3.9,kg/TJ,20.707596,kg +04427c7a-a1b7-3667-902a-514cbeeca0a2,SESCO,I.3.1,San Luis,AR-D,annual,2018,gas oil combustion consumption by petrochemical industries,5.30964,TJ,N2O,3.9,kg/TJ,20.707596,kg +4395b925-557e-3a41-8502-31b192ed04fd,SESCO,I.3.1,Capital Federal,AR-C,annual,2018,jet kerosene combustion consumption by petrochemical industries,2.20171,TJ,CO2,71500.0,kg/TJ,157422.26499999998,kg +0eefd8e7-1aaa-309e-bb54-d4039e0c77cb,SESCO,I.3.1,Capital Federal,AR-C,annual,2018,jet kerosene combustion consumption by petrochemical industries,2.20171,TJ,CH4,0.5,kg/TJ,1.100855,kg +5d2f9761-8e07-3a9a-8e85-c35bc4d193b8,SESCO,I.3.1,Capital Federal,AR-C,annual,2018,jet kerosene combustion consumption by petrochemical industries,2.20171,TJ,N2O,2.0,kg/TJ,4.40342,kg +e151d762-0f7a-3d04-9f66-9b5f9e7f32a2,SESCO,II.2.1,Buenos Aires,AR-B,annual,2018,gas oil combustion consumption by railway transport,176.69904,TJ,CO2,74100.0,kg/TJ,13093398.864,kg +6481aae7-bbae-3e38-a764-cae9fd1b6326,SESCO,II.2.1,Buenos Aires,AR-B,annual,2018,gas oil combustion consumption by railway transport,176.69904,TJ,CH4,3.9,kg/TJ,689.126256,kg +6481aae7-bbae-3e38-a764-cae9fd1b6326,SESCO,II.2.1,Buenos Aires,AR-B,annual,2018,gas oil combustion consumption by railway transport,176.69904,TJ,N2O,3.9,kg/TJ,689.126256,kg +23a5ada7-6b1a-31a0-91f7-1be76e2da253,SESCO,II.2.1,Capital Federal,AR-C,annual,2018,gas oil combustion consumption by railway transport,2.709,TJ,CO2,74100.0,kg/TJ,200736.9,kg +3b642f3e-23d3-3976-8709-314b4c84e4ab,SESCO,II.2.1,Capital Federal,AR-C,annual,2018,gas oil combustion consumption by railway transport,2.709,TJ,CH4,3.9,kg/TJ,10.5651,kg +3b642f3e-23d3-3976-8709-314b4c84e4ab,SESCO,II.2.1,Capital Federal,AR-C,annual,2018,gas oil combustion consumption by railway transport,2.709,TJ,N2O,3.9,kg/TJ,10.5651,kg +40143310-8ed6-320a-a34d-b389628f708e,SESCO,II.2.1,La Pampa,AR-L,annual,2018,gas oil combustion consumption by railway transport,52.51848,TJ,CO2,74100.0,kg/TJ,3891619.368,kg +6ca24daf-e5a8-346a-9cc5-bae5180ea3cb,SESCO,II.2.1,La Pampa,AR-L,annual,2018,gas oil combustion consumption by railway transport,52.51848,TJ,CH4,3.9,kg/TJ,204.822072,kg +6ca24daf-e5a8-346a-9cc5-bae5180ea3cb,SESCO,II.2.1,La Pampa,AR-L,annual,2018,gas oil combustion consumption by railway transport,52.51848,TJ,N2O,3.9,kg/TJ,204.822072,kg +a86410fe-b814-3a9a-9d92-77a204bd22a1,SESCO,II.2.1,Santa Fe,AR-S,annual,2018,gas oil combustion consumption by railway transport,150.40368,TJ,CO2,74100.0,kg/TJ,11144912.688000001,kg +624d759d-ca5b-3ded-a10c-761d8c875171,SESCO,II.2.1,Santa Fe,AR-S,annual,2018,gas oil combustion consumption by railway transport,150.40368,TJ,CH4,3.9,kg/TJ,586.574352,kg +624d759d-ca5b-3ded-a10c-761d8c875171,SESCO,II.2.1,Santa Fe,AR-S,annual,2018,gas oil combustion consumption by railway transport,150.40368,TJ,N2O,3.9,kg/TJ,586.574352,kg +d90ffed3-bcdd-306f-89ca-da03e4381f7e,SESCO,II.2.1,Santiago del Estero,AR-G,annual,2018,gas oil combustion consumption by railway transport,32.508,TJ,CO2,74100.0,kg/TJ,2408842.8000000003,kg +89883193-4da0-3480-b2c0-4ce0302a05f9,SESCO,II.2.1,Santiago del Estero,AR-G,annual,2018,gas oil combustion consumption by railway transport,32.508,TJ,CH4,3.9,kg/TJ,126.78120000000001,kg +89883193-4da0-3480-b2c0-4ce0302a05f9,SESCO,II.2.1,Santiago del Estero,AR-G,annual,2018,gas oil combustion consumption by railway transport,32.508,TJ,N2O,3.9,kg/TJ,126.78120000000001,kg +1ad13d8a-2ad6-32a8-9257-8ecb63ab58fc,SESCO,II.2.1,Tucuman,AR-T,annual,2018,gas oil combustion consumption by railway transport,13.0032,TJ,CO2,74100.0,kg/TJ,963537.12,kg +5e98c047-20a4-3965-9221-1e077fe86717,SESCO,II.2.1,Tucuman,AR-T,annual,2018,gas oil combustion consumption by railway transport,13.0032,TJ,CH4,3.9,kg/TJ,50.71248,kg +5e98c047-20a4-3965-9221-1e077fe86717,SESCO,II.2.1,Tucuman,AR-T,annual,2018,gas oil combustion consumption by railway transport,13.0032,TJ,N2O,3.9,kg/TJ,50.71248,kg +c2f6e218-24af-3cb7-b373-ddcc1a2957f5,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,gas oil combustion consumption by freight transport,1909.55604,TJ,CO2,74100.0,kg/TJ,141498102.56399998,kg +3acda01d-d96e-310c-ba94-a39dbfc464b8,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,gas oil combustion consumption by freight transport,1909.55604,TJ,CH4,3.9,kg/TJ,7447.268556,kg +3acda01d-d96e-310c-ba94-a39dbfc464b8,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,gas oil combustion consumption by freight transport,1909.55604,TJ,N2O,3.9,kg/TJ,7447.268556,kg +3b0c1c2f-1787-3ed0-a19f-738d05ab56a8,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,gas oil combustion consumption by freight transport,335.013,TJ,CO2,74100.0,kg/TJ,24824463.299999997,kg +5e8d07ab-2a5d-3631-9694-dd25c63dc16c,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,gas oil combustion consumption by freight transport,335.013,TJ,CH4,3.9,kg/TJ,1306.5506999999998,kg +5e8d07ab-2a5d-3631-9694-dd25c63dc16c,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,gas oil combustion consumption by freight transport,335.013,TJ,N2O,3.9,kg/TJ,1306.5506999999998,kg +95878816-91d2-33cf-ad28-917f098c9741,SESCO,II.1.1,Catamarca,AR-K,annual,2018,gas oil combustion consumption by freight transport,20.5884,TJ,CO2,74100.0,kg/TJ,1525600.44,kg +afb43165-3dd2-3dd5-aaed-26521ff15991,SESCO,II.1.1,Catamarca,AR-K,annual,2018,gas oil combustion consumption by freight transport,20.5884,TJ,CH4,3.9,kg/TJ,80.29476,kg +afb43165-3dd2-3dd5-aaed-26521ff15991,SESCO,II.1.1,Catamarca,AR-K,annual,2018,gas oil combustion consumption by freight transport,20.5884,TJ,N2O,3.9,kg/TJ,80.29476,kg +3ac82718-165e-36fe-b44d-fc9003bcdca7,SESCO,II.1.1,Chaco,AR-H,annual,2018,gas oil combustion consumption by freight transport,19.39644,TJ,CO2,74100.0,kg/TJ,1437276.204,kg +d5ff4c52-c2c4-3168-88f6-85039a9945f0,SESCO,II.1.1,Chaco,AR-H,annual,2018,gas oil combustion consumption by freight transport,19.39644,TJ,CH4,3.9,kg/TJ,75.64611599999999,kg +d5ff4c52-c2c4-3168-88f6-85039a9945f0,SESCO,II.1.1,Chaco,AR-H,annual,2018,gas oil combustion consumption by freight transport,19.39644,TJ,N2O,3.9,kg/TJ,75.64611599999999,kg +211451a8-497b-3c02-9507-cc1fc0175b7d,SESCO,II.1.1,Chubut,AR-U,annual,2018,gas oil combustion consumption by freight transport,19.46868,TJ,CO2,74100.0,kg/TJ,1442629.1879999998,kg +c4a5b13f-ba3b-3173-a170-43c5d9815f38,SESCO,II.1.1,Chubut,AR-U,annual,2018,gas oil combustion consumption by freight transport,19.46868,TJ,CH4,3.9,kg/TJ,75.927852,kg +c4a5b13f-ba3b-3173-a170-43c5d9815f38,SESCO,II.1.1,Chubut,AR-U,annual,2018,gas oil combustion consumption by freight transport,19.46868,TJ,N2O,3.9,kg/TJ,75.927852,kg +7bfce643-cb23-3c49-ab25-384e871af422,SESCO,II.1.1,Corrientes,AR-W,annual,2018,gas oil combustion consumption by freight transport,54.25224,TJ,CO2,74100.0,kg/TJ,4020090.984,kg +1526e0d4-990c-3703-9dcd-1e1b3573413d,SESCO,II.1.1,Corrientes,AR-W,annual,2018,gas oil combustion consumption by freight transport,54.25224,TJ,CH4,3.9,kg/TJ,211.583736,kg +1526e0d4-990c-3703-9dcd-1e1b3573413d,SESCO,II.1.1,Corrientes,AR-W,annual,2018,gas oil combustion consumption by freight transport,54.25224,TJ,N2O,3.9,kg/TJ,211.583736,kg +e0a07db7-8951-33cf-b0f1-5809d9114f20,SESCO,II.1.1,Córdoba,AR-X,annual,2018,gas oil combustion consumption by freight transport,303.98592,TJ,CO2,74100.0,kg/TJ,22525356.672000002,kg +765d6b5b-81ac-3d29-ba9a-ebc041dbf96f,SESCO,II.1.1,Córdoba,AR-X,annual,2018,gas oil combustion consumption by freight transport,303.98592,TJ,CH4,3.9,kg/TJ,1185.545088,kg +765d6b5b-81ac-3d29-ba9a-ebc041dbf96f,SESCO,II.1.1,Córdoba,AR-X,annual,2018,gas oil combustion consumption by freight transport,303.98592,TJ,N2O,3.9,kg/TJ,1185.545088,kg +72228221-36db-39c0-aa33-7731e3e36216,SESCO,II.1.1,Entre Rios,AR-E,annual,2018,gas oil combustion consumption by freight transport,218.74272,TJ,CO2,74100.0,kg/TJ,16208835.552,kg +8a946cc8-c319-3e23-88ea-e42d5e580a5c,SESCO,II.1.1,Entre Rios,AR-E,annual,2018,gas oil combustion consumption by freight transport,218.74272,TJ,CH4,3.9,kg/TJ,853.096608,kg +8a946cc8-c319-3e23-88ea-e42d5e580a5c,SESCO,II.1.1,Entre Rios,AR-E,annual,2018,gas oil combustion consumption by freight transport,218.74272,TJ,N2O,3.9,kg/TJ,853.096608,kg +313db581-de14-3488-9009-220e27f90bd8,SESCO,II.1.1,Formosa,AR-P,annual,2018,gas oil combustion consumption by freight transport,8.88552,TJ,CO2,74100.0,kg/TJ,658417.032,kg +66d1fb7b-449d-3754-b1d3-09934ee48e41,SESCO,II.1.1,Formosa,AR-P,annual,2018,gas oil combustion consumption by freight transport,8.88552,TJ,CH4,3.9,kg/TJ,34.653527999999994,kg +66d1fb7b-449d-3754-b1d3-09934ee48e41,SESCO,II.1.1,Formosa,AR-P,annual,2018,gas oil combustion consumption by freight transport,8.88552,TJ,N2O,3.9,kg/TJ,34.653527999999994,kg +4d9cc7c5-89e3-39fd-843b-ef6e8057753d,SESCO,II.1.1,Jujuy,AR-Y,annual,2018,gas oil combustion consumption by freight transport,6.42936,TJ,CO2,74100.0,kg/TJ,476415.576,kg +a86cd8e2-7530-3190-a599-a8f5ae062bb0,SESCO,II.1.1,Jujuy,AR-Y,annual,2018,gas oil combustion consumption by freight transport,6.42936,TJ,CH4,3.9,kg/TJ,25.074504,kg +a86cd8e2-7530-3190-a599-a8f5ae062bb0,SESCO,II.1.1,Jujuy,AR-Y,annual,2018,gas oil combustion consumption by freight transport,6.42936,TJ,N2O,3.9,kg/TJ,25.074504,kg +955e3523-fce1-3e54-ab54-88093788d4bd,SESCO,II.1.1,La Pampa,AR-L,annual,2018,gas oil combustion consumption by freight transport,15.856679999999999,TJ,CO2,74100.0,kg/TJ,1174979.988,kg +fcb035e7-f289-388a-91c2-5df4c0bc3c60,SESCO,II.1.1,La Pampa,AR-L,annual,2018,gas oil combustion consumption by freight transport,15.856679999999999,TJ,CH4,3.9,kg/TJ,61.841052,kg +fcb035e7-f289-388a-91c2-5df4c0bc3c60,SESCO,II.1.1,La Pampa,AR-L,annual,2018,gas oil combustion consumption by freight transport,15.856679999999999,TJ,N2O,3.9,kg/TJ,61.841052,kg +69d67ee5-09e8-3421-a860-f4a908aa814a,SESCO,II.1.1,La Rioja,AR-F,annual,2018,gas oil combustion consumption by freight transport,4.6956,TJ,CO2,74100.0,kg/TJ,347943.95999999996,kg +3cdbea87-73bf-30c0-a24f-60c1b59d2f0a,SESCO,II.1.1,La Rioja,AR-F,annual,2018,gas oil combustion consumption by freight transport,4.6956,TJ,CH4,3.9,kg/TJ,18.312839999999998,kg +3cdbea87-73bf-30c0-a24f-60c1b59d2f0a,SESCO,II.1.1,La Rioja,AR-F,annual,2018,gas oil combustion consumption by freight transport,4.6956,TJ,N2O,3.9,kg/TJ,18.312839999999998,kg +fa9a00a1-f621-3f69-a8d5-7b5a6584e096,SESCO,II.1.1,Mendoza,AR-M,annual,2018,gas oil combustion consumption by freight transport,106.9152,TJ,CO2,74100.0,kg/TJ,7922416.32,kg +0e4a556c-6570-3b7b-9c6c-795fd298238c,SESCO,II.1.1,Mendoza,AR-M,annual,2018,gas oil combustion consumption by freight transport,106.9152,TJ,CH4,3.9,kg/TJ,416.96927999999997,kg +0e4a556c-6570-3b7b-9c6c-795fd298238c,SESCO,II.1.1,Mendoza,AR-M,annual,2018,gas oil combustion consumption by freight transport,106.9152,TJ,N2O,3.9,kg/TJ,416.96927999999997,kg +43844cab-8414-3146-b66b-dcf3692d5e4c,SESCO,II.1.1,Misiones,AR-N,annual,2018,gas oil combustion consumption by freight transport,57.539159999999995,TJ,CO2,74100.0,kg/TJ,4263651.756,kg +4d89f0bd-4531-31a6-b2c5-7ba7ab828081,SESCO,II.1.1,Misiones,AR-N,annual,2018,gas oil combustion consumption by freight transport,57.539159999999995,TJ,CH4,3.9,kg/TJ,224.40272399999998,kg +4d89f0bd-4531-31a6-b2c5-7ba7ab828081,SESCO,II.1.1,Misiones,AR-N,annual,2018,gas oil combustion consumption by freight transport,57.539159999999995,TJ,N2O,3.9,kg/TJ,224.40272399999998,kg +890ead8d-e00f-32d2-bdea-78de8fa2d831,SESCO,II.1.1,Neuquén,AR-Q,annual,2018,gas oil combustion consumption by freight transport,2.13108,TJ,CO2,74100.0,kg/TJ,157913.028,kg +b54f1d96-6db5-395c-b249-ff5e9f96c657,SESCO,II.1.1,Neuquén,AR-Q,annual,2018,gas oil combustion consumption by freight transport,2.13108,TJ,CH4,3.9,kg/TJ,8.311212,kg +b54f1d96-6db5-395c-b249-ff5e9f96c657,SESCO,II.1.1,Neuquén,AR-Q,annual,2018,gas oil combustion consumption by freight transport,2.13108,TJ,N2O,3.9,kg/TJ,8.311212,kg +8086c004-a3c8-3210-a807-e33aea4b4761,SESCO,II.1.1,Rio Negro,AR-R,annual,2018,gas oil combustion consumption by freight transport,59.48964,TJ,CO2,74100.0,kg/TJ,4408182.324,kg +d9f7053b-910b-3b19-af76-d6f6e3706736,SESCO,II.1.1,Rio Negro,AR-R,annual,2018,gas oil combustion consumption by freight transport,59.48964,TJ,CH4,3.9,kg/TJ,232.009596,kg +d9f7053b-910b-3b19-af76-d6f6e3706736,SESCO,II.1.1,Rio Negro,AR-R,annual,2018,gas oil combustion consumption by freight transport,59.48964,TJ,N2O,3.9,kg/TJ,232.009596,kg +86448846-538d-3265-9903-7804ac6897e7,SESCO,II.1.1,Salta,AR-A,annual,2018,gas oil combustion consumption by freight transport,21.63588,TJ,CO2,74100.0,kg/TJ,1603218.708,kg +5892e1a4-df95-3f70-bb1f-569643fdcfa0,SESCO,II.1.1,Salta,AR-A,annual,2018,gas oil combustion consumption by freight transport,21.63588,TJ,CH4,3.9,kg/TJ,84.379932,kg +5892e1a4-df95-3f70-bb1f-569643fdcfa0,SESCO,II.1.1,Salta,AR-A,annual,2018,gas oil combustion consumption by freight transport,21.63588,TJ,N2O,3.9,kg/TJ,84.379932,kg +f90e320a-dacd-3a3f-82fb-080a6a8ad259,SESCO,II.1.1,San Juan,AR-J,annual,2018,gas oil combustion consumption by freight transport,6.57384,TJ,CO2,74100.0,kg/TJ,487121.544,kg +6f884b76-f873-3a4d-b49a-5ec973b538cf,SESCO,II.1.1,San Juan,AR-J,annual,2018,gas oil combustion consumption by freight transport,6.57384,TJ,CH4,3.9,kg/TJ,25.637976,kg +6f884b76-f873-3a4d-b49a-5ec973b538cf,SESCO,II.1.1,San Juan,AR-J,annual,2018,gas oil combustion consumption by freight transport,6.57384,TJ,N2O,3.9,kg/TJ,25.637976,kg +782d70a9-a077-3828-ad32-4ad3b84014c1,SESCO,II.1.1,San Luis,AR-D,annual,2018,gas oil combustion consumption by freight transport,49.8456,TJ,CO2,74100.0,kg/TJ,3693558.96,kg +7ecb9bc9-2cef-30c5-a0c8-571520f1b548,SESCO,II.1.1,San Luis,AR-D,annual,2018,gas oil combustion consumption by freight transport,49.8456,TJ,CH4,3.9,kg/TJ,194.39783999999997,kg +7ecb9bc9-2cef-30c5-a0c8-571520f1b548,SESCO,II.1.1,San Luis,AR-D,annual,2018,gas oil combustion consumption by freight transport,49.8456,TJ,N2O,3.9,kg/TJ,194.39783999999997,kg +78bcd87e-c8c9-310a-9f03-81b585fe9d1c,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,gas oil combustion consumption by freight transport,547.3986,TJ,CO2,74100.0,kg/TJ,40562236.26,kg +1846549b-5f26-324c-84f9-90526f433a64,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,gas oil combustion consumption by freight transport,547.3986,TJ,CH4,3.9,kg/TJ,2134.85454,kg +1846549b-5f26-324c-84f9-90526f433a64,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,gas oil combustion consumption by freight transport,547.3986,TJ,N2O,3.9,kg/TJ,2134.85454,kg +8d06bd2f-6985-3110-9ea5-b7edc9ec0a33,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2018,gas oil combustion consumption by freight transport,42.33264,TJ,CO2,74100.0,kg/TJ,3136848.624,kg +526002db-9663-32e5-911d-facbcc43b605,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2018,gas oil combustion consumption by freight transport,42.33264,TJ,CH4,3.9,kg/TJ,165.097296,kg +526002db-9663-32e5-911d-facbcc43b605,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2018,gas oil combustion consumption by freight transport,42.33264,TJ,N2O,3.9,kg/TJ,165.097296,kg +926d2b60-4887-388e-84dc-cfa15b8fd649,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2018,gas oil combustion consumption by freight transport,2.3478,TJ,CO2,74100.0,kg/TJ,173971.97999999998,kg +84cd8545-fe8a-324c-9a11-a10ba6924c02,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2018,gas oil combustion consumption by freight transport,2.3478,TJ,CH4,3.9,kg/TJ,9.156419999999999,kg +84cd8545-fe8a-324c-9a11-a10ba6924c02,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2018,gas oil combustion consumption by freight transport,2.3478,TJ,N2O,3.9,kg/TJ,9.156419999999999,kg +d836f5d6-da2c-3f19-aa4a-201533bee95e,SESCO,II.1.1,Tucuman,AR-T,annual,2018,gas oil combustion consumption by freight transport,41.68248,TJ,CO2,74100.0,kg/TJ,3088671.7679999997,kg +235ddc46-5a71-3ac6-9ab5-9bff0318fe76,SESCO,II.1.1,Tucuman,AR-T,annual,2018,gas oil combustion consumption by freight transport,41.68248,TJ,CH4,3.9,kg/TJ,162.561672,kg +235ddc46-5a71-3ac6-9ab5-9bff0318fe76,SESCO,II.1.1,Tucuman,AR-T,annual,2018,gas oil combustion consumption by freight transport,41.68248,TJ,N2O,3.9,kg/TJ,162.561672,kg +c5c05688-303b-3891-a8dc-40e34575b03f,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,gas oil combustion consumption by freight transport,177.45756,TJ,CO2,74100.0,kg/TJ,13149605.196,kg +8abd3579-6ae2-3bb1-a181-b0c30b96870d,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,gas oil combustion consumption by freight transport,177.45756,TJ,CH4,3.9,kg/TJ,692.084484,kg +8abd3579-6ae2-3bb1-a181-b0c30b96870d,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,gas oil combustion consumption by freight transport,177.45756,TJ,N2O,3.9,kg/TJ,692.084484,kg +3f4bc744-21b9-30f6-ac5b-ecf68d5a1f1b,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,gas oil combustion consumption by freight transport,69.78384,TJ,CO2,74100.0,kg/TJ,5170982.544,kg +2e72a889-431d-3370-b3eb-0962752b4838,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,gas oil combustion consumption by freight transport,69.78384,TJ,CH4,3.9,kg/TJ,272.156976,kg +2e72a889-431d-3370-b3eb-0962752b4838,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,gas oil combustion consumption by freight transport,69.78384,TJ,N2O,3.9,kg/TJ,272.156976,kg +a56853a9-e7e0-317c-8c22-8fa3308579e6,SESCO,II.1.1,Catamarca,AR-K,annual,2018,gas oil combustion consumption by freight transport,0.65016,TJ,CO2,74100.0,kg/TJ,48176.856,kg +e0901290-aef6-3ab6-9014-d0f31ecac4c1,SESCO,II.1.1,Catamarca,AR-K,annual,2018,gas oil combustion consumption by freight transport,0.65016,TJ,CH4,3.9,kg/TJ,2.535624,kg +e0901290-aef6-3ab6-9014-d0f31ecac4c1,SESCO,II.1.1,Catamarca,AR-K,annual,2018,gas oil combustion consumption by freight transport,0.65016,TJ,N2O,3.9,kg/TJ,2.535624,kg +ea6544e9-3324-3421-8e1c-8331375dfc2f,SESCO,II.1.1,Chaco,AR-H,annual,2018,gas oil combustion consumption by freight transport,0.28896,TJ,CO2,74100.0,kg/TJ,21411.935999999998,kg +004e9435-b770-35ff-b69a-669eb91a2ff9,SESCO,II.1.1,Chaco,AR-H,annual,2018,gas oil combustion consumption by freight transport,0.28896,TJ,CH4,3.9,kg/TJ,1.126944,kg +004e9435-b770-35ff-b69a-669eb91a2ff9,SESCO,II.1.1,Chaco,AR-H,annual,2018,gas oil combustion consumption by freight transport,0.28896,TJ,N2O,3.9,kg/TJ,1.126944,kg +4c71f2d9-a0c3-3435-b3a5-544e75442cd4,SESCO,II.1.1,Chubut,AR-U,annual,2018,gas oil combustion consumption by freight transport,4.26216,TJ,CO2,74100.0,kg/TJ,315826.056,kg +f34c5d01-4103-3b24-b569-4a284b124418,SESCO,II.1.1,Chubut,AR-U,annual,2018,gas oil combustion consumption by freight transport,4.26216,TJ,CH4,3.9,kg/TJ,16.622424,kg +f34c5d01-4103-3b24-b569-4a284b124418,SESCO,II.1.1,Chubut,AR-U,annual,2018,gas oil combustion consumption by freight transport,4.26216,TJ,N2O,3.9,kg/TJ,16.622424,kg +27b5d854-aac2-3659-8c73-145e20defb7a,SESCO,II.1.1,Corrientes,AR-W,annual,2018,gas oil combustion consumption by freight transport,8.41596,TJ,CO2,74100.0,kg/TJ,623622.636,kg +d738f0c7-e411-342b-b0c8-fd47d6488565,SESCO,II.1.1,Corrientes,AR-W,annual,2018,gas oil combustion consumption by freight transport,8.41596,TJ,CH4,3.9,kg/TJ,32.822244,kg +d738f0c7-e411-342b-b0c8-fd47d6488565,SESCO,II.1.1,Corrientes,AR-W,annual,2018,gas oil combustion consumption by freight transport,8.41596,TJ,N2O,3.9,kg/TJ,32.822244,kg +c4ba01ab-809b-3ac5-8fb6-e2c5a9c0cf5a,SESCO,II.1.1,Córdoba,AR-X,annual,2018,gas oil combustion consumption by freight transport,19.79376,TJ,CO2,74100.0,kg/TJ,1466717.616,kg +0667d481-ed38-33ad-a452-e1d7ae9f8141,SESCO,II.1.1,Córdoba,AR-X,annual,2018,gas oil combustion consumption by freight transport,19.79376,TJ,CH4,3.9,kg/TJ,77.195664,kg +0667d481-ed38-33ad-a452-e1d7ae9f8141,SESCO,II.1.1,Córdoba,AR-X,annual,2018,gas oil combustion consumption by freight transport,19.79376,TJ,N2O,3.9,kg/TJ,77.195664,kg +37e4eee7-fc4f-323a-986b-f7531bf99a0a,SESCO,II.1.1,Entre Rios,AR-E,annual,2018,gas oil combustion consumption by freight transport,8.993879999999999,TJ,CO2,74100.0,kg/TJ,666446.5079999999,kg +b82c7069-5ce9-3f8f-8e1f-0b4dfdd615aa,SESCO,II.1.1,Entre Rios,AR-E,annual,2018,gas oil combustion consumption by freight transport,8.993879999999999,TJ,CH4,3.9,kg/TJ,35.076131999999994,kg +b82c7069-5ce9-3f8f-8e1f-0b4dfdd615aa,SESCO,II.1.1,Entre Rios,AR-E,annual,2018,gas oil combustion consumption by freight transport,8.993879999999999,TJ,N2O,3.9,kg/TJ,35.076131999999994,kg +305a36a6-f20d-36ab-b4f1-e7ea97eba8df,SESCO,II.1.1,Formosa,AR-P,annual,2018,gas oil combustion consumption by freight transport,0.61404,TJ,CO2,74100.0,kg/TJ,45500.364,kg +222824bb-7b53-302a-b131-6a0d2183b1ce,SESCO,II.1.1,Formosa,AR-P,annual,2018,gas oil combustion consumption by freight transport,0.61404,TJ,CH4,3.9,kg/TJ,2.394756,kg +222824bb-7b53-302a-b131-6a0d2183b1ce,SESCO,II.1.1,Formosa,AR-P,annual,2018,gas oil combustion consumption by freight transport,0.61404,TJ,N2O,3.9,kg/TJ,2.394756,kg +a31e1058-9666-3b8a-a2d8-3eaf579e3d46,SESCO,II.1.1,Jujuy,AR-Y,annual,2018,gas oil combustion consumption by freight transport,0.25284,TJ,CO2,74100.0,kg/TJ,18735.444,kg +e0fefa02-5f99-30aa-8bbd-3bf7807840bb,SESCO,II.1.1,Jujuy,AR-Y,annual,2018,gas oil combustion consumption by freight transport,0.25284,TJ,CH4,3.9,kg/TJ,0.9860760000000001,kg +e0fefa02-5f99-30aa-8bbd-3bf7807840bb,SESCO,II.1.1,Jujuy,AR-Y,annual,2018,gas oil combustion consumption by freight transport,0.25284,TJ,N2O,3.9,kg/TJ,0.9860760000000001,kg +48c4e81d-a980-3100-9be8-20515cdf8d09,SESCO,II.1.1,La Pampa,AR-L,annual,2018,gas oil combustion consumption by freight transport,0.86688,TJ,CO2,74100.0,kg/TJ,64235.808,kg +f7e19fe5-c725-3f3d-a669-f743ca311b7e,SESCO,II.1.1,La Pampa,AR-L,annual,2018,gas oil combustion consumption by freight transport,0.86688,TJ,CH4,3.9,kg/TJ,3.380832,kg +f7e19fe5-c725-3f3d-a669-f743ca311b7e,SESCO,II.1.1,La Pampa,AR-L,annual,2018,gas oil combustion consumption by freight transport,0.86688,TJ,N2O,3.9,kg/TJ,3.380832,kg +3f7cd834-9b4a-322c-b16d-0d2dd66b22ca,SESCO,II.1.1,La Rioja,AR-F,annual,2018,gas oil combustion consumption by freight transport,0.61404,TJ,CO2,74100.0,kg/TJ,45500.364,kg +ac92cd78-4406-3d46-bf38-152169c78bd4,SESCO,II.1.1,La Rioja,AR-F,annual,2018,gas oil combustion consumption by freight transport,0.61404,TJ,CH4,3.9,kg/TJ,2.394756,kg +ac92cd78-4406-3d46-bf38-152169c78bd4,SESCO,II.1.1,La Rioja,AR-F,annual,2018,gas oil combustion consumption by freight transport,0.61404,TJ,N2O,3.9,kg/TJ,2.394756,kg +15e4b77b-4d1c-3010-ad10-a5afe9d43ebe,SESCO,II.1.1,Mendoza,AR-M,annual,2018,gas oil combustion consumption by freight transport,1.76988,TJ,CO2,74100.0,kg/TJ,131148.10799999998,kg +c7bc3706-2cee-30b0-87b6-9f1b97a1fec1,SESCO,II.1.1,Mendoza,AR-M,annual,2018,gas oil combustion consumption by freight transport,1.76988,TJ,CH4,3.9,kg/TJ,6.902531999999999,kg +c7bc3706-2cee-30b0-87b6-9f1b97a1fec1,SESCO,II.1.1,Mendoza,AR-M,annual,2018,gas oil combustion consumption by freight transport,1.76988,TJ,N2O,3.9,kg/TJ,6.902531999999999,kg +a543d3d5-c394-3abb-b24b-c119dcb2a5d2,SESCO,II.1.1,Misiones,AR-N,annual,2018,gas oil combustion consumption by freight transport,2.3478,TJ,CO2,74100.0,kg/TJ,173971.97999999998,kg +92e9f052-0d06-3aca-ac9c-f9bfdfd13f4c,SESCO,II.1.1,Misiones,AR-N,annual,2018,gas oil combustion consumption by freight transport,2.3478,TJ,CH4,3.9,kg/TJ,9.156419999999999,kg +92e9f052-0d06-3aca-ac9c-f9bfdfd13f4c,SESCO,II.1.1,Misiones,AR-N,annual,2018,gas oil combustion consumption by freight transport,2.3478,TJ,N2O,3.9,kg/TJ,9.156419999999999,kg +b6be1176-369f-37e3-ba74-545b16711859,SESCO,II.1.1,Neuquén,AR-Q,annual,2018,gas oil combustion consumption by freight transport,0.07224,TJ,CO2,74100.0,kg/TJ,5352.9839999999995,kg +70557f9e-bcad-3fd5-86fd-f132e3468700,SESCO,II.1.1,Neuquén,AR-Q,annual,2018,gas oil combustion consumption by freight transport,0.07224,TJ,CH4,3.9,kg/TJ,0.281736,kg +70557f9e-bcad-3fd5-86fd-f132e3468700,SESCO,II.1.1,Neuquén,AR-Q,annual,2018,gas oil combustion consumption by freight transport,0.07224,TJ,N2O,3.9,kg/TJ,0.281736,kg +257a64f3-4ba0-3605-a62c-8361232c7971,SESCO,II.1.1,Rio Negro,AR-R,annual,2018,gas oil combustion consumption by freight transport,9.03,TJ,CO2,74100.0,kg/TJ,669123.0,kg +cdcb89d9-704a-31e8-b090-a6bc2edfeb7e,SESCO,II.1.1,Rio Negro,AR-R,annual,2018,gas oil combustion consumption by freight transport,9.03,TJ,CH4,3.9,kg/TJ,35.217,kg +cdcb89d9-704a-31e8-b090-a6bc2edfeb7e,SESCO,II.1.1,Rio Negro,AR-R,annual,2018,gas oil combustion consumption by freight transport,9.03,TJ,N2O,3.9,kg/TJ,35.217,kg +03c4ba67-45c9-3bce-8882-d50369b2c674,SESCO,II.1.1,Salta,AR-A,annual,2018,gas oil combustion consumption by freight transport,0.36119999999999997,TJ,CO2,74100.0,kg/TJ,26764.92,kg +cd8ca964-b385-34fd-a5e7-74cd95819edb,SESCO,II.1.1,Salta,AR-A,annual,2018,gas oil combustion consumption by freight transport,0.36119999999999997,TJ,CH4,3.9,kg/TJ,1.40868,kg +cd8ca964-b385-34fd-a5e7-74cd95819edb,SESCO,II.1.1,Salta,AR-A,annual,2018,gas oil combustion consumption by freight transport,0.36119999999999997,TJ,N2O,3.9,kg/TJ,1.40868,kg +c19a8881-7868-3df5-bbd5-9b1071ddd210,SESCO,II.1.1,San Juan,AR-J,annual,2018,gas oil combustion consumption by freight transport,0.14448,TJ,CO2,74100.0,kg/TJ,10705.967999999999,kg +0c833d06-71a8-3521-97e1-29fd53d2648b,SESCO,II.1.1,San Juan,AR-J,annual,2018,gas oil combustion consumption by freight transport,0.14448,TJ,CH4,3.9,kg/TJ,0.563472,kg +0c833d06-71a8-3521-97e1-29fd53d2648b,SESCO,II.1.1,San Juan,AR-J,annual,2018,gas oil combustion consumption by freight transport,0.14448,TJ,N2O,3.9,kg/TJ,0.563472,kg +e7c648d2-2e29-33ed-acb5-729f3165497c,SESCO,II.1.1,San Luis,AR-D,annual,2018,gas oil combustion consumption by freight transport,2.1672,TJ,CO2,74100.0,kg/TJ,160589.52,kg +a8a81c8c-e255-3154-b128-d23420bcef43,SESCO,II.1.1,San Luis,AR-D,annual,2018,gas oil combustion consumption by freight transport,2.1672,TJ,CH4,3.9,kg/TJ,8.452079999999999,kg +a8a81c8c-e255-3154-b128-d23420bcef43,SESCO,II.1.1,San Luis,AR-D,annual,2018,gas oil combustion consumption by freight transport,2.1672,TJ,N2O,3.9,kg/TJ,8.452079999999999,kg +3a9223ad-9511-3c3c-b6bd-be7ebc22425a,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,gas oil combustion consumption by freight transport,73.72091999999999,TJ,CO2,74100.0,kg/TJ,5462720.171999999,kg +b5a20bac-4f4c-3739-bfc2-ecf569256520,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,gas oil combustion consumption by freight transport,73.72091999999999,TJ,CH4,3.9,kg/TJ,287.51158799999996,kg +b5a20bac-4f4c-3739-bfc2-ecf569256520,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,gas oil combustion consumption by freight transport,73.72091999999999,TJ,N2O,3.9,kg/TJ,287.51158799999996,kg +d9446a00-1725-3f15-9806-d3c29d3babb2,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2018,gas oil combustion consumption by freight transport,5.63472,TJ,CO2,74100.0,kg/TJ,417532.752,kg +009f3ab4-7a8f-3686-b757-f3b9d23c05fe,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2018,gas oil combustion consumption by freight transport,5.63472,TJ,CH4,3.9,kg/TJ,21.975407999999998,kg +009f3ab4-7a8f-3686-b757-f3b9d23c05fe,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2018,gas oil combustion consumption by freight transport,5.63472,TJ,N2O,3.9,kg/TJ,21.975407999999998,kg +b5a2e3f7-842f-3929-8386-b5cb8b962b6f,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2018,gas oil combustion consumption by freight transport,1.01136,TJ,CO2,74100.0,kg/TJ,74941.776,kg +3e81e545-a8a6-3ecd-81e3-50b339b14839,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2018,gas oil combustion consumption by freight transport,1.01136,TJ,CH4,3.9,kg/TJ,3.9443040000000003,kg +3e81e545-a8a6-3ecd-81e3-50b339b14839,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2018,gas oil combustion consumption by freight transport,1.01136,TJ,N2O,3.9,kg/TJ,3.9443040000000003,kg +ba477c79-c71c-30b7-9751-e27142bc9081,SESCO,II.1.1,Tucuman,AR-T,annual,2018,gas oil combustion consumption by freight transport,1.04748,TJ,CO2,74100.0,kg/TJ,77618.268,kg +f0c59f5d-48d9-3cc2-801b-6c64fdb7ee05,SESCO,II.1.1,Tucuman,AR-T,annual,2018,gas oil combustion consumption by freight transport,1.04748,TJ,CH4,3.9,kg/TJ,4.085172,kg +f0c59f5d-48d9-3cc2-801b-6c64fdb7ee05,SESCO,II.1.1,Tucuman,AR-T,annual,2018,gas oil combustion consumption by freight transport,1.04748,TJ,N2O,3.9,kg/TJ,4.085172,kg +ca6342a5-9c31-3703-a8b0-8f83e36b027b,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,gas oil combustion consumption by public passenger transport,1664.5540799999999,TJ,CO2,74100.0,kg/TJ,123343457.328,kg +82260ed8-9666-36a0-9cf8-c9f16b4092f8,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,gas oil combustion consumption by public passenger transport,1664.5540799999999,TJ,CH4,3.9,kg/TJ,6491.760912,kg +82260ed8-9666-36a0-9cf8-c9f16b4092f8,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,gas oil combustion consumption by public passenger transport,1664.5540799999999,TJ,N2O,3.9,kg/TJ,6491.760912,kg +3166ff15-1158-3629-bd35-e2e72ee3cd2f,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,gas oil combustion consumption by public passenger transport,703.68984,TJ,CO2,74100.0,kg/TJ,52143417.144,kg +c346150d-b622-3e46-9941-1c5b4ef3599b,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,gas oil combustion consumption by public passenger transport,703.68984,TJ,CH4,3.9,kg/TJ,2744.390376,kg +c346150d-b622-3e46-9941-1c5b4ef3599b,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,gas oil combustion consumption by public passenger transport,703.68984,TJ,N2O,3.9,kg/TJ,2744.390376,kg +140c2e54-8df5-3d8a-b1d9-d5696587ecec,SESCO,II.1.1,Catamarca,AR-K,annual,2018,gas oil combustion consumption by public passenger transport,0.03612,TJ,CO2,74100.0,kg/TJ,2676.4919999999997,kg +225e3c3d-be2d-39ad-9ca1-9a35df58990a,SESCO,II.1.1,Catamarca,AR-K,annual,2018,gas oil combustion consumption by public passenger transport,0.03612,TJ,CH4,3.9,kg/TJ,0.140868,kg +225e3c3d-be2d-39ad-9ca1-9a35df58990a,SESCO,II.1.1,Catamarca,AR-K,annual,2018,gas oil combustion consumption by public passenger transport,0.03612,TJ,N2O,3.9,kg/TJ,0.140868,kg +2af00637-9cdd-325a-9525-38567e305549,SESCO,II.1.1,Chaco,AR-H,annual,2018,gas oil combustion consumption by public passenger transport,5.49024,TJ,CO2,74100.0,kg/TJ,406826.784,kg +f9103664-c072-31f0-a23c-6de61ac07cca,SESCO,II.1.1,Chaco,AR-H,annual,2018,gas oil combustion consumption by public passenger transport,5.49024,TJ,CH4,3.9,kg/TJ,21.411936,kg +f9103664-c072-31f0-a23c-6de61ac07cca,SESCO,II.1.1,Chaco,AR-H,annual,2018,gas oil combustion consumption by public passenger transport,5.49024,TJ,N2O,3.9,kg/TJ,21.411936,kg +8bedc79c-538d-310d-a206-65025f477a49,SESCO,II.1.1,Chubut,AR-U,annual,2018,gas oil combustion consumption by public passenger transport,46.37808,TJ,CO2,74100.0,kg/TJ,3436615.7279999997,kg +1375a8d1-8f31-33b3-ae84-67b73253010e,SESCO,II.1.1,Chubut,AR-U,annual,2018,gas oil combustion consumption by public passenger transport,46.37808,TJ,CH4,3.9,kg/TJ,180.87451199999998,kg +1375a8d1-8f31-33b3-ae84-67b73253010e,SESCO,II.1.1,Chubut,AR-U,annual,2018,gas oil combustion consumption by public passenger transport,46.37808,TJ,N2O,3.9,kg/TJ,180.87451199999998,kg +221629dc-108d-32ba-aed0-10f707058f0e,SESCO,II.1.1,Corrientes,AR-W,annual,2018,gas oil combustion consumption by public passenger transport,7.0434,TJ,CO2,74100.0,kg/TJ,521915.94,kg +8e869de0-ebf6-3b5c-a766-ac2abcc5904a,SESCO,II.1.1,Corrientes,AR-W,annual,2018,gas oil combustion consumption by public passenger transport,7.0434,TJ,CH4,3.9,kg/TJ,27.46926,kg +8e869de0-ebf6-3b5c-a766-ac2abcc5904a,SESCO,II.1.1,Corrientes,AR-W,annual,2018,gas oil combustion consumption by public passenger transport,7.0434,TJ,N2O,3.9,kg/TJ,27.46926,kg +b4712179-4643-3ba6-9e65-a2c9ba73e32c,SESCO,II.1.1,Córdoba,AR-X,annual,2018,gas oil combustion consumption by public passenger transport,214.914,TJ,CO2,74100.0,kg/TJ,15925127.399999999,kg +05faf7cd-b2e2-3c59-89b2-e4fafd768c6f,SESCO,II.1.1,Córdoba,AR-X,annual,2018,gas oil combustion consumption by public passenger transport,214.914,TJ,CH4,3.9,kg/TJ,838.1646,kg +05faf7cd-b2e2-3c59-89b2-e4fafd768c6f,SESCO,II.1.1,Córdoba,AR-X,annual,2018,gas oil combustion consumption by public passenger transport,214.914,TJ,N2O,3.9,kg/TJ,838.1646,kg +547678af-efb3-32cc-91ce-186424db5f18,SESCO,II.1.1,Entre Rios,AR-E,annual,2018,gas oil combustion consumption by public passenger transport,27.34284,TJ,CO2,74100.0,kg/TJ,2026104.444,kg +1dd4aaa9-ad67-35e1-9f14-d7b19095d057,SESCO,II.1.1,Entre Rios,AR-E,annual,2018,gas oil combustion consumption by public passenger transport,27.34284,TJ,CH4,3.9,kg/TJ,106.637076,kg +1dd4aaa9-ad67-35e1-9f14-d7b19095d057,SESCO,II.1.1,Entre Rios,AR-E,annual,2018,gas oil combustion consumption by public passenger transport,27.34284,TJ,N2O,3.9,kg/TJ,106.637076,kg +f4f59301-29bb-3397-a821-3d925d037e51,SESCO,II.1.1,Formosa,AR-P,annual,2018,gas oil combustion consumption by public passenger transport,0.07224,TJ,CO2,74100.0,kg/TJ,5352.9839999999995,kg +9fd6e638-79a3-3588-8412-63560d92cdb2,SESCO,II.1.1,Formosa,AR-P,annual,2018,gas oil combustion consumption by public passenger transport,0.07224,TJ,CH4,3.9,kg/TJ,0.281736,kg +9fd6e638-79a3-3588-8412-63560d92cdb2,SESCO,II.1.1,Formosa,AR-P,annual,2018,gas oil combustion consumption by public passenger transport,0.07224,TJ,N2O,3.9,kg/TJ,0.281736,kg +2f2bef49-8cda-3d75-b58f-b70bb7287f1c,SESCO,II.1.1,Jujuy,AR-Y,annual,2018,gas oil combustion consumption by public passenger transport,0.10836,TJ,CO2,74100.0,kg/TJ,8029.476,kg +425adcec-7882-367e-94d7-8815ba9d4ba0,SESCO,II.1.1,Jujuy,AR-Y,annual,2018,gas oil combustion consumption by public passenger transport,0.10836,TJ,CH4,3.9,kg/TJ,0.422604,kg +425adcec-7882-367e-94d7-8815ba9d4ba0,SESCO,II.1.1,Jujuy,AR-Y,annual,2018,gas oil combustion consumption by public passenger transport,0.10836,TJ,N2O,3.9,kg/TJ,0.422604,kg +383ff8c1-6293-34c5-ba19-b1559588611b,SESCO,II.1.1,La Pampa,AR-L,annual,2018,gas oil combustion consumption by public passenger transport,14.484119999999999,TJ,CO2,74100.0,kg/TJ,1073273.292,kg +05de47d0-81b5-3ac2-8494-649461ab146a,SESCO,II.1.1,La Pampa,AR-L,annual,2018,gas oil combustion consumption by public passenger transport,14.484119999999999,TJ,CH4,3.9,kg/TJ,56.48806799999999,kg +05de47d0-81b5-3ac2-8494-649461ab146a,SESCO,II.1.1,La Pampa,AR-L,annual,2018,gas oil combustion consumption by public passenger transport,14.484119999999999,TJ,N2O,3.9,kg/TJ,56.48806799999999,kg +71f35628-d461-3d92-908a-4f18ec5c0bb1,SESCO,II.1.1,La Rioja,AR-F,annual,2018,gas oil combustion consumption by public passenger transport,0.18059999999999998,TJ,CO2,74100.0,kg/TJ,13382.46,kg +248d028d-918f-37d1-8a2c-6a763ef79988,SESCO,II.1.1,La Rioja,AR-F,annual,2018,gas oil combustion consumption by public passenger transport,0.18059999999999998,TJ,CH4,3.9,kg/TJ,0.70434,kg +248d028d-918f-37d1-8a2c-6a763ef79988,SESCO,II.1.1,La Rioja,AR-F,annual,2018,gas oil combustion consumption by public passenger transport,0.18059999999999998,TJ,N2O,3.9,kg/TJ,0.70434,kg +b8ba1461-acb0-357c-9291-2bf289998e35,SESCO,II.1.1,Mendoza,AR-M,annual,2018,gas oil combustion consumption by public passenger transport,22.71948,TJ,CO2,74100.0,kg/TJ,1683513.468,kg +13bf67a3-efd6-3c32-a28f-4125c135766d,SESCO,II.1.1,Mendoza,AR-M,annual,2018,gas oil combustion consumption by public passenger transport,22.71948,TJ,CH4,3.9,kg/TJ,88.605972,kg +13bf67a3-efd6-3c32-a28f-4125c135766d,SESCO,II.1.1,Mendoza,AR-M,annual,2018,gas oil combustion consumption by public passenger transport,22.71948,TJ,N2O,3.9,kg/TJ,88.605972,kg +97aed8aa-bc5c-3a6b-8c7f-dbf7018ea929,SESCO,II.1.1,Misiones,AR-N,annual,2018,gas oil combustion consumption by public passenger transport,17.44596,TJ,CO2,74100.0,kg/TJ,1292745.636,kg +0887f42f-6027-3e9b-86a1-6695ba4aa29d,SESCO,II.1.1,Misiones,AR-N,annual,2018,gas oil combustion consumption by public passenger transport,17.44596,TJ,CH4,3.9,kg/TJ,68.039244,kg +0887f42f-6027-3e9b-86a1-6695ba4aa29d,SESCO,II.1.1,Misiones,AR-N,annual,2018,gas oil combustion consumption by public passenger transport,17.44596,TJ,N2O,3.9,kg/TJ,68.039244,kg +327ac604-d0ba-3878-953a-9ff35a410591,SESCO,II.1.1,Neuquén,AR-Q,annual,2018,gas oil combustion consumption by public passenger transport,10.90824,TJ,CO2,74100.0,kg/TJ,808300.5839999999,kg +0a418673-643b-3216-822d-12eed067de56,SESCO,II.1.1,Neuquén,AR-Q,annual,2018,gas oil combustion consumption by public passenger transport,10.90824,TJ,CH4,3.9,kg/TJ,42.542136,kg +0a418673-643b-3216-822d-12eed067de56,SESCO,II.1.1,Neuquén,AR-Q,annual,2018,gas oil combustion consumption by public passenger transport,10.90824,TJ,N2O,3.9,kg/TJ,42.542136,kg +6586088e-48a3-3827-9bed-ccf251ac235d,SESCO,II.1.1,Rio Negro,AR-R,annual,2018,gas oil combustion consumption by public passenger transport,41.75472,TJ,CO2,74100.0,kg/TJ,3094024.752,kg +5355ca97-bc91-3596-ad1e-3822048ad53f,SESCO,II.1.1,Rio Negro,AR-R,annual,2018,gas oil combustion consumption by public passenger transport,41.75472,TJ,CH4,3.9,kg/TJ,162.84340799999998,kg +5355ca97-bc91-3596-ad1e-3822048ad53f,SESCO,II.1.1,Rio Negro,AR-R,annual,2018,gas oil combustion consumption by public passenger transport,41.75472,TJ,N2O,3.9,kg/TJ,162.84340799999998,kg +71a445ab-f147-3967-b4ce-2a4a6ea661dc,SESCO,II.1.1,Salta,AR-A,annual,2018,gas oil combustion consumption by public passenger transport,51.14592,TJ,CO2,74100.0,kg/TJ,3789912.672,kg +f3d06568-f3b8-398f-9891-320032eb71cc,SESCO,II.1.1,Salta,AR-A,annual,2018,gas oil combustion consumption by public passenger transport,51.14592,TJ,CH4,3.9,kg/TJ,199.46908799999997,kg +f3d06568-f3b8-398f-9891-320032eb71cc,SESCO,II.1.1,Salta,AR-A,annual,2018,gas oil combustion consumption by public passenger transport,51.14592,TJ,N2O,3.9,kg/TJ,199.46908799999997,kg +f1c36709-d37a-3179-ace9-0637f6c05a1f,SESCO,II.1.1,San Juan,AR-J,annual,2018,gas oil combustion consumption by public passenger transport,0.03612,TJ,CO2,74100.0,kg/TJ,2676.4919999999997,kg +5e76d161-edcd-3406-a470-b0dd11894374,SESCO,II.1.1,San Juan,AR-J,annual,2018,gas oil combustion consumption by public passenger transport,0.03612,TJ,CH4,3.9,kg/TJ,0.140868,kg +5e76d161-edcd-3406-a470-b0dd11894374,SESCO,II.1.1,San Juan,AR-J,annual,2018,gas oil combustion consumption by public passenger transport,0.03612,TJ,N2O,3.9,kg/TJ,0.140868,kg +72d043a2-68e2-365f-8cc4-12717010f16b,SESCO,II.1.1,San Luis,AR-D,annual,2018,gas oil combustion consumption by public passenger transport,0.28896,TJ,CO2,74100.0,kg/TJ,21411.935999999998,kg +082f2789-22a0-35e4-b33b-02c355e293fe,SESCO,II.1.1,San Luis,AR-D,annual,2018,gas oil combustion consumption by public passenger transport,0.28896,TJ,CH4,3.9,kg/TJ,1.126944,kg +082f2789-22a0-35e4-b33b-02c355e293fe,SESCO,II.1.1,San Luis,AR-D,annual,2018,gas oil combustion consumption by public passenger transport,0.28896,TJ,N2O,3.9,kg/TJ,1.126944,kg +bf256d2f-d889-3710-8427-7884bc1a4f4c,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,gas oil combustion consumption by public passenger transport,260.20848,TJ,CO2,74100.0,kg/TJ,19281448.368,kg +4a21e5f2-f69d-3f42-ae93-2be4718d80e7,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,gas oil combustion consumption by public passenger transport,260.20848,TJ,CH4,3.9,kg/TJ,1014.813072,kg +4a21e5f2-f69d-3f42-ae93-2be4718d80e7,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,gas oil combustion consumption by public passenger transport,260.20848,TJ,N2O,3.9,kg/TJ,1014.813072,kg +c38b5acc-d360-32d8-9607-5e85c5d38490,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2018,gas oil combustion consumption by public passenger transport,0.86688,TJ,CO2,74100.0,kg/TJ,64235.808,kg +235031e6-3bfa-34bb-bfa7-87dfe5447339,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2018,gas oil combustion consumption by public passenger transport,0.86688,TJ,CH4,3.9,kg/TJ,3.380832,kg +235031e6-3bfa-34bb-bfa7-87dfe5447339,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2018,gas oil combustion consumption by public passenger transport,0.86688,TJ,N2O,3.9,kg/TJ,3.380832,kg +7ec0f17d-78de-39e0-9063-36dcecab49e0,SESCO,II.1.1,Tucuman,AR-T,annual,2018,gas oil combustion consumption by public passenger transport,76.32156,TJ,CO2,74100.0,kg/TJ,5655427.596000001,kg +2212cf7c-95ec-39b9-88e6-a8f77f4b5d07,SESCO,II.1.1,Tucuman,AR-T,annual,2018,gas oil combustion consumption by public passenger transport,76.32156,TJ,CH4,3.9,kg/TJ,297.654084,kg +2212cf7c-95ec-39b9-88e6-a8f77f4b5d07,SESCO,II.1.1,Tucuman,AR-T,annual,2018,gas oil combustion consumption by public passenger transport,76.32156,TJ,N2O,3.9,kg/TJ,297.654084,kg +3f7343c0-598a-34ba-8039-af183a3b72cf,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,gas oil combustion consumption by public passenger transport,329.26992,TJ,CO2,74100.0,kg/TJ,24398901.072,kg +c5c6f1fb-1557-3387-938f-5dbe81d6d206,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,gas oil combustion consumption by public passenger transport,329.26992,TJ,CH4,3.9,kg/TJ,1284.1526880000001,kg +c5c6f1fb-1557-3387-938f-5dbe81d6d206,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,gas oil combustion consumption by public passenger transport,329.26992,TJ,N2O,3.9,kg/TJ,1284.1526880000001,kg +0ecf6183-8da9-376b-a813-125e22bbe7bd,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,gas oil combustion consumption by public passenger transport,166.26036,TJ,CO2,74100.0,kg/TJ,12319892.675999999,kg +f2e7ac04-b76f-3ce2-bf0f-9c94a14f2766,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,gas oil combustion consumption by public passenger transport,166.26036,TJ,CH4,3.9,kg/TJ,648.415404,kg +f2e7ac04-b76f-3ce2-bf0f-9c94a14f2766,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,gas oil combustion consumption by public passenger transport,166.26036,TJ,N2O,3.9,kg/TJ,648.415404,kg +9fec9256-e6de-33a3-9299-24c0d9147558,SESCO,II.1.1,Chaco,AR-H,annual,2018,gas oil combustion consumption by public passenger transport,0.07224,TJ,CO2,74100.0,kg/TJ,5352.9839999999995,kg +7479c1e2-0224-32cb-aa47-6eb9710dd581,SESCO,II.1.1,Chaco,AR-H,annual,2018,gas oil combustion consumption by public passenger transport,0.07224,TJ,CH4,3.9,kg/TJ,0.281736,kg +7479c1e2-0224-32cb-aa47-6eb9710dd581,SESCO,II.1.1,Chaco,AR-H,annual,2018,gas oil combustion consumption by public passenger transport,0.07224,TJ,N2O,3.9,kg/TJ,0.281736,kg +72d268de-7399-3dde-87b5-fe7fb8dcb819,SESCO,II.1.1,Chubut,AR-U,annual,2018,gas oil combustion consumption by public passenger transport,8.95776,TJ,CO2,74100.0,kg/TJ,663770.0160000001,kg +8ad11356-7091-31d5-b6fb-69235313a3ea,SESCO,II.1.1,Chubut,AR-U,annual,2018,gas oil combustion consumption by public passenger transport,8.95776,TJ,CH4,3.9,kg/TJ,34.935264000000004,kg +8ad11356-7091-31d5-b6fb-69235313a3ea,SESCO,II.1.1,Chubut,AR-U,annual,2018,gas oil combustion consumption by public passenger transport,8.95776,TJ,N2O,3.9,kg/TJ,34.935264000000004,kg +6f51ac90-140c-318c-b7cb-ce739af3ddbc,SESCO,II.1.1,Corrientes,AR-W,annual,2018,gas oil combustion consumption by public passenger transport,3.0702,TJ,CO2,74100.0,kg/TJ,227501.81999999998,kg +3abcf3b3-b06a-39da-959f-b42ab6954ad0,SESCO,II.1.1,Corrientes,AR-W,annual,2018,gas oil combustion consumption by public passenger transport,3.0702,TJ,CH4,3.9,kg/TJ,11.97378,kg +3abcf3b3-b06a-39da-959f-b42ab6954ad0,SESCO,II.1.1,Corrientes,AR-W,annual,2018,gas oil combustion consumption by public passenger transport,3.0702,TJ,N2O,3.9,kg/TJ,11.97378,kg +919086b8-3365-33ec-860b-a5dba2a39a11,SESCO,II.1.1,Córdoba,AR-X,annual,2018,gas oil combustion consumption by public passenger transport,12.17244,TJ,CO2,74100.0,kg/TJ,901977.804,kg +9fff5b47-b755-38b8-bcd0-21fc10a24ccd,SESCO,II.1.1,Córdoba,AR-X,annual,2018,gas oil combustion consumption by public passenger transport,12.17244,TJ,CH4,3.9,kg/TJ,47.472516,kg +9fff5b47-b755-38b8-bcd0-21fc10a24ccd,SESCO,II.1.1,Córdoba,AR-X,annual,2018,gas oil combustion consumption by public passenger transport,12.17244,TJ,N2O,3.9,kg/TJ,47.472516,kg +1a53c920-a152-39e0-8ced-341bcc0a010f,SESCO,II.1.1,Entre Rios,AR-E,annual,2018,gas oil combustion consumption by public passenger transport,5.56248,TJ,CO2,74100.0,kg/TJ,412179.768,kg +b0107ce6-d649-3d67-95e4-6727ec49244f,SESCO,II.1.1,Entre Rios,AR-E,annual,2018,gas oil combustion consumption by public passenger transport,5.56248,TJ,CH4,3.9,kg/TJ,21.693672,kg +b0107ce6-d649-3d67-95e4-6727ec49244f,SESCO,II.1.1,Entre Rios,AR-E,annual,2018,gas oil combustion consumption by public passenger transport,5.56248,TJ,N2O,3.9,kg/TJ,21.693672,kg +f4f59301-29bb-3397-a821-3d925d037e51,SESCO,II.1.1,Formosa,AR-P,annual,2018,gas oil combustion consumption by public passenger transport,0.07224,TJ,CO2,74100.0,kg/TJ,5352.9839999999995,kg +9fd6e638-79a3-3588-8412-63560d92cdb2,SESCO,II.1.1,Formosa,AR-P,annual,2018,gas oil combustion consumption by public passenger transport,0.07224,TJ,CH4,3.9,kg/TJ,0.281736,kg +9fd6e638-79a3-3588-8412-63560d92cdb2,SESCO,II.1.1,Formosa,AR-P,annual,2018,gas oil combustion consumption by public passenger transport,0.07224,TJ,N2O,3.9,kg/TJ,0.281736,kg +a016bbf8-b467-372f-8664-0d9e25bd4135,SESCO,II.1.1,Jujuy,AR-Y,annual,2018,gas oil combustion consumption by public passenger transport,0.07224,TJ,CO2,74100.0,kg/TJ,5352.9839999999995,kg +aeedfadb-977c-36b5-a64c-85425e38197c,SESCO,II.1.1,Jujuy,AR-Y,annual,2018,gas oil combustion consumption by public passenger transport,0.07224,TJ,CH4,3.9,kg/TJ,0.281736,kg +aeedfadb-977c-36b5-a64c-85425e38197c,SESCO,II.1.1,Jujuy,AR-Y,annual,2018,gas oil combustion consumption by public passenger transport,0.07224,TJ,N2O,3.9,kg/TJ,0.281736,kg +ffcac0aa-fb32-398a-9ecd-198aa3a4e7af,SESCO,II.1.1,La Pampa,AR-L,annual,2018,gas oil combustion consumption by public passenger transport,18.81852,TJ,CO2,74100.0,kg/TJ,1394452.332,kg +4151a631-fbc4-3057-9d7f-6d19b16d2b8a,SESCO,II.1.1,La Pampa,AR-L,annual,2018,gas oil combustion consumption by public passenger transport,18.81852,TJ,CH4,3.9,kg/TJ,73.392228,kg +4151a631-fbc4-3057-9d7f-6d19b16d2b8a,SESCO,II.1.1,La Pampa,AR-L,annual,2018,gas oil combustion consumption by public passenger transport,18.81852,TJ,N2O,3.9,kg/TJ,73.392228,kg +ebe658f6-7edc-3cda-ba1d-07072281fd84,SESCO,II.1.1,Mendoza,AR-M,annual,2018,gas oil combustion consumption by public passenger transport,0.39732,TJ,CO2,74100.0,kg/TJ,29441.412,kg +ca6b7f74-1060-3c77-b96f-9a15fce94431,SESCO,II.1.1,Mendoza,AR-M,annual,2018,gas oil combustion consumption by public passenger transport,0.39732,TJ,CH4,3.9,kg/TJ,1.549548,kg +ca6b7f74-1060-3c77-b96f-9a15fce94431,SESCO,II.1.1,Mendoza,AR-M,annual,2018,gas oil combustion consumption by public passenger transport,0.39732,TJ,N2O,3.9,kg/TJ,1.549548,kg +c4a81e52-9037-3fec-9db3-853316a45e88,SESCO,II.1.1,Misiones,AR-N,annual,2018,gas oil combustion consumption by public passenger transport,11.66676,TJ,CO2,74100.0,kg/TJ,864506.916,kg +975f8858-2101-3a54-8102-f77cc326be5d,SESCO,II.1.1,Misiones,AR-N,annual,2018,gas oil combustion consumption by public passenger transport,11.66676,TJ,CH4,3.9,kg/TJ,45.500364,kg +975f8858-2101-3a54-8102-f77cc326be5d,SESCO,II.1.1,Misiones,AR-N,annual,2018,gas oil combustion consumption by public passenger transport,11.66676,TJ,N2O,3.9,kg/TJ,45.500364,kg +3b11a368-48a9-34d3-89a9-a8f71b3166b1,SESCO,II.1.1,Neuquén,AR-Q,annual,2018,gas oil combustion consumption by public passenger transport,7.5851999999999995,TJ,CO2,74100.0,kg/TJ,562063.32,kg +fa37326b-bca4-361d-81e7-61342de2dbe3,SESCO,II.1.1,Neuquén,AR-Q,annual,2018,gas oil combustion consumption by public passenger transport,7.5851999999999995,TJ,CH4,3.9,kg/TJ,29.582279999999997,kg +fa37326b-bca4-361d-81e7-61342de2dbe3,SESCO,II.1.1,Neuquén,AR-Q,annual,2018,gas oil combustion consumption by public passenger transport,7.5851999999999995,TJ,N2O,3.9,kg/TJ,29.582279999999997,kg +4583803d-c14a-35dd-9219-2137d5b1edfb,SESCO,II.1.1,Rio Negro,AR-R,annual,2018,gas oil combustion consumption by public passenger transport,34.602959999999996,TJ,CO2,74100.0,kg/TJ,2564079.3359999997,kg +79a4cf11-000e-3cc5-b62e-7c4b387bdd95,SESCO,II.1.1,Rio Negro,AR-R,annual,2018,gas oil combustion consumption by public passenger transport,34.602959999999996,TJ,CH4,3.9,kg/TJ,134.95154399999998,kg +79a4cf11-000e-3cc5-b62e-7c4b387bdd95,SESCO,II.1.1,Rio Negro,AR-R,annual,2018,gas oil combustion consumption by public passenger transport,34.602959999999996,TJ,N2O,3.9,kg/TJ,134.95154399999998,kg +445798c6-1052-3815-aa5e-b2bd3e829503,SESCO,II.1.1,Salta,AR-A,annual,2018,gas oil combustion consumption by public passenger transport,0.25284,TJ,CO2,74100.0,kg/TJ,18735.444,kg +8057f7ef-0a9e-3651-a925-bbf3455fa02f,SESCO,II.1.1,Salta,AR-A,annual,2018,gas oil combustion consumption by public passenger transport,0.25284,TJ,CH4,3.9,kg/TJ,0.9860760000000001,kg +8057f7ef-0a9e-3651-a925-bbf3455fa02f,SESCO,II.1.1,Salta,AR-A,annual,2018,gas oil combustion consumption by public passenger transport,0.25284,TJ,N2O,3.9,kg/TJ,0.9860760000000001,kg +f1c36709-d37a-3179-ace9-0637f6c05a1f,SESCO,II.1.1,San Juan,AR-J,annual,2018,gas oil combustion consumption by public passenger transport,0.03612,TJ,CO2,74100.0,kg/TJ,2676.4919999999997,kg +5e76d161-edcd-3406-a470-b0dd11894374,SESCO,II.1.1,San Juan,AR-J,annual,2018,gas oil combustion consumption by public passenger transport,0.03612,TJ,CH4,3.9,kg/TJ,0.140868,kg +5e76d161-edcd-3406-a470-b0dd11894374,SESCO,II.1.1,San Juan,AR-J,annual,2018,gas oil combustion consumption by public passenger transport,0.03612,TJ,N2O,3.9,kg/TJ,0.140868,kg +d1a627b5-9e09-3e53-a6ad-dea571646ce9,SESCO,II.1.1,San Luis,AR-D,annual,2018,gas oil combustion consumption by public passenger transport,0.03612,TJ,CO2,74100.0,kg/TJ,2676.4919999999997,kg +c6a9bf1d-3e70-3e85-a609-9e2f1e66173d,SESCO,II.1.1,San Luis,AR-D,annual,2018,gas oil combustion consumption by public passenger transport,0.03612,TJ,CH4,3.9,kg/TJ,0.140868,kg +c6a9bf1d-3e70-3e85-a609-9e2f1e66173d,SESCO,II.1.1,San Luis,AR-D,annual,2018,gas oil combustion consumption by public passenger transport,0.03612,TJ,N2O,3.9,kg/TJ,0.140868,kg +72a3d416-ba0d-3139-aef5-7651cd8e6b22,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,gas oil combustion consumption by public passenger transport,88.6746,TJ,CO2,74100.0,kg/TJ,6570787.859999999,kg +d69387e7-56ac-364d-b739-c7da4ffd9de0,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,gas oil combustion consumption by public passenger transport,88.6746,TJ,CH4,3.9,kg/TJ,345.83094,kg +d69387e7-56ac-364d-b739-c7da4ffd9de0,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,gas oil combustion consumption by public passenger transport,88.6746,TJ,N2O,3.9,kg/TJ,345.83094,kg +3c8c274a-f4c1-32eb-b1d8-294aef5a8545,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2018,gas oil combustion consumption by public passenger transport,0.18059999999999998,TJ,CO2,74100.0,kg/TJ,13382.46,kg +57674291-16cd-3d81-b3c2-f42e9b17a22d,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2018,gas oil combustion consumption by public passenger transport,0.18059999999999998,TJ,CH4,3.9,kg/TJ,0.70434,kg +57674291-16cd-3d81-b3c2-f42e9b17a22d,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2018,gas oil combustion consumption by public passenger transport,0.18059999999999998,TJ,N2O,3.9,kg/TJ,0.70434,kg +b52de9dd-f832-3bc4-828c-b27ffb31d294,SESCO,II.1.1,Tucuman,AR-T,annual,2018,gas oil combustion consumption by public passenger transport,0.03612,TJ,CO2,74100.0,kg/TJ,2676.4919999999997,kg +ed0e8af5-4f73-3538-bbbc-56ce6cf73097,SESCO,II.1.1,Tucuman,AR-T,annual,2018,gas oil combustion consumption by public passenger transport,0.03612,TJ,CH4,3.9,kg/TJ,0.140868,kg +ed0e8af5-4f73-3538-bbbc-56ce6cf73097,SESCO,II.1.1,Tucuman,AR-T,annual,2018,gas oil combustion consumption by public passenger transport,0.03612,TJ,N2O,3.9,kg/TJ,0.140868,kg +0f8a4c44-cb57-352f-a4bb-237fd1817f93,SESCO,II.5.1,Buenos Aires,AR-B,annual,2018,gas oil combustion consumption by agriculture machines,118.75743096,TJ,CO2,74100.0,kg/TJ,8799925.634135999,kg +e4d490b3-11dc-38be-89ed-66726a01a4af,SESCO,II.5.1,Buenos Aires,AR-B,annual,2018,gas oil combustion consumption by agriculture machines,118.75743096,TJ,CH4,3.9,kg/TJ,463.15398074399997,kg +e4d490b3-11dc-38be-89ed-66726a01a4af,SESCO,II.5.1,Buenos Aires,AR-B,annual,2018,gas oil combustion consumption by agriculture machines,118.75743096,TJ,N2O,3.9,kg/TJ,463.15398074399997,kg +0af6e936-3a04-34c0-a7cf-d8f29e758568,SESCO,II.5.1,Córdoba,AR-X,annual,2018,gas oil combustion consumption by agriculture machines,17.24899764,TJ,CO2,74100.0,kg/TJ,1278150.7251239999,kg +4e8845f0-94e9-357a-9a2b-1110998709e2,SESCO,II.5.1,Córdoba,AR-X,annual,2018,gas oil combustion consumption by agriculture machines,17.24899764,TJ,CH4,3.9,kg/TJ,67.271090796,kg +4e8845f0-94e9-357a-9a2b-1110998709e2,SESCO,II.5.1,Córdoba,AR-X,annual,2018,gas oil combustion consumption by agriculture machines,17.24899764,TJ,N2O,3.9,kg/TJ,67.271090796,kg +cb0a1d9d-3494-3009-aa94-b2896ac59fc8,SESCO,II.5.1,Entre Rios,AR-E,annual,2018,gas oil combustion consumption by agriculture machines,1.2877141200000002,TJ,CO2,74100.0,kg/TJ,95419.61629200002,kg +1b15c54e-83c1-32e4-9106-df04eb01620a,SESCO,II.5.1,Entre Rios,AR-E,annual,2018,gas oil combustion consumption by agriculture machines,1.2877141200000002,TJ,CH4,3.9,kg/TJ,5.022085068000001,kg +1b15c54e-83c1-32e4-9106-df04eb01620a,SESCO,II.5.1,Entre Rios,AR-E,annual,2018,gas oil combustion consumption by agriculture machines,1.2877141200000002,TJ,N2O,3.9,kg/TJ,5.022085068000001,kg +3b05fdd6-39b7-3301-b5ba-791f0667940e,SESCO,II.5.1,Rio Negro,AR-R,annual,2018,gas oil combustion consumption by agriculture machines,0.92752548,TJ,CO2,74100.0,kg/TJ,68729.638068,kg +44d50a9e-5553-33b6-bac9-3c20a7a5d762,SESCO,II.5.1,Rio Negro,AR-R,annual,2018,gas oil combustion consumption by agriculture machines,0.92752548,TJ,CH4,3.9,kg/TJ,3.617349372,kg +44d50a9e-5553-33b6-bac9-3c20a7a5d762,SESCO,II.5.1,Rio Negro,AR-R,annual,2018,gas oil combustion consumption by agriculture machines,0.92752548,TJ,N2O,3.9,kg/TJ,3.617349372,kg +efe61bca-1860-3c7c-9173-4f572d8f70cb,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,gas oil combustion consumption by to the public,2510.02579212,TJ,CO2,74100.0,kg/TJ,185992911.196092,kg +e260cec2-b1d4-3172-9887-516641c7bc8f,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,gas oil combustion consumption by to the public,2510.02579212,TJ,CH4,3.9,kg/TJ,9789.100589268,kg +e260cec2-b1d4-3172-9887-516641c7bc8f,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,gas oil combustion consumption by to the public,2510.02579212,TJ,N2O,3.9,kg/TJ,9789.100589268,kg +20d50997-cff4-3685-90ae-06edeee49836,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,gas oil combustion consumption by to the public,72.48099264,TJ,CO2,74100.0,kg/TJ,5370841.554624,kg +5f88c159-b05c-3e73-8ed6-6cd8a29dba0a,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,gas oil combustion consumption by to the public,72.48099264,TJ,CH4,3.9,kg/TJ,282.67587129599997,kg +5f88c159-b05c-3e73-8ed6-6cd8a29dba0a,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,gas oil combustion consumption by to the public,72.48099264,TJ,N2O,3.9,kg/TJ,282.67587129599997,kg +215a174c-4be9-3585-873c-cb4b97a6e1d7,SESCO,II.1.1,Chubut,AR-U,annual,2018,gas oil combustion consumption by to the public,464.01204024,TJ,CO2,74100.0,kg/TJ,34383292.181784,kg +e3253ea5-fb78-324e-bb02-19b4fb0d54eb,SESCO,II.1.1,Chubut,AR-U,annual,2018,gas oil combustion consumption by to the public,464.01204024,TJ,CH4,3.9,kg/TJ,1809.646956936,kg +e3253ea5-fb78-324e-bb02-19b4fb0d54eb,SESCO,II.1.1,Chubut,AR-U,annual,2018,gas oil combustion consumption by to the public,464.01204024,TJ,N2O,3.9,kg/TJ,1809.646956936,kg +4852da4b-c3eb-3a79-98a2-9e6689aa7121,SESCO,II.1.1,Córdoba,AR-X,annual,2018,gas oil combustion consumption by to the public,115.54347336000001,TJ,CO2,74100.0,kg/TJ,8561771.375976,kg +f92f6552-8401-38db-8077-e77d533c7435,SESCO,II.1.1,Córdoba,AR-X,annual,2018,gas oil combustion consumption by to the public,115.54347336000001,TJ,CH4,3.9,kg/TJ,450.619546104,kg +f92f6552-8401-38db-8077-e77d533c7435,SESCO,II.1.1,Córdoba,AR-X,annual,2018,gas oil combustion consumption by to the public,115.54347336000001,TJ,N2O,3.9,kg/TJ,450.619546104,kg +7ec764c5-4f09-3893-9c2e-8f49e5f84d25,SESCO,II.1.1,Entre Rios,AR-E,annual,2018,gas oil combustion consumption by to the public,215.54367996,TJ,CO2,74100.0,kg/TJ,15971786.685036,kg +5e5bdc72-5d56-30bc-ab3d-1a37ce535210,SESCO,II.1.1,Entre Rios,AR-E,annual,2018,gas oil combustion consumption by to the public,215.54367996,TJ,CH4,3.9,kg/TJ,840.620351844,kg +5e5bdc72-5d56-30bc-ab3d-1a37ce535210,SESCO,II.1.1,Entre Rios,AR-E,annual,2018,gas oil combustion consumption by to the public,215.54367996,TJ,N2O,3.9,kg/TJ,840.620351844,kg +7a8dbbc1-b75a-367a-9394-3625549a0fa8,SESCO,II.1.1,La Pampa,AR-L,annual,2018,gas oil combustion consumption by to the public,471.16726775999996,TJ,CO2,74100.0,kg/TJ,34913494.541016,kg +dc851c47-1602-383f-9572-5e44edd001ca,SESCO,II.1.1,La Pampa,AR-L,annual,2018,gas oil combustion consumption by to the public,471.16726775999996,TJ,CH4,3.9,kg/TJ,1837.5523442639999,kg +dc851c47-1602-383f-9572-5e44edd001ca,SESCO,II.1.1,La Pampa,AR-L,annual,2018,gas oil combustion consumption by to the public,471.16726775999996,TJ,N2O,3.9,kg/TJ,1837.5523442639999,kg +7bb2e183-61a8-3da7-bb84-c6d18fc01dbc,SESCO,II.1.1,Neuquén,AR-Q,annual,2018,gas oil combustion consumption by to the public,125.63178936,TJ,CO2,74100.0,kg/TJ,9309315.591576,kg +f0a2a41a-1055-3388-9460-903704d290d9,SESCO,II.1.1,Neuquén,AR-Q,annual,2018,gas oil combustion consumption by to the public,125.63178936,TJ,CH4,3.9,kg/TJ,489.963978504,kg +f0a2a41a-1055-3388-9460-903704d290d9,SESCO,II.1.1,Neuquén,AR-Q,annual,2018,gas oil combustion consumption by to the public,125.63178936,TJ,N2O,3.9,kg/TJ,489.963978504,kg +64ff589c-9b68-35d2-8db2-f5a1814dddb5,SESCO,II.1.1,Rio Negro,AR-R,annual,2018,gas oil combustion consumption by to the public,318.19942896,TJ,CO2,74100.0,kg/TJ,23578577.685935996,kg +a6315389-0bc1-3b52-95ce-4f75df283099,SESCO,II.1.1,Rio Negro,AR-R,annual,2018,gas oil combustion consumption by to the public,318.19942896,TJ,CH4,3.9,kg/TJ,1240.977772944,kg +a6315389-0bc1-3b52-95ce-4f75df283099,SESCO,II.1.1,Rio Negro,AR-R,annual,2018,gas oil combustion consumption by to the public,318.19942896,TJ,N2O,3.9,kg/TJ,1240.977772944,kg +f92ba143-af89-3768-b3c7-4ba36b1d375e,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2018,gas oil combustion consumption by to the public,244.73644188,TJ,CO2,74100.0,kg/TJ,18134970.343308,kg +a9d80bf0-0386-3960-a212-032082ec9d5c,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2018,gas oil combustion consumption by to the public,244.73644188,TJ,CH4,3.9,kg/TJ,954.472123332,kg +a9d80bf0-0386-3960-a212-032082ec9d5c,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2018,gas oil combustion consumption by to the public,244.73644188,TJ,N2O,3.9,kg/TJ,954.472123332,kg +9b4b9ee5-b9c8-369e-b4c6-6d2754fb97c8,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,gas oil combustion consumption by to the public,108.27959688,TJ,CO2,74100.0,kg/TJ,8023518.128808,kg +f9d7e63c-cf3f-34bd-95c8-287f484746ab,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,gas oil combustion consumption by to the public,108.27959688,TJ,CH4,3.9,kg/TJ,422.290427832,kg +f9d7e63c-cf3f-34bd-95c8-287f484746ab,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,gas oil combustion consumption by to the public,108.27959688,TJ,N2O,3.9,kg/TJ,422.290427832,kg +bb15fbe4-24d9-3d08-b576-83a886d484e4,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,gas oil combustion consumption by to the public,556.4062056,TJ,CO2,74100.0,kg/TJ,41229699.83496,kg +ca7c0443-6488-31dc-858f-bb9e0589c257,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,gas oil combustion consumption by to the public,556.4062056,TJ,CH4,3.9,kg/TJ,2169.98420184,kg +ca7c0443-6488-31dc-858f-bb9e0589c257,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,gas oil combustion consumption by to the public,556.4062056,TJ,N2O,3.9,kg/TJ,2169.98420184,kg +a787f7bc-ab78-3c33-ba5f-d5b5806a20a6,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,gas oil combustion consumption by to the public,19.69666944,TJ,CO2,74100.0,kg/TJ,1459523.205504,kg +549b8060-3d9f-3e48-8948-4836e8d49f63,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,gas oil combustion consumption by to the public,19.69666944,TJ,CH4,3.9,kg/TJ,76.817010816,kg +549b8060-3d9f-3e48-8948-4836e8d49f63,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,gas oil combustion consumption by to the public,19.69666944,TJ,N2O,3.9,kg/TJ,76.817010816,kg +462d08e7-850f-3876-99f3-44cb04995377,SESCO,II.1.1,Chubut,AR-U,annual,2018,gas oil combustion consumption by to the public,172.30955699999998,TJ,CO2,74100.0,kg/TJ,12768138.1737,kg +e66030bc-e348-340d-88c5-0039c750c1a3,SESCO,II.1.1,Chubut,AR-U,annual,2018,gas oil combustion consumption by to the public,172.30955699999998,TJ,CH4,3.9,kg/TJ,672.0072723,kg +e66030bc-e348-340d-88c5-0039c750c1a3,SESCO,II.1.1,Chubut,AR-U,annual,2018,gas oil combustion consumption by to the public,172.30955699999998,TJ,N2O,3.9,kg/TJ,672.0072723,kg +47941b76-06c5-3912-953f-e184d0f73a52,SESCO,II.1.1,Córdoba,AR-X,annual,2018,gas oil combustion consumption by to the public,39.89118084,TJ,CO2,74100.0,kg/TJ,2955936.500244,kg +d77a3065-9fc8-3381-b67f-620babaef8aa,SESCO,II.1.1,Córdoba,AR-X,annual,2018,gas oil combustion consumption by to the public,39.89118084,TJ,CH4,3.9,kg/TJ,155.57560527599998,kg +d77a3065-9fc8-3381-b67f-620babaef8aa,SESCO,II.1.1,Córdoba,AR-X,annual,2018,gas oil combustion consumption by to the public,39.89118084,TJ,N2O,3.9,kg/TJ,155.57560527599998,kg +4d9b66f3-f67f-325e-be7f-f143e1a0da7e,SESCO,II.1.1,Entre Rios,AR-E,annual,2018,gas oil combustion consumption by to the public,22.79251464,TJ,CO2,74100.0,kg/TJ,1688925.334824,kg +4d6b301f-d7bc-33d2-9958-83036ebb0ca5,SESCO,II.1.1,Entre Rios,AR-E,annual,2018,gas oil combustion consumption by to the public,22.79251464,TJ,CH4,3.9,kg/TJ,88.890807096,kg +4d6b301f-d7bc-33d2-9958-83036ebb0ca5,SESCO,II.1.1,Entre Rios,AR-E,annual,2018,gas oil combustion consumption by to the public,22.79251464,TJ,N2O,3.9,kg/TJ,88.890807096,kg +8b743be2-067f-39d9-a103-0f4243f82dae,SESCO,II.1.1,La Pampa,AR-L,annual,2018,gas oil combustion consumption by to the public,95.65702943999999,TJ,CO2,74100.0,kg/TJ,7088185.881503999,kg +2634b82c-c126-3022-a982-b119d7fb5ae6,SESCO,II.1.1,La Pampa,AR-L,annual,2018,gas oil combustion consumption by to the public,95.65702943999999,TJ,CH4,3.9,kg/TJ,373.06241481599994,kg +2634b82c-c126-3022-a982-b119d7fb5ae6,SESCO,II.1.1,La Pampa,AR-L,annual,2018,gas oil combustion consumption by to the public,95.65702943999999,TJ,N2O,3.9,kg/TJ,373.06241481599994,kg +20421dc0-6616-3253-9e3d-6c5e725db667,SESCO,II.1.1,Neuquén,AR-Q,annual,2018,gas oil combustion consumption by to the public,134.10518016,TJ,CO2,74100.0,kg/TJ,9937193.849856,kg +c936415f-b489-3221-b258-48eb771ca763,SESCO,II.1.1,Neuquén,AR-Q,annual,2018,gas oil combustion consumption by to the public,134.10518016,TJ,CH4,3.9,kg/TJ,523.010202624,kg +c936415f-b489-3221-b258-48eb771ca763,SESCO,II.1.1,Neuquén,AR-Q,annual,2018,gas oil combustion consumption by to the public,134.10518016,TJ,N2O,3.9,kg/TJ,523.010202624,kg +66dce7d2-521c-3f7b-b777-008e357d459c,SESCO,II.1.1,Rio Negro,AR-R,annual,2018,gas oil combustion consumption by to the public,141.33402024,TJ,CO2,74100.0,kg/TJ,10472850.899784,kg +12c781e2-38f2-34d1-8b7f-60eccb7ce96f,SESCO,II.1.1,Rio Negro,AR-R,annual,2018,gas oil combustion consumption by to the public,141.33402024,TJ,CH4,3.9,kg/TJ,551.202678936,kg +12c781e2-38f2-34d1-8b7f-60eccb7ce96f,SESCO,II.1.1,Rio Negro,AR-R,annual,2018,gas oil combustion consumption by to the public,141.33402024,TJ,N2O,3.9,kg/TJ,551.202678936,kg +99bc9c10-df05-39f6-83ba-2f5c435c3273,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2018,gas oil combustion consumption by to the public,139.41644556,TJ,CO2,74100.0,kg/TJ,10330758.615996,kg +f00f6165-c98e-3a99-9820-d82da84dc39a,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2018,gas oil combustion consumption by to the public,139.41644556,TJ,CH4,3.9,kg/TJ,543.724137684,kg +f00f6165-c98e-3a99-9820-d82da84dc39a,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2018,gas oil combustion consumption by to the public,139.41644556,TJ,N2O,3.9,kg/TJ,543.724137684,kg +acc4647a-ca61-3305-90b5-27f37054790a,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,gas oil combustion consumption by to the public,82.73856696000001,TJ,CO2,74100.0,kg/TJ,6130927.811736001,kg +1eb53d98-1f9a-3ee8-9e4a-2bda328b3ff3,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,gas oil combustion consumption by to the public,82.73856696000001,TJ,CH4,3.9,kg/TJ,322.68041114400006,kg +1eb53d98-1f9a-3ee8-9e4a-2bda328b3ff3,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,gas oil combustion consumption by to the public,82.73856696000001,TJ,N2O,3.9,kg/TJ,322.68041114400006,kg +8c4c1222-f8c4-3e10-a4b2-bfa6a45d3a7b,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,gas oil combustion consumption by freight transport,78.73777128,TJ,CO2,74100.0,kg/TJ,5834468.851848001,kg +73bae360-edb6-33f7-a60e-ac0faa2cefb5,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,gas oil combustion consumption by freight transport,78.73777128,TJ,CH4,3.9,kg/TJ,307.077307992,kg +73bae360-edb6-33f7-a60e-ac0faa2cefb5,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,gas oil combustion consumption by freight transport,78.73777128,TJ,N2O,3.9,kg/TJ,307.077307992,kg +76480f18-067e-3139-93c9-eed7db2d99f7,SESCO,II.1.1,Chubut,AR-U,annual,2018,gas oil combustion consumption by freight transport,2.034459,TJ,CO2,74100.0,kg/TJ,150753.4119,kg +f65d1896-e901-3a30-955b-cb6cf4e8096d,SESCO,II.1.1,Chubut,AR-U,annual,2018,gas oil combustion consumption by freight transport,2.034459,TJ,CH4,3.9,kg/TJ,7.9343901,kg +f65d1896-e901-3a30-955b-cb6cf4e8096d,SESCO,II.1.1,Chubut,AR-U,annual,2018,gas oil combustion consumption by freight transport,2.034459,TJ,N2O,3.9,kg/TJ,7.9343901,kg +15e5a2ad-2330-3858-81f7-0b4cbd71968c,SESCO,II.1.1,San Luis,AR-D,annual,2018,gas oil combustion consumption by freight transport,28.058882880000002,TJ,CO2,74100.0,kg/TJ,2079163.2214080002,kg +4e936f3d-b774-35b2-a69b-e12e95d858d3,SESCO,II.1.1,San Luis,AR-D,annual,2018,gas oil combustion consumption by freight transport,28.058882880000002,TJ,CH4,3.9,kg/TJ,109.429643232,kg +4e936f3d-b774-35b2-a69b-e12e95d858d3,SESCO,II.1.1,San Luis,AR-D,annual,2018,gas oil combustion consumption by freight transport,28.058882880000002,TJ,N2O,3.9,kg/TJ,109.429643232,kg +a14ce3d8-fa88-31c0-bb14-88396c8204c4,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,gas oil combustion consumption by freight transport,1.89590268,TJ,CO2,74100.0,kg/TJ,140486.388588,kg +84c5d345-b764-3681-b7cd-637fe1ad12bf,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,gas oil combustion consumption by freight transport,1.89590268,TJ,CH4,3.9,kg/TJ,7.394020452,kg +84c5d345-b764-3681-b7cd-637fe1ad12bf,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,gas oil combustion consumption by freight transport,1.89590268,TJ,N2O,3.9,kg/TJ,7.394020452,kg +0838547b-0273-3023-b0ee-54f795b0be1b,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,gas oil combustion consumption by public passenger transport,136.77296723999999,TJ,CO2,74100.0,kg/TJ,10134876.872483999,kg +17ba197c-d9a2-3023-896d-b713a481549e,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,gas oil combustion consumption by public passenger transport,136.77296723999999,TJ,CH4,3.9,kg/TJ,533.4145722359999,kg +17ba197c-d9a2-3023-896d-b713a481549e,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,gas oil combustion consumption by public passenger transport,136.77296723999999,TJ,N2O,3.9,kg/TJ,533.4145722359999,kg +ba5742f1-73e7-3327-8c45-85e5011ade27,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,gas oil combustion consumption by public passenger transport,21.83605704,TJ,CO2,74100.0,kg/TJ,1618051.826664,kg +c37e0f90-b9aa-36ce-af54-6e01c3b0b349,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,gas oil combustion consumption by public passenger transport,21.83605704,TJ,CH4,3.9,kg/TJ,85.160622456,kg +c37e0f90-b9aa-36ce-af54-6e01c3b0b349,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,gas oil combustion consumption by public passenger transport,21.83605704,TJ,N2O,3.9,kg/TJ,85.160622456,kg +21c06190-d33b-31b8-9a48-795dd883f615,SESCO,II.1.1,Chubut,AR-U,annual,2018,gas oil combustion consumption by public passenger transport,11.61146028,TJ,CO2,74100.0,kg/TJ,860409.206748,kg +37656fc7-991a-373d-a401-a182cf44c3e0,SESCO,II.1.1,Chubut,AR-U,annual,2018,gas oil combustion consumption by public passenger transport,11.61146028,TJ,CH4,3.9,kg/TJ,45.284695092,kg +37656fc7-991a-373d-a401-a182cf44c3e0,SESCO,II.1.1,Chubut,AR-U,annual,2018,gas oil combustion consumption by public passenger transport,11.61146028,TJ,N2O,3.9,kg/TJ,45.284695092,kg +e615d8b0-385c-3cfc-a2d7-b8a10a102c1a,SESCO,II.1.1,Córdoba,AR-X,annual,2018,gas oil combustion consumption by public passenger transport,81.14726424,TJ,CO2,74100.0,kg/TJ,6013012.280184,kg +15b5dce8-2bd8-36f6-bff1-e9055c3b6efe,SESCO,II.1.1,Córdoba,AR-X,annual,2018,gas oil combustion consumption by public passenger transport,81.14726424,TJ,CH4,3.9,kg/TJ,316.47433053599997,kg +15b5dce8-2bd8-36f6-bff1-e9055c3b6efe,SESCO,II.1.1,Córdoba,AR-X,annual,2018,gas oil combustion consumption by public passenger transport,81.14726424,TJ,N2O,3.9,kg/TJ,316.47433053599997,kg +0a75bdd6-1766-3ea7-8e5f-50ad47d877d5,SESCO,II.1.1,Neuquén,AR-Q,annual,2018,gas oil combustion consumption by public passenger transport,7.350528359999999,TJ,CO2,74100.0,kg/TJ,544674.151476,kg +38d5f9c7-ebff-3db0-b5af-0e975e3d7f70,SESCO,II.1.1,Neuquén,AR-Q,annual,2018,gas oil combustion consumption by public passenger transport,7.350528359999999,TJ,CH4,3.9,kg/TJ,28.667060603999996,kg +38d5f9c7-ebff-3db0-b5af-0e975e3d7f70,SESCO,II.1.1,Neuquén,AR-Q,annual,2018,gas oil combustion consumption by public passenger transport,7.350528359999999,TJ,N2O,3.9,kg/TJ,28.667060603999996,kg +2faaa5f3-e146-3540-816e-79162de1e57d,SESCO,II.1.1,Rio Negro,AR-R,annual,2018,gas oil combustion consumption by public passenger transport,38.028327960000006,TJ,CO2,74100.0,kg/TJ,2817899.1018360006,kg +6a5d45e8-8f20-3f55-8ed8-228f71bacef1,SESCO,II.1.1,Rio Negro,AR-R,annual,2018,gas oil combustion consumption by public passenger transport,38.028327960000006,TJ,CH4,3.9,kg/TJ,148.31047904400003,kg +6a5d45e8-8f20-3f55-8ed8-228f71bacef1,SESCO,II.1.1,Rio Negro,AR-R,annual,2018,gas oil combustion consumption by public passenger transport,38.028327960000006,TJ,N2O,3.9,kg/TJ,148.31047904400003,kg +d7fb2da9-c4e0-3b3a-879f-ddb0bf83f958,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,gas oil combustion consumption by public passenger transport,2.24446068,TJ,CO2,74100.0,kg/TJ,166314.536388,kg +4001d947-9a1e-3fc1-86ca-6c00aa914f78,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,gas oil combustion consumption by public passenger transport,2.24446068,TJ,CH4,3.9,kg/TJ,8.753396652,kg +4001d947-9a1e-3fc1-86ca-6c00aa914f78,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,gas oil combustion consumption by public passenger transport,2.24446068,TJ,N2O,3.9,kg/TJ,8.753396652,kg +aff04f93-5f5b-38cb-8891-80992d42c7a2,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,gas oil combustion consumption by public passenger transport,21.531132,TJ,CO2,74100.0,kg/TJ,1595456.8812,kg +4e35bf06-294b-3cba-80ab-60853d6e0874,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,gas oil combustion consumption by public passenger transport,21.531132,TJ,CH4,3.9,kg/TJ,83.97141479999999,kg +4e35bf06-294b-3cba-80ab-60853d6e0874,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,gas oil combustion consumption by public passenger transport,21.531132,TJ,N2O,3.9,kg/TJ,83.97141479999999,kg +6135c557-3bab-3ade-99fa-6c1ec7f351a1,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,gas oil combustion consumption by public passenger transport,0.35816592,TJ,CO2,74100.0,kg/TJ,26540.094672000003,kg +b6d225fd-d9e7-3bd3-a200-ed78dc47d182,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,gas oil combustion consumption by public passenger transport,0.35816592,TJ,CH4,3.9,kg/TJ,1.3968470880000001,kg +b6d225fd-d9e7-3bd3-a200-ed78dc47d182,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,gas oil combustion consumption by public passenger transport,0.35816592,TJ,N2O,3.9,kg/TJ,1.3968470880000001,kg +7a1a0548-abf4-37fc-a5f0-93fb9c373b12,SESCO,II.1.1,Córdoba,AR-X,annual,2018,gas oil combustion consumption by public passenger transport,3.6853236,TJ,CO2,74100.0,kg/TJ,273082.47875999997,kg +4a800163-e9b1-3d06-bde8-6d2b507db206,SESCO,II.1.1,Córdoba,AR-X,annual,2018,gas oil combustion consumption by public passenger transport,3.6853236,TJ,CH4,3.9,kg/TJ,14.37276204,kg +4a800163-e9b1-3d06-bde8-6d2b507db206,SESCO,II.1.1,Córdoba,AR-X,annual,2018,gas oil combustion consumption by public passenger transport,3.6853236,TJ,N2O,3.9,kg/TJ,14.37276204,kg +037cc98e-3419-301e-95cd-532a41b20e7d,SESCO,II.1.1,Neuquén,AR-Q,annual,2018,gas oil combustion consumption by public passenger transport,4.05598704,TJ,CO2,74100.0,kg/TJ,300548.63966399996,kg +48cd94c4-bbdc-3f5d-b25c-8a07ac042ec1,SESCO,II.1.1,Neuquén,AR-Q,annual,2018,gas oil combustion consumption by public passenger transport,4.05598704,TJ,CH4,3.9,kg/TJ,15.818349455999998,kg +48cd94c4-bbdc-3f5d-b25c-8a07ac042ec1,SESCO,II.1.1,Neuquén,AR-Q,annual,2018,gas oil combustion consumption by public passenger transport,4.05598704,TJ,N2O,3.9,kg/TJ,15.818349455999998,kg +be00cf41-f0ed-35c2-9d5b-4a6941e37c06,SESCO,II.1.1,Rio Negro,AR-R,annual,2018,gas oil combustion consumption by public passenger transport,10.62856284,TJ,CO2,74100.0,kg/TJ,787576.506444,kg +51d6e3c2-35ac-3b0e-9541-ebf9b1714221,SESCO,II.1.1,Rio Negro,AR-R,annual,2018,gas oil combustion consumption by public passenger transport,10.62856284,TJ,CH4,3.9,kg/TJ,41.451395076000004,kg +51d6e3c2-35ac-3b0e-9541-ebf9b1714221,SESCO,II.1.1,Rio Negro,AR-R,annual,2018,gas oil combustion consumption by public passenger transport,10.62856284,TJ,N2O,3.9,kg/TJ,41.451395076000004,kg +53911e9f-fa05-39a4-b4f8-863739d99fe4,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,gas oil combustion consumption by to the public,70.769916,TJ,CO2,74100.0,kg/TJ,5244050.775599999,kg +26dd1bd8-1d93-37d6-9cde-b164d217b84a,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,gas oil combustion consumption by to the public,70.769916,TJ,CH4,3.9,kg/TJ,276.0026724,kg +26dd1bd8-1d93-37d6-9cde-b164d217b84a,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,gas oil combustion consumption by to the public,70.769916,TJ,N2O,3.9,kg/TJ,276.0026724,kg +64c055b3-8478-3cba-8497-8d56af3ddaa8,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,gas oil combustion consumption by to the public,8.6688,TJ,CO2,74100.0,kg/TJ,642358.08,kg +42a2f913-688b-37c6-8a89-091dcdc24783,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,gas oil combustion consumption by to the public,8.6688,TJ,CH4,3.9,kg/TJ,33.808319999999995,kg +42a2f913-688b-37c6-8a89-091dcdc24783,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,gas oil combustion consumption by to the public,8.6688,TJ,N2O,3.9,kg/TJ,33.808319999999995,kg +f806d94a-4ffd-371f-b647-943b2d0e6c08,SESCO,II.1.1,Córdoba,AR-X,annual,2018,gas oil combustion consumption by to the public,36.741264,TJ,CO2,74100.0,kg/TJ,2722527.6624000003,kg +c385f88e-067c-3b55-8012-386f346768e3,SESCO,II.1.1,Córdoba,AR-X,annual,2018,gas oil combustion consumption by to the public,36.741264,TJ,CH4,3.9,kg/TJ,143.2909296,kg +c385f88e-067c-3b55-8012-386f346768e3,SESCO,II.1.1,Córdoba,AR-X,annual,2018,gas oil combustion consumption by to the public,36.741264,TJ,N2O,3.9,kg/TJ,143.2909296,kg +df7108cd-5952-3f34-90b2-317dba15b5b6,SESCO,II.1.1,Entre Rios,AR-E,annual,2018,gas oil combustion consumption by to the public,13.339116,TJ,CO2,74100.0,kg/TJ,988428.4956,kg +43a3bdf8-fe95-39a8-84ef-a371474cfd31,SESCO,II.1.1,Entre Rios,AR-E,annual,2018,gas oil combustion consumption by to the public,13.339116,TJ,CH4,3.9,kg/TJ,52.0225524,kg +43a3bdf8-fe95-39a8-84ef-a371474cfd31,SESCO,II.1.1,Entre Rios,AR-E,annual,2018,gas oil combustion consumption by to the public,13.339116,TJ,N2O,3.9,kg/TJ,52.0225524,kg +d3dbd7c4-42b4-3c2c-96f5-f6d22f0e45d3,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,gas oil combustion consumption by to the public,15.49548,TJ,CO2,74100.0,kg/TJ,1148215.068,kg +9de39be4-5d2f-3f38-892b-70c0a0f53e60,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,gas oil combustion consumption by to the public,15.49548,TJ,CH4,3.9,kg/TJ,60.432372,kg +9de39be4-5d2f-3f38-892b-70c0a0f53e60,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,gas oil combustion consumption by to the public,15.49548,TJ,N2O,3.9,kg/TJ,60.432372,kg +d9b31393-6a88-389c-ae84-550fef67454d,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,gas oil combustion consumption by to the public,12.8226,TJ,CO2,74100.0,kg/TJ,950154.6599999999,kg +57f744d4-8a79-395d-8669-9fe2d0c90570,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,gas oil combustion consumption by to the public,12.8226,TJ,CH4,3.9,kg/TJ,50.00814,kg +57f744d4-8a79-395d-8669-9fe2d0c90570,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,gas oil combustion consumption by to the public,12.8226,TJ,N2O,3.9,kg/TJ,50.00814,kg +819fd17c-36f5-323e-9db2-1837d0b537a5,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,gas oil combustion consumption by to the public,0.36119999999999997,TJ,CO2,74100.0,kg/TJ,26764.92,kg +3340ab91-3fdc-358b-812d-b39eaa3084d4,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,gas oil combustion consumption by to the public,0.36119999999999997,TJ,CH4,3.9,kg/TJ,1.40868,kg +3340ab91-3fdc-358b-812d-b39eaa3084d4,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,gas oil combustion consumption by to the public,0.36119999999999997,TJ,N2O,3.9,kg/TJ,1.40868,kg +d79654d6-aa93-31c2-b8dc-e0c8452966bc,SESCO,II.1.1,Córdoba,AR-X,annual,2018,gas oil combustion consumption by to the public,4.65948,TJ,CO2,74100.0,kg/TJ,345267.468,kg +a1b52a7b-5d2b-38c0-bc62-21cc6698afd5,SESCO,II.1.1,Córdoba,AR-X,annual,2018,gas oil combustion consumption by to the public,4.65948,TJ,CH4,3.9,kg/TJ,18.171972,kg +a1b52a7b-5d2b-38c0-bc62-21cc6698afd5,SESCO,II.1.1,Córdoba,AR-X,annual,2018,gas oil combustion consumption by to the public,4.65948,TJ,N2O,3.9,kg/TJ,18.171972,kg +1a5ff05e-f59c-34e1-b97a-8e1a83ea6508,SESCO,II.1.1,Entre Rios,AR-E,annual,2018,gas oil combustion consumption by to the public,2.7993,TJ,CO2,74100.0,kg/TJ,207428.13,kg +c10567d5-0a1f-3c47-898b-2b2970e9a50f,SESCO,II.1.1,Entre Rios,AR-E,annual,2018,gas oil combustion consumption by to the public,2.7993,TJ,CH4,3.9,kg/TJ,10.91727,kg +c10567d5-0a1f-3c47-898b-2b2970e9a50f,SESCO,II.1.1,Entre Rios,AR-E,annual,2018,gas oil combustion consumption by to the public,2.7993,TJ,N2O,3.9,kg/TJ,10.91727,kg +4d15249b-13ac-3c5d-beda-f21d0b398576,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,gas oil combustion consumption by to the public,0.14448,TJ,CO2,74100.0,kg/TJ,10705.967999999999,kg +d294c0eb-2157-31e2-86a0-6ed536b44188,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,gas oil combustion consumption by to the public,0.14448,TJ,CH4,3.9,kg/TJ,0.563472,kg +d294c0eb-2157-31e2-86a0-6ed536b44188,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,gas oil combustion consumption by to the public,0.14448,TJ,N2O,3.9,kg/TJ,0.563472,kg +5e4e9a4d-4044-332f-91f2-5973ab668300,SESCO,II.1.1,Catamarca,AR-K,annual,2018,gas oil combustion consumption by to the public,103.65645359999999,TJ,CO2,74100.0,kg/TJ,7680943.211759999,kg +11be6a75-dbf2-379f-9a03-021766c8639c,SESCO,II.1.1,Catamarca,AR-K,annual,2018,gas oil combustion consumption by to the public,103.65645359999999,TJ,CH4,3.9,kg/TJ,404.26016903999994,kg +11be6a75-dbf2-379f-9a03-021766c8639c,SESCO,II.1.1,Catamarca,AR-K,annual,2018,gas oil combustion consumption by to the public,103.65645359999999,TJ,N2O,3.9,kg/TJ,404.26016903999994,kg +b6b635b4-ea75-3571-bc64-a55a499d9865,SESCO,II.1.1,Chaco,AR-H,annual,2018,gas oil combustion consumption by to the public,122.66351999999999,TJ,CO2,74100.0,kg/TJ,9089366.831999999,kg +1d5a48d5-c329-3eaa-8ef0-e442647c4697,SESCO,II.1.1,Chaco,AR-H,annual,2018,gas oil combustion consumption by to the public,122.66351999999999,TJ,CH4,3.9,kg/TJ,478.387728,kg +1d5a48d5-c329-3eaa-8ef0-e442647c4697,SESCO,II.1.1,Chaco,AR-H,annual,2018,gas oil combustion consumption by to the public,122.66351999999999,TJ,N2O,3.9,kg/TJ,478.387728,kg +047f0094-9888-3d14-97a7-36dbfc937eb1,SESCO,II.1.1,Jujuy,AR-Y,annual,2018,gas oil combustion consumption by to the public,581.4041351999999,TJ,CO2,74100.0,kg/TJ,43082046.41831999,kg +eb10c77a-e6bd-36c2-9548-14c07228dc5c,SESCO,II.1.1,Jujuy,AR-Y,annual,2018,gas oil combustion consumption by to the public,581.4041351999999,TJ,CH4,3.9,kg/TJ,2267.4761272799997,kg +eb10c77a-e6bd-36c2-9548-14c07228dc5c,SESCO,II.1.1,Jujuy,AR-Y,annual,2018,gas oil combustion consumption by to the public,581.4041351999999,TJ,N2O,3.9,kg/TJ,2267.4761272799997,kg +64a73732-a3c2-3c82-ab55-59210e0e99fe,SESCO,II.1.1,La Rioja,AR-F,annual,2018,gas oil combustion consumption by to the public,124.3730796,TJ,CO2,74100.0,kg/TJ,9216045.19836,kg +f2aad1e6-4450-32dd-a060-5043e7347600,SESCO,II.1.1,La Rioja,AR-F,annual,2018,gas oil combustion consumption by to the public,124.3730796,TJ,CH4,3.9,kg/TJ,485.05501044,kg +f2aad1e6-4450-32dd-a060-5043e7347600,SESCO,II.1.1,La Rioja,AR-F,annual,2018,gas oil combustion consumption by to the public,124.3730796,TJ,N2O,3.9,kg/TJ,485.05501044,kg +5eb2c76d-ae5b-3b2b-8c91-dc47e5bb2486,SESCO,II.1.1,Salta,AR-A,annual,2018,gas oil combustion consumption by to the public,1446.0620328,TJ,CO2,74100.0,kg/TJ,107153196.63048,kg +f363ce80-3a86-3430-a766-f08e43b62374,SESCO,II.1.1,Salta,AR-A,annual,2018,gas oil combustion consumption by to the public,1446.0620328,TJ,CH4,3.9,kg/TJ,5639.64192792,kg +f363ce80-3a86-3430-a766-f08e43b62374,SESCO,II.1.1,Salta,AR-A,annual,2018,gas oil combustion consumption by to the public,1446.0620328,TJ,N2O,3.9,kg/TJ,5639.64192792,kg +7ebb2c1b-a7ae-3131-bbe9-1d755dc4f525,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2018,gas oil combustion consumption by to the public,409.1558016,TJ,CO2,74100.0,kg/TJ,30318444.898560002,kg +cf816534-0cf3-3bd0-a688-f22f53a6d813,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2018,gas oil combustion consumption by to the public,409.1558016,TJ,CH4,3.9,kg/TJ,1595.70762624,kg +cf816534-0cf3-3bd0-a688-f22f53a6d813,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2018,gas oil combustion consumption by to the public,409.1558016,TJ,N2O,3.9,kg/TJ,1595.70762624,kg +3836d485-6767-3b78-8c69-30319bea128a,SESCO,II.1.1,Tucuman,AR-T,annual,2018,gas oil combustion consumption by to the public,1814.9335596,TJ,CO2,74100.0,kg/TJ,134486576.76636,kg +56d85c54-f7f6-3c6e-a7d9-3253fe1711d9,SESCO,II.1.1,Tucuman,AR-T,annual,2018,gas oil combustion consumption by to the public,1814.9335596,TJ,CH4,3.9,kg/TJ,7078.24088244,kg +56d85c54-f7f6-3c6e-a7d9-3253fe1711d9,SESCO,II.1.1,Tucuman,AR-T,annual,2018,gas oil combustion consumption by to the public,1814.9335596,TJ,N2O,3.9,kg/TJ,7078.24088244,kg +9a243c76-35aa-3f12-ab71-820ba2d0a7e7,SESCO,II.1.1,Catamarca,AR-K,annual,2018,gas oil combustion consumption by to the public,31.868314799999997,TJ,CO2,74100.0,kg/TJ,2361442.1266799998,kg +2d7fb1ab-9d50-371f-866f-721d66368e1c,SESCO,II.1.1,Catamarca,AR-K,annual,2018,gas oil combustion consumption by to the public,31.868314799999997,TJ,CH4,3.9,kg/TJ,124.28642771999998,kg +2d7fb1ab-9d50-371f-866f-721d66368e1c,SESCO,II.1.1,Catamarca,AR-K,annual,2018,gas oil combustion consumption by to the public,31.868314799999997,TJ,N2O,3.9,kg/TJ,124.28642771999998,kg +06aee489-ca91-3245-9486-5abbb84340ed,SESCO,II.1.1,Chaco,AR-H,annual,2018,gas oil combustion consumption by to the public,9.5718,TJ,CO2,74100.0,kg/TJ,709270.38,kg +206447a0-4677-356b-953b-a224a2e88613,SESCO,II.1.1,Chaco,AR-H,annual,2018,gas oil combustion consumption by to the public,9.5718,TJ,CH4,3.9,kg/TJ,37.33002,kg +206447a0-4677-356b-953b-a224a2e88613,SESCO,II.1.1,Chaco,AR-H,annual,2018,gas oil combustion consumption by to the public,9.5718,TJ,N2O,3.9,kg/TJ,37.33002,kg +a8e2ce46-714e-34cf-a7b0-30989f57710e,SESCO,II.1.1,Jujuy,AR-Y,annual,2018,gas oil combustion consumption by to the public,112.11648,TJ,CO2,74100.0,kg/TJ,8307831.168,kg +6e6d92aa-d990-3680-b83b-e75b84cb1758,SESCO,II.1.1,Jujuy,AR-Y,annual,2018,gas oil combustion consumption by to the public,112.11648,TJ,CH4,3.9,kg/TJ,437.25427199999996,kg +6e6d92aa-d990-3680-b83b-e75b84cb1758,SESCO,II.1.1,Jujuy,AR-Y,annual,2018,gas oil combustion consumption by to the public,112.11648,TJ,N2O,3.9,kg/TJ,437.25427199999996,kg +e6f25dc9-bbbf-31f3-a5a4-015b635c49ba,SESCO,II.1.1,La Rioja,AR-F,annual,2018,gas oil combustion consumption by to the public,23.33352,TJ,CO2,74100.0,kg/TJ,1729013.832,kg +73128aa0-b371-3cbe-ac2a-0ce8177cfa93,SESCO,II.1.1,La Rioja,AR-F,annual,2018,gas oil combustion consumption by to the public,23.33352,TJ,CH4,3.9,kg/TJ,91.000728,kg +73128aa0-b371-3cbe-ac2a-0ce8177cfa93,SESCO,II.1.1,La Rioja,AR-F,annual,2018,gas oil combustion consumption by to the public,23.33352,TJ,N2O,3.9,kg/TJ,91.000728,kg +1ffa4179-4306-347f-97e8-160d78a036dd,SESCO,II.1.1,Salta,AR-A,annual,2018,gas oil combustion consumption by to the public,324.0332424,TJ,CO2,74100.0,kg/TJ,24010863.26184,kg +957e714f-70ca-34a3-b428-ef93dc1bb131,SESCO,II.1.1,Salta,AR-A,annual,2018,gas oil combustion consumption by to the public,324.0332424,TJ,CH4,3.9,kg/TJ,1263.72964536,kg +957e714f-70ca-34a3-b428-ef93dc1bb131,SESCO,II.1.1,Salta,AR-A,annual,2018,gas oil combustion consumption by to the public,324.0332424,TJ,N2O,3.9,kg/TJ,1263.72964536,kg +f5e75584-aa46-3e67-9415-081fda598602,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2018,gas oil combustion consumption by to the public,139.57671,TJ,CO2,74100.0,kg/TJ,10342634.211,kg +5185942d-e1be-3b6e-8e6e-55d3fbd6f180,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2018,gas oil combustion consumption by to the public,139.57671,TJ,CH4,3.9,kg/TJ,544.349169,kg +5185942d-e1be-3b6e-8e6e-55d3fbd6f180,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2018,gas oil combustion consumption by to the public,139.57671,TJ,N2O,3.9,kg/TJ,544.349169,kg +0319e073-18c4-3c3c-894e-5094dfeaab47,SESCO,II.1.1,Tucuman,AR-T,annual,2018,gas oil combustion consumption by to the public,472.2267396,TJ,CO2,74100.0,kg/TJ,34992001.40436,kg +cd19261f-35e9-3f09-91fa-fd71f97a6f80,SESCO,II.1.1,Tucuman,AR-T,annual,2018,gas oil combustion consumption by to the public,472.2267396,TJ,CH4,3.9,kg/TJ,1841.6842844399998,kg +cd19261f-35e9-3f09-91fa-fd71f97a6f80,SESCO,II.1.1,Tucuman,AR-T,annual,2018,gas oil combustion consumption by to the public,472.2267396,TJ,N2O,3.9,kg/TJ,1841.6842844399998,kg +ffadf701-35ea-3e03-bd0a-8da4c93ed175,SESCO,I.3.1,Buenos Aires,AR-B,annual,2018,gasoline combustion consumption by petrochemical industries,33.777864,TJ,CO2,69300.0,kg/TJ,2340805.9752,kg +df64e958-7727-3dd7-bed0-eebd46c6a13f,SESCO,I.3.1,Buenos Aires,AR-B,annual,2018,gasoline combustion consumption by petrochemical industries,33.777864,TJ,CH4,33.0,kg/TJ,1114.669512,kg +eef75aa1-2309-31ac-b930-334fb1ea2029,SESCO,I.3.1,Buenos Aires,AR-B,annual,2018,gasoline combustion consumption by petrochemical industries,33.777864,TJ,N2O,3.2,kg/TJ,108.0891648,kg +b3d197cf-467b-3bd2-906c-240b0adaeba4,SESCO,II.5.1,Buenos Aires,AR-B,annual,2018,gas oil combustion consumption by agriculture machines,349.67771999999997,TJ,CO2,74100.0,kg/TJ,25911119.051999997,kg +f648c7f2-85f4-3268-8197-31c74b9ea821,SESCO,II.5.1,Buenos Aires,AR-B,annual,2018,gas oil combustion consumption by agriculture machines,349.67771999999997,TJ,CH4,3.9,kg/TJ,1363.743108,kg +f648c7f2-85f4-3268-8197-31c74b9ea821,SESCO,II.5.1,Buenos Aires,AR-B,annual,2018,gas oil combustion consumption by agriculture machines,349.67771999999997,TJ,N2O,3.9,kg/TJ,1363.743108,kg +f6c5de1f-3754-32da-af47-e1fe6635ad00,SESCO,II.5.1,Córdoba,AR-X,annual,2018,gas oil combustion consumption by agriculture machines,33.73608,TJ,CO2,74100.0,kg/TJ,2499843.528,kg +53604192-9d28-3c55-a94c-720d8827f843,SESCO,II.5.1,Córdoba,AR-X,annual,2018,gas oil combustion consumption by agriculture machines,33.73608,TJ,CH4,3.9,kg/TJ,131.57071200000001,kg +53604192-9d28-3c55-a94c-720d8827f843,SESCO,II.5.1,Córdoba,AR-X,annual,2018,gas oil combustion consumption by agriculture machines,33.73608,TJ,N2O,3.9,kg/TJ,131.57071200000001,kg +8fe08178-f0a7-3c79-96c8-0e84d2c05559,SESCO,II.5.1,Entre Rios,AR-E,annual,2018,gas oil combustion consumption by agriculture machines,48.653639999999996,TJ,CO2,74100.0,kg/TJ,3605234.7239999995,kg +f7a1bdd9-6c97-30c8-8fe5-7aa0c6b61282,SESCO,II.5.1,Entre Rios,AR-E,annual,2018,gas oil combustion consumption by agriculture machines,48.653639999999996,TJ,CH4,3.9,kg/TJ,189.74919599999998,kg +f7a1bdd9-6c97-30c8-8fe5-7aa0c6b61282,SESCO,II.5.1,Entre Rios,AR-E,annual,2018,gas oil combustion consumption by agriculture machines,48.653639999999996,TJ,N2O,3.9,kg/TJ,189.74919599999998,kg +b8afea8e-2f74-3b31-996a-e4c71b9ce9f8,SESCO,II.5.1,Santa Fe,AR-S,annual,2018,gas oil combustion consumption by agriculture machines,33.66384,TJ,CO2,74100.0,kg/TJ,2494490.544,kg +d8b3944e-25a8-371c-8f51-f84ecadd16d2,SESCO,II.5.1,Santa Fe,AR-S,annual,2018,gas oil combustion consumption by agriculture machines,33.66384,TJ,CH4,3.9,kg/TJ,131.288976,kg +d8b3944e-25a8-371c-8f51-f84ecadd16d2,SESCO,II.5.1,Santa Fe,AR-S,annual,2018,gas oil combustion consumption by agriculture machines,33.66384,TJ,N2O,3.9,kg/TJ,131.288976,kg +76a95892-f28f-391d-9b15-204c8ce20768,SESCO,II.5.1,Tucuman,AR-T,annual,2018,gas oil combustion consumption by agriculture machines,13.25604,TJ,CO2,74100.0,kg/TJ,982272.564,kg +aa59376f-e06b-374e-8bec-2399e797a3db,SESCO,II.5.1,Tucuman,AR-T,annual,2018,gas oil combustion consumption by agriculture machines,13.25604,TJ,CH4,3.9,kg/TJ,51.698556,kg +aa59376f-e06b-374e-8bec-2399e797a3db,SESCO,II.5.1,Tucuman,AR-T,annual,2018,gas oil combustion consumption by agriculture machines,13.25604,TJ,N2O,3.9,kg/TJ,51.698556,kg +3ded3fc0-570f-3d3a-8494-258aac8692ba,SESCO,II.5.1,Buenos Aires,AR-B,annual,2018,gas oil combustion consumption by agriculture machines,15.56772,TJ,CO2,74100.0,kg/TJ,1153568.052,kg +12071432-5ce3-30ff-a2c3-943af5fbeb3b,SESCO,II.5.1,Buenos Aires,AR-B,annual,2018,gas oil combustion consumption by agriculture machines,15.56772,TJ,CH4,3.9,kg/TJ,60.714107999999996,kg +12071432-5ce3-30ff-a2c3-943af5fbeb3b,SESCO,II.5.1,Buenos Aires,AR-B,annual,2018,gas oil combustion consumption by agriculture machines,15.56772,TJ,N2O,3.9,kg/TJ,60.714107999999996,kg +91f2837e-90bc-3c45-9a52-0b069d8409f3,SESCO,II.5.1,Entre Rios,AR-E,annual,2018,gas oil combustion consumption by agriculture machines,35.14476,TJ,CO2,74100.0,kg/TJ,2604226.716,kg +5a27c881-7a8d-33ba-b46d-03f55c45d06a,SESCO,II.5.1,Entre Rios,AR-E,annual,2018,gas oil combustion consumption by agriculture machines,35.14476,TJ,CH4,3.9,kg/TJ,137.064564,kg +5a27c881-7a8d-33ba-b46d-03f55c45d06a,SESCO,II.5.1,Entre Rios,AR-E,annual,2018,gas oil combustion consumption by agriculture machines,35.14476,TJ,N2O,3.9,kg/TJ,137.064564,kg +ba4e7e17-3b76-3fe2-a4b1-e0d365ccef32,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,gas oil combustion consumption by to the public,12611.94816,TJ,CO2,74100.0,kg/TJ,934545358.656,kg +b789a171-2a2d-3d04-a608-dfc0e8dcd290,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,gas oil combustion consumption by to the public,12611.94816,TJ,CH4,3.9,kg/TJ,49186.597824,kg +b789a171-2a2d-3d04-a608-dfc0e8dcd290,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,gas oil combustion consumption by to the public,12611.94816,TJ,N2O,3.9,kg/TJ,49186.597824,kg +b4905de2-0f5c-32ee-9c30-53c0deabbd7a,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,gas oil combustion consumption by to the public,956.34924,TJ,CO2,74100.0,kg/TJ,70865478.684,kg +d1cc8010-a44e-3286-9aa3-1f20c4741f35,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,gas oil combustion consumption by to the public,956.34924,TJ,CH4,3.9,kg/TJ,3729.762036,kg +d1cc8010-a44e-3286-9aa3-1f20c4741f35,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,gas oil combustion consumption by to the public,956.34924,TJ,N2O,3.9,kg/TJ,3729.762036,kg +c8f23967-68d3-3dc4-95fd-1fa0719f233f,SESCO,II.1.1,Catamarca,AR-K,annual,2018,gas oil combustion consumption by to the public,6.6460799999999995,TJ,CO2,74100.0,kg/TJ,492474.528,kg +409b1bbd-195f-3f70-8620-6feaed7ce877,SESCO,II.1.1,Catamarca,AR-K,annual,2018,gas oil combustion consumption by to the public,6.6460799999999995,TJ,CH4,3.9,kg/TJ,25.919711999999997,kg +409b1bbd-195f-3f70-8620-6feaed7ce877,SESCO,II.1.1,Catamarca,AR-K,annual,2018,gas oil combustion consumption by to the public,6.6460799999999995,TJ,N2O,3.9,kg/TJ,25.919711999999997,kg +f281ff09-77c0-3484-9320-0e1d5deccb66,SESCO,II.1.1,Chaco,AR-H,annual,2018,gas oil combustion consumption by to the public,1672.39212,TJ,CO2,74100.0,kg/TJ,123924256.092,kg +62ce11c1-3210-334d-a1aa-7c94e3d327db,SESCO,II.1.1,Chaco,AR-H,annual,2018,gas oil combustion consumption by to the public,1672.39212,TJ,CH4,3.9,kg/TJ,6522.3292679999995,kg +62ce11c1-3210-334d-a1aa-7c94e3d327db,SESCO,II.1.1,Chaco,AR-H,annual,2018,gas oil combustion consumption by to the public,1672.39212,TJ,N2O,3.9,kg/TJ,6522.3292679999995,kg +6c2cca52-4711-34f1-910f-9017d7aa6c53,SESCO,II.1.1,Corrientes,AR-W,annual,2018,gas oil combustion consumption by to the public,618.8078399999999,TJ,CO2,74100.0,kg/TJ,45853660.944,kg +c5161d87-ab5c-34a0-b3c4-538e64265529,SESCO,II.1.1,Corrientes,AR-W,annual,2018,gas oil combustion consumption by to the public,618.8078399999999,TJ,CH4,3.9,kg/TJ,2413.350576,kg +c5161d87-ab5c-34a0-b3c4-538e64265529,SESCO,II.1.1,Corrientes,AR-W,annual,2018,gas oil combustion consumption by to the public,618.8078399999999,TJ,N2O,3.9,kg/TJ,2413.350576,kg +4f401561-6915-33a6-981f-8bcc537ef80a,SESCO,II.1.1,Córdoba,AR-X,annual,2018,gas oil combustion consumption by to the public,5976.957,TJ,CO2,74100.0,kg/TJ,442892513.70000005,kg +6416c9d6-7ef2-3a5c-81ca-5be62cd7659a,SESCO,II.1.1,Córdoba,AR-X,annual,2018,gas oil combustion consumption by to the public,5976.957,TJ,CH4,3.9,kg/TJ,23310.1323,kg +6416c9d6-7ef2-3a5c-81ca-5be62cd7659a,SESCO,II.1.1,Córdoba,AR-X,annual,2018,gas oil combustion consumption by to the public,5976.957,TJ,N2O,3.9,kg/TJ,23310.1323,kg +f3f05484-83d9-345e-9ce1-dbe44b1e5c9d,SESCO,II.1.1,Entre Rios,AR-E,annual,2018,gas oil combustion consumption by to the public,1368.4423199999999,TJ,CO2,74100.0,kg/TJ,101401575.91199999,kg +eb62326f-e708-3aed-90db-394f47c5e3ac,SESCO,II.1.1,Entre Rios,AR-E,annual,2018,gas oil combustion consumption by to the public,1368.4423199999999,TJ,CH4,3.9,kg/TJ,5336.925047999999,kg +eb62326f-e708-3aed-90db-394f47c5e3ac,SESCO,II.1.1,Entre Rios,AR-E,annual,2018,gas oil combustion consumption by to the public,1368.4423199999999,TJ,N2O,3.9,kg/TJ,5336.925047999999,kg +9f4c4838-55fd-3df7-aaa5-56a5069b0e67,SESCO,II.1.1,Formosa,AR-P,annual,2018,gas oil combustion consumption by to the public,123.99996,TJ,CO2,74100.0,kg/TJ,9188397.036,kg +8e312d70-c20d-399f-b647-41f8ad2d6768,SESCO,II.1.1,Formosa,AR-P,annual,2018,gas oil combustion consumption by to the public,123.99996,TJ,CH4,3.9,kg/TJ,483.599844,kg +8e312d70-c20d-399f-b647-41f8ad2d6768,SESCO,II.1.1,Formosa,AR-P,annual,2018,gas oil combustion consumption by to the public,123.99996,TJ,N2O,3.9,kg/TJ,483.599844,kg +479354e1-c695-377f-8f85-fc415ae9a313,SESCO,II.1.1,Jujuy,AR-Y,annual,2018,gas oil combustion consumption by to the public,72.74568,TJ,CO2,74100.0,kg/TJ,5390454.887999999,kg +c12abc76-c5b9-391e-8dee-5a20e0d30ea2,SESCO,II.1.1,Jujuy,AR-Y,annual,2018,gas oil combustion consumption by to the public,72.74568,TJ,CH4,3.9,kg/TJ,283.708152,kg +c12abc76-c5b9-391e-8dee-5a20e0d30ea2,SESCO,II.1.1,Jujuy,AR-Y,annual,2018,gas oil combustion consumption by to the public,72.74568,TJ,N2O,3.9,kg/TJ,283.708152,kg +15dedc50-1fd0-3b4b-929c-89094c6278da,SESCO,II.1.1,La Pampa,AR-L,annual,2018,gas oil combustion consumption by to the public,632.93076,TJ,CO2,74100.0,kg/TJ,46900169.316,kg +f87d3905-0732-336a-a481-4fdd6e995ed4,SESCO,II.1.1,La Pampa,AR-L,annual,2018,gas oil combustion consumption by to the public,632.93076,TJ,CH4,3.9,kg/TJ,2468.429964,kg +f87d3905-0732-336a-a481-4fdd6e995ed4,SESCO,II.1.1,La Pampa,AR-L,annual,2018,gas oil combustion consumption by to the public,632.93076,TJ,N2O,3.9,kg/TJ,2468.429964,kg +2235117c-61aa-3da9-8c47-9d7f9ddc4258,SESCO,II.1.1,La Rioja,AR-F,annual,2018,gas oil combustion consumption by to the public,172.61748,TJ,CO2,74100.0,kg/TJ,12790955.268,kg +afcc9ef9-0da0-31e6-a51b-682148244904,SESCO,II.1.1,La Rioja,AR-F,annual,2018,gas oil combustion consumption by to the public,172.61748,TJ,CH4,3.9,kg/TJ,673.208172,kg +afcc9ef9-0da0-31e6-a51b-682148244904,SESCO,II.1.1,La Rioja,AR-F,annual,2018,gas oil combustion consumption by to the public,172.61748,TJ,N2O,3.9,kg/TJ,673.208172,kg +557cdacd-b7d4-3798-a75a-746cce82ccd4,SESCO,II.1.1,Mendoza,AR-M,annual,2018,gas oil combustion consumption by to the public,1182.8577599999999,TJ,CO2,74100.0,kg/TJ,87649760.01599999,kg +67534068-56ef-32d8-9ed9-c0687e0b8314,SESCO,II.1.1,Mendoza,AR-M,annual,2018,gas oil combustion consumption by to the public,1182.8577599999999,TJ,CH4,3.9,kg/TJ,4613.145264,kg +67534068-56ef-32d8-9ed9-c0687e0b8314,SESCO,II.1.1,Mendoza,AR-M,annual,2018,gas oil combustion consumption by to the public,1182.8577599999999,TJ,N2O,3.9,kg/TJ,4613.145264,kg +948e2733-3a48-3635-9c4f-2f383f48549d,SESCO,II.1.1,Misiones,AR-N,annual,2018,gas oil combustion consumption by to the public,1115.5662,TJ,CO2,74100.0,kg/TJ,82663455.42,kg +a202eeb2-fc9e-33ac-aa4f-911178ba710b,SESCO,II.1.1,Misiones,AR-N,annual,2018,gas oil combustion consumption by to the public,1115.5662,TJ,CH4,3.9,kg/TJ,4350.70818,kg +a202eeb2-fc9e-33ac-aa4f-911178ba710b,SESCO,II.1.1,Misiones,AR-N,annual,2018,gas oil combustion consumption by to the public,1115.5662,TJ,N2O,3.9,kg/TJ,4350.70818,kg +09603179-62cb-3a42-949b-9218f06e62f2,SESCO,II.1.1,Neuquén,AR-Q,annual,2018,gas oil combustion consumption by to the public,816.34812,TJ,CO2,74100.0,kg/TJ,60491395.692,kg +255c71d8-e638-368e-adc7-f35331468933,SESCO,II.1.1,Neuquén,AR-Q,annual,2018,gas oil combustion consumption by to the public,816.34812,TJ,CH4,3.9,kg/TJ,3183.7576679999997,kg +255c71d8-e638-368e-adc7-f35331468933,SESCO,II.1.1,Neuquén,AR-Q,annual,2018,gas oil combustion consumption by to the public,816.34812,TJ,N2O,3.9,kg/TJ,3183.7576679999997,kg +1c11f5eb-c62f-3c6a-916d-3c0ddd236740,SESCO,II.1.1,Rio Negro,AR-R,annual,2018,gas oil combustion consumption by to the public,225.0276,TJ,CO2,74100.0,kg/TJ,16674545.16,kg +2fbae04d-e24b-3221-828b-739d6e6bc4f1,SESCO,II.1.1,Rio Negro,AR-R,annual,2018,gas oil combustion consumption by to the public,225.0276,TJ,CH4,3.9,kg/TJ,877.6076400000001,kg +2fbae04d-e24b-3221-828b-739d6e6bc4f1,SESCO,II.1.1,Rio Negro,AR-R,annual,2018,gas oil combustion consumption by to the public,225.0276,TJ,N2O,3.9,kg/TJ,877.6076400000001,kg +0ec8df85-1519-34c5-bda7-2d38b3f5d98c,SESCO,II.1.1,Salta,AR-A,annual,2018,gas oil combustion consumption by to the public,88.8552,TJ,CO2,74100.0,kg/TJ,6584170.319999999,kg +420bd60d-ff6c-3242-821a-e88ea4331900,SESCO,II.1.1,Salta,AR-A,annual,2018,gas oil combustion consumption by to the public,88.8552,TJ,CH4,3.9,kg/TJ,346.53528,kg +420bd60d-ff6c-3242-821a-e88ea4331900,SESCO,II.1.1,Salta,AR-A,annual,2018,gas oil combustion consumption by to the public,88.8552,TJ,N2O,3.9,kg/TJ,346.53528,kg +fc099efd-f97b-31c5-b3f4-39fdc0395dd8,SESCO,II.1.1,San Juan,AR-J,annual,2018,gas oil combustion consumption by to the public,293.475,TJ,CO2,74100.0,kg/TJ,21746497.5,kg +b2c02a52-9d0f-33e9-8277-61e8990ae174,SESCO,II.1.1,San Juan,AR-J,annual,2018,gas oil combustion consumption by to the public,293.475,TJ,CH4,3.9,kg/TJ,1144.5525,kg +b2c02a52-9d0f-33e9-8277-61e8990ae174,SESCO,II.1.1,San Juan,AR-J,annual,2018,gas oil combustion consumption by to the public,293.475,TJ,N2O,3.9,kg/TJ,1144.5525,kg +1acf01f6-9e29-3bf8-b867-7442e901661b,SESCO,II.1.1,San Luis,AR-D,annual,2018,gas oil combustion consumption by to the public,150.04247999999998,TJ,CO2,74100.0,kg/TJ,11118147.768,kg +17a58bea-2f84-3dbb-881a-697ed700d15b,SESCO,II.1.1,San Luis,AR-D,annual,2018,gas oil combustion consumption by to the public,150.04247999999998,TJ,CH4,3.9,kg/TJ,585.165672,kg +17a58bea-2f84-3dbb-881a-697ed700d15b,SESCO,II.1.1,San Luis,AR-D,annual,2018,gas oil combustion consumption by to the public,150.04247999999998,TJ,N2O,3.9,kg/TJ,585.165672,kg +466d19cd-d539-3da8-a4b4-b4a591aba8db,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,gas oil combustion consumption by to the public,5111.5217999999995,TJ,CO2,74100.0,kg/TJ,378763765.37999994,kg +4f994cd9-0710-3c4f-b4c3-8bc13037d7a0,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,gas oil combustion consumption by to the public,5111.5217999999995,TJ,CH4,3.9,kg/TJ,19934.935019999997,kg +4f994cd9-0710-3c4f-b4c3-8bc13037d7a0,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,gas oil combustion consumption by to the public,5111.5217999999995,TJ,N2O,3.9,kg/TJ,19934.935019999997,kg +6fadce05-1e08-3157-bf73-7be42026edc5,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2018,gas oil combustion consumption by to the public,256.01856,TJ,CO2,74100.0,kg/TJ,18970975.296,kg +d50f5f60-f1f9-3dcf-b95b-ef5418912149,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2018,gas oil combustion consumption by to the public,256.01856,TJ,CH4,3.9,kg/TJ,998.4723839999999,kg +d50f5f60-f1f9-3dcf-b95b-ef5418912149,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2018,gas oil combustion consumption by to the public,256.01856,TJ,N2O,3.9,kg/TJ,998.4723839999999,kg +4910b1ba-9fb3-31b3-ba12-6d4c5f2f17c6,SESCO,II.1.1,Tucuman,AR-T,annual,2018,gas oil combustion consumption by to the public,704.7012,TJ,CO2,74100.0,kg/TJ,52218358.919999994,kg +05c6031b-4dfa-352c-8042-4cc4a3f8e171,SESCO,II.1.1,Tucuman,AR-T,annual,2018,gas oil combustion consumption by to the public,704.7012,TJ,CH4,3.9,kg/TJ,2748.33468,kg +05c6031b-4dfa-352c-8042-4cc4a3f8e171,SESCO,II.1.1,Tucuman,AR-T,annual,2018,gas oil combustion consumption by to the public,704.7012,TJ,N2O,3.9,kg/TJ,2748.33468,kg +24961326-dbe7-3e10-ba5d-aabe11762f41,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,gas oil combustion consumption by to the public,8957.83224,TJ,CO2,74100.0,kg/TJ,663775368.984,kg +2b1bb803-ab1c-3fd8-a12e-594a9e58c0da,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,gas oil combustion consumption by to the public,8957.83224,TJ,CH4,3.9,kg/TJ,34935.545736,kg +2b1bb803-ab1c-3fd8-a12e-594a9e58c0da,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,gas oil combustion consumption by to the public,8957.83224,TJ,N2O,3.9,kg/TJ,34935.545736,kg +1f3e7516-8a4e-305a-ace4-77d8e8d62743,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,gas oil combustion consumption by to the public,1621.2462,TJ,CO2,74100.0,kg/TJ,120134343.42,kg +32805588-9379-36db-8211-77c7261b349b,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,gas oil combustion consumption by to the public,1621.2462,TJ,CH4,3.9,kg/TJ,6322.86018,kg +32805588-9379-36db-8211-77c7261b349b,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,gas oil combustion consumption by to the public,1621.2462,TJ,N2O,3.9,kg/TJ,6322.86018,kg +2e65dd8c-191b-33e8-8bd1-9d9db0afe48c,SESCO,II.1.1,Catamarca,AR-K,annual,2018,gas oil combustion consumption by to the public,38.14272,TJ,CO2,74100.0,kg/TJ,2826375.5519999997,kg +89a42ce3-1880-3924-b1d4-f5962fc3ae57,SESCO,II.1.1,Catamarca,AR-K,annual,2018,gas oil combustion consumption by to the public,38.14272,TJ,CH4,3.9,kg/TJ,148.75660799999997,kg +89a42ce3-1880-3924-b1d4-f5962fc3ae57,SESCO,II.1.1,Catamarca,AR-K,annual,2018,gas oil combustion consumption by to the public,38.14272,TJ,N2O,3.9,kg/TJ,148.75660799999997,kg +3edc232b-6064-3539-9f81-3ef2d4e24af9,SESCO,II.1.1,Chaco,AR-H,annual,2018,gas oil combustion consumption by to the public,573.83844,TJ,CO2,74100.0,kg/TJ,42521428.404,kg +0373dbdc-b3a9-32e7-bb0d-0f7e0a774bec,SESCO,II.1.1,Chaco,AR-H,annual,2018,gas oil combustion consumption by to the public,573.83844,TJ,CH4,3.9,kg/TJ,2237.969916,kg +0373dbdc-b3a9-32e7-bb0d-0f7e0a774bec,SESCO,II.1.1,Chaco,AR-H,annual,2018,gas oil combustion consumption by to the public,573.83844,TJ,N2O,3.9,kg/TJ,2237.969916,kg +48ba263c-42e7-36de-a050-acd27fcbbdc2,SESCO,II.1.1,Corrientes,AR-W,annual,2018,gas oil combustion consumption by to the public,451.64448,TJ,CO2,74100.0,kg/TJ,33466855.968,kg +b4446dff-3455-3210-acee-12dbe68ac62f,SESCO,II.1.1,Corrientes,AR-W,annual,2018,gas oil combustion consumption by to the public,451.64448,TJ,CH4,3.9,kg/TJ,1761.413472,kg +b4446dff-3455-3210-acee-12dbe68ac62f,SESCO,II.1.1,Corrientes,AR-W,annual,2018,gas oil combustion consumption by to the public,451.64448,TJ,N2O,3.9,kg/TJ,1761.413472,kg +cd1b5b45-5e34-3385-ab54-847a42faf3ba,SESCO,II.1.1,Córdoba,AR-X,annual,2018,gas oil combustion consumption by to the public,2521.32048,TJ,CO2,74100.0,kg/TJ,186829847.568,kg +1bfbbe96-9b0b-3b74-892d-ef51a9e7c806,SESCO,II.1.1,Córdoba,AR-X,annual,2018,gas oil combustion consumption by to the public,2521.32048,TJ,CH4,3.9,kg/TJ,9833.149872,kg +1bfbbe96-9b0b-3b74-892d-ef51a9e7c806,SESCO,II.1.1,Córdoba,AR-X,annual,2018,gas oil combustion consumption by to the public,2521.32048,TJ,N2O,3.9,kg/TJ,9833.149872,kg +1b22a9b8-751e-3320-ab92-dff4321f98a7,SESCO,II.1.1,Entre Rios,AR-E,annual,2018,gas oil combustion consumption by to the public,677.28612,TJ,CO2,74100.0,kg/TJ,50186901.492,kg +e0e01c1c-cdab-3ad2-abb5-1053c699cc58,SESCO,II.1.1,Entre Rios,AR-E,annual,2018,gas oil combustion consumption by to the public,677.28612,TJ,CH4,3.9,kg/TJ,2641.415868,kg +e0e01c1c-cdab-3ad2-abb5-1053c699cc58,SESCO,II.1.1,Entre Rios,AR-E,annual,2018,gas oil combustion consumption by to the public,677.28612,TJ,N2O,3.9,kg/TJ,2641.415868,kg +549244cf-ccb0-36dd-8fad-35279f08363e,SESCO,II.1.1,Formosa,AR-P,annual,2018,gas oil combustion consumption by to the public,178.75788,TJ,CO2,74100.0,kg/TJ,13245958.908,kg +50c4aab7-266c-3194-9a0d-451f9a79207d,SESCO,II.1.1,Formosa,AR-P,annual,2018,gas oil combustion consumption by to the public,178.75788,TJ,CH4,3.9,kg/TJ,697.155732,kg +50c4aab7-266c-3194-9a0d-451f9a79207d,SESCO,II.1.1,Formosa,AR-P,annual,2018,gas oil combustion consumption by to the public,178.75788,TJ,N2O,3.9,kg/TJ,697.155732,kg +7a6130aa-e971-3fa0-8d46-6cbca5a943fd,SESCO,II.1.1,Jujuy,AR-Y,annual,2018,gas oil combustion consumption by to the public,56.09436,TJ,CO2,74100.0,kg/TJ,4156592.0760000004,kg +0fb1fdeb-0cde-37f7-a7cf-ab4cf5a65151,SESCO,II.1.1,Jujuy,AR-Y,annual,2018,gas oil combustion consumption by to the public,56.09436,TJ,CH4,3.9,kg/TJ,218.768004,kg +0fb1fdeb-0cde-37f7-a7cf-ab4cf5a65151,SESCO,II.1.1,Jujuy,AR-Y,annual,2018,gas oil combustion consumption by to the public,56.09436,TJ,N2O,3.9,kg/TJ,218.768004,kg +5486124a-edc6-3e10-9b21-40fcd79e400a,SESCO,II.1.1,La Pampa,AR-L,annual,2018,gas oil combustion consumption by to the public,315.39984,TJ,CO2,74100.0,kg/TJ,23371128.143999998,kg +5491e220-c2e6-3d6f-9098-c62e824bd0ac,SESCO,II.1.1,La Pampa,AR-L,annual,2018,gas oil combustion consumption by to the public,315.39984,TJ,CH4,3.9,kg/TJ,1230.059376,kg +5491e220-c2e6-3d6f-9098-c62e824bd0ac,SESCO,II.1.1,La Pampa,AR-L,annual,2018,gas oil combustion consumption by to the public,315.39984,TJ,N2O,3.9,kg/TJ,1230.059376,kg +1b9c721b-8eb8-3340-a127-d8e4bb0e6d15,SESCO,II.1.1,La Rioja,AR-F,annual,2018,gas oil combustion consumption by to the public,167.055,TJ,CO2,74100.0,kg/TJ,12378775.5,kg +c59b6fab-a113-3b2e-ad96-d201a4e3efa0,SESCO,II.1.1,La Rioja,AR-F,annual,2018,gas oil combustion consumption by to the public,167.055,TJ,CH4,3.9,kg/TJ,651.5145,kg +c59b6fab-a113-3b2e-ad96-d201a4e3efa0,SESCO,II.1.1,La Rioja,AR-F,annual,2018,gas oil combustion consumption by to the public,167.055,TJ,N2O,3.9,kg/TJ,651.5145,kg +35b91f2f-9730-30c0-8f1f-b389e958ba12,SESCO,II.1.1,Mendoza,AR-M,annual,2018,gas oil combustion consumption by to the public,764.22696,TJ,CO2,74100.0,kg/TJ,56629217.735999994,kg +da15c2a7-3441-3a60-96fe-13159cff0029,SESCO,II.1.1,Mendoza,AR-M,annual,2018,gas oil combustion consumption by to the public,764.22696,TJ,CH4,3.9,kg/TJ,2980.4851439999998,kg +da15c2a7-3441-3a60-96fe-13159cff0029,SESCO,II.1.1,Mendoza,AR-M,annual,2018,gas oil combustion consumption by to the public,764.22696,TJ,N2O,3.9,kg/TJ,2980.4851439999998,kg +e9327708-2cfa-3d01-bf16-682873013432,SESCO,II.1.1,Misiones,AR-N,annual,2018,gas oil combustion consumption by to the public,449.83848,TJ,CO2,74100.0,kg/TJ,33333031.368,kg +a5a0c9c9-936c-3292-809f-cff6b8a7dbdb,SESCO,II.1.1,Misiones,AR-N,annual,2018,gas oil combustion consumption by to the public,449.83848,TJ,CH4,3.9,kg/TJ,1754.370072,kg +a5a0c9c9-936c-3292-809f-cff6b8a7dbdb,SESCO,II.1.1,Misiones,AR-N,annual,2018,gas oil combustion consumption by to the public,449.83848,TJ,N2O,3.9,kg/TJ,1754.370072,kg +072c9fb7-de9f-3023-b1d2-ebe9241fb50f,SESCO,II.1.1,Neuquén,AR-Q,annual,2018,gas oil combustion consumption by to the public,991.24116,TJ,CO2,74100.0,kg/TJ,73450969.956,kg +101d2362-abdf-3727-a86d-c719444b110e,SESCO,II.1.1,Neuquén,AR-Q,annual,2018,gas oil combustion consumption by to the public,991.24116,TJ,CH4,3.9,kg/TJ,3865.840524,kg +101d2362-abdf-3727-a86d-c719444b110e,SESCO,II.1.1,Neuquén,AR-Q,annual,2018,gas oil combustion consumption by to the public,991.24116,TJ,N2O,3.9,kg/TJ,3865.840524,kg +ddd4c0e2-ee60-3a17-8e6b-57647d5f13a1,SESCO,II.1.1,Rio Negro,AR-R,annual,2018,gas oil combustion consumption by to the public,145.9248,TJ,CO2,74100.0,kg/TJ,10813027.68,kg +3735f0e6-886d-3208-af7b-7780539fdcb3,SESCO,II.1.1,Rio Negro,AR-R,annual,2018,gas oil combustion consumption by to the public,145.9248,TJ,CH4,3.9,kg/TJ,569.10672,kg +3735f0e6-886d-3208-af7b-7780539fdcb3,SESCO,II.1.1,Rio Negro,AR-R,annual,2018,gas oil combustion consumption by to the public,145.9248,TJ,N2O,3.9,kg/TJ,569.10672,kg +190c17e2-7827-3d7e-a018-4c966227722c,SESCO,II.1.1,Salta,AR-A,annual,2018,gas oil combustion consumption by to the public,155.27988,TJ,CO2,74100.0,kg/TJ,11506239.108,kg +03d91489-9c9f-3987-8714-edadd3a14d82,SESCO,II.1.1,Salta,AR-A,annual,2018,gas oil combustion consumption by to the public,155.27988,TJ,CH4,3.9,kg/TJ,605.5915319999999,kg +03d91489-9c9f-3987-8714-edadd3a14d82,SESCO,II.1.1,Salta,AR-A,annual,2018,gas oil combustion consumption by to the public,155.27988,TJ,N2O,3.9,kg/TJ,605.5915319999999,kg +7607abf4-3831-3eab-a161-aa0585b65bec,SESCO,II.1.1,San Juan,AR-J,annual,2018,gas oil combustion consumption by to the public,107.89044,TJ,CO2,74100.0,kg/TJ,7994681.604,kg +50ae7c5e-4473-372e-adb2-4962d9801772,SESCO,II.1.1,San Juan,AR-J,annual,2018,gas oil combustion consumption by to the public,107.89044,TJ,CH4,3.9,kg/TJ,420.772716,kg +50ae7c5e-4473-372e-adb2-4962d9801772,SESCO,II.1.1,San Juan,AR-J,annual,2018,gas oil combustion consumption by to the public,107.89044,TJ,N2O,3.9,kg/TJ,420.772716,kg +5cc260b8-1d38-36b3-8b57-e6538d5df7d0,SESCO,II.1.1,San Luis,AR-D,annual,2018,gas oil combustion consumption by to the public,88.81908,TJ,CO2,74100.0,kg/TJ,6581493.828,kg +2ea21beb-6eb5-3a20-93f1-433ab9e3ce29,SESCO,II.1.1,San Luis,AR-D,annual,2018,gas oil combustion consumption by to the public,88.81908,TJ,CH4,3.9,kg/TJ,346.394412,kg +2ea21beb-6eb5-3a20-93f1-433ab9e3ce29,SESCO,II.1.1,San Luis,AR-D,annual,2018,gas oil combustion consumption by to the public,88.81908,TJ,N2O,3.9,kg/TJ,346.394412,kg +acf6e447-573a-37d6-b217-a12027c23505,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,gas oil combustion consumption by to the public,2332.0878,TJ,CO2,74100.0,kg/TJ,172807705.98,kg +eb0d6ed5-5711-304c-8bff-a8b651a7e49d,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,gas oil combustion consumption by to the public,2332.0878,TJ,CH4,3.9,kg/TJ,9095.142419999998,kg +eb0d6ed5-5711-304c-8bff-a8b651a7e49d,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,gas oil combustion consumption by to the public,2332.0878,TJ,N2O,3.9,kg/TJ,9095.142419999998,kg +ff13317c-3736-3c8e-9193-64e827db0b25,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2018,gas oil combustion consumption by to the public,257.49948,TJ,CO2,74100.0,kg/TJ,19080711.468000002,kg +6cdd0b4d-8f9b-3a2a-91d4-380fd88477d0,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2018,gas oil combustion consumption by to the public,257.49948,TJ,CH4,3.9,kg/TJ,1004.247972,kg +6cdd0b4d-8f9b-3a2a-91d4-380fd88477d0,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2018,gas oil combustion consumption by to the public,257.49948,TJ,N2O,3.9,kg/TJ,1004.247972,kg +fd25b21c-e2a4-38c9-9fc7-6bd499860fd8,SESCO,II.1.1,Tucuman,AR-T,annual,2018,gas oil combustion consumption by to the public,555.12828,TJ,CO2,74100.0,kg/TJ,41135005.548,kg +90986e7d-cfaf-339d-83c3-cb20d7d9d1e7,SESCO,II.1.1,Tucuman,AR-T,annual,2018,gas oil combustion consumption by to the public,555.12828,TJ,CH4,3.9,kg/TJ,2165.000292,kg +90986e7d-cfaf-339d-83c3-cb20d7d9d1e7,SESCO,II.1.1,Tucuman,AR-T,annual,2018,gas oil combustion consumption by to the public,555.12828,TJ,N2O,3.9,kg/TJ,2165.000292,kg +0c836115-5e43-39ad-a581-bee825394999,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,jet kerosene combustion consumption by to the public,0.37743599999999994,TJ,CO2,71500.0,kg/TJ,26986.673999999995,kg +6bf78263-32a2-3ed3-9932-0f065d162243,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,jet kerosene combustion consumption by to the public,0.37743599999999994,TJ,CH4,0.5,kg/TJ,0.18871799999999997,kg +1d0ad3c9-0f5c-3332-81a6-18a826c27eaf,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,jet kerosene combustion consumption by to the public,0.37743599999999994,TJ,N2O,2.0,kg/TJ,0.7548719999999999,kg +d17d5672-f7c3-3e51-abd3-a7ecc3057b55,SESCO,II.1.1,Entre Rios,AR-E,annual,2018,jet kerosene combustion consumption by to the public,3.6800009999999994,TJ,CO2,71500.0,kg/TJ,263120.07149999996,kg +4a68a8e2-a8e2-30a6-9876-5c28c4aa1117,SESCO,II.1.1,Entre Rios,AR-E,annual,2018,jet kerosene combustion consumption by to the public,3.6800009999999994,TJ,CH4,0.5,kg/TJ,1.8400004999999997,kg +caa0fd18-3793-3095-8a23-f8d8eef7b877,SESCO,II.1.1,Entre Rios,AR-E,annual,2018,jet kerosene combustion consumption by to the public,3.6800009999999994,TJ,N2O,2.0,kg/TJ,7.360001999999999,kg +6b38a6c7-f9fd-37dd-984f-a70222a3f480,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,jet kerosene combustion consumption by to the public,0.7234189999999999,TJ,CO2,71500.0,kg/TJ,51724.45849999999,kg +a248fd1a-c682-378e-9ea3-e2702a2e1bd5,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,jet kerosene combustion consumption by to the public,0.7234189999999999,TJ,CH4,0.5,kg/TJ,0.36170949999999996,kg +4d301cfa-7514-34ec-93a8-25009f8b5280,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,jet kerosene combustion consumption by to the public,0.7234189999999999,TJ,N2O,2.0,kg/TJ,1.4468379999999998,kg +effc26e8-1e44-3feb-89c8-1931c98daa56,SESCO,I.3.1,Capital Federal,AR-C,annual,2018,gas oil combustion consumption by petrochemical industries,1.30032,TJ,CO2,74100.0,kg/TJ,96353.712,kg +d1cc3170-1fb3-3d62-98ae-69f2ea114da8,SESCO,I.3.1,Capital Federal,AR-C,annual,2018,gas oil combustion consumption by petrochemical industries,1.30032,TJ,CH4,3.9,kg/TJ,5.071248,kg +d1cc3170-1fb3-3d62-98ae-69f2ea114da8,SESCO,I.3.1,Capital Federal,AR-C,annual,2018,gas oil combustion consumption by petrochemical industries,1.30032,TJ,N2O,3.9,kg/TJ,5.071248,kg +540f8278-0d07-3d72-9b67-00cfc2ee4bf7,SESCO,II.2.1,Buenos Aires,AR-B,annual,2018,gas oil combustion consumption by railway transport,280.76076,TJ,CO2,74100.0,kg/TJ,20804372.316,kg +17ee28cb-7aa2-39e6-96d4-5077b41be8ad,SESCO,II.2.1,Buenos Aires,AR-B,annual,2018,gas oil combustion consumption by railway transport,280.76076,TJ,CH4,3.9,kg/TJ,1094.966964,kg +17ee28cb-7aa2-39e6-96d4-5077b41be8ad,SESCO,II.2.1,Buenos Aires,AR-B,annual,2018,gas oil combustion consumption by railway transport,280.76076,TJ,N2O,3.9,kg/TJ,1094.966964,kg +62afde42-3063-301e-85f1-4065eb644840,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,gasoline combustion consumption by freight transport,1.1961,TJ,CO2,69300.0,kg/TJ,82889.73,kg +786ebfd4-c51f-35df-9c5b-e8a871a86484,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,gasoline combustion consumption by freight transport,1.1961,TJ,CH4,33.0,kg/TJ,39.4713,kg +19a14e4d-1496-3233-be72-a0d23f54fa09,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,gasoline combustion consumption by freight transport,1.1961,TJ,N2O,3.2,kg/TJ,3.82752,kg +485316ae-1f1c-3294-9944-51e7cc7c4fc5,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,gasoline combustion consumption by freight transport,4.4742999999999995,TJ,CO2,69300.0,kg/TJ,310068.99,kg +3ee83461-8521-3213-8a15-1145ad37ffa6,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,gasoline combustion consumption by freight transport,4.4742999999999995,TJ,CH4,33.0,kg/TJ,147.65189999999998,kg +2c770bbb-6a0a-328d-b80b-3d2b76e31868,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,gasoline combustion consumption by freight transport,4.4742999999999995,TJ,N2O,3.2,kg/TJ,14.31776,kg +5860aa9e-a040-318c-9a7a-4a5392c34755,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,gas oil combustion consumption by freight transport,36.12,TJ,CO2,74100.0,kg/TJ,2676492.0,kg +ee5df7f2-3194-330d-9c32-9c95e1df11bd,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,gas oil combustion consumption by freight transport,36.12,TJ,CH4,3.9,kg/TJ,140.868,kg +ee5df7f2-3194-330d-9c32-9c95e1df11bd,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,gas oil combustion consumption by freight transport,36.12,TJ,N2O,3.9,kg/TJ,140.868,kg +f7ef6738-57b7-3385-98f0-25330ef6030d,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,gas oil combustion consumption by freight transport,4.8762,TJ,CO2,74100.0,kg/TJ,361326.42,kg +004b0e74-8365-38fc-9ab2-cbdd0b96aecc,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,gas oil combustion consumption by freight transport,4.8762,TJ,CH4,3.9,kg/TJ,19.01718,kg +004b0e74-8365-38fc-9ab2-cbdd0b96aecc,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,gas oil combustion consumption by freight transport,4.8762,TJ,N2O,3.9,kg/TJ,19.01718,kg +e03dc4b9-dfdf-374f-b4d7-36a0d5dfa1bc,SESCO,II.1.1,Córdoba,AR-X,annual,2018,gas oil combustion consumption by freight transport,54.866279999999996,TJ,CO2,74100.0,kg/TJ,4065591.3479999998,kg +3c486512-622d-39cf-8acc-1e0cad9b37e0,SESCO,II.1.1,Córdoba,AR-X,annual,2018,gas oil combustion consumption by freight transport,54.866279999999996,TJ,CH4,3.9,kg/TJ,213.978492,kg +3c486512-622d-39cf-8acc-1e0cad9b37e0,SESCO,II.1.1,Córdoba,AR-X,annual,2018,gas oil combustion consumption by freight transport,54.866279999999996,TJ,N2O,3.9,kg/TJ,213.978492,kg +56384b82-3110-356f-a0d0-9636707ef011,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,gas oil combustion consumption by freight transport,2.3478,TJ,CO2,74100.0,kg/TJ,173971.97999999998,kg +890d68ef-ec72-34f8-afb8-c87f2c3219e2,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,gas oil combustion consumption by freight transport,2.3478,TJ,CH4,3.9,kg/TJ,9.156419999999999,kg +890d68ef-ec72-34f8-afb8-c87f2c3219e2,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,gas oil combustion consumption by freight transport,2.3478,TJ,N2O,3.9,kg/TJ,9.156419999999999,kg +53c8d0f1-9dcd-3cad-8615-380a00095d54,SESCO,II.1.1,Córdoba,AR-X,annual,2018,gas oil combustion consumption by freight transport,3.17856,TJ,CO2,74100.0,kg/TJ,235531.296,kg +3d033ff8-50a8-3efc-8ec2-9c65cd9de9c4,SESCO,II.1.1,Córdoba,AR-X,annual,2018,gas oil combustion consumption by freight transport,3.17856,TJ,CH4,3.9,kg/TJ,12.396384,kg +3d033ff8-50a8-3efc-8ec2-9c65cd9de9c4,SESCO,II.1.1,Córdoba,AR-X,annual,2018,gas oil combustion consumption by freight transport,3.17856,TJ,N2O,3.9,kg/TJ,12.396384,kg +cac3c994-5131-3d63-95fa-ee9d41c5c310,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,gas oil combustion consumption by public passenger transport,5118.78192,TJ,CO2,74100.0,kg/TJ,379301740.272,kg +ad6a2a47-60b6-3279-8658-9b6ae1435d7e,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,gas oil combustion consumption by public passenger transport,5118.78192,TJ,CH4,3.9,kg/TJ,19963.249488,kg +ad6a2a47-60b6-3279-8658-9b6ae1435d7e,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,gas oil combustion consumption by public passenger transport,5118.78192,TJ,N2O,3.9,kg/TJ,19963.249488,kg +ee0ab545-7baa-38e5-8ff1-6c6578cb0694,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,gas oil combustion consumption by public passenger transport,466.81488,TJ,CO2,74100.0,kg/TJ,34590982.608,kg +81b9e77a-7f9f-33ad-9164-14894819ed25,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,gas oil combustion consumption by public passenger transport,466.81488,TJ,CH4,3.9,kg/TJ,1820.5780320000001,kg +81b9e77a-7f9f-33ad-9164-14894819ed25,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,gas oil combustion consumption by public passenger transport,466.81488,TJ,N2O,3.9,kg/TJ,1820.5780320000001,kg +a325b2f7-c0b9-3e5d-9c10-73120d4cb4eb,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,gas oil combustion consumption by public passenger transport,90.95016,TJ,CO2,74100.0,kg/TJ,6739406.856,kg +f99dc35d-6040-385a-b2a4-06c142aa7ee1,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,gas oil combustion consumption by public passenger transport,90.95016,TJ,CH4,3.9,kg/TJ,354.705624,kg +f99dc35d-6040-385a-b2a4-06c142aa7ee1,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,gas oil combustion consumption by public passenger transport,90.95016,TJ,N2O,3.9,kg/TJ,354.705624,kg +51cc1477-c5fc-3c2c-8aed-7b53686b9c50,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,gas oil combustion consumption by public passenger transport,837.76728,TJ,CO2,74100.0,kg/TJ,62078555.448,kg +80721cde-bdb1-36c0-8f62-7d60a02b45fc,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,gas oil combustion consumption by public passenger transport,837.76728,TJ,CH4,3.9,kg/TJ,3267.292392,kg +80721cde-bdb1-36c0-8f62-7d60a02b45fc,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,gas oil combustion consumption by public passenger transport,837.76728,TJ,N2O,3.9,kg/TJ,3267.292392,kg +3394cebc-448a-3043-b3eb-7b945c8aeef1,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,gas oil combustion consumption by public passenger transport,32.36352,TJ,CO2,74100.0,kg/TJ,2398136.832,kg +a1562943-56d9-32d0-a003-75f6611cd59b,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,gas oil combustion consumption by public passenger transport,32.36352,TJ,CH4,3.9,kg/TJ,126.21772800000001,kg +a1562943-56d9-32d0-a003-75f6611cd59b,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,gas oil combustion consumption by public passenger transport,32.36352,TJ,N2O,3.9,kg/TJ,126.21772800000001,kg +f0038ee5-f1df-3bb9-9ccb-336463bb5df5,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,gas oil combustion consumption by public passenger transport,45.15,TJ,CO2,74100.0,kg/TJ,3345615.0,kg +cb0a7858-fb4a-35a3-8b51-dcf8d3889c6e,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,gas oil combustion consumption by public passenger transport,45.15,TJ,CH4,3.9,kg/TJ,176.08499999999998,kg +cb0a7858-fb4a-35a3-8b51-dcf8d3889c6e,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,gas oil combustion consumption by public passenger transport,45.15,TJ,N2O,3.9,kg/TJ,176.08499999999998,kg +022c383f-8326-309a-89f2-6b62cd38e794,SESCO,II.5.1,Buenos Aires,AR-B,annual,2018,gas oil combustion consumption by agriculture machines,1157.72037108,TJ,CO2,74100.0,kg/TJ,85787079.497028,kg +aa9bb924-64c0-3359-9459-6777b9597cb6,SESCO,II.5.1,Buenos Aires,AR-B,annual,2018,gas oil combustion consumption by agriculture machines,1157.72037108,TJ,CH4,3.9,kg/TJ,4515.109447211999,kg +aa9bb924-64c0-3359-9459-6777b9597cb6,SESCO,II.5.1,Buenos Aires,AR-B,annual,2018,gas oil combustion consumption by agriculture machines,1157.72037108,TJ,N2O,3.9,kg/TJ,4515.109447211999,kg +feb912ba-24df-3c1c-97e4-e7d7af37b4e4,SESCO,II.5.1,Capital Federal,AR-C,annual,2018,gas oil combustion consumption by agriculture machines,393.89152572,TJ,CO2,74100.0,kg/TJ,29187362.055852,kg +52ec3e51-6f9b-30a3-82de-738702762fbc,SESCO,II.5.1,Capital Federal,AR-C,annual,2018,gas oil combustion consumption by agriculture machines,393.89152572,TJ,CH4,3.9,kg/TJ,1536.176950308,kg +52ec3e51-6f9b-30a3-82de-738702762fbc,SESCO,II.5.1,Capital Federal,AR-C,annual,2018,gas oil combustion consumption by agriculture machines,393.89152572,TJ,N2O,3.9,kg/TJ,1536.176950308,kg +191ef058-9a76-3064-b46c-cf44424c129a,SESCO,II.5.1,Corrientes,AR-W,annual,2018,gas oil combustion consumption by agriculture machines,30.58807752,TJ,CO2,74100.0,kg/TJ,2266576.544232,kg +da2e4502-96ea-38c2-85b5-ef9b9abd3f7c,SESCO,II.5.1,Corrientes,AR-W,annual,2018,gas oil combustion consumption by agriculture machines,30.58807752,TJ,CH4,3.9,kg/TJ,119.29350232799999,kg +da2e4502-96ea-38c2-85b5-ef9b9abd3f7c,SESCO,II.5.1,Corrientes,AR-W,annual,2018,gas oil combustion consumption by agriculture machines,30.58807752,TJ,N2O,3.9,kg/TJ,119.29350232799999,kg +df521f47-b7da-32c0-b271-cd9ee83049df,SESCO,II.5.1,Córdoba,AR-X,annual,2018,gas oil combustion consumption by agriculture machines,187.90050215999997,TJ,CO2,74100.0,kg/TJ,13923427.210055998,kg +6a67f61f-056d-3dce-a6c2-110096bb7c89,SESCO,II.5.1,Córdoba,AR-X,annual,2018,gas oil combustion consumption by agriculture machines,187.90050215999997,TJ,CH4,3.9,kg/TJ,732.8119584239998,kg +6a67f61f-056d-3dce-a6c2-110096bb7c89,SESCO,II.5.1,Córdoba,AR-X,annual,2018,gas oil combustion consumption by agriculture machines,187.90050215999997,TJ,N2O,3.9,kg/TJ,732.8119584239998,kg +5db55058-2ebd-3349-9457-d706ef9bf731,SESCO,II.5.1,Entre Rios,AR-E,annual,2018,gas oil combustion consumption by agriculture machines,130.44622415999999,TJ,CO2,74100.0,kg/TJ,9666065.210256,kg +a75e3e4d-c07a-386c-896d-3c4dd07884e3,SESCO,II.5.1,Entre Rios,AR-E,annual,2018,gas oil combustion consumption by agriculture machines,130.44622415999999,TJ,CH4,3.9,kg/TJ,508.7402742239999,kg +a75e3e4d-c07a-386c-896d-3c4dd07884e3,SESCO,II.5.1,Entre Rios,AR-E,annual,2018,gas oil combustion consumption by agriculture machines,130.44622415999999,TJ,N2O,3.9,kg/TJ,508.7402742239999,kg +ceedad92-bb26-32c2-ac3c-bc1e9a25b773,SESCO,II.5.1,Jujuy,AR-Y,annual,2018,gas oil combustion consumption by agriculture machines,13.474566,TJ,CO2,74100.0,kg/TJ,998465.3406,kg +700a879c-8303-3cea-a3e4-a2b8f034ba39,SESCO,II.5.1,Jujuy,AR-Y,annual,2018,gas oil combustion consumption by agriculture machines,13.474566,TJ,CH4,3.9,kg/TJ,52.5508074,kg +700a879c-8303-3cea-a3e4-a2b8f034ba39,SESCO,II.5.1,Jujuy,AR-Y,annual,2018,gas oil combustion consumption by agriculture machines,13.474566,TJ,N2O,3.9,kg/TJ,52.5508074,kg +403668ec-48eb-3b2e-87af-b9c06ccaf593,SESCO,II.5.1,La Pampa,AR-L,annual,2018,gas oil combustion consumption by agriculture machines,25.8769098,TJ,CO2,74100.0,kg/TJ,1917479.01618,kg +9712fde9-6e6f-3e9d-be36-67c0c31f11f4,SESCO,II.5.1,La Pampa,AR-L,annual,2018,gas oil combustion consumption by agriculture machines,25.8769098,TJ,CH4,3.9,kg/TJ,100.91994822,kg +9712fde9-6e6f-3e9d-be36-67c0c31f11f4,SESCO,II.5.1,La Pampa,AR-L,annual,2018,gas oil combustion consumption by agriculture machines,25.8769098,TJ,N2O,3.9,kg/TJ,100.91994822,kg +82cdbe5a-8b1b-30eb-a358-82338be505d9,SESCO,II.5.1,San Luis,AR-D,annual,2018,gas oil combustion consumption by agriculture machines,2.2732483199999995,TJ,CO2,74100.0,kg/TJ,168447.70051199995,kg +ad1e16af-dcb2-3492-af53-8416e789f0ec,SESCO,II.5.1,San Luis,AR-D,annual,2018,gas oil combustion consumption by agriculture machines,2.2732483199999995,TJ,CH4,3.9,kg/TJ,8.865668447999997,kg +ad1e16af-dcb2-3492-af53-8416e789f0ec,SESCO,II.5.1,San Luis,AR-D,annual,2018,gas oil combustion consumption by agriculture machines,2.2732483199999995,TJ,N2O,3.9,kg/TJ,8.865668447999997,kg +c8f69ba0-a92d-3f50-a1c5-d9ea4d0ebeb7,SESCO,II.5.1,Santa Fe,AR-S,annual,2018,gas oil combustion consumption by agriculture machines,415.56699324,TJ,CO2,74100.0,kg/TJ,30793514.199084,kg +baa164f8-ef0e-315f-ba02-5205fa4b28a9,SESCO,II.5.1,Santa Fe,AR-S,annual,2018,gas oil combustion consumption by agriculture machines,415.56699324,TJ,CH4,3.9,kg/TJ,1620.711273636,kg +baa164f8-ef0e-315f-ba02-5205fa4b28a9,SESCO,II.5.1,Santa Fe,AR-S,annual,2018,gas oil combustion consumption by agriculture machines,415.56699324,TJ,N2O,3.9,kg/TJ,1620.711273636,kg +c63d87b8-c877-36b5-92e3-0b2fffad4e1f,SESCO,II.5.1,Santiago del Estero,AR-G,annual,2018,gas oil combustion consumption by agriculture machines,143.27485620000002,TJ,CO2,74100.0,kg/TJ,10616666.84442,kg +867b5c24-d381-3112-aea3-9059f442e79f,SESCO,II.5.1,Santiago del Estero,AR-G,annual,2018,gas oil combustion consumption by agriculture machines,143.27485620000002,TJ,CH4,3.9,kg/TJ,558.77193918,kg +867b5c24-d381-3112-aea3-9059f442e79f,SESCO,II.5.1,Santiago del Estero,AR-G,annual,2018,gas oil combustion consumption by agriculture machines,143.27485620000002,TJ,N2O,3.9,kg/TJ,558.77193918,kg +eafdf87a-7bd1-388b-aeca-b369c02c224d,SESCO,II.5.1,Tucuman,AR-T,annual,2018,gas oil combustion consumption by agriculture machines,108.44311212,TJ,CO2,74100.0,kg/TJ,8035634.608092,kg +aff9f76e-3e9c-3191-97e0-f506576c7e13,SESCO,II.5.1,Tucuman,AR-T,annual,2018,gas oil combustion consumption by agriculture machines,108.44311212,TJ,CH4,3.9,kg/TJ,422.92813726799994,kg +aff9f76e-3e9c-3191-97e0-f506576c7e13,SESCO,II.5.1,Tucuman,AR-T,annual,2018,gas oil combustion consumption by agriculture machines,108.44311212,TJ,N2O,3.9,kg/TJ,422.92813726799994,kg +c7e8171a-dbd8-306e-8bf4-765cbca08f51,SESCO,II.5.1,Buenos Aires,AR-B,annual,2018,gas oil combustion consumption by agriculture machines,58.78490268,TJ,CO2,74100.0,kg/TJ,4355961.288588,kg +fe2a714d-fe98-3281-a24a-7b594bdefe98,SESCO,II.5.1,Buenos Aires,AR-B,annual,2018,gas oil combustion consumption by agriculture machines,58.78490268,TJ,CH4,3.9,kg/TJ,229.261120452,kg +fe2a714d-fe98-3281-a24a-7b594bdefe98,SESCO,II.5.1,Buenos Aires,AR-B,annual,2018,gas oil combustion consumption by agriculture machines,58.78490268,TJ,N2O,3.9,kg/TJ,229.261120452,kg +cbc0e5af-79e6-3152-a81c-5f24005a17b1,SESCO,II.5.1,Capital Federal,AR-C,annual,2018,gas oil combustion consumption by agriculture machines,22.6835406,TJ,CO2,74100.0,kg/TJ,1680850.35846,kg +e6996590-b01e-35d4-ab52-a50470205469,SESCO,II.5.1,Capital Federal,AR-C,annual,2018,gas oil combustion consumption by agriculture machines,22.6835406,TJ,CH4,3.9,kg/TJ,88.46580834,kg +e6996590-b01e-35d4-ab52-a50470205469,SESCO,II.5.1,Capital Federal,AR-C,annual,2018,gas oil combustion consumption by agriculture machines,22.6835406,TJ,N2O,3.9,kg/TJ,88.46580834,kg +1549e650-94e8-37ae-8301-f805af147adf,SESCO,II.5.1,Corrientes,AR-W,annual,2018,gas oil combustion consumption by agriculture machines,1.0836,TJ,CO2,74100.0,kg/TJ,80294.76,kg +a6eebfb5-f411-3f23-a6fb-f694fa8828e4,SESCO,II.5.1,Corrientes,AR-W,annual,2018,gas oil combustion consumption by agriculture machines,1.0836,TJ,CH4,3.9,kg/TJ,4.226039999999999,kg +a6eebfb5-f411-3f23-a6fb-f694fa8828e4,SESCO,II.5.1,Corrientes,AR-W,annual,2018,gas oil combustion consumption by agriculture machines,1.0836,TJ,N2O,3.9,kg/TJ,4.226039999999999,kg +0a6a3a0b-d67b-33c6-8070-078dba07d376,SESCO,II.5.1,Córdoba,AR-X,annual,2018,gas oil combustion consumption by agriculture machines,16.72305432,TJ,CO2,74100.0,kg/TJ,1239178.3251119999,kg +87b4ad8c-21b3-3405-91ac-8e78603b639a,SESCO,II.5.1,Córdoba,AR-X,annual,2018,gas oil combustion consumption by agriculture machines,16.72305432,TJ,CH4,3.9,kg/TJ,65.219911848,kg +87b4ad8c-21b3-3405-91ac-8e78603b639a,SESCO,II.5.1,Córdoba,AR-X,annual,2018,gas oil combustion consumption by agriculture machines,16.72305432,TJ,N2O,3.9,kg/TJ,65.219911848,kg +0673f13d-9a84-316d-892e-d7dc78512d57,SESCO,II.5.1,Entre Rios,AR-E,annual,2018,gas oil combustion consumption by agriculture machines,7.6139876399999995,TJ,CO2,74100.0,kg/TJ,564196.484124,kg +dd9fcda1-7d29-3086-bc84-85532d3b2519,SESCO,II.5.1,Entre Rios,AR-E,annual,2018,gas oil combustion consumption by agriculture machines,7.6139876399999995,TJ,CH4,3.9,kg/TJ,29.694551796,kg +dd9fcda1-7d29-3086-bc84-85532d3b2519,SESCO,II.5.1,Entre Rios,AR-E,annual,2018,gas oil combustion consumption by agriculture machines,7.6139876399999995,TJ,N2O,3.9,kg/TJ,29.694551796,kg +d02599d7-3f87-39b7-8a78-fb4d3eebe80f,SESCO,II.5.1,Jujuy,AR-Y,annual,2018,gas oil combustion consumption by agriculture machines,28.67985792,TJ,CO2,74100.0,kg/TJ,2125177.471872,kg +b49e47b8-085c-3be9-8475-9cf14fc0e778,SESCO,II.5.1,Jujuy,AR-Y,annual,2018,gas oil combustion consumption by agriculture machines,28.67985792,TJ,CH4,3.9,kg/TJ,111.851445888,kg +b49e47b8-085c-3be9-8475-9cf14fc0e778,SESCO,II.5.1,Jujuy,AR-Y,annual,2018,gas oil combustion consumption by agriculture machines,28.67985792,TJ,N2O,3.9,kg/TJ,111.851445888,kg +a0bea68f-08ee-3d79-938d-32608a9d7cd1,SESCO,II.5.1,Santa Fe,AR-S,annual,2018,gas oil combustion consumption by agriculture machines,38.890873559999996,TJ,CO2,74100.0,kg/TJ,2881813.7307959995,kg +1da08b0f-30d6-36ed-a35c-566a713537ef,SESCO,II.5.1,Santa Fe,AR-S,annual,2018,gas oil combustion consumption by agriculture machines,38.890873559999996,TJ,CH4,3.9,kg/TJ,151.67440688399998,kg +1da08b0f-30d6-36ed-a35c-566a713537ef,SESCO,II.5.1,Santa Fe,AR-S,annual,2018,gas oil combustion consumption by agriculture machines,38.890873559999996,TJ,N2O,3.9,kg/TJ,151.67440688399998,kg +7bc76ea2-2f0b-3dec-97d0-1aaa5db4ffd4,SESCO,II.5.1,Tucuman,AR-T,annual,2018,gas oil combustion consumption by agriculture machines,20.44731528,TJ,CO2,74100.0,kg/TJ,1515146.0622480002,kg +a78d9b1e-4b61-3655-aac3-b3f7d3ee551a,SESCO,II.5.1,Tucuman,AR-T,annual,2018,gas oil combustion consumption by agriculture machines,20.44731528,TJ,CH4,3.9,kg/TJ,79.744529592,kg +a78d9b1e-4b61-3655-aac3-b3f7d3ee551a,SESCO,II.5.1,Tucuman,AR-T,annual,2018,gas oil combustion consumption by agriculture machines,20.44731528,TJ,N2O,3.9,kg/TJ,79.744529592,kg +0e843d62-8c1d-3b6f-9a4b-8ba013e5648f,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,gas oil combustion consumption by to the public,7552.05155628,TJ,CO2,74100.0,kg/TJ,559607020.320348,kg +2919ba44-d86d-3049-abc0-7826d208018d,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,gas oil combustion consumption by to the public,7552.05155628,TJ,CH4,3.9,kg/TJ,29453.001069492,kg +2919ba44-d86d-3049-abc0-7826d208018d,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,gas oil combustion consumption by to the public,7552.05155628,TJ,N2O,3.9,kg/TJ,29453.001069492,kg +24095228-4c3f-3d05-b6b5-f17bb1f661f3,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,gas oil combustion consumption by to the public,177.81717072,TJ,CO2,74100.0,kg/TJ,13176252.350352,kg +409c824b-7b7f-3500-b1bb-015d02c986ba,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,gas oil combustion consumption by to the public,177.81717072,TJ,CH4,3.9,kg/TJ,693.486965808,kg +409c824b-7b7f-3500-b1bb-015d02c986ba,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,gas oil combustion consumption by to the public,177.81717072,TJ,N2O,3.9,kg/TJ,693.486965808,kg +2da10ed6-35c4-3130-80bb-c5b6f91ae990,SESCO,II.1.1,Catamarca,AR-K,annual,2018,gas oil combustion consumption by to the public,3.13879188,TJ,CO2,74100.0,kg/TJ,232584.478308,kg +970fab53-f865-3de5-b2f4-fb6cd6e4a7a0,SESCO,II.1.1,Catamarca,AR-K,annual,2018,gas oil combustion consumption by to the public,3.13879188,TJ,CH4,3.9,kg/TJ,12.241288332,kg +970fab53-f865-3de5-b2f4-fb6cd6e4a7a0,SESCO,II.1.1,Catamarca,AR-K,annual,2018,gas oil combustion consumption by to the public,3.13879188,TJ,N2O,3.9,kg/TJ,12.241288332,kg +2917c07d-7810-3669-ad85-78823cd95f54,SESCO,II.1.1,Chaco,AR-H,annual,2018,gas oil combustion consumption by to the public,4.09048164,TJ,CO2,74100.0,kg/TJ,303104.689524,kg +244fee7e-6b22-3398-9111-f3052a076662,SESCO,II.1.1,Chaco,AR-H,annual,2018,gas oil combustion consumption by to the public,4.09048164,TJ,CH4,3.9,kg/TJ,15.952878396000001,kg +244fee7e-6b22-3398-9111-f3052a076662,SESCO,II.1.1,Chaco,AR-H,annual,2018,gas oil combustion consumption by to the public,4.09048164,TJ,N2O,3.9,kg/TJ,15.952878396000001,kg +5ec1da4f-b05d-3dfe-a328-8595cc1e460e,SESCO,II.1.1,Chubut,AR-U,annual,2018,gas oil combustion consumption by to the public,52.2961614,TJ,CO2,74100.0,kg/TJ,3875145.5597400004,kg +23e1d7cc-a43d-3173-ac1b-944a95c8d0ff,SESCO,II.1.1,Chubut,AR-U,annual,2018,gas oil combustion consumption by to the public,52.2961614,TJ,CH4,3.9,kg/TJ,203.95502946,kg +23e1d7cc-a43d-3173-ac1b-944a95c8d0ff,SESCO,II.1.1,Chubut,AR-U,annual,2018,gas oil combustion consumption by to the public,52.2961614,TJ,N2O,3.9,kg/TJ,203.95502946,kg +3da6f129-271b-374a-b433-2475512153e4,SESCO,II.1.1,Corrientes,AR-W,annual,2018,gas oil combustion consumption by to the public,51.62339028,TJ,CO2,74100.0,kg/TJ,3825293.219748,kg +740071c9-d489-3e7a-aae3-e76143c5d16f,SESCO,II.1.1,Corrientes,AR-W,annual,2018,gas oil combustion consumption by to the public,51.62339028,TJ,CH4,3.9,kg/TJ,201.33122209200002,kg +740071c9-d489-3e7a-aae3-e76143c5d16f,SESCO,II.1.1,Corrientes,AR-W,annual,2018,gas oil combustion consumption by to the public,51.62339028,TJ,N2O,3.9,kg/TJ,201.33122209200002,kg +2d289825-c0d2-31a7-87e4-4f7615f0433b,SESCO,II.1.1,Córdoba,AR-X,annual,2018,gas oil combustion consumption by to the public,432.08340503999995,TJ,CO2,74100.0,kg/TJ,32017380.313463997,kg +81865500-6adc-307f-8901-3319babcca35,SESCO,II.1.1,Córdoba,AR-X,annual,2018,gas oil combustion consumption by to the public,432.08340503999995,TJ,CH4,3.9,kg/TJ,1685.1252796559997,kg +81865500-6adc-307f-8901-3319babcca35,SESCO,II.1.1,Córdoba,AR-X,annual,2018,gas oil combustion consumption by to the public,432.08340503999995,TJ,N2O,3.9,kg/TJ,1685.1252796559997,kg +7560317e-d997-388a-a798-aeb8f30205be,SESCO,II.1.1,Entre Rios,AR-E,annual,2018,gas oil combustion consumption by to the public,694.4349207600001,TJ,CO2,74100.0,kg/TJ,51457627.62831601,kg +b04ea91a-66fc-3e23-a254-367aada0bd23,SESCO,II.1.1,Entre Rios,AR-E,annual,2018,gas oil combustion consumption by to the public,694.4349207600001,TJ,CH4,3.9,kg/TJ,2708.2961909640003,kg +b04ea91a-66fc-3e23-a254-367aada0bd23,SESCO,II.1.1,Entre Rios,AR-E,annual,2018,gas oil combustion consumption by to the public,694.4349207600001,TJ,N2O,3.9,kg/TJ,2708.2961909640003,kg +58a22603-b376-35f8-ac52-0d56a7478cde,SESCO,II.1.1,Formosa,AR-P,annual,2018,gas oil combustion consumption by to the public,48.4488396,TJ,CO2,74100.0,kg/TJ,3590059.01436,kg +8ae32ca2-04d5-3007-b504-84db71a70b80,SESCO,II.1.1,Formosa,AR-P,annual,2018,gas oil combustion consumption by to the public,48.4488396,TJ,CH4,3.9,kg/TJ,188.95047444,kg +8ae32ca2-04d5-3007-b504-84db71a70b80,SESCO,II.1.1,Formosa,AR-P,annual,2018,gas oil combustion consumption by to the public,48.4488396,TJ,N2O,3.9,kg/TJ,188.95047444,kg +72643fdd-c192-3cff-8994-95ba63372ad1,SESCO,II.1.1,Jujuy,AR-Y,annual,2018,gas oil combustion consumption by to the public,22.73580624,TJ,CO2,74100.0,kg/TJ,1684723.242384,kg +16543ce9-a91d-3ca9-960a-a2ce75328f18,SESCO,II.1.1,Jujuy,AR-Y,annual,2018,gas oil combustion consumption by to the public,22.73580624,TJ,CH4,3.9,kg/TJ,88.66964433599999,kg +16543ce9-a91d-3ca9-960a-a2ce75328f18,SESCO,II.1.1,Jujuy,AR-Y,annual,2018,gas oil combustion consumption by to the public,22.73580624,TJ,N2O,3.9,kg/TJ,88.66964433599999,kg +4a3cfc5e-3a3a-3601-a4b8-9da66704265e,SESCO,II.1.1,La Pampa,AR-L,annual,2018,gas oil combustion consumption by to the public,601.2481742399999,TJ,CO2,74100.0,kg/TJ,44552489.711183995,kg +b6c2c736-5d1f-36c7-a599-dbb03a623c14,SESCO,II.1.1,La Pampa,AR-L,annual,2018,gas oil combustion consumption by to the public,601.2481742399999,TJ,CH4,3.9,kg/TJ,2344.8678795359997,kg +b6c2c736-5d1f-36c7-a599-dbb03a623c14,SESCO,II.1.1,La Pampa,AR-L,annual,2018,gas oil combustion consumption by to the public,601.2481742399999,TJ,N2O,3.9,kg/TJ,2344.8678795359997,kg +835ab66b-f38e-3b3a-bb62-92bb09165df9,SESCO,II.1.1,Mendoza,AR-M,annual,2018,gas oil combustion consumption by to the public,17.080425599999998,TJ,CO2,74100.0,kg/TJ,1265659.53696,kg +d303541e-bddd-359b-9ec0-295160908027,SESCO,II.1.1,Mendoza,AR-M,annual,2018,gas oil combustion consumption by to the public,17.080425599999998,TJ,CH4,3.9,kg/TJ,66.61365984,kg +d303541e-bddd-359b-9ec0-295160908027,SESCO,II.1.1,Mendoza,AR-M,annual,2018,gas oil combustion consumption by to the public,17.080425599999998,TJ,N2O,3.9,kg/TJ,66.61365984,kg +4d7e2c8f-1e90-321e-bbdf-7caffd106149,SESCO,II.1.1,Misiones,AR-N,annual,2018,gas oil combustion consumption by to the public,108.26504052,TJ,CO2,74100.0,kg/TJ,8022439.502532,kg +40db20ba-7d4e-3333-bab6-38abd8875db3,SESCO,II.1.1,Misiones,AR-N,annual,2018,gas oil combustion consumption by to the public,108.26504052,TJ,CH4,3.9,kg/TJ,422.233658028,kg +40db20ba-7d4e-3333-bab6-38abd8875db3,SESCO,II.1.1,Misiones,AR-N,annual,2018,gas oil combustion consumption by to the public,108.26504052,TJ,N2O,3.9,kg/TJ,422.233658028,kg +f893baeb-c0d8-380e-8c83-06575d1f5c00,SESCO,II.1.1,Neuquén,AR-Q,annual,2018,gas oil combustion consumption by to the public,271.6543662,TJ,CO2,74100.0,kg/TJ,20129588.53542,kg +d198f8c4-708f-3575-b5f2-d2959cc53fe7,SESCO,II.1.1,Neuquén,AR-Q,annual,2018,gas oil combustion consumption by to the public,271.6543662,TJ,CH4,3.9,kg/TJ,1059.45202818,kg +d198f8c4-708f-3575-b5f2-d2959cc53fe7,SESCO,II.1.1,Neuquén,AR-Q,annual,2018,gas oil combustion consumption by to the public,271.6543662,TJ,N2O,3.9,kg/TJ,1059.45202818,kg +a8067137-3ef9-339c-9b21-ac4e1d25e01d,SESCO,II.1.1,Rio Negro,AR-R,annual,2018,gas oil combustion consumption by to the public,421.82597519999996,TJ,CO2,74100.0,kg/TJ,31257304.762319997,kg +b1f0f6e0-c5ca-3c37-aad9-845658e44a65,SESCO,II.1.1,Rio Negro,AR-R,annual,2018,gas oil combustion consumption by to the public,421.82597519999996,TJ,CH4,3.9,kg/TJ,1645.12130328,kg +b1f0f6e0-c5ca-3c37-aad9-845658e44a65,SESCO,II.1.1,Rio Negro,AR-R,annual,2018,gas oil combustion consumption by to the public,421.82597519999996,TJ,N2O,3.9,kg/TJ,1645.12130328,kg +c4f4b8a9-2552-3187-ba1f-960583d84246,SESCO,II.1.1,San Luis,AR-D,annual,2018,gas oil combustion consumption by to the public,63.54288191999999,TJ,CO2,74100.0,kg/TJ,4708527.550271999,kg +69c3a1e7-8880-362a-8ca4-fddacaca06b7,SESCO,II.1.1,San Luis,AR-D,annual,2018,gas oil combustion consumption by to the public,63.54288191999999,TJ,CH4,3.9,kg/TJ,247.81723948799996,kg +69c3a1e7-8880-362a-8ca4-fddacaca06b7,SESCO,II.1.1,San Luis,AR-D,annual,2018,gas oil combustion consumption by to the public,63.54288191999999,TJ,N2O,3.9,kg/TJ,247.81723948799996,kg +2b236d92-c16a-38d3-9c00-61c20988f4bb,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,gas oil combustion consumption by to the public,742.9329558,TJ,CO2,74100.0,kg/TJ,55051332.02478,kg +8cfecc86-b01f-3d36-8318-b4247dc5fdaa,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,gas oil combustion consumption by to the public,742.9329558,TJ,CH4,3.9,kg/TJ,2897.4385276199996,kg +8cfecc86-b01f-3d36-8318-b4247dc5fdaa,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,gas oil combustion consumption by to the public,742.9329558,TJ,N2O,3.9,kg/TJ,2897.4385276199996,kg +d66a498c-7180-34a7-b6a3-95282a69e6b0,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2018,gas oil combustion consumption by to the public,187.0640352,TJ,CO2,74100.0,kg/TJ,13861445.00832,kg +d2887f5e-b279-3b78-928b-902ea455260b,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2018,gas oil combustion consumption by to the public,187.0640352,TJ,CH4,3.9,kg/TJ,729.54973728,kg +d2887f5e-b279-3b78-928b-902ea455260b,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2018,gas oil combustion consumption by to the public,187.0640352,TJ,N2O,3.9,kg/TJ,729.54973728,kg +e420f265-ff8d-3a5a-8d43-037c0ad4e5ac,SESCO,II.1.1,Tucuman,AR-T,annual,2018,gas oil combustion consumption by to the public,35.37397752,TJ,CO2,74100.0,kg/TJ,2621211.7342319996,kg +4684936b-35e7-3a01-9668-131f88c28166,SESCO,II.1.1,Tucuman,AR-T,annual,2018,gas oil combustion consumption by to the public,35.37397752,TJ,CH4,3.9,kg/TJ,137.95851232799998,kg +4684936b-35e7-3a01-9668-131f88c28166,SESCO,II.1.1,Tucuman,AR-T,annual,2018,gas oil combustion consumption by to the public,35.37397752,TJ,N2O,3.9,kg/TJ,137.95851232799998,kg +d841784f-2937-32e8-9784-66f4718cd1e7,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,gas oil combustion consumption by to the public,1542.73063896,TJ,CO2,74100.0,kg/TJ,114316340.346936,kg +7310c62d-6c7e-3742-82cd-350a45ea1551,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,gas oil combustion consumption by to the public,1542.73063896,TJ,CH4,3.9,kg/TJ,6016.649491944,kg +7310c62d-6c7e-3742-82cd-350a45ea1551,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,gas oil combustion consumption by to the public,1542.73063896,TJ,N2O,3.9,kg/TJ,6016.649491944,kg +75b52875-ba3e-3c10-92b3-c8d04f4e29e5,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,gas oil combustion consumption by to the public,38.41466748,TJ,CO2,74100.0,kg/TJ,2846526.860268,kg +97514a78-cd36-3346-b1ac-5aeccc82f988,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,gas oil combustion consumption by to the public,38.41466748,TJ,CH4,3.9,kg/TJ,149.81720317199998,kg +97514a78-cd36-3346-b1ac-5aeccc82f988,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,gas oil combustion consumption by to the public,38.41466748,TJ,N2O,3.9,kg/TJ,149.81720317199998,kg +ff5e565e-377b-31d6-bdee-11bbd96b8ad0,SESCO,II.1.1,Catamarca,AR-K,annual,2018,gas oil combustion consumption by to the public,1.44140472,TJ,CO2,74100.0,kg/TJ,106808.089752,kg +77757b51-1fa9-3bb1-90f4-da823acea879,SESCO,II.1.1,Catamarca,AR-K,annual,2018,gas oil combustion consumption by to the public,1.44140472,TJ,CH4,3.9,kg/TJ,5.621478408,kg +77757b51-1fa9-3bb1-90f4-da823acea879,SESCO,II.1.1,Catamarca,AR-K,annual,2018,gas oil combustion consumption by to the public,1.44140472,TJ,N2O,3.9,kg/TJ,5.621478408,kg +da42f03a-9136-338b-9bad-7d950fafe1bd,SESCO,II.1.1,Chaco,AR-H,annual,2018,gas oil combustion consumption by to the public,3.64277424,TJ,CO2,74100.0,kg/TJ,269929.571184,kg +cd3aebcb-3408-34d7-8323-83d27c880fe5,SESCO,II.1.1,Chaco,AR-H,annual,2018,gas oil combustion consumption by to the public,3.64277424,TJ,CH4,3.9,kg/TJ,14.206819536,kg +cd3aebcb-3408-34d7-8323-83d27c880fe5,SESCO,II.1.1,Chaco,AR-H,annual,2018,gas oil combustion consumption by to the public,3.64277424,TJ,N2O,3.9,kg/TJ,14.206819536,kg +ba34b305-2999-32b7-895b-b5054d2bd191,SESCO,II.1.1,Chubut,AR-U,annual,2018,gas oil combustion consumption by to the public,22.331767919999997,TJ,CO2,74100.0,kg/TJ,1654784.0028719997,kg +ccdda168-1ce6-34b5-99b8-906c86079bc4,SESCO,II.1.1,Chubut,AR-U,annual,2018,gas oil combustion consumption by to the public,22.331767919999997,TJ,CH4,3.9,kg/TJ,87.093894888,kg +ccdda168-1ce6-34b5-99b8-906c86079bc4,SESCO,II.1.1,Chubut,AR-U,annual,2018,gas oil combustion consumption by to the public,22.331767919999997,TJ,N2O,3.9,kg/TJ,87.093894888,kg +06816d5b-0fe9-3e2c-aec9-489a197ad1bc,SESCO,II.1.1,Corrientes,AR-W,annual,2018,gas oil combustion consumption by to the public,16.03254828,TJ,CO2,74100.0,kg/TJ,1188011.827548,kg +4f4cb38b-5c58-31cc-9e73-90d228d0114c,SESCO,II.1.1,Corrientes,AR-W,annual,2018,gas oil combustion consumption by to the public,16.03254828,TJ,CH4,3.9,kg/TJ,62.526938292,kg +4f4cb38b-5c58-31cc-9e73-90d228d0114c,SESCO,II.1.1,Corrientes,AR-W,annual,2018,gas oil combustion consumption by to the public,16.03254828,TJ,N2O,3.9,kg/TJ,62.526938292,kg +f4b5304d-654d-3fa9-ba76-789ffeb617a6,SESCO,II.1.1,Córdoba,AR-X,annual,2018,gas oil combustion consumption by to the public,93.65218884,TJ,CO2,74100.0,kg/TJ,6939627.193043999,kg +098300a5-57ce-3e38-81cf-34d2f13234b7,SESCO,II.1.1,Córdoba,AR-X,annual,2018,gas oil combustion consumption by to the public,93.65218884,TJ,CH4,3.9,kg/TJ,365.243536476,kg +098300a5-57ce-3e38-81cf-34d2f13234b7,SESCO,II.1.1,Córdoba,AR-X,annual,2018,gas oil combustion consumption by to the public,93.65218884,TJ,N2O,3.9,kg/TJ,365.243536476,kg +c0ae17e6-ac11-3003-9c01-baf9b3c510a3,SESCO,II.1.1,Entre Rios,AR-E,annual,2018,gas oil combustion consumption by to the public,139.06604544,TJ,CO2,74100.0,kg/TJ,10304793.967104001,kg +bf543d99-33cb-3701-855f-36e933316ade,SESCO,II.1.1,Entre Rios,AR-E,annual,2018,gas oil combustion consumption by to the public,139.06604544,TJ,CH4,3.9,kg/TJ,542.357577216,kg +bf543d99-33cb-3701-855f-36e933316ade,SESCO,II.1.1,Entre Rios,AR-E,annual,2018,gas oil combustion consumption by to the public,139.06604544,TJ,N2O,3.9,kg/TJ,542.357577216,kg +49b7e426-780a-31c0-ad35-066dd5766ac2,SESCO,II.1.1,Formosa,AR-P,annual,2018,gas oil combustion consumption by to the public,2.23687548,TJ,CO2,74100.0,kg/TJ,165752.47306800002,kg +d6bd1b70-d073-3dbd-9ae6-bc4b9f4dbb58,SESCO,II.1.1,Formosa,AR-P,annual,2018,gas oil combustion consumption by to the public,2.23687548,TJ,CH4,3.9,kg/TJ,8.723814372,kg +d6bd1b70-d073-3dbd-9ae6-bc4b9f4dbb58,SESCO,II.1.1,Formosa,AR-P,annual,2018,gas oil combustion consumption by to the public,2.23687548,TJ,N2O,3.9,kg/TJ,8.723814372,kg +1a96d407-6a1e-30f5-a1e6-ca52a5f6b982,SESCO,II.1.1,Jujuy,AR-Y,annual,2018,gas oil combustion consumption by to the public,18.36380532,TJ,CO2,74100.0,kg/TJ,1360757.9742120001,kg +ec0bf7f9-ab20-3f6f-b624-057ce32b9e02,SESCO,II.1.1,Jujuy,AR-Y,annual,2018,gas oil combustion consumption by to the public,18.36380532,TJ,CH4,3.9,kg/TJ,71.618840748,kg +ec0bf7f9-ab20-3f6f-b624-057ce32b9e02,SESCO,II.1.1,Jujuy,AR-Y,annual,2018,gas oil combustion consumption by to the public,18.36380532,TJ,N2O,3.9,kg/TJ,71.618840748,kg +08fb9922-f7c7-34b2-a187-a4911d1697c0,SESCO,II.1.1,La Pampa,AR-L,annual,2018,gas oil combustion consumption by to the public,104.95727928,TJ,CO2,74100.0,kg/TJ,7777334.394648,kg +6ecb96ea-f75d-32da-89d2-42956a6aed78,SESCO,II.1.1,La Pampa,AR-L,annual,2018,gas oil combustion consumption by to the public,104.95727928,TJ,CH4,3.9,kg/TJ,409.33338919199997,kg +6ecb96ea-f75d-32da-89d2-42956a6aed78,SESCO,II.1.1,La Pampa,AR-L,annual,2018,gas oil combustion consumption by to the public,104.95727928,TJ,N2O,3.9,kg/TJ,409.33338919199997,kg +0fa0f5cc-8d89-32c8-b716-3a1a38789970,SESCO,II.1.1,Mendoza,AR-M,annual,2018,gas oil combustion consumption by to the public,4.2361897200000005,TJ,CO2,74100.0,kg/TJ,313901.65825200005,kg +76ac2c10-81b9-36fb-96a9-f22c99caf230,SESCO,II.1.1,Mendoza,AR-M,annual,2018,gas oil combustion consumption by to the public,4.2361897200000005,TJ,CH4,3.9,kg/TJ,16.521139908000002,kg +76ac2c10-81b9-36fb-96a9-f22c99caf230,SESCO,II.1.1,Mendoza,AR-M,annual,2018,gas oil combustion consumption by to the public,4.2361897200000005,TJ,N2O,3.9,kg/TJ,16.521139908000002,kg +b74d11d4-87c5-3e56-841f-aaeca216fd35,SESCO,II.1.1,Misiones,AR-N,annual,2018,gas oil combustion consumption by to the public,10.38403044,TJ,CO2,74100.0,kg/TJ,769456.655604,kg +2086eab4-46a1-31a8-a6ce-fc2022812a95,SESCO,II.1.1,Misiones,AR-N,annual,2018,gas oil combustion consumption by to the public,10.38403044,TJ,CH4,3.9,kg/TJ,40.497718716,kg +2086eab4-46a1-31a8-a6ce-fc2022812a95,SESCO,II.1.1,Misiones,AR-N,annual,2018,gas oil combustion consumption by to the public,10.38403044,TJ,N2O,3.9,kg/TJ,40.497718716,kg +cfc3a15f-ed4f-3079-85cd-43b042eb2711,SESCO,II.1.1,Neuquén,AR-Q,annual,2018,gas oil combustion consumption by to the public,262.77361404,TJ,CO2,74100.0,kg/TJ,19471524.800364,kg +ac4a8395-3a3e-3377-acff-4f8aabf14f4e,SESCO,II.1.1,Neuquén,AR-Q,annual,2018,gas oil combustion consumption by to the public,262.77361404,TJ,CH4,3.9,kg/TJ,1024.817094756,kg +ac4a8395-3a3e-3377-acff-4f8aabf14f4e,SESCO,II.1.1,Neuquén,AR-Q,annual,2018,gas oil combustion consumption by to the public,262.77361404,TJ,N2O,3.9,kg/TJ,1024.817094756,kg +03c14030-9a67-36db-852c-838d7af230f1,SESCO,II.1.1,Rio Negro,AR-R,annual,2018,gas oil combustion consumption by to the public,132.8282298,TJ,CO2,74100.0,kg/TJ,9842571.82818,kg +b2255a28-38c1-337d-9109-ed1d4b3972ca,SESCO,II.1.1,Rio Negro,AR-R,annual,2018,gas oil combustion consumption by to the public,132.8282298,TJ,CH4,3.9,kg/TJ,518.03009622,kg +b2255a28-38c1-337d-9109-ed1d4b3972ca,SESCO,II.1.1,Rio Negro,AR-R,annual,2018,gas oil combustion consumption by to the public,132.8282298,TJ,N2O,3.9,kg/TJ,518.03009622,kg +c0d9f0d6-3a61-3f44-af2b-6853195efc30,SESCO,II.1.1,San Luis,AR-D,annual,2018,gas oil combustion consumption by to the public,59.749198320000005,TJ,CO2,74100.0,kg/TJ,4427415.595512,kg +7d5d6c8b-f703-3e0d-9f7d-bfb9bde3e756,SESCO,II.1.1,San Luis,AR-D,annual,2018,gas oil combustion consumption by to the public,59.749198320000005,TJ,CH4,3.9,kg/TJ,233.021873448,kg +7d5d6c8b-f703-3e0d-9f7d-bfb9bde3e756,SESCO,II.1.1,San Luis,AR-D,annual,2018,gas oil combustion consumption by to the public,59.749198320000005,TJ,N2O,3.9,kg/TJ,233.021873448,kg +f292e520-d49e-3f7d-a5ef-1e485b83939d,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,gas oil combustion consumption by to the public,194.28734892,TJ,CO2,74100.0,kg/TJ,14396692.554972,kg +149766a0-5291-3235-a486-dd52b75a438c,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,gas oil combustion consumption by to the public,194.28734892,TJ,CH4,3.9,kg/TJ,757.720660788,kg +149766a0-5291-3235-a486-dd52b75a438c,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,gas oil combustion consumption by to the public,194.28734892,TJ,N2O,3.9,kg/TJ,757.720660788,kg +323464be-6992-334e-b186-8ff51b947fc3,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2018,gas oil combustion consumption by to the public,43.76349768,TJ,CO2,74100.0,kg/TJ,3242875.178088,kg +90b7b6a1-204c-3b39-a2df-20ae0329b963,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2018,gas oil combustion consumption by to the public,43.76349768,TJ,CH4,3.9,kg/TJ,170.677640952,kg +90b7b6a1-204c-3b39-a2df-20ae0329b963,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2018,gas oil combustion consumption by to the public,43.76349768,TJ,N2O,3.9,kg/TJ,170.677640952,kg +7941fd59-41b1-39da-b780-ac4c50de944f,SESCO,II.1.1,Tucuman,AR-T,annual,2018,gas oil combustion consumption by to the public,10.708062960000001,TJ,CO2,74100.0,kg/TJ,793467.4653360001,kg +222de82d-7744-3d42-9d5b-5ea2639e2860,SESCO,II.1.1,Tucuman,AR-T,annual,2018,gas oil combustion consumption by to the public,10.708062960000001,TJ,CH4,3.9,kg/TJ,41.761445544000004,kg +222de82d-7744-3d42-9d5b-5ea2639e2860,SESCO,II.1.1,Tucuman,AR-T,annual,2018,gas oil combustion consumption by to the public,10.708062960000001,TJ,N2O,3.9,kg/TJ,41.761445544000004,kg +f99761d7-07ba-3c35-ae47-824aafef4e66,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,gas oil combustion consumption by freight transport,148.844199,TJ,CO2,74100.0,kg/TJ,11029355.1459,kg +c642fd30-fe9f-3b22-811c-acbb811fa556,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,gas oil combustion consumption by freight transport,148.844199,TJ,CH4,3.9,kg/TJ,580.4923761,kg +c642fd30-fe9f-3b22-811c-acbb811fa556,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,gas oil combustion consumption by freight transport,148.844199,TJ,N2O,3.9,kg/TJ,580.4923761,kg +e246b4f6-296d-3728-9706-37ce21e7f6dc,SESCO,II.1.1,Chubut,AR-U,annual,2018,gas oil combustion consumption by freight transport,1.98634716,TJ,CO2,74100.0,kg/TJ,147188.324556,kg +db62aba9-0a2a-37ca-a2d5-c57bd294c65c,SESCO,II.1.1,Chubut,AR-U,annual,2018,gas oil combustion consumption by freight transport,1.98634716,TJ,CH4,3.9,kg/TJ,7.746753924,kg +db62aba9-0a2a-37ca-a2d5-c57bd294c65c,SESCO,II.1.1,Chubut,AR-U,annual,2018,gas oil combustion consumption by freight transport,1.98634716,TJ,N2O,3.9,kg/TJ,7.746753924,kg +e69663ee-8419-35ab-bd2e-0e83b2d1298f,SESCO,II.1.1,Córdoba,AR-X,annual,2018,gas oil combustion consumption by freight transport,116.85246216,TJ,CO2,74100.0,kg/TJ,8658767.446056,kg +358adae3-51f5-31f1-9ee7-d8bb47e2936f,SESCO,II.1.1,Córdoba,AR-X,annual,2018,gas oil combustion consumption by freight transport,116.85246216,TJ,CH4,3.9,kg/TJ,455.724602424,kg +358adae3-51f5-31f1-9ee7-d8bb47e2936f,SESCO,II.1.1,Córdoba,AR-X,annual,2018,gas oil combustion consumption by freight transport,116.85246216,TJ,N2O,3.9,kg/TJ,455.724602424,kg +d88497df-e98f-354f-8967-59470c51e476,SESCO,II.1.1,Neuquén,AR-Q,annual,2018,gas oil combustion consumption by freight transport,9.4388784,TJ,CO2,74100.0,kg/TJ,699420.88944,kg +4354ea58-d23d-3708-9974-72acdb2ad68c,SESCO,II.1.1,Neuquén,AR-Q,annual,2018,gas oil combustion consumption by freight transport,9.4388784,TJ,CH4,3.9,kg/TJ,36.81162576,kg +4354ea58-d23d-3708-9974-72acdb2ad68c,SESCO,II.1.1,Neuquén,AR-Q,annual,2018,gas oil combustion consumption by freight transport,9.4388784,TJ,N2O,3.9,kg/TJ,36.81162576,kg +c71be5d7-00ff-38ea-85c3-346bb0c61cca,SESCO,II.1.1,Rio Negro,AR-R,annual,2018,gas oil combustion consumption by freight transport,24.10002252,TJ,CO2,74100.0,kg/TJ,1785811.668732,kg +21f6743e-7f58-3252-9b47-c1bb793ce05b,SESCO,II.1.1,Rio Negro,AR-R,annual,2018,gas oil combustion consumption by freight transport,24.10002252,TJ,CH4,3.9,kg/TJ,93.990087828,kg +21f6743e-7f58-3252-9b47-c1bb793ce05b,SESCO,II.1.1,Rio Negro,AR-R,annual,2018,gas oil combustion consumption by freight transport,24.10002252,TJ,N2O,3.9,kg/TJ,93.990087828,kg +1d6e5fb8-7520-3c9c-be1a-6c729cedb43f,SESCO,II.1.1,San Luis,AR-D,annual,2018,gas oil combustion consumption by freight transport,1.2998143199999999,TJ,CO2,74100.0,kg/TJ,96316.24111199999,kg +e6d12f9a-ebab-3494-9046-f5ded632059d,SESCO,II.1.1,San Luis,AR-D,annual,2018,gas oil combustion consumption by freight transport,1.2998143199999999,TJ,CH4,3.9,kg/TJ,5.069275847999999,kg +e6d12f9a-ebab-3494-9046-f5ded632059d,SESCO,II.1.1,San Luis,AR-D,annual,2018,gas oil combustion consumption by freight transport,1.2998143199999999,TJ,N2O,3.9,kg/TJ,5.069275847999999,kg +c89b4aba-d67b-3064-b62a-80ea7c2d86af,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,gas oil combustion consumption by freight transport,49.61085612,TJ,CO2,74100.0,kg/TJ,3676164.438492,kg +67d6416e-5a6f-3170-8a9a-c61ad6a43b94,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,gas oil combustion consumption by freight transport,49.61085612,TJ,CH4,3.9,kg/TJ,193.482338868,kg +67d6416e-5a6f-3170-8a9a-c61ad6a43b94,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,gas oil combustion consumption by freight transport,49.61085612,TJ,N2O,3.9,kg/TJ,193.482338868,kg +57a374af-a841-3479-be48-db2434524912,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2018,gas oil combustion consumption by freight transport,54.39480564,TJ,CO2,74100.0,kg/TJ,4030655.097924,kg +436d5aed-ba55-3cd9-b93a-ceb8d1a3d8d3,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2018,gas oil combustion consumption by freight transport,54.39480564,TJ,CH4,3.9,kg/TJ,212.139741996,kg +436d5aed-ba55-3cd9-b93a-ceb8d1a3d8d3,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2018,gas oil combustion consumption by freight transport,54.39480564,TJ,N2O,3.9,kg/TJ,212.139741996,kg +35fa4791-262e-33d0-b10a-96fbf52268cf,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,gas oil combustion consumption by freight transport,34.96968636,TJ,CO2,74100.0,kg/TJ,2591253.759276,kg +5ff1aaab-ba65-3ce6-8c52-656943c5ac02,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,gas oil combustion consumption by freight transport,34.96968636,TJ,CH4,3.9,kg/TJ,136.381776804,kg +5ff1aaab-ba65-3ce6-8c52-656943c5ac02,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,gas oil combustion consumption by freight transport,34.96968636,TJ,N2O,3.9,kg/TJ,136.381776804,kg +513698e1-8360-3811-a0e4-9fdeb8fd0b62,SESCO,II.1.1,Córdoba,AR-X,annual,2018,gas oil combustion consumption by freight transport,21.20547408,TJ,CO2,74100.0,kg/TJ,1571325.629328,kg +67c13ac1-ccc9-3b22-af80-c7ae24e2326d,SESCO,II.1.1,Córdoba,AR-X,annual,2018,gas oil combustion consumption by freight transport,21.20547408,TJ,CH4,3.9,kg/TJ,82.70134891199999,kg +67c13ac1-ccc9-3b22-af80-c7ae24e2326d,SESCO,II.1.1,Córdoba,AR-X,annual,2018,gas oil combustion consumption by freight transport,21.20547408,TJ,N2O,3.9,kg/TJ,82.70134891199999,kg +26f67298-8289-3544-b54d-faba7df06e6f,SESCO,II.1.1,Neuquén,AR-Q,annual,2018,gas oil combustion consumption by freight transport,7.7583592800000005,TJ,CO2,74100.0,kg/TJ,574894.4226480001,kg +19e54a69-d2fc-3236-9246-02ece9e4fbdb,SESCO,II.1.1,Neuquén,AR-Q,annual,2018,gas oil combustion consumption by freight transport,7.7583592800000005,TJ,CH4,3.9,kg/TJ,30.257601192000003,kg +19e54a69-d2fc-3236-9246-02ece9e4fbdb,SESCO,II.1.1,Neuquén,AR-Q,annual,2018,gas oil combustion consumption by freight transport,7.7583592800000005,TJ,N2O,3.9,kg/TJ,30.257601192000003,kg +c8ab6c0c-2c8e-33c3-a2ce-52333610ba0d,SESCO,II.1.1,Rio Negro,AR-R,annual,2018,gas oil combustion consumption by freight transport,27.325357920000002,TJ,CO2,74100.0,kg/TJ,2024809.021872,kg +b280980f-d36b-3df5-bfc3-59205d59207f,SESCO,II.1.1,Rio Negro,AR-R,annual,2018,gas oil combustion consumption by freight transport,27.325357920000002,TJ,CH4,3.9,kg/TJ,106.568895888,kg +b280980f-d36b-3df5-bfc3-59205d59207f,SESCO,II.1.1,Rio Negro,AR-R,annual,2018,gas oil combustion consumption by freight transport,27.325357920000002,TJ,N2O,3.9,kg/TJ,106.568895888,kg +7a69d3e3-6ed0-3e76-9275-c2c03260f26e,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,gas oil combustion consumption by freight transport,11.69901516,TJ,CO2,74100.0,kg/TJ,866897.023356,kg +2282638d-b94d-39ff-b7bf-c2d37f6c5be3,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,gas oil combustion consumption by freight transport,11.69901516,TJ,CH4,3.9,kg/TJ,45.626159124,kg +2282638d-b94d-39ff-b7bf-c2d37f6c5be3,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,gas oil combustion consumption by freight transport,11.69901516,TJ,N2O,3.9,kg/TJ,45.626159124,kg +1df15c60-735c-363b-ae00-d000572fbaa8,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2018,gas oil combustion consumption by freight transport,1.19705292,TJ,CO2,74100.0,kg/TJ,88701.621372,kg +d00532fe-ff83-3a43-981c-ac1197b846a2,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2018,gas oil combustion consumption by freight transport,1.19705292,TJ,CH4,3.9,kg/TJ,4.668506388,kg +d00532fe-ff83-3a43-981c-ac1197b846a2,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2018,gas oil combustion consumption by freight transport,1.19705292,TJ,N2O,3.9,kg/TJ,4.668506388,kg +f70e1f79-a794-3936-a1e5-75d998af7cc2,SESCO,II.5.1,Buenos Aires,AR-B,annual,2018,gasoline combustion consumption by agriculture machines,4.3857,TJ,CO2,69300.0,kg/TJ,303929.01,kg +f09de076-4670-3125-af89-da6a29bd57f8,SESCO,II.5.1,Buenos Aires,AR-B,annual,2018,gasoline combustion consumption by agriculture machines,4.3857,TJ,CH4,33.0,kg/TJ,144.72809999999998,kg +2f1a7d75-ba0c-3424-9dbb-1c8178fd826a,SESCO,II.5.1,Buenos Aires,AR-B,annual,2018,gasoline combustion consumption by agriculture machines,4.3857,TJ,N2O,3.2,kg/TJ,14.03424,kg +b3bbe57f-e190-36df-bd20-dabf96df7afc,SESCO,II.5.1,Santa Fe,AR-S,annual,2018,gasoline combustion consumption by agriculture machines,9.302999999999999,TJ,CO2,69300.0,kg/TJ,644697.8999999999,kg +d3addc8b-5575-382b-a0b1-999d304689a5,SESCO,II.5.1,Santa Fe,AR-S,annual,2018,gasoline combustion consumption by agriculture machines,9.302999999999999,TJ,CH4,33.0,kg/TJ,306.99899999999997,kg +869cc5ab-3fbf-351a-a6d7-6aabb7f31f34,SESCO,II.5.1,Santa Fe,AR-S,annual,2018,gasoline combustion consumption by agriculture machines,9.302999999999999,TJ,N2O,3.2,kg/TJ,29.769599999999997,kg +68ecf761-34b8-3144-b3f1-26fa2ced96b8,SESCO,II.5.1,Buenos Aires,AR-B,annual,2018,gas oil combustion consumption by agriculture machines,9604.994279999999,TJ,CO2,74100.0,kg/TJ,711730076.1479999,kg +7a9b3d03-4e11-3383-9618-134713cda8a6,SESCO,II.5.1,Buenos Aires,AR-B,annual,2018,gas oil combustion consumption by agriculture machines,9604.994279999999,TJ,CH4,3.9,kg/TJ,37459.47769199999,kg +7a9b3d03-4e11-3383-9618-134713cda8a6,SESCO,II.5.1,Buenos Aires,AR-B,annual,2018,gas oil combustion consumption by agriculture machines,9604.994279999999,TJ,N2O,3.9,kg/TJ,37459.47769199999,kg +4977d43c-01fe-3641-b23f-c405f276c3bf,SESCO,II.5.1,Capital Federal,AR-C,annual,2018,gas oil combustion consumption by agriculture machines,258.00516,TJ,CO2,74100.0,kg/TJ,19118182.356,kg +e0c6e52a-98de-37f0-a13c-199cb3ad6b0d,SESCO,II.5.1,Capital Federal,AR-C,annual,2018,gas oil combustion consumption by agriculture machines,258.00516,TJ,CH4,3.9,kg/TJ,1006.2201239999999,kg +e0c6e52a-98de-37f0-a13c-199cb3ad6b0d,SESCO,II.5.1,Capital Federal,AR-C,annual,2018,gas oil combustion consumption by agriculture machines,258.00516,TJ,N2O,3.9,kg/TJ,1006.2201239999999,kg +8e348958-ab76-3051-bacd-f18a3536dad9,SESCO,II.5.1,Catamarca,AR-K,annual,2018,gas oil combustion consumption by agriculture machines,142.81848,TJ,CO2,74100.0,kg/TJ,10582849.367999999,kg +e86025b3-854d-3cb5-8c13-9b84551b77f8,SESCO,II.5.1,Catamarca,AR-K,annual,2018,gas oil combustion consumption by agriculture machines,142.81848,TJ,CH4,3.9,kg/TJ,556.992072,kg +e86025b3-854d-3cb5-8c13-9b84551b77f8,SESCO,II.5.1,Catamarca,AR-K,annual,2018,gas oil combustion consumption by agriculture machines,142.81848,TJ,N2O,3.9,kg/TJ,556.992072,kg +f31e029b-02e5-3196-99bd-2a13e55aa451,SESCO,II.5.1,Chaco,AR-H,annual,2018,gas oil combustion consumption by agriculture machines,1250.2938,TJ,CO2,74100.0,kg/TJ,92646770.58,kg +8d8095bb-9f95-36bf-bab3-3bf9d5d3421a,SESCO,II.5.1,Chaco,AR-H,annual,2018,gas oil combustion consumption by agriculture machines,1250.2938,TJ,CH4,3.9,kg/TJ,4876.14582,kg +8d8095bb-9f95-36bf-bab3-3bf9d5d3421a,SESCO,II.5.1,Chaco,AR-H,annual,2018,gas oil combustion consumption by agriculture machines,1250.2938,TJ,N2O,3.9,kg/TJ,4876.14582,kg +0c1abf35-9c38-33a3-9609-30f89b5a9fa2,SESCO,II.5.1,Corrientes,AR-W,annual,2018,gas oil combustion consumption by agriculture machines,490.58184,TJ,CO2,74100.0,kg/TJ,36352114.344,kg +183fd9ed-03e1-3065-9a8e-e3d421ef872f,SESCO,II.5.1,Corrientes,AR-W,annual,2018,gas oil combustion consumption by agriculture machines,490.58184,TJ,CH4,3.9,kg/TJ,1913.269176,kg +183fd9ed-03e1-3065-9a8e-e3d421ef872f,SESCO,II.5.1,Corrientes,AR-W,annual,2018,gas oil combustion consumption by agriculture machines,490.58184,TJ,N2O,3.9,kg/TJ,1913.269176,kg +65cd9b6e-dae3-3e1e-9d92-54d171fc94a4,SESCO,II.5.1,Córdoba,AR-X,annual,2018,gas oil combustion consumption by agriculture machines,8002.78332,TJ,CO2,74100.0,kg/TJ,593006244.012,kg +2229ec8d-baf6-3aa7-95c2-9b8027c9300c,SESCO,II.5.1,Córdoba,AR-X,annual,2018,gas oil combustion consumption by agriculture machines,8002.78332,TJ,CH4,3.9,kg/TJ,31210.854947999997,kg +2229ec8d-baf6-3aa7-95c2-9b8027c9300c,SESCO,II.5.1,Córdoba,AR-X,annual,2018,gas oil combustion consumption by agriculture machines,8002.78332,TJ,N2O,3.9,kg/TJ,31210.854947999997,kg +632ef025-4917-32c1-8208-a81d72b9d08c,SESCO,II.5.1,Entre Rios,AR-E,annual,2018,gas oil combustion consumption by agriculture machines,2130.68268,TJ,CO2,74100.0,kg/TJ,157883586.588,kg +76be1b17-67d3-3143-b66e-4bbbefb51a92,SESCO,II.5.1,Entre Rios,AR-E,annual,2018,gas oil combustion consumption by agriculture machines,2130.68268,TJ,CH4,3.9,kg/TJ,8309.662451999999,kg +76be1b17-67d3-3143-b66e-4bbbefb51a92,SESCO,II.5.1,Entre Rios,AR-E,annual,2018,gas oil combustion consumption by agriculture machines,2130.68268,TJ,N2O,3.9,kg/TJ,8309.662451999999,kg +605c7fda-9405-37a3-b56d-b6487d9d7987,SESCO,II.5.1,Formosa,AR-P,annual,2018,gas oil combustion consumption by agriculture machines,241.42607999999998,TJ,CO2,74100.0,kg/TJ,17889672.527999997,kg +a829fc8e-0db5-36bc-a86c-b1a6e881724c,SESCO,II.5.1,Formosa,AR-P,annual,2018,gas oil combustion consumption by agriculture machines,241.42607999999998,TJ,CH4,3.9,kg/TJ,941.5617119999999,kg +a829fc8e-0db5-36bc-a86c-b1a6e881724c,SESCO,II.5.1,Formosa,AR-P,annual,2018,gas oil combustion consumption by agriculture machines,241.42607999999998,TJ,N2O,3.9,kg/TJ,941.5617119999999,kg +7f2e91e5-e99b-3ff1-8cc0-705a672d0a64,SESCO,II.5.1,Jujuy,AR-Y,annual,2018,gas oil combustion consumption by agriculture machines,1009.26504,TJ,CO2,74100.0,kg/TJ,74786539.464,kg +022d284f-7ebd-3c5f-85a4-128bf0322208,SESCO,II.5.1,Jujuy,AR-Y,annual,2018,gas oil combustion consumption by agriculture machines,1009.26504,TJ,CH4,3.9,kg/TJ,3936.133656,kg +022d284f-7ebd-3c5f-85a4-128bf0322208,SESCO,II.5.1,Jujuy,AR-Y,annual,2018,gas oil combustion consumption by agriculture machines,1009.26504,TJ,N2O,3.9,kg/TJ,3936.133656,kg +7404589b-320a-3f3b-9279-e343a8f928ed,SESCO,II.5.1,La Pampa,AR-L,annual,2018,gas oil combustion consumption by agriculture machines,1788.3373199999999,TJ,CO2,74100.0,kg/TJ,132515795.41199999,kg +f1868859-ff87-3023-922a-4d04b9c09121,SESCO,II.5.1,La Pampa,AR-L,annual,2018,gas oil combustion consumption by agriculture machines,1788.3373199999999,TJ,CH4,3.9,kg/TJ,6974.515547999999,kg +f1868859-ff87-3023-922a-4d04b9c09121,SESCO,II.5.1,La Pampa,AR-L,annual,2018,gas oil combustion consumption by agriculture machines,1788.3373199999999,TJ,N2O,3.9,kg/TJ,6974.515547999999,kg +9d382d32-28fa-3dbf-87eb-e7e68b86f96a,SESCO,II.5.1,La Rioja,AR-F,annual,2018,gas oil combustion consumption by agriculture machines,131.04336,TJ,CO2,74100.0,kg/TJ,9710312.976,kg +1dcd01f9-c147-34e8-8ed7-57539165110a,SESCO,II.5.1,La Rioja,AR-F,annual,2018,gas oil combustion consumption by agriculture machines,131.04336,TJ,CH4,3.9,kg/TJ,511.06910400000004,kg +1dcd01f9-c147-34e8-8ed7-57539165110a,SESCO,II.5.1,La Rioja,AR-F,annual,2018,gas oil combustion consumption by agriculture machines,131.04336,TJ,N2O,3.9,kg/TJ,511.06910400000004,kg +117c5626-474d-3b8d-a234-107ef3340378,SESCO,II.5.1,Mendoza,AR-M,annual,2018,gas oil combustion consumption by agriculture machines,2396.09244,TJ,CO2,74100.0,kg/TJ,177550449.804,kg +0d8f10b9-746c-3a15-80cb-68aa56f15ff3,SESCO,II.5.1,Mendoza,AR-M,annual,2018,gas oil combustion consumption by agriculture machines,2396.09244,TJ,CH4,3.9,kg/TJ,9344.760516,kg +0d8f10b9-746c-3a15-80cb-68aa56f15ff3,SESCO,II.5.1,Mendoza,AR-M,annual,2018,gas oil combustion consumption by agriculture machines,2396.09244,TJ,N2O,3.9,kg/TJ,9344.760516,kg +885643ff-1d0b-3e7b-bf67-60ce528eae67,SESCO,II.5.1,Misiones,AR-N,annual,2018,gas oil combustion consumption by agriculture machines,1272.39924,TJ,CO2,74100.0,kg/TJ,94284783.684,kg +0d7eb8d1-a9bd-3432-8fcc-ce851d984677,SESCO,II.5.1,Misiones,AR-N,annual,2018,gas oil combustion consumption by agriculture machines,1272.39924,TJ,CH4,3.9,kg/TJ,4962.357035999999,kg +0d7eb8d1-a9bd-3432-8fcc-ce851d984677,SESCO,II.5.1,Misiones,AR-N,annual,2018,gas oil combustion consumption by agriculture machines,1272.39924,TJ,N2O,3.9,kg/TJ,4962.357035999999,kg +ff22797d-b261-3ec8-95dd-9b5fb617f644,SESCO,II.5.1,Rio Negro,AR-R,annual,2018,gas oil combustion consumption by agriculture machines,224.59416,TJ,CO2,74100.0,kg/TJ,16642427.256,kg +ffd004e5-c03b-31ed-84df-8139bc88c264,SESCO,II.5.1,Rio Negro,AR-R,annual,2018,gas oil combustion consumption by agriculture machines,224.59416,TJ,CH4,3.9,kg/TJ,875.9172239999999,kg +ffd004e5-c03b-31ed-84df-8139bc88c264,SESCO,II.5.1,Rio Negro,AR-R,annual,2018,gas oil combustion consumption by agriculture machines,224.59416,TJ,N2O,3.9,kg/TJ,875.9172239999999,kg +39366b00-a2e6-359b-a321-e4e68ef654e3,SESCO,II.5.1,Salta,AR-A,annual,2018,gas oil combustion consumption by agriculture machines,2063.9329199999997,TJ,CO2,74100.0,kg/TJ,152937429.37199998,kg +3072dc16-d9ee-37f6-85be-7b41a48030ec,SESCO,II.5.1,Salta,AR-A,annual,2018,gas oil combustion consumption by agriculture machines,2063.9329199999997,TJ,CH4,3.9,kg/TJ,8049.338387999999,kg +3072dc16-d9ee-37f6-85be-7b41a48030ec,SESCO,II.5.1,Salta,AR-A,annual,2018,gas oil combustion consumption by agriculture machines,2063.9329199999997,TJ,N2O,3.9,kg/TJ,8049.338387999999,kg +20eedbbd-c233-31cb-a73d-ee5cf95d2532,SESCO,II.5.1,San Juan,AR-J,annual,2018,gas oil combustion consumption by agriculture machines,685.08804,TJ,CO2,74100.0,kg/TJ,50765023.764,kg +f91efeaf-b83f-32b6-b94f-ac9503ebb151,SESCO,II.5.1,San Juan,AR-J,annual,2018,gas oil combustion consumption by agriculture machines,685.08804,TJ,CH4,3.9,kg/TJ,2671.843356,kg +f91efeaf-b83f-32b6-b94f-ac9503ebb151,SESCO,II.5.1,San Juan,AR-J,annual,2018,gas oil combustion consumption by agriculture machines,685.08804,TJ,N2O,3.9,kg/TJ,2671.843356,kg +b78952dc-ee5f-3c4e-9761-4590c2379853,SESCO,II.5.1,San Luis,AR-D,annual,2018,gas oil combustion consumption by agriculture machines,548.33772,TJ,CO2,74100.0,kg/TJ,40631825.052,kg +9d085f8c-cd16-3bb8-86fd-a4ab4720cb1a,SESCO,II.5.1,San Luis,AR-D,annual,2018,gas oil combustion consumption by agriculture machines,548.33772,TJ,CH4,3.9,kg/TJ,2138.517108,kg +9d085f8c-cd16-3bb8-86fd-a4ab4720cb1a,SESCO,II.5.1,San Luis,AR-D,annual,2018,gas oil combustion consumption by agriculture machines,548.33772,TJ,N2O,3.9,kg/TJ,2138.517108,kg +46647f73-9a61-37cd-bbf4-78e7f151f15b,SESCO,II.5.1,Santa Fe,AR-S,annual,2018,gas oil combustion consumption by agriculture machines,7481.46336,TJ,CO2,74100.0,kg/TJ,554376434.976,kg +8bdb1e5f-71c6-3f37-bfad-c4f4678f7393,SESCO,II.5.1,Santa Fe,AR-S,annual,2018,gas oil combustion consumption by agriculture machines,7481.46336,TJ,CH4,3.9,kg/TJ,29177.707103999997,kg +8bdb1e5f-71c6-3f37-bfad-c4f4678f7393,SESCO,II.5.1,Santa Fe,AR-S,annual,2018,gas oil combustion consumption by agriculture machines,7481.46336,TJ,N2O,3.9,kg/TJ,29177.707103999997,kg +6b1ad274-07f5-3d62-8d22-f6b5b797a675,SESCO,II.5.1,Santiago del Estero,AR-G,annual,2018,gas oil combustion consumption by agriculture machines,1984.0716,TJ,CO2,74100.0,kg/TJ,147019705.56,kg +1108988d-85b3-3ff0-8985-87a3da3cffab,SESCO,II.5.1,Santiago del Estero,AR-G,annual,2018,gas oil combustion consumption by agriculture machines,1984.0716,TJ,CH4,3.9,kg/TJ,7737.87924,kg +1108988d-85b3-3ff0-8985-87a3da3cffab,SESCO,II.5.1,Santiago del Estero,AR-G,annual,2018,gas oil combustion consumption by agriculture machines,1984.0716,TJ,N2O,3.9,kg/TJ,7737.87924,kg +d75b3e0e-3c6f-3295-a98a-fec55dce3881,SESCO,II.5.1,Tucuman,AR-T,annual,2018,gas oil combustion consumption by agriculture machines,1305.6657599999999,TJ,CO2,74100.0,kg/TJ,96749832.81599998,kg +107491af-3829-3278-9fac-277c031d89fc,SESCO,II.5.1,Tucuman,AR-T,annual,2018,gas oil combustion consumption by agriculture machines,1305.6657599999999,TJ,CH4,3.9,kg/TJ,5092.096463999999,kg +107491af-3829-3278-9fac-277c031d89fc,SESCO,II.5.1,Tucuman,AR-T,annual,2018,gas oil combustion consumption by agriculture machines,1305.6657599999999,TJ,N2O,3.9,kg/TJ,5092.096463999999,kg +3e24d43e-8c01-30db-8d7b-8d32eb964010,SESCO,II.5.1,Buenos Aires,AR-B,annual,2018,gas oil combustion consumption by agriculture machines,948.3306,TJ,CO2,74100.0,kg/TJ,70271297.46,kg +5ba1ee15-66a9-3c8c-a881-11002e0c2427,SESCO,II.5.1,Buenos Aires,AR-B,annual,2018,gas oil combustion consumption by agriculture machines,948.3306,TJ,CH4,3.9,kg/TJ,3698.48934,kg +5ba1ee15-66a9-3c8c-a881-11002e0c2427,SESCO,II.5.1,Buenos Aires,AR-B,annual,2018,gas oil combustion consumption by agriculture machines,948.3306,TJ,N2O,3.9,kg/TJ,3698.48934,kg +9bcfd9a1-c4c7-3df2-90c0-b045ab96e49a,SESCO,II.5.1,Capital Federal,AR-C,annual,2018,gas oil combustion consumption by agriculture machines,2.02272,TJ,CO2,74100.0,kg/TJ,149883.552,kg +7f74641c-05d4-30e8-915c-6e6e8376c564,SESCO,II.5.1,Capital Federal,AR-C,annual,2018,gas oil combustion consumption by agriculture machines,2.02272,TJ,CH4,3.9,kg/TJ,7.8886080000000005,kg +7f74641c-05d4-30e8-915c-6e6e8376c564,SESCO,II.5.1,Capital Federal,AR-C,annual,2018,gas oil combustion consumption by agriculture machines,2.02272,TJ,N2O,3.9,kg/TJ,7.8886080000000005,kg +8d61c631-6157-3cda-95d3-9873383068a2,SESCO,II.5.1,Catamarca,AR-K,annual,2018,gas oil combustion consumption by agriculture machines,18.13224,TJ,CO2,74100.0,kg/TJ,1343598.984,kg +6f48ed86-eb19-31e1-9606-bb576798d628,SESCO,II.5.1,Catamarca,AR-K,annual,2018,gas oil combustion consumption by agriculture machines,18.13224,TJ,CH4,3.9,kg/TJ,70.71573599999999,kg +6f48ed86-eb19-31e1-9606-bb576798d628,SESCO,II.5.1,Catamarca,AR-K,annual,2018,gas oil combustion consumption by agriculture machines,18.13224,TJ,N2O,3.9,kg/TJ,70.71573599999999,kg +5c5ff19d-789f-3ddf-9dcb-3ee60a895a49,SESCO,II.5.1,Chaco,AR-H,annual,2018,gas oil combustion consumption by agriculture machines,86.29068,TJ,CO2,74100.0,kg/TJ,6394139.387999999,kg +06c4003f-0705-3cb8-beb3-2403b083b0c5,SESCO,II.5.1,Chaco,AR-H,annual,2018,gas oil combustion consumption by agriculture machines,86.29068,TJ,CH4,3.9,kg/TJ,336.53365199999996,kg +06c4003f-0705-3cb8-beb3-2403b083b0c5,SESCO,II.5.1,Chaco,AR-H,annual,2018,gas oil combustion consumption by agriculture machines,86.29068,TJ,N2O,3.9,kg/TJ,336.53365199999996,kg +62f800a4-6e40-3dee-b161-e0b412885d87,SESCO,II.5.1,Corrientes,AR-W,annual,2018,gas oil combustion consumption by agriculture machines,28.7154,TJ,CO2,74100.0,kg/TJ,2127811.14,kg +f38f000a-ce3a-3cb3-b116-2889020dfd72,SESCO,II.5.1,Corrientes,AR-W,annual,2018,gas oil combustion consumption by agriculture machines,28.7154,TJ,CH4,3.9,kg/TJ,111.99006,kg +f38f000a-ce3a-3cb3-b116-2889020dfd72,SESCO,II.5.1,Corrientes,AR-W,annual,2018,gas oil combustion consumption by agriculture machines,28.7154,TJ,N2O,3.9,kg/TJ,111.99006,kg +2b8a16c4-0091-3442-84b6-15b715264194,SESCO,II.5.1,Córdoba,AR-X,annual,2018,gas oil combustion consumption by agriculture machines,556.82592,TJ,CO2,74100.0,kg/TJ,41260800.672,kg +212e1bf6-a0b0-371b-bc15-9136b12c826b,SESCO,II.5.1,Córdoba,AR-X,annual,2018,gas oil combustion consumption by agriculture machines,556.82592,TJ,CH4,3.9,kg/TJ,2171.621088,kg +212e1bf6-a0b0-371b-bc15-9136b12c826b,SESCO,II.5.1,Córdoba,AR-X,annual,2018,gas oil combustion consumption by agriculture machines,556.82592,TJ,N2O,3.9,kg/TJ,2171.621088,kg +dfd1cc5c-162f-3d60-af3b-dba593ae0ac7,SESCO,II.5.1,Entre Rios,AR-E,annual,2018,gas oil combustion consumption by agriculture machines,65.99124,TJ,CO2,74100.0,kg/TJ,4889950.884000001,kg +52a5589c-bf27-3983-a758-cb7caf775130,SESCO,II.5.1,Entre Rios,AR-E,annual,2018,gas oil combustion consumption by agriculture machines,65.99124,TJ,CH4,3.9,kg/TJ,257.365836,kg +52a5589c-bf27-3983-a758-cb7caf775130,SESCO,II.5.1,Entre Rios,AR-E,annual,2018,gas oil combustion consumption by agriculture machines,65.99124,TJ,N2O,3.9,kg/TJ,257.365836,kg +ffc23180-0801-36e0-8349-3ff2cd78b241,SESCO,II.5.1,Formosa,AR-P,annual,2018,gas oil combustion consumption by agriculture machines,28.67928,TJ,CO2,74100.0,kg/TJ,2125134.648,kg +0c6c5f6e-289c-3003-840b-182dae81256b,SESCO,II.5.1,Formosa,AR-P,annual,2018,gas oil combustion consumption by agriculture machines,28.67928,TJ,CH4,3.9,kg/TJ,111.84919199999999,kg +0c6c5f6e-289c-3003-840b-182dae81256b,SESCO,II.5.1,Formosa,AR-P,annual,2018,gas oil combustion consumption by agriculture machines,28.67928,TJ,N2O,3.9,kg/TJ,111.84919199999999,kg +b6a2785b-21a3-3807-b4aa-6087d703df20,SESCO,II.5.1,Jujuy,AR-Y,annual,2018,gas oil combustion consumption by agriculture machines,56.60004,TJ,CO2,74100.0,kg/TJ,4194062.964,kg +514ab2b7-c11b-3842-9662-b05005ee807f,SESCO,II.5.1,Jujuy,AR-Y,annual,2018,gas oil combustion consumption by agriculture machines,56.60004,TJ,CH4,3.9,kg/TJ,220.74015599999998,kg +514ab2b7-c11b-3842-9662-b05005ee807f,SESCO,II.5.1,Jujuy,AR-Y,annual,2018,gas oil combustion consumption by agriculture machines,56.60004,TJ,N2O,3.9,kg/TJ,220.74015599999998,kg +14d6a004-e244-3652-b1fe-1de85372df33,SESCO,II.5.1,La Pampa,AR-L,annual,2018,gas oil combustion consumption by agriculture machines,218.77884,TJ,CO2,74100.0,kg/TJ,16211512.044,kg +f752feea-1280-3395-bcf1-c8ff0670637d,SESCO,II.5.1,La Pampa,AR-L,annual,2018,gas oil combustion consumption by agriculture machines,218.77884,TJ,CH4,3.9,kg/TJ,853.237476,kg +f752feea-1280-3395-bcf1-c8ff0670637d,SESCO,II.5.1,La Pampa,AR-L,annual,2018,gas oil combustion consumption by agriculture machines,218.77884,TJ,N2O,3.9,kg/TJ,853.237476,kg +ee9246fb-3cc6-3953-a9b7-7adc3e483328,SESCO,II.5.1,Mendoza,AR-M,annual,2018,gas oil combustion consumption by agriculture machines,218.38152,TJ,CO2,74100.0,kg/TJ,16182070.632,kg +9305b949-17f6-3d0f-af83-c9dcb38306be,SESCO,II.5.1,Mendoza,AR-M,annual,2018,gas oil combustion consumption by agriculture machines,218.38152,TJ,CH4,3.9,kg/TJ,851.6879279999999,kg +9305b949-17f6-3d0f-af83-c9dcb38306be,SESCO,II.5.1,Mendoza,AR-M,annual,2018,gas oil combustion consumption by agriculture machines,218.38152,TJ,N2O,3.9,kg/TJ,851.6879279999999,kg +c668a759-0aad-3c8f-9188-172b9643df56,SESCO,II.5.1,Misiones,AR-N,annual,2018,gas oil combustion consumption by agriculture machines,130.3932,TJ,CO2,74100.0,kg/TJ,9662136.120000001,kg +a1ae1bf8-ee0c-3124-8d84-f8ee4339f6e2,SESCO,II.5.1,Misiones,AR-N,annual,2018,gas oil combustion consumption by agriculture machines,130.3932,TJ,CH4,3.9,kg/TJ,508.53348,kg +a1ae1bf8-ee0c-3124-8d84-f8ee4339f6e2,SESCO,II.5.1,Misiones,AR-N,annual,2018,gas oil combustion consumption by agriculture machines,130.3932,TJ,N2O,3.9,kg/TJ,508.53348,kg +987a99b4-463d-3bfb-9b7e-58b67a14f6cd,SESCO,II.5.1,Rio Negro,AR-R,annual,2018,gas oil combustion consumption by agriculture machines,52.62684,TJ,CO2,74100.0,kg/TJ,3899648.844,kg +3538efbe-b817-3460-bb79-18dfcf569e75,SESCO,II.5.1,Rio Negro,AR-R,annual,2018,gas oil combustion consumption by agriculture machines,52.62684,TJ,CH4,3.9,kg/TJ,205.244676,kg +3538efbe-b817-3460-bb79-18dfcf569e75,SESCO,II.5.1,Rio Negro,AR-R,annual,2018,gas oil combustion consumption by agriculture machines,52.62684,TJ,N2O,3.9,kg/TJ,205.244676,kg +63e5f057-15ba-3445-80d0-3abc3ffb0f4d,SESCO,II.5.1,Salta,AR-A,annual,2018,gas oil combustion consumption by agriculture machines,113.0556,TJ,CO2,74100.0,kg/TJ,8377419.96,kg +38f1541a-0876-3457-bb05-46d205b22b4a,SESCO,II.5.1,Salta,AR-A,annual,2018,gas oil combustion consumption by agriculture machines,113.0556,TJ,CH4,3.9,kg/TJ,440.91684,kg +38f1541a-0876-3457-bb05-46d205b22b4a,SESCO,II.5.1,Salta,AR-A,annual,2018,gas oil combustion consumption by agriculture machines,113.0556,TJ,N2O,3.9,kg/TJ,440.91684,kg +6085d150-0198-3629-a566-47ec58d0e42c,SESCO,II.5.1,San Juan,AR-J,annual,2018,gas oil combustion consumption by agriculture machines,120.67692,TJ,CO2,74100.0,kg/TJ,8942159.772,kg +3a15baae-85bb-3c04-9a33-87c4b234357f,SESCO,II.5.1,San Juan,AR-J,annual,2018,gas oil combustion consumption by agriculture machines,120.67692,TJ,CH4,3.9,kg/TJ,470.63998799999996,kg +3a15baae-85bb-3c04-9a33-87c4b234357f,SESCO,II.5.1,San Juan,AR-J,annual,2018,gas oil combustion consumption by agriculture machines,120.67692,TJ,N2O,3.9,kg/TJ,470.63998799999996,kg +e8e8add1-1510-3e68-ba03-d83cbd156cbd,SESCO,II.5.1,San Luis,AR-D,annual,2018,gas oil combustion consumption by agriculture machines,43.344,TJ,CO2,74100.0,kg/TJ,3211790.4,kg +710ebfd4-f0a9-36f1-8959-e95f5295dfe1,SESCO,II.5.1,San Luis,AR-D,annual,2018,gas oil combustion consumption by agriculture machines,43.344,TJ,CH4,3.9,kg/TJ,169.0416,kg +710ebfd4-f0a9-36f1-8959-e95f5295dfe1,SESCO,II.5.1,San Luis,AR-D,annual,2018,gas oil combustion consumption by agriculture machines,43.344,TJ,N2O,3.9,kg/TJ,169.0416,kg +3a06177f-b03f-3608-90d1-563aa11e48c1,SESCO,II.5.1,Santa Fe,AR-S,annual,2018,gas oil combustion consumption by agriculture machines,382.72751999999997,TJ,CO2,74100.0,kg/TJ,28360109.231999997,kg +50db0890-bbd1-378d-953c-157bb1bcb179,SESCO,II.5.1,Santa Fe,AR-S,annual,2018,gas oil combustion consumption by agriculture machines,382.72751999999997,TJ,CH4,3.9,kg/TJ,1492.6373279999998,kg +50db0890-bbd1-378d-953c-157bb1bcb179,SESCO,II.5.1,Santa Fe,AR-S,annual,2018,gas oil combustion consumption by agriculture machines,382.72751999999997,TJ,N2O,3.9,kg/TJ,1492.6373279999998,kg +af121280-e195-35f5-8044-b95309748226,SESCO,II.5.1,Santiago del Estero,AR-G,annual,2018,gas oil combustion consumption by agriculture machines,199.49076,TJ,CO2,74100.0,kg/TJ,14782265.316,kg +76ffedcf-50e7-3b3e-ba28-56e158c4f912,SESCO,II.5.1,Santiago del Estero,AR-G,annual,2018,gas oil combustion consumption by agriculture machines,199.49076,TJ,CH4,3.9,kg/TJ,778.013964,kg +76ffedcf-50e7-3b3e-ba28-56e158c4f912,SESCO,II.5.1,Santiago del Estero,AR-G,annual,2018,gas oil combustion consumption by agriculture machines,199.49076,TJ,N2O,3.9,kg/TJ,778.013964,kg +27b693e4-af88-3b49-b50d-299ae78e328b,SESCO,II.5.1,Tucuman,AR-T,annual,2018,gas oil combustion consumption by agriculture machines,123.96384,TJ,CO2,74100.0,kg/TJ,9185720.544,kg +3905fcf0-cb50-3b5d-9207-b91cf54a3317,SESCO,II.5.1,Tucuman,AR-T,annual,2018,gas oil combustion consumption by agriculture machines,123.96384,TJ,CH4,3.9,kg/TJ,483.458976,kg +3905fcf0-cb50-3b5d-9207-b91cf54a3317,SESCO,II.5.1,Tucuman,AR-T,annual,2018,gas oil combustion consumption by agriculture machines,123.96384,TJ,N2O,3.9,kg/TJ,483.458976,kg +f06eb7a1-2abe-3a45-9dcf-90a74670fe00,SESCO,II.5.1,Buenos Aires,AR-B,annual,2018,jet kerosene combustion consumption by agriculture machines,6.384958999999999,TJ,CO2,71500.0,kg/TJ,456524.56849999994,kg +a7e81490-6db2-3051-ad26-daeebe8208be,SESCO,II.5.1,Buenos Aires,AR-B,annual,2018,jet kerosene combustion consumption by agriculture machines,6.384958999999999,TJ,CH4,0.5,kg/TJ,3.1924794999999997,kg +207ae956-3f73-3d0e-a77b-4cdb032206d4,SESCO,II.5.1,Buenos Aires,AR-B,annual,2018,jet kerosene combustion consumption by agriculture machines,6.384958999999999,TJ,N2O,2.0,kg/TJ,12.769917999999999,kg +93bf2ce2-fb2f-3c4c-b111-a60198180974,SESCO,II.5.1,Córdoba,AR-X,annual,2018,jet kerosene combustion consumption by agriculture machines,0.5661539999999999,TJ,CO2,71500.0,kg/TJ,40480.011,kg +e52974d2-8ca1-3d43-ba2d-742af09cd949,SESCO,II.5.1,Córdoba,AR-X,annual,2018,jet kerosene combustion consumption by agriculture machines,0.5661539999999999,TJ,CH4,0.5,kg/TJ,0.28307699999999997,kg +065cf5c9-4ac3-39b9-ab0b-be084b0cd299,SESCO,II.5.1,Córdoba,AR-X,annual,2018,jet kerosene combustion consumption by agriculture machines,0.5661539999999999,TJ,N2O,2.0,kg/TJ,1.1323079999999999,kg +a8e85e65-34ad-3697-9ab5-7e04d406fe70,SESCO,II.5.1,La Pampa,AR-L,annual,2018,jet kerosene combustion consumption by agriculture machines,0.157265,TJ,CO2,71500.0,kg/TJ,11244.447499999998,kg +367ff851-174e-34b6-80f1-1bf235bc288e,SESCO,II.5.1,La Pampa,AR-L,annual,2018,jet kerosene combustion consumption by agriculture machines,0.157265,TJ,CH4,0.5,kg/TJ,0.0786325,kg +23a3138c-0ad2-3901-9a62-3cd2ca98c8b6,SESCO,II.5.1,La Pampa,AR-L,annual,2018,jet kerosene combustion consumption by agriculture machines,0.157265,TJ,N2O,2.0,kg/TJ,0.31453,kg +befa29e4-1eec-39ba-9422-bde4c4f2ecb0,SESCO,II.5.1,Santa Fe,AR-S,annual,2018,jet kerosene combustion consumption by agriculture machines,9.278634999999998,TJ,CO2,71500.0,kg/TJ,663422.4024999999,kg +cd4e6c69-81ca-3b39-a6e6-34e0ff23908e,SESCO,II.5.1,Santa Fe,AR-S,annual,2018,jet kerosene combustion consumption by agriculture machines,9.278634999999998,TJ,CH4,0.5,kg/TJ,4.639317499999999,kg +9b5fbcd0-ee91-3cfa-b8fe-383082a9ad0d,SESCO,II.5.1,Santa Fe,AR-S,annual,2018,jet kerosene combustion consumption by agriculture machines,9.278634999999998,TJ,N2O,2.0,kg/TJ,18.557269999999995,kg +1a26568a-2559-362f-8b3b-29a3ed3afc18,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,gas oil combustion consumption by to the public,26288.38884,TJ,CO2,74100.0,kg/TJ,1947969613.044,kg +1850ced7-9612-34cd-b4b5-1dabad81735e,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,gas oil combustion consumption by to the public,26288.38884,TJ,CH4,3.9,kg/TJ,102524.716476,kg +1850ced7-9612-34cd-b4b5-1dabad81735e,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,gas oil combustion consumption by to the public,26288.38884,TJ,N2O,3.9,kg/TJ,102524.716476,kg +0902561e-0f9b-3a5b-9d2d-e715dac26755,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,gas oil combustion consumption by to the public,2783.33496,TJ,CO2,74100.0,kg/TJ,206245120.536,kg +7e8c55db-c0ef-325f-92c8-f8548357b5b1,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,gas oil combustion consumption by to the public,2783.33496,TJ,CH4,3.9,kg/TJ,10855.006344,kg +7e8c55db-c0ef-325f-92c8-f8548357b5b1,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,gas oil combustion consumption by to the public,2783.33496,TJ,N2O,3.9,kg/TJ,10855.006344,kg +7ce6ad12-a7dc-37f3-b170-5263a36852fc,SESCO,II.1.1,Catamarca,AR-K,annual,2018,gas oil combustion consumption by to the public,301.89096,TJ,CO2,74100.0,kg/TJ,22370120.136,kg +528aaeac-db2b-3841-a9f6-a34106d6c053,SESCO,II.1.1,Catamarca,AR-K,annual,2018,gas oil combustion consumption by to the public,301.89096,TJ,CH4,3.9,kg/TJ,1177.374744,kg +528aaeac-db2b-3841-a9f6-a34106d6c053,SESCO,II.1.1,Catamarca,AR-K,annual,2018,gas oil combustion consumption by to the public,301.89096,TJ,N2O,3.9,kg/TJ,1177.374744,kg +f025d147-6587-3ca1-ba33-341de39e196f,SESCO,II.1.1,Chaco,AR-H,annual,2018,gas oil combustion consumption by to the public,1835.18496,TJ,CO2,74100.0,kg/TJ,135987205.536,kg +7311afbd-da0a-3660-9fba-6d1c124888d1,SESCO,II.1.1,Chaco,AR-H,annual,2018,gas oil combustion consumption by to the public,1835.18496,TJ,CH4,3.9,kg/TJ,7157.221344,kg +7311afbd-da0a-3660-9fba-6d1c124888d1,SESCO,II.1.1,Chaco,AR-H,annual,2018,gas oil combustion consumption by to the public,1835.18496,TJ,N2O,3.9,kg/TJ,7157.221344,kg +2cda1643-bb64-349d-b68e-e7e55fa2005e,SESCO,II.1.1,Chubut,AR-U,annual,2018,gas oil combustion consumption by to the public,3189.72108,TJ,CO2,74100.0,kg/TJ,236358332.028,kg +7aa5de33-fa65-34d2-95db-cbaa2018b32c,SESCO,II.1.1,Chubut,AR-U,annual,2018,gas oil combustion consumption by to the public,3189.72108,TJ,CH4,3.9,kg/TJ,12439.912212,kg +7aa5de33-fa65-34d2-95db-cbaa2018b32c,SESCO,II.1.1,Chubut,AR-U,annual,2018,gas oil combustion consumption by to the public,3189.72108,TJ,N2O,3.9,kg/TJ,12439.912212,kg +bf1b5610-cef1-38d7-a174-040638b3987e,SESCO,II.1.1,Corrientes,AR-W,annual,2018,gas oil combustion consumption by to the public,1474.81572,TJ,CO2,74100.0,kg/TJ,109283844.852,kg +58f28871-085a-330d-929a-16cea316afbf,SESCO,II.1.1,Corrientes,AR-W,annual,2018,gas oil combustion consumption by to the public,1474.81572,TJ,CH4,3.9,kg/TJ,5751.7813080000005,kg +58f28871-085a-330d-929a-16cea316afbf,SESCO,II.1.1,Corrientes,AR-W,annual,2018,gas oil combustion consumption by to the public,1474.81572,TJ,N2O,3.9,kg/TJ,5751.7813080000005,kg +ed6a1a21-4b78-3a3f-bb1c-196532dbda25,SESCO,II.1.1,Córdoba,AR-X,annual,2018,gas oil combustion consumption by to the public,9365.77152,TJ,CO2,74100.0,kg/TJ,694003669.632,kg +10013685-24f3-3a6f-8997-e24a027cd4a9,SESCO,II.1.1,Córdoba,AR-X,annual,2018,gas oil combustion consumption by to the public,9365.77152,TJ,CH4,3.9,kg/TJ,36526.508928,kg +10013685-24f3-3a6f-8997-e24a027cd4a9,SESCO,II.1.1,Córdoba,AR-X,annual,2018,gas oil combustion consumption by to the public,9365.77152,TJ,N2O,3.9,kg/TJ,36526.508928,kg +b44f476b-de16-3d2c-bb82-bdb471bcfb67,SESCO,II.1.1,Entre Rios,AR-E,annual,2018,gas oil combustion consumption by to the public,3500.35308,TJ,CO2,74100.0,kg/TJ,259376163.228,kg +45fce7dc-fb01-3dc3-87f5-5c9d1b3a9776,SESCO,II.1.1,Entre Rios,AR-E,annual,2018,gas oil combustion consumption by to the public,3500.35308,TJ,CH4,3.9,kg/TJ,13651.377011999999,kg +45fce7dc-fb01-3dc3-87f5-5c9d1b3a9776,SESCO,II.1.1,Entre Rios,AR-E,annual,2018,gas oil combustion consumption by to the public,3500.35308,TJ,N2O,3.9,kg/TJ,13651.377011999999,kg +03489c57-5c01-3f6a-94e9-d397cc5d5155,SESCO,II.1.1,Formosa,AR-P,annual,2018,gas oil combustion consumption by to the public,518.2136399999999,TJ,CO2,74100.0,kg/TJ,38399630.72399999,kg +8977f871-875d-3c9b-8d89-c9b9850621a5,SESCO,II.1.1,Formosa,AR-P,annual,2018,gas oil combustion consumption by to the public,518.2136399999999,TJ,CH4,3.9,kg/TJ,2021.0331959999996,kg +8977f871-875d-3c9b-8d89-c9b9850621a5,SESCO,II.1.1,Formosa,AR-P,annual,2018,gas oil combustion consumption by to the public,518.2136399999999,TJ,N2O,3.9,kg/TJ,2021.0331959999996,kg +6396c554-4b58-3b76-9c81-5b26af7cf3fa,SESCO,II.1.1,Jujuy,AR-Y,annual,2018,gas oil combustion consumption by to the public,1439.7432,TJ,CO2,74100.0,kg/TJ,106684971.11999999,kg +01e2cecf-f93d-307a-a2d0-6bfb6f93cf5a,SESCO,II.1.1,Jujuy,AR-Y,annual,2018,gas oil combustion consumption by to the public,1439.7432,TJ,CH4,3.9,kg/TJ,5614.998479999999,kg +01e2cecf-f93d-307a-a2d0-6bfb6f93cf5a,SESCO,II.1.1,Jujuy,AR-Y,annual,2018,gas oil combustion consumption by to the public,1439.7432,TJ,N2O,3.9,kg/TJ,5614.998479999999,kg +bd419338-dcbc-3f79-adb4-f56aa71b8e7d,SESCO,II.1.1,La Pampa,AR-L,annual,2018,gas oil combustion consumption by to the public,2323.1661599999998,TJ,CO2,74100.0,kg/TJ,172146612.45599997,kg +c17a5a89-c6a2-39e7-8b3f-09116dbbf0b0,SESCO,II.1.1,La Pampa,AR-L,annual,2018,gas oil combustion consumption by to the public,2323.1661599999998,TJ,CH4,3.9,kg/TJ,9060.348023999999,kg +c17a5a89-c6a2-39e7-8b3f-09116dbbf0b0,SESCO,II.1.1,La Pampa,AR-L,annual,2018,gas oil combustion consumption by to the public,2323.1661599999998,TJ,N2O,3.9,kg/TJ,9060.348023999999,kg +c3c7f2d6-c335-352b-920c-27a02d103a73,SESCO,II.1.1,La Rioja,AR-F,annual,2018,gas oil combustion consumption by to the public,580.8096,TJ,CO2,74100.0,kg/TJ,43037991.36000001,kg +3fd674ef-e3e6-3162-b4d3-425eedfc6b45,SESCO,II.1.1,La Rioja,AR-F,annual,2018,gas oil combustion consumption by to the public,580.8096,TJ,CH4,3.9,kg/TJ,2265.15744,kg +3fd674ef-e3e6-3162-b4d3-425eedfc6b45,SESCO,II.1.1,La Rioja,AR-F,annual,2018,gas oil combustion consumption by to the public,580.8096,TJ,N2O,3.9,kg/TJ,2265.15744,kg +88165a45-b1bf-38c9-a083-5999d41ef14c,SESCO,II.1.1,Mendoza,AR-M,annual,2018,gas oil combustion consumption by to the public,7392.46368,TJ,CO2,74100.0,kg/TJ,547781558.688,kg +53ad7fcd-6a6b-3562-b700-14a22373ac2e,SESCO,II.1.1,Mendoza,AR-M,annual,2018,gas oil combustion consumption by to the public,7392.46368,TJ,CH4,3.9,kg/TJ,28830.608352,kg +53ad7fcd-6a6b-3562-b700-14a22373ac2e,SESCO,II.1.1,Mendoza,AR-M,annual,2018,gas oil combustion consumption by to the public,7392.46368,TJ,N2O,3.9,kg/TJ,28830.608352,kg +738ee557-83e1-3abf-b361-d5ebef5676df,SESCO,II.1.1,Misiones,AR-N,annual,2018,gas oil combustion consumption by to the public,2529.88092,TJ,CO2,74100.0,kg/TJ,187464176.172,kg +033a6309-131b-32b2-8cc6-7c1edae3575e,SESCO,II.1.1,Misiones,AR-N,annual,2018,gas oil combustion consumption by to the public,2529.88092,TJ,CH4,3.9,kg/TJ,9866.535588,kg +033a6309-131b-32b2-8cc6-7c1edae3575e,SESCO,II.1.1,Misiones,AR-N,annual,2018,gas oil combustion consumption by to the public,2529.88092,TJ,N2O,3.9,kg/TJ,9866.535588,kg +1ac51d91-b910-3db8-a0ba-bc3184590033,SESCO,II.1.1,Neuquén,AR-Q,annual,2018,gas oil combustion consumption by to the public,1760.77776,TJ,CO2,74100.0,kg/TJ,130473632.016,kg +2b691bf5-cb6f-313c-8b09-d1bf3bca0756,SESCO,II.1.1,Neuquén,AR-Q,annual,2018,gas oil combustion consumption by to the public,1760.77776,TJ,CH4,3.9,kg/TJ,6867.033264,kg +2b691bf5-cb6f-313c-8b09-d1bf3bca0756,SESCO,II.1.1,Neuquén,AR-Q,annual,2018,gas oil combustion consumption by to the public,1760.77776,TJ,N2O,3.9,kg/TJ,6867.033264,kg +9c2c7657-2e66-30fb-93a3-257f7d661be6,SESCO,II.1.1,Rio Negro,AR-R,annual,2018,gas oil combustion consumption by to the public,3746.22192,TJ,CO2,74100.0,kg/TJ,277595044.272,kg +6724d68d-be71-350f-963a-d95660cfa68e,SESCO,II.1.1,Rio Negro,AR-R,annual,2018,gas oil combustion consumption by to the public,3746.22192,TJ,CH4,3.9,kg/TJ,14610.265488,kg +6724d68d-be71-350f-963a-d95660cfa68e,SESCO,II.1.1,Rio Negro,AR-R,annual,2018,gas oil combustion consumption by to the public,3746.22192,TJ,N2O,3.9,kg/TJ,14610.265488,kg +3d1074d3-cbef-324e-b5c1-800665cd8f01,SESCO,II.1.1,Salta,AR-A,annual,2018,gas oil combustion consumption by to the public,3133.55448,TJ,CO2,74100.0,kg/TJ,232196386.968,kg +fb4e6875-27e5-35cf-8479-08c6f647352d,SESCO,II.1.1,Salta,AR-A,annual,2018,gas oil combustion consumption by to the public,3133.55448,TJ,CH4,3.9,kg/TJ,12220.862471999999,kg +fb4e6875-27e5-35cf-8479-08c6f647352d,SESCO,II.1.1,Salta,AR-A,annual,2018,gas oil combustion consumption by to the public,3133.55448,TJ,N2O,3.9,kg/TJ,12220.862471999999,kg +7ade9dcf-26b7-3003-a8c2-cbd1d48ff050,SESCO,II.1.1,San Juan,AR-J,annual,2018,gas oil combustion consumption by to the public,1649.20308,TJ,CO2,74100.0,kg/TJ,122205948.228,kg +27bf5922-6476-35a8-b9bb-26578c884581,SESCO,II.1.1,San Juan,AR-J,annual,2018,gas oil combustion consumption by to the public,1649.20308,TJ,CH4,3.9,kg/TJ,6431.892012,kg +27bf5922-6476-35a8-b9bb-26578c884581,SESCO,II.1.1,San Juan,AR-J,annual,2018,gas oil combustion consumption by to the public,1649.20308,TJ,N2O,3.9,kg/TJ,6431.892012,kg +3cc1d8d8-2272-3904-bfca-272470719582,SESCO,II.1.1,San Luis,AR-D,annual,2018,gas oil combustion consumption by to the public,1346.30076,TJ,CO2,74100.0,kg/TJ,99760886.316,kg +e9e6a7c4-af18-3590-aa5b-225e84a5b559,SESCO,II.1.1,San Luis,AR-D,annual,2018,gas oil combustion consumption by to the public,1346.30076,TJ,CH4,3.9,kg/TJ,5250.572964,kg +e9e6a7c4-af18-3590-aa5b-225e84a5b559,SESCO,II.1.1,San Luis,AR-D,annual,2018,gas oil combustion consumption by to the public,1346.30076,TJ,N2O,3.9,kg/TJ,5250.572964,kg +e3732538-a5b5-3774-aaf3-6410021f9fdb,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2018,gas oil combustion consumption by to the public,1783.17216,TJ,CO2,74100.0,kg/TJ,132133057.05600001,kg +3c41c725-9396-39fb-879a-84eecacd8742,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2018,gas oil combustion consumption by to the public,1783.17216,TJ,CH4,3.9,kg/TJ,6954.371424,kg +3c41c725-9396-39fb-879a-84eecacd8742,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2018,gas oil combustion consumption by to the public,1783.17216,TJ,N2O,3.9,kg/TJ,6954.371424,kg +48207d83-c02a-3ac2-949f-d298bca43658,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,gas oil combustion consumption by to the public,6913.7292,TJ,CO2,74100.0,kg/TJ,512307333.71999997,kg +8146c190-2680-3d7d-8ae5-75271932e671,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,gas oil combustion consumption by to the public,6913.7292,TJ,CH4,3.9,kg/TJ,26963.543879999997,kg +8146c190-2680-3d7d-8ae5-75271932e671,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,gas oil combustion consumption by to the public,6913.7292,TJ,N2O,3.9,kg/TJ,26963.543879999997,kg +bc0cb684-5b51-3d4d-94d1-79311f0238cb,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2018,gas oil combustion consumption by to the public,2076.28596,TJ,CO2,74100.0,kg/TJ,153852789.636,kg +e380e64c-4c74-304c-b49a-4cff2358f86e,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2018,gas oil combustion consumption by to the public,2076.28596,TJ,CH4,3.9,kg/TJ,8097.515244,kg +e380e64c-4c74-304c-b49a-4cff2358f86e,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2018,gas oil combustion consumption by to the public,2076.28596,TJ,N2O,3.9,kg/TJ,8097.515244,kg +7e7b6d7f-87bc-3943-b41b-6892c85145fe,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2018,gas oil combustion consumption by to the public,722.11104,TJ,CO2,74100.0,kg/TJ,53508428.064,kg +82fa723f-9fab-3e5b-89a5-a6838d3aed4e,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2018,gas oil combustion consumption by to the public,722.11104,TJ,CH4,3.9,kg/TJ,2816.233056,kg +82fa723f-9fab-3e5b-89a5-a6838d3aed4e,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2018,gas oil combustion consumption by to the public,722.11104,TJ,N2O,3.9,kg/TJ,2816.233056,kg +d93da14c-be98-3dac-a96f-6396056c4f44,SESCO,II.1.1,Tucuman,AR-T,annual,2018,gas oil combustion consumption by to the public,1723.24908,TJ,CO2,74100.0,kg/TJ,127692756.82800001,kg +e523cf97-7e62-3d7b-af89-aa3aa0add790,SESCO,II.1.1,Tucuman,AR-T,annual,2018,gas oil combustion consumption by to the public,1723.24908,TJ,CH4,3.9,kg/TJ,6720.671412,kg +e523cf97-7e62-3d7b-af89-aa3aa0add790,SESCO,II.1.1,Tucuman,AR-T,annual,2018,gas oil combustion consumption by to the public,1723.24908,TJ,N2O,3.9,kg/TJ,6720.671412,kg +8e847d77-78ef-3ff7-bee4-8c533be85342,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,gas oil combustion consumption by to the public,16713.22968,TJ,CO2,74100.0,kg/TJ,1238450319.288,kg +8ec59761-07e2-3c47-9081-84853eaa71c8,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,gas oil combustion consumption by to the public,16713.22968,TJ,CH4,3.9,kg/TJ,65181.595752,kg +8ec59761-07e2-3c47-9081-84853eaa71c8,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,gas oil combustion consumption by to the public,16713.22968,TJ,N2O,3.9,kg/TJ,65181.595752,kg +9725b926-9d2c-3b1b-afd9-3b683a47fcf7,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,gas oil combustion consumption by to the public,2364.99312,TJ,CO2,74100.0,kg/TJ,175245990.192,kg +be5c0a66-173b-3651-9755-880fe49f75ca,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,gas oil combustion consumption by to the public,2364.99312,TJ,CH4,3.9,kg/TJ,9223.473168,kg +be5c0a66-173b-3651-9755-880fe49f75ca,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,gas oil combustion consumption by to the public,2364.99312,TJ,N2O,3.9,kg/TJ,9223.473168,kg +4fbc43c0-7ed7-3118-957e-4854cd0a83cc,SESCO,II.1.1,Catamarca,AR-K,annual,2018,gas oil combustion consumption by to the public,423.90432,TJ,CO2,74100.0,kg/TJ,31411310.112,kg +7778388b-eb0d-30da-a1db-145b89ea494c,SESCO,II.1.1,Catamarca,AR-K,annual,2018,gas oil combustion consumption by to the public,423.90432,TJ,CH4,3.9,kg/TJ,1653.2268479999998,kg +7778388b-eb0d-30da-a1db-145b89ea494c,SESCO,II.1.1,Catamarca,AR-K,annual,2018,gas oil combustion consumption by to the public,423.90432,TJ,N2O,3.9,kg/TJ,1653.2268479999998,kg +c0d66a6c-74b0-3275-a041-98c01ec13702,SESCO,II.1.1,Chaco,AR-H,annual,2018,gas oil combustion consumption by to the public,1288.83384,TJ,CO2,74100.0,kg/TJ,95502587.544,kg +50ba8358-c565-3106-92bb-388e49b506c1,SESCO,II.1.1,Chaco,AR-H,annual,2018,gas oil combustion consumption by to the public,1288.83384,TJ,CH4,3.9,kg/TJ,5026.451976,kg +50ba8358-c565-3106-92bb-388e49b506c1,SESCO,II.1.1,Chaco,AR-H,annual,2018,gas oil combustion consumption by to the public,1288.83384,TJ,N2O,3.9,kg/TJ,5026.451976,kg +f41363d7-5ee7-3474-b83e-a2d452e8af9b,SESCO,II.1.1,Chubut,AR-U,annual,2018,gas oil combustion consumption by to the public,2154.23292,TJ,CO2,74100.0,kg/TJ,159628659.372,kg +46f0e371-357f-3159-933d-7b96c66de019,SESCO,II.1.1,Chubut,AR-U,annual,2018,gas oil combustion consumption by to the public,2154.23292,TJ,CH4,3.9,kg/TJ,8401.508388,kg +46f0e371-357f-3159-933d-7b96c66de019,SESCO,II.1.1,Chubut,AR-U,annual,2018,gas oil combustion consumption by to the public,2154.23292,TJ,N2O,3.9,kg/TJ,8401.508388,kg +56971c3f-d3dc-3105-838e-c0166a3bc9cd,SESCO,II.1.1,Corrientes,AR-W,annual,2018,gas oil combustion consumption by to the public,1215.36576,TJ,CO2,74100.0,kg/TJ,90058602.816,kg +69276a8d-114d-30aa-bdd8-c7e11ef8c594,SESCO,II.1.1,Corrientes,AR-W,annual,2018,gas oil combustion consumption by to the public,1215.36576,TJ,CH4,3.9,kg/TJ,4739.926463999999,kg +69276a8d-114d-30aa-bdd8-c7e11ef8c594,SESCO,II.1.1,Corrientes,AR-W,annual,2018,gas oil combustion consumption by to the public,1215.36576,TJ,N2O,3.9,kg/TJ,4739.926463999999,kg +c8b77cd4-9a87-3658-b2e6-e80146f47e32,SESCO,II.1.1,Córdoba,AR-X,annual,2018,gas oil combustion consumption by to the public,5261.09472,TJ,CO2,74100.0,kg/TJ,389847118.752,kg +a0718cdf-8991-3a3d-8481-9b20ae5a4adc,SESCO,II.1.1,Córdoba,AR-X,annual,2018,gas oil combustion consumption by to the public,5261.09472,TJ,CH4,3.9,kg/TJ,20518.269408,kg +a0718cdf-8991-3a3d-8481-9b20ae5a4adc,SESCO,II.1.1,Córdoba,AR-X,annual,2018,gas oil combustion consumption by to the public,5261.09472,TJ,N2O,3.9,kg/TJ,20518.269408,kg +1ae76b1b-6737-31f6-b7ef-fdb73288857d,SESCO,II.1.1,Entre Rios,AR-E,annual,2018,gas oil combustion consumption by to the public,1820.23128,TJ,CO2,74100.0,kg/TJ,134879137.848,kg +6016f5f0-efe8-3da1-ac8e-3679fb04247c,SESCO,II.1.1,Entre Rios,AR-E,annual,2018,gas oil combustion consumption by to the public,1820.23128,TJ,CH4,3.9,kg/TJ,7098.901992,kg +6016f5f0-efe8-3da1-ac8e-3679fb04247c,SESCO,II.1.1,Entre Rios,AR-E,annual,2018,gas oil combustion consumption by to the public,1820.23128,TJ,N2O,3.9,kg/TJ,7098.901992,kg +2917bfb5-6063-3274-9695-2de98debd792,SESCO,II.1.1,Formosa,AR-P,annual,2018,gas oil combustion consumption by to the public,411.37068,TJ,CO2,74100.0,kg/TJ,30482567.388,kg +28cfa313-3d07-3eb0-a9d3-108783c2e5c6,SESCO,II.1.1,Formosa,AR-P,annual,2018,gas oil combustion consumption by to the public,411.37068,TJ,CH4,3.9,kg/TJ,1604.345652,kg +28cfa313-3d07-3eb0-a9d3-108783c2e5c6,SESCO,II.1.1,Formosa,AR-P,annual,2018,gas oil combustion consumption by to the public,411.37068,TJ,N2O,3.9,kg/TJ,1604.345652,kg +ed95a718-cc6f-34c4-8068-810f77920cb0,SESCO,II.1.1,Jujuy,AR-Y,annual,2018,gas oil combustion consumption by to the public,937.78356,TJ,CO2,74100.0,kg/TJ,69489761.796,kg +3da10c24-307c-344b-97e9-96dc161922eb,SESCO,II.1.1,Jujuy,AR-Y,annual,2018,gas oil combustion consumption by to the public,937.78356,TJ,CH4,3.9,kg/TJ,3657.3558839999996,kg +3da10c24-307c-344b-97e9-96dc161922eb,SESCO,II.1.1,Jujuy,AR-Y,annual,2018,gas oil combustion consumption by to the public,937.78356,TJ,N2O,3.9,kg/TJ,3657.3558839999996,kg +1b7a3ece-51f4-39b6-a9be-15c94257c973,SESCO,II.1.1,La Pampa,AR-L,annual,2018,gas oil combustion consumption by to the public,1527.6231599999999,TJ,CO2,74100.0,kg/TJ,113196876.15599999,kg +556edbc4-5d53-3538-9c28-17e11e0d1516,SESCO,II.1.1,La Pampa,AR-L,annual,2018,gas oil combustion consumption by to the public,1527.6231599999999,TJ,CH4,3.9,kg/TJ,5957.730323999999,kg +556edbc4-5d53-3538-9c28-17e11e0d1516,SESCO,II.1.1,La Pampa,AR-L,annual,2018,gas oil combustion consumption by to the public,1527.6231599999999,TJ,N2O,3.9,kg/TJ,5957.730323999999,kg +a03db055-6b37-3d40-b76c-062b15166902,SESCO,II.1.1,La Rioja,AR-F,annual,2018,gas oil combustion consumption by to the public,542.73912,TJ,CO2,74100.0,kg/TJ,40216968.791999996,kg +c3d0ecb1-8ced-3740-ac5b-d2406ba14f7f,SESCO,II.1.1,La Rioja,AR-F,annual,2018,gas oil combustion consumption by to the public,542.73912,TJ,CH4,3.9,kg/TJ,2116.6825679999997,kg +c3d0ecb1-8ced-3740-ac5b-d2406ba14f7f,SESCO,II.1.1,La Rioja,AR-F,annual,2018,gas oil combustion consumption by to the public,542.73912,TJ,N2O,3.9,kg/TJ,2116.6825679999997,kg +5b8a2eed-5342-347a-9615-01cd764b3aff,SESCO,II.1.1,Mendoza,AR-M,annual,2018,gas oil combustion consumption by to the public,3642.59364,TJ,CO2,74100.0,kg/TJ,269916188.724,kg +e8bcd1cc-c236-34e8-95be-f000f2b4b4a6,SESCO,II.1.1,Mendoza,AR-M,annual,2018,gas oil combustion consumption by to the public,3642.59364,TJ,CH4,3.9,kg/TJ,14206.115196,kg +e8bcd1cc-c236-34e8-95be-f000f2b4b4a6,SESCO,II.1.1,Mendoza,AR-M,annual,2018,gas oil combustion consumption by to the public,3642.59364,TJ,N2O,3.9,kg/TJ,14206.115196,kg +3fd6a27e-9e70-3179-92c4-72af0c0eadfb,SESCO,II.1.1,Misiones,AR-N,annual,2018,gas oil combustion consumption by to the public,1287.8586,TJ,CO2,74100.0,kg/TJ,95430322.26,kg +a5eab566-a959-3502-b983-17a0527e2cee,SESCO,II.1.1,Misiones,AR-N,annual,2018,gas oil combustion consumption by to the public,1287.8586,TJ,CH4,3.9,kg/TJ,5022.64854,kg +a5eab566-a959-3502-b983-17a0527e2cee,SESCO,II.1.1,Misiones,AR-N,annual,2018,gas oil combustion consumption by to the public,1287.8586,TJ,N2O,3.9,kg/TJ,5022.64854,kg +9f373891-bdee-3a63-9509-916cbeae7243,SESCO,II.1.1,Neuquén,AR-Q,annual,2018,gas oil combustion consumption by to the public,2460.1331999999998,TJ,CO2,74100.0,kg/TJ,182295870.11999997,kg +24143e72-ca3c-31a3-a4a1-488e0d947d5b,SESCO,II.1.1,Neuquén,AR-Q,annual,2018,gas oil combustion consumption by to the public,2460.1331999999998,TJ,CH4,3.9,kg/TJ,9594.519479999999,kg +24143e72-ca3c-31a3-a4a1-488e0d947d5b,SESCO,II.1.1,Neuquén,AR-Q,annual,2018,gas oil combustion consumption by to the public,2460.1331999999998,TJ,N2O,3.9,kg/TJ,9594.519479999999,kg +0e499a4a-8b73-36b6-9260-5cb63d2459dd,SESCO,II.1.1,Rio Negro,AR-R,annual,2018,gas oil combustion consumption by to the public,1846.05708,TJ,CO2,74100.0,kg/TJ,136792829.628,kg +c801e353-0cec-37a8-8ebf-132802d81f74,SESCO,II.1.1,Rio Negro,AR-R,annual,2018,gas oil combustion consumption by to the public,1846.05708,TJ,CH4,3.9,kg/TJ,7199.622612,kg +c801e353-0cec-37a8-8ebf-132802d81f74,SESCO,II.1.1,Rio Negro,AR-R,annual,2018,gas oil combustion consumption by to the public,1846.05708,TJ,N2O,3.9,kg/TJ,7199.622612,kg +ddccfa92-56fe-372f-a6e4-1b68faf2fc63,SESCO,II.1.1,Salta,AR-A,annual,2018,gas oil combustion consumption by to the public,1999.35036,TJ,CO2,74100.0,kg/TJ,148151861.676,kg +233b5719-bc06-3dc4-93d9-d31d5e46bcd2,SESCO,II.1.1,Salta,AR-A,annual,2018,gas oil combustion consumption by to the public,1999.35036,TJ,CH4,3.9,kg/TJ,7797.466404,kg +233b5719-bc06-3dc4-93d9-d31d5e46bcd2,SESCO,II.1.1,Salta,AR-A,annual,2018,gas oil combustion consumption by to the public,1999.35036,TJ,N2O,3.9,kg/TJ,7797.466404,kg +aebdfd78-ad07-36c5-803a-bc946ae8f3f4,SESCO,II.1.1,San Juan,AR-J,annual,2018,gas oil combustion consumption by to the public,890.57472,TJ,CO2,74100.0,kg/TJ,65991586.752,kg +f15e739d-31ac-3569-9661-51070906b2c0,SESCO,II.1.1,San Juan,AR-J,annual,2018,gas oil combustion consumption by to the public,890.57472,TJ,CH4,3.9,kg/TJ,3473.241408,kg +f15e739d-31ac-3569-9661-51070906b2c0,SESCO,II.1.1,San Juan,AR-J,annual,2018,gas oil combustion consumption by to the public,890.57472,TJ,N2O,3.9,kg/TJ,3473.241408,kg +2592d11c-82e2-3b8c-bce0-3186753f506e,SESCO,II.1.1,San Luis,AR-D,annual,2018,gas oil combustion consumption by to the public,799.73292,TJ,CO2,74100.0,kg/TJ,59260209.372,kg +31c9cf21-0f2d-30f2-9223-e8d6c2364872,SESCO,II.1.1,San Luis,AR-D,annual,2018,gas oil combustion consumption by to the public,799.73292,TJ,CH4,3.9,kg/TJ,3118.958388,kg +31c9cf21-0f2d-30f2-9223-e8d6c2364872,SESCO,II.1.1,San Luis,AR-D,annual,2018,gas oil combustion consumption by to the public,799.73292,TJ,N2O,3.9,kg/TJ,3118.958388,kg +60a4307e-1806-3da6-9d72-766dbb51118c,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2018,gas oil combustion consumption by to the public,1589.8218,TJ,CO2,74100.0,kg/TJ,117805795.38,kg +a8c6e669-a19e-3795-b413-021358261172,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2018,gas oil combustion consumption by to the public,1589.8218,TJ,CH4,3.9,kg/TJ,6200.30502,kg +a8c6e669-a19e-3795-b413-021358261172,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2018,gas oil combustion consumption by to the public,1589.8218,TJ,N2O,3.9,kg/TJ,6200.30502,kg +72e2af3c-b3a7-3b77-8775-00dee1c09917,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,gas oil combustion consumption by to the public,3895.65036,TJ,CO2,74100.0,kg/TJ,288667691.676,kg +c16ab2aa-47d1-36e9-9c50-8d8183bb69fb,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,gas oil combustion consumption by to the public,3895.65036,TJ,CH4,3.9,kg/TJ,15193.036404,kg +c16ab2aa-47d1-36e9-9c50-8d8183bb69fb,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,gas oil combustion consumption by to the public,3895.65036,TJ,N2O,3.9,kg/TJ,15193.036404,kg +50f2dc28-5760-3eaa-a061-6784d1d61ac2,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2018,gas oil combustion consumption by to the public,1060.91664,TJ,CO2,74100.0,kg/TJ,78613923.02399999,kg +97cb974f-5364-3265-be01-b34ffede7ca7,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2018,gas oil combustion consumption by to the public,1060.91664,TJ,CH4,3.9,kg/TJ,4137.574895999999,kg +97cb974f-5364-3265-be01-b34ffede7ca7,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2018,gas oil combustion consumption by to the public,1060.91664,TJ,N2O,3.9,kg/TJ,4137.574895999999,kg +69f5c0c9-b4c5-3eb0-83d3-02de648045f5,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2018,gas oil combustion consumption by to the public,451.64448,TJ,CO2,74100.0,kg/TJ,33466855.968,kg +bf27e825-05c7-3cf5-8526-da1cb8f149c9,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2018,gas oil combustion consumption by to the public,451.64448,TJ,CH4,3.9,kg/TJ,1761.413472,kg +bf27e825-05c7-3cf5-8526-da1cb8f149c9,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2018,gas oil combustion consumption by to the public,451.64448,TJ,N2O,3.9,kg/TJ,1761.413472,kg +0d6b994f-6807-3e81-88bd-f323bb987ce6,SESCO,II.1.1,Tucuman,AR-T,annual,2018,gas oil combustion consumption by to the public,1303.24572,TJ,CO2,74100.0,kg/TJ,96570507.852,kg +da41fbb8-43ab-34e4-aa80-c758cf95ac22,SESCO,II.1.1,Tucuman,AR-T,annual,2018,gas oil combustion consumption by to the public,1303.24572,TJ,CH4,3.9,kg/TJ,5082.658307999999,kg +da41fbb8-43ab-34e4-aa80-c758cf95ac22,SESCO,II.1.1,Tucuman,AR-T,annual,2018,gas oil combustion consumption by to the public,1303.24572,TJ,N2O,3.9,kg/TJ,5082.658307999999,kg +2e1a0c24-4097-31d8-8ef3-71ce5f0be252,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,jet kerosene combustion consumption by to the public,83.16173199999999,TJ,CO2,71500.0,kg/TJ,5946063.837999999,kg +6ff1fd79-67f1-38c2-9130-95cdf0054512,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,jet kerosene combustion consumption by to the public,83.16173199999999,TJ,CH4,0.5,kg/TJ,41.58086599999999,kg +65f89105-5a95-3d44-abb6-08f9e0496a26,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,jet kerosene combustion consumption by to the public,83.16173199999999,TJ,N2O,2.0,kg/TJ,166.32346399999997,kg +a8aba6a2-6fc5-3792-875d-09f07f4696dc,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,jet kerosene combustion consumption by to the public,2.5476929999999998,TJ,CO2,71500.0,kg/TJ,182160.0495,kg +3249eb2f-8d6d-3493-a830-95dcd2da4ac2,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,jet kerosene combustion consumption by to the public,2.5476929999999998,TJ,CH4,0.5,kg/TJ,1.2738464999999999,kg +a3241e36-b634-3fcd-86d0-5caa55920568,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,jet kerosene combustion consumption by to the public,2.5476929999999998,TJ,N2O,2.0,kg/TJ,5.0953859999999995,kg +e4c97ef5-eab2-31ef-ba84-a284b2452d65,SESCO,II.1.1,Catamarca,AR-K,annual,2018,jet kerosene combustion consumption by to the public,3.0509409999999995,TJ,CO2,71500.0,kg/TJ,218142.28149999995,kg +cd8647a0-804d-3c95-94fb-65afc83c18b5,SESCO,II.1.1,Catamarca,AR-K,annual,2018,jet kerosene combustion consumption by to the public,3.0509409999999995,TJ,CH4,0.5,kg/TJ,1.5254704999999997,kg +a1abc769-0c4e-3829-b693-049c7039a429,SESCO,II.1.1,Catamarca,AR-K,annual,2018,jet kerosene combustion consumption by to the public,3.0509409999999995,TJ,N2O,2.0,kg/TJ,6.101881999999999,kg +3385d1c6-e37c-3296-906c-71e956db602e,SESCO,II.1.1,Chubut,AR-U,annual,2018,jet kerosene combustion consumption by to the public,11.071455999999998,TJ,CO2,71500.0,kg/TJ,791609.1039999998,kg +66e5a8b1-3859-3668-a8a8-168855711ec9,SESCO,II.1.1,Chubut,AR-U,annual,2018,jet kerosene combustion consumption by to the public,11.071455999999998,TJ,CH4,0.5,kg/TJ,5.535727999999999,kg +eb67e5f7-18b3-3580-9302-03096b24a6a7,SESCO,II.1.1,Chubut,AR-U,annual,2018,jet kerosene combustion consumption by to the public,11.071455999999998,TJ,N2O,2.0,kg/TJ,22.142911999999995,kg +d84cd50b-631c-3d54-a251-d295e59538e8,SESCO,II.1.1,Corrientes,AR-W,annual,2018,jet kerosene combustion consumption by to the public,2.6420519999999996,TJ,CO2,71500.0,kg/TJ,188906.71799999996,kg +f35780fc-ed10-3b8f-a8b8-1deb9f7167c9,SESCO,II.1.1,Corrientes,AR-W,annual,2018,jet kerosene combustion consumption by to the public,2.6420519999999996,TJ,CH4,0.5,kg/TJ,1.3210259999999998,kg +d46c1090-1f0d-3f4d-8fa2-d5d84a4c9c15,SESCO,II.1.1,Corrientes,AR-W,annual,2018,jet kerosene combustion consumption by to the public,2.6420519999999996,TJ,N2O,2.0,kg/TJ,5.284103999999999,kg +d159cf76-1868-339d-bc13-db3d72bc34fc,SESCO,II.1.1,Córdoba,AR-X,annual,2018,jet kerosene combustion consumption by to the public,38.24684799999999,TJ,CO2,71500.0,kg/TJ,2734649.6319999993,kg +6d6e7e05-4f2b-35e9-9a99-ffb85bf6e7c4,SESCO,II.1.1,Córdoba,AR-X,annual,2018,jet kerosene combustion consumption by to the public,38.24684799999999,TJ,CH4,0.5,kg/TJ,19.123423999999996,kg +1da3dfba-d86e-3965-a95c-f9971cc57914,SESCO,II.1.1,Córdoba,AR-X,annual,2018,jet kerosene combustion consumption by to the public,38.24684799999999,TJ,N2O,2.0,kg/TJ,76.49369599999999,kg +6f3e5447-fb3d-3094-bd02-2c5c49eb7517,SESCO,II.1.1,Entre Rios,AR-E,annual,2018,jet kerosene combustion consumption by to the public,5.063933,TJ,CO2,71500.0,kg/TJ,362071.2095,kg +9dd9b8e5-64cc-36c1-82fc-5e015110654c,SESCO,II.1.1,Entre Rios,AR-E,annual,2018,jet kerosene combustion consumption by to the public,5.063933,TJ,CH4,0.5,kg/TJ,2.5319665,kg +62aedf5f-8c7e-32ea-a700-64daa72707ab,SESCO,II.1.1,Entre Rios,AR-E,annual,2018,jet kerosene combustion consumption by to the public,5.063933,TJ,N2O,2.0,kg/TJ,10.127866,kg +f905c3a9-7298-3479-8122-cf38af7484fa,SESCO,II.1.1,Jujuy,AR-Y,annual,2018,jet kerosene combustion consumption by to the public,3.6170949999999995,TJ,CO2,71500.0,kg/TJ,258622.29249999995,kg +6f5843d3-5e4e-36c1-afae-6ec8cf3b63ef,SESCO,II.1.1,Jujuy,AR-Y,annual,2018,jet kerosene combustion consumption by to the public,3.6170949999999995,TJ,CH4,0.5,kg/TJ,1.8085474999999998,kg +9bfc1836-bcad-328b-8ac3-801aac9088ad,SESCO,II.1.1,Jujuy,AR-Y,annual,2018,jet kerosene combustion consumption by to the public,3.6170949999999995,TJ,N2O,2.0,kg/TJ,7.234189999999999,kg +562e59b3-ce78-3949-84b9-c9edcd30c32b,SESCO,II.1.1,La Pampa,AR-L,annual,2018,jet kerosene combustion consumption by to the public,2.9565819999999996,TJ,CO2,71500.0,kg/TJ,211395.61299999998,kg +70afeff9-2cd3-31bf-9972-76512ae090d7,SESCO,II.1.1,La Pampa,AR-L,annual,2018,jet kerosene combustion consumption by to the public,2.9565819999999996,TJ,CH4,0.5,kg/TJ,1.4782909999999998,kg +25a0c0c5-3749-3096-862e-187c6d1f2829,SESCO,II.1.1,La Pampa,AR-L,annual,2018,jet kerosene combustion consumption by to the public,2.9565819999999996,TJ,N2O,2.0,kg/TJ,5.913163999999999,kg +29304c6a-d003-3c54-92f4-ec42fafa05ab,SESCO,II.1.1,La Rioja,AR-F,annual,2018,jet kerosene combustion consumption by to the public,1.1637609999999998,TJ,CO2,71500.0,kg/TJ,83208.91149999999,kg +bd5af3d3-48ea-3070-80d3-7c57cf2f5287,SESCO,II.1.1,La Rioja,AR-F,annual,2018,jet kerosene combustion consumption by to the public,1.1637609999999998,TJ,CH4,0.5,kg/TJ,0.5818804999999999,kg +d76b053c-9fec-3194-a930-45f197a8ca9d,SESCO,II.1.1,La Rioja,AR-F,annual,2018,jet kerosene combustion consumption by to the public,1.1637609999999998,TJ,N2O,2.0,kg/TJ,2.3275219999999996,kg +01c91d79-5eaa-38a3-9c5e-927c96ac0337,SESCO,II.1.1,Mendoza,AR-M,annual,2018,jet kerosene combustion consumption by to the public,13.336071999999998,TJ,CO2,71500.0,kg/TJ,953529.1479999998,kg +7f1978cd-4c52-3696-9a8b-690a129f869d,SESCO,II.1.1,Mendoza,AR-M,annual,2018,jet kerosene combustion consumption by to the public,13.336071999999998,TJ,CH4,0.5,kg/TJ,6.668035999999999,kg +995a2fe7-c0eb-39e5-b789-21d516e4ae86,SESCO,II.1.1,Mendoza,AR-M,annual,2018,jet kerosene combustion consumption by to the public,13.336071999999998,TJ,N2O,2.0,kg/TJ,26.672143999999996,kg +124eefa4-18b6-3792-a494-98492418ac6e,SESCO,II.1.1,Neuquén,AR-Q,annual,2018,jet kerosene combustion consumption by to the public,7.5487199999999985,TJ,CO2,71500.0,kg/TJ,539733.4799999999,kg +0427750f-077d-3f0b-97ad-00045e8ae15c,SESCO,II.1.1,Neuquén,AR-Q,annual,2018,jet kerosene combustion consumption by to the public,7.5487199999999985,TJ,CH4,0.5,kg/TJ,3.7743599999999993,kg +bd20e27b-3a3b-3192-8b5b-9427460133d5,SESCO,II.1.1,Neuquén,AR-Q,annual,2018,jet kerosene combustion consumption by to the public,7.5487199999999985,TJ,N2O,2.0,kg/TJ,15.097439999999997,kg +9adbf9b1-67a0-3a71-b173-a8fd48a48ed7,SESCO,II.1.1,Rio Negro,AR-R,annual,2018,jet kerosene combustion consumption by to the public,0.4717949999999999,TJ,CO2,71500.0,kg/TJ,33733.34249999999,kg +5ededb02-23db-38f0-9591-c297442fec42,SESCO,II.1.1,Rio Negro,AR-R,annual,2018,jet kerosene combustion consumption by to the public,0.4717949999999999,TJ,CH4,0.5,kg/TJ,0.23589749999999995,kg +b114a1c0-92dd-3b01-9867-17c0d629caf6,SESCO,II.1.1,Rio Negro,AR-R,annual,2018,jet kerosene combustion consumption by to the public,0.4717949999999999,TJ,N2O,2.0,kg/TJ,0.9435899999999998,kg +911543c6-73e7-3fab-aa30-d68f0cee846f,SESCO,II.1.1,San Juan,AR-J,annual,2018,jet kerosene combustion consumption by to the public,3.837265999999999,TJ,CO2,71500.0,kg/TJ,274364.5189999999,kg +adf53434-9774-3db4-8823-a18a3c2050b8,SESCO,II.1.1,San Juan,AR-J,annual,2018,jet kerosene combustion consumption by to the public,3.837265999999999,TJ,CH4,0.5,kg/TJ,1.9186329999999996,kg +192307bf-1bc9-31e6-bf4d-34377a5bbdf8,SESCO,II.1.1,San Juan,AR-J,annual,2018,jet kerosene combustion consumption by to the public,3.837265999999999,TJ,N2O,2.0,kg/TJ,7.674531999999998,kg +49bb66eb-2454-32f0-91b3-f3c6107bb043,SESCO,II.1.1,San Luis,AR-D,annual,2018,jet kerosene combustion consumption by to the public,5.976069999999999,TJ,CO2,71500.0,kg/TJ,427289.00499999995,kg +1f516550-c848-30d5-a8bf-7659708bad54,SESCO,II.1.1,San Luis,AR-D,annual,2018,jet kerosene combustion consumption by to the public,5.976069999999999,TJ,CH4,0.5,kg/TJ,2.9880349999999996,kg +cb4231a7-5656-3406-af37-270110093cfe,SESCO,II.1.1,San Luis,AR-D,annual,2018,jet kerosene combustion consumption by to the public,5.976069999999999,TJ,N2O,2.0,kg/TJ,11.952139999999998,kg +f17a5bd7-f3be-3828-a52c-d77dbde77b7a,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2018,jet kerosene combustion consumption by to the public,6.447864999999999,TJ,CO2,71500.0,kg/TJ,461022.3475,kg +cf207552-ff06-38a1-a31f-6a44697eea30,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2018,jet kerosene combustion consumption by to the public,6.447864999999999,TJ,CH4,0.5,kg/TJ,3.2239324999999996,kg +a2017b34-ca10-33c6-aaca-cd90c1b1e60b,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2018,jet kerosene combustion consumption by to the public,6.447864999999999,TJ,N2O,2.0,kg/TJ,12.895729999999999,kg +41f56485-5235-3d7f-9d04-48efa8c4b421,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,jet kerosene combustion consumption by to the public,21.199321999999995,TJ,CO2,71500.0,kg/TJ,1515751.5229999996,kg +2be70150-7b41-3a85-a3ba-668b248d0493,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,jet kerosene combustion consumption by to the public,21.199321999999995,TJ,CH4,0.5,kg/TJ,10.599660999999998,kg +d0461e75-10b7-3737-a4e8-e6d19f148fb8,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,jet kerosene combustion consumption by to the public,21.199321999999995,TJ,N2O,2.0,kg/TJ,42.39864399999999,kg +f8688855-50f7-3f9f-8293-66ea8eb367ec,SESCO,II.1.1,Tucuman,AR-T,annual,2018,jet kerosene combustion consumption by to the public,7.894702999999999,TJ,CO2,71500.0,kg/TJ,564471.2644999999,kg +c0f0c0c7-db01-377e-8c12-52e225d1ad46,SESCO,II.1.1,Tucuman,AR-T,annual,2018,jet kerosene combustion consumption by to the public,7.894702999999999,TJ,CH4,0.5,kg/TJ,3.9473514999999995,kg +b43ea530-09ac-3207-b37a-b2aeadf9a580,SESCO,II.1.1,Tucuman,AR-T,annual,2018,jet kerosene combustion consumption by to the public,7.894702999999999,TJ,N2O,2.0,kg/TJ,15.789405999999998,kg +c94eff81-af1d-347b-a186-3c3548deb972,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,gas oil combustion consumption by freight transport,10388.4732,TJ,CO2,74100.0,kg/TJ,769785864.12,kg +054af9c0-7d52-38d7-a1c7-bed99f267c6e,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,gas oil combustion consumption by freight transport,10388.4732,TJ,CH4,3.9,kg/TJ,40515.04548,kg +054af9c0-7d52-38d7-a1c7-bed99f267c6e,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,gas oil combustion consumption by freight transport,10388.4732,TJ,N2O,3.9,kg/TJ,40515.04548,kg +3047ae92-dbf4-3501-8f7e-394a61602794,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,gas oil combustion consumption by freight transport,3926.6052,TJ,CO2,74100.0,kg/TJ,290961445.32,kg +32c366c0-7ff5-3b5c-bf86-a32ccbde79d8,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,gas oil combustion consumption by freight transport,3926.6052,TJ,CH4,3.9,kg/TJ,15313.76028,kg +32c366c0-7ff5-3b5c-bf86-a32ccbde79d8,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,gas oil combustion consumption by freight transport,3926.6052,TJ,N2O,3.9,kg/TJ,15313.76028,kg +da858d5a-5fad-37d4-9ba9-9a7987325af9,SESCO,II.1.1,Catamarca,AR-K,annual,2018,gas oil combustion consumption by freight transport,19.07136,TJ,CO2,74100.0,kg/TJ,1413187.7759999998,kg +bab64f9a-ace9-35a4-b9b2-527ecef3acc8,SESCO,II.1.1,Catamarca,AR-K,annual,2018,gas oil combustion consumption by freight transport,19.07136,TJ,CH4,3.9,kg/TJ,74.37830399999999,kg +bab64f9a-ace9-35a4-b9b2-527ecef3acc8,SESCO,II.1.1,Catamarca,AR-K,annual,2018,gas oil combustion consumption by freight transport,19.07136,TJ,N2O,3.9,kg/TJ,74.37830399999999,kg +d6bdd996-64a0-33d0-b675-2a6f21afd26a,SESCO,II.1.1,Chaco,AR-H,annual,2018,gas oil combustion consumption by freight transport,282.02496,TJ,CO2,74100.0,kg/TJ,20898049.536000002,kg +ea653e7f-a40f-3001-90bc-48634f82e59e,SESCO,II.1.1,Chaco,AR-H,annual,2018,gas oil combustion consumption by freight transport,282.02496,TJ,CH4,3.9,kg/TJ,1099.897344,kg +ea653e7f-a40f-3001-90bc-48634f82e59e,SESCO,II.1.1,Chaco,AR-H,annual,2018,gas oil combustion consumption by freight transport,282.02496,TJ,N2O,3.9,kg/TJ,1099.897344,kg +83bc7810-da88-3990-8b57-7a76527eaf4e,SESCO,II.1.1,Chubut,AR-U,annual,2018,gas oil combustion consumption by freight transport,230.8068,TJ,CO2,74100.0,kg/TJ,17102783.88,kg +470e7973-3891-3cd4-b139-492b0206a216,SESCO,II.1.1,Chubut,AR-U,annual,2018,gas oil combustion consumption by freight transport,230.8068,TJ,CH4,3.9,kg/TJ,900.14652,kg +470e7973-3891-3cd4-b139-492b0206a216,SESCO,II.1.1,Chubut,AR-U,annual,2018,gas oil combustion consumption by freight transport,230.8068,TJ,N2O,3.9,kg/TJ,900.14652,kg +6b63cf73-9b44-362e-98bf-5032b2cb5ff7,SESCO,II.1.1,Corrientes,AR-W,annual,2018,gas oil combustion consumption by freight transport,401.00424,TJ,CO2,74100.0,kg/TJ,29714414.184,kg +0409d1f5-e0dc-3799-a03c-276500430e1c,SESCO,II.1.1,Corrientes,AR-W,annual,2018,gas oil combustion consumption by freight transport,401.00424,TJ,CH4,3.9,kg/TJ,1563.916536,kg +0409d1f5-e0dc-3799-a03c-276500430e1c,SESCO,II.1.1,Corrientes,AR-W,annual,2018,gas oil combustion consumption by freight transport,401.00424,TJ,N2O,3.9,kg/TJ,1563.916536,kg +b3ecb592-8c70-349b-bace-c56b97df9e2c,SESCO,II.1.1,Córdoba,AR-X,annual,2018,gas oil combustion consumption by freight transport,2907.51552,TJ,CO2,74100.0,kg/TJ,215446900.032,kg +03a4c51e-e973-3195-bfd3-aef222c05c41,SESCO,II.1.1,Córdoba,AR-X,annual,2018,gas oil combustion consumption by freight transport,2907.51552,TJ,CH4,3.9,kg/TJ,11339.310528,kg +03a4c51e-e973-3195-bfd3-aef222c05c41,SESCO,II.1.1,Córdoba,AR-X,annual,2018,gas oil combustion consumption by freight transport,2907.51552,TJ,N2O,3.9,kg/TJ,11339.310528,kg +4ec309ba-3a85-375f-928a-487075abb59d,SESCO,II.1.1,Entre Rios,AR-E,annual,2018,gas oil combustion consumption by freight transport,657.5646,TJ,CO2,74100.0,kg/TJ,48725536.86,kg +5bea44f3-a4b6-3f3f-9f55-250f3daaf1d5,SESCO,II.1.1,Entre Rios,AR-E,annual,2018,gas oil combustion consumption by freight transport,657.5646,TJ,CH4,3.9,kg/TJ,2564.50194,kg +5bea44f3-a4b6-3f3f-9f55-250f3daaf1d5,SESCO,II.1.1,Entre Rios,AR-E,annual,2018,gas oil combustion consumption by freight transport,657.5646,TJ,N2O,3.9,kg/TJ,2564.50194,kg +d49c1863-7c9a-3ad7-a25b-3eca450958ef,SESCO,II.1.1,Formosa,AR-P,annual,2018,gas oil combustion consumption by freight transport,35.68656,TJ,CO2,74100.0,kg/TJ,2644374.096,kg +1a50390a-767a-3e32-b642-3c6d2e2c5baf,SESCO,II.1.1,Formosa,AR-P,annual,2018,gas oil combustion consumption by freight transport,35.68656,TJ,CH4,3.9,kg/TJ,139.177584,kg +1a50390a-767a-3e32-b642-3c6d2e2c5baf,SESCO,II.1.1,Formosa,AR-P,annual,2018,gas oil combustion consumption by freight transport,35.68656,TJ,N2O,3.9,kg/TJ,139.177584,kg +2a7ec581-1d67-37d3-a25a-573d4e7b6bd4,SESCO,II.1.1,Jujuy,AR-Y,annual,2018,gas oil combustion consumption by freight transport,185.44008,TJ,CO2,74100.0,kg/TJ,13741109.928,kg +29204e9f-6e46-354a-a570-1e544f036238,SESCO,II.1.1,Jujuy,AR-Y,annual,2018,gas oil combustion consumption by freight transport,185.44008,TJ,CH4,3.9,kg/TJ,723.216312,kg +29204e9f-6e46-354a-a570-1e544f036238,SESCO,II.1.1,Jujuy,AR-Y,annual,2018,gas oil combustion consumption by freight transport,185.44008,TJ,N2O,3.9,kg/TJ,723.216312,kg +59cb25b3-ba78-33f5-b918-6a6bb813474f,SESCO,II.1.1,La Pampa,AR-L,annual,2018,gas oil combustion consumption by freight transport,169.58339999999998,TJ,CO2,74100.0,kg/TJ,12566129.94,kg +3afc2437-6490-3786-89d1-ad6d186d7dd6,SESCO,II.1.1,La Pampa,AR-L,annual,2018,gas oil combustion consumption by freight transport,169.58339999999998,TJ,CH4,3.9,kg/TJ,661.3752599999999,kg +3afc2437-6490-3786-89d1-ad6d186d7dd6,SESCO,II.1.1,La Pampa,AR-L,annual,2018,gas oil combustion consumption by freight transport,169.58339999999998,TJ,N2O,3.9,kg/TJ,661.3752599999999,kg +8963be44-6d49-3bd5-94d8-9c0801a3a8dc,SESCO,II.1.1,La Rioja,AR-F,annual,2018,gas oil combustion consumption by freight transport,9.24672,TJ,CO2,74100.0,kg/TJ,685181.9519999999,kg +f67ea209-a3b6-3b9a-a5e6-539a2cb97218,SESCO,II.1.1,La Rioja,AR-F,annual,2018,gas oil combustion consumption by freight transport,9.24672,TJ,CH4,3.9,kg/TJ,36.062208,kg +f67ea209-a3b6-3b9a-a5e6-539a2cb97218,SESCO,II.1.1,La Rioja,AR-F,annual,2018,gas oil combustion consumption by freight transport,9.24672,TJ,N2O,3.9,kg/TJ,36.062208,kg +c1503b26-268b-3e2f-bf2c-c39da18f4775,SESCO,II.1.1,Mendoza,AR-M,annual,2018,gas oil combustion consumption by freight transport,1995.88284,TJ,CO2,74100.0,kg/TJ,147894918.444,kg +8da38541-1683-3653-a060-9c0548a5d683,SESCO,II.1.1,Mendoza,AR-M,annual,2018,gas oil combustion consumption by freight transport,1995.88284,TJ,CH4,3.9,kg/TJ,7783.943076,kg +8da38541-1683-3653-a060-9c0548a5d683,SESCO,II.1.1,Mendoza,AR-M,annual,2018,gas oil combustion consumption by freight transport,1995.88284,TJ,N2O,3.9,kg/TJ,7783.943076,kg +122a061e-67ff-3e64-aec0-1ee0a87dea3c,SESCO,II.1.1,Misiones,AR-N,annual,2018,gas oil combustion consumption by freight transport,1004.24436,TJ,CO2,74100.0,kg/TJ,74414507.076,kg +2f03c016-60ed-36a5-9806-de3f1c4c8de0,SESCO,II.1.1,Misiones,AR-N,annual,2018,gas oil combustion consumption by freight transport,1004.24436,TJ,CH4,3.9,kg/TJ,3916.553004,kg +2f03c016-60ed-36a5-9806-de3f1c4c8de0,SESCO,II.1.1,Misiones,AR-N,annual,2018,gas oil combustion consumption by freight transport,1004.24436,TJ,N2O,3.9,kg/TJ,3916.553004,kg +940f153c-d29c-3f71-8961-c198e1175047,SESCO,II.1.1,Neuquén,AR-Q,annual,2018,gas oil combustion consumption by freight transport,965.37924,TJ,CO2,74100.0,kg/TJ,71534601.684,kg +1bdb174f-ccc2-3549-bb1d-7dbc76e35a9e,SESCO,II.1.1,Neuquén,AR-Q,annual,2018,gas oil combustion consumption by freight transport,965.37924,TJ,CH4,3.9,kg/TJ,3764.9790359999997,kg +1bdb174f-ccc2-3549-bb1d-7dbc76e35a9e,SESCO,II.1.1,Neuquén,AR-Q,annual,2018,gas oil combustion consumption by freight transport,965.37924,TJ,N2O,3.9,kg/TJ,3764.9790359999997,kg +6f14fe47-ba2f-3071-a2bd-5a5feb4a6ea7,SESCO,II.1.1,Rio Negro,AR-R,annual,2018,gas oil combustion consumption by freight transport,416.68032,TJ,CO2,74100.0,kg/TJ,30876011.712,kg +b693f7a4-7cf1-3dac-9fd5-5cdedac88b45,SESCO,II.1.1,Rio Negro,AR-R,annual,2018,gas oil combustion consumption by freight transport,416.68032,TJ,CH4,3.9,kg/TJ,1625.053248,kg +b693f7a4-7cf1-3dac-9fd5-5cdedac88b45,SESCO,II.1.1,Rio Negro,AR-R,annual,2018,gas oil combustion consumption by freight transport,416.68032,TJ,N2O,3.9,kg/TJ,1625.053248,kg +16b34165-007d-3ba7-80df-b5daa4327c43,SESCO,II.1.1,Salta,AR-A,annual,2018,gas oil combustion consumption by freight transport,349.31651999999997,TJ,CO2,74100.0,kg/TJ,25884354.132,kg +363d378b-00d3-3e46-bb3a-f207845fdf35,SESCO,II.1.1,Salta,AR-A,annual,2018,gas oil combustion consumption by freight transport,349.31651999999997,TJ,CH4,3.9,kg/TJ,1362.334428,kg +363d378b-00d3-3e46-bb3a-f207845fdf35,SESCO,II.1.1,Salta,AR-A,annual,2018,gas oil combustion consumption by freight transport,349.31651999999997,TJ,N2O,3.9,kg/TJ,1362.334428,kg +88197d66-4709-399f-81d2-202040eb21f3,SESCO,II.1.1,San Juan,AR-J,annual,2018,gas oil combustion consumption by freight transport,161.92596,TJ,CO2,74100.0,kg/TJ,11998713.636,kg +ed1098a9-70ff-30a9-b7c8-baebbcf60592,SESCO,II.1.1,San Juan,AR-J,annual,2018,gas oil combustion consumption by freight transport,161.92596,TJ,CH4,3.9,kg/TJ,631.511244,kg +ed1098a9-70ff-30a9-b7c8-baebbcf60592,SESCO,II.1.1,San Juan,AR-J,annual,2018,gas oil combustion consumption by freight transport,161.92596,TJ,N2O,3.9,kg/TJ,631.511244,kg +df35e3d3-9945-3794-ac52-c384852b200d,SESCO,II.1.1,San Luis,AR-D,annual,2018,gas oil combustion consumption by freight transport,216.9006,TJ,CO2,74100.0,kg/TJ,16072334.459999999,kg +2d5fb4b8-8b83-39a2-b8ac-ce659c71ab58,SESCO,II.1.1,San Luis,AR-D,annual,2018,gas oil combustion consumption by freight transport,216.9006,TJ,CH4,3.9,kg/TJ,845.91234,kg +2d5fb4b8-8b83-39a2-b8ac-ce659c71ab58,SESCO,II.1.1,San Luis,AR-D,annual,2018,gas oil combustion consumption by freight transport,216.9006,TJ,N2O,3.9,kg/TJ,845.91234,kg +163b9ab9-4524-3001-83ce-55317c4bb6b1,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2018,gas oil combustion consumption by freight transport,182.83944,TJ,CO2,74100.0,kg/TJ,13548402.503999999,kg +ed7c8c73-bfd5-355c-aabc-926786f41e6a,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2018,gas oil combustion consumption by freight transport,182.83944,TJ,CH4,3.9,kg/TJ,713.073816,kg +ed7c8c73-bfd5-355c-aabc-926786f41e6a,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2018,gas oil combustion consumption by freight transport,182.83944,TJ,N2O,3.9,kg/TJ,713.073816,kg +2273cb64-17b0-3712-a497-27f272e658ab,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,gas oil combustion consumption by freight transport,2662.044,TJ,CO2,74100.0,kg/TJ,197257460.39999998,kg +acea3932-4197-39d5-b2d4-82bbaec599bd,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,gas oil combustion consumption by freight transport,2662.044,TJ,CH4,3.9,kg/TJ,10381.971599999999,kg +acea3932-4197-39d5-b2d4-82bbaec599bd,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,gas oil combustion consumption by freight transport,2662.044,TJ,N2O,3.9,kg/TJ,10381.971599999999,kg +6dba6743-e9e7-3eb9-b277-bad160f63672,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2018,gas oil combustion consumption by freight transport,263.24255999999997,TJ,CO2,74100.0,kg/TJ,19506273.696,kg +c10ab71d-75e9-341c-b7cc-1c8678306e58,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2018,gas oil combustion consumption by freight transport,263.24255999999997,TJ,CH4,3.9,kg/TJ,1026.6459839999998,kg +c10ab71d-75e9-341c-b7cc-1c8678306e58,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2018,gas oil combustion consumption by freight transport,263.24255999999997,TJ,N2O,3.9,kg/TJ,1026.6459839999998,kg +891265cd-3e97-3888-b9a0-cb057e42213c,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2018,gas oil combustion consumption by freight transport,354.08436,TJ,CO2,74100.0,kg/TJ,26237651.076,kg +227a40ab-9bd7-33b3-a4e6-df6b77a7a8c3,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2018,gas oil combustion consumption by freight transport,354.08436,TJ,CH4,3.9,kg/TJ,1380.929004,kg +227a40ab-9bd7-33b3-a4e6-df6b77a7a8c3,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2018,gas oil combustion consumption by freight transport,354.08436,TJ,N2O,3.9,kg/TJ,1380.929004,kg +7b868224-00c9-31b0-87c1-6062415b9377,SESCO,II.1.1,Tucuman,AR-T,annual,2018,gas oil combustion consumption by freight transport,672.77112,TJ,CO2,74100.0,kg/TJ,49852339.992,kg +77d44174-cdc2-39f8-acdb-0f365ea45f91,SESCO,II.1.1,Tucuman,AR-T,annual,2018,gas oil combustion consumption by freight transport,672.77112,TJ,CH4,3.9,kg/TJ,2623.8073679999998,kg +77d44174-cdc2-39f8-acdb-0f365ea45f91,SESCO,II.1.1,Tucuman,AR-T,annual,2018,gas oil combustion consumption by freight transport,672.77112,TJ,N2O,3.9,kg/TJ,2623.8073679999998,kg +fb898b42-9c5b-3371-91f3-dd370656b855,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,gas oil combustion consumption by freight transport,1980.71244,TJ,CO2,74100.0,kg/TJ,146770791.804,kg +9bd49b0d-d7a0-3aa1-a53b-db9c653c9ded,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,gas oil combustion consumption by freight transport,1980.71244,TJ,CH4,3.9,kg/TJ,7724.778516,kg +9bd49b0d-d7a0-3aa1-a53b-db9c653c9ded,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,gas oil combustion consumption by freight transport,1980.71244,TJ,N2O,3.9,kg/TJ,7724.778516,kg +0a3faf6c-f70b-30eb-9fcf-bceca858d6ab,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,gas oil combustion consumption by freight transport,2029.98012,TJ,CO2,74100.0,kg/TJ,150421526.892,kg +ef8dba0e-4f86-3dd3-98e1-837dd72025a4,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,gas oil combustion consumption by freight transport,2029.98012,TJ,CH4,3.9,kg/TJ,7916.922468,kg +ef8dba0e-4f86-3dd3-98e1-837dd72025a4,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,gas oil combustion consumption by freight transport,2029.98012,TJ,N2O,3.9,kg/TJ,7916.922468,kg +4a3b49f4-0faf-39b7-957b-e465fb35403e,SESCO,II.1.1,Catamarca,AR-K,annual,2018,gas oil combustion consumption by freight transport,7.98252,TJ,CO2,74100.0,kg/TJ,591504.732,kg +6c88a9b4-b66a-3afa-83cf-8a821eb3df6c,SESCO,II.1.1,Catamarca,AR-K,annual,2018,gas oil combustion consumption by freight transport,7.98252,TJ,CH4,3.9,kg/TJ,31.131828,kg +6c88a9b4-b66a-3afa-83cf-8a821eb3df6c,SESCO,II.1.1,Catamarca,AR-K,annual,2018,gas oil combustion consumption by freight transport,7.98252,TJ,N2O,3.9,kg/TJ,31.131828,kg +2e56a203-fc02-3f27-b4b5-e4d60b95d99e,SESCO,II.1.1,Chaco,AR-H,annual,2018,gas oil combustion consumption by freight transport,98.89656,TJ,CO2,74100.0,kg/TJ,7328235.096,kg +dc0fe1ff-4566-3ba7-86f8-8e7a7351ae1c,SESCO,II.1.1,Chaco,AR-H,annual,2018,gas oil combustion consumption by freight transport,98.89656,TJ,CH4,3.9,kg/TJ,385.696584,kg +dc0fe1ff-4566-3ba7-86f8-8e7a7351ae1c,SESCO,II.1.1,Chaco,AR-H,annual,2018,gas oil combustion consumption by freight transport,98.89656,TJ,N2O,3.9,kg/TJ,385.696584,kg +14b11f45-7d02-37e2-85a6-951bcb31c784,SESCO,II.1.1,Chubut,AR-U,annual,2018,gas oil combustion consumption by freight transport,221.9574,TJ,CO2,74100.0,kg/TJ,16447043.34,kg +2ef0b127-5a67-3ac8-b7c8-570aba7931cb,SESCO,II.1.1,Chubut,AR-U,annual,2018,gas oil combustion consumption by freight transport,221.9574,TJ,CH4,3.9,kg/TJ,865.63386,kg +2ef0b127-5a67-3ac8-b7c8-570aba7931cb,SESCO,II.1.1,Chubut,AR-U,annual,2018,gas oil combustion consumption by freight transport,221.9574,TJ,N2O,3.9,kg/TJ,865.63386,kg +fc2edacd-49a6-34c0-918c-83cc2a633e7b,SESCO,II.1.1,Corrientes,AR-W,annual,2018,gas oil combustion consumption by freight transport,92.86452,TJ,CO2,74100.0,kg/TJ,6881260.932,kg +76539b4d-c791-35b7-9039-f1df37a4454f,SESCO,II.1.1,Corrientes,AR-W,annual,2018,gas oil combustion consumption by freight transport,92.86452,TJ,CH4,3.9,kg/TJ,362.171628,kg +76539b4d-c791-35b7-9039-f1df37a4454f,SESCO,II.1.1,Corrientes,AR-W,annual,2018,gas oil combustion consumption by freight transport,92.86452,TJ,N2O,3.9,kg/TJ,362.171628,kg +7edf2864-2ab4-32a6-bd52-4d88912e457a,SESCO,II.1.1,Córdoba,AR-X,annual,2018,gas oil combustion consumption by freight transport,336.53004,TJ,CO2,74100.0,kg/TJ,24936875.963999998,kg +aadec96d-5014-3aa7-a997-1cf02e0a660e,SESCO,II.1.1,Córdoba,AR-X,annual,2018,gas oil combustion consumption by freight transport,336.53004,TJ,CH4,3.9,kg/TJ,1312.467156,kg +aadec96d-5014-3aa7-a997-1cf02e0a660e,SESCO,II.1.1,Córdoba,AR-X,annual,2018,gas oil combustion consumption by freight transport,336.53004,TJ,N2O,3.9,kg/TJ,1312.467156,kg +94728213-1d59-375b-8080-3dffdb9ec09b,SESCO,II.1.1,Entre Rios,AR-E,annual,2018,gas oil combustion consumption by freight transport,154.66584,TJ,CO2,74100.0,kg/TJ,11460738.744,kg +f9fc3c60-800f-361c-b948-d97b060a8338,SESCO,II.1.1,Entre Rios,AR-E,annual,2018,gas oil combustion consumption by freight transport,154.66584,TJ,CH4,3.9,kg/TJ,603.196776,kg +f9fc3c60-800f-361c-b948-d97b060a8338,SESCO,II.1.1,Entre Rios,AR-E,annual,2018,gas oil combustion consumption by freight transport,154.66584,TJ,N2O,3.9,kg/TJ,603.196776,kg +cd7a7359-8bee-325b-88f3-448cf8fba552,SESCO,II.1.1,Formosa,AR-P,annual,2018,gas oil combustion consumption by freight transport,8.41596,TJ,CO2,74100.0,kg/TJ,623622.636,kg +33ad741f-eb13-31fa-ab45-5c2dce7b4aa1,SESCO,II.1.1,Formosa,AR-P,annual,2018,gas oil combustion consumption by freight transport,8.41596,TJ,CH4,3.9,kg/TJ,32.822244,kg +33ad741f-eb13-31fa-ab45-5c2dce7b4aa1,SESCO,II.1.1,Formosa,AR-P,annual,2018,gas oil combustion consumption by freight transport,8.41596,TJ,N2O,3.9,kg/TJ,32.822244,kg +a1f3e559-9f3b-38f7-8350-3ed0ba81d8d7,SESCO,II.1.1,Jujuy,AR-Y,annual,2018,gas oil combustion consumption by freight transport,17.662679999999998,TJ,CO2,74100.0,kg/TJ,1308804.5879999998,kg +77f695b0-4297-3962-80f0-c8bd469f9228,SESCO,II.1.1,Jujuy,AR-Y,annual,2018,gas oil combustion consumption by freight transport,17.662679999999998,TJ,CH4,3.9,kg/TJ,68.884452,kg +77f695b0-4297-3962-80f0-c8bd469f9228,SESCO,II.1.1,Jujuy,AR-Y,annual,2018,gas oil combustion consumption by freight transport,17.662679999999998,TJ,N2O,3.9,kg/TJ,68.884452,kg +bf49ff3e-ebc7-3631-8088-169e4421ae15,SESCO,II.1.1,La Pampa,AR-L,annual,2018,gas oil combustion consumption by freight transport,52.87968,TJ,CO2,74100.0,kg/TJ,3918384.288,kg +f9766f3b-de5c-31fe-9ef9-3a37cdfe4725,SESCO,II.1.1,La Pampa,AR-L,annual,2018,gas oil combustion consumption by freight transport,52.87968,TJ,CH4,3.9,kg/TJ,206.230752,kg +f9766f3b-de5c-31fe-9ef9-3a37cdfe4725,SESCO,II.1.1,La Pampa,AR-L,annual,2018,gas oil combustion consumption by freight transport,52.87968,TJ,N2O,3.9,kg/TJ,206.230752,kg +8ea3db78-e602-3503-8736-f5a9dcaeaba3,SESCO,II.1.1,La Rioja,AR-F,annual,2018,gas oil combustion consumption by freight transport,8.59656,TJ,CO2,74100.0,kg/TJ,637005.096,kg +93d11a20-0da4-309d-aa46-00c7ac7cb52e,SESCO,II.1.1,La Rioja,AR-F,annual,2018,gas oil combustion consumption by freight transport,8.59656,TJ,CH4,3.9,kg/TJ,33.526584,kg +93d11a20-0da4-309d-aa46-00c7ac7cb52e,SESCO,II.1.1,La Rioja,AR-F,annual,2018,gas oil combustion consumption by freight transport,8.59656,TJ,N2O,3.9,kg/TJ,33.526584,kg +e6e8cb86-38f5-396c-8c74-06d46a38c613,SESCO,II.1.1,Mendoza,AR-M,annual,2018,gas oil combustion consumption by freight transport,372.90288,TJ,CO2,74100.0,kg/TJ,27632103.408,kg +9280f742-f31d-31d3-bcec-183df993f035,SESCO,II.1.1,Mendoza,AR-M,annual,2018,gas oil combustion consumption by freight transport,372.90288,TJ,CH4,3.9,kg/TJ,1454.321232,kg +9280f742-f31d-31d3-bcec-183df993f035,SESCO,II.1.1,Mendoza,AR-M,annual,2018,gas oil combustion consumption by freight transport,372.90288,TJ,N2O,3.9,kg/TJ,1454.321232,kg +6fa33938-ee8b-37aa-ba5a-8dc815e2ede1,SESCO,II.1.1,Misiones,AR-N,annual,2018,gas oil combustion consumption by freight transport,130.79052,TJ,CO2,74100.0,kg/TJ,9691577.532,kg +e453b4bf-e474-318c-9200-de7af6753664,SESCO,II.1.1,Misiones,AR-N,annual,2018,gas oil combustion consumption by freight transport,130.79052,TJ,CH4,3.9,kg/TJ,510.08302799999996,kg +e453b4bf-e474-318c-9200-de7af6753664,SESCO,II.1.1,Misiones,AR-N,annual,2018,gas oil combustion consumption by freight transport,130.79052,TJ,N2O,3.9,kg/TJ,510.08302799999996,kg +2bf55910-3173-3911-ae82-7b44e111f91e,SESCO,II.1.1,Neuquén,AR-Q,annual,2018,gas oil combustion consumption by freight transport,724.7478,TJ,CO2,74100.0,kg/TJ,53703811.98,kg +632a189c-4a49-3645-97cf-766b5f93530b,SESCO,II.1.1,Neuquén,AR-Q,annual,2018,gas oil combustion consumption by freight transport,724.7478,TJ,CH4,3.9,kg/TJ,2826.51642,kg +632a189c-4a49-3645-97cf-766b5f93530b,SESCO,II.1.1,Neuquén,AR-Q,annual,2018,gas oil combustion consumption by freight transport,724.7478,TJ,N2O,3.9,kg/TJ,2826.51642,kg +f7923f4f-523a-3a85-b769-61ad927efa19,SESCO,II.1.1,Rio Negro,AR-R,annual,2018,gas oil combustion consumption by freight transport,174.60408,TJ,CO2,74100.0,kg/TJ,12938162.328000002,kg +bd322a4b-d348-313e-80b3-a98ae65b52af,SESCO,II.1.1,Rio Negro,AR-R,annual,2018,gas oil combustion consumption by freight transport,174.60408,TJ,CH4,3.9,kg/TJ,680.955912,kg +bd322a4b-d348-313e-80b3-a98ae65b52af,SESCO,II.1.1,Rio Negro,AR-R,annual,2018,gas oil combustion consumption by freight transport,174.60408,TJ,N2O,3.9,kg/TJ,680.955912,kg +15815f81-52d3-3b3c-8e5a-92c6c5be9f08,SESCO,II.1.1,Salta,AR-A,annual,2018,gas oil combustion consumption by freight transport,123.02472,TJ,CO2,74100.0,kg/TJ,9116131.752,kg +dc4c65fe-8cf7-30b2-9ed4-fa7816500639,SESCO,II.1.1,Salta,AR-A,annual,2018,gas oil combustion consumption by freight transport,123.02472,TJ,CH4,3.9,kg/TJ,479.796408,kg +dc4c65fe-8cf7-30b2-9ed4-fa7816500639,SESCO,II.1.1,Salta,AR-A,annual,2018,gas oil combustion consumption by freight transport,123.02472,TJ,N2O,3.9,kg/TJ,479.796408,kg +f644c5fe-b207-3081-bcb5-8f6390720ec0,SESCO,II.1.1,San Juan,AR-J,annual,2018,gas oil combustion consumption by freight transport,20.37168,TJ,CO2,74100.0,kg/TJ,1509541.4880000001,kg +cc005cfd-187f-37f9-a48d-9dc0f7e4e106,SESCO,II.1.1,San Juan,AR-J,annual,2018,gas oil combustion consumption by freight transport,20.37168,TJ,CH4,3.9,kg/TJ,79.449552,kg +cc005cfd-187f-37f9-a48d-9dc0f7e4e106,SESCO,II.1.1,San Juan,AR-J,annual,2018,gas oil combustion consumption by freight transport,20.37168,TJ,N2O,3.9,kg/TJ,79.449552,kg +c40ca4f7-9889-3d9c-9306-b01b746f8dd6,SESCO,II.1.1,San Luis,AR-D,annual,2018,gas oil combustion consumption by freight transport,45.83628,TJ,CO2,74100.0,kg/TJ,3396468.348,kg +28684758-4389-39d7-aa8c-ae37a843b94a,SESCO,II.1.1,San Luis,AR-D,annual,2018,gas oil combustion consumption by freight transport,45.83628,TJ,CH4,3.9,kg/TJ,178.761492,kg +28684758-4389-39d7-aa8c-ae37a843b94a,SESCO,II.1.1,San Luis,AR-D,annual,2018,gas oil combustion consumption by freight transport,45.83628,TJ,N2O,3.9,kg/TJ,178.761492,kg +2afdfea8-f7cd-32d7-acdc-6d0155ff3f73,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2018,gas oil combustion consumption by freight transport,78.16368,TJ,CO2,74100.0,kg/TJ,5791928.688,kg +e50e38b2-313e-348a-a21c-9999d5a4ecfb,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2018,gas oil combustion consumption by freight transport,78.16368,TJ,CH4,3.9,kg/TJ,304.838352,kg +e50e38b2-313e-348a-a21c-9999d5a4ecfb,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2018,gas oil combustion consumption by freight transport,78.16368,TJ,N2O,3.9,kg/TJ,304.838352,kg +1d3bc3db-bbd3-3883-824b-8cfdc1d7722e,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,gas oil combustion consumption by freight transport,512.43444,TJ,CO2,74100.0,kg/TJ,37971392.004,kg +e8cc632a-4cb4-3822-a936-9a2e0792409d,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,gas oil combustion consumption by freight transport,512.43444,TJ,CH4,3.9,kg/TJ,1998.494316,kg +e8cc632a-4cb4-3822-a936-9a2e0792409d,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,gas oil combustion consumption by freight transport,512.43444,TJ,N2O,3.9,kg/TJ,1998.494316,kg +2fe518dc-097d-3a36-86a2-2f24b31ec6dc,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2018,gas oil combustion consumption by freight transport,33.84444,TJ,CO2,74100.0,kg/TJ,2507873.0039999997,kg +cfc13635-9f76-3580-8cbf-4071b1a3f9fe,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2018,gas oil combustion consumption by freight transport,33.84444,TJ,CH4,3.9,kg/TJ,131.993316,kg +cfc13635-9f76-3580-8cbf-4071b1a3f9fe,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2018,gas oil combustion consumption by freight transport,33.84444,TJ,N2O,3.9,kg/TJ,131.993316,kg +7d3db586-6927-3789-a590-1a2c84ce7885,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2018,gas oil combustion consumption by freight transport,72.56508,TJ,CO2,74100.0,kg/TJ,5377072.427999999,kg +fd14ae38-3308-3cc2-a5f1-c8ebe9f68efc,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2018,gas oil combustion consumption by freight transport,72.56508,TJ,CH4,3.9,kg/TJ,283.003812,kg +fd14ae38-3308-3cc2-a5f1-c8ebe9f68efc,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2018,gas oil combustion consumption by freight transport,72.56508,TJ,N2O,3.9,kg/TJ,283.003812,kg +b631b6ff-00e0-3272-a08e-36da833de8cc,SESCO,II.1.1,Tucuman,AR-T,annual,2018,gas oil combustion consumption by freight transport,105.32592,TJ,CO2,74100.0,kg/TJ,7804650.671999999,kg +3023a29c-e9b8-32e0-a427-f8ec4c38c472,SESCO,II.1.1,Tucuman,AR-T,annual,2018,gas oil combustion consumption by freight transport,105.32592,TJ,CH4,3.9,kg/TJ,410.77108799999996,kg +3023a29c-e9b8-32e0-a427-f8ec4c38c472,SESCO,II.1.1,Tucuman,AR-T,annual,2018,gas oil combustion consumption by freight transport,105.32592,TJ,N2O,3.9,kg/TJ,410.77108799999996,kg +c3ad58a2-aec0-3777-80ca-151aede3036e,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,gas oil combustion consumption by public passenger transport,8894.44164,TJ,CO2,74100.0,kg/TJ,659078125.5239999,kg +9d530830-c6eb-3620-aa4c-bcbcdc1c9472,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,gas oil combustion consumption by public passenger transport,8894.44164,TJ,CH4,3.9,kg/TJ,34688.322395999996,kg +9d530830-c6eb-3620-aa4c-bcbcdc1c9472,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,gas oil combustion consumption by public passenger transport,8894.44164,TJ,N2O,3.9,kg/TJ,34688.322395999996,kg +07488af6-4cfa-3ea6-ab26-c55184d7e73a,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,gas oil combustion consumption by public passenger transport,1832.33148,TJ,CO2,74100.0,kg/TJ,135775762.668,kg +a1616035-cecd-3313-8d49-ac17d0ae202b,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,gas oil combustion consumption by public passenger transport,1832.33148,TJ,CH4,3.9,kg/TJ,7146.092772,kg +a1616035-cecd-3313-8d49-ac17d0ae202b,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,gas oil combustion consumption by public passenger transport,1832.33148,TJ,N2O,3.9,kg/TJ,7146.092772,kg +de9d9b17-cc47-3cb4-9b99-0c1a9cb0ab2e,SESCO,II.1.1,Catamarca,AR-K,annual,2018,gas oil combustion consumption by public passenger transport,188.61864,TJ,CO2,74100.0,kg/TJ,13976641.224,kg +2cf1c0c0-2b58-3028-b331-1d3b67bfb18a,SESCO,II.1.1,Catamarca,AR-K,annual,2018,gas oil combustion consumption by public passenger transport,188.61864,TJ,CH4,3.9,kg/TJ,735.612696,kg +2cf1c0c0-2b58-3028-b331-1d3b67bfb18a,SESCO,II.1.1,Catamarca,AR-K,annual,2018,gas oil combustion consumption by public passenger transport,188.61864,TJ,N2O,3.9,kg/TJ,735.612696,kg +6176932a-5259-3e2c-98b5-63433c5dec93,SESCO,II.1.1,Chaco,AR-H,annual,2018,gas oil combustion consumption by public passenger transport,441.63924,TJ,CO2,74100.0,kg/TJ,32725467.683999997,kg +3fd6059f-0888-3946-989d-d9568b1338b7,SESCO,II.1.1,Chaco,AR-H,annual,2018,gas oil combustion consumption by public passenger transport,441.63924,TJ,CH4,3.9,kg/TJ,1722.393036,kg +3fd6059f-0888-3946-989d-d9568b1338b7,SESCO,II.1.1,Chaco,AR-H,annual,2018,gas oil combustion consumption by public passenger transport,441.63924,TJ,N2O,3.9,kg/TJ,1722.393036,kg +5741d001-4bb8-3b09-bd3d-232cbecc03e4,SESCO,II.1.1,Chubut,AR-U,annual,2018,gas oil combustion consumption by public passenger transport,105.79548,TJ,CO2,74100.0,kg/TJ,7839445.068,kg +25edec06-a68b-385e-8a9f-370acb254dcf,SESCO,II.1.1,Chubut,AR-U,annual,2018,gas oil combustion consumption by public passenger transport,105.79548,TJ,CH4,3.9,kg/TJ,412.602372,kg +25edec06-a68b-385e-8a9f-370acb254dcf,SESCO,II.1.1,Chubut,AR-U,annual,2018,gas oil combustion consumption by public passenger transport,105.79548,TJ,N2O,3.9,kg/TJ,412.602372,kg +35e77b2a-6ab9-3411-af93-ea7079b9a395,SESCO,II.1.1,Corrientes,AR-W,annual,2018,gas oil combustion consumption by public passenger transport,487.2588,TJ,CO2,74100.0,kg/TJ,36105877.08,kg +22879a0a-ec93-360e-ad2b-050a4c4a1321,SESCO,II.1.1,Corrientes,AR-W,annual,2018,gas oil combustion consumption by public passenger transport,487.2588,TJ,CH4,3.9,kg/TJ,1900.30932,kg +22879a0a-ec93-360e-ad2b-050a4c4a1321,SESCO,II.1.1,Corrientes,AR-W,annual,2018,gas oil combustion consumption by public passenger transport,487.2588,TJ,N2O,3.9,kg/TJ,1900.30932,kg +8366f5d3-2dfe-3234-806b-50441504eb5a,SESCO,II.1.1,Córdoba,AR-X,annual,2018,gas oil combustion consumption by public passenger transport,1949.46864,TJ,CO2,74100.0,kg/TJ,144455626.224,kg +5bab2d8b-b6b0-36a9-befc-978f140acefd,SESCO,II.1.1,Córdoba,AR-X,annual,2018,gas oil combustion consumption by public passenger transport,1949.46864,TJ,CH4,3.9,kg/TJ,7602.927696,kg +5bab2d8b-b6b0-36a9-befc-978f140acefd,SESCO,II.1.1,Córdoba,AR-X,annual,2018,gas oil combustion consumption by public passenger transport,1949.46864,TJ,N2O,3.9,kg/TJ,7602.927696,kg +dacb0415-01ec-3feb-9589-08efefdb0c48,SESCO,II.1.1,Entre Rios,AR-E,annual,2018,gas oil combustion consumption by public passenger transport,527.38812,TJ,CO2,74100.0,kg/TJ,39079459.691999994,kg +738be32b-67e4-3de2-ae74-df96615b0ffd,SESCO,II.1.1,Entre Rios,AR-E,annual,2018,gas oil combustion consumption by public passenger transport,527.38812,TJ,CH4,3.9,kg/TJ,2056.813668,kg +738be32b-67e4-3de2-ae74-df96615b0ffd,SESCO,II.1.1,Entre Rios,AR-E,annual,2018,gas oil combustion consumption by public passenger transport,527.38812,TJ,N2O,3.9,kg/TJ,2056.813668,kg +62506b91-5830-342b-8fa3-b9b80e91402c,SESCO,II.1.1,Formosa,AR-P,annual,2018,gas oil combustion consumption by public passenger transport,62.8488,TJ,CO2,74100.0,kg/TJ,4657096.08,kg +c37ab5aa-c310-3bcd-ab3a-b3edc9754b60,SESCO,II.1.1,Formosa,AR-P,annual,2018,gas oil combustion consumption by public passenger transport,62.8488,TJ,CH4,3.9,kg/TJ,245.11031999999997,kg +c37ab5aa-c310-3bcd-ab3a-b3edc9754b60,SESCO,II.1.1,Formosa,AR-P,annual,2018,gas oil combustion consumption by public passenger transport,62.8488,TJ,N2O,3.9,kg/TJ,245.11031999999997,kg +ab616897-7693-3563-a81b-dee12e3650ba,SESCO,II.1.1,Jujuy,AR-Y,annual,2018,gas oil combustion consumption by public passenger transport,670.64004,TJ,CO2,74100.0,kg/TJ,49694426.964,kg +63b09946-8140-365f-ae64-03a64428ee2c,SESCO,II.1.1,Jujuy,AR-Y,annual,2018,gas oil combustion consumption by public passenger transport,670.64004,TJ,CH4,3.9,kg/TJ,2615.496156,kg +63b09946-8140-365f-ae64-03a64428ee2c,SESCO,II.1.1,Jujuy,AR-Y,annual,2018,gas oil combustion consumption by public passenger transport,670.64004,TJ,N2O,3.9,kg/TJ,2615.496156,kg +6217c7b2-639e-39b4-a1f1-d9a095a1c03b,SESCO,II.1.1,La Pampa,AR-L,annual,2018,gas oil combustion consumption by public passenger transport,42.87444,TJ,CO2,74100.0,kg/TJ,3176996.004,kg +0a396655-2ebe-3076-b5ab-1615a4c46835,SESCO,II.1.1,La Pampa,AR-L,annual,2018,gas oil combustion consumption by public passenger transport,42.87444,TJ,CH4,3.9,kg/TJ,167.210316,kg +0a396655-2ebe-3076-b5ab-1615a4c46835,SESCO,II.1.1,La Pampa,AR-L,annual,2018,gas oil combustion consumption by public passenger transport,42.87444,TJ,N2O,3.9,kg/TJ,167.210316,kg +5e14f9a2-5420-3b67-839d-1fd783b98ad1,SESCO,II.1.1,La Rioja,AR-F,annual,2018,gas oil combustion consumption by public passenger transport,95.03171999999999,TJ,CO2,74100.0,kg/TJ,7041850.452,kg +b6ec88d8-22fc-30ab-a57d-53f4fd4513bd,SESCO,II.1.1,La Rioja,AR-F,annual,2018,gas oil combustion consumption by public passenger transport,95.03171999999999,TJ,CH4,3.9,kg/TJ,370.62370799999997,kg +b6ec88d8-22fc-30ab-a57d-53f4fd4513bd,SESCO,II.1.1,La Rioja,AR-F,annual,2018,gas oil combustion consumption by public passenger transport,95.03171999999999,TJ,N2O,3.9,kg/TJ,370.62370799999997,kg +ad335ccd-8b62-3c3a-ae86-d6499497ee5e,SESCO,II.1.1,Mendoza,AR-M,annual,2018,gas oil combustion consumption by public passenger transport,1480.5588,TJ,CO2,74100.0,kg/TJ,109709407.08,kg +5df2251f-b8c5-322d-a179-5ecb4accf225,SESCO,II.1.1,Mendoza,AR-M,annual,2018,gas oil combustion consumption by public passenger transport,1480.5588,TJ,CH4,3.9,kg/TJ,5774.17932,kg +5df2251f-b8c5-322d-a179-5ecb4accf225,SESCO,II.1.1,Mendoza,AR-M,annual,2018,gas oil combustion consumption by public passenger transport,1480.5588,TJ,N2O,3.9,kg/TJ,5774.17932,kg +5c112bb8-5f95-351b-be3d-4362912ce9a9,SESCO,II.1.1,Misiones,AR-N,annual,2018,gas oil combustion consumption by public passenger transport,928.284,TJ,CO2,74100.0,kg/TJ,68785844.4,kg +4b9cc244-b023-3e09-8db1-e23e66a0a94c,SESCO,II.1.1,Misiones,AR-N,annual,2018,gas oil combustion consumption by public passenger transport,928.284,TJ,CH4,3.9,kg/TJ,3620.3076,kg +4b9cc244-b023-3e09-8db1-e23e66a0a94c,SESCO,II.1.1,Misiones,AR-N,annual,2018,gas oil combustion consumption by public passenger transport,928.284,TJ,N2O,3.9,kg/TJ,3620.3076,kg +66579251-e508-3c73-bbec-2f30083a252b,SESCO,II.1.1,Neuquén,AR-Q,annual,2018,gas oil combustion consumption by public passenger transport,213.108,TJ,CO2,74100.0,kg/TJ,15791302.8,kg +6c7b7767-5830-3d8c-955f-fc715d22bca0,SESCO,II.1.1,Neuquén,AR-Q,annual,2018,gas oil combustion consumption by public passenger transport,213.108,TJ,CH4,3.9,kg/TJ,831.1212,kg +6c7b7767-5830-3d8c-955f-fc715d22bca0,SESCO,II.1.1,Neuquén,AR-Q,annual,2018,gas oil combustion consumption by public passenger transport,213.108,TJ,N2O,3.9,kg/TJ,831.1212,kg +d729d2da-32e0-3b80-9393-00ee3dedb1ae,SESCO,II.1.1,Rio Negro,AR-R,annual,2018,gas oil combustion consumption by public passenger transport,203.64455999999998,TJ,CO2,74100.0,kg/TJ,15090061.896,kg +167aeada-d8d6-3d40-aadb-d7fff6b68c68,SESCO,II.1.1,Rio Negro,AR-R,annual,2018,gas oil combustion consumption by public passenger transport,203.64455999999998,TJ,CH4,3.9,kg/TJ,794.2137839999999,kg +167aeada-d8d6-3d40-aadb-d7fff6b68c68,SESCO,II.1.1,Rio Negro,AR-R,annual,2018,gas oil combustion consumption by public passenger transport,203.64455999999998,TJ,N2O,3.9,kg/TJ,794.2137839999999,kg +fb747de5-4b90-3acf-accd-cae4ff0ae6af,SESCO,II.1.1,Salta,AR-A,annual,2018,gas oil combustion consumption by public passenger transport,630.72744,TJ,CO2,74100.0,kg/TJ,46736903.304,kg +e9e9b448-d0e4-32f3-b120-2cf7057e455e,SESCO,II.1.1,Salta,AR-A,annual,2018,gas oil combustion consumption by public passenger transport,630.72744,TJ,CH4,3.9,kg/TJ,2459.837016,kg +e9e9b448-d0e4-32f3-b120-2cf7057e455e,SESCO,II.1.1,Salta,AR-A,annual,2018,gas oil combustion consumption by public passenger transport,630.72744,TJ,N2O,3.9,kg/TJ,2459.837016,kg +68024930-a65d-3681-a4c4-d2740fa816b7,SESCO,II.1.1,San Juan,AR-J,annual,2018,gas oil combustion consumption by public passenger transport,389.15688,TJ,CO2,74100.0,kg/TJ,28836524.808,kg +2855d012-c9e5-3c7a-ac84-4bbd71d499f3,SESCO,II.1.1,San Juan,AR-J,annual,2018,gas oil combustion consumption by public passenger transport,389.15688,TJ,CH4,3.9,kg/TJ,1517.711832,kg +2855d012-c9e5-3c7a-ac84-4bbd71d499f3,SESCO,II.1.1,San Juan,AR-J,annual,2018,gas oil combustion consumption by public passenger transport,389.15688,TJ,N2O,3.9,kg/TJ,1517.711832,kg +9c42a3c9-1d4f-3008-af3d-037f1718914e,SESCO,II.1.1,San Luis,AR-D,annual,2018,gas oil combustion consumption by public passenger transport,122.15784,TJ,CO2,74100.0,kg/TJ,9051895.944,kg +9bfd58a0-6461-3673-a662-094d3837f218,SESCO,II.1.1,San Luis,AR-D,annual,2018,gas oil combustion consumption by public passenger transport,122.15784,TJ,CH4,3.9,kg/TJ,476.415576,kg +9bfd58a0-6461-3673-a662-094d3837f218,SESCO,II.1.1,San Luis,AR-D,annual,2018,gas oil combustion consumption by public passenger transport,122.15784,TJ,N2O,3.9,kg/TJ,476.415576,kg +6393c6d7-82aa-33e5-86bd-b98896012644,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2018,gas oil combustion consumption by public passenger transport,21.419159999999998,TJ,CO2,74100.0,kg/TJ,1587159.7559999998,kg +ef5da085-2195-3392-97dd-4519590b325a,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2018,gas oil combustion consumption by public passenger transport,21.419159999999998,TJ,CH4,3.9,kg/TJ,83.534724,kg +ef5da085-2195-3392-97dd-4519590b325a,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2018,gas oil combustion consumption by public passenger transport,21.419159999999998,TJ,N2O,3.9,kg/TJ,83.534724,kg +1540b629-babc-3d53-b416-7d1ced1ed918,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,gas oil combustion consumption by public passenger transport,1269.9792,TJ,CO2,74100.0,kg/TJ,94105458.72,kg +27b93261-cddf-39ed-a6af-02fef7beadb8,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,gas oil combustion consumption by public passenger transport,1269.9792,TJ,CH4,3.9,kg/TJ,4952.91888,kg +27b93261-cddf-39ed-a6af-02fef7beadb8,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,gas oil combustion consumption by public passenger transport,1269.9792,TJ,N2O,3.9,kg/TJ,4952.91888,kg +8b9f22c4-7090-3db7-8582-f56b72ee93d6,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2018,gas oil combustion consumption by public passenger transport,279.35208,TJ,CO2,74100.0,kg/TJ,20699989.128,kg +f6bcee26-f64e-3dad-a38b-3cb16676a334,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2018,gas oil combustion consumption by public passenger transport,279.35208,TJ,CH4,3.9,kg/TJ,1089.473112,kg +f6bcee26-f64e-3dad-a38b-3cb16676a334,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2018,gas oil combustion consumption by public passenger transport,279.35208,TJ,N2O,3.9,kg/TJ,1089.473112,kg +fd44ba13-661f-330e-a6b6-77703a24bde8,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2018,gas oil combustion consumption by public passenger transport,9.42732,TJ,CO2,74100.0,kg/TJ,698564.412,kg +653a2f2a-89c5-3baa-b371-f732b25afb3f,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2018,gas oil combustion consumption by public passenger transport,9.42732,TJ,CH4,3.9,kg/TJ,36.766548,kg +653a2f2a-89c5-3baa-b371-f732b25afb3f,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2018,gas oil combustion consumption by public passenger transport,9.42732,TJ,N2O,3.9,kg/TJ,36.766548,kg +76aa2d84-86ef-38f6-ad85-360c032910f8,SESCO,II.1.1,Tucuman,AR-T,annual,2018,gas oil combustion consumption by public passenger transport,967.87152,TJ,CO2,74100.0,kg/TJ,71719279.632,kg +dbb72fdc-e279-3e07-a5ca-e40099ad0c6f,SESCO,II.1.1,Tucuman,AR-T,annual,2018,gas oil combustion consumption by public passenger transport,967.87152,TJ,CH4,3.9,kg/TJ,3774.6989280000003,kg +dbb72fdc-e279-3e07-a5ca-e40099ad0c6f,SESCO,II.1.1,Tucuman,AR-T,annual,2018,gas oil combustion consumption by public passenger transport,967.87152,TJ,N2O,3.9,kg/TJ,3774.6989280000003,kg +22809ecc-93b3-3d22-b077-1b07d0b5f8f4,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,gas oil combustion consumption by public passenger transport,1955.46456,TJ,CO2,74100.0,kg/TJ,144899923.896,kg +d67cde47-90b6-357c-bd9b-1e73446127c4,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,gas oil combustion consumption by public passenger transport,1955.46456,TJ,CH4,3.9,kg/TJ,7626.3117839999995,kg +d67cde47-90b6-357c-bd9b-1e73446127c4,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,gas oil combustion consumption by public passenger transport,1955.46456,TJ,N2O,3.9,kg/TJ,7626.3117839999995,kg +fe8c7bd0-c29a-3fbd-af52-2d3ba41aed2b,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,gas oil combustion consumption by public passenger transport,303.0468,TJ,CO2,74100.0,kg/TJ,22455767.880000003,kg +fc0e02d8-7334-3ac6-bef9-cba3453a753d,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,gas oil combustion consumption by public passenger transport,303.0468,TJ,CH4,3.9,kg/TJ,1181.88252,kg +fc0e02d8-7334-3ac6-bef9-cba3453a753d,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,gas oil combustion consumption by public passenger transport,303.0468,TJ,N2O,3.9,kg/TJ,1181.88252,kg +b0e5d7d8-ea4d-3a38-9b17-becec9ffeffb,SESCO,II.1.1,Catamarca,AR-K,annual,2018,gas oil combustion consumption by public passenger transport,31.388279999999998,TJ,CO2,74100.0,kg/TJ,2325871.548,kg +4012e00b-5131-3496-b2e2-053782d72e01,SESCO,II.1.1,Catamarca,AR-K,annual,2018,gas oil combustion consumption by public passenger transport,31.388279999999998,TJ,CH4,3.9,kg/TJ,122.41429199999999,kg +4012e00b-5131-3496-b2e2-053782d72e01,SESCO,II.1.1,Catamarca,AR-K,annual,2018,gas oil combustion consumption by public passenger transport,31.388279999999998,TJ,N2O,3.9,kg/TJ,122.41429199999999,kg +258a383f-acc9-3815-af09-4d52bf32a494,SESCO,II.1.1,Chaco,AR-H,annual,2018,gas oil combustion consumption by public passenger transport,48.90648,TJ,CO2,74100.0,kg/TJ,3623970.168,kg +49027788-d172-3fcf-bfe3-8dc12c6af801,SESCO,II.1.1,Chaco,AR-H,annual,2018,gas oil combustion consumption by public passenger transport,48.90648,TJ,CH4,3.9,kg/TJ,190.735272,kg +49027788-d172-3fcf-bfe3-8dc12c6af801,SESCO,II.1.1,Chaco,AR-H,annual,2018,gas oil combustion consumption by public passenger transport,48.90648,TJ,N2O,3.9,kg/TJ,190.735272,kg +f86ae521-b695-3367-b768-b1f4b3c8cf67,SESCO,II.1.1,Chubut,AR-U,annual,2018,gas oil combustion consumption by public passenger transport,59.4174,TJ,CO2,74100.0,kg/TJ,4402829.34,kg +6f8da824-7a5d-3a89-9fc3-6176d171cd26,SESCO,II.1.1,Chubut,AR-U,annual,2018,gas oil combustion consumption by public passenger transport,59.4174,TJ,CH4,3.9,kg/TJ,231.72786,kg +6f8da824-7a5d-3a89-9fc3-6176d171cd26,SESCO,II.1.1,Chubut,AR-U,annual,2018,gas oil combustion consumption by public passenger transport,59.4174,TJ,N2O,3.9,kg/TJ,231.72786,kg +c864c88c-3267-3be7-89ec-56f3e6f37b86,SESCO,II.1.1,Corrientes,AR-W,annual,2018,gas oil combustion consumption by public passenger transport,89.9388,TJ,CO2,74100.0,kg/TJ,6664465.08,kg +b771477b-7d36-370a-9577-bc6c01928df4,SESCO,II.1.1,Corrientes,AR-W,annual,2018,gas oil combustion consumption by public passenger transport,89.9388,TJ,CH4,3.9,kg/TJ,350.76132,kg +b771477b-7d36-370a-9577-bc6c01928df4,SESCO,II.1.1,Corrientes,AR-W,annual,2018,gas oil combustion consumption by public passenger transport,89.9388,TJ,N2O,3.9,kg/TJ,350.76132,kg +d490f789-9152-32be-aa10-7c9b060338c8,SESCO,II.1.1,Córdoba,AR-X,annual,2018,gas oil combustion consumption by public passenger transport,378.68208,TJ,CO2,74100.0,kg/TJ,28060342.128,kg +52d1972a-9f76-3c3d-afae-55ce53c2d1a5,SESCO,II.1.1,Córdoba,AR-X,annual,2018,gas oil combustion consumption by public passenger transport,378.68208,TJ,CH4,3.9,kg/TJ,1476.8601119999998,kg +52d1972a-9f76-3c3d-afae-55ce53c2d1a5,SESCO,II.1.1,Córdoba,AR-X,annual,2018,gas oil combustion consumption by public passenger transport,378.68208,TJ,N2O,3.9,kg/TJ,1476.8601119999998,kg +be7c15bb-4d78-33c7-af1e-edcb9592620f,SESCO,II.1.1,Entre Rios,AR-E,annual,2018,gas oil combustion consumption by public passenger transport,39.1902,TJ,CO2,74100.0,kg/TJ,2903993.82,kg +202b5fad-362b-33c8-a9f4-2bf93653c4a9,SESCO,II.1.1,Entre Rios,AR-E,annual,2018,gas oil combustion consumption by public passenger transport,39.1902,TJ,CH4,3.9,kg/TJ,152.84178,kg +202b5fad-362b-33c8-a9f4-2bf93653c4a9,SESCO,II.1.1,Entre Rios,AR-E,annual,2018,gas oil combustion consumption by public passenger transport,39.1902,TJ,N2O,3.9,kg/TJ,152.84178,kg +669d5c61-2de2-3afb-be44-e455e887cd45,SESCO,II.1.1,Formosa,AR-P,annual,2018,gas oil combustion consumption by public passenger transport,51.90444,TJ,CO2,74100.0,kg/TJ,3846119.004,kg +a32fdbcb-bd17-3640-98f1-a408f7e0e43f,SESCO,II.1.1,Formosa,AR-P,annual,2018,gas oil combustion consumption by public passenger transport,51.90444,TJ,CH4,3.9,kg/TJ,202.427316,kg +a32fdbcb-bd17-3640-98f1-a408f7e0e43f,SESCO,II.1.1,Formosa,AR-P,annual,2018,gas oil combustion consumption by public passenger transport,51.90444,TJ,N2O,3.9,kg/TJ,202.427316,kg +b980fad6-c479-3a6f-a191-8974110e9fea,SESCO,II.1.1,Jujuy,AR-Y,annual,2018,gas oil combustion consumption by public passenger transport,27.920759999999998,TJ,CO2,74100.0,kg/TJ,2068928.3159999999,kg +c9eeb16b-c8a7-35ab-bcfb-6ef081e4b03a,SESCO,II.1.1,Jujuy,AR-Y,annual,2018,gas oil combustion consumption by public passenger transport,27.920759999999998,TJ,CH4,3.9,kg/TJ,108.89096399999998,kg +c9eeb16b-c8a7-35ab-bcfb-6ef081e4b03a,SESCO,II.1.1,Jujuy,AR-Y,annual,2018,gas oil combustion consumption by public passenger transport,27.920759999999998,TJ,N2O,3.9,kg/TJ,108.89096399999998,kg +27afe1be-e39b-30eb-92f6-d0a7cb2cc795,SESCO,II.1.1,La Pampa,AR-L,annual,2018,gas oil combustion consumption by public passenger transport,4.55112,TJ,CO2,74100.0,kg/TJ,337237.992,kg +3489c499-9c7d-316d-8a8c-ae475d04d7c8,SESCO,II.1.1,La Pampa,AR-L,annual,2018,gas oil combustion consumption by public passenger transport,4.55112,TJ,CH4,3.9,kg/TJ,17.749368,kg +3489c499-9c7d-316d-8a8c-ae475d04d7c8,SESCO,II.1.1,La Pampa,AR-L,annual,2018,gas oil combustion consumption by public passenger transport,4.55112,TJ,N2O,3.9,kg/TJ,17.749368,kg +51bd5e8a-f7a9-36da-822e-bb28fc9a058a,SESCO,II.1.1,La Rioja,AR-F,annual,2018,gas oil combustion consumption by public passenger transport,16.36236,TJ,CO2,74100.0,kg/TJ,1212450.876,kg +18865478-7e43-3544-9067-fb03655e72c4,SESCO,II.1.1,La Rioja,AR-F,annual,2018,gas oil combustion consumption by public passenger transport,16.36236,TJ,CH4,3.9,kg/TJ,63.81320399999999,kg +18865478-7e43-3544-9067-fb03655e72c4,SESCO,II.1.1,La Rioja,AR-F,annual,2018,gas oil combustion consumption by public passenger transport,16.36236,TJ,N2O,3.9,kg/TJ,63.81320399999999,kg +87c3cd01-cd10-39ca-b3c4-f6684ce46196,SESCO,II.1.1,Mendoza,AR-M,annual,2018,gas oil combustion consumption by public passenger transport,287.84028,TJ,CO2,74100.0,kg/TJ,21328964.748,kg +a182c42d-1fe9-34a3-b338-5d81b7d352fe,SESCO,II.1.1,Mendoza,AR-M,annual,2018,gas oil combustion consumption by public passenger transport,287.84028,TJ,CH4,3.9,kg/TJ,1122.577092,kg +a182c42d-1fe9-34a3-b338-5d81b7d352fe,SESCO,II.1.1,Mendoza,AR-M,annual,2018,gas oil combustion consumption by public passenger transport,287.84028,TJ,N2O,3.9,kg/TJ,1122.577092,kg +59b2c31a-b357-32c0-9106-c73816c41e40,SESCO,II.1.1,Misiones,AR-N,annual,2018,gas oil combustion consumption by public passenger transport,208.7736,TJ,CO2,74100.0,kg/TJ,15470123.76,kg +d78b3b98-b1c6-370f-a53f-d41d24bb8dac,SESCO,II.1.1,Misiones,AR-N,annual,2018,gas oil combustion consumption by public passenger transport,208.7736,TJ,CH4,3.9,kg/TJ,814.2170399999999,kg +d78b3b98-b1c6-370f-a53f-d41d24bb8dac,SESCO,II.1.1,Misiones,AR-N,annual,2018,gas oil combustion consumption by public passenger transport,208.7736,TJ,N2O,3.9,kg/TJ,814.2170399999999,kg +8302aad6-be61-3ce8-8931-81c6c0598ebb,SESCO,II.1.1,Neuquén,AR-Q,annual,2018,gas oil combustion consumption by public passenger transport,39.84036,TJ,CO2,74100.0,kg/TJ,2952170.676,kg +1108f4cf-e305-37cf-91a7-9aff2665342e,SESCO,II.1.1,Neuquén,AR-Q,annual,2018,gas oil combustion consumption by public passenger transport,39.84036,TJ,CH4,3.9,kg/TJ,155.37740399999998,kg +1108f4cf-e305-37cf-91a7-9aff2665342e,SESCO,II.1.1,Neuquén,AR-Q,annual,2018,gas oil combustion consumption by public passenger transport,39.84036,TJ,N2O,3.9,kg/TJ,155.37740399999998,kg +ae3ef7fe-569a-3fb8-bbbb-55b5091f7547,SESCO,II.1.1,Rio Negro,AR-R,annual,2018,gas oil combustion consumption by public passenger transport,205.66728,TJ,CO2,74100.0,kg/TJ,15239945.448,kg +74308d3c-e7d2-39a2-9453-0fbf984c1a43,SESCO,II.1.1,Rio Negro,AR-R,annual,2018,gas oil combustion consumption by public passenger transport,205.66728,TJ,CH4,3.9,kg/TJ,802.102392,kg +74308d3c-e7d2-39a2-9453-0fbf984c1a43,SESCO,II.1.1,Rio Negro,AR-R,annual,2018,gas oil combustion consumption by public passenger transport,205.66728,TJ,N2O,3.9,kg/TJ,802.102392,kg +9e076492-c0d0-3a26-b39b-5aea0ee4b620,SESCO,II.1.1,Salta,AR-A,annual,2018,gas oil combustion consumption by public passenger transport,228.8202,TJ,CO2,74100.0,kg/TJ,16955576.82,kg +993c1344-76a4-330b-bc6c-307412e1e604,SESCO,II.1.1,Salta,AR-A,annual,2018,gas oil combustion consumption by public passenger transport,228.8202,TJ,CH4,3.9,kg/TJ,892.39878,kg +993c1344-76a4-330b-bc6c-307412e1e604,SESCO,II.1.1,Salta,AR-A,annual,2018,gas oil combustion consumption by public passenger transport,228.8202,TJ,N2O,3.9,kg/TJ,892.39878,kg +78167729-5f34-3a23-b0ce-53dd6befdad9,SESCO,II.1.1,San Juan,AR-J,annual,2018,gas oil combustion consumption by public passenger transport,146.53884,TJ,CO2,74100.0,kg/TJ,10858528.044,kg +a7a5b952-49ce-3ff7-9b63-2fbc0ed66ea1,SESCO,II.1.1,San Juan,AR-J,annual,2018,gas oil combustion consumption by public passenger transport,146.53884,TJ,CH4,3.9,kg/TJ,571.5014759999999,kg +a7a5b952-49ce-3ff7-9b63-2fbc0ed66ea1,SESCO,II.1.1,San Juan,AR-J,annual,2018,gas oil combustion consumption by public passenger transport,146.53884,TJ,N2O,3.9,kg/TJ,571.5014759999999,kg +be1dc58b-b0b8-35ad-866c-dd0b6a38a0fd,SESCO,II.1.1,San Luis,AR-D,annual,2018,gas oil combustion consumption by public passenger transport,43.66908,TJ,CO2,74100.0,kg/TJ,3235878.828,kg +11091680-4380-341b-98b7-833ad496f639,SESCO,II.1.1,San Luis,AR-D,annual,2018,gas oil combustion consumption by public passenger transport,43.66908,TJ,CH4,3.9,kg/TJ,170.309412,kg +11091680-4380-341b-98b7-833ad496f639,SESCO,II.1.1,San Luis,AR-D,annual,2018,gas oil combustion consumption by public passenger transport,43.66908,TJ,N2O,3.9,kg/TJ,170.309412,kg +bac01d6a-7e86-3376-8241-e1b377fbfb59,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2018,gas oil combustion consumption by public passenger transport,2.23944,TJ,CO2,74100.0,kg/TJ,165942.50400000002,kg +f0f38c01-5017-307a-a4c3-a24fb5224c11,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2018,gas oil combustion consumption by public passenger transport,2.23944,TJ,CH4,3.9,kg/TJ,8.733816000000001,kg +f0f38c01-5017-307a-a4c3-a24fb5224c11,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2018,gas oil combustion consumption by public passenger transport,2.23944,TJ,N2O,3.9,kg/TJ,8.733816000000001,kg +1cd2ee89-7a3b-327a-b3c3-1db633d171fa,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,gas oil combustion consumption by public passenger transport,345.4878,TJ,CO2,74100.0,kg/TJ,25600645.98,kg +0f60873e-8abb-3e81-9d18-1220b7316a00,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,gas oil combustion consumption by public passenger transport,345.4878,TJ,CH4,3.9,kg/TJ,1347.40242,kg +0f60873e-8abb-3e81-9d18-1220b7316a00,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,gas oil combustion consumption by public passenger transport,345.4878,TJ,N2O,3.9,kg/TJ,1347.40242,kg +e1465b78-9956-34bd-af86-5ff24e4d93d1,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2018,gas oil combustion consumption by public passenger transport,38.61228,TJ,CO2,74100.0,kg/TJ,2861169.948,kg +f45af029-2994-3a1c-810c-053a035ad0ca,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2018,gas oil combustion consumption by public passenger transport,38.61228,TJ,CH4,3.9,kg/TJ,150.58789199999998,kg +f45af029-2994-3a1c-810c-053a035ad0ca,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2018,gas oil combustion consumption by public passenger transport,38.61228,TJ,N2O,3.9,kg/TJ,150.58789199999998,kg +7f9cc7d5-dc5d-3e9d-8806-9c8d478fbe57,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2018,gas oil combustion consumption by public passenger transport,21.81648,TJ,CO2,74100.0,kg/TJ,1616601.1679999998,kg +3335dfad-2af3-34b9-91a5-ce8480e48329,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2018,gas oil combustion consumption by public passenger transport,21.81648,TJ,CH4,3.9,kg/TJ,85.084272,kg +3335dfad-2af3-34b9-91a5-ce8480e48329,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2018,gas oil combustion consumption by public passenger transport,21.81648,TJ,N2O,3.9,kg/TJ,85.084272,kg +7ea3ce4a-4a6f-36cb-8c12-2f15177c5bb7,SESCO,II.1.1,Tucuman,AR-T,annual,2018,gas oil combustion consumption by public passenger transport,196.45668,TJ,CO2,74100.0,kg/TJ,14557439.988,kg +a17324a5-96f0-3653-b5d8-9252e7c7d421,SESCO,II.1.1,Tucuman,AR-T,annual,2018,gas oil combustion consumption by public passenger transport,196.45668,TJ,CH4,3.9,kg/TJ,766.181052,kg +a17324a5-96f0-3653-b5d8-9252e7c7d421,SESCO,II.1.1,Tucuman,AR-T,annual,2018,gas oil combustion consumption by public passenger transport,196.45668,TJ,N2O,3.9,kg/TJ,766.181052,kg +aa108c54-5765-3352-865d-63a3f4d8fa11,SESCO,II.5.1,Buenos Aires,AR-B,annual,2019,gas oil combustion consumption by agriculture machines,266.67396,TJ,CO2,74100.0,kg/TJ,19760540.436,kg +2a4091d5-ea97-32d6-ba2b-9c05a0ce86b6,SESCO,II.5.1,Buenos Aires,AR-B,annual,2019,gas oil combustion consumption by agriculture machines,266.67396,TJ,CH4,3.9,kg/TJ,1040.028444,kg +2a4091d5-ea97-32d6-ba2b-9c05a0ce86b6,SESCO,II.5.1,Buenos Aires,AR-B,annual,2019,gas oil combustion consumption by agriculture machines,266.67396,TJ,N2O,3.9,kg/TJ,1040.028444,kg +9f668290-840d-3fbd-8f5d-4865a660c98b,SESCO,II.5.1,Chaco,AR-H,annual,2019,gas oil combustion consumption by agriculture machines,19.57704,TJ,CO2,74100.0,kg/TJ,1450658.664,kg +d135a61d-6736-318c-8c7f-bb503be60d33,SESCO,II.5.1,Chaco,AR-H,annual,2019,gas oil combustion consumption by agriculture machines,19.57704,TJ,CH4,3.9,kg/TJ,76.350456,kg +d135a61d-6736-318c-8c7f-bb503be60d33,SESCO,II.5.1,Chaco,AR-H,annual,2019,gas oil combustion consumption by agriculture machines,19.57704,TJ,N2O,3.9,kg/TJ,76.350456,kg +c0df4ad6-63a4-3755-81ba-909d8b30a49e,SESCO,II.5.1,Córdoba,AR-X,annual,2019,gas oil combustion consumption by agriculture machines,118.40136,TJ,CO2,74100.0,kg/TJ,8773540.776,kg +bb917a39-2f28-3f73-a7cf-69c44bd56f3e,SESCO,II.5.1,Córdoba,AR-X,annual,2019,gas oil combustion consumption by agriculture machines,118.40136,TJ,CH4,3.9,kg/TJ,461.76530399999996,kg +bb917a39-2f28-3f73-a7cf-69c44bd56f3e,SESCO,II.5.1,Córdoba,AR-X,annual,2019,gas oil combustion consumption by agriculture machines,118.40136,TJ,N2O,3.9,kg/TJ,461.76530399999996,kg +4c688315-86ba-3f5e-9059-9b225c11f3dd,SESCO,II.5.1,Entre Rios,AR-E,annual,2019,gas oil combustion consumption by agriculture machines,18.09612,TJ,CO2,74100.0,kg/TJ,1340922.4919999999,kg +cb28000d-7c25-3f67-b2ee-48d23476adf7,SESCO,II.5.1,Entre Rios,AR-E,annual,2019,gas oil combustion consumption by agriculture machines,18.09612,TJ,CH4,3.9,kg/TJ,70.574868,kg +cb28000d-7c25-3f67-b2ee-48d23476adf7,SESCO,II.5.1,Entre Rios,AR-E,annual,2019,gas oil combustion consumption by agriculture machines,18.09612,TJ,N2O,3.9,kg/TJ,70.574868,kg +dc4edb83-3e7e-3d20-999c-ed42a6ae84c4,SESCO,II.5.1,La Pampa,AR-L,annual,2019,gas oil combustion consumption by agriculture machines,2.13108,TJ,CO2,74100.0,kg/TJ,157913.028,kg +262a6089-179b-34e5-8673-7e85709f08f6,SESCO,II.5.1,La Pampa,AR-L,annual,2019,gas oil combustion consumption by agriculture machines,2.13108,TJ,CH4,3.9,kg/TJ,8.311212,kg +262a6089-179b-34e5-8673-7e85709f08f6,SESCO,II.5.1,La Pampa,AR-L,annual,2019,gas oil combustion consumption by agriculture machines,2.13108,TJ,N2O,3.9,kg/TJ,8.311212,kg +73a9eb31-c5e3-3b40-bbb0-584797616237,SESCO,II.5.1,Santa Fe,AR-S,annual,2019,gas oil combustion consumption by agriculture machines,209.56824,TJ,CO2,74100.0,kg/TJ,15529006.584,kg +a765db81-1046-3f47-9039-7aeefdd32a7f,SESCO,II.5.1,Santa Fe,AR-S,annual,2019,gas oil combustion consumption by agriculture machines,209.56824,TJ,CH4,3.9,kg/TJ,817.316136,kg +a765db81-1046-3f47-9039-7aeefdd32a7f,SESCO,II.5.1,Santa Fe,AR-S,annual,2019,gas oil combustion consumption by agriculture machines,209.56824,TJ,N2O,3.9,kg/TJ,817.316136,kg +cc49f3cb-fe5a-3d31-95f9-3667f555be25,SESCO,II.5.1,Buenos Aires,AR-B,annual,2019,gas oil combustion consumption by agriculture machines,8.01864,TJ,CO2,74100.0,kg/TJ,594181.2239999999,kg +aebde593-fdf2-3bae-b8fd-ebcedc0acc08,SESCO,II.5.1,Buenos Aires,AR-B,annual,2019,gas oil combustion consumption by agriculture machines,8.01864,TJ,CH4,3.9,kg/TJ,31.272695999999996,kg +aebde593-fdf2-3bae-b8fd-ebcedc0acc08,SESCO,II.5.1,Buenos Aires,AR-B,annual,2019,gas oil combustion consumption by agriculture machines,8.01864,TJ,N2O,3.9,kg/TJ,31.272695999999996,kg +ea3f7b31-0556-39be-bb30-d678d2856e58,SESCO,II.5.1,Córdoba,AR-X,annual,2019,gas oil combustion consumption by agriculture machines,2.4200399999999997,TJ,CO2,74100.0,kg/TJ,179324.96399999998,kg +af8a0089-03af-3d4a-ab17-0a097fc20427,SESCO,II.5.1,Córdoba,AR-X,annual,2019,gas oil combustion consumption by agriculture machines,2.4200399999999997,TJ,CH4,3.9,kg/TJ,9.438156,kg +af8a0089-03af-3d4a-ab17-0a097fc20427,SESCO,II.5.1,Córdoba,AR-X,annual,2019,gas oil combustion consumption by agriculture machines,2.4200399999999997,TJ,N2O,3.9,kg/TJ,9.438156,kg +ab4ab5cd-dfa9-3126-ac50-d5b0f0272258,SESCO,II.5.1,La Pampa,AR-L,annual,2019,gas oil combustion consumption by agriculture machines,0.46956,TJ,CO2,74100.0,kg/TJ,34794.396,kg +725141c8-0815-38d8-9ad4-f4fd01dce5e8,SESCO,II.5.1,La Pampa,AR-L,annual,2019,gas oil combustion consumption by agriculture machines,0.46956,TJ,CH4,3.9,kg/TJ,1.831284,kg +725141c8-0815-38d8-9ad4-f4fd01dce5e8,SESCO,II.5.1,La Pampa,AR-L,annual,2019,gas oil combustion consumption by agriculture machines,0.46956,TJ,N2O,3.9,kg/TJ,1.831284,kg +c92edaa4-423e-325b-bb98-ca1d40712df9,SESCO,II.5.1,Santa Fe,AR-S,annual,2019,gas oil combustion consumption by agriculture machines,11.70288,TJ,CO2,74100.0,kg/TJ,867183.408,kg +8e497bdb-dbe8-3d56-b691-a5890fdb1f59,SESCO,II.5.1,Santa Fe,AR-S,annual,2019,gas oil combustion consumption by agriculture machines,11.70288,TJ,CH4,3.9,kg/TJ,45.641232,kg +8e497bdb-dbe8-3d56-b691-a5890fdb1f59,SESCO,II.5.1,Santa Fe,AR-S,annual,2019,gas oil combustion consumption by agriculture machines,11.70288,TJ,N2O,3.9,kg/TJ,45.641232,kg +a8ded0cc-4cef-3af9-9921-6c9063164f66,SESCO,II.1.1,Buenos Aires,AR-B,annual,2019,gas oil combustion consumption by to the public,1054.81236,TJ,CO2,74100.0,kg/TJ,78161595.87599999,kg +691b9fe8-42db-3f24-a129-0e82e8708263,SESCO,II.1.1,Buenos Aires,AR-B,annual,2019,gas oil combustion consumption by to the public,1054.81236,TJ,CH4,3.9,kg/TJ,4113.768203999999,kg +691b9fe8-42db-3f24-a129-0e82e8708263,SESCO,II.1.1,Buenos Aires,AR-B,annual,2019,gas oil combustion consumption by to the public,1054.81236,TJ,N2O,3.9,kg/TJ,4113.768203999999,kg +450d0562-48b1-3c42-97de-b8e150150958,SESCO,II.1.1,Capital Federal,AR-C,annual,2019,gas oil combustion consumption by to the public,72.6012,TJ,CO2,74100.0,kg/TJ,5379748.920000001,kg +d34031eb-ed86-32d3-86a8-735ed9883cc0,SESCO,II.1.1,Capital Federal,AR-C,annual,2019,gas oil combustion consumption by to the public,72.6012,TJ,CH4,3.9,kg/TJ,283.14468,kg +d34031eb-ed86-32d3-86a8-735ed9883cc0,SESCO,II.1.1,Capital Federal,AR-C,annual,2019,gas oil combustion consumption by to the public,72.6012,TJ,N2O,3.9,kg/TJ,283.14468,kg +39f54cee-92bd-35dd-b508-8fa39df7ae74,SESCO,II.1.1,Catamarca,AR-K,annual,2019,gas oil combustion consumption by to the public,9.06612,TJ,CO2,74100.0,kg/TJ,671799.492,kg +779bf52a-2f2b-3154-b6ed-a09ba6bb5e6a,SESCO,II.1.1,Catamarca,AR-K,annual,2019,gas oil combustion consumption by to the public,9.06612,TJ,CH4,3.9,kg/TJ,35.357867999999996,kg +779bf52a-2f2b-3154-b6ed-a09ba6bb5e6a,SESCO,II.1.1,Catamarca,AR-K,annual,2019,gas oil combustion consumption by to the public,9.06612,TJ,N2O,3.9,kg/TJ,35.357867999999996,kg +c95ba2bd-61ab-3026-b6f0-a10bb8445c20,SESCO,II.1.1,Chaco,AR-H,annual,2019,gas oil combustion consumption by to the public,22.791719999999998,TJ,CO2,74100.0,kg/TJ,1688866.4519999998,kg +4034dd6a-1ba8-3924-9bb3-6d8151c9c07a,SESCO,II.1.1,Chaco,AR-H,annual,2019,gas oil combustion consumption by to the public,22.791719999999998,TJ,CH4,3.9,kg/TJ,88.88770799999999,kg +4034dd6a-1ba8-3924-9bb3-6d8151c9c07a,SESCO,II.1.1,Chaco,AR-H,annual,2019,gas oil combustion consumption by to the public,22.791719999999998,TJ,N2O,3.9,kg/TJ,88.88770799999999,kg +f28bc249-552f-37c8-b727-9d7f88cd477e,SESCO,II.1.1,Corrientes,AR-W,annual,2019,gas oil combustion consumption by to the public,2.92572,TJ,CO2,74100.0,kg/TJ,216795.852,kg +e6d4109d-38fd-3524-ab0d-c52d639781e5,SESCO,II.1.1,Corrientes,AR-W,annual,2019,gas oil combustion consumption by to the public,2.92572,TJ,CH4,3.9,kg/TJ,11.410308,kg +e6d4109d-38fd-3524-ab0d-c52d639781e5,SESCO,II.1.1,Corrientes,AR-W,annual,2019,gas oil combustion consumption by to the public,2.92572,TJ,N2O,3.9,kg/TJ,11.410308,kg +c614e03b-083f-32ec-85d0-35ad079ce6d4,SESCO,II.1.1,Córdoba,AR-X,annual,2019,gas oil combustion consumption by to the public,887.1072,TJ,CO2,74100.0,kg/TJ,65734643.52,kg +1b256b88-cfba-3342-9fd1-d76e46bb1d6b,SESCO,II.1.1,Córdoba,AR-X,annual,2019,gas oil combustion consumption by to the public,887.1072,TJ,CH4,3.9,kg/TJ,3459.71808,kg +1b256b88-cfba-3342-9fd1-d76e46bb1d6b,SESCO,II.1.1,Córdoba,AR-X,annual,2019,gas oil combustion consumption by to the public,887.1072,TJ,N2O,3.9,kg/TJ,3459.71808,kg +488d863f-6623-3789-8d9f-25caef781f1c,SESCO,II.1.1,Entre Rios,AR-E,annual,2019,gas oil combustion consumption by to the public,91.34748,TJ,CO2,74100.0,kg/TJ,6768848.268,kg +abfe58ec-7c1b-3683-bf1e-dc1b6c679760,SESCO,II.1.1,Entre Rios,AR-E,annual,2019,gas oil combustion consumption by to the public,91.34748,TJ,CH4,3.9,kg/TJ,356.255172,kg +abfe58ec-7c1b-3683-bf1e-dc1b6c679760,SESCO,II.1.1,Entre Rios,AR-E,annual,2019,gas oil combustion consumption by to the public,91.34748,TJ,N2O,3.9,kg/TJ,356.255172,kg +de3dc1f3-0c65-3fa4-b192-da0daf9a68b3,SESCO,II.1.1,La Pampa,AR-L,annual,2019,gas oil combustion consumption by to the public,1.48092,TJ,CO2,74100.0,kg/TJ,109736.172,kg +15f148aa-11ce-34ba-896c-642f48dfd274,SESCO,II.1.1,La Pampa,AR-L,annual,2019,gas oil combustion consumption by to the public,1.48092,TJ,CH4,3.9,kg/TJ,5.775588,kg +15f148aa-11ce-34ba-896c-642f48dfd274,SESCO,II.1.1,La Pampa,AR-L,annual,2019,gas oil combustion consumption by to the public,1.48092,TJ,N2O,3.9,kg/TJ,5.775588,kg +f50c4d5d-b8e1-3452-b402-b4f68dab72dd,SESCO,II.1.1,La Rioja,AR-F,annual,2019,gas oil combustion consumption by to the public,0.21672,TJ,CO2,74100.0,kg/TJ,16058.952,kg +f6d41ec4-5e64-3a97-98a5-1b3163bf62a4,SESCO,II.1.1,La Rioja,AR-F,annual,2019,gas oil combustion consumption by to the public,0.21672,TJ,CH4,3.9,kg/TJ,0.845208,kg +f6d41ec4-5e64-3a97-98a5-1b3163bf62a4,SESCO,II.1.1,La Rioja,AR-F,annual,2019,gas oil combustion consumption by to the public,0.21672,TJ,N2O,3.9,kg/TJ,0.845208,kg +2e34fdbc-bf68-3949-94b9-b3927ff9e146,SESCO,II.1.1,Mendoza,AR-M,annual,2019,gas oil combustion consumption by to the public,110.92452,TJ,CO2,74100.0,kg/TJ,8219506.932,kg +c9eeecfa-53a5-381c-b204-7997ee591db1,SESCO,II.1.1,Mendoza,AR-M,annual,2019,gas oil combustion consumption by to the public,110.92452,TJ,CH4,3.9,kg/TJ,432.60562799999997,kg +c9eeecfa-53a5-381c-b204-7997ee591db1,SESCO,II.1.1,Mendoza,AR-M,annual,2019,gas oil combustion consumption by to the public,110.92452,TJ,N2O,3.9,kg/TJ,432.60562799999997,kg +db658ebe-4319-3b31-a907-609e2aed6319,SESCO,II.1.1,Misiones,AR-N,annual,2019,gas oil combustion consumption by to the public,0.93912,TJ,CO2,74100.0,kg/TJ,69588.792,kg +7b23b2b8-0e56-3b8e-bc88-30f62b583718,SESCO,II.1.1,Misiones,AR-N,annual,2019,gas oil combustion consumption by to the public,0.93912,TJ,CH4,3.9,kg/TJ,3.662568,kg +7b23b2b8-0e56-3b8e-bc88-30f62b583718,SESCO,II.1.1,Misiones,AR-N,annual,2019,gas oil combustion consumption by to the public,0.93912,TJ,N2O,3.9,kg/TJ,3.662568,kg +3d4fbe93-4ee5-3a1f-ab82-a394f3f37563,SESCO,II.1.1,San Juan,AR-J,annual,2019,gas oil combustion consumption by to the public,62.054159999999996,TJ,CO2,74100.0,kg/TJ,4598213.256,kg +6d7b68cb-3c77-32df-b66c-128329143d06,SESCO,II.1.1,San Juan,AR-J,annual,2019,gas oil combustion consumption by to the public,62.054159999999996,TJ,CH4,3.9,kg/TJ,242.01122399999997,kg +6d7b68cb-3c77-32df-b66c-128329143d06,SESCO,II.1.1,San Juan,AR-J,annual,2019,gas oil combustion consumption by to the public,62.054159999999996,TJ,N2O,3.9,kg/TJ,242.01122399999997,kg +6259deef-c9a6-358d-a5cd-fc260295c153,SESCO,II.1.1,San Luis,AR-D,annual,2019,gas oil combustion consumption by to the public,10.18584,TJ,CO2,74100.0,kg/TJ,754770.7440000001,kg +25d8b305-c039-3358-bf5e-b60d694dfb2c,SESCO,II.1.1,San Luis,AR-D,annual,2019,gas oil combustion consumption by to the public,10.18584,TJ,CH4,3.9,kg/TJ,39.724776,kg +25d8b305-c039-3358-bf5e-b60d694dfb2c,SESCO,II.1.1,San Luis,AR-D,annual,2019,gas oil combustion consumption by to the public,10.18584,TJ,N2O,3.9,kg/TJ,39.724776,kg +98ce0fcd-5ef6-3590-ac9d-8577c6f1d4d3,SESCO,II.1.1,Santa Fe,AR-S,annual,2019,gas oil combustion consumption by to the public,580.48452,TJ,CO2,74100.0,kg/TJ,43013902.932,kg +7db83c5d-258a-3852-a765-bec7ded33413,SESCO,II.1.1,Santa Fe,AR-S,annual,2019,gas oil combustion consumption by to the public,580.48452,TJ,CH4,3.9,kg/TJ,2263.889628,kg +7db83c5d-258a-3852-a765-bec7ded33413,SESCO,II.1.1,Santa Fe,AR-S,annual,2019,gas oil combustion consumption by to the public,580.48452,TJ,N2O,3.9,kg/TJ,2263.889628,kg +48fa8b2c-9678-3da3-bb38-a7bd118e3b57,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2019,gas oil combustion consumption by to the public,71.48148,TJ,CO2,74100.0,kg/TJ,5296777.6680000005,kg +e11854f8-fa6e-3069-b279-a9bc3ae10fb6,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2019,gas oil combustion consumption by to the public,71.48148,TJ,CH4,3.9,kg/TJ,278.777772,kg +e11854f8-fa6e-3069-b279-a9bc3ae10fb6,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2019,gas oil combustion consumption by to the public,71.48148,TJ,N2O,3.9,kg/TJ,278.777772,kg +184ced0e-3aca-3865-af10-7af5055bd804,SESCO,II.1.1,Tucuman,AR-T,annual,2019,gas oil combustion consumption by to the public,55.986,TJ,CO2,74100.0,kg/TJ,4148562.5999999996,kg +06fd6967-9a36-3fb0-bc51-280dfdcbf3a8,SESCO,II.1.1,Tucuman,AR-T,annual,2019,gas oil combustion consumption by to the public,55.986,TJ,CH4,3.9,kg/TJ,218.34539999999998,kg +06fd6967-9a36-3fb0-bc51-280dfdcbf3a8,SESCO,II.1.1,Tucuman,AR-T,annual,2019,gas oil combustion consumption by to the public,55.986,TJ,N2O,3.9,kg/TJ,218.34539999999998,kg +6709f46c-c646-365a-871b-387c492af23c,SESCO,II.1.1,Buenos Aires,AR-B,annual,2019,gas oil combustion consumption by to the public,121.5438,TJ,CO2,74100.0,kg/TJ,9006395.58,kg +3a4d3849-3f42-377e-b8d6-29220f4d6612,SESCO,II.1.1,Buenos Aires,AR-B,annual,2019,gas oil combustion consumption by to the public,121.5438,TJ,CH4,3.9,kg/TJ,474.02082,kg +3a4d3849-3f42-377e-b8d6-29220f4d6612,SESCO,II.1.1,Buenos Aires,AR-B,annual,2019,gas oil combustion consumption by to the public,121.5438,TJ,N2O,3.9,kg/TJ,474.02082,kg +8aac438f-7d20-3bc6-8551-5a6b45f0a367,SESCO,II.1.1,Capital Federal,AR-C,annual,2019,gas oil combustion consumption by to the public,8.59656,TJ,CO2,74100.0,kg/TJ,637005.096,kg +07c8c2d5-5a66-32ab-981e-e715d0d870e6,SESCO,II.1.1,Capital Federal,AR-C,annual,2019,gas oil combustion consumption by to the public,8.59656,TJ,CH4,3.9,kg/TJ,33.526584,kg +07c8c2d5-5a66-32ab-981e-e715d0d870e6,SESCO,II.1.1,Capital Federal,AR-C,annual,2019,gas oil combustion consumption by to the public,8.59656,TJ,N2O,3.9,kg/TJ,33.526584,kg +4bd8004c-33a3-3315-88db-75957d52d7eb,SESCO,II.1.1,Catamarca,AR-K,annual,2019,gas oil combustion consumption by to the public,5.30964,TJ,CO2,74100.0,kg/TJ,393444.324,kg +12a32535-eaca-302d-968c-b2045bb28f46,SESCO,II.1.1,Catamarca,AR-K,annual,2019,gas oil combustion consumption by to the public,5.30964,TJ,CH4,3.9,kg/TJ,20.707596,kg +12a32535-eaca-302d-968c-b2045bb28f46,SESCO,II.1.1,Catamarca,AR-K,annual,2019,gas oil combustion consumption by to the public,5.30964,TJ,N2O,3.9,kg/TJ,20.707596,kg +f20bceb0-2ee9-3b9b-91b3-25250f7032d6,SESCO,II.1.1,Chaco,AR-H,annual,2019,gas oil combustion consumption by to the public,4.5872399999999995,TJ,CO2,74100.0,kg/TJ,339914.48399999994,kg +a685e52d-8555-3cc8-8880-8010aba607ba,SESCO,II.1.1,Chaco,AR-H,annual,2019,gas oil combustion consumption by to the public,4.5872399999999995,TJ,CH4,3.9,kg/TJ,17.890235999999998,kg +a685e52d-8555-3cc8-8880-8010aba607ba,SESCO,II.1.1,Chaco,AR-H,annual,2019,gas oil combustion consumption by to the public,4.5872399999999995,TJ,N2O,3.9,kg/TJ,17.890235999999998,kg +95181b30-9143-362a-a65b-2443fbcd1adf,SESCO,II.1.1,Corrientes,AR-W,annual,2019,gas oil combustion consumption by to the public,3.612,TJ,CO2,74100.0,kg/TJ,267649.2,kg +daa7a51e-d5a1-324e-b9bb-fd90223a6288,SESCO,II.1.1,Corrientes,AR-W,annual,2019,gas oil combustion consumption by to the public,3.612,TJ,CH4,3.9,kg/TJ,14.0868,kg +daa7a51e-d5a1-324e-b9bb-fd90223a6288,SESCO,II.1.1,Corrientes,AR-W,annual,2019,gas oil combustion consumption by to the public,3.612,TJ,N2O,3.9,kg/TJ,14.0868,kg +a01d1ae8-8b67-3314-91c4-8ff02335185b,SESCO,II.1.1,Córdoba,AR-X,annual,2019,gas oil combustion consumption by to the public,95.79024,TJ,CO2,74100.0,kg/TJ,7098056.784,kg +ac880676-b931-3d82-a781-92ba0f713d06,SESCO,II.1.1,Córdoba,AR-X,annual,2019,gas oil combustion consumption by to the public,95.79024,TJ,CH4,3.9,kg/TJ,373.581936,kg +ac880676-b931-3d82-a781-92ba0f713d06,SESCO,II.1.1,Córdoba,AR-X,annual,2019,gas oil combustion consumption by to the public,95.79024,TJ,N2O,3.9,kg/TJ,373.581936,kg +e2493115-44fd-33bd-83c9-c8598e45142a,SESCO,II.1.1,Entre Rios,AR-E,annual,2019,gas oil combustion consumption by to the public,11.66676,TJ,CO2,74100.0,kg/TJ,864506.916,kg +4e877117-1265-366e-a32f-3cf82244c323,SESCO,II.1.1,Entre Rios,AR-E,annual,2019,gas oil combustion consumption by to the public,11.66676,TJ,CH4,3.9,kg/TJ,45.500364,kg +4e877117-1265-366e-a32f-3cf82244c323,SESCO,II.1.1,Entre Rios,AR-E,annual,2019,gas oil combustion consumption by to the public,11.66676,TJ,N2O,3.9,kg/TJ,45.500364,kg +f50c4d5d-b8e1-3452-b402-b4f68dab72dd,SESCO,II.1.1,La Rioja,AR-F,annual,2019,gas oil combustion consumption by to the public,0.21672,TJ,CO2,74100.0,kg/TJ,16058.952,kg +f6d41ec4-5e64-3a97-98a5-1b3163bf62a4,SESCO,II.1.1,La Rioja,AR-F,annual,2019,gas oil combustion consumption by to the public,0.21672,TJ,CH4,3.9,kg/TJ,0.845208,kg +f6d41ec4-5e64-3a97-98a5-1b3163bf62a4,SESCO,II.1.1,La Rioja,AR-F,annual,2019,gas oil combustion consumption by to the public,0.21672,TJ,N2O,3.9,kg/TJ,0.845208,kg +bdf96291-a0f5-3905-92fd-816e0381e9f4,SESCO,II.1.1,Mendoza,AR-M,annual,2019,gas oil combustion consumption by to the public,21.81648,TJ,CO2,74100.0,kg/TJ,1616601.1679999998,kg +47232a7c-0243-3089-a3a8-94c1637feaab,SESCO,II.1.1,Mendoza,AR-M,annual,2019,gas oil combustion consumption by to the public,21.81648,TJ,CH4,3.9,kg/TJ,85.084272,kg +47232a7c-0243-3089-a3a8-94c1637feaab,SESCO,II.1.1,Mendoza,AR-M,annual,2019,gas oil combustion consumption by to the public,21.81648,TJ,N2O,3.9,kg/TJ,85.084272,kg +59d111db-11ed-37a8-bdc2-84e9f9680636,SESCO,II.1.1,San Juan,AR-J,annual,2019,gas oil combustion consumption by to the public,17.3376,TJ,CO2,74100.0,kg/TJ,1284716.16,kg +840582af-bdae-399c-96a3-899c60313c74,SESCO,II.1.1,San Juan,AR-J,annual,2019,gas oil combustion consumption by to the public,17.3376,TJ,CH4,3.9,kg/TJ,67.61663999999999,kg +840582af-bdae-399c-96a3-899c60313c74,SESCO,II.1.1,San Juan,AR-J,annual,2019,gas oil combustion consumption by to the public,17.3376,TJ,N2O,3.9,kg/TJ,67.61663999999999,kg +d9ca20aa-3e63-3105-ae37-e8a6552a97aa,SESCO,II.1.1,San Luis,AR-D,annual,2019,gas oil combustion consumption by to the public,1.91436,TJ,CO2,74100.0,kg/TJ,141854.076,kg +de35df31-87a7-3d21-8151-fe129e329cb2,SESCO,II.1.1,San Luis,AR-D,annual,2019,gas oil combustion consumption by to the public,1.91436,TJ,CH4,3.9,kg/TJ,7.466004,kg +de35df31-87a7-3d21-8151-fe129e329cb2,SESCO,II.1.1,San Luis,AR-D,annual,2019,gas oil combustion consumption by to the public,1.91436,TJ,N2O,3.9,kg/TJ,7.466004,kg +991ea9df-1255-37b7-b474-f7c021ab3457,SESCO,II.1.1,Santa Fe,AR-S,annual,2019,gas oil combustion consumption by to the public,82.13688,TJ,CO2,74100.0,kg/TJ,6086342.808,kg +01724905-0cb1-3152-a833-74ed06f8a222,SESCO,II.1.1,Santa Fe,AR-S,annual,2019,gas oil combustion consumption by to the public,82.13688,TJ,CH4,3.9,kg/TJ,320.33383200000003,kg +01724905-0cb1-3152-a833-74ed06f8a222,SESCO,II.1.1,Santa Fe,AR-S,annual,2019,gas oil combustion consumption by to the public,82.13688,TJ,N2O,3.9,kg/TJ,320.33383200000003,kg +da8f2df0-3d23-3ae6-8ae8-461c1d001b4f,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2019,gas oil combustion consumption by to the public,8.488199999999999,TJ,CO2,74100.0,kg/TJ,628975.6199999999,kg +40d02920-e40c-3e20-971c-c55fc2da38f9,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2019,gas oil combustion consumption by to the public,8.488199999999999,TJ,CH4,3.9,kg/TJ,33.10397999999999,kg +40d02920-e40c-3e20-971c-c55fc2da38f9,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2019,gas oil combustion consumption by to the public,8.488199999999999,TJ,N2O,3.9,kg/TJ,33.10397999999999,kg +607a9ef0-2742-32d8-b393-f4510702d223,SESCO,II.1.1,Tucuman,AR-T,annual,2019,gas oil combustion consumption by to the public,1.37256,TJ,CO2,74100.0,kg/TJ,101706.696,kg +46e7b4bd-06de-30e7-a90f-f652f41928ba,SESCO,II.1.1,Tucuman,AR-T,annual,2019,gas oil combustion consumption by to the public,1.37256,TJ,CH4,3.9,kg/TJ,5.352984,kg +46e7b4bd-06de-30e7-a90f-f652f41928ba,SESCO,II.1.1,Tucuman,AR-T,annual,2019,gas oil combustion consumption by to the public,1.37256,TJ,N2O,3.9,kg/TJ,5.352984,kg +d80eee47-3bdf-3de1-ae3b-447400f441a2,SESCO,II.5.1,Buenos Aires,AR-B,annual,2019,gas oil combustion consumption by agriculture machines,245.14643999999998,TJ,CO2,74100.0,kg/TJ,18165351.204,kg +0e7d8a37-902d-31fd-b1d5-eab6636109a3,SESCO,II.5.1,Buenos Aires,AR-B,annual,2019,gas oil combustion consumption by agriculture machines,245.14643999999998,TJ,CH4,3.9,kg/TJ,956.071116,kg +0e7d8a37-902d-31fd-b1d5-eab6636109a3,SESCO,II.5.1,Buenos Aires,AR-B,annual,2019,gas oil combustion consumption by agriculture machines,245.14643999999998,TJ,N2O,3.9,kg/TJ,956.071116,kg +6e1829ac-8fe0-36ab-87d0-c4c4495a5b82,SESCO,II.5.1,Capital Federal,AR-C,annual,2019,gas oil combustion consumption by agriculture machines,4.40664,TJ,CO2,74100.0,kg/TJ,326532.02400000003,kg +1acff2ea-22cb-39d1-8eeb-dc3a54b2f04f,SESCO,II.5.1,Capital Federal,AR-C,annual,2019,gas oil combustion consumption by agriculture machines,4.40664,TJ,CH4,3.9,kg/TJ,17.185896,kg +1acff2ea-22cb-39d1-8eeb-dc3a54b2f04f,SESCO,II.5.1,Capital Federal,AR-C,annual,2019,gas oil combustion consumption by agriculture machines,4.40664,TJ,N2O,3.9,kg/TJ,17.185896,kg +be751543-a181-3e77-9d6a-92b5a3f2d916,SESCO,II.5.1,Córdoba,AR-X,annual,2019,gas oil combustion consumption by agriculture machines,819.81564,TJ,CO2,74100.0,kg/TJ,60748338.924,kg +0c5101f3-c064-3f87-91b4-12311fb9c8b9,SESCO,II.5.1,Córdoba,AR-X,annual,2019,gas oil combustion consumption by agriculture machines,819.81564,TJ,CH4,3.9,kg/TJ,3197.280996,kg +0c5101f3-c064-3f87-91b4-12311fb9c8b9,SESCO,II.5.1,Córdoba,AR-X,annual,2019,gas oil combustion consumption by agriculture machines,819.81564,TJ,N2O,3.9,kg/TJ,3197.280996,kg +a8858671-5bac-33e7-b484-ef585769cbe7,SESCO,II.5.1,Entre Rios,AR-E,annual,2019,gas oil combustion consumption by agriculture machines,124.86684,TJ,CO2,74100.0,kg/TJ,9252632.844,kg +1fd9da04-8b19-37a5-8f1e-8fdaa4a291bd,SESCO,II.5.1,Entre Rios,AR-E,annual,2019,gas oil combustion consumption by agriculture machines,124.86684,TJ,CH4,3.9,kg/TJ,486.98067599999996,kg +1fd9da04-8b19-37a5-8f1e-8fdaa4a291bd,SESCO,II.5.1,Entre Rios,AR-E,annual,2019,gas oil combustion consumption by agriculture machines,124.86684,TJ,N2O,3.9,kg/TJ,486.98067599999996,kg +3478842e-7634-390a-addd-25f7a26a715e,SESCO,II.5.1,La Pampa,AR-L,annual,2019,gas oil combustion consumption by agriculture machines,95.32068,TJ,CO2,74100.0,kg/TJ,7063262.387999999,kg +0d822519-5d8c-3b61-9029-a3f9588395c6,SESCO,II.5.1,La Pampa,AR-L,annual,2019,gas oil combustion consumption by agriculture machines,95.32068,TJ,CH4,3.9,kg/TJ,371.750652,kg +0d822519-5d8c-3b61-9029-a3f9588395c6,SESCO,II.5.1,La Pampa,AR-L,annual,2019,gas oil combustion consumption by agriculture machines,95.32068,TJ,N2O,3.9,kg/TJ,371.750652,kg +e876da40-68c9-389b-a43d-8675c787e583,SESCO,II.5.1,Santa Fe,AR-S,annual,2019,gas oil combustion consumption by agriculture machines,176.77128,TJ,CO2,74100.0,kg/TJ,13098751.848,kg +7f5c719d-efd7-33cc-a032-48185ffcadce,SESCO,II.5.1,Santa Fe,AR-S,annual,2019,gas oil combustion consumption by agriculture machines,176.77128,TJ,CH4,3.9,kg/TJ,689.4079919999999,kg +7f5c719d-efd7-33cc-a032-48185ffcadce,SESCO,II.5.1,Santa Fe,AR-S,annual,2019,gas oil combustion consumption by agriculture machines,176.77128,TJ,N2O,3.9,kg/TJ,689.4079919999999,kg +9976a8f3-9e90-3d94-9f15-fe685c3d22f7,SESCO,II.1.1,Buenos Aires,AR-B,annual,2019,gasoline combustion consumption by to the public,6.2905999999999995,TJ,CO2,69300.0,kg/TJ,435938.57999999996,kg +8f591d60-462e-39eb-ad2f-c5ef44711400,SESCO,II.1.1,Buenos Aires,AR-B,annual,2019,gasoline combustion consumption by to the public,6.2905999999999995,TJ,CH4,33.0,kg/TJ,207.5898,kg +415f0faf-73e9-3975-b9d3-5e9deb5c62fe,SESCO,II.1.1,Buenos Aires,AR-B,annual,2019,gasoline combustion consumption by to the public,6.2905999999999995,TJ,N2O,3.2,kg/TJ,20.12992,kg +65ee0c57-478a-352c-b0cd-2914755b5fda,SESCO,II.1.1,Buenos Aires,AR-B,annual,2019,gas oil combustion consumption by to the public,11.52228,TJ,CO2,74100.0,kg/TJ,853800.948,kg +deaf0c67-bc0e-34a9-a449-db092843eeb1,SESCO,II.1.1,Buenos Aires,AR-B,annual,2019,gas oil combustion consumption by to the public,11.52228,TJ,CH4,3.9,kg/TJ,44.936892,kg +deaf0c67-bc0e-34a9-a449-db092843eeb1,SESCO,II.1.1,Buenos Aires,AR-B,annual,2019,gas oil combustion consumption by to the public,11.52228,TJ,N2O,3.9,kg/TJ,44.936892,kg +0667300f-45f8-300c-996a-f31db14fe2d2,SESCO,II.1.1,Buenos Aires,AR-B,annual,2019,gas oil combustion consumption by to the public,3259.54104,TJ,CO2,74100.0,kg/TJ,241531991.064,kg +b97477f2-2cce-3905-9045-97bb9770ac05,SESCO,II.1.1,Buenos Aires,AR-B,annual,2019,gas oil combustion consumption by to the public,3259.54104,TJ,CH4,3.9,kg/TJ,12712.210056,kg +b97477f2-2cce-3905-9045-97bb9770ac05,SESCO,II.1.1,Buenos Aires,AR-B,annual,2019,gas oil combustion consumption by to the public,3259.54104,TJ,N2O,3.9,kg/TJ,12712.210056,kg +96d56bd9-73a0-3a57-9a0d-9911f8646a2e,SESCO,II.1.1,Capital Federal,AR-C,annual,2019,gas oil combustion consumption by to the public,100.73868,TJ,CO2,74100.0,kg/TJ,7464736.188,kg +06a4f429-5c1b-3fc5-b5fd-1c5e7752f192,SESCO,II.1.1,Capital Federal,AR-C,annual,2019,gas oil combustion consumption by to the public,100.73868,TJ,CH4,3.9,kg/TJ,392.880852,kg +06a4f429-5c1b-3fc5-b5fd-1c5e7752f192,SESCO,II.1.1,Capital Federal,AR-C,annual,2019,gas oil combustion consumption by to the public,100.73868,TJ,N2O,3.9,kg/TJ,392.880852,kg +addbd6f5-eaee-3654-b113-8290a3d9ea35,SESCO,II.1.1,Catamarca,AR-K,annual,2019,gas oil combustion consumption by to the public,0.46956,TJ,CO2,74100.0,kg/TJ,34794.396,kg +ad29b53f-5abf-3bda-bd72-72399974dca9,SESCO,II.1.1,Catamarca,AR-K,annual,2019,gas oil combustion consumption by to the public,0.46956,TJ,CH4,3.9,kg/TJ,1.831284,kg +ad29b53f-5abf-3bda-bd72-72399974dca9,SESCO,II.1.1,Catamarca,AR-K,annual,2019,gas oil combustion consumption by to the public,0.46956,TJ,N2O,3.9,kg/TJ,1.831284,kg +72a28378-f0d8-3540-9ed6-f2d4f072854a,SESCO,II.1.1,Chaco,AR-H,annual,2019,gas oil combustion consumption by to the public,207.83447999999999,TJ,CO2,74100.0,kg/TJ,15400534.967999998,kg +c1e943b0-15c5-3354-b5e6-cba4271e676a,SESCO,II.1.1,Chaco,AR-H,annual,2019,gas oil combustion consumption by to the public,207.83447999999999,TJ,CH4,3.9,kg/TJ,810.5544719999999,kg +c1e943b0-15c5-3354-b5e6-cba4271e676a,SESCO,II.1.1,Chaco,AR-H,annual,2019,gas oil combustion consumption by to the public,207.83447999999999,TJ,N2O,3.9,kg/TJ,810.5544719999999,kg +fdb82e3f-46b5-3b86-bbe6-d0781fd14424,SESCO,II.1.1,Corrientes,AR-W,annual,2019,gas oil combustion consumption by to the public,21.672,TJ,CO2,74100.0,kg/TJ,1605895.2,kg +36bb7a6f-754c-37af-86a4-467470b9c5ca,SESCO,II.1.1,Corrientes,AR-W,annual,2019,gas oil combustion consumption by to the public,21.672,TJ,CH4,3.9,kg/TJ,84.5208,kg +36bb7a6f-754c-37af-86a4-467470b9c5ca,SESCO,II.1.1,Corrientes,AR-W,annual,2019,gas oil combustion consumption by to the public,21.672,TJ,N2O,3.9,kg/TJ,84.5208,kg +1ea02f74-f40c-3278-8a26-d0be3f3bb772,SESCO,II.1.1,Córdoba,AR-X,annual,2019,gas oil combustion consumption by to the public,1313.72052,TJ,CO2,74100.0,kg/TJ,97346690.532,kg +cda210d1-d341-37f8-9db2-bb596def738a,SESCO,II.1.1,Córdoba,AR-X,annual,2019,gas oil combustion consumption by to the public,1313.72052,TJ,CH4,3.9,kg/TJ,5123.510028000001,kg +cda210d1-d341-37f8-9db2-bb596def738a,SESCO,II.1.1,Córdoba,AR-X,annual,2019,gas oil combustion consumption by to the public,1313.72052,TJ,N2O,3.9,kg/TJ,5123.510028000001,kg +3137fe64-0608-36e1-81d4-f7f3e10d9d50,SESCO,II.1.1,Entre Rios,AR-E,annual,2019,gas oil combustion consumption by to the public,31.713359999999998,TJ,CO2,74100.0,kg/TJ,2349959.976,kg +814e7c61-40a6-3ccc-a69c-166fa7d05094,SESCO,II.1.1,Entre Rios,AR-E,annual,2019,gas oil combustion consumption by to the public,31.713359999999998,TJ,CH4,3.9,kg/TJ,123.682104,kg +814e7c61-40a6-3ccc-a69c-166fa7d05094,SESCO,II.1.1,Entre Rios,AR-E,annual,2019,gas oil combustion consumption by to the public,31.713359999999998,TJ,N2O,3.9,kg/TJ,123.682104,kg +bb89abdd-df1d-3f71-bada-cf9d6cd6db03,SESCO,II.1.1,Formosa,AR-P,annual,2019,gas oil combustion consumption by to the public,0.36119999999999997,TJ,CO2,74100.0,kg/TJ,26764.92,kg +454aa7ee-5023-3d4b-8f5b-bbf0e142d23f,SESCO,II.1.1,Formosa,AR-P,annual,2019,gas oil combustion consumption by to the public,0.36119999999999997,TJ,CH4,3.9,kg/TJ,1.40868,kg +454aa7ee-5023-3d4b-8f5b-bbf0e142d23f,SESCO,II.1.1,Formosa,AR-P,annual,2019,gas oil combustion consumption by to the public,0.36119999999999997,TJ,N2O,3.9,kg/TJ,1.40868,kg +844ce005-e431-3421-9b32-edc4515e19a3,SESCO,II.1.1,La Rioja,AR-F,annual,2019,gas oil combustion consumption by to the public,1.69764,TJ,CO2,74100.0,kg/TJ,125795.124,kg +d50e09c9-472e-3fb3-86b9-c0769cc09c0d,SESCO,II.1.1,La Rioja,AR-F,annual,2019,gas oil combustion consumption by to the public,1.69764,TJ,CH4,3.9,kg/TJ,6.620796,kg +d50e09c9-472e-3fb3-86b9-c0769cc09c0d,SESCO,II.1.1,La Rioja,AR-F,annual,2019,gas oil combustion consumption by to the public,1.69764,TJ,N2O,3.9,kg/TJ,6.620796,kg +a1829438-96f4-3629-90b6-e13299072e74,SESCO,II.1.1,Mendoza,AR-M,annual,2019,gas oil combustion consumption by to the public,449.54952,TJ,CO2,74100.0,kg/TJ,33311619.431999996,kg +62f43ea8-fff1-30ec-9ebe-5bf2e2dc84f5,SESCO,II.1.1,Mendoza,AR-M,annual,2019,gas oil combustion consumption by to the public,449.54952,TJ,CH4,3.9,kg/TJ,1753.2431279999998,kg +62f43ea8-fff1-30ec-9ebe-5bf2e2dc84f5,SESCO,II.1.1,Mendoza,AR-M,annual,2019,gas oil combustion consumption by to the public,449.54952,TJ,N2O,3.9,kg/TJ,1753.2431279999998,kg +224c9d1f-be70-327e-9bd9-400c4cb2697b,SESCO,II.1.1,Misiones,AR-N,annual,2019,gas oil combustion consumption by to the public,122.95248,TJ,CO2,74100.0,kg/TJ,9110778.768,kg +e6ce5f8f-bf05-305a-a336-76cccd6437ff,SESCO,II.1.1,Misiones,AR-N,annual,2019,gas oil combustion consumption by to the public,122.95248,TJ,CH4,3.9,kg/TJ,479.51467199999996,kg +e6ce5f8f-bf05-305a-a336-76cccd6437ff,SESCO,II.1.1,Misiones,AR-N,annual,2019,gas oil combustion consumption by to the public,122.95248,TJ,N2O,3.9,kg/TJ,479.51467199999996,kg +93c28e86-9ece-3307-9a13-8061184d52d4,SESCO,II.1.1,San Juan,AR-J,annual,2019,gas oil combustion consumption by to the public,1.33644,TJ,CO2,74100.0,kg/TJ,99030.20400000001,kg +b121ab16-c847-3ad8-89d1-c15f5d2a64d5,SESCO,II.1.1,San Juan,AR-J,annual,2019,gas oil combustion consumption by to the public,1.33644,TJ,CH4,3.9,kg/TJ,5.212116,kg +b121ab16-c847-3ad8-89d1-c15f5d2a64d5,SESCO,II.1.1,San Juan,AR-J,annual,2019,gas oil combustion consumption by to the public,1.33644,TJ,N2O,3.9,kg/TJ,5.212116,kg +d2122981-496c-3175-8c93-bc894d9ad32f,SESCO,II.1.1,San Luis,AR-D,annual,2019,gas oil combustion consumption by to the public,0.86688,TJ,CO2,74100.0,kg/TJ,64235.808,kg +67dd1776-6b7f-322f-b290-0a26543b9c1b,SESCO,II.1.1,San Luis,AR-D,annual,2019,gas oil combustion consumption by to the public,0.86688,TJ,CH4,3.9,kg/TJ,3.380832,kg +67dd1776-6b7f-322f-b290-0a26543b9c1b,SESCO,II.1.1,San Luis,AR-D,annual,2019,gas oil combustion consumption by to the public,0.86688,TJ,N2O,3.9,kg/TJ,3.380832,kg +0ad379b5-fcf4-3e25-889c-eee22e3068c7,SESCO,II.1.1,Santa Fe,AR-S,annual,2019,gas oil combustion consumption by to the public,1656.2826,TJ,CO2,74100.0,kg/TJ,122730540.66,kg +1e33e9c2-14c1-386b-87ab-ab4a6d7e55b5,SESCO,II.1.1,Santa Fe,AR-S,annual,2019,gas oil combustion consumption by to the public,1656.2826,TJ,CH4,3.9,kg/TJ,6459.50214,kg +1e33e9c2-14c1-386b-87ab-ab4a6d7e55b5,SESCO,II.1.1,Santa Fe,AR-S,annual,2019,gas oil combustion consumption by to the public,1656.2826,TJ,N2O,3.9,kg/TJ,6459.50214,kg +df759eea-95c1-3839-8bf1-3e0c95bb37c0,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2019,gas oil combustion consumption by to the public,13.94232,TJ,CO2,74100.0,kg/TJ,1033125.912,kg +4bff9dca-f84c-3905-b873-d61a85574356,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2019,gas oil combustion consumption by to the public,13.94232,TJ,CH4,3.9,kg/TJ,54.375048,kg +4bff9dca-f84c-3905-b873-d61a85574356,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2019,gas oil combustion consumption by to the public,13.94232,TJ,N2O,3.9,kg/TJ,54.375048,kg +abbfcc0c-6bcd-3a3e-96ca-1e82647c462c,SESCO,II.1.1,Tucuman,AR-T,annual,2019,gas oil combustion consumption by to the public,3.90096,TJ,CO2,74100.0,kg/TJ,289061.136,kg +d81dddce-31c6-3c07-b430-bbe875724af0,SESCO,II.1.1,Tucuman,AR-T,annual,2019,gas oil combustion consumption by to the public,3.90096,TJ,CH4,3.9,kg/TJ,15.213744,kg +d81dddce-31c6-3c07-b430-bbe875724af0,SESCO,II.1.1,Tucuman,AR-T,annual,2019,gas oil combustion consumption by to the public,3.90096,TJ,N2O,3.9,kg/TJ,15.213744,kg +c835af05-65f4-312f-bc31-76384f6c77c1,SESCO,II.1.1,Buenos Aires,AR-B,annual,2019,gas oil combustion consumption by to the public,374.78112,TJ,CO2,74100.0,kg/TJ,27771280.992,kg +6dad6bbb-e604-374d-8d2e-cb8f30201285,SESCO,II.1.1,Buenos Aires,AR-B,annual,2019,gas oil combustion consumption by to the public,374.78112,TJ,CH4,3.9,kg/TJ,1461.646368,kg +6dad6bbb-e604-374d-8d2e-cb8f30201285,SESCO,II.1.1,Buenos Aires,AR-B,annual,2019,gas oil combustion consumption by to the public,374.78112,TJ,N2O,3.9,kg/TJ,1461.646368,kg +896ab571-f908-35f1-b130-06cd9af4835c,SESCO,II.1.1,Capital Federal,AR-C,annual,2019,gas oil combustion consumption by to the public,13.0032,TJ,CO2,74100.0,kg/TJ,963537.12,kg +30e54ee4-4e96-3f90-aaf6-3155ceb1f0d3,SESCO,II.1.1,Capital Federal,AR-C,annual,2019,gas oil combustion consumption by to the public,13.0032,TJ,CH4,3.9,kg/TJ,50.71248,kg +30e54ee4-4e96-3f90-aaf6-3155ceb1f0d3,SESCO,II.1.1,Capital Federal,AR-C,annual,2019,gas oil combustion consumption by to the public,13.0032,TJ,N2O,3.9,kg/TJ,50.71248,kg +85a645da-c038-35a6-a5fd-0ac40b2ec5f6,SESCO,II.1.1,Catamarca,AR-K,annual,2019,gas oil combustion consumption by to the public,0.39732,TJ,CO2,74100.0,kg/TJ,29441.412,kg +476f10f9-2789-32e6-bbd6-1a673558b1f6,SESCO,II.1.1,Catamarca,AR-K,annual,2019,gas oil combustion consumption by to the public,0.39732,TJ,CH4,3.9,kg/TJ,1.549548,kg +476f10f9-2789-32e6-bbd6-1a673558b1f6,SESCO,II.1.1,Catamarca,AR-K,annual,2019,gas oil combustion consumption by to the public,0.39732,TJ,N2O,3.9,kg/TJ,1.549548,kg +75937765-9ecd-35af-abcb-4fe98205d537,SESCO,II.1.1,Chaco,AR-H,annual,2019,gas oil combustion consumption by to the public,15.56772,TJ,CO2,74100.0,kg/TJ,1153568.052,kg +70ea655b-3e89-3f81-a61f-8fc3d1ee9700,SESCO,II.1.1,Chaco,AR-H,annual,2019,gas oil combustion consumption by to the public,15.56772,TJ,CH4,3.9,kg/TJ,60.714107999999996,kg +70ea655b-3e89-3f81-a61f-8fc3d1ee9700,SESCO,II.1.1,Chaco,AR-H,annual,2019,gas oil combustion consumption by to the public,15.56772,TJ,N2O,3.9,kg/TJ,60.714107999999996,kg +1e9c8c7d-9e0b-33b9-a9f7-da9c0f16355d,SESCO,II.1.1,Corrientes,AR-W,annual,2019,gas oil combustion consumption by to the public,5.30964,TJ,CO2,74100.0,kg/TJ,393444.324,kg +e98ce461-0ad1-3b0e-a8cc-28676e9e3ca4,SESCO,II.1.1,Corrientes,AR-W,annual,2019,gas oil combustion consumption by to the public,5.30964,TJ,CH4,3.9,kg/TJ,20.707596,kg +e98ce461-0ad1-3b0e-a8cc-28676e9e3ca4,SESCO,II.1.1,Corrientes,AR-W,annual,2019,gas oil combustion consumption by to the public,5.30964,TJ,N2O,3.9,kg/TJ,20.707596,kg +cb66139c-ef1f-3a1e-8a71-01647f266219,SESCO,II.1.1,Córdoba,AR-X,annual,2019,gas oil combustion consumption by to the public,269.8164,TJ,CO2,74100.0,kg/TJ,19993395.24,kg +1dc32401-7f2e-3119-acb5-49d7968a7997,SESCO,II.1.1,Córdoba,AR-X,annual,2019,gas oil combustion consumption by to the public,269.8164,TJ,CH4,3.9,kg/TJ,1052.28396,kg +1dc32401-7f2e-3119-acb5-49d7968a7997,SESCO,II.1.1,Córdoba,AR-X,annual,2019,gas oil combustion consumption by to the public,269.8164,TJ,N2O,3.9,kg/TJ,1052.28396,kg +b54f7c49-1278-3443-9bf4-2be9eeba9651,SESCO,II.1.1,Entre Rios,AR-E,annual,2019,gas oil combustion consumption by to the public,9.06612,TJ,CO2,74100.0,kg/TJ,671799.492,kg +836ce3e6-16ab-3925-b8dc-495a69103743,SESCO,II.1.1,Entre Rios,AR-E,annual,2019,gas oil combustion consumption by to the public,9.06612,TJ,CH4,3.9,kg/TJ,35.357867999999996,kg +836ce3e6-16ab-3925-b8dc-495a69103743,SESCO,II.1.1,Entre Rios,AR-E,annual,2019,gas oil combustion consumption by to the public,9.06612,TJ,N2O,3.9,kg/TJ,35.357867999999996,kg +d75eb030-93ca-3ec5-9d7e-1ee4eac8df94,SESCO,II.1.1,Mendoza,AR-M,annual,2019,gas oil combustion consumption by to the public,78.52488,TJ,CO2,74100.0,kg/TJ,5818693.608,kg +af46014a-a434-3a52-a6d2-b174ca1df01d,SESCO,II.1.1,Mendoza,AR-M,annual,2019,gas oil combustion consumption by to the public,78.52488,TJ,CH4,3.9,kg/TJ,306.247032,kg +af46014a-a434-3a52-a6d2-b174ca1df01d,SESCO,II.1.1,Mendoza,AR-M,annual,2019,gas oil combustion consumption by to the public,78.52488,TJ,N2O,3.9,kg/TJ,306.247032,kg +d5216da4-1667-36ef-8e66-778d923d4dcc,SESCO,II.1.1,Misiones,AR-N,annual,2019,gas oil combustion consumption by to the public,13.545,TJ,CO2,74100.0,kg/TJ,1003684.5,kg +553816eb-f42f-34c9-b2c4-1f6334b632ee,SESCO,II.1.1,Misiones,AR-N,annual,2019,gas oil combustion consumption by to the public,13.545,TJ,CH4,3.9,kg/TJ,52.8255,kg +553816eb-f42f-34c9-b2c4-1f6334b632ee,SESCO,II.1.1,Misiones,AR-N,annual,2019,gas oil combustion consumption by to the public,13.545,TJ,N2O,3.9,kg/TJ,52.8255,kg +1f9b135f-02ca-3440-8566-156f5f683785,SESCO,II.1.1,Santa Fe,AR-S,annual,2019,gas oil combustion consumption by to the public,188.727,TJ,CO2,74100.0,kg/TJ,13984670.700000001,kg +8d56c633-8d69-3f50-89be-3d4b3a5ace87,SESCO,II.1.1,Santa Fe,AR-S,annual,2019,gas oil combustion consumption by to the public,188.727,TJ,CH4,3.9,kg/TJ,736.0353,kg +8d56c633-8d69-3f50-89be-3d4b3a5ace87,SESCO,II.1.1,Santa Fe,AR-S,annual,2019,gas oil combustion consumption by to the public,188.727,TJ,N2O,3.9,kg/TJ,736.0353,kg +ef5e0ad5-0a67-3801-9587-c709bad4ce56,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2019,gas oil combustion consumption by to the public,4.44276,TJ,CO2,74100.0,kg/TJ,329208.516,kg +836066f3-46dd-3847-b3be-9cf024a9fe6f,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2019,gas oil combustion consumption by to the public,4.44276,TJ,CH4,3.9,kg/TJ,17.326763999999997,kg +836066f3-46dd-3847-b3be-9cf024a9fe6f,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2019,gas oil combustion consumption by to the public,4.44276,TJ,N2O,3.9,kg/TJ,17.326763999999997,kg +b9fa39fa-e512-3d9a-bc25-0be2e90dbea0,SESCO,II.1.1,Tucuman,AR-T,annual,2019,gas oil combustion consumption by to the public,0.79464,TJ,CO2,74100.0,kg/TJ,58882.824,kg +c5c04d8e-1cb1-3ce6-adf2-d2d24c6a064b,SESCO,II.1.1,Tucuman,AR-T,annual,2019,gas oil combustion consumption by to the public,0.79464,TJ,CH4,3.9,kg/TJ,3.099096,kg +c5c04d8e-1cb1-3ce6-adf2-d2d24c6a064b,SESCO,II.1.1,Tucuman,AR-T,annual,2019,gas oil combustion consumption by to the public,0.79464,TJ,N2O,3.9,kg/TJ,3.099096,kg +e830a96f-1bec-3e49-86ea-ba3c2c910593,SESCO,II.1.1,Santa Fe,AR-S,annual,2019,jet kerosene combustion consumption by to the public,3.5856419999999996,TJ,CO2,71500.0,kg/TJ,256373.40299999996,kg +af271562-9db7-3db6-aaa2-337be2a7cf87,SESCO,II.1.1,Santa Fe,AR-S,annual,2019,jet kerosene combustion consumption by to the public,3.5856419999999996,TJ,CH4,0.5,kg/TJ,1.7928209999999998,kg +a1280ca4-9d42-3c3e-b381-b07cc0abc4d7,SESCO,II.1.1,Santa Fe,AR-S,annual,2019,jet kerosene combustion consumption by to the public,3.5856419999999996,TJ,N2O,2.0,kg/TJ,7.171283999999999,kg +42e3c708-5be6-3955-b9d0-1e43173d8e4a,SESCO,I.3.1,Buenos Aires,AR-B,annual,2019,gas oil combustion consumption by petrochemical industries,27.234479999999998,TJ,CO2,74100.0,kg/TJ,2018074.9679999999,kg +a413af96-53f5-3a61-b0ad-0f43b1817a1e,SESCO,I.3.1,Buenos Aires,AR-B,annual,2019,gas oil combustion consumption by petrochemical industries,27.234479999999998,TJ,CH4,3.9,kg/TJ,106.21447199999999,kg +a413af96-53f5-3a61-b0ad-0f43b1817a1e,SESCO,I.3.1,Buenos Aires,AR-B,annual,2019,gas oil combustion consumption by petrochemical industries,27.234479999999998,TJ,N2O,3.9,kg/TJ,106.21447199999999,kg +bacc9905-1153-32b2-8303-b1ad786252e3,SESCO,I.3.1,Capital Federal,AR-C,annual,2019,gas oil combustion consumption by petrochemical industries,1.4447999999999999,TJ,CO2,74100.0,kg/TJ,107059.68,kg +1bb00c0a-5bd4-3908-8095-9e5500cdfd53,SESCO,I.3.1,Capital Federal,AR-C,annual,2019,gas oil combustion consumption by petrochemical industries,1.4447999999999999,TJ,CH4,3.9,kg/TJ,5.63472,kg +1bb00c0a-5bd4-3908-8095-9e5500cdfd53,SESCO,I.3.1,Capital Federal,AR-C,annual,2019,gas oil combustion consumption by petrochemical industries,1.4447999999999999,TJ,N2O,3.9,kg/TJ,5.63472,kg +42bcfec2-08aa-3d5a-8467-bb48a4cdc683,SESCO,II.1.1,Chubut,AR-U,annual,2019,gas oil combustion consumption by freight transport,1.1706492,TJ,CO2,74100.0,kg/TJ,86745.10571999999,kg +01025cc4-9226-345b-a16f-eb8f04128053,SESCO,II.1.1,Chubut,AR-U,annual,2019,gas oil combustion consumption by freight transport,1.1706492,TJ,CH4,3.9,kg/TJ,4.56553188,kg +01025cc4-9226-345b-a16f-eb8f04128053,SESCO,II.1.1,Chubut,AR-U,annual,2019,gas oil combustion consumption by freight transport,1.1706492,TJ,N2O,3.9,kg/TJ,4.56553188,kg +e21dc272-d7b5-3e95-931d-3d1e3f6ea6ff,SESCO,II.5.1,Buenos Aires,AR-B,annual,2019,gas oil combustion consumption by agriculture machines,459.19356,TJ,CO2,74100.0,kg/TJ,34026242.796,kg +93665390-0083-3e5a-a611-71f7415f4d19,SESCO,II.5.1,Buenos Aires,AR-B,annual,2019,gas oil combustion consumption by agriculture machines,459.19356,TJ,CH4,3.9,kg/TJ,1790.8548839999999,kg +93665390-0083-3e5a-a611-71f7415f4d19,SESCO,II.5.1,Buenos Aires,AR-B,annual,2019,gas oil combustion consumption by agriculture machines,459.19356,TJ,N2O,3.9,kg/TJ,1790.8548839999999,kg +aa824116-9ea4-3007-8edd-4b15a0da7e9c,SESCO,II.5.1,Chaco,AR-H,annual,2019,gas oil combustion consumption by agriculture machines,103.98948,TJ,CO2,74100.0,kg/TJ,7705620.468,kg +cbd98cbf-a25f-3c6a-841e-d0e87e1ec1ee,SESCO,II.5.1,Chaco,AR-H,annual,2019,gas oil combustion consumption by agriculture machines,103.98948,TJ,CH4,3.9,kg/TJ,405.558972,kg +cbd98cbf-a25f-3c6a-841e-d0e87e1ec1ee,SESCO,II.5.1,Chaco,AR-H,annual,2019,gas oil combustion consumption by agriculture machines,103.98948,TJ,N2O,3.9,kg/TJ,405.558972,kg +62c53aae-8911-3d92-bae4-33755ebff699,SESCO,II.5.1,Corrientes,AR-W,annual,2019,gas oil combustion consumption by agriculture machines,30.55752,TJ,CO2,74100.0,kg/TJ,2264312.232,kg +cd60f2e7-e016-3bc5-861c-eb8564c2fab6,SESCO,II.5.1,Corrientes,AR-W,annual,2019,gas oil combustion consumption by agriculture machines,30.55752,TJ,CH4,3.9,kg/TJ,119.174328,kg +cd60f2e7-e016-3bc5-861c-eb8564c2fab6,SESCO,II.5.1,Corrientes,AR-W,annual,2019,gas oil combustion consumption by agriculture machines,30.55752,TJ,N2O,3.9,kg/TJ,119.174328,kg +af74961a-9edc-3def-b1b0-0a442be74361,SESCO,II.5.1,Córdoba,AR-X,annual,2019,gas oil combustion consumption by agriculture machines,485.34443999999996,TJ,CO2,74100.0,kg/TJ,35964023.004,kg +f43fecf1-047f-30ac-a191-b77cc4396f30,SESCO,II.5.1,Córdoba,AR-X,annual,2019,gas oil combustion consumption by agriculture machines,485.34443999999996,TJ,CH4,3.9,kg/TJ,1892.8433159999997,kg +f43fecf1-047f-30ac-a191-b77cc4396f30,SESCO,II.5.1,Córdoba,AR-X,annual,2019,gas oil combustion consumption by agriculture machines,485.34443999999996,TJ,N2O,3.9,kg/TJ,1892.8433159999997,kg +9d5f5eed-9ba7-3321-91fa-d3d5fe178787,SESCO,II.5.1,Entre Rios,AR-E,annual,2019,gas oil combustion consumption by agriculture machines,24.41712,TJ,CO2,74100.0,kg/TJ,1809308.592,kg +9cd29067-175d-37e0-b36b-56fb0d15f826,SESCO,II.5.1,Entre Rios,AR-E,annual,2019,gas oil combustion consumption by agriculture machines,24.41712,TJ,CH4,3.9,kg/TJ,95.226768,kg +9cd29067-175d-37e0-b36b-56fb0d15f826,SESCO,II.5.1,Entre Rios,AR-E,annual,2019,gas oil combustion consumption by agriculture machines,24.41712,TJ,N2O,3.9,kg/TJ,95.226768,kg +a9470864-6d9c-37a4-ae3b-cbdd85ebd5ba,SESCO,II.5.1,Mendoza,AR-M,annual,2019,gas oil combustion consumption by agriculture machines,252.18984,TJ,CO2,74100.0,kg/TJ,18687267.144,kg +fcddc887-de64-3ff7-98c2-55467f449e0f,SESCO,II.5.1,Mendoza,AR-M,annual,2019,gas oil combustion consumption by agriculture machines,252.18984,TJ,CH4,3.9,kg/TJ,983.540376,kg +fcddc887-de64-3ff7-98c2-55467f449e0f,SESCO,II.5.1,Mendoza,AR-M,annual,2019,gas oil combustion consumption by agriculture machines,252.18984,TJ,N2O,3.9,kg/TJ,983.540376,kg +0da67008-7bd6-3576-bfc2-6f40b6adf41e,SESCO,II.5.1,Santa Fe,AR-S,annual,2019,gas oil combustion consumption by agriculture machines,621.30012,TJ,CO2,74100.0,kg/TJ,46038338.892,kg +fbcb9a5e-0d02-3756-a1c1-689923cb386a,SESCO,II.5.1,Santa Fe,AR-S,annual,2019,gas oil combustion consumption by agriculture machines,621.30012,TJ,CH4,3.9,kg/TJ,2423.070468,kg +fbcb9a5e-0d02-3756-a1c1-689923cb386a,SESCO,II.5.1,Santa Fe,AR-S,annual,2019,gas oil combustion consumption by agriculture machines,621.30012,TJ,N2O,3.9,kg/TJ,2423.070468,kg +fd251cc3-8926-33f9-8fc6-c7676c04e9a1,SESCO,II.5.1,Santiago del Estero,AR-G,annual,2019,gas oil combustion consumption by agriculture machines,42.00756,TJ,CO2,74100.0,kg/TJ,3112760.196,kg +b7519c6b-d122-32c5-8abf-8a831a8a90f5,SESCO,II.5.1,Santiago del Estero,AR-G,annual,2019,gas oil combustion consumption by agriculture machines,42.00756,TJ,CH4,3.9,kg/TJ,163.82948399999998,kg +b7519c6b-d122-32c5-8abf-8a831a8a90f5,SESCO,II.5.1,Santiago del Estero,AR-G,annual,2019,gas oil combustion consumption by agriculture machines,42.00756,TJ,N2O,3.9,kg/TJ,163.82948399999998,kg +20d3c8bd-9a9c-31d6-9b28-1ae356b22990,SESCO,II.5.1,Tucuman,AR-T,annual,2019,gas oil combustion consumption by agriculture machines,26.62044,TJ,CO2,74100.0,kg/TJ,1972574.6039999998,kg +51e5326e-ca20-3e09-88e5-05b2ac2cd122,SESCO,II.5.1,Tucuman,AR-T,annual,2019,gas oil combustion consumption by agriculture machines,26.62044,TJ,CH4,3.9,kg/TJ,103.81971599999999,kg +51e5326e-ca20-3e09-88e5-05b2ac2cd122,SESCO,II.5.1,Tucuman,AR-T,annual,2019,gas oil combustion consumption by agriculture machines,26.62044,TJ,N2O,3.9,kg/TJ,103.81971599999999,kg +9af981e4-54f7-3881-9c59-eb874c4e5927,SESCO,II.5.1,Buenos Aires,AR-B,annual,2019,gas oil combustion consumption by agriculture machines,17.80716,TJ,CO2,74100.0,kg/TJ,1319510.5559999999,kg +399560fd-e972-3d51-82c2-52dc9c4bf85a,SESCO,II.5.1,Buenos Aires,AR-B,annual,2019,gas oil combustion consumption by agriculture machines,17.80716,TJ,CH4,3.9,kg/TJ,69.447924,kg +399560fd-e972-3d51-82c2-52dc9c4bf85a,SESCO,II.5.1,Buenos Aires,AR-B,annual,2019,gas oil combustion consumption by agriculture machines,17.80716,TJ,N2O,3.9,kg/TJ,69.447924,kg +09c82553-218f-33c1-a726-c27fdfa5c93b,SESCO,II.5.1,Chaco,AR-H,annual,2019,gas oil combustion consumption by agriculture machines,23.40576,TJ,CO2,74100.0,kg/TJ,1734366.816,kg +617d4aaf-e75d-359f-9453-ad269e7b75c8,SESCO,II.5.1,Chaco,AR-H,annual,2019,gas oil combustion consumption by agriculture machines,23.40576,TJ,CH4,3.9,kg/TJ,91.282464,kg +617d4aaf-e75d-359f-9453-ad269e7b75c8,SESCO,II.5.1,Chaco,AR-H,annual,2019,gas oil combustion consumption by agriculture machines,23.40576,TJ,N2O,3.9,kg/TJ,91.282464,kg +3f2eebf7-42db-38e9-a676-fce8cf3ffe2e,SESCO,II.5.1,Corrientes,AR-W,annual,2019,gas oil combustion consumption by agriculture machines,11.26944,TJ,CO2,74100.0,kg/TJ,835065.504,kg +ffe5c9c6-6c0f-31f1-9df8-ca831424fed0,SESCO,II.5.1,Corrientes,AR-W,annual,2019,gas oil combustion consumption by agriculture machines,11.26944,TJ,CH4,3.9,kg/TJ,43.950815999999996,kg +ffe5c9c6-6c0f-31f1-9df8-ca831424fed0,SESCO,II.5.1,Corrientes,AR-W,annual,2019,gas oil combustion consumption by agriculture machines,11.26944,TJ,N2O,3.9,kg/TJ,43.950815999999996,kg +f02c745c-591d-338b-b5c0-ceaae65c492a,SESCO,II.5.1,Córdoba,AR-X,annual,2019,gas oil combustion consumption by agriculture machines,34.78356,TJ,CO2,74100.0,kg/TJ,2577461.796,kg +a0bb699e-dc34-35cb-9e28-907ef759d7bc,SESCO,II.5.1,Córdoba,AR-X,annual,2019,gas oil combustion consumption by agriculture machines,34.78356,TJ,CH4,3.9,kg/TJ,135.65588400000001,kg +a0bb699e-dc34-35cb-9e28-907ef759d7bc,SESCO,II.5.1,Córdoba,AR-X,annual,2019,gas oil combustion consumption by agriculture machines,34.78356,TJ,N2O,3.9,kg/TJ,135.65588400000001,kg +eb4a2748-740c-3ea7-a9f4-ee01e0740338,SESCO,II.5.1,Mendoza,AR-M,annual,2019,gas oil combustion consumption by agriculture machines,68.2668,TJ,CO2,74100.0,kg/TJ,5058569.88,kg +1e7d1a83-afa6-3372-a9de-e9394be318d6,SESCO,II.5.1,Mendoza,AR-M,annual,2019,gas oil combustion consumption by agriculture machines,68.2668,TJ,CH4,3.9,kg/TJ,266.24052,kg +1e7d1a83-afa6-3372-a9de-e9394be318d6,SESCO,II.5.1,Mendoza,AR-M,annual,2019,gas oil combustion consumption by agriculture machines,68.2668,TJ,N2O,3.9,kg/TJ,266.24052,kg +4d5e2cf3-7df7-3878-bdac-8396c95ceca4,SESCO,II.5.1,Santa Fe,AR-S,annual,2019,gas oil combustion consumption by agriculture machines,19.39644,TJ,CO2,74100.0,kg/TJ,1437276.204,kg +cf33c530-a42c-3e8d-b672-cd00aa922598,SESCO,II.5.1,Santa Fe,AR-S,annual,2019,gas oil combustion consumption by agriculture machines,19.39644,TJ,CH4,3.9,kg/TJ,75.64611599999999,kg +cf33c530-a42c-3e8d-b672-cd00aa922598,SESCO,II.5.1,Santa Fe,AR-S,annual,2019,gas oil combustion consumption by agriculture machines,19.39644,TJ,N2O,3.9,kg/TJ,75.64611599999999,kg +a2d56b19-f66f-3a84-8d72-88833e0cba8e,SESCO,II.5.1,Santiago del Estero,AR-G,annual,2019,gas oil combustion consumption by agriculture machines,3.68424,TJ,CO2,74100.0,kg/TJ,273002.184,kg +dd1034fd-ce41-3f2e-b6b4-5b6b4e068756,SESCO,II.5.1,Santiago del Estero,AR-G,annual,2019,gas oil combustion consumption by agriculture machines,3.68424,TJ,CH4,3.9,kg/TJ,14.368535999999999,kg +dd1034fd-ce41-3f2e-b6b4-5b6b4e068756,SESCO,II.5.1,Santiago del Estero,AR-G,annual,2019,gas oil combustion consumption by agriculture machines,3.68424,TJ,N2O,3.9,kg/TJ,14.368535999999999,kg +01c9cb95-ce75-373c-bfec-961234a9e2ab,SESCO,II.5.1,Tucuman,AR-T,annual,2019,gas oil combustion consumption by agriculture machines,7.29624,TJ,CO2,74100.0,kg/TJ,540651.384,kg +572cd37f-688f-3a78-af4c-451bfa478492,SESCO,II.5.1,Tucuman,AR-T,annual,2019,gas oil combustion consumption by agriculture machines,7.29624,TJ,CH4,3.9,kg/TJ,28.455336,kg +572cd37f-688f-3a78-af4c-451bfa478492,SESCO,II.5.1,Tucuman,AR-T,annual,2019,gas oil combustion consumption by agriculture machines,7.29624,TJ,N2O,3.9,kg/TJ,28.455336,kg +c258b39c-21a2-33b6-93a4-ebee60d9d02f,SESCO,II.1.1,Buenos Aires,AR-B,annual,2019,gas oil combustion consumption by to the public,2149.28448,TJ,CO2,74100.0,kg/TJ,159261979.968,kg +89fef529-1c12-31e8-ba84-dc0d62f6f199,SESCO,II.1.1,Buenos Aires,AR-B,annual,2019,gas oil combustion consumption by to the public,2149.28448,TJ,CH4,3.9,kg/TJ,8382.209471999999,kg +89fef529-1c12-31e8-ba84-dc0d62f6f199,SESCO,II.1.1,Buenos Aires,AR-B,annual,2019,gas oil combustion consumption by to the public,2149.28448,TJ,N2O,3.9,kg/TJ,8382.209471999999,kg +521a527f-08a7-3fa4-b122-25117bf3541c,SESCO,II.1.1,Capital Federal,AR-C,annual,2019,gas oil combustion consumption by to the public,195.98712,TJ,CO2,74100.0,kg/TJ,14522645.592,kg +7e12bc3d-ac74-35c8-aebb-699492889140,SESCO,II.1.1,Capital Federal,AR-C,annual,2019,gas oil combustion consumption by to the public,195.98712,TJ,CH4,3.9,kg/TJ,764.349768,kg +7e12bc3d-ac74-35c8-aebb-699492889140,SESCO,II.1.1,Capital Federal,AR-C,annual,2019,gas oil combustion consumption by to the public,195.98712,TJ,N2O,3.9,kg/TJ,764.349768,kg +e429ea82-d066-3fb9-a040-cb740d1112a3,SESCO,II.1.1,Catamarca,AR-K,annual,2019,gas oil combustion consumption by to the public,69.45876,TJ,CO2,74100.0,kg/TJ,5146894.115999999,kg +5045a269-f963-3e95-b8c9-1314c5069b98,SESCO,II.1.1,Catamarca,AR-K,annual,2019,gas oil combustion consumption by to the public,69.45876,TJ,CH4,3.9,kg/TJ,270.889164,kg +5045a269-f963-3e95-b8c9-1314c5069b98,SESCO,II.1.1,Catamarca,AR-K,annual,2019,gas oil combustion consumption by to the public,69.45876,TJ,N2O,3.9,kg/TJ,270.889164,kg +29e359e4-82ae-3cf3-a2a5-df4c468eff11,SESCO,II.1.1,Chaco,AR-H,annual,2019,gas oil combustion consumption by to the public,71.40924,TJ,CO2,74100.0,kg/TJ,5291424.683999999,kg +b8915d5c-c863-347e-b959-907a2ea8117f,SESCO,II.1.1,Chaco,AR-H,annual,2019,gas oil combustion consumption by to the public,71.40924,TJ,CH4,3.9,kg/TJ,278.496036,kg +b8915d5c-c863-347e-b959-907a2ea8117f,SESCO,II.1.1,Chaco,AR-H,annual,2019,gas oil combustion consumption by to the public,71.40924,TJ,N2O,3.9,kg/TJ,278.496036,kg +af043df3-2cc2-3b43-89cd-f430b63978cc,SESCO,II.1.1,Chubut,AR-U,annual,2019,gas oil combustion consumption by to the public,427.26348,TJ,CO2,74100.0,kg/TJ,31660223.868,kg +b91330aa-a84c-3cfa-9cc7-35e077244212,SESCO,II.1.1,Chubut,AR-U,annual,2019,gas oil combustion consumption by to the public,427.26348,TJ,CH4,3.9,kg/TJ,1666.327572,kg +b91330aa-a84c-3cfa-9cc7-35e077244212,SESCO,II.1.1,Chubut,AR-U,annual,2019,gas oil combustion consumption by to the public,427.26348,TJ,N2O,3.9,kg/TJ,1666.327572,kg +25124378-8846-3a63-aa63-11a72b86f9e3,SESCO,II.1.1,Corrientes,AR-W,annual,2019,gas oil combustion consumption by to the public,149.3562,TJ,CO2,74100.0,kg/TJ,11067294.42,kg +b091107b-6f46-3143-b443-b74365159ba1,SESCO,II.1.1,Corrientes,AR-W,annual,2019,gas oil combustion consumption by to the public,149.3562,TJ,CH4,3.9,kg/TJ,582.48918,kg +b091107b-6f46-3143-b443-b74365159ba1,SESCO,II.1.1,Corrientes,AR-W,annual,2019,gas oil combustion consumption by to the public,149.3562,TJ,N2O,3.9,kg/TJ,582.48918,kg +322d9719-fd33-3f9c-a44b-05d8b58bfba9,SESCO,II.1.1,Córdoba,AR-X,annual,2019,gas oil combustion consumption by to the public,931.60704,TJ,CO2,74100.0,kg/TJ,69032081.664,kg +05145efc-37ad-3cb1-8b80-f67236ec94d4,SESCO,II.1.1,Córdoba,AR-X,annual,2019,gas oil combustion consumption by to the public,931.60704,TJ,CH4,3.9,kg/TJ,3633.267456,kg +05145efc-37ad-3cb1-8b80-f67236ec94d4,SESCO,II.1.1,Córdoba,AR-X,annual,2019,gas oil combustion consumption by to the public,931.60704,TJ,N2O,3.9,kg/TJ,3633.267456,kg +6233c910-9d78-308d-82fb-7578d5eccc1c,SESCO,II.1.1,Entre Rios,AR-E,annual,2019,gas oil combustion consumption by to the public,326.84988,TJ,CO2,74100.0,kg/TJ,24219576.108,kg +58772162-1d61-3829-857d-26556fd3e7fc,SESCO,II.1.1,Entre Rios,AR-E,annual,2019,gas oil combustion consumption by to the public,326.84988,TJ,CH4,3.9,kg/TJ,1274.714532,kg +58772162-1d61-3829-857d-26556fd3e7fc,SESCO,II.1.1,Entre Rios,AR-E,annual,2019,gas oil combustion consumption by to the public,326.84988,TJ,N2O,3.9,kg/TJ,1274.714532,kg +b7cbc94d-0739-39c9-b0bf-b143f021f15f,SESCO,II.1.1,Formosa,AR-P,annual,2019,gas oil combustion consumption by to the public,94.6344,TJ,CO2,74100.0,kg/TJ,7012409.04,kg +cc5da877-c164-3968-b6ce-8c568a4e30ca,SESCO,II.1.1,Formosa,AR-P,annual,2019,gas oil combustion consumption by to the public,94.6344,TJ,CH4,3.9,kg/TJ,369.07416,kg +cc5da877-c164-3968-b6ce-8c568a4e30ca,SESCO,II.1.1,Formosa,AR-P,annual,2019,gas oil combustion consumption by to the public,94.6344,TJ,N2O,3.9,kg/TJ,369.07416,kg +7683bc6e-696e-35df-b1f7-7d5894108fa0,SESCO,II.1.1,Jujuy,AR-Y,annual,2019,gas oil combustion consumption by to the public,40.77948,TJ,CO2,74100.0,kg/TJ,3021759.468,kg +b10f2244-02fb-3601-ad89-47d8ac26c60e,SESCO,II.1.1,Jujuy,AR-Y,annual,2019,gas oil combustion consumption by to the public,40.77948,TJ,CH4,3.9,kg/TJ,159.039972,kg +b10f2244-02fb-3601-ad89-47d8ac26c60e,SESCO,II.1.1,Jujuy,AR-Y,annual,2019,gas oil combustion consumption by to the public,40.77948,TJ,N2O,3.9,kg/TJ,159.039972,kg +89dc2f02-3401-37f9-9be6-fa43d00b0aed,SESCO,II.1.1,La Pampa,AR-L,annual,2019,gas oil combustion consumption by to the public,96.83772,TJ,CO2,74100.0,kg/TJ,7175675.052,kg +4990da5f-0402-3755-8503-55a98797cea5,SESCO,II.1.1,La Pampa,AR-L,annual,2019,gas oil combustion consumption by to the public,96.83772,TJ,CH4,3.9,kg/TJ,377.667108,kg +4990da5f-0402-3755-8503-55a98797cea5,SESCO,II.1.1,La Pampa,AR-L,annual,2019,gas oil combustion consumption by to the public,96.83772,TJ,N2O,3.9,kg/TJ,377.667108,kg +c22087e8-ec0a-3df8-9b0a-cc082e87dc04,SESCO,II.1.1,La Rioja,AR-F,annual,2019,gas oil combustion consumption by to the public,13.1838,TJ,CO2,74100.0,kg/TJ,976919.58,kg +eb243e8e-7ca7-3678-af28-c0ff91754f80,SESCO,II.1.1,La Rioja,AR-F,annual,2019,gas oil combustion consumption by to the public,13.1838,TJ,CH4,3.9,kg/TJ,51.41682,kg +eb243e8e-7ca7-3678-af28-c0ff91754f80,SESCO,II.1.1,La Rioja,AR-F,annual,2019,gas oil combustion consumption by to the public,13.1838,TJ,N2O,3.9,kg/TJ,51.41682,kg +4e2d93a8-4478-3dae-b922-eb292f01979b,SESCO,II.1.1,Mendoza,AR-M,annual,2019,gas oil combustion consumption by to the public,286.75668,TJ,CO2,74100.0,kg/TJ,21248669.988,kg +66d3514f-7666-3a40-93cd-e1ce775abfc2,SESCO,II.1.1,Mendoza,AR-M,annual,2019,gas oil combustion consumption by to the public,286.75668,TJ,CH4,3.9,kg/TJ,1118.351052,kg +66d3514f-7666-3a40-93cd-e1ce775abfc2,SESCO,II.1.1,Mendoza,AR-M,annual,2019,gas oil combustion consumption by to the public,286.75668,TJ,N2O,3.9,kg/TJ,1118.351052,kg +38f3c091-18de-32bb-bcda-d6c8673841ca,SESCO,II.1.1,Misiones,AR-N,annual,2019,gas oil combustion consumption by to the public,171.28104,TJ,CO2,74100.0,kg/TJ,12691925.064,kg +065cb8ef-639f-3899-aaf5-1af35323743a,SESCO,II.1.1,Misiones,AR-N,annual,2019,gas oil combustion consumption by to the public,171.28104,TJ,CH4,3.9,kg/TJ,667.996056,kg +065cb8ef-639f-3899-aaf5-1af35323743a,SESCO,II.1.1,Misiones,AR-N,annual,2019,gas oil combustion consumption by to the public,171.28104,TJ,N2O,3.9,kg/TJ,667.996056,kg +396bed3d-a209-3805-8809-17a4308590a1,SESCO,II.1.1,Neuquén,AR-Q,annual,2019,gas oil combustion consumption by to the public,36.77016,TJ,CO2,74100.0,kg/TJ,2724668.8559999997,kg +e1563888-6789-32fa-92cd-4c08cceec7d9,SESCO,II.1.1,Neuquén,AR-Q,annual,2019,gas oil combustion consumption by to the public,36.77016,TJ,CH4,3.9,kg/TJ,143.40362399999998,kg +e1563888-6789-32fa-92cd-4c08cceec7d9,SESCO,II.1.1,Neuquén,AR-Q,annual,2019,gas oil combustion consumption by to the public,36.77016,TJ,N2O,3.9,kg/TJ,143.40362399999998,kg +fadf9c18-3a22-30f8-8042-7d639e49607b,SESCO,II.1.1,Rio Negro,AR-R,annual,2019,gas oil combustion consumption by to the public,134.11356,TJ,CO2,74100.0,kg/TJ,9937814.796,kg +85a49d40-dc97-34c5-bab1-1a7edde59d76,SESCO,II.1.1,Rio Negro,AR-R,annual,2019,gas oil combustion consumption by to the public,134.11356,TJ,CH4,3.9,kg/TJ,523.042884,kg +85a49d40-dc97-34c5-bab1-1a7edde59d76,SESCO,II.1.1,Rio Negro,AR-R,annual,2019,gas oil combustion consumption by to the public,134.11356,TJ,N2O,3.9,kg/TJ,523.042884,kg +85058053-8274-3250-a5a2-5b0a8d28aeeb,SESCO,II.1.1,Salta,AR-A,annual,2019,gas oil combustion consumption by to the public,14.55636,TJ,CO2,74100.0,kg/TJ,1078626.276,kg +ac03da5a-0192-3bfd-a7e3-432d953b70bc,SESCO,II.1.1,Salta,AR-A,annual,2019,gas oil combustion consumption by to the public,14.55636,TJ,CH4,3.9,kg/TJ,56.769804,kg +ac03da5a-0192-3bfd-a7e3-432d953b70bc,SESCO,II.1.1,Salta,AR-A,annual,2019,gas oil combustion consumption by to the public,14.55636,TJ,N2O,3.9,kg/TJ,56.769804,kg +36936686-095f-30fe-8728-2f2ee7f846cf,SESCO,II.1.1,San Juan,AR-J,annual,2019,gas oil combustion consumption by to the public,67.83336,TJ,CO2,74100.0,kg/TJ,5026451.976,kg +4b040d41-bc05-3949-b205-2a54f17ac537,SESCO,II.1.1,San Juan,AR-J,annual,2019,gas oil combustion consumption by to the public,67.83336,TJ,CH4,3.9,kg/TJ,264.550104,kg +4b040d41-bc05-3949-b205-2a54f17ac537,SESCO,II.1.1,San Juan,AR-J,annual,2019,gas oil combustion consumption by to the public,67.83336,TJ,N2O,3.9,kg/TJ,264.550104,kg +3529ba3d-c720-3aa4-a1a8-ca6aa6119dff,SESCO,II.1.1,San Luis,AR-D,annual,2019,gas oil combustion consumption by to the public,156.11064,TJ,CO2,74100.0,kg/TJ,11567798.423999999,kg +dff48eb0-0012-3519-8e9b-bf43f4791fee,SESCO,II.1.1,San Luis,AR-D,annual,2019,gas oil combustion consumption by to the public,156.11064,TJ,CH4,3.9,kg/TJ,608.8314959999999,kg +dff48eb0-0012-3519-8e9b-bf43f4791fee,SESCO,II.1.1,San Luis,AR-D,annual,2019,gas oil combustion consumption by to the public,156.11064,TJ,N2O,3.9,kg/TJ,608.8314959999999,kg +681004b1-1a8a-3140-9435-6750fc182cae,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2019,gas oil combustion consumption by to the public,168.21084,TJ,CO2,74100.0,kg/TJ,12464423.243999999,kg +b526482d-9b5d-3e05-a765-15d9362950dc,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2019,gas oil combustion consumption by to the public,168.21084,TJ,CH4,3.9,kg/TJ,656.0222759999999,kg +b526482d-9b5d-3e05-a765-15d9362950dc,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2019,gas oil combustion consumption by to the public,168.21084,TJ,N2O,3.9,kg/TJ,656.0222759999999,kg +3db297a6-18c0-3ba8-95d3-6aa2ef1af03f,SESCO,II.1.1,Santa Fe,AR-S,annual,2019,gas oil combustion consumption by to the public,538.15188,TJ,CO2,74100.0,kg/TJ,39877054.308,kg +a1563bd6-db5f-37e6-9c3a-06144dd65c77,SESCO,II.1.1,Santa Fe,AR-S,annual,2019,gas oil combustion consumption by to the public,538.15188,TJ,CH4,3.9,kg/TJ,2098.792332,kg +a1563bd6-db5f-37e6-9c3a-06144dd65c77,SESCO,II.1.1,Santa Fe,AR-S,annual,2019,gas oil combustion consumption by to the public,538.15188,TJ,N2O,3.9,kg/TJ,2098.792332,kg +eed87b38-4c69-317e-8d53-876385ee0631,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2019,gas oil combustion consumption by to the public,91.52808,TJ,CO2,74100.0,kg/TJ,6782230.728,kg +62b6edda-fa2d-3a72-87c5-d8922f13ea40,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2019,gas oil combustion consumption by to the public,91.52808,TJ,CH4,3.9,kg/TJ,356.959512,kg +62b6edda-fa2d-3a72-87c5-d8922f13ea40,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2019,gas oil combustion consumption by to the public,91.52808,TJ,N2O,3.9,kg/TJ,356.959512,kg +3b0857ef-30e2-3cf9-bc43-4f7a00fd82e0,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2019,gas oil combustion consumption by to the public,13.32828,TJ,CO2,74100.0,kg/TJ,987625.548,kg +6d25b8f5-d7cb-373f-b7c7-a16e99c12fb0,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2019,gas oil combustion consumption by to the public,13.32828,TJ,CH4,3.9,kg/TJ,51.980292,kg +6d25b8f5-d7cb-373f-b7c7-a16e99c12fb0,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2019,gas oil combustion consumption by to the public,13.32828,TJ,N2O,3.9,kg/TJ,51.980292,kg +5f48fe01-b960-314f-968f-ce337d2b2950,SESCO,II.1.1,Tucuman,AR-T,annual,2019,gas oil combustion consumption by to the public,14.0868,TJ,CO2,74100.0,kg/TJ,1043831.88,kg +9523e05e-c989-3e5a-b0cb-2b9192a23487,SESCO,II.1.1,Tucuman,AR-T,annual,2019,gas oil combustion consumption by to the public,14.0868,TJ,CH4,3.9,kg/TJ,54.93852,kg +9523e05e-c989-3e5a-b0cb-2b9192a23487,SESCO,II.1.1,Tucuman,AR-T,annual,2019,gas oil combustion consumption by to the public,14.0868,TJ,N2O,3.9,kg/TJ,54.93852,kg +afec6c97-985b-345f-9ef3-9f610009d29b,SESCO,II.1.1,Buenos Aires,AR-B,annual,2019,gas oil combustion consumption by to the public,808.65456,TJ,CO2,74100.0,kg/TJ,59921302.896,kg +0635c337-2fc5-3fd9-a344-32a8487ea8fe,SESCO,II.1.1,Buenos Aires,AR-B,annual,2019,gas oil combustion consumption by to the public,808.65456,TJ,CH4,3.9,kg/TJ,3153.752784,kg +0635c337-2fc5-3fd9-a344-32a8487ea8fe,SESCO,II.1.1,Buenos Aires,AR-B,annual,2019,gas oil combustion consumption by to the public,808.65456,TJ,N2O,3.9,kg/TJ,3153.752784,kg +9159f688-6c57-3688-98ee-116499442c57,SESCO,II.1.1,Capital Federal,AR-C,annual,2019,gas oil combustion consumption by to the public,134.40252,TJ,CO2,74100.0,kg/TJ,9959226.732,kg +0a7c7d26-c67b-34af-8f80-4567d464ab70,SESCO,II.1.1,Capital Federal,AR-C,annual,2019,gas oil combustion consumption by to the public,134.40252,TJ,CH4,3.9,kg/TJ,524.169828,kg +0a7c7d26-c67b-34af-8f80-4567d464ab70,SESCO,II.1.1,Capital Federal,AR-C,annual,2019,gas oil combustion consumption by to the public,134.40252,TJ,N2O,3.9,kg/TJ,524.169828,kg +46043828-fb83-3c66-be52-847425a264b5,SESCO,II.1.1,Catamarca,AR-K,annual,2019,gas oil combustion consumption by to the public,38.57616,TJ,CO2,74100.0,kg/TJ,2858493.4560000002,kg +03f91ad6-d6f1-30c1-9b50-d2a6e9157747,SESCO,II.1.1,Catamarca,AR-K,annual,2019,gas oil combustion consumption by to the public,38.57616,TJ,CH4,3.9,kg/TJ,150.447024,kg +03f91ad6-d6f1-30c1-9b50-d2a6e9157747,SESCO,II.1.1,Catamarca,AR-K,annual,2019,gas oil combustion consumption by to the public,38.57616,TJ,N2O,3.9,kg/TJ,150.447024,kg +29af2408-eec1-3daf-bd51-27a2bf8d83a7,SESCO,II.1.1,Chaco,AR-H,annual,2019,gas oil combustion consumption by to the public,27.6318,TJ,CO2,74100.0,kg/TJ,2047516.38,kg +728e677f-ccde-3010-898e-6c126284826b,SESCO,II.1.1,Chaco,AR-H,annual,2019,gas oil combustion consumption by to the public,27.6318,TJ,CH4,3.9,kg/TJ,107.76401999999999,kg +728e677f-ccde-3010-898e-6c126284826b,SESCO,II.1.1,Chaco,AR-H,annual,2019,gas oil combustion consumption by to the public,27.6318,TJ,N2O,3.9,kg/TJ,107.76401999999999,kg +078b9aa4-64e5-3ac7-a57e-7441b0a7481d,SESCO,II.1.1,Chubut,AR-U,annual,2019,gas oil combustion consumption by to the public,181.39464,TJ,CO2,74100.0,kg/TJ,13441342.824000001,kg +8dcd0cb5-785c-3bca-ac8a-299244965818,SESCO,II.1.1,Chubut,AR-U,annual,2019,gas oil combustion consumption by to the public,181.39464,TJ,CH4,3.9,kg/TJ,707.4390960000001,kg +8dcd0cb5-785c-3bca-ac8a-299244965818,SESCO,II.1.1,Chubut,AR-U,annual,2019,gas oil combustion consumption by to the public,181.39464,TJ,N2O,3.9,kg/TJ,707.4390960000001,kg +7a5360ae-35b2-3dc6-98e2-5d37ee94d94e,SESCO,II.1.1,Corrientes,AR-W,annual,2019,gas oil combustion consumption by to the public,54.10776,TJ,CO2,74100.0,kg/TJ,4009385.016,kg +b1c194cf-20ac-34e3-9422-c4c1d39170e7,SESCO,II.1.1,Corrientes,AR-W,annual,2019,gas oil combustion consumption by to the public,54.10776,TJ,CH4,3.9,kg/TJ,211.020264,kg +b1c194cf-20ac-34e3-9422-c4c1d39170e7,SESCO,II.1.1,Corrientes,AR-W,annual,2019,gas oil combustion consumption by to the public,54.10776,TJ,N2O,3.9,kg/TJ,211.020264,kg +d095b867-a520-3a37-834b-a9b7977a854b,SESCO,II.1.1,Córdoba,AR-X,annual,2019,gas oil combustion consumption by to the public,245.65212,TJ,CO2,74100.0,kg/TJ,18202822.092,kg +0a739605-5966-332b-953c-d89b7901e2c1,SESCO,II.1.1,Córdoba,AR-X,annual,2019,gas oil combustion consumption by to the public,245.65212,TJ,CH4,3.9,kg/TJ,958.043268,kg +0a739605-5966-332b-953c-d89b7901e2c1,SESCO,II.1.1,Córdoba,AR-X,annual,2019,gas oil combustion consumption by to the public,245.65212,TJ,N2O,3.9,kg/TJ,958.043268,kg +9fc935db-5af2-326b-8c1e-2d9c277dc144,SESCO,II.1.1,Entre Rios,AR-E,annual,2019,gas oil combustion consumption by to the public,116.84819999999999,TJ,CO2,74100.0,kg/TJ,8658451.62,kg +46824fb4-46af-3a47-8a3a-97f8aeb7c36c,SESCO,II.1.1,Entre Rios,AR-E,annual,2019,gas oil combustion consumption by to the public,116.84819999999999,TJ,CH4,3.9,kg/TJ,455.70797999999996,kg +46824fb4-46af-3a47-8a3a-97f8aeb7c36c,SESCO,II.1.1,Entre Rios,AR-E,annual,2019,gas oil combustion consumption by to the public,116.84819999999999,TJ,N2O,3.9,kg/TJ,455.70797999999996,kg +e81a456c-87c4-3fbf-bd2e-47693348bd0d,SESCO,II.1.1,Formosa,AR-P,annual,2019,gas oil combustion consumption by to the public,58.983959999999996,TJ,CO2,74100.0,kg/TJ,4370711.436,kg +74f3f144-a1db-35dc-939b-20f994648f69,SESCO,II.1.1,Formosa,AR-P,annual,2019,gas oil combustion consumption by to the public,58.983959999999996,TJ,CH4,3.9,kg/TJ,230.037444,kg +74f3f144-a1db-35dc-939b-20f994648f69,SESCO,II.1.1,Formosa,AR-P,annual,2019,gas oil combustion consumption by to the public,58.983959999999996,TJ,N2O,3.9,kg/TJ,230.037444,kg +7fdcfb51-bebf-3b2b-918e-7c5f8c13ee7c,SESCO,II.1.1,Jujuy,AR-Y,annual,2019,gas oil combustion consumption by to the public,16.14564,TJ,CO2,74100.0,kg/TJ,1196391.924,kg +f7ea8a56-eec1-327e-9036-2a2adf4ec15f,SESCO,II.1.1,Jujuy,AR-Y,annual,2019,gas oil combustion consumption by to the public,16.14564,TJ,CH4,3.9,kg/TJ,62.967996,kg +f7ea8a56-eec1-327e-9036-2a2adf4ec15f,SESCO,II.1.1,Jujuy,AR-Y,annual,2019,gas oil combustion consumption by to the public,16.14564,TJ,N2O,3.9,kg/TJ,62.967996,kg +f8013505-2931-3799-9366-a3ad6826e6ee,SESCO,II.1.1,La Pampa,AR-L,annual,2019,gas oil combustion consumption by to the public,36.26448,TJ,CO2,74100.0,kg/TJ,2687197.968,kg +7e699d8d-4b44-37ab-94b7-7f68a025c08b,SESCO,II.1.1,La Pampa,AR-L,annual,2019,gas oil combustion consumption by to the public,36.26448,TJ,CH4,3.9,kg/TJ,141.43147199999999,kg +7e699d8d-4b44-37ab-94b7-7f68a025c08b,SESCO,II.1.1,La Pampa,AR-L,annual,2019,gas oil combustion consumption by to the public,36.26448,TJ,N2O,3.9,kg/TJ,141.43147199999999,kg +a933b02b-610b-3147-9b2d-41f8dbfa26e0,SESCO,II.1.1,La Rioja,AR-F,annual,2019,gas oil combustion consumption by to the public,17.301479999999998,TJ,CO2,74100.0,kg/TJ,1282039.6679999998,kg +d8abcb6c-829c-3889-a782-9589d3ae6cdb,SESCO,II.1.1,La Rioja,AR-F,annual,2019,gas oil combustion consumption by to the public,17.301479999999998,TJ,CH4,3.9,kg/TJ,67.47577199999999,kg +d8abcb6c-829c-3889-a782-9589d3ae6cdb,SESCO,II.1.1,La Rioja,AR-F,annual,2019,gas oil combustion consumption by to the public,17.301479999999998,TJ,N2O,3.9,kg/TJ,67.47577199999999,kg +4c826c9a-de78-350e-ac41-74d25518ace2,SESCO,II.1.1,Mendoza,AR-M,annual,2019,gas oil combustion consumption by to the public,91.27524,TJ,CO2,74100.0,kg/TJ,6763495.284,kg +1d512d82-414a-3c8f-a116-c78a229f8f7a,SESCO,II.1.1,Mendoza,AR-M,annual,2019,gas oil combustion consumption by to the public,91.27524,TJ,CH4,3.9,kg/TJ,355.973436,kg +1d512d82-414a-3c8f-a116-c78a229f8f7a,SESCO,II.1.1,Mendoza,AR-M,annual,2019,gas oil combustion consumption by to the public,91.27524,TJ,N2O,3.9,kg/TJ,355.973436,kg +9fc4a8b0-55f9-3d18-99d3-326341df262b,SESCO,II.1.1,Misiones,AR-N,annual,2019,gas oil combustion consumption by to the public,61.7652,TJ,CO2,74100.0,kg/TJ,4576801.32,kg +2d39961b-6b78-3425-b5f0-3c44054a76a4,SESCO,II.1.1,Misiones,AR-N,annual,2019,gas oil combustion consumption by to the public,61.7652,TJ,CH4,3.9,kg/TJ,240.88428,kg +2d39961b-6b78-3425-b5f0-3c44054a76a4,SESCO,II.1.1,Misiones,AR-N,annual,2019,gas oil combustion consumption by to the public,61.7652,TJ,N2O,3.9,kg/TJ,240.88428,kg +6724ff31-b05a-31ae-8949-52c9507a872b,SESCO,II.1.1,Neuquén,AR-Q,annual,2019,gas oil combustion consumption by to the public,71.40924,TJ,CO2,74100.0,kg/TJ,5291424.683999999,kg +f56e7cba-02e4-379d-8ea7-91fed45d74a6,SESCO,II.1.1,Neuquén,AR-Q,annual,2019,gas oil combustion consumption by to the public,71.40924,TJ,CH4,3.9,kg/TJ,278.496036,kg +f56e7cba-02e4-379d-8ea7-91fed45d74a6,SESCO,II.1.1,Neuquén,AR-Q,annual,2019,gas oil combustion consumption by to the public,71.40924,TJ,N2O,3.9,kg/TJ,278.496036,kg +e03e83c7-ba21-3261-86f2-25ba73f2bd09,SESCO,II.1.1,Rio Negro,AR-R,annual,2019,gas oil combustion consumption by to the public,90.3,TJ,CO2,74100.0,kg/TJ,6691230.0,kg +b04782a3-dad4-3294-b3e8-e2fe1e2c1dd4,SESCO,II.1.1,Rio Negro,AR-R,annual,2019,gas oil combustion consumption by to the public,90.3,TJ,CH4,3.9,kg/TJ,352.16999999999996,kg +b04782a3-dad4-3294-b3e8-e2fe1e2c1dd4,SESCO,II.1.1,Rio Negro,AR-R,annual,2019,gas oil combustion consumption by to the public,90.3,TJ,N2O,3.9,kg/TJ,352.16999999999996,kg +a292d735-f8bb-3c36-a535-969eb250c1e3,SESCO,II.1.1,Salta,AR-A,annual,2019,gas oil combustion consumption by to the public,9.53568,TJ,CO2,74100.0,kg/TJ,706593.8879999999,kg +80b075e2-5b4d-394f-b698-96f28dbc571f,SESCO,II.1.1,Salta,AR-A,annual,2019,gas oil combustion consumption by to the public,9.53568,TJ,CH4,3.9,kg/TJ,37.18915199999999,kg +80b075e2-5b4d-394f-b698-96f28dbc571f,SESCO,II.1.1,Salta,AR-A,annual,2019,gas oil combustion consumption by to the public,9.53568,TJ,N2O,3.9,kg/TJ,37.18915199999999,kg +425dcb76-e38e-3722-ba2a-2cfc6618f500,SESCO,II.1.1,San Juan,AR-J,annual,2019,gas oil combustion consumption by to the public,23.22516,TJ,CO2,74100.0,kg/TJ,1720984.356,kg +c6bcef53-3309-33ea-8f71-657eaa847121,SESCO,II.1.1,San Juan,AR-J,annual,2019,gas oil combustion consumption by to the public,23.22516,TJ,CH4,3.9,kg/TJ,90.57812399999999,kg +c6bcef53-3309-33ea-8f71-657eaa847121,SESCO,II.1.1,San Juan,AR-J,annual,2019,gas oil combustion consumption by to the public,23.22516,TJ,N2O,3.9,kg/TJ,90.57812399999999,kg +e46e8184-cb84-33f8-897b-075855739f42,SESCO,II.1.1,San Luis,AR-D,annual,2019,gas oil combustion consumption by to the public,43.27176,TJ,CO2,74100.0,kg/TJ,3206437.416,kg +7fefba9e-b4c6-3151-8ca3-ba7ef145e2e3,SESCO,II.1.1,San Luis,AR-D,annual,2019,gas oil combustion consumption by to the public,43.27176,TJ,CH4,3.9,kg/TJ,168.759864,kg +7fefba9e-b4c6-3151-8ca3-ba7ef145e2e3,SESCO,II.1.1,San Luis,AR-D,annual,2019,gas oil combustion consumption by to the public,43.27176,TJ,N2O,3.9,kg/TJ,168.759864,kg +2e425e6e-26bb-3931-93b0-eb4355ea292f,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2019,gas oil combustion consumption by to the public,93.98424,TJ,CO2,74100.0,kg/TJ,6964232.184,kg +841bf5d1-940e-3d00-99eb-6430e709c29e,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2019,gas oil combustion consumption by to the public,93.98424,TJ,CH4,3.9,kg/TJ,366.53853599999997,kg +841bf5d1-940e-3d00-99eb-6430e709c29e,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2019,gas oil combustion consumption by to the public,93.98424,TJ,N2O,3.9,kg/TJ,366.53853599999997,kg +8e7efc3f-f59f-3367-b71c-4c619203ed8b,SESCO,II.1.1,Santa Fe,AR-S,annual,2019,gas oil combustion consumption by to the public,221.99352,TJ,CO2,74100.0,kg/TJ,16449719.831999999,kg +a86d8ab8-b189-3344-aee1-7c5c7c3460f7,SESCO,II.1.1,Santa Fe,AR-S,annual,2019,gas oil combustion consumption by to the public,221.99352,TJ,CH4,3.9,kg/TJ,865.774728,kg +a86d8ab8-b189-3344-aee1-7c5c7c3460f7,SESCO,II.1.1,Santa Fe,AR-S,annual,2019,gas oil combustion consumption by to the public,221.99352,TJ,N2O,3.9,kg/TJ,865.774728,kg +f01c41d2-23af-31e7-9dbd-00d4c99ccb33,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2019,gas oil combustion consumption by to the public,44.28312,TJ,CO2,74100.0,kg/TJ,3281379.192,kg +1522918f-2e3b-329c-85b9-a062eb49de44,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2019,gas oil combustion consumption by to the public,44.28312,TJ,CH4,3.9,kg/TJ,172.70416799999998,kg +1522918f-2e3b-329c-85b9-a062eb49de44,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2019,gas oil combustion consumption by to the public,44.28312,TJ,N2O,3.9,kg/TJ,172.70416799999998,kg +4ea263a9-7aae-36bb-a8e9-2d8d9db4f30a,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2019,gas oil combustion consumption by to the public,18.89076,TJ,CO2,74100.0,kg/TJ,1399805.316,kg +4b5e15c7-9f21-3d20-bc9a-766ac0b49ef3,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2019,gas oil combustion consumption by to the public,18.89076,TJ,CH4,3.9,kg/TJ,73.673964,kg +4b5e15c7-9f21-3d20-bc9a-766ac0b49ef3,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2019,gas oil combustion consumption by to the public,18.89076,TJ,N2O,3.9,kg/TJ,73.673964,kg +c84ed089-0997-364b-90b4-6dcc13a633e0,SESCO,II.1.1,Tucuman,AR-T,annual,2019,gas oil combustion consumption by to the public,4.73172,TJ,CO2,74100.0,kg/TJ,350620.452,kg +9efb9b97-37f6-3a27-88b6-5ca53c29165c,SESCO,II.1.1,Tucuman,AR-T,annual,2019,gas oil combustion consumption by to the public,4.73172,TJ,CH4,3.9,kg/TJ,18.453708,kg +9efb9b97-37f6-3a27-88b6-5ca53c29165c,SESCO,II.1.1,Tucuman,AR-T,annual,2019,gas oil combustion consumption by to the public,4.73172,TJ,N2O,3.9,kg/TJ,18.453708,kg +d61b0484-9aa1-3001-8f80-a54cd4778d4f,SESCO,II.1.1,Buenos Aires,AR-B,annual,2019,jet kerosene combustion consumption by to the public,2.0444449999999996,TJ,CO2,71500.0,kg/TJ,146177.81749999998,kg +953798a5-95d0-3444-9958-cdd28f297f8b,SESCO,II.1.1,Buenos Aires,AR-B,annual,2019,jet kerosene combustion consumption by to the public,2.0444449999999996,TJ,CH4,0.5,kg/TJ,1.0222224999999998,kg +e26de3a1-8353-3c28-897b-421e0076fd8a,SESCO,II.1.1,Buenos Aires,AR-B,annual,2019,jet kerosene combustion consumption by to the public,2.0444449999999996,TJ,N2O,2.0,kg/TJ,4.088889999999999,kg +2953645f-46f1-3d74-823b-034dc0d17ddc,SESCO,II.1.1,Córdoba,AR-X,annual,2019,jet kerosene combustion consumption by to the public,0.4403419999999999,TJ,CO2,71500.0,kg/TJ,31484.452999999994,kg +fa645cf1-4b62-3212-8d7f-150fa0132744,SESCO,II.1.1,Córdoba,AR-X,annual,2019,jet kerosene combustion consumption by to the public,0.4403419999999999,TJ,CH4,0.5,kg/TJ,0.22017099999999995,kg +343b1a2f-2fb1-3bc7-83fb-3d2e4f5c93f9,SESCO,II.1.1,Córdoba,AR-X,annual,2019,jet kerosene combustion consumption by to the public,0.4403419999999999,TJ,N2O,2.0,kg/TJ,0.8806839999999998,kg +54438673-1e43-300b-99bc-e0f7a96ab93e,SESCO,II.1.1,Entre Rios,AR-E,annual,2019,jet kerosene combustion consumption by to the public,0.28307699999999997,TJ,CO2,71500.0,kg/TJ,20240.0055,kg +10dbfffe-440c-3ffd-b315-2ed43e6af231,SESCO,II.1.1,Entre Rios,AR-E,annual,2019,jet kerosene combustion consumption by to the public,0.28307699999999997,TJ,CH4,0.5,kg/TJ,0.14153849999999998,kg +1e191bf3-6394-3ce1-904e-16be16a79e3a,SESCO,II.1.1,Entre Rios,AR-E,annual,2019,jet kerosene combustion consumption by to the public,0.28307699999999997,TJ,N2O,2.0,kg/TJ,0.5661539999999999,kg +36b5d004-a844-310e-8c71-cdd30e562628,SESCO,II.1.1,Santa Fe,AR-S,annual,2019,jet kerosene combustion consumption by to the public,0.5032479999999999,TJ,CO2,71500.0,kg/TJ,35982.231999999996,kg +9f512e33-1b81-3dd1-9d95-6d50abfe24bb,SESCO,II.1.1,Santa Fe,AR-S,annual,2019,jet kerosene combustion consumption by to the public,0.5032479999999999,TJ,CH4,0.5,kg/TJ,0.25162399999999996,kg +b8545903-4d07-3743-8b2c-5b0f7bcc4069,SESCO,II.1.1,Santa Fe,AR-S,annual,2019,jet kerosene combustion consumption by to the public,0.5032479999999999,TJ,N2O,2.0,kg/TJ,1.0064959999999998,kg +fd9d39fe-ff44-310d-984a-448f2a6e1968,SESCO,II.2.1,Buenos Aires,AR-B,annual,2019,gas oil combustion consumption by railway transport,88.74683999999999,TJ,CO2,74100.0,kg/TJ,6576140.844,kg +141cea4b-1d9b-3c7d-8f82-43aa7b9f8fc7,SESCO,II.2.1,Buenos Aires,AR-B,annual,2019,gas oil combustion consumption by railway transport,88.74683999999999,TJ,CH4,3.9,kg/TJ,346.11267599999996,kg +141cea4b-1d9b-3c7d-8f82-43aa7b9f8fc7,SESCO,II.2.1,Buenos Aires,AR-B,annual,2019,gas oil combustion consumption by railway transport,88.74683999999999,TJ,N2O,3.9,kg/TJ,346.11267599999996,kg +dbea2138-19cf-3703-b9bf-493d18e10fc2,SESCO,II.2.1,Capital Federal,AR-C,annual,2019,gas oil combustion consumption by railway transport,1.806,TJ,CO2,74100.0,kg/TJ,133824.6,kg +e5f5d861-b06d-3682-bb39-33714989642b,SESCO,II.2.1,Capital Federal,AR-C,annual,2019,gas oil combustion consumption by railway transport,1.806,TJ,CH4,3.9,kg/TJ,7.0434,kg +e5f5d861-b06d-3682-bb39-33714989642b,SESCO,II.2.1,Capital Federal,AR-C,annual,2019,gas oil combustion consumption by railway transport,1.806,TJ,N2O,3.9,kg/TJ,7.0434,kg +a090c5bd-03f1-3210-a08e-310aeeef88f7,SESCO,II.2.1,La Pampa,AR-L,annual,2019,gas oil combustion consumption by railway transport,15.38712,TJ,CO2,74100.0,kg/TJ,1140185.592,kg +26745232-f591-317d-bea8-2cb2ce92808b,SESCO,II.2.1,La Pampa,AR-L,annual,2019,gas oil combustion consumption by railway transport,15.38712,TJ,CH4,3.9,kg/TJ,60.009767999999994,kg +26745232-f591-317d-bea8-2cb2ce92808b,SESCO,II.2.1,La Pampa,AR-L,annual,2019,gas oil combustion consumption by railway transport,15.38712,TJ,N2O,3.9,kg/TJ,60.009767999999994,kg +f4a29bd0-e787-3a85-8a21-7f96aff52e0a,SESCO,II.2.1,Santa Fe,AR-S,annual,2019,gas oil combustion consumption by railway transport,56.60004,TJ,CO2,74100.0,kg/TJ,4194062.964,kg +07a77e91-5f0c-3678-a637-e932a82bf64e,SESCO,II.2.1,Santa Fe,AR-S,annual,2019,gas oil combustion consumption by railway transport,56.60004,TJ,CH4,3.9,kg/TJ,220.74015599999998,kg +07a77e91-5f0c-3678-a637-e932a82bf64e,SESCO,II.2.1,Santa Fe,AR-S,annual,2019,gas oil combustion consumption by railway transport,56.60004,TJ,N2O,3.9,kg/TJ,220.74015599999998,kg +554fcdac-aafb-39b4-bb13-dfe2d23fd2ca,SESCO,II.2.1,Santiago del Estero,AR-G,annual,2019,gas oil combustion consumption by railway transport,12.930959999999999,TJ,CO2,74100.0,kg/TJ,958184.1359999999,kg +0b2681d1-5312-35cc-910e-38fbbff3ae5b,SESCO,II.2.1,Santiago del Estero,AR-G,annual,2019,gas oil combustion consumption by railway transport,12.930959999999999,TJ,CH4,3.9,kg/TJ,50.430744,kg +0b2681d1-5312-35cc-910e-38fbbff3ae5b,SESCO,II.2.1,Santiago del Estero,AR-G,annual,2019,gas oil combustion consumption by railway transport,12.930959999999999,TJ,N2O,3.9,kg/TJ,50.430744,kg +0e461d18-ca02-391f-8965-c4fde762c604,SESCO,II.2.1,Tucuman,AR-T,annual,2019,gas oil combustion consumption by railway transport,5.20128,TJ,CO2,74100.0,kg/TJ,385414.848,kg +524cff89-6643-3e31-90da-41d7357d63dc,SESCO,II.2.1,Tucuman,AR-T,annual,2019,gas oil combustion consumption by railway transport,5.20128,TJ,CH4,3.9,kg/TJ,20.284992,kg +524cff89-6643-3e31-90da-41d7357d63dc,SESCO,II.2.1,Tucuman,AR-T,annual,2019,gas oil combustion consumption by railway transport,5.20128,TJ,N2O,3.9,kg/TJ,20.284992,kg +4f0cb496-bd4d-3fc1-860a-04f97eb69bef,SESCO,II.1.1,Buenos Aires,AR-B,annual,2019,gas oil combustion consumption by freight transport,486.50028,TJ,CO2,74100.0,kg/TJ,36049670.747999996,kg +1d532d41-eb26-30ef-8190-74e58f47766a,SESCO,II.1.1,Buenos Aires,AR-B,annual,2019,gas oil combustion consumption by freight transport,486.50028,TJ,CH4,3.9,kg/TJ,1897.3510919999999,kg +1d532d41-eb26-30ef-8190-74e58f47766a,SESCO,II.1.1,Buenos Aires,AR-B,annual,2019,gas oil combustion consumption by freight transport,486.50028,TJ,N2O,3.9,kg/TJ,1897.3510919999999,kg +0ee63531-e023-3d10-bff0-bf0d2d7b4bab,SESCO,II.1.1,Capital Federal,AR-C,annual,2019,gas oil combustion consumption by freight transport,139.53155999999998,TJ,CO2,74100.0,kg/TJ,10339288.595999999,kg +3fded31a-3a95-3850-a517-9dad38e0e9fb,SESCO,II.1.1,Capital Federal,AR-C,annual,2019,gas oil combustion consumption by freight transport,139.53155999999998,TJ,CH4,3.9,kg/TJ,544.1730839999999,kg +3fded31a-3a95-3850-a517-9dad38e0e9fb,SESCO,II.1.1,Capital Federal,AR-C,annual,2019,gas oil combustion consumption by freight transport,139.53155999999998,TJ,N2O,3.9,kg/TJ,544.1730839999999,kg +93101423-b2c2-3ee9-ab29-732d6e61454e,SESCO,II.1.1,Catamarca,AR-K,annual,2019,gas oil combustion consumption by freight transport,5.20128,TJ,CO2,74100.0,kg/TJ,385414.848,kg +85f51ca5-7b8a-3741-b905-65298a184fb2,SESCO,II.1.1,Catamarca,AR-K,annual,2019,gas oil combustion consumption by freight transport,5.20128,TJ,CH4,3.9,kg/TJ,20.284992,kg +85f51ca5-7b8a-3741-b905-65298a184fb2,SESCO,II.1.1,Catamarca,AR-K,annual,2019,gas oil combustion consumption by freight transport,5.20128,TJ,N2O,3.9,kg/TJ,20.284992,kg +056d5752-4954-35cf-8c14-c55a1c60e654,SESCO,II.1.1,Chaco,AR-H,annual,2019,gas oil combustion consumption by freight transport,1.33644,TJ,CO2,74100.0,kg/TJ,99030.20400000001,kg +43f4cf3f-1301-3511-b586-6f378aeeb743,SESCO,II.1.1,Chaco,AR-H,annual,2019,gas oil combustion consumption by freight transport,1.33644,TJ,CH4,3.9,kg/TJ,5.212116,kg +43f4cf3f-1301-3511-b586-6f378aeeb743,SESCO,II.1.1,Chaco,AR-H,annual,2019,gas oil combustion consumption by freight transport,1.33644,TJ,N2O,3.9,kg/TJ,5.212116,kg +99e8c5d3-f966-380f-9d61-df1bfbbdd452,SESCO,II.1.1,Chubut,AR-U,annual,2019,gas oil combustion consumption by freight transport,4.80396,TJ,CO2,74100.0,kg/TJ,355973.436,kg +01c655c7-3e48-358a-8aff-be40a13d0714,SESCO,II.1.1,Chubut,AR-U,annual,2019,gas oil combustion consumption by freight transport,4.80396,TJ,CH4,3.9,kg/TJ,18.735444,kg +01c655c7-3e48-358a-8aff-be40a13d0714,SESCO,II.1.1,Chubut,AR-U,annual,2019,gas oil combustion consumption by freight transport,4.80396,TJ,N2O,3.9,kg/TJ,18.735444,kg +5d84a0fd-1890-34d2-9cf0-a60bc844d5ce,SESCO,II.1.1,Corrientes,AR-W,annual,2019,gas oil combustion consumption by freight transport,26.187,TJ,CO2,74100.0,kg/TJ,1940456.7000000002,kg +ae5fc9a3-a480-32ed-91bc-ec4b9de4c2da,SESCO,II.1.1,Corrientes,AR-W,annual,2019,gas oil combustion consumption by freight transport,26.187,TJ,CH4,3.9,kg/TJ,102.1293,kg +ae5fc9a3-a480-32ed-91bc-ec4b9de4c2da,SESCO,II.1.1,Corrientes,AR-W,annual,2019,gas oil combustion consumption by freight transport,26.187,TJ,N2O,3.9,kg/TJ,102.1293,kg +d8c3f13b-372b-3f31-b7b8-9d3256df80d1,SESCO,II.1.1,Córdoba,AR-X,annual,2019,gas oil combustion consumption by freight transport,69.92832,TJ,CO2,74100.0,kg/TJ,5181688.512,kg +873fd6dc-15bc-39e7-a6a5-9074d29e6583,SESCO,II.1.1,Córdoba,AR-X,annual,2019,gas oil combustion consumption by freight transport,69.92832,TJ,CH4,3.9,kg/TJ,272.720448,kg +873fd6dc-15bc-39e7-a6a5-9074d29e6583,SESCO,II.1.1,Córdoba,AR-X,annual,2019,gas oil combustion consumption by freight transport,69.92832,TJ,N2O,3.9,kg/TJ,272.720448,kg +ed87a591-51da-3248-a4b5-dfe18ba19847,SESCO,II.1.1,Entre Rios,AR-E,annual,2019,gas oil combustion consumption by freight transport,69.74772,TJ,CO2,74100.0,kg/TJ,5168306.052,kg +53dd9466-1562-30a0-ab64-115cf8950dd7,SESCO,II.1.1,Entre Rios,AR-E,annual,2019,gas oil combustion consumption by freight transport,69.74772,TJ,CH4,3.9,kg/TJ,272.016108,kg +53dd9466-1562-30a0-ab64-115cf8950dd7,SESCO,II.1.1,Entre Rios,AR-E,annual,2019,gas oil combustion consumption by freight transport,69.74772,TJ,N2O,3.9,kg/TJ,272.016108,kg +1a0f8088-76d4-32e3-b6bf-5fc1f0703428,SESCO,II.1.1,Formosa,AR-P,annual,2019,gas oil combustion consumption by freight transport,2.92572,TJ,CO2,74100.0,kg/TJ,216795.852,kg +f8213eb5-0a3d-3303-bcd7-f20d3254e54a,SESCO,II.1.1,Formosa,AR-P,annual,2019,gas oil combustion consumption by freight transport,2.92572,TJ,CH4,3.9,kg/TJ,11.410308,kg +f8213eb5-0a3d-3303-bcd7-f20d3254e54a,SESCO,II.1.1,Formosa,AR-P,annual,2019,gas oil combustion consumption by freight transport,2.92572,TJ,N2O,3.9,kg/TJ,11.410308,kg +5e34b00e-a1c3-35c1-9df5-d8da0e3cc225,SESCO,II.1.1,Jujuy,AR-Y,annual,2019,gas oil combustion consumption by freight transport,2.3478,TJ,CO2,74100.0,kg/TJ,173971.97999999998,kg +eea20926-54fb-38d0-8702-3f6db1243868,SESCO,II.1.1,Jujuy,AR-Y,annual,2019,gas oil combustion consumption by freight transport,2.3478,TJ,CH4,3.9,kg/TJ,9.156419999999999,kg +eea20926-54fb-38d0-8702-3f6db1243868,SESCO,II.1.1,Jujuy,AR-Y,annual,2019,gas oil combustion consumption by freight transport,2.3478,TJ,N2O,3.9,kg/TJ,9.156419999999999,kg +258c1bed-1fb7-334c-bab2-64a8be3d4bc5,SESCO,II.1.1,La Pampa,AR-L,annual,2019,gas oil combustion consumption by freight transport,8.6688,TJ,CO2,74100.0,kg/TJ,642358.08,kg +1df12611-46cc-375a-82c9-e6d3e50ded24,SESCO,II.1.1,La Pampa,AR-L,annual,2019,gas oil combustion consumption by freight transport,8.6688,TJ,CH4,3.9,kg/TJ,33.808319999999995,kg +1df12611-46cc-375a-82c9-e6d3e50ded24,SESCO,II.1.1,La Pampa,AR-L,annual,2019,gas oil combustion consumption by freight transport,8.6688,TJ,N2O,3.9,kg/TJ,33.808319999999995,kg +cb8fdcc9-028f-3d7c-b9b4-b962a6709e87,SESCO,II.1.1,La Rioja,AR-F,annual,2019,gas oil combustion consumption by freight transport,1.19196,TJ,CO2,74100.0,kg/TJ,88324.23599999999,kg +5b7df55e-0f3d-3e29-9b96-627bb0cd7b45,SESCO,II.1.1,La Rioja,AR-F,annual,2019,gas oil combustion consumption by freight transport,1.19196,TJ,CH4,3.9,kg/TJ,4.648643999999999,kg +5b7df55e-0f3d-3e29-9b96-627bb0cd7b45,SESCO,II.1.1,La Rioja,AR-F,annual,2019,gas oil combustion consumption by freight transport,1.19196,TJ,N2O,3.9,kg/TJ,4.648643999999999,kg +a5e34493-1e62-393e-a0fb-8fdebb72509f,SESCO,II.1.1,Mendoza,AR-M,annual,2019,gas oil combustion consumption by freight transport,39.80424,TJ,CO2,74100.0,kg/TJ,2949494.184,kg +1b43f89d-0354-32b0-b20a-a26ed380aaaa,SESCO,II.1.1,Mendoza,AR-M,annual,2019,gas oil combustion consumption by freight transport,39.80424,TJ,CH4,3.9,kg/TJ,155.236536,kg +1b43f89d-0354-32b0-b20a-a26ed380aaaa,SESCO,II.1.1,Mendoza,AR-M,annual,2019,gas oil combustion consumption by freight transport,39.80424,TJ,N2O,3.9,kg/TJ,155.236536,kg +dc007151-9e6e-3dbd-9aa3-1215ebdf825d,SESCO,II.1.1,Misiones,AR-N,annual,2019,gas oil combustion consumption by freight transport,19.5048,TJ,CO2,74100.0,kg/TJ,1445305.68,kg +cc568511-ccf7-3b31-b752-57e85d97d36c,SESCO,II.1.1,Misiones,AR-N,annual,2019,gas oil combustion consumption by freight transport,19.5048,TJ,CH4,3.9,kg/TJ,76.06872,kg +cc568511-ccf7-3b31-b752-57e85d97d36c,SESCO,II.1.1,Misiones,AR-N,annual,2019,gas oil combustion consumption by freight transport,19.5048,TJ,N2O,3.9,kg/TJ,76.06872,kg +9418e70f-9f08-304c-90d1-c5d8c3a3d1e3,SESCO,II.1.1,Neuquén,AR-Q,annual,2019,gas oil combustion consumption by freight transport,0.36119999999999997,TJ,CO2,74100.0,kg/TJ,26764.92,kg +5ecbd7ed-40e8-37d2-8ea0-479066b19388,SESCO,II.1.1,Neuquén,AR-Q,annual,2019,gas oil combustion consumption by freight transport,0.36119999999999997,TJ,CH4,3.9,kg/TJ,1.40868,kg +5ecbd7ed-40e8-37d2-8ea0-479066b19388,SESCO,II.1.1,Neuquén,AR-Q,annual,2019,gas oil combustion consumption by freight transport,0.36119999999999997,TJ,N2O,3.9,kg/TJ,1.40868,kg +7f5080c7-5e29-32f6-97d7-f7b3a1f8668d,SESCO,II.1.1,Rio Negro,AR-R,annual,2019,gas oil combustion consumption by freight transport,31.352159999999998,TJ,CO2,74100.0,kg/TJ,2323195.056,kg +b4b704c7-c42a-363e-92ed-bc94393825af,SESCO,II.1.1,Rio Negro,AR-R,annual,2019,gas oil combustion consumption by freight transport,31.352159999999998,TJ,CH4,3.9,kg/TJ,122.27342399999999,kg +b4b704c7-c42a-363e-92ed-bc94393825af,SESCO,II.1.1,Rio Negro,AR-R,annual,2019,gas oil combustion consumption by freight transport,31.352159999999998,TJ,N2O,3.9,kg/TJ,122.27342399999999,kg +96b3d739-824b-3005-8909-7dfa629b5aca,SESCO,II.1.1,Salta,AR-A,annual,2019,gas oil combustion consumption by freight transport,1.51704,TJ,CO2,74100.0,kg/TJ,112412.66399999999,kg +2933e7af-cb5d-3206-bb56-c9b4f37a6a5b,SESCO,II.1.1,Salta,AR-A,annual,2019,gas oil combustion consumption by freight transport,1.51704,TJ,CH4,3.9,kg/TJ,5.916455999999999,kg +2933e7af-cb5d-3206-bb56-c9b4f37a6a5b,SESCO,II.1.1,Salta,AR-A,annual,2019,gas oil combustion consumption by freight transport,1.51704,TJ,N2O,3.9,kg/TJ,5.916455999999999,kg +f5af85eb-f11a-3384-abcb-6886f3de63b6,SESCO,II.1.1,San Juan,AR-J,annual,2019,gas oil combustion consumption by freight transport,1.806,TJ,CO2,74100.0,kg/TJ,133824.6,kg +7b98ea99-d442-31af-bd43-28e23391052f,SESCO,II.1.1,San Juan,AR-J,annual,2019,gas oil combustion consumption by freight transport,1.806,TJ,CH4,3.9,kg/TJ,7.0434,kg +7b98ea99-d442-31af-bd43-28e23391052f,SESCO,II.1.1,San Juan,AR-J,annual,2019,gas oil combustion consumption by freight transport,1.806,TJ,N2O,3.9,kg/TJ,7.0434,kg +4f111da6-a478-37ca-907f-9b019e8f932a,SESCO,II.1.1,San Luis,AR-D,annual,2019,gas oil combustion consumption by freight transport,16.21788,TJ,CO2,74100.0,kg/TJ,1201744.908,kg +b153934f-b54a-399a-80e2-60adb64c8006,SESCO,II.1.1,San Luis,AR-D,annual,2019,gas oil combustion consumption by freight transport,16.21788,TJ,CH4,3.9,kg/TJ,63.249732,kg +b153934f-b54a-399a-80e2-60adb64c8006,SESCO,II.1.1,San Luis,AR-D,annual,2019,gas oil combustion consumption by freight transport,16.21788,TJ,N2O,3.9,kg/TJ,63.249732,kg +65cf3685-a72b-3c22-97ce-1cf5e6d9c4c4,SESCO,II.1.1,Santa Fe,AR-S,annual,2019,gas oil combustion consumption by freight transport,148.41708,TJ,CO2,74100.0,kg/TJ,10997705.628,kg +a53d8149-b0d9-3fa0-86b9-e0f620e8b05c,SESCO,II.1.1,Santa Fe,AR-S,annual,2019,gas oil combustion consumption by freight transport,148.41708,TJ,CH4,3.9,kg/TJ,578.826612,kg +a53d8149-b0d9-3fa0-86b9-e0f620e8b05c,SESCO,II.1.1,Santa Fe,AR-S,annual,2019,gas oil combustion consumption by freight transport,148.41708,TJ,N2O,3.9,kg/TJ,578.826612,kg +4cc544bb-fa28-38ef-887f-2e1b253a9b9f,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2019,gas oil combustion consumption by freight transport,20.9496,TJ,CO2,74100.0,kg/TJ,1552365.36,kg +e792b28b-d6fc-3278-af91-890c858d88c0,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2019,gas oil combustion consumption by freight transport,20.9496,TJ,CH4,3.9,kg/TJ,81.70344,kg +e792b28b-d6fc-3278-af91-890c858d88c0,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2019,gas oil combustion consumption by freight transport,20.9496,TJ,N2O,3.9,kg/TJ,81.70344,kg +7ff9a212-f683-3bce-a94d-c32ac9541f9a,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2019,gas oil combustion consumption by freight transport,1.4447999999999999,TJ,CO2,74100.0,kg/TJ,107059.68,kg +2f3dc52f-b104-3e89-9363-d1a6dccf06d7,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2019,gas oil combustion consumption by freight transport,1.4447999999999999,TJ,CH4,3.9,kg/TJ,5.63472,kg +2f3dc52f-b104-3e89-9363-d1a6dccf06d7,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2019,gas oil combustion consumption by freight transport,1.4447999999999999,TJ,N2O,3.9,kg/TJ,5.63472,kg +5002a691-d2c7-3fe5-84b6-41d710e8f6b1,SESCO,II.1.1,Tucuman,AR-T,annual,2019,gas oil combustion consumption by freight transport,11.48616,TJ,CO2,74100.0,kg/TJ,851124.456,kg +d4a75ff4-d78b-3c43-a1e8-69342031d994,SESCO,II.1.1,Tucuman,AR-T,annual,2019,gas oil combustion consumption by freight transport,11.48616,TJ,CH4,3.9,kg/TJ,44.796023999999996,kg +d4a75ff4-d78b-3c43-a1e8-69342031d994,SESCO,II.1.1,Tucuman,AR-T,annual,2019,gas oil combustion consumption by freight transport,11.48616,TJ,N2O,3.9,kg/TJ,44.796023999999996,kg +3938dd93-009f-3aea-9295-d411503274d5,SESCO,II.1.1,Buenos Aires,AR-B,annual,2019,gas oil combustion consumption by freight transport,45.18612,TJ,CO2,74100.0,kg/TJ,3348291.492,kg +0cb1f56e-2089-3f85-a24b-4198c8bb57d9,SESCO,II.1.1,Buenos Aires,AR-B,annual,2019,gas oil combustion consumption by freight transport,45.18612,TJ,CH4,3.9,kg/TJ,176.22586800000002,kg +0cb1f56e-2089-3f85-a24b-4198c8bb57d9,SESCO,II.1.1,Buenos Aires,AR-B,annual,2019,gas oil combustion consumption by freight transport,45.18612,TJ,N2O,3.9,kg/TJ,176.22586800000002,kg +1756d6ec-c2f6-3fa6-95be-ed37d37d69e5,SESCO,II.1.1,Capital Federal,AR-C,annual,2019,gas oil combustion consumption by freight transport,3.93708,TJ,CO2,74100.0,kg/TJ,291737.62799999997,kg +71f99725-8fef-36f2-94be-70ad3f8d8e80,SESCO,II.1.1,Capital Federal,AR-C,annual,2019,gas oil combustion consumption by freight transport,3.93708,TJ,CH4,3.9,kg/TJ,15.354612,kg +71f99725-8fef-36f2-94be-70ad3f8d8e80,SESCO,II.1.1,Capital Federal,AR-C,annual,2019,gas oil combustion consumption by freight transport,3.93708,TJ,N2O,3.9,kg/TJ,15.354612,kg +addbd6f5-eaee-3654-b113-8290a3d9ea35,SESCO,II.1.1,Catamarca,AR-K,annual,2019,gas oil combustion consumption by freight transport,0.46956,TJ,CO2,74100.0,kg/TJ,34794.396,kg +ad29b53f-5abf-3bda-bd72-72399974dca9,SESCO,II.1.1,Catamarca,AR-K,annual,2019,gas oil combustion consumption by freight transport,0.46956,TJ,CH4,3.9,kg/TJ,1.831284,kg +ad29b53f-5abf-3bda-bd72-72399974dca9,SESCO,II.1.1,Catamarca,AR-K,annual,2019,gas oil combustion consumption by freight transport,0.46956,TJ,N2O,3.9,kg/TJ,1.831284,kg +6fb60979-cd2a-348e-ae15-06bf3e3eb073,SESCO,II.1.1,Chaco,AR-H,annual,2019,gas oil combustion consumption by freight transport,0.14448,TJ,CO2,74100.0,kg/TJ,10705.967999999999,kg +78f7e4a6-3411-3de1-b33c-81712c29e582,SESCO,II.1.1,Chaco,AR-H,annual,2019,gas oil combustion consumption by freight transport,0.14448,TJ,CH4,3.9,kg/TJ,0.563472,kg +78f7e4a6-3411-3de1-b33c-81712c29e582,SESCO,II.1.1,Chaco,AR-H,annual,2019,gas oil combustion consumption by freight transport,0.14448,TJ,N2O,3.9,kg/TJ,0.563472,kg +c3ffd12d-1717-3782-92f2-c882fcce71f4,SESCO,II.1.1,Chubut,AR-U,annual,2019,gas oil combustion consumption by freight transport,6.17652,TJ,CO2,74100.0,kg/TJ,457680.132,kg +88297c8e-fde3-35ec-87f8-4bc15fd569d6,SESCO,II.1.1,Chubut,AR-U,annual,2019,gas oil combustion consumption by freight transport,6.17652,TJ,CH4,3.9,kg/TJ,24.088428,kg +88297c8e-fde3-35ec-87f8-4bc15fd569d6,SESCO,II.1.1,Chubut,AR-U,annual,2019,gas oil combustion consumption by freight transport,6.17652,TJ,N2O,3.9,kg/TJ,24.088428,kg +47868173-63aa-3273-93c8-cc74a60ea152,SESCO,II.1.1,Corrientes,AR-W,annual,2019,gas oil combustion consumption by freight transport,3.93708,TJ,CO2,74100.0,kg/TJ,291737.62799999997,kg +64c3f5ac-53c6-3eea-a1d2-368e581122f8,SESCO,II.1.1,Corrientes,AR-W,annual,2019,gas oil combustion consumption by freight transport,3.93708,TJ,CH4,3.9,kg/TJ,15.354612,kg +64c3f5ac-53c6-3eea-a1d2-368e581122f8,SESCO,II.1.1,Corrientes,AR-W,annual,2019,gas oil combustion consumption by freight transport,3.93708,TJ,N2O,3.9,kg/TJ,15.354612,kg +1d77179a-27af-3006-b9c7-d84dbdec44b9,SESCO,II.1.1,Córdoba,AR-X,annual,2019,gas oil combustion consumption by freight transport,5.70696,TJ,CO2,74100.0,kg/TJ,422885.736,kg +d4e7f21c-fbe6-301d-a0c4-43f0724c12e9,SESCO,II.1.1,Córdoba,AR-X,annual,2019,gas oil combustion consumption by freight transport,5.70696,TJ,CH4,3.9,kg/TJ,22.257143999999997,kg +d4e7f21c-fbe6-301d-a0c4-43f0724c12e9,SESCO,II.1.1,Córdoba,AR-X,annual,2019,gas oil combustion consumption by freight transport,5.70696,TJ,N2O,3.9,kg/TJ,22.257143999999997,kg +619eeda8-6546-3897-97be-4f0a7163c88a,SESCO,II.1.1,Entre Rios,AR-E,annual,2019,gas oil combustion consumption by freight transport,2.81736,TJ,CO2,74100.0,kg/TJ,208766.376,kg +85a279bf-d30e-3d7c-9507-36b1359642a2,SESCO,II.1.1,Entre Rios,AR-E,annual,2019,gas oil combustion consumption by freight transport,2.81736,TJ,CH4,3.9,kg/TJ,10.987703999999999,kg +85a279bf-d30e-3d7c-9507-36b1359642a2,SESCO,II.1.1,Entre Rios,AR-E,annual,2019,gas oil combustion consumption by freight transport,2.81736,TJ,N2O,3.9,kg/TJ,10.987703999999999,kg +c840ef39-5db3-3991-abbd-12d53405e71c,SESCO,II.1.1,Formosa,AR-P,annual,2019,gas oil combustion consumption by freight transport,0.10836,TJ,CO2,74100.0,kg/TJ,8029.476,kg +4bda966b-5207-3f6e-945c-fa4e606d4620,SESCO,II.1.1,Formosa,AR-P,annual,2019,gas oil combustion consumption by freight transport,0.10836,TJ,CH4,3.9,kg/TJ,0.422604,kg +4bda966b-5207-3f6e-945c-fa4e606d4620,SESCO,II.1.1,Formosa,AR-P,annual,2019,gas oil combustion consumption by freight transport,0.10836,TJ,N2O,3.9,kg/TJ,0.422604,kg +2f2bef49-8cda-3d75-b58f-b70bb7287f1c,SESCO,II.1.1,Jujuy,AR-Y,annual,2019,gas oil combustion consumption by freight transport,0.10836,TJ,CO2,74100.0,kg/TJ,8029.476,kg +425adcec-7882-367e-94d7-8815ba9d4ba0,SESCO,II.1.1,Jujuy,AR-Y,annual,2019,gas oil combustion consumption by freight transport,0.10836,TJ,CH4,3.9,kg/TJ,0.422604,kg +425adcec-7882-367e-94d7-8815ba9d4ba0,SESCO,II.1.1,Jujuy,AR-Y,annual,2019,gas oil combustion consumption by freight transport,0.10836,TJ,N2O,3.9,kg/TJ,0.422604,kg +10a4baa1-2ae6-3186-8249-8b500656a911,SESCO,II.1.1,La Pampa,AR-L,annual,2019,gas oil combustion consumption by freight transport,0.36119999999999997,TJ,CO2,74100.0,kg/TJ,26764.92,kg +bb3aba1c-7027-31ff-bd2e-d4a17dfc2d85,SESCO,II.1.1,La Pampa,AR-L,annual,2019,gas oil combustion consumption by freight transport,0.36119999999999997,TJ,CH4,3.9,kg/TJ,1.40868,kg +bb3aba1c-7027-31ff-bd2e-d4a17dfc2d85,SESCO,II.1.1,La Pampa,AR-L,annual,2019,gas oil combustion consumption by freight transport,0.36119999999999997,TJ,N2O,3.9,kg/TJ,1.40868,kg +71f35628-d461-3d92-908a-4f18ec5c0bb1,SESCO,II.1.1,La Rioja,AR-F,annual,2019,gas oil combustion consumption by freight transport,0.18059999999999998,TJ,CO2,74100.0,kg/TJ,13382.46,kg +248d028d-918f-37d1-8a2c-6a763ef79988,SESCO,II.1.1,La Rioja,AR-F,annual,2019,gas oil combustion consumption by freight transport,0.18059999999999998,TJ,CH4,3.9,kg/TJ,0.70434,kg +248d028d-918f-37d1-8a2c-6a763ef79988,SESCO,II.1.1,La Rioja,AR-F,annual,2019,gas oil combustion consumption by freight transport,0.18059999999999998,TJ,N2O,3.9,kg/TJ,0.70434,kg +b31b5b82-032e-3106-8b5c-3c85d7eca157,SESCO,II.1.1,Mendoza,AR-M,annual,2019,gas oil combustion consumption by freight transport,1.04748,TJ,CO2,74100.0,kg/TJ,77618.268,kg +34da326f-d95f-3dc9-a0fc-4bebc78e0825,SESCO,II.1.1,Mendoza,AR-M,annual,2019,gas oil combustion consumption by freight transport,1.04748,TJ,CH4,3.9,kg/TJ,4.085172,kg +34da326f-d95f-3dc9-a0fc-4bebc78e0825,SESCO,II.1.1,Mendoza,AR-M,annual,2019,gas oil combustion consumption by freight transport,1.04748,TJ,N2O,3.9,kg/TJ,4.085172,kg +d82142b9-bca7-3aa6-924f-e5165cc57818,SESCO,II.1.1,Misiones,AR-N,annual,2019,gas oil combustion consumption by freight transport,2.31168,TJ,CO2,74100.0,kg/TJ,171295.48799999998,kg +e95e6794-bbd1-3530-9042-ddffa5469623,SESCO,II.1.1,Misiones,AR-N,annual,2019,gas oil combustion consumption by freight transport,2.31168,TJ,CH4,3.9,kg/TJ,9.015552,kg +e95e6794-bbd1-3530-9042-ddffa5469623,SESCO,II.1.1,Misiones,AR-N,annual,2019,gas oil combustion consumption by freight transport,2.31168,TJ,N2O,3.9,kg/TJ,9.015552,kg +bd3baad5-0b92-3119-a1c9-b2564c622e28,SESCO,II.1.1,Rio Negro,AR-R,annual,2019,gas oil combustion consumption by freight transport,3.86484,TJ,CO2,74100.0,kg/TJ,286384.64400000003,kg +a295b668-ae59-371d-ab65-c8a57f14dec2,SESCO,II.1.1,Rio Negro,AR-R,annual,2019,gas oil combustion consumption by freight transport,3.86484,TJ,CH4,3.9,kg/TJ,15.072875999999999,kg +a295b668-ae59-371d-ab65-c8a57f14dec2,SESCO,II.1.1,Rio Negro,AR-R,annual,2019,gas oil combustion consumption by freight transport,3.86484,TJ,N2O,3.9,kg/TJ,15.072875999999999,kg +81d68113-d191-36d2-959d-8c44c6334729,SESCO,II.1.1,Salta,AR-A,annual,2019,gas oil combustion consumption by freight transport,0.10836,TJ,CO2,74100.0,kg/TJ,8029.476,kg +53f60864-b496-3d8b-93da-a1aa1518f340,SESCO,II.1.1,Salta,AR-A,annual,2019,gas oil combustion consumption by freight transport,0.10836,TJ,CH4,3.9,kg/TJ,0.422604,kg +53f60864-b496-3d8b-93da-a1aa1518f340,SESCO,II.1.1,Salta,AR-A,annual,2019,gas oil combustion consumption by freight transport,0.10836,TJ,N2O,3.9,kg/TJ,0.422604,kg +f1c36709-d37a-3179-ace9-0637f6c05a1f,SESCO,II.1.1,San Juan,AR-J,annual,2019,gas oil combustion consumption by freight transport,0.03612,TJ,CO2,74100.0,kg/TJ,2676.4919999999997,kg +5e76d161-edcd-3406-a470-b0dd11894374,SESCO,II.1.1,San Juan,AR-J,annual,2019,gas oil combustion consumption by freight transport,0.03612,TJ,CH4,3.9,kg/TJ,0.140868,kg +5e76d161-edcd-3406-a470-b0dd11894374,SESCO,II.1.1,San Juan,AR-J,annual,2019,gas oil combustion consumption by freight transport,0.03612,TJ,N2O,3.9,kg/TJ,0.140868,kg +47c71ad6-d02b-30ff-9eaf-130fb711b834,SESCO,II.1.1,San Luis,AR-D,annual,2019,gas oil combustion consumption by freight transport,1.95048,TJ,CO2,74100.0,kg/TJ,144530.568,kg +40f15b42-fe93-3916-bc7e-4e44bcbda89d,SESCO,II.1.1,San Luis,AR-D,annual,2019,gas oil combustion consumption by freight transport,1.95048,TJ,CH4,3.9,kg/TJ,7.606872,kg +40f15b42-fe93-3916-bc7e-4e44bcbda89d,SESCO,II.1.1,San Luis,AR-D,annual,2019,gas oil combustion consumption by freight transport,1.95048,TJ,N2O,3.9,kg/TJ,7.606872,kg +dc9594a5-526e-38da-bdb6-bb4c60f83c41,SESCO,II.1.1,Santa Fe,AR-S,annual,2019,gas oil combustion consumption by freight transport,12.17244,TJ,CO2,74100.0,kg/TJ,901977.804,kg +2d54d9e4-1136-3df1-829a-2a68a8f96472,SESCO,II.1.1,Santa Fe,AR-S,annual,2019,gas oil combustion consumption by freight transport,12.17244,TJ,CH4,3.9,kg/TJ,47.472516,kg +2d54d9e4-1136-3df1-829a-2a68a8f96472,SESCO,II.1.1,Santa Fe,AR-S,annual,2019,gas oil combustion consumption by freight transport,12.17244,TJ,N2O,3.9,kg/TJ,47.472516,kg +3296a585-761b-3ec3-81db-fcb718acba68,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2019,gas oil combustion consumption by freight transport,2.99796,TJ,CO2,74100.0,kg/TJ,222148.836,kg +9023e776-b97f-391e-84be-c102e36558fa,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2019,gas oil combustion consumption by freight transport,2.99796,TJ,CH4,3.9,kg/TJ,11.692044,kg +9023e776-b97f-391e-84be-c102e36558fa,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2019,gas oil combustion consumption by freight transport,2.99796,TJ,N2O,3.9,kg/TJ,11.692044,kg +ddce9e07-bd60-3e3b-bc29-ceb67f95b8ab,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2019,gas oil combustion consumption by freight transport,0.18059999999999998,TJ,CO2,74100.0,kg/TJ,13382.46,kg +7c744107-015a-3ba4-ad46-e0d215c085a3,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2019,gas oil combustion consumption by freight transport,0.18059999999999998,TJ,CH4,3.9,kg/TJ,0.70434,kg +7c744107-015a-3ba4-ad46-e0d215c085a3,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2019,gas oil combustion consumption by freight transport,0.18059999999999998,TJ,N2O,3.9,kg/TJ,0.70434,kg +d7e99494-d5cf-3c7d-a8a2-d8df26c05292,SESCO,II.1.1,Tucuman,AR-T,annual,2019,gas oil combustion consumption by freight transport,1.91436,TJ,CO2,74100.0,kg/TJ,141854.076,kg +02b8ab09-8f4e-390f-b3ec-fa3e48860cb4,SESCO,II.1.1,Tucuman,AR-T,annual,2019,gas oil combustion consumption by freight transport,1.91436,TJ,CH4,3.9,kg/TJ,7.466004,kg +02b8ab09-8f4e-390f-b3ec-fa3e48860cb4,SESCO,II.1.1,Tucuman,AR-T,annual,2019,gas oil combustion consumption by freight transport,1.91436,TJ,N2O,3.9,kg/TJ,7.466004,kg +a113c7cf-216e-3ebb-bed4-3a67af851575,SESCO,II.1.1,Buenos Aires,AR-B,annual,2019,gas oil combustion consumption by public passenger transport,556.7175599999999,TJ,CO2,74100.0,kg/TJ,41252771.195999995,kg +8a713286-bf18-3b93-9982-dbb596905f3c,SESCO,II.1.1,Buenos Aires,AR-B,annual,2019,gas oil combustion consumption by public passenger transport,556.7175599999999,TJ,CH4,3.9,kg/TJ,2171.1984839999996,kg +8a713286-bf18-3b93-9982-dbb596905f3c,SESCO,II.1.1,Buenos Aires,AR-B,annual,2019,gas oil combustion consumption by public passenger transport,556.7175599999999,TJ,N2O,3.9,kg/TJ,2171.1984839999996,kg +cc3baa2c-7b2a-3ff8-a029-8d2bb77e0b30,SESCO,II.1.1,Capital Federal,AR-C,annual,2019,gas oil combustion consumption by public passenger transport,312.438,TJ,CO2,74100.0,kg/TJ,23151655.8,kg +1b747833-8a0b-3bc1-9bc5-c9e037cca7e0,SESCO,II.1.1,Capital Federal,AR-C,annual,2019,gas oil combustion consumption by public passenger transport,312.438,TJ,CH4,3.9,kg/TJ,1218.5082,kg +1b747833-8a0b-3bc1-9bc5-c9e037cca7e0,SESCO,II.1.1,Capital Federal,AR-C,annual,2019,gas oil combustion consumption by public passenger transport,312.438,TJ,N2O,3.9,kg/TJ,1218.5082,kg +d8de63ec-e525-3cb5-a057-37eb8a8a9f52,SESCO,II.1.1,Chaco,AR-H,annual,2019,gas oil combustion consumption by public passenger transport,5.38188,TJ,CO2,74100.0,kg/TJ,398797.30799999996,kg +422017bb-b8ee-3317-8dc2-0408da8fa9bf,SESCO,II.1.1,Chaco,AR-H,annual,2019,gas oil combustion consumption by public passenger transport,5.38188,TJ,CH4,3.9,kg/TJ,20.989331999999997,kg +422017bb-b8ee-3317-8dc2-0408da8fa9bf,SESCO,II.1.1,Chaco,AR-H,annual,2019,gas oil combustion consumption by public passenger transport,5.38188,TJ,N2O,3.9,kg/TJ,20.989331999999997,kg +cce28f0b-fa95-32c0-951a-aaaebe09d055,SESCO,II.1.1,Chubut,AR-U,annual,2019,gas oil combustion consumption by public passenger transport,1.73376,TJ,CO2,74100.0,kg/TJ,128471.616,kg +47170c8c-e0cf-3924-8e01-d383bdfee478,SESCO,II.1.1,Chubut,AR-U,annual,2019,gas oil combustion consumption by public passenger transport,1.73376,TJ,CH4,3.9,kg/TJ,6.761664,kg +47170c8c-e0cf-3924-8e01-d383bdfee478,SESCO,II.1.1,Chubut,AR-U,annual,2019,gas oil combustion consumption by public passenger transport,1.73376,TJ,N2O,3.9,kg/TJ,6.761664,kg +c5e118e1-115a-3af4-b7e8-aeef6af1e466,SESCO,II.1.1,Corrientes,AR-W,annual,2019,gas oil combustion consumption by public passenger transport,0.03612,TJ,CO2,74100.0,kg/TJ,2676.4919999999997,kg +fe070851-74ff-31b5-8b70-6122da117dd5,SESCO,II.1.1,Corrientes,AR-W,annual,2019,gas oil combustion consumption by public passenger transport,0.03612,TJ,CH4,3.9,kg/TJ,0.140868,kg +fe070851-74ff-31b5-8b70-6122da117dd5,SESCO,II.1.1,Corrientes,AR-W,annual,2019,gas oil combustion consumption by public passenger transport,0.03612,TJ,N2O,3.9,kg/TJ,0.140868,kg +381ff276-b308-3593-8d29-b80bf408bff7,SESCO,II.1.1,Córdoba,AR-X,annual,2019,gas oil combustion consumption by public passenger transport,113.12783999999999,TJ,CO2,74100.0,kg/TJ,8382772.943999999,kg +90a4341d-f36e-39df-b8fe-c51a984feb89,SESCO,II.1.1,Córdoba,AR-X,annual,2019,gas oil combustion consumption by public passenger transport,113.12783999999999,TJ,CH4,3.9,kg/TJ,441.19857599999995,kg +90a4341d-f36e-39df-b8fe-c51a984feb89,SESCO,II.1.1,Córdoba,AR-X,annual,2019,gas oil combustion consumption by public passenger transport,113.12783999999999,TJ,N2O,3.9,kg/TJ,441.19857599999995,kg +8b984235-40e1-3fdc-9791-024fcf713754,SESCO,II.1.1,Entre Rios,AR-E,annual,2019,gas oil combustion consumption by public passenger transport,2.38392,TJ,CO2,74100.0,kg/TJ,176648.47199999998,kg +11d5e27e-6d47-36a9-9d7a-dcd73fd69846,SESCO,II.1.1,Entre Rios,AR-E,annual,2019,gas oil combustion consumption by public passenger transport,2.38392,TJ,CH4,3.9,kg/TJ,9.297287999999998,kg +11d5e27e-6d47-36a9-9d7a-dcd73fd69846,SESCO,II.1.1,Entre Rios,AR-E,annual,2019,gas oil combustion consumption by public passenger transport,2.38392,TJ,N2O,3.9,kg/TJ,9.297287999999998,kg +dd5ae63e-ecb1-318c-a7e3-0d4656cdae44,SESCO,II.1.1,Formosa,AR-P,annual,2019,gas oil combustion consumption by public passenger transport,10.14972,TJ,CO2,74100.0,kg/TJ,752094.252,kg +2f5578c5-aef3-3b9c-8b25-1594e15d3e67,SESCO,II.1.1,Formosa,AR-P,annual,2019,gas oil combustion consumption by public passenger transport,10.14972,TJ,CH4,3.9,kg/TJ,39.583908,kg +2f5578c5-aef3-3b9c-8b25-1594e15d3e67,SESCO,II.1.1,Formosa,AR-P,annual,2019,gas oil combustion consumption by public passenger transport,10.14972,TJ,N2O,3.9,kg/TJ,39.583908,kg +387b3ce5-66fa-311e-aaeb-27732bca7325,SESCO,II.1.1,La Pampa,AR-L,annual,2019,gas oil combustion consumption by public passenger transport,2.96184,TJ,CO2,74100.0,kg/TJ,219472.344,kg +eb450481-2acf-3400-bf8a-6f005fdf170c,SESCO,II.1.1,La Pampa,AR-L,annual,2019,gas oil combustion consumption by public passenger transport,2.96184,TJ,CH4,3.9,kg/TJ,11.551176,kg +eb450481-2acf-3400-bf8a-6f005fdf170c,SESCO,II.1.1,La Pampa,AR-L,annual,2019,gas oil combustion consumption by public passenger transport,2.96184,TJ,N2O,3.9,kg/TJ,11.551176,kg +1e932c80-4ec7-3901-8971-2c9b4b5bb040,SESCO,II.1.1,Misiones,AR-N,annual,2019,gas oil combustion consumption by public passenger transport,81.34224,TJ,CO2,74100.0,kg/TJ,6027459.984,kg +d5aafe30-8de7-3686-86bc-511497c67206,SESCO,II.1.1,Misiones,AR-N,annual,2019,gas oil combustion consumption by public passenger transport,81.34224,TJ,CH4,3.9,kg/TJ,317.234736,kg +d5aafe30-8de7-3686-86bc-511497c67206,SESCO,II.1.1,Misiones,AR-N,annual,2019,gas oil combustion consumption by public passenger transport,81.34224,TJ,N2O,3.9,kg/TJ,317.234736,kg +23b48000-cd0a-30e1-bc7d-791264845570,SESCO,II.1.1,Neuquén,AR-Q,annual,2019,gas oil combustion consumption by public passenger transport,1.9866,TJ,CO2,74100.0,kg/TJ,147207.06,kg +606b00d2-942d-3bc3-b498-139051d08b85,SESCO,II.1.1,Neuquén,AR-Q,annual,2019,gas oil combustion consumption by public passenger transport,1.9866,TJ,CH4,3.9,kg/TJ,7.747739999999999,kg +606b00d2-942d-3bc3-b498-139051d08b85,SESCO,II.1.1,Neuquén,AR-Q,annual,2019,gas oil combustion consumption by public passenger transport,1.9866,TJ,N2O,3.9,kg/TJ,7.747739999999999,kg +3e6c58a8-f731-3f7a-9c87-570a1cce786e,SESCO,II.1.1,Rio Negro,AR-R,annual,2019,gas oil combustion consumption by public passenger transport,14.33964,TJ,CO2,74100.0,kg/TJ,1062567.324,kg +84309e2a-671a-3176-bce5-44336fe83ee6,SESCO,II.1.1,Rio Negro,AR-R,annual,2019,gas oil combustion consumption by public passenger transport,14.33964,TJ,CH4,3.9,kg/TJ,55.924595999999994,kg +84309e2a-671a-3176-bce5-44336fe83ee6,SESCO,II.1.1,Rio Negro,AR-R,annual,2019,gas oil combustion consumption by public passenger transport,14.33964,TJ,N2O,3.9,kg/TJ,55.924595999999994,kg +b50c9312-6cbf-3cc8-afc9-8f4c86f6e93c,SESCO,II.1.1,Santa Fe,AR-S,annual,2019,gas oil combustion consumption by public passenger transport,114.82548,TJ,CO2,74100.0,kg/TJ,8508568.068,kg +5fae92dc-d7fd-344e-b293-bfa80ada0ec6,SESCO,II.1.1,Santa Fe,AR-S,annual,2019,gas oil combustion consumption by public passenger transport,114.82548,TJ,CH4,3.9,kg/TJ,447.819372,kg +5fae92dc-d7fd-344e-b293-bfa80ada0ec6,SESCO,II.1.1,Santa Fe,AR-S,annual,2019,gas oil combustion consumption by public passenger transport,114.82548,TJ,N2O,3.9,kg/TJ,447.819372,kg +d27255e8-11e8-3cee-9b53-d94f61510b66,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2019,gas oil combustion consumption by public passenger transport,0.28896,TJ,CO2,74100.0,kg/TJ,21411.935999999998,kg +e1b3d369-0de6-3861-89b1-d4345d02e101,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2019,gas oil combustion consumption by public passenger transport,0.28896,TJ,CH4,3.9,kg/TJ,1.126944,kg +e1b3d369-0de6-3861-89b1-d4345d02e101,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2019,gas oil combustion consumption by public passenger transport,0.28896,TJ,N2O,3.9,kg/TJ,1.126944,kg +b86c5aa6-bd08-36b7-82e7-5b5676224729,SESCO,II.1.1,Tucuman,AR-T,annual,2019,gas oil combustion consumption by public passenger transport,106.62624,TJ,CO2,74100.0,kg/TJ,7901004.384,kg +814c6384-7be8-3498-9f23-d591cadfb91a,SESCO,II.1.1,Tucuman,AR-T,annual,2019,gas oil combustion consumption by public passenger transport,106.62624,TJ,CH4,3.9,kg/TJ,415.842336,kg +814c6384-7be8-3498-9f23-d591cadfb91a,SESCO,II.1.1,Tucuman,AR-T,annual,2019,gas oil combustion consumption by public passenger transport,106.62624,TJ,N2O,3.9,kg/TJ,415.842336,kg +5d3bbe08-83de-3123-a7b5-5323e3672fb8,SESCO,II.1.1,Buenos Aires,AR-B,annual,2019,gas oil combustion consumption by public passenger transport,131.80188,TJ,CO2,74100.0,kg/TJ,9766519.308,kg +482e18e0-57f6-306e-ad62-5ec626c89174,SESCO,II.1.1,Buenos Aires,AR-B,annual,2019,gas oil combustion consumption by public passenger transport,131.80188,TJ,CH4,3.9,kg/TJ,514.027332,kg +482e18e0-57f6-306e-ad62-5ec626c89174,SESCO,II.1.1,Buenos Aires,AR-B,annual,2019,gas oil combustion consumption by public passenger transport,131.80188,TJ,N2O,3.9,kg/TJ,514.027332,kg +185ee54e-a68f-3fb6-80ac-aead5f559502,SESCO,II.1.1,Capital Federal,AR-C,annual,2019,gas oil combustion consumption by public passenger transport,88.06056,TJ,CO2,74100.0,kg/TJ,6525287.495999999,kg +1974ff72-0296-34ed-9d71-900033f94a70,SESCO,II.1.1,Capital Federal,AR-C,annual,2019,gas oil combustion consumption by public passenger transport,88.06056,TJ,CH4,3.9,kg/TJ,343.43618399999997,kg +1974ff72-0296-34ed-9d71-900033f94a70,SESCO,II.1.1,Capital Federal,AR-C,annual,2019,gas oil combustion consumption by public passenger transport,88.06056,TJ,N2O,3.9,kg/TJ,343.43618399999997,kg +493e083f-6e43-3ff2-ac0b-67de42f6e1ba,SESCO,II.1.1,Chubut,AR-U,annual,2019,gas oil combustion consumption by public passenger transport,0.86688,TJ,CO2,74100.0,kg/TJ,64235.808,kg +9a6b09b5-f25e-3067-a494-92fad8a488fd,SESCO,II.1.1,Chubut,AR-U,annual,2019,gas oil combustion consumption by public passenger transport,0.86688,TJ,CH4,3.9,kg/TJ,3.380832,kg +9a6b09b5-f25e-3067-a494-92fad8a488fd,SESCO,II.1.1,Chubut,AR-U,annual,2019,gas oil combustion consumption by public passenger transport,0.86688,TJ,N2O,3.9,kg/TJ,3.380832,kg +3039ef93-5716-3c76-8068-6f8e1077839b,SESCO,II.1.1,Corrientes,AR-W,annual,2019,gas oil combustion consumption by public passenger transport,0.10836,TJ,CO2,74100.0,kg/TJ,8029.476,kg +24195902-1a05-35a6-a0de-930379f5e7cc,SESCO,II.1.1,Corrientes,AR-W,annual,2019,gas oil combustion consumption by public passenger transport,0.10836,TJ,CH4,3.9,kg/TJ,0.422604,kg +24195902-1a05-35a6-a0de-930379f5e7cc,SESCO,II.1.1,Corrientes,AR-W,annual,2019,gas oil combustion consumption by public passenger transport,0.10836,TJ,N2O,3.9,kg/TJ,0.422604,kg +1c261785-0735-3031-a485-f3e17237e11c,SESCO,II.1.1,Córdoba,AR-X,annual,2019,gas oil combustion consumption by public passenger transport,3.72036,TJ,CO2,74100.0,kg/TJ,275678.676,kg +7de9db90-4128-35a9-aba7-ffcc1ef9c28e,SESCO,II.1.1,Córdoba,AR-X,annual,2019,gas oil combustion consumption by public passenger transport,3.72036,TJ,CH4,3.9,kg/TJ,14.509404,kg +7de9db90-4128-35a9-aba7-ffcc1ef9c28e,SESCO,II.1.1,Córdoba,AR-X,annual,2019,gas oil combustion consumption by public passenger transport,3.72036,TJ,N2O,3.9,kg/TJ,14.509404,kg +75b57c10-f352-33c8-b770-304016d21099,SESCO,II.1.1,Entre Rios,AR-E,annual,2019,gas oil combustion consumption by public passenger transport,2.23944,TJ,CO2,74100.0,kg/TJ,165942.50400000002,kg +a6066018-5ece-3b15-bbbb-61836a7a8d67,SESCO,II.1.1,Entre Rios,AR-E,annual,2019,gas oil combustion consumption by public passenger transport,2.23944,TJ,CH4,3.9,kg/TJ,8.733816000000001,kg +a6066018-5ece-3b15-bbbb-61836a7a8d67,SESCO,II.1.1,Entre Rios,AR-E,annual,2019,gas oil combustion consumption by public passenger transport,2.23944,TJ,N2O,3.9,kg/TJ,8.733816000000001,kg +c5e1b29b-622a-324d-b245-affe0fa8206f,SESCO,II.1.1,La Pampa,AR-L,annual,2019,gas oil combustion consumption by public passenger transport,3.64812,TJ,CO2,74100.0,kg/TJ,270325.692,kg +bfe47d1d-bfb0-370f-be61-060da7fea084,SESCO,II.1.1,La Pampa,AR-L,annual,2019,gas oil combustion consumption by public passenger transport,3.64812,TJ,CH4,3.9,kg/TJ,14.227668,kg +bfe47d1d-bfb0-370f-be61-060da7fea084,SESCO,II.1.1,La Pampa,AR-L,annual,2019,gas oil combustion consumption by public passenger transport,3.64812,TJ,N2O,3.9,kg/TJ,14.227668,kg +8096f219-7d3c-3a5f-8a02-7c991fbb6cd2,SESCO,II.1.1,Neuquén,AR-Q,annual,2019,gas oil combustion consumption by public passenger transport,2.5284,TJ,CO2,74100.0,kg/TJ,187354.44,kg +bf48c769-d642-3148-8ccf-b81cdd421726,SESCO,II.1.1,Neuquén,AR-Q,annual,2019,gas oil combustion consumption by public passenger transport,2.5284,TJ,CH4,3.9,kg/TJ,9.860759999999999,kg +bf48c769-d642-3148-8ccf-b81cdd421726,SESCO,II.1.1,Neuquén,AR-Q,annual,2019,gas oil combustion consumption by public passenger transport,2.5284,TJ,N2O,3.9,kg/TJ,9.860759999999999,kg +10d3269b-77a7-385a-861d-8f086c65092e,SESCO,II.1.1,Rio Negro,AR-R,annual,2019,gas oil combustion consumption by public passenger transport,27.05388,TJ,CO2,74100.0,kg/TJ,2004692.508,kg +738cdf1e-3c59-312e-8df7-1635b6621529,SESCO,II.1.1,Rio Negro,AR-R,annual,2019,gas oil combustion consumption by public passenger transport,27.05388,TJ,CH4,3.9,kg/TJ,105.510132,kg +738cdf1e-3c59-312e-8df7-1635b6621529,SESCO,II.1.1,Rio Negro,AR-R,annual,2019,gas oil combustion consumption by public passenger transport,27.05388,TJ,N2O,3.9,kg/TJ,105.510132,kg +78a32a8f-358e-394a-be00-78fd7a4a6076,SESCO,II.1.1,Santa Fe,AR-S,annual,2019,gas oil combustion consumption by public passenger transport,30.08796,TJ,CO2,74100.0,kg/TJ,2229517.836,kg +36587cb3-f8f2-382a-b2f2-fe8e996bf8a6,SESCO,II.1.1,Santa Fe,AR-S,annual,2019,gas oil combustion consumption by public passenger transport,30.08796,TJ,CH4,3.9,kg/TJ,117.34304399999999,kg +36587cb3-f8f2-382a-b2f2-fe8e996bf8a6,SESCO,II.1.1,Santa Fe,AR-S,annual,2019,gas oil combustion consumption by public passenger transport,30.08796,TJ,N2O,3.9,kg/TJ,117.34304399999999,kg +ae68de93-c898-387f-a0e0-40801a8bee73,SESCO,II.5.1,Buenos Aires,AR-B,annual,2019,gas oil combustion consumption by agriculture machines,1604.70324,TJ,CO2,74100.0,kg/TJ,118908510.084,kg +ffb40d21-6ea0-33c8-ab9e-7595918073e9,SESCO,II.5.1,Buenos Aires,AR-B,annual,2019,gas oil combustion consumption by agriculture machines,1604.70324,TJ,CH4,3.9,kg/TJ,6258.342636,kg +ffb40d21-6ea0-33c8-ab9e-7595918073e9,SESCO,II.5.1,Buenos Aires,AR-B,annual,2019,gas oil combustion consumption by agriculture machines,1604.70324,TJ,N2O,3.9,kg/TJ,6258.342636,kg +fa648806-711b-3d21-8c21-fbf43b2d5522,SESCO,II.5.1,Chaco,AR-H,annual,2019,gas oil combustion consumption by agriculture machines,312.00455999999997,TJ,CO2,74100.0,kg/TJ,23119537.895999998,kg +f99b1e93-7c4a-3338-b813-08007b1e5aca,SESCO,II.5.1,Chaco,AR-H,annual,2019,gas oil combustion consumption by agriculture machines,312.00455999999997,TJ,CH4,3.9,kg/TJ,1216.8177839999998,kg +f99b1e93-7c4a-3338-b813-08007b1e5aca,SESCO,II.5.1,Chaco,AR-H,annual,2019,gas oil combustion consumption by agriculture machines,312.00455999999997,TJ,N2O,3.9,kg/TJ,1216.8177839999998,kg +772c818c-e91f-3d78-b2f4-2f6eaac0bcca,SESCO,II.5.1,Corrientes,AR-W,annual,2019,gas oil combustion consumption by agriculture machines,99.94404,TJ,CO2,74100.0,kg/TJ,7405853.364,kg +53da0c6e-ca0c-3c3f-ab29-0bb08a35cd51,SESCO,II.5.1,Corrientes,AR-W,annual,2019,gas oil combustion consumption by agriculture machines,99.94404,TJ,CH4,3.9,kg/TJ,389.781756,kg +53da0c6e-ca0c-3c3f-ab29-0bb08a35cd51,SESCO,II.5.1,Corrientes,AR-W,annual,2019,gas oil combustion consumption by agriculture machines,99.94404,TJ,N2O,3.9,kg/TJ,389.781756,kg +fa31e505-eb23-375d-bd23-e32f5ecb17d9,SESCO,II.5.1,Córdoba,AR-X,annual,2019,gas oil combustion consumption by agriculture machines,1641.07608,TJ,CO2,74100.0,kg/TJ,121603737.528,kg +e2e546dc-2b9a-32a4-b4d1-59757dd54395,SESCO,II.5.1,Córdoba,AR-X,annual,2019,gas oil combustion consumption by agriculture machines,1641.07608,TJ,CH4,3.9,kg/TJ,6400.196712,kg +e2e546dc-2b9a-32a4-b4d1-59757dd54395,SESCO,II.5.1,Córdoba,AR-X,annual,2019,gas oil combustion consumption by agriculture machines,1641.07608,TJ,N2O,3.9,kg/TJ,6400.196712,kg +0fe382d7-7971-34e9-ab35-a7da667159c7,SESCO,II.5.1,Entre Rios,AR-E,annual,2019,gas oil combustion consumption by agriculture machines,71.1564,TJ,CO2,74100.0,kg/TJ,5272689.24,kg +754dbe5e-b2ca-3742-8ddd-00867f73fc12,SESCO,II.5.1,Entre Rios,AR-E,annual,2019,gas oil combustion consumption by agriculture machines,71.1564,TJ,CH4,3.9,kg/TJ,277.50996000000004,kg +754dbe5e-b2ca-3742-8ddd-00867f73fc12,SESCO,II.5.1,Entre Rios,AR-E,annual,2019,gas oil combustion consumption by agriculture machines,71.1564,TJ,N2O,3.9,kg/TJ,277.50996000000004,kg +0d5de676-bd78-3481-85b0-1fa33ad72109,SESCO,II.5.1,La Pampa,AR-L,annual,2019,gas oil combustion consumption by agriculture machines,86.688,TJ,CO2,74100.0,kg/TJ,6423580.8,kg +39f76f46-1a60-328c-b719-cee5da9c98a8,SESCO,II.5.1,La Pampa,AR-L,annual,2019,gas oil combustion consumption by agriculture machines,86.688,TJ,CH4,3.9,kg/TJ,338.0832,kg +39f76f46-1a60-328c-b719-cee5da9c98a8,SESCO,II.5.1,La Pampa,AR-L,annual,2019,gas oil combustion consumption by agriculture machines,86.688,TJ,N2O,3.9,kg/TJ,338.0832,kg +8566c21d-6b4b-315c-a674-7dead7925ef1,SESCO,II.5.1,Mendoza,AR-M,annual,2019,gas oil combustion consumption by agriculture machines,679.48944,TJ,CO2,74100.0,kg/TJ,50350167.50399999,kg +8c1e4b52-f6c2-3cf2-91a6-a64fe5c7515b,SESCO,II.5.1,Mendoza,AR-M,annual,2019,gas oil combustion consumption by agriculture machines,679.48944,TJ,CH4,3.9,kg/TJ,2650.0088159999996,kg +8c1e4b52-f6c2-3cf2-91a6-a64fe5c7515b,SESCO,II.5.1,Mendoza,AR-M,annual,2019,gas oil combustion consumption by agriculture machines,679.48944,TJ,N2O,3.9,kg/TJ,2650.0088159999996,kg +8f652b6c-04ec-3a7a-963d-8b08e296d21f,SESCO,II.5.1,Neuquén,AR-Q,annual,2019,gas oil combustion consumption by agriculture machines,128.73168,TJ,CO2,74100.0,kg/TJ,9539017.488000002,kg +9594a649-e6b2-304c-8efc-9fd496c064c3,SESCO,II.5.1,Neuquén,AR-Q,annual,2019,gas oil combustion consumption by agriculture machines,128.73168,TJ,CH4,3.9,kg/TJ,502.053552,kg +9594a649-e6b2-304c-8efc-9fd496c064c3,SESCO,II.5.1,Neuquén,AR-Q,annual,2019,gas oil combustion consumption by agriculture machines,128.73168,TJ,N2O,3.9,kg/TJ,502.053552,kg +f6fa66f1-8cff-3171-a6f2-3c33f0c8d9d1,SESCO,II.5.1,Santa Cruz,AR-Z,annual,2019,gas oil combustion consumption by agriculture machines,55.37196,TJ,CO2,74100.0,kg/TJ,4103062.236,kg +a8905203-7f50-3906-a630-ee35e970294a,SESCO,II.5.1,Santa Cruz,AR-Z,annual,2019,gas oil combustion consumption by agriculture machines,55.37196,TJ,CH4,3.9,kg/TJ,215.950644,kg +a8905203-7f50-3906-a630-ee35e970294a,SESCO,II.5.1,Santa Cruz,AR-Z,annual,2019,gas oil combustion consumption by agriculture machines,55.37196,TJ,N2O,3.9,kg/TJ,215.950644,kg +473859b7-3f72-3e38-9fde-d1c49c5f43d0,SESCO,II.5.1,Santa Fe,AR-S,annual,2019,gas oil combustion consumption by agriculture machines,2022.46716,TJ,CO2,74100.0,kg/TJ,149864816.556,kg +520f11f6-0f03-380a-b9ca-067de74413ca,SESCO,II.5.1,Santa Fe,AR-S,annual,2019,gas oil combustion consumption by agriculture machines,2022.46716,TJ,CH4,3.9,kg/TJ,7887.621923999999,kg +520f11f6-0f03-380a-b9ca-067de74413ca,SESCO,II.5.1,Santa Fe,AR-S,annual,2019,gas oil combustion consumption by agriculture machines,2022.46716,TJ,N2O,3.9,kg/TJ,7887.621923999999,kg +37477141-448a-3efb-8fd1-c2c71e05fb06,SESCO,II.5.1,Santiago del Estero,AR-G,annual,2019,gas oil combustion consumption by agriculture machines,170.16132,TJ,CO2,74100.0,kg/TJ,12608953.811999999,kg +d45174b9-30a3-3991-9442-2371792f7c27,SESCO,II.5.1,Santiago del Estero,AR-G,annual,2019,gas oil combustion consumption by agriculture machines,170.16132,TJ,CH4,3.9,kg/TJ,663.629148,kg +d45174b9-30a3-3991-9442-2371792f7c27,SESCO,II.5.1,Santiago del Estero,AR-G,annual,2019,gas oil combustion consumption by agriculture machines,170.16132,TJ,N2O,3.9,kg/TJ,663.629148,kg +815c3168-6bb2-3efd-915d-4e931a239dd7,SESCO,II.5.1,Tucuman,AR-T,annual,2019,gas oil combustion consumption by agriculture machines,142.3128,TJ,CO2,74100.0,kg/TJ,10545378.48,kg +ea9a03e2-d177-3572-b101-ed1d81efa92a,SESCO,II.5.1,Tucuman,AR-T,annual,2019,gas oil combustion consumption by agriculture machines,142.3128,TJ,CH4,3.9,kg/TJ,555.0199200000001,kg +ea9a03e2-d177-3572-b101-ed1d81efa92a,SESCO,II.5.1,Tucuman,AR-T,annual,2019,gas oil combustion consumption by agriculture machines,142.3128,TJ,N2O,3.9,kg/TJ,555.0199200000001,kg +af5ac64c-8ae8-3ffc-b8da-198f8cb0fe06,SESCO,II.5.1,Buenos Aires,AR-B,annual,2019,gas oil combustion consumption by agriculture machines,69.38652,TJ,CO2,74100.0,kg/TJ,5141541.132,kg +984dd0b0-24ce-33b3-b833-fad47830abd6,SESCO,II.5.1,Buenos Aires,AR-B,annual,2019,gas oil combustion consumption by agriculture machines,69.38652,TJ,CH4,3.9,kg/TJ,270.607428,kg +984dd0b0-24ce-33b3-b833-fad47830abd6,SESCO,II.5.1,Buenos Aires,AR-B,annual,2019,gas oil combustion consumption by agriculture machines,69.38652,TJ,N2O,3.9,kg/TJ,270.607428,kg +888a9580-3faa-30c8-b819-02efcabcd605,SESCO,II.5.1,Chaco,AR-H,annual,2019,gas oil combustion consumption by agriculture machines,73.21524,TJ,CO2,74100.0,kg/TJ,5425249.284,kg +f6a150ae-8134-3143-b8b8-e7cbfb01ddd4,SESCO,II.5.1,Chaco,AR-H,annual,2019,gas oil combustion consumption by agriculture machines,73.21524,TJ,CH4,3.9,kg/TJ,285.53943599999997,kg +f6a150ae-8134-3143-b8b8-e7cbfb01ddd4,SESCO,II.5.1,Chaco,AR-H,annual,2019,gas oil combustion consumption by agriculture machines,73.21524,TJ,N2O,3.9,kg/TJ,285.53943599999997,kg +6f81d7c7-bf3e-31bf-bc3b-a08bbc2cd7cd,SESCO,II.5.1,Corrientes,AR-W,annual,2019,gas oil combustion consumption by agriculture machines,23.839199999999998,TJ,CO2,74100.0,kg/TJ,1766484.72,kg +e70e3000-f22d-36b1-a333-a764cb38c3de,SESCO,II.5.1,Corrientes,AR-W,annual,2019,gas oil combustion consumption by agriculture machines,23.839199999999998,TJ,CH4,3.9,kg/TJ,92.97287999999999,kg +e70e3000-f22d-36b1-a333-a764cb38c3de,SESCO,II.5.1,Corrientes,AR-W,annual,2019,gas oil combustion consumption by agriculture machines,23.839199999999998,TJ,N2O,3.9,kg/TJ,92.97287999999999,kg +9b79ad38-21ee-315f-b526-86fba7cf7caa,SESCO,II.5.1,Córdoba,AR-X,annual,2019,gas oil combustion consumption by agriculture machines,79.50012,TJ,CO2,74100.0,kg/TJ,5890958.892,kg +2c741362-7643-3e93-a963-f9aa9ab5f1b9,SESCO,II.5.1,Córdoba,AR-X,annual,2019,gas oil combustion consumption by agriculture machines,79.50012,TJ,CH4,3.9,kg/TJ,310.05046799999997,kg +2c741362-7643-3e93-a963-f9aa9ab5f1b9,SESCO,II.5.1,Córdoba,AR-X,annual,2019,gas oil combustion consumption by agriculture machines,79.50012,TJ,N2O,3.9,kg/TJ,310.05046799999997,kg +aca827d3-d4ff-3235-ae5d-0b1e32c7242a,SESCO,II.5.1,La Pampa,AR-L,annual,2019,gas oil combustion consumption by agriculture machines,7.7658,TJ,CO2,74100.0,kg/TJ,575445.78,kg +bc0469ff-a3a4-3083-84a6-2e3c1aa28d0d,SESCO,II.5.1,La Pampa,AR-L,annual,2019,gas oil combustion consumption by agriculture machines,7.7658,TJ,CH4,3.9,kg/TJ,30.28662,kg +bc0469ff-a3a4-3083-84a6-2e3c1aa28d0d,SESCO,II.5.1,La Pampa,AR-L,annual,2019,gas oil combustion consumption by agriculture machines,7.7658,TJ,N2O,3.9,kg/TJ,30.28662,kg +8f63089d-2806-3bef-bff5-d0571d68c6ff,SESCO,II.5.1,Mendoza,AR-M,annual,2019,gas oil combustion consumption by agriculture machines,165.32124,TJ,CO2,74100.0,kg/TJ,12250303.884,kg +0bd38547-ded4-3b86-a56d-b3c568c5a270,SESCO,II.5.1,Mendoza,AR-M,annual,2019,gas oil combustion consumption by agriculture machines,165.32124,TJ,CH4,3.9,kg/TJ,644.7528359999999,kg +0bd38547-ded4-3b86-a56d-b3c568c5a270,SESCO,II.5.1,Mendoza,AR-M,annual,2019,gas oil combustion consumption by agriculture machines,165.32124,TJ,N2O,3.9,kg/TJ,644.7528359999999,kg +de89cacc-806d-3bb0-990a-30db407a83a3,SESCO,II.5.1,Neuquén,AR-Q,annual,2019,gas oil combustion consumption by agriculture machines,9.28284,TJ,CO2,74100.0,kg/TJ,687858.444,kg +e1ded2ec-2419-381b-8f3a-81de4097dae3,SESCO,II.5.1,Neuquén,AR-Q,annual,2019,gas oil combustion consumption by agriculture machines,9.28284,TJ,CH4,3.9,kg/TJ,36.203076,kg +e1ded2ec-2419-381b-8f3a-81de4097dae3,SESCO,II.5.1,Neuquén,AR-Q,annual,2019,gas oil combustion consumption by agriculture machines,9.28284,TJ,N2O,3.9,kg/TJ,36.203076,kg +2ea59ce5-838a-3311-a648-fcb95b7850e6,SESCO,II.5.1,Santa Cruz,AR-Z,annual,2019,gas oil combustion consumption by agriculture machines,20.69676,TJ,CO2,74100.0,kg/TJ,1533629.9160000002,kg +88e8b607-22ae-35f8-9d43-144e31d69683,SESCO,II.5.1,Santa Cruz,AR-Z,annual,2019,gas oil combustion consumption by agriculture machines,20.69676,TJ,CH4,3.9,kg/TJ,80.717364,kg +88e8b607-22ae-35f8-9d43-144e31d69683,SESCO,II.5.1,Santa Cruz,AR-Z,annual,2019,gas oil combustion consumption by agriculture machines,20.69676,TJ,N2O,3.9,kg/TJ,80.717364,kg +6d460fee-6f32-3d04-90ca-a222df2673ac,SESCO,II.5.1,Santa Fe,AR-S,annual,2019,gas oil combustion consumption by agriculture machines,113.52516,TJ,CO2,74100.0,kg/TJ,8412214.356,kg +67d4d4d2-f243-355d-8441-3f3f7866fd00,SESCO,II.5.1,Santa Fe,AR-S,annual,2019,gas oil combustion consumption by agriculture machines,113.52516,TJ,CH4,3.9,kg/TJ,442.74812399999996,kg +67d4d4d2-f243-355d-8441-3f3f7866fd00,SESCO,II.5.1,Santa Fe,AR-S,annual,2019,gas oil combustion consumption by agriculture machines,113.52516,TJ,N2O,3.9,kg/TJ,442.74812399999996,kg +571e2e02-ef95-3f1e-bc11-e742a6abc2cf,SESCO,II.5.1,Santiago del Estero,AR-G,annual,2019,gas oil combustion consumption by agriculture machines,27.52344,TJ,CO2,74100.0,kg/TJ,2039486.904,kg +b74e18dc-972a-3607-bdf4-d8a9e1a5670f,SESCO,II.5.1,Santiago del Estero,AR-G,annual,2019,gas oil combustion consumption by agriculture machines,27.52344,TJ,CH4,3.9,kg/TJ,107.341416,kg +b74e18dc-972a-3607-bdf4-d8a9e1a5670f,SESCO,II.5.1,Santiago del Estero,AR-G,annual,2019,gas oil combustion consumption by agriculture machines,27.52344,TJ,N2O,3.9,kg/TJ,107.341416,kg +b19fa8e3-7823-346d-ab24-2c1d349ff0f4,SESCO,II.5.1,Tucuman,AR-T,annual,2019,gas oil combustion consumption by agriculture machines,26.87328,TJ,CO2,74100.0,kg/TJ,1991310.0480000002,kg +4c5b0450-06b4-3a15-b4c8-b10aba2eae83,SESCO,II.5.1,Tucuman,AR-T,annual,2019,gas oil combustion consumption by agriculture machines,26.87328,TJ,CH4,3.9,kg/TJ,104.805792,kg +4c5b0450-06b4-3a15-b4c8-b10aba2eae83,SESCO,II.5.1,Tucuman,AR-T,annual,2019,gas oil combustion consumption by agriculture machines,26.87328,TJ,N2O,3.9,kg/TJ,104.805792,kg +c9111535-d053-3db9-a46c-39dad2f7eac7,SESCO,II.1.1,Buenos Aires,AR-B,annual,2019,gas oil combustion consumption by to the public,6533.71068,TJ,CO2,74100.0,kg/TJ,484147961.388,kg +45c44cff-3236-3a48-9b61-6e486202c704,SESCO,II.1.1,Buenos Aires,AR-B,annual,2019,gas oil combustion consumption by to the public,6533.71068,TJ,CH4,3.9,kg/TJ,25481.471652,kg +45c44cff-3236-3a48-9b61-6e486202c704,SESCO,II.1.1,Buenos Aires,AR-B,annual,2019,gas oil combustion consumption by to the public,6533.71068,TJ,N2O,3.9,kg/TJ,25481.471652,kg +f7701347-6e83-3680-ba2a-ba2f51c5785a,SESCO,II.1.1,Capital Federal,AR-C,annual,2019,gas oil combustion consumption by to the public,640.84104,TJ,CO2,74100.0,kg/TJ,47486321.064,kg +79d4c2d3-cdde-3e12-afd4-cb09ec9724ea,SESCO,II.1.1,Capital Federal,AR-C,annual,2019,gas oil combustion consumption by to the public,640.84104,TJ,CH4,3.9,kg/TJ,2499.280056,kg +79d4c2d3-cdde-3e12-afd4-cb09ec9724ea,SESCO,II.1.1,Capital Federal,AR-C,annual,2019,gas oil combustion consumption by to the public,640.84104,TJ,N2O,3.9,kg/TJ,2499.280056,kg +77448e63-3854-311a-9514-78646387856b,SESCO,II.1.1,Catamarca,AR-K,annual,2019,gas oil combustion consumption by to the public,186.30696,TJ,CO2,74100.0,kg/TJ,13805345.736,kg +9b29ab08-c95a-3e4b-a199-008ce2e69414,SESCO,II.1.1,Catamarca,AR-K,annual,2019,gas oil combustion consumption by to the public,186.30696,TJ,CH4,3.9,kg/TJ,726.597144,kg +9b29ab08-c95a-3e4b-a199-008ce2e69414,SESCO,II.1.1,Catamarca,AR-K,annual,2019,gas oil combustion consumption by to the public,186.30696,TJ,N2O,3.9,kg/TJ,726.597144,kg +8a6cd6e1-c3e3-3b22-a902-7765f378d8e6,SESCO,II.1.1,Chaco,AR-H,annual,2019,gas oil combustion consumption by to the public,274.512,TJ,CO2,74100.0,kg/TJ,20341339.2,kg +9e533823-6805-3f99-85a8-cf7b79d42032,SESCO,II.1.1,Chaco,AR-H,annual,2019,gas oil combustion consumption by to the public,274.512,TJ,CH4,3.9,kg/TJ,1070.5968,kg +9e533823-6805-3f99-85a8-cf7b79d42032,SESCO,II.1.1,Chaco,AR-H,annual,2019,gas oil combustion consumption by to the public,274.512,TJ,N2O,3.9,kg/TJ,1070.5968,kg +f05bf604-fb8a-3599-9b72-6d5809f39560,SESCO,II.1.1,Chubut,AR-U,annual,2019,gas oil combustion consumption by to the public,1251.0162,TJ,CO2,74100.0,kg/TJ,92700300.42,kg +efdba0a1-c591-37ab-9384-8ffc95dbee1f,SESCO,II.1.1,Chubut,AR-U,annual,2019,gas oil combustion consumption by to the public,1251.0162,TJ,CH4,3.9,kg/TJ,4878.96318,kg +efdba0a1-c591-37ab-9384-8ffc95dbee1f,SESCO,II.1.1,Chubut,AR-U,annual,2019,gas oil combustion consumption by to the public,1251.0162,TJ,N2O,3.9,kg/TJ,4878.96318,kg +71ff34d0-4f4d-39c0-8e80-f9168b8a4fff,SESCO,II.1.1,Corrientes,AR-W,annual,2019,gas oil combustion consumption by to the public,550.54104,TJ,CO2,74100.0,kg/TJ,40795091.063999996,kg +edfc9dcd-1fed-3d24-a301-453a121e5397,SESCO,II.1.1,Corrientes,AR-W,annual,2019,gas oil combustion consumption by to the public,550.54104,TJ,CH4,3.9,kg/TJ,2147.110056,kg +edfc9dcd-1fed-3d24-a301-453a121e5397,SESCO,II.1.1,Corrientes,AR-W,annual,2019,gas oil combustion consumption by to the public,550.54104,TJ,N2O,3.9,kg/TJ,2147.110056,kg +e3e0694c-c3fa-39ce-a90c-860264cdec04,SESCO,II.1.1,Córdoba,AR-X,annual,2019,gas oil combustion consumption by to the public,3216.16092,TJ,CO2,74100.0,kg/TJ,238317524.172,kg +e31d82b9-49c4-3e34-9a4f-59efd413ce72,SESCO,II.1.1,Córdoba,AR-X,annual,2019,gas oil combustion consumption by to the public,3216.16092,TJ,CH4,3.9,kg/TJ,12543.027587999999,kg +e31d82b9-49c4-3e34-9a4f-59efd413ce72,SESCO,II.1.1,Córdoba,AR-X,annual,2019,gas oil combustion consumption by to the public,3216.16092,TJ,N2O,3.9,kg/TJ,12543.027587999999,kg +1aec03ea-25bf-3a9f-a2b4-81cbb4195166,SESCO,II.1.1,Entre Rios,AR-E,annual,2019,gas oil combustion consumption by to the public,1016.52516,TJ,CO2,74100.0,kg/TJ,75324514.356,kg +5875ff81-f6a7-38e5-97a7-abd48c51f981,SESCO,II.1.1,Entre Rios,AR-E,annual,2019,gas oil combustion consumption by to the public,1016.52516,TJ,CH4,3.9,kg/TJ,3964.448124,kg +5875ff81-f6a7-38e5-97a7-abd48c51f981,SESCO,II.1.1,Entre Rios,AR-E,annual,2019,gas oil combustion consumption by to the public,1016.52516,TJ,N2O,3.9,kg/TJ,3964.448124,kg +33d0f477-d0a6-35bc-917a-0e6f502c5aef,SESCO,II.1.1,Formosa,AR-P,annual,2019,gas oil combustion consumption by to the public,350.68908,TJ,CO2,74100.0,kg/TJ,25986060.827999998,kg +cd799f6a-2b18-32a5-8a22-d91dbca7f337,SESCO,II.1.1,Formosa,AR-P,annual,2019,gas oil combustion consumption by to the public,350.68908,TJ,CH4,3.9,kg/TJ,1367.687412,kg +cd799f6a-2b18-32a5-8a22-d91dbca7f337,SESCO,II.1.1,Formosa,AR-P,annual,2019,gas oil combustion consumption by to the public,350.68908,TJ,N2O,3.9,kg/TJ,1367.687412,kg +8e19202a-8c6e-38cf-8fca-1bbad16176b7,SESCO,II.1.1,Jujuy,AR-Y,annual,2019,gas oil combustion consumption by to the public,139.63992,TJ,CO2,74100.0,kg/TJ,10347318.071999999,kg +84ac57b9-643c-3484-adbf-e4a461897bfb,SESCO,II.1.1,Jujuy,AR-Y,annual,2019,gas oil combustion consumption by to the public,139.63992,TJ,CH4,3.9,kg/TJ,544.595688,kg +84ac57b9-643c-3484-adbf-e4a461897bfb,SESCO,II.1.1,Jujuy,AR-Y,annual,2019,gas oil combustion consumption by to the public,139.63992,TJ,N2O,3.9,kg/TJ,544.595688,kg +82ee1691-f819-3b17-a379-a066c4072f07,SESCO,II.1.1,La Pampa,AR-L,annual,2019,gas oil combustion consumption by to the public,296.83416,TJ,CO2,74100.0,kg/TJ,21995411.256,kg +eb23ced7-3564-3f64-b6eb-164c0dff9360,SESCO,II.1.1,La Pampa,AR-L,annual,2019,gas oil combustion consumption by to the public,296.83416,TJ,CH4,3.9,kg/TJ,1157.653224,kg +eb23ced7-3564-3f64-b6eb-164c0dff9360,SESCO,II.1.1,La Pampa,AR-L,annual,2019,gas oil combustion consumption by to the public,296.83416,TJ,N2O,3.9,kg/TJ,1157.653224,kg +427c83c3-9eeb-39c3-b0de-29815e7e8403,SESCO,II.1.1,La Rioja,AR-F,annual,2019,gas oil combustion consumption by to the public,39.5514,TJ,CO2,74100.0,kg/TJ,2930758.74,kg +2a813c81-5bf9-3f86-9e01-fb5b52e86b16,SESCO,II.1.1,La Rioja,AR-F,annual,2019,gas oil combustion consumption by to the public,39.5514,TJ,CH4,3.9,kg/TJ,154.25046,kg +2a813c81-5bf9-3f86-9e01-fb5b52e86b16,SESCO,II.1.1,La Rioja,AR-F,annual,2019,gas oil combustion consumption by to the public,39.5514,TJ,N2O,3.9,kg/TJ,154.25046,kg +fc8d62e2-8f48-336a-8888-8769bb5ff31f,SESCO,II.1.1,Mendoza,AR-M,annual,2019,gas oil combustion consumption by to the public,880.6056,TJ,CO2,74100.0,kg/TJ,65252874.96,kg +5a7943c6-9501-3479-be7c-8f8060cfd66a,SESCO,II.1.1,Mendoza,AR-M,annual,2019,gas oil combustion consumption by to the public,880.6056,TJ,CH4,3.9,kg/TJ,3434.36184,kg +5a7943c6-9501-3479-be7c-8f8060cfd66a,SESCO,II.1.1,Mendoza,AR-M,annual,2019,gas oil combustion consumption by to the public,880.6056,TJ,N2O,3.9,kg/TJ,3434.36184,kg +a306df34-7155-3657-8cfb-8913217cc060,SESCO,II.1.1,Misiones,AR-N,annual,2019,gas oil combustion consumption by to the public,594.64356,TJ,CO2,74100.0,kg/TJ,44063087.796,kg +8c8a5f86-0f2e-3ddd-be84-7408c92f7344,SESCO,II.1.1,Misiones,AR-N,annual,2019,gas oil combustion consumption by to the public,594.64356,TJ,CH4,3.9,kg/TJ,2319.109884,kg +8c8a5f86-0f2e-3ddd-be84-7408c92f7344,SESCO,II.1.1,Misiones,AR-N,annual,2019,gas oil combustion consumption by to the public,594.64356,TJ,N2O,3.9,kg/TJ,2319.109884,kg +f68f8ca8-4a07-31ba-afa2-f4a5ed33d695,SESCO,II.1.1,Neuquén,AR-Q,annual,2019,gas oil combustion consumption by to the public,166.76604,TJ,CO2,74100.0,kg/TJ,12357363.564000001,kg +466c6ca1-ef4c-37e2-84b9-27aa5a3511e4,SESCO,II.1.1,Neuquén,AR-Q,annual,2019,gas oil combustion consumption by to the public,166.76604,TJ,CH4,3.9,kg/TJ,650.387556,kg +466c6ca1-ef4c-37e2-84b9-27aa5a3511e4,SESCO,II.1.1,Neuquén,AR-Q,annual,2019,gas oil combustion consumption by to the public,166.76604,TJ,N2O,3.9,kg/TJ,650.387556,kg +81a8e885-6a03-35e0-9302-53417fce4d73,SESCO,II.1.1,Rio Negro,AR-R,annual,2019,gas oil combustion consumption by to the public,391.1796,TJ,CO2,74100.0,kg/TJ,28986408.36,kg +6a4fe960-2f17-3498-a952-7f120f5d0440,SESCO,II.1.1,Rio Negro,AR-R,annual,2019,gas oil combustion consumption by to the public,391.1796,TJ,CH4,3.9,kg/TJ,1525.60044,kg +6a4fe960-2f17-3498-a952-7f120f5d0440,SESCO,II.1.1,Rio Negro,AR-R,annual,2019,gas oil combustion consumption by to the public,391.1796,TJ,N2O,3.9,kg/TJ,1525.60044,kg +76079fb9-1681-39c3-8578-c73311f7f098,SESCO,II.1.1,Salta,AR-A,annual,2019,gas oil combustion consumption by to the public,56.09436,TJ,CO2,74100.0,kg/TJ,4156592.0760000004,kg +ef7adef7-22bf-3c91-9e24-a8e5b13df216,SESCO,II.1.1,Salta,AR-A,annual,2019,gas oil combustion consumption by to the public,56.09436,TJ,CH4,3.9,kg/TJ,218.768004,kg +ef7adef7-22bf-3c91-9e24-a8e5b13df216,SESCO,II.1.1,Salta,AR-A,annual,2019,gas oil combustion consumption by to the public,56.09436,TJ,N2O,3.9,kg/TJ,218.768004,kg +453388b4-c415-3abb-8bca-30d2efd200a3,SESCO,II.1.1,San Juan,AR-J,annual,2019,gas oil combustion consumption by to the public,182.65884,TJ,CO2,74100.0,kg/TJ,13535020.044,kg +a1cadcea-8565-3c50-b343-5af3bbdf96db,SESCO,II.1.1,San Juan,AR-J,annual,2019,gas oil combustion consumption by to the public,182.65884,TJ,CH4,3.9,kg/TJ,712.369476,kg +a1cadcea-8565-3c50-b343-5af3bbdf96db,SESCO,II.1.1,San Juan,AR-J,annual,2019,gas oil combustion consumption by to the public,182.65884,TJ,N2O,3.9,kg/TJ,712.369476,kg +90e85cdd-e4e0-3951-b324-09b54f415e0e,SESCO,II.1.1,San Luis,AR-D,annual,2019,gas oil combustion consumption by to the public,618.1938,TJ,CO2,74100.0,kg/TJ,45808160.58,kg +59ef67bf-d626-3d92-8b2d-6ae4d19d953d,SESCO,II.1.1,San Luis,AR-D,annual,2019,gas oil combustion consumption by to the public,618.1938,TJ,CH4,3.9,kg/TJ,2410.95582,kg +59ef67bf-d626-3d92-8b2d-6ae4d19d953d,SESCO,II.1.1,San Luis,AR-D,annual,2019,gas oil combustion consumption by to the public,618.1938,TJ,N2O,3.9,kg/TJ,2410.95582,kg +499a85ec-5909-3477-a31f-891c101991ab,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2019,gas oil combustion consumption by to the public,373.44468,TJ,CO2,74100.0,kg/TJ,27672250.788,kg +48bbb525-824f-351d-bd5c-63c399eaebf2,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2019,gas oil combustion consumption by to the public,373.44468,TJ,CH4,3.9,kg/TJ,1456.434252,kg +48bbb525-824f-351d-bd5c-63c399eaebf2,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2019,gas oil combustion consumption by to the public,373.44468,TJ,N2O,3.9,kg/TJ,1456.434252,kg +ae08ec35-c94b-3059-99f8-0313f542bff3,SESCO,II.1.1,Santa Fe,AR-S,annual,2019,gas oil combustion consumption by to the public,1947.62652,TJ,CO2,74100.0,kg/TJ,144319125.132,kg +98884e56-dd10-3c1e-93c2-91b823fe758f,SESCO,II.1.1,Santa Fe,AR-S,annual,2019,gas oil combustion consumption by to the public,1947.62652,TJ,CH4,3.9,kg/TJ,7595.743428,kg +98884e56-dd10-3c1e-93c2-91b823fe758f,SESCO,II.1.1,Santa Fe,AR-S,annual,2019,gas oil combustion consumption by to the public,1947.62652,TJ,N2O,3.9,kg/TJ,7595.743428,kg +8f00041e-df7a-38d3-b387-d1dd5a53093c,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2019,gas oil combustion consumption by to the public,526.73796,TJ,CO2,74100.0,kg/TJ,39031282.836,kg +12f018e8-be2a-344a-8bf6-3bda42faae63,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2019,gas oil combustion consumption by to the public,526.73796,TJ,CH4,3.9,kg/TJ,2054.278044,kg +12f018e8-be2a-344a-8bf6-3bda42faae63,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2019,gas oil combustion consumption by to the public,526.73796,TJ,N2O,3.9,kg/TJ,2054.278044,kg +29505e3f-1e9d-341f-a32a-f248ccc90098,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2019,gas oil combustion consumption by to the public,44.13864,TJ,CO2,74100.0,kg/TJ,3270673.2240000004,kg +a6502aa1-58e2-32a1-b1b2-d5de169799f5,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2019,gas oil combustion consumption by to the public,44.13864,TJ,CH4,3.9,kg/TJ,172.140696,kg +a6502aa1-58e2-32a1-b1b2-d5de169799f5,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2019,gas oil combustion consumption by to the public,44.13864,TJ,N2O,3.9,kg/TJ,172.140696,kg +174c147e-5d4e-3ae0-9351-48a79d0e52f0,SESCO,II.1.1,Tucuman,AR-T,annual,2019,gas oil combustion consumption by to the public,51.94056,TJ,CO2,74100.0,kg/TJ,3848795.496,kg +8c9288e9-fc0b-307d-a498-f214311fba7e,SESCO,II.1.1,Tucuman,AR-T,annual,2019,gas oil combustion consumption by to the public,51.94056,TJ,CH4,3.9,kg/TJ,202.56818399999997,kg +8c9288e9-fc0b-307d-a498-f214311fba7e,SESCO,II.1.1,Tucuman,AR-T,annual,2019,gas oil combustion consumption by to the public,51.94056,TJ,N2O,3.9,kg/TJ,202.56818399999997,kg +f10d2a6e-3fa8-3b0d-be21-531d0f3b79a5,SESCO,II.1.1,Buenos Aires,AR-B,annual,2019,gas oil combustion consumption by to the public,2464.72044,TJ,CO2,74100.0,kg/TJ,182635784.604,kg +a2605d17-ac9a-3381-ae15-3c10d9b62d0b,SESCO,II.1.1,Buenos Aires,AR-B,annual,2019,gas oil combustion consumption by to the public,2464.72044,TJ,CH4,3.9,kg/TJ,9612.409716,kg +a2605d17-ac9a-3381-ae15-3c10d9b62d0b,SESCO,II.1.1,Buenos Aires,AR-B,annual,2019,gas oil combustion consumption by to the public,2464.72044,TJ,N2O,3.9,kg/TJ,9612.409716,kg +911f11d8-6f84-38c4-854f-0adb0e1342d9,SESCO,II.1.1,Capital Federal,AR-C,annual,2019,gas oil combustion consumption by to the public,447.45456,TJ,CO2,74100.0,kg/TJ,33156382.896,kg +c89c5c14-4c27-3faa-8174-b212758e19df,SESCO,II.1.1,Capital Federal,AR-C,annual,2019,gas oil combustion consumption by to the public,447.45456,TJ,CH4,3.9,kg/TJ,1745.072784,kg +c89c5c14-4c27-3faa-8174-b212758e19df,SESCO,II.1.1,Capital Federal,AR-C,annual,2019,gas oil combustion consumption by to the public,447.45456,TJ,N2O,3.9,kg/TJ,1745.072784,kg +1216f97a-1901-3a33-a8a0-3292de26aa1d,SESCO,II.1.1,Catamarca,AR-K,annual,2019,gas oil combustion consumption by to the public,150.36756,TJ,CO2,74100.0,kg/TJ,11142236.196,kg +c822c3e2-40df-3957-a5f8-7130c1fc54f5,SESCO,II.1.1,Catamarca,AR-K,annual,2019,gas oil combustion consumption by to the public,150.36756,TJ,CH4,3.9,kg/TJ,586.433484,kg +c822c3e2-40df-3957-a5f8-7130c1fc54f5,SESCO,II.1.1,Catamarca,AR-K,annual,2019,gas oil combustion consumption by to the public,150.36756,TJ,N2O,3.9,kg/TJ,586.433484,kg +3e0ad805-3624-3a83-bb06-853f03b5b6a6,SESCO,II.1.1,Chaco,AR-H,annual,2019,gas oil combustion consumption by to the public,99.43836,TJ,CO2,74100.0,kg/TJ,7368382.476,kg +d1675f32-23e5-3936-8101-81e9ec304249,SESCO,II.1.1,Chaco,AR-H,annual,2019,gas oil combustion consumption by to the public,99.43836,TJ,CH4,3.9,kg/TJ,387.809604,kg +d1675f32-23e5-3936-8101-81e9ec304249,SESCO,II.1.1,Chaco,AR-H,annual,2019,gas oil combustion consumption by to the public,99.43836,TJ,N2O,3.9,kg/TJ,387.809604,kg +323aedd9-4da5-3ea9-b020-13c1c417e8f4,SESCO,II.1.1,Chubut,AR-U,annual,2019,gas oil combustion consumption by to the public,516.66048,TJ,CO2,74100.0,kg/TJ,38284541.568,kg +005ab6d4-2fb0-3547-95b3-4a4e445d281c,SESCO,II.1.1,Chubut,AR-U,annual,2019,gas oil combustion consumption by to the public,516.66048,TJ,CH4,3.9,kg/TJ,2014.975872,kg +005ab6d4-2fb0-3547-95b3-4a4e445d281c,SESCO,II.1.1,Chubut,AR-U,annual,2019,gas oil combustion consumption by to the public,516.66048,TJ,N2O,3.9,kg/TJ,2014.975872,kg +fd9d5e03-fb6a-34d4-bcf7-fd81a5b8b914,SESCO,II.1.1,Corrientes,AR-W,annual,2019,gas oil combustion consumption by to the public,165.21287999999998,TJ,CO2,74100.0,kg/TJ,12242274.407999998,kg +e3ac8c69-cee0-3a9a-9140-a6ab41eb6120,SESCO,II.1.1,Corrientes,AR-W,annual,2019,gas oil combustion consumption by to the public,165.21287999999998,TJ,CH4,3.9,kg/TJ,644.3302319999999,kg +e3ac8c69-cee0-3a9a-9140-a6ab41eb6120,SESCO,II.1.1,Corrientes,AR-W,annual,2019,gas oil combustion consumption by to the public,165.21287999999998,TJ,N2O,3.9,kg/TJ,644.3302319999999,kg +bd1694cc-c309-33cb-828a-0ead13ab464a,SESCO,II.1.1,Córdoba,AR-X,annual,2019,gas oil combustion consumption by to the public,821.4410399999999,TJ,CO2,74100.0,kg/TJ,60868781.063999996,kg +a169584a-fb78-38e8-9673-2d0598881357,SESCO,II.1.1,Córdoba,AR-X,annual,2019,gas oil combustion consumption by to the public,821.4410399999999,TJ,CH4,3.9,kg/TJ,3203.6200559999997,kg +a169584a-fb78-38e8-9673-2d0598881357,SESCO,II.1.1,Córdoba,AR-X,annual,2019,gas oil combustion consumption by to the public,821.4410399999999,TJ,N2O,3.9,kg/TJ,3203.6200559999997,kg +a8cc9bec-4ba7-3e0f-98e8-dfc7312a032f,SESCO,II.1.1,Entre Rios,AR-E,annual,2019,gas oil combustion consumption by to the public,338.9862,TJ,CO2,74100.0,kg/TJ,25118877.419999998,kg +df2ecdd9-c3d9-3e97-96b2-6840b530f6d6,SESCO,II.1.1,Entre Rios,AR-E,annual,2019,gas oil combustion consumption by to the public,338.9862,TJ,CH4,3.9,kg/TJ,1322.04618,kg +df2ecdd9-c3d9-3e97-96b2-6840b530f6d6,SESCO,II.1.1,Entre Rios,AR-E,annual,2019,gas oil combustion consumption by to the public,338.9862,TJ,N2O,3.9,kg/TJ,1322.04618,kg +60183474-8577-32bc-834a-da90963ea933,SESCO,II.1.1,Formosa,AR-P,annual,2019,gas oil combustion consumption by to the public,204.6198,TJ,CO2,74100.0,kg/TJ,15162327.18,kg +841b7b7d-9406-346b-aabb-d3cbf4ce34de,SESCO,II.1.1,Formosa,AR-P,annual,2019,gas oil combustion consumption by to the public,204.6198,TJ,CH4,3.9,kg/TJ,798.01722,kg +841b7b7d-9406-346b-aabb-d3cbf4ce34de,SESCO,II.1.1,Formosa,AR-P,annual,2019,gas oil combustion consumption by to the public,204.6198,TJ,N2O,3.9,kg/TJ,798.01722,kg +160d165d-797a-3075-82f1-319f09c2d9c0,SESCO,II.1.1,Jujuy,AR-Y,annual,2019,gas oil combustion consumption by to the public,52.41012,TJ,CO2,74100.0,kg/TJ,3883589.892,kg +126b0401-72d9-30a2-8b56-a90716e400da,SESCO,II.1.1,Jujuy,AR-Y,annual,2019,gas oil combustion consumption by to the public,52.41012,TJ,CH4,3.9,kg/TJ,204.39946799999998,kg +126b0401-72d9-30a2-8b56-a90716e400da,SESCO,II.1.1,Jujuy,AR-Y,annual,2019,gas oil combustion consumption by to the public,52.41012,TJ,N2O,3.9,kg/TJ,204.39946799999998,kg +e8411438-476c-3527-a988-f85dffe80623,SESCO,II.1.1,La Pampa,AR-L,annual,2019,gas oil combustion consumption by to the public,107.89044,TJ,CO2,74100.0,kg/TJ,7994681.604,kg +cc2c5ce9-a5b4-37dc-a28d-77931d2e9a29,SESCO,II.1.1,La Pampa,AR-L,annual,2019,gas oil combustion consumption by to the public,107.89044,TJ,CH4,3.9,kg/TJ,420.772716,kg +cc2c5ce9-a5b4-37dc-a28d-77931d2e9a29,SESCO,II.1.1,La Pampa,AR-L,annual,2019,gas oil combustion consumption by to the public,107.89044,TJ,N2O,3.9,kg/TJ,420.772716,kg +ec288d8d-3180-329a-9ead-ba6b9f0a8877,SESCO,II.1.1,La Rioja,AR-F,annual,2019,gas oil combustion consumption by to the public,44.535959999999996,TJ,CO2,74100.0,kg/TJ,3300114.6359999995,kg +15f776f1-e482-30b2-a414-b934c36727ee,SESCO,II.1.1,La Rioja,AR-F,annual,2019,gas oil combustion consumption by to the public,44.535959999999996,TJ,CH4,3.9,kg/TJ,173.69024399999998,kg +15f776f1-e482-30b2-a414-b934c36727ee,SESCO,II.1.1,La Rioja,AR-F,annual,2019,gas oil combustion consumption by to the public,44.535959999999996,TJ,N2O,3.9,kg/TJ,173.69024399999998,kg +e24c3c3b-dcbe-3437-99dc-3c2b2d282cf6,SESCO,II.1.1,Mendoza,AR-M,annual,2019,gas oil combustion consumption by to the public,290.65764,TJ,CO2,74100.0,kg/TJ,21537731.124,kg +6cfc5545-b31b-384f-8c66-f47c4122cb1d,SESCO,II.1.1,Mendoza,AR-M,annual,2019,gas oil combustion consumption by to the public,290.65764,TJ,CH4,3.9,kg/TJ,1133.5647960000001,kg +6cfc5545-b31b-384f-8c66-f47c4122cb1d,SESCO,II.1.1,Mendoza,AR-M,annual,2019,gas oil combustion consumption by to the public,290.65764,TJ,N2O,3.9,kg/TJ,1133.5647960000001,kg +c864c00b-f0ac-34d7-a53e-58e92f09a126,SESCO,II.1.1,Misiones,AR-N,annual,2019,gas oil combustion consumption by to the public,195.55367999999999,TJ,CO2,74100.0,kg/TJ,14490527.688,kg +9d7a34d3-9b64-37c1-b9bf-894e35957f53,SESCO,II.1.1,Misiones,AR-N,annual,2019,gas oil combustion consumption by to the public,195.55367999999999,TJ,CH4,3.9,kg/TJ,762.6593519999999,kg +9d7a34d3-9b64-37c1-b9bf-894e35957f53,SESCO,II.1.1,Misiones,AR-N,annual,2019,gas oil combustion consumption by to the public,195.55367999999999,TJ,N2O,3.9,kg/TJ,762.6593519999999,kg +f87088f9-7004-3680-86b2-2e2d41e4b69f,SESCO,II.1.1,Neuquén,AR-Q,annual,2019,gas oil combustion consumption by to the public,214.22772,TJ,CO2,74100.0,kg/TJ,15874274.052000001,kg +d63ba5dc-5ba3-3ff8-ac5d-cac52e9e3ebf,SESCO,II.1.1,Neuquén,AR-Q,annual,2019,gas oil combustion consumption by to the public,214.22772,TJ,CH4,3.9,kg/TJ,835.488108,kg +d63ba5dc-5ba3-3ff8-ac5d-cac52e9e3ebf,SESCO,II.1.1,Neuquén,AR-Q,annual,2019,gas oil combustion consumption by to the public,214.22772,TJ,N2O,3.9,kg/TJ,835.488108,kg +a91a57d0-6c81-357b-87ad-06bc43f660f8,SESCO,II.1.1,Rio Negro,AR-R,annual,2019,gas oil combustion consumption by to the public,235.43016,TJ,CO2,74100.0,kg/TJ,17445374.856,kg +d8dac3b3-0a04-30f8-b592-3bd839100157,SESCO,II.1.1,Rio Negro,AR-R,annual,2019,gas oil combustion consumption by to the public,235.43016,TJ,CH4,3.9,kg/TJ,918.177624,kg +d8dac3b3-0a04-30f8-b592-3bd839100157,SESCO,II.1.1,Rio Negro,AR-R,annual,2019,gas oil combustion consumption by to the public,235.43016,TJ,N2O,3.9,kg/TJ,918.177624,kg +ff1a49fa-7fd1-3290-8218-a12440ee0392,SESCO,II.1.1,Salta,AR-A,annual,2019,gas oil combustion consumption by to the public,32.39964,TJ,CO2,74100.0,kg/TJ,2400813.324,kg +76ce02fa-ec4d-395a-999d-bb9b008b071d,SESCO,II.1.1,Salta,AR-A,annual,2019,gas oil combustion consumption by to the public,32.39964,TJ,CH4,3.9,kg/TJ,126.35859599999999,kg +76ce02fa-ec4d-395a-999d-bb9b008b071d,SESCO,II.1.1,Salta,AR-A,annual,2019,gas oil combustion consumption by to the public,32.39964,TJ,N2O,3.9,kg/TJ,126.35859599999999,kg +0d2d5d36-42f3-3427-a478-cf833223b1f7,SESCO,II.1.1,San Juan,AR-J,annual,2019,gas oil combustion consumption by to the public,69.20591999999999,TJ,CO2,74100.0,kg/TJ,5128158.671999999,kg +b555efd8-a6e9-3d3a-b445-a93427207410,SESCO,II.1.1,San Juan,AR-J,annual,2019,gas oil combustion consumption by to the public,69.20591999999999,TJ,CH4,3.9,kg/TJ,269.90308799999997,kg +b555efd8-a6e9-3d3a-b445-a93427207410,SESCO,II.1.1,San Juan,AR-J,annual,2019,gas oil combustion consumption by to the public,69.20591999999999,TJ,N2O,3.9,kg/TJ,269.90308799999997,kg +3195a205-2022-3b8f-8a57-c4938575ab1b,SESCO,II.1.1,San Luis,AR-D,annual,2019,gas oil combustion consumption by to the public,143.25191999999998,TJ,CO2,74100.0,kg/TJ,10614967.271999998,kg +8fb37221-b0cf-3a0e-bf51-95ed1d92a506,SESCO,II.1.1,San Luis,AR-D,annual,2019,gas oil combustion consumption by to the public,143.25191999999998,TJ,CH4,3.9,kg/TJ,558.6824879999999,kg +8fb37221-b0cf-3a0e-bf51-95ed1d92a506,SESCO,II.1.1,San Luis,AR-D,annual,2019,gas oil combustion consumption by to the public,143.25191999999998,TJ,N2O,3.9,kg/TJ,558.6824879999999,kg +0c04e833-6c84-3851-b36a-07004d6d9587,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2019,gas oil combustion consumption by to the public,324.10476,TJ,CO2,74100.0,kg/TJ,24016162.716,kg +23d1e07c-c7b7-32cb-9592-0b6bc30c469b,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2019,gas oil combustion consumption by to the public,324.10476,TJ,CH4,3.9,kg/TJ,1264.008564,kg +23d1e07c-c7b7-32cb-9592-0b6bc30c469b,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2019,gas oil combustion consumption by to the public,324.10476,TJ,N2O,3.9,kg/TJ,1264.008564,kg +2bdafae9-4e82-356a-ae76-dc750f8a7960,SESCO,II.1.1,Santa Fe,AR-S,annual,2019,gas oil combustion consumption by to the public,740.4238799999999,TJ,CO2,74100.0,kg/TJ,54865409.507999994,kg +552cb9e5-206d-36e3-a49e-8a18e83024fb,SESCO,II.1.1,Santa Fe,AR-S,annual,2019,gas oil combustion consumption by to the public,740.4238799999999,TJ,CH4,3.9,kg/TJ,2887.653132,kg +552cb9e5-206d-36e3-a49e-8a18e83024fb,SESCO,II.1.1,Santa Fe,AR-S,annual,2019,gas oil combustion consumption by to the public,740.4238799999999,TJ,N2O,3.9,kg/TJ,2887.653132,kg +a20cfdd3-35bf-3146-9998-764ed08fdeb5,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2019,gas oil combustion consumption by to the public,156.43572,TJ,CO2,74100.0,kg/TJ,11591886.852,kg +756a5c7e-9755-3705-8d01-81c8bcc4c7d5,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2019,gas oil combustion consumption by to the public,156.43572,TJ,CH4,3.9,kg/TJ,610.099308,kg +756a5c7e-9755-3705-8d01-81c8bcc4c7d5,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2019,gas oil combustion consumption by to the public,156.43572,TJ,N2O,3.9,kg/TJ,610.099308,kg +36ff8017-3fdf-3916-834a-b8e36c691fa7,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2019,gas oil combustion consumption by to the public,37.63704,TJ,CO2,74100.0,kg/TJ,2788904.664,kg +6068be5a-b466-36e2-8a78-0c5a2afe160c,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2019,gas oil combustion consumption by to the public,37.63704,TJ,CH4,3.9,kg/TJ,146.784456,kg +6068be5a-b466-36e2-8a78-0c5a2afe160c,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2019,gas oil combustion consumption by to the public,37.63704,TJ,N2O,3.9,kg/TJ,146.784456,kg +7785679b-0d79-322e-88a9-d8da5bfc4994,SESCO,II.1.1,Tucuman,AR-T,annual,2019,gas oil combustion consumption by to the public,22.575,TJ,CO2,74100.0,kg/TJ,1672807.5,kg +c01963f4-f04d-3041-bfa0-83a83a62099d,SESCO,II.1.1,Tucuman,AR-T,annual,2019,gas oil combustion consumption by to the public,22.575,TJ,CH4,3.9,kg/TJ,88.04249999999999,kg +c01963f4-f04d-3041-bfa0-83a83a62099d,SESCO,II.1.1,Tucuman,AR-T,annual,2019,gas oil combustion consumption by to the public,22.575,TJ,N2O,3.9,kg/TJ,88.04249999999999,kg +ebb91929-c529-3940-b438-930e36419927,SESCO,II.1.1,Buenos Aires,AR-B,annual,2019,jet kerosene combustion consumption by to the public,6.668035999999999,TJ,CO2,71500.0,kg/TJ,476764.5739999999,kg +e2d80035-75f3-3d67-9909-d5dc6fed9548,SESCO,II.1.1,Buenos Aires,AR-B,annual,2019,jet kerosene combustion consumption by to the public,6.668035999999999,TJ,CH4,0.5,kg/TJ,3.3340179999999995,kg +db43895a-c5d6-38ec-a42c-87f9d47e082f,SESCO,II.1.1,Buenos Aires,AR-B,annual,2019,jet kerosene combustion consumption by to the public,6.668035999999999,TJ,N2O,2.0,kg/TJ,13.336071999999998,kg +2172a222-1057-3575-b5ad-e90d8a2edce0,SESCO,II.1.1,Córdoba,AR-X,annual,2019,jet kerosene combustion consumption by to the public,2.7678639999999994,TJ,CO2,71500.0,kg/TJ,197902.27599999995,kg +4f494f1f-2bc0-32a6-8579-8e605573e93c,SESCO,II.1.1,Córdoba,AR-X,annual,2019,jet kerosene combustion consumption by to the public,2.7678639999999994,TJ,CH4,0.5,kg/TJ,1.3839319999999997,kg +71a24aff-d029-318b-acfb-b8ef4f0573db,SESCO,II.1.1,Córdoba,AR-X,annual,2019,jet kerosene combustion consumption by to the public,2.7678639999999994,TJ,N2O,2.0,kg/TJ,5.535727999999999,kg +64ace85c-716f-32ff-8f96-aeecb72e2f7c,SESCO,II.1.1,Entre Rios,AR-E,annual,2019,jet kerosene combustion consumption by to the public,1.6041029999999998,TJ,CO2,71500.0,kg/TJ,114693.36449999998,kg +23693ba2-77a4-337d-8e45-023a5146c78e,SESCO,II.1.1,Entre Rios,AR-E,annual,2019,jet kerosene combustion consumption by to the public,1.6041029999999998,TJ,CH4,0.5,kg/TJ,0.8020514999999999,kg +463318a0-8b39-32fd-a021-831355089f13,SESCO,II.1.1,Entre Rios,AR-E,annual,2019,jet kerosene combustion consumption by to the public,1.6041029999999998,TJ,N2O,2.0,kg/TJ,3.2082059999999997,kg +daec74c5-30cf-3421-875f-8d882fa9a518,SESCO,II.1.1,Misiones,AR-N,annual,2019,jet kerosene combustion consumption by to the public,0.157265,TJ,CO2,71500.0,kg/TJ,11244.447499999998,kg +015cd6bb-9906-38b5-b189-28a37a787a15,SESCO,II.1.1,Misiones,AR-N,annual,2019,jet kerosene combustion consumption by to the public,0.157265,TJ,CH4,0.5,kg/TJ,0.0786325,kg +6837d2da-a8e8-32e0-85df-7823659a37f1,SESCO,II.1.1,Misiones,AR-N,annual,2019,jet kerosene combustion consumption by to the public,0.157265,TJ,N2O,2.0,kg/TJ,0.31453,kg +169ee7c9-6be4-3446-a4be-7c4ad0c2ddc7,SESCO,II.1.1,Santa Fe,AR-S,annual,2019,jet kerosene combustion consumption by to the public,2.1702569999999994,TJ,CO2,71500.0,kg/TJ,155173.37549999997,kg +b91f5899-9ba1-33d1-8177-c40e8cc58502,SESCO,II.1.1,Santa Fe,AR-S,annual,2019,jet kerosene combustion consumption by to the public,2.1702569999999994,TJ,CH4,0.5,kg/TJ,1.0851284999999997,kg +cd933b37-5245-3754-8a8e-86b3af3af0ed,SESCO,II.1.1,Santa Fe,AR-S,annual,2019,jet kerosene combustion consumption by to the public,2.1702569999999994,TJ,N2O,2.0,kg/TJ,4.340513999999999,kg +c3aaed93-aa0d-3220-b96e-a60b0d8ab1b0,SESCO,II.2.1,Buenos Aires,AR-B,annual,2019,gas oil combustion consumption by railway transport,377.70684,TJ,CO2,74100.0,kg/TJ,27988076.844,kg +674cfa99-ac9f-344e-81a5-cf1eca19db77,SESCO,II.2.1,Buenos Aires,AR-B,annual,2019,gas oil combustion consumption by railway transport,377.70684,TJ,CH4,3.9,kg/TJ,1473.056676,kg +674cfa99-ac9f-344e-81a5-cf1eca19db77,SESCO,II.2.1,Buenos Aires,AR-B,annual,2019,gas oil combustion consumption by railway transport,377.70684,TJ,N2O,3.9,kg/TJ,1473.056676,kg +16a25b21-2456-36dd-8055-52af05eec202,SESCO,II.2.1,Capital Federal,AR-C,annual,2019,gas oil combustion consumption by railway transport,4.515,TJ,CO2,74100.0,kg/TJ,334561.5,kg +9778eea8-7e00-31e3-8834-c0a2cccc40d7,SESCO,II.2.1,Capital Federal,AR-C,annual,2019,gas oil combustion consumption by railway transport,4.515,TJ,CH4,3.9,kg/TJ,17.6085,kg +9778eea8-7e00-31e3-8834-c0a2cccc40d7,SESCO,II.2.1,Capital Federal,AR-C,annual,2019,gas oil combustion consumption by railway transport,4.515,TJ,N2O,3.9,kg/TJ,17.6085,kg +eae09c84-7be6-3b28-831f-d97ccf1bdd64,SESCO,II.2.1,Córdoba,AR-X,annual,2019,gas oil combustion consumption by railway transport,6.57384,TJ,CO2,74100.0,kg/TJ,487121.544,kg +be10d55a-88eb-338d-b4ec-936e88bd5362,SESCO,II.2.1,Córdoba,AR-X,annual,2019,gas oil combustion consumption by railway transport,6.57384,TJ,CH4,3.9,kg/TJ,25.637976,kg +be10d55a-88eb-338d-b4ec-936e88bd5362,SESCO,II.2.1,Córdoba,AR-X,annual,2019,gas oil combustion consumption by railway transport,6.57384,TJ,N2O,3.9,kg/TJ,25.637976,kg +e11f9de8-60ee-397b-a9e8-d2b3a0a50e9b,SESCO,II.2.1,La Pampa,AR-L,annual,2019,gas oil combustion consumption by railway transport,85.53216,TJ,CO2,74100.0,kg/TJ,6337933.056000001,kg +e352889c-1c00-3b2c-9a50-b48d28093c77,SESCO,II.2.1,La Pampa,AR-L,annual,2019,gas oil combustion consumption by railway transport,85.53216,TJ,CH4,3.9,kg/TJ,333.575424,kg +e352889c-1c00-3b2c-9a50-b48d28093c77,SESCO,II.2.1,La Pampa,AR-L,annual,2019,gas oil combustion consumption by railway transport,85.53216,TJ,N2O,3.9,kg/TJ,333.575424,kg +a096f157-61d9-39df-a45e-d2e570e07946,SESCO,II.2.1,Neuquén,AR-Q,annual,2019,gas oil combustion consumption by railway transport,32.6886,TJ,CO2,74100.0,kg/TJ,2422225.2600000002,kg +aa151621-81e6-3bab-b4f8-f2d2d77cdcc0,SESCO,II.2.1,Neuquén,AR-Q,annual,2019,gas oil combustion consumption by railway transport,32.6886,TJ,CH4,3.9,kg/TJ,127.48554,kg +aa151621-81e6-3bab-b4f8-f2d2d77cdcc0,SESCO,II.2.1,Neuquén,AR-Q,annual,2019,gas oil combustion consumption by railway transport,32.6886,TJ,N2O,3.9,kg/TJ,127.48554,kg +670d5809-dfb8-3a37-af8e-78c460053d51,SESCO,II.2.1,Santa Fe,AR-S,annual,2019,gas oil combustion consumption by railway transport,198.51552,TJ,CO2,74100.0,kg/TJ,14710000.032000002,kg +87e20e3a-3ae8-34fa-9845-724106ed8d06,SESCO,II.2.1,Santa Fe,AR-S,annual,2019,gas oil combustion consumption by railway transport,198.51552,TJ,CH4,3.9,kg/TJ,774.2105280000001,kg +87e20e3a-3ae8-34fa-9845-724106ed8d06,SESCO,II.2.1,Santa Fe,AR-S,annual,2019,gas oil combustion consumption by railway transport,198.51552,TJ,N2O,3.9,kg/TJ,774.2105280000001,kg +b2e614fb-cd93-3a18-8eb9-e80a984cfe5f,SESCO,II.2.1,Santiago del Estero,AR-G,annual,2019,gas oil combustion consumption by railway transport,37.7454,TJ,CO2,74100.0,kg/TJ,2796934.1399999997,kg +59c4fba2-841e-3e09-9882-ea2b6f1d17bb,SESCO,II.2.1,Santiago del Estero,AR-G,annual,2019,gas oil combustion consumption by railway transport,37.7454,TJ,CH4,3.9,kg/TJ,147.20705999999998,kg +59c4fba2-841e-3e09-9882-ea2b6f1d17bb,SESCO,II.2.1,Santiago del Estero,AR-G,annual,2019,gas oil combustion consumption by railway transport,37.7454,TJ,N2O,3.9,kg/TJ,147.20705999999998,kg +7f3fb746-fbed-3492-ab4e-ef3e5bfbc033,SESCO,II.2.1,Tucuman,AR-T,annual,2019,gas oil combustion consumption by railway transport,23.44188,TJ,CO2,74100.0,kg/TJ,1737043.3080000002,kg +fc8a486b-d450-3d12-a5cf-c2a5e0df94ea,SESCO,II.2.1,Tucuman,AR-T,annual,2019,gas oil combustion consumption by railway transport,23.44188,TJ,CH4,3.9,kg/TJ,91.423332,kg +fc8a486b-d450-3d12-a5cf-c2a5e0df94ea,SESCO,II.2.1,Tucuman,AR-T,annual,2019,gas oil combustion consumption by railway transport,23.44188,TJ,N2O,3.9,kg/TJ,91.423332,kg +4c0a53ff-e902-3b25-83df-f4eaff23e074,SESCO,II.1.1,Buenos Aires,AR-B,annual,2019,gas oil combustion consumption by freight transport,1529.93484,TJ,CO2,74100.0,kg/TJ,113368171.644,kg +407ef531-0b36-3f88-94dd-2045c569f0ca,SESCO,II.1.1,Buenos Aires,AR-B,annual,2019,gas oil combustion consumption by freight transport,1529.93484,TJ,CH4,3.9,kg/TJ,5966.745875999999,kg +407ef531-0b36-3f88-94dd-2045c569f0ca,SESCO,II.1.1,Buenos Aires,AR-B,annual,2019,gas oil combustion consumption by freight transport,1529.93484,TJ,N2O,3.9,kg/TJ,5966.745875999999,kg +3bf388d9-098d-3d43-96c7-45c756219d14,SESCO,II.1.1,Capital Federal,AR-C,annual,2019,gas oil combustion consumption by freight transport,380.81316,TJ,CO2,74100.0,kg/TJ,28218255.156,kg +aadd0acf-509d-31de-8932-6d9f9868cd44,SESCO,II.1.1,Capital Federal,AR-C,annual,2019,gas oil combustion consumption by freight transport,380.81316,TJ,CH4,3.9,kg/TJ,1485.171324,kg +aadd0acf-509d-31de-8932-6d9f9868cd44,SESCO,II.1.1,Capital Federal,AR-C,annual,2019,gas oil combustion consumption by freight transport,380.81316,TJ,N2O,3.9,kg/TJ,1485.171324,kg +cdf7a385-bdcc-3c47-9dcb-d27a6e0f8c6b,SESCO,II.1.1,Catamarca,AR-K,annual,2019,gas oil combustion consumption by freight transport,11.45004,TJ,CO2,74100.0,kg/TJ,848447.9639999999,kg +c3b7b627-bf08-3571-91ec-b08fffbdb518,SESCO,II.1.1,Catamarca,AR-K,annual,2019,gas oil combustion consumption by freight transport,11.45004,TJ,CH4,3.9,kg/TJ,44.655156,kg +c3b7b627-bf08-3571-91ec-b08fffbdb518,SESCO,II.1.1,Catamarca,AR-K,annual,2019,gas oil combustion consumption by freight transport,11.45004,TJ,N2O,3.9,kg/TJ,44.655156,kg +1db9fd5d-7d55-3954-9f2c-bfcbb8b4b881,SESCO,II.1.1,Chaco,AR-H,annual,2019,gas oil combustion consumption by freight transport,17.662679999999998,TJ,CO2,74100.0,kg/TJ,1308804.5879999998,kg +1949b241-499f-3e2b-9da9-8c3687c05014,SESCO,II.1.1,Chaco,AR-H,annual,2019,gas oil combustion consumption by freight transport,17.662679999999998,TJ,CH4,3.9,kg/TJ,68.884452,kg +1949b241-499f-3e2b-9da9-8c3687c05014,SESCO,II.1.1,Chaco,AR-H,annual,2019,gas oil combustion consumption by freight transport,17.662679999999998,TJ,N2O,3.9,kg/TJ,68.884452,kg +0a3fad9a-9fc2-3c3e-b829-9bc27549a2f6,SESCO,II.1.1,Chubut,AR-U,annual,2019,gas oil combustion consumption by freight transport,35.14476,TJ,CO2,74100.0,kg/TJ,2604226.716,kg +855b5575-a058-30fb-86f8-ae81a8c1c4e5,SESCO,II.1.1,Chubut,AR-U,annual,2019,gas oil combustion consumption by freight transport,35.14476,TJ,CH4,3.9,kg/TJ,137.064564,kg +855b5575-a058-30fb-86f8-ae81a8c1c4e5,SESCO,II.1.1,Chubut,AR-U,annual,2019,gas oil combustion consumption by freight transport,35.14476,TJ,N2O,3.9,kg/TJ,137.064564,kg +471f5c5f-0ef5-3a44-95ba-5ed22415707a,SESCO,II.1.1,Corrientes,AR-W,annual,2019,gas oil combustion consumption by freight transport,53.6382,TJ,CO2,74100.0,kg/TJ,3974590.6199999996,kg +5cc926ed-4869-3a4f-8c92-58164890df06,SESCO,II.1.1,Corrientes,AR-W,annual,2019,gas oil combustion consumption by freight transport,53.6382,TJ,CH4,3.9,kg/TJ,209.18898,kg +5cc926ed-4869-3a4f-8c92-58164890df06,SESCO,II.1.1,Corrientes,AR-W,annual,2019,gas oil combustion consumption by freight transport,53.6382,TJ,N2O,3.9,kg/TJ,209.18898,kg +348fc757-e3ec-38e8-a715-05b52581275c,SESCO,II.1.1,Córdoba,AR-X,annual,2019,gas oil combustion consumption by freight transport,193.38648,TJ,CO2,74100.0,kg/TJ,14329938.168,kg +5a2a1605-4194-3496-98c5-c6e681a30415,SESCO,II.1.1,Córdoba,AR-X,annual,2019,gas oil combustion consumption by freight transport,193.38648,TJ,CH4,3.9,kg/TJ,754.207272,kg +5a2a1605-4194-3496-98c5-c6e681a30415,SESCO,II.1.1,Córdoba,AR-X,annual,2019,gas oil combustion consumption by freight transport,193.38648,TJ,N2O,3.9,kg/TJ,754.207272,kg +fe688624-be47-31ad-b782-2b958811a402,SESCO,II.1.1,Entre Rios,AR-E,annual,2019,gas oil combustion consumption by freight transport,186.921,TJ,CO2,74100.0,kg/TJ,13850846.1,kg +77743715-1a52-321d-9aef-feefbff2c9f3,SESCO,II.1.1,Entre Rios,AR-E,annual,2019,gas oil combustion consumption by freight transport,186.921,TJ,CH4,3.9,kg/TJ,728.9919,kg +77743715-1a52-321d-9aef-feefbff2c9f3,SESCO,II.1.1,Entre Rios,AR-E,annual,2019,gas oil combustion consumption by freight transport,186.921,TJ,N2O,3.9,kg/TJ,728.9919,kg +1ba9464a-87a0-3705-9425-112c49684b0f,SESCO,II.1.1,Formosa,AR-P,annual,2019,gas oil combustion consumption by freight transport,9.03,TJ,CO2,74100.0,kg/TJ,669123.0,kg +f12a0dd2-e8dd-39fa-b5e2-5a23aa7c2a2d,SESCO,II.1.1,Formosa,AR-P,annual,2019,gas oil combustion consumption by freight transport,9.03,TJ,CH4,3.9,kg/TJ,35.217,kg +f12a0dd2-e8dd-39fa-b5e2-5a23aa7c2a2d,SESCO,II.1.1,Formosa,AR-P,annual,2019,gas oil combustion consumption by freight transport,9.03,TJ,N2O,3.9,kg/TJ,35.217,kg +fadd597a-f3b3-388d-b105-3401a1ef7e4d,SESCO,II.1.1,Jujuy,AR-Y,annual,2019,gas oil combustion consumption by freight transport,8.05476,TJ,CO2,74100.0,kg/TJ,596857.716,kg +9b8af62b-82ec-365c-90d5-4b60eb610334,SESCO,II.1.1,Jujuy,AR-Y,annual,2019,gas oil combustion consumption by freight transport,8.05476,TJ,CH4,3.9,kg/TJ,31.413563999999997,kg +9b8af62b-82ec-365c-90d5-4b60eb610334,SESCO,II.1.1,Jujuy,AR-Y,annual,2019,gas oil combustion consumption by freight transport,8.05476,TJ,N2O,3.9,kg/TJ,31.413563999999997,kg +f3d92a26-9e80-3ec5-b587-b5169293dc30,SESCO,II.1.1,La Pampa,AR-L,annual,2019,gas oil combustion consumption by freight transport,29.6184,TJ,CO2,74100.0,kg/TJ,2194723.44,kg +5c4b8fa1-cc18-3d26-86db-a56ee6dddc50,SESCO,II.1.1,La Pampa,AR-L,annual,2019,gas oil combustion consumption by freight transport,29.6184,TJ,CH4,3.9,kg/TJ,115.51176,kg +5c4b8fa1-cc18-3d26-86db-a56ee6dddc50,SESCO,II.1.1,La Pampa,AR-L,annual,2019,gas oil combustion consumption by freight transport,29.6184,TJ,N2O,3.9,kg/TJ,115.51176,kg +bc89c4b5-2913-3383-9dc0-f8e1f19f7be7,SESCO,II.1.1,La Rioja,AR-F,annual,2019,gas oil combustion consumption by freight transport,3.9732,TJ,CO2,74100.0,kg/TJ,294414.12,kg +fd4f62dc-62d0-3549-8db3-0639378d0de0,SESCO,II.1.1,La Rioja,AR-F,annual,2019,gas oil combustion consumption by freight transport,3.9732,TJ,CH4,3.9,kg/TJ,15.495479999999999,kg +fd4f62dc-62d0-3549-8db3-0639378d0de0,SESCO,II.1.1,La Rioja,AR-F,annual,2019,gas oil combustion consumption by freight transport,3.9732,TJ,N2O,3.9,kg/TJ,15.495479999999999,kg +b6f1e8d6-b3c6-3571-9f1e-058e2c0e833f,SESCO,II.1.1,Mendoza,AR-M,annual,2019,gas oil combustion consumption by freight transport,61.0428,TJ,CO2,74100.0,kg/TJ,4523271.4799999995,kg +4d93f293-8afd-3f84-a474-9a092b4d8171,SESCO,II.1.1,Mendoza,AR-M,annual,2019,gas oil combustion consumption by freight transport,61.0428,TJ,CH4,3.9,kg/TJ,238.06691999999998,kg +4d93f293-8afd-3f84-a474-9a092b4d8171,SESCO,II.1.1,Mendoza,AR-M,annual,2019,gas oil combustion consumption by freight transport,61.0428,TJ,N2O,3.9,kg/TJ,238.06691999999998,kg +df33e6f7-403e-374a-80c3-43bc0a531aa8,SESCO,II.1.1,Misiones,AR-N,annual,2019,gas oil combustion consumption by freight transport,52.121159999999996,TJ,CO2,74100.0,kg/TJ,3862177.956,kg +4b727249-1e56-3a2f-87a6-ca1084f16abf,SESCO,II.1.1,Misiones,AR-N,annual,2019,gas oil combustion consumption by freight transport,52.121159999999996,TJ,CH4,3.9,kg/TJ,203.27252399999998,kg +4b727249-1e56-3a2f-87a6-ca1084f16abf,SESCO,II.1.1,Misiones,AR-N,annual,2019,gas oil combustion consumption by freight transport,52.121159999999996,TJ,N2O,3.9,kg/TJ,203.27252399999998,kg +94e1bafd-2ce0-3b3f-b75a-b1639505ff66,SESCO,II.1.1,Neuquén,AR-Q,annual,2019,gas oil combustion consumption by freight transport,1.37256,TJ,CO2,74100.0,kg/TJ,101706.696,kg +2ff2793b-bf3a-3626-a3d4-09349e8ec42c,SESCO,II.1.1,Neuquén,AR-Q,annual,2019,gas oil combustion consumption by freight transport,1.37256,TJ,CH4,3.9,kg/TJ,5.352984,kg +2ff2793b-bf3a-3626-a3d4-09349e8ec42c,SESCO,II.1.1,Neuquén,AR-Q,annual,2019,gas oil combustion consumption by freight transport,1.37256,TJ,N2O,3.9,kg/TJ,5.352984,kg +fb789e42-dcd4-3878-8e16-0d3fa4e505c6,SESCO,II.1.1,Rio Negro,AR-R,annual,2019,gas oil combustion consumption by freight transport,101.35272,TJ,CO2,74100.0,kg/TJ,7510236.552,kg +da9992c6-4f53-300d-bca2-fb81cd730def,SESCO,II.1.1,Rio Negro,AR-R,annual,2019,gas oil combustion consumption by freight transport,101.35272,TJ,CH4,3.9,kg/TJ,395.27560800000003,kg +da9992c6-4f53-300d-bca2-fb81cd730def,SESCO,II.1.1,Rio Negro,AR-R,annual,2019,gas oil combustion consumption by freight transport,101.35272,TJ,N2O,3.9,kg/TJ,395.27560800000003,kg +acabd128-93ac-3a50-9d7e-c203e5edab3a,SESCO,II.1.1,Salta,AR-A,annual,2019,gas oil combustion consumption by freight transport,4.76784,TJ,CO2,74100.0,kg/TJ,353296.94399999996,kg +e612d646-2904-3558-8c56-5751d97e3639,SESCO,II.1.1,Salta,AR-A,annual,2019,gas oil combustion consumption by freight transport,4.76784,TJ,CH4,3.9,kg/TJ,18.594575999999996,kg +e612d646-2904-3558-8c56-5751d97e3639,SESCO,II.1.1,Salta,AR-A,annual,2019,gas oil combustion consumption by freight transport,4.76784,TJ,N2O,3.9,kg/TJ,18.594575999999996,kg +ee9a7a46-a093-32bd-9561-6c1e3f3f5603,SESCO,II.1.1,San Juan,AR-J,annual,2019,gas oil combustion consumption by freight transport,7.44072,TJ,CO2,74100.0,kg/TJ,551357.352,kg +9cbe1fdb-557b-366f-9da5-9db939f62b5e,SESCO,II.1.1,San Juan,AR-J,annual,2019,gas oil combustion consumption by freight transport,7.44072,TJ,CH4,3.9,kg/TJ,29.018808,kg +9cbe1fdb-557b-366f-9da5-9db939f62b5e,SESCO,II.1.1,San Juan,AR-J,annual,2019,gas oil combustion consumption by freight transport,7.44072,TJ,N2O,3.9,kg/TJ,29.018808,kg +9d917f93-c811-3317-bed4-945da11d5bc7,SESCO,II.1.1,San Luis,AR-D,annual,2019,gas oil combustion consumption by freight transport,63.67956,TJ,CO2,74100.0,kg/TJ,4718655.396,kg +cf5bd0c5-6213-3951-93c8-aaa09c94f1b5,SESCO,II.1.1,San Luis,AR-D,annual,2019,gas oil combustion consumption by freight transport,63.67956,TJ,CH4,3.9,kg/TJ,248.35028400000002,kg +cf5bd0c5-6213-3951-93c8-aaa09c94f1b5,SESCO,II.1.1,San Luis,AR-D,annual,2019,gas oil combustion consumption by freight transport,63.67956,TJ,N2O,3.9,kg/TJ,248.35028400000002,kg +5f3ca0dd-9b49-3a06-8456-ed8effbede62,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2019,gas oil combustion consumption by freight transport,3.9732,TJ,CO2,74100.0,kg/TJ,294414.12,kg +bd2cf906-6593-3d34-9c3b-6f37a151f1fd,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2019,gas oil combustion consumption by freight transport,3.9732,TJ,CH4,3.9,kg/TJ,15.495479999999999,kg +bd2cf906-6593-3d34-9c3b-6f37a151f1fd,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2019,gas oil combustion consumption by freight transport,3.9732,TJ,N2O,3.9,kg/TJ,15.495479999999999,kg +cc96d6f2-7630-3d1f-a529-8cae2a97ec1c,SESCO,II.1.1,Santa Fe,AR-S,annual,2019,gas oil combustion consumption by freight transport,425.60196,TJ,CO2,74100.0,kg/TJ,31537105.236,kg +9c8938b7-a46d-3665-8d8a-a6e6e36d6388,SESCO,II.1.1,Santa Fe,AR-S,annual,2019,gas oil combustion consumption by freight transport,425.60196,TJ,CH4,3.9,kg/TJ,1659.847644,kg +9c8938b7-a46d-3665-8d8a-a6e6e36d6388,SESCO,II.1.1,Santa Fe,AR-S,annual,2019,gas oil combustion consumption by freight transport,425.60196,TJ,N2O,3.9,kg/TJ,1659.847644,kg +6cb2e463-2da8-3d1e-a182-ccc539c1d094,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2019,gas oil combustion consumption by freight transport,76.68276,TJ,CO2,74100.0,kg/TJ,5682192.516,kg +4e0266f8-1005-39ea-b82c-bd51dfea3b88,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2019,gas oil combustion consumption by freight transport,76.68276,TJ,CH4,3.9,kg/TJ,299.062764,kg +4e0266f8-1005-39ea-b82c-bd51dfea3b88,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2019,gas oil combustion consumption by freight transport,76.68276,TJ,N2O,3.9,kg/TJ,299.062764,kg +d1d872e8-0a11-3b67-843d-a47571c09b20,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2019,gas oil combustion consumption by freight transport,5.34576,TJ,CO2,74100.0,kg/TJ,396120.81600000005,kg +c3fbd03c-f0b0-3cf0-8ab7-8cd330423fdb,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2019,gas oil combustion consumption by freight transport,5.34576,TJ,CH4,3.9,kg/TJ,20.848464,kg +c3fbd03c-f0b0-3cf0-8ab7-8cd330423fdb,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2019,gas oil combustion consumption by freight transport,5.34576,TJ,N2O,3.9,kg/TJ,20.848464,kg +e2137792-6453-3e1b-851e-3cc3d1719a3d,SESCO,II.1.1,Tucuman,AR-T,annual,2019,gas oil combustion consumption by freight transport,37.2036,TJ,CO2,74100.0,kg/TJ,2756786.7600000002,kg +e8a1f6c5-3265-35a9-bd55-bf406b25829f,SESCO,II.1.1,Tucuman,AR-T,annual,2019,gas oil combustion consumption by freight transport,37.2036,TJ,CH4,3.9,kg/TJ,145.09404,kg +e8a1f6c5-3265-35a9-bd55-bf406b25829f,SESCO,II.1.1,Tucuman,AR-T,annual,2019,gas oil combustion consumption by freight transport,37.2036,TJ,N2O,3.9,kg/TJ,145.09404,kg +e0cccbe8-8abf-357e-b229-41085e990489,SESCO,II.1.1,Buenos Aires,AR-B,annual,2019,gas oil combustion consumption by freight transport,220.47648,TJ,CO2,74100.0,kg/TJ,16337307.168000001,kg +ac33ce72-8935-3212-8263-c28fb6849bff,SESCO,II.1.1,Buenos Aires,AR-B,annual,2019,gas oil combustion consumption by freight transport,220.47648,TJ,CH4,3.9,kg/TJ,859.858272,kg +ac33ce72-8935-3212-8263-c28fb6849bff,SESCO,II.1.1,Buenos Aires,AR-B,annual,2019,gas oil combustion consumption by freight transport,220.47648,TJ,N2O,3.9,kg/TJ,859.858272,kg +36e28089-5851-30b0-912e-85d186bf22e6,SESCO,II.1.1,Capital Federal,AR-C,annual,2019,gas oil combustion consumption by freight transport,15.42324,TJ,CO2,74100.0,kg/TJ,1142862.084,kg +42b2de08-550f-3c2f-bc50-ea5fc96b531f,SESCO,II.1.1,Capital Federal,AR-C,annual,2019,gas oil combustion consumption by freight transport,15.42324,TJ,CH4,3.9,kg/TJ,60.150636,kg +42b2de08-550f-3c2f-bc50-ea5fc96b531f,SESCO,II.1.1,Capital Federal,AR-C,annual,2019,gas oil combustion consumption by freight transport,15.42324,TJ,N2O,3.9,kg/TJ,60.150636,kg +99a1d017-61c8-3ec8-822f-e9375ac5803c,SESCO,II.1.1,Catamarca,AR-K,annual,2019,gas oil combustion consumption by freight transport,0.903,TJ,CO2,74100.0,kg/TJ,66912.3,kg +d617595d-115e-3f4c-84d1-85ddc59711db,SESCO,II.1.1,Catamarca,AR-K,annual,2019,gas oil combustion consumption by freight transport,0.903,TJ,CH4,3.9,kg/TJ,3.5217,kg +d617595d-115e-3f4c-84d1-85ddc59711db,SESCO,II.1.1,Catamarca,AR-K,annual,2019,gas oil combustion consumption by freight transport,0.903,TJ,N2O,3.9,kg/TJ,3.5217,kg +70f0370f-4362-3e24-9399-2403502c29a2,SESCO,II.1.1,Chaco,AR-H,annual,2019,gas oil combustion consumption by freight transport,2.38392,TJ,CO2,74100.0,kg/TJ,176648.47199999998,kg +6bb66e86-b86f-3dd2-ad9c-e4d11603136c,SESCO,II.1.1,Chaco,AR-H,annual,2019,gas oil combustion consumption by freight transport,2.38392,TJ,CH4,3.9,kg/TJ,9.297287999999998,kg +6bb66e86-b86f-3dd2-ad9c-e4d11603136c,SESCO,II.1.1,Chaco,AR-H,annual,2019,gas oil combustion consumption by freight transport,2.38392,TJ,N2O,3.9,kg/TJ,9.297287999999998,kg +07c1be8b-3113-35be-b888-50023ef002c7,SESCO,II.1.1,Chubut,AR-U,annual,2019,gas oil combustion consumption by freight transport,24.525479999999998,TJ,CO2,74100.0,kg/TJ,1817338.068,kg +d29082b0-f28c-3fc2-ba65-f99bb632d60c,SESCO,II.1.1,Chubut,AR-U,annual,2019,gas oil combustion consumption by freight transport,24.525479999999998,TJ,CH4,3.9,kg/TJ,95.64937199999999,kg +d29082b0-f28c-3fc2-ba65-f99bb632d60c,SESCO,II.1.1,Chubut,AR-U,annual,2019,gas oil combustion consumption by freight transport,24.525479999999998,TJ,N2O,3.9,kg/TJ,95.64937199999999,kg +557c2eff-f4b1-3e28-aaf4-45d8543c4df9,SESCO,II.1.1,Corrientes,AR-W,annual,2019,gas oil combustion consumption by freight transport,6.6460799999999995,TJ,CO2,74100.0,kg/TJ,492474.528,kg +b92c3f3d-f448-3fae-b05f-62bf30dd5976,SESCO,II.1.1,Corrientes,AR-W,annual,2019,gas oil combustion consumption by freight transport,6.6460799999999995,TJ,CH4,3.9,kg/TJ,25.919711999999997,kg +b92c3f3d-f448-3fae-b05f-62bf30dd5976,SESCO,II.1.1,Corrientes,AR-W,annual,2019,gas oil combustion consumption by freight transport,6.6460799999999995,TJ,N2O,3.9,kg/TJ,25.919711999999997,kg +a5ee9135-76a9-3fa3-a5af-c7cac902da9a,SESCO,II.1.1,Córdoba,AR-X,annual,2019,gas oil combustion consumption by freight transport,17.6988,TJ,CO2,74100.0,kg/TJ,1311481.0799999998,kg +a230107e-6e59-38af-aa19-53a4b00a8d00,SESCO,II.1.1,Córdoba,AR-X,annual,2019,gas oil combustion consumption by freight transport,17.6988,TJ,CH4,3.9,kg/TJ,69.02532,kg +a230107e-6e59-38af-aa19-53a4b00a8d00,SESCO,II.1.1,Córdoba,AR-X,annual,2019,gas oil combustion consumption by freight transport,17.6988,TJ,N2O,3.9,kg/TJ,69.02532,kg +adafe3af-0b7f-3186-bdee-16ed0994a726,SESCO,II.1.1,Entre Rios,AR-E,annual,2019,gas oil combustion consumption by freight transport,12.71424,TJ,CO2,74100.0,kg/TJ,942125.184,kg +20713b6b-4691-3f96-9351-2681db66be3a,SESCO,II.1.1,Entre Rios,AR-E,annual,2019,gas oil combustion consumption by freight transport,12.71424,TJ,CH4,3.9,kg/TJ,49.585536,kg +20713b6b-4691-3f96-9351-2681db66be3a,SESCO,II.1.1,Entre Rios,AR-E,annual,2019,gas oil combustion consumption by freight transport,12.71424,TJ,N2O,3.9,kg/TJ,49.585536,kg +b751b380-81d8-3e76-8144-642ee9fc0e30,SESCO,II.1.1,Formosa,AR-P,annual,2019,gas oil combustion consumption by freight transport,0.28896,TJ,CO2,74100.0,kg/TJ,21411.935999999998,kg +2cd82097-6684-3c9f-be50-61ad2dd06ea7,SESCO,II.1.1,Formosa,AR-P,annual,2019,gas oil combustion consumption by freight transport,0.28896,TJ,CH4,3.9,kg/TJ,1.126944,kg +2cd82097-6684-3c9f-be50-61ad2dd06ea7,SESCO,II.1.1,Formosa,AR-P,annual,2019,gas oil combustion consumption by freight transport,0.28896,TJ,N2O,3.9,kg/TJ,1.126944,kg +82fc3e37-b9c3-3b84-a057-aec5bbe2f957,SESCO,II.1.1,Jujuy,AR-Y,annual,2019,gas oil combustion consumption by freight transport,0.68628,TJ,CO2,74100.0,kg/TJ,50853.348,kg +21dee597-20e6-3deb-9201-f71f1ab06f8b,SESCO,II.1.1,Jujuy,AR-Y,annual,2019,gas oil combustion consumption by freight transport,0.68628,TJ,CH4,3.9,kg/TJ,2.676492,kg +21dee597-20e6-3deb-9201-f71f1ab06f8b,SESCO,II.1.1,Jujuy,AR-Y,annual,2019,gas oil combustion consumption by freight transport,0.68628,TJ,N2O,3.9,kg/TJ,2.676492,kg +d072ae01-f524-332e-ab25-afc736063007,SESCO,II.1.1,La Pampa,AR-L,annual,2019,gas oil combustion consumption by freight transport,1.6254,TJ,CO2,74100.0,kg/TJ,120442.14,kg +d3d7ae0a-7bd0-3581-a068-cd1f540abaf6,SESCO,II.1.1,La Pampa,AR-L,annual,2019,gas oil combustion consumption by freight transport,1.6254,TJ,CH4,3.9,kg/TJ,6.33906,kg +d3d7ae0a-7bd0-3581-a068-cd1f540abaf6,SESCO,II.1.1,La Pampa,AR-L,annual,2019,gas oil combustion consumption by freight transport,1.6254,TJ,N2O,3.9,kg/TJ,6.33906,kg +4d0207c8-003a-3070-b823-7bf99abfea90,SESCO,II.1.1,La Rioja,AR-F,annual,2019,gas oil combustion consumption by freight transport,0.32508,TJ,CO2,74100.0,kg/TJ,24088.428,kg +981acc61-5047-3b2a-ba59-7b75c68c3990,SESCO,II.1.1,La Rioja,AR-F,annual,2019,gas oil combustion consumption by freight transport,0.32508,TJ,CH4,3.9,kg/TJ,1.267812,kg +981acc61-5047-3b2a-ba59-7b75c68c3990,SESCO,II.1.1,La Rioja,AR-F,annual,2019,gas oil combustion consumption by freight transport,0.32508,TJ,N2O,3.9,kg/TJ,1.267812,kg +475a7fd8-27be-3b3a-be99-167eb3fc92f4,SESCO,II.1.1,Mendoza,AR-M,annual,2019,gas oil combustion consumption by freight transport,4.26216,TJ,CO2,74100.0,kg/TJ,315826.056,kg +b06eda9d-1ce6-3aff-bf2e-b0773bb6c2cb,SESCO,II.1.1,Mendoza,AR-M,annual,2019,gas oil combustion consumption by freight transport,4.26216,TJ,CH4,3.9,kg/TJ,16.622424,kg +b06eda9d-1ce6-3aff-bf2e-b0773bb6c2cb,SESCO,II.1.1,Mendoza,AR-M,annual,2019,gas oil combustion consumption by freight transport,4.26216,TJ,N2O,3.9,kg/TJ,16.622424,kg +464a0685-9783-36d5-96d6-9137943e55ea,SESCO,II.1.1,Misiones,AR-N,annual,2019,gas oil combustion consumption by freight transport,4.8400799999999995,TJ,CO2,74100.0,kg/TJ,358649.92799999996,kg +195a7ff8-14ab-3c27-b832-df8ae9ddb4f5,SESCO,II.1.1,Misiones,AR-N,annual,2019,gas oil combustion consumption by freight transport,4.8400799999999995,TJ,CH4,3.9,kg/TJ,18.876312,kg +195a7ff8-14ab-3c27-b832-df8ae9ddb4f5,SESCO,II.1.1,Misiones,AR-N,annual,2019,gas oil combustion consumption by freight transport,4.8400799999999995,TJ,N2O,3.9,kg/TJ,18.876312,kg +d88cc33a-e1dc-3611-9574-99ddce4844dc,SESCO,II.1.1,Neuquén,AR-Q,annual,2019,gas oil combustion consumption by freight transport,0.25284,TJ,CO2,74100.0,kg/TJ,18735.444,kg +e00f1981-f6e2-3410-85ad-2c207faf9565,SESCO,II.1.1,Neuquén,AR-Q,annual,2019,gas oil combustion consumption by freight transport,0.25284,TJ,CH4,3.9,kg/TJ,0.9860760000000001,kg +e00f1981-f6e2-3410-85ad-2c207faf9565,SESCO,II.1.1,Neuquén,AR-Q,annual,2019,gas oil combustion consumption by freight transport,0.25284,TJ,N2O,3.9,kg/TJ,0.9860760000000001,kg +31d887c4-2ca2-3289-b22b-28e1bcfabdac,SESCO,II.1.1,Rio Negro,AR-R,annual,2019,gas oil combustion consumption by freight transport,10.33032,TJ,CO2,74100.0,kg/TJ,765476.712,kg +d3b46a3e-6a0e-3fc5-8ec4-3c352f223df7,SESCO,II.1.1,Rio Negro,AR-R,annual,2019,gas oil combustion consumption by freight transport,10.33032,TJ,CH4,3.9,kg/TJ,40.288248,kg +d3b46a3e-6a0e-3fc5-8ec4-3c352f223df7,SESCO,II.1.1,Rio Negro,AR-R,annual,2019,gas oil combustion consumption by freight transport,10.33032,TJ,N2O,3.9,kg/TJ,40.288248,kg +b8b6675a-ff96-387b-88a1-85960185c734,SESCO,II.1.1,Salta,AR-A,annual,2019,gas oil combustion consumption by freight transport,0.65016,TJ,CO2,74100.0,kg/TJ,48176.856,kg +b40389e2-79f7-3f16-b046-a2a65916f5b8,SESCO,II.1.1,Salta,AR-A,annual,2019,gas oil combustion consumption by freight transport,0.65016,TJ,CH4,3.9,kg/TJ,2.535624,kg +b40389e2-79f7-3f16-b046-a2a65916f5b8,SESCO,II.1.1,Salta,AR-A,annual,2019,gas oil combustion consumption by freight transport,0.65016,TJ,N2O,3.9,kg/TJ,2.535624,kg +c19a8881-7868-3df5-bbd5-9b1071ddd210,SESCO,II.1.1,San Juan,AR-J,annual,2019,gas oil combustion consumption by freight transport,0.14448,TJ,CO2,74100.0,kg/TJ,10705.967999999999,kg +0c833d06-71a8-3521-97e1-29fd53d2648b,SESCO,II.1.1,San Juan,AR-J,annual,2019,gas oil combustion consumption by freight transport,0.14448,TJ,CH4,3.9,kg/TJ,0.563472,kg +0c833d06-71a8-3521-97e1-29fd53d2648b,SESCO,II.1.1,San Juan,AR-J,annual,2019,gas oil combustion consumption by freight transport,0.14448,TJ,N2O,3.9,kg/TJ,0.563472,kg +4263e3c1-b6ec-3a34-b06e-8952dfb804c4,SESCO,II.1.1,San Luis,AR-D,annual,2019,gas oil combustion consumption by freight transport,10.61928,TJ,CO2,74100.0,kg/TJ,786888.648,kg +953df006-752a-3ecb-be11-38beea02eb3e,SESCO,II.1.1,San Luis,AR-D,annual,2019,gas oil combustion consumption by freight transport,10.61928,TJ,CH4,3.9,kg/TJ,41.415192,kg +953df006-752a-3ecb-be11-38beea02eb3e,SESCO,II.1.1,San Luis,AR-D,annual,2019,gas oil combustion consumption by freight transport,10.61928,TJ,N2O,3.9,kg/TJ,41.415192,kg +711dc2f0-1077-33fb-8775-940b6b6fb66a,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2019,gas oil combustion consumption by freight transport,1.30032,TJ,CO2,74100.0,kg/TJ,96353.712,kg +dd7ce4c7-8d3e-3892-9d8e-b7bab88ba2e1,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2019,gas oil combustion consumption by freight transport,1.30032,TJ,CH4,3.9,kg/TJ,5.071248,kg +dd7ce4c7-8d3e-3892-9d8e-b7bab88ba2e1,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2019,gas oil combustion consumption by freight transport,1.30032,TJ,N2O,3.9,kg/TJ,5.071248,kg +1aa0eb56-2c35-3563-bead-43aa102b3cbf,SESCO,II.1.1,Santa Fe,AR-S,annual,2019,gas oil combustion consumption by freight transport,43.84968,TJ,CO2,74100.0,kg/TJ,3249261.288,kg +e1062839-86e8-3f9e-b419-5865736fa0d2,SESCO,II.1.1,Santa Fe,AR-S,annual,2019,gas oil combustion consumption by freight transport,43.84968,TJ,CH4,3.9,kg/TJ,171.01375199999998,kg +e1062839-86e8-3f9e-b419-5865736fa0d2,SESCO,II.1.1,Santa Fe,AR-S,annual,2019,gas oil combustion consumption by freight transport,43.84968,TJ,N2O,3.9,kg/TJ,171.01375199999998,kg +fbc5e70b-e3f2-37d4-a3ec-be96d3feedd8,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2019,gas oil combustion consumption by freight transport,6.35712,TJ,CO2,74100.0,kg/TJ,471062.592,kg +acc65f85-f07f-3e5b-97d0-899a035a1693,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2019,gas oil combustion consumption by freight transport,6.35712,TJ,CH4,3.9,kg/TJ,24.792768,kg +acc65f85-f07f-3e5b-97d0-899a035a1693,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2019,gas oil combustion consumption by freight transport,6.35712,TJ,N2O,3.9,kg/TJ,24.792768,kg +f009434b-5391-3b91-8cab-61d1394a80ae,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2019,gas oil combustion consumption by freight transport,0.28896,TJ,CO2,74100.0,kg/TJ,21411.935999999998,kg +a9c6217a-fe4e-3418-ab5e-34f58ad1b625,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2019,gas oil combustion consumption by freight transport,0.28896,TJ,CH4,3.9,kg/TJ,1.126944,kg +a9c6217a-fe4e-3418-ab5e-34f58ad1b625,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2019,gas oil combustion consumption by freight transport,0.28896,TJ,N2O,3.9,kg/TJ,1.126944,kg +08bf5562-0f5e-31ab-a018-23ac2731f45c,SESCO,II.1.1,Tucuman,AR-T,annual,2019,gas oil combustion consumption by freight transport,13.545,TJ,CO2,74100.0,kg/TJ,1003684.5,kg +5ff2fee6-2fb0-34b0-8aa6-fc6faf8cf735,SESCO,II.1.1,Tucuman,AR-T,annual,2019,gas oil combustion consumption by freight transport,13.545,TJ,CH4,3.9,kg/TJ,52.8255,kg +5ff2fee6-2fb0-34b0-8aa6-fc6faf8cf735,SESCO,II.1.1,Tucuman,AR-T,annual,2019,gas oil combustion consumption by freight transport,13.545,TJ,N2O,3.9,kg/TJ,52.8255,kg +c5e547a0-80f2-3ce5-b126-33374fc5b4e2,SESCO,II.1.1,Buenos Aires,AR-B,annual,2019,gas oil combustion consumption by public passenger transport,1675.17336,TJ,CO2,74100.0,kg/TJ,124130345.976,kg +de966c40-ffff-3784-9eff-70829fad0af7,SESCO,II.1.1,Buenos Aires,AR-B,annual,2019,gas oil combustion consumption by public passenger transport,1675.17336,TJ,CH4,3.9,kg/TJ,6533.176104,kg +de966c40-ffff-3784-9eff-70829fad0af7,SESCO,II.1.1,Buenos Aires,AR-B,annual,2019,gas oil combustion consumption by public passenger transport,1675.17336,TJ,N2O,3.9,kg/TJ,6533.176104,kg +f9eaa3d5-4eb9-35d2-8240-54e7f70fc846,SESCO,II.1.1,Capital Federal,AR-C,annual,2019,gas oil combustion consumption by public passenger transport,738.8346,TJ,CO2,74100.0,kg/TJ,54747643.86,kg +58818e04-7498-3329-9d7b-eeffdce46c8d,SESCO,II.1.1,Capital Federal,AR-C,annual,2019,gas oil combustion consumption by public passenger transport,738.8346,TJ,CH4,3.9,kg/TJ,2881.45494,kg +58818e04-7498-3329-9d7b-eeffdce46c8d,SESCO,II.1.1,Capital Federal,AR-C,annual,2019,gas oil combustion consumption by public passenger transport,738.8346,TJ,N2O,3.9,kg/TJ,2881.45494,kg +2e1bf3fb-8d1e-331f-b7a6-c93947813c1c,SESCO,II.1.1,Chaco,AR-H,annual,2019,gas oil combustion consumption by public passenger transport,23.58636,TJ,CO2,74100.0,kg/TJ,1747749.2759999998,kg +907eee34-f15b-3daa-a1fd-cb38eb3bd92e,SESCO,II.1.1,Chaco,AR-H,annual,2019,gas oil combustion consumption by public passenger transport,23.58636,TJ,CH4,3.9,kg/TJ,91.98680399999999,kg +907eee34-f15b-3daa-a1fd-cb38eb3bd92e,SESCO,II.1.1,Chaco,AR-H,annual,2019,gas oil combustion consumption by public passenger transport,23.58636,TJ,N2O,3.9,kg/TJ,91.98680399999999,kg +1ca73b86-005c-323c-9c4c-f552a1f9e3a9,SESCO,II.1.1,Chubut,AR-U,annual,2019,gas oil combustion consumption by public passenger transport,4.76784,TJ,CO2,74100.0,kg/TJ,353296.94399999996,kg +18a65fa4-a5e8-3018-b50c-8e6bed87bcb4,SESCO,II.1.1,Chubut,AR-U,annual,2019,gas oil combustion consumption by public passenger transport,4.76784,TJ,CH4,3.9,kg/TJ,18.594575999999996,kg +18a65fa4-a5e8-3018-b50c-8e6bed87bcb4,SESCO,II.1.1,Chubut,AR-U,annual,2019,gas oil combustion consumption by public passenger transport,4.76784,TJ,N2O,3.9,kg/TJ,18.594575999999996,kg +9ab138d4-546f-33bc-8972-d411d127d675,SESCO,II.1.1,Corrientes,AR-W,annual,2019,gas oil combustion consumption by public passenger transport,0.57792,TJ,CO2,74100.0,kg/TJ,42823.871999999996,kg +4617c8f5-b0e3-39b3-b5f2-4b8d79287972,SESCO,II.1.1,Corrientes,AR-W,annual,2019,gas oil combustion consumption by public passenger transport,0.57792,TJ,CH4,3.9,kg/TJ,2.253888,kg +4617c8f5-b0e3-39b3-b5f2-4b8d79287972,SESCO,II.1.1,Corrientes,AR-W,annual,2019,gas oil combustion consumption by public passenger transport,0.57792,TJ,N2O,3.9,kg/TJ,2.253888,kg +e2c6f16a-9165-385e-b324-6c9186f634b2,SESCO,II.1.1,Córdoba,AR-X,annual,2019,gas oil combustion consumption by public passenger transport,277.83504,TJ,CO2,74100.0,kg/TJ,20587576.463999998,kg +aa3e6710-e169-312e-b0a6-1b34b5781f43,SESCO,II.1.1,Córdoba,AR-X,annual,2019,gas oil combustion consumption by public passenger transport,277.83504,TJ,CH4,3.9,kg/TJ,1083.556656,kg +aa3e6710-e169-312e-b0a6-1b34b5781f43,SESCO,II.1.1,Córdoba,AR-X,annual,2019,gas oil combustion consumption by public passenger transport,277.83504,TJ,N2O,3.9,kg/TJ,1083.556656,kg +207737b4-ed49-3c65-87a0-aa8f06014df0,SESCO,II.1.1,Entre Rios,AR-E,annual,2019,gas oil combustion consumption by public passenger transport,44.68044,TJ,CO2,74100.0,kg/TJ,3310820.604,kg +e74b9afb-646e-3187-a42c-201d6b80fcb9,SESCO,II.1.1,Entre Rios,AR-E,annual,2019,gas oil combustion consumption by public passenger transport,44.68044,TJ,CH4,3.9,kg/TJ,174.253716,kg +e74b9afb-646e-3187-a42c-201d6b80fcb9,SESCO,II.1.1,Entre Rios,AR-E,annual,2019,gas oil combustion consumption by public passenger transport,44.68044,TJ,N2O,3.9,kg/TJ,174.253716,kg +46d97b69-511f-3157-bd1b-3297a2389839,SESCO,II.1.1,Formosa,AR-P,annual,2019,gas oil combustion consumption by public passenger transport,7.80192,TJ,CO2,74100.0,kg/TJ,578122.272,kg +c65dbd18-e00f-3cfe-a74e-27d4f013c07a,SESCO,II.1.1,Formosa,AR-P,annual,2019,gas oil combustion consumption by public passenger transport,7.80192,TJ,CH4,3.9,kg/TJ,30.427488,kg +c65dbd18-e00f-3cfe-a74e-27d4f013c07a,SESCO,II.1.1,Formosa,AR-P,annual,2019,gas oil combustion consumption by public passenger transport,7.80192,TJ,N2O,3.9,kg/TJ,30.427488,kg +27afe1be-e39b-30eb-92f6-d0a7cb2cc795,SESCO,II.1.1,La Pampa,AR-L,annual,2019,gas oil combustion consumption by public passenger transport,4.55112,TJ,CO2,74100.0,kg/TJ,337237.992,kg +3489c499-9c7d-316d-8a8c-ae475d04d7c8,SESCO,II.1.1,La Pampa,AR-L,annual,2019,gas oil combustion consumption by public passenger transport,4.55112,TJ,CH4,3.9,kg/TJ,17.749368,kg +3489c499-9c7d-316d-8a8c-ae475d04d7c8,SESCO,II.1.1,La Pampa,AR-L,annual,2019,gas oil combustion consumption by public passenger transport,4.55112,TJ,N2O,3.9,kg/TJ,17.749368,kg +b3ad4661-5987-3a40-a551-0f930dcdc182,SESCO,II.1.1,Mendoza,AR-M,annual,2019,gas oil combustion consumption by public passenger transport,8.127,TJ,CO2,74100.0,kg/TJ,602210.7000000001,kg +28fcd1db-864b-33ce-bc1d-76edd6104538,SESCO,II.1.1,Mendoza,AR-M,annual,2019,gas oil combustion consumption by public passenger transport,8.127,TJ,CH4,3.9,kg/TJ,31.695300000000003,kg +28fcd1db-864b-33ce-bc1d-76edd6104538,SESCO,II.1.1,Mendoza,AR-M,annual,2019,gas oil combustion consumption by public passenger transport,8.127,TJ,N2O,3.9,kg/TJ,31.695300000000003,kg +8f6ce71a-dd34-3b28-977a-bde4007ff23c,SESCO,II.1.1,Misiones,AR-N,annual,2019,gas oil combustion consumption by public passenger transport,55.48032,TJ,CO2,74100.0,kg/TJ,4111091.712,kg +957b26ee-19b0-38b1-9131-62120ecd356d,SESCO,II.1.1,Misiones,AR-N,annual,2019,gas oil combustion consumption by public passenger transport,55.48032,TJ,CH4,3.9,kg/TJ,216.373248,kg +957b26ee-19b0-38b1-9131-62120ecd356d,SESCO,II.1.1,Misiones,AR-N,annual,2019,gas oil combustion consumption by public passenger transport,55.48032,TJ,N2O,3.9,kg/TJ,216.373248,kg +a813608e-7b68-3729-8a17-21434620c704,SESCO,II.1.1,Neuquén,AR-Q,annual,2019,gas oil combustion consumption by public passenger transport,3.5758799999999997,TJ,CO2,74100.0,kg/TJ,264972.708,kg +07c6cd0a-a684-31fe-b9b7-f0154d71e270,SESCO,II.1.1,Neuquén,AR-Q,annual,2019,gas oil combustion consumption by public passenger transport,3.5758799999999997,TJ,CH4,3.9,kg/TJ,13.945931999999999,kg +07c6cd0a-a684-31fe-b9b7-f0154d71e270,SESCO,II.1.1,Neuquén,AR-Q,annual,2019,gas oil combustion consumption by public passenger transport,3.5758799999999997,TJ,N2O,3.9,kg/TJ,13.945931999999999,kg +754e90b5-1a29-3341-9309-aab37e1f0292,SESCO,II.1.1,Rio Negro,AR-R,annual,2019,gas oil combustion consumption by public passenger transport,12.244679999999999,TJ,CO2,74100.0,kg/TJ,907330.788,kg +94462824-89cd-3e77-aca8-a4ba24a2f75b,SESCO,II.1.1,Rio Negro,AR-R,annual,2019,gas oil combustion consumption by public passenger transport,12.244679999999999,TJ,CH4,3.9,kg/TJ,47.754251999999994,kg +94462824-89cd-3e77-aca8-a4ba24a2f75b,SESCO,II.1.1,Rio Negro,AR-R,annual,2019,gas oil combustion consumption by public passenger transport,12.244679999999999,TJ,N2O,3.9,kg/TJ,47.754251999999994,kg +9b89af07-0a00-308c-a525-5eb9e1b000a8,SESCO,II.1.1,Salta,AR-A,annual,2019,gas oil combustion consumption by public passenger transport,1.19196,TJ,CO2,74100.0,kg/TJ,88324.23599999999,kg +83d70007-07f1-334b-a0fb-ea6a43f9a113,SESCO,II.1.1,Salta,AR-A,annual,2019,gas oil combustion consumption by public passenger transport,1.19196,TJ,CH4,3.9,kg/TJ,4.648643999999999,kg +83d70007-07f1-334b-a0fb-ea6a43f9a113,SESCO,II.1.1,Salta,AR-A,annual,2019,gas oil combustion consumption by public passenger transport,1.19196,TJ,N2O,3.9,kg/TJ,4.648643999999999,kg +d1655122-ba7c-3b9c-b821-23ebd81ca9a2,SESCO,II.1.1,San Luis,AR-D,annual,2019,gas oil combustion consumption by public passenger transport,0.25284,TJ,CO2,74100.0,kg/TJ,18735.444,kg +7093472b-507e-3802-a42b-8c0bf0b5fb6c,SESCO,II.1.1,San Luis,AR-D,annual,2019,gas oil combustion consumption by public passenger transport,0.25284,TJ,CH4,3.9,kg/TJ,0.9860760000000001,kg +7093472b-507e-3802-a42b-8c0bf0b5fb6c,SESCO,II.1.1,San Luis,AR-D,annual,2019,gas oil combustion consumption by public passenger transport,0.25284,TJ,N2O,3.9,kg/TJ,0.9860760000000001,kg +ce0fb43e-f5b1-3107-83a9-1f2b43a6f4d8,SESCO,II.1.1,Santa Fe,AR-S,annual,2019,gas oil combustion consumption by public passenger transport,307.7424,TJ,CO2,74100.0,kg/TJ,22803711.84,kg +380f75a6-4364-330c-838f-c26273baea5c,SESCO,II.1.1,Santa Fe,AR-S,annual,2019,gas oil combustion consumption by public passenger transport,307.7424,TJ,CH4,3.9,kg/TJ,1200.19536,kg +380f75a6-4364-330c-838f-c26273baea5c,SESCO,II.1.1,Santa Fe,AR-S,annual,2019,gas oil combustion consumption by public passenger transport,307.7424,TJ,N2O,3.9,kg/TJ,1200.19536,kg +c38b5acc-d360-32d8-9607-5e85c5d38490,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2019,gas oil combustion consumption by public passenger transport,0.86688,TJ,CO2,74100.0,kg/TJ,64235.808,kg +235031e6-3bfa-34bb-bfa7-87dfe5447339,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2019,gas oil combustion consumption by public passenger transport,0.86688,TJ,CH4,3.9,kg/TJ,3.380832,kg +235031e6-3bfa-34bb-bfa7-87dfe5447339,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2019,gas oil combustion consumption by public passenger transport,0.86688,TJ,N2O,3.9,kg/TJ,3.380832,kg +f68d9cc3-af63-3e8a-8606-64ebe6633bac,SESCO,II.1.1,Tucuman,AR-T,annual,2019,gas oil combustion consumption by public passenger transport,311.67948,TJ,CO2,74100.0,kg/TJ,23095449.468000002,kg +32170180-82f8-3f80-a1dc-450ba3f04ee2,SESCO,II.1.1,Tucuman,AR-T,annual,2019,gas oil combustion consumption by public passenger transport,311.67948,TJ,CH4,3.9,kg/TJ,1215.549972,kg +32170180-82f8-3f80-a1dc-450ba3f04ee2,SESCO,II.1.1,Tucuman,AR-T,annual,2019,gas oil combustion consumption by public passenger transport,311.67948,TJ,N2O,3.9,kg/TJ,1215.549972,kg +f831125d-b713-36a2-802c-9c82d6990177,SESCO,II.1.1,Buenos Aires,AR-B,annual,2019,gas oil combustion consumption by public passenger transport,445.03452,TJ,CO2,74100.0,kg/TJ,32977057.932,kg +4ea8f078-2617-356b-a5b6-0e02b88d83ca,SESCO,II.1.1,Buenos Aires,AR-B,annual,2019,gas oil combustion consumption by public passenger transport,445.03452,TJ,CH4,3.9,kg/TJ,1735.634628,kg +4ea8f078-2617-356b-a5b6-0e02b88d83ca,SESCO,II.1.1,Buenos Aires,AR-B,annual,2019,gas oil combustion consumption by public passenger transport,445.03452,TJ,N2O,3.9,kg/TJ,1735.634628,kg +637a9296-a1f0-37d7-a90f-1c91e6dd31a4,SESCO,II.1.1,Capital Federal,AR-C,annual,2019,gas oil combustion consumption by public passenger transport,252.00924,TJ,CO2,74100.0,kg/TJ,18673884.684,kg +8ef15ae9-f199-32d2-be3b-648499085072,SESCO,II.1.1,Capital Federal,AR-C,annual,2019,gas oil combustion consumption by public passenger transport,252.00924,TJ,CH4,3.9,kg/TJ,982.836036,kg +8ef15ae9-f199-32d2-be3b-648499085072,SESCO,II.1.1,Capital Federal,AR-C,annual,2019,gas oil combustion consumption by public passenger transport,252.00924,TJ,N2O,3.9,kg/TJ,982.836036,kg +2ac08eea-7ebc-3b8e-8052-2c554306fef4,SESCO,II.1.1,Chubut,AR-U,annual,2019,gas oil combustion consumption by public passenger transport,13.1838,TJ,CO2,74100.0,kg/TJ,976919.58,kg +cbc0606b-0910-3480-a798-9f30cf48bfae,SESCO,II.1.1,Chubut,AR-U,annual,2019,gas oil combustion consumption by public passenger transport,13.1838,TJ,CH4,3.9,kg/TJ,51.41682,kg +cbc0606b-0910-3480-a798-9f30cf48bfae,SESCO,II.1.1,Chubut,AR-U,annual,2019,gas oil combustion consumption by public passenger transport,13.1838,TJ,N2O,3.9,kg/TJ,51.41682,kg +0354494c-5c8c-3661-957c-252edf68e61f,SESCO,II.1.1,Corrientes,AR-W,annual,2019,gas oil combustion consumption by public passenger transport,0.25284,TJ,CO2,74100.0,kg/TJ,18735.444,kg +84fe2139-6d90-3674-99aa-dc1595dbd8cd,SESCO,II.1.1,Corrientes,AR-W,annual,2019,gas oil combustion consumption by public passenger transport,0.25284,TJ,CH4,3.9,kg/TJ,0.9860760000000001,kg +84fe2139-6d90-3674-99aa-dc1595dbd8cd,SESCO,II.1.1,Corrientes,AR-W,annual,2019,gas oil combustion consumption by public passenger transport,0.25284,TJ,N2O,3.9,kg/TJ,0.9860760000000001,kg +8b6185d3-d5fc-3d3e-8e45-c5bdd3ce6bd4,SESCO,II.1.1,Córdoba,AR-X,annual,2019,gas oil combustion consumption by public passenger transport,25.861919999999998,TJ,CO2,74100.0,kg/TJ,1916368.2719999999,kg +adf8e685-a98a-3f65-bfc3-ed66f0b3db80,SESCO,II.1.1,Córdoba,AR-X,annual,2019,gas oil combustion consumption by public passenger transport,25.861919999999998,TJ,CH4,3.9,kg/TJ,100.861488,kg +adf8e685-a98a-3f65-bfc3-ed66f0b3db80,SESCO,II.1.1,Córdoba,AR-X,annual,2019,gas oil combustion consumption by public passenger transport,25.861919999999998,TJ,N2O,3.9,kg/TJ,100.861488,kg +699d24ff-b993-36d0-8fdd-6eb5464b26b2,SESCO,II.1.1,Entre Rios,AR-E,annual,2019,gas oil combustion consumption by public passenger transport,1.30032,TJ,CO2,74100.0,kg/TJ,96353.712,kg +9333fda9-3e51-3064-96ad-2e04f2a5c3d6,SESCO,II.1.1,Entre Rios,AR-E,annual,2019,gas oil combustion consumption by public passenger transport,1.30032,TJ,CH4,3.9,kg/TJ,5.071248,kg +9333fda9-3e51-3064-96ad-2e04f2a5c3d6,SESCO,II.1.1,Entre Rios,AR-E,annual,2019,gas oil combustion consumption by public passenger transport,1.30032,TJ,N2O,3.9,kg/TJ,5.071248,kg +0e1735af-c357-39bd-a560-52f3d8fee8ac,SESCO,II.1.1,La Pampa,AR-L,annual,2019,gas oil combustion consumption by public passenger transport,6.1404,TJ,CO2,74100.0,kg/TJ,455003.63999999996,kg +c3c972c5-ff9f-396b-9801-b44f7e7c1187,SESCO,II.1.1,La Pampa,AR-L,annual,2019,gas oil combustion consumption by public passenger transport,6.1404,TJ,CH4,3.9,kg/TJ,23.94756,kg +c3c972c5-ff9f-396b-9801-b44f7e7c1187,SESCO,II.1.1,La Pampa,AR-L,annual,2019,gas oil combustion consumption by public passenger transport,6.1404,TJ,N2O,3.9,kg/TJ,23.94756,kg +2741fac7-9f5e-3547-bea4-c5bfb284ad3b,SESCO,II.1.1,Mendoza,AR-M,annual,2019,gas oil combustion consumption by public passenger transport,0.25284,TJ,CO2,74100.0,kg/TJ,18735.444,kg +fa05482d-d129-397e-8694-6c3c2bf89e39,SESCO,II.1.1,Mendoza,AR-M,annual,2019,gas oil combustion consumption by public passenger transport,0.25284,TJ,CH4,3.9,kg/TJ,0.9860760000000001,kg +fa05482d-d129-397e-8694-6c3c2bf89e39,SESCO,II.1.1,Mendoza,AR-M,annual,2019,gas oil combustion consumption by public passenger transport,0.25284,TJ,N2O,3.9,kg/TJ,0.9860760000000001,kg +10194be2-81ec-3b29-9098-4eb4bd96dd05,SESCO,II.1.1,Misiones,AR-N,annual,2019,gas oil combustion consumption by public passenger transport,22.86396,TJ,CO2,74100.0,kg/TJ,1694219.436,kg +4ce4aeb7-2c9f-3133-a9c8-97284ba14a0c,SESCO,II.1.1,Misiones,AR-N,annual,2019,gas oil combustion consumption by public passenger transport,22.86396,TJ,CH4,3.9,kg/TJ,89.169444,kg +4ce4aeb7-2c9f-3133-a9c8-97284ba14a0c,SESCO,II.1.1,Misiones,AR-N,annual,2019,gas oil combustion consumption by public passenger transport,22.86396,TJ,N2O,3.9,kg/TJ,89.169444,kg +e9d2b28e-0bdf-3ccd-bffa-4f7195a8bafe,SESCO,II.1.1,Neuquén,AR-Q,annual,2019,gas oil combustion consumption by public passenger transport,27.956879999999998,TJ,CO2,74100.0,kg/TJ,2071604.808,kg +7563cfad-5d67-3510-a0fd-6ac0aac31df6,SESCO,II.1.1,Neuquén,AR-Q,annual,2019,gas oil combustion consumption by public passenger transport,27.956879999999998,TJ,CH4,3.9,kg/TJ,109.031832,kg +7563cfad-5d67-3510-a0fd-6ac0aac31df6,SESCO,II.1.1,Neuquén,AR-Q,annual,2019,gas oil combustion consumption by public passenger transport,27.956879999999998,TJ,N2O,3.9,kg/TJ,109.031832,kg +d4988de1-fd94-38b5-b500-b91627aa1538,SESCO,II.1.1,Rio Negro,AR-R,annual,2019,gas oil combustion consumption by public passenger transport,92.06988,TJ,CO2,74100.0,kg/TJ,6822378.108,kg +efbbc200-e945-32cf-8b98-cd07593f09af,SESCO,II.1.1,Rio Negro,AR-R,annual,2019,gas oil combustion consumption by public passenger transport,92.06988,TJ,CH4,3.9,kg/TJ,359.07253199999997,kg +efbbc200-e945-32cf-8b98-cd07593f09af,SESCO,II.1.1,Rio Negro,AR-R,annual,2019,gas oil combustion consumption by public passenger transport,92.06988,TJ,N2O,3.9,kg/TJ,359.07253199999997,kg +5ef3f57a-0596-3e0b-ac04-edb91389ef23,SESCO,II.1.1,Salta,AR-A,annual,2019,gas oil combustion consumption by public passenger transport,0.18059999999999998,TJ,CO2,74100.0,kg/TJ,13382.46,kg +c9f22fc0-245d-3da0-8b4e-b15e0d5c9c8b,SESCO,II.1.1,Salta,AR-A,annual,2019,gas oil combustion consumption by public passenger transport,0.18059999999999998,TJ,CH4,3.9,kg/TJ,0.70434,kg +c9f22fc0-245d-3da0-8b4e-b15e0d5c9c8b,SESCO,II.1.1,Salta,AR-A,annual,2019,gas oil combustion consumption by public passenger transport,0.18059999999999998,TJ,N2O,3.9,kg/TJ,0.70434,kg +ca16f66a-031e-3a06-bbd2-8d2d7e869806,SESCO,II.1.1,Santa Fe,AR-S,annual,2019,gas oil combustion consumption by public passenger transport,20.11884,TJ,CO2,74100.0,kg/TJ,1490806.044,kg +bdd946b5-e803-37b6-a74f-3c8c1add241f,SESCO,II.1.1,Santa Fe,AR-S,annual,2019,gas oil combustion consumption by public passenger transport,20.11884,TJ,CH4,3.9,kg/TJ,78.463476,kg +bdd946b5-e803-37b6-a74f-3c8c1add241f,SESCO,II.1.1,Santa Fe,AR-S,annual,2019,gas oil combustion consumption by public passenger transport,20.11884,TJ,N2O,3.9,kg/TJ,78.463476,kg +4a796876-b32a-34d2-9ec2-57d047fb5e0b,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2019,gas oil combustion consumption by public passenger transport,0.10836,TJ,CO2,74100.0,kg/TJ,8029.476,kg +16848513-cf04-377a-a082-9697c9e54b0e,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2019,gas oil combustion consumption by public passenger transport,0.10836,TJ,CH4,3.9,kg/TJ,0.422604,kg +16848513-cf04-377a-a082-9697c9e54b0e,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2019,gas oil combustion consumption by public passenger transport,0.10836,TJ,N2O,3.9,kg/TJ,0.422604,kg +00c95d1e-e1cb-3200-a1fe-d3e1ddf00380,SESCO,II.1.1,Catamarca,AR-K,annual,2019,gas oil combustion consumption by to the public,101.12805359999999,TJ,CO2,74100.0,kg/TJ,7493588.771759999,kg +21424391-25de-35fe-b067-b438b08c68e4,SESCO,II.1.1,Catamarca,AR-K,annual,2019,gas oil combustion consumption by to the public,101.12805359999999,TJ,CH4,3.9,kg/TJ,394.39940903999997,kg +21424391-25de-35fe-b067-b438b08c68e4,SESCO,II.1.1,Catamarca,AR-K,annual,2019,gas oil combustion consumption by to the public,101.12805359999999,TJ,N2O,3.9,kg/TJ,394.39940903999997,kg +5beac70e-7bdc-33e5-8276-ab14a96b5d5d,SESCO,II.1.1,Chaco,AR-H,annual,2019,gas oil combustion consumption by to the public,88.63848,TJ,CO2,74100.0,kg/TJ,6568111.368,kg +a46c499c-aa4e-3eab-9015-185e5390ef26,SESCO,II.1.1,Chaco,AR-H,annual,2019,gas oil combustion consumption by to the public,88.63848,TJ,CH4,3.9,kg/TJ,345.690072,kg +a46c499c-aa4e-3eab-9015-185e5390ef26,SESCO,II.1.1,Chaco,AR-H,annual,2019,gas oil combustion consumption by to the public,88.63848,TJ,N2O,3.9,kg/TJ,345.690072,kg +5d9575ed-9360-36b7-8907-e4bd54b4b6fe,SESCO,II.1.1,Jujuy,AR-Y,annual,2019,gas oil combustion consumption by to the public,506.83584,TJ,CO2,74100.0,kg/TJ,37556535.744,kg +061db606-8f19-36cb-9091-e4108ed4a010,SESCO,II.1.1,Jujuy,AR-Y,annual,2019,gas oil combustion consumption by to the public,506.83584,TJ,CH4,3.9,kg/TJ,1976.659776,kg +061db606-8f19-36cb-9091-e4108ed4a010,SESCO,II.1.1,Jujuy,AR-Y,annual,2019,gas oil combustion consumption by to the public,506.83584,TJ,N2O,3.9,kg/TJ,1976.659776,kg +2258a476-4049-3466-8f13-dae5d608d0d1,SESCO,II.1.1,La Rioja,AR-F,annual,2019,gas oil combustion consumption by to the public,82.8852864,TJ,CO2,74100.0,kg/TJ,6141799.72224,kg +0aa6f325-6eec-3d92-b925-c8171d0ec577,SESCO,II.1.1,La Rioja,AR-F,annual,2019,gas oil combustion consumption by to the public,82.8852864,TJ,CH4,3.9,kg/TJ,323.25261696,kg +0aa6f325-6eec-3d92-b925-c8171d0ec577,SESCO,II.1.1,La Rioja,AR-F,annual,2019,gas oil combustion consumption by to the public,82.8852864,TJ,N2O,3.9,kg/TJ,323.25261696,kg +2f533b1b-4d10-3061-8c6a-9cddb12e7857,SESCO,II.1.1,Salta,AR-A,annual,2019,gas oil combustion consumption by to the public,1629.3482772,TJ,CO2,74100.0,kg/TJ,120734707.34052,kg +785e29a8-2bb8-3e4d-9ab9-3f269b7a10c3,SESCO,II.1.1,Salta,AR-A,annual,2019,gas oil combustion consumption by to the public,1629.3482772,TJ,CH4,3.9,kg/TJ,6354.45828108,kg +785e29a8-2bb8-3e4d-9ab9-3f269b7a10c3,SESCO,II.1.1,Salta,AR-A,annual,2019,gas oil combustion consumption by to the public,1629.3482772,TJ,N2O,3.9,kg/TJ,6354.45828108,kg +aee16ec3-dedd-3980-bd95-35bcf2d8f06c,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2019,gas oil combustion consumption by to the public,287.0665896,TJ,CO2,74100.0,kg/TJ,21271634.289359998,kg +da81daf3-e9ea-3b2e-aac3-689f48013093,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2019,gas oil combustion consumption by to the public,287.0665896,TJ,CH4,3.9,kg/TJ,1119.55969944,kg +da81daf3-e9ea-3b2e-aac3-689f48013093,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2019,gas oil combustion consumption by to the public,287.0665896,TJ,N2O,3.9,kg/TJ,1119.55969944,kg +abf3532e-2c4d-3b13-acf5-647c62c7becf,SESCO,II.1.1,Tucuman,AR-T,annual,2019,gas oil combustion consumption by to the public,1678.0221444000001,TJ,CO2,74100.0,kg/TJ,124341440.90004002,kg +141f57e4-128e-3023-83fc-170ef9b7fdde,SESCO,II.1.1,Tucuman,AR-T,annual,2019,gas oil combustion consumption by to the public,1678.0221444000001,TJ,CH4,3.9,kg/TJ,6544.28636316,kg +141f57e4-128e-3023-83fc-170ef9b7fdde,SESCO,II.1.1,Tucuman,AR-T,annual,2019,gas oil combustion consumption by to the public,1678.0221444000001,TJ,N2O,3.9,kg/TJ,6544.28636316,kg +0a37be1e-bb9c-3d8e-8e76-bd01846ef9bb,SESCO,II.1.1,Catamarca,AR-K,annual,2019,gas oil combustion consumption by to the public,34.225867199999996,TJ,CO2,74100.0,kg/TJ,2536136.75952,kg +4dc415ac-0e7e-3546-9703-de37c01a20b5,SESCO,II.1.1,Catamarca,AR-K,annual,2019,gas oil combustion consumption by to the public,34.225867199999996,TJ,CH4,3.9,kg/TJ,133.48088208,kg +4dc415ac-0e7e-3546-9703-de37c01a20b5,SESCO,II.1.1,Catamarca,AR-K,annual,2019,gas oil combustion consumption by to the public,34.225867199999996,TJ,N2O,3.9,kg/TJ,133.48088208,kg +7f9fdb9c-3728-38d9-a50c-4c29b488302b,SESCO,II.1.1,Chaco,AR-H,annual,2019,gas oil combustion consumption by to the public,10.00524,TJ,CO2,74100.0,kg/TJ,741388.284,kg +b44c0263-058d-30b9-b1af-4aa95426ef91,SESCO,II.1.1,Chaco,AR-H,annual,2019,gas oil combustion consumption by to the public,10.00524,TJ,CH4,3.9,kg/TJ,39.020436000000004,kg +b44c0263-058d-30b9-b1af-4aa95426ef91,SESCO,II.1.1,Chaco,AR-H,annual,2019,gas oil combustion consumption by to the public,10.00524,TJ,N2O,3.9,kg/TJ,39.020436000000004,kg +f79a34e8-472c-39e2-825c-5b28ee4c26c1,SESCO,II.1.1,Jujuy,AR-Y,annual,2019,gas oil combustion consumption by to the public,166.40484,TJ,CO2,74100.0,kg/TJ,12330598.644000001,kg +9aec0fa0-7d1c-39fb-9b19-89b39d95737f,SESCO,II.1.1,Jujuy,AR-Y,annual,2019,gas oil combustion consumption by to the public,166.40484,TJ,CH4,3.9,kg/TJ,648.978876,kg +9aec0fa0-7d1c-39fb-9b19-89b39d95737f,SESCO,II.1.1,Jujuy,AR-Y,annual,2019,gas oil combustion consumption by to the public,166.40484,TJ,N2O,3.9,kg/TJ,648.978876,kg +9b9e0d88-5693-3dbe-9f91-62734099b611,SESCO,II.1.1,La Rioja,AR-F,annual,2019,gas oil combustion consumption by to the public,27.34284,TJ,CO2,74100.0,kg/TJ,2026104.444,kg +433d2c49-3f3a-364d-97b4-9f8b79998063,SESCO,II.1.1,La Rioja,AR-F,annual,2019,gas oil combustion consumption by to the public,27.34284,TJ,CH4,3.9,kg/TJ,106.637076,kg +433d2c49-3f3a-364d-97b4-9f8b79998063,SESCO,II.1.1,La Rioja,AR-F,annual,2019,gas oil combustion consumption by to the public,27.34284,TJ,N2O,3.9,kg/TJ,106.637076,kg +9c99a7bd-0175-3ac3-b353-9c761da15efb,SESCO,II.1.1,Salta,AR-A,annual,2019,gas oil combustion consumption by to the public,345.012822,TJ,CO2,74100.0,kg/TJ,25565450.110200003,kg +ff69682f-75df-3e09-a7c3-3431c8438cfc,SESCO,II.1.1,Salta,AR-A,annual,2019,gas oil combustion consumption by to the public,345.012822,TJ,CH4,3.9,kg/TJ,1345.5500058,kg +ff69682f-75df-3e09-a7c3-3431c8438cfc,SESCO,II.1.1,Salta,AR-A,annual,2019,gas oil combustion consumption by to the public,345.012822,TJ,N2O,3.9,kg/TJ,1345.5500058,kg +914ed3c2-5bf5-3854-b306-ab5674d1bbfa,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2019,gas oil combustion consumption by to the public,114.84101159999999,TJ,CO2,74100.0,kg/TJ,8509718.95956,kg +8cdb6ff6-21ce-3bd2-ab7a-f27306143273,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2019,gas oil combustion consumption by to the public,114.84101159999999,TJ,CH4,3.9,kg/TJ,447.8799452399999,kg +8cdb6ff6-21ce-3bd2-ab7a-f27306143273,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2019,gas oil combustion consumption by to the public,114.84101159999999,TJ,N2O,3.9,kg/TJ,447.8799452399999,kg +83942a3c-32ad-3a6b-95c7-d1d68558f4a9,SESCO,II.1.1,Tucuman,AR-T,annual,2019,gas oil combustion consumption by to the public,417.36009839999997,TJ,CO2,74100.0,kg/TJ,30926383.29144,kg +77e963da-7333-3262-a52d-ec7b680b8bad,SESCO,II.1.1,Tucuman,AR-T,annual,2019,gas oil combustion consumption by to the public,417.36009839999997,TJ,CH4,3.9,kg/TJ,1627.70438376,kg +77e963da-7333-3262-a52d-ec7b680b8bad,SESCO,II.1.1,Tucuman,AR-T,annual,2019,gas oil combustion consumption by to the public,417.36009839999997,TJ,N2O,3.9,kg/TJ,1627.70438376,kg +8e4cee2c-5efd-37e3-b17a-f4923045dc61,SESCO,I.3.1,Buenos Aires,AR-B,annual,2019,gasoline combustion consumption by petrochemical industries,31.046769,TJ,CO2,69300.0,kg/TJ,2151541.0917,kg +cbf6fd1b-b0ad-3d75-b738-fdac32f21e76,SESCO,I.3.1,Buenos Aires,AR-B,annual,2019,gasoline combustion consumption by petrochemical industries,31.046769,TJ,CH4,33.0,kg/TJ,1024.543377,kg +2de5ad80-6bd6-3df0-8855-bd3ae3754ad3,SESCO,I.3.1,Buenos Aires,AR-B,annual,2019,gasoline combustion consumption by petrochemical industries,31.046769,TJ,N2O,3.2,kg/TJ,99.34966080000001,kg +b7d7ebb0-d40f-366e-b260-f7561d648648,SESCO,II.5.1,Buenos Aires,AR-B,annual,2019,gasoline combustion consumption by agriculture machines,10.9421,TJ,CO2,69300.0,kg/TJ,758287.53,kg +039802b9-036c-321e-b2a2-0b074af514d7,SESCO,II.5.1,Buenos Aires,AR-B,annual,2019,gasoline combustion consumption by agriculture machines,10.9421,TJ,CH4,33.0,kg/TJ,361.0893,kg +6ac9588d-2d14-3b56-8828-db40831dd428,SESCO,II.5.1,Buenos Aires,AR-B,annual,2019,gasoline combustion consumption by agriculture machines,10.9421,TJ,N2O,3.2,kg/TJ,35.014720000000004,kg +9def7f71-ca27-3e67-8705-53f96311507a,SESCO,II.5.1,Buenos Aires,AR-B,annual,2019,gas oil combustion consumption by agriculture machines,373.58916,TJ,CO2,74100.0,kg/TJ,27682956.756,kg +457a20c3-751f-3672-addb-1f9abb2d9235,SESCO,II.5.1,Buenos Aires,AR-B,annual,2019,gas oil combustion consumption by agriculture machines,373.58916,TJ,CH4,3.9,kg/TJ,1456.9977239999998,kg +457a20c3-751f-3672-addb-1f9abb2d9235,SESCO,II.5.1,Buenos Aires,AR-B,annual,2019,gas oil combustion consumption by agriculture machines,373.58916,TJ,N2O,3.9,kg/TJ,1456.9977239999998,kg +e5eae0b2-4aa2-3fc8-a374-f058a3a072c2,SESCO,II.5.1,Córdoba,AR-X,annual,2019,gas oil combustion consumption by agriculture machines,19.3242,TJ,CO2,74100.0,kg/TJ,1431923.22,kg +2449b034-2521-3450-a365-0d1bf32732f5,SESCO,II.5.1,Córdoba,AR-X,annual,2019,gas oil combustion consumption by agriculture machines,19.3242,TJ,CH4,3.9,kg/TJ,75.36438,kg +2449b034-2521-3450-a365-0d1bf32732f5,SESCO,II.5.1,Córdoba,AR-X,annual,2019,gas oil combustion consumption by agriculture machines,19.3242,TJ,N2O,3.9,kg/TJ,75.36438,kg +75e5b74d-cf52-3e0d-a7b9-ec387c58f1c3,SESCO,II.5.1,Entre Rios,AR-E,annual,2019,gas oil combustion consumption by agriculture machines,88.6746,TJ,CO2,74100.0,kg/TJ,6570787.859999999,kg +62fc58cb-021a-34bc-bad1-a78c4de9baee,SESCO,II.5.1,Entre Rios,AR-E,annual,2019,gas oil combustion consumption by agriculture machines,88.6746,TJ,CH4,3.9,kg/TJ,345.83094,kg +62fc58cb-021a-34bc-bad1-a78c4de9baee,SESCO,II.5.1,Entre Rios,AR-E,annual,2019,gas oil combustion consumption by agriculture machines,88.6746,TJ,N2O,3.9,kg/TJ,345.83094,kg +30f4ad56-a346-38e6-94c0-f1a15e72f857,SESCO,II.5.1,Santa Fe,AR-S,annual,2019,gas oil combustion consumption by agriculture machines,33.80832,TJ,CO2,74100.0,kg/TJ,2505196.512,kg +bd5bd7d9-98ce-3cce-a089-0c707071e5fa,SESCO,II.5.1,Santa Fe,AR-S,annual,2019,gas oil combustion consumption by agriculture machines,33.80832,TJ,CH4,3.9,kg/TJ,131.852448,kg +bd5bd7d9-98ce-3cce-a089-0c707071e5fa,SESCO,II.5.1,Santa Fe,AR-S,annual,2019,gas oil combustion consumption by agriculture machines,33.80832,TJ,N2O,3.9,kg/TJ,131.852448,kg +707ff3a8-3a2d-32f1-9371-44e1570ddd8d,SESCO,II.5.1,Tucuman,AR-T,annual,2019,gas oil combustion consumption by agriculture machines,102.61692,TJ,CO2,74100.0,kg/TJ,7603913.772,kg +fdb9f1f8-39cb-32f9-80f8-0cc96b57f8dd,SESCO,II.5.1,Tucuman,AR-T,annual,2019,gas oil combustion consumption by agriculture machines,102.61692,TJ,CH4,3.9,kg/TJ,400.205988,kg +fdb9f1f8-39cb-32f9-80f8-0cc96b57f8dd,SESCO,II.5.1,Tucuman,AR-T,annual,2019,gas oil combustion consumption by agriculture machines,102.61692,TJ,N2O,3.9,kg/TJ,400.205988,kg +d90cb40e-c662-3b79-9334-85bb5765c7c2,SESCO,II.5.1,Buenos Aires,AR-B,annual,2019,gas oil combustion consumption by agriculture machines,14.23128,TJ,CO2,74100.0,kg/TJ,1054537.848,kg +c9716791-9f86-3c06-9e93-c9521e9b3c6f,SESCO,II.5.1,Buenos Aires,AR-B,annual,2019,gas oil combustion consumption by agriculture machines,14.23128,TJ,CH4,3.9,kg/TJ,55.501992,kg +c9716791-9f86-3c06-9e93-c9521e9b3c6f,SESCO,II.5.1,Buenos Aires,AR-B,annual,2019,gas oil combustion consumption by agriculture machines,14.23128,TJ,N2O,3.9,kg/TJ,55.501992,kg +17258df4-8227-3cc6-b243-7feb55df92cf,SESCO,II.5.1,Entre Rios,AR-E,annual,2019,gas oil combustion consumption by agriculture machines,52.15728,TJ,CO2,74100.0,kg/TJ,3864854.448,kg +1a09c922-1754-3ad4-a596-4f8cd545af0d,SESCO,II.5.1,Entre Rios,AR-E,annual,2019,gas oil combustion consumption by agriculture machines,52.15728,TJ,CH4,3.9,kg/TJ,203.413392,kg +1a09c922-1754-3ad4-a596-4f8cd545af0d,SESCO,II.5.1,Entre Rios,AR-E,annual,2019,gas oil combustion consumption by agriculture machines,52.15728,TJ,N2O,3.9,kg/TJ,203.413392,kg +7b1f0fb5-3df0-31c0-9db5-93a954b655e8,SESCO,II.1.1,Buenos Aires,AR-B,annual,2019,gas oil combustion consumption by to the public,12562.536,TJ,CO2,74100.0,kg/TJ,930883917.6,kg +38c890eb-77a8-329f-b7bd-20c556904fc7,SESCO,II.1.1,Buenos Aires,AR-B,annual,2019,gas oil combustion consumption by to the public,12562.536,TJ,CH4,3.9,kg/TJ,48993.8904,kg +38c890eb-77a8-329f-b7bd-20c556904fc7,SESCO,II.1.1,Buenos Aires,AR-B,annual,2019,gas oil combustion consumption by to the public,12562.536,TJ,N2O,3.9,kg/TJ,48993.8904,kg +75fbe3fe-bb0e-39e8-9c29-35a42afcd2cb,SESCO,II.1.1,Capital Federal,AR-C,annual,2019,gas oil combustion consumption by to the public,936.12204,TJ,CO2,74100.0,kg/TJ,69366643.164,kg +93af9023-457a-3275-a58d-4346e7fd5bc9,SESCO,II.1.1,Capital Federal,AR-C,annual,2019,gas oil combustion consumption by to the public,936.12204,TJ,CH4,3.9,kg/TJ,3650.875956,kg +93af9023-457a-3275-a58d-4346e7fd5bc9,SESCO,II.1.1,Capital Federal,AR-C,annual,2019,gas oil combustion consumption by to the public,936.12204,TJ,N2O,3.9,kg/TJ,3650.875956,kg +fe9b115f-a031-38e9-b5c7-06510504c7fd,SESCO,II.1.1,Catamarca,AR-K,annual,2019,gas oil combustion consumption by to the public,9.680159999999999,TJ,CO2,74100.0,kg/TJ,717299.8559999999,kg +a54a3008-7598-3a07-b41b-c4d7d518d3f4,SESCO,II.1.1,Catamarca,AR-K,annual,2019,gas oil combustion consumption by to the public,9.680159999999999,TJ,CH4,3.9,kg/TJ,37.752624,kg +a54a3008-7598-3a07-b41b-c4d7d518d3f4,SESCO,II.1.1,Catamarca,AR-K,annual,2019,gas oil combustion consumption by to the public,9.680159999999999,TJ,N2O,3.9,kg/TJ,37.752624,kg +dc3e985f-86d3-300d-b45f-516b0341152a,SESCO,II.1.1,Chaco,AR-H,annual,2019,gas oil combustion consumption by to the public,1759.83864,TJ,CO2,74100.0,kg/TJ,130404043.22399999,kg +124735eb-8ecc-36d8-8478-af7f0a27a223,SESCO,II.1.1,Chaco,AR-H,annual,2019,gas oil combustion consumption by to the public,1759.83864,TJ,CH4,3.9,kg/TJ,6863.370696,kg +124735eb-8ecc-36d8-8478-af7f0a27a223,SESCO,II.1.1,Chaco,AR-H,annual,2019,gas oil combustion consumption by to the public,1759.83864,TJ,N2O,3.9,kg/TJ,6863.370696,kg +592edb3c-3253-3f9f-9dd7-07e820acf7c3,SESCO,II.1.1,Corrientes,AR-W,annual,2019,gas oil combustion consumption by to the public,760.83168,TJ,CO2,74100.0,kg/TJ,56377627.488,kg +164f4412-34b5-39f9-948b-0eac72d30b07,SESCO,II.1.1,Corrientes,AR-W,annual,2019,gas oil combustion consumption by to the public,760.83168,TJ,CH4,3.9,kg/TJ,2967.243552,kg +164f4412-34b5-39f9-948b-0eac72d30b07,SESCO,II.1.1,Corrientes,AR-W,annual,2019,gas oil combustion consumption by to the public,760.83168,TJ,N2O,3.9,kg/TJ,2967.243552,kg +b640c8bc-9ac8-37f9-8e0d-3f76a5ec5adc,SESCO,II.1.1,Córdoba,AR-X,annual,2019,gas oil combustion consumption by to the public,6776.43708,TJ,CO2,74100.0,kg/TJ,502133987.62799996,kg +0c53eb67-c729-3b9d-8f72-03bf898a2626,SESCO,II.1.1,Córdoba,AR-X,annual,2019,gas oil combustion consumption by to the public,6776.43708,TJ,CH4,3.9,kg/TJ,26428.104612,kg +0c53eb67-c729-3b9d-8f72-03bf898a2626,SESCO,II.1.1,Córdoba,AR-X,annual,2019,gas oil combustion consumption by to the public,6776.43708,TJ,N2O,3.9,kg/TJ,26428.104612,kg +c6eabae6-a23b-3caa-a27e-caff5d2cb773,SESCO,II.1.1,Entre Rios,AR-E,annual,2019,gas oil combustion consumption by to the public,1372.56,TJ,CO2,74100.0,kg/TJ,101706696.0,kg +a703656e-7701-31bb-a0b9-5e5b15f0a86a,SESCO,II.1.1,Entre Rios,AR-E,annual,2019,gas oil combustion consumption by to the public,1372.56,TJ,CH4,3.9,kg/TJ,5352.9839999999995,kg +a703656e-7701-31bb-a0b9-5e5b15f0a86a,SESCO,II.1.1,Entre Rios,AR-E,annual,2019,gas oil combustion consumption by to the public,1372.56,TJ,N2O,3.9,kg/TJ,5352.9839999999995,kg +aa58acf9-dc79-329d-90d2-365735838790,SESCO,II.1.1,Formosa,AR-P,annual,2019,gas oil combustion consumption by to the public,124.93908,TJ,CO2,74100.0,kg/TJ,9257985.828,kg +66125a88-a307-3bb4-a098-96788097dec8,SESCO,II.1.1,Formosa,AR-P,annual,2019,gas oil combustion consumption by to the public,124.93908,TJ,CH4,3.9,kg/TJ,487.262412,kg +66125a88-a307-3bb4-a098-96788097dec8,SESCO,II.1.1,Formosa,AR-P,annual,2019,gas oil combustion consumption by to the public,124.93908,TJ,N2O,3.9,kg/TJ,487.262412,kg +886b53dd-f344-3732-8997-c93b2deae9dd,SESCO,II.1.1,Jujuy,AR-Y,annual,2019,gas oil combustion consumption by to the public,76.68276,TJ,CO2,74100.0,kg/TJ,5682192.516,kg +0af02135-3e71-39f5-84c4-af04398c4343,SESCO,II.1.1,Jujuy,AR-Y,annual,2019,gas oil combustion consumption by to the public,76.68276,TJ,CH4,3.9,kg/TJ,299.062764,kg +0af02135-3e71-39f5-84c4-af04398c4343,SESCO,II.1.1,Jujuy,AR-Y,annual,2019,gas oil combustion consumption by to the public,76.68276,TJ,N2O,3.9,kg/TJ,299.062764,kg +cc9f656e-cd38-3732-b997-0e6d6d2276f5,SESCO,II.1.1,La Pampa,AR-L,annual,2019,gas oil combustion consumption by to the public,710.8416,TJ,CO2,74100.0,kg/TJ,52673362.559999995,kg +2f42d56f-adc5-3ff6-9af7-3a66f020068e,SESCO,II.1.1,La Pampa,AR-L,annual,2019,gas oil combustion consumption by to the public,710.8416,TJ,CH4,3.9,kg/TJ,2772.28224,kg +2f42d56f-adc5-3ff6-9af7-3a66f020068e,SESCO,II.1.1,La Pampa,AR-L,annual,2019,gas oil combustion consumption by to the public,710.8416,TJ,N2O,3.9,kg/TJ,2772.28224,kg +1a93e2c2-b1f4-3ce4-a0f8-4226ef313acd,SESCO,II.1.1,La Rioja,AR-F,annual,2019,gas oil combustion consumption by to the public,198.26268,TJ,CO2,74100.0,kg/TJ,14691264.588,kg +767b251c-3078-37b1-8676-e52214dfb4e2,SESCO,II.1.1,La Rioja,AR-F,annual,2019,gas oil combustion consumption by to the public,198.26268,TJ,CH4,3.9,kg/TJ,773.2244519999999,kg +767b251c-3078-37b1-8676-e52214dfb4e2,SESCO,II.1.1,La Rioja,AR-F,annual,2019,gas oil combustion consumption by to the public,198.26268,TJ,N2O,3.9,kg/TJ,773.2244519999999,kg +3831cbee-1b2d-35c7-9412-b88a3cb0e966,SESCO,II.1.1,Mendoza,AR-M,annual,2019,gas oil combustion consumption by to the public,996.76752,TJ,CO2,74100.0,kg/TJ,73860473.232,kg +bcc491b6-3c85-3d25-a492-2b567af4a84c,SESCO,II.1.1,Mendoza,AR-M,annual,2019,gas oil combustion consumption by to the public,996.76752,TJ,CH4,3.9,kg/TJ,3887.3933279999997,kg +bcc491b6-3c85-3d25-a492-2b567af4a84c,SESCO,II.1.1,Mendoza,AR-M,annual,2019,gas oil combustion consumption by to the public,996.76752,TJ,N2O,3.9,kg/TJ,3887.3933279999997,kg +3b5ad1b6-517e-341e-90ee-accc5b0596f6,SESCO,II.1.1,Misiones,AR-N,annual,2019,gas oil combustion consumption by to the public,1164.47268,TJ,CO2,74100.0,kg/TJ,86287425.588,kg +f9a9aa50-7112-3977-abf0-6d3b1db299d1,SESCO,II.1.1,Misiones,AR-N,annual,2019,gas oil combustion consumption by to the public,1164.47268,TJ,CH4,3.9,kg/TJ,4541.443452,kg +f9a9aa50-7112-3977-abf0-6d3b1db299d1,SESCO,II.1.1,Misiones,AR-N,annual,2019,gas oil combustion consumption by to the public,1164.47268,TJ,N2O,3.9,kg/TJ,4541.443452,kg +37b5d608-f9f4-3f00-af2e-613a3d2f197c,SESCO,II.1.1,Neuquén,AR-Q,annual,2019,gas oil combustion consumption by to the public,787.4159999999999,TJ,CO2,74100.0,kg/TJ,58347525.599999994,kg +4934682e-bfab-3219-916e-716e0e6a0615,SESCO,II.1.1,Neuquén,AR-Q,annual,2019,gas oil combustion consumption by to the public,787.4159999999999,TJ,CH4,3.9,kg/TJ,3070.9223999999995,kg +4934682e-bfab-3219-916e-716e0e6a0615,SESCO,II.1.1,Neuquén,AR-Q,annual,2019,gas oil combustion consumption by to the public,787.4159999999999,TJ,N2O,3.9,kg/TJ,3070.9223999999995,kg +a1c1ea6e-b93f-3f44-9863-946d70a2ad7d,SESCO,II.1.1,Rio Negro,AR-R,annual,2019,gas oil combustion consumption by to the public,237.05555999999999,TJ,CO2,74100.0,kg/TJ,17565816.996,kg +b225b7f5-9dbd-3a8e-9401-43558ded33e3,SESCO,II.1.1,Rio Negro,AR-R,annual,2019,gas oil combustion consumption by to the public,237.05555999999999,TJ,CH4,3.9,kg/TJ,924.5166839999999,kg +b225b7f5-9dbd-3a8e-9401-43558ded33e3,SESCO,II.1.1,Rio Negro,AR-R,annual,2019,gas oil combustion consumption by to the public,237.05555999999999,TJ,N2O,3.9,kg/TJ,924.5166839999999,kg +52496155-08fc-32a8-9a8d-b41ec5907587,SESCO,II.1.1,Salta,AR-A,annual,2019,gas oil combustion consumption by to the public,95.03171999999999,TJ,CO2,74100.0,kg/TJ,7041850.452,kg +d1b43e04-d777-330c-b6e5-2e732916f2a6,SESCO,II.1.1,Salta,AR-A,annual,2019,gas oil combustion consumption by to the public,95.03171999999999,TJ,CH4,3.9,kg/TJ,370.62370799999997,kg +d1b43e04-d777-330c-b6e5-2e732916f2a6,SESCO,II.1.1,Salta,AR-A,annual,2019,gas oil combustion consumption by to the public,95.03171999999999,TJ,N2O,3.9,kg/TJ,370.62370799999997,kg +7e6f2de5-79a3-32bc-9cd0-0ba19402fe32,SESCO,II.1.1,San Juan,AR-J,annual,2019,gas oil combustion consumption by to the public,336.2772,TJ,CO2,74100.0,kg/TJ,24918140.52,kg +7a219683-b1e1-300b-9b8f-499aa09bba8c,SESCO,II.1.1,San Juan,AR-J,annual,2019,gas oil combustion consumption by to the public,336.2772,TJ,CH4,3.9,kg/TJ,1311.48108,kg +7a219683-b1e1-300b-9b8f-499aa09bba8c,SESCO,II.1.1,San Juan,AR-J,annual,2019,gas oil combustion consumption by to the public,336.2772,TJ,N2O,3.9,kg/TJ,1311.48108,kg +81eb336b-1d5e-3d62-a887-5ee176588fe2,SESCO,II.1.1,San Luis,AR-D,annual,2019,gas oil combustion consumption by to the public,233.19072,TJ,CO2,74100.0,kg/TJ,17279432.351999998,kg +1216a243-335f-3cbf-bdbc-ee3309bd811c,SESCO,II.1.1,San Luis,AR-D,annual,2019,gas oil combustion consumption by to the public,233.19072,TJ,CH4,3.9,kg/TJ,909.443808,kg +1216a243-335f-3cbf-bdbc-ee3309bd811c,SESCO,II.1.1,San Luis,AR-D,annual,2019,gas oil combustion consumption by to the public,233.19072,TJ,N2O,3.9,kg/TJ,909.443808,kg +482d86c6-aff5-3e78-bc6a-55def61efbad,SESCO,II.1.1,Santa Fe,AR-S,annual,2019,gas oil combustion consumption by to the public,5190.76908,TJ,CO2,74100.0,kg/TJ,384635988.828,kg +2ae4fa5c-fdfb-3450-875a-77a3e69fc17f,SESCO,II.1.1,Santa Fe,AR-S,annual,2019,gas oil combustion consumption by to the public,5190.76908,TJ,CH4,3.9,kg/TJ,20243.999412,kg +2ae4fa5c-fdfb-3450-875a-77a3e69fc17f,SESCO,II.1.1,Santa Fe,AR-S,annual,2019,gas oil combustion consumption by to the public,5190.76908,TJ,N2O,3.9,kg/TJ,20243.999412,kg +ad1fc68c-2de2-3149-9e46-42f2a847e8c4,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2019,gas oil combustion consumption by to the public,270.43044,TJ,CO2,74100.0,kg/TJ,20038895.604,kg +ece2c204-ad29-3eb2-beaa-1045dcfaa558,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2019,gas oil combustion consumption by to the public,270.43044,TJ,CH4,3.9,kg/TJ,1054.678716,kg +ece2c204-ad29-3eb2-beaa-1045dcfaa558,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2019,gas oil combustion consumption by to the public,270.43044,TJ,N2O,3.9,kg/TJ,1054.678716,kg +d29a23fa-1dbb-3fca-98df-59b6ec9d74de,SESCO,II.1.1,Tucuman,AR-T,annual,2019,gas oil combustion consumption by to the public,952.05096,TJ,CO2,74100.0,kg/TJ,70546976.136,kg +1e3be70a-9375-384a-8a10-f928047f3a98,SESCO,II.1.1,Tucuman,AR-T,annual,2019,gas oil combustion consumption by to the public,952.05096,TJ,CH4,3.9,kg/TJ,3712.998744,kg +1e3be70a-9375-384a-8a10-f928047f3a98,SESCO,II.1.1,Tucuman,AR-T,annual,2019,gas oil combustion consumption by to the public,952.05096,TJ,N2O,3.9,kg/TJ,3712.998744,kg +14e153ed-2443-39e5-ab15-dfff60894180,SESCO,II.1.1,Buenos Aires,AR-B,annual,2019,gas oil combustion consumption by to the public,8496.94104,TJ,CO2,74100.0,kg/TJ,629623331.064,kg +b7c1f6d5-cfc4-36f9-b29a-dcf45cb67370,SESCO,II.1.1,Buenos Aires,AR-B,annual,2019,gas oil combustion consumption by to the public,8496.94104,TJ,CH4,3.9,kg/TJ,33138.070056,kg +b7c1f6d5-cfc4-36f9-b29a-dcf45cb67370,SESCO,II.1.1,Buenos Aires,AR-B,annual,2019,gas oil combustion consumption by to the public,8496.94104,TJ,N2O,3.9,kg/TJ,33138.070056,kg +1cebc496-55e5-3995-888e-7b65f7429ad3,SESCO,II.1.1,Capital Federal,AR-C,annual,2019,gas oil combustion consumption by to the public,1581.73092,TJ,CO2,74100.0,kg/TJ,117206261.17199999,kg +b1879b46-6b22-3510-b36a-f540a2a02ec8,SESCO,II.1.1,Capital Federal,AR-C,annual,2019,gas oil combustion consumption by to the public,1581.73092,TJ,CH4,3.9,kg/TJ,6168.750588,kg +b1879b46-6b22-3510-b36a-f540a2a02ec8,SESCO,II.1.1,Capital Federal,AR-C,annual,2019,gas oil combustion consumption by to the public,1581.73092,TJ,N2O,3.9,kg/TJ,6168.750588,kg +4e29cff1-3d30-3f05-b999-92a8b6544f21,SESCO,II.1.1,Catamarca,AR-K,annual,2019,gas oil combustion consumption by to the public,40.49052,TJ,CO2,74100.0,kg/TJ,3000347.5319999997,kg +88deada0-3df8-3c08-9aef-970e4c6c40e9,SESCO,II.1.1,Catamarca,AR-K,annual,2019,gas oil combustion consumption by to the public,40.49052,TJ,CH4,3.9,kg/TJ,157.91302799999997,kg +88deada0-3df8-3c08-9aef-970e4c6c40e9,SESCO,II.1.1,Catamarca,AR-K,annual,2019,gas oil combustion consumption by to the public,40.49052,TJ,N2O,3.9,kg/TJ,157.91302799999997,kg +8e99342b-944c-36d1-9212-6781e5b41783,SESCO,II.1.1,Chaco,AR-H,annual,2019,gas oil combustion consumption by to the public,535.19004,TJ,CO2,74100.0,kg/TJ,39657581.963999994,kg +1a58db9a-e86a-36f1-ae9f-6fb5fc2c64ea,SESCO,II.1.1,Chaco,AR-H,annual,2019,gas oil combustion consumption by to the public,535.19004,TJ,CH4,3.9,kg/TJ,2087.2411559999996,kg +1a58db9a-e86a-36f1-ae9f-6fb5fc2c64ea,SESCO,II.1.1,Chaco,AR-H,annual,2019,gas oil combustion consumption by to the public,535.19004,TJ,N2O,3.9,kg/TJ,2087.2411559999996,kg +4eee6ce3-7be8-3d6b-a3d4-84e53b972578,SESCO,II.1.1,Corrientes,AR-W,annual,2019,gas oil combustion consumption by to the public,509.1114,TJ,CO2,74100.0,kg/TJ,37725154.74,kg +fee4f678-2da1-37e9-a459-09176c92ba78,SESCO,II.1.1,Corrientes,AR-W,annual,2019,gas oil combustion consumption by to the public,509.1114,TJ,CH4,3.9,kg/TJ,1985.53446,kg +fee4f678-2da1-37e9-a459-09176c92ba78,SESCO,II.1.1,Corrientes,AR-W,annual,2019,gas oil combustion consumption by to the public,509.1114,TJ,N2O,3.9,kg/TJ,1985.53446,kg +2974074f-6d65-3cce-ac62-a1cd83193b03,SESCO,II.1.1,Córdoba,AR-X,annual,2019,gas oil combustion consumption by to the public,2482.20252,TJ,CO2,74100.0,kg/TJ,183931206.732,kg +8d668097-2100-3251-87d0-fe3ffc92f213,SESCO,II.1.1,Córdoba,AR-X,annual,2019,gas oil combustion consumption by to the public,2482.20252,TJ,CH4,3.9,kg/TJ,9680.589827999998,kg +8d668097-2100-3251-87d0-fe3ffc92f213,SESCO,II.1.1,Córdoba,AR-X,annual,2019,gas oil combustion consumption by to the public,2482.20252,TJ,N2O,3.9,kg/TJ,9680.589827999998,kg +bc3ff638-d80b-3d06-8e0b-818637844217,SESCO,II.1.1,Entre Rios,AR-E,annual,2019,gas oil combustion consumption by to the public,653.55528,TJ,CO2,74100.0,kg/TJ,48428446.248,kg +fbe43e8c-ad07-324a-8411-6a5af7513574,SESCO,II.1.1,Entre Rios,AR-E,annual,2019,gas oil combustion consumption by to the public,653.55528,TJ,CH4,3.9,kg/TJ,2548.865592,kg +fbe43e8c-ad07-324a-8411-6a5af7513574,SESCO,II.1.1,Entre Rios,AR-E,annual,2019,gas oil combustion consumption by to the public,653.55528,TJ,N2O,3.9,kg/TJ,2548.865592,kg +64e60a7a-8ed7-3ff2-ae36-0c6f886b59ff,SESCO,II.1.1,Formosa,AR-P,annual,2019,gas oil combustion consumption by to the public,171.06432,TJ,CO2,74100.0,kg/TJ,12675866.112000002,kg +734c582c-4de7-3c56-a5b2-3f64ca9ed5a5,SESCO,II.1.1,Formosa,AR-P,annual,2019,gas oil combustion consumption by to the public,171.06432,TJ,CH4,3.9,kg/TJ,667.150848,kg +734c582c-4de7-3c56-a5b2-3f64ca9ed5a5,SESCO,II.1.1,Formosa,AR-P,annual,2019,gas oil combustion consumption by to the public,171.06432,TJ,N2O,3.9,kg/TJ,667.150848,kg +a25cd480-b335-3a2e-aca0-5c131dbde8da,SESCO,II.1.1,Jujuy,AR-Y,annual,2019,gas oil combustion consumption by to the public,59.92308,TJ,CO2,74100.0,kg/TJ,4440300.228,kg +8331c30e-8153-3418-82be-1690981807ed,SESCO,II.1.1,Jujuy,AR-Y,annual,2019,gas oil combustion consumption by to the public,59.92308,TJ,CH4,3.9,kg/TJ,233.700012,kg +8331c30e-8153-3418-82be-1690981807ed,SESCO,II.1.1,Jujuy,AR-Y,annual,2019,gas oil combustion consumption by to the public,59.92308,TJ,N2O,3.9,kg/TJ,233.700012,kg +283c6f26-1288-3037-9e0d-3c0a8bbcd2b8,SESCO,II.1.1,La Pampa,AR-L,annual,2019,gas oil combustion consumption by to the public,248.1444,TJ,CO2,74100.0,kg/TJ,18387500.04,kg +5694cbe3-c419-3bc7-95d7-1ec67cc6050d,SESCO,II.1.1,La Pampa,AR-L,annual,2019,gas oil combustion consumption by to the public,248.1444,TJ,CH4,3.9,kg/TJ,967.76316,kg +5694cbe3-c419-3bc7-95d7-1ec67cc6050d,SESCO,II.1.1,La Pampa,AR-L,annual,2019,gas oil combustion consumption by to the public,248.1444,TJ,N2O,3.9,kg/TJ,967.76316,kg +868b457d-8b20-31b7-ae8c-d0d5f408032b,SESCO,II.1.1,La Rioja,AR-F,annual,2019,gas oil combustion consumption by to the public,160.33668,TJ,CO2,74100.0,kg/TJ,11880947.988,kg +97ca4e4e-9570-3ade-9bac-10779d94b44b,SESCO,II.1.1,La Rioja,AR-F,annual,2019,gas oil combustion consumption by to the public,160.33668,TJ,CH4,3.9,kg/TJ,625.313052,kg +97ca4e4e-9570-3ade-9bac-10779d94b44b,SESCO,II.1.1,La Rioja,AR-F,annual,2019,gas oil combustion consumption by to the public,160.33668,TJ,N2O,3.9,kg/TJ,625.313052,kg +b9e4e636-cf5e-359c-a098-40c1b8188dbf,SESCO,II.1.1,Mendoza,AR-M,annual,2019,gas oil combustion consumption by to the public,922.2519599999999,TJ,CO2,74100.0,kg/TJ,68338870.236,kg +7723b653-5fb2-3f09-a052-e80f28d1bb8c,SESCO,II.1.1,Mendoza,AR-M,annual,2019,gas oil combustion consumption by to the public,922.2519599999999,TJ,CH4,3.9,kg/TJ,3596.782644,kg +7723b653-5fb2-3f09-a052-e80f28d1bb8c,SESCO,II.1.1,Mendoza,AR-M,annual,2019,gas oil combustion consumption by to the public,922.2519599999999,TJ,N2O,3.9,kg/TJ,3596.782644,kg +b8ad9f78-1ca9-3c5f-8ffc-864710b5b184,SESCO,II.1.1,Misiones,AR-N,annual,2019,gas oil combustion consumption by to the public,443.44524,TJ,CO2,74100.0,kg/TJ,32859292.284,kg +ed660632-7a02-3b15-8ad0-a1e27c71c704,SESCO,II.1.1,Misiones,AR-N,annual,2019,gas oil combustion consumption by to the public,443.44524,TJ,CH4,3.9,kg/TJ,1729.436436,kg +ed660632-7a02-3b15-8ad0-a1e27c71c704,SESCO,II.1.1,Misiones,AR-N,annual,2019,gas oil combustion consumption by to the public,443.44524,TJ,N2O,3.9,kg/TJ,1729.436436,kg +36b49ae3-a5f8-373e-a1b3-989cbcb28baa,SESCO,II.1.1,Neuquén,AR-Q,annual,2019,gas oil combustion consumption by to the public,1447.36452,TJ,CO2,74100.0,kg/TJ,107249710.93200001,kg +42cf7432-ef66-37aa-8e39-1eb0943e38b2,SESCO,II.1.1,Neuquén,AR-Q,annual,2019,gas oil combustion consumption by to the public,1447.36452,TJ,CH4,3.9,kg/TJ,5644.721628,kg +42cf7432-ef66-37aa-8e39-1eb0943e38b2,SESCO,II.1.1,Neuquén,AR-Q,annual,2019,gas oil combustion consumption by to the public,1447.36452,TJ,N2O,3.9,kg/TJ,5644.721628,kg +45a2aa6e-f108-38d4-a042-523077df7799,SESCO,II.1.1,Rio Negro,AR-R,annual,2019,gas oil combustion consumption by to the public,138.98976,TJ,CO2,74100.0,kg/TJ,10299141.216,kg +8cfff63b-dbac-3d0a-9475-6192be8fe12c,SESCO,II.1.1,Rio Negro,AR-R,annual,2019,gas oil combustion consumption by to the public,138.98976,TJ,CH4,3.9,kg/TJ,542.0600639999999,kg +8cfff63b-dbac-3d0a-9475-6192be8fe12c,SESCO,II.1.1,Rio Negro,AR-R,annual,2019,gas oil combustion consumption by to the public,138.98976,TJ,N2O,3.9,kg/TJ,542.0600639999999,kg +ad464c98-fb9e-399f-907e-b34cc96251d0,SESCO,II.1.1,Salta,AR-A,annual,2019,gas oil combustion consumption by to the public,162.93732,TJ,CO2,74100.0,kg/TJ,12073655.412,kg +37bb60c2-6e9c-321c-a772-9f5f29a1ae7d,SESCO,II.1.1,Salta,AR-A,annual,2019,gas oil combustion consumption by to the public,162.93732,TJ,CH4,3.9,kg/TJ,635.455548,kg +37bb60c2-6e9c-321c-a772-9f5f29a1ae7d,SESCO,II.1.1,Salta,AR-A,annual,2019,gas oil combustion consumption by to the public,162.93732,TJ,N2O,3.9,kg/TJ,635.455548,kg +f0b05197-d4d4-37cb-85bd-4444b1234873,SESCO,II.1.1,San Juan,AR-J,annual,2019,gas oil combustion consumption by to the public,125.01132,TJ,CO2,74100.0,kg/TJ,9263338.811999999,kg +a916370e-3de8-35ee-a6d7-4d0edfb782d4,SESCO,II.1.1,San Juan,AR-J,annual,2019,gas oil combustion consumption by to the public,125.01132,TJ,CH4,3.9,kg/TJ,487.544148,kg +a916370e-3de8-35ee-a6d7-4d0edfb782d4,SESCO,II.1.1,San Juan,AR-J,annual,2019,gas oil combustion consumption by to the public,125.01132,TJ,N2O,3.9,kg/TJ,487.544148,kg +3f0b6d26-0c5e-3ff3-98b8-59bf65e44187,SESCO,II.1.1,San Luis,AR-D,annual,2019,gas oil combustion consumption by to the public,117.42612,TJ,CO2,74100.0,kg/TJ,8701275.492,kg +bed23a5b-305b-3eec-9f0c-531732bc3605,SESCO,II.1.1,San Luis,AR-D,annual,2019,gas oil combustion consumption by to the public,117.42612,TJ,CH4,3.9,kg/TJ,457.961868,kg +bed23a5b-305b-3eec-9f0c-531732bc3605,SESCO,II.1.1,San Luis,AR-D,annual,2019,gas oil combustion consumption by to the public,117.42612,TJ,N2O,3.9,kg/TJ,457.961868,kg +c55fa3e9-21f4-3184-9816-059e3f1a7755,SESCO,II.1.1,Santa Fe,AR-S,annual,2019,gas oil combustion consumption by to the public,2164.6716,TJ,CO2,74100.0,kg/TJ,160402165.56,kg +a0666c88-001f-3f43-bd3c-a5e3b7366512,SESCO,II.1.1,Santa Fe,AR-S,annual,2019,gas oil combustion consumption by to the public,2164.6716,TJ,CH4,3.9,kg/TJ,8442.21924,kg +a0666c88-001f-3f43-bd3c-a5e3b7366512,SESCO,II.1.1,Santa Fe,AR-S,annual,2019,gas oil combustion consumption by to the public,2164.6716,TJ,N2O,3.9,kg/TJ,8442.21924,kg +9bf54077-0b8c-3136-b641-f0ea38c926e6,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2019,gas oil combustion consumption by to the public,244.74912,TJ,CO2,74100.0,kg/TJ,18135909.792,kg +3365bf3d-ca59-345c-8869-1a582b7907da,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2019,gas oil combustion consumption by to the public,244.74912,TJ,CH4,3.9,kg/TJ,954.521568,kg +3365bf3d-ca59-345c-8869-1a582b7907da,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2019,gas oil combustion consumption by to the public,244.74912,TJ,N2O,3.9,kg/TJ,954.521568,kg +72fbe5f8-d309-3f04-84d2-0f89438e75c9,SESCO,II.1.1,Tucuman,AR-T,annual,2019,gas oil combustion consumption by to the public,546.89292,TJ,CO2,74100.0,kg/TJ,40524765.372,kg +fb3ba4db-04e9-3e0a-b844-79cca2f6a6e5,SESCO,II.1.1,Tucuman,AR-T,annual,2019,gas oil combustion consumption by to the public,546.89292,TJ,CH4,3.9,kg/TJ,2132.882388,kg +fb3ba4db-04e9-3e0a-b844-79cca2f6a6e5,SESCO,II.1.1,Tucuman,AR-T,annual,2019,gas oil combustion consumption by to the public,546.89292,TJ,N2O,3.9,kg/TJ,2132.882388,kg +53068b17-7f7d-3d66-b6e0-1fe5c20067a1,SESCO,II.1.1,Entre Rios,AR-E,annual,2019,jet kerosene combustion consumption by to the public,2.7993169999999994,TJ,CO2,71500.0,kg/TJ,200151.16549999994,kg +e1abf008-5583-3e8b-9c97-9641b7d76a61,SESCO,II.1.1,Entre Rios,AR-E,annual,2019,jet kerosene combustion consumption by to the public,2.7993169999999994,TJ,CH4,0.5,kg/TJ,1.3996584999999997,kg +1d4d3e98-bc68-3373-b1dc-d7f46f43cafb,SESCO,II.1.1,Entre Rios,AR-E,annual,2019,jet kerosene combustion consumption by to the public,2.7993169999999994,TJ,N2O,2.0,kg/TJ,5.598633999999999,kg +1dbfdf65-3f0c-3d37-ad5f-35cb95e15ada,SESCO,I.3.1,Capital Federal,AR-C,annual,2019,gas oil combustion consumption by petrochemical industries,1.6254,TJ,CO2,74100.0,kg/TJ,120442.14,kg +8a5a880e-76fa-3139-9dd6-8fee00cb56be,SESCO,I.3.1,Capital Federal,AR-C,annual,2019,gas oil combustion consumption by petrochemical industries,1.6254,TJ,CH4,3.9,kg/TJ,6.33906,kg +8a5a880e-76fa-3139-9dd6-8fee00cb56be,SESCO,I.3.1,Capital Federal,AR-C,annual,2019,gas oil combustion consumption by petrochemical industries,1.6254,TJ,N2O,3.9,kg/TJ,6.33906,kg +a585d1a5-81f0-32da-b100-a6a499ccd105,SESCO,II.2.1,Buenos Aires,AR-B,annual,2019,gas oil combustion consumption by railway transport,310.88484,TJ,CO2,74100.0,kg/TJ,23036566.644,kg +f6abcecb-859e-32c3-aa1d-e8bd5a6882ff,SESCO,II.2.1,Buenos Aires,AR-B,annual,2019,gas oil combustion consumption by railway transport,310.88484,TJ,CH4,3.9,kg/TJ,1212.4508759999999,kg +f6abcecb-859e-32c3-aa1d-e8bd5a6882ff,SESCO,II.2.1,Buenos Aires,AR-B,annual,2019,gas oil combustion consumption by railway transport,310.88484,TJ,N2O,3.9,kg/TJ,1212.4508759999999,kg +9ccf3c96-3e1a-3f02-b3cb-bb1001b0cff5,SESCO,II.1.1,Buenos Aires,AR-B,annual,2019,gasoline combustion consumption by freight transport,10.4548,TJ,CO2,69300.0,kg/TJ,724517.64,kg +5679d7a9-54bd-3296-997d-d5e4dd9bbe09,SESCO,II.1.1,Buenos Aires,AR-B,annual,2019,gasoline combustion consumption by freight transport,10.4548,TJ,CH4,33.0,kg/TJ,345.0084,kg +a7c2c5a6-49ff-386a-b8b4-6b16735c7516,SESCO,II.1.1,Buenos Aires,AR-B,annual,2019,gasoline combustion consumption by freight transport,10.4548,TJ,N2O,3.2,kg/TJ,33.455360000000006,kg +a3c9f806-0a99-341d-8644-214c516fc440,SESCO,II.1.1,Santa Fe,AR-S,annual,2019,gasoline combustion consumption by freight transport,13.6001,TJ,CO2,69300.0,kg/TJ,942486.9299999999,kg +96802fc9-5dd0-3656-859b-04b36f6b73c6,SESCO,II.1.1,Santa Fe,AR-S,annual,2019,gasoline combustion consumption by freight transport,13.6001,TJ,CH4,33.0,kg/TJ,448.8033,kg +07e3055f-691f-35d3-b004-f2459ff5b5b8,SESCO,II.1.1,Santa Fe,AR-S,annual,2019,gasoline combustion consumption by freight transport,13.6001,TJ,N2O,3.2,kg/TJ,43.52032,kg +2addce6d-aa09-3284-aa21-aa801a89f69b,SESCO,II.1.1,Buenos Aires,AR-B,annual,2019,gas oil combustion consumption by freight transport,16.50684,TJ,CO2,74100.0,kg/TJ,1223156.844,kg +7541dbe3-2028-3efc-8dd4-696f4453ee03,SESCO,II.1.1,Buenos Aires,AR-B,annual,2019,gas oil combustion consumption by freight transport,16.50684,TJ,CH4,3.9,kg/TJ,64.376676,kg +7541dbe3-2028-3efc-8dd4-696f4453ee03,SESCO,II.1.1,Buenos Aires,AR-B,annual,2019,gas oil combustion consumption by freight transport,16.50684,TJ,N2O,3.9,kg/TJ,64.376676,kg +0bb82d60-dd94-3a05-856e-467dcc819397,SESCO,II.1.1,Capital Federal,AR-C,annual,2019,gas oil combustion consumption by freight transport,80.0058,TJ,CO2,74100.0,kg/TJ,5928429.779999999,kg +e6cefbb2-d3bd-3ab5-88c9-ab20760cfdf9,SESCO,II.1.1,Capital Federal,AR-C,annual,2019,gas oil combustion consumption by freight transport,80.0058,TJ,CH4,3.9,kg/TJ,312.02261999999996,kg +e6cefbb2-d3bd-3ab5-88c9-ab20760cfdf9,SESCO,II.1.1,Capital Federal,AR-C,annual,2019,gas oil combustion consumption by freight transport,80.0058,TJ,N2O,3.9,kg/TJ,312.02261999999996,kg +99030f57-bac2-3c46-a600-e28cd128e04d,SESCO,II.1.1,Córdoba,AR-X,annual,2019,gas oil combustion consumption by freight transport,47.06436,TJ,CO2,74100.0,kg/TJ,3487469.076,kg +5b950dc6-8053-3352-9a83-ec0d87f14e05,SESCO,II.1.1,Córdoba,AR-X,annual,2019,gas oil combustion consumption by freight transport,47.06436,TJ,CH4,3.9,kg/TJ,183.551004,kg +5b950dc6-8053-3352-9a83-ec0d87f14e05,SESCO,II.1.1,Córdoba,AR-X,annual,2019,gas oil combustion consumption by freight transport,47.06436,TJ,N2O,3.9,kg/TJ,183.551004,kg +0acb401a-4f87-3663-9956-d379b895d837,SESCO,II.1.1,Córdoba,AR-X,annual,2019,gas oil combustion consumption by freight transport,1.73376,TJ,CO2,74100.0,kg/TJ,128471.616,kg +13a54ffc-541b-3f8b-9df3-7f7e9fc2629c,SESCO,II.1.1,Córdoba,AR-X,annual,2019,gas oil combustion consumption by freight transport,1.73376,TJ,CH4,3.9,kg/TJ,6.761664,kg +13a54ffc-541b-3f8b-9df3-7f7e9fc2629c,SESCO,II.1.1,Córdoba,AR-X,annual,2019,gas oil combustion consumption by freight transport,1.73376,TJ,N2O,3.9,kg/TJ,6.761664,kg +1036d0e8-27ce-30a3-b4d0-87c3cbf7a1a0,SESCO,II.1.1,Buenos Aires,AR-B,annual,2019,gas oil combustion consumption by public passenger transport,4593.1998,TJ,CO2,74100.0,kg/TJ,340356105.18,kg +d80daf69-512d-34cc-bde9-86eb288d2d1e,SESCO,II.1.1,Buenos Aires,AR-B,annual,2019,gas oil combustion consumption by public passenger transport,4593.1998,TJ,CH4,3.9,kg/TJ,17913.47922,kg +d80daf69-512d-34cc-bde9-86eb288d2d1e,SESCO,II.1.1,Buenos Aires,AR-B,annual,2019,gas oil combustion consumption by public passenger transport,4593.1998,TJ,N2O,3.9,kg/TJ,17913.47922,kg +20395f7e-c89c-3989-a48d-c94e3f4a8880,SESCO,II.1.1,Capital Federal,AR-C,annual,2019,gas oil combustion consumption by public passenger transport,613.17312,TJ,CO2,74100.0,kg/TJ,45436128.192,kg +680d4cbd-9a68-3f9a-9cbd-7bc23f547c57,SESCO,II.1.1,Capital Federal,AR-C,annual,2019,gas oil combustion consumption by public passenger transport,613.17312,TJ,CH4,3.9,kg/TJ,2391.375168,kg +680d4cbd-9a68-3f9a-9cbd-7bc23f547c57,SESCO,II.1.1,Capital Federal,AR-C,annual,2019,gas oil combustion consumption by public passenger transport,613.17312,TJ,N2O,3.9,kg/TJ,2391.375168,kg +3d5e19fe-aaa7-3f2a-b457-d7093f801acc,SESCO,II.1.1,Misiones,AR-N,annual,2019,gas oil combustion consumption by public passenger transport,1.33644,TJ,CO2,74100.0,kg/TJ,99030.20400000001,kg +18e988ff-9101-3ad8-abd9-b0878e0c9fee,SESCO,II.1.1,Misiones,AR-N,annual,2019,gas oil combustion consumption by public passenger transport,1.33644,TJ,CH4,3.9,kg/TJ,5.212116,kg +18e988ff-9101-3ad8-abd9-b0878e0c9fee,SESCO,II.1.1,Misiones,AR-N,annual,2019,gas oil combustion consumption by public passenger transport,1.33644,TJ,N2O,3.9,kg/TJ,5.212116,kg +56d88f1e-207c-3db1-afbd-0a2cafa79c91,SESCO,II.1.1,Santa Fe,AR-S,annual,2019,gas oil combustion consumption by public passenger transport,20.84124,TJ,CO2,74100.0,kg/TJ,1544335.8839999998,kg +fe622026-227e-3a1d-8788-f54a5ccc0ed2,SESCO,II.1.1,Santa Fe,AR-S,annual,2019,gas oil combustion consumption by public passenger transport,20.84124,TJ,CH4,3.9,kg/TJ,81.280836,kg +fe622026-227e-3a1d-8788-f54a5ccc0ed2,SESCO,II.1.1,Santa Fe,AR-S,annual,2019,gas oil combustion consumption by public passenger transport,20.84124,TJ,N2O,3.9,kg/TJ,81.280836,kg +acc66805-6d73-3e98-9891-4841f885faff,SESCO,II.1.1,Buenos Aires,AR-B,annual,2019,gas oil combustion consumption by public passenger transport,1118.49192,TJ,CO2,74100.0,kg/TJ,82880251.272,kg +351c8f35-1d0a-3f0d-ae4c-fb1540825f16,SESCO,II.1.1,Buenos Aires,AR-B,annual,2019,gas oil combustion consumption by public passenger transport,1118.49192,TJ,CH4,3.9,kg/TJ,4362.118488,kg +351c8f35-1d0a-3f0d-ae4c-fb1540825f16,SESCO,II.1.1,Buenos Aires,AR-B,annual,2019,gas oil combustion consumption by public passenger transport,1118.49192,TJ,N2O,3.9,kg/TJ,4362.118488,kg +27998ae0-8112-346f-b5fe-f7d8994ae82d,SESCO,II.1.1,Capital Federal,AR-C,annual,2019,gas oil combustion consumption by public passenger transport,116.73984,TJ,CO2,74100.0,kg/TJ,8650422.144,kg +0cc3f360-27f9-3e24-a235-f8c02a3af675,SESCO,II.1.1,Capital Federal,AR-C,annual,2019,gas oil combustion consumption by public passenger transport,116.73984,TJ,CH4,3.9,kg/TJ,455.285376,kg +0cc3f360-27f9-3e24-a235-f8c02a3af675,SESCO,II.1.1,Capital Federal,AR-C,annual,2019,gas oil combustion consumption by public passenger transport,116.73984,TJ,N2O,3.9,kg/TJ,455.285376,kg +01194648-8f40-367f-a472-e28ab14a64e6,SESCO,II.1.1,Corrientes,AR-W,annual,2019,gas oil combustion consumption by public passenger transport,75.6714,TJ,CO2,74100.0,kg/TJ,5607250.74,kg +c93b47df-84ea-3bc2-9ac8-351757a13bf3,SESCO,II.1.1,Corrientes,AR-W,annual,2019,gas oil combustion consumption by public passenger transport,75.6714,TJ,CH4,3.9,kg/TJ,295.11846,kg +c93b47df-84ea-3bc2-9ac8-351757a13bf3,SESCO,II.1.1,Corrientes,AR-W,annual,2019,gas oil combustion consumption by public passenger transport,75.6714,TJ,N2O,3.9,kg/TJ,295.11846,kg +0aa16a84-f713-3a78-9e82-48d776626718,SESCO,II.1.1,Santa Fe,AR-S,annual,2019,gas oil combustion consumption by public passenger transport,38.50392,TJ,CO2,74100.0,kg/TJ,2853140.472,kg +4983bfc2-cf99-39aa-9b22-be12f13b2cc3,SESCO,II.1.1,Santa Fe,AR-S,annual,2019,gas oil combustion consumption by public passenger transport,38.50392,TJ,CH4,3.9,kg/TJ,150.165288,kg +4983bfc2-cf99-39aa-9b22-be12f13b2cc3,SESCO,II.1.1,Santa Fe,AR-S,annual,2019,gas oil combustion consumption by public passenger transport,38.50392,TJ,N2O,3.9,kg/TJ,150.165288,kg +2ef2d1b1-daa0-30d3-8f42-cb17a163503c,SESCO,II.5.1,Buenos Aires,AR-B,annual,2019,gas oil combustion consumption by agriculture machines,1328.3814473999998,TJ,CO2,74100.0,kg/TJ,98433065.25233999,kg +b8bac0cf-f044-3695-ba70-f4971713e9ff,SESCO,II.5.1,Buenos Aires,AR-B,annual,2019,gas oil combustion consumption by agriculture machines,1328.3814473999998,TJ,CH4,3.9,kg/TJ,5180.68764486,kg +b8bac0cf-f044-3695-ba70-f4971713e9ff,SESCO,II.5.1,Buenos Aires,AR-B,annual,2019,gas oil combustion consumption by agriculture machines,1328.3814473999998,TJ,N2O,3.9,kg/TJ,5180.68764486,kg +489a6051-5c25-30c7-acaa-4470cdcc8be2,SESCO,II.5.1,Capital Federal,AR-C,annual,2019,gas oil combustion consumption by agriculture machines,509.08499628,TJ,CO2,74100.0,kg/TJ,37723198.224348,kg +5a53dce3-7eac-3596-8491-8c95a26b8bbf,SESCO,II.5.1,Capital Federal,AR-C,annual,2019,gas oil combustion consumption by agriculture machines,509.08499628,TJ,CH4,3.9,kg/TJ,1985.4314854919999,kg +5a53dce3-7eac-3596-8491-8c95a26b8bbf,SESCO,II.5.1,Capital Federal,AR-C,annual,2019,gas oil combustion consumption by agriculture machines,509.08499628,TJ,N2O,3.9,kg/TJ,1985.4314854919999,kg +1a8c5da9-e690-34a0-9761-8a2cc0df9f1b,SESCO,II.5.1,Corrientes,AR-W,annual,2019,gas oil combustion consumption by agriculture machines,0.6120534,TJ,CO2,74100.0,kg/TJ,45353.15694,kg +3e42ede9-c747-3694-b18a-c40bd193b580,SESCO,II.5.1,Corrientes,AR-W,annual,2019,gas oil combustion consumption by agriculture machines,0.6120534,TJ,CH4,3.9,kg/TJ,2.38700826,kg +3e42ede9-c747-3694-b18a-c40bd193b580,SESCO,II.5.1,Corrientes,AR-W,annual,2019,gas oil combustion consumption by agriculture machines,0.6120534,TJ,N2O,3.9,kg/TJ,2.38700826,kg +f78d3def-f26d-34cc-8b60-fe320461d5eb,SESCO,II.5.1,Córdoba,AR-X,annual,2019,gas oil combustion consumption by agriculture machines,404.01383064,TJ,CO2,74100.0,kg/TJ,29937424.850424,kg +a72286e4-9456-3371-9b40-5a8ba4384136,SESCO,II.5.1,Córdoba,AR-X,annual,2019,gas oil combustion consumption by agriculture machines,404.01383064,TJ,CH4,3.9,kg/TJ,1575.6539394959998,kg +a72286e4-9456-3371-9b40-5a8ba4384136,SESCO,II.5.1,Córdoba,AR-X,annual,2019,gas oil combustion consumption by agriculture machines,404.01383064,TJ,N2O,3.9,kg/TJ,1575.6539394959998,kg +475a743b-942c-3269-bb79-f78f268fecea,SESCO,II.5.1,Entre Rios,AR-E,annual,2019,gas oil combustion consumption by agriculture machines,198.82969176,TJ,CO2,74100.0,kg/TJ,14733280.159416,kg +567bd4a0-9a8d-369f-847f-ab61b7615ee9,SESCO,II.5.1,Entre Rios,AR-E,annual,2019,gas oil combustion consumption by agriculture machines,198.82969176,TJ,CH4,3.9,kg/TJ,775.4357978639999,kg +567bd4a0-9a8d-369f-847f-ab61b7615ee9,SESCO,II.5.1,Entre Rios,AR-E,annual,2019,gas oil combustion consumption by agriculture machines,198.82969176,TJ,N2O,3.9,kg/TJ,775.4357978639999,kg +8f48579b-6a4e-399e-b372-6090cd39e066,SESCO,II.5.1,Jujuy,AR-Y,annual,2019,gas oil combustion consumption by agriculture machines,11.7288864,TJ,CO2,74100.0,kg/TJ,869110.48224,kg +528af7f9-5044-3936-a365-e1a7c96b1410,SESCO,II.5.1,Jujuy,AR-Y,annual,2019,gas oil combustion consumption by agriculture machines,11.7288864,TJ,CH4,3.9,kg/TJ,45.74265696,kg +528af7f9-5044-3936-a365-e1a7c96b1410,SESCO,II.5.1,Jujuy,AR-Y,annual,2019,gas oil combustion consumption by agriculture machines,11.7288864,TJ,N2O,3.9,kg/TJ,45.74265696,kg +7ef3836f-3783-34e5-a083-a6524bd9ab1b,SESCO,II.5.1,La Pampa,AR-L,annual,2019,gas oil combustion consumption by agriculture machines,74.6914644,TJ,CO2,74100.0,kg/TJ,5534637.51204,kg +6bed319c-a342-3dd1-b25b-ba5d254d2e4e,SESCO,II.5.1,La Pampa,AR-L,annual,2019,gas oil combustion consumption by agriculture machines,74.6914644,TJ,CH4,3.9,kg/TJ,291.29671116,kg +6bed319c-a342-3dd1-b25b-ba5d254d2e4e,SESCO,II.5.1,La Pampa,AR-L,annual,2019,gas oil combustion consumption by agriculture machines,74.6914644,TJ,N2O,3.9,kg/TJ,291.29671116,kg +be8e137d-65de-3c9d-9e88-42b2ea97fd43,SESCO,II.5.1,Rio Negro,AR-R,annual,2019,gas oil combustion consumption by agriculture machines,24.459560999999997,TJ,CO2,74100.0,kg/TJ,1812453.4700999998,kg +9018e132-e0cd-3c84-80df-fa3820662775,SESCO,II.5.1,Rio Negro,AR-R,annual,2019,gas oil combustion consumption by agriculture machines,24.459560999999997,TJ,CH4,3.9,kg/TJ,95.39228789999999,kg +9018e132-e0cd-3c84-80df-fa3820662775,SESCO,II.5.1,Rio Negro,AR-R,annual,2019,gas oil combustion consumption by agriculture machines,24.459560999999997,TJ,N2O,3.9,kg/TJ,95.39228789999999,kg +240261b2-8218-3c79-a2cf-7a8189a7b2eb,SESCO,II.5.1,San Luis,AR-D,annual,2019,gas oil combustion consumption by agriculture machines,14.8568784,TJ,CO2,74100.0,kg/TJ,1100894.6894399999,kg +70a96b8b-316e-3967-8027-162bea18a89d,SESCO,II.5.1,San Luis,AR-D,annual,2019,gas oil combustion consumption by agriculture machines,14.8568784,TJ,CH4,3.9,kg/TJ,57.94182575999999,kg +70a96b8b-316e-3967-8027-162bea18a89d,SESCO,II.5.1,San Luis,AR-D,annual,2019,gas oil combustion consumption by agriculture machines,14.8568784,TJ,N2O,3.9,kg/TJ,57.94182575999999,kg +b9105b38-a3f4-3820-a42c-582f9d7f28df,SESCO,II.5.1,Santa Fe,AR-S,annual,2019,gas oil combustion consumption by agriculture machines,1030.56045288,TJ,CO2,74100.0,kg/TJ,76364529.55840799,kg +5c3c5ec5-22e9-3ce4-bed0-66c5c6406efb,SESCO,II.5.1,Santa Fe,AR-S,annual,2019,gas oil combustion consumption by agriculture machines,1030.56045288,TJ,CH4,3.9,kg/TJ,4019.185766232,kg +5c3c5ec5-22e9-3ce4-bed0-66c5c6406efb,SESCO,II.5.1,Santa Fe,AR-S,annual,2019,gas oil combustion consumption by agriculture machines,1030.56045288,TJ,N2O,3.9,kg/TJ,4019.185766232,kg +2c65636e-bc94-359a-ae1b-93499e7a4eef,SESCO,II.5.1,Santiago del Estero,AR-G,annual,2019,gas oil combustion consumption by agriculture machines,241.14228516,TJ,CO2,74100.0,kg/TJ,17868643.330356,kg +f2290ce5-4970-3c5f-b80f-c8a6cf44ae49,SESCO,II.5.1,Santiago del Estero,AR-G,annual,2019,gas oil combustion consumption by agriculture machines,241.14228516,TJ,CH4,3.9,kg/TJ,940.454912124,kg +f2290ce5-4970-3c5f-b80f-c8a6cf44ae49,SESCO,II.5.1,Santiago del Estero,AR-G,annual,2019,gas oil combustion consumption by agriculture machines,241.14228516,TJ,N2O,3.9,kg/TJ,940.454912124,kg +db359249-6c8d-3e04-85f5-68ac44e92ac9,SESCO,II.5.1,Tucuman,AR-T,annual,2019,gas oil combustion consumption by agriculture machines,150.46396428,TJ,CO2,74100.0,kg/TJ,11149379.753148,kg +57f629da-cabc-3522-85c6-4a0707701b05,SESCO,II.5.1,Tucuman,AR-T,annual,2019,gas oil combustion consumption by agriculture machines,150.46396428,TJ,CH4,3.9,kg/TJ,586.809460692,kg +57f629da-cabc-3522-85c6-4a0707701b05,SESCO,II.5.1,Tucuman,AR-T,annual,2019,gas oil combustion consumption by agriculture machines,150.46396428,TJ,N2O,3.9,kg/TJ,586.809460692,kg +e25b4e9d-5847-3b19-afde-36d75b38049c,SESCO,II.5.1,Buenos Aires,AR-B,annual,2019,gas oil combustion consumption by agriculture machines,171.07602287999998,TJ,CO2,74100.0,kg/TJ,12676733.295408,kg +f7152893-cd73-3777-9913-d48855a5906f,SESCO,II.5.1,Buenos Aires,AR-B,annual,2019,gas oil combustion consumption by agriculture machines,171.07602287999998,TJ,CH4,3.9,kg/TJ,667.1964892319999,kg +f7152893-cd73-3777-9913-d48855a5906f,SESCO,II.5.1,Buenos Aires,AR-B,annual,2019,gas oil combustion consumption by agriculture machines,171.07602287999998,TJ,N2O,3.9,kg/TJ,667.1964892319999,kg +986436a3-d428-3d95-9e39-649f16f0bc6e,SESCO,II.5.1,Capital Federal,AR-C,annual,2019,gas oil combustion consumption by agriculture machines,48.239740919999996,TJ,CO2,74100.0,kg/TJ,3574564.8021719996,kg +6076c811-ca59-3f27-a441-1603d5619e37,SESCO,II.5.1,Capital Federal,AR-C,annual,2019,gas oil combustion consumption by agriculture machines,48.239740919999996,TJ,CH4,3.9,kg/TJ,188.13498958799997,kg +6076c811-ca59-3f27-a441-1603d5619e37,SESCO,II.5.1,Capital Federal,AR-C,annual,2019,gas oil combustion consumption by agriculture machines,48.239740919999996,TJ,N2O,3.9,kg/TJ,188.13498958799997,kg +c6491bf1-1af7-384d-8641-ce0f2555b5e8,SESCO,II.5.1,Corrientes,AR-W,annual,2019,gas oil combustion consumption by agriculture machines,0.7236280799999999,TJ,CO2,74100.0,kg/TJ,53620.840727999996,kg +b26dab7f-4c2a-3d82-b034-a5cbc78fd599,SESCO,II.5.1,Corrientes,AR-W,annual,2019,gas oil combustion consumption by agriculture machines,0.7236280799999999,TJ,CH4,3.9,kg/TJ,2.8221495119999997,kg +b26dab7f-4c2a-3d82-b034-a5cbc78fd599,SESCO,II.5.1,Corrientes,AR-W,annual,2019,gas oil combustion consumption by agriculture machines,0.7236280799999999,TJ,N2O,3.9,kg/TJ,2.8221495119999997,kg +19440ce0-51e4-3b96-b3fc-b7eba8df0e49,SESCO,II.5.1,Córdoba,AR-X,annual,2019,gas oil combustion consumption by agriculture machines,46.075286039999995,TJ,CO2,74100.0,kg/TJ,3414178.6955639995,kg +c2939a18-af12-3a95-8497-198a28b521b6,SESCO,II.5.1,Córdoba,AR-X,annual,2019,gas oil combustion consumption by agriculture machines,46.075286039999995,TJ,CH4,3.9,kg/TJ,179.69361555599997,kg +c2939a18-af12-3a95-8497-198a28b521b6,SESCO,II.5.1,Córdoba,AR-X,annual,2019,gas oil combustion consumption by agriculture machines,46.075286039999995,TJ,N2O,3.9,kg/TJ,179.69361555599997,kg +e744f0d1-9e79-35bf-b73e-3e78179ad562,SESCO,II.5.1,Entre Rios,AR-E,annual,2019,gas oil combustion consumption by agriculture machines,39.83158284,TJ,CO2,74100.0,kg/TJ,2951520.2884440003,kg +5b1aec61-24c1-394d-9d77-9237d145d2e1,SESCO,II.5.1,Entre Rios,AR-E,annual,2019,gas oil combustion consumption by agriculture machines,39.83158284,TJ,CH4,3.9,kg/TJ,155.343173076,kg +5b1aec61-24c1-394d-9d77-9237d145d2e1,SESCO,II.5.1,Entre Rios,AR-E,annual,2019,gas oil combustion consumption by agriculture machines,39.83158284,TJ,N2O,3.9,kg/TJ,155.343173076,kg +d56fe3cc-0fc9-3957-94ec-68ec6022d8e6,SESCO,II.5.1,Jujuy,AR-Y,annual,2019,gas oil combustion consumption by agriculture machines,33.81623028,TJ,CO2,74100.0,kg/TJ,2505782.663748,kg +85de1de1-2b09-3ee2-9515-62fc998bd153,SESCO,II.5.1,Jujuy,AR-Y,annual,2019,gas oil combustion consumption by agriculture machines,33.81623028,TJ,CH4,3.9,kg/TJ,131.883298092,kg +85de1de1-2b09-3ee2-9515-62fc998bd153,SESCO,II.5.1,Jujuy,AR-Y,annual,2019,gas oil combustion consumption by agriculture machines,33.81623028,TJ,N2O,3.9,kg/TJ,131.883298092,kg +5fb9286f-46d5-3b68-9c45-5ab78b94071e,SESCO,II.5.1,La Pampa,AR-L,annual,2019,gas oil combustion consumption by agriculture machines,9.022198079999999,TJ,CO2,74100.0,kg/TJ,668544.8777279999,kg +76f0e621-365b-350a-855d-19029babb7c5,SESCO,II.5.1,La Pampa,AR-L,annual,2019,gas oil combustion consumption by agriculture machines,9.022198079999999,TJ,CH4,3.9,kg/TJ,35.186572512,kg +76f0e621-365b-350a-855d-19029babb7c5,SESCO,II.5.1,La Pampa,AR-L,annual,2019,gas oil combustion consumption by agriculture machines,9.022198079999999,TJ,N2O,3.9,kg/TJ,35.186572512,kg +22de8862-56db-3aef-b5b5-513a0be04c1b,SESCO,II.5.1,Rio Negro,AR-R,annual,2019,gas oil combustion consumption by agriculture machines,44.92999308,TJ,CO2,74100.0,kg/TJ,3329312.487228,kg +3c9e95a9-ccdb-3a26-a8be-707085eb3a2d,SESCO,II.5.1,Rio Negro,AR-R,annual,2019,gas oil combustion consumption by agriculture machines,44.92999308,TJ,CH4,3.9,kg/TJ,175.226973012,kg +3c9e95a9-ccdb-3a26-a8be-707085eb3a2d,SESCO,II.5.1,Rio Negro,AR-R,annual,2019,gas oil combustion consumption by agriculture machines,44.92999308,TJ,N2O,3.9,kg/TJ,175.226973012,kg +1342453f-f844-32a6-bf03-8a0b4c5d618b,SESCO,II.5.1,San Luis,AR-D,annual,2019,gas oil combustion consumption by agriculture machines,4.761266159999999,TJ,CO2,74100.0,kg/TJ,352809.8224559999,kg +5ea44106-cac6-3e1e-b0f4-8966e918b810,SESCO,II.5.1,San Luis,AR-D,annual,2019,gas oil combustion consumption by agriculture machines,4.761266159999999,TJ,CH4,3.9,kg/TJ,18.568938023999994,kg +5ea44106-cac6-3e1e-b0f4-8966e918b810,SESCO,II.5.1,San Luis,AR-D,annual,2019,gas oil combustion consumption by agriculture machines,4.761266159999999,TJ,N2O,3.9,kg/TJ,18.568938023999994,kg +2d668400-14ab-34de-9acd-2d524a37ab80,SESCO,II.5.1,Santa Fe,AR-S,annual,2019,gas oil combustion consumption by agriculture machines,149.04918,TJ,CO2,74100.0,kg/TJ,11044544.238,kg +f203975a-3ef0-3738-b9df-02923ac7185f,SESCO,II.5.1,Santa Fe,AR-S,annual,2019,gas oil combustion consumption by agriculture machines,149.04918,TJ,CH4,3.9,kg/TJ,581.291802,kg +f203975a-3ef0-3738-b9df-02923ac7185f,SESCO,II.5.1,Santa Fe,AR-S,annual,2019,gas oil combustion consumption by agriculture machines,149.04918,TJ,N2O,3.9,kg/TJ,581.291802,kg +c0e47e27-35f1-31d3-883e-3bf872b938fc,SESCO,II.5.1,Santiago del Estero,AR-G,annual,2019,gas oil combustion consumption by agriculture machines,16.39436232,TJ,CO2,74100.0,kg/TJ,1214822.247912,kg +579b8ddf-b396-3982-9f7f-47b78f91da37,SESCO,II.5.1,Santiago del Estero,AR-G,annual,2019,gas oil combustion consumption by agriculture machines,16.39436232,TJ,CH4,3.9,kg/TJ,63.938013047999995,kg +579b8ddf-b396-3982-9f7f-47b78f91da37,SESCO,II.5.1,Santiago del Estero,AR-G,annual,2019,gas oil combustion consumption by agriculture machines,16.39436232,TJ,N2O,3.9,kg/TJ,63.938013047999995,kg +33a7b1cc-725f-3d85-8685-1748259dad00,SESCO,II.5.1,Tucuman,AR-T,annual,2019,gas oil combustion consumption by agriculture machines,38.03566032,TJ,CO2,74100.0,kg/TJ,2818442.429712,kg +6179fcde-802a-3f61-a01d-1e8c809a494a,SESCO,II.5.1,Tucuman,AR-T,annual,2019,gas oil combustion consumption by agriculture machines,38.03566032,TJ,CH4,3.9,kg/TJ,148.339075248,kg +6179fcde-802a-3f61-a01d-1e8c809a494a,SESCO,II.5.1,Tucuman,AR-T,annual,2019,gas oil combustion consumption by agriculture machines,38.03566032,TJ,N2O,3.9,kg/TJ,148.339075248,kg +83cd5b56-ae6b-34f6-997b-08db2be0b4b1,SESCO,II.1.1,Buenos Aires,AR-B,annual,2019,gasoline combustion consumption by to the public,43.893769,TJ,CO2,69300.0,kg/TJ,3041838.1917,kg +ae6cda9a-0a94-3f11-b5c6-14130734cb34,SESCO,II.1.1,Buenos Aires,AR-B,annual,2019,gasoline combustion consumption by to the public,43.893769,TJ,CH4,33.0,kg/TJ,1448.494377,kg +90caf7f8-b5d9-3854-9092-0f052f305ed3,SESCO,II.1.1,Buenos Aires,AR-B,annual,2019,gasoline combustion consumption by to the public,43.893769,TJ,N2O,3.2,kg/TJ,140.4600608,kg +be2746d4-6e64-3f76-a239-fb2d966eb63b,SESCO,II.1.1,Buenos Aires,AR-B,annual,2019,gas oil combustion consumption by to the public,12451.59363672,TJ,CO2,74100.0,kg/TJ,922663088.4809519,kg +8cf97d59-520b-3ec6-82eb-4e60faa27308,SESCO,II.1.1,Buenos Aires,AR-B,annual,2019,gas oil combustion consumption by to the public,12451.59363672,TJ,CH4,3.9,kg/TJ,48561.215183208,kg +8cf97d59-520b-3ec6-82eb-4e60faa27308,SESCO,II.1.1,Buenos Aires,AR-B,annual,2019,gas oil combustion consumption by to the public,12451.59363672,TJ,N2O,3.9,kg/TJ,48561.215183208,kg +e349e031-60ff-35fb-b26c-b0446001c2ee,SESCO,II.1.1,Capital Federal,AR-C,annual,2019,gas oil combustion consumption by to the public,216.08150676,TJ,CO2,74100.0,kg/TJ,16011639.650915999,kg +949dcd4d-3f69-3323-9265-af01c519a2cb,SESCO,II.1.1,Capital Federal,AR-C,annual,2019,gas oil combustion consumption by to the public,216.08150676,TJ,CH4,3.9,kg/TJ,842.717876364,kg +949dcd4d-3f69-3323-9265-af01c519a2cb,SESCO,II.1.1,Capital Federal,AR-C,annual,2019,gas oil combustion consumption by to the public,216.08150676,TJ,N2O,3.9,kg/TJ,842.717876364,kg +95375425-1490-3c33-be1a-629b284911c9,SESCO,II.1.1,Catamarca,AR-K,annual,2019,gas oil combustion consumption by to the public,5.2674879599999995,TJ,CO2,74100.0,kg/TJ,390320.857836,kg +0ffbdab0-f0b6-3f82-b91e-ef600b654c4a,SESCO,II.1.1,Catamarca,AR-K,annual,2019,gas oil combustion consumption by to the public,5.2674879599999995,TJ,CH4,3.9,kg/TJ,20.543203044,kg +0ffbdab0-f0b6-3f82-b91e-ef600b654c4a,SESCO,II.1.1,Catamarca,AR-K,annual,2019,gas oil combustion consumption by to the public,5.2674879599999995,TJ,N2O,3.9,kg/TJ,20.543203044,kg +8a112cf6-62e4-3acc-93d9-ee05fed8ef72,SESCO,II.1.1,Chaco,AR-H,annual,2019,gas oil combustion consumption by to the public,31.63324584,TJ,CO2,74100.0,kg/TJ,2344023.516744,kg +65188525-d4ca-3763-ac07-c5a6bd3e2fb4,SESCO,II.1.1,Chaco,AR-H,annual,2019,gas oil combustion consumption by to the public,31.63324584,TJ,CH4,3.9,kg/TJ,123.369658776,kg +65188525-d4ca-3763-ac07-c5a6bd3e2fb4,SESCO,II.1.1,Chaco,AR-H,annual,2019,gas oil combustion consumption by to the public,31.63324584,TJ,N2O,3.9,kg/TJ,123.369658776,kg +eeb64275-edaa-37b0-9077-21ce001c1bcc,SESCO,II.1.1,Chubut,AR-U,annual,2019,gas oil combustion consumption by to the public,60.56500464,TJ,CO2,74100.0,kg/TJ,4487866.843824,kg +b61af4af-c72a-38c9-9290-575350bdffbb,SESCO,II.1.1,Chubut,AR-U,annual,2019,gas oil combustion consumption by to the public,60.56500464,TJ,CH4,3.9,kg/TJ,236.20351809599998,kg +b61af4af-c72a-38c9-9290-575350bdffbb,SESCO,II.1.1,Chubut,AR-U,annual,2019,gas oil combustion consumption by to the public,60.56500464,TJ,N2O,3.9,kg/TJ,236.20351809599998,kg +4b26193e-0f19-385b-ae5d-c5d5713d6f9b,SESCO,II.1.1,Corrientes,AR-W,annual,2019,gas oil combustion consumption by to the public,143.16537648,TJ,CO2,74100.0,kg/TJ,10608554.397168,kg +563a5b4c-98a3-3a22-950e-ace6156edd2c,SESCO,II.1.1,Corrientes,AR-W,annual,2019,gas oil combustion consumption by to the public,143.16537648,TJ,CH4,3.9,kg/TJ,558.344968272,kg +563a5b4c-98a3-3a22-950e-ace6156edd2c,SESCO,II.1.1,Corrientes,AR-W,annual,2019,gas oil combustion consumption by to the public,143.16537648,TJ,N2O,3.9,kg/TJ,558.344968272,kg +2679e3b8-ccd2-335b-a19c-3ecf2421ece8,SESCO,II.1.1,Córdoba,AR-X,annual,2019,gas oil combustion consumption by to the public,559.4631856799999,TJ,CO2,74100.0,kg/TJ,41456222.058887996,kg +d3269cc7-9f71-3a24-b60a-6ff4fbf95e01,SESCO,II.1.1,Córdoba,AR-X,annual,2019,gas oil combustion consumption by to the public,559.4631856799999,TJ,CH4,3.9,kg/TJ,2181.9064241519995,kg +d3269cc7-9f71-3a24-b60a-6ff4fbf95e01,SESCO,II.1.1,Córdoba,AR-X,annual,2019,gas oil combustion consumption by to the public,559.4631856799999,TJ,N2O,3.9,kg/TJ,2181.9064241519995,kg +3d1e7ff0-f577-30ff-93bb-51690cd83ceb,SESCO,II.1.1,Entre Rios,AR-E,annual,2019,gas oil combustion consumption by to the public,814.4572380000001,TJ,CO2,74100.0,kg/TJ,60351281.33580001,kg +193a0c53-f61e-3d6c-9368-e322bc30eb27,SESCO,II.1.1,Entre Rios,AR-E,annual,2019,gas oil combustion consumption by to the public,814.4572380000001,TJ,CH4,3.9,kg/TJ,3176.3832282000003,kg +193a0c53-f61e-3d6c-9368-e322bc30eb27,SESCO,II.1.1,Entre Rios,AR-E,annual,2019,gas oil combustion consumption by to the public,814.4572380000001,TJ,N2O,3.9,kg/TJ,3176.3832282000003,kg +9a3495a0-87e0-3e39-9ead-cb7b023fd795,SESCO,II.1.1,Formosa,AR-P,annual,2019,gas oil combustion consumption by to the public,33.61063524,TJ,CO2,74100.0,kg/TJ,2490548.071284,kg +2a2201d0-7ad8-3bc2-8805-f9450a0c7bff,SESCO,II.1.1,Formosa,AR-P,annual,2019,gas oil combustion consumption by to the public,33.61063524,TJ,CH4,3.9,kg/TJ,131.081477436,kg +2a2201d0-7ad8-3bc2-8805-f9450a0c7bff,SESCO,II.1.1,Formosa,AR-P,annual,2019,gas oil combustion consumption by to the public,33.61063524,TJ,N2O,3.9,kg/TJ,131.081477436,kg +0469d764-8faf-306a-be4f-08a208dda2ea,SESCO,II.1.1,Jujuy,AR-Y,annual,2019,gas oil combustion consumption by to the public,36.038585520000005,TJ,CO2,74100.0,kg/TJ,2670459.187032,kg +f3b52714-37bb-3278-b4b1-1f5a173d2b6a,SESCO,II.1.1,Jujuy,AR-Y,annual,2019,gas oil combustion consumption by to the public,36.038585520000005,TJ,CH4,3.9,kg/TJ,140.55048352800003,kg +f3b52714-37bb-3278-b4b1-1f5a173d2b6a,SESCO,II.1.1,Jujuy,AR-Y,annual,2019,gas oil combustion consumption by to the public,36.038585520000005,TJ,N2O,3.9,kg/TJ,140.55048352800003,kg +8261aaab-95c8-3965-810e-56741cd9ecff,SESCO,II.1.1,La Pampa,AR-L,annual,2019,gas oil combustion consumption by to the public,720.88433256,TJ,CO2,74100.0,kg/TJ,53417529.042696,kg +02fcf332-7daa-3e2f-9064-c746997492de,SESCO,II.1.1,La Pampa,AR-L,annual,2019,gas oil combustion consumption by to the public,720.88433256,TJ,CH4,3.9,kg/TJ,2811.448896984,kg +02fcf332-7daa-3e2f-9064-c746997492de,SESCO,II.1.1,La Pampa,AR-L,annual,2019,gas oil combustion consumption by to the public,720.88433256,TJ,N2O,3.9,kg/TJ,2811.448896984,kg +70cf22ec-5210-364c-8c6f-ad0dd0b0462d,SESCO,II.1.1,Mendoza,AR-M,annual,2019,gas oil combustion consumption by to the public,85.61761992,TJ,CO2,74100.0,kg/TJ,6344265.636072,kg +1708a104-a24e-38f4-8b80-ae874be98a16,SESCO,II.1.1,Mendoza,AR-M,annual,2019,gas oil combustion consumption by to the public,85.61761992,TJ,CH4,3.9,kg/TJ,333.90871768799997,kg +1708a104-a24e-38f4-8b80-ae874be98a16,SESCO,II.1.1,Mendoza,AR-M,annual,2019,gas oil combustion consumption by to the public,85.61761992,TJ,N2O,3.9,kg/TJ,333.90871768799997,kg +c4af7ed3-b519-376c-88ef-b9339523362c,SESCO,II.1.1,Misiones,AR-N,annual,2019,gas oil combustion consumption by to the public,76.50609707999999,TJ,CO2,74100.0,kg/TJ,5669101.793627999,kg +db3db9c9-7b01-399d-8356-79f0eb6e7b48,SESCO,II.1.1,Misiones,AR-N,annual,2019,gas oil combustion consumption by to the public,76.50609707999999,TJ,CH4,3.9,kg/TJ,298.37377861199997,kg +db3db9c9-7b01-399d-8356-79f0eb6e7b48,SESCO,II.1.1,Misiones,AR-N,annual,2019,gas oil combustion consumption by to the public,76.50609707999999,TJ,N2O,3.9,kg/TJ,298.37377861199997,kg +be7ae4ab-b015-3038-902d-02c077930ee1,SESCO,II.1.1,Neuquén,AR-Q,annual,2019,gas oil combustion consumption by to the public,235.84142231999996,TJ,CO2,74100.0,kg/TJ,17475849.393912,kg +776d303d-6873-3485-a82f-255519c49fd4,SESCO,II.1.1,Neuquén,AR-Q,annual,2019,gas oil combustion consumption by to the public,235.84142231999996,TJ,CH4,3.9,kg/TJ,919.7815470479999,kg +776d303d-6873-3485-a82f-255519c49fd4,SESCO,II.1.1,Neuquén,AR-Q,annual,2019,gas oil combustion consumption by to the public,235.84142231999996,TJ,N2O,3.9,kg/TJ,919.7815470479999,kg +cc44e547-4a0c-3880-9388-1c1cdcce4ba3,SESCO,II.1.1,Rio Negro,AR-R,annual,2019,gas oil combustion consumption by to the public,444.07184975999996,TJ,CO2,74100.0,kg/TJ,32905724.067215998,kg +7e0772a1-7896-359f-9a1b-03abdfcf7c27,SESCO,II.1.1,Rio Negro,AR-R,annual,2019,gas oil combustion consumption by to the public,444.07184975999996,TJ,CH4,3.9,kg/TJ,1731.8802140639998,kg +7e0772a1-7896-359f-9a1b-03abdfcf7c27,SESCO,II.1.1,Rio Negro,AR-R,annual,2019,gas oil combustion consumption by to the public,444.07184975999996,TJ,N2O,3.9,kg/TJ,1731.8802140639998,kg +1bd8d5d6-36e2-38d8-96a8-5e306e35c8ee,SESCO,II.1.1,San Juan,AR-J,annual,2019,gas oil combustion consumption by to the public,53.2356426,TJ,CO2,74100.0,kg/TJ,3944761.11666,kg +5a62aa3e-f5ea-32cb-977a-b1713102792e,SESCO,II.1.1,San Juan,AR-J,annual,2019,gas oil combustion consumption by to the public,53.2356426,TJ,CH4,3.9,kg/TJ,207.61900613999998,kg +5a62aa3e-f5ea-32cb-977a-b1713102792e,SESCO,II.1.1,San Juan,AR-J,annual,2019,gas oil combustion consumption by to the public,53.2356426,TJ,N2O,3.9,kg/TJ,207.61900613999998,kg +d35850ae-5f1e-3673-8dc6-a588859fa7ab,SESCO,II.1.1,San Luis,AR-D,annual,2019,gas oil combustion consumption by to the public,68.78248524,TJ,CO2,74100.0,kg/TJ,5096782.156284,kg +fbd1d610-6e63-3099-83c6-f3a6dfd8c739,SESCO,II.1.1,San Luis,AR-D,annual,2019,gas oil combustion consumption by to the public,68.78248524,TJ,CH4,3.9,kg/TJ,268.251692436,kg +fbd1d610-6e63-3099-83c6-f3a6dfd8c739,SESCO,II.1.1,San Luis,AR-D,annual,2019,gas oil combustion consumption by to the public,68.78248524,TJ,N2O,3.9,kg/TJ,268.251692436,kg +5f8dece2-4c5d-345f-b325-f7825ac6f835,SESCO,II.1.1,Santa Fe,AR-S,annual,2019,gas oil combustion consumption by to the public,1065.35167032,TJ,CO2,74100.0,kg/TJ,78942558.770712,kg +5bc4f2b1-73e8-351d-a100-fc7d405bb8f4,SESCO,II.1.1,Santa Fe,AR-S,annual,2019,gas oil combustion consumption by to the public,1065.35167032,TJ,CH4,3.9,kg/TJ,4154.8715142480005,kg +5bc4f2b1-73e8-351d-a100-fc7d405bb8f4,SESCO,II.1.1,Santa Fe,AR-S,annual,2019,gas oil combustion consumption by to the public,1065.35167032,TJ,N2O,3.9,kg/TJ,4154.8715142480005,kg +142516be-3730-3c7d-b3f2-51ab637c582c,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2019,gas oil combustion consumption by to the public,465.12471684,TJ,CO2,74100.0,kg/TJ,34465741.517844,kg +27b31334-a63f-30ba-bbd2-168716b9664c,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2019,gas oil combustion consumption by to the public,465.12471684,TJ,CH4,3.9,kg/TJ,1813.986395676,kg +27b31334-a63f-30ba-bbd2-168716b9664c,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2019,gas oil combustion consumption by to the public,465.12471684,TJ,N2O,3.9,kg/TJ,1813.986395676,kg +f9cb4a13-03bf-3b97-98b4-034851d6b28e,SESCO,II.1.1,Tucuman,AR-T,annual,2019,gas oil combustion consumption by to the public,30.35214168,TJ,CO2,74100.0,kg/TJ,2249093.698488,kg +97b36e6f-6b8a-381e-aa8d-62782a61bcfe,SESCO,II.1.1,Tucuman,AR-T,annual,2019,gas oil combustion consumption by to the public,30.35214168,TJ,CH4,3.9,kg/TJ,118.373352552,kg +97b36e6f-6b8a-381e-aa8d-62782a61bcfe,SESCO,II.1.1,Tucuman,AR-T,annual,2019,gas oil combustion consumption by to the public,30.35214168,TJ,N2O,3.9,kg/TJ,118.373352552,kg +da15ba16-92fb-3554-afd0-653213b5f8a8,SESCO,II.1.1,Buenos Aires,AR-B,annual,2019,gas oil combustion consumption by to the public,2532.2382918,TJ,CO2,74100.0,kg/TJ,187638857.42238,kg +a9edc5a4-c250-3086-bd22-f5072dd38768,SESCO,II.1.1,Buenos Aires,AR-B,annual,2019,gas oil combustion consumption by to the public,2532.2382918,TJ,CH4,3.9,kg/TJ,9875.729338019999,kg +a9edc5a4-c250-3086-bd22-f5072dd38768,SESCO,II.1.1,Buenos Aires,AR-B,annual,2019,gas oil combustion consumption by to the public,2532.2382918,TJ,N2O,3.9,kg/TJ,9875.729338019999,kg +6b5964ab-2682-30cb-b8df-b46eb9242826,SESCO,II.1.1,Capital Federal,AR-C,annual,2019,gas oil combustion consumption by to the public,35.33626824,TJ,CO2,74100.0,kg/TJ,2618417.476584,kg +3fbaaaff-9c2d-3a98-b405-e128616c3386,SESCO,II.1.1,Capital Federal,AR-C,annual,2019,gas oil combustion consumption by to the public,35.33626824,TJ,CH4,3.9,kg/TJ,137.811446136,kg +3fbaaaff-9c2d-3a98-b405-e128616c3386,SESCO,II.1.1,Capital Federal,AR-C,annual,2019,gas oil combustion consumption by to the public,35.33626824,TJ,N2O,3.9,kg/TJ,137.811446136,kg +9bc285c9-8588-3dfb-ba40-a3f691950406,SESCO,II.1.1,Catamarca,AR-K,annual,2019,gas oil combustion consumption by to the public,1.29735816,TJ,CO2,74100.0,kg/TJ,96134.23965599999,kg +d4a2327f-ebf1-3d7a-98a7-a3c9e8629c45,SESCO,II.1.1,Catamarca,AR-K,annual,2019,gas oil combustion consumption by to the public,1.29735816,TJ,CH4,3.9,kg/TJ,5.0596968239999995,kg +d4a2327f-ebf1-3d7a-98a7-a3c9e8629c45,SESCO,II.1.1,Catamarca,AR-K,annual,2019,gas oil combustion consumption by to the public,1.29735816,TJ,N2O,3.9,kg/TJ,5.0596968239999995,kg +9a8a853d-93f0-3adb-8451-f3d5e257b45e,SESCO,II.1.1,Chaco,AR-H,annual,2019,gas oil combustion consumption by to the public,12.573372,TJ,CO2,74100.0,kg/TJ,931686.8652000001,kg +e6b87225-9066-3217-9b8e-d1813a2c1c14,SESCO,II.1.1,Chaco,AR-H,annual,2019,gas oil combustion consumption by to the public,12.573372,TJ,CH4,3.9,kg/TJ,49.0361508,kg +e6b87225-9066-3217-9b8e-d1813a2c1c14,SESCO,II.1.1,Chaco,AR-H,annual,2019,gas oil combustion consumption by to the public,12.573372,TJ,N2O,3.9,kg/TJ,49.0361508,kg +c2c5c11e-5c31-34f2-b32b-86cc5ccb66d2,SESCO,II.1.1,Chubut,AR-U,annual,2019,gas oil combustion consumption by to the public,20.44457016,TJ,CO2,74100.0,kg/TJ,1514942.648856,kg +e0561449-49dd-3126-91d3-1765e29e6d58,SESCO,II.1.1,Chubut,AR-U,annual,2019,gas oil combustion consumption by to the public,20.44457016,TJ,CH4,3.9,kg/TJ,79.73382362400001,kg +e0561449-49dd-3126-91d3-1765e29e6d58,SESCO,II.1.1,Chubut,AR-U,annual,2019,gas oil combustion consumption by to the public,20.44457016,TJ,N2O,3.9,kg/TJ,79.73382362400001,kg +0eccee66-a1af-3cb4-bbd3-a79b1496d2ec,SESCO,II.1.1,Corrientes,AR-W,annual,2019,gas oil combustion consumption by to the public,29.4020412,TJ,CO2,74100.0,kg/TJ,2178691.25292,kg +5e8f84a3-d805-38cb-b6b0-cf37c0174b38,SESCO,II.1.1,Corrientes,AR-W,annual,2019,gas oil combustion consumption by to the public,29.4020412,TJ,CH4,3.9,kg/TJ,114.66796068,kg +5e8f84a3-d805-38cb-b6b0-cf37c0174b38,SESCO,II.1.1,Corrientes,AR-W,annual,2019,gas oil combustion consumption by to the public,29.4020412,TJ,N2O,3.9,kg/TJ,114.66796068,kg +9f11f1c0-8a0b-3466-a543-a8f2e3fcab6e,SESCO,II.1.1,Córdoba,AR-X,annual,2019,gas oil combustion consumption by to the public,113.71800467999999,TJ,CO2,74100.0,kg/TJ,8426504.146788,kg +0c79808a-0ebc-3c83-93bb-4ef57a2d1357,SESCO,II.1.1,Córdoba,AR-X,annual,2019,gas oil combustion consumption by to the public,113.71800467999999,TJ,CH4,3.9,kg/TJ,443.50021825199997,kg +0c79808a-0ebc-3c83-93bb-4ef57a2d1357,SESCO,II.1.1,Córdoba,AR-X,annual,2019,gas oil combustion consumption by to the public,113.71800467999999,TJ,N2O,3.9,kg/TJ,443.50021825199997,kg +7252cac8-1ee8-3b6f-b747-fda6edbd3c76,SESCO,II.1.1,Entre Rios,AR-E,annual,2019,gas oil combustion consumption by to the public,150.34350408,TJ,CO2,74100.0,kg/TJ,11140453.652328,kg +337824cf-23f9-375b-ab08-fc9be6057666,SESCO,II.1.1,Entre Rios,AR-E,annual,2019,gas oil combustion consumption by to the public,150.34350408,TJ,CH4,3.9,kg/TJ,586.339665912,kg +337824cf-23f9-375b-ab08-fc9be6057666,SESCO,II.1.1,Entre Rios,AR-E,annual,2019,gas oil combustion consumption by to the public,150.34350408,TJ,N2O,3.9,kg/TJ,586.339665912,kg +c3624102-84a7-3f5f-9652-6481329d2ba8,SESCO,II.1.1,Formosa,AR-P,annual,2019,gas oil combustion consumption by to the public,1.2234205200000001,TJ,CO2,74100.0,kg/TJ,90655.46053200001,kg +0656dda9-d7fe-3243-9a4d-e85550ad1e9c,SESCO,II.1.1,Formosa,AR-P,annual,2019,gas oil combustion consumption by to the public,1.2234205200000001,TJ,CH4,3.9,kg/TJ,4.771340028,kg +0656dda9-d7fe-3243-9a4d-e85550ad1e9c,SESCO,II.1.1,Formosa,AR-P,annual,2019,gas oil combustion consumption by to the public,1.2234205200000001,TJ,N2O,3.9,kg/TJ,4.771340028,kg +eaa9a629-1657-3c23-9779-472ea099e90f,SESCO,II.1.1,Jujuy,AR-Y,annual,2019,gas oil combustion consumption by to the public,7.800475199999999,TJ,CO2,74100.0,kg/TJ,578015.2123199999,kg +9da5586c-0c91-30c2-befa-fa57d1d999c3,SESCO,II.1.1,Jujuy,AR-Y,annual,2019,gas oil combustion consumption by to the public,7.800475199999999,TJ,CH4,3.9,kg/TJ,30.421853279999997,kg +9da5586c-0c91-30c2-befa-fa57d1d999c3,SESCO,II.1.1,Jujuy,AR-Y,annual,2019,gas oil combustion consumption by to the public,7.800475199999999,TJ,N2O,3.9,kg/TJ,30.421853279999997,kg +fedf8cec-2252-30eb-97b4-4f72382c6ee0,SESCO,II.1.1,La Pampa,AR-L,annual,2019,gas oil combustion consumption by to the public,105.44594676,TJ,CO2,74100.0,kg/TJ,7813544.654916,kg +15a8a7a6-fce5-3b6a-b61c-4215e2f8e8f5,SESCO,II.1.1,La Pampa,AR-L,annual,2019,gas oil combustion consumption by to the public,105.44594676,TJ,CH4,3.9,kg/TJ,411.23919236399996,kg +15a8a7a6-fce5-3b6a-b61c-4215e2f8e8f5,SESCO,II.1.1,La Pampa,AR-L,annual,2019,gas oil combustion consumption by to the public,105.44594676,TJ,N2O,3.9,kg/TJ,411.23919236399996,kg +ccd824c6-1994-3623-bdf3-935e5ecb056f,SESCO,II.1.1,Mendoza,AR-M,annual,2019,gas oil combustion consumption by to the public,17.41970076,TJ,CO2,74100.0,kg/TJ,1290799.8263160002,kg +f185a604-38ba-3d5a-ae6f-d2b78e1a3d32,SESCO,II.1.1,Mendoza,AR-M,annual,2019,gas oil combustion consumption by to the public,17.41970076,TJ,CH4,3.9,kg/TJ,67.936832964,kg +f185a604-38ba-3d5a-ae6f-d2b78e1a3d32,SESCO,II.1.1,Mendoza,AR-M,annual,2019,gas oil combustion consumption by to the public,17.41970076,TJ,N2O,3.9,kg/TJ,67.936832964,kg +2cf23f20-829e-351b-af7b-76c461fdde41,SESCO,II.1.1,Misiones,AR-N,annual,2019,gas oil combustion consumption by to the public,7.19178096,TJ,CO2,74100.0,kg/TJ,532910.969136,kg +648da51b-14f1-3fba-b6ca-9b6670aa5939,SESCO,II.1.1,Misiones,AR-N,annual,2019,gas oil combustion consumption by to the public,7.19178096,TJ,CH4,3.9,kg/TJ,28.047945744,kg +648da51b-14f1-3fba-b6ca-9b6670aa5939,SESCO,II.1.1,Misiones,AR-N,annual,2019,gas oil combustion consumption by to the public,7.19178096,TJ,N2O,3.9,kg/TJ,28.047945744,kg +4e7913bf-ee1e-393a-b036-a90c30a65079,SESCO,II.1.1,Neuquén,AR-Q,annual,2019,gas oil combustion consumption by to the public,205.66020048,TJ,CO2,74100.0,kg/TJ,15239420.855568,kg +c056de62-5d28-3025-945e-dcbdab1a7218,SESCO,II.1.1,Neuquén,AR-Q,annual,2019,gas oil combustion consumption by to the public,205.66020048,TJ,CH4,3.9,kg/TJ,802.0747818719999,kg +c056de62-5d28-3025-945e-dcbdab1a7218,SESCO,II.1.1,Neuquén,AR-Q,annual,2019,gas oil combustion consumption by to the public,205.66020048,TJ,N2O,3.9,kg/TJ,802.0747818719999,kg +e24ce71c-e230-3e29-bcbb-90a453d4c928,SESCO,II.1.1,Rio Negro,AR-R,annual,2019,gas oil combustion consumption by to the public,142.81327872,TJ,CO2,74100.0,kg/TJ,10582463.953151999,kg +e86f9782-7951-3a06-b7c5-8a9a2a7ec2e5,SESCO,II.1.1,Rio Negro,AR-R,annual,2019,gas oil combustion consumption by to the public,142.81327872,TJ,CH4,3.9,kg/TJ,556.971787008,kg +e86f9782-7951-3a06-b7c5-8a9a2a7ec2e5,SESCO,II.1.1,Rio Negro,AR-R,annual,2019,gas oil combustion consumption by to the public,142.81327872,TJ,N2O,3.9,kg/TJ,556.971787008,kg +c7464c9b-2288-3b35-be1c-f2619e6b45eb,SESCO,II.1.1,San Juan,AR-J,annual,2019,gas oil combustion consumption by to the public,21.01140132,TJ,CO2,74100.0,kg/TJ,1556944.837812,kg +a9d48159-77d2-392a-b519-988ff5ed7c63,SESCO,II.1.1,San Juan,AR-J,annual,2019,gas oil combustion consumption by to the public,21.01140132,TJ,CH4,3.9,kg/TJ,81.944465148,kg +a9d48159-77d2-392a-b519-988ff5ed7c63,SESCO,II.1.1,San Juan,AR-J,annual,2019,gas oil combustion consumption by to the public,21.01140132,TJ,N2O,3.9,kg/TJ,81.944465148,kg +bbdc4d11-6358-3443-af4b-e2ed8c9bc875,SESCO,II.1.1,San Luis,AR-D,annual,2019,gas oil combustion consumption by to the public,35.88821796,TJ,CO2,74100.0,kg/TJ,2659316.950836,kg +88248191-f087-3ab4-b33b-836fd20d3b2e,SESCO,II.1.1,San Luis,AR-D,annual,2019,gas oil combustion consumption by to the public,35.88821796,TJ,CH4,3.9,kg/TJ,139.964050044,kg +88248191-f087-3ab4-b33b-836fd20d3b2e,SESCO,II.1.1,San Luis,AR-D,annual,2019,gas oil combustion consumption by to the public,35.88821796,TJ,N2O,3.9,kg/TJ,139.964050044,kg +cbe48e1c-789d-3393-a284-2c54e689f594,SESCO,II.1.1,Santa Fe,AR-S,annual,2019,gas oil combustion consumption by to the public,230.16090216,TJ,CO2,74100.0,kg/TJ,17054922.850056,kg +7e9183cf-d5b8-3cfc-9e6b-010dc957624d,SESCO,II.1.1,Santa Fe,AR-S,annual,2019,gas oil combustion consumption by to the public,230.16090216,TJ,CH4,3.9,kg/TJ,897.627518424,kg +7e9183cf-d5b8-3cfc-9e6b-010dc957624d,SESCO,II.1.1,Santa Fe,AR-S,annual,2019,gas oil combustion consumption by to the public,230.16090216,TJ,N2O,3.9,kg/TJ,897.627518424,kg +b7bbf996-6c09-3e61-a718-fba4f0b21d40,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2019,gas oil combustion consumption by to the public,42.9121854,TJ,CO2,74100.0,kg/TJ,3179792.9381399998,kg +33315a7e-754a-30ff-afa7-d4a2f2bdd1e7,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2019,gas oil combustion consumption by to the public,42.9121854,TJ,CH4,3.9,kg/TJ,167.35752305999998,kg +33315a7e-754a-30ff-afa7-d4a2f2bdd1e7,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2019,gas oil combustion consumption by to the public,42.9121854,TJ,N2O,3.9,kg/TJ,167.35752305999998,kg +a4e817cd-71f6-3499-9639-f9cbb7ac7b1b,SESCO,II.1.1,Tucuman,AR-T,annual,2019,gas oil combustion consumption by to the public,3.24177,TJ,CO2,74100.0,kg/TJ,240215.15699999998,kg +4402198e-a7a3-38cc-bc18-714ae62b3a20,SESCO,II.1.1,Tucuman,AR-T,annual,2019,gas oil combustion consumption by to the public,3.24177,TJ,CH4,3.9,kg/TJ,12.642902999999999,kg +4402198e-a7a3-38cc-bc18-714ae62b3a20,SESCO,II.1.1,Tucuman,AR-T,annual,2019,gas oil combustion consumption by to the public,3.24177,TJ,N2O,3.9,kg/TJ,12.642902999999999,kg +13a0c585-9002-3b28-996f-104e0da302a8,SESCO,I.3.1,Neuquén,AR-Q,annual,2019,gas oil combustion consumption by petrochemical industries,0.65301348,TJ,CO2,74100.0,kg/TJ,48388.298868000005,kg +ae427a51-2003-3d40-9d9c-a6a62f6eee71,SESCO,I.3.1,Neuquén,AR-Q,annual,2019,gas oil combustion consumption by petrochemical industries,0.65301348,TJ,CH4,3.9,kg/TJ,2.546752572,kg +ae427a51-2003-3d40-9d9c-a6a62f6eee71,SESCO,I.3.1,Neuquén,AR-Q,annual,2019,gas oil combustion consumption by petrochemical industries,0.65301348,TJ,N2O,3.9,kg/TJ,2.546752572,kg +8b24dc96-f4c7-33a4-8fca-2be52288cb0f,SESCO,II.1.1,Buenos Aires,AR-B,annual,2019,gas oil combustion consumption by freight transport,18.32793816,TJ,CO2,74100.0,kg/TJ,1358100.2176559998,kg +c3ce5e42-fa1c-3756-8de5-be965e647f9b,SESCO,II.1.1,Buenos Aires,AR-B,annual,2019,gas oil combustion consumption by freight transport,18.32793816,TJ,CH4,3.9,kg/TJ,71.47895882399999,kg +c3ce5e42-fa1c-3756-8de5-be965e647f9b,SESCO,II.1.1,Buenos Aires,AR-B,annual,2019,gas oil combustion consumption by freight transport,18.32793816,TJ,N2O,3.9,kg/TJ,71.47895882399999,kg +1313222e-0736-324f-b75e-035c6a48f233,SESCO,II.1.1,Capital Federal,AR-C,annual,2019,gas oil combustion consumption by freight transport,4.1593624799999995,TJ,CO2,74100.0,kg/TJ,308208.759768,kg +c012747e-ce2a-387e-b557-f3bf6c122559,SESCO,II.1.1,Capital Federal,AR-C,annual,2019,gas oil combustion consumption by freight transport,4.1593624799999995,TJ,CH4,3.9,kg/TJ,16.221513671999997,kg +c012747e-ce2a-387e-b557-f3bf6c122559,SESCO,II.1.1,Capital Federal,AR-C,annual,2019,gas oil combustion consumption by freight transport,4.1593624799999995,TJ,N2O,3.9,kg/TJ,16.221513671999997,kg +7cf82bfc-3339-3b9f-99bd-6796553e0ef2,SESCO,II.1.1,Neuquén,AR-Q,annual,2019,gas oil combustion consumption by freight transport,2.0096806799999998,TJ,CO2,74100.0,kg/TJ,148917.33838799997,kg +dde510aa-be16-33ce-a5b4-47309ac63a9c,SESCO,II.1.1,Neuquén,AR-Q,annual,2019,gas oil combustion consumption by freight transport,2.0096806799999998,TJ,CH4,3.9,kg/TJ,7.837754651999999,kg +dde510aa-be16-33ce-a5b4-47309ac63a9c,SESCO,II.1.1,Neuquén,AR-Q,annual,2019,gas oil combustion consumption by freight transport,2.0096806799999998,TJ,N2O,3.9,kg/TJ,7.837754651999999,kg +f85fddac-8c6b-3581-aa12-0304ec3c66a2,SESCO,II.1.1,Rio Negro,AR-R,annual,2019,gas oil combustion consumption by freight transport,3.86657376,TJ,CO2,74100.0,kg/TJ,286513.115616,kg +78a20eb4-4a87-38f8-9d02-cac08ce0babc,SESCO,II.1.1,Rio Negro,AR-R,annual,2019,gas oil combustion consumption by freight transport,3.86657376,TJ,CH4,3.9,kg/TJ,15.079637664,kg +78a20eb4-4a87-38f8-9d02-cac08ce0babc,SESCO,II.1.1,Rio Negro,AR-R,annual,2019,gas oil combustion consumption by freight transport,3.86657376,TJ,N2O,3.9,kg/TJ,15.079637664,kg +cf2d90f8-9264-30bd-bddd-79f8abde52e8,SESCO,II.1.1,Santa Fe,AR-S,annual,2019,gas oil combustion consumption by freight transport,5.45690124,TJ,CO2,74100.0,kg/TJ,404356.381884,kg +09ef12eb-10f1-3781-befb-8136f649e9c4,SESCO,II.1.1,Santa Fe,AR-S,annual,2019,gas oil combustion consumption by freight transport,5.45690124,TJ,CH4,3.9,kg/TJ,21.281914836,kg +09ef12eb-10f1-3781-befb-8136f649e9c4,SESCO,II.1.1,Santa Fe,AR-S,annual,2019,gas oil combustion consumption by freight transport,5.45690124,TJ,N2O,3.9,kg/TJ,21.281914836,kg +00dc850c-a899-3331-9bb9-0d84c8c2ff80,SESCO,II.1.1,Tucuman,AR-T,annual,2019,gas oil combustion consumption by freight transport,2.31211344,TJ,CO2,74100.0,kg/TJ,171327.605904,kg +8f977460-da87-36d2-ba77-8324a3420c2a,SESCO,II.1.1,Tucuman,AR-T,annual,2019,gas oil combustion consumption by freight transport,2.31211344,TJ,CH4,3.9,kg/TJ,9.017242416,kg +8f977460-da87-36d2-ba77-8324a3420c2a,SESCO,II.1.1,Tucuman,AR-T,annual,2019,gas oil combustion consumption by freight transport,2.31211344,TJ,N2O,3.9,kg/TJ,9.017242416,kg +0aa24835-6b4d-34cc-a158-171e1d19267c,SESCO,II.1.1,Buenos Aires,AR-B,annual,2019,gas oil combustion consumption by freight transport,7.05506676,TJ,CO2,74100.0,kg/TJ,522780.446916,kg +1051e3d7-93e5-3f7f-8ff1-9399020e72ed,SESCO,II.1.1,Buenos Aires,AR-B,annual,2019,gas oil combustion consumption by freight transport,7.05506676,TJ,CH4,3.9,kg/TJ,27.514760363999997,kg +1051e3d7-93e5-3f7f-8ff1-9399020e72ed,SESCO,II.1.1,Buenos Aires,AR-B,annual,2019,gas oil combustion consumption by freight transport,7.05506676,TJ,N2O,3.9,kg/TJ,27.514760363999997,kg +2d5e04a3-da38-32ea-a90d-88c8678aafba,SESCO,II.1.1,Neuquén,AR-Q,annual,2019,gas oil combustion consumption by freight transport,1.91858604,TJ,CO2,74100.0,kg/TJ,142167.22556400002,kg +710f335a-5cb0-3263-8c44-d0686f4b4359,SESCO,II.1.1,Neuquén,AR-Q,annual,2019,gas oil combustion consumption by freight transport,1.91858604,TJ,CH4,3.9,kg/TJ,7.482485556,kg +710f335a-5cb0-3263-8c44-d0686f4b4359,SESCO,II.1.1,Neuquén,AR-Q,annual,2019,gas oil combustion consumption by freight transport,1.91858604,TJ,N2O,3.9,kg/TJ,7.482485556,kg +5d3992e4-342a-3c01-8f60-1af21aaf6f9c,SESCO,II.1.1,Rio Negro,AR-R,annual,2019,gas oil combustion consumption by freight transport,5.02642308,TJ,CO2,74100.0,kg/TJ,372457.950228,kg +d19081ad-384e-3ef7-a5e7-0112a1823d6f,SESCO,II.1.1,Rio Negro,AR-R,annual,2019,gas oil combustion consumption by freight transport,5.02642308,TJ,CH4,3.9,kg/TJ,19.603050011999997,kg +d19081ad-384e-3ef7-a5e7-0112a1823d6f,SESCO,II.1.1,Rio Negro,AR-R,annual,2019,gas oil combustion consumption by freight transport,5.02642308,TJ,N2O,3.9,kg/TJ,19.603050011999997,kg +7ca359ed-767f-37c1-ad95-b9cb9290f40f,SESCO,II.1.1,Santa Fe,AR-S,annual,2019,gas oil combustion consumption by freight transport,1.19633052,TJ,CO2,74100.0,kg/TJ,88648.091532,kg +4291f986-ceca-3811-a8c1-01598242467f,SESCO,II.1.1,Santa Fe,AR-S,annual,2019,gas oil combustion consumption by freight transport,1.19633052,TJ,CH4,3.9,kg/TJ,4.665689028,kg +4291f986-ceca-3811-a8c1-01598242467f,SESCO,II.1.1,Santa Fe,AR-S,annual,2019,gas oil combustion consumption by freight transport,1.19633052,TJ,N2O,3.9,kg/TJ,4.665689028,kg +13cd81c9-2300-3b21-8e0c-e911a942fa63,SESCO,II.1.1,Tucuman,AR-T,annual,2019,gas oil combustion consumption by freight transport,0.47216063999999996,TJ,CO2,74100.0,kg/TJ,34987.103424,kg +51e8c134-d3c8-33f4-8ef4-65e24ed7cb47,SESCO,II.1.1,Tucuman,AR-T,annual,2019,gas oil combustion consumption by freight transport,0.47216063999999996,TJ,CH4,3.9,kg/TJ,1.8414264959999997,kg +51e8c134-d3c8-33f4-8ef4-65e24ed7cb47,SESCO,II.1.1,Tucuman,AR-T,annual,2019,gas oil combustion consumption by freight transport,0.47216063999999996,TJ,N2O,3.9,kg/TJ,1.8414264959999997,kg +2588b552-8195-380e-8674-2c4ad4c97692,SESCO,II.1.1,Buenos Aires,AR-B,annual,2019,gas oil combustion consumption by public passenger transport,32.2266252,TJ,CO2,74100.0,kg/TJ,2387992.9273200002,kg +5e085532-52cd-33d5-a3e0-1e1f1853df99,SESCO,II.1.1,Buenos Aires,AR-B,annual,2019,gas oil combustion consumption by public passenger transport,32.2266252,TJ,CH4,3.9,kg/TJ,125.68383828,kg +5e085532-52cd-33d5-a3e0-1e1f1853df99,SESCO,II.1.1,Buenos Aires,AR-B,annual,2019,gas oil combustion consumption by public passenger transport,32.2266252,TJ,N2O,3.9,kg/TJ,125.68383828,kg +d1cb54c0-6575-3616-bf36-a56f995f2738,SESCO,II.1.1,Capital Federal,AR-C,annual,2019,gas oil combustion consumption by public passenger transport,4.641383879999999,TJ,CO2,74100.0,kg/TJ,343926.54550799995,kg +cb9497e2-17f1-3701-8a0c-82dd412718f9,SESCO,II.1.1,Capital Federal,AR-C,annual,2019,gas oil combustion consumption by public passenger transport,4.641383879999999,TJ,CH4,3.9,kg/TJ,18.101397131999995,kg +cb9497e2-17f1-3701-8a0c-82dd412718f9,SESCO,II.1.1,Capital Federal,AR-C,annual,2019,gas oil combustion consumption by public passenger transport,4.641383879999999,TJ,N2O,3.9,kg/TJ,18.101397131999995,kg +826882c3-59f4-38e5-8d24-89542cce8398,SESCO,II.1.1,Misiones,AR-N,annual,2019,gas oil combustion consumption by public passenger transport,0.61465404,TJ,CO2,74100.0,kg/TJ,45545.864364,kg +47cde35b-51ce-3ace-856e-cc514ab5910b,SESCO,II.1.1,Misiones,AR-N,annual,2019,gas oil combustion consumption by public passenger transport,0.61465404,TJ,CH4,3.9,kg/TJ,2.397150756,kg +47cde35b-51ce-3ace-856e-cc514ab5910b,SESCO,II.1.1,Misiones,AR-N,annual,2019,gas oil combustion consumption by public passenger transport,0.61465404,TJ,N2O,3.9,kg/TJ,2.397150756,kg +e9ac1974-5a7b-368a-a03f-b7300c4a03b4,SESCO,II.1.1,Neuquén,AR-Q,annual,2019,gas oil combustion consumption by public passenger transport,0.71420076,TJ,CO2,74100.0,kg/TJ,52922.276315999996,kg +aa6f7169-d1d5-33c8-a70d-2868a1a3f6eb,SESCO,II.1.1,Neuquén,AR-Q,annual,2019,gas oil combustion consumption by public passenger transport,0.71420076,TJ,CH4,3.9,kg/TJ,2.785382964,kg +aa6f7169-d1d5-33c8-a70d-2868a1a3f6eb,SESCO,II.1.1,Neuquén,AR-Q,annual,2019,gas oil combustion consumption by public passenger transport,0.71420076,TJ,N2O,3.9,kg/TJ,2.785382964,kg +1b3f12c5-f949-3e81-adfb-cf31a1aa3c3a,SESCO,II.1.1,Rio Negro,AR-R,annual,2019,gas oil combustion consumption by public passenger transport,3.0094100399999997,TJ,CO2,74100.0,kg/TJ,222997.28396399997,kg +19439293-96e1-3c11-a5be-e48f8d26c984,SESCO,II.1.1,Rio Negro,AR-R,annual,2019,gas oil combustion consumption by public passenger transport,3.0094100399999997,TJ,CH4,3.9,kg/TJ,11.736699155999998,kg +19439293-96e1-3c11-a5be-e48f8d26c984,SESCO,II.1.1,Rio Negro,AR-R,annual,2019,gas oil combustion consumption by public passenger transport,3.0094100399999997,TJ,N2O,3.9,kg/TJ,11.736699155999998,kg +3cfc7cac-1ee4-3c8d-843d-4e27fd573cce,SESCO,II.1.1,Santa Fe,AR-S,annual,2019,gas oil combustion consumption by public passenger transport,8.070616679999999,TJ,CO2,74100.0,kg/TJ,598032.6959879999,kg +4e83c883-6dee-323c-bd39-48525d53292d,SESCO,II.1.1,Santa Fe,AR-S,annual,2019,gas oil combustion consumption by public passenger transport,8.070616679999999,TJ,CH4,3.9,kg/TJ,31.475405051999996,kg +4e83c883-6dee-323c-bd39-48525d53292d,SESCO,II.1.1,Santa Fe,AR-S,annual,2019,gas oil combustion consumption by public passenger transport,8.070616679999999,TJ,N2O,3.9,kg/TJ,31.475405051999996,kg +9d9fc13c-8888-38e3-95b9-1d66fffecad8,SESCO,II.1.1,Buenos Aires,AR-B,annual,2019,gas oil combustion consumption by public passenger transport,19.0265712,TJ,CO2,74100.0,kg/TJ,1409868.92592,kg +0f5cb65e-108e-3b15-8cb0-94d5e32a1286,SESCO,II.1.1,Buenos Aires,AR-B,annual,2019,gas oil combustion consumption by public passenger transport,19.0265712,TJ,CH4,3.9,kg/TJ,74.20362768,kg +0f5cb65e-108e-3b15-8cb0-94d5e32a1286,SESCO,II.1.1,Buenos Aires,AR-B,annual,2019,gas oil combustion consumption by public passenger transport,19.0265712,TJ,N2O,3.9,kg/TJ,74.20362768,kg +870910fd-e614-3664-8b6f-616774cf392d,SESCO,II.1.1,Córdoba,AR-X,annual,2019,gas oil combustion consumption by public passenger transport,2.3454883200000003,TJ,CO2,74100.0,kg/TJ,173800.68451200004,kg +bb09dbfb-0ef6-35d4-94d7-3b5628869278,SESCO,II.1.1,Córdoba,AR-X,annual,2019,gas oil combustion consumption by public passenger transport,2.3454883200000003,TJ,CH4,3.9,kg/TJ,9.147404448000001,kg +bb09dbfb-0ef6-35d4-94d7-3b5628869278,SESCO,II.1.1,Córdoba,AR-X,annual,2019,gas oil combustion consumption by public passenger transport,2.3454883200000003,TJ,N2O,3.9,kg/TJ,9.147404448000001,kg +a2737738-a4fe-39d0-b506-c6ce46fcb03a,SESCO,II.1.1,Misiones,AR-N,annual,2019,gas oil combustion consumption by public passenger transport,1.9766308799999999,TJ,CO2,74100.0,kg/TJ,146468.34820799998,kg +717dd81f-3b6c-33e4-be4d-bed5d23d6a0f,SESCO,II.1.1,Misiones,AR-N,annual,2019,gas oil combustion consumption by public passenger transport,1.9766308799999999,TJ,CH4,3.9,kg/TJ,7.708860431999999,kg +717dd81f-3b6c-33e4-be4d-bed5d23d6a0f,SESCO,II.1.1,Misiones,AR-N,annual,2019,gas oil combustion consumption by public passenger transport,1.9766308799999999,TJ,N2O,3.9,kg/TJ,7.708860431999999,kg +9b5e5bee-cbdd-3fff-ad8d-79062806b9dd,SESCO,II.1.1,Neuquén,AR-Q,annual,2019,gas oil combustion consumption by public passenger transport,0.57748656,TJ,CO2,74100.0,kg/TJ,42791.754096,kg +cf9f3c43-7fc3-3461-a9c6-b281ac76910d,SESCO,II.1.1,Neuquén,AR-Q,annual,2019,gas oil combustion consumption by public passenger transport,0.57748656,TJ,CH4,3.9,kg/TJ,2.2521975839999997,kg +cf9f3c43-7fc3-3461-a9c6-b281ac76910d,SESCO,II.1.1,Neuquén,AR-Q,annual,2019,gas oil combustion consumption by public passenger transport,0.57748656,TJ,N2O,3.9,kg/TJ,2.2521975839999997,kg +bfcfe088-5db0-389d-91f5-93e420663942,SESCO,II.1.1,Rio Negro,AR-R,annual,2019,gas oil combustion consumption by public passenger transport,10.73598372,TJ,CO2,74100.0,kg/TJ,795536.393652,kg +f39d12b2-3fc7-394a-9408-313b3a29bd77,SESCO,II.1.1,Rio Negro,AR-R,annual,2019,gas oil combustion consumption by public passenger transport,10.73598372,TJ,CH4,3.9,kg/TJ,41.870336508,kg +f39d12b2-3fc7-394a-9408-313b3a29bd77,SESCO,II.1.1,Rio Negro,AR-R,annual,2019,gas oil combustion consumption by public passenger transport,10.73598372,TJ,N2O,3.9,kg/TJ,41.870336508,kg +9386d7e5-ce57-308b-8e2e-6e5c1f340a2a,SESCO,II.1.1,Santa Fe,AR-S,annual,2019,gas oil combustion consumption by public passenger transport,1.26264684,TJ,CO2,74100.0,kg/TJ,93562.130844,kg +e11fe348-bcf5-3250-97e3-147a0cc20443,SESCO,II.1.1,Santa Fe,AR-S,annual,2019,gas oil combustion consumption by public passenger transport,1.26264684,TJ,CH4,3.9,kg/TJ,4.924322676,kg +e11fe348-bcf5-3250-97e3-147a0cc20443,SESCO,II.1.1,Santa Fe,AR-S,annual,2019,gas oil combustion consumption by public passenger transport,1.26264684,TJ,N2O,3.9,kg/TJ,4.924322676,kg +1918616b-dde7-346a-a1dd-38f45320e7fa,SESCO,II.5.1,Buenos Aires,AR-B,annual,2019,gas oil combustion consumption by agriculture machines,8651.20956,TJ,CO2,74100.0,kg/TJ,641054628.3959999,kg +0f1857cc-587c-308b-bc6d-f22c0871584c,SESCO,II.5.1,Buenos Aires,AR-B,annual,2019,gas oil combustion consumption by agriculture machines,8651.20956,TJ,CH4,3.9,kg/TJ,33739.717284,kg +0f1857cc-587c-308b-bc6d-f22c0871584c,SESCO,II.5.1,Buenos Aires,AR-B,annual,2019,gas oil combustion consumption by agriculture machines,8651.20956,TJ,N2O,3.9,kg/TJ,33739.717284,kg +5354b64a-e011-3b02-9d05-2a56bb74ee8f,SESCO,II.5.1,Capital Federal,AR-C,annual,2019,gas oil combustion consumption by agriculture machines,265.98768,TJ,CO2,74100.0,kg/TJ,19709687.088,kg +88cad355-1057-3816-bda5-4273859d700c,SESCO,II.5.1,Capital Federal,AR-C,annual,2019,gas oil combustion consumption by agriculture machines,265.98768,TJ,CH4,3.9,kg/TJ,1037.351952,kg +88cad355-1057-3816-bda5-4273859d700c,SESCO,II.5.1,Capital Federal,AR-C,annual,2019,gas oil combustion consumption by agriculture machines,265.98768,TJ,N2O,3.9,kg/TJ,1037.351952,kg +f5fd2d5f-1dad-3374-b2a1-1ec5d6d0e8bd,SESCO,II.5.1,Catamarca,AR-K,annual,2019,gas oil combustion consumption by agriculture machines,201.29676,TJ,CO2,74100.0,kg/TJ,14916089.916000001,kg +220dd60d-e070-3437-a6c6-6988cc55e5ab,SESCO,II.5.1,Catamarca,AR-K,annual,2019,gas oil combustion consumption by agriculture machines,201.29676,TJ,CH4,3.9,kg/TJ,785.057364,kg +220dd60d-e070-3437-a6c6-6988cc55e5ab,SESCO,II.5.1,Catamarca,AR-K,annual,2019,gas oil combustion consumption by agriculture machines,201.29676,TJ,N2O,3.9,kg/TJ,785.057364,kg +747fc2b2-fb2f-3e08-a978-32ddd00cb379,SESCO,II.5.1,Chaco,AR-H,annual,2019,gas oil combustion consumption by agriculture machines,1043.3262,TJ,CO2,74100.0,kg/TJ,77310471.42,kg +e81cd35d-9be7-317f-a1cd-4e4d50bd928f,SESCO,II.5.1,Chaco,AR-H,annual,2019,gas oil combustion consumption by agriculture machines,1043.3262,TJ,CH4,3.9,kg/TJ,4068.9721799999998,kg +e81cd35d-9be7-317f-a1cd-4e4d50bd928f,SESCO,II.5.1,Chaco,AR-H,annual,2019,gas oil combustion consumption by agriculture machines,1043.3262,TJ,N2O,3.9,kg/TJ,4068.9721799999998,kg +b658273a-b701-395c-ba27-e1b6c46f2106,SESCO,II.5.1,Corrientes,AR-W,annual,2019,gas oil combustion consumption by agriculture machines,499.46736,TJ,CO2,74100.0,kg/TJ,37010531.376,kg +43d5b4ba-47b5-3c84-9fcb-43e10a8d873e,SESCO,II.5.1,Corrientes,AR-W,annual,2019,gas oil combustion consumption by agriculture machines,499.46736,TJ,CH4,3.9,kg/TJ,1947.9227039999998,kg +43d5b4ba-47b5-3c84-9fcb-43e10a8d873e,SESCO,II.5.1,Corrientes,AR-W,annual,2019,gas oil combustion consumption by agriculture machines,499.46736,TJ,N2O,3.9,kg/TJ,1947.9227039999998,kg +8146da84-3672-3930-be22-17c0534c4786,SESCO,II.5.1,Córdoba,AR-X,annual,2019,gas oil combustion consumption by agriculture machines,7613.59032,TJ,CO2,74100.0,kg/TJ,564167042.712,kg +57f52a61-8214-379a-9538-af44f7a6731c,SESCO,II.5.1,Córdoba,AR-X,annual,2019,gas oil combustion consumption by agriculture machines,7613.59032,TJ,CH4,3.9,kg/TJ,29693.002248,kg +57f52a61-8214-379a-9538-af44f7a6731c,SESCO,II.5.1,Córdoba,AR-X,annual,2019,gas oil combustion consumption by agriculture machines,7613.59032,TJ,N2O,3.9,kg/TJ,29693.002248,kg +5d445cbb-ef85-337d-bfc8-57c139e9d09b,SESCO,II.5.1,Entre Rios,AR-E,annual,2019,gas oil combustion consumption by agriculture machines,1888.28136,TJ,CO2,74100.0,kg/TJ,139921648.776,kg +1e0eb7cd-6196-3cdf-a245-43ba67c4efac,SESCO,II.5.1,Entre Rios,AR-E,annual,2019,gas oil combustion consumption by agriculture machines,1888.28136,TJ,CH4,3.9,kg/TJ,7364.297304,kg +1e0eb7cd-6196-3cdf-a245-43ba67c4efac,SESCO,II.5.1,Entre Rios,AR-E,annual,2019,gas oil combustion consumption by agriculture machines,1888.28136,TJ,N2O,3.9,kg/TJ,7364.297304,kg +632e8bdc-33e6-30e6-bd14-db4fc319f840,SESCO,II.5.1,Formosa,AR-P,annual,2019,gas oil combustion consumption by agriculture machines,240.41472,TJ,CO2,74100.0,kg/TJ,17814730.752,kg +f9eef900-2732-3ec8-89b6-0c0ed10ab307,SESCO,II.5.1,Formosa,AR-P,annual,2019,gas oil combustion consumption by agriculture machines,240.41472,TJ,CH4,3.9,kg/TJ,937.617408,kg +f9eef900-2732-3ec8-89b6-0c0ed10ab307,SESCO,II.5.1,Formosa,AR-P,annual,2019,gas oil combustion consumption by agriculture machines,240.41472,TJ,N2O,3.9,kg/TJ,937.617408,kg +8fb99443-13cf-342f-a9ff-be93ddf6730e,SESCO,II.5.1,Jujuy,AR-Y,annual,2019,gas oil combustion consumption by agriculture machines,586.4082,TJ,CO2,74100.0,kg/TJ,43452847.62,kg +623dcc0e-921d-3a6a-b12b-76877d47db6c,SESCO,II.5.1,Jujuy,AR-Y,annual,2019,gas oil combustion consumption by agriculture machines,586.4082,TJ,CH4,3.9,kg/TJ,2286.99198,kg +623dcc0e-921d-3a6a-b12b-76877d47db6c,SESCO,II.5.1,Jujuy,AR-Y,annual,2019,gas oil combustion consumption by agriculture machines,586.4082,TJ,N2O,3.9,kg/TJ,2286.99198,kg +4baf1cfd-35f2-3308-8068-c8eba3c84f3b,SESCO,II.5.1,La Pampa,AR-L,annual,2019,gas oil combustion consumption by agriculture machines,1603.07784,TJ,CO2,74100.0,kg/TJ,118788067.94399999,kg +312ec46a-d34b-326d-95c3-870e22a07b9c,SESCO,II.5.1,La Pampa,AR-L,annual,2019,gas oil combustion consumption by agriculture machines,1603.07784,TJ,CH4,3.9,kg/TJ,6252.003575999999,kg +312ec46a-d34b-326d-95c3-870e22a07b9c,SESCO,II.5.1,La Pampa,AR-L,annual,2019,gas oil combustion consumption by agriculture machines,1603.07784,TJ,N2O,3.9,kg/TJ,6252.003575999999,kg +9a9374f4-3b99-3230-98a3-fef24b7b0c2a,SESCO,II.5.1,La Rioja,AR-F,annual,2019,gas oil combustion consumption by agriculture machines,132.48816,TJ,CO2,74100.0,kg/TJ,9817372.656,kg +ad4135ee-55d7-3b85-8ca3-457f64b61779,SESCO,II.5.1,La Rioja,AR-F,annual,2019,gas oil combustion consumption by agriculture machines,132.48816,TJ,CH4,3.9,kg/TJ,516.7038239999999,kg +ad4135ee-55d7-3b85-8ca3-457f64b61779,SESCO,II.5.1,La Rioja,AR-F,annual,2019,gas oil combustion consumption by agriculture machines,132.48816,TJ,N2O,3.9,kg/TJ,516.7038239999999,kg +eca5b231-8ff3-35f1-b524-00ed811c64fb,SESCO,II.5.1,Mendoza,AR-M,annual,2019,gas oil combustion consumption by agriculture machines,2022.6116399999999,TJ,CO2,74100.0,kg/TJ,149875522.524,kg +9d18051c-bca1-3be8-afed-c7bcef52fe80,SESCO,II.5.1,Mendoza,AR-M,annual,2019,gas oil combustion consumption by agriculture machines,2022.6116399999999,TJ,CH4,3.9,kg/TJ,7888.185395999999,kg +9d18051c-bca1-3be8-afed-c7bcef52fe80,SESCO,II.5.1,Mendoza,AR-M,annual,2019,gas oil combustion consumption by agriculture machines,2022.6116399999999,TJ,N2O,3.9,kg/TJ,7888.185395999999,kg +f8099db1-e300-3ed1-b7af-48a1a13f6778,SESCO,II.5.1,Misiones,AR-N,annual,2019,gas oil combustion consumption by agriculture machines,1063.58952,TJ,CO2,74100.0,kg/TJ,78811983.432,kg +2a086791-9f7f-3f81-9b6f-c7dece386855,SESCO,II.5.1,Misiones,AR-N,annual,2019,gas oil combustion consumption by agriculture machines,1063.58952,TJ,CH4,3.9,kg/TJ,4147.9991279999995,kg +2a086791-9f7f-3f81-9b6f-c7dece386855,SESCO,II.5.1,Misiones,AR-N,annual,2019,gas oil combustion consumption by agriculture machines,1063.58952,TJ,N2O,3.9,kg/TJ,4147.9991279999995,kg +1c3d2384-4642-385c-8285-47414363bae2,SESCO,II.5.1,Rio Negro,AR-R,annual,2019,gas oil combustion consumption by agriculture machines,212.85515999999998,TJ,CO2,74100.0,kg/TJ,15772567.355999999,kg +22b4d8d7-5161-32c6-9892-35d7ee8dde10,SESCO,II.5.1,Rio Negro,AR-R,annual,2019,gas oil combustion consumption by agriculture machines,212.85515999999998,TJ,CH4,3.9,kg/TJ,830.1351239999999,kg +22b4d8d7-5161-32c6-9892-35d7ee8dde10,SESCO,II.5.1,Rio Negro,AR-R,annual,2019,gas oil combustion consumption by agriculture machines,212.85515999999998,TJ,N2O,3.9,kg/TJ,830.1351239999999,kg +162f43cb-5334-3681-a513-189571a4e215,SESCO,II.5.1,Salta,AR-A,annual,2019,gas oil combustion consumption by agriculture machines,1617.92316,TJ,CO2,74100.0,kg/TJ,119888106.156,kg +0838d0ff-5e42-340b-a9b4-7061ae80c468,SESCO,II.5.1,Salta,AR-A,annual,2019,gas oil combustion consumption by agriculture machines,1617.92316,TJ,CH4,3.9,kg/TJ,6309.900324,kg +0838d0ff-5e42-340b-a9b4-7061ae80c468,SESCO,II.5.1,Salta,AR-A,annual,2019,gas oil combustion consumption by agriculture machines,1617.92316,TJ,N2O,3.9,kg/TJ,6309.900324,kg +d91e9969-3a7b-3f30-8092-d50d860f604e,SESCO,II.5.1,San Juan,AR-J,annual,2019,gas oil combustion consumption by agriculture machines,583.22964,TJ,CO2,74100.0,kg/TJ,43217316.324,kg +233f05be-3732-3016-bda5-f07658ab00e5,SESCO,II.5.1,San Juan,AR-J,annual,2019,gas oil combustion consumption by agriculture machines,583.22964,TJ,CH4,3.9,kg/TJ,2274.595596,kg +233f05be-3732-3016-bda5-f07658ab00e5,SESCO,II.5.1,San Juan,AR-J,annual,2019,gas oil combustion consumption by agriculture machines,583.22964,TJ,N2O,3.9,kg/TJ,2274.595596,kg +4095e60d-9e01-3841-93f2-6d426c3971d1,SESCO,II.5.1,San Luis,AR-D,annual,2019,gas oil combustion consumption by agriculture machines,388.32612,TJ,CO2,74100.0,kg/TJ,28774965.492,kg +2de3f7e8-1db7-30bb-bee4-16c61e5a30d0,SESCO,II.5.1,San Luis,AR-D,annual,2019,gas oil combustion consumption by agriculture machines,388.32612,TJ,CH4,3.9,kg/TJ,1514.471868,kg +2de3f7e8-1db7-30bb-bee4-16c61e5a30d0,SESCO,II.5.1,San Luis,AR-D,annual,2019,gas oil combustion consumption by agriculture machines,388.32612,TJ,N2O,3.9,kg/TJ,1514.471868,kg +cfabf44b-ebb6-3925-a91b-53197306221d,SESCO,II.5.1,Santa Fe,AR-S,annual,2019,gas oil combustion consumption by agriculture machines,6961.0102799999995,TJ,CO2,74100.0,kg/TJ,515810861.74799997,kg +0be64889-426a-3130-bf14-dad7db5d10a1,SESCO,II.5.1,Santa Fe,AR-S,annual,2019,gas oil combustion consumption by agriculture machines,6961.0102799999995,TJ,CH4,3.9,kg/TJ,27147.940091999997,kg +0be64889-426a-3130-bf14-dad7db5d10a1,SESCO,II.5.1,Santa Fe,AR-S,annual,2019,gas oil combustion consumption by agriculture machines,6961.0102799999995,TJ,N2O,3.9,kg/TJ,27147.940091999997,kg +993dc037-85e5-3d08-873a-0eb7ad4a327f,SESCO,II.5.1,Santiago del Estero,AR-G,annual,2019,gas oil combustion consumption by agriculture machines,1817.08884,TJ,CO2,74100.0,kg/TJ,134646283.044,kg +45b0d4f4-4ac8-38af-9c2a-c915734af6be,SESCO,II.5.1,Santiago del Estero,AR-G,annual,2019,gas oil combustion consumption by agriculture machines,1817.08884,TJ,CH4,3.9,kg/TJ,7086.646475999999,kg +45b0d4f4-4ac8-38af-9c2a-c915734af6be,SESCO,II.5.1,Santiago del Estero,AR-G,annual,2019,gas oil combustion consumption by agriculture machines,1817.08884,TJ,N2O,3.9,kg/TJ,7086.646475999999,kg +efd6a92d-6c2c-3b85-a0cc-0e4d67e206d4,SESCO,II.5.1,Tucuman,AR-T,annual,2019,gas oil combustion consumption by agriculture machines,1061.13336,TJ,CO2,74100.0,kg/TJ,78629981.976,kg +2c19dba0-0203-3147-9f72-12dda9d4cdaf,SESCO,II.5.1,Tucuman,AR-T,annual,2019,gas oil combustion consumption by agriculture machines,1061.13336,TJ,CH4,3.9,kg/TJ,4138.420104,kg +2c19dba0-0203-3147-9f72-12dda9d4cdaf,SESCO,II.5.1,Tucuman,AR-T,annual,2019,gas oil combustion consumption by agriculture machines,1061.13336,TJ,N2O,3.9,kg/TJ,4138.420104,kg +7c406654-8a3d-3078-ae32-6f8d09fe7349,SESCO,II.5.1,Buenos Aires,AR-B,annual,2019,gas oil combustion consumption by agriculture machines,627.62112,TJ,CO2,74100.0,kg/TJ,46506724.992,kg +7e53c6e2-488a-33d9-a433-42a514bfbbe7,SESCO,II.5.1,Buenos Aires,AR-B,annual,2019,gas oil combustion consumption by agriculture machines,627.62112,TJ,CH4,3.9,kg/TJ,2447.722368,kg +7e53c6e2-488a-33d9-a433-42a514bfbbe7,SESCO,II.5.1,Buenos Aires,AR-B,annual,2019,gas oil combustion consumption by agriculture machines,627.62112,TJ,N2O,3.9,kg/TJ,2447.722368,kg +4b7df076-85f9-38cf-91af-92b980da1b92,SESCO,II.5.1,Capital Federal,AR-C,annual,2019,gas oil combustion consumption by agriculture machines,3.72036,TJ,CO2,74100.0,kg/TJ,275678.676,kg +e162d133-7c9d-3f7d-8e13-445b383c1047,SESCO,II.5.1,Capital Federal,AR-C,annual,2019,gas oil combustion consumption by agriculture machines,3.72036,TJ,CH4,3.9,kg/TJ,14.509404,kg +e162d133-7c9d-3f7d-8e13-445b383c1047,SESCO,II.5.1,Capital Federal,AR-C,annual,2019,gas oil combustion consumption by agriculture machines,3.72036,TJ,N2O,3.9,kg/TJ,14.509404,kg +7fdbff2b-2ca3-35c6-a643-145a24ca0213,SESCO,II.5.1,Catamarca,AR-K,annual,2019,gas oil combustion consumption by agriculture machines,20.48004,TJ,CO2,74100.0,kg/TJ,1517570.964,kg +86af5e03-58a3-3bad-b397-7e783ff4b308,SESCO,II.5.1,Catamarca,AR-K,annual,2019,gas oil combustion consumption by agriculture machines,20.48004,TJ,CH4,3.9,kg/TJ,79.87215599999999,kg +86af5e03-58a3-3bad-b397-7e783ff4b308,SESCO,II.5.1,Catamarca,AR-K,annual,2019,gas oil combustion consumption by agriculture machines,20.48004,TJ,N2O,3.9,kg/TJ,79.87215599999999,kg +31d8f175-3f9c-3dc0-9645-d5002582ef51,SESCO,II.5.1,Chaco,AR-H,annual,2019,gas oil combustion consumption by agriculture machines,74.2266,TJ,CO2,74100.0,kg/TJ,5500191.0600000005,kg +f1cb2b6b-a103-3861-a80e-ed01d4d40892,SESCO,II.5.1,Chaco,AR-H,annual,2019,gas oil combustion consumption by agriculture machines,74.2266,TJ,CH4,3.9,kg/TJ,289.48374,kg +f1cb2b6b-a103-3861-a80e-ed01d4d40892,SESCO,II.5.1,Chaco,AR-H,annual,2019,gas oil combustion consumption by agriculture machines,74.2266,TJ,N2O,3.9,kg/TJ,289.48374,kg +516f3a17-a4cd-3b8f-9467-6df247a2068a,SESCO,II.5.1,Corrientes,AR-W,annual,2019,gas oil combustion consumption by agriculture machines,34.89192,TJ,CO2,74100.0,kg/TJ,2585491.272,kg +aa2b233b-5479-3f2b-b5e8-d4f849f75576,SESCO,II.5.1,Corrientes,AR-W,annual,2019,gas oil combustion consumption by agriculture machines,34.89192,TJ,CH4,3.9,kg/TJ,136.078488,kg +aa2b233b-5479-3f2b-b5e8-d4f849f75576,SESCO,II.5.1,Corrientes,AR-W,annual,2019,gas oil combustion consumption by agriculture machines,34.89192,TJ,N2O,3.9,kg/TJ,136.078488,kg +5839820b-bcd8-33e3-91d9-4503d7205718,SESCO,II.5.1,Córdoba,AR-X,annual,2019,gas oil combustion consumption by agriculture machines,452.5836,TJ,CO2,74100.0,kg/TJ,33536444.759999998,kg +304aabb4-ed20-35d9-bfc2-943eadc07439,SESCO,II.5.1,Córdoba,AR-X,annual,2019,gas oil combustion consumption by agriculture machines,452.5836,TJ,CH4,3.9,kg/TJ,1765.07604,kg +304aabb4-ed20-35d9-bfc2-943eadc07439,SESCO,II.5.1,Córdoba,AR-X,annual,2019,gas oil combustion consumption by agriculture machines,452.5836,TJ,N2O,3.9,kg/TJ,1765.07604,kg +73d19a93-2c29-3295-b14a-f0346404c83d,SESCO,II.5.1,Entre Rios,AR-E,annual,2019,gas oil combustion consumption by agriculture machines,38.17884,TJ,CO2,74100.0,kg/TJ,2829052.044,kg +497eef85-a8bb-34d6-9077-083a2b3d6547,SESCO,II.5.1,Entre Rios,AR-E,annual,2019,gas oil combustion consumption by agriculture machines,38.17884,TJ,CH4,3.9,kg/TJ,148.897476,kg +497eef85-a8bb-34d6-9077-083a2b3d6547,SESCO,II.5.1,Entre Rios,AR-E,annual,2019,gas oil combustion consumption by agriculture machines,38.17884,TJ,N2O,3.9,kg/TJ,148.897476,kg +cd44232e-abf8-31cb-850b-00e476c1fc4f,SESCO,II.5.1,Formosa,AR-P,annual,2019,gas oil combustion consumption by agriculture machines,17.62656,TJ,CO2,74100.0,kg/TJ,1306128.0960000001,kg +21dea66b-8d48-3b92-a245-6a1d7d3d5dba,SESCO,II.5.1,Formosa,AR-P,annual,2019,gas oil combustion consumption by agriculture machines,17.62656,TJ,CH4,3.9,kg/TJ,68.743584,kg +21dea66b-8d48-3b92-a245-6a1d7d3d5dba,SESCO,II.5.1,Formosa,AR-P,annual,2019,gas oil combustion consumption by agriculture machines,17.62656,TJ,N2O,3.9,kg/TJ,68.743584,kg +ad4c02e9-92b4-3a21-bab4-a80fe9ff5935,SESCO,II.5.1,Jujuy,AR-Y,annual,2019,gas oil combustion consumption by agriculture machines,90.44448,TJ,CO2,74100.0,kg/TJ,6701935.968,kg +4f838bb8-2287-35ea-9b92-d88ddb432ad5,SESCO,II.5.1,Jujuy,AR-Y,annual,2019,gas oil combustion consumption by agriculture machines,90.44448,TJ,CH4,3.9,kg/TJ,352.733472,kg +4f838bb8-2287-35ea-9b92-d88ddb432ad5,SESCO,II.5.1,Jujuy,AR-Y,annual,2019,gas oil combustion consumption by agriculture machines,90.44448,TJ,N2O,3.9,kg/TJ,352.733472,kg +c823c75b-7a50-3877-9bb5-47da37cc7785,SESCO,II.5.1,La Pampa,AR-L,annual,2019,gas oil combustion consumption by agriculture machines,136.28076,TJ,CO2,74100.0,kg/TJ,10098404.316,kg +0317e3bb-186d-3bbf-8298-2ec4173f5d7b,SESCO,II.5.1,La Pampa,AR-L,annual,2019,gas oil combustion consumption by agriculture machines,136.28076,TJ,CH4,3.9,kg/TJ,531.494964,kg +0317e3bb-186d-3bbf-8298-2ec4173f5d7b,SESCO,II.5.1,La Pampa,AR-L,annual,2019,gas oil combustion consumption by agriculture machines,136.28076,TJ,N2O,3.9,kg/TJ,531.494964,kg +2def77de-d827-3a91-8c7b-01781a339f64,SESCO,II.5.1,Mendoza,AR-M,annual,2019,gas oil combustion consumption by agriculture machines,422.64011999999997,TJ,CO2,74100.0,kg/TJ,31317632.891999997,kg +bd2772c8-a006-380f-b692-0c00ed977522,SESCO,II.5.1,Mendoza,AR-M,annual,2019,gas oil combustion consumption by agriculture machines,422.64011999999997,TJ,CH4,3.9,kg/TJ,1648.2964679999998,kg +bd2772c8-a006-380f-b692-0c00ed977522,SESCO,II.5.1,Mendoza,AR-M,annual,2019,gas oil combustion consumption by agriculture machines,422.64011999999997,TJ,N2O,3.9,kg/TJ,1648.2964679999998,kg +a1d91659-b6d7-3a49-a507-fd9dc4263c6b,SESCO,II.5.1,Misiones,AR-N,annual,2019,gas oil combustion consumption by agriculture machines,105.86771999999999,TJ,CO2,74100.0,kg/TJ,7844798.051999999,kg +c941d19d-07f1-3e27-8c1c-f84927eb5c95,SESCO,II.5.1,Misiones,AR-N,annual,2019,gas oil combustion consumption by agriculture machines,105.86771999999999,TJ,CH4,3.9,kg/TJ,412.88410799999997,kg +c941d19d-07f1-3e27-8c1c-f84927eb5c95,SESCO,II.5.1,Misiones,AR-N,annual,2019,gas oil combustion consumption by agriculture machines,105.86771999999999,TJ,N2O,3.9,kg/TJ,412.88410799999997,kg +4b182174-d83b-3641-afb9-f736d0863df5,SESCO,II.5.1,Rio Negro,AR-R,annual,2019,gas oil combustion consumption by agriculture machines,45.583439999999996,TJ,CO2,74100.0,kg/TJ,3377732.9039999996,kg +88550b19-e6ed-36ec-8a17-bf280dacfced,SESCO,II.5.1,Rio Negro,AR-R,annual,2019,gas oil combustion consumption by agriculture machines,45.583439999999996,TJ,CH4,3.9,kg/TJ,177.77541599999998,kg +88550b19-e6ed-36ec-8a17-bf280dacfced,SESCO,II.5.1,Rio Negro,AR-R,annual,2019,gas oil combustion consumption by agriculture machines,45.583439999999996,TJ,N2O,3.9,kg/TJ,177.77541599999998,kg +928745e1-ce4e-3135-8551-9e259500be4e,SESCO,II.5.1,Salta,AR-A,annual,2019,gas oil combustion consumption by agriculture machines,180.70836,TJ,CO2,74100.0,kg/TJ,13390489.476,kg +27b0b13c-cdd5-37a9-b73f-4cd5f38eaee4,SESCO,II.5.1,Salta,AR-A,annual,2019,gas oil combustion consumption by agriculture machines,180.70836,TJ,CH4,3.9,kg/TJ,704.762604,kg +27b0b13c-cdd5-37a9-b73f-4cd5f38eaee4,SESCO,II.5.1,Salta,AR-A,annual,2019,gas oil combustion consumption by agriculture machines,180.70836,TJ,N2O,3.9,kg/TJ,704.762604,kg +7f193878-0fdd-3438-84a6-72c2014ce72e,SESCO,II.5.1,San Juan,AR-J,annual,2019,gas oil combustion consumption by agriculture machines,116.77596,TJ,CO2,74100.0,kg/TJ,8653098.636,kg +bd06e004-ba43-38c8-91cd-ea092d3b8f92,SESCO,II.5.1,San Juan,AR-J,annual,2019,gas oil combustion consumption by agriculture machines,116.77596,TJ,CH4,3.9,kg/TJ,455.426244,kg +bd06e004-ba43-38c8-91cd-ea092d3b8f92,SESCO,II.5.1,San Juan,AR-J,annual,2019,gas oil combustion consumption by agriculture machines,116.77596,TJ,N2O,3.9,kg/TJ,455.426244,kg +507c71f5-fa87-30ff-83c4-8f5eb7a3e101,SESCO,II.5.1,San Luis,AR-D,annual,2019,gas oil combustion consumption by agriculture machines,40.88784,TJ,CO2,74100.0,kg/TJ,3029788.9439999997,kg +32444d93-32cb-3be5-937d-2d64454de4f0,SESCO,II.5.1,San Luis,AR-D,annual,2019,gas oil combustion consumption by agriculture machines,40.88784,TJ,CH4,3.9,kg/TJ,159.46257599999998,kg +32444d93-32cb-3be5-937d-2d64454de4f0,SESCO,II.5.1,San Luis,AR-D,annual,2019,gas oil combustion consumption by agriculture machines,40.88784,TJ,N2O,3.9,kg/TJ,159.46257599999998,kg +0e2d9bfa-c814-35ae-aaf3-e3a805ffaba4,SESCO,II.5.1,Santa Fe,AR-S,annual,2019,gas oil combustion consumption by agriculture machines,395.94744,TJ,CO2,74100.0,kg/TJ,29339705.303999998,kg +b5b0784b-5664-346b-8623-f1d06d80afef,SESCO,II.5.1,Santa Fe,AR-S,annual,2019,gas oil combustion consumption by agriculture machines,395.94744,TJ,CH4,3.9,kg/TJ,1544.195016,kg +b5b0784b-5664-346b-8623-f1d06d80afef,SESCO,II.5.1,Santa Fe,AR-S,annual,2019,gas oil combustion consumption by agriculture machines,395.94744,TJ,N2O,3.9,kg/TJ,1544.195016,kg +f25c682e-49b0-3012-83e6-740c510efd58,SESCO,II.5.1,Santiago del Estero,AR-G,annual,2019,gas oil combustion consumption by agriculture machines,107.60148,TJ,CO2,74100.0,kg/TJ,7973269.668,kg +6ced76c4-f2d2-3fb4-b34b-b345490412ef,SESCO,II.5.1,Santiago del Estero,AR-G,annual,2019,gas oil combustion consumption by agriculture machines,107.60148,TJ,CH4,3.9,kg/TJ,419.64577199999997,kg +6ced76c4-f2d2-3fb4-b34b-b345490412ef,SESCO,II.5.1,Santiago del Estero,AR-G,annual,2019,gas oil combustion consumption by agriculture machines,107.60148,TJ,N2O,3.9,kg/TJ,419.64577199999997,kg +4663c7a7-2418-397d-ad79-b181c88f9a92,SESCO,II.5.1,Tucuman,AR-T,annual,2019,gas oil combustion consumption by agriculture machines,140.25396,TJ,CO2,74100.0,kg/TJ,10392818.436,kg +a828bdea-69ac-3e93-874a-32ea41db91d2,SESCO,II.5.1,Tucuman,AR-T,annual,2019,gas oil combustion consumption by agriculture machines,140.25396,TJ,CH4,3.9,kg/TJ,546.990444,kg +a828bdea-69ac-3e93-874a-32ea41db91d2,SESCO,II.5.1,Tucuman,AR-T,annual,2019,gas oil combustion consumption by agriculture machines,140.25396,TJ,N2O,3.9,kg/TJ,546.990444,kg +9f8b99e0-ddd2-3b0c-9f91-26e7dd3427ed,SESCO,II.5.1,Buenos Aires,AR-B,annual,2019,jet kerosene combustion consumption by agriculture machines,3.3969239999999994,TJ,CO2,71500.0,kg/TJ,242880.06599999996,kg +93ab0312-adfe-302c-8417-53b80290b4bc,SESCO,II.5.1,Buenos Aires,AR-B,annual,2019,jet kerosene combustion consumption by agriculture machines,3.3969239999999994,TJ,CH4,0.5,kg/TJ,1.6984619999999997,kg +0e5d1936-47e1-3ec4-a56e-13622f889997,SESCO,II.5.1,Buenos Aires,AR-B,annual,2019,jet kerosene combustion consumption by agriculture machines,3.3969239999999994,TJ,N2O,2.0,kg/TJ,6.793847999999999,kg +5a9ffcf1-b91f-36e8-89f1-3fb0028a1a19,SESCO,II.5.1,La Pampa,AR-L,annual,2019,jet kerosene combustion consumption by agriculture machines,0.25162399999999996,TJ,CO2,71500.0,kg/TJ,17991.115999999998,kg +9410b4d8-6c4a-3e6a-9be6-be1260d0e734,SESCO,II.5.1,La Pampa,AR-L,annual,2019,jet kerosene combustion consumption by agriculture machines,0.25162399999999996,TJ,CH4,0.5,kg/TJ,0.12581199999999998,kg +92c7eb1e-9101-3896-a91f-7fea236f6ab3,SESCO,II.5.1,La Pampa,AR-L,annual,2019,jet kerosene combustion consumption by agriculture machines,0.25162399999999996,TJ,N2O,2.0,kg/TJ,0.5032479999999999,kg +7611ed35-d2b6-3d56-a761-5cbcb7761925,SESCO,II.5.1,Rio Negro,AR-R,annual,2019,jet kerosene combustion consumption by agriculture machines,0.157265,TJ,CO2,71500.0,kg/TJ,11244.447499999998,kg +ffbd7c2c-8a92-3ee6-81fa-4a55d0d621d6,SESCO,II.5.1,Rio Negro,AR-R,annual,2019,jet kerosene combustion consumption by agriculture machines,0.157265,TJ,CH4,0.5,kg/TJ,0.0786325,kg +def8e062-54d5-3d9b-940d-c6228d4dd2f5,SESCO,II.5.1,Rio Negro,AR-R,annual,2019,jet kerosene combustion consumption by agriculture machines,0.157265,TJ,N2O,2.0,kg/TJ,0.31453,kg +539092fd-323a-3251-b258-8f24c9244356,SESCO,II.5.1,Santa Fe,AR-S,annual,2019,jet kerosene combustion consumption by agriculture machines,5.347009999999999,TJ,CO2,71500.0,kg/TJ,382311.21499999997,kg +21a7b5e0-dff2-358a-b2bf-5e190d19f789,SESCO,II.5.1,Santa Fe,AR-S,annual,2019,jet kerosene combustion consumption by agriculture machines,5.347009999999999,TJ,CH4,0.5,kg/TJ,2.6735049999999996,kg +82c9a8a8-dc30-3c97-be59-e62687458c5a,SESCO,II.5.1,Santa Fe,AR-S,annual,2019,jet kerosene combustion consumption by agriculture machines,5.347009999999999,TJ,N2O,2.0,kg/TJ,10.694019999999998,kg +8e7ad5e5-269e-3bfc-9ea9-3ac1e644574e,SESCO,II.1.1,Buenos Aires,AR-B,annual,2019,gas oil combustion consumption by to the public,28544.624639999998,TJ,CO2,74100.0,kg/TJ,2115156685.824,kg +11f6d6ee-6e27-3b0e-8a94-f0865ce5e0d3,SESCO,II.1.1,Buenos Aires,AR-B,annual,2019,gas oil combustion consumption by to the public,28544.624639999998,TJ,CH4,3.9,kg/TJ,111324.036096,kg +11f6d6ee-6e27-3b0e-8a94-f0865ce5e0d3,SESCO,II.1.1,Buenos Aires,AR-B,annual,2019,gas oil combustion consumption by to the public,28544.624639999998,TJ,N2O,3.9,kg/TJ,111324.036096,kg +4962fe78-56cf-3ca3-9a36-321a83ad88af,SESCO,II.1.1,Capital Federal,AR-C,annual,2019,gas oil combustion consumption by to the public,2926.47852,TJ,CO2,74100.0,kg/TJ,216852058.33200002,kg +17b09757-a1d9-37fe-a630-dd4b18cf016c,SESCO,II.1.1,Capital Federal,AR-C,annual,2019,gas oil combustion consumption by to the public,2926.47852,TJ,CH4,3.9,kg/TJ,11413.266228,kg +17b09757-a1d9-37fe-a630-dd4b18cf016c,SESCO,II.1.1,Capital Federal,AR-C,annual,2019,gas oil combustion consumption by to the public,2926.47852,TJ,N2O,3.9,kg/TJ,11413.266228,kg +542e6f56-5e01-336e-b974-1ba8bb0c671d,SESCO,II.1.1,Catamarca,AR-K,annual,2019,gas oil combustion consumption by to the public,281.69988,TJ,CO2,74100.0,kg/TJ,20873961.108,kg +37bafac4-1ad6-3c74-968a-d9ef261aaa28,SESCO,II.1.1,Catamarca,AR-K,annual,2019,gas oil combustion consumption by to the public,281.69988,TJ,CH4,3.9,kg/TJ,1098.629532,kg +37bafac4-1ad6-3c74-968a-d9ef261aaa28,SESCO,II.1.1,Catamarca,AR-K,annual,2019,gas oil combustion consumption by to the public,281.69988,TJ,N2O,3.9,kg/TJ,1098.629532,kg +46a6c6ad-74a1-3d60-8088-008180a81070,SESCO,II.1.1,Chaco,AR-H,annual,2019,gas oil combustion consumption by to the public,1716.0611999999999,TJ,CO2,74100.0,kg/TJ,127160134.91999999,kg +480f05cf-0c6a-3cd1-a1d7-35cf47fd8a43,SESCO,II.1.1,Chaco,AR-H,annual,2019,gas oil combustion consumption by to the public,1716.0611999999999,TJ,CH4,3.9,kg/TJ,6692.638679999999,kg +480f05cf-0c6a-3cd1-a1d7-35cf47fd8a43,SESCO,II.1.1,Chaco,AR-H,annual,2019,gas oil combustion consumption by to the public,1716.0611999999999,TJ,N2O,3.9,kg/TJ,6692.638679999999,kg +2f2631a5-6696-3fd6-b28a-4d1347a437c7,SESCO,II.1.1,Chubut,AR-U,annual,2019,gas oil combustion consumption by to the public,2691.5901599999997,TJ,CO2,74100.0,kg/TJ,199446830.85599998,kg +bb30f882-e19b-3c51-add8-cbb751fb4afa,SESCO,II.1.1,Chubut,AR-U,annual,2019,gas oil combustion consumption by to the public,2691.5901599999997,TJ,CH4,3.9,kg/TJ,10497.201624,kg +bb30f882-e19b-3c51-add8-cbb751fb4afa,SESCO,II.1.1,Chubut,AR-U,annual,2019,gas oil combustion consumption by to the public,2691.5901599999997,TJ,N2O,3.9,kg/TJ,10497.201624,kg +cf226f55-a467-3483-ad28-02c769494337,SESCO,II.1.1,Corrientes,AR-W,annual,2019,gas oil combustion consumption by to the public,1579.78044,TJ,CO2,74100.0,kg/TJ,117061730.604,kg +211c8a50-ba44-3f4b-98c8-20a936f37fbc,SESCO,II.1.1,Corrientes,AR-W,annual,2019,gas oil combustion consumption by to the public,1579.78044,TJ,CH4,3.9,kg/TJ,6161.143716,kg +211c8a50-ba44-3f4b-98c8-20a936f37fbc,SESCO,II.1.1,Corrientes,AR-W,annual,2019,gas oil combustion consumption by to the public,1579.78044,TJ,N2O,3.9,kg/TJ,6161.143716,kg +57e8fea7-3879-358d-a09a-72a6c98ee9d9,SESCO,II.1.1,Córdoba,AR-X,annual,2019,gas oil combustion consumption by to the public,10505.1408,TJ,CO2,74100.0,kg/TJ,778430933.28,kg +31223815-d3c7-3a3a-9164-a99c019410ae,SESCO,II.1.1,Córdoba,AR-X,annual,2019,gas oil combustion consumption by to the public,10505.1408,TJ,CH4,3.9,kg/TJ,40970.049119999996,kg +31223815-d3c7-3a3a-9164-a99c019410ae,SESCO,II.1.1,Córdoba,AR-X,annual,2019,gas oil combustion consumption by to the public,10505.1408,TJ,N2O,3.9,kg/TJ,40970.049119999996,kg +8898ade4-c0c4-32eb-9a22-d5ca9dbcf106,SESCO,II.1.1,Entre Rios,AR-E,annual,2019,gas oil combustion consumption by to the public,3753.5904,TJ,CO2,74100.0,kg/TJ,278141048.64,kg +ba2843b2-f1a7-364f-a3f1-e3f3a5dddac8,SESCO,II.1.1,Entre Rios,AR-E,annual,2019,gas oil combustion consumption by to the public,3753.5904,TJ,CH4,3.9,kg/TJ,14639.002559999999,kg +ba2843b2-f1a7-364f-a3f1-e3f3a5dddac8,SESCO,II.1.1,Entre Rios,AR-E,annual,2019,gas oil combustion consumption by to the public,3753.5904,TJ,N2O,3.9,kg/TJ,14639.002559999999,kg +9bce67fc-927b-3c44-82fc-3e265d7af7e9,SESCO,II.1.1,Formosa,AR-P,annual,2019,gas oil combustion consumption by to the public,556.2479999999999,TJ,CO2,74100.0,kg/TJ,41217976.8,kg +16f81f2e-1630-3fe9-a25a-635eca79564d,SESCO,II.1.1,Formosa,AR-P,annual,2019,gas oil combustion consumption by to the public,556.2479999999999,TJ,CH4,3.9,kg/TJ,2169.3671999999997,kg +16f81f2e-1630-3fe9-a25a-635eca79564d,SESCO,II.1.1,Formosa,AR-P,annual,2019,gas oil combustion consumption by to the public,556.2479999999999,TJ,N2O,3.9,kg/TJ,2169.3671999999997,kg +3a87c427-00c1-3591-bfa7-7f697e63ddc4,SESCO,II.1.1,Jujuy,AR-Y,annual,2019,gas oil combustion consumption by to the public,1386.105,TJ,CO2,74100.0,kg/TJ,102710380.5,kg +8c88ff75-e557-30e0-834e-796e05a77fff,SESCO,II.1.1,Jujuy,AR-Y,annual,2019,gas oil combustion consumption by to the public,1386.105,TJ,CH4,3.9,kg/TJ,5405.8095,kg +8c88ff75-e557-30e0-834e-796e05a77fff,SESCO,II.1.1,Jujuy,AR-Y,annual,2019,gas oil combustion consumption by to the public,1386.105,TJ,N2O,3.9,kg/TJ,5405.8095,kg +a3200b8d-15cf-35de-bb28-3ebc49d22873,SESCO,II.1.1,La Pampa,AR-L,annual,2019,gas oil combustion consumption by to the public,2559.60768,TJ,CO2,74100.0,kg/TJ,189666929.088,kg +4393a859-2354-352d-8504-80d3ef18ef30,SESCO,II.1.1,La Pampa,AR-L,annual,2019,gas oil combustion consumption by to the public,2559.60768,TJ,CH4,3.9,kg/TJ,9982.469952,kg +4393a859-2354-352d-8504-80d3ef18ef30,SESCO,II.1.1,La Pampa,AR-L,annual,2019,gas oil combustion consumption by to the public,2559.60768,TJ,N2O,3.9,kg/TJ,9982.469952,kg +ca9566d2-0232-33e8-94fb-b030428b7d6f,SESCO,II.1.1,La Rioja,AR-F,annual,2019,gas oil combustion consumption by to the public,525.7266,TJ,CO2,74100.0,kg/TJ,38956341.059999995,kg +36121239-4b65-3063-b36a-9d39be3fd99a,SESCO,II.1.1,La Rioja,AR-F,annual,2019,gas oil combustion consumption by to the public,525.7266,TJ,CH4,3.9,kg/TJ,2050.3337399999996,kg +36121239-4b65-3063-b36a-9d39be3fd99a,SESCO,II.1.1,La Rioja,AR-F,annual,2019,gas oil combustion consumption by to the public,525.7266,TJ,N2O,3.9,kg/TJ,2050.3337399999996,kg +dc5875aa-5eff-372a-a709-b8beca04454f,SESCO,II.1.1,Mendoza,AR-M,annual,2019,gas oil combustion consumption by to the public,7482.54696,TJ,CO2,74100.0,kg/TJ,554456729.736,kg +4bda9460-aeff-3365-95c5-ad800fa2042e,SESCO,II.1.1,Mendoza,AR-M,annual,2019,gas oil combustion consumption by to the public,7482.54696,TJ,CH4,3.9,kg/TJ,29181.933144,kg +4bda9460-aeff-3365-95c5-ad800fa2042e,SESCO,II.1.1,Mendoza,AR-M,annual,2019,gas oil combustion consumption by to the public,7482.54696,TJ,N2O,3.9,kg/TJ,29181.933144,kg +f32aa4c7-043a-363f-ba86-5f7e0f805b3f,SESCO,II.1.1,Misiones,AR-N,annual,2019,gas oil combustion consumption by to the public,2586.2281199999998,TJ,CO2,74100.0,kg/TJ,191639503.69199997,kg +df2f0191-8f67-36d8-b532-954ea27f3cde,SESCO,II.1.1,Misiones,AR-N,annual,2019,gas oil combustion consumption by to the public,2586.2281199999998,TJ,CH4,3.9,kg/TJ,10086.289668,kg +df2f0191-8f67-36d8-b532-954ea27f3cde,SESCO,II.1.1,Misiones,AR-N,annual,2019,gas oil combustion consumption by to the public,2586.2281199999998,TJ,N2O,3.9,kg/TJ,10086.289668,kg +debff3ec-2a8d-3fbf-a802-9f23551c1b48,SESCO,II.1.1,Neuquén,AR-Q,annual,2019,gas oil combustion consumption by to the public,1727.04168,TJ,CO2,74100.0,kg/TJ,127973788.488,kg +1aea934c-194c-3c48-9dbe-f22f09667ebc,SESCO,II.1.1,Neuquén,AR-Q,annual,2019,gas oil combustion consumption by to the public,1727.04168,TJ,CH4,3.9,kg/TJ,6735.462552,kg +1aea934c-194c-3c48-9dbe-f22f09667ebc,SESCO,II.1.1,Neuquén,AR-Q,annual,2019,gas oil combustion consumption by to the public,1727.04168,TJ,N2O,3.9,kg/TJ,6735.462552,kg +499999fc-8c19-361b-9c28-75892235f752,SESCO,II.1.1,Rio Negro,AR-R,annual,2019,gas oil combustion consumption by to the public,3650.14272,TJ,CO2,74100.0,kg/TJ,270475575.552,kg +dd3580f8-5e9f-34b5-aef7-592294930324,SESCO,II.1.1,Rio Negro,AR-R,annual,2019,gas oil combustion consumption by to the public,3650.14272,TJ,CH4,3.9,kg/TJ,14235.556607999999,kg +dd3580f8-5e9f-34b5-aef7-592294930324,SESCO,II.1.1,Rio Negro,AR-R,annual,2019,gas oil combustion consumption by to the public,3650.14272,TJ,N2O,3.9,kg/TJ,14235.556607999999,kg +66307471-8ea8-3b1e-8033-9ab5938749df,SESCO,II.1.1,Salta,AR-A,annual,2019,gas oil combustion consumption by to the public,3281.82708,TJ,CO2,74100.0,kg/TJ,243183386.628,kg +36440375-9b23-3431-90eb-8b310982ed5a,SESCO,II.1.1,Salta,AR-A,annual,2019,gas oil combustion consumption by to the public,3281.82708,TJ,CH4,3.9,kg/TJ,12799.125612,kg +36440375-9b23-3431-90eb-8b310982ed5a,SESCO,II.1.1,Salta,AR-A,annual,2019,gas oil combustion consumption by to the public,3281.82708,TJ,N2O,3.9,kg/TJ,12799.125612,kg +960dcf83-4b19-39fc-9c4b-482a7c357f23,SESCO,II.1.1,San Juan,AR-J,annual,2019,gas oil combustion consumption by to the public,1619.00676,TJ,CO2,74100.0,kg/TJ,119968400.916,kg +2284a9f8-4494-35c1-bee9-07a7c38a208f,SESCO,II.1.1,San Juan,AR-J,annual,2019,gas oil combustion consumption by to the public,1619.00676,TJ,CH4,3.9,kg/TJ,6314.126364,kg +2284a9f8-4494-35c1-bee9-07a7c38a208f,SESCO,II.1.1,San Juan,AR-J,annual,2019,gas oil combustion consumption by to the public,1619.00676,TJ,N2O,3.9,kg/TJ,6314.126364,kg +ae540870-496f-32f3-ab2d-4837fb804258,SESCO,II.1.1,San Luis,AR-D,annual,2019,gas oil combustion consumption by to the public,1390.04208,TJ,CO2,74100.0,kg/TJ,103002118.12799999,kg +edb9780a-0919-36aa-b164-b4adb3775a7d,SESCO,II.1.1,San Luis,AR-D,annual,2019,gas oil combustion consumption by to the public,1390.04208,TJ,CH4,3.9,kg/TJ,5421.1641119999995,kg +edb9780a-0919-36aa-b164-b4adb3775a7d,SESCO,II.1.1,San Luis,AR-D,annual,2019,gas oil combustion consumption by to the public,1390.04208,TJ,N2O,3.9,kg/TJ,5421.1641119999995,kg +e6a811ff-eb26-3e52-b5ad-59abd9b8c2c3,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2019,gas oil combustion consumption by to the public,1740.00876,TJ,CO2,74100.0,kg/TJ,128934649.116,kg +3f29298c-88b7-3ae6-907b-099ea3129456,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2019,gas oil combustion consumption by to the public,1740.00876,TJ,CH4,3.9,kg/TJ,6786.034164,kg +3f29298c-88b7-3ae6-907b-099ea3129456,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2019,gas oil combustion consumption by to the public,1740.00876,TJ,N2O,3.9,kg/TJ,6786.034164,kg +170a77f1-303d-395f-b082-bb881495c337,SESCO,II.1.1,Santa Fe,AR-S,annual,2019,gas oil combustion consumption by to the public,7765.54716,TJ,CO2,74100.0,kg/TJ,575427044.556,kg +685cc168-998c-3ff9-84cd-16b42f9a6867,SESCO,II.1.1,Santa Fe,AR-S,annual,2019,gas oil combustion consumption by to the public,7765.54716,TJ,CH4,3.9,kg/TJ,30285.633923999998,kg +685cc168-998c-3ff9-84cd-16b42f9a6867,SESCO,II.1.1,Santa Fe,AR-S,annual,2019,gas oil combustion consumption by to the public,7765.54716,TJ,N2O,3.9,kg/TJ,30285.633923999998,kg +a81096bf-6027-3e4a-ab97-778e776c1861,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2019,gas oil combustion consumption by to the public,2153.61888,TJ,CO2,74100.0,kg/TJ,159583159.008,kg +a2c731c8-4f5a-3c9c-aa1e-d7a127da6ad4,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2019,gas oil combustion consumption by to the public,2153.61888,TJ,CH4,3.9,kg/TJ,8399.113632,kg +a2c731c8-4f5a-3c9c-aa1e-d7a127da6ad4,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2019,gas oil combustion consumption by to the public,2153.61888,TJ,N2O,3.9,kg/TJ,8399.113632,kg +9192581e-0cdf-3b38-bcca-630494e54f19,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2019,gas oil combustion consumption by to the public,679.70616,TJ,CO2,74100.0,kg/TJ,50366226.456,kg +c3606cbf-c7f7-3e38-88b3-2c77133a4d5d,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2019,gas oil combustion consumption by to the public,679.70616,TJ,CH4,3.9,kg/TJ,2650.8540239999998,kg +c3606cbf-c7f7-3e38-88b3-2c77133a4d5d,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2019,gas oil combustion consumption by to the public,679.70616,TJ,N2O,3.9,kg/TJ,2650.8540239999998,kg +9743535b-14ca-34dd-b900-576e7cc4b16b,SESCO,II.1.1,Tucuman,AR-T,annual,2019,gas oil combustion consumption by to the public,1979.05092,TJ,CO2,74100.0,kg/TJ,146647673.172,kg +5c406bc8-9c0a-34f1-a1e7-7585c712fce1,SESCO,II.1.1,Tucuman,AR-T,annual,2019,gas oil combustion consumption by to the public,1979.05092,TJ,CH4,3.9,kg/TJ,7718.298588,kg +5c406bc8-9c0a-34f1-a1e7-7585c712fce1,SESCO,II.1.1,Tucuman,AR-T,annual,2019,gas oil combustion consumption by to the public,1979.05092,TJ,N2O,3.9,kg/TJ,7718.298588,kg +d3c53bdc-6a61-358d-aab8-7b9d44054d24,SESCO,II.1.1,Buenos Aires,AR-B,annual,2019,gas oil combustion consumption by to the public,15784.04268,TJ,CO2,74100.0,kg/TJ,1169597562.588,kg +6fe4e1f2-6340-354e-a267-c229dd3770e8,SESCO,II.1.1,Buenos Aires,AR-B,annual,2019,gas oil combustion consumption by to the public,15784.04268,TJ,CH4,3.9,kg/TJ,61557.766452,kg +6fe4e1f2-6340-354e-a267-c229dd3770e8,SESCO,II.1.1,Buenos Aires,AR-B,annual,2019,gas oil combustion consumption by to the public,15784.04268,TJ,N2O,3.9,kg/TJ,61557.766452,kg +eeb8484f-44e3-3950-9c13-692cc5d4c60c,SESCO,II.1.1,Capital Federal,AR-C,annual,2019,gas oil combustion consumption by to the public,2196.1321199999998,TJ,CO2,74100.0,kg/TJ,162733390.09199998,kg +9503455a-7a06-3579-956a-eeaba3f0bdff,SESCO,II.1.1,Capital Federal,AR-C,annual,2019,gas oil combustion consumption by to the public,2196.1321199999998,TJ,CH4,3.9,kg/TJ,8564.915267999999,kg +9503455a-7a06-3579-956a-eeaba3f0bdff,SESCO,II.1.1,Capital Federal,AR-C,annual,2019,gas oil combustion consumption by to the public,2196.1321199999998,TJ,N2O,3.9,kg/TJ,8564.915267999999,kg +5de81605-20cd-3b09-a02c-003f027a36aa,SESCO,II.1.1,Catamarca,AR-K,annual,2019,gas oil combustion consumption by to the public,390.71004,TJ,CO2,74100.0,kg/TJ,28951613.963999998,kg +fc9653ab-003c-36e5-a52d-6fdde944b9f8,SESCO,II.1.1,Catamarca,AR-K,annual,2019,gas oil combustion consumption by to the public,390.71004,TJ,CH4,3.9,kg/TJ,1523.7691559999998,kg +fc9653ab-003c-36e5-a52d-6fdde944b9f8,SESCO,II.1.1,Catamarca,AR-K,annual,2019,gas oil combustion consumption by to the public,390.71004,TJ,N2O,3.9,kg/TJ,1523.7691559999998,kg +530b3a2a-abb3-3a72-8a58-00a1fa75ce6f,SESCO,II.1.1,Chaco,AR-H,annual,2019,gas oil combustion consumption by to the public,1184.3748,TJ,CO2,74100.0,kg/TJ,87762172.68,kg +c69564a7-7631-32db-b770-e895b577b02d,SESCO,II.1.1,Chaco,AR-H,annual,2019,gas oil combustion consumption by to the public,1184.3748,TJ,CH4,3.9,kg/TJ,4619.06172,kg +c69564a7-7631-32db-b770-e895b577b02d,SESCO,II.1.1,Chaco,AR-H,annual,2019,gas oil combustion consumption by to the public,1184.3748,TJ,N2O,3.9,kg/TJ,4619.06172,kg +a5f313df-1fc0-3cb9-9255-e2d2be86adb4,SESCO,II.1.1,Chubut,AR-U,annual,2019,gas oil combustion consumption by to the public,1981.83216,TJ,CO2,74100.0,kg/TJ,146853763.056,kg +76b546c8-aa7f-35aa-9835-1e62f5d40457,SESCO,II.1.1,Chubut,AR-U,annual,2019,gas oil combustion consumption by to the public,1981.83216,TJ,CH4,3.9,kg/TJ,7729.145423999999,kg +76b546c8-aa7f-35aa-9835-1e62f5d40457,SESCO,II.1.1,Chubut,AR-U,annual,2019,gas oil combustion consumption by to the public,1981.83216,TJ,N2O,3.9,kg/TJ,7729.145423999999,kg +ffab2ca7-ad15-3756-a94f-b6be1cd12b64,SESCO,II.1.1,Corrientes,AR-W,annual,2019,gas oil combustion consumption by to the public,1166.71212,TJ,CO2,74100.0,kg/TJ,86453368.092,kg +24c273ca-e6b7-3b0e-8980-a45a98994921,SESCO,II.1.1,Corrientes,AR-W,annual,2019,gas oil combustion consumption by to the public,1166.71212,TJ,CH4,3.9,kg/TJ,4550.1772679999995,kg +24c273ca-e6b7-3b0e-8980-a45a98994921,SESCO,II.1.1,Corrientes,AR-W,annual,2019,gas oil combustion consumption by to the public,1166.71212,TJ,N2O,3.9,kg/TJ,4550.1772679999995,kg +ddce7857-f65e-3eb9-8877-eec367f66bb3,SESCO,II.1.1,Córdoba,AR-X,annual,2019,gas oil combustion consumption by to the public,5120.40732,TJ,CO2,74100.0,kg/TJ,379422182.412,kg +b891ebfc-d4c9-32dc-ad81-ba7ce71f010a,SESCO,II.1.1,Córdoba,AR-X,annual,2019,gas oil combustion consumption by to the public,5120.40732,TJ,CH4,3.9,kg/TJ,19969.588548,kg +b891ebfc-d4c9-32dc-ad81-ba7ce71f010a,SESCO,II.1.1,Córdoba,AR-X,annual,2019,gas oil combustion consumption by to the public,5120.40732,TJ,N2O,3.9,kg/TJ,19969.588548,kg +aa698c76-1f39-3eca-bab7-5b8489e477a9,SESCO,II.1.1,Entre Rios,AR-E,annual,2019,gas oil combustion consumption by to the public,1699.37376,TJ,CO2,74100.0,kg/TJ,125923595.616,kg +cd5d6241-5db4-324c-a18f-1c189beedd22,SESCO,II.1.1,Entre Rios,AR-E,annual,2019,gas oil combustion consumption by to the public,1699.37376,TJ,CH4,3.9,kg/TJ,6627.557664,kg +cd5d6241-5db4-324c-a18f-1c189beedd22,SESCO,II.1.1,Entre Rios,AR-E,annual,2019,gas oil combustion consumption by to the public,1699.37376,TJ,N2O,3.9,kg/TJ,6627.557664,kg +eee0cda4-8363-390e-8df7-fc7461c8d1a0,SESCO,II.1.1,Formosa,AR-P,annual,2019,gas oil combustion consumption by to the public,406.42224,TJ,CO2,74100.0,kg/TJ,30115887.983999997,kg +a1632393-e030-3a52-b623-c8b3347e5f23,SESCO,II.1.1,Formosa,AR-P,annual,2019,gas oil combustion consumption by to the public,406.42224,TJ,CH4,3.9,kg/TJ,1585.046736,kg +a1632393-e030-3a52-b623-c8b3347e5f23,SESCO,II.1.1,Formosa,AR-P,annual,2019,gas oil combustion consumption by to the public,406.42224,TJ,N2O,3.9,kg/TJ,1585.046736,kg +32971052-8622-3200-a302-8ab81543493b,SESCO,II.1.1,Jujuy,AR-Y,annual,2019,gas oil combustion consumption by to the public,885.62628,TJ,CO2,74100.0,kg/TJ,65624907.348,kg +c3185d0d-3fc2-314e-8e07-5a006d61a0d2,SESCO,II.1.1,Jujuy,AR-Y,annual,2019,gas oil combustion consumption by to the public,885.62628,TJ,CH4,3.9,kg/TJ,3453.9424919999997,kg +c3185d0d-3fc2-314e-8e07-5a006d61a0d2,SESCO,II.1.1,Jujuy,AR-Y,annual,2019,gas oil combustion consumption by to the public,885.62628,TJ,N2O,3.9,kg/TJ,3453.9424919999997,kg +096027cf-0420-3e28-8296-f45908aad03c,SESCO,II.1.1,La Pampa,AR-L,annual,2019,gas oil combustion consumption by to the public,1414.85652,TJ,CO2,74100.0,kg/TJ,104840868.132,kg +5db14e90-e261-3b02-a503-a6bdd40fc0c1,SESCO,II.1.1,La Pampa,AR-L,annual,2019,gas oil combustion consumption by to the public,1414.85652,TJ,CH4,3.9,kg/TJ,5517.940428,kg +5db14e90-e261-3b02-a503-a6bdd40fc0c1,SESCO,II.1.1,La Pampa,AR-L,annual,2019,gas oil combustion consumption by to the public,1414.85652,TJ,N2O,3.9,kg/TJ,5517.940428,kg +acd72d29-1729-3aeb-8b33-992436ae80bb,SESCO,II.1.1,La Rioja,AR-F,annual,2019,gas oil combustion consumption by to the public,518.5026,TJ,CO2,74100.0,kg/TJ,38421042.660000004,kg +6a8c23fb-3251-3e32-8004-273537bf2f7b,SESCO,II.1.1,La Rioja,AR-F,annual,2019,gas oil combustion consumption by to the public,518.5026,TJ,CH4,3.9,kg/TJ,2022.16014,kg +6a8c23fb-3251-3e32-8004-273537bf2f7b,SESCO,II.1.1,La Rioja,AR-F,annual,2019,gas oil combustion consumption by to the public,518.5026,TJ,N2O,3.9,kg/TJ,2022.16014,kg +c085f4e9-2763-3467-9e3b-6767e50dc68c,SESCO,II.1.1,Mendoza,AR-M,annual,2019,gas oil combustion consumption by to the public,3492.47892,TJ,CO2,74100.0,kg/TJ,258792687.972,kg +041ec0c2-5dfa-3b8f-b57c-8516b4ef8d4e,SESCO,II.1.1,Mendoza,AR-M,annual,2019,gas oil combustion consumption by to the public,3492.47892,TJ,CH4,3.9,kg/TJ,13620.667788,kg +041ec0c2-5dfa-3b8f-b57c-8516b4ef8d4e,SESCO,II.1.1,Mendoza,AR-M,annual,2019,gas oil combustion consumption by to the public,3492.47892,TJ,N2O,3.9,kg/TJ,13620.667788,kg +1aa2562c-8242-3fe7-9e21-d8558f0d3492,SESCO,II.1.1,Misiones,AR-N,annual,2019,gas oil combustion consumption by to the public,1222.44528,TJ,CO2,74100.0,kg/TJ,90583195.248,kg +a9544c52-274d-31fe-9523-0777f0982c89,SESCO,II.1.1,Misiones,AR-N,annual,2019,gas oil combustion consumption by to the public,1222.44528,TJ,CH4,3.9,kg/TJ,4767.5365919999995,kg +a9544c52-274d-31fe-9523-0777f0982c89,SESCO,II.1.1,Misiones,AR-N,annual,2019,gas oil combustion consumption by to the public,1222.44528,TJ,N2O,3.9,kg/TJ,4767.5365919999995,kg +2087508a-fda5-332d-833e-3f9d2cc2fb3a,SESCO,II.1.1,Neuquén,AR-Q,annual,2019,gas oil combustion consumption by to the public,2436.69132,TJ,CO2,74100.0,kg/TJ,180558826.812,kg +dc1d734f-bd82-36a3-940a-adda913329c2,SESCO,II.1.1,Neuquén,AR-Q,annual,2019,gas oil combustion consumption by to the public,2436.69132,TJ,CH4,3.9,kg/TJ,9503.096147999999,kg +dc1d734f-bd82-36a3-940a-adda913329c2,SESCO,II.1.1,Neuquén,AR-Q,annual,2019,gas oil combustion consumption by to the public,2436.69132,TJ,N2O,3.9,kg/TJ,9503.096147999999,kg +18b2b01f-9415-303d-8118-8abda23469b3,SESCO,II.1.1,Rio Negro,AR-R,annual,2019,gas oil combustion consumption by to the public,1782.7026,TJ,CO2,74100.0,kg/TJ,132098262.66000001,kg +67230c04-f808-38da-8867-3412c5a287df,SESCO,II.1.1,Rio Negro,AR-R,annual,2019,gas oil combustion consumption by to the public,1782.7026,TJ,CH4,3.9,kg/TJ,6952.54014,kg +67230c04-f808-38da-8867-3412c5a287df,SESCO,II.1.1,Rio Negro,AR-R,annual,2019,gas oil combustion consumption by to the public,1782.7026,TJ,N2O,3.9,kg/TJ,6952.54014,kg +90875714-86a8-37d0-9893-ec2d500bcaf3,SESCO,II.1.1,Salta,AR-A,annual,2019,gas oil combustion consumption by to the public,1848.3326399999999,TJ,CO2,74100.0,kg/TJ,136961448.62399998,kg +ea6aa994-e290-3cd4-82cc-00776e6377aa,SESCO,II.1.1,Salta,AR-A,annual,2019,gas oil combustion consumption by to the public,1848.3326399999999,TJ,CH4,3.9,kg/TJ,7208.497296,kg +ea6aa994-e290-3cd4-82cc-00776e6377aa,SESCO,II.1.1,Salta,AR-A,annual,2019,gas oil combustion consumption by to the public,1848.3326399999999,TJ,N2O,3.9,kg/TJ,7208.497296,kg +2ecd758c-2545-3509-b97e-689cf3564d72,SESCO,II.1.1,San Juan,AR-J,annual,2019,gas oil combustion consumption by to the public,840.693,TJ,CO2,74100.0,kg/TJ,62295351.3,kg +b7f2ae85-deb6-3d3b-8547-a5072aef06b3,SESCO,II.1.1,San Juan,AR-J,annual,2019,gas oil combustion consumption by to the public,840.693,TJ,CH4,3.9,kg/TJ,3278.7027,kg +b7f2ae85-deb6-3d3b-8547-a5072aef06b3,SESCO,II.1.1,San Juan,AR-J,annual,2019,gas oil combustion consumption by to the public,840.693,TJ,N2O,3.9,kg/TJ,3278.7027,kg +453e3091-12af-3d85-ad2e-433bb53bea6f,SESCO,II.1.1,San Luis,AR-D,annual,2019,gas oil combustion consumption by to the public,730.49088,TJ,CO2,74100.0,kg/TJ,54129374.208,kg +f23f4484-b52f-3ae6-9ebb-6fafac349474,SESCO,II.1.1,San Luis,AR-D,annual,2019,gas oil combustion consumption by to the public,730.49088,TJ,CH4,3.9,kg/TJ,2848.9144319999996,kg +f23f4484-b52f-3ae6-9ebb-6fafac349474,SESCO,II.1.1,San Luis,AR-D,annual,2019,gas oil combustion consumption by to the public,730.49088,TJ,N2O,3.9,kg/TJ,2848.9144319999996,kg +4f9b8889-3684-399b-a746-940455259e9e,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2019,gas oil combustion consumption by to the public,1529.93484,TJ,CO2,74100.0,kg/TJ,113368171.644,kg +39433d24-d85b-3e9d-8c8a-8c378acf49bf,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2019,gas oil combustion consumption by to the public,1529.93484,TJ,CH4,3.9,kg/TJ,5966.745875999999,kg +39433d24-d85b-3e9d-8c8a-8c378acf49bf,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2019,gas oil combustion consumption by to the public,1529.93484,TJ,N2O,3.9,kg/TJ,5966.745875999999,kg +8fefe397-a9ac-36a6-8dcf-bdcc6b6b43d6,SESCO,II.1.1,Santa Fe,AR-S,annual,2019,gas oil combustion consumption by to the public,3854.69028,TJ,CO2,74100.0,kg/TJ,285632549.74799997,kg +8c5c8398-8e2e-3c42-8096-02da6de68ebf,SESCO,II.1.1,Santa Fe,AR-S,annual,2019,gas oil combustion consumption by to the public,3854.69028,TJ,CH4,3.9,kg/TJ,15033.292092,kg +8c5c8398-8e2e-3c42-8096-02da6de68ebf,SESCO,II.1.1,Santa Fe,AR-S,annual,2019,gas oil combustion consumption by to the public,3854.69028,TJ,N2O,3.9,kg/TJ,15033.292092,kg +5a4a7a87-c49c-3386-be6c-08fd562e59ec,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2019,gas oil combustion consumption by to the public,994.96152,TJ,CO2,74100.0,kg/TJ,73726648.632,kg +05e0ceea-d5c7-3c5a-9019-70cd4bf8b5ff,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2019,gas oil combustion consumption by to the public,994.96152,TJ,CH4,3.9,kg/TJ,3880.3499279999996,kg +05e0ceea-d5c7-3c5a-9019-70cd4bf8b5ff,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2019,gas oil combustion consumption by to the public,994.96152,TJ,N2O,3.9,kg/TJ,3880.3499279999996,kg +4c65195f-c3bf-3456-8975-7813c0c9e218,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2019,gas oil combustion consumption by to the public,425.02404,TJ,CO2,74100.0,kg/TJ,31494281.364,kg +efbfce18-421d-385e-8763-70b50b92c93d,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2019,gas oil combustion consumption by to the public,425.02404,TJ,CH4,3.9,kg/TJ,1657.593756,kg +efbfce18-421d-385e-8763-70b50b92c93d,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2019,gas oil combustion consumption by to the public,425.02404,TJ,N2O,3.9,kg/TJ,1657.593756,kg +abeb6f38-d934-36cb-a522-05f2d6a83de6,SESCO,II.1.1,Tucuman,AR-T,annual,2019,gas oil combustion consumption by to the public,1264.70568,TJ,CO2,74100.0,kg/TJ,93714690.888,kg +e3619b9e-018d-340c-95bd-29a9458e7edb,SESCO,II.1.1,Tucuman,AR-T,annual,2019,gas oil combustion consumption by to the public,1264.70568,TJ,CH4,3.9,kg/TJ,4932.352152,kg +e3619b9e-018d-340c-95bd-29a9458e7edb,SESCO,II.1.1,Tucuman,AR-T,annual,2019,gas oil combustion consumption by to the public,1264.70568,TJ,N2O,3.9,kg/TJ,4932.352152,kg +d47a891f-bf06-35d5-abe4-844656ba95ac,SESCO,II.1.1,Buenos Aires,AR-B,annual,2019,jet kerosene combustion consumption by to the public,85.48925399999999,TJ,CO2,71500.0,kg/TJ,6112481.660999999,kg +0f55097f-d45c-3f9c-af3a-9090e266aaea,SESCO,II.1.1,Buenos Aires,AR-B,annual,2019,jet kerosene combustion consumption by to the public,85.48925399999999,TJ,CH4,0.5,kg/TJ,42.744626999999994,kg +3a94e90c-e022-3b54-b35a-1a2bf5f17bab,SESCO,II.1.1,Buenos Aires,AR-B,annual,2019,jet kerosene combustion consumption by to the public,85.48925399999999,TJ,N2O,2.0,kg/TJ,170.97850799999998,kg +a50e3975-23ff-39df-a56c-bb1bd4e48566,SESCO,II.1.1,Capital Federal,AR-C,annual,2019,jet kerosene combustion consumption by to the public,2.7993169999999994,TJ,CO2,71500.0,kg/TJ,200151.16549999994,kg +bf3c4f24-e96e-3f7b-a696-65d587e21175,SESCO,II.1.1,Capital Federal,AR-C,annual,2019,jet kerosene combustion consumption by to the public,2.7993169999999994,TJ,CH4,0.5,kg/TJ,1.3996584999999997,kg +c62183cb-f8ad-33da-82ff-a0a8b170cfee,SESCO,II.1.1,Capital Federal,AR-C,annual,2019,jet kerosene combustion consumption by to the public,2.7993169999999994,TJ,N2O,2.0,kg/TJ,5.598633999999999,kg +6d643bc7-1212-31e9-9599-3613a2080e47,SESCO,II.1.1,Catamarca,AR-K,annual,2019,jet kerosene combustion consumption by to the public,3.3340179999999995,TJ,CO2,71500.0,kg/TJ,238382.28699999995,kg +46819bb7-092a-3fce-b953-2647a7c36b88,SESCO,II.1.1,Catamarca,AR-K,annual,2019,jet kerosene combustion consumption by to the public,3.3340179999999995,TJ,CH4,0.5,kg/TJ,1.6670089999999997,kg +ee76b77a-ed7a-319b-a85e-244a255edf55,SESCO,II.1.1,Catamarca,AR-K,annual,2019,jet kerosene combustion consumption by to the public,3.3340179999999995,TJ,N2O,2.0,kg/TJ,6.668035999999999,kg +fd907a0e-d28c-3e15-a790-feb321d79297,SESCO,II.1.1,Chubut,AR-U,annual,2019,jet kerosene combustion consumption by to the public,10.316583999999999,TJ,CO2,71500.0,kg/TJ,737635.7559999999,kg +99ff5d43-b125-39db-b3c3-e9064660c77d,SESCO,II.1.1,Chubut,AR-U,annual,2019,jet kerosene combustion consumption by to the public,10.316583999999999,TJ,CH4,0.5,kg/TJ,5.158291999999999,kg +beb2e7d9-83d4-3423-8892-617a4125aac0,SESCO,II.1.1,Chubut,AR-U,annual,2019,jet kerosene combustion consumption by to the public,10.316583999999999,TJ,N2O,2.0,kg/TJ,20.633167999999998,kg +cd88dc8d-d876-3446-a1e0-fb95dce9a986,SESCO,II.1.1,Corrientes,AR-W,annual,2019,jet kerosene combustion consumption by to the public,1.4153849999999997,TJ,CO2,71500.0,kg/TJ,101200.02749999998,kg +17257bda-b3ff-3d73-a24b-053c5175121b,SESCO,II.1.1,Corrientes,AR-W,annual,2019,jet kerosene combustion consumption by to the public,1.4153849999999997,TJ,CH4,0.5,kg/TJ,0.7076924999999998,kg +5381b44b-754c-3906-8f5a-e42252165e0d,SESCO,II.1.1,Corrientes,AR-W,annual,2019,jet kerosene combustion consumption by to the public,1.4153849999999997,TJ,N2O,2.0,kg/TJ,2.8307699999999993,kg +7845d628-f005-30f3-a8b0-4995230137ed,SESCO,II.1.1,Córdoba,AR-X,annual,2019,jet kerosene combustion consumption by to the public,30.603768999999996,TJ,CO2,71500.0,kg/TJ,2188169.4834999996,kg +9bd5e4ca-7143-33d9-a3b0-89093f825425,SESCO,II.1.1,Córdoba,AR-X,annual,2019,jet kerosene combustion consumption by to the public,30.603768999999996,TJ,CH4,0.5,kg/TJ,15.301884499999998,kg +d60ecdcd-7023-3d3f-9891-3f042be0c28f,SESCO,II.1.1,Córdoba,AR-X,annual,2019,jet kerosene combustion consumption by to the public,30.603768999999996,TJ,N2O,2.0,kg/TJ,61.20753799999999,kg +d2c6be9a-6968-3592-b950-262828a6ae26,SESCO,II.1.1,Entre Rios,AR-E,annual,2019,jet kerosene combustion consumption by to the public,4.843761999999999,TJ,CO2,71500.0,kg/TJ,346328.98299999995,kg +007c51a8-8204-35fc-9876-5667fb9de548,SESCO,II.1.1,Entre Rios,AR-E,annual,2019,jet kerosene combustion consumption by to the public,4.843761999999999,TJ,CH4,0.5,kg/TJ,2.4218809999999995,kg +345d1de4-65c0-3cd5-be3b-8a3f8688636e,SESCO,II.1.1,Entre Rios,AR-E,annual,2019,jet kerosene combustion consumption by to the public,4.843761999999999,TJ,N2O,2.0,kg/TJ,9.687523999999998,kg +75dd2ea3-5d7c-3bb1-9cbb-b8ebcb700545,SESCO,II.1.1,Jujuy,AR-Y,annual,2019,jet kerosene combustion consumption by to the public,1.1637609999999998,TJ,CO2,71500.0,kg/TJ,83208.91149999999,kg +13ed09de-8b51-3514-bcf8-89e5761f0bd7,SESCO,II.1.1,Jujuy,AR-Y,annual,2019,jet kerosene combustion consumption by to the public,1.1637609999999998,TJ,CH4,0.5,kg/TJ,0.5818804999999999,kg +5a4a1ff4-e3ca-370b-8fb5-ded21caf3483,SESCO,II.1.1,Jujuy,AR-Y,annual,2019,jet kerosene combustion consumption by to the public,1.1637609999999998,TJ,N2O,2.0,kg/TJ,2.3275219999999996,kg +ca15686c-3875-37a0-8733-cad75b0cfd82,SESCO,II.1.1,La Pampa,AR-L,annual,2019,jet kerosene combustion consumption by to the public,2.51624,TJ,CO2,71500.0,kg/TJ,179911.15999999997,kg +99c9e707-d3b8-3f91-a110-affcbfe75880,SESCO,II.1.1,La Pampa,AR-L,annual,2019,jet kerosene combustion consumption by to the public,2.51624,TJ,CH4,0.5,kg/TJ,1.25812,kg +fe54aab4-03bb-3673-bdee-9358c7a969fc,SESCO,II.1.1,La Pampa,AR-L,annual,2019,jet kerosene combustion consumption by to the public,2.51624,TJ,N2O,2.0,kg/TJ,5.03248,kg +d14ecf03-66e1-321a-aa3d-ff401d52cd16,SESCO,II.1.1,La Rioja,AR-F,annual,2019,jet kerosene combustion consumption by to the public,1.1952139999999998,TJ,CO2,71500.0,kg/TJ,85457.80099999998,kg +e48147a6-6f66-3a96-b1c8-09965b2f3caf,SESCO,II.1.1,La Rioja,AR-F,annual,2019,jet kerosene combustion consumption by to the public,1.1952139999999998,TJ,CH4,0.5,kg/TJ,0.5976069999999999,kg +7e6e53f9-8774-35e5-a287-ac17b0331a02,SESCO,II.1.1,La Rioja,AR-F,annual,2019,jet kerosene combustion consumption by to the public,1.1952139999999998,TJ,N2O,2.0,kg/TJ,2.3904279999999996,kg +8d1100ed-0343-3d7f-8819-022d70d18a06,SESCO,II.1.1,Mendoza,AR-M,annual,2019,jet kerosene combustion consumption by to the public,13.619148999999998,TJ,CO2,71500.0,kg/TJ,973769.1534999999,kg +72fe8992-63e6-39a5-aeeb-409802a0a9ec,SESCO,II.1.1,Mendoza,AR-M,annual,2019,jet kerosene combustion consumption by to the public,13.619148999999998,TJ,CH4,0.5,kg/TJ,6.809574499999999,kg +e126c9ed-bd83-3668-b6d5-dc589f257565,SESCO,II.1.1,Mendoza,AR-M,annual,2019,jet kerosene combustion consumption by to the public,13.619148999999998,TJ,N2O,2.0,kg/TJ,27.238297999999997,kg +f7964513-e92c-3a7c-b692-462d887ffa4d,SESCO,II.1.1,Neuquén,AR-Q,annual,2019,jet kerosene combustion consumption by to the public,7.202736999999999,TJ,CO2,71500.0,kg/TJ,514995.6954999999,kg +f9eaf768-ea21-3746-a66e-70d62097b143,SESCO,II.1.1,Neuquén,AR-Q,annual,2019,jet kerosene combustion consumption by to the public,7.202736999999999,TJ,CH4,0.5,kg/TJ,3.6013684999999995,kg +04f00e5e-5657-3f14-a87e-eaec0560c1c0,SESCO,II.1.1,Neuquén,AR-Q,annual,2019,jet kerosene combustion consumption by to the public,7.202736999999999,TJ,N2O,2.0,kg/TJ,14.405473999999998,kg +1c433326-b64a-3df8-b542-b4630d79f8d9,SESCO,II.1.1,San Juan,AR-J,annual,2019,jet kerosene combustion consumption by to the public,4.088889999999999,TJ,CO2,71500.0,kg/TJ,292355.63499999995,kg +2b54ef4b-e36e-3404-a7cf-e36db229b5f4,SESCO,II.1.1,San Juan,AR-J,annual,2019,jet kerosene combustion consumption by to the public,4.088889999999999,TJ,CH4,0.5,kg/TJ,2.0444449999999996,kg +3e77b802-6132-38b6-88cf-d3d4bbee1bcc,SESCO,II.1.1,San Juan,AR-J,annual,2019,jet kerosene combustion consumption by to the public,4.088889999999999,TJ,N2O,2.0,kg/TJ,8.177779999999998,kg +8e8f16ef-edd5-312d-ba0c-faec2c597c2d,SESCO,II.1.1,San Luis,AR-D,annual,2019,jet kerosene combustion consumption by to the public,4.749402999999999,TJ,CO2,71500.0,kg/TJ,339582.3144999999,kg +35e1961c-a126-3fbd-a20c-f2e74e3696ab,SESCO,II.1.1,San Luis,AR-D,annual,2019,jet kerosene combustion consumption by to the public,4.749402999999999,TJ,CH4,0.5,kg/TJ,2.3747014999999996,kg +c5f2df78-d828-3eb0-ad89-232798df0697,SESCO,II.1.1,San Luis,AR-D,annual,2019,jet kerosene combustion consumption by to the public,4.749402999999999,TJ,N2O,2.0,kg/TJ,9.498805999999998,kg +98bc5610-9218-3d75-b436-4034b0912404,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2019,jet kerosene combustion consumption by to the public,9.027010999999998,TJ,CO2,71500.0,kg/TJ,645431.2864999998,kg +d742c821-d5ed-3c47-af5d-eca356cac495,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2019,jet kerosene combustion consumption by to the public,9.027010999999998,TJ,CH4,0.5,kg/TJ,4.513505499999999,kg +ba8668e6-e690-3123-8adc-0d1012439323,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2019,jet kerosene combustion consumption by to the public,9.027010999999998,TJ,N2O,2.0,kg/TJ,18.054021999999996,kg +85a547a1-a8b6-399b-926f-bdbcb5360f3f,SESCO,II.1.1,Santa Fe,AR-S,annual,2019,jet kerosene combustion consumption by to the public,24.030091999999996,TJ,CO2,71500.0,kg/TJ,1718151.5779999997,kg +e736e0b8-f7b7-393e-9c10-62d4657b4dbd,SESCO,II.1.1,Santa Fe,AR-S,annual,2019,jet kerosene combustion consumption by to the public,24.030091999999996,TJ,CH4,0.5,kg/TJ,12.015045999999998,kg +833bbaaf-e254-3a05-a18e-76b7f885c37c,SESCO,II.1.1,Santa Fe,AR-S,annual,2019,jet kerosene combustion consumption by to the public,24.030091999999996,TJ,N2O,2.0,kg/TJ,48.06018399999999,kg +e2c2450f-0371-37bd-8fb7-ba8c14d42509,SESCO,II.1.1,Tucuman,AR-T,annual,2019,jet kerosene combustion consumption by to the public,8.366497999999998,TJ,CO2,71500.0,kg/TJ,598204.6069999998,kg +db59b750-2b99-36e0-a3f0-49451e21f079,SESCO,II.1.1,Tucuman,AR-T,annual,2019,jet kerosene combustion consumption by to the public,8.366497999999998,TJ,CH4,0.5,kg/TJ,4.183248999999999,kg +007ea531-5ce1-3e67-81b8-a124a036531d,SESCO,II.1.1,Tucuman,AR-T,annual,2019,jet kerosene combustion consumption by to the public,8.366497999999998,TJ,N2O,2.0,kg/TJ,16.732995999999996,kg +4b3782f8-94ce-32e4-91cd-9a90bb7ec21f,SESCO,II.1.1,Buenos Aires,AR-B,annual,2019,gas oil combustion consumption by freight transport,10360.2996,TJ,CO2,74100.0,kg/TJ,767698200.36,kg +d893865e-de42-31f3-bf64-f5151fc62e87,SESCO,II.1.1,Buenos Aires,AR-B,annual,2019,gas oil combustion consumption by freight transport,10360.2996,TJ,CH4,3.9,kg/TJ,40405.16844,kg +d893865e-de42-31f3-bf64-f5151fc62e87,SESCO,II.1.1,Buenos Aires,AR-B,annual,2019,gas oil combustion consumption by freight transport,10360.2996,TJ,N2O,3.9,kg/TJ,40405.16844,kg +add1b791-641e-3a27-86b3-8e9f3b8329ef,SESCO,II.1.1,Capital Federal,AR-C,annual,2019,gas oil combustion consumption by freight transport,3542.54124,TJ,CO2,74100.0,kg/TJ,262502305.884,kg +64478c71-82e0-3a51-8460-88a9afcf19a1,SESCO,II.1.1,Capital Federal,AR-C,annual,2019,gas oil combustion consumption by freight transport,3542.54124,TJ,CH4,3.9,kg/TJ,13815.910836,kg +64478c71-82e0-3a51-8460-88a9afcf19a1,SESCO,II.1.1,Capital Federal,AR-C,annual,2019,gas oil combustion consumption by freight transport,3542.54124,TJ,N2O,3.9,kg/TJ,13815.910836,kg +c67f54d5-b6f4-3b75-a08d-2f3decb33b25,SESCO,II.1.1,Catamarca,AR-K,annual,2019,gas oil combustion consumption by freight transport,19.6854,TJ,CO2,74100.0,kg/TJ,1458688.1400000001,kg +4beb7e19-80e2-3a9d-aa0a-0bcd0fcabc74,SESCO,II.1.1,Catamarca,AR-K,annual,2019,gas oil combustion consumption by freight transport,19.6854,TJ,CH4,3.9,kg/TJ,76.77306,kg +4beb7e19-80e2-3a9d-aa0a-0bcd0fcabc74,SESCO,II.1.1,Catamarca,AR-K,annual,2019,gas oil combustion consumption by freight transport,19.6854,TJ,N2O,3.9,kg/TJ,76.77306,kg +41800442-98dd-33bc-ba3c-0188119fd4c1,SESCO,II.1.1,Chaco,AR-H,annual,2019,gas oil combustion consumption by freight transport,263.71211999999997,TJ,CO2,74100.0,kg/TJ,19541068.091999996,kg +ea116540-40d8-31b9-ae8a-84b9d2a6af6c,SESCO,II.1.1,Chaco,AR-H,annual,2019,gas oil combustion consumption by freight transport,263.71211999999997,TJ,CH4,3.9,kg/TJ,1028.4772679999999,kg +ea116540-40d8-31b9-ae8a-84b9d2a6af6c,SESCO,II.1.1,Chaco,AR-H,annual,2019,gas oil combustion consumption by freight transport,263.71211999999997,TJ,N2O,3.9,kg/TJ,1028.4772679999999,kg +688ab315-d122-377e-a7ec-fa41465d67af,SESCO,II.1.1,Chubut,AR-U,annual,2019,gas oil combustion consumption by freight transport,212.20499999999998,TJ,CO2,74100.0,kg/TJ,15724390.499999998,kg +31d3657b-02d1-33cb-940f-017d58807fc4,SESCO,II.1.1,Chubut,AR-U,annual,2019,gas oil combustion consumption by freight transport,212.20499999999998,TJ,CH4,3.9,kg/TJ,827.5994999999999,kg +31d3657b-02d1-33cb-940f-017d58807fc4,SESCO,II.1.1,Chubut,AR-U,annual,2019,gas oil combustion consumption by freight transport,212.20499999999998,TJ,N2O,3.9,kg/TJ,827.5994999999999,kg +cc34a216-b789-3ab2-823e-9616c97f5c07,SESCO,II.1.1,Corrientes,AR-W,annual,2019,gas oil combustion consumption by freight transport,426.3966,TJ,CO2,74100.0,kg/TJ,31595988.06,kg +969b376e-f013-36b0-bd9c-8a1a69d6a0f0,SESCO,II.1.1,Corrientes,AR-W,annual,2019,gas oil combustion consumption by freight transport,426.3966,TJ,CH4,3.9,kg/TJ,1662.9467399999999,kg +969b376e-f013-36b0-bd9c-8a1a69d6a0f0,SESCO,II.1.1,Corrientes,AR-W,annual,2019,gas oil combustion consumption by freight transport,426.3966,TJ,N2O,3.9,kg/TJ,1662.9467399999999,kg +f5820960-ff55-3798-a757-350b65655fec,SESCO,II.1.1,Córdoba,AR-X,annual,2019,gas oil combustion consumption by freight transport,3059.0027999999998,TJ,CO2,74100.0,kg/TJ,226672107.48,kg +b403fc25-3f68-37b6-a842-8f1b7c87ad12,SESCO,II.1.1,Córdoba,AR-X,annual,2019,gas oil combustion consumption by freight transport,3059.0027999999998,TJ,CH4,3.9,kg/TJ,11930.11092,kg +b403fc25-3f68-37b6-a842-8f1b7c87ad12,SESCO,II.1.1,Córdoba,AR-X,annual,2019,gas oil combustion consumption by freight transport,3059.0027999999998,TJ,N2O,3.9,kg/TJ,11930.11092,kg +c6801825-5a65-3363-9a24-9860f34e4471,SESCO,II.1.1,Entre Rios,AR-E,annual,2019,gas oil combustion consumption by freight transport,872.9120399999999,TJ,CO2,74100.0,kg/TJ,64682782.164,kg +1599b35d-bbac-3c59-bc5c-908e3fb70856,SESCO,II.1.1,Entre Rios,AR-E,annual,2019,gas oil combustion consumption by freight transport,872.9120399999999,TJ,CH4,3.9,kg/TJ,3404.3569559999996,kg +1599b35d-bbac-3c59-bc5c-908e3fb70856,SESCO,II.1.1,Entre Rios,AR-E,annual,2019,gas oil combustion consumption by freight transport,872.9120399999999,TJ,N2O,3.9,kg/TJ,3404.3569559999996,kg +bb9e237a-d400-3466-9372-3561afd4aeac,SESCO,II.1.1,Formosa,AR-P,annual,2019,gas oil combustion consumption by freight transport,51.03756,TJ,CO2,74100.0,kg/TJ,3781883.196,kg +5b7de83d-ad98-3ecc-a422-335c197cedf1,SESCO,II.1.1,Formosa,AR-P,annual,2019,gas oil combustion consumption by freight transport,51.03756,TJ,CH4,3.9,kg/TJ,199.046484,kg +5b7de83d-ad98-3ecc-a422-335c197cedf1,SESCO,II.1.1,Formosa,AR-P,annual,2019,gas oil combustion consumption by freight transport,51.03756,TJ,N2O,3.9,kg/TJ,199.046484,kg +685c529e-92f4-3794-a67c-90a9c8de8fd5,SESCO,II.1.1,Jujuy,AR-Y,annual,2019,gas oil combustion consumption by freight transport,228.459,TJ,CO2,74100.0,kg/TJ,16928811.9,kg +76b5be59-6b56-3260-93a0-8a1269348dc3,SESCO,II.1.1,Jujuy,AR-Y,annual,2019,gas oil combustion consumption by freight transport,228.459,TJ,CH4,3.9,kg/TJ,890.9901,kg +76b5be59-6b56-3260-93a0-8a1269348dc3,SESCO,II.1.1,Jujuy,AR-Y,annual,2019,gas oil combustion consumption by freight transport,228.459,TJ,N2O,3.9,kg/TJ,890.9901,kg +7ffa5cdb-6e0f-3e97-8e6a-efcfb25e773e,SESCO,II.1.1,La Pampa,AR-L,annual,2019,gas oil combustion consumption by freight transport,226.14732,TJ,CO2,74100.0,kg/TJ,16757516.412,kg +ff75ad58-b60b-30f1-9ccf-133ca94be216,SESCO,II.1.1,La Pampa,AR-L,annual,2019,gas oil combustion consumption by freight transport,226.14732,TJ,CH4,3.9,kg/TJ,881.974548,kg +ff75ad58-b60b-30f1-9ccf-133ca94be216,SESCO,II.1.1,La Pampa,AR-L,annual,2019,gas oil combustion consumption by freight transport,226.14732,TJ,N2O,3.9,kg/TJ,881.974548,kg +8cc4e55a-4646-3e6a-b3c8-555fd44900af,SESCO,II.1.1,La Rioja,AR-F,annual,2019,gas oil combustion consumption by freight transport,11.45004,TJ,CO2,74100.0,kg/TJ,848447.9639999999,kg +fdebbb8a-296c-349a-b50f-23df81f98809,SESCO,II.1.1,La Rioja,AR-F,annual,2019,gas oil combustion consumption by freight transport,11.45004,TJ,CH4,3.9,kg/TJ,44.655156,kg +fdebbb8a-296c-349a-b50f-23df81f98809,SESCO,II.1.1,La Rioja,AR-F,annual,2019,gas oil combustion consumption by freight transport,11.45004,TJ,N2O,3.9,kg/TJ,44.655156,kg +fec03883-65fc-3ba2-9494-8ebeb98008ac,SESCO,II.1.1,Mendoza,AR-M,annual,2019,gas oil combustion consumption by freight transport,1947.9515999999999,TJ,CO2,74100.0,kg/TJ,144343213.56,kg +96ae2b25-41c3-3b35-9f44-ecba34316cbf,SESCO,II.1.1,Mendoza,AR-M,annual,2019,gas oil combustion consumption by freight transport,1947.9515999999999,TJ,CH4,3.9,kg/TJ,7597.011239999999,kg +96ae2b25-41c3-3b35-9f44-ecba34316cbf,SESCO,II.1.1,Mendoza,AR-M,annual,2019,gas oil combustion consumption by freight transport,1947.9515999999999,TJ,N2O,3.9,kg/TJ,7597.011239999999,kg +b1628353-b883-329c-b35d-e5dee1015dba,SESCO,II.1.1,Misiones,AR-N,annual,2019,gas oil combustion consumption by freight transport,1132.68708,TJ,CO2,74100.0,kg/TJ,83932112.62799999,kg +1c1e6a2c-83c5-3348-ab3d-95d59384ff99,SESCO,II.1.1,Misiones,AR-N,annual,2019,gas oil combustion consumption by freight transport,1132.68708,TJ,CH4,3.9,kg/TJ,4417.479611999999,kg +1c1e6a2c-83c5-3348-ab3d-95d59384ff99,SESCO,II.1.1,Misiones,AR-N,annual,2019,gas oil combustion consumption by freight transport,1132.68708,TJ,N2O,3.9,kg/TJ,4417.479611999999,kg +443f494c-b157-3067-9433-b06b20e0953a,SESCO,II.1.1,Neuquén,AR-Q,annual,2019,gas oil combustion consumption by freight transport,915.35304,TJ,CO2,74100.0,kg/TJ,67827660.264,kg +b775d86c-3bf3-3d80-8334-b5ff2af356db,SESCO,II.1.1,Neuquén,AR-Q,annual,2019,gas oil combustion consumption by freight transport,915.35304,TJ,CH4,3.9,kg/TJ,3569.876856,kg +b775d86c-3bf3-3d80-8334-b5ff2af356db,SESCO,II.1.1,Neuquén,AR-Q,annual,2019,gas oil combustion consumption by freight transport,915.35304,TJ,N2O,3.9,kg/TJ,3569.876856,kg +0983244f-7cc1-3696-aa7b-65db173dc90c,SESCO,II.1.1,Rio Negro,AR-R,annual,2019,gas oil combustion consumption by freight transport,452.72808,TJ,CO2,74100.0,kg/TJ,33547150.728,kg +2b52f489-8877-3734-a353-397b1c16d704,SESCO,II.1.1,Rio Negro,AR-R,annual,2019,gas oil combustion consumption by freight transport,452.72808,TJ,CH4,3.9,kg/TJ,1765.639512,kg +2b52f489-8877-3734-a353-397b1c16d704,SESCO,II.1.1,Rio Negro,AR-R,annual,2019,gas oil combustion consumption by freight transport,452.72808,TJ,N2O,3.9,kg/TJ,1765.639512,kg +aee0170a-80a1-32df-b046-e536baedc041,SESCO,II.1.1,Salta,AR-A,annual,2019,gas oil combustion consumption by freight transport,393.3468,TJ,CO2,74100.0,kg/TJ,29146997.88,kg +0740596d-4e4f-3d4c-9142-c56a1103a04f,SESCO,II.1.1,Salta,AR-A,annual,2019,gas oil combustion consumption by freight transport,393.3468,TJ,CH4,3.9,kg/TJ,1534.05252,kg +0740596d-4e4f-3d4c-9142-c56a1103a04f,SESCO,II.1.1,Salta,AR-A,annual,2019,gas oil combustion consumption by freight transport,393.3468,TJ,N2O,3.9,kg/TJ,1534.05252,kg +7b5d39f3-7964-3345-9393-99fbe34cef22,SESCO,II.1.1,San Juan,AR-J,annual,2019,gas oil combustion consumption by freight transport,184.3926,TJ,CO2,74100.0,kg/TJ,13663491.659999998,kg +e7e6ebd0-b26b-3073-bee1-a3030771520a,SESCO,II.1.1,San Juan,AR-J,annual,2019,gas oil combustion consumption by freight transport,184.3926,TJ,CH4,3.9,kg/TJ,719.13114,kg +e7e6ebd0-b26b-3073-bee1-a3030771520a,SESCO,II.1.1,San Juan,AR-J,annual,2019,gas oil combustion consumption by freight transport,184.3926,TJ,N2O,3.9,kg/TJ,719.13114,kg +4adfec5b-e57a-3419-b0df-d4499cd6dd27,SESCO,II.1.1,San Luis,AR-D,annual,2019,gas oil combustion consumption by freight transport,226.79748,TJ,CO2,74100.0,kg/TJ,16805693.268,kg +de4e8dc8-4cb6-3060-acf3-3fabd02bb0e8,SESCO,II.1.1,San Luis,AR-D,annual,2019,gas oil combustion consumption by freight transport,226.79748,TJ,CH4,3.9,kg/TJ,884.510172,kg +de4e8dc8-4cb6-3060-acf3-3fabd02bb0e8,SESCO,II.1.1,San Luis,AR-D,annual,2019,gas oil combustion consumption by freight transport,226.79748,TJ,N2O,3.9,kg/TJ,884.510172,kg +860b05e8-0b8c-31a5-bfbb-95b2460c2e6c,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2019,gas oil combustion consumption by freight transport,192.48348,TJ,CO2,74100.0,kg/TJ,14263025.867999999,kg +f5e43348-b361-3b52-bad9-d1e7a27daae7,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2019,gas oil combustion consumption by freight transport,192.48348,TJ,CH4,3.9,kg/TJ,750.685572,kg +f5e43348-b361-3b52-bad9-d1e7a27daae7,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2019,gas oil combustion consumption by freight transport,192.48348,TJ,N2O,3.9,kg/TJ,750.685572,kg +12df789c-62bd-3868-b527-e67913cacaed,SESCO,II.1.1,Santa Fe,AR-S,annual,2019,gas oil combustion consumption by freight transport,3022.19652,TJ,CO2,74100.0,kg/TJ,223944762.132,kg +85654396-bead-3cfe-9029-a8346ee61da9,SESCO,II.1.1,Santa Fe,AR-S,annual,2019,gas oil combustion consumption by freight transport,3022.19652,TJ,CH4,3.9,kg/TJ,11786.566428,kg +85654396-bead-3cfe-9029-a8346ee61da9,SESCO,II.1.1,Santa Fe,AR-S,annual,2019,gas oil combustion consumption by freight transport,3022.19652,TJ,N2O,3.9,kg/TJ,11786.566428,kg +ddeebddd-9cb9-35db-a1b4-d15b1b494cd0,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2019,gas oil combustion consumption by freight transport,286.90116,TJ,CO2,74100.0,kg/TJ,21259375.956,kg +22a2aa90-210c-346c-9579-a28003277917,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2019,gas oil combustion consumption by freight transport,286.90116,TJ,CH4,3.9,kg/TJ,1118.914524,kg +22a2aa90-210c-346c-9579-a28003277917,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2019,gas oil combustion consumption by freight transport,286.90116,TJ,N2O,3.9,kg/TJ,1118.914524,kg +320f3bab-8cb5-31c4-abfd-6913bfa74c9c,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2019,gas oil combustion consumption by freight transport,312.94368,TJ,CO2,74100.0,kg/TJ,23189126.687999997,kg +2ffd81a2-0b9f-323f-bc20-212c8b337e26,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2019,gas oil combustion consumption by freight transport,312.94368,TJ,CH4,3.9,kg/TJ,1220.4803519999998,kg +2ffd81a2-0b9f-323f-bc20-212c8b337e26,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2019,gas oil combustion consumption by freight transport,312.94368,TJ,N2O,3.9,kg/TJ,1220.4803519999998,kg +a62bf3fd-156e-36e0-99f7-d5dd27340f14,SESCO,II.1.1,Tucuman,AR-T,annual,2019,gas oil combustion consumption by freight transport,602.37324,TJ,CO2,74100.0,kg/TJ,44635857.084,kg +ef46c312-30ad-3771-ba67-2f5e8882a6c9,SESCO,II.1.1,Tucuman,AR-T,annual,2019,gas oil combustion consumption by freight transport,602.37324,TJ,CH4,3.9,kg/TJ,2349.255636,kg +ef46c312-30ad-3771-ba67-2f5e8882a6c9,SESCO,II.1.1,Tucuman,AR-T,annual,2019,gas oil combustion consumption by freight transport,602.37324,TJ,N2O,3.9,kg/TJ,2349.255636,kg +60625f0a-cc4c-30b0-ab72-95a696a76099,SESCO,II.1.1,Buenos Aires,AR-B,annual,2019,gas oil combustion consumption by freight transport,2229.57924,TJ,CO2,74100.0,kg/TJ,165211821.68400002,kg +6e18fa89-4cd0-3e52-9d09-e9bc9bfe96f1,SESCO,II.1.1,Buenos Aires,AR-B,annual,2019,gas oil combustion consumption by freight transport,2229.57924,TJ,CH4,3.9,kg/TJ,8695.359036,kg +6e18fa89-4cd0-3e52-9d09-e9bc9bfe96f1,SESCO,II.1.1,Buenos Aires,AR-B,annual,2019,gas oil combustion consumption by freight transport,2229.57924,TJ,N2O,3.9,kg/TJ,8695.359036,kg +670e9da6-dfd3-314c-997a-45186b6d61f8,SESCO,II.1.1,Capital Federal,AR-C,annual,2019,gas oil combustion consumption by freight transport,2349.9672,TJ,CO2,74100.0,kg/TJ,174132569.52,kg +5a5b4e1e-3ac9-3aed-ae5d-c857ad23d49c,SESCO,II.1.1,Capital Federal,AR-C,annual,2019,gas oil combustion consumption by freight transport,2349.9672,TJ,CH4,3.9,kg/TJ,9164.87208,kg +5a5b4e1e-3ac9-3aed-ae5d-c857ad23d49c,SESCO,II.1.1,Capital Federal,AR-C,annual,2019,gas oil combustion consumption by freight transport,2349.9672,TJ,N2O,3.9,kg/TJ,9164.87208,kg +1748feeb-395c-3b9c-8df9-1934cf8e8b3c,SESCO,II.1.1,Catamarca,AR-K,annual,2019,gas oil combustion consumption by freight transport,7.07952,TJ,CO2,74100.0,kg/TJ,524592.4319999999,kg +c091a547-dd48-371d-a7f8-43546148ea96,SESCO,II.1.1,Catamarca,AR-K,annual,2019,gas oil combustion consumption by freight transport,7.07952,TJ,CH4,3.9,kg/TJ,27.610127999999996,kg +c091a547-dd48-371d-a7f8-43546148ea96,SESCO,II.1.1,Catamarca,AR-K,annual,2019,gas oil combustion consumption by freight transport,7.07952,TJ,N2O,3.9,kg/TJ,27.610127999999996,kg +d4726b94-b74b-3e68-abf1-1811dec21cfd,SESCO,II.1.1,Chaco,AR-H,annual,2019,gas oil combustion consumption by freight transport,96.90996,TJ,CO2,74100.0,kg/TJ,7181028.036,kg +04625287-3400-3c75-b5ea-70064565c6aa,SESCO,II.1.1,Chaco,AR-H,annual,2019,gas oil combustion consumption by freight transport,96.90996,TJ,CH4,3.9,kg/TJ,377.948844,kg +04625287-3400-3c75-b5ea-70064565c6aa,SESCO,II.1.1,Chaco,AR-H,annual,2019,gas oil combustion consumption by freight transport,96.90996,TJ,N2O,3.9,kg/TJ,377.948844,kg +71cd0b3c-e7f6-3b71-aa7e-be67ed2553f3,SESCO,II.1.1,Chubut,AR-U,annual,2019,gas oil combustion consumption by freight transport,284.55336,TJ,CO2,74100.0,kg/TJ,21085403.976,kg +1f2335db-a7a2-3196-a1c9-3ffdd20618a2,SESCO,II.1.1,Chubut,AR-U,annual,2019,gas oil combustion consumption by freight transport,284.55336,TJ,CH4,3.9,kg/TJ,1109.758104,kg +1f2335db-a7a2-3196-a1c9-3ffdd20618a2,SESCO,II.1.1,Chubut,AR-U,annual,2019,gas oil combustion consumption by freight transport,284.55336,TJ,N2O,3.9,kg/TJ,1109.758104,kg +c078b943-7475-3083-90f4-93fd38949001,SESCO,II.1.1,Corrientes,AR-W,annual,2019,gas oil combustion consumption by freight transport,107.60148,TJ,CO2,74100.0,kg/TJ,7973269.668,kg +c255f626-c164-3631-8b4d-59bb897c0aeb,SESCO,II.1.1,Corrientes,AR-W,annual,2019,gas oil combustion consumption by freight transport,107.60148,TJ,CH4,3.9,kg/TJ,419.64577199999997,kg +c255f626-c164-3631-8b4d-59bb897c0aeb,SESCO,II.1.1,Corrientes,AR-W,annual,2019,gas oil combustion consumption by freight transport,107.60148,TJ,N2O,3.9,kg/TJ,419.64577199999997,kg +fdc61be8-397c-34db-a2b9-825f94c35206,SESCO,II.1.1,Córdoba,AR-X,annual,2019,gas oil combustion consumption by freight transport,411.37068,TJ,CO2,74100.0,kg/TJ,30482567.388,kg +eb9450c5-7315-36e7-b04d-8ec48217589e,SESCO,II.1.1,Córdoba,AR-X,annual,2019,gas oil combustion consumption by freight transport,411.37068,TJ,CH4,3.9,kg/TJ,1604.345652,kg +eb9450c5-7315-36e7-b04d-8ec48217589e,SESCO,II.1.1,Córdoba,AR-X,annual,2019,gas oil combustion consumption by freight transport,411.37068,TJ,N2O,3.9,kg/TJ,1604.345652,kg +1f4f525b-92d6-3f73-acdc-55f9f6af0bc0,SESCO,II.1.1,Entre Rios,AR-E,annual,2019,gas oil combustion consumption by freight transport,229.97603999999998,TJ,CO2,74100.0,kg/TJ,17041224.564,kg +e69c4ce0-7b36-33a1-ae90-feedd7da10cc,SESCO,II.1.1,Entre Rios,AR-E,annual,2019,gas oil combustion consumption by freight transport,229.97603999999998,TJ,CH4,3.9,kg/TJ,896.9065559999999,kg +e69c4ce0-7b36-33a1-ae90-feedd7da10cc,SESCO,II.1.1,Entre Rios,AR-E,annual,2019,gas oil combustion consumption by freight transport,229.97603999999998,TJ,N2O,3.9,kg/TJ,896.9065559999999,kg +5af0ae02-37da-385a-b793-fdbfbe48e8cb,SESCO,II.1.1,Formosa,AR-P,annual,2019,gas oil combustion consumption by freight transport,14.91756,TJ,CO2,74100.0,kg/TJ,1105391.196,kg +a58f527f-53c2-3b9f-95b9-44aaba946b9b,SESCO,II.1.1,Formosa,AR-P,annual,2019,gas oil combustion consumption by freight transport,14.91756,TJ,CH4,3.9,kg/TJ,58.178484,kg +a58f527f-53c2-3b9f-95b9-44aaba946b9b,SESCO,II.1.1,Formosa,AR-P,annual,2019,gas oil combustion consumption by freight transport,14.91756,TJ,N2O,3.9,kg/TJ,58.178484,kg +cd8fff05-6658-38b3-86aa-65ec148fadb4,SESCO,II.1.1,Jujuy,AR-Y,annual,2019,gas oil combustion consumption by freight transport,25.175639999999998,TJ,CO2,74100.0,kg/TJ,1865514.9239999999,kg +2f42e92d-5068-3e02-b579-dbfdec495e61,SESCO,II.1.1,Jujuy,AR-Y,annual,2019,gas oil combustion consumption by freight transport,25.175639999999998,TJ,CH4,3.9,kg/TJ,98.18499599999998,kg +2f42e92d-5068-3e02-b579-dbfdec495e61,SESCO,II.1.1,Jujuy,AR-Y,annual,2019,gas oil combustion consumption by freight transport,25.175639999999998,TJ,N2O,3.9,kg/TJ,98.18499599999998,kg +16053e1b-400d-3b2f-a7e1-1fe46143b782,SESCO,II.1.1,La Pampa,AR-L,annual,2019,gas oil combustion consumption by freight transport,68.66412,TJ,CO2,74100.0,kg/TJ,5088011.291999999,kg +102e85b2-7454-3187-a124-71228d7d983e,SESCO,II.1.1,La Pampa,AR-L,annual,2019,gas oil combustion consumption by freight transport,68.66412,TJ,CH4,3.9,kg/TJ,267.79006799999996,kg +102e85b2-7454-3187-a124-71228d7d983e,SESCO,II.1.1,La Pampa,AR-L,annual,2019,gas oil combustion consumption by freight transport,68.66412,TJ,N2O,3.9,kg/TJ,267.79006799999996,kg +6a414507-bfb0-336e-bdb9-80a8916c7064,SESCO,II.1.1,La Rioja,AR-F,annual,2019,gas oil combustion consumption by freight transport,13.58112,TJ,CO2,74100.0,kg/TJ,1006360.992,kg +a3ff107d-95e8-37f2-81c4-93f1029cb2d2,SESCO,II.1.1,La Rioja,AR-F,annual,2019,gas oil combustion consumption by freight transport,13.58112,TJ,CH4,3.9,kg/TJ,52.966368,kg +a3ff107d-95e8-37f2-81c4-93f1029cb2d2,SESCO,II.1.1,La Rioja,AR-F,annual,2019,gas oil combustion consumption by freight transport,13.58112,TJ,N2O,3.9,kg/TJ,52.966368,kg +47ed6ab4-fbd6-3e3c-b4a7-cb8545880db0,SESCO,II.1.1,Mendoza,AR-M,annual,2019,gas oil combustion consumption by freight transport,461.64972,TJ,CO2,74100.0,kg/TJ,34208244.252,kg +fbc29fef-e7c4-3587-b8c9-6ec98929d3c7,SESCO,II.1.1,Mendoza,AR-M,annual,2019,gas oil combustion consumption by freight transport,461.64972,TJ,CH4,3.9,kg/TJ,1800.433908,kg +fbc29fef-e7c4-3587-b8c9-6ec98929d3c7,SESCO,II.1.1,Mendoza,AR-M,annual,2019,gas oil combustion consumption by freight transport,461.64972,TJ,N2O,3.9,kg/TJ,1800.433908,kg +a4726737-d9e2-3ca6-a017-c2acd1719941,SESCO,II.1.1,Misiones,AR-N,annual,2019,gas oil combustion consumption by freight transport,136.64196,TJ,CO2,74100.0,kg/TJ,10125169.236000001,kg +f09cd70d-706c-3622-9e7b-9fb38e1bc22f,SESCO,II.1.1,Misiones,AR-N,annual,2019,gas oil combustion consumption by freight transport,136.64196,TJ,CH4,3.9,kg/TJ,532.903644,kg +f09cd70d-706c-3622-9e7b-9fb38e1bc22f,SESCO,II.1.1,Misiones,AR-N,annual,2019,gas oil combustion consumption by freight transport,136.64196,TJ,N2O,3.9,kg/TJ,532.903644,kg +39f6ea4c-a7b8-3830-8af7-c888daeb019c,SESCO,II.1.1,Neuquén,AR-Q,annual,2019,gas oil combustion consumption by freight transport,973.2533999999999,TJ,CO2,74100.0,kg/TJ,72118076.94,kg +d0d4a5d9-a150-3a42-a85a-9c0fe6cb7f23,SESCO,II.1.1,Neuquén,AR-Q,annual,2019,gas oil combustion consumption by freight transport,973.2533999999999,TJ,CH4,3.9,kg/TJ,3795.68826,kg +d0d4a5d9-a150-3a42-a85a-9c0fe6cb7f23,SESCO,II.1.1,Neuquén,AR-Q,annual,2019,gas oil combustion consumption by freight transport,973.2533999999999,TJ,N2O,3.9,kg/TJ,3795.68826,kg +7d6286b8-c70c-361e-86f2-402c349b19d8,SESCO,II.1.1,Rio Negro,AR-R,annual,2019,gas oil combustion consumption by freight transport,267.43248,TJ,CO2,74100.0,kg/TJ,19816746.768,kg +967ddba7-1924-374c-a18a-e5d723ed5d81,SESCO,II.1.1,Rio Negro,AR-R,annual,2019,gas oil combustion consumption by freight transport,267.43248,TJ,CH4,3.9,kg/TJ,1042.986672,kg +967ddba7-1924-374c-a18a-e5d723ed5d81,SESCO,II.1.1,Rio Negro,AR-R,annual,2019,gas oil combustion consumption by freight transport,267.43248,TJ,N2O,3.9,kg/TJ,1042.986672,kg +7729faef-9512-34ef-91bd-9053ed93d137,SESCO,II.1.1,Salta,AR-A,annual,2019,gas oil combustion consumption by freight transport,151.8846,TJ,CO2,74100.0,kg/TJ,11254648.860000001,kg +1acdc6dd-5754-3cfd-ae6a-b8220c994c83,SESCO,II.1.1,Salta,AR-A,annual,2019,gas oil combustion consumption by freight transport,151.8846,TJ,CH4,3.9,kg/TJ,592.3499400000001,kg +1acdc6dd-5754-3cfd-ae6a-b8220c994c83,SESCO,II.1.1,Salta,AR-A,annual,2019,gas oil combustion consumption by freight transport,151.8846,TJ,N2O,3.9,kg/TJ,592.3499400000001,kg +14edbfec-2673-3af6-8cac-c0c830c1b53b,SESCO,II.1.1,San Juan,AR-J,annual,2019,gas oil combustion consumption by freight transport,26.98164,TJ,CO2,74100.0,kg/TJ,1999339.524,kg +10a870e3-13bc-3c32-b8c9-2b0420b8ca40,SESCO,II.1.1,San Juan,AR-J,annual,2019,gas oil combustion consumption by freight transport,26.98164,TJ,CH4,3.9,kg/TJ,105.22839599999999,kg +10a870e3-13bc-3c32-b8c9-2b0420b8ca40,SESCO,II.1.1,San Juan,AR-J,annual,2019,gas oil combustion consumption by freight transport,26.98164,TJ,N2O,3.9,kg/TJ,105.22839599999999,kg +fe67abf1-28b8-3887-ad88-da25ee732556,SESCO,II.1.1,San Luis,AR-D,annual,2019,gas oil combustion consumption by freight transport,56.92512,TJ,CO2,74100.0,kg/TJ,4218151.392,kg +d84695a3-7bcd-31fa-8f7d-50d02c5f97d3,SESCO,II.1.1,San Luis,AR-D,annual,2019,gas oil combustion consumption by freight transport,56.92512,TJ,CH4,3.9,kg/TJ,222.007968,kg +d84695a3-7bcd-31fa-8f7d-50d02c5f97d3,SESCO,II.1.1,San Luis,AR-D,annual,2019,gas oil combustion consumption by freight transport,56.92512,TJ,N2O,3.9,kg/TJ,222.007968,kg +200a0f2c-2b80-37fb-9112-07e2bf5f26b9,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2019,gas oil combustion consumption by freight transport,73.143,TJ,CO2,74100.0,kg/TJ,5419896.3,kg +22950bba-d1e9-3628-aa5f-7f7fb9b1599a,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2019,gas oil combustion consumption by freight transport,73.143,TJ,CH4,3.9,kg/TJ,285.2577,kg +22950bba-d1e9-3628-aa5f-7f7fb9b1599a,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2019,gas oil combustion consumption by freight transport,73.143,TJ,N2O,3.9,kg/TJ,285.2577,kg +e9a1b4df-6043-327e-8848-14ab9cf5df59,SESCO,II.1.1,Santa Fe,AR-S,annual,2019,gas oil combustion consumption by freight transport,608.91096,TJ,CO2,74100.0,kg/TJ,45120302.136,kg +af20c2b4-49f0-3d21-9252-29ce967b4ec6,SESCO,II.1.1,Santa Fe,AR-S,annual,2019,gas oil combustion consumption by freight transport,608.91096,TJ,CH4,3.9,kg/TJ,2374.7527440000003,kg +af20c2b4-49f0-3d21-9252-29ce967b4ec6,SESCO,II.1.1,Santa Fe,AR-S,annual,2019,gas oil combustion consumption by freight transport,608.91096,TJ,N2O,3.9,kg/TJ,2374.7527440000003,kg +c1d42dda-e5eb-38ca-b956-d8af5fcec4f1,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2019,gas oil combustion consumption by freight transport,32.11068,TJ,CO2,74100.0,kg/TJ,2379401.3880000003,kg +3c3b53ab-981b-3b24-9f38-824486a4a2aa,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2019,gas oil combustion consumption by freight transport,32.11068,TJ,CH4,3.9,kg/TJ,125.23165200000001,kg +3c3b53ab-981b-3b24-9f38-824486a4a2aa,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2019,gas oil combustion consumption by freight transport,32.11068,TJ,N2O,3.9,kg/TJ,125.23165200000001,kg +4eea6358-68c6-384e-b866-6f9bcc498501,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2019,gas oil combustion consumption by freight transport,105.03696,TJ,CO2,74100.0,kg/TJ,7783238.736,kg +82a3e946-9772-3a93-a933-f6b2b02225de,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2019,gas oil combustion consumption by freight transport,105.03696,TJ,CH4,3.9,kg/TJ,409.644144,kg +82a3e946-9772-3a93-a933-f6b2b02225de,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2019,gas oil combustion consumption by freight transport,105.03696,TJ,N2O,3.9,kg/TJ,409.644144,kg +2351e9b9-f3a8-33ae-9fb7-274ce69173ba,SESCO,II.1.1,Tucuman,AR-T,annual,2019,gas oil combustion consumption by freight transport,116.1258,TJ,CO2,74100.0,kg/TJ,8604921.78,kg +92e56c74-2abd-3e6a-8351-b2041851817d,SESCO,II.1.1,Tucuman,AR-T,annual,2019,gas oil combustion consumption by freight transport,116.1258,TJ,CH4,3.9,kg/TJ,452.89061999999996,kg +92e56c74-2abd-3e6a-8351-b2041851817d,SESCO,II.1.1,Tucuman,AR-T,annual,2019,gas oil combustion consumption by freight transport,116.1258,TJ,N2O,3.9,kg/TJ,452.89061999999996,kg +27fe5466-574e-3ffd-ad5a-7a3ceadb48f2,SESCO,II.1.1,Neuquén,AR-Q,annual,2019,jet kerosene combustion consumption by freight transport,0.031452999999999995,TJ,CO2,71500.0,kg/TJ,2248.8894999999998,kg +81569fb2-0cd1-3fb9-94d1-d24e9d287347,SESCO,II.1.1,Neuquén,AR-Q,annual,2019,jet kerosene combustion consumption by freight transport,0.031452999999999995,TJ,CH4,0.5,kg/TJ,0.015726499999999997,kg +5d0c3f55-2d4d-3ec2-a6e1-a958a0138e84,SESCO,II.1.1,Neuquén,AR-Q,annual,2019,jet kerosene combustion consumption by freight transport,0.031452999999999995,TJ,N2O,2.0,kg/TJ,0.06290599999999999,kg +e41c87ae-7a9f-3f43-9dd4-07b659f08a21,SESCO,II.1.1,Santa Fe,AR-S,annual,2019,jet kerosene combustion consumption by freight transport,0.031452999999999995,TJ,CO2,71500.0,kg/TJ,2248.8894999999998,kg +4d15ecf2-03f8-30f4-bf52-ba6ebaabf8af,SESCO,II.1.1,Santa Fe,AR-S,annual,2019,jet kerosene combustion consumption by freight transport,0.031452999999999995,TJ,CH4,0.5,kg/TJ,0.015726499999999997,kg +5ee6b309-fa7b-365d-b049-cfabf52dbfc2,SESCO,II.1.1,Santa Fe,AR-S,annual,2019,jet kerosene combustion consumption by freight transport,0.031452999999999995,TJ,N2O,2.0,kg/TJ,0.06290599999999999,kg +d1fdce23-d148-33f0-90e7-dfd9c15142da,SESCO,II.1.1,Buenos Aires,AR-B,annual,2019,gas oil combustion consumption by public passenger transport,7815.8261999999995,TJ,CO2,74100.0,kg/TJ,579152721.42,kg +b63b8160-9fbd-34b6-abf8-1526899feb36,SESCO,II.1.1,Buenos Aires,AR-B,annual,2019,gas oil combustion consumption by public passenger transport,7815.8261999999995,TJ,CH4,3.9,kg/TJ,30481.722179999997,kg +b63b8160-9fbd-34b6-abf8-1526899feb36,SESCO,II.1.1,Buenos Aires,AR-B,annual,2019,gas oil combustion consumption by public passenger transport,7815.8261999999995,TJ,N2O,3.9,kg/TJ,30481.722179999997,kg +f702140e-725d-39ed-9f7b-ebe7c172b7c2,SESCO,II.1.1,Capital Federal,AR-C,annual,2019,gas oil combustion consumption by public passenger transport,1601.7775199999999,TJ,CO2,74100.0,kg/TJ,118691714.232,kg +d73236aa-2f82-337c-83b3-1b956f55f8f5,SESCO,II.1.1,Capital Federal,AR-C,annual,2019,gas oil combustion consumption by public passenger transport,1601.7775199999999,TJ,CH4,3.9,kg/TJ,6246.932327999999,kg +d73236aa-2f82-337c-83b3-1b956f55f8f5,SESCO,II.1.1,Capital Federal,AR-C,annual,2019,gas oil combustion consumption by public passenger transport,1601.7775199999999,TJ,N2O,3.9,kg/TJ,6246.932327999999,kg +820e4d48-ea80-3827-9c14-df815c22ddbb,SESCO,II.1.1,Catamarca,AR-K,annual,2019,gas oil combustion consumption by public passenger transport,62.34312,TJ,CO2,74100.0,kg/TJ,4619625.192,kg +357aec11-f37e-3b6d-9a50-0ff8d8b81fad,SESCO,II.1.1,Catamarca,AR-K,annual,2019,gas oil combustion consumption by public passenger transport,62.34312,TJ,CH4,3.9,kg/TJ,243.13816799999998,kg +357aec11-f37e-3b6d-9a50-0ff8d8b81fad,SESCO,II.1.1,Catamarca,AR-K,annual,2019,gas oil combustion consumption by public passenger transport,62.34312,TJ,N2O,3.9,kg/TJ,243.13816799999998,kg +732ea08f-2065-37a1-a6d4-ff8635d838be,SESCO,II.1.1,Chaco,AR-H,annual,2019,gas oil combustion consumption by public passenger transport,142.56564,TJ,CO2,74100.0,kg/TJ,10564113.924,kg +524cc0e1-757d-37b0-82bb-3d4dbf7500da,SESCO,II.1.1,Chaco,AR-H,annual,2019,gas oil combustion consumption by public passenger transport,142.56564,TJ,CH4,3.9,kg/TJ,556.005996,kg +524cc0e1-757d-37b0-82bb-3d4dbf7500da,SESCO,II.1.1,Chaco,AR-H,annual,2019,gas oil combustion consumption by public passenger transport,142.56564,TJ,N2O,3.9,kg/TJ,556.005996,kg +3f9a2747-01a1-3886-8209-f82dea56e593,SESCO,II.1.1,Chubut,AR-U,annual,2019,gas oil combustion consumption by public passenger transport,110.67168,TJ,CO2,74100.0,kg/TJ,8200771.488,kg +9a680c6b-6bd5-36e5-be0f-c3aed527a911,SESCO,II.1.1,Chubut,AR-U,annual,2019,gas oil combustion consumption by public passenger transport,110.67168,TJ,CH4,3.9,kg/TJ,431.619552,kg +9a680c6b-6bd5-36e5-be0f-c3aed527a911,SESCO,II.1.1,Chubut,AR-U,annual,2019,gas oil combustion consumption by public passenger transport,110.67168,TJ,N2O,3.9,kg/TJ,431.619552,kg +7ae45d96-eeb6-30ce-9c72-c45d944cc23a,SESCO,II.1.1,Corrientes,AR-W,annual,2019,gas oil combustion consumption by public passenger transport,90.91404,TJ,CO2,74100.0,kg/TJ,6736730.364,kg +b191df0e-0932-3fd9-8664-60fa57544bc9,SESCO,II.1.1,Corrientes,AR-W,annual,2019,gas oil combustion consumption by public passenger transport,90.91404,TJ,CH4,3.9,kg/TJ,354.564756,kg +b191df0e-0932-3fd9-8664-60fa57544bc9,SESCO,II.1.1,Corrientes,AR-W,annual,2019,gas oil combustion consumption by public passenger transport,90.91404,TJ,N2O,3.9,kg/TJ,354.564756,kg +7321865f-d7d5-37a7-83b7-29c2922aebcc,SESCO,II.1.1,Córdoba,AR-X,annual,2019,gas oil combustion consumption by public passenger transport,755.70264,TJ,CO2,74100.0,kg/TJ,55997565.624,kg +fa9cd323-1abb-3293-b21d-fa431d4d1204,SESCO,II.1.1,Córdoba,AR-X,annual,2019,gas oil combustion consumption by public passenger transport,755.70264,TJ,CH4,3.9,kg/TJ,2947.240296,kg +fa9cd323-1abb-3293-b21d-fa431d4d1204,SESCO,II.1.1,Córdoba,AR-X,annual,2019,gas oil combustion consumption by public passenger transport,755.70264,TJ,N2O,3.9,kg/TJ,2947.240296,kg +d849dee5-b903-3650-a473-1a40ab92b27e,SESCO,II.1.1,Entre Rios,AR-E,annual,2019,gas oil combustion consumption by public passenger transport,316.5918,TJ,CO2,74100.0,kg/TJ,23459452.38,kg +8db13ac0-d2f7-3527-870b-18a0bce96133,SESCO,II.1.1,Entre Rios,AR-E,annual,2019,gas oil combustion consumption by public passenger transport,316.5918,TJ,CH4,3.9,kg/TJ,1234.7080199999998,kg +8db13ac0-d2f7-3527-870b-18a0bce96133,SESCO,II.1.1,Entre Rios,AR-E,annual,2019,gas oil combustion consumption by public passenger transport,316.5918,TJ,N2O,3.9,kg/TJ,1234.7080199999998,kg +6b56a770-2b09-335a-a669-70a7837d6d82,SESCO,II.1.1,Formosa,AR-P,annual,2019,gas oil combustion consumption by public passenger transport,19.82988,TJ,CO2,74100.0,kg/TJ,1469394.108,kg +5d60d315-2117-34bf-94d5-abf103cc9262,SESCO,II.1.1,Formosa,AR-P,annual,2019,gas oil combustion consumption by public passenger transport,19.82988,TJ,CH4,3.9,kg/TJ,77.33653199999999,kg +5d60d315-2117-34bf-94d5-abf103cc9262,SESCO,II.1.1,Formosa,AR-P,annual,2019,gas oil combustion consumption by public passenger transport,19.82988,TJ,N2O,3.9,kg/TJ,77.33653199999999,kg +a3f41725-294b-3d44-8987-0bf6d4deae33,SESCO,II.1.1,Jujuy,AR-Y,annual,2019,gas oil combustion consumption by public passenger transport,290.11584,TJ,CO2,74100.0,kg/TJ,21497583.744,kg +7174a2b9-c5fb-3f74-b921-0b1b3d67616a,SESCO,II.1.1,Jujuy,AR-Y,annual,2019,gas oil combustion consumption by public passenger transport,290.11584,TJ,CH4,3.9,kg/TJ,1131.4517759999999,kg +7174a2b9-c5fb-3f74-b921-0b1b3d67616a,SESCO,II.1.1,Jujuy,AR-Y,annual,2019,gas oil combustion consumption by public passenger transport,290.11584,TJ,N2O,3.9,kg/TJ,1131.4517759999999,kg +3ad68a93-3da8-347c-b6c3-37227698da2e,SESCO,II.1.1,La Pampa,AR-L,annual,2019,gas oil combustion consumption by public passenger transport,9.60792,TJ,CO2,74100.0,kg/TJ,711946.872,kg +0730c04a-e813-3932-ae58-ff206fc5b41c,SESCO,II.1.1,La Pampa,AR-L,annual,2019,gas oil combustion consumption by public passenger transport,9.60792,TJ,CH4,3.9,kg/TJ,37.470888,kg +0730c04a-e813-3932-ae58-ff206fc5b41c,SESCO,II.1.1,La Pampa,AR-L,annual,2019,gas oil combustion consumption by public passenger transport,9.60792,TJ,N2O,3.9,kg/TJ,37.470888,kg +8ad02379-a152-3965-a788-0ce3360450c8,SESCO,II.1.1,La Rioja,AR-F,annual,2019,gas oil combustion consumption by public passenger transport,23.58636,TJ,CO2,74100.0,kg/TJ,1747749.2759999998,kg +ee4cd55a-9251-3e67-8e27-cae09faed26b,SESCO,II.1.1,La Rioja,AR-F,annual,2019,gas oil combustion consumption by public passenger transport,23.58636,TJ,CH4,3.9,kg/TJ,91.98680399999999,kg +ee4cd55a-9251-3e67-8e27-cae09faed26b,SESCO,II.1.1,La Rioja,AR-F,annual,2019,gas oil combustion consumption by public passenger transport,23.58636,TJ,N2O,3.9,kg/TJ,91.98680399999999,kg +d94c0799-b2f1-3513-8491-16c6f8471245,SESCO,II.1.1,Mendoza,AR-M,annual,2019,gas oil combustion consumption by public passenger transport,581.78484,TJ,CO2,74100.0,kg/TJ,43110256.644,kg +6e7232be-a364-3161-8f36-2ac131107685,SESCO,II.1.1,Mendoza,AR-M,annual,2019,gas oil combustion consumption by public passenger transport,581.78484,TJ,CH4,3.9,kg/TJ,2268.960876,kg +6e7232be-a364-3161-8f36-2ac131107685,SESCO,II.1.1,Mendoza,AR-M,annual,2019,gas oil combustion consumption by public passenger transport,581.78484,TJ,N2O,3.9,kg/TJ,2268.960876,kg +9af098f0-36b5-3751-b0eb-4e5a3dde7e83,SESCO,II.1.1,Misiones,AR-N,annual,2019,gas oil combustion consumption by public passenger transport,555.81456,TJ,CO2,74100.0,kg/TJ,41185858.896000005,kg +18105cd7-d536-31ee-8b45-805f70b0f260,SESCO,II.1.1,Misiones,AR-N,annual,2019,gas oil combustion consumption by public passenger transport,555.81456,TJ,CH4,3.9,kg/TJ,2167.676784,kg +18105cd7-d536-31ee-8b45-805f70b0f260,SESCO,II.1.1,Misiones,AR-N,annual,2019,gas oil combustion consumption by public passenger transport,555.81456,TJ,N2O,3.9,kg/TJ,2167.676784,kg +e5225983-f690-3e35-a584-f0aa46cdd62c,SESCO,II.1.1,Neuquén,AR-Q,annual,2019,gas oil combustion consumption by public passenger transport,184.06752,TJ,CO2,74100.0,kg/TJ,13639403.232,kg +d0f42e48-3ecf-3af2-9434-2734c04f4957,SESCO,II.1.1,Neuquén,AR-Q,annual,2019,gas oil combustion consumption by public passenger transport,184.06752,TJ,CH4,3.9,kg/TJ,717.863328,kg +d0f42e48-3ecf-3af2-9434-2734c04f4957,SESCO,II.1.1,Neuquén,AR-Q,annual,2019,gas oil combustion consumption by public passenger transport,184.06752,TJ,N2O,3.9,kg/TJ,717.863328,kg +185d2f09-b8ed-369c-bf45-f2a023cd6973,SESCO,II.1.1,Rio Negro,AR-R,annual,2019,gas oil combustion consumption by public passenger transport,138.91752,TJ,CO2,74100.0,kg/TJ,10293788.231999999,kg +99723dac-6d57-3c65-a462-eb7dd2c2585f,SESCO,II.1.1,Rio Negro,AR-R,annual,2019,gas oil combustion consumption by public passenger transport,138.91752,TJ,CH4,3.9,kg/TJ,541.778328,kg +99723dac-6d57-3c65-a462-eb7dd2c2585f,SESCO,II.1.1,Rio Negro,AR-R,annual,2019,gas oil combustion consumption by public passenger transport,138.91752,TJ,N2O,3.9,kg/TJ,541.778328,kg +0891698a-9a2a-3e24-8902-11e85fadf538,SESCO,II.1.1,Salta,AR-A,annual,2019,gas oil combustion consumption by public passenger transport,161.9982,TJ,CO2,74100.0,kg/TJ,12004066.62,kg +0796a414-0662-3600-a079-cb29c5137ebb,SESCO,II.1.1,Salta,AR-A,annual,2019,gas oil combustion consumption by public passenger transport,161.9982,TJ,CH4,3.9,kg/TJ,631.79298,kg +0796a414-0662-3600-a079-cb29c5137ebb,SESCO,II.1.1,Salta,AR-A,annual,2019,gas oil combustion consumption by public passenger transport,161.9982,TJ,N2O,3.9,kg/TJ,631.79298,kg +390e4c2c-eb54-33c1-8422-ce675321c903,SESCO,II.1.1,San Juan,AR-J,annual,2019,gas oil combustion consumption by public passenger transport,152.75148,TJ,CO2,74100.0,kg/TJ,11318884.668,kg +d7d6393a-b5b4-3982-b21b-a6c8432763fd,SESCO,II.1.1,San Juan,AR-J,annual,2019,gas oil combustion consumption by public passenger transport,152.75148,TJ,CH4,3.9,kg/TJ,595.7307719999999,kg +d7d6393a-b5b4-3982-b21b-a6c8432763fd,SESCO,II.1.1,San Juan,AR-J,annual,2019,gas oil combustion consumption by public passenger transport,152.75148,TJ,N2O,3.9,kg/TJ,595.7307719999999,kg +96053b10-8e79-3a3a-bdb1-6c67a6ed65ec,SESCO,II.1.1,San Luis,AR-D,annual,2019,gas oil combustion consumption by public passenger transport,0.43344,TJ,CO2,74100.0,kg/TJ,32117.904,kg +dbdfd19c-3252-3a16-b67d-d3be159ce44e,SESCO,II.1.1,San Luis,AR-D,annual,2019,gas oil combustion consumption by public passenger transport,0.43344,TJ,CH4,3.9,kg/TJ,1.690416,kg +dbdfd19c-3252-3a16-b67d-d3be159ce44e,SESCO,II.1.1,San Luis,AR-D,annual,2019,gas oil combustion consumption by public passenger transport,0.43344,TJ,N2O,3.9,kg/TJ,1.690416,kg +39bbf491-28db-33e6-a7e8-300990d78632,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2019,gas oil combustion consumption by public passenger transport,0.25284,TJ,CO2,74100.0,kg/TJ,18735.444,kg +1be62ce1-8447-33c9-aa15-0f5306466980,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2019,gas oil combustion consumption by public passenger transport,0.25284,TJ,CH4,3.9,kg/TJ,0.9860760000000001,kg +1be62ce1-8447-33c9-aa15-0f5306466980,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2019,gas oil combustion consumption by public passenger transport,0.25284,TJ,N2O,3.9,kg/TJ,0.9860760000000001,kg +5a04b818-9701-3cba-bb07-6d9be467242c,SESCO,II.1.1,Santa Fe,AR-S,annual,2019,gas oil combustion consumption by public passenger transport,251.61192,TJ,CO2,74100.0,kg/TJ,18644443.272,kg +6736ee52-7108-3f12-bf0a-29a66cacca13,SESCO,II.1.1,Santa Fe,AR-S,annual,2019,gas oil combustion consumption by public passenger transport,251.61192,TJ,CH4,3.9,kg/TJ,981.286488,kg +6736ee52-7108-3f12-bf0a-29a66cacca13,SESCO,II.1.1,Santa Fe,AR-S,annual,2019,gas oil combustion consumption by public passenger transport,251.61192,TJ,N2O,3.9,kg/TJ,981.286488,kg +b8da899e-a156-3ef4-b1c7-0fea1006cd58,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2019,gas oil combustion consumption by public passenger transport,2.13108,TJ,CO2,74100.0,kg/TJ,157913.028,kg +6b499aa8-87f9-31d2-a311-dd7b61f5b1cf,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2019,gas oil combustion consumption by public passenger transport,2.13108,TJ,CH4,3.9,kg/TJ,8.311212,kg +6b499aa8-87f9-31d2-a311-dd7b61f5b1cf,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2019,gas oil combustion consumption by public passenger transport,2.13108,TJ,N2O,3.9,kg/TJ,8.311212,kg +37cbb780-f700-389e-af91-59842a421b16,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2019,gas oil combustion consumption by public passenger transport,10.72764,TJ,CO2,74100.0,kg/TJ,794918.124,kg +7273c0ff-9e71-3101-aa07-633b72c7ef61,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2019,gas oil combustion consumption by public passenger transport,10.72764,TJ,CH4,3.9,kg/TJ,41.837796,kg +7273c0ff-9e71-3101-aa07-633b72c7ef61,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2019,gas oil combustion consumption by public passenger transport,10.72764,TJ,N2O,3.9,kg/TJ,41.837796,kg +52a8cb50-a968-3b15-a33d-206ea2cb9193,SESCO,II.1.1,Tucuman,AR-T,annual,2019,gas oil combustion consumption by public passenger transport,22.3944,TJ,CO2,74100.0,kg/TJ,1659425.04,kg +5789d964-0c0b-3e67-a845-9b42b8715100,SESCO,II.1.1,Tucuman,AR-T,annual,2019,gas oil combustion consumption by public passenger transport,22.3944,TJ,CH4,3.9,kg/TJ,87.33816,kg +5789d964-0c0b-3e67-a845-9b42b8715100,SESCO,II.1.1,Tucuman,AR-T,annual,2019,gas oil combustion consumption by public passenger transport,22.3944,TJ,N2O,3.9,kg/TJ,87.33816,kg +9de3a566-1e22-3156-8a77-e304a799ec9b,SESCO,II.1.1,Buenos Aires,AR-B,annual,2019,gas oil combustion consumption by public passenger transport,2418.01728,TJ,CO2,74100.0,kg/TJ,179175080.448,kg +e3eaff03-021c-32cf-9640-cd04896d80fe,SESCO,II.1.1,Buenos Aires,AR-B,annual,2019,gas oil combustion consumption by public passenger transport,2418.01728,TJ,CH4,3.9,kg/TJ,9430.267392,kg +e3eaff03-021c-32cf-9640-cd04896d80fe,SESCO,II.1.1,Buenos Aires,AR-B,annual,2019,gas oil combustion consumption by public passenger transport,2418.01728,TJ,N2O,3.9,kg/TJ,9430.267392,kg +dc6d1da7-4b25-3c97-a549-092b142e6199,SESCO,II.1.1,Capital Federal,AR-C,annual,2019,gas oil combustion consumption by public passenger transport,382.25795999999997,TJ,CO2,74100.0,kg/TJ,28325314.836,kg +f5044372-64d9-3e8c-a8bf-6cfbf1a6f41a,SESCO,II.1.1,Capital Federal,AR-C,annual,2019,gas oil combustion consumption by public passenger transport,382.25795999999997,TJ,CH4,3.9,kg/TJ,1490.806044,kg +f5044372-64d9-3e8c-a8bf-6cfbf1a6f41a,SESCO,II.1.1,Capital Federal,AR-C,annual,2019,gas oil combustion consumption by public passenger transport,382.25795999999997,TJ,N2O,3.9,kg/TJ,1490.806044,kg +140c2e54-8df5-3d8a-b1d9-d5696587ecec,SESCO,II.1.1,Catamarca,AR-K,annual,2019,gas oil combustion consumption by public passenger transport,0.03612,TJ,CO2,74100.0,kg/TJ,2676.4919999999997,kg +225e3c3d-be2d-39ad-9ca1-9a35df58990a,SESCO,II.1.1,Catamarca,AR-K,annual,2019,gas oil combustion consumption by public passenger transport,0.03612,TJ,CH4,3.9,kg/TJ,0.140868,kg +225e3c3d-be2d-39ad-9ca1-9a35df58990a,SESCO,II.1.1,Catamarca,AR-K,annual,2019,gas oil combustion consumption by public passenger transport,0.03612,TJ,N2O,3.9,kg/TJ,0.140868,kg +b68a4110-b345-354b-897b-c969815a7fea,SESCO,II.1.1,Chaco,AR-H,annual,2019,gas oil combustion consumption by public passenger transport,27.52344,TJ,CO2,74100.0,kg/TJ,2039486.904,kg +8a46503c-cbe1-3535-8eb3-2003e7b7ccbd,SESCO,II.1.1,Chaco,AR-H,annual,2019,gas oil combustion consumption by public passenger transport,27.52344,TJ,CH4,3.9,kg/TJ,107.341416,kg +8a46503c-cbe1-3535-8eb3-2003e7b7ccbd,SESCO,II.1.1,Chaco,AR-H,annual,2019,gas oil combustion consumption by public passenger transport,27.52344,TJ,N2O,3.9,kg/TJ,107.341416,kg +65ea0d89-0e81-301e-b2be-2d2a03132c13,SESCO,II.1.1,Chubut,AR-U,annual,2019,gas oil combustion consumption by public passenger transport,24.45324,TJ,CO2,74100.0,kg/TJ,1811985.084,kg +7a515e5c-1eb0-3b5a-9d4c-a8a27c50b1b1,SESCO,II.1.1,Chubut,AR-U,annual,2019,gas oil combustion consumption by public passenger transport,24.45324,TJ,CH4,3.9,kg/TJ,95.367636,kg +7a515e5c-1eb0-3b5a-9d4c-a8a27c50b1b1,SESCO,II.1.1,Chubut,AR-U,annual,2019,gas oil combustion consumption by public passenger transport,24.45324,TJ,N2O,3.9,kg/TJ,95.367636,kg +46291356-75f5-3121-ab7d-d13e9c57830a,SESCO,II.1.1,Corrientes,AR-W,annual,2019,gas oil combustion consumption by public passenger transport,33.411,TJ,CO2,74100.0,kg/TJ,2475755.1,kg +685beb72-320e-3b1b-8548-3974d0259a21,SESCO,II.1.1,Corrientes,AR-W,annual,2019,gas oil combustion consumption by public passenger transport,33.411,TJ,CH4,3.9,kg/TJ,130.3029,kg +685beb72-320e-3b1b-8548-3974d0259a21,SESCO,II.1.1,Corrientes,AR-W,annual,2019,gas oil combustion consumption by public passenger transport,33.411,TJ,N2O,3.9,kg/TJ,130.3029,kg +46976f56-1a66-3385-b6b4-8415aff385fe,SESCO,II.1.1,Córdoba,AR-X,annual,2019,gas oil combustion consumption by public passenger transport,253.743,TJ,CO2,74100.0,kg/TJ,18802356.3,kg +267e142f-b7e5-3c22-b226-0c5e306d2387,SESCO,II.1.1,Córdoba,AR-X,annual,2019,gas oil combustion consumption by public passenger transport,253.743,TJ,CH4,3.9,kg/TJ,989.5976999999999,kg +267e142f-b7e5-3c22-b226-0c5e306d2387,SESCO,II.1.1,Córdoba,AR-X,annual,2019,gas oil combustion consumption by public passenger transport,253.743,TJ,N2O,3.9,kg/TJ,989.5976999999999,kg +9f49d432-54a9-39e3-a175-d0f0b0794b45,SESCO,II.1.1,Entre Rios,AR-E,annual,2019,gas oil combustion consumption by public passenger transport,38.79288,TJ,CO2,74100.0,kg/TJ,2874552.408,kg +11e2808d-23bd-3ac4-a15f-1ac62afedc24,SESCO,II.1.1,Entre Rios,AR-E,annual,2019,gas oil combustion consumption by public passenger transport,38.79288,TJ,CH4,3.9,kg/TJ,151.29223199999998,kg +11e2808d-23bd-3ac4-a15f-1ac62afedc24,SESCO,II.1.1,Entre Rios,AR-E,annual,2019,gas oil combustion consumption by public passenger transport,38.79288,TJ,N2O,3.9,kg/TJ,151.29223199999998,kg +a083552d-1b09-3c36-bb89-35c021a7774c,SESCO,II.1.1,Formosa,AR-P,annual,2019,gas oil combustion consumption by public passenger transport,0.18059999999999998,TJ,CO2,74100.0,kg/TJ,13382.46,kg +ceb633e2-1818-3602-aff1-9b3c4df5859e,SESCO,II.1.1,Formosa,AR-P,annual,2019,gas oil combustion consumption by public passenger transport,0.18059999999999998,TJ,CH4,3.9,kg/TJ,0.70434,kg +ceb633e2-1818-3602-aff1-9b3c4df5859e,SESCO,II.1.1,Formosa,AR-P,annual,2019,gas oil combustion consumption by public passenger transport,0.18059999999999998,TJ,N2O,3.9,kg/TJ,0.70434,kg +63e8a57b-41a7-3ee2-9758-f56c16bcb744,SESCO,II.1.1,Jujuy,AR-Y,annual,2019,gas oil combustion consumption by public passenger transport,1.15584,TJ,CO2,74100.0,kg/TJ,85647.74399999999,kg +582fd3d4-7c10-37b5-923f-ff315fecf0a8,SESCO,II.1.1,Jujuy,AR-Y,annual,2019,gas oil combustion consumption by public passenger transport,1.15584,TJ,CH4,3.9,kg/TJ,4.507776,kg +582fd3d4-7c10-37b5-923f-ff315fecf0a8,SESCO,II.1.1,Jujuy,AR-Y,annual,2019,gas oil combustion consumption by public passenger transport,1.15584,TJ,N2O,3.9,kg/TJ,4.507776,kg +5884722f-e6d9-3c84-8179-7b03d417a628,SESCO,II.1.1,La Rioja,AR-F,annual,2019,gas oil combustion consumption by public passenger transport,3.5758799999999997,TJ,CO2,74100.0,kg/TJ,264972.708,kg +55adfe74-542c-37b5-813c-b1f445fe3d71,SESCO,II.1.1,La Rioja,AR-F,annual,2019,gas oil combustion consumption by public passenger transport,3.5758799999999997,TJ,CH4,3.9,kg/TJ,13.945931999999999,kg +55adfe74-542c-37b5-813c-b1f445fe3d71,SESCO,II.1.1,La Rioja,AR-F,annual,2019,gas oil combustion consumption by public passenger transport,3.5758799999999997,TJ,N2O,3.9,kg/TJ,13.945931999999999,kg +b0101a51-b29b-3a0d-9f04-6874a3f2f9f5,SESCO,II.1.1,Mendoza,AR-M,annual,2019,gas oil combustion consumption by public passenger transport,169.33056,TJ,CO2,74100.0,kg/TJ,12547394.496,kg +dafc1967-da74-311d-879b-b95cc19efff7,SESCO,II.1.1,Mendoza,AR-M,annual,2019,gas oil combustion consumption by public passenger transport,169.33056,TJ,CH4,3.9,kg/TJ,660.389184,kg +dafc1967-da74-311d-879b-b95cc19efff7,SESCO,II.1.1,Mendoza,AR-M,annual,2019,gas oil combustion consumption by public passenger transport,169.33056,TJ,N2O,3.9,kg/TJ,660.389184,kg +908ba98e-cbe7-3add-923c-bcddd142d59f,SESCO,II.1.1,Misiones,AR-N,annual,2019,gas oil combustion consumption by public passenger transport,90.98628,TJ,CO2,74100.0,kg/TJ,6742083.347999999,kg +05a4b105-5546-3985-9140-85cfa1cf4791,SESCO,II.1.1,Misiones,AR-N,annual,2019,gas oil combustion consumption by public passenger transport,90.98628,TJ,CH4,3.9,kg/TJ,354.84649199999996,kg +05a4b105-5546-3985-9140-85cfa1cf4791,SESCO,II.1.1,Misiones,AR-N,annual,2019,gas oil combustion consumption by public passenger transport,90.98628,TJ,N2O,3.9,kg/TJ,354.84649199999996,kg +e1c43453-3e68-3517-b7cd-1a101957e180,SESCO,II.1.1,Neuquén,AR-Q,annual,2019,gas oil combustion consumption by public passenger transport,29.979599999999998,TJ,CO2,74100.0,kg/TJ,2221488.36,kg +4d1b979d-0c57-3723-94ae-f2786d4c6fc0,SESCO,II.1.1,Neuquén,AR-Q,annual,2019,gas oil combustion consumption by public passenger transport,29.979599999999998,TJ,CH4,3.9,kg/TJ,116.92043999999999,kg +4d1b979d-0c57-3723-94ae-f2786d4c6fc0,SESCO,II.1.1,Neuquén,AR-Q,annual,2019,gas oil combustion consumption by public passenger transport,29.979599999999998,TJ,N2O,3.9,kg/TJ,116.92043999999999,kg +78025e22-2120-33d9-bcf5-0465b28ee012,SESCO,II.1.1,Rio Negro,AR-R,annual,2019,gas oil combustion consumption by public passenger transport,178.64952,TJ,CO2,74100.0,kg/TJ,13237929.432,kg +c65370b2-bd85-3ccb-aa48-2be4bfa87398,SESCO,II.1.1,Rio Negro,AR-R,annual,2019,gas oil combustion consumption by public passenger transport,178.64952,TJ,CH4,3.9,kg/TJ,696.733128,kg +c65370b2-bd85-3ccb-aa48-2be4bfa87398,SESCO,II.1.1,Rio Negro,AR-R,annual,2019,gas oil combustion consumption by public passenger transport,178.64952,TJ,N2O,3.9,kg/TJ,696.733128,kg +312ffdb5-9706-3174-864e-88d37f10a59d,SESCO,II.1.1,Salta,AR-A,annual,2019,gas oil combustion consumption by public passenger transport,70.434,TJ,CO2,74100.0,kg/TJ,5219159.399999999,kg +7119b1e3-db76-37d0-ba63-43a2470bced5,SESCO,II.1.1,Salta,AR-A,annual,2019,gas oil combustion consumption by public passenger transport,70.434,TJ,CH4,3.9,kg/TJ,274.69259999999997,kg +7119b1e3-db76-37d0-ba63-43a2470bced5,SESCO,II.1.1,Salta,AR-A,annual,2019,gas oil combustion consumption by public passenger transport,70.434,TJ,N2O,3.9,kg/TJ,274.69259999999997,kg +106ec212-e22e-30c8-9601-b5f966d667cc,SESCO,II.1.1,San Juan,AR-J,annual,2019,gas oil combustion consumption by public passenger transport,108.21552,TJ,CO2,74100.0,kg/TJ,8018770.032,kg +cc4e2452-8fd7-344c-a701-12922823c4fd,SESCO,II.1.1,San Juan,AR-J,annual,2019,gas oil combustion consumption by public passenger transport,108.21552,TJ,CH4,3.9,kg/TJ,422.040528,kg +cc4e2452-8fd7-344c-a701-12922823c4fd,SESCO,II.1.1,San Juan,AR-J,annual,2019,gas oil combustion consumption by public passenger transport,108.21552,TJ,N2O,3.9,kg/TJ,422.040528,kg +7dfdc783-fa17-35e5-92fa-45d5ab69436e,SESCO,II.1.1,San Luis,AR-D,annual,2019,gas oil combustion consumption by public passenger transport,1.30032,TJ,CO2,74100.0,kg/TJ,96353.712,kg +66fcab3a-a8ce-3e45-8c9b-7ed8bdc3ab69,SESCO,II.1.1,San Luis,AR-D,annual,2019,gas oil combustion consumption by public passenger transport,1.30032,TJ,CH4,3.9,kg/TJ,5.071248,kg +66fcab3a-a8ce-3e45-8c9b-7ed8bdc3ab69,SESCO,II.1.1,San Luis,AR-D,annual,2019,gas oil combustion consumption by public passenger transport,1.30032,TJ,N2O,3.9,kg/TJ,5.071248,kg +0a4f77ce-5e6c-3e44-ae37-2d8392a0fda4,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2019,gas oil combustion consumption by public passenger transport,0.03612,TJ,CO2,74100.0,kg/TJ,2676.4919999999997,kg +f44d0187-48a6-3dee-8e71-89c418ca2cbb,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2019,gas oil combustion consumption by public passenger transport,0.03612,TJ,CH4,3.9,kg/TJ,0.140868,kg +f44d0187-48a6-3dee-8e71-89c418ca2cbb,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2019,gas oil combustion consumption by public passenger transport,0.03612,TJ,N2O,3.9,kg/TJ,0.140868,kg +fa9264af-56ce-3666-82b1-3932f92566de,SESCO,II.1.1,Santa Fe,AR-S,annual,2019,gas oil combustion consumption by public passenger transport,107.0958,TJ,CO2,74100.0,kg/TJ,7935798.779999999,kg +c976ca01-fbc6-35ec-805e-98ac0160ddc7,SESCO,II.1.1,Santa Fe,AR-S,annual,2019,gas oil combustion consumption by public passenger transport,107.0958,TJ,CH4,3.9,kg/TJ,417.67361999999997,kg +c976ca01-fbc6-35ec-805e-98ac0160ddc7,SESCO,II.1.1,Santa Fe,AR-S,annual,2019,gas oil combustion consumption by public passenger transport,107.0958,TJ,N2O,3.9,kg/TJ,417.67361999999997,kg +c7f526d4-ac8e-3c70-9e68-f08d00e98648,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2019,gas oil combustion consumption by public passenger transport,0.25284,TJ,CO2,74100.0,kg/TJ,18735.444,kg +342a07b4-7879-3cca-9b00-0750ddb1106d,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2019,gas oil combustion consumption by public passenger transport,0.25284,TJ,CH4,3.9,kg/TJ,0.9860760000000001,kg +342a07b4-7879-3cca-9b00-0750ddb1106d,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2019,gas oil combustion consumption by public passenger transport,0.25284,TJ,N2O,3.9,kg/TJ,0.9860760000000001,kg +4ef96b29-c32b-3a3e-95d2-98274c169e7b,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2019,gas oil combustion consumption by public passenger transport,0.14448,TJ,CO2,74100.0,kg/TJ,10705.967999999999,kg +54ef623a-9bab-3973-bbac-b2f52529085b,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2019,gas oil combustion consumption by public passenger transport,0.14448,TJ,CH4,3.9,kg/TJ,0.563472,kg +54ef623a-9bab-3973-bbac-b2f52529085b,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2019,gas oil combustion consumption by public passenger transport,0.14448,TJ,N2O,3.9,kg/TJ,0.563472,kg +26ca530e-2f69-3315-8a4f-7645b3d2aa98,SESCO,II.1.1,Tucuman,AR-T,annual,2019,gas oil combustion consumption by public passenger transport,1.9866,TJ,CO2,74100.0,kg/TJ,147207.06,kg +724e8652-b7e8-3281-b85c-55cd084c1570,SESCO,II.1.1,Tucuman,AR-T,annual,2019,gas oil combustion consumption by public passenger transport,1.9866,TJ,CH4,3.9,kg/TJ,7.747739999999999,kg +724e8652-b7e8-3281-b85c-55cd084c1570,SESCO,II.1.1,Tucuman,AR-T,annual,2019,gas oil combustion consumption by public passenger transport,1.9866,TJ,N2O,3.9,kg/TJ,7.747739999999999,kg +1d81e84d-792f-3120-94f5-4399d55c8073,SESCO,II.5.1,Buenos Aires,AR-B,annual,2020,gas oil combustion consumption by agriculture machines,557.346048,TJ,CO2,74100.0,kg/TJ,41299342.1568,kg +592f684c-6c79-3429-b770-6998bb6565de,SESCO,II.5.1,Buenos Aires,AR-B,annual,2020,gas oil combustion consumption by agriculture machines,557.346048,TJ,CH4,3.9,kg/TJ,2173.6495872,kg +592f684c-6c79-3429-b770-6998bb6565de,SESCO,II.5.1,Buenos Aires,AR-B,annual,2020,gas oil combustion consumption by agriculture machines,557.346048,TJ,N2O,3.9,kg/TJ,2173.6495872,kg +76df893b-96b7-38a6-a3dc-b03ab1e7d58f,SESCO,II.5.1,Chaco,AR-H,annual,2020,gas oil combustion consumption by agriculture machines,1.33644,TJ,CO2,74100.0,kg/TJ,99030.20400000001,kg +b49d2130-236e-3ba1-bc06-aa4a86017039,SESCO,II.5.1,Chaco,AR-H,annual,2020,gas oil combustion consumption by agriculture machines,1.33644,TJ,CH4,3.9,kg/TJ,5.212116,kg +b49d2130-236e-3ba1-bc06-aa4a86017039,SESCO,II.5.1,Chaco,AR-H,annual,2020,gas oil combustion consumption by agriculture machines,1.33644,TJ,N2O,3.9,kg/TJ,5.212116,kg +10fd97a3-c4b8-34b9-91b0-9625ae5f20c8,SESCO,II.5.1,Córdoba,AR-X,annual,2020,gas oil combustion consumption by agriculture machines,128.771412,TJ,CO2,74100.0,kg/TJ,9541961.6292,kg +0158f0dc-ad29-3f77-9bcf-bc9b72a0bb53,SESCO,II.5.1,Córdoba,AR-X,annual,2020,gas oil combustion consumption by agriculture machines,128.771412,TJ,CH4,3.9,kg/TJ,502.20850679999995,kg +0158f0dc-ad29-3f77-9bcf-bc9b72a0bb53,SESCO,II.5.1,Córdoba,AR-X,annual,2020,gas oil combustion consumption by agriculture machines,128.771412,TJ,N2O,3.9,kg/TJ,502.20850679999995,kg +59a7b395-9422-3c86-a656-075c034cf8ec,SESCO,II.5.1,Entre Rios,AR-E,annual,2020,gas oil combustion consumption by agriculture machines,8.488199999999999,TJ,CO2,74100.0,kg/TJ,628975.6199999999,kg +8340b94a-7289-3bd3-bb2b-79d9797ebffb,SESCO,II.5.1,Entre Rios,AR-E,annual,2020,gas oil combustion consumption by agriculture machines,8.488199999999999,TJ,CH4,3.9,kg/TJ,33.10397999999999,kg +8340b94a-7289-3bd3-bb2b-79d9797ebffb,SESCO,II.5.1,Entre Rios,AR-E,annual,2020,gas oil combustion consumption by agriculture machines,8.488199999999999,TJ,N2O,3.9,kg/TJ,33.10397999999999,kg +e0a18223-f0c7-3cc1-9ee0-1701d69eae26,SESCO,II.5.1,La Pampa,AR-L,annual,2020,gas oil combustion consumption by agriculture machines,51.861095999999996,TJ,CO2,74100.0,kg/TJ,3842907.2136,kg +c9ea5e9f-51e1-37e4-a291-00b03c3e7054,SESCO,II.5.1,La Pampa,AR-L,annual,2020,gas oil combustion consumption by agriculture machines,51.861095999999996,TJ,CH4,3.9,kg/TJ,202.25827439999998,kg +c9ea5e9f-51e1-37e4-a291-00b03c3e7054,SESCO,II.5.1,La Pampa,AR-L,annual,2020,gas oil combustion consumption by agriculture machines,51.861095999999996,TJ,N2O,3.9,kg/TJ,202.25827439999998,kg +5942317b-1d92-3cac-b1d0-7b97e59c9990,SESCO,II.5.1,Santa Fe,AR-S,annual,2020,gas oil combustion consumption by agriculture machines,212.118312,TJ,CO2,74100.0,kg/TJ,15717966.9192,kg +90463ba7-93e7-3375-8217-282f3dee3983,SESCO,II.5.1,Santa Fe,AR-S,annual,2020,gas oil combustion consumption by agriculture machines,212.118312,TJ,CH4,3.9,kg/TJ,827.2614168,kg +90463ba7-93e7-3375-8217-282f3dee3983,SESCO,II.5.1,Santa Fe,AR-S,annual,2020,gas oil combustion consumption by agriculture machines,212.118312,TJ,N2O,3.9,kg/TJ,827.2614168,kg +d96e43fe-9786-3d87-bb82-ffa1715906aa,SESCO,II.5.1,Buenos Aires,AR-B,annual,2020,gas oil combustion consumption by agriculture machines,12.06408,TJ,CO2,74100.0,kg/TJ,893948.3280000001,kg +e50d4a4d-1d00-31a6-a55d-1e65c3fb535b,SESCO,II.5.1,Buenos Aires,AR-B,annual,2020,gas oil combustion consumption by agriculture machines,12.06408,TJ,CH4,3.9,kg/TJ,47.049912,kg +e50d4a4d-1d00-31a6-a55d-1e65c3fb535b,SESCO,II.5.1,Buenos Aires,AR-B,annual,2020,gas oil combustion consumption by agriculture machines,12.06408,TJ,N2O,3.9,kg/TJ,47.049912,kg +d43cf989-e052-3289-9fe7-d9de62211b45,SESCO,II.5.1,Córdoba,AR-X,annual,2020,gas oil combustion consumption by agriculture machines,1.8385079999999998,TJ,CO2,74100.0,kg/TJ,136233.4428,kg +5dfa3c58-7bee-3358-8aaf-640b64a8d3ea,SESCO,II.5.1,Córdoba,AR-X,annual,2020,gas oil combustion consumption by agriculture machines,1.8385079999999998,TJ,CH4,3.9,kg/TJ,7.170181199999999,kg +5dfa3c58-7bee-3358-8aaf-640b64a8d3ea,SESCO,II.5.1,Córdoba,AR-X,annual,2020,gas oil combustion consumption by agriculture machines,1.8385079999999998,TJ,N2O,3.9,kg/TJ,7.170181199999999,kg +8e098029-7203-30cf-9afa-91fd9c976a3e,SESCO,II.5.1,Santa Fe,AR-S,annual,2020,gas oil combustion consumption by agriculture machines,3.21468,TJ,CO2,74100.0,kg/TJ,238207.788,kg +cbecbe1b-5469-377c-baf6-9a5fe1d68181,SESCO,II.5.1,Santa Fe,AR-S,annual,2020,gas oil combustion consumption by agriculture machines,3.21468,TJ,CH4,3.9,kg/TJ,12.537252,kg +cbecbe1b-5469-377c-baf6-9a5fe1d68181,SESCO,II.5.1,Santa Fe,AR-S,annual,2020,gas oil combustion consumption by agriculture machines,3.21468,TJ,N2O,3.9,kg/TJ,12.537252,kg +5bf31364-3dbf-394c-a7eb-74f33105a82d,SESCO,II.1.1,Buenos Aires,AR-B,annual,2020,gas oil combustion consumption by to the public,1646.3496,TJ,CO2,74100.0,kg/TJ,121994505.36,kg +fe6f1d34-6ac7-33bc-be67-2ad78194773e,SESCO,II.1.1,Buenos Aires,AR-B,annual,2020,gas oil combustion consumption by to the public,1646.3496,TJ,CH4,3.9,kg/TJ,6420.76344,kg +fe6f1d34-6ac7-33bc-be67-2ad78194773e,SESCO,II.1.1,Buenos Aires,AR-B,annual,2020,gas oil combustion consumption by to the public,1646.3496,TJ,N2O,3.9,kg/TJ,6420.76344,kg +833c0f7a-9fef-3301-b6cc-af6bb7bec413,SESCO,II.1.1,Capital Federal,AR-C,annual,2020,gas oil combustion consumption by to the public,72.102744,TJ,CO2,74100.0,kg/TJ,5342813.3304,kg +25180c3d-e2ef-3d00-96a1-8225ca45c2b5,SESCO,II.1.1,Capital Federal,AR-C,annual,2020,gas oil combustion consumption by to the public,72.102744,TJ,CH4,3.9,kg/TJ,281.2007016,kg +25180c3d-e2ef-3d00-96a1-8225ca45c2b5,SESCO,II.1.1,Capital Federal,AR-C,annual,2020,gas oil combustion consumption by to the public,72.102744,TJ,N2O,3.9,kg/TJ,281.2007016,kg +b08c6250-0fa8-32f3-a7a0-ac47b4ef0a39,SESCO,II.1.1,Catamarca,AR-K,annual,2020,gas oil combustion consumption by to the public,12.930959999999999,TJ,CO2,74100.0,kg/TJ,958184.1359999999,kg +fe195956-f6f8-3978-a8b7-80b2c6baddb3,SESCO,II.1.1,Catamarca,AR-K,annual,2020,gas oil combustion consumption by to the public,12.930959999999999,TJ,CH4,3.9,kg/TJ,50.430744,kg +fe195956-f6f8-3978-a8b7-80b2c6baddb3,SESCO,II.1.1,Catamarca,AR-K,annual,2020,gas oil combustion consumption by to the public,12.930959999999999,TJ,N2O,3.9,kg/TJ,50.430744,kg +25a57540-a9a8-3004-b6d5-ea591b4297c6,SESCO,II.1.1,Chaco,AR-H,annual,2020,gas oil combustion consumption by to the public,13.14768,TJ,CO2,74100.0,kg/TJ,974243.088,kg +2f4dba9c-4ad4-369d-80ab-59ab678445d8,SESCO,II.1.1,Chaco,AR-H,annual,2020,gas oil combustion consumption by to the public,13.14768,TJ,CH4,3.9,kg/TJ,51.275952,kg +2f4dba9c-4ad4-369d-80ab-59ab678445d8,SESCO,II.1.1,Chaco,AR-H,annual,2020,gas oil combustion consumption by to the public,13.14768,TJ,N2O,3.9,kg/TJ,51.275952,kg +dd0a6f5f-045d-3a3c-8491-576623775bce,SESCO,II.1.1,Corrientes,AR-W,annual,2020,gas oil combustion consumption by to the public,4.29828,TJ,CO2,74100.0,kg/TJ,318502.548,kg +111f7d0e-b2c7-3739-bc61-6d3e46f5167e,SESCO,II.1.1,Corrientes,AR-W,annual,2020,gas oil combustion consumption by to the public,4.29828,TJ,CH4,3.9,kg/TJ,16.763292,kg +111f7d0e-b2c7-3739-bc61-6d3e46f5167e,SESCO,II.1.1,Corrientes,AR-W,annual,2020,gas oil combustion consumption by to the public,4.29828,TJ,N2O,3.9,kg/TJ,16.763292,kg +e0c02462-603c-3a21-b237-f94320307b5e,SESCO,II.1.1,Córdoba,AR-X,annual,2020,gas oil combustion consumption by to the public,871.644228,TJ,CO2,74100.0,kg/TJ,64588837.2948,kg +344aa49c-0197-3cc3-b6dd-65d031cc387d,SESCO,II.1.1,Córdoba,AR-X,annual,2020,gas oil combustion consumption by to the public,871.644228,TJ,CH4,3.9,kg/TJ,3399.4124892,kg +344aa49c-0197-3cc3-b6dd-65d031cc387d,SESCO,II.1.1,Córdoba,AR-X,annual,2020,gas oil combustion consumption by to the public,871.644228,TJ,N2O,3.9,kg/TJ,3399.4124892,kg +272b6151-5052-3a56-85f7-8b3b1253ab82,SESCO,II.1.1,Entre Rios,AR-E,annual,2020,gas oil combustion consumption by to the public,153.542508,TJ,CO2,74100.0,kg/TJ,11377499.8428,kg +b6471920-b37f-35f3-8147-81121da99430,SESCO,II.1.1,Entre Rios,AR-E,annual,2020,gas oil combustion consumption by to the public,153.542508,TJ,CH4,3.9,kg/TJ,598.8157812,kg +b6471920-b37f-35f3-8147-81121da99430,SESCO,II.1.1,Entre Rios,AR-E,annual,2020,gas oil combustion consumption by to the public,153.542508,TJ,N2O,3.9,kg/TJ,598.8157812,kg +ab0e9b2b-1767-3fcc-a7e9-5a8c96ef673f,SESCO,II.1.1,Mendoza,AR-M,annual,2020,gas oil combustion consumption by to the public,286.68444,TJ,CO2,74100.0,kg/TJ,21243317.004,kg +abc3ac14-448f-3e0e-958c-3e2fca422c25,SESCO,II.1.1,Mendoza,AR-M,annual,2020,gas oil combustion consumption by to the public,286.68444,TJ,CH4,3.9,kg/TJ,1118.0693159999998,kg +abc3ac14-448f-3e0e-958c-3e2fca422c25,SESCO,II.1.1,Mendoza,AR-M,annual,2020,gas oil combustion consumption by to the public,286.68444,TJ,N2O,3.9,kg/TJ,1118.0693159999998,kg +dd7eec8c-fbde-39ed-a743-27f6c90441cb,SESCO,II.1.1,San Juan,AR-J,annual,2020,gas oil combustion consumption by to the public,10.2942,TJ,CO2,74100.0,kg/TJ,762800.22,kg +674329aa-6e4d-3572-be1c-a9d18719fc4f,SESCO,II.1.1,San Juan,AR-J,annual,2020,gas oil combustion consumption by to the public,10.2942,TJ,CH4,3.9,kg/TJ,40.14738,kg +674329aa-6e4d-3572-be1c-a9d18719fc4f,SESCO,II.1.1,San Juan,AR-J,annual,2020,gas oil combustion consumption by to the public,10.2942,TJ,N2O,3.9,kg/TJ,40.14738,kg +8c8e919b-002c-3567-9dbe-2c884ee748c2,SESCO,II.1.1,San Luis,AR-D,annual,2020,gas oil combustion consumption by to the public,11.70288,TJ,CO2,74100.0,kg/TJ,867183.408,kg +c7921872-9042-3300-a142-f8a7f68a4e91,SESCO,II.1.1,San Luis,AR-D,annual,2020,gas oil combustion consumption by to the public,11.70288,TJ,CH4,3.9,kg/TJ,45.641232,kg +c7921872-9042-3300-a142-f8a7f68a4e91,SESCO,II.1.1,San Luis,AR-D,annual,2020,gas oil combustion consumption by to the public,11.70288,TJ,N2O,3.9,kg/TJ,45.641232,kg +98ff5448-d682-3810-845e-2de6d994e1d2,SESCO,II.1.1,Santa Fe,AR-S,annual,2020,gas oil combustion consumption by to the public,1362.161052,TJ,CO2,74100.0,kg/TJ,100936133.9532,kg +66111f52-e77a-3f9f-899c-79d989b50f5c,SESCO,II.1.1,Santa Fe,AR-S,annual,2020,gas oil combustion consumption by to the public,1362.161052,TJ,CH4,3.9,kg/TJ,5312.4281028,kg +66111f52-e77a-3f9f-899c-79d989b50f5c,SESCO,II.1.1,Santa Fe,AR-S,annual,2020,gas oil combustion consumption by to the public,1362.161052,TJ,N2O,3.9,kg/TJ,5312.4281028,kg +275db23b-4c48-338d-b64f-afb5c7a2c63b,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2020,gas oil combustion consumption by to the public,41.03232,TJ,CO2,74100.0,kg/TJ,3040494.912,kg +4f6f3f85-d500-3fc2-8fcb-3ec60698f05c,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2020,gas oil combustion consumption by to the public,41.03232,TJ,CH4,3.9,kg/TJ,160.026048,kg +4f6f3f85-d500-3fc2-8fcb-3ec60698f05c,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2020,gas oil combustion consumption by to the public,41.03232,TJ,N2O,3.9,kg/TJ,160.026048,kg +13d0e52d-76a0-3c35-8149-6af9c759f82a,SESCO,II.1.1,Tucuman,AR-T,annual,2020,gas oil combustion consumption by to the public,232.45387200000002,TJ,CO2,74100.0,kg/TJ,17224831.915200002,kg +2256f07a-aae7-34a8-8715-a72c8e16e654,SESCO,II.1.1,Tucuman,AR-T,annual,2020,gas oil combustion consumption by to the public,232.45387200000002,TJ,CH4,3.9,kg/TJ,906.5701008000001,kg +2256f07a-aae7-34a8-8715-a72c8e16e654,SESCO,II.1.1,Tucuman,AR-T,annual,2020,gas oil combustion consumption by to the public,232.45387200000002,TJ,N2O,3.9,kg/TJ,906.5701008000001,kg +606f4070-9011-3052-8ee7-6281730105ae,SESCO,II.1.1,Buenos Aires,AR-B,annual,2020,gas oil combustion consumption by to the public,112.11648,TJ,CO2,74100.0,kg/TJ,8307831.168,kg +f9d718b8-f419-358f-96eb-95600221ece6,SESCO,II.1.1,Buenos Aires,AR-B,annual,2020,gas oil combustion consumption by to the public,112.11648,TJ,CH4,3.9,kg/TJ,437.25427199999996,kg +f9d718b8-f419-358f-96eb-95600221ece6,SESCO,II.1.1,Buenos Aires,AR-B,annual,2020,gas oil combustion consumption by to the public,112.11648,TJ,N2O,3.9,kg/TJ,437.25427199999996,kg +896ab571-f908-35f1-b130-06cd9af4835c,SESCO,II.1.1,Capital Federal,AR-C,annual,2020,gas oil combustion consumption by to the public,13.0032,TJ,CO2,74100.0,kg/TJ,963537.12,kg +30e54ee4-4e96-3f90-aaf6-3155ceb1f0d3,SESCO,II.1.1,Capital Federal,AR-C,annual,2020,gas oil combustion consumption by to the public,13.0032,TJ,CH4,3.9,kg/TJ,50.71248,kg +30e54ee4-4e96-3f90-aaf6-3155ceb1f0d3,SESCO,II.1.1,Capital Federal,AR-C,annual,2020,gas oil combustion consumption by to the public,13.0032,TJ,N2O,3.9,kg/TJ,50.71248,kg +b6a3402b-0578-3767-8316-1a901f65832f,SESCO,II.1.1,Catamarca,AR-K,annual,2020,gas oil combustion consumption by to the public,10.07748,TJ,CO2,74100.0,kg/TJ,746741.2679999999,kg +f9585115-c258-3f10-ac3e-da5bcda51eb1,SESCO,II.1.1,Catamarca,AR-K,annual,2020,gas oil combustion consumption by to the public,10.07748,TJ,CH4,3.9,kg/TJ,39.302172,kg +f9585115-c258-3f10-ac3e-da5bcda51eb1,SESCO,II.1.1,Catamarca,AR-K,annual,2020,gas oil combustion consumption by to the public,10.07748,TJ,N2O,3.9,kg/TJ,39.302172,kg +dad7f271-2280-3787-8b79-2bca2949598b,SESCO,II.1.1,Chaco,AR-H,annual,2020,gas oil combustion consumption by to the public,2.3478,TJ,CO2,74100.0,kg/TJ,173971.97999999998,kg +4797ce86-f0dd-313e-9771-0abddc9af794,SESCO,II.1.1,Chaco,AR-H,annual,2020,gas oil combustion consumption by to the public,2.3478,TJ,CH4,3.9,kg/TJ,9.156419999999999,kg +4797ce86-f0dd-313e-9771-0abddc9af794,SESCO,II.1.1,Chaco,AR-H,annual,2020,gas oil combustion consumption by to the public,2.3478,TJ,N2O,3.9,kg/TJ,9.156419999999999,kg +dbf8f640-32db-383b-8b7d-4a4d84ddeedd,SESCO,II.1.1,Corrientes,AR-W,annual,2020,gas oil combustion consumption by to the public,4.40664,TJ,CO2,74100.0,kg/TJ,326532.02400000003,kg +999cdf2e-3c06-313d-aab6-5c2e92c9834d,SESCO,II.1.1,Corrientes,AR-W,annual,2020,gas oil combustion consumption by to the public,4.40664,TJ,CH4,3.9,kg/TJ,17.185896,kg +999cdf2e-3c06-313d-aab6-5c2e92c9834d,SESCO,II.1.1,Corrientes,AR-W,annual,2020,gas oil combustion consumption by to the public,4.40664,TJ,N2O,3.9,kg/TJ,17.185896,kg +9323f420-d671-33be-88c7-c19bf1f6caac,SESCO,II.1.1,Córdoba,AR-X,annual,2020,gas oil combustion consumption by to the public,132.155856,TJ,CO2,74100.0,kg/TJ,9792748.9296,kg +1bee1e50-fc8d-3e0a-9fe5-803012930ea4,SESCO,II.1.1,Córdoba,AR-X,annual,2020,gas oil combustion consumption by to the public,132.155856,TJ,CH4,3.9,kg/TJ,515.4078384,kg +1bee1e50-fc8d-3e0a-9fe5-803012930ea4,SESCO,II.1.1,Córdoba,AR-X,annual,2020,gas oil combustion consumption by to the public,132.155856,TJ,N2O,3.9,kg/TJ,515.4078384,kg +c233b7e9-08c5-3792-9520-778c770caedd,SESCO,II.1.1,Entre Rios,AR-E,annual,2020,gas oil combustion consumption by to the public,19.475904,TJ,CO2,74100.0,kg/TJ,1443164.4864,kg +7ddb2d36-d13a-3718-b012-cb758feadd50,SESCO,II.1.1,Entre Rios,AR-E,annual,2020,gas oil combustion consumption by to the public,19.475904,TJ,CH4,3.9,kg/TJ,75.9560256,kg +7ddb2d36-d13a-3718-b012-cb758feadd50,SESCO,II.1.1,Entre Rios,AR-E,annual,2020,gas oil combustion consumption by to the public,19.475904,TJ,N2O,3.9,kg/TJ,75.9560256,kg +9b7d2a64-6f0c-37c2-821f-d18387d33f49,SESCO,II.1.1,Mendoza,AR-M,annual,2020,gas oil combustion consumption by to the public,66.91591199999999,TJ,CO2,74100.0,kg/TJ,4958469.0792,kg +df0d3514-49f8-3cbe-85d1-a5f3faf3a335,SESCO,II.1.1,Mendoza,AR-M,annual,2020,gas oil combustion consumption by to the public,66.91591199999999,TJ,CH4,3.9,kg/TJ,260.97205679999996,kg +df0d3514-49f8-3cbe-85d1-a5f3faf3a335,SESCO,II.1.1,Mendoza,AR-M,annual,2020,gas oil combustion consumption by to the public,66.91591199999999,TJ,N2O,3.9,kg/TJ,260.97205679999996,kg +39e3371b-ef23-3cf2-9c31-68a61f80455f,SESCO,II.1.1,San Juan,AR-J,annual,2020,gas oil combustion consumption by to the public,2.45616,TJ,CO2,74100.0,kg/TJ,182001.456,kg +b46a676d-32ce-390e-9d4b-f7f08376cc29,SESCO,II.1.1,San Juan,AR-J,annual,2020,gas oil combustion consumption by to the public,2.45616,TJ,CH4,3.9,kg/TJ,9.579024,kg +b46a676d-32ce-390e-9d4b-f7f08376cc29,SESCO,II.1.1,San Juan,AR-J,annual,2020,gas oil combustion consumption by to the public,2.45616,TJ,N2O,3.9,kg/TJ,9.579024,kg +d21c5688-d19a-3c68-a4ef-1b4b45171358,SESCO,II.1.1,San Luis,AR-D,annual,2020,gas oil combustion consumption by to the public,2.74512,TJ,CO2,74100.0,kg/TJ,203413.392,kg +c10bfa31-e197-358e-ba42-51107143036b,SESCO,II.1.1,San Luis,AR-D,annual,2020,gas oil combustion consumption by to the public,2.74512,TJ,CH4,3.9,kg/TJ,10.705968,kg +c10bfa31-e197-358e-ba42-51107143036b,SESCO,II.1.1,San Luis,AR-D,annual,2020,gas oil combustion consumption by to the public,2.74512,TJ,N2O,3.9,kg/TJ,10.705968,kg +f3e33dde-5e3d-31b7-bc78-aca79fbfb12f,SESCO,II.1.1,Santa Fe,AR-S,annual,2020,gas oil combustion consumption by to the public,97.845468,TJ,CO2,74100.0,kg/TJ,7250349.1788,kg +8290e9e6-b086-3094-83fb-4ee31e911e3c,SESCO,II.1.1,Santa Fe,AR-S,annual,2020,gas oil combustion consumption by to the public,97.845468,TJ,CH4,3.9,kg/TJ,381.5973252,kg +8290e9e6-b086-3094-83fb-4ee31e911e3c,SESCO,II.1.1,Santa Fe,AR-S,annual,2020,gas oil combustion consumption by to the public,97.845468,TJ,N2O,3.9,kg/TJ,381.5973252,kg +98ba8be2-ec4d-3f75-884f-a7ee3246b8a8,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2020,gas oil combustion consumption by to the public,9.03,TJ,CO2,74100.0,kg/TJ,669123.0,kg +269e6de1-426a-342d-9acb-828876ff76d8,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2020,gas oil combustion consumption by to the public,9.03,TJ,CH4,3.9,kg/TJ,35.217,kg +269e6de1-426a-342d-9acb-828876ff76d8,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2020,gas oil combustion consumption by to the public,9.03,TJ,N2O,3.9,kg/TJ,35.217,kg +a83ba660-105e-311a-8643-1c34e7ac27bf,SESCO,II.1.1,Tucuman,AR-T,annual,2020,gas oil combustion consumption by to the public,22.32216,TJ,CO2,74100.0,kg/TJ,1654072.056,kg +620df14d-2d3b-3ba2-8009-2bb5cbf297f7,SESCO,II.1.1,Tucuman,AR-T,annual,2020,gas oil combustion consumption by to the public,22.32216,TJ,CH4,3.9,kg/TJ,87.05642399999999,kg +620df14d-2d3b-3ba2-8009-2bb5cbf297f7,SESCO,II.1.1,Tucuman,AR-T,annual,2020,gas oil combustion consumption by to the public,22.32216,TJ,N2O,3.9,kg/TJ,87.05642399999999,kg +58c7eb34-01e8-3406-b87f-69472e197da9,SESCO,II.1.1,Buenos Aires,AR-B,annual,2020,jet kerosene combustion consumption by to the public,0.157265,TJ,CO2,71500.0,kg/TJ,11244.447499999998,kg +0e9b496b-171a-3076-95ef-40b0c4632a69,SESCO,II.1.1,Buenos Aires,AR-B,annual,2020,jet kerosene combustion consumption by to the public,0.157265,TJ,CH4,0.5,kg/TJ,0.0786325,kg +a166714a-d954-3d9e-87f2-6ca9ac8a9f35,SESCO,II.1.1,Buenos Aires,AR-B,annual,2020,jet kerosene combustion consumption by to the public,0.157265,TJ,N2O,2.0,kg/TJ,0.31453,kg +b493337a-1125-3b4b-922a-6e236de4259c,SESCO,II.1.1,Córdoba,AR-X,annual,2020,jet kerosene combustion consumption by to the public,0.62906,TJ,CO2,71500.0,kg/TJ,44977.78999999999,kg +e2750b84-1bf2-38d9-8e23-3af57920c4d3,SESCO,II.1.1,Córdoba,AR-X,annual,2020,jet kerosene combustion consumption by to the public,0.62906,TJ,CH4,0.5,kg/TJ,0.31453,kg +c95f961c-2a3a-3ede-a79d-a254176867ab,SESCO,II.1.1,Córdoba,AR-X,annual,2020,jet kerosene combustion consumption by to the public,0.62906,TJ,N2O,2.0,kg/TJ,1.25812,kg +8f042073-0675-325b-872c-aa2df7d07e95,SESCO,II.1.1,Santa Fe,AR-S,annual,2020,jet kerosene combustion consumption by to the public,0.37743599999999994,TJ,CO2,71500.0,kg/TJ,26986.673999999995,kg +5eac0cc8-0474-36d0-bc0a-62eea393ff9a,SESCO,II.1.1,Santa Fe,AR-S,annual,2020,jet kerosene combustion consumption by to the public,0.37743599999999994,TJ,CH4,0.5,kg/TJ,0.18871799999999997,kg +b24063ef-f9e2-38a2-8b9d-9a9cfc77b6e2,SESCO,II.1.1,Santa Fe,AR-S,annual,2020,jet kerosene combustion consumption by to the public,0.37743599999999994,TJ,N2O,2.0,kg/TJ,0.7548719999999999,kg +f8cf024d-6b80-332e-bfa3-376e91a3d2be,SESCO,I.3.1,Santa Fe,AR-S,annual,2020,gasoline combustion consumption by petrochemical industries,22.353337,TJ,CO2,69300.0,kg/TJ,1549086.2541,kg +e8a534c4-4803-367f-824e-a653f4738efc,SESCO,I.3.1,Santa Fe,AR-S,annual,2020,gasoline combustion consumption by petrochemical industries,22.353337,TJ,CH4,33.0,kg/TJ,737.660121,kg +a674e30a-b93c-32ba-99f8-46d60ad5a223,SESCO,I.3.1,Santa Fe,AR-S,annual,2020,gasoline combustion consumption by petrochemical industries,22.353337,TJ,N2O,3.2,kg/TJ,71.5306784,kg +a2b36bea-3b22-339f-b236-bb0d1ea790c6,SESCO,II.5.1,Buenos Aires,AR-B,annual,2020,gas oil combustion consumption by agriculture machines,3.86484,TJ,CO2,74100.0,kg/TJ,286384.64400000003,kg +2e7fcdb4-93bd-3b39-8690-162ae53153ed,SESCO,II.5.1,Buenos Aires,AR-B,annual,2020,gas oil combustion consumption by agriculture machines,3.86484,TJ,CH4,3.9,kg/TJ,15.072875999999999,kg +2e7fcdb4-93bd-3b39-8690-162ae53153ed,SESCO,II.5.1,Buenos Aires,AR-B,annual,2020,gas oil combustion consumption by agriculture machines,3.86484,TJ,N2O,3.9,kg/TJ,15.072875999999999,kg +26ca6970-5091-3b9a-8a39-33ef7b2ab8b6,SESCO,II.5.1,Buenos Aires,AR-B,annual,2020,gas oil combustion consumption by agriculture machines,394.9722,TJ,CO2,74100.0,kg/TJ,29267440.02,kg +4e1b105c-bf30-350d-8003-b45eeb74b6d0,SESCO,II.5.1,Buenos Aires,AR-B,annual,2020,gas oil combustion consumption by agriculture machines,394.9722,TJ,CH4,3.9,kg/TJ,1540.39158,kg +4e1b105c-bf30-350d-8003-b45eeb74b6d0,SESCO,II.5.1,Buenos Aires,AR-B,annual,2020,gas oil combustion consumption by agriculture machines,394.9722,TJ,N2O,3.9,kg/TJ,1540.39158,kg +2eef4a35-9228-3aed-99c1-bed99aeb7733,SESCO,II.5.1,Chaco,AR-H,annual,2020,gas oil combustion consumption by agriculture machines,46.66704,TJ,CO2,74100.0,kg/TJ,3458027.664,kg +6cedeb47-f754-314c-b42f-6bb859341bab,SESCO,II.5.1,Chaco,AR-H,annual,2020,gas oil combustion consumption by agriculture machines,46.66704,TJ,CH4,3.9,kg/TJ,182.001456,kg +6cedeb47-f754-314c-b42f-6bb859341bab,SESCO,II.5.1,Chaco,AR-H,annual,2020,gas oil combustion consumption by agriculture machines,46.66704,TJ,N2O,3.9,kg/TJ,182.001456,kg +65d860bb-ff96-3d46-b3ae-9c392b6e639b,SESCO,II.5.1,Córdoba,AR-X,annual,2020,gas oil combustion consumption by agriculture machines,888.0101999999999,TJ,CO2,74100.0,kg/TJ,65801555.81999999,kg +e5658a0b-77cc-3728-a2e8-1091e3fb8a4c,SESCO,II.5.1,Córdoba,AR-X,annual,2020,gas oil combustion consumption by agriculture machines,888.0101999999999,TJ,CH4,3.9,kg/TJ,3463.23978,kg +e5658a0b-77cc-3728-a2e8-1091e3fb8a4c,SESCO,II.5.1,Córdoba,AR-X,annual,2020,gas oil combustion consumption by agriculture machines,888.0101999999999,TJ,N2O,3.9,kg/TJ,3463.23978,kg +254b9aa4-2d9a-3dfa-abac-a8f19ea01075,SESCO,II.5.1,Entre Rios,AR-E,annual,2020,gas oil combustion consumption by agriculture machines,190.82196,TJ,CO2,74100.0,kg/TJ,14139907.236,kg +8bd4edbf-d9ab-3d0c-8d14-3fae05be2ebc,SESCO,II.5.1,Entre Rios,AR-E,annual,2020,gas oil combustion consumption by agriculture machines,190.82196,TJ,CH4,3.9,kg/TJ,744.2056439999999,kg +8bd4edbf-d9ab-3d0c-8d14-3fae05be2ebc,SESCO,II.5.1,Entre Rios,AR-E,annual,2020,gas oil combustion consumption by agriculture machines,190.82196,TJ,N2O,3.9,kg/TJ,744.2056439999999,kg +2576cf7e-22a2-39e2-894e-02eb9f5f126a,SESCO,II.5.1,Mendoza,AR-M,annual,2020,gas oil combustion consumption by agriculture machines,0.86688,TJ,CO2,74100.0,kg/TJ,64235.808,kg +da7296c1-f429-32d7-814f-64d319b240ce,SESCO,II.5.1,Mendoza,AR-M,annual,2020,gas oil combustion consumption by agriculture machines,0.86688,TJ,CH4,3.9,kg/TJ,3.380832,kg +da7296c1-f429-32d7-814f-64d319b240ce,SESCO,II.5.1,Mendoza,AR-M,annual,2020,gas oil combustion consumption by agriculture machines,0.86688,TJ,N2O,3.9,kg/TJ,3.380832,kg +ff3c55c7-4c81-3685-b579-3c9c3dc86517,SESCO,II.5.1,Salta,AR-A,annual,2020,gas oil combustion consumption by agriculture machines,90.3,TJ,CO2,74100.0,kg/TJ,6691230.0,kg +b825383b-89dd-368e-822b-067b57ed900c,SESCO,II.5.1,Salta,AR-A,annual,2020,gas oil combustion consumption by agriculture machines,90.3,TJ,CH4,3.9,kg/TJ,352.16999999999996,kg +b825383b-89dd-368e-822b-067b57ed900c,SESCO,II.5.1,Salta,AR-A,annual,2020,gas oil combustion consumption by agriculture machines,90.3,TJ,N2O,3.9,kg/TJ,352.16999999999996,kg +37c1c0b8-4fe1-3c86-9e09-e9158589a8ef,SESCO,II.5.1,Santa Cruz,AR-Z,annual,2020,gas oil combustion consumption by agriculture machines,9.7524,TJ,CO2,74100.0,kg/TJ,722652.84,kg +18a5e169-0f81-33e4-994d-89782494e503,SESCO,II.5.1,Santa Cruz,AR-Z,annual,2020,gas oil combustion consumption by agriculture machines,9.7524,TJ,CH4,3.9,kg/TJ,38.03436,kg +18a5e169-0f81-33e4-994d-89782494e503,SESCO,II.5.1,Santa Cruz,AR-Z,annual,2020,gas oil combustion consumption by agriculture machines,9.7524,TJ,N2O,3.9,kg/TJ,38.03436,kg +64c69aa6-1661-3584-9292-d56009b9f062,SESCO,II.5.1,Santa Fe,AR-S,annual,2020,gas oil combustion consumption by agriculture machines,113.27232,TJ,CO2,74100.0,kg/TJ,8393478.911999999,kg +d424dd51-a568-3416-9f10-be5737243e0e,SESCO,II.5.1,Santa Fe,AR-S,annual,2020,gas oil combustion consumption by agriculture machines,113.27232,TJ,CH4,3.9,kg/TJ,441.76204799999994,kg +d424dd51-a568-3416-9f10-be5737243e0e,SESCO,II.5.1,Santa Fe,AR-S,annual,2020,gas oil combustion consumption by agriculture machines,113.27232,TJ,N2O,3.9,kg/TJ,441.76204799999994,kg +45ec0113-eb15-3e05-9a0d-cf8cb1982d0f,SESCO,II.5.1,Buenos Aires,AR-B,annual,2020,gas oil combustion consumption by agriculture machines,6.321,TJ,CO2,74100.0,kg/TJ,468386.1,kg +a31662e9-bde3-3fe4-84b5-e311734dc31e,SESCO,II.5.1,Buenos Aires,AR-B,annual,2020,gas oil combustion consumption by agriculture machines,6.321,TJ,CH4,3.9,kg/TJ,24.651899999999998,kg +a31662e9-bde3-3fe4-84b5-e311734dc31e,SESCO,II.5.1,Buenos Aires,AR-B,annual,2020,gas oil combustion consumption by agriculture machines,6.321,TJ,N2O,3.9,kg/TJ,24.651899999999998,kg +286d5568-56a7-3917-a03c-91822548755b,SESCO,II.5.1,Chaco,AR-H,annual,2020,gas oil combustion consumption by agriculture machines,4.94844,TJ,CO2,74100.0,kg/TJ,366679.404,kg +1226241e-1961-3b4c-b143-e93f8766ea44,SESCO,II.5.1,Chaco,AR-H,annual,2020,gas oil combustion consumption by agriculture machines,4.94844,TJ,CH4,3.9,kg/TJ,19.298916,kg +1226241e-1961-3b4c-b143-e93f8766ea44,SESCO,II.5.1,Chaco,AR-H,annual,2020,gas oil combustion consumption by agriculture machines,4.94844,TJ,N2O,3.9,kg/TJ,19.298916,kg +96b4a61d-bca2-3d74-9cb6-65b732a1d7e7,SESCO,II.5.1,Córdoba,AR-X,annual,2020,gas oil combustion consumption by agriculture machines,8.27148,TJ,CO2,74100.0,kg/TJ,612916.6680000001,kg +df8a1658-99de-3194-ba56-f7dd53c74347,SESCO,II.5.1,Córdoba,AR-X,annual,2020,gas oil combustion consumption by agriculture machines,8.27148,TJ,CH4,3.9,kg/TJ,32.258772,kg +df8a1658-99de-3194-ba56-f7dd53c74347,SESCO,II.5.1,Córdoba,AR-X,annual,2020,gas oil combustion consumption by agriculture machines,8.27148,TJ,N2O,3.9,kg/TJ,32.258772,kg +bc6f3940-95da-367c-9f0e-c141b5f09022,SESCO,II.5.1,Entre Rios,AR-E,annual,2020,gas oil combustion consumption by agriculture machines,3.50364,TJ,CO2,74100.0,kg/TJ,259619.724,kg +4ee88f00-2fbf-3c9e-90c9-b88144c1b68e,SESCO,II.5.1,Entre Rios,AR-E,annual,2020,gas oil combustion consumption by agriculture machines,3.50364,TJ,CH4,3.9,kg/TJ,13.664195999999999,kg +4ee88f00-2fbf-3c9e-90c9-b88144c1b68e,SESCO,II.5.1,Entre Rios,AR-E,annual,2020,gas oil combustion consumption by agriculture machines,3.50364,TJ,N2O,3.9,kg/TJ,13.664195999999999,kg +28483856-f024-394b-89ce-546ad736eecc,SESCO,II.5.1,Mendoza,AR-M,annual,2020,gas oil combustion consumption by agriculture machines,0.14448,TJ,CO2,74100.0,kg/TJ,10705.967999999999,kg +6d268421-959e-3eb8-8ba8-9e01783c0981,SESCO,II.5.1,Mendoza,AR-M,annual,2020,gas oil combustion consumption by agriculture machines,0.14448,TJ,CH4,3.9,kg/TJ,0.563472,kg +6d268421-959e-3eb8-8ba8-9e01783c0981,SESCO,II.5.1,Mendoza,AR-M,annual,2020,gas oil combustion consumption by agriculture machines,0.14448,TJ,N2O,3.9,kg/TJ,0.563472,kg +9399cb42-b9fb-32c2-a73d-40a4f3d02d33,SESCO,II.5.1,Santa Cruz,AR-Z,annual,2020,gas oil combustion consumption by agriculture machines,0.36119999999999997,TJ,CO2,74100.0,kg/TJ,26764.92,kg +62277ce9-acb6-3f4e-b743-b0dfe9954d5c,SESCO,II.5.1,Santa Cruz,AR-Z,annual,2020,gas oil combustion consumption by agriculture machines,0.36119999999999997,TJ,CH4,3.9,kg/TJ,1.40868,kg +62277ce9-acb6-3f4e-b743-b0dfe9954d5c,SESCO,II.5.1,Santa Cruz,AR-Z,annual,2020,gas oil combustion consumption by agriculture machines,0.36119999999999997,TJ,N2O,3.9,kg/TJ,1.40868,kg +f5cac53c-5a26-3804-8f9f-c6e2052a639a,SESCO,II.5.1,Santa Fe,AR-S,annual,2020,gas oil combustion consumption by agriculture machines,3.64812,TJ,CO2,74100.0,kg/TJ,270325.692,kg +2fbd3690-290f-3e85-bb94-f8df0d44ecf9,SESCO,II.5.1,Santa Fe,AR-S,annual,2020,gas oil combustion consumption by agriculture machines,3.64812,TJ,CH4,3.9,kg/TJ,14.227668,kg +2fbd3690-290f-3e85-bb94-f8df0d44ecf9,SESCO,II.5.1,Santa Fe,AR-S,annual,2020,gas oil combustion consumption by agriculture machines,3.64812,TJ,N2O,3.9,kg/TJ,14.227668,kg +947787ca-a013-3ef4-a1dc-100494af4914,SESCO,II.1.1,Buenos Aires,AR-B,annual,2020,gas oil combustion consumption by to the public,2196.56556,TJ,CO2,74100.0,kg/TJ,162765507.996,kg +3d44026a-8a8f-325f-942f-538856b4a82c,SESCO,II.1.1,Buenos Aires,AR-B,annual,2020,gas oil combustion consumption by to the public,2196.56556,TJ,CH4,3.9,kg/TJ,8566.605684,kg +3d44026a-8a8f-325f-942f-538856b4a82c,SESCO,II.1.1,Buenos Aires,AR-B,annual,2020,gas oil combustion consumption by to the public,2196.56556,TJ,N2O,3.9,kg/TJ,8566.605684,kg +661a9072-014c-3df9-a941-d7b6c503c6e2,SESCO,II.1.1,Capital Federal,AR-C,annual,2020,gas oil combustion consumption by to the public,420.87023999999997,TJ,CO2,74100.0,kg/TJ,31186484.783999998,kg +ffb102d7-eed9-32dc-936c-e77ed2f9fd67,SESCO,II.1.1,Capital Federal,AR-C,annual,2020,gas oil combustion consumption by to the public,420.87023999999997,TJ,CH4,3.9,kg/TJ,1641.393936,kg +ffb102d7-eed9-32dc-936c-e77ed2f9fd67,SESCO,II.1.1,Capital Federal,AR-C,annual,2020,gas oil combustion consumption by to the public,420.87023999999997,TJ,N2O,3.9,kg/TJ,1641.393936,kg +4a2ffc08-e0e9-3bf9-9fc9-e76c454be507,SESCO,II.1.1,Catamarca,AR-K,annual,2020,gas oil combustion consumption by to the public,48.5814,TJ,CO2,74100.0,kg/TJ,3599881.74,kg +60315f67-c913-3659-ae64-64fb88f75022,SESCO,II.1.1,Catamarca,AR-K,annual,2020,gas oil combustion consumption by to the public,48.5814,TJ,CH4,3.9,kg/TJ,189.46746000000002,kg +60315f67-c913-3659-ae64-64fb88f75022,SESCO,II.1.1,Catamarca,AR-K,annual,2020,gas oil combustion consumption by to the public,48.5814,TJ,N2O,3.9,kg/TJ,189.46746000000002,kg +c6953c37-65b3-39c0-80b5-a7d9685a2c38,SESCO,II.1.1,Chaco,AR-H,annual,2020,gas oil combustion consumption by to the public,294.1974,TJ,CO2,74100.0,kg/TJ,21800027.34,kg +1bd493a6-16cd-335b-b841-ff5d77799b7f,SESCO,II.1.1,Chaco,AR-H,annual,2020,gas oil combustion consumption by to the public,294.1974,TJ,CH4,3.9,kg/TJ,1147.36986,kg +1bd493a6-16cd-335b-b841-ff5d77799b7f,SESCO,II.1.1,Chaco,AR-H,annual,2020,gas oil combustion consumption by to the public,294.1974,TJ,N2O,3.9,kg/TJ,1147.36986,kg +66c981e8-0253-36ee-8b84-454c34ac6960,SESCO,II.1.1,Corrientes,AR-W,annual,2020,gas oil combustion consumption by to the public,400.28184,TJ,CO2,74100.0,kg/TJ,29660884.344,kg +7195b901-b537-3c0b-b676-cb24d1bbec17,SESCO,II.1.1,Corrientes,AR-W,annual,2020,gas oil combustion consumption by to the public,400.28184,TJ,CH4,3.9,kg/TJ,1561.099176,kg +7195b901-b537-3c0b-b676-cb24d1bbec17,SESCO,II.1.1,Corrientes,AR-W,annual,2020,gas oil combustion consumption by to the public,400.28184,TJ,N2O,3.9,kg/TJ,1561.099176,kg +01fa66af-c5c7-3abc-abf7-77ced9992e91,SESCO,II.1.1,Córdoba,AR-X,annual,2020,gas oil combustion consumption by to the public,1181.55744,TJ,CO2,74100.0,kg/TJ,87553406.304,kg +b33b5d5e-388b-3f27-9209-238b39a7af37,SESCO,II.1.1,Córdoba,AR-X,annual,2020,gas oil combustion consumption by to the public,1181.55744,TJ,CH4,3.9,kg/TJ,4608.0740160000005,kg +b33b5d5e-388b-3f27-9209-238b39a7af37,SESCO,II.1.1,Córdoba,AR-X,annual,2020,gas oil combustion consumption by to the public,1181.55744,TJ,N2O,3.9,kg/TJ,4608.0740160000005,kg +15293781-db03-343a-aeee-1cb7f5e886f8,SESCO,II.1.1,Entre Rios,AR-E,annual,2020,gas oil combustion consumption by to the public,248.90292,TJ,CO2,74100.0,kg/TJ,18443706.372,kg +d473776c-fd54-37aa-80ab-581aba7d33a9,SESCO,II.1.1,Entre Rios,AR-E,annual,2020,gas oil combustion consumption by to the public,248.90292,TJ,CH4,3.9,kg/TJ,970.7213879999999,kg +d473776c-fd54-37aa-80ab-581aba7d33a9,SESCO,II.1.1,Entre Rios,AR-E,annual,2020,gas oil combustion consumption by to the public,248.90292,TJ,N2O,3.9,kg/TJ,970.7213879999999,kg +4cc09750-ed15-3bf1-9397-4cc6cf1b88ff,SESCO,II.1.1,Formosa,AR-P,annual,2020,gas oil combustion consumption by to the public,41.93532,TJ,CO2,74100.0,kg/TJ,3107407.212,kg +9f13b589-d4b5-3e5e-a13c-1cb3ffa74ccc,SESCO,II.1.1,Formosa,AR-P,annual,2020,gas oil combustion consumption by to the public,41.93532,TJ,CH4,3.9,kg/TJ,163.54774799999998,kg +9f13b589-d4b5-3e5e-a13c-1cb3ffa74ccc,SESCO,II.1.1,Formosa,AR-P,annual,2020,gas oil combustion consumption by to the public,41.93532,TJ,N2O,3.9,kg/TJ,163.54774799999998,kg +4d20c1ff-5f3f-327a-99da-1156a1e8adab,SESCO,II.1.1,Jujuy,AR-Y,annual,2020,gas oil combustion consumption by to the public,3.90096,TJ,CO2,74100.0,kg/TJ,289061.136,kg +7c49547c-65c4-329f-89c2-ee6c036db2d2,SESCO,II.1.1,Jujuy,AR-Y,annual,2020,gas oil combustion consumption by to the public,3.90096,TJ,CH4,3.9,kg/TJ,15.213744,kg +7c49547c-65c4-329f-89c2-ee6c036db2d2,SESCO,II.1.1,Jujuy,AR-Y,annual,2020,gas oil combustion consumption by to the public,3.90096,TJ,N2O,3.9,kg/TJ,15.213744,kg +16b31b7e-f892-3137-8718-6bd97c3b78c0,SESCO,II.1.1,La Rioja,AR-F,annual,2020,gas oil combustion consumption by to the public,35.43372,TJ,CO2,74100.0,kg/TJ,2625638.6520000002,kg +2c204548-b55a-387d-b075-5417c17ae61f,SESCO,II.1.1,La Rioja,AR-F,annual,2020,gas oil combustion consumption by to the public,35.43372,TJ,CH4,3.9,kg/TJ,138.191508,kg +2c204548-b55a-387d-b075-5417c17ae61f,SESCO,II.1.1,La Rioja,AR-F,annual,2020,gas oil combustion consumption by to the public,35.43372,TJ,N2O,3.9,kg/TJ,138.191508,kg +47a4a950-0ea2-3e52-adb3-ac135fc0d72b,SESCO,II.1.1,Mendoza,AR-M,annual,2020,gas oil combustion consumption by to the public,672.6627599999999,TJ,CO2,74100.0,kg/TJ,49844310.515999995,kg +d0c68914-d678-3fa2-b3e8-386a6e315f69,SESCO,II.1.1,Mendoza,AR-M,annual,2020,gas oil combustion consumption by to the public,672.6627599999999,TJ,CH4,3.9,kg/TJ,2623.384764,kg +d0c68914-d678-3fa2-b3e8-386a6e315f69,SESCO,II.1.1,Mendoza,AR-M,annual,2020,gas oil combustion consumption by to the public,672.6627599999999,TJ,N2O,3.9,kg/TJ,2623.384764,kg +626b27ba-ecac-3785-ab7e-b2263ff4050f,SESCO,II.1.1,Misiones,AR-N,annual,2020,gas oil combustion consumption by to the public,76.71888,TJ,CO2,74100.0,kg/TJ,5684869.007999999,kg +b5c3e946-bcee-33f0-865f-1d0506a6fab3,SESCO,II.1.1,Misiones,AR-N,annual,2020,gas oil combustion consumption by to the public,76.71888,TJ,CH4,3.9,kg/TJ,299.20363199999997,kg +b5c3e946-bcee-33f0-865f-1d0506a6fab3,SESCO,II.1.1,Misiones,AR-N,annual,2020,gas oil combustion consumption by to the public,76.71888,TJ,N2O,3.9,kg/TJ,299.20363199999997,kg +6ff350e3-aaf6-3274-bce0-ad820f03ebe6,SESCO,II.1.1,San Juan,AR-J,annual,2020,gas oil combustion consumption by to the public,119.48496,TJ,CO2,74100.0,kg/TJ,8853835.536,kg +363395f6-5b75-327c-984b-438bdbfd1082,SESCO,II.1.1,San Juan,AR-J,annual,2020,gas oil combustion consumption by to the public,119.48496,TJ,CH4,3.9,kg/TJ,465.99134399999997,kg +363395f6-5b75-327c-984b-438bdbfd1082,SESCO,II.1.1,San Juan,AR-J,annual,2020,gas oil combustion consumption by to the public,119.48496,TJ,N2O,3.9,kg/TJ,465.99134399999997,kg +5f43ed99-3fec-3080-bc88-38d5fbd8ec52,SESCO,II.1.1,San Luis,AR-D,annual,2020,gas oil combustion consumption by to the public,11.30556,TJ,CO2,74100.0,kg/TJ,837741.996,kg +650f2254-f1b3-3e62-8017-f3c4d60c8396,SESCO,II.1.1,San Luis,AR-D,annual,2020,gas oil combustion consumption by to the public,11.30556,TJ,CH4,3.9,kg/TJ,44.091684,kg +650f2254-f1b3-3e62-8017-f3c4d60c8396,SESCO,II.1.1,San Luis,AR-D,annual,2020,gas oil combustion consumption by to the public,11.30556,TJ,N2O,3.9,kg/TJ,44.091684,kg +c12704f0-a090-3dc2-99c6-1b2a905de462,SESCO,II.1.1,Santa Fe,AR-S,annual,2020,gas oil combustion consumption by to the public,1202.36256,TJ,CO2,74100.0,kg/TJ,89095065.696,kg +685793aa-2ab0-3a20-a686-90f8f752af57,SESCO,II.1.1,Santa Fe,AR-S,annual,2020,gas oil combustion consumption by to the public,1202.36256,TJ,CH4,3.9,kg/TJ,4689.213984,kg +685793aa-2ab0-3a20-a686-90f8f752af57,SESCO,II.1.1,Santa Fe,AR-S,annual,2020,gas oil combustion consumption by to the public,1202.36256,TJ,N2O,3.9,kg/TJ,4689.213984,kg +639dd10e-7c8b-3992-a0a8-272436a1e05f,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2020,gas oil combustion consumption by to the public,106.84296,TJ,CO2,74100.0,kg/TJ,7917063.336,kg +7293cf32-d630-3a85-8e3f-ce092e202f2c,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2020,gas oil combustion consumption by to the public,106.84296,TJ,CH4,3.9,kg/TJ,416.687544,kg +7293cf32-d630-3a85-8e3f-ce092e202f2c,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2020,gas oil combustion consumption by to the public,106.84296,TJ,N2O,3.9,kg/TJ,416.687544,kg +aec65555-aca8-3fbd-beac-5d844f95aed0,SESCO,II.1.1,Tucuman,AR-T,annual,2020,gas oil combustion consumption by to the public,215.817,TJ,CO2,74100.0,kg/TJ,15992039.700000001,kg +110550ed-2da8-393a-bf65-8c0c021fd818,SESCO,II.1.1,Tucuman,AR-T,annual,2020,gas oil combustion consumption by to the public,215.817,TJ,CH4,3.9,kg/TJ,841.6863,kg +110550ed-2da8-393a-bf65-8c0c021fd818,SESCO,II.1.1,Tucuman,AR-T,annual,2020,gas oil combustion consumption by to the public,215.817,TJ,N2O,3.9,kg/TJ,841.6863,kg +15aa65d9-0508-391c-aa55-057124f1db21,SESCO,II.1.1,Buenos Aires,AR-B,annual,2020,gas oil combustion consumption by to the public,299.9766,TJ,CO2,74100.0,kg/TJ,22228266.060000002,kg +c9489f15-cd50-3055-b112-f38be58f98c5,SESCO,II.1.1,Buenos Aires,AR-B,annual,2020,gas oil combustion consumption by to the public,299.9766,TJ,CH4,3.9,kg/TJ,1169.90874,kg +c9489f15-cd50-3055-b112-f38be58f98c5,SESCO,II.1.1,Buenos Aires,AR-B,annual,2020,gas oil combustion consumption by to the public,299.9766,TJ,N2O,3.9,kg/TJ,1169.90874,kg +40cbd94b-8790-3a9f-a7b6-7c2974f389c2,SESCO,II.1.1,Capital Federal,AR-C,annual,2020,gas oil combustion consumption by to the public,80.04192,TJ,CO2,74100.0,kg/TJ,5931106.272,kg +ea7de60d-62cd-359e-839e-15c3627ff842,SESCO,II.1.1,Capital Federal,AR-C,annual,2020,gas oil combustion consumption by to the public,80.04192,TJ,CH4,3.9,kg/TJ,312.16348800000003,kg +ea7de60d-62cd-359e-839e-15c3627ff842,SESCO,II.1.1,Capital Federal,AR-C,annual,2020,gas oil combustion consumption by to the public,80.04192,TJ,N2O,3.9,kg/TJ,312.16348800000003,kg +322135cc-6068-388f-8844-1a44d8e60e82,SESCO,II.1.1,Catamarca,AR-K,annual,2020,gas oil combustion consumption by to the public,34.53072,TJ,CO2,74100.0,kg/TJ,2558726.352,kg +81a1a39a-65f5-31aa-a21a-f34e491dcc02,SESCO,II.1.1,Catamarca,AR-K,annual,2020,gas oil combustion consumption by to the public,34.53072,TJ,CH4,3.9,kg/TJ,134.66980800000002,kg +81a1a39a-65f5-31aa-a21a-f34e491dcc02,SESCO,II.1.1,Catamarca,AR-K,annual,2020,gas oil combustion consumption by to the public,34.53072,TJ,N2O,3.9,kg/TJ,134.66980800000002,kg +f4e11e04-cf12-3b96-9033-5d19b307c43d,SESCO,II.1.1,Chaco,AR-H,annual,2020,gas oil combustion consumption by to the public,36.40896,TJ,CO2,74100.0,kg/TJ,2697903.936,kg +5105543a-6e9b-39c4-b314-77c928193285,SESCO,II.1.1,Chaco,AR-H,annual,2020,gas oil combustion consumption by to the public,36.40896,TJ,CH4,3.9,kg/TJ,141.994944,kg +5105543a-6e9b-39c4-b314-77c928193285,SESCO,II.1.1,Chaco,AR-H,annual,2020,gas oil combustion consumption by to the public,36.40896,TJ,N2O,3.9,kg/TJ,141.994944,kg +c10f781f-02f9-3bec-ae9a-08f82c02744b,SESCO,II.1.1,Corrientes,AR-W,annual,2020,gas oil combustion consumption by to the public,13.111559999999999,TJ,CO2,74100.0,kg/TJ,971566.5959999999,kg +198f9aca-b987-3809-998e-f430408cface,SESCO,II.1.1,Corrientes,AR-W,annual,2020,gas oil combustion consumption by to the public,13.111559999999999,TJ,CH4,3.9,kg/TJ,51.13508399999999,kg +198f9aca-b987-3809-998e-f430408cface,SESCO,II.1.1,Corrientes,AR-W,annual,2020,gas oil combustion consumption by to the public,13.111559999999999,TJ,N2O,3.9,kg/TJ,51.13508399999999,kg +ff335190-be61-3b3a-9c82-668b1a249358,SESCO,II.1.1,Córdoba,AR-X,annual,2020,gas oil combustion consumption by to the public,148.41708,TJ,CO2,74100.0,kg/TJ,10997705.628,kg +bde8009f-cea6-3472-84a2-21a91ea134fd,SESCO,II.1.1,Córdoba,AR-X,annual,2020,gas oil combustion consumption by to the public,148.41708,TJ,CH4,3.9,kg/TJ,578.826612,kg +bde8009f-cea6-3472-84a2-21a91ea134fd,SESCO,II.1.1,Córdoba,AR-X,annual,2020,gas oil combustion consumption by to the public,148.41708,TJ,N2O,3.9,kg/TJ,578.826612,kg +b67b83e7-faf4-338d-a862-2534474e6b51,SESCO,II.1.1,Entre Rios,AR-E,annual,2020,gas oil combustion consumption by to the public,42.91056,TJ,CO2,74100.0,kg/TJ,3179672.496,kg +461bd96c-c430-3aea-be60-87989668d931,SESCO,II.1.1,Entre Rios,AR-E,annual,2020,gas oil combustion consumption by to the public,42.91056,TJ,CH4,3.9,kg/TJ,167.351184,kg +461bd96c-c430-3aea-be60-87989668d931,SESCO,II.1.1,Entre Rios,AR-E,annual,2020,gas oil combustion consumption by to the public,42.91056,TJ,N2O,3.9,kg/TJ,167.351184,kg +ca4daefe-e4f0-3aa7-8007-c238a23e5ce4,SESCO,II.1.1,Formosa,AR-P,annual,2020,gas oil combustion consumption by to the public,13.7256,TJ,CO2,74100.0,kg/TJ,1017066.96,kg +9ca2b3c3-7cc0-39d2-bbeb-ed033c847649,SESCO,II.1.1,Formosa,AR-P,annual,2020,gas oil combustion consumption by to the public,13.7256,TJ,CH4,3.9,kg/TJ,53.52984,kg +9ca2b3c3-7cc0-39d2-bbeb-ed033c847649,SESCO,II.1.1,Formosa,AR-P,annual,2020,gas oil combustion consumption by to the public,13.7256,TJ,N2O,3.9,kg/TJ,53.52984,kg +8b1ecf04-1a0b-37c1-a06b-78f419ba8d95,SESCO,II.1.1,La Rioja,AR-F,annual,2020,gas oil combustion consumption by to the public,11.34168,TJ,CO2,74100.0,kg/TJ,840418.488,kg +59431dbe-f305-3619-8d12-36f80eba3d35,SESCO,II.1.1,La Rioja,AR-F,annual,2020,gas oil combustion consumption by to the public,11.34168,TJ,CH4,3.9,kg/TJ,44.232552,kg +59431dbe-f305-3619-8d12-36f80eba3d35,SESCO,II.1.1,La Rioja,AR-F,annual,2020,gas oil combustion consumption by to the public,11.34168,TJ,N2O,3.9,kg/TJ,44.232552,kg +e5866650-1b89-3458-a51f-90cebc07577b,SESCO,II.1.1,Mendoza,AR-M,annual,2020,gas oil combustion consumption by to the public,99.18552,TJ,CO2,74100.0,kg/TJ,7349647.032,kg +335c99c5-5ab0-3c8c-ac05-860f9f4421d2,SESCO,II.1.1,Mendoza,AR-M,annual,2020,gas oil combustion consumption by to the public,99.18552,TJ,CH4,3.9,kg/TJ,386.82352799999995,kg +335c99c5-5ab0-3c8c-ac05-860f9f4421d2,SESCO,II.1.1,Mendoza,AR-M,annual,2020,gas oil combustion consumption by to the public,99.18552,TJ,N2O,3.9,kg/TJ,386.82352799999995,kg +dc9b42c8-553d-3e25-a57b-d63f769e857e,SESCO,II.1.1,Misiones,AR-N,annual,2020,gas oil combustion consumption by to the public,15.06204,TJ,CO2,74100.0,kg/TJ,1116097.1639999999,kg +54d69515-5423-3132-ae61-12bcaefc56be,SESCO,II.1.1,Misiones,AR-N,annual,2020,gas oil combustion consumption by to the public,15.06204,TJ,CH4,3.9,kg/TJ,58.741955999999995,kg +54d69515-5423-3132-ae61-12bcaefc56be,SESCO,II.1.1,Misiones,AR-N,annual,2020,gas oil combustion consumption by to the public,15.06204,TJ,N2O,3.9,kg/TJ,58.741955999999995,kg +26851228-0cae-378c-8fe4-8a72f1098f4f,SESCO,II.1.1,Salta,AR-A,annual,2020,gas oil combustion consumption by to the public,2.13108,TJ,CO2,74100.0,kg/TJ,157913.028,kg +730f5344-0ca9-3737-b097-525cbd7196be,SESCO,II.1.1,Salta,AR-A,annual,2020,gas oil combustion consumption by to the public,2.13108,TJ,CH4,3.9,kg/TJ,8.311212,kg +730f5344-0ca9-3737-b097-525cbd7196be,SESCO,II.1.1,Salta,AR-A,annual,2020,gas oil combustion consumption by to the public,2.13108,TJ,N2O,3.9,kg/TJ,8.311212,kg +f0e9b675-3b5b-3a73-8c35-c77f5346f1b6,SESCO,II.1.1,San Juan,AR-J,annual,2020,gas oil combustion consumption by to the public,6.1404,TJ,CO2,74100.0,kg/TJ,455003.63999999996,kg +d081c05d-0db3-327f-b99d-2734d76562e0,SESCO,II.1.1,San Juan,AR-J,annual,2020,gas oil combustion consumption by to the public,6.1404,TJ,CH4,3.9,kg/TJ,23.94756,kg +d081c05d-0db3-327f-b99d-2734d76562e0,SESCO,II.1.1,San Juan,AR-J,annual,2020,gas oil combustion consumption by to the public,6.1404,TJ,N2O,3.9,kg/TJ,23.94756,kg +5582d815-ab80-32f0-a5a7-125d97b0d777,SESCO,II.1.1,San Luis,AR-D,annual,2020,gas oil combustion consumption by to the public,4.1537999999999995,TJ,CO2,74100.0,kg/TJ,307796.57999999996,kg +2c51b7dc-11f2-3c53-aa69-03accbdc46e4,SESCO,II.1.1,San Luis,AR-D,annual,2020,gas oil combustion consumption by to the public,4.1537999999999995,TJ,CH4,3.9,kg/TJ,16.19982,kg +2c51b7dc-11f2-3c53-aa69-03accbdc46e4,SESCO,II.1.1,San Luis,AR-D,annual,2020,gas oil combustion consumption by to the public,4.1537999999999995,TJ,N2O,3.9,kg/TJ,16.19982,kg +cfb90f5b-21c5-3a27-b630-415251dedd69,SESCO,II.1.1,Santa Fe,AR-S,annual,2020,gas oil combustion consumption by to the public,121.79664,TJ,CO2,74100.0,kg/TJ,9025131.024,kg +57f981f0-b758-35a3-a814-321c0c8a1947,SESCO,II.1.1,Santa Fe,AR-S,annual,2020,gas oil combustion consumption by to the public,121.79664,TJ,CH4,3.9,kg/TJ,475.006896,kg +57f981f0-b758-35a3-a814-321c0c8a1947,SESCO,II.1.1,Santa Fe,AR-S,annual,2020,gas oil combustion consumption by to the public,121.79664,TJ,N2O,3.9,kg/TJ,475.006896,kg +7031e926-e61b-3c7c-8ef0-a73b9103bd3e,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2020,gas oil combustion consumption by to the public,13.9062,TJ,CO2,74100.0,kg/TJ,1030449.42,kg +9ea080e2-f5e9-34a6-899c-f3b3a3e22edb,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2020,gas oil combustion consumption by to the public,13.9062,TJ,CH4,3.9,kg/TJ,54.23418,kg +9ea080e2-f5e9-34a6-899c-f3b3a3e22edb,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2020,gas oil combustion consumption by to the public,13.9062,TJ,N2O,3.9,kg/TJ,54.23418,kg +32fc658c-1c35-3bd4-ae09-4a2f438a02e7,SESCO,II.1.1,Tucuman,AR-T,annual,2020,gas oil combustion consumption by to the public,18.63792,TJ,CO2,74100.0,kg/TJ,1381069.872,kg +fdd22b14-eb1d-3905-864d-f5315b10d329,SESCO,II.1.1,Tucuman,AR-T,annual,2020,gas oil combustion consumption by to the public,18.63792,TJ,CH4,3.9,kg/TJ,72.687888,kg +fdd22b14-eb1d-3905-864d-f5315b10d329,SESCO,II.1.1,Tucuman,AR-T,annual,2020,gas oil combustion consumption by to the public,18.63792,TJ,N2O,3.9,kg/TJ,72.687888,kg +02fa4e37-867b-3713-8a76-0db2d8a5bab8,SESCO,II.1.1,Corrientes,AR-W,annual,2020,jet kerosene combustion consumption by to the public,0.5032479999999999,TJ,CO2,71500.0,kg/TJ,35982.231999999996,kg +51956f52-6eea-3020-b495-1f50b8b2e04f,SESCO,II.1.1,Corrientes,AR-W,annual,2020,jet kerosene combustion consumption by to the public,0.5032479999999999,TJ,CH4,0.5,kg/TJ,0.25162399999999996,kg +7470daaf-a3c7-3543-9823-2f4a4ce49328,SESCO,II.1.1,Corrientes,AR-W,annual,2020,jet kerosene combustion consumption by to the public,0.5032479999999999,TJ,N2O,2.0,kg/TJ,1.0064959999999998,kg +00517090-08a1-3a16-9ac6-99b5b896125b,SESCO,II.1.1,Córdoba,AR-X,annual,2020,jet kerosene combustion consumption by to the public,1.0694019999999997,TJ,CO2,71500.0,kg/TJ,76462.24299999999,kg +065bd601-816a-32b3-ac29-74ddb2bfd4d1,SESCO,II.1.1,Córdoba,AR-X,annual,2020,jet kerosene combustion consumption by to the public,1.0694019999999997,TJ,CH4,0.5,kg/TJ,0.5347009999999999,kg +4951de93-0f76-3786-a91f-d263b1aa93f9,SESCO,II.1.1,Córdoba,AR-X,annual,2020,jet kerosene combustion consumption by to the public,1.0694019999999997,TJ,N2O,2.0,kg/TJ,2.1388039999999995,kg +02d2638c-0c03-3378-a44f-152975715032,SESCO,II.1.1,Entre Rios,AR-E,annual,2020,jet kerosene combustion consumption by to the public,0.62906,TJ,CO2,71500.0,kg/TJ,44977.78999999999,kg +853ae6de-c210-3826-943a-70efedd2c188,SESCO,II.1.1,Entre Rios,AR-E,annual,2020,jet kerosene combustion consumption by to the public,0.62906,TJ,CH4,0.5,kg/TJ,0.31453,kg +f64c4371-d6df-347c-a461-b16c33ca3696,SESCO,II.1.1,Entre Rios,AR-E,annual,2020,jet kerosene combustion consumption by to the public,0.62906,TJ,N2O,2.0,kg/TJ,1.25812,kg +09914c7d-b7b4-3c90-8f7a-74befc5de75c,SESCO,II.1.1,Santa Fe,AR-S,annual,2020,jet kerosene combustion consumption by to the public,1.9500859999999998,TJ,CO2,71500.0,kg/TJ,139431.14899999998,kg +eeec8ed0-6ab6-358f-87a9-09be1904dc9a,SESCO,II.1.1,Santa Fe,AR-S,annual,2020,jet kerosene combustion consumption by to the public,1.9500859999999998,TJ,CH4,0.5,kg/TJ,0.9750429999999999,kg +b7ab84bd-cfae-3d16-96e9-eeb8d5bd97c0,SESCO,II.1.1,Santa Fe,AR-S,annual,2020,jet kerosene combustion consumption by to the public,1.9500859999999998,TJ,N2O,2.0,kg/TJ,3.9001719999999995,kg +94e605c0-5d95-37a8-a395-cbb8521f941c,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2020,jet kerosene combustion consumption by to the public,0.7548719999999999,TJ,CO2,71500.0,kg/TJ,53973.34799999999,kg +8829b2fa-6263-3035-8fc2-ba8f6f105d3f,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2020,jet kerosene combustion consumption by to the public,0.7548719999999999,TJ,CH4,0.5,kg/TJ,0.37743599999999994,kg +12da2f96-3a73-3147-b2cc-2f2941797027,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2020,jet kerosene combustion consumption by to the public,0.7548719999999999,TJ,N2O,2.0,kg/TJ,1.5097439999999998,kg +42dbda09-c0b9-3e28-80fe-a2ed4b5c846f,SESCO,I.3.1,Buenos Aires,AR-B,annual,2020,gas oil combustion consumption by petrochemical industries,11.59452,TJ,CO2,74100.0,kg/TJ,859153.9319999999,kg +88e64c0a-bd94-3108-8340-2d0a4b985c24,SESCO,I.3.1,Buenos Aires,AR-B,annual,2020,gas oil combustion consumption by petrochemical industries,11.59452,TJ,CH4,3.9,kg/TJ,45.218627999999995,kg +88e64c0a-bd94-3108-8340-2d0a4b985c24,SESCO,I.3.1,Buenos Aires,AR-B,annual,2020,gas oil combustion consumption by petrochemical industries,11.59452,TJ,N2O,3.9,kg/TJ,45.218627999999995,kg +d8154348-900e-3622-a481-c899293659f7,SESCO,I.3.1,Capital Federal,AR-C,annual,2020,gas oil combustion consumption by petrochemical industries,1.2642,TJ,CO2,74100.0,kg/TJ,93677.22,kg +5c4b668e-7090-341a-988e-1bf119d9407b,SESCO,I.3.1,Capital Federal,AR-C,annual,2020,gas oil combustion consumption by petrochemical industries,1.2642,TJ,CH4,3.9,kg/TJ,4.9303799999999995,kg +5c4b668e-7090-341a-988e-1bf119d9407b,SESCO,I.3.1,Capital Federal,AR-C,annual,2020,gas oil combustion consumption by petrochemical industries,1.2642,TJ,N2O,3.9,kg/TJ,4.9303799999999995,kg +60759001-0c8e-3de3-b13a-3fe4b9843bfc,SESCO,I.3.1,La Rioja,AR-F,annual,2020,gas oil combustion consumption by petrochemical industries,0.50568,TJ,CO2,74100.0,kg/TJ,37470.888,kg +e0ffe2ba-5663-3f94-be73-d4d0397e6958,SESCO,I.3.1,La Rioja,AR-F,annual,2020,gas oil combustion consumption by petrochemical industries,0.50568,TJ,CH4,3.9,kg/TJ,1.9721520000000001,kg +e0ffe2ba-5663-3f94-be73-d4d0397e6958,SESCO,I.3.1,La Rioja,AR-F,annual,2020,gas oil combustion consumption by petrochemical industries,0.50568,TJ,N2O,3.9,kg/TJ,1.9721520000000001,kg +62beaf4d-b4af-3a6f-b946-c95ad8d1e0b7,SESCO,I.3.1,Buenos Aires,AR-B,annual,2020,gas oil combustion consumption by petrochemical industries,0.50568,TJ,CO2,74100.0,kg/TJ,37470.888,kg +8733cab7-7ed7-3466-b9cf-44c5a4b37cc2,SESCO,I.3.1,Buenos Aires,AR-B,annual,2020,gas oil combustion consumption by petrochemical industries,0.50568,TJ,CH4,3.9,kg/TJ,1.9721520000000001,kg +8733cab7-7ed7-3466-b9cf-44c5a4b37cc2,SESCO,I.3.1,Buenos Aires,AR-B,annual,2020,gas oil combustion consumption by petrochemical industries,0.50568,TJ,N2O,3.9,kg/TJ,1.9721520000000001,kg +b065cd7c-9b5b-3887-8a96-1fdc00123825,SESCO,II.1.1,Chubut,AR-U,annual,2020,gas oil combustion consumption by freight transport,2.1930258,TJ,CO2,74100.0,kg/TJ,162503.21178,kg +2e1bbdc5-d1a0-334d-ab30-0a275bc3a392,SESCO,II.1.1,Chubut,AR-U,annual,2020,gas oil combustion consumption by freight transport,2.1930258,TJ,CH4,3.9,kg/TJ,8.55280062,kg +2e1bbdc5-d1a0-334d-ab30-0a275bc3a392,SESCO,II.1.1,Chubut,AR-U,annual,2020,gas oil combustion consumption by freight transport,2.1930258,TJ,N2O,3.9,kg/TJ,8.55280062,kg +c3ba86ec-683e-3f5d-9302-847e4be21ec5,SESCO,II.5.1,Buenos Aires,AR-B,annual,2020,gas oil combustion consumption by agriculture machines,2609.34492,TJ,CO2,74100.0,kg/TJ,193352458.572,kg +2f4f1dad-e3bf-3f82-b659-f3b866a6188f,SESCO,II.5.1,Buenos Aires,AR-B,annual,2020,gas oil combustion consumption by agriculture machines,2609.34492,TJ,CH4,3.9,kg/TJ,10176.445188,kg +2f4f1dad-e3bf-3f82-b659-f3b866a6188f,SESCO,II.5.1,Buenos Aires,AR-B,annual,2020,gas oil combustion consumption by agriculture machines,2609.34492,TJ,N2O,3.9,kg/TJ,10176.445188,kg +8274c950-22ed-3273-98e5-8e92309295f2,SESCO,II.5.1,Capital Federal,AR-C,annual,2020,gas oil combustion consumption by agriculture machines,1.87824,TJ,CO2,74100.0,kg/TJ,139177.584,kg +a8d84d43-d767-3ad2-aeeb-a5dbcc6c9866,SESCO,II.5.1,Capital Federal,AR-C,annual,2020,gas oil combustion consumption by agriculture machines,1.87824,TJ,CH4,3.9,kg/TJ,7.325136,kg +a8d84d43-d767-3ad2-aeeb-a5dbcc6c9866,SESCO,II.5.1,Capital Federal,AR-C,annual,2020,gas oil combustion consumption by agriculture machines,1.87824,TJ,N2O,3.9,kg/TJ,7.325136,kg +3f880a7b-31a7-3348-a215-2fb4f4372ea8,SESCO,II.5.1,Chaco,AR-H,annual,2020,gas oil combustion consumption by agriculture machines,451.93344,TJ,CO2,74100.0,kg/TJ,33488267.904000003,kg +0533495c-1b81-3ff9-900f-f2db49ee5b99,SESCO,II.5.1,Chaco,AR-H,annual,2020,gas oil combustion consumption by agriculture machines,451.93344,TJ,CH4,3.9,kg/TJ,1762.540416,kg +0533495c-1b81-3ff9-900f-f2db49ee5b99,SESCO,II.5.1,Chaco,AR-H,annual,2020,gas oil combustion consumption by agriculture machines,451.93344,TJ,N2O,3.9,kg/TJ,1762.540416,kg +1129373d-f3a1-3ca2-94b1-4c7e1b090dc9,SESCO,II.5.1,Corrientes,AR-W,annual,2020,gas oil combustion consumption by agriculture machines,122.23008,TJ,CO2,74100.0,kg/TJ,9057248.928,kg +72a94b53-a9e0-3988-a1ba-0ba34a714daf,SESCO,II.5.1,Corrientes,AR-W,annual,2020,gas oil combustion consumption by agriculture machines,122.23008,TJ,CH4,3.9,kg/TJ,476.697312,kg +72a94b53-a9e0-3988-a1ba-0ba34a714daf,SESCO,II.5.1,Corrientes,AR-W,annual,2020,gas oil combustion consumption by agriculture machines,122.23008,TJ,N2O,3.9,kg/TJ,476.697312,kg +b5bdd126-2a6b-392a-aefb-534bf462ceb6,SESCO,II.5.1,Córdoba,AR-X,annual,2020,gas oil combustion consumption by agriculture machines,2507.8116,TJ,CO2,74100.0,kg/TJ,185828839.56,kg +67caacf1-c663-364b-935c-81ed13bc345d,SESCO,II.5.1,Córdoba,AR-X,annual,2020,gas oil combustion consumption by agriculture machines,2507.8116,TJ,CH4,3.9,kg/TJ,9780.46524,kg +67caacf1-c663-364b-935c-81ed13bc345d,SESCO,II.5.1,Córdoba,AR-X,annual,2020,gas oil combustion consumption by agriculture machines,2507.8116,TJ,N2O,3.9,kg/TJ,9780.46524,kg +5c000735-3d33-3be9-919e-2b7a555df28b,SESCO,II.5.1,Entre Rios,AR-E,annual,2020,gas oil combustion consumption by agriculture machines,556.2479999999999,TJ,CO2,74100.0,kg/TJ,41217976.8,kg +1686bee6-d3c5-3501-bf84-99412b77b51d,SESCO,II.5.1,Entre Rios,AR-E,annual,2020,gas oil combustion consumption by agriculture machines,556.2479999999999,TJ,CH4,3.9,kg/TJ,2169.3671999999997,kg +1686bee6-d3c5-3501-bf84-99412b77b51d,SESCO,II.5.1,Entre Rios,AR-E,annual,2020,gas oil combustion consumption by agriculture machines,556.2479999999999,TJ,N2O,3.9,kg/TJ,2169.3671999999997,kg +213cdc6f-716b-36ea-ae8a-debed8d83490,SESCO,II.5.1,La Pampa,AR-L,annual,2020,gas oil combustion consumption by agriculture machines,195.19248,TJ,CO2,74100.0,kg/TJ,14463762.768,kg +3f96745c-eacd-3959-bd09-bd4998fc7066,SESCO,II.5.1,La Pampa,AR-L,annual,2020,gas oil combustion consumption by agriculture machines,195.19248,TJ,CH4,3.9,kg/TJ,761.2506719999999,kg +3f96745c-eacd-3959-bd09-bd4998fc7066,SESCO,II.5.1,La Pampa,AR-L,annual,2020,gas oil combustion consumption by agriculture machines,195.19248,TJ,N2O,3.9,kg/TJ,761.2506719999999,kg +84bdaa94-07dc-3e0b-85d0-48a663aef082,SESCO,II.5.1,Mendoza,AR-M,annual,2020,gas oil combustion consumption by agriculture machines,630.00504,TJ,CO2,74100.0,kg/TJ,46683373.464,kg +3f126b0c-e64d-31ee-a4b8-e16383e811a2,SESCO,II.5.1,Mendoza,AR-M,annual,2020,gas oil combustion consumption by agriculture machines,630.00504,TJ,CH4,3.9,kg/TJ,2457.019656,kg +3f126b0c-e64d-31ee-a4b8-e16383e811a2,SESCO,II.5.1,Mendoza,AR-M,annual,2020,gas oil combustion consumption by agriculture machines,630.00504,TJ,N2O,3.9,kg/TJ,2457.019656,kg +a1c2ae2c-e089-392e-b7d2-c7efefe8a9e7,SESCO,II.5.1,Neuquén,AR-Q,annual,2020,gas oil combustion consumption by agriculture machines,203.96964,TJ,CO2,74100.0,kg/TJ,15114150.324,kg +154e3205-a3a3-354f-99ad-927d40cce352,SESCO,II.5.1,Neuquén,AR-Q,annual,2020,gas oil combustion consumption by agriculture machines,203.96964,TJ,CH4,3.9,kg/TJ,795.481596,kg +154e3205-a3a3-354f-99ad-927d40cce352,SESCO,II.5.1,Neuquén,AR-Q,annual,2020,gas oil combustion consumption by agriculture machines,203.96964,TJ,N2O,3.9,kg/TJ,795.481596,kg +5ba4cf84-dacf-3b7f-a146-f8e4877cccfe,SESCO,II.5.1,San Luis,AR-D,annual,2020,gas oil combustion consumption by agriculture machines,5.7791999999999994,TJ,CO2,74100.0,kg/TJ,428238.72,kg +c198ad6d-939c-330f-b1d6-b88304c2016b,SESCO,II.5.1,San Luis,AR-D,annual,2020,gas oil combustion consumption by agriculture machines,5.7791999999999994,TJ,CH4,3.9,kg/TJ,22.53888,kg +c198ad6d-939c-330f-b1d6-b88304c2016b,SESCO,II.5.1,San Luis,AR-D,annual,2020,gas oil combustion consumption by agriculture machines,5.7791999999999994,TJ,N2O,3.9,kg/TJ,22.53888,kg +e6fd848e-5742-33f2-a450-94c6a0e1b451,SESCO,II.5.1,Santa Cruz,AR-Z,annual,2020,gas oil combustion consumption by agriculture machines,22.90008,TJ,CO2,74100.0,kg/TJ,1696895.9279999998,kg +dfa95e28-b1ec-3538-8309-e6e6aa36a8f5,SESCO,II.5.1,Santa Cruz,AR-Z,annual,2020,gas oil combustion consumption by agriculture machines,22.90008,TJ,CH4,3.9,kg/TJ,89.310312,kg +dfa95e28-b1ec-3538-8309-e6e6aa36a8f5,SESCO,II.5.1,Santa Cruz,AR-Z,annual,2020,gas oil combustion consumption by agriculture machines,22.90008,TJ,N2O,3.9,kg/TJ,89.310312,kg +aef4c7f2-5685-38de-8ba9-31c1c4675224,SESCO,II.5.1,Santa Fe,AR-S,annual,2020,gas oil combustion consumption by agriculture machines,3499.05276,TJ,CO2,74100.0,kg/TJ,259279809.516,kg +872aefd7-cc40-34ad-89d1-af2ba960d1e0,SESCO,II.5.1,Santa Fe,AR-S,annual,2020,gas oil combustion consumption by agriculture machines,3499.05276,TJ,CH4,3.9,kg/TJ,13646.305764,kg +872aefd7-cc40-34ad-89d1-af2ba960d1e0,SESCO,II.5.1,Santa Fe,AR-S,annual,2020,gas oil combustion consumption by agriculture machines,3499.05276,TJ,N2O,3.9,kg/TJ,13646.305764,kg +424caa6a-e85c-35ff-8a84-8015d3a16428,SESCO,II.5.1,Santiago del Estero,AR-G,annual,2020,gas oil combustion consumption by agriculture machines,210.54348,TJ,CO2,74100.0,kg/TJ,15601271.867999999,kg +a33fa547-7125-399b-815c-d0ecf88611d2,SESCO,II.5.1,Santiago del Estero,AR-G,annual,2020,gas oil combustion consumption by agriculture machines,210.54348,TJ,CH4,3.9,kg/TJ,821.119572,kg +a33fa547-7125-399b-815c-d0ecf88611d2,SESCO,II.5.1,Santiago del Estero,AR-G,annual,2020,gas oil combustion consumption by agriculture machines,210.54348,TJ,N2O,3.9,kg/TJ,821.119572,kg +b01af474-ddaa-3270-8f4e-5df5689da09d,SESCO,II.5.1,Tucuman,AR-T,annual,2020,gas oil combustion consumption by agriculture machines,209.6766,TJ,CO2,74100.0,kg/TJ,15537036.06,kg +88bd48e4-0f2b-3377-9963-d86ed24ccbd4,SESCO,II.5.1,Tucuman,AR-T,annual,2020,gas oil combustion consumption by agriculture machines,209.6766,TJ,CH4,3.9,kg/TJ,817.73874,kg +88bd48e4-0f2b-3377-9963-d86ed24ccbd4,SESCO,II.5.1,Tucuman,AR-T,annual,2020,gas oil combustion consumption by agriculture machines,209.6766,TJ,N2O,3.9,kg/TJ,817.73874,kg +a5905620-ddf1-3e41-88c2-861b0bfd520a,SESCO,II.5.1,Buenos Aires,AR-B,annual,2020,gas oil combustion consumption by agriculture machines,189.01596,TJ,CO2,74100.0,kg/TJ,14006082.636,kg +f3027518-e1d9-3351-a818-7ebc7115e118,SESCO,II.5.1,Buenos Aires,AR-B,annual,2020,gas oil combustion consumption by agriculture machines,189.01596,TJ,CH4,3.9,kg/TJ,737.162244,kg +f3027518-e1d9-3351-a818-7ebc7115e118,SESCO,II.5.1,Buenos Aires,AR-B,annual,2020,gas oil combustion consumption by agriculture machines,189.01596,TJ,N2O,3.9,kg/TJ,737.162244,kg +f056b303-fc90-3a0a-b259-51a1d44abe0a,SESCO,II.5.1,Capital Federal,AR-C,annual,2020,gas oil combustion consumption by agriculture machines,0.7223999999999999,TJ,CO2,74100.0,kg/TJ,53529.84,kg +0c2af07a-846a-3b63-bbdf-a58dfea3ff21,SESCO,II.5.1,Capital Federal,AR-C,annual,2020,gas oil combustion consumption by agriculture machines,0.7223999999999999,TJ,CH4,3.9,kg/TJ,2.81736,kg +0c2af07a-846a-3b63-bbdf-a58dfea3ff21,SESCO,II.5.1,Capital Federal,AR-C,annual,2020,gas oil combustion consumption by agriculture machines,0.7223999999999999,TJ,N2O,3.9,kg/TJ,2.81736,kg +f85f6495-da0d-3510-b146-24fd900bffff,SESCO,II.5.1,Chaco,AR-H,annual,2020,gas oil combustion consumption by agriculture machines,90.44448,TJ,CO2,74100.0,kg/TJ,6701935.968,kg +946598e9-8e0a-3230-87e3-86522741f525,SESCO,II.5.1,Chaco,AR-H,annual,2020,gas oil combustion consumption by agriculture machines,90.44448,TJ,CH4,3.9,kg/TJ,352.733472,kg +946598e9-8e0a-3230-87e3-86522741f525,SESCO,II.5.1,Chaco,AR-H,annual,2020,gas oil combustion consumption by agriculture machines,90.44448,TJ,N2O,3.9,kg/TJ,352.733472,kg +0561244a-9d9c-33f9-bf8d-17686ad9fcea,SESCO,II.5.1,Corrientes,AR-W,annual,2020,gas oil combustion consumption by agriculture machines,14.484119999999999,TJ,CO2,74100.0,kg/TJ,1073273.292,kg +06016544-ce43-3b81-b27a-081efb65b6d3,SESCO,II.5.1,Corrientes,AR-W,annual,2020,gas oil combustion consumption by agriculture machines,14.484119999999999,TJ,CH4,3.9,kg/TJ,56.48806799999999,kg +06016544-ce43-3b81-b27a-081efb65b6d3,SESCO,II.5.1,Corrientes,AR-W,annual,2020,gas oil combustion consumption by agriculture machines,14.484119999999999,TJ,N2O,3.9,kg/TJ,56.48806799999999,kg +f6700944-7333-3c50-b7ba-d778c1ec3ce5,SESCO,II.5.1,Córdoba,AR-X,annual,2020,gas oil combustion consumption by agriculture machines,250.3116,TJ,CO2,74100.0,kg/TJ,18548089.56,kg +ca659abc-8888-3fc2-8ba6-89685e175824,SESCO,II.5.1,Córdoba,AR-X,annual,2020,gas oil combustion consumption by agriculture machines,250.3116,TJ,CH4,3.9,kg/TJ,976.21524,kg +ca659abc-8888-3fc2-8ba6-89685e175824,SESCO,II.5.1,Córdoba,AR-X,annual,2020,gas oil combustion consumption by agriculture machines,250.3116,TJ,N2O,3.9,kg/TJ,976.21524,kg +f9e256a0-ed9e-3801-9b71-e68a0e956830,SESCO,II.5.1,Entre Rios,AR-E,annual,2020,gas oil combustion consumption by agriculture machines,16.57908,TJ,CO2,74100.0,kg/TJ,1228509.828,kg +916098bd-84cc-3faa-bc56-cf73d6eb480d,SESCO,II.5.1,Entre Rios,AR-E,annual,2020,gas oil combustion consumption by agriculture machines,16.57908,TJ,CH4,3.9,kg/TJ,64.658412,kg +916098bd-84cc-3faa-bc56-cf73d6eb480d,SESCO,II.5.1,Entre Rios,AR-E,annual,2020,gas oil combustion consumption by agriculture machines,16.57908,TJ,N2O,3.9,kg/TJ,64.658412,kg +c3dce7ca-7336-3384-a7d8-ad9ba8c114a1,SESCO,II.5.1,La Pampa,AR-L,annual,2020,gas oil combustion consumption by agriculture machines,34.38624,TJ,CO2,74100.0,kg/TJ,2548020.384,kg +9766f5db-2634-3e68-ae71-d8491bb8a072,SESCO,II.5.1,La Pampa,AR-L,annual,2020,gas oil combustion consumption by agriculture machines,34.38624,TJ,CH4,3.9,kg/TJ,134.106336,kg +9766f5db-2634-3e68-ae71-d8491bb8a072,SESCO,II.5.1,La Pampa,AR-L,annual,2020,gas oil combustion consumption by agriculture machines,34.38624,TJ,N2O,3.9,kg/TJ,134.106336,kg +396e95a9-f96a-3e06-8c68-ea64a9f06f6a,SESCO,II.5.1,Mendoza,AR-M,annual,2020,gas oil combustion consumption by agriculture machines,78.88607999999999,TJ,CO2,74100.0,kg/TJ,5845458.527999999,kg +7b833326-68ab-3c3b-a3a6-dfbd105d7d6d,SESCO,II.5.1,Mendoza,AR-M,annual,2020,gas oil combustion consumption by agriculture machines,78.88607999999999,TJ,CH4,3.9,kg/TJ,307.65571199999994,kg +7b833326-68ab-3c3b-a3a6-dfbd105d7d6d,SESCO,II.5.1,Mendoza,AR-M,annual,2020,gas oil combustion consumption by agriculture machines,78.88607999999999,TJ,N2O,3.9,kg/TJ,307.65571199999994,kg +69f020cb-05a2-3c94-8a9e-cbadf5204651,SESCO,II.5.1,Neuquén,AR-Q,annual,2020,gas oil combustion consumption by agriculture machines,29.58228,TJ,CO2,74100.0,kg/TJ,2192046.948,kg +3127ebff-a3d2-3bfc-8b3b-b8bf9eb5a41b,SESCO,II.5.1,Neuquén,AR-Q,annual,2020,gas oil combustion consumption by agriculture machines,29.58228,TJ,CH4,3.9,kg/TJ,115.370892,kg +3127ebff-a3d2-3bfc-8b3b-b8bf9eb5a41b,SESCO,II.5.1,Neuquén,AR-Q,annual,2020,gas oil combustion consumption by agriculture machines,29.58228,TJ,N2O,3.9,kg/TJ,115.370892,kg +9f289720-a6d3-34b2-ac3b-4c6c615906d7,SESCO,II.5.1,San Luis,AR-D,annual,2020,gas oil combustion consumption by agriculture machines,1.33644,TJ,CO2,74100.0,kg/TJ,99030.20400000001,kg +940638db-169f-3866-9cb4-cff4e4a9bd3f,SESCO,II.5.1,San Luis,AR-D,annual,2020,gas oil combustion consumption by agriculture machines,1.33644,TJ,CH4,3.9,kg/TJ,5.212116,kg +940638db-169f-3866-9cb4-cff4e4a9bd3f,SESCO,II.5.1,San Luis,AR-D,annual,2020,gas oil combustion consumption by agriculture machines,1.33644,TJ,N2O,3.9,kg/TJ,5.212116,kg +70ea49ef-616b-3f16-95e1-aa700cf8a293,SESCO,II.5.1,Santa Cruz,AR-Z,annual,2020,gas oil combustion consumption by agriculture machines,133.68012,TJ,CO2,74100.0,kg/TJ,9905696.891999999,kg +e2d21bfd-b665-346e-8263-64ee4cd382b1,SESCO,II.5.1,Santa Cruz,AR-Z,annual,2020,gas oil combustion consumption by agriculture machines,133.68012,TJ,CH4,3.9,kg/TJ,521.3524679999999,kg +e2d21bfd-b665-346e-8263-64ee4cd382b1,SESCO,II.5.1,Santa Cruz,AR-Z,annual,2020,gas oil combustion consumption by agriculture machines,133.68012,TJ,N2O,3.9,kg/TJ,521.3524679999999,kg +aab7d1c1-3ecb-3fd3-9aa7-24e13a08e878,SESCO,II.5.1,Santa Fe,AR-S,annual,2020,gas oil combustion consumption by agriculture machines,355.09572,TJ,CO2,74100.0,kg/TJ,26312592.851999998,kg +39e1d610-7bc9-3717-b9a6-8d62d7844aa2,SESCO,II.5.1,Santa Fe,AR-S,annual,2020,gas oil combustion consumption by agriculture machines,355.09572,TJ,CH4,3.9,kg/TJ,1384.873308,kg +39e1d610-7bc9-3717-b9a6-8d62d7844aa2,SESCO,II.5.1,Santa Fe,AR-S,annual,2020,gas oil combustion consumption by agriculture machines,355.09572,TJ,N2O,3.9,kg/TJ,1384.873308,kg +9545de64-69b0-3f93-ab10-c4e4b9974e06,SESCO,II.5.1,Santiago del Estero,AR-G,annual,2020,gas oil combustion consumption by agriculture machines,83.40108,TJ,CO2,74100.0,kg/TJ,6180020.028,kg +229aa0c9-6572-3ede-bdd4-9b5da1bac315,SESCO,II.5.1,Santiago del Estero,AR-G,annual,2020,gas oil combustion consumption by agriculture machines,83.40108,TJ,CH4,3.9,kg/TJ,325.264212,kg +229aa0c9-6572-3ede-bdd4-9b5da1bac315,SESCO,II.5.1,Santiago del Estero,AR-G,annual,2020,gas oil combustion consumption by agriculture machines,83.40108,TJ,N2O,3.9,kg/TJ,325.264212,kg +7cefec94-7c62-3f2f-ba2b-7839d761c7af,SESCO,II.5.1,Tucuman,AR-T,annual,2020,gas oil combustion consumption by agriculture machines,46.81152,TJ,CO2,74100.0,kg/TJ,3468733.632,kg +aa3c46b7-2d77-3827-a275-7f06a5746901,SESCO,II.5.1,Tucuman,AR-T,annual,2020,gas oil combustion consumption by agriculture machines,46.81152,TJ,CH4,3.9,kg/TJ,182.564928,kg +aa3c46b7-2d77-3827-a275-7f06a5746901,SESCO,II.5.1,Tucuman,AR-T,annual,2020,gas oil combustion consumption by agriculture machines,46.81152,TJ,N2O,3.9,kg/TJ,182.564928,kg +74ff3101-3b86-3654-bb2c-3765f8d59842,SESCO,II.1.1,Buenos Aires,AR-B,annual,2020,gas oil combustion consumption by to the public,7392.03024,TJ,CO2,74100.0,kg/TJ,547749440.784,kg +965be6a6-81b1-373c-9ff4-2d2604793980,SESCO,II.1.1,Buenos Aires,AR-B,annual,2020,gas oil combustion consumption by to the public,7392.03024,TJ,CH4,3.9,kg/TJ,28828.917935999998,kg +965be6a6-81b1-373c-9ff4-2d2604793980,SESCO,II.1.1,Buenos Aires,AR-B,annual,2020,gas oil combustion consumption by to the public,7392.03024,TJ,N2O,3.9,kg/TJ,28828.917935999998,kg +9f651c50-c457-3292-abc6-66a9a6afdbfe,SESCO,II.1.1,Capital Federal,AR-C,annual,2020,gas oil combustion consumption by to the public,597.67764,TJ,CO2,74100.0,kg/TJ,44287913.124,kg +96a09b2c-1685-3542-92d1-d71edb5a81a1,SESCO,II.1.1,Capital Federal,AR-C,annual,2020,gas oil combustion consumption by to the public,597.67764,TJ,CH4,3.9,kg/TJ,2330.942796,kg +96a09b2c-1685-3542-92d1-d71edb5a81a1,SESCO,II.1.1,Capital Federal,AR-C,annual,2020,gas oil combustion consumption by to the public,597.67764,TJ,N2O,3.9,kg/TJ,2330.942796,kg +b65f3a49-f36d-352a-9f9e-9a814036f021,SESCO,II.1.1,Catamarca,AR-K,annual,2020,gas oil combustion consumption by to the public,266.05992,TJ,CO2,74100.0,kg/TJ,19715040.071999997,kg +cd71552c-f263-30ca-8586-9af2096e2d16,SESCO,II.1.1,Catamarca,AR-K,annual,2020,gas oil combustion consumption by to the public,266.05992,TJ,CH4,3.9,kg/TJ,1037.633688,kg +cd71552c-f263-30ca-8586-9af2096e2d16,SESCO,II.1.1,Catamarca,AR-K,annual,2020,gas oil combustion consumption by to the public,266.05992,TJ,N2O,3.9,kg/TJ,1037.633688,kg +10897abd-ba73-3516-806f-1e012fd2f9d3,SESCO,II.1.1,Chaco,AR-H,annual,2020,gas oil combustion consumption by to the public,354.01212,TJ,CO2,74100.0,kg/TJ,26232298.092,kg +b4c3b78b-6b9d-30e8-b0a3-73d63af5c40e,SESCO,II.1.1,Chaco,AR-H,annual,2020,gas oil combustion consumption by to the public,354.01212,TJ,CH4,3.9,kg/TJ,1380.647268,kg +b4c3b78b-6b9d-30e8-b0a3-73d63af5c40e,SESCO,II.1.1,Chaco,AR-H,annual,2020,gas oil combustion consumption by to the public,354.01212,TJ,N2O,3.9,kg/TJ,1380.647268,kg +a9303848-1b75-3f6a-8e6b-88b2a965ba16,SESCO,II.1.1,Chubut,AR-U,annual,2020,gas oil combustion consumption by to the public,1048.41912,TJ,CO2,74100.0,kg/TJ,77687856.792,kg +1bed8c31-780f-3dff-af24-4a96c7ccc5b2,SESCO,II.1.1,Chubut,AR-U,annual,2020,gas oil combustion consumption by to the public,1048.41912,TJ,CH4,3.9,kg/TJ,4088.8345679999998,kg +1bed8c31-780f-3dff-af24-4a96c7ccc5b2,SESCO,II.1.1,Chubut,AR-U,annual,2020,gas oil combustion consumption by to the public,1048.41912,TJ,N2O,3.9,kg/TJ,4088.8345679999998,kg +87836d5a-9541-3ca2-bb65-a92e5f265199,SESCO,II.1.1,Corrientes,AR-W,annual,2020,gas oil combustion consumption by to the public,760.9761599999999,TJ,CO2,74100.0,kg/TJ,56388333.45599999,kg +d28d525b-e4eb-3292-90bc-dff456e52426,SESCO,II.1.1,Corrientes,AR-W,annual,2020,gas oil combustion consumption by to the public,760.9761599999999,TJ,CH4,3.9,kg/TJ,2967.8070239999997,kg +d28d525b-e4eb-3292-90bc-dff456e52426,SESCO,II.1.1,Corrientes,AR-W,annual,2020,gas oil combustion consumption by to the public,760.9761599999999,TJ,N2O,3.9,kg/TJ,2967.8070239999997,kg +b080ddcd-951c-3755-8093-ca611226fcc2,SESCO,II.1.1,Córdoba,AR-X,annual,2020,gas oil combustion consumption by to the public,3812.68272,TJ,CO2,74100.0,kg/TJ,282519789.552,kg +1426df1d-7d43-3399-a45a-8f827ff96b7f,SESCO,II.1.1,Córdoba,AR-X,annual,2020,gas oil combustion consumption by to the public,3812.68272,TJ,CH4,3.9,kg/TJ,14869.462607999998,kg +1426df1d-7d43-3399-a45a-8f827ff96b7f,SESCO,II.1.1,Córdoba,AR-X,annual,2020,gas oil combustion consumption by to the public,3812.68272,TJ,N2O,3.9,kg/TJ,14869.462607999998,kg +ab89a31b-89e9-3819-9551-09a601105f33,SESCO,II.1.1,Entre Rios,AR-E,annual,2020,gas oil combustion consumption by to the public,1301.83704,TJ,CO2,74100.0,kg/TJ,96466124.66399999,kg +698bfebf-a008-3cdd-b0f0-d653375987b7,SESCO,II.1.1,Entre Rios,AR-E,annual,2020,gas oil combustion consumption by to the public,1301.83704,TJ,CH4,3.9,kg/TJ,5077.1644559999995,kg +698bfebf-a008-3cdd-b0f0-d653375987b7,SESCO,II.1.1,Entre Rios,AR-E,annual,2020,gas oil combustion consumption by to the public,1301.83704,TJ,N2O,3.9,kg/TJ,5077.1644559999995,kg +2a585c15-54a0-332c-993c-06c7ee130cd4,SESCO,II.1.1,Formosa,AR-P,annual,2020,gas oil combustion consumption by to the public,456.52067999999997,TJ,CO2,74100.0,kg/TJ,33828182.388,kg +c41662dc-1adc-3bd8-aaee-c822d32f6012,SESCO,II.1.1,Formosa,AR-P,annual,2020,gas oil combustion consumption by to the public,456.52067999999997,TJ,CH4,3.9,kg/TJ,1780.4306519999998,kg +c41662dc-1adc-3bd8-aaee-c822d32f6012,SESCO,II.1.1,Formosa,AR-P,annual,2020,gas oil combustion consumption by to the public,456.52067999999997,TJ,N2O,3.9,kg/TJ,1780.4306519999998,kg +110c5324-287d-3df6-9a44-3023993c5baa,SESCO,II.1.1,Jujuy,AR-Y,annual,2020,gas oil combustion consumption by to the public,215.817,TJ,CO2,74100.0,kg/TJ,15992039.700000001,kg +28a7aaf6-ab6c-3639-83fd-d84fca41a7f0,SESCO,II.1.1,Jujuy,AR-Y,annual,2020,gas oil combustion consumption by to the public,215.817,TJ,CH4,3.9,kg/TJ,841.6863,kg +28a7aaf6-ab6c-3639-83fd-d84fca41a7f0,SESCO,II.1.1,Jujuy,AR-Y,annual,2020,gas oil combustion consumption by to the public,215.817,TJ,N2O,3.9,kg/TJ,841.6863,kg +c9932bb8-2c28-3c32-a704-b119c315904d,SESCO,II.1.1,La Pampa,AR-L,annual,2020,gas oil combustion consumption by to the public,306.55044,TJ,CO2,74100.0,kg/TJ,22715387.604,kg +584552ce-45ff-39c0-9cda-726db875d7eb,SESCO,II.1.1,La Pampa,AR-L,annual,2020,gas oil combustion consumption by to the public,306.55044,TJ,CH4,3.9,kg/TJ,1195.5467159999998,kg +584552ce-45ff-39c0-9cda-726db875d7eb,SESCO,II.1.1,La Pampa,AR-L,annual,2020,gas oil combustion consumption by to the public,306.55044,TJ,N2O,3.9,kg/TJ,1195.5467159999998,kg +52012348-4c1d-3496-9e3e-26597959a708,SESCO,II.1.1,La Rioja,AR-F,annual,2020,gas oil combustion consumption by to the public,44.247,TJ,CO2,74100.0,kg/TJ,3278702.7,kg +7732aa79-267f-34ea-9132-ba994af32426,SESCO,II.1.1,La Rioja,AR-F,annual,2020,gas oil combustion consumption by to the public,44.247,TJ,CH4,3.9,kg/TJ,172.5633,kg +7732aa79-267f-34ea-9132-ba994af32426,SESCO,II.1.1,La Rioja,AR-F,annual,2020,gas oil combustion consumption by to the public,44.247,TJ,N2O,3.9,kg/TJ,172.5633,kg +471144bb-524a-355c-8fb1-a5c3944b8098,SESCO,II.1.1,Mendoza,AR-M,annual,2020,gas oil combustion consumption by to the public,1213.92096,TJ,CO2,74100.0,kg/TJ,89951543.13599999,kg +021d1d5d-0cd3-3b2d-9425-f027c6f8175c,SESCO,II.1.1,Mendoza,AR-M,annual,2020,gas oil combustion consumption by to the public,1213.92096,TJ,CH4,3.9,kg/TJ,4734.291743999999,kg +021d1d5d-0cd3-3b2d-9425-f027c6f8175c,SESCO,II.1.1,Mendoza,AR-M,annual,2020,gas oil combustion consumption by to the public,1213.92096,TJ,N2O,3.9,kg/TJ,4734.291743999999,kg +033e38f8-db04-3269-9f43-f8237a4310c3,SESCO,II.1.1,Misiones,AR-N,annual,2020,gas oil combustion consumption by to the public,833.14392,TJ,CO2,74100.0,kg/TJ,61735964.471999995,kg +e7fddef1-e69e-317e-8fac-c7574d06adf2,SESCO,II.1.1,Misiones,AR-N,annual,2020,gas oil combustion consumption by to the public,833.14392,TJ,CH4,3.9,kg/TJ,3249.2612879999997,kg +e7fddef1-e69e-317e-8fac-c7574d06adf2,SESCO,II.1.1,Misiones,AR-N,annual,2020,gas oil combustion consumption by to the public,833.14392,TJ,N2O,3.9,kg/TJ,3249.2612879999997,kg +68ca512b-5153-3bcb-ac82-efce6d34bab4,SESCO,II.1.1,Neuquén,AR-Q,annual,2020,gas oil combustion consumption by to the public,170.19744,TJ,CO2,74100.0,kg/TJ,12611630.304,kg +1d4d36d8-fd1e-30ac-a8de-2efe6709d3af,SESCO,II.1.1,Neuquén,AR-Q,annual,2020,gas oil combustion consumption by to the public,170.19744,TJ,CH4,3.9,kg/TJ,663.7700159999999,kg +1d4d36d8-fd1e-30ac-a8de-2efe6709d3af,SESCO,II.1.1,Neuquén,AR-Q,annual,2020,gas oil combustion consumption by to the public,170.19744,TJ,N2O,3.9,kg/TJ,663.7700159999999,kg +3debee2b-6fd0-3f28-adcc-4975fc6c5286,SESCO,II.1.1,Rio Negro,AR-R,annual,2020,gas oil combustion consumption by to the public,462.6972,TJ,CO2,74100.0,kg/TJ,34285862.52,kg +1c2c2317-1a3d-3813-9941-825c7f67be5e,SESCO,II.1.1,Rio Negro,AR-R,annual,2020,gas oil combustion consumption by to the public,462.6972,TJ,CH4,3.9,kg/TJ,1804.51908,kg +1c2c2317-1a3d-3813-9941-825c7f67be5e,SESCO,II.1.1,Rio Negro,AR-R,annual,2020,gas oil combustion consumption by to the public,462.6972,TJ,N2O,3.9,kg/TJ,1804.51908,kg +83bb315e-7906-3443-89cb-12625a9ee128,SESCO,II.1.1,Salta,AR-A,annual,2020,gas oil combustion consumption by to the public,53.85492,TJ,CO2,74100.0,kg/TJ,3990649.572,kg +86936c01-7137-3958-bdc6-9b24d9edff96,SESCO,II.1.1,Salta,AR-A,annual,2020,gas oil combustion consumption by to the public,53.85492,TJ,CH4,3.9,kg/TJ,210.034188,kg +86936c01-7137-3958-bdc6-9b24d9edff96,SESCO,II.1.1,Salta,AR-A,annual,2020,gas oil combustion consumption by to the public,53.85492,TJ,N2O,3.9,kg/TJ,210.034188,kg +fbd03dd2-b790-3568-9cc1-2331d6b7092d,SESCO,II.1.1,San Juan,AR-J,annual,2020,gas oil combustion consumption by to the public,227.59212,TJ,CO2,74100.0,kg/TJ,16864576.092,kg +4c6c881b-3639-3a29-b2b9-8e03672ac785,SESCO,II.1.1,San Juan,AR-J,annual,2020,gas oil combustion consumption by to the public,227.59212,TJ,CH4,3.9,kg/TJ,887.6092679999999,kg +4c6c881b-3639-3a29-b2b9-8e03672ac785,SESCO,II.1.1,San Juan,AR-J,annual,2020,gas oil combustion consumption by to the public,227.59212,TJ,N2O,3.9,kg/TJ,887.6092679999999,kg +475ff580-d6d5-36ea-ab1e-b3b5a8ce1157,SESCO,II.1.1,San Luis,AR-D,annual,2020,gas oil combustion consumption by to the public,546.6762,TJ,CO2,74100.0,kg/TJ,40508706.42,kg +79cf905e-b492-350b-90b7-328988ea57f1,SESCO,II.1.1,San Luis,AR-D,annual,2020,gas oil combustion consumption by to the public,546.6762,TJ,CH4,3.9,kg/TJ,2132.03718,kg +79cf905e-b492-350b-90b7-328988ea57f1,SESCO,II.1.1,San Luis,AR-D,annual,2020,gas oil combustion consumption by to the public,546.6762,TJ,N2O,3.9,kg/TJ,2132.03718,kg +18a2fb32-0608-3d6f-87b5-162520d6daba,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2020,gas oil combustion consumption by to the public,314.56908,TJ,CO2,74100.0,kg/TJ,23309568.827999998,kg +62ad449b-b55b-330b-a284-fc0fea7b06b7,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2020,gas oil combustion consumption by to the public,314.56908,TJ,CH4,3.9,kg/TJ,1226.8194119999998,kg +62ad449b-b55b-330b-a284-fc0fea7b06b7,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2020,gas oil combustion consumption by to the public,314.56908,TJ,N2O,3.9,kg/TJ,1226.8194119999998,kg +fc010549-acc3-3bfb-8ec3-d0d1e1a9dca9,SESCO,II.1.1,Santa Fe,AR-S,annual,2020,gas oil combustion consumption by to the public,2281.19472,TJ,CO2,74100.0,kg/TJ,169036528.752,kg +ec067d2f-cc0d-3382-865a-81c40545d780,SESCO,II.1.1,Santa Fe,AR-S,annual,2020,gas oil combustion consumption by to the public,2281.19472,TJ,CH4,3.9,kg/TJ,8896.659408,kg +ec067d2f-cc0d-3382-865a-81c40545d780,SESCO,II.1.1,Santa Fe,AR-S,annual,2020,gas oil combustion consumption by to the public,2281.19472,TJ,N2O,3.9,kg/TJ,8896.659408,kg +bccf3a80-62e8-36ab-a1e8-aa545ddb5d7b,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2020,gas oil combustion consumption by to the public,482.77992,TJ,CO2,74100.0,kg/TJ,35773992.072,kg +a8cce152-8d7a-3552-84bc-6854579511ea,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2020,gas oil combustion consumption by to the public,482.77992,TJ,CH4,3.9,kg/TJ,1882.841688,kg +a8cce152-8d7a-3552-84bc-6854579511ea,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2020,gas oil combustion consumption by to the public,482.77992,TJ,N2O,3.9,kg/TJ,1882.841688,kg +182ff897-c273-348e-81ad-cf4aa4c83707,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2020,gas oil combustion consumption by to the public,45.5112,TJ,CO2,74100.0,kg/TJ,3372379.9200000004,kg +1275b2d8-15af-363e-9b69-11b84d703613,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2020,gas oil combustion consumption by to the public,45.5112,TJ,CH4,3.9,kg/TJ,177.49368,kg +1275b2d8-15af-363e-9b69-11b84d703613,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2020,gas oil combustion consumption by to the public,45.5112,TJ,N2O,3.9,kg/TJ,177.49368,kg +6ebf6582-9308-374b-9a9f-c353b9f0e41f,SESCO,II.1.1,Tucuman,AR-T,annual,2020,gas oil combustion consumption by to the public,74.29884,TJ,CO2,74100.0,kg/TJ,5505544.044,kg +c67889e2-836b-35e1-bb93-2086df8d3173,SESCO,II.1.1,Tucuman,AR-T,annual,2020,gas oil combustion consumption by to the public,74.29884,TJ,CH4,3.9,kg/TJ,289.765476,kg +c67889e2-836b-35e1-bb93-2086df8d3173,SESCO,II.1.1,Tucuman,AR-T,annual,2020,gas oil combustion consumption by to the public,74.29884,TJ,N2O,3.9,kg/TJ,289.765476,kg +d74d2b0c-0a37-3e9f-a3c2-ac9068b69b5c,SESCO,II.1.1,Buenos Aires,AR-B,annual,2020,gas oil combustion consumption by to the public,2842.53564,TJ,CO2,74100.0,kg/TJ,210631890.924,kg +8a8e63a7-434f-3b13-ad09-1cdda76857b1,SESCO,II.1.1,Buenos Aires,AR-B,annual,2020,gas oil combustion consumption by to the public,2842.53564,TJ,CH4,3.9,kg/TJ,11085.888996,kg +8a8e63a7-434f-3b13-ad09-1cdda76857b1,SESCO,II.1.1,Buenos Aires,AR-B,annual,2020,gas oil combustion consumption by to the public,2842.53564,TJ,N2O,3.9,kg/TJ,11085.888996,kg +71b329ab-6b6f-3435-af61-0bba16bbf81a,SESCO,II.1.1,Capital Federal,AR-C,annual,2020,gas oil combustion consumption by to the public,429.35844,TJ,CO2,74100.0,kg/TJ,31815460.404,kg +fa5488cb-ae3a-3707-9bf9-50b94980a2fd,SESCO,II.1.1,Capital Federal,AR-C,annual,2020,gas oil combustion consumption by to the public,429.35844,TJ,CH4,3.9,kg/TJ,1674.4979159999998,kg +fa5488cb-ae3a-3707-9bf9-50b94980a2fd,SESCO,II.1.1,Capital Federal,AR-C,annual,2020,gas oil combustion consumption by to the public,429.35844,TJ,N2O,3.9,kg/TJ,1674.4979159999998,kg +a80a3412-252c-3aea-9404-b0326da6959e,SESCO,II.1.1,Catamarca,AR-K,annual,2020,gas oil combustion consumption by to the public,170.55864,TJ,CO2,74100.0,kg/TJ,12638395.224,kg +44964d34-5d98-32e7-b031-ba49c043dc15,SESCO,II.1.1,Catamarca,AR-K,annual,2020,gas oil combustion consumption by to the public,170.55864,TJ,CH4,3.9,kg/TJ,665.178696,kg +44964d34-5d98-32e7-b031-ba49c043dc15,SESCO,II.1.1,Catamarca,AR-K,annual,2020,gas oil combustion consumption by to the public,170.55864,TJ,N2O,3.9,kg/TJ,665.178696,kg +1704b5f4-0800-3c32-ba05-e764b238f2e3,SESCO,II.1.1,Chaco,AR-H,annual,2020,gas oil combustion consumption by to the public,126.09492,TJ,CO2,74100.0,kg/TJ,9343633.572,kg +f1fd8a10-bdd1-3bc9-a397-e785a25ca8b2,SESCO,II.1.1,Chaco,AR-H,annual,2020,gas oil combustion consumption by to the public,126.09492,TJ,CH4,3.9,kg/TJ,491.770188,kg +f1fd8a10-bdd1-3bc9-a397-e785a25ca8b2,SESCO,II.1.1,Chaco,AR-H,annual,2020,gas oil combustion consumption by to the public,126.09492,TJ,N2O,3.9,kg/TJ,491.770188,kg +b82e12fd-6bb2-3d6a-85af-19172a517a99,SESCO,II.1.1,Chubut,AR-U,annual,2020,gas oil combustion consumption by to the public,510.48395999999997,TJ,CO2,74100.0,kg/TJ,37826861.436,kg +7371d506-1245-33e7-b802-890ac770857b,SESCO,II.1.1,Chubut,AR-U,annual,2020,gas oil combustion consumption by to the public,510.48395999999997,TJ,CH4,3.9,kg/TJ,1990.8874439999997,kg +7371d506-1245-33e7-b802-890ac770857b,SESCO,II.1.1,Chubut,AR-U,annual,2020,gas oil combustion consumption by to the public,510.48395999999997,TJ,N2O,3.9,kg/TJ,1990.8874439999997,kg +5d95915f-8192-36d9-8e06-4be3e9f3cae1,SESCO,II.1.1,Corrientes,AR-W,annual,2020,gas oil combustion consumption by to the public,212.38559999999998,TJ,CO2,74100.0,kg/TJ,15737772.959999999,kg +80379c15-fcb0-30b7-97ad-8bb2ce824ec6,SESCO,II.1.1,Corrientes,AR-W,annual,2020,gas oil combustion consumption by to the public,212.38559999999998,TJ,CH4,3.9,kg/TJ,828.3038399999999,kg +80379c15-fcb0-30b7-97ad-8bb2ce824ec6,SESCO,II.1.1,Corrientes,AR-W,annual,2020,gas oil combustion consumption by to the public,212.38559999999998,TJ,N2O,3.9,kg/TJ,828.3038399999999,kg +6b7f4023-267c-3cbf-b8c1-d3b5d41a4aaf,SESCO,II.1.1,Córdoba,AR-X,annual,2020,gas oil combustion consumption by to the public,894.98136,TJ,CO2,74100.0,kg/TJ,66318118.776,kg +d8dbe969-fe6f-3b2e-a91a-3c12ed161b65,SESCO,II.1.1,Córdoba,AR-X,annual,2020,gas oil combustion consumption by to the public,894.98136,TJ,CH4,3.9,kg/TJ,3490.427304,kg +d8dbe969-fe6f-3b2e-a91a-3c12ed161b65,SESCO,II.1.1,Córdoba,AR-X,annual,2020,gas oil combustion consumption by to the public,894.98136,TJ,N2O,3.9,kg/TJ,3490.427304,kg +d0c89ef0-5980-3f97-8e1e-36d93af8c466,SESCO,II.1.1,Entre Rios,AR-E,annual,2020,gas oil combustion consumption by to the public,387.96492,TJ,CO2,74100.0,kg/TJ,28748200.572,kg +cc655e13-c209-3664-89f2-4476756e7cb7,SESCO,II.1.1,Entre Rios,AR-E,annual,2020,gas oil combustion consumption by to the public,387.96492,TJ,CH4,3.9,kg/TJ,1513.063188,kg +cc655e13-c209-3664-89f2-4476756e7cb7,SESCO,II.1.1,Entre Rios,AR-E,annual,2020,gas oil combustion consumption by to the public,387.96492,TJ,N2O,3.9,kg/TJ,1513.063188,kg +b1136971-458f-3c67-bb1c-016c72102c76,SESCO,II.1.1,Formosa,AR-P,annual,2020,gas oil combustion consumption by to the public,249.7698,TJ,CO2,74100.0,kg/TJ,18507942.18,kg +fa7127a2-4f26-3e2c-b0cd-f6eaecf6bdbd,SESCO,II.1.1,Formosa,AR-P,annual,2020,gas oil combustion consumption by to the public,249.7698,TJ,CH4,3.9,kg/TJ,974.10222,kg +fa7127a2-4f26-3e2c-b0cd-f6eaecf6bdbd,SESCO,II.1.1,Formosa,AR-P,annual,2020,gas oil combustion consumption by to the public,249.7698,TJ,N2O,3.9,kg/TJ,974.10222,kg +8fc47cd0-a4e1-334e-afc2-fa8509006f28,SESCO,II.1.1,Jujuy,AR-Y,annual,2020,gas oil combustion consumption by to the public,68.70024,TJ,CO2,74100.0,kg/TJ,5090687.784,kg +d19aa552-d232-38a7-9b59-b9357bab7536,SESCO,II.1.1,Jujuy,AR-Y,annual,2020,gas oil combustion consumption by to the public,68.70024,TJ,CH4,3.9,kg/TJ,267.930936,kg +d19aa552-d232-38a7-9b59-b9357bab7536,SESCO,II.1.1,Jujuy,AR-Y,annual,2020,gas oil combustion consumption by to the public,68.70024,TJ,N2O,3.9,kg/TJ,267.930936,kg +762f685a-4ee2-32be-bd1f-ad4dbf8d9ab3,SESCO,II.1.1,La Pampa,AR-L,annual,2020,gas oil combustion consumption by to the public,120.2796,TJ,CO2,74100.0,kg/TJ,8912718.36,kg +dd9c5daa-6309-3a15-b781-bbcc8d374c67,SESCO,II.1.1,La Pampa,AR-L,annual,2020,gas oil combustion consumption by to the public,120.2796,TJ,CH4,3.9,kg/TJ,469.09044,kg +dd9c5daa-6309-3a15-b781-bbcc8d374c67,SESCO,II.1.1,La Pampa,AR-L,annual,2020,gas oil combustion consumption by to the public,120.2796,TJ,N2O,3.9,kg/TJ,469.09044,kg +6cefdacc-1084-3192-a990-405c6579e6b5,SESCO,II.1.1,La Rioja,AR-F,annual,2020,gas oil combustion consumption by to the public,40.418279999999996,TJ,CO2,74100.0,kg/TJ,2994994.5479999995,kg +8b17b727-2465-392c-b764-b6dfbae23c6d,SESCO,II.1.1,La Rioja,AR-F,annual,2020,gas oil combustion consumption by to the public,40.418279999999996,TJ,CH4,3.9,kg/TJ,157.63129199999997,kg +8b17b727-2465-392c-b764-b6dfbae23c6d,SESCO,II.1.1,La Rioja,AR-F,annual,2020,gas oil combustion consumption by to the public,40.418279999999996,TJ,N2O,3.9,kg/TJ,157.63129199999997,kg +37e245a3-3d32-3dfa-b692-745e1a2fe16a,SESCO,II.1.1,Mendoza,AR-M,annual,2020,gas oil combustion consumption by to the public,285.27576,TJ,CO2,74100.0,kg/TJ,21138933.816,kg +79e903e6-cf33-37bb-a5e3-602e8b494464,SESCO,II.1.1,Mendoza,AR-M,annual,2020,gas oil combustion consumption by to the public,285.27576,TJ,CH4,3.9,kg/TJ,1112.575464,kg +79e903e6-cf33-37bb-a5e3-602e8b494464,SESCO,II.1.1,Mendoza,AR-M,annual,2020,gas oil combustion consumption by to the public,285.27576,TJ,N2O,3.9,kg/TJ,1112.575464,kg +a2f87963-5167-3f5f-af81-2da548a4a870,SESCO,II.1.1,Misiones,AR-N,annual,2020,gas oil combustion consumption by to the public,232.90176,TJ,CO2,74100.0,kg/TJ,17258020.416,kg +a4778c7b-1f45-376e-bfa1-a5c20dc6c6e1,SESCO,II.1.1,Misiones,AR-N,annual,2020,gas oil combustion consumption by to the public,232.90176,TJ,CH4,3.9,kg/TJ,908.316864,kg +a4778c7b-1f45-376e-bfa1-a5c20dc6c6e1,SESCO,II.1.1,Misiones,AR-N,annual,2020,gas oil combustion consumption by to the public,232.90176,TJ,N2O,3.9,kg/TJ,908.316864,kg +539dbcda-75e5-310b-8a87-adecc7d1266d,SESCO,II.1.1,Neuquén,AR-Q,annual,2020,gas oil combustion consumption by to the public,193.67544,TJ,CO2,74100.0,kg/TJ,14351350.104,kg +0df3171c-6626-357c-abd6-5f82a8226f5b,SESCO,II.1.1,Neuquén,AR-Q,annual,2020,gas oil combustion consumption by to the public,193.67544,TJ,CH4,3.9,kg/TJ,755.334216,kg +0df3171c-6626-357c-abd6-5f82a8226f5b,SESCO,II.1.1,Neuquén,AR-Q,annual,2020,gas oil combustion consumption by to the public,193.67544,TJ,N2O,3.9,kg/TJ,755.334216,kg +266f641f-1718-3d67-89b5-78736a9985ae,SESCO,II.1.1,Rio Negro,AR-R,annual,2020,gas oil combustion consumption by to the public,246.91631999999998,TJ,CO2,74100.0,kg/TJ,18296499.312,kg +f12b7ed0-f3d7-3c86-b40d-f5c92dd0792c,SESCO,II.1.1,Rio Negro,AR-R,annual,2020,gas oil combustion consumption by to the public,246.91631999999998,TJ,CH4,3.9,kg/TJ,962.9736479999999,kg +f12b7ed0-f3d7-3c86-b40d-f5c92dd0792c,SESCO,II.1.1,Rio Negro,AR-R,annual,2020,gas oil combustion consumption by to the public,246.91631999999998,TJ,N2O,3.9,kg/TJ,962.9736479999999,kg +4553c6bf-0d51-357f-b540-ab9a27f3a9ed,SESCO,II.1.1,Salta,AR-A,annual,2020,gas oil combustion consumption by to the public,40.70724,TJ,CO2,74100.0,kg/TJ,3016406.4839999997,kg +60fff1f3-d9e3-3a39-b347-525bece36592,SESCO,II.1.1,Salta,AR-A,annual,2020,gas oil combustion consumption by to the public,40.70724,TJ,CH4,3.9,kg/TJ,158.75823599999998,kg +60fff1f3-d9e3-3a39-b347-525bece36592,SESCO,II.1.1,Salta,AR-A,annual,2020,gas oil combustion consumption by to the public,40.70724,TJ,N2O,3.9,kg/TJ,158.75823599999998,kg +327bb224-ffe2-3925-9579-c9b99c8cd256,SESCO,II.1.1,San Juan,AR-J,annual,2020,gas oil combustion consumption by to the public,76.53828,TJ,CO2,74100.0,kg/TJ,5671486.548,kg +aea1d2f3-f2f2-3c3c-9bf9-1e7d214078b0,SESCO,II.1.1,San Juan,AR-J,annual,2020,gas oil combustion consumption by to the public,76.53828,TJ,CH4,3.9,kg/TJ,298.49929199999997,kg +aea1d2f3-f2f2-3c3c-9bf9-1e7d214078b0,SESCO,II.1.1,San Juan,AR-J,annual,2020,gas oil combustion consumption by to the public,76.53828,TJ,N2O,3.9,kg/TJ,298.49929199999997,kg +8204c288-fbe8-3289-b7a6-b32d7e4426a7,SESCO,II.1.1,San Luis,AR-D,annual,2020,gas oil combustion consumption by to the public,168.06636,TJ,CO2,74100.0,kg/TJ,12453717.276,kg +e7c307ee-e549-38e4-94a0-b4e442acaeee,SESCO,II.1.1,San Luis,AR-D,annual,2020,gas oil combustion consumption by to the public,168.06636,TJ,CH4,3.9,kg/TJ,655.458804,kg +e7c307ee-e549-38e4-94a0-b4e442acaeee,SESCO,II.1.1,San Luis,AR-D,annual,2020,gas oil combustion consumption by to the public,168.06636,TJ,N2O,3.9,kg/TJ,655.458804,kg +66fbb56a-ca37-361c-9323-689b4e114752,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2020,gas oil combustion consumption by to the public,289.10447999999997,TJ,CO2,74100.0,kg/TJ,21422641.968,kg +c53c2fa6-4d04-346f-b804-c8136218ae62,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2020,gas oil combustion consumption by to the public,289.10447999999997,TJ,CH4,3.9,kg/TJ,1127.5074719999998,kg +c53c2fa6-4d04-346f-b804-c8136218ae62,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2020,gas oil combustion consumption by to the public,289.10447999999997,TJ,N2O,3.9,kg/TJ,1127.5074719999998,kg +553fd0f6-981e-39c3-912a-eb8d0dde8159,SESCO,II.1.1,Santa Fe,AR-S,annual,2020,gas oil combustion consumption by to the public,833.8302,TJ,CO2,74100.0,kg/TJ,61786817.82,kg +93733131-bc1c-32bb-b179-abe2e06f2808,SESCO,II.1.1,Santa Fe,AR-S,annual,2020,gas oil combustion consumption by to the public,833.8302,TJ,CH4,3.9,kg/TJ,3251.9377799999997,kg +93733131-bc1c-32bb-b179-abe2e06f2808,SESCO,II.1.1,Santa Fe,AR-S,annual,2020,gas oil combustion consumption by to the public,833.8302,TJ,N2O,3.9,kg/TJ,3251.9377799999997,kg +02354b2b-7d11-37c5-bc09-2f7aa5563d91,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2020,gas oil combustion consumption by to the public,173.84556,TJ,CO2,74100.0,kg/TJ,12881955.996000001,kg +88eee133-03ee-34b5-9a87-2124f75cb799,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2020,gas oil combustion consumption by to the public,173.84556,TJ,CH4,3.9,kg/TJ,677.997684,kg +88eee133-03ee-34b5-9a87-2124f75cb799,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2020,gas oil combustion consumption by to the public,173.84556,TJ,N2O,3.9,kg/TJ,677.997684,kg +bf676bc1-927e-3e1f-9c69-67e9f2fcdb0c,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2020,gas oil combustion consumption by to the public,36.87852,TJ,CO2,74100.0,kg/TJ,2732698.332,kg +8c590bba-2eb1-3d8f-8035-f6959a3e152f,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2020,gas oil combustion consumption by to the public,36.87852,TJ,CH4,3.9,kg/TJ,143.82622800000001,kg +8c590bba-2eb1-3d8f-8035-f6959a3e152f,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2020,gas oil combustion consumption by to the public,36.87852,TJ,N2O,3.9,kg/TJ,143.82622800000001,kg +f6128761-6bc6-3cd0-9de7-da28ccce6e72,SESCO,II.1.1,Tucuman,AR-T,annual,2020,gas oil combustion consumption by to the public,28.607039999999998,TJ,CO2,74100.0,kg/TJ,2119781.664,kg +87a8879a-68c9-39e6-aaae-d977caab9e24,SESCO,II.1.1,Tucuman,AR-T,annual,2020,gas oil combustion consumption by to the public,28.607039999999998,TJ,CH4,3.9,kg/TJ,111.56745599999999,kg +87a8879a-68c9-39e6-aaae-d977caab9e24,SESCO,II.1.1,Tucuman,AR-T,annual,2020,gas oil combustion consumption by to the public,28.607039999999998,TJ,N2O,3.9,kg/TJ,111.56745599999999,kg +d87d26be-e6cc-36f9-9521-5ba9e635c318,SESCO,II.1.1,Buenos Aires,AR-B,annual,2020,jet kerosene combustion consumption by to the public,7.800343999999999,TJ,CO2,71500.0,kg/TJ,557724.5959999999,kg +34d51958-0648-3e73-bcd4-d65c06959ca8,SESCO,II.1.1,Buenos Aires,AR-B,annual,2020,jet kerosene combustion consumption by to the public,7.800343999999999,TJ,CH4,0.5,kg/TJ,3.9001719999999995,kg +cfe3355c-db11-3e5d-9d56-e7f9ec22ff4d,SESCO,II.1.1,Buenos Aires,AR-B,annual,2020,jet kerosene combustion consumption by to the public,7.800343999999999,TJ,N2O,2.0,kg/TJ,15.600687999999998,kg +8d9e4622-e361-3f4e-bc56-4101b4293d7c,SESCO,II.1.1,Córdoba,AR-X,annual,2020,jet kerosene combustion consumption by to the public,3.5541889999999996,TJ,CO2,71500.0,kg/TJ,254124.51349999997,kg +3d562cf8-09d0-393f-beed-2b18f0ca0843,SESCO,II.1.1,Córdoba,AR-X,annual,2020,jet kerosene combustion consumption by to the public,3.5541889999999996,TJ,CH4,0.5,kg/TJ,1.7770944999999998,kg +6dbea9cb-1ab1-3cff-b1c4-8fe3b0df63a4,SESCO,II.1.1,Córdoba,AR-X,annual,2020,jet kerosene combustion consumption by to the public,3.5541889999999996,TJ,N2O,2.0,kg/TJ,7.108377999999999,kg +9e304b22-8382-37ff-a499-8ec94545102d,SESCO,II.1.1,Entre Rios,AR-E,annual,2020,jet kerosene combustion consumption by to the public,2.1073509999999995,TJ,CO2,71500.0,kg/TJ,150675.59649999996,kg +9c9a8306-195f-3987-8b19-fb609c37e58c,SESCO,II.1.1,Entre Rios,AR-E,annual,2020,jet kerosene combustion consumption by to the public,2.1073509999999995,TJ,CH4,0.5,kg/TJ,1.0536754999999998,kg +28b8973a-912f-3d27-89bb-478f2ddf91a3,SESCO,II.1.1,Entre Rios,AR-E,annual,2020,jet kerosene combustion consumption by to the public,2.1073509999999995,TJ,N2O,2.0,kg/TJ,4.214701999999999,kg +4e4f5b09-349c-3a7a-af4b-4458338f7f34,SESCO,II.1.1,Misiones,AR-N,annual,2020,jet kerosene combustion consumption by to the public,0.5032479999999999,TJ,CO2,71500.0,kg/TJ,35982.231999999996,kg +1c040b32-6845-3b87-8a45-076e7bbf3312,SESCO,II.1.1,Misiones,AR-N,annual,2020,jet kerosene combustion consumption by to the public,0.5032479999999999,TJ,CH4,0.5,kg/TJ,0.25162399999999996,kg +9c7ce6fd-d1d6-341e-a482-b6ab5bbcd5c4,SESCO,II.1.1,Misiones,AR-N,annual,2020,jet kerosene combustion consumption by to the public,0.5032479999999999,TJ,N2O,2.0,kg/TJ,1.0064959999999998,kg +c788e8de-3079-34ed-9f49-2b5bac83b5a5,SESCO,II.1.1,Santa Fe,AR-S,annual,2020,jet kerosene combustion consumption by to the public,3.2082059999999997,TJ,CO2,71500.0,kg/TJ,229386.72899999996,kg +c02fc105-9e18-354b-8eef-975d58ccda6c,SESCO,II.1.1,Santa Fe,AR-S,annual,2020,jet kerosene combustion consumption by to the public,3.2082059999999997,TJ,CH4,0.5,kg/TJ,1.6041029999999998,kg +95bf6e03-3bd3-3af4-83d6-f6946045c8de,SESCO,II.1.1,Santa Fe,AR-S,annual,2020,jet kerosene combustion consumption by to the public,3.2082059999999997,TJ,N2O,2.0,kg/TJ,6.416411999999999,kg +3b1470f0-1090-32c8-bc33-079aec192171,SESCO,II.2.1,Buenos Aires,AR-B,annual,2020,gas oil combustion consumption by railway transport,98.0658,TJ,CO2,74100.0,kg/TJ,7266675.779999999,kg +c6c87b8a-ee81-39f8-bda8-7a9951e6e63e,SESCO,II.2.1,Buenos Aires,AR-B,annual,2020,gas oil combustion consumption by railway transport,98.0658,TJ,CH4,3.9,kg/TJ,382.45662,kg +c6c87b8a-ee81-39f8-bda8-7a9951e6e63e,SESCO,II.2.1,Buenos Aires,AR-B,annual,2020,gas oil combustion consumption by railway transport,98.0658,TJ,N2O,3.9,kg/TJ,382.45662,kg +23a5ada7-6b1a-31a0-91f7-1be76e2da253,SESCO,II.2.1,Capital Federal,AR-C,annual,2020,gas oil combustion consumption by railway transport,2.709,TJ,CO2,74100.0,kg/TJ,200736.9,kg +3b642f3e-23d3-3976-8709-314b4c84e4ab,SESCO,II.2.1,Capital Federal,AR-C,annual,2020,gas oil combustion consumption by railway transport,2.709,TJ,CH4,3.9,kg/TJ,10.5651,kg +3b642f3e-23d3-3976-8709-314b4c84e4ab,SESCO,II.2.1,Capital Federal,AR-C,annual,2020,gas oil combustion consumption by railway transport,2.709,TJ,N2O,3.9,kg/TJ,10.5651,kg +796cb9ec-3bf6-370d-8d1e-15606091b8e2,SESCO,II.2.1,Córdoba,AR-X,annual,2020,gas oil combustion consumption by railway transport,10.61928,TJ,CO2,74100.0,kg/TJ,786888.648,kg +c8671e01-46a4-3e66-9301-6c92a18a8448,SESCO,II.2.1,Córdoba,AR-X,annual,2020,gas oil combustion consumption by railway transport,10.61928,TJ,CH4,3.9,kg/TJ,41.415192,kg +c8671e01-46a4-3e66-9301-6c92a18a8448,SESCO,II.2.1,Córdoba,AR-X,annual,2020,gas oil combustion consumption by railway transport,10.61928,TJ,N2O,3.9,kg/TJ,41.415192,kg +df1f06d6-ce50-34ef-b8cf-b00eca7cbd29,SESCO,II.2.1,La Pampa,AR-L,annual,2020,gas oil combustion consumption by railway transport,29.654519999999998,TJ,CO2,74100.0,kg/TJ,2197399.932,kg +74dd5a79-cb5e-381e-ba33-f4e1c39687aa,SESCO,II.2.1,La Pampa,AR-L,annual,2020,gas oil combustion consumption by railway transport,29.654519999999998,TJ,CH4,3.9,kg/TJ,115.65262799999999,kg +74dd5a79-cb5e-381e-ba33-f4e1c39687aa,SESCO,II.2.1,La Pampa,AR-L,annual,2020,gas oil combustion consumption by railway transport,29.654519999999998,TJ,N2O,3.9,kg/TJ,115.65262799999999,kg +41032091-5c78-3534-aa7b-a9de0cdacec3,SESCO,II.2.1,Neuquén,AR-Q,annual,2020,gas oil combustion consumption by railway transport,7.80192,TJ,CO2,74100.0,kg/TJ,578122.272,kg +1916553e-eddf-337d-8c08-23a2b2810de7,SESCO,II.2.1,Neuquén,AR-Q,annual,2020,gas oil combustion consumption by railway transport,7.80192,TJ,CH4,3.9,kg/TJ,30.427488,kg +1916553e-eddf-337d-8c08-23a2b2810de7,SESCO,II.2.1,Neuquén,AR-Q,annual,2020,gas oil combustion consumption by railway transport,7.80192,TJ,N2O,3.9,kg/TJ,30.427488,kg +2b892a36-2413-3b42-a81d-b95144626173,SESCO,II.2.1,Santa Fe,AR-S,annual,2020,gas oil combustion consumption by railway transport,122.48292,TJ,CO2,74100.0,kg/TJ,9075984.372,kg +240e991a-c7b1-33d4-af2e-58d97f5f3356,SESCO,II.2.1,Santa Fe,AR-S,annual,2020,gas oil combustion consumption by railway transport,122.48292,TJ,CH4,3.9,kg/TJ,477.683388,kg +240e991a-c7b1-33d4-af2e-58d97f5f3356,SESCO,II.2.1,Santa Fe,AR-S,annual,2020,gas oil combustion consumption by railway transport,122.48292,TJ,N2O,3.9,kg/TJ,477.683388,kg +e6cb4961-994d-3f5b-b619-8dbbd5180157,SESCO,II.2.1,Santiago del Estero,AR-G,annual,2020,gas oil combustion consumption by railway transport,22.24992,TJ,CO2,74100.0,kg/TJ,1648719.072,kg +0ebaba5d-aa7d-3085-b496-13a2688637ec,SESCO,II.2.1,Santiago del Estero,AR-G,annual,2020,gas oil combustion consumption by railway transport,22.24992,TJ,CH4,3.9,kg/TJ,86.774688,kg +0ebaba5d-aa7d-3085-b496-13a2688637ec,SESCO,II.2.1,Santiago del Estero,AR-G,annual,2020,gas oil combustion consumption by railway transport,22.24992,TJ,N2O,3.9,kg/TJ,86.774688,kg +9afc208c-2d7c-3f5e-9bec-364f36899c38,SESCO,II.2.1,Tucuman,AR-T,annual,2020,gas oil combustion consumption by railway transport,13.03932,TJ,CO2,74100.0,kg/TJ,966213.612,kg +4097b250-decf-36a2-b910-39f1b2954757,SESCO,II.2.1,Tucuman,AR-T,annual,2020,gas oil combustion consumption by railway transport,13.03932,TJ,CH4,3.9,kg/TJ,50.853348,kg +4097b250-decf-36a2-b910-39f1b2954757,SESCO,II.2.1,Tucuman,AR-T,annual,2020,gas oil combustion consumption by railway transport,13.03932,TJ,N2O,3.9,kg/TJ,50.853348,kg +26247cd4-061e-3d51-8d5c-f59aa506dfcc,SESCO,II.1.1,Buenos Aires,AR-B,annual,2020,gas oil combustion consumption by freight transport,1387.3330799999999,TJ,CO2,74100.0,kg/TJ,102801381.22799999,kg +17f5fc31-16f1-3cd8-9493-9549882d009f,SESCO,II.1.1,Buenos Aires,AR-B,annual,2020,gas oil combustion consumption by freight transport,1387.3330799999999,TJ,CH4,3.9,kg/TJ,5410.599012,kg +17f5fc31-16f1-3cd8-9493-9549882d009f,SESCO,II.1.1,Buenos Aires,AR-B,annual,2020,gas oil combustion consumption by freight transport,1387.3330799999999,TJ,N2O,3.9,kg/TJ,5410.599012,kg +823a7452-f946-3530-80ed-549a45b928ae,SESCO,II.1.1,Capital Federal,AR-C,annual,2020,gas oil combustion consumption by freight transport,275.5956,TJ,CO2,74100.0,kg/TJ,20421633.96,kg +4530fb51-1f4f-3f16-a23e-58bda6984116,SESCO,II.1.1,Capital Federal,AR-C,annual,2020,gas oil combustion consumption by freight transport,275.5956,TJ,CH4,3.9,kg/TJ,1074.82284,kg +4530fb51-1f4f-3f16-a23e-58bda6984116,SESCO,II.1.1,Capital Federal,AR-C,annual,2020,gas oil combustion consumption by freight transport,275.5956,TJ,N2O,3.9,kg/TJ,1074.82284,kg +318f23b9-69d8-3d0e-9a71-cf9c29f5c9d9,SESCO,II.1.1,Catamarca,AR-K,annual,2020,gas oil combustion consumption by freight transport,10.61928,TJ,CO2,74100.0,kg/TJ,786888.648,kg +72b82c26-6046-39bf-a399-3faac082c7fd,SESCO,II.1.1,Catamarca,AR-K,annual,2020,gas oil combustion consumption by freight transport,10.61928,TJ,CH4,3.9,kg/TJ,41.415192,kg +72b82c26-6046-39bf-a399-3faac082c7fd,SESCO,II.1.1,Catamarca,AR-K,annual,2020,gas oil combustion consumption by freight transport,10.61928,TJ,N2O,3.9,kg/TJ,41.415192,kg +ffad3218-4090-380d-84fc-5ca027d2a1c8,SESCO,II.1.1,Chaco,AR-H,annual,2020,gas oil combustion consumption by freight transport,25.175639999999998,TJ,CO2,74100.0,kg/TJ,1865514.9239999999,kg +43337036-54b5-3dcb-b2c5-263fd3b50dcd,SESCO,II.1.1,Chaco,AR-H,annual,2020,gas oil combustion consumption by freight transport,25.175639999999998,TJ,CH4,3.9,kg/TJ,98.18499599999998,kg +43337036-54b5-3dcb-b2c5-263fd3b50dcd,SESCO,II.1.1,Chaco,AR-H,annual,2020,gas oil combustion consumption by freight transport,25.175639999999998,TJ,N2O,3.9,kg/TJ,98.18499599999998,kg +d5d65e52-14a9-3cff-935f-021bbca1a771,SESCO,II.1.1,Chubut,AR-U,annual,2020,gas oil combustion consumption by freight transport,48.14796,TJ,CO2,74100.0,kg/TJ,3567763.8359999997,kg +98c6a4f6-fe71-379e-bd78-2b8f4a318e84,SESCO,II.1.1,Chubut,AR-U,annual,2020,gas oil combustion consumption by freight transport,48.14796,TJ,CH4,3.9,kg/TJ,187.777044,kg +98c6a4f6-fe71-379e-bd78-2b8f4a318e84,SESCO,II.1.1,Chubut,AR-U,annual,2020,gas oil combustion consumption by freight transport,48.14796,TJ,N2O,3.9,kg/TJ,187.777044,kg +bc1fe25f-d6c2-3f42-9c69-b692689ad9c6,SESCO,II.1.1,Corrientes,AR-W,annual,2020,gas oil combustion consumption by freight transport,56.13048,TJ,CO2,74100.0,kg/TJ,4159268.568,kg +2c268696-3c32-365f-b8c2-f90a567f5960,SESCO,II.1.1,Corrientes,AR-W,annual,2020,gas oil combustion consumption by freight transport,56.13048,TJ,CH4,3.9,kg/TJ,218.908872,kg +2c268696-3c32-365f-b8c2-f90a567f5960,SESCO,II.1.1,Corrientes,AR-W,annual,2020,gas oil combustion consumption by freight transport,56.13048,TJ,N2O,3.9,kg/TJ,218.908872,kg +af38f8fc-d196-3a52-a449-f6b848a433ce,SESCO,II.1.1,Córdoba,AR-X,annual,2020,gas oil combustion consumption by freight transport,197.68475999999998,TJ,CO2,74100.0,kg/TJ,14648440.715999998,kg +aa15a0ac-5368-38a4-ac5d-d624ea01ae11,SESCO,II.1.1,Córdoba,AR-X,annual,2020,gas oil combustion consumption by freight transport,197.68475999999998,TJ,CH4,3.9,kg/TJ,770.970564,kg +aa15a0ac-5368-38a4-ac5d-d624ea01ae11,SESCO,II.1.1,Córdoba,AR-X,annual,2020,gas oil combustion consumption by freight transport,197.68475999999998,TJ,N2O,3.9,kg/TJ,770.970564,kg +d86ea670-89a6-30c9-8b09-f29ce9f8a542,SESCO,II.1.1,Entre Rios,AR-E,annual,2020,gas oil combustion consumption by freight transport,107.70984,TJ,CO2,74100.0,kg/TJ,7981299.144,kg +f46f494e-56c6-3ba6-a0f1-35579994ed0a,SESCO,II.1.1,Entre Rios,AR-E,annual,2020,gas oil combustion consumption by freight transport,107.70984,TJ,CH4,3.9,kg/TJ,420.068376,kg +f46f494e-56c6-3ba6-a0f1-35579994ed0a,SESCO,II.1.1,Entre Rios,AR-E,annual,2020,gas oil combustion consumption by freight transport,107.70984,TJ,N2O,3.9,kg/TJ,420.068376,kg +dd5ae63e-ecb1-318c-a7e3-0d4656cdae44,SESCO,II.1.1,Formosa,AR-P,annual,2020,gas oil combustion consumption by freight transport,10.14972,TJ,CO2,74100.0,kg/TJ,752094.252,kg +2f5578c5-aef3-3b9c-8b25-1594e15d3e67,SESCO,II.1.1,Formosa,AR-P,annual,2020,gas oil combustion consumption by freight transport,10.14972,TJ,CH4,3.9,kg/TJ,39.583908,kg +2f5578c5-aef3-3b9c-8b25-1594e15d3e67,SESCO,II.1.1,Formosa,AR-P,annual,2020,gas oil combustion consumption by freight transport,10.14972,TJ,N2O,3.9,kg/TJ,39.583908,kg +a5b31e4e-8cc1-38d8-873a-b6144c1488fc,SESCO,II.1.1,Jujuy,AR-Y,annual,2020,gas oil combustion consumption by freight transport,8.27148,TJ,CO2,74100.0,kg/TJ,612916.6680000001,kg +3c780bfd-d48e-360a-b24e-f4a09fef7374,SESCO,II.1.1,Jujuy,AR-Y,annual,2020,gas oil combustion consumption by freight transport,8.27148,TJ,CH4,3.9,kg/TJ,32.258772,kg +3c780bfd-d48e-360a-b24e-f4a09fef7374,SESCO,II.1.1,Jujuy,AR-Y,annual,2020,gas oil combustion consumption by freight transport,8.27148,TJ,N2O,3.9,kg/TJ,32.258772,kg +4fba5dc1-b7a3-3142-bac0-78a6343fbbc0,SESCO,II.1.1,La Pampa,AR-L,annual,2020,gas oil combustion consumption by freight transport,20.84124,TJ,CO2,74100.0,kg/TJ,1544335.8839999998,kg +4d9572b0-b087-3653-9cbf-1a7b691f5cfc,SESCO,II.1.1,La Pampa,AR-L,annual,2020,gas oil combustion consumption by freight transport,20.84124,TJ,CH4,3.9,kg/TJ,81.280836,kg +4d9572b0-b087-3653-9cbf-1a7b691f5cfc,SESCO,II.1.1,La Pampa,AR-L,annual,2020,gas oil combustion consumption by freight transport,20.84124,TJ,N2O,3.9,kg/TJ,81.280836,kg +d8b548d2-dcf2-33da-bdef-e31fdf687bd4,SESCO,II.1.1,La Rioja,AR-F,annual,2020,gas oil combustion consumption by freight transport,2.6367599999999998,TJ,CO2,74100.0,kg/TJ,195383.916,kg +9cb57cc4-e3fe-391c-895a-26c723c5914f,SESCO,II.1.1,La Rioja,AR-F,annual,2020,gas oil combustion consumption by freight transport,2.6367599999999998,TJ,CH4,3.9,kg/TJ,10.283363999999999,kg +9cb57cc4-e3fe-391c-895a-26c723c5914f,SESCO,II.1.1,La Rioja,AR-F,annual,2020,gas oil combustion consumption by freight transport,2.6367599999999998,TJ,N2O,3.9,kg/TJ,10.283363999999999,kg +05a7a4c0-d0d6-3072-b2c9-0a715d199074,SESCO,II.1.1,Mendoza,AR-M,annual,2020,gas oil combustion consumption by freight transport,72.45672,TJ,CO2,74100.0,kg/TJ,5369042.9520000005,kg +2be0e009-b39b-3c8d-b41b-32b7fdfcb342,SESCO,II.1.1,Mendoza,AR-M,annual,2020,gas oil combustion consumption by freight transport,72.45672,TJ,CH4,3.9,kg/TJ,282.581208,kg +2be0e009-b39b-3c8d-b41b-32b7fdfcb342,SESCO,II.1.1,Mendoza,AR-M,annual,2020,gas oil combustion consumption by freight transport,72.45672,TJ,N2O,3.9,kg/TJ,282.581208,kg +9aab5f13-1746-3554-a6b0-eef2ab5fc6de,SESCO,II.1.1,Misiones,AR-N,annual,2020,gas oil combustion consumption by freight transport,89.7582,TJ,CO2,74100.0,kg/TJ,6651082.62,kg +64d9d7d7-d0ff-3360-91bb-de929b3edbf2,SESCO,II.1.1,Misiones,AR-N,annual,2020,gas oil combustion consumption by freight transport,89.7582,TJ,CH4,3.9,kg/TJ,350.05698,kg +64d9d7d7-d0ff-3360-91bb-de929b3edbf2,SESCO,II.1.1,Misiones,AR-N,annual,2020,gas oil combustion consumption by freight transport,89.7582,TJ,N2O,3.9,kg/TJ,350.05698,kg +20e0f8a4-08dc-3695-a68d-cd5570e74c16,SESCO,II.1.1,Neuquén,AR-Q,annual,2020,gas oil combustion consumption by freight transport,1.73376,TJ,CO2,74100.0,kg/TJ,128471.616,kg +d1e5be0f-83fb-3f5d-ac2b-ad198e50d8ab,SESCO,II.1.1,Neuquén,AR-Q,annual,2020,gas oil combustion consumption by freight transport,1.73376,TJ,CH4,3.9,kg/TJ,6.761664,kg +d1e5be0f-83fb-3f5d-ac2b-ad198e50d8ab,SESCO,II.1.1,Neuquén,AR-Q,annual,2020,gas oil combustion consumption by freight transport,1.73376,TJ,N2O,3.9,kg/TJ,6.761664,kg +73c32dd7-d85f-321a-8a2f-4c3485719722,SESCO,II.1.1,Rio Negro,AR-R,annual,2020,gas oil combustion consumption by freight transport,90.76956,TJ,CO2,74100.0,kg/TJ,6726024.396,kg +f7f40adc-6676-3708-8574-21af7bd2ff26,SESCO,II.1.1,Rio Negro,AR-R,annual,2020,gas oil combustion consumption by freight transport,90.76956,TJ,CH4,3.9,kg/TJ,354.001284,kg +f7f40adc-6676-3708-8574-21af7bd2ff26,SESCO,II.1.1,Rio Negro,AR-R,annual,2020,gas oil combustion consumption by freight transport,90.76956,TJ,N2O,3.9,kg/TJ,354.001284,kg +acabd128-93ac-3a50-9d7e-c203e5edab3a,SESCO,II.1.1,Salta,AR-A,annual,2020,gas oil combustion consumption by freight transport,4.76784,TJ,CO2,74100.0,kg/TJ,353296.94399999996,kg +e612d646-2904-3558-8c56-5751d97e3639,SESCO,II.1.1,Salta,AR-A,annual,2020,gas oil combustion consumption by freight transport,4.76784,TJ,CH4,3.9,kg/TJ,18.594575999999996,kg +e612d646-2904-3558-8c56-5751d97e3639,SESCO,II.1.1,Salta,AR-A,annual,2020,gas oil combustion consumption by freight transport,4.76784,TJ,N2O,3.9,kg/TJ,18.594575999999996,kg +169a167f-60ec-3a44-9053-99d9a47a80cd,SESCO,II.1.1,San Juan,AR-J,annual,2020,gas oil combustion consumption by freight transport,6.06816,TJ,CO2,74100.0,kg/TJ,449650.65599999996,kg +77629aa5-eb7e-37d0-a9ae-2d8c9edd8925,SESCO,II.1.1,San Juan,AR-J,annual,2020,gas oil combustion consumption by freight transport,6.06816,TJ,CH4,3.9,kg/TJ,23.665823999999997,kg +77629aa5-eb7e-37d0-a9ae-2d8c9edd8925,SESCO,II.1.1,San Juan,AR-J,annual,2020,gas oil combustion consumption by freight transport,6.06816,TJ,N2O,3.9,kg/TJ,23.665823999999997,kg +aac50db3-d966-31e2-8532-373dc0f01a05,SESCO,II.1.1,San Luis,AR-D,annual,2020,gas oil combustion consumption by freight transport,33.62772,TJ,CO2,74100.0,kg/TJ,2491814.0519999997,kg +441712e4-1361-3103-92d6-140a1f303f3b,SESCO,II.1.1,San Luis,AR-D,annual,2020,gas oil combustion consumption by freight transport,33.62772,TJ,CH4,3.9,kg/TJ,131.14810799999998,kg +441712e4-1361-3103-92d6-140a1f303f3b,SESCO,II.1.1,San Luis,AR-D,annual,2020,gas oil combustion consumption by freight transport,33.62772,TJ,N2O,3.9,kg/TJ,131.14810799999998,kg +19525495-191e-3410-9c28-bd0f6aad2c9d,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2020,gas oil combustion consumption by freight transport,12.71424,TJ,CO2,74100.0,kg/TJ,942125.184,kg +fa1b8fe7-b439-3225-93fb-84c1fef07477,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2020,gas oil combustion consumption by freight transport,12.71424,TJ,CH4,3.9,kg/TJ,49.585536,kg +fa1b8fe7-b439-3225-93fb-84c1fef07477,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2020,gas oil combustion consumption by freight transport,12.71424,TJ,N2O,3.9,kg/TJ,49.585536,kg +761f2f73-45b7-3269-941e-6ad818b4ca07,SESCO,II.1.1,Santa Fe,AR-S,annual,2020,gas oil combustion consumption by freight transport,364.9926,TJ,CO2,74100.0,kg/TJ,27045951.66,kg +a8f1db3c-1163-3694-87c5-c17813e988f4,SESCO,II.1.1,Santa Fe,AR-S,annual,2020,gas oil combustion consumption by freight transport,364.9926,TJ,CH4,3.9,kg/TJ,1423.4711399999999,kg +a8f1db3c-1163-3694-87c5-c17813e988f4,SESCO,II.1.1,Santa Fe,AR-S,annual,2020,gas oil combustion consumption by freight transport,364.9926,TJ,N2O,3.9,kg/TJ,1423.4711399999999,kg +81b395cf-85d7-3f43-bfbe-e873197d9401,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2020,gas oil combustion consumption by freight transport,84.55692,TJ,CO2,74100.0,kg/TJ,6265667.772000001,kg +3f2858b9-3ee2-389a-b299-2d5deeb75136,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2020,gas oil combustion consumption by freight transport,84.55692,TJ,CH4,3.9,kg/TJ,329.771988,kg +3f2858b9-3ee2-389a-b299-2d5deeb75136,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2020,gas oil combustion consumption by freight transport,84.55692,TJ,N2O,3.9,kg/TJ,329.771988,kg +c1674e3b-af12-36f2-a439-037b3401c585,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2020,gas oil combustion consumption by freight transport,5.02068,TJ,CO2,74100.0,kg/TJ,372032.388,kg +f543ca3b-2a2e-3f8f-be82-18fa805a756a,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2020,gas oil combustion consumption by freight transport,5.02068,TJ,CH4,3.9,kg/TJ,19.580651999999997,kg +f543ca3b-2a2e-3f8f-be82-18fa805a756a,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2020,gas oil combustion consumption by freight transport,5.02068,TJ,N2O,3.9,kg/TJ,19.580651999999997,kg +271f5fc5-aa25-3d64-b617-d3f35869deb0,SESCO,II.1.1,Tucuman,AR-T,annual,2020,gas oil combustion consumption by freight transport,40.74336,TJ,CO2,74100.0,kg/TJ,3019082.9760000003,kg +4bb21669-9f0b-3f47-a340-954cf363d9c7,SESCO,II.1.1,Tucuman,AR-T,annual,2020,gas oil combustion consumption by freight transport,40.74336,TJ,CH4,3.9,kg/TJ,158.899104,kg +4bb21669-9f0b-3f47-a340-954cf363d9c7,SESCO,II.1.1,Tucuman,AR-T,annual,2020,gas oil combustion consumption by freight transport,40.74336,TJ,N2O,3.9,kg/TJ,158.899104,kg +14374457-fdb1-3acb-91d6-791413fd4e55,SESCO,II.1.1,Buenos Aires,AR-B,annual,2020,gas oil combustion consumption by freight transport,170.26968,TJ,CO2,74100.0,kg/TJ,12616983.287999999,kg +6f2ded01-45cf-3244-b284-35c4977d5d05,SESCO,II.1.1,Buenos Aires,AR-B,annual,2020,gas oil combustion consumption by freight transport,170.26968,TJ,CH4,3.9,kg/TJ,664.051752,kg +6f2ded01-45cf-3244-b284-35c4977d5d05,SESCO,II.1.1,Buenos Aires,AR-B,annual,2020,gas oil combustion consumption by freight transport,170.26968,TJ,N2O,3.9,kg/TJ,664.051752,kg +49dfac0a-b3c5-3ac4-ae9a-f5dacd5a56a5,SESCO,II.1.1,Capital Federal,AR-C,annual,2020,gas oil combustion consumption by freight transport,18.71016,TJ,CO2,74100.0,kg/TJ,1386422.856,kg +a3ff9675-8577-3ab0-8220-949ca7407a4d,SESCO,II.1.1,Capital Federal,AR-C,annual,2020,gas oil combustion consumption by freight transport,18.71016,TJ,CH4,3.9,kg/TJ,72.969624,kg +a3ff9675-8577-3ab0-8220-949ca7407a4d,SESCO,II.1.1,Capital Federal,AR-C,annual,2020,gas oil combustion consumption by freight transport,18.71016,TJ,N2O,3.9,kg/TJ,72.969624,kg +eb679c9a-d539-30db-90f8-a57a75d6b13f,SESCO,II.1.1,Catamarca,AR-K,annual,2020,gas oil combustion consumption by freight transport,0.8307599999999999,TJ,CO2,74100.0,kg/TJ,61559.316,kg +0495770d-ab03-3029-98ab-c70fb813319e,SESCO,II.1.1,Catamarca,AR-K,annual,2020,gas oil combustion consumption by freight transport,0.8307599999999999,TJ,CH4,3.9,kg/TJ,3.2399639999999996,kg +0495770d-ab03-3029-98ab-c70fb813319e,SESCO,II.1.1,Catamarca,AR-K,annual,2020,gas oil combustion consumption by freight transport,0.8307599999999999,TJ,N2O,3.9,kg/TJ,3.2399639999999996,kg +01f3c2e1-2ae3-3c96-b4b6-2ade12362cba,SESCO,II.1.1,Chaco,AR-H,annual,2020,gas oil combustion consumption by freight transport,4.55112,TJ,CO2,74100.0,kg/TJ,337237.992,kg +db5733e3-eb1f-36d2-86e3-0d6d1af9ac28,SESCO,II.1.1,Chaco,AR-H,annual,2020,gas oil combustion consumption by freight transport,4.55112,TJ,CH4,3.9,kg/TJ,17.749368,kg +db5733e3-eb1f-36d2-86e3-0d6d1af9ac28,SESCO,II.1.1,Chaco,AR-H,annual,2020,gas oil combustion consumption by freight transport,4.55112,TJ,N2O,3.9,kg/TJ,17.749368,kg +21093fe2-7448-304e-a290-96b9688341f6,SESCO,II.1.1,Chubut,AR-U,annual,2020,gas oil combustion consumption by freight transport,14.59248,TJ,CO2,74100.0,kg/TJ,1081302.768,kg +e9be97f2-8df0-3fdc-a973-b272cf24d723,SESCO,II.1.1,Chubut,AR-U,annual,2020,gas oil combustion consumption by freight transport,14.59248,TJ,CH4,3.9,kg/TJ,56.910672,kg +e9be97f2-8df0-3fdc-a973-b272cf24d723,SESCO,II.1.1,Chubut,AR-U,annual,2020,gas oil combustion consumption by freight transport,14.59248,TJ,N2O,3.9,kg/TJ,56.910672,kg +02598de4-e8ce-3d3c-8b23-25b6cd2206e9,SESCO,II.1.1,Corrientes,AR-W,annual,2020,gas oil combustion consumption by freight transport,10.18584,TJ,CO2,74100.0,kg/TJ,754770.7440000001,kg +2fc4395e-5fc2-3782-8925-38ecb073c8df,SESCO,II.1.1,Corrientes,AR-W,annual,2020,gas oil combustion consumption by freight transport,10.18584,TJ,CH4,3.9,kg/TJ,39.724776,kg +2fc4395e-5fc2-3782-8925-38ecb073c8df,SESCO,II.1.1,Corrientes,AR-W,annual,2020,gas oil combustion consumption by freight transport,10.18584,TJ,N2O,3.9,kg/TJ,39.724776,kg +050cff94-b3ba-3fcf-b958-32b71fc0b5d0,SESCO,II.1.1,Córdoba,AR-X,annual,2020,gas oil combustion consumption by freight transport,17.37372,TJ,CO2,74100.0,kg/TJ,1287392.652,kg +b3d9d619-aa7c-3e04-9ed2-9d122afbfb83,SESCO,II.1.1,Córdoba,AR-X,annual,2020,gas oil combustion consumption by freight transport,17.37372,TJ,CH4,3.9,kg/TJ,67.75750799999999,kg +b3d9d619-aa7c-3e04-9ed2-9d122afbfb83,SESCO,II.1.1,Córdoba,AR-X,annual,2020,gas oil combustion consumption by freight transport,17.37372,TJ,N2O,3.9,kg/TJ,67.75750799999999,kg +3f0d7fb5-870d-3622-b8bf-477fb91a8b1a,SESCO,II.1.1,Entre Rios,AR-E,annual,2020,gas oil combustion consumption by freight transport,13.32828,TJ,CO2,74100.0,kg/TJ,987625.548,kg +2917f4a2-a433-33db-8814-8b93eec3527d,SESCO,II.1.1,Entre Rios,AR-E,annual,2020,gas oil combustion consumption by freight transport,13.32828,TJ,CH4,3.9,kg/TJ,51.980292,kg +2917f4a2-a433-33db-8814-8b93eec3527d,SESCO,II.1.1,Entre Rios,AR-E,annual,2020,gas oil combustion consumption by freight transport,13.32828,TJ,N2O,3.9,kg/TJ,51.980292,kg +f7d0fc73-b46e-346d-8f12-8fa3fec0c5ac,SESCO,II.1.1,Formosa,AR-P,annual,2020,gas oil combustion consumption by freight transport,0.39732,TJ,CO2,74100.0,kg/TJ,29441.412,kg +83498105-6c41-36ad-b581-bb69b5c8d561,SESCO,II.1.1,Formosa,AR-P,annual,2020,gas oil combustion consumption by freight transport,0.39732,TJ,CH4,3.9,kg/TJ,1.549548,kg +83498105-6c41-36ad-b581-bb69b5c8d561,SESCO,II.1.1,Formosa,AR-P,annual,2020,gas oil combustion consumption by freight transport,0.39732,TJ,N2O,3.9,kg/TJ,1.549548,kg +17979128-e8bc-3d5c-ac73-cb002390c93c,SESCO,II.1.1,Jujuy,AR-Y,annual,2020,gas oil combustion consumption by freight transport,3.17856,TJ,CO2,74100.0,kg/TJ,235531.296,kg +9d6aa97e-8199-3f61-bc87-27cd37396c88,SESCO,II.1.1,Jujuy,AR-Y,annual,2020,gas oil combustion consumption by freight transport,3.17856,TJ,CH4,3.9,kg/TJ,12.396384,kg +9d6aa97e-8199-3f61-bc87-27cd37396c88,SESCO,II.1.1,Jujuy,AR-Y,annual,2020,gas oil combustion consumption by freight transport,3.17856,TJ,N2O,3.9,kg/TJ,12.396384,kg +0d0f3400-0d0a-3d9f-8fe6-55f9d0171cb6,SESCO,II.1.1,La Pampa,AR-L,annual,2020,gas oil combustion consumption by freight transport,1.37256,TJ,CO2,74100.0,kg/TJ,101706.696,kg +0988c533-39ec-38e2-8e1c-74ae436b913f,SESCO,II.1.1,La Pampa,AR-L,annual,2020,gas oil combustion consumption by freight transport,1.37256,TJ,CH4,3.9,kg/TJ,5.352984,kg +0988c533-39ec-38e2-8e1c-74ae436b913f,SESCO,II.1.1,La Pampa,AR-L,annual,2020,gas oil combustion consumption by freight transport,1.37256,TJ,N2O,3.9,kg/TJ,5.352984,kg +e07b9a20-8fa8-3e7c-a9d5-2e54dc7741fa,SESCO,II.1.1,La Rioja,AR-F,annual,2020,gas oil combustion consumption by freight transport,0.10836,TJ,CO2,74100.0,kg/TJ,8029.476,kg +6788104c-c872-3539-869a-ed0f648f867f,SESCO,II.1.1,La Rioja,AR-F,annual,2020,gas oil combustion consumption by freight transport,0.10836,TJ,CH4,3.9,kg/TJ,0.422604,kg +6788104c-c872-3539-869a-ed0f648f867f,SESCO,II.1.1,La Rioja,AR-F,annual,2020,gas oil combustion consumption by freight transport,0.10836,TJ,N2O,3.9,kg/TJ,0.422604,kg +0d07290e-6980-3df1-9bb3-aa92fb581ef5,SESCO,II.1.1,Mendoza,AR-M,annual,2020,gas oil combustion consumption by freight transport,7.3323599999999995,TJ,CO2,74100.0,kg/TJ,543327.8759999999,kg +63c1dcef-6b95-3fab-8b5a-da7726dfe911,SESCO,II.1.1,Mendoza,AR-M,annual,2020,gas oil combustion consumption by freight transport,7.3323599999999995,TJ,CH4,3.9,kg/TJ,28.596203999999997,kg +63c1dcef-6b95-3fab-8b5a-da7726dfe911,SESCO,II.1.1,Mendoza,AR-M,annual,2020,gas oil combustion consumption by freight transport,7.3323599999999995,TJ,N2O,3.9,kg/TJ,28.596203999999997,kg +f978e1e1-d9bb-3850-9c27-dcee126ad90b,SESCO,II.1.1,Misiones,AR-N,annual,2020,gas oil combustion consumption by freight transport,2.6367599999999998,TJ,CO2,74100.0,kg/TJ,195383.916,kg +b0b5c66d-6f91-3512-8de3-2981a499f31a,SESCO,II.1.1,Misiones,AR-N,annual,2020,gas oil combustion consumption by freight transport,2.6367599999999998,TJ,CH4,3.9,kg/TJ,10.283363999999999,kg +b0b5c66d-6f91-3512-8de3-2981a499f31a,SESCO,II.1.1,Misiones,AR-N,annual,2020,gas oil combustion consumption by freight transport,2.6367599999999998,TJ,N2O,3.9,kg/TJ,10.283363999999999,kg +71ae0bff-dd97-36ac-b622-8c735ba56efd,SESCO,II.1.1,Neuquén,AR-Q,annual,2020,gas oil combustion consumption by freight transport,0.93912,TJ,CO2,74100.0,kg/TJ,69588.792,kg +559a2c6f-82be-3596-b2ad-3e8d7529e388,SESCO,II.1.1,Neuquén,AR-Q,annual,2020,gas oil combustion consumption by freight transport,0.93912,TJ,CH4,3.9,kg/TJ,3.662568,kg +559a2c6f-82be-3596-b2ad-3e8d7529e388,SESCO,II.1.1,Neuquén,AR-Q,annual,2020,gas oil combustion consumption by freight transport,0.93912,TJ,N2O,3.9,kg/TJ,3.662568,kg +67c3d9a6-382a-342e-89bc-48f62aebdbe6,SESCO,II.1.1,Rio Negro,AR-R,annual,2020,gas oil combustion consumption by freight transport,10.14972,TJ,CO2,74100.0,kg/TJ,752094.252,kg +5c76f59d-a26c-376f-927b-3659ae4fe836,SESCO,II.1.1,Rio Negro,AR-R,annual,2020,gas oil combustion consumption by freight transport,10.14972,TJ,CH4,3.9,kg/TJ,39.583908,kg +5c76f59d-a26c-376f-927b-3659ae4fe836,SESCO,II.1.1,Rio Negro,AR-R,annual,2020,gas oil combustion consumption by freight transport,10.14972,TJ,N2O,3.9,kg/TJ,39.583908,kg +52340fee-ff2d-3165-90bd-b4c9320b45d4,SESCO,II.1.1,Salta,AR-A,annual,2020,gas oil combustion consumption by freight transport,0.7223999999999999,TJ,CO2,74100.0,kg/TJ,53529.84,kg +3f415a71-9139-3a3f-a565-30a329c8e397,SESCO,II.1.1,Salta,AR-A,annual,2020,gas oil combustion consumption by freight transport,0.7223999999999999,TJ,CH4,3.9,kg/TJ,2.81736,kg +3f415a71-9139-3a3f-a565-30a329c8e397,SESCO,II.1.1,Salta,AR-A,annual,2020,gas oil combustion consumption by freight transport,0.7223999999999999,TJ,N2O,3.9,kg/TJ,2.81736,kg +a36341f0-2deb-3be0-be3c-127b591e8f2e,SESCO,II.1.1,San Juan,AR-J,annual,2020,gas oil combustion consumption by freight transport,0.07224,TJ,CO2,74100.0,kg/TJ,5352.9839999999995,kg +f0c602d8-00e1-34de-9792-455335f749d0,SESCO,II.1.1,San Juan,AR-J,annual,2020,gas oil combustion consumption by freight transport,0.07224,TJ,CH4,3.9,kg/TJ,0.281736,kg +f0c602d8-00e1-34de-9792-455335f749d0,SESCO,II.1.1,San Juan,AR-J,annual,2020,gas oil combustion consumption by freight transport,0.07224,TJ,N2O,3.9,kg/TJ,0.281736,kg +9f864eef-8f17-3c89-bc53-0a9df259198c,SESCO,II.1.1,San Luis,AR-D,annual,2020,gas oil combustion consumption by freight transport,3.68424,TJ,CO2,74100.0,kg/TJ,273002.184,kg +1201eb33-8ba9-391e-ac45-5c001a5ae8aa,SESCO,II.1.1,San Luis,AR-D,annual,2020,gas oil combustion consumption by freight transport,3.68424,TJ,CH4,3.9,kg/TJ,14.368535999999999,kg +1201eb33-8ba9-391e-ac45-5c001a5ae8aa,SESCO,II.1.1,San Luis,AR-D,annual,2020,gas oil combustion consumption by freight transport,3.68424,TJ,N2O,3.9,kg/TJ,14.368535999999999,kg +5a765290-9dc7-368c-9efb-41bdddc215a6,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2020,gas oil combustion consumption by freight transport,3.2508,TJ,CO2,74100.0,kg/TJ,240884.28,kg +7adba211-9c62-31db-806f-e4b7e316edcb,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2020,gas oil combustion consumption by freight transport,3.2508,TJ,CH4,3.9,kg/TJ,12.67812,kg +7adba211-9c62-31db-806f-e4b7e316edcb,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2020,gas oil combustion consumption by freight transport,3.2508,TJ,N2O,3.9,kg/TJ,12.67812,kg +902567fd-a7d0-3aeb-8ff3-d1ea36c2469e,SESCO,II.1.1,Santa Fe,AR-S,annual,2020,gas oil combustion consumption by freight transport,40.92396,TJ,CO2,74100.0,kg/TJ,3032465.436,kg +bd773019-e73a-3d85-8799-b25944cb9688,SESCO,II.1.1,Santa Fe,AR-S,annual,2020,gas oil combustion consumption by freight transport,40.92396,TJ,CH4,3.9,kg/TJ,159.603444,kg +bd773019-e73a-3d85-8799-b25944cb9688,SESCO,II.1.1,Santa Fe,AR-S,annual,2020,gas oil combustion consumption by freight transport,40.92396,TJ,N2O,3.9,kg/TJ,159.603444,kg +65fffa51-1aa0-338c-b43b-3aac0bdb3814,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2020,gas oil combustion consumption by freight transport,5.34576,TJ,CO2,74100.0,kg/TJ,396120.81600000005,kg +d33d156b-a177-3107-985f-b8ffb780ab58,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2020,gas oil combustion consumption by freight transport,5.34576,TJ,CH4,3.9,kg/TJ,20.848464,kg +d33d156b-a177-3107-985f-b8ffb780ab58,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2020,gas oil combustion consumption by freight transport,5.34576,TJ,N2O,3.9,kg/TJ,20.848464,kg +9538ea72-cb1a-31e8-a3c1-d6e09531b470,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2020,gas oil combustion consumption by freight transport,0.07224,TJ,CO2,74100.0,kg/TJ,5352.9839999999995,kg +bac7c95d-2ce8-3ad1-87f4-8e0804123eab,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2020,gas oil combustion consumption by freight transport,0.07224,TJ,CH4,3.9,kg/TJ,0.281736,kg +bac7c95d-2ce8-3ad1-87f4-8e0804123eab,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2020,gas oil combustion consumption by freight transport,0.07224,TJ,N2O,3.9,kg/TJ,0.281736,kg +a8963765-3a3b-3c23-8d59-2b856560adbe,SESCO,II.1.1,Tucuman,AR-T,annual,2020,gas oil combustion consumption by freight transport,21.05796,TJ,CO2,74100.0,kg/TJ,1560394.8360000001,kg +4581f3a4-8f82-3960-87d3-8c81dfcf3da4,SESCO,II.1.1,Tucuman,AR-T,annual,2020,gas oil combustion consumption by freight transport,21.05796,TJ,CH4,3.9,kg/TJ,82.12604400000001,kg +4581f3a4-8f82-3960-87d3-8c81dfcf3da4,SESCO,II.1.1,Tucuman,AR-T,annual,2020,gas oil combustion consumption by freight transport,21.05796,TJ,N2O,3.9,kg/TJ,82.12604400000001,kg +8f49c4a4-ea8d-3072-9675-1ced19b9c3df,SESCO,II.1.1,Buenos Aires,AR-B,annual,2020,gas oil combustion consumption by public passenger transport,1113.79632,TJ,CO2,74100.0,kg/TJ,82532307.31199999,kg +9a06128a-3aa4-35f3-9ca4-a9925798b28e,SESCO,II.1.1,Buenos Aires,AR-B,annual,2020,gas oil combustion consumption by public passenger transport,1113.79632,TJ,CH4,3.9,kg/TJ,4343.805648,kg +9a06128a-3aa4-35f3-9ca4-a9925798b28e,SESCO,II.1.1,Buenos Aires,AR-B,annual,2020,gas oil combustion consumption by public passenger transport,1113.79632,TJ,N2O,3.9,kg/TJ,4343.805648,kg +5ee76078-f211-35c1-bcb0-d2b7d0ebfcf2,SESCO,II.1.1,Capital Federal,AR-C,annual,2020,gas oil combustion consumption by public passenger transport,324.75491999999997,TJ,CO2,74100.0,kg/TJ,24064339.571999997,kg +fa41c195-e846-3391-b1e6-1a00cd099d27,SESCO,II.1.1,Capital Federal,AR-C,annual,2020,gas oil combustion consumption by public passenger transport,324.75491999999997,TJ,CH4,3.9,kg/TJ,1266.5441879999998,kg +fa41c195-e846-3391-b1e6-1a00cd099d27,SESCO,II.1.1,Capital Federal,AR-C,annual,2020,gas oil combustion consumption by public passenger transport,324.75491999999997,TJ,N2O,3.9,kg/TJ,1266.5441879999998,kg +c1ce5347-a3e4-3fb3-8394-fae7e0ced57d,SESCO,II.1.1,Chaco,AR-H,annual,2020,gas oil combustion consumption by public passenger transport,12.67812,TJ,CO2,74100.0,kg/TJ,939448.692,kg +4329599a-f4e9-3d8e-8a50-db4875c44a47,SESCO,II.1.1,Chaco,AR-H,annual,2020,gas oil combustion consumption by public passenger transport,12.67812,TJ,CH4,3.9,kg/TJ,49.444668,kg +4329599a-f4e9-3d8e-8a50-db4875c44a47,SESCO,II.1.1,Chaco,AR-H,annual,2020,gas oil combustion consumption by public passenger transport,12.67812,TJ,N2O,3.9,kg/TJ,49.444668,kg +f8ea51f2-ad32-37c2-8253-69119787893a,SESCO,II.1.1,Chubut,AR-U,annual,2020,gas oil combustion consumption by public passenger transport,1.48092,TJ,CO2,74100.0,kg/TJ,109736.172,kg +4b542583-ca65-3950-91c8-79583ff5f720,SESCO,II.1.1,Chubut,AR-U,annual,2020,gas oil combustion consumption by public passenger transport,1.48092,TJ,CH4,3.9,kg/TJ,5.775588,kg +4b542583-ca65-3950-91c8-79583ff5f720,SESCO,II.1.1,Chubut,AR-U,annual,2020,gas oil combustion consumption by public passenger transport,1.48092,TJ,N2O,3.9,kg/TJ,5.775588,kg +5ad20a83-150d-30c6-ae1b-7e97cc020914,SESCO,II.1.1,Corrientes,AR-W,annual,2020,gas oil combustion consumption by public passenger transport,0.903,TJ,CO2,74100.0,kg/TJ,66912.3,kg +cf44dc3f-b186-34c5-844a-fc724ec55fac,SESCO,II.1.1,Corrientes,AR-W,annual,2020,gas oil combustion consumption by public passenger transport,0.903,TJ,CH4,3.9,kg/TJ,3.5217,kg +cf44dc3f-b186-34c5-844a-fc724ec55fac,SESCO,II.1.1,Corrientes,AR-W,annual,2020,gas oil combustion consumption by public passenger transport,0.903,TJ,N2O,3.9,kg/TJ,3.5217,kg +c7bd108f-d628-3b87-9230-081abe02a7fa,SESCO,II.1.1,Córdoba,AR-X,annual,2020,gas oil combustion consumption by public passenger transport,96.94608,TJ,CO2,74100.0,kg/TJ,7183704.528,kg +0d699e5e-6b8f-3d7b-9a23-c0dbb5c54bb5,SESCO,II.1.1,Córdoba,AR-X,annual,2020,gas oil combustion consumption by public passenger transport,96.94608,TJ,CH4,3.9,kg/TJ,378.08971199999996,kg +0d699e5e-6b8f-3d7b-9a23-c0dbb5c54bb5,SESCO,II.1.1,Córdoba,AR-X,annual,2020,gas oil combustion consumption by public passenger transport,96.94608,TJ,N2O,3.9,kg/TJ,378.08971199999996,kg +71ed92c7-f6c2-3ece-a149-5b13a16a155b,SESCO,II.1.1,Entre Rios,AR-E,annual,2020,gas oil combustion consumption by public passenger transport,33.62772,TJ,CO2,74100.0,kg/TJ,2491814.0519999997,kg +d7edf399-f96f-35b7-b822-c7b61c79b734,SESCO,II.1.1,Entre Rios,AR-E,annual,2020,gas oil combustion consumption by public passenger transport,33.62772,TJ,CH4,3.9,kg/TJ,131.14810799999998,kg +d7edf399-f96f-35b7-b822-c7b61c79b734,SESCO,II.1.1,Entre Rios,AR-E,annual,2020,gas oil combustion consumption by public passenger transport,33.62772,TJ,N2O,3.9,kg/TJ,131.14810799999998,kg +c840ef39-5db3-3991-abbd-12d53405e71c,SESCO,II.1.1,Formosa,AR-P,annual,2020,gas oil combustion consumption by public passenger transport,0.10836,TJ,CO2,74100.0,kg/TJ,8029.476,kg +4bda966b-5207-3f6e-945c-fa4e606d4620,SESCO,II.1.1,Formosa,AR-P,annual,2020,gas oil combustion consumption by public passenger transport,0.10836,TJ,CH4,3.9,kg/TJ,0.422604,kg +4bda966b-5207-3f6e-945c-fa4e606d4620,SESCO,II.1.1,Formosa,AR-P,annual,2020,gas oil combustion consumption by public passenger transport,0.10836,TJ,N2O,3.9,kg/TJ,0.422604,kg +5ba0f049-0653-35a9-8d48-7459ba7d4c3d,SESCO,II.1.1,La Pampa,AR-L,annual,2020,gas oil combustion consumption by public passenger transport,0.28896,TJ,CO2,74100.0,kg/TJ,21411.935999999998,kg +5dc698ce-7188-38fe-8b00-db5ec8b4c379,SESCO,II.1.1,La Pampa,AR-L,annual,2020,gas oil combustion consumption by public passenger transport,0.28896,TJ,CH4,3.9,kg/TJ,1.126944,kg +5dc698ce-7188-38fe-8b00-db5ec8b4c379,SESCO,II.1.1,La Pampa,AR-L,annual,2020,gas oil combustion consumption by public passenger transport,0.28896,TJ,N2O,3.9,kg/TJ,1.126944,kg +dce0284c-2a11-30fa-bd0d-06abdd8dd1f9,SESCO,II.1.1,Mendoza,AR-M,annual,2020,gas oil combustion consumption by public passenger transport,2.56452,TJ,CO2,74100.0,kg/TJ,190030.932,kg +48ef0c12-4f1a-3c7c-8823-54f3202cc1a9,SESCO,II.1.1,Mendoza,AR-M,annual,2020,gas oil combustion consumption by public passenger transport,2.56452,TJ,CH4,3.9,kg/TJ,10.001628,kg +48ef0c12-4f1a-3c7c-8823-54f3202cc1a9,SESCO,II.1.1,Mendoza,AR-M,annual,2020,gas oil combustion consumption by public passenger transport,2.56452,TJ,N2O,3.9,kg/TJ,10.001628,kg +27c84913-bf89-30d4-bba2-9044bda805d2,SESCO,II.1.1,Misiones,AR-N,annual,2020,gas oil combustion consumption by public passenger transport,1.76988,TJ,CO2,74100.0,kg/TJ,131148.10799999998,kg +9422ae97-c7b7-3b83-8301-5d8a9d37099b,SESCO,II.1.1,Misiones,AR-N,annual,2020,gas oil combustion consumption by public passenger transport,1.76988,TJ,CH4,3.9,kg/TJ,6.902531999999999,kg +9422ae97-c7b7-3b83-8301-5d8a9d37099b,SESCO,II.1.1,Misiones,AR-N,annual,2020,gas oil combustion consumption by public passenger transport,1.76988,TJ,N2O,3.9,kg/TJ,6.902531999999999,kg +651f46be-3bca-3a10-8f79-12a6c806cbbf,SESCO,II.1.1,Neuquén,AR-Q,annual,2020,gas oil combustion consumption by public passenger transport,2.20332,TJ,CO2,74100.0,kg/TJ,163266.01200000002,kg +6aef069e-d027-34a3-bd2d-d79943a55c2e,SESCO,II.1.1,Neuquén,AR-Q,annual,2020,gas oil combustion consumption by public passenger transport,2.20332,TJ,CH4,3.9,kg/TJ,8.592948,kg +6aef069e-d027-34a3-bd2d-d79943a55c2e,SESCO,II.1.1,Neuquén,AR-Q,annual,2020,gas oil combustion consumption by public passenger transport,2.20332,TJ,N2O,3.9,kg/TJ,8.592948,kg +40122746-4a83-3388-9591-4432edb6646a,SESCO,II.1.1,Rio Negro,AR-R,annual,2020,gas oil combustion consumption by public passenger transport,4.18992,TJ,CO2,74100.0,kg/TJ,310473.072,kg +67ae295c-5842-3c97-826c-69319f89518e,SESCO,II.1.1,Rio Negro,AR-R,annual,2020,gas oil combustion consumption by public passenger transport,4.18992,TJ,CH4,3.9,kg/TJ,16.340688,kg +67ae295c-5842-3c97-826c-69319f89518e,SESCO,II.1.1,Rio Negro,AR-R,annual,2020,gas oil combustion consumption by public passenger transport,4.18992,TJ,N2O,3.9,kg/TJ,16.340688,kg +81296f89-4149-3b13-9ba8-1564e5e896b6,SESCO,II.1.1,Salta,AR-A,annual,2020,gas oil combustion consumption by public passenger transport,8.16312,TJ,CO2,74100.0,kg/TJ,604887.1919999999,kg +f2bdcc34-f676-3c93-8fb5-77d3b015db7a,SESCO,II.1.1,Salta,AR-A,annual,2020,gas oil combustion consumption by public passenger transport,8.16312,TJ,CH4,3.9,kg/TJ,31.836167999999997,kg +f2bdcc34-f676-3c93-8fb5-77d3b015db7a,SESCO,II.1.1,Salta,AR-A,annual,2020,gas oil combustion consumption by public passenger transport,8.16312,TJ,N2O,3.9,kg/TJ,31.836167999999997,kg +f1c36709-d37a-3179-ace9-0637f6c05a1f,SESCO,II.1.1,San Juan,AR-J,annual,2020,gas oil combustion consumption by public passenger transport,0.03612,TJ,CO2,74100.0,kg/TJ,2676.4919999999997,kg +5e76d161-edcd-3406-a470-b0dd11894374,SESCO,II.1.1,San Juan,AR-J,annual,2020,gas oil combustion consumption by public passenger transport,0.03612,TJ,CH4,3.9,kg/TJ,0.140868,kg +5e76d161-edcd-3406-a470-b0dd11894374,SESCO,II.1.1,San Juan,AR-J,annual,2020,gas oil combustion consumption by public passenger transport,0.03612,TJ,N2O,3.9,kg/TJ,0.140868,kg +1444492f-24a0-380a-a63c-f2bb35b8ba57,SESCO,II.1.1,Santa Fe,AR-S,annual,2020,gas oil combustion consumption by public passenger transport,135.2694,TJ,CO2,74100.0,kg/TJ,10023462.54,kg +6fc38ef6-b93e-3a95-b810-8a97f7628cf4,SESCO,II.1.1,Santa Fe,AR-S,annual,2020,gas oil combustion consumption by public passenger transport,135.2694,TJ,CH4,3.9,kg/TJ,527.55066,kg +6fc38ef6-b93e-3a95-b810-8a97f7628cf4,SESCO,II.1.1,Santa Fe,AR-S,annual,2020,gas oil combustion consumption by public passenger transport,135.2694,TJ,N2O,3.9,kg/TJ,527.55066,kg +02b10c80-f015-39cb-aa5e-0fa5fb8fab17,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2020,gas oil combustion consumption by public passenger transport,0.07224,TJ,CO2,74100.0,kg/TJ,5352.9839999999995,kg +e5567771-8320-33a5-9f80-456ff2ef92f1,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2020,gas oil combustion consumption by public passenger transport,0.07224,TJ,CH4,3.9,kg/TJ,0.281736,kg +e5567771-8320-33a5-9f80-456ff2ef92f1,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2020,gas oil combustion consumption by public passenger transport,0.07224,TJ,N2O,3.9,kg/TJ,0.281736,kg +94534576-0a83-381a-a4bc-b0df5bf35101,SESCO,II.1.1,Tucuman,AR-T,annual,2020,gas oil combustion consumption by public passenger transport,114.24756,TJ,CO2,74100.0,kg/TJ,8465744.195999999,kg +9355f86d-f6f6-3fd5-95c3-6daed44291e1,SESCO,II.1.1,Tucuman,AR-T,annual,2020,gas oil combustion consumption by public passenger transport,114.24756,TJ,CH4,3.9,kg/TJ,445.56548399999997,kg +9355f86d-f6f6-3fd5-95c3-6daed44291e1,SESCO,II.1.1,Tucuman,AR-T,annual,2020,gas oil combustion consumption by public passenger transport,114.24756,TJ,N2O,3.9,kg/TJ,445.56548399999997,kg +1ad0f220-3597-3f67-9c83-b71dd91d02e8,SESCO,II.1.1,Buenos Aires,AR-B,annual,2020,gas oil combustion consumption by public passenger transport,414.8382,TJ,CO2,74100.0,kg/TJ,30739510.619999997,kg +4d2c8337-1e73-374b-8acd-0f11e183f9e4,SESCO,II.1.1,Buenos Aires,AR-B,annual,2020,gas oil combustion consumption by public passenger transport,414.8382,TJ,CH4,3.9,kg/TJ,1617.86898,kg +4d2c8337-1e73-374b-8acd-0f11e183f9e4,SESCO,II.1.1,Buenos Aires,AR-B,annual,2020,gas oil combustion consumption by public passenger transport,414.8382,TJ,N2O,3.9,kg/TJ,1617.86898,kg +b4703c48-c7c3-3f65-bd70-71cfd476d0db,SESCO,II.1.1,Capital Federal,AR-C,annual,2020,gas oil combustion consumption by public passenger transport,232.72116,TJ,CO2,74100.0,kg/TJ,17244637.956,kg +c0bfe0b7-5599-338b-a285-f1b143b67ac0,SESCO,II.1.1,Capital Federal,AR-C,annual,2020,gas oil combustion consumption by public passenger transport,232.72116,TJ,CH4,3.9,kg/TJ,907.612524,kg +c0bfe0b7-5599-338b-a285-f1b143b67ac0,SESCO,II.1.1,Capital Federal,AR-C,annual,2020,gas oil combustion consumption by public passenger transport,232.72116,TJ,N2O,3.9,kg/TJ,907.612524,kg +0018d26a-3f3a-3ed0-a113-24f50a4bca7b,SESCO,II.1.1,Chubut,AR-U,annual,2020,gas oil combustion consumption by public passenger transport,0.03612,TJ,CO2,74100.0,kg/TJ,2676.4919999999997,kg +c935cdd5-ed88-35ce-8d68-c14891c9caad,SESCO,II.1.1,Chubut,AR-U,annual,2020,gas oil combustion consumption by public passenger transport,0.03612,TJ,CH4,3.9,kg/TJ,0.140868,kg +c935cdd5-ed88-35ce-8d68-c14891c9caad,SESCO,II.1.1,Chubut,AR-U,annual,2020,gas oil combustion consumption by public passenger transport,0.03612,TJ,N2O,3.9,kg/TJ,0.140868,kg +ee69e8ca-aa88-3d23-a14a-edb9b655aa89,SESCO,II.1.1,Corrientes,AR-W,annual,2020,gas oil combustion consumption by public passenger transport,0.36119999999999997,TJ,CO2,74100.0,kg/TJ,26764.92,kg +33a05aff-5b9a-302a-825b-f010a9451d19,SESCO,II.1.1,Corrientes,AR-W,annual,2020,gas oil combustion consumption by public passenger transport,0.36119999999999997,TJ,CH4,3.9,kg/TJ,1.40868,kg +33a05aff-5b9a-302a-825b-f010a9451d19,SESCO,II.1.1,Corrientes,AR-W,annual,2020,gas oil combustion consumption by public passenger transport,0.36119999999999997,TJ,N2O,3.9,kg/TJ,1.40868,kg +d48b08ac-dbe5-3b5b-98e5-4bfd86f39a25,SESCO,II.1.1,Córdoba,AR-X,annual,2020,gas oil combustion consumption by public passenger transport,0.46956,TJ,CO2,74100.0,kg/TJ,34794.396,kg +ba9825fb-0d5c-3509-9dea-a95e47bc0463,SESCO,II.1.1,Córdoba,AR-X,annual,2020,gas oil combustion consumption by public passenger transport,0.46956,TJ,CH4,3.9,kg/TJ,1.831284,kg +ba9825fb-0d5c-3509-9dea-a95e47bc0463,SESCO,II.1.1,Córdoba,AR-X,annual,2020,gas oil combustion consumption by public passenger transport,0.46956,TJ,N2O,3.9,kg/TJ,1.831284,kg +f6ae5b98-0c58-3284-885a-bd39003c050b,SESCO,II.1.1,Entre Rios,AR-E,annual,2020,gas oil combustion consumption by public passenger transport,1.91436,TJ,CO2,74100.0,kg/TJ,141854.076,kg +024e59fb-a80f-34e6-8df1-24b4a10d39d2,SESCO,II.1.1,Entre Rios,AR-E,annual,2020,gas oil combustion consumption by public passenger transport,1.91436,TJ,CH4,3.9,kg/TJ,7.466004,kg +024e59fb-a80f-34e6-8df1-24b4a10d39d2,SESCO,II.1.1,Entre Rios,AR-E,annual,2020,gas oil combustion consumption by public passenger transport,1.91436,TJ,N2O,3.9,kg/TJ,7.466004,kg +5fa51960-36e1-3a0d-bce5-0dd2a833e98e,SESCO,II.1.1,La Pampa,AR-L,annual,2020,gas oil combustion consumption by public passenger transport,0.03612,TJ,CO2,74100.0,kg/TJ,2676.4919999999997,kg +9bffa227-caae-3d79-9202-c83612263ab2,SESCO,II.1.1,La Pampa,AR-L,annual,2020,gas oil combustion consumption by public passenger transport,0.03612,TJ,CH4,3.9,kg/TJ,0.140868,kg +9bffa227-caae-3d79-9202-c83612263ab2,SESCO,II.1.1,La Pampa,AR-L,annual,2020,gas oil combustion consumption by public passenger transport,0.03612,TJ,N2O,3.9,kg/TJ,0.140868,kg +ddf36c8e-bb57-3c74-9b97-7899194c8e2e,SESCO,II.1.1,Misiones,AR-N,annual,2020,gas oil combustion consumption by public passenger transport,7.98252,TJ,CO2,74100.0,kg/TJ,591504.732,kg +273bc418-1d5b-3fbe-80b8-0164d6c53398,SESCO,II.1.1,Misiones,AR-N,annual,2020,gas oil combustion consumption by public passenger transport,7.98252,TJ,CH4,3.9,kg/TJ,31.131828,kg +273bc418-1d5b-3fbe-80b8-0164d6c53398,SESCO,II.1.1,Misiones,AR-N,annual,2020,gas oil combustion consumption by public passenger transport,7.98252,TJ,N2O,3.9,kg/TJ,31.131828,kg +0cd58816-a371-3edd-bad4-18b7c1603d71,SESCO,II.1.1,Neuquén,AR-Q,annual,2020,gas oil combustion consumption by public passenger transport,11.738999999999999,TJ,CO2,74100.0,kg/TJ,869859.8999999999,kg +c9546000-689b-3c02-be0e-c65d37fe1ce9,SESCO,II.1.1,Neuquén,AR-Q,annual,2020,gas oil combustion consumption by public passenger transport,11.738999999999999,TJ,CH4,3.9,kg/TJ,45.78209999999999,kg +c9546000-689b-3c02-be0e-c65d37fe1ce9,SESCO,II.1.1,Neuquén,AR-Q,annual,2020,gas oil combustion consumption by public passenger transport,11.738999999999999,TJ,N2O,3.9,kg/TJ,45.78209999999999,kg +beb33958-10b8-389a-9467-116d4c22e97b,SESCO,II.1.1,Rio Negro,AR-R,annual,2020,gas oil combustion consumption by public passenger transport,26.909399999999998,TJ,CO2,74100.0,kg/TJ,1993986.5399999998,kg +fb97bcd7-55e8-3402-bd4f-5fa497cdecd9,SESCO,II.1.1,Rio Negro,AR-R,annual,2020,gas oil combustion consumption by public passenger transport,26.909399999999998,TJ,CH4,3.9,kg/TJ,104.94666,kg +fb97bcd7-55e8-3402-bd4f-5fa497cdecd9,SESCO,II.1.1,Rio Negro,AR-R,annual,2020,gas oil combustion consumption by public passenger transport,26.909399999999998,TJ,N2O,3.9,kg/TJ,104.94666,kg +abce6ba7-da1f-37fc-984d-4206c995f8c8,SESCO,II.1.1,Santa Fe,AR-S,annual,2020,gas oil combustion consumption by public passenger transport,31.027079999999998,TJ,CO2,74100.0,kg/TJ,2299106.628,kg +ce7b7ee3-257b-3e2f-8131-bc4f8787ff1c,SESCO,II.1.1,Santa Fe,AR-S,annual,2020,gas oil combustion consumption by public passenger transport,31.027079999999998,TJ,CH4,3.9,kg/TJ,121.00561199999999,kg +ce7b7ee3-257b-3e2f-8131-bc4f8787ff1c,SESCO,II.1.1,Santa Fe,AR-S,annual,2020,gas oil combustion consumption by public passenger transport,31.027079999999998,TJ,N2O,3.9,kg/TJ,121.00561199999999,kg +02b10c80-f015-39cb-aa5e-0fa5fb8fab17,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2020,gas oil combustion consumption by public passenger transport,0.07224,TJ,CO2,74100.0,kg/TJ,5352.9839999999995,kg +e5567771-8320-33a5-9f80-456ff2ef92f1,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2020,gas oil combustion consumption by public passenger transport,0.07224,TJ,CH4,3.9,kg/TJ,0.281736,kg +e5567771-8320-33a5-9f80-456ff2ef92f1,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2020,gas oil combustion consumption by public passenger transport,0.07224,TJ,N2O,3.9,kg/TJ,0.281736,kg +6e3be224-38fc-3df2-a219-4828f0be9059,SESCO,II.1.1,Catamarca,AR-K,annual,2020,gas oil combustion consumption by to the public,76.42992,TJ,CO2,74100.0,kg/TJ,5663457.072,kg +d498281c-3cb5-32b2-90eb-504cc9837080,SESCO,II.1.1,Catamarca,AR-K,annual,2020,gas oil combustion consumption by to the public,76.42992,TJ,CH4,3.9,kg/TJ,298.076688,kg +d498281c-3cb5-32b2-90eb-504cc9837080,SESCO,II.1.1,Catamarca,AR-K,annual,2020,gas oil combustion consumption by to the public,76.42992,TJ,N2O,3.9,kg/TJ,298.076688,kg +c5b665b2-128c-344b-bce4-56f87d1c1326,SESCO,II.1.1,Chaco,AR-H,annual,2020,gas oil combustion consumption by to the public,105.90384,TJ,CO2,74100.0,kg/TJ,7847474.544,kg +e9f3dc4b-bfcf-3ad3-890b-c841f5e9fbb7,SESCO,II.1.1,Chaco,AR-H,annual,2020,gas oil combustion consumption by to the public,105.90384,TJ,CH4,3.9,kg/TJ,413.024976,kg +e9f3dc4b-bfcf-3ad3-890b-c841f5e9fbb7,SESCO,II.1.1,Chaco,AR-H,annual,2020,gas oil combustion consumption by to the public,105.90384,TJ,N2O,3.9,kg/TJ,413.024976,kg +052ce0db-3c40-39cc-afbe-10ab0cef4994,SESCO,II.1.1,Jujuy,AR-Y,annual,2020,gas oil combustion consumption by to the public,398.2222776,TJ,CO2,74100.0,kg/TJ,29508270.770159997,kg +3a4d4d5e-f6f8-35ce-9e5d-a5660c4a47b8,SESCO,II.1.1,Jujuy,AR-Y,annual,2020,gas oil combustion consumption by to the public,398.2222776,TJ,CH4,3.9,kg/TJ,1553.06688264,kg +3a4d4d5e-f6f8-35ce-9e5d-a5660c4a47b8,SESCO,II.1.1,Jujuy,AR-Y,annual,2020,gas oil combustion consumption by to the public,398.2222776,TJ,N2O,3.9,kg/TJ,1553.06688264,kg +093b7210-e3e0-334f-b1e0-86bab6bc1488,SESCO,II.1.1,La Rioja,AR-F,annual,2020,gas oil combustion consumption by to the public,72.34836,TJ,CO2,74100.0,kg/TJ,5361013.476,kg +b30e7e3a-9dc6-3081-bebb-fa10bc195082,SESCO,II.1.1,La Rioja,AR-F,annual,2020,gas oil combustion consumption by to the public,72.34836,TJ,CH4,3.9,kg/TJ,282.15860399999997,kg +b30e7e3a-9dc6-3081-bebb-fa10bc195082,SESCO,II.1.1,La Rioja,AR-F,annual,2020,gas oil combustion consumption by to the public,72.34836,TJ,N2O,3.9,kg/TJ,282.15860399999997,kg +71382317-4e5f-34cd-bcc0-6faa4d270ef9,SESCO,II.1.1,Salta,AR-A,annual,2020,gas oil combustion consumption by to the public,1441.2010032,TJ,CO2,74100.0,kg/TJ,106792994.33712001,kg +79a4d56d-7512-32dc-ab45-bf656d8080ea,SESCO,II.1.1,Salta,AR-A,annual,2020,gas oil combustion consumption by to the public,1441.2010032,TJ,CH4,3.9,kg/TJ,5620.68391248,kg +79a4d56d-7512-32dc-ab45-bf656d8080ea,SESCO,II.1.1,Salta,AR-A,annual,2020,gas oil combustion consumption by to the public,1441.2010032,TJ,N2O,3.9,kg/TJ,5620.68391248,kg +2bd0fe6a-5af6-3a82-a4b2-d8730440f02f,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2020,gas oil combustion consumption by to the public,156.7608,TJ,CO2,74100.0,kg/TJ,11615975.28,kg +15ede32a-c729-3fc4-9b4a-9a7b712a3ff1,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2020,gas oil combustion consumption by to the public,156.7608,TJ,CH4,3.9,kg/TJ,611.36712,kg +15ede32a-c729-3fc4-9b4a-9a7b712a3ff1,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2020,gas oil combustion consumption by to the public,156.7608,TJ,N2O,3.9,kg/TJ,611.36712,kg +33b14dc4-7382-306b-8ea1-7f76c21ec4ec,SESCO,II.1.1,Tucuman,AR-T,annual,2020,gas oil combustion consumption by to the public,1366.9025244000002,TJ,CO2,74100.0,kg/TJ,101287477.05804001,kg +590f0391-44e9-3789-8435-e487e48f8c19,SESCO,II.1.1,Tucuman,AR-T,annual,2020,gas oil combustion consumption by to the public,1366.9025244000002,TJ,CH4,3.9,kg/TJ,5330.9198451600005,kg +590f0391-44e9-3789-8435-e487e48f8c19,SESCO,II.1.1,Tucuman,AR-T,annual,2020,gas oil combustion consumption by to the public,1366.9025244000002,TJ,N2O,3.9,kg/TJ,5330.9198451600005,kg +e704d098-f371-355f-aaf0-88639fc57564,SESCO,II.1.1,Catamarca,AR-K,annual,2020,gas oil combustion consumption by to the public,21.1302,TJ,CO2,74100.0,kg/TJ,1565747.8199999998,kg +a29ee563-9b1b-3ad2-9441-7edfec24d69c,SESCO,II.1.1,Catamarca,AR-K,annual,2020,gas oil combustion consumption by to the public,21.1302,TJ,CH4,3.9,kg/TJ,82.40777999999999,kg +a29ee563-9b1b-3ad2-9441-7edfec24d69c,SESCO,II.1.1,Catamarca,AR-K,annual,2020,gas oil combustion consumption by to the public,21.1302,TJ,N2O,3.9,kg/TJ,82.40777999999999,kg +e4d1a888-8d7e-3c52-9130-3baefd8f33a7,SESCO,II.1.1,Chaco,AR-H,annual,2020,gas oil combustion consumption by to the public,8.23536,TJ,CO2,74100.0,kg/TJ,610240.176,kg +6d9d4af0-7cd5-310a-bc24-9b8d408075cb,SESCO,II.1.1,Chaco,AR-H,annual,2020,gas oil combustion consumption by to the public,8.23536,TJ,CH4,3.9,kg/TJ,32.117903999999996,kg +6d9d4af0-7cd5-310a-bc24-9b8d408075cb,SESCO,II.1.1,Chaco,AR-H,annual,2020,gas oil combustion consumption by to the public,8.23536,TJ,N2O,3.9,kg/TJ,32.117903999999996,kg +bc832c67-3aa0-3e86-98cd-80cbdf854260,SESCO,II.1.1,Jujuy,AR-Y,annual,2020,gas oil combustion consumption by to the public,129.09288,TJ,CO2,74100.0,kg/TJ,9565782.408,kg +caeb0e87-d8cc-34fd-b084-8730c0eaa0f3,SESCO,II.1.1,Jujuy,AR-Y,annual,2020,gas oil combustion consumption by to the public,129.09288,TJ,CH4,3.9,kg/TJ,503.46223200000003,kg +caeb0e87-d8cc-34fd-b084-8730c0eaa0f3,SESCO,II.1.1,Jujuy,AR-Y,annual,2020,gas oil combustion consumption by to the public,129.09288,TJ,N2O,3.9,kg/TJ,503.46223200000003,kg +60f91b5f-405e-3187-bcb7-896510c65715,SESCO,II.1.1,La Rioja,AR-F,annual,2020,gas oil combustion consumption by to the public,47.75064,TJ,CO2,74100.0,kg/TJ,3538322.4239999996,kg +476bc3e6-dcfc-3f48-b1af-1dc69612d8a4,SESCO,II.1.1,La Rioja,AR-F,annual,2020,gas oil combustion consumption by to the public,47.75064,TJ,CH4,3.9,kg/TJ,186.22749599999997,kg +476bc3e6-dcfc-3f48-b1af-1dc69612d8a4,SESCO,II.1.1,La Rioja,AR-F,annual,2020,gas oil combustion consumption by to the public,47.75064,TJ,N2O,3.9,kg/TJ,186.22749599999997,kg +5aff70d2-3e7e-391d-9616-78ed4b9b3756,SESCO,II.1.1,Salta,AR-A,annual,2020,gas oil combustion consumption by to the public,249.6148452,TJ,CO2,74100.0,kg/TJ,18496460.029319998,kg +24fec4cd-19bb-3774-ad2a-6b939f7a3f3d,SESCO,II.1.1,Salta,AR-A,annual,2020,gas oil combustion consumption by to the public,249.6148452,TJ,CH4,3.9,kg/TJ,973.49789628,kg +24fec4cd-19bb-3774-ad2a-6b939f7a3f3d,SESCO,II.1.1,Salta,AR-A,annual,2020,gas oil combustion consumption by to the public,249.6148452,TJ,N2O,3.9,kg/TJ,973.49789628,kg +2d28a56b-9d67-393a-ad8d-c84c2466541c,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2020,gas oil combustion consumption by to the public,72.38448,TJ,CO2,74100.0,kg/TJ,5363689.967999999,kg +5c5c8c54-0e19-39fa-a2a8-85aa17fc91eb,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2020,gas oil combustion consumption by to the public,72.38448,TJ,CH4,3.9,kg/TJ,282.299472,kg +5c5c8c54-0e19-39fa-a2a8-85aa17fc91eb,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2020,gas oil combustion consumption by to the public,72.38448,TJ,N2O,3.9,kg/TJ,282.299472,kg +2ae03f8a-ce02-3d38-9992-6e9d895a80e6,SESCO,II.1.1,Tucuman,AR-T,annual,2020,gas oil combustion consumption by to the public,416.3812464,TJ,CO2,74100.0,kg/TJ,30853850.35824,kg +381f23e0-0af7-3aea-b6cf-461d8b656034,SESCO,II.1.1,Tucuman,AR-T,annual,2020,gas oil combustion consumption by to the public,416.3812464,TJ,CH4,3.9,kg/TJ,1623.88686096,kg +381f23e0-0af7-3aea-b6cf-461d8b656034,SESCO,II.1.1,Tucuman,AR-T,annual,2020,gas oil combustion consumption by to the public,416.3812464,TJ,N2O,3.9,kg/TJ,1623.88686096,kg +ea9e0970-8e25-3c01-8ed5-398484ccbf48,SESCO,I.3.1,Buenos Aires,AR-B,annual,2020,gasoline combustion consumption by petrochemical industries,7.186788999999999,TJ,CO2,69300.0,kg/TJ,498044.47769999993,kg +5cd356e2-2cc6-3c36-b69b-5944b0d5278e,SESCO,I.3.1,Buenos Aires,AR-B,annual,2020,gasoline combustion consumption by petrochemical industries,7.186788999999999,TJ,CH4,33.0,kg/TJ,237.16403699999998,kg +6b286190-d3a3-37db-9c8d-469566330b06,SESCO,I.3.1,Buenos Aires,AR-B,annual,2020,gasoline combustion consumption by petrochemical industries,7.186788999999999,TJ,N2O,3.2,kg/TJ,22.9977248,kg +b9b84e85-9e59-376c-abd1-93dc30371bcf,SESCO,I.3.1,Jujuy,AR-Y,annual,2020,gas oil combustion consumption by petrochemical industries,0.25284,TJ,CO2,74100.0,kg/TJ,18735.444,kg +04b9cf43-1a03-3e41-8fa1-428b15a054f5,SESCO,I.3.1,Jujuy,AR-Y,annual,2020,gas oil combustion consumption by petrochemical industries,0.25284,TJ,CH4,3.9,kg/TJ,0.9860760000000001,kg +04b9cf43-1a03-3e41-8fa1-428b15a054f5,SESCO,I.3.1,Jujuy,AR-Y,annual,2020,gas oil combustion consumption by petrochemical industries,0.25284,TJ,N2O,3.9,kg/TJ,0.9860760000000001,kg +fb0cd7a4-ee4e-343d-9e63-981650a37518,SESCO,II.5.1,Buenos Aires,AR-B,annual,2020,gas oil combustion consumption by agriculture machines,260.13624,TJ,CO2,74100.0,kg/TJ,19276095.384,kg +28d8e919-99ed-35dd-bfbd-c663848ad99c,SESCO,II.5.1,Buenos Aires,AR-B,annual,2020,gas oil combustion consumption by agriculture machines,260.13624,TJ,CH4,3.9,kg/TJ,1014.5313359999999,kg +28d8e919-99ed-35dd-bfbd-c663848ad99c,SESCO,II.5.1,Buenos Aires,AR-B,annual,2020,gas oil combustion consumption by agriculture machines,260.13624,TJ,N2O,3.9,kg/TJ,1014.5313359999999,kg +039a3859-ff2b-3768-ad2e-09ab25d52912,SESCO,II.5.1,Corrientes,AR-W,annual,2020,gas oil combustion consumption by agriculture machines,7.98252,TJ,CO2,74100.0,kg/TJ,591504.732,kg +5bfff8c8-7236-3d9f-93b8-de29c3b4b7ea,SESCO,II.5.1,Corrientes,AR-W,annual,2020,gas oil combustion consumption by agriculture machines,7.98252,TJ,CH4,3.9,kg/TJ,31.131828,kg +5bfff8c8-7236-3d9f-93b8-de29c3b4b7ea,SESCO,II.5.1,Corrientes,AR-W,annual,2020,gas oil combustion consumption by agriculture machines,7.98252,TJ,N2O,3.9,kg/TJ,31.131828,kg +94f9ab9b-53e6-3bde-8515-b20baf889dae,SESCO,II.5.1,Córdoba,AR-X,annual,2020,gas oil combustion consumption by agriculture machines,16.86804,TJ,CO2,74100.0,kg/TJ,1249921.764,kg +7dbc93ba-b74b-344a-9826-3aa9124bf47e,SESCO,II.5.1,Córdoba,AR-X,annual,2020,gas oil combustion consumption by agriculture machines,16.86804,TJ,CH4,3.9,kg/TJ,65.78535600000001,kg +7dbc93ba-b74b-344a-9826-3aa9124bf47e,SESCO,II.5.1,Córdoba,AR-X,annual,2020,gas oil combustion consumption by agriculture machines,16.86804,TJ,N2O,3.9,kg/TJ,65.78535600000001,kg +cf2701fc-0d20-30d6-8801-27871b184bcc,SESCO,II.5.1,Entre Rios,AR-E,annual,2020,gas oil combustion consumption by agriculture machines,78.59712,TJ,CO2,74100.0,kg/TJ,5824046.592,kg +d80d7b59-ae01-368b-9098-5fe060c72afd,SESCO,II.5.1,Entre Rios,AR-E,annual,2020,gas oil combustion consumption by agriculture machines,78.59712,TJ,CH4,3.9,kg/TJ,306.528768,kg +d80d7b59-ae01-368b-9098-5fe060c72afd,SESCO,II.5.1,Entre Rios,AR-E,annual,2020,gas oil combustion consumption by agriculture machines,78.59712,TJ,N2O,3.9,kg/TJ,306.528768,kg +400d7078-4735-304f-b188-56876790c9a0,SESCO,II.5.1,Santa Fe,AR-S,annual,2020,gas oil combustion consumption by agriculture machines,39.62364,TJ,CO2,74100.0,kg/TJ,2936111.724,kg +0edfa362-b029-35fa-9f4c-605e293428e6,SESCO,II.5.1,Santa Fe,AR-S,annual,2020,gas oil combustion consumption by agriculture machines,39.62364,TJ,CH4,3.9,kg/TJ,154.532196,kg +0edfa362-b029-35fa-9f4c-605e293428e6,SESCO,II.5.1,Santa Fe,AR-S,annual,2020,gas oil combustion consumption by agriculture machines,39.62364,TJ,N2O,3.9,kg/TJ,154.532196,kg +5f0008cf-184c-3cfa-9a4e-2c77bb931925,SESCO,II.5.1,Tucuman,AR-T,annual,2020,gas oil combustion consumption by agriculture machines,30.91872,TJ,CO2,74100.0,kg/TJ,2291077.1520000002,kg +7ce66a2e-1b36-35ba-a33f-df0902a0c88e,SESCO,II.5.1,Tucuman,AR-T,annual,2020,gas oil combustion consumption by agriculture machines,30.91872,TJ,CH4,3.9,kg/TJ,120.58300799999999,kg +7ce66a2e-1b36-35ba-a33f-df0902a0c88e,SESCO,II.5.1,Tucuman,AR-T,annual,2020,gas oil combustion consumption by agriculture machines,30.91872,TJ,N2O,3.9,kg/TJ,120.58300799999999,kg +2aa2803c-ea3d-3271-b373-2dbc9e7b1cd9,SESCO,II.5.1,Buenos Aires,AR-B,annual,2020,gas oil combustion consumption by agriculture machines,11.77512,TJ,CO2,74100.0,kg/TJ,872536.392,kg +aac77cee-9368-3407-85d0-3ffddfce7de0,SESCO,II.5.1,Buenos Aires,AR-B,annual,2020,gas oil combustion consumption by agriculture machines,11.77512,TJ,CH4,3.9,kg/TJ,45.922968,kg +aac77cee-9368-3407-85d0-3ffddfce7de0,SESCO,II.5.1,Buenos Aires,AR-B,annual,2020,gas oil combustion consumption by agriculture machines,11.77512,TJ,N2O,3.9,kg/TJ,45.922968,kg +38f1c27e-d2ac-3339-add1-62256732d356,SESCO,II.5.1,Entre Rios,AR-E,annual,2020,gas oil combustion consumption by agriculture machines,42.15204,TJ,CO2,74100.0,kg/TJ,3123466.164,kg +6489dbff-5cfa-3934-b3e7-a3f7b3fc10c1,SESCO,II.5.1,Entre Rios,AR-E,annual,2020,gas oil combustion consumption by agriculture machines,42.15204,TJ,CH4,3.9,kg/TJ,164.392956,kg +6489dbff-5cfa-3934-b3e7-a3f7b3fc10c1,SESCO,II.5.1,Entre Rios,AR-E,annual,2020,gas oil combustion consumption by agriculture machines,42.15204,TJ,N2O,3.9,kg/TJ,164.392956,kg +8e098029-7203-30cf-9afa-91fd9c976a3e,SESCO,II.5.1,Santa Fe,AR-S,annual,2020,gas oil combustion consumption by agriculture machines,3.21468,TJ,CO2,74100.0,kg/TJ,238207.788,kg +cbecbe1b-5469-377c-baf6-9a5fe1d68181,SESCO,II.5.1,Santa Fe,AR-S,annual,2020,gas oil combustion consumption by agriculture machines,3.21468,TJ,CH4,3.9,kg/TJ,12.537252,kg +cbecbe1b-5469-377c-baf6-9a5fe1d68181,SESCO,II.5.1,Santa Fe,AR-S,annual,2020,gas oil combustion consumption by agriculture machines,3.21468,TJ,N2O,3.9,kg/TJ,12.537252,kg +50635a08-13ee-3e0f-8dd3-cd5f7297bceb,SESCO,II.1.1,Buenos Aires,AR-B,annual,2020,gas oil combustion consumption by to the public,12366.079319999999,TJ,CO2,74100.0,kg/TJ,916326477.6119999,kg +96e56db4-d53a-3b1b-959e-1d7a69347987,SESCO,II.1.1,Buenos Aires,AR-B,annual,2020,gas oil combustion consumption by to the public,12366.079319999999,TJ,CH4,3.9,kg/TJ,48227.709348,kg +96e56db4-d53a-3b1b-959e-1d7a69347987,SESCO,II.1.1,Buenos Aires,AR-B,annual,2020,gas oil combustion consumption by to the public,12366.079319999999,TJ,N2O,3.9,kg/TJ,48227.709348,kg +e5b01c67-5fc0-3b7d-bb60-11408722aab4,SESCO,II.1.1,Capital Federal,AR-C,annual,2020,gas oil combustion consumption by to the public,722.7250799999999,TJ,CO2,74100.0,kg/TJ,53553928.427999996,kg +0d0ae5bf-9802-361a-ba58-2255692384cf,SESCO,II.1.1,Capital Federal,AR-C,annual,2020,gas oil combustion consumption by to the public,722.7250799999999,TJ,CH4,3.9,kg/TJ,2818.6278119999997,kg +0d0ae5bf-9802-361a-ba58-2255692384cf,SESCO,II.1.1,Capital Federal,AR-C,annual,2020,gas oil combustion consumption by to the public,722.7250799999999,TJ,N2O,3.9,kg/TJ,2818.6278119999997,kg +845559d7-99a5-3d6a-86d3-3418ff50b51e,SESCO,II.1.1,Catamarca,AR-K,annual,2020,gas oil combustion consumption by to the public,13.32828,TJ,CO2,74100.0,kg/TJ,987625.548,kg +21bedb80-3006-3b0d-aad1-b1be067b6b62,SESCO,II.1.1,Catamarca,AR-K,annual,2020,gas oil combustion consumption by to the public,13.32828,TJ,CH4,3.9,kg/TJ,51.980292,kg +21bedb80-3006-3b0d-aad1-b1be067b6b62,SESCO,II.1.1,Catamarca,AR-K,annual,2020,gas oil combustion consumption by to the public,13.32828,TJ,N2O,3.9,kg/TJ,51.980292,kg +18ce87da-be57-3823-8581-a64674f0544e,SESCO,II.1.1,Chaco,AR-H,annual,2020,gas oil combustion consumption by to the public,1653.9348,TJ,CO2,74100.0,kg/TJ,122556568.67999999,kg +53e6c781-89cf-374f-b6d2-0fe37f4181a3,SESCO,II.1.1,Chaco,AR-H,annual,2020,gas oil combustion consumption by to the public,1653.9348,TJ,CH4,3.9,kg/TJ,6450.34572,kg +53e6c781-89cf-374f-b6d2-0fe37f4181a3,SESCO,II.1.1,Chaco,AR-H,annual,2020,gas oil combustion consumption by to the public,1653.9348,TJ,N2O,3.9,kg/TJ,6450.34572,kg +6fa6916b-d691-33da-9632-979f96df39d4,SESCO,II.1.1,Corrientes,AR-W,annual,2020,gas oil combustion consumption by to the public,830.0376,TJ,CO2,74100.0,kg/TJ,61505786.16,kg +3cd12e70-f110-3930-9779-f965644c4adf,SESCO,II.1.1,Corrientes,AR-W,annual,2020,gas oil combustion consumption by to the public,830.0376,TJ,CH4,3.9,kg/TJ,3237.14664,kg +3cd12e70-f110-3930-9779-f965644c4adf,SESCO,II.1.1,Corrientes,AR-W,annual,2020,gas oil combustion consumption by to the public,830.0376,TJ,N2O,3.9,kg/TJ,3237.14664,kg +57f4c33e-5658-3091-b140-1f7b733048ad,SESCO,II.1.1,Córdoba,AR-X,annual,2020,gas oil combustion consumption by to the public,6395.87676,TJ,CO2,74100.0,kg/TJ,473934467.916,kg +643e4775-0bba-3d85-a67e-ad522f8758bd,SESCO,II.1.1,Córdoba,AR-X,annual,2020,gas oil combustion consumption by to the public,6395.87676,TJ,CH4,3.9,kg/TJ,24943.919364,kg +643e4775-0bba-3d85-a67e-ad522f8758bd,SESCO,II.1.1,Córdoba,AR-X,annual,2020,gas oil combustion consumption by to the public,6395.87676,TJ,N2O,3.9,kg/TJ,24943.919364,kg +8628f786-3d7f-30c6-b5e3-a5e0c2e1776c,SESCO,II.1.1,Entre Rios,AR-E,annual,2020,gas oil combustion consumption by to the public,1221.25332,TJ,CO2,74100.0,kg/TJ,90494871.01200001,kg +4d788277-fb76-3d9e-8bda-3df326b130b1,SESCO,II.1.1,Entre Rios,AR-E,annual,2020,gas oil combustion consumption by to the public,1221.25332,TJ,CH4,3.9,kg/TJ,4762.887948,kg +4d788277-fb76-3d9e-8bda-3df326b130b1,SESCO,II.1.1,Entre Rios,AR-E,annual,2020,gas oil combustion consumption by to the public,1221.25332,TJ,N2O,3.9,kg/TJ,4762.887948,kg +3630ee4e-217b-3b8e-89e9-c535bdc9e5d6,SESCO,II.1.1,Formosa,AR-P,annual,2020,gas oil combustion consumption by to the public,103.59215999999999,TJ,CO2,74100.0,kg/TJ,7676179.056,kg +396b092b-3598-35fa-8693-088e34e9b6dd,SESCO,II.1.1,Formosa,AR-P,annual,2020,gas oil combustion consumption by to the public,103.59215999999999,TJ,CH4,3.9,kg/TJ,404.00942399999997,kg +396b092b-3598-35fa-8693-088e34e9b6dd,SESCO,II.1.1,Formosa,AR-P,annual,2020,gas oil combustion consumption by to the public,103.59215999999999,TJ,N2O,3.9,kg/TJ,404.00942399999997,kg +e1d3f406-ea25-37b7-b533-6de45dfd7bcb,SESCO,II.1.1,Jujuy,AR-Y,annual,2020,gas oil combustion consumption by to the public,114.10307999999999,TJ,CO2,74100.0,kg/TJ,8455038.228,kg +2992f24d-66f4-3ba9-aa0b-fa23e24b9d41,SESCO,II.1.1,Jujuy,AR-Y,annual,2020,gas oil combustion consumption by to the public,114.10307999999999,TJ,CH4,3.9,kg/TJ,445.002012,kg +2992f24d-66f4-3ba9-aa0b-fa23e24b9d41,SESCO,II.1.1,Jujuy,AR-Y,annual,2020,gas oil combustion consumption by to the public,114.10307999999999,TJ,N2O,3.9,kg/TJ,445.002012,kg +0faa77a8-ea29-38b1-b9ff-7abb17d4d983,SESCO,II.1.1,La Pampa,AR-L,annual,2020,gas oil combustion consumption by to the public,676.23864,TJ,CO2,74100.0,kg/TJ,50109283.224,kg +e2519dba-8448-3496-9b11-7688aa41ffb4,SESCO,II.1.1,La Pampa,AR-L,annual,2020,gas oil combustion consumption by to the public,676.23864,TJ,CH4,3.9,kg/TJ,2637.330696,kg +e2519dba-8448-3496-9b11-7688aa41ffb4,SESCO,II.1.1,La Pampa,AR-L,annual,2020,gas oil combustion consumption by to the public,676.23864,TJ,N2O,3.9,kg/TJ,2637.330696,kg +3c3585ba-4d7a-36ac-9cac-b5128ae654c6,SESCO,II.1.1,La Rioja,AR-F,annual,2020,gas oil combustion consumption by to the public,139.71216,TJ,CO2,74100.0,kg/TJ,10352671.056000002,kg +9cedb802-34fa-31a6-abf1-bc977f67c6f9,SESCO,II.1.1,La Rioja,AR-F,annual,2020,gas oil combustion consumption by to the public,139.71216,TJ,CH4,3.9,kg/TJ,544.877424,kg +9cedb802-34fa-31a6-abf1-bc977f67c6f9,SESCO,II.1.1,La Rioja,AR-F,annual,2020,gas oil combustion consumption by to the public,139.71216,TJ,N2O,3.9,kg/TJ,544.877424,kg +5695b716-09d7-3d3f-9ee3-8955a197784f,SESCO,II.1.1,Mendoza,AR-M,annual,2020,gas oil combustion consumption by to the public,1557.16932,TJ,CO2,74100.0,kg/TJ,115386246.612,kg +63dc1fe5-b1cb-3590-b165-3cfaa3c74e06,SESCO,II.1.1,Mendoza,AR-M,annual,2020,gas oil combustion consumption by to the public,1557.16932,TJ,CH4,3.9,kg/TJ,6072.960348,kg +63dc1fe5-b1cb-3590-b165-3cfaa3c74e06,SESCO,II.1.1,Mendoza,AR-M,annual,2020,gas oil combustion consumption by to the public,1557.16932,TJ,N2O,3.9,kg/TJ,6072.960348,kg +f8d47817-2bf7-3b0f-9a3d-ef63b898fd0f,SESCO,II.1.1,Misiones,AR-N,annual,2020,gas oil combustion consumption by to the public,1077.92916,TJ,CO2,74100.0,kg/TJ,79874550.756,kg +9cc1f005-7a56-3bca-a64c-2908856c16ea,SESCO,II.1.1,Misiones,AR-N,annual,2020,gas oil combustion consumption by to the public,1077.92916,TJ,CH4,3.9,kg/TJ,4203.923723999999,kg +9cc1f005-7a56-3bca-a64c-2908856c16ea,SESCO,II.1.1,Misiones,AR-N,annual,2020,gas oil combustion consumption by to the public,1077.92916,TJ,N2O,3.9,kg/TJ,4203.923723999999,kg +07f658c8-4bf0-3244-976c-776f8bd13b47,SESCO,II.1.1,Neuquén,AR-Q,annual,2020,gas oil combustion consumption by to the public,540.68028,TJ,CO2,74100.0,kg/TJ,40064408.748,kg +a5277542-1ebc-3132-a07b-90ab0df559a6,SESCO,II.1.1,Neuquén,AR-Q,annual,2020,gas oil combustion consumption by to the public,540.68028,TJ,CH4,3.9,kg/TJ,2108.653092,kg +a5277542-1ebc-3132-a07b-90ab0df559a6,SESCO,II.1.1,Neuquén,AR-Q,annual,2020,gas oil combustion consumption by to the public,540.68028,TJ,N2O,3.9,kg/TJ,2108.653092,kg +829a7e76-e50c-3f1e-a333-6bc01cafcd70,SESCO,II.1.1,Rio Negro,AR-R,annual,2020,gas oil combustion consumption by to the public,241.49832,TJ,CO2,74100.0,kg/TJ,17895025.512000002,kg +123bc1eb-ebda-3f26-a671-478a0ff26417,SESCO,II.1.1,Rio Negro,AR-R,annual,2020,gas oil combustion consumption by to the public,241.49832,TJ,CH4,3.9,kg/TJ,941.843448,kg +123bc1eb-ebda-3f26-a671-478a0ff26417,SESCO,II.1.1,Rio Negro,AR-R,annual,2020,gas oil combustion consumption by to the public,241.49832,TJ,N2O,3.9,kg/TJ,941.843448,kg +08af010c-cb64-3e48-809f-3090235c7a80,SESCO,II.1.1,Salta,AR-A,annual,2020,gas oil combustion consumption by to the public,103.70052,TJ,CO2,74100.0,kg/TJ,7684208.532,kg +2db7209c-a04e-30fc-b8b2-18c9a0feaab7,SESCO,II.1.1,Salta,AR-A,annual,2020,gas oil combustion consumption by to the public,103.70052,TJ,CH4,3.9,kg/TJ,404.432028,kg +2db7209c-a04e-30fc-b8b2-18c9a0feaab7,SESCO,II.1.1,Salta,AR-A,annual,2020,gas oil combustion consumption by to the public,103.70052,TJ,N2O,3.9,kg/TJ,404.432028,kg +4b07ae9f-48e3-3666-870d-038bd79a2b4d,SESCO,II.1.1,San Juan,AR-J,annual,2020,gas oil combustion consumption by to the public,308.39256,TJ,CO2,74100.0,kg/TJ,22851888.696,kg +2175202c-77de-3b7e-8b73-b4b2db843274,SESCO,II.1.1,San Juan,AR-J,annual,2020,gas oil combustion consumption by to the public,308.39256,TJ,CH4,3.9,kg/TJ,1202.730984,kg +2175202c-77de-3b7e-8b73-b4b2db843274,SESCO,II.1.1,San Juan,AR-J,annual,2020,gas oil combustion consumption by to the public,308.39256,TJ,N2O,3.9,kg/TJ,1202.730984,kg +2780b064-177e-338f-93a9-57c513217fdf,SESCO,II.1.1,San Luis,AR-D,annual,2020,gas oil combustion consumption by to the public,265.87932,TJ,CO2,74100.0,kg/TJ,19701657.612,kg +32631566-d52f-39ab-9f1e-70cef4fb67fd,SESCO,II.1.1,San Luis,AR-D,annual,2020,gas oil combustion consumption by to the public,265.87932,TJ,CH4,3.9,kg/TJ,1036.929348,kg +32631566-d52f-39ab-9f1e-70cef4fb67fd,SESCO,II.1.1,San Luis,AR-D,annual,2020,gas oil combustion consumption by to the public,265.87932,TJ,N2O,3.9,kg/TJ,1036.929348,kg +e2baafc3-e7b2-3ab8-94af-407758d1b8b9,SESCO,II.1.1,Santa Fe,AR-S,annual,2020,gas oil combustion consumption by to the public,5178.30768,TJ,CO2,74100.0,kg/TJ,383712599.088,kg +8bcb7066-8817-3768-bfec-2c7c1e4439b6,SESCO,II.1.1,Santa Fe,AR-S,annual,2020,gas oil combustion consumption by to the public,5178.30768,TJ,CH4,3.9,kg/TJ,20195.399952,kg +8bcb7066-8817-3768-bfec-2c7c1e4439b6,SESCO,II.1.1,Santa Fe,AR-S,annual,2020,gas oil combustion consumption by to the public,5178.30768,TJ,N2O,3.9,kg/TJ,20195.399952,kg +d101cf3a-3c5f-315b-a473-788bc97362a2,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2020,gas oil combustion consumption by to the public,256.452,TJ,CO2,74100.0,kg/TJ,19003093.2,kg +15e91f3b-32f8-3cf3-9d84-b91f454a1742,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2020,gas oil combustion consumption by to the public,256.452,TJ,CH4,3.9,kg/TJ,1000.1628,kg +15e91f3b-32f8-3cf3-9d84-b91f454a1742,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2020,gas oil combustion consumption by to the public,256.452,TJ,N2O,3.9,kg/TJ,1000.1628,kg +8aaa962a-c1b7-3221-9fcb-11d587a7017d,SESCO,II.1.1,Tucuman,AR-T,annual,2020,gas oil combustion consumption by to the public,944.61024,TJ,CO2,74100.0,kg/TJ,69995618.784,kg +997d9c2f-f241-31c1-b096-4d1f9034930b,SESCO,II.1.1,Tucuman,AR-T,annual,2020,gas oil combustion consumption by to the public,944.61024,TJ,CH4,3.9,kg/TJ,3683.9799359999997,kg +997d9c2f-f241-31c1-b096-4d1f9034930b,SESCO,II.1.1,Tucuman,AR-T,annual,2020,gas oil combustion consumption by to the public,944.61024,TJ,N2O,3.9,kg/TJ,3683.9799359999997,kg +e4d1f42c-d5b1-34b1-8296-81de8efb7c29,SESCO,II.1.1,Buenos Aires,AR-B,annual,2020,gas oil combustion consumption by to the public,7061.8212,TJ,CO2,74100.0,kg/TJ,523280950.92,kg +977f1ba4-2c79-3334-b041-390b8d496043,SESCO,II.1.1,Buenos Aires,AR-B,annual,2020,gas oil combustion consumption by to the public,7061.8212,TJ,CH4,3.9,kg/TJ,27541.10268,kg +977f1ba4-2c79-3334-b041-390b8d496043,SESCO,II.1.1,Buenos Aires,AR-B,annual,2020,gas oil combustion consumption by to the public,7061.8212,TJ,N2O,3.9,kg/TJ,27541.10268,kg +d081d0c2-4593-3da5-894f-1a3726f87b21,SESCO,II.1.1,Capital Federal,AR-C,annual,2020,gas oil combustion consumption by to the public,1197.41412,TJ,CO2,74100.0,kg/TJ,88728386.292,kg +d2e74216-89d0-3bd0-b35f-d197e21c8f1c,SESCO,II.1.1,Capital Federal,AR-C,annual,2020,gas oil combustion consumption by to the public,1197.41412,TJ,CH4,3.9,kg/TJ,4669.915067999999,kg +d2e74216-89d0-3bd0-b35f-d197e21c8f1c,SESCO,II.1.1,Capital Federal,AR-C,annual,2020,gas oil combustion consumption by to the public,1197.41412,TJ,N2O,3.9,kg/TJ,4669.915067999999,kg +555ac185-50da-3ba7-9936-bf5d9a2438e4,SESCO,II.1.1,Catamarca,AR-K,annual,2020,gas oil combustion consumption by to the public,31.09932,TJ,CO2,74100.0,kg/TJ,2304459.6119999997,kg +c0cd2862-7440-370e-bb4c-43e11c29a8bf,SESCO,II.1.1,Catamarca,AR-K,annual,2020,gas oil combustion consumption by to the public,31.09932,TJ,CH4,3.9,kg/TJ,121.287348,kg +c0cd2862-7440-370e-bb4c-43e11c29a8bf,SESCO,II.1.1,Catamarca,AR-K,annual,2020,gas oil combustion consumption by to the public,31.09932,TJ,N2O,3.9,kg/TJ,121.287348,kg +60cd2c8d-404f-317c-ad11-c3853e6a5ebd,SESCO,II.1.1,Chaco,AR-H,annual,2020,gas oil combustion consumption by to the public,428.41931999999997,TJ,CO2,74100.0,kg/TJ,31745871.611999996,kg +c03f9675-882c-3fc0-9b16-e0ea22697d43,SESCO,II.1.1,Chaco,AR-H,annual,2020,gas oil combustion consumption by to the public,428.41931999999997,TJ,CH4,3.9,kg/TJ,1670.8353479999998,kg +c03f9675-882c-3fc0-9b16-e0ea22697d43,SESCO,II.1.1,Chaco,AR-H,annual,2020,gas oil combustion consumption by to the public,428.41931999999997,TJ,N2O,3.9,kg/TJ,1670.8353479999998,kg +de61719e-e196-3a2e-b2cc-ca43fa9f80f8,SESCO,II.1.1,Corrientes,AR-W,annual,2020,gas oil combustion consumption by to the public,417.04152,TJ,CO2,74100.0,kg/TJ,30902776.632,kg +f5728009-a088-3d45-a8cc-727ab063ba24,SESCO,II.1.1,Corrientes,AR-W,annual,2020,gas oil combustion consumption by to the public,417.04152,TJ,CH4,3.9,kg/TJ,1626.461928,kg +f5728009-a088-3d45-a8cc-727ab063ba24,SESCO,II.1.1,Corrientes,AR-W,annual,2020,gas oil combustion consumption by to the public,417.04152,TJ,N2O,3.9,kg/TJ,1626.461928,kg +b2dee434-5c11-35e0-935d-bb54ab534a39,SESCO,II.1.1,Córdoba,AR-X,annual,2020,gas oil combustion consumption by to the public,1989.45348,TJ,CO2,74100.0,kg/TJ,147418502.868,kg +a0c5bd41-e905-3f99-8bb8-703b5cf18d80,SESCO,II.1.1,Córdoba,AR-X,annual,2020,gas oil combustion consumption by to the public,1989.45348,TJ,CH4,3.9,kg/TJ,7758.868571999999,kg +a0c5bd41-e905-3f99-8bb8-703b5cf18d80,SESCO,II.1.1,Córdoba,AR-X,annual,2020,gas oil combustion consumption by to the public,1989.45348,TJ,N2O,3.9,kg/TJ,7758.868571999999,kg +e170e7f1-2de2-3dd7-8ae1-ad288ccdbeae,SESCO,II.1.1,Entre Rios,AR-E,annual,2020,gas oil combustion consumption by to the public,572.502,TJ,CO2,74100.0,kg/TJ,42422398.199999996,kg +63da435e-e5ab-353f-8e77-568292467744,SESCO,II.1.1,Entre Rios,AR-E,annual,2020,gas oil combustion consumption by to the public,572.502,TJ,CH4,3.9,kg/TJ,2232.7578,kg +63da435e-e5ab-353f-8e77-568292467744,SESCO,II.1.1,Entre Rios,AR-E,annual,2020,gas oil combustion consumption by to the public,572.502,TJ,N2O,3.9,kg/TJ,2232.7578,kg +8901e21d-fa20-329a-89b9-0740933bc8e8,SESCO,II.1.1,Formosa,AR-P,annual,2020,gas oil combustion consumption by to the public,129.20123999999998,TJ,CO2,74100.0,kg/TJ,9573811.884,kg +71e5bb3b-a959-326a-8f48-603fdce1acec,SESCO,II.1.1,Formosa,AR-P,annual,2020,gas oil combustion consumption by to the public,129.20123999999998,TJ,CH4,3.9,kg/TJ,503.88483599999995,kg +71e5bb3b-a959-326a-8f48-603fdce1acec,SESCO,II.1.1,Formosa,AR-P,annual,2020,gas oil combustion consumption by to the public,129.20123999999998,TJ,N2O,3.9,kg/TJ,503.88483599999995,kg +66927127-9e7a-3336-a7ef-d4dd7d4880d4,SESCO,II.1.1,Jujuy,AR-Y,annual,2020,gas oil combustion consumption by to the public,60.681599999999996,TJ,CO2,74100.0,kg/TJ,4496506.56,kg +bff94a2f-9ba0-3398-a526-065d7397c24e,SESCO,II.1.1,Jujuy,AR-Y,annual,2020,gas oil combustion consumption by to the public,60.681599999999996,TJ,CH4,3.9,kg/TJ,236.65823999999998,kg +bff94a2f-9ba0-3398-a526-065d7397c24e,SESCO,II.1.1,Jujuy,AR-Y,annual,2020,gas oil combustion consumption by to the public,60.681599999999996,TJ,N2O,3.9,kg/TJ,236.65823999999998,kg +78cd6485-7497-34ab-9223-821fe5330d16,SESCO,II.1.1,La Pampa,AR-L,annual,2020,gas oil combustion consumption by to the public,185.00664,TJ,CO2,74100.0,kg/TJ,13708992.024,kg +3352e5c6-1d37-317d-b0d7-f7f7ee98aeb6,SESCO,II.1.1,La Pampa,AR-L,annual,2020,gas oil combustion consumption by to the public,185.00664,TJ,CH4,3.9,kg/TJ,721.525896,kg +3352e5c6-1d37-317d-b0d7-f7f7ee98aeb6,SESCO,II.1.1,La Pampa,AR-L,annual,2020,gas oil combustion consumption by to the public,185.00664,TJ,N2O,3.9,kg/TJ,721.525896,kg +25a0630e-68ee-3304-a844-c37556cd336c,SESCO,II.1.1,La Rioja,AR-F,annual,2020,gas oil combustion consumption by to the public,105.68712,TJ,CO2,74100.0,kg/TJ,7831415.591999999,kg +9fa1dcfd-3fc3-3bb2-9b82-b4bddc8b8366,SESCO,II.1.1,La Rioja,AR-F,annual,2020,gas oil combustion consumption by to the public,105.68712,TJ,CH4,3.9,kg/TJ,412.17976799999997,kg +9fa1dcfd-3fc3-3bb2-9b82-b4bddc8b8366,SESCO,II.1.1,La Rioja,AR-F,annual,2020,gas oil combustion consumption by to the public,105.68712,TJ,N2O,3.9,kg/TJ,412.17976799999997,kg +08acfedc-90c9-35ac-9e98-6348f402efd7,SESCO,II.1.1,Mendoza,AR-M,annual,2020,gas oil combustion consumption by to the public,774.99072,TJ,CO2,74100.0,kg/TJ,57426812.352,kg +0242265a-36ad-31ec-b7ff-c73e07580ae6,SESCO,II.1.1,Mendoza,AR-M,annual,2020,gas oil combustion consumption by to the public,774.99072,TJ,CH4,3.9,kg/TJ,3022.463808,kg +0242265a-36ad-31ec-b7ff-c73e07580ae6,SESCO,II.1.1,Mendoza,AR-M,annual,2020,gas oil combustion consumption by to the public,774.99072,TJ,N2O,3.9,kg/TJ,3022.463808,kg +ec3a1c90-5779-314d-85db-7ccffeda5652,SESCO,II.1.1,Misiones,AR-N,annual,2020,gas oil combustion consumption by to the public,424.37388,TJ,CO2,74100.0,kg/TJ,31446104.507999998,kg +3dcfb7a7-93f1-3a13-96b2-8cf60be49408,SESCO,II.1.1,Misiones,AR-N,annual,2020,gas oil combustion consumption by to the public,424.37388,TJ,CH4,3.9,kg/TJ,1655.058132,kg +3dcfb7a7-93f1-3a13-96b2-8cf60be49408,SESCO,II.1.1,Misiones,AR-N,annual,2020,gas oil combustion consumption by to the public,424.37388,TJ,N2O,3.9,kg/TJ,1655.058132,kg +a103f13c-a1f2-32eb-a1e8-d9437042028d,SESCO,II.1.1,Neuquén,AR-Q,annual,2020,gas oil combustion consumption by to the public,864.06264,TJ,CO2,74100.0,kg/TJ,64027041.624,kg +9f04162e-b64a-383e-a7a4-84b7f81b6418,SESCO,II.1.1,Neuquén,AR-Q,annual,2020,gas oil combustion consumption by to the public,864.06264,TJ,CH4,3.9,kg/TJ,3369.8442959999998,kg +9f04162e-b64a-383e-a7a4-84b7f81b6418,SESCO,II.1.1,Neuquén,AR-Q,annual,2020,gas oil combustion consumption by to the public,864.06264,TJ,N2O,3.9,kg/TJ,3369.8442959999998,kg +67be8409-8836-306d-b57b-b7607b2f0458,SESCO,II.1.1,Rio Negro,AR-R,annual,2020,gas oil combustion consumption by to the public,173.77331999999998,TJ,CO2,74100.0,kg/TJ,12876603.011999998,kg +eedf473e-8d25-3d9a-9b1f-437c75292a09,SESCO,II.1.1,Rio Negro,AR-R,annual,2020,gas oil combustion consumption by to the public,173.77331999999998,TJ,CH4,3.9,kg/TJ,677.7159479999999,kg +eedf473e-8d25-3d9a-9b1f-437c75292a09,SESCO,II.1.1,Rio Negro,AR-R,annual,2020,gas oil combustion consumption by to the public,173.77331999999998,TJ,N2O,3.9,kg/TJ,677.7159479999999,kg +d0674ba3-bd14-3627-bf3c-2ae8937994b2,SESCO,II.1.1,Salta,AR-A,annual,2020,gas oil combustion consumption by to the public,157.44708,TJ,CO2,74100.0,kg/TJ,11666828.628,kg +66453d3d-b7e1-3391-b808-e4190b0bc1f7,SESCO,II.1.1,Salta,AR-A,annual,2020,gas oil combustion consumption by to the public,157.44708,TJ,CH4,3.9,kg/TJ,614.0436119999999,kg +66453d3d-b7e1-3391-b808-e4190b0bc1f7,SESCO,II.1.1,Salta,AR-A,annual,2020,gas oil combustion consumption by to the public,157.44708,TJ,N2O,3.9,kg/TJ,614.0436119999999,kg +71db6f41-a37a-39f9-abdf-d2f062b80724,SESCO,II.1.1,San Juan,AR-J,annual,2020,gas oil combustion consumption by to the public,128.91228,TJ,CO2,74100.0,kg/TJ,9552399.948,kg +e7248833-1042-3b58-a003-94e947c999fa,SESCO,II.1.1,San Juan,AR-J,annual,2020,gas oil combustion consumption by to the public,128.91228,TJ,CH4,3.9,kg/TJ,502.757892,kg +e7248833-1042-3b58-a003-94e947c999fa,SESCO,II.1.1,San Juan,AR-J,annual,2020,gas oil combustion consumption by to the public,128.91228,TJ,N2O,3.9,kg/TJ,502.757892,kg +a4592456-9644-31bd-aa1d-38692a7f5e2c,SESCO,II.1.1,San Luis,AR-D,annual,2020,gas oil combustion consumption by to the public,119.15988,TJ,CO2,74100.0,kg/TJ,8829747.108000001,kg +351cd249-6a1d-3e30-b553-c613198ca21b,SESCO,II.1.1,San Luis,AR-D,annual,2020,gas oil combustion consumption by to the public,119.15988,TJ,CH4,3.9,kg/TJ,464.723532,kg +351cd249-6a1d-3e30-b553-c613198ca21b,SESCO,II.1.1,San Luis,AR-D,annual,2020,gas oil combustion consumption by to the public,119.15988,TJ,N2O,3.9,kg/TJ,464.723532,kg +3c1fa1fa-b080-3552-b53b-37f9ff1c8ada,SESCO,II.1.1,Santa Fe,AR-S,annual,2020,gas oil combustion consumption by to the public,1774.43112,TJ,CO2,74100.0,kg/TJ,131485345.992,kg +8ec00f9e-3f5a-3c7b-95e1-e1368a73297a,SESCO,II.1.1,Santa Fe,AR-S,annual,2020,gas oil combustion consumption by to the public,1774.43112,TJ,CH4,3.9,kg/TJ,6920.281368,kg +8ec00f9e-3f5a-3c7b-95e1-e1368a73297a,SESCO,II.1.1,Santa Fe,AR-S,annual,2020,gas oil combustion consumption by to the public,1774.43112,TJ,N2O,3.9,kg/TJ,6920.281368,kg +890197f7-f8c7-378a-a7b6-5d50ca784949,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2020,gas oil combustion consumption by to the public,199.77972,TJ,CO2,74100.0,kg/TJ,14803677.252,kg +de31146d-6bd9-38e7-a265-1d1bb56d157b,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2020,gas oil combustion consumption by to the public,199.77972,TJ,CH4,3.9,kg/TJ,779.140908,kg +de31146d-6bd9-38e7-a265-1d1bb56d157b,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2020,gas oil combustion consumption by to the public,199.77972,TJ,N2O,3.9,kg/TJ,779.140908,kg +5166f210-57d9-3090-b777-42248e555589,SESCO,II.1.1,Tucuman,AR-T,annual,2020,gas oil combustion consumption by to the public,461.57748,TJ,CO2,74100.0,kg/TJ,34202891.268,kg +872d51eb-26e6-32ce-9e8d-3bb88b4674c9,SESCO,II.1.1,Tucuman,AR-T,annual,2020,gas oil combustion consumption by to the public,461.57748,TJ,CH4,3.9,kg/TJ,1800.1521719999998,kg +872d51eb-26e6-32ce-9e8d-3bb88b4674c9,SESCO,II.1.1,Tucuman,AR-T,annual,2020,gas oil combustion consumption by to the public,461.57748,TJ,N2O,3.9,kg/TJ,1800.1521719999998,kg +17c462e9-ea01-3ecc-a7df-e07564987057,SESCO,II.1.1,Buenos Aires,AR-B,annual,2020,jet kerosene combustion consumption by to the public,1.1323079999999999,TJ,CO2,71500.0,kg/TJ,80960.022,kg +f419fbcc-c7e0-34cc-a01f-0887f53858a0,SESCO,II.1.1,Buenos Aires,AR-B,annual,2020,jet kerosene combustion consumption by to the public,1.1323079999999999,TJ,CH4,0.5,kg/TJ,0.5661539999999999,kg +d61792fc-a186-3544-9920-798ca5921816,SESCO,II.1.1,Buenos Aires,AR-B,annual,2020,jet kerosene combustion consumption by to the public,1.1323079999999999,TJ,N2O,2.0,kg/TJ,2.2646159999999997,kg +297a4a2c-4f18-3fad-89f0-e39e971abf68,SESCO,II.1.1,Entre Rios,AR-E,annual,2020,jet kerosene combustion consumption by to the public,3.3340179999999995,TJ,CO2,71500.0,kg/TJ,238382.28699999995,kg +17b9169a-9c38-3839-9eff-225759002adb,SESCO,II.1.1,Entre Rios,AR-E,annual,2020,jet kerosene combustion consumption by to the public,3.3340179999999995,TJ,CH4,0.5,kg/TJ,1.6670089999999997,kg +ec7ac5ef-c1ae-3b82-99c5-03b78677f0ef,SESCO,II.1.1,Entre Rios,AR-E,annual,2020,jet kerosene combustion consumption by to the public,3.3340179999999995,TJ,N2O,2.0,kg/TJ,6.668035999999999,kg +43ce6b81-84e9-3d14-9b3d-895697be0d64,SESCO,II.1.1,Mendoza,AR-M,annual,2020,jet kerosene combustion consumption by to the public,0.157265,TJ,CO2,71500.0,kg/TJ,11244.447499999998,kg +6854e353-c525-3968-98e1-57d136212235,SESCO,II.1.1,Mendoza,AR-M,annual,2020,jet kerosene combustion consumption by to the public,0.157265,TJ,CH4,0.5,kg/TJ,0.0786325,kg +b2657b9f-dd87-360c-a6dd-8e846c102a8f,SESCO,II.1.1,Mendoza,AR-M,annual,2020,jet kerosene combustion consumption by to the public,0.157265,TJ,N2O,2.0,kg/TJ,0.31453,kg +94f76054-960d-3740-8e1c-62526446c784,SESCO,I.3.1,Buenos Aires,AR-B,annual,2020,gasoline combustion consumption by petrochemical industries,4.5629,TJ,CO2,69300.0,kg/TJ,316208.97,kg +a94bbb9b-1a96-3afa-a615-e80a5bf81148,SESCO,I.3.1,Buenos Aires,AR-B,annual,2020,gasoline combustion consumption by petrochemical industries,4.5629,TJ,CH4,33.0,kg/TJ,150.5757,kg +7695ba0b-6b3a-3b67-8450-4f6912906c8a,SESCO,I.3.1,Buenos Aires,AR-B,annual,2020,gasoline combustion consumption by petrochemical industries,4.5629,TJ,N2O,3.2,kg/TJ,14.601280000000001,kg +4d6b7cf9-640a-3ca2-b27c-c3422b79fa9a,SESCO,I.3.1,Capital Federal,AR-C,annual,2020,gasoline combustion consumption by petrochemical industries,98.6118,TJ,CO2,69300.0,kg/TJ,6833797.74,kg +c051e2a8-3b45-30b3-ac32-662a9d0c921c,SESCO,I.3.1,Capital Federal,AR-C,annual,2020,gasoline combustion consumption by petrochemical industries,98.6118,TJ,CH4,33.0,kg/TJ,3254.1894,kg +52c6e127-063f-301b-bb66-8b4035087c9c,SESCO,I.3.1,Capital Federal,AR-C,annual,2020,gasoline combustion consumption by petrochemical industries,98.6118,TJ,N2O,3.2,kg/TJ,315.55776000000003,kg +9977d788-9388-3dc3-b9ad-0ce66c34d9f8,SESCO,I.3.1,Córdoba,AR-X,annual,2020,gasoline combustion consumption by petrochemical industries,192.262,TJ,CO2,69300.0,kg/TJ,13323756.6,kg +52a5d087-3788-34dd-a2fc-97a0cccd49ba,SESCO,I.3.1,Córdoba,AR-X,annual,2020,gasoline combustion consumption by petrochemical industries,192.262,TJ,CH4,33.0,kg/TJ,6344.646,kg +99c92850-cae6-3cd1-b7b4-ffbf9158fcd8,SESCO,I.3.1,Córdoba,AR-X,annual,2020,gasoline combustion consumption by petrochemical industries,192.262,TJ,N2O,3.2,kg/TJ,615.2384000000001,kg +a6a7138f-ae3d-3d1f-b728-38fae6ccdb17,SESCO,I.3.1,Entre Rios,AR-E,annual,2020,gasoline combustion consumption by petrochemical industries,28.086199999999998,TJ,CO2,69300.0,kg/TJ,1946373.66,kg +1904d544-e6d0-3abe-8eed-96c374f9450b,SESCO,I.3.1,Entre Rios,AR-E,annual,2020,gasoline combustion consumption by petrochemical industries,28.086199999999998,TJ,CH4,33.0,kg/TJ,926.8445999999999,kg +0e603071-c9b1-3347-92f1-967d3d97ed64,SESCO,I.3.1,Entre Rios,AR-E,annual,2020,gasoline combustion consumption by petrochemical industries,28.086199999999998,TJ,N2O,3.2,kg/TJ,89.87584,kg +69a574a3-5c75-33bf-a08e-6f4913507420,SESCO,I.3.1,Misiones,AR-N,annual,2020,gasoline combustion consumption by petrochemical industries,119.83149999999999,TJ,CO2,69300.0,kg/TJ,8304322.949999999,kg +f9e78d99-e0b8-33d9-a0e4-533593a984a3,SESCO,I.3.1,Misiones,AR-N,annual,2020,gasoline combustion consumption by petrochemical industries,119.83149999999999,TJ,CH4,33.0,kg/TJ,3954.4394999999995,kg +e7ab7179-b914-3a43-b53d-11339cc79ba7,SESCO,I.3.1,Misiones,AR-N,annual,2020,gasoline combustion consumption by petrochemical industries,119.83149999999999,TJ,N2O,3.2,kg/TJ,383.4608,kg +4786eb58-44fe-36ef-a1bc-557c171366e8,SESCO,I.3.1,Neuquén,AR-Q,annual,2020,gasoline combustion consumption by petrochemical industries,13.9102,TJ,CO2,69300.0,kg/TJ,963976.86,kg +0c9cc54a-df94-3252-9b18-53023ba9160c,SESCO,I.3.1,Neuquén,AR-Q,annual,2020,gasoline combustion consumption by petrochemical industries,13.9102,TJ,CH4,33.0,kg/TJ,459.03659999999996,kg +51b4ffc8-0f2f-3646-9b33-6a7ee8ea4b9f,SESCO,I.3.1,Neuquén,AR-Q,annual,2020,gasoline combustion consumption by petrochemical industries,13.9102,TJ,N2O,3.2,kg/TJ,44.512640000000005,kg +8367c190-efcf-3ddc-b380-ba1dcf757ab2,SESCO,I.3.1,Santa Fe,AR-S,annual,2020,gasoline combustion consumption by petrochemical industries,1.1961,TJ,CO2,69300.0,kg/TJ,82889.73,kg +5f36df09-7c07-3f40-b895-16cc3953c2bb,SESCO,I.3.1,Santa Fe,AR-S,annual,2020,gasoline combustion consumption by petrochemical industries,1.1961,TJ,CH4,33.0,kg/TJ,39.4713,kg +3d6d6b67-f48e-3f77-891e-3affb316897f,SESCO,I.3.1,Santa Fe,AR-S,annual,2020,gasoline combustion consumption by petrochemical industries,1.1961,TJ,N2O,3.2,kg/TJ,3.82752,kg +8214ce23-cfa3-3193-b60f-1a97865a7143,SESCO,I.3.1,Buenos Aires,AR-B,annual,2020,gas oil combustion consumption by petrochemical industries,70.86744,TJ,CO2,74100.0,kg/TJ,5251277.3040000005,kg +f24b7909-ce39-39fe-a44c-836774823d2f,SESCO,I.3.1,Buenos Aires,AR-B,annual,2020,gas oil combustion consumption by petrochemical industries,70.86744,TJ,CH4,3.9,kg/TJ,276.383016,kg +f24b7909-ce39-39fe-a44c-836774823d2f,SESCO,I.3.1,Buenos Aires,AR-B,annual,2020,gas oil combustion consumption by petrochemical industries,70.86744,TJ,N2O,3.9,kg/TJ,276.383016,kg +973aafdf-5f8c-3fc6-a349-0c2cbbef1f0c,SESCO,I.3.1,Capital Federal,AR-C,annual,2020,gas oil combustion consumption by petrochemical industries,5.0568,TJ,CO2,74100.0,kg/TJ,374708.88,kg +f9fb3e21-74de-3b2b-a676-237b7bb48508,SESCO,I.3.1,Capital Federal,AR-C,annual,2020,gas oil combustion consumption by petrochemical industries,5.0568,TJ,CH4,3.9,kg/TJ,19.721519999999998,kg +f9fb3e21-74de-3b2b-a676-237b7bb48508,SESCO,I.3.1,Capital Federal,AR-C,annual,2020,gas oil combustion consumption by petrochemical industries,5.0568,TJ,N2O,3.9,kg/TJ,19.721519999999998,kg +a9aa0d22-9414-3300-a956-f2d1499cbffb,SESCO,I.3.1,Córdoba,AR-X,annual,2020,gas oil combustion consumption by petrochemical industries,15.78444,TJ,CO2,74100.0,kg/TJ,1169627.004,kg +3e0a506f-7be8-31ee-8715-2b86e3a12698,SESCO,I.3.1,Córdoba,AR-X,annual,2020,gas oil combustion consumption by petrochemical industries,15.78444,TJ,CH4,3.9,kg/TJ,61.559315999999995,kg +3e0a506f-7be8-31ee-8715-2b86e3a12698,SESCO,I.3.1,Córdoba,AR-X,annual,2020,gas oil combustion consumption by petrochemical industries,15.78444,TJ,N2O,3.9,kg/TJ,61.559315999999995,kg +6f783b40-754e-30ee-a0ef-2790ebfea410,SESCO,I.3.1,Entre Rios,AR-E,annual,2020,gas oil combustion consumption by petrochemical industries,10.58316,TJ,CO2,74100.0,kg/TJ,784212.156,kg +0c8d4661-1168-3931-8d8d-f6ddc4809f6a,SESCO,I.3.1,Entre Rios,AR-E,annual,2020,gas oil combustion consumption by petrochemical industries,10.58316,TJ,CH4,3.9,kg/TJ,41.274324,kg +0c8d4661-1168-3931-8d8d-f6ddc4809f6a,SESCO,I.3.1,Entre Rios,AR-E,annual,2020,gas oil combustion consumption by petrochemical industries,10.58316,TJ,N2O,3.9,kg/TJ,41.274324,kg +ddb8b773-7712-3c69-898b-e4b6c8bc177f,SESCO,I.3.1,Jujuy,AR-Y,annual,2020,gas oil combustion consumption by petrochemical industries,27.270599999999998,TJ,CO2,74100.0,kg/TJ,2020751.46,kg +45c08d73-487d-3bf3-8a50-282ab5e4215d,SESCO,I.3.1,Jujuy,AR-Y,annual,2020,gas oil combustion consumption by petrochemical industries,27.270599999999998,TJ,CH4,3.9,kg/TJ,106.35533999999998,kg +45c08d73-487d-3bf3-8a50-282ab5e4215d,SESCO,I.3.1,Jujuy,AR-Y,annual,2020,gas oil combustion consumption by petrochemical industries,27.270599999999998,TJ,N2O,3.9,kg/TJ,106.35533999999998,kg +b3636ae9-eb78-34a2-bf42-3ee615ec0ee4,SESCO,I.3.1,Mendoza,AR-M,annual,2020,gas oil combustion consumption by petrochemical industries,9.10224,TJ,CO2,74100.0,kg/TJ,674475.984,kg +1b0b14c3-d4c8-3dd9-b40c-2b946122b1e0,SESCO,I.3.1,Mendoza,AR-M,annual,2020,gas oil combustion consumption by petrochemical industries,9.10224,TJ,CH4,3.9,kg/TJ,35.498736,kg +1b0b14c3-d4c8-3dd9-b40c-2b946122b1e0,SESCO,I.3.1,Mendoza,AR-M,annual,2020,gas oil combustion consumption by petrochemical industries,9.10224,TJ,N2O,3.9,kg/TJ,35.498736,kg +501330f5-f793-3bc5-9d4b-6ef6163a524b,SESCO,I.3.1,Misiones,AR-N,annual,2020,gas oil combustion consumption by petrochemical industries,9.10224,TJ,CO2,74100.0,kg/TJ,674475.984,kg +21595c44-d583-3829-b908-ab26232b4477,SESCO,I.3.1,Misiones,AR-N,annual,2020,gas oil combustion consumption by petrochemical industries,9.10224,TJ,CH4,3.9,kg/TJ,35.498736,kg +21595c44-d583-3829-b908-ab26232b4477,SESCO,I.3.1,Misiones,AR-N,annual,2020,gas oil combustion consumption by petrochemical industries,9.10224,TJ,N2O,3.9,kg/TJ,35.498736,kg +99af1ee8-2a8c-3e9d-871c-ece4b4020a88,SESCO,I.3.1,Neuquén,AR-Q,annual,2020,gas oil combustion consumption by petrochemical industries,63.82404,TJ,CO2,74100.0,kg/TJ,4729361.364,kg +f9749ed6-8f46-3e44-a225-c1efa67418d5,SESCO,I.3.1,Neuquén,AR-Q,annual,2020,gas oil combustion consumption by petrochemical industries,63.82404,TJ,CH4,3.9,kg/TJ,248.91375599999998,kg +f9749ed6-8f46-3e44-a225-c1efa67418d5,SESCO,I.3.1,Neuquén,AR-Q,annual,2020,gas oil combustion consumption by petrochemical industries,63.82404,TJ,N2O,3.9,kg/TJ,248.91375599999998,kg +3e94a55c-1e70-3516-a50b-5c0d880688fa,SESCO,I.3.1,Salta,AR-A,annual,2020,gas oil combustion consumption by petrochemical industries,102.54468,TJ,CO2,74100.0,kg/TJ,7598560.788,kg +9f0c12e0-ed72-3655-83ff-6e8d29f14857,SESCO,I.3.1,Salta,AR-A,annual,2020,gas oil combustion consumption by petrochemical industries,102.54468,TJ,CH4,3.9,kg/TJ,399.92425199999997,kg +9f0c12e0-ed72-3655-83ff-6e8d29f14857,SESCO,I.3.1,Salta,AR-A,annual,2020,gas oil combustion consumption by petrochemical industries,102.54468,TJ,N2O,3.9,kg/TJ,399.92425199999997,kg +7ae2a0a0-a4d4-3a06-a5e8-d1e73ec81acd,SESCO,I.3.1,San Juan,AR-J,annual,2020,gas oil combustion consumption by petrochemical industries,22.35828,TJ,CO2,74100.0,kg/TJ,1656748.548,kg +66d8ff2c-de46-3124-87b2-772eccd85511,SESCO,I.3.1,San Juan,AR-J,annual,2020,gas oil combustion consumption by petrochemical industries,22.35828,TJ,CH4,3.9,kg/TJ,87.197292,kg +66d8ff2c-de46-3124-87b2-772eccd85511,SESCO,I.3.1,San Juan,AR-J,annual,2020,gas oil combustion consumption by petrochemical industries,22.35828,TJ,N2O,3.9,kg/TJ,87.197292,kg +d9b2e201-b028-34fc-9cbc-712bfec7dfd8,SESCO,I.3.1,Santa Fe,AR-S,annual,2020,gas oil combustion consumption by petrochemical industries,17.26536,TJ,CO2,74100.0,kg/TJ,1279363.176,kg +20a2bb94-6c98-349b-8a6e-6f0d1ddd2e0d,SESCO,I.3.1,Santa Fe,AR-S,annual,2020,gas oil combustion consumption by petrochemical industries,17.26536,TJ,CH4,3.9,kg/TJ,67.33490400000001,kg +20a2bb94-6c98-349b-8a6e-6f0d1ddd2e0d,SESCO,I.3.1,Santa Fe,AR-S,annual,2020,gas oil combustion consumption by petrochemical industries,17.26536,TJ,N2O,3.9,kg/TJ,67.33490400000001,kg +bcd68f11-ba3c-3f00-9822-1b06d47cf6c4,SESCO,I.3.1,Tucuman,AR-T,annual,2020,gas oil combustion consumption by petrochemical industries,109.9854,TJ,CO2,74100.0,kg/TJ,8149918.14,kg +6d4357d2-2249-34ce-b2c5-c61a9769f2f1,SESCO,I.3.1,Tucuman,AR-T,annual,2020,gas oil combustion consumption by petrochemical industries,109.9854,TJ,CH4,3.9,kg/TJ,428.94306,kg +6d4357d2-2249-34ce-b2c5-c61a9769f2f1,SESCO,I.3.1,Tucuman,AR-T,annual,2020,gas oil combustion consumption by petrochemical industries,109.9854,TJ,N2O,3.9,kg/TJ,428.94306,kg +d7d3b0f4-718d-3c6d-bc7e-5bccc8ef1924,SESCO,I.3.1,Buenos Aires,AR-B,annual,2020,gas oil combustion consumption by petrochemical industries,14.95368,TJ,CO2,74100.0,kg/TJ,1108067.688,kg +fe13393e-7c25-3a88-9fb6-4ef51d61b474,SESCO,I.3.1,Buenos Aires,AR-B,annual,2020,gas oil combustion consumption by petrochemical industries,14.95368,TJ,CH4,3.9,kg/TJ,58.319352,kg +fe13393e-7c25-3a88-9fb6-4ef51d61b474,SESCO,I.3.1,Buenos Aires,AR-B,annual,2020,gas oil combustion consumption by petrochemical industries,14.95368,TJ,N2O,3.9,kg/TJ,58.319352,kg +effc26e8-1e44-3feb-89c8-1931c98daa56,SESCO,I.3.1,Capital Federal,AR-C,annual,2020,gas oil combustion consumption by petrochemical industries,1.30032,TJ,CO2,74100.0,kg/TJ,96353.712,kg +d1cc3170-1fb3-3d62-98ae-69f2ea114da8,SESCO,I.3.1,Capital Federal,AR-C,annual,2020,gas oil combustion consumption by petrochemical industries,1.30032,TJ,CH4,3.9,kg/TJ,5.071248,kg +d1cc3170-1fb3-3d62-98ae-69f2ea114da8,SESCO,I.3.1,Capital Federal,AR-C,annual,2020,gas oil combustion consumption by petrochemical industries,1.30032,TJ,N2O,3.9,kg/TJ,5.071248,kg +edecf887-be74-3fa5-ab88-ea03933a8fa3,SESCO,I.3.1,Córdoba,AR-X,annual,2020,gas oil combustion consumption by petrochemical industries,0.65016,TJ,CO2,74100.0,kg/TJ,48176.856,kg +eb7d8d1f-3c4f-3c45-b0ee-c8ab67888fc9,SESCO,I.3.1,Córdoba,AR-X,annual,2020,gas oil combustion consumption by petrochemical industries,0.65016,TJ,CH4,3.9,kg/TJ,2.535624,kg +eb7d8d1f-3c4f-3c45-b0ee-c8ab67888fc9,SESCO,I.3.1,Córdoba,AR-X,annual,2020,gas oil combustion consumption by petrochemical industries,0.65016,TJ,N2O,3.9,kg/TJ,2.535624,kg +f6b79873-9309-3bf4-93e5-e7e19ada4b74,SESCO,I.3.1,Mendoza,AR-M,annual,2020,gas oil combustion consumption by petrochemical industries,0.21672,TJ,CO2,74100.0,kg/TJ,16058.952,kg +9489675b-be79-37fb-ac2a-c7b4d2e296dc,SESCO,I.3.1,Mendoza,AR-M,annual,2020,gas oil combustion consumption by petrochemical industries,0.21672,TJ,CH4,3.9,kg/TJ,0.845208,kg +9489675b-be79-37fb-ac2a-c7b4d2e296dc,SESCO,I.3.1,Mendoza,AR-M,annual,2020,gas oil combustion consumption by petrochemical industries,0.21672,TJ,N2O,3.9,kg/TJ,0.845208,kg +f39f5be5-9ad0-3f84-86d9-6834a2eba0c4,SESCO,I.3.1,Neuquén,AR-Q,annual,2020,gas oil combustion consumption by petrochemical industries,8.16312,TJ,CO2,74100.0,kg/TJ,604887.1919999999,kg +77b3149d-1751-38c6-9a5b-bad7d573ae71,SESCO,I.3.1,Neuquén,AR-Q,annual,2020,gas oil combustion consumption by petrochemical industries,8.16312,TJ,CH4,3.9,kg/TJ,31.836167999999997,kg +77b3149d-1751-38c6-9a5b-bad7d573ae71,SESCO,I.3.1,Neuquén,AR-Q,annual,2020,gas oil combustion consumption by petrochemical industries,8.16312,TJ,N2O,3.9,kg/TJ,31.836167999999997,kg +f71bb661-69dd-358d-9725-7b9f3c3e02aa,SESCO,I.3.1,San Luis,AR-D,annual,2020,gas oil combustion consumption by petrochemical industries,1.33644,TJ,CO2,74100.0,kg/TJ,99030.20400000001,kg +5bcb3c7e-9e39-38eb-956b-e34a10235853,SESCO,I.3.1,San Luis,AR-D,annual,2020,gas oil combustion consumption by petrochemical industries,1.33644,TJ,CH4,3.9,kg/TJ,5.212116,kg +5bcb3c7e-9e39-38eb-956b-e34a10235853,SESCO,I.3.1,San Luis,AR-D,annual,2020,gas oil combustion consumption by petrochemical industries,1.33644,TJ,N2O,3.9,kg/TJ,5.212116,kg +73d1b5e5-c1d2-3689-8b82-2b15577453ab,SESCO,I.3.1,Santiago del Estero,AR-G,annual,2020,gas oil combustion consumption by petrochemical industries,6.321,TJ,CO2,74100.0,kg/TJ,468386.1,kg +0725473e-85bb-3ee1-8f88-62eb6802feb4,SESCO,I.3.1,Santiago del Estero,AR-G,annual,2020,gas oil combustion consumption by petrochemical industries,6.321,TJ,CH4,3.9,kg/TJ,24.651899999999998,kg +0725473e-85bb-3ee1-8f88-62eb6802feb4,SESCO,I.3.1,Santiago del Estero,AR-G,annual,2020,gas oil combustion consumption by petrochemical industries,6.321,TJ,N2O,3.9,kg/TJ,24.651899999999998,kg +be0402a7-03e7-3c24-8af4-d8e896d52740,SESCO,I.3.1,Tucuman,AR-T,annual,2020,gas oil combustion consumption by petrochemical industries,1.22808,TJ,CO2,74100.0,kg/TJ,91000.728,kg +c5b79ac7-864d-3607-bba4-753b51ca6039,SESCO,I.3.1,Tucuman,AR-T,annual,2020,gas oil combustion consumption by petrochemical industries,1.22808,TJ,CH4,3.9,kg/TJ,4.789512,kg +c5b79ac7-864d-3607-bba4-753b51ca6039,SESCO,I.3.1,Tucuman,AR-T,annual,2020,gas oil combustion consumption by petrochemical industries,1.22808,TJ,N2O,3.9,kg/TJ,4.789512,kg +0c89442c-4b2a-3872-81e2-d425ae55d24c,SESCO,II.2.1,Buenos Aires,AR-B,annual,2020,gasoline combustion consumption by railway transport,1.1518,TJ,CO2,69300.0,kg/TJ,79819.73999999999,kg +babe8889-c68c-3e81-9faa-04cf042fff33,SESCO,II.2.1,Buenos Aires,AR-B,annual,2020,gasoline combustion consumption by railway transport,1.1518,TJ,CH4,33.0,kg/TJ,38.0094,kg +eb503a98-0463-37b1-b67a-6fa9ba8a5e52,SESCO,II.2.1,Buenos Aires,AR-B,annual,2020,gasoline combustion consumption by railway transport,1.1518,TJ,N2O,3.2,kg/TJ,3.68576,kg +9f97c164-9f66-3b0c-a955-6e7ae54a048c,SESCO,II.2.1,Córdoba,AR-X,annual,2020,gasoline combustion consumption by railway transport,14.1317,TJ,CO2,69300.0,kg/TJ,979326.81,kg +1f74ea14-e4a2-3d73-b101-33a26cb9e361,SESCO,II.2.1,Córdoba,AR-X,annual,2020,gasoline combustion consumption by railway transport,14.1317,TJ,CH4,33.0,kg/TJ,466.34610000000004,kg +35106991-4907-373f-b5fc-2be78bc68ef4,SESCO,II.2.1,Córdoba,AR-X,annual,2020,gasoline combustion consumption by railway transport,14.1317,TJ,N2O,3.2,kg/TJ,45.22144,kg +b1fa1c56-bde4-39b8-ac3e-da8a16ea655c,SESCO,II.2.1,Buenos Aires,AR-B,annual,2020,gas oil combustion consumption by railway transport,188.9076,TJ,CO2,74100.0,kg/TJ,13998053.16,kg +1336cb9a-9226-3970-9c3e-8dd1216db45e,SESCO,II.2.1,Buenos Aires,AR-B,annual,2020,gas oil combustion consumption by railway transport,188.9076,TJ,CH4,3.9,kg/TJ,736.73964,kg +1336cb9a-9226-3970-9c3e-8dd1216db45e,SESCO,II.2.1,Buenos Aires,AR-B,annual,2020,gas oil combustion consumption by railway transport,188.9076,TJ,N2O,3.9,kg/TJ,736.73964,kg +02f87fde-ce24-38f5-966e-c6308862ee2d,SESCO,II.2.1,Misiones,AR-N,annual,2020,gas oil combustion consumption by railway transport,1.30032,TJ,CO2,74100.0,kg/TJ,96353.712,kg +93d63a17-5dee-3cfd-ac8d-47b9fff06a39,SESCO,II.2.1,Misiones,AR-N,annual,2020,gas oil combustion consumption by railway transport,1.30032,TJ,CH4,3.9,kg/TJ,5.071248,kg +93d63a17-5dee-3cfd-ac8d-47b9fff06a39,SESCO,II.2.1,Misiones,AR-N,annual,2020,gas oil combustion consumption by railway transport,1.30032,TJ,N2O,3.9,kg/TJ,5.071248,kg +8e707d1c-a392-3064-b75b-e5c4bad04d45,SESCO,II.1.1,Buenos Aires,AR-B,annual,2020,gasoline combustion consumption by freight transport,7.088,TJ,CO2,69300.0,kg/TJ,491198.4,kg +83109a72-f15b-37e8-841c-c1a25c10a1bb,SESCO,II.1.1,Buenos Aires,AR-B,annual,2020,gasoline combustion consumption by freight transport,7.088,TJ,CH4,33.0,kg/TJ,233.904,kg +d92943ab-817a-38f9-8555-6f3785e77711,SESCO,II.1.1,Buenos Aires,AR-B,annual,2020,gasoline combustion consumption by freight transport,7.088,TJ,N2O,3.2,kg/TJ,22.681600000000003,kg +cdcee7ca-84a6-345b-8467-fdf5c8484ec0,SESCO,II.1.1,Santa Fe,AR-S,annual,2020,gasoline combustion consumption by freight transport,4.7401,TJ,CO2,69300.0,kg/TJ,328488.93,kg +df8985f7-9c79-37fb-beca-468f3ef5dbfd,SESCO,II.1.1,Santa Fe,AR-S,annual,2020,gasoline combustion consumption by freight transport,4.7401,TJ,CH4,33.0,kg/TJ,156.4233,kg +14881176-4a2b-3181-8d40-172a2bc2b3b2,SESCO,II.1.1,Santa Fe,AR-S,annual,2020,gasoline combustion consumption by freight transport,4.7401,TJ,N2O,3.2,kg/TJ,15.168320000000001,kg +f9a06005-db9d-349a-9773-f25f900c4f31,SESCO,II.1.1,Buenos Aires,AR-B,annual,2020,gas oil combustion consumption by freight transport,75.27408,TJ,CO2,74100.0,kg/TJ,5577809.328,kg +bc849ce7-7356-3b79-a4db-33fd09df11d7,SESCO,II.1.1,Buenos Aires,AR-B,annual,2020,gas oil combustion consumption by freight transport,75.27408,TJ,CH4,3.9,kg/TJ,293.568912,kg +bc849ce7-7356-3b79-a4db-33fd09df11d7,SESCO,II.1.1,Buenos Aires,AR-B,annual,2020,gas oil combustion consumption by freight transport,75.27408,TJ,N2O,3.9,kg/TJ,293.568912,kg +647b1478-4fbd-3e8a-9dbc-65941134796b,SESCO,II.1.1,Capital Federal,AR-C,annual,2020,gas oil combustion consumption by freight transport,37.2036,TJ,CO2,74100.0,kg/TJ,2756786.7600000002,kg +1432df7c-8cb8-3269-ae30-044bc2c40e7f,SESCO,II.1.1,Capital Federal,AR-C,annual,2020,gas oil combustion consumption by freight transport,37.2036,TJ,CH4,3.9,kg/TJ,145.09404,kg +1432df7c-8cb8-3269-ae30-044bc2c40e7f,SESCO,II.1.1,Capital Federal,AR-C,annual,2020,gas oil combustion consumption by freight transport,37.2036,TJ,N2O,3.9,kg/TJ,145.09404,kg +db509f9d-8087-33f3-b3fb-c9a04dc75291,SESCO,II.1.1,Córdoba,AR-X,annual,2020,gas oil combustion consumption by freight transport,26.909399999999998,TJ,CO2,74100.0,kg/TJ,1993986.5399999998,kg +a0443a2c-6883-3e47-b42e-56dbc1c5b3ae,SESCO,II.1.1,Córdoba,AR-X,annual,2020,gas oil combustion consumption by freight transport,26.909399999999998,TJ,CH4,3.9,kg/TJ,104.94666,kg +a0443a2c-6883-3e47-b42e-56dbc1c5b3ae,SESCO,II.1.1,Córdoba,AR-X,annual,2020,gas oil combustion consumption by freight transport,26.909399999999998,TJ,N2O,3.9,kg/TJ,104.94666,kg +933c5de6-ec37-375f-997c-ab0e9f1975c0,SESCO,II.1.1,Capital Federal,AR-C,annual,2020,gas oil combustion consumption by freight transport,2.4200399999999997,TJ,CO2,74100.0,kg/TJ,179324.96399999998,kg +638c8236-87da-37f8-b086-09308e5df304,SESCO,II.1.1,Capital Federal,AR-C,annual,2020,gas oil combustion consumption by freight transport,2.4200399999999997,TJ,CH4,3.9,kg/TJ,9.438156,kg +638c8236-87da-37f8-b086-09308e5df304,SESCO,II.1.1,Capital Federal,AR-C,annual,2020,gas oil combustion consumption by freight transport,2.4200399999999997,TJ,N2O,3.9,kg/TJ,9.438156,kg +3dbb8bb0-e53e-372a-ae36-d05239d8ee92,SESCO,II.1.1,Córdoba,AR-X,annual,2020,gas oil combustion consumption by freight transport,0.93912,TJ,CO2,74100.0,kg/TJ,69588.792,kg +86c6cc29-b47e-3cb2-9d98-06d92eec75fa,SESCO,II.1.1,Córdoba,AR-X,annual,2020,gas oil combustion consumption by freight transport,0.93912,TJ,CH4,3.9,kg/TJ,3.662568,kg +86c6cc29-b47e-3cb2-9d98-06d92eec75fa,SESCO,II.1.1,Córdoba,AR-X,annual,2020,gas oil combustion consumption by freight transport,0.93912,TJ,N2O,3.9,kg/TJ,3.662568,kg +62afde42-3063-301e-85f1-4065eb644840,SESCO,II.1.1,Buenos Aires,AR-B,annual,2020,gasoline combustion consumption by public passenger transport,1.1961,TJ,CO2,69300.0,kg/TJ,82889.73,kg +786ebfd4-c51f-35df-9c5b-e8a871a86484,SESCO,II.1.1,Buenos Aires,AR-B,annual,2020,gasoline combustion consumption by public passenger transport,1.1961,TJ,CH4,33.0,kg/TJ,39.4713,kg +19a14e4d-1496-3233-be72-a0d23f54fa09,SESCO,II.1.1,Buenos Aires,AR-B,annual,2020,gasoline combustion consumption by public passenger transport,1.1961,TJ,N2O,3.2,kg/TJ,3.82752,kg +6ef2b1e3-1ff1-3092-8d33-613b9d44ccd9,SESCO,II.1.1,Buenos Aires,AR-B,annual,2020,gas oil combustion consumption by public passenger transport,3339.6552,TJ,CO2,74100.0,kg/TJ,247468450.32000002,kg +434b4c43-4ca8-37dd-b994-73fc05ee8fb3,SESCO,II.1.1,Buenos Aires,AR-B,annual,2020,gas oil combustion consumption by public passenger transport,3339.6552,TJ,CH4,3.9,kg/TJ,13024.65528,kg +434b4c43-4ca8-37dd-b994-73fc05ee8fb3,SESCO,II.1.1,Buenos Aires,AR-B,annual,2020,gas oil combustion consumption by public passenger transport,3339.6552,TJ,N2O,3.9,kg/TJ,13024.65528,kg +c1cb8f59-ead4-3cfa-891a-7f74226ff227,SESCO,II.1.1,Capital Federal,AR-C,annual,2020,gas oil combustion consumption by public passenger transport,268.47996,TJ,CO2,74100.0,kg/TJ,19894365.036000002,kg +76dfb461-a691-3dc2-9052-347cd9d3e985,SESCO,II.1.1,Capital Federal,AR-C,annual,2020,gas oil combustion consumption by public passenger transport,268.47996,TJ,CH4,3.9,kg/TJ,1047.071844,kg +76dfb461-a691-3dc2-9052-347cd9d3e985,SESCO,II.1.1,Capital Federal,AR-C,annual,2020,gas oil combustion consumption by public passenger transport,268.47996,TJ,N2O,3.9,kg/TJ,1047.071844,kg +8cef939a-dea9-3e05-a406-2baeb2f02176,SESCO,II.1.1,Buenos Aires,AR-B,annual,2020,gas oil combustion consumption by public passenger transport,1078.50708,TJ,CO2,74100.0,kg/TJ,79917374.628,kg +108a1459-f034-3acd-aea6-7824209ff64e,SESCO,II.1.1,Buenos Aires,AR-B,annual,2020,gas oil combustion consumption by public passenger transport,1078.50708,TJ,CH4,3.9,kg/TJ,4206.177612,kg +108a1459-f034-3acd-aea6-7824209ff64e,SESCO,II.1.1,Buenos Aires,AR-B,annual,2020,gas oil combustion consumption by public passenger transport,1078.50708,TJ,N2O,3.9,kg/TJ,4206.177612,kg +509e850f-160d-3629-abbd-ecf81b50e018,SESCO,II.1.1,Capital Federal,AR-C,annual,2020,gas oil combustion consumption by public passenger transport,70.18116,TJ,CO2,74100.0,kg/TJ,5200423.956,kg +f6f3897e-833c-3f3a-9694-2d3c3dec5860,SESCO,II.1.1,Capital Federal,AR-C,annual,2020,gas oil combustion consumption by public passenger transport,70.18116,TJ,CH4,3.9,kg/TJ,273.706524,kg +f6f3897e-833c-3f3a-9694-2d3c3dec5860,SESCO,II.1.1,Capital Federal,AR-C,annual,2020,gas oil combustion consumption by public passenger transport,70.18116,TJ,N2O,3.9,kg/TJ,273.706524,kg +d3e3858d-c1b4-33dd-9375-21d2e90136b2,SESCO,II.1.1,Corrientes,AR-W,annual,2020,gas oil combustion consumption by public passenger transport,101.89452,TJ,CO2,74100.0,kg/TJ,7550383.932,kg +93309b64-66c8-3a3c-a4a3-61c78c03b23b,SESCO,II.1.1,Corrientes,AR-W,annual,2020,gas oil combustion consumption by public passenger transport,101.89452,TJ,CH4,3.9,kg/TJ,397.388628,kg +93309b64-66c8-3a3c-a4a3-61c78c03b23b,SESCO,II.1.1,Corrientes,AR-W,annual,2020,gas oil combustion consumption by public passenger transport,101.89452,TJ,N2O,3.9,kg/TJ,397.388628,kg +38f7cfa7-a199-3db9-ba70-b35cae833510,SESCO,II.5.1,Buenos Aires,AR-B,annual,2020,gas oil combustion consumption by agriculture machines,2871.37500384,TJ,CO2,74100.0,kg/TJ,212768887.784544,kg +35adc964-5669-342c-a3e8-4fe7b5646350,SESCO,II.5.1,Buenos Aires,AR-B,annual,2020,gas oil combustion consumption by agriculture machines,2871.37500384,TJ,CH4,3.9,kg/TJ,11198.362514976,kg +35adc964-5669-342c-a3e8-4fe7b5646350,SESCO,II.5.1,Buenos Aires,AR-B,annual,2020,gas oil combustion consumption by agriculture machines,2871.37500384,TJ,N2O,3.9,kg/TJ,11198.362514976,kg +8ebf6c4b-2059-3e3d-9136-91f3cdd704d4,SESCO,II.5.1,Capital Federal,AR-C,annual,2020,gas oil combustion consumption by agriculture machines,462.5476632,TJ,CO2,74100.0,kg/TJ,34274781.84312,kg +2d38d78b-0e9d-3d27-8860-6dc4edd38a12,SESCO,II.5.1,Capital Federal,AR-C,annual,2020,gas oil combustion consumption by agriculture machines,462.5476632,TJ,CH4,3.9,kg/TJ,1803.93588648,kg +2d38d78b-0e9d-3d27-8860-6dc4edd38a12,SESCO,II.5.1,Capital Federal,AR-C,annual,2020,gas oil combustion consumption by agriculture machines,462.5476632,TJ,N2O,3.9,kg/TJ,1803.93588648,kg +9fd6daad-bf4e-319d-b1f1-9ebf4097d3cf,SESCO,II.5.1,Chaco,AR-H,annual,2020,gas oil combustion consumption by agriculture machines,14.13939072,TJ,CO2,74100.0,kg/TJ,1047728.852352,kg +bab9e774-f34e-3a35-bca0-658182ec00e0,SESCO,II.5.1,Chaco,AR-H,annual,2020,gas oil combustion consumption by agriculture machines,14.13939072,TJ,CH4,3.9,kg/TJ,55.143623808,kg +bab9e774-f34e-3a35-bca0-658182ec00e0,SESCO,II.5.1,Chaco,AR-H,annual,2020,gas oil combustion consumption by agriculture machines,14.13939072,TJ,N2O,3.9,kg/TJ,55.143623808,kg +5786b3bd-39eb-3c87-ac2d-f6fff704db32,SESCO,II.5.1,Corrientes,AR-W,annual,2020,gas oil combustion consumption by agriculture machines,8.96530908,TJ,CO2,74100.0,kg/TJ,664329.402828,kg +f538cf75-46bc-3272-b17f-71ccb6e08c3e,SESCO,II.5.1,Corrientes,AR-W,annual,2020,gas oil combustion consumption by agriculture machines,8.96530908,TJ,CH4,3.9,kg/TJ,34.964705412,kg +f538cf75-46bc-3272-b17f-71ccb6e08c3e,SESCO,II.5.1,Corrientes,AR-W,annual,2020,gas oil combustion consumption by agriculture machines,8.96530908,TJ,N2O,3.9,kg/TJ,34.964705412,kg +a43a7114-c3bc-3146-8787-de08b87cdbed,SESCO,II.5.1,Córdoba,AR-X,annual,2020,gas oil combustion consumption by agriculture machines,1140.8600246400001,TJ,CO2,74100.0,kg/TJ,84537727.825824,kg +ccc0c955-040a-387e-a351-7a13fd94ae6d,SESCO,II.5.1,Córdoba,AR-X,annual,2020,gas oil combustion consumption by agriculture machines,1140.8600246400001,TJ,CH4,3.9,kg/TJ,4449.354096096,kg +ccc0c955-040a-387e-a351-7a13fd94ae6d,SESCO,II.5.1,Córdoba,AR-X,annual,2020,gas oil combustion consumption by agriculture machines,1140.8600246400001,TJ,N2O,3.9,kg/TJ,4449.354096096,kg +a1eb88e4-cd42-3d80-bad5-01449d89f449,SESCO,II.5.1,Entre Rios,AR-E,annual,2020,gas oil combustion consumption by agriculture machines,664.05478608,TJ,CO2,74100.0,kg/TJ,49206459.648528,kg +6933fd66-192b-3fbd-b143-6d01aa5ff234,SESCO,II.5.1,Entre Rios,AR-E,annual,2020,gas oil combustion consumption by agriculture machines,664.05478608,TJ,CH4,3.9,kg/TJ,2589.813665712,kg +6933fd66-192b-3fbd-b143-6d01aa5ff234,SESCO,II.5.1,Entre Rios,AR-E,annual,2020,gas oil combustion consumption by agriculture machines,664.05478608,TJ,N2O,3.9,kg/TJ,2589.813665712,kg +88b21c9d-d9f2-398f-b743-bc087a88c1ef,SESCO,II.5.1,Jujuy,AR-Y,annual,2020,gas oil combustion consumption by agriculture machines,22.556109239999998,TJ,CO2,74100.0,kg/TJ,1671407.6946839998,kg +79dcf9ab-04e3-393f-878d-e513e339c443,SESCO,II.5.1,Jujuy,AR-Y,annual,2020,gas oil combustion consumption by agriculture machines,22.556109239999998,TJ,CH4,3.9,kg/TJ,87.968826036,kg +79dcf9ab-04e3-393f-878d-e513e339c443,SESCO,II.5.1,Jujuy,AR-Y,annual,2020,gas oil combustion consumption by agriculture machines,22.556109239999998,TJ,N2O,3.9,kg/TJ,87.968826036,kg +7e58628a-9a75-3d3c-9d7e-1d89e585aa86,SESCO,II.5.1,La Pampa,AR-L,annual,2020,gas oil combustion consumption by agriculture machines,187.75064028,TJ,CO2,74100.0,kg/TJ,13912322.444748,kg +31a330c5-c3e6-3c49-9ece-8997b67ddf29,SESCO,II.5.1,La Pampa,AR-L,annual,2020,gas oil combustion consumption by agriculture machines,187.75064028,TJ,CH4,3.9,kg/TJ,732.227497092,kg +31a330c5-c3e6-3c49-9ece-8997b67ddf29,SESCO,II.5.1,La Pampa,AR-L,annual,2020,gas oil combustion consumption by agriculture machines,187.75064028,TJ,N2O,3.9,kg/TJ,732.227497092,kg +3cf9bab5-7678-397e-bc5b-34354b4846ef,SESCO,II.5.1,Mendoza,AR-M,annual,2020,gas oil combustion consumption by agriculture machines,1.1418254399999999,TJ,CO2,74100.0,kg/TJ,84609.26510399999,kg +90507691-9a84-37fb-ae14-b13fdf01742d,SESCO,II.5.1,Mendoza,AR-M,annual,2020,gas oil combustion consumption by agriculture machines,1.1418254399999999,TJ,CH4,3.9,kg/TJ,4.453119215999999,kg +90507691-9a84-37fb-ae14-b13fdf01742d,SESCO,II.5.1,Mendoza,AR-M,annual,2020,gas oil combustion consumption by agriculture machines,1.1418254399999999,TJ,N2O,3.9,kg/TJ,4.453119215999999,kg +324c36c7-d9b6-328d-8d01-4f9e61bb5364,SESCO,II.5.1,Neuquén,AR-Q,annual,2020,gas oil combustion consumption by agriculture machines,68.09808348,TJ,CO2,74100.0,kg/TJ,5046067.985868,kg +a7af5720-72d9-3f77-8056-e580ceec0b52,SESCO,II.5.1,Neuquén,AR-Q,annual,2020,gas oil combustion consumption by agriculture machines,68.09808348,TJ,CH4,3.9,kg/TJ,265.582525572,kg +a7af5720-72d9-3f77-8056-e580ceec0b52,SESCO,II.5.1,Neuquén,AR-Q,annual,2020,gas oil combustion consumption by agriculture machines,68.09808348,TJ,N2O,3.9,kg/TJ,265.582525572,kg +34c1d195-7eda-3368-a4af-a7631f6995e3,SESCO,II.5.1,Rio Negro,AR-R,annual,2020,gas oil combustion consumption by agriculture machines,124.15639572,TJ,CO2,74100.0,kg/TJ,9199988.922852,kg +45da6613-fb02-3efb-9db3-469703ce19c5,SESCO,II.5.1,Rio Negro,AR-R,annual,2020,gas oil combustion consumption by agriculture machines,124.15639572,TJ,CH4,3.9,kg/TJ,484.209943308,kg +45da6613-fb02-3efb-9db3-469703ce19c5,SESCO,II.5.1,Rio Negro,AR-R,annual,2020,gas oil combustion consumption by agriculture machines,124.15639572,TJ,N2O,3.9,kg/TJ,484.209943308,kg +cbdafa0d-74f4-37ba-b77d-eca6906b4106,SESCO,II.5.1,San Juan,AR-J,annual,2020,gas oil combustion consumption by agriculture machines,1.28489676,TJ,CO2,74100.0,kg/TJ,95210.849916,kg +6c029760-2766-3d51-817b-1b7a4fe31011,SESCO,II.5.1,San Juan,AR-J,annual,2020,gas oil combustion consumption by agriculture machines,1.28489676,TJ,CH4,3.9,kg/TJ,5.011097364,kg +6c029760-2766-3d51-817b-1b7a4fe31011,SESCO,II.5.1,San Juan,AR-J,annual,2020,gas oil combustion consumption by agriculture machines,1.28489676,TJ,N2O,3.9,kg/TJ,5.011097364,kg +cba53c7a-2555-3cea-81b6-2b2b9a4a0384,SESCO,II.5.1,San Luis,AR-D,annual,2020,gas oil combustion consumption by agriculture machines,25.74070128,TJ,CO2,74100.0,kg/TJ,1907385.964848,kg +dea82674-5752-3a27-83a2-a7953a46609e,SESCO,II.5.1,San Luis,AR-D,annual,2020,gas oil combustion consumption by agriculture machines,25.74070128,TJ,CH4,3.9,kg/TJ,100.388734992,kg +dea82674-5752-3a27-83a2-a7953a46609e,SESCO,II.5.1,San Luis,AR-D,annual,2020,gas oil combustion consumption by agriculture machines,25.74070128,TJ,N2O,3.9,kg/TJ,100.388734992,kg +1354ab28-f10c-39e7-b041-8f6a922ea40b,SESCO,II.5.1,Santa Fe,AR-S,annual,2020,gas oil combustion consumption by agriculture machines,2519.18871372,TJ,CO2,74100.0,kg/TJ,186671883.686652,kg +eae57c71-14f7-3f33-949e-2462a5f618ba,SESCO,II.5.1,Santa Fe,AR-S,annual,2020,gas oil combustion consumption by agriculture machines,2519.18871372,TJ,CH4,3.9,kg/TJ,9824.835983508001,kg +eae57c71-14f7-3f33-949e-2462a5f618ba,SESCO,II.5.1,Santa Fe,AR-S,annual,2020,gas oil combustion consumption by agriculture machines,2519.18871372,TJ,N2O,3.9,kg/TJ,9824.835983508001,kg +0306b232-2751-3c79-8972-09b2f65844e8,SESCO,II.5.1,Santiago del Estero,AR-G,annual,2020,gas oil combustion consumption by agriculture machines,353.4291432,TJ,CO2,74100.0,kg/TJ,26189099.51112,kg +03275f94-0b5d-3fc3-8c61-87f86a8b809d,SESCO,II.5.1,Santiago del Estero,AR-G,annual,2020,gas oil combustion consumption by agriculture machines,353.4291432,TJ,CH4,3.9,kg/TJ,1378.37365848,kg +03275f94-0b5d-3fc3-8c61-87f86a8b809d,SESCO,II.5.1,Santiago del Estero,AR-G,annual,2020,gas oil combustion consumption by agriculture machines,353.4291432,TJ,N2O,3.9,kg/TJ,1378.37365848,kg +387e22fc-bd43-381a-9ca4-4e3eb035833f,SESCO,II.5.1,Tucuman,AR-T,annual,2020,gas oil combustion consumption by agriculture machines,94.76909147999999,TJ,CO2,74100.0,kg/TJ,7022389.678667999,kg +5c05f25e-dcda-3a95-8f6c-f6f06be7d7bd,SESCO,II.5.1,Tucuman,AR-T,annual,2020,gas oil combustion consumption by agriculture machines,94.76909147999999,TJ,CH4,3.9,kg/TJ,369.59945677199994,kg +5c05f25e-dcda-3a95-8f6c-f6f06be7d7bd,SESCO,II.5.1,Tucuman,AR-T,annual,2020,gas oil combustion consumption by agriculture machines,94.76909147999999,TJ,N2O,3.9,kg/TJ,369.59945677199994,kg +703bb5fd-c012-372c-9d9e-8e0abfda950f,SESCO,II.5.1,Buenos Aires,AR-B,annual,2020,gas oil combustion consumption by agriculture machines,250.87879235999998,TJ,CO2,74100.0,kg/TJ,18590118.513876,kg +335771a2-27ac-3d8e-b7ea-1ae824567291,SESCO,II.5.1,Buenos Aires,AR-B,annual,2020,gas oil combustion consumption by agriculture machines,250.87879235999998,TJ,CH4,3.9,kg/TJ,978.4272902039999,kg +335771a2-27ac-3d8e-b7ea-1ae824567291,SESCO,II.5.1,Buenos Aires,AR-B,annual,2020,gas oil combustion consumption by agriculture machines,250.87879235999998,TJ,N2O,3.9,kg/TJ,978.4272902039999,kg +78d6f2ee-02f3-32be-9959-d35444ba7380,SESCO,II.5.1,Capital Federal,AR-C,annual,2020,gas oil combustion consumption by agriculture machines,45.21400464,TJ,CO2,74100.0,kg/TJ,3350357.743824,kg +6f209643-3e55-3874-b58e-95fe9e4b51d9,SESCO,II.5.1,Capital Federal,AR-C,annual,2020,gas oil combustion consumption by agriculture machines,45.21400464,TJ,CH4,3.9,kg/TJ,176.33461809599999,kg +6f209643-3e55-3874-b58e-95fe9e4b51d9,SESCO,II.5.1,Capital Federal,AR-C,annual,2020,gas oil combustion consumption by agriculture machines,45.21400464,TJ,N2O,3.9,kg/TJ,176.33461809599999,kg +fa8350a2-cd7e-3956-8420-ed9ab7fbc108,SESCO,II.5.1,Chaco,AR-H,annual,2020,gas oil combustion consumption by agriculture machines,3.9029465999999995,TJ,CO2,74100.0,kg/TJ,289208.34306,kg +291e1e24-9df6-343a-acb3-9f57dafd339b,SESCO,II.5.1,Chaco,AR-H,annual,2020,gas oil combustion consumption by agriculture machines,3.9029465999999995,TJ,CH4,3.9,kg/TJ,15.221491739999998,kg +291e1e24-9df6-343a-acb3-9f57dafd339b,SESCO,II.5.1,Chaco,AR-H,annual,2020,gas oil combustion consumption by agriculture machines,3.9029465999999995,TJ,N2O,3.9,kg/TJ,15.221491739999998,kg +7934a7b0-dce8-332d-ae97-ae3d4e554fcf,SESCO,II.5.1,Corrientes,AR-W,annual,2020,gas oil combustion consumption by agriculture machines,0.17948028000000002,TJ,CO2,74100.0,kg/TJ,13299.488748000002,kg +113a0f65-2149-3058-af23-0d9bc34a39c9,SESCO,II.5.1,Corrientes,AR-W,annual,2020,gas oil combustion consumption by agriculture machines,0.17948028000000002,TJ,CH4,3.9,kg/TJ,0.699973092,kg +113a0f65-2149-3058-af23-0d9bc34a39c9,SESCO,II.5.1,Corrientes,AR-W,annual,2020,gas oil combustion consumption by agriculture machines,0.17948028000000002,TJ,N2O,3.9,kg/TJ,0.699973092,kg +eea2451a-f315-3f26-86f0-ab8950da21f5,SESCO,II.5.1,Córdoba,AR-X,annual,2020,gas oil combustion consumption by agriculture machines,89.39010108000001,TJ,CO2,74100.0,kg/TJ,6623806.490028,kg +3dd10052-9618-3556-a52b-cd2933a147d3,SESCO,II.5.1,Córdoba,AR-X,annual,2020,gas oil combustion consumption by agriculture machines,89.39010108000001,TJ,CH4,3.9,kg/TJ,348.62139421200004,kg +3dd10052-9618-3556-a52b-cd2933a147d3,SESCO,II.5.1,Córdoba,AR-X,annual,2020,gas oil combustion consumption by agriculture machines,89.39010108000001,TJ,N2O,3.9,kg/TJ,348.62139421200004,kg +1a859b8e-025d-3b1c-9228-63eb6867f10c,SESCO,II.5.1,Entre Rios,AR-E,annual,2020,gas oil combustion consumption by agriculture machines,114.33923256,TJ,CO2,74100.0,kg/TJ,8472537.132696,kg +be91846c-eb13-3e1e-93af-0e1fcaf83a3b,SESCO,II.5.1,Entre Rios,AR-E,annual,2020,gas oil combustion consumption by agriculture machines,114.33923256,TJ,CH4,3.9,kg/TJ,445.923006984,kg +be91846c-eb13-3e1e-93af-0e1fcaf83a3b,SESCO,II.5.1,Entre Rios,AR-E,annual,2020,gas oil combustion consumption by agriculture machines,114.33923256,TJ,N2O,3.9,kg/TJ,445.923006984,kg +3b73bd65-12c6-316c-8617-e4043ddaabeb,SESCO,II.5.1,Jujuy,AR-Y,annual,2020,gas oil combustion consumption by agriculture machines,49.900574639999995,TJ,CO2,74100.0,kg/TJ,3697632.580824,kg +ee244a97-0327-3ffb-b2f4-8ca0ea765cd4,SESCO,II.5.1,Jujuy,AR-Y,annual,2020,gas oil combustion consumption by agriculture machines,49.900574639999995,TJ,CH4,3.9,kg/TJ,194.61224109599996,kg +ee244a97-0327-3ffb-b2f4-8ca0ea765cd4,SESCO,II.5.1,Jujuy,AR-Y,annual,2020,gas oil combustion consumption by agriculture machines,49.900574639999995,TJ,N2O,3.9,kg/TJ,194.61224109599996,kg +c068fa16-075c-350d-943d-848485c30da9,SESCO,II.5.1,La Pampa,AR-L,annual,2020,gas oil combustion consumption by agriculture machines,10.93800288,TJ,CO2,74100.0,kg/TJ,810506.0134080001,kg +17e6aef7-d302-3cb2-86d3-51543561fe50,SESCO,II.5.1,La Pampa,AR-L,annual,2020,gas oil combustion consumption by agriculture machines,10.93800288,TJ,CH4,3.9,kg/TJ,42.658211232,kg +17e6aef7-d302-3cb2-86d3-51543561fe50,SESCO,II.5.1,La Pampa,AR-L,annual,2020,gas oil combustion consumption by agriculture machines,10.93800288,TJ,N2O,3.9,kg/TJ,42.658211232,kg +cf5424de-5a45-31ee-8acf-bd845a5a47b8,SESCO,II.5.1,Mendoza,AR-M,annual,2020,gas oil combustion consumption by agriculture machines,0.25291224,TJ,CO2,74100.0,kg/TJ,18740.796984,kg +e62cdb16-eb87-317c-972f-2e164edf17e5,SESCO,II.5.1,Mendoza,AR-M,annual,2020,gas oil combustion consumption by agriculture machines,0.25291224,TJ,CH4,3.9,kg/TJ,0.986357736,kg +e62cdb16-eb87-317c-972f-2e164edf17e5,SESCO,II.5.1,Mendoza,AR-M,annual,2020,gas oil combustion consumption by agriculture machines,0.25291224,TJ,N2O,3.9,kg/TJ,0.986357736,kg +deed7f5a-158f-3b03-8fb5-3408279f5f4d,SESCO,II.5.1,Neuquén,AR-Q,annual,2020,gas oil combustion consumption by agriculture machines,34.22796216,TJ,CO2,74100.0,kg/TJ,2536291.996056,kg +329733a2-6bef-3819-979e-2f85ac6b0141,SESCO,II.5.1,Neuquén,AR-Q,annual,2020,gas oil combustion consumption by agriculture machines,34.22796216,TJ,CH4,3.9,kg/TJ,133.489052424,kg +329733a2-6bef-3819-979e-2f85ac6b0141,SESCO,II.5.1,Neuquén,AR-Q,annual,2020,gas oil combustion consumption by agriculture machines,34.22796216,TJ,N2O,3.9,kg/TJ,133.489052424,kg +d7b16ed7-ebb1-3f39-bed9-c735dbe4cfe5,SESCO,II.5.1,Rio Negro,AR-R,annual,2020,gas oil combustion consumption by agriculture machines,48.73819692,TJ,CO2,74100.0,kg/TJ,3611500.391772,kg +fc570e8a-690e-375f-a2b8-b70ca0e865e7,SESCO,II.5.1,Rio Negro,AR-R,annual,2020,gas oil combustion consumption by agriculture machines,48.73819692,TJ,CH4,3.9,kg/TJ,190.078967988,kg +fc570e8a-690e-375f-a2b8-b70ca0e865e7,SESCO,II.5.1,Rio Negro,AR-R,annual,2020,gas oil combustion consumption by agriculture machines,48.73819692,TJ,N2O,3.9,kg/TJ,190.078967988,kg +90a2b299-27ec-3097-b9c7-d0f6c43c997c,SESCO,II.5.1,San Luis,AR-D,annual,2020,gas oil combustion consumption by agriculture machines,13.816983599999999,TJ,CO2,74100.0,kg/TJ,1023838.4847599999,kg +d49544f2-2e1a-3ff7-bf6c-b5cc2726175b,SESCO,II.5.1,San Luis,AR-D,annual,2020,gas oil combustion consumption by agriculture machines,13.816983599999999,TJ,CH4,3.9,kg/TJ,53.88623603999999,kg +d49544f2-2e1a-3ff7-bf6c-b5cc2726175b,SESCO,II.5.1,San Luis,AR-D,annual,2020,gas oil combustion consumption by agriculture machines,13.816983599999999,TJ,N2O,3.9,kg/TJ,53.88623603999999,kg +4586fb09-e1f7-3a83-b165-14b8db3ed390,SESCO,II.5.1,Santa Fe,AR-S,annual,2020,gas oil combustion consumption by agriculture machines,179.15259935999998,TJ,CO2,74100.0,kg/TJ,13275207.612575999,kg +cbcf7730-cb84-3b8d-b684-c663b192589b,SESCO,II.5.1,Santa Fe,AR-S,annual,2020,gas oil combustion consumption by agriculture machines,179.15259935999998,TJ,CH4,3.9,kg/TJ,698.695137504,kg +cbcf7730-cb84-3b8d-b684-c663b192589b,SESCO,II.5.1,Santa Fe,AR-S,annual,2020,gas oil combustion consumption by agriculture machines,179.15259935999998,TJ,N2O,3.9,kg/TJ,698.695137504,kg +2aa3bbeb-f767-333d-aed5-a43002a703a9,SESCO,II.5.1,Santiago del Estero,AR-G,annual,2020,gas oil combustion consumption by agriculture machines,20.880538559999998,TJ,CO2,74100.0,kg/TJ,1547247.9072959998,kg +7b0e1d3d-d0af-33e1-a423-aa9693392123,SESCO,II.5.1,Santiago del Estero,AR-G,annual,2020,gas oil combustion consumption by agriculture machines,20.880538559999998,TJ,CH4,3.9,kg/TJ,81.43410038399999,kg +7b0e1d3d-d0af-33e1-a423-aa9693392123,SESCO,II.5.1,Santiago del Estero,AR-G,annual,2020,gas oil combustion consumption by agriculture machines,20.880538559999998,TJ,N2O,3.9,kg/TJ,81.43410038399999,kg +270e5243-53a5-3ed8-8c48-c8d75164c238,SESCO,II.5.1,Tucuman,AR-T,annual,2020,gas oil combustion consumption by agriculture machines,20.294816639999997,TJ,CO2,74100.0,kg/TJ,1503845.9130239997,kg +e24093f4-5e1f-3b63-a60d-466a0fd53fce,SESCO,II.5.1,Tucuman,AR-T,annual,2020,gas oil combustion consumption by agriculture machines,20.294816639999997,TJ,CH4,3.9,kg/TJ,79.14978489599999,kg +e24093f4-5e1f-3b63-a60d-466a0fd53fce,SESCO,II.5.1,Tucuman,AR-T,annual,2020,gas oil combustion consumption by agriculture machines,20.294816639999997,TJ,N2O,3.9,kg/TJ,79.14978489599999,kg +5cdff0cf-e044-36f1-b109-31eb7397d89f,SESCO,II.1.1,Buenos Aires,AR-B,annual,2020,gas oil combustion consumption by to the public,5395.08045132,TJ,CO2,74100.0,kg/TJ,399775461.442812,kg +1364bb48-0e5f-3726-a8fc-e735c928bfbc,SESCO,II.1.1,Buenos Aires,AR-B,annual,2020,gas oil combustion consumption by to the public,5395.08045132,TJ,CH4,3.9,kg/TJ,21040.813760148,kg +1364bb48-0e5f-3726-a8fc-e735c928bfbc,SESCO,II.1.1,Buenos Aires,AR-B,annual,2020,gas oil combustion consumption by to the public,5395.08045132,TJ,N2O,3.9,kg/TJ,21040.813760148,kg +0af827ea-ccd1-3a21-9268-2ddbebaab579,SESCO,II.1.1,Capital Federal,AR-C,annual,2020,gas oil combustion consumption by to the public,281.32491827999996,TJ,CO2,74100.0,kg/TJ,20846176.444547996,kg +8fb48772-a26f-38a7-a72e-ef94a302e94f,SESCO,II.1.1,Capital Federal,AR-C,annual,2020,gas oil combustion consumption by to the public,281.32491827999996,TJ,CH4,3.9,kg/TJ,1097.167181292,kg +8fb48772-a26f-38a7-a72e-ef94a302e94f,SESCO,II.1.1,Capital Federal,AR-C,annual,2020,gas oil combustion consumption by to the public,281.32491827999996,TJ,N2O,3.9,kg/TJ,1097.167181292,kg +09b7ce84-cde5-3fae-910d-22e081a56a49,SESCO,II.1.1,Catamarca,AR-K,annual,2020,gas oil combustion consumption by to the public,6.2908398,TJ,CO2,74100.0,kg/TJ,466151.22917999997,kg +9507f18a-7941-3e07-9033-35db1ee28aea,SESCO,II.1.1,Catamarca,AR-K,annual,2020,gas oil combustion consumption by to the public,6.2908398,TJ,CH4,3.9,kg/TJ,24.534275219999998,kg +9507f18a-7941-3e07-9033-35db1ee28aea,SESCO,II.1.1,Catamarca,AR-K,annual,2020,gas oil combustion consumption by to the public,6.2908398,TJ,N2O,3.9,kg/TJ,24.534275219999998,kg +6e6ad18d-f6a4-3f2a-b98a-ae625a9bd379,SESCO,II.1.1,Chaco,AR-H,annual,2020,gas oil combustion consumption by to the public,38.466608040000004,TJ,CO2,74100.0,kg/TJ,2850375.6557640005,kg +b1a8bacb-9216-32e7-a9ce-4570e3f6a595,SESCO,II.1.1,Chaco,AR-H,annual,2020,gas oil combustion consumption by to the public,38.466608040000004,TJ,CH4,3.9,kg/TJ,150.019771356,kg +b1a8bacb-9216-32e7-a9ce-4570e3f6a595,SESCO,II.1.1,Chaco,AR-H,annual,2020,gas oil combustion consumption by to the public,38.466608040000004,TJ,N2O,3.9,kg/TJ,150.019771356,kg +f03ad794-e051-3164-8550-0e8be60facfe,SESCO,II.1.1,Chubut,AR-U,annual,2020,gas oil combustion consumption by to the public,172.63088052,TJ,CO2,74100.0,kg/TJ,12791948.246532,kg +7430dab2-39a8-37fd-ab3a-938498b9f454,SESCO,II.1.1,Chubut,AR-U,annual,2020,gas oil combustion consumption by to the public,172.63088052,TJ,CH4,3.9,kg/TJ,673.260434028,kg +7430dab2-39a8-37fd-ab3a-938498b9f454,SESCO,II.1.1,Chubut,AR-U,annual,2020,gas oil combustion consumption by to the public,172.63088052,TJ,N2O,3.9,kg/TJ,673.260434028,kg +f8e477fc-8673-3711-a09a-4dc8dc5400fc,SESCO,II.1.1,Corrientes,AR-W,annual,2020,gas oil combustion consumption by to the public,388.39911852,TJ,CO2,74100.0,kg/TJ,28780374.682332,kg +fd3cd1b9-c135-363d-914b-38caaadb8071,SESCO,II.1.1,Corrientes,AR-W,annual,2020,gas oil combustion consumption by to the public,388.39911852,TJ,CH4,3.9,kg/TJ,1514.756562228,kg +fd3cd1b9-c135-363d-914b-38caaadb8071,SESCO,II.1.1,Corrientes,AR-W,annual,2020,gas oil combustion consumption by to the public,388.39911852,TJ,N2O,3.9,kg/TJ,1514.756562228,kg +09a59dad-a05c-3dcc-9c99-9f398061f5e4,SESCO,II.1.1,Córdoba,AR-X,annual,2020,gas oil combustion consumption by to the public,838.60909272,TJ,CO2,74100.0,kg/TJ,62140933.770552,kg +5a5988f8-6f91-3767-94e1-2aa3781142f9,SESCO,II.1.1,Córdoba,AR-X,annual,2020,gas oil combustion consumption by to the public,838.60909272,TJ,CH4,3.9,kg/TJ,3270.575461608,kg +5a5988f8-6f91-3767-94e1-2aa3781142f9,SESCO,II.1.1,Córdoba,AR-X,annual,2020,gas oil combustion consumption by to the public,838.60909272,TJ,N2O,3.9,kg/TJ,3270.575461608,kg +56336670-e4ed-3174-a218-c666efec7908,SESCO,II.1.1,Entre Rios,AR-E,annual,2020,gas oil combustion consumption by to the public,872.5216550399999,TJ,CO2,74100.0,kg/TJ,64653854.638464,kg +4172cd98-3553-39a8-845b-6d97a26c8c4a,SESCO,II.1.1,Entre Rios,AR-E,annual,2020,gas oil combustion consumption by to the public,872.5216550399999,TJ,CH4,3.9,kg/TJ,3402.8344546559997,kg +4172cd98-3553-39a8-845b-6d97a26c8c4a,SESCO,II.1.1,Entre Rios,AR-E,annual,2020,gas oil combustion consumption by to the public,872.5216550399999,TJ,N2O,3.9,kg/TJ,3402.8344546559997,kg +72df585c-008d-324e-95c2-773ed5116835,SESCO,II.1.1,Formosa,AR-P,annual,2020,gas oil combustion consumption by to the public,14.39587884,TJ,CO2,74100.0,kg/TJ,1066734.622044,kg +eefe9b46-750c-3905-bff7-8de29c547e27,SESCO,II.1.1,Formosa,AR-P,annual,2020,gas oil combustion consumption by to the public,14.39587884,TJ,CH4,3.9,kg/TJ,56.143927476,kg +eefe9b46-750c-3905-bff7-8de29c547e27,SESCO,II.1.1,Formosa,AR-P,annual,2020,gas oil combustion consumption by to the public,14.39587884,TJ,N2O,3.9,kg/TJ,56.143927476,kg +5cfb037d-2dd3-380b-b7e7-d539a4a136df,SESCO,II.1.1,Jujuy,AR-Y,annual,2020,gas oil combustion consumption by to the public,35.32550448,TJ,CO2,74100.0,kg/TJ,2617619.881968,kg +c51122ad-f2a5-3419-8ede-9ea6d4d43bc8,SESCO,II.1.1,Jujuy,AR-Y,annual,2020,gas oil combustion consumption by to the public,35.32550448,TJ,CH4,3.9,kg/TJ,137.769467472,kg +c51122ad-f2a5-3419-8ede-9ea6d4d43bc8,SESCO,II.1.1,Jujuy,AR-Y,annual,2020,gas oil combustion consumption by to the public,35.32550448,TJ,N2O,3.9,kg/TJ,137.769467472,kg +dc180654-a102-368c-b128-d0a29b5f1621,SESCO,II.1.1,La Pampa,AR-L,annual,2020,gas oil combustion consumption by to the public,943.0346856,TJ,CO2,74100.0,kg/TJ,69878870.20296,kg +4ab4fa9e-a5eb-3efd-b31e-d676996cc4b6,SESCO,II.1.1,La Pampa,AR-L,annual,2020,gas oil combustion consumption by to the public,943.0346856,TJ,CH4,3.9,kg/TJ,3677.83527384,kg +4ab4fa9e-a5eb-3efd-b31e-d676996cc4b6,SESCO,II.1.1,La Pampa,AR-L,annual,2020,gas oil combustion consumption by to the public,943.0346856,TJ,N2O,3.9,kg/TJ,3677.83527384,kg +46da413b-74b6-3ccf-a5dd-704b1aeba7c6,SESCO,II.1.1,Mendoza,AR-M,annual,2020,gas oil combustion consumption by to the public,134.50315032,TJ,CO2,74100.0,kg/TJ,9966683.438712,kg +f24f0749-b22a-3e6f-b936-9d52c557807f,SESCO,II.1.1,Mendoza,AR-M,annual,2020,gas oil combustion consumption by to the public,134.50315032,TJ,CH4,3.9,kg/TJ,524.562286248,kg +f24f0749-b22a-3e6f-b936-9d52c557807f,SESCO,II.1.1,Mendoza,AR-M,annual,2020,gas oil combustion consumption by to the public,134.50315032,TJ,N2O,3.9,kg/TJ,524.562286248,kg +e9f4c597-ab7c-3ed4-ac46-3599b352a9d3,SESCO,II.1.1,Misiones,AR-N,annual,2020,gas oil combustion consumption by to the public,40.419399719999994,TJ,CO2,74100.0,kg/TJ,2995077.5192519994,kg +c823d456-251d-34f9-8282-66f4c02dec2f,SESCO,II.1.1,Misiones,AR-N,annual,2020,gas oil combustion consumption by to the public,40.419399719999994,TJ,CH4,3.9,kg/TJ,157.63565890799998,kg +c823d456-251d-34f9-8282-66f4c02dec2f,SESCO,II.1.1,Misiones,AR-N,annual,2020,gas oil combustion consumption by to the public,40.419399719999994,TJ,N2O,3.9,kg/TJ,157.63565890799998,kg +a7ebc12e-716a-3bbb-b8de-e60cab613360,SESCO,II.1.1,Neuquén,AR-Q,annual,2020,gas oil combustion consumption by to the public,188.38909740000003,TJ,CO2,74100.0,kg/TJ,13959632.117340002,kg +602ca2b7-b16a-3d21-b016-5a350baa6d62,SESCO,II.1.1,Neuquén,AR-Q,annual,2020,gas oil combustion consumption by to the public,188.38909740000003,TJ,CH4,3.9,kg/TJ,734.7174798600001,kg +602ca2b7-b16a-3d21-b016-5a350baa6d62,SESCO,II.1.1,Neuquén,AR-Q,annual,2020,gas oil combustion consumption by to the public,188.38909740000003,TJ,N2O,3.9,kg/TJ,734.7174798600001,kg +3bb2540d-d3b4-308b-9951-21d2f0438b4e,SESCO,II.1.1,Rio Negro,AR-R,annual,2020,gas oil combustion consumption by to the public,625.66384944,TJ,CO2,74100.0,kg/TJ,46361691.243504,kg +80bfe889-8985-39e0-a356-b3380ae5c5ec,SESCO,II.1.1,Rio Negro,AR-R,annual,2020,gas oil combustion consumption by to the public,625.66384944,TJ,CH4,3.9,kg/TJ,2440.089012816,kg +80bfe889-8985-39e0-a356-b3380ae5c5ec,SESCO,II.1.1,Rio Negro,AR-R,annual,2020,gas oil combustion consumption by to the public,625.66384944,TJ,N2O,3.9,kg/TJ,2440.089012816,kg +2a571c2d-15cb-392e-906d-1f0b1cb5a052,SESCO,II.1.1,San Juan,AR-J,annual,2020,gas oil combustion consumption by to the public,94.48377959999999,TJ,CO2,74100.0,kg/TJ,7001248.068359999,kg +fc242404-e2f5-3e53-b3f8-1039faf27a34,SESCO,II.1.1,San Juan,AR-J,annual,2020,gas oil combustion consumption by to the public,94.48377959999999,TJ,CH4,3.9,kg/TJ,368.48674043999995,kg +fc242404-e2f5-3e53-b3f8-1039faf27a34,SESCO,II.1.1,San Juan,AR-J,annual,2020,gas oil combustion consumption by to the public,94.48377959999999,TJ,N2O,3.9,kg/TJ,368.48674043999995,kg +15420aa5-49b2-3f05-98a1-192bdf255e07,SESCO,II.1.1,San Luis,AR-D,annual,2020,gas oil combustion consumption by to the public,65.09387472,TJ,CO2,74100.0,kg/TJ,4823456.1167520005,kg +454a31e5-0e54-328e-8335-6f8e9e2890e7,SESCO,II.1.1,San Luis,AR-D,annual,2020,gas oil combustion consumption by to the public,65.09387472,TJ,CH4,3.9,kg/TJ,253.866111408,kg +454a31e5-0e54-328e-8335-6f8e9e2890e7,SESCO,II.1.1,San Luis,AR-D,annual,2020,gas oil combustion consumption by to the public,65.09387472,TJ,N2O,3.9,kg/TJ,253.866111408,kg +03f821f3-33db-35e4-822d-684a724099cb,SESCO,II.1.1,Santa Fe,AR-S,annual,2020,gas oil combustion consumption by to the public,1323.5621002799999,TJ,CO2,74100.0,kg/TJ,98075951.63074799,kg +3b06446a-28ae-3625-89a8-02fd578025d1,SESCO,II.1.1,Santa Fe,AR-S,annual,2020,gas oil combustion consumption by to the public,1323.5621002799999,TJ,CH4,3.9,kg/TJ,5161.892191091999,kg +3b06446a-28ae-3625-89a8-02fd578025d1,SESCO,II.1.1,Santa Fe,AR-S,annual,2020,gas oil combustion consumption by to the public,1323.5621002799999,TJ,N2O,3.9,kg/TJ,5161.892191091999,kg +c5fd334b-ea4f-30bf-af24-46077cb8d3f3,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2020,gas oil combustion consumption by to the public,397.66093668,TJ,CO2,74100.0,kg/TJ,29466675.407988,kg +bdfe558c-d308-358b-bc1a-dcd0017a8186,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2020,gas oil combustion consumption by to the public,397.66093668,TJ,CH4,3.9,kg/TJ,1550.8776530520001,kg +bdfe558c-d308-358b-bc1a-dcd0017a8186,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2020,gas oil combustion consumption by to the public,397.66093668,TJ,N2O,3.9,kg/TJ,1550.8776530520001,kg +8becb11e-7c2d-39d9-9ba5-338fe0774331,SESCO,II.1.1,Tucuman,AR-T,annual,2020,gas oil combustion consumption by to the public,31.0265382,TJ,CO2,74100.0,kg/TJ,2299066.48062,kg +3302516c-a796-390a-b756-2b89bbc19e71,SESCO,II.1.1,Tucuman,AR-T,annual,2020,gas oil combustion consumption by to the public,31.0265382,TJ,CH4,3.9,kg/TJ,121.00349898,kg +3302516c-a796-390a-b756-2b89bbc19e71,SESCO,II.1.1,Tucuman,AR-T,annual,2020,gas oil combustion consumption by to the public,31.0265382,TJ,N2O,3.9,kg/TJ,121.00349898,kg +ff2f3d0c-e2ad-30d4-a061-d67b7fc81f7b,SESCO,II.1.1,Buenos Aires,AR-B,annual,2020,gas oil combustion consumption by to the public,1108.16423676,TJ,CO2,74100.0,kg/TJ,82114969.943916,kg +d7156be9-5c65-31f0-9596-e1bbc7514550,SESCO,II.1.1,Buenos Aires,AR-B,annual,2020,gas oil combustion consumption by to the public,1108.16423676,TJ,CH4,3.9,kg/TJ,4321.840523364,kg +d7156be9-5c65-31f0-9596-e1bbc7514550,SESCO,II.1.1,Buenos Aires,AR-B,annual,2020,gas oil combustion consumption by to the public,1108.16423676,TJ,N2O,3.9,kg/TJ,4321.840523364,kg +4b5a300e-2499-311f-a75e-0040e301ea04,SESCO,II.1.1,Capital Federal,AR-C,annual,2020,gas oil combustion consumption by to the public,40.36583376,TJ,CO2,74100.0,kg/TJ,2991108.281616,kg +a22f09e4-07a3-3370-b54f-f273ad0b9e7f,SESCO,II.1.1,Capital Federal,AR-C,annual,2020,gas oil combustion consumption by to the public,40.36583376,TJ,CH4,3.9,kg/TJ,157.426751664,kg +a22f09e4-07a3-3370-b54f-f273ad0b9e7f,SESCO,II.1.1,Capital Federal,AR-C,annual,2020,gas oil combustion consumption by to the public,40.36583376,TJ,N2O,3.9,kg/TJ,157.426751664,kg +029e62f1-8c10-3c9b-86b4-2a85976958c7,SESCO,II.1.1,Catamarca,AR-K,annual,2020,gas oil combustion consumption by to the public,2.59998984,TJ,CO2,74100.0,kg/TJ,192659.247144,kg +1a45868c-7f6c-348a-b8cb-56e9b7c35f44,SESCO,II.1.1,Catamarca,AR-K,annual,2020,gas oil combustion consumption by to the public,2.59998984,TJ,CH4,3.9,kg/TJ,10.139960376,kg +1a45868c-7f6c-348a-b8cb-56e9b7c35f44,SESCO,II.1.1,Catamarca,AR-K,annual,2020,gas oil combustion consumption by to the public,2.59998984,TJ,N2O,3.9,kg/TJ,10.139960376,kg +89fa58b9-a266-37fc-8ed4-b5f7b712b4a5,SESCO,II.1.1,Chaco,AR-H,annual,2020,gas oil combustion consumption by to the public,18.46541088,TJ,CO2,74100.0,kg/TJ,1368286.946208,kg +fe41d637-c0e9-3ae6-9367-b9fb49e28d7e,SESCO,II.1.1,Chaco,AR-H,annual,2020,gas oil combustion consumption by to the public,18.46541088,TJ,CH4,3.9,kg/TJ,72.015102432,kg +fe41d637-c0e9-3ae6-9367-b9fb49e28d7e,SESCO,II.1.1,Chaco,AR-H,annual,2020,gas oil combustion consumption by to the public,18.46541088,TJ,N2O,3.9,kg/TJ,72.015102432,kg +48854b64-402e-3828-b7c1-314d0f4c8e6d,SESCO,II.1.1,Chubut,AR-U,annual,2020,gas oil combustion consumption by to the public,63.31825164,TJ,CO2,74100.0,kg/TJ,4691882.446524,kg +fd9e46c7-d2f9-37b1-907e-a60d3bcdedd4,SESCO,II.1.1,Chubut,AR-U,annual,2020,gas oil combustion consumption by to the public,63.31825164,TJ,CH4,3.9,kg/TJ,246.941181396,kg +fd9e46c7-d2f9-37b1-907e-a60d3bcdedd4,SESCO,II.1.1,Chubut,AR-U,annual,2020,gas oil combustion consumption by to the public,63.31825164,TJ,N2O,3.9,kg/TJ,246.941181396,kg +8abae4d3-670f-3a87-ac32-183f8b8f0da5,SESCO,II.1.1,Corrientes,AR-W,annual,2020,gas oil combustion consumption by to the public,47.55064356,TJ,CO2,74100.0,kg/TJ,3523502.687796,kg +e8cd75e9-a18d-3b7b-b275-ee179ca7fa2a,SESCO,II.1.1,Corrientes,AR-W,annual,2020,gas oil combustion consumption by to the public,47.55064356,TJ,CH4,3.9,kg/TJ,185.447509884,kg +e8cd75e9-a18d-3b7b-b275-ee179ca7fa2a,SESCO,II.1.1,Corrientes,AR-W,annual,2020,gas oil combustion consumption by to the public,47.55064356,TJ,N2O,3.9,kg/TJ,185.447509884,kg +eca5dfd6-93d4-3810-bf01-fac18cf6e4b3,SESCO,II.1.1,Córdoba,AR-X,annual,2020,gas oil combustion consumption by to the public,143.90887056,TJ,CO2,74100.0,kg/TJ,10663647.308496,kg +02e6fe6e-02db-3fdd-8c0f-da9fcc2543f4,SESCO,II.1.1,Córdoba,AR-X,annual,2020,gas oil combustion consumption by to the public,143.90887056,TJ,CH4,3.9,kg/TJ,561.244595184,kg +02e6fe6e-02db-3fdd-8c0f-da9fcc2543f4,SESCO,II.1.1,Córdoba,AR-X,annual,2020,gas oil combustion consumption by to the public,143.90887056,TJ,N2O,3.9,kg/TJ,561.244595184,kg +e131cc02-f92c-3c99-889c-42ad1ea2e409,SESCO,II.1.1,Entre Rios,AR-E,annual,2020,gas oil combustion consumption by to the public,177.87539616,TJ,CO2,74100.0,kg/TJ,13180566.855456,kg +4a69e9f5-289f-356d-bd68-0d8028181eea,SESCO,II.1.1,Entre Rios,AR-E,annual,2020,gas oil combustion consumption by to the public,177.87539616,TJ,CH4,3.9,kg/TJ,693.714045024,kg +4a69e9f5-289f-356d-bd68-0d8028181eea,SESCO,II.1.1,Entre Rios,AR-E,annual,2020,gas oil combustion consumption by to the public,177.87539616,TJ,N2O,3.9,kg/TJ,693.714045024,kg +9da0f45c-539b-3e2b-bf2e-541f6c813e82,SESCO,II.1.1,Formosa,AR-P,annual,2020,gas oil combustion consumption by to the public,1.64071488,TJ,CO2,74100.0,kg/TJ,121576.972608,kg +58694d46-b654-3a75-affc-2d84e3be0dab,SESCO,II.1.1,Formosa,AR-P,annual,2020,gas oil combustion consumption by to the public,1.64071488,TJ,CH4,3.9,kg/TJ,6.398788032,kg +58694d46-b654-3a75-affc-2d84e3be0dab,SESCO,II.1.1,Formosa,AR-P,annual,2020,gas oil combustion consumption by to the public,1.64071488,TJ,N2O,3.9,kg/TJ,6.398788032,kg +8f8b0d47-93ff-3baa-9dfa-53403dd6bc31,SESCO,II.1.1,Jujuy,AR-Y,annual,2020,gas oil combustion consumption by to the public,4.42116024,TJ,CO2,74100.0,kg/TJ,327607.973784,kg +13e58a0a-f960-3d5d-ac07-2baee53b5f4d,SESCO,II.1.1,Jujuy,AR-Y,annual,2020,gas oil combustion consumption by to the public,4.42116024,TJ,CH4,3.9,kg/TJ,17.242524936,kg +13e58a0a-f960-3d5d-ac07-2baee53b5f4d,SESCO,II.1.1,Jujuy,AR-Y,annual,2020,gas oil combustion consumption by to the public,4.42116024,TJ,N2O,3.9,kg/TJ,17.242524936,kg +ddf4d65b-4426-3686-8921-53d3ca62ed14,SESCO,II.1.1,La Pampa,AR-L,annual,2020,gas oil combustion consumption by to the public,147.13601196,TJ,CO2,74100.0,kg/TJ,10902778.486235999,kg +cf03b8e1-f58c-3633-a21a-22852b0f9829,SESCO,II.1.1,La Pampa,AR-L,annual,2020,gas oil combustion consumption by to the public,147.13601196,TJ,CH4,3.9,kg/TJ,573.830446644,kg +cf03b8e1-f58c-3633-a21a-22852b0f9829,SESCO,II.1.1,La Pampa,AR-L,annual,2020,gas oil combustion consumption by to the public,147.13601196,TJ,N2O,3.9,kg/TJ,573.830446644,kg +1596de9c-6be2-374f-8c9e-3a0f612faaa6,SESCO,II.1.1,Mendoza,AR-M,annual,2020,gas oil combustion consumption by to the public,23.63013744,TJ,CO2,74100.0,kg/TJ,1750993.1843039999,kg +71a80179-0f51-3e7d-9fe9-63fdbcaccbe1,SESCO,II.1.1,Mendoza,AR-M,annual,2020,gas oil combustion consumption by to the public,23.63013744,TJ,CH4,3.9,kg/TJ,92.157536016,kg +71a80179-0f51-3e7d-9fe9-63fdbcaccbe1,SESCO,II.1.1,Mendoza,AR-M,annual,2020,gas oil combustion consumption by to the public,23.63013744,TJ,N2O,3.9,kg/TJ,92.157536016,kg +ed674f13-6eab-35a3-801f-057ad6fb03c8,SESCO,II.1.1,Misiones,AR-N,annual,2020,gas oil combustion consumption by to the public,3.4841352000000003,TJ,CO2,74100.0,kg/TJ,258174.41832000003,kg +e74d7729-937b-36ca-99f7-3156a380b8a9,SESCO,II.1.1,Misiones,AR-N,annual,2020,gas oil combustion consumption by to the public,3.4841352000000003,TJ,CH4,3.9,kg/TJ,13.58812728,kg +e74d7729-937b-36ca-99f7-3156a380b8a9,SESCO,II.1.1,Misiones,AR-N,annual,2020,gas oil combustion consumption by to the public,3.4841352000000003,TJ,N2O,3.9,kg/TJ,13.58812728,kg +63a3d2b9-940e-3567-9024-30aaa80d4e66,SESCO,II.1.1,Neuquén,AR-Q,annual,2020,gas oil combustion consumption by to the public,183.35660616,TJ,CO2,74100.0,kg/TJ,13586724.516456,kg +76dfda21-0d34-3d72-b8b8-365ca300b554,SESCO,II.1.1,Neuquén,AR-Q,annual,2020,gas oil combustion consumption by to the public,183.35660616,TJ,CH4,3.9,kg/TJ,715.090764024,kg +76dfda21-0d34-3d72-b8b8-365ca300b554,SESCO,II.1.1,Neuquén,AR-Q,annual,2020,gas oil combustion consumption by to the public,183.35660616,TJ,N2O,3.9,kg/TJ,715.090764024,kg +71e789a4-0bf2-34be-b1cf-5ab303d2766b,SESCO,II.1.1,Rio Negro,AR-R,annual,2020,gas oil combustion consumption by to the public,206.69117364,TJ,CO2,74100.0,kg/TJ,15315815.966723999,kg +8b19c346-cff8-385d-99ca-3ba61db1dfbd,SESCO,II.1.1,Rio Negro,AR-R,annual,2020,gas oil combustion consumption by to the public,206.69117364,TJ,CH4,3.9,kg/TJ,806.0955771959999,kg +8b19c346-cff8-385d-99ca-3ba61db1dfbd,SESCO,II.1.1,Rio Negro,AR-R,annual,2020,gas oil combustion consumption by to the public,206.69117364,TJ,N2O,3.9,kg/TJ,806.0955771959999,kg +a47c3bab-f965-3dcd-b64a-84be72c85cc4,SESCO,II.1.1,San Juan,AR-J,annual,2020,gas oil combustion consumption by to the public,27.337313639999998,TJ,CO2,74100.0,kg/TJ,2025694.9407239999,kg +b82ec7d0-f9b7-3ea8-8834-21d7a7f7bc68,SESCO,II.1.1,San Juan,AR-J,annual,2020,gas oil combustion consumption by to the public,27.337313639999998,TJ,CH4,3.9,kg/TJ,106.61552319599998,kg +b82ec7d0-f9b7-3ea8-8834-21d7a7f7bc68,SESCO,II.1.1,San Juan,AR-J,annual,2020,gas oil combustion consumption by to the public,27.337313639999998,TJ,N2O,3.9,kg/TJ,106.61552319599998,kg +c126c3a4-309f-395f-9937-53190fb4b45f,SESCO,II.1.1,San Luis,AR-D,annual,2020,gas oil combustion consumption by to the public,22.45450368,TJ,CO2,74100.0,kg/TJ,1663878.722688,kg +0a48fc29-1bb1-311d-9381-b00699de5a18,SESCO,II.1.1,San Luis,AR-D,annual,2020,gas oil combustion consumption by to the public,22.45450368,TJ,CH4,3.9,kg/TJ,87.57256435199999,kg +0a48fc29-1bb1-311d-9381-b00699de5a18,SESCO,II.1.1,San Luis,AR-D,annual,2020,gas oil combustion consumption by to the public,22.45450368,TJ,N2O,3.9,kg/TJ,87.57256435199999,kg +fb4faa5a-dbb1-357a-b489-b59db6751706,SESCO,II.1.1,Santa Fe,AR-S,annual,2020,gas oil combustion consumption by to the public,305.41291284,TJ,CO2,74100.0,kg/TJ,22631096.841444,kg +0854e19a-e3e4-371e-9fdb-d47b636102e8,SESCO,II.1.1,Santa Fe,AR-S,annual,2020,gas oil combustion consumption by to the public,305.41291284,TJ,CH4,3.9,kg/TJ,1191.110360076,kg +0854e19a-e3e4-371e-9fdb-d47b636102e8,SESCO,II.1.1,Santa Fe,AR-S,annual,2020,gas oil combustion consumption by to the public,305.41291284,TJ,N2O,3.9,kg/TJ,1191.110360076,kg +85083910-81b6-3abf-b3ee-04da58bbaf92,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2020,gas oil combustion consumption by to the public,45.68345628,TJ,CO2,74100.0,kg/TJ,3385144.110348,kg +5997d353-83a8-385a-85bd-bac754b6993b,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2020,gas oil combustion consumption by to the public,45.68345628,TJ,CH4,3.9,kg/TJ,178.165479492,kg +5997d353-83a8-385a-85bd-bac754b6993b,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2020,gas oil combustion consumption by to the public,45.68345628,TJ,N2O,3.9,kg/TJ,178.165479492,kg +a6b6fe58-fae1-3aa7-85fc-3fd47d1a5d4b,SESCO,II.1.1,Tucuman,AR-T,annual,2020,gas oil combustion consumption by to the public,4.8497962800000005,TJ,CO2,74100.0,kg/TJ,359369.904348,kg +19aa128d-53b7-31ba-9283-05a20b6f7dca,SESCO,II.1.1,Tucuman,AR-T,annual,2020,gas oil combustion consumption by to the public,4.8497962800000005,TJ,CH4,3.9,kg/TJ,18.914205492,kg +19aa128d-53b7-31ba-9283-05a20b6f7dca,SESCO,II.1.1,Tucuman,AR-T,annual,2020,gas oil combustion consumption by to the public,4.8497962800000005,TJ,N2O,3.9,kg/TJ,18.914205492,kg +63f6f71f-3ad0-356b-84fc-14a49b200ebd,SESCO,I.3.1,Buenos Aires,AR-B,annual,2020,gas oil combustion consumption by petrochemical industries,28.073367,TJ,CO2,74100.0,kg/TJ,2080236.4947000002,kg +aa7ec93f-1135-3ec8-bc30-5070755a189d,SESCO,I.3.1,Buenos Aires,AR-B,annual,2020,gas oil combustion consumption by petrochemical industries,28.073367,TJ,CH4,3.9,kg/TJ,109.4861313,kg +aa7ec93f-1135-3ec8-bc30-5070755a189d,SESCO,I.3.1,Buenos Aires,AR-B,annual,2020,gas oil combustion consumption by petrochemical industries,28.073367,TJ,N2O,3.9,kg/TJ,109.4861313,kg +9b13c509-1b2d-3a3e-8571-7f85a8189389,SESCO,I.3.1,Capital Federal,AR-C,annual,2020,gas oil combustion consumption by petrochemical industries,1.69579788,TJ,CO2,74100.0,kg/TJ,125658.622908,kg +bdbd359b-9aec-3f46-880a-3853b25bc987,SESCO,I.3.1,Capital Federal,AR-C,annual,2020,gas oil combustion consumption by petrochemical industries,1.69579788,TJ,CH4,3.9,kg/TJ,6.613611732,kg +bdbd359b-9aec-3f46-880a-3853b25bc987,SESCO,I.3.1,Capital Federal,AR-C,annual,2020,gas oil combustion consumption by petrochemical industries,1.69579788,TJ,N2O,3.9,kg/TJ,6.613611732,kg +c482c626-e549-34f0-8903-6b3bc3ac78bd,SESCO,I.3.1,Catamarca,AR-K,annual,2020,gas oil combustion consumption by petrochemical industries,0.36163344000000003,TJ,CO2,74100.0,kg/TJ,26797.037904,kg +a54e5804-6dc7-3820-a01f-60af8b65517d,SESCO,I.3.1,Catamarca,AR-K,annual,2020,gas oil combustion consumption by petrochemical industries,0.36163344000000003,TJ,CH4,3.9,kg/TJ,1.4103704160000001,kg +a54e5804-6dc7-3820-a01f-60af8b65517d,SESCO,I.3.1,Catamarca,AR-K,annual,2020,gas oil combustion consumption by petrochemical industries,0.36163344000000003,TJ,N2O,3.9,kg/TJ,1.4103704160000001,kg +ad49b0c6-56bc-3659-be2b-3eb5295ecbb5,SESCO,I.3.1,Chaco,AR-H,annual,2020,gas oil combustion consumption by petrochemical industries,1.9492880399999999,TJ,CO2,74100.0,kg/TJ,144442.24376399998,kg +fb78261d-43ce-3e6c-8efe-d50cd7eabf73,SESCO,I.3.1,Chaco,AR-H,annual,2020,gas oil combustion consumption by petrochemical industries,1.9492880399999999,TJ,CH4,3.9,kg/TJ,7.602223356,kg +fb78261d-43ce-3e6c-8efe-d50cd7eabf73,SESCO,I.3.1,Chaco,AR-H,annual,2020,gas oil combustion consumption by petrochemical industries,1.9492880399999999,TJ,N2O,3.9,kg/TJ,7.602223356,kg +5f87bc61-846a-3ce1-b167-d2a50869f5e7,SESCO,I.3.1,Chubut,AR-U,annual,2020,gas oil combustion consumption by petrochemical industries,0.54281136,TJ,CO2,74100.0,kg/TJ,40222.321776,kg +4412e98d-5ac7-3ec5-9b8f-9a4a3490195f,SESCO,I.3.1,Chubut,AR-U,annual,2020,gas oil combustion consumption by petrochemical industries,0.54281136,TJ,CH4,3.9,kg/TJ,2.1169643039999997,kg +4412e98d-5ac7-3ec5-9b8f-9a4a3490195f,SESCO,I.3.1,Chubut,AR-U,annual,2020,gas oil combustion consumption by petrochemical industries,0.54281136,TJ,N2O,3.9,kg/TJ,2.1169643039999997,kg +b6660d10-f470-3ea2-ba86-a2f8d628572c,SESCO,I.3.1,Corrientes,AR-W,annual,2020,gas oil combustion consumption by petrochemical industries,1.2976471200000002,TJ,CO2,74100.0,kg/TJ,96155.65159200001,kg +e5ef84a5-2e3d-33a3-8210-a47ea827f117,SESCO,I.3.1,Corrientes,AR-W,annual,2020,gas oil combustion consumption by petrochemical industries,1.2976471200000002,TJ,CH4,3.9,kg/TJ,5.0608237680000006,kg +e5ef84a5-2e3d-33a3-8210-a47ea827f117,SESCO,I.3.1,Corrientes,AR-W,annual,2020,gas oil combustion consumption by petrochemical industries,1.2976471200000002,TJ,N2O,3.9,kg/TJ,5.0608237680000006,kg +84ef5267-c5ac-3f96-a3a9-4bfbe848c599,SESCO,I.3.1,Córdoba,AR-X,annual,2020,gas oil combustion consumption by petrochemical industries,6.88923984,TJ,CO2,74100.0,kg/TJ,510492.672144,kg +461ea079-c761-3ada-af04-07b355c309eb,SESCO,I.3.1,Córdoba,AR-X,annual,2020,gas oil combustion consumption by petrochemical industries,6.88923984,TJ,CH4,3.9,kg/TJ,26.868035375999998,kg +461ea079-c761-3ada-af04-07b355c309eb,SESCO,I.3.1,Córdoba,AR-X,annual,2020,gas oil combustion consumption by petrochemical industries,6.88923984,TJ,N2O,3.9,kg/TJ,26.868035375999998,kg +0c4395b6-8b30-3d3a-9929-d4d1d3feb9a2,SESCO,I.3.1,Entre Rios,AR-E,annual,2020,gas oil combustion consumption by petrochemical industries,4.903037159999999,TJ,CO2,74100.0,kg/TJ,363315.05355599994,kg +a36af947-cb86-3241-871a-0d0da0bee58a,SESCO,I.3.1,Entre Rios,AR-E,annual,2020,gas oil combustion consumption by petrochemical industries,4.903037159999999,TJ,CH4,3.9,kg/TJ,19.121844923999998,kg +a36af947-cb86-3241-871a-0d0da0bee58a,SESCO,I.3.1,Entre Rios,AR-E,annual,2020,gas oil combustion consumption by petrochemical industries,4.903037159999999,TJ,N2O,3.9,kg/TJ,19.121844923999998,kg +db0eeb04-3b05-3d6e-8de2-3094ec1b5182,SESCO,I.3.1,La Pampa,AR-L,annual,2020,gas oil combustion consumption by petrochemical industries,11.56298724,TJ,CO2,74100.0,kg/TJ,856817.354484,kg +0761a59a-e2d3-323a-bdd8-f1943c841153,SESCO,I.3.1,La Pampa,AR-L,annual,2020,gas oil combustion consumption by petrochemical industries,11.56298724,TJ,CH4,3.9,kg/TJ,45.095650236,kg +0761a59a-e2d3-323a-bdd8-f1943c841153,SESCO,I.3.1,La Pampa,AR-L,annual,2020,gas oil combustion consumption by petrochemical industries,11.56298724,TJ,N2O,3.9,kg/TJ,45.095650236,kg +fb22e6eb-00ba-3224-9fa7-4d43b08cd5d3,SESCO,I.3.1,Mendoza,AR-M,annual,2020,gas oil combustion consumption by petrochemical industries,0.18110568000000002,TJ,CO2,74100.0,kg/TJ,13419.930888,kg +78f1c355-933f-3328-a585-b426e15f7145,SESCO,I.3.1,Mendoza,AR-M,annual,2020,gas oil combustion consumption by petrochemical industries,0.18110568000000002,TJ,CH4,3.9,kg/TJ,0.7063121520000001,kg +78f1c355-933f-3328-a585-b426e15f7145,SESCO,I.3.1,Mendoza,AR-M,annual,2020,gas oil combustion consumption by petrochemical industries,0.18110568000000002,TJ,N2O,3.9,kg/TJ,0.7063121520000001,kg +6d4a6a8e-e6f1-38e6-99a1-2d8e028b76b1,SESCO,I.3.1,Rio Negro,AR-R,annual,2020,gas oil combustion consumption by petrochemical industries,0.79464,TJ,CO2,74100.0,kg/TJ,58882.824,kg +4da50249-418d-33e6-8f24-e505096ab136,SESCO,I.3.1,Rio Negro,AR-R,annual,2020,gas oil combustion consumption by petrochemical industries,0.79464,TJ,CH4,3.9,kg/TJ,3.099096,kg +4da50249-418d-33e6-8f24-e505096ab136,SESCO,I.3.1,Rio Negro,AR-R,annual,2020,gas oil combustion consumption by petrochemical industries,0.79464,TJ,N2O,3.9,kg/TJ,3.099096,kg +efcd8d87-3593-3dad-9958-6ff24b4ee801,SESCO,I.3.1,Santa Fe,AR-S,annual,2020,gas oil combustion consumption by petrochemical industries,25.3654506,TJ,CO2,74100.0,kg/TJ,1879579.88946,kg +38d13f24-b3cb-3bc7-bf5a-107634573b44,SESCO,I.3.1,Santa Fe,AR-S,annual,2020,gas oil combustion consumption by petrochemical industries,25.3654506,TJ,CH4,3.9,kg/TJ,98.92525733999999,kg +38d13f24-b3cb-3bc7-bf5a-107634573b44,SESCO,I.3.1,Santa Fe,AR-S,annual,2020,gas oil combustion consumption by petrochemical industries,25.3654506,TJ,N2O,3.9,kg/TJ,98.92525733999999,kg +a8d9decd-f751-3244-977d-58311fe3397d,SESCO,I.3.1,Santiago del Estero,AR-G,annual,2020,gas oil combustion consumption by petrochemical industries,0.14386596,TJ,CO2,74100.0,kg/TJ,10660.467636,kg +a705c856-9437-35d5-8a62-0c5f28af0870,SESCO,I.3.1,Santiago del Estero,AR-G,annual,2020,gas oil combustion consumption by petrochemical industries,0.14386596,TJ,CH4,3.9,kg/TJ,0.5610772439999999,kg +a705c856-9437-35d5-8a62-0c5f28af0870,SESCO,I.3.1,Santiago del Estero,AR-G,annual,2020,gas oil combustion consumption by petrochemical industries,0.14386596,TJ,N2O,3.9,kg/TJ,0.5610772439999999,kg +883bd798-692c-3301-b427-2b82f4c310fd,SESCO,I.3.1,Tucuman,AR-T,annual,2020,gas oil combustion consumption by petrochemical industries,0.2526594,TJ,CO2,74100.0,kg/TJ,18722.06154,kg +a148f897-dac1-3787-a93b-3e762e6dd938,SESCO,I.3.1,Tucuman,AR-T,annual,2020,gas oil combustion consumption by petrochemical industries,0.2526594,TJ,CH4,3.9,kg/TJ,0.9853716599999999,kg +a148f897-dac1-3787-a93b-3e762e6dd938,SESCO,I.3.1,Tucuman,AR-T,annual,2020,gas oil combustion consumption by petrochemical industries,0.2526594,TJ,N2O,3.9,kg/TJ,0.9853716599999999,kg +63eb9345-76a0-3d69-896d-7012eacc8fe0,SESCO,II.5.1,Buenos Aires,AR-B,annual,2020,gas oil combustion consumption by agriculture machines,9292.773,TJ,CO2,74100.0,kg/TJ,688594479.3,kg +bece1ecc-fb9f-3d8b-b1a0-f71e9f2bb65a,SESCO,II.5.1,Buenos Aires,AR-B,annual,2020,gas oil combustion consumption by agriculture machines,9292.773,TJ,CH4,3.9,kg/TJ,36241.814699999995,kg +bece1ecc-fb9f-3d8b-b1a0-f71e9f2bb65a,SESCO,II.5.1,Buenos Aires,AR-B,annual,2020,gas oil combustion consumption by agriculture machines,9292.773,TJ,N2O,3.9,kg/TJ,36241.814699999995,kg +c57abf0a-4949-32d9-ad88-05799bad5068,SESCO,II.5.1,Capital Federal,AR-C,annual,2020,gas oil combustion consumption by agriculture machines,35.79492,TJ,CO2,74100.0,kg/TJ,2652403.5719999997,kg +e2caec47-f001-35dd-a79b-56333bd7b5b6,SESCO,II.5.1,Capital Federal,AR-C,annual,2020,gas oil combustion consumption by agriculture machines,35.79492,TJ,CH4,3.9,kg/TJ,139.60018799999997,kg +e2caec47-f001-35dd-a79b-56333bd7b5b6,SESCO,II.5.1,Capital Federal,AR-C,annual,2020,gas oil combustion consumption by agriculture machines,35.79492,TJ,N2O,3.9,kg/TJ,139.60018799999997,kg +8dcf0c47-78b7-3737-905a-0d01642c6381,SESCO,II.5.1,Catamarca,AR-K,annual,2020,gas oil combustion consumption by agriculture machines,149.13948,TJ,CO2,74100.0,kg/TJ,11051235.467999998,kg +03fd7440-c5e5-3c89-bf92-33155e1a3015,SESCO,II.5.1,Catamarca,AR-K,annual,2020,gas oil combustion consumption by agriculture machines,149.13948,TJ,CH4,3.9,kg/TJ,581.643972,kg +03fd7440-c5e5-3c89-bf92-33155e1a3015,SESCO,II.5.1,Catamarca,AR-K,annual,2020,gas oil combustion consumption by agriculture machines,149.13948,TJ,N2O,3.9,kg/TJ,581.643972,kg +a8ce750e-50c7-3080-955a-c58377d41d86,SESCO,II.5.1,Chaco,AR-H,annual,2020,gas oil combustion consumption by agriculture machines,954.32652,TJ,CO2,74100.0,kg/TJ,70715595.132,kg +1f526ee9-caa7-3329-883f-dab7193f5117,SESCO,II.5.1,Chaco,AR-H,annual,2020,gas oil combustion consumption by agriculture machines,954.32652,TJ,CH4,3.9,kg/TJ,3721.873428,kg +1f526ee9-caa7-3329-883f-dab7193f5117,SESCO,II.5.1,Chaco,AR-H,annual,2020,gas oil combustion consumption by agriculture machines,954.32652,TJ,N2O,3.9,kg/TJ,3721.873428,kg +12c68bf5-139e-3cca-a028-68330950465a,SESCO,II.5.1,Corrientes,AR-W,annual,2020,gas oil combustion consumption by agriculture machines,521.60892,TJ,CO2,74100.0,kg/TJ,38651220.972,kg +accdfa4f-0bf3-330e-a226-58de9a3f040b,SESCO,II.5.1,Corrientes,AR-W,annual,2020,gas oil combustion consumption by agriculture machines,521.60892,TJ,CH4,3.9,kg/TJ,2034.274788,kg +accdfa4f-0bf3-330e-a226-58de9a3f040b,SESCO,II.5.1,Corrientes,AR-W,annual,2020,gas oil combustion consumption by agriculture machines,521.60892,TJ,N2O,3.9,kg/TJ,2034.274788,kg +99c854ae-1203-3ac0-a209-5b0e48817cc1,SESCO,II.5.1,Córdoba,AR-X,annual,2020,gas oil combustion consumption by agriculture machines,6933.99252,TJ,CO2,74100.0,kg/TJ,513808845.732,kg +6926366d-055a-3089-815f-3cf0ab8c57cc,SESCO,II.5.1,Córdoba,AR-X,annual,2020,gas oil combustion consumption by agriculture machines,6933.99252,TJ,CH4,3.9,kg/TJ,27042.570828,kg +6926366d-055a-3089-815f-3cf0ab8c57cc,SESCO,II.5.1,Córdoba,AR-X,annual,2020,gas oil combustion consumption by agriculture machines,6933.99252,TJ,N2O,3.9,kg/TJ,27042.570828,kg +d179b54c-f470-3af2-91b5-87b051716188,SESCO,II.5.1,Entre Rios,AR-E,annual,2020,gas oil combustion consumption by agriculture machines,1840.35012,TJ,CO2,74100.0,kg/TJ,136369943.892,kg +8119c3da-979b-380c-bb25-61bf81e1d739,SESCO,II.5.1,Entre Rios,AR-E,annual,2020,gas oil combustion consumption by agriculture machines,1840.35012,TJ,CH4,3.9,kg/TJ,7177.365468,kg +8119c3da-979b-380c-bb25-61bf81e1d739,SESCO,II.5.1,Entre Rios,AR-E,annual,2020,gas oil combustion consumption by agriculture machines,1840.35012,TJ,N2O,3.9,kg/TJ,7177.365468,kg +dc500619-c7a6-350a-819b-f098c11fee64,SESCO,II.5.1,Formosa,AR-P,annual,2020,gas oil combustion consumption by agriculture machines,232.90176,TJ,CO2,74100.0,kg/TJ,17258020.416,kg +79be7970-4e48-3eca-89b2-7ac11d963c8a,SESCO,II.5.1,Formosa,AR-P,annual,2020,gas oil combustion consumption by agriculture machines,232.90176,TJ,CH4,3.9,kg/TJ,908.316864,kg +79be7970-4e48-3eca-89b2-7ac11d963c8a,SESCO,II.5.1,Formosa,AR-P,annual,2020,gas oil combustion consumption by agriculture machines,232.90176,TJ,N2O,3.9,kg/TJ,908.316864,kg +06c4c92e-e6df-3bd2-8923-7a4e053cc2fe,SESCO,II.5.1,Jujuy,AR-Y,annual,2020,gas oil combustion consumption by agriculture machines,961.0087199999999,TJ,CO2,74100.0,kg/TJ,71210746.152,kg +9d0a17f5-d49e-3bd6-bc98-9f8172a4ab34,SESCO,II.5.1,Jujuy,AR-Y,annual,2020,gas oil combustion consumption by agriculture machines,961.0087199999999,TJ,CH4,3.9,kg/TJ,3747.9340079999997,kg +9d0a17f5-d49e-3bd6-bc98-9f8172a4ab34,SESCO,II.5.1,Jujuy,AR-Y,annual,2020,gas oil combustion consumption by agriculture machines,961.0087199999999,TJ,N2O,3.9,kg/TJ,3747.9340079999997,kg +6d6af92b-aa9a-3ef4-96f4-ee4078fe777b,SESCO,II.5.1,La Pampa,AR-L,annual,2020,gas oil combustion consumption by agriculture machines,1478.71668,TJ,CO2,74100.0,kg/TJ,109572905.988,kg +be2659f9-7fbc-3677-b4e6-095418e43bac,SESCO,II.5.1,La Pampa,AR-L,annual,2020,gas oil combustion consumption by agriculture machines,1478.71668,TJ,CH4,3.9,kg/TJ,5766.995052,kg +be2659f9-7fbc-3677-b4e6-095418e43bac,SESCO,II.5.1,La Pampa,AR-L,annual,2020,gas oil combustion consumption by agriculture machines,1478.71668,TJ,N2O,3.9,kg/TJ,5766.995052,kg +a64454f2-6e91-39dd-9d16-4a500eba954e,SESCO,II.5.1,La Rioja,AR-F,annual,2020,gas oil combustion consumption by agriculture machines,88.34952,TJ,CO2,74100.0,kg/TJ,6546699.432,kg +dbb5f89b-89b4-3615-afa3-6e586a0f0fee,SESCO,II.5.1,La Rioja,AR-F,annual,2020,gas oil combustion consumption by agriculture machines,88.34952,TJ,CH4,3.9,kg/TJ,344.563128,kg +dbb5f89b-89b4-3615-afa3-6e586a0f0fee,SESCO,II.5.1,La Rioja,AR-F,annual,2020,gas oil combustion consumption by agriculture machines,88.34952,TJ,N2O,3.9,kg/TJ,344.563128,kg +237bf474-71b1-331e-b5ec-e977a7fdf471,SESCO,II.5.1,Mendoza,AR-M,annual,2020,gas oil combustion consumption by agriculture machines,1603.47516,TJ,CO2,74100.0,kg/TJ,118817509.35599999,kg +0aa36b6d-b75e-3626-8f14-6c6add34fdd3,SESCO,II.5.1,Mendoza,AR-M,annual,2020,gas oil combustion consumption by agriculture machines,1603.47516,TJ,CH4,3.9,kg/TJ,6253.553124,kg +0aa36b6d-b75e-3626-8f14-6c6add34fdd3,SESCO,II.5.1,Mendoza,AR-M,annual,2020,gas oil combustion consumption by agriculture machines,1603.47516,TJ,N2O,3.9,kg/TJ,6253.553124,kg +26ff9528-4a3a-31ab-9b0c-28325ccd41db,SESCO,II.5.1,Misiones,AR-N,annual,2020,gas oil combustion consumption by agriculture machines,853.44336,TJ,CO2,74100.0,kg/TJ,63240152.975999996,kg +e792df68-0fcb-33b7-b133-53bb971d22bb,SESCO,II.5.1,Misiones,AR-N,annual,2020,gas oil combustion consumption by agriculture machines,853.44336,TJ,CH4,3.9,kg/TJ,3328.429104,kg +e792df68-0fcb-33b7-b133-53bb971d22bb,SESCO,II.5.1,Misiones,AR-N,annual,2020,gas oil combustion consumption by agriculture machines,853.44336,TJ,N2O,3.9,kg/TJ,3328.429104,kg +f30e5911-4bb6-3588-9dca-388e9a29b35e,SESCO,II.5.1,Rio Negro,AR-R,annual,2020,gas oil combustion consumption by agriculture machines,222.93264,TJ,CO2,74100.0,kg/TJ,16519308.624,kg +b05ff935-52e1-38ac-a4e7-edd699ed63b3,SESCO,II.5.1,Rio Negro,AR-R,annual,2020,gas oil combustion consumption by agriculture machines,222.93264,TJ,CH4,3.9,kg/TJ,869.437296,kg +b05ff935-52e1-38ac-a4e7-edd699ed63b3,SESCO,II.5.1,Rio Negro,AR-R,annual,2020,gas oil combustion consumption by agriculture machines,222.93264,TJ,N2O,3.9,kg/TJ,869.437296,kg +31e01f32-65e2-30f1-b384-b670b13d3a97,SESCO,II.5.1,Salta,AR-A,annual,2020,gas oil combustion consumption by agriculture machines,1250.94396,TJ,CO2,74100.0,kg/TJ,92694947.436,kg +1cf61e18-6a20-3fc8-b102-851aae4ac054,SESCO,II.5.1,Salta,AR-A,annual,2020,gas oil combustion consumption by agriculture machines,1250.94396,TJ,CH4,3.9,kg/TJ,4878.681444,kg +1cf61e18-6a20-3fc8-b102-851aae4ac054,SESCO,II.5.1,Salta,AR-A,annual,2020,gas oil combustion consumption by agriculture machines,1250.94396,TJ,N2O,3.9,kg/TJ,4878.681444,kg +52c993ad-a47e-3726-9636-e06ce49664c7,SESCO,II.5.1,San Juan,AR-J,annual,2020,gas oil combustion consumption by agriculture machines,321.90144,TJ,CO2,74100.0,kg/TJ,23852896.704,kg +d482c0aa-2199-382f-847f-fca8cfd3a3c0,SESCO,II.5.1,San Juan,AR-J,annual,2020,gas oil combustion consumption by agriculture machines,321.90144,TJ,CH4,3.9,kg/TJ,1255.415616,kg +d482c0aa-2199-382f-847f-fca8cfd3a3c0,SESCO,II.5.1,San Juan,AR-J,annual,2020,gas oil combustion consumption by agriculture machines,321.90144,TJ,N2O,3.9,kg/TJ,1255.415616,kg +71cecccd-67cf-34b9-9d53-6db895b0e4b3,SESCO,II.5.1,San Luis,AR-D,annual,2020,gas oil combustion consumption by agriculture machines,315.6888,TJ,CO2,74100.0,kg/TJ,23392540.080000002,kg +15cedf16-5d04-3c1d-9e4f-0f7b350307a6,SESCO,II.5.1,San Luis,AR-D,annual,2020,gas oil combustion consumption by agriculture machines,315.6888,TJ,CH4,3.9,kg/TJ,1231.18632,kg +15cedf16-5d04-3c1d-9e4f-0f7b350307a6,SESCO,II.5.1,San Luis,AR-D,annual,2020,gas oil combustion consumption by agriculture machines,315.6888,TJ,N2O,3.9,kg/TJ,1231.18632,kg +4e38fbb7-65b7-32ba-a403-10767922cd0f,SESCO,II.5.1,Santa Fe,AR-S,annual,2020,gas oil combustion consumption by agriculture machines,6512.50824,TJ,CO2,74100.0,kg/TJ,482576860.584,kg +b240ccba-5b5b-36f7-8836-80d3e36174bb,SESCO,II.5.1,Santa Fe,AR-S,annual,2020,gas oil combustion consumption by agriculture machines,6512.50824,TJ,CH4,3.9,kg/TJ,25398.782136,kg +b240ccba-5b5b-36f7-8836-80d3e36174bb,SESCO,II.5.1,Santa Fe,AR-S,annual,2020,gas oil combustion consumption by agriculture machines,6512.50824,TJ,N2O,3.9,kg/TJ,25398.782136,kg +ca08f67c-1f37-3159-9db7-9812c40a95e0,SESCO,II.5.1,Santiago del Estero,AR-G,annual,2020,gas oil combustion consumption by agriculture machines,1623.30504,TJ,CO2,74100.0,kg/TJ,120286903.464,kg +faed062f-8b48-3a25-87cf-5dac7e26c979,SESCO,II.5.1,Santiago del Estero,AR-G,annual,2020,gas oil combustion consumption by agriculture machines,1623.30504,TJ,CH4,3.9,kg/TJ,6330.889655999999,kg +faed062f-8b48-3a25-87cf-5dac7e26c979,SESCO,II.5.1,Santiago del Estero,AR-G,annual,2020,gas oil combustion consumption by agriculture machines,1623.30504,TJ,N2O,3.9,kg/TJ,6330.889655999999,kg +a01978a7-bd4f-3ba5-b7a5-9249c0c15fdf,SESCO,II.5.1,Tucuman,AR-T,annual,2020,gas oil combustion consumption by agriculture machines,1171.44384,TJ,CO2,74100.0,kg/TJ,86803988.544,kg +578f12e3-b601-3da1-899f-7be45abeb861,SESCO,II.5.1,Tucuman,AR-T,annual,2020,gas oil combustion consumption by agriculture machines,1171.44384,TJ,CH4,3.9,kg/TJ,4568.6309759999995,kg +578f12e3-b601-3da1-899f-7be45abeb861,SESCO,II.5.1,Tucuman,AR-T,annual,2020,gas oil combustion consumption by agriculture machines,1171.44384,TJ,N2O,3.9,kg/TJ,4568.6309759999995,kg +673ae18d-d0ca-3552-9de1-097b32e9df19,SESCO,II.5.1,Buenos Aires,AR-B,annual,2020,gas oil combustion consumption by agriculture machines,806.66796,TJ,CO2,74100.0,kg/TJ,59774095.836,kg +9be0dc30-c66c-3972-abf8-15a1067d2483,SESCO,II.5.1,Buenos Aires,AR-B,annual,2020,gas oil combustion consumption by agriculture machines,806.66796,TJ,CH4,3.9,kg/TJ,3146.005044,kg +9be0dc30-c66c-3972-abf8-15a1067d2483,SESCO,II.5.1,Buenos Aires,AR-B,annual,2020,gas oil combustion consumption by agriculture machines,806.66796,TJ,N2O,3.9,kg/TJ,3146.005044,kg +9ab24a0a-1dfb-3236-bdb3-8fc8f1723f30,SESCO,II.5.1,Capital Federal,AR-C,annual,2020,gas oil combustion consumption by agriculture machines,3.86484,TJ,CO2,74100.0,kg/TJ,286384.64400000003,kg +438558e4-8371-3a20-b88a-d0dc04a63cc6,SESCO,II.5.1,Capital Federal,AR-C,annual,2020,gas oil combustion consumption by agriculture machines,3.86484,TJ,CH4,3.9,kg/TJ,15.072875999999999,kg +438558e4-8371-3a20-b88a-d0dc04a63cc6,SESCO,II.5.1,Capital Federal,AR-C,annual,2020,gas oil combustion consumption by agriculture machines,3.86484,TJ,N2O,3.9,kg/TJ,15.072875999999999,kg +4588b479-4886-3793-8f3e-762ea0386777,SESCO,II.5.1,Catamarca,AR-K,annual,2020,gas oil combustion consumption by agriculture machines,20.62452,TJ,CO2,74100.0,kg/TJ,1528276.932,kg +7e8e9dfe-4deb-3551-9670-db0c1aa2ab4a,SESCO,II.5.1,Catamarca,AR-K,annual,2020,gas oil combustion consumption by agriculture machines,20.62452,TJ,CH4,3.9,kg/TJ,80.435628,kg +7e8e9dfe-4deb-3551-9670-db0c1aa2ab4a,SESCO,II.5.1,Catamarca,AR-K,annual,2020,gas oil combustion consumption by agriculture machines,20.62452,TJ,N2O,3.9,kg/TJ,80.435628,kg +840f559f-2a26-3883-9c17-1f44e07f8319,SESCO,II.5.1,Chaco,AR-H,annual,2020,gas oil combustion consumption by agriculture machines,43.48848,TJ,CO2,74100.0,kg/TJ,3222496.3680000002,kg +453eb875-96ea-3576-8b1e-6bffe007d58d,SESCO,II.5.1,Chaco,AR-H,annual,2020,gas oil combustion consumption by agriculture machines,43.48848,TJ,CH4,3.9,kg/TJ,169.605072,kg +453eb875-96ea-3576-8b1e-6bffe007d58d,SESCO,II.5.1,Chaco,AR-H,annual,2020,gas oil combustion consumption by agriculture machines,43.48848,TJ,N2O,3.9,kg/TJ,169.605072,kg +92ada96e-7d23-3a46-a148-becab486031c,SESCO,II.5.1,Corrientes,AR-W,annual,2020,gas oil combustion consumption by agriculture machines,39.1902,TJ,CO2,74100.0,kg/TJ,2903993.82,kg +a4db8cc9-7be0-35b4-a759-df9ddf51e5c2,SESCO,II.5.1,Corrientes,AR-W,annual,2020,gas oil combustion consumption by agriculture machines,39.1902,TJ,CH4,3.9,kg/TJ,152.84178,kg +a4db8cc9-7be0-35b4-a759-df9ddf51e5c2,SESCO,II.5.1,Corrientes,AR-W,annual,2020,gas oil combustion consumption by agriculture machines,39.1902,TJ,N2O,3.9,kg/TJ,152.84178,kg +7b7192ec-c069-3bfe-a1df-16dee08cb72e,SESCO,II.5.1,Córdoba,AR-X,annual,2020,gas oil combustion consumption by agriculture machines,493.14636,TJ,CO2,74100.0,kg/TJ,36542145.276,kg +36dffcb8-3963-3f2f-93f8-5eb8aa999d6a,SESCO,II.5.1,Córdoba,AR-X,annual,2020,gas oil combustion consumption by agriculture machines,493.14636,TJ,CH4,3.9,kg/TJ,1923.270804,kg +36dffcb8-3963-3f2f-93f8-5eb8aa999d6a,SESCO,II.5.1,Córdoba,AR-X,annual,2020,gas oil combustion consumption by agriculture machines,493.14636,TJ,N2O,3.9,kg/TJ,1923.270804,kg +24f0ee62-21c8-3195-aa83-271cf16ea6f8,SESCO,II.5.1,Entre Rios,AR-E,annual,2020,gas oil combustion consumption by agriculture machines,36.87852,TJ,CO2,74100.0,kg/TJ,2732698.332,kg +5c0cfb73-af3f-3a48-a14d-4948b2693d55,SESCO,II.5.1,Entre Rios,AR-E,annual,2020,gas oil combustion consumption by agriculture machines,36.87852,TJ,CH4,3.9,kg/TJ,143.82622800000001,kg +5c0cfb73-af3f-3a48-a14d-4948b2693d55,SESCO,II.5.1,Entre Rios,AR-E,annual,2020,gas oil combustion consumption by agriculture machines,36.87852,TJ,N2O,3.9,kg/TJ,143.82622800000001,kg +38f69280-d3f8-3c35-9701-25b16ef10289,SESCO,II.5.1,Formosa,AR-P,annual,2020,gas oil combustion consumption by agriculture machines,27.16224,TJ,CO2,74100.0,kg/TJ,2012721.984,kg +28dc202e-c8d9-3445-b12f-83af99255ed3,SESCO,II.5.1,Formosa,AR-P,annual,2020,gas oil combustion consumption by agriculture machines,27.16224,TJ,CH4,3.9,kg/TJ,105.932736,kg +28dc202e-c8d9-3445-b12f-83af99255ed3,SESCO,II.5.1,Formosa,AR-P,annual,2020,gas oil combustion consumption by agriculture machines,27.16224,TJ,N2O,3.9,kg/TJ,105.932736,kg +b84657e7-5367-3a71-b98e-7905f62fa8d2,SESCO,II.5.1,Jujuy,AR-Y,annual,2020,gas oil combustion consumption by agriculture machines,44.933279999999996,TJ,CO2,74100.0,kg/TJ,3329556.048,kg +65923aa6-618d-32d9-be98-02a279c3a514,SESCO,II.5.1,Jujuy,AR-Y,annual,2020,gas oil combustion consumption by agriculture machines,44.933279999999996,TJ,CH4,3.9,kg/TJ,175.239792,kg +65923aa6-618d-32d9-be98-02a279c3a514,SESCO,II.5.1,Jujuy,AR-Y,annual,2020,gas oil combustion consumption by agriculture machines,44.933279999999996,TJ,N2O,3.9,kg/TJ,175.239792,kg +43f891e4-fac0-33ab-ba05-ef10821ec571,SESCO,II.5.1,La Pampa,AR-L,annual,2020,gas oil combustion consumption by agriculture machines,140.00112,TJ,CO2,74100.0,kg/TJ,10374082.991999999,kg +af144b9c-0e28-3888-8897-841d37ea9891,SESCO,II.5.1,La Pampa,AR-L,annual,2020,gas oil combustion consumption by agriculture machines,140.00112,TJ,CH4,3.9,kg/TJ,546.0043679999999,kg +af144b9c-0e28-3888-8897-841d37ea9891,SESCO,II.5.1,La Pampa,AR-L,annual,2020,gas oil combustion consumption by agriculture machines,140.00112,TJ,N2O,3.9,kg/TJ,546.0043679999999,kg +2b7b8059-af6f-3a5b-ab80-bcfe3394b617,SESCO,II.5.1,La Rioja,AR-F,annual,2020,gas oil combustion consumption by agriculture machines,1.33644,TJ,CO2,74100.0,kg/TJ,99030.20400000001,kg +4a3b5d18-dd7a-35d0-b832-44a7c0140d83,SESCO,II.5.1,La Rioja,AR-F,annual,2020,gas oil combustion consumption by agriculture machines,1.33644,TJ,CH4,3.9,kg/TJ,5.212116,kg +4a3b5d18-dd7a-35d0-b832-44a7c0140d83,SESCO,II.5.1,La Rioja,AR-F,annual,2020,gas oil combustion consumption by agriculture machines,1.33644,TJ,N2O,3.9,kg/TJ,5.212116,kg +e3823fe4-2015-39d0-8777-d00e9d3d6520,SESCO,II.5.1,Mendoza,AR-M,annual,2020,gas oil combustion consumption by agriculture machines,242.79864,TJ,CO2,74100.0,kg/TJ,17991379.224,kg +45be8551-783d-3f9e-90a5-df80ccdf7800,SESCO,II.5.1,Mendoza,AR-M,annual,2020,gas oil combustion consumption by agriculture machines,242.79864,TJ,CH4,3.9,kg/TJ,946.914696,kg +45be8551-783d-3f9e-90a5-df80ccdf7800,SESCO,II.5.1,Mendoza,AR-M,annual,2020,gas oil combustion consumption by agriculture machines,242.79864,TJ,N2O,3.9,kg/TJ,946.914696,kg +d8830b46-ec3a-36ef-acc5-6d9f8b40c1c8,SESCO,II.5.1,Misiones,AR-N,annual,2020,gas oil combustion consumption by agriculture machines,80.367,TJ,CO2,74100.0,kg/TJ,5955194.7,kg +5c65978b-98bc-36ef-a4a2-3bf28bcacd7b,SESCO,II.5.1,Misiones,AR-N,annual,2020,gas oil combustion consumption by agriculture machines,80.367,TJ,CH4,3.9,kg/TJ,313.4313,kg +5c65978b-98bc-36ef-a4a2-3bf28bcacd7b,SESCO,II.5.1,Misiones,AR-N,annual,2020,gas oil combustion consumption by agriculture machines,80.367,TJ,N2O,3.9,kg/TJ,313.4313,kg +76f8a79e-6966-350c-985e-d494bfd6401d,SESCO,II.5.1,Rio Negro,AR-R,annual,2020,gas oil combustion consumption by agriculture machines,39.3708,TJ,CO2,74100.0,kg/TJ,2917376.2800000003,kg +27c7307a-3025-356c-bad5-9841d2bd2f0f,SESCO,II.5.1,Rio Negro,AR-R,annual,2020,gas oil combustion consumption by agriculture machines,39.3708,TJ,CH4,3.9,kg/TJ,153.54612,kg +27c7307a-3025-356c-bad5-9841d2bd2f0f,SESCO,II.5.1,Rio Negro,AR-R,annual,2020,gas oil combustion consumption by agriculture machines,39.3708,TJ,N2O,3.9,kg/TJ,153.54612,kg +05a43bd6-e213-3d25-beda-438cce6d9ba0,SESCO,II.5.1,Salta,AR-A,annual,2020,gas oil combustion consumption by agriculture machines,189.55776,TJ,CO2,74100.0,kg/TJ,14046230.016,kg +bbf934d6-e7ea-320c-8489-51deeee9da71,SESCO,II.5.1,Salta,AR-A,annual,2020,gas oil combustion consumption by agriculture machines,189.55776,TJ,CH4,3.9,kg/TJ,739.275264,kg +bbf934d6-e7ea-320c-8489-51deeee9da71,SESCO,II.5.1,Salta,AR-A,annual,2020,gas oil combustion consumption by agriculture machines,189.55776,TJ,N2O,3.9,kg/TJ,739.275264,kg +acbb9efe-fa82-3071-a436-94cd0e59b4ca,SESCO,II.5.1,San Juan,AR-J,annual,2020,gas oil combustion consumption by agriculture machines,66.35244,TJ,CO2,74100.0,kg/TJ,4916715.8040000005,kg +b6a55c1b-41c0-3035-805f-8f7171d0867c,SESCO,II.5.1,San Juan,AR-J,annual,2020,gas oil combustion consumption by agriculture machines,66.35244,TJ,CH4,3.9,kg/TJ,258.774516,kg +b6a55c1b-41c0-3035-805f-8f7171d0867c,SESCO,II.5.1,San Juan,AR-J,annual,2020,gas oil combustion consumption by agriculture machines,66.35244,TJ,N2O,3.9,kg/TJ,258.774516,kg +1b48a316-be22-306e-8081-a1b95b3037eb,SESCO,II.5.1,San Luis,AR-D,annual,2020,gas oil combustion consumption by agriculture machines,38.90124,TJ,CO2,74100.0,kg/TJ,2882581.884,kg +42d2c456-1307-3d9c-9fc3-5f9038bc3194,SESCO,II.5.1,San Luis,AR-D,annual,2020,gas oil combustion consumption by agriculture machines,38.90124,TJ,CH4,3.9,kg/TJ,151.714836,kg +42d2c456-1307-3d9c-9fc3-5f9038bc3194,SESCO,II.5.1,San Luis,AR-D,annual,2020,gas oil combustion consumption by agriculture machines,38.90124,TJ,N2O,3.9,kg/TJ,151.714836,kg +b7bf0bdc-d9b9-3bd3-a3bd-f8720ee40b07,SESCO,II.5.1,Santa Fe,AR-S,annual,2020,gas oil combustion consumption by agriculture machines,654.74724,TJ,CO2,74100.0,kg/TJ,48516770.484000005,kg +c7c92d17-d604-3be2-a467-9d16c2ee6de3,SESCO,II.5.1,Santa Fe,AR-S,annual,2020,gas oil combustion consumption by agriculture machines,654.74724,TJ,CH4,3.9,kg/TJ,2553.514236,kg +c7c92d17-d604-3be2-a467-9d16c2ee6de3,SESCO,II.5.1,Santa Fe,AR-S,annual,2020,gas oil combustion consumption by agriculture machines,654.74724,TJ,N2O,3.9,kg/TJ,2553.514236,kg +ae59cf59-8186-34f0-ba85-3f8589daf7ae,SESCO,II.5.1,Santiago del Estero,AR-G,annual,2020,gas oil combustion consumption by agriculture machines,203.57232,TJ,CO2,74100.0,kg/TJ,15084708.911999999,kg +093d38a4-ea2f-300c-bb2f-4048eb535927,SESCO,II.5.1,Santiago del Estero,AR-G,annual,2020,gas oil combustion consumption by agriculture machines,203.57232,TJ,CH4,3.9,kg/TJ,793.9320479999999,kg +093d38a4-ea2f-300c-bb2f-4048eb535927,SESCO,II.5.1,Santiago del Estero,AR-G,annual,2020,gas oil combustion consumption by agriculture machines,203.57232,TJ,N2O,3.9,kg/TJ,793.9320479999999,kg +72ce0191-ff44-3b8b-b2e2-0f4a9c986993,SESCO,II.5.1,Tucuman,AR-T,annual,2020,gas oil combustion consumption by agriculture machines,129.56244,TJ,CO2,74100.0,kg/TJ,9600576.804000001,kg +f6b2bb84-35fc-309a-87d9-40bc7dd7de72,SESCO,II.5.1,Tucuman,AR-T,annual,2020,gas oil combustion consumption by agriculture machines,129.56244,TJ,CH4,3.9,kg/TJ,505.293516,kg +f6b2bb84-35fc-309a-87d9-40bc7dd7de72,SESCO,II.5.1,Tucuman,AR-T,annual,2020,gas oil combustion consumption by agriculture machines,129.56244,TJ,N2O,3.9,kg/TJ,505.293516,kg +18d693ff-6f6d-33a2-ac33-d9f99d252ae4,SESCO,II.5.1,Buenos Aires,AR-B,annual,2020,jet kerosene combustion consumption by agriculture machines,5.158291999999999,TJ,CO2,71500.0,kg/TJ,368817.87799999997,kg +812afa24-741e-3926-865a-68d2dfed32b5,SESCO,II.5.1,Buenos Aires,AR-B,annual,2020,jet kerosene combustion consumption by agriculture machines,5.158291999999999,TJ,CH4,0.5,kg/TJ,2.5791459999999997,kg +7a77c70c-fa99-341f-bdc9-44a0e2a95d9e,SESCO,II.5.1,Buenos Aires,AR-B,annual,2020,jet kerosene combustion consumption by agriculture machines,5.158291999999999,TJ,N2O,2.0,kg/TJ,10.316583999999999,kg +11b9baef-3706-3fd4-9f1c-cb581ac4b75b,SESCO,II.5.1,Córdoba,AR-X,annual,2020,jet kerosene combustion consumption by agriculture machines,0.62906,TJ,CO2,71500.0,kg/TJ,44977.78999999999,kg +e4a00eb6-4649-3045-a36c-a3da6a04d8c6,SESCO,II.5.1,Córdoba,AR-X,annual,2020,jet kerosene combustion consumption by agriculture machines,0.62906,TJ,CH4,0.5,kg/TJ,0.31453,kg +845cbfb1-a493-3cfb-80e7-7a024903736c,SESCO,II.5.1,Córdoba,AR-X,annual,2020,jet kerosene combustion consumption by agriculture machines,0.62906,TJ,N2O,2.0,kg/TJ,1.25812,kg +fe5fc053-21ef-34d8-a49d-f7ca64f8c5b4,SESCO,II.5.1,Santa Fe,AR-S,annual,2020,jet kerosene combustion consumption by agriculture machines,0.8492309999999998,TJ,CO2,71500.0,kg/TJ,60720.01649999999,kg +8876fb04-a500-35d7-abe9-b8d6f9fae2bf,SESCO,II.5.1,Santa Fe,AR-S,annual,2020,jet kerosene combustion consumption by agriculture machines,0.8492309999999998,TJ,CH4,0.5,kg/TJ,0.4246154999999999,kg +f184909f-18e4-3e93-822e-727937d000e7,SESCO,II.5.1,Santa Fe,AR-S,annual,2020,jet kerosene combustion consumption by agriculture machines,0.8492309999999998,TJ,N2O,2.0,kg/TJ,1.6984619999999997,kg +1938c5fe-4efc-3ac4-88d3-fdcfac0a4799,SESCO,II.1.1,Buenos Aires,AR-B,annual,2020,gas oil combustion consumption by to the public,22938.25884,TJ,CO2,74100.0,kg/TJ,1699724980.044,kg +4fcb34a2-d154-3e4c-a2e8-b365398e57ee,SESCO,II.1.1,Buenos Aires,AR-B,annual,2020,gas oil combustion consumption by to the public,22938.25884,TJ,CH4,3.9,kg/TJ,89459.20947599999,kg +4fcb34a2-d154-3e4c-a2e8-b365398e57ee,SESCO,II.1.1,Buenos Aires,AR-B,annual,2020,gas oil combustion consumption by to the public,22938.25884,TJ,N2O,3.9,kg/TJ,89459.20947599999,kg +561f38fc-756a-3227-bf66-a5f1d9e9f267,SESCO,II.1.1,Capital Federal,AR-C,annual,2020,gas oil combustion consumption by to the public,2239.44,TJ,CO2,74100.0,kg/TJ,165942504.0,kg +5d0dca6b-745d-34a9-9ea9-2c3adb5934f8,SESCO,II.1.1,Capital Federal,AR-C,annual,2020,gas oil combustion consumption by to the public,2239.44,TJ,CH4,3.9,kg/TJ,8733.816,kg +5d0dca6b-745d-34a9-9ea9-2c3adb5934f8,SESCO,II.1.1,Capital Federal,AR-C,annual,2020,gas oil combustion consumption by to the public,2239.44,TJ,N2O,3.9,kg/TJ,8733.816,kg +de644eb7-6798-3337-8cec-365ad18fd669,SESCO,II.1.1,Catamarca,AR-K,annual,2020,gas oil combustion consumption by to the public,220.76543999999998,TJ,CO2,74100.0,kg/TJ,16358719.103999998,kg +216c1361-45a8-395c-9a20-cdf53c6785cd,SESCO,II.1.1,Catamarca,AR-K,annual,2020,gas oil combustion consumption by to the public,220.76543999999998,TJ,CH4,3.9,kg/TJ,860.9852159999999,kg +216c1361-45a8-395c-9a20-cdf53c6785cd,SESCO,II.1.1,Catamarca,AR-K,annual,2020,gas oil combustion consumption by to the public,220.76543999999998,TJ,N2O,3.9,kg/TJ,860.9852159999999,kg +16c7fa77-cfdb-331d-af06-0abed71e8f2d,SESCO,II.1.1,Chaco,AR-H,annual,2020,gas oil combustion consumption by to the public,1724.47716,TJ,CO2,74100.0,kg/TJ,127783757.556,kg +a6705d54-23bd-368c-b7c0-ca7a81d78942,SESCO,II.1.1,Chaco,AR-H,annual,2020,gas oil combustion consumption by to the public,1724.47716,TJ,CH4,3.9,kg/TJ,6725.460923999999,kg +a6705d54-23bd-368c-b7c0-ca7a81d78942,SESCO,II.1.1,Chaco,AR-H,annual,2020,gas oil combustion consumption by to the public,1724.47716,TJ,N2O,3.9,kg/TJ,6725.460923999999,kg +5d04fe82-5579-3658-8aef-787853d931ff,SESCO,II.1.1,Chubut,AR-U,annual,2020,gas oil combustion consumption by to the public,2281.30308,TJ,CO2,74100.0,kg/TJ,169044558.22800002,kg +19aef273-425e-3671-9b68-810f89384340,SESCO,II.1.1,Chubut,AR-U,annual,2020,gas oil combustion consumption by to the public,2281.30308,TJ,CH4,3.9,kg/TJ,8897.082012,kg +19aef273-425e-3671-9b68-810f89384340,SESCO,II.1.1,Chubut,AR-U,annual,2020,gas oil combustion consumption by to the public,2281.30308,TJ,N2O,3.9,kg/TJ,8897.082012,kg +65ba4503-1696-3521-a07a-08be62b6eea0,SESCO,II.1.1,Corrientes,AR-W,annual,2020,gas oil combustion consumption by to the public,1616.94792,TJ,CO2,74100.0,kg/TJ,119815840.87200001,kg +2fd7bc31-54eb-34ab-b5b5-c1f69e00f773,SESCO,II.1.1,Corrientes,AR-W,annual,2020,gas oil combustion consumption by to the public,1616.94792,TJ,CH4,3.9,kg/TJ,6306.096888,kg +2fd7bc31-54eb-34ab-b5b5-c1f69e00f773,SESCO,II.1.1,Corrientes,AR-W,annual,2020,gas oil combustion consumption by to the public,1616.94792,TJ,N2O,3.9,kg/TJ,6306.096888,kg +cd719fc8-1c26-3e9f-8b99-6c015fb0c758,SESCO,II.1.1,Córdoba,AR-X,annual,2020,gas oil combustion consumption by to the public,8539.45428,TJ,CO2,74100.0,kg/TJ,632773562.148,kg +000a9c52-71c8-3a06-a780-da31025de1bd,SESCO,II.1.1,Córdoba,AR-X,annual,2020,gas oil combustion consumption by to the public,8539.45428,TJ,CH4,3.9,kg/TJ,33303.871692,kg +000a9c52-71c8-3a06-a780-da31025de1bd,SESCO,II.1.1,Córdoba,AR-X,annual,2020,gas oil combustion consumption by to the public,8539.45428,TJ,N2O,3.9,kg/TJ,33303.871692,kg +9164b654-f3d0-3590-8caf-902295de24ba,SESCO,II.1.1,Entre Rios,AR-E,annual,2020,gas oil combustion consumption by to the public,3077.82132,TJ,CO2,74100.0,kg/TJ,228066559.812,kg +f9c5fc9e-7d46-3e67-b328-d4fb8ddda7fb,SESCO,II.1.1,Entre Rios,AR-E,annual,2020,gas oil combustion consumption by to the public,3077.82132,TJ,CH4,3.9,kg/TJ,12003.503148,kg +f9c5fc9e-7d46-3e67-b328-d4fb8ddda7fb,SESCO,II.1.1,Entre Rios,AR-E,annual,2020,gas oil combustion consumption by to the public,3077.82132,TJ,N2O,3.9,kg/TJ,12003.503148,kg +55a098b4-7fea-3848-9f9a-fee8d10b0070,SESCO,II.1.1,Formosa,AR-P,annual,2020,gas oil combustion consumption by to the public,532.11984,TJ,CO2,74100.0,kg/TJ,39430080.143999994,kg +24b4fe91-4c7d-3029-b574-3e3a7746345c,SESCO,II.1.1,Formosa,AR-P,annual,2020,gas oil combustion consumption by to the public,532.11984,TJ,CH4,3.9,kg/TJ,2075.267376,kg +24b4fe91-4c7d-3029-b574-3e3a7746345c,SESCO,II.1.1,Formosa,AR-P,annual,2020,gas oil combustion consumption by to the public,532.11984,TJ,N2O,3.9,kg/TJ,2075.267376,kg +c9583c9c-7ce0-3b48-8848-49d978782455,SESCO,II.1.1,Jujuy,AR-Y,annual,2020,gas oil combustion consumption by to the public,1188.74532,TJ,CO2,74100.0,kg/TJ,88086028.212,kg +d931880f-657c-31bc-b67f-2a99a358c0b8,SESCO,II.1.1,Jujuy,AR-Y,annual,2020,gas oil combustion consumption by to the public,1188.74532,TJ,CH4,3.9,kg/TJ,4636.106748,kg +d931880f-657c-31bc-b67f-2a99a358c0b8,SESCO,II.1.1,Jujuy,AR-Y,annual,2020,gas oil combustion consumption by to the public,1188.74532,TJ,N2O,3.9,kg/TJ,4636.106748,kg +fee62b1f-2b09-3062-b213-3886e5b130be,SESCO,II.1.1,La Pampa,AR-L,annual,2020,gas oil combustion consumption by to the public,1983.06024,TJ,CO2,74100.0,kg/TJ,146944763.784,kg +f04d5992-44c3-368b-9586-5453d53b16c0,SESCO,II.1.1,La Pampa,AR-L,annual,2020,gas oil combustion consumption by to the public,1983.06024,TJ,CH4,3.9,kg/TJ,7733.934936,kg +f04d5992-44c3-368b-9586-5453d53b16c0,SESCO,II.1.1,La Pampa,AR-L,annual,2020,gas oil combustion consumption by to the public,1983.06024,TJ,N2O,3.9,kg/TJ,7733.934936,kg +8a81d5bf-644f-3d6f-b218-83eedc24e284,SESCO,II.1.1,La Rioja,AR-F,annual,2020,gas oil combustion consumption by to the public,403.49652,TJ,CO2,74100.0,kg/TJ,29899092.132,kg +40991c8d-164b-3ea3-8d5c-8777a88c533a,SESCO,II.1.1,La Rioja,AR-F,annual,2020,gas oil combustion consumption by to the public,403.49652,TJ,CH4,3.9,kg/TJ,1573.6364279999998,kg +40991c8d-164b-3ea3-8d5c-8777a88c533a,SESCO,II.1.1,La Rioja,AR-F,annual,2020,gas oil combustion consumption by to the public,403.49652,TJ,N2O,3.9,kg/TJ,1573.6364279999998,kg +60e91bfd-a725-31a5-8ad5-a59fd725a439,SESCO,II.1.1,Mendoza,AR-M,annual,2020,gas oil combustion consumption by to the public,6946.0566,TJ,CO2,74100.0,kg/TJ,514702794.06,kg +b660a5ef-1a75-35f4-b2d9-768dea148c56,SESCO,II.1.1,Mendoza,AR-M,annual,2020,gas oil combustion consumption by to the public,6946.0566,TJ,CH4,3.9,kg/TJ,27089.62074,kg +b660a5ef-1a75-35f4-b2d9-768dea148c56,SESCO,II.1.1,Mendoza,AR-M,annual,2020,gas oil combustion consumption by to the public,6946.0566,TJ,N2O,3.9,kg/TJ,27089.62074,kg +e1979dfa-aafa-3aa2-b3ed-3267ad1cdb1c,SESCO,II.1.1,Misiones,AR-N,annual,2020,gas oil combustion consumption by to the public,2410.57656,TJ,CO2,74100.0,kg/TJ,178623723.096,kg +3fdb18ae-7aed-36a4-bfe1-ff909b22fbd1,SESCO,II.1.1,Misiones,AR-N,annual,2020,gas oil combustion consumption by to the public,2410.57656,TJ,CH4,3.9,kg/TJ,9401.248583999999,kg +3fdb18ae-7aed-36a4-bfe1-ff909b22fbd1,SESCO,II.1.1,Misiones,AR-N,annual,2020,gas oil combustion consumption by to the public,2410.57656,TJ,N2O,3.9,kg/TJ,9401.248583999999,kg +d270ccee-32b7-337f-96e3-f7ce278e86f0,SESCO,II.1.1,Neuquén,AR-Q,annual,2020,gas oil combustion consumption by to the public,1225.3709999999999,TJ,CO2,74100.0,kg/TJ,90799991.1,kg +beec72da-9a7d-3eff-96ee-7edd9ad19cf2,SESCO,II.1.1,Neuquén,AR-Q,annual,2020,gas oil combustion consumption by to the public,1225.3709999999999,TJ,CH4,3.9,kg/TJ,4778.946899999999,kg +beec72da-9a7d-3eff-96ee-7edd9ad19cf2,SESCO,II.1.1,Neuquén,AR-Q,annual,2020,gas oil combustion consumption by to the public,1225.3709999999999,TJ,N2O,3.9,kg/TJ,4778.946899999999,kg +e88eca33-b4c3-3dd9-91b0-c94caa4d0c46,SESCO,II.1.1,Rio Negro,AR-R,annual,2020,gas oil combustion consumption by to the public,2818.29912,TJ,CO2,74100.0,kg/TJ,208835964.792,kg +aa101629-a8f2-3038-abfd-be7b2446eae6,SESCO,II.1.1,Rio Negro,AR-R,annual,2020,gas oil combustion consumption by to the public,2818.29912,TJ,CH4,3.9,kg/TJ,10991.366568,kg +aa101629-a8f2-3038-abfd-be7b2446eae6,SESCO,II.1.1,Rio Negro,AR-R,annual,2020,gas oil combustion consumption by to the public,2818.29912,TJ,N2O,3.9,kg/TJ,10991.366568,kg +61be544c-3e4b-3ca2-a52f-872337ab6a96,SESCO,II.1.1,Salta,AR-A,annual,2020,gas oil combustion consumption by to the public,2887.83012,TJ,CO2,74100.0,kg/TJ,213988211.89200002,kg +3f28e7ce-0f61-3248-a9e6-a147ad4af771,SESCO,II.1.1,Salta,AR-A,annual,2020,gas oil combustion consumption by to the public,2887.83012,TJ,CH4,3.9,kg/TJ,11262.537468,kg +3f28e7ce-0f61-3248-a9e6-a147ad4af771,SESCO,II.1.1,Salta,AR-A,annual,2020,gas oil combustion consumption by to the public,2887.83012,TJ,N2O,3.9,kg/TJ,11262.537468,kg +0db8e212-8b65-3afb-89e8-916a1c09fd4f,SESCO,II.1.1,San Juan,AR-J,annual,2020,gas oil combustion consumption by to the public,1331.81664,TJ,CO2,74100.0,kg/TJ,98687613.024,kg +d920931d-8712-38b1-9b94-6f79ea7fc089,SESCO,II.1.1,San Juan,AR-J,annual,2020,gas oil combustion consumption by to the public,1331.81664,TJ,CH4,3.9,kg/TJ,5194.084896,kg +d920931d-8712-38b1-9b94-6f79ea7fc089,SESCO,II.1.1,San Juan,AR-J,annual,2020,gas oil combustion consumption by to the public,1331.81664,TJ,N2O,3.9,kg/TJ,5194.084896,kg +c5065b98-f6fd-3982-8bf3-b25141584f84,SESCO,II.1.1,San Luis,AR-D,annual,2020,gas oil combustion consumption by to the public,1007.3868,TJ,CO2,74100.0,kg/TJ,74647361.88,kg +3a00faf5-a4ff-38fc-b51a-e47e6eee32d3,SESCO,II.1.1,San Luis,AR-D,annual,2020,gas oil combustion consumption by to the public,1007.3868,TJ,CH4,3.9,kg/TJ,3928.80852,kg +3a00faf5-a4ff-38fc-b51a-e47e6eee32d3,SESCO,II.1.1,San Luis,AR-D,annual,2020,gas oil combustion consumption by to the public,1007.3868,TJ,N2O,3.9,kg/TJ,3928.80852,kg +38ef8ba8-182a-3f2a-8a26-ab335d853293,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2020,gas oil combustion consumption by to the public,1343.4472799999999,TJ,CO2,74100.0,kg/TJ,99549443.44799998,kg +2455b892-3dab-375d-bd54-e431ed93e9aa,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2020,gas oil combustion consumption by to the public,1343.4472799999999,TJ,CH4,3.9,kg/TJ,5239.444391999999,kg +2455b892-3dab-375d-bd54-e431ed93e9aa,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2020,gas oil combustion consumption by to the public,1343.4472799999999,TJ,N2O,3.9,kg/TJ,5239.444391999999,kg +484ec19c-c70e-3bef-b6b4-f35bf0081052,SESCO,II.1.1,Santa Fe,AR-S,annual,2020,gas oil combustion consumption by to the public,6775.5702,TJ,CO2,74100.0,kg/TJ,502069751.82,kg +e96c233e-9936-31a7-8810-161e0e6d2d45,SESCO,II.1.1,Santa Fe,AR-S,annual,2020,gas oil combustion consumption by to the public,6775.5702,TJ,CH4,3.9,kg/TJ,26424.72378,kg +e96c233e-9936-31a7-8810-161e0e6d2d45,SESCO,II.1.1,Santa Fe,AR-S,annual,2020,gas oil combustion consumption by to the public,6775.5702,TJ,N2O,3.9,kg/TJ,26424.72378,kg +9ecb4556-c5aa-3b95-9640-b38fbde736e6,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2020,gas oil combustion consumption by to the public,2029.36608,TJ,CO2,74100.0,kg/TJ,150376026.528,kg +cc47dd12-6cd3-38f7-a50e-6595c4b207cb,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2020,gas oil combustion consumption by to the public,2029.36608,TJ,CH4,3.9,kg/TJ,7914.527712,kg +cc47dd12-6cd3-38f7-a50e-6595c4b207cb,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2020,gas oil combustion consumption by to the public,2029.36608,TJ,N2O,3.9,kg/TJ,7914.527712,kg +c2a0f302-361b-3566-894c-5f68437e555d,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2020,gas oil combustion consumption by to the public,583.12128,TJ,CO2,74100.0,kg/TJ,43209286.848,kg +e4a7201b-cc68-37ea-972c-9ba41894d6e6,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2020,gas oil combustion consumption by to the public,583.12128,TJ,CH4,3.9,kg/TJ,2274.172992,kg +e4a7201b-cc68-37ea-972c-9ba41894d6e6,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2020,gas oil combustion consumption by to the public,583.12128,TJ,N2O,3.9,kg/TJ,2274.172992,kg +a5b89033-a547-36a4-9539-bd5e985a9239,SESCO,II.1.1,Tucuman,AR-T,annual,2020,gas oil combustion consumption by to the public,1720.10664,TJ,CO2,74100.0,kg/TJ,127459902.024,kg +48ddfcdb-3315-3b3a-9eca-adba9d3bb83d,SESCO,II.1.1,Tucuman,AR-T,annual,2020,gas oil combustion consumption by to the public,1720.10664,TJ,CH4,3.9,kg/TJ,6708.4158959999995,kg +48ddfcdb-3315-3b3a-9eca-adba9d3bb83d,SESCO,II.1.1,Tucuman,AR-T,annual,2020,gas oil combustion consumption by to the public,1720.10664,TJ,N2O,3.9,kg/TJ,6708.4158959999995,kg +04e23bc3-e1e1-30cb-b1ef-98b63aed02e3,SESCO,II.1.1,Buenos Aires,AR-B,annual,2020,gas oil combustion consumption by to the public,12036.99,TJ,CO2,74100.0,kg/TJ,891940959.0,kg +1f5e23c4-ce0f-3019-b529-894d3342b0ad,SESCO,II.1.1,Buenos Aires,AR-B,annual,2020,gas oil combustion consumption by to the public,12036.99,TJ,CH4,3.9,kg/TJ,46944.261,kg +1f5e23c4-ce0f-3019-b529-894d3342b0ad,SESCO,II.1.1,Buenos Aires,AR-B,annual,2020,gas oil combustion consumption by to the public,12036.99,TJ,N2O,3.9,kg/TJ,46944.261,kg +49a21dc6-bade-3e46-aa98-4cdd2a45fc62,SESCO,II.1.1,Capital Federal,AR-C,annual,2020,gas oil combustion consumption by to the public,1523.1804,TJ,CO2,74100.0,kg/TJ,112867667.64,kg +0da52e38-03f4-37a4-a3b4-756b99f1e86c,SESCO,II.1.1,Capital Federal,AR-C,annual,2020,gas oil combustion consumption by to the public,1523.1804,TJ,CH4,3.9,kg/TJ,5940.40356,kg +0da52e38-03f4-37a4-a3b4-756b99f1e86c,SESCO,II.1.1,Capital Federal,AR-C,annual,2020,gas oil combustion consumption by to the public,1523.1804,TJ,N2O,3.9,kg/TJ,5940.40356,kg +a3a929e4-5d0f-3303-a250-d057eeb7eed5,SESCO,II.1.1,Catamarca,AR-K,annual,2020,gas oil combustion consumption by to the public,266.16828,TJ,CO2,74100.0,kg/TJ,19723069.548,kg +4fc619f5-2ce1-3f57-a1b5-2cd8834a7086,SESCO,II.1.1,Catamarca,AR-K,annual,2020,gas oil combustion consumption by to the public,266.16828,TJ,CH4,3.9,kg/TJ,1038.056292,kg +4fc619f5-2ce1-3f57-a1b5-2cd8834a7086,SESCO,II.1.1,Catamarca,AR-K,annual,2020,gas oil combustion consumption by to the public,266.16828,TJ,N2O,3.9,kg/TJ,1038.056292,kg +e31c8508-cdc9-3341-8b86-2a159f1999c7,SESCO,II.1.1,Chaco,AR-H,annual,2020,gas oil combustion consumption by to the public,870.02244,TJ,CO2,74100.0,kg/TJ,64468662.804,kg +48f657d4-3b76-32ad-8d76-74a61d20af1d,SESCO,II.1.1,Chaco,AR-H,annual,2020,gas oil combustion consumption by to the public,870.02244,TJ,CH4,3.9,kg/TJ,3393.0875159999996,kg +48f657d4-3b76-32ad-8d76-74a61d20af1d,SESCO,II.1.1,Chaco,AR-H,annual,2020,gas oil combustion consumption by to the public,870.02244,TJ,N2O,3.9,kg/TJ,3393.0875159999996,kg +9e2af05d-f132-354f-8efb-8fb83bf6ff9a,SESCO,II.1.1,Chubut,AR-U,annual,2020,gas oil combustion consumption by to the public,1479.36684,TJ,CO2,74100.0,kg/TJ,109621082.844,kg +d389c2b0-7ad6-3b98-8a78-7da7541345d1,SESCO,II.1.1,Chubut,AR-U,annual,2020,gas oil combustion consumption by to the public,1479.36684,TJ,CH4,3.9,kg/TJ,5769.530675999999,kg +d389c2b0-7ad6-3b98-8a78-7da7541345d1,SESCO,II.1.1,Chubut,AR-U,annual,2020,gas oil combustion consumption by to the public,1479.36684,TJ,N2O,3.9,kg/TJ,5769.530675999999,kg +590d5da5-57e0-345f-8898-2472a7789930,SESCO,II.1.1,Corrientes,AR-W,annual,2020,gas oil combustion consumption by to the public,914.4861599999999,TJ,CO2,74100.0,kg/TJ,67763424.456,kg +bb323e78-8d87-3d03-adca-64823070a982,SESCO,II.1.1,Corrientes,AR-W,annual,2020,gas oil combustion consumption by to the public,914.4861599999999,TJ,CH4,3.9,kg/TJ,3566.4960239999996,kg +bb323e78-8d87-3d03-adca-64823070a982,SESCO,II.1.1,Corrientes,AR-W,annual,2020,gas oil combustion consumption by to the public,914.4861599999999,TJ,N2O,3.9,kg/TJ,3566.4960239999996,kg +e2a0ff2c-2f96-3eaf-b364-ece9dfd12972,SESCO,II.1.1,Córdoba,AR-X,annual,2020,gas oil combustion consumption by to the public,3753.0486,TJ,CO2,74100.0,kg/TJ,278100901.26,kg +60fbaf7d-10e2-3de6-8566-c72b9088a471,SESCO,II.1.1,Córdoba,AR-X,annual,2020,gas oil combustion consumption by to the public,3753.0486,TJ,CH4,3.9,kg/TJ,14636.88954,kg +60fbaf7d-10e2-3de6-8566-c72b9088a471,SESCO,II.1.1,Córdoba,AR-X,annual,2020,gas oil combustion consumption by to the public,3753.0486,TJ,N2O,3.9,kg/TJ,14636.88954,kg +d57a8f59-aa2a-395f-ac2f-f37d9cfce4ed,SESCO,II.1.1,Entre Rios,AR-E,annual,2020,gas oil combustion consumption by to the public,1261.81608,TJ,CO2,74100.0,kg/TJ,93500571.528,kg +730683d8-b923-310f-aab1-9566c33f0b06,SESCO,II.1.1,Entre Rios,AR-E,annual,2020,gas oil combustion consumption by to the public,1261.81608,TJ,CH4,3.9,kg/TJ,4921.082712,kg +730683d8-b923-310f-aab1-9566c33f0b06,SESCO,II.1.1,Entre Rios,AR-E,annual,2020,gas oil combustion consumption by to the public,1261.81608,TJ,N2O,3.9,kg/TJ,4921.082712,kg +6ce7c612-c5b8-3d86-b7de-f52b80d2d54d,SESCO,II.1.1,Formosa,AR-P,annual,2020,gas oil combustion consumption by to the public,324.64656,TJ,CO2,74100.0,kg/TJ,24056310.096,kg +16a9c257-5bb8-31c1-94c6-1ca40e0d933c,SESCO,II.1.1,Formosa,AR-P,annual,2020,gas oil combustion consumption by to the public,324.64656,TJ,CH4,3.9,kg/TJ,1266.121584,kg +16a9c257-5bb8-31c1-94c6-1ca40e0d933c,SESCO,II.1.1,Formosa,AR-P,annual,2020,gas oil combustion consumption by to the public,324.64656,TJ,N2O,3.9,kg/TJ,1266.121584,kg +9eddc1d1-8862-35ff-b7e5-a4f1afb07cda,SESCO,II.1.1,Jujuy,AR-Y,annual,2020,gas oil combustion consumption by to the public,684.6546,TJ,CO2,74100.0,kg/TJ,50732905.86,kg +1b30c1e5-53b5-3be5-9efe-6653b267e2dd,SESCO,II.1.1,Jujuy,AR-Y,annual,2020,gas oil combustion consumption by to the public,684.6546,TJ,CH4,3.9,kg/TJ,2670.15294,kg +1b30c1e5-53b5-3be5-9efe-6653b267e2dd,SESCO,II.1.1,Jujuy,AR-Y,annual,2020,gas oil combustion consumption by to the public,684.6546,TJ,N2O,3.9,kg/TJ,2670.15294,kg +de40da33-a7aa-3699-a5bd-8224ebc7a556,SESCO,II.1.1,La Pampa,AR-L,annual,2020,gas oil combustion consumption by to the public,941.35944,TJ,CO2,74100.0,kg/TJ,69754734.504,kg +eb21cc64-88ed-37c7-8f3d-042839b1ccaa,SESCO,II.1.1,La Pampa,AR-L,annual,2020,gas oil combustion consumption by to the public,941.35944,TJ,CH4,3.9,kg/TJ,3671.3018159999997,kg +eb21cc64-88ed-37c7-8f3d-042839b1ccaa,SESCO,II.1.1,La Pampa,AR-L,annual,2020,gas oil combustion consumption by to the public,941.35944,TJ,N2O,3.9,kg/TJ,3671.3018159999997,kg +b8eb82f1-60f5-3dcd-83d1-eca8e869b041,SESCO,II.1.1,La Rioja,AR-F,annual,2020,gas oil combustion consumption by to the public,351.19476,TJ,CO2,74100.0,kg/TJ,26023531.716,kg +1c873c9a-d9c1-3cc4-aaaa-761ed2755d8b,SESCO,II.1.1,La Rioja,AR-F,annual,2020,gas oil combustion consumption by to the public,351.19476,TJ,CH4,3.9,kg/TJ,1369.6595639999998,kg +1c873c9a-d9c1-3cc4-aaaa-761ed2755d8b,SESCO,II.1.1,La Rioja,AR-F,annual,2020,gas oil combustion consumption by to the public,351.19476,TJ,N2O,3.9,kg/TJ,1369.6595639999998,kg +0b1da162-e857-3be2-83ad-82ec47704fbc,SESCO,II.1.1,Mendoza,AR-M,annual,2020,gas oil combustion consumption by to the public,2767.80336,TJ,CO2,74100.0,kg/TJ,205094228.97599998,kg +164b3338-b6bf-3b5b-8ea2-e50552c168a1,SESCO,II.1.1,Mendoza,AR-M,annual,2020,gas oil combustion consumption by to the public,2767.80336,TJ,CH4,3.9,kg/TJ,10794.433104,kg +164b3338-b6bf-3b5b-8ea2-e50552c168a1,SESCO,II.1.1,Mendoza,AR-M,annual,2020,gas oil combustion consumption by to the public,2767.80336,TJ,N2O,3.9,kg/TJ,10794.433104,kg +68a98535-0293-3dcf-9824-d8cba51fc49e,SESCO,II.1.1,Misiones,AR-N,annual,2020,gas oil combustion consumption by to the public,1057.12404,TJ,CO2,74100.0,kg/TJ,78332891.364,kg +302502e0-57f9-3fe3-b566-b2903727267c,SESCO,II.1.1,Misiones,AR-N,annual,2020,gas oil combustion consumption by to the public,1057.12404,TJ,CH4,3.9,kg/TJ,4122.783756,kg +302502e0-57f9-3fe3-b566-b2903727267c,SESCO,II.1.1,Misiones,AR-N,annual,2020,gas oil combustion consumption by to the public,1057.12404,TJ,N2O,3.9,kg/TJ,4122.783756,kg +ddf4c9c2-7c53-3709-9e04-9cda972f5771,SESCO,II.1.1,Neuquén,AR-Q,annual,2020,gas oil combustion consumption by to the public,1716.09732,TJ,CO2,74100.0,kg/TJ,127162811.412,kg +1a7fe81d-0b24-350e-9fe3-e94f035be7fb,SESCO,II.1.1,Neuquén,AR-Q,annual,2020,gas oil combustion consumption by to the public,1716.09732,TJ,CH4,3.9,kg/TJ,6692.779548,kg +1a7fe81d-0b24-350e-9fe3-e94f035be7fb,SESCO,II.1.1,Neuquén,AR-Q,annual,2020,gas oil combustion consumption by to the public,1716.09732,TJ,N2O,3.9,kg/TJ,6692.779548,kg +5a3911d5-af1e-3638-bf57-8ad659866960,SESCO,II.1.1,Rio Negro,AR-R,annual,2020,gas oil combustion consumption by to the public,1289.23116,TJ,CO2,74100.0,kg/TJ,95532028.956,kg +bb0699d5-7f23-3f71-a115-f6aa4085e98c,SESCO,II.1.1,Rio Negro,AR-R,annual,2020,gas oil combustion consumption by to the public,1289.23116,TJ,CH4,3.9,kg/TJ,5028.001524,kg +bb0699d5-7f23-3f71-a115-f6aa4085e98c,SESCO,II.1.1,Rio Negro,AR-R,annual,2020,gas oil combustion consumption by to the public,1289.23116,TJ,N2O,3.9,kg/TJ,5028.001524,kg +ce570e24-0514-3e55-abd9-ced18e01a3ec,SESCO,II.1.1,Salta,AR-A,annual,2020,gas oil combustion consumption by to the public,1495.9820399999999,TJ,CO2,74100.0,kg/TJ,110852269.16399999,kg +ab49da67-ed8e-3bc4-9e5c-f7222457aaa8,SESCO,II.1.1,Salta,AR-A,annual,2020,gas oil combustion consumption by to the public,1495.9820399999999,TJ,CH4,3.9,kg/TJ,5834.329956,kg +ab49da67-ed8e-3bc4-9e5c-f7222457aaa8,SESCO,II.1.1,Salta,AR-A,annual,2020,gas oil combustion consumption by to the public,1495.9820399999999,TJ,N2O,3.9,kg/TJ,5834.329956,kg +a25e4715-d7f5-3385-9b86-51870002fbb1,SESCO,II.1.1,San Juan,AR-J,annual,2020,gas oil combustion consumption by to the public,658.7204399999999,TJ,CO2,74100.0,kg/TJ,48811184.603999995,kg +31090056-1a1a-35f3-8e1e-87b0b2f3eebb,SESCO,II.1.1,San Juan,AR-J,annual,2020,gas oil combustion consumption by to the public,658.7204399999999,TJ,CH4,3.9,kg/TJ,2569.0097159999996,kg +31090056-1a1a-35f3-8e1e-87b0b2f3eebb,SESCO,II.1.1,San Juan,AR-J,annual,2020,gas oil combustion consumption by to the public,658.7204399999999,TJ,N2O,3.9,kg/TJ,2569.0097159999996,kg +40c41146-8416-3445-adce-87a6cab2aebc,SESCO,II.1.1,San Luis,AR-D,annual,2020,gas oil combustion consumption by to the public,475.55592,TJ,CO2,74100.0,kg/TJ,35238693.672,kg +d7907047-f995-3f69-81a3-df7871cd462b,SESCO,II.1.1,San Luis,AR-D,annual,2020,gas oil combustion consumption by to the public,475.55592,TJ,CH4,3.9,kg/TJ,1854.6680880000001,kg +d7907047-f995-3f69-81a3-df7871cd462b,SESCO,II.1.1,San Luis,AR-D,annual,2020,gas oil combustion consumption by to the public,475.55592,TJ,N2O,3.9,kg/TJ,1854.6680880000001,kg +0d37da98-317d-39dc-9a2a-86e542297cb6,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2020,gas oil combustion consumption by to the public,989.1462,TJ,CO2,74100.0,kg/TJ,73295733.42,kg +97c260a0-b8ea-3ad3-85d2-e5865b44dff7,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2020,gas oil combustion consumption by to the public,989.1462,TJ,CH4,3.9,kg/TJ,3857.67018,kg +97c260a0-b8ea-3ad3-85d2-e5865b44dff7,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2020,gas oil combustion consumption by to the public,989.1462,TJ,N2O,3.9,kg/TJ,3857.67018,kg +80eab6a1-be86-3a6c-adb5-2ebd622d15f3,SESCO,II.1.1,Santa Fe,AR-S,annual,2020,gas oil combustion consumption by to the public,2903.5062,TJ,CO2,74100.0,kg/TJ,215149809.42,kg +d5915a33-0eab-388f-9e7d-0bbf14485118,SESCO,II.1.1,Santa Fe,AR-S,annual,2020,gas oil combustion consumption by to the public,2903.5062,TJ,CH4,3.9,kg/TJ,11323.674179999998,kg +d5915a33-0eab-388f-9e7d-0bbf14485118,SESCO,II.1.1,Santa Fe,AR-S,annual,2020,gas oil combustion consumption by to the public,2903.5062,TJ,N2O,3.9,kg/TJ,11323.674179999998,kg +72a982a7-2abb-3f63-a909-a3d20edb3a69,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2020,gas oil combustion consumption by to the public,744.83052,TJ,CO2,74100.0,kg/TJ,55191941.532,kg +907e4ff6-bccf-3e2e-9a70-fef7139d3c9e,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2020,gas oil combustion consumption by to the public,744.83052,TJ,CH4,3.9,kg/TJ,2904.839028,kg +907e4ff6-bccf-3e2e-9a70-fef7139d3c9e,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2020,gas oil combustion consumption by to the public,744.83052,TJ,N2O,3.9,kg/TJ,2904.839028,kg +7950a466-72b8-3eac-807c-164e73a3df00,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2020,gas oil combustion consumption by to the public,289.64628,TJ,CO2,74100.0,kg/TJ,21462789.347999997,kg +8c0d19fe-c803-37b7-8b3f-57fab9553d49,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2020,gas oil combustion consumption by to the public,289.64628,TJ,CH4,3.9,kg/TJ,1129.620492,kg +8c0d19fe-c803-37b7-8b3f-57fab9553d49,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2020,gas oil combustion consumption by to the public,289.64628,TJ,N2O,3.9,kg/TJ,1129.620492,kg +84e1fe65-94ad-30c2-962a-0ffdac03545c,SESCO,II.1.1,Tucuman,AR-T,annual,2020,gas oil combustion consumption by to the public,1012.04628,TJ,CO2,74100.0,kg/TJ,74992629.348,kg +3a27c432-3f73-31a6-84d5-6e43fda64d2c,SESCO,II.1.1,Tucuman,AR-T,annual,2020,gas oil combustion consumption by to the public,1012.04628,TJ,CH4,3.9,kg/TJ,3946.980492,kg +3a27c432-3f73-31a6-84d5-6e43fda64d2c,SESCO,II.1.1,Tucuman,AR-T,annual,2020,gas oil combustion consumption by to the public,1012.04628,TJ,N2O,3.9,kg/TJ,3946.980492,kg +befde466-2906-3dc5-af6e-50561e590fcf,SESCO,II.1.1,Buenos Aires,AR-B,annual,2020,jet kerosene combustion consumption by to the public,81.55762899999999,TJ,CO2,71500.0,kg/TJ,5831370.473499999,kg +2dd04fcb-0b2b-3537-b3ab-57a3f79e4793,SESCO,II.1.1,Buenos Aires,AR-B,annual,2020,jet kerosene combustion consumption by to the public,81.55762899999999,TJ,CH4,0.5,kg/TJ,40.778814499999996,kg +b2d04abb-aae8-33c1-9fa6-6aa2a94e680d,SESCO,II.1.1,Buenos Aires,AR-B,annual,2020,jet kerosene combustion consumption by to the public,81.55762899999999,TJ,N2O,2.0,kg/TJ,163.11525799999998,kg +22f52efe-c76d-3b6d-9727-38b61a37a378,SESCO,II.1.1,Capital Federal,AR-C,annual,2020,jet kerosene combustion consumption by to the public,2.4218809999999995,TJ,CO2,71500.0,kg/TJ,173164.49149999997,kg +a673fdb1-2549-31a9-ba39-eca46fcc5552,SESCO,II.1.1,Capital Federal,AR-C,annual,2020,jet kerosene combustion consumption by to the public,2.4218809999999995,TJ,CH4,0.5,kg/TJ,1.2109404999999998,kg +f95a2184-700b-379a-ac83-3240662405ed,SESCO,II.1.1,Capital Federal,AR-C,annual,2020,jet kerosene combustion consumption by to the public,2.4218809999999995,TJ,N2O,2.0,kg/TJ,4.843761999999999,kg +582020bb-c93e-3dfe-afb3-8a19f3ed7b58,SESCO,II.1.1,Catamarca,AR-K,annual,2020,jet kerosene combustion consumption by to the public,3.2082059999999997,TJ,CO2,71500.0,kg/TJ,229386.72899999996,kg +fbbe206c-f91e-3002-b56d-0bdc6b4a4034,SESCO,II.1.1,Catamarca,AR-K,annual,2020,jet kerosene combustion consumption by to the public,3.2082059999999997,TJ,CH4,0.5,kg/TJ,1.6041029999999998,kg +bf171c1d-ff8f-3da7-be87-821f29465fe5,SESCO,II.1.1,Catamarca,AR-K,annual,2020,jet kerosene combustion consumption by to the public,3.2082059999999997,TJ,N2O,2.0,kg/TJ,6.416411999999999,kg +48639cdf-4a18-3760-b875-c41a138480c4,SESCO,II.1.1,Chubut,AR-U,annual,2020,jet kerosene combustion consumption by to the public,8.649574999999999,TJ,CO2,71500.0,kg/TJ,618444.6124999999,kg +e6d82f26-cf27-3c28-92c6-7dc3849cfac5,SESCO,II.1.1,Chubut,AR-U,annual,2020,jet kerosene combustion consumption by to the public,8.649574999999999,TJ,CH4,0.5,kg/TJ,4.324787499999999,kg +68259324-2dae-3846-b20c-b39b786c3a0d,SESCO,II.1.1,Chubut,AR-U,annual,2020,jet kerosene combustion consumption by to the public,8.649574999999999,TJ,N2O,2.0,kg/TJ,17.299149999999997,kg +5a0f8c3f-6910-37ed-bf9d-136ab380959f,SESCO,II.1.1,Corrientes,AR-W,annual,2020,jet kerosene combustion consumption by to the public,0.9750429999999999,TJ,CO2,71500.0,kg/TJ,69715.57449999999,kg +44dcc40c-9dbb-31b3-b675-643162367e71,SESCO,II.1.1,Corrientes,AR-W,annual,2020,jet kerosene combustion consumption by to the public,0.9750429999999999,TJ,CH4,0.5,kg/TJ,0.48752149999999994,kg +86422a08-1807-3ba0-9ca4-9663bb897741,SESCO,II.1.1,Corrientes,AR-W,annual,2020,jet kerosene combustion consumption by to the public,0.9750429999999999,TJ,N2O,2.0,kg/TJ,1.9500859999999998,kg +b0b99c1b-1a4b-3c63-a1b1-c1249e764f7a,SESCO,II.1.1,Córdoba,AR-X,annual,2020,jet kerosene combustion consumption by to the public,29.408554999999996,TJ,CO2,71500.0,kg/TJ,2102711.6824999996,kg +12844e80-2abd-3e79-ac6b-65a8a721e2d2,SESCO,II.1.1,Córdoba,AR-X,annual,2020,jet kerosene combustion consumption by to the public,29.408554999999996,TJ,CH4,0.5,kg/TJ,14.704277499999998,kg +ca6f5ca4-7403-31c7-a629-ce6a3e0ab1cc,SESCO,II.1.1,Córdoba,AR-X,annual,2020,jet kerosene combustion consumption by to the public,29.408554999999996,TJ,N2O,2.0,kg/TJ,58.81710999999999,kg +85f6ddbd-debb-38f4-ad3a-cf2f6200a88c,SESCO,II.1.1,Entre Rios,AR-E,annual,2020,jet kerosene combustion consumption by to the public,4.655043999999999,TJ,CO2,71500.0,kg/TJ,332835.64599999995,kg +6e204c51-f3b5-3bcb-b679-58a3e088ded8,SESCO,II.1.1,Entre Rios,AR-E,annual,2020,jet kerosene combustion consumption by to the public,4.655043999999999,TJ,CH4,0.5,kg/TJ,2.3275219999999996,kg +58eaa138-e2a1-3826-8bf2-8446c8072f85,SESCO,II.1.1,Entre Rios,AR-E,annual,2020,jet kerosene combustion consumption by to the public,4.655043999999999,TJ,N2O,2.0,kg/TJ,9.310087999999999,kg +3313a732-9021-33cf-bc69-58a577d0a294,SESCO,II.1.1,La Pampa,AR-L,annual,2020,jet kerosene combustion consumption by to the public,2.4847869999999994,TJ,CO2,71500.0,kg/TJ,177662.27049999996,kg +3f94a097-d012-3bfa-8254-3b67718e0bbf,SESCO,II.1.1,La Pampa,AR-L,annual,2020,jet kerosene combustion consumption by to the public,2.4847869999999994,TJ,CH4,0.5,kg/TJ,1.2423934999999997,kg +5cfaaa57-1cc2-3b7a-82a9-7b65e906e20d,SESCO,II.1.1,La Pampa,AR-L,annual,2020,jet kerosene combustion consumption by to the public,2.4847869999999994,TJ,N2O,2.0,kg/TJ,4.969573999999999,kg +04beaf8c-16c6-346f-a1a1-9cce874aacb9,SESCO,II.1.1,La Rioja,AR-F,annual,2020,jet kerosene combustion consumption by to the public,1.0064959999999998,TJ,CO2,71500.0,kg/TJ,71964.46399999999,kg +f8ddd83f-2c0c-3e76-a6fe-b5341d1086ee,SESCO,II.1.1,La Rioja,AR-F,annual,2020,jet kerosene combustion consumption by to the public,1.0064959999999998,TJ,CH4,0.5,kg/TJ,0.5032479999999999,kg +079bb35b-b01a-3021-afd5-16062ab5839f,SESCO,II.1.1,La Rioja,AR-F,annual,2020,jet kerosene combustion consumption by to the public,1.0064959999999998,TJ,N2O,2.0,kg/TJ,2.0129919999999997,kg +c9c48108-28ee-3a80-8450-c2feaa8f931e,SESCO,II.1.1,Mendoza,AR-M,annual,2020,jet kerosene combustion consumption by to the public,11.448891999999999,TJ,CO2,71500.0,kg/TJ,818595.7779999999,kg +3a04d1c1-ac62-39ea-9b42-25c508139d26,SESCO,II.1.1,Mendoza,AR-M,annual,2020,jet kerosene combustion consumption by to the public,11.448891999999999,TJ,CH4,0.5,kg/TJ,5.7244459999999995,kg +f55ec707-9359-3fe8-88da-213a173938e2,SESCO,II.1.1,Mendoza,AR-M,annual,2020,jet kerosene combustion consumption by to the public,11.448891999999999,TJ,N2O,2.0,kg/TJ,22.897783999999998,kg +2922812a-d2f2-3bca-913e-c8ac82bbf696,SESCO,II.1.1,Neuquén,AR-Q,annual,2020,jet kerosene combustion consumption by to the public,5.0953859999999995,TJ,CO2,71500.0,kg/TJ,364320.099,kg +a496dd78-14f5-38cf-9353-ae6c2487fba9,SESCO,II.1.1,Neuquén,AR-Q,annual,2020,jet kerosene combustion consumption by to the public,5.0953859999999995,TJ,CH4,0.5,kg/TJ,2.5476929999999998,kg +cd2c719e-00d7-3f54-bd5d-0548e37963e7,SESCO,II.1.1,Neuquén,AR-Q,annual,2020,jet kerosene combustion consumption by to the public,5.0953859999999995,TJ,N2O,2.0,kg/TJ,10.190771999999999,kg +1c58334c-5994-36ed-a237-047eff2d260e,SESCO,II.1.1,San Juan,AR-J,annual,2020,jet kerosene combustion consumption by to the public,3.6800009999999994,TJ,CO2,71500.0,kg/TJ,263120.07149999996,kg +838acfb7-4d6f-3684-a6ef-b5bd46c62336,SESCO,II.1.1,San Juan,AR-J,annual,2020,jet kerosene combustion consumption by to the public,3.6800009999999994,TJ,CH4,0.5,kg/TJ,1.8400004999999997,kg +18e9e6ad-7970-3b98-8c61-a67843565b43,SESCO,II.1.1,San Juan,AR-J,annual,2020,jet kerosene combustion consumption by to the public,3.6800009999999994,TJ,N2O,2.0,kg/TJ,7.360001999999999,kg +7ecf092d-150d-3b3f-a2e8-bf5695ae535c,SESCO,II.1.1,San Luis,AR-D,annual,2020,jet kerosene combustion consumption by to the public,5.1268389999999995,TJ,CO2,71500.0,kg/TJ,366568.9885,kg +30dc4976-97a1-3bde-a8e7-c2146f02a0db,SESCO,II.1.1,San Luis,AR-D,annual,2020,jet kerosene combustion consumption by to the public,5.1268389999999995,TJ,CH4,0.5,kg/TJ,2.5634194999999997,kg +f6d2ea1b-12d8-3e3c-b3d6-fb2c82969034,SESCO,II.1.1,San Luis,AR-D,annual,2020,jet kerosene combustion consumption by to the public,5.1268389999999995,TJ,N2O,2.0,kg/TJ,10.253677999999999,kg +ffaf6c9b-75cf-3ee0-9c2d-2585cbfdc2c4,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2020,jet kerosene combustion consumption by to the public,3.5856419999999996,TJ,CO2,71500.0,kg/TJ,256373.40299999996,kg +7efbb965-8b7e-3cd9-ac5c-f4731db873d6,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2020,jet kerosene combustion consumption by to the public,3.5856419999999996,TJ,CH4,0.5,kg/TJ,1.7928209999999998,kg +2696e191-18df-3149-a57f-af3dcc22d646,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2020,jet kerosene combustion consumption by to the public,3.5856419999999996,TJ,N2O,2.0,kg/TJ,7.171283999999999,kg +9c656434-3956-34e8-940c-f12c83c401bf,SESCO,II.1.1,Santa Fe,AR-S,annual,2020,jet kerosene combustion consumption by to the public,19.595218999999997,TJ,CO2,71500.0,kg/TJ,1401058.1584999997,kg +ec31f870-bf14-3996-9f9a-2fada03ebb55,SESCO,II.1.1,Santa Fe,AR-S,annual,2020,jet kerosene combustion consumption by to the public,19.595218999999997,TJ,CH4,0.5,kg/TJ,9.797609499999998,kg +6b5ef0f1-45a9-3cba-bc8c-be9b0a0cf5f5,SESCO,II.1.1,Santa Fe,AR-S,annual,2020,jet kerosene combustion consumption by to the public,19.595218999999997,TJ,N2O,2.0,kg/TJ,39.19043799999999,kg +04eb795d-a9ab-37c7-965a-8ced830cb51b,SESCO,II.1.1,Tucuman,AR-T,annual,2020,jet kerosene combustion consumption by to the public,9.467353,TJ,CO2,71500.0,kg/TJ,676915.7394999999,kg +37ba76ab-0475-3735-b2e8-97ef4d5ee20a,SESCO,II.1.1,Tucuman,AR-T,annual,2020,jet kerosene combustion consumption by to the public,9.467353,TJ,CH4,0.5,kg/TJ,4.7336765,kg +cbf90c67-fc03-3ecb-ae66-d9663ddcc2e1,SESCO,II.1.1,Tucuman,AR-T,annual,2020,jet kerosene combustion consumption by to the public,9.467353,TJ,N2O,2.0,kg/TJ,18.934706,kg +9acfcf4d-7f2a-302d-8d8d-2e7f424784b2,SESCO,II.1.1,Buenos Aires,AR-B,annual,2020,gas oil combustion consumption by freight transport,8155.534799999999,TJ,CO2,74100.0,kg/TJ,604325128.68,kg +4756b67d-8868-3b73-9537-cdf068ea3ade,SESCO,II.1.1,Buenos Aires,AR-B,annual,2020,gas oil combustion consumption by freight transport,8155.534799999999,TJ,CH4,3.9,kg/TJ,31806.585719999995,kg +4756b67d-8868-3b73-9537-cdf068ea3ade,SESCO,II.1.1,Buenos Aires,AR-B,annual,2020,gas oil combustion consumption by freight transport,8155.534799999999,TJ,N2O,3.9,kg/TJ,31806.585719999995,kg +3047e72b-c7b3-31a3-bdb2-a3e318a09060,SESCO,II.1.1,Capital Federal,AR-C,annual,2020,gas oil combustion consumption by freight transport,3115.06104,TJ,CO2,74100.0,kg/TJ,230826023.064,kg +366327a7-4812-3e12-a308-07fe22c7f136,SESCO,II.1.1,Capital Federal,AR-C,annual,2020,gas oil combustion consumption by freight transport,3115.06104,TJ,CH4,3.9,kg/TJ,12148.738056,kg +366327a7-4812-3e12-a308-07fe22c7f136,SESCO,II.1.1,Capital Federal,AR-C,annual,2020,gas oil combustion consumption by freight transport,3115.06104,TJ,N2O,3.9,kg/TJ,12148.738056,kg +fd2e4ef3-5cbf-3112-a108-32c077237207,SESCO,II.1.1,Catamarca,AR-K,annual,2020,gas oil combustion consumption by freight transport,22.90008,TJ,CO2,74100.0,kg/TJ,1696895.9279999998,kg +6fd2f12f-1c9b-3398-86bd-3f4b4cab810f,SESCO,II.1.1,Catamarca,AR-K,annual,2020,gas oil combustion consumption by freight transport,22.90008,TJ,CH4,3.9,kg/TJ,89.310312,kg +6fd2f12f-1c9b-3398-86bd-3f4b4cab810f,SESCO,II.1.1,Catamarca,AR-K,annual,2020,gas oil combustion consumption by freight transport,22.90008,TJ,N2O,3.9,kg/TJ,89.310312,kg +3ddc19c0-97cc-3f45-988c-e951ac9132d6,SESCO,II.1.1,Chaco,AR-H,annual,2020,gas oil combustion consumption by freight transport,280.1106,TJ,CO2,74100.0,kg/TJ,20756195.459999997,kg +b9ab91d1-ecc8-34f6-a356-7c652bb11c7d,SESCO,II.1.1,Chaco,AR-H,annual,2020,gas oil combustion consumption by freight transport,280.1106,TJ,CH4,3.9,kg/TJ,1092.4313399999999,kg +b9ab91d1-ecc8-34f6-a356-7c652bb11c7d,SESCO,II.1.1,Chaco,AR-H,annual,2020,gas oil combustion consumption by freight transport,280.1106,TJ,N2O,3.9,kg/TJ,1092.4313399999999,kg +994a0d9b-9ed3-308b-ba13-1a056e73b573,SESCO,II.1.1,Chubut,AR-U,annual,2020,gas oil combustion consumption by freight transport,198.40716,TJ,CO2,74100.0,kg/TJ,14701970.556,kg +273445bc-69e9-3b36-96fd-09df897c903e,SESCO,II.1.1,Chubut,AR-U,annual,2020,gas oil combustion consumption by freight transport,198.40716,TJ,CH4,3.9,kg/TJ,773.787924,kg +273445bc-69e9-3b36-96fd-09df897c903e,SESCO,II.1.1,Chubut,AR-U,annual,2020,gas oil combustion consumption by freight transport,198.40716,TJ,N2O,3.9,kg/TJ,773.787924,kg +53a28b73-0c58-3028-b533-09be3b5ef77b,SESCO,II.1.1,Corrientes,AR-W,annual,2020,gas oil combustion consumption by freight transport,409.2396,TJ,CO2,74100.0,kg/TJ,30324654.36,kg +4c92c881-5ece-326d-af1c-b343454f3034,SESCO,II.1.1,Corrientes,AR-W,annual,2020,gas oil combustion consumption by freight transport,409.2396,TJ,CH4,3.9,kg/TJ,1596.03444,kg +4c92c881-5ece-326d-af1c-b343454f3034,SESCO,II.1.1,Corrientes,AR-W,annual,2020,gas oil combustion consumption by freight transport,409.2396,TJ,N2O,3.9,kg/TJ,1596.03444,kg +2adfba99-c59a-3869-a456-23c7fb2ea41a,SESCO,II.1.1,Córdoba,AR-X,annual,2020,gas oil combustion consumption by freight transport,2655.43404,TJ,CO2,74100.0,kg/TJ,196767662.364,kg +dcaae37e-42fb-3dbd-8189-a7c921ecd17c,SESCO,II.1.1,Córdoba,AR-X,annual,2020,gas oil combustion consumption by freight transport,2655.43404,TJ,CH4,3.9,kg/TJ,10356.192756,kg +dcaae37e-42fb-3dbd-8189-a7c921ecd17c,SESCO,II.1.1,Córdoba,AR-X,annual,2020,gas oil combustion consumption by freight transport,2655.43404,TJ,N2O,3.9,kg/TJ,10356.192756,kg +4bab3385-6fe5-3591-b417-e548ff19d226,SESCO,II.1.1,Entre Rios,AR-E,annual,2020,gas oil combustion consumption by freight transport,903.3611999999999,TJ,CO2,74100.0,kg/TJ,66939064.919999994,kg +e5efa5e4-d638-3792-8270-7d3d89fc27b4,SESCO,II.1.1,Entre Rios,AR-E,annual,2020,gas oil combustion consumption by freight transport,903.3611999999999,TJ,CH4,3.9,kg/TJ,3523.10868,kg +e5efa5e4-d638-3792-8270-7d3d89fc27b4,SESCO,II.1.1,Entre Rios,AR-E,annual,2020,gas oil combustion consumption by freight transport,903.3611999999999,TJ,N2O,3.9,kg/TJ,3523.10868,kg +0d0437bd-1067-3e4d-bae2-f57c8e1fe4c5,SESCO,II.1.1,Formosa,AR-P,annual,2020,gas oil combustion consumption by freight transport,42.0798,TJ,CO2,74100.0,kg/TJ,3118113.1799999997,kg +c4d3f679-d5ca-3df0-acf8-fe020390402c,SESCO,II.1.1,Formosa,AR-P,annual,2020,gas oil combustion consumption by freight transport,42.0798,TJ,CH4,3.9,kg/TJ,164.11122,kg +c4d3f679-d5ca-3df0-acf8-fe020390402c,SESCO,II.1.1,Formosa,AR-P,annual,2020,gas oil combustion consumption by freight transport,42.0798,TJ,N2O,3.9,kg/TJ,164.11122,kg +9dada357-ad63-35f9-96a3-345dcaf0a1c3,SESCO,II.1.1,Jujuy,AR-Y,annual,2020,gas oil combustion consumption by freight transport,202.95828,TJ,CO2,74100.0,kg/TJ,15039208.548,kg +26274984-8c21-3adc-b388-e4b8088a04a0,SESCO,II.1.1,Jujuy,AR-Y,annual,2020,gas oil combustion consumption by freight transport,202.95828,TJ,CH4,3.9,kg/TJ,791.537292,kg +26274984-8c21-3adc-b388-e4b8088a04a0,SESCO,II.1.1,Jujuy,AR-Y,annual,2020,gas oil combustion consumption by freight transport,202.95828,TJ,N2O,3.9,kg/TJ,791.537292,kg +6277b64a-de36-33af-b04c-5030733ea650,SESCO,II.1.1,La Pampa,AR-L,annual,2020,gas oil combustion consumption by freight transport,269.2746,TJ,CO2,74100.0,kg/TJ,19953247.860000003,kg +e9763dbb-b94e-37b1-8d52-77fe31a9aed1,SESCO,II.1.1,La Pampa,AR-L,annual,2020,gas oil combustion consumption by freight transport,269.2746,TJ,CH4,3.9,kg/TJ,1050.17094,kg +e9763dbb-b94e-37b1-8d52-77fe31a9aed1,SESCO,II.1.1,La Pampa,AR-L,annual,2020,gas oil combustion consumption by freight transport,269.2746,TJ,N2O,3.9,kg/TJ,1050.17094,kg +5f2f50c0-1b2c-3002-ab33-c1e00de67213,SESCO,II.1.1,La Rioja,AR-F,annual,2020,gas oil combustion consumption by freight transport,17.37372,TJ,CO2,74100.0,kg/TJ,1287392.652,kg +9de29fa1-5464-3013-b04e-bcd9ce9750c3,SESCO,II.1.1,La Rioja,AR-F,annual,2020,gas oil combustion consumption by freight transport,17.37372,TJ,CH4,3.9,kg/TJ,67.75750799999999,kg +9de29fa1-5464-3013-b04e-bcd9ce9750c3,SESCO,II.1.1,La Rioja,AR-F,annual,2020,gas oil combustion consumption by freight transport,17.37372,TJ,N2O,3.9,kg/TJ,67.75750799999999,kg +03c57cd6-44a7-3df8-967d-4e9cc40c6d15,SESCO,II.1.1,Mendoza,AR-M,annual,2020,gas oil combustion consumption by freight transport,1659.64176,TJ,CO2,74100.0,kg/TJ,122979454.416,kg +4584c526-ba02-35e6-a356-6a937a34fdf1,SESCO,II.1.1,Mendoza,AR-M,annual,2020,gas oil combustion consumption by freight transport,1659.64176,TJ,CH4,3.9,kg/TJ,6472.6028639999995,kg +4584c526-ba02-35e6-a356-6a937a34fdf1,SESCO,II.1.1,Mendoza,AR-M,annual,2020,gas oil combustion consumption by freight transport,1659.64176,TJ,N2O,3.9,kg/TJ,6472.6028639999995,kg +b901373a-552d-3f78-8a72-30a71879d59e,SESCO,II.1.1,Misiones,AR-N,annual,2020,gas oil combustion consumption by freight transport,1016.12784,TJ,CO2,74100.0,kg/TJ,75295072.944,kg +f05454ed-bf01-329c-823c-7611a73c5988,SESCO,II.1.1,Misiones,AR-N,annual,2020,gas oil combustion consumption by freight transport,1016.12784,TJ,CH4,3.9,kg/TJ,3962.898576,kg +f05454ed-bf01-329c-823c-7611a73c5988,SESCO,II.1.1,Misiones,AR-N,annual,2020,gas oil combustion consumption by freight transport,1016.12784,TJ,N2O,3.9,kg/TJ,3962.898576,kg +1b8cb0a7-4c6b-3cf6-9ede-7c7dcfe85985,SESCO,II.1.1,Neuquén,AR-Q,annual,2020,gas oil combustion consumption by freight transport,571.4184,TJ,CO2,74100.0,kg/TJ,42342103.440000005,kg +7f2a7ab8-be5a-3fe3-a10b-a5c8c451bdca,SESCO,II.1.1,Neuquén,AR-Q,annual,2020,gas oil combustion consumption by freight transport,571.4184,TJ,CH4,3.9,kg/TJ,2228.53176,kg +7f2a7ab8-be5a-3fe3-a10b-a5c8c451bdca,SESCO,II.1.1,Neuquén,AR-Q,annual,2020,gas oil combustion consumption by freight transport,571.4184,TJ,N2O,3.9,kg/TJ,2228.53176,kg +a8229873-fa83-34f5-82ac-833c4169c8da,SESCO,II.1.1,Rio Negro,AR-R,annual,2020,gas oil combustion consumption by freight transport,379.26,TJ,CO2,74100.0,kg/TJ,28103166.0,kg +3a340795-4de5-3ff4-9f37-9fe1f4461de1,SESCO,II.1.1,Rio Negro,AR-R,annual,2020,gas oil combustion consumption by freight transport,379.26,TJ,CH4,3.9,kg/TJ,1479.114,kg +3a340795-4de5-3ff4-9f37-9fe1f4461de1,SESCO,II.1.1,Rio Negro,AR-R,annual,2020,gas oil combustion consumption by freight transport,379.26,TJ,N2O,3.9,kg/TJ,1479.114,kg +265a7a46-0948-3920-a181-589ba497f6fd,SESCO,II.1.1,Salta,AR-A,annual,2020,gas oil combustion consumption by freight transport,385.07532,TJ,CO2,74100.0,kg/TJ,28534081.211999997,kg +734f7f02-4e33-3960-a2d9-a41babf152f7,SESCO,II.1.1,Salta,AR-A,annual,2020,gas oil combustion consumption by freight transport,385.07532,TJ,CH4,3.9,kg/TJ,1501.7937479999998,kg +734f7f02-4e33-3960-a2d9-a41babf152f7,SESCO,II.1.1,Salta,AR-A,annual,2020,gas oil combustion consumption by freight transport,385.07532,TJ,N2O,3.9,kg/TJ,1501.7937479999998,kg +134f69d6-997a-3bb3-865f-5236e7c225ec,SESCO,II.1.1,San Juan,AR-J,annual,2020,gas oil combustion consumption by freight transport,163.26239999999999,TJ,CO2,74100.0,kg/TJ,12097743.839999998,kg +e30d8556-41b7-3fcc-8076-cce4ad2b3f1a,SESCO,II.1.1,San Juan,AR-J,annual,2020,gas oil combustion consumption by freight transport,163.26239999999999,TJ,CH4,3.9,kg/TJ,636.72336,kg +e30d8556-41b7-3fcc-8076-cce4ad2b3f1a,SESCO,II.1.1,San Juan,AR-J,annual,2020,gas oil combustion consumption by freight transport,163.26239999999999,TJ,N2O,3.9,kg/TJ,636.72336,kg +314486e7-8f1d-3903-b223-4eed8953a6b0,SESCO,II.1.1,San Luis,AR-D,annual,2020,gas oil combustion consumption by freight transport,331.5816,TJ,CO2,74100.0,kg/TJ,24570196.56,kg +bbb0ef4e-1a7c-3c61-a3d8-e5a20c1d95ac,SESCO,II.1.1,San Luis,AR-D,annual,2020,gas oil combustion consumption by freight transport,331.5816,TJ,CH4,3.9,kg/TJ,1293.16824,kg +bbb0ef4e-1a7c-3c61-a3d8-e5a20c1d95ac,SESCO,II.1.1,San Luis,AR-D,annual,2020,gas oil combustion consumption by freight transport,331.5816,TJ,N2O,3.9,kg/TJ,1293.16824,kg +3def2949-a1f2-3542-adde-31eef5c7cdc6,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2020,gas oil combustion consumption by freight transport,157.26648,TJ,CO2,74100.0,kg/TJ,11653446.168,kg +a7ce0e26-0b38-39f9-ae57-63f8e5d40948,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2020,gas oil combustion consumption by freight transport,157.26648,TJ,CH4,3.9,kg/TJ,613.3392719999999,kg +a7ce0e26-0b38-39f9-ae57-63f8e5d40948,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2020,gas oil combustion consumption by freight transport,157.26648,TJ,N2O,3.9,kg/TJ,613.3392719999999,kg +9b2cff47-903b-304d-8d92-92e96c6876bb,SESCO,II.1.1,Santa Fe,AR-S,annual,2020,gas oil combustion consumption by freight transport,3016.27284,TJ,CO2,74100.0,kg/TJ,223505817.444,kg +c107700c-4f4d-3481-8a29-1ee459148283,SESCO,II.1.1,Santa Fe,AR-S,annual,2020,gas oil combustion consumption by freight transport,3016.27284,TJ,CH4,3.9,kg/TJ,11763.464076,kg +c107700c-4f4d-3481-8a29-1ee459148283,SESCO,II.1.1,Santa Fe,AR-S,annual,2020,gas oil combustion consumption by freight transport,3016.27284,TJ,N2O,3.9,kg/TJ,11763.464076,kg +19b38b65-d7fc-374d-bca6-83c6c6f078c8,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2020,gas oil combustion consumption by freight transport,326.27196,TJ,CO2,74100.0,kg/TJ,24176752.235999998,kg +6b5432fe-76ff-3210-9352-0cf835437166,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2020,gas oil combustion consumption by freight transport,326.27196,TJ,CH4,3.9,kg/TJ,1272.4606439999998,kg +6b5432fe-76ff-3210-9352-0cf835437166,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2020,gas oil combustion consumption by freight transport,326.27196,TJ,N2O,3.9,kg/TJ,1272.4606439999998,kg +6a6d4c61-1487-3453-b1ec-79fee3c7f6ab,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2020,gas oil combustion consumption by freight transport,285.45636,TJ,CO2,74100.0,kg/TJ,21152316.276,kg +747b8973-d1db-3f77-80ec-70abc0c84ef8,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2020,gas oil combustion consumption by freight transport,285.45636,TJ,CH4,3.9,kg/TJ,1113.279804,kg +747b8973-d1db-3f77-80ec-70abc0c84ef8,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2020,gas oil combustion consumption by freight transport,285.45636,TJ,N2O,3.9,kg/TJ,1113.279804,kg +a69fb53a-c311-3d76-b620-cc4a81fb1ab3,SESCO,II.1.1,Tucuman,AR-T,annual,2020,gas oil combustion consumption by freight transport,571.4184,TJ,CO2,74100.0,kg/TJ,42342103.440000005,kg +d864443a-de76-367a-a3b6-a73e9e0d141e,SESCO,II.1.1,Tucuman,AR-T,annual,2020,gas oil combustion consumption by freight transport,571.4184,TJ,CH4,3.9,kg/TJ,2228.53176,kg +d864443a-de76-367a-a3b6-a73e9e0d141e,SESCO,II.1.1,Tucuman,AR-T,annual,2020,gas oil combustion consumption by freight transport,571.4184,TJ,N2O,3.9,kg/TJ,2228.53176,kg +19033275-d0f6-3467-9641-8504ccd2b7d3,SESCO,II.1.1,Buenos Aires,AR-B,annual,2020,gas oil combustion consumption by freight transport,2104.74852,TJ,CO2,74100.0,kg/TJ,155961865.33200002,kg +9141ec14-f721-3f78-97e5-9431f77a3278,SESCO,II.1.1,Buenos Aires,AR-B,annual,2020,gas oil combustion consumption by freight transport,2104.74852,TJ,CH4,3.9,kg/TJ,8208.519228000001,kg +9141ec14-f721-3f78-97e5-9431f77a3278,SESCO,II.1.1,Buenos Aires,AR-B,annual,2020,gas oil combustion consumption by freight transport,2104.74852,TJ,N2O,3.9,kg/TJ,8208.519228000001,kg +057dd5f1-8321-39d1-ad7b-928997f0ac1f,SESCO,II.1.1,Capital Federal,AR-C,annual,2020,gas oil combustion consumption by freight transport,1857.6516,TJ,CO2,74100.0,kg/TJ,137651983.56,kg +9951d2d0-2e34-33d5-9b24-85ae9438bb9f,SESCO,II.1.1,Capital Federal,AR-C,annual,2020,gas oil combustion consumption by freight transport,1857.6516,TJ,CH4,3.9,kg/TJ,7244.84124,kg +9951d2d0-2e34-33d5-9b24-85ae9438bb9f,SESCO,II.1.1,Capital Federal,AR-C,annual,2020,gas oil combustion consumption by freight transport,1857.6516,TJ,N2O,3.9,kg/TJ,7244.84124,kg +5ddc5b3b-6969-33f9-bcbe-2703daa089ef,SESCO,II.1.1,Catamarca,AR-K,annual,2020,gas oil combustion consumption by freight transport,9.64404,TJ,CO2,74100.0,kg/TJ,714623.3640000001,kg +633e3246-61f4-309e-bb81-012d0050e751,SESCO,II.1.1,Catamarca,AR-K,annual,2020,gas oil combustion consumption by freight transport,9.64404,TJ,CH4,3.9,kg/TJ,37.611756,kg +633e3246-61f4-309e-bb81-012d0050e751,SESCO,II.1.1,Catamarca,AR-K,annual,2020,gas oil combustion consumption by freight transport,9.64404,TJ,N2O,3.9,kg/TJ,37.611756,kg +ef2d368e-4b84-36c2-a069-4949afaafaab,SESCO,II.1.1,Chaco,AR-H,annual,2020,gas oil combustion consumption by freight transport,79.6446,TJ,CO2,74100.0,kg/TJ,5901664.859999999,kg +160cb0d5-f17d-328f-b276-6aeab9232ab1,SESCO,II.1.1,Chaco,AR-H,annual,2020,gas oil combustion consumption by freight transport,79.6446,TJ,CH4,3.9,kg/TJ,310.61393999999996,kg +160cb0d5-f17d-328f-b276-6aeab9232ab1,SESCO,II.1.1,Chaco,AR-H,annual,2020,gas oil combustion consumption by freight transport,79.6446,TJ,N2O,3.9,kg/TJ,310.61393999999996,kg +179e51a5-e7b6-30da-9271-42c9d5fd1c88,SESCO,II.1.1,Chubut,AR-U,annual,2020,gas oil combustion consumption by freight transport,268.3716,TJ,CO2,74100.0,kg/TJ,19886335.56,kg +c2cd8c0e-187b-39d3-95b2-773fc4744c51,SESCO,II.1.1,Chubut,AR-U,annual,2020,gas oil combustion consumption by freight transport,268.3716,TJ,CH4,3.9,kg/TJ,1046.64924,kg +c2cd8c0e-187b-39d3-95b2-773fc4744c51,SESCO,II.1.1,Chubut,AR-U,annual,2020,gas oil combustion consumption by freight transport,268.3716,TJ,N2O,3.9,kg/TJ,1046.64924,kg +ed0f749f-13c7-3ee8-acda-35086600e255,SESCO,II.1.1,Corrientes,AR-W,annual,2020,gas oil combustion consumption by freight transport,126.27552,TJ,CO2,74100.0,kg/TJ,9357016.032,kg +5846b3c8-2653-3f4c-aa8c-1c31a4acb356,SESCO,II.1.1,Corrientes,AR-W,annual,2020,gas oil combustion consumption by freight transport,126.27552,TJ,CH4,3.9,kg/TJ,492.47452799999996,kg +5846b3c8-2653-3f4c-aa8c-1c31a4acb356,SESCO,II.1.1,Corrientes,AR-W,annual,2020,gas oil combustion consumption by freight transport,126.27552,TJ,N2O,3.9,kg/TJ,492.47452799999996,kg +5e2fef8c-abe2-348e-ac44-288e452eb864,SESCO,II.1.1,Córdoba,AR-X,annual,2020,gas oil combustion consumption by freight transport,552.20256,TJ,CO2,74100.0,kg/TJ,40918209.695999995,kg +2a887606-ff38-3ed1-be05-a025dc7b427e,SESCO,II.1.1,Córdoba,AR-X,annual,2020,gas oil combustion consumption by freight transport,552.20256,TJ,CH4,3.9,kg/TJ,2153.5899839999997,kg +2a887606-ff38-3ed1-be05-a025dc7b427e,SESCO,II.1.1,Córdoba,AR-X,annual,2020,gas oil combustion consumption by freight transport,552.20256,TJ,N2O,3.9,kg/TJ,2153.5899839999997,kg +bc8e7a30-26c1-33b7-af10-45fb7e3fdfd2,SESCO,II.1.1,Entre Rios,AR-E,annual,2020,gas oil combustion consumption by freight transport,208.62912,TJ,CO2,74100.0,kg/TJ,15459417.792,kg +d4158d0d-7d7a-3683-862d-b36c98fc9a97,SESCO,II.1.1,Entre Rios,AR-E,annual,2020,gas oil combustion consumption by freight transport,208.62912,TJ,CH4,3.9,kg/TJ,813.653568,kg +d4158d0d-7d7a-3683-862d-b36c98fc9a97,SESCO,II.1.1,Entre Rios,AR-E,annual,2020,gas oil combustion consumption by freight transport,208.62912,TJ,N2O,3.9,kg/TJ,813.653568,kg +ae5b042d-d8b4-33c5-a227-4d9362c8585f,SESCO,II.1.1,Formosa,AR-P,annual,2020,gas oil combustion consumption by freight transport,14.19516,TJ,CO2,74100.0,kg/TJ,1051861.356,kg +63df1291-18e5-34d0-9482-9b18230a0f90,SESCO,II.1.1,Formosa,AR-P,annual,2020,gas oil combustion consumption by freight transport,14.19516,TJ,CH4,3.9,kg/TJ,55.361124,kg +63df1291-18e5-34d0-9482-9b18230a0f90,SESCO,II.1.1,Formosa,AR-P,annual,2020,gas oil combustion consumption by freight transport,14.19516,TJ,N2O,3.9,kg/TJ,55.361124,kg +117d8350-6d31-3bd9-b5ad-ca3cf9fb8341,SESCO,II.1.1,Jujuy,AR-Y,annual,2020,gas oil combustion consumption by freight transport,25.39236,TJ,CO2,74100.0,kg/TJ,1881573.876,kg +e3e4e3e8-24ed-36d8-9646-1f06af3d54c4,SESCO,II.1.1,Jujuy,AR-Y,annual,2020,gas oil combustion consumption by freight transport,25.39236,TJ,CH4,3.9,kg/TJ,99.030204,kg +e3e4e3e8-24ed-36d8-9646-1f06af3d54c4,SESCO,II.1.1,Jujuy,AR-Y,annual,2020,gas oil combustion consumption by freight transport,25.39236,TJ,N2O,3.9,kg/TJ,99.030204,kg +35306b90-a242-3188-a703-a56bfe07cdc5,SESCO,II.1.1,La Pampa,AR-L,annual,2020,gas oil combustion consumption by freight transport,74.80452,TJ,CO2,74100.0,kg/TJ,5543014.932,kg +586ba00e-9b4f-3f17-96ca-33e986ef28c6,SESCO,II.1.1,La Pampa,AR-L,annual,2020,gas oil combustion consumption by freight transport,74.80452,TJ,CH4,3.9,kg/TJ,291.737628,kg +586ba00e-9b4f-3f17-96ca-33e986ef28c6,SESCO,II.1.1,La Pampa,AR-L,annual,2020,gas oil combustion consumption by freight transport,74.80452,TJ,N2O,3.9,kg/TJ,291.737628,kg +b9825eb4-a55a-3f95-beff-17b3ce8b1b00,SESCO,II.1.1,La Rioja,AR-F,annual,2020,gas oil combustion consumption by freight transport,14.989799999999999,TJ,CO2,74100.0,kg/TJ,1110744.18,kg +2958955a-5326-33e6-90fd-095f9e4f8eb9,SESCO,II.1.1,La Rioja,AR-F,annual,2020,gas oil combustion consumption by freight transport,14.989799999999999,TJ,CH4,3.9,kg/TJ,58.46021999999999,kg +2958955a-5326-33e6-90fd-095f9e4f8eb9,SESCO,II.1.1,La Rioja,AR-F,annual,2020,gas oil combustion consumption by freight transport,14.989799999999999,TJ,N2O,3.9,kg/TJ,58.46021999999999,kg +a9bdf671-278e-33cc-b5a4-095e8e3d5e8a,SESCO,II.1.1,Mendoza,AR-M,annual,2020,gas oil combustion consumption by freight transport,419.13648,TJ,CO2,74100.0,kg/TJ,31058013.168,kg +876470be-ea82-3719-a108-ad70b12a19ec,SESCO,II.1.1,Mendoza,AR-M,annual,2020,gas oil combustion consumption by freight transport,419.13648,TJ,CH4,3.9,kg/TJ,1634.632272,kg +876470be-ea82-3719-a108-ad70b12a19ec,SESCO,II.1.1,Mendoza,AR-M,annual,2020,gas oil combustion consumption by freight transport,419.13648,TJ,N2O,3.9,kg/TJ,1634.632272,kg +bd233bdd-f031-3edb-a061-dbf9f76e34e2,SESCO,II.1.1,Misiones,AR-N,annual,2020,gas oil combustion consumption by freight transport,115.80072,TJ,CO2,74100.0,kg/TJ,8580833.352,kg +fd7bfd44-fc08-30a6-942f-ef4db5035a8a,SESCO,II.1.1,Misiones,AR-N,annual,2020,gas oil combustion consumption by freight transport,115.80072,TJ,CH4,3.9,kg/TJ,451.62280799999996,kg +fd7bfd44-fc08-30a6-942f-ef4db5035a8a,SESCO,II.1.1,Misiones,AR-N,annual,2020,gas oil combustion consumption by freight transport,115.80072,TJ,N2O,3.9,kg/TJ,451.62280799999996,kg +4aaa14ed-7fc4-3171-b606-6167b6558cfc,SESCO,II.1.1,Neuquén,AR-Q,annual,2020,gas oil combustion consumption by freight transport,739.30416,TJ,CO2,74100.0,kg/TJ,54782438.256000005,kg +8c8e09a1-35ea-3ad6-ae09-83fa6ce2645a,SESCO,II.1.1,Neuquén,AR-Q,annual,2020,gas oil combustion consumption by freight transport,739.30416,TJ,CH4,3.9,kg/TJ,2883.286224,kg +8c8e09a1-35ea-3ad6-ae09-83fa6ce2645a,SESCO,II.1.1,Neuquén,AR-Q,annual,2020,gas oil combustion consumption by freight transport,739.30416,TJ,N2O,3.9,kg/TJ,2883.286224,kg +bb0c8bb3-2027-3619-8ac6-9ed0e88a8ccb,SESCO,II.1.1,Rio Negro,AR-R,annual,2020,gas oil combustion consumption by freight transport,254.82659999999998,TJ,CO2,74100.0,kg/TJ,18882651.06,kg +a7ae737f-93eb-3446-8c21-61b379563306,SESCO,II.1.1,Rio Negro,AR-R,annual,2020,gas oil combustion consumption by freight transport,254.82659999999998,TJ,CH4,3.9,kg/TJ,993.8237399999999,kg +a7ae737f-93eb-3446-8c21-61b379563306,SESCO,II.1.1,Rio Negro,AR-R,annual,2020,gas oil combustion consumption by freight transport,254.82659999999998,TJ,N2O,3.9,kg/TJ,993.8237399999999,kg +337bb958-5796-3313-a850-f9ed70e9948c,SESCO,II.1.1,Salta,AR-A,annual,2020,gas oil combustion consumption by freight transport,160.44504,TJ,CO2,74100.0,kg/TJ,11888977.464,kg +a0bee2e2-40da-3b61-81e9-2328132fd9f6,SESCO,II.1.1,Salta,AR-A,annual,2020,gas oil combustion consumption by freight transport,160.44504,TJ,CH4,3.9,kg/TJ,625.7356560000001,kg +a0bee2e2-40da-3b61-81e9-2328132fd9f6,SESCO,II.1.1,Salta,AR-A,annual,2020,gas oil combustion consumption by freight transport,160.44504,TJ,N2O,3.9,kg/TJ,625.7356560000001,kg +ff1a12f9-ad57-3b74-8979-8f214191bbe4,SESCO,II.1.1,San Juan,AR-J,annual,2020,gas oil combustion consumption by freight transport,34.96416,TJ,CO2,74100.0,kg/TJ,2590844.256,kg +8d7a2f0c-6559-32d4-a291-eade27e84544,SESCO,II.1.1,San Juan,AR-J,annual,2020,gas oil combustion consumption by freight transport,34.96416,TJ,CH4,3.9,kg/TJ,136.360224,kg +8d7a2f0c-6559-32d4-a291-eade27e84544,SESCO,II.1.1,San Juan,AR-J,annual,2020,gas oil combustion consumption by freight transport,34.96416,TJ,N2O,3.9,kg/TJ,136.360224,kg +d558c730-0e29-3d53-acca-5b63cb56b0a6,SESCO,II.1.1,San Luis,AR-D,annual,2020,gas oil combustion consumption by freight transport,73.21524,TJ,CO2,74100.0,kg/TJ,5425249.284,kg +30ec6655-7c61-362c-9554-4e8dbae38b53,SESCO,II.1.1,San Luis,AR-D,annual,2020,gas oil combustion consumption by freight transport,73.21524,TJ,CH4,3.9,kg/TJ,285.53943599999997,kg +30ec6655-7c61-362c-9554-4e8dbae38b53,SESCO,II.1.1,San Luis,AR-D,annual,2020,gas oil combustion consumption by freight transport,73.21524,TJ,N2O,3.9,kg/TJ,285.53943599999997,kg +fe26b398-ece3-3daa-86e5-3245348d508a,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2020,gas oil combustion consumption by freight transport,79.68072,TJ,CO2,74100.0,kg/TJ,5904341.352,kg +da965319-1e93-3847-aa09-e711990b162a,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2020,gas oil combustion consumption by freight transport,79.68072,TJ,CH4,3.9,kg/TJ,310.75480799999997,kg +da965319-1e93-3847-aa09-e711990b162a,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2020,gas oil combustion consumption by freight transport,79.68072,TJ,N2O,3.9,kg/TJ,310.75480799999997,kg +79bb1741-b9fe-3d57-98ba-dbeaf96ba4b8,SESCO,II.1.1,Santa Fe,AR-S,annual,2020,gas oil combustion consumption by freight transport,605.01,TJ,CO2,74100.0,kg/TJ,44831241.0,kg +f5018d33-9b2b-3bf4-be9a-d200974fcd35,SESCO,II.1.1,Santa Fe,AR-S,annual,2020,gas oil combustion consumption by freight transport,605.01,TJ,CH4,3.9,kg/TJ,2359.5389999999998,kg +f5018d33-9b2b-3bf4-be9a-d200974fcd35,SESCO,II.1.1,Santa Fe,AR-S,annual,2020,gas oil combustion consumption by freight transport,605.01,TJ,N2O,3.9,kg/TJ,2359.5389999999998,kg +61d9576c-f2fe-33f9-b852-6f6a3d8b4a29,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2020,gas oil combustion consumption by freight transport,31.20768,TJ,CO2,74100.0,kg/TJ,2312489.088,kg +0022d649-63b2-3576-b8fd-5e59276e8ec1,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2020,gas oil combustion consumption by freight transport,31.20768,TJ,CH4,3.9,kg/TJ,121.709952,kg +0022d649-63b2-3576-b8fd-5e59276e8ec1,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2020,gas oil combustion consumption by freight transport,31.20768,TJ,N2O,3.9,kg/TJ,121.709952,kg +ad358f4f-6341-3d69-8a5d-c589aeca16ad,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2020,gas oil combustion consumption by freight transport,76.50216,TJ,CO2,74100.0,kg/TJ,5668810.056,kg +55263a89-391b-353e-b1c7-5fd36fac3337,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2020,gas oil combustion consumption by freight transport,76.50216,TJ,CH4,3.9,kg/TJ,298.358424,kg +55263a89-391b-353e-b1c7-5fd36fac3337,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2020,gas oil combustion consumption by freight transport,76.50216,TJ,N2O,3.9,kg/TJ,298.358424,kg +e9cc83fd-0c4c-35d9-8fce-1caa7b51797d,SESCO,II.1.1,Tucuman,AR-T,annual,2020,gas oil combustion consumption by freight transport,119.15988,TJ,CO2,74100.0,kg/TJ,8829747.108000001,kg +40218d9d-0704-3270-9cc3-0d49cc8a7801,SESCO,II.1.1,Tucuman,AR-T,annual,2020,gas oil combustion consumption by freight transport,119.15988,TJ,CH4,3.9,kg/TJ,464.723532,kg +40218d9d-0704-3270-9cc3-0d49cc8a7801,SESCO,II.1.1,Tucuman,AR-T,annual,2020,gas oil combustion consumption by freight transport,119.15988,TJ,N2O,3.9,kg/TJ,464.723532,kg +b81c3d27-785e-356b-81d2-c35e821a0855,SESCO,II.1.1,Buenos Aires,AR-B,annual,2020,jet kerosene combustion consumption by freight transport,0.22017099999999995,TJ,CO2,71500.0,kg/TJ,15742.226499999997,kg +3707691b-57ef-3f0a-ad3b-2f0eadc5facb,SESCO,II.1.1,Buenos Aires,AR-B,annual,2020,jet kerosene combustion consumption by freight transport,0.22017099999999995,TJ,CH4,0.5,kg/TJ,0.11008549999999998,kg +8419baf7-bad4-3f75-b9a3-4a88b12c85aa,SESCO,II.1.1,Buenos Aires,AR-B,annual,2020,jet kerosene combustion consumption by freight transport,0.22017099999999995,TJ,N2O,2.0,kg/TJ,0.4403419999999999,kg +744178a3-0c4a-3601-aa75-6e0f2f5ab45f,SESCO,II.1.1,Buenos Aires,AR-B,annual,2020,gas oil combustion consumption by public passenger transport,5307.00324,TJ,CO2,74100.0,kg/TJ,393248940.084,kg +64f28b26-35ac-30d9-b4eb-1cd4bf9add23,SESCO,II.1.1,Buenos Aires,AR-B,annual,2020,gas oil combustion consumption by public passenger transport,5307.00324,TJ,CH4,3.9,kg/TJ,20697.312636,kg +64f28b26-35ac-30d9-b4eb-1cd4bf9add23,SESCO,II.1.1,Buenos Aires,AR-B,annual,2020,gas oil combustion consumption by public passenger transport,5307.00324,TJ,N2O,3.9,kg/TJ,20697.312636,kg +e527ca7b-6e6f-3299-b317-1cf957f7c02a,SESCO,II.1.1,Capital Federal,AR-C,annual,2020,gas oil combustion consumption by public passenger transport,868.36092,TJ,CO2,74100.0,kg/TJ,64345544.172,kg +b96751f5-1363-398c-bd72-2250c406eeed,SESCO,II.1.1,Capital Federal,AR-C,annual,2020,gas oil combustion consumption by public passenger transport,868.36092,TJ,CH4,3.9,kg/TJ,3386.607588,kg +b96751f5-1363-398c-bd72-2250c406eeed,SESCO,II.1.1,Capital Federal,AR-C,annual,2020,gas oil combustion consumption by public passenger transport,868.36092,TJ,N2O,3.9,kg/TJ,3386.607588,kg +ee89927e-93ab-39dc-b2de-1a91a878e7bf,SESCO,II.1.1,Catamarca,AR-K,annual,2020,gas oil combustion consumption by public passenger transport,28.281959999999998,TJ,CO2,74100.0,kg/TJ,2095693.2359999998,kg +7cf240db-de0a-3aee-bb2d-f9286224ab11,SESCO,II.1.1,Catamarca,AR-K,annual,2020,gas oil combustion consumption by public passenger transport,28.281959999999998,TJ,CH4,3.9,kg/TJ,110.29964399999999,kg +7cf240db-de0a-3aee-bb2d-f9286224ab11,SESCO,II.1.1,Catamarca,AR-K,annual,2020,gas oil combustion consumption by public passenger transport,28.281959999999998,TJ,N2O,3.9,kg/TJ,110.29964399999999,kg +e4d3fe48-d5f5-3ba1-8502-7cae9bf50524,SESCO,II.1.1,Chaco,AR-H,annual,2020,gas oil combustion consumption by public passenger transport,45.98076,TJ,CO2,74100.0,kg/TJ,3407174.3159999996,kg +1f1dac85-d104-3548-9ede-3dc0b8e015c1,SESCO,II.1.1,Chaco,AR-H,annual,2020,gas oil combustion consumption by public passenger transport,45.98076,TJ,CH4,3.9,kg/TJ,179.324964,kg +1f1dac85-d104-3548-9ede-3dc0b8e015c1,SESCO,II.1.1,Chaco,AR-H,annual,2020,gas oil combustion consumption by public passenger transport,45.98076,TJ,N2O,3.9,kg/TJ,179.324964,kg +6099c17a-5381-3559-baca-af93de667d79,SESCO,II.1.1,Chubut,AR-U,annual,2020,gas oil combustion consumption by public passenger transport,18.49344,TJ,CO2,74100.0,kg/TJ,1370363.9039999999,kg +37a5065c-701e-35ea-898e-e854fea8ab52,SESCO,II.1.1,Chubut,AR-U,annual,2020,gas oil combustion consumption by public passenger transport,18.49344,TJ,CH4,3.9,kg/TJ,72.124416,kg +37a5065c-701e-35ea-898e-e854fea8ab52,SESCO,II.1.1,Chubut,AR-U,annual,2020,gas oil combustion consumption by public passenger transport,18.49344,TJ,N2O,3.9,kg/TJ,72.124416,kg +0e85c3a1-2b01-3082-973b-e99f26225018,SESCO,II.1.1,Corrientes,AR-W,annual,2020,gas oil combustion consumption by public passenger transport,17.77104,TJ,CO2,74100.0,kg/TJ,1316834.064,kg +a12b0023-41c1-302b-b8e2-5b09c7684f91,SESCO,II.1.1,Corrientes,AR-W,annual,2020,gas oil combustion consumption by public passenger transport,17.77104,TJ,CH4,3.9,kg/TJ,69.30705599999999,kg +a12b0023-41c1-302b-b8e2-5b09c7684f91,SESCO,II.1.1,Corrientes,AR-W,annual,2020,gas oil combustion consumption by public passenger transport,17.77104,TJ,N2O,3.9,kg/TJ,69.30705599999999,kg +19acfadc-ea4a-33b9-b58b-451f458984a0,SESCO,II.1.1,Córdoba,AR-X,annual,2020,gas oil combustion consumption by public passenger transport,279.17148,TJ,CO2,74100.0,kg/TJ,20686606.667999998,kg +f927c891-d72a-3b8e-850d-bb9d03aaf550,SESCO,II.1.1,Córdoba,AR-X,annual,2020,gas oil combustion consumption by public passenger transport,279.17148,TJ,CH4,3.9,kg/TJ,1088.768772,kg +f927c891-d72a-3b8e-850d-bb9d03aaf550,SESCO,II.1.1,Córdoba,AR-X,annual,2020,gas oil combustion consumption by public passenger transport,279.17148,TJ,N2O,3.9,kg/TJ,1088.768772,kg +0d58aef9-e959-30c1-9aa2-c36016175c6a,SESCO,II.1.1,Entre Rios,AR-E,annual,2020,gas oil combustion consumption by public passenger transport,66.0996,TJ,CO2,74100.0,kg/TJ,4897980.359999999,kg +1c8bef34-0fb9-3d72-90ca-17fbb47d7232,SESCO,II.1.1,Entre Rios,AR-E,annual,2020,gas oil combustion consumption by public passenger transport,66.0996,TJ,CH4,3.9,kg/TJ,257.78844,kg +1c8bef34-0fb9-3d72-90ca-17fbb47d7232,SESCO,II.1.1,Entre Rios,AR-E,annual,2020,gas oil combustion consumption by public passenger transport,66.0996,TJ,N2O,3.9,kg/TJ,257.78844,kg +05323c30-33fc-35fd-bec9-be991632e34d,SESCO,II.1.1,Formosa,AR-P,annual,2020,gas oil combustion consumption by public passenger transport,5.02068,TJ,CO2,74100.0,kg/TJ,372032.388,kg +7da50b21-e173-3c6a-b44d-56be0be24a1e,SESCO,II.1.1,Formosa,AR-P,annual,2020,gas oil combustion consumption by public passenger transport,5.02068,TJ,CH4,3.9,kg/TJ,19.580651999999997,kg +7da50b21-e173-3c6a-b44d-56be0be24a1e,SESCO,II.1.1,Formosa,AR-P,annual,2020,gas oil combustion consumption by public passenger transport,5.02068,TJ,N2O,3.9,kg/TJ,19.580651999999997,kg +44d971cd-90e0-381b-95b8-eb6e9f3f03c5,SESCO,II.1.1,Jujuy,AR-Y,annual,2020,gas oil combustion consumption by public passenger transport,59.598,TJ,CO2,74100.0,kg/TJ,4416211.8,kg +824e93ae-f522-3aa6-bea1-2c819e14bec6,SESCO,II.1.1,Jujuy,AR-Y,annual,2020,gas oil combustion consumption by public passenger transport,59.598,TJ,CH4,3.9,kg/TJ,232.4322,kg +824e93ae-f522-3aa6-bea1-2c819e14bec6,SESCO,II.1.1,Jujuy,AR-Y,annual,2020,gas oil combustion consumption by public passenger transport,59.598,TJ,N2O,3.9,kg/TJ,232.4322,kg +d288d346-3d4b-3a46-8ff4-390d1b502f90,SESCO,II.1.1,La Rioja,AR-F,annual,2020,gas oil combustion consumption by public passenger transport,10.22196,TJ,CO2,74100.0,kg/TJ,757447.2359999999,kg +172a6e2e-c4d9-3ae7-89b8-cba04eb8bfbf,SESCO,II.1.1,La Rioja,AR-F,annual,2020,gas oil combustion consumption by public passenger transport,10.22196,TJ,CH4,3.9,kg/TJ,39.865643999999996,kg +172a6e2e-c4d9-3ae7-89b8-cba04eb8bfbf,SESCO,II.1.1,La Rioja,AR-F,annual,2020,gas oil combustion consumption by public passenger transport,10.22196,TJ,N2O,3.9,kg/TJ,39.865643999999996,kg +8d754026-f4f8-398e-be64-569cd3abdc8b,SESCO,II.1.1,Mendoza,AR-M,annual,2020,gas oil combustion consumption by public passenger transport,314.28012,TJ,CO2,74100.0,kg/TJ,23288156.892,kg +cc285397-5351-337b-9fec-71e489e99cbc,SESCO,II.1.1,Mendoza,AR-M,annual,2020,gas oil combustion consumption by public passenger transport,314.28012,TJ,CH4,3.9,kg/TJ,1225.692468,kg +cc285397-5351-337b-9fec-71e489e99cbc,SESCO,II.1.1,Mendoza,AR-M,annual,2020,gas oil combustion consumption by public passenger transport,314.28012,TJ,N2O,3.9,kg/TJ,1225.692468,kg +0bed0900-a1fa-369d-ac94-83460cb58cc9,SESCO,II.1.1,Misiones,AR-N,annual,2020,gas oil combustion consumption by public passenger transport,200.6466,TJ,CO2,74100.0,kg/TJ,14867913.06,kg +8b20d10a-5d02-3cad-b664-014b386de6bc,SESCO,II.1.1,Misiones,AR-N,annual,2020,gas oil combustion consumption by public passenger transport,200.6466,TJ,CH4,3.9,kg/TJ,782.52174,kg +8b20d10a-5d02-3cad-b664-014b386de6bc,SESCO,II.1.1,Misiones,AR-N,annual,2020,gas oil combustion consumption by public passenger transport,200.6466,TJ,N2O,3.9,kg/TJ,782.52174,kg +8b8c406a-9d87-3c45-bc9e-5e3768d0fda5,SESCO,II.1.1,Neuquén,AR-Q,annual,2020,gas oil combustion consumption by public passenger transport,27.595679999999998,TJ,CO2,74100.0,kg/TJ,2044839.8879999998,kg +4bca05d3-a1e2-33cf-889c-a1a9b303478c,SESCO,II.1.1,Neuquén,AR-Q,annual,2020,gas oil combustion consumption by public passenger transport,27.595679999999998,TJ,CH4,3.9,kg/TJ,107.62315199999999,kg +4bca05d3-a1e2-33cf-889c-a1a9b303478c,SESCO,II.1.1,Neuquén,AR-Q,annual,2020,gas oil combustion consumption by public passenger transport,27.595679999999998,TJ,N2O,3.9,kg/TJ,107.62315199999999,kg +f7deef0d-c8ab-3b5e-9d02-23c73e122d0a,SESCO,II.1.1,Rio Negro,AR-R,annual,2020,gas oil combustion consumption by public passenger transport,30.23244,TJ,CO2,74100.0,kg/TJ,2240223.804,kg +75052281-aea7-387c-8ab9-78affdd0694f,SESCO,II.1.1,Rio Negro,AR-R,annual,2020,gas oil combustion consumption by public passenger transport,30.23244,TJ,CH4,3.9,kg/TJ,117.906516,kg +75052281-aea7-387c-8ab9-78affdd0694f,SESCO,II.1.1,Rio Negro,AR-R,annual,2020,gas oil combustion consumption by public passenger transport,30.23244,TJ,N2O,3.9,kg/TJ,117.906516,kg +d59c6068-2bbc-32c5-80e4-fb4e04d5c78d,SESCO,II.1.1,Salta,AR-A,annual,2020,gas oil combustion consumption by public passenger transport,48.18408,TJ,CO2,74100.0,kg/TJ,3570440.328,kg +99b4f7a4-e104-3a56-9c95-4c0a79677393,SESCO,II.1.1,Salta,AR-A,annual,2020,gas oil combustion consumption by public passenger transport,48.18408,TJ,CH4,3.9,kg/TJ,187.917912,kg +99b4f7a4-e104-3a56-9c95-4c0a79677393,SESCO,II.1.1,Salta,AR-A,annual,2020,gas oil combustion consumption by public passenger transport,48.18408,TJ,N2O,3.9,kg/TJ,187.917912,kg +73dec076-4d24-3d84-a4cd-90519827fa0f,SESCO,II.1.1,San Juan,AR-J,annual,2020,gas oil combustion consumption by public passenger transport,34.45848,TJ,CO2,74100.0,kg/TJ,2553373.3680000002,kg +c061d027-8413-3829-b829-325476e8777a,SESCO,II.1.1,San Juan,AR-J,annual,2020,gas oil combustion consumption by public passenger transport,34.45848,TJ,CH4,3.9,kg/TJ,134.388072,kg +c061d027-8413-3829-b829-325476e8777a,SESCO,II.1.1,San Juan,AR-J,annual,2020,gas oil combustion consumption by public passenger transport,34.45848,TJ,N2O,3.9,kg/TJ,134.388072,kg +34e2d110-242b-3d95-baa0-39afd8c88617,SESCO,II.1.1,Santa Fe,AR-S,annual,2020,gas oil combustion consumption by public passenger transport,238.53647999999998,TJ,CO2,74100.0,kg/TJ,17675553.167999998,kg +f257aeb0-9626-34bd-b671-ca6cf9e73319,SESCO,II.1.1,Santa Fe,AR-S,annual,2020,gas oil combustion consumption by public passenger transport,238.53647999999998,TJ,CH4,3.9,kg/TJ,930.2922719999999,kg +f257aeb0-9626-34bd-b671-ca6cf9e73319,SESCO,II.1.1,Santa Fe,AR-S,annual,2020,gas oil combustion consumption by public passenger transport,238.53647999999998,TJ,N2O,3.9,kg/TJ,930.2922719999999,kg +d7749bdb-785d-34a8-b7d0-1f38c1aff197,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2020,gas oil combustion consumption by public passenger transport,3.50364,TJ,CO2,74100.0,kg/TJ,259619.724,kg +4015280e-4d55-38d2-bedd-bc3ed16aa8d2,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2020,gas oil combustion consumption by public passenger transport,3.50364,TJ,CH4,3.9,kg/TJ,13.664195999999999,kg +4015280e-4d55-38d2-bedd-bc3ed16aa8d2,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2020,gas oil combustion consumption by public passenger transport,3.50364,TJ,N2O,3.9,kg/TJ,13.664195999999999,kg +176e1e9e-8610-3cdc-9a6a-da479aabb356,SESCO,II.1.1,Tucuman,AR-T,annual,2020,gas oil combustion consumption by public passenger transport,2.60064,TJ,CO2,74100.0,kg/TJ,192707.424,kg +fc11201c-29b5-3996-ae33-9fed88af63eb,SESCO,II.1.1,Tucuman,AR-T,annual,2020,gas oil combustion consumption by public passenger transport,2.60064,TJ,CH4,3.9,kg/TJ,10.142496,kg +fc11201c-29b5-3996-ae33-9fed88af63eb,SESCO,II.1.1,Tucuman,AR-T,annual,2020,gas oil combustion consumption by public passenger transport,2.60064,TJ,N2O,3.9,kg/TJ,10.142496,kg +05059401-7c51-33ef-af25-bcd2c3c5a6a9,SESCO,II.1.1,Buenos Aires,AR-B,annual,2020,gas oil combustion consumption by public passenger transport,1958.28192,TJ,CO2,74100.0,kg/TJ,145108690.27199998,kg +da5efebe-294b-332a-a50d-ebefbb8b3088,SESCO,II.1.1,Buenos Aires,AR-B,annual,2020,gas oil combustion consumption by public passenger transport,1958.28192,TJ,CH4,3.9,kg/TJ,7637.299488,kg +da5efebe-294b-332a-a50d-ebefbb8b3088,SESCO,II.1.1,Buenos Aires,AR-B,annual,2020,gas oil combustion consumption by public passenger transport,1958.28192,TJ,N2O,3.9,kg/TJ,7637.299488,kg +054201d4-806d-3c3b-9f04-eb1d2180958b,SESCO,II.1.1,Capital Federal,AR-C,annual,2020,gas oil combustion consumption by public passenger transport,415.45224,TJ,CO2,74100.0,kg/TJ,30785010.984,kg +e263410e-897b-3f8f-a1bc-84d44c167e17,SESCO,II.1.1,Capital Federal,AR-C,annual,2020,gas oil combustion consumption by public passenger transport,415.45224,TJ,CH4,3.9,kg/TJ,1620.263736,kg +e263410e-897b-3f8f-a1bc-84d44c167e17,SESCO,II.1.1,Capital Federal,AR-C,annual,2020,gas oil combustion consumption by public passenger transport,415.45224,TJ,N2O,3.9,kg/TJ,1620.263736,kg +7b0e2833-78ce-34e5-8fe2-8f11f2baf3d3,SESCO,II.1.1,Chaco,AR-H,annual,2020,gas oil combustion consumption by public passenger transport,6.24876,TJ,CO2,74100.0,kg/TJ,463033.116,kg +247bb280-bcc2-30b6-9b4b-773800050630,SESCO,II.1.1,Chaco,AR-H,annual,2020,gas oil combustion consumption by public passenger transport,6.24876,TJ,CH4,3.9,kg/TJ,24.370164,kg +247bb280-bcc2-30b6-9b4b-773800050630,SESCO,II.1.1,Chaco,AR-H,annual,2020,gas oil combustion consumption by public passenger transport,6.24876,TJ,N2O,3.9,kg/TJ,24.370164,kg +10fd2cf9-f20c-3a2f-b13f-b6b3cb78ef6d,SESCO,II.1.1,Chubut,AR-U,annual,2020,gas oil combustion consumption by public passenger transport,31.64112,TJ,CO2,74100.0,kg/TJ,2344606.992,kg +7b5cd093-b837-3b05-a175-e7e33572d833,SESCO,II.1.1,Chubut,AR-U,annual,2020,gas oil combustion consumption by public passenger transport,31.64112,TJ,CH4,3.9,kg/TJ,123.400368,kg +7b5cd093-b837-3b05-a175-e7e33572d833,SESCO,II.1.1,Chubut,AR-U,annual,2020,gas oil combustion consumption by public passenger transport,31.64112,TJ,N2O,3.9,kg/TJ,123.400368,kg +31939546-de6c-3f63-803c-96114a357038,SESCO,II.1.1,Corrientes,AR-W,annual,2020,gas oil combustion consumption by public passenger transport,9.2106,TJ,CO2,74100.0,kg/TJ,682505.46,kg +06e2c62d-c263-3d08-a176-a653274d4fdd,SESCO,II.1.1,Corrientes,AR-W,annual,2020,gas oil combustion consumption by public passenger transport,9.2106,TJ,CH4,3.9,kg/TJ,35.921339999999994,kg +06e2c62d-c263-3d08-a176-a653274d4fdd,SESCO,II.1.1,Corrientes,AR-W,annual,2020,gas oil combustion consumption by public passenger transport,9.2106,TJ,N2O,3.9,kg/TJ,35.921339999999994,kg +12f500e8-9fe7-36a4-9191-0f08ff3ee9b9,SESCO,II.1.1,Córdoba,AR-X,annual,2020,gas oil combustion consumption by public passenger transport,132.09084,TJ,CO2,74100.0,kg/TJ,9787931.243999999,kg +d65083e4-f749-3600-93a3-16918a6f3265,SESCO,II.1.1,Córdoba,AR-X,annual,2020,gas oil combustion consumption by public passenger transport,132.09084,TJ,CH4,3.9,kg/TJ,515.154276,kg +d65083e4-f749-3600-93a3-16918a6f3265,SESCO,II.1.1,Córdoba,AR-X,annual,2020,gas oil combustion consumption by public passenger transport,132.09084,TJ,N2O,3.9,kg/TJ,515.154276,kg +255a012c-2c36-30be-9007-28b7a3fe216c,SESCO,II.1.1,Entre Rios,AR-E,annual,2020,gas oil combustion consumption by public passenger transport,14.88144,TJ,CO2,74100.0,kg/TJ,1102714.704,kg +799ca722-d0d5-36ca-b81b-3798a6b06393,SESCO,II.1.1,Entre Rios,AR-E,annual,2020,gas oil combustion consumption by public passenger transport,14.88144,TJ,CH4,3.9,kg/TJ,58.037616,kg +799ca722-d0d5-36ca-b81b-3798a6b06393,SESCO,II.1.1,Entre Rios,AR-E,annual,2020,gas oil combustion consumption by public passenger transport,14.88144,TJ,N2O,3.9,kg/TJ,58.037616,kg +cfb16bff-278f-3b65-b51b-4a4ba3bfc4de,SESCO,II.1.1,Mendoza,AR-M,annual,2020,gas oil combustion consumption by public passenger transport,83.4372,TJ,CO2,74100.0,kg/TJ,6182696.5200000005,kg +79eb32df-cb47-3779-aa5f-2deaa610b618,SESCO,II.1.1,Mendoza,AR-M,annual,2020,gas oil combustion consumption by public passenger transport,83.4372,TJ,CH4,3.9,kg/TJ,325.40508,kg +79eb32df-cb47-3779-aa5f-2deaa610b618,SESCO,II.1.1,Mendoza,AR-M,annual,2020,gas oil combustion consumption by public passenger transport,83.4372,TJ,N2O,3.9,kg/TJ,325.40508,kg +21ccdea5-97a9-3576-83c4-9ac82fd5206d,SESCO,II.1.1,Misiones,AR-N,annual,2020,gas oil combustion consumption by public passenger transport,29.72676,TJ,CO2,74100.0,kg/TJ,2202752.9159999997,kg +c9ac5860-8860-3fda-ae65-52929e3b8c27,SESCO,II.1.1,Misiones,AR-N,annual,2020,gas oil combustion consumption by public passenger transport,29.72676,TJ,CH4,3.9,kg/TJ,115.93436399999999,kg +c9ac5860-8860-3fda-ae65-52929e3b8c27,SESCO,II.1.1,Misiones,AR-N,annual,2020,gas oil combustion consumption by public passenger transport,29.72676,TJ,N2O,3.9,kg/TJ,115.93436399999999,kg +1c2d185f-f8bd-3467-80bd-842fb59cb2e1,SESCO,II.1.1,Neuquén,AR-Q,annual,2020,gas oil combustion consumption by public passenger transport,15.45936,TJ,CO2,74100.0,kg/TJ,1145538.5760000001,kg +df3edd88-f4cb-3e82-a3a9-7dfa737e7cc5,SESCO,II.1.1,Neuquén,AR-Q,annual,2020,gas oil combustion consumption by public passenger transport,15.45936,TJ,CH4,3.9,kg/TJ,60.291503999999996,kg +df3edd88-f4cb-3e82-a3a9-7dfa737e7cc5,SESCO,II.1.1,Neuquén,AR-Q,annual,2020,gas oil combustion consumption by public passenger transport,15.45936,TJ,N2O,3.9,kg/TJ,60.291503999999996,kg +d032dca9-c1b8-3f21-9414-218f12d44ac2,SESCO,II.1.1,Rio Negro,AR-R,annual,2020,gas oil combustion consumption by public passenger transport,80.11416,TJ,CO2,74100.0,kg/TJ,5936459.256,kg +06746c9b-b17d-3257-bf6c-6a03a41cde4b,SESCO,II.1.1,Rio Negro,AR-R,annual,2020,gas oil combustion consumption by public passenger transport,80.11416,TJ,CH4,3.9,kg/TJ,312.445224,kg +06746c9b-b17d-3257-bf6c-6a03a41cde4b,SESCO,II.1.1,Rio Negro,AR-R,annual,2020,gas oil combustion consumption by public passenger transport,80.11416,TJ,N2O,3.9,kg/TJ,312.445224,kg +f346bb5b-8f81-382b-ac8a-4700e50f39ba,SESCO,II.1.1,Salta,AR-A,annual,2020,gas oil combustion consumption by public passenger transport,41.97144,TJ,CO2,74100.0,kg/TJ,3110083.704,kg +335baaeb-6c38-3259-9cd0-825c8aa678c7,SESCO,II.1.1,Salta,AR-A,annual,2020,gas oil combustion consumption by public passenger transport,41.97144,TJ,CH4,3.9,kg/TJ,163.688616,kg +335baaeb-6c38-3259-9cd0-825c8aa678c7,SESCO,II.1.1,Salta,AR-A,annual,2020,gas oil combustion consumption by public passenger transport,41.97144,TJ,N2O,3.9,kg/TJ,163.688616,kg +2fd403dc-1837-3e06-93e6-87b72230f2aa,SESCO,II.1.1,San Juan,AR-J,annual,2020,gas oil combustion consumption by public passenger transport,43.19952,TJ,CO2,74100.0,kg/TJ,3201084.432,kg +563facd3-fca1-344f-8039-67af33ac0e77,SESCO,II.1.1,San Juan,AR-J,annual,2020,gas oil combustion consumption by public passenger transport,43.19952,TJ,CH4,3.9,kg/TJ,168.478128,kg +563facd3-fca1-344f-8039-67af33ac0e77,SESCO,II.1.1,San Juan,AR-J,annual,2020,gas oil combustion consumption by public passenger transport,43.19952,TJ,N2O,3.9,kg/TJ,168.478128,kg +cb9ccf94-63e6-380a-8df8-670a8fae5d29,SESCO,II.1.1,Santa Fe,AR-S,annual,2020,gas oil combustion consumption by public passenger transport,115.51176,TJ,CO2,74100.0,kg/TJ,8559421.416,kg +5184025b-1136-31eb-b0ca-837e7a609d9e,SESCO,II.1.1,Santa Fe,AR-S,annual,2020,gas oil combustion consumption by public passenger transport,115.51176,TJ,CH4,3.9,kg/TJ,450.495864,kg +5184025b-1136-31eb-b0ca-837e7a609d9e,SESCO,II.1.1,Santa Fe,AR-S,annual,2020,gas oil combustion consumption by public passenger transport,115.51176,TJ,N2O,3.9,kg/TJ,450.495864,kg +a74ed51b-db87-36ae-a815-65c0c266aaf9,SESCO,II.1.1,Tucuman,AR-T,annual,2020,gas oil combustion consumption by public passenger transport,0.18059999999999998,TJ,CO2,74100.0,kg/TJ,13382.46,kg +1d24498c-aa42-3cd5-b833-a0fd59b7614c,SESCO,II.1.1,Tucuman,AR-T,annual,2020,gas oil combustion consumption by public passenger transport,0.18059999999999998,TJ,CH4,3.9,kg/TJ,0.70434,kg +1d24498c-aa42-3cd5-b833-a0fd59b7614c,SESCO,II.1.1,Tucuman,AR-T,annual,2020,gas oil combustion consumption by public passenger transport,0.18059999999999998,TJ,N2O,3.9,kg/TJ,0.70434,kg +38739a1c-4c8c-3e71-ad57-56c636eaf7df,SESCO,II.5.1,Buenos Aires,AR-B,annual,2021,gas oil combustion consumption by agriculture machines,567.3368399999999,TJ,CO2,74100.0,kg/TJ,42039659.844,kg +14e30095-1091-36ea-9d8e-fdec2e071c93,SESCO,II.5.1,Buenos Aires,AR-B,annual,2021,gas oil combustion consumption by agriculture machines,567.3368399999999,TJ,CH4,3.9,kg/TJ,2212.6136759999995,kg +14e30095-1091-36ea-9d8e-fdec2e071c93,SESCO,II.5.1,Buenos Aires,AR-B,annual,2021,gas oil combustion consumption by agriculture machines,567.3368399999999,TJ,N2O,3.9,kg/TJ,2212.6136759999995,kg +66494737-c341-35c7-a588-af948b76553b,SESCO,II.5.1,Córdoba,AR-X,annual,2021,gas oil combustion consumption by agriculture machines,146.24988,TJ,CO2,74100.0,kg/TJ,10837116.108,kg +b07237e0-597f-30e1-beee-6157e087e201,SESCO,II.5.1,Córdoba,AR-X,annual,2021,gas oil combustion consumption by agriculture machines,146.24988,TJ,CH4,3.9,kg/TJ,570.3745319999999,kg +b07237e0-597f-30e1-beee-6157e087e201,SESCO,II.5.1,Córdoba,AR-X,annual,2021,gas oil combustion consumption by agriculture machines,146.24988,TJ,N2O,3.9,kg/TJ,570.3745319999999,kg +3378e608-96bc-35a4-8a6c-4f106520a551,SESCO,II.5.1,Entre Rios,AR-E,annual,2021,gas oil combustion consumption by agriculture machines,24.09204,TJ,CO2,74100.0,kg/TJ,1785220.164,kg +3485cac7-0d5e-3791-b916-6a38f60149bf,SESCO,II.5.1,Entre Rios,AR-E,annual,2021,gas oil combustion consumption by agriculture machines,24.09204,TJ,CH4,3.9,kg/TJ,93.958956,kg +3485cac7-0d5e-3791-b916-6a38f60149bf,SESCO,II.5.1,Entre Rios,AR-E,annual,2021,gas oil combustion consumption by agriculture machines,24.09204,TJ,N2O,3.9,kg/TJ,93.958956,kg +29721295-2531-331c-a609-99a2de04a05a,SESCO,II.5.1,La Pampa,AR-L,annual,2021,gas oil combustion consumption by agriculture machines,17.8794,TJ,CO2,74100.0,kg/TJ,1324863.54,kg +fa58962f-289b-3bee-b63f-92c6fa2059eb,SESCO,II.5.1,La Pampa,AR-L,annual,2021,gas oil combustion consumption by agriculture machines,17.8794,TJ,CH4,3.9,kg/TJ,69.72966,kg +fa58962f-289b-3bee-b63f-92c6fa2059eb,SESCO,II.5.1,La Pampa,AR-L,annual,2021,gas oil combustion consumption by agriculture machines,17.8794,TJ,N2O,3.9,kg/TJ,69.72966,kg +fcddbf27-87e0-34d5-8d5a-150dd295bead,SESCO,II.5.1,Santa Fe,AR-S,annual,2021,gas oil combustion consumption by agriculture machines,372.65004,TJ,CO2,74100.0,kg/TJ,27613367.963999998,kg +37409be0-6fbe-3e25-ab3f-ba84a26f1bf3,SESCO,II.5.1,Santa Fe,AR-S,annual,2021,gas oil combustion consumption by agriculture machines,372.65004,TJ,CH4,3.9,kg/TJ,1453.3351559999999,kg +37409be0-6fbe-3e25-ab3f-ba84a26f1bf3,SESCO,II.5.1,Santa Fe,AR-S,annual,2021,gas oil combustion consumption by agriculture machines,372.65004,TJ,N2O,3.9,kg/TJ,1453.3351559999999,kg +257ffa8b-5e3b-338c-b712-ca34fdfc8a5a,SESCO,II.5.1,Buenos Aires,AR-B,annual,2021,gas oil combustion consumption by agriculture machines,20.06466,TJ,CO2,74100.0,kg/TJ,1486791.306,kg +9fcd37e3-803e-35ab-b135-417b3e450148,SESCO,II.5.1,Buenos Aires,AR-B,annual,2021,gas oil combustion consumption by agriculture machines,20.06466,TJ,CH4,3.9,kg/TJ,78.252174,kg +9fcd37e3-803e-35ab-b135-417b3e450148,SESCO,II.5.1,Buenos Aires,AR-B,annual,2021,gas oil combustion consumption by agriculture machines,20.06466,TJ,N2O,3.9,kg/TJ,78.252174,kg +f1b09d03-f880-3820-9011-d44884ed6779,SESCO,II.5.1,Córdoba,AR-X,annual,2021,gas oil combustion consumption by agriculture machines,4.11768,TJ,CO2,74100.0,kg/TJ,305120.088,kg +4d3c5302-5def-3aab-9c7a-b5d9b019c49e,SESCO,II.5.1,Córdoba,AR-X,annual,2021,gas oil combustion consumption by agriculture machines,4.11768,TJ,CH4,3.9,kg/TJ,16.058951999999998,kg +4d3c5302-5def-3aab-9c7a-b5d9b019c49e,SESCO,II.5.1,Córdoba,AR-X,annual,2021,gas oil combustion consumption by agriculture machines,4.11768,TJ,N2O,3.9,kg/TJ,16.058951999999998,kg +61265b96-e74a-3aab-a847-7a4dc048f1b0,SESCO,II.5.1,Santa Fe,AR-S,annual,2021,gas oil combustion consumption by agriculture machines,6.10428,TJ,CO2,74100.0,kg/TJ,452327.148,kg +43cf9ab5-e596-3759-a523-2f633b6aeb70,SESCO,II.5.1,Santa Fe,AR-S,annual,2021,gas oil combustion consumption by agriculture machines,6.10428,TJ,CH4,3.9,kg/TJ,23.806692,kg +43cf9ab5-e596-3759-a523-2f633b6aeb70,SESCO,II.5.1,Santa Fe,AR-S,annual,2021,gas oil combustion consumption by agriculture machines,6.10428,TJ,N2O,3.9,kg/TJ,23.806692,kg +62417eb9-a58c-3976-b47e-6dc27e37d570,SESCO,II.1.1,Buenos Aires,AR-B,annual,2021,gas oil combustion consumption by to the public,1911.07308,TJ,CO2,74100.0,kg/TJ,141610515.228,kg +bb9477aa-7c1f-3b4f-8e76-1808abccfa6d,SESCO,II.1.1,Buenos Aires,AR-B,annual,2021,gas oil combustion consumption by to the public,1911.07308,TJ,CH4,3.9,kg/TJ,7453.185011999999,kg +bb9477aa-7c1f-3b4f-8e76-1808abccfa6d,SESCO,II.1.1,Buenos Aires,AR-B,annual,2021,gas oil combustion consumption by to the public,1911.07308,TJ,N2O,3.9,kg/TJ,7453.185011999999,kg +e6640593-b933-3d37-bd57-28f195d362f7,SESCO,II.1.1,Capital Federal,AR-C,annual,2021,gas oil combustion consumption by to the public,91.41972,TJ,CO2,74100.0,kg/TJ,6774201.251999999,kg +2b5b1e84-3883-3741-aa46-4f839b289104,SESCO,II.1.1,Capital Federal,AR-C,annual,2021,gas oil combustion consumption by to the public,91.41972,TJ,CH4,3.9,kg/TJ,356.536908,kg +2b5b1e84-3883-3741-aa46-4f839b289104,SESCO,II.1.1,Capital Federal,AR-C,annual,2021,gas oil combustion consumption by to the public,91.41972,TJ,N2O,3.9,kg/TJ,356.536908,kg +1e04c5cf-1045-3b38-91ac-25c7df1c0d57,SESCO,II.1.1,Catamarca,AR-K,annual,2021,gas oil combustion consumption by to the public,8.92164,TJ,CO2,74100.0,kg/TJ,661093.524,kg +1b02fa39-1b51-346f-87a2-89377cfa86e3,SESCO,II.1.1,Catamarca,AR-K,annual,2021,gas oil combustion consumption by to the public,8.92164,TJ,CH4,3.9,kg/TJ,34.794396,kg +1b02fa39-1b51-346f-87a2-89377cfa86e3,SESCO,II.1.1,Catamarca,AR-K,annual,2021,gas oil combustion consumption by to the public,8.92164,TJ,N2O,3.9,kg/TJ,34.794396,kg +561d3bc1-4a10-34bc-a3de-f118cc1551ff,SESCO,II.1.1,Chaco,AR-H,annual,2021,gas oil combustion consumption by to the public,34.4946,TJ,CO2,74100.0,kg/TJ,2556049.86,kg +fcd7906d-d0ac-39f7-94c9-a118b05d9517,SESCO,II.1.1,Chaco,AR-H,annual,2021,gas oil combustion consumption by to the public,34.4946,TJ,CH4,3.9,kg/TJ,134.52893999999998,kg +fcd7906d-d0ac-39f7-94c9-a118b05d9517,SESCO,II.1.1,Chaco,AR-H,annual,2021,gas oil combustion consumption by to the public,34.4946,TJ,N2O,3.9,kg/TJ,134.52893999999998,kg +845c039e-f21e-354d-b582-0e4d63aff749,SESCO,II.1.1,Corrientes,AR-W,annual,2021,gas oil combustion consumption by to the public,1.91436,TJ,CO2,74100.0,kg/TJ,141854.076,kg +46eafcd1-b9b5-3fc7-9502-a3768edf1f48,SESCO,II.1.1,Corrientes,AR-W,annual,2021,gas oil combustion consumption by to the public,1.91436,TJ,CH4,3.9,kg/TJ,7.466004,kg +46eafcd1-b9b5-3fc7-9502-a3768edf1f48,SESCO,II.1.1,Corrientes,AR-W,annual,2021,gas oil combustion consumption by to the public,1.91436,TJ,N2O,3.9,kg/TJ,7.466004,kg +8fffaf38-5924-3fba-aa44-83588ee99ab7,SESCO,II.1.1,Córdoba,AR-X,annual,2021,gas oil combustion consumption by to the public,1512.45276,TJ,CO2,74100.0,kg/TJ,112072749.51599999,kg +1dec36ab-4e86-3fc5-8819-452528376257,SESCO,II.1.1,Córdoba,AR-X,annual,2021,gas oil combustion consumption by to the public,1512.45276,TJ,CH4,3.9,kg/TJ,5898.565763999999,kg +1dec36ab-4e86-3fc5-8819-452528376257,SESCO,II.1.1,Córdoba,AR-X,annual,2021,gas oil combustion consumption by to the public,1512.45276,TJ,N2O,3.9,kg/TJ,5898.565763999999,kg +cc65630e-f047-34cd-bac1-ebe586dda636,SESCO,II.1.1,Entre Rios,AR-E,annual,2021,gas oil combustion consumption by to the public,228.2784,TJ,CO2,74100.0,kg/TJ,16915429.44,kg +4431f700-e162-3a29-b310-590727d91f8a,SESCO,II.1.1,Entre Rios,AR-E,annual,2021,gas oil combustion consumption by to the public,228.2784,TJ,CH4,3.9,kg/TJ,890.28576,kg +4431f700-e162-3a29-b310-590727d91f8a,SESCO,II.1.1,Entre Rios,AR-E,annual,2021,gas oil combustion consumption by to the public,228.2784,TJ,N2O,3.9,kg/TJ,890.28576,kg +9cd64c8c-20b2-3246-b80e-392a52d21e46,SESCO,II.1.1,Mendoza,AR-M,annual,2021,gas oil combustion consumption by to the public,331.9428,TJ,CO2,74100.0,kg/TJ,24596961.479999997,kg +af236463-5776-3b4e-8692-fc08efd2ba48,SESCO,II.1.1,Mendoza,AR-M,annual,2021,gas oil combustion consumption by to the public,331.9428,TJ,CH4,3.9,kg/TJ,1294.57692,kg +af236463-5776-3b4e-8692-fc08efd2ba48,SESCO,II.1.1,Mendoza,AR-M,annual,2021,gas oil combustion consumption by to the public,331.9428,TJ,N2O,3.9,kg/TJ,1294.57692,kg +81a4bee8-6f24-3b97-9c93-625c77094644,SESCO,II.1.1,San Juan,AR-J,annual,2021,gas oil combustion consumption by to the public,4.04544,TJ,CO2,74100.0,kg/TJ,299767.104,kg +f1eed927-4bc8-377e-9279-24886b325d53,SESCO,II.1.1,San Juan,AR-J,annual,2021,gas oil combustion consumption by to the public,4.04544,TJ,CH4,3.9,kg/TJ,15.777216000000001,kg +f1eed927-4bc8-377e-9279-24886b325d53,SESCO,II.1.1,San Juan,AR-J,annual,2021,gas oil combustion consumption by to the public,4.04544,TJ,N2O,3.9,kg/TJ,15.777216000000001,kg +8b09cdd2-0d0d-3f9a-a512-b0a28a998c1f,SESCO,II.1.1,San Luis,AR-D,annual,2021,gas oil combustion consumption by to the public,11.26944,TJ,CO2,74100.0,kg/TJ,835065.504,kg +b1595724-b09c-3b6a-8726-2ee6f0fe9f18,SESCO,II.1.1,San Luis,AR-D,annual,2021,gas oil combustion consumption by to the public,11.26944,TJ,CH4,3.9,kg/TJ,43.950815999999996,kg +b1595724-b09c-3b6a-8726-2ee6f0fe9f18,SESCO,II.1.1,San Luis,AR-D,annual,2021,gas oil combustion consumption by to the public,11.26944,TJ,N2O,3.9,kg/TJ,43.950815999999996,kg +553fcf7b-9630-3112-8807-3505e4334d9d,SESCO,II.1.1,Santa Fe,AR-S,annual,2021,gas oil combustion consumption by to the public,1337.19852,TJ,CO2,74100.0,kg/TJ,99086410.33199999,kg +a4069c15-0ce1-30ec-9268-e63ea1bfaa32,SESCO,II.1.1,Santa Fe,AR-S,annual,2021,gas oil combustion consumption by to the public,1337.19852,TJ,CH4,3.9,kg/TJ,5215.0742279999995,kg +a4069c15-0ce1-30ec-9268-e63ea1bfaa32,SESCO,II.1.1,Santa Fe,AR-S,annual,2021,gas oil combustion consumption by to the public,1337.19852,TJ,N2O,3.9,kg/TJ,5215.0742279999995,kg +7684bd35-ab04-30a3-af71-ec6116656b0d,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2021,gas oil combustion consumption by to the public,12.13632,TJ,CO2,74100.0,kg/TJ,899301.3119999999,kg +c0770270-da5a-324a-b34e-0ca7895018cf,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2021,gas oil combustion consumption by to the public,12.13632,TJ,CH4,3.9,kg/TJ,47.331647999999994,kg +c0770270-da5a-324a-b34e-0ca7895018cf,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2021,gas oil combustion consumption by to the public,12.13632,TJ,N2O,3.9,kg/TJ,47.331647999999994,kg +e0fc65c6-2fb1-3bbd-b4d5-a7cb83d48043,SESCO,II.1.1,Tucuman,AR-T,annual,2021,gas oil combustion consumption by to the public,180.81672,TJ,CO2,74100.0,kg/TJ,13398518.952,kg +da531709-58bb-38b2-bba2-04f2cb1f8e89,SESCO,II.1.1,Tucuman,AR-T,annual,2021,gas oil combustion consumption by to the public,180.81672,TJ,CH4,3.9,kg/TJ,705.185208,kg +da531709-58bb-38b2-bba2-04f2cb1f8e89,SESCO,II.1.1,Tucuman,AR-T,annual,2021,gas oil combustion consumption by to the public,180.81672,TJ,N2O,3.9,kg/TJ,705.185208,kg +92999fa5-cc11-3f04-bd01-45420a7531a9,SESCO,II.1.1,Buenos Aires,AR-B,annual,2021,gas oil combustion consumption by to the public,118.04016,TJ,CO2,74100.0,kg/TJ,8746775.856,kg +c2ae23f4-ce8a-35e6-9216-db0e7ec65737,SESCO,II.1.1,Buenos Aires,AR-B,annual,2021,gas oil combustion consumption by to the public,118.04016,TJ,CH4,3.9,kg/TJ,460.356624,kg +c2ae23f4-ce8a-35e6-9216-db0e7ec65737,SESCO,II.1.1,Buenos Aires,AR-B,annual,2021,gas oil combustion consumption by to the public,118.04016,TJ,N2O,3.9,kg/TJ,460.356624,kg +ae95323d-0cfe-347f-b89b-655afbec52ea,SESCO,II.1.1,Capital Federal,AR-C,annual,2021,gas oil combustion consumption by to the public,15.24264,TJ,CO2,74100.0,kg/TJ,1129479.624,kg +880be51e-7bf0-32a9-8b90-48ecd534ed05,SESCO,II.1.1,Capital Federal,AR-C,annual,2021,gas oil combustion consumption by to the public,15.24264,TJ,CH4,3.9,kg/TJ,59.446296,kg +880be51e-7bf0-32a9-8b90-48ecd534ed05,SESCO,II.1.1,Capital Federal,AR-C,annual,2021,gas oil combustion consumption by to the public,15.24264,TJ,N2O,3.9,kg/TJ,59.446296,kg +3f83dec1-d4ea-353b-94aa-977e6161eb13,SESCO,II.1.1,Catamarca,AR-K,annual,2021,gas oil combustion consumption by to the public,8.307599999999999,TJ,CO2,74100.0,kg/TJ,615593.1599999999,kg +52a15292-81d3-3a1a-ae06-482b0bd4e33f,SESCO,II.1.1,Catamarca,AR-K,annual,2021,gas oil combustion consumption by to the public,8.307599999999999,TJ,CH4,3.9,kg/TJ,32.39964,kg +52a15292-81d3-3a1a-ae06-482b0bd4e33f,SESCO,II.1.1,Catamarca,AR-K,annual,2021,gas oil combustion consumption by to the public,8.307599999999999,TJ,N2O,3.9,kg/TJ,32.39964,kg +570d631c-26e4-377e-afea-cf37398a347c,SESCO,II.1.1,Chaco,AR-H,annual,2021,gas oil combustion consumption by to the public,0.39732,TJ,CO2,74100.0,kg/TJ,29441.412,kg +cea9d944-995e-3ccf-aaac-5a5c348ca242,SESCO,II.1.1,Chaco,AR-H,annual,2021,gas oil combustion consumption by to the public,0.39732,TJ,CH4,3.9,kg/TJ,1.549548,kg +cea9d944-995e-3ccf-aaac-5a5c348ca242,SESCO,II.1.1,Chaco,AR-H,annual,2021,gas oil combustion consumption by to the public,0.39732,TJ,N2O,3.9,kg/TJ,1.549548,kg +dc08d5f2-276c-37cb-ab46-ec83e157de83,SESCO,II.1.1,Corrientes,AR-W,annual,2021,gas oil combustion consumption by to the public,1.30032,TJ,CO2,74100.0,kg/TJ,96353.712,kg +216b6cd7-55d8-37e5-b2f3-b1a79864eb2d,SESCO,II.1.1,Corrientes,AR-W,annual,2021,gas oil combustion consumption by to the public,1.30032,TJ,CH4,3.9,kg/TJ,5.071248,kg +216b6cd7-55d8-37e5-b2f3-b1a79864eb2d,SESCO,II.1.1,Corrientes,AR-W,annual,2021,gas oil combustion consumption by to the public,1.30032,TJ,N2O,3.9,kg/TJ,5.071248,kg +2ebc4e67-5eb5-3e93-9da2-3d10b707fd53,SESCO,II.1.1,Córdoba,AR-X,annual,2021,gas oil combustion consumption by to the public,218.27316,TJ,CO2,74100.0,kg/TJ,16174041.156,kg +ae132989-de21-3f4f-8961-ac4586c6b8de,SESCO,II.1.1,Córdoba,AR-X,annual,2021,gas oil combustion consumption by to the public,218.27316,TJ,CH4,3.9,kg/TJ,851.265324,kg +ae132989-de21-3f4f-8961-ac4586c6b8de,SESCO,II.1.1,Córdoba,AR-X,annual,2021,gas oil combustion consumption by to the public,218.27316,TJ,N2O,3.9,kg/TJ,851.265324,kg +d54798cb-3c53-3096-9fe4-550ae1a18a5b,SESCO,II.1.1,Entre Rios,AR-E,annual,2021,gas oil combustion consumption by to the public,30.05184,TJ,CO2,74100.0,kg/TJ,2226841.344,kg +0df74e86-a689-355e-b43a-00c671615dc5,SESCO,II.1.1,Entre Rios,AR-E,annual,2021,gas oil combustion consumption by to the public,30.05184,TJ,CH4,3.9,kg/TJ,117.202176,kg +0df74e86-a689-355e-b43a-00c671615dc5,SESCO,II.1.1,Entre Rios,AR-E,annual,2021,gas oil combustion consumption by to the public,30.05184,TJ,N2O,3.9,kg/TJ,117.202176,kg +52c17393-a0a7-3162-89a7-d23f4d4f8d6e,SESCO,II.1.1,Mendoza,AR-M,annual,2021,gas oil combustion consumption by to the public,79.39176,TJ,CO2,74100.0,kg/TJ,5882929.416,kg +d2d10431-3b07-3ab4-b275-a56e51554a21,SESCO,II.1.1,Mendoza,AR-M,annual,2021,gas oil combustion consumption by to the public,79.39176,TJ,CH4,3.9,kg/TJ,309.627864,kg +d2d10431-3b07-3ab4-b275-a56e51554a21,SESCO,II.1.1,Mendoza,AR-M,annual,2021,gas oil combustion consumption by to the public,79.39176,TJ,N2O,3.9,kg/TJ,309.627864,kg +196d73f1-7dda-39b8-870f-15abb9826b99,SESCO,II.1.1,San Juan,AR-J,annual,2021,gas oil combustion consumption by to the public,0.39732,TJ,CO2,74100.0,kg/TJ,29441.412,kg +ba9dd283-8d48-3b77-ae48-52cdddf9e349,SESCO,II.1.1,San Juan,AR-J,annual,2021,gas oil combustion consumption by to the public,0.39732,TJ,CH4,3.9,kg/TJ,1.549548,kg +ba9dd283-8d48-3b77-ae48-52cdddf9e349,SESCO,II.1.1,San Juan,AR-J,annual,2021,gas oil combustion consumption by to the public,0.39732,TJ,N2O,3.9,kg/TJ,1.549548,kg +c76ee12b-ec6f-3b78-8034-83582e701ca8,SESCO,II.1.1,San Luis,AR-D,annual,2021,gas oil combustion consumption by to the public,2.4200399999999997,TJ,CO2,74100.0,kg/TJ,179324.96399999998,kg +3c77fae6-68b9-30fb-b202-2917014ba56c,SESCO,II.1.1,San Luis,AR-D,annual,2021,gas oil combustion consumption by to the public,2.4200399999999997,TJ,CH4,3.9,kg/TJ,9.438156,kg +3c77fae6-68b9-30fb-b202-2917014ba56c,SESCO,II.1.1,San Luis,AR-D,annual,2021,gas oil combustion consumption by to the public,2.4200399999999997,TJ,N2O,3.9,kg/TJ,9.438156,kg +e72d18f4-6aeb-3ffb-a6fb-db88b80fc08c,SESCO,II.1.1,Santa Fe,AR-S,annual,2021,gas oil combustion consumption by to the public,126.63672,TJ,CO2,74100.0,kg/TJ,9383780.952,kg +072d4955-4a41-3f00-99a9-9220a85f8ccb,SESCO,II.1.1,Santa Fe,AR-S,annual,2021,gas oil combustion consumption by to the public,126.63672,TJ,CH4,3.9,kg/TJ,493.88320799999997,kg +072d4955-4a41-3f00-99a9-9220a85f8ccb,SESCO,II.1.1,Santa Fe,AR-S,annual,2021,gas oil combustion consumption by to the public,126.63672,TJ,N2O,3.9,kg/TJ,493.88320799999997,kg +d67dac80-faa2-3c44-8acc-b66d4f2b443e,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2021,gas oil combustion consumption by to the public,9.680159999999999,TJ,CO2,74100.0,kg/TJ,717299.8559999999,kg +e8ee6700-c437-3eae-a9df-2f072e3ce913,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2021,gas oil combustion consumption by to the public,9.680159999999999,TJ,CH4,3.9,kg/TJ,37.752624,kg +e8ee6700-c437-3eae-a9df-2f072e3ce913,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2021,gas oil combustion consumption by to the public,9.680159999999999,TJ,N2O,3.9,kg/TJ,37.752624,kg +0f5b2ced-0936-3abd-b1f2-55bf152a2fbc,SESCO,II.1.1,Tucuman,AR-T,annual,2021,gas oil combustion consumption by to the public,11.70288,TJ,CO2,74100.0,kg/TJ,867183.408,kg +46325e83-93e3-3a00-8e6c-1659d3d85c54,SESCO,II.1.1,Tucuman,AR-T,annual,2021,gas oil combustion consumption by to the public,11.70288,TJ,CH4,3.9,kg/TJ,45.641232,kg +46325e83-93e3-3a00-8e6c-1659d3d85c54,SESCO,II.1.1,Tucuman,AR-T,annual,2021,gas oil combustion consumption by to the public,11.70288,TJ,N2O,3.9,kg/TJ,45.641232,kg +760070ad-0ddc-3ee2-bf2b-ee32ddcfd1ab,SESCO,II.1.1,Buenos Aires,AR-B,annual,2021,jet kerosene combustion consumption by to the public,0.31453,TJ,CO2,71500.0,kg/TJ,22488.894999999997,kg +14c3d360-c3f9-3a44-aa9c-d7a23f0be055,SESCO,II.1.1,Buenos Aires,AR-B,annual,2021,jet kerosene combustion consumption by to the public,0.31453,TJ,CH4,0.5,kg/TJ,0.157265,kg +3cbb27cd-15a8-30d0-a77a-e64d675f20a7,SESCO,II.1.1,Buenos Aires,AR-B,annual,2021,jet kerosene combustion consumption by to the public,0.31453,TJ,N2O,2.0,kg/TJ,0.62906,kg +77bacd10-66e5-3e65-9ec1-300c3dac0bca,SESCO,II.1.1,Córdoba,AR-X,annual,2021,jet kerosene combustion consumption by to the public,1.3839319999999997,TJ,CO2,71500.0,kg/TJ,98951.13799999998,kg +dca7ba9a-ecbd-39e0-814f-9307736f0f48,SESCO,II.1.1,Córdoba,AR-X,annual,2021,jet kerosene combustion consumption by to the public,1.3839319999999997,TJ,CH4,0.5,kg/TJ,0.6919659999999999,kg +822e0e2c-14d4-364b-b48b-de8e05f7baa1,SESCO,II.1.1,Córdoba,AR-X,annual,2021,jet kerosene combustion consumption by to the public,1.3839319999999997,TJ,N2O,2.0,kg/TJ,2.7678639999999994,kg +33a6f3ae-d6e0-3ce0-af12-2a5a9449e9c3,SESCO,II.1.1,Santa Fe,AR-S,annual,2021,jet kerosene combustion consumption by to the public,0.4717949999999999,TJ,CO2,71500.0,kg/TJ,33733.34249999999,kg +73367160-5971-3a65-9d12-0e80d258692c,SESCO,II.1.1,Santa Fe,AR-S,annual,2021,jet kerosene combustion consumption by to the public,0.4717949999999999,TJ,CH4,0.5,kg/TJ,0.23589749999999995,kg +eb9aa8fe-ebcd-3bfc-844d-cf76c0f4061c,SESCO,II.1.1,Santa Fe,AR-S,annual,2021,jet kerosene combustion consumption by to the public,0.4717949999999999,TJ,N2O,2.0,kg/TJ,0.9435899999999998,kg +fd6c0f8c-406e-3e59-84cb-b575f4d0c9ab,SESCO,II.5.1,Buenos Aires,AR-B,annual,2021,gas oil combustion consumption by agriculture machines,359.71908,TJ,CO2,74100.0,kg/TJ,26655183.828,kg +d952def6-1215-3c03-bf9e-bdc052daaa7d,SESCO,II.5.1,Buenos Aires,AR-B,annual,2021,gas oil combustion consumption by agriculture machines,359.71908,TJ,CH4,3.9,kg/TJ,1402.904412,kg +d952def6-1215-3c03-bf9e-bdc052daaa7d,SESCO,II.5.1,Buenos Aires,AR-B,annual,2021,gas oil combustion consumption by agriculture machines,359.71908,TJ,N2O,3.9,kg/TJ,1402.904412,kg +054f5c93-383f-3c91-8523-f61e49e4cf08,SESCO,II.5.1,Corrientes,AR-W,annual,2021,gas oil combustion consumption by agriculture machines,0.7223999999999999,TJ,CO2,74100.0,kg/TJ,53529.84,kg +930c9e36-d09e-31a8-a4e3-0e2b15c406c2,SESCO,II.5.1,Corrientes,AR-W,annual,2021,gas oil combustion consumption by agriculture machines,0.7223999999999999,TJ,CH4,3.9,kg/TJ,2.81736,kg +930c9e36-d09e-31a8-a4e3-0e2b15c406c2,SESCO,II.5.1,Corrientes,AR-W,annual,2021,gas oil combustion consumption by agriculture machines,0.7223999999999999,TJ,N2O,3.9,kg/TJ,2.81736,kg +8caa51c6-f688-3f55-9c77-cd985209c8a2,SESCO,II.5.1,Córdoba,AR-X,annual,2021,gas oil combustion consumption by agriculture machines,288.38208,TJ,CO2,74100.0,kg/TJ,21369112.128,kg +59e2bb27-f0da-3b7e-a7d8-c2622481ac53,SESCO,II.5.1,Córdoba,AR-X,annual,2021,gas oil combustion consumption by agriculture machines,288.38208,TJ,CH4,3.9,kg/TJ,1124.6901119999998,kg +59e2bb27-f0da-3b7e-a7d8-c2622481ac53,SESCO,II.5.1,Córdoba,AR-X,annual,2021,gas oil combustion consumption by agriculture machines,288.38208,TJ,N2O,3.9,kg/TJ,1124.6901119999998,kg +c4aaac14-10d6-36aa-ae95-ab4e8b9c341d,SESCO,II.5.1,Entre Rios,AR-E,annual,2021,gas oil combustion consumption by agriculture machines,279.027,TJ,CO2,74100.0,kg/TJ,20675900.7,kg +7078aba7-351b-380a-bd31-7a60cdec13d7,SESCO,II.5.1,Entre Rios,AR-E,annual,2021,gas oil combustion consumption by agriculture machines,279.027,TJ,CH4,3.9,kg/TJ,1088.2052999999999,kg +7078aba7-351b-380a-bd31-7a60cdec13d7,SESCO,II.5.1,Entre Rios,AR-E,annual,2021,gas oil combustion consumption by agriculture machines,279.027,TJ,N2O,3.9,kg/TJ,1088.2052999999999,kg +69fbb83b-66d7-3ce3-97b2-ba174abc8743,SESCO,II.5.1,Mendoza,AR-M,annual,2021,gas oil combustion consumption by agriculture machines,2.38392,TJ,CO2,74100.0,kg/TJ,176648.47199999998,kg +1597884b-aa42-3ae7-95cb-5d3ab454445f,SESCO,II.5.1,Mendoza,AR-M,annual,2021,gas oil combustion consumption by agriculture machines,2.38392,TJ,CH4,3.9,kg/TJ,9.297287999999998,kg +1597884b-aa42-3ae7-95cb-5d3ab454445f,SESCO,II.5.1,Mendoza,AR-M,annual,2021,gas oil combustion consumption by agriculture machines,2.38392,TJ,N2O,3.9,kg/TJ,9.297287999999998,kg +d106809a-53a1-3986-8b9f-c45a93090936,SESCO,II.5.1,Salta,AR-A,annual,2021,gas oil combustion consumption by agriculture machines,463.56408,TJ,CO2,74100.0,kg/TJ,34350098.328,kg +b1157bc1-328f-36ff-bb74-ff648a667f7b,SESCO,II.5.1,Salta,AR-A,annual,2021,gas oil combustion consumption by agriculture machines,463.56408,TJ,CH4,3.9,kg/TJ,1807.8999119999999,kg +b1157bc1-328f-36ff-bb74-ff648a667f7b,SESCO,II.5.1,Salta,AR-A,annual,2021,gas oil combustion consumption by agriculture machines,463.56408,TJ,N2O,3.9,kg/TJ,1807.8999119999999,kg +98ead2d6-c662-3c69-a4ac-3ae844580206,SESCO,II.5.1,Santa Cruz,AR-Z,annual,2021,gas oil combustion consumption by agriculture machines,13.14768,TJ,CO2,74100.0,kg/TJ,974243.088,kg +004cf539-5352-3341-b3e5-a08c2bc5a2ce,SESCO,II.5.1,Santa Cruz,AR-Z,annual,2021,gas oil combustion consumption by agriculture machines,13.14768,TJ,CH4,3.9,kg/TJ,51.275952,kg +004cf539-5352-3341-b3e5-a08c2bc5a2ce,SESCO,II.5.1,Santa Cruz,AR-Z,annual,2021,gas oil combustion consumption by agriculture machines,13.14768,TJ,N2O,3.9,kg/TJ,51.275952,kg +84219182-5c03-3c4e-9e2c-0ee587f7ef69,SESCO,II.5.1,Santa Fe,AR-S,annual,2021,gas oil combustion consumption by agriculture machines,157.15812,TJ,CO2,74100.0,kg/TJ,11645416.692,kg +500ceda6-d7a7-30c2-ab84-2c34773ddedc,SESCO,II.5.1,Santa Fe,AR-S,annual,2021,gas oil combustion consumption by agriculture machines,157.15812,TJ,CH4,3.9,kg/TJ,612.916668,kg +500ceda6-d7a7-30c2-ab84-2c34773ddedc,SESCO,II.5.1,Santa Fe,AR-S,annual,2021,gas oil combustion consumption by agriculture machines,157.15812,TJ,N2O,3.9,kg/TJ,612.916668,kg +c36d346a-db9b-3004-a55c-f23c3821aaed,SESCO,II.5.1,Buenos Aires,AR-B,annual,2021,gas oil combustion consumption by agriculture machines,4.37052,TJ,CO2,74100.0,kg/TJ,323855.532,kg +e49d7bfe-39de-3668-ac19-2f4eee53d0ac,SESCO,II.5.1,Buenos Aires,AR-B,annual,2021,gas oil combustion consumption by agriculture machines,4.37052,TJ,CH4,3.9,kg/TJ,17.045028,kg +e49d7bfe-39de-3668-ac19-2f4eee53d0ac,SESCO,II.5.1,Buenos Aires,AR-B,annual,2021,gas oil combustion consumption by agriculture machines,4.37052,TJ,N2O,3.9,kg/TJ,17.045028,kg +c9074328-0739-3f19-8419-0bacb52f1ced,SESCO,II.5.1,Córdoba,AR-X,annual,2021,gas oil combustion consumption by agriculture machines,3.53976,TJ,CO2,74100.0,kg/TJ,262296.21599999996,kg +6520de76-dd23-366a-aa20-a1cfcf7d1947,SESCO,II.5.1,Córdoba,AR-X,annual,2021,gas oil combustion consumption by agriculture machines,3.53976,TJ,CH4,3.9,kg/TJ,13.805063999999998,kg +6520de76-dd23-366a-aa20-a1cfcf7d1947,SESCO,II.5.1,Córdoba,AR-X,annual,2021,gas oil combustion consumption by agriculture machines,3.53976,TJ,N2O,3.9,kg/TJ,13.805063999999998,kg +7f4e18c7-19b2-374e-a183-ab61a951f4d0,SESCO,II.5.1,Entre Rios,AR-E,annual,2021,gas oil combustion consumption by agriculture machines,3.03408,TJ,CO2,74100.0,kg/TJ,224825.32799999998,kg +360740e7-ca0d-33d2-ba54-46dfdad2cb6c,SESCO,II.5.1,Entre Rios,AR-E,annual,2021,gas oil combustion consumption by agriculture machines,3.03408,TJ,CH4,3.9,kg/TJ,11.832911999999999,kg +360740e7-ca0d-33d2-ba54-46dfdad2cb6c,SESCO,II.5.1,Entre Rios,AR-E,annual,2021,gas oil combustion consumption by agriculture machines,3.03408,TJ,N2O,3.9,kg/TJ,11.832911999999999,kg +994b1bce-2527-3f7d-9978-aa3e1ecfa834,SESCO,II.5.1,Salta,AR-A,annual,2021,gas oil combustion consumption by agriculture machines,0.46956,TJ,CO2,74100.0,kg/TJ,34794.396,kg +6e640d6c-c4e8-338d-8432-b751cf2a13a4,SESCO,II.5.1,Salta,AR-A,annual,2021,gas oil combustion consumption by agriculture machines,0.46956,TJ,CH4,3.9,kg/TJ,1.831284,kg +6e640d6c-c4e8-338d-8432-b751cf2a13a4,SESCO,II.5.1,Salta,AR-A,annual,2021,gas oil combustion consumption by agriculture machines,0.46956,TJ,N2O,3.9,kg/TJ,1.831284,kg +2f3a9191-03a3-3dbb-9951-f6eee56e65e0,SESCO,II.5.1,Santa Fe,AR-S,annual,2021,gas oil combustion consumption by agriculture machines,1.2642,TJ,CO2,74100.0,kg/TJ,93677.22,kg +a231cce5-e1d2-3a36-85af-b2907160379b,SESCO,II.5.1,Santa Fe,AR-S,annual,2021,gas oil combustion consumption by agriculture machines,1.2642,TJ,CH4,3.9,kg/TJ,4.9303799999999995,kg +a231cce5-e1d2-3a36-85af-b2907160379b,SESCO,II.5.1,Santa Fe,AR-S,annual,2021,gas oil combustion consumption by agriculture machines,1.2642,TJ,N2O,3.9,kg/TJ,4.9303799999999995,kg +5860db89-8cad-3c31-9619-380105d80db2,SESCO,II.1.1,Buenos Aires,AR-B,annual,2021,gas oil combustion consumption by to the public,2175.83268,TJ,CO2,74100.0,kg/TJ,161229201.588,kg +cccdc60a-dea7-3e71-a9cb-69bd8f7b3701,SESCO,II.1.1,Buenos Aires,AR-B,annual,2021,gas oil combustion consumption by to the public,2175.83268,TJ,CH4,3.9,kg/TJ,8485.747452,kg +cccdc60a-dea7-3e71-a9cb-69bd8f7b3701,SESCO,II.1.1,Buenos Aires,AR-B,annual,2021,gas oil combustion consumption by to the public,2175.83268,TJ,N2O,3.9,kg/TJ,8485.747452,kg +5f921502-17fc-3b00-bdce-1ffcbae2cbdf,SESCO,II.1.1,Capital Federal,AR-C,annual,2021,gas oil combustion consumption by to the public,436.149,TJ,CO2,74100.0,kg/TJ,32318640.9,kg +b92dd709-57cb-3820-a8f7-89718dbda28d,SESCO,II.1.1,Capital Federal,AR-C,annual,2021,gas oil combustion consumption by to the public,436.149,TJ,CH4,3.9,kg/TJ,1700.9811,kg +b92dd709-57cb-3820-a8f7-89718dbda28d,SESCO,II.1.1,Capital Federal,AR-C,annual,2021,gas oil combustion consumption by to the public,436.149,TJ,N2O,3.9,kg/TJ,1700.9811,kg +f1f01236-baac-3969-9a6b-698ba0a194fa,SESCO,II.1.1,Catamarca,AR-K,annual,2021,gas oil combustion consumption by to the public,45.65568,TJ,CO2,74100.0,kg/TJ,3383085.888,kg +cc1708d6-ce26-3219-9599-1f35548c9bdd,SESCO,II.1.1,Catamarca,AR-K,annual,2021,gas oil combustion consumption by to the public,45.65568,TJ,CH4,3.9,kg/TJ,178.05715199999997,kg +cc1708d6-ce26-3219-9599-1f35548c9bdd,SESCO,II.1.1,Catamarca,AR-K,annual,2021,gas oil combustion consumption by to the public,45.65568,TJ,N2O,3.9,kg/TJ,178.05715199999997,kg +ba587f90-7f72-3e0a-96ee-2d2df77ddd7a,SESCO,II.1.1,Chaco,AR-H,annual,2021,gas oil combustion consumption by to the public,321.93756,TJ,CO2,74100.0,kg/TJ,23855573.196000002,kg +cb73035a-c429-3706-99f4-2a2178724ced,SESCO,II.1.1,Chaco,AR-H,annual,2021,gas oil combustion consumption by to the public,321.93756,TJ,CH4,3.9,kg/TJ,1255.556484,kg +cb73035a-c429-3706-99f4-2a2178724ced,SESCO,II.1.1,Chaco,AR-H,annual,2021,gas oil combustion consumption by to the public,321.93756,TJ,N2O,3.9,kg/TJ,1255.556484,kg +b8e697bf-cbd5-379b-8ae5-13555f664ebc,SESCO,II.1.1,Corrientes,AR-W,annual,2021,gas oil combustion consumption by to the public,564.04992,TJ,CO2,74100.0,kg/TJ,41796099.072000004,kg +61b5e75b-6ff7-30a7-9af3-302ccbe01fa7,SESCO,II.1.1,Corrientes,AR-W,annual,2021,gas oil combustion consumption by to the public,564.04992,TJ,CH4,3.9,kg/TJ,2199.794688,kg +61b5e75b-6ff7-30a7-9af3-302ccbe01fa7,SESCO,II.1.1,Corrientes,AR-W,annual,2021,gas oil combustion consumption by to the public,564.04992,TJ,N2O,3.9,kg/TJ,2199.794688,kg +34e5e8c6-8346-371d-ab7a-e291a0f2d991,SESCO,II.1.1,Córdoba,AR-X,annual,2021,gas oil combustion consumption by to the public,1032.02064,TJ,CO2,74100.0,kg/TJ,76472729.424,kg +c8150bf7-adee-3072-b147-f45f44499e94,SESCO,II.1.1,Córdoba,AR-X,annual,2021,gas oil combustion consumption by to the public,1032.02064,TJ,CH4,3.9,kg/TJ,4024.8804959999998,kg +c8150bf7-adee-3072-b147-f45f44499e94,SESCO,II.1.1,Córdoba,AR-X,annual,2021,gas oil combustion consumption by to the public,1032.02064,TJ,N2O,3.9,kg/TJ,4024.8804959999998,kg +b3f66bf5-1a07-3d5b-84e5-b5e408348897,SESCO,II.1.1,Entre Rios,AR-E,annual,2021,gas oil combustion consumption by to the public,754.51068,TJ,CO2,74100.0,kg/TJ,55909241.388,kg +f9c15362-c283-3edf-b6d1-b62277a466d2,SESCO,II.1.1,Entre Rios,AR-E,annual,2021,gas oil combustion consumption by to the public,754.51068,TJ,CH4,3.9,kg/TJ,2942.591652,kg +f9c15362-c283-3edf-b6d1-b62277a466d2,SESCO,II.1.1,Entre Rios,AR-E,annual,2021,gas oil combustion consumption by to the public,754.51068,TJ,N2O,3.9,kg/TJ,2942.591652,kg +d1f79ab4-ba9a-3355-8e23-380b5b82207f,SESCO,II.1.1,Formosa,AR-P,annual,2021,gas oil combustion consumption by to the public,17.662679999999998,TJ,CO2,74100.0,kg/TJ,1308804.5879999998,kg +b2c75ed7-6a4e-3f3f-9d23-89809883f256,SESCO,II.1.1,Formosa,AR-P,annual,2021,gas oil combustion consumption by to the public,17.662679999999998,TJ,CH4,3.9,kg/TJ,68.884452,kg +b2c75ed7-6a4e-3f3f-9d23-89809883f256,SESCO,II.1.1,Formosa,AR-P,annual,2021,gas oil combustion consumption by to the public,17.662679999999998,TJ,N2O,3.9,kg/TJ,68.884452,kg +266f6f30-6739-3645-b0f4-59cc1f4ff00e,SESCO,II.1.1,La Rioja,AR-F,annual,2021,gas oil combustion consumption by to the public,47.35332,TJ,CO2,74100.0,kg/TJ,3508881.0119999996,kg +64f050fc-3d53-3b3d-a5e5-dd281d665009,SESCO,II.1.1,La Rioja,AR-F,annual,2021,gas oil combustion consumption by to the public,47.35332,TJ,CH4,3.9,kg/TJ,184.677948,kg +64f050fc-3d53-3b3d-a5e5-dd281d665009,SESCO,II.1.1,La Rioja,AR-F,annual,2021,gas oil combustion consumption by to the public,47.35332,TJ,N2O,3.9,kg/TJ,184.677948,kg +3e5e6a75-e42c-320b-80b1-95b443dbef61,SESCO,II.1.1,Mendoza,AR-M,annual,2021,gas oil combustion consumption by to the public,1159.19916,TJ,CO2,74100.0,kg/TJ,85896657.756,kg +118993cd-9576-3586-87bf-eb80f8683a05,SESCO,II.1.1,Mendoza,AR-M,annual,2021,gas oil combustion consumption by to the public,1159.19916,TJ,CH4,3.9,kg/TJ,4520.876724,kg +118993cd-9576-3586-87bf-eb80f8683a05,SESCO,II.1.1,Mendoza,AR-M,annual,2021,gas oil combustion consumption by to the public,1159.19916,TJ,N2O,3.9,kg/TJ,4520.876724,kg +74799781-3e56-388d-b3d7-49dcb1dd15bf,SESCO,II.1.1,Misiones,AR-N,annual,2021,gas oil combustion consumption by to the public,346.46304,TJ,CO2,74100.0,kg/TJ,25672911.264,kg +d4b5cdcc-8833-3697-b98b-f6b85bc65b50,SESCO,II.1.1,Misiones,AR-N,annual,2021,gas oil combustion consumption by to the public,346.46304,TJ,CH4,3.9,kg/TJ,1351.2058559999998,kg +d4b5cdcc-8833-3697-b98b-f6b85bc65b50,SESCO,II.1.1,Misiones,AR-N,annual,2021,gas oil combustion consumption by to the public,346.46304,TJ,N2O,3.9,kg/TJ,1351.2058559999998,kg +263a3293-cca5-3fad-afa4-ff58c161db56,SESCO,II.1.1,San Juan,AR-J,annual,2021,gas oil combustion consumption by to the public,43.05504,TJ,CO2,74100.0,kg/TJ,3190378.4639999997,kg +645e6775-98b7-3404-82f6-2b33101deadd,SESCO,II.1.1,San Juan,AR-J,annual,2021,gas oil combustion consumption by to the public,43.05504,TJ,CH4,3.9,kg/TJ,167.91465599999998,kg +645e6775-98b7-3404-82f6-2b33101deadd,SESCO,II.1.1,San Juan,AR-J,annual,2021,gas oil combustion consumption by to the public,43.05504,TJ,N2O,3.9,kg/TJ,167.91465599999998,kg +1c99c22b-2e43-3e5d-8a77-999cc070ff4c,SESCO,II.1.1,San Luis,AR-D,annual,2021,gas oil combustion consumption by to the public,3.0702,TJ,CO2,74100.0,kg/TJ,227501.81999999998,kg +f5b4bd91-1764-3969-80de-23ea3f05e4eb,SESCO,II.1.1,San Luis,AR-D,annual,2021,gas oil combustion consumption by to the public,3.0702,TJ,CH4,3.9,kg/TJ,11.97378,kg +f5b4bd91-1764-3969-80de-23ea3f05e4eb,SESCO,II.1.1,San Luis,AR-D,annual,2021,gas oil combustion consumption by to the public,3.0702,TJ,N2O,3.9,kg/TJ,11.97378,kg +7dda8051-b258-3d39-bf49-155a61449b2e,SESCO,II.1.1,Santa Fe,AR-S,annual,2021,gas oil combustion consumption by to the public,1082.7331199999999,TJ,CO2,74100.0,kg/TJ,80230524.19199999,kg +efa30b49-ef51-351a-9723-9ceab82ede7f,SESCO,II.1.1,Santa Fe,AR-S,annual,2021,gas oil combustion consumption by to the public,1082.7331199999999,TJ,CH4,3.9,kg/TJ,4222.659167999999,kg +efa30b49-ef51-351a-9723-9ceab82ede7f,SESCO,II.1.1,Santa Fe,AR-S,annual,2021,gas oil combustion consumption by to the public,1082.7331199999999,TJ,N2O,3.9,kg/TJ,4222.659167999999,kg +fafa9801-f305-30cd-a8a4-b859e1d8db01,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2021,gas oil combustion consumption by to the public,96.15144,TJ,CO2,74100.0,kg/TJ,7124821.704,kg +b9aede4f-ae09-34b8-bb18-d7136884c7af,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2021,gas oil combustion consumption by to the public,96.15144,TJ,CH4,3.9,kg/TJ,374.990616,kg +b9aede4f-ae09-34b8-bb18-d7136884c7af,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2021,gas oil combustion consumption by to the public,96.15144,TJ,N2O,3.9,kg/TJ,374.990616,kg +f5c2982a-e54d-33f1-ac0d-34fb783dc659,SESCO,II.1.1,Tucuman,AR-T,annual,2021,gas oil combustion consumption by to the public,204.90876,TJ,CO2,74100.0,kg/TJ,15183739.116,kg +ea81e229-5096-3a43-bb2e-6adb4ff241cb,SESCO,II.1.1,Tucuman,AR-T,annual,2021,gas oil combustion consumption by to the public,204.90876,TJ,CH4,3.9,kg/TJ,799.1441639999999,kg +ea81e229-5096-3a43-bb2e-6adb4ff241cb,SESCO,II.1.1,Tucuman,AR-T,annual,2021,gas oil combustion consumption by to the public,204.90876,TJ,N2O,3.9,kg/TJ,799.1441639999999,kg +5c6c47f9-2457-35ef-a034-48101afec243,SESCO,II.1.1,Buenos Aires,AR-B,annual,2021,gas oil combustion consumption by to the public,299.6154,TJ,CO2,74100.0,kg/TJ,22201501.14,kg +ba95c102-24ba-3fe7-be40-432d7609d552,SESCO,II.1.1,Buenos Aires,AR-B,annual,2021,gas oil combustion consumption by to the public,299.6154,TJ,CH4,3.9,kg/TJ,1168.50006,kg +ba95c102-24ba-3fe7-be40-432d7609d552,SESCO,II.1.1,Buenos Aires,AR-B,annual,2021,gas oil combustion consumption by to the public,299.6154,TJ,N2O,3.9,kg/TJ,1168.50006,kg +04a62a9b-51eb-3712-ad3c-46a5a3e69433,SESCO,II.1.1,Capital Federal,AR-C,annual,2021,gas oil combustion consumption by to the public,53.67432,TJ,CO2,74100.0,kg/TJ,3977267.112,kg +b81308b0-4f1c-3a6b-b3f1-f9636e568e14,SESCO,II.1.1,Capital Federal,AR-C,annual,2021,gas oil combustion consumption by to the public,53.67432,TJ,CH4,3.9,kg/TJ,209.329848,kg +b81308b0-4f1c-3a6b-b3f1-f9636e568e14,SESCO,II.1.1,Capital Federal,AR-C,annual,2021,gas oil combustion consumption by to the public,53.67432,TJ,N2O,3.9,kg/TJ,209.329848,kg +680bb599-cd90-378e-a78f-c474ffdbad42,SESCO,II.1.1,Catamarca,AR-K,annual,2021,gas oil combustion consumption by to the public,40.2738,TJ,CO2,74100.0,kg/TJ,2984288.58,kg +c0fde969-21ad-36af-b00f-caa8266bbdee,SESCO,II.1.1,Catamarca,AR-K,annual,2021,gas oil combustion consumption by to the public,40.2738,TJ,CH4,3.9,kg/TJ,157.06782,kg +c0fde969-21ad-36af-b00f-caa8266bbdee,SESCO,II.1.1,Catamarca,AR-K,annual,2021,gas oil combustion consumption by to the public,40.2738,TJ,N2O,3.9,kg/TJ,157.06782,kg +b8652771-7057-36f8-a8ea-336409cc6b69,SESCO,II.1.1,Chaco,AR-H,annual,2021,gas oil combustion consumption by to the public,67.43604,TJ,CO2,74100.0,kg/TJ,4997010.564,kg +8d626293-dede-30ab-9c0f-48bed7b24568,SESCO,II.1.1,Chaco,AR-H,annual,2021,gas oil combustion consumption by to the public,67.43604,TJ,CH4,3.9,kg/TJ,263.000556,kg +8d626293-dede-30ab-9c0f-48bed7b24568,SESCO,II.1.1,Chaco,AR-H,annual,2021,gas oil combustion consumption by to the public,67.43604,TJ,N2O,3.9,kg/TJ,263.000556,kg +109903c0-3fdc-3929-bce3-39b557636951,SESCO,II.1.1,Corrientes,AR-W,annual,2021,gas oil combustion consumption by to the public,18.31284,TJ,CO2,74100.0,kg/TJ,1356981.4440000001,kg +3e1cc5a6-4ba6-347a-984e-63ba06823c1e,SESCO,II.1.1,Corrientes,AR-W,annual,2021,gas oil combustion consumption by to the public,18.31284,TJ,CH4,3.9,kg/TJ,71.42007600000001,kg +3e1cc5a6-4ba6-347a-984e-63ba06823c1e,SESCO,II.1.1,Corrientes,AR-W,annual,2021,gas oil combustion consumption by to the public,18.31284,TJ,N2O,3.9,kg/TJ,71.42007600000001,kg +d578b730-dabf-3cd5-9dd4-e400567cac21,SESCO,II.1.1,Córdoba,AR-X,annual,2021,gas oil combustion consumption by to the public,161.88984,TJ,CO2,74100.0,kg/TJ,11996037.144,kg +88aed5d8-a823-3dbb-9596-b77199df6c58,SESCO,II.1.1,Córdoba,AR-X,annual,2021,gas oil combustion consumption by to the public,161.88984,TJ,CH4,3.9,kg/TJ,631.370376,kg +88aed5d8-a823-3dbb-9596-b77199df6c58,SESCO,II.1.1,Córdoba,AR-X,annual,2021,gas oil combustion consumption by to the public,161.88984,TJ,N2O,3.9,kg/TJ,631.370376,kg +77712bb8-8ccf-312b-9794-4721c8050f8f,SESCO,II.1.1,Entre Rios,AR-E,annual,2021,gas oil combustion consumption by to the public,96.47652,TJ,CO2,74100.0,kg/TJ,7148910.131999999,kg +e91cbcb6-1507-35e3-9a87-1f33b31548e8,SESCO,II.1.1,Entre Rios,AR-E,annual,2021,gas oil combustion consumption by to the public,96.47652,TJ,CH4,3.9,kg/TJ,376.258428,kg +e91cbcb6-1507-35e3-9a87-1f33b31548e8,SESCO,II.1.1,Entre Rios,AR-E,annual,2021,gas oil combustion consumption by to the public,96.47652,TJ,N2O,3.9,kg/TJ,376.258428,kg +c88450b7-fe15-334a-a877-de5de7ded287,SESCO,II.1.1,Formosa,AR-P,annual,2021,gas oil combustion consumption by to the public,9.64404,TJ,CO2,74100.0,kg/TJ,714623.3640000001,kg +6983249a-9e7c-3ee1-a20e-8b594b9b411b,SESCO,II.1.1,Formosa,AR-P,annual,2021,gas oil combustion consumption by to the public,9.64404,TJ,CH4,3.9,kg/TJ,37.611756,kg +6983249a-9e7c-3ee1-a20e-8b594b9b411b,SESCO,II.1.1,Formosa,AR-P,annual,2021,gas oil combustion consumption by to the public,9.64404,TJ,N2O,3.9,kg/TJ,37.611756,kg +a7f8c277-b567-3a6c-adbc-1958825b2757,SESCO,II.1.1,La Rioja,AR-F,annual,2021,gas oil combustion consumption by to the public,23.69472,TJ,CO2,74100.0,kg/TJ,1755778.752,kg +8b830baf-4bcd-3f04-bd00-da573877185c,SESCO,II.1.1,La Rioja,AR-F,annual,2021,gas oil combustion consumption by to the public,23.69472,TJ,CH4,3.9,kg/TJ,92.409408,kg +8b830baf-4bcd-3f04-bd00-da573877185c,SESCO,II.1.1,La Rioja,AR-F,annual,2021,gas oil combustion consumption by to the public,23.69472,TJ,N2O,3.9,kg/TJ,92.409408,kg +dd13b99a-b61a-3de1-8456-7aeb2345a1bb,SESCO,II.1.1,Mendoza,AR-M,annual,2021,gas oil combustion consumption by to the public,128.91228,TJ,CO2,74100.0,kg/TJ,9552399.948,kg +6d518e0f-06e9-394b-9f13-f2fb802e4231,SESCO,II.1.1,Mendoza,AR-M,annual,2021,gas oil combustion consumption by to the public,128.91228,TJ,CH4,3.9,kg/TJ,502.757892,kg +6d518e0f-06e9-394b-9f13-f2fb802e4231,SESCO,II.1.1,Mendoza,AR-M,annual,2021,gas oil combustion consumption by to the public,128.91228,TJ,N2O,3.9,kg/TJ,502.757892,kg +6ffab669-0695-3cd7-a8a4-aabf083023c8,SESCO,II.1.1,Misiones,AR-N,annual,2021,gas oil combustion consumption by to the public,36.15612,TJ,CO2,74100.0,kg/TJ,2679168.492,kg +eaa66416-6495-332f-a298-bdf7313b1914,SESCO,II.1.1,Misiones,AR-N,annual,2021,gas oil combustion consumption by to the public,36.15612,TJ,CH4,3.9,kg/TJ,141.008868,kg +eaa66416-6495-332f-a298-bdf7313b1914,SESCO,II.1.1,Misiones,AR-N,annual,2021,gas oil combustion consumption by to the public,36.15612,TJ,N2O,3.9,kg/TJ,141.008868,kg +bdbbdb80-dcd0-353b-bf8c-6ec87efcce49,SESCO,II.1.1,Salta,AR-A,annual,2021,gas oil combustion consumption by to the public,3.39528,TJ,CO2,74100.0,kg/TJ,251590.248,kg +db79aa63-f22a-3cef-ab66-a6142ff6c41f,SESCO,II.1.1,Salta,AR-A,annual,2021,gas oil combustion consumption by to the public,3.39528,TJ,CH4,3.9,kg/TJ,13.241592,kg +db79aa63-f22a-3cef-ab66-a6142ff6c41f,SESCO,II.1.1,Salta,AR-A,annual,2021,gas oil combustion consumption by to the public,3.39528,TJ,N2O,3.9,kg/TJ,13.241592,kg +caf7464a-4ad0-37be-aa2d-fe143ab94ce5,SESCO,II.1.1,San Juan,AR-J,annual,2021,gas oil combustion consumption by to the public,6.24876,TJ,CO2,74100.0,kg/TJ,463033.116,kg +6d210c6e-e7b8-3c5d-8aea-8dc7d2d1d838,SESCO,II.1.1,San Juan,AR-J,annual,2021,gas oil combustion consumption by to the public,6.24876,TJ,CH4,3.9,kg/TJ,24.370164,kg +6d210c6e-e7b8-3c5d-8aea-8dc7d2d1d838,SESCO,II.1.1,San Juan,AR-J,annual,2021,gas oil combustion consumption by to the public,6.24876,TJ,N2O,3.9,kg/TJ,24.370164,kg +d8033229-7cb8-3367-837a-d72bb099a3ff,SESCO,II.1.1,San Luis,AR-D,annual,2021,gas oil combustion consumption by to the public,1.6615199999999999,TJ,CO2,74100.0,kg/TJ,123118.632,kg +ddcfa39a-09c1-3ee4-a47e-24dc06f97414,SESCO,II.1.1,San Luis,AR-D,annual,2021,gas oil combustion consumption by to the public,1.6615199999999999,TJ,CH4,3.9,kg/TJ,6.479927999999999,kg +ddcfa39a-09c1-3ee4-a47e-24dc06f97414,SESCO,II.1.1,San Luis,AR-D,annual,2021,gas oil combustion consumption by to the public,1.6615199999999999,TJ,N2O,3.9,kg/TJ,6.479927999999999,kg +c1c53ca4-4fe9-3d00-82d0-46db21f64520,SESCO,II.1.1,Santa Fe,AR-S,annual,2021,gas oil combustion consumption by to the public,148.38096,TJ,CO2,74100.0,kg/TJ,10995029.136,kg +a04dfcfe-f48a-3108-9117-644759068d86,SESCO,II.1.1,Santa Fe,AR-S,annual,2021,gas oil combustion consumption by to the public,148.38096,TJ,CH4,3.9,kg/TJ,578.6857439999999,kg +a04dfcfe-f48a-3108-9117-644759068d86,SESCO,II.1.1,Santa Fe,AR-S,annual,2021,gas oil combustion consumption by to the public,148.38096,TJ,N2O,3.9,kg/TJ,578.6857439999999,kg +4aa614b7-7d52-31d5-a193-1f8ce7f5f29d,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2021,gas oil combustion consumption by to the public,16.68744,TJ,CO2,74100.0,kg/TJ,1236539.304,kg +ece5519b-1a8f-3be8-a199-0b324e39efd3,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2021,gas oil combustion consumption by to the public,16.68744,TJ,CH4,3.9,kg/TJ,65.08101599999999,kg +ece5519b-1a8f-3be8-a199-0b324e39efd3,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2021,gas oil combustion consumption by to the public,16.68744,TJ,N2O,3.9,kg/TJ,65.08101599999999,kg +b4247e23-1732-3f00-aa07-6d2fac5a856e,SESCO,II.1.1,Tucuman,AR-T,annual,2021,gas oil combustion consumption by to the public,21.81648,TJ,CO2,74100.0,kg/TJ,1616601.1679999998,kg +d87ffd80-7263-3606-a990-cd82e3f53720,SESCO,II.1.1,Tucuman,AR-T,annual,2021,gas oil combustion consumption by to the public,21.81648,TJ,CH4,3.9,kg/TJ,85.084272,kg +d87ffd80-7263-3606-a990-cd82e3f53720,SESCO,II.1.1,Tucuman,AR-T,annual,2021,gas oil combustion consumption by to the public,21.81648,TJ,N2O,3.9,kg/TJ,85.084272,kg +f5954adc-3e24-3550-bb44-9291133a8492,SESCO,II.1.1,Corrientes,AR-W,annual,2021,jet kerosene combustion consumption by to the public,0.22017099999999995,TJ,CO2,71500.0,kg/TJ,15742.226499999997,kg +9397eed2-68ac-3113-8fc6-183166b85436,SESCO,II.1.1,Corrientes,AR-W,annual,2021,jet kerosene combustion consumption by to the public,0.22017099999999995,TJ,CH4,0.5,kg/TJ,0.11008549999999998,kg +8048d840-3ba7-353b-ac65-dbd83534c0b4,SESCO,II.1.1,Corrientes,AR-W,annual,2021,jet kerosene combustion consumption by to the public,0.22017099999999995,TJ,N2O,2.0,kg/TJ,0.4403419999999999,kg +5bee6964-7626-35ea-bb08-ff6e6f43d15d,SESCO,II.1.1,Entre Rios,AR-E,annual,2021,jet kerosene combustion consumption by to the public,0.31453,TJ,CO2,71500.0,kg/TJ,22488.894999999997,kg +8087ef65-c490-392f-9423-751ecce1f826,SESCO,II.1.1,Entre Rios,AR-E,annual,2021,jet kerosene combustion consumption by to the public,0.31453,TJ,CH4,0.5,kg/TJ,0.157265,kg +78265cbd-9b82-3a51-be1a-7fe5fe67525d,SESCO,II.1.1,Entre Rios,AR-E,annual,2021,jet kerosene combustion consumption by to the public,0.31453,TJ,N2O,2.0,kg/TJ,0.62906,kg +01f9bb52-ce69-3172-855e-d556ff8d64c6,SESCO,II.1.1,Santa Fe,AR-S,annual,2021,jet kerosene combustion consumption by to the public,0.6919659999999999,TJ,CO2,71500.0,kg/TJ,49475.56899999999,kg +79060ad2-42c1-3925-b913-9364dd7cff90,SESCO,II.1.1,Santa Fe,AR-S,annual,2021,jet kerosene combustion consumption by to the public,0.6919659999999999,TJ,CH4,0.5,kg/TJ,0.34598299999999993,kg +b3d2e131-24e1-3c60-aa71-3e6fde96375f,SESCO,II.1.1,Santa Fe,AR-S,annual,2021,jet kerosene combustion consumption by to the public,0.6919659999999999,TJ,N2O,2.0,kg/TJ,1.3839319999999997,kg +1f585707-b050-3641-9b7b-8ae312504ed7,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2021,jet kerosene combustion consumption by to the public,0.9750429999999999,TJ,CO2,71500.0,kg/TJ,69715.57449999999,kg +fc44b6ae-a802-3569-9a85-6b69a4620c25,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2021,jet kerosene combustion consumption by to the public,0.9750429999999999,TJ,CH4,0.5,kg/TJ,0.48752149999999994,kg +5ffe46e7-22b2-392b-a85e-629d915c3684,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2021,jet kerosene combustion consumption by to the public,0.9750429999999999,TJ,N2O,2.0,kg/TJ,1.9500859999999998,kg +0e102e6b-dcee-3618-874d-fede17c2982c,SESCO,I.3.1,Buenos Aires,AR-B,annual,2021,gas oil combustion consumption by petrochemical industries,7.65744,TJ,CO2,74100.0,kg/TJ,567416.304,kg +a0a7bc35-bae1-33a9-ac73-25c66fcd42ca,SESCO,I.3.1,Buenos Aires,AR-B,annual,2021,gas oil combustion consumption by petrochemical industries,7.65744,TJ,CH4,3.9,kg/TJ,29.864016,kg +a0a7bc35-bae1-33a9-ac73-25c66fcd42ca,SESCO,I.3.1,Buenos Aires,AR-B,annual,2021,gas oil combustion consumption by petrochemical industries,7.65744,TJ,N2O,3.9,kg/TJ,29.864016,kg +3a201c79-d207-324e-b2b6-5385cdb73a1e,SESCO,I.3.1,Buenos Aires,AR-B,annual,2021,gas oil combustion consumption by petrochemical industries,2.45616,TJ,CO2,74100.0,kg/TJ,182001.456,kg +100a226b-0ffe-3da1-a25a-01a22994465a,SESCO,I.3.1,Buenos Aires,AR-B,annual,2021,gas oil combustion consumption by petrochemical industries,2.45616,TJ,CH4,3.9,kg/TJ,9.579024,kg +100a226b-0ffe-3da1-a25a-01a22994465a,SESCO,I.3.1,Buenos Aires,AR-B,annual,2021,gas oil combustion consumption by petrochemical industries,2.45616,TJ,N2O,3.9,kg/TJ,9.579024,kg +c4fc5e6c-066e-3daa-b4bd-6e969e917a50,SESCO,I.3.1,Capital Federal,AR-C,annual,2021,gas oil combustion consumption by petrochemical industries,1.01136,TJ,CO2,74100.0,kg/TJ,74941.776,kg +687bd17c-d87e-3215-8e4a-4cf6042a0efc,SESCO,I.3.1,Capital Federal,AR-C,annual,2021,gas oil combustion consumption by petrochemical industries,1.01136,TJ,CH4,3.9,kg/TJ,3.9443040000000003,kg +687bd17c-d87e-3215-8e4a-4cf6042a0efc,SESCO,I.3.1,Capital Federal,AR-C,annual,2021,gas oil combustion consumption by petrochemical industries,1.01136,TJ,N2O,3.9,kg/TJ,3.9443040000000003,kg +67b4a931-4b71-36f0-b19c-cdf4d1d2be84,SESCO,II.1.1,Chubut,AR-U,annual,2021,gas oil combustion consumption by freight transport,0.1618176,TJ,CO2,74100.0,kg/TJ,11990.68416,kg +d49f9753-61be-306c-8550-aa7e04e1e5ca,SESCO,II.1.1,Chubut,AR-U,annual,2021,gas oil combustion consumption by freight transport,0.1618176,TJ,CH4,3.9,kg/TJ,0.63108864,kg +d49f9753-61be-306c-8550-aa7e04e1e5ca,SESCO,II.1.1,Chubut,AR-U,annual,2021,gas oil combustion consumption by freight transport,0.1618176,TJ,N2O,3.9,kg/TJ,0.63108864,kg +4c0456a7-5f10-36f1-aa69-bdec7e0804ee,SESCO,II.5.1,Buenos Aires,AR-B,annual,2021,gas oil combustion consumption by agriculture machines,3872.20848,TJ,CO2,74100.0,kg/TJ,286930648.368,kg +fa6b3d83-40d4-3c34-946e-83678f59750e,SESCO,II.5.1,Buenos Aires,AR-B,annual,2021,gas oil combustion consumption by agriculture machines,3872.20848,TJ,CH4,3.9,kg/TJ,15101.613071999998,kg +fa6b3d83-40d4-3c34-946e-83678f59750e,SESCO,II.5.1,Buenos Aires,AR-B,annual,2021,gas oil combustion consumption by agriculture machines,3872.20848,TJ,N2O,3.9,kg/TJ,15101.613071999998,kg +a123ef87-3d72-3efc-a07d-d1169067c6b2,SESCO,II.5.1,Catamarca,AR-K,annual,2021,gas oil combustion consumption by agriculture machines,78.09143999999999,TJ,CO2,74100.0,kg/TJ,5786575.703999999,kg +336f76aa-3e5f-3972-b4e7-adcd2ddfc063,SESCO,II.5.1,Catamarca,AR-K,annual,2021,gas oil combustion consumption by agriculture machines,78.09143999999999,TJ,CH4,3.9,kg/TJ,304.55661599999996,kg +336f76aa-3e5f-3972-b4e7-adcd2ddfc063,SESCO,II.5.1,Catamarca,AR-K,annual,2021,gas oil combustion consumption by agriculture machines,78.09143999999999,TJ,N2O,3.9,kg/TJ,304.55661599999996,kg +5cf95378-995d-3edf-8f74-ece5dde1fafd,SESCO,II.5.1,Chaco,AR-H,annual,2021,gas oil combustion consumption by agriculture machines,581.85708,TJ,CO2,74100.0,kg/TJ,43115609.628,kg +ea9dc890-f5a1-3dde-9ad0-4a00cd66141f,SESCO,II.5.1,Chaco,AR-H,annual,2021,gas oil combustion consumption by agriculture machines,581.85708,TJ,CH4,3.9,kg/TJ,2269.242612,kg +ea9dc890-f5a1-3dde-9ad0-4a00cd66141f,SESCO,II.5.1,Chaco,AR-H,annual,2021,gas oil combustion consumption by agriculture machines,581.85708,TJ,N2O,3.9,kg/TJ,2269.242612,kg +9265482c-33b3-3163-b56c-2038a736cfa6,SESCO,II.5.1,Corrientes,AR-W,annual,2021,gas oil combustion consumption by agriculture machines,1332.32232,TJ,CO2,74100.0,kg/TJ,98725083.912,kg +0d78037c-bdaa-3661-817c-2dc608e7ee09,SESCO,II.5.1,Corrientes,AR-W,annual,2021,gas oil combustion consumption by agriculture machines,1332.32232,TJ,CH4,3.9,kg/TJ,5196.057048,kg +0d78037c-bdaa-3661-817c-2dc608e7ee09,SESCO,II.5.1,Corrientes,AR-W,annual,2021,gas oil combustion consumption by agriculture machines,1332.32232,TJ,N2O,3.9,kg/TJ,5196.057048,kg +71bb08d4-19c2-3119-971b-c3ee5ac964be,SESCO,II.5.1,Córdoba,AR-X,annual,2021,gas oil combustion consumption by agriculture machines,3175.1647199999998,TJ,CO2,74100.0,kg/TJ,235279705.75199997,kg +6b4403e2-5027-32eb-a189-ab39ef38c558,SESCO,II.5.1,Córdoba,AR-X,annual,2021,gas oil combustion consumption by agriculture machines,3175.1647199999998,TJ,CH4,3.9,kg/TJ,12383.142407999998,kg +6b4403e2-5027-32eb-a189-ab39ef38c558,SESCO,II.5.1,Córdoba,AR-X,annual,2021,gas oil combustion consumption by agriculture machines,3175.1647199999998,TJ,N2O,3.9,kg/TJ,12383.142407999998,kg +8a1ddb17-ded6-3a4d-8bc0-dc44db37491b,SESCO,II.5.1,Entre Rios,AR-E,annual,2021,gas oil combustion consumption by agriculture machines,996.62304,TJ,CO2,74100.0,kg/TJ,73849767.264,kg +fe7856d5-a226-387d-b0f8-152c240d7b38,SESCO,II.5.1,Entre Rios,AR-E,annual,2021,gas oil combustion consumption by agriculture machines,996.62304,TJ,CH4,3.9,kg/TJ,3886.829856,kg +fe7856d5-a226-387d-b0f8-152c240d7b38,SESCO,II.5.1,Entre Rios,AR-E,annual,2021,gas oil combustion consumption by agriculture machines,996.62304,TJ,N2O,3.9,kg/TJ,3886.829856,kg +a1e13cf3-bd21-3815-875f-3717b8d32f5a,SESCO,II.5.1,Jujuy,AR-Y,annual,2021,gas oil combustion consumption by agriculture machines,11.052719999999999,TJ,CO2,74100.0,kg/TJ,819006.5519999999,kg +591739fc-b912-3db8-8b08-0de2cfffde87,SESCO,II.5.1,Jujuy,AR-Y,annual,2021,gas oil combustion consumption by agriculture machines,11.052719999999999,TJ,CH4,3.9,kg/TJ,43.105608,kg +591739fc-b912-3db8-8b08-0de2cfffde87,SESCO,II.5.1,Jujuy,AR-Y,annual,2021,gas oil combustion consumption by agriculture machines,11.052719999999999,TJ,N2O,3.9,kg/TJ,43.105608,kg +4f6ec277-1c7d-3f61-821d-91643b6f5c1d,SESCO,II.5.1,La Pampa,AR-L,annual,2021,gas oil combustion consumption by agriculture machines,186.921,TJ,CO2,74100.0,kg/TJ,13850846.1,kg +c9f04cd3-f43c-3721-9625-ec15aad95089,SESCO,II.5.1,La Pampa,AR-L,annual,2021,gas oil combustion consumption by agriculture machines,186.921,TJ,CH4,3.9,kg/TJ,728.9919,kg +c9f04cd3-f43c-3721-9625-ec15aad95089,SESCO,II.5.1,La Pampa,AR-L,annual,2021,gas oil combustion consumption by agriculture machines,186.921,TJ,N2O,3.9,kg/TJ,728.9919,kg +817d9e4c-db57-35e6-92d8-f8dca17550f3,SESCO,II.5.1,Mendoza,AR-M,annual,2021,gas oil combustion consumption by agriculture machines,433.00656,TJ,CO2,74100.0,kg/TJ,32085786.095999997,kg +6be5f80a-903c-30fd-bb15-fb3589d1bbf2,SESCO,II.5.1,Mendoza,AR-M,annual,2021,gas oil combustion consumption by agriculture machines,433.00656,TJ,CH4,3.9,kg/TJ,1688.7255839999998,kg +6be5f80a-903c-30fd-bb15-fb3589d1bbf2,SESCO,II.5.1,Mendoza,AR-M,annual,2021,gas oil combustion consumption by agriculture machines,433.00656,TJ,N2O,3.9,kg/TJ,1688.7255839999998,kg +6435e098-f31b-3aeb-8d36-6294c83d61a8,SESCO,II.5.1,Misiones,AR-N,annual,2021,gas oil combustion consumption by agriculture machines,42.36876,TJ,CO2,74100.0,kg/TJ,3139525.116,kg +17931aeb-1206-3ee0-849b-e373c0009ad6,SESCO,II.5.1,Misiones,AR-N,annual,2021,gas oil combustion consumption by agriculture machines,42.36876,TJ,CH4,3.9,kg/TJ,165.238164,kg +17931aeb-1206-3ee0-849b-e373c0009ad6,SESCO,II.5.1,Misiones,AR-N,annual,2021,gas oil combustion consumption by agriculture machines,42.36876,TJ,N2O,3.9,kg/TJ,165.238164,kg +6660d61b-2aeb-3dff-a2c3-582e919ac92b,SESCO,II.5.1,Neuquén,AR-Q,annual,2021,gas oil combustion consumption by agriculture machines,239.94516,TJ,CO2,74100.0,kg/TJ,17779936.356,kg +ba3f6c3d-5f9a-39bf-947a-131db54ee3a1,SESCO,II.5.1,Neuquén,AR-Q,annual,2021,gas oil combustion consumption by agriculture machines,239.94516,TJ,CH4,3.9,kg/TJ,935.786124,kg +ba3f6c3d-5f9a-39bf-947a-131db54ee3a1,SESCO,II.5.1,Neuquén,AR-Q,annual,2021,gas oil combustion consumption by agriculture machines,239.94516,TJ,N2O,3.9,kg/TJ,935.786124,kg +36ca6cef-40d6-38d4-980e-dfbbce31b4e1,SESCO,II.5.1,Salta,AR-A,annual,2021,gas oil combustion consumption by agriculture machines,99.90792,TJ,CO2,74100.0,kg/TJ,7403176.872,kg +91b530af-874d-3923-9b22-f76e70094e97,SESCO,II.5.1,Salta,AR-A,annual,2021,gas oil combustion consumption by agriculture machines,99.90792,TJ,CH4,3.9,kg/TJ,389.640888,kg +91b530af-874d-3923-9b22-f76e70094e97,SESCO,II.5.1,Salta,AR-A,annual,2021,gas oil combustion consumption by agriculture machines,99.90792,TJ,N2O,3.9,kg/TJ,389.640888,kg +ae05a399-9fc1-3fe8-a9c4-44f207357424,SESCO,II.5.1,San Juan,AR-J,annual,2021,gas oil combustion consumption by agriculture machines,44.535959999999996,TJ,CO2,74100.0,kg/TJ,3300114.6359999995,kg +21d567a7-3fb4-387f-b03f-bd3fc72b118f,SESCO,II.5.1,San Juan,AR-J,annual,2021,gas oil combustion consumption by agriculture machines,44.535959999999996,TJ,CH4,3.9,kg/TJ,173.69024399999998,kg +21d567a7-3fb4-387f-b03f-bd3fc72b118f,SESCO,II.5.1,San Juan,AR-J,annual,2021,gas oil combustion consumption by agriculture machines,44.535959999999996,TJ,N2O,3.9,kg/TJ,173.69024399999998,kg +2ac5d8c2-5ef7-34f8-bc8a-526deff9cb0d,SESCO,II.5.1,San Luis,AR-D,annual,2021,gas oil combustion consumption by agriculture machines,159.43368,TJ,CO2,74100.0,kg/TJ,11814035.688000001,kg +34fd36d8-ac29-3e4a-a498-601dcf7829aa,SESCO,II.5.1,San Luis,AR-D,annual,2021,gas oil combustion consumption by agriculture machines,159.43368,TJ,CH4,3.9,kg/TJ,621.7913520000001,kg +34fd36d8-ac29-3e4a-a498-601dcf7829aa,SESCO,II.5.1,San Luis,AR-D,annual,2021,gas oil combustion consumption by agriculture machines,159.43368,TJ,N2O,3.9,kg/TJ,621.7913520000001,kg +5288fa8f-fe09-3db9-a1b7-023797e8525c,SESCO,II.5.1,Santa Cruz,AR-Z,annual,2021,gas oil combustion consumption by agriculture machines,129.67079999999999,TJ,CO2,74100.0,kg/TJ,9608606.28,kg +99b11259-bfa8-32b5-9ee8-0bb5298a1f1d,SESCO,II.5.1,Santa Cruz,AR-Z,annual,2021,gas oil combustion consumption by agriculture machines,129.67079999999999,TJ,CH4,3.9,kg/TJ,505.71611999999993,kg +99b11259-bfa8-32b5-9ee8-0bb5298a1f1d,SESCO,II.5.1,Santa Cruz,AR-Z,annual,2021,gas oil combustion consumption by agriculture machines,129.67079999999999,TJ,N2O,3.9,kg/TJ,505.71611999999993,kg +02b6dcc7-94b9-3f26-bcfb-5b3d5599ae77,SESCO,II.5.1,Santa Fe,AR-S,annual,2021,gas oil combustion consumption by agriculture machines,5361.00264,TJ,CO2,74100.0,kg/TJ,397250295.62399995,kg +cd125830-aa43-31e4-a3a7-292f35f00320,SESCO,II.5.1,Santa Fe,AR-S,annual,2021,gas oil combustion consumption by agriculture machines,5361.00264,TJ,CH4,3.9,kg/TJ,20907.910296,kg +cd125830-aa43-31e4-a3a7-292f35f00320,SESCO,II.5.1,Santa Fe,AR-S,annual,2021,gas oil combustion consumption by agriculture machines,5361.00264,TJ,N2O,3.9,kg/TJ,20907.910296,kg +04f19271-30fb-3aaa-a42b-ec36777c0101,SESCO,II.5.1,Santiago del Estero,AR-G,annual,2021,gas oil combustion consumption by agriculture machines,471.98004,TJ,CO2,74100.0,kg/TJ,34973720.964,kg +729bd52a-fc8a-3443-9d1c-933e3ed26fde,SESCO,II.5.1,Santiago del Estero,AR-G,annual,2021,gas oil combustion consumption by agriculture machines,471.98004,TJ,CH4,3.9,kg/TJ,1840.7221559999998,kg +729bd52a-fc8a-3443-9d1c-933e3ed26fde,SESCO,II.5.1,Santiago del Estero,AR-G,annual,2021,gas oil combustion consumption by agriculture machines,471.98004,TJ,N2O,3.9,kg/TJ,1840.7221559999998,kg +285bad75-1060-3b95-a882-422303434981,SESCO,II.5.1,Tucuman,AR-T,annual,2021,gas oil combustion consumption by agriculture machines,196.20383999999999,TJ,CO2,74100.0,kg/TJ,14538704.544,kg +e63086a1-f556-398a-9a86-0ba6097fda85,SESCO,II.5.1,Tucuman,AR-T,annual,2021,gas oil combustion consumption by agriculture machines,196.20383999999999,TJ,CH4,3.9,kg/TJ,765.1949759999999,kg +e63086a1-f556-398a-9a86-0ba6097fda85,SESCO,II.5.1,Tucuman,AR-T,annual,2021,gas oil combustion consumption by agriculture machines,196.20383999999999,TJ,N2O,3.9,kg/TJ,765.1949759999999,kg +b5eaae7d-830a-3acf-8c17-c7baf216e7c2,SESCO,II.5.1,Buenos Aires,AR-B,annual,2021,gas oil combustion consumption by agriculture machines,429.97248,TJ,CO2,74100.0,kg/TJ,31860960.768000003,kg +4d13288a-4b19-3069-befc-3efedfb1704c,SESCO,II.5.1,Buenos Aires,AR-B,annual,2021,gas oil combustion consumption by agriculture machines,429.97248,TJ,CH4,3.9,kg/TJ,1676.892672,kg +4d13288a-4b19-3069-befc-3efedfb1704c,SESCO,II.5.1,Buenos Aires,AR-B,annual,2021,gas oil combustion consumption by agriculture machines,429.97248,TJ,N2O,3.9,kg/TJ,1676.892672,kg +44464d25-3811-325e-87d0-39fea217108f,SESCO,II.5.1,Catamarca,AR-K,annual,2021,gas oil combustion consumption by agriculture machines,26.87328,TJ,CO2,74100.0,kg/TJ,1991310.0480000002,kg +5379aed5-da00-3da4-aac6-025805d5c625,SESCO,II.5.1,Catamarca,AR-K,annual,2021,gas oil combustion consumption by agriculture machines,26.87328,TJ,CH4,3.9,kg/TJ,104.805792,kg +5379aed5-da00-3da4-aac6-025805d5c625,SESCO,II.5.1,Catamarca,AR-K,annual,2021,gas oil combustion consumption by agriculture machines,26.87328,TJ,N2O,3.9,kg/TJ,104.805792,kg +f7208f83-dcfe-353b-82a5-af05a91fa137,SESCO,II.5.1,Chaco,AR-H,annual,2021,gas oil combustion consumption by agriculture machines,151.19832,TJ,CO2,74100.0,kg/TJ,11203795.512,kg +1f53b2a3-78f4-3060-85f5-ca79a4396904,SESCO,II.5.1,Chaco,AR-H,annual,2021,gas oil combustion consumption by agriculture machines,151.19832,TJ,CH4,3.9,kg/TJ,589.673448,kg +1f53b2a3-78f4-3060-85f5-ca79a4396904,SESCO,II.5.1,Chaco,AR-H,annual,2021,gas oil combustion consumption by agriculture machines,151.19832,TJ,N2O,3.9,kg/TJ,589.673448,kg +17f9a67e-1b16-3a26-8b17-2421173aaf8d,SESCO,II.5.1,Corrientes,AR-W,annual,2021,gas oil combustion consumption by agriculture machines,112.04424,TJ,CO2,74100.0,kg/TJ,8302478.184,kg +41a29924-c38b-3b37-b83f-54ddfa45c57e,SESCO,II.5.1,Corrientes,AR-W,annual,2021,gas oil combustion consumption by agriculture machines,112.04424,TJ,CH4,3.9,kg/TJ,436.972536,kg +41a29924-c38b-3b37-b83f-54ddfa45c57e,SESCO,II.5.1,Corrientes,AR-W,annual,2021,gas oil combustion consumption by agriculture machines,112.04424,TJ,N2O,3.9,kg/TJ,436.972536,kg +00b11d38-1bfb-3604-ae66-4855e80eb8c1,SESCO,II.5.1,Córdoba,AR-X,annual,2021,gas oil combustion consumption by agriculture machines,315.47208,TJ,CO2,74100.0,kg/TJ,23376481.128,kg +785f0bcc-fd6e-3d8a-86c4-9d2f1e55c8b8,SESCO,II.5.1,Córdoba,AR-X,annual,2021,gas oil combustion consumption by agriculture machines,315.47208,TJ,CH4,3.9,kg/TJ,1230.341112,kg +785f0bcc-fd6e-3d8a-86c4-9d2f1e55c8b8,SESCO,II.5.1,Córdoba,AR-X,annual,2021,gas oil combustion consumption by agriculture machines,315.47208,TJ,N2O,3.9,kg/TJ,1230.341112,kg +9a3b9648-6f44-3827-8bff-b172c88455f1,SESCO,II.5.1,Entre Rios,AR-E,annual,2021,gas oil combustion consumption by agriculture machines,21.45528,TJ,CO2,74100.0,kg/TJ,1589836.248,kg +c8c5be3c-8191-3e7f-9872-0eb0eb49c5fc,SESCO,II.5.1,Entre Rios,AR-E,annual,2021,gas oil combustion consumption by agriculture machines,21.45528,TJ,CH4,3.9,kg/TJ,83.675592,kg +c8c5be3c-8191-3e7f-9872-0eb0eb49c5fc,SESCO,II.5.1,Entre Rios,AR-E,annual,2021,gas oil combustion consumption by agriculture machines,21.45528,TJ,N2O,3.9,kg/TJ,83.675592,kg +eaf129d9-dd96-35d1-a081-c6a50387e1d2,SESCO,II.5.1,Jujuy,AR-Y,annual,2021,gas oil combustion consumption by agriculture machines,8.95776,TJ,CO2,74100.0,kg/TJ,663770.0160000001,kg +2a0997e7-6976-354e-a0a5-4a9db39e6a4e,SESCO,II.5.1,Jujuy,AR-Y,annual,2021,gas oil combustion consumption by agriculture machines,8.95776,TJ,CH4,3.9,kg/TJ,34.935264000000004,kg +2a0997e7-6976-354e-a0a5-4a9db39e6a4e,SESCO,II.5.1,Jujuy,AR-Y,annual,2021,gas oil combustion consumption by agriculture machines,8.95776,TJ,N2O,3.9,kg/TJ,34.935264000000004,kg +720e75fc-cae8-3f64-995d-5099f6797cc8,SESCO,II.5.1,La Pampa,AR-L,annual,2021,gas oil combustion consumption by agriculture machines,67.29156,TJ,CO2,74100.0,kg/TJ,4986304.596,kg +05fb3dcd-61e5-38a1-b38d-af0b32be5ef9,SESCO,II.5.1,La Pampa,AR-L,annual,2021,gas oil combustion consumption by agriculture machines,67.29156,TJ,CH4,3.9,kg/TJ,262.437084,kg +05fb3dcd-61e5-38a1-b38d-af0b32be5ef9,SESCO,II.5.1,La Pampa,AR-L,annual,2021,gas oil combustion consumption by agriculture machines,67.29156,TJ,N2O,3.9,kg/TJ,262.437084,kg +20be34ee-8db2-3a2b-9f36-f0a1f55f1224,SESCO,II.5.1,Mendoza,AR-M,annual,2021,gas oil combustion consumption by agriculture machines,82.02852,TJ,CO2,74100.0,kg/TJ,6078313.332,kg +fc6a55bb-9083-3186-af7a-af0248f3f73a,SESCO,II.5.1,Mendoza,AR-M,annual,2021,gas oil combustion consumption by agriculture machines,82.02852,TJ,CH4,3.9,kg/TJ,319.911228,kg +fc6a55bb-9083-3186-af7a-af0248f3f73a,SESCO,II.5.1,Mendoza,AR-M,annual,2021,gas oil combustion consumption by agriculture machines,82.02852,TJ,N2O,3.9,kg/TJ,319.911228,kg +d293994a-4ff9-3c62-96f9-cb13278d034a,SESCO,II.5.1,Misiones,AR-N,annual,2021,gas oil combustion consumption by agriculture machines,1.6615199999999999,TJ,CO2,74100.0,kg/TJ,123118.632,kg +46a2e9fb-cb14-353a-953f-0146c408a749,SESCO,II.5.1,Misiones,AR-N,annual,2021,gas oil combustion consumption by agriculture machines,1.6615199999999999,TJ,CH4,3.9,kg/TJ,6.479927999999999,kg +46a2e9fb-cb14-353a-953f-0146c408a749,SESCO,II.5.1,Misiones,AR-N,annual,2021,gas oil combustion consumption by agriculture machines,1.6615199999999999,TJ,N2O,3.9,kg/TJ,6.479927999999999,kg +cf9ac957-98ac-3017-8b81-2ac44bf644cc,SESCO,II.5.1,Neuquén,AR-Q,annual,2021,gas oil combustion consumption by agriculture machines,145.96092,TJ,CO2,74100.0,kg/TJ,10815704.171999998,kg +280674fd-5f3b-3289-8008-d10ef06b95cf,SESCO,II.5.1,Neuquén,AR-Q,annual,2021,gas oil combustion consumption by agriculture machines,145.96092,TJ,CH4,3.9,kg/TJ,569.247588,kg +280674fd-5f3b-3289-8008-d10ef06b95cf,SESCO,II.5.1,Neuquén,AR-Q,annual,2021,gas oil combustion consumption by agriculture machines,145.96092,TJ,N2O,3.9,kg/TJ,569.247588,kg +829c0645-232c-3d93-b3c3-0790cc74373e,SESCO,II.5.1,Salta,AR-A,annual,2021,gas oil combustion consumption by agriculture machines,36.697919999999996,TJ,CO2,74100.0,kg/TJ,2719315.8719999995,kg +7539089c-db24-3085-ad37-a949a9925b05,SESCO,II.5.1,Salta,AR-A,annual,2021,gas oil combustion consumption by agriculture machines,36.697919999999996,TJ,CH4,3.9,kg/TJ,143.12188799999998,kg +7539089c-db24-3085-ad37-a949a9925b05,SESCO,II.5.1,Salta,AR-A,annual,2021,gas oil combustion consumption by agriculture machines,36.697919999999996,TJ,N2O,3.9,kg/TJ,143.12188799999998,kg +7b78d8a4-6ce6-3996-9bdb-abc206024c89,SESCO,II.5.1,San Juan,AR-J,annual,2021,gas oil combustion consumption by agriculture machines,11.052719999999999,TJ,CO2,74100.0,kg/TJ,819006.5519999999,kg +5d029e60-9862-34cb-8e0c-55e57bf95620,SESCO,II.5.1,San Juan,AR-J,annual,2021,gas oil combustion consumption by agriculture machines,11.052719999999999,TJ,CH4,3.9,kg/TJ,43.105608,kg +5d029e60-9862-34cb-8e0c-55e57bf95620,SESCO,II.5.1,San Juan,AR-J,annual,2021,gas oil combustion consumption by agriculture machines,11.052719999999999,TJ,N2O,3.9,kg/TJ,43.105608,kg +8ed35ffa-8616-3fd1-b219-8fe9550994be,SESCO,II.5.1,San Luis,AR-D,annual,2021,gas oil combustion consumption by agriculture machines,9.89688,TJ,CO2,74100.0,kg/TJ,733358.808,kg +7c8e5a3b-5fe6-32cf-b007-a4b8190920cb,SESCO,II.5.1,San Luis,AR-D,annual,2021,gas oil combustion consumption by agriculture machines,9.89688,TJ,CH4,3.9,kg/TJ,38.597832,kg +7c8e5a3b-5fe6-32cf-b007-a4b8190920cb,SESCO,II.5.1,San Luis,AR-D,annual,2021,gas oil combustion consumption by agriculture machines,9.89688,TJ,N2O,3.9,kg/TJ,38.597832,kg +eff5591f-db5d-34f8-847b-de44881b9f35,SESCO,II.5.1,Santa Cruz,AR-Z,annual,2021,gas oil combustion consumption by agriculture machines,107.70984,TJ,CO2,74100.0,kg/TJ,7981299.144,kg +cf52e543-4230-31cb-8473-418aa1c6d2d8,SESCO,II.5.1,Santa Cruz,AR-Z,annual,2021,gas oil combustion consumption by agriculture machines,107.70984,TJ,CH4,3.9,kg/TJ,420.068376,kg +cf52e543-4230-31cb-8473-418aa1c6d2d8,SESCO,II.5.1,Santa Cruz,AR-Z,annual,2021,gas oil combustion consumption by agriculture machines,107.70984,TJ,N2O,3.9,kg/TJ,420.068376,kg +0c343038-b468-397a-8a28-d8b69db69950,SESCO,II.5.1,Santa Fe,AR-S,annual,2021,gas oil combustion consumption by agriculture machines,434.1624,TJ,CO2,74100.0,kg/TJ,32171433.84,kg +58e41eaf-8795-3107-9660-6a333a531582,SESCO,II.5.1,Santa Fe,AR-S,annual,2021,gas oil combustion consumption by agriculture machines,434.1624,TJ,CH4,3.9,kg/TJ,1693.23336,kg +58e41eaf-8795-3107-9660-6a333a531582,SESCO,II.5.1,Santa Fe,AR-S,annual,2021,gas oil combustion consumption by agriculture machines,434.1624,TJ,N2O,3.9,kg/TJ,1693.23336,kg +d119f761-48d4-3d35-aa9e-458376282da8,SESCO,II.5.1,Santiago del Estero,AR-G,annual,2021,gas oil combustion consumption by agriculture machines,145.34688,TJ,CO2,74100.0,kg/TJ,10770203.808,kg +f7ff8384-d65f-3528-a813-88df29e860ff,SESCO,II.5.1,Santiago del Estero,AR-G,annual,2021,gas oil combustion consumption by agriculture machines,145.34688,TJ,CH4,3.9,kg/TJ,566.852832,kg +f7ff8384-d65f-3528-a813-88df29e860ff,SESCO,II.5.1,Santiago del Estero,AR-G,annual,2021,gas oil combustion consumption by agriculture machines,145.34688,TJ,N2O,3.9,kg/TJ,566.852832,kg +2f86e137-a284-3026-bb39-d429c5302c6c,SESCO,II.5.1,Tucuman,AR-T,annual,2021,gas oil combustion consumption by agriculture machines,70.75908,TJ,CO2,74100.0,kg/TJ,5243247.828,kg +911f5356-8fd3-3aa1-8778-98647a95d802,SESCO,II.5.1,Tucuman,AR-T,annual,2021,gas oil combustion consumption by agriculture machines,70.75908,TJ,CH4,3.9,kg/TJ,275.96041199999996,kg +911f5356-8fd3-3aa1-8778-98647a95d802,SESCO,II.5.1,Tucuman,AR-T,annual,2021,gas oil combustion consumption by agriculture machines,70.75908,TJ,N2O,3.9,kg/TJ,275.96041199999996,kg +9128f9ee-95c4-3e56-9a64-330d0225a64c,SESCO,II.1.1,Buenos Aires,AR-B,annual,2021,gas oil combustion consumption by to the public,7899.66072,TJ,CO2,74100.0,kg/TJ,585364859.352,kg +2fc2fd5f-c664-3fc1-8bb8-0475bf2d905b,SESCO,II.1.1,Buenos Aires,AR-B,annual,2021,gas oil combustion consumption by to the public,7899.66072,TJ,CH4,3.9,kg/TJ,30808.676808,kg +2fc2fd5f-c664-3fc1-8bb8-0475bf2d905b,SESCO,II.1.1,Buenos Aires,AR-B,annual,2021,gas oil combustion consumption by to the public,7899.66072,TJ,N2O,3.9,kg/TJ,30808.676808,kg +bcbd3cd6-3abf-3e29-817d-98d66bbd77d8,SESCO,II.1.1,Capital Federal,AR-C,annual,2021,gas oil combustion consumption by to the public,682.1262,TJ,CO2,74100.0,kg/TJ,50545551.42,kg +b3465c8b-24af-38cd-8db1-aa7096e31973,SESCO,II.1.1,Capital Federal,AR-C,annual,2021,gas oil combustion consumption by to the public,682.1262,TJ,CH4,3.9,kg/TJ,2660.29218,kg +b3465c8b-24af-38cd-8db1-aa7096e31973,SESCO,II.1.1,Capital Federal,AR-C,annual,2021,gas oil combustion consumption by to the public,682.1262,TJ,N2O,3.9,kg/TJ,2660.29218,kg +459801c3-eff3-32ef-a079-b0b95963378e,SESCO,II.1.1,Catamarca,AR-K,annual,2021,gas oil combustion consumption by to the public,311.96844,TJ,CO2,74100.0,kg/TJ,23116861.404,kg +5d262449-ccdb-32f6-ba32-2780b9df77e3,SESCO,II.1.1,Catamarca,AR-K,annual,2021,gas oil combustion consumption by to the public,311.96844,TJ,CH4,3.9,kg/TJ,1216.676916,kg +5d262449-ccdb-32f6-ba32-2780b9df77e3,SESCO,II.1.1,Catamarca,AR-K,annual,2021,gas oil combustion consumption by to the public,311.96844,TJ,N2O,3.9,kg/TJ,1216.676916,kg +c525163b-40b5-3790-8a9b-8dbf329546f4,SESCO,II.1.1,Chaco,AR-H,annual,2021,gas oil combustion consumption by to the public,346.64364,TJ,CO2,74100.0,kg/TJ,25686293.724,kg +16d056f0-a3fa-3070-b2f9-791e9ba88d38,SESCO,II.1.1,Chaco,AR-H,annual,2021,gas oil combustion consumption by to the public,346.64364,TJ,CH4,3.9,kg/TJ,1351.910196,kg +16d056f0-a3fa-3070-b2f9-791e9ba88d38,SESCO,II.1.1,Chaco,AR-H,annual,2021,gas oil combustion consumption by to the public,346.64364,TJ,N2O,3.9,kg/TJ,1351.910196,kg +7d133164-b9be-3815-89bb-165e32a8b402,SESCO,II.1.1,Chubut,AR-U,annual,2021,gas oil combustion consumption by to the public,1135.75728,TJ,CO2,74100.0,kg/TJ,84159614.448,kg +2c881aea-4ea1-37de-979c-c9dc8dfcae21,SESCO,II.1.1,Chubut,AR-U,annual,2021,gas oil combustion consumption by to the public,1135.75728,TJ,CH4,3.9,kg/TJ,4429.453392,kg +2c881aea-4ea1-37de-979c-c9dc8dfcae21,SESCO,II.1.1,Chubut,AR-U,annual,2021,gas oil combustion consumption by to the public,1135.75728,TJ,N2O,3.9,kg/TJ,4429.453392,kg +ca2974f7-5235-3fcb-bef1-ecf2d643c4bb,SESCO,II.1.1,Corrientes,AR-W,annual,2021,gas oil combustion consumption by to the public,880.75008,TJ,CO2,74100.0,kg/TJ,65263580.928,kg +1e07aac7-999f-3258-af60-fd195bb3aeae,SESCO,II.1.1,Corrientes,AR-W,annual,2021,gas oil combustion consumption by to the public,880.75008,TJ,CH4,3.9,kg/TJ,3434.925312,kg +1e07aac7-999f-3258-af60-fd195bb3aeae,SESCO,II.1.1,Corrientes,AR-W,annual,2021,gas oil combustion consumption by to the public,880.75008,TJ,N2O,3.9,kg/TJ,3434.925312,kg +2e6f80f9-1107-3bf8-854c-a8a9a23294b6,SESCO,II.1.1,Córdoba,AR-X,annual,2021,gas oil combustion consumption by to the public,3453.57768,TJ,CO2,74100.0,kg/TJ,255910106.088,kg +433529de-f295-3d4a-8b87-434ad3c19cc3,SESCO,II.1.1,Córdoba,AR-X,annual,2021,gas oil combustion consumption by to the public,3453.57768,TJ,CH4,3.9,kg/TJ,13468.952952,kg +433529de-f295-3d4a-8b87-434ad3c19cc3,SESCO,II.1.1,Córdoba,AR-X,annual,2021,gas oil combustion consumption by to the public,3453.57768,TJ,N2O,3.9,kg/TJ,13468.952952,kg +7190ffbe-592f-359c-a8e5-1a1eb2dffb47,SESCO,II.1.1,Entre Rios,AR-E,annual,2021,gas oil combustion consumption by to the public,1248.0182399999999,TJ,CO2,74100.0,kg/TJ,92478151.58399999,kg +15a0ddb4-e87d-3f6a-8880-50ec9bb6ce98,SESCO,II.1.1,Entre Rios,AR-E,annual,2021,gas oil combustion consumption by to the public,1248.0182399999999,TJ,CH4,3.9,kg/TJ,4867.271135999999,kg +15a0ddb4-e87d-3f6a-8880-50ec9bb6ce98,SESCO,II.1.1,Entre Rios,AR-E,annual,2021,gas oil combustion consumption by to the public,1248.0182399999999,TJ,N2O,3.9,kg/TJ,4867.271135999999,kg +30c708df-0bf6-3eb7-bb64-254754573948,SESCO,II.1.1,Formosa,AR-P,annual,2021,gas oil combustion consumption by to the public,571.8157199999999,TJ,CO2,74100.0,kg/TJ,42371544.852,kg +8fe33dcb-42ff-3307-9b49-3cc6fd1303be,SESCO,II.1.1,Formosa,AR-P,annual,2021,gas oil combustion consumption by to the public,571.8157199999999,TJ,CH4,3.9,kg/TJ,2230.081308,kg +8fe33dcb-42ff-3307-9b49-3cc6fd1303be,SESCO,II.1.1,Formosa,AR-P,annual,2021,gas oil combustion consumption by to the public,571.8157199999999,TJ,N2O,3.9,kg/TJ,2230.081308,kg +60c67ed4-f0ad-3a78-8d38-c6c155069ff9,SESCO,II.1.1,Jujuy,AR-Y,annual,2021,gas oil combustion consumption by to the public,301.13244,TJ,CO2,74100.0,kg/TJ,22313913.803999998,kg +4512f9f6-0e92-371b-923b-a1e2b1cefa25,SESCO,II.1.1,Jujuy,AR-Y,annual,2021,gas oil combustion consumption by to the public,301.13244,TJ,CH4,3.9,kg/TJ,1174.4165159999998,kg +4512f9f6-0e92-371b-923b-a1e2b1cefa25,SESCO,II.1.1,Jujuy,AR-Y,annual,2021,gas oil combustion consumption by to the public,301.13244,TJ,N2O,3.9,kg/TJ,1174.4165159999998,kg +8b6008e8-6828-3131-b6ae-12d3a1fe7a3b,SESCO,II.1.1,La Pampa,AR-L,annual,2021,gas oil combustion consumption by to the public,373.33632,TJ,CO2,74100.0,kg/TJ,27664221.312,kg +0531f4b6-ddea-3fd1-ae5a-970aae93e55a,SESCO,II.1.1,La Pampa,AR-L,annual,2021,gas oil combustion consumption by to the public,373.33632,TJ,CH4,3.9,kg/TJ,1456.011648,kg +0531f4b6-ddea-3fd1-ae5a-970aae93e55a,SESCO,II.1.1,La Pampa,AR-L,annual,2021,gas oil combustion consumption by to the public,373.33632,TJ,N2O,3.9,kg/TJ,1456.011648,kg +7e91be83-4205-396d-b471-05a4c377f756,SESCO,II.1.1,La Rioja,AR-F,annual,2021,gas oil combustion consumption by to the public,48.003479999999996,TJ,CO2,74100.0,kg/TJ,3557057.868,kg +8d1ae042-9746-330c-accb-3a95ce1ffb97,SESCO,II.1.1,La Rioja,AR-F,annual,2021,gas oil combustion consumption by to the public,48.003479999999996,TJ,CH4,3.9,kg/TJ,187.21357199999997,kg +8d1ae042-9746-330c-accb-3a95ce1ffb97,SESCO,II.1.1,La Rioja,AR-F,annual,2021,gas oil combustion consumption by to the public,48.003479999999996,TJ,N2O,3.9,kg/TJ,187.21357199999997,kg +65c8f583-b51d-396c-9199-f013bfe7dfb7,SESCO,II.1.1,Mendoza,AR-M,annual,2021,gas oil combustion consumption by to the public,1529.9709599999999,TJ,CO2,74100.0,kg/TJ,113370848.13599999,kg +38b753cb-b794-3b61-a584-cba1b9977e24,SESCO,II.1.1,Mendoza,AR-M,annual,2021,gas oil combustion consumption by to the public,1529.9709599999999,TJ,CH4,3.9,kg/TJ,5966.886743999999,kg +38b753cb-b794-3b61-a584-cba1b9977e24,SESCO,II.1.1,Mendoza,AR-M,annual,2021,gas oil combustion consumption by to the public,1529.9709599999999,TJ,N2O,3.9,kg/TJ,5966.886743999999,kg +1e830fe6-0943-38e4-a67e-34a91e571094,SESCO,II.1.1,Misiones,AR-N,annual,2021,gas oil combustion consumption by to the public,1040.65332,TJ,CO2,74100.0,kg/TJ,77112411.012,kg +109fd880-a264-34cc-bdf7-8df3794b5f9c,SESCO,II.1.1,Misiones,AR-N,annual,2021,gas oil combustion consumption by to the public,1040.65332,TJ,CH4,3.9,kg/TJ,4058.5479479999995,kg +109fd880-a264-34cc-bdf7-8df3794b5f9c,SESCO,II.1.1,Misiones,AR-N,annual,2021,gas oil combustion consumption by to the public,1040.65332,TJ,N2O,3.9,kg/TJ,4058.5479479999995,kg +4ebd38c8-0d7d-36d7-8aaa-e6443340e680,SESCO,II.1.1,Neuquén,AR-Q,annual,2021,gas oil combustion consumption by to the public,222.82428,TJ,CO2,74100.0,kg/TJ,16511279.147999998,kg +6ecf0f25-5a2a-3953-9f6c-09fabea3cfa3,SESCO,II.1.1,Neuquén,AR-Q,annual,2021,gas oil combustion consumption by to the public,222.82428,TJ,CH4,3.9,kg/TJ,869.014692,kg +6ecf0f25-5a2a-3953-9f6c-09fabea3cfa3,SESCO,II.1.1,Neuquén,AR-Q,annual,2021,gas oil combustion consumption by to the public,222.82428,TJ,N2O,3.9,kg/TJ,869.014692,kg +94dee217-410b-33f4-a2ae-85dbd42d13de,SESCO,II.1.1,Rio Negro,AR-R,annual,2021,gas oil combustion consumption by to the public,560.65464,TJ,CO2,74100.0,kg/TJ,41544508.824,kg +049ba900-0bf2-36aa-8193-97b9aca41eec,SESCO,II.1.1,Rio Negro,AR-R,annual,2021,gas oil combustion consumption by to the public,560.65464,TJ,CH4,3.9,kg/TJ,2186.5530959999996,kg +049ba900-0bf2-36aa-8193-97b9aca41eec,SESCO,II.1.1,Rio Negro,AR-R,annual,2021,gas oil combustion consumption by to the public,560.65464,TJ,N2O,3.9,kg/TJ,2186.5530959999996,kg +ed655b7f-8106-3289-b122-fede1b8ba289,SESCO,II.1.1,Salta,AR-A,annual,2021,gas oil combustion consumption by to the public,99.58284,TJ,CO2,74100.0,kg/TJ,7379088.444,kg +9dfeb685-107e-3227-9b30-b4c8441236f1,SESCO,II.1.1,Salta,AR-A,annual,2021,gas oil combustion consumption by to the public,99.58284,TJ,CH4,3.9,kg/TJ,388.373076,kg +9dfeb685-107e-3227-9b30-b4c8441236f1,SESCO,II.1.1,Salta,AR-A,annual,2021,gas oil combustion consumption by to the public,99.58284,TJ,N2O,3.9,kg/TJ,388.373076,kg +4e0d8572-ed55-35e9-8247-48fb11a8ac60,SESCO,II.1.1,San Juan,AR-J,annual,2021,gas oil combustion consumption by to the public,304.74444,TJ,CO2,74100.0,kg/TJ,22581563.004,kg +d82fd677-dd12-31d1-bfda-634fce4eee80,SESCO,II.1.1,San Juan,AR-J,annual,2021,gas oil combustion consumption by to the public,304.74444,TJ,CH4,3.9,kg/TJ,1188.503316,kg +d82fd677-dd12-31d1-bfda-634fce4eee80,SESCO,II.1.1,San Juan,AR-J,annual,2021,gas oil combustion consumption by to the public,304.74444,TJ,N2O,3.9,kg/TJ,1188.503316,kg +0ccc5da9-3b2c-3d21-94f6-5a4ec343a63d,SESCO,II.1.1,San Luis,AR-D,annual,2021,gas oil combustion consumption by to the public,578.31732,TJ,CO2,74100.0,kg/TJ,42853313.412,kg +bad468ed-c5d1-37b4-b0c4-f62fccde33f7,SESCO,II.1.1,San Luis,AR-D,annual,2021,gas oil combustion consumption by to the public,578.31732,TJ,CH4,3.9,kg/TJ,2255.437548,kg +bad468ed-c5d1-37b4-b0c4-f62fccde33f7,SESCO,II.1.1,San Luis,AR-D,annual,2021,gas oil combustion consumption by to the public,578.31732,TJ,N2O,3.9,kg/TJ,2255.437548,kg +efeabdb1-ef4f-39ba-bfd3-15755f0e772f,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2021,gas oil combustion consumption by to the public,490.43736,TJ,CO2,74100.0,kg/TJ,36341408.376,kg +d856a400-38fb-36bf-8fe4-a2a48a10adce,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2021,gas oil combustion consumption by to the public,490.43736,TJ,CH4,3.9,kg/TJ,1912.705704,kg +d856a400-38fb-36bf-8fe4-a2a48a10adce,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2021,gas oil combustion consumption by to the public,490.43736,TJ,N2O,3.9,kg/TJ,1912.705704,kg +3b7c2a11-fc7b-3e40-81c7-0c220123c17f,SESCO,II.1.1,Santa Fe,AR-S,annual,2021,gas oil combustion consumption by to the public,2058.40656,TJ,CO2,74100.0,kg/TJ,152527926.096,kg +5e9c99f2-1afc-3f7d-bd52-18e0ad97ca59,SESCO,II.1.1,Santa Fe,AR-S,annual,2021,gas oil combustion consumption by to the public,2058.40656,TJ,CH4,3.9,kg/TJ,8027.785583999999,kg +5e9c99f2-1afc-3f7d-bd52-18e0ad97ca59,SESCO,II.1.1,Santa Fe,AR-S,annual,2021,gas oil combustion consumption by to the public,2058.40656,TJ,N2O,3.9,kg/TJ,8027.785583999999,kg +5d87f054-f2e7-31d7-950a-551588ca1530,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2021,gas oil combustion consumption by to the public,400.20959999999997,TJ,CO2,74100.0,kg/TJ,29655531.359999996,kg +4886e4d7-22af-3f80-8df5-49721da2e613,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2021,gas oil combustion consumption by to the public,400.20959999999997,TJ,CH4,3.9,kg/TJ,1560.8174399999998,kg +4886e4d7-22af-3f80-8df5-49721da2e613,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2021,gas oil combustion consumption by to the public,400.20959999999997,TJ,N2O,3.9,kg/TJ,1560.8174399999998,kg +53babd71-2ef8-3b78-b337-cbe4744dccfb,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2021,gas oil combustion consumption by to the public,68.4474,TJ,CO2,74100.0,kg/TJ,5071952.34,kg +21d8b724-0ef9-3b28-a3f4-f07869575faa,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2021,gas oil combustion consumption by to the public,68.4474,TJ,CH4,3.9,kg/TJ,266.94486,kg +21d8b724-0ef9-3b28-a3f4-f07869575faa,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2021,gas oil combustion consumption by to the public,68.4474,TJ,N2O,3.9,kg/TJ,266.94486,kg +003acc7e-ccf5-363e-bd35-64967dfa445a,SESCO,II.1.1,Tucuman,AR-T,annual,2021,gas oil combustion consumption by to the public,101.64168,TJ,CO2,74100.0,kg/TJ,7531648.488,kg +0600e4ec-897c-3706-bd7b-3e52635fa0ae,SESCO,II.1.1,Tucuman,AR-T,annual,2021,gas oil combustion consumption by to the public,101.64168,TJ,CH4,3.9,kg/TJ,396.40255199999996,kg +0600e4ec-897c-3706-bd7b-3e52635fa0ae,SESCO,II.1.1,Tucuman,AR-T,annual,2021,gas oil combustion consumption by to the public,101.64168,TJ,N2O,3.9,kg/TJ,396.40255199999996,kg +fb7e4af3-be9b-3e3b-8a31-5bb3f184e217,SESCO,II.1.1,Buenos Aires,AR-B,annual,2021,gas oil combustion consumption by to the public,3528.05712,TJ,CO2,74100.0,kg/TJ,261429032.592,kg +909b787b-011a-37f7-b82a-78d0f9ab3256,SESCO,II.1.1,Buenos Aires,AR-B,annual,2021,gas oil combustion consumption by to the public,3528.05712,TJ,CH4,3.9,kg/TJ,13759.422768,kg +909b787b-011a-37f7-b82a-78d0f9ab3256,SESCO,II.1.1,Buenos Aires,AR-B,annual,2021,gas oil combustion consumption by to the public,3528.05712,TJ,N2O,3.9,kg/TJ,13759.422768,kg +34f3e996-5914-3e85-95ef-ba796cef918f,SESCO,II.1.1,Capital Federal,AR-C,annual,2021,gas oil combustion consumption by to the public,571.7796,TJ,CO2,74100.0,kg/TJ,42368868.36,kg +d84bc3d1-c872-33bc-a0ca-0afe6f19f64d,SESCO,II.1.1,Capital Federal,AR-C,annual,2021,gas oil combustion consumption by to the public,571.7796,TJ,CH4,3.9,kg/TJ,2229.94044,kg +d84bc3d1-c872-33bc-a0ca-0afe6f19f64d,SESCO,II.1.1,Capital Federal,AR-C,annual,2021,gas oil combustion consumption by to the public,571.7796,TJ,N2O,3.9,kg/TJ,2229.94044,kg +1baa9a4d-96a1-3117-ba3b-865bd823b2e4,SESCO,II.1.1,Catamarca,AR-K,annual,2021,gas oil combustion consumption by to the public,165.17676,TJ,CO2,74100.0,kg/TJ,12239597.916,kg +c2846628-a171-3174-92e0-f537408cc961,SESCO,II.1.1,Catamarca,AR-K,annual,2021,gas oil combustion consumption by to the public,165.17676,TJ,CH4,3.9,kg/TJ,644.189364,kg +c2846628-a171-3174-92e0-f537408cc961,SESCO,II.1.1,Catamarca,AR-K,annual,2021,gas oil combustion consumption by to the public,165.17676,TJ,N2O,3.9,kg/TJ,644.189364,kg +b4a83efc-58be-3a33-a254-e8c5c224ec1c,SESCO,II.1.1,Chaco,AR-H,annual,2021,gas oil combustion consumption by to the public,166.65768,TJ,CO2,74100.0,kg/TJ,12349334.088,kg +7520cf08-87cd-31e5-84ad-84ad4bc7a805,SESCO,II.1.1,Chaco,AR-H,annual,2021,gas oil combustion consumption by to the public,166.65768,TJ,CH4,3.9,kg/TJ,649.9649519999999,kg +7520cf08-87cd-31e5-84ad-84ad4bc7a805,SESCO,II.1.1,Chaco,AR-H,annual,2021,gas oil combustion consumption by to the public,166.65768,TJ,N2O,3.9,kg/TJ,649.9649519999999,kg +cba5d278-a8d4-35a8-aa44-a49aaab47185,SESCO,II.1.1,Chubut,AR-U,annual,2021,gas oil combustion consumption by to the public,637.55412,TJ,CO2,74100.0,kg/TJ,47242760.292,kg +2b21c9e4-c287-38b5-8ba1-4875950d3ad0,SESCO,II.1.1,Chubut,AR-U,annual,2021,gas oil combustion consumption by to the public,637.55412,TJ,CH4,3.9,kg/TJ,2486.461068,kg +2b21c9e4-c287-38b5-8ba1-4875950d3ad0,SESCO,II.1.1,Chubut,AR-U,annual,2021,gas oil combustion consumption by to the public,637.55412,TJ,N2O,3.9,kg/TJ,2486.461068,kg +d69b8a17-5948-369b-8f48-5dac70cec719,SESCO,II.1.1,Corrientes,AR-W,annual,2021,gas oil combustion consumption by to the public,216.39491999999998,TJ,CO2,74100.0,kg/TJ,16034863.571999999,kg +c05e0e71-024c-303c-930a-e3a584e89974,SESCO,II.1.1,Corrientes,AR-W,annual,2021,gas oil combustion consumption by to the public,216.39491999999998,TJ,CH4,3.9,kg/TJ,843.9401879999999,kg +c05e0e71-024c-303c-930a-e3a584e89974,SESCO,II.1.1,Corrientes,AR-W,annual,2021,gas oil combustion consumption by to the public,216.39491999999998,TJ,N2O,3.9,kg/TJ,843.9401879999999,kg +476947b1-3201-3df2-9aea-daf9ed891945,SESCO,II.1.1,Córdoba,AR-X,annual,2021,gas oil combustion consumption by to the public,1058.6410799999999,TJ,CO2,74100.0,kg/TJ,78445304.028,kg +ab4642c8-23d7-3674-b237-76e704662b8f,SESCO,II.1.1,Córdoba,AR-X,annual,2021,gas oil combustion consumption by to the public,1058.6410799999999,TJ,CH4,3.9,kg/TJ,4128.700212,kg +ab4642c8-23d7-3674-b237-76e704662b8f,SESCO,II.1.1,Córdoba,AR-X,annual,2021,gas oil combustion consumption by to the public,1058.6410799999999,TJ,N2O,3.9,kg/TJ,4128.700212,kg +f30761cb-ca6f-352c-a706-fdbcf4248945,SESCO,II.1.1,Entre Rios,AR-E,annual,2021,gas oil combustion consumption by to the public,486.13908,TJ,CO2,74100.0,kg/TJ,36022905.828,kg +420b39cd-332a-3897-9f68-0d857b62ac3f,SESCO,II.1.1,Entre Rios,AR-E,annual,2021,gas oil combustion consumption by to the public,486.13908,TJ,CH4,3.9,kg/TJ,1895.9424119999999,kg +420b39cd-332a-3897-9f68-0d857b62ac3f,SESCO,II.1.1,Entre Rios,AR-E,annual,2021,gas oil combustion consumption by to the public,486.13908,TJ,N2O,3.9,kg/TJ,1895.9424119999999,kg +4faa42b2-2b77-35fe-abd0-785ec14f4afb,SESCO,II.1.1,Formosa,AR-P,annual,2021,gas oil combustion consumption by to the public,268.84116,TJ,CO2,74100.0,kg/TJ,19921129.956,kg +b1512ce1-85fd-3cd4-b996-136b5da5890f,SESCO,II.1.1,Formosa,AR-P,annual,2021,gas oil combustion consumption by to the public,268.84116,TJ,CH4,3.9,kg/TJ,1048.480524,kg +b1512ce1-85fd-3cd4-b996-136b5da5890f,SESCO,II.1.1,Formosa,AR-P,annual,2021,gas oil combustion consumption by to the public,268.84116,TJ,N2O,3.9,kg/TJ,1048.480524,kg +5ba90116-4c6b-3e15-b873-63e91b7cdda5,SESCO,II.1.1,Jujuy,AR-Y,annual,2021,gas oil combustion consumption by to the public,93.22572,TJ,CO2,74100.0,kg/TJ,6908025.852,kg +c5cbe6fa-6b91-38a1-b185-f8e48225b9a5,SESCO,II.1.1,Jujuy,AR-Y,annual,2021,gas oil combustion consumption by to the public,93.22572,TJ,CH4,3.9,kg/TJ,363.580308,kg +c5cbe6fa-6b91-38a1-b185-f8e48225b9a5,SESCO,II.1.1,Jujuy,AR-Y,annual,2021,gas oil combustion consumption by to the public,93.22572,TJ,N2O,3.9,kg/TJ,363.580308,kg +67482e5b-f2e6-37fa-a7d0-3897f9d54afc,SESCO,II.1.1,La Pampa,AR-L,annual,2021,gas oil combustion consumption by to the public,142.4934,TJ,CO2,74100.0,kg/TJ,10558760.940000001,kg +3dc0635b-eef3-33d6-aaed-dc83fd11fc6b,SESCO,II.1.1,La Pampa,AR-L,annual,2021,gas oil combustion consumption by to the public,142.4934,TJ,CH4,3.9,kg/TJ,555.7242600000001,kg +3dc0635b-eef3-33d6-aaed-dc83fd11fc6b,SESCO,II.1.1,La Pampa,AR-L,annual,2021,gas oil combustion consumption by to the public,142.4934,TJ,N2O,3.9,kg/TJ,555.7242600000001,kg +19bbdfde-3317-3430-a89f-0006212efdd6,SESCO,II.1.1,La Rioja,AR-F,annual,2021,gas oil combustion consumption by to the public,56.27496,TJ,CO2,74100.0,kg/TJ,4169974.536,kg +ca867557-a442-337b-a01d-e5cef9a417e8,SESCO,II.1.1,La Rioja,AR-F,annual,2021,gas oil combustion consumption by to the public,56.27496,TJ,CH4,3.9,kg/TJ,219.472344,kg +ca867557-a442-337b-a01d-e5cef9a417e8,SESCO,II.1.1,La Rioja,AR-F,annual,2021,gas oil combustion consumption by to the public,56.27496,TJ,N2O,3.9,kg/TJ,219.472344,kg +a21f4d93-2016-36d9-8ddb-9f0fff9ba745,SESCO,II.1.1,Mendoza,AR-M,annual,2021,gas oil combustion consumption by to the public,413.2128,TJ,CO2,74100.0,kg/TJ,30619068.48,kg +6fd729f7-cb05-3257-bc4a-36e73a969ec0,SESCO,II.1.1,Mendoza,AR-M,annual,2021,gas oil combustion consumption by to the public,413.2128,TJ,CH4,3.9,kg/TJ,1611.52992,kg +6fd729f7-cb05-3257-bc4a-36e73a969ec0,SESCO,II.1.1,Mendoza,AR-M,annual,2021,gas oil combustion consumption by to the public,413.2128,TJ,N2O,3.9,kg/TJ,1611.52992,kg +bffed5fe-e28e-39d7-974a-af30d0f0e820,SESCO,II.1.1,Misiones,AR-N,annual,2021,gas oil combustion consumption by to the public,289.28508,TJ,CO2,74100.0,kg/TJ,21436024.428,kg +336141b3-6463-3d7b-a1b8-db6a0775f8ed,SESCO,II.1.1,Misiones,AR-N,annual,2021,gas oil combustion consumption by to the public,289.28508,TJ,CH4,3.9,kg/TJ,1128.211812,kg +336141b3-6463-3d7b-a1b8-db6a0775f8ed,SESCO,II.1.1,Misiones,AR-N,annual,2021,gas oil combustion consumption by to the public,289.28508,TJ,N2O,3.9,kg/TJ,1128.211812,kg +be6ba68d-ee36-3189-b68e-7e100e66abcf,SESCO,II.1.1,Neuquén,AR-Q,annual,2021,gas oil combustion consumption by to the public,271.33344,TJ,CO2,74100.0,kg/TJ,20105807.904,kg +3b4dcfa0-1376-350c-8733-57b0f73ce0ce,SESCO,II.1.1,Neuquén,AR-Q,annual,2021,gas oil combustion consumption by to the public,271.33344,TJ,CH4,3.9,kg/TJ,1058.200416,kg +3b4dcfa0-1376-350c-8733-57b0f73ce0ce,SESCO,II.1.1,Neuquén,AR-Q,annual,2021,gas oil combustion consumption by to the public,271.33344,TJ,N2O,3.9,kg/TJ,1058.200416,kg +5eb3e716-9757-3f95-9542-c8be4db127c9,SESCO,II.1.1,Rio Negro,AR-R,annual,2021,gas oil combustion consumption by to the public,361.7418,TJ,CO2,74100.0,kg/TJ,26805067.380000003,kg +8b4da60b-9450-3c6e-97dc-2d4a3bddaf5e,SESCO,II.1.1,Rio Negro,AR-R,annual,2021,gas oil combustion consumption by to the public,361.7418,TJ,CH4,3.9,kg/TJ,1410.79302,kg +8b4da60b-9450-3c6e-97dc-2d4a3bddaf5e,SESCO,II.1.1,Rio Negro,AR-R,annual,2021,gas oil combustion consumption by to the public,361.7418,TJ,N2O,3.9,kg/TJ,1410.79302,kg +08fe332c-2e29-353a-8aa2-a9c1b3c8baa7,SESCO,II.1.1,Salta,AR-A,annual,2021,gas oil combustion consumption by to the public,66.56916,TJ,CO2,74100.0,kg/TJ,4932774.756,kg +946d9a38-fe03-3ab3-8c65-232f5bce6b23,SESCO,II.1.1,Salta,AR-A,annual,2021,gas oil combustion consumption by to the public,66.56916,TJ,CH4,3.9,kg/TJ,259.61972399999996,kg +946d9a38-fe03-3ab3-8c65-232f5bce6b23,SESCO,II.1.1,Salta,AR-A,annual,2021,gas oil combustion consumption by to the public,66.56916,TJ,N2O,3.9,kg/TJ,259.61972399999996,kg +f03208ef-783f-3174-93a2-25f15f5352be,SESCO,II.1.1,San Juan,AR-J,annual,2021,gas oil combustion consumption by to the public,79.06668,TJ,CO2,74100.0,kg/TJ,5858840.988000001,kg +ff7e1355-9fea-3f39-a057-8e8a463a9101,SESCO,II.1.1,San Juan,AR-J,annual,2021,gas oil combustion consumption by to the public,79.06668,TJ,CH4,3.9,kg/TJ,308.360052,kg +ff7e1355-9fea-3f39-a057-8e8a463a9101,SESCO,II.1.1,San Juan,AR-J,annual,2021,gas oil combustion consumption by to the public,79.06668,TJ,N2O,3.9,kg/TJ,308.360052,kg +b6c36a67-7c51-30ef-afe9-0649ea8e2e27,SESCO,II.1.1,San Luis,AR-D,annual,2021,gas oil combustion consumption by to the public,213.8304,TJ,CO2,74100.0,kg/TJ,15844832.64,kg +3a9e4033-b5cf-376e-830e-b2ce51de8b18,SESCO,II.1.1,San Luis,AR-D,annual,2021,gas oil combustion consumption by to the public,213.8304,TJ,CH4,3.9,kg/TJ,833.9385599999999,kg +3a9e4033-b5cf-376e-830e-b2ce51de8b18,SESCO,II.1.1,San Luis,AR-D,annual,2021,gas oil combustion consumption by to the public,213.8304,TJ,N2O,3.9,kg/TJ,833.9385599999999,kg +bae2dce6-1de3-3326-8e2b-e89fe4b544e4,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2021,gas oil combustion consumption by to the public,332.19563999999997,TJ,CO2,74100.0,kg/TJ,24615696.924,kg +600a4c55-f07d-38a2-bdcf-f73782bba2bc,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2021,gas oil combustion consumption by to the public,332.19563999999997,TJ,CH4,3.9,kg/TJ,1295.5629959999999,kg +600a4c55-f07d-38a2-bdcf-f73782bba2bc,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2021,gas oil combustion consumption by to the public,332.19563999999997,TJ,N2O,3.9,kg/TJ,1295.5629959999999,kg +28e37aef-9970-3d82-958e-2e14ca4817df,SESCO,II.1.1,Santa Fe,AR-S,annual,2021,gas oil combustion consumption by to the public,941.1427199999999,TJ,CO2,74100.0,kg/TJ,69738675.552,kg +147c63fb-fdd3-3064-b621-09b8cf2e6024,SESCO,II.1.1,Santa Fe,AR-S,annual,2021,gas oil combustion consumption by to the public,941.1427199999999,TJ,CH4,3.9,kg/TJ,3670.4566079999995,kg +147c63fb-fdd3-3064-b621-09b8cf2e6024,SESCO,II.1.1,Santa Fe,AR-S,annual,2021,gas oil combustion consumption by to the public,941.1427199999999,TJ,N2O,3.9,kg/TJ,3670.4566079999995,kg +2386ca5e-a544-384c-aefc-542cd62a6467,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2021,gas oil combustion consumption by to the public,242.97924,TJ,CO2,74100.0,kg/TJ,18004761.684,kg +d3027dc7-6ca6-3aa1-9b41-5084381b71b5,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2021,gas oil combustion consumption by to the public,242.97924,TJ,CH4,3.9,kg/TJ,947.619036,kg +d3027dc7-6ca6-3aa1-9b41-5084381b71b5,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2021,gas oil combustion consumption by to the public,242.97924,TJ,N2O,3.9,kg/TJ,947.619036,kg +6a331d45-4a89-3c39-b806-ec2a3b9264e5,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2021,gas oil combustion consumption by to the public,42.513239999999996,TJ,CO2,74100.0,kg/TJ,3150231.084,kg +ecc2e640-c863-3ae0-9969-02998253254c,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2021,gas oil combustion consumption by to the public,42.513239999999996,TJ,CH4,3.9,kg/TJ,165.80163599999997,kg +ecc2e640-c863-3ae0-9969-02998253254c,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2021,gas oil combustion consumption by to the public,42.513239999999996,TJ,N2O,3.9,kg/TJ,165.80163599999997,kg +62fea93b-bb2a-3bb9-b9f3-65570a96f6f1,SESCO,II.1.1,Tucuman,AR-T,annual,2021,gas oil combustion consumption by to the public,45.40284,TJ,CO2,74100.0,kg/TJ,3364350.4439999997,kg +fa6a4d94-c524-3948-8f02-20fe400d6f52,SESCO,II.1.1,Tucuman,AR-T,annual,2021,gas oil combustion consumption by to the public,45.40284,TJ,CH4,3.9,kg/TJ,177.07107599999998,kg +fa6a4d94-c524-3948-8f02-20fe400d6f52,SESCO,II.1.1,Tucuman,AR-T,annual,2021,gas oil combustion consumption by to the public,45.40284,TJ,N2O,3.9,kg/TJ,177.07107599999998,kg +2c8132ad-7241-3bbd-88b4-2e3397503212,SESCO,II.1.1,Buenos Aires,AR-B,annual,2021,jet kerosene combustion consumption by to the public,2.3589749999999996,TJ,CO2,71500.0,kg/TJ,168666.71249999997,kg +69c2da50-1e6c-335d-bbba-cfc03cc6582e,SESCO,II.1.1,Buenos Aires,AR-B,annual,2021,jet kerosene combustion consumption by to the public,2.3589749999999996,TJ,CH4,0.5,kg/TJ,1.1794874999999998,kg +ccac4abe-2eae-3321-ba72-eec14350204b,SESCO,II.1.1,Buenos Aires,AR-B,annual,2021,jet kerosene combustion consumption by to the public,2.3589749999999996,TJ,N2O,2.0,kg/TJ,4.717949999999999,kg +feda1785-ea9f-38e3-a357-60256bc7e73e,SESCO,II.1.1,Córdoba,AR-X,annual,2021,jet kerosene combustion consumption by to the public,2.233163,TJ,CO2,71500.0,kg/TJ,159671.15449999998,kg +3076db6b-a01c-39d1-ba12-baf12e18695d,SESCO,II.1.1,Córdoba,AR-X,annual,2021,jet kerosene combustion consumption by to the public,2.233163,TJ,CH4,0.5,kg/TJ,1.1165815,kg +5a9ba29e-c896-3176-bfb2-2f200bd23965,SESCO,II.1.1,Córdoba,AR-X,annual,2021,jet kerosene combustion consumption by to the public,2.233163,TJ,N2O,2.0,kg/TJ,4.466326,kg +bdf244a6-22f6-3d1c-bb59-8ee75a9bbbd4,SESCO,II.1.1,Entre Rios,AR-E,annual,2021,jet kerosene combustion consumption by to the public,2.20171,TJ,CO2,71500.0,kg/TJ,157422.26499999998,kg +15fbd5e0-fd00-3232-a17b-8ee2cb61dfeb,SESCO,II.1.1,Entre Rios,AR-E,annual,2021,jet kerosene combustion consumption by to the public,2.20171,TJ,CH4,0.5,kg/TJ,1.100855,kg +88bb5813-e027-3b3d-9a87-7c48581cf71e,SESCO,II.1.1,Entre Rios,AR-E,annual,2021,jet kerosene combustion consumption by to the public,2.20171,TJ,N2O,2.0,kg/TJ,4.40342,kg +1573b4c9-91e7-3999-b169-c1571b8b33f8,SESCO,II.1.1,Misiones,AR-N,annual,2021,jet kerosene combustion consumption by to the public,0.34598299999999993,TJ,CO2,71500.0,kg/TJ,24737.784499999994,kg +3224d0a5-067b-3f49-90d2-b318cb7e111e,SESCO,II.1.1,Misiones,AR-N,annual,2021,jet kerosene combustion consumption by to the public,0.34598299999999993,TJ,CH4,0.5,kg/TJ,0.17299149999999996,kg +cd818895-1a0e-303d-bcae-10afe0148f12,SESCO,II.1.1,Misiones,AR-N,annual,2021,jet kerosene combustion consumption by to the public,0.34598299999999993,TJ,N2O,2.0,kg/TJ,0.6919659999999999,kg +d22f3dfd-8fe9-3b47-897a-e990d250d90c,SESCO,II.1.1,Santa Fe,AR-S,annual,2021,jet kerosene combustion consumption by to the public,3.4598299999999993,TJ,CO2,71500.0,kg/TJ,247377.84499999994,kg +19eb7ebf-dc3d-3c79-beab-ed8179c1f3e4,SESCO,II.1.1,Santa Fe,AR-S,annual,2021,jet kerosene combustion consumption by to the public,3.4598299999999993,TJ,CH4,0.5,kg/TJ,1.7299149999999996,kg +1c556757-155c-3520-938e-5f289a7573b6,SESCO,II.1.1,Santa Fe,AR-S,annual,2021,jet kerosene combustion consumption by to the public,3.4598299999999993,TJ,N2O,2.0,kg/TJ,6.919659999999999,kg +0e716105-32bf-374f-a9e1-aa20703c5be3,SESCO,II.2.1,Buenos Aires,AR-B,annual,2021,gas oil combustion consumption by railway transport,101.136,TJ,CO2,74100.0,kg/TJ,7494177.6,kg +7b22458c-449f-38f1-a556-6f5caa3954f9,SESCO,II.2.1,Buenos Aires,AR-B,annual,2021,gas oil combustion consumption by railway transport,101.136,TJ,CH4,3.9,kg/TJ,394.43039999999996,kg +7b22458c-449f-38f1-a556-6f5caa3954f9,SESCO,II.2.1,Buenos Aires,AR-B,annual,2021,gas oil combustion consumption by railway transport,101.136,TJ,N2O,3.9,kg/TJ,394.43039999999996,kg +f2f9e289-544b-37dc-8518-6f702c310812,SESCO,II.2.1,Capital Federal,AR-C,annual,2021,gas oil combustion consumption by railway transport,0.903,TJ,CO2,74100.0,kg/TJ,66912.3,kg +4dd6ec88-291a-39f9-900d-2ffeb24dda48,SESCO,II.2.1,Capital Federal,AR-C,annual,2021,gas oil combustion consumption by railway transport,0.903,TJ,CH4,3.9,kg/TJ,3.5217,kg +4dd6ec88-291a-39f9-900d-2ffeb24dda48,SESCO,II.2.1,Capital Federal,AR-C,annual,2021,gas oil combustion consumption by railway transport,0.903,TJ,N2O,3.9,kg/TJ,3.5217,kg +35b7048c-f187-36a2-a922-a8779872b195,SESCO,II.2.1,Córdoba,AR-X,annual,2021,gas oil combustion consumption by railway transport,2.6367599999999998,TJ,CO2,74100.0,kg/TJ,195383.916,kg +89c37af0-f2c6-3ba3-987b-a809ea562587,SESCO,II.2.1,Córdoba,AR-X,annual,2021,gas oil combustion consumption by railway transport,2.6367599999999998,TJ,CH4,3.9,kg/TJ,10.283363999999999,kg +89c37af0-f2c6-3ba3-987b-a809ea562587,SESCO,II.2.1,Córdoba,AR-X,annual,2021,gas oil combustion consumption by railway transport,2.6367599999999998,TJ,N2O,3.9,kg/TJ,10.283363999999999,kg +3d53988e-3280-3593-8fc8-97e919c328ed,SESCO,II.2.1,La Pampa,AR-L,annual,2021,gas oil combustion consumption by railway transport,3.93708,TJ,CO2,74100.0,kg/TJ,291737.62799999997,kg +3a2390dc-30c4-34de-8960-6bf37de58289,SESCO,II.2.1,La Pampa,AR-L,annual,2021,gas oil combustion consumption by railway transport,3.93708,TJ,CH4,3.9,kg/TJ,15.354612,kg +3a2390dc-30c4-34de-8960-6bf37de58289,SESCO,II.2.1,La Pampa,AR-L,annual,2021,gas oil combustion consumption by railway transport,3.93708,TJ,N2O,3.9,kg/TJ,15.354612,kg +9b95ac47-8e5e-33eb-875a-4da097391810,SESCO,II.2.1,Neuquén,AR-Q,annual,2021,gas oil combustion consumption by railway transport,2.709,TJ,CO2,74100.0,kg/TJ,200736.9,kg +612d3c4b-b817-3f2f-bbbc-158f57b51c8b,SESCO,II.2.1,Neuquén,AR-Q,annual,2021,gas oil combustion consumption by railway transport,2.709,TJ,CH4,3.9,kg/TJ,10.5651,kg +612d3c4b-b817-3f2f-bbbc-158f57b51c8b,SESCO,II.2.1,Neuquén,AR-Q,annual,2021,gas oil combustion consumption by railway transport,2.709,TJ,N2O,3.9,kg/TJ,10.5651,kg +d86fe2a3-40b7-36bd-b6cb-1a1509c83e35,SESCO,II.2.1,Santa Fe,AR-S,annual,2021,gas oil combustion consumption by railway transport,39.5514,TJ,CO2,74100.0,kg/TJ,2930758.74,kg +e4fcb35d-0628-3596-89c3-ffa97c1a1f6b,SESCO,II.2.1,Santa Fe,AR-S,annual,2021,gas oil combustion consumption by railway transport,39.5514,TJ,CH4,3.9,kg/TJ,154.25046,kg +e4fcb35d-0628-3596-89c3-ffa97c1a1f6b,SESCO,II.2.1,Santa Fe,AR-S,annual,2021,gas oil combustion consumption by railway transport,39.5514,TJ,N2O,3.9,kg/TJ,154.25046,kg +cba14561-32e4-351b-9fe5-ea6b47375172,SESCO,II.2.1,Santiago del Estero,AR-G,annual,2021,gas oil combustion consumption by railway transport,4.11768,TJ,CO2,74100.0,kg/TJ,305120.088,kg +c67f9d40-0fea-3367-bb19-df40bb693025,SESCO,II.2.1,Santiago del Estero,AR-G,annual,2021,gas oil combustion consumption by railway transport,4.11768,TJ,CH4,3.9,kg/TJ,16.058951999999998,kg +c67f9d40-0fea-3367-bb19-df40bb693025,SESCO,II.2.1,Santiago del Estero,AR-G,annual,2021,gas oil combustion consumption by railway transport,4.11768,TJ,N2O,3.9,kg/TJ,16.058951999999998,kg +4828952c-857f-33c0-970f-d626c0f2ddee,SESCO,II.2.1,Tucuman,AR-T,annual,2021,gas oil combustion consumption by railway transport,1.48092,TJ,CO2,74100.0,kg/TJ,109736.172,kg +1bdb27ea-7eb2-345a-9ff5-2ce79238ebb3,SESCO,II.2.1,Tucuman,AR-T,annual,2021,gas oil combustion consumption by railway transport,1.48092,TJ,CH4,3.9,kg/TJ,5.775588,kg +1bdb27ea-7eb2-345a-9ff5-2ce79238ebb3,SESCO,II.2.1,Tucuman,AR-T,annual,2021,gas oil combustion consumption by railway transport,1.48092,TJ,N2O,3.9,kg/TJ,5.775588,kg +f7f4286e-221b-3576-8afe-a64e5018e0e9,SESCO,II.2.1,Buenos Aires,AR-B,annual,2021,gas oil combustion consumption by railway transport,22.9362,TJ,CO2,74100.0,kg/TJ,1699572.42,kg +03b9d782-9994-34f8-9630-99914872694a,SESCO,II.2.1,Buenos Aires,AR-B,annual,2021,gas oil combustion consumption by railway transport,22.9362,TJ,CH4,3.9,kg/TJ,89.45118,kg +03b9d782-9994-34f8-9630-99914872694a,SESCO,II.2.1,Buenos Aires,AR-B,annual,2021,gas oil combustion consumption by railway transport,22.9362,TJ,N2O,3.9,kg/TJ,89.45118,kg +7cc89b45-445b-323d-8f31-17fd983cb558,SESCO,II.2.1,Capital Federal,AR-C,annual,2021,gas oil combustion consumption by railway transport,2.8895999999999997,TJ,CO2,74100.0,kg/TJ,214119.36,kg +782ae6e8-ad35-3b0a-99ee-f0d48a0645b9,SESCO,II.2.1,Capital Federal,AR-C,annual,2021,gas oil combustion consumption by railway transport,2.8895999999999997,TJ,CH4,3.9,kg/TJ,11.26944,kg +782ae6e8-ad35-3b0a-99ee-f0d48a0645b9,SESCO,II.2.1,Capital Federal,AR-C,annual,2021,gas oil combustion consumption by railway transport,2.8895999999999997,TJ,N2O,3.9,kg/TJ,11.26944,kg +7ed12186-34c0-3d02-99ad-48c9ca865493,SESCO,II.1.1,Buenos Aires,AR-B,annual,2021,gas oil combustion consumption by freight transport,1279.04532,TJ,CO2,74100.0,kg/TJ,94777258.212,kg +d48bb42e-54e9-308f-8314-9a51c9577c7a,SESCO,II.1.1,Buenos Aires,AR-B,annual,2021,gas oil combustion consumption by freight transport,1279.04532,TJ,CH4,3.9,kg/TJ,4988.276747999999,kg +d48bb42e-54e9-308f-8314-9a51c9577c7a,SESCO,II.1.1,Buenos Aires,AR-B,annual,2021,gas oil combustion consumption by freight transport,1279.04532,TJ,N2O,3.9,kg/TJ,4988.276747999999,kg +f73fd212-433d-3f4e-8b89-d7e7a40049d0,SESCO,II.1.1,Capital Federal,AR-C,annual,2021,gas oil combustion consumption by freight transport,320.45664,TJ,CO2,74100.0,kg/TJ,23745837.024,kg +020963f4-ffcd-37ca-a31a-3890f241ddf9,SESCO,II.1.1,Capital Federal,AR-C,annual,2021,gas oil combustion consumption by freight transport,320.45664,TJ,CH4,3.9,kg/TJ,1249.780896,kg +020963f4-ffcd-37ca-a31a-3890f241ddf9,SESCO,II.1.1,Capital Federal,AR-C,annual,2021,gas oil combustion consumption by freight transport,320.45664,TJ,N2O,3.9,kg/TJ,1249.780896,kg +15f56ae1-582e-350d-acf2-039547b9724f,SESCO,II.1.1,Catamarca,AR-K,annual,2021,gas oil combustion consumption by freight transport,9.10224,TJ,CO2,74100.0,kg/TJ,674475.984,kg +517ecd64-b352-33ae-a971-809d899fc129,SESCO,II.1.1,Catamarca,AR-K,annual,2021,gas oil combustion consumption by freight transport,9.10224,TJ,CH4,3.9,kg/TJ,35.498736,kg +517ecd64-b352-33ae-a971-809d899fc129,SESCO,II.1.1,Catamarca,AR-K,annual,2021,gas oil combustion consumption by freight transport,9.10224,TJ,N2O,3.9,kg/TJ,35.498736,kg +13a1fd99-6ea2-3332-b73d-e21136dcdd7a,SESCO,II.1.1,Chaco,AR-H,annual,2021,gas oil combustion consumption by freight transport,23.73084,TJ,CO2,74100.0,kg/TJ,1758455.244,kg +d89ca209-8648-3905-8383-edce2fcdd175,SESCO,II.1.1,Chaco,AR-H,annual,2021,gas oil combustion consumption by freight transport,23.73084,TJ,CH4,3.9,kg/TJ,92.550276,kg +d89ca209-8648-3905-8383-edce2fcdd175,SESCO,II.1.1,Chaco,AR-H,annual,2021,gas oil combustion consumption by freight transport,23.73084,TJ,N2O,3.9,kg/TJ,92.550276,kg +46031eeb-54f2-3394-a5b5-9b1428d4762b,SESCO,II.1.1,Chubut,AR-U,annual,2021,gas oil combustion consumption by freight transport,53.096399999999996,TJ,CO2,74100.0,kg/TJ,3934443.2399999998,kg +f9f17796-0684-3bdb-9411-5e61b06ee1c0,SESCO,II.1.1,Chubut,AR-U,annual,2021,gas oil combustion consumption by freight transport,53.096399999999996,TJ,CH4,3.9,kg/TJ,207.07595999999998,kg +f9f17796-0684-3bdb-9411-5e61b06ee1c0,SESCO,II.1.1,Chubut,AR-U,annual,2021,gas oil combustion consumption by freight transport,53.096399999999996,TJ,N2O,3.9,kg/TJ,207.07595999999998,kg +3728cd35-2577-3a2f-8b9d-4fe9ef4f4d0d,SESCO,II.1.1,Corrientes,AR-W,annual,2021,gas oil combustion consumption by freight transport,63.46284,TJ,CO2,74100.0,kg/TJ,4702596.444,kg +df780de8-27e0-3fb2-91b1-25b1764f49c9,SESCO,II.1.1,Corrientes,AR-W,annual,2021,gas oil combustion consumption by freight transport,63.46284,TJ,CH4,3.9,kg/TJ,247.505076,kg +df780de8-27e0-3fb2-91b1-25b1764f49c9,SESCO,II.1.1,Corrientes,AR-W,annual,2021,gas oil combustion consumption by freight transport,63.46284,TJ,N2O,3.9,kg/TJ,247.505076,kg +06155b3f-c823-3372-8357-4483ed314d04,SESCO,II.1.1,Córdoba,AR-X,annual,2021,gas oil combustion consumption by freight transport,184.97052,TJ,CO2,74100.0,kg/TJ,13706315.532,kg +061413ad-ae74-3f29-addf-6a6c17dad3eb,SESCO,II.1.1,Córdoba,AR-X,annual,2021,gas oil combustion consumption by freight transport,184.97052,TJ,CH4,3.9,kg/TJ,721.3850279999999,kg +061413ad-ae74-3f29-addf-6a6c17dad3eb,SESCO,II.1.1,Córdoba,AR-X,annual,2021,gas oil combustion consumption by freight transport,184.97052,TJ,N2O,3.9,kg/TJ,721.3850279999999,kg +81eded8d-4d5c-3e8e-a419-fadd0086eab2,SESCO,II.1.1,Entre Rios,AR-E,annual,2021,gas oil combustion consumption by freight transport,106.15668,TJ,CO2,74100.0,kg/TJ,7866209.988,kg +ef24c252-cbee-353b-b8d0-83d40cad1ac1,SESCO,II.1.1,Entre Rios,AR-E,annual,2021,gas oil combustion consumption by freight transport,106.15668,TJ,CH4,3.9,kg/TJ,414.01105199999995,kg +ef24c252-cbee-353b-b8d0-83d40cad1ac1,SESCO,II.1.1,Entre Rios,AR-E,annual,2021,gas oil combustion consumption by freight transport,106.15668,TJ,N2O,3.9,kg/TJ,414.01105199999995,kg +199724b1-129e-369a-878b-c7ba4c621768,SESCO,II.1.1,Formosa,AR-P,annual,2021,gas oil combustion consumption by freight transport,10.6554,TJ,CO2,74100.0,kg/TJ,789565.14,kg +8701830f-4aa2-36a8-a9a8-fdfc2ecbd1af,SESCO,II.1.1,Formosa,AR-P,annual,2021,gas oil combustion consumption by freight transport,10.6554,TJ,CH4,3.9,kg/TJ,41.55606,kg +8701830f-4aa2-36a8-a9a8-fdfc2ecbd1af,SESCO,II.1.1,Formosa,AR-P,annual,2021,gas oil combustion consumption by freight transport,10.6554,TJ,N2O,3.9,kg/TJ,41.55606,kg +cd901963-94b0-395b-a67d-44f41aca9a32,SESCO,II.1.1,Jujuy,AR-Y,annual,2021,gas oil combustion consumption by freight transport,7.7658,TJ,CO2,74100.0,kg/TJ,575445.78,kg +01ac5490-6559-365c-880b-79207a82540f,SESCO,II.1.1,Jujuy,AR-Y,annual,2021,gas oil combustion consumption by freight transport,7.7658,TJ,CH4,3.9,kg/TJ,30.28662,kg +01ac5490-6559-365c-880b-79207a82540f,SESCO,II.1.1,Jujuy,AR-Y,annual,2021,gas oil combustion consumption by freight transport,7.7658,TJ,N2O,3.9,kg/TJ,30.28662,kg +5dd187e4-3218-3637-bd97-f59ae20cd8a6,SESCO,II.1.1,La Pampa,AR-L,annual,2021,gas oil combustion consumption by freight transport,25.8258,TJ,CO2,74100.0,kg/TJ,1913691.78,kg +f8cecf70-c318-386e-9733-8a3339b8d312,SESCO,II.1.1,La Pampa,AR-L,annual,2021,gas oil combustion consumption by freight transport,25.8258,TJ,CH4,3.9,kg/TJ,100.72062,kg +f8cecf70-c318-386e-9733-8a3339b8d312,SESCO,II.1.1,La Pampa,AR-L,annual,2021,gas oil combustion consumption by freight transport,25.8258,TJ,N2O,3.9,kg/TJ,100.72062,kg +b68b5340-4082-3305-9537-42be7a1ed33e,SESCO,II.1.1,La Rioja,AR-F,annual,2021,gas oil combustion consumption by freight transport,3.28692,TJ,CO2,74100.0,kg/TJ,243560.772,kg +545ac012-46dd-339f-8b2f-743feaa33a67,SESCO,II.1.1,La Rioja,AR-F,annual,2021,gas oil combustion consumption by freight transport,3.28692,TJ,CH4,3.9,kg/TJ,12.818988,kg +545ac012-46dd-339f-8b2f-743feaa33a67,SESCO,II.1.1,La Rioja,AR-F,annual,2021,gas oil combustion consumption by freight transport,3.28692,TJ,N2O,3.9,kg/TJ,12.818988,kg +995928d3-55e1-32ef-88ff-61bedef34d39,SESCO,II.1.1,Mendoza,AR-M,annual,2021,gas oil combustion consumption by freight transport,46.55868,TJ,CO2,74100.0,kg/TJ,3449998.188,kg +9459935f-13d8-3d0b-b532-f8f75b314258,SESCO,II.1.1,Mendoza,AR-M,annual,2021,gas oil combustion consumption by freight transport,46.55868,TJ,CH4,3.9,kg/TJ,181.578852,kg +9459935f-13d8-3d0b-b532-f8f75b314258,SESCO,II.1.1,Mendoza,AR-M,annual,2021,gas oil combustion consumption by freight transport,46.55868,TJ,N2O,3.9,kg/TJ,181.578852,kg +3e6793e5-3b63-39e9-9f5a-03c6489797d4,SESCO,II.1.1,Misiones,AR-N,annual,2021,gas oil combustion consumption by freight transport,102.4002,TJ,CO2,74100.0,kg/TJ,7587854.82,kg +d68925b4-68d1-334b-8524-ecca45a5261a,SESCO,II.1.1,Misiones,AR-N,annual,2021,gas oil combustion consumption by freight transport,102.4002,TJ,CH4,3.9,kg/TJ,399.36078,kg +d68925b4-68d1-334b-8524-ecca45a5261a,SESCO,II.1.1,Misiones,AR-N,annual,2021,gas oil combustion consumption by freight transport,102.4002,TJ,N2O,3.9,kg/TJ,399.36078,kg +374c5c0b-63ab-3c52-acd8-b1639f69a650,SESCO,II.1.1,Neuquén,AR-Q,annual,2021,gas oil combustion consumption by freight transport,3.17856,TJ,CO2,74100.0,kg/TJ,235531.296,kg +a5fcfe8b-3614-36fa-a714-4441399a2603,SESCO,II.1.1,Neuquén,AR-Q,annual,2021,gas oil combustion consumption by freight transport,3.17856,TJ,CH4,3.9,kg/TJ,12.396384,kg +a5fcfe8b-3614-36fa-a714-4441399a2603,SESCO,II.1.1,Neuquén,AR-Q,annual,2021,gas oil combustion consumption by freight transport,3.17856,TJ,N2O,3.9,kg/TJ,12.396384,kg +1e2d7d49-e7ac-3b94-b1e8-c8039fcb5b12,SESCO,II.1.1,Rio Negro,AR-R,annual,2021,gas oil combustion consumption by freight transport,111.17736,TJ,CO2,74100.0,kg/TJ,8238242.375999999,kg +fd07f225-e2d9-3a8e-8862-98b6cea21903,SESCO,II.1.1,Rio Negro,AR-R,annual,2021,gas oil combustion consumption by freight transport,111.17736,TJ,CH4,3.9,kg/TJ,433.59170399999994,kg +fd07f225-e2d9-3a8e-8862-98b6cea21903,SESCO,II.1.1,Rio Negro,AR-R,annual,2021,gas oil combustion consumption by freight transport,111.17736,TJ,N2O,3.9,kg/TJ,433.59170399999994,kg +d7825e1b-d587-3894-a49f-50954c914175,SESCO,II.1.1,Salta,AR-A,annual,2021,gas oil combustion consumption by freight transport,5.20128,TJ,CO2,74100.0,kg/TJ,385414.848,kg +de2dab8d-7c8e-3f14-ae39-ce804d7664e4,SESCO,II.1.1,Salta,AR-A,annual,2021,gas oil combustion consumption by freight transport,5.20128,TJ,CH4,3.9,kg/TJ,20.284992,kg +de2dab8d-7c8e-3f14-ae39-ce804d7664e4,SESCO,II.1.1,Salta,AR-A,annual,2021,gas oil combustion consumption by freight transport,5.20128,TJ,N2O,3.9,kg/TJ,20.284992,kg +3e0f075c-6159-306f-a57f-c25f6196a204,SESCO,II.1.1,San Juan,AR-J,annual,2021,gas oil combustion consumption by freight transport,7.00728,TJ,CO2,74100.0,kg/TJ,519239.448,kg +0cfc92b3-e995-339a-8340-20a4d585c4ee,SESCO,II.1.1,San Juan,AR-J,annual,2021,gas oil combustion consumption by freight transport,7.00728,TJ,CH4,3.9,kg/TJ,27.328391999999997,kg +0cfc92b3-e995-339a-8340-20a4d585c4ee,SESCO,II.1.1,San Juan,AR-J,annual,2021,gas oil combustion consumption by freight transport,7.00728,TJ,N2O,3.9,kg/TJ,27.328391999999997,kg +e0ec412a-841b-3016-969f-0621a14a1bef,SESCO,II.1.1,San Luis,AR-D,annual,2021,gas oil combustion consumption by freight transport,54.21612,TJ,CO2,74100.0,kg/TJ,4017414.4919999996,kg +922afda3-99b1-3fbc-adac-2108960bb111,SESCO,II.1.1,San Luis,AR-D,annual,2021,gas oil combustion consumption by freight transport,54.21612,TJ,CH4,3.9,kg/TJ,211.44286799999998,kg +922afda3-99b1-3fbc-adac-2108960bb111,SESCO,II.1.1,San Luis,AR-D,annual,2021,gas oil combustion consumption by freight transport,54.21612,TJ,N2O,3.9,kg/TJ,211.44286799999998,kg +1432e794-e42a-390c-be1a-7b48416b0c67,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2021,gas oil combustion consumption by freight transport,22.0332,TJ,CO2,74100.0,kg/TJ,1632660.12,kg +d508ec99-7304-3b60-83eb-188b652ce9c1,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2021,gas oil combustion consumption by freight transport,22.0332,TJ,CH4,3.9,kg/TJ,85.92948,kg +d508ec99-7304-3b60-83eb-188b652ce9c1,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2021,gas oil combustion consumption by freight transport,22.0332,TJ,N2O,3.9,kg/TJ,85.92948,kg +e79dacc6-1410-30e5-916b-aafc666c165f,SESCO,II.1.1,Santa Fe,AR-S,annual,2021,gas oil combustion consumption by freight transport,406.49448,TJ,CO2,74100.0,kg/TJ,30121240.968000002,kg +4bda5d89-f9e0-3de9-856d-1808a9676af2,SESCO,II.1.1,Santa Fe,AR-S,annual,2021,gas oil combustion consumption by freight transport,406.49448,TJ,CH4,3.9,kg/TJ,1585.328472,kg +4bda5d89-f9e0-3de9-856d-1808a9676af2,SESCO,II.1.1,Santa Fe,AR-S,annual,2021,gas oil combustion consumption by freight transport,406.49448,TJ,N2O,3.9,kg/TJ,1585.328472,kg +a572d272-7275-3058-b45c-ec9b6f154753,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2021,gas oil combustion consumption by freight transport,87.01308,TJ,CO2,74100.0,kg/TJ,6447669.228,kg +d5f65551-9c95-31d0-a1d8-8a0c90f8ea03,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2021,gas oil combustion consumption by freight transport,87.01308,TJ,CH4,3.9,kg/TJ,339.351012,kg +d5f65551-9c95-31d0-a1d8-8a0c90f8ea03,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2021,gas oil combustion consumption by freight transport,87.01308,TJ,N2O,3.9,kg/TJ,339.351012,kg +ad3448c7-13f8-36e0-aa6e-b56f7f51803f,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2021,gas oil combustion consumption by freight transport,4.65948,TJ,CO2,74100.0,kg/TJ,345267.468,kg +5d24e4c0-8f40-3453-a152-756dac7739f2,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2021,gas oil combustion consumption by freight transport,4.65948,TJ,CH4,3.9,kg/TJ,18.171972,kg +5d24e4c0-8f40-3453-a152-756dac7739f2,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2021,gas oil combustion consumption by freight transport,4.65948,TJ,N2O,3.9,kg/TJ,18.171972,kg +0c25fc53-9d1a-3ffa-984d-06a58e1f8ddd,SESCO,II.1.1,Tucuman,AR-T,annual,2021,gas oil combustion consumption by freight transport,59.85084,TJ,CO2,74100.0,kg/TJ,4434947.244,kg +e65caaa0-78f1-31bb-8efd-bfcac8d1b8a8,SESCO,II.1.1,Tucuman,AR-T,annual,2021,gas oil combustion consumption by freight transport,59.85084,TJ,CH4,3.9,kg/TJ,233.418276,kg +e65caaa0-78f1-31bb-8efd-bfcac8d1b8a8,SESCO,II.1.1,Tucuman,AR-T,annual,2021,gas oil combustion consumption by freight transport,59.85084,TJ,N2O,3.9,kg/TJ,233.418276,kg +b6977628-f9c4-32ec-b689-5e497b6ce537,SESCO,II.1.1,Buenos Aires,AR-B,annual,2021,gas oil combustion consumption by freight transport,118.36524,TJ,CO2,74100.0,kg/TJ,8770864.284,kg +8f5d2284-e28c-3b65-ae8c-9c3a824e2940,SESCO,II.1.1,Buenos Aires,AR-B,annual,2021,gas oil combustion consumption by freight transport,118.36524,TJ,CH4,3.9,kg/TJ,461.624436,kg +8f5d2284-e28c-3b65-ae8c-9c3a824e2940,SESCO,II.1.1,Buenos Aires,AR-B,annual,2021,gas oil combustion consumption by freight transport,118.36524,TJ,N2O,3.9,kg/TJ,461.624436,kg +a0e557cb-9b38-39d3-bce0-92119e938ef4,SESCO,II.1.1,Capital Federal,AR-C,annual,2021,gas oil combustion consumption by freight transport,23.18904,TJ,CO2,74100.0,kg/TJ,1718307.8639999998,kg +6122e40e-6082-30a5-a7ac-11b473246e0e,SESCO,II.1.1,Capital Federal,AR-C,annual,2021,gas oil combustion consumption by freight transport,23.18904,TJ,CH4,3.9,kg/TJ,90.43725599999999,kg +6122e40e-6082-30a5-a7ac-11b473246e0e,SESCO,II.1.1,Capital Federal,AR-C,annual,2021,gas oil combustion consumption by freight transport,23.18904,TJ,N2O,3.9,kg/TJ,90.43725599999999,kg +85a645da-c038-35a6-a5fd-0ac40b2ec5f6,SESCO,II.1.1,Catamarca,AR-K,annual,2021,gas oil combustion consumption by freight transport,0.39732,TJ,CO2,74100.0,kg/TJ,29441.412,kg +476f10f9-2789-32e6-bbd6-1a673558b1f6,SESCO,II.1.1,Catamarca,AR-K,annual,2021,gas oil combustion consumption by freight transport,0.39732,TJ,CH4,3.9,kg/TJ,1.549548,kg +476f10f9-2789-32e6-bbd6-1a673558b1f6,SESCO,II.1.1,Catamarca,AR-K,annual,2021,gas oil combustion consumption by freight transport,0.39732,TJ,N2O,3.9,kg/TJ,1.549548,kg +2e62f7dd-9a5b-3bfe-a716-917ee4814950,SESCO,II.1.1,Chaco,AR-H,annual,2021,gas oil combustion consumption by freight transport,3.64812,TJ,CO2,74100.0,kg/TJ,270325.692,kg +e41c5d58-702e-34b0-a689-7d8fbe158ba9,SESCO,II.1.1,Chaco,AR-H,annual,2021,gas oil combustion consumption by freight transport,3.64812,TJ,CH4,3.9,kg/TJ,14.227668,kg +e41c5d58-702e-34b0-a689-7d8fbe158ba9,SESCO,II.1.1,Chaco,AR-H,annual,2021,gas oil combustion consumption by freight transport,3.64812,TJ,N2O,3.9,kg/TJ,14.227668,kg +126aa26c-a4ad-335e-ac57-74323834a81e,SESCO,II.1.1,Chubut,AR-U,annual,2021,gas oil combustion consumption by freight transport,8.993879999999999,TJ,CO2,74100.0,kg/TJ,666446.5079999999,kg +7e64a6a2-b7f7-349f-ba93-b09ac893117d,SESCO,II.1.1,Chubut,AR-U,annual,2021,gas oil combustion consumption by freight transport,8.993879999999999,TJ,CH4,3.9,kg/TJ,35.076131999999994,kg +7e64a6a2-b7f7-349f-ba93-b09ac893117d,SESCO,II.1.1,Chubut,AR-U,annual,2021,gas oil combustion consumption by freight transport,8.993879999999999,TJ,N2O,3.9,kg/TJ,35.076131999999994,kg +0e85c3a1-2b01-3082-973b-e99f26225018,SESCO,II.1.1,Corrientes,AR-W,annual,2021,gas oil combustion consumption by freight transport,17.77104,TJ,CO2,74100.0,kg/TJ,1316834.064,kg +a12b0023-41c1-302b-b8e2-5b09c7684f91,SESCO,II.1.1,Corrientes,AR-W,annual,2021,gas oil combustion consumption by freight transport,17.77104,TJ,CH4,3.9,kg/TJ,69.30705599999999,kg +a12b0023-41c1-302b-b8e2-5b09c7684f91,SESCO,II.1.1,Corrientes,AR-W,annual,2021,gas oil combustion consumption by freight transport,17.77104,TJ,N2O,3.9,kg/TJ,69.30705599999999,kg +0790802a-ab5d-3aff-a109-31e441ec2e5a,SESCO,II.1.1,Córdoba,AR-X,annual,2021,gas oil combustion consumption by freight transport,12.53364,TJ,CO2,74100.0,kg/TJ,928742.724,kg +8c9d7ca9-7845-3429-adb4-ff78f13834e4,SESCO,II.1.1,Córdoba,AR-X,annual,2021,gas oil combustion consumption by freight transport,12.53364,TJ,CH4,3.9,kg/TJ,48.881196,kg +8c9d7ca9-7845-3429-adb4-ff78f13834e4,SESCO,II.1.1,Córdoba,AR-X,annual,2021,gas oil combustion consumption by freight transport,12.53364,TJ,N2O,3.9,kg/TJ,48.881196,kg +b228d64b-30cd-3d4e-9717-f5c62d654fed,SESCO,II.1.1,Entre Rios,AR-E,annual,2021,gas oil combustion consumption by freight transport,10.14972,TJ,CO2,74100.0,kg/TJ,752094.252,kg +fb0f93b0-51f6-38eb-a02d-f6726519d7fe,SESCO,II.1.1,Entre Rios,AR-E,annual,2021,gas oil combustion consumption by freight transport,10.14972,TJ,CH4,3.9,kg/TJ,39.583908,kg +fb0f93b0-51f6-38eb-a02d-f6726519d7fe,SESCO,II.1.1,Entre Rios,AR-E,annual,2021,gas oil combustion consumption by freight transport,10.14972,TJ,N2O,3.9,kg/TJ,39.583908,kg +2381488a-5231-3b02-baa5-49dae9541b34,SESCO,II.1.1,Formosa,AR-P,annual,2021,gas oil combustion consumption by freight transport,2.6367599999999998,TJ,CO2,74100.0,kg/TJ,195383.916,kg +10a0b47c-6e8d-37e5-bc1b-d6a8a0ad8988,SESCO,II.1.1,Formosa,AR-P,annual,2021,gas oil combustion consumption by freight transport,2.6367599999999998,TJ,CH4,3.9,kg/TJ,10.283363999999999,kg +10a0b47c-6e8d-37e5-bc1b-d6a8a0ad8988,SESCO,II.1.1,Formosa,AR-P,annual,2021,gas oil combustion consumption by freight transport,2.6367599999999998,TJ,N2O,3.9,kg/TJ,10.283363999999999,kg +700975ce-d717-3f81-9056-920f8c4fd565,SESCO,II.1.1,Jujuy,AR-Y,annual,2021,gas oil combustion consumption by freight transport,2.23944,TJ,CO2,74100.0,kg/TJ,165942.50400000002,kg +f616c99f-a5ae-3ec8-85fa-411994b7a43e,SESCO,II.1.1,Jujuy,AR-Y,annual,2021,gas oil combustion consumption by freight transport,2.23944,TJ,CH4,3.9,kg/TJ,8.733816000000001,kg +f616c99f-a5ae-3ec8-85fa-411994b7a43e,SESCO,II.1.1,Jujuy,AR-Y,annual,2021,gas oil combustion consumption by freight transport,2.23944,TJ,N2O,3.9,kg/TJ,8.733816000000001,kg +de3dc1f3-0c65-3fa4-b192-da0daf9a68b3,SESCO,II.1.1,La Pampa,AR-L,annual,2021,gas oil combustion consumption by freight transport,1.48092,TJ,CO2,74100.0,kg/TJ,109736.172,kg +15f148aa-11ce-34ba-896c-642f48dfd274,SESCO,II.1.1,La Pampa,AR-L,annual,2021,gas oil combustion consumption by freight transport,1.48092,TJ,CH4,3.9,kg/TJ,5.775588,kg +15f148aa-11ce-34ba-896c-642f48dfd274,SESCO,II.1.1,La Pampa,AR-L,annual,2021,gas oil combustion consumption by freight transport,1.48092,TJ,N2O,3.9,kg/TJ,5.775588,kg +49db72b4-e7a3-3d71-add8-5fa07912b723,SESCO,II.1.1,La Rioja,AR-F,annual,2021,gas oil combustion consumption by freight transport,0.25284,TJ,CO2,74100.0,kg/TJ,18735.444,kg +6abff1db-b6ac-3845-aef3-4514f1a3fdaf,SESCO,II.1.1,La Rioja,AR-F,annual,2021,gas oil combustion consumption by freight transport,0.25284,TJ,CH4,3.9,kg/TJ,0.9860760000000001,kg +6abff1db-b6ac-3845-aef3-4514f1a3fdaf,SESCO,II.1.1,La Rioja,AR-F,annual,2021,gas oil combustion consumption by freight transport,0.25284,TJ,N2O,3.9,kg/TJ,0.9860760000000001,kg +c780afc5-1c5b-3300-878f-248c830393d8,SESCO,II.1.1,Mendoza,AR-M,annual,2021,gas oil combustion consumption by freight transport,9.78852,TJ,CO2,74100.0,kg/TJ,725329.332,kg +6b79507b-a7c3-300f-9863-e26e6aeea6b8,SESCO,II.1.1,Mendoza,AR-M,annual,2021,gas oil combustion consumption by freight transport,9.78852,TJ,CH4,3.9,kg/TJ,38.175228,kg +6b79507b-a7c3-300f-9863-e26e6aeea6b8,SESCO,II.1.1,Mendoza,AR-M,annual,2021,gas oil combustion consumption by freight transport,9.78852,TJ,N2O,3.9,kg/TJ,38.175228,kg +d2695a60-f5b2-31b9-9061-a352b1c3941b,SESCO,II.1.1,Misiones,AR-N,annual,2021,gas oil combustion consumption by freight transport,1.30032,TJ,CO2,74100.0,kg/TJ,96353.712,kg +f7dba43f-d130-3573-b2e3-c4ad187aa377,SESCO,II.1.1,Misiones,AR-N,annual,2021,gas oil combustion consumption by freight transport,1.30032,TJ,CH4,3.9,kg/TJ,5.071248,kg +f7dba43f-d130-3573-b2e3-c4ad187aa377,SESCO,II.1.1,Misiones,AR-N,annual,2021,gas oil combustion consumption by freight transport,1.30032,TJ,N2O,3.9,kg/TJ,5.071248,kg +42bc86c0-3e60-38cf-9617-d938044bbad4,SESCO,II.1.1,Neuquén,AR-Q,annual,2021,gas oil combustion consumption by freight transport,0.86688,TJ,CO2,74100.0,kg/TJ,64235.808,kg +0a85f544-5eb4-33da-83e1-c902397dc29e,SESCO,II.1.1,Neuquén,AR-Q,annual,2021,gas oil combustion consumption by freight transport,0.86688,TJ,CH4,3.9,kg/TJ,3.380832,kg +0a85f544-5eb4-33da-83e1-c902397dc29e,SESCO,II.1.1,Neuquén,AR-Q,annual,2021,gas oil combustion consumption by freight transport,0.86688,TJ,N2O,3.9,kg/TJ,3.380832,kg +c519f432-0620-3e3b-a485-29d27d241294,SESCO,II.1.1,Rio Negro,AR-R,annual,2021,gas oil combustion consumption by freight transport,9.49956,TJ,CO2,74100.0,kg/TJ,703917.3960000001,kg +69a65788-6e39-3053-9b40-21e1899353c7,SESCO,II.1.1,Rio Negro,AR-R,annual,2021,gas oil combustion consumption by freight transport,9.49956,TJ,CH4,3.9,kg/TJ,37.048284,kg +69a65788-6e39-3053-9b40-21e1899353c7,SESCO,II.1.1,Rio Negro,AR-R,annual,2021,gas oil combustion consumption by freight transport,9.49956,TJ,N2O,3.9,kg/TJ,37.048284,kg +d4c0b49e-624e-3128-b009-3fe999b9a7f7,SESCO,II.1.1,Salta,AR-A,annual,2021,gas oil combustion consumption by freight transport,1.33644,TJ,CO2,74100.0,kg/TJ,99030.20400000001,kg +ac26433e-cbbc-3ff6-95a7-3c2e79aba431,SESCO,II.1.1,Salta,AR-A,annual,2021,gas oil combustion consumption by freight transport,1.33644,TJ,CH4,3.9,kg/TJ,5.212116,kg +ac26433e-cbbc-3ff6-95a7-3c2e79aba431,SESCO,II.1.1,Salta,AR-A,annual,2021,gas oil combustion consumption by freight transport,1.33644,TJ,N2O,3.9,kg/TJ,5.212116,kg +a36341f0-2deb-3be0-be3c-127b591e8f2e,SESCO,II.1.1,San Juan,AR-J,annual,2021,gas oil combustion consumption by freight transport,0.07224,TJ,CO2,74100.0,kg/TJ,5352.9839999999995,kg +f0c602d8-00e1-34de-9792-455335f749d0,SESCO,II.1.1,San Juan,AR-J,annual,2021,gas oil combustion consumption by freight transport,0.07224,TJ,CH4,3.9,kg/TJ,0.281736,kg +f0c602d8-00e1-34de-9792-455335f749d0,SESCO,II.1.1,San Juan,AR-J,annual,2021,gas oil combustion consumption by freight transport,0.07224,TJ,N2O,3.9,kg/TJ,0.281736,kg +03885528-4701-3ffb-a2f1-8723258d00bf,SESCO,II.1.1,San Luis,AR-D,annual,2021,gas oil combustion consumption by freight transport,3.612,TJ,CO2,74100.0,kg/TJ,267649.2,kg +5ca3cb4a-8e5a-3ccf-95f1-9e7e07611e7f,SESCO,II.1.1,San Luis,AR-D,annual,2021,gas oil combustion consumption by freight transport,3.612,TJ,CH4,3.9,kg/TJ,14.0868,kg +5ca3cb4a-8e5a-3ccf-95f1-9e7e07611e7f,SESCO,II.1.1,San Luis,AR-D,annual,2021,gas oil combustion consumption by freight transport,3.612,TJ,N2O,3.9,kg/TJ,14.0868,kg +1cbb3439-ec07-3e49-ad66-48961cb7f975,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2021,gas oil combustion consumption by freight transport,2.60064,TJ,CO2,74100.0,kg/TJ,192707.424,kg +b69bcf9b-af15-32f2-84a5-4b0a0f1b4e05,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2021,gas oil combustion consumption by freight transport,2.60064,TJ,CH4,3.9,kg/TJ,10.142496,kg +b69bcf9b-af15-32f2-84a5-4b0a0f1b4e05,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2021,gas oil combustion consumption by freight transport,2.60064,TJ,N2O,3.9,kg/TJ,10.142496,kg +ba96ed6d-e178-3e71-aaec-43acd23151be,SESCO,II.1.1,Santa Fe,AR-S,annual,2021,gas oil combustion consumption by freight transport,25.42848,TJ,CO2,74100.0,kg/TJ,1884250.368,kg +41b8a768-fabe-34e2-b206-94ab4ba0ce0b,SESCO,II.1.1,Santa Fe,AR-S,annual,2021,gas oil combustion consumption by freight transport,25.42848,TJ,CH4,3.9,kg/TJ,99.171072,kg +41b8a768-fabe-34e2-b206-94ab4ba0ce0b,SESCO,II.1.1,Santa Fe,AR-S,annual,2021,gas oil combustion consumption by freight transport,25.42848,TJ,N2O,3.9,kg/TJ,99.171072,kg +a63b7ca7-32c0-3333-83bc-ca30857698a8,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2021,gas oil combustion consumption by freight transport,2.56452,TJ,CO2,74100.0,kg/TJ,190030.932,kg +bb0c6b8e-4ad9-3e10-93ed-8a5a8f89fd93,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2021,gas oil combustion consumption by freight transport,2.56452,TJ,CH4,3.9,kg/TJ,10.001628,kg +bb0c6b8e-4ad9-3e10-93ed-8a5a8f89fd93,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2021,gas oil combustion consumption by freight transport,2.56452,TJ,N2O,3.9,kg/TJ,10.001628,kg +9538ea72-cb1a-31e8-a3c1-d6e09531b470,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2021,gas oil combustion consumption by freight transport,0.07224,TJ,CO2,74100.0,kg/TJ,5352.9839999999995,kg +bac7c95d-2ce8-3ad1-87f4-8e0804123eab,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2021,gas oil combustion consumption by freight transport,0.07224,TJ,CH4,3.9,kg/TJ,0.281736,kg +bac7c95d-2ce8-3ad1-87f4-8e0804123eab,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2021,gas oil combustion consumption by freight transport,0.07224,TJ,N2O,3.9,kg/TJ,0.281736,kg +75ed60f2-2e93-3fd7-953c-b44c19f7165b,SESCO,II.1.1,Tucuman,AR-T,annual,2021,gas oil combustion consumption by freight transport,5.34576,TJ,CO2,74100.0,kg/TJ,396120.81600000005,kg +fb37fab5-91fa-3587-a816-34ff31fed34f,SESCO,II.1.1,Tucuman,AR-T,annual,2021,gas oil combustion consumption by freight transport,5.34576,TJ,CH4,3.9,kg/TJ,20.848464,kg +fb37fab5-91fa-3587-a816-34ff31fed34f,SESCO,II.1.1,Tucuman,AR-T,annual,2021,gas oil combustion consumption by freight transport,5.34576,TJ,N2O,3.9,kg/TJ,20.848464,kg +11156204-46a3-3045-908b-fc5d57bc67ea,SESCO,II.1.1,Buenos Aires,AR-B,annual,2021,gas oil combustion consumption by public passenger transport,966.5712,TJ,CO2,74100.0,kg/TJ,71622925.92,kg +c98f9055-4b11-384f-95be-3d935fc31bc8,SESCO,II.1.1,Buenos Aires,AR-B,annual,2021,gas oil combustion consumption by public passenger transport,966.5712,TJ,CH4,3.9,kg/TJ,3769.6276799999996,kg +c98f9055-4b11-384f-95be-3d935fc31bc8,SESCO,II.1.1,Buenos Aires,AR-B,annual,2021,gas oil combustion consumption by public passenger transport,966.5712,TJ,N2O,3.9,kg/TJ,3769.6276799999996,kg +cea52dde-d1c2-3836-9aa6-ae8c01ab4025,SESCO,II.1.1,Capital Federal,AR-C,annual,2021,gas oil combustion consumption by public passenger transport,577.7394,TJ,CO2,74100.0,kg/TJ,42810489.54000001,kg +420557bc-47d0-3d9c-86ac-e1882c30c651,SESCO,II.1.1,Capital Federal,AR-C,annual,2021,gas oil combustion consumption by public passenger transport,577.7394,TJ,CH4,3.9,kg/TJ,2253.18366,kg +420557bc-47d0-3d9c-86ac-e1882c30c651,SESCO,II.1.1,Capital Federal,AR-C,annual,2021,gas oil combustion consumption by public passenger transport,577.7394,TJ,N2O,3.9,kg/TJ,2253.18366,kg +231ce26e-ab5f-3097-a865-9a2889f34ebf,SESCO,II.1.1,Chaco,AR-H,annual,2021,gas oil combustion consumption by public passenger transport,49.050959999999996,TJ,CO2,74100.0,kg/TJ,3634676.136,kg +1e7bb337-4944-325d-a012-ff26fd8fdecb,SESCO,II.1.1,Chaco,AR-H,annual,2021,gas oil combustion consumption by public passenger transport,49.050959999999996,TJ,CH4,3.9,kg/TJ,191.29874399999997,kg +1e7bb337-4944-325d-a012-ff26fd8fdecb,SESCO,II.1.1,Chaco,AR-H,annual,2021,gas oil combustion consumption by public passenger transport,49.050959999999996,TJ,N2O,3.9,kg/TJ,191.29874399999997,kg +9076b835-e3db-359b-b797-9d43d096c8bb,SESCO,II.1.1,Chubut,AR-U,annual,2021,gas oil combustion consumption by public passenger transport,3.4314,TJ,CO2,74100.0,kg/TJ,254266.74,kg +ca28291c-36ba-368e-b463-c964ccd9413c,SESCO,II.1.1,Chubut,AR-U,annual,2021,gas oil combustion consumption by public passenger transport,3.4314,TJ,CH4,3.9,kg/TJ,13.38246,kg +ca28291c-36ba-368e-b463-c964ccd9413c,SESCO,II.1.1,Chubut,AR-U,annual,2021,gas oil combustion consumption by public passenger transport,3.4314,TJ,N2O,3.9,kg/TJ,13.38246,kg +e7af1dcf-ed91-3a77-a017-6ab8af74a426,SESCO,II.1.1,Corrientes,AR-W,annual,2021,gas oil combustion consumption by public passenger transport,0.18059999999999998,TJ,CO2,74100.0,kg/TJ,13382.46,kg +fc930f5e-3d0d-32fd-9b2b-4e1794e28e4b,SESCO,II.1.1,Corrientes,AR-W,annual,2021,gas oil combustion consumption by public passenger transport,0.18059999999999998,TJ,CH4,3.9,kg/TJ,0.70434,kg +fc930f5e-3d0d-32fd-9b2b-4e1794e28e4b,SESCO,II.1.1,Corrientes,AR-W,annual,2021,gas oil combustion consumption by public passenger transport,0.18059999999999998,TJ,N2O,3.9,kg/TJ,0.70434,kg +3f2461c7-c780-372b-a584-c53efdab2fd6,SESCO,II.1.1,Córdoba,AR-X,annual,2021,gas oil combustion consumption by public passenger transport,143.32416,TJ,CO2,74100.0,kg/TJ,10620320.256000001,kg +cf1b67f4-6353-3a71-bc05-0bbe01bdca74,SESCO,II.1.1,Córdoba,AR-X,annual,2021,gas oil combustion consumption by public passenger transport,143.32416,TJ,CH4,3.9,kg/TJ,558.9642240000001,kg +cf1b67f4-6353-3a71-bc05-0bbe01bdca74,SESCO,II.1.1,Córdoba,AR-X,annual,2021,gas oil combustion consumption by public passenger transport,143.32416,TJ,N2O,3.9,kg/TJ,558.9642240000001,kg +29913773-8fc0-3766-8b66-0c5969e490d3,SESCO,II.1.1,Entre Rios,AR-E,annual,2021,gas oil combustion consumption by public passenger transport,26.62044,TJ,CO2,74100.0,kg/TJ,1972574.6039999998,kg +91727537-6ce1-3153-9b8f-28b4b2301aef,SESCO,II.1.1,Entre Rios,AR-E,annual,2021,gas oil combustion consumption by public passenger transport,26.62044,TJ,CH4,3.9,kg/TJ,103.81971599999999,kg +91727537-6ce1-3153-9b8f-28b4b2301aef,SESCO,II.1.1,Entre Rios,AR-E,annual,2021,gas oil combustion consumption by public passenger transport,26.62044,TJ,N2O,3.9,kg/TJ,103.81971599999999,kg +25c0bb22-0c7d-36b9-8d14-6bb55b21688b,SESCO,II.1.1,Formosa,AR-P,annual,2021,gas oil combustion consumption by public passenger transport,0.03612,TJ,CO2,74100.0,kg/TJ,2676.4919999999997,kg +267aa4a1-dffe-3625-b49d-fa8efdcaa0a5,SESCO,II.1.1,Formosa,AR-P,annual,2021,gas oil combustion consumption by public passenger transport,0.03612,TJ,CH4,3.9,kg/TJ,0.140868,kg +267aa4a1-dffe-3625-b49d-fa8efdcaa0a5,SESCO,II.1.1,Formosa,AR-P,annual,2021,gas oil combustion consumption by public passenger transport,0.03612,TJ,N2O,3.9,kg/TJ,0.140868,kg +3ff4451d-7617-3b97-a080-eaa02a384379,SESCO,II.1.1,Jujuy,AR-Y,annual,2021,gas oil combustion consumption by public passenger transport,0.03612,TJ,CO2,74100.0,kg/TJ,2676.4919999999997,kg +6f4c9fad-dbde-38f3-a1fc-be6512e67ea9,SESCO,II.1.1,Jujuy,AR-Y,annual,2021,gas oil combustion consumption by public passenger transport,0.03612,TJ,CH4,3.9,kg/TJ,0.140868,kg +6f4c9fad-dbde-38f3-a1fc-be6512e67ea9,SESCO,II.1.1,Jujuy,AR-Y,annual,2021,gas oil combustion consumption by public passenger transport,0.03612,TJ,N2O,3.9,kg/TJ,0.140868,kg +f13b35ca-684b-3109-ab9e-a63adb8f1c7d,SESCO,II.1.1,La Pampa,AR-L,annual,2021,gas oil combustion consumption by public passenger transport,0.8307599999999999,TJ,CO2,74100.0,kg/TJ,61559.316,kg +300d52d1-a3e3-3446-bff5-704258a12062,SESCO,II.1.1,La Pampa,AR-L,annual,2021,gas oil combustion consumption by public passenger transport,0.8307599999999999,TJ,CH4,3.9,kg/TJ,3.2399639999999996,kg +300d52d1-a3e3-3446-bff5-704258a12062,SESCO,II.1.1,La Pampa,AR-L,annual,2021,gas oil combustion consumption by public passenger transport,0.8307599999999999,TJ,N2O,3.9,kg/TJ,3.2399639999999996,kg +f07fdaaa-d3a3-3e32-b82c-905a16d38e07,SESCO,II.1.1,Mendoza,AR-M,annual,2021,gas oil combustion consumption by public passenger transport,2.78124,TJ,CO2,74100.0,kg/TJ,206089.884,kg +1f987115-38a2-3436-b857-e6f1fb700dbc,SESCO,II.1.1,Mendoza,AR-M,annual,2021,gas oil combustion consumption by public passenger transport,2.78124,TJ,CH4,3.9,kg/TJ,10.846836,kg +1f987115-38a2-3436-b857-e6f1fb700dbc,SESCO,II.1.1,Mendoza,AR-M,annual,2021,gas oil combustion consumption by public passenger transport,2.78124,TJ,N2O,3.9,kg/TJ,10.846836,kg +83a040ff-cde0-351b-84ce-aeea5b3131e6,SESCO,II.1.1,Misiones,AR-N,annual,2021,gas oil combustion consumption by public passenger transport,83.76228,TJ,CO2,74100.0,kg/TJ,6206784.948,kg +20186414-5a58-3f9f-8543-79800b57e775,SESCO,II.1.1,Misiones,AR-N,annual,2021,gas oil combustion consumption by public passenger transport,83.76228,TJ,CH4,3.9,kg/TJ,326.672892,kg +20186414-5a58-3f9f-8543-79800b57e775,SESCO,II.1.1,Misiones,AR-N,annual,2021,gas oil combustion consumption by public passenger transport,83.76228,TJ,N2O,3.9,kg/TJ,326.672892,kg +79aa7daa-fad2-3168-a157-127d38dcf435,SESCO,II.1.1,Neuquén,AR-Q,annual,2021,gas oil combustion consumption by public passenger transport,2.05884,TJ,CO2,74100.0,kg/TJ,152560.044,kg +bdab5e1b-a72c-3f62-8d0b-a7df665ce8de,SESCO,II.1.1,Neuquén,AR-Q,annual,2021,gas oil combustion consumption by public passenger transport,2.05884,TJ,CH4,3.9,kg/TJ,8.029475999999999,kg +bdab5e1b-a72c-3f62-8d0b-a7df665ce8de,SESCO,II.1.1,Neuquén,AR-Q,annual,2021,gas oil combustion consumption by public passenger transport,2.05884,TJ,N2O,3.9,kg/TJ,8.029475999999999,kg +7abc533f-2fe8-3dfc-b9d1-d4289d78f562,SESCO,II.1.1,Rio Negro,AR-R,annual,2021,gas oil combustion consumption by public passenger transport,4.44276,TJ,CO2,74100.0,kg/TJ,329208.516,kg +0ba59b94-185e-3f2a-b046-423567fda56e,SESCO,II.1.1,Rio Negro,AR-R,annual,2021,gas oil combustion consumption by public passenger transport,4.44276,TJ,CH4,3.9,kg/TJ,17.326763999999997,kg +0ba59b94-185e-3f2a-b046-423567fda56e,SESCO,II.1.1,Rio Negro,AR-R,annual,2021,gas oil combustion consumption by public passenger transport,4.44276,TJ,N2O,3.9,kg/TJ,17.326763999999997,kg +3214a2de-9213-3a72-a34e-8c576b781eca,SESCO,II.1.1,Salta,AR-A,annual,2021,gas oil combustion consumption by public passenger transport,149.46456,TJ,CO2,74100.0,kg/TJ,11075323.896,kg +c39ad814-2bcf-3353-a2c4-f8e69648715c,SESCO,II.1.1,Salta,AR-A,annual,2021,gas oil combustion consumption by public passenger transport,149.46456,TJ,CH4,3.9,kg/TJ,582.911784,kg +c39ad814-2bcf-3353-a2c4-f8e69648715c,SESCO,II.1.1,Salta,AR-A,annual,2021,gas oil combustion consumption by public passenger transport,149.46456,TJ,N2O,3.9,kg/TJ,582.911784,kg +3e15c984-2e8f-3f8d-94e0-6e21824cb623,SESCO,II.1.1,San Luis,AR-D,annual,2021,gas oil combustion consumption by public passenger transport,0.36119999999999997,TJ,CO2,74100.0,kg/TJ,26764.92,kg +166bcf8f-cfca-3d06-a441-bf9b914fed2a,SESCO,II.1.1,San Luis,AR-D,annual,2021,gas oil combustion consumption by public passenger transport,0.36119999999999997,TJ,CH4,3.9,kg/TJ,1.40868,kg +166bcf8f-cfca-3d06-a441-bf9b914fed2a,SESCO,II.1.1,San Luis,AR-D,annual,2021,gas oil combustion consumption by public passenger transport,0.36119999999999997,TJ,N2O,3.9,kg/TJ,1.40868,kg +0a4f77ce-5e6c-3e44-ae37-2d8392a0fda4,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2021,gas oil combustion consumption by public passenger transport,0.03612,TJ,CO2,74100.0,kg/TJ,2676.4919999999997,kg +f44d0187-48a6-3dee-8e71-89c418ca2cbb,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2021,gas oil combustion consumption by public passenger transport,0.03612,TJ,CH4,3.9,kg/TJ,0.140868,kg +f44d0187-48a6-3dee-8e71-89c418ca2cbb,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2021,gas oil combustion consumption by public passenger transport,0.03612,TJ,N2O,3.9,kg/TJ,0.140868,kg +6012a0aa-e725-3ab7-ab2b-8a014c169ea2,SESCO,II.1.1,Santa Fe,AR-S,annual,2021,gas oil combustion consumption by public passenger transport,529.59144,TJ,CO2,74100.0,kg/TJ,39242725.704,kg +44f200e5-44d8-34c9-8bcb-a6458d7b5f84,SESCO,II.1.1,Santa Fe,AR-S,annual,2021,gas oil combustion consumption by public passenger transport,529.59144,TJ,CH4,3.9,kg/TJ,2065.406616,kg +44f200e5-44d8-34c9-8bcb-a6458d7b5f84,SESCO,II.1.1,Santa Fe,AR-S,annual,2021,gas oil combustion consumption by public passenger transport,529.59144,TJ,N2O,3.9,kg/TJ,2065.406616,kg +d42c0fbe-5b51-3d52-ad8f-0379dd78b030,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2021,gas oil combustion consumption by public passenger transport,0.7223999999999999,TJ,CO2,74100.0,kg/TJ,53529.84,kg +bd845e7a-2cf6-3947-82b8-0b31867ec591,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2021,gas oil combustion consumption by public passenger transport,0.7223999999999999,TJ,CH4,3.9,kg/TJ,2.81736,kg +bd845e7a-2cf6-3947-82b8-0b31867ec591,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2021,gas oil combustion consumption by public passenger transport,0.7223999999999999,TJ,N2O,3.9,kg/TJ,2.81736,kg +ce77fec4-b161-3bba-815b-89d29c325fa0,SESCO,II.1.1,Tucuman,AR-T,annual,2021,gas oil combustion consumption by public passenger transport,46.45032,TJ,CO2,74100.0,kg/TJ,3441968.712,kg +ea9def43-1ebf-3192-bbf1-945cdbe7d5ea,SESCO,II.1.1,Tucuman,AR-T,annual,2021,gas oil combustion consumption by public passenger transport,46.45032,TJ,CH4,3.9,kg/TJ,181.15624799999998,kg +ea9def43-1ebf-3192-bbf1-945cdbe7d5ea,SESCO,II.1.1,Tucuman,AR-T,annual,2021,gas oil combustion consumption by public passenger transport,46.45032,TJ,N2O,3.9,kg/TJ,181.15624799999998,kg +04233f7c-5534-35b6-b3fb-544d5fdef9fd,SESCO,II.1.1,Buenos Aires,AR-B,annual,2021,gas oil combustion consumption by public passenger transport,563.6526,TJ,CO2,74100.0,kg/TJ,41766657.660000004,kg +a48848df-40c1-32c4-a629-549b15ab122d,SESCO,II.1.1,Buenos Aires,AR-B,annual,2021,gas oil combustion consumption by public passenger transport,563.6526,TJ,CH4,3.9,kg/TJ,2198.24514,kg +a48848df-40c1-32c4-a629-549b15ab122d,SESCO,II.1.1,Buenos Aires,AR-B,annual,2021,gas oil combustion consumption by public passenger transport,563.6526,TJ,N2O,3.9,kg/TJ,2198.24514,kg +670031d4-4b26-30d2-baa7-f1853a4087d6,SESCO,II.1.1,Capital Federal,AR-C,annual,2021,gas oil combustion consumption by public passenger transport,325.87464,TJ,CO2,74100.0,kg/TJ,24147310.824,kg +2583b3dc-24f5-39a3-bab1-9473987c0d4d,SESCO,II.1.1,Capital Federal,AR-C,annual,2021,gas oil combustion consumption by public passenger transport,325.87464,TJ,CH4,3.9,kg/TJ,1270.911096,kg +2583b3dc-24f5-39a3-bab1-9473987c0d4d,SESCO,II.1.1,Capital Federal,AR-C,annual,2021,gas oil combustion consumption by public passenger transport,325.87464,TJ,N2O,3.9,kg/TJ,1270.911096,kg +ea6544e9-3324-3421-8e1c-8331375dfc2f,SESCO,II.1.1,Chaco,AR-H,annual,2021,gas oil combustion consumption by public passenger transport,0.28896,TJ,CO2,74100.0,kg/TJ,21411.935999999998,kg +004e9435-b770-35ff-b69a-669eb91a2ff9,SESCO,II.1.1,Chaco,AR-H,annual,2021,gas oil combustion consumption by public passenger transport,0.28896,TJ,CH4,3.9,kg/TJ,1.126944,kg +004e9435-b770-35ff-b69a-669eb91a2ff9,SESCO,II.1.1,Chaco,AR-H,annual,2021,gas oil combustion consumption by public passenger transport,0.28896,TJ,N2O,3.9,kg/TJ,1.126944,kg +0354494c-5c8c-3661-957c-252edf68e61f,SESCO,II.1.1,Corrientes,AR-W,annual,2021,gas oil combustion consumption by public passenger transport,0.25284,TJ,CO2,74100.0,kg/TJ,18735.444,kg +84fe2139-6d90-3674-99aa-dc1595dbd8cd,SESCO,II.1.1,Corrientes,AR-W,annual,2021,gas oil combustion consumption by public passenger transport,0.25284,TJ,CH4,3.9,kg/TJ,0.9860760000000001,kg +84fe2139-6d90-3674-99aa-dc1595dbd8cd,SESCO,II.1.1,Corrientes,AR-W,annual,2021,gas oil combustion consumption by public passenger transport,0.25284,TJ,N2O,3.9,kg/TJ,0.9860760000000001,kg +a53e937c-d3c9-3f1b-9015-eeaf84540e7e,SESCO,II.1.1,Córdoba,AR-X,annual,2021,gas oil combustion consumption by public passenger transport,0.97524,TJ,CO2,74100.0,kg/TJ,72265.284,kg +55880b0e-98a4-3a9f-9763-0855eaed1431,SESCO,II.1.1,Córdoba,AR-X,annual,2021,gas oil combustion consumption by public passenger transport,0.97524,TJ,CH4,3.9,kg/TJ,3.803436,kg +55880b0e-98a4-3a9f-9763-0855eaed1431,SESCO,II.1.1,Córdoba,AR-X,annual,2021,gas oil combustion consumption by public passenger transport,0.97524,TJ,N2O,3.9,kg/TJ,3.803436,kg +197cece6-b538-3786-910b-03c87e2380c1,SESCO,II.1.1,Entre Rios,AR-E,annual,2021,gas oil combustion consumption by public passenger transport,0.28896,TJ,CO2,74100.0,kg/TJ,21411.935999999998,kg +d69f8a4b-d332-390d-8aa2-c4247d0ee208,SESCO,II.1.1,Entre Rios,AR-E,annual,2021,gas oil combustion consumption by public passenger transport,0.28896,TJ,CH4,3.9,kg/TJ,1.126944,kg +d69f8a4b-d332-390d-8aa2-c4247d0ee208,SESCO,II.1.1,Entre Rios,AR-E,annual,2021,gas oil combustion consumption by public passenger transport,0.28896,TJ,N2O,3.9,kg/TJ,1.126944,kg +c2612667-eac5-3757-9219-dce0c9e1e3b5,SESCO,II.1.1,La Pampa,AR-L,annual,2021,gas oil combustion consumption by public passenger transport,0.10836,TJ,CO2,74100.0,kg/TJ,8029.476,kg +2d68e128-51fd-370c-b856-57439a5cec48,SESCO,II.1.1,La Pampa,AR-L,annual,2021,gas oil combustion consumption by public passenger transport,0.10836,TJ,CH4,3.9,kg/TJ,0.422604,kg +2d68e128-51fd-370c-b856-57439a5cec48,SESCO,II.1.1,La Pampa,AR-L,annual,2021,gas oil combustion consumption by public passenger transport,0.10836,TJ,N2O,3.9,kg/TJ,0.422604,kg +28a6405b-b0d8-38e6-98eb-1d584c0c0253,SESCO,II.1.1,Mendoza,AR-M,annual,2021,gas oil combustion consumption by public passenger transport,0.07224,TJ,CO2,74100.0,kg/TJ,5352.9839999999995,kg +5f853727-cbde-3135-b2ea-4cc67abc8ce8,SESCO,II.1.1,Mendoza,AR-M,annual,2021,gas oil combustion consumption by public passenger transport,0.07224,TJ,CH4,3.9,kg/TJ,0.281736,kg +5f853727-cbde-3135-b2ea-4cc67abc8ce8,SESCO,II.1.1,Mendoza,AR-M,annual,2021,gas oil combustion consumption by public passenger transport,0.07224,TJ,N2O,3.9,kg/TJ,0.281736,kg +e52556cf-ced2-3a14-9e83-3e0f5ac42e6a,SESCO,II.1.1,Misiones,AR-N,annual,2021,gas oil combustion consumption by public passenger transport,3.21468,TJ,CO2,74100.0,kg/TJ,238207.788,kg +10ba94dd-edb6-3e61-93ff-0b70945e8d94,SESCO,II.1.1,Misiones,AR-N,annual,2021,gas oil combustion consumption by public passenger transport,3.21468,TJ,CH4,3.9,kg/TJ,12.537252,kg +10ba94dd-edb6-3e61-93ff-0b70945e8d94,SESCO,II.1.1,Misiones,AR-N,annual,2021,gas oil combustion consumption by public passenger transport,3.21468,TJ,N2O,3.9,kg/TJ,12.537252,kg +80cbf86c-f8e2-306d-96f2-3eca6207b06f,SESCO,II.1.1,Neuquén,AR-Q,annual,2021,gas oil combustion consumption by public passenger transport,14.6286,TJ,CO2,74100.0,kg/TJ,1083979.26,kg +970cd3f4-12b1-3b50-8a99-b2ab46033cb2,SESCO,II.1.1,Neuquén,AR-Q,annual,2021,gas oil combustion consumption by public passenger transport,14.6286,TJ,CH4,3.9,kg/TJ,57.05154,kg +970cd3f4-12b1-3b50-8a99-b2ab46033cb2,SESCO,II.1.1,Neuquén,AR-Q,annual,2021,gas oil combustion consumption by public passenger transport,14.6286,TJ,N2O,3.9,kg/TJ,57.05154,kg +5b241c06-e142-3f8b-9438-937e22fa5b3c,SESCO,II.1.1,Rio Negro,AR-R,annual,2021,gas oil combustion consumption by public passenger transport,5.56248,TJ,CO2,74100.0,kg/TJ,412179.768,kg +75603481-3ce0-3882-adeb-2f27fb08bd21,SESCO,II.1.1,Rio Negro,AR-R,annual,2021,gas oil combustion consumption by public passenger transport,5.56248,TJ,CH4,3.9,kg/TJ,21.693672,kg +75603481-3ce0-3882-adeb-2f27fb08bd21,SESCO,II.1.1,Rio Negro,AR-R,annual,2021,gas oil combustion consumption by public passenger transport,5.56248,TJ,N2O,3.9,kg/TJ,21.693672,kg +212bd55f-12db-3fb7-bc78-d29ed40064a0,SESCO,II.1.1,Salta,AR-A,annual,2021,gas oil combustion consumption by public passenger transport,0.07224,TJ,CO2,74100.0,kg/TJ,5352.9839999999995,kg +befcb5bb-3354-3370-890f-fd6c6d7ef843,SESCO,II.1.1,Salta,AR-A,annual,2021,gas oil combustion consumption by public passenger transport,0.07224,TJ,CH4,3.9,kg/TJ,0.281736,kg +befcb5bb-3354-3370-890f-fd6c6d7ef843,SESCO,II.1.1,Salta,AR-A,annual,2021,gas oil combustion consumption by public passenger transport,0.07224,TJ,N2O,3.9,kg/TJ,0.281736,kg +f1c36709-d37a-3179-ace9-0637f6c05a1f,SESCO,II.1.1,San Juan,AR-J,annual,2021,gas oil combustion consumption by public passenger transport,0.03612,TJ,CO2,74100.0,kg/TJ,2676.4919999999997,kg +5e76d161-edcd-3406-a470-b0dd11894374,SESCO,II.1.1,San Juan,AR-J,annual,2021,gas oil combustion consumption by public passenger transport,0.03612,TJ,CH4,3.9,kg/TJ,0.140868,kg +5e76d161-edcd-3406-a470-b0dd11894374,SESCO,II.1.1,San Juan,AR-J,annual,2021,gas oil combustion consumption by public passenger transport,0.03612,TJ,N2O,3.9,kg/TJ,0.140868,kg +0297c9e3-32c6-359f-ba87-29ec71f526ee,SESCO,II.1.1,San Luis,AR-D,annual,2021,gas oil combustion consumption by public passenger transport,0.21672,TJ,CO2,74100.0,kg/TJ,16058.952,kg +8e62f738-8bc0-344b-98ad-5c132b233668,SESCO,II.1.1,San Luis,AR-D,annual,2021,gas oil combustion consumption by public passenger transport,0.21672,TJ,CH4,3.9,kg/TJ,0.845208,kg +8e62f738-8bc0-344b-98ad-5c132b233668,SESCO,II.1.1,San Luis,AR-D,annual,2021,gas oil combustion consumption by public passenger transport,0.21672,TJ,N2O,3.9,kg/TJ,0.845208,kg +37557973-4dcd-3be6-bb8a-6a30e5ab732c,SESCO,II.1.1,Santa Fe,AR-S,annual,2021,gas oil combustion consumption by public passenger transport,85.4238,TJ,CO2,74100.0,kg/TJ,6329903.58,kg +bfb16fac-d78f-3eea-b27e-3056e473813a,SESCO,II.1.1,Santa Fe,AR-S,annual,2021,gas oil combustion consumption by public passenger transport,85.4238,TJ,CH4,3.9,kg/TJ,333.15282,kg +bfb16fac-d78f-3eea-b27e-3056e473813a,SESCO,II.1.1,Santa Fe,AR-S,annual,2021,gas oil combustion consumption by public passenger transport,85.4238,TJ,N2O,3.9,kg/TJ,333.15282,kg +ec3cc0ae-daa0-3a13-becf-cc6727f5980f,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2021,gas oil combustion consumption by public passenger transport,0.57792,TJ,CO2,74100.0,kg/TJ,42823.871999999996,kg +04d1d92f-9980-303e-874f-7ec0822d2e5a,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2021,gas oil combustion consumption by public passenger transport,0.57792,TJ,CH4,3.9,kg/TJ,2.253888,kg +04d1d92f-9980-303e-874f-7ec0822d2e5a,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2021,gas oil combustion consumption by public passenger transport,0.57792,TJ,N2O,3.9,kg/TJ,2.253888,kg +4342d217-5966-3509-9295-612f90685c55,SESCO,II.1.1,Tucuman,AR-T,annual,2021,gas oil combustion consumption by public passenger transport,0.07224,TJ,CO2,74100.0,kg/TJ,5352.9839999999995,kg +72b62858-a0a0-30c3-a79c-b52525c6f9e7,SESCO,II.1.1,Tucuman,AR-T,annual,2021,gas oil combustion consumption by public passenger transport,0.07224,TJ,CH4,3.9,kg/TJ,0.281736,kg +72b62858-a0a0-30c3-a79c-b52525c6f9e7,SESCO,II.1.1,Tucuman,AR-T,annual,2021,gas oil combustion consumption by public passenger transport,0.07224,TJ,N2O,3.9,kg/TJ,0.281736,kg +70f75f0b-506d-3a6b-9966-fd1a9c9c49ff,SESCO,II.1.1,Catamarca,AR-K,annual,2021,gas oil combustion consumption by to the public,63.0720216,TJ,CO2,74100.0,kg/TJ,4673636.80056,kg +04c447b8-7943-3744-bac4-160297c0f8e0,SESCO,II.1.1,Catamarca,AR-K,annual,2021,gas oil combustion consumption by to the public,63.0720216,TJ,CH4,3.9,kg/TJ,245.98088424,kg +04c447b8-7943-3744-bac4-160297c0f8e0,SESCO,II.1.1,Catamarca,AR-K,annual,2021,gas oil combustion consumption by to the public,63.0720216,TJ,N2O,3.9,kg/TJ,245.98088424,kg +a21deb9c-d3ac-36b7-9bc2-4db2dec061c9,SESCO,II.1.1,Chaco,AR-H,annual,2021,gas oil combustion consumption by to the public,93.906582,TJ,CO2,74100.0,kg/TJ,6958477.7262,kg +cd414641-a03f-3e07-83c2-9bd551203196,SESCO,II.1.1,Chaco,AR-H,annual,2021,gas oil combustion consumption by to the public,93.906582,TJ,CH4,3.9,kg/TJ,366.2356698,kg +cd414641-a03f-3e07-83c2-9bd551203196,SESCO,II.1.1,Chaco,AR-H,annual,2021,gas oil combustion consumption by to the public,93.906582,TJ,N2O,3.9,kg/TJ,366.2356698,kg +0807423d-d698-3c48-8a48-210ce3eb4186,SESCO,II.1.1,Jujuy,AR-Y,annual,2021,gas oil combustion consumption by to the public,612.844428,TJ,CO2,74100.0,kg/TJ,45411772.1148,kg +67e734ab-bc76-3422-868c-5e6b011648cb,SESCO,II.1.1,Jujuy,AR-Y,annual,2021,gas oil combustion consumption by to the public,612.844428,TJ,CH4,3.9,kg/TJ,2390.0932692,kg +67e734ab-bc76-3422-868c-5e6b011648cb,SESCO,II.1.1,Jujuy,AR-Y,annual,2021,gas oil combustion consumption by to the public,612.844428,TJ,N2O,3.9,kg/TJ,2390.0932692,kg +704bbeba-20df-37f4-81da-4c4a83844fd0,SESCO,II.1.1,La Rioja,AR-F,annual,2021,gas oil combustion consumption by to the public,91.4320008,TJ,CO2,74100.0,kg/TJ,6775111.25928,kg +d7de5d32-a6e4-3224-a527-9301a266f137,SESCO,II.1.1,La Rioja,AR-F,annual,2021,gas oil combustion consumption by to the public,91.4320008,TJ,CH4,3.9,kg/TJ,356.58480312,kg +d7de5d32-a6e4-3224-a527-9301a266f137,SESCO,II.1.1,La Rioja,AR-F,annual,2021,gas oil combustion consumption by to the public,91.4320008,TJ,N2O,3.9,kg/TJ,356.58480312,kg +22338981-f343-322c-bf12-15cf766fcc3a,SESCO,II.1.1,Salta,AR-A,annual,2021,gas oil combustion consumption by to the public,1670.5611972,TJ,CO2,74100.0,kg/TJ,123788584.71251999,kg +febe586b-87eb-3236-b3a7-da69a9e6835e,SESCO,II.1.1,Salta,AR-A,annual,2021,gas oil combustion consumption by to the public,1670.5611972,TJ,CH4,3.9,kg/TJ,6515.188669079999,kg +febe586b-87eb-3236-b3a7-da69a9e6835e,SESCO,II.1.1,Salta,AR-A,annual,2021,gas oil combustion consumption by to the public,1670.5611972,TJ,N2O,3.9,kg/TJ,6515.188669079999,kg +91d1e112-a2ca-3f8c-8a71-fe9881ded79a,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2021,gas oil combustion consumption by to the public,192.33033120000002,TJ,CO2,74100.0,kg/TJ,14251677.54192,kg +ac8b8cb4-7389-3f2c-b62d-73d208e9a205,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2021,gas oil combustion consumption by to the public,192.33033120000002,TJ,CH4,3.9,kg/TJ,750.08829168,kg +ac8b8cb4-7389-3f2c-b62d-73d208e9a205,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2021,gas oil combustion consumption by to the public,192.33033120000002,TJ,N2O,3.9,kg/TJ,750.08829168,kg +36309cb7-a580-3bbd-a89b-71eeb7575887,SESCO,II.1.1,Tucuman,AR-T,annual,2021,gas oil combustion consumption by to the public,1633.6303032,TJ,CO2,74100.0,kg/TJ,121052005.46712,kg +122912cd-6e49-3a4d-9a24-d01d8c76e15e,SESCO,II.1.1,Tucuman,AR-T,annual,2021,gas oil combustion consumption by to the public,1633.6303032,TJ,CH4,3.9,kg/TJ,6371.1581824800005,kg +122912cd-6e49-3a4d-9a24-d01d8c76e15e,SESCO,II.1.1,Tucuman,AR-T,annual,2021,gas oil combustion consumption by to the public,1633.6303032,TJ,N2O,3.9,kg/TJ,6371.1581824800005,kg +b78075f6-bfbc-3465-a869-1b129f1ae810,SESCO,II.1.1,Catamarca,AR-K,annual,2021,gas oil combustion consumption by to the public,22.9820724,TJ,CO2,74100.0,kg/TJ,1702971.56484,kg +8c53ec15-cc0b-3bf3-b727-079fe53a8f8c,SESCO,II.1.1,Catamarca,AR-K,annual,2021,gas oil combustion consumption by to the public,22.9820724,TJ,CH4,3.9,kg/TJ,89.63008236,kg +8c53ec15-cc0b-3bf3-b727-079fe53a8f8c,SESCO,II.1.1,Catamarca,AR-K,annual,2021,gas oil combustion consumption by to the public,22.9820724,TJ,N2O,3.9,kg/TJ,89.63008236,kg +2c322355-8ba8-3423-9c1f-e89ca0cb078b,SESCO,II.1.1,Chaco,AR-H,annual,2021,gas oil combustion consumption by to the public,11.452568399999999,TJ,CO2,74100.0,kg/TJ,848635.31844,kg +ab7860fb-1b62-3496-a89e-9075694a8c3b,SESCO,II.1.1,Chaco,AR-H,annual,2021,gas oil combustion consumption by to the public,11.452568399999999,TJ,CH4,3.9,kg/TJ,44.66501675999999,kg +ab7860fb-1b62-3496-a89e-9075694a8c3b,SESCO,II.1.1,Chaco,AR-H,annual,2021,gas oil combustion consumption by to the public,11.452568399999999,TJ,N2O,3.9,kg/TJ,44.66501675999999,kg +b482dba7-1b32-3c31-85cf-05518dc9bf3b,SESCO,II.1.1,Jujuy,AR-Y,annual,2021,gas oil combustion consumption by to the public,172.30143,TJ,CO2,74100.0,kg/TJ,12767535.963000001,kg +879c001c-11aa-3ff4-bdbc-4cbf213ab9af,SESCO,II.1.1,Jujuy,AR-Y,annual,2021,gas oil combustion consumption by to the public,172.30143,TJ,CH4,3.9,kg/TJ,671.975577,kg +879c001c-11aa-3ff4-bdbc-4cbf213ab9af,SESCO,II.1.1,Jujuy,AR-Y,annual,2021,gas oil combustion consumption by to the public,172.30143,TJ,N2O,3.9,kg/TJ,671.975577,kg +f5cac39a-6850-3fc2-8c1b-97ad7c87f6f7,SESCO,II.1.1,La Rioja,AR-F,annual,2021,gas oil combustion consumption by to the public,140.44395120000001,TJ,CO2,74100.0,kg/TJ,10406896.783920001,kg +c9a7878a-f7f7-38d0-92b2-1525a4fa23c3,SESCO,II.1.1,La Rioja,AR-F,annual,2021,gas oil combustion consumption by to the public,140.44395120000001,TJ,CH4,3.9,kg/TJ,547.7314096800001,kg +c9a7878a-f7f7-38d0-92b2-1525a4fa23c3,SESCO,II.1.1,La Rioja,AR-F,annual,2021,gas oil combustion consumption by to the public,140.44395120000001,TJ,N2O,3.9,kg/TJ,547.7314096800001,kg +865796d1-0910-390e-89cd-d928ef195c17,SESCO,II.1.1,Salta,AR-A,annual,2021,gas oil combustion consumption by to the public,274.9208784,TJ,CO2,74100.0,kg/TJ,20371637.08944,kg +2c83092a-4cbb-324e-a861-752f42696aa7,SESCO,II.1.1,Salta,AR-A,annual,2021,gas oil combustion consumption by to the public,274.9208784,TJ,CH4,3.9,kg/TJ,1072.19142576,kg +2c83092a-4cbb-324e-a861-752f42696aa7,SESCO,II.1.1,Salta,AR-A,annual,2021,gas oil combustion consumption by to the public,274.9208784,TJ,N2O,3.9,kg/TJ,1072.19142576,kg +6466a252-e9c5-3800-ba49-f356b39f428c,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2021,gas oil combustion consumption by to the public,85.20455159999999,TJ,CO2,74100.0,kg/TJ,6313657.273559999,kg +58c4bc24-afdb-30cf-b7f6-b1257cab1e1e,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2021,gas oil combustion consumption by to the public,85.20455159999999,TJ,CH4,3.9,kg/TJ,332.29775123999997,kg +58c4bc24-afdb-30cf-b7f6-b1257cab1e1e,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2021,gas oil combustion consumption by to the public,85.20455159999999,TJ,N2O,3.9,kg/TJ,332.29775123999997,kg +ea9bd003-8d13-312a-8b0c-26a5eecf06de,SESCO,II.1.1,Tucuman,AR-T,annual,2021,gas oil combustion consumption by to the public,443.2093764,TJ,CO2,74100.0,kg/TJ,32841814.79124,kg +c5f4cabd-f8df-3bb9-b519-d227644a7128,SESCO,II.1.1,Tucuman,AR-T,annual,2021,gas oil combustion consumption by to the public,443.2093764,TJ,CH4,3.9,kg/TJ,1728.51656796,kg +c5f4cabd-f8df-3bb9-b519-d227644a7128,SESCO,II.1.1,Tucuman,AR-T,annual,2021,gas oil combustion consumption by to the public,443.2093764,TJ,N2O,3.9,kg/TJ,1728.51656796,kg +f80d0ccc-8823-3db6-9bf7-8fd1c5810a14,SESCO,I.3.1,Buenos Aires,AR-B,annual,2021,gasoline combustion consumption by petrochemical industries,3.6246259999999997,TJ,CO2,69300.0,kg/TJ,251186.58179999999,kg +bd1a986f-e13d-3d46-8580-8d574a2e5ef3,SESCO,I.3.1,Buenos Aires,AR-B,annual,2021,gasoline combustion consumption by petrochemical industries,3.6246259999999997,TJ,CH4,33.0,kg/TJ,119.612658,kg +03bcfe6e-cc91-35ea-83c7-9dbb7e720a5c,SESCO,I.3.1,Buenos Aires,AR-B,annual,2021,gasoline combustion consumption by petrochemical industries,3.6246259999999997,TJ,N2O,3.2,kg/TJ,11.598803199999999,kg +faae3a81-c50d-3edd-8401-80b451af4e17,SESCO,I.3.1,Chaco,AR-H,annual,2021,gasoline combustion consumption by petrochemical industries,14.245994,TJ,CO2,69300.0,kg/TJ,987247.3842,kg +d7d0f854-1a68-34f6-9626-faa2727e7aaa,SESCO,I.3.1,Chaco,AR-H,annual,2021,gasoline combustion consumption by petrochemical industries,14.245994,TJ,CH4,33.0,kg/TJ,470.117802,kg +53ce7571-9440-3994-87f2-d4d4c7bbf285,SESCO,I.3.1,Chaco,AR-H,annual,2021,gasoline combustion consumption by petrochemical industries,14.245994,TJ,N2O,3.2,kg/TJ,45.5871808,kg +41bd5e8e-bfc6-311f-8058-31549b7ddbd3,SESCO,II.1.1,San Luis,AR-D,annual,2021,gas oil combustion consumption by to the public,4.22604,TJ,CO2,74100.0,kg/TJ,313149.564,kg +160b1271-b2b9-3463-927c-dbd6223b0314,SESCO,II.1.1,San Luis,AR-D,annual,2021,gas oil combustion consumption by to the public,4.22604,TJ,CH4,3.9,kg/TJ,16.481556,kg +160b1271-b2b9-3463-927c-dbd6223b0314,SESCO,II.1.1,San Luis,AR-D,annual,2021,gas oil combustion consumption by to the public,4.22604,TJ,N2O,3.9,kg/TJ,16.481556,kg +64645af3-a5ba-30e3-aed8-71e96fc11b63,SESCO,I.3.1,La Pampa,AR-L,annual,2021,gasoline combustion consumption by petrochemical industries,1.1961,TJ,CO2,69300.0,kg/TJ,82889.73,kg +d28cac66-02c0-3dcd-9a00-bba5347635e3,SESCO,I.3.1,La Pampa,AR-L,annual,2021,gasoline combustion consumption by petrochemical industries,1.1961,TJ,CH4,33.0,kg/TJ,39.4713,kg +2ef4d42a-288b-3bd0-8b66-9c7196d05a92,SESCO,I.3.1,La Pampa,AR-L,annual,2021,gasoline combustion consumption by petrochemical industries,1.1961,TJ,N2O,3.2,kg/TJ,3.82752,kg +c580614e-d090-3a3a-9bf4-a7008278d344,SESCO,I.3.1,La Pampa,AR-L,annual,2021,gas oil combustion consumption by petrochemical industries,54.83016,TJ,CO2,74100.0,kg/TJ,4062914.856,kg +25b2cbf8-62f7-3180-857a-a9954ac55069,SESCO,I.3.1,La Pampa,AR-L,annual,2021,gas oil combustion consumption by petrochemical industries,54.83016,TJ,CH4,3.9,kg/TJ,213.837624,kg +25b2cbf8-62f7-3180-857a-a9954ac55069,SESCO,I.3.1,La Pampa,AR-L,annual,2021,gas oil combustion consumption by petrochemical industries,54.83016,TJ,N2O,3.9,kg/TJ,213.837624,kg +901f2b55-a726-3f5e-b92e-24b5b4aa5de2,SESCO,I.3.1,La Pampa,AR-L,annual,2021,gas oil combustion consumption by petrochemical industries,16.21788,TJ,CO2,74100.0,kg/TJ,1201744.908,kg +1b0bede0-1b2e-3b99-9e71-8c00fb45a1e8,SESCO,I.3.1,La Pampa,AR-L,annual,2021,gas oil combustion consumption by petrochemical industries,16.21788,TJ,CH4,3.9,kg/TJ,63.249732,kg +1b0bede0-1b2e-3b99-9e71-8c00fb45a1e8,SESCO,I.3.1,La Pampa,AR-L,annual,2021,gas oil combustion consumption by petrochemical industries,16.21788,TJ,N2O,3.9,kg/TJ,63.249732,kg +a658bc70-3fb2-3149-a071-ad63714f906f,SESCO,II.5.1,Buenos Aires,AR-B,annual,2021,gas oil combustion consumption by agriculture machines,385.7616,TJ,CO2,74100.0,kg/TJ,28584934.56,kg +f7c4d151-09a3-39de-8302-ed3779075148,SESCO,II.5.1,Buenos Aires,AR-B,annual,2021,gas oil combustion consumption by agriculture machines,385.7616,TJ,CH4,3.9,kg/TJ,1504.4702399999999,kg +f7c4d151-09a3-39de-8302-ed3779075148,SESCO,II.5.1,Buenos Aires,AR-B,annual,2021,gas oil combustion consumption by agriculture machines,385.7616,TJ,N2O,3.9,kg/TJ,1504.4702399999999,kg +e752a767-3513-3d15-acb3-9e4d9911fb4a,SESCO,II.5.1,Catamarca,AR-K,annual,2021,gas oil combustion consumption by agriculture machines,0.5418,TJ,CO2,74100.0,kg/TJ,40147.38,kg +9a793ac8-a035-3f6d-b1d6-840f669d6293,SESCO,II.5.1,Catamarca,AR-K,annual,2021,gas oil combustion consumption by agriculture machines,0.5418,TJ,CH4,3.9,kg/TJ,2.1130199999999997,kg +9a793ac8-a035-3f6d-b1d6-840f669d6293,SESCO,II.5.1,Catamarca,AR-K,annual,2021,gas oil combustion consumption by agriculture machines,0.5418,TJ,N2O,3.9,kg/TJ,2.1130199999999997,kg +e78a981d-1780-3589-9908-913314f4531f,SESCO,II.5.1,Corrientes,AR-W,annual,2021,gas oil combustion consumption by agriculture machines,39.5514,TJ,CO2,74100.0,kg/TJ,2930758.74,kg +080f9a03-b230-386f-8afd-58a17c5dedf8,SESCO,II.5.1,Corrientes,AR-W,annual,2021,gas oil combustion consumption by agriculture machines,39.5514,TJ,CH4,3.9,kg/TJ,154.25046,kg +080f9a03-b230-386f-8afd-58a17c5dedf8,SESCO,II.5.1,Corrientes,AR-W,annual,2021,gas oil combustion consumption by agriculture machines,39.5514,TJ,N2O,3.9,kg/TJ,154.25046,kg +a56d6793-1c37-3427-a14a-a3b474f80205,SESCO,II.5.1,Córdoba,AR-X,annual,2021,gas oil combustion consumption by agriculture machines,20.11884,TJ,CO2,74100.0,kg/TJ,1490806.044,kg +c8f4ed8d-4605-32e5-9557-cc04a95a3d26,SESCO,II.5.1,Córdoba,AR-X,annual,2021,gas oil combustion consumption by agriculture machines,20.11884,TJ,CH4,3.9,kg/TJ,78.463476,kg +c8f4ed8d-4605-32e5-9557-cc04a95a3d26,SESCO,II.5.1,Córdoba,AR-X,annual,2021,gas oil combustion consumption by agriculture machines,20.11884,TJ,N2O,3.9,kg/TJ,78.463476,kg +bd03f21d-2444-3a39-811f-a3f5d5c0544c,SESCO,II.5.1,Entre Rios,AR-E,annual,2021,gas oil combustion consumption by agriculture machines,79.57236,TJ,CO2,74100.0,kg/TJ,5896311.876,kg +04df7c75-5456-3176-a097-60fae2e67d82,SESCO,II.5.1,Entre Rios,AR-E,annual,2021,gas oil combustion consumption by agriculture machines,79.57236,TJ,CH4,3.9,kg/TJ,310.332204,kg +04df7c75-5456-3176-a097-60fae2e67d82,SESCO,II.5.1,Entre Rios,AR-E,annual,2021,gas oil combustion consumption by agriculture machines,79.57236,TJ,N2O,3.9,kg/TJ,310.332204,kg +0baa07dd-8ab6-3480-b7ef-d8e829b5d73d,SESCO,II.5.1,La Pampa,AR-L,annual,2021,gas oil combustion consumption by agriculture machines,38.68452,TJ,CO2,74100.0,kg/TJ,2866522.932,kg +9218ce53-dbe1-38d1-833b-da69235b0da2,SESCO,II.5.1,La Pampa,AR-L,annual,2021,gas oil combustion consumption by agriculture machines,38.68452,TJ,CH4,3.9,kg/TJ,150.869628,kg +9218ce53-dbe1-38d1-833b-da69235b0da2,SESCO,II.5.1,La Pampa,AR-L,annual,2021,gas oil combustion consumption by agriculture machines,38.68452,TJ,N2O,3.9,kg/TJ,150.869628,kg +15f07ed3-cd74-3811-8a29-bed1ed349658,SESCO,II.5.1,Santa Fe,AR-S,annual,2021,gas oil combustion consumption by agriculture machines,54.93852,TJ,CO2,74100.0,kg/TJ,4070944.332,kg +c55a4064-a712-3d05-ae11-1b808801c0ec,SESCO,II.5.1,Santa Fe,AR-S,annual,2021,gas oil combustion consumption by agriculture machines,54.93852,TJ,CH4,3.9,kg/TJ,214.26022799999998,kg +c55a4064-a712-3d05-ae11-1b808801c0ec,SESCO,II.5.1,Santa Fe,AR-S,annual,2021,gas oil combustion consumption by agriculture machines,54.93852,TJ,N2O,3.9,kg/TJ,214.26022799999998,kg +9306da24-089d-31a6-853f-9512da1a35f1,SESCO,II.5.1,Buenos Aires,AR-B,annual,2021,gas oil combustion consumption by agriculture machines,23.26128,TJ,CO2,74100.0,kg/TJ,1723660.848,kg +cd83972c-a48f-3105-8f27-64aeb31e2a49,SESCO,II.5.1,Buenos Aires,AR-B,annual,2021,gas oil combustion consumption by agriculture machines,23.26128,TJ,CH4,3.9,kg/TJ,90.718992,kg +cd83972c-a48f-3105-8f27-64aeb31e2a49,SESCO,II.5.1,Buenos Aires,AR-B,annual,2021,gas oil combustion consumption by agriculture machines,23.26128,TJ,N2O,3.9,kg/TJ,90.718992,kg +3d47c105-9175-3643-bcd1-e7b914f10760,SESCO,II.5.1,Entre Rios,AR-E,annual,2021,gas oil combustion consumption by agriculture machines,27.6318,TJ,CO2,74100.0,kg/TJ,2047516.38,kg +5f5006dd-ca9a-3ee0-94fc-e9861dab4d5f,SESCO,II.5.1,Entre Rios,AR-E,annual,2021,gas oil combustion consumption by agriculture machines,27.6318,TJ,CH4,3.9,kg/TJ,107.76401999999999,kg +5f5006dd-ca9a-3ee0-94fc-e9861dab4d5f,SESCO,II.5.1,Entre Rios,AR-E,annual,2021,gas oil combustion consumption by agriculture machines,27.6318,TJ,N2O,3.9,kg/TJ,107.76401999999999,kg +f94de946-d9a4-35ae-ab74-d148434c468e,SESCO,II.5.1,La Pampa,AR-L,annual,2021,gas oil combustion consumption by agriculture machines,5.2735199999999995,TJ,CO2,74100.0,kg/TJ,390767.832,kg +589a05c8-bceb-3e61-8b5c-cdbe93d71f65,SESCO,II.5.1,La Pampa,AR-L,annual,2021,gas oil combustion consumption by agriculture machines,5.2735199999999995,TJ,CH4,3.9,kg/TJ,20.566727999999998,kg +589a05c8-bceb-3e61-8b5c-cdbe93d71f65,SESCO,II.5.1,La Pampa,AR-L,annual,2021,gas oil combustion consumption by agriculture machines,5.2735199999999995,TJ,N2O,3.9,kg/TJ,20.566727999999998,kg +f07daf72-3c04-3c00-a170-68da99f652f4,SESCO,II.5.1,Santa Fe,AR-S,annual,2021,gas oil combustion consumption by agriculture machines,5.5263599999999995,TJ,CO2,74100.0,kg/TJ,409503.27599999995,kg +ca123337-dc89-3355-b3f3-ee98490f40e7,SESCO,II.5.1,Santa Fe,AR-S,annual,2021,gas oil combustion consumption by agriculture machines,5.5263599999999995,TJ,CH4,3.9,kg/TJ,21.552804,kg +ca123337-dc89-3355-b3f3-ee98490f40e7,SESCO,II.5.1,Santa Fe,AR-S,annual,2021,gas oil combustion consumption by agriculture machines,5.5263599999999995,TJ,N2O,3.9,kg/TJ,21.552804,kg +8eba7cf5-8ad4-340d-8f83-1f5b5986e026,SESCO,II.1.1,Buenos Aires,AR-B,annual,2021,gas oil combustion consumption by to the public,14785.21632,TJ,CO2,74100.0,kg/TJ,1095584529.312,kg +d709e9ff-f9cc-3472-b9fa-c2f21a451cd1,SESCO,II.1.1,Buenos Aires,AR-B,annual,2021,gas oil combustion consumption by to the public,14785.21632,TJ,CH4,3.9,kg/TJ,57662.343647999995,kg +d709e9ff-f9cc-3472-b9fa-c2f21a451cd1,SESCO,II.1.1,Buenos Aires,AR-B,annual,2021,gas oil combustion consumption by to the public,14785.21632,TJ,N2O,3.9,kg/TJ,57662.343647999995,kg +51031b5d-09d0-3e18-9b67-09996b841d2f,SESCO,II.1.1,Capital Federal,AR-C,annual,2021,gas oil combustion consumption by to the public,886.5654,TJ,CO2,74100.0,kg/TJ,65694496.13999999,kg +7560f5a8-5789-38cf-b67a-494e4260af31,SESCO,II.1.1,Capital Federal,AR-C,annual,2021,gas oil combustion consumption by to the public,886.5654,TJ,CH4,3.9,kg/TJ,3457.60506,kg +7560f5a8-5789-38cf-b67a-494e4260af31,SESCO,II.1.1,Capital Federal,AR-C,annual,2021,gas oil combustion consumption by to the public,886.5654,TJ,N2O,3.9,kg/TJ,3457.60506,kg +97cf4a6e-04c6-3fda-af3b-2fb15618430f,SESCO,II.1.1,Catamarca,AR-K,annual,2021,gas oil combustion consumption by to the public,11.48616,TJ,CO2,74100.0,kg/TJ,851124.456,kg +e8bde3ea-e5af-371b-83c8-4726cc06b64a,SESCO,II.1.1,Catamarca,AR-K,annual,2021,gas oil combustion consumption by to the public,11.48616,TJ,CH4,3.9,kg/TJ,44.796023999999996,kg +e8bde3ea-e5af-371b-83c8-4726cc06b64a,SESCO,II.1.1,Catamarca,AR-K,annual,2021,gas oil combustion consumption by to the public,11.48616,TJ,N2O,3.9,kg/TJ,44.796023999999996,kg +078844c2-c8c8-33c6-a4a6-6a3328cec3ab,SESCO,II.1.1,Chaco,AR-H,annual,2021,gas oil combustion consumption by to the public,1885.03056,TJ,CO2,74100.0,kg/TJ,139680764.496,kg +c2af367e-e472-378a-826f-4a18b3a21f72,SESCO,II.1.1,Chaco,AR-H,annual,2021,gas oil combustion consumption by to the public,1885.03056,TJ,CH4,3.9,kg/TJ,7351.619183999999,kg +c2af367e-e472-378a-826f-4a18b3a21f72,SESCO,II.1.1,Chaco,AR-H,annual,2021,gas oil combustion consumption by to the public,1885.03056,TJ,N2O,3.9,kg/TJ,7351.619183999999,kg +db123850-ac42-39ff-8041-460b1518354a,SESCO,II.1.1,Corrientes,AR-W,annual,2021,gas oil combustion consumption by to the public,1035.23532,TJ,CO2,74100.0,kg/TJ,76710937.212,kg +e224e264-04f7-3650-80ef-32d57d302fd5,SESCO,II.1.1,Corrientes,AR-W,annual,2021,gas oil combustion consumption by to the public,1035.23532,TJ,CH4,3.9,kg/TJ,4037.417748,kg +e224e264-04f7-3650-80ef-32d57d302fd5,SESCO,II.1.1,Corrientes,AR-W,annual,2021,gas oil combustion consumption by to the public,1035.23532,TJ,N2O,3.9,kg/TJ,4037.417748,kg +52441ac3-77d4-3e14-9ac5-3b23385f4f6e,SESCO,II.1.1,Córdoba,AR-X,annual,2021,gas oil combustion consumption by to the public,7767.0642,TJ,CO2,74100.0,kg/TJ,575539457.22,kg +ae92b26e-ee12-3c5a-959e-8323db194a79,SESCO,II.1.1,Córdoba,AR-X,annual,2021,gas oil combustion consumption by to the public,7767.0642,TJ,CH4,3.9,kg/TJ,30291.550379999997,kg +ae92b26e-ee12-3c5a-959e-8323db194a79,SESCO,II.1.1,Córdoba,AR-X,annual,2021,gas oil combustion consumption by to the public,7767.0642,TJ,N2O,3.9,kg/TJ,30291.550379999997,kg +84c45c23-b4f8-367c-98b9-0973b2a37fe4,SESCO,II.1.1,Entre Rios,AR-E,annual,2021,gas oil combustion consumption by to the public,1434.1084799999999,TJ,CO2,74100.0,kg/TJ,106267438.36799999,kg +8209fa43-3ede-32a0-b575-243c9ad77892,SESCO,II.1.1,Entre Rios,AR-E,annual,2021,gas oil combustion consumption by to the public,1434.1084799999999,TJ,CH4,3.9,kg/TJ,5593.023071999999,kg +8209fa43-3ede-32a0-b575-243c9ad77892,SESCO,II.1.1,Entre Rios,AR-E,annual,2021,gas oil combustion consumption by to the public,1434.1084799999999,TJ,N2O,3.9,kg/TJ,5593.023071999999,kg +8b4ac981-77db-3714-8c08-92f024276d81,SESCO,II.1.1,Formosa,AR-P,annual,2021,gas oil combustion consumption by to the public,113.56128,TJ,CO2,74100.0,kg/TJ,8414890.848,kg +45e35b45-4036-30a8-8006-32025c388fa3,SESCO,II.1.1,Formosa,AR-P,annual,2021,gas oil combustion consumption by to the public,113.56128,TJ,CH4,3.9,kg/TJ,442.888992,kg +45e35b45-4036-30a8-8006-32025c388fa3,SESCO,II.1.1,Formosa,AR-P,annual,2021,gas oil combustion consumption by to the public,113.56128,TJ,N2O,3.9,kg/TJ,442.888992,kg +bd9c1377-5f5b-30b4-9663-6e963d6cea8a,SESCO,II.1.1,Jujuy,AR-Y,annual,2021,gas oil combustion consumption by to the public,239.18663999999998,TJ,CO2,74100.0,kg/TJ,17723730.024,kg +c035dc6e-1b05-3a61-969c-48da9aa4e7b9,SESCO,II.1.1,Jujuy,AR-Y,annual,2021,gas oil combustion consumption by to the public,239.18663999999998,TJ,CH4,3.9,kg/TJ,932.8278959999999,kg +c035dc6e-1b05-3a61-969c-48da9aa4e7b9,SESCO,II.1.1,Jujuy,AR-Y,annual,2021,gas oil combustion consumption by to the public,239.18663999999998,TJ,N2O,3.9,kg/TJ,932.8278959999999,kg +31eb7c92-2f6f-3956-b3ef-4b26c3dab9b6,SESCO,II.1.1,La Pampa,AR-L,annual,2021,gas oil combustion consumption by to the public,758.77284,TJ,CO2,74100.0,kg/TJ,56225067.444,kg +bf8deb86-3022-3a09-9975-291db9d2f315,SESCO,II.1.1,La Pampa,AR-L,annual,2021,gas oil combustion consumption by to the public,758.77284,TJ,CH4,3.9,kg/TJ,2959.2140759999997,kg +bf8deb86-3022-3a09-9975-291db9d2f315,SESCO,II.1.1,La Pampa,AR-L,annual,2021,gas oil combustion consumption by to the public,758.77284,TJ,N2O,3.9,kg/TJ,2959.2140759999997,kg +91fccd59-4dc5-3dfe-a5ce-2d59154544fa,SESCO,II.1.1,La Rioja,AR-F,annual,2021,gas oil combustion consumption by to the public,146.71944,TJ,CO2,74100.0,kg/TJ,10871910.503999999,kg +380041be-ca92-3f18-bbd3-6bb32526e047,SESCO,II.1.1,La Rioja,AR-F,annual,2021,gas oil combustion consumption by to the public,146.71944,TJ,CH4,3.9,kg/TJ,572.2058159999999,kg +380041be-ca92-3f18-bbd3-6bb32526e047,SESCO,II.1.1,La Rioja,AR-F,annual,2021,gas oil combustion consumption by to the public,146.71944,TJ,N2O,3.9,kg/TJ,572.2058159999999,kg +86a91cce-9ed6-37e8-b3d6-a092b3a6a79e,SESCO,II.1.1,Mendoza,AR-M,annual,2021,gas oil combustion consumption by to the public,2265.22968,TJ,CO2,74100.0,kg/TJ,167853519.288,kg +6cc4ecb5-0360-38ad-8bf2-6e4ce70d0951,SESCO,II.1.1,Mendoza,AR-M,annual,2021,gas oil combustion consumption by to the public,2265.22968,TJ,CH4,3.9,kg/TJ,8834.395752,kg +6cc4ecb5-0360-38ad-8bf2-6e4ce70d0951,SESCO,II.1.1,Mendoza,AR-M,annual,2021,gas oil combustion consumption by to the public,2265.22968,TJ,N2O,3.9,kg/TJ,8834.395752,kg +bf688bb9-c45e-3e4a-900f-c801cebb7f20,SESCO,II.1.1,Misiones,AR-N,annual,2021,gas oil combustion consumption by to the public,1334.41728,TJ,CO2,74100.0,kg/TJ,98880320.448,kg +7900b5ec-cb34-3a0b-bf8c-e29f076c1e25,SESCO,II.1.1,Misiones,AR-N,annual,2021,gas oil combustion consumption by to the public,1334.41728,TJ,CH4,3.9,kg/TJ,5204.227392,kg +7900b5ec-cb34-3a0b-bf8c-e29f076c1e25,SESCO,II.1.1,Misiones,AR-N,annual,2021,gas oil combustion consumption by to the public,1334.41728,TJ,N2O,3.9,kg/TJ,5204.227392,kg +935725ca-68fd-32c9-8bd9-4c75e8d7f66d,SESCO,II.1.1,Neuquén,AR-Q,annual,2021,gas oil combustion consumption by to the public,796.0848,TJ,CO2,74100.0,kg/TJ,58989883.68,kg +a0e92d3b-b47d-338e-81b2-fa9d4e87e525,SESCO,II.1.1,Neuquén,AR-Q,annual,2021,gas oil combustion consumption by to the public,796.0848,TJ,CH4,3.9,kg/TJ,3104.73072,kg +a0e92d3b-b47d-338e-81b2-fa9d4e87e525,SESCO,II.1.1,Neuquén,AR-Q,annual,2021,gas oil combustion consumption by to the public,796.0848,TJ,N2O,3.9,kg/TJ,3104.73072,kg +ddc38fc5-01e0-3fc4-b4b2-6c62e7382388,SESCO,II.1.1,Rio Negro,AR-R,annual,2021,gas oil combustion consumption by to the public,295.06428,TJ,CO2,74100.0,kg/TJ,21864263.148,kg +071ea04b-889f-3287-a784-6a8b97536ecb,SESCO,II.1.1,Rio Negro,AR-R,annual,2021,gas oil combustion consumption by to the public,295.06428,TJ,CH4,3.9,kg/TJ,1150.750692,kg +071ea04b-889f-3287-a784-6a8b97536ecb,SESCO,II.1.1,Rio Negro,AR-R,annual,2021,gas oil combustion consumption by to the public,295.06428,TJ,N2O,3.9,kg/TJ,1150.750692,kg +fdc3811b-f8ef-346c-9b06-f42de440e3a9,SESCO,II.1.1,Salta,AR-A,annual,2021,gas oil combustion consumption by to the public,127.07016,TJ,CO2,74100.0,kg/TJ,9415898.856,kg +9586cdf5-1f00-3aac-ad50-e0d7aa98536e,SESCO,II.1.1,Salta,AR-A,annual,2021,gas oil combustion consumption by to the public,127.07016,TJ,CH4,3.9,kg/TJ,495.573624,kg +9586cdf5-1f00-3aac-ad50-e0d7aa98536e,SESCO,II.1.1,Salta,AR-A,annual,2021,gas oil combustion consumption by to the public,127.07016,TJ,N2O,3.9,kg/TJ,495.573624,kg +24d69cb0-852b-3e63-82b9-b92a1676cec6,SESCO,II.1.1,San Juan,AR-J,annual,2021,gas oil combustion consumption by to the public,379.76568,TJ,CO2,74100.0,kg/TJ,28140636.887999997,kg +a32eb725-9ee1-342e-abb3-40312f88f6fc,SESCO,II.1.1,San Juan,AR-J,annual,2021,gas oil combustion consumption by to the public,379.76568,TJ,CH4,3.9,kg/TJ,1481.0861519999999,kg +a32eb725-9ee1-342e-abb3-40312f88f6fc,SESCO,II.1.1,San Juan,AR-J,annual,2021,gas oil combustion consumption by to the public,379.76568,TJ,N2O,3.9,kg/TJ,1481.0861519999999,kg +b1c2441a-34aa-3e7a-bc73-6353a41ba7cb,SESCO,II.1.1,San Luis,AR-D,annual,2021,gas oil combustion consumption by to the public,423.25416,TJ,CO2,74100.0,kg/TJ,31363133.256,kg +b1d1efbc-dcb8-301e-9ed9-23a61eb72404,SESCO,II.1.1,San Luis,AR-D,annual,2021,gas oil combustion consumption by to the public,423.25416,TJ,CH4,3.9,kg/TJ,1650.691224,kg +b1d1efbc-dcb8-301e-9ed9-23a61eb72404,SESCO,II.1.1,San Luis,AR-D,annual,2021,gas oil combustion consumption by to the public,423.25416,TJ,N2O,3.9,kg/TJ,1650.691224,kg +b72d88d3-88c4-3b4a-9223-f02e587a6cd7,SESCO,II.1.1,Santa Fe,AR-S,annual,2021,gas oil combustion consumption by to the public,5807.95152,TJ,CO2,74100.0,kg/TJ,430369207.63199997,kg +419ebf1d-677d-36c7-a808-c693cd011ae3,SESCO,II.1.1,Santa Fe,AR-S,annual,2021,gas oil combustion consumption by to the public,5807.95152,TJ,CH4,3.9,kg/TJ,22651.010928,kg +419ebf1d-677d-36c7-a808-c693cd011ae3,SESCO,II.1.1,Santa Fe,AR-S,annual,2021,gas oil combustion consumption by to the public,5807.95152,TJ,N2O,3.9,kg/TJ,22651.010928,kg +7f79f83f-8f02-35ba-886c-4bf48c0f89a9,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2021,gas oil combustion consumption by to the public,273.9702,TJ,CO2,74100.0,kg/TJ,20301191.819999997,kg +288e4fac-d665-3fbb-a685-3a93b70439c0,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2021,gas oil combustion consumption by to the public,273.9702,TJ,CH4,3.9,kg/TJ,1068.4837799999998,kg +288e4fac-d665-3fbb-a685-3a93b70439c0,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2021,gas oil combustion consumption by to the public,273.9702,TJ,N2O,3.9,kg/TJ,1068.4837799999998,kg +3a8ab7b9-c107-3490-9c82-c6d1600bf1d4,SESCO,II.1.1,Tucuman,AR-T,annual,2021,gas oil combustion consumption by to the public,1126.54668,TJ,CO2,74100.0,kg/TJ,83477108.98799999,kg +05ee99f7-bddb-3e57-8a96-f069187219dd,SESCO,II.1.1,Tucuman,AR-T,annual,2021,gas oil combustion consumption by to the public,1126.54668,TJ,CH4,3.9,kg/TJ,4393.532052,kg +05ee99f7-bddb-3e57-8a96-f069187219dd,SESCO,II.1.1,Tucuman,AR-T,annual,2021,gas oil combustion consumption by to the public,1126.54668,TJ,N2O,3.9,kg/TJ,4393.532052,kg +8739cad1-b569-3742-b65a-ea7c986558db,SESCO,II.1.1,Buenos Aires,AR-B,annual,2021,gas oil combustion consumption by to the public,8957.76,TJ,CO2,74100.0,kg/TJ,663770016.0,kg +c134492d-3aca-34af-bbf3-dfd7e1cfa03b,SESCO,II.1.1,Buenos Aires,AR-B,annual,2021,gas oil combustion consumption by to the public,8957.76,TJ,CH4,3.9,kg/TJ,34935.264,kg +c134492d-3aca-34af-bbf3-dfd7e1cfa03b,SESCO,II.1.1,Buenos Aires,AR-B,annual,2021,gas oil combustion consumption by to the public,8957.76,TJ,N2O,3.9,kg/TJ,34935.264,kg +9795f23b-be17-3bb3-a0d5-a79b5bdb7bc3,SESCO,II.1.1,Capital Federal,AR-C,annual,2021,gas oil combustion consumption by to the public,1611.7105199999999,TJ,CO2,74100.0,kg/TJ,119427749.53199999,kg +bbe02c74-2128-3250-9722-14a2ce83753e,SESCO,II.1.1,Capital Federal,AR-C,annual,2021,gas oil combustion consumption by to the public,1611.7105199999999,TJ,CH4,3.9,kg/TJ,6285.671028,kg +bbe02c74-2128-3250-9722-14a2ce83753e,SESCO,II.1.1,Capital Federal,AR-C,annual,2021,gas oil combustion consumption by to the public,1611.7105199999999,TJ,N2O,3.9,kg/TJ,6285.671028,kg +59effda3-6f29-3d03-ad6b-461745219e4a,SESCO,II.1.1,Catamarca,AR-K,annual,2021,gas oil combustion consumption by to the public,38.2872,TJ,CO2,74100.0,kg/TJ,2837081.52,kg +f116ac7e-6053-3214-abea-83a06fdf268d,SESCO,II.1.1,Catamarca,AR-K,annual,2021,gas oil combustion consumption by to the public,38.2872,TJ,CH4,3.9,kg/TJ,149.32008,kg +f116ac7e-6053-3214-abea-83a06fdf268d,SESCO,II.1.1,Catamarca,AR-K,annual,2021,gas oil combustion consumption by to the public,38.2872,TJ,N2O,3.9,kg/TJ,149.32008,kg +6218fbc6-11c9-3bc1-b3ee-b36e600e8c3e,SESCO,II.1.1,Chaco,AR-H,annual,2021,gas oil combustion consumption by to the public,533.23956,TJ,CO2,74100.0,kg/TJ,39513051.396,kg +df020064-4259-367a-a80d-1d8792d6d1f1,SESCO,II.1.1,Chaco,AR-H,annual,2021,gas oil combustion consumption by to the public,533.23956,TJ,CH4,3.9,kg/TJ,2079.6342839999998,kg +df020064-4259-367a-a80d-1d8792d6d1f1,SESCO,II.1.1,Chaco,AR-H,annual,2021,gas oil combustion consumption by to the public,533.23956,TJ,N2O,3.9,kg/TJ,2079.6342839999998,kg +ddb24bf2-75ec-3b0d-82d0-652a8fdab3a6,SESCO,II.1.1,Corrientes,AR-W,annual,2021,gas oil combustion consumption by to the public,595.58268,TJ,CO2,74100.0,kg/TJ,44132676.588,kg +16b5a22f-7258-306b-acef-f5829df04dd1,SESCO,II.1.1,Corrientes,AR-W,annual,2021,gas oil combustion consumption by to the public,595.58268,TJ,CH4,3.9,kg/TJ,2322.7724519999997,kg +16b5a22f-7258-306b-acef-f5829df04dd1,SESCO,II.1.1,Corrientes,AR-W,annual,2021,gas oil combustion consumption by to the public,595.58268,TJ,N2O,3.9,kg/TJ,2322.7724519999997,kg +1be6eea6-3453-36c2-8016-3b0157648288,SESCO,II.1.1,Córdoba,AR-X,annual,2021,gas oil combustion consumption by to the public,2531.18124,TJ,CO2,74100.0,kg/TJ,187560529.884,kg +36a646ae-0214-3674-951d-ffa541f0b2dc,SESCO,II.1.1,Córdoba,AR-X,annual,2021,gas oil combustion consumption by to the public,2531.18124,TJ,CH4,3.9,kg/TJ,9871.606835999999,kg +36a646ae-0214-3674-951d-ffa541f0b2dc,SESCO,II.1.1,Córdoba,AR-X,annual,2021,gas oil combustion consumption by to the public,2531.18124,TJ,N2O,3.9,kg/TJ,9871.606835999999,kg +95d92f35-4bbe-3d1f-8ba9-4ab139c8090d,SESCO,II.1.1,Entre Rios,AR-E,annual,2021,gas oil combustion consumption by to the public,764.01024,TJ,CO2,74100.0,kg/TJ,56613158.783999994,kg +e05fedef-e2ac-3bc8-8ba8-0648d544a1e4,SESCO,II.1.1,Entre Rios,AR-E,annual,2021,gas oil combustion consumption by to the public,764.01024,TJ,CH4,3.9,kg/TJ,2979.6399359999996,kg +e05fedef-e2ac-3bc8-8ba8-0648d544a1e4,SESCO,II.1.1,Entre Rios,AR-E,annual,2021,gas oil combustion consumption by to the public,764.01024,TJ,N2O,3.9,kg/TJ,2979.6399359999996,kg +ed45f697-5883-3b1c-beac-26beb2788a4a,SESCO,II.1.1,Formosa,AR-P,annual,2021,gas oil combustion consumption by to the public,134.04131999999998,TJ,CO2,74100.0,kg/TJ,9932461.811999999,kg +861d7471-5598-3041-8630-cc66597afdfc,SESCO,II.1.1,Formosa,AR-P,annual,2021,gas oil combustion consumption by to the public,134.04131999999998,TJ,CH4,3.9,kg/TJ,522.7611479999999,kg +861d7471-5598-3041-8630-cc66597afdfc,SESCO,II.1.1,Formosa,AR-P,annual,2021,gas oil combustion consumption by to the public,134.04131999999998,TJ,N2O,3.9,kg/TJ,522.7611479999999,kg +fd0b3fa8-c7b8-38e7-a9e6-98ad40b7a368,SESCO,II.1.1,Jujuy,AR-Y,annual,2021,gas oil combustion consumption by to the public,141.44592,TJ,CO2,74100.0,kg/TJ,10481142.672,kg +d5aa14d2-fbce-3663-a524-de5715fae2da,SESCO,II.1.1,Jujuy,AR-Y,annual,2021,gas oil combustion consumption by to the public,141.44592,TJ,CH4,3.9,kg/TJ,551.639088,kg +d5aa14d2-fbce-3663-a524-de5715fae2da,SESCO,II.1.1,Jujuy,AR-Y,annual,2021,gas oil combustion consumption by to the public,141.44592,TJ,N2O,3.9,kg/TJ,551.639088,kg +0b2d1807-a7d9-3bb2-a975-18eb298468d8,SESCO,II.1.1,La Pampa,AR-L,annual,2021,gas oil combustion consumption by to the public,255.98244,TJ,CO2,74100.0,kg/TJ,18968298.804,kg +a71a065b-9f9e-377a-b17e-bdbc566cde91,SESCO,II.1.1,La Pampa,AR-L,annual,2021,gas oil combustion consumption by to the public,255.98244,TJ,CH4,3.9,kg/TJ,998.331516,kg +a71a065b-9f9e-377a-b17e-bdbc566cde91,SESCO,II.1.1,La Pampa,AR-L,annual,2021,gas oil combustion consumption by to the public,255.98244,TJ,N2O,3.9,kg/TJ,998.331516,kg +fadc1ab7-28b6-3ffd-b0e0-ce123ab4114c,SESCO,II.1.1,La Rioja,AR-F,annual,2021,gas oil combustion consumption by to the public,164.41824,TJ,CO2,74100.0,kg/TJ,12183391.583999999,kg +a7c6f220-0551-3bff-b886-a35ab0fbaa22,SESCO,II.1.1,La Rioja,AR-F,annual,2021,gas oil combustion consumption by to the public,164.41824,TJ,CH4,3.9,kg/TJ,641.231136,kg +a7c6f220-0551-3bff-b886-a35ab0fbaa22,SESCO,II.1.1,La Rioja,AR-F,annual,2021,gas oil combustion consumption by to the public,164.41824,TJ,N2O,3.9,kg/TJ,641.231136,kg +82db241f-fd78-386d-b0ee-7ccfb1aeac26,SESCO,II.1.1,Mendoza,AR-M,annual,2021,gas oil combustion consumption by to the public,1281.8988,TJ,CO2,74100.0,kg/TJ,94988701.08,kg +d643381b-b3d6-3b6c-9e34-e801efa87d1d,SESCO,II.1.1,Mendoza,AR-M,annual,2021,gas oil combustion consumption by to the public,1281.8988,TJ,CH4,3.9,kg/TJ,4999.40532,kg +d643381b-b3d6-3b6c-9e34-e801efa87d1d,SESCO,II.1.1,Mendoza,AR-M,annual,2021,gas oil combustion consumption by to the public,1281.8988,TJ,N2O,3.9,kg/TJ,4999.40532,kg +ab45f938-90d8-3f8b-ba73-fe46190133b7,SESCO,II.1.1,Misiones,AR-N,annual,2021,gas oil combustion consumption by to the public,534.14256,TJ,CO2,74100.0,kg/TJ,39579963.696,kg +73dd8b7f-7266-3c35-bc64-e35ba63054e9,SESCO,II.1.1,Misiones,AR-N,annual,2021,gas oil combustion consumption by to the public,534.14256,TJ,CH4,3.9,kg/TJ,2083.155984,kg +73dd8b7f-7266-3c35-bc64-e35ba63054e9,SESCO,II.1.1,Misiones,AR-N,annual,2021,gas oil combustion consumption by to the public,534.14256,TJ,N2O,3.9,kg/TJ,2083.155984,kg +b62533ad-3c25-3ee4-9b8a-c1f69ef7365f,SESCO,II.1.1,Neuquén,AR-Q,annual,2021,gas oil combustion consumption by to the public,984.27,TJ,CO2,74100.0,kg/TJ,72934407.0,kg +79c4b5ff-2a9f-3776-8512-04917fcbf798,SESCO,II.1.1,Neuquén,AR-Q,annual,2021,gas oil combustion consumption by to the public,984.27,TJ,CH4,3.9,kg/TJ,3838.653,kg +79c4b5ff-2a9f-3776-8512-04917fcbf798,SESCO,II.1.1,Neuquén,AR-Q,annual,2021,gas oil combustion consumption by to the public,984.27,TJ,N2O,3.9,kg/TJ,3838.653,kg +03ffe448-c6f7-3fb1-a3b2-692a55fdd96f,SESCO,II.1.1,Rio Negro,AR-R,annual,2021,gas oil combustion consumption by to the public,271.83912,TJ,CO2,74100.0,kg/TJ,20143278.792,kg +8615e474-b28d-3b78-81c5-fe9dd79d6219,SESCO,II.1.1,Rio Negro,AR-R,annual,2021,gas oil combustion consumption by to the public,271.83912,TJ,CH4,3.9,kg/TJ,1060.172568,kg +8615e474-b28d-3b78-81c5-fe9dd79d6219,SESCO,II.1.1,Rio Negro,AR-R,annual,2021,gas oil combustion consumption by to the public,271.83912,TJ,N2O,3.9,kg/TJ,1060.172568,kg +2f2d6dd9-7ed1-3c11-9e40-6ad83057ad6c,SESCO,II.1.1,Salta,AR-A,annual,2021,gas oil combustion consumption by to the public,227.1948,TJ,CO2,74100.0,kg/TJ,16835134.68,kg +2d69db5b-8b7e-365c-b5ee-6cecb269373a,SESCO,II.1.1,Salta,AR-A,annual,2021,gas oil combustion consumption by to the public,227.1948,TJ,CH4,3.9,kg/TJ,886.05972,kg +2d69db5b-8b7e-365c-b5ee-6cecb269373a,SESCO,II.1.1,Salta,AR-A,annual,2021,gas oil combustion consumption by to the public,227.1948,TJ,N2O,3.9,kg/TJ,886.05972,kg +87892a9f-9e88-3e6f-832b-b2f14022ab13,SESCO,II.1.1,San Juan,AR-J,annual,2021,gas oil combustion consumption by to the public,169.33056,TJ,CO2,74100.0,kg/TJ,12547394.496,kg +ec974991-90ac-38de-af8e-e38eefe75f0d,SESCO,II.1.1,San Juan,AR-J,annual,2021,gas oil combustion consumption by to the public,169.33056,TJ,CH4,3.9,kg/TJ,660.389184,kg +ec974991-90ac-38de-af8e-e38eefe75f0d,SESCO,II.1.1,San Juan,AR-J,annual,2021,gas oil combustion consumption by to the public,169.33056,TJ,N2O,3.9,kg/TJ,660.389184,kg +b359f579-696c-37d4-b2b5-3739590fb6e6,SESCO,II.1.1,San Luis,AR-D,annual,2021,gas oil combustion consumption by to the public,179.84148,TJ,CO2,74100.0,kg/TJ,13326253.668,kg +7482bff7-7ef3-354b-8308-23ef0dcf677f,SESCO,II.1.1,San Luis,AR-D,annual,2021,gas oil combustion consumption by to the public,179.84148,TJ,CH4,3.9,kg/TJ,701.381772,kg +7482bff7-7ef3-354b-8308-23ef0dcf677f,SESCO,II.1.1,San Luis,AR-D,annual,2021,gas oil combustion consumption by to the public,179.84148,TJ,N2O,3.9,kg/TJ,701.381772,kg +783718f6-8572-30c7-82a5-87617a4e6e1a,SESCO,II.1.1,Santa Fe,AR-S,annual,2021,gas oil combustion consumption by to the public,2222.53584,TJ,CO2,74100.0,kg/TJ,164689905.744,kg +bb6f80fa-1a46-3bdd-b26b-20ee128e814c,SESCO,II.1.1,Santa Fe,AR-S,annual,2021,gas oil combustion consumption by to the public,2222.53584,TJ,CH4,3.9,kg/TJ,8667.889776,kg +bb6f80fa-1a46-3bdd-b26b-20ee128e814c,SESCO,II.1.1,Santa Fe,AR-S,annual,2021,gas oil combustion consumption by to the public,2222.53584,TJ,N2O,3.9,kg/TJ,8667.889776,kg +81bc126e-8a86-32c4-a552-c0c6c876181c,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2021,gas oil combustion consumption by to the public,263.27868,TJ,CO2,74100.0,kg/TJ,19508950.188,kg +f4fc1057-d0d0-342e-aeac-8f0d466b0671,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2021,gas oil combustion consumption by to the public,263.27868,TJ,CH4,3.9,kg/TJ,1026.786852,kg +f4fc1057-d0d0-342e-aeac-8f0d466b0671,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2021,gas oil combustion consumption by to the public,263.27868,TJ,N2O,3.9,kg/TJ,1026.786852,kg +fb80bdc3-21be-39cd-8a15-9c3a659a2c8e,SESCO,II.1.1,Tucuman,AR-T,annual,2021,gas oil combustion consumption by to the public,527.27976,TJ,CO2,74100.0,kg/TJ,39071430.216,kg +978e5185-95c9-37ac-8a6b-5c978d933263,SESCO,II.1.1,Tucuman,AR-T,annual,2021,gas oil combustion consumption by to the public,527.27976,TJ,CH4,3.9,kg/TJ,2056.391064,kg +978e5185-95c9-37ac-8a6b-5c978d933263,SESCO,II.1.1,Tucuman,AR-T,annual,2021,gas oil combustion consumption by to the public,527.27976,TJ,N2O,3.9,kg/TJ,2056.391064,kg +58c7eb34-01e8-3406-b87f-69472e197da9,SESCO,II.1.1,Buenos Aires,AR-B,annual,2021,jet kerosene combustion consumption by to the public,0.157265,TJ,CO2,71500.0,kg/TJ,11244.447499999998,kg +0e9b496b-171a-3076-95ef-40b0c4632a69,SESCO,II.1.1,Buenos Aires,AR-B,annual,2021,jet kerosene combustion consumption by to the public,0.157265,TJ,CH4,0.5,kg/TJ,0.0786325,kg +a166714a-d954-3d9e-87f2-6ca9ac8a9f35,SESCO,II.1.1,Buenos Aires,AR-B,annual,2021,jet kerosene combustion consumption by to the public,0.157265,TJ,N2O,2.0,kg/TJ,0.31453,kg +10622715-1ca7-36d7-95e7-907fb0e284f2,SESCO,II.1.1,Entre Rios,AR-E,annual,2021,jet kerosene combustion consumption by to the public,2.5791459999999997,TJ,CO2,71500.0,kg/TJ,184408.93899999998,kg +68b09de0-18d1-3dc9-9f0a-bdf2c07c40ef,SESCO,II.1.1,Entre Rios,AR-E,annual,2021,jet kerosene combustion consumption by to the public,2.5791459999999997,TJ,CH4,0.5,kg/TJ,1.2895729999999999,kg +1b662cf7-9953-3ec6-beff-b089007b872f,SESCO,II.1.1,Entre Rios,AR-E,annual,2021,jet kerosene combustion consumption by to the public,2.5791459999999997,TJ,N2O,2.0,kg/TJ,5.158291999999999,kg +b5b98223-ed65-3e90-9cb8-182d23d63904,SESCO,II.1.1,Santa Fe,AR-S,annual,2021,jet kerosene combustion consumption by to the public,0.31453,TJ,CO2,71500.0,kg/TJ,22488.894999999997,kg +4f70fa38-25bc-3bde-adb8-109bedb763c0,SESCO,II.1.1,Santa Fe,AR-S,annual,2021,jet kerosene combustion consumption by to the public,0.31453,TJ,CH4,0.5,kg/TJ,0.157265,kg +97827aa4-e8f4-3be2-bf2a-fca668b5efb9,SESCO,II.1.1,Santa Fe,AR-S,annual,2021,jet kerosene combustion consumption by to the public,0.31453,TJ,N2O,2.0,kg/TJ,0.62906,kg +f27eae09-84b5-3405-8a01-44a490738c84,SESCO,I.3.1,Buenos Aires,AR-B,annual,2021,gasoline combustion consumption by petrochemical industries,108.04769999999999,TJ,CO2,69300.0,kg/TJ,7487705.609999999,kg +4a3cfb30-7456-3a13-be48-9b741e2f20ee,SESCO,I.3.1,Buenos Aires,AR-B,annual,2021,gasoline combustion consumption by petrochemical industries,108.04769999999999,TJ,CH4,33.0,kg/TJ,3565.5741,kg +decb8f54-c9f8-3c6c-baf6-731b593479f7,SESCO,I.3.1,Buenos Aires,AR-B,annual,2021,gasoline combustion consumption by petrochemical industries,108.04769999999999,TJ,N2O,3.2,kg/TJ,345.75264,kg +7da776ef-38de-358c-9f54-4acd6cc09dbf,SESCO,I.3.1,Capital Federal,AR-C,annual,2021,gasoline combustion consumption by petrochemical industries,89.8847,TJ,CO2,69300.0,kg/TJ,6229009.71,kg +a5104861-9cd6-3aa0-94d7-26236578ac5e,SESCO,I.3.1,Capital Federal,AR-C,annual,2021,gasoline combustion consumption by petrochemical industries,89.8847,TJ,CH4,33.0,kg/TJ,2966.1951,kg +3987c24b-1da8-3cc7-9a70-8a51bc5bcb05,SESCO,I.3.1,Capital Federal,AR-C,annual,2021,gasoline combustion consumption by petrochemical industries,89.8847,TJ,N2O,3.2,kg/TJ,287.63104,kg +42858185-52b5-3b2c-b181-7aa08f9cae32,SESCO,I.3.1,Chaco,AR-H,annual,2021,gasoline combustion consumption by petrochemical industries,26.2699,TJ,CO2,69300.0,kg/TJ,1820504.07,kg +76e9e8f7-f75f-30b6-88ba-eec86652a270,SESCO,I.3.1,Chaco,AR-H,annual,2021,gasoline combustion consumption by petrochemical industries,26.2699,TJ,CH4,33.0,kg/TJ,866.9067,kg +1caf5b6b-c861-3c5c-9558-b1047f40b2de,SESCO,I.3.1,Chaco,AR-H,annual,2021,gasoline combustion consumption by petrochemical industries,26.2699,TJ,N2O,3.2,kg/TJ,84.06368,kg +19dee013-a1fc-34fa-a2e5-95f6b33a2460,SESCO,I.3.1,Córdoba,AR-X,annual,2021,gasoline combustion consumption by petrochemical industries,363.3043,TJ,CO2,69300.0,kg/TJ,25176987.990000002,kg +67a3f21a-5159-3ac4-ad4c-43170a48f612,SESCO,I.3.1,Córdoba,AR-X,annual,2021,gasoline combustion consumption by petrochemical industries,363.3043,TJ,CH4,33.0,kg/TJ,11989.0419,kg +1c2b9342-6a52-3725-b520-cbc4370a56d9,SESCO,I.3.1,Córdoba,AR-X,annual,2021,gasoline combustion consumption by petrochemical industries,363.3043,TJ,N2O,3.2,kg/TJ,1162.57376,kg +854668f6-c056-31fc-bfd4-11c70bee4d88,SESCO,I.3.1,Entre Rios,AR-E,annual,2021,gasoline combustion consumption by petrochemical industries,33.225,TJ,CO2,69300.0,kg/TJ,2302492.5,kg +2a7a5b21-80c2-36c9-b99f-646539607b56,SESCO,I.3.1,Entre Rios,AR-E,annual,2021,gasoline combustion consumption by petrochemical industries,33.225,TJ,CH4,33.0,kg/TJ,1096.425,kg +e41b8eba-bedc-3ac6-9397-b13e84f15d61,SESCO,I.3.1,Entre Rios,AR-E,annual,2021,gasoline combustion consumption by petrochemical industries,33.225,TJ,N2O,3.2,kg/TJ,106.32000000000001,kg +02d4aceb-a78b-3f12-b746-134d84e86220,SESCO,I.3.1,Misiones,AR-N,annual,2021,gasoline combustion consumption by petrochemical industries,258.0475,TJ,CO2,69300.0,kg/TJ,17882691.75,kg +a4ebb759-5ddc-3a34-84a2-25fd0316b3df,SESCO,I.3.1,Misiones,AR-N,annual,2021,gasoline combustion consumption by petrochemical industries,258.0475,TJ,CH4,33.0,kg/TJ,8515.567500000001,kg +ecf40350-2f85-33a7-90a8-53d9343fcd7d,SESCO,I.3.1,Misiones,AR-N,annual,2021,gasoline combustion consumption by petrochemical industries,258.0475,TJ,N2O,3.2,kg/TJ,825.7520000000001,kg +58b892a9-9bb2-3ccc-b5db-6e50b9229a12,SESCO,I.3.1,Neuquén,AR-Q,annual,2021,gasoline combustion consumption by petrochemical industries,37.3449,TJ,CO2,69300.0,kg/TJ,2588001.5700000003,kg +50179a8f-f627-3fa0-9d17-5207d7c2f1a0,SESCO,I.3.1,Neuquén,AR-Q,annual,2021,gasoline combustion consumption by petrochemical industries,37.3449,TJ,CH4,33.0,kg/TJ,1232.3817000000001,kg +b8e65a12-7007-33d3-989a-a28b15bdba60,SESCO,I.3.1,Neuquén,AR-Q,annual,2021,gasoline combustion consumption by petrochemical industries,37.3449,TJ,N2O,3.2,kg/TJ,119.50368000000002,kg +f5ba1eee-0a13-348a-ac4b-f6ba78f4acc3,SESCO,I.3.1,San Juan,AR-J,annual,2021,gasoline combustion consumption by petrochemical industries,3.544,TJ,CO2,69300.0,kg/TJ,245599.2,kg +83b822ac-5328-3a7d-ab69-2b5f3a649e83,SESCO,I.3.1,San Juan,AR-J,annual,2021,gasoline combustion consumption by petrochemical industries,3.544,TJ,CH4,33.0,kg/TJ,116.952,kg +94dde6a9-9a99-3391-8e99-2304086c055f,SESCO,I.3.1,San Juan,AR-J,annual,2021,gasoline combustion consumption by petrochemical industries,3.544,TJ,N2O,3.2,kg/TJ,11.340800000000002,kg +1ac32165-5a94-3125-b58a-e74b07ffa93d,SESCO,I.3.1,Santa Fe,AR-S,annual,2021,gasoline combustion consumption by petrochemical industries,139.0577,TJ,CO2,69300.0,kg/TJ,9636698.610000001,kg +598254cd-3bd1-3be1-8aa4-8e38e2c6e414,SESCO,I.3.1,Santa Fe,AR-S,annual,2021,gasoline combustion consumption by petrochemical industries,139.0577,TJ,CH4,33.0,kg/TJ,4588.904100000001,kg +4ab4b48a-06dd-39cb-9d4b-09a81c065c9a,SESCO,I.3.1,Santa Fe,AR-S,annual,2021,gasoline combustion consumption by petrochemical industries,139.0577,TJ,N2O,3.2,kg/TJ,444.98464000000007,kg +ae01f25c-7c86-3367-bd36-31c4b4261a30,SESCO,I.3.1,Santiago del Estero,AR-G,annual,2021,gasoline combustion consumption by petrochemical industries,1.1961,TJ,CO2,69300.0,kg/TJ,82889.73,kg +56e202c7-3c7a-3959-9077-3635fb178b98,SESCO,I.3.1,Santiago del Estero,AR-G,annual,2021,gasoline combustion consumption by petrochemical industries,1.1961,TJ,CH4,33.0,kg/TJ,39.4713,kg +325bf8dd-fed2-340f-8f59-9eecc5734efb,SESCO,I.3.1,Santiago del Estero,AR-G,annual,2021,gasoline combustion consumption by petrochemical industries,1.1961,TJ,N2O,3.2,kg/TJ,3.82752,kg +46d1cc5e-d64e-3b9b-bc86-d4fcbd1d125c,SESCO,I.3.1,Buenos Aires,AR-B,annual,2021,gas oil combustion consumption by petrochemical industries,352.7118,TJ,CO2,74100.0,kg/TJ,26135944.38,kg +2eeba56a-8f5e-3f9c-8977-1ac47d8764c7,SESCO,I.3.1,Buenos Aires,AR-B,annual,2021,gas oil combustion consumption by petrochemical industries,352.7118,TJ,CH4,3.9,kg/TJ,1375.57602,kg +2eeba56a-8f5e-3f9c-8977-1ac47d8764c7,SESCO,I.3.1,Buenos Aires,AR-B,annual,2021,gas oil combustion consumption by petrochemical industries,352.7118,TJ,N2O,3.9,kg/TJ,1375.57602,kg +20ebbf8b-77bd-3631-b318-7df7579aea9f,SESCO,I.3.1,Capital Federal,AR-C,annual,2021,gas oil combustion consumption by petrochemical industries,37.7454,TJ,CO2,74100.0,kg/TJ,2796934.1399999997,kg +41bda493-171f-32e3-8fd1-7a6b8496bfdf,SESCO,I.3.1,Capital Federal,AR-C,annual,2021,gas oil combustion consumption by petrochemical industries,37.7454,TJ,CH4,3.9,kg/TJ,147.20705999999998,kg +41bda493-171f-32e3-8fd1-7a6b8496bfdf,SESCO,I.3.1,Capital Federal,AR-C,annual,2021,gas oil combustion consumption by petrochemical industries,37.7454,TJ,N2O,3.9,kg/TJ,147.20705999999998,kg +698158ae-c320-3dda-a3d0-93a0f004795f,SESCO,I.3.1,Córdoba,AR-X,annual,2021,gas oil combustion consumption by petrochemical industries,65.48555999999999,TJ,CO2,74100.0,kg/TJ,4852479.995999999,kg +e3c8b2c4-607a-3a6a-850c-e8e8f671626e,SESCO,I.3.1,Córdoba,AR-X,annual,2021,gas oil combustion consumption by petrochemical industries,65.48555999999999,TJ,CH4,3.9,kg/TJ,255.39368399999995,kg +e3c8b2c4-607a-3a6a-850c-e8e8f671626e,SESCO,I.3.1,Córdoba,AR-X,annual,2021,gas oil combustion consumption by petrochemical industries,65.48555999999999,TJ,N2O,3.9,kg/TJ,255.39368399999995,kg +b63d0505-edc8-34de-8441-ad7e34084428,SESCO,I.3.1,Entre Rios,AR-E,annual,2021,gas oil combustion consumption by petrochemical industries,13.111559999999999,TJ,CO2,74100.0,kg/TJ,971566.5959999999,kg +64ac80c2-8107-38a5-889f-f1e08e0ede20,SESCO,I.3.1,Entre Rios,AR-E,annual,2021,gas oil combustion consumption by petrochemical industries,13.111559999999999,TJ,CH4,3.9,kg/TJ,51.13508399999999,kg +64ac80c2-8107-38a5-889f-f1e08e0ede20,SESCO,I.3.1,Entre Rios,AR-E,annual,2021,gas oil combustion consumption by petrochemical industries,13.111559999999999,TJ,N2O,3.9,kg/TJ,51.13508399999999,kg +51b0858a-633a-38b1-8da0-b3cdbf8906c5,SESCO,I.3.1,Mendoza,AR-M,annual,2021,gas oil combustion consumption by petrochemical industries,22.35828,TJ,CO2,74100.0,kg/TJ,1656748.548,kg +ea8c455a-0d62-38ef-9d9f-9d4578e43387,SESCO,I.3.1,Mendoza,AR-M,annual,2021,gas oil combustion consumption by petrochemical industries,22.35828,TJ,CH4,3.9,kg/TJ,87.197292,kg +ea8c455a-0d62-38ef-9d9f-9d4578e43387,SESCO,I.3.1,Mendoza,AR-M,annual,2021,gas oil combustion consumption by petrochemical industries,22.35828,TJ,N2O,3.9,kg/TJ,87.197292,kg +66e79f08-f865-3204-bfaa-e63491bc86fe,SESCO,I.3.1,Misiones,AR-N,annual,2021,gas oil combustion consumption by petrochemical industries,24.489359999999998,TJ,CO2,74100.0,kg/TJ,1814661.576,kg +b9560adb-2a8a-378c-8402-766bb464d6b7,SESCO,I.3.1,Misiones,AR-N,annual,2021,gas oil combustion consumption by petrochemical industries,24.489359999999998,TJ,CH4,3.9,kg/TJ,95.50850399999999,kg +b9560adb-2a8a-378c-8402-766bb464d6b7,SESCO,I.3.1,Misiones,AR-N,annual,2021,gas oil combustion consumption by petrochemical industries,24.489359999999998,TJ,N2O,3.9,kg/TJ,95.50850399999999,kg +e962493d-1736-36a4-a73b-ba09f8955362,SESCO,I.3.1,Neuquén,AR-Q,annual,2021,gas oil combustion consumption by petrochemical industries,50.09844,TJ,CO2,74100.0,kg/TJ,3712294.4039999996,kg +58b99cb3-4c09-3e23-86c3-6e6b3b4a06b9,SESCO,I.3.1,Neuquén,AR-Q,annual,2021,gas oil combustion consumption by petrochemical industries,50.09844,TJ,CH4,3.9,kg/TJ,195.38391599999997,kg +58b99cb3-4c09-3e23-86c3-6e6b3b4a06b9,SESCO,I.3.1,Neuquén,AR-Q,annual,2021,gas oil combustion consumption by petrochemical industries,50.09844,TJ,N2O,3.9,kg/TJ,195.38391599999997,kg +d80d86f4-46bf-3d88-a993-56d740fc07ba,SESCO,I.3.1,Salta,AR-A,annual,2021,gas oil combustion consumption by petrochemical industries,92.75616,TJ,CO2,74100.0,kg/TJ,6873231.455999999,kg +83c0f470-7b5d-3f82-b642-0eebd7b38648,SESCO,I.3.1,Salta,AR-A,annual,2021,gas oil combustion consumption by petrochemical industries,92.75616,TJ,CH4,3.9,kg/TJ,361.74902399999996,kg +83c0f470-7b5d-3f82-b642-0eebd7b38648,SESCO,I.3.1,Salta,AR-A,annual,2021,gas oil combustion consumption by petrochemical industries,92.75616,TJ,N2O,3.9,kg/TJ,361.74902399999996,kg +e63b8a24-dbd7-324f-84bc-5d047facdbfc,SESCO,I.3.1,San Juan,AR-J,annual,2021,gas oil combustion consumption by petrochemical industries,48.47304,TJ,CO2,74100.0,kg/TJ,3591852.264,kg +c98fff47-fcb7-327e-b504-a7c156538eea,SESCO,I.3.1,San Juan,AR-J,annual,2021,gas oil combustion consumption by petrochemical industries,48.47304,TJ,CH4,3.9,kg/TJ,189.04485599999998,kg +c98fff47-fcb7-327e-b504-a7c156538eea,SESCO,I.3.1,San Juan,AR-J,annual,2021,gas oil combustion consumption by petrochemical industries,48.47304,TJ,N2O,3.9,kg/TJ,189.04485599999998,kg +411f8615-5b1c-35fb-aec9-3117f0484a14,SESCO,I.3.1,Santa Fe,AR-S,annual,2021,gas oil combustion consumption by petrochemical industries,113.34456,TJ,CO2,74100.0,kg/TJ,8398831.896,kg +4bf4953e-8c21-3aa9-99ed-50f58867228c,SESCO,I.3.1,Santa Fe,AR-S,annual,2021,gas oil combustion consumption by petrochemical industries,113.34456,TJ,CH4,3.9,kg/TJ,442.043784,kg +4bf4953e-8c21-3aa9-99ed-50f58867228c,SESCO,I.3.1,Santa Fe,AR-S,annual,2021,gas oil combustion consumption by petrochemical industries,113.34456,TJ,N2O,3.9,kg/TJ,442.043784,kg +0b055e61-88c1-38a4-a4d9-81da3d59e77c,SESCO,I.3.1,Tucuman,AR-T,annual,2021,gas oil combustion consumption by petrochemical industries,122.41068,TJ,CO2,74100.0,kg/TJ,9070631.388,kg +0472f925-20de-335b-872e-d46a18b81055,SESCO,I.3.1,Tucuman,AR-T,annual,2021,gas oil combustion consumption by petrochemical industries,122.41068,TJ,CH4,3.9,kg/TJ,477.401652,kg +0472f925-20de-335b-872e-d46a18b81055,SESCO,I.3.1,Tucuman,AR-T,annual,2021,gas oil combustion consumption by petrochemical industries,122.41068,TJ,N2O,3.9,kg/TJ,477.401652,kg +dee0a686-8a98-39bc-9168-56276f423022,SESCO,I.3.1,Buenos Aires,AR-B,annual,2021,gas oil combustion consumption by petrochemical industries,65.30496,TJ,CO2,74100.0,kg/TJ,4839097.535999999,kg +d968ff20-ca46-3470-ae0e-0ecf6ffdcf55,SESCO,I.3.1,Buenos Aires,AR-B,annual,2021,gas oil combustion consumption by petrochemical industries,65.30496,TJ,CH4,3.9,kg/TJ,254.68934399999998,kg +d968ff20-ca46-3470-ae0e-0ecf6ffdcf55,SESCO,I.3.1,Buenos Aires,AR-B,annual,2021,gas oil combustion consumption by petrochemical industries,65.30496,TJ,N2O,3.9,kg/TJ,254.68934399999998,kg +7be25857-5055-3f82-9117-cace117a8dd0,SESCO,I.3.1,Capital Federal,AR-C,annual,2021,gas oil combustion consumption by petrochemical industries,50.09844,TJ,CO2,74100.0,kg/TJ,3712294.4039999996,kg +f87d8ca2-bd51-3061-bbec-dbd8edaa3f7b,SESCO,I.3.1,Capital Federal,AR-C,annual,2021,gas oil combustion consumption by petrochemical industries,50.09844,TJ,CH4,3.9,kg/TJ,195.38391599999997,kg +f87d8ca2-bd51-3061-bbec-dbd8edaa3f7b,SESCO,I.3.1,Capital Federal,AR-C,annual,2021,gas oil combustion consumption by petrochemical industries,50.09844,TJ,N2O,3.9,kg/TJ,195.38391599999997,kg +ad9989e5-3bc8-367d-8dcb-3325d0dc700d,SESCO,I.3.1,Córdoba,AR-X,annual,2021,gas oil combustion consumption by petrochemical industries,5.12904,TJ,CO2,74100.0,kg/TJ,380061.864,kg +3273e6ae-5c79-34e2-8a85-c5f167fe2e0e,SESCO,I.3.1,Córdoba,AR-X,annual,2021,gas oil combustion consumption by petrochemical industries,5.12904,TJ,CH4,3.9,kg/TJ,20.003256,kg +3273e6ae-5c79-34e2-8a85-c5f167fe2e0e,SESCO,I.3.1,Córdoba,AR-X,annual,2021,gas oil combustion consumption by petrochemical industries,5.12904,TJ,N2O,3.9,kg/TJ,20.003256,kg +7979b9f6-d940-374d-8d9a-7e41535203cd,SESCO,I.3.1,Jujuy,AR-Y,annual,2021,gas oil combustion consumption by petrochemical industries,1.33644,TJ,CO2,74100.0,kg/TJ,99030.20400000001,kg +5ee4ee6f-2654-380a-9d3a-f09af7b84fef,SESCO,I.3.1,Jujuy,AR-Y,annual,2021,gas oil combustion consumption by petrochemical industries,1.33644,TJ,CH4,3.9,kg/TJ,5.212116,kg +5ee4ee6f-2654-380a-9d3a-f09af7b84fef,SESCO,I.3.1,Jujuy,AR-Y,annual,2021,gas oil combustion consumption by petrochemical industries,1.33644,TJ,N2O,3.9,kg/TJ,5.212116,kg +5afb96cd-b07e-3295-916d-2f87ba8cd302,SESCO,I.3.1,Salta,AR-A,annual,2021,gas oil combustion consumption by petrochemical industries,4.22604,TJ,CO2,74100.0,kg/TJ,313149.564,kg +bdcb3f1d-02cc-3a57-a2b7-57cca70f9c2e,SESCO,I.3.1,Salta,AR-A,annual,2021,gas oil combustion consumption by petrochemical industries,4.22604,TJ,CH4,3.9,kg/TJ,16.481556,kg +bdcb3f1d-02cc-3a57-a2b7-57cca70f9c2e,SESCO,I.3.1,Salta,AR-A,annual,2021,gas oil combustion consumption by petrochemical industries,4.22604,TJ,N2O,3.9,kg/TJ,16.481556,kg +6e99e3ce-e21c-348f-a9fa-0441fb43e53c,SESCO,I.3.1,Santa Fe,AR-S,annual,2021,gas oil combustion consumption by petrochemical industries,14.15904,TJ,CO2,74100.0,kg/TJ,1049184.8639999998,kg +ab19c087-7310-3a2c-9378-d73e666f30f2,SESCO,I.3.1,Santa Fe,AR-S,annual,2021,gas oil combustion consumption by petrochemical industries,14.15904,TJ,CH4,3.9,kg/TJ,55.22025599999999,kg +ab19c087-7310-3a2c-9378-d73e666f30f2,SESCO,I.3.1,Santa Fe,AR-S,annual,2021,gas oil combustion consumption by petrochemical industries,14.15904,TJ,N2O,3.9,kg/TJ,55.22025599999999,kg +b9f396e5-41bc-3d76-b1c1-a8f813c45dd6,SESCO,I.3.1,Tucuman,AR-T,annual,2021,gas oil combustion consumption by petrochemical industries,1.58928,TJ,CO2,74100.0,kg/TJ,117765.648,kg +5b7bf692-47c8-3c9d-b110-33af5077d4b6,SESCO,I.3.1,Tucuman,AR-T,annual,2021,gas oil combustion consumption by petrochemical industries,1.58928,TJ,CH4,3.9,kg/TJ,6.198192,kg +5b7bf692-47c8-3c9d-b110-33af5077d4b6,SESCO,I.3.1,Tucuman,AR-T,annual,2021,gas oil combustion consumption by petrochemical industries,1.58928,TJ,N2O,3.9,kg/TJ,6.198192,kg +01e8d48b-457b-39ff-822e-fa5a00299028,SESCO,I.3.1,Santa Fe,AR-S,annual,2021,jet kerosene combustion consumption by petrochemical industries,5.661539999999999,TJ,CO2,71500.0,kg/TJ,404800.1099999999,kg +4621137c-3aaf-3661-afab-91ab0c97e0c4,SESCO,I.3.1,Santa Fe,AR-S,annual,2021,jet kerosene combustion consumption by petrochemical industries,5.661539999999999,TJ,CH4,0.5,kg/TJ,2.8307699999999993,kg +be75fcfe-2be1-3f8e-8709-bfabe9887c5c,SESCO,I.3.1,Santa Fe,AR-S,annual,2021,jet kerosene combustion consumption by petrochemical industries,5.661539999999999,TJ,N2O,2.0,kg/TJ,11.323079999999997,kg +19ad0b7e-4054-3fc4-8529-8b48d72d7a65,SESCO,II.2.1,Córdoba,AR-X,annual,2021,gasoline combustion consumption by railway transport,4.3857,TJ,CO2,69300.0,kg/TJ,303929.01,kg +bd006427-6691-36e8-82ef-acbef28149bc,SESCO,II.2.1,Córdoba,AR-X,annual,2021,gasoline combustion consumption by railway transport,4.3857,TJ,CH4,33.0,kg/TJ,144.72809999999998,kg +658b46a2-516d-37f2-8aa0-c92b6f8cd207,SESCO,II.2.1,Córdoba,AR-X,annual,2021,gasoline combustion consumption by railway transport,4.3857,TJ,N2O,3.2,kg/TJ,14.03424,kg +f223c584-8364-3773-87d5-c92d2dfdaf45,SESCO,II.2.1,Buenos Aires,AR-B,annual,2021,gas oil combustion consumption by railway transport,174.78468,TJ,CO2,74100.0,kg/TJ,12951544.788,kg +3dd822da-91ce-35f2-abad-5d5d9234cd1b,SESCO,II.2.1,Buenos Aires,AR-B,annual,2021,gas oil combustion consumption by railway transport,174.78468,TJ,CH4,3.9,kg/TJ,681.660252,kg +3dd822da-91ce-35f2-abad-5d5d9234cd1b,SESCO,II.2.1,Buenos Aires,AR-B,annual,2021,gas oil combustion consumption by railway transport,174.78468,TJ,N2O,3.9,kg/TJ,681.660252,kg +b1573ce6-5542-3b57-a3f8-2d978121952e,SESCO,II.1.1,Santa Fe,AR-S,annual,2021,gasoline combustion consumption by freight transport,5.9805,TJ,CO2,69300.0,kg/TJ,414448.65,kg +12da96c3-b069-39ea-8e05-9239e93582ec,SESCO,II.1.1,Santa Fe,AR-S,annual,2021,gasoline combustion consumption by freight transport,5.9805,TJ,CH4,33.0,kg/TJ,197.3565,kg +93fd11cd-b744-3fde-92a3-601e7cbb3d2b,SESCO,II.1.1,Santa Fe,AR-S,annual,2021,gasoline combustion consumption by freight transport,5.9805,TJ,N2O,3.2,kg/TJ,19.137600000000003,kg +d6af1fe0-f83e-387d-b766-e2da98b70c66,SESCO,II.1.1,Buenos Aires,AR-B,annual,2021,gas oil combustion consumption by freight transport,90.87792,TJ,CO2,74100.0,kg/TJ,6734053.872,kg +4524c1d4-7f32-3a95-aab5-7c1521288f39,SESCO,II.1.1,Buenos Aires,AR-B,annual,2021,gas oil combustion consumption by freight transport,90.87792,TJ,CH4,3.9,kg/TJ,354.423888,kg +4524c1d4-7f32-3a95-aab5-7c1521288f39,SESCO,II.1.1,Buenos Aires,AR-B,annual,2021,gas oil combustion consumption by freight transport,90.87792,TJ,N2O,3.9,kg/TJ,354.423888,kg +b88935a0-03db-33fd-9236-301dd96064a0,SESCO,II.1.1,Capital Federal,AR-C,annual,2021,gas oil combustion consumption by freight transport,3.14244,TJ,CO2,74100.0,kg/TJ,232854.804,kg +ad5a961f-0af4-3535-90aa-f460588a7b7c,SESCO,II.1.1,Capital Federal,AR-C,annual,2021,gas oil combustion consumption by freight transport,3.14244,TJ,CH4,3.9,kg/TJ,12.255516,kg +ad5a961f-0af4-3535-90aa-f460588a7b7c,SESCO,II.1.1,Capital Federal,AR-C,annual,2021,gas oil combustion consumption by freight transport,3.14244,TJ,N2O,3.9,kg/TJ,12.255516,kg +4ccc5fe7-e54f-3ea3-bcaa-0168feae59dc,SESCO,II.1.1,Santa Fe,AR-S,annual,2021,gas oil combustion consumption by freight transport,9.860759999999999,TJ,CO2,74100.0,kg/TJ,730682.3159999999,kg +bd793909-9b45-3c1c-8bf4-1e17e2752771,SESCO,II.1.1,Santa Fe,AR-S,annual,2021,gas oil combustion consumption by freight transport,9.860759999999999,TJ,CH4,3.9,kg/TJ,38.45696399999999,kg +bd793909-9b45-3c1c-8bf4-1e17e2752771,SESCO,II.1.1,Santa Fe,AR-S,annual,2021,gas oil combustion consumption by freight transport,9.860759999999999,TJ,N2O,3.9,kg/TJ,38.45696399999999,kg +697fc95d-9c27-3c9d-a7ae-4721ce2a0e34,SESCO,II.1.1,Buenos Aires,AR-B,annual,2021,gas oil combustion consumption by freight transport,6.4654799999999994,TJ,CO2,74100.0,kg/TJ,479092.06799999997,kg +ff76a210-940c-319d-997c-494aaf975a95,SESCO,II.1.1,Buenos Aires,AR-B,annual,2021,gas oil combustion consumption by freight transport,6.4654799999999994,TJ,CH4,3.9,kg/TJ,25.215372,kg +ff76a210-940c-319d-997c-494aaf975a95,SESCO,II.1.1,Buenos Aires,AR-B,annual,2021,gas oil combustion consumption by freight transport,6.4654799999999994,TJ,N2O,3.9,kg/TJ,25.215372,kg +25186f57-2717-36de-95d3-bea73056acce,SESCO,II.1.1,Capital Federal,AR-C,annual,2021,gas oil combustion consumption by freight transport,1.19196,TJ,CO2,74100.0,kg/TJ,88324.23599999999,kg +93e8b129-246a-362b-9406-1d509e37d694,SESCO,II.1.1,Capital Federal,AR-C,annual,2021,gas oil combustion consumption by freight transport,1.19196,TJ,CH4,3.9,kg/TJ,4.648643999999999,kg +93e8b129-246a-362b-9406-1d509e37d694,SESCO,II.1.1,Capital Federal,AR-C,annual,2021,gas oil combustion consumption by freight transport,1.19196,TJ,N2O,3.9,kg/TJ,4.648643999999999,kg +e2c2e782-3fbc-36aa-bfca-3ab82d24a184,SESCO,II.1.1,Santa Fe,AR-S,annual,2021,gas oil combustion consumption by freight transport,22.53888,TJ,CO2,74100.0,kg/TJ,1670131.008,kg +332e644d-da62-3ef1-aa3f-f1ca847a8b57,SESCO,II.1.1,Santa Fe,AR-S,annual,2021,gas oil combustion consumption by freight transport,22.53888,TJ,CH4,3.9,kg/TJ,87.90163199999999,kg +332e644d-da62-3ef1-aa3f-f1ca847a8b57,SESCO,II.1.1,Santa Fe,AR-S,annual,2021,gas oil combustion consumption by freight transport,22.53888,TJ,N2O,3.9,kg/TJ,87.90163199999999,kg +9d25d177-92da-389f-93f4-01f2ec6f8522,SESCO,II.1.1,Buenos Aires,AR-B,annual,2021,gas oil combustion consumption by public passenger transport,2819.3466,TJ,CO2,74100.0,kg/TJ,208913583.06,kg +dfd1212e-da2b-379a-9e78-0a8eb8a9e2e2,SESCO,II.1.1,Buenos Aires,AR-B,annual,2021,gas oil combustion consumption by public passenger transport,2819.3466,TJ,CH4,3.9,kg/TJ,10995.451739999999,kg +dfd1212e-da2b-379a-9e78-0a8eb8a9e2e2,SESCO,II.1.1,Buenos Aires,AR-B,annual,2021,gas oil combustion consumption by public passenger transport,2819.3466,TJ,N2O,3.9,kg/TJ,10995.451739999999,kg +094b6da0-8eb9-36b8-841a-a26e335ee69e,SESCO,II.1.1,Capital Federal,AR-C,annual,2021,gas oil combustion consumption by public passenger transport,112.54992,TJ,CO2,74100.0,kg/TJ,8339949.072,kg +4e9362d3-4dc9-3afb-868e-af3647833be1,SESCO,II.1.1,Capital Federal,AR-C,annual,2021,gas oil combustion consumption by public passenger transport,112.54992,TJ,CH4,3.9,kg/TJ,438.944688,kg +4e9362d3-4dc9-3afb-868e-af3647833be1,SESCO,II.1.1,Capital Federal,AR-C,annual,2021,gas oil combustion consumption by public passenger transport,112.54992,TJ,N2O,3.9,kg/TJ,438.944688,kg +e8fab258-9c53-34de-baae-ddcf962e651f,SESCO,II.1.1,Córdoba,AR-X,annual,2021,gas oil combustion consumption by public passenger transport,25.4646,TJ,CO2,74100.0,kg/TJ,1886926.86,kg +7c0253e1-130f-3934-93bd-d0d6bb01056a,SESCO,II.1.1,Córdoba,AR-X,annual,2021,gas oil combustion consumption by public passenger transport,25.4646,TJ,CH4,3.9,kg/TJ,99.31194,kg +7c0253e1-130f-3934-93bd-d0d6bb01056a,SESCO,II.1.1,Córdoba,AR-X,annual,2021,gas oil combustion consumption by public passenger transport,25.4646,TJ,N2O,3.9,kg/TJ,99.31194,kg +e82451a6-5ef1-3a55-a0af-583e12b90af3,SESCO,II.1.1,Santa Fe,AR-S,annual,2021,gas oil combustion consumption by public passenger transport,2.4200399999999997,TJ,CO2,74100.0,kg/TJ,179324.96399999998,kg +45c440d9-43b3-31ab-804f-7f3d4c0aa880,SESCO,II.1.1,Santa Fe,AR-S,annual,2021,gas oil combustion consumption by public passenger transport,2.4200399999999997,TJ,CH4,3.9,kg/TJ,9.438156,kg +45c440d9-43b3-31ab-804f-7f3d4c0aa880,SESCO,II.1.1,Santa Fe,AR-S,annual,2021,gas oil combustion consumption by public passenger transport,2.4200399999999997,TJ,N2O,3.9,kg/TJ,9.438156,kg +7a981c40-d72a-3e12-ad81-611ff42404d0,SESCO,II.1.1,Buenos Aires,AR-B,annual,2021,gas oil combustion consumption by public passenger transport,1209.94776,TJ,CO2,74100.0,kg/TJ,89657129.016,kg +f948c60f-6cc1-3ecb-b635-d20323107b1a,SESCO,II.1.1,Buenos Aires,AR-B,annual,2021,gas oil combustion consumption by public passenger transport,1209.94776,TJ,CH4,3.9,kg/TJ,4718.796264,kg +f948c60f-6cc1-3ecb-b635-d20323107b1a,SESCO,II.1.1,Buenos Aires,AR-B,annual,2021,gas oil combustion consumption by public passenger transport,1209.94776,TJ,N2O,3.9,kg/TJ,4718.796264,kg +04e4eb66-f857-3e6d-a58d-dc92ae821188,SESCO,II.1.1,Capital Federal,AR-C,annual,2021,gas oil combustion consumption by public passenger transport,63.89628,TJ,CO2,74100.0,kg/TJ,4734714.348,kg +59d4875b-2a3a-38f6-9116-549331f67df0,SESCO,II.1.1,Capital Federal,AR-C,annual,2021,gas oil combustion consumption by public passenger transport,63.89628,TJ,CH4,3.9,kg/TJ,249.19549199999997,kg +59d4875b-2a3a-38f6-9116-549331f67df0,SESCO,II.1.1,Capital Federal,AR-C,annual,2021,gas oil combustion consumption by public passenger transport,63.89628,TJ,N2O,3.9,kg/TJ,249.19549199999997,kg +2e1bd3a9-d2cf-3831-9e77-7d396e2a20f7,SESCO,II.1.1,Córdoba,AR-X,annual,2021,gas oil combustion consumption by public passenger transport,20.08272,TJ,CO2,74100.0,kg/TJ,1488129.552,kg +2665e42a-4f07-3374-9d3d-c07284500547,SESCO,II.1.1,Córdoba,AR-X,annual,2021,gas oil combustion consumption by public passenger transport,20.08272,TJ,CH4,3.9,kg/TJ,78.32260799999999,kg +2665e42a-4f07-3374-9d3d-c07284500547,SESCO,II.1.1,Córdoba,AR-X,annual,2021,gas oil combustion consumption by public passenger transport,20.08272,TJ,N2O,3.9,kg/TJ,78.32260799999999,kg +c0ab5594-f4fe-31f1-855e-2fdfe2bb578e,SESCO,II.5.1,Buenos Aires,AR-B,annual,2021,gas oil combustion consumption by agriculture machines,3266.7477024,TJ,CO2,74100.0,kg/TJ,242066004.74784,kg +c660be7c-2a99-3d02-89f4-05ba72678432,SESCO,II.5.1,Buenos Aires,AR-B,annual,2021,gas oil combustion consumption by agriculture machines,3266.7477024,TJ,CH4,3.9,kg/TJ,12740.31603936,kg +c660be7c-2a99-3d02-89f4-05ba72678432,SESCO,II.5.1,Buenos Aires,AR-B,annual,2021,gas oil combustion consumption by agriculture machines,3266.7477024,TJ,N2O,3.9,kg/TJ,12740.31603936,kg +b59d1115-a1dd-3825-8ceb-dbd87c5d119e,SESCO,II.5.1,Capital Federal,AR-C,annual,2021,gas oil combustion consumption by agriculture machines,802.72773756,TJ,CO2,74100.0,kg/TJ,59482125.353196,kg +77c08845-41dc-30da-b46d-dc43e63a67e8,SESCO,II.5.1,Capital Federal,AR-C,annual,2021,gas oil combustion consumption by agriculture machines,802.72773756,TJ,CH4,3.9,kg/TJ,3130.6381764840003,kg +77c08845-41dc-30da-b46d-dc43e63a67e8,SESCO,II.5.1,Capital Federal,AR-C,annual,2021,gas oil combustion consumption by agriculture machines,802.72773756,TJ,N2O,3.9,kg/TJ,3130.6381764840003,kg +e58c5e5a-aa95-3563-a8d0-b21f69f33782,SESCO,II.5.1,Córdoba,AR-X,annual,2021,gas oil combustion consumption by agriculture machines,1285.4966048400001,TJ,CO2,74100.0,kg/TJ,95255298.41864401,kg +303fa9f6-454c-3b30-b9f2-6ce42bfc677a,SESCO,II.5.1,Córdoba,AR-X,annual,2021,gas oil combustion consumption by agriculture machines,1285.4966048400001,TJ,CH4,3.9,kg/TJ,5013.436758876001,kg +303fa9f6-454c-3b30-b9f2-6ce42bfc677a,SESCO,II.5.1,Córdoba,AR-X,annual,2021,gas oil combustion consumption by agriculture machines,1285.4966048400001,TJ,N2O,3.9,kg/TJ,5013.436758876001,kg +d2003880-d6ca-3e2c-845d-5ac17d632ead,SESCO,II.5.1,Entre Rios,AR-E,annual,2021,gas oil combustion consumption by agriculture machines,711.66936204,TJ,CO2,74100.0,kg/TJ,52734699.727164,kg +044cfe46-2796-3a10-b76e-13ed0384a802,SESCO,II.5.1,Entre Rios,AR-E,annual,2021,gas oil combustion consumption by agriculture machines,711.66936204,TJ,CH4,3.9,kg/TJ,2775.510511956,kg +044cfe46-2796-3a10-b76e-13ed0384a802,SESCO,II.5.1,Entre Rios,AR-E,annual,2021,gas oil combustion consumption by agriculture machines,711.66936204,TJ,N2O,3.9,kg/TJ,2775.510511956,kg +76568540-2850-3a66-aeaa-6df523f8e562,SESCO,II.5.1,Jujuy,AR-Y,annual,2021,gas oil combustion consumption by agriculture machines,24.464039879999998,TJ,CO2,74100.0,kg/TJ,1812785.3551079999,kg +929b119e-139e-38ef-9e3a-23331b57dd84,SESCO,II.5.1,Jujuy,AR-Y,annual,2021,gas oil combustion consumption by agriculture machines,24.464039879999998,TJ,CH4,3.9,kg/TJ,95.40975553199999,kg +929b119e-139e-38ef-9e3a-23331b57dd84,SESCO,II.5.1,Jujuy,AR-Y,annual,2021,gas oil combustion consumption by agriculture machines,24.464039879999998,TJ,N2O,3.9,kg/TJ,95.40975553199999,kg +96697140-83e0-33ef-974c-8bf46bce825e,SESCO,II.5.1,La Pampa,AR-L,annual,2021,gas oil combustion consumption by agriculture machines,288.98141916,TJ,CO2,74100.0,kg/TJ,21413523.159755997,kg +8593d890-97a9-378d-b574-7b0a88264392,SESCO,II.5.1,La Pampa,AR-L,annual,2021,gas oil combustion consumption by agriculture machines,288.98141916,TJ,CH4,3.9,kg/TJ,1127.027534724,kg +8593d890-97a9-378d-b574-7b0a88264392,SESCO,II.5.1,La Pampa,AR-L,annual,2021,gas oil combustion consumption by agriculture machines,288.98141916,TJ,N2O,3.9,kg/TJ,1127.027534724,kg +a7f06a33-1c18-3a4a-ba5c-0b47e0c36753,SESCO,II.5.1,Neuquén,AR-Q,annual,2021,gas oil combustion consumption by agriculture machines,12.690762000000001,TJ,CO2,74100.0,kg/TJ,940385.4642,kg +e2439598-d3f2-33db-8845-8112e3ec27fa,SESCO,II.5.1,Neuquén,AR-Q,annual,2021,gas oil combustion consumption by agriculture machines,12.690762000000001,TJ,CH4,3.9,kg/TJ,49.493971800000004,kg +e2439598-d3f2-33db-8845-8112e3ec27fa,SESCO,II.5.1,Neuquén,AR-Q,annual,2021,gas oil combustion consumption by agriculture machines,12.690762000000001,TJ,N2O,3.9,kg/TJ,49.493971800000004,kg +60584f80-edbf-3e4a-906f-a3e8989721eb,SESCO,II.5.1,Rio Negro,AR-R,annual,2021,gas oil combustion consumption by agriculture machines,163.48081764000003,TJ,CO2,74100.0,kg/TJ,12113928.587124001,kg +bbb286e8-ea2d-338d-bcaf-2ab8b3fabbc7,SESCO,II.5.1,Rio Negro,AR-R,annual,2021,gas oil combustion consumption by agriculture machines,163.48081764000003,TJ,CH4,3.9,kg/TJ,637.5751887960001,kg +bbb286e8-ea2d-338d-bcaf-2ab8b3fabbc7,SESCO,II.5.1,Rio Negro,AR-R,annual,2021,gas oil combustion consumption by agriculture machines,163.48081764000003,TJ,N2O,3.9,kg/TJ,637.5751887960001,kg +c5cd9a70-f89f-3f53-a247-bbecc7e1e054,SESCO,II.5.1,San Luis,AR-D,annual,2021,gas oil combustion consumption by agriculture machines,13.8796518,TJ,CO2,74100.0,kg/TJ,1028482.19838,kg +b47793a9-d29f-3ee7-b7ab-4455d86a7c3d,SESCO,II.5.1,San Luis,AR-D,annual,2021,gas oil combustion consumption by agriculture machines,13.8796518,TJ,CH4,3.9,kg/TJ,54.130642019999996,kg +b47793a9-d29f-3ee7-b7ab-4455d86a7c3d,SESCO,II.5.1,San Luis,AR-D,annual,2021,gas oil combustion consumption by agriculture machines,13.8796518,TJ,N2O,3.9,kg/TJ,54.130642019999996,kg +bdfec494-feec-3c0d-baa2-d2594ffe1876,SESCO,II.5.1,Santa Fe,AR-S,annual,2021,gas oil combustion consumption by agriculture machines,4073.27995956,TJ,CO2,74100.0,kg/TJ,301830045.003396,kg +85da1155-6b14-305a-9a7a-58c4a683472c,SESCO,II.5.1,Santa Fe,AR-S,annual,2021,gas oil combustion consumption by agriculture machines,4073.27995956,TJ,CH4,3.9,kg/TJ,15885.791842284,kg +85da1155-6b14-305a-9a7a-58c4a683472c,SESCO,II.5.1,Santa Fe,AR-S,annual,2021,gas oil combustion consumption by agriculture machines,4073.27995956,TJ,N2O,3.9,kg/TJ,15885.791842284,kg +0da97056-e81a-38ed-a7b6-e6a188c93a65,SESCO,II.5.1,Santiago del Estero,AR-G,annual,2021,gas oil combustion consumption by agriculture machines,134.31792696,TJ,CO2,74100.0,kg/TJ,9952958.387736,kg +b59488f0-62d9-3fad-9b0d-78a2d987dec1,SESCO,II.5.1,Santiago del Estero,AR-G,annual,2021,gas oil combustion consumption by agriculture machines,134.31792696,TJ,CH4,3.9,kg/TJ,523.839915144,kg +b59488f0-62d9-3fad-9b0d-78a2d987dec1,SESCO,II.5.1,Santiago del Estero,AR-G,annual,2021,gas oil combustion consumption by agriculture machines,134.31792696,TJ,N2O,3.9,kg/TJ,523.839915144,kg +5cd507a9-9589-3c2e-ac40-027265d042dd,SESCO,II.5.1,Tucuman,AR-T,annual,2021,gas oil combustion consumption by agriculture machines,152.84441676,TJ,CO2,74100.0,kg/TJ,11325771.281916,kg +3b1dac29-a209-310f-ad94-bc5f46fe030b,SESCO,II.5.1,Tucuman,AR-T,annual,2021,gas oil combustion consumption by agriculture machines,152.84441676,TJ,CH4,3.9,kg/TJ,596.093225364,kg +3b1dac29-a209-310f-ad94-bc5f46fe030b,SESCO,II.5.1,Tucuman,AR-T,annual,2021,gas oil combustion consumption by agriculture machines,152.84441676,TJ,N2O,3.9,kg/TJ,596.093225364,kg +3c608d25-18ce-3c21-b967-94c43e906b76,SESCO,II.5.1,Buenos Aires,AR-B,annual,2021,gas oil combustion consumption by agriculture machines,370.26626448,TJ,CO2,74100.0,kg/TJ,27436730.197968002,kg +f400db94-ac84-3878-b1b1-f1c5c0391868,SESCO,II.5.1,Buenos Aires,AR-B,annual,2021,gas oil combustion consumption by agriculture machines,370.26626448,TJ,CH4,3.9,kg/TJ,1444.038431472,kg +f400db94-ac84-3878-b1b1-f1c5c0391868,SESCO,II.5.1,Buenos Aires,AR-B,annual,2021,gas oil combustion consumption by agriculture machines,370.26626448,TJ,N2O,3.9,kg/TJ,1444.038431472,kg +85380fa6-34ea-341a-9102-f4b5ea0328ab,SESCO,II.5.1,Capital Federal,AR-C,annual,2021,gas oil combustion consumption by agriculture machines,45.08122752,TJ,CO2,74100.0,kg/TJ,3340518.9592319997,kg +2a4352aa-3a5e-3981-9a02-10fcb62e25be,SESCO,II.5.1,Capital Federal,AR-C,annual,2021,gas oil combustion consumption by agriculture machines,45.08122752,TJ,CH4,3.9,kg/TJ,175.816787328,kg +2a4352aa-3a5e-3981-9a02-10fcb62e25be,SESCO,II.5.1,Capital Federal,AR-C,annual,2021,gas oil combustion consumption by agriculture machines,45.08122752,TJ,N2O,3.9,kg/TJ,175.816787328,kg +9b7cb17f-1bdc-3108-9d96-d688b2cde78e,SESCO,II.5.1,Córdoba,AR-X,annual,2021,gas oil combustion consumption by agriculture machines,104.01631716,TJ,CO2,74100.0,kg/TJ,7707609.101556,kg +5ec285bb-8707-30b1-aac7-94fc4d95ed54,SESCO,II.5.1,Córdoba,AR-X,annual,2021,gas oil combustion consumption by agriculture machines,104.01631716,TJ,CH4,3.9,kg/TJ,405.663636924,kg +5ec285bb-8707-30b1-aac7-94fc4d95ed54,SESCO,II.5.1,Córdoba,AR-X,annual,2021,gas oil combustion consumption by agriculture machines,104.01631716,TJ,N2O,3.9,kg/TJ,405.663636924,kg +d7eced9a-6d35-3aab-964c-5bf4d44ad948,SESCO,II.5.1,Entre Rios,AR-E,annual,2021,gas oil combustion consumption by agriculture machines,137.44927812,TJ,CO2,74100.0,kg/TJ,10184991.508692,kg +68162895-9a77-3375-b03e-fb5d1fdca84a,SESCO,II.5.1,Entre Rios,AR-E,annual,2021,gas oil combustion consumption by agriculture machines,137.44927812,TJ,CH4,3.9,kg/TJ,536.052184668,kg +68162895-9a77-3375-b03e-fb5d1fdca84a,SESCO,II.5.1,Entre Rios,AR-E,annual,2021,gas oil combustion consumption by agriculture machines,137.44927812,TJ,N2O,3.9,kg/TJ,536.052184668,kg +6770e8a0-a39f-3f0c-963e-2bcc9261652d,SESCO,II.5.1,Jujuy,AR-Y,annual,2021,gas oil combustion consumption by agriculture machines,58.00608324,TJ,CO2,74100.0,kg/TJ,4298250.768084,kg +c8134580-72dc-34b3-ad99-fa304021de7e,SESCO,II.5.1,Jujuy,AR-Y,annual,2021,gas oil combustion consumption by agriculture machines,58.00608324,TJ,CH4,3.9,kg/TJ,226.22372463600001,kg +c8134580-72dc-34b3-ad99-fa304021de7e,SESCO,II.5.1,Jujuy,AR-Y,annual,2021,gas oil combustion consumption by agriculture machines,58.00608324,TJ,N2O,3.9,kg/TJ,226.22372463600001,kg +51d00916-9a65-3111-8c28-3b63077bdf45,SESCO,II.5.1,La Pampa,AR-L,annual,2021,gas oil combustion consumption by agriculture machines,51.71885544,TJ,CO2,74100.0,kg/TJ,3832367.188104,kg +3595371b-c9a6-3cc1-8d7e-52f8a3ed1d4e,SESCO,II.5.1,La Pampa,AR-L,annual,2021,gas oil combustion consumption by agriculture machines,51.71885544,TJ,CH4,3.9,kg/TJ,201.703536216,kg +3595371b-c9a6-3cc1-8d7e-52f8a3ed1d4e,SESCO,II.5.1,La Pampa,AR-L,annual,2021,gas oil combustion consumption by agriculture machines,51.71885544,TJ,N2O,3.9,kg/TJ,201.703536216,kg +c3d6b5b0-5916-3d62-9dd6-988c5dfa526e,SESCO,II.5.1,Neuquén,AR-Q,annual,2021,gas oil combustion consumption by agriculture machines,7.1268372,TJ,CO2,74100.0,kg/TJ,528098.63652,kg +9a249897-4b6b-3eef-8466-0feff4607223,SESCO,II.5.1,Neuquén,AR-Q,annual,2021,gas oil combustion consumption by agriculture machines,7.1268372,TJ,CH4,3.9,kg/TJ,27.794665079999998,kg +9a249897-4b6b-3eef-8466-0feff4607223,SESCO,II.5.1,Neuquén,AR-Q,annual,2021,gas oil combustion consumption by agriculture machines,7.1268372,TJ,N2O,3.9,kg/TJ,27.794665079999998,kg +1673b087-6db4-37d8-94f4-ec6f41055663,SESCO,II.5.1,Rio Negro,AR-R,annual,2021,gas oil combustion consumption by agriculture machines,134.4841512,TJ,CO2,74100.0,kg/TJ,9965275.603920002,kg +1ba13efd-796b-3656-8288-4782c63e35ba,SESCO,II.5.1,Rio Negro,AR-R,annual,2021,gas oil combustion consumption by agriculture machines,134.4841512,TJ,CH4,3.9,kg/TJ,524.48818968,kg +1ba13efd-796b-3656-8288-4782c63e35ba,SESCO,II.5.1,Rio Negro,AR-R,annual,2021,gas oil combustion consumption by agriculture machines,134.4841512,TJ,N2O,3.9,kg/TJ,524.48818968,kg +737ebda9-eb2d-3874-b94f-390defcaaa8e,SESCO,II.5.1,San Luis,AR-D,annual,2021,gas oil combustion consumption by agriculture machines,17.00153952,TJ,CO2,74100.0,kg/TJ,1259814.078432,kg +ab901bb6-c475-382f-a1f3-1ce80e63eb51,SESCO,II.5.1,San Luis,AR-D,annual,2021,gas oil combustion consumption by agriculture machines,17.00153952,TJ,CH4,3.9,kg/TJ,66.306004128,kg +ab901bb6-c475-382f-a1f3-1ce80e63eb51,SESCO,II.5.1,San Luis,AR-D,annual,2021,gas oil combustion consumption by agriculture machines,17.00153952,TJ,N2O,3.9,kg/TJ,66.306004128,kg +c0412dc1-85d1-3acc-a9eb-6570acbc6f1c,SESCO,II.5.1,Santa Fe,AR-S,annual,2021,gas oil combustion consumption by agriculture machines,282.68169384,TJ,CO2,74100.0,kg/TJ,20946713.513543997,kg +f0c3bd69-93ce-3469-a6ea-f2303b12745e,SESCO,II.5.1,Santa Fe,AR-S,annual,2021,gas oil combustion consumption by agriculture machines,282.68169384,TJ,CH4,3.9,kg/TJ,1102.458605976,kg +f0c3bd69-93ce-3469-a6ea-f2303b12745e,SESCO,II.5.1,Santa Fe,AR-S,annual,2021,gas oil combustion consumption by agriculture machines,282.68169384,TJ,N2O,3.9,kg/TJ,1102.458605976,kg +329f3e44-03c3-38eb-9941-23c235f888cc,SESCO,II.5.1,Santiago del Estero,AR-G,annual,2021,gas oil combustion consumption by agriculture machines,30.05379048,TJ,CO2,74100.0,kg/TJ,2226985.874568,kg +7fd7dc37-d1b3-395f-942b-52d22eb991b6,SESCO,II.5.1,Santiago del Estero,AR-G,annual,2021,gas oil combustion consumption by agriculture machines,30.05379048,TJ,CH4,3.9,kg/TJ,117.20978287199999,kg +7fd7dc37-d1b3-395f-942b-52d22eb991b6,SESCO,II.5.1,Santiago del Estero,AR-G,annual,2021,gas oil combustion consumption by agriculture machines,30.05379048,TJ,N2O,3.9,kg/TJ,117.20978287199999,kg +dc678d18-cbbc-37e2-8fec-722f50596d48,SESCO,II.5.1,Tucuman,AR-T,annual,2021,gas oil combustion consumption by agriculture machines,18.41599872,TJ,CO2,74100.0,kg/TJ,1364625.505152,kg +cb399abc-a2df-32e4-b43a-402286e04acc,SESCO,II.5.1,Tucuman,AR-T,annual,2021,gas oil combustion consumption by agriculture machines,18.41599872,TJ,CH4,3.9,kg/TJ,71.822395008,kg +cb399abc-a2df-32e4-b43a-402286e04acc,SESCO,II.5.1,Tucuman,AR-T,annual,2021,gas oil combustion consumption by agriculture machines,18.41599872,TJ,N2O,3.9,kg/TJ,71.822395008,kg +6664e4ba-a2c2-3aaf-8782-ec590b9440db,SESCO,II.1.1,Santa Fe,AR-S,annual,2021,gasoline combustion consumption by to the public,135.710835,TJ,CO2,69300.0,kg/TJ,9404760.8655,kg +40658735-96c4-35c3-b5df-8cdd2e1f7aa3,SESCO,II.1.1,Santa Fe,AR-S,annual,2021,gasoline combustion consumption by to the public,135.710835,TJ,CH4,33.0,kg/TJ,4478.457555,kg +408df1ed-b057-3c83-be59-85c62ea82ccc,SESCO,II.1.1,Santa Fe,AR-S,annual,2021,gasoline combustion consumption by to the public,135.710835,TJ,N2O,3.2,kg/TJ,434.274672,kg +a114d05e-48a2-3cb2-9583-15d65150d68a,SESCO,II.1.1,Buenos Aires,AR-B,annual,2021,gas oil combustion consumption by to the public,5847.12626064,TJ,CO2,74100.0,kg/TJ,433272055.91342396,kg +7de129bf-31f9-3896-bc62-fbe51ade73b7,SESCO,II.1.1,Buenos Aires,AR-B,annual,2021,gas oil combustion consumption by to the public,5847.12626064,TJ,CH4,3.9,kg/TJ,22803.792416496,kg +7de129bf-31f9-3896-bc62-fbe51ade73b7,SESCO,II.1.1,Buenos Aires,AR-B,annual,2021,gas oil combustion consumption by to the public,5847.12626064,TJ,N2O,3.9,kg/TJ,22803.792416496,kg +45293a57-d24f-3613-b76c-956ea9103196,SESCO,II.1.1,Capital Federal,AR-C,annual,2021,gas oil combustion consumption by to the public,263.868339,TJ,CO2,74100.0,kg/TJ,19552643.9199,kg +4fd42b06-ec68-3a82-9127-169cf4034164,SESCO,II.1.1,Capital Federal,AR-C,annual,2021,gas oil combustion consumption by to the public,263.868339,TJ,CH4,3.9,kg/TJ,1029.0865221,kg +4fd42b06-ec68-3a82-9127-169cf4034164,SESCO,II.1.1,Capital Federal,AR-C,annual,2021,gas oil combustion consumption by to the public,263.868339,TJ,N2O,3.9,kg/TJ,1029.0865221,kg +c8e73821-a0ec-3983-a694-decb0f2b8421,SESCO,II.1.1,Catamarca,AR-K,annual,2021,gas oil combustion consumption by to the public,10.30077384,TJ,CO2,74100.0,kg/TJ,763287.341544,kg +02787c0e-e0bd-3c15-9fda-5dfa9145b197,SESCO,II.1.1,Catamarca,AR-K,annual,2021,gas oil combustion consumption by to the public,10.30077384,TJ,CH4,3.9,kg/TJ,40.173017976,kg +02787c0e-e0bd-3c15-9fda-5dfa9145b197,SESCO,II.1.1,Catamarca,AR-K,annual,2021,gas oil combustion consumption by to the public,10.30077384,TJ,N2O,3.9,kg/TJ,40.173017976,kg +9bc0b1f6-3d10-3872-b348-e6b414819a37,SESCO,II.1.1,Chaco,AR-H,annual,2021,gas oil combustion consumption by to the public,45.724308,TJ,CO2,74100.0,kg/TJ,3388171.2228,kg +6fa26cea-2e85-37da-ac9a-05f969324785,SESCO,II.1.1,Chaco,AR-H,annual,2021,gas oil combustion consumption by to the public,45.724308,TJ,CH4,3.9,kg/TJ,178.3248012,kg +6fa26cea-2e85-37da-ac9a-05f969324785,SESCO,II.1.1,Chaco,AR-H,annual,2021,gas oil combustion consumption by to the public,45.724308,TJ,N2O,3.9,kg/TJ,178.3248012,kg +08558ced-b1a8-3d6a-9d20-596ed5b872d5,SESCO,II.1.1,Chubut,AR-U,annual,2021,gas oil combustion consumption by to the public,277.51689504,TJ,CO2,74100.0,kg/TJ,20564001.922464002,kg +503f744d-b84c-3a3d-a1d4-35040f4aeee2,SESCO,II.1.1,Chubut,AR-U,annual,2021,gas oil combustion consumption by to the public,277.51689504,TJ,CH4,3.9,kg/TJ,1082.315890656,kg +503f744d-b84c-3a3d-a1d4-35040f4aeee2,SESCO,II.1.1,Chubut,AR-U,annual,2021,gas oil combustion consumption by to the public,277.51689504,TJ,N2O,3.9,kg/TJ,1082.315890656,kg +a0c20c59-86cf-3dd2-8098-209c0f5ae260,SESCO,II.1.1,Corrientes,AR-W,annual,2021,gas oil combustion consumption by to the public,670.88934024,TJ,CO2,74100.0,kg/TJ,49712900.111784,kg +4d4cb9b1-59a6-3bd9-9501-62f70bb2b75f,SESCO,II.1.1,Corrientes,AR-W,annual,2021,gas oil combustion consumption by to the public,670.88934024,TJ,CH4,3.9,kg/TJ,2616.468426936,kg +4d4cb9b1-59a6-3bd9-9501-62f70bb2b75f,SESCO,II.1.1,Corrientes,AR-W,annual,2021,gas oil combustion consumption by to the public,670.88934024,TJ,N2O,3.9,kg/TJ,2616.468426936,kg +7f89fa1f-d8e8-34e7-812e-1bae5be7c433,SESCO,II.1.1,Córdoba,AR-X,annual,2021,gas oil combustion consumption by to the public,1481.0047014,TJ,CO2,74100.0,kg/TJ,109742448.37373999,kg +8234843e-ecbb-3c13-a54f-1cf2538b9c51,SESCO,II.1.1,Córdoba,AR-X,annual,2021,gas oil combustion consumption by to the public,1481.0047014,TJ,CH4,3.9,kg/TJ,5775.91833546,kg +8234843e-ecbb-3c13-a54f-1cf2538b9c51,SESCO,II.1.1,Córdoba,AR-X,annual,2021,gas oil combustion consumption by to the public,1481.0047014,TJ,N2O,3.9,kg/TJ,5775.91833546,kg +3b82ecf0-f533-3c28-a061-e563f1791740,SESCO,II.1.1,Entre Rios,AR-E,annual,2021,gas oil combustion consumption by to the public,1236.6283398,TJ,CO2,74100.0,kg/TJ,91634159.97918001,kg +a438cca2-08c3-3fa7-af10-604b9700802a,SESCO,II.1.1,Entre Rios,AR-E,annual,2021,gas oil combustion consumption by to the public,1236.6283398,TJ,CH4,3.9,kg/TJ,4822.85052522,kg +a438cca2-08c3-3fa7-af10-604b9700802a,SESCO,II.1.1,Entre Rios,AR-E,annual,2021,gas oil combustion consumption by to the public,1236.6283398,TJ,N2O,3.9,kg/TJ,4822.85052522,kg +9dc102f6-050c-3a69-9912-d75c33bc2d39,SESCO,II.1.1,Jujuy,AR-Y,annual,2021,gas oil combustion consumption by to the public,31.751647199999997,TJ,CO2,74100.0,kg/TJ,2352797.05752,kg +940861e8-32b3-35d7-94fd-0d93059fcd51,SESCO,II.1.1,Jujuy,AR-Y,annual,2021,gas oil combustion consumption by to the public,31.751647199999997,TJ,CH4,3.9,kg/TJ,123.83142407999999,kg +940861e8-32b3-35d7-94fd-0d93059fcd51,SESCO,II.1.1,Jujuy,AR-Y,annual,2021,gas oil combustion consumption by to the public,31.751647199999997,TJ,N2O,3.9,kg/TJ,123.83142407999999,kg +41dd75c0-d808-3925-8a44-594082359894,SESCO,II.1.1,La Pampa,AR-L,annual,2021,gas oil combustion consumption by to the public,912.2779999200001,TJ,CO2,74100.0,kg/TJ,67599799.794072,kg +06fef4c5-c64c-36b2-999c-e720b5746e83,SESCO,II.1.1,La Pampa,AR-L,annual,2021,gas oil combustion consumption by to the public,912.2779999200001,TJ,CH4,3.9,kg/TJ,3557.884199688,kg +06fef4c5-c64c-36b2-999c-e720b5746e83,SESCO,II.1.1,La Pampa,AR-L,annual,2021,gas oil combustion consumption by to the public,912.2779999200001,TJ,N2O,3.9,kg/TJ,3557.884199688,kg +0dba0ddc-679a-3f74-9c6c-74500860bc69,SESCO,II.1.1,Mendoza,AR-M,annual,2021,gas oil combustion consumption by to the public,141.89366352,TJ,CO2,74100.0,kg/TJ,10514320.466831999,kg +02bdd647-750d-3cdc-ae44-52e3f9054899,SESCO,II.1.1,Mendoza,AR-M,annual,2021,gas oil combustion consumption by to the public,141.89366352,TJ,CH4,3.9,kg/TJ,553.385287728,kg +02bdd647-750d-3cdc-ae44-52e3f9054899,SESCO,II.1.1,Mendoza,AR-M,annual,2021,gas oil combustion consumption by to the public,141.89366352,TJ,N2O,3.9,kg/TJ,553.385287728,kg +cc438d02-aaac-35bb-aa53-586fc5a27819,SESCO,II.1.1,Neuquén,AR-Q,annual,2021,gas oil combustion consumption by to the public,190.46538335999998,TJ,CO2,74100.0,kg/TJ,14113484.906975998,kg +cc9fd34c-5098-398d-b18e-defc4e3db187,SESCO,II.1.1,Neuquén,AR-Q,annual,2021,gas oil combustion consumption by to the public,190.46538335999998,TJ,CH4,3.9,kg/TJ,742.8149951039999,kg +cc9fd34c-5098-398d-b18e-defc4e3db187,SESCO,II.1.1,Neuquén,AR-Q,annual,2021,gas oil combustion consumption by to the public,190.46538335999998,TJ,N2O,3.9,kg/TJ,742.8149951039999,kg +7e5e58a5-50de-3411-819a-708a4010cdc6,SESCO,II.1.1,Rio Negro,AR-R,annual,2021,gas oil combustion consumption by to the public,654.1678390799999,TJ,CO2,74100.0,kg/TJ,48473836.87582799,kg +53cc4abf-25cd-3ce4-a3bf-7bcb0ba49f81,SESCO,II.1.1,Rio Negro,AR-R,annual,2021,gas oil combustion consumption by to the public,654.1678390799999,TJ,CH4,3.9,kg/TJ,2551.2545724119996,kg +53cc4abf-25cd-3ce4-a3bf-7bcb0ba49f81,SESCO,II.1.1,Rio Negro,AR-R,annual,2021,gas oil combustion consumption by to the public,654.1678390799999,TJ,N2O,3.9,kg/TJ,2551.2545724119996,kg +e252aeee-054e-3ce7-9869-d9663d053e2c,SESCO,II.1.1,San Juan,AR-J,annual,2021,gas oil combustion consumption by to the public,136.1364606,TJ,CO2,74100.0,kg/TJ,10087711.73046,kg +a88f8eba-b624-3265-9a6e-6efe1299d1c2,SESCO,II.1.1,San Juan,AR-J,annual,2021,gas oil combustion consumption by to the public,136.1364606,TJ,CH4,3.9,kg/TJ,530.9321963399999,kg +a88f8eba-b624-3265-9a6e-6efe1299d1c2,SESCO,II.1.1,San Juan,AR-J,annual,2021,gas oil combustion consumption by to the public,136.1364606,TJ,N2O,3.9,kg/TJ,530.9321963399999,kg +3d8558f4-39c4-383b-9ea1-0abdceadf41b,SESCO,II.1.1,San Luis,AR-D,annual,2021,gas oil combustion consumption by to the public,69.0363366,TJ,CO2,74100.0,kg/TJ,5115592.54206,kg +4255e770-e9c8-3816-849c-71593c70a15a,SESCO,II.1.1,San Luis,AR-D,annual,2021,gas oil combustion consumption by to the public,69.0363366,TJ,CH4,3.9,kg/TJ,269.24171273999997,kg +4255e770-e9c8-3816-849c-71593c70a15a,SESCO,II.1.1,San Luis,AR-D,annual,2021,gas oil combustion consumption by to the public,69.0363366,TJ,N2O,3.9,kg/TJ,269.24171273999997,kg +b1ffebd4-0161-350c-9754-2229b6460ed5,SESCO,II.1.1,Santa Fe,AR-S,annual,2021,gas oil combustion consumption by to the public,1424.25776136,TJ,CO2,74100.0,kg/TJ,105537500.11677599,kg +bc9cfd48-8869-3e23-8a12-cf01ef338682,SESCO,II.1.1,Santa Fe,AR-S,annual,2021,gas oil combustion consumption by to the public,1424.25776136,TJ,CH4,3.9,kg/TJ,5554.605269303999,kg +bc9cfd48-8869-3e23-8a12-cf01ef338682,SESCO,II.1.1,Santa Fe,AR-S,annual,2021,gas oil combustion consumption by to the public,1424.25776136,TJ,N2O,3.9,kg/TJ,5554.605269303999,kg +b749c4dc-26ea-3480-8239-db0c5d80ad1b,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2021,gas oil combustion consumption by to the public,381.95559947999993,TJ,CO2,74100.0,kg/TJ,28302909.921467993,kg +5f4572c6-7030-3e1f-8ccd-9ab8ab981170,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2021,gas oil combustion consumption by to the public,381.95559947999993,TJ,CH4,3.9,kg/TJ,1489.6268379719997,kg +5f4572c6-7030-3e1f-8ccd-9ab8ab981170,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2021,gas oil combustion consumption by to the public,381.95559947999993,TJ,N2O,3.9,kg/TJ,1489.6268379719997,kg +eec884b4-8ed9-3e1b-b7db-482f050ec6f5,SESCO,II.1.1,Buenos Aires,AR-B,annual,2021,gas oil combustion consumption by to the public,1402.98427332,TJ,CO2,74100.0,kg/TJ,103961134.65301201,kg +91e6e67c-cdd5-30af-bb40-b7de0177fe7b,SESCO,II.1.1,Buenos Aires,AR-B,annual,2021,gas oil combustion consumption by to the public,1402.98427332,TJ,CH4,3.9,kg/TJ,5471.638665948,kg +91e6e67c-cdd5-30af-bb40-b7de0177fe7b,SESCO,II.1.1,Buenos Aires,AR-B,annual,2021,gas oil combustion consumption by to the public,1402.98427332,TJ,N2O,3.9,kg/TJ,5471.638665948,kg +520c9cfa-07fa-3041-9b63-bbba4dca844e,SESCO,II.1.1,Capital Federal,AR-C,annual,2021,gas oil combustion consumption by to the public,41.35591908,TJ,CO2,74100.0,kg/TJ,3064473.603828,kg +a3b114c5-de0c-38d1-8d33-cfba8b6918b8,SESCO,II.1.1,Capital Federal,AR-C,annual,2021,gas oil combustion consumption by to the public,41.35591908,TJ,CH4,3.9,kg/TJ,161.288084412,kg +a3b114c5-de0c-38d1-8d33-cfba8b6918b8,SESCO,II.1.1,Capital Federal,AR-C,annual,2021,gas oil combustion consumption by to the public,41.35591908,TJ,N2O,3.9,kg/TJ,161.288084412,kg +27b435f8-c3b4-3122-a6d9-5b68de9530db,SESCO,II.1.1,Catamarca,AR-K,annual,2021,gas oil combustion consumption by to the public,5.79830748,TJ,CO2,74100.0,kg/TJ,429654.584268,kg +fb529d69-f209-3c97-80bf-7c77e7b773eb,SESCO,II.1.1,Catamarca,AR-K,annual,2021,gas oil combustion consumption by to the public,5.79830748,TJ,CH4,3.9,kg/TJ,22.613399172,kg +fb529d69-f209-3c97-80bf-7c77e7b773eb,SESCO,II.1.1,Catamarca,AR-K,annual,2021,gas oil combustion consumption by to the public,5.79830748,TJ,N2O,3.9,kg/TJ,22.613399172,kg +641afc3b-161f-3f00-81c7-9cbd26dc2697,SESCO,II.1.1,Chaco,AR-H,annual,2021,gas oil combustion consumption by to the public,28.10609172,TJ,CO2,74100.0,kg/TJ,2082661.396452,kg +be905b36-dbb4-3492-889c-b158f1fe1eef,SESCO,II.1.1,Chaco,AR-H,annual,2021,gas oil combustion consumption by to the public,28.10609172,TJ,CH4,3.9,kg/TJ,109.613757708,kg +be905b36-dbb4-3492-889c-b158f1fe1eef,SESCO,II.1.1,Chaco,AR-H,annual,2021,gas oil combustion consumption by to the public,28.10609172,TJ,N2O,3.9,kg/TJ,109.613757708,kg +65b6cf9c-dfb0-375f-b0a5-b3952c335285,SESCO,II.1.1,Chubut,AR-U,annual,2021,gas oil combustion consumption by to the public,222.57422124,TJ,CO2,74100.0,kg/TJ,16492749.793884002,kg +a697d3d0-61bf-30e6-ae4d-a72b0c8dde5a,SESCO,II.1.1,Chubut,AR-U,annual,2021,gas oil combustion consumption by to the public,222.57422124,TJ,CH4,3.9,kg/TJ,868.039462836,kg +a697d3d0-61bf-30e6-ae4d-a72b0c8dde5a,SESCO,II.1.1,Chubut,AR-U,annual,2021,gas oil combustion consumption by to the public,222.57422124,TJ,N2O,3.9,kg/TJ,868.039462836,kg +56d379ef-9a38-36ee-adc9-d8e6cfd77db3,SESCO,II.1.1,Corrientes,AR-W,annual,2021,gas oil combustion consumption by to the public,87.86908788,TJ,CO2,74100.0,kg/TJ,6511099.411908,kg +e44a9756-edfb-33d9-9fc3-9d482386e280,SESCO,II.1.1,Corrientes,AR-W,annual,2021,gas oil combustion consumption by to the public,87.86908788,TJ,CH4,3.9,kg/TJ,342.689442732,kg +e44a9756-edfb-33d9-9fc3-9d482386e280,SESCO,II.1.1,Corrientes,AR-W,annual,2021,gas oil combustion consumption by to the public,87.86908788,TJ,N2O,3.9,kg/TJ,342.689442732,kg +cf1aac33-83a3-3cee-853b-547fca416b16,SESCO,II.1.1,Córdoba,AR-X,annual,2021,gas oil combustion consumption by to the public,227.91626088,TJ,CO2,74100.0,kg/TJ,16888594.931208,kg +d9423eba-4f52-37c9-a2ce-37ac32e32401,SESCO,II.1.1,Córdoba,AR-X,annual,2021,gas oil combustion consumption by to the public,227.91626088,TJ,CH4,3.9,kg/TJ,888.873417432,kg +d9423eba-4f52-37c9-a2ce-37ac32e32401,SESCO,II.1.1,Córdoba,AR-X,annual,2021,gas oil combustion consumption by to the public,227.91626088,TJ,N2O,3.9,kg/TJ,888.873417432,kg +7e1f4763-3df5-34d7-884a-5932fcede7e6,SESCO,II.1.1,Entre Rios,AR-E,annual,2021,gas oil combustion consumption by to the public,218.63605764000002,TJ,CO2,74100.0,kg/TJ,16200931.871124001,kg +31e7b334-02f3-34a7-8738-c75cfb2b94f8,SESCO,II.1.1,Entre Rios,AR-E,annual,2021,gas oil combustion consumption by to the public,218.63605764000002,TJ,CH4,3.9,kg/TJ,852.6806247960001,kg +31e7b334-02f3-34a7-8738-c75cfb2b94f8,SESCO,II.1.1,Entre Rios,AR-E,annual,2021,gas oil combustion consumption by to the public,218.63605764000002,TJ,N2O,3.9,kg/TJ,852.6806247960001,kg +ac10e5ce-b35c-3170-8935-c1f5caf4eab3,SESCO,II.1.1,Jujuy,AR-Y,annual,2021,gas oil combustion consumption by to the public,15.94206768,TJ,CO2,74100.0,kg/TJ,1181307.215088,kg +4257ba2b-e82a-3864-8470-715d4721fe18,SESCO,II.1.1,Jujuy,AR-Y,annual,2021,gas oil combustion consumption by to the public,15.94206768,TJ,CH4,3.9,kg/TJ,62.174063952,kg +4257ba2b-e82a-3864-8470-715d4721fe18,SESCO,II.1.1,Jujuy,AR-Y,annual,2021,gas oil combustion consumption by to the public,15.94206768,TJ,N2O,3.9,kg/TJ,62.174063952,kg +19e4d59a-35a2-34dc-a39e-eac104ddce9d,SESCO,II.1.1,La Pampa,AR-L,annual,2021,gas oil combustion consumption by to the public,135.37544831999998,TJ,CO2,74100.0,kg/TJ,10031320.720511999,kg +706a8841-7106-3009-88e5-2f983ac08337,SESCO,II.1.1,La Pampa,AR-L,annual,2021,gas oil combustion consumption by to the public,135.37544831999998,TJ,CH4,3.9,kg/TJ,527.9642484479999,kg +706a8841-7106-3009-88e5-2f983ac08337,SESCO,II.1.1,La Pampa,AR-L,annual,2021,gas oil combustion consumption by to the public,135.37544831999998,TJ,N2O,3.9,kg/TJ,527.9642484479999,kg +bd127eb5-47e8-306e-b8f4-903505283b0c,SESCO,II.1.1,Mendoza,AR-M,annual,2021,gas oil combustion consumption by to the public,29.954604959999998,TJ,CO2,74100.0,kg/TJ,2219636.227536,kg +57b60ff2-bb84-3bc3-9751-c3a902fa98b9,SESCO,II.1.1,Mendoza,AR-M,annual,2021,gas oil combustion consumption by to the public,29.954604959999998,TJ,CH4,3.9,kg/TJ,116.82295934399998,kg +57b60ff2-bb84-3bc3-9751-c3a902fa98b9,SESCO,II.1.1,Mendoza,AR-M,annual,2021,gas oil combustion consumption by to the public,29.954604959999998,TJ,N2O,3.9,kg/TJ,116.82295934399998,kg +be736e7f-d382-3682-946e-266037ac9804,SESCO,II.1.1,Neuquén,AR-Q,annual,2021,gas oil combustion consumption by to the public,231.50091804000002,TJ,CO2,74100.0,kg/TJ,17154218.026764,kg +a3d2283d-8ccb-3e62-8d90-8dae92b26e30,SESCO,II.1.1,Neuquén,AR-Q,annual,2021,gas oil combustion consumption by to the public,231.50091804000002,TJ,CH4,3.9,kg/TJ,902.8535803560001,kg +a3d2283d-8ccb-3e62-8d90-8dae92b26e30,SESCO,II.1.1,Neuquén,AR-Q,annual,2021,gas oil combustion consumption by to the public,231.50091804000002,TJ,N2O,3.9,kg/TJ,902.8535803560001,kg +4ffa2919-a95b-3b65-ba09-afabee06ee5d,SESCO,II.1.1,Rio Negro,AR-R,annual,2021,gas oil combustion consumption by to the public,298.99717008,TJ,CO2,74100.0,kg/TJ,22155690.302928,kg +f9681f2b-b2e5-32c1-86ca-f39b19ebf9e7,SESCO,II.1.1,Rio Negro,AR-R,annual,2021,gas oil combustion consumption by to the public,298.99717008,TJ,CH4,3.9,kg/TJ,1166.088963312,kg +f9681f2b-b2e5-32c1-86ca-f39b19ebf9e7,SESCO,II.1.1,Rio Negro,AR-R,annual,2021,gas oil combustion consumption by to the public,298.99717008,TJ,N2O,3.9,kg/TJ,1166.088963312,kg +7d53814c-055b-3da9-b31a-d245a4881249,SESCO,II.1.1,San Juan,AR-J,annual,2021,gas oil combustion consumption by to the public,37.533195,TJ,CO2,74100.0,kg/TJ,2781209.7495,kg +0dc27725-89b7-3e3d-8dab-8a5bf8d0192d,SESCO,II.1.1,San Juan,AR-J,annual,2021,gas oil combustion consumption by to the public,37.533195,TJ,CH4,3.9,kg/TJ,146.3794605,kg +0dc27725-89b7-3e3d-8dab-8a5bf8d0192d,SESCO,II.1.1,San Juan,AR-J,annual,2021,gas oil combustion consumption by to the public,37.533195,TJ,N2O,3.9,kg/TJ,146.3794605,kg +d6099a96-f21f-3ddf-aae6-ccf2ffc11999,SESCO,II.1.1,San Luis,AR-D,annual,2021,gas oil combustion consumption by to the public,18.05703816,TJ,CO2,74100.0,kg/TJ,1338026.527656,kg +f9a4ca30-1316-38c1-a3ac-0393c97c81c1,SESCO,II.1.1,San Luis,AR-D,annual,2021,gas oil combustion consumption by to the public,18.05703816,TJ,CH4,3.9,kg/TJ,70.422448824,kg +f9a4ca30-1316-38c1-a3ac-0393c97c81c1,SESCO,II.1.1,San Luis,AR-D,annual,2021,gas oil combustion consumption by to the public,18.05703816,TJ,N2O,3.9,kg/TJ,70.422448824,kg +452bdede-f856-3787-8990-97c2c36f0299,SESCO,II.1.1,Santa Fe,AR-S,annual,2021,gas oil combustion consumption by to the public,371.15499708,TJ,CO2,74100.0,kg/TJ,27502585.283627998,kg +fc9fc319-e88d-39ab-acf5-4528c2c8619b,SESCO,II.1.1,Santa Fe,AR-S,annual,2021,gas oil combustion consumption by to the public,371.15499708,TJ,CH4,3.9,kg/TJ,1447.504488612,kg +fc9fc319-e88d-39ab-acf5-4528c2c8619b,SESCO,II.1.1,Santa Fe,AR-S,annual,2021,gas oil combustion consumption by to the public,371.15499708,TJ,N2O,3.9,kg/TJ,1447.504488612,kg +c4ab6e5e-0212-3adc-bc31-37f78226dd05,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2021,gas oil combustion consumption by to the public,34.67920932,TJ,CO2,74100.0,kg/TJ,2569729.4106119997,kg +35476e2a-2abb-3642-baa9-7cd295035c24,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2021,gas oil combustion consumption by to the public,34.67920932,TJ,CH4,3.9,kg/TJ,135.248916348,kg +35476e2a-2abb-3642-baa9-7cd295035c24,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2021,gas oil combustion consumption by to the public,34.67920932,TJ,N2O,3.9,kg/TJ,135.248916348,kg +3c0ba326-5f62-3458-84d2-1f30ffa2068e,SESCO,II.5.1,Buenos Aires,AR-B,annual,2021,gasoline combustion consumption by agriculture machines,40.6674,TJ,CO2,69300.0,kg/TJ,2818250.82,kg +82c88186-f412-356e-b690-1fb6a18f4148,SESCO,II.5.1,Buenos Aires,AR-B,annual,2021,gasoline combustion consumption by agriculture machines,40.6674,TJ,CH4,33.0,kg/TJ,1342.0242,kg +7bdacd97-1717-3a70-9734-456bf1614e05,SESCO,II.5.1,Buenos Aires,AR-B,annual,2021,gasoline combustion consumption by agriculture machines,40.6674,TJ,N2O,3.2,kg/TJ,130.13568,kg +a248e754-2b25-3484-8fa0-7ff73fdfb61b,SESCO,II.5.1,Buenos Aires,AR-B,annual,2021,gas oil combustion consumption by agriculture machines,9945.75036,TJ,CO2,74100.0,kg/TJ,736980101.676,kg +73207639-5891-3340-99e2-1b045f2ccd81,SESCO,II.5.1,Buenos Aires,AR-B,annual,2021,gas oil combustion consumption by agriculture machines,9945.75036,TJ,CH4,3.9,kg/TJ,38788.426404,kg +73207639-5891-3340-99e2-1b045f2ccd81,SESCO,II.5.1,Buenos Aires,AR-B,annual,2021,gas oil combustion consumption by agriculture machines,9945.75036,TJ,N2O,3.9,kg/TJ,38788.426404,kg +3e7e2e13-89c2-373a-82de-ea51276c781d,SESCO,II.5.1,Capital Federal,AR-C,annual,2021,gas oil combustion consumption by agriculture machines,59.85084,TJ,CO2,74100.0,kg/TJ,4434947.244,kg +7c3f423f-aa2d-3e22-a6c6-c92b4b01567f,SESCO,II.5.1,Capital Federal,AR-C,annual,2021,gas oil combustion consumption by agriculture machines,59.85084,TJ,CH4,3.9,kg/TJ,233.418276,kg +7c3f423f-aa2d-3e22-a6c6-c92b4b01567f,SESCO,II.5.1,Capital Federal,AR-C,annual,2021,gas oil combustion consumption by agriculture machines,59.85084,TJ,N2O,3.9,kg/TJ,233.418276,kg +5919b280-7167-3fb7-82e6-9201eae2a7e1,SESCO,II.5.1,Catamarca,AR-K,annual,2021,gas oil combustion consumption by agriculture machines,186.5598,TJ,CO2,74100.0,kg/TJ,13824081.18,kg +4b93191c-5b5e-32f8-ac33-bfde77d4ef85,SESCO,II.5.1,Catamarca,AR-K,annual,2021,gas oil combustion consumption by agriculture machines,186.5598,TJ,CH4,3.9,kg/TJ,727.58322,kg +4b93191c-5b5e-32f8-ac33-bfde77d4ef85,SESCO,II.5.1,Catamarca,AR-K,annual,2021,gas oil combustion consumption by agriculture machines,186.5598,TJ,N2O,3.9,kg/TJ,727.58322,kg +ede8d717-69f8-39c6-ab94-78ea73da5ddf,SESCO,II.5.1,Chaco,AR-H,annual,2021,gas oil combustion consumption by agriculture machines,869.8418399999999,TJ,CO2,74100.0,kg/TJ,64455280.344,kg +676bbd01-1f99-34a1-b603-4b473de9176e,SESCO,II.5.1,Chaco,AR-H,annual,2021,gas oil combustion consumption by agriculture machines,869.8418399999999,TJ,CH4,3.9,kg/TJ,3392.383176,kg +676bbd01-1f99-34a1-b603-4b473de9176e,SESCO,II.5.1,Chaco,AR-H,annual,2021,gas oil combustion consumption by agriculture machines,869.8418399999999,TJ,N2O,3.9,kg/TJ,3392.383176,kg +51d6eecc-6bf1-3069-b000-335f4876f388,SESCO,II.5.1,Chubut,AR-U,annual,2021,gas oil combustion consumption by agriculture machines,0.03612,TJ,CO2,74100.0,kg/TJ,2676.4919999999997,kg +04b2eb3f-6357-332f-88bd-75395b880319,SESCO,II.5.1,Chubut,AR-U,annual,2021,gas oil combustion consumption by agriculture machines,0.03612,TJ,CH4,3.9,kg/TJ,0.140868,kg +04b2eb3f-6357-332f-88bd-75395b880319,SESCO,II.5.1,Chubut,AR-U,annual,2021,gas oil combustion consumption by agriculture machines,0.03612,TJ,N2O,3.9,kg/TJ,0.140868,kg +63dbad72-b037-3475-91e3-846b9aed0ba8,SESCO,II.5.1,Corrientes,AR-W,annual,2021,gas oil combustion consumption by agriculture machines,738.5456399999999,TJ,CO2,74100.0,kg/TJ,54726231.923999995,kg +2cee9e09-9b22-3fcc-beba-9a9f7a2869b7,SESCO,II.5.1,Corrientes,AR-W,annual,2021,gas oil combustion consumption by agriculture machines,738.5456399999999,TJ,CH4,3.9,kg/TJ,2880.3279959999995,kg +2cee9e09-9b22-3fcc-beba-9a9f7a2869b7,SESCO,II.5.1,Corrientes,AR-W,annual,2021,gas oil combustion consumption by agriculture machines,738.5456399999999,TJ,N2O,3.9,kg/TJ,2880.3279959999995,kg +90bf2d74-89c8-3502-a1dc-dc1a9d8abd89,SESCO,II.5.1,Córdoba,AR-X,annual,2021,gas oil combustion consumption by agriculture machines,7531.48956,TJ,CO2,74100.0,kg/TJ,558083376.396,kg +7293f213-3f87-3800-81f3-fd19420ca93d,SESCO,II.5.1,Córdoba,AR-X,annual,2021,gas oil combustion consumption by agriculture machines,7531.48956,TJ,CH4,3.9,kg/TJ,29372.809284,kg +7293f213-3f87-3800-81f3-fd19420ca93d,SESCO,II.5.1,Córdoba,AR-X,annual,2021,gas oil combustion consumption by agriculture machines,7531.48956,TJ,N2O,3.9,kg/TJ,29372.809284,kg +5977e7c9-bc40-3d44-b833-de6ea357a938,SESCO,II.5.1,Entre Rios,AR-E,annual,2021,gas oil combustion consumption by agriculture machines,2215.962,TJ,CO2,74100.0,kg/TJ,164202784.2,kg +b4ca981e-22d6-3552-9df9-d2383c1c0b06,SESCO,II.5.1,Entre Rios,AR-E,annual,2021,gas oil combustion consumption by agriculture machines,2215.962,TJ,CH4,3.9,kg/TJ,8642.2518,kg +b4ca981e-22d6-3552-9df9-d2383c1c0b06,SESCO,II.5.1,Entre Rios,AR-E,annual,2021,gas oil combustion consumption by agriculture machines,2215.962,TJ,N2O,3.9,kg/TJ,8642.2518,kg +3d594888-1633-3b91-95d0-b6b90e65f524,SESCO,II.5.1,Formosa,AR-P,annual,2021,gas oil combustion consumption by agriculture machines,285.60084,TJ,CO2,74100.0,kg/TJ,21163022.244,kg +2c4aed0c-c426-36df-9c29-b3285a6f5d94,SESCO,II.5.1,Formosa,AR-P,annual,2021,gas oil combustion consumption by agriculture machines,285.60084,TJ,CH4,3.9,kg/TJ,1113.843276,kg +2c4aed0c-c426-36df-9c29-b3285a6f5d94,SESCO,II.5.1,Formosa,AR-P,annual,2021,gas oil combustion consumption by agriculture machines,285.60084,TJ,N2O,3.9,kg/TJ,1113.843276,kg +21679a9a-8373-3188-a98a-4ea278dacb5f,SESCO,II.5.1,Jujuy,AR-Y,annual,2021,gas oil combustion consumption by agriculture machines,1030.53972,TJ,CO2,74100.0,kg/TJ,76362993.252,kg +82b298c6-8ea8-31cd-aaf4-d7dc8e5b10cc,SESCO,II.5.1,Jujuy,AR-Y,annual,2021,gas oil combustion consumption by agriculture machines,1030.53972,TJ,CH4,3.9,kg/TJ,4019.104908,kg +82b298c6-8ea8-31cd-aaf4-d7dc8e5b10cc,SESCO,II.5.1,Jujuy,AR-Y,annual,2021,gas oil combustion consumption by agriculture machines,1030.53972,TJ,N2O,3.9,kg/TJ,4019.104908,kg +dfd2d573-480b-3426-801c-541984a74bff,SESCO,II.5.1,La Pampa,AR-L,annual,2021,gas oil combustion consumption by agriculture machines,1548.53664,TJ,CO2,74100.0,kg/TJ,114746565.024,kg +f85994ae-1b71-3759-92f1-07f4e8df2231,SESCO,II.5.1,La Pampa,AR-L,annual,2021,gas oil combustion consumption by agriculture machines,1548.53664,TJ,CH4,3.9,kg/TJ,6039.292896,kg +f85994ae-1b71-3759-92f1-07f4e8df2231,SESCO,II.5.1,La Pampa,AR-L,annual,2021,gas oil combustion consumption by agriculture machines,1548.53664,TJ,N2O,3.9,kg/TJ,6039.292896,kg +d58a7436-39c3-35ef-af5f-cd2a4b00eee4,SESCO,II.5.1,La Rioja,AR-F,annual,2021,gas oil combustion consumption by agriculture machines,141.26532,TJ,CO2,74100.0,kg/TJ,10467760.212,kg +d182fba2-8694-3f58-876e-673d5481ec26,SESCO,II.5.1,La Rioja,AR-F,annual,2021,gas oil combustion consumption by agriculture machines,141.26532,TJ,CH4,3.9,kg/TJ,550.934748,kg +d182fba2-8694-3f58-876e-673d5481ec26,SESCO,II.5.1,La Rioja,AR-F,annual,2021,gas oil combustion consumption by agriculture machines,141.26532,TJ,N2O,3.9,kg/TJ,550.934748,kg +9224f984-dd5c-38ce-9826-f240d4e2b89e,SESCO,II.5.1,Mendoza,AR-M,annual,2021,gas oil combustion consumption by agriculture machines,2160.59004,TJ,CO2,74100.0,kg/TJ,160099721.96400002,kg +219b3984-23fb-3748-ad8d-458391413d8f,SESCO,II.5.1,Mendoza,AR-M,annual,2021,gas oil combustion consumption by agriculture machines,2160.59004,TJ,CH4,3.9,kg/TJ,8426.301156,kg +219b3984-23fb-3748-ad8d-458391413d8f,SESCO,II.5.1,Mendoza,AR-M,annual,2021,gas oil combustion consumption by agriculture machines,2160.59004,TJ,N2O,3.9,kg/TJ,8426.301156,kg +74a3cf64-6f8c-359f-89b4-6ec0f52d897a,SESCO,II.5.1,Misiones,AR-N,annual,2021,gas oil combustion consumption by agriculture machines,1116.61368,TJ,CO2,74100.0,kg/TJ,82741073.688,kg +4adf9e33-63a7-3576-9424-239142dbf077,SESCO,II.5.1,Misiones,AR-N,annual,2021,gas oil combustion consumption by agriculture machines,1116.61368,TJ,CH4,3.9,kg/TJ,4354.793352,kg +4adf9e33-63a7-3576-9424-239142dbf077,SESCO,II.5.1,Misiones,AR-N,annual,2021,gas oil combustion consumption by agriculture machines,1116.61368,TJ,N2O,3.9,kg/TJ,4354.793352,kg +15811c84-9a75-35f4-ba79-8f6b70664bb1,SESCO,II.5.1,Rio Negro,AR-R,annual,2021,gas oil combustion consumption by agriculture machines,253.3818,TJ,CO2,74100.0,kg/TJ,18775591.38,kg +5a592aa2-0833-3988-8a1b-f49388815342,SESCO,II.5.1,Rio Negro,AR-R,annual,2021,gas oil combustion consumption by agriculture machines,253.3818,TJ,CH4,3.9,kg/TJ,988.18902,kg +5a592aa2-0833-3988-8a1b-f49388815342,SESCO,II.5.1,Rio Negro,AR-R,annual,2021,gas oil combustion consumption by agriculture machines,253.3818,TJ,N2O,3.9,kg/TJ,988.18902,kg +3aed6ef1-4512-3912-85d2-0a8605790bad,SESCO,II.5.1,Salta,AR-A,annual,2021,gas oil combustion consumption by agriculture machines,1486.73532,TJ,CO2,74100.0,kg/TJ,110167087.212,kg +8d987d7b-3eaf-38a7-a398-55bddb3933f4,SESCO,II.5.1,Salta,AR-A,annual,2021,gas oil combustion consumption by agriculture machines,1486.73532,TJ,CH4,3.9,kg/TJ,5798.267748,kg +8d987d7b-3eaf-38a7-a398-55bddb3933f4,SESCO,II.5.1,Salta,AR-A,annual,2021,gas oil combustion consumption by agriculture machines,1486.73532,TJ,N2O,3.9,kg/TJ,5798.267748,kg +1e5d7e8a-f39c-3ac4-b664-202011c3cbf7,SESCO,II.5.1,San Juan,AR-J,annual,2021,gas oil combustion consumption by agriculture machines,452.72808,TJ,CO2,74100.0,kg/TJ,33547150.728,kg +41cb1d5b-307e-30a2-8ff3-1acbba4f709b,SESCO,II.5.1,San Juan,AR-J,annual,2021,gas oil combustion consumption by agriculture machines,452.72808,TJ,CH4,3.9,kg/TJ,1765.639512,kg +41cb1d5b-307e-30a2-8ff3-1acbba4f709b,SESCO,II.5.1,San Juan,AR-J,annual,2021,gas oil combustion consumption by agriculture machines,452.72808,TJ,N2O,3.9,kg/TJ,1765.639512,kg +14b8398e-7777-3909-b62c-f66a10695d28,SESCO,II.5.1,San Luis,AR-D,annual,2021,gas oil combustion consumption by agriculture machines,326.95824,TJ,CO2,74100.0,kg/TJ,24227605.584,kg +6be77171-8613-3e9c-90e6-5349af0ea0e6,SESCO,II.5.1,San Luis,AR-D,annual,2021,gas oil combustion consumption by agriculture machines,326.95824,TJ,CH4,3.9,kg/TJ,1275.1371359999998,kg +6be77171-8613-3e9c-90e6-5349af0ea0e6,SESCO,II.5.1,San Luis,AR-D,annual,2021,gas oil combustion consumption by agriculture machines,326.95824,TJ,N2O,3.9,kg/TJ,1275.1371359999998,kg +4f70296a-3e0c-3c93-a833-2329ecfb024f,SESCO,II.5.1,Santa Fe,AR-S,annual,2021,gas oil combustion consumption by agriculture machines,7490.27664,TJ,CO2,74100.0,kg/TJ,555029499.024,kg +af6c0b34-ce90-3021-acbf-be3921a3a411,SESCO,II.5.1,Santa Fe,AR-S,annual,2021,gas oil combustion consumption by agriculture machines,7490.27664,TJ,CH4,3.9,kg/TJ,29212.078896,kg +af6c0b34-ce90-3021-acbf-be3921a3a411,SESCO,II.5.1,Santa Fe,AR-S,annual,2021,gas oil combustion consumption by agriculture machines,7490.27664,TJ,N2O,3.9,kg/TJ,29212.078896,kg +f61eaec0-c734-3697-a8e1-66a50aca5f91,SESCO,II.5.1,Santiago del Estero,AR-G,annual,2021,gas oil combustion consumption by agriculture machines,1627.3866,TJ,CO2,74100.0,kg/TJ,120589347.06,kg +1c099f8f-420b-38c5-9727-6dc78e1d0f7e,SESCO,II.5.1,Santiago del Estero,AR-G,annual,2021,gas oil combustion consumption by agriculture machines,1627.3866,TJ,CH4,3.9,kg/TJ,6346.80774,kg +1c099f8f-420b-38c5-9727-6dc78e1d0f7e,SESCO,II.5.1,Santiago del Estero,AR-G,annual,2021,gas oil combustion consumption by agriculture machines,1627.3866,TJ,N2O,3.9,kg/TJ,6346.80774,kg +1d54fe75-9047-36b7-bea4-6f6a2f76b456,SESCO,II.5.1,Tucuman,AR-T,annual,2021,gas oil combustion consumption by agriculture machines,1323.68964,TJ,CO2,74100.0,kg/TJ,98085402.324,kg +5c530932-c8e9-3c6e-b59f-fb8e62b80225,SESCO,II.5.1,Tucuman,AR-T,annual,2021,gas oil combustion consumption by agriculture machines,1323.68964,TJ,CH4,3.9,kg/TJ,5162.389596,kg +5c530932-c8e9-3c6e-b59f-fb8e62b80225,SESCO,II.5.1,Tucuman,AR-T,annual,2021,gas oil combustion consumption by agriculture machines,1323.68964,TJ,N2O,3.9,kg/TJ,5162.389596,kg +25696e11-71f4-3379-a067-7b3413a63844,SESCO,II.5.1,Buenos Aires,AR-B,annual,2021,gas oil combustion consumption by agriculture machines,929.25924,TJ,CO2,74100.0,kg/TJ,68858109.684,kg +a828e021-983c-3239-8e6d-1e1be912f1be,SESCO,II.5.1,Buenos Aires,AR-B,annual,2021,gas oil combustion consumption by agriculture machines,929.25924,TJ,CH4,3.9,kg/TJ,3624.111036,kg +a828e021-983c-3239-8e6d-1e1be912f1be,SESCO,II.5.1,Buenos Aires,AR-B,annual,2021,gas oil combustion consumption by agriculture machines,929.25924,TJ,N2O,3.9,kg/TJ,3624.111036,kg +af5703e1-faeb-38d1-adc2-ab86dde16bc7,SESCO,II.5.1,Capital Federal,AR-C,annual,2021,gas oil combustion consumption by agriculture machines,7.72968,TJ,CO2,74100.0,kg/TJ,572769.2880000001,kg +ce4133ae-5ba1-38c5-a264-f62b47c1aeee,SESCO,II.5.1,Capital Federal,AR-C,annual,2021,gas oil combustion consumption by agriculture machines,7.72968,TJ,CH4,3.9,kg/TJ,30.145751999999998,kg +ce4133ae-5ba1-38c5-a264-f62b47c1aeee,SESCO,II.5.1,Capital Federal,AR-C,annual,2021,gas oil combustion consumption by agriculture machines,7.72968,TJ,N2O,3.9,kg/TJ,30.145751999999998,kg +089d7448-ec84-3315-b1a8-ff89c522838a,SESCO,II.5.1,Catamarca,AR-K,annual,2021,gas oil combustion consumption by agriculture machines,58.8756,TJ,CO2,74100.0,kg/TJ,4362681.96,kg +a93a1099-3d9d-386d-84e3-015352ae6190,SESCO,II.5.1,Catamarca,AR-K,annual,2021,gas oil combustion consumption by agriculture machines,58.8756,TJ,CH4,3.9,kg/TJ,229.61484,kg +a93a1099-3d9d-386d-84e3-015352ae6190,SESCO,II.5.1,Catamarca,AR-K,annual,2021,gas oil combustion consumption by agriculture machines,58.8756,TJ,N2O,3.9,kg/TJ,229.61484,kg +0e29ffe1-3af8-3dda-a4f2-d36bfb134ba1,SESCO,II.5.1,Chaco,AR-H,annual,2021,gas oil combustion consumption by agriculture machines,65.44944,TJ,CO2,74100.0,kg/TJ,4849803.504,kg +3ee6e21d-78f0-36f2-b089-4b36cbb38171,SESCO,II.5.1,Chaco,AR-H,annual,2021,gas oil combustion consumption by agriculture machines,65.44944,TJ,CH4,3.9,kg/TJ,255.25281599999997,kg +3ee6e21d-78f0-36f2-b089-4b36cbb38171,SESCO,II.5.1,Chaco,AR-H,annual,2021,gas oil combustion consumption by agriculture machines,65.44944,TJ,N2O,3.9,kg/TJ,255.25281599999997,kg +b81e13cf-4e4a-3aaa-87c3-61c91235e23a,SESCO,II.5.1,Corrientes,AR-W,annual,2021,gas oil combustion consumption by agriculture machines,58.83948,TJ,CO2,74100.0,kg/TJ,4360005.468,kg +0a0206f1-8170-30b9-9a8e-edaea96270b5,SESCO,II.5.1,Corrientes,AR-W,annual,2021,gas oil combustion consumption by agriculture machines,58.83948,TJ,CH4,3.9,kg/TJ,229.473972,kg +0a0206f1-8170-30b9-9a8e-edaea96270b5,SESCO,II.5.1,Corrientes,AR-W,annual,2021,gas oil combustion consumption by agriculture machines,58.83948,TJ,N2O,3.9,kg/TJ,229.473972,kg +d6047409-6278-3241-b8ab-62d9a0e8a4ed,SESCO,II.5.1,Córdoba,AR-X,annual,2021,gas oil combustion consumption by agriculture machines,764.73264,TJ,CO2,74100.0,kg/TJ,56666688.624,kg +2ba21859-f503-3717-a5ba-d62c7a6b9947,SESCO,II.5.1,Córdoba,AR-X,annual,2021,gas oil combustion consumption by agriculture machines,764.73264,TJ,CH4,3.9,kg/TJ,2982.4572959999996,kg +2ba21859-f503-3717-a5ba-d62c7a6b9947,SESCO,II.5.1,Córdoba,AR-X,annual,2021,gas oil combustion consumption by agriculture machines,764.73264,TJ,N2O,3.9,kg/TJ,2982.4572959999996,kg +f379576b-6eba-3fa3-b8f3-f7c9d332f21f,SESCO,II.5.1,Entre Rios,AR-E,annual,2021,gas oil combustion consumption by agriculture machines,87.591,TJ,CO2,74100.0,kg/TJ,6490493.1,kg +123e2523-d0d4-3ee8-aada-c20dab0decb0,SESCO,II.5.1,Entre Rios,AR-E,annual,2021,gas oil combustion consumption by agriculture machines,87.591,TJ,CH4,3.9,kg/TJ,341.6049,kg +123e2523-d0d4-3ee8-aada-c20dab0decb0,SESCO,II.5.1,Entre Rios,AR-E,annual,2021,gas oil combustion consumption by agriculture machines,87.591,TJ,N2O,3.9,kg/TJ,341.6049,kg +ea151082-bab8-3804-aa4b-64224791d3d4,SESCO,II.5.1,Formosa,AR-P,annual,2021,gas oil combustion consumption by agriculture machines,50.78472,TJ,CO2,74100.0,kg/TJ,3763147.752,kg +915d31b3-c91a-33c1-a5e7-2a8def0eb6a7,SESCO,II.5.1,Formosa,AR-P,annual,2021,gas oil combustion consumption by agriculture machines,50.78472,TJ,CH4,3.9,kg/TJ,198.060408,kg +915d31b3-c91a-33c1-a5e7-2a8def0eb6a7,SESCO,II.5.1,Formosa,AR-P,annual,2021,gas oil combustion consumption by agriculture machines,50.78472,TJ,N2O,3.9,kg/TJ,198.060408,kg +6f21b1ff-f903-3fd6-8c1f-5f32377ace4b,SESCO,II.5.1,Jujuy,AR-Y,annual,2021,gas oil combustion consumption by agriculture machines,48.50916,TJ,CO2,74100.0,kg/TJ,3594528.756,kg +baf03f19-1063-3d08-9813-82d50a1da787,SESCO,II.5.1,Jujuy,AR-Y,annual,2021,gas oil combustion consumption by agriculture machines,48.50916,TJ,CH4,3.9,kg/TJ,189.185724,kg +baf03f19-1063-3d08-9813-82d50a1da787,SESCO,II.5.1,Jujuy,AR-Y,annual,2021,gas oil combustion consumption by agriculture machines,48.50916,TJ,N2O,3.9,kg/TJ,189.185724,kg +b9b610e5-a2ab-3717-a46e-0ae3cafb6c0a,SESCO,II.5.1,La Pampa,AR-L,annual,2021,gas oil combustion consumption by agriculture machines,200.35764,TJ,CO2,74100.0,kg/TJ,14846501.124,kg +8133a3a0-0a1c-392d-97ee-954d06808857,SESCO,II.5.1,La Pampa,AR-L,annual,2021,gas oil combustion consumption by agriculture machines,200.35764,TJ,CH4,3.9,kg/TJ,781.394796,kg +8133a3a0-0a1c-392d-97ee-954d06808857,SESCO,II.5.1,La Pampa,AR-L,annual,2021,gas oil combustion consumption by agriculture machines,200.35764,TJ,N2O,3.9,kg/TJ,781.394796,kg +11bc756a-69b6-3999-a36e-95eff748880c,SESCO,II.5.1,La Rioja,AR-F,annual,2021,gas oil combustion consumption by agriculture machines,22.90008,TJ,CO2,74100.0,kg/TJ,1696895.9279999998,kg +be13f099-7be5-3309-b7f6-f95aee1e03d3,SESCO,II.5.1,La Rioja,AR-F,annual,2021,gas oil combustion consumption by agriculture machines,22.90008,TJ,CH4,3.9,kg/TJ,89.310312,kg +be13f099-7be5-3309-b7f6-f95aee1e03d3,SESCO,II.5.1,La Rioja,AR-F,annual,2021,gas oil combustion consumption by agriculture machines,22.90008,TJ,N2O,3.9,kg/TJ,89.310312,kg +5d9df962-7f28-3bb7-a2fa-facee09a06e0,SESCO,II.5.1,Mendoza,AR-M,annual,2021,gas oil combustion consumption by agriculture machines,327.9696,TJ,CO2,74100.0,kg/TJ,24302547.36,kg +bb0c6f9e-ea16-32e7-969e-7241718228b0,SESCO,II.5.1,Mendoza,AR-M,annual,2021,gas oil combustion consumption by agriculture machines,327.9696,TJ,CH4,3.9,kg/TJ,1279.08144,kg +bb0c6f9e-ea16-32e7-969e-7241718228b0,SESCO,II.5.1,Mendoza,AR-M,annual,2021,gas oil combustion consumption by agriculture machines,327.9696,TJ,N2O,3.9,kg/TJ,1279.08144,kg +4624d6f6-3269-34f3-85e5-a0fcc9559056,SESCO,II.5.1,Misiones,AR-N,annual,2021,gas oil combustion consumption by agriculture machines,149.78964,TJ,CO2,74100.0,kg/TJ,11099412.324,kg +c546682e-6879-32e7-87ea-b6dcc48755ac,SESCO,II.5.1,Misiones,AR-N,annual,2021,gas oil combustion consumption by agriculture machines,149.78964,TJ,CH4,3.9,kg/TJ,584.179596,kg +c546682e-6879-32e7-87ea-b6dcc48755ac,SESCO,II.5.1,Misiones,AR-N,annual,2021,gas oil combustion consumption by agriculture machines,149.78964,TJ,N2O,3.9,kg/TJ,584.179596,kg +50a855e4-4512-340e-8e4a-5bea50c7ac7a,SESCO,II.5.1,Neuquén,AR-Q,annual,2021,gas oil combustion consumption by agriculture machines,20.732879999999998,TJ,CO2,74100.0,kg/TJ,1536306.4079999998,kg +2c877421-832e-3669-bab6-5bb01143ae22,SESCO,II.5.1,Neuquén,AR-Q,annual,2021,gas oil combustion consumption by agriculture machines,20.732879999999998,TJ,CH4,3.9,kg/TJ,80.85823199999999,kg +2c877421-832e-3669-bab6-5bb01143ae22,SESCO,II.5.1,Neuquén,AR-Q,annual,2021,gas oil combustion consumption by agriculture machines,20.732879999999998,TJ,N2O,3.9,kg/TJ,80.85823199999999,kg +89faca66-ddcb-3214-b89c-c853922a51a9,SESCO,II.5.1,Rio Negro,AR-R,annual,2021,gas oil combustion consumption by agriculture machines,64.79928,TJ,CO2,74100.0,kg/TJ,4801626.648,kg +1373d0e2-b19d-372f-9aa8-be0d730d7e07,SESCO,II.5.1,Rio Negro,AR-R,annual,2021,gas oil combustion consumption by agriculture machines,64.79928,TJ,CH4,3.9,kg/TJ,252.71719199999998,kg +1373d0e2-b19d-372f-9aa8-be0d730d7e07,SESCO,II.5.1,Rio Negro,AR-R,annual,2021,gas oil combustion consumption by agriculture machines,64.79928,TJ,N2O,3.9,kg/TJ,252.71719199999998,kg +0889f0d1-805c-3c91-a913-75d7834b053a,SESCO,II.5.1,Salta,AR-A,annual,2021,gas oil combustion consumption by agriculture machines,336.06048,TJ,CO2,74100.0,kg/TJ,24902081.568,kg +320b3788-f6f5-3bbd-a641-f3d88909c29a,SESCO,II.5.1,Salta,AR-A,annual,2021,gas oil combustion consumption by agriculture machines,336.06048,TJ,CH4,3.9,kg/TJ,1310.6358719999998,kg +320b3788-f6f5-3bbd-a641-f3d88909c29a,SESCO,II.5.1,Salta,AR-A,annual,2021,gas oil combustion consumption by agriculture machines,336.06048,TJ,N2O,3.9,kg/TJ,1310.6358719999998,kg +88983041-bd15-3dec-a1e8-f694362c6815,SESCO,II.5.1,San Juan,AR-J,annual,2021,gas oil combustion consumption by agriculture machines,80.22252,TJ,CO2,74100.0,kg/TJ,5944488.732,kg +526f8bdf-e9f0-395b-a470-059bea34983a,SESCO,II.5.1,San Juan,AR-J,annual,2021,gas oil combustion consumption by agriculture machines,80.22252,TJ,CH4,3.9,kg/TJ,312.86782800000003,kg +526f8bdf-e9f0-395b-a470-059bea34983a,SESCO,II.5.1,San Juan,AR-J,annual,2021,gas oil combustion consumption by agriculture machines,80.22252,TJ,N2O,3.9,kg/TJ,312.86782800000003,kg +6486d4ce-244f-3ef9-8fea-470be9f585cf,SESCO,II.5.1,San Luis,AR-D,annual,2021,gas oil combustion consumption by agriculture machines,57.90036,TJ,CO2,74100.0,kg/TJ,4290416.676,kg +ad8a48ff-748b-38a2-8b3f-9f403dd621f7,SESCO,II.5.1,San Luis,AR-D,annual,2021,gas oil combustion consumption by agriculture machines,57.90036,TJ,CH4,3.9,kg/TJ,225.81140399999998,kg +ad8a48ff-748b-38a2-8b3f-9f403dd621f7,SESCO,II.5.1,San Luis,AR-D,annual,2021,gas oil combustion consumption by agriculture machines,57.90036,TJ,N2O,3.9,kg/TJ,225.81140399999998,kg +b18835c1-51aa-3109-aabb-808d4a9b554e,SESCO,II.5.1,Santa Fe,AR-S,annual,2021,gas oil combustion consumption by agriculture machines,1012.9492799999999,TJ,CO2,74100.0,kg/TJ,75059541.648,kg +61da16ab-1103-3ce9-8545-29ae9d2556fc,SESCO,II.5.1,Santa Fe,AR-S,annual,2021,gas oil combustion consumption by agriculture machines,1012.9492799999999,TJ,CH4,3.9,kg/TJ,3950.5021919999995,kg +61da16ab-1103-3ce9-8545-29ae9d2556fc,SESCO,II.5.1,Santa Fe,AR-S,annual,2021,gas oil combustion consumption by agriculture machines,1012.9492799999999,TJ,N2O,3.9,kg/TJ,3950.5021919999995,kg +efbef7a6-24b0-3a91-b147-8d0f1a764d1a,SESCO,II.5.1,Santiago del Estero,AR-G,annual,2021,gas oil combustion consumption by agriculture machines,309.1872,TJ,CO2,74100.0,kg/TJ,22910771.52,kg +1ab9a8d5-5fdf-3ee7-bcdb-0210739d9b0e,SESCO,II.5.1,Santiago del Estero,AR-G,annual,2021,gas oil combustion consumption by agriculture machines,309.1872,TJ,CH4,3.9,kg/TJ,1205.83008,kg +1ab9a8d5-5fdf-3ee7-bcdb-0210739d9b0e,SESCO,II.5.1,Santiago del Estero,AR-G,annual,2021,gas oil combustion consumption by agriculture machines,309.1872,TJ,N2O,3.9,kg/TJ,1205.83008,kg +7fcf63c2-d664-3d12-a242-41cf7cc6098d,SESCO,II.5.1,Tucuman,AR-T,annual,2021,gas oil combustion consumption by agriculture machines,150.2592,TJ,CO2,74100.0,kg/TJ,11134206.719999999,kg +3eb81cab-55c1-393d-84d7-2c55a4a4ea78,SESCO,II.5.1,Tucuman,AR-T,annual,2021,gas oil combustion consumption by agriculture machines,150.2592,TJ,CH4,3.9,kg/TJ,586.0108799999999,kg +3eb81cab-55c1-393d-84d7-2c55a4a4ea78,SESCO,II.5.1,Tucuman,AR-T,annual,2021,gas oil combustion consumption by agriculture machines,150.2592,TJ,N2O,3.9,kg/TJ,586.0108799999999,kg +c88bd33a-dfe1-3e24-b88d-924a27d60fc1,SESCO,II.5.1,Buenos Aires,AR-B,annual,2021,jet kerosene combustion consumption by agriculture machines,6.322052999999999,TJ,CO2,71500.0,kg/TJ,452026.7894999999,kg +0d1b6f37-97d1-3c45-bb84-d738f467125c,SESCO,II.5.1,Buenos Aires,AR-B,annual,2021,jet kerosene combustion consumption by agriculture machines,6.322052999999999,TJ,CH4,0.5,kg/TJ,3.1610264999999993,kg +39d15425-a567-36cc-9bef-99b083056dbc,SESCO,II.5.1,Buenos Aires,AR-B,annual,2021,jet kerosene combustion consumption by agriculture machines,6.322052999999999,TJ,N2O,2.0,kg/TJ,12.644105999999997,kg +f15cf9af-afeb-31b9-a32e-757a60ba7346,SESCO,II.5.1,Córdoba,AR-X,annual,2021,jet kerosene combustion consumption by agriculture machines,0.31453,TJ,CO2,71500.0,kg/TJ,22488.894999999997,kg +cf48b8c3-2f61-3dd0-b123-b5d477ee9603,SESCO,II.5.1,Córdoba,AR-X,annual,2021,jet kerosene combustion consumption by agriculture machines,0.31453,TJ,CH4,0.5,kg/TJ,0.157265,kg +ba1ec442-4a67-3a2f-9a40-c16e4a8f5665,SESCO,II.5.1,Córdoba,AR-X,annual,2021,jet kerosene combustion consumption by agriculture machines,0.31453,TJ,N2O,2.0,kg/TJ,0.62906,kg +d891a249-0d3b-35be-a5cc-ef04c9a98509,SESCO,II.5.1,La Pampa,AR-L,annual,2021,jet kerosene combustion consumption by agriculture machines,0.22017099999999995,TJ,CO2,71500.0,kg/TJ,15742.226499999997,kg +ee03073d-9725-3ef3-ab35-e110df465517,SESCO,II.5.1,La Pampa,AR-L,annual,2021,jet kerosene combustion consumption by agriculture machines,0.22017099999999995,TJ,CH4,0.5,kg/TJ,0.11008549999999998,kg +d3dcdefd-96ac-303f-b0e8-ba6f4b286079,SESCO,II.5.1,La Pampa,AR-L,annual,2021,jet kerosene combustion consumption by agriculture machines,0.22017099999999995,TJ,N2O,2.0,kg/TJ,0.4403419999999999,kg +9f968c3e-cbe5-3315-bc81-a6a88ff259f2,SESCO,II.5.1,Santa Fe,AR-S,annual,2021,jet kerosene combustion consumption by agriculture machines,0.25162399999999996,TJ,CO2,71500.0,kg/TJ,17991.115999999998,kg +00ff08c4-4804-379c-97b3-2b1ae630872a,SESCO,II.5.1,Santa Fe,AR-S,annual,2021,jet kerosene combustion consumption by agriculture machines,0.25162399999999996,TJ,CH4,0.5,kg/TJ,0.12581199999999998,kg +a0907ad1-e862-3abd-a013-011f9aebfb24,SESCO,II.5.1,Santa Fe,AR-S,annual,2021,jet kerosene combustion consumption by agriculture machines,0.25162399999999996,TJ,N2O,2.0,kg/TJ,0.5032479999999999,kg +adbf8ebb-4c8d-3074-a215-b7825688f006,SESCO,II.1.1,Buenos Aires,AR-B,annual,2021,gas oil combustion consumption by to the public,22964.33748,TJ,CO2,74100.0,kg/TJ,1701657407.268,kg +888da79b-a7b1-322f-9716-8f05ca14a04d,SESCO,II.1.1,Buenos Aires,AR-B,annual,2021,gas oil combustion consumption by to the public,22964.33748,TJ,CH4,3.9,kg/TJ,89560.916172,kg +888da79b-a7b1-322f-9716-8f05ca14a04d,SESCO,II.1.1,Buenos Aires,AR-B,annual,2021,gas oil combustion consumption by to the public,22964.33748,TJ,N2O,3.9,kg/TJ,89560.916172,kg +4af4fabb-1a58-360e-806c-f4319493f6bc,SESCO,II.1.1,Capital Federal,AR-C,annual,2021,gas oil combustion consumption by to the public,2631.41424,TJ,CO2,74100.0,kg/TJ,194987795.18400002,kg +2b64f168-6de9-30c6-8a29-4db4968a9f81,SESCO,II.1.1,Capital Federal,AR-C,annual,2021,gas oil combustion consumption by to the public,2631.41424,TJ,CH4,3.9,kg/TJ,10262.515536,kg +2b64f168-6de9-30c6-8a29-4db4968a9f81,SESCO,II.1.1,Capital Federal,AR-C,annual,2021,gas oil combustion consumption by to the public,2631.41424,TJ,N2O,3.9,kg/TJ,10262.515536,kg +b2ad4701-c2df-3dff-af3d-17709a6d22f5,SESCO,II.1.1,Catamarca,AR-K,annual,2021,gas oil combustion consumption by to the public,275.05379999999997,TJ,CO2,74100.0,kg/TJ,20381486.58,kg +5555dbf0-353d-3fee-b7a3-a554bd013cc8,SESCO,II.1.1,Catamarca,AR-K,annual,2021,gas oil combustion consumption by to the public,275.05379999999997,TJ,CH4,3.9,kg/TJ,1072.7098199999998,kg +5555dbf0-353d-3fee-b7a3-a554bd013cc8,SESCO,II.1.1,Catamarca,AR-K,annual,2021,gas oil combustion consumption by to the public,275.05379999999997,TJ,N2O,3.9,kg/TJ,1072.7098199999998,kg +11f12227-b814-3420-9c28-724b5239014c,SESCO,II.1.1,Chaco,AR-H,annual,2021,gas oil combustion consumption by to the public,1884.41652,TJ,CO2,74100.0,kg/TJ,139635264.132,kg +673ecc32-f9cf-37ff-8f04-831135f654df,SESCO,II.1.1,Chaco,AR-H,annual,2021,gas oil combustion consumption by to the public,1884.41652,TJ,CH4,3.9,kg/TJ,7349.2244279999995,kg +673ecc32-f9cf-37ff-8f04-831135f654df,SESCO,II.1.1,Chaco,AR-H,annual,2021,gas oil combustion consumption by to the public,1884.41652,TJ,N2O,3.9,kg/TJ,7349.2244279999995,kg +da5e00c0-91b9-3a6e-9964-c38d598b6015,SESCO,II.1.1,Chubut,AR-U,annual,2021,gas oil combustion consumption by to the public,2571.5634,TJ,CO2,74100.0,kg/TJ,190552847.94,kg +0d3b4a14-d976-36ee-9925-ebbeafab5653,SESCO,II.1.1,Chubut,AR-U,annual,2021,gas oil combustion consumption by to the public,2571.5634,TJ,CH4,3.9,kg/TJ,10029.09726,kg +0d3b4a14-d976-36ee-9925-ebbeafab5653,SESCO,II.1.1,Chubut,AR-U,annual,2021,gas oil combustion consumption by to the public,2571.5634,TJ,N2O,3.9,kg/TJ,10029.09726,kg +5b15b0f4-eb79-3494-95db-e6923c7ed9b4,SESCO,II.1.1,Corrientes,AR-W,annual,2021,gas oil combustion consumption by to the public,1802.17128,TJ,CO2,74100.0,kg/TJ,133540891.848,kg +4cfaad03-1fe4-318e-865f-878244dfcdce,SESCO,II.1.1,Corrientes,AR-W,annual,2021,gas oil combustion consumption by to the public,1802.17128,TJ,CH4,3.9,kg/TJ,7028.467992,kg +4cfaad03-1fe4-318e-865f-878244dfcdce,SESCO,II.1.1,Corrientes,AR-W,annual,2021,gas oil combustion consumption by to the public,1802.17128,TJ,N2O,3.9,kg/TJ,7028.467992,kg +4b3728ab-c1d8-37eb-b5ef-0875fcb2c3fc,SESCO,II.1.1,Córdoba,AR-X,annual,2021,gas oil combustion consumption by to the public,8588.32464,TJ,CO2,74100.0,kg/TJ,636394855.824,kg +fa00db55-ce3a-3e1c-9cd3-e46734ca1bc8,SESCO,II.1.1,Córdoba,AR-X,annual,2021,gas oil combustion consumption by to the public,8588.32464,TJ,CH4,3.9,kg/TJ,33494.466096000004,kg +fa00db55-ce3a-3e1c-9cd3-e46734ca1bc8,SESCO,II.1.1,Córdoba,AR-X,annual,2021,gas oil combustion consumption by to the public,8588.32464,TJ,N2O,3.9,kg/TJ,33494.466096000004,kg +6a9896fc-5e12-34fe-8e04-4be06bd4c3d5,SESCO,II.1.1,Entre Rios,AR-E,annual,2021,gas oil combustion consumption by to the public,3093.78636,TJ,CO2,74100.0,kg/TJ,229249569.276,kg +1d424211-fe71-3504-80b0-e614c9b9d2bf,SESCO,II.1.1,Entre Rios,AR-E,annual,2021,gas oil combustion consumption by to the public,3093.78636,TJ,CH4,3.9,kg/TJ,12065.766804,kg +1d424211-fe71-3504-80b0-e614c9b9d2bf,SESCO,II.1.1,Entre Rios,AR-E,annual,2021,gas oil combustion consumption by to the public,3093.78636,TJ,N2O,3.9,kg/TJ,12065.766804,kg +1a0cee0c-9218-31f6-b2be-17c6ca925a1e,SESCO,II.1.1,Formosa,AR-P,annual,2021,gas oil combustion consumption by to the public,561.70212,TJ,CO2,74100.0,kg/TJ,41622127.092,kg +a5b1e777-bb4e-32cc-be06-484c4a7b95f4,SESCO,II.1.1,Formosa,AR-P,annual,2021,gas oil combustion consumption by to the public,561.70212,TJ,CH4,3.9,kg/TJ,2190.638268,kg +a5b1e777-bb4e-32cc-be06-484c4a7b95f4,SESCO,II.1.1,Formosa,AR-P,annual,2021,gas oil combustion consumption by to the public,561.70212,TJ,N2O,3.9,kg/TJ,2190.638268,kg +02841203-cdc2-3925-a4a1-95feaf3c8f56,SESCO,II.1.1,Jujuy,AR-Y,annual,2021,gas oil combustion consumption by to the public,1256.83152,TJ,CO2,74100.0,kg/TJ,93131215.632,kg +578a24ce-78d8-363c-a679-80432637534b,SESCO,II.1.1,Jujuy,AR-Y,annual,2021,gas oil combustion consumption by to the public,1256.83152,TJ,CH4,3.9,kg/TJ,4901.642927999999,kg +578a24ce-78d8-363c-a679-80432637534b,SESCO,II.1.1,Jujuy,AR-Y,annual,2021,gas oil combustion consumption by to the public,1256.83152,TJ,N2O,3.9,kg/TJ,4901.642927999999,kg +07662e52-270f-3746-825f-6ab0c53fdb66,SESCO,II.1.1,La Pampa,AR-L,annual,2021,gas oil combustion consumption by to the public,2324.71932,TJ,CO2,74100.0,kg/TJ,172261701.61200002,kg +1d8f3031-970e-31c2-ac91-a72feb6784a9,SESCO,II.1.1,La Pampa,AR-L,annual,2021,gas oil combustion consumption by to the public,2324.71932,TJ,CH4,3.9,kg/TJ,9066.405348,kg +1d8f3031-970e-31c2-ac91-a72feb6784a9,SESCO,II.1.1,La Pampa,AR-L,annual,2021,gas oil combustion consumption by to the public,2324.71932,TJ,N2O,3.9,kg/TJ,9066.405348,kg +3589940e-f269-3332-a075-16c9151346d3,SESCO,II.1.1,La Rioja,AR-F,annual,2021,gas oil combustion consumption by to the public,451.71672,TJ,CO2,74100.0,kg/TJ,33472208.952,kg +41c9e02c-e944-300e-ad64-e7e46cd69cdb,SESCO,II.1.1,La Rioja,AR-F,annual,2021,gas oil combustion consumption by to the public,451.71672,TJ,CH4,3.9,kg/TJ,1761.695208,kg +41c9e02c-e944-300e-ad64-e7e46cd69cdb,SESCO,II.1.1,La Rioja,AR-F,annual,2021,gas oil combustion consumption by to the public,451.71672,TJ,N2O,3.9,kg/TJ,1761.695208,kg +f26a300c-77e6-3eaf-8146-b51c24c80b1a,SESCO,II.1.1,Mendoza,AR-M,annual,2021,gas oil combustion consumption by to the public,7909.84656,TJ,CO2,74100.0,kg/TJ,586119630.096,kg +11ed71d0-0f80-3750-9247-e60d054cefeb,SESCO,II.1.1,Mendoza,AR-M,annual,2021,gas oil combustion consumption by to the public,7909.84656,TJ,CH4,3.9,kg/TJ,30848.401584,kg +11ed71d0-0f80-3750-9247-e60d054cefeb,SESCO,II.1.1,Mendoza,AR-M,annual,2021,gas oil combustion consumption by to the public,7909.84656,TJ,N2O,3.9,kg/TJ,30848.401584,kg +67906208-fab2-3a5a-a964-f1ce29e2cf36,SESCO,II.1.1,Misiones,AR-N,annual,2021,gas oil combustion consumption by to the public,2910.15228,TJ,CO2,74100.0,kg/TJ,215642283.94799998,kg +a9f84749-e71d-3811-96b4-606446e2fdd7,SESCO,II.1.1,Misiones,AR-N,annual,2021,gas oil combustion consumption by to the public,2910.15228,TJ,CH4,3.9,kg/TJ,11349.593891999999,kg +a9f84749-e71d-3811-96b4-606446e2fdd7,SESCO,II.1.1,Misiones,AR-N,annual,2021,gas oil combustion consumption by to the public,2910.15228,TJ,N2O,3.9,kg/TJ,11349.593891999999,kg +f238c4bc-70ba-3992-a45d-e65676116088,SESCO,II.1.1,Neuquén,AR-Q,annual,2021,gas oil combustion consumption by to the public,1421.10528,TJ,CO2,74100.0,kg/TJ,105303901.248,kg +fb362265-4e5f-3fe9-a472-16bae018da20,SESCO,II.1.1,Neuquén,AR-Q,annual,2021,gas oil combustion consumption by to the public,1421.10528,TJ,CH4,3.9,kg/TJ,5542.310592,kg +fb362265-4e5f-3fe9-a472-16bae018da20,SESCO,II.1.1,Neuquén,AR-Q,annual,2021,gas oil combustion consumption by to the public,1421.10528,TJ,N2O,3.9,kg/TJ,5542.310592,kg +e3a1a7b5-5019-38b5-84df-71ed57841ec9,SESCO,II.1.1,Rio Negro,AR-R,annual,2021,gas oil combustion consumption by to the public,2818.33524,TJ,CO2,74100.0,kg/TJ,208838641.28399998,kg +85ece170-4e29-3200-baf1-b2cfe692a754,SESCO,II.1.1,Rio Negro,AR-R,annual,2021,gas oil combustion consumption by to the public,2818.33524,TJ,CH4,3.9,kg/TJ,10991.507436,kg +85ece170-4e29-3200-baf1-b2cfe692a754,SESCO,II.1.1,Rio Negro,AR-R,annual,2021,gas oil combustion consumption by to the public,2818.33524,TJ,N2O,3.9,kg/TJ,10991.507436,kg +852c44ba-02f6-3312-a692-0459f2c06839,SESCO,II.1.1,Salta,AR-A,annual,2021,gas oil combustion consumption by to the public,2977.11876,TJ,CO2,74100.0,kg/TJ,220604500.116,kg +0227dc7e-689a-3677-a316-6157ba9bd884,SESCO,II.1.1,Salta,AR-A,annual,2021,gas oil combustion consumption by to the public,2977.11876,TJ,CH4,3.9,kg/TJ,11610.763164,kg +0227dc7e-689a-3677-a316-6157ba9bd884,SESCO,II.1.1,Salta,AR-A,annual,2021,gas oil combustion consumption by to the public,2977.11876,TJ,N2O,3.9,kg/TJ,11610.763164,kg +da89d084-2ec3-3584-b91c-61cb0feabb5b,SESCO,II.1.1,San Juan,AR-J,annual,2021,gas oil combustion consumption by to the public,1342.83324,TJ,CO2,74100.0,kg/TJ,99503943.08399999,kg +55dafa40-1d80-36ef-9b33-573fa1413576,SESCO,II.1.1,San Juan,AR-J,annual,2021,gas oil combustion consumption by to the public,1342.83324,TJ,CH4,3.9,kg/TJ,5237.049636,kg +55dafa40-1d80-36ef-9b33-573fa1413576,SESCO,II.1.1,San Juan,AR-J,annual,2021,gas oil combustion consumption by to the public,1342.83324,TJ,N2O,3.9,kg/TJ,5237.049636,kg +3cce1071-f7b7-36d7-b53e-2ba73aa7e1d1,SESCO,II.1.1,San Luis,AR-D,annual,2021,gas oil combustion consumption by to the public,1059.68856,TJ,CO2,74100.0,kg/TJ,78522922.296,kg +c8b25ca9-a004-3e9e-9ff3-fa4814564509,SESCO,II.1.1,San Luis,AR-D,annual,2021,gas oil combustion consumption by to the public,1059.68856,TJ,CH4,3.9,kg/TJ,4132.785384,kg +c8b25ca9-a004-3e9e-9ff3-fa4814564509,SESCO,II.1.1,San Luis,AR-D,annual,2021,gas oil combustion consumption by to the public,1059.68856,TJ,N2O,3.9,kg/TJ,4132.785384,kg +5fcf6500-eca1-3a50-b77c-d69a3686d460,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2021,gas oil combustion consumption by to the public,1398.96372,TJ,CO2,74100.0,kg/TJ,103663211.652,kg +6f48db94-15de-34b2-8fd6-75b3549b2e4e,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2021,gas oil combustion consumption by to the public,1398.96372,TJ,CH4,3.9,kg/TJ,5455.958508,kg +6f48db94-15de-34b2-8fd6-75b3549b2e4e,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2021,gas oil combustion consumption by to the public,1398.96372,TJ,N2O,3.9,kg/TJ,5455.958508,kg +7a29226a-65d4-3a4e-98cf-a0a5ac08e60b,SESCO,II.1.1,Santa Fe,AR-S,annual,2021,gas oil combustion consumption by to the public,6497.15724,TJ,CO2,74100.0,kg/TJ,481439351.48399997,kg +cd03add9-b6d5-3cd7-a7a3-3581eb112ec3,SESCO,II.1.1,Santa Fe,AR-S,annual,2021,gas oil combustion consumption by to the public,6497.15724,TJ,CH4,3.9,kg/TJ,25338.913235999997,kg +cd03add9-b6d5-3cd7-a7a3-3581eb112ec3,SESCO,II.1.1,Santa Fe,AR-S,annual,2021,gas oil combustion consumption by to the public,6497.15724,TJ,N2O,3.9,kg/TJ,25338.913235999997,kg +eb932fa3-0666-35c8-a187-ffb057be7ea2,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2021,gas oil combustion consumption by to the public,1980.89304,TJ,CO2,74100.0,kg/TJ,146784174.264,kg +0e5a4031-6301-3d80-ae6f-e9898d23f4f5,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2021,gas oil combustion consumption by to the public,1980.89304,TJ,CH4,3.9,kg/TJ,7725.482856,kg +0e5a4031-6301-3d80-ae6f-e9898d23f4f5,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2021,gas oil combustion consumption by to the public,1980.89304,TJ,N2O,3.9,kg/TJ,7725.482856,kg +e578f347-87f3-3449-b572-afe2e157339c,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2021,gas oil combustion consumption by to the public,686.74956,TJ,CO2,74100.0,kg/TJ,50888142.396,kg +eeb5e66e-f9e4-33fd-abe0-e622df455da8,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2021,gas oil combustion consumption by to the public,686.74956,TJ,CH4,3.9,kg/TJ,2678.323284,kg +eeb5e66e-f9e4-33fd-abe0-e622df455da8,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2021,gas oil combustion consumption by to the public,686.74956,TJ,N2O,3.9,kg/TJ,2678.323284,kg +57faed90-e99f-349e-94fa-f0a2f56267f3,SESCO,II.1.1,Tucuman,AR-T,annual,2021,gas oil combustion consumption by to the public,1789.7098799999999,TJ,CO2,74100.0,kg/TJ,132617502.108,kg +c9f33d83-6756-38d7-9d94-43b37e5b0a41,SESCO,II.1.1,Tucuman,AR-T,annual,2021,gas oil combustion consumption by to the public,1789.7098799999999,TJ,CH4,3.9,kg/TJ,6979.8685319999995,kg +c9f33d83-6756-38d7-9d94-43b37e5b0a41,SESCO,II.1.1,Tucuman,AR-T,annual,2021,gas oil combustion consumption by to the public,1789.7098799999999,TJ,N2O,3.9,kg/TJ,6979.8685319999995,kg +363c4aa0-69ee-3901-a6df-175431d39ced,SESCO,II.1.1,Buenos Aires,AR-B,annual,2021,gas oil combustion consumption by to the public,14805.98532,TJ,CO2,74100.0,kg/TJ,1097123512.212,kg +57a7081d-dd8f-3856-9a78-ad139080fca5,SESCO,II.1.1,Buenos Aires,AR-B,annual,2021,gas oil combustion consumption by to the public,14805.98532,TJ,CH4,3.9,kg/TJ,57743.342747999995,kg +57a7081d-dd8f-3856-9a78-ad139080fca5,SESCO,II.1.1,Buenos Aires,AR-B,annual,2021,gas oil combustion consumption by to the public,14805.98532,TJ,N2O,3.9,kg/TJ,57743.342747999995,kg +257c799b-29fe-3abc-9fea-3a8dcb454df6,SESCO,II.1.1,Capital Federal,AR-C,annual,2021,gas oil combustion consumption by to the public,2056.45608,TJ,CO2,74100.0,kg/TJ,152383395.528,kg +4b47261e-a31e-3819-8ba5-235a1ece7a3d,SESCO,II.1.1,Capital Federal,AR-C,annual,2021,gas oil combustion consumption by to the public,2056.45608,TJ,CH4,3.9,kg/TJ,8020.178712,kg +4b47261e-a31e-3819-8ba5-235a1ece7a3d,SESCO,II.1.1,Capital Federal,AR-C,annual,2021,gas oil combustion consumption by to the public,2056.45608,TJ,N2O,3.9,kg/TJ,8020.178712,kg +ab46a8f7-463c-31aa-84a6-91c7da9e9669,SESCO,II.1.1,Catamarca,AR-K,annual,2021,gas oil combustion consumption by to the public,361.52508,TJ,CO2,74100.0,kg/TJ,26789008.428,kg +320159ac-291a-390b-8091-9eca519fbd8b,SESCO,II.1.1,Catamarca,AR-K,annual,2021,gas oil combustion consumption by to the public,361.52508,TJ,CH4,3.9,kg/TJ,1409.9478119999999,kg +320159ac-291a-390b-8091-9eca519fbd8b,SESCO,II.1.1,Catamarca,AR-K,annual,2021,gas oil combustion consumption by to the public,361.52508,TJ,N2O,3.9,kg/TJ,1409.9478119999999,kg +47b0ec21-d10e-344f-a3e9-f458218ad070,SESCO,II.1.1,Chaco,AR-H,annual,2021,gas oil combustion consumption by to the public,1138.10508,TJ,CO2,74100.0,kg/TJ,84333586.428,kg +ca850f2b-f235-3038-bcfa-16a885c650bc,SESCO,II.1.1,Chaco,AR-H,annual,2021,gas oil combustion consumption by to the public,1138.10508,TJ,CH4,3.9,kg/TJ,4438.609812,kg +ca850f2b-f235-3038-bcfa-16a885c650bc,SESCO,II.1.1,Chaco,AR-H,annual,2021,gas oil combustion consumption by to the public,1138.10508,TJ,N2O,3.9,kg/TJ,4438.609812,kg +0ad5bcdc-a7d4-31ee-a3ff-75471a5caa38,SESCO,II.1.1,Chubut,AR-U,annual,2021,gas oil combustion consumption by to the public,1892.57964,TJ,CO2,74100.0,kg/TJ,140240151.324,kg +c7724bee-5293-3f88-8528-760654106940,SESCO,II.1.1,Chubut,AR-U,annual,2021,gas oil combustion consumption by to the public,1892.57964,TJ,CH4,3.9,kg/TJ,7381.060595999999,kg +c7724bee-5293-3f88-8528-760654106940,SESCO,II.1.1,Chubut,AR-U,annual,2021,gas oil combustion consumption by to the public,1892.57964,TJ,N2O,3.9,kg/TJ,7381.060595999999,kg +b816b594-095e-3fcd-90c4-f927021c92cf,SESCO,II.1.1,Corrientes,AR-W,annual,2021,gas oil combustion consumption by to the public,1161.51084,TJ,CO2,74100.0,kg/TJ,86067953.24399999,kg +925b8b08-4ada-3647-9541-e890f82e828d,SESCO,II.1.1,Corrientes,AR-W,annual,2021,gas oil combustion consumption by to the public,1161.51084,TJ,CH4,3.9,kg/TJ,4529.892276,kg +925b8b08-4ada-3647-9541-e890f82e828d,SESCO,II.1.1,Corrientes,AR-W,annual,2021,gas oil combustion consumption by to the public,1161.51084,TJ,N2O,3.9,kg/TJ,4529.892276,kg +4a969603-b106-31a7-aaa3-0c71db5bfef9,SESCO,II.1.1,Córdoba,AR-X,annual,2021,gas oil combustion consumption by to the public,5050.8402,TJ,CO2,74100.0,kg/TJ,374267258.82,kg +fdd1a2f7-7e1f-3cf0-95f0-04fb1ea4c6bb,SESCO,II.1.1,Córdoba,AR-X,annual,2021,gas oil combustion consumption by to the public,5050.8402,TJ,CH4,3.9,kg/TJ,19698.276779999997,kg +fdd1a2f7-7e1f-3cf0-95f0-04fb1ea4c6bb,SESCO,II.1.1,Córdoba,AR-X,annual,2021,gas oil combustion consumption by to the public,5050.8402,TJ,N2O,3.9,kg/TJ,19698.276779999997,kg +c386bc2e-8ffd-3f55-a7c3-3fdd49e833d2,SESCO,II.1.1,Entre Rios,AR-E,annual,2021,gas oil combustion consumption by to the public,1613.76936,TJ,CO2,74100.0,kg/TJ,119580309.576,kg +b846229f-e902-38bc-98c1-357f971cab6c,SESCO,II.1.1,Entre Rios,AR-E,annual,2021,gas oil combustion consumption by to the public,1613.76936,TJ,CH4,3.9,kg/TJ,6293.7005039999995,kg +b846229f-e902-38bc-98c1-357f971cab6c,SESCO,II.1.1,Entre Rios,AR-E,annual,2021,gas oil combustion consumption by to the public,1613.76936,TJ,N2O,3.9,kg/TJ,6293.7005039999995,kg +059cd0f2-d4e9-332b-88c8-764690063fde,SESCO,II.1.1,Formosa,AR-P,annual,2021,gas oil combustion consumption by to the public,359.79132,TJ,CO2,74100.0,kg/TJ,26660536.812,kg +15db86ed-f44b-36b7-939a-aad2bf647712,SESCO,II.1.1,Formosa,AR-P,annual,2021,gas oil combustion consumption by to the public,359.79132,TJ,CH4,3.9,kg/TJ,1403.186148,kg +15db86ed-f44b-36b7-939a-aad2bf647712,SESCO,II.1.1,Formosa,AR-P,annual,2021,gas oil combustion consumption by to the public,359.79132,TJ,N2O,3.9,kg/TJ,1403.186148,kg +bf468149-4578-367d-9a06-4a2f3bbdafac,SESCO,II.1.1,Jujuy,AR-Y,annual,2021,gas oil combustion consumption by to the public,917.0868,TJ,CO2,74100.0,kg/TJ,67956131.88000001,kg +1b3a48ea-0855-3010-9ff7-55906f20f551,SESCO,II.1.1,Jujuy,AR-Y,annual,2021,gas oil combustion consumption by to the public,917.0868,TJ,CH4,3.9,kg/TJ,3576.63852,kg +1b3a48ea-0855-3010-9ff7-55906f20f551,SESCO,II.1.1,Jujuy,AR-Y,annual,2021,gas oil combustion consumption by to the public,917.0868,TJ,N2O,3.9,kg/TJ,3576.63852,kg +f1698e30-0c57-3f0d-b6c8-19dadda6a7dd,SESCO,II.1.1,La Pampa,AR-L,annual,2021,gas oil combustion consumption by to the public,1293.42108,TJ,CO2,74100.0,kg/TJ,95842502.02800001,kg +c5dfadc0-0db8-3cad-b28a-8070d4822990,SESCO,II.1.1,La Pampa,AR-L,annual,2021,gas oil combustion consumption by to the public,1293.42108,TJ,CH4,3.9,kg/TJ,5044.3422120000005,kg +c5dfadc0-0db8-3cad-b28a-8070d4822990,SESCO,II.1.1,La Pampa,AR-L,annual,2021,gas oil combustion consumption by to the public,1293.42108,TJ,N2O,3.9,kg/TJ,5044.3422120000005,kg +c3794120-ff82-3a5d-9b11-471e1da61257,SESCO,II.1.1,La Rioja,AR-F,annual,2021,gas oil combustion consumption by to the public,498.6366,TJ,CO2,74100.0,kg/TJ,36948972.06,kg +ecd83ca1-190f-3b01-aeae-e9a473c74432,SESCO,II.1.1,La Rioja,AR-F,annual,2021,gas oil combustion consumption by to the public,498.6366,TJ,CH4,3.9,kg/TJ,1944.68274,kg +ecd83ca1-190f-3b01-aeae-e9a473c74432,SESCO,II.1.1,La Rioja,AR-F,annual,2021,gas oil combustion consumption by to the public,498.6366,TJ,N2O,3.9,kg/TJ,1944.68274,kg +d067528f-7d50-3923-90e4-5597724c308a,SESCO,II.1.1,Mendoza,AR-M,annual,2021,gas oil combustion consumption by to the public,3829.91196,TJ,CO2,74100.0,kg/TJ,283796476.236,kg +d87da4df-6e72-3fe6-a2d4-8f022bd33de4,SESCO,II.1.1,Mendoza,AR-M,annual,2021,gas oil combustion consumption by to the public,3829.91196,TJ,CH4,3.9,kg/TJ,14936.656643999999,kg +d87da4df-6e72-3fe6-a2d4-8f022bd33de4,SESCO,II.1.1,Mendoza,AR-M,annual,2021,gas oil combustion consumption by to the public,3829.91196,TJ,N2O,3.9,kg/TJ,14936.656643999999,kg +eca3bd23-af58-34d3-aa6e-d7dd3f2ca935,SESCO,II.1.1,Misiones,AR-N,annual,2021,gas oil combustion consumption by to the public,1428.47376,TJ,CO2,74100.0,kg/TJ,105849905.61600001,kg +6f197032-ef38-360b-93f3-62518a132098,SESCO,II.1.1,Misiones,AR-N,annual,2021,gas oil combustion consumption by to the public,1428.47376,TJ,CH4,3.9,kg/TJ,5571.047664000001,kg +6f197032-ef38-360b-93f3-62518a132098,SESCO,II.1.1,Misiones,AR-N,annual,2021,gas oil combustion consumption by to the public,1428.47376,TJ,N2O,3.9,kg/TJ,5571.047664000001,kg +94425014-bd2c-3767-89f6-f759f8819a39,SESCO,II.1.1,Neuquén,AR-Q,annual,2021,gas oil combustion consumption by to the public,2386.4483999999998,TJ,CO2,74100.0,kg/TJ,176835826.43999997,kg +21a47542-8696-3021-ad15-ea856129356a,SESCO,II.1.1,Neuquén,AR-Q,annual,2021,gas oil combustion consumption by to the public,2386.4483999999998,TJ,CH4,3.9,kg/TJ,9307.148759999998,kg +21a47542-8696-3021-ad15-ea856129356a,SESCO,II.1.1,Neuquén,AR-Q,annual,2021,gas oil combustion consumption by to the public,2386.4483999999998,TJ,N2O,3.9,kg/TJ,9307.148759999998,kg +88c05208-eb5d-3662-a6e8-8266b0385794,SESCO,II.1.1,Rio Negro,AR-R,annual,2021,gas oil combustion consumption by to the public,1853.06436,TJ,CO2,74100.0,kg/TJ,137312069.076,kg +2a009a24-c673-354f-bc06-9a8bfcaf21ed,SESCO,II.1.1,Rio Negro,AR-R,annual,2021,gas oil combustion consumption by to the public,1853.06436,TJ,CH4,3.9,kg/TJ,7226.9510040000005,kg +2a009a24-c673-354f-bc06-9a8bfcaf21ed,SESCO,II.1.1,Rio Negro,AR-R,annual,2021,gas oil combustion consumption by to the public,1853.06436,TJ,N2O,3.9,kg/TJ,7226.9510040000005,kg +09563c27-0a86-33ce-9fe6-09c6ae48d992,SESCO,II.1.1,Salta,AR-A,annual,2021,gas oil combustion consumption by to the public,1967.3480399999999,TJ,CO2,74100.0,kg/TJ,145780489.764,kg +e2168588-8585-35cd-b827-d3d749b94d0e,SESCO,II.1.1,Salta,AR-A,annual,2021,gas oil combustion consumption by to the public,1967.3480399999999,TJ,CH4,3.9,kg/TJ,7672.657356,kg +e2168588-8585-35cd-b827-d3d749b94d0e,SESCO,II.1.1,Salta,AR-A,annual,2021,gas oil combustion consumption by to the public,1967.3480399999999,TJ,N2O,3.9,kg/TJ,7672.657356,kg +70cbc907-4017-331e-8201-dcf4be5e8905,SESCO,II.1.1,San Juan,AR-J,annual,2021,gas oil combustion consumption by to the public,822.77748,TJ,CO2,74100.0,kg/TJ,60967811.268,kg +6513a002-8b0b-3bda-b98c-975a68b7322c,SESCO,II.1.1,San Juan,AR-J,annual,2021,gas oil combustion consumption by to the public,822.77748,TJ,CH4,3.9,kg/TJ,3208.832172,kg +6513a002-8b0b-3bda-b98c-975a68b7322c,SESCO,II.1.1,San Juan,AR-J,annual,2021,gas oil combustion consumption by to the public,822.77748,TJ,N2O,3.9,kg/TJ,3208.832172,kg +172df2d8-c49b-38f5-bb38-8ac04c057aa9,SESCO,II.1.1,San Luis,AR-D,annual,2021,gas oil combustion consumption by to the public,639.25176,TJ,CO2,74100.0,kg/TJ,47368555.416,kg +68f4531f-c940-3076-b900-d8d985212931,SESCO,II.1.1,San Luis,AR-D,annual,2021,gas oil combustion consumption by to the public,639.25176,TJ,CH4,3.9,kg/TJ,2493.0818639999998,kg +68f4531f-c940-3076-b900-d8d985212931,SESCO,II.1.1,San Luis,AR-D,annual,2021,gas oil combustion consumption by to the public,639.25176,TJ,N2O,3.9,kg/TJ,2493.0818639999998,kg +1503e0bd-18ee-3b95-9e11-e923b515855a,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2021,gas oil combustion consumption by to the public,1296.85248,TJ,CO2,74100.0,kg/TJ,96096768.768,kg +d170aa72-fae9-3b10-a10b-54e5a1307077,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2021,gas oil combustion consumption by to the public,1296.85248,TJ,CH4,3.9,kg/TJ,5057.724672,kg +d170aa72-fae9-3b10-a10b-54e5a1307077,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2021,gas oil combustion consumption by to the public,1296.85248,TJ,N2O,3.9,kg/TJ,5057.724672,kg +9e91beac-eb95-3bf9-90a5-bfb725af2a2d,SESCO,II.1.1,Santa Fe,AR-S,annual,2021,gas oil combustion consumption by to the public,3585.813,TJ,CO2,74100.0,kg/TJ,265708743.3,kg +cb247aaa-4007-3945-9ef6-3e19fe7d59b4,SESCO,II.1.1,Santa Fe,AR-S,annual,2021,gas oil combustion consumption by to the public,3585.813,TJ,CH4,3.9,kg/TJ,13984.6707,kg +cb247aaa-4007-3945-9ef6-3e19fe7d59b4,SESCO,II.1.1,Santa Fe,AR-S,annual,2021,gas oil combustion consumption by to the public,3585.813,TJ,N2O,3.9,kg/TJ,13984.6707,kg +11433683-3325-3ba1-b30d-9c7562a9b61c,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2021,gas oil combustion consumption by to the public,963.75384,TJ,CO2,74100.0,kg/TJ,71414159.544,kg +cc28e47f-7484-349d-9e26-ac88f46e4bba,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2021,gas oil combustion consumption by to the public,963.75384,TJ,CH4,3.9,kg/TJ,3758.639976,kg +cc28e47f-7484-349d-9e26-ac88f46e4bba,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2021,gas oil combustion consumption by to the public,963.75384,TJ,N2O,3.9,kg/TJ,3758.639976,kg +cf7858f1-2547-3cde-8336-350fbbfbe29a,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2021,gas oil combustion consumption by to the public,360.51372,TJ,CO2,74100.0,kg/TJ,26714066.652,kg +9642df7c-f6be-325f-ab47-d5351e252987,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2021,gas oil combustion consumption by to the public,360.51372,TJ,CH4,3.9,kg/TJ,1406.0035079999998,kg +9642df7c-f6be-325f-ab47-d5351e252987,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2021,gas oil combustion consumption by to the public,360.51372,TJ,N2O,3.9,kg/TJ,1406.0035079999998,kg +cda0fa19-49ac-306b-b939-65e2504ff4cc,SESCO,II.1.1,Tucuman,AR-T,annual,2021,gas oil combustion consumption by to the public,1278.03396,TJ,CO2,74100.0,kg/TJ,94702316.436,kg +26d7685f-fcfd-3d8c-9cf5-29fd5efc30bf,SESCO,II.1.1,Tucuman,AR-T,annual,2021,gas oil combustion consumption by to the public,1278.03396,TJ,CH4,3.9,kg/TJ,4984.332444,kg +26d7685f-fcfd-3d8c-9cf5-29fd5efc30bf,SESCO,II.1.1,Tucuman,AR-T,annual,2021,gas oil combustion consumption by to the public,1278.03396,TJ,N2O,3.9,kg/TJ,4984.332444,kg +9c0d7b88-1639-3e16-8c49-8d39d64a1ee0,SESCO,II.1.1,Buenos Aires,AR-B,annual,2021,jet kerosene combustion consumption by to the public,92.40891399999998,TJ,CO2,71500.0,kg/TJ,6607237.350999999,kg +fce64ae9-05be-3cba-9b28-6a42ac05d2a9,SESCO,II.1.1,Buenos Aires,AR-B,annual,2021,jet kerosene combustion consumption by to the public,92.40891399999998,TJ,CH4,0.5,kg/TJ,46.20445699999999,kg +06672f50-f9e9-34fb-8b9d-00544e92dee2,SESCO,II.1.1,Buenos Aires,AR-B,annual,2021,jet kerosene combustion consumption by to the public,92.40891399999998,TJ,N2O,2.0,kg/TJ,184.81782799999996,kg +3d13aacc-e7e1-3083-80d5-0a2b69128f1f,SESCO,II.1.1,Capital Federal,AR-C,annual,2021,jet kerosene combustion consumption by to the public,2.7364109999999995,TJ,CO2,71500.0,kg/TJ,195653.38649999996,kg +429ca01b-4a99-324d-8ef9-cf55d7400fa3,SESCO,II.1.1,Capital Federal,AR-C,annual,2021,jet kerosene combustion consumption by to the public,2.7364109999999995,TJ,CH4,0.5,kg/TJ,1.3682054999999997,kg +325cb057-4993-37c6-9291-e74d266e8f60,SESCO,II.1.1,Capital Federal,AR-C,annual,2021,jet kerosene combustion consumption by to the public,2.7364109999999995,TJ,N2O,2.0,kg/TJ,5.472821999999999,kg +e4c97ef5-eab2-31ef-ba84-a284b2452d65,SESCO,II.1.1,Catamarca,AR-K,annual,2021,jet kerosene combustion consumption by to the public,3.0509409999999995,TJ,CO2,71500.0,kg/TJ,218142.28149999995,kg +cd8647a0-804d-3c95-94fb-65afc83c18b5,SESCO,II.1.1,Catamarca,AR-K,annual,2021,jet kerosene combustion consumption by to the public,3.0509409999999995,TJ,CH4,0.5,kg/TJ,1.5254704999999997,kg +a1abc769-0c4e-3829-b693-049c7039a429,SESCO,II.1.1,Catamarca,AR-K,annual,2021,jet kerosene combustion consumption by to the public,3.0509409999999995,TJ,N2O,2.0,kg/TJ,6.101881999999999,kg +0e65416d-3a85-38b6-ab95-c193fccd4fa0,SESCO,II.1.1,Chubut,AR-U,annual,2021,jet kerosene combustion consumption by to the public,8.712480999999999,TJ,CO2,71500.0,kg/TJ,622942.3914999999,kg +60c71f86-9128-36bf-851a-1fe73a8e36c0,SESCO,II.1.1,Chubut,AR-U,annual,2021,jet kerosene combustion consumption by to the public,8.712480999999999,TJ,CH4,0.5,kg/TJ,4.356240499999999,kg +d10c2735-1925-39c7-96a9-d76a3a7b21f1,SESCO,II.1.1,Chubut,AR-U,annual,2021,jet kerosene combustion consumption by to the public,8.712480999999999,TJ,N2O,2.0,kg/TJ,17.424961999999997,kg +937f54af-6708-34b5-8481-84c107d8fcbd,SESCO,II.1.1,Corrientes,AR-W,annual,2021,jet kerosene combustion consumption by to the public,0.8177779999999999,TJ,CO2,71500.0,kg/TJ,58471.12699999999,kg +e2900598-c5bb-380c-b400-16f4e7f9b51d,SESCO,II.1.1,Corrientes,AR-W,annual,2021,jet kerosene combustion consumption by to the public,0.8177779999999999,TJ,CH4,0.5,kg/TJ,0.40888899999999995,kg +179c81df-e72d-30a5-a99e-cb3c948b760b,SESCO,II.1.1,Corrientes,AR-W,annual,2021,jet kerosene combustion consumption by to the public,0.8177779999999999,TJ,N2O,2.0,kg/TJ,1.6355559999999998,kg +2a9dca06-2497-3f01-9b15-a778294c3efd,SESCO,II.1.1,Córdoba,AR-X,annual,2021,jet kerosene combustion consumption by to the public,29.660178999999996,TJ,CO2,71500.0,kg/TJ,2120702.7984999996,kg +f4b09924-8fb7-3f04-b41a-ea21ed6f314c,SESCO,II.1.1,Córdoba,AR-X,annual,2021,jet kerosene combustion consumption by to the public,29.660178999999996,TJ,CH4,0.5,kg/TJ,14.830089499999998,kg +b7ca16b7-90cd-310e-9522-9fd5ec7dc2b8,SESCO,II.1.1,Córdoba,AR-X,annual,2021,jet kerosene combustion consumption by to the public,29.660178999999996,TJ,N2O,2.0,kg/TJ,59.32035799999999,kg +74745fe9-bf3a-3aef-847c-5f09b512132f,SESCO,II.1.1,Entre Rios,AR-E,annual,2021,jet kerosene combustion consumption by to the public,4.434873,TJ,CO2,71500.0,kg/TJ,317093.41949999996,kg +566e7963-0d90-3fc9-bc4a-c91f29fb49d2,SESCO,II.1.1,Entre Rios,AR-E,annual,2021,jet kerosene combustion consumption by to the public,4.434873,TJ,CH4,0.5,kg/TJ,2.2174365,kg +a2301ac6-1023-30a6-88c3-86db563b5032,SESCO,II.1.1,Entre Rios,AR-E,annual,2021,jet kerosene combustion consumption by to the public,4.434873,TJ,N2O,2.0,kg/TJ,8.869746,kg +6bcb3301-1419-364b-bf1b-87fe4420dd15,SESCO,II.1.1,La Pampa,AR-L,annual,2021,jet kerosene combustion consumption by to the public,1.8871799999999996,TJ,CO2,71500.0,kg/TJ,134933.36999999997,kg +fd75dd9b-0b82-3f7d-95de-e27f4841448d,SESCO,II.1.1,La Pampa,AR-L,annual,2021,jet kerosene combustion consumption by to the public,1.8871799999999996,TJ,CH4,0.5,kg/TJ,0.9435899999999998,kg +19495348-368a-3384-a9f2-55b615a02479,SESCO,II.1.1,La Pampa,AR-L,annual,2021,jet kerosene combustion consumption by to the public,1.8871799999999996,TJ,N2O,2.0,kg/TJ,3.7743599999999993,kg +6c7fb95c-7d6e-3e02-9720-417cbe12b138,SESCO,II.1.1,La Rioja,AR-F,annual,2021,jet kerosene combustion consumption by to the public,1.2266669999999997,TJ,CO2,71500.0,kg/TJ,87706.69049999998,kg +b7c86dfd-da1b-3f73-a313-abff94ab89bd,SESCO,II.1.1,La Rioja,AR-F,annual,2021,jet kerosene combustion consumption by to the public,1.2266669999999997,TJ,CH4,0.5,kg/TJ,0.6133334999999999,kg +22bc982e-3b58-3629-834d-53e2854f6d1c,SESCO,II.1.1,La Rioja,AR-F,annual,2021,jet kerosene combustion consumption by to the public,1.2266669999999997,TJ,N2O,2.0,kg/TJ,2.4533339999999995,kg +7de54fa9-d227-33ef-bc04-3f4825be5b5f,SESCO,II.1.1,Mendoza,AR-M,annual,2021,jet kerosene combustion consumption by to the public,10.473848999999998,TJ,CO2,71500.0,kg/TJ,748880.2034999998,kg +1e7782b4-6360-3df1-96e6-c2cd5437c897,SESCO,II.1.1,Mendoza,AR-M,annual,2021,jet kerosene combustion consumption by to the public,10.473848999999998,TJ,CH4,0.5,kg/TJ,5.236924499999999,kg +de49b96a-2043-3e63-9256-2df7928826e9,SESCO,II.1.1,Mendoza,AR-M,annual,2021,jet kerosene combustion consumption by to the public,10.473848999999998,TJ,N2O,2.0,kg/TJ,20.947697999999995,kg +a2703384-2e2b-3671-a117-4ebad087fc8d,SESCO,II.1.1,Neuquén,AR-Q,annual,2021,jet kerosene combustion consumption by to the public,4.623590999999999,TJ,CO2,71500.0,kg/TJ,330586.75649999996,kg +71598fe0-c00d-3300-a023-450feb96add6,SESCO,II.1.1,Neuquén,AR-Q,annual,2021,jet kerosene combustion consumption by to the public,4.623590999999999,TJ,CH4,0.5,kg/TJ,2.3117954999999997,kg +6ae03025-7f6c-3dca-bdca-8bebddea0bd1,SESCO,II.1.1,Neuquén,AR-Q,annual,2021,jet kerosene combustion consumption by to the public,4.623590999999999,TJ,N2O,2.0,kg/TJ,9.247181999999999,kg +26c7c2f4-d442-3eda-a620-559f6aef0226,SESCO,II.1.1,San Juan,AR-J,annual,2021,jet kerosene combustion consumption by to the public,4.749402999999999,TJ,CO2,71500.0,kg/TJ,339582.3144999999,kg +daa9a9b2-63b4-3d14-b626-8e1765a56b5a,SESCO,II.1.1,San Juan,AR-J,annual,2021,jet kerosene combustion consumption by to the public,4.749402999999999,TJ,CH4,0.5,kg/TJ,2.3747014999999996,kg +c5287f4c-27eb-37c6-900f-c1688705dc61,SESCO,II.1.1,San Juan,AR-J,annual,2021,jet kerosene combustion consumption by to the public,4.749402999999999,TJ,N2O,2.0,kg/TJ,9.498805999999998,kg +6551c2f5-7423-36b4-b276-4673e0872dfb,SESCO,II.1.1,San Luis,AR-D,annual,2021,jet kerosene combustion consumption by to the public,4.466326,TJ,CO2,71500.0,kg/TJ,319342.30899999995,kg +2a774c69-cd73-3a93-8a40-3a016b0e8ae3,SESCO,II.1.1,San Luis,AR-D,annual,2021,jet kerosene combustion consumption by to the public,4.466326,TJ,CH4,0.5,kg/TJ,2.233163,kg +9fd27f2b-e757-3546-8325-074bd549048c,SESCO,II.1.1,San Luis,AR-D,annual,2021,jet kerosene combustion consumption by to the public,4.466326,TJ,N2O,2.0,kg/TJ,8.932652,kg +9ae1e380-49f7-3552-932c-88ce1351cda3,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2021,jet kerosene combustion consumption by to the public,4.434873,TJ,CO2,71500.0,kg/TJ,317093.41949999996,kg +11d47033-6357-3db1-b78d-1aae8ad09b38,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2021,jet kerosene combustion consumption by to the public,4.434873,TJ,CH4,0.5,kg/TJ,2.2174365,kg +c917c9f7-04ca-3372-8f9c-f4d1dd8a3174,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2021,jet kerosene combustion consumption by to the public,4.434873,TJ,N2O,2.0,kg/TJ,8.869746,kg +f1687561-dbab-3b24-a01f-b921dd7a235a,SESCO,II.1.1,Santa Fe,AR-S,annual,2021,jet kerosene combustion consumption by to the public,19.846842999999996,TJ,CO2,71500.0,kg/TJ,1419049.2744999998,kg +5d04cd00-d022-39e5-9485-1bf839898bcc,SESCO,II.1.1,Santa Fe,AR-S,annual,2021,jet kerosene combustion consumption by to the public,19.846842999999996,TJ,CH4,0.5,kg/TJ,9.923421499999998,kg +453ed98c-78e2-31a4-9c8c-7710f3317861,SESCO,II.1.1,Santa Fe,AR-S,annual,2021,jet kerosene combustion consumption by to the public,19.846842999999996,TJ,N2O,2.0,kg/TJ,39.69368599999999,kg +a8a89b98-85a1-3826-ac67-74586b3f978b,SESCO,II.1.1,Tucuman,AR-T,annual,2021,jet kerosene combustion consumption by to the public,9.530259,TJ,CO2,71500.0,kg/TJ,681413.5184999999,kg +d03efe11-5c5b-3c70-b58b-7254363fa376,SESCO,II.1.1,Tucuman,AR-T,annual,2021,jet kerosene combustion consumption by to the public,9.530259,TJ,CH4,0.5,kg/TJ,4.7651295,kg +e2d76f23-9e18-3d27-94bb-cee6617800de,SESCO,II.1.1,Tucuman,AR-T,annual,2021,jet kerosene combustion consumption by to the public,9.530259,TJ,N2O,2.0,kg/TJ,19.060518,kg +4de4ae97-b5bf-359c-93c4-db82289a5d94,SESCO,II.2.1,San Juan,AR-J,annual,2021,gas oil combustion consumption by railway transport,3.0702,TJ,CO2,74100.0,kg/TJ,227501.81999999998,kg +f4458fcb-f8a8-319e-bfe4-0182e1ff1f87,SESCO,II.2.1,San Juan,AR-J,annual,2021,gas oil combustion consumption by railway transport,3.0702,TJ,CH4,3.9,kg/TJ,11.97378,kg +f4458fcb-f8a8-319e-bfe4-0182e1ff1f87,SESCO,II.2.1,San Juan,AR-J,annual,2021,gas oil combustion consumption by railway transport,3.0702,TJ,N2O,3.9,kg/TJ,11.97378,kg +fe84da45-a4ba-39af-ab1c-749d38676f07,SESCO,II.2.1,San Juan,AR-J,annual,2021,gas oil combustion consumption by railway transport,4.98456,TJ,CO2,74100.0,kg/TJ,369355.896,kg +aacd1e09-3953-3876-a0d4-0eebbd4e1b38,SESCO,II.2.1,San Juan,AR-J,annual,2021,gas oil combustion consumption by railway transport,4.98456,TJ,CH4,3.9,kg/TJ,19.439784,kg +aacd1e09-3953-3876-a0d4-0eebbd4e1b38,SESCO,II.2.1,San Juan,AR-J,annual,2021,gas oil combustion consumption by railway transport,4.98456,TJ,N2O,3.9,kg/TJ,19.439784,kg +bd7d49e6-0607-3671-9548-91df665fab01,SESCO,II.1.1,Buenos Aires,AR-B,annual,2021,gas oil combustion consumption by freight transport,11169.96552,TJ,CO2,74100.0,kg/TJ,827694445.032,kg +a9fa3f54-4c58-3a52-adfe-8a0225761b9d,SESCO,II.1.1,Buenos Aires,AR-B,annual,2021,gas oil combustion consumption by freight transport,11169.96552,TJ,CH4,3.9,kg/TJ,43562.865527999995,kg +a9fa3f54-4c58-3a52-adfe-8a0225761b9d,SESCO,II.1.1,Buenos Aires,AR-B,annual,2021,gas oil combustion consumption by freight transport,11169.96552,TJ,N2O,3.9,kg/TJ,43562.865527999995,kg +c84cdac8-094c-3046-89d9-d094ba56b145,SESCO,II.1.1,Capital Federal,AR-C,annual,2021,gas oil combustion consumption by freight transport,884.14536,TJ,CO2,74100.0,kg/TJ,65515171.176,kg +55b03431-2813-3909-aac9-2be770cfde56,SESCO,II.1.1,Capital Federal,AR-C,annual,2021,gas oil combustion consumption by freight transport,884.14536,TJ,CH4,3.9,kg/TJ,3448.1669039999997,kg +55b03431-2813-3909-aac9-2be770cfde56,SESCO,II.1.1,Capital Federal,AR-C,annual,2021,gas oil combustion consumption by freight transport,884.14536,TJ,N2O,3.9,kg/TJ,3448.1669039999997,kg +4458cbba-0265-38d3-bca6-69260b833beb,SESCO,II.1.1,Catamarca,AR-K,annual,2021,gas oil combustion consumption by freight transport,37.2036,TJ,CO2,74100.0,kg/TJ,2756786.7600000002,kg +9ba433a8-4633-3f7b-af7b-56bb2a9f71ea,SESCO,II.1.1,Catamarca,AR-K,annual,2021,gas oil combustion consumption by freight transport,37.2036,TJ,CH4,3.9,kg/TJ,145.09404,kg +9ba433a8-4633-3f7b-af7b-56bb2a9f71ea,SESCO,II.1.1,Catamarca,AR-K,annual,2021,gas oil combustion consumption by freight transport,37.2036,TJ,N2O,3.9,kg/TJ,145.09404,kg +d7ddde96-7826-30cc-8f72-318d4752f84a,SESCO,II.1.1,Chaco,AR-H,annual,2021,gas oil combustion consumption by freight transport,418.19736,TJ,CO2,74100.0,kg/TJ,30988424.376000002,kg +c44c25d7-c2ae-3db2-a7d8-772820101460,SESCO,II.1.1,Chaco,AR-H,annual,2021,gas oil combustion consumption by freight transport,418.19736,TJ,CH4,3.9,kg/TJ,1630.9697039999999,kg +c44c25d7-c2ae-3db2-a7d8-772820101460,SESCO,II.1.1,Chaco,AR-H,annual,2021,gas oil combustion consumption by freight transport,418.19736,TJ,N2O,3.9,kg/TJ,1630.9697039999999,kg +92228826-7fcd-33b8-9355-817f12899958,SESCO,II.1.1,Chubut,AR-U,annual,2021,gas oil combustion consumption by freight transport,830.36268,TJ,CO2,74100.0,kg/TJ,61529874.588,kg +09c5e210-186a-3cea-8388-4e217fd47df6,SESCO,II.1.1,Chubut,AR-U,annual,2021,gas oil combustion consumption by freight transport,830.36268,TJ,CH4,3.9,kg/TJ,3238.4144519999995,kg +09c5e210-186a-3cea-8388-4e217fd47df6,SESCO,II.1.1,Chubut,AR-U,annual,2021,gas oil combustion consumption by freight transport,830.36268,TJ,N2O,3.9,kg/TJ,3238.4144519999995,kg +32a87713-b381-3429-839b-97ca15d6c4ae,SESCO,II.1.1,Corrientes,AR-W,annual,2021,gas oil combustion consumption by freight transport,754.908,TJ,CO2,74100.0,kg/TJ,55938682.800000004,kg +4f879946-fa2e-3bbe-a549-696684d3e62f,SESCO,II.1.1,Corrientes,AR-W,annual,2021,gas oil combustion consumption by freight transport,754.908,TJ,CH4,3.9,kg/TJ,2944.1412,kg +4f879946-fa2e-3bbe-a549-696684d3e62f,SESCO,II.1.1,Corrientes,AR-W,annual,2021,gas oil combustion consumption by freight transport,754.908,TJ,N2O,3.9,kg/TJ,2944.1412,kg +bf4022bf-b14e-33bf-811b-fc0a01936498,SESCO,II.1.1,Córdoba,AR-X,annual,2021,gas oil combustion consumption by freight transport,2924.96148,TJ,CO2,74100.0,kg/TJ,216739645.66799998,kg +6bc2566d-dbde-3829-8f04-ee3fa7c012de,SESCO,II.1.1,Córdoba,AR-X,annual,2021,gas oil combustion consumption by freight transport,2924.96148,TJ,CH4,3.9,kg/TJ,11407.349772,kg +6bc2566d-dbde-3829-8f04-ee3fa7c012de,SESCO,II.1.1,Córdoba,AR-X,annual,2021,gas oil combustion consumption by freight transport,2924.96148,TJ,N2O,3.9,kg/TJ,11407.349772,kg +ab4f97ef-ef1e-34d6-9d4d-f69dca4e843b,SESCO,II.1.1,Entre Rios,AR-E,annual,2021,gas oil combustion consumption by freight transport,1238.66316,TJ,CO2,74100.0,kg/TJ,91784940.156,kg +3218372d-e197-364b-85b6-473936956f69,SESCO,II.1.1,Entre Rios,AR-E,annual,2021,gas oil combustion consumption by freight transport,1238.66316,TJ,CH4,3.9,kg/TJ,4830.786324,kg +3218372d-e197-364b-85b6-473936956f69,SESCO,II.1.1,Entre Rios,AR-E,annual,2021,gas oil combustion consumption by freight transport,1238.66316,TJ,N2O,3.9,kg/TJ,4830.786324,kg +ef560526-c4d4-3a01-b280-c8839e0b9823,SESCO,II.1.1,Formosa,AR-P,annual,2021,gas oil combustion consumption by freight transport,61.7652,TJ,CO2,74100.0,kg/TJ,4576801.32,kg +8dc95a28-da09-30b6-8eb2-7d7ff21780bf,SESCO,II.1.1,Formosa,AR-P,annual,2021,gas oil combustion consumption by freight transport,61.7652,TJ,CH4,3.9,kg/TJ,240.88428,kg +8dc95a28-da09-30b6-8eb2-7d7ff21780bf,SESCO,II.1.1,Formosa,AR-P,annual,2021,gas oil combustion consumption by freight transport,61.7652,TJ,N2O,3.9,kg/TJ,240.88428,kg +93bd7040-87ac-38bb-8626-8b6d233c33d8,SESCO,II.1.1,Jujuy,AR-Y,annual,2021,gas oil combustion consumption by freight transport,199.16568,TJ,CO2,74100.0,kg/TJ,14758176.888,kg +c72f84b0-1537-322a-ac80-a2afc22dc30a,SESCO,II.1.1,Jujuy,AR-Y,annual,2021,gas oil combustion consumption by freight transport,199.16568,TJ,CH4,3.9,kg/TJ,776.746152,kg +c72f84b0-1537-322a-ac80-a2afc22dc30a,SESCO,II.1.1,Jujuy,AR-Y,annual,2021,gas oil combustion consumption by freight transport,199.16568,TJ,N2O,3.9,kg/TJ,776.746152,kg +d16780d5-e756-341e-b7fa-c349c5b02183,SESCO,II.1.1,La Pampa,AR-L,annual,2021,gas oil combustion consumption by freight transport,1079.84352,TJ,CO2,74100.0,kg/TJ,80016404.83199999,kg +7382be68-4a2a-3380-bd7a-9960059c81a5,SESCO,II.1.1,La Pampa,AR-L,annual,2021,gas oil combustion consumption by freight transport,1079.84352,TJ,CH4,3.9,kg/TJ,4211.389727999999,kg +7382be68-4a2a-3380-bd7a-9960059c81a5,SESCO,II.1.1,La Pampa,AR-L,annual,2021,gas oil combustion consumption by freight transport,1079.84352,TJ,N2O,3.9,kg/TJ,4211.389727999999,kg +f3ccf743-1036-38dc-b0f8-69050adca500,SESCO,II.1.1,La Rioja,AR-F,annual,2021,gas oil combustion consumption by freight transport,91.78092,TJ,CO2,74100.0,kg/TJ,6800966.171999999,kg +f02dc9ae-aa2b-3e92-88c2-6ec741327058,SESCO,II.1.1,La Rioja,AR-F,annual,2021,gas oil combustion consumption by freight transport,91.78092,TJ,CH4,3.9,kg/TJ,357.945588,kg +f02dc9ae-aa2b-3e92-88c2-6ec741327058,SESCO,II.1.1,La Rioja,AR-F,annual,2021,gas oil combustion consumption by freight transport,91.78092,TJ,N2O,3.9,kg/TJ,357.945588,kg +5391057a-0518-3813-9be1-fccec69c18ba,SESCO,II.1.1,Mendoza,AR-M,annual,2021,gas oil combustion consumption by freight transport,1813.54908,TJ,CO2,74100.0,kg/TJ,134383986.828,kg +149cfa6e-1b42-3daa-906b-fc55b3e2bbc0,SESCO,II.1.1,Mendoza,AR-M,annual,2021,gas oil combustion consumption by freight transport,1813.54908,TJ,CH4,3.9,kg/TJ,7072.841412,kg +149cfa6e-1b42-3daa-906b-fc55b3e2bbc0,SESCO,II.1.1,Mendoza,AR-M,annual,2021,gas oil combustion consumption by freight transport,1813.54908,TJ,N2O,3.9,kg/TJ,7072.841412,kg +1d2da580-f768-342c-895a-29979e5d4a81,SESCO,II.1.1,Misiones,AR-N,annual,2021,gas oil combustion consumption by freight transport,689.92812,TJ,CO2,74100.0,kg/TJ,51123673.692,kg +08bcf7ca-fe33-3fa7-a9b0-5c80b462f2f9,SESCO,II.1.1,Misiones,AR-N,annual,2021,gas oil combustion consumption by freight transport,689.92812,TJ,CH4,3.9,kg/TJ,2690.719668,kg +08bcf7ca-fe33-3fa7-a9b0-5c80b462f2f9,SESCO,II.1.1,Misiones,AR-N,annual,2021,gas oil combustion consumption by freight transport,689.92812,TJ,N2O,3.9,kg/TJ,2690.719668,kg +b777a0de-de2f-333e-81cc-f41b042cb67c,SESCO,II.1.1,Neuquén,AR-Q,annual,2021,gas oil combustion consumption by freight transport,831.8436,TJ,CO2,74100.0,kg/TJ,61639610.760000005,kg +ea89ff33-ae27-33bd-abed-85dc0dd5990b,SESCO,II.1.1,Neuquén,AR-Q,annual,2021,gas oil combustion consumption by freight transport,831.8436,TJ,CH4,3.9,kg/TJ,3244.19004,kg +ea89ff33-ae27-33bd-abed-85dc0dd5990b,SESCO,II.1.1,Neuquén,AR-Q,annual,2021,gas oil combustion consumption by freight transport,831.8436,TJ,N2O,3.9,kg/TJ,3244.19004,kg +053346e2-35ca-3cb3-b92b-a122bc695660,SESCO,II.1.1,Rio Negro,AR-R,annual,2021,gas oil combustion consumption by freight transport,887.93796,TJ,CO2,74100.0,kg/TJ,65796202.835999995,kg +dd116e92-2788-3056-a189-f1656f1cbf3b,SESCO,II.1.1,Rio Negro,AR-R,annual,2021,gas oil combustion consumption by freight transport,887.93796,TJ,CH4,3.9,kg/TJ,3462.958044,kg +dd116e92-2788-3056-a189-f1656f1cbf3b,SESCO,II.1.1,Rio Negro,AR-R,annual,2021,gas oil combustion consumption by freight transport,887.93796,TJ,N2O,3.9,kg/TJ,3462.958044,kg +131b7e17-34ce-3e4d-a9e2-af20c5b7782a,SESCO,II.1.1,Salta,AR-A,annual,2021,gas oil combustion consumption by freight transport,805.1509199999999,TJ,CO2,74100.0,kg/TJ,59661683.172,kg +79896d3a-b7f1-39d9-990f-ca060e037b83,SESCO,II.1.1,Salta,AR-A,annual,2021,gas oil combustion consumption by freight transport,805.1509199999999,TJ,CH4,3.9,kg/TJ,3140.0885879999996,kg +79896d3a-b7f1-39d9-990f-ca060e037b83,SESCO,II.1.1,Salta,AR-A,annual,2021,gas oil combustion consumption by freight transport,805.1509199999999,TJ,N2O,3.9,kg/TJ,3140.0885879999996,kg +adcd7a8c-2568-34e8-b553-20e3f93a066d,SESCO,II.1.1,San Juan,AR-J,annual,2021,gas oil combustion consumption by freight transport,138.55632,TJ,CO2,74100.0,kg/TJ,10267023.312,kg +fa5a466b-2caa-336f-84ae-2d401c86347b,SESCO,II.1.1,San Juan,AR-J,annual,2021,gas oil combustion consumption by freight transport,138.55632,TJ,CH4,3.9,kg/TJ,540.369648,kg +fa5a466b-2caa-336f-84ae-2d401c86347b,SESCO,II.1.1,San Juan,AR-J,annual,2021,gas oil combustion consumption by freight transport,138.55632,TJ,N2O,3.9,kg/TJ,540.369648,kg +dbe1a8f3-9fb5-32c5-8f42-6a037aa48a4c,SESCO,II.1.1,San Luis,AR-D,annual,2021,gas oil combustion consumption by freight transport,571.09332,TJ,CO2,74100.0,kg/TJ,42318015.011999995,kg +2eccf46e-23a8-3d70-9b83-7bdb158766a0,SESCO,II.1.1,San Luis,AR-D,annual,2021,gas oil combustion consumption by freight transport,571.09332,TJ,CH4,3.9,kg/TJ,2227.263948,kg +2eccf46e-23a8-3d70-9b83-7bdb158766a0,SESCO,II.1.1,San Luis,AR-D,annual,2021,gas oil combustion consumption by freight transport,571.09332,TJ,N2O,3.9,kg/TJ,2227.263948,kg +10ec8f51-e5ab-348d-8a5f-38325bcf8a5b,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2021,gas oil combustion consumption by freight transport,592.15128,TJ,CO2,74100.0,kg/TJ,43878409.848000005,kg +2784913c-883b-311c-ac37-7c0dd0d79fae,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2021,gas oil combustion consumption by freight transport,592.15128,TJ,CH4,3.9,kg/TJ,2309.389992,kg +2784913c-883b-311c-ac37-7c0dd0d79fae,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2021,gas oil combustion consumption by freight transport,592.15128,TJ,N2O,3.9,kg/TJ,2309.389992,kg +027bcb8c-1299-3798-939c-84224a9befed,SESCO,II.1.1,Santa Fe,AR-S,annual,2021,gas oil combustion consumption by freight transport,3219.48396,TJ,CO2,74100.0,kg/TJ,238563761.436,kg +2a3b9f42-cea1-303c-a378-5af62ba8dcdc,SESCO,II.1.1,Santa Fe,AR-S,annual,2021,gas oil combustion consumption by freight transport,3219.48396,TJ,CH4,3.9,kg/TJ,12555.987444,kg +2a3b9f42-cea1-303c-a378-5af62ba8dcdc,SESCO,II.1.1,Santa Fe,AR-S,annual,2021,gas oil combustion consumption by freight transport,3219.48396,TJ,N2O,3.9,kg/TJ,12555.987444,kg +32002838-434f-3106-809a-48e2fb6fe8b8,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2021,gas oil combustion consumption by freight transport,702.3534,TJ,CO2,74100.0,kg/TJ,52044386.94,kg +6ff3dfda-936b-3597-a36e-f7d595ba56b8,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2021,gas oil combustion consumption by freight transport,702.3534,TJ,CH4,3.9,kg/TJ,2739.1782599999997,kg +6ff3dfda-936b-3597-a36e-f7d595ba56b8,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2021,gas oil combustion consumption by freight transport,702.3534,TJ,N2O,3.9,kg/TJ,2739.1782599999997,kg +4a223a14-3e38-3085-a173-4df9f76e6dac,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2021,gas oil combustion consumption by freight transport,285.05904,TJ,CO2,74100.0,kg/TJ,21122874.864,kg +a09dabda-3554-3f11-88ff-0f4eafca62eb,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2021,gas oil combustion consumption by freight transport,285.05904,TJ,CH4,3.9,kg/TJ,1111.7302559999998,kg +a09dabda-3554-3f11-88ff-0f4eafca62eb,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2021,gas oil combustion consumption by freight transport,285.05904,TJ,N2O,3.9,kg/TJ,1111.7302559999998,kg +b8bf00bd-c4cd-3d43-82f4-6d953bfe440c,SESCO,II.1.1,Tucuman,AR-T,annual,2021,gas oil combustion consumption by freight transport,405.2664,TJ,CO2,74100.0,kg/TJ,30030240.24,kg +1811159b-4156-3c8f-92d4-60689e0671c6,SESCO,II.1.1,Tucuman,AR-T,annual,2021,gas oil combustion consumption by freight transport,405.2664,TJ,CH4,3.9,kg/TJ,1580.5389599999999,kg +1811159b-4156-3c8f-92d4-60689e0671c6,SESCO,II.1.1,Tucuman,AR-T,annual,2021,gas oil combustion consumption by freight transport,405.2664,TJ,N2O,3.9,kg/TJ,1580.5389599999999,kg +5cdf3a4b-f2d8-3d7d-a2b5-5cfedf3e65de,SESCO,II.1.1,Buenos Aires,AR-B,annual,2021,gas oil combustion consumption by freight transport,4004.84112,TJ,CO2,74100.0,kg/TJ,296758726.992,kg +5c5103da-a151-3a53-9af1-0f14d70ea713,SESCO,II.1.1,Buenos Aires,AR-B,annual,2021,gas oil combustion consumption by freight transport,4004.84112,TJ,CH4,3.9,kg/TJ,15618.880368,kg +5c5103da-a151-3a53-9af1-0f14d70ea713,SESCO,II.1.1,Buenos Aires,AR-B,annual,2021,gas oil combustion consumption by freight transport,4004.84112,TJ,N2O,3.9,kg/TJ,15618.880368,kg +6433dbae-ec3e-366b-8d8e-3111f621f7a3,SESCO,II.1.1,Capital Federal,AR-C,annual,2021,gas oil combustion consumption by freight transport,495.13295999999997,TJ,CO2,74100.0,kg/TJ,36689352.335999995,kg +146af22d-c0fd-3120-ba58-c50ed64cb84b,SESCO,II.1.1,Capital Federal,AR-C,annual,2021,gas oil combustion consumption by freight transport,495.13295999999997,TJ,CH4,3.9,kg/TJ,1931.0185439999998,kg +146af22d-c0fd-3120-ba58-c50ed64cb84b,SESCO,II.1.1,Capital Federal,AR-C,annual,2021,gas oil combustion consumption by freight transport,495.13295999999997,TJ,N2O,3.9,kg/TJ,1931.0185439999998,kg +fb1a49b3-5dc9-374e-8241-ed3ddc8dba77,SESCO,II.1.1,Catamarca,AR-K,annual,2021,gas oil combustion consumption by freight transport,20.44392,TJ,CO2,74100.0,kg/TJ,1514894.4719999998,kg +608e6c4e-0172-3086-8ded-a3054a75bb51,SESCO,II.1.1,Catamarca,AR-K,annual,2021,gas oil combustion consumption by freight transport,20.44392,TJ,CH4,3.9,kg/TJ,79.73128799999999,kg +608e6c4e-0172-3086-8ded-a3054a75bb51,SESCO,II.1.1,Catamarca,AR-K,annual,2021,gas oil combustion consumption by freight transport,20.44392,TJ,N2O,3.9,kg/TJ,79.73128799999999,kg +6bb89b8d-2350-3620-a372-39f632e5465d,SESCO,II.1.1,Chaco,AR-H,annual,2021,gas oil combustion consumption by freight transport,160.58952,TJ,CO2,74100.0,kg/TJ,11899683.432,kg +d16dffaa-6d05-3f95-b057-fa804a043a08,SESCO,II.1.1,Chaco,AR-H,annual,2021,gas oil combustion consumption by freight transport,160.58952,TJ,CH4,3.9,kg/TJ,626.299128,kg +d16dffaa-6d05-3f95-b057-fa804a043a08,SESCO,II.1.1,Chaco,AR-H,annual,2021,gas oil combustion consumption by freight transport,160.58952,TJ,N2O,3.9,kg/TJ,626.299128,kg +3a652a09-8e0a-352e-9cbc-88e54f3261f3,SESCO,II.1.1,Chubut,AR-U,annual,2021,gas oil combustion consumption by freight transport,435.9684,TJ,CO2,74100.0,kg/TJ,32305258.439999998,kg +1d38fd49-c46c-3fa6-b586-d15c24027df3,SESCO,II.1.1,Chubut,AR-U,annual,2021,gas oil combustion consumption by freight transport,435.9684,TJ,CH4,3.9,kg/TJ,1700.27676,kg +1d38fd49-c46c-3fa6-b586-d15c24027df3,SESCO,II.1.1,Chubut,AR-U,annual,2021,gas oil combustion consumption by freight transport,435.9684,TJ,N2O,3.9,kg/TJ,1700.27676,kg +0f6ae104-5a08-33ac-92fa-66d0864501d6,SESCO,II.1.1,Corrientes,AR-W,annual,2021,gas oil combustion consumption by freight transport,208.91808,TJ,CO2,74100.0,kg/TJ,15480829.728,kg +6bbbe7f2-4b04-36dc-ade6-898ad92d9086,SESCO,II.1.1,Corrientes,AR-W,annual,2021,gas oil combustion consumption by freight transport,208.91808,TJ,CH4,3.9,kg/TJ,814.780512,kg +6bbbe7f2-4b04-36dc-ade6-898ad92d9086,SESCO,II.1.1,Corrientes,AR-W,annual,2021,gas oil combustion consumption by freight transport,208.91808,TJ,N2O,3.9,kg/TJ,814.780512,kg +f70fe27c-447f-3444-8018-f93e205ae3ba,SESCO,II.1.1,Córdoba,AR-X,annual,2021,gas oil combustion consumption by freight transport,819.7795199999999,TJ,CO2,74100.0,kg/TJ,60745662.432,kg +2861b0a0-0458-3a9c-8433-ba9d16ff91f8,SESCO,II.1.1,Córdoba,AR-X,annual,2021,gas oil combustion consumption by freight transport,819.7795199999999,TJ,CH4,3.9,kg/TJ,3197.1401279999995,kg +2861b0a0-0458-3a9c-8433-ba9d16ff91f8,SESCO,II.1.1,Córdoba,AR-X,annual,2021,gas oil combustion consumption by freight transport,819.7795199999999,TJ,N2O,3.9,kg/TJ,3197.1401279999995,kg +4ce558d7-6343-3a1a-af8f-7fb3d31cbffd,SESCO,II.1.1,Entre Rios,AR-E,annual,2021,gas oil combustion consumption by freight transport,315.147,TJ,CO2,74100.0,kg/TJ,23352392.7,kg +468b0ebd-11b4-3a2d-a53e-f59a39967bcc,SESCO,II.1.1,Entre Rios,AR-E,annual,2021,gas oil combustion consumption by freight transport,315.147,TJ,CH4,3.9,kg/TJ,1229.0733,kg +468b0ebd-11b4-3a2d-a53e-f59a39967bcc,SESCO,II.1.1,Entre Rios,AR-E,annual,2021,gas oil combustion consumption by freight transport,315.147,TJ,N2O,3.9,kg/TJ,1229.0733,kg +6bff51b0-2331-3ea4-af6e-72343a2589d1,SESCO,II.1.1,Formosa,AR-P,annual,2021,gas oil combustion consumption by freight transport,39.9126,TJ,CO2,74100.0,kg/TJ,2957523.6599999997,kg +646ad33a-2235-38cd-b2dc-a0e6794b8376,SESCO,II.1.1,Formosa,AR-P,annual,2021,gas oil combustion consumption by freight transport,39.9126,TJ,CH4,3.9,kg/TJ,155.65913999999998,kg +646ad33a-2235-38cd-b2dc-a0e6794b8376,SESCO,II.1.1,Formosa,AR-P,annual,2021,gas oil combustion consumption by freight transport,39.9126,TJ,N2O,3.9,kg/TJ,155.65913999999998,kg +9d6fd374-6d52-3b20-8b88-e12982887c7e,SESCO,II.1.1,Jujuy,AR-Y,annual,2021,gas oil combustion consumption by freight transport,60.17592,TJ,CO2,74100.0,kg/TJ,4459035.672,kg +66ac95bd-9537-3197-a9f7-783ca538fdd7,SESCO,II.1.1,Jujuy,AR-Y,annual,2021,gas oil combustion consumption by freight transport,60.17592,TJ,CH4,3.9,kg/TJ,234.68608799999998,kg +66ac95bd-9537-3197-a9f7-783ca538fdd7,SESCO,II.1.1,Jujuy,AR-Y,annual,2021,gas oil combustion consumption by freight transport,60.17592,TJ,N2O,3.9,kg/TJ,234.68608799999998,kg +26c71165-631d-3c39-869e-09fd7c897a86,SESCO,II.1.1,La Pampa,AR-L,annual,2021,gas oil combustion consumption by freight transport,203.64455999999998,TJ,CO2,74100.0,kg/TJ,15090061.896,kg +409048b5-a109-3644-bb56-5f451ed7b2cb,SESCO,II.1.1,La Pampa,AR-L,annual,2021,gas oil combustion consumption by freight transport,203.64455999999998,TJ,CH4,3.9,kg/TJ,794.2137839999999,kg +409048b5-a109-3644-bb56-5f451ed7b2cb,SESCO,II.1.1,La Pampa,AR-L,annual,2021,gas oil combustion consumption by freight transport,203.64455999999998,TJ,N2O,3.9,kg/TJ,794.2137839999999,kg +b389a5de-9ec3-3353-a10f-d5ce1f86a66c,SESCO,II.1.1,La Rioja,AR-F,annual,2021,gas oil combustion consumption by freight transport,47.281079999999996,TJ,CO2,74100.0,kg/TJ,3503528.0279999995,kg +89dabcf6-f951-398b-b925-781796b1c69a,SESCO,II.1.1,La Rioja,AR-F,annual,2021,gas oil combustion consumption by freight transport,47.281079999999996,TJ,CH4,3.9,kg/TJ,184.396212,kg +89dabcf6-f951-398b-b925-781796b1c69a,SESCO,II.1.1,La Rioja,AR-F,annual,2021,gas oil combustion consumption by freight transport,47.281079999999996,TJ,N2O,3.9,kg/TJ,184.396212,kg +0cc9b29d-339a-39e7-8cb4-662c604aa3d1,SESCO,II.1.1,Mendoza,AR-M,annual,2021,gas oil combustion consumption by freight transport,556.39248,TJ,CO2,74100.0,kg/TJ,41228682.768,kg +d23848b8-28ed-3c7f-b537-a87a820ac9b8,SESCO,II.1.1,Mendoza,AR-M,annual,2021,gas oil combustion consumption by freight transport,556.39248,TJ,CH4,3.9,kg/TJ,2169.930672,kg +d23848b8-28ed-3c7f-b537-a87a820ac9b8,SESCO,II.1.1,Mendoza,AR-M,annual,2021,gas oil combustion consumption by freight transport,556.39248,TJ,N2O,3.9,kg/TJ,2169.930672,kg +a2b7af1e-8e5d-3a66-bdf6-f6ad722ca8fc,SESCO,II.1.1,Misiones,AR-N,annual,2021,gas oil combustion consumption by freight transport,164.59884,TJ,CO2,74100.0,kg/TJ,12196774.044,kg +3bb5e42a-b84e-3d27-8ea4-7c7ad4fbc394,SESCO,II.1.1,Misiones,AR-N,annual,2021,gas oil combustion consumption by freight transport,164.59884,TJ,CH4,3.9,kg/TJ,641.935476,kg +3bb5e42a-b84e-3d27-8ea4-7c7ad4fbc394,SESCO,II.1.1,Misiones,AR-N,annual,2021,gas oil combustion consumption by freight transport,164.59884,TJ,N2O,3.9,kg/TJ,641.935476,kg +997039f6-f33d-38a1-b502-c8bca0ad4586,SESCO,II.1.1,Neuquén,AR-Q,annual,2021,gas oil combustion consumption by freight transport,1197.41412,TJ,CO2,74100.0,kg/TJ,88728386.292,kg +09e4d48e-987b-3fc1-b628-61e3904b08c5,SESCO,II.1.1,Neuquén,AR-Q,annual,2021,gas oil combustion consumption by freight transport,1197.41412,TJ,CH4,3.9,kg/TJ,4669.915067999999,kg +09e4d48e-987b-3fc1-b628-61e3904b08c5,SESCO,II.1.1,Neuquén,AR-Q,annual,2021,gas oil combustion consumption by freight transport,1197.41412,TJ,N2O,3.9,kg/TJ,4669.915067999999,kg +cd19faff-765c-3220-b6d8-f349c4c3c311,SESCO,II.1.1,Rio Negro,AR-R,annual,2021,gas oil combustion consumption by freight transport,412.02083999999996,TJ,CO2,74100.0,kg/TJ,30530744.244,kg +a5a4560a-a0f5-3ec6-b1cf-91e78d786d23,SESCO,II.1.1,Rio Negro,AR-R,annual,2021,gas oil combustion consumption by freight transport,412.02083999999996,TJ,CH4,3.9,kg/TJ,1606.8812759999998,kg +a5a4560a-a0f5-3ec6-b1cf-91e78d786d23,SESCO,II.1.1,Rio Negro,AR-R,annual,2021,gas oil combustion consumption by freight transport,412.02083999999996,TJ,N2O,3.9,kg/TJ,1606.8812759999998,kg +71fa6f15-3e04-3b7c-b7e9-759fde469f52,SESCO,II.1.1,Salta,AR-A,annual,2021,gas oil combustion consumption by freight transport,287.98476,TJ,CO2,74100.0,kg/TJ,21339670.716,kg +d1128c8d-f6d5-36d5-9b81-fd388c4c31da,SESCO,II.1.1,Salta,AR-A,annual,2021,gas oil combustion consumption by freight transport,287.98476,TJ,CH4,3.9,kg/TJ,1123.140564,kg +d1128c8d-f6d5-36d5-9b81-fd388c4c31da,SESCO,II.1.1,Salta,AR-A,annual,2021,gas oil combustion consumption by freight transport,287.98476,TJ,N2O,3.9,kg/TJ,1123.140564,kg +6d0ef19c-af67-3471-a5fa-38371b933f0d,SESCO,II.1.1,San Juan,AR-J,annual,2021,gas oil combustion consumption by freight transport,66.85812,TJ,CO2,74100.0,kg/TJ,4954186.692,kg +deecda7b-1daf-3a72-8197-d59b337e1f79,SESCO,II.1.1,San Juan,AR-J,annual,2021,gas oil combustion consumption by freight transport,66.85812,TJ,CH4,3.9,kg/TJ,260.746668,kg +deecda7b-1daf-3a72-8197-d59b337e1f79,SESCO,II.1.1,San Juan,AR-J,annual,2021,gas oil combustion consumption by freight transport,66.85812,TJ,N2O,3.9,kg/TJ,260.746668,kg +ebc83cba-b501-3aae-83c8-06a62528076a,SESCO,II.1.1,San Luis,AR-D,annual,2021,gas oil combustion consumption by freight transport,116.41476,TJ,CO2,74100.0,kg/TJ,8626333.716,kg +f8d3923f-6008-3c01-b81a-c4630477f18f,SESCO,II.1.1,San Luis,AR-D,annual,2021,gas oil combustion consumption by freight transport,116.41476,TJ,CH4,3.9,kg/TJ,454.017564,kg +f8d3923f-6008-3c01-b81a-c4630477f18f,SESCO,II.1.1,San Luis,AR-D,annual,2021,gas oil combustion consumption by freight transport,116.41476,TJ,N2O,3.9,kg/TJ,454.017564,kg +98f9c6e3-52d5-3f76-8901-58054a1132a6,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2021,gas oil combustion consumption by freight transport,299.18196,TJ,CO2,74100.0,kg/TJ,22169383.236,kg +30c4ef92-69e5-3ba5-af91-9b4b85a0c68a,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2021,gas oil combustion consumption by freight transport,299.18196,TJ,CH4,3.9,kg/TJ,1166.809644,kg +30c4ef92-69e5-3ba5-af91-9b4b85a0c68a,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2021,gas oil combustion consumption by freight transport,299.18196,TJ,N2O,3.9,kg/TJ,1166.809644,kg +9d0812d6-59d5-38ec-a7c7-b362265959ba,SESCO,II.1.1,Santa Fe,AR-S,annual,2021,gas oil combustion consumption by freight transport,792.72564,TJ,CO2,74100.0,kg/TJ,58740969.924,kg +5b20936d-826b-326e-b72b-8955bfb0411d,SESCO,II.1.1,Santa Fe,AR-S,annual,2021,gas oil combustion consumption by freight transport,792.72564,TJ,CH4,3.9,kg/TJ,3091.629996,kg +5b20936d-826b-326e-b72b-8955bfb0411d,SESCO,II.1.1,Santa Fe,AR-S,annual,2021,gas oil combustion consumption by freight transport,792.72564,TJ,N2O,3.9,kg/TJ,3091.629996,kg +d0cac68d-1f0b-3df7-bcc7-2ed75e9e5783,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2021,gas oil combustion consumption by freight transport,142.38504,TJ,CO2,74100.0,kg/TJ,10550731.464,kg +f13479f7-0577-37a1-b9ca-de84a59b27c4,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2021,gas oil combustion consumption by freight transport,142.38504,TJ,CH4,3.9,kg/TJ,555.301656,kg +f13479f7-0577-37a1-b9ca-de84a59b27c4,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2021,gas oil combustion consumption by freight transport,142.38504,TJ,N2O,3.9,kg/TJ,555.301656,kg +76cbdca2-c8f8-30b4-b63f-30f7c4d4db54,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2021,gas oil combustion consumption by freight transport,109.69644,TJ,CO2,74100.0,kg/TJ,8128506.204,kg +11a99b5c-4209-34ad-a989-aeb855ec24b3,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2021,gas oil combustion consumption by freight transport,109.69644,TJ,CH4,3.9,kg/TJ,427.81611599999997,kg +11a99b5c-4209-34ad-a989-aeb855ec24b3,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2021,gas oil combustion consumption by freight transport,109.69644,TJ,N2O,3.9,kg/TJ,427.81611599999997,kg +2f4b47fa-27e8-3950-ad92-10d99ab3be2c,SESCO,II.1.1,Tucuman,AR-T,annual,2021,gas oil combustion consumption by freight transport,155.24376,TJ,CO2,74100.0,kg/TJ,11503562.616,kg +f4c6f887-4e22-36e1-83b9-27c359ad8d07,SESCO,II.1.1,Tucuman,AR-T,annual,2021,gas oil combustion consumption by freight transport,155.24376,TJ,CH4,3.9,kg/TJ,605.4506640000001,kg +f4c6f887-4e22-36e1-83b9-27c359ad8d07,SESCO,II.1.1,Tucuman,AR-T,annual,2021,gas oil combustion consumption by freight transport,155.24376,TJ,N2O,3.9,kg/TJ,605.4506640000001,kg +9b07f1ef-de2b-385b-bcf0-90e06a4ce8fe,SESCO,II.1.1,Buenos Aires,AR-B,annual,2021,gas oil combustion consumption by public passenger transport,6476.53272,TJ,CO2,74100.0,kg/TJ,479911074.552,kg +b515c49d-eb27-3806-bbe2-4715453dd0a0,SESCO,II.1.1,Buenos Aires,AR-B,annual,2021,gas oil combustion consumption by public passenger transport,6476.53272,TJ,CH4,3.9,kg/TJ,25258.477608,kg +b515c49d-eb27-3806-bbe2-4715453dd0a0,SESCO,II.1.1,Buenos Aires,AR-B,annual,2021,gas oil combustion consumption by public passenger transport,6476.53272,TJ,N2O,3.9,kg/TJ,25258.477608,kg +e2d05f9f-c733-3837-b086-c30191974373,SESCO,II.1.1,Capital Federal,AR-C,annual,2021,gas oil combustion consumption by public passenger transport,1002.47448,TJ,CO2,74100.0,kg/TJ,74283358.968,kg +39774e48-9bbb-3120-9be2-a9a6be417b60,SESCO,II.1.1,Capital Federal,AR-C,annual,2021,gas oil combustion consumption by public passenger transport,1002.47448,TJ,CH4,3.9,kg/TJ,3909.650472,kg +39774e48-9bbb-3120-9be2-a9a6be417b60,SESCO,II.1.1,Capital Federal,AR-C,annual,2021,gas oil combustion consumption by public passenger transport,1002.47448,TJ,N2O,3.9,kg/TJ,3909.650472,kg +4523dc5d-d822-32bd-beda-c5124ac757b9,SESCO,II.1.1,Catamarca,AR-K,annual,2021,gas oil combustion consumption by public passenger transport,45.76404,TJ,CO2,74100.0,kg/TJ,3391115.364,kg +138ce513-1b1f-3b95-8bd5-bdbb6e946979,SESCO,II.1.1,Catamarca,AR-K,annual,2021,gas oil combustion consumption by public passenger transport,45.76404,TJ,CH4,3.9,kg/TJ,178.479756,kg +138ce513-1b1f-3b95-8bd5-bdbb6e946979,SESCO,II.1.1,Catamarca,AR-K,annual,2021,gas oil combustion consumption by public passenger transport,45.76404,TJ,N2O,3.9,kg/TJ,178.479756,kg +28954c0c-905a-346c-bb94-61451106ab61,SESCO,II.1.1,Chaco,AR-H,annual,2021,gas oil combustion consumption by public passenger transport,72.27611999999999,TJ,CO2,74100.0,kg/TJ,5355660.492,kg +c81d0206-e1c5-33fd-b3a5-23af6edf11f9,SESCO,II.1.1,Chaco,AR-H,annual,2021,gas oil combustion consumption by public passenger transport,72.27611999999999,TJ,CH4,3.9,kg/TJ,281.87686799999994,kg +c81d0206-e1c5-33fd-b3a5-23af6edf11f9,SESCO,II.1.1,Chaco,AR-H,annual,2021,gas oil combustion consumption by public passenger transport,72.27611999999999,TJ,N2O,3.9,kg/TJ,281.87686799999994,kg +e98b7f4c-cb45-36d0-8fae-0e7518ac0f33,SESCO,II.1.1,Chubut,AR-U,annual,2021,gas oil combustion consumption by public passenger transport,17.5182,TJ,CO2,74100.0,kg/TJ,1298098.62,kg +d3a4e832-0eee-3319-9c87-6ee851567652,SESCO,II.1.1,Chubut,AR-U,annual,2021,gas oil combustion consumption by public passenger transport,17.5182,TJ,CH4,3.9,kg/TJ,68.32098,kg +d3a4e832-0eee-3319-9c87-6ee851567652,SESCO,II.1.1,Chubut,AR-U,annual,2021,gas oil combustion consumption by public passenger transport,17.5182,TJ,N2O,3.9,kg/TJ,68.32098,kg +087f839a-2fbd-391a-845e-0ee6b53f8e99,SESCO,II.1.1,Corrientes,AR-W,annual,2021,gas oil combustion consumption by public passenger transport,58.11708,TJ,CO2,74100.0,kg/TJ,4306475.6280000005,kg +2070a38f-3377-3ebb-8cec-86cf3b28e2c3,SESCO,II.1.1,Corrientes,AR-W,annual,2021,gas oil combustion consumption by public passenger transport,58.11708,TJ,CH4,3.9,kg/TJ,226.656612,kg +2070a38f-3377-3ebb-8cec-86cf3b28e2c3,SESCO,II.1.1,Corrientes,AR-W,annual,2021,gas oil combustion consumption by public passenger transport,58.11708,TJ,N2O,3.9,kg/TJ,226.656612,kg +b6cb226c-98f9-34dc-a627-f9fe313cefbe,SESCO,II.1.1,Córdoba,AR-X,annual,2021,gas oil combustion consumption by public passenger transport,482.9244,TJ,CO2,74100.0,kg/TJ,35784698.04,kg +9b647cb0-81af-3e7e-9a0c-92aab65008d6,SESCO,II.1.1,Córdoba,AR-X,annual,2021,gas oil combustion consumption by public passenger transport,482.9244,TJ,CH4,3.9,kg/TJ,1883.40516,kg +9b647cb0-81af-3e7e-9a0c-92aab65008d6,SESCO,II.1.1,Córdoba,AR-X,annual,2021,gas oil combustion consumption by public passenger transport,482.9244,TJ,N2O,3.9,kg/TJ,1883.40516,kg +40c8309d-106d-3fd9-bd2f-23a3dfe696ab,SESCO,II.1.1,Entre Rios,AR-E,annual,2021,gas oil combustion consumption by public passenger transport,131.4768,TJ,CO2,74100.0,kg/TJ,9742430.879999999,kg +bd0ebf9b-0d8e-3d86-8ff7-6ca49491a77c,SESCO,II.1.1,Entre Rios,AR-E,annual,2021,gas oil combustion consumption by public passenger transport,131.4768,TJ,CH4,3.9,kg/TJ,512.75952,kg +bd0ebf9b-0d8e-3d86-8ff7-6ca49491a77c,SESCO,II.1.1,Entre Rios,AR-E,annual,2021,gas oil combustion consumption by public passenger transport,131.4768,TJ,N2O,3.9,kg/TJ,512.75952,kg +de7c6587-4e3d-37a4-bd5c-2c2305e01016,SESCO,II.1.1,Formosa,AR-P,annual,2021,gas oil combustion consumption by public passenger transport,1.4447999999999999,TJ,CO2,74100.0,kg/TJ,107059.68,kg +77c7a571-2292-3916-afc6-9aadbce7119e,SESCO,II.1.1,Formosa,AR-P,annual,2021,gas oil combustion consumption by public passenger transport,1.4447999999999999,TJ,CH4,3.9,kg/TJ,5.63472,kg +77c7a571-2292-3916-afc6-9aadbce7119e,SESCO,II.1.1,Formosa,AR-P,annual,2021,gas oil combustion consumption by public passenger transport,1.4447999999999999,TJ,N2O,3.9,kg/TJ,5.63472,kg +dd07ae24-5236-3e8b-ad8e-aad374fb5c0e,SESCO,II.1.1,Jujuy,AR-Y,annual,2021,gas oil combustion consumption by public passenger transport,154.23239999999998,TJ,CO2,74100.0,kg/TJ,11428620.839999998,kg +b65b2cd8-b75b-3254-9c63-d33f9f91e5e0,SESCO,II.1.1,Jujuy,AR-Y,annual,2021,gas oil combustion consumption by public passenger transport,154.23239999999998,TJ,CH4,3.9,kg/TJ,601.50636,kg +b65b2cd8-b75b-3254-9c63-d33f9f91e5e0,SESCO,II.1.1,Jujuy,AR-Y,annual,2021,gas oil combustion consumption by public passenger transport,154.23239999999998,TJ,N2O,3.9,kg/TJ,601.50636,kg +bc963fa9-fc30-3d65-b7cf-26309a2ee4bd,SESCO,II.1.1,Mendoza,AR-M,annual,2021,gas oil combustion consumption by public passenger transport,691.48128,TJ,CO2,74100.0,kg/TJ,51238762.848,kg +f0490b93-705c-361d-af30-07058073e354,SESCO,II.1.1,Mendoza,AR-M,annual,2021,gas oil combustion consumption by public passenger transport,691.48128,TJ,CH4,3.9,kg/TJ,2696.7769919999996,kg +f0490b93-705c-361d-af30-07058073e354,SESCO,II.1.1,Mendoza,AR-M,annual,2021,gas oil combustion consumption by public passenger transport,691.48128,TJ,N2O,3.9,kg/TJ,2696.7769919999996,kg +ac879865-7757-3bab-a652-edce5d021f80,SESCO,II.1.1,Misiones,AR-N,annual,2021,gas oil combustion consumption by public passenger transport,303.11904,TJ,CO2,74100.0,kg/TJ,22461120.864,kg +53411895-8d85-343d-b4f0-9c8f3d2820b1,SESCO,II.1.1,Misiones,AR-N,annual,2021,gas oil combustion consumption by public passenger transport,303.11904,TJ,CH4,3.9,kg/TJ,1182.164256,kg +53411895-8d85-343d-b4f0-9c8f3d2820b1,SESCO,II.1.1,Misiones,AR-N,annual,2021,gas oil combustion consumption by public passenger transport,303.11904,TJ,N2O,3.9,kg/TJ,1182.164256,kg +356a3c1d-0cfd-3ddd-aa39-a3b1e56779e4,SESCO,II.1.1,Neuquén,AR-Q,annual,2021,gas oil combustion consumption by public passenger transport,26.62044,TJ,CO2,74100.0,kg/TJ,1972574.6039999998,kg +e04c4681-02a7-34b6-b029-ed49b2aa973f,SESCO,II.1.1,Neuquén,AR-Q,annual,2021,gas oil combustion consumption by public passenger transport,26.62044,TJ,CH4,3.9,kg/TJ,103.81971599999999,kg +e04c4681-02a7-34b6-b029-ed49b2aa973f,SESCO,II.1.1,Neuquén,AR-Q,annual,2021,gas oil combustion consumption by public passenger transport,26.62044,TJ,N2O,3.9,kg/TJ,103.81971599999999,kg +17a4f9e4-d5c4-327c-baae-c7c98e04921b,SESCO,II.1.1,Rio Negro,AR-R,annual,2021,gas oil combustion consumption by public passenger transport,15.60384,TJ,CO2,74100.0,kg/TJ,1156244.544,kg +17ecd8c0-5b5d-3fca-9f74-cae0cbf16c4f,SESCO,II.1.1,Rio Negro,AR-R,annual,2021,gas oil combustion consumption by public passenger transport,15.60384,TJ,CH4,3.9,kg/TJ,60.854976,kg +17ecd8c0-5b5d-3fca-9f74-cae0cbf16c4f,SESCO,II.1.1,Rio Negro,AR-R,annual,2021,gas oil combustion consumption by public passenger transport,15.60384,TJ,N2O,3.9,kg/TJ,60.854976,kg +b74c50df-a250-38ab-9712-da7427b78dab,SESCO,II.1.1,Salta,AR-A,annual,2021,gas oil combustion consumption by public passenger transport,175.75992,TJ,CO2,74100.0,kg/TJ,13023810.071999999,kg +b29d53a8-8318-3ba3-9300-4dd2f4bc5836,SESCO,II.1.1,Salta,AR-A,annual,2021,gas oil combustion consumption by public passenger transport,175.75992,TJ,CH4,3.9,kg/TJ,685.4636879999999,kg +b29d53a8-8318-3ba3-9300-4dd2f4bc5836,SESCO,II.1.1,Salta,AR-A,annual,2021,gas oil combustion consumption by public passenger transport,175.75992,TJ,N2O,3.9,kg/TJ,685.4636879999999,kg +8126fea2-3f62-3fab-997a-c7c2bde41f00,SESCO,II.1.1,San Juan,AR-J,annual,2021,gas oil combustion consumption by public passenger transport,36.58956,TJ,CO2,74100.0,kg/TJ,2711286.3959999997,kg +d9e7f6bf-d2ce-3291-bc39-4ed9dae8cae9,SESCO,II.1.1,San Juan,AR-J,annual,2021,gas oil combustion consumption by public passenger transport,36.58956,TJ,CH4,3.9,kg/TJ,142.699284,kg +d9e7f6bf-d2ce-3291-bc39-4ed9dae8cae9,SESCO,II.1.1,San Juan,AR-J,annual,2021,gas oil combustion consumption by public passenger transport,36.58956,TJ,N2O,3.9,kg/TJ,142.699284,kg +cc83a842-3ffa-36d9-9689-fd3e0ef1dfb4,SESCO,II.1.1,Santa Fe,AR-S,annual,2021,gas oil combustion consumption by public passenger transport,471.04091999999997,TJ,CO2,74100.0,kg/TJ,34904132.172,kg +a299960c-01e2-3101-ae2f-33bfacefc2bb,SESCO,II.1.1,Santa Fe,AR-S,annual,2021,gas oil combustion consumption by public passenger transport,471.04091999999997,TJ,CH4,3.9,kg/TJ,1837.0595879999998,kg +a299960c-01e2-3101-ae2f-33bfacefc2bb,SESCO,II.1.1,Santa Fe,AR-S,annual,2021,gas oil combustion consumption by public passenger transport,471.04091999999997,TJ,N2O,3.9,kg/TJ,1837.0595879999998,kg +0cb7c4c3-21df-306f-9250-e5cbe049a17c,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2021,gas oil combustion consumption by public passenger transport,6.321,TJ,CO2,74100.0,kg/TJ,468386.1,kg +b157c2e9-54b2-3dcb-82bf-6a1dc9a7a249,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2021,gas oil combustion consumption by public passenger transport,6.321,TJ,CH4,3.9,kg/TJ,24.651899999999998,kg +b157c2e9-54b2-3dcb-82bf-6a1dc9a7a249,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2021,gas oil combustion consumption by public passenger transport,6.321,TJ,N2O,3.9,kg/TJ,24.651899999999998,kg +4ec928d5-7a96-3c04-a605-3bc91c3933f8,SESCO,II.1.1,Tucuman,AR-T,annual,2021,gas oil combustion consumption by public passenger transport,38.829,TJ,CO2,74100.0,kg/TJ,2877228.9,kg +a22d6acf-6a82-32d5-9ae3-d72d5ce7deda,SESCO,II.1.1,Tucuman,AR-T,annual,2021,gas oil combustion consumption by public passenger transport,38.829,TJ,CH4,3.9,kg/TJ,151.4331,kg +a22d6acf-6a82-32d5-9ae3-d72d5ce7deda,SESCO,II.1.1,Tucuman,AR-T,annual,2021,gas oil combustion consumption by public passenger transport,38.829,TJ,N2O,3.9,kg/TJ,151.4331,kg +3a1be204-7b49-3a36-aae0-3bfca96351f6,SESCO,II.1.1,Buenos Aires,AR-B,annual,2021,gas oil combustion consumption by public passenger transport,3687.99648,TJ,CO2,74100.0,kg/TJ,273280539.168,kg +12676e90-8781-375f-ac66-3abef1bfa206,SESCO,II.1.1,Buenos Aires,AR-B,annual,2021,gas oil combustion consumption by public passenger transport,3687.99648,TJ,CH4,3.9,kg/TJ,14383.186271999999,kg +12676e90-8781-375f-ac66-3abef1bfa206,SESCO,II.1.1,Buenos Aires,AR-B,annual,2021,gas oil combustion consumption by public passenger transport,3687.99648,TJ,N2O,3.9,kg/TJ,14383.186271999999,kg +99d9acb8-b5f5-3dc8-bb09-7fd75c673492,SESCO,II.1.1,Capital Federal,AR-C,annual,2021,gas oil combustion consumption by public passenger transport,710.4804,TJ,CO2,74100.0,kg/TJ,52646597.64,kg +6355da38-528d-3539-a654-3fd5be142291,SESCO,II.1.1,Capital Federal,AR-C,annual,2021,gas oil combustion consumption by public passenger transport,710.4804,TJ,CH4,3.9,kg/TJ,2770.87356,kg +6355da38-528d-3539-a654-3fd5be142291,SESCO,II.1.1,Capital Federal,AR-C,annual,2021,gas oil combustion consumption by public passenger transport,710.4804,TJ,N2O,3.9,kg/TJ,2770.87356,kg +ed3065a7-69f7-3f4e-ba87-983816f649d0,SESCO,II.1.1,Chaco,AR-H,annual,2021,gas oil combustion consumption by public passenger transport,11.738999999999999,TJ,CO2,74100.0,kg/TJ,869859.8999999999,kg +aa35a296-575a-3a7b-adb3-cfa66608268f,SESCO,II.1.1,Chaco,AR-H,annual,2021,gas oil combustion consumption by public passenger transport,11.738999999999999,TJ,CH4,3.9,kg/TJ,45.78209999999999,kg +aa35a296-575a-3a7b-adb3-cfa66608268f,SESCO,II.1.1,Chaco,AR-H,annual,2021,gas oil combustion consumption by public passenger transport,11.738999999999999,TJ,N2O,3.9,kg/TJ,45.78209999999999,kg +d6136f01-4864-31aa-ac78-13eb299b03bf,SESCO,II.1.1,Chubut,AR-U,annual,2021,gas oil combustion consumption by public passenger transport,52.04892,TJ,CO2,74100.0,kg/TJ,3856824.972,kg +d79da8b0-3a79-3256-986a-6fa531c5924f,SESCO,II.1.1,Chubut,AR-U,annual,2021,gas oil combustion consumption by public passenger transport,52.04892,TJ,CH4,3.9,kg/TJ,202.990788,kg +d79da8b0-3a79-3256-986a-6fa531c5924f,SESCO,II.1.1,Chubut,AR-U,annual,2021,gas oil combustion consumption by public passenger transport,52.04892,TJ,N2O,3.9,kg/TJ,202.990788,kg +4d593498-da44-359f-addc-1c18d7d4b38d,SESCO,II.1.1,Corrientes,AR-W,annual,2021,gas oil combustion consumption by public passenger transport,33.66384,TJ,CO2,74100.0,kg/TJ,2494490.544,kg +33cfb358-ad3f-3f30-afcd-37c93e099e24,SESCO,II.1.1,Corrientes,AR-W,annual,2021,gas oil combustion consumption by public passenger transport,33.66384,TJ,CH4,3.9,kg/TJ,131.288976,kg +33cfb358-ad3f-3f30-afcd-37c93e099e24,SESCO,II.1.1,Corrientes,AR-W,annual,2021,gas oil combustion consumption by public passenger transport,33.66384,TJ,N2O,3.9,kg/TJ,131.288976,kg +bafdaa5c-003e-3c1a-a9aa-effc0cd92aee,SESCO,II.1.1,Córdoba,AR-X,annual,2021,gas oil combustion consumption by public passenger transport,181.10568,TJ,CO2,74100.0,kg/TJ,13419930.888,kg +3bb54310-ea28-37f7-9e65-d022477f028b,SESCO,II.1.1,Córdoba,AR-X,annual,2021,gas oil combustion consumption by public passenger transport,181.10568,TJ,CH4,3.9,kg/TJ,706.312152,kg +3bb54310-ea28-37f7-9e65-d022477f028b,SESCO,II.1.1,Córdoba,AR-X,annual,2021,gas oil combustion consumption by public passenger transport,181.10568,TJ,N2O,3.9,kg/TJ,706.312152,kg +6b7a148b-825a-3bb7-a875-758e7377530e,SESCO,II.1.1,Entre Rios,AR-E,annual,2021,gas oil combustion consumption by public passenger transport,31.027079999999998,TJ,CO2,74100.0,kg/TJ,2299106.628,kg +996bed3b-cdca-39b9-8639-00f93f8d24d7,SESCO,II.1.1,Entre Rios,AR-E,annual,2021,gas oil combustion consumption by public passenger transport,31.027079999999998,TJ,CH4,3.9,kg/TJ,121.00561199999999,kg +996bed3b-cdca-39b9-8639-00f93f8d24d7,SESCO,II.1.1,Entre Rios,AR-E,annual,2021,gas oil combustion consumption by public passenger transport,31.027079999999998,TJ,N2O,3.9,kg/TJ,121.00561199999999,kg +9d7861b0-b146-321d-aaf6-9a1185481d12,SESCO,II.1.1,Mendoza,AR-M,annual,2021,gas oil combustion consumption by public passenger transport,163.94868,TJ,CO2,74100.0,kg/TJ,12148597.188,kg +16956f5e-5c93-37dc-8f46-eb6910f329df,SESCO,II.1.1,Mendoza,AR-M,annual,2021,gas oil combustion consumption by public passenger transport,163.94868,TJ,CH4,3.9,kg/TJ,639.399852,kg +16956f5e-5c93-37dc-8f46-eb6910f329df,SESCO,II.1.1,Mendoza,AR-M,annual,2021,gas oil combustion consumption by public passenger transport,163.94868,TJ,N2O,3.9,kg/TJ,639.399852,kg +17309640-4b25-3e98-9c7f-d925259ef942,SESCO,II.1.1,Misiones,AR-N,annual,2021,gas oil combustion consumption by public passenger transport,59.45352,TJ,CO2,74100.0,kg/TJ,4405505.8319999995,kg +b8ece898-0ec3-3476-bb63-21f12e52d5a2,SESCO,II.1.1,Misiones,AR-N,annual,2021,gas oil combustion consumption by public passenger transport,59.45352,TJ,CH4,3.9,kg/TJ,231.86872799999998,kg +b8ece898-0ec3-3476-bb63-21f12e52d5a2,SESCO,II.1.1,Misiones,AR-N,annual,2021,gas oil combustion consumption by public passenger transport,59.45352,TJ,N2O,3.9,kg/TJ,231.86872799999998,kg +c646b7b9-c11f-3190-89a0-44cab804b22a,SESCO,II.1.1,Neuquén,AR-Q,annual,2021,gas oil combustion consumption by public passenger transport,12.20856,TJ,CO2,74100.0,kg/TJ,904654.296,kg +e1dc3fb3-f30d-3db5-870b-2454d64ae3d9,SESCO,II.1.1,Neuquén,AR-Q,annual,2021,gas oil combustion consumption by public passenger transport,12.20856,TJ,CH4,3.9,kg/TJ,47.613384,kg +e1dc3fb3-f30d-3db5-870b-2454d64ae3d9,SESCO,II.1.1,Neuquén,AR-Q,annual,2021,gas oil combustion consumption by public passenger transport,12.20856,TJ,N2O,3.9,kg/TJ,47.613384,kg +0559d741-53ef-3684-b7ba-f1601511dd36,SESCO,II.1.1,Rio Negro,AR-R,annual,2021,gas oil combustion consumption by public passenger transport,140.83187999999998,TJ,CO2,74100.0,kg/TJ,10435642.307999998,kg +be5b77f4-1162-3bf7-ad96-e529cd0d3e5a,SESCO,II.1.1,Rio Negro,AR-R,annual,2021,gas oil combustion consumption by public passenger transport,140.83187999999998,TJ,CH4,3.9,kg/TJ,549.2443319999999,kg +be5b77f4-1162-3bf7-ad96-e529cd0d3e5a,SESCO,II.1.1,Rio Negro,AR-R,annual,2021,gas oil combustion consumption by public passenger transport,140.83187999999998,TJ,N2O,3.9,kg/TJ,549.2443319999999,kg +dac70011-de87-3c7d-b121-d9ace9dedfb2,SESCO,II.1.1,Salta,AR-A,annual,2021,gas oil combustion consumption by public passenger transport,106.15668,TJ,CO2,74100.0,kg/TJ,7866209.988,kg +7f669601-7392-38da-b3c0-de84eca19444,SESCO,II.1.1,Salta,AR-A,annual,2021,gas oil combustion consumption by public passenger transport,106.15668,TJ,CH4,3.9,kg/TJ,414.01105199999995,kg +7f669601-7392-38da-b3c0-de84eca19444,SESCO,II.1.1,Salta,AR-A,annual,2021,gas oil combustion consumption by public passenger transport,106.15668,TJ,N2O,3.9,kg/TJ,414.01105199999995,kg +0b73ef53-08cf-3d61-a06e-53fde30a2af9,SESCO,II.1.1,San Juan,AR-J,annual,2021,gas oil combustion consumption by public passenger transport,59.52576,TJ,CO2,74100.0,kg/TJ,4410858.816,kg +3fed6664-1a53-3d6d-b0a4-6c06dc4ffb0b,SESCO,II.1.1,San Juan,AR-J,annual,2021,gas oil combustion consumption by public passenger transport,59.52576,TJ,CH4,3.9,kg/TJ,232.150464,kg +3fed6664-1a53-3d6d-b0a4-6c06dc4ffb0b,SESCO,II.1.1,San Juan,AR-J,annual,2021,gas oil combustion consumption by public passenger transport,59.52576,TJ,N2O,3.9,kg/TJ,232.150464,kg +6d7b71d0-ac2a-3606-92d2-754595ff0f5c,SESCO,II.1.1,Santa Fe,AR-S,annual,2021,gas oil combustion consumption by public passenger transport,242.04012,TJ,CO2,74100.0,kg/TJ,17935172.892,kg +73196694-bfaa-3602-a9d5-be895144a290,SESCO,II.1.1,Santa Fe,AR-S,annual,2021,gas oil combustion consumption by public passenger transport,242.04012,TJ,CH4,3.9,kg/TJ,943.956468,kg +73196694-bfaa-3602-a9d5-be895144a290,SESCO,II.1.1,Santa Fe,AR-S,annual,2021,gas oil combustion consumption by public passenger transport,242.04012,TJ,N2O,3.9,kg/TJ,943.956468,kg +5aad2194-1c91-392e-8365-4b74a8793edd,SESCO,II.1.1,Tucuman,AR-T,annual,2021,gas oil combustion consumption by public passenger transport,13.68948,TJ,CO2,74100.0,kg/TJ,1014390.468,kg +76e40e5d-e089-3866-bf9d-69165cc1b5c7,SESCO,II.1.1,Tucuman,AR-T,annual,2021,gas oil combustion consumption by public passenger transport,13.68948,TJ,CH4,3.9,kg/TJ,53.388971999999995,kg +76e40e5d-e089-3866-bf9d-69165cc1b5c7,SESCO,II.1.1,Tucuman,AR-T,annual,2021,gas oil combustion consumption by public passenger transport,13.68948,TJ,N2O,3.9,kg/TJ,53.388971999999995,kg +7cccbe8d-0a5c-3e5a-b716-ab4e56de3f99,SESCO,II.5.1,Buenos Aires,AR-B,annual,2022,gas oil combustion consumption by agriculture machines,720.16056,TJ,CO2,74100.0,kg/TJ,53363897.496,kg +d32b2dba-0b5b-348f-beaa-62dc00659b6d,SESCO,II.5.1,Buenos Aires,AR-B,annual,2022,gas oil combustion consumption by agriculture machines,720.16056,TJ,CH4,3.9,kg/TJ,2808.626184,kg +d32b2dba-0b5b-348f-beaa-62dc00659b6d,SESCO,II.5.1,Buenos Aires,AR-B,annual,2022,gas oil combustion consumption by agriculture machines,720.16056,TJ,N2O,3.9,kg/TJ,2808.626184,kg +14769f95-61b8-3e8e-bf4d-2e301b2a84fe,SESCO,II.5.1,Córdoba,AR-X,annual,2022,gas oil combustion consumption by agriculture machines,129.95976,TJ,CO2,74100.0,kg/TJ,9630018.216,kg +842c2126-ccb3-3ef7-b97d-b3f46ac18343,SESCO,II.5.1,Córdoba,AR-X,annual,2022,gas oil combustion consumption by agriculture machines,129.95976,TJ,CH4,3.9,kg/TJ,506.84306399999997,kg +842c2126-ccb3-3ef7-b97d-b3f46ac18343,SESCO,II.5.1,Córdoba,AR-X,annual,2022,gas oil combustion consumption by agriculture machines,129.95976,TJ,N2O,3.9,kg/TJ,506.84306399999997,kg +b1373625-ebe1-3de8-b8e0-7dacc3a928cd,SESCO,II.5.1,Entre Rios,AR-E,annual,2022,gas oil combustion consumption by agriculture machines,16.03728,TJ,CO2,74100.0,kg/TJ,1188362.4479999999,kg +c252d8a2-9e5c-3aa0-abc2-0bf879218fc3,SESCO,II.5.1,Entre Rios,AR-E,annual,2022,gas oil combustion consumption by agriculture machines,16.03728,TJ,CH4,3.9,kg/TJ,62.54539199999999,kg +c252d8a2-9e5c-3aa0-abc2-0bf879218fc3,SESCO,II.5.1,Entre Rios,AR-E,annual,2022,gas oil combustion consumption by agriculture machines,16.03728,TJ,N2O,3.9,kg/TJ,62.54539199999999,kg +e7946e55-a306-3f55-98a1-7fdc95988425,SESCO,II.5.1,La Pampa,AR-L,annual,2022,gas oil combustion consumption by agriculture machines,25.78968,TJ,CO2,74100.0,kg/TJ,1911015.288,kg +1a650d84-fd88-3ea7-a2d0-e138ad0710a5,SESCO,II.5.1,La Pampa,AR-L,annual,2022,gas oil combustion consumption by agriculture machines,25.78968,TJ,CH4,3.9,kg/TJ,100.579752,kg +1a650d84-fd88-3ea7-a2d0-e138ad0710a5,SESCO,II.5.1,La Pampa,AR-L,annual,2022,gas oil combustion consumption by agriculture machines,25.78968,TJ,N2O,3.9,kg/TJ,100.579752,kg +5960c84b-c31d-3859-9741-3d9559fa5e75,SESCO,II.5.1,Santa Fe,AR-S,annual,2022,gas oil combustion consumption by agriculture machines,173.80944,TJ,CO2,74100.0,kg/TJ,12879279.503999999,kg +db3639b1-e99d-3f01-a9e6-663ed76a8ff4,SESCO,II.5.1,Santa Fe,AR-S,annual,2022,gas oil combustion consumption by agriculture machines,173.80944,TJ,CH4,3.9,kg/TJ,677.856816,kg +db3639b1-e99d-3f01-a9e6-663ed76a8ff4,SESCO,II.5.1,Santa Fe,AR-S,annual,2022,gas oil combustion consumption by agriculture machines,173.80944,TJ,N2O,3.9,kg/TJ,677.856816,kg +089bee9b-35c5-31ca-94b8-897ae887028f,SESCO,II.5.1,Buenos Aires,AR-B,annual,2022,gas oil combustion consumption by agriculture machines,30.59364,TJ,CO2,74100.0,kg/TJ,2266988.724,kg +ef220c5f-4b84-31fe-a431-4bced89afe51,SESCO,II.5.1,Buenos Aires,AR-B,annual,2022,gas oil combustion consumption by agriculture machines,30.59364,TJ,CH4,3.9,kg/TJ,119.315196,kg +ef220c5f-4b84-31fe-a431-4bced89afe51,SESCO,II.5.1,Buenos Aires,AR-B,annual,2022,gas oil combustion consumption by agriculture machines,30.59364,TJ,N2O,3.9,kg/TJ,119.315196,kg +3ccd8fbf-f69a-385a-afde-f6bc461fbefd,SESCO,II.5.1,Córdoba,AR-X,annual,2022,gas oil combustion consumption by agriculture machines,10.69152,TJ,CO2,74100.0,kg/TJ,792241.6320000001,kg +2f375e7b-c64a-3cb8-9c5d-e93ee090be80,SESCO,II.5.1,Córdoba,AR-X,annual,2022,gas oil combustion consumption by agriculture machines,10.69152,TJ,CH4,3.9,kg/TJ,41.696928,kg +2f375e7b-c64a-3cb8-9c5d-e93ee090be80,SESCO,II.5.1,Córdoba,AR-X,annual,2022,gas oil combustion consumption by agriculture machines,10.69152,TJ,N2O,3.9,kg/TJ,41.696928,kg +7e025b7e-0932-355b-8403-205a08761cca,SESCO,II.5.1,Santa Fe,AR-S,annual,2022,gas oil combustion consumption by agriculture machines,18.31284,TJ,CO2,74100.0,kg/TJ,1356981.4440000001,kg +d53b7b45-a4a3-32ce-a3d7-c1fb9f7eb4af,SESCO,II.5.1,Santa Fe,AR-S,annual,2022,gas oil combustion consumption by agriculture machines,18.31284,TJ,CH4,3.9,kg/TJ,71.42007600000001,kg +d53b7b45-a4a3-32ce-a3d7-c1fb9f7eb4af,SESCO,II.5.1,Santa Fe,AR-S,annual,2022,gas oil combustion consumption by agriculture machines,18.31284,TJ,N2O,3.9,kg/TJ,71.42007600000001,kg +33766f41-caa4-32d5-b556-6f33feb1d9d4,SESCO,II.1.1,Buenos Aires,AR-B,annual,2022,gas oil combustion consumption by to the public,1718.7702,TJ,CO2,74100.0,kg/TJ,127360871.82,kg +8751ddac-8f0a-3806-b5d4-db2ce8496dc3,SESCO,II.1.1,Buenos Aires,AR-B,annual,2022,gas oil combustion consumption by to the public,1718.7702,TJ,CH4,3.9,kg/TJ,6703.20378,kg +8751ddac-8f0a-3806-b5d4-db2ce8496dc3,SESCO,II.1.1,Buenos Aires,AR-B,annual,2022,gas oil combustion consumption by to the public,1718.7702,TJ,N2O,3.9,kg/TJ,6703.20378,kg +cbf07cf6-2134-345c-8917-3e6805077d89,SESCO,II.1.1,Capital Federal,AR-C,annual,2022,gas oil combustion consumption by to the public,136.06404,TJ,CO2,74100.0,kg/TJ,10082345.364,kg +c65ec392-969d-3258-bd61-e5db26484fbf,SESCO,II.1.1,Capital Federal,AR-C,annual,2022,gas oil combustion consumption by to the public,136.06404,TJ,CH4,3.9,kg/TJ,530.649756,kg +c65ec392-969d-3258-bd61-e5db26484fbf,SESCO,II.1.1,Capital Federal,AR-C,annual,2022,gas oil combustion consumption by to the public,136.06404,TJ,N2O,3.9,kg/TJ,530.649756,kg +cda89dc2-6073-36bc-a046-3acb2da9dc17,SESCO,II.1.1,Catamarca,AR-K,annual,2022,gas oil combustion consumption by to the public,7.29624,TJ,CO2,74100.0,kg/TJ,540651.384,kg +3637e9dd-7dda-3d1b-94c2-9ec648a458ad,SESCO,II.1.1,Catamarca,AR-K,annual,2022,gas oil combustion consumption by to the public,7.29624,TJ,CH4,3.9,kg/TJ,28.455336,kg +3637e9dd-7dda-3d1b-94c2-9ec648a458ad,SESCO,II.1.1,Catamarca,AR-K,annual,2022,gas oil combustion consumption by to the public,7.29624,TJ,N2O,3.9,kg/TJ,28.455336,kg +fb8452dd-7322-3b28-a918-9c2d55fec75a,SESCO,II.1.1,Chaco,AR-H,annual,2022,gas oil combustion consumption by to the public,4.26216,TJ,CO2,74100.0,kg/TJ,315826.056,kg +b196ac4a-ea82-3e38-88be-fd9a1ddc28a7,SESCO,II.1.1,Chaco,AR-H,annual,2022,gas oil combustion consumption by to the public,4.26216,TJ,CH4,3.9,kg/TJ,16.622424,kg +b196ac4a-ea82-3e38-88be-fd9a1ddc28a7,SESCO,II.1.1,Chaco,AR-H,annual,2022,gas oil combustion consumption by to the public,4.26216,TJ,N2O,3.9,kg/TJ,16.622424,kg +95ff5cd7-aad4-3e2f-9c80-cb872a071a67,SESCO,II.1.1,Corrientes,AR-W,annual,2022,gas oil combustion consumption by to the public,6.1404,TJ,CO2,74100.0,kg/TJ,455003.63999999996,kg +acf21131-aa8a-32a8-a3f5-0f2cf95db8fd,SESCO,II.1.1,Corrientes,AR-W,annual,2022,gas oil combustion consumption by to the public,6.1404,TJ,CH4,3.9,kg/TJ,23.94756,kg +acf21131-aa8a-32a8-a3f5-0f2cf95db8fd,SESCO,II.1.1,Corrientes,AR-W,annual,2022,gas oil combustion consumption by to the public,6.1404,TJ,N2O,3.9,kg/TJ,23.94756,kg +0e553af5-164a-3014-8399-0d8d3e4d5923,SESCO,II.1.1,Córdoba,AR-X,annual,2022,gas oil combustion consumption by to the public,1261.3104,TJ,CO2,74100.0,kg/TJ,93463100.64,kg +c0a2d859-73a2-3bd2-bcd7-ad0a13cd1c0d,SESCO,II.1.1,Córdoba,AR-X,annual,2022,gas oil combustion consumption by to the public,1261.3104,TJ,CH4,3.9,kg/TJ,4919.11056,kg +c0a2d859-73a2-3bd2-bcd7-ad0a13cd1c0d,SESCO,II.1.1,Córdoba,AR-X,annual,2022,gas oil combustion consumption by to the public,1261.3104,TJ,N2O,3.9,kg/TJ,4919.11056,kg +17802e2e-9c8e-3ed7-b97c-cc092f7afd98,SESCO,II.1.1,Entre Rios,AR-E,annual,2022,gas oil combustion consumption by to the public,333.89328,TJ,CO2,74100.0,kg/TJ,24741492.048,kg +d1c75765-c7ef-32a2-b8fc-488db61a9dcd,SESCO,II.1.1,Entre Rios,AR-E,annual,2022,gas oil combustion consumption by to the public,333.89328,TJ,CH4,3.9,kg/TJ,1302.183792,kg +d1c75765-c7ef-32a2-b8fc-488db61a9dcd,SESCO,II.1.1,Entre Rios,AR-E,annual,2022,gas oil combustion consumption by to the public,333.89328,TJ,N2O,3.9,kg/TJ,1302.183792,kg +d0002f25-a2de-3e7b-8e64-dfd8d9a0b6df,SESCO,II.1.1,Mendoza,AR-M,annual,2022,gas oil combustion consumption by to the public,451.89732,TJ,CO2,74100.0,kg/TJ,33485591.411999997,kg +ae2ec688-6e21-36c1-b801-6782b0891bda,SESCO,II.1.1,Mendoza,AR-M,annual,2022,gas oil combustion consumption by to the public,451.89732,TJ,CH4,3.9,kg/TJ,1762.3995479999999,kg +ae2ec688-6e21-36c1-b801-6782b0891bda,SESCO,II.1.1,Mendoza,AR-M,annual,2022,gas oil combustion consumption by to the public,451.89732,TJ,N2O,3.9,kg/TJ,1762.3995479999999,kg +d77e0801-6a5a-34f8-aacc-f3c5f283d1e7,SESCO,II.1.1,San Luis,AR-D,annual,2022,gas oil combustion consumption by to the public,23.00844,TJ,CO2,74100.0,kg/TJ,1704925.404,kg +4f4f8423-8b17-3769-8d11-898424142b91,SESCO,II.1.1,San Luis,AR-D,annual,2022,gas oil combustion consumption by to the public,23.00844,TJ,CH4,3.9,kg/TJ,89.732916,kg +4f4f8423-8b17-3769-8d11-898424142b91,SESCO,II.1.1,San Luis,AR-D,annual,2022,gas oil combustion consumption by to the public,23.00844,TJ,N2O,3.9,kg/TJ,89.732916,kg +f134b607-6517-3ade-9049-35f551ea16f6,SESCO,II.1.1,Santa Fe,AR-S,annual,2022,gas oil combustion consumption by to the public,1271.92968,TJ,CO2,74100.0,kg/TJ,94249989.288,kg +72bfc37d-f836-34d4-bedd-87870fa00f0d,SESCO,II.1.1,Santa Fe,AR-S,annual,2022,gas oil combustion consumption by to the public,1271.92968,TJ,CH4,3.9,kg/TJ,4960.525752,kg +72bfc37d-f836-34d4-bedd-87870fa00f0d,SESCO,II.1.1,Santa Fe,AR-S,annual,2022,gas oil combustion consumption by to the public,1271.92968,TJ,N2O,3.9,kg/TJ,4960.525752,kg +f62ab9a1-d985-38f9-926b-44007b6aa263,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2022,gas oil combustion consumption by to the public,13.40052,TJ,CO2,74100.0,kg/TJ,992978.532,kg +5f8bef4d-3815-3b2a-a65d-33e88b533791,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2022,gas oil combustion consumption by to the public,13.40052,TJ,CH4,3.9,kg/TJ,52.262028,kg +5f8bef4d-3815-3b2a-a65d-33e88b533791,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2022,gas oil combustion consumption by to the public,13.40052,TJ,N2O,3.9,kg/TJ,52.262028,kg +fb56e19c-86cd-33e6-b0e4-14941020df74,SESCO,II.1.1,Tucuman,AR-T,annual,2022,gas oil combustion consumption by to the public,93.1896,TJ,CO2,74100.0,kg/TJ,6905349.36,kg +0dfbae56-a770-302e-bf09-9077be6a2c7a,SESCO,II.1.1,Tucuman,AR-T,annual,2022,gas oil combustion consumption by to the public,93.1896,TJ,CH4,3.9,kg/TJ,363.43944,kg +0dfbae56-a770-302e-bf09-9077be6a2c7a,SESCO,II.1.1,Tucuman,AR-T,annual,2022,gas oil combustion consumption by to the public,93.1896,TJ,N2O,3.9,kg/TJ,363.43944,kg +6d5c39f9-7508-3e4c-86fa-49108f66b2bf,SESCO,II.1.1,Buenos Aires,AR-B,annual,2022,gas oil combustion consumption by to the public,229.362,TJ,CO2,74100.0,kg/TJ,16995724.2,kg +7e856cde-efc8-3939-af4b-7325475df8c5,SESCO,II.1.1,Buenos Aires,AR-B,annual,2022,gas oil combustion consumption by to the public,229.362,TJ,CH4,3.9,kg/TJ,894.5118,kg +7e856cde-efc8-3939-af4b-7325475df8c5,SESCO,II.1.1,Buenos Aires,AR-B,annual,2022,gas oil combustion consumption by to the public,229.362,TJ,N2O,3.9,kg/TJ,894.5118,kg +67592c23-1ba0-332d-b70f-91cde3d3a206,SESCO,II.1.1,Capital Federal,AR-C,annual,2022,gas oil combustion consumption by to the public,16.254,TJ,CO2,74100.0,kg/TJ,1204421.4000000001,kg +95196021-a6e1-396b-b660-55a704cda8fb,SESCO,II.1.1,Capital Federal,AR-C,annual,2022,gas oil combustion consumption by to the public,16.254,TJ,CH4,3.9,kg/TJ,63.390600000000006,kg +95196021-a6e1-396b-b660-55a704cda8fb,SESCO,II.1.1,Capital Federal,AR-C,annual,2022,gas oil combustion consumption by to the public,16.254,TJ,N2O,3.9,kg/TJ,63.390600000000006,kg +ffc00ae6-8193-3247-9fc3-09f75979cc10,SESCO,II.1.1,Catamarca,AR-K,annual,2022,gas oil combustion consumption by to the public,7.7658,TJ,CO2,74100.0,kg/TJ,575445.78,kg +b635b28b-1ead-3103-b916-f8401762ec2f,SESCO,II.1.1,Catamarca,AR-K,annual,2022,gas oil combustion consumption by to the public,7.7658,TJ,CH4,3.9,kg/TJ,30.28662,kg +b635b28b-1ead-3103-b916-f8401762ec2f,SESCO,II.1.1,Catamarca,AR-K,annual,2022,gas oil combustion consumption by to the public,7.7658,TJ,N2O,3.9,kg/TJ,30.28662,kg +afd9334c-8bee-300f-863f-166c0b52f94c,SESCO,II.1.1,Chaco,AR-H,annual,2022,gas oil combustion consumption by to the public,0.75852,TJ,CO2,74100.0,kg/TJ,56206.331999999995,kg +9618bbc2-0871-306d-8702-a0b4e5443645,SESCO,II.1.1,Chaco,AR-H,annual,2022,gas oil combustion consumption by to the public,0.75852,TJ,CH4,3.9,kg/TJ,2.9582279999999996,kg +9618bbc2-0871-306d-8702-a0b4e5443645,SESCO,II.1.1,Chaco,AR-H,annual,2022,gas oil combustion consumption by to the public,0.75852,TJ,N2O,3.9,kg/TJ,2.9582279999999996,kg +1aac9608-666d-3d78-898c-4f2847796b78,SESCO,II.1.1,Corrientes,AR-W,annual,2022,gas oil combustion consumption by to the public,2.13108,TJ,CO2,74100.0,kg/TJ,157913.028,kg +d9511ad4-5dab-338c-bb53-aeb0a28b23ad,SESCO,II.1.1,Corrientes,AR-W,annual,2022,gas oil combustion consumption by to the public,2.13108,TJ,CH4,3.9,kg/TJ,8.311212,kg +d9511ad4-5dab-338c-bb53-aeb0a28b23ad,SESCO,II.1.1,Corrientes,AR-W,annual,2022,gas oil combustion consumption by to the public,2.13108,TJ,N2O,3.9,kg/TJ,8.311212,kg +13b6ab65-65ff-3a5e-b7c6-dc4ceb30b503,SESCO,II.1.1,Córdoba,AR-X,annual,2022,gas oil combustion consumption by to the public,172.43688,TJ,CO2,74100.0,kg/TJ,12777572.808,kg +9b4a80a1-bd98-3612-8e92-4cea030df88d,SESCO,II.1.1,Córdoba,AR-X,annual,2022,gas oil combustion consumption by to the public,172.43688,TJ,CH4,3.9,kg/TJ,672.503832,kg +9b4a80a1-bd98-3612-8e92-4cea030df88d,SESCO,II.1.1,Córdoba,AR-X,annual,2022,gas oil combustion consumption by to the public,172.43688,TJ,N2O,3.9,kg/TJ,672.503832,kg +8d589b8a-6772-3bd5-82db-ec668e0e57ac,SESCO,II.1.1,Entre Rios,AR-E,annual,2022,gas oil combustion consumption by to the public,53.168639999999996,TJ,CO2,74100.0,kg/TJ,3939796.224,kg +56bc50f9-f511-3b00-9c89-a456e1329c3b,SESCO,II.1.1,Entre Rios,AR-E,annual,2022,gas oil combustion consumption by to the public,53.168639999999996,TJ,CH4,3.9,kg/TJ,207.35769599999998,kg +56bc50f9-f511-3b00-9c89-a456e1329c3b,SESCO,II.1.1,Entre Rios,AR-E,annual,2022,gas oil combustion consumption by to the public,53.168639999999996,TJ,N2O,3.9,kg/TJ,207.35769599999998,kg +e7c0e0a5-ebf6-3738-9acd-7a02e44c423f,SESCO,II.1.1,Mendoza,AR-M,annual,2022,gas oil combustion consumption by to the public,95.39292,TJ,CO2,74100.0,kg/TJ,7068615.372,kg +f2ed3a5a-40d8-3710-8e69-a7b813e9d0f0,SESCO,II.1.1,Mendoza,AR-M,annual,2022,gas oil combustion consumption by to the public,95.39292,TJ,CH4,3.9,kg/TJ,372.032388,kg +f2ed3a5a-40d8-3710-8e69-a7b813e9d0f0,SESCO,II.1.1,Mendoza,AR-M,annual,2022,gas oil combustion consumption by to the public,95.39292,TJ,N2O,3.9,kg/TJ,372.032388,kg +5b962d66-3f6f-304f-a5f4-f5c284ea5394,SESCO,II.1.1,San Juan,AR-J,annual,2022,gas oil combustion consumption by to the public,0.65016,TJ,CO2,74100.0,kg/TJ,48176.856,kg +547a96f0-53fc-34a6-9405-f5c1800f924e,SESCO,II.1.1,San Juan,AR-J,annual,2022,gas oil combustion consumption by to the public,0.65016,TJ,CH4,3.9,kg/TJ,2.535624,kg +547a96f0-53fc-34a6-9405-f5c1800f924e,SESCO,II.1.1,San Juan,AR-J,annual,2022,gas oil combustion consumption by to the public,0.65016,TJ,N2O,3.9,kg/TJ,2.535624,kg +a6abc454-3a09-345c-a0ee-4bc561f345ea,SESCO,II.1.1,San Luis,AR-D,annual,2022,gas oil combustion consumption by to the public,4.11768,TJ,CO2,74100.0,kg/TJ,305120.088,kg +9f3e00a3-3ec5-3104-bab3-300f443d81e6,SESCO,II.1.1,San Luis,AR-D,annual,2022,gas oil combustion consumption by to the public,4.11768,TJ,CH4,3.9,kg/TJ,16.058951999999998,kg +9f3e00a3-3ec5-3104-bab3-300f443d81e6,SESCO,II.1.1,San Luis,AR-D,annual,2022,gas oil combustion consumption by to the public,4.11768,TJ,N2O,3.9,kg/TJ,16.058951999999998,kg +4bf40a6a-195e-3d2f-b800-7e10bd8928c0,SESCO,II.1.1,Santa Fe,AR-S,annual,2022,gas oil combustion consumption by to the public,170.70311999999998,TJ,CO2,74100.0,kg/TJ,12649101.191999998,kg +a0a11a7c-d9f9-3580-8c00-d5f4bda70b4c,SESCO,II.1.1,Santa Fe,AR-S,annual,2022,gas oil combustion consumption by to the public,170.70311999999998,TJ,CH4,3.9,kg/TJ,665.7421679999999,kg +a0a11a7c-d9f9-3580-8c00-d5f4bda70b4c,SESCO,II.1.1,Santa Fe,AR-S,annual,2022,gas oil combustion consumption by to the public,170.70311999999998,TJ,N2O,3.9,kg/TJ,665.7421679999999,kg +0091e430-3bbd-3352-8d82-224d6585579c,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2022,gas oil combustion consumption by to the public,7.51296,TJ,CO2,74100.0,kg/TJ,556710.336,kg +8be4babf-87dd-33db-ba5f-3dc575b02933,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2022,gas oil combustion consumption by to the public,7.51296,TJ,CH4,3.9,kg/TJ,29.300544,kg +8be4babf-87dd-33db-ba5f-3dc575b02933,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2022,gas oil combustion consumption by to the public,7.51296,TJ,N2O,3.9,kg/TJ,29.300544,kg +ee21ab8b-ed27-37f0-b320-493452b5e2dc,SESCO,II.1.1,Tucuman,AR-T,annual,2022,gas oil combustion consumption by to the public,2.5284,TJ,CO2,74100.0,kg/TJ,187354.44,kg +a0cb5e92-0ce9-3a03-a56b-6fcc5876ab20,SESCO,II.1.1,Tucuman,AR-T,annual,2022,gas oil combustion consumption by to the public,2.5284,TJ,CH4,3.9,kg/TJ,9.860759999999999,kg +a0cb5e92-0ce9-3a03-a56b-6fcc5876ab20,SESCO,II.1.1,Tucuman,AR-T,annual,2022,gas oil combustion consumption by to the public,2.5284,TJ,N2O,3.9,kg/TJ,9.860759999999999,kg +760070ad-0ddc-3ee2-bf2b-ee32ddcfd1ab,SESCO,II.1.1,Buenos Aires,AR-B,annual,2022,jet kerosene combustion consumption by to the public,0.31453,TJ,CO2,71500.0,kg/TJ,22488.894999999997,kg +14c3d360-c3f9-3a44-aa9c-d7a23f0be055,SESCO,II.1.1,Buenos Aires,AR-B,annual,2022,jet kerosene combustion consumption by to the public,0.31453,TJ,CH4,0.5,kg/TJ,0.157265,kg +3cbb27cd-15a8-30d0-a77a-e64d675f20a7,SESCO,II.1.1,Buenos Aires,AR-B,annual,2022,jet kerosene combustion consumption by to the public,0.31453,TJ,N2O,2.0,kg/TJ,0.62906,kg +aacdb00d-08d7-342c-8779-0a6d170ad7a5,SESCO,II.1.1,Córdoba,AR-X,annual,2022,jet kerosene combustion consumption by to the public,0.9121369999999999,TJ,CO2,71500.0,kg/TJ,65217.79549999999,kg +f6e22f93-a102-3ea1-b47f-d200b5cff1a2,SESCO,II.1.1,Córdoba,AR-X,annual,2022,jet kerosene combustion consumption by to the public,0.9121369999999999,TJ,CH4,0.5,kg/TJ,0.45606849999999993,kg +510c9156-ea05-3687-ab56-e5fb68f2c204,SESCO,II.1.1,Córdoba,AR-X,annual,2022,jet kerosene combustion consumption by to the public,0.9121369999999999,TJ,N2O,2.0,kg/TJ,1.8242739999999997,kg +36b5d004-a844-310e-8c71-cdd30e562628,SESCO,II.1.1,Santa Fe,AR-S,annual,2022,jet kerosene combustion consumption by to the public,0.5032479999999999,TJ,CO2,71500.0,kg/TJ,35982.231999999996,kg +9f512e33-1b81-3dd1-9d95-6d50abfe24bb,SESCO,II.1.1,Santa Fe,AR-S,annual,2022,jet kerosene combustion consumption by to the public,0.5032479999999999,TJ,CH4,0.5,kg/TJ,0.25162399999999996,kg +b8545903-4d07-3743-8b2c-5b0f7bcc4069,SESCO,II.1.1,Santa Fe,AR-S,annual,2022,jet kerosene combustion consumption by to the public,0.5032479999999999,TJ,N2O,2.0,kg/TJ,1.0064959999999998,kg +28ebeabb-506e-3983-80cc-14d493d3051b,SESCO,II.5.1,Buenos Aires,AR-B,annual,2022,gas oil combustion consumption by agriculture machines,337.75812,TJ,CO2,74100.0,kg/TJ,25027876.692,kg +5478ea20-7804-3c7b-a9a7-349521e52c07,SESCO,II.5.1,Buenos Aires,AR-B,annual,2022,gas oil combustion consumption by agriculture machines,337.75812,TJ,CH4,3.9,kg/TJ,1317.256668,kg +5478ea20-7804-3c7b-a9a7-349521e52c07,SESCO,II.5.1,Buenos Aires,AR-B,annual,2022,gas oil combustion consumption by agriculture machines,337.75812,TJ,N2O,3.9,kg/TJ,1317.256668,kg +003831e7-8530-343e-a9f7-c5cf8f22aec1,SESCO,II.5.1,Capital Federal,AR-C,annual,2022,gas oil combustion consumption by agriculture machines,2.60064,TJ,CO2,74100.0,kg/TJ,192707.424,kg +7590ccc9-113e-3d75-a4fd-67608737eec0,SESCO,II.5.1,Capital Federal,AR-C,annual,2022,gas oil combustion consumption by agriculture machines,2.60064,TJ,CH4,3.9,kg/TJ,10.142496,kg +7590ccc9-113e-3d75-a4fd-67608737eec0,SESCO,II.5.1,Capital Federal,AR-C,annual,2022,gas oil combustion consumption by agriculture machines,2.60064,TJ,N2O,3.9,kg/TJ,10.142496,kg +55d4d8c5-a3a7-3ef8-b82b-f3f7095f9229,SESCO,II.5.1,Córdoba,AR-X,annual,2022,gas oil combustion consumption by agriculture machines,201.98304,TJ,CO2,74100.0,kg/TJ,14966943.263999999,kg +d7cc065a-24ab-3f28-a6d0-a5bc433e386c,SESCO,II.5.1,Córdoba,AR-X,annual,2022,gas oil combustion consumption by agriculture machines,201.98304,TJ,CH4,3.9,kg/TJ,787.733856,kg +d7cc065a-24ab-3f28-a6d0-a5bc433e386c,SESCO,II.5.1,Córdoba,AR-X,annual,2022,gas oil combustion consumption by agriculture machines,201.98304,TJ,N2O,3.9,kg/TJ,787.733856,kg +3162fb28-aef7-3c5f-916d-f59fc05e1274,SESCO,II.5.1,Entre Rios,AR-E,annual,2022,gas oil combustion consumption by agriculture machines,246.01332,TJ,CO2,74100.0,kg/TJ,18229587.012,kg +9adc8d30-aecd-30ca-9428-0b7b398bac07,SESCO,II.5.1,Entre Rios,AR-E,annual,2022,gas oil combustion consumption by agriculture machines,246.01332,TJ,CH4,3.9,kg/TJ,959.4519479999999,kg +9adc8d30-aecd-30ca-9428-0b7b398bac07,SESCO,II.5.1,Entre Rios,AR-E,annual,2022,gas oil combustion consumption by agriculture machines,246.01332,TJ,N2O,3.9,kg/TJ,959.4519479999999,kg +def3834e-12a9-3ef4-8c0b-1508434691f8,SESCO,II.5.1,Salta,AR-A,annual,2022,gas oil combustion consumption by agriculture machines,321.17904,TJ,CO2,74100.0,kg/TJ,23799366.864,kg +95671294-c189-3ecb-9e74-fc57975f0c83,SESCO,II.5.1,Salta,AR-A,annual,2022,gas oil combustion consumption by agriculture machines,321.17904,TJ,CH4,3.9,kg/TJ,1252.598256,kg +95671294-c189-3ecb-9e74-fc57975f0c83,SESCO,II.5.1,Salta,AR-A,annual,2022,gas oil combustion consumption by agriculture machines,321.17904,TJ,N2O,3.9,kg/TJ,1252.598256,kg +500eef46-f2fd-35de-a300-e0c591661449,SESCO,II.5.1,Santa Fe,AR-S,annual,2022,gas oil combustion consumption by agriculture machines,169.98072,TJ,CO2,74100.0,kg/TJ,12595571.352,kg +1bbc79d9-8fa8-3ad6-9984-b5ca313301f2,SESCO,II.5.1,Santa Fe,AR-S,annual,2022,gas oil combustion consumption by agriculture machines,169.98072,TJ,CH4,3.9,kg/TJ,662.924808,kg +1bbc79d9-8fa8-3ad6-9984-b5ca313301f2,SESCO,II.5.1,Santa Fe,AR-S,annual,2022,gas oil combustion consumption by agriculture machines,169.98072,TJ,N2O,3.9,kg/TJ,662.924808,kg +61624599-7100-34d1-be3d-6b8b54188085,SESCO,II.5.1,Buenos Aires,AR-B,annual,2022,gas oil combustion consumption by agriculture machines,20.046599999999998,TJ,CO2,74100.0,kg/TJ,1485453.0599999998,kg +8cd36c6e-8896-3b9f-9bba-961452c3a88e,SESCO,II.5.1,Buenos Aires,AR-B,annual,2022,gas oil combustion consumption by agriculture machines,20.046599999999998,TJ,CH4,3.9,kg/TJ,78.18173999999999,kg +8cd36c6e-8896-3b9f-9bba-961452c3a88e,SESCO,II.5.1,Buenos Aires,AR-B,annual,2022,gas oil combustion consumption by agriculture machines,20.046599999999998,TJ,N2O,3.9,kg/TJ,78.18173999999999,kg +68795360-e27d-34bd-a5ea-ac906bacead9,SESCO,II.5.1,Córdoba,AR-X,annual,2022,gas oil combustion consumption by agriculture machines,18.20448,TJ,CO2,74100.0,kg/TJ,1348951.968,kg +4071a909-697f-3905-8599-452f63a85782,SESCO,II.5.1,Córdoba,AR-X,annual,2022,gas oil combustion consumption by agriculture machines,18.20448,TJ,CH4,3.9,kg/TJ,70.997472,kg +4071a909-697f-3905-8599-452f63a85782,SESCO,II.5.1,Córdoba,AR-X,annual,2022,gas oil combustion consumption by agriculture machines,18.20448,TJ,N2O,3.9,kg/TJ,70.997472,kg +5bba0ab6-c84d-36f6-9e1a-adcd0cbecdf1,SESCO,II.5.1,Entre Rios,AR-E,annual,2022,gas oil combustion consumption by agriculture machines,7.91028,TJ,CO2,74100.0,kg/TJ,586151.748,kg +52847f67-f7fd-3a3d-a2c8-b23afb523a5c,SESCO,II.5.1,Entre Rios,AR-E,annual,2022,gas oil combustion consumption by agriculture machines,7.91028,TJ,CH4,3.9,kg/TJ,30.850092,kg +52847f67-f7fd-3a3d-a2c8-b23afb523a5c,SESCO,II.5.1,Entre Rios,AR-E,annual,2022,gas oil combustion consumption by agriculture machines,7.91028,TJ,N2O,3.9,kg/TJ,30.850092,kg +4f9498cd-d48f-390c-8fda-4c9fe84a0d34,SESCO,II.5.1,Salta,AR-A,annual,2022,gas oil combustion consumption by agriculture machines,0.43344,TJ,CO2,74100.0,kg/TJ,32117.904,kg +a7996e8e-e586-33ea-bed5-96a03024f0ea,SESCO,II.5.1,Salta,AR-A,annual,2022,gas oil combustion consumption by agriculture machines,0.43344,TJ,CH4,3.9,kg/TJ,1.690416,kg +a7996e8e-e586-33ea-bed5-96a03024f0ea,SESCO,II.5.1,Salta,AR-A,annual,2022,gas oil combustion consumption by agriculture machines,0.43344,TJ,N2O,3.9,kg/TJ,1.690416,kg +ef1eba40-11a1-3d1a-9daf-0b01bc2166cc,SESCO,II.5.1,Santa Fe,AR-S,annual,2022,gas oil combustion consumption by agriculture machines,6.6822,TJ,CO2,74100.0,kg/TJ,495151.02,kg +e366a7cb-9594-31a8-8d1f-b0200c437154,SESCO,II.5.1,Santa Fe,AR-S,annual,2022,gas oil combustion consumption by agriculture machines,6.6822,TJ,CH4,3.9,kg/TJ,26.060579999999998,kg +e366a7cb-9594-31a8-8d1f-b0200c437154,SESCO,II.5.1,Santa Fe,AR-S,annual,2022,gas oil combustion consumption by agriculture machines,6.6822,TJ,N2O,3.9,kg/TJ,26.060579999999998,kg +1288cf1d-8615-39e4-91a3-8db9d0a2bdba,SESCO,II.1.1,Buenos Aires,AR-B,annual,2022,gasoline combustion consumption by to the public,1.1518,TJ,CO2,69300.0,kg/TJ,79819.73999999999,kg +5e91d168-9c27-3ee2-b1ff-1caa7acbc17e,SESCO,II.1.1,Buenos Aires,AR-B,annual,2022,gasoline combustion consumption by to the public,1.1518,TJ,CH4,33.0,kg/TJ,38.0094,kg +73471a8b-f2c9-357d-a1a4-c53227f8db6d,SESCO,II.1.1,Buenos Aires,AR-B,annual,2022,gasoline combustion consumption by to the public,1.1518,TJ,N2O,3.2,kg/TJ,3.68576,kg +72d25d88-14f0-3991-a05e-fa65e47d7d4e,SESCO,II.1.1,Buenos Aires,AR-B,annual,2022,gas oil combustion consumption by to the public,1925.48496,TJ,CO2,74100.0,kg/TJ,142678435.536,kg +95cd6c86-06a5-3729-9bf4-02c7bfdba6f7,SESCO,II.1.1,Buenos Aires,AR-B,annual,2022,gas oil combustion consumption by to the public,1925.48496,TJ,CH4,3.9,kg/TJ,7509.391344,kg +95cd6c86-06a5-3729-9bf4-02c7bfdba6f7,SESCO,II.1.1,Buenos Aires,AR-B,annual,2022,gas oil combustion consumption by to the public,1925.48496,TJ,N2O,3.9,kg/TJ,7509.391344,kg +55130c48-400b-3b69-8179-74384c54a7ba,SESCO,II.1.1,Capital Federal,AR-C,annual,2022,gas oil combustion consumption by to the public,360.54984,TJ,CO2,74100.0,kg/TJ,26716743.144,kg +e38e4d8c-6419-32c2-99a4-5e9558aaad7a,SESCO,II.1.1,Capital Federal,AR-C,annual,2022,gas oil combustion consumption by to the public,360.54984,TJ,CH4,3.9,kg/TJ,1406.144376,kg +e38e4d8c-6419-32c2-99a4-5e9558aaad7a,SESCO,II.1.1,Capital Federal,AR-C,annual,2022,gas oil combustion consumption by to the public,360.54984,TJ,N2O,3.9,kg/TJ,1406.144376,kg +e43bb896-c56c-31d1-95c0-882bfd75eba6,SESCO,II.1.1,Catamarca,AR-K,annual,2022,gas oil combustion consumption by to the public,39.1902,TJ,CO2,74100.0,kg/TJ,2903993.82,kg +4f22184b-5369-3dca-a1d7-abc29488b7b1,SESCO,II.1.1,Catamarca,AR-K,annual,2022,gas oil combustion consumption by to the public,39.1902,TJ,CH4,3.9,kg/TJ,152.84178,kg +4f22184b-5369-3dca-a1d7-abc29488b7b1,SESCO,II.1.1,Catamarca,AR-K,annual,2022,gas oil combustion consumption by to the public,39.1902,TJ,N2O,3.9,kg/TJ,152.84178,kg +56668dec-c9f1-3d90-aef5-74029c0995d1,SESCO,II.1.1,Chaco,AR-H,annual,2022,gas oil combustion consumption by to the public,258.0774,TJ,CO2,74100.0,kg/TJ,19123535.34,kg +4a9eb9c1-8458-3023-a6d3-52b49cbb56d7,SESCO,II.1.1,Chaco,AR-H,annual,2022,gas oil combustion consumption by to the public,258.0774,TJ,CH4,3.9,kg/TJ,1006.50186,kg +4a9eb9c1-8458-3023-a6d3-52b49cbb56d7,SESCO,II.1.1,Chaco,AR-H,annual,2022,gas oil combustion consumption by to the public,258.0774,TJ,N2O,3.9,kg/TJ,1006.50186,kg +d2b3b8cb-1451-3afd-bc66-9b64837bf2c5,SESCO,II.1.1,Corrientes,AR-W,annual,2022,gas oil combustion consumption by to the public,417.7278,TJ,CO2,74100.0,kg/TJ,30953629.98,kg +5a56d7c8-ab0c-3b97-ab1d-e68b5641717e,SESCO,II.1.1,Corrientes,AR-W,annual,2022,gas oil combustion consumption by to the public,417.7278,TJ,CH4,3.9,kg/TJ,1629.13842,kg +5a56d7c8-ab0c-3b97-ab1d-e68b5641717e,SESCO,II.1.1,Corrientes,AR-W,annual,2022,gas oil combustion consumption by to the public,417.7278,TJ,N2O,3.9,kg/TJ,1629.13842,kg +4ad81252-93ef-3a98-8c75-c0b5fa9abc81,SESCO,II.1.1,Córdoba,AR-X,annual,2022,gas oil combustion consumption by to the public,856.7664,TJ,CO2,74100.0,kg/TJ,63486390.239999995,kg +fbbafedb-9313-3ea8-b355-c1cde793bd4d,SESCO,II.1.1,Córdoba,AR-X,annual,2022,gas oil combustion consumption by to the public,856.7664,TJ,CH4,3.9,kg/TJ,3341.3889599999998,kg +fbbafedb-9313-3ea8-b355-c1cde793bd4d,SESCO,II.1.1,Córdoba,AR-X,annual,2022,gas oil combustion consumption by to the public,856.7664,TJ,N2O,3.9,kg/TJ,3341.3889599999998,kg +19d66045-079c-37b8-bd53-88e3b7b7cc0d,SESCO,II.1.1,Entre Rios,AR-E,annual,2022,gas oil combustion consumption by to the public,595.077,TJ,CO2,74100.0,kg/TJ,44095205.7,kg +68ec1f23-e022-3eae-9dcd-021d87bf8def,SESCO,II.1.1,Entre Rios,AR-E,annual,2022,gas oil combustion consumption by to the public,595.077,TJ,CH4,3.9,kg/TJ,2320.8003,kg +68ec1f23-e022-3eae-9dcd-021d87bf8def,SESCO,II.1.1,Entre Rios,AR-E,annual,2022,gas oil combustion consumption by to the public,595.077,TJ,N2O,3.9,kg/TJ,2320.8003,kg +3a0f7cd9-4c82-37fc-a813-078833b11033,SESCO,II.1.1,Formosa,AR-P,annual,2022,gas oil combustion consumption by to the public,22.82784,TJ,CO2,74100.0,kg/TJ,1691542.944,kg +62ee7358-576b-3334-92d4-7840ae307e9b,SESCO,II.1.1,Formosa,AR-P,annual,2022,gas oil combustion consumption by to the public,22.82784,TJ,CH4,3.9,kg/TJ,89.02857599999999,kg +62ee7358-576b-3334-92d4-7840ae307e9b,SESCO,II.1.1,Formosa,AR-P,annual,2022,gas oil combustion consumption by to the public,22.82784,TJ,N2O,3.9,kg/TJ,89.02857599999999,kg +e604d8f3-5110-3c20-8aac-78e464e3994b,SESCO,II.1.1,La Rioja,AR-F,annual,2022,gas oil combustion consumption by to the public,57.75588,TJ,CO2,74100.0,kg/TJ,4279710.708,kg +28c38c58-6a61-3a6c-848a-57c8d6e6e0fd,SESCO,II.1.1,La Rioja,AR-F,annual,2022,gas oil combustion consumption by to the public,57.75588,TJ,CH4,3.9,kg/TJ,225.247932,kg +28c38c58-6a61-3a6c-848a-57c8d6e6e0fd,SESCO,II.1.1,La Rioja,AR-F,annual,2022,gas oil combustion consumption by to the public,57.75588,TJ,N2O,3.9,kg/TJ,225.247932,kg +72b99d94-4842-36fe-8550-3cfd2f0d37d3,SESCO,II.1.1,Mendoza,AR-M,annual,2022,gas oil combustion consumption by to the public,1065.43164,TJ,CO2,74100.0,kg/TJ,78948484.524,kg +53e58e6a-e3b1-36d7-a876-77e4c3b74d36,SESCO,II.1.1,Mendoza,AR-M,annual,2022,gas oil combustion consumption by to the public,1065.43164,TJ,CH4,3.9,kg/TJ,4155.183396,kg +53e58e6a-e3b1-36d7-a876-77e4c3b74d36,SESCO,II.1.1,Mendoza,AR-M,annual,2022,gas oil combustion consumption by to the public,1065.43164,TJ,N2O,3.9,kg/TJ,4155.183396,kg +af8368f7-e86b-3ffb-9b95-771e0f43d6f8,SESCO,II.1.1,Misiones,AR-N,annual,2022,gas oil combustion consumption by to the public,375.97308,TJ,CO2,74100.0,kg/TJ,27859605.228,kg +f7d3673a-0fa8-32e7-96f8-801d0e6bef3b,SESCO,II.1.1,Misiones,AR-N,annual,2022,gas oil combustion consumption by to the public,375.97308,TJ,CH4,3.9,kg/TJ,1466.2950119999998,kg +f7d3673a-0fa8-32e7-96f8-801d0e6bef3b,SESCO,II.1.1,Misiones,AR-N,annual,2022,gas oil combustion consumption by to the public,375.97308,TJ,N2O,3.9,kg/TJ,1466.2950119999998,kg +03be9a6c-0018-348d-b373-579104e03301,SESCO,II.1.1,San Juan,AR-J,annual,2022,gas oil combustion consumption by to the public,90.22776,TJ,CO2,74100.0,kg/TJ,6685877.016,kg +c17d45ac-9cef-376b-8126-8b5c96d906c3,SESCO,II.1.1,San Juan,AR-J,annual,2022,gas oil combustion consumption by to the public,90.22776,TJ,CH4,3.9,kg/TJ,351.888264,kg +c17d45ac-9cef-376b-8126-8b5c96d906c3,SESCO,II.1.1,San Juan,AR-J,annual,2022,gas oil combustion consumption by to the public,90.22776,TJ,N2O,3.9,kg/TJ,351.888264,kg +85e344d6-3b49-3985-a15c-ad8d4b64d8e8,SESCO,II.1.1,San Luis,AR-D,annual,2022,gas oil combustion consumption by to the public,18.99912,TJ,CO2,74100.0,kg/TJ,1407834.7920000001,kg +fa7404db-fc7f-3def-9b77-78684915efa2,SESCO,II.1.1,San Luis,AR-D,annual,2022,gas oil combustion consumption by to the public,18.99912,TJ,CH4,3.9,kg/TJ,74.096568,kg +fa7404db-fc7f-3def-9b77-78684915efa2,SESCO,II.1.1,San Luis,AR-D,annual,2022,gas oil combustion consumption by to the public,18.99912,TJ,N2O,3.9,kg/TJ,74.096568,kg +5c2b0997-45a2-37ae-890f-be2596f0987d,SESCO,II.1.1,Santa Fe,AR-S,annual,2022,gas oil combustion consumption by to the public,1061.2056,TJ,CO2,74100.0,kg/TJ,78635334.96,kg +ab51b4b1-6c29-3adb-a867-a582e4d8b6a8,SESCO,II.1.1,Santa Fe,AR-S,annual,2022,gas oil combustion consumption by to the public,1061.2056,TJ,CH4,3.9,kg/TJ,4138.70184,kg +ab51b4b1-6c29-3adb-a867-a582e4d8b6a8,SESCO,II.1.1,Santa Fe,AR-S,annual,2022,gas oil combustion consumption by to the public,1061.2056,TJ,N2O,3.9,kg/TJ,4138.70184,kg +d1f28f65-a527-3dea-9a5d-434388cb604c,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2022,gas oil combustion consumption by to the public,79.68072,TJ,CO2,74100.0,kg/TJ,5904341.352,kg +af83c27d-7fa3-3179-b4ca-b2e0d89aa625,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2022,gas oil combustion consumption by to the public,79.68072,TJ,CH4,3.9,kg/TJ,310.75480799999997,kg +af83c27d-7fa3-3179-b4ca-b2e0d89aa625,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2022,gas oil combustion consumption by to the public,79.68072,TJ,N2O,3.9,kg/TJ,310.75480799999997,kg +764b1ef9-0952-38a8-966e-b3866dfc66db,SESCO,II.1.1,Tucuman,AR-T,annual,2022,gas oil combustion consumption by to the public,220.72932,TJ,CO2,74100.0,kg/TJ,16356042.612,kg +11d665e1-1149-3c11-bb4f-6f5f4c79f754,SESCO,II.1.1,Tucuman,AR-T,annual,2022,gas oil combustion consumption by to the public,220.72932,TJ,CH4,3.9,kg/TJ,860.844348,kg +11d665e1-1149-3c11-bb4f-6f5f4c79f754,SESCO,II.1.1,Tucuman,AR-T,annual,2022,gas oil combustion consumption by to the public,220.72932,TJ,N2O,3.9,kg/TJ,860.844348,kg +27260785-50d3-3384-b65c-513478081782,SESCO,II.1.1,Buenos Aires,AR-B,annual,2022,gas oil combustion consumption by to the public,302.75784,TJ,CO2,74100.0,kg/TJ,22434355.944,kg +4383a02b-2f88-388e-9b29-acaf83a871ce,SESCO,II.1.1,Buenos Aires,AR-B,annual,2022,gas oil combustion consumption by to the public,302.75784,TJ,CH4,3.9,kg/TJ,1180.755576,kg +4383a02b-2f88-388e-9b29-acaf83a871ce,SESCO,II.1.1,Buenos Aires,AR-B,annual,2022,gas oil combustion consumption by to the public,302.75784,TJ,N2O,3.9,kg/TJ,1180.755576,kg +8a030f91-4bbc-39f5-8600-99b27f2c1566,SESCO,II.1.1,Capital Federal,AR-C,annual,2022,gas oil combustion consumption by to the public,47.78676,TJ,CO2,74100.0,kg/TJ,3540998.916,kg +c390e91f-b18c-3c27-b7eb-4f5a5090489e,SESCO,II.1.1,Capital Federal,AR-C,annual,2022,gas oil combustion consumption by to the public,47.78676,TJ,CH4,3.9,kg/TJ,186.368364,kg +c390e91f-b18c-3c27-b7eb-4f5a5090489e,SESCO,II.1.1,Capital Federal,AR-C,annual,2022,gas oil combustion consumption by to the public,47.78676,TJ,N2O,3.9,kg/TJ,186.368364,kg +174fb43a-49d1-3124-8934-5f6326e2c831,SESCO,II.1.1,Catamarca,AR-K,annual,2022,gas oil combustion consumption by to the public,18.348959999999998,TJ,CO2,74100.0,kg/TJ,1359657.9359999998,kg +e95d8dd3-c2d1-3e5d-96c3-af2157a1186e,SESCO,II.1.1,Catamarca,AR-K,annual,2022,gas oil combustion consumption by to the public,18.348959999999998,TJ,CH4,3.9,kg/TJ,71.56094399999999,kg +e95d8dd3-c2d1-3e5d-96c3-af2157a1186e,SESCO,II.1.1,Catamarca,AR-K,annual,2022,gas oil combustion consumption by to the public,18.348959999999998,TJ,N2O,3.9,kg/TJ,71.56094399999999,kg +6e9e9e7c-a213-3d3a-a9d9-3d69d25eee13,SESCO,II.1.1,Chaco,AR-H,annual,2022,gas oil combustion consumption by to the public,59.88696,TJ,CO2,74100.0,kg/TJ,4437623.7360000005,kg +213eca1d-c2c1-3ea5-984d-9ed57d54707e,SESCO,II.1.1,Chaco,AR-H,annual,2022,gas oil combustion consumption by to the public,59.88696,TJ,CH4,3.9,kg/TJ,233.559144,kg +213eca1d-c2c1-3ea5-984d-9ed57d54707e,SESCO,II.1.1,Chaco,AR-H,annual,2022,gas oil combustion consumption by to the public,59.88696,TJ,N2O,3.9,kg/TJ,233.559144,kg +f5de4ef5-8e55-362b-847c-9a3d81a26808,SESCO,II.1.1,Corrientes,AR-W,annual,2022,gas oil combustion consumption by to the public,27.70404,TJ,CO2,74100.0,kg/TJ,2052869.3639999998,kg +792f627a-014d-3c01-ae3e-247eda43a2ee,SESCO,II.1.1,Corrientes,AR-W,annual,2022,gas oil combustion consumption by to the public,27.70404,TJ,CH4,3.9,kg/TJ,108.045756,kg +792f627a-014d-3c01-ae3e-247eda43a2ee,SESCO,II.1.1,Corrientes,AR-W,annual,2022,gas oil combustion consumption by to the public,27.70404,TJ,N2O,3.9,kg/TJ,108.045756,kg +60336c79-840a-3807-b42c-758fc82c4369,SESCO,II.1.1,Córdoba,AR-X,annual,2022,gas oil combustion consumption by to the public,143.79372,TJ,CO2,74100.0,kg/TJ,10655114.652,kg +1901d93d-7851-3718-ad30-40bf9d52142f,SESCO,II.1.1,Córdoba,AR-X,annual,2022,gas oil combustion consumption by to the public,143.79372,TJ,CH4,3.9,kg/TJ,560.795508,kg +1901d93d-7851-3718-ad30-40bf9d52142f,SESCO,II.1.1,Córdoba,AR-X,annual,2022,gas oil combustion consumption by to the public,143.79372,TJ,N2O,3.9,kg/TJ,560.795508,kg +5b4f9da7-8567-3020-95ae-4cd024dd2013,SESCO,II.1.1,Entre Rios,AR-E,annual,2022,gas oil combustion consumption by to the public,102.65304,TJ,CO2,74100.0,kg/TJ,7606590.264,kg +f71c7cb4-d1c1-338b-aa71-f72028c49325,SESCO,II.1.1,Entre Rios,AR-E,annual,2022,gas oil combustion consumption by to the public,102.65304,TJ,CH4,3.9,kg/TJ,400.346856,kg +f71c7cb4-d1c1-338b-aa71-f72028c49325,SESCO,II.1.1,Entre Rios,AR-E,annual,2022,gas oil combustion consumption by to the public,102.65304,TJ,N2O,3.9,kg/TJ,400.346856,kg +7ef4d524-5039-3466-9a1f-4f4eaf394cb9,SESCO,II.1.1,Formosa,AR-P,annual,2022,gas oil combustion consumption by to the public,5.12904,TJ,CO2,74100.0,kg/TJ,380061.864,kg +cc24f576-cff0-3eca-bfd5-4a0194c8a6e8,SESCO,II.1.1,Formosa,AR-P,annual,2022,gas oil combustion consumption by to the public,5.12904,TJ,CH4,3.9,kg/TJ,20.003256,kg +cc24f576-cff0-3eca-bfd5-4a0194c8a6e8,SESCO,II.1.1,Formosa,AR-P,annual,2022,gas oil combustion consumption by to the public,5.12904,TJ,N2O,3.9,kg/TJ,20.003256,kg +eda40ee5-4a7d-39e5-8413-dfc3d81b1bd1,SESCO,II.1.1,La Rioja,AR-F,annual,2022,gas oil combustion consumption by to the public,25.97028,TJ,CO2,74100.0,kg/TJ,1924397.748,kg +c0619b02-a3ba-3c5f-827b-32d087b2e6f8,SESCO,II.1.1,La Rioja,AR-F,annual,2022,gas oil combustion consumption by to the public,25.97028,TJ,CH4,3.9,kg/TJ,101.28409199999999,kg +c0619b02-a3ba-3c5f-827b-32d087b2e6f8,SESCO,II.1.1,La Rioja,AR-F,annual,2022,gas oil combustion consumption by to the public,25.97028,TJ,N2O,3.9,kg/TJ,101.28409199999999,kg +6b2c2b37-d10f-3f3d-b64b-5da7d0c3c9a1,SESCO,II.1.1,Mendoza,AR-M,annual,2022,gas oil combustion consumption by to the public,161.16744,TJ,CO2,74100.0,kg/TJ,11942507.304,kg +f2ede501-4ff8-341d-b84f-f4ed54ce27fa,SESCO,II.1.1,Mendoza,AR-M,annual,2022,gas oil combustion consumption by to the public,161.16744,TJ,CH4,3.9,kg/TJ,628.553016,kg +f2ede501-4ff8-341d-b84f-f4ed54ce27fa,SESCO,II.1.1,Mendoza,AR-M,annual,2022,gas oil combustion consumption by to the public,161.16744,TJ,N2O,3.9,kg/TJ,628.553016,kg +354ba4f4-57aa-3c69-bf33-29533861cf17,SESCO,II.1.1,Misiones,AR-N,annual,2022,gas oil combustion consumption by to the public,41.140679999999996,TJ,CO2,74100.0,kg/TJ,3048524.388,kg +e8ef3321-a35e-3897-9979-0087dc6df99a,SESCO,II.1.1,Misiones,AR-N,annual,2022,gas oil combustion consumption by to the public,41.140679999999996,TJ,CH4,3.9,kg/TJ,160.44865199999998,kg +e8ef3321-a35e-3897-9979-0087dc6df99a,SESCO,II.1.1,Misiones,AR-N,annual,2022,gas oil combustion consumption by to the public,41.140679999999996,TJ,N2O,3.9,kg/TJ,160.44865199999998,kg +cc966a44-498b-3159-96a0-5844752778c8,SESCO,II.1.1,San Juan,AR-J,annual,2022,gas oil combustion consumption by to the public,21.27468,TJ,CO2,74100.0,kg/TJ,1576453.788,kg +68a05b7e-68fe-3255-828a-02ea514b5a2d,SESCO,II.1.1,San Juan,AR-J,annual,2022,gas oil combustion consumption by to the public,21.27468,TJ,CH4,3.9,kg/TJ,82.97125199999999,kg +68a05b7e-68fe-3255-828a-02ea514b5a2d,SESCO,II.1.1,San Juan,AR-J,annual,2022,gas oil combustion consumption by to the public,21.27468,TJ,N2O,3.9,kg/TJ,82.97125199999999,kg +5d92405e-6bf4-33bb-9b7a-9069b0eaf169,SESCO,II.1.1,San Luis,AR-D,annual,2022,gas oil combustion consumption by to the public,3.14244,TJ,CO2,74100.0,kg/TJ,232854.804,kg +adcb1357-f037-30b2-80f9-ae016fe6465f,SESCO,II.1.1,San Luis,AR-D,annual,2022,gas oil combustion consumption by to the public,3.14244,TJ,CH4,3.9,kg/TJ,12.255516,kg +adcb1357-f037-30b2-80f9-ae016fe6465f,SESCO,II.1.1,San Luis,AR-D,annual,2022,gas oil combustion consumption by to the public,3.14244,TJ,N2O,3.9,kg/TJ,12.255516,kg +c1c61636-baae-3c62-82f7-b3b55506d737,SESCO,II.1.1,Santa Fe,AR-S,annual,2022,gas oil combustion consumption by to the public,152.53476,TJ,CO2,74100.0,kg/TJ,11302825.716,kg +86875d94-03c8-3714-8f45-08eaa7260948,SESCO,II.1.1,Santa Fe,AR-S,annual,2022,gas oil combustion consumption by to the public,152.53476,TJ,CH4,3.9,kg/TJ,594.885564,kg +86875d94-03c8-3714-8f45-08eaa7260948,SESCO,II.1.1,Santa Fe,AR-S,annual,2022,gas oil combustion consumption by to the public,152.53476,TJ,N2O,3.9,kg/TJ,594.885564,kg +519ade68-b570-3421-a525-853a201fa132,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2022,gas oil combustion consumption by to the public,28.93212,TJ,CO2,74100.0,kg/TJ,2143870.092,kg +f4bfb71d-91c0-3f05-acc2-b27ff703df8f,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2022,gas oil combustion consumption by to the public,28.93212,TJ,CH4,3.9,kg/TJ,112.835268,kg +f4bfb71d-91c0-3f05-acc2-b27ff703df8f,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2022,gas oil combustion consumption by to the public,28.93212,TJ,N2O,3.9,kg/TJ,112.835268,kg +a3cef7eb-d5f2-3c68-b28e-fa13359a3255,SESCO,II.1.1,Tucuman,AR-T,annual,2022,gas oil combustion consumption by to the public,19.64928,TJ,CO2,74100.0,kg/TJ,1456011.648,kg +db6da8f0-353c-3712-8554-2ab1a9ed9297,SESCO,II.1.1,Tucuman,AR-T,annual,2022,gas oil combustion consumption by to the public,19.64928,TJ,CH4,3.9,kg/TJ,76.632192,kg +db6da8f0-353c-3712-8554-2ab1a9ed9297,SESCO,II.1.1,Tucuman,AR-T,annual,2022,gas oil combustion consumption by to the public,19.64928,TJ,N2O,3.9,kg/TJ,76.632192,kg +11e96931-2bef-301f-9991-a34b9a0f1cc7,SESCO,II.1.1,Corrientes,AR-W,annual,2022,jet kerosene combustion consumption by to the public,0.12581199999999998,TJ,CO2,71500.0,kg/TJ,8995.557999999999,kg +b1960a3f-6eec-33dd-8288-cfb164903899,SESCO,II.1.1,Corrientes,AR-W,annual,2022,jet kerosene combustion consumption by to the public,0.12581199999999998,TJ,CH4,0.5,kg/TJ,0.06290599999999999,kg +51956f52-6eea-3020-b495-1f50b8b2e04f,SESCO,II.1.1,Corrientes,AR-W,annual,2022,jet kerosene combustion consumption by to the public,0.12581199999999998,TJ,N2O,2.0,kg/TJ,0.25162399999999996,kg +c56754be-01fc-3609-9927-a86ed742a46d,SESCO,II.1.1,Santa Fe,AR-S,annual,2022,jet kerosene combustion consumption by to the public,0.12581199999999998,TJ,CO2,71500.0,kg/TJ,8995.557999999999,kg +5ee6b309-fa7b-365d-b049-cfabf52dbfc2,SESCO,II.1.1,Santa Fe,AR-S,annual,2022,jet kerosene combustion consumption by to the public,0.12581199999999998,TJ,CH4,0.5,kg/TJ,0.06290599999999999,kg +9f512e33-1b81-3dd1-9d95-6d50abfe24bb,SESCO,II.1.1,Santa Fe,AR-S,annual,2022,jet kerosene combustion consumption by to the public,0.12581199999999998,TJ,N2O,2.0,kg/TJ,0.25162399999999996,kg +09768536-c52a-3b78-afae-7ef129c6240a,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2022,jet kerosene combustion consumption by to the public,0.7234189999999999,TJ,CO2,71500.0,kg/TJ,51724.45849999999,kg +6473525d-6810-315d-8b49-06c914207adf,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2022,jet kerosene combustion consumption by to the public,0.7234189999999999,TJ,CH4,0.5,kg/TJ,0.36170949999999996,kg +cd0c6b2f-951b-3a4e-a5af-4507e038e069,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2022,jet kerosene combustion consumption by to the public,0.7234189999999999,TJ,N2O,2.0,kg/TJ,1.4468379999999998,kg +12d92b52-e861-3df7-84bf-625db1105b65,SESCO,I.3.1,Buenos Aires,AR-B,annual,2022,gas oil combustion consumption by petrochemical industries,7.8380399999999995,TJ,CO2,74100.0,kg/TJ,580798.764,kg +5d5c451a-254f-3680-aaff-25d5176caceb,SESCO,I.3.1,Buenos Aires,AR-B,annual,2022,gas oil combustion consumption by petrochemical industries,7.8380399999999995,TJ,CH4,3.9,kg/TJ,30.568355999999998,kg +5d5c451a-254f-3680-aaff-25d5176caceb,SESCO,I.3.1,Buenos Aires,AR-B,annual,2022,gas oil combustion consumption by petrochemical industries,7.8380399999999995,TJ,N2O,3.9,kg/TJ,30.568355999999998,kg +a25781ac-b61f-3a4a-91e0-8a0acf9144df,SESCO,II.5.1,Buenos Aires,AR-B,annual,2022,gas oil combustion consumption by agriculture machines,4489.21032,TJ,CO2,74100.0,kg/TJ,332650484.712,kg +5ab91e62-7c35-3250-92de-6718d8fbb333,SESCO,II.5.1,Buenos Aires,AR-B,annual,2022,gas oil combustion consumption by agriculture machines,4489.21032,TJ,CH4,3.9,kg/TJ,17507.920248,kg +5ab91e62-7c35-3250-92de-6718d8fbb333,SESCO,II.5.1,Buenos Aires,AR-B,annual,2022,gas oil combustion consumption by agriculture machines,4489.21032,TJ,N2O,3.9,kg/TJ,17507.920248,kg +7631bbb9-21b8-3859-95f5-7e48a6d6142a,SESCO,II.5.1,Catamarca,AR-K,annual,2022,gas oil combustion consumption by agriculture machines,108.32388,TJ,CO2,74100.0,kg/TJ,8026799.508,kg +811b91fb-4843-3c74-a2af-8e376873646d,SESCO,II.5.1,Catamarca,AR-K,annual,2022,gas oil combustion consumption by agriculture machines,108.32388,TJ,CH4,3.9,kg/TJ,422.463132,kg +811b91fb-4843-3c74-a2af-8e376873646d,SESCO,II.5.1,Catamarca,AR-K,annual,2022,gas oil combustion consumption by agriculture machines,108.32388,TJ,N2O,3.9,kg/TJ,422.463132,kg +0a1e8c97-f117-3bcc-8f9c-007d5fbf7192,SESCO,II.5.1,Chaco,AR-H,annual,2022,gas oil combustion consumption by agriculture machines,612.01728,TJ,CO2,74100.0,kg/TJ,45350480.448,kg +f79dfa34-67ce-3fd5-b8e5-1325be0731ae,SESCO,II.5.1,Chaco,AR-H,annual,2022,gas oil combustion consumption by agriculture machines,612.01728,TJ,CH4,3.9,kg/TJ,2386.867392,kg +f79dfa34-67ce-3fd5-b8e5-1325be0731ae,SESCO,II.5.1,Chaco,AR-H,annual,2022,gas oil combustion consumption by agriculture machines,612.01728,TJ,N2O,3.9,kg/TJ,2386.867392,kg +98aa3b2c-639e-3e4c-9a7b-cb7b89ef67df,SESCO,II.5.1,Corrientes,AR-W,annual,2022,gas oil combustion consumption by agriculture machines,1214.535,TJ,CO2,74100.0,kg/TJ,89997043.5,kg +12bfa28a-03fc-359a-afc3-2efca67f5873,SESCO,II.5.1,Corrientes,AR-W,annual,2022,gas oil combustion consumption by agriculture machines,1214.535,TJ,CH4,3.9,kg/TJ,4736.6865,kg +12bfa28a-03fc-359a-afc3-2efca67f5873,SESCO,II.5.1,Corrientes,AR-W,annual,2022,gas oil combustion consumption by agriculture machines,1214.535,TJ,N2O,3.9,kg/TJ,4736.6865,kg +23398214-e2f8-3615-82eb-307855182a88,SESCO,II.5.1,Córdoba,AR-X,annual,2022,gas oil combustion consumption by agriculture machines,2632.245,TJ,CO2,74100.0,kg/TJ,195049354.5,kg +ea7fbfb6-a5f9-33ac-a935-21a5b36d4a4d,SESCO,II.5.1,Córdoba,AR-X,annual,2022,gas oil combustion consumption by agriculture machines,2632.245,TJ,CH4,3.9,kg/TJ,10265.7555,kg +ea7fbfb6-a5f9-33ac-a935-21a5b36d4a4d,SESCO,II.5.1,Córdoba,AR-X,annual,2022,gas oil combustion consumption by agriculture machines,2632.245,TJ,N2O,3.9,kg/TJ,10265.7555,kg +51e93c77-6da2-3204-93b0-7206c7e4235f,SESCO,II.5.1,Entre Rios,AR-E,annual,2022,gas oil combustion consumption by agriculture machines,764.6604,TJ,CO2,74100.0,kg/TJ,56661335.64,kg +0cc1bfa8-7d35-334b-a88a-74a9f9da1641,SESCO,II.5.1,Entre Rios,AR-E,annual,2022,gas oil combustion consumption by agriculture machines,764.6604,TJ,CH4,3.9,kg/TJ,2982.1755599999997,kg +0cc1bfa8-7d35-334b-a88a-74a9f9da1641,SESCO,II.5.1,Entre Rios,AR-E,annual,2022,gas oil combustion consumption by agriculture machines,764.6604,TJ,N2O,3.9,kg/TJ,2982.1755599999997,kg +16d8ecf7-af54-39dd-85a5-15376ad42a30,SESCO,II.5.1,Jujuy,AR-Y,annual,2022,gas oil combustion consumption by agriculture machines,93.5508,TJ,CO2,74100.0,kg/TJ,6932114.279999999,kg +e89827ac-8ec3-32e1-a005-9ebee8600bc7,SESCO,II.5.1,Jujuy,AR-Y,annual,2022,gas oil combustion consumption by agriculture machines,93.5508,TJ,CH4,3.9,kg/TJ,364.84812,kg +e89827ac-8ec3-32e1-a005-9ebee8600bc7,SESCO,II.5.1,Jujuy,AR-Y,annual,2022,gas oil combustion consumption by agriculture machines,93.5508,TJ,N2O,3.9,kg/TJ,364.84812,kg +df2fc841-b41e-3614-a6d3-d52e4e304774,SESCO,II.5.1,La Pampa,AR-L,annual,2022,gas oil combustion consumption by agriculture machines,198.94896,TJ,CO2,74100.0,kg/TJ,14742117.936,kg +2d5dedd8-2132-3ea8-b593-319cb6902a80,SESCO,II.5.1,La Pampa,AR-L,annual,2022,gas oil combustion consumption by agriculture machines,198.94896,TJ,CH4,3.9,kg/TJ,775.900944,kg +2d5dedd8-2132-3ea8-b593-319cb6902a80,SESCO,II.5.1,La Pampa,AR-L,annual,2022,gas oil combustion consumption by agriculture machines,198.94896,TJ,N2O,3.9,kg/TJ,775.900944,kg +7b1ad8a7-6745-3b74-a26c-5f3ccfcd79f4,SESCO,II.5.1,Mendoza,AR-M,annual,2022,gas oil combustion consumption by agriculture machines,330.3174,TJ,CO2,74100.0,kg/TJ,24476519.34,kg +ea96c8b4-16a1-3eea-bb24-31eae04651b0,SESCO,II.5.1,Mendoza,AR-M,annual,2022,gas oil combustion consumption by agriculture machines,330.3174,TJ,CH4,3.9,kg/TJ,1288.23786,kg +ea96c8b4-16a1-3eea-bb24-31eae04651b0,SESCO,II.5.1,Mendoza,AR-M,annual,2022,gas oil combustion consumption by agriculture machines,330.3174,TJ,N2O,3.9,kg/TJ,1288.23786,kg +621b5510-5513-3284-8ba8-5315741b884f,SESCO,II.5.1,Misiones,AR-N,annual,2022,gas oil combustion consumption by agriculture machines,143.25191999999998,TJ,CO2,74100.0,kg/TJ,10614967.271999998,kg +7601801f-7da7-336b-9742-c5dbe9677497,SESCO,II.5.1,Misiones,AR-N,annual,2022,gas oil combustion consumption by agriculture machines,143.25191999999998,TJ,CH4,3.9,kg/TJ,558.6824879999999,kg +7601801f-7da7-336b-9742-c5dbe9677497,SESCO,II.5.1,Misiones,AR-N,annual,2022,gas oil combustion consumption by agriculture machines,143.25191999999998,TJ,N2O,3.9,kg/TJ,558.6824879999999,kg +f3e77c12-48a3-3e95-80ee-b022059bfab8,SESCO,II.5.1,Neuquén,AR-Q,annual,2022,gas oil combustion consumption by agriculture machines,286.97339999999997,TJ,CO2,74100.0,kg/TJ,21264728.939999998,kg +00abbdd4-78aa-3b4a-858f-a262be1b4266,SESCO,II.5.1,Neuquén,AR-Q,annual,2022,gas oil combustion consumption by agriculture machines,286.97339999999997,TJ,CH4,3.9,kg/TJ,1119.19626,kg +00abbdd4-78aa-3b4a-858f-a262be1b4266,SESCO,II.5.1,Neuquén,AR-Q,annual,2022,gas oil combustion consumption by agriculture machines,286.97339999999997,TJ,N2O,3.9,kg/TJ,1119.19626,kg +093ff900-28ad-3fbb-aed4-ddfa6b37588d,SESCO,II.5.1,Salta,AR-A,annual,2022,gas oil combustion consumption by agriculture machines,255.9102,TJ,CO2,74100.0,kg/TJ,18962945.82,kg +1c97d3c9-a777-3eb9-a19c-f0cb1db6d2b3,SESCO,II.5.1,Salta,AR-A,annual,2022,gas oil combustion consumption by agriculture machines,255.9102,TJ,CH4,3.9,kg/TJ,998.0497799999999,kg +1c97d3c9-a777-3eb9-a19c-f0cb1db6d2b3,SESCO,II.5.1,Salta,AR-A,annual,2022,gas oil combustion consumption by agriculture machines,255.9102,TJ,N2O,3.9,kg/TJ,998.0497799999999,kg +a39079a8-02a3-3500-a7cb-2017ecc0d2c7,SESCO,II.5.1,San Juan,AR-J,annual,2022,gas oil combustion consumption by agriculture machines,221.88515999999998,TJ,CO2,74100.0,kg/TJ,16441690.355999999,kg +9547e222-e09c-36e8-8d49-6c2d0b10631a,SESCO,II.5.1,San Juan,AR-J,annual,2022,gas oil combustion consumption by agriculture machines,221.88515999999998,TJ,CH4,3.9,kg/TJ,865.3521239999999,kg +9547e222-e09c-36e8-8d49-6c2d0b10631a,SESCO,II.5.1,San Juan,AR-J,annual,2022,gas oil combustion consumption by agriculture machines,221.88515999999998,TJ,N2O,3.9,kg/TJ,865.3521239999999,kg +b56c6fa4-c719-3de5-a3de-912c2f7dfd54,SESCO,II.5.1,San Luis,AR-D,annual,2022,gas oil combustion consumption by agriculture machines,177.13248,TJ,CO2,74100.0,kg/TJ,13125516.768,kg +a6a3294c-64f1-3d0a-8dab-333a68e1e7a7,SESCO,II.5.1,San Luis,AR-D,annual,2022,gas oil combustion consumption by agriculture machines,177.13248,TJ,CH4,3.9,kg/TJ,690.8166719999999,kg +a6a3294c-64f1-3d0a-8dab-333a68e1e7a7,SESCO,II.5.1,San Luis,AR-D,annual,2022,gas oil combustion consumption by agriculture machines,177.13248,TJ,N2O,3.9,kg/TJ,690.8166719999999,kg +9701d3dd-fef7-344d-b2bc-38dbec731689,SESCO,II.5.1,Santa Cruz,AR-Z,annual,2022,gas oil combustion consumption by agriculture machines,164.45436,TJ,CO2,74100.0,kg/TJ,12186068.076000001,kg +c1fb101a-f16c-3bec-9af9-0892b8f4e0e4,SESCO,II.5.1,Santa Cruz,AR-Z,annual,2022,gas oil combustion consumption by agriculture machines,164.45436,TJ,CH4,3.9,kg/TJ,641.3720040000001,kg +c1fb101a-f16c-3bec-9af9-0892b8f4e0e4,SESCO,II.5.1,Santa Cruz,AR-Z,annual,2022,gas oil combustion consumption by agriculture machines,164.45436,TJ,N2O,3.9,kg/TJ,641.3720040000001,kg +3d85771f-6b72-340a-bbd4-93ab411cacef,SESCO,II.5.1,Santa Fe,AR-S,annual,2022,gas oil combustion consumption by agriculture machines,5091.69192,TJ,CO2,74100.0,kg/TJ,377294371.272,kg +0779d1d3-f70a-35cc-ad25-637229dc60a0,SESCO,II.5.1,Santa Fe,AR-S,annual,2022,gas oil combustion consumption by agriculture machines,5091.69192,TJ,CH4,3.9,kg/TJ,19857.598488,kg +0779d1d3-f70a-35cc-ad25-637229dc60a0,SESCO,II.5.1,Santa Fe,AR-S,annual,2022,gas oil combustion consumption by agriculture machines,5091.69192,TJ,N2O,3.9,kg/TJ,19857.598488,kg +0ee1e731-10c5-3633-9de7-6a234dbcdb2b,SESCO,II.5.1,Santiago del Estero,AR-G,annual,2022,gas oil combustion consumption by agriculture machines,604.2876,TJ,CO2,74100.0,kg/TJ,44777711.16,kg +32880c49-3921-303f-95e2-39524c6adf60,SESCO,II.5.1,Santiago del Estero,AR-G,annual,2022,gas oil combustion consumption by agriculture machines,604.2876,TJ,CH4,3.9,kg/TJ,2356.7216399999998,kg +32880c49-3921-303f-95e2-39524c6adf60,SESCO,II.5.1,Santiago del Estero,AR-G,annual,2022,gas oil combustion consumption by agriculture machines,604.2876,TJ,N2O,3.9,kg/TJ,2356.7216399999998,kg +2a88e784-c1b4-3128-ae09-4bc197124b00,SESCO,II.5.1,Tucuman,AR-T,annual,2022,gas oil combustion consumption by agriculture machines,256.59648,TJ,CO2,74100.0,kg/TJ,19013799.167999998,kg +99700534-b1ca-3e21-8e1f-682368515795,SESCO,II.5.1,Tucuman,AR-T,annual,2022,gas oil combustion consumption by agriculture machines,256.59648,TJ,CH4,3.9,kg/TJ,1000.7262719999999,kg +99700534-b1ca-3e21-8e1f-682368515795,SESCO,II.5.1,Tucuman,AR-T,annual,2022,gas oil combustion consumption by agriculture machines,256.59648,TJ,N2O,3.9,kg/TJ,1000.7262719999999,kg +34d152d5-8200-34ff-949c-39990a6ef0f2,SESCO,II.5.1,Buenos Aires,AR-B,annual,2022,gas oil combustion consumption by agriculture machines,434.41524,TJ,CO2,74100.0,kg/TJ,32190169.283999998,kg +ee82aa8a-a6af-377d-a1b8-0c1b8a585eb8,SESCO,II.5.1,Buenos Aires,AR-B,annual,2022,gas oil combustion consumption by agriculture machines,434.41524,TJ,CH4,3.9,kg/TJ,1694.2194359999999,kg +ee82aa8a-a6af-377d-a1b8-0c1b8a585eb8,SESCO,II.5.1,Buenos Aires,AR-B,annual,2022,gas oil combustion consumption by agriculture machines,434.41524,TJ,N2O,3.9,kg/TJ,1694.2194359999999,kg +c6285261-91f7-3ee9-9ca3-804e7c72af99,SESCO,II.5.1,Catamarca,AR-K,annual,2022,gas oil combustion consumption by agriculture machines,26.76492,TJ,CO2,74100.0,kg/TJ,1983280.572,kg +85a1655d-bbaf-3bd2-8dff-869b3bf55f7e,SESCO,II.5.1,Catamarca,AR-K,annual,2022,gas oil combustion consumption by agriculture machines,26.76492,TJ,CH4,3.9,kg/TJ,104.383188,kg +85a1655d-bbaf-3bd2-8dff-869b3bf55f7e,SESCO,II.5.1,Catamarca,AR-K,annual,2022,gas oil combustion consumption by agriculture machines,26.76492,TJ,N2O,3.9,kg/TJ,104.383188,kg +70d66ecc-4a0c-3e81-9855-17e4308622b5,SESCO,II.5.1,Chaco,AR-H,annual,2022,gas oil combustion consumption by agriculture machines,143.54088,TJ,CO2,74100.0,kg/TJ,10636379.207999999,kg +ef74d3ed-f834-336d-8199-17ea126cdbe4,SESCO,II.5.1,Chaco,AR-H,annual,2022,gas oil combustion consumption by agriculture machines,143.54088,TJ,CH4,3.9,kg/TJ,559.8094319999999,kg +ef74d3ed-f834-336d-8199-17ea126cdbe4,SESCO,II.5.1,Chaco,AR-H,annual,2022,gas oil combustion consumption by agriculture machines,143.54088,TJ,N2O,3.9,kg/TJ,559.8094319999999,kg +e0315b59-050c-3899-ac07-bd1e43aa046b,SESCO,II.5.1,Corrientes,AR-W,annual,2022,gas oil combustion consumption by agriculture machines,135.84732,TJ,CO2,74100.0,kg/TJ,10066286.412,kg +47fbd209-c781-3c3d-8f6c-4cdba6659c17,SESCO,II.5.1,Corrientes,AR-W,annual,2022,gas oil combustion consumption by agriculture machines,135.84732,TJ,CH4,3.9,kg/TJ,529.804548,kg +47fbd209-c781-3c3d-8f6c-4cdba6659c17,SESCO,II.5.1,Corrientes,AR-W,annual,2022,gas oil combustion consumption by agriculture machines,135.84732,TJ,N2O,3.9,kg/TJ,529.804548,kg +c879712d-f3dd-382e-b3c9-961f0396cda9,SESCO,II.5.1,Córdoba,AR-X,annual,2022,gas oil combustion consumption by agriculture machines,203.17499999999998,TJ,CO2,74100.0,kg/TJ,15055267.499999998,kg +7e047d84-06a5-35c8-87ca-ab808126a210,SESCO,II.5.1,Córdoba,AR-X,annual,2022,gas oil combustion consumption by agriculture machines,203.17499999999998,TJ,CH4,3.9,kg/TJ,792.3824999999999,kg +7e047d84-06a5-35c8-87ca-ab808126a210,SESCO,II.5.1,Córdoba,AR-X,annual,2022,gas oil combustion consumption by agriculture machines,203.17499999999998,TJ,N2O,3.9,kg/TJ,792.3824999999999,kg +5f604852-43eb-3206-836b-0dabb2dda811,SESCO,II.5.1,Entre Rios,AR-E,annual,2022,gas oil combustion consumption by agriculture machines,52.26564,TJ,CO2,74100.0,kg/TJ,3872883.9239999996,kg +f9f64da1-d495-343a-a0fd-d46a51c37ba1,SESCO,II.5.1,Entre Rios,AR-E,annual,2022,gas oil combustion consumption by agriculture machines,52.26564,TJ,CH4,3.9,kg/TJ,203.835996,kg +f9f64da1-d495-343a-a0fd-d46a51c37ba1,SESCO,II.5.1,Entre Rios,AR-E,annual,2022,gas oil combustion consumption by agriculture machines,52.26564,TJ,N2O,3.9,kg/TJ,203.835996,kg +a57bea38-d7e4-3c6e-be06-7941db26ebab,SESCO,II.5.1,Jujuy,AR-Y,annual,2022,gas oil combustion consumption by agriculture machines,28.281959999999998,TJ,CO2,74100.0,kg/TJ,2095693.2359999998,kg +d8490651-1ae7-38f6-830e-df4840c54b14,SESCO,II.5.1,Jujuy,AR-Y,annual,2022,gas oil combustion consumption by agriculture machines,28.281959999999998,TJ,CH4,3.9,kg/TJ,110.29964399999999,kg +d8490651-1ae7-38f6-830e-df4840c54b14,SESCO,II.5.1,Jujuy,AR-Y,annual,2022,gas oil combustion consumption by agriculture machines,28.281959999999998,TJ,N2O,3.9,kg/TJ,110.29964399999999,kg +061e150b-c134-3c12-a8ab-52650cad245f,SESCO,II.5.1,La Pampa,AR-L,annual,2022,gas oil combustion consumption by agriculture machines,24.77832,TJ,CO2,74100.0,kg/TJ,1836073.512,kg +d75543a8-b086-3b00-a3dc-e7d4cab50f53,SESCO,II.5.1,La Pampa,AR-L,annual,2022,gas oil combustion consumption by agriculture machines,24.77832,TJ,CH4,3.9,kg/TJ,96.635448,kg +d75543a8-b086-3b00-a3dc-e7d4cab50f53,SESCO,II.5.1,La Pampa,AR-L,annual,2022,gas oil combustion consumption by agriculture machines,24.77832,TJ,N2O,3.9,kg/TJ,96.635448,kg +0588a943-9a20-34cf-9828-c00c48325dda,SESCO,II.5.1,Mendoza,AR-M,annual,2022,gas oil combustion consumption by agriculture machines,99.58284,TJ,CO2,74100.0,kg/TJ,7379088.444,kg +326e3ca1-72ab-325b-9e30-cabf87e49b17,SESCO,II.5.1,Mendoza,AR-M,annual,2022,gas oil combustion consumption by agriculture machines,99.58284,TJ,CH4,3.9,kg/TJ,388.373076,kg +326e3ca1-72ab-325b-9e30-cabf87e49b17,SESCO,II.5.1,Mendoza,AR-M,annual,2022,gas oil combustion consumption by agriculture machines,99.58284,TJ,N2O,3.9,kg/TJ,388.373076,kg +f7f107a2-8f9e-3147-b26b-fcf16cd8bee9,SESCO,II.5.1,Misiones,AR-N,annual,2022,gas oil combustion consumption by agriculture machines,18.45732,TJ,CO2,74100.0,kg/TJ,1367687.412,kg +777b8b32-e5ad-3a3b-b492-c76598ef4779,SESCO,II.5.1,Misiones,AR-N,annual,2022,gas oil combustion consumption by agriculture machines,18.45732,TJ,CH4,3.9,kg/TJ,71.983548,kg +777b8b32-e5ad-3a3b-b492-c76598ef4779,SESCO,II.5.1,Misiones,AR-N,annual,2022,gas oil combustion consumption by agriculture machines,18.45732,TJ,N2O,3.9,kg/TJ,71.983548,kg +e835bc23-3826-3c6c-b7fb-7f7841079c89,SESCO,II.5.1,Neuquén,AR-Q,annual,2022,gas oil combustion consumption by agriculture machines,73.8654,TJ,CO2,74100.0,kg/TJ,5473426.14,kg +11783656-f905-3ff1-b6e5-6887fd59ee5b,SESCO,II.5.1,Neuquén,AR-Q,annual,2022,gas oil combustion consumption by agriculture machines,73.8654,TJ,CH4,3.9,kg/TJ,288.07505999999995,kg +11783656-f905-3ff1-b6e5-6887fd59ee5b,SESCO,II.5.1,Neuquén,AR-Q,annual,2022,gas oil combustion consumption by agriculture machines,73.8654,TJ,N2O,3.9,kg/TJ,288.07505999999995,kg +a3bb8b65-9b84-3fc4-8aba-775779c58cca,SESCO,II.5.1,Salta,AR-A,annual,2022,gas oil combustion consumption by agriculture machines,48.79812,TJ,CO2,74100.0,kg/TJ,3615940.692,kg +02ee9ab1-3df0-3220-9130-e08e555bff6a,SESCO,II.5.1,Salta,AR-A,annual,2022,gas oil combustion consumption by agriculture machines,48.79812,TJ,CH4,3.9,kg/TJ,190.31266799999997,kg +02ee9ab1-3df0-3220-9130-e08e555bff6a,SESCO,II.5.1,Salta,AR-A,annual,2022,gas oil combustion consumption by agriculture machines,48.79812,TJ,N2O,3.9,kg/TJ,190.31266799999997,kg +63415adb-3ad0-3b85-8d7c-fcd3130e1390,SESCO,II.5.1,San Juan,AR-J,annual,2022,gas oil combustion consumption by agriculture machines,25.71744,TJ,CO2,74100.0,kg/TJ,1905662.304,kg +61bb9db3-1dd0-3216-a9af-28781b01bcdc,SESCO,II.5.1,San Juan,AR-J,annual,2022,gas oil combustion consumption by agriculture machines,25.71744,TJ,CH4,3.9,kg/TJ,100.298016,kg +61bb9db3-1dd0-3216-a9af-28781b01bcdc,SESCO,II.5.1,San Juan,AR-J,annual,2022,gas oil combustion consumption by agriculture machines,25.71744,TJ,N2O,3.9,kg/TJ,100.298016,kg +ada33c5a-71ac-3ff8-ad09-cd336c181b88,SESCO,II.5.1,San Luis,AR-D,annual,2022,gas oil combustion consumption by agriculture machines,14.88144,TJ,CO2,74100.0,kg/TJ,1102714.704,kg +0431522f-7885-3f4e-8951-31a00e0dfdb9,SESCO,II.5.1,San Luis,AR-D,annual,2022,gas oil combustion consumption by agriculture machines,14.88144,TJ,CH4,3.9,kg/TJ,58.037616,kg +0431522f-7885-3f4e-8951-31a00e0dfdb9,SESCO,II.5.1,San Luis,AR-D,annual,2022,gas oil combustion consumption by agriculture machines,14.88144,TJ,N2O,3.9,kg/TJ,58.037616,kg +1ec82b94-3caa-3af9-897b-4d1b0a12dd71,SESCO,II.5.1,Santa Cruz,AR-Z,annual,2022,gas oil combustion consumption by agriculture machines,85.82112,TJ,CO2,74100.0,kg/TJ,6359344.992,kg +2f92f50e-59b8-3028-826e-75d11934ad4d,SESCO,II.5.1,Santa Cruz,AR-Z,annual,2022,gas oil combustion consumption by agriculture machines,85.82112,TJ,CH4,3.9,kg/TJ,334.702368,kg +2f92f50e-59b8-3028-826e-75d11934ad4d,SESCO,II.5.1,Santa Cruz,AR-Z,annual,2022,gas oil combustion consumption by agriculture machines,85.82112,TJ,N2O,3.9,kg/TJ,334.702368,kg +6ce2e390-0151-3424-8713-1535bba0fc9b,SESCO,II.5.1,Santa Fe,AR-S,annual,2022,gas oil combustion consumption by agriculture machines,378.71819999999997,TJ,CO2,74100.0,kg/TJ,28063018.619999997,kg +918af9db-08a7-355c-bceb-ac19e197be69,SESCO,II.5.1,Santa Fe,AR-S,annual,2022,gas oil combustion consumption by agriculture machines,378.71819999999997,TJ,CH4,3.9,kg/TJ,1477.0009799999998,kg +918af9db-08a7-355c-bceb-ac19e197be69,SESCO,II.5.1,Santa Fe,AR-S,annual,2022,gas oil combustion consumption by agriculture machines,378.71819999999997,TJ,N2O,3.9,kg/TJ,1477.0009799999998,kg +148da992-fdf9-3c6d-9346-d62c4f8159ed,SESCO,II.5.1,Santiago del Estero,AR-G,annual,2022,gas oil combustion consumption by agriculture machines,206.4258,TJ,CO2,74100.0,kg/TJ,15296151.780000001,kg +ff1dd1a0-f78b-38d3-957e-48e77981f000,SESCO,II.5.1,Santiago del Estero,AR-G,annual,2022,gas oil combustion consumption by agriculture machines,206.4258,TJ,CH4,3.9,kg/TJ,805.06062,kg +ff1dd1a0-f78b-38d3-957e-48e77981f000,SESCO,II.5.1,Santiago del Estero,AR-G,annual,2022,gas oil combustion consumption by agriculture machines,206.4258,TJ,N2O,3.9,kg/TJ,805.06062,kg +d4ee8671-7606-38ab-b1d5-144150035071,SESCO,II.5.1,Tucuman,AR-T,annual,2022,gas oil combustion consumption by agriculture machines,46.73928,TJ,CO2,74100.0,kg/TJ,3463380.648,kg +b5e6640f-2417-34e5-a19d-9955eeda8b46,SESCO,II.5.1,Tucuman,AR-T,annual,2022,gas oil combustion consumption by agriculture machines,46.73928,TJ,CH4,3.9,kg/TJ,182.28319199999999,kg +b5e6640f-2417-34e5-a19d-9955eeda8b46,SESCO,II.5.1,Tucuman,AR-T,annual,2022,gas oil combustion consumption by agriculture machines,46.73928,TJ,N2O,3.9,kg/TJ,182.28319199999999,kg +c17cb005-61f5-380a-afb6-dd19e6d62498,SESCO,II.1.1,Buenos Aires,AR-B,annual,2022,gas oil combustion consumption by to the public,8505.82656,TJ,CO2,74100.0,kg/TJ,630281748.096,kg +53938a5d-7a1f-31bf-95fd-40882d2598cb,SESCO,II.1.1,Buenos Aires,AR-B,annual,2022,gas oil combustion consumption by to the public,8505.82656,TJ,CH4,3.9,kg/TJ,33172.723584,kg +53938a5d-7a1f-31bf-95fd-40882d2598cb,SESCO,II.1.1,Buenos Aires,AR-B,annual,2022,gas oil combustion consumption by to the public,8505.82656,TJ,N2O,3.9,kg/TJ,33172.723584,kg +4be89ea4-de0f-32f1-8aff-b66de344aba1,SESCO,II.1.1,Capital Federal,AR-C,annual,2022,gas oil combustion consumption by to the public,736.6673999999999,TJ,CO2,74100.0,kg/TJ,54587054.339999996,kg +a5a7df7c-d2d9-3579-94e3-d7dfcba628b9,SESCO,II.1.1,Capital Federal,AR-C,annual,2022,gas oil combustion consumption by to the public,736.6673999999999,TJ,CH4,3.9,kg/TJ,2873.0028599999996,kg +a5a7df7c-d2d9-3579-94e3-d7dfcba628b9,SESCO,II.1.1,Capital Federal,AR-C,annual,2022,gas oil combustion consumption by to the public,736.6673999999999,TJ,N2O,3.9,kg/TJ,2873.0028599999996,kg +ec4cde9f-721b-36fe-aa6a-0f6b1502fa2c,SESCO,II.1.1,Catamarca,AR-K,annual,2022,gas oil combustion consumption by to the public,267.288,TJ,CO2,74100.0,kg/TJ,19806040.8,kg +5fe8488b-9852-3daf-b677-fd62a4467f8a,SESCO,II.1.1,Catamarca,AR-K,annual,2022,gas oil combustion consumption by to the public,267.288,TJ,CH4,3.9,kg/TJ,1042.4232,kg +5fe8488b-9852-3daf-b677-fd62a4467f8a,SESCO,II.1.1,Catamarca,AR-K,annual,2022,gas oil combustion consumption by to the public,267.288,TJ,N2O,3.9,kg/TJ,1042.4232,kg +c1318540-a881-3efa-80cc-270243ee2856,SESCO,II.1.1,Chaco,AR-H,annual,2022,gas oil combustion consumption by to the public,354.77064,TJ,CO2,74100.0,kg/TJ,26288504.424000002,kg +fc14fd0e-82fd-314f-a816-7c801190c89e,SESCO,II.1.1,Chaco,AR-H,annual,2022,gas oil combustion consumption by to the public,354.77064,TJ,CH4,3.9,kg/TJ,1383.6054960000001,kg +fc14fd0e-82fd-314f-a816-7c801190c89e,SESCO,II.1.1,Chaco,AR-H,annual,2022,gas oil combustion consumption by to the public,354.77064,TJ,N2O,3.9,kg/TJ,1383.6054960000001,kg +26056b7d-140a-3c12-97d3-1b808ffe30d3,SESCO,II.1.1,Chubut,AR-U,annual,2022,gas oil combustion consumption by to the public,1217.93028,TJ,CO2,74100.0,kg/TJ,90248633.748,kg +1dac36af-aca8-3c98-9332-3e1dc17dc5bc,SESCO,II.1.1,Chubut,AR-U,annual,2022,gas oil combustion consumption by to the public,1217.93028,TJ,CH4,3.9,kg/TJ,4749.928092,kg +1dac36af-aca8-3c98-9332-3e1dc17dc5bc,SESCO,II.1.1,Chubut,AR-U,annual,2022,gas oil combustion consumption by to the public,1217.93028,TJ,N2O,3.9,kg/TJ,4749.928092,kg +cdc0f878-3497-327f-92ec-2c83d479d20a,SESCO,II.1.1,Corrientes,AR-W,annual,2022,gas oil combustion consumption by to the public,885.6623999999999,TJ,CO2,74100.0,kg/TJ,65627583.839999996,kg +7af5f3f3-12ed-3c07-b33d-1e03e15f68b0,SESCO,II.1.1,Corrientes,AR-W,annual,2022,gas oil combustion consumption by to the public,885.6623999999999,TJ,CH4,3.9,kg/TJ,3454.0833599999996,kg +7af5f3f3-12ed-3c07-b33d-1e03e15f68b0,SESCO,II.1.1,Corrientes,AR-W,annual,2022,gas oil combustion consumption by to the public,885.6623999999999,TJ,N2O,3.9,kg/TJ,3454.0833599999996,kg +660e4b4d-9724-31d1-a60d-d2b0208df386,SESCO,II.1.1,Córdoba,AR-X,annual,2022,gas oil combustion consumption by to the public,3390.9817199999998,TJ,CO2,74100.0,kg/TJ,251271745.452,kg +14d1740b-c0b7-31ad-bc6e-5fff35fa63a3,SESCO,II.1.1,Córdoba,AR-X,annual,2022,gas oil combustion consumption by to the public,3390.9817199999998,TJ,CH4,3.9,kg/TJ,13224.828708,kg +14d1740b-c0b7-31ad-bc6e-5fff35fa63a3,SESCO,II.1.1,Córdoba,AR-X,annual,2022,gas oil combustion consumption by to the public,3390.9817199999998,TJ,N2O,3.9,kg/TJ,13224.828708,kg +6d145fd3-adbb-3068-b7d1-19a1ff6a7d93,SESCO,II.1.1,Entre Rios,AR-E,annual,2022,gas oil combustion consumption by to the public,1233.75084,TJ,CO2,74100.0,kg/TJ,91420937.24399999,kg +c8066cf7-805d-3679-89e0-aa70bca386cf,SESCO,II.1.1,Entre Rios,AR-E,annual,2022,gas oil combustion consumption by to the public,1233.75084,TJ,CH4,3.9,kg/TJ,4811.6282759999995,kg +c8066cf7-805d-3679-89e0-aa70bca386cf,SESCO,II.1.1,Entre Rios,AR-E,annual,2022,gas oil combustion consumption by to the public,1233.75084,TJ,N2O,3.9,kg/TJ,4811.6282759999995,kg +36b6b2e7-9ef5-360f-a549-360f311b6ad2,SESCO,II.1.1,Formosa,AR-P,annual,2022,gas oil combustion consumption by to the public,531.57804,TJ,CO2,74100.0,kg/TJ,39389932.764,kg +3c76ecc1-6041-3797-a126-732870508480,SESCO,II.1.1,Formosa,AR-P,annual,2022,gas oil combustion consumption by to the public,531.57804,TJ,CH4,3.9,kg/TJ,2073.154356,kg +3c76ecc1-6041-3797-a126-732870508480,SESCO,II.1.1,Formosa,AR-P,annual,2022,gas oil combustion consumption by to the public,531.57804,TJ,N2O,3.9,kg/TJ,2073.154356,kg +d50f26ab-d29e-3828-afd7-5abee9d3f68e,SESCO,II.1.1,Jujuy,AR-Y,annual,2022,gas oil combustion consumption by to the public,283.90319999999997,TJ,CO2,74100.0,kg/TJ,21037227.119999997,kg +03e9cf71-79fb-3bd7-8cdb-f5cf6c614148,SESCO,II.1.1,Jujuy,AR-Y,annual,2022,gas oil combustion consumption by to the public,283.90319999999997,TJ,CH4,3.9,kg/TJ,1107.22248,kg +03e9cf71-79fb-3bd7-8cdb-f5cf6c614148,SESCO,II.1.1,Jujuy,AR-Y,annual,2022,gas oil combustion consumption by to the public,283.90319999999997,TJ,N2O,3.9,kg/TJ,1107.22248,kg +77bba135-d4f3-3582-81ef-04fd6999d154,SESCO,II.1.1,La Pampa,AR-L,annual,2022,gas oil combustion consumption by to the public,387.387,TJ,CO2,74100.0,kg/TJ,28705376.7,kg +af9d5b7d-3aea-3b5d-a080-f1d3ec137113,SESCO,II.1.1,La Pampa,AR-L,annual,2022,gas oil combustion consumption by to the public,387.387,TJ,CH4,3.9,kg/TJ,1510.8093,kg +af9d5b7d-3aea-3b5d-a080-f1d3ec137113,SESCO,II.1.1,La Pampa,AR-L,annual,2022,gas oil combustion consumption by to the public,387.387,TJ,N2O,3.9,kg/TJ,1510.8093,kg +47221f05-e5f5-3abe-8df3-5d73d2242af8,SESCO,II.1.1,La Rioja,AR-F,annual,2022,gas oil combustion consumption by to the public,57.57528,TJ,CO2,74100.0,kg/TJ,4266328.248,kg +9e850785-7512-30a7-bce7-61fb433bbddc,SESCO,II.1.1,La Rioja,AR-F,annual,2022,gas oil combustion consumption by to the public,57.57528,TJ,CH4,3.9,kg/TJ,224.543592,kg +9e850785-7512-30a7-bce7-61fb433bbddc,SESCO,II.1.1,La Rioja,AR-F,annual,2022,gas oil combustion consumption by to the public,57.57528,TJ,N2O,3.9,kg/TJ,224.543592,kg +1060a0a4-61cf-3f58-955b-54029c5ddcca,SESCO,II.1.1,Mendoza,AR-M,annual,2022,gas oil combustion consumption by to the public,1439.5626,TJ,CO2,74100.0,kg/TJ,106671588.66,kg +29a1de22-1643-3776-b0d1-656fc49c4ea2,SESCO,II.1.1,Mendoza,AR-M,annual,2022,gas oil combustion consumption by to the public,1439.5626,TJ,CH4,3.9,kg/TJ,5614.29414,kg +29a1de22-1643-3776-b0d1-656fc49c4ea2,SESCO,II.1.1,Mendoza,AR-M,annual,2022,gas oil combustion consumption by to the public,1439.5626,TJ,N2O,3.9,kg/TJ,5614.29414,kg +417acf6d-a40f-3843-a883-90e2e12f43d2,SESCO,II.1.1,Misiones,AR-N,annual,2022,gas oil combustion consumption by to the public,1024.03812,TJ,CO2,74100.0,kg/TJ,75881224.692,kg +c90e36ff-d24e-309c-bd57-3cf40b1a6e6c,SESCO,II.1.1,Misiones,AR-N,annual,2022,gas oil combustion consumption by to the public,1024.03812,TJ,CH4,3.9,kg/TJ,3993.7486679999997,kg +c90e36ff-d24e-309c-bd57-3cf40b1a6e6c,SESCO,II.1.1,Misiones,AR-N,annual,2022,gas oil combustion consumption by to the public,1024.03812,TJ,N2O,3.9,kg/TJ,3993.7486679999997,kg +a090ca2d-f93c-3f21-b4e3-afca7ab4ecfa,SESCO,II.1.1,Neuquén,AR-Q,annual,2022,gas oil combustion consumption by to the public,238.86156,TJ,CO2,74100.0,kg/TJ,17699641.596,kg +7245cb14-37e8-309a-885b-5386637d0aca,SESCO,II.1.1,Neuquén,AR-Q,annual,2022,gas oil combustion consumption by to the public,238.86156,TJ,CH4,3.9,kg/TJ,931.560084,kg +7245cb14-37e8-309a-885b-5386637d0aca,SESCO,II.1.1,Neuquén,AR-Q,annual,2022,gas oil combustion consumption by to the public,238.86156,TJ,N2O,3.9,kg/TJ,931.560084,kg +ae18b33d-efd9-3bd0-9964-98b88c0b19ff,SESCO,II.1.1,Rio Negro,AR-R,annual,2022,gas oil combustion consumption by to the public,614.00388,TJ,CO2,74100.0,kg/TJ,45497687.508,kg +9402cd63-1fc0-3353-ae27-1fb9dd3fac92,SESCO,II.1.1,Rio Negro,AR-R,annual,2022,gas oil combustion consumption by to the public,614.00388,TJ,CH4,3.9,kg/TJ,2394.615132,kg +9402cd63-1fc0-3353-ae27-1fb9dd3fac92,SESCO,II.1.1,Rio Negro,AR-R,annual,2022,gas oil combustion consumption by to the public,614.00388,TJ,N2O,3.9,kg/TJ,2394.615132,kg +48f852c6-7de1-37b5-b017-a47c595ce9ab,SESCO,II.1.1,Salta,AR-A,annual,2022,gas oil combustion consumption by to the public,109.15464,TJ,CO2,74100.0,kg/TJ,8088358.824,kg +334c832b-7b17-3379-b4a1-807f2606fbce,SESCO,II.1.1,Salta,AR-A,annual,2022,gas oil combustion consumption by to the public,109.15464,TJ,CH4,3.9,kg/TJ,425.703096,kg +334c832b-7b17-3379-b4a1-807f2606fbce,SESCO,II.1.1,Salta,AR-A,annual,2022,gas oil combustion consumption by to the public,109.15464,TJ,N2O,3.9,kg/TJ,425.703096,kg +67b41157-d5e0-3142-8717-fc131a0cacc4,SESCO,II.1.1,San Juan,AR-J,annual,2022,gas oil combustion consumption by to the public,291.99408,TJ,CO2,74100.0,kg/TJ,21636761.328,kg +0f4dc242-6c7e-3b2f-844b-364a7abcaed7,SESCO,II.1.1,San Juan,AR-J,annual,2022,gas oil combustion consumption by to the public,291.99408,TJ,CH4,3.9,kg/TJ,1138.776912,kg +0f4dc242-6c7e-3b2f-844b-364a7abcaed7,SESCO,II.1.1,San Juan,AR-J,annual,2022,gas oil combustion consumption by to the public,291.99408,TJ,N2O,3.9,kg/TJ,1138.776912,kg +a67460d4-623b-3f87-bcb0-e03638d5302a,SESCO,II.1.1,San Luis,AR-D,annual,2022,gas oil combustion consumption by to the public,560.43792,TJ,CO2,74100.0,kg/TJ,41528449.871999994,kg +c24c93d0-da2d-377f-9a87-b08b824820a7,SESCO,II.1.1,San Luis,AR-D,annual,2022,gas oil combustion consumption by to the public,560.43792,TJ,CH4,3.9,kg/TJ,2185.707888,kg +c24c93d0-da2d-377f-9a87-b08b824820a7,SESCO,II.1.1,San Luis,AR-D,annual,2022,gas oil combustion consumption by to the public,560.43792,TJ,N2O,3.9,kg/TJ,2185.707888,kg +79c04171-81c6-3c21-b165-97d17b5ab46e,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2022,gas oil combustion consumption by to the public,472.05228,TJ,CO2,74100.0,kg/TJ,34979073.948,kg +ca13926b-ec81-3a95-abf2-cfea7bb03a04,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2022,gas oil combustion consumption by to the public,472.05228,TJ,CH4,3.9,kg/TJ,1841.003892,kg +ca13926b-ec81-3a95-abf2-cfea7bb03a04,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2022,gas oil combustion consumption by to the public,472.05228,TJ,N2O,3.9,kg/TJ,1841.003892,kg +94f3ee1d-ab6c-31e1-8989-cc6b89391201,SESCO,II.1.1,Santa Fe,AR-S,annual,2022,gas oil combustion consumption by to the public,2024.81496,TJ,CO2,74100.0,kg/TJ,150038788.53599998,kg +f704d187-7979-34dd-99c2-ae76bbded0bb,SESCO,II.1.1,Santa Fe,AR-S,annual,2022,gas oil combustion consumption by to the public,2024.81496,TJ,CH4,3.9,kg/TJ,7896.778343999999,kg +f704d187-7979-34dd-99c2-ae76bbded0bb,SESCO,II.1.1,Santa Fe,AR-S,annual,2022,gas oil combustion consumption by to the public,2024.81496,TJ,N2O,3.9,kg/TJ,7896.778343999999,kg +a760c8ff-da09-3a17-a0f9-9b61bc5ce459,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2022,gas oil combustion consumption by to the public,404.3634,TJ,CO2,74100.0,kg/TJ,29963327.94,kg +526a2ee3-6d68-3cda-a33b-057d67811430,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2022,gas oil combustion consumption by to the public,404.3634,TJ,CH4,3.9,kg/TJ,1577.01726,kg +526a2ee3-6d68-3cda-a33b-057d67811430,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2022,gas oil combustion consumption by to the public,404.3634,TJ,N2O,3.9,kg/TJ,1577.01726,kg +16e3657e-081b-3408-b408-007e44914259,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2022,gas oil combustion consumption by to the public,98.9688,TJ,CO2,74100.0,kg/TJ,7333588.08,kg +37c20c36-3e76-3101-bd74-f67b0d571d74,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2022,gas oil combustion consumption by to the public,98.9688,TJ,CH4,3.9,kg/TJ,385.97832,kg +37c20c36-3e76-3101-bd74-f67b0d571d74,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2022,gas oil combustion consumption by to the public,98.9688,TJ,N2O,3.9,kg/TJ,385.97832,kg +5be6af0c-d777-39f6-9896-9a2b8a9e6894,SESCO,II.1.1,Tucuman,AR-T,annual,2022,gas oil combustion consumption by to the public,121.25484,TJ,CO2,74100.0,kg/TJ,8984983.644,kg +6b534b4d-b547-3adb-a472-19487807f9f9,SESCO,II.1.1,Tucuman,AR-T,annual,2022,gas oil combustion consumption by to the public,121.25484,TJ,CH4,3.9,kg/TJ,472.893876,kg +6b534b4d-b547-3adb-a472-19487807f9f9,SESCO,II.1.1,Tucuman,AR-T,annual,2022,gas oil combustion consumption by to the public,121.25484,TJ,N2O,3.9,kg/TJ,472.893876,kg +f093e2dc-791c-308e-8d64-4396c30988ff,SESCO,II.1.1,Buenos Aires,AR-B,annual,2022,gas oil combustion consumption by to the public,3900.45432,TJ,CO2,74100.0,kg/TJ,289023665.112,kg +c6583707-bee9-3cc8-99c9-1445fcdc2764,SESCO,II.1.1,Buenos Aires,AR-B,annual,2022,gas oil combustion consumption by to the public,3900.45432,TJ,CH4,3.9,kg/TJ,15211.771847999998,kg +c6583707-bee9-3cc8-99c9-1445fcdc2764,SESCO,II.1.1,Buenos Aires,AR-B,annual,2022,gas oil combustion consumption by to the public,3900.45432,TJ,N2O,3.9,kg/TJ,15211.771847999998,kg +e028b3ed-6925-3fc6-a7f9-060a0a7edb02,SESCO,II.1.1,Capital Federal,AR-C,annual,2022,gas oil combustion consumption by to the public,565.96428,TJ,CO2,74100.0,kg/TJ,41937953.148,kg +4ffef50b-05f0-34d2-b32c-15fb19e04735,SESCO,II.1.1,Capital Federal,AR-C,annual,2022,gas oil combustion consumption by to the public,565.96428,TJ,CH4,3.9,kg/TJ,2207.2606920000003,kg +4ffef50b-05f0-34d2-b32c-15fb19e04735,SESCO,II.1.1,Capital Federal,AR-C,annual,2022,gas oil combustion consumption by to the public,565.96428,TJ,N2O,3.9,kg/TJ,2207.2606920000003,kg +56339126-d555-37e3-a529-42ec1e4cf3c4,SESCO,II.1.1,Catamarca,AR-K,annual,2022,gas oil combustion consumption by to the public,207.65388,TJ,CO2,74100.0,kg/TJ,15387152.508,kg +9fa16ecd-a395-36ca-ada8-f096439298c8,SESCO,II.1.1,Catamarca,AR-K,annual,2022,gas oil combustion consumption by to the public,207.65388,TJ,CH4,3.9,kg/TJ,809.8501319999999,kg +9fa16ecd-a395-36ca-ada8-f096439298c8,SESCO,II.1.1,Catamarca,AR-K,annual,2022,gas oil combustion consumption by to the public,207.65388,TJ,N2O,3.9,kg/TJ,809.8501319999999,kg +633f36a6-89e1-310a-8192-13163e23ff15,SESCO,II.1.1,Chaco,AR-H,annual,2022,gas oil combustion consumption by to the public,243.77388,TJ,CO2,74100.0,kg/TJ,18063644.507999998,kg +197321d4-2550-379a-8639-aea615bc38b7,SESCO,II.1.1,Chaco,AR-H,annual,2022,gas oil combustion consumption by to the public,243.77388,TJ,CH4,3.9,kg/TJ,950.718132,kg +197321d4-2550-379a-8639-aea615bc38b7,SESCO,II.1.1,Chaco,AR-H,annual,2022,gas oil combustion consumption by to the public,243.77388,TJ,N2O,3.9,kg/TJ,950.718132,kg +025ccedc-5585-3eba-8ef9-dfd2abcc5c65,SESCO,II.1.1,Chubut,AR-U,annual,2022,gas oil combustion consumption by to the public,708.71052,TJ,CO2,74100.0,kg/TJ,52515449.532,kg +65aebb7f-22da-3b3e-8bb8-fe4c0e6e64db,SESCO,II.1.1,Chubut,AR-U,annual,2022,gas oil combustion consumption by to the public,708.71052,TJ,CH4,3.9,kg/TJ,2763.971028,kg +65aebb7f-22da-3b3e-8bb8-fe4c0e6e64db,SESCO,II.1.1,Chubut,AR-U,annual,2022,gas oil combustion consumption by to the public,708.71052,TJ,N2O,3.9,kg/TJ,2763.971028,kg +68e14467-de74-348b-a958-22177ca0dfa3,SESCO,II.1.1,Corrientes,AR-W,annual,2022,gas oil combustion consumption by to the public,391.14348,TJ,CO2,74100.0,kg/TJ,28983731.868,kg +477a3192-6544-3396-ab05-fc198ffe7577,SESCO,II.1.1,Corrientes,AR-W,annual,2022,gas oil combustion consumption by to the public,391.14348,TJ,CH4,3.9,kg/TJ,1525.459572,kg +477a3192-6544-3396-ab05-fc198ffe7577,SESCO,II.1.1,Corrientes,AR-W,annual,2022,gas oil combustion consumption by to the public,391.14348,TJ,N2O,3.9,kg/TJ,1525.459572,kg +99c87e61-8f6e-30f3-a73e-bc224b7284af,SESCO,II.1.1,Córdoba,AR-X,annual,2022,gas oil combustion consumption by to the public,1300.71732,TJ,CO2,74100.0,kg/TJ,96383153.412,kg +2821813c-0ef9-310a-89ff-2a22bd2ad241,SESCO,II.1.1,Córdoba,AR-X,annual,2022,gas oil combustion consumption by to the public,1300.71732,TJ,CH4,3.9,kg/TJ,5072.797548,kg +2821813c-0ef9-310a-89ff-2a22bd2ad241,SESCO,II.1.1,Córdoba,AR-X,annual,2022,gas oil combustion consumption by to the public,1300.71732,TJ,N2O,3.9,kg/TJ,5072.797548,kg +23dbd3e2-62de-30bc-9d6e-72a1a1e91011,SESCO,II.1.1,Entre Rios,AR-E,annual,2022,gas oil combustion consumption by to the public,568.13148,TJ,CO2,74100.0,kg/TJ,42098542.668,kg +33651a37-9c95-3a77-8e42-6c405dcc8d3d,SESCO,II.1.1,Entre Rios,AR-E,annual,2022,gas oil combustion consumption by to the public,568.13148,TJ,CH4,3.9,kg/TJ,2215.712772,kg +33651a37-9c95-3a77-8e42-6c405dcc8d3d,SESCO,II.1.1,Entre Rios,AR-E,annual,2022,gas oil combustion consumption by to the public,568.13148,TJ,N2O,3.9,kg/TJ,2215.712772,kg +ca8b87b8-c70a-31fc-bcbb-06d1d9655fb9,SESCO,II.1.1,Formosa,AR-P,annual,2022,gas oil combustion consumption by to the public,446.15424,TJ,CO2,74100.0,kg/TJ,33060029.184,kg +0887076c-f1c4-3c7e-b471-02a4babc2ac7,SESCO,II.1.1,Formosa,AR-P,annual,2022,gas oil combustion consumption by to the public,446.15424,TJ,CH4,3.9,kg/TJ,1740.001536,kg +0887076c-f1c4-3c7e-b471-02a4babc2ac7,SESCO,II.1.1,Formosa,AR-P,annual,2022,gas oil combustion consumption by to the public,446.15424,TJ,N2O,3.9,kg/TJ,1740.001536,kg +990dabda-bc90-356d-b2b9-73121c1a8e3b,SESCO,II.1.1,Jujuy,AR-Y,annual,2022,gas oil combustion consumption by to the public,106.26504,TJ,CO2,74100.0,kg/TJ,7874239.464,kg +5fbde064-5814-32d9-b0c4-791ff0473d00,SESCO,II.1.1,Jujuy,AR-Y,annual,2022,gas oil combustion consumption by to the public,106.26504,TJ,CH4,3.9,kg/TJ,414.433656,kg +5fbde064-5814-32d9-b0c4-791ff0473d00,SESCO,II.1.1,Jujuy,AR-Y,annual,2022,gas oil combustion consumption by to the public,106.26504,TJ,N2O,3.9,kg/TJ,414.433656,kg +c4762577-1552-33df-aad3-ff100d619127,SESCO,II.1.1,La Pampa,AR-L,annual,2022,gas oil combustion consumption by to the public,190.1718,TJ,CO2,74100.0,kg/TJ,14091730.379999999,kg +9fa10afd-00c1-3e33-9373-5134a862c413,SESCO,II.1.1,La Pampa,AR-L,annual,2022,gas oil combustion consumption by to the public,190.1718,TJ,CH4,3.9,kg/TJ,741.6700199999999,kg +9fa10afd-00c1-3e33-9373-5134a862c413,SESCO,II.1.1,La Pampa,AR-L,annual,2022,gas oil combustion consumption by to the public,190.1718,TJ,N2O,3.9,kg/TJ,741.6700199999999,kg +5662a06e-e174-3c29-8e41-03dcf26a40c3,SESCO,II.1.1,La Rioja,AR-F,annual,2022,gas oil combustion consumption by to the public,64.69092,TJ,CO2,74100.0,kg/TJ,4793597.172,kg +6a973f44-412d-3017-be89-e98aef9d72ef,SESCO,II.1.1,La Rioja,AR-F,annual,2022,gas oil combustion consumption by to the public,64.69092,TJ,CH4,3.9,kg/TJ,252.294588,kg +6a973f44-412d-3017-be89-e98aef9d72ef,SESCO,II.1.1,La Rioja,AR-F,annual,2022,gas oil combustion consumption by to the public,64.69092,TJ,N2O,3.9,kg/TJ,252.294588,kg +812050cf-00c6-3cfc-b34a-1f2f471d277c,SESCO,II.1.1,Mendoza,AR-M,annual,2022,gas oil combustion consumption by to the public,503.58504,TJ,CO2,74100.0,kg/TJ,37315651.464,kg +184b8d8f-e8aa-3162-b137-bf78b1e0f09e,SESCO,II.1.1,Mendoza,AR-M,annual,2022,gas oil combustion consumption by to the public,503.58504,TJ,CH4,3.9,kg/TJ,1963.981656,kg +184b8d8f-e8aa-3162-b137-bf78b1e0f09e,SESCO,II.1.1,Mendoza,AR-M,annual,2022,gas oil combustion consumption by to the public,503.58504,TJ,N2O,3.9,kg/TJ,1963.981656,kg +2681be92-0723-38aa-afe3-49c35a3e2a68,SESCO,II.1.1,Misiones,AR-N,annual,2022,gas oil combustion consumption by to the public,579.43704,TJ,CO2,74100.0,kg/TJ,42936284.664000005,kg +a12205c5-1e3f-3476-8d2d-d4a68f0268ee,SESCO,II.1.1,Misiones,AR-N,annual,2022,gas oil combustion consumption by to the public,579.43704,TJ,CH4,3.9,kg/TJ,2259.804456,kg +a12205c5-1e3f-3476-8d2d-d4a68f0268ee,SESCO,II.1.1,Misiones,AR-N,annual,2022,gas oil combustion consumption by to the public,579.43704,TJ,N2O,3.9,kg/TJ,2259.804456,kg +2140dba7-ff9b-39b7-8126-125808693bae,SESCO,II.1.1,Neuquén,AR-Q,annual,2022,gas oil combustion consumption by to the public,347.2938,TJ,CO2,74100.0,kg/TJ,25734470.58,kg +d11f047e-3f21-3034-98e8-fcfb9621fafd,SESCO,II.1.1,Neuquén,AR-Q,annual,2022,gas oil combustion consumption by to the public,347.2938,TJ,CH4,3.9,kg/TJ,1354.44582,kg +d11f047e-3f21-3034-98e8-fcfb9621fafd,SESCO,II.1.1,Neuquén,AR-Q,annual,2022,gas oil combustion consumption by to the public,347.2938,TJ,N2O,3.9,kg/TJ,1354.44582,kg +d9f99706-9ebe-31a4-a405-1617f53fd58c,SESCO,II.1.1,Rio Negro,AR-R,annual,2022,gas oil combustion consumption by to the public,430.94772,TJ,CO2,74100.0,kg/TJ,31933226.052,kg +c0802e23-b710-3b3b-9d1b-27118e14e002,SESCO,II.1.1,Rio Negro,AR-R,annual,2022,gas oil combustion consumption by to the public,430.94772,TJ,CH4,3.9,kg/TJ,1680.6961079999999,kg +c0802e23-b710-3b3b-9d1b-27118e14e002,SESCO,II.1.1,Rio Negro,AR-R,annual,2022,gas oil combustion consumption by to the public,430.94772,TJ,N2O,3.9,kg/TJ,1680.6961079999999,kg +28e0a523-9237-38db-95e1-eb4debf6b5cc,SESCO,II.1.1,Salta,AR-A,annual,2022,gas oil combustion consumption by to the public,94.48992,TJ,CO2,74100.0,kg/TJ,7001703.072,kg +6aad7644-475f-3fd9-902d-906142bc7b42,SESCO,II.1.1,Salta,AR-A,annual,2022,gas oil combustion consumption by to the public,94.48992,TJ,CH4,3.9,kg/TJ,368.51068799999996,kg +6aad7644-475f-3fd9-902d-906142bc7b42,SESCO,II.1.1,Salta,AR-A,annual,2022,gas oil combustion consumption by to the public,94.48992,TJ,N2O,3.9,kg/TJ,368.51068799999996,kg +f145ffa2-734f-38d5-a1aa-a75e890a2464,SESCO,II.1.1,San Juan,AR-J,annual,2022,gas oil combustion consumption by to the public,106.51787999999999,TJ,CO2,74100.0,kg/TJ,7892974.907999999,kg +df2d983b-3887-36af-8fba-39c31e4b64e6,SESCO,II.1.1,San Juan,AR-J,annual,2022,gas oil combustion consumption by to the public,106.51787999999999,TJ,CH4,3.9,kg/TJ,415.41973199999995,kg +df2d983b-3887-36af-8fba-39c31e4b64e6,SESCO,II.1.1,San Juan,AR-J,annual,2022,gas oil combustion consumption by to the public,106.51787999999999,TJ,N2O,3.9,kg/TJ,415.41973199999995,kg +c4d5b584-6392-3c6f-ae21-dd2be0785096,SESCO,II.1.1,San Luis,AR-D,annual,2022,gas oil combustion consumption by to the public,224.81088,TJ,CO2,74100.0,kg/TJ,16658486.208,kg +7496c735-2746-3ae5-8a76-7d1a78b871bc,SESCO,II.1.1,San Luis,AR-D,annual,2022,gas oil combustion consumption by to the public,224.81088,TJ,CH4,3.9,kg/TJ,876.762432,kg +7496c735-2746-3ae5-8a76-7d1a78b871bc,SESCO,II.1.1,San Luis,AR-D,annual,2022,gas oil combustion consumption by to the public,224.81088,TJ,N2O,3.9,kg/TJ,876.762432,kg +500f47ca-53a6-3332-888d-13ee3842836d,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2022,gas oil combustion consumption by to the public,406.13328,TJ,CO2,74100.0,kg/TJ,30094476.048,kg +88a08ab3-807a-320e-90bc-8a2705aab662,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2022,gas oil combustion consumption by to the public,406.13328,TJ,CH4,3.9,kg/TJ,1583.919792,kg +88a08ab3-807a-320e-90bc-8a2705aab662,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2022,gas oil combustion consumption by to the public,406.13328,TJ,N2O,3.9,kg/TJ,1583.919792,kg +01881dbe-279a-3181-81c8-31a45da9ccb2,SESCO,II.1.1,Santa Fe,AR-S,annual,2022,gas oil combustion consumption by to the public,1063.5534,TJ,CO2,74100.0,kg/TJ,78809306.94,kg +56c58363-26a7-3709-9735-1a2d779f9bda,SESCO,II.1.1,Santa Fe,AR-S,annual,2022,gas oil combustion consumption by to the public,1063.5534,TJ,CH4,3.9,kg/TJ,4147.85826,kg +56c58363-26a7-3709-9735-1a2d779f9bda,SESCO,II.1.1,Santa Fe,AR-S,annual,2022,gas oil combustion consumption by to the public,1063.5534,TJ,N2O,3.9,kg/TJ,4147.85826,kg +6e5073cf-b3f2-3f8f-a49a-d5c9370dfc10,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2022,gas oil combustion consumption by to the public,275.52335999999997,TJ,CO2,74100.0,kg/TJ,20416280.975999996,kg +04c91e4c-9a1e-36e2-a3cc-c7a2028158e4,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2022,gas oil combustion consumption by to the public,275.52335999999997,TJ,CH4,3.9,kg/TJ,1074.541104,kg +04c91e4c-9a1e-36e2-a3cc-c7a2028158e4,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2022,gas oil combustion consumption by to the public,275.52335999999997,TJ,N2O,3.9,kg/TJ,1074.541104,kg +3ef8b114-8c33-3809-924b-f165b52acc48,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2022,gas oil combustion consumption by to the public,42.94668,TJ,CO2,74100.0,kg/TJ,3182348.988,kg +56b2ad9d-0d37-3802-84fb-b7a4658c4245,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2022,gas oil combustion consumption by to the public,42.94668,TJ,CH4,3.9,kg/TJ,167.492052,kg +56b2ad9d-0d37-3802-84fb-b7a4658c4245,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2022,gas oil combustion consumption by to the public,42.94668,TJ,N2O,3.9,kg/TJ,167.492052,kg +812101ca-9dee-3cc6-a44d-668ca6512f11,SESCO,II.1.1,Tucuman,AR-T,annual,2022,gas oil combustion consumption by to the public,49.73724,TJ,CO2,74100.0,kg/TJ,3685529.484,kg +99f62afe-c4b7-3ac7-9e6d-fbd69285711a,SESCO,II.1.1,Tucuman,AR-T,annual,2022,gas oil combustion consumption by to the public,49.73724,TJ,CH4,3.9,kg/TJ,193.975236,kg +99f62afe-c4b7-3ac7-9e6d-fbd69285711a,SESCO,II.1.1,Tucuman,AR-T,annual,2022,gas oil combustion consumption by to the public,49.73724,TJ,N2O,3.9,kg/TJ,193.975236,kg +475ab121-d2db-312c-a137-6f88ee270f5e,SESCO,II.1.1,Buenos Aires,AR-B,annual,2022,jet kerosene combustion consumption by to the public,3.3025649999999995,TJ,CO2,71500.0,kg/TJ,236133.39749999996,kg +43bd096e-4f30-3065-a3fb-92efd4bb909d,SESCO,II.1.1,Buenos Aires,AR-B,annual,2022,jet kerosene combustion consumption by to the public,3.3025649999999995,TJ,CH4,0.5,kg/TJ,1.6512824999999998,kg +764a48de-062d-3538-b5c7-80be304d1958,SESCO,II.1.1,Buenos Aires,AR-B,annual,2022,jet kerosene combustion consumption by to the public,3.3025649999999995,TJ,N2O,2.0,kg/TJ,6.605129999999999,kg +cbda2118-8d11-3631-835a-f5344577b7a9,SESCO,II.1.1,Chaco,AR-H,annual,2022,jet kerosene combustion consumption by to the public,0.157265,TJ,CO2,71500.0,kg/TJ,11244.447499999998,kg +89b1b49e-168f-34d5-8fac-57b37b337b7c,SESCO,II.1.1,Chaco,AR-H,annual,2022,jet kerosene combustion consumption by to the public,0.157265,TJ,CH4,0.5,kg/TJ,0.0786325,kg +b4a89ed2-c2d4-3360-8125-3c5039ae2089,SESCO,II.1.1,Chaco,AR-H,annual,2022,jet kerosene combustion consumption by to the public,0.157265,TJ,N2O,2.0,kg/TJ,0.31453,kg +feda1785-ea9f-38e3-a357-60256bc7e73e,SESCO,II.1.1,Córdoba,AR-X,annual,2022,jet kerosene combustion consumption by to the public,2.233163,TJ,CO2,71500.0,kg/TJ,159671.15449999998,kg +3076db6b-a01c-39d1-ba12-baf12e18695d,SESCO,II.1.1,Córdoba,AR-X,annual,2022,jet kerosene combustion consumption by to the public,2.233163,TJ,CH4,0.5,kg/TJ,1.1165815,kg +5a9ba29e-c896-3176-bfb2-2f200bd23965,SESCO,II.1.1,Córdoba,AR-X,annual,2022,jet kerosene combustion consumption by to the public,2.233163,TJ,N2O,2.0,kg/TJ,4.466326,kg +fd387e7e-1852-3f65-9740-517d6121842a,SESCO,II.1.1,Entre Rios,AR-E,annual,2022,jet kerosene combustion consumption by to the public,1.9186329999999996,TJ,CO2,71500.0,kg/TJ,137182.25949999996,kg +6a87fa75-2e00-3b69-8cd8-64ddfee1548e,SESCO,II.1.1,Entre Rios,AR-E,annual,2022,jet kerosene combustion consumption by to the public,1.9186329999999996,TJ,CH4,0.5,kg/TJ,0.9593164999999998,kg +0e044b8c-54cc-3e7d-a7d6-6c94e570e12a,SESCO,II.1.1,Entre Rios,AR-E,annual,2022,jet kerosene combustion consumption by to the public,1.9186329999999996,TJ,N2O,2.0,kg/TJ,3.837265999999999,kg +89add4c1-b3fb-3642-90c2-bd7dad673f52,SESCO,II.1.1,Santa Fe,AR-S,annual,2022,jet kerosene combustion consumption by to the public,2.9251289999999996,TJ,CO2,71500.0,kg/TJ,209146.72349999996,kg +d5cf54ea-ae1b-3388-a41f-14741e6d7feb,SESCO,II.1.1,Santa Fe,AR-S,annual,2022,jet kerosene combustion consumption by to the public,2.9251289999999996,TJ,CH4,0.5,kg/TJ,1.4625644999999998,kg +d16c16d7-b0ad-3817-be9a-5720a4f4cd36,SESCO,II.1.1,Santa Fe,AR-S,annual,2022,jet kerosene combustion consumption by to the public,2.9251289999999996,TJ,N2O,2.0,kg/TJ,5.850257999999999,kg +b5e4a8dc-92ad-3519-a0a2-c57f23329fc9,SESCO,I.3.1,San Luis,AR-D,annual,2022,gas oil combustion consumption by petrochemical industries,1.30032,TJ,CO2,74100.0,kg/TJ,96353.712,kg +b4038f4a-c6b4-3e0d-a1e0-fa774ea0737d,SESCO,I.3.1,San Luis,AR-D,annual,2022,gas oil combustion consumption by petrochemical industries,1.30032,TJ,CH4,3.9,kg/TJ,5.071248,kg +b4038f4a-c6b4-3e0d-a1e0-fa774ea0737d,SESCO,I.3.1,San Luis,AR-D,annual,2022,gas oil combustion consumption by petrochemical industries,1.30032,TJ,N2O,3.9,kg/TJ,5.071248,kg +62865a33-398c-3e39-bcf5-2a4e18046d58,SESCO,I.3.1,Capital Federal,AR-C,annual,2022,jet kerosene combustion consumption by petrochemical industries,0.25162399999999996,TJ,CO2,71500.0,kg/TJ,17991.115999999998,kg +6d42c8d5-b585-3daa-bea5-3f897ce0ea6f,SESCO,I.3.1,Capital Federal,AR-C,annual,2022,jet kerosene combustion consumption by petrochemical industries,0.25162399999999996,TJ,CH4,0.5,kg/TJ,0.12581199999999998,kg +9450ffb3-7286-31fb-ac93-1c0706c516b7,SESCO,I.3.1,Capital Federal,AR-C,annual,2022,jet kerosene combustion consumption by petrochemical industries,0.25162399999999996,TJ,N2O,2.0,kg/TJ,0.5032479999999999,kg +4d312efb-9dbf-3530-af8c-19340d8ab7c2,SESCO,II.2.1,Buenos Aires,AR-B,annual,2022,gas oil combustion consumption by railway transport,80.367,TJ,CO2,74100.0,kg/TJ,5955194.7,kg +697fe031-81b1-3e10-8d34-bb528f8ed4f0,SESCO,II.2.1,Buenos Aires,AR-B,annual,2022,gas oil combustion consumption by railway transport,80.367,TJ,CH4,3.9,kg/TJ,313.4313,kg +697fe031-81b1-3e10-8d34-bb528f8ed4f0,SESCO,II.2.1,Buenos Aires,AR-B,annual,2022,gas oil combustion consumption by railway transport,80.367,TJ,N2O,3.9,kg/TJ,313.4313,kg +f2f9e289-544b-37dc-8518-6f702c310812,SESCO,II.2.1,Capital Federal,AR-C,annual,2022,gas oil combustion consumption by railway transport,0.903,TJ,CO2,74100.0,kg/TJ,66912.3,kg +4dd6ec88-291a-39f9-900d-2ffeb24dda48,SESCO,II.2.1,Capital Federal,AR-C,annual,2022,gas oil combustion consumption by railway transport,0.903,TJ,CH4,3.9,kg/TJ,3.5217,kg +4dd6ec88-291a-39f9-900d-2ffeb24dda48,SESCO,II.2.1,Capital Federal,AR-C,annual,2022,gas oil combustion consumption by railway transport,0.903,TJ,N2O,3.9,kg/TJ,3.5217,kg +35b7048c-f187-36a2-a922-a8779872b195,SESCO,II.2.1,Córdoba,AR-X,annual,2022,gas oil combustion consumption by railway transport,2.6367599999999998,TJ,CO2,74100.0,kg/TJ,195383.916,kg +89c37af0-f2c6-3ba3-987b-a809ea562587,SESCO,II.2.1,Córdoba,AR-X,annual,2022,gas oil combustion consumption by railway transport,2.6367599999999998,TJ,CH4,3.9,kg/TJ,10.283363999999999,kg +89c37af0-f2c6-3ba3-987b-a809ea562587,SESCO,II.2.1,Córdoba,AR-X,annual,2022,gas oil combustion consumption by railway transport,2.6367599999999998,TJ,N2O,3.9,kg/TJ,10.283363999999999,kg +2dc27361-365d-3d37-bb50-6bc73308e3a0,SESCO,II.2.1,La Pampa,AR-L,annual,2022,gas oil combustion consumption by railway transport,25.97028,TJ,CO2,74100.0,kg/TJ,1924397.748,kg +b3957907-b6c7-3a84-9d12-5b828a1e401d,SESCO,II.2.1,La Pampa,AR-L,annual,2022,gas oil combustion consumption by railway transport,25.97028,TJ,CH4,3.9,kg/TJ,101.28409199999999,kg +b3957907-b6c7-3a84-9d12-5b828a1e401d,SESCO,II.2.1,La Pampa,AR-L,annual,2022,gas oil combustion consumption by railway transport,25.97028,TJ,N2O,3.9,kg/TJ,101.28409199999999,kg +89e7156f-38e5-3984-a459-1c6d6b96ef9b,SESCO,II.2.1,Neuquén,AR-Q,annual,2022,gas oil combustion consumption by railway transport,2.67288,TJ,CO2,74100.0,kg/TJ,198060.40800000002,kg +6859a8b6-e5de-3dea-a1c5-1ff3d8454508,SESCO,II.2.1,Neuquén,AR-Q,annual,2022,gas oil combustion consumption by railway transport,2.67288,TJ,CH4,3.9,kg/TJ,10.424232,kg +6859a8b6-e5de-3dea-a1c5-1ff3d8454508,SESCO,II.2.1,Neuquén,AR-Q,annual,2022,gas oil combustion consumption by railway transport,2.67288,TJ,N2O,3.9,kg/TJ,10.424232,kg +7386bedc-0c95-39f2-b334-2fc8e4362697,SESCO,II.2.1,Santa Fe,AR-S,annual,2022,gas oil combustion consumption by railway transport,48.36468,TJ,CO2,74100.0,kg/TJ,3583822.788,kg +b599c795-9318-3f4c-a524-5892055e5648,SESCO,II.2.1,Santa Fe,AR-S,annual,2022,gas oil combustion consumption by railway transport,48.36468,TJ,CH4,3.9,kg/TJ,188.622252,kg +b599c795-9318-3f4c-a524-5892055e5648,SESCO,II.2.1,Santa Fe,AR-S,annual,2022,gas oil combustion consumption by railway transport,48.36468,TJ,N2O,3.9,kg/TJ,188.622252,kg +1540a6f3-1328-34b6-a2bc-98dcbcf526d4,SESCO,II.2.1,Santiago del Estero,AR-G,annual,2022,gas oil combustion consumption by railway transport,4.3344,TJ,CO2,74100.0,kg/TJ,321179.04,kg +c61eb61c-8a5b-3e85-8a3b-a54b8825b9f1,SESCO,II.2.1,Santiago del Estero,AR-G,annual,2022,gas oil combustion consumption by railway transport,4.3344,TJ,CH4,3.9,kg/TJ,16.904159999999997,kg +c61eb61c-8a5b-3e85-8a3b-a54b8825b9f1,SESCO,II.2.1,Santiago del Estero,AR-G,annual,2022,gas oil combustion consumption by railway transport,4.3344,TJ,N2O,3.9,kg/TJ,16.904159999999997,kg +6aa0a0ab-e93c-31d7-9e98-88d0716c9e67,SESCO,II.2.1,Tucuman,AR-T,annual,2022,gas oil combustion consumption by railway transport,2.81736,TJ,CO2,74100.0,kg/TJ,208766.376,kg +d320e35d-e874-3171-9ad3-02dc6f37cc21,SESCO,II.2.1,Tucuman,AR-T,annual,2022,gas oil combustion consumption by railway transport,2.81736,TJ,CH4,3.9,kg/TJ,10.987703999999999,kg +d320e35d-e874-3171-9ad3-02dc6f37cc21,SESCO,II.2.1,Tucuman,AR-T,annual,2022,gas oil combustion consumption by railway transport,2.81736,TJ,N2O,3.9,kg/TJ,10.987703999999999,kg +0bbc4dbf-2810-3c8b-b954-88a1751e0006,SESCO,II.1.1,Buenos Aires,AR-B,annual,2022,gas oil combustion consumption by freight transport,1334.634,TJ,CO2,74100.0,kg/TJ,98896379.4,kg +0c56768c-ce92-3e05-9646-5f8a5c69eada,SESCO,II.1.1,Buenos Aires,AR-B,annual,2022,gas oil combustion consumption by freight transport,1334.634,TJ,CH4,3.9,kg/TJ,5205.0725999999995,kg +0c56768c-ce92-3e05-9646-5f8a5c69eada,SESCO,II.1.1,Buenos Aires,AR-B,annual,2022,gas oil combustion consumption by freight transport,1334.634,TJ,N2O,3.9,kg/TJ,5205.0725999999995,kg +e12bea3e-c860-31e3-82da-fda8d1bb1e0d,SESCO,II.1.1,Capital Federal,AR-C,annual,2022,gas oil combustion consumption by freight transport,1026.0608399999999,TJ,CO2,74100.0,kg/TJ,76031108.24399999,kg +24969856-7be6-3ab2-8dac-1d7643b69240,SESCO,II.1.1,Capital Federal,AR-C,annual,2022,gas oil combustion consumption by freight transport,1026.0608399999999,TJ,CH4,3.9,kg/TJ,4001.6372759999995,kg +24969856-7be6-3ab2-8dac-1d7643b69240,SESCO,II.1.1,Capital Federal,AR-C,annual,2022,gas oil combustion consumption by freight transport,1026.0608399999999,TJ,N2O,3.9,kg/TJ,4001.6372759999995,kg +b26c7a92-6a6a-3cf8-82fe-1e59dac5f58b,SESCO,II.1.1,Catamarca,AR-K,annual,2022,gas oil combustion consumption by freight transport,1.58928,TJ,CO2,74100.0,kg/TJ,117765.648,kg +909fb543-b106-37a9-b031-8f982acc87ba,SESCO,II.1.1,Catamarca,AR-K,annual,2022,gas oil combustion consumption by freight transport,1.58928,TJ,CH4,3.9,kg/TJ,6.198192,kg +909fb543-b106-37a9-b031-8f982acc87ba,SESCO,II.1.1,Catamarca,AR-K,annual,2022,gas oil combustion consumption by freight transport,1.58928,TJ,N2O,3.9,kg/TJ,6.198192,kg +9d44d99c-3cf5-39b0-a5b2-e7f4f46fbb1a,SESCO,II.1.1,Chaco,AR-H,annual,2022,gas oil combustion consumption by freight transport,20.48004,TJ,CO2,74100.0,kg/TJ,1517570.964,kg +804551ba-00cc-33ca-9972-4432356fa573,SESCO,II.1.1,Chaco,AR-H,annual,2022,gas oil combustion consumption by freight transport,20.48004,TJ,CH4,3.9,kg/TJ,79.87215599999999,kg +804551ba-00cc-33ca-9972-4432356fa573,SESCO,II.1.1,Chaco,AR-H,annual,2022,gas oil combustion consumption by freight transport,20.48004,TJ,N2O,3.9,kg/TJ,79.87215599999999,kg +f1e87c4a-7838-3f45-84d6-9e3b7060600c,SESCO,II.1.1,Chubut,AR-U,annual,2022,gas oil combustion consumption by freight transport,12.20856,TJ,CO2,74100.0,kg/TJ,904654.296,kg +88ef70f7-e83e-3449-9249-c94565512ae1,SESCO,II.1.1,Chubut,AR-U,annual,2022,gas oil combustion consumption by freight transport,12.20856,TJ,CH4,3.9,kg/TJ,47.613384,kg +88ef70f7-e83e-3449-9249-c94565512ae1,SESCO,II.1.1,Chubut,AR-U,annual,2022,gas oil combustion consumption by freight transport,12.20856,TJ,N2O,3.9,kg/TJ,47.613384,kg +62c24a64-00ea-3674-80f6-026272f8928e,SESCO,II.1.1,Corrientes,AR-W,annual,2022,gas oil combustion consumption by freight transport,43.84968,TJ,CO2,74100.0,kg/TJ,3249261.288,kg +969e43ce-4b38-38cc-93de-e627b03eea55,SESCO,II.1.1,Corrientes,AR-W,annual,2022,gas oil combustion consumption by freight transport,43.84968,TJ,CH4,3.9,kg/TJ,171.01375199999998,kg +969e43ce-4b38-38cc-93de-e627b03eea55,SESCO,II.1.1,Corrientes,AR-W,annual,2022,gas oil combustion consumption by freight transport,43.84968,TJ,N2O,3.9,kg/TJ,171.01375199999998,kg +82013829-ff62-366c-93ef-c7864a01abf3,SESCO,II.1.1,Córdoba,AR-X,annual,2022,gas oil combustion consumption by freight transport,228.60348,TJ,CO2,74100.0,kg/TJ,16939517.868,kg +1aad1dd9-b7d8-36dc-ae51-96329d34d09e,SESCO,II.1.1,Córdoba,AR-X,annual,2022,gas oil combustion consumption by freight transport,228.60348,TJ,CH4,3.9,kg/TJ,891.5535719999999,kg +1aad1dd9-b7d8-36dc-ae51-96329d34d09e,SESCO,II.1.1,Córdoba,AR-X,annual,2022,gas oil combustion consumption by freight transport,228.60348,TJ,N2O,3.9,kg/TJ,891.5535719999999,kg +b8941617-4139-3ce4-8e85-5d49c353753b,SESCO,II.1.1,Entre Rios,AR-E,annual,2022,gas oil combustion consumption by freight transport,51.32652,TJ,CO2,74100.0,kg/TJ,3803295.132,kg +c72361c1-9556-3c79-a261-846065c98a81,SESCO,II.1.1,Entre Rios,AR-E,annual,2022,gas oil combustion consumption by freight transport,51.32652,TJ,CH4,3.9,kg/TJ,200.173428,kg +c72361c1-9556-3c79-a261-846065c98a81,SESCO,II.1.1,Entre Rios,AR-E,annual,2022,gas oil combustion consumption by freight transport,51.32652,TJ,N2O,3.9,kg/TJ,200.173428,kg +fdda7b35-f9a1-3b32-820e-de060ced8689,SESCO,II.1.1,Formosa,AR-P,annual,2022,gas oil combustion consumption by freight transport,4.76784,TJ,CO2,74100.0,kg/TJ,353296.94399999996,kg +ac500c0d-27fc-392e-9b84-e0f9606f322a,SESCO,II.1.1,Formosa,AR-P,annual,2022,gas oil combustion consumption by freight transport,4.76784,TJ,CH4,3.9,kg/TJ,18.594575999999996,kg +ac500c0d-27fc-392e-9b84-e0f9606f322a,SESCO,II.1.1,Formosa,AR-P,annual,2022,gas oil combustion consumption by freight transport,4.76784,TJ,N2O,3.9,kg/TJ,18.594575999999996,kg +92277635-85db-3e9e-8393-f498b8432c5b,SESCO,II.1.1,Jujuy,AR-Y,annual,2022,gas oil combustion consumption by freight transport,1.69764,TJ,CO2,74100.0,kg/TJ,125795.124,kg +f671535d-4487-31dc-83a9-a01c84266cf8,SESCO,II.1.1,Jujuy,AR-Y,annual,2022,gas oil combustion consumption by freight transport,1.69764,TJ,CH4,3.9,kg/TJ,6.620796,kg +f671535d-4487-31dc-83a9-a01c84266cf8,SESCO,II.1.1,Jujuy,AR-Y,annual,2022,gas oil combustion consumption by freight transport,1.69764,TJ,N2O,3.9,kg/TJ,6.620796,kg +c90e8e00-77f8-33f0-ac93-73dd79b56ad1,SESCO,II.1.1,La Pampa,AR-L,annual,2022,gas oil combustion consumption by freight transport,10.22196,TJ,CO2,74100.0,kg/TJ,757447.2359999999,kg +8b6eca42-c74a-369d-b57d-9ff114b2c143,SESCO,II.1.1,La Pampa,AR-L,annual,2022,gas oil combustion consumption by freight transport,10.22196,TJ,CH4,3.9,kg/TJ,39.865643999999996,kg +8b6eca42-c74a-369d-b57d-9ff114b2c143,SESCO,II.1.1,La Pampa,AR-L,annual,2022,gas oil combustion consumption by freight transport,10.22196,TJ,N2O,3.9,kg/TJ,39.865643999999996,kg +5b1c0e3c-6cbe-3802-a162-004a3ef6f56a,SESCO,II.1.1,La Rioja,AR-F,annual,2022,gas oil combustion consumption by freight transport,0.50568,TJ,CO2,74100.0,kg/TJ,37470.888,kg +2a007deb-e99d-3e18-beca-6fdaa2603024,SESCO,II.1.1,La Rioja,AR-F,annual,2022,gas oil combustion consumption by freight transport,0.50568,TJ,CH4,3.9,kg/TJ,1.9721520000000001,kg +2a007deb-e99d-3e18-beca-6fdaa2603024,SESCO,II.1.1,La Rioja,AR-F,annual,2022,gas oil combustion consumption by freight transport,0.50568,TJ,N2O,3.9,kg/TJ,1.9721520000000001,kg +a2f64bc1-259f-3e19-9fcf-148824701bcc,SESCO,II.1.1,Mendoza,AR-M,annual,2022,gas oil combustion consumption by freight transport,135.30552,TJ,CO2,74100.0,kg/TJ,10026139.032,kg +563b27fc-9277-3020-8414-511402588775,SESCO,II.1.1,Mendoza,AR-M,annual,2022,gas oil combustion consumption by freight transport,135.30552,TJ,CH4,3.9,kg/TJ,527.691528,kg +563b27fc-9277-3020-8414-511402588775,SESCO,II.1.1,Mendoza,AR-M,annual,2022,gas oil combustion consumption by freight transport,135.30552,TJ,N2O,3.9,kg/TJ,527.691528,kg +18a3b701-ecde-31cc-a20c-f4da5a483efa,SESCO,II.1.1,Misiones,AR-N,annual,2022,gas oil combustion consumption by freight transport,135.01656,TJ,CO2,74100.0,kg/TJ,10004727.095999999,kg +eab3107e-25ab-39a6-97bd-4fce0f564a49,SESCO,II.1.1,Misiones,AR-N,annual,2022,gas oil combustion consumption by freight transport,135.01656,TJ,CH4,3.9,kg/TJ,526.564584,kg +eab3107e-25ab-39a6-97bd-4fce0f564a49,SESCO,II.1.1,Misiones,AR-N,annual,2022,gas oil combustion consumption by freight transport,135.01656,TJ,N2O,3.9,kg/TJ,526.564584,kg +df7a71ee-49da-3197-b54c-27576cc77386,SESCO,II.1.1,Neuquén,AR-Q,annual,2022,gas oil combustion consumption by freight transport,0.79464,TJ,CO2,74100.0,kg/TJ,58882.824,kg +6d92980b-7277-3523-bb77-070c1419c15c,SESCO,II.1.1,Neuquén,AR-Q,annual,2022,gas oil combustion consumption by freight transport,0.79464,TJ,CH4,3.9,kg/TJ,3.099096,kg +6d92980b-7277-3523-bb77-070c1419c15c,SESCO,II.1.1,Neuquén,AR-Q,annual,2022,gas oil combustion consumption by freight transport,0.79464,TJ,N2O,3.9,kg/TJ,3.099096,kg +8b4159aa-ba73-37a1-ab34-68a585f3602a,SESCO,II.1.1,Rio Negro,AR-R,annual,2022,gas oil combustion consumption by freight transport,142.09608,TJ,CO2,74100.0,kg/TJ,10529319.528,kg +8b245f74-61a1-326b-a070-a0c389bc6579,SESCO,II.1.1,Rio Negro,AR-R,annual,2022,gas oil combustion consumption by freight transport,142.09608,TJ,CH4,3.9,kg/TJ,554.174712,kg +8b245f74-61a1-326b-a070-a0c389bc6579,SESCO,II.1.1,Rio Negro,AR-R,annual,2022,gas oil combustion consumption by freight transport,142.09608,TJ,N2O,3.9,kg/TJ,554.174712,kg +164a76f6-f4f8-3103-b480-14a230928e65,SESCO,II.1.1,Salta,AR-A,annual,2022,gas oil combustion consumption by freight transport,195.30084,TJ,CO2,74100.0,kg/TJ,14471792.243999999,kg +ff3ab2c8-0fa6-345c-aff6-d935652b617c,SESCO,II.1.1,Salta,AR-A,annual,2022,gas oil combustion consumption by freight transport,195.30084,TJ,CH4,3.9,kg/TJ,761.673276,kg +ff3ab2c8-0fa6-345c-aff6-d935652b617c,SESCO,II.1.1,Salta,AR-A,annual,2022,gas oil combustion consumption by freight transport,195.30084,TJ,N2O,3.9,kg/TJ,761.673276,kg +38cb020b-07ef-3f23-ade8-3f3d101155e8,SESCO,II.1.1,San Juan,AR-J,annual,2022,gas oil combustion consumption by freight transport,4.5872399999999995,TJ,CO2,74100.0,kg/TJ,339914.48399999994,kg +950b6d8e-6557-3dba-bd30-1a7f7244bb27,SESCO,II.1.1,San Juan,AR-J,annual,2022,gas oil combustion consumption by freight transport,4.5872399999999995,TJ,CH4,3.9,kg/TJ,17.890235999999998,kg +950b6d8e-6557-3dba-bd30-1a7f7244bb27,SESCO,II.1.1,San Juan,AR-J,annual,2022,gas oil combustion consumption by freight transport,4.5872399999999995,TJ,N2O,3.9,kg/TJ,17.890235999999998,kg +c58b3deb-ca63-31b3-8e54-d53c6a39f478,SESCO,II.1.1,San Luis,AR-D,annual,2022,gas oil combustion consumption by freight transport,113.45291999999999,TJ,CO2,74100.0,kg/TJ,8406861.372,kg +b705259f-5ea5-3160-8897-07cca48f94fe,SESCO,II.1.1,San Luis,AR-D,annual,2022,gas oil combustion consumption by freight transport,113.45291999999999,TJ,CH4,3.9,kg/TJ,442.46638799999994,kg +b705259f-5ea5-3160-8897-07cca48f94fe,SESCO,II.1.1,San Luis,AR-D,annual,2022,gas oil combustion consumption by freight transport,113.45291999999999,TJ,N2O,3.9,kg/TJ,442.46638799999994,kg +c5799a37-d61d-32d5-b541-5ff55b00ea13,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2022,gas oil combustion consumption by freight transport,6.57384,TJ,CO2,74100.0,kg/TJ,487121.544,kg +280f28a2-7293-32ef-b6c8-00569cd294e6,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2022,gas oil combustion consumption by freight transport,6.57384,TJ,CH4,3.9,kg/TJ,25.637976,kg +280f28a2-7293-32ef-b6c8-00569cd294e6,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2022,gas oil combustion consumption by freight transport,6.57384,TJ,N2O,3.9,kg/TJ,25.637976,kg +8fa4314c-b844-3b29-9636-633b717ef860,SESCO,II.1.1,Santa Fe,AR-S,annual,2022,gas oil combustion consumption by freight transport,583.6992,TJ,CO2,74100.0,kg/TJ,43252110.72,kg +b4cab9db-ff38-3f80-9577-7ecd17fc0a9b,SESCO,II.1.1,Santa Fe,AR-S,annual,2022,gas oil combustion consumption by freight transport,583.6992,TJ,CH4,3.9,kg/TJ,2276.42688,kg +b4cab9db-ff38-3f80-9577-7ecd17fc0a9b,SESCO,II.1.1,Santa Fe,AR-S,annual,2022,gas oil combustion consumption by freight transport,583.6992,TJ,N2O,3.9,kg/TJ,2276.42688,kg +36d429fc-6cd3-3942-b516-4665f3d1bc3f,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2022,gas oil combustion consumption by freight transport,82.31748,TJ,CO2,74100.0,kg/TJ,6099725.268,kg +f26763f1-3919-3df6-964e-d54d960e29a9,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2022,gas oil combustion consumption by freight transport,82.31748,TJ,CH4,3.9,kg/TJ,321.03817200000003,kg +f26763f1-3919-3df6-964e-d54d960e29a9,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2022,gas oil combustion consumption by freight transport,82.31748,TJ,N2O,3.9,kg/TJ,321.03817200000003,kg +9cd0f848-8f8d-3be5-aaa8-757321a70cca,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2022,gas oil combustion consumption by freight transport,1.22808,TJ,CO2,74100.0,kg/TJ,91000.728,kg +9bd19cb2-f42d-348c-8b5b-4e83aa31d757,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2022,gas oil combustion consumption by freight transport,1.22808,TJ,CH4,3.9,kg/TJ,4.789512,kg +9bd19cb2-f42d-348c-8b5b-4e83aa31d757,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2022,gas oil combustion consumption by freight transport,1.22808,TJ,N2O,3.9,kg/TJ,4.789512,kg +c7b3346f-b905-3b39-977b-3523f1f7f0fc,SESCO,II.1.1,Tucuman,AR-T,annual,2022,gas oil combustion consumption by freight transport,50.24292,TJ,CO2,74100.0,kg/TJ,3723000.372,kg +8822c7bc-2f5f-33b0-8ec1-d1b696b1c1ef,SESCO,II.1.1,Tucuman,AR-T,annual,2022,gas oil combustion consumption by freight transport,50.24292,TJ,CH4,3.9,kg/TJ,195.947388,kg +8822c7bc-2f5f-33b0-8ec1-d1b696b1c1ef,SESCO,II.1.1,Tucuman,AR-T,annual,2022,gas oil combustion consumption by freight transport,50.24292,TJ,N2O,3.9,kg/TJ,195.947388,kg +e32ac433-3a84-3c14-a7c3-f3fcbb892386,SESCO,II.1.1,Buenos Aires,AR-B,annual,2022,gas oil combustion consumption by freight transport,392.2632,TJ,CO2,74100.0,kg/TJ,29066703.119999997,kg +03b8ddb5-a0b3-3b81-822c-7079dc94e0d1,SESCO,II.1.1,Buenos Aires,AR-B,annual,2022,gas oil combustion consumption by freight transport,392.2632,TJ,CH4,3.9,kg/TJ,1529.82648,kg +03b8ddb5-a0b3-3b81-822c-7079dc94e0d1,SESCO,II.1.1,Buenos Aires,AR-B,annual,2022,gas oil combustion consumption by freight transport,392.2632,TJ,N2O,3.9,kg/TJ,1529.82648,kg +34f8d635-2af8-33cb-9d9c-de6fafa93d6b,SESCO,II.1.1,Capital Federal,AR-C,annual,2022,gas oil combustion consumption by freight transport,242.97924,TJ,CO2,74100.0,kg/TJ,18004761.684,kg +2ed55869-b451-3ecd-9138-0d491ca19982,SESCO,II.1.1,Capital Federal,AR-C,annual,2022,gas oil combustion consumption by freight transport,242.97924,TJ,CH4,3.9,kg/TJ,947.619036,kg +2ed55869-b451-3ecd-9138-0d491ca19982,SESCO,II.1.1,Capital Federal,AR-C,annual,2022,gas oil combustion consumption by freight transport,242.97924,TJ,N2O,3.9,kg/TJ,947.619036,kg +e7715d4e-3cad-3ba4-bcd1-97e6b3d55b5d,SESCO,II.1.1,Catamarca,AR-K,annual,2022,gas oil combustion consumption by freight transport,0.07224,TJ,CO2,74100.0,kg/TJ,5352.9839999999995,kg +f578967a-25b0-3393-9bad-7347c26dd5bc,SESCO,II.1.1,Catamarca,AR-K,annual,2022,gas oil combustion consumption by freight transport,0.07224,TJ,CH4,3.9,kg/TJ,0.281736,kg +f578967a-25b0-3393-9bad-7347c26dd5bc,SESCO,II.1.1,Catamarca,AR-K,annual,2022,gas oil combustion consumption by freight transport,0.07224,TJ,N2O,3.9,kg/TJ,0.281736,kg +17c92d51-2c31-310f-a104-972b1a2b5587,SESCO,II.1.1,Chaco,AR-H,annual,2022,gas oil combustion consumption by freight transport,5.88756,TJ,CO2,74100.0,kg/TJ,436268.196,kg +7f1b6810-d9cf-3976-a652-1a7bfe06bdae,SESCO,II.1.1,Chaco,AR-H,annual,2022,gas oil combustion consumption by freight transport,5.88756,TJ,CH4,3.9,kg/TJ,22.961484,kg +7f1b6810-d9cf-3976-a652-1a7bfe06bdae,SESCO,II.1.1,Chaco,AR-H,annual,2022,gas oil combustion consumption by freight transport,5.88756,TJ,N2O,3.9,kg/TJ,22.961484,kg +413d030d-5c30-3b8c-b273-2120fb61d8b1,SESCO,II.1.1,Chubut,AR-U,annual,2022,gas oil combustion consumption by freight transport,2.3478,TJ,CO2,74100.0,kg/TJ,173971.97999999998,kg +edf8f763-1a46-3577-816d-5cb70ed18fc7,SESCO,II.1.1,Chubut,AR-U,annual,2022,gas oil combustion consumption by freight transport,2.3478,TJ,CH4,3.9,kg/TJ,9.156419999999999,kg +edf8f763-1a46-3577-816d-5cb70ed18fc7,SESCO,II.1.1,Chubut,AR-U,annual,2022,gas oil combustion consumption by freight transport,2.3478,TJ,N2O,3.9,kg/TJ,9.156419999999999,kg +00ffe32a-f1a1-3f2d-b4a0-06b3b53002a2,SESCO,II.1.1,Corrientes,AR-W,annual,2022,gas oil combustion consumption by freight transport,8.74104,TJ,CO2,74100.0,kg/TJ,647711.064,kg +d78c5ba1-9d46-3522-b168-4f377dcbfe08,SESCO,II.1.1,Corrientes,AR-W,annual,2022,gas oil combustion consumption by freight transport,8.74104,TJ,CH4,3.9,kg/TJ,34.090056,kg +d78c5ba1-9d46-3522-b168-4f377dcbfe08,SESCO,II.1.1,Corrientes,AR-W,annual,2022,gas oil combustion consumption by freight transport,8.74104,TJ,N2O,3.9,kg/TJ,34.090056,kg +d5474aaa-ef7d-317c-8fef-74110b72549d,SESCO,II.1.1,Córdoba,AR-X,annual,2022,gas oil combustion consumption by freight transport,22.64724,TJ,CO2,74100.0,kg/TJ,1678160.484,kg +be6d447e-687a-3265-bee0-edf97c98054e,SESCO,II.1.1,Córdoba,AR-X,annual,2022,gas oil combustion consumption by freight transport,22.64724,TJ,CH4,3.9,kg/TJ,88.324236,kg +be6d447e-687a-3265-bee0-edf97c98054e,SESCO,II.1.1,Córdoba,AR-X,annual,2022,gas oil combustion consumption by freight transport,22.64724,TJ,N2O,3.9,kg/TJ,88.324236,kg +0329033e-ef31-31af-9034-3eacf87f1c31,SESCO,II.1.1,Entre Rios,AR-E,annual,2022,gas oil combustion consumption by freight transport,5.9597999999999995,TJ,CO2,74100.0,kg/TJ,441621.18,kg +c34f43d5-7e83-321c-8ba8-7a449fc3bd6e,SESCO,II.1.1,Entre Rios,AR-E,annual,2022,gas oil combustion consumption by freight transport,5.9597999999999995,TJ,CH4,3.9,kg/TJ,23.243219999999997,kg +c34f43d5-7e83-321c-8ba8-7a449fc3bd6e,SESCO,II.1.1,Entre Rios,AR-E,annual,2022,gas oil combustion consumption by freight transport,5.9597999999999995,TJ,N2O,3.9,kg/TJ,23.243219999999997,kg +f0f98973-50ad-3baf-9989-f4390515350f,SESCO,II.1.1,Formosa,AR-P,annual,2022,gas oil combustion consumption by freight transport,1.0836,TJ,CO2,74100.0,kg/TJ,80294.76,kg +5356b9fb-06e9-3137-9e58-fbdaf4e4ffc7,SESCO,II.1.1,Formosa,AR-P,annual,2022,gas oil combustion consumption by freight transport,1.0836,TJ,CH4,3.9,kg/TJ,4.226039999999999,kg +5356b9fb-06e9-3137-9e58-fbdaf4e4ffc7,SESCO,II.1.1,Formosa,AR-P,annual,2022,gas oil combustion consumption by freight transport,1.0836,TJ,N2O,3.9,kg/TJ,4.226039999999999,kg +fcaf739a-dfa4-3954-8c9f-9a2df51659ee,SESCO,II.1.1,Jujuy,AR-Y,annual,2022,gas oil combustion consumption by freight transport,0.32508,TJ,CO2,74100.0,kg/TJ,24088.428,kg +c3ebb5ba-1d7c-329e-adff-4e6c88a16b28,SESCO,II.1.1,Jujuy,AR-Y,annual,2022,gas oil combustion consumption by freight transport,0.32508,TJ,CH4,3.9,kg/TJ,1.267812,kg +c3ebb5ba-1d7c-329e-adff-4e6c88a16b28,SESCO,II.1.1,Jujuy,AR-Y,annual,2022,gas oil combustion consumption by freight transport,0.32508,TJ,N2O,3.9,kg/TJ,1.267812,kg +5ba0f049-0653-35a9-8d48-7459ba7d4c3d,SESCO,II.1.1,La Pampa,AR-L,annual,2022,gas oil combustion consumption by freight transport,0.28896,TJ,CO2,74100.0,kg/TJ,21411.935999999998,kg +5dc698ce-7188-38fe-8b00-db5ec8b4c379,SESCO,II.1.1,La Pampa,AR-L,annual,2022,gas oil combustion consumption by freight transport,0.28896,TJ,CH4,3.9,kg/TJ,1.126944,kg +5dc698ce-7188-38fe-8b00-db5ec8b4c379,SESCO,II.1.1,La Pampa,AR-L,annual,2022,gas oil combustion consumption by freight transport,0.28896,TJ,N2O,3.9,kg/TJ,1.126944,kg +a129c8a3-1a9b-3922-af8a-13425ba8280b,SESCO,II.1.1,Mendoza,AR-M,annual,2022,gas oil combustion consumption by freight transport,9.89688,TJ,CO2,74100.0,kg/TJ,733358.808,kg +9a12e80f-a7d5-3961-b61d-08eaa52d6bae,SESCO,II.1.1,Mendoza,AR-M,annual,2022,gas oil combustion consumption by freight transport,9.89688,TJ,CH4,3.9,kg/TJ,38.597832,kg +9a12e80f-a7d5-3961-b61d-08eaa52d6bae,SESCO,II.1.1,Mendoza,AR-M,annual,2022,gas oil combustion consumption by freight transport,9.89688,TJ,N2O,3.9,kg/TJ,38.597832,kg +b908dc04-ab02-329c-8118-aedc81e0f36d,SESCO,II.1.1,Misiones,AR-N,annual,2022,gas oil combustion consumption by freight transport,3.90096,TJ,CO2,74100.0,kg/TJ,289061.136,kg +f92fa711-5312-38bb-8407-ad4a55d2eb72,SESCO,II.1.1,Misiones,AR-N,annual,2022,gas oil combustion consumption by freight transport,3.90096,TJ,CH4,3.9,kg/TJ,15.213744,kg +f92fa711-5312-38bb-8407-ad4a55d2eb72,SESCO,II.1.1,Misiones,AR-N,annual,2022,gas oil combustion consumption by freight transport,3.90096,TJ,N2O,3.9,kg/TJ,15.213744,kg +1e3b6236-f73d-325a-8379-482af95613db,SESCO,II.1.1,Neuquén,AR-Q,annual,2022,gas oil combustion consumption by freight transport,0.43344,TJ,CO2,74100.0,kg/TJ,32117.904,kg +55af3c4b-c8d3-3866-86b9-b20a9624d563,SESCO,II.1.1,Neuquén,AR-Q,annual,2022,gas oil combustion consumption by freight transport,0.43344,TJ,CH4,3.9,kg/TJ,1.690416,kg +55af3c4b-c8d3-3866-86b9-b20a9624d563,SESCO,II.1.1,Neuquén,AR-Q,annual,2022,gas oil combustion consumption by freight transport,0.43344,TJ,N2O,3.9,kg/TJ,1.690416,kg +f544c11e-ac81-3923-9d71-1c713f70543e,SESCO,II.1.1,Rio Negro,AR-R,annual,2022,gas oil combustion consumption by freight transport,27.52344,TJ,CO2,74100.0,kg/TJ,2039486.904,kg +a19b5354-a964-3d46-a028-f2aef56abbbb,SESCO,II.1.1,Rio Negro,AR-R,annual,2022,gas oil combustion consumption by freight transport,27.52344,TJ,CH4,3.9,kg/TJ,107.341416,kg +a19b5354-a964-3d46-a028-f2aef56abbbb,SESCO,II.1.1,Rio Negro,AR-R,annual,2022,gas oil combustion consumption by freight transport,27.52344,TJ,N2O,3.9,kg/TJ,107.341416,kg +dcb5295a-b55f-3469-9bba-8f90892a11e7,SESCO,II.1.1,Salta,AR-A,annual,2022,gas oil combustion consumption by freight transport,0.32508,TJ,CO2,74100.0,kg/TJ,24088.428,kg +bd8ab32d-d37f-393c-ac1b-21417de79e02,SESCO,II.1.1,Salta,AR-A,annual,2022,gas oil combustion consumption by freight transport,0.32508,TJ,CH4,3.9,kg/TJ,1.267812,kg +bd8ab32d-d37f-393c-ac1b-21417de79e02,SESCO,II.1.1,Salta,AR-A,annual,2022,gas oil combustion consumption by freight transport,0.32508,TJ,N2O,3.9,kg/TJ,1.267812,kg +b132ceb0-de21-39b2-8b53-66be0bffcc16,SESCO,II.1.1,San Juan,AR-J,annual,2022,gas oil combustion consumption by freight transport,1.30032,TJ,CO2,74100.0,kg/TJ,96353.712,kg +131b2c19-ac8b-3f4f-9b1a-14fb32d3c5e0,SESCO,II.1.1,San Juan,AR-J,annual,2022,gas oil combustion consumption by freight transport,1.30032,TJ,CH4,3.9,kg/TJ,5.071248,kg +131b2c19-ac8b-3f4f-9b1a-14fb32d3c5e0,SESCO,II.1.1,San Juan,AR-J,annual,2022,gas oil combustion consumption by freight transport,1.30032,TJ,N2O,3.9,kg/TJ,5.071248,kg +472c0f7f-5072-38cc-a38a-21e5438a8179,SESCO,II.1.1,San Luis,AR-D,annual,2022,gas oil combustion consumption by freight transport,2.709,TJ,CO2,74100.0,kg/TJ,200736.9,kg +6dd4241a-261d-36ae-932d-7d6b002ea3cf,SESCO,II.1.1,San Luis,AR-D,annual,2022,gas oil combustion consumption by freight transport,2.709,TJ,CH4,3.9,kg/TJ,10.5651,kg +6dd4241a-261d-36ae-932d-7d6b002ea3cf,SESCO,II.1.1,San Luis,AR-D,annual,2022,gas oil combustion consumption by freight transport,2.709,TJ,N2O,3.9,kg/TJ,10.5651,kg +3d248a3a-a0ca-396e-bbaf-e695d53f2c13,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2022,gas oil combustion consumption by freight transport,0.18059999999999998,TJ,CO2,74100.0,kg/TJ,13382.46,kg +306a3ed5-391a-3f84-b349-fda58778f506,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2022,gas oil combustion consumption by freight transport,0.18059999999999998,TJ,CH4,3.9,kg/TJ,0.70434,kg +306a3ed5-391a-3f84-b349-fda58778f506,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2022,gas oil combustion consumption by freight transport,0.18059999999999998,TJ,N2O,3.9,kg/TJ,0.70434,kg +61071f19-df8b-3f9d-9a8b-dd2ecc1c8550,SESCO,II.1.1,Santa Fe,AR-S,annual,2022,gas oil combustion consumption by freight transport,49.88172,TJ,CO2,74100.0,kg/TJ,3696235.452,kg +55ae2d01-19d5-3264-b3df-a9812c4e9703,SESCO,II.1.1,Santa Fe,AR-S,annual,2022,gas oil combustion consumption by freight transport,49.88172,TJ,CH4,3.9,kg/TJ,194.538708,kg +55ae2d01-19d5-3264-b3df-a9812c4e9703,SESCO,II.1.1,Santa Fe,AR-S,annual,2022,gas oil combustion consumption by freight transport,49.88172,TJ,N2O,3.9,kg/TJ,194.538708,kg +50079bee-0551-3a94-87d5-fbe6f2b6f5ec,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2022,gas oil combustion consumption by freight transport,2.23944,TJ,CO2,74100.0,kg/TJ,165942.50400000002,kg +b8d9302d-cdc3-303c-a7ce-5b03a1b5777a,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2022,gas oil combustion consumption by freight transport,2.23944,TJ,CH4,3.9,kg/TJ,8.733816000000001,kg +b8d9302d-cdc3-303c-a7ce-5b03a1b5777a,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2022,gas oil combustion consumption by freight transport,2.23944,TJ,N2O,3.9,kg/TJ,8.733816000000001,kg +017b65c1-bf04-3c88-834d-942f4a90268c,SESCO,II.1.1,Tucuman,AR-T,annual,2022,gas oil combustion consumption by freight transport,3.64812,TJ,CO2,74100.0,kg/TJ,270325.692,kg +2ad9b0f0-1934-334b-ae76-984ee7fa9cc6,SESCO,II.1.1,Tucuman,AR-T,annual,2022,gas oil combustion consumption by freight transport,3.64812,TJ,CH4,3.9,kg/TJ,14.227668,kg +2ad9b0f0-1934-334b-ae76-984ee7fa9cc6,SESCO,II.1.1,Tucuman,AR-T,annual,2022,gas oil combustion consumption by freight transport,3.64812,TJ,N2O,3.9,kg/TJ,14.227668,kg +232db9e7-52f3-33b3-b895-fa4c6c1d63ea,SESCO,II.1.1,Buenos Aires,AR-B,annual,2022,gas oil combustion consumption by public passenger transport,350.47236,TJ,CO2,74100.0,kg/TJ,25970001.876,kg +c4cac453-9787-303c-8576-cdeb260f15be,SESCO,II.1.1,Buenos Aires,AR-B,annual,2022,gas oil combustion consumption by public passenger transport,350.47236,TJ,CH4,3.9,kg/TJ,1366.8422039999998,kg +c4cac453-9787-303c-8576-cdeb260f15be,SESCO,II.1.1,Buenos Aires,AR-B,annual,2022,gas oil combustion consumption by public passenger transport,350.47236,TJ,N2O,3.9,kg/TJ,1366.8422039999998,kg +ec4a835f-6ccd-313b-a6f9-fca5d0776f3f,SESCO,II.1.1,Capital Federal,AR-C,annual,2022,gas oil combustion consumption by public passenger transport,312.69084,TJ,CO2,74100.0,kg/TJ,23170391.244,kg +3522f151-15c3-319e-a547-91ea13697b1b,SESCO,II.1.1,Capital Federal,AR-C,annual,2022,gas oil combustion consumption by public passenger transport,312.69084,TJ,CH4,3.9,kg/TJ,1219.494276,kg +3522f151-15c3-319e-a547-91ea13697b1b,SESCO,II.1.1,Capital Federal,AR-C,annual,2022,gas oil combustion consumption by public passenger transport,312.69084,TJ,N2O,3.9,kg/TJ,1219.494276,kg +10b75203-bc16-3f82-871c-4259c1c65cb4,SESCO,II.1.1,Chaco,AR-H,annual,2022,gas oil combustion consumption by public passenger transport,40.20156,TJ,CO2,74100.0,kg/TJ,2978935.596,kg +f4eee748-9261-3f64-ae73-8d89c4a483ab,SESCO,II.1.1,Chaco,AR-H,annual,2022,gas oil combustion consumption by public passenger transport,40.20156,TJ,CH4,3.9,kg/TJ,156.786084,kg +f4eee748-9261-3f64-ae73-8d89c4a483ab,SESCO,II.1.1,Chaco,AR-H,annual,2022,gas oil combustion consumption by public passenger transport,40.20156,TJ,N2O,3.9,kg/TJ,156.786084,kg +adba2fa7-a656-301a-9150-371c09a7c816,SESCO,II.1.1,Chubut,AR-U,annual,2022,gas oil combustion consumption by public passenger transport,6.6460799999999995,TJ,CO2,74100.0,kg/TJ,492474.528,kg +fe5997a0-42fe-3a9d-9e6a-88b3ce49a349,SESCO,II.1.1,Chubut,AR-U,annual,2022,gas oil combustion consumption by public passenger transport,6.6460799999999995,TJ,CH4,3.9,kg/TJ,25.919711999999997,kg +fe5997a0-42fe-3a9d-9e6a-88b3ce49a349,SESCO,II.1.1,Chubut,AR-U,annual,2022,gas oil combustion consumption by public passenger transport,6.6460799999999995,TJ,N2O,3.9,kg/TJ,25.919711999999997,kg +76f88d2e-e2ce-3c00-82e3-9ba287599ffc,SESCO,II.1.1,Corrientes,AR-W,annual,2022,gas oil combustion consumption by public passenger transport,0.21672,TJ,CO2,74100.0,kg/TJ,16058.952,kg +1e202f1c-53f4-3bea-a4fb-24d63ed207cb,SESCO,II.1.1,Corrientes,AR-W,annual,2022,gas oil combustion consumption by public passenger transport,0.21672,TJ,CH4,3.9,kg/TJ,0.845208,kg +1e202f1c-53f4-3bea-a4fb-24d63ed207cb,SESCO,II.1.1,Corrientes,AR-W,annual,2022,gas oil combustion consumption by public passenger transport,0.21672,TJ,N2O,3.9,kg/TJ,0.845208,kg +b43a53aa-9876-3d74-852f-b866414a8787,SESCO,II.1.1,Córdoba,AR-X,annual,2022,gas oil combustion consumption by public passenger transport,7.65744,TJ,CO2,74100.0,kg/TJ,567416.304,kg +0d3dcc22-9710-3cac-98e1-a3c3558f0f0b,SESCO,II.1.1,Córdoba,AR-X,annual,2022,gas oil combustion consumption by public passenger transport,7.65744,TJ,CH4,3.9,kg/TJ,29.864016,kg +0d3dcc22-9710-3cac-98e1-a3c3558f0f0b,SESCO,II.1.1,Córdoba,AR-X,annual,2022,gas oil combustion consumption by public passenger transport,7.65744,TJ,N2O,3.9,kg/TJ,29.864016,kg +8c68ad38-eee3-3928-98aa-5bbe40f0f007,SESCO,II.1.1,Entre Rios,AR-E,annual,2022,gas oil combustion consumption by public passenger transport,43.77744,TJ,CO2,74100.0,kg/TJ,3243908.304,kg +27d4a9d1-8669-37f3-bd07-373b87df86da,SESCO,II.1.1,Entre Rios,AR-E,annual,2022,gas oil combustion consumption by public passenger transport,43.77744,TJ,CH4,3.9,kg/TJ,170.732016,kg +27d4a9d1-8669-37f3-bd07-373b87df86da,SESCO,II.1.1,Entre Rios,AR-E,annual,2022,gas oil combustion consumption by public passenger transport,43.77744,TJ,N2O,3.9,kg/TJ,170.732016,kg +f531ebcc-6e02-3e3e-bc40-1f9cfb816a70,SESCO,II.1.1,La Pampa,AR-L,annual,2022,gas oil combustion consumption by public passenger transport,2.5284,TJ,CO2,74100.0,kg/TJ,187354.44,kg +ef6586e3-30d6-3ca1-a09b-3f7764a8e3ba,SESCO,II.1.1,La Pampa,AR-L,annual,2022,gas oil combustion consumption by public passenger transport,2.5284,TJ,CH4,3.9,kg/TJ,9.860759999999999,kg +ef6586e3-30d6-3ca1-a09b-3f7764a8e3ba,SESCO,II.1.1,La Pampa,AR-L,annual,2022,gas oil combustion consumption by public passenger transport,2.5284,TJ,N2O,3.9,kg/TJ,9.860759999999999,kg +c0479b22-9bd5-38f5-ae28-d4248d0c0f6f,SESCO,II.1.1,Mendoza,AR-M,annual,2022,gas oil combustion consumption by public passenger transport,8.52432,TJ,CO2,74100.0,kg/TJ,631652.112,kg +95218887-12d2-3404-8c28-3457ef21508d,SESCO,II.1.1,Mendoza,AR-M,annual,2022,gas oil combustion consumption by public passenger transport,8.52432,TJ,CH4,3.9,kg/TJ,33.244848,kg +95218887-12d2-3404-8c28-3457ef21508d,SESCO,II.1.1,Mendoza,AR-M,annual,2022,gas oil combustion consumption by public passenger transport,8.52432,TJ,N2O,3.9,kg/TJ,33.244848,kg +79ff5299-8acd-3737-9fe7-8bc655ebece9,SESCO,II.1.1,Misiones,AR-N,annual,2022,gas oil combustion consumption by public passenger transport,11.70288,TJ,CO2,74100.0,kg/TJ,867183.408,kg +e13b6c51-bf6d-38f9-90f0-f8b03a89278e,SESCO,II.1.1,Misiones,AR-N,annual,2022,gas oil combustion consumption by public passenger transport,11.70288,TJ,CH4,3.9,kg/TJ,45.641232,kg +e13b6c51-bf6d-38f9-90f0-f8b03a89278e,SESCO,II.1.1,Misiones,AR-N,annual,2022,gas oil combustion consumption by public passenger transport,11.70288,TJ,N2O,3.9,kg/TJ,45.641232,kg +72f79e4f-cc41-3c96-90ab-f636da9fd693,SESCO,II.1.1,Neuquén,AR-Q,annual,2022,gas oil combustion consumption by public passenger transport,0.03612,TJ,CO2,74100.0,kg/TJ,2676.4919999999997,kg +a2c1117f-32e8-359f-bc8f-87f84ddd7b5b,SESCO,II.1.1,Neuquén,AR-Q,annual,2022,gas oil combustion consumption by public passenger transport,0.03612,TJ,CH4,3.9,kg/TJ,0.140868,kg +a2c1117f-32e8-359f-bc8f-87f84ddd7b5b,SESCO,II.1.1,Neuquén,AR-Q,annual,2022,gas oil combustion consumption by public passenger transport,0.03612,TJ,N2O,3.9,kg/TJ,0.140868,kg +3a20721e-07cd-3ff0-bdfb-b5ddbe425874,SESCO,II.1.1,Rio Negro,AR-R,annual,2022,gas oil combustion consumption by public passenger transport,4.00932,TJ,CO2,74100.0,kg/TJ,297090.61199999996,kg +7d934bf3-dfd8-36b6-92c5-c2f7f9def8f7,SESCO,II.1.1,Rio Negro,AR-R,annual,2022,gas oil combustion consumption by public passenger transport,4.00932,TJ,CH4,3.9,kg/TJ,15.636347999999998,kg +7d934bf3-dfd8-36b6-92c5-c2f7f9def8f7,SESCO,II.1.1,Rio Negro,AR-R,annual,2022,gas oil combustion consumption by public passenger transport,4.00932,TJ,N2O,3.9,kg/TJ,15.636347999999998,kg +3ffe332e-50be-3a00-8343-1c88cafa7f7f,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2022,gas oil combustion consumption by public passenger transport,0.07224,TJ,CO2,74100.0,kg/TJ,5352.9839999999995,kg +d5efa76d-1092-3ffe-a3b1-ecb8bf98463d,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2022,gas oil combustion consumption by public passenger transport,0.07224,TJ,CH4,3.9,kg/TJ,0.281736,kg +d5efa76d-1092-3ffe-a3b1-ecb8bf98463d,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2022,gas oil combustion consumption by public passenger transport,0.07224,TJ,N2O,3.9,kg/TJ,0.281736,kg +ea96c010-db26-34d5-8127-1279bf53c403,SESCO,II.1.1,Santa Fe,AR-S,annual,2022,gas oil combustion consumption by public passenger transport,314.31624,TJ,CO2,74100.0,kg/TJ,23290833.384,kg +42dd3465-f39a-30a1-bb72-fd6862fc0a4d,SESCO,II.1.1,Santa Fe,AR-S,annual,2022,gas oil combustion consumption by public passenger transport,314.31624,TJ,CH4,3.9,kg/TJ,1225.833336,kg +42dd3465-f39a-30a1-bb72-fd6862fc0a4d,SESCO,II.1.1,Santa Fe,AR-S,annual,2022,gas oil combustion consumption by public passenger transport,314.31624,TJ,N2O,3.9,kg/TJ,1225.833336,kg +02b10c80-f015-39cb-aa5e-0fa5fb8fab17,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2022,gas oil combustion consumption by public passenger transport,0.07224,TJ,CO2,74100.0,kg/TJ,5352.9839999999995,kg +e5567771-8320-33a5-9f80-456ff2ef92f1,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2022,gas oil combustion consumption by public passenger transport,0.07224,TJ,CH4,3.9,kg/TJ,0.281736,kg +e5567771-8320-33a5-9f80-456ff2ef92f1,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2022,gas oil combustion consumption by public passenger transport,0.07224,TJ,N2O,3.9,kg/TJ,0.281736,kg +19b4d3c6-b28c-3f39-8775-701d0d244064,SESCO,II.1.1,Tucuman,AR-T,annual,2022,gas oil combustion consumption by public passenger transport,42.29652,TJ,CO2,74100.0,kg/TJ,3134172.132,kg +13288685-7ef2-3487-b2ad-c382e4a1eaea,SESCO,II.1.1,Tucuman,AR-T,annual,2022,gas oil combustion consumption by public passenger transport,42.29652,TJ,CH4,3.9,kg/TJ,164.956428,kg +13288685-7ef2-3487-b2ad-c382e4a1eaea,SESCO,II.1.1,Tucuman,AR-T,annual,2022,gas oil combustion consumption by public passenger transport,42.29652,TJ,N2O,3.9,kg/TJ,164.956428,kg +f276248c-1cf4-366b-b760-9558ec6eeaf4,SESCO,II.1.1,Buenos Aires,AR-B,annual,2022,gas oil combustion consumption by public passenger transport,570.29868,TJ,CO2,74100.0,kg/TJ,42259132.188,kg +c106b4f1-1508-3b4f-a1a6-d5d3ba658c47,SESCO,II.1.1,Buenos Aires,AR-B,annual,2022,gas oil combustion consumption by public passenger transport,570.29868,TJ,CH4,3.9,kg/TJ,2224.164852,kg +c106b4f1-1508-3b4f-a1a6-d5d3ba658c47,SESCO,II.1.1,Buenos Aires,AR-B,annual,2022,gas oil combustion consumption by public passenger transport,570.29868,TJ,N2O,3.9,kg/TJ,2224.164852,kg +2faf48ab-44b5-3016-82f9-42537bbc0150,SESCO,II.1.1,Capital Federal,AR-C,annual,2022,gas oil combustion consumption by public passenger transport,73.75704,TJ,CO2,74100.0,kg/TJ,5465396.664,kg +175b77df-d12d-3b2e-a6e5-0c5b6db66cd5,SESCO,II.1.1,Capital Federal,AR-C,annual,2022,gas oil combustion consumption by public passenger transport,73.75704,TJ,CH4,3.9,kg/TJ,287.65245600000003,kg +175b77df-d12d-3b2e-a6e5-0c5b6db66cd5,SESCO,II.1.1,Capital Federal,AR-C,annual,2022,gas oil combustion consumption by public passenger transport,73.75704,TJ,N2O,3.9,kg/TJ,287.65245600000003,kg +ea6544e9-3324-3421-8e1c-8331375dfc2f,SESCO,II.1.1,Chaco,AR-H,annual,2022,gas oil combustion consumption by public passenger transport,0.28896,TJ,CO2,74100.0,kg/TJ,21411.935999999998,kg +004e9435-b770-35ff-b69a-669eb91a2ff9,SESCO,II.1.1,Chaco,AR-H,annual,2022,gas oil combustion consumption by public passenger transport,0.28896,TJ,CH4,3.9,kg/TJ,1.126944,kg +004e9435-b770-35ff-b69a-669eb91a2ff9,SESCO,II.1.1,Chaco,AR-H,annual,2022,gas oil combustion consumption by public passenger transport,0.28896,TJ,N2O,3.9,kg/TJ,1.126944,kg +976ee592-3d31-3a0e-b4eb-88256b97e860,SESCO,II.1.1,Chubut,AR-U,annual,2022,gas oil combustion consumption by public passenger transport,2.09496,TJ,CO2,74100.0,kg/TJ,155236.536,kg +1b34120a-1bc8-3c2c-8036-6955f41c856d,SESCO,II.1.1,Chubut,AR-U,annual,2022,gas oil combustion consumption by public passenger transport,2.09496,TJ,CH4,3.9,kg/TJ,8.170344,kg +1b34120a-1bc8-3c2c-8036-6955f41c856d,SESCO,II.1.1,Chubut,AR-U,annual,2022,gas oil combustion consumption by public passenger transport,2.09496,TJ,N2O,3.9,kg/TJ,8.170344,kg +1d213990-1928-3e61-bab6-4438771aa0c5,SESCO,II.1.1,Corrientes,AR-W,annual,2022,gas oil combustion consumption by public passenger transport,0.28896,TJ,CO2,74100.0,kg/TJ,21411.935999999998,kg +448c3818-ab73-3189-a817-1656d5e760dd,SESCO,II.1.1,Corrientes,AR-W,annual,2022,gas oil combustion consumption by public passenger transport,0.28896,TJ,CH4,3.9,kg/TJ,1.126944,kg +448c3818-ab73-3189-a817-1656d5e760dd,SESCO,II.1.1,Corrientes,AR-W,annual,2022,gas oil combustion consumption by public passenger transport,0.28896,TJ,N2O,3.9,kg/TJ,1.126944,kg +9721e705-4d27-35f6-a5d5-d8fa5fe46523,SESCO,II.1.1,Córdoba,AR-X,annual,2022,gas oil combustion consumption by public passenger transport,13.21992,TJ,CO2,74100.0,kg/TJ,979596.072,kg +aeae4db0-58cf-3596-b7c6-ccac3a8a4bf1,SESCO,II.1.1,Córdoba,AR-X,annual,2022,gas oil combustion consumption by public passenger transport,13.21992,TJ,CH4,3.9,kg/TJ,51.557688,kg +aeae4db0-58cf-3596-b7c6-ccac3a8a4bf1,SESCO,II.1.1,Córdoba,AR-X,annual,2022,gas oil combustion consumption by public passenger transport,13.21992,TJ,N2O,3.9,kg/TJ,51.557688,kg +ce369f6c-d425-3608-a7c6-4b85d86f6f62,SESCO,II.1.1,Entre Rios,AR-E,annual,2022,gas oil combustion consumption by public passenger transport,4.44276,TJ,CO2,74100.0,kg/TJ,329208.516,kg +dacd5c93-3394-3811-bbd5-80e923948dce,SESCO,II.1.1,Entre Rios,AR-E,annual,2022,gas oil combustion consumption by public passenger transport,4.44276,TJ,CH4,3.9,kg/TJ,17.326763999999997,kg +dacd5c93-3394-3811-bbd5-80e923948dce,SESCO,II.1.1,Entre Rios,AR-E,annual,2022,gas oil combustion consumption by public passenger transport,4.44276,TJ,N2O,3.9,kg/TJ,17.326763999999997,kg +e6ac4cb8-bce5-3a14-8a2d-cf992ff9c5cf,SESCO,II.1.1,Formosa,AR-P,annual,2022,gas oil combustion consumption by public passenger transport,4.6956,TJ,CO2,74100.0,kg/TJ,347943.95999999996,kg +4f116e71-bacc-3c40-8355-5f18c3a91679,SESCO,II.1.1,Formosa,AR-P,annual,2022,gas oil combustion consumption by public passenger transport,4.6956,TJ,CH4,3.9,kg/TJ,18.312839999999998,kg +4f116e71-bacc-3c40-8355-5f18c3a91679,SESCO,II.1.1,Formosa,AR-P,annual,2022,gas oil combustion consumption by public passenger transport,4.6956,TJ,N2O,3.9,kg/TJ,18.312839999999998,kg +5fa51960-36e1-3a0d-bce5-0dd2a833e98e,SESCO,II.1.1,La Pampa,AR-L,annual,2022,gas oil combustion consumption by public passenger transport,0.03612,TJ,CO2,74100.0,kg/TJ,2676.4919999999997,kg +9bffa227-caae-3d79-9202-c83612263ab2,SESCO,II.1.1,La Pampa,AR-L,annual,2022,gas oil combustion consumption by public passenger transport,0.03612,TJ,CH4,3.9,kg/TJ,0.140868,kg +9bffa227-caae-3d79-9202-c83612263ab2,SESCO,II.1.1,La Pampa,AR-L,annual,2022,gas oil combustion consumption by public passenger transport,0.03612,TJ,N2O,3.9,kg/TJ,0.140868,kg +7ba62d63-934c-35b6-bb62-b75ba989e98e,SESCO,II.1.1,Mendoza,AR-M,annual,2022,gas oil combustion consumption by public passenger transport,0.8307599999999999,TJ,CO2,74100.0,kg/TJ,61559.316,kg +6fb51a12-1af4-3ff4-b2ba-8a94720a8a64,SESCO,II.1.1,Mendoza,AR-M,annual,2022,gas oil combustion consumption by public passenger transport,0.8307599999999999,TJ,CH4,3.9,kg/TJ,3.2399639999999996,kg +6fb51a12-1af4-3ff4-b2ba-8a94720a8a64,SESCO,II.1.1,Mendoza,AR-M,annual,2022,gas oil combustion consumption by public passenger transport,0.8307599999999999,TJ,N2O,3.9,kg/TJ,3.2399639999999996,kg +26712a07-f775-3efc-bcbf-af0c69415ce0,SESCO,II.1.1,Misiones,AR-N,annual,2022,gas oil combustion consumption by public passenger transport,0.10836,TJ,CO2,74100.0,kg/TJ,8029.476,kg +dcd3983d-6d10-3d48-a23e-adfef4ae73c8,SESCO,II.1.1,Misiones,AR-N,annual,2022,gas oil combustion consumption by public passenger transport,0.10836,TJ,CH4,3.9,kg/TJ,0.422604,kg +dcd3983d-6d10-3d48-a23e-adfef4ae73c8,SESCO,II.1.1,Misiones,AR-N,annual,2022,gas oil combustion consumption by public passenger transport,0.10836,TJ,N2O,3.9,kg/TJ,0.422604,kg +899f7759-fd27-37f5-9760-9cc121b1fa1a,SESCO,II.1.1,Neuquén,AR-Q,annual,2022,gas oil combustion consumption by public passenger transport,3.21468,TJ,CO2,74100.0,kg/TJ,238207.788,kg +069f678d-6727-3f05-a055-8d6183276770,SESCO,II.1.1,Neuquén,AR-Q,annual,2022,gas oil combustion consumption by public passenger transport,3.21468,TJ,CH4,3.9,kg/TJ,12.537252,kg +069f678d-6727-3f05-a055-8d6183276770,SESCO,II.1.1,Neuquén,AR-Q,annual,2022,gas oil combustion consumption by public passenger transport,3.21468,TJ,N2O,3.9,kg/TJ,12.537252,kg +289f0de4-1a19-39a0-bcee-707b0edca1f0,SESCO,II.1.1,Rio Negro,AR-R,annual,2022,gas oil combustion consumption by public passenger transport,7.69356,TJ,CO2,74100.0,kg/TJ,570092.796,kg +553a9dd4-3b2c-368c-acd0-ef29801f4ea5,SESCO,II.1.1,Rio Negro,AR-R,annual,2022,gas oil combustion consumption by public passenger transport,7.69356,TJ,CH4,3.9,kg/TJ,30.004883999999997,kg +553a9dd4-3b2c-368c-acd0-ef29801f4ea5,SESCO,II.1.1,Rio Negro,AR-R,annual,2022,gas oil combustion consumption by public passenger transport,7.69356,TJ,N2O,3.9,kg/TJ,30.004883999999997,kg +81d68113-d191-36d2-959d-8c44c6334729,SESCO,II.1.1,Salta,AR-A,annual,2022,gas oil combustion consumption by public passenger transport,0.10836,TJ,CO2,74100.0,kg/TJ,8029.476,kg +53f60864-b496-3d8b-93da-a1aa1518f340,SESCO,II.1.1,Salta,AR-A,annual,2022,gas oil combustion consumption by public passenger transport,0.10836,TJ,CH4,3.9,kg/TJ,0.422604,kg +53f60864-b496-3d8b-93da-a1aa1518f340,SESCO,II.1.1,Salta,AR-A,annual,2022,gas oil combustion consumption by public passenger transport,0.10836,TJ,N2O,3.9,kg/TJ,0.422604,kg +7b03e744-d08f-35db-aeec-7a8a80920574,SESCO,II.1.1,Santa Fe,AR-S,annual,2022,gas oil combustion consumption by public passenger transport,223.944,TJ,CO2,74100.0,kg/TJ,16594250.399999999,kg +42bea29a-e52b-37b5-b758-6c4cbf55fbf6,SESCO,II.1.1,Santa Fe,AR-S,annual,2022,gas oil combustion consumption by public passenger transport,223.944,TJ,CH4,3.9,kg/TJ,873.3815999999999,kg +42bea29a-e52b-37b5-b758-6c4cbf55fbf6,SESCO,II.1.1,Santa Fe,AR-S,annual,2022,gas oil combustion consumption by public passenger transport,223.944,TJ,N2O,3.9,kg/TJ,873.3815999999999,kg +00280202-632d-3114-a05f-c74e11008ac5,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2022,gas oil combustion consumption by public passenger transport,0.43344,TJ,CO2,74100.0,kg/TJ,32117.904,kg +7ccda793-ff1d-39b4-9535-2c1f2b48ca15,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2022,gas oil combustion consumption by public passenger transport,0.43344,TJ,CH4,3.9,kg/TJ,1.690416,kg +7ccda793-ff1d-39b4-9535-2c1f2b48ca15,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2022,gas oil combustion consumption by public passenger transport,0.43344,TJ,N2O,3.9,kg/TJ,1.690416,kg +4342d217-5966-3509-9295-612f90685c55,SESCO,II.1.1,Tucuman,AR-T,annual,2022,gas oil combustion consumption by public passenger transport,0.07224,TJ,CO2,74100.0,kg/TJ,5352.9839999999995,kg +72b62858-a0a0-30c3-a79c-b52525c6f9e7,SESCO,II.1.1,Tucuman,AR-T,annual,2022,gas oil combustion consumption by public passenger transport,0.07224,TJ,CH4,3.9,kg/TJ,0.281736,kg +72b62858-a0a0-30c3-a79c-b52525c6f9e7,SESCO,II.1.1,Tucuman,AR-T,annual,2022,gas oil combustion consumption by public passenger transport,0.07224,TJ,N2O,3.9,kg/TJ,0.281736,kg +df30403d-18db-3036-b04c-860323a3440a,SESCO,II.1.1,Catamarca,AR-K,annual,2022,gas oil combustion consumption by to the public,32.2183176,TJ,CO2,74100.0,kg/TJ,2387377.33416,kg +acab5328-26c3-3320-ac0f-b8fc691a2a75,SESCO,II.1.1,Catamarca,AR-K,annual,2022,gas oil combustion consumption by to the public,32.2183176,TJ,CH4,3.9,kg/TJ,125.65143864,kg +acab5328-26c3-3320-ac0f-b8fc691a2a75,SESCO,II.1.1,Catamarca,AR-K,annual,2022,gas oil combustion consumption by to the public,32.2183176,TJ,N2O,3.9,kg/TJ,125.65143864,kg +6ff34a76-e177-32dd-8699-1bfae8756038,SESCO,II.1.1,Chaco,AR-H,annual,2022,gas oil combustion consumption by to the public,48.868554,TJ,CO2,74100.0,kg/TJ,3621159.8514,kg +e0f954b7-5caf-3926-9156-16940e5104ab,SESCO,II.1.1,Chaco,AR-H,annual,2022,gas oil combustion consumption by to the public,48.868554,TJ,CH4,3.9,kg/TJ,190.5873606,kg +e0f954b7-5caf-3926-9156-16940e5104ab,SESCO,II.1.1,Chaco,AR-H,annual,2022,gas oil combustion consumption by to the public,48.868554,TJ,N2O,3.9,kg/TJ,190.5873606,kg +769ca5bc-58be-3610-b2b1-1a6b41691a29,SESCO,II.1.1,Jujuy,AR-Y,annual,2022,gas oil combustion consumption by to the public,446.4121368,TJ,CO2,74100.0,kg/TJ,33079139.33688,kg +eb8283ca-31ef-3dff-b812-04ec793be5db,SESCO,II.1.1,Jujuy,AR-Y,annual,2022,gas oil combustion consumption by to the public,446.4121368,TJ,CH4,3.9,kg/TJ,1741.00733352,kg +eb8283ca-31ef-3dff-b812-04ec793be5db,SESCO,II.1.1,Jujuy,AR-Y,annual,2022,gas oil combustion consumption by to the public,446.4121368,TJ,N2O,3.9,kg/TJ,1741.00733352,kg +aa5f4916-723e-35e7-b84a-c1498dd69010,SESCO,II.1.1,La Rioja,AR-F,annual,2022,gas oil combustion consumption by to the public,75.3098388,TJ,CO2,74100.0,kg/TJ,5580459.055079999,kg +e50864bd-f111-388b-a9f6-7b7566042547,SESCO,II.1.1,La Rioja,AR-F,annual,2022,gas oil combustion consumption by to the public,75.3098388,TJ,CH4,3.9,kg/TJ,293.70837131999997,kg +e50864bd-f111-388b-a9f6-7b7566042547,SESCO,II.1.1,La Rioja,AR-F,annual,2022,gas oil combustion consumption by to the public,75.3098388,TJ,N2O,3.9,kg/TJ,293.70837131999997,kg +a095c648-e481-30d8-9f98-6e3ee3d94713,SESCO,II.1.1,Salta,AR-A,annual,2022,gas oil combustion consumption by to the public,1424.4254303999999,TJ,CO2,74100.0,kg/TJ,105549924.39264,kg +59bed956-c2a7-336b-ac19-cf96f02f1e91,SESCO,II.1.1,Salta,AR-A,annual,2022,gas oil combustion consumption by to the public,1424.4254303999999,TJ,CH4,3.9,kg/TJ,5555.25917856,kg +59bed956-c2a7-336b-ac19-cf96f02f1e91,SESCO,II.1.1,Salta,AR-A,annual,2022,gas oil combustion consumption by to the public,1424.4254303999999,TJ,N2O,3.9,kg/TJ,5555.25917856,kg +6533769c-0a62-3019-9f36-91b3b4f67ed0,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2022,gas oil combustion consumption by to the public,169.5086316,TJ,CO2,74100.0,kg/TJ,12560589.60156,kg +abf4516d-0a2a-31e3-8522-03e14160ea63,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2022,gas oil combustion consumption by to the public,169.5086316,TJ,CH4,3.9,kg/TJ,661.08366324,kg +abf4516d-0a2a-31e3-8522-03e14160ea63,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2022,gas oil combustion consumption by to the public,169.5086316,TJ,N2O,3.9,kg/TJ,661.08366324,kg +08b81f9a-db93-39db-bf47-db4977ea2dad,SESCO,II.1.1,Tucuman,AR-T,annual,2022,gas oil combustion consumption by to the public,1394.4537768,TJ,CO2,74100.0,kg/TJ,103329024.86088,kg +69a98059-13f0-3283-b10d-0f5551080e6c,SESCO,II.1.1,Tucuman,AR-T,annual,2022,gas oil combustion consumption by to the public,1394.4537768,TJ,CH4,3.9,kg/TJ,5438.36972952,kg +69a98059-13f0-3283-b10d-0f5551080e6c,SESCO,II.1.1,Tucuman,AR-T,annual,2022,gas oil combustion consumption by to the public,1394.4537768,TJ,N2O,3.9,kg/TJ,5438.36972952,kg +4ead1a07-b3c5-30fb-b8f0-1b051030f53f,SESCO,II.1.1,Catamarca,AR-K,annual,2022,gas oil combustion consumption by to the public,11.270162399999998,TJ,CO2,74100.0,kg/TJ,835119.0338399999,kg +680d165e-231c-3745-9209-d8fe0a6e30ac,SESCO,II.1.1,Catamarca,AR-K,annual,2022,gas oil combustion consumption by to the public,11.270162399999998,TJ,CH4,3.9,kg/TJ,43.95363335999999,kg +680d165e-231c-3745-9209-d8fe0a6e30ac,SESCO,II.1.1,Catamarca,AR-K,annual,2022,gas oil combustion consumption by to the public,11.270162399999998,TJ,N2O,3.9,kg/TJ,43.95363335999999,kg +8d7d2b7d-3ffe-3dc2-b7bd-bc1aca53123e,SESCO,II.1.1,Chaco,AR-H,annual,2022,gas oil combustion consumption by to the public,7.4418036,TJ,CO2,74100.0,kg/TJ,551437.64676,kg +b585a296-f613-3736-98ec-27b8257688fd,SESCO,II.1.1,Chaco,AR-H,annual,2022,gas oil combustion consumption by to the public,7.4418036,TJ,CH4,3.9,kg/TJ,29.02303404,kg +b585a296-f613-3736-98ec-27b8257688fd,SESCO,II.1.1,Chaco,AR-H,annual,2022,gas oil combustion consumption by to the public,7.4418036,TJ,N2O,3.9,kg/TJ,29.02303404,kg +2004b993-9b26-3de9-b986-426b939a4228,SESCO,II.1.1,Jujuy,AR-Y,annual,2022,gas oil combustion consumption by to the public,129.9702348,TJ,CO2,74100.0,kg/TJ,9630794.39868,kg +2cf91912-acb3-3bdc-9c3a-f2d5cd1e8852,SESCO,II.1.1,Jujuy,AR-Y,annual,2022,gas oil combustion consumption by to the public,129.9702348,TJ,CH4,3.9,kg/TJ,506.88391571999995,kg +2cf91912-acb3-3bdc-9c3a-f2d5cd1e8852,SESCO,II.1.1,Jujuy,AR-Y,annual,2022,gas oil combustion consumption by to the public,129.9702348,TJ,N2O,3.9,kg/TJ,506.88391571999995,kg +aada4a29-3ff6-34ce-9dc6-212ae14ce9d7,SESCO,II.1.1,La Rioja,AR-F,annual,2022,gas oil combustion consumption by to the public,127.581258,TJ,CO2,74100.0,kg/TJ,9453771.2178,kg +cb612c84-770d-39c1-b7b5-8a657225310b,SESCO,II.1.1,La Rioja,AR-F,annual,2022,gas oil combustion consumption by to the public,127.581258,TJ,CH4,3.9,kg/TJ,497.5669062,kg +cb612c84-770d-39c1-b7b5-8a657225310b,SESCO,II.1.1,La Rioja,AR-F,annual,2022,gas oil combustion consumption by to the public,127.581258,TJ,N2O,3.9,kg/TJ,497.5669062,kg +340dc305-bb8a-3f9c-9c50-42343301c52d,SESCO,II.1.1,Salta,AR-A,annual,2022,gas oil combustion consumption by to the public,297.0711072,TJ,CO2,74100.0,kg/TJ,22012969.043519996,kg +c6f99c53-4f4e-3405-bc74-ae7576158d99,SESCO,II.1.1,Salta,AR-A,annual,2022,gas oil combustion consumption by to the public,297.0711072,TJ,CH4,3.9,kg/TJ,1158.57731808,kg +c6f99c53-4f4e-3405-bc74-ae7576158d99,SESCO,II.1.1,Salta,AR-A,annual,2022,gas oil combustion consumption by to the public,297.0711072,TJ,N2O,3.9,kg/TJ,1158.57731808,kg +555ed7ad-f880-3e7f-8c96-c23af45f47e1,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2022,gas oil combustion consumption by to the public,77.06599320000001,TJ,CO2,74100.0,kg/TJ,5710590.096120001,kg +20acceb9-96c4-31fa-b4c3-077648a7eb19,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2022,gas oil combustion consumption by to the public,77.06599320000001,TJ,CH4,3.9,kg/TJ,300.55737348,kg +20acceb9-96c4-31fa-b4c3-077648a7eb19,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2022,gas oil combustion consumption by to the public,77.06599320000001,TJ,N2O,3.9,kg/TJ,300.55737348,kg +95c4621a-61a1-3e92-acf0-c96a6d182423,SESCO,II.1.1,Tucuman,AR-T,annual,2022,gas oil combustion consumption by to the public,362.5971216,TJ,CO2,74100.0,kg/TJ,26868446.710559998,kg +a3ead0eb-2b69-3036-81bd-78e58ca4cfd6,SESCO,II.1.1,Tucuman,AR-T,annual,2022,gas oil combustion consumption by to the public,362.5971216,TJ,CH4,3.9,kg/TJ,1414.12877424,kg +a3ead0eb-2b69-3036-81bd-78e58ca4cfd6,SESCO,II.1.1,Tucuman,AR-T,annual,2022,gas oil combustion consumption by to the public,362.5971216,TJ,N2O,3.9,kg/TJ,1414.12877424,kg +021a75a7-9ed0-33b8-8b64-8dfff9fad6ee,SESCO,I.3.1,Chaco,AR-H,annual,2022,gasoline combustion consumption by petrochemical industries,11.090062,TJ,CO2,69300.0,kg/TJ,768541.2966,kg +d63aba2d-123c-3d2a-8fd5-3e8c6a1a0b63,SESCO,I.3.1,Chaco,AR-H,annual,2022,gasoline combustion consumption by petrochemical industries,11.090062,TJ,CH4,33.0,kg/TJ,365.972046,kg +c74305bf-3b64-3fd2-b832-96d4659d3be0,SESCO,I.3.1,Chaco,AR-H,annual,2022,gasoline combustion consumption by petrochemical industries,11.090062,TJ,N2O,3.2,kg/TJ,35.4881984,kg +f75dac07-2a77-35c4-9c9e-1fd6011e9c17,SESCO,II.5.1,Entre Rios,AR-E,annual,2022,gas oil combustion consumption by agriculture machines,13.03932,TJ,CO2,74100.0,kg/TJ,966213.612,kg +930fe0ce-59c7-3f9e-875b-10e0022aa7ed,SESCO,II.5.1,Entre Rios,AR-E,annual,2022,gas oil combustion consumption by agriculture machines,13.03932,TJ,CH4,3.9,kg/TJ,50.853348,kg +930fe0ce-59c7-3f9e-875b-10e0022aa7ed,SESCO,II.5.1,Entre Rios,AR-E,annual,2022,gas oil combustion consumption by agriculture machines,13.03932,TJ,N2O,3.9,kg/TJ,50.853348,kg +b12f0701-b21d-3cb1-8e80-6e9eca8d8bb1,SESCO,II.5.1,Entre Rios,AR-E,annual,2022,gas oil combustion consumption by agriculture machines,0.5418,TJ,CO2,74100.0,kg/TJ,40147.38,kg +3b0354ae-4bba-3861-b80f-180450fbdb1d,SESCO,II.5.1,Entre Rios,AR-E,annual,2022,gas oil combustion consumption by agriculture machines,0.5418,TJ,CH4,3.9,kg/TJ,2.1130199999999997,kg +3b0354ae-4bba-3861-b80f-180450fbdb1d,SESCO,II.5.1,Entre Rios,AR-E,annual,2022,gas oil combustion consumption by agriculture machines,0.5418,TJ,N2O,3.9,kg/TJ,2.1130199999999997,kg +596bcc06-53bc-32d2-8064-32b5be493125,SESCO,II.5.1,Buenos Aires,AR-B,annual,2022,gas oil combustion consumption by agriculture machines,444.67332,TJ,CO2,74100.0,kg/TJ,32950293.012,kg +1c0a9b89-58eb-36f9-ab5e-8eb0c9d7225e,SESCO,II.5.1,Buenos Aires,AR-B,annual,2022,gas oil combustion consumption by agriculture machines,444.67332,TJ,CH4,3.9,kg/TJ,1734.225948,kg +1c0a9b89-58eb-36f9-ab5e-8eb0c9d7225e,SESCO,II.5.1,Buenos Aires,AR-B,annual,2022,gas oil combustion consumption by agriculture machines,444.67332,TJ,N2O,3.9,kg/TJ,1734.225948,kg +78e30614-bdb0-3e05-ab7f-8303583921d7,SESCO,II.5.1,Corrientes,AR-W,annual,2022,gas oil combustion consumption by agriculture machines,51.1098,TJ,CO2,74100.0,kg/TJ,3787236.18,kg +f3d409dd-afd5-3b4e-9c08-cd4f717730c8,SESCO,II.5.1,Corrientes,AR-W,annual,2022,gas oil combustion consumption by agriculture machines,51.1098,TJ,CH4,3.9,kg/TJ,199.32822,kg +f3d409dd-afd5-3b4e-9c08-cd4f717730c8,SESCO,II.5.1,Corrientes,AR-W,annual,2022,gas oil combustion consumption by agriculture machines,51.1098,TJ,N2O,3.9,kg/TJ,199.32822,kg +8b74e209-4284-3fba-96b4-b4c711ed6976,SESCO,II.5.1,Córdoba,AR-X,annual,2022,gas oil combustion consumption by agriculture machines,16.68744,TJ,CO2,74100.0,kg/TJ,1236539.304,kg +f0a739b1-1656-3602-98ac-c5cdbed185e3,SESCO,II.5.1,Córdoba,AR-X,annual,2022,gas oil combustion consumption by agriculture machines,16.68744,TJ,CH4,3.9,kg/TJ,65.08101599999999,kg +f0a739b1-1656-3602-98ac-c5cdbed185e3,SESCO,II.5.1,Córdoba,AR-X,annual,2022,gas oil combustion consumption by agriculture machines,16.68744,TJ,N2O,3.9,kg/TJ,65.08101599999999,kg +a90028da-68b0-3289-8da6-2abb5b5401c7,SESCO,II.5.1,Entre Rios,AR-E,annual,2022,gas oil combustion consumption by agriculture machines,113.45291999999999,TJ,CO2,74100.0,kg/TJ,8406861.372,kg +407bb597-647f-312d-809e-61ffd39cfc1a,SESCO,II.5.1,Entre Rios,AR-E,annual,2022,gas oil combustion consumption by agriculture machines,113.45291999999999,TJ,CH4,3.9,kg/TJ,442.46638799999994,kg +407bb597-647f-312d-809e-61ffd39cfc1a,SESCO,II.5.1,Entre Rios,AR-E,annual,2022,gas oil combustion consumption by agriculture machines,113.45291999999999,TJ,N2O,3.9,kg/TJ,442.46638799999994,kg +c515af30-e29d-3f0b-b82b-db74638cf3d5,SESCO,II.5.1,La Pampa,AR-L,annual,2022,gas oil combustion consumption by agriculture machines,24.63384,TJ,CO2,74100.0,kg/TJ,1825367.544,kg +d2df41d6-d67d-38e8-9fa5-71c1854fd02e,SESCO,II.5.1,La Pampa,AR-L,annual,2022,gas oil combustion consumption by agriculture machines,24.63384,TJ,CH4,3.9,kg/TJ,96.07197599999999,kg +d2df41d6-d67d-38e8-9fa5-71c1854fd02e,SESCO,II.5.1,La Pampa,AR-L,annual,2022,gas oil combustion consumption by agriculture machines,24.63384,TJ,N2O,3.9,kg/TJ,96.07197599999999,kg +857e2b36-5aba-3b9d-ace2-da84b3eb3fcc,SESCO,II.5.1,Santa Fe,AR-S,annual,2022,gas oil combustion consumption by agriculture machines,61.656839999999995,TJ,CO2,74100.0,kg/TJ,4568771.844,kg +8bfb07a4-7b4e-3b39-8823-c806d11aa4d3,SESCO,II.5.1,Santa Fe,AR-S,annual,2022,gas oil combustion consumption by agriculture machines,61.656839999999995,TJ,CH4,3.9,kg/TJ,240.46167599999998,kg +8bfb07a4-7b4e-3b39-8823-c806d11aa4d3,SESCO,II.5.1,Santa Fe,AR-S,annual,2022,gas oil combustion consumption by agriculture machines,61.656839999999995,TJ,N2O,3.9,kg/TJ,240.46167599999998,kg +8ee9aef6-c95b-3eea-ab77-b88617e86dc1,SESCO,II.5.1,Tucuman,AR-T,annual,2022,gas oil combustion consumption by agriculture machines,23.2974,TJ,CO2,74100.0,kg/TJ,1726337.34,kg +412b7863-28b9-391c-87a8-cd982d61b797,SESCO,II.5.1,Tucuman,AR-T,annual,2022,gas oil combustion consumption by agriculture machines,23.2974,TJ,CH4,3.9,kg/TJ,90.85986,kg +412b7863-28b9-391c-87a8-cd982d61b797,SESCO,II.5.1,Tucuman,AR-T,annual,2022,gas oil combustion consumption by agriculture machines,23.2974,TJ,N2O,3.9,kg/TJ,90.85986,kg +55c440d1-c500-3fc6-95db-cb73df4da5b2,SESCO,II.5.1,Buenos Aires,AR-B,annual,2022,gas oil combustion consumption by agriculture machines,29.22108,TJ,CO2,74100.0,kg/TJ,2165282.028,kg +f23928cf-cbd0-3abe-9dcc-2e87b566084d,SESCO,II.5.1,Buenos Aires,AR-B,annual,2022,gas oil combustion consumption by agriculture machines,29.22108,TJ,CH4,3.9,kg/TJ,113.962212,kg +f23928cf-cbd0-3abe-9dcc-2e87b566084d,SESCO,II.5.1,Buenos Aires,AR-B,annual,2022,gas oil combustion consumption by agriculture machines,29.22108,TJ,N2O,3.9,kg/TJ,113.962212,kg +bd9af4e7-cbf0-3fcb-976a-5ef6518612fa,SESCO,II.5.1,Entre Rios,AR-E,annual,2022,gas oil combustion consumption by agriculture machines,38.14272,TJ,CO2,74100.0,kg/TJ,2826375.5519999997,kg +86875c61-696b-36fd-80db-1117f6ed2ba4,SESCO,II.5.1,Entre Rios,AR-E,annual,2022,gas oil combustion consumption by agriculture machines,38.14272,TJ,CH4,3.9,kg/TJ,148.75660799999997,kg +86875c61-696b-36fd-80db-1117f6ed2ba4,SESCO,II.5.1,Entre Rios,AR-E,annual,2022,gas oil combustion consumption by agriculture machines,38.14272,TJ,N2O,3.9,kg/TJ,148.75660799999997,kg +a38019cc-9958-3679-9e72-81b844443b35,SESCO,II.5.1,La Pampa,AR-L,annual,2022,gas oil combustion consumption by agriculture machines,8.488199999999999,TJ,CO2,74100.0,kg/TJ,628975.6199999999,kg +bd70a64c-91e9-390b-821d-a84a1c3c93b9,SESCO,II.5.1,La Pampa,AR-L,annual,2022,gas oil combustion consumption by agriculture machines,8.488199999999999,TJ,CH4,3.9,kg/TJ,33.10397999999999,kg +bd70a64c-91e9-390b-821d-a84a1c3c93b9,SESCO,II.5.1,La Pampa,AR-L,annual,2022,gas oil combustion consumption by agriculture machines,8.488199999999999,TJ,N2O,3.9,kg/TJ,33.10397999999999,kg +d1b906fc-705a-30f5-9b48-65141034d39a,SESCO,II.5.1,Santa Fe,AR-S,annual,2022,gas oil combustion consumption by agriculture machines,2.85348,TJ,CO2,74100.0,kg/TJ,211442.868,kg +d2ca74ac-26b2-3c71-a4d7-4ae4a0886623,SESCO,II.5.1,Santa Fe,AR-S,annual,2022,gas oil combustion consumption by agriculture machines,2.85348,TJ,CH4,3.9,kg/TJ,11.128571999999998,kg +d2ca74ac-26b2-3c71-a4d7-4ae4a0886623,SESCO,II.5.1,Santa Fe,AR-S,annual,2022,gas oil combustion consumption by agriculture machines,2.85348,TJ,N2O,3.9,kg/TJ,11.128571999999998,kg +5c98ed37-7849-3abe-bef3-e1a8f02504ff,SESCO,II.5.1,Tucuman,AR-T,annual,2022,gas oil combustion consumption by agriculture machines,0.93912,TJ,CO2,74100.0,kg/TJ,69588.792,kg +00d6a62e-c0a3-35de-993f-e8d3c929c459,SESCO,II.5.1,Tucuman,AR-T,annual,2022,gas oil combustion consumption by agriculture machines,0.93912,TJ,CH4,3.9,kg/TJ,3.662568,kg +00d6a62e-c0a3-35de-993f-e8d3c929c459,SESCO,II.5.1,Tucuman,AR-T,annual,2022,gas oil combustion consumption by agriculture machines,0.93912,TJ,N2O,3.9,kg/TJ,3.662568,kg +80dfa898-c5d1-30d9-9ffa-3625855a1503,SESCO,II.1.1,Buenos Aires,AR-B,annual,2022,gas oil combustion consumption by to the public,15598.99992,TJ,CO2,74100.0,kg/TJ,1155885894.072,kg +bb9a4da1-1259-370d-98fb-ab5f995df1cc,SESCO,II.1.1,Buenos Aires,AR-B,annual,2022,gas oil combustion consumption by to the public,15598.99992,TJ,CH4,3.9,kg/TJ,60836.099688,kg +bb9a4da1-1259-370d-98fb-ab5f995df1cc,SESCO,II.1.1,Buenos Aires,AR-B,annual,2022,gas oil combustion consumption by to the public,15598.99992,TJ,N2O,3.9,kg/TJ,60836.099688,kg +2e4b0340-36d5-3189-8e28-9a021cad8965,SESCO,II.1.1,Capital Federal,AR-C,annual,2022,gas oil combustion consumption by to the public,1264.0916399999999,TJ,CO2,74100.0,kg/TJ,93669190.52399999,kg +a8899e3a-ba9b-3985-a1d0-6843174608ed,SESCO,II.1.1,Capital Federal,AR-C,annual,2022,gas oil combustion consumption by to the public,1264.0916399999999,TJ,CH4,3.9,kg/TJ,4929.957396,kg +a8899e3a-ba9b-3985-a1d0-6843174608ed,SESCO,II.1.1,Capital Federal,AR-C,annual,2022,gas oil combustion consumption by to the public,1264.0916399999999,TJ,N2O,3.9,kg/TJ,4929.957396,kg +be1fd2f9-b57a-3d7d-87f6-a185d2387f70,SESCO,II.1.1,Catamarca,AR-K,annual,2022,gas oil combustion consumption by to the public,34.4946,TJ,CO2,74100.0,kg/TJ,2556049.86,kg +727c0f34-4c67-3441-bbe2-bb7ed162b210,SESCO,II.1.1,Catamarca,AR-K,annual,2022,gas oil combustion consumption by to the public,34.4946,TJ,CH4,3.9,kg/TJ,134.52893999999998,kg +727c0f34-4c67-3441-bbe2-bb7ed162b210,SESCO,II.1.1,Catamarca,AR-K,annual,2022,gas oil combustion consumption by to the public,34.4946,TJ,N2O,3.9,kg/TJ,134.52893999999998,kg +23ee2f9b-9f1a-3e94-8702-231208fe9920,SESCO,II.1.1,Chaco,AR-H,annual,2022,gas oil combustion consumption by to the public,1934.62332,TJ,CO2,74100.0,kg/TJ,143355588.012,kg +ce870287-94a5-36e9-84f8-f934e9007f07,SESCO,II.1.1,Chaco,AR-H,annual,2022,gas oil combustion consumption by to the public,1934.62332,TJ,CH4,3.9,kg/TJ,7545.030948,kg +ce870287-94a5-36e9-84f8-f934e9007f07,SESCO,II.1.1,Chaco,AR-H,annual,2022,gas oil combustion consumption by to the public,1934.62332,TJ,N2O,3.9,kg/TJ,7545.030948,kg +fa0b2ca5-d95b-38fb-9950-d819a4d3213c,SESCO,II.1.1,Corrientes,AR-W,annual,2022,gas oil combustion consumption by to the public,1283.74092,TJ,CO2,74100.0,kg/TJ,95125202.17199999,kg +9f20b470-8a36-3889-90a8-52b4e3f08560,SESCO,II.1.1,Corrientes,AR-W,annual,2022,gas oil combustion consumption by to the public,1283.74092,TJ,CH4,3.9,kg/TJ,5006.589588,kg +9f20b470-8a36-3889-90a8-52b4e3f08560,SESCO,II.1.1,Corrientes,AR-W,annual,2022,gas oil combustion consumption by to the public,1283.74092,TJ,N2O,3.9,kg/TJ,5006.589588,kg +4da9ef94-dc50-3bd8-b50b-ffcfe26cfdb6,SESCO,II.1.1,Córdoba,AR-X,annual,2022,gas oil combustion consumption by to the public,8851.67556,TJ,CO2,74100.0,kg/TJ,655909158.9959999,kg +c9cc34f1-57b7-3a48-b7fa-776dffdc43dd,SESCO,II.1.1,Córdoba,AR-X,annual,2022,gas oil combustion consumption by to the public,8851.67556,TJ,CH4,3.9,kg/TJ,34521.534684,kg +c9cc34f1-57b7-3a48-b7fa-776dffdc43dd,SESCO,II.1.1,Córdoba,AR-X,annual,2022,gas oil combustion consumption by to the public,8851.67556,TJ,N2O,3.9,kg/TJ,34521.534684,kg +6dcf3f89-9098-3737-a4b2-a1632cc9540c,SESCO,II.1.1,Entre Rios,AR-E,annual,2022,gas oil combustion consumption by to the public,1950.01044,TJ,CO2,74100.0,kg/TJ,144495773.604,kg +94f7083d-1eef-3006-a884-3e57ab32fa7f,SESCO,II.1.1,Entre Rios,AR-E,annual,2022,gas oil combustion consumption by to the public,1950.01044,TJ,CH4,3.9,kg/TJ,7605.0407159999995,kg +94f7083d-1eef-3006-a884-3e57ab32fa7f,SESCO,II.1.1,Entre Rios,AR-E,annual,2022,gas oil combustion consumption by to the public,1950.01044,TJ,N2O,3.9,kg/TJ,7605.0407159999995,kg +42b01575-7dcf-34ae-b425-e574184ee1b3,SESCO,II.1.1,Formosa,AR-P,annual,2022,gas oil combustion consumption by to the public,193.92828,TJ,CO2,74100.0,kg/TJ,14370085.548,kg +fc89a5aa-eb7f-3849-a7eb-b66419a3c27f,SESCO,II.1.1,Formosa,AR-P,annual,2022,gas oil combustion consumption by to the public,193.92828,TJ,CH4,3.9,kg/TJ,756.320292,kg +fc89a5aa-eb7f-3849-a7eb-b66419a3c27f,SESCO,II.1.1,Formosa,AR-P,annual,2022,gas oil combustion consumption by to the public,193.92828,TJ,N2O,3.9,kg/TJ,756.320292,kg +034f70aa-7869-38fb-b3e7-75522fe9ecfd,SESCO,II.1.1,Jujuy,AR-Y,annual,2022,gas oil combustion consumption by to the public,293.25828,TJ,CO2,74100.0,kg/TJ,21730438.548,kg +e36e3ac6-e86f-3f3f-9738-9c0f8a86b0be,SESCO,II.1.1,Jujuy,AR-Y,annual,2022,gas oil combustion consumption by to the public,293.25828,TJ,CH4,3.9,kg/TJ,1143.707292,kg +e36e3ac6-e86f-3f3f-9738-9c0f8a86b0be,SESCO,II.1.1,Jujuy,AR-Y,annual,2022,gas oil combustion consumption by to the public,293.25828,TJ,N2O,3.9,kg/TJ,1143.707292,kg +a0681d38-68b9-36d6-8991-8209ec6f042e,SESCO,II.1.1,La Pampa,AR-L,annual,2022,gas oil combustion consumption by to the public,957.10776,TJ,CO2,74100.0,kg/TJ,70921685.016,kg +f7ec8850-a924-3057-928e-4e704859844e,SESCO,II.1.1,La Pampa,AR-L,annual,2022,gas oil combustion consumption by to the public,957.10776,TJ,CH4,3.9,kg/TJ,3732.720264,kg +f7ec8850-a924-3057-928e-4e704859844e,SESCO,II.1.1,La Pampa,AR-L,annual,2022,gas oil combustion consumption by to the public,957.10776,TJ,N2O,3.9,kg/TJ,3732.720264,kg +a31a5102-c5f8-3c38-b73a-5b1263f8826d,SESCO,II.1.1,La Rioja,AR-F,annual,2022,gas oil combustion consumption by to the public,208.52076,TJ,CO2,74100.0,kg/TJ,15451388.316,kg +8138523d-9da1-3fba-9152-d10d4379ec38,SESCO,II.1.1,La Rioja,AR-F,annual,2022,gas oil combustion consumption by to the public,208.52076,TJ,CH4,3.9,kg/TJ,813.230964,kg +8138523d-9da1-3fba-9152-d10d4379ec38,SESCO,II.1.1,La Rioja,AR-F,annual,2022,gas oil combustion consumption by to the public,208.52076,TJ,N2O,3.9,kg/TJ,813.230964,kg +f1be0363-4672-35e0-9855-7761cc8b4769,SESCO,II.1.1,Mendoza,AR-M,annual,2022,gas oil combustion consumption by to the public,1973.2356,TJ,CO2,74100.0,kg/TJ,146216757.96,kg +926af3c5-21cd-3fbe-a6b4-33c79f0f31cb,SESCO,II.1.1,Mendoza,AR-M,annual,2022,gas oil combustion consumption by to the public,1973.2356,TJ,CH4,3.9,kg/TJ,7695.61884,kg +926af3c5-21cd-3fbe-a6b4-33c79f0f31cb,SESCO,II.1.1,Mendoza,AR-M,annual,2022,gas oil combustion consumption by to the public,1973.2356,TJ,N2O,3.9,kg/TJ,7695.61884,kg +93d9d662-ade6-367c-9f12-c583b603a38f,SESCO,II.1.1,Misiones,AR-N,annual,2022,gas oil combustion consumption by to the public,1463.54628,TJ,CO2,74100.0,kg/TJ,108448779.348,kg +ed723524-1b19-3e26-b587-0d753d39e243,SESCO,II.1.1,Misiones,AR-N,annual,2022,gas oil combustion consumption by to the public,1463.54628,TJ,CH4,3.9,kg/TJ,5707.830492,kg +ed723524-1b19-3e26-b587-0d753d39e243,SESCO,II.1.1,Misiones,AR-N,annual,2022,gas oil combustion consumption by to the public,1463.54628,TJ,N2O,3.9,kg/TJ,5707.830492,kg +bca70175-9782-398d-9e8d-37609694d517,SESCO,II.1.1,Neuquén,AR-Q,annual,2022,gas oil combustion consumption by to the public,756.20832,TJ,CO2,74100.0,kg/TJ,56035036.511999995,kg +7b49a9eb-d643-358e-b84a-fc99f62fae25,SESCO,II.1.1,Neuquén,AR-Q,annual,2022,gas oil combustion consumption by to the public,756.20832,TJ,CH4,3.9,kg/TJ,2949.2124479999998,kg +7b49a9eb-d643-358e-b84a-fc99f62fae25,SESCO,II.1.1,Neuquén,AR-Q,annual,2022,gas oil combustion consumption by to the public,756.20832,TJ,N2O,3.9,kg/TJ,2949.2124479999998,kg +53f36cee-8ab8-39e4-b5a8-ad9cea5756ea,SESCO,II.1.1,Rio Negro,AR-R,annual,2022,gas oil combustion consumption by to the public,350.14727999999997,TJ,CO2,74100.0,kg/TJ,25945913.448,kg +b9a2e037-2dac-36eb-86a7-a56475fc2683,SESCO,II.1.1,Rio Negro,AR-R,annual,2022,gas oil combustion consumption by to the public,350.14727999999997,TJ,CH4,3.9,kg/TJ,1365.5743919999998,kg +b9a2e037-2dac-36eb-86a7-a56475fc2683,SESCO,II.1.1,Rio Negro,AR-R,annual,2022,gas oil combustion consumption by to the public,350.14727999999997,TJ,N2O,3.9,kg/TJ,1365.5743919999998,kg +7eb551bf-080f-3b12-81af-ae7145fa9f16,SESCO,II.1.1,Salta,AR-A,annual,2022,gas oil combustion consumption by to the public,164.27376,TJ,CO2,74100.0,kg/TJ,12172685.616,kg +e00fa765-f7dd-3ea6-8241-575ad02a9e60,SESCO,II.1.1,Salta,AR-A,annual,2022,gas oil combustion consumption by to the public,164.27376,TJ,CH4,3.9,kg/TJ,640.6676640000001,kg +e00fa765-f7dd-3ea6-8241-575ad02a9e60,SESCO,II.1.1,Salta,AR-A,annual,2022,gas oil combustion consumption by to the public,164.27376,TJ,N2O,3.9,kg/TJ,640.6676640000001,kg +63ae8716-23b2-3aa2-af48-7fd74e1cd249,SESCO,II.1.1,San Juan,AR-J,annual,2022,gas oil combustion consumption by to the public,491.95439999999996,TJ,CO2,74100.0,kg/TJ,36453821.04,kg +0d05db2e-d9d7-39a0-8244-71f9a76959c3,SESCO,II.1.1,San Juan,AR-J,annual,2022,gas oil combustion consumption by to the public,491.95439999999996,TJ,CH4,3.9,kg/TJ,1918.62216,kg +0d05db2e-d9d7-39a0-8244-71f9a76959c3,SESCO,II.1.1,San Juan,AR-J,annual,2022,gas oil combustion consumption by to the public,491.95439999999996,TJ,N2O,3.9,kg/TJ,1918.62216,kg +a192aea8-6bfc-3545-861d-8848c0460f1a,SESCO,II.1.1,San Luis,AR-D,annual,2022,gas oil combustion consumption by to the public,450.38027999999997,TJ,CO2,74100.0,kg/TJ,33373178.748,kg +34454bd6-d06a-3f80-9271-8fe9821f948c,SESCO,II.1.1,San Luis,AR-D,annual,2022,gas oil combustion consumption by to the public,450.38027999999997,TJ,CH4,3.9,kg/TJ,1756.483092,kg +34454bd6-d06a-3f80-9271-8fe9821f948c,SESCO,II.1.1,San Luis,AR-D,annual,2022,gas oil combustion consumption by to the public,450.38027999999997,TJ,N2O,3.9,kg/TJ,1756.483092,kg +e775c677-8b69-3d66-9f90-d276877f0dcc,SESCO,II.1.1,Santa Fe,AR-S,annual,2022,gas oil combustion consumption by to the public,5994.2946,TJ,CO2,74100.0,kg/TJ,444177229.86,kg +cc2e42e7-495f-38d3-857c-9107ec3bab9d,SESCO,II.1.1,Santa Fe,AR-S,annual,2022,gas oil combustion consumption by to the public,5994.2946,TJ,CH4,3.9,kg/TJ,23377.74894,kg +cc2e42e7-495f-38d3-857c-9107ec3bab9d,SESCO,II.1.1,Santa Fe,AR-S,annual,2022,gas oil combustion consumption by to the public,5994.2946,TJ,N2O,3.9,kg/TJ,23377.74894,kg +3d67ddb3-21cc-310c-84a7-48cbf12563d6,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2022,gas oil combustion consumption by to the public,339.41964,TJ,CO2,74100.0,kg/TJ,25150995.324,kg +f2b55f46-5447-3660-a5cf-4fda20a9caa4,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2022,gas oil combustion consumption by to the public,339.41964,TJ,CH4,3.9,kg/TJ,1323.736596,kg +f2b55f46-5447-3660-a5cf-4fda20a9caa4,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2022,gas oil combustion consumption by to the public,339.41964,TJ,N2O,3.9,kg/TJ,1323.736596,kg +dacde9b5-9fb8-324d-877e-ee553a1944a6,SESCO,II.1.1,Tucuman,AR-T,annual,2022,gas oil combustion consumption by to the public,1306.20756,TJ,CO2,74100.0,kg/TJ,96789980.19600001,kg +a0808dcc-b302-3f26-a7e9-4abad2ea2070,SESCO,II.1.1,Tucuman,AR-T,annual,2022,gas oil combustion consumption by to the public,1306.20756,TJ,CH4,3.9,kg/TJ,5094.209484,kg +a0808dcc-b302-3f26-a7e9-4abad2ea2070,SESCO,II.1.1,Tucuman,AR-T,annual,2022,gas oil combustion consumption by to the public,1306.20756,TJ,N2O,3.9,kg/TJ,5094.209484,kg +322562f8-2714-39b4-9d2b-94f02f3e5255,SESCO,II.1.1,Buenos Aires,AR-B,annual,2022,gas oil combustion consumption by to the public,10235.28828,TJ,CO2,74100.0,kg/TJ,758434861.5480001,kg +a5531427-ba74-3703-8bef-f5eb7936e2b5,SESCO,II.1.1,Buenos Aires,AR-B,annual,2022,gas oil combustion consumption by to the public,10235.28828,TJ,CH4,3.9,kg/TJ,39917.624292,kg +a5531427-ba74-3703-8bef-f5eb7936e2b5,SESCO,II.1.1,Buenos Aires,AR-B,annual,2022,gas oil combustion consumption by to the public,10235.28828,TJ,N2O,3.9,kg/TJ,39917.624292,kg +02ffe6bb-99bb-3a63-8bc0-3662efdbbeee,SESCO,II.1.1,Capital Federal,AR-C,annual,2022,gas oil combustion consumption by to the public,1907.8584,TJ,CO2,74100.0,kg/TJ,141372307.44,kg +1e6c28da-942f-3ac1-9cd3-9f64908e262f,SESCO,II.1.1,Capital Federal,AR-C,annual,2022,gas oil combustion consumption by to the public,1907.8584,TJ,CH4,3.9,kg/TJ,7440.64776,kg +1e6c28da-942f-3ac1-9cd3-9f64908e262f,SESCO,II.1.1,Capital Federal,AR-C,annual,2022,gas oil combustion consumption by to the public,1907.8584,TJ,N2O,3.9,kg/TJ,7440.64776,kg +f743e3a2-daa0-3e67-a35c-d71769909f15,SESCO,II.1.1,Catamarca,AR-K,annual,2022,gas oil combustion consumption by to the public,50.568,TJ,CO2,74100.0,kg/TJ,3747088.8,kg +b7c52567-4371-3920-9a27-69fb560b077a,SESCO,II.1.1,Catamarca,AR-K,annual,2022,gas oil combustion consumption by to the public,50.568,TJ,CH4,3.9,kg/TJ,197.21519999999998,kg +b7c52567-4371-3920-9a27-69fb560b077a,SESCO,II.1.1,Catamarca,AR-K,annual,2022,gas oil combustion consumption by to the public,50.568,TJ,N2O,3.9,kg/TJ,197.21519999999998,kg +8176eeb8-4bed-36f4-bfcc-45b6c7610764,SESCO,II.1.1,Chaco,AR-H,annual,2022,gas oil combustion consumption by to the public,590.09244,TJ,CO2,74100.0,kg/TJ,43725849.804,kg +3dbab0b8-16a6-3c0e-aa55-a98b6026e5bb,SESCO,II.1.1,Chaco,AR-H,annual,2022,gas oil combustion consumption by to the public,590.09244,TJ,CH4,3.9,kg/TJ,2301.360516,kg +3dbab0b8-16a6-3c0e-aa55-a98b6026e5bb,SESCO,II.1.1,Chaco,AR-H,annual,2022,gas oil combustion consumption by to the public,590.09244,TJ,N2O,3.9,kg/TJ,2301.360516,kg +91730087-4049-31f7-a603-c82964ded6a9,SESCO,II.1.1,Corrientes,AR-W,annual,2022,gas oil combustion consumption by to the public,755.73876,TJ,CO2,74100.0,kg/TJ,56000242.116,kg +0bbaefd1-5735-3fec-ab2f-a3cf51b4b749,SESCO,II.1.1,Corrientes,AR-W,annual,2022,gas oil combustion consumption by to the public,755.73876,TJ,CH4,3.9,kg/TJ,2947.381164,kg +0bbaefd1-5735-3fec-ab2f-a3cf51b4b749,SESCO,II.1.1,Corrientes,AR-W,annual,2022,gas oil combustion consumption by to the public,755.73876,TJ,N2O,3.9,kg/TJ,2947.381164,kg +75f81b65-6af3-3bd0-ae2f-5ac1152d89ef,SESCO,II.1.1,Córdoba,AR-X,annual,2022,gas oil combustion consumption by to the public,3131.09832,TJ,CO2,74100.0,kg/TJ,232014385.512,kg +893a56f5-1c50-3660-b706-79c6c3de486b,SESCO,II.1.1,Córdoba,AR-X,annual,2022,gas oil combustion consumption by to the public,3131.09832,TJ,CH4,3.9,kg/TJ,12211.283448,kg +893a56f5-1c50-3660-b706-79c6c3de486b,SESCO,II.1.1,Córdoba,AR-X,annual,2022,gas oil combustion consumption by to the public,3131.09832,TJ,N2O,3.9,kg/TJ,12211.283448,kg +45db0c20-fcfe-3fb2-8783-3d8f18b6ab0b,SESCO,II.1.1,Entre Rios,AR-E,annual,2022,gas oil combustion consumption by to the public,990.08532,TJ,CO2,74100.0,kg/TJ,73365322.212,kg +af2af663-823d-351b-a1cb-dfa97e28ce13,SESCO,II.1.1,Entre Rios,AR-E,annual,2022,gas oil combustion consumption by to the public,990.08532,TJ,CH4,3.9,kg/TJ,3861.332748,kg +af2af663-823d-351b-a1cb-dfa97e28ce13,SESCO,II.1.1,Entre Rios,AR-E,annual,2022,gas oil combustion consumption by to the public,990.08532,TJ,N2O,3.9,kg/TJ,3861.332748,kg +10b4f4c8-7f28-3d43-bb19-2b5c3d1e25dc,SESCO,II.1.1,Formosa,AR-P,annual,2022,gas oil combustion consumption by to the public,208.88196,TJ,CO2,74100.0,kg/TJ,15478153.236,kg +679ce085-7ff7-3c1b-bde7-a6d0d1546f64,SESCO,II.1.1,Formosa,AR-P,annual,2022,gas oil combustion consumption by to the public,208.88196,TJ,CH4,3.9,kg/TJ,814.639644,kg +679ce085-7ff7-3c1b-bde7-a6d0d1546f64,SESCO,II.1.1,Formosa,AR-P,annual,2022,gas oil combustion consumption by to the public,208.88196,TJ,N2O,3.9,kg/TJ,814.639644,kg +831541b3-ac8a-3121-8b69-0c878e600fa1,SESCO,II.1.1,Jujuy,AR-Y,annual,2022,gas oil combustion consumption by to the public,232.21547999999999,TJ,CO2,74100.0,kg/TJ,17207167.068,kg +ac9c7711-9036-3122-9314-509689e4aa22,SESCO,II.1.1,Jujuy,AR-Y,annual,2022,gas oil combustion consumption by to the public,232.21547999999999,TJ,CH4,3.9,kg/TJ,905.640372,kg +ac9c7711-9036-3122-9314-509689e4aa22,SESCO,II.1.1,Jujuy,AR-Y,annual,2022,gas oil combustion consumption by to the public,232.21547999999999,TJ,N2O,3.9,kg/TJ,905.640372,kg +229978cd-0ad5-35ca-88c6-3ee96e05ba0c,SESCO,II.1.1,La Pampa,AR-L,annual,2022,gas oil combustion consumption by to the public,343.89852,TJ,CO2,74100.0,kg/TJ,25482880.332000002,kg +1e70c9ad-6361-3b2f-81a5-509df87b0495,SESCO,II.1.1,La Pampa,AR-L,annual,2022,gas oil combustion consumption by to the public,343.89852,TJ,CH4,3.9,kg/TJ,1341.204228,kg +1e70c9ad-6361-3b2f-81a5-509df87b0495,SESCO,II.1.1,La Pampa,AR-L,annual,2022,gas oil combustion consumption by to the public,343.89852,TJ,N2O,3.9,kg/TJ,1341.204228,kg +0d847dab-4cb4-3e2c-9af5-ad5fa613315d,SESCO,II.1.1,La Rioja,AR-F,annual,2022,gas oil combustion consumption by to the public,183.52572,TJ,CO2,74100.0,kg/TJ,13599255.852,kg +ba4d9b9a-cf39-32c5-bdd8-65b0a80a1b8e,SESCO,II.1.1,La Rioja,AR-F,annual,2022,gas oil combustion consumption by to the public,183.52572,TJ,CH4,3.9,kg/TJ,715.750308,kg +ba4d9b9a-cf39-32c5-bdd8-65b0a80a1b8e,SESCO,II.1.1,La Rioja,AR-F,annual,2022,gas oil combustion consumption by to the public,183.52572,TJ,N2O,3.9,kg/TJ,715.750308,kg +ed55026f-ca1b-356d-9d83-4680ce3a6e42,SESCO,II.1.1,Mendoza,AR-M,annual,2022,gas oil combustion consumption by to the public,1332.50292,TJ,CO2,74100.0,kg/TJ,98738466.372,kg +5d9a21da-edaf-3d94-b151-9f095f65d5f5,SESCO,II.1.1,Mendoza,AR-M,annual,2022,gas oil combustion consumption by to the public,1332.50292,TJ,CH4,3.9,kg/TJ,5196.761388,kg +5d9a21da-edaf-3d94-b151-9f095f65d5f5,SESCO,II.1.1,Mendoza,AR-M,annual,2022,gas oil combustion consumption by to the public,1332.50292,TJ,N2O,3.9,kg/TJ,5196.761388,kg +ce8e6ae8-a790-3565-ba3b-052c8366413c,SESCO,II.1.1,Misiones,AR-N,annual,2022,gas oil combustion consumption by to the public,661.1766,TJ,CO2,74100.0,kg/TJ,48993186.06,kg +1eaf9540-580d-3694-a78c-376125e29466,SESCO,II.1.1,Misiones,AR-N,annual,2022,gas oil combustion consumption by to the public,661.1766,TJ,CH4,3.9,kg/TJ,2578.58874,kg +1eaf9540-580d-3694-a78c-376125e29466,SESCO,II.1.1,Misiones,AR-N,annual,2022,gas oil combustion consumption by to the public,661.1766,TJ,N2O,3.9,kg/TJ,2578.58874,kg +d1ec9014-dc7b-30d7-a732-574af370d7e5,SESCO,II.1.1,Neuquén,AR-Q,annual,2022,gas oil combustion consumption by to the public,932.58228,TJ,CO2,74100.0,kg/TJ,69104346.948,kg +d39921b8-0b9e-3378-a0a1-f32be14d3bc6,SESCO,II.1.1,Neuquén,AR-Q,annual,2022,gas oil combustion consumption by to the public,932.58228,TJ,CH4,3.9,kg/TJ,3637.0708919999997,kg +d39921b8-0b9e-3378-a0a1-f32be14d3bc6,SESCO,II.1.1,Neuquén,AR-Q,annual,2022,gas oil combustion consumption by to the public,932.58228,TJ,N2O,3.9,kg/TJ,3637.0708919999997,kg +0bd0bb8d-9fd6-3f9b-bf51-9d725537c979,SESCO,II.1.1,Rio Negro,AR-R,annual,2022,gas oil combustion consumption by to the public,273.71736,TJ,CO2,74100.0,kg/TJ,20282456.376,kg +4dd3cf43-7262-388c-aa3b-fd42165ecc18,SESCO,II.1.1,Rio Negro,AR-R,annual,2022,gas oil combustion consumption by to the public,273.71736,TJ,CH4,3.9,kg/TJ,1067.4977039999999,kg +4dd3cf43-7262-388c-aa3b-fd42165ecc18,SESCO,II.1.1,Rio Negro,AR-R,annual,2022,gas oil combustion consumption by to the public,273.71736,TJ,N2O,3.9,kg/TJ,1067.4977039999999,kg +8f23757c-6b2f-39b7-aa3f-3392f05e981b,SESCO,II.1.1,Salta,AR-A,annual,2022,gas oil combustion consumption by to the public,235.06896,TJ,CO2,74100.0,kg/TJ,17418609.936,kg +c10ec8e3-e5a7-3015-b6af-4b063bbb8a53,SESCO,II.1.1,Salta,AR-A,annual,2022,gas oil combustion consumption by to the public,235.06896,TJ,CH4,3.9,kg/TJ,916.768944,kg +c10ec8e3-e5a7-3015-b6af-4b063bbb8a53,SESCO,II.1.1,Salta,AR-A,annual,2022,gas oil combustion consumption by to the public,235.06896,TJ,N2O,3.9,kg/TJ,916.768944,kg +1be0eade-2fbd-3249-837a-10cc9004d2e0,SESCO,II.1.1,San Juan,AR-J,annual,2022,gas oil combustion consumption by to the public,238.96992,TJ,CO2,74100.0,kg/TJ,17707671.072,kg +4317333d-beeb-35dc-ae61-43a20be540ea,SESCO,II.1.1,San Juan,AR-J,annual,2022,gas oil combustion consumption by to the public,238.96992,TJ,CH4,3.9,kg/TJ,931.9826879999999,kg +4317333d-beeb-35dc-ae61-43a20be540ea,SESCO,II.1.1,San Juan,AR-J,annual,2022,gas oil combustion consumption by to the public,238.96992,TJ,N2O,3.9,kg/TJ,931.9826879999999,kg +4fc2d817-8a12-39a5-b47a-81afaf10f855,SESCO,II.1.1,San Luis,AR-D,annual,2022,gas oil combustion consumption by to the public,231.31248,TJ,CO2,74100.0,kg/TJ,17140254.768,kg +7cb315e0-c65a-32a2-94fc-fa1a89f0ed3c,SESCO,II.1.1,San Luis,AR-D,annual,2022,gas oil combustion consumption by to the public,231.31248,TJ,CH4,3.9,kg/TJ,902.118672,kg +7cb315e0-c65a-32a2-94fc-fa1a89f0ed3c,SESCO,II.1.1,San Luis,AR-D,annual,2022,gas oil combustion consumption by to the public,231.31248,TJ,N2O,3.9,kg/TJ,902.118672,kg +e21db90c-d684-34dc-950d-0556666f1cf7,SESCO,II.1.1,Santa Fe,AR-S,annual,2022,gas oil combustion consumption by to the public,2536.92432,TJ,CO2,74100.0,kg/TJ,187986092.11200002,kg +2d465a9e-5101-3a0a-853c-18ec60bf9378,SESCO,II.1.1,Santa Fe,AR-S,annual,2022,gas oil combustion consumption by to the public,2536.92432,TJ,CH4,3.9,kg/TJ,9894.004848,kg +2d465a9e-5101-3a0a-853c-18ec60bf9378,SESCO,II.1.1,Santa Fe,AR-S,annual,2022,gas oil combustion consumption by to the public,2536.92432,TJ,N2O,3.9,kg/TJ,9894.004848,kg +a151d3eb-4119-3f6b-b51f-3da799e677a2,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2022,gas oil combustion consumption by to the public,318.68676,TJ,CO2,74100.0,kg/TJ,23614688.916,kg +77fe58b2-603c-3bc1-92d5-98901a016e57,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2022,gas oil combustion consumption by to the public,318.68676,TJ,CH4,3.9,kg/TJ,1242.878364,kg +77fe58b2-603c-3bc1-92d5-98901a016e57,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2022,gas oil combustion consumption by to the public,318.68676,TJ,N2O,3.9,kg/TJ,1242.878364,kg +58441940-ee81-3211-ade2-bca33b0fa2a2,SESCO,II.1.1,Tucuman,AR-T,annual,2022,gas oil combustion consumption by to the public,585.07176,TJ,CO2,74100.0,kg/TJ,43353817.416,kg +63826fbd-8f1c-3761-bd74-dc413d887e86,SESCO,II.1.1,Tucuman,AR-T,annual,2022,gas oil combustion consumption by to the public,585.07176,TJ,CH4,3.9,kg/TJ,2281.779864,kg +63826fbd-8f1c-3761-bd74-dc413d887e86,SESCO,II.1.1,Tucuman,AR-T,annual,2022,gas oil combustion consumption by to the public,585.07176,TJ,N2O,3.9,kg/TJ,2281.779864,kg +adff174b-4cc1-309c-b2c4-7640e60682ad,SESCO,II.1.1,Entre Rios,AR-E,annual,2022,jet kerosene combustion consumption by to the public,1.1637609999999998,TJ,CO2,71500.0,kg/TJ,83208.91149999999,kg +9ec9c630-ba4b-3339-b8c0-98038f7eeccd,SESCO,II.1.1,Entre Rios,AR-E,annual,2022,jet kerosene combustion consumption by to the public,1.1637609999999998,TJ,CH4,0.5,kg/TJ,0.5818804999999999,kg +6e204c51-f3b5-3bcb-b679-58a3e088ded8,SESCO,II.1.1,Entre Rios,AR-E,annual,2022,jet kerosene combustion consumption by to the public,1.1637609999999998,TJ,N2O,2.0,kg/TJ,2.3275219999999996,kg +968e565e-65d2-3611-8854-d0a2e0e393e2,SESCO,I.3.1,Buenos Aires,AR-B,annual,2022,gasoline combustion consumption by petrochemical industries,99.18769999999999,TJ,CO2,69300.0,kg/TJ,6873707.609999999,kg +7262d6ac-359d-369b-82e3-9ca0904630de,SESCO,I.3.1,Buenos Aires,AR-B,annual,2022,gasoline combustion consumption by petrochemical industries,99.18769999999999,TJ,CH4,33.0,kg/TJ,3273.1940999999997,kg +7b30afda-8735-3b9b-96e5-3a681297a008,SESCO,I.3.1,Buenos Aires,AR-B,annual,2022,gasoline combustion consumption by petrochemical industries,99.18769999999999,TJ,N2O,3.2,kg/TJ,317.40064,kg +5d39eb38-8f50-3b0f-a895-30f5a1e51c2a,SESCO,I.3.1,Capital Federal,AR-C,annual,2022,gasoline combustion consumption by petrochemical industries,81.6006,TJ,CO2,69300.0,kg/TJ,5654921.58,kg +611d665d-a786-3f84-bf1e-672ae95f96e9,SESCO,I.3.1,Capital Federal,AR-C,annual,2022,gasoline combustion consumption by petrochemical industries,81.6006,TJ,CH4,33.0,kg/TJ,2692.8198,kg +6c5871cf-33de-37fe-980f-35964b275e74,SESCO,I.3.1,Capital Federal,AR-C,annual,2022,gasoline combustion consumption by petrochemical industries,81.6006,TJ,N2O,3.2,kg/TJ,261.12192,kg +d9fc90ee-b08c-3886-b355-8e9f2dd4ebde,SESCO,I.3.1,Chaco,AR-H,annual,2022,gasoline combustion consumption by petrochemical industries,2.4808,TJ,CO2,69300.0,kg/TJ,171919.44,kg +3a10b783-5843-3304-aa20-6467699f78f8,SESCO,I.3.1,Chaco,AR-H,annual,2022,gasoline combustion consumption by petrochemical industries,2.4808,TJ,CH4,33.0,kg/TJ,81.8664,kg +fcc3565b-8b9a-3d30-b243-db2c27f9592d,SESCO,I.3.1,Chaco,AR-H,annual,2022,gasoline combustion consumption by petrochemical industries,2.4808,TJ,N2O,3.2,kg/TJ,7.93856,kg +0c64ff51-7c9f-37ff-b628-71483fd146c5,SESCO,I.3.1,Córdoba,AR-X,annual,2022,gasoline combustion consumption by petrochemical industries,151.9047,TJ,CO2,69300.0,kg/TJ,10526995.709999999,kg +14168427-901a-3f49-8bb2-ff327c303f1d,SESCO,I.3.1,Córdoba,AR-X,annual,2022,gasoline combustion consumption by petrochemical industries,151.9047,TJ,CH4,33.0,kg/TJ,5012.8551,kg +5d8ddf67-b4e3-3c3f-858e-8e1625996599,SESCO,I.3.1,Córdoba,AR-X,annual,2022,gasoline combustion consumption by petrochemical industries,151.9047,TJ,N2O,3.2,kg/TJ,486.09504,kg +b6e9eb04-5d1c-3985-b7ee-a2e9fa35cd09,SESCO,I.3.1,Entre Rios,AR-E,annual,2022,gasoline combustion consumption by petrochemical industries,87.49249999999999,TJ,CO2,69300.0,kg/TJ,6063230.249999999,kg +4167fe95-a4fd-3ee8-8bf5-d8743ca14b9b,SESCO,I.3.1,Entre Rios,AR-E,annual,2022,gasoline combustion consumption by petrochemical industries,87.49249999999999,TJ,CH4,33.0,kg/TJ,2887.2524999999996,kg +18ef40d6-13da-3376-86ee-69eefdd94ba0,SESCO,I.3.1,Entre Rios,AR-E,annual,2022,gasoline combustion consumption by petrochemical industries,87.49249999999999,TJ,N2O,3.2,kg/TJ,279.976,kg +0345c26d-99e0-3c27-a7c8-2557f4009d63,SESCO,I.3.1,Misiones,AR-N,annual,2022,gasoline combustion consumption by petrochemical industries,242.321,TJ,CO2,69300.0,kg/TJ,16792845.3,kg +bbdfce5f-a1ef-37c2-978c-69aff2485537,SESCO,I.3.1,Misiones,AR-N,annual,2022,gasoline combustion consumption by petrochemical industries,242.321,TJ,CH4,33.0,kg/TJ,7996.593,kg +0467b6ee-9305-3826-9917-15cf26a467cd,SESCO,I.3.1,Misiones,AR-N,annual,2022,gasoline combustion consumption by petrochemical industries,242.321,TJ,N2O,3.2,kg/TJ,775.4272000000001,kg +4fac91f9-2aaa-37d2-9717-0bff03efb414,SESCO,I.3.1,Neuquén,AR-Q,annual,2022,gasoline combustion consumption by petrochemical industries,31.4973,TJ,CO2,69300.0,kg/TJ,2182762.89,kg +01fd5ae0-8fd5-3294-82f3-ff0b2aceaf25,SESCO,I.3.1,Neuquén,AR-Q,annual,2022,gasoline combustion consumption by petrochemical industries,31.4973,TJ,CH4,33.0,kg/TJ,1039.4109,kg +9fe4b4cd-682b-3194-a502-05a2e1688632,SESCO,I.3.1,Neuquén,AR-Q,annual,2022,gasoline combustion consumption by petrochemical industries,31.4973,TJ,N2O,3.2,kg/TJ,100.79136,kg +a581eca8-a732-3948-8c2f-701d5ebcadda,SESCO,I.3.1,Santa Fe,AR-S,annual,2022,gasoline combustion consumption by petrochemical industries,113.4523,TJ,CO2,69300.0,kg/TJ,7862244.39,kg +fe9f65f1-34b6-3773-848d-ffba9810a906,SESCO,I.3.1,Santa Fe,AR-S,annual,2022,gasoline combustion consumption by petrochemical industries,113.4523,TJ,CH4,33.0,kg/TJ,3743.9258999999997,kg +8fa15c24-b468-318d-802a-39bbbb15be82,SESCO,I.3.1,Santa Fe,AR-S,annual,2022,gasoline combustion consumption by petrochemical industries,113.4523,TJ,N2O,3.2,kg/TJ,363.04736,kg +3623d107-60bc-3e80-be2b-37372bd9d05a,SESCO,I.3.1,Buenos Aires,AR-B,annual,2022,gas oil combustion consumption by petrochemical industries,473.09976,TJ,CO2,74100.0,kg/TJ,35056692.216,kg +1a0d188a-c6cb-3ab1-b938-116c3a7358b1,SESCO,I.3.1,Buenos Aires,AR-B,annual,2022,gas oil combustion consumption by petrochemical industries,473.09976,TJ,CH4,3.9,kg/TJ,1845.089064,kg +1a0d188a-c6cb-3ab1-b938-116c3a7358b1,SESCO,I.3.1,Buenos Aires,AR-B,annual,2022,gas oil combustion consumption by petrochemical industries,473.09976,TJ,N2O,3.9,kg/TJ,1845.089064,kg +902f43ee-f480-367b-9b5f-0c85fff64dcb,SESCO,I.3.1,Capital Federal,AR-C,annual,2022,gas oil combustion consumption by petrochemical industries,17.08476,TJ,CO2,74100.0,kg/TJ,1265980.716,kg +1e99feaa-778f-3dae-863f-57970a0a4bc6,SESCO,I.3.1,Capital Federal,AR-C,annual,2022,gas oil combustion consumption by petrochemical industries,17.08476,TJ,CH4,3.9,kg/TJ,66.63056399999999,kg +1e99feaa-778f-3dae-863f-57970a0a4bc6,SESCO,I.3.1,Capital Federal,AR-C,annual,2022,gas oil combustion consumption by petrochemical industries,17.08476,TJ,N2O,3.9,kg/TJ,66.63056399999999,kg +99a53f94-17cc-3e33-a4ff-fb5dabd038a9,SESCO,I.3.1,Córdoba,AR-X,annual,2022,gas oil combustion consumption by petrochemical industries,57.32244,TJ,CO2,74100.0,kg/TJ,4247592.8040000005,kg +363f845d-b576-339b-a277-8bfdae2ae676,SESCO,I.3.1,Córdoba,AR-X,annual,2022,gas oil combustion consumption by petrochemical industries,57.32244,TJ,CH4,3.9,kg/TJ,223.557516,kg +363f845d-b576-339b-a277-8bfdae2ae676,SESCO,I.3.1,Córdoba,AR-X,annual,2022,gas oil combustion consumption by petrochemical industries,57.32244,TJ,N2O,3.9,kg/TJ,223.557516,kg +08fc1251-0955-302f-95f3-643aa207cfaa,SESCO,I.3.1,Entre Rios,AR-E,annual,2022,gas oil combustion consumption by petrochemical industries,25.71744,TJ,CO2,74100.0,kg/TJ,1905662.304,kg +143153ae-9dc7-3ef9-bc74-2ab78764ed2f,SESCO,I.3.1,Entre Rios,AR-E,annual,2022,gas oil combustion consumption by petrochemical industries,25.71744,TJ,CH4,3.9,kg/TJ,100.298016,kg +143153ae-9dc7-3ef9-bc74-2ab78764ed2f,SESCO,I.3.1,Entre Rios,AR-E,annual,2022,gas oil combustion consumption by petrochemical industries,25.71744,TJ,N2O,3.9,kg/TJ,100.298016,kg +6985562a-c5d4-31fa-bb69-20c51f6c61a3,SESCO,I.3.1,Mendoza,AR-M,annual,2022,gas oil combustion consumption by petrochemical industries,24.850559999999998,TJ,CO2,74100.0,kg/TJ,1841426.4959999998,kg +444a4271-797a-399f-9df4-a8520df69241,SESCO,I.3.1,Mendoza,AR-M,annual,2022,gas oil combustion consumption by petrochemical industries,24.850559999999998,TJ,CH4,3.9,kg/TJ,96.91718399999999,kg +444a4271-797a-399f-9df4-a8520df69241,SESCO,I.3.1,Mendoza,AR-M,annual,2022,gas oil combustion consumption by petrochemical industries,24.850559999999998,TJ,N2O,3.9,kg/TJ,96.91718399999999,kg +4fc92e43-b550-3511-91bf-e3bf55b3e811,SESCO,I.3.1,Misiones,AR-N,annual,2022,gas oil combustion consumption by petrochemical industries,20.51616,TJ,CO2,74100.0,kg/TJ,1520247.456,kg +28309538-5693-3b25-8bac-2dcfc0aca449,SESCO,I.3.1,Misiones,AR-N,annual,2022,gas oil combustion consumption by petrochemical industries,20.51616,TJ,CH4,3.9,kg/TJ,80.013024,kg +28309538-5693-3b25-8bac-2dcfc0aca449,SESCO,I.3.1,Misiones,AR-N,annual,2022,gas oil combustion consumption by petrochemical industries,20.51616,TJ,N2O,3.9,kg/TJ,80.013024,kg +3ee7cd39-85a2-32b4-91d7-57612fb1007c,SESCO,I.3.1,Neuquén,AR-Q,annual,2022,gas oil combustion consumption by petrochemical industries,384.64188,TJ,CO2,74100.0,kg/TJ,28501963.308000002,kg +40c86680-8ab7-3e28-a052-67a48a38b9e5,SESCO,I.3.1,Neuquén,AR-Q,annual,2022,gas oil combustion consumption by petrochemical industries,384.64188,TJ,CH4,3.9,kg/TJ,1500.103332,kg +40c86680-8ab7-3e28-a052-67a48a38b9e5,SESCO,I.3.1,Neuquén,AR-Q,annual,2022,gas oil combustion consumption by petrochemical industries,384.64188,TJ,N2O,3.9,kg/TJ,1500.103332,kg +f893ae21-d929-31c0-948f-568b3080dc04,SESCO,I.3.1,Salta,AR-A,annual,2022,gas oil combustion consumption by petrochemical industries,137.58108,TJ,CO2,74100.0,kg/TJ,10194758.027999999,kg +d8184118-b9a5-3a5f-bacd-3774aa1c097f,SESCO,I.3.1,Salta,AR-A,annual,2022,gas oil combustion consumption by petrochemical industries,137.58108,TJ,CH4,3.9,kg/TJ,536.566212,kg +d8184118-b9a5-3a5f-bacd-3774aa1c097f,SESCO,I.3.1,Salta,AR-A,annual,2022,gas oil combustion consumption by petrochemical industries,137.58108,TJ,N2O,3.9,kg/TJ,536.566212,kg +b75ae798-d28a-32f1-aef1-34934f1ff883,SESCO,I.3.1,San Juan,AR-J,annual,2022,gas oil combustion consumption by petrochemical industries,53.20476,TJ,CO2,74100.0,kg/TJ,3942472.716,kg +9098d3b8-b030-3c38-ba55-ee1bcf040417,SESCO,I.3.1,San Juan,AR-J,annual,2022,gas oil combustion consumption by petrochemical industries,53.20476,TJ,CH4,3.9,kg/TJ,207.498564,kg +9098d3b8-b030-3c38-ba55-ee1bcf040417,SESCO,I.3.1,San Juan,AR-J,annual,2022,gas oil combustion consumption by petrochemical industries,53.20476,TJ,N2O,3.9,kg/TJ,207.498564,kg +63d92394-7516-339e-83ad-feea07671e0a,SESCO,I.3.1,Santa Fe,AR-S,annual,2022,gas oil combustion consumption by petrochemical industries,97.66848,TJ,CO2,74100.0,kg/TJ,7237234.368,kg +63320433-8088-3bc4-bf14-639fdb5a907f,SESCO,I.3.1,Santa Fe,AR-S,annual,2022,gas oil combustion consumption by petrochemical industries,97.66848,TJ,CH4,3.9,kg/TJ,380.907072,kg +63320433-8088-3bc4-bf14-639fdb5a907f,SESCO,I.3.1,Santa Fe,AR-S,annual,2022,gas oil combustion consumption by petrochemical industries,97.66848,TJ,N2O,3.9,kg/TJ,380.907072,kg +caf0251f-841a-3fbd-96b0-576b71d1ce24,SESCO,I.3.1,Tucuman,AR-T,annual,2022,gas oil combustion consumption by petrochemical industries,107.2764,TJ,CO2,74100.0,kg/TJ,7949181.239999999,kg +d172dd11-d4ff-3468-b255-e7e728963225,SESCO,I.3.1,Tucuman,AR-T,annual,2022,gas oil combustion consumption by petrochemical industries,107.2764,TJ,CH4,3.9,kg/TJ,418.37796,kg +d172dd11-d4ff-3468-b255-e7e728963225,SESCO,I.3.1,Tucuman,AR-T,annual,2022,gas oil combustion consumption by petrochemical industries,107.2764,TJ,N2O,3.9,kg/TJ,418.37796,kg +4300c65f-006e-311c-8485-43f8830ee634,SESCO,I.3.1,Buenos Aires,AR-B,annual,2022,gas oil combustion consumption by petrochemical industries,51.86832,TJ,CO2,74100.0,kg/TJ,3843442.5119999996,kg +ef3f4cb3-a05c-33a9-80e8-65a718e2abc8,SESCO,I.3.1,Buenos Aires,AR-B,annual,2022,gas oil combustion consumption by petrochemical industries,51.86832,TJ,CH4,3.9,kg/TJ,202.28644799999998,kg +ef3f4cb3-a05c-33a9-80e8-65a718e2abc8,SESCO,I.3.1,Buenos Aires,AR-B,annual,2022,gas oil combustion consumption by petrochemical industries,51.86832,TJ,N2O,3.9,kg/TJ,202.28644799999998,kg +65e40cee-60f2-3e9f-92fa-cd723c763e61,SESCO,I.3.1,Capital Federal,AR-C,annual,2022,gas oil combustion consumption by petrochemical industries,27.993,TJ,CO2,74100.0,kg/TJ,2074281.2999999998,kg +baa728d0-6643-32f3-aa54-1a6995b22d24,SESCO,I.3.1,Capital Federal,AR-C,annual,2022,gas oil combustion consumption by petrochemical industries,27.993,TJ,CH4,3.9,kg/TJ,109.17269999999999,kg +baa728d0-6643-32f3-aa54-1a6995b22d24,SESCO,I.3.1,Capital Federal,AR-C,annual,2022,gas oil combustion consumption by petrochemical industries,27.993,TJ,N2O,3.9,kg/TJ,109.17269999999999,kg +970d3eae-0f58-3dcf-89e1-5ece150b55a1,SESCO,I.3.1,Córdoba,AR-X,annual,2022,gas oil combustion consumption by petrochemical industries,1.30032,TJ,CO2,74100.0,kg/TJ,96353.712,kg +38272e97-9968-3db0-8d36-ce6f1899a43a,SESCO,I.3.1,Córdoba,AR-X,annual,2022,gas oil combustion consumption by petrochemical industries,1.30032,TJ,CH4,3.9,kg/TJ,5.071248,kg +38272e97-9968-3db0-8d36-ce6f1899a43a,SESCO,I.3.1,Córdoba,AR-X,annual,2022,gas oil combustion consumption by petrochemical industries,1.30032,TJ,N2O,3.9,kg/TJ,5.071248,kg +3a55a036-ef63-3cb0-a7b2-64e3c1ec9845,SESCO,I.3.1,Entre Rios,AR-E,annual,2022,gas oil combustion consumption by petrochemical industries,7.51296,TJ,CO2,74100.0,kg/TJ,556710.336,kg +93871a48-e53b-39f0-8326-82a80c53d552,SESCO,I.3.1,Entre Rios,AR-E,annual,2022,gas oil combustion consumption by petrochemical industries,7.51296,TJ,CH4,3.9,kg/TJ,29.300544,kg +93871a48-e53b-39f0-8326-82a80c53d552,SESCO,I.3.1,Entre Rios,AR-E,annual,2022,gas oil combustion consumption by petrochemical industries,7.51296,TJ,N2O,3.9,kg/TJ,29.300544,kg +b1112592-01c6-34a0-bd93-f4400724d5fb,SESCO,I.3.1,Jujuy,AR-Y,annual,2022,gas oil combustion consumption by petrochemical industries,1.30032,TJ,CO2,74100.0,kg/TJ,96353.712,kg +094aa822-3eda-3a7f-bfdf-33a424b9b5fe,SESCO,I.3.1,Jujuy,AR-Y,annual,2022,gas oil combustion consumption by petrochemical industries,1.30032,TJ,CH4,3.9,kg/TJ,5.071248,kg +094aa822-3eda-3a7f-bfdf-33a424b9b5fe,SESCO,I.3.1,Jujuy,AR-Y,annual,2022,gas oil combustion consumption by petrochemical industries,1.30032,TJ,N2O,3.9,kg/TJ,5.071248,kg +1b3a0015-d0cd-3d7a-8ee2-5c507a786d2b,SESCO,I.3.1,Neuquén,AR-Q,annual,2022,gas oil combustion consumption by petrochemical industries,307.99523999999997,TJ,CO2,74100.0,kg/TJ,22822447.283999998,kg +c0969c4b-6074-3457-bc35-3617306be9cd,SESCO,I.3.1,Neuquén,AR-Q,annual,2022,gas oil combustion consumption by petrochemical industries,307.99523999999997,TJ,CH4,3.9,kg/TJ,1201.1814359999998,kg +c0969c4b-6074-3457-bc35-3617306be9cd,SESCO,I.3.1,Neuquén,AR-Q,annual,2022,gas oil combustion consumption by petrochemical industries,307.99523999999997,TJ,N2O,3.9,kg/TJ,1201.1814359999998,kg +3b86829d-2a19-3b41-ab2f-719d82e294c6,SESCO,I.3.1,Salta,AR-A,annual,2022,gas oil combustion consumption by petrochemical industries,5.2374,TJ,CO2,74100.0,kg/TJ,388091.34,kg +a35184b0-3ed7-327d-982a-07fa42e52d1b,SESCO,I.3.1,Salta,AR-A,annual,2022,gas oil combustion consumption by petrochemical industries,5.2374,TJ,CH4,3.9,kg/TJ,20.42586,kg +a35184b0-3ed7-327d-982a-07fa42e52d1b,SESCO,I.3.1,Salta,AR-A,annual,2022,gas oil combustion consumption by petrochemical industries,5.2374,TJ,N2O,3.9,kg/TJ,20.42586,kg +74ea1a11-1c62-3361-bceb-f8d1681b76b3,SESCO,I.3.1,Santa Fe,AR-S,annual,2022,gas oil combustion consumption by petrochemical industries,8.6688,TJ,CO2,74100.0,kg/TJ,642358.08,kg +af9e4532-70b2-34d9-97a2-a722435f059a,SESCO,I.3.1,Santa Fe,AR-S,annual,2022,gas oil combustion consumption by petrochemical industries,8.6688,TJ,CH4,3.9,kg/TJ,33.808319999999995,kg +af9e4532-70b2-34d9-97a2-a722435f059a,SESCO,I.3.1,Santa Fe,AR-S,annual,2022,gas oil combustion consumption by petrochemical industries,8.6688,TJ,N2O,3.9,kg/TJ,33.808319999999995,kg +5bfbf835-dd80-3a1f-b180-1aed03cc6f25,SESCO,I.3.1,Tucuman,AR-T,annual,2022,gas oil combustion consumption by petrochemical industries,11.1972,TJ,CO2,74100.0,kg/TJ,829712.52,kg +97fe72b9-affb-360c-b324-80ccfda8859d,SESCO,I.3.1,Tucuman,AR-T,annual,2022,gas oil combustion consumption by petrochemical industries,11.1972,TJ,CH4,3.9,kg/TJ,43.66908,kg +97fe72b9-affb-360c-b324-80ccfda8859d,SESCO,I.3.1,Tucuman,AR-T,annual,2022,gas oil combustion consumption by petrochemical industries,11.1972,TJ,N2O,3.9,kg/TJ,43.66908,kg +d0f8151d-f2ab-3190-9d6c-3aebc19ffaf2,SESCO,I.3.1,Santa Fe,AR-S,annual,2022,jet kerosene combustion consumption by petrochemical industries,11.260173999999997,TJ,CO2,71500.0,kg/TJ,805102.4409999999,kg +ccafed13-83bc-3d42-80d5-0efaee68ecec,SESCO,I.3.1,Santa Fe,AR-S,annual,2022,jet kerosene combustion consumption by petrochemical industries,11.260173999999997,TJ,CH4,0.5,kg/TJ,5.630086999999999,kg +45b3d287-2745-3ae1-96d2-26cd33284f99,SESCO,I.3.1,Santa Fe,AR-S,annual,2022,jet kerosene combustion consumption by petrochemical industries,11.260173999999997,TJ,N2O,2.0,kg/TJ,22.520347999999995,kg +85778cf4-2058-3b70-a064-4ec21400eec7,SESCO,II.2.1,Buenos Aires,AR-B,annual,2022,gas oil combustion consumption by railway transport,229.57872,TJ,CO2,74100.0,kg/TJ,17011783.152,kg +46d18ffb-f580-3f57-a0c2-4439e94350f3,SESCO,II.2.1,Buenos Aires,AR-B,annual,2022,gas oil combustion consumption by railway transport,229.57872,TJ,CH4,3.9,kg/TJ,895.357008,kg +46d18ffb-f580-3f57-a0c2-4439e94350f3,SESCO,II.2.1,Buenos Aires,AR-B,annual,2022,gas oil combustion consumption by railway transport,229.57872,TJ,N2O,3.9,kg/TJ,895.357008,kg +4cabd140-8769-3857-ab01-bed3cb7a7a73,SESCO,II.1.1,Buenos Aires,AR-B,annual,2022,gasoline combustion consumption by freight transport,6.9994,TJ,CO2,69300.0,kg/TJ,485058.42,kg +4e907c92-c700-3a28-8cc9-66d06467f193,SESCO,II.1.1,Buenos Aires,AR-B,annual,2022,gasoline combustion consumption by freight transport,6.9994,TJ,CH4,33.0,kg/TJ,230.9802,kg +6f4102f9-9ad6-3303-8b82-c59276b99e26,SESCO,II.1.1,Buenos Aires,AR-B,annual,2022,gasoline combustion consumption by freight transport,6.9994,TJ,N2O,3.2,kg/TJ,22.39808,kg +96cee1ed-8f88-3b5f-88c3-c0238a95bda9,SESCO,II.1.1,Santa Fe,AR-S,annual,2022,gasoline combustion consumption by freight transport,3.4554,TJ,CO2,69300.0,kg/TJ,239459.22,kg +b5c10ae2-7963-34a3-9506-3f3b00d1a49e,SESCO,II.1.1,Santa Fe,AR-S,annual,2022,gasoline combustion consumption by freight transport,3.4554,TJ,CH4,33.0,kg/TJ,114.0282,kg +9a564f90-bc5c-3273-ba47-c1c5808b7571,SESCO,II.1.1,Santa Fe,AR-S,annual,2022,gasoline combustion consumption by freight transport,3.4554,TJ,N2O,3.2,kg/TJ,11.05728,kg +143ee41e-5cd2-34f3-a3d8-2285d393125a,SESCO,II.1.1,Buenos Aires,AR-B,annual,2022,gas oil combustion consumption by freight transport,7.29624,TJ,CO2,74100.0,kg/TJ,540651.384,kg +885dd945-f531-3aad-ad7d-9fa59c5f5248,SESCO,II.1.1,Buenos Aires,AR-B,annual,2022,gas oil combustion consumption by freight transport,7.29624,TJ,CH4,3.9,kg/TJ,28.455336,kg +885dd945-f531-3aad-ad7d-9fa59c5f5248,SESCO,II.1.1,Buenos Aires,AR-B,annual,2022,gas oil combustion consumption by freight transport,7.29624,TJ,N2O,3.9,kg/TJ,28.455336,kg +06a3a964-7197-348b-a239-6acc25a2e8cf,SESCO,II.1.1,Santa Fe,AR-S,annual,2022,gas oil combustion consumption by freight transport,12.20856,TJ,CO2,74100.0,kg/TJ,904654.296,kg +b45625fb-93f0-3f4b-bf81-92eec59df1ca,SESCO,II.1.1,Santa Fe,AR-S,annual,2022,gas oil combustion consumption by freight transport,12.20856,TJ,CH4,3.9,kg/TJ,47.613384,kg +b45625fb-93f0-3f4b-bf81-92eec59df1ca,SESCO,II.1.1,Santa Fe,AR-S,annual,2022,gas oil combustion consumption by freight transport,12.20856,TJ,N2O,3.9,kg/TJ,47.613384,kg +d8aa4d37-6b83-3d56-9f04-cefce3fd0a55,SESCO,II.1.1,Buenos Aires,AR-B,annual,2022,gas oil combustion consumption by freight transport,17.48208,TJ,CO2,74100.0,kg/TJ,1295422.128,kg +0b702992-01ac-345e-8936-4d8fda16a702,SESCO,II.1.1,Buenos Aires,AR-B,annual,2022,gas oil combustion consumption by freight transport,17.48208,TJ,CH4,3.9,kg/TJ,68.180112,kg +0b702992-01ac-345e-8936-4d8fda16a702,SESCO,II.1.1,Buenos Aires,AR-B,annual,2022,gas oil combustion consumption by freight transport,17.48208,TJ,N2O,3.9,kg/TJ,68.180112,kg +a78454e6-0b11-39dc-8ee1-e44903b54806,SESCO,II.1.1,Santa Fe,AR-S,annual,2022,gas oil combustion consumption by freight transport,11.0166,TJ,CO2,74100.0,kg/TJ,816330.06,kg +cca0a93c-7d0f-3110-b337-98b91486e3f4,SESCO,II.1.1,Santa Fe,AR-S,annual,2022,gas oil combustion consumption by freight transport,11.0166,TJ,CH4,3.9,kg/TJ,42.96474,kg +cca0a93c-7d0f-3110-b337-98b91486e3f4,SESCO,II.1.1,Santa Fe,AR-S,annual,2022,gas oil combustion consumption by freight transport,11.0166,TJ,N2O,3.9,kg/TJ,42.96474,kg +4f2b9ae5-9f98-34ab-80c1-15b8489af00e,SESCO,II.1.1,Salta,AR-A,annual,2022,gasoline combustion consumption by public passenger transport,1.1518,TJ,CO2,69300.0,kg/TJ,79819.73999999999,kg +3b83d5ec-e13f-30e4-9a76-03401707c40c,SESCO,II.1.1,Salta,AR-A,annual,2022,gasoline combustion consumption by public passenger transport,1.1518,TJ,CH4,33.0,kg/TJ,38.0094,kg +35d9badf-6ec7-3da1-889a-e99d6e4da266,SESCO,II.1.1,Salta,AR-A,annual,2022,gasoline combustion consumption by public passenger transport,1.1518,TJ,N2O,3.2,kg/TJ,3.68576,kg +c8a04da5-dcbf-3cad-b702-c92265e84277,SESCO,II.1.1,Buenos Aires,AR-B,annual,2022,gas oil combustion consumption by public passenger transport,2741.61636,TJ,CO2,74100.0,kg/TJ,203153772.276,kg +5d03632b-865d-3f42-8bb7-7c805d025aae,SESCO,II.1.1,Buenos Aires,AR-B,annual,2022,gas oil combustion consumption by public passenger transport,2741.61636,TJ,CH4,3.9,kg/TJ,10692.303804,kg +5d03632b-865d-3f42-8bb7-7c805d025aae,SESCO,II.1.1,Buenos Aires,AR-B,annual,2022,gas oil combustion consumption by public passenger transport,2741.61636,TJ,N2O,3.9,kg/TJ,10692.303804,kg +497023be-276e-3df3-8571-a85bba57f539,SESCO,II.1.1,Capital Federal,AR-C,annual,2022,gas oil combustion consumption by public passenger transport,137.256,TJ,CO2,74100.0,kg/TJ,10170669.6,kg +3e9ccf6c-3faf-3bff-ac53-023f00ac7d37,SESCO,II.1.1,Capital Federal,AR-C,annual,2022,gas oil combustion consumption by public passenger transport,137.256,TJ,CH4,3.9,kg/TJ,535.2984,kg +3e9ccf6c-3faf-3bff-ac53-023f00ac7d37,SESCO,II.1.1,Capital Federal,AR-C,annual,2022,gas oil combustion consumption by public passenger transport,137.256,TJ,N2O,3.9,kg/TJ,535.2984,kg +e7af1dcf-ed91-3a77-a017-6ab8af74a426,SESCO,II.1.1,Corrientes,AR-W,annual,2022,gas oil combustion consumption by public passenger transport,0.18059999999999998,TJ,CO2,74100.0,kg/TJ,13382.46,kg +fc930f5e-3d0d-32fd-9b2b-4e1794e28e4b,SESCO,II.1.1,Corrientes,AR-W,annual,2022,gas oil combustion consumption by public passenger transport,0.18059999999999998,TJ,CH4,3.9,kg/TJ,0.70434,kg +fc930f5e-3d0d-32fd-9b2b-4e1794e28e4b,SESCO,II.1.1,Corrientes,AR-W,annual,2022,gas oil combustion consumption by public passenger transport,0.18059999999999998,TJ,N2O,3.9,kg/TJ,0.70434,kg +7f08e0fb-acf2-307b-9b9f-fe9e2698836e,SESCO,II.1.1,Córdoba,AR-X,annual,2022,gas oil combustion consumption by public passenger transport,3.1063199999999997,TJ,CO2,74100.0,kg/TJ,230178.31199999998,kg +211a47ed-a32f-3942-831b-099ee1817cec,SESCO,II.1.1,Córdoba,AR-X,annual,2022,gas oil combustion consumption by public passenger transport,3.1063199999999997,TJ,CH4,3.9,kg/TJ,12.114647999999999,kg +211a47ed-a32f-3942-831b-099ee1817cec,SESCO,II.1.1,Córdoba,AR-X,annual,2022,gas oil combustion consumption by public passenger transport,3.1063199999999997,TJ,N2O,3.9,kg/TJ,12.114647999999999,kg +7ef8c942-e984-3e57-8481-a0b992f0d7c2,SESCO,II.1.1,Buenos Aires,AR-B,annual,2022,gas oil combustion consumption by public passenger transport,1707.28404,TJ,CO2,74100.0,kg/TJ,126509747.36400001,kg +b8699d52-50de-3c74-9079-a7363f1dabf4,SESCO,II.1.1,Buenos Aires,AR-B,annual,2022,gas oil combustion consumption by public passenger transport,1707.28404,TJ,CH4,3.9,kg/TJ,6658.407756,kg +b8699d52-50de-3c74-9079-a7363f1dabf4,SESCO,II.1.1,Buenos Aires,AR-B,annual,2022,gas oil combustion consumption by public passenger transport,1707.28404,TJ,N2O,3.9,kg/TJ,6658.407756,kg +64726197-1aab-317e-a854-1d7985029fea,SESCO,II.1.1,Capital Federal,AR-C,annual,2022,gas oil combustion consumption by public passenger transport,68.88083999999999,TJ,CO2,74100.0,kg/TJ,5104070.243999999,kg +956514f1-cdaa-3157-b8b8-087e8b6f93f4,SESCO,II.1.1,Capital Federal,AR-C,annual,2022,gas oil combustion consumption by public passenger transport,68.88083999999999,TJ,CH4,3.9,kg/TJ,268.635276,kg +956514f1-cdaa-3157-b8b8-087e8b6f93f4,SESCO,II.1.1,Capital Federal,AR-C,annual,2022,gas oil combustion consumption by public passenger transport,68.88083999999999,TJ,N2O,3.9,kg/TJ,268.635276,kg +a74aedfc-c437-3a9f-91cb-d6884b567b0c,SESCO,II.1.1,Corrientes,AR-W,annual,2022,gas oil combustion consumption by public passenger transport,67.07484,TJ,CO2,74100.0,kg/TJ,4970245.643999999,kg +66c86eed-8407-3ba1-b32f-0e0dfeb8a7bb,SESCO,II.1.1,Corrientes,AR-W,annual,2022,gas oil combustion consumption by public passenger transport,67.07484,TJ,CH4,3.9,kg/TJ,261.59187599999996,kg +66c86eed-8407-3ba1-b32f-0e0dfeb8a7bb,SESCO,II.1.1,Corrientes,AR-W,annual,2022,gas oil combustion consumption by public passenger transport,67.07484,TJ,N2O,3.9,kg/TJ,261.59187599999996,kg +e6db708c-667a-311f-98fc-40628de0b97a,SESCO,II.1.1,Córdoba,AR-X,annual,2022,gas oil combustion consumption by public passenger transport,8.88552,TJ,CO2,74100.0,kg/TJ,658417.032,kg +072defc3-8ec4-3594-8d34-c0d9a1746e76,SESCO,II.1.1,Córdoba,AR-X,annual,2022,gas oil combustion consumption by public passenger transport,8.88552,TJ,CH4,3.9,kg/TJ,34.653527999999994,kg +072defc3-8ec4-3594-8d34-c0d9a1746e76,SESCO,II.1.1,Córdoba,AR-X,annual,2022,gas oil combustion consumption by public passenger transport,8.88552,TJ,N2O,3.9,kg/TJ,34.653527999999994,kg +0c31dd2a-9131-3138-8dfd-d12c51d5be3c,SESCO,II.5.1,Buenos Aires,AR-B,annual,2022,gas oil combustion consumption by agriculture machines,3515.29704372,TJ,CO2,74100.0,kg/TJ,260483510.93965203,kg +9c2e40fd-a3c2-3455-ae3a-b0ece5095aa5,SESCO,II.5.1,Buenos Aires,AR-B,annual,2022,gas oil combustion consumption by agriculture machines,3515.29704372,TJ,CH4,3.9,kg/TJ,13709.658470508,kg +9c2e40fd-a3c2-3455-ae3a-b0ece5095aa5,SESCO,II.5.1,Buenos Aires,AR-B,annual,2022,gas oil combustion consumption by agriculture machines,3515.29704372,TJ,N2O,3.9,kg/TJ,13709.658470508,kg +8251bf15-122d-3785-a64d-7bb4ffdb2426,SESCO,II.5.1,Capital Federal,AR-C,annual,2022,gas oil combustion consumption by agriculture machines,150.57499716,TJ,CO2,74100.0,kg/TJ,11157607.289556,kg +93ad8aad-b554-3290-81a8-3023a5dc8ce9,SESCO,II.5.1,Capital Federal,AR-C,annual,2022,gas oil combustion consumption by agriculture machines,150.57499716,TJ,CH4,3.9,kg/TJ,587.242488924,kg +93ad8aad-b554-3290-81a8-3023a5dc8ce9,SESCO,II.5.1,Capital Federal,AR-C,annual,2022,gas oil combustion consumption by agriculture machines,150.57499716,TJ,N2O,3.9,kg/TJ,587.242488924,kg +8a3cca77-bba3-3e14-b2ba-59353f313fc5,SESCO,II.5.1,Córdoba,AR-X,annual,2022,gas oil combustion consumption by agriculture machines,1656.6747548399999,TJ,CO2,74100.0,kg/TJ,122759599.33364399,kg +4968530c-5e91-3f7e-b2ef-ec09a25e5868,SESCO,II.5.1,Córdoba,AR-X,annual,2022,gas oil combustion consumption by agriculture machines,1656.6747548399999,TJ,CH4,3.9,kg/TJ,6461.031543875999,kg +4968530c-5e91-3f7e-b2ef-ec09a25e5868,SESCO,II.5.1,Córdoba,AR-X,annual,2022,gas oil combustion consumption by agriculture machines,1656.6747548399999,TJ,N2O,3.9,kg/TJ,6461.031543875999,kg +dfed4618-f741-377f-9c9a-42122019fa94,SESCO,II.5.1,Entre Rios,AR-E,annual,2022,gas oil combustion consumption by agriculture machines,712.8776482799999,TJ,CO2,74100.0,kg/TJ,52824233.73754799,kg +30394c77-ca93-32e9-8a13-5e69eeffaccc,SESCO,II.5.1,Entre Rios,AR-E,annual,2022,gas oil combustion consumption by agriculture machines,712.8776482799999,TJ,CH4,3.9,kg/TJ,2780.2228282919996,kg +30394c77-ca93-32e9-8a13-5e69eeffaccc,SESCO,II.5.1,Entre Rios,AR-E,annual,2022,gas oil combustion consumption by agriculture machines,712.8776482799999,TJ,N2O,3.9,kg/TJ,2780.2228282919996,kg +4d6648ef-be79-3cea-bc57-5565d8cea87d,SESCO,II.5.1,Jujuy,AR-Y,annual,2022,gas oil combustion consumption by agriculture machines,18.49929144,TJ,CO2,74100.0,kg/TJ,1370797.4957040001,kg +e5d06214-1ed5-3349-9c0d-f25016c89e2e,SESCO,II.5.1,Jujuy,AR-Y,annual,2022,gas oil combustion consumption by agriculture machines,18.49929144,TJ,CH4,3.9,kg/TJ,72.147236616,kg +e5d06214-1ed5-3349-9c0d-f25016c89e2e,SESCO,II.5.1,Jujuy,AR-Y,annual,2022,gas oil combustion consumption by agriculture machines,18.49929144,TJ,N2O,3.9,kg/TJ,72.147236616,kg +b077361e-102a-30e5-b43b-6f81c7ca05cd,SESCO,II.5.1,La Pampa,AR-L,annual,2022,gas oil combustion consumption by agriculture machines,283.02248604,TJ,CO2,74100.0,kg/TJ,20971966.215563998,kg +d6d80e3b-53f5-3744-ac83-9a04e2ff3684,SESCO,II.5.1,La Pampa,AR-L,annual,2022,gas oil combustion consumption by agriculture machines,283.02248604,TJ,CH4,3.9,kg/TJ,1103.787695556,kg +d6d80e3b-53f5-3744-ac83-9a04e2ff3684,SESCO,II.5.1,La Pampa,AR-L,annual,2022,gas oil combustion consumption by agriculture machines,283.02248604,TJ,N2O,3.9,kg/TJ,1103.787695556,kg +fa954042-f72d-3c0e-8927-cd55b1b529be,SESCO,II.5.1,Rio Negro,AR-R,annual,2022,gas oil combustion consumption by agriculture machines,152.0198694,TJ,CO2,74100.0,kg/TJ,11264672.32254,kg +acb11504-f2d2-36f6-b00d-07f6eaf2568a,SESCO,II.5.1,Rio Negro,AR-R,annual,2022,gas oil combustion consumption by agriculture machines,152.0198694,TJ,CH4,3.9,kg/TJ,592.87749066,kg +acb11504-f2d2-36f6-b00d-07f6eaf2568a,SESCO,II.5.1,Rio Negro,AR-R,annual,2022,gas oil combustion consumption by agriculture machines,152.0198694,TJ,N2O,3.9,kg/TJ,592.87749066,kg +71287ac9-71f9-3fc7-b5a0-b6e433d4d70d,SESCO,II.5.1,San Luis,AR-D,annual,2022,gas oil combustion consumption by agriculture machines,45.82728612,TJ,CO2,74100.0,kg/TJ,3395801.9014919996,kg +63aeda81-3959-3dc5-8f10-1546cb715be5,SESCO,II.5.1,San Luis,AR-D,annual,2022,gas oil combustion consumption by agriculture machines,45.82728612,TJ,CH4,3.9,kg/TJ,178.72641586799998,kg +63aeda81-3959-3dc5-8f10-1546cb715be5,SESCO,II.5.1,San Luis,AR-D,annual,2022,gas oil combustion consumption by agriculture machines,45.82728612,TJ,N2O,3.9,kg/TJ,178.72641586799998,kg +4b333776-03bd-3cec-ab49-6988cb8f7885,SESCO,II.5.1,Santa Fe,AR-S,annual,2022,gas oil combustion consumption by agriculture machines,4227.63679296,TJ,CO2,74100.0,kg/TJ,313267886.35833603,kg +2a3cce4c-6a07-38a4-aa08-d5b1bfc95a36,SESCO,II.5.1,Santa Fe,AR-S,annual,2022,gas oil combustion consumption by agriculture machines,4227.63679296,TJ,CH4,3.9,kg/TJ,16487.783492544,kg +2a3cce4c-6a07-38a4-aa08-d5b1bfc95a36,SESCO,II.5.1,Santa Fe,AR-S,annual,2022,gas oil combustion consumption by agriculture machines,4227.63679296,TJ,N2O,3.9,kg/TJ,16487.783492544,kg +fccec1c0-8643-3a76-94a1-52d8943367df,SESCO,II.5.1,Santiago del Estero,AR-G,annual,2022,gas oil combustion consumption by agriculture machines,103.35380411999999,TJ,CO2,74100.0,kg/TJ,7658516.885291999,kg +e65f98ee-090a-354c-b40d-c9803593077a,SESCO,II.5.1,Santiago del Estero,AR-G,annual,2022,gas oil combustion consumption by agriculture machines,103.35380411999999,TJ,CH4,3.9,kg/TJ,403.07983606799996,kg +e65f98ee-090a-354c-b40d-c9803593077a,SESCO,II.5.1,Santiago del Estero,AR-G,annual,2022,gas oil combustion consumption by agriculture machines,103.35380411999999,TJ,N2O,3.9,kg/TJ,403.07983606799996,kg +9187e23c-1d1e-3679-8eaf-4e08299a04d5,SESCO,II.5.1,Tucuman,AR-T,annual,2022,gas oil combustion consumption by agriculture machines,70.99562988,TJ,CO2,74100.0,kg/TJ,5260776.174108,kg +6790c906-ffcc-3259-9482-91278d84f0b6,SESCO,II.5.1,Tucuman,AR-T,annual,2022,gas oil combustion consumption by agriculture machines,70.99562988,TJ,CH4,3.9,kg/TJ,276.882956532,kg +6790c906-ffcc-3259-9482-91278d84f0b6,SESCO,II.5.1,Tucuman,AR-T,annual,2022,gas oil combustion consumption by agriculture machines,70.99562988,TJ,N2O,3.9,kg/TJ,276.882956532,kg +5e3f3cff-ac61-32d6-9332-66c0706aeafc,SESCO,II.5.1,Buenos Aires,AR-B,annual,2022,gas oil combustion consumption by agriculture machines,226.59957852,TJ,CO2,74100.0,kg/TJ,16791028.768332,kg +b00b26d5-3b5e-34e8-bdc3-b89a27fbeff2,SESCO,II.5.1,Buenos Aires,AR-B,annual,2022,gas oil combustion consumption by agriculture machines,226.59957852,TJ,CH4,3.9,kg/TJ,883.7383562279999,kg +b00b26d5-3b5e-34e8-bdc3-b89a27fbeff2,SESCO,II.5.1,Buenos Aires,AR-B,annual,2022,gas oil combustion consumption by agriculture machines,226.59957852,TJ,N2O,3.9,kg/TJ,883.7383562279999,kg +cd111a23-c818-3240-967e-69ea03bba6bc,SESCO,II.5.1,Capital Federal,AR-C,annual,2022,gas oil combustion consumption by agriculture machines,23.217105240000002,TJ,CO2,74100.0,kg/TJ,1720387.4982840002,kg +cb52785f-edbf-3da9-b2d2-6f2ff6cd1ae2,SESCO,II.5.1,Capital Federal,AR-C,annual,2022,gas oil combustion consumption by agriculture machines,23.217105240000002,TJ,CH4,3.9,kg/TJ,90.54671043600001,kg +cb52785f-edbf-3da9-b2d2-6f2ff6cd1ae2,SESCO,II.5.1,Capital Federal,AR-C,annual,2022,gas oil combustion consumption by agriculture machines,23.217105240000002,TJ,N2O,3.9,kg/TJ,90.54671043600001,kg +3412f8e8-3e87-30b8-ae62-414815f80cc1,SESCO,II.5.1,Córdoba,AR-X,annual,2022,gas oil combustion consumption by agriculture machines,70.93798235999999,TJ,CO2,74100.0,kg/TJ,5256504.492876,kg +39c6dd2a-b198-3620-b361-432f57069893,SESCO,II.5.1,Córdoba,AR-X,annual,2022,gas oil combustion consumption by agriculture machines,70.93798235999999,TJ,CH4,3.9,kg/TJ,276.658131204,kg +39c6dd2a-b198-3620-b361-432f57069893,SESCO,II.5.1,Córdoba,AR-X,annual,2022,gas oil combustion consumption by agriculture machines,70.93798235999999,TJ,N2O,3.9,kg/TJ,276.658131204,kg +07eb849f-cf1c-3dc5-a7cf-894ff99c6767,SESCO,II.5.1,Entre Rios,AR-E,annual,2022,gas oil combustion consumption by agriculture machines,98.59604159999999,TJ,CO2,74100.0,kg/TJ,7305966.68256,kg +35f13758-964f-3bb1-ae91-868b9d8b7fce,SESCO,II.5.1,Entre Rios,AR-E,annual,2022,gas oil combustion consumption by agriculture machines,98.59604159999999,TJ,CH4,3.9,kg/TJ,384.52456223999997,kg +35f13758-964f-3bb1-ae91-868b9d8b7fce,SESCO,II.5.1,Entre Rios,AR-E,annual,2022,gas oil combustion consumption by agriculture machines,98.59604159999999,TJ,N2O,3.9,kg/TJ,384.52456223999997,kg +e41da70e-b7ab-3446-99b2-b2dc054cf4ff,SESCO,II.5.1,Jujuy,AR-Y,annual,2022,gas oil combustion consumption by agriculture machines,47.690139,TJ,CO2,74100.0,kg/TJ,3533839.2999,kg +6d804467-6b08-3917-b335-ceab67e3473b,SESCO,II.5.1,Jujuy,AR-Y,annual,2022,gas oil combustion consumption by agriculture machines,47.690139,TJ,CH4,3.9,kg/TJ,185.9915421,kg +6d804467-6b08-3917-b335-ceab67e3473b,SESCO,II.5.1,Jujuy,AR-Y,annual,2022,gas oil combustion consumption by agriculture machines,47.690139,TJ,N2O,3.9,kg/TJ,185.9915421,kg +d6d0cd4c-4938-3585-9d49-a2e671283d27,SESCO,II.5.1,La Pampa,AR-L,annual,2022,gas oil combustion consumption by agriculture machines,41.93463372,TJ,CO2,74100.0,kg/TJ,3107356.358652,kg +e8fcfea2-d241-3eee-87aa-58722e9204fa,SESCO,II.5.1,La Pampa,AR-L,annual,2022,gas oil combustion consumption by agriculture machines,41.93463372,TJ,CH4,3.9,kg/TJ,163.545071508,kg +e8fcfea2-d241-3eee-87aa-58722e9204fa,SESCO,II.5.1,La Pampa,AR-L,annual,2022,gas oil combustion consumption by agriculture machines,41.93463372,TJ,N2O,3.9,kg/TJ,163.545071508,kg +370ff26a-67c3-3c0b-9f24-2980876dd698,SESCO,II.5.1,Rio Negro,AR-R,annual,2022,gas oil combustion consumption by agriculture machines,168.5917254,TJ,CO2,74100.0,kg/TJ,12492646.85214,kg +65ca6225-476d-35b3-a0c5-a2809bbd5a95,SESCO,II.5.1,Rio Negro,AR-R,annual,2022,gas oil combustion consumption by agriculture machines,168.5917254,TJ,CH4,3.9,kg/TJ,657.50772906,kg +65ca6225-476d-35b3-a0c5-a2809bbd5a95,SESCO,II.5.1,Rio Negro,AR-R,annual,2022,gas oil combustion consumption by agriculture machines,168.5917254,TJ,N2O,3.9,kg/TJ,657.50772906,kg +4fde9c71-ec8f-3481-9daa-a563a9b2d9e1,SESCO,II.5.1,San Luis,AR-D,annual,2022,gas oil combustion consumption by agriculture machines,5.700169440000001,TJ,CO2,74100.0,kg/TJ,422382.55550400005,kg +b48b0089-347e-32e9-a7b3-feed3ed9bfd2,SESCO,II.5.1,San Luis,AR-D,annual,2022,gas oil combustion consumption by agriculture machines,5.700169440000001,TJ,CH4,3.9,kg/TJ,22.230660816000004,kg +b48b0089-347e-32e9-a7b3-feed3ed9bfd2,SESCO,II.5.1,San Luis,AR-D,annual,2022,gas oil combustion consumption by agriculture machines,5.700169440000001,TJ,N2O,3.9,kg/TJ,22.230660816000004,kg +a5346382-1f26-3fcb-84f7-7a501fa6bfbf,SESCO,II.5.1,Santa Fe,AR-S,annual,2022,gas oil combustion consumption by agriculture machines,335.99037108000005,TJ,CO2,74100.0,kg/TJ,24896886.497028004,kg +adb48355-734d-3c54-b9a3-759104f98605,SESCO,II.5.1,Santa Fe,AR-S,annual,2022,gas oil combustion consumption by agriculture machines,335.99037108000005,TJ,CH4,3.9,kg/TJ,1310.3624472120002,kg +adb48355-734d-3c54-b9a3-759104f98605,SESCO,II.5.1,Santa Fe,AR-S,annual,2022,gas oil combustion consumption by agriculture machines,335.99037108000005,TJ,N2O,3.9,kg/TJ,1310.3624472120002,kg +e4a2ed31-c862-366c-ba4d-18abb5eed70b,SESCO,II.5.1,Santiago del Estero,AR-G,annual,2022,gas oil combustion consumption by agriculture machines,13.274280599999999,TJ,CO2,74100.0,kg/TJ,983624.1924599999,kg +269892fb-986f-3401-b3a0-bf932c6adde5,SESCO,II.5.1,Santiago del Estero,AR-G,annual,2022,gas oil combustion consumption by agriculture machines,13.274280599999999,TJ,CH4,3.9,kg/TJ,51.769694339999994,kg +269892fb-986f-3401-b3a0-bf932c6adde5,SESCO,II.5.1,Santiago del Estero,AR-G,annual,2022,gas oil combustion consumption by agriculture machines,13.274280599999999,TJ,N2O,3.9,kg/TJ,51.769694339999994,kg +3ee31f81-0a77-3f78-80d1-ad024cce2566,SESCO,II.5.1,Tucuman,AR-T,annual,2022,gas oil combustion consumption by agriculture machines,3.9856613999999997,TJ,CO2,74100.0,kg/TJ,295337.50973999995,kg +92e18cbe-a5bd-3a8f-9b5e-25114ba3d2c2,SESCO,II.5.1,Tucuman,AR-T,annual,2022,gas oil combustion consumption by agriculture machines,3.9856613999999997,TJ,CH4,3.9,kg/TJ,15.544079459999999,kg +92e18cbe-a5bd-3a8f-9b5e-25114ba3d2c2,SESCO,II.5.1,Tucuman,AR-T,annual,2022,gas oil combustion consumption by agriculture machines,3.9856613999999997,TJ,N2O,3.9,kg/TJ,15.544079459999999,kg +137838ad-4994-3316-878e-d03273528bd0,SESCO,II.1.1,Buenos Aires,AR-B,annual,2022,gas oil combustion consumption by to the public,7995.747613559999,TJ,CO2,74100.0,kg/TJ,592484898.1647959,kg +fb0e166a-ae7c-3e5a-b4eb-52ed87213901,SESCO,II.1.1,Buenos Aires,AR-B,annual,2022,gas oil combustion consumption by to the public,7995.747613559999,TJ,CH4,3.9,kg/TJ,31183.415692883995,kg +fb0e166a-ae7c-3e5a-b4eb-52ed87213901,SESCO,II.1.1,Buenos Aires,AR-B,annual,2022,gas oil combustion consumption by to the public,7995.747613559999,TJ,N2O,3.9,kg/TJ,31183.415692883995,kg +7c5b1840-fb60-35c0-a5f2-f421460a6b71,SESCO,II.1.1,Capital Federal,AR-C,annual,2022,gas oil combustion consumption by to the public,323.0558352,TJ,CO2,74100.0,kg/TJ,23938437.38832,kg +fbdb6847-fdb5-31ee-8778-9f4de106f7ee,SESCO,II.1.1,Capital Federal,AR-C,annual,2022,gas oil combustion consumption by to the public,323.0558352,TJ,CH4,3.9,kg/TJ,1259.91775728,kg +fbdb6847-fdb5-31ee-8778-9f4de106f7ee,SESCO,II.1.1,Capital Federal,AR-C,annual,2022,gas oil combustion consumption by to the public,323.0558352,TJ,N2O,3.9,kg/TJ,1259.91775728,kg +32aa2bf5-c719-36c2-9697-05aae0d77395,SESCO,II.1.1,Catamarca,AR-K,annual,2022,gas oil combustion consumption by to the public,1.3584732,TJ,CO2,74100.0,kg/TJ,100662.86412,kg +a916405d-8190-3ef5-a117-7dc548950e9b,SESCO,II.1.1,Catamarca,AR-K,annual,2022,gas oil combustion consumption by to the public,1.3584732,TJ,CH4,3.9,kg/TJ,5.29804548,kg +a916405d-8190-3ef5-a117-7dc548950e9b,SESCO,II.1.1,Catamarca,AR-K,annual,2022,gas oil combustion consumption by to the public,1.3584732,TJ,N2O,3.9,kg/TJ,5.29804548,kg +b17e59ed-020d-32fd-b788-d12c204be58c,SESCO,II.1.1,Chaco,AR-H,annual,2022,gas oil combustion consumption by to the public,64.87906908000001,TJ,CO2,74100.0,kg/TJ,4807539.018828001,kg +e1336821-c5c1-3132-b9d9-cb595834d911,SESCO,II.1.1,Chaco,AR-H,annual,2022,gas oil combustion consumption by to the public,64.87906908000001,TJ,CH4,3.9,kg/TJ,253.02836941200002,kg +e1336821-c5c1-3132-b9d9-cb595834d911,SESCO,II.1.1,Chaco,AR-H,annual,2022,gas oil combustion consumption by to the public,64.87906908000001,TJ,N2O,3.9,kg/TJ,253.02836941200002,kg +d9003fa2-d42d-3f58-9143-5ec4f5b2f604,SESCO,II.1.1,Chubut,AR-U,annual,2022,gas oil combustion consumption by to the public,336.07435008,TJ,CO2,74100.0,kg/TJ,24903109.340928,kg +2e34e9a7-45af-361c-b172-1a93ecb0d94f,SESCO,II.1.1,Chubut,AR-U,annual,2022,gas oil combustion consumption by to the public,336.07435008,TJ,CH4,3.9,kg/TJ,1310.689965312,kg +2e34e9a7-45af-361c-b172-1a93ecb0d94f,SESCO,II.1.1,Chubut,AR-U,annual,2022,gas oil combustion consumption by to the public,336.07435008,TJ,N2O,3.9,kg/TJ,1310.689965312,kg +294cb13e-7bf5-3f46-aaa5-0cd01aa0123a,SESCO,II.1.1,Corrientes,AR-W,annual,2022,gas oil combustion consumption by to the public,935.65251612,TJ,CO2,74100.0,kg/TJ,69331851.444492,kg +a3722120-e152-33f4-9ed8-14c4720f6cef,SESCO,II.1.1,Corrientes,AR-W,annual,2022,gas oil combustion consumption by to the public,935.65251612,TJ,CH4,3.9,kg/TJ,3649.044812868,kg +a3722120-e152-33f4-9ed8-14c4720f6cef,SESCO,II.1.1,Corrientes,AR-W,annual,2022,gas oil combustion consumption by to the public,935.65251612,TJ,N2O,3.9,kg/TJ,3649.044812868,kg +1a1d5586-966d-3664-b3b0-dafb88f55e92,SESCO,II.1.1,Córdoba,AR-X,annual,2022,gas oil combustion consumption by to the public,1660.05211932,TJ,CO2,74100.0,kg/TJ,123009862.041612,kg +a0795f60-4a96-391b-a791-e8e45ba63f41,SESCO,II.1.1,Córdoba,AR-X,annual,2022,gas oil combustion consumption by to the public,1660.05211932,TJ,CH4,3.9,kg/TJ,6474.203265348,kg +a0795f60-4a96-391b-a791-e8e45ba63f41,SESCO,II.1.1,Córdoba,AR-X,annual,2022,gas oil combustion consumption by to the public,1660.05211932,TJ,N2O,3.9,kg/TJ,6474.203265348,kg +feb48251-a646-36a6-a624-e94140e1cc29,SESCO,II.1.1,Entre Rios,AR-E,annual,2022,gas oil combustion consumption by to the public,1643.75408904,TJ,CO2,74100.0,kg/TJ,121802177.99786401,kg +c2045555-6665-3381-a47d-dad85cebc272,SESCO,II.1.1,Entre Rios,AR-E,annual,2022,gas oil combustion consumption by to the public,1643.75408904,TJ,CH4,3.9,kg/TJ,6410.640947256,kg +c2045555-6665-3381-a47d-dad85cebc272,SESCO,II.1.1,Entre Rios,AR-E,annual,2022,gas oil combustion consumption by to the public,1643.75408904,TJ,N2O,3.9,kg/TJ,6410.640947256,kg +1e3223cb-3160-31a2-8fbb-80a3bc4fffe6,SESCO,II.1.1,Jujuy,AR-Y,annual,2022,gas oil combustion consumption by to the public,36.2561724,TJ,CO2,74100.0,kg/TJ,2686582.3748399997,kg +9e622706-192d-32e9-9e28-a357c15d89dc,SESCO,II.1.1,Jujuy,AR-Y,annual,2022,gas oil combustion consumption by to the public,36.2561724,TJ,CH4,3.9,kg/TJ,141.39907236,kg +9e622706-192d-32e9-9e28-a357c15d89dc,SESCO,II.1.1,Jujuy,AR-Y,annual,2022,gas oil combustion consumption by to the public,36.2561724,TJ,N2O,3.9,kg/TJ,141.39907236,kg +47ba6691-26b0-329f-a219-76f0315025ca,SESCO,II.1.1,La Pampa,AR-L,annual,2022,gas oil combustion consumption by to the public,1116.19122048,TJ,CO2,74100.0,kg/TJ,82709769.43756801,kg +292dae3f-e621-3e6f-9af4-4fb1db405ea9,SESCO,II.1.1,La Pampa,AR-L,annual,2022,gas oil combustion consumption by to the public,1116.19122048,TJ,CH4,3.9,kg/TJ,4353.145759872,kg +292dae3f-e621-3e6f-9af4-4fb1db405ea9,SESCO,II.1.1,La Pampa,AR-L,annual,2022,gas oil combustion consumption by to the public,1116.19122048,TJ,N2O,3.9,kg/TJ,4353.145759872,kg +42b30840-f396-31db-ba76-d517ff479a2d,SESCO,II.1.1,Mendoza,AR-M,annual,2022,gas oil combustion consumption by to the public,171.60561432,TJ,CO2,74100.0,kg/TJ,12715976.021112,kg +141c8611-41b2-3328-aae5-b7f77179d585,SESCO,II.1.1,Mendoza,AR-M,annual,2022,gas oil combustion consumption by to the public,171.60561432,TJ,CH4,3.9,kg/TJ,669.261895848,kg +141c8611-41b2-3328-aae5-b7f77179d585,SESCO,II.1.1,Mendoza,AR-M,annual,2022,gas oil combustion consumption by to the public,171.60561432,TJ,N2O,3.9,kg/TJ,669.261895848,kg +4413a178-c377-3889-8a54-1a70f117b537,SESCO,II.1.1,Neuquén,AR-Q,annual,2022,gas oil combustion consumption by to the public,264.9815574,TJ,CO2,74100.0,kg/TJ,19635133.40334,kg +0f53819c-54da-3889-80d7-179922389ddf,SESCO,II.1.1,Neuquén,AR-Q,annual,2022,gas oil combustion consumption by to the public,264.9815574,TJ,CH4,3.9,kg/TJ,1033.4280738599998,kg +0f53819c-54da-3889-80d7-179922389ddf,SESCO,II.1.1,Neuquén,AR-Q,annual,2022,gas oil combustion consumption by to the public,264.9815574,TJ,N2O,3.9,kg/TJ,1033.4280738599998,kg +06dd75df-7a85-3573-9232-feb6a2fb6631,SESCO,II.1.1,Rio Negro,AR-R,annual,2022,gas oil combustion consumption by to the public,872.23941336,TJ,CO2,74100.0,kg/TJ,64632940.529975995,kg +6b1acc2b-6169-327b-9ee0-fbc297ce74fb,SESCO,II.1.1,Rio Negro,AR-R,annual,2022,gas oil combustion consumption by to the public,872.23941336,TJ,CH4,3.9,kg/TJ,3401.7337121039996,kg +6b1acc2b-6169-327b-9ee0-fbc297ce74fb,SESCO,II.1.1,Rio Negro,AR-R,annual,2022,gas oil combustion consumption by to the public,872.23941336,TJ,N2O,3.9,kg/TJ,3401.7337121039996,kg +c123833f-e8e1-3180-876c-ab82c2105c7f,SESCO,II.1.1,San Juan,AR-J,annual,2022,gas oil combustion consumption by to the public,202.00221972,TJ,CO2,74100.0,kg/TJ,14968364.481252,kg +0d39a487-838c-3a52-b53b-d3f498d7d039,SESCO,II.1.1,San Juan,AR-J,annual,2022,gas oil combustion consumption by to the public,202.00221972,TJ,CH4,3.9,kg/TJ,787.808656908,kg +0d39a487-838c-3a52-b53b-d3f498d7d039,SESCO,II.1.1,San Juan,AR-J,annual,2022,gas oil combustion consumption by to the public,202.00221972,TJ,N2O,3.9,kg/TJ,787.808656908,kg +6b995c5c-a219-3b8e-a565-2fa187dd2337,SESCO,II.1.1,San Luis,AR-D,annual,2022,gas oil combustion consumption by to the public,98.66517528,TJ,CO2,74100.0,kg/TJ,7311089.488248,kg +d7d46b97-f254-3884-8a00-c955c22512a1,SESCO,II.1.1,San Luis,AR-D,annual,2022,gas oil combustion consumption by to the public,98.66517528,TJ,CH4,3.9,kg/TJ,384.79418359199997,kg +d7d46b97-f254-3884-8a00-c955c22512a1,SESCO,II.1.1,San Luis,AR-D,annual,2022,gas oil combustion consumption by to the public,98.66517528,TJ,N2O,3.9,kg/TJ,384.79418359199997,kg +569668d3-5cc8-387d-9c60-d83c2e529486,SESCO,II.1.1,Santa Fe,AR-S,annual,2022,gas oil combustion consumption by to the public,2046.2422108800001,TJ,CO2,74100.0,kg/TJ,151626547.826208,kg +1f9484b6-df83-3ec2-90bd-5fcf5f498031,SESCO,II.1.1,Santa Fe,AR-S,annual,2022,gas oil combustion consumption by to the public,2046.2422108800001,TJ,CH4,3.9,kg/TJ,7980.3446224320005,kg +1f9484b6-df83-3ec2-90bd-5fcf5f498031,SESCO,II.1.1,Santa Fe,AR-S,annual,2022,gas oil combustion consumption by to the public,2046.2422108800001,TJ,N2O,3.9,kg/TJ,7980.3446224320005,kg +a96f6a1d-d167-318a-8a5d-1a0b61eb1cd9,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2022,gas oil combustion consumption by to the public,444.55668852,TJ,CO2,74100.0,kg/TJ,32941650.619332,kg +222e2840-2f70-32ce-8c58-363beb673bf7,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2022,gas oil combustion consumption by to the public,444.55668852,TJ,CH4,3.9,kg/TJ,1733.771085228,kg +222e2840-2f70-32ce-8c58-363beb673bf7,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2022,gas oil combustion consumption by to the public,444.55668852,TJ,N2O,3.9,kg/TJ,1733.771085228,kg +e10ccf5a-092a-3289-9d5e-69d216874dfe,SESCO,II.1.1,Tucuman,AR-T,annual,2022,gas oil combustion consumption by to the public,20.76119808,TJ,CO2,74100.0,kg/TJ,1538404.777728,kg +3629f768-4650-3619-91f5-0155271ff9f2,SESCO,II.1.1,Tucuman,AR-T,annual,2022,gas oil combustion consumption by to the public,20.76119808,TJ,CH4,3.9,kg/TJ,80.968672512,kg +3629f768-4650-3619-91f5-0155271ff9f2,SESCO,II.1.1,Tucuman,AR-T,annual,2022,gas oil combustion consumption by to the public,20.76119808,TJ,N2O,3.9,kg/TJ,80.968672512,kg +5ae9cb4b-48ec-34b5-8329-2e0bade65625,SESCO,II.1.1,Buenos Aires,AR-B,annual,2022,gas oil combustion consumption by to the public,1959.05167332,TJ,CO2,74100.0,kg/TJ,145165728.993012,kg +e6e86486-0d0a-3dd2-be2b-c5b93eee3d4c,SESCO,II.1.1,Buenos Aires,AR-B,annual,2022,gas oil combustion consumption by to the public,1959.05167332,TJ,CH4,3.9,kg/TJ,7640.301525948,kg +e6e86486-0d0a-3dd2-be2b-c5b93eee3d4c,SESCO,II.1.1,Buenos Aires,AR-B,annual,2022,gas oil combustion consumption by to the public,1959.05167332,TJ,N2O,3.9,kg/TJ,7640.301525948,kg +95e183b9-0061-3899-b67a-c421dd2df0c4,SESCO,II.1.1,Capital Federal,AR-C,annual,2022,gas oil combustion consumption by to the public,57.05392392,TJ,CO2,74100.0,kg/TJ,4227695.762472,kg +6003ad36-ceae-3080-9c88-f069c92648be,SESCO,II.1.1,Capital Federal,AR-C,annual,2022,gas oil combustion consumption by to the public,57.05392392,TJ,CH4,3.9,kg/TJ,222.51030328800002,kg +6003ad36-ceae-3080-9c88-f069c92648be,SESCO,II.1.1,Capital Federal,AR-C,annual,2022,gas oil combustion consumption by to the public,57.05392392,TJ,N2O,3.9,kg/TJ,222.51030328800002,kg +21841b98-6ec0-3eee-a672-b111ba35a505,SESCO,II.1.1,Catamarca,AR-K,annual,2022,gas oil combustion consumption by to the public,1.6481555999999997,TJ,CO2,74100.0,kg/TJ,122128.32995999997,kg +e0b27196-6b1f-306b-8c80-dace002f4c70,SESCO,II.1.1,Catamarca,AR-K,annual,2022,gas oil combustion consumption by to the public,1.6481555999999997,TJ,CH4,3.9,kg/TJ,6.427806839999999,kg +e0b27196-6b1f-306b-8c80-dace002f4c70,SESCO,II.1.1,Catamarca,AR-K,annual,2022,gas oil combustion consumption by to the public,1.6481555999999997,TJ,N2O,3.9,kg/TJ,6.427806839999999,kg +22928fb5-3eb7-3791-8413-899329bd10be,SESCO,II.1.1,Chaco,AR-H,annual,2022,gas oil combustion consumption by to the public,31.16982624,TJ,CO2,74100.0,kg/TJ,2309684.124384,kg +0edba9a2-ce74-3bad-bac3-4b2d5c45512f,SESCO,II.1.1,Chaco,AR-H,annual,2022,gas oil combustion consumption by to the public,31.16982624,TJ,CH4,3.9,kg/TJ,121.562322336,kg +0edba9a2-ce74-3bad-bac3-4b2d5c45512f,SESCO,II.1.1,Chaco,AR-H,annual,2022,gas oil combustion consumption by to the public,31.16982624,TJ,N2O,3.9,kg/TJ,121.562322336,kg +70bf7386-566b-3ebc-afbb-ffdb28a17225,SESCO,II.1.1,Chubut,AR-U,annual,2022,gas oil combustion consumption by to the public,343.04207868000003,TJ,CO2,74100.0,kg/TJ,25419418.030188,kg +d20c0552-20cb-3a32-a456-c636f0982812,SESCO,II.1.1,Chubut,AR-U,annual,2022,gas oil combustion consumption by to the public,343.04207868000003,TJ,CH4,3.9,kg/TJ,1337.864106852,kg +d20c0552-20cb-3a32-a456-c636f0982812,SESCO,II.1.1,Chubut,AR-U,annual,2022,gas oil combustion consumption by to the public,343.04207868000003,TJ,N2O,3.9,kg/TJ,1337.864106852,kg +3b32df58-501f-3e74-910f-f8acb8a68b9f,SESCO,II.1.1,Corrientes,AR-W,annual,2022,gas oil combustion consumption by to the public,142.89462096,TJ,CO2,74100.0,kg/TJ,10588491.413136,kg +7584d1af-e89e-33d9-b3e2-409906731bc0,SESCO,II.1.1,Corrientes,AR-W,annual,2022,gas oil combustion consumption by to the public,142.89462096,TJ,CH4,3.9,kg/TJ,557.289021744,kg +7584d1af-e89e-33d9-b3e2-409906731bc0,SESCO,II.1.1,Corrientes,AR-W,annual,2022,gas oil combustion consumption by to the public,142.89462096,TJ,N2O,3.9,kg/TJ,557.289021744,kg +7157f611-681b-3fc5-ba91-5a7eedb6427d,SESCO,II.1.1,Córdoba,AR-X,annual,2022,gas oil combustion consumption by to the public,351.78391332,TJ,CO2,74100.0,kg/TJ,26067187.977012,kg +2df9959a-f91f-3c60-b11e-07735c68b66e,SESCO,II.1.1,Córdoba,AR-X,annual,2022,gas oil combustion consumption by to the public,351.78391332,TJ,CH4,3.9,kg/TJ,1371.957261948,kg +2df9959a-f91f-3c60-b11e-07735c68b66e,SESCO,II.1.1,Córdoba,AR-X,annual,2022,gas oil combustion consumption by to the public,351.78391332,TJ,N2O,3.9,kg/TJ,1371.957261948,kg +9906db93-b45c-35bf-8d8b-0ea2cf2627ac,SESCO,II.1.1,Entre Rios,AR-E,annual,2022,gas oil combustion consumption by to the public,397.01276328,TJ,CO2,74100.0,kg/TJ,29418645.759048,kg +3ad0e640-1bd0-3c74-9af9-e7d9d0774bbb,SESCO,II.1.1,Entre Rios,AR-E,annual,2022,gas oil combustion consumption by to the public,397.01276328,TJ,CH4,3.9,kg/TJ,1548.349776792,kg +3ad0e640-1bd0-3c74-9af9-e7d9d0774bbb,SESCO,II.1.1,Entre Rios,AR-E,annual,2022,gas oil combustion consumption by to the public,397.01276328,TJ,N2O,3.9,kg/TJ,1548.349776792,kg +d7247120-79d3-34af-82ca-1abd6ea0b64b,SESCO,II.1.1,Jujuy,AR-Y,annual,2022,gas oil combustion consumption by to the public,12.9250002,TJ,CO2,74100.0,kg/TJ,957742.5148199999,kg +c1b60d2b-d20e-3f6d-9e4d-73c9b92fcf1e,SESCO,II.1.1,Jujuy,AR-Y,annual,2022,gas oil combustion consumption by to the public,12.9250002,TJ,CH4,3.9,kg/TJ,50.40750078,kg +c1b60d2b-d20e-3f6d-9e4d-73c9b92fcf1e,SESCO,II.1.1,Jujuy,AR-Y,annual,2022,gas oil combustion consumption by to the public,12.9250002,TJ,N2O,3.9,kg/TJ,50.40750078,kg +eb71b6d1-1fbe-3aa9-a231-953bca13db4d,SESCO,II.1.1,La Pampa,AR-L,annual,2022,gas oil combustion consumption by to the public,216.56825988,TJ,CO2,74100.0,kg/TJ,16047708.057108,kg +c83f3ccd-35ae-3a58-ba36-9e8540a61074,SESCO,II.1.1,La Pampa,AR-L,annual,2022,gas oil combustion consumption by to the public,216.56825988,TJ,CH4,3.9,kg/TJ,844.616213532,kg +c83f3ccd-35ae-3a58-ba36-9e8540a61074,SESCO,II.1.1,La Pampa,AR-L,annual,2022,gas oil combustion consumption by to the public,216.56825988,TJ,N2O,3.9,kg/TJ,844.616213532,kg +c7b42c15-ceee-3c18-836f-9783fe3b0405,SESCO,II.1.1,Mendoza,AR-M,annual,2022,gas oil combustion consumption by to the public,38.58417864,TJ,CO2,74100.0,kg/TJ,2859087.637224,kg +b571082a-11ca-3783-bb28-1a070c5532a5,SESCO,II.1.1,Mendoza,AR-M,annual,2022,gas oil combustion consumption by to the public,38.58417864,TJ,CH4,3.9,kg/TJ,150.478296696,kg +b571082a-11ca-3783-bb28-1a070c5532a5,SESCO,II.1.1,Mendoza,AR-M,annual,2022,gas oil combustion consumption by to the public,38.58417864,TJ,N2O,3.9,kg/TJ,150.478296696,kg +1fe6ab4a-d4b5-35be-8dda-520b5e9b8bd4,SESCO,II.1.1,Neuquén,AR-Q,annual,2022,gas oil combustion consumption by to the public,305.71231152,TJ,CO2,74100.0,kg/TJ,22653282.283632003,kg +b4c300b4-f40e-37f5-85ca-b4f3dcd6cd91,SESCO,II.1.1,Neuquén,AR-Q,annual,2022,gas oil combustion consumption by to the public,305.71231152,TJ,CH4,3.9,kg/TJ,1192.278014928,kg +b4c300b4-f40e-37f5-85ca-b4f3dcd6cd91,SESCO,II.1.1,Neuquén,AR-Q,annual,2022,gas oil combustion consumption by to the public,305.71231152,TJ,N2O,3.9,kg/TJ,1192.278014928,kg +29773dc5-8f80-31ba-b254-7794e1537df2,SESCO,II.1.1,Rio Negro,AR-R,annual,2022,gas oil combustion consumption by to the public,435.31592831999995,TJ,CO2,74100.0,kg/TJ,32256910.288511995,kg +ead07052-672a-339f-815e-eeff3eb6e67b,SESCO,II.1.1,Rio Negro,AR-R,annual,2022,gas oil combustion consumption by to the public,435.31592831999995,TJ,CH4,3.9,kg/TJ,1697.7321204479997,kg +ead07052-672a-339f-815e-eeff3eb6e67b,SESCO,II.1.1,Rio Negro,AR-R,annual,2022,gas oil combustion consumption by to the public,435.31592831999995,TJ,N2O,3.9,kg/TJ,1697.7321204479997,kg +123687f5-225d-3c5b-9057-104d9a0fb2e9,SESCO,II.1.1,San Juan,AR-J,annual,2022,gas oil combustion consumption by to the public,48.09717528,TJ,CO2,74100.0,kg/TJ,3564000.688248,kg +895824ea-2cee-38e2-b318-6dcede39d5fe,SESCO,II.1.1,San Juan,AR-J,annual,2022,gas oil combustion consumption by to the public,48.09717528,TJ,CH4,3.9,kg/TJ,187.57898359200001,kg +895824ea-2cee-38e2-b318-6dcede39d5fe,SESCO,II.1.1,San Juan,AR-J,annual,2022,gas oil combustion consumption by to the public,48.09717528,TJ,N2O,3.9,kg/TJ,187.57898359200001,kg +c875107b-5ea2-38af-8260-82a6befc5746,SESCO,II.1.1,San Luis,AR-D,annual,2022,gas oil combustion consumption by to the public,37.8969234,TJ,CO2,74100.0,kg/TJ,2808162.0239399998,kg +225213d6-cb3c-32f4-bdac-94ce2357a8ab,SESCO,II.1.1,San Luis,AR-D,annual,2022,gas oil combustion consumption by to the public,37.8969234,TJ,CH4,3.9,kg/TJ,147.79800125999998,kg +225213d6-cb3c-32f4-bdac-94ce2357a8ab,SESCO,II.1.1,San Luis,AR-D,annual,2022,gas oil combustion consumption by to the public,37.8969234,TJ,N2O,3.9,kg/TJ,147.79800125999998,kg +af46286b-6ea4-3ccf-9c55-6bc175b51753,SESCO,II.1.1,Santa Fe,AR-S,annual,2022,gas oil combustion consumption by to the public,516.6086478,TJ,CO2,74100.0,kg/TJ,38280700.801979996,kg +199f0036-a3d3-396f-baf0-47292dd4b091,SESCO,II.1.1,Santa Fe,AR-S,annual,2022,gas oil combustion consumption by to the public,516.6086478,TJ,CH4,3.9,kg/TJ,2014.7737264199998,kg +199f0036-a3d3-396f-baf0-47292dd4b091,SESCO,II.1.1,Santa Fe,AR-S,annual,2022,gas oil combustion consumption by to the public,516.6086478,TJ,N2O,3.9,kg/TJ,2014.7737264199998,kg +bacedc85-4023-39dc-b163-4fe07d0a0dab,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2022,gas oil combustion consumption by to the public,50.15359524,TJ,CO2,74100.0,kg/TJ,3716381.407284,kg +4c18c7a4-b8c7-3109-8c9b-3b7e8528327b,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2022,gas oil combustion consumption by to the public,50.15359524,TJ,CH4,3.9,kg/TJ,195.599021436,kg +4c18c7a4-b8c7-3109-8c9b-3b7e8528327b,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2022,gas oil combustion consumption by to the public,50.15359524,TJ,N2O,3.9,kg/TJ,195.599021436,kg +c5165acc-33a1-3b54-a33e-644fa4711233,SESCO,II.1.1,Tucuman,AR-T,annual,2022,gas oil combustion consumption by to the public,1.2764808,TJ,CO2,74100.0,kg/TJ,94587.22728,kg +9000a508-2ff6-3207-b164-519fca1634e3,SESCO,II.1.1,Tucuman,AR-T,annual,2022,gas oil combustion consumption by to the public,1.2764808,TJ,CH4,3.9,kg/TJ,4.97827512,kg +9000a508-2ff6-3207-b164-519fca1634e3,SESCO,II.1.1,Tucuman,AR-T,annual,2022,gas oil combustion consumption by to the public,1.2764808,TJ,N2O,3.9,kg/TJ,4.97827512,kg +993e9e73-a91c-3c8c-97cc-ccfaae53ed0d,SESCO,II.5.1,Buenos Aires,AR-B,annual,2022,gas oil combustion consumption by agriculture machines,9559.55532,TJ,CO2,74100.0,kg/TJ,708363049.212,kg +2a99b7cc-8ebe-3e04-a208-bd2db5724e9c,SESCO,II.5.1,Buenos Aires,AR-B,annual,2022,gas oil combustion consumption by agriculture machines,9559.55532,TJ,CH4,3.9,kg/TJ,37282.265748,kg +2a99b7cc-8ebe-3e04-a208-bd2db5724e9c,SESCO,II.5.1,Buenos Aires,AR-B,annual,2022,gas oil combustion consumption by agriculture machines,9559.55532,TJ,N2O,3.9,kg/TJ,37282.265748,kg +11bf5a50-7478-3a5e-896d-af1211a9ed11,SESCO,II.5.1,Capital Federal,AR-C,annual,2022,gas oil combustion consumption by agriculture machines,69.3504,TJ,CO2,74100.0,kg/TJ,5138864.64,kg +b3f5066a-7275-3fe9-867d-64a2a74bfbfa,SESCO,II.5.1,Capital Federal,AR-C,annual,2022,gas oil combustion consumption by agriculture machines,69.3504,TJ,CH4,3.9,kg/TJ,270.46655999999996,kg +b3f5066a-7275-3fe9-867d-64a2a74bfbfa,SESCO,II.5.1,Capital Federal,AR-C,annual,2022,gas oil combustion consumption by agriculture machines,69.3504,TJ,N2O,3.9,kg/TJ,270.46655999999996,kg +e1564e83-fb09-3abe-b687-e8e274f27561,SESCO,II.5.1,Catamarca,AR-K,annual,2022,gas oil combustion consumption by agriculture machines,190.60524,TJ,CO2,74100.0,kg/TJ,14123848.284,kg +fac0e32b-8da8-3e1c-8b1f-e16f336d66c7,SESCO,II.5.1,Catamarca,AR-K,annual,2022,gas oil combustion consumption by agriculture machines,190.60524,TJ,CH4,3.9,kg/TJ,743.360436,kg +fac0e32b-8da8-3e1c-8b1f-e16f336d66c7,SESCO,II.5.1,Catamarca,AR-K,annual,2022,gas oil combustion consumption by agriculture machines,190.60524,TJ,N2O,3.9,kg/TJ,743.360436,kg +8bf3049f-744e-3d6b-a327-5b0db8cd6dc5,SESCO,II.5.1,Chaco,AR-H,annual,2022,gas oil combustion consumption by agriculture machines,965.55984,TJ,CO2,74100.0,kg/TJ,71547984.144,kg +cad7ce34-d5b4-3e41-a018-728cae021ba3,SESCO,II.5.1,Chaco,AR-H,annual,2022,gas oil combustion consumption by agriculture machines,965.55984,TJ,CH4,3.9,kg/TJ,3765.683376,kg +cad7ce34-d5b4-3e41-a018-728cae021ba3,SESCO,II.5.1,Chaco,AR-H,annual,2022,gas oil combustion consumption by agriculture machines,965.55984,TJ,N2O,3.9,kg/TJ,3765.683376,kg +66e3d13f-1aed-3600-82db-b673b7da81a4,SESCO,II.5.1,Corrientes,AR-W,annual,2022,gas oil combustion consumption by agriculture machines,784.77924,TJ,CO2,74100.0,kg/TJ,58152141.684,kg +534b0e05-80cd-35d2-b00c-72d6ccdf0ead,SESCO,II.5.1,Corrientes,AR-W,annual,2022,gas oil combustion consumption by agriculture machines,784.77924,TJ,CH4,3.9,kg/TJ,3060.6390359999996,kg +534b0e05-80cd-35d2-b00c-72d6ccdf0ead,SESCO,II.5.1,Corrientes,AR-W,annual,2022,gas oil combustion consumption by agriculture machines,784.77924,TJ,N2O,3.9,kg/TJ,3060.6390359999996,kg +4fc823d5-9c29-3fa7-b3a4-324e685d0ccb,SESCO,II.5.1,Córdoba,AR-X,annual,2022,gas oil combustion consumption by agriculture machines,7741.7802,TJ,CO2,74100.0,kg/TJ,573665912.82,kg +1e6aa6ca-aaed-3a04-8246-3a740b5487a1,SESCO,II.5.1,Córdoba,AR-X,annual,2022,gas oil combustion consumption by agriculture machines,7741.7802,TJ,CH4,3.9,kg/TJ,30192.94278,kg +1e6aa6ca-aaed-3a04-8246-3a740b5487a1,SESCO,II.5.1,Córdoba,AR-X,annual,2022,gas oil combustion consumption by agriculture machines,7741.7802,TJ,N2O,3.9,kg/TJ,30192.94278,kg +07ee0398-2b21-3b96-bd4a-8673899f2a46,SESCO,II.5.1,Entre Rios,AR-E,annual,2022,gas oil combustion consumption by agriculture machines,2110.78056,TJ,CO2,74100.0,kg/TJ,156408839.49600002,kg +2e208fe7-c1f6-3834-9a94-7276e4953e9e,SESCO,II.5.1,Entre Rios,AR-E,annual,2022,gas oil combustion consumption by agriculture machines,2110.78056,TJ,CH4,3.9,kg/TJ,8232.044184,kg +2e208fe7-c1f6-3834-9a94-7276e4953e9e,SESCO,II.5.1,Entre Rios,AR-E,annual,2022,gas oil combustion consumption by agriculture machines,2110.78056,TJ,N2O,3.9,kg/TJ,8232.044184,kg +3a6cc301-1272-33dd-848a-15e39639bd08,SESCO,II.5.1,Formosa,AR-P,annual,2022,gas oil combustion consumption by agriculture machines,320.52888,TJ,CO2,74100.0,kg/TJ,23751190.008,kg +2c1bb023-5b02-3404-847d-9b7d20c56420,SESCO,II.5.1,Formosa,AR-P,annual,2022,gas oil combustion consumption by agriculture machines,320.52888,TJ,CH4,3.9,kg/TJ,1250.0626320000001,kg +2c1bb023-5b02-3404-847d-9b7d20c56420,SESCO,II.5.1,Formosa,AR-P,annual,2022,gas oil combustion consumption by agriculture machines,320.52888,TJ,N2O,3.9,kg/TJ,1250.0626320000001,kg +fc8eb104-ea29-389e-ab70-cffcc0eee76b,SESCO,II.5.1,Jujuy,AR-Y,annual,2022,gas oil combustion consumption by agriculture machines,959.5639199999999,TJ,CO2,74100.0,kg/TJ,71103686.472,kg +bd787f78-aab8-303f-9e95-9de0c2f1f882,SESCO,II.5.1,Jujuy,AR-Y,annual,2022,gas oil combustion consumption by agriculture machines,959.5639199999999,TJ,CH4,3.9,kg/TJ,3742.2992879999997,kg +bd787f78-aab8-303f-9e95-9de0c2f1f882,SESCO,II.5.1,Jujuy,AR-Y,annual,2022,gas oil combustion consumption by agriculture machines,959.5639199999999,TJ,N2O,3.9,kg/TJ,3742.2992879999997,kg +06b5dc11-b266-3878-81ff-e487e2787642,SESCO,II.5.1,La Pampa,AR-L,annual,2022,gas oil combustion consumption by agriculture machines,1567.13844,TJ,CO2,74100.0,kg/TJ,116124958.404,kg +6e39fc7f-fbc1-370b-b3de-4199da219092,SESCO,II.5.1,La Pampa,AR-L,annual,2022,gas oil combustion consumption by agriculture machines,1567.13844,TJ,CH4,3.9,kg/TJ,6111.839916,kg +6e39fc7f-fbc1-370b-b3de-4199da219092,SESCO,II.5.1,La Pampa,AR-L,annual,2022,gas oil combustion consumption by agriculture machines,1567.13844,TJ,N2O,3.9,kg/TJ,6111.839916,kg +f65ea214-96e1-3140-8077-18941810af81,SESCO,II.5.1,La Rioja,AR-F,annual,2022,gas oil combustion consumption by agriculture machines,126.34776,TJ,CO2,74100.0,kg/TJ,9362369.015999999,kg +950dc955-cff5-3e5e-be7c-562a71e1f77a,SESCO,II.5.1,La Rioja,AR-F,annual,2022,gas oil combustion consumption by agriculture machines,126.34776,TJ,CH4,3.9,kg/TJ,492.756264,kg +950dc955-cff5-3e5e-be7c-562a71e1f77a,SESCO,II.5.1,La Rioja,AR-F,annual,2022,gas oil combustion consumption by agriculture machines,126.34776,TJ,N2O,3.9,kg/TJ,492.756264,kg +18e25c9e-e2a4-39d7-8495-69835efb42cb,SESCO,II.5.1,Mendoza,AR-M,annual,2022,gas oil combustion consumption by agriculture machines,2384.17284,TJ,CO2,74100.0,kg/TJ,176667207.444,kg +4072c111-1bb5-34c6-aa54-94c279f76a68,SESCO,II.5.1,Mendoza,AR-M,annual,2022,gas oil combustion consumption by agriculture machines,2384.17284,TJ,CH4,3.9,kg/TJ,9298.274076,kg +4072c111-1bb5-34c6-aa54-94c279f76a68,SESCO,II.5.1,Mendoza,AR-M,annual,2022,gas oil combustion consumption by agriculture machines,2384.17284,TJ,N2O,3.9,kg/TJ,9298.274076,kg +dbbd9b82-f59c-3a16-a275-9721da5ac6e5,SESCO,II.5.1,Misiones,AR-N,annual,2022,gas oil combustion consumption by agriculture machines,1143.81204,TJ,CO2,74100.0,kg/TJ,84756472.164,kg +45973dae-e1b1-3bcb-b010-2e816f35f6bf,SESCO,II.5.1,Misiones,AR-N,annual,2022,gas oil combustion consumption by agriculture machines,1143.81204,TJ,CH4,3.9,kg/TJ,4460.866956,kg +45973dae-e1b1-3bcb-b010-2e816f35f6bf,SESCO,II.5.1,Misiones,AR-N,annual,2022,gas oil combustion consumption by agriculture machines,1143.81204,TJ,N2O,3.9,kg/TJ,4460.866956,kg +c95b139a-cf13-34c2-a909-79d73d4ff3b2,SESCO,II.5.1,Rio Negro,AR-R,annual,2022,gas oil combustion consumption by agriculture machines,257.13828,TJ,CO2,74100.0,kg/TJ,19053946.548,kg +11b29e4b-b67b-3228-adca-ec1338bb9f78,SESCO,II.5.1,Rio Negro,AR-R,annual,2022,gas oil combustion consumption by agriculture machines,257.13828,TJ,CH4,3.9,kg/TJ,1002.839292,kg +11b29e4b-b67b-3228-adca-ec1338bb9f78,SESCO,II.5.1,Rio Negro,AR-R,annual,2022,gas oil combustion consumption by agriculture machines,257.13828,TJ,N2O,3.9,kg/TJ,1002.839292,kg +e4b0c610-b1f6-3fe2-af12-def00cd38c2e,SESCO,II.5.1,Salta,AR-A,annual,2022,gas oil combustion consumption by agriculture machines,1365.44436,TJ,CO2,74100.0,kg/TJ,101179427.07599999,kg +ef36d712-1bf3-39d5-89b6-95ba1b170328,SESCO,II.5.1,Salta,AR-A,annual,2022,gas oil combustion consumption by agriculture machines,1365.44436,TJ,CH4,3.9,kg/TJ,5325.233004,kg +ef36d712-1bf3-39d5-89b6-95ba1b170328,SESCO,II.5.1,Salta,AR-A,annual,2022,gas oil combustion consumption by agriculture machines,1365.44436,TJ,N2O,3.9,kg/TJ,5325.233004,kg +f0581eb3-bb66-35f5-acdf-711d93a543ba,SESCO,II.5.1,San Juan,AR-J,annual,2022,gas oil combustion consumption by agriculture machines,438.46067999999997,TJ,CO2,74100.0,kg/TJ,32489936.387999997,kg +e84d6d1e-09c6-33b0-95ee-fa6d71ba8261,SESCO,II.5.1,San Juan,AR-J,annual,2022,gas oil combustion consumption by agriculture machines,438.46067999999997,TJ,CH4,3.9,kg/TJ,1709.9966519999998,kg +e84d6d1e-09c6-33b0-95ee-fa6d71ba8261,SESCO,II.5.1,San Juan,AR-J,annual,2022,gas oil combustion consumption by agriculture machines,438.46067999999997,TJ,N2O,3.9,kg/TJ,1709.9966519999998,kg +c8d61277-a1a7-382a-b112-e8ba8a12b3cc,SESCO,II.5.1,San Luis,AR-D,annual,2022,gas oil combustion consumption by agriculture machines,287.47908,TJ,CO2,74100.0,kg/TJ,21302199.828,kg +c9e4ed80-7f33-388f-91e2-8e525f74ca76,SESCO,II.5.1,San Luis,AR-D,annual,2022,gas oil combustion consumption by agriculture machines,287.47908,TJ,CH4,3.9,kg/TJ,1121.168412,kg +c9e4ed80-7f33-388f-91e2-8e525f74ca76,SESCO,II.5.1,San Luis,AR-D,annual,2022,gas oil combustion consumption by agriculture machines,287.47908,TJ,N2O,3.9,kg/TJ,1121.168412,kg +f32b3e61-b53e-3542-a898-84d78e543d07,SESCO,II.5.1,Santa Fe,AR-S,annual,2022,gas oil combustion consumption by agriculture machines,6846.83496,TJ,CO2,74100.0,kg/TJ,507350470.536,kg +7a4e768f-32a9-37a8-80e1-e9709f9975bd,SESCO,II.5.1,Santa Fe,AR-S,annual,2022,gas oil combustion consumption by agriculture machines,6846.83496,TJ,CH4,3.9,kg/TJ,26702.656344,kg +7a4e768f-32a9-37a8-80e1-e9709f9975bd,SESCO,II.5.1,Santa Fe,AR-S,annual,2022,gas oil combustion consumption by agriculture machines,6846.83496,TJ,N2O,3.9,kg/TJ,26702.656344,kg +20f0df4c-2d7a-346f-b755-650e301a0852,SESCO,II.5.1,Santiago del Estero,AR-G,annual,2022,gas oil combustion consumption by agriculture machines,1481.1006,TJ,CO2,74100.0,kg/TJ,109749554.46,kg +61ff1844-0e71-3874-8f0f-25ea8d91e06a,SESCO,II.5.1,Santiago del Estero,AR-G,annual,2022,gas oil combustion consumption by agriculture machines,1481.1006,TJ,CH4,3.9,kg/TJ,5776.29234,kg +61ff1844-0e71-3874-8f0f-25ea8d91e06a,SESCO,II.5.1,Santiago del Estero,AR-G,annual,2022,gas oil combustion consumption by agriculture machines,1481.1006,TJ,N2O,3.9,kg/TJ,5776.29234,kg +81c7fdba-12fb-3cdb-87d5-ebb67d53eeb1,SESCO,II.5.1,Tucuman,AR-T,annual,2022,gas oil combustion consumption by agriculture machines,1101.8406,TJ,CO2,74100.0,kg/TJ,81646388.46,kg +55618f5a-d7c8-3f0c-9973-e94b5121889e,SESCO,II.5.1,Tucuman,AR-T,annual,2022,gas oil combustion consumption by agriculture machines,1101.8406,TJ,CH4,3.9,kg/TJ,4297.1783399999995,kg +55618f5a-d7c8-3f0c-9973-e94b5121889e,SESCO,II.5.1,Tucuman,AR-T,annual,2022,gas oil combustion consumption by agriculture machines,1101.8406,TJ,N2O,3.9,kg/TJ,4297.1783399999995,kg +e0ef2ea1-fe44-3657-aad2-9be1601881ff,SESCO,II.5.1,Buenos Aires,AR-B,annual,2022,gas oil combustion consumption by agriculture machines,1051.995,TJ,CO2,74100.0,kg/TJ,77952829.49999999,kg +186db40d-1bb2-3471-a628-7605fe8a111c,SESCO,II.5.1,Buenos Aires,AR-B,annual,2022,gas oil combustion consumption by agriculture machines,1051.995,TJ,CH4,3.9,kg/TJ,4102.7805,kg +186db40d-1bb2-3471-a628-7605fe8a111c,SESCO,II.5.1,Buenos Aires,AR-B,annual,2022,gas oil combustion consumption by agriculture machines,1051.995,TJ,N2O,3.9,kg/TJ,4102.7805,kg +2ef310b0-ee91-36ac-ae4e-f62899db45d0,SESCO,II.5.1,Capital Federal,AR-C,annual,2022,gas oil combustion consumption by agriculture machines,10.6554,TJ,CO2,74100.0,kg/TJ,789565.14,kg +5cd5f4a0-740e-3063-bf8d-5bc2af8ea949,SESCO,II.5.1,Capital Federal,AR-C,annual,2022,gas oil combustion consumption by agriculture machines,10.6554,TJ,CH4,3.9,kg/TJ,41.55606,kg +5cd5f4a0-740e-3063-bf8d-5bc2af8ea949,SESCO,II.5.1,Capital Federal,AR-C,annual,2022,gas oil combustion consumption by agriculture machines,10.6554,TJ,N2O,3.9,kg/TJ,41.55606,kg +b09110f3-94d3-30d4-b651-e3f9001ca36e,SESCO,II.5.1,Catamarca,AR-K,annual,2022,gas oil combustion consumption by agriculture machines,100.08852,TJ,CO2,74100.0,kg/TJ,7416559.332,kg +6728ca00-b196-39a5-9fad-0abe8e992319,SESCO,II.5.1,Catamarca,AR-K,annual,2022,gas oil combustion consumption by agriculture machines,100.08852,TJ,CH4,3.9,kg/TJ,390.345228,kg +6728ca00-b196-39a5-9fad-0abe8e992319,SESCO,II.5.1,Catamarca,AR-K,annual,2022,gas oil combustion consumption by agriculture machines,100.08852,TJ,N2O,3.9,kg/TJ,390.345228,kg +faeb3dd7-180d-3939-8b23-5572060267d6,SESCO,II.5.1,Chaco,AR-H,annual,2022,gas oil combustion consumption by agriculture machines,79.03056,TJ,CO2,74100.0,kg/TJ,5856164.495999999,kg +2a0abb2a-1d4c-3193-b628-45ad6d870a00,SESCO,II.5.1,Chaco,AR-H,annual,2022,gas oil combustion consumption by agriculture machines,79.03056,TJ,CH4,3.9,kg/TJ,308.219184,kg +2a0abb2a-1d4c-3193-b628-45ad6d870a00,SESCO,II.5.1,Chaco,AR-H,annual,2022,gas oil combustion consumption by agriculture machines,79.03056,TJ,N2O,3.9,kg/TJ,308.219184,kg +8229b30b-6d8f-3139-a1f1-c6e30f00f980,SESCO,II.5.1,Corrientes,AR-W,annual,2022,gas oil combustion consumption by agriculture machines,80.9088,TJ,CO2,74100.0,kg/TJ,5995342.08,kg +1a3a7e03-d4f8-39bb-ac1f-18d9eadce026,SESCO,II.5.1,Corrientes,AR-W,annual,2022,gas oil combustion consumption by agriculture machines,80.9088,TJ,CH4,3.9,kg/TJ,315.54431999999997,kg +1a3a7e03-d4f8-39bb-ac1f-18d9eadce026,SESCO,II.5.1,Corrientes,AR-W,annual,2022,gas oil combustion consumption by agriculture machines,80.9088,TJ,N2O,3.9,kg/TJ,315.54431999999997,kg +146c0145-7a46-378a-bc9e-2b4e3f468f89,SESCO,II.5.1,Córdoba,AR-X,annual,2022,gas oil combustion consumption by agriculture machines,864.49608,TJ,CO2,74100.0,kg/TJ,64059159.528,kg +d7dc2475-e453-3ebc-8b4b-bab2d01ce2b6,SESCO,II.5.1,Córdoba,AR-X,annual,2022,gas oil combustion consumption by agriculture machines,864.49608,TJ,CH4,3.9,kg/TJ,3371.534712,kg +d7dc2475-e453-3ebc-8b4b-bab2d01ce2b6,SESCO,II.5.1,Córdoba,AR-X,annual,2022,gas oil combustion consumption by agriculture machines,864.49608,TJ,N2O,3.9,kg/TJ,3371.534712,kg +df7bbf1a-3a00-3577-ad70-6c00f95d250d,SESCO,II.5.1,Entre Rios,AR-E,annual,2022,gas oil combustion consumption by agriculture machines,88.09667999999999,TJ,CO2,74100.0,kg/TJ,6527963.987999999,kg +9384433a-fdc2-359b-8122-4904144bcf49,SESCO,II.5.1,Entre Rios,AR-E,annual,2022,gas oil combustion consumption by agriculture machines,88.09667999999999,TJ,CH4,3.9,kg/TJ,343.577052,kg +9384433a-fdc2-359b-8122-4904144bcf49,SESCO,II.5.1,Entre Rios,AR-E,annual,2022,gas oil combustion consumption by agriculture machines,88.09667999999999,TJ,N2O,3.9,kg/TJ,343.577052,kg +685b73be-96c2-3f85-b8d0-7a124add38d9,SESCO,II.5.1,Formosa,AR-P,annual,2022,gas oil combustion consumption by agriculture machines,48.328559999999996,TJ,CO2,74100.0,kg/TJ,3581146.2959999996,kg +6d94f089-98fd-3050-95fb-c90d4d52723a,SESCO,II.5.1,Formosa,AR-P,annual,2022,gas oil combustion consumption by agriculture machines,48.328559999999996,TJ,CH4,3.9,kg/TJ,188.481384,kg +6d94f089-98fd-3050-95fb-c90d4d52723a,SESCO,II.5.1,Formosa,AR-P,annual,2022,gas oil combustion consumption by agriculture machines,48.328559999999996,TJ,N2O,3.9,kg/TJ,188.481384,kg +706444c9-b99f-3c64-be26-480ef16dc3e0,SESCO,II.5.1,Jujuy,AR-Y,annual,2022,gas oil combustion consumption by agriculture machines,72.52896,TJ,CO2,74100.0,kg/TJ,5374395.936,kg +b901f115-7944-3167-8ad8-fd33d59b2ffa,SESCO,II.5.1,Jujuy,AR-Y,annual,2022,gas oil combustion consumption by agriculture machines,72.52896,TJ,CH4,3.9,kg/TJ,282.86294399999997,kg +b901f115-7944-3167-8ad8-fd33d59b2ffa,SESCO,II.5.1,Jujuy,AR-Y,annual,2022,gas oil combustion consumption by agriculture machines,72.52896,TJ,N2O,3.9,kg/TJ,282.86294399999997,kg +f9a92dfe-4393-3da2-8963-62e04fde12e1,SESCO,II.5.1,La Pampa,AR-L,annual,2022,gas oil combustion consumption by agriculture machines,206.31744,TJ,CO2,74100.0,kg/TJ,15288122.304,kg +40863c9e-91d2-3911-8809-f358d1d73c43,SESCO,II.5.1,La Pampa,AR-L,annual,2022,gas oil combustion consumption by agriculture machines,206.31744,TJ,CH4,3.9,kg/TJ,804.638016,kg +40863c9e-91d2-3911-8809-f358d1d73c43,SESCO,II.5.1,La Pampa,AR-L,annual,2022,gas oil combustion consumption by agriculture machines,206.31744,TJ,N2O,3.9,kg/TJ,804.638016,kg +c42997c6-f3d0-3889-b5d6-ce451c46ca74,SESCO,II.5.1,La Rioja,AR-F,annual,2022,gas oil combustion consumption by agriculture machines,30.48528,TJ,CO2,74100.0,kg/TJ,2258959.248,kg +56b1ec22-a150-3239-9c88-784149fcb83c,SESCO,II.5.1,La Rioja,AR-F,annual,2022,gas oil combustion consumption by agriculture machines,30.48528,TJ,CH4,3.9,kg/TJ,118.892592,kg +56b1ec22-a150-3239-9c88-784149fcb83c,SESCO,II.5.1,La Rioja,AR-F,annual,2022,gas oil combustion consumption by agriculture machines,30.48528,TJ,N2O,3.9,kg/TJ,118.892592,kg +921a2c66-9632-3daf-9322-cac92beb4bf0,SESCO,II.5.1,Mendoza,AR-M,annual,2022,gas oil combustion consumption by agriculture machines,376.9122,TJ,CO2,74100.0,kg/TJ,27929194.02,kg +584295ca-7ee5-380d-9e22-de15e228350d,SESCO,II.5.1,Mendoza,AR-M,annual,2022,gas oil combustion consumption by agriculture machines,376.9122,TJ,CH4,3.9,kg/TJ,1469.95758,kg +584295ca-7ee5-380d-9e22-de15e228350d,SESCO,II.5.1,Mendoza,AR-M,annual,2022,gas oil combustion consumption by agriculture machines,376.9122,TJ,N2O,3.9,kg/TJ,1469.95758,kg +d2ecffae-14c8-3976-9587-fc6e9b5f2d54,SESCO,II.5.1,Misiones,AR-N,annual,2022,gas oil combustion consumption by agriculture machines,190.64136,TJ,CO2,74100.0,kg/TJ,14126524.775999999,kg +11c22b80-936e-3d95-a551-0e918092b028,SESCO,II.5.1,Misiones,AR-N,annual,2022,gas oil combustion consumption by agriculture machines,190.64136,TJ,CH4,3.9,kg/TJ,743.501304,kg +11c22b80-936e-3d95-a551-0e918092b028,SESCO,II.5.1,Misiones,AR-N,annual,2022,gas oil combustion consumption by agriculture machines,190.64136,TJ,N2O,3.9,kg/TJ,743.501304,kg +85114eec-18f5-3db1-a254-fbff8f7e8e1d,SESCO,II.5.1,Rio Negro,AR-R,annual,2022,gas oil combustion consumption by agriculture machines,93.22572,TJ,CO2,74100.0,kg/TJ,6908025.852,kg +b8b848e0-8b2c-3d46-bb75-229b407049d6,SESCO,II.5.1,Rio Negro,AR-R,annual,2022,gas oil combustion consumption by agriculture machines,93.22572,TJ,CH4,3.9,kg/TJ,363.580308,kg +b8b848e0-8b2c-3d46-bb75-229b407049d6,SESCO,II.5.1,Rio Negro,AR-R,annual,2022,gas oil combustion consumption by agriculture machines,93.22572,TJ,N2O,3.9,kg/TJ,363.580308,kg +9c18c547-acc8-3cec-8f85-b042c704a042,SESCO,II.5.1,Salta,AR-A,annual,2022,gas oil combustion consumption by agriculture machines,391.902,TJ,CO2,74100.0,kg/TJ,29039938.2,kg +4f1ad5b2-9dde-3555-b671-77c62e1bcd52,SESCO,II.5.1,Salta,AR-A,annual,2022,gas oil combustion consumption by agriculture machines,391.902,TJ,CH4,3.9,kg/TJ,1528.4178,kg +4f1ad5b2-9dde-3555-b671-77c62e1bcd52,SESCO,II.5.1,Salta,AR-A,annual,2022,gas oil combustion consumption by agriculture machines,391.902,TJ,N2O,3.9,kg/TJ,1528.4178,kg +fbf54cde-6fe3-3a8d-82e8-20045ab8dbab,SESCO,II.5.1,San Juan,AR-J,annual,2022,gas oil combustion consumption by agriculture machines,95.82636,TJ,CO2,74100.0,kg/TJ,7100733.276,kg +88a5a031-5f76-3d8b-bb20-6a1fde9c6f31,SESCO,II.5.1,San Juan,AR-J,annual,2022,gas oil combustion consumption by agriculture machines,95.82636,TJ,CH4,3.9,kg/TJ,373.722804,kg +88a5a031-5f76-3d8b-bb20-6a1fde9c6f31,SESCO,II.5.1,San Juan,AR-J,annual,2022,gas oil combustion consumption by agriculture machines,95.82636,TJ,N2O,3.9,kg/TJ,373.722804,kg +954dc51f-3377-3281-8fab-00282b561267,SESCO,II.5.1,San Luis,AR-D,annual,2022,gas oil combustion consumption by agriculture machines,56.81676,TJ,CO2,74100.0,kg/TJ,4210121.916,kg +6f2f7812-9393-304b-8a8e-116600c40322,SESCO,II.5.1,San Luis,AR-D,annual,2022,gas oil combustion consumption by agriculture machines,56.81676,TJ,CH4,3.9,kg/TJ,221.585364,kg +6f2f7812-9393-304b-8a8e-116600c40322,SESCO,II.5.1,San Luis,AR-D,annual,2022,gas oil combustion consumption by agriculture machines,56.81676,TJ,N2O,3.9,kg/TJ,221.585364,kg +b1914241-9e2e-3616-b517-b9397e41e1ac,SESCO,II.5.1,Santa Fe,AR-S,annual,2022,gas oil combustion consumption by agriculture machines,955.04892,TJ,CO2,74100.0,kg/TJ,70769124.972,kg +0bb2d34b-9e90-30da-9d78-b695bb6aaead,SESCO,II.5.1,Santa Fe,AR-S,annual,2022,gas oil combustion consumption by agriculture machines,955.04892,TJ,CH4,3.9,kg/TJ,3724.690788,kg +0bb2d34b-9e90-30da-9d78-b695bb6aaead,SESCO,II.5.1,Santa Fe,AR-S,annual,2022,gas oil combustion consumption by agriculture machines,955.04892,TJ,N2O,3.9,kg/TJ,3724.690788,kg +9532a1bd-937a-3205-8b53-ef5b1839c396,SESCO,II.5.1,Santiago del Estero,AR-G,annual,2022,gas oil combustion consumption by agriculture machines,306.6588,TJ,CO2,74100.0,kg/TJ,22723417.08,kg +3dbfd496-1c27-3dd9-90d7-4aeb3fdf8adc,SESCO,II.5.1,Santiago del Estero,AR-G,annual,2022,gas oil combustion consumption by agriculture machines,306.6588,TJ,CH4,3.9,kg/TJ,1195.96932,kg +3dbfd496-1c27-3dd9-90d7-4aeb3fdf8adc,SESCO,II.5.1,Santiago del Estero,AR-G,annual,2022,gas oil combustion consumption by agriculture machines,306.6588,TJ,N2O,3.9,kg/TJ,1195.96932,kg +ab88fb10-3dae-3ae0-b824-b34d833a73ce,SESCO,II.5.1,Tucuman,AR-T,annual,2022,gas oil combustion consumption by agriculture machines,198.2988,TJ,CO2,74100.0,kg/TJ,14693941.08,kg +bed109ec-d579-3262-98bc-cdd3c98bdd87,SESCO,II.5.1,Tucuman,AR-T,annual,2022,gas oil combustion consumption by agriculture machines,198.2988,TJ,CH4,3.9,kg/TJ,773.36532,kg +bed109ec-d579-3262-98bc-cdd3c98bdd87,SESCO,II.5.1,Tucuman,AR-T,annual,2022,gas oil combustion consumption by agriculture machines,198.2988,TJ,N2O,3.9,kg/TJ,773.36532,kg +40d65c8d-4638-391f-979f-6eb467f3354e,SESCO,II.5.1,Buenos Aires,AR-B,annual,2022,jet kerosene combustion consumption by agriculture machines,4.5292319999999995,TJ,CO2,71500.0,kg/TJ,323840.088,kg +6febe512-ac57-30f1-b0ae-7730b5c8fcdd,SESCO,II.5.1,Buenos Aires,AR-B,annual,2022,jet kerosene combustion consumption by agriculture machines,4.5292319999999995,TJ,CH4,0.5,kg/TJ,2.2646159999999997,kg +9874d6b7-f348-39bc-9eed-a138af9c4975,SESCO,II.5.1,Buenos Aires,AR-B,annual,2022,jet kerosene combustion consumption by agriculture machines,4.5292319999999995,TJ,N2O,2.0,kg/TJ,9.058463999999999,kg +d891a249-0d3b-35be-a5cc-ef04c9a98509,SESCO,II.5.1,La Pampa,AR-L,annual,2022,jet kerosene combustion consumption by agriculture machines,0.22017099999999995,TJ,CO2,71500.0,kg/TJ,15742.226499999997,kg +ee03073d-9725-3ef3-ab35-e110df465517,SESCO,II.5.1,La Pampa,AR-L,annual,2022,jet kerosene combustion consumption by agriculture machines,0.22017099999999995,TJ,CH4,0.5,kg/TJ,0.11008549999999998,kg +d3dcdefd-96ac-303f-b0e8-ba6f4b286079,SESCO,II.5.1,La Pampa,AR-L,annual,2022,jet kerosene combustion consumption by agriculture machines,0.22017099999999995,TJ,N2O,2.0,kg/TJ,0.4403419999999999,kg +be2a9b83-fefc-3f00-9e41-dcce22a0788f,SESCO,II.5.1,Santa Fe,AR-S,annual,2022,jet kerosene combustion consumption by agriculture machines,0.5661539999999999,TJ,CO2,71500.0,kg/TJ,40480.011,kg +3d7cf76a-3a0b-32c3-9edf-0617086eb265,SESCO,II.5.1,Santa Fe,AR-S,annual,2022,jet kerosene combustion consumption by agriculture machines,0.5661539999999999,TJ,CH4,0.5,kg/TJ,0.28307699999999997,kg +287cd96d-70fb-34ea-924e-a52cb435fdc2,SESCO,II.5.1,Santa Fe,AR-S,annual,2022,jet kerosene combustion consumption by agriculture machines,0.5661539999999999,TJ,N2O,2.0,kg/TJ,1.1323079999999999,kg +77dec686-d1e9-34b7-8b89-1cfe5b1f5078,SESCO,II.1.1,Buenos Aires,AR-B,annual,2022,gas oil combustion consumption by to the public,26754.33684,TJ,CO2,74100.0,kg/TJ,1982496359.844,kg +a211fd10-aa8b-3cae-8ad6-98e6e5377186,SESCO,II.1.1,Buenos Aires,AR-B,annual,2022,gas oil combustion consumption by to the public,26754.33684,TJ,CH4,3.9,kg/TJ,104341.913676,kg +a211fd10-aa8b-3cae-8ad6-98e6e5377186,SESCO,II.1.1,Buenos Aires,AR-B,annual,2022,gas oil combustion consumption by to the public,26754.33684,TJ,N2O,3.9,kg/TJ,104341.913676,kg +628073e0-2f25-3a5c-b24f-791a79b6dab1,SESCO,II.1.1,Capital Federal,AR-C,annual,2022,gas oil combustion consumption by to the public,2895.921,TJ,CO2,74100.0,kg/TJ,214587746.1,kg +4cecc1da-e2ab-3cc9-96b8-3c8f4659e7e9,SESCO,II.1.1,Capital Federal,AR-C,annual,2022,gas oil combustion consumption by to the public,2895.921,TJ,CH4,3.9,kg/TJ,11294.0919,kg +4cecc1da-e2ab-3cc9-96b8-3c8f4659e7e9,SESCO,II.1.1,Capital Federal,AR-C,annual,2022,gas oil combustion consumption by to the public,2895.921,TJ,N2O,3.9,kg/TJ,11294.0919,kg +a73e6348-b21e-355a-b184-c9c17d60fba6,SESCO,II.1.1,Catamarca,AR-K,annual,2022,gas oil combustion consumption by to the public,404.79684,TJ,CO2,74100.0,kg/TJ,29995445.843999997,kg +aea9907b-0121-3cdc-aa2f-b8c66308d079,SESCO,II.1.1,Catamarca,AR-K,annual,2022,gas oil combustion consumption by to the public,404.79684,TJ,CH4,3.9,kg/TJ,1578.7076759999998,kg +aea9907b-0121-3cdc-aa2f-b8c66308d079,SESCO,II.1.1,Catamarca,AR-K,annual,2022,gas oil combustion consumption by to the public,404.79684,TJ,N2O,3.9,kg/TJ,1578.7076759999998,kg +742ffb9a-d859-3184-9a92-de8e66df9b50,SESCO,II.1.1,Chaco,AR-H,annual,2022,gas oil combustion consumption by to the public,1858.0128,TJ,CO2,74100.0,kg/TJ,137678748.48,kg +e96f0963-d3b9-3761-83db-3e0b3cf6674f,SESCO,II.1.1,Chaco,AR-H,annual,2022,gas oil combustion consumption by to the public,1858.0128,TJ,CH4,3.9,kg/TJ,7246.249919999999,kg +e96f0963-d3b9-3761-83db-3e0b3cf6674f,SESCO,II.1.1,Chaco,AR-H,annual,2022,gas oil combustion consumption by to the public,1858.0128,TJ,N2O,3.9,kg/TJ,7246.249919999999,kg +682f6a10-be8f-3835-8de3-580231f52d1f,SESCO,II.1.1,Chubut,AR-U,annual,2022,gas oil combustion consumption by to the public,2669.15964,TJ,CO2,74100.0,kg/TJ,197784729.324,kg +0f82f66b-e8d7-379a-88d6-c8aa717aad2f,SESCO,II.1.1,Chubut,AR-U,annual,2022,gas oil combustion consumption by to the public,2669.15964,TJ,CH4,3.9,kg/TJ,10409.722596,kg +0f82f66b-e8d7-379a-88d6-c8aa717aad2f,SESCO,II.1.1,Chubut,AR-U,annual,2022,gas oil combustion consumption by to the public,2669.15964,TJ,N2O,3.9,kg/TJ,10409.722596,kg +e61e9292-9b2a-3472-92f5-129d69836f91,SESCO,II.1.1,Corrientes,AR-W,annual,2022,gas oil combustion consumption by to the public,1766.268,TJ,CO2,74100.0,kg/TJ,130880458.8,kg +f64c4337-3b53-3253-a177-6f8359573b0f,SESCO,II.1.1,Corrientes,AR-W,annual,2022,gas oil combustion consumption by to the public,1766.268,TJ,CH4,3.9,kg/TJ,6888.4452,kg +f64c4337-3b53-3253-a177-6f8359573b0f,SESCO,II.1.1,Corrientes,AR-W,annual,2022,gas oil combustion consumption by to the public,1766.268,TJ,N2O,3.9,kg/TJ,6888.4452,kg +27b7b078-5e57-32b8-ab80-5dc21630007b,SESCO,II.1.1,Córdoba,AR-X,annual,2022,gas oil combustion consumption by to the public,10342.52856,TJ,CO2,74100.0,kg/TJ,766381366.296,kg +83008ea8-0ba7-3d6c-ab5e-a8a38b496a8f,SESCO,II.1.1,Córdoba,AR-X,annual,2022,gas oil combustion consumption by to the public,10342.52856,TJ,CH4,3.9,kg/TJ,40335.861384,kg +83008ea8-0ba7-3d6c-ab5e-a8a38b496a8f,SESCO,II.1.1,Córdoba,AR-X,annual,2022,gas oil combustion consumption by to the public,10342.52856,TJ,N2O,3.9,kg/TJ,40335.861384,kg +4e64c9ea-bab0-3f81-a37a-739399e4b574,SESCO,II.1.1,Entre Rios,AR-E,annual,2022,gas oil combustion consumption by to the public,3752.72352,TJ,CO2,74100.0,kg/TJ,278076812.832,kg +e258ef39-1d00-3ebe-891a-9b545e95ed71,SESCO,II.1.1,Entre Rios,AR-E,annual,2022,gas oil combustion consumption by to the public,3752.72352,TJ,CH4,3.9,kg/TJ,14635.621728,kg +e258ef39-1d00-3ebe-891a-9b545e95ed71,SESCO,II.1.1,Entre Rios,AR-E,annual,2022,gas oil combustion consumption by to the public,3752.72352,TJ,N2O,3.9,kg/TJ,14635.621728,kg +2ccce4d9-9259-3f25-b7b7-3c14d08f3c8b,SESCO,II.1.1,Formosa,AR-P,annual,2022,gas oil combustion consumption by to the public,549.06012,TJ,CO2,74100.0,kg/TJ,40685354.892,kg +b681d84f-ddb7-3ff5-927a-ea81b45ee589,SESCO,II.1.1,Formosa,AR-P,annual,2022,gas oil combustion consumption by to the public,549.06012,TJ,CH4,3.9,kg/TJ,2141.334468,kg +b681d84f-ddb7-3ff5-927a-ea81b45ee589,SESCO,II.1.1,Formosa,AR-P,annual,2022,gas oil combustion consumption by to the public,549.06012,TJ,N2O,3.9,kg/TJ,2141.334468,kg +a71e354e-655a-3ee0-a4ab-69030eccc4ae,SESCO,II.1.1,Jujuy,AR-Y,annual,2022,gas oil combustion consumption by to the public,1478.24712,TJ,CO2,74100.0,kg/TJ,109538111.592,kg +63cece7a-2132-35be-804b-f729545fdfb6,SESCO,II.1.1,Jujuy,AR-Y,annual,2022,gas oil combustion consumption by to the public,1478.24712,TJ,CH4,3.9,kg/TJ,5765.163767999999,kg +63cece7a-2132-35be-804b-f729545fdfb6,SESCO,II.1.1,Jujuy,AR-Y,annual,2022,gas oil combustion consumption by to the public,1478.24712,TJ,N2O,3.9,kg/TJ,5765.163767999999,kg +c2c41051-a594-3d63-abe4-444360adaf48,SESCO,II.1.1,La Pampa,AR-L,annual,2022,gas oil combustion consumption by to the public,2842.75236,TJ,CO2,74100.0,kg/TJ,210647949.876,kg +381ae695-825d-3735-aca5-2c5aec25972c,SESCO,II.1.1,La Pampa,AR-L,annual,2022,gas oil combustion consumption by to the public,2842.75236,TJ,CH4,3.9,kg/TJ,11086.734204,kg +381ae695-825d-3735-aca5-2c5aec25972c,SESCO,II.1.1,La Pampa,AR-L,annual,2022,gas oil combustion consumption by to the public,2842.75236,TJ,N2O,3.9,kg/TJ,11086.734204,kg +90383480-e4b3-374b-a433-0c0deb27d1f6,SESCO,II.1.1,La Rioja,AR-F,annual,2022,gas oil combustion consumption by to the public,509.90604,TJ,CO2,74100.0,kg/TJ,37784037.564,kg +6055e9dc-9659-3952-94e7-03f45a5f0ebe,SESCO,II.1.1,La Rioja,AR-F,annual,2022,gas oil combustion consumption by to the public,509.90604,TJ,CH4,3.9,kg/TJ,1988.633556,kg +6055e9dc-9659-3952-94e7-03f45a5f0ebe,SESCO,II.1.1,La Rioja,AR-F,annual,2022,gas oil combustion consumption by to the public,509.90604,TJ,N2O,3.9,kg/TJ,1988.633556,kg +f4693b66-215d-383f-8c49-89f8ae3718a8,SESCO,II.1.1,Mendoza,AR-M,annual,2022,gas oil combustion consumption by to the public,8860.92228,TJ,CO2,74100.0,kg/TJ,656594340.9480001,kg +403a49ee-b2d7-3bf0-86a4-39578c14df39,SESCO,II.1.1,Mendoza,AR-M,annual,2022,gas oil combustion consumption by to the public,8860.92228,TJ,CH4,3.9,kg/TJ,34557.596892,kg +403a49ee-b2d7-3bf0-86a4-39578c14df39,SESCO,II.1.1,Mendoza,AR-M,annual,2022,gas oil combustion consumption by to the public,8860.92228,TJ,N2O,3.9,kg/TJ,34557.596892,kg +52fefedf-8b97-3822-94c4-ef4729af9d9a,SESCO,II.1.1,Misiones,AR-N,annual,2022,gas oil combustion consumption by to the public,2903.3256,TJ,CO2,74100.0,kg/TJ,215136426.96,kg +81147453-870c-3f51-931f-54d8b4e65a02,SESCO,II.1.1,Misiones,AR-N,annual,2022,gas oil combustion consumption by to the public,2903.3256,TJ,CH4,3.9,kg/TJ,11322.96984,kg +81147453-870c-3f51-931f-54d8b4e65a02,SESCO,II.1.1,Misiones,AR-N,annual,2022,gas oil combustion consumption by to the public,2903.3256,TJ,N2O,3.9,kg/TJ,11322.96984,kg +5767c084-d57a-3aba-9002-46ae1ad320d0,SESCO,II.1.1,Neuquén,AR-Q,annual,2022,gas oil combustion consumption by to the public,1666.14336,TJ,CO2,74100.0,kg/TJ,123461222.976,kg +55779c30-22bc-39e5-b21e-4265c13f3fc6,SESCO,II.1.1,Neuquén,AR-Q,annual,2022,gas oil combustion consumption by to the public,1666.14336,TJ,CH4,3.9,kg/TJ,6497.959104,kg +55779c30-22bc-39e5-b21e-4265c13f3fc6,SESCO,II.1.1,Neuquén,AR-Q,annual,2022,gas oil combustion consumption by to the public,1666.14336,TJ,N2O,3.9,kg/TJ,6497.959104,kg +690967af-e24b-328d-849f-bd5cbe138567,SESCO,II.1.1,Rio Negro,AR-R,annual,2022,gas oil combustion consumption by to the public,3180.51048,TJ,CO2,74100.0,kg/TJ,235675826.568,kg +c19f292c-375a-35da-be5a-acc316cdf2f5,SESCO,II.1.1,Rio Negro,AR-R,annual,2022,gas oil combustion consumption by to the public,3180.51048,TJ,CH4,3.9,kg/TJ,12403.990871999998,kg +c19f292c-375a-35da-be5a-acc316cdf2f5,SESCO,II.1.1,Rio Negro,AR-R,annual,2022,gas oil combustion consumption by to the public,3180.51048,TJ,N2O,3.9,kg/TJ,12403.990871999998,kg +024288b5-a3f1-30fb-9a5b-d751c3da5575,SESCO,II.1.1,Salta,AR-A,annual,2022,gas oil combustion consumption by to the public,3414.31524,TJ,CO2,74100.0,kg/TJ,253000759.28399998,kg +2399417f-dbf1-3f00-9cd5-ee17ffe6cf45,SESCO,II.1.1,Salta,AR-A,annual,2022,gas oil combustion consumption by to the public,3414.31524,TJ,CH4,3.9,kg/TJ,13315.829436,kg +2399417f-dbf1-3f00-9cd5-ee17ffe6cf45,SESCO,II.1.1,Salta,AR-A,annual,2022,gas oil combustion consumption by to the public,3414.31524,TJ,N2O,3.9,kg/TJ,13315.829436,kg +c8dc555f-d758-36e8-858f-e94f277e529f,SESCO,II.1.1,San Juan,AR-J,annual,2022,gas oil combustion consumption by to the public,1470.30072,TJ,CO2,74100.0,kg/TJ,108949283.352,kg +f2fb756b-5e95-3160-9ec5-d27518111dcd,SESCO,II.1.1,San Juan,AR-J,annual,2022,gas oil combustion consumption by to the public,1470.30072,TJ,CH4,3.9,kg/TJ,5734.172807999999,kg +f2fb756b-5e95-3160-9ec5-d27518111dcd,SESCO,II.1.1,San Juan,AR-J,annual,2022,gas oil combustion consumption by to the public,1470.30072,TJ,N2O,3.9,kg/TJ,5734.172807999999,kg +0d6f7f41-e182-3fd9-aa1a-1029e6520847,SESCO,II.1.1,San Luis,AR-D,annual,2022,gas oil combustion consumption by to the public,1299.16416,TJ,CO2,74100.0,kg/TJ,96268064.256,kg +2648b7f3-5e72-38e1-8c14-c184467f7c28,SESCO,II.1.1,San Luis,AR-D,annual,2022,gas oil combustion consumption by to the public,1299.16416,TJ,CH4,3.9,kg/TJ,5066.740224,kg +2648b7f3-5e72-38e1-8c14-c184467f7c28,SESCO,II.1.1,San Luis,AR-D,annual,2022,gas oil combustion consumption by to the public,1299.16416,TJ,N2O,3.9,kg/TJ,5066.740224,kg +81b5f476-da83-3e65-8a78-e7ac6e58c1a4,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2022,gas oil combustion consumption by to the public,1627.206,TJ,CO2,74100.0,kg/TJ,120575964.6,kg +21582b32-3269-3c11-a510-c3b476226934,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2022,gas oil combustion consumption by to the public,1627.206,TJ,CH4,3.9,kg/TJ,6346.103399999999,kg +21582b32-3269-3c11-a510-c3b476226934,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2022,gas oil combustion consumption by to the public,1627.206,TJ,N2O,3.9,kg/TJ,6346.103399999999,kg +a4885f80-891b-3169-b9a1-afd7802f2bf6,SESCO,II.1.1,Santa Fe,AR-S,annual,2022,gas oil combustion consumption by to the public,6821.00916,TJ,CO2,74100.0,kg/TJ,505436778.756,kg +a3b35b36-c7f1-3820-8d06-35802888890a,SESCO,II.1.1,Santa Fe,AR-S,annual,2022,gas oil combustion consumption by to the public,6821.00916,TJ,CH4,3.9,kg/TJ,26601.935724,kg +a3b35b36-c7f1-3820-8d06-35802888890a,SESCO,II.1.1,Santa Fe,AR-S,annual,2022,gas oil combustion consumption by to the public,6821.00916,TJ,N2O,3.9,kg/TJ,26601.935724,kg +c08d2cad-b5d1-3b30-8a7c-cd44c9321807,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2022,gas oil combustion consumption by to the public,2058.2982,TJ,CO2,74100.0,kg/TJ,152519896.62,kg +0a9c1bf5-6d56-374f-a064-18d75416969d,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2022,gas oil combustion consumption by to the public,2058.2982,TJ,CH4,3.9,kg/TJ,8027.362980000001,kg +0a9c1bf5-6d56-374f-a064-18d75416969d,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2022,gas oil combustion consumption by to the public,2058.2982,TJ,N2O,3.9,kg/TJ,8027.362980000001,kg +6c0216cb-cf32-34c1-b96a-ceea44997d2c,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2022,gas oil combustion consumption by to the public,706.39884,TJ,CO2,74100.0,kg/TJ,52344154.044,kg +8fcb01cc-8042-32cc-a4c9-e9f45940dde8,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2022,gas oil combustion consumption by to the public,706.39884,TJ,CH4,3.9,kg/TJ,2754.9554759999996,kg +8fcb01cc-8042-32cc-a4c9-e9f45940dde8,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2022,gas oil combustion consumption by to the public,706.39884,TJ,N2O,3.9,kg/TJ,2754.9554759999996,kg +95e7a064-fd81-3bc3-886a-bbc59e86798b,SESCO,II.1.1,Tucuman,AR-T,annual,2022,gas oil combustion consumption by to the public,2216.79276,TJ,CO2,74100.0,kg/TJ,164264343.51599997,kg +a33719f1-58c6-394b-852a-2a2053184683,SESCO,II.1.1,Tucuman,AR-T,annual,2022,gas oil combustion consumption by to the public,2216.79276,TJ,CH4,3.9,kg/TJ,8645.491763999999,kg +a33719f1-58c6-394b-852a-2a2053184683,SESCO,II.1.1,Tucuman,AR-T,annual,2022,gas oil combustion consumption by to the public,2216.79276,TJ,N2O,3.9,kg/TJ,8645.491763999999,kg +d66b736e-ffc8-37be-8a2e-ec55b37f051a,SESCO,II.1.1,Buenos Aires,AR-B,annual,2022,gas oil combustion consumption by to the public,17216.0562,TJ,CO2,74100.0,kg/TJ,1275709764.4199998,kg +96bee3f0-3789-3350-9ce4-d9535fe125e3,SESCO,II.1.1,Buenos Aires,AR-B,annual,2022,gas oil combustion consumption by to the public,17216.0562,TJ,CH4,3.9,kg/TJ,67142.61918,kg +96bee3f0-3789-3350-9ce4-d9535fe125e3,SESCO,II.1.1,Buenos Aires,AR-B,annual,2022,gas oil combustion consumption by to the public,17216.0562,TJ,N2O,3.9,kg/TJ,67142.61918,kg +ac778fde-a0c8-3ad7-833c-8ffcd308b159,SESCO,II.1.1,Capital Federal,AR-C,annual,2022,gas oil combustion consumption by to the public,2297.88216,TJ,CO2,74100.0,kg/TJ,170273068.056,kg +33a386d5-f36f-3a68-9cf6-29ae3250f105,SESCO,II.1.1,Capital Federal,AR-C,annual,2022,gas oil combustion consumption by to the public,2297.88216,TJ,CH4,3.9,kg/TJ,8961.740424,kg +33a386d5-f36f-3a68-9cf6-29ae3250f105,SESCO,II.1.1,Capital Federal,AR-C,annual,2022,gas oil combustion consumption by to the public,2297.88216,TJ,N2O,3.9,kg/TJ,8961.740424,kg +03e979ef-02fa-31b5-9591-c5e62143dcb2,SESCO,II.1.1,Catamarca,AR-K,annual,2022,gas oil combustion consumption by to the public,549.89088,TJ,CO2,74100.0,kg/TJ,40746914.208000004,kg +e7e4992f-db4e-35ea-992e-1699701267b2,SESCO,II.1.1,Catamarca,AR-K,annual,2022,gas oil combustion consumption by to the public,549.89088,TJ,CH4,3.9,kg/TJ,2144.574432,kg +e7e4992f-db4e-35ea-992e-1699701267b2,SESCO,II.1.1,Catamarca,AR-K,annual,2022,gas oil combustion consumption by to the public,549.89088,TJ,N2O,3.9,kg/TJ,2144.574432,kg +24ba5018-e984-3dc2-853b-3322add4edcd,SESCO,II.1.1,Chaco,AR-H,annual,2022,gas oil combustion consumption by to the public,1509.31032,TJ,CO2,74100.0,kg/TJ,111839894.712,kg +f5894679-ddf5-3c3c-bb19-d8eab1736351,SESCO,II.1.1,Chaco,AR-H,annual,2022,gas oil combustion consumption by to the public,1509.31032,TJ,CH4,3.9,kg/TJ,5886.310248,kg +f5894679-ddf5-3c3c-bb19-d8eab1736351,SESCO,II.1.1,Chaco,AR-H,annual,2022,gas oil combustion consumption by to the public,1509.31032,TJ,N2O,3.9,kg/TJ,5886.310248,kg +d6ba379b-7866-3acc-a842-3e98b2778fb8,SESCO,II.1.1,Chubut,AR-U,annual,2022,gas oil combustion consumption by to the public,2059.77912,TJ,CO2,74100.0,kg/TJ,152629632.79200003,kg +f4556f9f-6e3b-343f-8fb6-340ce0412dfb,SESCO,II.1.1,Chubut,AR-U,annual,2022,gas oil combustion consumption by to the public,2059.77912,TJ,CH4,3.9,kg/TJ,8033.138568,kg +f4556f9f-6e3b-343f-8fb6-340ce0412dfb,SESCO,II.1.1,Chubut,AR-U,annual,2022,gas oil combustion consumption by to the public,2059.77912,TJ,N2O,3.9,kg/TJ,8033.138568,kg +37c0b580-21ee-33e2-a38d-c0ef95f54d0e,SESCO,II.1.1,Corrientes,AR-W,annual,2022,gas oil combustion consumption by to the public,1560.2033999999999,TJ,CO2,74100.0,kg/TJ,115611071.94,kg +86c52ccd-f3f4-3e5f-a64a-467c41a4fbce,SESCO,II.1.1,Corrientes,AR-W,annual,2022,gas oil combustion consumption by to the public,1560.2033999999999,TJ,CH4,3.9,kg/TJ,6084.7932599999995,kg +86c52ccd-f3f4-3e5f-a64a-467c41a4fbce,SESCO,II.1.1,Corrientes,AR-W,annual,2022,gas oil combustion consumption by to the public,1560.2033999999999,TJ,N2O,3.9,kg/TJ,6084.7932599999995,kg +04c32420-a286-3de7-80de-0dd00f247b05,SESCO,II.1.1,Córdoba,AR-X,annual,2022,gas oil combustion consumption by to the public,5833.70508,TJ,CO2,74100.0,kg/TJ,432277546.428,kg +01d1908d-d99a-3a8b-a00a-9e8db49acb4a,SESCO,II.1.1,Córdoba,AR-X,annual,2022,gas oil combustion consumption by to the public,5833.70508,TJ,CH4,3.9,kg/TJ,22751.449812,kg +01d1908d-d99a-3a8b-a00a-9e8db49acb4a,SESCO,II.1.1,Córdoba,AR-X,annual,2022,gas oil combustion consumption by to the public,5833.70508,TJ,N2O,3.9,kg/TJ,22751.449812,kg +1e4d934a-a46c-315a-aa70-c33ba8e10bd6,SESCO,II.1.1,Entre Rios,AR-E,annual,2022,gas oil combustion consumption by to the public,2134.2585599999998,TJ,CO2,74100.0,kg/TJ,158148559.29599997,kg +350dc6e3-09ea-378f-993c-ea102bb02a39,SESCO,II.1.1,Entre Rios,AR-E,annual,2022,gas oil combustion consumption by to the public,2134.2585599999998,TJ,CH4,3.9,kg/TJ,8323.608384,kg +350dc6e3-09ea-378f-993c-ea102bb02a39,SESCO,II.1.1,Entre Rios,AR-E,annual,2022,gas oil combustion consumption by to the public,2134.2585599999998,TJ,N2O,3.9,kg/TJ,8323.608384,kg +ab69020a-e84c-3fff-ab7a-9d3d7e915447,SESCO,II.1.1,Formosa,AR-P,annual,2022,gas oil combustion consumption by to the public,506.61912,TJ,CO2,74100.0,kg/TJ,37540476.792,kg +fa1cbc25-7762-3ccb-80c8-3c3a63739c12,SESCO,II.1.1,Formosa,AR-P,annual,2022,gas oil combustion consumption by to the public,506.61912,TJ,CH4,3.9,kg/TJ,1975.814568,kg +fa1cbc25-7762-3ccb-80c8-3c3a63739c12,SESCO,II.1.1,Formosa,AR-P,annual,2022,gas oil combustion consumption by to the public,506.61912,TJ,N2O,3.9,kg/TJ,1975.814568,kg +cafd2d88-7f7c-3eae-9798-60268ae906fe,SESCO,II.1.1,Jujuy,AR-Y,annual,2022,gas oil combustion consumption by to the public,1084.79196,TJ,CO2,74100.0,kg/TJ,80383084.236,kg +fdd3b936-bfb2-37e9-aef6-8e3f25571eb6,SESCO,II.1.1,Jujuy,AR-Y,annual,2022,gas oil combustion consumption by to the public,1084.79196,TJ,CH4,3.9,kg/TJ,4230.688644,kg +fdd3b936-bfb2-37e9-aef6-8e3f25571eb6,SESCO,II.1.1,Jujuy,AR-Y,annual,2022,gas oil combustion consumption by to the public,1084.79196,TJ,N2O,3.9,kg/TJ,4230.688644,kg +95050006-993e-37e3-a706-bca5a8844967,SESCO,II.1.1,La Pampa,AR-L,annual,2022,gas oil combustion consumption by to the public,1637.139,TJ,CO2,74100.0,kg/TJ,121311999.89999999,kg +2d7961c6-4de3-3149-b665-da53f9f43a7e,SESCO,II.1.1,La Pampa,AR-L,annual,2022,gas oil combustion consumption by to the public,1637.139,TJ,CH4,3.9,kg/TJ,6384.8421,kg +2d7961c6-4de3-3149-b665-da53f9f43a7e,SESCO,II.1.1,La Pampa,AR-L,annual,2022,gas oil combustion consumption by to the public,1637.139,TJ,N2O,3.9,kg/TJ,6384.8421,kg +e0b0f0cd-1178-33b6-b5eb-933e7ef24c23,SESCO,II.1.1,La Rioja,AR-F,annual,2022,gas oil combustion consumption by to the public,630.51072,TJ,CO2,74100.0,kg/TJ,46720844.352,kg +beb2f4cf-61b2-3f91-8d84-c01bc868d31d,SESCO,II.1.1,La Rioja,AR-F,annual,2022,gas oil combustion consumption by to the public,630.51072,TJ,CH4,3.9,kg/TJ,2458.9918079999998,kg +beb2f4cf-61b2-3f91-8d84-c01bc868d31d,SESCO,II.1.1,La Rioja,AR-F,annual,2022,gas oil combustion consumption by to the public,630.51072,TJ,N2O,3.9,kg/TJ,2458.9918079999998,kg +bcab7445-1cfc-39fb-8fe2-c05d11271cb4,SESCO,II.1.1,Mendoza,AR-M,annual,2022,gas oil combustion consumption by to the public,4743.2422799999995,TJ,CO2,74100.0,kg/TJ,351474252.94799995,kg +4deb1607-6f59-30fc-b941-6417e0f572ca,SESCO,II.1.1,Mendoza,AR-M,annual,2022,gas oil combustion consumption by to the public,4743.2422799999995,TJ,CH4,3.9,kg/TJ,18498.644891999997,kg +4deb1607-6f59-30fc-b941-6417e0f572ca,SESCO,II.1.1,Mendoza,AR-M,annual,2022,gas oil combustion consumption by to the public,4743.2422799999995,TJ,N2O,3.9,kg/TJ,18498.644891999997,kg +1ca3c0c5-0a22-3e3f-87b7-cb3575911ced,SESCO,II.1.1,Misiones,AR-N,annual,2022,gas oil combustion consumption by to the public,2046.1618799999999,TJ,CO2,74100.0,kg/TJ,151620595.308,kg +691290d0-29c9-3047-9d2d-69966aa21c1e,SESCO,II.1.1,Misiones,AR-N,annual,2022,gas oil combustion consumption by to the public,2046.1618799999999,TJ,CH4,3.9,kg/TJ,7980.031332,kg +691290d0-29c9-3047-9d2d-69966aa21c1e,SESCO,II.1.1,Misiones,AR-N,annual,2022,gas oil combustion consumption by to the public,2046.1618799999999,TJ,N2O,3.9,kg/TJ,7980.031332,kg +8fc8b952-27d3-3fe6-9a44-0197fa5b6019,SESCO,II.1.1,Neuquén,AR-Q,annual,2022,gas oil combustion consumption by to the public,2630.94468,TJ,CO2,74100.0,kg/TJ,194953000.78800002,kg +7bafe647-80c0-3e48-92e5-b5b6840af684,SESCO,II.1.1,Neuquén,AR-Q,annual,2022,gas oil combustion consumption by to the public,2630.94468,TJ,CH4,3.9,kg/TJ,10260.684252,kg +7bafe647-80c0-3e48-92e5-b5b6840af684,SESCO,II.1.1,Neuquén,AR-Q,annual,2022,gas oil combustion consumption by to the public,2630.94468,TJ,N2O,3.9,kg/TJ,10260.684252,kg +9ded7d8b-ef95-3383-9bfb-43efa6663a11,SESCO,II.1.1,Rio Negro,AR-R,annual,2022,gas oil combustion consumption by to the public,2064.6192,TJ,CO2,74100.0,kg/TJ,152988282.72,kg +f39c3cb7-3146-31dd-8140-23583ba5876b,SESCO,II.1.1,Rio Negro,AR-R,annual,2022,gas oil combustion consumption by to the public,2064.6192,TJ,CH4,3.9,kg/TJ,8052.01488,kg +f39c3cb7-3146-31dd-8140-23583ba5876b,SESCO,II.1.1,Rio Negro,AR-R,annual,2022,gas oil combustion consumption by to the public,2064.6192,TJ,N2O,3.9,kg/TJ,8052.01488,kg +7fb134b3-069a-3b6b-bb4b-71d83d72e6c3,SESCO,II.1.1,Salta,AR-A,annual,2022,gas oil combustion consumption by to the public,2373.084,TJ,CO2,74100.0,kg/TJ,175845524.39999998,kg +c90b54a0-3fda-37a9-93be-7bcc89f856bd,SESCO,II.1.1,Salta,AR-A,annual,2022,gas oil combustion consumption by to the public,2373.084,TJ,CH4,3.9,kg/TJ,9255.0276,kg +c90b54a0-3fda-37a9-93be-7bcc89f856bd,SESCO,II.1.1,Salta,AR-A,annual,2022,gas oil combustion consumption by to the public,2373.084,TJ,N2O,3.9,kg/TJ,9255.0276,kg +cda32ef6-8136-337e-bbf6-6fe9a8a70ae1,SESCO,II.1.1,San Juan,AR-J,annual,2022,gas oil combustion consumption by to the public,897.6903599999999,TJ,CO2,74100.0,kg/TJ,66518855.676,kg +0badd97d-4917-33fc-be1c-c6f175ec0342,SESCO,II.1.1,San Juan,AR-J,annual,2022,gas oil combustion consumption by to the public,897.6903599999999,TJ,CH4,3.9,kg/TJ,3500.9924039999996,kg +0badd97d-4917-33fc-be1c-c6f175ec0342,SESCO,II.1.1,San Juan,AR-J,annual,2022,gas oil combustion consumption by to the public,897.6903599999999,TJ,N2O,3.9,kg/TJ,3500.9924039999996,kg +effb261d-2f6d-3c3c-a3d1-cf926540cc66,SESCO,II.1.1,San Luis,AR-D,annual,2022,gas oil combustion consumption by to the public,836.93652,TJ,CO2,74100.0,kg/TJ,62016996.132,kg +078ec1e3-0a58-31e2-bc59-ad6cf86c2c1f,SESCO,II.1.1,San Luis,AR-D,annual,2022,gas oil combustion consumption by to the public,836.93652,TJ,CH4,3.9,kg/TJ,3264.052428,kg +078ec1e3-0a58-31e2-bc59-ad6cf86c2c1f,SESCO,II.1.1,San Luis,AR-D,annual,2022,gas oil combustion consumption by to the public,836.93652,TJ,N2O,3.9,kg/TJ,3264.052428,kg +d256308e-2ad4-3059-b64d-e46bb9ae696f,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2022,gas oil combustion consumption by to the public,1748.96652,TJ,CO2,74100.0,kg/TJ,129598419.132,kg +5b8e1105-4133-3d94-a0e8-11a035a628d7,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2022,gas oil combustion consumption by to the public,1748.96652,TJ,CH4,3.9,kg/TJ,6820.969427999999,kg +5b8e1105-4133-3d94-a0e8-11a035a628d7,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2022,gas oil combustion consumption by to the public,1748.96652,TJ,N2O,3.9,kg/TJ,6820.969427999999,kg +32617e32-64c3-3e23-bd46-7c561dfadb45,SESCO,II.1.1,Santa Fe,AR-S,annual,2022,gas oil combustion consumption by to the public,4444.60212,TJ,CO2,74100.0,kg/TJ,329345017.09199995,kg +ba2f7402-62bc-3fd8-8053-88efc89ee594,SESCO,II.1.1,Santa Fe,AR-S,annual,2022,gas oil combustion consumption by to the public,4444.60212,TJ,CH4,3.9,kg/TJ,17333.948267999996,kg +ba2f7402-62bc-3fd8-8053-88efc89ee594,SESCO,II.1.1,Santa Fe,AR-S,annual,2022,gas oil combustion consumption by to the public,4444.60212,TJ,N2O,3.9,kg/TJ,17333.948267999996,kg +df0f6ce3-35bf-3cdd-bb29-f03adcc2afab,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2022,gas oil combustion consumption by to the public,1182.35208,TJ,CO2,74100.0,kg/TJ,87612289.12799999,kg +389094ff-3fc0-30f1-b283-58c33c07fe70,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2022,gas oil combustion consumption by to the public,1182.35208,TJ,CH4,3.9,kg/TJ,4611.1731119999995,kg +389094ff-3fc0-30f1-b283-58c33c07fe70,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2022,gas oil combustion consumption by to the public,1182.35208,TJ,N2O,3.9,kg/TJ,4611.1731119999995,kg +55d2c3f1-ea3e-3866-886e-ec456e640347,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2022,gas oil combustion consumption by to the public,427.69692,TJ,CO2,74100.0,kg/TJ,31692341.772,kg +093388ea-74a1-37d0-a3c1-19b69d5dcf72,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2022,gas oil combustion consumption by to the public,427.69692,TJ,CH4,3.9,kg/TJ,1668.0179879999998,kg +093388ea-74a1-37d0-a3c1-19b69d5dcf72,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2022,gas oil combustion consumption by to the public,427.69692,TJ,N2O,3.9,kg/TJ,1668.0179879999998,kg +77bce7b8-d549-3b21-a820-9a8f2b8d2878,SESCO,II.1.1,Tucuman,AR-T,annual,2022,gas oil combustion consumption by to the public,1580.68344,TJ,CO2,74100.0,kg/TJ,117128642.904,kg +79a37276-d05b-30d7-9b73-e0ed7fb7ea6b,SESCO,II.1.1,Tucuman,AR-T,annual,2022,gas oil combustion consumption by to the public,1580.68344,TJ,CH4,3.9,kg/TJ,6164.665416,kg +79a37276-d05b-30d7-9b73-e0ed7fb7ea6b,SESCO,II.1.1,Tucuman,AR-T,annual,2022,gas oil combustion consumption by to the public,1580.68344,TJ,N2O,3.9,kg/TJ,6164.665416,kg +07627e93-69d2-3a77-8231-1b30b1fe5f89,SESCO,II.1.1,Buenos Aires,AR-B,annual,2022,jet kerosene combustion consumption by to the public,101.12139499999998,TJ,CO2,71500.0,kg/TJ,7230179.742499999,kg +913113fa-4806-301b-b133-8e9f2ff41082,SESCO,II.1.1,Buenos Aires,AR-B,annual,2022,jet kerosene combustion consumption by to the public,101.12139499999998,TJ,CH4,0.5,kg/TJ,50.56069749999999,kg +59b2339c-4fc2-3e30-bfb4-bd09cec1ecea,SESCO,II.1.1,Buenos Aires,AR-B,annual,2022,jet kerosene combustion consumption by to the public,101.12139499999998,TJ,N2O,2.0,kg/TJ,202.24278999999996,kg +c35d1b95-9457-3972-85f7-70d70eb9d3d1,SESCO,II.1.1,Capital Federal,AR-C,annual,2022,jet kerosene combustion consumption by to the public,2.8936759999999997,TJ,CO2,71500.0,kg/TJ,206897.83399999997,kg +762bca92-0e84-3eaf-993b-c3a620e5fc63,SESCO,II.1.1,Capital Federal,AR-C,annual,2022,jet kerosene combustion consumption by to the public,2.8936759999999997,TJ,CH4,0.5,kg/TJ,1.4468379999999998,kg +03aa3d30-8c12-356c-b5e0-960d1d7c5c4a,SESCO,II.1.1,Capital Federal,AR-C,annual,2022,jet kerosene combustion consumption by to the public,2.8936759999999997,TJ,N2O,2.0,kg/TJ,5.787351999999999,kg +e6577b56-9130-3825-b304-458feb941ed9,SESCO,II.1.1,Catamarca,AR-K,annual,2022,jet kerosene combustion consumption by to the public,2.5791459999999997,TJ,CO2,71500.0,kg/TJ,184408.93899999998,kg +5c34a6ba-6a83-31b0-85eb-aa44be7013bd,SESCO,II.1.1,Catamarca,AR-K,annual,2022,jet kerosene combustion consumption by to the public,2.5791459999999997,TJ,CH4,0.5,kg/TJ,1.2895729999999999,kg +f7cf1b99-acb1-3ed5-8d06-90c973ac8461,SESCO,II.1.1,Catamarca,AR-K,annual,2022,jet kerosene combustion consumption by to the public,2.5791459999999997,TJ,N2O,2.0,kg/TJ,5.158291999999999,kg +715175ad-4a72-3fb2-b91c-2d5cb94cb5fc,SESCO,II.1.1,Chubut,AR-U,annual,2022,jet kerosene combustion consumption by to the public,7.863249999999999,TJ,CO2,71500.0,kg/TJ,562222.3749999999,kg +21758d03-65af-340b-a683-c0b97a18b2cd,SESCO,II.1.1,Chubut,AR-U,annual,2022,jet kerosene combustion consumption by to the public,7.863249999999999,TJ,CH4,0.5,kg/TJ,3.9316249999999995,kg +a643c96e-1304-3d5a-9892-212ee71cd6f3,SESCO,II.1.1,Chubut,AR-U,annual,2022,jet kerosene combustion consumption by to the public,7.863249999999999,TJ,N2O,2.0,kg/TJ,15.726499999999998,kg +69fbd5b8-bcf4-3693-ba24-db75e7610a53,SESCO,II.1.1,Corrientes,AR-W,annual,2022,jet kerosene combustion consumption by to the public,1.5411969999999997,TJ,CO2,71500.0,kg/TJ,110195.58549999997,kg +1d4dbb50-d877-3819-8bcc-7becd5891578,SESCO,II.1.1,Corrientes,AR-W,annual,2022,jet kerosene combustion consumption by to the public,1.5411969999999997,TJ,CH4,0.5,kg/TJ,0.7705984999999999,kg +5d5e0e71-bb50-3980-992a-e07ce73d1c3e,SESCO,II.1.1,Corrientes,AR-W,annual,2022,jet kerosene combustion consumption by to the public,1.5411969999999997,TJ,N2O,2.0,kg/TJ,3.0823939999999994,kg +7d96befa-5a16-3d20-be50-d9abca16af76,SESCO,II.1.1,Córdoba,AR-X,annual,2022,jet kerosene combustion consumption by to the public,32.459495999999994,TJ,CO2,71500.0,kg/TJ,2320853.9639999997,kg +763aa021-1785-3042-92dd-78465e2c6458,SESCO,II.1.1,Córdoba,AR-X,annual,2022,jet kerosene combustion consumption by to the public,32.459495999999994,TJ,CH4,0.5,kg/TJ,16.229747999999997,kg +36c0da1b-2b67-348d-8598-23d20fa72c52,SESCO,II.1.1,Córdoba,AR-X,annual,2022,jet kerosene combustion consumption by to the public,32.459495999999994,TJ,N2O,2.0,kg/TJ,64.91899199999999,kg +f52ecc76-7994-32ca-ae03-941975016970,SESCO,II.1.1,Entre Rios,AR-E,annual,2022,jet kerosene combustion consumption by to the public,3.837265999999999,TJ,CO2,71500.0,kg/TJ,274364.5189999999,kg +2f7cbfcd-4a08-3023-bcff-6ad09305e8e0,SESCO,II.1.1,Entre Rios,AR-E,annual,2022,jet kerosene combustion consumption by to the public,3.837265999999999,TJ,CH4,0.5,kg/TJ,1.9186329999999996,kg +77a6b7d0-0a0e-3e04-9490-8923c5fbfb1e,SESCO,II.1.1,Entre Rios,AR-E,annual,2022,jet kerosene combustion consumption by to the public,3.837265999999999,TJ,N2O,2.0,kg/TJ,7.674531999999998,kg +d9acfbef-7b6d-3ed4-b024-b3a5e0e83e32,SESCO,II.1.1,La Pampa,AR-L,annual,2022,jet kerosene combustion consumption by to the public,2.1702569999999994,TJ,CO2,71500.0,kg/TJ,155173.37549999997,kg +e5de27c7-1075-3560-bf60-760c64c53fb1,SESCO,II.1.1,La Pampa,AR-L,annual,2022,jet kerosene combustion consumption by to the public,2.1702569999999994,TJ,CH4,0.5,kg/TJ,1.0851284999999997,kg +99c0ef34-ecdd-3e45-8d86-81c1afe6eb92,SESCO,II.1.1,La Pampa,AR-L,annual,2022,jet kerosene combustion consumption by to the public,2.1702569999999994,TJ,N2O,2.0,kg/TJ,4.340513999999999,kg +c50502fc-365d-32cf-a981-89854d53e2df,SESCO,II.1.1,La Rioja,AR-F,annual,2022,jet kerosene combustion consumption by to the public,1.25812,TJ,CO2,71500.0,kg/TJ,89955.57999999999,kg +dd07598f-8e80-3d8a-8300-a331aa1db7b5,SESCO,II.1.1,La Rioja,AR-F,annual,2022,jet kerosene combustion consumption by to the public,1.25812,TJ,CH4,0.5,kg/TJ,0.62906,kg +fce8b486-f09c-3275-87b4-fe0d55d6e478,SESCO,II.1.1,La Rioja,AR-F,annual,2022,jet kerosene combustion consumption by to the public,1.25812,TJ,N2O,2.0,kg/TJ,2.51624,kg +45ab1593-d2af-35bb-aed6-16ae1fdd110d,SESCO,II.1.1,Mendoza,AR-M,annual,2022,jet kerosene combustion consumption by to the public,12.109404999999999,TJ,CO2,71500.0,kg/TJ,865822.4574999999,kg +03b1574a-704a-3507-a2a8-a7d7e881203f,SESCO,II.1.1,Mendoza,AR-M,annual,2022,jet kerosene combustion consumption by to the public,12.109404999999999,TJ,CH4,0.5,kg/TJ,6.054702499999999,kg +e382b45a-f0e0-3391-aa54-5ba340677a4f,SESCO,II.1.1,Mendoza,AR-M,annual,2022,jet kerosene combustion consumption by to the public,12.109404999999999,TJ,N2O,2.0,kg/TJ,24.218809999999998,kg +4c4b16eb-503d-3d2f-8056-8067b799738c,SESCO,II.1.1,Neuquén,AR-Q,annual,2022,jet kerosene combustion consumption by to the public,3.8058129999999992,TJ,CO2,71500.0,kg/TJ,272115.6294999999,kg +ac8d6288-572d-3494-95a8-0bd84ce5fa84,SESCO,II.1.1,Neuquén,AR-Q,annual,2022,jet kerosene combustion consumption by to the public,3.8058129999999992,TJ,CH4,0.5,kg/TJ,1.9029064999999996,kg +53883955-8aa6-3443-a43a-95e8087d400c,SESCO,II.1.1,Neuquén,AR-Q,annual,2022,jet kerosene combustion consumption by to the public,3.8058129999999992,TJ,N2O,2.0,kg/TJ,7.6116259999999984,kg +ffe47b64-2227-3371-9630-29cd6a33cc15,SESCO,II.1.1,San Juan,AR-J,annual,2022,jet kerosene combustion consumption by to the public,13.304618999999997,TJ,CO2,71500.0,kg/TJ,951280.2584999998,kg +e74853a2-6ec8-3f0a-b58e-ac990ac35328,SESCO,II.1.1,San Juan,AR-J,annual,2022,jet kerosene combustion consumption by to the public,13.304618999999997,TJ,CH4,0.5,kg/TJ,6.6523094999999985,kg +17f382fc-d032-3a26-8d03-3ed45bdde49a,SESCO,II.1.1,San Juan,AR-J,annual,2022,jet kerosene combustion consumption by to the public,13.304618999999997,TJ,N2O,2.0,kg/TJ,26.609237999999994,kg +abf485fe-6ad4-3705-9b86-0e2e8a591189,SESCO,II.1.1,San Luis,AR-D,annual,2022,jet kerosene combustion consumption by to the public,3.5541889999999996,TJ,CO2,71500.0,kg/TJ,254124.51349999997,kg +203665b0-d58a-3496-a367-70ed90c78c34,SESCO,II.1.1,San Luis,AR-D,annual,2022,jet kerosene combustion consumption by to the public,3.5541889999999996,TJ,CH4,0.5,kg/TJ,1.7770944999999998,kg +a545db78-346e-3930-951f-2cd694169e19,SESCO,II.1.1,San Luis,AR-D,annual,2022,jet kerosene combustion consumption by to the public,3.5541889999999996,TJ,N2O,2.0,kg/TJ,7.108377999999999,kg +06dbbfd7-894c-329e-a893-11b3d4f63325,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2022,jet kerosene combustion consumption by to the public,4.5292319999999995,TJ,CO2,71500.0,kg/TJ,323840.088,kg +f5561a63-57e6-310f-9e48-30e652dcb0a8,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2022,jet kerosene combustion consumption by to the public,4.5292319999999995,TJ,CH4,0.5,kg/TJ,2.2646159999999997,kg +81243336-4196-365c-ada1-737af83d8752,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2022,jet kerosene combustion consumption by to the public,4.5292319999999995,TJ,N2O,2.0,kg/TJ,9.058463999999999,kg +8cb7da96-0b64-3815-8771-143083b0b164,SESCO,II.1.1,Santa Fe,AR-S,annual,2022,jet kerosene combustion consumption by to the public,20.12992,TJ,CO2,71500.0,kg/TJ,1439289.2799999998,kg +2107248a-a9da-3566-a421-d380b9f2e6f6,SESCO,II.1.1,Santa Fe,AR-S,annual,2022,jet kerosene combustion consumption by to the public,20.12992,TJ,CH4,0.5,kg/TJ,10.06496,kg +d04784b1-281f-3ec4-b776-13db825a471f,SESCO,II.1.1,Santa Fe,AR-S,annual,2022,jet kerosene combustion consumption by to the public,20.12992,TJ,N2O,2.0,kg/TJ,40.25984,kg +33de1a95-41f5-3238-b139-2ed069408e96,SESCO,II.1.1,Tucuman,AR-T,annual,2022,jet kerosene combustion consumption by to the public,9.561711999999998,TJ,CO2,71500.0,kg/TJ,683662.4079999998,kg +949d2b21-7983-340e-a15b-3abb6a9d4e8e,SESCO,II.1.1,Tucuman,AR-T,annual,2022,jet kerosene combustion consumption by to the public,9.561711999999998,TJ,CH4,0.5,kg/TJ,4.780855999999999,kg +4881e48e-860e-3994-a9fa-5c81422cce47,SESCO,II.1.1,Tucuman,AR-T,annual,2022,jet kerosene combustion consumption by to the public,9.561711999999998,TJ,N2O,2.0,kg/TJ,19.123423999999996,kg +9a46e9e5-76d8-3401-b147-5cb356a76637,SESCO,II.1.1,Buenos Aires,AR-B,annual,2022,gas oil combustion consumption by freight transport,11881.24056,TJ,CO2,74100.0,kg/TJ,880399925.496,kg +6fc8ffb2-957b-34bd-8811-1bf37a3a6506,SESCO,II.1.1,Buenos Aires,AR-B,annual,2022,gas oil combustion consumption by freight transport,11881.24056,TJ,CH4,3.9,kg/TJ,46336.838184,kg +6fc8ffb2-957b-34bd-8811-1bf37a3a6506,SESCO,II.1.1,Buenos Aires,AR-B,annual,2022,gas oil combustion consumption by freight transport,11881.24056,TJ,N2O,3.9,kg/TJ,46336.838184,kg +567595e1-56bb-363d-9b0b-bc2de0914c9d,SESCO,II.1.1,Capital Federal,AR-C,annual,2022,gas oil combustion consumption by freight transport,926.36964,TJ,CO2,74100.0,kg/TJ,68643990.324,kg +fb87d2bb-cb40-32a1-8aa4-61859679e2b3,SESCO,II.1.1,Capital Federal,AR-C,annual,2022,gas oil combustion consumption by freight transport,926.36964,TJ,CH4,3.9,kg/TJ,3612.8415959999998,kg +fb87d2bb-cb40-32a1-8aa4-61859679e2b3,SESCO,II.1.1,Capital Federal,AR-C,annual,2022,gas oil combustion consumption by freight transport,926.36964,TJ,N2O,3.9,kg/TJ,3612.8415959999998,kg +ed1f1d46-c236-3c65-add2-7e114126d5af,SESCO,II.1.1,Catamarca,AR-K,annual,2022,gas oil combustion consumption by freight transport,60.97056,TJ,CO2,74100.0,kg/TJ,4517918.496,kg +63f21f65-3165-36a3-bb72-b18adf72c4bb,SESCO,II.1.1,Catamarca,AR-K,annual,2022,gas oil combustion consumption by freight transport,60.97056,TJ,CH4,3.9,kg/TJ,237.785184,kg +63f21f65-3165-36a3-bb72-b18adf72c4bb,SESCO,II.1.1,Catamarca,AR-K,annual,2022,gas oil combustion consumption by freight transport,60.97056,TJ,N2O,3.9,kg/TJ,237.785184,kg +af966add-c5bd-3e9c-94f0-6a40875cb4ac,SESCO,II.1.1,Chaco,AR-H,annual,2022,gas oil combustion consumption by freight transport,357.19068,TJ,CO2,74100.0,kg/TJ,26467829.388,kg +5e15718e-e204-3e65-98f6-48a672940472,SESCO,II.1.1,Chaco,AR-H,annual,2022,gas oil combustion consumption by freight transport,357.19068,TJ,CH4,3.9,kg/TJ,1393.0436519999998,kg +5e15718e-e204-3e65-98f6-48a672940472,SESCO,II.1.1,Chaco,AR-H,annual,2022,gas oil combustion consumption by freight transport,357.19068,TJ,N2O,3.9,kg/TJ,1393.0436519999998,kg +cc446ea6-0700-3445-b351-bced8f32b060,SESCO,II.1.1,Chubut,AR-U,annual,2022,gas oil combustion consumption by freight transport,989.00172,TJ,CO2,74100.0,kg/TJ,73285027.45199999,kg +fcf7339f-7dc4-3993-9e03-e6c31dfce0c4,SESCO,II.1.1,Chubut,AR-U,annual,2022,gas oil combustion consumption by freight transport,989.00172,TJ,CH4,3.9,kg/TJ,3857.106708,kg +fcf7339f-7dc4-3993-9e03-e6c31dfce0c4,SESCO,II.1.1,Chubut,AR-U,annual,2022,gas oil combustion consumption by freight transport,989.00172,TJ,N2O,3.9,kg/TJ,3857.106708,kg +53a33e49-cbbb-388b-9582-004fecfc35d7,SESCO,II.1.1,Corrientes,AR-W,annual,2022,gas oil combustion consumption by freight transport,693.1428,TJ,CO2,74100.0,kg/TJ,51361881.48,kg +06c17eb2-8657-3669-9db5-147c8d874fc3,SESCO,II.1.1,Corrientes,AR-W,annual,2022,gas oil combustion consumption by freight transport,693.1428,TJ,CH4,3.9,kg/TJ,2703.25692,kg +06c17eb2-8657-3669-9db5-147c8d874fc3,SESCO,II.1.1,Corrientes,AR-W,annual,2022,gas oil combustion consumption by freight transport,693.1428,TJ,N2O,3.9,kg/TJ,2703.25692,kg +504bcfe4-ef2d-39b5-8943-1a9b9ef7d779,SESCO,II.1.1,Córdoba,AR-X,annual,2022,gas oil combustion consumption by freight transport,3371.36856,TJ,CO2,74100.0,kg/TJ,249818410.296,kg +bc5330ba-1126-3418-bfa2-f73783ed9d34,SESCO,II.1.1,Córdoba,AR-X,annual,2022,gas oil combustion consumption by freight transport,3371.36856,TJ,CH4,3.9,kg/TJ,13148.337383999999,kg +bc5330ba-1126-3418-bfa2-f73783ed9d34,SESCO,II.1.1,Córdoba,AR-X,annual,2022,gas oil combustion consumption by freight transport,3371.36856,TJ,N2O,3.9,kg/TJ,13148.337383999999,kg +ae3bba37-5f4d-314e-b0be-cf29e168c5af,SESCO,II.1.1,Entre Rios,AR-E,annual,2022,gas oil combustion consumption by freight transport,1240.79424,TJ,CO2,74100.0,kg/TJ,91942853.184,kg +67d5b1d6-452b-345b-9f7a-bbc731583f2c,SESCO,II.1.1,Entre Rios,AR-E,annual,2022,gas oil combustion consumption by freight transport,1240.79424,TJ,CH4,3.9,kg/TJ,4839.097535999999,kg +67d5b1d6-452b-345b-9f7a-bbc731583f2c,SESCO,II.1.1,Entre Rios,AR-E,annual,2022,gas oil combustion consumption by freight transport,1240.79424,TJ,N2O,3.9,kg/TJ,4839.097535999999,kg +f37aec70-d844-3349-854d-684bfbd4af6f,SESCO,II.1.1,Formosa,AR-P,annual,2022,gas oil combustion consumption by freight transport,82.7148,TJ,CO2,74100.0,kg/TJ,6129166.68,kg +03089df9-8511-32e9-81a9-ab8c0418e0a6,SESCO,II.1.1,Formosa,AR-P,annual,2022,gas oil combustion consumption by freight transport,82.7148,TJ,CH4,3.9,kg/TJ,322.58772,kg +03089df9-8511-32e9-81a9-ab8c0418e0a6,SESCO,II.1.1,Formosa,AR-P,annual,2022,gas oil combustion consumption by freight transport,82.7148,TJ,N2O,3.9,kg/TJ,322.58772,kg +10982dd2-2413-3716-b70f-e21a8a7eecee,SESCO,II.1.1,Jujuy,AR-Y,annual,2022,gas oil combustion consumption by freight transport,152.46251999999998,TJ,CO2,74100.0,kg/TJ,11297472.731999999,kg +2c2f474e-cae1-3909-8d32-b096869f6c93,SESCO,II.1.1,Jujuy,AR-Y,annual,2022,gas oil combustion consumption by freight transport,152.46251999999998,TJ,CH4,3.9,kg/TJ,594.6038279999999,kg +2c2f474e-cae1-3909-8d32-b096869f6c93,SESCO,II.1.1,Jujuy,AR-Y,annual,2022,gas oil combustion consumption by freight transport,152.46251999999998,TJ,N2O,3.9,kg/TJ,594.6038279999999,kg +e3977fb5-93fa-3b50-85d3-7746dae43908,SESCO,II.1.1,La Pampa,AR-L,annual,2022,gas oil combustion consumption by freight transport,1334.0922,TJ,CO2,74100.0,kg/TJ,98856232.02000001,kg +2db36dc7-dcd9-356f-bcf3-256e9d80ed1d,SESCO,II.1.1,La Pampa,AR-L,annual,2022,gas oil combustion consumption by freight transport,1334.0922,TJ,CH4,3.9,kg/TJ,5202.95958,kg +2db36dc7-dcd9-356f-bcf3-256e9d80ed1d,SESCO,II.1.1,La Pampa,AR-L,annual,2022,gas oil combustion consumption by freight transport,1334.0922,TJ,N2O,3.9,kg/TJ,5202.95958,kg +e6c6a4a1-543b-34ae-a56a-29c7661565bb,SESCO,II.1.1,La Rioja,AR-F,annual,2022,gas oil combustion consumption by freight transport,103.15872,TJ,CO2,74100.0,kg/TJ,7644061.152,kg +d4b2256d-0930-3cab-aaec-32e474327254,SESCO,II.1.1,La Rioja,AR-F,annual,2022,gas oil combustion consumption by freight transport,103.15872,TJ,CH4,3.9,kg/TJ,402.319008,kg +d4b2256d-0930-3cab-aaec-32e474327254,SESCO,II.1.1,La Rioja,AR-F,annual,2022,gas oil combustion consumption by freight transport,103.15872,TJ,N2O,3.9,kg/TJ,402.319008,kg +4f83528a-0af0-3d36-a461-de62c5279f33,SESCO,II.1.1,Mendoza,AR-M,annual,2022,gas oil combustion consumption by freight transport,1915.47972,TJ,CO2,74100.0,kg/TJ,141937047.252,kg +f0f9004d-7c67-3353-82fd-272ccd72fbe0,SESCO,II.1.1,Mendoza,AR-M,annual,2022,gas oil combustion consumption by freight transport,1915.47972,TJ,CH4,3.9,kg/TJ,7470.370908,kg +f0f9004d-7c67-3353-82fd-272ccd72fbe0,SESCO,II.1.1,Mendoza,AR-M,annual,2022,gas oil combustion consumption by freight transport,1915.47972,TJ,N2O,3.9,kg/TJ,7470.370908,kg +705e112f-c15d-3740-83b2-b520dbae39de,SESCO,II.1.1,Misiones,AR-N,annual,2022,gas oil combustion consumption by freight transport,428.925,TJ,CO2,74100.0,kg/TJ,31783342.5,kg +5845a53f-a19f-3839-8e9b-794521ad206c,SESCO,II.1.1,Misiones,AR-N,annual,2022,gas oil combustion consumption by freight transport,428.925,TJ,CH4,3.9,kg/TJ,1672.8075000000001,kg +5845a53f-a19f-3839-8e9b-794521ad206c,SESCO,II.1.1,Misiones,AR-N,annual,2022,gas oil combustion consumption by freight transport,428.925,TJ,N2O,3.9,kg/TJ,1672.8075000000001,kg +dafec2f8-e3b0-346a-81ed-c134f91bf8ae,SESCO,II.1.1,Neuquén,AR-Q,annual,2022,gas oil combustion consumption by freight transport,1151.07216,TJ,CO2,74100.0,kg/TJ,85294447.056,kg +365f45fc-784a-3e92-b98b-df40f377d87f,SESCO,II.1.1,Neuquén,AR-Q,annual,2022,gas oil combustion consumption by freight transport,1151.07216,TJ,CH4,3.9,kg/TJ,4489.181423999999,kg +365f45fc-784a-3e92-b98b-df40f377d87f,SESCO,II.1.1,Neuquén,AR-Q,annual,2022,gas oil combustion consumption by freight transport,1151.07216,TJ,N2O,3.9,kg/TJ,4489.181423999999,kg +f3007e82-ece5-310f-adb9-8bf18b5bed03,SESCO,II.1.1,Rio Negro,AR-R,annual,2022,gas oil combustion consumption by freight transport,1269.58188,TJ,CO2,74100.0,kg/TJ,94076017.308,kg +d35962ff-2ce1-3f84-b6c2-3a48d83884c1,SESCO,II.1.1,Rio Negro,AR-R,annual,2022,gas oil combustion consumption by freight transport,1269.58188,TJ,CH4,3.9,kg/TJ,4951.369331999999,kg +d35962ff-2ce1-3f84-b6c2-3a48d83884c1,SESCO,II.1.1,Rio Negro,AR-R,annual,2022,gas oil combustion consumption by freight transport,1269.58188,TJ,N2O,3.9,kg/TJ,4951.369331999999,kg +47c66b38-db3b-3276-a4d9-f2d05348e10e,SESCO,II.1.1,Salta,AR-A,annual,2022,gas oil combustion consumption by freight transport,1042.63992,TJ,CO2,74100.0,kg/TJ,77259618.07200001,kg +3edbfc65-0414-3c93-a7ce-94a020d26c91,SESCO,II.1.1,Salta,AR-A,annual,2022,gas oil combustion consumption by freight transport,1042.63992,TJ,CH4,3.9,kg/TJ,4066.295688,kg +3edbfc65-0414-3c93-a7ce-94a020d26c91,SESCO,II.1.1,Salta,AR-A,annual,2022,gas oil combustion consumption by freight transport,1042.63992,TJ,N2O,3.9,kg/TJ,4066.295688,kg +cef17e7f-dc50-33a3-a253-c576292fea68,SESCO,II.1.1,San Juan,AR-J,annual,2022,gas oil combustion consumption by freight transport,150.04247999999998,TJ,CO2,74100.0,kg/TJ,11118147.768,kg +45775ce1-d35a-3530-993e-83fa7e1c9e75,SESCO,II.1.1,San Juan,AR-J,annual,2022,gas oil combustion consumption by freight transport,150.04247999999998,TJ,CH4,3.9,kg/TJ,585.165672,kg +45775ce1-d35a-3530-993e-83fa7e1c9e75,SESCO,II.1.1,San Juan,AR-J,annual,2022,gas oil combustion consumption by freight transport,150.04247999999998,TJ,N2O,3.9,kg/TJ,585.165672,kg +0ef28ff9-6d10-3592-8a8a-6574a7734d32,SESCO,II.1.1,San Luis,AR-D,annual,2022,gas oil combustion consumption by freight transport,530.38608,TJ,CO2,74100.0,kg/TJ,39301608.528,kg +58c2abdc-2ea1-30be-ae44-0eec659f719c,SESCO,II.1.1,San Luis,AR-D,annual,2022,gas oil combustion consumption by freight transport,530.38608,TJ,CH4,3.9,kg/TJ,2068.505712,kg +58c2abdc-2ea1-30be-ae44-0eec659f719c,SESCO,II.1.1,San Luis,AR-D,annual,2022,gas oil combustion consumption by freight transport,530.38608,TJ,N2O,3.9,kg/TJ,2068.505712,kg +264a2f96-9b7e-376a-885d-74de25b6a55a,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2022,gas oil combustion consumption by freight transport,797.31288,TJ,CO2,74100.0,kg/TJ,59080884.408,kg +70e81e10-8493-3c95-b395-ee95c81b356a,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2022,gas oil combustion consumption by freight transport,797.31288,TJ,CH4,3.9,kg/TJ,3109.520232,kg +70e81e10-8493-3c95-b395-ee95c81b356a,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2022,gas oil combustion consumption by freight transport,797.31288,TJ,N2O,3.9,kg/TJ,3109.520232,kg +9d8d627e-d915-3302-962f-259a9bb8cb61,SESCO,II.1.1,Santa Fe,AR-S,annual,2022,gas oil combustion consumption by freight transport,3396.32748,TJ,CO2,74100.0,kg/TJ,251667866.268,kg +f9ff8091-41b1-3345-8a80-10101e337ec1,SESCO,II.1.1,Santa Fe,AR-S,annual,2022,gas oil combustion consumption by freight transport,3396.32748,TJ,CH4,3.9,kg/TJ,13245.677172,kg +f9ff8091-41b1-3345-8a80-10101e337ec1,SESCO,II.1.1,Santa Fe,AR-S,annual,2022,gas oil combustion consumption by freight transport,3396.32748,TJ,N2O,3.9,kg/TJ,13245.677172,kg +72a57eb6-28d6-3900-a3da-1fa4ab2cc9a9,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2022,gas oil combustion consumption by freight transport,821.94672,TJ,CO2,74100.0,kg/TJ,60906251.952,kg +c912071a-3c7b-376b-9b82-6d495ac65d95,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2022,gas oil combustion consumption by freight transport,821.94672,TJ,CH4,3.9,kg/TJ,3205.592208,kg +c912071a-3c7b-376b-9b82-6d495ac65d95,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2022,gas oil combustion consumption by freight transport,821.94672,TJ,N2O,3.9,kg/TJ,3205.592208,kg +69d8a47f-fc2e-3c2d-8fac-9f4f67d9ada9,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2022,gas oil combustion consumption by freight transport,317.38644,TJ,CO2,74100.0,kg/TJ,23518335.204,kg +c65aca5a-9b02-39ad-a6ee-dc7f7b6ea4d5,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2022,gas oil combustion consumption by freight transport,317.38644,TJ,CH4,3.9,kg/TJ,1237.807116,kg +c65aca5a-9b02-39ad-a6ee-dc7f7b6ea4d5,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2022,gas oil combustion consumption by freight transport,317.38644,TJ,N2O,3.9,kg/TJ,1237.807116,kg +159df942-b4b3-39ec-a5ec-9c2b84609fa5,SESCO,II.1.1,Tucuman,AR-T,annual,2022,gas oil combustion consumption by freight transport,402.08783999999997,TJ,CO2,74100.0,kg/TJ,29794708.944,kg +946b51cc-94ea-3e19-92a8-4bbcf55f2f0d,SESCO,II.1.1,Tucuman,AR-T,annual,2022,gas oil combustion consumption by freight transport,402.08783999999997,TJ,CH4,3.9,kg/TJ,1568.142576,kg +946b51cc-94ea-3e19-92a8-4bbcf55f2f0d,SESCO,II.1.1,Tucuman,AR-T,annual,2022,gas oil combustion consumption by freight transport,402.08783999999997,TJ,N2O,3.9,kg/TJ,1568.142576,kg +811f9605-7306-3e84-a2c0-3c0069da9a8e,SESCO,II.1.1,Buenos Aires,AR-B,annual,2022,gas oil combustion consumption by freight transport,5736.10884,TJ,CO2,74100.0,kg/TJ,425045665.04399997,kg +67f4b2a7-3145-3208-b4c5-ce16d4516c34,SESCO,II.1.1,Buenos Aires,AR-B,annual,2022,gas oil combustion consumption by freight transport,5736.10884,TJ,CH4,3.9,kg/TJ,22370.824475999998,kg +67f4b2a7-3145-3208-b4c5-ce16d4516c34,SESCO,II.1.1,Buenos Aires,AR-B,annual,2022,gas oil combustion consumption by freight transport,5736.10884,TJ,N2O,3.9,kg/TJ,22370.824475999998,kg +6543560e-4b73-38cf-9890-f0c15d5015a5,SESCO,II.1.1,Capital Federal,AR-C,annual,2022,gas oil combustion consumption by freight transport,506.83584,TJ,CO2,74100.0,kg/TJ,37556535.744,kg +9fa7d47b-d797-3a35-ae31-54c739b705dc,SESCO,II.1.1,Capital Federal,AR-C,annual,2022,gas oil combustion consumption by freight transport,506.83584,TJ,CH4,3.9,kg/TJ,1976.659776,kg +9fa7d47b-d797-3a35-ae31-54c739b705dc,SESCO,II.1.1,Capital Federal,AR-C,annual,2022,gas oil combustion consumption by freight transport,506.83584,TJ,N2O,3.9,kg/TJ,1976.659776,kg +b057635b-62b1-3bac-9fbc-cccd69b11d1d,SESCO,II.1.1,Catamarca,AR-K,annual,2022,gas oil combustion consumption by freight transport,51.97668,TJ,CO2,74100.0,kg/TJ,3851471.9880000004,kg +5fa9866a-5fae-37f7-9c89-48d1b8b9b006,SESCO,II.1.1,Catamarca,AR-K,annual,2022,gas oil combustion consumption by freight transport,51.97668,TJ,CH4,3.9,kg/TJ,202.709052,kg +5fa9866a-5fae-37f7-9c89-48d1b8b9b006,SESCO,II.1.1,Catamarca,AR-K,annual,2022,gas oil combustion consumption by freight transport,51.97668,TJ,N2O,3.9,kg/TJ,202.709052,kg +7adc8029-d76e-3d0f-a105-6bb869e4aafc,SESCO,II.1.1,Chaco,AR-H,annual,2022,gas oil combustion consumption by freight transport,252.58715999999998,TJ,CO2,74100.0,kg/TJ,18716708.555999998,kg +94b83e4e-f457-3a89-9d34-eab5865b7697,SESCO,II.1.1,Chaco,AR-H,annual,2022,gas oil combustion consumption by freight transport,252.58715999999998,TJ,CH4,3.9,kg/TJ,985.0899239999999,kg +94b83e4e-f457-3a89-9d34-eab5865b7697,SESCO,II.1.1,Chaco,AR-H,annual,2022,gas oil combustion consumption by freight transport,252.58715999999998,TJ,N2O,3.9,kg/TJ,985.0899239999999,kg +76c6d5cf-2f3c-3677-b2b9-5caf99cdf608,SESCO,II.1.1,Chubut,AR-U,annual,2022,gas oil combustion consumption by freight transport,585.46908,TJ,CO2,74100.0,kg/TJ,43383258.827999994,kg +8eaacc7b-cbb5-31b7-a335-a990eb28d614,SESCO,II.1.1,Chubut,AR-U,annual,2022,gas oil combustion consumption by freight transport,585.46908,TJ,CH4,3.9,kg/TJ,2283.3294119999996,kg +8eaacc7b-cbb5-31b7-a335-a990eb28d614,SESCO,II.1.1,Chubut,AR-U,annual,2022,gas oil combustion consumption by freight transport,585.46908,TJ,N2O,3.9,kg/TJ,2283.3294119999996,kg +682dd1b3-6c7f-30bf-a6f1-49279cedf04b,SESCO,II.1.1,Corrientes,AR-W,annual,2022,gas oil combustion consumption by freight transport,368.17116,TJ,CO2,74100.0,kg/TJ,27281482.956,kg +2b608fa0-7938-3f7e-af08-b8d7f1aec5be,SESCO,II.1.1,Corrientes,AR-W,annual,2022,gas oil combustion consumption by freight transport,368.17116,TJ,CH4,3.9,kg/TJ,1435.867524,kg +2b608fa0-7938-3f7e-af08-b8d7f1aec5be,SESCO,II.1.1,Corrientes,AR-W,annual,2022,gas oil combustion consumption by freight transport,368.17116,TJ,N2O,3.9,kg/TJ,1435.867524,kg +9f6b5691-5a8f-327b-9b25-f9a21b0c1d06,SESCO,II.1.1,Córdoba,AR-X,annual,2022,gas oil combustion consumption by freight transport,1125.8604,TJ,CO2,74100.0,kg/TJ,83426255.64,kg +578b51d3-53b1-3473-8eec-992b469b8072,SESCO,II.1.1,Córdoba,AR-X,annual,2022,gas oil combustion consumption by freight transport,1125.8604,TJ,CH4,3.9,kg/TJ,4390.85556,kg +578b51d3-53b1-3473-8eec-992b469b8072,SESCO,II.1.1,Córdoba,AR-X,annual,2022,gas oil combustion consumption by freight transport,1125.8604,TJ,N2O,3.9,kg/TJ,4390.85556,kg +21be53ed-d3b3-305f-b01e-26753f2e49a7,SESCO,II.1.1,Entre Rios,AR-E,annual,2022,gas oil combustion consumption by freight transport,503.22384,TJ,CO2,74100.0,kg/TJ,37288886.544,kg +83839430-cefa-3cfc-acf4-ae57b074a8e0,SESCO,II.1.1,Entre Rios,AR-E,annual,2022,gas oil combustion consumption by freight transport,503.22384,TJ,CH4,3.9,kg/TJ,1962.572976,kg +83839430-cefa-3cfc-acf4-ae57b074a8e0,SESCO,II.1.1,Entre Rios,AR-E,annual,2022,gas oil combustion consumption by freight transport,503.22384,TJ,N2O,3.9,kg/TJ,1962.572976,kg +cd5fc585-386b-3d7d-bde3-f93ab5571267,SESCO,II.1.1,Formosa,AR-P,annual,2022,gas oil combustion consumption by freight transport,93.22572,TJ,CO2,74100.0,kg/TJ,6908025.852,kg +2d5cc57d-b1e2-3cdb-899f-f7a3375494d8,SESCO,II.1.1,Formosa,AR-P,annual,2022,gas oil combustion consumption by freight transport,93.22572,TJ,CH4,3.9,kg/TJ,363.580308,kg +2d5cc57d-b1e2-3cdb-899f-f7a3375494d8,SESCO,II.1.1,Formosa,AR-P,annual,2022,gas oil combustion consumption by freight transport,93.22572,TJ,N2O,3.9,kg/TJ,363.580308,kg +f4afa39d-9db7-33dc-9098-aa4e649fdaa7,SESCO,II.1.1,Jujuy,AR-Y,annual,2022,gas oil combustion consumption by freight transport,98.35476,TJ,CO2,74100.0,kg/TJ,7288087.716,kg +136e5a89-a8fe-3ab4-bffa-a78dd1d829b8,SESCO,II.1.1,Jujuy,AR-Y,annual,2022,gas oil combustion consumption by freight transport,98.35476,TJ,CH4,3.9,kg/TJ,383.58356399999997,kg +136e5a89-a8fe-3ab4-bffa-a78dd1d829b8,SESCO,II.1.1,Jujuy,AR-Y,annual,2022,gas oil combustion consumption by freight transport,98.35476,TJ,N2O,3.9,kg/TJ,383.58356399999997,kg +b074bd9c-50f6-3113-8c24-966e02dea058,SESCO,II.1.1,La Pampa,AR-L,annual,2022,gas oil combustion consumption by freight transport,325.22447999999997,TJ,CO2,74100.0,kg/TJ,24099133.968,kg +05506725-950e-31ed-a187-cd3296d010a6,SESCO,II.1.1,La Pampa,AR-L,annual,2022,gas oil combustion consumption by freight transport,325.22447999999997,TJ,CH4,3.9,kg/TJ,1268.375472,kg +05506725-950e-31ed-a187-cd3296d010a6,SESCO,II.1.1,La Pampa,AR-L,annual,2022,gas oil combustion consumption by freight transport,325.22447999999997,TJ,N2O,3.9,kg/TJ,1268.375472,kg +43e53287-dd3d-3646-b72e-24c942284068,SESCO,II.1.1,La Rioja,AR-F,annual,2022,gas oil combustion consumption by freight transport,108.57672,TJ,CO2,74100.0,kg/TJ,8045534.952,kg +80d57fb8-9cd6-31f1-b376-e815de947452,SESCO,II.1.1,La Rioja,AR-F,annual,2022,gas oil combustion consumption by freight transport,108.57672,TJ,CH4,3.9,kg/TJ,423.44920799999994,kg +80d57fb8-9cd6-31f1-b376-e815de947452,SESCO,II.1.1,La Rioja,AR-F,annual,2022,gas oil combustion consumption by freight transport,108.57672,TJ,N2O,3.9,kg/TJ,423.44920799999994,kg +9bc8e58c-3ea2-303a-9e18-12be68fb4166,SESCO,II.1.1,Mendoza,AR-M,annual,2022,gas oil combustion consumption by freight transport,760.10928,TJ,CO2,74100.0,kg/TJ,56324097.648,kg +cfe25618-219e-36a9-b50f-b72c3c0830cd,SESCO,II.1.1,Mendoza,AR-M,annual,2022,gas oil combustion consumption by freight transport,760.10928,TJ,CH4,3.9,kg/TJ,2964.426192,kg +cfe25618-219e-36a9-b50f-b72c3c0830cd,SESCO,II.1.1,Mendoza,AR-M,annual,2022,gas oil combustion consumption by freight transport,760.10928,TJ,N2O,3.9,kg/TJ,2964.426192,kg +682b1051-b11b-316c-9471-8c1ec59c09f0,SESCO,II.1.1,Misiones,AR-N,annual,2022,gas oil combustion consumption by freight transport,276.4986,TJ,CO2,74100.0,kg/TJ,20488546.26,kg +9ca7af0b-ab2c-38f0-ac64-99b0929ab00f,SESCO,II.1.1,Misiones,AR-N,annual,2022,gas oil combustion consumption by freight transport,276.4986,TJ,CH4,3.9,kg/TJ,1078.34454,kg +9ca7af0b-ab2c-38f0-ac64-99b0929ab00f,SESCO,II.1.1,Misiones,AR-N,annual,2022,gas oil combustion consumption by freight transport,276.4986,TJ,N2O,3.9,kg/TJ,1078.34454,kg +f6195692-b202-312e-9076-15b1b2cd777e,SESCO,II.1.1,Neuquén,AR-Q,annual,2022,gas oil combustion consumption by freight transport,1573.67616,TJ,CO2,74100.0,kg/TJ,116609403.456,kg +5a0d03bf-ebb5-321e-b19a-a3433e10581d,SESCO,II.1.1,Neuquén,AR-Q,annual,2022,gas oil combustion consumption by freight transport,1573.67616,TJ,CH4,3.9,kg/TJ,6137.3370239999995,kg +5a0d03bf-ebb5-321e-b19a-a3433e10581d,SESCO,II.1.1,Neuquén,AR-Q,annual,2022,gas oil combustion consumption by freight transport,1573.67616,TJ,N2O,3.9,kg/TJ,6137.3370239999995,kg +d8fc0a57-ab4e-3a59-86b3-c856f8ddc785,SESCO,II.1.1,Rio Negro,AR-R,annual,2022,gas oil combustion consumption by freight transport,557.11488,TJ,CO2,74100.0,kg/TJ,41282212.607999995,kg +6d33a6db-bbbc-3aea-8f78-89a13196be71,SESCO,II.1.1,Rio Negro,AR-R,annual,2022,gas oil combustion consumption by freight transport,557.11488,TJ,CH4,3.9,kg/TJ,2172.748032,kg +6d33a6db-bbbc-3aea-8f78-89a13196be71,SESCO,II.1.1,Rio Negro,AR-R,annual,2022,gas oil combustion consumption by freight transport,557.11488,TJ,N2O,3.9,kg/TJ,2172.748032,kg +69bf1714-3e12-3572-8dfa-175acab7255c,SESCO,II.1.1,Salta,AR-A,annual,2022,gas oil combustion consumption by freight transport,402.70188,TJ,CO2,74100.0,kg/TJ,29840209.308000002,kg +c8f59d54-fe21-34b3-9178-6b3b416ff98c,SESCO,II.1.1,Salta,AR-A,annual,2022,gas oil combustion consumption by freight transport,402.70188,TJ,CH4,3.9,kg/TJ,1570.537332,kg +c8f59d54-fe21-34b3-9178-6b3b416ff98c,SESCO,II.1.1,Salta,AR-A,annual,2022,gas oil combustion consumption by freight transport,402.70188,TJ,N2O,3.9,kg/TJ,1570.537332,kg +b580eda3-d8d1-30e8-9e5f-7e1dda278daf,SESCO,II.1.1,San Juan,AR-J,annual,2022,gas oil combustion consumption by freight transport,101.60556,TJ,CO2,74100.0,kg/TJ,7528971.995999999,kg +3a1217e4-5477-366c-9b0d-2652e8b5df62,SESCO,II.1.1,San Juan,AR-J,annual,2022,gas oil combustion consumption by freight transport,101.60556,TJ,CH4,3.9,kg/TJ,396.261684,kg +3a1217e4-5477-366c-9b0d-2652e8b5df62,SESCO,II.1.1,San Juan,AR-J,annual,2022,gas oil combustion consumption by freight transport,101.60556,TJ,N2O,3.9,kg/TJ,396.261684,kg +308d63e6-1055-318a-87d2-105d4521dcb1,SESCO,II.1.1,San Luis,AR-D,annual,2022,gas oil combustion consumption by freight transport,204.83652,TJ,CO2,74100.0,kg/TJ,15178386.132000001,kg +1be3f385-fd6b-3ea5-9589-1b11e04a9e54,SESCO,II.1.1,San Luis,AR-D,annual,2022,gas oil combustion consumption by freight transport,204.83652,TJ,CH4,3.9,kg/TJ,798.862428,kg +1be3f385-fd6b-3ea5-9589-1b11e04a9e54,SESCO,II.1.1,San Luis,AR-D,annual,2022,gas oil combustion consumption by freight transport,204.83652,TJ,N2O,3.9,kg/TJ,798.862428,kg +73c6f707-5834-3b05-b74c-a5b50764083e,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2022,gas oil combustion consumption by freight transport,409.81752,TJ,CO2,74100.0,kg/TJ,30367478.232,kg +6991f408-2840-3c31-9ffe-ca787a30e548,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2022,gas oil combustion consumption by freight transport,409.81752,TJ,CH4,3.9,kg/TJ,1598.2883279999999,kg +6991f408-2840-3c31-9ffe-ca787a30e548,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2022,gas oil combustion consumption by freight transport,409.81752,TJ,N2O,3.9,kg/TJ,1598.2883279999999,kg +3d89455b-1995-30cc-ab70-73a1eee62b94,SESCO,II.1.1,Santa Fe,AR-S,annual,2022,gas oil combustion consumption by freight transport,1246.03164,TJ,CO2,74100.0,kg/TJ,92330944.52399999,kg +a9239340-849f-3006-988e-d12e9ebf2123,SESCO,II.1.1,Santa Fe,AR-S,annual,2022,gas oil combustion consumption by freight transport,1246.03164,TJ,CH4,3.9,kg/TJ,4859.523396,kg +a9239340-849f-3006-988e-d12e9ebf2123,SESCO,II.1.1,Santa Fe,AR-S,annual,2022,gas oil combustion consumption by freight transport,1246.03164,TJ,N2O,3.9,kg/TJ,4859.523396,kg +8790affc-12d8-318c-9e16-752857b56d35,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2022,gas oil combustion consumption by freight transport,217.623,TJ,CO2,74100.0,kg/TJ,16125864.299999999,kg +64ae34b6-e475-3293-95f6-af49dc7cbb97,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2022,gas oil combustion consumption by freight transport,217.623,TJ,CH4,3.9,kg/TJ,848.7297,kg +64ae34b6-e475-3293-95f6-af49dc7cbb97,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2022,gas oil combustion consumption by freight transport,217.623,TJ,N2O,3.9,kg/TJ,848.7297,kg +d24a2728-abfe-38d9-86ac-966ac67f5822,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2022,gas oil combustion consumption by freight transport,144.44388,TJ,CO2,74100.0,kg/TJ,10703291.508000001,kg +998b1cb2-c83d-37ec-a7da-a1e25d16626e,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2022,gas oil combustion consumption by freight transport,144.44388,TJ,CH4,3.9,kg/TJ,563.331132,kg +998b1cb2-c83d-37ec-a7da-a1e25d16626e,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2022,gas oil combustion consumption by freight transport,144.44388,TJ,N2O,3.9,kg/TJ,563.331132,kg +3ee7793e-e55f-372f-b989-4466d85d4a4f,SESCO,II.1.1,Tucuman,AR-T,annual,2022,gas oil combustion consumption by freight transport,229.362,TJ,CO2,74100.0,kg/TJ,16995724.2,kg +93ee88b5-0301-304e-b96f-d26474be486c,SESCO,II.1.1,Tucuman,AR-T,annual,2022,gas oil combustion consumption by freight transport,229.362,TJ,CH4,3.9,kg/TJ,894.5118,kg +93ee88b5-0301-304e-b96f-d26474be486c,SESCO,II.1.1,Tucuman,AR-T,annual,2022,gas oil combustion consumption by freight transport,229.362,TJ,N2O,3.9,kg/TJ,894.5118,kg +644da66f-2065-336d-bf18-5b4ffab1755e,SESCO,II.1.1,Neuquén,AR-Q,annual,2022,jet kerosene combustion consumption by freight transport,2.3275219999999996,TJ,CO2,71500.0,kg/TJ,166417.82299999997,kg +7b8dc863-e299-3cd8-918e-ae30666f1e63,SESCO,II.1.1,Neuquén,AR-Q,annual,2022,jet kerosene combustion consumption by freight transport,2.3275219999999996,TJ,CH4,0.5,kg/TJ,1.1637609999999998,kg +3659cc3d-e171-3f94-b000-ac29b1559c22,SESCO,II.1.1,Neuquén,AR-Q,annual,2022,jet kerosene combustion consumption by freight transport,2.3275219999999996,TJ,N2O,2.0,kg/TJ,4.655043999999999,kg +c90cfde5-c29e-31ff-8090-c02dda6e80c9,SESCO,II.1.1,Buenos Aires,AR-B,annual,2022,gas oil combustion consumption by public passenger transport,6369.400799999999,TJ,CO2,74100.0,kg/TJ,471972599.28,kg +8c3cc1b0-affa-32e0-83cb-f0d2194c5a20,SESCO,II.1.1,Buenos Aires,AR-B,annual,2022,gas oil combustion consumption by public passenger transport,6369.400799999999,TJ,CH4,3.9,kg/TJ,24840.663119999997,kg +8c3cc1b0-affa-32e0-83cb-f0d2194c5a20,SESCO,II.1.1,Buenos Aires,AR-B,annual,2022,gas oil combustion consumption by public passenger transport,6369.400799999999,TJ,N2O,3.9,kg/TJ,24840.663119999997,kg +f31c36bc-f9e7-30ab-b492-771555add2d5,SESCO,II.1.1,Capital Federal,AR-C,annual,2022,gas oil combustion consumption by public passenger transport,1473.37092,TJ,CO2,74100.0,kg/TJ,109176785.172,kg +a9f6a224-74e6-3a25-a21e-875a42434ed0,SESCO,II.1.1,Capital Federal,AR-C,annual,2022,gas oil combustion consumption by public passenger transport,1473.37092,TJ,CH4,3.9,kg/TJ,5746.1465880000005,kg +a9f6a224-74e6-3a25-a21e-875a42434ed0,SESCO,II.1.1,Capital Federal,AR-C,annual,2022,gas oil combustion consumption by public passenger transport,1473.37092,TJ,N2O,3.9,kg/TJ,5746.1465880000005,kg +171709a3-deee-3cc3-8a52-f815361bda4f,SESCO,II.1.1,Catamarca,AR-K,annual,2022,gas oil combustion consumption by public passenger transport,67.14708,TJ,CO2,74100.0,kg/TJ,4975598.6280000005,kg +08c0ddac-08e5-3afa-aaf3-08da82653674,SESCO,II.1.1,Catamarca,AR-K,annual,2022,gas oil combustion consumption by public passenger transport,67.14708,TJ,CH4,3.9,kg/TJ,261.873612,kg +08c0ddac-08e5-3afa-aaf3-08da82653674,SESCO,II.1.1,Catamarca,AR-K,annual,2022,gas oil combustion consumption by public passenger transport,67.14708,TJ,N2O,3.9,kg/TJ,261.873612,kg +7c089baf-f565-34c5-918f-ed56afc6d4b0,SESCO,II.1.1,Chaco,AR-H,annual,2022,gas oil combustion consumption by public passenger transport,187.2822,TJ,CO2,74100.0,kg/TJ,13877611.02,kg +fb265246-d50f-3789-b8e1-7aacf081b235,SESCO,II.1.1,Chaco,AR-H,annual,2022,gas oil combustion consumption by public passenger transport,187.2822,TJ,CH4,3.9,kg/TJ,730.40058,kg +fb265246-d50f-3789-b8e1-7aacf081b235,SESCO,II.1.1,Chaco,AR-H,annual,2022,gas oil combustion consumption by public passenger transport,187.2822,TJ,N2O,3.9,kg/TJ,730.40058,kg +1daf0a33-9dab-34d2-80e2-967533254f06,SESCO,II.1.1,Chubut,AR-U,annual,2022,gas oil combustion consumption by public passenger transport,10.22196,TJ,CO2,74100.0,kg/TJ,757447.2359999999,kg +b0ad4cbb-7040-31fa-b906-a08fa1dc60e4,SESCO,II.1.1,Chubut,AR-U,annual,2022,gas oil combustion consumption by public passenger transport,10.22196,TJ,CH4,3.9,kg/TJ,39.865643999999996,kg +b0ad4cbb-7040-31fa-b906-a08fa1dc60e4,SESCO,II.1.1,Chubut,AR-U,annual,2022,gas oil combustion consumption by public passenger transport,10.22196,TJ,N2O,3.9,kg/TJ,39.865643999999996,kg +94c82492-703c-3e50-9ea8-827782808a7d,SESCO,II.1.1,Corrientes,AR-W,annual,2022,gas oil combustion consumption by public passenger transport,127.28688,TJ,CO2,74100.0,kg/TJ,9431957.808,kg +ea502fa5-bffd-3ab9-9c8c-4b12e339bb2d,SESCO,II.1.1,Corrientes,AR-W,annual,2022,gas oil combustion consumption by public passenger transport,127.28688,TJ,CH4,3.9,kg/TJ,496.41883199999995,kg +ea502fa5-bffd-3ab9-9c8c-4b12e339bb2d,SESCO,II.1.1,Corrientes,AR-W,annual,2022,gas oil combustion consumption by public passenger transport,127.28688,TJ,N2O,3.9,kg/TJ,496.41883199999995,kg +47c9cb8e-dfde-3995-bd94-b0e5065eee71,SESCO,II.1.1,Córdoba,AR-X,annual,2022,gas oil combustion consumption by public passenger transport,896.0649599999999,TJ,CO2,74100.0,kg/TJ,66398413.53599999,kg +8fc1c3f4-8689-3850-b65d-6f35319556a7,SESCO,II.1.1,Córdoba,AR-X,annual,2022,gas oil combustion consumption by public passenger transport,896.0649599999999,TJ,CH4,3.9,kg/TJ,3494.653344,kg +8fc1c3f4-8689-3850-b65d-6f35319556a7,SESCO,II.1.1,Córdoba,AR-X,annual,2022,gas oil combustion consumption by public passenger transport,896.0649599999999,TJ,N2O,3.9,kg/TJ,3494.653344,kg +a2972221-7c17-3c1d-9419-efb98e7a4f02,SESCO,II.1.1,Entre Rios,AR-E,annual,2022,gas oil combustion consumption by public passenger transport,227.80884,TJ,CO2,74100.0,kg/TJ,16880635.044,kg +84d4c2dc-02bc-3047-b8a3-348309093bad,SESCO,II.1.1,Entre Rios,AR-E,annual,2022,gas oil combustion consumption by public passenger transport,227.80884,TJ,CH4,3.9,kg/TJ,888.454476,kg +84d4c2dc-02bc-3047-b8a3-348309093bad,SESCO,II.1.1,Entre Rios,AR-E,annual,2022,gas oil combustion consumption by public passenger transport,227.80884,TJ,N2O,3.9,kg/TJ,888.454476,kg +9e2493fd-a041-358d-a486-ffd813abfdd0,SESCO,II.1.1,Formosa,AR-P,annual,2022,gas oil combustion consumption by public passenger transport,22.17768,TJ,CO2,74100.0,kg/TJ,1643366.088,kg +45479125-cdc7-32fc-8861-619263a63787,SESCO,II.1.1,Formosa,AR-P,annual,2022,gas oil combustion consumption by public passenger transport,22.17768,TJ,CH4,3.9,kg/TJ,86.49295199999999,kg +45479125-cdc7-32fc-8861-619263a63787,SESCO,II.1.1,Formosa,AR-P,annual,2022,gas oil combustion consumption by public passenger transport,22.17768,TJ,N2O,3.9,kg/TJ,86.49295199999999,kg +2eaedf2e-d12f-3de9-a94a-a0f880c50ab1,SESCO,II.1.1,Jujuy,AR-Y,annual,2022,gas oil combustion consumption by public passenger transport,210.14616,TJ,CO2,74100.0,kg/TJ,15571830.456,kg +4d6fb668-cb8e-349f-ad5b-b1ab071a096e,SESCO,II.1.1,Jujuy,AR-Y,annual,2022,gas oil combustion consumption by public passenger transport,210.14616,TJ,CH4,3.9,kg/TJ,819.570024,kg +4d6fb668-cb8e-349f-ad5b-b1ab071a096e,SESCO,II.1.1,Jujuy,AR-Y,annual,2022,gas oil combustion consumption by public passenger transport,210.14616,TJ,N2O,3.9,kg/TJ,819.570024,kg +d6cbb6d8-694f-3259-8ed4-2094da8d93ea,SESCO,II.1.1,Mendoza,AR-M,annual,2022,gas oil combustion consumption by public passenger transport,1057.19628,TJ,CO2,74100.0,kg/TJ,78338244.34799999,kg +0699fe54-10e5-30cf-8add-0c3f440d8048,SESCO,II.1.1,Mendoza,AR-M,annual,2022,gas oil combustion consumption by public passenger transport,1057.19628,TJ,CH4,3.9,kg/TJ,4123.065492,kg +0699fe54-10e5-30cf-8add-0c3f440d8048,SESCO,II.1.1,Mendoza,AR-M,annual,2022,gas oil combustion consumption by public passenger transport,1057.19628,TJ,N2O,3.9,kg/TJ,4123.065492,kg +ebf195f7-bce3-305f-a8c7-2ce7b615724f,SESCO,II.1.1,Misiones,AR-N,annual,2022,gas oil combustion consumption by public passenger transport,612.52296,TJ,CO2,74100.0,kg/TJ,45387951.336,kg +43a49c79-2630-3220-b74f-086f53fa60c3,SESCO,II.1.1,Misiones,AR-N,annual,2022,gas oil combustion consumption by public passenger transport,612.52296,TJ,CH4,3.9,kg/TJ,2388.839544,kg +43a49c79-2630-3220-b74f-086f53fa60c3,SESCO,II.1.1,Misiones,AR-N,annual,2022,gas oil combustion consumption by public passenger transport,612.52296,TJ,N2O,3.9,kg/TJ,2388.839544,kg +7bc46125-3e7f-389b-aadb-befa40512129,SESCO,II.1.1,Neuquén,AR-Q,annual,2022,gas oil combustion consumption by public passenger transport,49.77336,TJ,CO2,74100.0,kg/TJ,3688205.976,kg +0e5b83a9-7a46-3047-a6b0-19338306a126,SESCO,II.1.1,Neuquén,AR-Q,annual,2022,gas oil combustion consumption by public passenger transport,49.77336,TJ,CH4,3.9,kg/TJ,194.11610399999998,kg +0e5b83a9-7a46-3047-a6b0-19338306a126,SESCO,II.1.1,Neuquén,AR-Q,annual,2022,gas oil combustion consumption by public passenger transport,49.77336,TJ,N2O,3.9,kg/TJ,194.11610399999998,kg +e463c87e-ed09-3a47-b433-5fa9ec70e157,SESCO,II.1.1,Rio Negro,AR-R,annual,2022,gas oil combustion consumption by public passenger transport,18.2406,TJ,CO2,74100.0,kg/TJ,1351628.46,kg +07b62f26-a768-31b5-a402-a49d654c78f1,SESCO,II.1.1,Rio Negro,AR-R,annual,2022,gas oil combustion consumption by public passenger transport,18.2406,TJ,CH4,3.9,kg/TJ,71.13834,kg +07b62f26-a768-31b5-a402-a49d654c78f1,SESCO,II.1.1,Rio Negro,AR-R,annual,2022,gas oil combustion consumption by public passenger transport,18.2406,TJ,N2O,3.9,kg/TJ,71.13834,kg +82848cd1-fba9-352e-a962-28494737714b,SESCO,II.1.1,Salta,AR-A,annual,2022,gas oil combustion consumption by public passenger transport,282.38616,TJ,CO2,74100.0,kg/TJ,20924814.456,kg +bf05b4e0-5c09-373f-8e4b-f726291e4043,SESCO,II.1.1,Salta,AR-A,annual,2022,gas oil combustion consumption by public passenger transport,282.38616,TJ,CH4,3.9,kg/TJ,1101.306024,kg +bf05b4e0-5c09-373f-8e4b-f726291e4043,SESCO,II.1.1,Salta,AR-A,annual,2022,gas oil combustion consumption by public passenger transport,282.38616,TJ,N2O,3.9,kg/TJ,1101.306024,kg +e5dd5274-699f-3916-9409-62c3891c8903,SESCO,II.1.1,San Juan,AR-J,annual,2022,gas oil combustion consumption by public passenger transport,53.6382,TJ,CO2,74100.0,kg/TJ,3974590.6199999996,kg +be28ec09-0345-3c3a-9ad9-831514cd9045,SESCO,II.1.1,San Juan,AR-J,annual,2022,gas oil combustion consumption by public passenger transport,53.6382,TJ,CH4,3.9,kg/TJ,209.18898,kg +be28ec09-0345-3c3a-9ad9-831514cd9045,SESCO,II.1.1,San Juan,AR-J,annual,2022,gas oil combustion consumption by public passenger transport,53.6382,TJ,N2O,3.9,kg/TJ,209.18898,kg +94e1d1c8-34fe-3356-ac21-439d93970a1c,SESCO,II.1.1,Santa Fe,AR-S,annual,2022,gas oil combustion consumption by public passenger transport,523.23432,TJ,CO2,74100.0,kg/TJ,38771663.112,kg +e1cb157a-42ad-38c1-afa6-c18a9f59ccb8,SESCO,II.1.1,Santa Fe,AR-S,annual,2022,gas oil combustion consumption by public passenger transport,523.23432,TJ,CH4,3.9,kg/TJ,2040.613848,kg +e1cb157a-42ad-38c1-afa6-c18a9f59ccb8,SESCO,II.1.1,Santa Fe,AR-S,annual,2022,gas oil combustion consumption by public passenger transport,523.23432,TJ,N2O,3.9,kg/TJ,2040.613848,kg +b917dc6d-b369-33d1-826c-03f8ff363228,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2022,gas oil combustion consumption by public passenger transport,10.2942,TJ,CO2,74100.0,kg/TJ,762800.22,kg +eb514032-dc76-3b53-9c67-dcdbbe8dd0c7,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2022,gas oil combustion consumption by public passenger transport,10.2942,TJ,CH4,3.9,kg/TJ,40.14738,kg +eb514032-dc76-3b53-9c67-dcdbbe8dd0c7,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2022,gas oil combustion consumption by public passenger transport,10.2942,TJ,N2O,3.9,kg/TJ,40.14738,kg +3cced3cf-ad0b-3757-bcc0-a28e6e0a8bc7,SESCO,II.1.1,Tucuman,AR-T,annual,2022,gas oil combustion consumption by public passenger transport,105.75936,TJ,CO2,74100.0,kg/TJ,7836768.576,kg +8c124421-62f5-3116-ab9c-3fbb4c1d1ef9,SESCO,II.1.1,Tucuman,AR-T,annual,2022,gas oil combustion consumption by public passenger transport,105.75936,TJ,CH4,3.9,kg/TJ,412.461504,kg +8c124421-62f5-3116-ab9c-3fbb4c1d1ef9,SESCO,II.1.1,Tucuman,AR-T,annual,2022,gas oil combustion consumption by public passenger transport,105.75936,TJ,N2O,3.9,kg/TJ,412.461504,kg +89cdce2b-370b-3195-9df4-cf12061e1640,SESCO,II.1.1,Buenos Aires,AR-B,annual,2022,gas oil combustion consumption by public passenger transport,5147.4612,TJ,CO2,74100.0,kg/TJ,381426874.91999996,kg +25f3c1cc-54bf-3384-acc6-aa595adeac55,SESCO,II.1.1,Buenos Aires,AR-B,annual,2022,gas oil combustion consumption by public passenger transport,5147.4612,TJ,CH4,3.9,kg/TJ,20075.09868,kg +25f3c1cc-54bf-3384-acc6-aa595adeac55,SESCO,II.1.1,Buenos Aires,AR-B,annual,2022,gas oil combustion consumption by public passenger transport,5147.4612,TJ,N2O,3.9,kg/TJ,20075.09868,kg +ae800c76-3b5d-3e1c-8d77-f34e6b8076ff,SESCO,II.1.1,Capital Federal,AR-C,annual,2022,gas oil combustion consumption by public passenger transport,1024.07424,TJ,CO2,74100.0,kg/TJ,75883901.184,kg +9aedfd8e-efc7-3d70-99a7-c929de557920,SESCO,II.1.1,Capital Federal,AR-C,annual,2022,gas oil combustion consumption by public passenger transport,1024.07424,TJ,CH4,3.9,kg/TJ,3993.8895359999997,kg +9aedfd8e-efc7-3d70-99a7-c929de557920,SESCO,II.1.1,Capital Federal,AR-C,annual,2022,gas oil combustion consumption by public passenger transport,1024.07424,TJ,N2O,3.9,kg/TJ,3993.8895359999997,kg +d2d549c9-36f1-3aae-8bd9-87d27c2fc1f9,SESCO,II.1.1,Chaco,AR-H,annual,2022,gas oil combustion consumption by public passenger transport,18.63792,TJ,CO2,74100.0,kg/TJ,1381069.872,kg +94c8334d-9e3a-3de7-9f97-838231793ee2,SESCO,II.1.1,Chaco,AR-H,annual,2022,gas oil combustion consumption by public passenger transport,18.63792,TJ,CH4,3.9,kg/TJ,72.687888,kg +94c8334d-9e3a-3de7-9f97-838231793ee2,SESCO,II.1.1,Chaco,AR-H,annual,2022,gas oil combustion consumption by public passenger transport,18.63792,TJ,N2O,3.9,kg/TJ,72.687888,kg +eae3c281-b5a1-3c70-a87a-96e3c6affd64,SESCO,II.1.1,Chubut,AR-U,annual,2022,gas oil combustion consumption by public passenger transport,34.20564,TJ,CO2,74100.0,kg/TJ,2534637.924,kg +a32390c4-6f82-312b-8a71-b33fdd8e70f8,SESCO,II.1.1,Chubut,AR-U,annual,2022,gas oil combustion consumption by public passenger transport,34.20564,TJ,CH4,3.9,kg/TJ,133.401996,kg +a32390c4-6f82-312b-8a71-b33fdd8e70f8,SESCO,II.1.1,Chubut,AR-U,annual,2022,gas oil combustion consumption by public passenger transport,34.20564,TJ,N2O,3.9,kg/TJ,133.401996,kg +8c71911e-050e-3d4e-83bf-9cde4562574f,SESCO,II.1.1,Corrientes,AR-W,annual,2022,gas oil combustion consumption by public passenger transport,40.59888,TJ,CO2,74100.0,kg/TJ,3008377.008,kg +468899c1-a3b9-3662-bd59-cbc41e925ce2,SESCO,II.1.1,Corrientes,AR-W,annual,2022,gas oil combustion consumption by public passenger transport,40.59888,TJ,CH4,3.9,kg/TJ,158.335632,kg +468899c1-a3b9-3662-bd59-cbc41e925ce2,SESCO,II.1.1,Corrientes,AR-W,annual,2022,gas oil combustion consumption by public passenger transport,40.59888,TJ,N2O,3.9,kg/TJ,158.335632,kg +b3ed3834-c4f7-3d07-a134-3180d9d1b6f9,SESCO,II.1.1,Córdoba,AR-X,annual,2022,gas oil combustion consumption by public passenger transport,287.94864,TJ,CO2,74100.0,kg/TJ,21336994.224,kg +1768121c-7dd6-364b-b387-61d3ab1d4941,SESCO,II.1.1,Córdoba,AR-X,annual,2022,gas oil combustion consumption by public passenger transport,287.94864,TJ,CH4,3.9,kg/TJ,1122.999696,kg +1768121c-7dd6-364b-b387-61d3ab1d4941,SESCO,II.1.1,Córdoba,AR-X,annual,2022,gas oil combustion consumption by public passenger transport,287.94864,TJ,N2O,3.9,kg/TJ,1122.999696,kg +723f4f33-0050-31be-bf2c-b02f7938e76b,SESCO,II.1.1,Entre Rios,AR-E,annual,2022,gas oil combustion consumption by public passenger transport,36.4812,TJ,CO2,74100.0,kg/TJ,2703256.92,kg +094b949a-3055-3dc1-9885-43a13e387937,SESCO,II.1.1,Entre Rios,AR-E,annual,2022,gas oil combustion consumption by public passenger transport,36.4812,TJ,CH4,3.9,kg/TJ,142.27668,kg +094b949a-3055-3dc1-9885-43a13e387937,SESCO,II.1.1,Entre Rios,AR-E,annual,2022,gas oil combustion consumption by public passenger transport,36.4812,TJ,N2O,3.9,kg/TJ,142.27668,kg +02ade1af-599d-3ee0-be29-42e97c1ebb60,SESCO,II.1.1,Mendoza,AR-M,annual,2022,gas oil combustion consumption by public passenger transport,110.3466,TJ,CO2,74100.0,kg/TJ,8176683.06,kg +e5b0ff0c-e110-34a5-bcd5-3eee60c45edb,SESCO,II.1.1,Mendoza,AR-M,annual,2022,gas oil combustion consumption by public passenger transport,110.3466,TJ,CH4,3.9,kg/TJ,430.35173999999995,kg +e5b0ff0c-e110-34a5-bcd5-3eee60c45edb,SESCO,II.1.1,Mendoza,AR-M,annual,2022,gas oil combustion consumption by public passenger transport,110.3466,TJ,N2O,3.9,kg/TJ,430.35173999999995,kg +83877602-8d27-3c28-8015-76f2b75a2e5b,SESCO,II.1.1,Misiones,AR-N,annual,2022,gas oil combustion consumption by public passenger transport,37.27584,TJ,CO2,74100.0,kg/TJ,2762139.744,kg +c5310241-0f06-32fc-9c75-b41c59f4b4db,SESCO,II.1.1,Misiones,AR-N,annual,2022,gas oil combustion consumption by public passenger transport,37.27584,TJ,CH4,3.9,kg/TJ,145.375776,kg +c5310241-0f06-32fc-9c75-b41c59f4b4db,SESCO,II.1.1,Misiones,AR-N,annual,2022,gas oil combustion consumption by public passenger transport,37.27584,TJ,N2O,3.9,kg/TJ,145.375776,kg +d7a8d07c-303e-3a04-9027-b92d63a98c9f,SESCO,II.1.1,Neuquén,AR-Q,annual,2022,gas oil combustion consumption by public passenger transport,14.484119999999999,TJ,CO2,74100.0,kg/TJ,1073273.292,kg +a03d76e6-7f28-3eef-9783-52b7a708a1d5,SESCO,II.1.1,Neuquén,AR-Q,annual,2022,gas oil combustion consumption by public passenger transport,14.484119999999999,TJ,CH4,3.9,kg/TJ,56.48806799999999,kg +a03d76e6-7f28-3eef-9783-52b7a708a1d5,SESCO,II.1.1,Neuquén,AR-Q,annual,2022,gas oil combustion consumption by public passenger transport,14.484119999999999,TJ,N2O,3.9,kg/TJ,56.48806799999999,kg +7faa27e9-0bcb-304c-b656-ccba0db0fbb2,SESCO,II.1.1,Rio Negro,AR-R,annual,2022,gas oil combustion consumption by public passenger transport,127.35912,TJ,CO2,74100.0,kg/TJ,9437310.792,kg +eed8d115-af08-382e-9db3-8adfeb896466,SESCO,II.1.1,Rio Negro,AR-R,annual,2022,gas oil combustion consumption by public passenger transport,127.35912,TJ,CH4,3.9,kg/TJ,496.70056800000003,kg +eed8d115-af08-382e-9db3-8adfeb896466,SESCO,II.1.1,Rio Negro,AR-R,annual,2022,gas oil combustion consumption by public passenger transport,127.35912,TJ,N2O,3.9,kg/TJ,496.70056800000003,kg +ea339239-5f69-39a6-ae39-06cb7c32fac3,SESCO,II.1.1,Salta,AR-A,annual,2022,gas oil combustion consumption by public passenger transport,186.12636,TJ,CO2,74100.0,kg/TJ,13791963.276,kg +e7567bfc-e4f5-3baf-9270-fc926c40073f,SESCO,II.1.1,Salta,AR-A,annual,2022,gas oil combustion consumption by public passenger transport,186.12636,TJ,CH4,3.9,kg/TJ,725.892804,kg +e7567bfc-e4f5-3baf-9270-fc926c40073f,SESCO,II.1.1,Salta,AR-A,annual,2022,gas oil combustion consumption by public passenger transport,186.12636,TJ,N2O,3.9,kg/TJ,725.892804,kg +aa42dc5a-9baf-3ce7-ab4a-37a64c724f0c,SESCO,II.1.1,San Juan,AR-J,annual,2022,gas oil combustion consumption by public passenger transport,42.9828,TJ,CO2,74100.0,kg/TJ,3185025.48,kg +ac5ceab3-4a0d-3643-b1e9-f4032315f10c,SESCO,II.1.1,San Juan,AR-J,annual,2022,gas oil combustion consumption by public passenger transport,42.9828,TJ,CH4,3.9,kg/TJ,167.63291999999998,kg +ac5ceab3-4a0d-3643-b1e9-f4032315f10c,SESCO,II.1.1,San Juan,AR-J,annual,2022,gas oil combustion consumption by public passenger transport,42.9828,TJ,N2O,3.9,kg/TJ,167.63291999999998,kg +44d03ff7-a981-3357-9bc0-20b3f6a89432,SESCO,II.1.1,Santa Fe,AR-S,annual,2022,gas oil combustion consumption by public passenger transport,179.8776,TJ,CO2,74100.0,kg/TJ,13328930.16,kg +3fe576ad-9f08-3558-8de0-6116ab098092,SESCO,II.1.1,Santa Fe,AR-S,annual,2022,gas oil combustion consumption by public passenger transport,179.8776,TJ,CH4,3.9,kg/TJ,701.52264,kg +3fe576ad-9f08-3558-8de0-6116ab098092,SESCO,II.1.1,Santa Fe,AR-S,annual,2022,gas oil combustion consumption by public passenger transport,179.8776,TJ,N2O,3.9,kg/TJ,701.52264,kg +c00960fa-1d64-3228-8f2d-bab04c5808d7,SESCO,II.1.1,Tucuman,AR-T,annual,2022,gas oil combustion consumption by public passenger transport,3.14244,TJ,CO2,74100.0,kg/TJ,232854.804,kg +03f0bc70-80f0-3d13-8129-f9eeb002c69a,SESCO,II.1.1,Tucuman,AR-T,annual,2022,gas oil combustion consumption by public passenger transport,3.14244,TJ,CH4,3.9,kg/TJ,12.255516,kg +03f0bc70-80f0-3d13-8129-f9eeb002c69a,SESCO,II.1.1,Tucuman,AR-T,annual,2022,gas oil combustion consumption by public passenger transport,3.14244,TJ,N2O,3.9,kg/TJ,12.255516,kg +f0f627d8-22cc-3bb3-88b3-08deda7d85fe,SESCO,II.5.1,Buenos Aires,AR-B,annual,2023,gas oil combustion consumption by agriculture machines,577.26984,TJ,CO2,74100.0,kg/TJ,42775695.144,kg +8cd4b327-fc35-3d9f-a4be-51e8aee3ac13,SESCO,II.5.1,Buenos Aires,AR-B,annual,2023,gas oil combustion consumption by agriculture machines,577.26984,TJ,CH4,3.9,kg/TJ,2251.3523760000003,kg +8cd4b327-fc35-3d9f-a4be-51e8aee3ac13,SESCO,II.5.1,Buenos Aires,AR-B,annual,2023,gas oil combustion consumption by agriculture machines,577.26984,TJ,N2O,3.9,kg/TJ,2251.3523760000003,kg +44fc060d-9299-3f64-a073-12e28bbebc95,SESCO,II.5.1,Córdoba,AR-X,annual,2023,gas oil combustion consumption by agriculture machines,178.79399999999998,TJ,CO2,74100.0,kg/TJ,13248635.399999999,kg +987a825a-61f2-348f-bb1f-2f6b2987caab,SESCO,II.5.1,Córdoba,AR-X,annual,2023,gas oil combustion consumption by agriculture machines,178.79399999999998,TJ,CH4,3.9,kg/TJ,697.2965999999999,kg +987a825a-61f2-348f-bb1f-2f6b2987caab,SESCO,II.5.1,Córdoba,AR-X,annual,2023,gas oil combustion consumption by agriculture machines,178.79399999999998,TJ,N2O,3.9,kg/TJ,697.2965999999999,kg +b1e3fe98-e938-3fc9-be0e-77e810876626,SESCO,II.5.1,Entre Rios,AR-E,annual,2023,gas oil combustion consumption by agriculture machines,13.83396,TJ,CO2,74100.0,kg/TJ,1025096.436,kg +d9984e00-ee47-3fe0-86a9-c4c62bafc226,SESCO,II.5.1,Entre Rios,AR-E,annual,2023,gas oil combustion consumption by agriculture machines,13.83396,TJ,CH4,3.9,kg/TJ,53.952444,kg +d9984e00-ee47-3fe0-86a9-c4c62bafc226,SESCO,II.5.1,Entre Rios,AR-E,annual,2023,gas oil combustion consumption by agriculture machines,13.83396,TJ,N2O,3.9,kg/TJ,53.952444,kg +94ade838-2582-3c86-bef7-efeadd0eb694,SESCO,II.5.1,La Pampa,AR-L,annual,2023,gas oil combustion consumption by agriculture machines,32.18292,TJ,CO2,74100.0,kg/TJ,2384754.3720000004,kg +ec08d1ce-52aa-3e43-b732-8f6acb803e2a,SESCO,II.5.1,La Pampa,AR-L,annual,2023,gas oil combustion consumption by agriculture machines,32.18292,TJ,CH4,3.9,kg/TJ,125.513388,kg +ec08d1ce-52aa-3e43-b732-8f6acb803e2a,SESCO,II.5.1,La Pampa,AR-L,annual,2023,gas oil combustion consumption by agriculture machines,32.18292,TJ,N2O,3.9,kg/TJ,125.513388,kg +91d33ec7-e4e7-39d6-b1a3-4237435e3bad,SESCO,II.5.1,Santa Fe,AR-S,annual,2023,gas oil combustion consumption by agriculture machines,159.75876,TJ,CO2,74100.0,kg/TJ,11838124.116,kg +f87c6e4d-76f8-3715-84cf-85e43e8ef8c1,SESCO,II.5.1,Santa Fe,AR-S,annual,2023,gas oil combustion consumption by agriculture machines,159.75876,TJ,CH4,3.9,kg/TJ,623.059164,kg +f87c6e4d-76f8-3715-84cf-85e43e8ef8c1,SESCO,II.5.1,Santa Fe,AR-S,annual,2023,gas oil combustion consumption by agriculture machines,159.75876,TJ,N2O,3.9,kg/TJ,623.059164,kg +8612a688-909d-3051-8aa0-b9495ffe6999,SESCO,II.5.1,Tucuman,AR-T,annual,2023,gas oil combustion consumption by agriculture machines,38.829,TJ,CO2,74100.0,kg/TJ,2877228.9,kg +ee7e4276-9b8c-36b4-88c0-55e855a0a264,SESCO,II.5.1,Tucuman,AR-T,annual,2023,gas oil combustion consumption by agriculture machines,38.829,TJ,CH4,3.9,kg/TJ,151.4331,kg +ee7e4276-9b8c-36b4-88c0-55e855a0a264,SESCO,II.5.1,Tucuman,AR-T,annual,2023,gas oil combustion consumption by agriculture machines,38.829,TJ,N2O,3.9,kg/TJ,151.4331,kg +f0686159-aa99-30e5-af6d-03b618056d27,SESCO,II.5.1,Buenos Aires,AR-B,annual,2023,gas oil combustion consumption by agriculture machines,16.65132,TJ,CO2,74100.0,kg/TJ,1233862.812,kg +86fde6ac-3cd1-3fc5-9db0-f7e43da36df6,SESCO,II.5.1,Buenos Aires,AR-B,annual,2023,gas oil combustion consumption by agriculture machines,16.65132,TJ,CH4,3.9,kg/TJ,64.940148,kg +86fde6ac-3cd1-3fc5-9db0-f7e43da36df6,SESCO,II.5.1,Buenos Aires,AR-B,annual,2023,gas oil combustion consumption by agriculture machines,16.65132,TJ,N2O,3.9,kg/TJ,64.940148,kg +a2c90a56-ac7b-3db0-b5b2-a9149a1bff47,SESCO,II.5.1,Córdoba,AR-X,annual,2023,gas oil combustion consumption by agriculture machines,11.233319999999999,TJ,CO2,74100.0,kg/TJ,832389.012,kg +4b159f5d-3b8a-32b5-8aff-5f713b6bf6d4,SESCO,II.5.1,Córdoba,AR-X,annual,2023,gas oil combustion consumption by agriculture machines,11.233319999999999,TJ,CH4,3.9,kg/TJ,43.809948,kg +4b159f5d-3b8a-32b5-8aff-5f713b6bf6d4,SESCO,II.5.1,Córdoba,AR-X,annual,2023,gas oil combustion consumption by agriculture machines,11.233319999999999,TJ,N2O,3.9,kg/TJ,43.809948,kg +fbe8f7dc-39bf-3e2c-8af3-d953dd895aa2,SESCO,II.5.1,Santa Fe,AR-S,annual,2023,gas oil combustion consumption by agriculture machines,11.48616,TJ,CO2,74100.0,kg/TJ,851124.456,kg +a6fc9a68-e6bd-3eac-b635-3c49294e8684,SESCO,II.5.1,Santa Fe,AR-S,annual,2023,gas oil combustion consumption by agriculture machines,11.48616,TJ,CH4,3.9,kg/TJ,44.796023999999996,kg +a6fc9a68-e6bd-3eac-b635-3c49294e8684,SESCO,II.5.1,Santa Fe,AR-S,annual,2023,gas oil combustion consumption by agriculture machines,11.48616,TJ,N2O,3.9,kg/TJ,44.796023999999996,kg +fb074a7c-1256-3b58-a014-bb09195b4b7f,SESCO,II.5.1,Tucuman,AR-T,annual,2023,gas oil combustion consumption by agriculture machines,1.0836,TJ,CO2,74100.0,kg/TJ,80294.76,kg +f8795533-a017-3628-bdb7-6e8d627d92ce,SESCO,II.5.1,Tucuman,AR-T,annual,2023,gas oil combustion consumption by agriculture machines,1.0836,TJ,CH4,3.9,kg/TJ,4.226039999999999,kg +f8795533-a017-3628-bdb7-6e8d627d92ce,SESCO,II.5.1,Tucuman,AR-T,annual,2023,gas oil combustion consumption by agriculture machines,1.0836,TJ,N2O,3.9,kg/TJ,4.226039999999999,kg +fef1d8a2-e185-38a1-9121-1ac7d74819bd,SESCO,II.1.1,Buenos Aires,AR-B,annual,2023,gas oil combustion consumption by to the public,2010.3308399999999,TJ,CO2,74100.0,kg/TJ,148965515.244,kg +7fe4ba85-2714-36b3-9db5-748313e21ea1,SESCO,II.1.1,Buenos Aires,AR-B,annual,2023,gas oil combustion consumption by to the public,2010.3308399999999,TJ,CH4,3.9,kg/TJ,7840.290275999999,kg +7fe4ba85-2714-36b3-9db5-748313e21ea1,SESCO,II.1.1,Buenos Aires,AR-B,annual,2023,gas oil combustion consumption by to the public,2010.3308399999999,TJ,N2O,3.9,kg/TJ,7840.290275999999,kg +3921c44f-802d-3e18-bcee-54db068efaa9,SESCO,II.1.1,Capital Federal,AR-C,annual,2023,gas oil combustion consumption by to the public,159.61428,TJ,CO2,74100.0,kg/TJ,11827418.148,kg +a0854779-eef5-3b76-80ca-f98dded878b3,SESCO,II.1.1,Capital Federal,AR-C,annual,2023,gas oil combustion consumption by to the public,159.61428,TJ,CH4,3.9,kg/TJ,622.495692,kg +a0854779-eef5-3b76-80ca-f98dded878b3,SESCO,II.1.1,Capital Federal,AR-C,annual,2023,gas oil combustion consumption by to the public,159.61428,TJ,N2O,3.9,kg/TJ,622.495692,kg +f8f4082e-5245-3039-a66f-75e98d47fb4e,SESCO,II.1.1,Catamarca,AR-K,annual,2023,gas oil combustion consumption by to the public,6.24876,TJ,CO2,74100.0,kg/TJ,463033.116,kg +b2c6f146-adc1-3513-b2d0-8eea072f66ee,SESCO,II.1.1,Catamarca,AR-K,annual,2023,gas oil combustion consumption by to the public,6.24876,TJ,CH4,3.9,kg/TJ,24.370164,kg +b2c6f146-adc1-3513-b2d0-8eea072f66ee,SESCO,II.1.1,Catamarca,AR-K,annual,2023,gas oil combustion consumption by to the public,6.24876,TJ,N2O,3.9,kg/TJ,24.370164,kg +92e8ffe8-bcb3-3ee4-ac8e-2c5aceaddded,SESCO,II.1.1,Corrientes,AR-W,annual,2023,gas oil combustion consumption by to the public,0.32508,TJ,CO2,74100.0,kg/TJ,24088.428,kg +5c4b394d-ca67-3a41-a2f9-0290dfee1304,SESCO,II.1.1,Corrientes,AR-W,annual,2023,gas oil combustion consumption by to the public,0.32508,TJ,CH4,3.9,kg/TJ,1.267812,kg +5c4b394d-ca67-3a41-a2f9-0290dfee1304,SESCO,II.1.1,Corrientes,AR-W,annual,2023,gas oil combustion consumption by to the public,0.32508,TJ,N2O,3.9,kg/TJ,1.267812,kg +1117ba6a-8e84-3bdd-be94-7b3acd354e24,SESCO,II.1.1,Córdoba,AR-X,annual,2023,gas oil combustion consumption by to the public,1003.70256,TJ,CO2,74100.0,kg/TJ,74374359.696,kg +60d84edc-f927-3662-ac2c-135c05a346fb,SESCO,II.1.1,Córdoba,AR-X,annual,2023,gas oil combustion consumption by to the public,1003.70256,TJ,CH4,3.9,kg/TJ,3914.4399839999996,kg +60d84edc-f927-3662-ac2c-135c05a346fb,SESCO,II.1.1,Córdoba,AR-X,annual,2023,gas oil combustion consumption by to the public,1003.70256,TJ,N2O,3.9,kg/TJ,3914.4399839999996,kg +a30e04e3-cd71-3f9b-a3f0-c4ad53530dab,SESCO,II.1.1,Entre Rios,AR-E,annual,2023,gas oil combustion consumption by to the public,365.10096,TJ,CO2,74100.0,kg/TJ,27053981.136,kg +65e6ec77-5501-37b7-a6ca-90f695400590,SESCO,II.1.1,Entre Rios,AR-E,annual,2023,gas oil combustion consumption by to the public,365.10096,TJ,CH4,3.9,kg/TJ,1423.893744,kg +65e6ec77-5501-37b7-a6ca-90f695400590,SESCO,II.1.1,Entre Rios,AR-E,annual,2023,gas oil combustion consumption by to the public,365.10096,TJ,N2O,3.9,kg/TJ,1423.893744,kg +3f7cd834-9b4a-322c-b16d-0d2dd66b22ca,SESCO,II.1.1,La Rioja,AR-F,annual,2023,gas oil combustion consumption by to the public,0.61404,TJ,CO2,74100.0,kg/TJ,45500.364,kg +ac92cd78-4406-3d46-bf38-152169c78bd4,SESCO,II.1.1,La Rioja,AR-F,annual,2023,gas oil combustion consumption by to the public,0.61404,TJ,CH4,3.9,kg/TJ,2.394756,kg +ac92cd78-4406-3d46-bf38-152169c78bd4,SESCO,II.1.1,La Rioja,AR-F,annual,2023,gas oil combustion consumption by to the public,0.61404,TJ,N2O,3.9,kg/TJ,2.394756,kg +997a0a56-807a-3836-82fd-de0d37d02f0a,SESCO,II.1.1,Mendoza,AR-M,annual,2023,gas oil combustion consumption by to the public,521.60892,TJ,CO2,74100.0,kg/TJ,38651220.972,kg +7578da21-c6f7-309e-af94-eda7fffd098c,SESCO,II.1.1,Mendoza,AR-M,annual,2023,gas oil combustion consumption by to the public,521.60892,TJ,CH4,3.9,kg/TJ,2034.274788,kg +7578da21-c6f7-309e-af94-eda7fffd098c,SESCO,II.1.1,Mendoza,AR-M,annual,2023,gas oil combustion consumption by to the public,521.60892,TJ,N2O,3.9,kg/TJ,2034.274788,kg +cd36fca4-6128-3cae-bd42-4e9ece4628e9,SESCO,II.1.1,San Luis,AR-D,annual,2023,gas oil combustion consumption by to the public,25.42848,TJ,CO2,74100.0,kg/TJ,1884250.368,kg +d56c1d29-8744-351f-90fa-1146d00a407a,SESCO,II.1.1,San Luis,AR-D,annual,2023,gas oil combustion consumption by to the public,25.42848,TJ,CH4,3.9,kg/TJ,99.171072,kg +d56c1d29-8744-351f-90fa-1146d00a407a,SESCO,II.1.1,San Luis,AR-D,annual,2023,gas oil combustion consumption by to the public,25.42848,TJ,N2O,3.9,kg/TJ,99.171072,kg +64fd142e-0ec3-3551-b4c3-a04f77b05ec3,SESCO,II.1.1,Santa Fe,AR-S,annual,2023,gas oil combustion consumption by to the public,1109.9676,TJ,CO2,74100.0,kg/TJ,82248599.16,kg +ba281c4c-ae07-356b-a716-af2bdd6ab8bb,SESCO,II.1.1,Santa Fe,AR-S,annual,2023,gas oil combustion consumption by to the public,1109.9676,TJ,CH4,3.9,kg/TJ,4328.87364,kg +ba281c4c-ae07-356b-a716-af2bdd6ab8bb,SESCO,II.1.1,Santa Fe,AR-S,annual,2023,gas oil combustion consumption by to the public,1109.9676,TJ,N2O,3.9,kg/TJ,4328.87364,kg +10cde8a4-b30f-3795-ab17-a76decf91223,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2023,gas oil combustion consumption by to the public,12.4614,TJ,CO2,74100.0,kg/TJ,923389.74,kg +3a23c8e2-050f-30fc-8532-efb4b6a34daf,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2023,gas oil combustion consumption by to the public,12.4614,TJ,CH4,3.9,kg/TJ,48.59945999999999,kg +3a23c8e2-050f-30fc-8532-efb4b6a34daf,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2023,gas oil combustion consumption by to the public,12.4614,TJ,N2O,3.9,kg/TJ,48.59945999999999,kg +f5c6026b-8544-3a82-b8f8-2866209129d2,SESCO,II.1.1,Tucuman,AR-T,annual,2023,gas oil combustion consumption by to the public,59.52576,TJ,CO2,74100.0,kg/TJ,4410858.816,kg +624f14f4-4e29-3fc7-bee3-004e1770d774,SESCO,II.1.1,Tucuman,AR-T,annual,2023,gas oil combustion consumption by to the public,59.52576,TJ,CH4,3.9,kg/TJ,232.150464,kg +624f14f4-4e29-3fc7-bee3-004e1770d774,SESCO,II.1.1,Tucuman,AR-T,annual,2023,gas oil combustion consumption by to the public,59.52576,TJ,N2O,3.9,kg/TJ,232.150464,kg +d1767ee7-bd83-33cb-ae84-b62138f452a3,SESCO,II.1.1,Buenos Aires,AR-B,annual,2023,gas oil combustion consumption by to the public,212.13276,TJ,CO2,74100.0,kg/TJ,15719037.515999999,kg +727a902c-a919-3f46-97b9-dcf2e800c22b,SESCO,II.1.1,Buenos Aires,AR-B,annual,2023,gas oil combustion consumption by to the public,212.13276,TJ,CH4,3.9,kg/TJ,827.3177639999999,kg +727a902c-a919-3f46-97b9-dcf2e800c22b,SESCO,II.1.1,Buenos Aires,AR-B,annual,2023,gas oil combustion consumption by to the public,212.13276,TJ,N2O,3.9,kg/TJ,827.3177639999999,kg +1963083f-23cc-3d6e-96a5-07fb94a958a0,SESCO,II.1.1,Capital Federal,AR-C,annual,2023,gas oil combustion consumption by to the public,14.41188,TJ,CO2,74100.0,kg/TJ,1067920.308,kg +a7fed7ce-1d8c-3a3e-8515-51ddba076bb8,SESCO,II.1.1,Capital Federal,AR-C,annual,2023,gas oil combustion consumption by to the public,14.41188,TJ,CH4,3.9,kg/TJ,56.206331999999996,kg +a7fed7ce-1d8c-3a3e-8515-51ddba076bb8,SESCO,II.1.1,Capital Federal,AR-C,annual,2023,gas oil combustion consumption by to the public,14.41188,TJ,N2O,3.9,kg/TJ,56.206331999999996,kg +8da69ce1-54ed-3403-a4f2-fcfcd344bdaf,SESCO,II.1.1,Catamarca,AR-K,annual,2023,gas oil combustion consumption by to the public,8.77716,TJ,CO2,74100.0,kg/TJ,650387.556,kg +cef86e57-9036-30c4-a773-cc8b078d0dba,SESCO,II.1.1,Catamarca,AR-K,annual,2023,gas oil combustion consumption by to the public,8.77716,TJ,CH4,3.9,kg/TJ,34.230924,kg +cef86e57-9036-30c4-a773-cc8b078d0dba,SESCO,II.1.1,Catamarca,AR-K,annual,2023,gas oil combustion consumption by to the public,8.77716,TJ,N2O,3.9,kg/TJ,34.230924,kg +0354494c-5c8c-3661-957c-252edf68e61f,SESCO,II.1.1,Corrientes,AR-W,annual,2023,gas oil combustion consumption by to the public,0.25284,TJ,CO2,74100.0,kg/TJ,18735.444,kg +84fe2139-6d90-3674-99aa-dc1595dbd8cd,SESCO,II.1.1,Corrientes,AR-W,annual,2023,gas oil combustion consumption by to the public,0.25284,TJ,CH4,3.9,kg/TJ,0.9860760000000001,kg +84fe2139-6d90-3674-99aa-dc1595dbd8cd,SESCO,II.1.1,Corrientes,AR-W,annual,2023,gas oil combustion consumption by to the public,0.25284,TJ,N2O,3.9,kg/TJ,0.9860760000000001,kg +09270dcc-60d6-3a3a-8b1a-ffd439269670,SESCO,II.1.1,Córdoba,AR-X,annual,2023,gas oil combustion consumption by to the public,133.89684,TJ,CO2,74100.0,kg/TJ,9921755.844,kg +279d1b1e-4058-336e-94aa-834bd7c65074,SESCO,II.1.1,Córdoba,AR-X,annual,2023,gas oil combustion consumption by to the public,133.89684,TJ,CH4,3.9,kg/TJ,522.197676,kg +279d1b1e-4058-336e-94aa-834bd7c65074,SESCO,II.1.1,Córdoba,AR-X,annual,2023,gas oil combustion consumption by to the public,133.89684,TJ,N2O,3.9,kg/TJ,522.197676,kg +0e8aae1e-3cf4-39dc-a694-5771def0d615,SESCO,II.1.1,Entre Rios,AR-E,annual,2023,gas oil combustion consumption by to the public,49.8456,TJ,CO2,74100.0,kg/TJ,3693558.96,kg +842a62ea-243d-3d67-bd81-9c85f6893d44,SESCO,II.1.1,Entre Rios,AR-E,annual,2023,gas oil combustion consumption by to the public,49.8456,TJ,CH4,3.9,kg/TJ,194.39783999999997,kg +842a62ea-243d-3d67-bd81-9c85f6893d44,SESCO,II.1.1,Entre Rios,AR-E,annual,2023,gas oil combustion consumption by to the public,49.8456,TJ,N2O,3.9,kg/TJ,194.39783999999997,kg +a34f91b0-6c6e-3215-8ccf-2c5e43069e79,SESCO,II.1.1,La Rioja,AR-F,annual,2023,gas oil combustion consumption by to the public,1.0836,TJ,CO2,74100.0,kg/TJ,80294.76,kg +e7de4b1d-edab-38ab-8ad1-9440c28684c6,SESCO,II.1.1,La Rioja,AR-F,annual,2023,gas oil combustion consumption by to the public,1.0836,TJ,CH4,3.9,kg/TJ,4.226039999999999,kg +e7de4b1d-edab-38ab-8ad1-9440c28684c6,SESCO,II.1.1,La Rioja,AR-F,annual,2023,gas oil combustion consumption by to the public,1.0836,TJ,N2O,3.9,kg/TJ,4.226039999999999,kg +ccf5162f-a966-36a1-95ff-da4d00ac50a2,SESCO,II.1.1,Mendoza,AR-M,annual,2023,gas oil combustion consumption by to the public,90.62508,TJ,CO2,74100.0,kg/TJ,6715318.427999999,kg +3d920788-e4be-34a6-99d5-324d2a45b43c,SESCO,II.1.1,Mendoza,AR-M,annual,2023,gas oil combustion consumption by to the public,90.62508,TJ,CH4,3.9,kg/TJ,353.437812,kg +3d920788-e4be-34a6-99d5-324d2a45b43c,SESCO,II.1.1,Mendoza,AR-M,annual,2023,gas oil combustion consumption by to the public,90.62508,TJ,N2O,3.9,kg/TJ,353.437812,kg +3be7cb99-8c30-3c57-b8be-a8c0f9eeb438,SESCO,II.1.1,San Juan,AR-J,annual,2023,gas oil combustion consumption by to the public,4.91232,TJ,CO2,74100.0,kg/TJ,364002.912,kg +93e441fc-de9e-3758-8370-d5a001ece10b,SESCO,II.1.1,San Juan,AR-J,annual,2023,gas oil combustion consumption by to the public,4.91232,TJ,CH4,3.9,kg/TJ,19.158048,kg +93e441fc-de9e-3758-8370-d5a001ece10b,SESCO,II.1.1,San Juan,AR-J,annual,2023,gas oil combustion consumption by to the public,4.91232,TJ,N2O,3.9,kg/TJ,19.158048,kg +12d4fd2d-75e3-3fa1-a97c-808ca357e598,SESCO,II.1.1,San Luis,AR-D,annual,2023,gas oil combustion consumption by to the public,3.35916,TJ,CO2,74100.0,kg/TJ,248913.75600000002,kg +94452317-44fd-31fd-892d-28aeede5b519,SESCO,II.1.1,San Luis,AR-D,annual,2023,gas oil combustion consumption by to the public,3.35916,TJ,CH4,3.9,kg/TJ,13.100724,kg +94452317-44fd-31fd-892d-28aeede5b519,SESCO,II.1.1,San Luis,AR-D,annual,2023,gas oil combustion consumption by to the public,3.35916,TJ,N2O,3.9,kg/TJ,13.100724,kg +53f7aec5-708d-3587-a3b6-d43756ae3101,SESCO,II.1.1,Santa Fe,AR-S,annual,2023,gas oil combustion consumption by to the public,153.04044,TJ,CO2,74100.0,kg/TJ,11340296.603999998,kg +bfb1b304-0179-3501-91d8-3628abb8aaae,SESCO,II.1.1,Santa Fe,AR-S,annual,2023,gas oil combustion consumption by to the public,153.04044,TJ,CH4,3.9,kg/TJ,596.857716,kg +bfb1b304-0179-3501-91d8-3628abb8aaae,SESCO,II.1.1,Santa Fe,AR-S,annual,2023,gas oil combustion consumption by to the public,153.04044,TJ,N2O,3.9,kg/TJ,596.857716,kg +039826aa-7807-3822-91fa-c3054f995f12,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2023,gas oil combustion consumption by to the public,6.71832,TJ,CO2,74100.0,kg/TJ,497827.51200000005,kg +ae93c05a-27ed-3c33-b79d-565b660416c0,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2023,gas oil combustion consumption by to the public,6.71832,TJ,CH4,3.9,kg/TJ,26.201448,kg +ae93c05a-27ed-3c33-b79d-565b660416c0,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2023,gas oil combustion consumption by to the public,6.71832,TJ,N2O,3.9,kg/TJ,26.201448,kg +13245ce0-d528-3253-903a-a99342b13d8f,SESCO,II.1.1,Tucuman,AR-T,annual,2023,gas oil combustion consumption by to the public,10.69152,TJ,CO2,74100.0,kg/TJ,792241.6320000001,kg +bed0dffe-d047-3724-b19b-4604e0ba28a5,SESCO,II.1.1,Tucuman,AR-T,annual,2023,gas oil combustion consumption by to the public,10.69152,TJ,CH4,3.9,kg/TJ,41.696928,kg +bed0dffe-d047-3724-b19b-4604e0ba28a5,SESCO,II.1.1,Tucuman,AR-T,annual,2023,gas oil combustion consumption by to the public,10.69152,TJ,N2O,3.9,kg/TJ,41.696928,kg +d8dd287e-7c51-3b4d-8fc7-dc23162a9093,SESCO,II.1.1,Córdoba,AR-X,annual,2023,jet kerosene combustion consumption by to the public,0.31453,TJ,CO2,71500.0,kg/TJ,22488.894999999997,kg +2b9903d7-d352-388d-a04c-a68bb29dfcb9,SESCO,II.1.1,Córdoba,AR-X,annual,2023,jet kerosene combustion consumption by to the public,0.31453,TJ,CH4,0.5,kg/TJ,0.157265,kg +cd8bd51c-6a31-36be-95b6-cae77f5545f2,SESCO,II.1.1,Córdoba,AR-X,annual,2023,jet kerosene combustion consumption by to the public,0.31453,TJ,N2O,2.0,kg/TJ,0.62906,kg +750c0db7-ba7d-3460-852b-35fc5a67b07c,SESCO,II.1.1,Santa Fe,AR-S,annual,2023,jet kerosene combustion consumption by to the public,0.34598299999999993,TJ,CO2,71500.0,kg/TJ,24737.784499999994,kg +08b27bf9-45dd-38ab-a319-551aa5d510c9,SESCO,II.1.1,Santa Fe,AR-S,annual,2023,jet kerosene combustion consumption by to the public,0.34598299999999993,TJ,CH4,0.5,kg/TJ,0.17299149999999996,kg +6735455d-7106-3d93-8dc8-a2f7a682fa47,SESCO,II.1.1,Santa Fe,AR-S,annual,2023,jet kerosene combustion consumption by to the public,0.34598299999999993,TJ,N2O,2.0,kg/TJ,0.6919659999999999,kg +a41821f7-47c7-3613-9431-2a46bc8cebeb,SESCO,II.5.1,Buenos Aires,AR-B,annual,2023,gas oil combustion consumption by agriculture machines,322.371,TJ,CO2,74100.0,kg/TJ,23887691.099999998,kg +8a9c6b15-e9b0-3f47-9307-e5f2983fa763,SESCO,II.5.1,Buenos Aires,AR-B,annual,2023,gas oil combustion consumption by agriculture machines,322.371,TJ,CH4,3.9,kg/TJ,1257.2468999999999,kg +8a9c6b15-e9b0-3f47-9307-e5f2983fa763,SESCO,II.5.1,Buenos Aires,AR-B,annual,2023,gas oil combustion consumption by agriculture machines,322.371,TJ,N2O,3.9,kg/TJ,1257.2468999999999,kg +858aa847-4b4a-31d9-8504-9258801fec82,SESCO,II.5.1,Capital Federal,AR-C,annual,2023,gas oil combustion consumption by agriculture machines,10.79988,TJ,CO2,74100.0,kg/TJ,800271.108,kg +738fe312-ef4a-311e-bbd9-0a084fb0d68c,SESCO,II.5.1,Capital Federal,AR-C,annual,2023,gas oil combustion consumption by agriculture machines,10.79988,TJ,CH4,3.9,kg/TJ,42.119532,kg +738fe312-ef4a-311e-bbd9-0a084fb0d68c,SESCO,II.5.1,Capital Federal,AR-C,annual,2023,gas oil combustion consumption by agriculture machines,10.79988,TJ,N2O,3.9,kg/TJ,42.119532,kg +1e7c21c2-fdb3-367a-b14b-52bc307cd96a,SESCO,II.5.1,Córdoba,AR-X,annual,2023,gas oil combustion consumption by agriculture machines,280.97748,TJ,CO2,74100.0,kg/TJ,20820431.268,kg +00fbc132-5d65-3760-85ea-e9f24c0cbe26,SESCO,II.5.1,Córdoba,AR-X,annual,2023,gas oil combustion consumption by agriculture machines,280.97748,TJ,CH4,3.9,kg/TJ,1095.812172,kg +00fbc132-5d65-3760-85ea-e9f24c0cbe26,SESCO,II.5.1,Córdoba,AR-X,annual,2023,gas oil combustion consumption by agriculture machines,280.97748,TJ,N2O,3.9,kg/TJ,1095.812172,kg +b52cdbeb-fdd0-3b0b-b741-0ca87a0f1744,SESCO,II.5.1,Entre Rios,AR-E,annual,2023,gas oil combustion consumption by agriculture machines,273.57288,TJ,CO2,74100.0,kg/TJ,20271750.408,kg +8b0ddd79-1040-39b9-a190-bf1c8ded32d8,SESCO,II.5.1,Entre Rios,AR-E,annual,2023,gas oil combustion consumption by agriculture machines,273.57288,TJ,CH4,3.9,kg/TJ,1066.934232,kg +8b0ddd79-1040-39b9-a190-bf1c8ded32d8,SESCO,II.5.1,Entre Rios,AR-E,annual,2023,gas oil combustion consumption by agriculture machines,273.57288,TJ,N2O,3.9,kg/TJ,1066.934232,kg +01874680-a7d9-3c67-9e2c-123532c8ac78,SESCO,II.5.1,Santa Fe,AR-S,annual,2023,gas oil combustion consumption by agriculture machines,149.60904,TJ,CO2,74100.0,kg/TJ,11086029.864,kg +17fc1cf1-c93a-31cc-b096-6d372aed1e56,SESCO,II.5.1,Santa Fe,AR-S,annual,2023,gas oil combustion consumption by agriculture machines,149.60904,TJ,CH4,3.9,kg/TJ,583.475256,kg +17fc1cf1-c93a-31cc-b096-6d372aed1e56,SESCO,II.5.1,Santa Fe,AR-S,annual,2023,gas oil combustion consumption by agriculture machines,149.60904,TJ,N2O,3.9,kg/TJ,583.475256,kg +bfa7d535-0860-3621-9acd-337d88d181ea,SESCO,II.5.1,Buenos Aires,AR-B,annual,2023,gas oil combustion consumption by agriculture machines,23.116799999999998,TJ,CO2,74100.0,kg/TJ,1712954.88,kg +361c9d66-3174-3dfb-8be8-e5a325b5021e,SESCO,II.5.1,Buenos Aires,AR-B,annual,2023,gas oil combustion consumption by agriculture machines,23.116799999999998,TJ,CH4,3.9,kg/TJ,90.15552,kg +361c9d66-3174-3dfb-8be8-e5a325b5021e,SESCO,II.5.1,Buenos Aires,AR-B,annual,2023,gas oil combustion consumption by agriculture machines,23.116799999999998,TJ,N2O,3.9,kg/TJ,90.15552,kg +c6ddacfc-b433-34d3-9e3b-2cb8710446be,SESCO,II.5.1,Capital Federal,AR-C,annual,2023,gas oil combustion consumption by agriculture machines,0.32508,TJ,CO2,74100.0,kg/TJ,24088.428,kg +04990360-e105-3789-8554-9d1a6c508756,SESCO,II.5.1,Capital Federal,AR-C,annual,2023,gas oil combustion consumption by agriculture machines,0.32508,TJ,CH4,3.9,kg/TJ,1.267812,kg +04990360-e105-3789-8554-9d1a6c508756,SESCO,II.5.1,Capital Federal,AR-C,annual,2023,gas oil combustion consumption by agriculture machines,0.32508,TJ,N2O,3.9,kg/TJ,1.267812,kg +70070a3b-ccda-39a9-a66d-3e898a81871e,SESCO,II.5.1,Córdoba,AR-X,annual,2023,gas oil combustion consumption by agriculture machines,16.976399999999998,TJ,CO2,74100.0,kg/TJ,1257951.2399999998,kg +c3ec5096-5322-3ca8-a235-83968d79c335,SESCO,II.5.1,Córdoba,AR-X,annual,2023,gas oil combustion consumption by agriculture machines,16.976399999999998,TJ,CH4,3.9,kg/TJ,66.20795999999999,kg +c3ec5096-5322-3ca8-a235-83968d79c335,SESCO,II.5.1,Córdoba,AR-X,annual,2023,gas oil combustion consumption by agriculture machines,16.976399999999998,TJ,N2O,3.9,kg/TJ,66.20795999999999,kg +f5401885-e321-391f-a795-3856dfaa929f,SESCO,II.5.1,Entre Rios,AR-E,annual,2023,gas oil combustion consumption by agriculture machines,7.29624,TJ,CO2,74100.0,kg/TJ,540651.384,kg +294c922a-22aa-344e-a299-53694513973d,SESCO,II.5.1,Entre Rios,AR-E,annual,2023,gas oil combustion consumption by agriculture machines,7.29624,TJ,CH4,3.9,kg/TJ,28.455336,kg +294c922a-22aa-344e-a299-53694513973d,SESCO,II.5.1,Entre Rios,AR-E,annual,2023,gas oil combustion consumption by agriculture machines,7.29624,TJ,N2O,3.9,kg/TJ,28.455336,kg +b5c86a9c-a11f-3085-b44f-3b1f34a0518e,SESCO,II.5.1,Santa Fe,AR-S,annual,2023,gas oil combustion consumption by agriculture machines,7.62132,TJ,CO2,74100.0,kg/TJ,564739.812,kg +295fa484-2599-3e3d-b430-9e3ce82c46dc,SESCO,II.5.1,Santa Fe,AR-S,annual,2023,gas oil combustion consumption by agriculture machines,7.62132,TJ,CH4,3.9,kg/TJ,29.723148,kg +295fa484-2599-3e3d-b430-9e3ce82c46dc,SESCO,II.5.1,Santa Fe,AR-S,annual,2023,gas oil combustion consumption by agriculture machines,7.62132,TJ,N2O,3.9,kg/TJ,29.723148,kg +74093dc3-7730-3fc3-aa87-8d1ac6235e5b,SESCO,II.1.1,Buenos Aires,AR-B,annual,2023,gasoline combustion consumption by to the public,4.9173,TJ,CO2,69300.0,kg/TJ,340768.89,kg +2fb0acca-4d1a-3914-967a-a877d21e2e7d,SESCO,II.1.1,Buenos Aires,AR-B,annual,2023,gasoline combustion consumption by to the public,4.9173,TJ,CH4,33.0,kg/TJ,162.2709,kg +eb2b41f6-0cb3-3769-8c99-f47b153c0ce9,SESCO,II.1.1,Buenos Aires,AR-B,annual,2023,gasoline combustion consumption by to the public,4.9173,TJ,N2O,3.2,kg/TJ,15.73536,kg +b4fb8564-4007-3959-85e0-ad0223afe22a,SESCO,II.1.1,Buenos Aires,AR-B,annual,2023,gas oil combustion consumption by to the public,1684.31172,TJ,CO2,74100.0,kg/TJ,124807498.45199999,kg +d25331ac-7753-3730-b560-5394edf119db,SESCO,II.1.1,Buenos Aires,AR-B,annual,2023,gas oil combustion consumption by to the public,1684.31172,TJ,CH4,3.9,kg/TJ,6568.815707999999,kg +d25331ac-7753-3730-b560-5394edf119db,SESCO,II.1.1,Buenos Aires,AR-B,annual,2023,gas oil combustion consumption by to the public,1684.31172,TJ,N2O,3.9,kg/TJ,6568.815707999999,kg +ddf712cc-8498-30fc-9799-14508ce975e6,SESCO,II.1.1,Capital Federal,AR-C,annual,2023,gas oil combustion consumption by to the public,286.53996,TJ,CO2,74100.0,kg/TJ,21232611.036000002,kg +d02248c0-6887-387d-a37c-ad48c6cd4a42,SESCO,II.1.1,Capital Federal,AR-C,annual,2023,gas oil combustion consumption by to the public,286.53996,TJ,CH4,3.9,kg/TJ,1117.505844,kg +d02248c0-6887-387d-a37c-ad48c6cd4a42,SESCO,II.1.1,Capital Federal,AR-C,annual,2023,gas oil combustion consumption by to the public,286.53996,TJ,N2O,3.9,kg/TJ,1117.505844,kg +6f0094da-fc63-33c6-ae45-bcd06fb8ccec,SESCO,II.1.1,Catamarca,AR-K,annual,2023,gas oil combustion consumption by to the public,54.07164,TJ,CO2,74100.0,kg/TJ,4006708.524,kg +da557630-4f18-3ff0-8bf2-1d79081171c1,SESCO,II.1.1,Catamarca,AR-K,annual,2023,gas oil combustion consumption by to the public,54.07164,TJ,CH4,3.9,kg/TJ,210.879396,kg +da557630-4f18-3ff0-8bf2-1d79081171c1,SESCO,II.1.1,Catamarca,AR-K,annual,2023,gas oil combustion consumption by to the public,54.07164,TJ,N2O,3.9,kg/TJ,210.879396,kg +22216867-7a76-357b-972b-c1e6450f20b6,SESCO,II.1.1,Chaco,AR-H,annual,2023,gas oil combustion consumption by to the public,260.20848,TJ,CO2,74100.0,kg/TJ,19281448.368,kg +93d54ce6-d33e-38b2-bf69-807493c9ef50,SESCO,II.1.1,Chaco,AR-H,annual,2023,gas oil combustion consumption by to the public,260.20848,TJ,CH4,3.9,kg/TJ,1014.813072,kg +93d54ce6-d33e-38b2-bf69-807493c9ef50,SESCO,II.1.1,Chaco,AR-H,annual,2023,gas oil combustion consumption by to the public,260.20848,TJ,N2O,3.9,kg/TJ,1014.813072,kg +d2d2c925-70dd-36c3-b1d2-f096a29d6e08,SESCO,II.1.1,Corrientes,AR-W,annual,2023,gas oil combustion consumption by to the public,388.32612,TJ,CO2,74100.0,kg/TJ,28774965.492,kg +4acddb5d-ae0e-3b64-81e6-e2824ba6ecdc,SESCO,II.1.1,Corrientes,AR-W,annual,2023,gas oil combustion consumption by to the public,388.32612,TJ,CH4,3.9,kg/TJ,1514.471868,kg +4acddb5d-ae0e-3b64-81e6-e2824ba6ecdc,SESCO,II.1.1,Corrientes,AR-W,annual,2023,gas oil combustion consumption by to the public,388.32612,TJ,N2O,3.9,kg/TJ,1514.471868,kg +9731b2c6-2edf-3920-a7a0-a2af11f9a49f,SESCO,II.1.1,Córdoba,AR-X,annual,2023,gas oil combustion consumption by to the public,808.0044,TJ,CO2,74100.0,kg/TJ,59873126.04,kg +e6842337-b757-382b-aa7c-2ca88581efcb,SESCO,II.1.1,Córdoba,AR-X,annual,2023,gas oil combustion consumption by to the public,808.0044,TJ,CH4,3.9,kg/TJ,3151.21716,kg +e6842337-b757-382b-aa7c-2ca88581efcb,SESCO,II.1.1,Córdoba,AR-X,annual,2023,gas oil combustion consumption by to the public,808.0044,TJ,N2O,3.9,kg/TJ,3151.21716,kg +e6286255-12eb-3cc6-bde0-c2cc89a6257c,SESCO,II.1.1,Entre Rios,AR-E,annual,2023,gas oil combustion consumption by to the public,597.53316,TJ,CO2,74100.0,kg/TJ,44277207.155999996,kg +3a0bce7d-8d5d-3b8d-bbd7-fc16dd6a80c2,SESCO,II.1.1,Entre Rios,AR-E,annual,2023,gas oil combustion consumption by to the public,597.53316,TJ,CH4,3.9,kg/TJ,2330.3793239999995,kg +3a0bce7d-8d5d-3b8d-bbd7-fc16dd6a80c2,SESCO,II.1.1,Entre Rios,AR-E,annual,2023,gas oil combustion consumption by to the public,597.53316,TJ,N2O,3.9,kg/TJ,2330.3793239999995,kg +3ba538ee-bc60-390a-a8c4-307cdf283500,SESCO,II.1.1,Formosa,AR-P,annual,2023,gas oil combustion consumption by to the public,17.987759999999998,TJ,CO2,74100.0,kg/TJ,1332893.0159999998,kg +06b4ef9e-00c0-3333-bc02-424bd1b4387d,SESCO,II.1.1,Formosa,AR-P,annual,2023,gas oil combustion consumption by to the public,17.987759999999998,TJ,CH4,3.9,kg/TJ,70.15226399999999,kg +06b4ef9e-00c0-3333-bc02-424bd1b4387d,SESCO,II.1.1,Formosa,AR-P,annual,2023,gas oil combustion consumption by to the public,17.987759999999998,TJ,N2O,3.9,kg/TJ,70.15226399999999,kg +4dcf6e86-3d14-33ba-beec-e9f80eb48fc3,SESCO,II.1.1,La Rioja,AR-F,annual,2023,gas oil combustion consumption by to the public,59.20068,TJ,CO2,74100.0,kg/TJ,4386770.388,kg +64d7a6a9-8b0b-3c05-916a-c9e7d783fe94,SESCO,II.1.1,La Rioja,AR-F,annual,2023,gas oil combustion consumption by to the public,59.20068,TJ,CH4,3.9,kg/TJ,230.88265199999998,kg +64d7a6a9-8b0b-3c05-916a-c9e7d783fe94,SESCO,II.1.1,La Rioja,AR-F,annual,2023,gas oil combustion consumption by to the public,59.20068,TJ,N2O,3.9,kg/TJ,230.88265199999998,kg +772cc5a2-7b07-3cbd-b7d8-c490801225bb,SESCO,II.1.1,Mendoza,AR-M,annual,2023,gas oil combustion consumption by to the public,1017.28368,TJ,CO2,74100.0,kg/TJ,75380720.688,kg +84ac7f2d-d66a-36bf-806a-91785d19c4b6,SESCO,II.1.1,Mendoza,AR-M,annual,2023,gas oil combustion consumption by to the public,1017.28368,TJ,CH4,3.9,kg/TJ,3967.406352,kg +84ac7f2d-d66a-36bf-806a-91785d19c4b6,SESCO,II.1.1,Mendoza,AR-M,annual,2023,gas oil combustion consumption by to the public,1017.28368,TJ,N2O,3.9,kg/TJ,3967.406352,kg +be548325-7b57-33de-a019-d37c4a14b1f9,SESCO,II.1.1,Misiones,AR-N,annual,2023,gas oil combustion consumption by to the public,373.842,TJ,CO2,74100.0,kg/TJ,27701692.2,kg +d258e016-da54-3ddf-bafd-5766e4e7a7bf,SESCO,II.1.1,Misiones,AR-N,annual,2023,gas oil combustion consumption by to the public,373.842,TJ,CH4,3.9,kg/TJ,1457.9838,kg +d258e016-da54-3ddf-bafd-5766e4e7a7bf,SESCO,II.1.1,Misiones,AR-N,annual,2023,gas oil combustion consumption by to the public,373.842,TJ,N2O,3.9,kg/TJ,1457.9838,kg +babb0450-0ff3-340d-9721-a20cdff551cd,SESCO,II.1.1,San Juan,AR-J,annual,2023,gas oil combustion consumption by to the public,162.14267999999998,TJ,CO2,74100.0,kg/TJ,12014772.588,kg +60ceb8a1-aafa-3bfe-b06f-39d4c6e0ffaf,SESCO,II.1.1,San Juan,AR-J,annual,2023,gas oil combustion consumption by to the public,162.14267999999998,TJ,CH4,3.9,kg/TJ,632.3564519999999,kg +60ceb8a1-aafa-3bfe-b06f-39d4c6e0ffaf,SESCO,II.1.1,San Juan,AR-J,annual,2023,gas oil combustion consumption by to the public,162.14267999999998,TJ,N2O,3.9,kg/TJ,632.3564519999999,kg +a99e7bc4-042f-3c39-b435-6063fe7ac464,SESCO,II.1.1,San Luis,AR-D,annual,2023,gas oil combustion consumption by to the public,33.5916,TJ,CO2,74100.0,kg/TJ,2489137.56,kg +dd905549-bbd1-3831-b0b9-08e02355cc6b,SESCO,II.1.1,San Luis,AR-D,annual,2023,gas oil combustion consumption by to the public,33.5916,TJ,CH4,3.9,kg/TJ,131.00724,kg +dd905549-bbd1-3831-b0b9-08e02355cc6b,SESCO,II.1.1,San Luis,AR-D,annual,2023,gas oil combustion consumption by to the public,33.5916,TJ,N2O,3.9,kg/TJ,131.00724,kg +244a0e0c-9791-3b7a-998a-2234a354a4f3,SESCO,II.1.1,Santa Fe,AR-S,annual,2023,gas oil combustion consumption by to the public,1056.18492,TJ,CO2,74100.0,kg/TJ,78263302.572,kg +d88caf68-37fb-35f9-96a6-3586f8b935ea,SESCO,II.1.1,Santa Fe,AR-S,annual,2023,gas oil combustion consumption by to the public,1056.18492,TJ,CH4,3.9,kg/TJ,4119.121187999999,kg +d88caf68-37fb-35f9-96a6-3586f8b935ea,SESCO,II.1.1,Santa Fe,AR-S,annual,2023,gas oil combustion consumption by to the public,1056.18492,TJ,N2O,3.9,kg/TJ,4119.121187999999,kg +530e9fef-1d04-32b0-b952-1a76cfce6d2e,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2023,gas oil combustion consumption by to the public,116.01744,TJ,CO2,74100.0,kg/TJ,8596892.304,kg +e119d9ae-52f5-3ff6-a4f8-ea3bb5ac350c,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2023,gas oil combustion consumption by to the public,116.01744,TJ,CH4,3.9,kg/TJ,452.468016,kg +e119d9ae-52f5-3ff6-a4f8-ea3bb5ac350c,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2023,gas oil combustion consumption by to the public,116.01744,TJ,N2O,3.9,kg/TJ,452.468016,kg +13a2646c-2076-3364-b32d-2e07544cb460,SESCO,II.1.1,Tucuman,AR-T,annual,2023,gas oil combustion consumption by to the public,227.44764,TJ,CO2,74100.0,kg/TJ,16853870.124,kg +2c9444c1-0fc0-3e00-a680-4c19c0c5a364,SESCO,II.1.1,Tucuman,AR-T,annual,2023,gas oil combustion consumption by to the public,227.44764,TJ,CH4,3.9,kg/TJ,887.045796,kg +2c9444c1-0fc0-3e00-a680-4c19c0c5a364,SESCO,II.1.1,Tucuman,AR-T,annual,2023,gas oil combustion consumption by to the public,227.44764,TJ,N2O,3.9,kg/TJ,887.045796,kg +f221321f-adca-3a67-bb66-e41baa1ba473,SESCO,II.1.1,Buenos Aires,AR-B,annual,2023,gas oil combustion consumption by to the public,300.73512,TJ,CO2,74100.0,kg/TJ,22284472.392,kg +48cc999c-c37b-309b-ad65-76812a63f7ea,SESCO,II.1.1,Buenos Aires,AR-B,annual,2023,gas oil combustion consumption by to the public,300.73512,TJ,CH4,3.9,kg/TJ,1172.866968,kg +48cc999c-c37b-309b-ad65-76812a63f7ea,SESCO,II.1.1,Buenos Aires,AR-B,annual,2023,gas oil combustion consumption by to the public,300.73512,TJ,N2O,3.9,kg/TJ,1172.866968,kg +f022146e-b2a5-37fa-b66c-a2d2abe79369,SESCO,II.1.1,Capital Federal,AR-C,annual,2023,gas oil combustion consumption by to the public,42.22428,TJ,CO2,74100.0,kg/TJ,3128819.148,kg +c9009ef4-e2d5-3352-b23a-357aef04256f,SESCO,II.1.1,Capital Federal,AR-C,annual,2023,gas oil combustion consumption by to the public,42.22428,TJ,CH4,3.9,kg/TJ,164.674692,kg +c9009ef4-e2d5-3352-b23a-357aef04256f,SESCO,II.1.1,Capital Federal,AR-C,annual,2023,gas oil combustion consumption by to the public,42.22428,TJ,N2O,3.9,kg/TJ,164.674692,kg +2da87d91-9c62-353d-ad26-af2078c8941f,SESCO,II.1.1,Catamarca,AR-K,annual,2023,gas oil combustion consumption by to the public,24.7422,TJ,CO2,74100.0,kg/TJ,1833397.02,kg +061886aa-6a26-3680-8c9d-15ef6de1fca0,SESCO,II.1.1,Catamarca,AR-K,annual,2023,gas oil combustion consumption by to the public,24.7422,TJ,CH4,3.9,kg/TJ,96.49458,kg +061886aa-6a26-3680-8c9d-15ef6de1fca0,SESCO,II.1.1,Catamarca,AR-K,annual,2023,gas oil combustion consumption by to the public,24.7422,TJ,N2O,3.9,kg/TJ,96.49458,kg +4bb366d5-a8e5-37da-b1ad-995c5a27f389,SESCO,II.1.1,Chaco,AR-H,annual,2023,gas oil combustion consumption by to the public,58.47828,TJ,CO2,74100.0,kg/TJ,4333240.5479999995,kg +720d6601-9c52-31fc-b02e-18b61045a35b,SESCO,II.1.1,Chaco,AR-H,annual,2023,gas oil combustion consumption by to the public,58.47828,TJ,CH4,3.9,kg/TJ,228.065292,kg +720d6601-9c52-31fc-b02e-18b61045a35b,SESCO,II.1.1,Chaco,AR-H,annual,2023,gas oil combustion consumption by to the public,58.47828,TJ,N2O,3.9,kg/TJ,228.065292,kg +b34a8939-f383-3df2-9834-9025aaff0654,SESCO,II.1.1,Corrientes,AR-W,annual,2023,gas oil combustion consumption by to the public,27.52344,TJ,CO2,74100.0,kg/TJ,2039486.904,kg +94bc27a5-cbe7-321c-adba-8092f3a795d2,SESCO,II.1.1,Corrientes,AR-W,annual,2023,gas oil combustion consumption by to the public,27.52344,TJ,CH4,3.9,kg/TJ,107.341416,kg +94bc27a5-cbe7-321c-adba-8092f3a795d2,SESCO,II.1.1,Corrientes,AR-W,annual,2023,gas oil combustion consumption by to the public,27.52344,TJ,N2O,3.9,kg/TJ,107.341416,kg +9f8107b0-4a25-3f15-a2fd-8f119436c7ba,SESCO,II.1.1,Córdoba,AR-X,annual,2023,gas oil combustion consumption by to the public,119.84616,TJ,CO2,74100.0,kg/TJ,8880600.456,kg +353f5576-2b49-35f7-ba25-48a293349159,SESCO,II.1.1,Córdoba,AR-X,annual,2023,gas oil combustion consumption by to the public,119.84616,TJ,CH4,3.9,kg/TJ,467.400024,kg +353f5576-2b49-35f7-ba25-48a293349159,SESCO,II.1.1,Córdoba,AR-X,annual,2023,gas oil combustion consumption by to the public,119.84616,TJ,N2O,3.9,kg/TJ,467.400024,kg +bcc89e6c-adbf-3f18-9f9b-f44109a29d03,SESCO,II.1.1,Entre Rios,AR-E,annual,2023,gas oil combustion consumption by to the public,94.6344,TJ,CO2,74100.0,kg/TJ,7012409.04,kg +88202217-1098-32cd-a2d5-5ef38b144849,SESCO,II.1.1,Entre Rios,AR-E,annual,2023,gas oil combustion consumption by to the public,94.6344,TJ,CH4,3.9,kg/TJ,369.07416,kg +88202217-1098-32cd-a2d5-5ef38b144849,SESCO,II.1.1,Entre Rios,AR-E,annual,2023,gas oil combustion consumption by to the public,94.6344,TJ,N2O,3.9,kg/TJ,369.07416,kg +95b5b8be-5774-3247-8ad7-fec972214827,SESCO,II.1.1,Formosa,AR-P,annual,2023,gas oil combustion consumption by to the public,3.50364,TJ,CO2,74100.0,kg/TJ,259619.724,kg +61044331-fdf7-36a9-b817-4ceea416a6b3,SESCO,II.1.1,Formosa,AR-P,annual,2023,gas oil combustion consumption by to the public,3.50364,TJ,CH4,3.9,kg/TJ,13.664195999999999,kg +61044331-fdf7-36a9-b817-4ceea416a6b3,SESCO,II.1.1,Formosa,AR-P,annual,2023,gas oil combustion consumption by to the public,3.50364,TJ,N2O,3.9,kg/TJ,13.664195999999999,kg +9e7320d9-2b4f-3744-bd29-526fb6c79b64,SESCO,II.1.1,La Rioja,AR-F,annual,2023,gas oil combustion consumption by to the public,23.51412,TJ,CO2,74100.0,kg/TJ,1742396.292,kg +f1b621ce-8d3f-3e9b-a3a2-c372338ca736,SESCO,II.1.1,La Rioja,AR-F,annual,2023,gas oil combustion consumption by to the public,23.51412,TJ,CH4,3.9,kg/TJ,91.705068,kg +f1b621ce-8d3f-3e9b-a3a2-c372338ca736,SESCO,II.1.1,La Rioja,AR-F,annual,2023,gas oil combustion consumption by to the public,23.51412,TJ,N2O,3.9,kg/TJ,91.705068,kg +debe0b8f-750a-31ed-8bf7-fa27d0fa3cfe,SESCO,II.1.1,Mendoza,AR-M,annual,2023,gas oil combustion consumption by to the public,145.16628,TJ,CO2,74100.0,kg/TJ,10756821.348,kg +bb4b21ae-e3ca-3328-985e-a5c84e67c148,SESCO,II.1.1,Mendoza,AR-M,annual,2023,gas oil combustion consumption by to the public,145.16628,TJ,CH4,3.9,kg/TJ,566.148492,kg +bb4b21ae-e3ca-3328-985e-a5c84e67c148,SESCO,II.1.1,Mendoza,AR-M,annual,2023,gas oil combustion consumption by to the public,145.16628,TJ,N2O,3.9,kg/TJ,566.148492,kg +fdc3c109-4b31-3214-9719-a2bae0dc1c01,SESCO,II.1.1,Misiones,AR-N,annual,2023,gas oil combustion consumption by to the public,28.24584,TJ,CO2,74100.0,kg/TJ,2093016.7440000002,kg +222fce30-201c-3719-baa7-076fa417d4f6,SESCO,II.1.1,Misiones,AR-N,annual,2023,gas oil combustion consumption by to the public,28.24584,TJ,CH4,3.9,kg/TJ,110.158776,kg +222fce30-201c-3719-baa7-076fa417d4f6,SESCO,II.1.1,Misiones,AR-N,annual,2023,gas oil combustion consumption by to the public,28.24584,TJ,N2O,3.9,kg/TJ,110.158776,kg +6a54925d-2f6e-357e-849b-ffad6f0e4f5c,SESCO,II.1.1,San Juan,AR-J,annual,2023,gas oil combustion consumption by to the public,35.9394,TJ,CO2,74100.0,kg/TJ,2663109.54,kg +5e849432-9ea9-3c48-9264-3eb210818167,SESCO,II.1.1,San Juan,AR-J,annual,2023,gas oil combustion consumption by to the public,35.9394,TJ,CH4,3.9,kg/TJ,140.16366,kg +5e849432-9ea9-3c48-9264-3eb210818167,SESCO,II.1.1,San Juan,AR-J,annual,2023,gas oil combustion consumption by to the public,35.9394,TJ,N2O,3.9,kg/TJ,140.16366,kg +dfe5d5a8-a808-3773-9862-15b6c003b424,SESCO,II.1.1,San Luis,AR-D,annual,2023,gas oil combustion consumption by to the public,3.21468,TJ,CO2,74100.0,kg/TJ,238207.788,kg +38b47e36-e88e-3cfd-a58f-af28e80ba363,SESCO,II.1.1,San Luis,AR-D,annual,2023,gas oil combustion consumption by to the public,3.21468,TJ,CH4,3.9,kg/TJ,12.537252,kg +38b47e36-e88e-3cfd-a58f-af28e80ba363,SESCO,II.1.1,San Luis,AR-D,annual,2023,gas oil combustion consumption by to the public,3.21468,TJ,N2O,3.9,kg/TJ,12.537252,kg +e751d305-2fe8-394b-b783-561409d185aa,SESCO,II.1.1,Santa Fe,AR-S,annual,2023,gas oil combustion consumption by to the public,188.0046,TJ,CO2,74100.0,kg/TJ,13931140.860000001,kg +7b4ee8ca-c432-3305-98b6-804bc8d48b3e,SESCO,II.1.1,Santa Fe,AR-S,annual,2023,gas oil combustion consumption by to the public,188.0046,TJ,CH4,3.9,kg/TJ,733.21794,kg +7b4ee8ca-c432-3305-98b6-804bc8d48b3e,SESCO,II.1.1,Santa Fe,AR-S,annual,2023,gas oil combustion consumption by to the public,188.0046,TJ,N2O,3.9,kg/TJ,733.21794,kg +bcc0c9bd-1673-3a8a-89f5-e2f52189a5b7,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2023,gas oil combustion consumption by to the public,31.46052,TJ,CO2,74100.0,kg/TJ,2331224.532,kg +244fda60-68f7-3033-82b2-20398d80d0db,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2023,gas oil combustion consumption by to the public,31.46052,TJ,CH4,3.9,kg/TJ,122.696028,kg +244fda60-68f7-3033-82b2-20398d80d0db,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2023,gas oil combustion consumption by to the public,31.46052,TJ,N2O,3.9,kg/TJ,122.696028,kg +5e766edc-1c46-3f73-ba77-1bd8b45229ed,SESCO,II.1.1,Tucuman,AR-T,annual,2023,gas oil combustion consumption by to the public,16.00116,TJ,CO2,74100.0,kg/TJ,1185685.956,kg +d30cac35-2ae2-3591-870f-04cc67ba69b9,SESCO,II.1.1,Tucuman,AR-T,annual,2023,gas oil combustion consumption by to the public,16.00116,TJ,CH4,3.9,kg/TJ,62.404523999999995,kg +d30cac35-2ae2-3591-870f-04cc67ba69b9,SESCO,II.1.1,Tucuman,AR-T,annual,2023,gas oil combustion consumption by to the public,16.00116,TJ,N2O,3.9,kg/TJ,62.404523999999995,kg +970b0fee-498e-3b94-8b97-2164d33bfae3,SESCO,II.1.1,Corrientes,AR-W,annual,2023,jet kerosene combustion consumption by to the public,0.157265,TJ,CO2,71500.0,kg/TJ,11244.447499999998,kg +33470466-84bd-3fe3-8e5d-36ee4f291f39,SESCO,II.1.1,Corrientes,AR-W,annual,2023,jet kerosene combustion consumption by to the public,0.157265,TJ,CH4,0.5,kg/TJ,0.0786325,kg +f7df9a5f-7a07-3acd-bf5b-2c08c78a66e2,SESCO,II.1.1,Corrientes,AR-W,annual,2023,jet kerosene combustion consumption by to the public,0.157265,TJ,N2O,2.0,kg/TJ,0.31453,kg +367923cb-40b1-38b6-a59d-7a3cba3b09a9,SESCO,II.1.1,Santa Fe,AR-S,annual,2023,jet kerosene combustion consumption by to the public,0.6605129999999999,TJ,CO2,71500.0,kg/TJ,47226.67949999999,kg +2934b284-8bb0-3123-bbfe-ac8f2281c1e8,SESCO,II.1.1,Santa Fe,AR-S,annual,2023,jet kerosene combustion consumption by to the public,0.6605129999999999,TJ,CH4,0.5,kg/TJ,0.33025649999999995,kg +2a26e8f6-000f-3902-98b8-93c156c7d413,SESCO,II.1.1,Santa Fe,AR-S,annual,2023,jet kerosene combustion consumption by to the public,0.6605129999999999,TJ,N2O,2.0,kg/TJ,1.3210259999999998,kg +c2418ea3-6d87-3de5-8722-2ddc25ee4fb0,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2023,jet kerosene combustion consumption by to the public,0.9121369999999999,TJ,CO2,71500.0,kg/TJ,65217.79549999999,kg +a9f6ead5-c47f-39c7-a179-5b9a876d14c6,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2023,jet kerosene combustion consumption by to the public,0.9121369999999999,TJ,CH4,0.5,kg/TJ,0.45606849999999993,kg +0b8c414a-8b0e-3b6d-8c32-fb02b2449a2a,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2023,jet kerosene combustion consumption by to the public,0.9121369999999999,TJ,N2O,2.0,kg/TJ,1.8242739999999997,kg +38d50a01-4c02-3e61-b960-eed817530016,SESCO,I.3.1,Buenos Aires,AR-B,annual,2023,gas oil combustion consumption by petrochemical industries,6.10428,TJ,CO2,74100.0,kg/TJ,452327.148,kg +c0febd1a-df8e-3034-81b4-dfb03e4b7a7b,SESCO,I.3.1,Buenos Aires,AR-B,annual,2023,gas oil combustion consumption by petrochemical industries,6.10428,TJ,CH4,3.9,kg/TJ,23.806692,kg +c0febd1a-df8e-3034-81b4-dfb03e4b7a7b,SESCO,I.3.1,Buenos Aires,AR-B,annual,2023,gas oil combustion consumption by petrochemical industries,6.10428,TJ,N2O,3.9,kg/TJ,23.806692,kg +10105257-5bf4-32d5-b89e-2e9e60bd79e3,SESCO,I.3.1,Buenos Aires,AR-B,annual,2023,gas oil combustion consumption by petrochemical industries,0.93912,TJ,CO2,74100.0,kg/TJ,69588.792,kg +d3056a9a-eb13-31ea-89bc-d40223f070dc,SESCO,I.3.1,Buenos Aires,AR-B,annual,2023,gas oil combustion consumption by petrochemical industries,0.93912,TJ,CH4,3.9,kg/TJ,3.662568,kg +d3056a9a-eb13-31ea-89bc-d40223f070dc,SESCO,I.3.1,Buenos Aires,AR-B,annual,2023,gas oil combustion consumption by petrochemical industries,0.93912,TJ,N2O,3.9,kg/TJ,3.662568,kg +dcb2ef54-0606-3fb7-9c50-6e655740a436,SESCO,I.3.1,La Rioja,AR-F,annual,2023,gas oil combustion consumption by petrochemical industries,5.99592,TJ,CO2,74100.0,kg/TJ,444297.672,kg +604b5110-8569-38b9-b72c-c83f2320d48c,SESCO,I.3.1,La Rioja,AR-F,annual,2023,gas oil combustion consumption by petrochemical industries,5.99592,TJ,CH4,3.9,kg/TJ,23.384088,kg +604b5110-8569-38b9-b72c-c83f2320d48c,SESCO,I.3.1,La Rioja,AR-F,annual,2023,gas oil combustion consumption by petrochemical industries,5.99592,TJ,N2O,3.9,kg/TJ,23.384088,kg +cdbce76a-a4ef-3931-8a06-0f5ab4ef3a2a,SESCO,II.1.1,Chubut,AR-U,annual,2023,gas oil combustion consumption by freight transport,1.30032,TJ,CO2,74100.0,kg/TJ,96353.712,kg +cee77155-31ff-3069-b2d5-0e6b8fdbe793,SESCO,II.1.1,Chubut,AR-U,annual,2023,gas oil combustion consumption by freight transport,1.30032,TJ,CH4,3.9,kg/TJ,5.071248,kg +cee77155-31ff-3069-b2d5-0e6b8fdbe793,SESCO,II.1.1,Chubut,AR-U,annual,2023,gas oil combustion consumption by freight transport,1.30032,TJ,N2O,3.9,kg/TJ,5.071248,kg +9a7b8166-0f7e-3d60-81dc-77364783cb4e,SESCO,II.5.1,Buenos Aires,AR-B,annual,2023,gas oil combustion consumption by agriculture machines,4776.47268,TJ,CO2,74100.0,kg/TJ,353936625.588,kg +b65bb6c6-13ac-3cf1-99fe-29ae57db7f9d,SESCO,II.5.1,Buenos Aires,AR-B,annual,2023,gas oil combustion consumption by agriculture machines,4776.47268,TJ,CH4,3.9,kg/TJ,18628.243452,kg +b65bb6c6-13ac-3cf1-99fe-29ae57db7f9d,SESCO,II.5.1,Buenos Aires,AR-B,annual,2023,gas oil combustion consumption by agriculture machines,4776.47268,TJ,N2O,3.9,kg/TJ,18628.243452,kg +9127eadc-f6f7-32b5-bc2b-e530d6d7acb0,SESCO,II.5.1,Catamarca,AR-K,annual,2023,gas oil combustion consumption by agriculture machines,289.17672,TJ,CO2,74100.0,kg/TJ,21427994.952,kg +c64ae42f-e151-3f70-8e08-fbef0377797a,SESCO,II.5.1,Catamarca,AR-K,annual,2023,gas oil combustion consumption by agriculture machines,289.17672,TJ,CH4,3.9,kg/TJ,1127.789208,kg +c64ae42f-e151-3f70-8e08-fbef0377797a,SESCO,II.5.1,Catamarca,AR-K,annual,2023,gas oil combustion consumption by agriculture machines,289.17672,TJ,N2O,3.9,kg/TJ,1127.789208,kg +541fb8fa-a205-3b39-a812-3dd982ae4a45,SESCO,II.5.1,Chaco,AR-H,annual,2023,gas oil combustion consumption by agriculture machines,568.02312,TJ,CO2,74100.0,kg/TJ,42090513.191999994,kg +5db92c32-9ec4-32f6-bdb8-6756d2e6d5c7,SESCO,II.5.1,Chaco,AR-H,annual,2023,gas oil combustion consumption by agriculture machines,568.02312,TJ,CH4,3.9,kg/TJ,2215.2901679999995,kg +5db92c32-9ec4-32f6-bdb8-6756d2e6d5c7,SESCO,II.5.1,Chaco,AR-H,annual,2023,gas oil combustion consumption by agriculture machines,568.02312,TJ,N2O,3.9,kg/TJ,2215.2901679999995,kg +16c7ab5b-4bc1-3bb5-b03b-a92323d9c00e,SESCO,II.5.1,Corrientes,AR-W,annual,2023,gas oil combustion consumption by agriculture machines,880.35276,TJ,CO2,74100.0,kg/TJ,65234139.516,kg +97f3bb6c-ab59-3f29-920e-512e381158fe,SESCO,II.5.1,Corrientes,AR-W,annual,2023,gas oil combustion consumption by agriculture machines,880.35276,TJ,CH4,3.9,kg/TJ,3433.375764,kg +97f3bb6c-ab59-3f29-920e-512e381158fe,SESCO,II.5.1,Corrientes,AR-W,annual,2023,gas oil combustion consumption by agriculture machines,880.35276,TJ,N2O,3.9,kg/TJ,3433.375764,kg +c5f71b9b-0ff8-3f45-93a3-579bbe88c251,SESCO,II.5.1,Córdoba,AR-X,annual,2023,gas oil combustion consumption by agriculture machines,2496.72276,TJ,CO2,74100.0,kg/TJ,185007156.516,kg +cdec1da2-b2a1-3431-9e28-36647baaa00c,SESCO,II.5.1,Córdoba,AR-X,annual,2023,gas oil combustion consumption by agriculture machines,2496.72276,TJ,CH4,3.9,kg/TJ,9737.218764000001,kg +cdec1da2-b2a1-3431-9e28-36647baaa00c,SESCO,II.5.1,Córdoba,AR-X,annual,2023,gas oil combustion consumption by agriculture machines,2496.72276,TJ,N2O,3.9,kg/TJ,9737.218764000001,kg +b4725c0a-e8db-395a-a98b-df3aca3a6504,SESCO,II.5.1,Entre Rios,AR-E,annual,2023,gas oil combustion consumption by agriculture machines,719.76324,TJ,CO2,74100.0,kg/TJ,53334456.084,kg +b88c955a-fc53-32f4-bc57-43a2ca411a8a,SESCO,II.5.1,Entre Rios,AR-E,annual,2023,gas oil combustion consumption by agriculture machines,719.76324,TJ,CH4,3.9,kg/TJ,2807.076636,kg +b88c955a-fc53-32f4-bc57-43a2ca411a8a,SESCO,II.5.1,Entre Rios,AR-E,annual,2023,gas oil combustion consumption by agriculture machines,719.76324,TJ,N2O,3.9,kg/TJ,2807.076636,kg +5f075a92-ebb4-3247-8216-fdb8aff641a4,SESCO,II.5.1,Jujuy,AR-Y,annual,2023,gas oil combustion consumption by agriculture machines,115.83684,TJ,CO2,74100.0,kg/TJ,8583509.844,kg +e051d5c1-1bb5-3176-8369-a1e3e8007411,SESCO,II.5.1,Jujuy,AR-Y,annual,2023,gas oil combustion consumption by agriculture machines,115.83684,TJ,CH4,3.9,kg/TJ,451.763676,kg +e051d5c1-1bb5-3176-8369-a1e3e8007411,SESCO,II.5.1,Jujuy,AR-Y,annual,2023,gas oil combustion consumption by agriculture machines,115.83684,TJ,N2O,3.9,kg/TJ,451.763676,kg +10cae01b-45e8-3d3d-adb1-2b07042b00a6,SESCO,II.5.1,La Pampa,AR-L,annual,2023,gas oil combustion consumption by agriculture machines,245.86884,TJ,CO2,74100.0,kg/TJ,18218881.044,kg +8aa33926-04f6-3f1a-9034-17a432530069,SESCO,II.5.1,La Pampa,AR-L,annual,2023,gas oil combustion consumption by agriculture machines,245.86884,TJ,CH4,3.9,kg/TJ,958.888476,kg +8aa33926-04f6-3f1a-9034-17a432530069,SESCO,II.5.1,La Pampa,AR-L,annual,2023,gas oil combustion consumption by agriculture machines,245.86884,TJ,N2O,3.9,kg/TJ,958.888476,kg +3b187e17-1f55-3ed3-9695-dedcb63c59eb,SESCO,II.5.1,Mendoza,AR-M,annual,2023,gas oil combustion consumption by agriculture machines,356.39603999999997,TJ,CO2,74100.0,kg/TJ,26408946.564,kg +e438bbd9-212f-3bff-b874-5d30ede5d5a9,SESCO,II.5.1,Mendoza,AR-M,annual,2023,gas oil combustion consumption by agriculture machines,356.39603999999997,TJ,CH4,3.9,kg/TJ,1389.944556,kg +e438bbd9-212f-3bff-b874-5d30ede5d5a9,SESCO,II.5.1,Mendoza,AR-M,annual,2023,gas oil combustion consumption by agriculture machines,356.39603999999997,TJ,N2O,3.9,kg/TJ,1389.944556,kg +23c57ab3-4248-3deb-adda-1ae5a0885f1e,SESCO,II.5.1,Misiones,AR-N,annual,2023,gas oil combustion consumption by agriculture machines,148.38096,TJ,CO2,74100.0,kg/TJ,10995029.136,kg +2859e1bf-63ee-3134-83bc-194003fcb5c6,SESCO,II.5.1,Misiones,AR-N,annual,2023,gas oil combustion consumption by agriculture machines,148.38096,TJ,CH4,3.9,kg/TJ,578.6857439999999,kg +2859e1bf-63ee-3134-83bc-194003fcb5c6,SESCO,II.5.1,Misiones,AR-N,annual,2023,gas oil combustion consumption by agriculture machines,148.38096,TJ,N2O,3.9,kg/TJ,578.6857439999999,kg +7fa3a05e-fbdb-3e2a-b25b-a7ecd371c83c,SESCO,II.5.1,Neuquén,AR-Q,annual,2023,gas oil combustion consumption by agriculture machines,397.89792,TJ,CO2,74100.0,kg/TJ,29484235.872,kg +efd5cf47-4123-3080-a8d3-7f303a90117f,SESCO,II.5.1,Neuquén,AR-Q,annual,2023,gas oil combustion consumption by agriculture machines,397.89792,TJ,CH4,3.9,kg/TJ,1551.801888,kg +efd5cf47-4123-3080-a8d3-7f303a90117f,SESCO,II.5.1,Neuquén,AR-Q,annual,2023,gas oil combustion consumption by agriculture machines,397.89792,TJ,N2O,3.9,kg/TJ,1551.801888,kg +87d1b586-8ab1-34b9-b1c1-74cba2d3c32a,SESCO,II.5.1,Salta,AR-A,annual,2023,gas oil combustion consumption by agriculture machines,392.55216,TJ,CO2,74100.0,kg/TJ,29088115.056,kg +f70d4288-6c74-3ff8-974a-46140b796866,SESCO,II.5.1,Salta,AR-A,annual,2023,gas oil combustion consumption by agriculture machines,392.55216,TJ,CH4,3.9,kg/TJ,1530.953424,kg +f70d4288-6c74-3ff8-974a-46140b796866,SESCO,II.5.1,Salta,AR-A,annual,2023,gas oil combustion consumption by agriculture machines,392.55216,TJ,N2O,3.9,kg/TJ,1530.953424,kg +5cb8c995-647e-3b8f-a949-ce52fb6110ae,SESCO,II.5.1,San Juan,AR-J,annual,2023,gas oil combustion consumption by agriculture machines,187.17383999999998,TJ,CO2,74100.0,kg/TJ,13869581.544,kg +d2415e25-f41e-3dcc-87a9-b851f5c62ed3,SESCO,II.5.1,San Juan,AR-J,annual,2023,gas oil combustion consumption by agriculture machines,187.17383999999998,TJ,CH4,3.9,kg/TJ,729.9779759999999,kg +d2415e25-f41e-3dcc-87a9-b851f5c62ed3,SESCO,II.5.1,San Juan,AR-J,annual,2023,gas oil combustion consumption by agriculture machines,187.17383999999998,TJ,N2O,3.9,kg/TJ,729.9779759999999,kg +e1d82d4d-5c8f-32ae-9f91-f6db2991f5df,SESCO,II.5.1,San Luis,AR-D,annual,2023,gas oil combustion consumption by agriculture machines,348.77472,TJ,CO2,74100.0,kg/TJ,25844206.752,kg +289f48eb-ab0c-30e1-9d58-7cd252c0757a,SESCO,II.5.1,San Luis,AR-D,annual,2023,gas oil combustion consumption by agriculture machines,348.77472,TJ,CH4,3.9,kg/TJ,1360.2214079999999,kg +289f48eb-ab0c-30e1-9d58-7cd252c0757a,SESCO,II.5.1,San Luis,AR-D,annual,2023,gas oil combustion consumption by agriculture machines,348.77472,TJ,N2O,3.9,kg/TJ,1360.2214079999999,kg +ebe95db2-7110-301d-bdad-5ae3ecb4bde9,SESCO,II.5.1,Santa Cruz,AR-Z,annual,2023,gas oil combustion consumption by agriculture machines,159.54204,TJ,CO2,74100.0,kg/TJ,11822065.163999999,kg +cdf0721b-63ba-3220-93f8-98215b62a841,SESCO,II.5.1,Santa Cruz,AR-Z,annual,2023,gas oil combustion consumption by agriculture machines,159.54204,TJ,CH4,3.9,kg/TJ,622.2139559999999,kg +cdf0721b-63ba-3220-93f8-98215b62a841,SESCO,II.5.1,Santa Cruz,AR-Z,annual,2023,gas oil combustion consumption by agriculture machines,159.54204,TJ,N2O,3.9,kg/TJ,622.2139559999999,kg +75028960-7318-34ca-9d6a-724ef704b5cc,SESCO,II.5.1,Santa Fe,AR-S,annual,2023,gas oil combustion consumption by agriculture machines,4504.5252,TJ,CO2,74100.0,kg/TJ,333785317.32,kg +269bb254-fbbd-3d39-b1cd-b98a3aadd0eb,SESCO,II.5.1,Santa Fe,AR-S,annual,2023,gas oil combustion consumption by agriculture machines,4504.5252,TJ,CH4,3.9,kg/TJ,17567.64828,kg +269bb254-fbbd-3d39-b1cd-b98a3aadd0eb,SESCO,II.5.1,Santa Fe,AR-S,annual,2023,gas oil combustion consumption by agriculture machines,4504.5252,TJ,N2O,3.9,kg/TJ,17567.64828,kg +d3fa7323-3cbf-337f-8760-7822e2f391ab,SESCO,II.5.1,Santiago del Estero,AR-G,annual,2023,gas oil combustion consumption by agriculture machines,536.34588,TJ,CO2,74100.0,kg/TJ,39743229.708,kg +d4da0f85-64e4-360f-9ca7-e3c5fbbb86a3,SESCO,II.5.1,Santiago del Estero,AR-G,annual,2023,gas oil combustion consumption by agriculture machines,536.34588,TJ,CH4,3.9,kg/TJ,2091.748932,kg +d4da0f85-64e4-360f-9ca7-e3c5fbbb86a3,SESCO,II.5.1,Santiago del Estero,AR-G,annual,2023,gas oil combustion consumption by agriculture machines,536.34588,TJ,N2O,3.9,kg/TJ,2091.748932,kg +502f2253-da4e-3956-8b56-cf8dafd68f5f,SESCO,II.5.1,Tucuman,AR-T,annual,2023,gas oil combustion consumption by agriculture machines,234.0576,TJ,CO2,74100.0,kg/TJ,17343668.16,kg +a7ff6434-e378-3bf0-a510-f6fac911eeb4,SESCO,II.5.1,Tucuman,AR-T,annual,2023,gas oil combustion consumption by agriculture machines,234.0576,TJ,CH4,3.9,kg/TJ,912.82464,kg +a7ff6434-e378-3bf0-a510-f6fac911eeb4,SESCO,II.5.1,Tucuman,AR-T,annual,2023,gas oil combustion consumption by agriculture machines,234.0576,TJ,N2O,3.9,kg/TJ,912.82464,kg +73d4b647-619a-3c00-8578-d0d1a9445174,SESCO,II.5.1,Buenos Aires,AR-B,annual,2023,gas oil combustion consumption by agriculture machines,396.92268,TJ,CO2,74100.0,kg/TJ,29411970.588,kg +3669564b-4f48-3859-9230-79734e40687c,SESCO,II.5.1,Buenos Aires,AR-B,annual,2023,gas oil combustion consumption by agriculture machines,396.92268,TJ,CH4,3.9,kg/TJ,1547.998452,kg +3669564b-4f48-3859-9230-79734e40687c,SESCO,II.5.1,Buenos Aires,AR-B,annual,2023,gas oil combustion consumption by agriculture machines,396.92268,TJ,N2O,3.9,kg/TJ,1547.998452,kg +d3a6a61b-7db2-3b9d-9920-4af8e945a0ff,SESCO,II.5.1,Catamarca,AR-K,annual,2023,gas oil combustion consumption by agriculture machines,63.35448,TJ,CO2,74100.0,kg/TJ,4694566.968,kg +fc733c05-43d5-3928-8a1c-cdefae6d9cb8,SESCO,II.5.1,Catamarca,AR-K,annual,2023,gas oil combustion consumption by agriculture machines,63.35448,TJ,CH4,3.9,kg/TJ,247.082472,kg +fc733c05-43d5-3928-8a1c-cdefae6d9cb8,SESCO,II.5.1,Catamarca,AR-K,annual,2023,gas oil combustion consumption by agriculture machines,63.35448,TJ,N2O,3.9,kg/TJ,247.082472,kg +9c1be85b-c385-3681-869d-79dd6a4b1d1c,SESCO,II.5.1,Chaco,AR-H,annual,2023,gas oil combustion consumption by agriculture machines,153.40164,TJ,CO2,74100.0,kg/TJ,11367061.523999998,kg +542ba9af-5c24-362d-a12e-409319fd8b23,SESCO,II.5.1,Chaco,AR-H,annual,2023,gas oil combustion consumption by agriculture machines,153.40164,TJ,CH4,3.9,kg/TJ,598.266396,kg +542ba9af-5c24-362d-a12e-409319fd8b23,SESCO,II.5.1,Chaco,AR-H,annual,2023,gas oil combustion consumption by agriculture machines,153.40164,TJ,N2O,3.9,kg/TJ,598.266396,kg +924a8cb0-f18e-3a4b-9616-50b8ed76679b,SESCO,II.5.1,Corrientes,AR-W,annual,2023,gas oil combustion consumption by agriculture machines,78.59712,TJ,CO2,74100.0,kg/TJ,5824046.592,kg +8eb5bc68-e228-39fd-bd6b-45ec4138107c,SESCO,II.5.1,Corrientes,AR-W,annual,2023,gas oil combustion consumption by agriculture machines,78.59712,TJ,CH4,3.9,kg/TJ,306.528768,kg +8eb5bc68-e228-39fd-bd6b-45ec4138107c,SESCO,II.5.1,Corrientes,AR-W,annual,2023,gas oil combustion consumption by agriculture machines,78.59712,TJ,N2O,3.9,kg/TJ,306.528768,kg +b4779036-8fbb-3ea0-ba70-60c42c8b11cf,SESCO,II.5.1,Córdoba,AR-X,annual,2023,gas oil combustion consumption by agriculture machines,159.03636,TJ,CO2,74100.0,kg/TJ,11784594.276,kg +f75bbbc4-6014-3e9c-926b-49cabea82397,SESCO,II.5.1,Córdoba,AR-X,annual,2023,gas oil combustion consumption by agriculture machines,159.03636,TJ,CH4,3.9,kg/TJ,620.241804,kg +f75bbbc4-6014-3e9c-926b-49cabea82397,SESCO,II.5.1,Córdoba,AR-X,annual,2023,gas oil combustion consumption by agriculture machines,159.03636,TJ,N2O,3.9,kg/TJ,620.241804,kg +07bf56c9-2e7f-33ba-ad8e-af65bb050c71,SESCO,II.5.1,Entre Rios,AR-E,annual,2023,gas oil combustion consumption by agriculture machines,44.68044,TJ,CO2,74100.0,kg/TJ,3310820.604,kg +da68e56a-ad55-3ec3-b562-191f3e5e2d4e,SESCO,II.5.1,Entre Rios,AR-E,annual,2023,gas oil combustion consumption by agriculture machines,44.68044,TJ,CH4,3.9,kg/TJ,174.253716,kg +da68e56a-ad55-3ec3-b562-191f3e5e2d4e,SESCO,II.5.1,Entre Rios,AR-E,annual,2023,gas oil combustion consumption by agriculture machines,44.68044,TJ,N2O,3.9,kg/TJ,174.253716,kg +439b795b-d175-3686-be7c-78b8378c260c,SESCO,II.5.1,Jujuy,AR-Y,annual,2023,gas oil combustion consumption by agriculture machines,29.00436,TJ,CO2,74100.0,kg/TJ,2149223.076,kg +b8029a18-ed4f-3274-91c6-d2be4b9fc48b,SESCO,II.5.1,Jujuy,AR-Y,annual,2023,gas oil combustion consumption by agriculture machines,29.00436,TJ,CH4,3.9,kg/TJ,113.117004,kg +b8029a18-ed4f-3274-91c6-d2be4b9fc48b,SESCO,II.5.1,Jujuy,AR-Y,annual,2023,gas oil combustion consumption by agriculture machines,29.00436,TJ,N2O,3.9,kg/TJ,113.117004,kg +95b7c8f8-15d6-30a8-af06-6781ad30e73f,SESCO,II.5.1,La Pampa,AR-L,annual,2023,gas oil combustion consumption by agriculture machines,15.350999999999999,TJ,CO2,74100.0,kg/TJ,1137509.0999999999,kg +44eec79b-7e0f-3c0b-b9b9-73ccd16b5448,SESCO,II.5.1,La Pampa,AR-L,annual,2023,gas oil combustion consumption by agriculture machines,15.350999999999999,TJ,CH4,3.9,kg/TJ,59.8689,kg +44eec79b-7e0f-3c0b-b9b9-73ccd16b5448,SESCO,II.5.1,La Pampa,AR-L,annual,2023,gas oil combustion consumption by agriculture machines,15.350999999999999,TJ,N2O,3.9,kg/TJ,59.8689,kg +f7ae6dbd-1998-364b-96e8-a825922ebdd5,SESCO,II.5.1,Mendoza,AR-M,annual,2023,gas oil combustion consumption by agriculture machines,125.3364,TJ,CO2,74100.0,kg/TJ,9287427.24,kg +2c8bf724-90e3-35de-a3de-6c6b8b9f1b54,SESCO,II.5.1,Mendoza,AR-M,annual,2023,gas oil combustion consumption by agriculture machines,125.3364,TJ,CH4,3.9,kg/TJ,488.81196,kg +2c8bf724-90e3-35de-a3de-6c6b8b9f1b54,SESCO,II.5.1,Mendoza,AR-M,annual,2023,gas oil combustion consumption by agriculture machines,125.3364,TJ,N2O,3.9,kg/TJ,488.81196,kg +453d65e3-b9d2-346d-987e-8b9f538ac667,SESCO,II.5.1,Misiones,AR-N,annual,2023,gas oil combustion consumption by agriculture machines,15.7122,TJ,CO2,74100.0,kg/TJ,1164274.02,kg +1e03892d-f623-3435-a005-9e4450cf56d6,SESCO,II.5.1,Misiones,AR-N,annual,2023,gas oil combustion consumption by agriculture machines,15.7122,TJ,CH4,3.9,kg/TJ,61.27757999999999,kg +1e03892d-f623-3435-a005-9e4450cf56d6,SESCO,II.5.1,Misiones,AR-N,annual,2023,gas oil combustion consumption by agriculture machines,15.7122,TJ,N2O,3.9,kg/TJ,61.27757999999999,kg +97674e08-f23d-3b5b-ac24-fc5be0cc8f26,SESCO,II.5.1,Neuquén,AR-Q,annual,2023,gas oil combustion consumption by agriculture machines,25.13952,TJ,CO2,74100.0,kg/TJ,1862838.432,kg +ad9f762c-e5d6-31c6-a16c-fbd8fecda012,SESCO,II.5.1,Neuquén,AR-Q,annual,2023,gas oil combustion consumption by agriculture machines,25.13952,TJ,CH4,3.9,kg/TJ,98.044128,kg +ad9f762c-e5d6-31c6-a16c-fbd8fecda012,SESCO,II.5.1,Neuquén,AR-Q,annual,2023,gas oil combustion consumption by agriculture machines,25.13952,TJ,N2O,3.9,kg/TJ,98.044128,kg +b5455068-18e7-37dd-9ddd-a591f602ef31,SESCO,II.5.1,Salta,AR-A,annual,2023,gas oil combustion consumption by agriculture machines,32.29128,TJ,CO2,74100.0,kg/TJ,2392783.848,kg +1b94004b-d890-324f-95ce-e9224fb11f9a,SESCO,II.5.1,Salta,AR-A,annual,2023,gas oil combustion consumption by agriculture machines,32.29128,TJ,CH4,3.9,kg/TJ,125.935992,kg +1b94004b-d890-324f-95ce-e9224fb11f9a,SESCO,II.5.1,Salta,AR-A,annual,2023,gas oil combustion consumption by agriculture machines,32.29128,TJ,N2O,3.9,kg/TJ,125.935992,kg +3bf5d693-42a6-3000-8635-f69f51c3fded,SESCO,II.5.1,San Juan,AR-J,annual,2023,gas oil combustion consumption by agriculture machines,27.01776,TJ,CO2,74100.0,kg/TJ,2002016.0159999998,kg +cb40094d-1221-39ed-870e-97d2aa5a7e4e,SESCO,II.5.1,San Juan,AR-J,annual,2023,gas oil combustion consumption by agriculture machines,27.01776,TJ,CH4,3.9,kg/TJ,105.369264,kg +cb40094d-1221-39ed-870e-97d2aa5a7e4e,SESCO,II.5.1,San Juan,AR-J,annual,2023,gas oil combustion consumption by agriculture machines,27.01776,TJ,N2O,3.9,kg/TJ,105.369264,kg +c6ec8de4-914b-3955-8fb4-e540d25e0bfd,SESCO,II.5.1,San Luis,AR-D,annual,2023,gas oil combustion consumption by agriculture machines,26.51208,TJ,CO2,74100.0,kg/TJ,1964545.128,kg +8e17b58f-0ec3-3cc8-93c0-b85fe41a8dfb,SESCO,II.5.1,San Luis,AR-D,annual,2023,gas oil combustion consumption by agriculture machines,26.51208,TJ,CH4,3.9,kg/TJ,103.397112,kg +8e17b58f-0ec3-3cc8-93c0-b85fe41a8dfb,SESCO,II.5.1,San Luis,AR-D,annual,2023,gas oil combustion consumption by agriculture machines,26.51208,TJ,N2O,3.9,kg/TJ,103.397112,kg +e6c48ec2-5d59-3cce-b7bb-626338469347,SESCO,II.5.1,Santa Cruz,AR-Z,annual,2023,gas oil combustion consumption by agriculture machines,30.55752,TJ,CO2,74100.0,kg/TJ,2264312.232,kg +3f2c3413-9c7f-3a61-808e-02e5c12eaa24,SESCO,II.5.1,Santa Cruz,AR-Z,annual,2023,gas oil combustion consumption by agriculture machines,30.55752,TJ,CH4,3.9,kg/TJ,119.174328,kg +3f2c3413-9c7f-3a61-808e-02e5c12eaa24,SESCO,II.5.1,Santa Cruz,AR-Z,annual,2023,gas oil combustion consumption by agriculture machines,30.55752,TJ,N2O,3.9,kg/TJ,119.174328,kg +f40ff65d-b466-3ccf-81dc-79a69fc8fcd4,SESCO,II.5.1,Santa Fe,AR-S,annual,2023,gas oil combustion consumption by agriculture machines,279.35208,TJ,CO2,74100.0,kg/TJ,20699989.128,kg +02258fdb-b0c7-3cc8-b7a0-61d710329db0,SESCO,II.5.1,Santa Fe,AR-S,annual,2023,gas oil combustion consumption by agriculture machines,279.35208,TJ,CH4,3.9,kg/TJ,1089.473112,kg +02258fdb-b0c7-3cc8-b7a0-61d710329db0,SESCO,II.5.1,Santa Fe,AR-S,annual,2023,gas oil combustion consumption by agriculture machines,279.35208,TJ,N2O,3.9,kg/TJ,1089.473112,kg +1fc490d1-a41c-3d6d-825f-83be159d215c,SESCO,II.5.1,Santiago del Estero,AR-G,annual,2023,gas oil combustion consumption by agriculture machines,199.52688,TJ,CO2,74100.0,kg/TJ,14784941.808,kg +d0f51115-350d-3b2f-b4a4-d5cd56ab6ec8,SESCO,II.5.1,Santiago del Estero,AR-G,annual,2023,gas oil combustion consumption by agriculture machines,199.52688,TJ,CH4,3.9,kg/TJ,778.154832,kg +d0f51115-350d-3b2f-b4a4-d5cd56ab6ec8,SESCO,II.5.1,Santiago del Estero,AR-G,annual,2023,gas oil combustion consumption by agriculture machines,199.52688,TJ,N2O,3.9,kg/TJ,778.154832,kg +e1306629-5166-39ab-8c59-545508329f73,SESCO,II.5.1,Tucuman,AR-T,annual,2023,gas oil combustion consumption by agriculture machines,42.441,TJ,CO2,74100.0,kg/TJ,3144878.1,kg +c94c92bb-82a5-36fa-aaf7-3b6c0cf08289,SESCO,II.5.1,Tucuman,AR-T,annual,2023,gas oil combustion consumption by agriculture machines,42.441,TJ,CH4,3.9,kg/TJ,165.5199,kg +c94c92bb-82a5-36fa-aaf7-3b6c0cf08289,SESCO,II.5.1,Tucuman,AR-T,annual,2023,gas oil combustion consumption by agriculture machines,42.441,TJ,N2O,3.9,kg/TJ,165.5199,kg +d10b0b26-d975-368b-bc44-141ad892ad4f,SESCO,II.1.1,Buenos Aires,AR-B,annual,2023,gas oil combustion consumption by to the public,8453.416439999999,TJ,CO2,74100.0,kg/TJ,626398158.2039999,kg +81833fde-9293-370c-abcd-915e603c9be4,SESCO,II.1.1,Buenos Aires,AR-B,annual,2023,gas oil combustion consumption by to the public,8453.416439999999,TJ,CH4,3.9,kg/TJ,32968.324115999996,kg +81833fde-9293-370c-abcd-915e603c9be4,SESCO,II.1.1,Buenos Aires,AR-B,annual,2023,gas oil combustion consumption by to the public,8453.416439999999,TJ,N2O,3.9,kg/TJ,32968.324115999996,kg +3bb80bb6-b65f-37bb-afb5-9def0cbe63a5,SESCO,II.1.1,Capital Federal,AR-C,annual,2023,gas oil combustion consumption by to the public,885.1206,TJ,CO2,74100.0,kg/TJ,65587436.46,kg +74dce227-8885-34ab-9830-affdb5aa7bfc,SESCO,II.1.1,Capital Federal,AR-C,annual,2023,gas oil combustion consumption by to the public,885.1206,TJ,CH4,3.9,kg/TJ,3451.97034,kg +74dce227-8885-34ab-9830-affdb5aa7bfc,SESCO,II.1.1,Capital Federal,AR-C,annual,2023,gas oil combustion consumption by to the public,885.1206,TJ,N2O,3.9,kg/TJ,3451.97034,kg +060fff26-f914-3e9f-b42e-dbb33ae52cce,SESCO,II.1.1,Catamarca,AR-K,annual,2023,gas oil combustion consumption by to the public,281.80824,TJ,CO2,74100.0,kg/TJ,20881990.584000003,kg +193829e5-07aa-3e85-89dd-97ebf35dcdf9,SESCO,II.1.1,Catamarca,AR-K,annual,2023,gas oil combustion consumption by to the public,281.80824,TJ,CH4,3.9,kg/TJ,1099.052136,kg +193829e5-07aa-3e85-89dd-97ebf35dcdf9,SESCO,II.1.1,Catamarca,AR-K,annual,2023,gas oil combustion consumption by to the public,281.80824,TJ,N2O,3.9,kg/TJ,1099.052136,kg +837af5d4-4c91-363c-817a-4fe451cda4a4,SESCO,II.1.1,Chaco,AR-H,annual,2023,gas oil combustion consumption by to the public,393.81636,TJ,CO2,74100.0,kg/TJ,29181792.275999997,kg +26bd00bc-fb3b-3248-b391-b25c054cd1ab,SESCO,II.1.1,Chaco,AR-H,annual,2023,gas oil combustion consumption by to the public,393.81636,TJ,CH4,3.9,kg/TJ,1535.8838039999998,kg +26bd00bc-fb3b-3248-b391-b25c054cd1ab,SESCO,II.1.1,Chaco,AR-H,annual,2023,gas oil combustion consumption by to the public,393.81636,TJ,N2O,3.9,kg/TJ,1535.8838039999998,kg +ce158715-d3ec-3f3b-9efe-ced7b01b12cd,SESCO,II.1.1,Chubut,AR-U,annual,2023,gas oil combustion consumption by to the public,1230.50004,TJ,CO2,74100.0,kg/TJ,91180052.96399999,kg +e5935d84-f336-3284-a118-d5832349f13e,SESCO,II.1.1,Chubut,AR-U,annual,2023,gas oil combustion consumption by to the public,1230.50004,TJ,CH4,3.9,kg/TJ,4798.950156,kg +e5935d84-f336-3284-a118-d5832349f13e,SESCO,II.1.1,Chubut,AR-U,annual,2023,gas oil combustion consumption by to the public,1230.50004,TJ,N2O,3.9,kg/TJ,4798.950156,kg +dc4b59c3-aa23-3cbe-b97e-a38de03f6bc7,SESCO,II.1.1,Corrientes,AR-W,annual,2023,gas oil combustion consumption by to the public,797.27676,TJ,CO2,74100.0,kg/TJ,59078207.916,kg +b24d3268-b769-3bcd-a378-4e65ef660b40,SESCO,II.1.1,Corrientes,AR-W,annual,2023,gas oil combustion consumption by to the public,797.27676,TJ,CH4,3.9,kg/TJ,3109.379364,kg +b24d3268-b769-3bcd-a378-4e65ef660b40,SESCO,II.1.1,Corrientes,AR-W,annual,2023,gas oil combustion consumption by to the public,797.27676,TJ,N2O,3.9,kg/TJ,3109.379364,kg +3fc88e85-a565-39b6-b2dd-d85aa1aef57d,SESCO,II.1.1,Córdoba,AR-X,annual,2023,gas oil combustion consumption by to the public,3050.334,TJ,CO2,74100.0,kg/TJ,226029749.39999998,kg +90a83ad6-6be6-3f49-93e4-7a6226a1440b,SESCO,II.1.1,Córdoba,AR-X,annual,2023,gas oil combustion consumption by to the public,3050.334,TJ,CH4,3.9,kg/TJ,11896.302599999999,kg +90a83ad6-6be6-3f49-93e4-7a6226a1440b,SESCO,II.1.1,Córdoba,AR-X,annual,2023,gas oil combustion consumption by to the public,3050.334,TJ,N2O,3.9,kg/TJ,11896.302599999999,kg +8fdc4438-0758-3838-91c7-1709e9aff4d6,SESCO,II.1.1,Entre Rios,AR-E,annual,2023,gas oil combustion consumption by to the public,1176.68124,TJ,CO2,74100.0,kg/TJ,87192079.88399999,kg +b69e2075-6161-3cd9-9d1a-304c3da53bcc,SESCO,II.1.1,Entre Rios,AR-E,annual,2023,gas oil combustion consumption by to the public,1176.68124,TJ,CH4,3.9,kg/TJ,4589.056836,kg +b69e2075-6161-3cd9-9d1a-304c3da53bcc,SESCO,II.1.1,Entre Rios,AR-E,annual,2023,gas oil combustion consumption by to the public,1176.68124,TJ,N2O,3.9,kg/TJ,4589.056836,kg +1fe76157-81ce-382d-b48b-59e58f281c2e,SESCO,II.1.1,Formosa,AR-P,annual,2023,gas oil combustion consumption by to the public,632.2805999999999,TJ,CO2,74100.0,kg/TJ,46851992.45999999,kg +0c6a9c59-32dd-30bd-bd32-ef662dc2e567,SESCO,II.1.1,Formosa,AR-P,annual,2023,gas oil combustion consumption by to the public,632.2805999999999,TJ,CH4,3.9,kg/TJ,2465.89434,kg +0c6a9c59-32dd-30bd-bd32-ef662dc2e567,SESCO,II.1.1,Formosa,AR-P,annual,2023,gas oil combustion consumption by to the public,632.2805999999999,TJ,N2O,3.9,kg/TJ,2465.89434,kg +d9a8a610-62a9-3e97-8c85-b5a66f75c3d9,SESCO,II.1.1,Jujuy,AR-Y,annual,2023,gas oil combustion consumption by to the public,316.19448,TJ,CO2,74100.0,kg/TJ,23430010.968,kg +a6778852-ce42-3efc-912f-19086de6f3b6,SESCO,II.1.1,Jujuy,AR-Y,annual,2023,gas oil combustion consumption by to the public,316.19448,TJ,CH4,3.9,kg/TJ,1233.158472,kg +a6778852-ce42-3efc-912f-19086de6f3b6,SESCO,II.1.1,Jujuy,AR-Y,annual,2023,gas oil combustion consumption by to the public,316.19448,TJ,N2O,3.9,kg/TJ,1233.158472,kg +b87282a7-8285-31d3-b252-1b404900cd47,SESCO,II.1.1,La Pampa,AR-L,annual,2023,gas oil combustion consumption by to the public,456.3762,TJ,CO2,74100.0,kg/TJ,33817476.42,kg +dad982e7-0474-3ede-a437-7ed699ffb8f5,SESCO,II.1.1,La Pampa,AR-L,annual,2023,gas oil combustion consumption by to the public,456.3762,TJ,CH4,3.9,kg/TJ,1779.86718,kg +dad982e7-0474-3ede-a437-7ed699ffb8f5,SESCO,II.1.1,La Pampa,AR-L,annual,2023,gas oil combustion consumption by to the public,456.3762,TJ,N2O,3.9,kg/TJ,1779.86718,kg +35ce4b02-bfaa-3741-b2a1-a8337b3685d1,SESCO,II.1.1,La Rioja,AR-F,annual,2023,gas oil combustion consumption by to the public,62.99328,TJ,CO2,74100.0,kg/TJ,4667802.0479999995,kg +2b82986a-b46a-3182-adeb-b6acb10683c5,SESCO,II.1.1,La Rioja,AR-F,annual,2023,gas oil combustion consumption by to the public,62.99328,TJ,CH4,3.9,kg/TJ,245.673792,kg +2b82986a-b46a-3182-adeb-b6acb10683c5,SESCO,II.1.1,La Rioja,AR-F,annual,2023,gas oil combustion consumption by to the public,62.99328,TJ,N2O,3.9,kg/TJ,245.673792,kg +54dad741-44f3-3f7e-9c87-d3892a9f0b90,SESCO,II.1.1,Mendoza,AR-M,annual,2023,gas oil combustion consumption by to the public,1488.79416,TJ,CO2,74100.0,kg/TJ,110319647.256,kg +5af16ce6-5d62-38f7-a297-23461239471a,SESCO,II.1.1,Mendoza,AR-M,annual,2023,gas oil combustion consumption by to the public,1488.79416,TJ,CH4,3.9,kg/TJ,5806.297224,kg +5af16ce6-5d62-38f7-a297-23461239471a,SESCO,II.1.1,Mendoza,AR-M,annual,2023,gas oil combustion consumption by to the public,1488.79416,TJ,N2O,3.9,kg/TJ,5806.297224,kg +9a712a88-ee3c-3b72-9702-0bb38695d645,SESCO,II.1.1,Misiones,AR-N,annual,2023,gas oil combustion consumption by to the public,982.17504,TJ,CO2,74100.0,kg/TJ,72779170.464,kg +38754dba-70a6-3cd9-a59d-e5ee5d967db4,SESCO,II.1.1,Misiones,AR-N,annual,2023,gas oil combustion consumption by to the public,982.17504,TJ,CH4,3.9,kg/TJ,3830.4826559999997,kg +38754dba-70a6-3cd9-a59d-e5ee5d967db4,SESCO,II.1.1,Misiones,AR-N,annual,2023,gas oil combustion consumption by to the public,982.17504,TJ,N2O,3.9,kg/TJ,3830.4826559999997,kg +0ec31974-73ad-34f2-9738-63678a4300a2,SESCO,II.1.1,Neuquén,AR-Q,annual,2023,gas oil combustion consumption by to the public,287.62356,TJ,CO2,74100.0,kg/TJ,21312905.796,kg +b3078948-a3da-3f9c-a0f5-b6bfcd1ffc3e,SESCO,II.1.1,Neuquén,AR-Q,annual,2023,gas oil combustion consumption by to the public,287.62356,TJ,CH4,3.9,kg/TJ,1121.731884,kg +b3078948-a3da-3f9c-a0f5-b6bfcd1ffc3e,SESCO,II.1.1,Neuquén,AR-Q,annual,2023,gas oil combustion consumption by to the public,287.62356,TJ,N2O,3.9,kg/TJ,1121.731884,kg +6d948c71-baa8-3494-a7f5-5de50a8842f0,SESCO,II.1.1,Rio Negro,AR-R,annual,2023,gas oil combustion consumption by to the public,735.25872,TJ,CO2,74100.0,kg/TJ,54482671.152,kg +6404ebb8-6c1c-362f-b987-1a40f530f3bc,SESCO,II.1.1,Rio Negro,AR-R,annual,2023,gas oil combustion consumption by to the public,735.25872,TJ,CH4,3.9,kg/TJ,2867.509008,kg +6404ebb8-6c1c-362f-b987-1a40f530f3bc,SESCO,II.1.1,Rio Negro,AR-R,annual,2023,gas oil combustion consumption by to the public,735.25872,TJ,N2O,3.9,kg/TJ,2867.509008,kg +ae62aa47-277c-3abe-bdd9-9e47957d9808,SESCO,II.1.1,Salta,AR-A,annual,2023,gas oil combustion consumption by to the public,284.37275999999997,TJ,CO2,74100.0,kg/TJ,21072021.516,kg +81ffebaf-9692-3cd9-ab51-864644603583,SESCO,II.1.1,Salta,AR-A,annual,2023,gas oil combustion consumption by to the public,284.37275999999997,TJ,CH4,3.9,kg/TJ,1109.0537639999998,kg +81ffebaf-9692-3cd9-ab51-864644603583,SESCO,II.1.1,Salta,AR-A,annual,2023,gas oil combustion consumption by to the public,284.37275999999997,TJ,N2O,3.9,kg/TJ,1109.0537639999998,kg +ba659f34-2a9a-31a9-ad31-a29febf013f2,SESCO,II.1.1,San Juan,AR-J,annual,2023,gas oil combustion consumption by to the public,323.274,TJ,CO2,74100.0,kg/TJ,23954603.4,kg +2091eb21-c50e-36f8-ae2a-0fa46bf4b27d,SESCO,II.1.1,San Juan,AR-J,annual,2023,gas oil combustion consumption by to the public,323.274,TJ,CH4,3.9,kg/TJ,1260.7685999999999,kg +2091eb21-c50e-36f8-ae2a-0fa46bf4b27d,SESCO,II.1.1,San Juan,AR-J,annual,2023,gas oil combustion consumption by to the public,323.274,TJ,N2O,3.9,kg/TJ,1260.7685999999999,kg +3ab14be9-160c-31a0-be0e-ab05839f0526,SESCO,II.1.1,San Luis,AR-D,annual,2023,gas oil combustion consumption by to the public,572.57424,TJ,CO2,74100.0,kg/TJ,42427751.184,kg +ac9cd448-9830-38cc-9161-c65f74cbbd0a,SESCO,II.1.1,San Luis,AR-D,annual,2023,gas oil combustion consumption by to the public,572.57424,TJ,CH4,3.9,kg/TJ,2233.039536,kg +ac9cd448-9830-38cc-9161-c65f74cbbd0a,SESCO,II.1.1,San Luis,AR-D,annual,2023,gas oil combustion consumption by to the public,572.57424,TJ,N2O,3.9,kg/TJ,2233.039536,kg +b95721cf-b2ff-3ec2-b705-899e090289b1,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2023,gas oil combustion consumption by to the public,543.67824,TJ,CO2,74100.0,kg/TJ,40286557.584,kg +ff825ec4-be53-333b-9a01-dc1c9cad0aea,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2023,gas oil combustion consumption by to the public,543.67824,TJ,CH4,3.9,kg/TJ,2120.345136,kg +ff825ec4-be53-333b-9a01-dc1c9cad0aea,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2023,gas oil combustion consumption by to the public,543.67824,TJ,N2O,3.9,kg/TJ,2120.345136,kg +b87f24b9-d7e8-3109-9d0b-91f64746d7b6,SESCO,II.1.1,Santa Fe,AR-S,annual,2023,gas oil combustion consumption by to the public,1887.59508,TJ,CO2,74100.0,kg/TJ,139870795.428,kg +a0696034-811e-39e9-b5a8-ddd16d7e878e,SESCO,II.1.1,Santa Fe,AR-S,annual,2023,gas oil combustion consumption by to the public,1887.59508,TJ,CH4,3.9,kg/TJ,7361.620812,kg +a0696034-811e-39e9-b5a8-ddd16d7e878e,SESCO,II.1.1,Santa Fe,AR-S,annual,2023,gas oil combustion consumption by to the public,1887.59508,TJ,N2O,3.9,kg/TJ,7361.620812,kg +08faf26c-4074-35b5-b404-809f4b37b20f,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2023,gas oil combustion consumption by to the public,455.79828,TJ,CO2,74100.0,kg/TJ,33774652.548,kg +d3633239-6305-33a1-9c4d-ed48d8ae88f0,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2023,gas oil combustion consumption by to the public,455.79828,TJ,CH4,3.9,kg/TJ,1777.6132919999998,kg +d3633239-6305-33a1-9c4d-ed48d8ae88f0,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2023,gas oil combustion consumption by to the public,455.79828,TJ,N2O,3.9,kg/TJ,1777.6132919999998,kg +fcfd083c-e1cd-3630-9b44-f7fa1b426b90,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2023,gas oil combustion consumption by to the public,95.24844,TJ,CO2,74100.0,kg/TJ,7057909.404,kg +92b52723-9055-3b49-8f65-e9d534f889b0,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2023,gas oil combustion consumption by to the public,95.24844,TJ,CH4,3.9,kg/TJ,371.468916,kg +92b52723-9055-3b49-8f65-e9d534f889b0,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2023,gas oil combustion consumption by to the public,95.24844,TJ,N2O,3.9,kg/TJ,371.468916,kg +65c3100c-47c4-3ba0-a4f5-bd21f28c1984,SESCO,II.1.1,Tucuman,AR-T,annual,2023,gas oil combustion consumption by to the public,135.48612,TJ,CO2,74100.0,kg/TJ,10039521.492,kg +740e45b7-dd38-32f2-8ddd-b187624c9572,SESCO,II.1.1,Tucuman,AR-T,annual,2023,gas oil combustion consumption by to the public,135.48612,TJ,CH4,3.9,kg/TJ,528.395868,kg +740e45b7-dd38-32f2-8ddd-b187624c9572,SESCO,II.1.1,Tucuman,AR-T,annual,2023,gas oil combustion consumption by to the public,135.48612,TJ,N2O,3.9,kg/TJ,528.395868,kg +c3357dfd-cc6e-34cb-81f4-fb17e03688c6,SESCO,II.1.1,Buenos Aires,AR-B,annual,2023,gas oil combustion consumption by to the public,3612.14448,TJ,CO2,74100.0,kg/TJ,267659905.968,kg +ffe33f42-609b-3396-9c1d-3d84254a3bde,SESCO,II.1.1,Buenos Aires,AR-B,annual,2023,gas oil combustion consumption by to the public,3612.14448,TJ,CH4,3.9,kg/TJ,14087.363472,kg +ffe33f42-609b-3396-9c1d-3d84254a3bde,SESCO,II.1.1,Buenos Aires,AR-B,annual,2023,gas oil combustion consumption by to the public,3612.14448,TJ,N2O,3.9,kg/TJ,14087.363472,kg +0ce6a5cc-e5d9-3c9c-9d6c-1c3b46a7437d,SESCO,II.1.1,Capital Federal,AR-C,annual,2023,gas oil combustion consumption by to the public,588.25032,TJ,CO2,74100.0,kg/TJ,43589348.712,kg +23f7024b-16d3-35fd-ae43-58e005bd1dde,SESCO,II.1.1,Capital Federal,AR-C,annual,2023,gas oil combustion consumption by to the public,588.25032,TJ,CH4,3.9,kg/TJ,2294.1762479999998,kg +23f7024b-16d3-35fd-ae43-58e005bd1dde,SESCO,II.1.1,Capital Federal,AR-C,annual,2023,gas oil combustion consumption by to the public,588.25032,TJ,N2O,3.9,kg/TJ,2294.1762479999998,kg +9c6af592-61e1-3d0f-a63a-3fed39387c6d,SESCO,II.1.1,Catamarca,AR-K,annual,2023,gas oil combustion consumption by to the public,175.03752,TJ,CO2,74100.0,kg/TJ,12970280.232,kg +305163d3-a842-3b3e-903b-6157424430c4,SESCO,II.1.1,Catamarca,AR-K,annual,2023,gas oil combustion consumption by to the public,175.03752,TJ,CH4,3.9,kg/TJ,682.646328,kg +305163d3-a842-3b3e-903b-6157424430c4,SESCO,II.1.1,Catamarca,AR-K,annual,2023,gas oil combustion consumption by to the public,175.03752,TJ,N2O,3.9,kg/TJ,682.646328,kg +219bb452-19f2-3283-860d-6d8477d97ae3,SESCO,II.1.1,Chaco,AR-H,annual,2023,gas oil combustion consumption by to the public,166.00752,TJ,CO2,74100.0,kg/TJ,12301157.232,kg +faf2445b-7d3d-32f2-85e0-23fad90b9c09,SESCO,II.1.1,Chaco,AR-H,annual,2023,gas oil combustion consumption by to the public,166.00752,TJ,CH4,3.9,kg/TJ,647.4293279999999,kg +faf2445b-7d3d-32f2-85e0-23fad90b9c09,SESCO,II.1.1,Chaco,AR-H,annual,2023,gas oil combustion consumption by to the public,166.00752,TJ,N2O,3.9,kg/TJ,647.4293279999999,kg +6b310635-9338-325b-a114-6bca946bdb0d,SESCO,II.1.1,Chubut,AR-U,annual,2023,gas oil combustion consumption by to the public,638.09592,TJ,CO2,74100.0,kg/TJ,47282907.672,kg +a520f70c-e7ac-3643-8671-bf46e9ade084,SESCO,II.1.1,Chubut,AR-U,annual,2023,gas oil combustion consumption by to the public,638.09592,TJ,CH4,3.9,kg/TJ,2488.574088,kg +a520f70c-e7ac-3643-8671-bf46e9ade084,SESCO,II.1.1,Chubut,AR-U,annual,2023,gas oil combustion consumption by to the public,638.09592,TJ,N2O,3.9,kg/TJ,2488.574088,kg +65aa5be4-4d05-319e-9c05-e7a7d1e33b7e,SESCO,II.1.1,Corrientes,AR-W,annual,2023,gas oil combustion consumption by to the public,240.81204,TJ,CO2,74100.0,kg/TJ,17844172.164,kg +bf8d0362-5915-383e-8683-e6ed457bdad4,SESCO,II.1.1,Corrientes,AR-W,annual,2023,gas oil combustion consumption by to the public,240.81204,TJ,CH4,3.9,kg/TJ,939.1669559999999,kg +bf8d0362-5915-383e-8683-e6ed457bdad4,SESCO,II.1.1,Corrientes,AR-W,annual,2023,gas oil combustion consumption by to the public,240.81204,TJ,N2O,3.9,kg/TJ,939.1669559999999,kg +3f88181e-c435-3744-a6c6-b977e6d012f1,SESCO,II.1.1,Córdoba,AR-X,annual,2023,gas oil combustion consumption by to the public,935.94144,TJ,CO2,74100.0,kg/TJ,69353260.704,kg +addb91c9-101c-398f-82e6-e2c14caf8432,SESCO,II.1.1,Córdoba,AR-X,annual,2023,gas oil combustion consumption by to the public,935.94144,TJ,CH4,3.9,kg/TJ,3650.1716159999996,kg +addb91c9-101c-398f-82e6-e2c14caf8432,SESCO,II.1.1,Córdoba,AR-X,annual,2023,gas oil combustion consumption by to the public,935.94144,TJ,N2O,3.9,kg/TJ,3650.1716159999996,kg +5ca3f424-6d78-38b2-ba70-7a73d1836ffd,SESCO,II.1.1,Entre Rios,AR-E,annual,2023,gas oil combustion consumption by to the public,476.71175999999997,TJ,CO2,74100.0,kg/TJ,35324341.416,kg +6685b57b-68fb-36bf-a7a1-e228142a9f8c,SESCO,II.1.1,Entre Rios,AR-E,annual,2023,gas oil combustion consumption by to the public,476.71175999999997,TJ,CH4,3.9,kg/TJ,1859.1758639999998,kg +6685b57b-68fb-36bf-a7a1-e228142a9f8c,SESCO,II.1.1,Entre Rios,AR-E,annual,2023,gas oil combustion consumption by to the public,476.71175999999997,TJ,N2O,3.9,kg/TJ,1859.1758639999998,kg +de28e33d-4248-3ed5-8f24-bd9e8929acdf,SESCO,II.1.1,Formosa,AR-P,annual,2023,gas oil combustion consumption by to the public,444.96227999999996,TJ,CO2,74100.0,kg/TJ,32971704.948,kg +833df534-04c7-3648-994e-38aa8c5c0841,SESCO,II.1.1,Formosa,AR-P,annual,2023,gas oil combustion consumption by to the public,444.96227999999996,TJ,CH4,3.9,kg/TJ,1735.3528919999999,kg +833df534-04c7-3648-994e-38aa8c5c0841,SESCO,II.1.1,Formosa,AR-P,annual,2023,gas oil combustion consumption by to the public,444.96227999999996,TJ,N2O,3.9,kg/TJ,1735.3528919999999,kg +ee48162a-7f8a-30fb-a145-e26db31a0b7c,SESCO,II.1.1,Jujuy,AR-Y,annual,2023,gas oil combustion consumption by to the public,115.29504,TJ,CO2,74100.0,kg/TJ,8543362.464,kg +c960e6bd-cbf2-36af-a964-406497644e07,SESCO,II.1.1,Jujuy,AR-Y,annual,2023,gas oil combustion consumption by to the public,115.29504,TJ,CH4,3.9,kg/TJ,449.65065599999997,kg +c960e6bd-cbf2-36af-a964-406497644e07,SESCO,II.1.1,Jujuy,AR-Y,annual,2023,gas oil combustion consumption by to the public,115.29504,TJ,N2O,3.9,kg/TJ,449.65065599999997,kg +b8a79fe3-bbff-3862-858b-2842e5c68191,SESCO,II.1.1,La Pampa,AR-L,annual,2023,gas oil combustion consumption by to the public,149.10336,TJ,CO2,74100.0,kg/TJ,11048558.976,kg +338187cd-399e-3f87-99a2-e0fb571ec45d,SESCO,II.1.1,La Pampa,AR-L,annual,2023,gas oil combustion consumption by to the public,149.10336,TJ,CH4,3.9,kg/TJ,581.503104,kg +338187cd-399e-3f87-99a2-e0fb571ec45d,SESCO,II.1.1,La Pampa,AR-L,annual,2023,gas oil combustion consumption by to the public,149.10336,TJ,N2O,3.9,kg/TJ,581.503104,kg +057e1f94-a21a-37b8-ae3e-fed151f180ee,SESCO,II.1.1,La Rioja,AR-F,annual,2023,gas oil combustion consumption by to the public,65.59392,TJ,CO2,74100.0,kg/TJ,4860509.472,kg +71b31153-9db3-3dc5-a680-4b0bf9919516,SESCO,II.1.1,La Rioja,AR-F,annual,2023,gas oil combustion consumption by to the public,65.59392,TJ,CH4,3.9,kg/TJ,255.816288,kg +71b31153-9db3-3dc5-a680-4b0bf9919516,SESCO,II.1.1,La Rioja,AR-F,annual,2023,gas oil combustion consumption by to the public,65.59392,TJ,N2O,3.9,kg/TJ,255.816288,kg +ac299a2b-e974-3507-a672-589ac46f42c1,SESCO,II.1.1,Mendoza,AR-M,annual,2023,gas oil combustion consumption by to the public,424.12104,TJ,CO2,74100.0,kg/TJ,31427369.064,kg +1d10af4e-8fba-37f2-b46f-83ec7a2c0f9e,SESCO,II.1.1,Mendoza,AR-M,annual,2023,gas oil combustion consumption by to the public,424.12104,TJ,CH4,3.9,kg/TJ,1654.072056,kg +1d10af4e-8fba-37f2-b46f-83ec7a2c0f9e,SESCO,II.1.1,Mendoza,AR-M,annual,2023,gas oil combustion consumption by to the public,424.12104,TJ,N2O,3.9,kg/TJ,1654.072056,kg +2aa0deba-3e33-3acb-8dcc-90ea2075be97,SESCO,II.1.1,Misiones,AR-N,annual,2023,gas oil combustion consumption by to the public,330.78696,TJ,CO2,74100.0,kg/TJ,24511313.736,kg +a903001f-6879-3a9b-802b-d937468a102d,SESCO,II.1.1,Misiones,AR-N,annual,2023,gas oil combustion consumption by to the public,330.78696,TJ,CH4,3.9,kg/TJ,1290.069144,kg +a903001f-6879-3a9b-802b-d937468a102d,SESCO,II.1.1,Misiones,AR-N,annual,2023,gas oil combustion consumption by to the public,330.78696,TJ,N2O,3.9,kg/TJ,1290.069144,kg +5253fe72-7aac-3a14-ba37-d71912747787,SESCO,II.1.1,Neuquén,AR-Q,annual,2023,gas oil combustion consumption by to the public,274.80096,TJ,CO2,74100.0,kg/TJ,20362751.136,kg +e8c6f76e-ddde-3b38-bb6a-f4aea01a7e9d,SESCO,II.1.1,Neuquén,AR-Q,annual,2023,gas oil combustion consumption by to the public,274.80096,TJ,CH4,3.9,kg/TJ,1071.723744,kg +e8c6f76e-ddde-3b38-bb6a-f4aea01a7e9d,SESCO,II.1.1,Neuquén,AR-Q,annual,2023,gas oil combustion consumption by to the public,274.80096,TJ,N2O,3.9,kg/TJ,1071.723744,kg +e4454a33-1001-3c61-8865-5f07da08f8a0,SESCO,II.1.1,Rio Negro,AR-R,annual,2023,gas oil combustion consumption by to the public,444.6372,TJ,CO2,74100.0,kg/TJ,32947616.52,kg +ad1b14b5-276c-39f6-915d-d6aa9f72b553,SESCO,II.1.1,Rio Negro,AR-R,annual,2023,gas oil combustion consumption by to the public,444.6372,TJ,CH4,3.9,kg/TJ,1734.08508,kg +ad1b14b5-276c-39f6-915d-d6aa9f72b553,SESCO,II.1.1,Rio Negro,AR-R,annual,2023,gas oil combustion consumption by to the public,444.6372,TJ,N2O,3.9,kg/TJ,1734.08508,kg +df4d3d63-4492-3323-856f-d2be52ee8dbb,SESCO,II.1.1,Salta,AR-A,annual,2023,gas oil combustion consumption by to the public,104.2062,TJ,CO2,74100.0,kg/TJ,7721679.42,kg +2dd79fbe-36a1-33e0-86ef-561c7cd4ee14,SESCO,II.1.1,Salta,AR-A,annual,2023,gas oil combustion consumption by to the public,104.2062,TJ,CH4,3.9,kg/TJ,406.40418,kg +2dd79fbe-36a1-33e0-86ef-561c7cd4ee14,SESCO,II.1.1,Salta,AR-A,annual,2023,gas oil combustion consumption by to the public,104.2062,TJ,N2O,3.9,kg/TJ,406.40418,kg +25bc51d6-b9ad-3d9e-81eb-7d67d9b1e696,SESCO,II.1.1,San Juan,AR-J,annual,2023,gas oil combustion consumption by to the public,84.05123999999999,TJ,CO2,74100.0,kg/TJ,6228196.884,kg +84a82bf2-37c0-35d3-88d5-edcd60673e5e,SESCO,II.1.1,San Juan,AR-J,annual,2023,gas oil combustion consumption by to the public,84.05123999999999,TJ,CH4,3.9,kg/TJ,327.79983599999997,kg +84a82bf2-37c0-35d3-88d5-edcd60673e5e,SESCO,II.1.1,San Juan,AR-J,annual,2023,gas oil combustion consumption by to the public,84.05123999999999,TJ,N2O,3.9,kg/TJ,327.79983599999997,kg +46bd417a-1051-31c2-816a-9606900f22b0,SESCO,II.1.1,San Luis,AR-D,annual,2023,gas oil combustion consumption by to the public,167.19948,TJ,CO2,74100.0,kg/TJ,12389481.468,kg +5703f569-952a-3729-ada2-3941bfe39709,SESCO,II.1.1,San Luis,AR-D,annual,2023,gas oil combustion consumption by to the public,167.19948,TJ,CH4,3.9,kg/TJ,652.0779719999999,kg +5703f569-952a-3729-ada2-3941bfe39709,SESCO,II.1.1,San Luis,AR-D,annual,2023,gas oil combustion consumption by to the public,167.19948,TJ,N2O,3.9,kg/TJ,652.0779719999999,kg +bc8a4358-0d2d-383a-8a7c-0541c25033d2,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2023,gas oil combustion consumption by to the public,429.90024,TJ,CO2,74100.0,kg/TJ,31855607.783999998,kg +0295fafa-4c0a-3d36-892f-c10ee2c417b0,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2023,gas oil combustion consumption by to the public,429.90024,TJ,CH4,3.9,kg/TJ,1676.610936,kg +0295fafa-4c0a-3d36-892f-c10ee2c417b0,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2023,gas oil combustion consumption by to the public,429.90024,TJ,N2O,3.9,kg/TJ,1676.610936,kg +782acf27-a836-3790-8d73-6df4de2609b4,SESCO,II.1.1,Santa Fe,AR-S,annual,2023,gas oil combustion consumption by to the public,861.24528,TJ,CO2,74100.0,kg/TJ,63818275.247999996,kg +f0cc5373-4ed9-3a3d-85f9-08987743df1d,SESCO,II.1.1,Santa Fe,AR-S,annual,2023,gas oil combustion consumption by to the public,861.24528,TJ,CH4,3.9,kg/TJ,3358.8565919999996,kg +f0cc5373-4ed9-3a3d-85f9-08987743df1d,SESCO,II.1.1,Santa Fe,AR-S,annual,2023,gas oil combustion consumption by to the public,861.24528,TJ,N2O,3.9,kg/TJ,3358.8565919999996,kg +34378964-cbb2-3e9f-b8f9-6595097f4149,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2023,gas oil combustion consumption by to the public,297.73716,TJ,CO2,74100.0,kg/TJ,22062323.556,kg +0e9f5d58-4fca-3f95-b9e0-be7e37844535,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2023,gas oil combustion consumption by to the public,297.73716,TJ,CH4,3.9,kg/TJ,1161.1749240000001,kg +0e9f5d58-4fca-3f95-b9e0-be7e37844535,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2023,gas oil combustion consumption by to the public,297.73716,TJ,N2O,3.9,kg/TJ,1161.1749240000001,kg +bf60920e-5cac-3a1c-9261-6a5041d4cc25,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2023,gas oil combustion consumption by to the public,37.09524,TJ,CO2,74100.0,kg/TJ,2748757.284,kg +ec777270-413b-3178-887e-212602652632,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2023,gas oil combustion consumption by to the public,37.09524,TJ,CH4,3.9,kg/TJ,144.67143599999997,kg +ec777270-413b-3178-887e-212602652632,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2023,gas oil combustion consumption by to the public,37.09524,TJ,N2O,3.9,kg/TJ,144.67143599999997,kg +6abb1773-5f9d-356c-9996-c735218adcce,SESCO,II.1.1,Tucuman,AR-T,annual,2023,gas oil combustion consumption by to the public,48.68976,TJ,CO2,74100.0,kg/TJ,3607911.216,kg +28592e1b-2fdc-3441-a7f9-883fdd57fddc,SESCO,II.1.1,Tucuman,AR-T,annual,2023,gas oil combustion consumption by to the public,48.68976,TJ,CH4,3.9,kg/TJ,189.890064,kg +28592e1b-2fdc-3441-a7f9-883fdd57fddc,SESCO,II.1.1,Tucuman,AR-T,annual,2023,gas oil combustion consumption by to the public,48.68976,TJ,N2O,3.9,kg/TJ,189.890064,kg +8812585f-aa4f-33ad-aade-32a79a17ca4e,SESCO,II.1.1,Buenos Aires,AR-B,annual,2023,jet kerosene combustion consumption by to the public,1.8871799999999996,TJ,CO2,71500.0,kg/TJ,134933.36999999997,kg +8df51a08-c2c4-34f6-ab32-e2f6d1f44958,SESCO,II.1.1,Buenos Aires,AR-B,annual,2023,jet kerosene combustion consumption by to the public,1.8871799999999996,TJ,CH4,0.5,kg/TJ,0.9435899999999998,kg +327f8496-d160-33f4-b559-80f5779b4a69,SESCO,II.1.1,Buenos Aires,AR-B,annual,2023,jet kerosene combustion consumption by to the public,1.8871799999999996,TJ,N2O,2.0,kg/TJ,3.7743599999999993,kg +398e5a5e-7991-3ce2-9717-fc9eb34fbc15,SESCO,II.1.1,Chaco,AR-H,annual,2023,jet kerosene combustion consumption by to the public,0.31453,TJ,CO2,71500.0,kg/TJ,22488.894999999997,kg +1db5b72f-618f-3cb1-9c80-166b713e4ad0,SESCO,II.1.1,Chaco,AR-H,annual,2023,jet kerosene combustion consumption by to the public,0.31453,TJ,CH4,0.5,kg/TJ,0.157265,kg +16bcc765-e390-30c5-9264-a831560800b3,SESCO,II.1.1,Chaco,AR-H,annual,2023,jet kerosene combustion consumption by to the public,0.31453,TJ,N2O,2.0,kg/TJ,0.62906,kg +a6aeb01e-4f09-3bfa-861c-d42f14f37209,SESCO,II.1.1,Córdoba,AR-X,annual,2023,jet kerosene combustion consumption by to the public,1.5411969999999997,TJ,CO2,71500.0,kg/TJ,110195.58549999997,kg +57a0904d-f155-3304-89ec-d64a011fb73b,SESCO,II.1.1,Córdoba,AR-X,annual,2023,jet kerosene combustion consumption by to the public,1.5411969999999997,TJ,CH4,0.5,kg/TJ,0.7705984999999999,kg +45cdd49a-6e76-32a3-a461-100e7263299a,SESCO,II.1.1,Córdoba,AR-X,annual,2023,jet kerosene combustion consumption by to the public,1.5411969999999997,TJ,N2O,2.0,kg/TJ,3.0823939999999994,kg +418d9c13-e4c1-3312-ad20-2cce3673bd89,SESCO,II.1.1,Entre Rios,AR-E,annual,2023,jet kerosene combustion consumption by to the public,1.100855,TJ,CO2,71500.0,kg/TJ,78711.13249999999,kg +bc5244d6-d7be-3d46-934b-d105a27fe67d,SESCO,II.1.1,Entre Rios,AR-E,annual,2023,jet kerosene combustion consumption by to the public,1.100855,TJ,CH4,0.5,kg/TJ,0.5504275,kg +fdcf8511-5f19-3abb-86f8-9f14c1291ec5,SESCO,II.1.1,Entre Rios,AR-E,annual,2023,jet kerosene combustion consumption by to the public,1.100855,TJ,N2O,2.0,kg/TJ,2.20171,kg +daec74c5-30cf-3421-875f-8d882fa9a518,SESCO,II.1.1,Misiones,AR-N,annual,2023,jet kerosene combustion consumption by to the public,0.157265,TJ,CO2,71500.0,kg/TJ,11244.447499999998,kg +015cd6bb-9906-38b5-b189-28a37a787a15,SESCO,II.1.1,Misiones,AR-N,annual,2023,jet kerosene combustion consumption by to the public,0.157265,TJ,CH4,0.5,kg/TJ,0.0786325,kg +6837d2da-a8e8-32e0-85df-7823659a37f1,SESCO,II.1.1,Misiones,AR-N,annual,2023,jet kerosene combustion consumption by to the public,0.157265,TJ,N2O,2.0,kg/TJ,0.31453,kg +a296a9e0-08ba-3f84-98a4-163b6c989ee2,SESCO,II.1.1,Santa Fe,AR-S,annual,2023,jet kerosene combustion consumption by to the public,1.5097439999999998,TJ,CO2,71500.0,kg/TJ,107946.69599999998,kg +b24063ef-f9e2-38a2-8b9d-9a9cfc77b6e2,SESCO,II.1.1,Santa Fe,AR-S,annual,2023,jet kerosene combustion consumption by to the public,1.5097439999999998,TJ,CH4,0.5,kg/TJ,0.7548719999999999,kg +6fd6acfc-3ab5-3a6d-9a67-005a9a13d7bd,SESCO,II.1.1,Santa Fe,AR-S,annual,2023,jet kerosene combustion consumption by to the public,1.5097439999999998,TJ,N2O,2.0,kg/TJ,3.0194879999999995,kg +62865a33-398c-3e39-bcf5-2a4e18046d58,SESCO,I.3.1,Capital Federal,AR-C,annual,2023,jet kerosene combustion consumption by petrochemical industries,0.25162399999999996,TJ,CO2,71500.0,kg/TJ,17991.115999999998,kg +6d42c8d5-b585-3daa-bea5-3f897ce0ea6f,SESCO,I.3.1,Capital Federal,AR-C,annual,2023,jet kerosene combustion consumption by petrochemical industries,0.25162399999999996,TJ,CH4,0.5,kg/TJ,0.12581199999999998,kg +9450ffb3-7286-31fb-ac93-1c0706c516b7,SESCO,I.3.1,Capital Federal,AR-C,annual,2023,jet kerosene combustion consumption by petrochemical industries,0.25162399999999996,TJ,N2O,2.0,kg/TJ,0.5032479999999999,kg +350eb14d-1efd-3c77-9353-751ae445c5d5,SESCO,II.2.1,Buenos Aires,AR-B,annual,2023,gas oil combustion consumption by railway transport,111.71916,TJ,CO2,74100.0,kg/TJ,8278389.756,kg +9aaacd99-c3bc-3aef-b754-70f6b16fc0f3,SESCO,II.2.1,Buenos Aires,AR-B,annual,2023,gas oil combustion consumption by railway transport,111.71916,TJ,CH4,3.9,kg/TJ,435.704724,kg +9aaacd99-c3bc-3aef-b754-70f6b16fc0f3,SESCO,II.2.1,Buenos Aires,AR-B,annual,2023,gas oil combustion consumption by railway transport,111.71916,TJ,N2O,3.9,kg/TJ,435.704724,kg +96b486d1-4a2f-3ada-9d3e-ec31571c80ad,SESCO,II.2.1,Córdoba,AR-X,annual,2023,gas oil combustion consumption by railway transport,1.30032,TJ,CO2,74100.0,kg/TJ,96353.712,kg +d99cb075-cd87-3443-b941-99051d523c13,SESCO,II.2.1,Córdoba,AR-X,annual,2023,gas oil combustion consumption by railway transport,1.30032,TJ,CH4,3.9,kg/TJ,5.071248,kg +d99cb075-cd87-3443-b941-99051d523c13,SESCO,II.2.1,Córdoba,AR-X,annual,2023,gas oil combustion consumption by railway transport,1.30032,TJ,N2O,3.9,kg/TJ,5.071248,kg +4e62d6dd-ebcd-3cc0-a87d-d7c7b46b3735,SESCO,II.2.1,La Pampa,AR-L,annual,2023,gas oil combustion consumption by railway transport,30.19632,TJ,CO2,74100.0,kg/TJ,2237547.312,kg +2a6f9074-3362-39d3-aae9-ae4ee9ba71c8,SESCO,II.2.1,La Pampa,AR-L,annual,2023,gas oil combustion consumption by railway transport,30.19632,TJ,CH4,3.9,kg/TJ,117.765648,kg +2a6f9074-3362-39d3-aae9-ae4ee9ba71c8,SESCO,II.2.1,La Pampa,AR-L,annual,2023,gas oil combustion consumption by railway transport,30.19632,TJ,N2O,3.9,kg/TJ,117.765648,kg +80149c20-2745-34bb-adb5-05560309138c,SESCO,II.2.1,Neuquén,AR-Q,annual,2023,gas oil combustion consumption by railway transport,2.81736,TJ,CO2,74100.0,kg/TJ,208766.376,kg +8420e818-7260-3c12-8c7a-e1e9b491d1c4,SESCO,II.2.1,Neuquén,AR-Q,annual,2023,gas oil combustion consumption by railway transport,2.81736,TJ,CH4,3.9,kg/TJ,10.987703999999999,kg +8420e818-7260-3c12-8c7a-e1e9b491d1c4,SESCO,II.2.1,Neuquén,AR-Q,annual,2023,gas oil combustion consumption by railway transport,2.81736,TJ,N2O,3.9,kg/TJ,10.987703999999999,kg +8333c581-da37-3c5b-8518-1101a6f6fc0a,SESCO,II.2.1,Santa Fe,AR-S,annual,2023,gas oil combustion consumption by railway transport,86.11008,TJ,CO2,74100.0,kg/TJ,6380756.927999999,kg +1ed5328e-9ff7-38f3-a339-cdf225491dd8,SESCO,II.2.1,Santa Fe,AR-S,annual,2023,gas oil combustion consumption by railway transport,86.11008,TJ,CH4,3.9,kg/TJ,335.82931199999996,kg +1ed5328e-9ff7-38f3-a339-cdf225491dd8,SESCO,II.2.1,Santa Fe,AR-S,annual,2023,gas oil combustion consumption by railway transport,86.11008,TJ,N2O,3.9,kg/TJ,335.82931199999996,kg +6bd6b07d-563a-3cb4-a789-f5f4fa90f72a,SESCO,II.2.1,Santiago del Estero,AR-G,annual,2023,gas oil combustion consumption by railway transport,5.20128,TJ,CO2,74100.0,kg/TJ,385414.848,kg +41d41861-3c43-3883-bb5d-0e0a89dd10ba,SESCO,II.2.1,Santiago del Estero,AR-G,annual,2023,gas oil combustion consumption by railway transport,5.20128,TJ,CH4,3.9,kg/TJ,20.284992,kg +41d41861-3c43-3883-bb5d-0e0a89dd10ba,SESCO,II.2.1,Santiago del Estero,AR-G,annual,2023,gas oil combustion consumption by railway transport,5.20128,TJ,N2O,3.9,kg/TJ,20.284992,kg +e720a8ea-e1ca-3be2-bf5a-8bb17579a36b,SESCO,II.2.1,Tucuman,AR-T,annual,2023,gas oil combustion consumption by railway transport,2.67288,TJ,CO2,74100.0,kg/TJ,198060.40800000002,kg +a8ffbab1-966b-30fd-8bd5-8d24397f98bc,SESCO,II.2.1,Tucuman,AR-T,annual,2023,gas oil combustion consumption by railway transport,2.67288,TJ,CH4,3.9,kg/TJ,10.424232,kg +a8ffbab1-966b-30fd-8bd5-8d24397f98bc,SESCO,II.2.1,Tucuman,AR-T,annual,2023,gas oil combustion consumption by railway transport,2.67288,TJ,N2O,3.9,kg/TJ,10.424232,kg +9bf9381d-239f-3570-a645-7b46d398f440,SESCO,II.1.1,Buenos Aires,AR-B,annual,2023,gas oil combustion consumption by freight transport,1298.8752,TJ,CO2,74100.0,kg/TJ,96246652.32,kg +570811f5-55cd-3772-b231-415cb05a9996,SESCO,II.1.1,Buenos Aires,AR-B,annual,2023,gas oil combustion consumption by freight transport,1298.8752,TJ,CH4,3.9,kg/TJ,5065.61328,kg +570811f5-55cd-3772-b231-415cb05a9996,SESCO,II.1.1,Buenos Aires,AR-B,annual,2023,gas oil combustion consumption by freight transport,1298.8752,TJ,N2O,3.9,kg/TJ,5065.61328,kg +e7afa33a-433d-395e-86ed-0657158d6045,SESCO,II.1.1,Capital Federal,AR-C,annual,2023,gas oil combustion consumption by freight transport,1383.25152,TJ,CO2,74100.0,kg/TJ,102498937.632,kg +ad6f4781-0fab-3897-b0e8-e0c551482d3b,SESCO,II.1.1,Capital Federal,AR-C,annual,2023,gas oil combustion consumption by freight transport,1383.25152,TJ,CH4,3.9,kg/TJ,5394.680928,kg +ad6f4781-0fab-3897-b0e8-e0c551482d3b,SESCO,II.1.1,Capital Federal,AR-C,annual,2023,gas oil combustion consumption by freight transport,1383.25152,TJ,N2O,3.9,kg/TJ,5394.680928,kg +a69e1070-bc08-372b-a493-20b147889894,SESCO,II.1.1,Chaco,AR-H,annual,2023,gas oil combustion consumption by freight transport,24.850559999999998,TJ,CO2,74100.0,kg/TJ,1841426.4959999998,kg +88bf00cc-378c-358f-8708-e44f49417952,SESCO,II.1.1,Chaco,AR-H,annual,2023,gas oil combustion consumption by freight transport,24.850559999999998,TJ,CH4,3.9,kg/TJ,96.91718399999999,kg +88bf00cc-378c-358f-8708-e44f49417952,SESCO,II.1.1,Chaco,AR-H,annual,2023,gas oil combustion consumption by freight transport,24.850559999999998,TJ,N2O,3.9,kg/TJ,96.91718399999999,kg +b8f78844-ed1d-34f3-a679-55bd4b157bf7,SESCO,II.1.1,Chubut,AR-U,annual,2023,gas oil combustion consumption by freight transport,11.3778,TJ,CO2,74100.0,kg/TJ,843094.9800000001,kg +45072438-c700-3ac0-915d-5d39aee09733,SESCO,II.1.1,Chubut,AR-U,annual,2023,gas oil combustion consumption by freight transport,11.3778,TJ,CH4,3.9,kg/TJ,44.37342,kg +45072438-c700-3ac0-915d-5d39aee09733,SESCO,II.1.1,Chubut,AR-U,annual,2023,gas oil combustion consumption by freight transport,11.3778,TJ,N2O,3.9,kg/TJ,44.37342,kg +aaf5952d-e2c0-3a1d-b5e0-de40441710c7,SESCO,II.1.1,Corrientes,AR-W,annual,2023,gas oil combustion consumption by freight transport,51.471,TJ,CO2,74100.0,kg/TJ,3814001.0999999996,kg +c2b9fed4-7c6a-3d28-a6ba-1de89c308480,SESCO,II.1.1,Corrientes,AR-W,annual,2023,gas oil combustion consumption by freight transport,51.471,TJ,CH4,3.9,kg/TJ,200.7369,kg +c2b9fed4-7c6a-3d28-a6ba-1de89c308480,SESCO,II.1.1,Corrientes,AR-W,annual,2023,gas oil combustion consumption by freight transport,51.471,TJ,N2O,3.9,kg/TJ,200.7369,kg +5f1ae62b-4b4e-3b3a-90d7-1f1a6faa04ce,SESCO,II.1.1,Córdoba,AR-X,annual,2023,gas oil combustion consumption by freight transport,247.34976,TJ,CO2,74100.0,kg/TJ,18328617.216000002,kg +2f17f32e-b59d-3ed1-b7da-ad359702c61e,SESCO,II.1.1,Córdoba,AR-X,annual,2023,gas oil combustion consumption by freight transport,247.34976,TJ,CH4,3.9,kg/TJ,964.6640639999999,kg +2f17f32e-b59d-3ed1-b7da-ad359702c61e,SESCO,II.1.1,Córdoba,AR-X,annual,2023,gas oil combustion consumption by freight transport,247.34976,TJ,N2O,3.9,kg/TJ,964.6640639999999,kg +4b0d7a02-8ea2-3dc3-8f47-26a122d674bb,SESCO,II.1.1,Entre Rios,AR-E,annual,2023,gas oil combustion consumption by freight transport,37.96212,TJ,CO2,74100.0,kg/TJ,2812993.0919999997,kg +16ec0783-facc-31de-b221-d03806f0ebea,SESCO,II.1.1,Entre Rios,AR-E,annual,2023,gas oil combustion consumption by freight transport,37.96212,TJ,CH4,3.9,kg/TJ,148.052268,kg +16ec0783-facc-31de-b221-d03806f0ebea,SESCO,II.1.1,Entre Rios,AR-E,annual,2023,gas oil combustion consumption by freight transport,37.96212,TJ,N2O,3.9,kg/TJ,148.052268,kg +b751b380-81d8-3e76-8144-642ee9fc0e30,SESCO,II.1.1,Formosa,AR-P,annual,2023,gas oil combustion consumption by freight transport,0.28896,TJ,CO2,74100.0,kg/TJ,21411.935999999998,kg +2cd82097-6684-3c9f-be50-61ad2dd06ea7,SESCO,II.1.1,Formosa,AR-P,annual,2023,gas oil combustion consumption by freight transport,0.28896,TJ,CH4,3.9,kg/TJ,1.126944,kg +2cd82097-6684-3c9f-be50-61ad2dd06ea7,SESCO,II.1.1,Formosa,AR-P,annual,2023,gas oil combustion consumption by freight transport,0.28896,TJ,N2O,3.9,kg/TJ,1.126944,kg +514cc063-503d-3162-bf48-2f77de64b248,SESCO,II.1.1,La Pampa,AR-L,annual,2023,gas oil combustion consumption by freight transport,7.36848,TJ,CO2,74100.0,kg/TJ,546004.368,kg +c339c038-c909-3678-8da1-e23c17a2637b,SESCO,II.1.1,La Pampa,AR-L,annual,2023,gas oil combustion consumption by freight transport,7.36848,TJ,CH4,3.9,kg/TJ,28.737071999999998,kg +c339c038-c909-3678-8da1-e23c17a2637b,SESCO,II.1.1,La Pampa,AR-L,annual,2023,gas oil combustion consumption by freight transport,7.36848,TJ,N2O,3.9,kg/TJ,28.737071999999998,kg +e6960cbb-0585-385a-9f34-69047aa87b30,SESCO,II.1.1,Mendoza,AR-M,annual,2023,gas oil combustion consumption by freight transport,157.23036,TJ,CO2,74100.0,kg/TJ,11650769.675999999,kg +7089906f-c8c2-3f13-b022-22c251101fcc,SESCO,II.1.1,Mendoza,AR-M,annual,2023,gas oil combustion consumption by freight transport,157.23036,TJ,CH4,3.9,kg/TJ,613.198404,kg +7089906f-c8c2-3f13-b022-22c251101fcc,SESCO,II.1.1,Mendoza,AR-M,annual,2023,gas oil combustion consumption by freight transport,157.23036,TJ,N2O,3.9,kg/TJ,613.198404,kg +f96526d9-b38c-367a-9508-99b6883e9bff,SESCO,II.1.1,Misiones,AR-N,annual,2023,gas oil combustion consumption by freight transport,205.3422,TJ,CO2,74100.0,kg/TJ,15215857.02,kg +651873ce-f0e8-3668-be6a-acbf8f32de55,SESCO,II.1.1,Misiones,AR-N,annual,2023,gas oil combustion consumption by freight transport,205.3422,TJ,CH4,3.9,kg/TJ,800.83458,kg +651873ce-f0e8-3668-be6a-acbf8f32de55,SESCO,II.1.1,Misiones,AR-N,annual,2023,gas oil combustion consumption by freight transport,205.3422,TJ,N2O,3.9,kg/TJ,800.83458,kg +9f17be82-0d8b-3433-ab97-0b36b30f7695,SESCO,II.1.1,Rio Negro,AR-R,annual,2023,gas oil combustion consumption by freight transport,365.5344,TJ,CO2,74100.0,kg/TJ,27086099.04,kg +ff419c55-3c33-3f12-9dec-8626f7963233,SESCO,II.1.1,Rio Negro,AR-R,annual,2023,gas oil combustion consumption by freight transport,365.5344,TJ,CH4,3.9,kg/TJ,1425.5841599999999,kg +ff419c55-3c33-3f12-9dec-8626f7963233,SESCO,II.1.1,Rio Negro,AR-R,annual,2023,gas oil combustion consumption by freight transport,365.5344,TJ,N2O,3.9,kg/TJ,1425.5841599999999,kg +f23d4838-a990-3440-a281-ad2baba94a24,SESCO,II.1.1,Salta,AR-A,annual,2023,gas oil combustion consumption by freight transport,207.61776,TJ,CO2,74100.0,kg/TJ,15384476.016,kg +13700889-9a15-3a01-9f93-0069fc39630b,SESCO,II.1.1,Salta,AR-A,annual,2023,gas oil combustion consumption by freight transport,207.61776,TJ,CH4,3.9,kg/TJ,809.709264,kg +13700889-9a15-3a01-9f93-0069fc39630b,SESCO,II.1.1,Salta,AR-A,annual,2023,gas oil combustion consumption by freight transport,207.61776,TJ,N2O,3.9,kg/TJ,809.709264,kg +4742dec7-34d3-385b-b06f-1542ea8a5ba8,SESCO,II.1.1,San Juan,AR-J,annual,2023,gas oil combustion consumption by freight transport,2.09496,TJ,CO2,74100.0,kg/TJ,155236.536,kg +45b99a74-103b-3f1f-8b27-b46cdce74d66,SESCO,II.1.1,San Juan,AR-J,annual,2023,gas oil combustion consumption by freight transport,2.09496,TJ,CH4,3.9,kg/TJ,8.170344,kg +45b99a74-103b-3f1f-8b27-b46cdce74d66,SESCO,II.1.1,San Juan,AR-J,annual,2023,gas oil combustion consumption by freight transport,2.09496,TJ,N2O,3.9,kg/TJ,8.170344,kg +dc414a10-d54a-339d-b896-c4e48fe0dae5,SESCO,II.1.1,San Luis,AR-D,annual,2023,gas oil combustion consumption by freight transport,51.398759999999996,TJ,CO2,74100.0,kg/TJ,3808648.1159999995,kg +ac1b4f0c-408d-3110-a5bb-893e0e146c03,SESCO,II.1.1,San Luis,AR-D,annual,2023,gas oil combustion consumption by freight transport,51.398759999999996,TJ,CH4,3.9,kg/TJ,200.45516399999997,kg +ac1b4f0c-408d-3110-a5bb-893e0e146c03,SESCO,II.1.1,San Luis,AR-D,annual,2023,gas oil combustion consumption by freight transport,51.398759999999996,TJ,N2O,3.9,kg/TJ,200.45516399999997,kg +62acf951-3d55-323d-8cfe-5e6a0a0aa72a,SESCO,II.1.1,Santa Fe,AR-S,annual,2023,gas oil combustion consumption by freight transport,436.76304,TJ,CO2,74100.0,kg/TJ,32364141.264,kg +66be1654-777f-3b57-b52d-916fbcbd9582,SESCO,II.1.1,Santa Fe,AR-S,annual,2023,gas oil combustion consumption by freight transport,436.76304,TJ,CH4,3.9,kg/TJ,1703.3758559999999,kg +66be1654-777f-3b57-b52d-916fbcbd9582,SESCO,II.1.1,Santa Fe,AR-S,annual,2023,gas oil combustion consumption by freight transport,436.76304,TJ,N2O,3.9,kg/TJ,1703.3758559999999,kg +4fec1e8d-281c-3995-bc76-9309530f4efd,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2023,gas oil combustion consumption by freight transport,52.08504,TJ,CO2,74100.0,kg/TJ,3859501.464,kg +9f8562f0-cf0f-34ba-a4a1-3dc270114997,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2023,gas oil combustion consumption by freight transport,52.08504,TJ,CH4,3.9,kg/TJ,203.131656,kg +9f8562f0-cf0f-34ba-a4a1-3dc270114997,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2023,gas oil combustion consumption by freight transport,52.08504,TJ,N2O,3.9,kg/TJ,203.131656,kg +326c4467-7744-320e-a832-d2efb72efabc,SESCO,II.1.1,Tucuman,AR-T,annual,2023,gas oil combustion consumption by freight transport,44.71656,TJ,CO2,74100.0,kg/TJ,3313497.096,kg +d2f8fcfa-2326-3347-b16c-ecc60a7e063f,SESCO,II.1.1,Tucuman,AR-T,annual,2023,gas oil combustion consumption by freight transport,44.71656,TJ,CH4,3.9,kg/TJ,174.394584,kg +d2f8fcfa-2326-3347-b16c-ecc60a7e063f,SESCO,II.1.1,Tucuman,AR-T,annual,2023,gas oil combustion consumption by freight transport,44.71656,TJ,N2O,3.9,kg/TJ,174.394584,kg +80f25bfc-8b6f-3f79-ac17-e69e989f0758,SESCO,II.1.1,Buenos Aires,AR-B,annual,2023,gas oil combustion consumption by freight transport,576.98088,TJ,CO2,74100.0,kg/TJ,42754283.208,kg +f6b38b46-9e4d-39f2-8bed-95c9f84cdf30,SESCO,II.1.1,Buenos Aires,AR-B,annual,2023,gas oil combustion consumption by freight transport,576.98088,TJ,CH4,3.9,kg/TJ,2250.2254319999997,kg +f6b38b46-9e4d-39f2-8bed-95c9f84cdf30,SESCO,II.1.1,Buenos Aires,AR-B,annual,2023,gas oil combustion consumption by freight transport,576.98088,TJ,N2O,3.9,kg/TJ,2250.2254319999997,kg +fc7a6cd5-48fd-3b7e-ad01-e3709fa85c1c,SESCO,II.1.1,Capital Federal,AR-C,annual,2023,gas oil combustion consumption by freight transport,166.47708,TJ,CO2,74100.0,kg/TJ,12335951.628,kg +f42f2170-9d1d-33ba-b941-9c8806afeaa3,SESCO,II.1.1,Capital Federal,AR-C,annual,2023,gas oil combustion consumption by freight transport,166.47708,TJ,CH4,3.9,kg/TJ,649.260612,kg +f42f2170-9d1d-33ba-b941-9c8806afeaa3,SESCO,II.1.1,Capital Federal,AR-C,annual,2023,gas oil combustion consumption by freight transport,166.47708,TJ,N2O,3.9,kg/TJ,649.260612,kg +52b66ca3-874b-34a8-a8d7-765bc72f4266,SESCO,II.1.1,Chaco,AR-H,annual,2023,gas oil combustion consumption by freight transport,4.94844,TJ,CO2,74100.0,kg/TJ,366679.404,kg +ff011b6a-1424-39ea-ad16-3adaec71ce4b,SESCO,II.1.1,Chaco,AR-H,annual,2023,gas oil combustion consumption by freight transport,4.94844,TJ,CH4,3.9,kg/TJ,19.298916,kg +ff011b6a-1424-39ea-ad16-3adaec71ce4b,SESCO,II.1.1,Chaco,AR-H,annual,2023,gas oil combustion consumption by freight transport,4.94844,TJ,N2O,3.9,kg/TJ,19.298916,kg +2f662bd1-7503-3ba9-8533-9e7f4e67cb70,SESCO,II.1.1,Chubut,AR-U,annual,2023,gas oil combustion consumption by freight transport,1.01136,TJ,CO2,74100.0,kg/TJ,74941.776,kg +09541e54-6894-396e-a015-411ab926b7c1,SESCO,II.1.1,Chubut,AR-U,annual,2023,gas oil combustion consumption by freight transport,1.01136,TJ,CH4,3.9,kg/TJ,3.9443040000000003,kg +09541e54-6894-396e-a015-411ab926b7c1,SESCO,II.1.1,Chubut,AR-U,annual,2023,gas oil combustion consumption by freight transport,1.01136,TJ,N2O,3.9,kg/TJ,3.9443040000000003,kg +edbbc741-0d5f-3111-afb8-6741cf8dec9c,SESCO,II.1.1,Corrientes,AR-W,annual,2023,gas oil combustion consumption by freight transport,3.53976,TJ,CO2,74100.0,kg/TJ,262296.21599999996,kg +c034df8b-cfdc-3a45-8c7b-7829a1268ac9,SESCO,II.1.1,Corrientes,AR-W,annual,2023,gas oil combustion consumption by freight transport,3.53976,TJ,CH4,3.9,kg/TJ,13.805063999999998,kg +c034df8b-cfdc-3a45-8c7b-7829a1268ac9,SESCO,II.1.1,Corrientes,AR-W,annual,2023,gas oil combustion consumption by freight transport,3.53976,TJ,N2O,3.9,kg/TJ,13.805063999999998,kg +ae101f5f-d08d-36dc-b024-6d74736b4beb,SESCO,II.1.1,Córdoba,AR-X,annual,2023,gas oil combustion consumption by freight transport,21.02184,TJ,CO2,74100.0,kg/TJ,1557718.344,kg +02ad10a1-eddd-39ba-aa4a-c16bfb9cc3dd,SESCO,II.1.1,Córdoba,AR-X,annual,2023,gas oil combustion consumption by freight transport,21.02184,TJ,CH4,3.9,kg/TJ,81.985176,kg +02ad10a1-eddd-39ba-aa4a-c16bfb9cc3dd,SESCO,II.1.1,Córdoba,AR-X,annual,2023,gas oil combustion consumption by freight transport,21.02184,TJ,N2O,3.9,kg/TJ,81.985176,kg +f82901ed-1149-386f-8f96-6ddb1b894a3b,SESCO,II.1.1,Entre Rios,AR-E,annual,2023,gas oil combustion consumption by freight transport,4.40664,TJ,CO2,74100.0,kg/TJ,326532.02400000003,kg +2ec66aa9-109c-3dcc-ad3c-6cfaa88d6f99,SESCO,II.1.1,Entre Rios,AR-E,annual,2023,gas oil combustion consumption by freight transport,4.40664,TJ,CH4,3.9,kg/TJ,17.185896,kg +2ec66aa9-109c-3dcc-ad3c-6cfaa88d6f99,SESCO,II.1.1,Entre Rios,AR-E,annual,2023,gas oil combustion consumption by freight transport,4.40664,TJ,N2O,3.9,kg/TJ,17.185896,kg +a66bb4f5-d8cc-3169-8587-27e7a3bcf968,SESCO,II.1.1,La Pampa,AR-L,annual,2023,gas oil combustion consumption by freight transport,0.18059999999999998,TJ,CO2,74100.0,kg/TJ,13382.46,kg +cc3d68d1-8be3-34dc-972b-85794ae2c59f,SESCO,II.1.1,La Pampa,AR-L,annual,2023,gas oil combustion consumption by freight transport,0.18059999999999998,TJ,CH4,3.9,kg/TJ,0.70434,kg +cc3d68d1-8be3-34dc-972b-85794ae2c59f,SESCO,II.1.1,La Pampa,AR-L,annual,2023,gas oil combustion consumption by freight transport,0.18059999999999998,TJ,N2O,3.9,kg/TJ,0.70434,kg +0bc313a2-fbda-3cf1-b288-4279959dcd8e,SESCO,II.1.1,Mendoza,AR-M,annual,2023,gas oil combustion consumption by freight transport,12.78648,TJ,CO2,74100.0,kg/TJ,947478.168,kg +0d0c5c23-0fc7-3ce8-aad8-8f2aace5d8cf,SESCO,II.1.1,Mendoza,AR-M,annual,2023,gas oil combustion consumption by freight transport,12.78648,TJ,CH4,3.9,kg/TJ,49.86727199999999,kg +0d0c5c23-0fc7-3ce8-aad8-8f2aace5d8cf,SESCO,II.1.1,Mendoza,AR-M,annual,2023,gas oil combustion consumption by freight transport,12.78648,TJ,N2O,3.9,kg/TJ,49.86727199999999,kg +c60c3579-072a-3ac5-82c9-149085dbb675,SESCO,II.1.1,Misiones,AR-N,annual,2023,gas oil combustion consumption by freight transport,0.65016,TJ,CO2,74100.0,kg/TJ,48176.856,kg +dd800d76-7d32-3668-a53a-6e08506d8286,SESCO,II.1.1,Misiones,AR-N,annual,2023,gas oil combustion consumption by freight transport,0.65016,TJ,CH4,3.9,kg/TJ,2.535624,kg +dd800d76-7d32-3668-a53a-6e08506d8286,SESCO,II.1.1,Misiones,AR-N,annual,2023,gas oil combustion consumption by freight transport,0.65016,TJ,N2O,3.9,kg/TJ,2.535624,kg +72f79e4f-cc41-3c96-90ab-f636da9fd693,SESCO,II.1.1,Neuquén,AR-Q,annual,2023,gas oil combustion consumption by freight transport,0.03612,TJ,CO2,74100.0,kg/TJ,2676.4919999999997,kg +a2c1117f-32e8-359f-bc8f-87f84ddd7b5b,SESCO,II.1.1,Neuquén,AR-Q,annual,2023,gas oil combustion consumption by freight transport,0.03612,TJ,CH4,3.9,kg/TJ,0.140868,kg +a2c1117f-32e8-359f-bc8f-87f84ddd7b5b,SESCO,II.1.1,Neuquén,AR-Q,annual,2023,gas oil combustion consumption by freight transport,0.03612,TJ,N2O,3.9,kg/TJ,0.140868,kg +4c54c5be-1382-3e27-87ce-d225cd0df0f2,SESCO,II.1.1,Rio Negro,AR-R,annual,2023,gas oil combustion consumption by freight transport,1.0836,TJ,CO2,74100.0,kg/TJ,80294.76,kg +14ef8d01-cef6-3444-9e0c-9a23c8c72ef5,SESCO,II.1.1,Rio Negro,AR-R,annual,2023,gas oil combustion consumption by freight transport,1.0836,TJ,CH4,3.9,kg/TJ,4.226039999999999,kg +14ef8d01-cef6-3444-9e0c-9a23c8c72ef5,SESCO,II.1.1,Rio Negro,AR-R,annual,2023,gas oil combustion consumption by freight transport,1.0836,TJ,N2O,3.9,kg/TJ,4.226039999999999,kg +53ee0eef-d411-34c8-b139-89b5187ff052,SESCO,II.1.1,Salta,AR-A,annual,2023,gas oil combustion consumption by freight transport,0.03612,TJ,CO2,74100.0,kg/TJ,2676.4919999999997,kg +79a9c050-79d6-37f1-9982-1fee1612bbcb,SESCO,II.1.1,Salta,AR-A,annual,2023,gas oil combustion consumption by freight transport,0.03612,TJ,CH4,3.9,kg/TJ,0.140868,kg +79a9c050-79d6-37f1-9982-1fee1612bbcb,SESCO,II.1.1,Salta,AR-A,annual,2023,gas oil combustion consumption by freight transport,0.03612,TJ,N2O,3.9,kg/TJ,0.140868,kg +9e7ec3e4-3731-3861-9521-5bc1ce1762a9,SESCO,II.1.1,San Juan,AR-J,annual,2023,gas oil combustion consumption by freight transport,2.02272,TJ,CO2,74100.0,kg/TJ,149883.552,kg +d09591d1-c053-3e40-a3c2-e7f7e74be1eb,SESCO,II.1.1,San Juan,AR-J,annual,2023,gas oil combustion consumption by freight transport,2.02272,TJ,CH4,3.9,kg/TJ,7.8886080000000005,kg +d09591d1-c053-3e40-a3c2-e7f7e74be1eb,SESCO,II.1.1,San Juan,AR-J,annual,2023,gas oil combustion consumption by freight transport,2.02272,TJ,N2O,3.9,kg/TJ,7.8886080000000005,kg +b6ff3edd-8022-3f75-9b82-6733a88c0653,SESCO,II.1.1,San Luis,AR-D,annual,2023,gas oil combustion consumption by freight transport,1.58928,TJ,CO2,74100.0,kg/TJ,117765.648,kg +7d1ab74c-81d8-3103-a18d-907da1fdf1c3,SESCO,II.1.1,San Luis,AR-D,annual,2023,gas oil combustion consumption by freight transport,1.58928,TJ,CH4,3.9,kg/TJ,6.198192,kg +7d1ab74c-81d8-3103-a18d-907da1fdf1c3,SESCO,II.1.1,San Luis,AR-D,annual,2023,gas oil combustion consumption by freight transport,1.58928,TJ,N2O,3.9,kg/TJ,6.198192,kg +0a4f77ce-5e6c-3e44-ae37-2d8392a0fda4,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2023,gas oil combustion consumption by freight transport,0.03612,TJ,CO2,74100.0,kg/TJ,2676.4919999999997,kg +f44d0187-48a6-3dee-8e71-89c418ca2cbb,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2023,gas oil combustion consumption by freight transport,0.03612,TJ,CH4,3.9,kg/TJ,0.140868,kg +f44d0187-48a6-3dee-8e71-89c418ca2cbb,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2023,gas oil combustion consumption by freight transport,0.03612,TJ,N2O,3.9,kg/TJ,0.140868,kg +386dd14d-8d0d-39d1-b754-73f238c06b3c,SESCO,II.1.1,Santa Fe,AR-S,annual,2023,gas oil combustion consumption by freight transport,32.905319999999996,TJ,CO2,74100.0,kg/TJ,2438284.212,kg +b1bfb6ba-e1d2-3026-a275-8aeb5020fa24,SESCO,II.1.1,Santa Fe,AR-S,annual,2023,gas oil combustion consumption by freight transport,32.905319999999996,TJ,CH4,3.9,kg/TJ,128.33074799999997,kg +b1bfb6ba-e1d2-3026-a275-8aeb5020fa24,SESCO,II.1.1,Santa Fe,AR-S,annual,2023,gas oil combustion consumption by freight transport,32.905319999999996,TJ,N2O,3.9,kg/TJ,128.33074799999997,kg +18d02d5e-9103-3585-a797-32e679054096,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2023,gas oil combustion consumption by freight transport,1.15584,TJ,CO2,74100.0,kg/TJ,85647.74399999999,kg +650d60c9-590e-3a16-9ea4-25e6e2d0f14f,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2023,gas oil combustion consumption by freight transport,1.15584,TJ,CH4,3.9,kg/TJ,4.507776,kg +650d60c9-590e-3a16-9ea4-25e6e2d0f14f,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2023,gas oil combustion consumption by freight transport,1.15584,TJ,N2O,3.9,kg/TJ,4.507776,kg +13483365-67da-3539-9ac3-063428d908e1,SESCO,II.1.1,Tucuman,AR-T,annual,2023,gas oil combustion consumption by freight transport,0.5418,TJ,CO2,74100.0,kg/TJ,40147.38,kg +a28d3e38-e279-3619-bbc3-920ba16d056c,SESCO,II.1.1,Tucuman,AR-T,annual,2023,gas oil combustion consumption by freight transport,0.5418,TJ,CH4,3.9,kg/TJ,2.1130199999999997,kg +a28d3e38-e279-3619-bbc3-920ba16d056c,SESCO,II.1.1,Tucuman,AR-T,annual,2023,gas oil combustion consumption by freight transport,0.5418,TJ,N2O,3.9,kg/TJ,2.1130199999999997,kg +0cc7451f-75ea-30fd-a70c-ad5080af538e,SESCO,II.1.1,Buenos Aires,AR-B,annual,2023,gas oil combustion consumption by public passenger transport,587.6724,TJ,CO2,74100.0,kg/TJ,43546524.84,kg +f8b7e546-68bb-3026-bc6d-219099b8a694,SESCO,II.1.1,Buenos Aires,AR-B,annual,2023,gas oil combustion consumption by public passenger transport,587.6724,TJ,CH4,3.9,kg/TJ,2291.92236,kg +f8b7e546-68bb-3026-bc6d-219099b8a694,SESCO,II.1.1,Buenos Aires,AR-B,annual,2023,gas oil combustion consumption by public passenger transport,587.6724,TJ,N2O,3.9,kg/TJ,2291.92236,kg +df4b13bb-b11e-35f9-889a-6300a80fc26f,SESCO,II.1.1,Capital Federal,AR-C,annual,2023,gas oil combustion consumption by public passenger transport,201.69407999999999,TJ,CO2,74100.0,kg/TJ,14945531.328,kg +041fe182-d606-3355-8cd0-dd2c0a0895df,SESCO,II.1.1,Capital Federal,AR-C,annual,2023,gas oil combustion consumption by public passenger transport,201.69407999999999,TJ,CH4,3.9,kg/TJ,786.606912,kg +041fe182-d606-3355-8cd0-dd2c0a0895df,SESCO,II.1.1,Capital Federal,AR-C,annual,2023,gas oil combustion consumption by public passenger transport,201.69407999999999,TJ,N2O,3.9,kg/TJ,786.606912,kg +49e51009-fe58-3bcb-b19f-45274f8f8066,SESCO,II.1.1,Chaco,AR-H,annual,2023,gas oil combustion consumption by public passenger transport,132.48816,TJ,CO2,74100.0,kg/TJ,9817372.656,kg +f26f5814-a690-3657-939e-c36593f77289,SESCO,II.1.1,Chaco,AR-H,annual,2023,gas oil combustion consumption by public passenger transport,132.48816,TJ,CH4,3.9,kg/TJ,516.7038239999999,kg +f26f5814-a690-3657-939e-c36593f77289,SESCO,II.1.1,Chaco,AR-H,annual,2023,gas oil combustion consumption by public passenger transport,132.48816,TJ,N2O,3.9,kg/TJ,516.7038239999999,kg +3ed7f9b0-426a-3e18-be71-ac2048cb35e3,SESCO,II.1.1,Chubut,AR-U,annual,2023,gas oil combustion consumption by public passenger transport,43.63296,TJ,CO2,74100.0,kg/TJ,3233202.3359999997,kg +fe269fe8-b6c4-38b1-bf46-e76a1c7603d8,SESCO,II.1.1,Chubut,AR-U,annual,2023,gas oil combustion consumption by public passenger transport,43.63296,TJ,CH4,3.9,kg/TJ,170.168544,kg +fe269fe8-b6c4-38b1-bf46-e76a1c7603d8,SESCO,II.1.1,Chubut,AR-U,annual,2023,gas oil combustion consumption by public passenger transport,43.63296,TJ,N2O,3.9,kg/TJ,170.168544,kg +9d4037d4-c9f9-3a12-802f-f684658254df,SESCO,II.1.1,Córdoba,AR-X,annual,2023,gas oil combustion consumption by public passenger transport,57.4308,TJ,CO2,74100.0,kg/TJ,4255622.28,kg +64965240-35bb-309e-b8a6-3dca5ad9190f,SESCO,II.1.1,Córdoba,AR-X,annual,2023,gas oil combustion consumption by public passenger transport,57.4308,TJ,CH4,3.9,kg/TJ,223.98012,kg +64965240-35bb-309e-b8a6-3dca5ad9190f,SESCO,II.1.1,Córdoba,AR-X,annual,2023,gas oil combustion consumption by public passenger transport,57.4308,TJ,N2O,3.9,kg/TJ,223.98012,kg +26924344-7a90-3e29-8743-32535b819ab4,SESCO,II.1.1,Entre Rios,AR-E,annual,2023,gas oil combustion consumption by public passenger transport,45.83628,TJ,CO2,74100.0,kg/TJ,3396468.348,kg +3c7c02d6-3e1b-3af2-bd25-c401fa6a4f72,SESCO,II.1.1,Entre Rios,AR-E,annual,2023,gas oil combustion consumption by public passenger transport,45.83628,TJ,CH4,3.9,kg/TJ,178.761492,kg +3c7c02d6-3e1b-3af2-bd25-c401fa6a4f72,SESCO,II.1.1,Entre Rios,AR-E,annual,2023,gas oil combustion consumption by public passenger transport,45.83628,TJ,N2O,3.9,kg/TJ,178.761492,kg +68c93889-0c59-3f5e-aa55-2e8cfc9b0d61,SESCO,II.1.1,Mendoza,AR-M,annual,2023,gas oil combustion consumption by public passenger transport,8.34372,TJ,CO2,74100.0,kg/TJ,618269.652,kg +8bd18e55-7155-3a8f-97ca-ee1cae18af91,SESCO,II.1.1,Mendoza,AR-M,annual,2023,gas oil combustion consumption by public passenger transport,8.34372,TJ,CH4,3.9,kg/TJ,32.540507999999996,kg +8bd18e55-7155-3a8f-97ca-ee1cae18af91,SESCO,II.1.1,Mendoza,AR-M,annual,2023,gas oil combustion consumption by public passenger transport,8.34372,TJ,N2O,3.9,kg/TJ,32.540507999999996,kg +b83ec1d6-8a19-34af-af8b-9ca25f6d7d0a,SESCO,II.1.1,Rio Negro,AR-R,annual,2023,gas oil combustion consumption by public passenger transport,42.0798,TJ,CO2,74100.0,kg/TJ,3118113.1799999997,kg +cfd3388b-6e90-3f5c-b84c-1be77552999a,SESCO,II.1.1,Rio Negro,AR-R,annual,2023,gas oil combustion consumption by public passenger transport,42.0798,TJ,CH4,3.9,kg/TJ,164.11122,kg +cfd3388b-6e90-3f5c-b84c-1be77552999a,SESCO,II.1.1,Rio Negro,AR-R,annual,2023,gas oil combustion consumption by public passenger transport,42.0798,TJ,N2O,3.9,kg/TJ,164.11122,kg +0c409504-6d49-3aa5-8d76-2e4885a6452f,SESCO,II.1.1,Santa Fe,AR-S,annual,2023,gas oil combustion consumption by public passenger transport,434.30688,TJ,CO2,74100.0,kg/TJ,32182139.808,kg +908ce5c9-46e0-36a8-b5be-19aaacd138e3,SESCO,II.1.1,Santa Fe,AR-S,annual,2023,gas oil combustion consumption by public passenger transport,434.30688,TJ,CH4,3.9,kg/TJ,1693.7968319999998,kg +908ce5c9-46e0-36a8-b5be-19aaacd138e3,SESCO,II.1.1,Santa Fe,AR-S,annual,2023,gas oil combustion consumption by public passenger transport,434.30688,TJ,N2O,3.9,kg/TJ,1693.7968319999998,kg +559712ef-41ea-352f-a010-f0f9cc13d5fd,SESCO,II.1.1,Tucuman,AR-T,annual,2023,gas oil combustion consumption by public passenger transport,157.6638,TJ,CO2,74100.0,kg/TJ,11682887.58,kg +c240ead2-270c-3944-a24c-a886e3b239ca,SESCO,II.1.1,Tucuman,AR-T,annual,2023,gas oil combustion consumption by public passenger transport,157.6638,TJ,CH4,3.9,kg/TJ,614.88882,kg +c240ead2-270c-3944-a24c-a886e3b239ca,SESCO,II.1.1,Tucuman,AR-T,annual,2023,gas oil combustion consumption by public passenger transport,157.6638,TJ,N2O,3.9,kg/TJ,614.88882,kg +e30f41f6-0f8b-393a-ad41-0f7b91513bc8,SESCO,II.1.1,Buenos Aires,AR-B,annual,2023,gas oil combustion consumption by public passenger transport,700.40292,TJ,CO2,74100.0,kg/TJ,51899856.372,kg +018663f2-9076-32cb-b505-823a09e39310,SESCO,II.1.1,Buenos Aires,AR-B,annual,2023,gas oil combustion consumption by public passenger transport,700.40292,TJ,CH4,3.9,kg/TJ,2731.571388,kg +018663f2-9076-32cb-b505-823a09e39310,SESCO,II.1.1,Buenos Aires,AR-B,annual,2023,gas oil combustion consumption by public passenger transport,700.40292,TJ,N2O,3.9,kg/TJ,2731.571388,kg +6d8c2656-a104-365a-acda-0accf2896940,SESCO,II.1.1,Capital Federal,AR-C,annual,2023,gas oil combustion consumption by public passenger transport,77.62188,TJ,CO2,74100.0,kg/TJ,5751781.308,kg +a61f9a53-5bda-302c-8987-3967cbf64e29,SESCO,II.1.1,Capital Federal,AR-C,annual,2023,gas oil combustion consumption by public passenger transport,77.62188,TJ,CH4,3.9,kg/TJ,302.72533200000004,kg +a61f9a53-5bda-302c-8987-3967cbf64e29,SESCO,II.1.1,Capital Federal,AR-C,annual,2023,gas oil combustion consumption by public passenger transport,77.62188,TJ,N2O,3.9,kg/TJ,302.72533200000004,kg +1aa0ade2-d2e8-3377-a220-5895f18c188d,SESCO,II.1.1,Córdoba,AR-X,annual,2023,gas oil combustion consumption by public passenger transport,103.62828,TJ,CO2,74100.0,kg/TJ,7678855.548,kg +3bd2ecae-ff73-38d9-9148-9ba4f1c4d9f0,SESCO,II.1.1,Córdoba,AR-X,annual,2023,gas oil combustion consumption by public passenger transport,103.62828,TJ,CH4,3.9,kg/TJ,404.150292,kg +3bd2ecae-ff73-38d9-9148-9ba4f1c4d9f0,SESCO,II.1.1,Córdoba,AR-X,annual,2023,gas oil combustion consumption by public passenger transport,103.62828,TJ,N2O,3.9,kg/TJ,404.150292,kg +059ec413-8fd7-3b11-8f2f-68e76df3b0a3,SESCO,II.1.1,Entre Rios,AR-E,annual,2023,gas oil combustion consumption by public passenger transport,3.03408,TJ,CO2,74100.0,kg/TJ,224825.32799999998,kg +085f478e-9183-3181-9b7e-6cc510142d12,SESCO,II.1.1,Entre Rios,AR-E,annual,2023,gas oil combustion consumption by public passenger transport,3.03408,TJ,CH4,3.9,kg/TJ,11.832911999999999,kg +085f478e-9183-3181-9b7e-6cc510142d12,SESCO,II.1.1,Entre Rios,AR-E,annual,2023,gas oil combustion consumption by public passenger transport,3.03408,TJ,N2O,3.9,kg/TJ,11.832911999999999,kg +7b5c3439-9baa-3189-ac25-9e10bd354237,SESCO,II.1.1,Mendoza,AR-M,annual,2023,gas oil combustion consumption by public passenger transport,0.50568,TJ,CO2,74100.0,kg/TJ,37470.888,kg +4863ff36-3f71-315f-afa9-228cba621265,SESCO,II.1.1,Mendoza,AR-M,annual,2023,gas oil combustion consumption by public passenger transport,0.50568,TJ,CH4,3.9,kg/TJ,1.9721520000000001,kg +4863ff36-3f71-315f-afa9-228cba621265,SESCO,II.1.1,Mendoza,AR-M,annual,2023,gas oil combustion consumption by public passenger transport,0.50568,TJ,N2O,3.9,kg/TJ,1.9721520000000001,kg +03bade6f-c5d4-3064-b121-1c598fcfe1ec,SESCO,II.1.1,Santa Fe,AR-S,annual,2023,gas oil combustion consumption by public passenger transport,76.71888,TJ,CO2,74100.0,kg/TJ,5684869.007999999,kg +a19fac7e-327d-347d-98b7-9bde216db568,SESCO,II.1.1,Santa Fe,AR-S,annual,2023,gas oil combustion consumption by public passenger transport,76.71888,TJ,CH4,3.9,kg/TJ,299.20363199999997,kg +a19fac7e-327d-347d-98b7-9bde216db568,SESCO,II.1.1,Santa Fe,AR-S,annual,2023,gas oil combustion consumption by public passenger transport,76.71888,TJ,N2O,3.9,kg/TJ,299.20363199999997,kg +433f8e25-6196-3bd9-ba2b-cddb88987bba,SESCO,II.1.1,Catamarca,AR-K,annual,2023,gas oil combustion consumption by to the public,32.5444812,TJ,CO2,74100.0,kg/TJ,2411546.05692,kg +57e6bfca-f508-35d1-835e-6e1926997fa5,SESCO,II.1.1,Catamarca,AR-K,annual,2023,gas oil combustion consumption by to the public,32.5444812,TJ,CH4,3.9,kg/TJ,126.92347668,kg +57e6bfca-f508-35d1-835e-6e1926997fa5,SESCO,II.1.1,Catamarca,AR-K,annual,2023,gas oil combustion consumption by to the public,32.5444812,TJ,N2O,3.9,kg/TJ,126.92347668,kg +f8330b98-04a2-3794-9a61-073f3c5a6fb7,SESCO,II.1.1,Chaco,AR-H,annual,2023,gas oil combustion consumption by to the public,20.6963988,TJ,CO2,74100.0,kg/TJ,1533603.15108,kg +06d06c11-a0b7-3547-93d4-1843deba66d3,SESCO,II.1.1,Chaco,AR-H,annual,2023,gas oil combustion consumption by to the public,20.6963988,TJ,CH4,3.9,kg/TJ,80.71595532,kg +06d06c11-a0b7-3547-93d4-1843deba66d3,SESCO,II.1.1,Chaco,AR-H,annual,2023,gas oil combustion consumption by to the public,20.6963988,TJ,N2O,3.9,kg/TJ,80.71595532,kg +4bf25306-a0a4-30dd-a3d7-7193e6a13502,SESCO,II.1.1,Córdoba,AR-X,annual,2023,gas oil combustion consumption by to the public,0.36119999999999997,TJ,CO2,74100.0,kg/TJ,26764.92,kg +aef83eaf-078b-344a-8874-d6392730967d,SESCO,II.1.1,Córdoba,AR-X,annual,2023,gas oil combustion consumption by to the public,0.36119999999999997,TJ,CH4,3.9,kg/TJ,1.40868,kg +aef83eaf-078b-344a-8874-d6392730967d,SESCO,II.1.1,Córdoba,AR-X,annual,2023,gas oil combustion consumption by to the public,0.36119999999999997,TJ,N2O,3.9,kg/TJ,1.40868,kg +6b6e7ad6-af55-3e82-9cf7-afb43c8a832d,SESCO,II.1.1,Jujuy,AR-Y,annual,2023,gas oil combustion consumption by to the public,345.3805236,TJ,CO2,74100.0,kg/TJ,25592696.79876,kg +496ea281-f506-330c-985b-290a5e11a120,SESCO,II.1.1,Jujuy,AR-Y,annual,2023,gas oil combustion consumption by to the public,345.3805236,TJ,CH4,3.9,kg/TJ,1346.98404204,kg +496ea281-f506-330c-985b-290a5e11a120,SESCO,II.1.1,Jujuy,AR-Y,annual,2023,gas oil combustion consumption by to the public,345.3805236,TJ,N2O,3.9,kg/TJ,1346.98404204,kg +a577531d-b0f1-309c-9429-69a0dd95dd4e,SESCO,II.1.1,La Rioja,AR-F,annual,2023,gas oil combustion consumption by to the public,68.6276388,TJ,CO2,74100.0,kg/TJ,5085308.03508,kg +77a54879-5bac-399e-96fe-4d4bf63a9107,SESCO,II.1.1,La Rioja,AR-F,annual,2023,gas oil combustion consumption by to the public,68.6276388,TJ,CH4,3.9,kg/TJ,267.64779132,kg +77a54879-5bac-399e-96fe-4d4bf63a9107,SESCO,II.1.1,La Rioja,AR-F,annual,2023,gas oil combustion consumption by to the public,68.6276388,TJ,N2O,3.9,kg/TJ,267.64779132,kg +5b694dfa-db19-3cdc-a398-f7823924ffb4,SESCO,II.1.1,Salta,AR-A,annual,2023,gas oil combustion consumption by to the public,977.2200984,TJ,CO2,74100.0,kg/TJ,72412009.29144,kg +99892490-64c8-3187-967a-42d2c42ab21f,SESCO,II.1.1,Salta,AR-A,annual,2023,gas oil combustion consumption by to the public,977.2200984,TJ,CH4,3.9,kg/TJ,3811.1583837599997,kg +99892490-64c8-3187-967a-42d2c42ab21f,SESCO,II.1.1,Salta,AR-A,annual,2023,gas oil combustion consumption by to the public,977.2200984,TJ,N2O,3.9,kg/TJ,3811.1583837599997,kg +3b4bb5a1-b67d-3758-8b65-32b2f0f7abd2,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2023,gas oil combustion consumption by to the public,117.81441,TJ,CO2,74100.0,kg/TJ,8730047.781,kg +6a965848-dd4d-3cfd-ba8f-9703befb95ca,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2023,gas oil combustion consumption by to the public,117.81441,TJ,CH4,3.9,kg/TJ,459.47619899999995,kg +6a965848-dd4d-3cfd-ba8f-9703befb95ca,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2023,gas oil combustion consumption by to the public,117.81441,TJ,N2O,3.9,kg/TJ,459.47619899999995,kg +7f3730a0-1032-30c5-8109-f9ddc95b91cc,SESCO,II.1.1,Tucuman,AR-T,annual,2023,gas oil combustion consumption by to the public,1446.2097635999999,TJ,CO2,74100.0,kg/TJ,107164143.48275998,kg +28052de1-b9ae-303c-b10a-b4788a5c6adb,SESCO,II.1.1,Tucuman,AR-T,annual,2023,gas oil combustion consumption by to the public,1446.2097635999999,TJ,CH4,3.9,kg/TJ,5640.218078039999,kg +28052de1-b9ae-303c-b10a-b4788a5c6adb,SESCO,II.1.1,Tucuman,AR-T,annual,2023,gas oil combustion consumption by to the public,1446.2097635999999,TJ,N2O,3.9,kg/TJ,5640.218078039999,kg +fe7b6c92-5468-3f52-ba64-f4377908f328,SESCO,II.1.1,Catamarca,AR-K,annual,2023,gas oil combustion consumption by to the public,3.3960024,TJ,CO2,74100.0,kg/TJ,251643.77784,kg +3fc21f7d-7070-3ab5-80dd-4cd5d754e78e,SESCO,II.1.1,Catamarca,AR-K,annual,2023,gas oil combustion consumption by to the public,3.3960024,TJ,CH4,3.9,kg/TJ,13.244409359999999,kg +3fc21f7d-7070-3ab5-80dd-4cd5d754e78e,SESCO,II.1.1,Catamarca,AR-K,annual,2023,gas oil combustion consumption by to the public,3.3960024,TJ,N2O,3.9,kg/TJ,13.244409359999999,kg +925f4e7d-8370-350d-8402-556b68914e62,SESCO,II.1.1,Chaco,AR-H,annual,2023,gas oil combustion consumption by to the public,1.9150823999999997,TJ,CO2,74100.0,kg/TJ,141907.60583999997,kg +f0e0e501-8783-3e22-86f9-dba7130247d8,SESCO,II.1.1,Chaco,AR-H,annual,2023,gas oil combustion consumption by to the public,1.9150823999999997,TJ,CH4,3.9,kg/TJ,7.468821359999999,kg +f0e0e501-8783-3e22-86f9-dba7130247d8,SESCO,II.1.1,Chaco,AR-H,annual,2023,gas oil combustion consumption by to the public,1.9150823999999997,TJ,N2O,3.9,kg/TJ,7.468821359999999,kg +ce644857-0286-3be2-8a8d-1d08988c4a1e,SESCO,II.1.1,Córdoba,AR-X,annual,2023,gas oil combustion consumption by to the public,0.5418,TJ,CO2,74100.0,kg/TJ,40147.38,kg +a4264203-f9dc-33e4-a48d-de5bb69ea625,SESCO,II.1.1,Córdoba,AR-X,annual,2023,gas oil combustion consumption by to the public,0.5418,TJ,CH4,3.9,kg/TJ,2.1130199999999997,kg +a4264203-f9dc-33e4-a48d-de5bb69ea625,SESCO,II.1.1,Córdoba,AR-X,annual,2023,gas oil combustion consumption by to the public,0.5418,TJ,N2O,3.9,kg/TJ,2.1130199999999997,kg +51f61c23-2723-3df9-8def-2912f4c854ed,SESCO,II.1.1,Jujuy,AR-Y,annual,2023,gas oil combustion consumption by to the public,97.5207492,TJ,CO2,74100.0,kg/TJ,7226287.51572,kg +80f5b109-366d-3680-8240-3226a346d41a,SESCO,II.1.1,Jujuy,AR-Y,annual,2023,gas oil combustion consumption by to the public,97.5207492,TJ,CH4,3.9,kg/TJ,380.33092188,kg +80f5b109-366d-3680-8240-3226a346d41a,SESCO,II.1.1,Jujuy,AR-Y,annual,2023,gas oil combustion consumption by to the public,97.5207492,TJ,N2O,3.9,kg/TJ,380.33092188,kg +854deaa5-2376-3763-a6cb-683eface1ebb,SESCO,II.1.1,La Rioja,AR-F,annual,2023,gas oil combustion consumption by to the public,99.95740439999999,TJ,CO2,74100.0,kg/TJ,7406843.666039999,kg +de1ed80c-8358-3bba-8406-6eec79be0891,SESCO,II.1.1,La Rioja,AR-F,annual,2023,gas oil combustion consumption by to the public,99.95740439999999,TJ,CH4,3.9,kg/TJ,389.83387715999993,kg +de1ed80c-8358-3bba-8406-6eec79be0891,SESCO,II.1.1,La Rioja,AR-F,annual,2023,gas oil combustion consumption by to the public,99.95740439999999,TJ,N2O,3.9,kg/TJ,389.83387715999993,kg +8e6aff01-d21c-3330-b5d1-ff42292ec98b,SESCO,II.1.1,Salta,AR-A,annual,2023,gas oil combustion consumption by to the public,174.20459279999997,TJ,CO2,74100.0,kg/TJ,12908560.326479997,kg +24e9ad07-3087-327c-8b43-75b738381308,SESCO,II.1.1,Salta,AR-A,annual,2023,gas oil combustion consumption by to the public,174.20459279999997,TJ,CH4,3.9,kg/TJ,679.3979119199998,kg +24e9ad07-3087-327c-8b43-75b738381308,SESCO,II.1.1,Salta,AR-A,annual,2023,gas oil combustion consumption by to the public,174.20459279999997,TJ,N2O,3.9,kg/TJ,679.3979119199998,kg +977be780-854d-3dcc-b796-86ac69f04f1d,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2023,gas oil combustion consumption by to the public,62.6197992,TJ,CO2,74100.0,kg/TJ,4640127.12072,kg +c794abc4-c58b-3c93-82c5-1b2d2a6ce4d4,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2023,gas oil combustion consumption by to the public,62.6197992,TJ,CH4,3.9,kg/TJ,244.21721688,kg +c794abc4-c58b-3c93-82c5-1b2d2a6ce4d4,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2023,gas oil combustion consumption by to the public,62.6197992,TJ,N2O,3.9,kg/TJ,244.21721688,kg +5a05245f-b36b-30cf-9a94-d6be78c94b3b,SESCO,II.1.1,Tucuman,AR-T,annual,2023,gas oil combustion consumption by to the public,225.9797232,TJ,CO2,74100.0,kg/TJ,16745097.48912,kg +b2af6a9e-2cfa-394b-a2a4-7a08eb3f4295,SESCO,II.1.1,Tucuman,AR-T,annual,2023,gas oil combustion consumption by to the public,225.9797232,TJ,CH4,3.9,kg/TJ,881.3209204799999,kg +b2af6a9e-2cfa-394b-a2a4-7a08eb3f4295,SESCO,II.1.1,Tucuman,AR-T,annual,2023,gas oil combustion consumption by to the public,225.9797232,TJ,N2O,3.9,kg/TJ,881.3209204799999,kg +395a014c-ab57-34d7-9e4a-a60df2a047bb,SESCO,I.3.1,San Juan,AR-J,annual,2023,gas oil combustion consumption by petrochemical industries,15.13428,TJ,CO2,74100.0,kg/TJ,1121450.148,kg +f69129ce-7b06-31be-a0bb-52266740a3b9,SESCO,I.3.1,San Juan,AR-J,annual,2023,gas oil combustion consumption by petrochemical industries,15.13428,TJ,CH4,3.9,kg/TJ,59.023692,kg +f69129ce-7b06-31be-a0bb-52266740a3b9,SESCO,I.3.1,San Juan,AR-J,annual,2023,gas oil combustion consumption by petrochemical industries,15.13428,TJ,N2O,3.9,kg/TJ,59.023692,kg +27b3ee04-11c6-3673-b67c-6b433a0dadea,SESCO,II.5.1,Capital Federal,AR-C,annual,2023,gasoline combustion consumption by agriculture machines,60.1594,TJ,CO2,69300.0,kg/TJ,4169046.42,kg +344c97af-9643-394d-9e1f-09f227f0b1a6,SESCO,II.5.1,Capital Federal,AR-C,annual,2023,gasoline combustion consumption by agriculture machines,60.1594,TJ,CH4,33.0,kg/TJ,1985.2602,kg +537113ff-e949-3724-af55-9ad88e1193aa,SESCO,II.5.1,Capital Federal,AR-C,annual,2023,gasoline combustion consumption by agriculture machines,60.1594,TJ,N2O,3.2,kg/TJ,192.51008000000002,kg +51b7f418-52b3-354f-be0c-24c3ba661532,SESCO,II.5.1,Buenos Aires,AR-B,annual,2023,gas oil combustion consumption by agriculture machines,816.63708,TJ,CO2,74100.0,kg/TJ,60512807.628,kg +73351c39-f8c3-333e-81f3-2a78852721be,SESCO,II.5.1,Buenos Aires,AR-B,annual,2023,gas oil combustion consumption by agriculture machines,816.63708,TJ,CH4,3.9,kg/TJ,3184.884612,kg +73351c39-f8c3-333e-81f3-2a78852721be,SESCO,II.5.1,Buenos Aires,AR-B,annual,2023,gas oil combustion consumption by agriculture machines,816.63708,TJ,N2O,3.9,kg/TJ,3184.884612,kg +8a2185cb-901b-3c8a-a651-504980b0a44b,SESCO,II.5.1,Chaco,AR-H,annual,2023,gas oil combustion consumption by agriculture machines,58.22544,TJ,CO2,74100.0,kg/TJ,4314505.104,kg +c769450f-c298-313a-b512-cf303e4d2625,SESCO,II.5.1,Chaco,AR-H,annual,2023,gas oil combustion consumption by agriculture machines,58.22544,TJ,CH4,3.9,kg/TJ,227.079216,kg +c769450f-c298-313a-b512-cf303e4d2625,SESCO,II.5.1,Chaco,AR-H,annual,2023,gas oil combustion consumption by agriculture machines,58.22544,TJ,N2O,3.9,kg/TJ,227.079216,kg +0b46a818-375e-33fa-8e78-abddd07a4c1d,SESCO,II.5.1,Corrientes,AR-W,annual,2023,gas oil combustion consumption by agriculture machines,48.25632,TJ,CO2,74100.0,kg/TJ,3575793.3120000004,kg +7add910a-6d08-3f3e-96c8-4b2d44fcef7e,SESCO,II.5.1,Corrientes,AR-W,annual,2023,gas oil combustion consumption by agriculture machines,48.25632,TJ,CH4,3.9,kg/TJ,188.199648,kg +7add910a-6d08-3f3e-96c8-4b2d44fcef7e,SESCO,II.5.1,Corrientes,AR-W,annual,2023,gas oil combustion consumption by agriculture machines,48.25632,TJ,N2O,3.9,kg/TJ,188.199648,kg +7c18fa6b-84de-36a9-ba5c-4c09ce101361,SESCO,II.5.1,Córdoba,AR-X,annual,2023,gas oil combustion consumption by agriculture machines,375.28679999999997,TJ,CO2,74100.0,kg/TJ,27808751.88,kg +757f74d3-1324-3483-bb95-6d8153daa34c,SESCO,II.5.1,Córdoba,AR-X,annual,2023,gas oil combustion consumption by agriculture machines,375.28679999999997,TJ,CH4,3.9,kg/TJ,1463.6185199999998,kg +757f74d3-1324-3483-bb95-6d8153daa34c,SESCO,II.5.1,Córdoba,AR-X,annual,2023,gas oil combustion consumption by agriculture machines,375.28679999999997,TJ,N2O,3.9,kg/TJ,1463.6185199999998,kg +3f42e127-765b-3156-b86f-ac2f08b98fe4,SESCO,II.5.1,Entre Rios,AR-E,annual,2023,gas oil combustion consumption by agriculture machines,196.63728,TJ,CO2,74100.0,kg/TJ,14570822.448,kg +46da741e-6fd9-337f-b688-97bdacbad836,SESCO,II.5.1,Entre Rios,AR-E,annual,2023,gas oil combustion consumption by agriculture machines,196.63728,TJ,CH4,3.9,kg/TJ,766.885392,kg +46da741e-6fd9-337f-b688-97bdacbad836,SESCO,II.5.1,Entre Rios,AR-E,annual,2023,gas oil combustion consumption by agriculture machines,196.63728,TJ,N2O,3.9,kg/TJ,766.885392,kg +944bcdc5-d406-33dd-b955-e7ef7fa7c03e,SESCO,II.5.1,La Pampa,AR-L,annual,2023,gas oil combustion consumption by agriculture machines,99.61896,TJ,CO2,74100.0,kg/TJ,7381764.936,kg +eb6f3bdc-88fb-3f96-937d-e86b58d86536,SESCO,II.5.1,La Pampa,AR-L,annual,2023,gas oil combustion consumption by agriculture machines,99.61896,TJ,CH4,3.9,kg/TJ,388.513944,kg +eb6f3bdc-88fb-3f96-937d-e86b58d86536,SESCO,II.5.1,La Pampa,AR-L,annual,2023,gas oil combustion consumption by agriculture machines,99.61896,TJ,N2O,3.9,kg/TJ,388.513944,kg +db9a9aae-6218-3926-af7e-90078e2af68a,SESCO,II.5.1,Salta,AR-A,annual,2023,gas oil combustion consumption by agriculture machines,169.98072,TJ,CO2,74100.0,kg/TJ,12595571.352,kg +92c0e804-d882-3e23-8bb8-d68be8379246,SESCO,II.5.1,Salta,AR-A,annual,2023,gas oil combustion consumption by agriculture machines,169.98072,TJ,CH4,3.9,kg/TJ,662.924808,kg +92c0e804-d882-3e23-8bb8-d68be8379246,SESCO,II.5.1,Salta,AR-A,annual,2023,gas oil combustion consumption by agriculture machines,169.98072,TJ,N2O,3.9,kg/TJ,662.924808,kg +01acc37c-7089-3f01-8263-46f4e6276766,SESCO,II.5.1,Santa Fe,AR-S,annual,2023,gas oil combustion consumption by agriculture machines,922.28808,TJ,CO2,74100.0,kg/TJ,68341546.728,kg +a8a70a0d-ed5c-314b-96c1-fdf7b800a62e,SESCO,II.5.1,Santa Fe,AR-S,annual,2023,gas oil combustion consumption by agriculture machines,922.28808,TJ,CH4,3.9,kg/TJ,3596.923512,kg +a8a70a0d-ed5c-314b-96c1-fdf7b800a62e,SESCO,II.5.1,Santa Fe,AR-S,annual,2023,gas oil combustion consumption by agriculture machines,922.28808,TJ,N2O,3.9,kg/TJ,3596.923512,kg +139a8503-924b-379e-a313-1c988306eaaf,SESCO,II.5.1,Tucuman,AR-T,annual,2023,gas oil combustion consumption by agriculture machines,226.00284,TJ,CO2,74100.0,kg/TJ,16746810.444,kg +d227f109-356d-3252-86e6-697a82c28e7a,SESCO,II.5.1,Tucuman,AR-T,annual,2023,gas oil combustion consumption by agriculture machines,226.00284,TJ,CH4,3.9,kg/TJ,881.411076,kg +d227f109-356d-3252-86e6-697a82c28e7a,SESCO,II.5.1,Tucuman,AR-T,annual,2023,gas oil combustion consumption by agriculture machines,226.00284,TJ,N2O,3.9,kg/TJ,881.411076,kg +771d8052-8859-33f2-9158-ce55c2f4bcfd,SESCO,II.5.1,Buenos Aires,AR-B,annual,2023,gas oil combustion consumption by agriculture machines,70.83132,TJ,CO2,74100.0,kg/TJ,5248600.812,kg +74dc5c99-dd4e-3b1c-a297-35b5803a5583,SESCO,II.5.1,Buenos Aires,AR-B,annual,2023,gas oil combustion consumption by agriculture machines,70.83132,TJ,CH4,3.9,kg/TJ,276.242148,kg +74dc5c99-dd4e-3b1c-a297-35b5803a5583,SESCO,II.5.1,Buenos Aires,AR-B,annual,2023,gas oil combustion consumption by agriculture machines,70.83132,TJ,N2O,3.9,kg/TJ,276.242148,kg +469c0e4b-82ae-3a2b-b104-c361868466ab,SESCO,II.5.1,Córdoba,AR-X,annual,2023,gas oil combustion consumption by agriculture machines,25.13952,TJ,CO2,74100.0,kg/TJ,1862838.432,kg +60e16dec-22b4-3904-8f9d-8474bfd752bd,SESCO,II.5.1,Córdoba,AR-X,annual,2023,gas oil combustion consumption by agriculture machines,25.13952,TJ,CH4,3.9,kg/TJ,98.044128,kg +60e16dec-22b4-3904-8f9d-8474bfd752bd,SESCO,II.5.1,Córdoba,AR-X,annual,2023,gas oil combustion consumption by agriculture machines,25.13952,TJ,N2O,3.9,kg/TJ,98.044128,kg +da6e81b0-a1a0-343e-8668-dbba8cd44851,SESCO,II.5.1,Entre Rios,AR-E,annual,2023,gas oil combustion consumption by agriculture machines,52.33788,TJ,CO2,74100.0,kg/TJ,3878236.908,kg +123aee52-243b-3541-9cdd-3252dadeee34,SESCO,II.5.1,Entre Rios,AR-E,annual,2023,gas oil combustion consumption by agriculture machines,52.33788,TJ,CH4,3.9,kg/TJ,204.117732,kg +123aee52-243b-3541-9cdd-3252dadeee34,SESCO,II.5.1,Entre Rios,AR-E,annual,2023,gas oil combustion consumption by agriculture machines,52.33788,TJ,N2O,3.9,kg/TJ,204.117732,kg +725f5f64-44ce-3811-bab2-38a76b5ac587,SESCO,II.5.1,La Pampa,AR-L,annual,2023,gas oil combustion consumption by agriculture machines,8.09088,TJ,CO2,74100.0,kg/TJ,599534.208,kg +369e9e03-2be1-3015-a67d-a7769e20eb15,SESCO,II.5.1,La Pampa,AR-L,annual,2023,gas oil combustion consumption by agriculture machines,8.09088,TJ,CH4,3.9,kg/TJ,31.554432000000002,kg +369e9e03-2be1-3015-a67d-a7769e20eb15,SESCO,II.5.1,La Pampa,AR-L,annual,2023,gas oil combustion consumption by agriculture machines,8.09088,TJ,N2O,3.9,kg/TJ,31.554432000000002,kg +49d03cf2-1a14-3b3b-905c-07957a308ee4,SESCO,II.5.1,Santa Fe,AR-S,annual,2023,gas oil combustion consumption by agriculture machines,135.30552,TJ,CO2,74100.0,kg/TJ,10026139.032,kg +ae511163-2ec1-3d5b-a554-5524d6e00285,SESCO,II.5.1,Santa Fe,AR-S,annual,2023,gas oil combustion consumption by agriculture machines,135.30552,TJ,CH4,3.9,kg/TJ,527.691528,kg +ae511163-2ec1-3d5b-a554-5524d6e00285,SESCO,II.5.1,Santa Fe,AR-S,annual,2023,gas oil combustion consumption by agriculture machines,135.30552,TJ,N2O,3.9,kg/TJ,527.691528,kg +d52fcb70-629d-3293-b0bc-6e16feb971e2,SESCO,II.5.1,Tucuman,AR-T,annual,2023,gas oil combustion consumption by agriculture machines,4.65948,TJ,CO2,74100.0,kg/TJ,345267.468,kg +ec850d77-efb2-3275-84ee-4d6ae5067f01,SESCO,II.5.1,Tucuman,AR-T,annual,2023,gas oil combustion consumption by agriculture machines,4.65948,TJ,CH4,3.9,kg/TJ,18.171972,kg +ec850d77-efb2-3275-84ee-4d6ae5067f01,SESCO,II.5.1,Tucuman,AR-T,annual,2023,gas oil combustion consumption by agriculture machines,4.65948,TJ,N2O,3.9,kg/TJ,18.171972,kg +384f60f3-bae3-39e2-ad66-c24eb1daebc4,SESCO,II.1.1,Buenos Aires,AR-B,annual,2023,gas oil combustion consumption by to the public,13910.93172,TJ,CO2,74100.0,kg/TJ,1030800040.452,kg +dd253401-ea4b-39b3-a14d-230219c9f435,SESCO,II.1.1,Buenos Aires,AR-B,annual,2023,gas oil combustion consumption by to the public,13910.93172,TJ,CH4,3.9,kg/TJ,54252.633708,kg +dd253401-ea4b-39b3-a14d-230219c9f435,SESCO,II.1.1,Buenos Aires,AR-B,annual,2023,gas oil combustion consumption by to the public,13910.93172,TJ,N2O,3.9,kg/TJ,54252.633708,kg +a3c2e4dc-43ef-326b-babc-eb153dab8a00,SESCO,II.1.1,Capital Federal,AR-C,annual,2023,gas oil combustion consumption by to the public,1202.47092,TJ,CO2,74100.0,kg/TJ,89103095.17199999,kg +7fff316a-ccc7-3da9-aa15-002e2ef34f09,SESCO,II.1.1,Capital Federal,AR-C,annual,2023,gas oil combustion consumption by to the public,1202.47092,TJ,CH4,3.9,kg/TJ,4689.636587999999,kg +7fff316a-ccc7-3da9-aa15-002e2ef34f09,SESCO,II.1.1,Capital Federal,AR-C,annual,2023,gas oil combustion consumption by to the public,1202.47092,TJ,N2O,3.9,kg/TJ,4689.636587999999,kg +f90595e2-bd31-3f5b-8dd1-0cf15a8453d7,SESCO,II.1.1,Catamarca,AR-K,annual,2023,gas oil combustion consumption by to the public,65.41332,TJ,CO2,74100.0,kg/TJ,4847127.012,kg +7896b6e1-1edc-3561-abfd-68284fe03c07,SESCO,II.1.1,Catamarca,AR-K,annual,2023,gas oil combustion consumption by to the public,65.41332,TJ,CH4,3.9,kg/TJ,255.11194799999998,kg +7896b6e1-1edc-3561-abfd-68284fe03c07,SESCO,II.1.1,Catamarca,AR-K,annual,2023,gas oil combustion consumption by to the public,65.41332,TJ,N2O,3.9,kg/TJ,255.11194799999998,kg +ffbbcdac-7a42-30a7-950e-5826c9dfb4d5,SESCO,II.1.1,Chaco,AR-H,annual,2023,gas oil combustion consumption by to the public,1524.40848,TJ,CO2,74100.0,kg/TJ,112958668.368,kg +cc940ff4-8cbf-3521-9800-a253fa8632a3,SESCO,II.1.1,Chaco,AR-H,annual,2023,gas oil combustion consumption by to the public,1524.40848,TJ,CH4,3.9,kg/TJ,5945.193072,kg +cc940ff4-8cbf-3521-9800-a253fa8632a3,SESCO,II.1.1,Chaco,AR-H,annual,2023,gas oil combustion consumption by to the public,1524.40848,TJ,N2O,3.9,kg/TJ,5945.193072,kg +d8001c1a-51da-3b5d-bb77-87d9cd1b3daf,SESCO,II.1.1,Corrientes,AR-W,annual,2023,gas oil combustion consumption by to the public,1093.3524,TJ,CO2,74100.0,kg/TJ,81017412.84,kg +19b99bd8-348b-31b5-be87-16030fd998f4,SESCO,II.1.1,Corrientes,AR-W,annual,2023,gas oil combustion consumption by to the public,1093.3524,TJ,CH4,3.9,kg/TJ,4264.07436,kg +19b99bd8-348b-31b5-be87-16030fd998f4,SESCO,II.1.1,Corrientes,AR-W,annual,2023,gas oil combustion consumption by to the public,1093.3524,TJ,N2O,3.9,kg/TJ,4264.07436,kg +d2593382-9f88-32d5-bc80-235dd14cf53d,SESCO,II.1.1,Córdoba,AR-X,annual,2023,gas oil combustion consumption by to the public,9379.93056,TJ,CO2,74100.0,kg/TJ,695052854.496,kg +8ef30031-39ac-3bae-a42a-9ec6045bc2e5,SESCO,II.1.1,Córdoba,AR-X,annual,2023,gas oil combustion consumption by to the public,9379.93056,TJ,CH4,3.9,kg/TJ,36581.729184,kg +8ef30031-39ac-3bae-a42a-9ec6045bc2e5,SESCO,II.1.1,Córdoba,AR-X,annual,2023,gas oil combustion consumption by to the public,9379.93056,TJ,N2O,3.9,kg/TJ,36581.729184,kg +37ff8110-dd45-3e0b-8b3a-72c9316da40c,SESCO,II.1.1,Entre Rios,AR-E,annual,2023,gas oil combustion consumption by to the public,1668.52728,TJ,CO2,74100.0,kg/TJ,123637871.448,kg +75d82f7f-1355-30f6-91a3-cc98d0571871,SESCO,II.1.1,Entre Rios,AR-E,annual,2023,gas oil combustion consumption by to the public,1668.52728,TJ,CH4,3.9,kg/TJ,6507.256392,kg +75d82f7f-1355-30f6-91a3-cc98d0571871,SESCO,II.1.1,Entre Rios,AR-E,annual,2023,gas oil combustion consumption by to the public,1668.52728,TJ,N2O,3.9,kg/TJ,6507.256392,kg +fd012126-1e65-3291-97c8-3dd713a6ce62,SESCO,II.1.1,Formosa,AR-P,annual,2023,gas oil combustion consumption by to the public,245.65212,TJ,CO2,74100.0,kg/TJ,18202822.092,kg +1a20f297-5673-308c-a827-206878a4f8b4,SESCO,II.1.1,Formosa,AR-P,annual,2023,gas oil combustion consumption by to the public,245.65212,TJ,CH4,3.9,kg/TJ,958.043268,kg +1a20f297-5673-308c-a827-206878a4f8b4,SESCO,II.1.1,Formosa,AR-P,annual,2023,gas oil combustion consumption by to the public,245.65212,TJ,N2O,3.9,kg/TJ,958.043268,kg +a79af9d2-83d3-3270-8d26-fea3239836e4,SESCO,II.1.1,Jujuy,AR-Y,annual,2023,gas oil combustion consumption by to the public,348.88308,TJ,CO2,74100.0,kg/TJ,25852236.228,kg +0da0f702-9517-36df-93e7-15102c977dc7,SESCO,II.1.1,Jujuy,AR-Y,annual,2023,gas oil combustion consumption by to the public,348.88308,TJ,CH4,3.9,kg/TJ,1360.644012,kg +0da0f702-9517-36df-93e7-15102c977dc7,SESCO,II.1.1,Jujuy,AR-Y,annual,2023,gas oil combustion consumption by to the public,348.88308,TJ,N2O,3.9,kg/TJ,1360.644012,kg +92dde770-12d7-3ad8-bf98-30e1706d06d0,SESCO,II.1.1,La Pampa,AR-L,annual,2023,gas oil combustion consumption by to the public,1124.7406799999999,TJ,CO2,74100.0,kg/TJ,83343284.388,kg +3d8d8068-4fd4-3c1e-8ea0-83107873c9e8,SESCO,II.1.1,La Pampa,AR-L,annual,2023,gas oil combustion consumption by to the public,1124.7406799999999,TJ,CH4,3.9,kg/TJ,4386.488651999999,kg +3d8d8068-4fd4-3c1e-8ea0-83107873c9e8,SESCO,II.1.1,La Pampa,AR-L,annual,2023,gas oil combustion consumption by to the public,1124.7406799999999,TJ,N2O,3.9,kg/TJ,4386.488651999999,kg +c76d5825-3fb6-32eb-8094-9c23a1d869bb,SESCO,II.1.1,La Rioja,AR-F,annual,2023,gas oil combustion consumption by to the public,243.81,TJ,CO2,74100.0,kg/TJ,18066321.0,kg +f9d86c95-8738-37f7-a0c4-38e5fcdbca84,SESCO,II.1.1,La Rioja,AR-F,annual,2023,gas oil combustion consumption by to the public,243.81,TJ,CH4,3.9,kg/TJ,950.859,kg +f9d86c95-8738-37f7-a0c4-38e5fcdbca84,SESCO,II.1.1,La Rioja,AR-F,annual,2023,gas oil combustion consumption by to the public,243.81,TJ,N2O,3.9,kg/TJ,950.859,kg +bccb4f8e-b88a-3e58-ae87-2e717bb600f5,SESCO,II.1.1,Mendoza,AR-M,annual,2023,gas oil combustion consumption by to the public,1705.51416,TJ,CO2,74100.0,kg/TJ,126378599.256,kg +71a2e40b-d2cf-3135-897e-4ef744bcfbd3,SESCO,II.1.1,Mendoza,AR-M,annual,2023,gas oil combustion consumption by to the public,1705.51416,TJ,CH4,3.9,kg/TJ,6651.5052239999995,kg +71a2e40b-d2cf-3135-897e-4ef744bcfbd3,SESCO,II.1.1,Mendoza,AR-M,annual,2023,gas oil combustion consumption by to the public,1705.51416,TJ,N2O,3.9,kg/TJ,6651.5052239999995,kg +fb13fb47-3d7e-3d69-8088-e1a74f935c3e,SESCO,II.1.1,Misiones,AR-N,annual,2023,gas oil combustion consumption by to the public,1628.32572,TJ,CO2,74100.0,kg/TJ,120658935.852,kg +9a3c5199-ddb4-38f1-a6f6-5a92c05a3e1a,SESCO,II.1.1,Misiones,AR-N,annual,2023,gas oil combustion consumption by to the public,1628.32572,TJ,CH4,3.9,kg/TJ,6350.470308,kg +9a3c5199-ddb4-38f1-a6f6-5a92c05a3e1a,SESCO,II.1.1,Misiones,AR-N,annual,2023,gas oil combustion consumption by to the public,1628.32572,TJ,N2O,3.9,kg/TJ,6350.470308,kg +29b4bd09-e7ca-3a10-89bb-fee4660a5d5e,SESCO,II.1.1,Neuquén,AR-Q,annual,2023,gas oil combustion consumption by to the public,850.51764,TJ,CO2,74100.0,kg/TJ,63023357.124000005,kg +35dd34d7-f8ef-30aa-b5a8-370d2b9d16b6,SESCO,II.1.1,Neuquén,AR-Q,annual,2023,gas oil combustion consumption by to the public,850.51764,TJ,CH4,3.9,kg/TJ,3317.018796,kg +35dd34d7-f8ef-30aa-b5a8-370d2b9d16b6,SESCO,II.1.1,Neuquén,AR-Q,annual,2023,gas oil combustion consumption by to the public,850.51764,TJ,N2O,3.9,kg/TJ,3317.018796,kg +6cc9142a-bdce-3793-bb56-1cd5f1f40193,SESCO,II.1.1,Rio Negro,AR-R,annual,2023,gas oil combustion consumption by to the public,342.30924,TJ,CO2,74100.0,kg/TJ,25365114.684,kg +dfcb189e-936e-38b3-8f29-0f82e5be459d,SESCO,II.1.1,Rio Negro,AR-R,annual,2023,gas oil combustion consumption by to the public,342.30924,TJ,CH4,3.9,kg/TJ,1335.006036,kg +dfcb189e-936e-38b3-8f29-0f82e5be459d,SESCO,II.1.1,Rio Negro,AR-R,annual,2023,gas oil combustion consumption by to the public,342.30924,TJ,N2O,3.9,kg/TJ,1335.006036,kg +6ee3b116-1fa2-3177-beef-c126c3dcb8fb,SESCO,II.1.1,Salta,AR-A,annual,2023,gas oil combustion consumption by to the public,186.05411999999998,TJ,CO2,74100.0,kg/TJ,13786610.292,kg +4e0cbb2c-f8d7-362c-84d4-77e0c7ee4c0c,SESCO,II.1.1,Salta,AR-A,annual,2023,gas oil combustion consumption by to the public,186.05411999999998,TJ,CH4,3.9,kg/TJ,725.6110679999999,kg +4e0cbb2c-f8d7-362c-84d4-77e0c7ee4c0c,SESCO,II.1.1,Salta,AR-A,annual,2023,gas oil combustion consumption by to the public,186.05411999999998,TJ,N2O,3.9,kg/TJ,725.6110679999999,kg +603adcc3-6070-33e7-a993-511409957af2,SESCO,II.1.1,San Juan,AR-J,annual,2023,gas oil combustion consumption by to the public,539.37996,TJ,CO2,74100.0,kg/TJ,39968055.036,kg +a50b0484-6a83-3aea-9c1c-2c9662e3f796,SESCO,II.1.1,San Juan,AR-J,annual,2023,gas oil combustion consumption by to the public,539.37996,TJ,CH4,3.9,kg/TJ,2103.581844,kg +a50b0484-6a83-3aea-9c1c-2c9662e3f796,SESCO,II.1.1,San Juan,AR-J,annual,2023,gas oil combustion consumption by to the public,539.37996,TJ,N2O,3.9,kg/TJ,2103.581844,kg +e10e2ea2-8efd-3471-aa5d-92fc7fbfe207,SESCO,II.1.1,San Luis,AR-D,annual,2023,gas oil combustion consumption by to the public,582.47112,TJ,CO2,74100.0,kg/TJ,43161109.992000006,kg +e042a091-bb55-3b76-9405-fbcdc6e36f29,SESCO,II.1.1,San Luis,AR-D,annual,2023,gas oil combustion consumption by to the public,582.47112,TJ,CH4,3.9,kg/TJ,2271.637368,kg +e042a091-bb55-3b76-9405-fbcdc6e36f29,SESCO,II.1.1,San Luis,AR-D,annual,2023,gas oil combustion consumption by to the public,582.47112,TJ,N2O,3.9,kg/TJ,2271.637368,kg +4865779b-f0cd-36ee-af47-d509af9f2cd5,SESCO,II.1.1,Santa Fe,AR-S,annual,2023,gas oil combustion consumption by to the public,5414.06292,TJ,CO2,74100.0,kg/TJ,401182062.37200004,kg +dc37d883-93fb-31d3-a4da-3436bcb747de,SESCO,II.1.1,Santa Fe,AR-S,annual,2023,gas oil combustion consumption by to the public,5414.06292,TJ,CH4,3.9,kg/TJ,21114.845388,kg +dc37d883-93fb-31d3-a4da-3436bcb747de,SESCO,II.1.1,Santa Fe,AR-S,annual,2023,gas oil combustion consumption by to the public,5414.06292,TJ,N2O,3.9,kg/TJ,21114.845388,kg +2eec7cfb-615c-34ed-9fd7-d1dab7c5e260,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2023,gas oil combustion consumption by to the public,374.09484,TJ,CO2,74100.0,kg/TJ,27720427.643999998,kg +a72c7da8-164f-32e6-8c90-d710531f082f,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2023,gas oil combustion consumption by to the public,374.09484,TJ,CH4,3.9,kg/TJ,1458.9698759999999,kg +a72c7da8-164f-32e6-8c90-d710531f082f,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2023,gas oil combustion consumption by to the public,374.09484,TJ,N2O,3.9,kg/TJ,1458.9698759999999,kg +d9613d07-408a-316d-92a9-8e3131abdd70,SESCO,II.1.1,Tucuman,AR-T,annual,2023,gas oil combustion consumption by to the public,1194.6689999999999,TJ,CO2,74100.0,kg/TJ,88524972.89999999,kg +5139ff50-0b43-34d1-beea-115d351b0913,SESCO,II.1.1,Tucuman,AR-T,annual,2023,gas oil combustion consumption by to the public,1194.6689999999999,TJ,CH4,3.9,kg/TJ,4659.209099999999,kg +5139ff50-0b43-34d1-beea-115d351b0913,SESCO,II.1.1,Tucuman,AR-T,annual,2023,gas oil combustion consumption by to the public,1194.6689999999999,TJ,N2O,3.9,kg/TJ,4659.209099999999,kg +2ab1f7f2-9a42-3067-a576-4dd1ace9150e,SESCO,II.1.1,Buenos Aires,AR-B,annual,2023,gas oil combustion consumption by to the public,9616.98612,TJ,CO2,74100.0,kg/TJ,712618671.492,kg +4a1e5a86-8136-3f4c-bffb-01f5b07fc65d,SESCO,II.1.1,Buenos Aires,AR-B,annual,2023,gas oil combustion consumption by to the public,9616.98612,TJ,CH4,3.9,kg/TJ,37506.245868,kg +4a1e5a86-8136-3f4c-bffb-01f5b07fc65d,SESCO,II.1.1,Buenos Aires,AR-B,annual,2023,gas oil combustion consumption by to the public,9616.98612,TJ,N2O,3.9,kg/TJ,37506.245868,kg +e027ee91-67bb-3b5b-b45b-6f7581e49ffd,SESCO,II.1.1,Capital Federal,AR-C,annual,2023,gas oil combustion consumption by to the public,1912.3734,TJ,CO2,74100.0,kg/TJ,141706868.94,kg +0a8640bf-3dce-33dc-8d57-b095690c8fb6,SESCO,II.1.1,Capital Federal,AR-C,annual,2023,gas oil combustion consumption by to the public,1912.3734,TJ,CH4,3.9,kg/TJ,7458.256259999999,kg +0a8640bf-3dce-33dc-8d57-b095690c8fb6,SESCO,II.1.1,Capital Federal,AR-C,annual,2023,gas oil combustion consumption by to the public,1912.3734,TJ,N2O,3.9,kg/TJ,7458.256259999999,kg +ea753d9b-75d5-39f6-9195-f1c6c0bdbb53,SESCO,II.1.1,Catamarca,AR-K,annual,2023,gas oil combustion consumption by to the public,41.140679999999996,TJ,CO2,74100.0,kg/TJ,3048524.388,kg +b5720057-49e9-391c-acb3-4d1563a62743,SESCO,II.1.1,Catamarca,AR-K,annual,2023,gas oil combustion consumption by to the public,41.140679999999996,TJ,CH4,3.9,kg/TJ,160.44865199999998,kg +b5720057-49e9-391c-acb3-4d1563a62743,SESCO,II.1.1,Catamarca,AR-K,annual,2023,gas oil combustion consumption by to the public,41.140679999999996,TJ,N2O,3.9,kg/TJ,160.44865199999998,kg +d36386f1-5b87-39a6-aa0c-a526ce5ccac4,SESCO,II.1.1,Chaco,AR-H,annual,2023,gas oil combustion consumption by to the public,540.4274399999999,TJ,CO2,74100.0,kg/TJ,40045673.304,kg +5d5fd43a-c627-35de-9efc-1c27bc742651,SESCO,II.1.1,Chaco,AR-H,annual,2023,gas oil combustion consumption by to the public,540.4274399999999,TJ,CH4,3.9,kg/TJ,2107.667016,kg +5d5fd43a-c627-35de-9efc-1c27bc742651,SESCO,II.1.1,Chaco,AR-H,annual,2023,gas oil combustion consumption by to the public,540.4274399999999,TJ,N2O,3.9,kg/TJ,2107.667016,kg +27f9bd41-abe7-3871-ad0b-d2c7605fb9cb,SESCO,II.1.1,Corrientes,AR-W,annual,2023,gas oil combustion consumption by to the public,665.22204,TJ,CO2,74100.0,kg/TJ,49292953.164,kg +f45f29b1-e28c-3cce-a557-77e050875f68,SESCO,II.1.1,Corrientes,AR-W,annual,2023,gas oil combustion consumption by to the public,665.22204,TJ,CH4,3.9,kg/TJ,2594.365956,kg +f45f29b1-e28c-3cce-a557-77e050875f68,SESCO,II.1.1,Corrientes,AR-W,annual,2023,gas oil combustion consumption by to the public,665.22204,TJ,N2O,3.9,kg/TJ,2594.365956,kg +75117ca7-82ba-392d-bb0d-56ae5234795e,SESCO,II.1.1,Córdoba,AR-X,annual,2023,gas oil combustion consumption by to the public,2822.70576,TJ,CO2,74100.0,kg/TJ,209162496.81599998,kg +20b766b6-8f10-3fd3-ba0f-3efc4a88818e,SESCO,II.1.1,Córdoba,AR-X,annual,2023,gas oil combustion consumption by to the public,2822.70576,TJ,CH4,3.9,kg/TJ,11008.552463999999,kg +20b766b6-8f10-3fd3-ba0f-3efc4a88818e,SESCO,II.1.1,Córdoba,AR-X,annual,2023,gas oil combustion consumption by to the public,2822.70576,TJ,N2O,3.9,kg/TJ,11008.552463999999,kg +2a92d574-545a-3ebd-b6bf-5138b3bee66d,SESCO,II.1.1,Entre Rios,AR-E,annual,2023,gas oil combustion consumption by to the public,875.07924,TJ,CO2,74100.0,kg/TJ,64843371.684,kg +fbc6e5e3-ee99-3aa9-8fd7-1ad17c70802e,SESCO,II.1.1,Entre Rios,AR-E,annual,2023,gas oil combustion consumption by to the public,875.07924,TJ,CH4,3.9,kg/TJ,3412.809036,kg +fbc6e5e3-ee99-3aa9-8fd7-1ad17c70802e,SESCO,II.1.1,Entre Rios,AR-E,annual,2023,gas oil combustion consumption by to the public,875.07924,TJ,N2O,3.9,kg/TJ,3412.809036,kg +c812fc4f-dfe0-3fcc-bced-3f930218c025,SESCO,II.1.1,Formosa,AR-P,annual,2023,gas oil combustion consumption by to the public,222.21024,TJ,CO2,74100.0,kg/TJ,16465778.784,kg +508625ca-5578-3e7c-bdfc-4775483f8b0c,SESCO,II.1.1,Formosa,AR-P,annual,2023,gas oil combustion consumption by to the public,222.21024,TJ,CH4,3.9,kg/TJ,866.6199359999999,kg +508625ca-5578-3e7c-bdfc-4775483f8b0c,SESCO,II.1.1,Formosa,AR-P,annual,2023,gas oil combustion consumption by to the public,222.21024,TJ,N2O,3.9,kg/TJ,866.6199359999999,kg +3d3cf8c0-cc8d-3193-919f-df972e5a1492,SESCO,II.1.1,Jujuy,AR-Y,annual,2023,gas oil combustion consumption by to the public,239.15052,TJ,CO2,74100.0,kg/TJ,17721053.532,kg +c9792f99-2752-36ed-aa14-6e41a0dddc5f,SESCO,II.1.1,Jujuy,AR-Y,annual,2023,gas oil combustion consumption by to the public,239.15052,TJ,CH4,3.9,kg/TJ,932.6870279999999,kg +c9792f99-2752-36ed-aa14-6e41a0dddc5f,SESCO,II.1.1,Jujuy,AR-Y,annual,2023,gas oil combustion consumption by to the public,239.15052,TJ,N2O,3.9,kg/TJ,932.6870279999999,kg +4a2fbbe1-d93c-355f-8eb6-8fe8926d3b93,SESCO,II.1.1,La Pampa,AR-L,annual,2023,gas oil combustion consumption by to the public,329.88396,TJ,CO2,74100.0,kg/TJ,24444401.436,kg +f45294c7-62a3-3b32-844d-cd00f5e64934,SESCO,II.1.1,La Pampa,AR-L,annual,2023,gas oil combustion consumption by to the public,329.88396,TJ,CH4,3.9,kg/TJ,1286.547444,kg +f45294c7-62a3-3b32-844d-cd00f5e64934,SESCO,II.1.1,La Pampa,AR-L,annual,2023,gas oil combustion consumption by to the public,329.88396,TJ,N2O,3.9,kg/TJ,1286.547444,kg +203f16f2-f9c8-30d4-b26f-a0a053f2ae96,SESCO,II.1.1,La Rioja,AR-F,annual,2023,gas oil combustion consumption by to the public,176.2656,TJ,CO2,74100.0,kg/TJ,13061280.96,kg +2eeeb60d-7ad2-3b14-8f4b-dfab1002dba7,SESCO,II.1.1,La Rioja,AR-F,annual,2023,gas oil combustion consumption by to the public,176.2656,TJ,CH4,3.9,kg/TJ,687.43584,kg +2eeeb60d-7ad2-3b14-8f4b-dfab1002dba7,SESCO,II.1.1,La Rioja,AR-F,annual,2023,gas oil combustion consumption by to the public,176.2656,TJ,N2O,3.9,kg/TJ,687.43584,kg +505fd398-62d2-35f4-a2ab-5560a577c353,SESCO,II.1.1,Mendoza,AR-M,annual,2023,gas oil combustion consumption by to the public,1202.94048,TJ,CO2,74100.0,kg/TJ,89137889.568,kg +c2cddcff-ad00-3946-bd5a-5d4732528480,SESCO,II.1.1,Mendoza,AR-M,annual,2023,gas oil combustion consumption by to the public,1202.94048,TJ,CH4,3.9,kg/TJ,4691.467872,kg +c2cddcff-ad00-3946-bd5a-5d4732528480,SESCO,II.1.1,Mendoza,AR-M,annual,2023,gas oil combustion consumption by to the public,1202.94048,TJ,N2O,3.9,kg/TJ,4691.467872,kg +e4c2a99b-2c31-3082-945a-811c17c0031b,SESCO,II.1.1,Misiones,AR-N,annual,2023,gas oil combustion consumption by to the public,604.25148,TJ,CO2,74100.0,kg/TJ,44775034.668,kg +f84bb41a-b734-3d25-aff5-aae7db7eb1ab,SESCO,II.1.1,Misiones,AR-N,annual,2023,gas oil combustion consumption by to the public,604.25148,TJ,CH4,3.9,kg/TJ,2356.580772,kg +f84bb41a-b734-3d25-aff5-aae7db7eb1ab,SESCO,II.1.1,Misiones,AR-N,annual,2023,gas oil combustion consumption by to the public,604.25148,TJ,N2O,3.9,kg/TJ,2356.580772,kg +b1202610-8b79-33b8-b43e-917094803917,SESCO,II.1.1,Neuquén,AR-Q,annual,2023,gas oil combustion consumption by to the public,906.53976,TJ,CO2,74100.0,kg/TJ,67174596.216,kg +d0ada761-ba45-3064-af71-5eb8f48fb118,SESCO,II.1.1,Neuquén,AR-Q,annual,2023,gas oil combustion consumption by to the public,906.53976,TJ,CH4,3.9,kg/TJ,3535.505064,kg +d0ada761-ba45-3064-af71-5eb8f48fb118,SESCO,II.1.1,Neuquén,AR-Q,annual,2023,gas oil combustion consumption by to the public,906.53976,TJ,N2O,3.9,kg/TJ,3535.505064,kg +26d49178-f6a7-347b-b31b-03be0a955bce,SESCO,II.1.1,Rio Negro,AR-R,annual,2023,gas oil combustion consumption by to the public,252.08148,TJ,CO2,74100.0,kg/TJ,18679237.668,kg +f4f05e4e-89a3-3997-9569-05f21e7f7fb0,SESCO,II.1.1,Rio Negro,AR-R,annual,2023,gas oil combustion consumption by to the public,252.08148,TJ,CH4,3.9,kg/TJ,983.117772,kg +f4f05e4e-89a3-3997-9569-05f21e7f7fb0,SESCO,II.1.1,Rio Negro,AR-R,annual,2023,gas oil combustion consumption by to the public,252.08148,TJ,N2O,3.9,kg/TJ,983.117772,kg +10c3d36c-cf32-3aa5-9530-acc7bad0020f,SESCO,II.1.1,Salta,AR-A,annual,2023,gas oil combustion consumption by to the public,236.91108,TJ,CO2,74100.0,kg/TJ,17555111.028,kg +be6e24b3-57d3-3e50-98c1-baa706dd8b6b,SESCO,II.1.1,Salta,AR-A,annual,2023,gas oil combustion consumption by to the public,236.91108,TJ,CH4,3.9,kg/TJ,923.953212,kg +be6e24b3-57d3-3e50-98c1-baa706dd8b6b,SESCO,II.1.1,Salta,AR-A,annual,2023,gas oil combustion consumption by to the public,236.91108,TJ,N2O,3.9,kg/TJ,923.953212,kg +67aaeb89-ab6b-3ef0-9eb9-62ddf3481096,SESCO,II.1.1,San Juan,AR-J,annual,2023,gas oil combustion consumption by to the public,287.08176,TJ,CO2,74100.0,kg/TJ,21272758.415999997,kg +fe116fa1-74bb-3fe6-ba43-36b8ccec9387,SESCO,II.1.1,San Juan,AR-J,annual,2023,gas oil combustion consumption by to the public,287.08176,TJ,CH4,3.9,kg/TJ,1119.6188639999998,kg +fe116fa1-74bb-3fe6-ba43-36b8ccec9387,SESCO,II.1.1,San Juan,AR-J,annual,2023,gas oil combustion consumption by to the public,287.08176,TJ,N2O,3.9,kg/TJ,1119.6188639999998,kg +4b55eda9-ab3f-306e-b761-bbf6436f46a1,SESCO,II.1.1,San Luis,AR-D,annual,2023,gas oil combustion consumption by to the public,230.73456,TJ,CO2,74100.0,kg/TJ,17097430.895999998,kg +76791ad0-2d17-3c81-9676-6999bd56f8e5,SESCO,II.1.1,San Luis,AR-D,annual,2023,gas oil combustion consumption by to the public,230.73456,TJ,CH4,3.9,kg/TJ,899.864784,kg +76791ad0-2d17-3c81-9676-6999bd56f8e5,SESCO,II.1.1,San Luis,AR-D,annual,2023,gas oil combustion consumption by to the public,230.73456,TJ,N2O,3.9,kg/TJ,899.864784,kg +71ec7906-b3ea-3e37-a059-290bb85e3c46,SESCO,II.1.1,Santa Fe,AR-S,annual,2023,gas oil combustion consumption by to the public,2207.1126,TJ,CO2,74100.0,kg/TJ,163547043.66,kg +1f712530-0b7b-3137-a0e0-228cfe8efc60,SESCO,II.1.1,Santa Fe,AR-S,annual,2023,gas oil combustion consumption by to the public,2207.1126,TJ,CH4,3.9,kg/TJ,8607.73914,kg +1f712530-0b7b-3137-a0e0-228cfe8efc60,SESCO,II.1.1,Santa Fe,AR-S,annual,2023,gas oil combustion consumption by to the public,2207.1126,TJ,N2O,3.9,kg/TJ,8607.73914,kg +f9fc0d6a-0b28-3c3f-935f-fdbcee337451,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2023,gas oil combustion consumption by to the public,304.96116,TJ,CO2,74100.0,kg/TJ,22597621.956,kg +f8ba29dc-42d5-32d5-b1b3-520b498c57c3,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2023,gas oil combustion consumption by to the public,304.96116,TJ,CH4,3.9,kg/TJ,1189.348524,kg +f8ba29dc-42d5-32d5-b1b3-520b498c57c3,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2023,gas oil combustion consumption by to the public,304.96116,TJ,N2O,3.9,kg/TJ,1189.348524,kg +7c0c6e74-ab13-32ba-b6e4-60c4a644bdb0,SESCO,II.1.1,Tucuman,AR-T,annual,2023,gas oil combustion consumption by to the public,536.05692,TJ,CO2,74100.0,kg/TJ,39721817.772,kg +65e37b47-3eb8-31ef-9918-421b5e7c7044,SESCO,II.1.1,Tucuman,AR-T,annual,2023,gas oil combustion consumption by to the public,536.05692,TJ,CH4,3.9,kg/TJ,2090.621988,kg +65e37b47-3eb8-31ef-9918-421b5e7c7044,SESCO,II.1.1,Tucuman,AR-T,annual,2023,gas oil combustion consumption by to the public,536.05692,TJ,N2O,3.9,kg/TJ,2090.621988,kg +c37e0b43-e48b-3e32-9bd2-bf32d3a1f4d5,SESCO,II.1.1,Entre Rios,AR-E,annual,2023,jet kerosene combustion consumption by to the public,1.0379489999999998,TJ,CO2,71500.0,kg/TJ,74213.35349999998,kg +321721ef-42b1-303c-a944-720bd1d97ee2,SESCO,II.1.1,Entre Rios,AR-E,annual,2023,jet kerosene combustion consumption by to the public,1.0379489999999998,TJ,CH4,0.5,kg/TJ,0.5189744999999999,kg +3b3b0677-a6ac-31e1-a0a4-117fec1a1415,SESCO,II.1.1,Entre Rios,AR-E,annual,2023,jet kerosene combustion consumption by to the public,1.0379489999999998,TJ,N2O,2.0,kg/TJ,2.0758979999999996,kg +1e34c046-8dbd-3ad2-b344-7c9c1dc3947a,SESCO,I.3.1,Buenos Aires,AR-B,annual,2023,gasoline combustion consumption by petrochemical industries,15.504999999999999,TJ,CO2,69300.0,kg/TJ,1074496.5,kg +0ffbe952-ad06-3ea5-bad7-aa99ca8cde71,SESCO,I.3.1,Buenos Aires,AR-B,annual,2023,gasoline combustion consumption by petrochemical industries,15.504999999999999,TJ,CH4,33.0,kg/TJ,511.66499999999996,kg +ebaae276-412c-3a3b-84a6-841c5a6fd3f4,SESCO,I.3.1,Buenos Aires,AR-B,annual,2023,gasoline combustion consumption by petrochemical industries,15.504999999999999,TJ,N2O,3.2,kg/TJ,49.616,kg +d1ec0dbd-d30d-3221-bba6-25eea9ff6caf,SESCO,I.3.1,Capital Federal,AR-C,annual,2023,gasoline combustion consumption by petrochemical industries,11.7838,TJ,CO2,69300.0,kg/TJ,816617.34,kg +6258d49e-8f8f-34a1-9128-4a426bcea6a5,SESCO,I.3.1,Capital Federal,AR-C,annual,2023,gasoline combustion consumption by petrochemical industries,11.7838,TJ,CH4,33.0,kg/TJ,388.86539999999997,kg +77b7c2ff-c4c0-3b4c-822c-f61e78931800,SESCO,I.3.1,Capital Federal,AR-C,annual,2023,gasoline combustion consumption by petrochemical industries,11.7838,TJ,N2O,3.2,kg/TJ,37.70816,kg +69c42cde-bdcc-3f08-a7ba-3c9d2e2f73c5,SESCO,I.3.1,Córdoba,AR-X,annual,2023,gasoline combustion consumption by petrochemical industries,21.7956,TJ,CO2,69300.0,kg/TJ,1510435.08,kg +5615bc40-408a-3047-9e38-f99b1b936404,SESCO,I.3.1,Córdoba,AR-X,annual,2023,gasoline combustion consumption by petrochemical industries,21.7956,TJ,CH4,33.0,kg/TJ,719.2548,kg +7bcbe9fb-980e-3597-bc36-8e284823fcbe,SESCO,I.3.1,Córdoba,AR-X,annual,2023,gasoline combustion consumption by petrochemical industries,21.7956,TJ,N2O,3.2,kg/TJ,69.74592,kg +9c2ef8b4-db87-3a59-abbd-e0539c9296df,SESCO,I.3.1,Entre Rios,AR-E,annual,2023,gasoline combustion consumption by petrochemical industries,14.043099999999999,TJ,CO2,69300.0,kg/TJ,973186.83,kg +c47bc2b4-0f81-3860-bbce-f009bfd95000,SESCO,I.3.1,Entre Rios,AR-E,annual,2023,gasoline combustion consumption by petrochemical industries,14.043099999999999,TJ,CH4,33.0,kg/TJ,463.42229999999995,kg +86f3e364-44db-3e2f-b054-dbf95b8d8312,SESCO,I.3.1,Entre Rios,AR-E,annual,2023,gasoline combustion consumption by petrochemical industries,14.043099999999999,TJ,N2O,3.2,kg/TJ,44.93792,kg +8d4a8af3-b305-332c-9311-75af556f8234,SESCO,I.3.1,Misiones,AR-N,annual,2023,gasoline combustion consumption by petrochemical industries,50.059,TJ,CO2,69300.0,kg/TJ,3469088.6999999997,kg +3307f48b-a985-3af9-97f7-a7a915339fa9,SESCO,I.3.1,Misiones,AR-N,annual,2023,gasoline combustion consumption by petrochemical industries,50.059,TJ,CH4,33.0,kg/TJ,1651.947,kg +21b6bf15-2464-37aa-b22b-44be4b60d455,SESCO,I.3.1,Misiones,AR-N,annual,2023,gasoline combustion consumption by petrochemical industries,50.059,TJ,N2O,3.2,kg/TJ,160.18880000000001,kg +172dd75b-7117-3fbf-af5d-51895d063c28,SESCO,I.3.1,Neuquén,AR-Q,annual,2023,gasoline combustion consumption by petrochemical industries,7.1323,TJ,CO2,69300.0,kg/TJ,494268.39,kg +54c25f5c-fb23-3041-8dc4-31cfe9fa4b38,SESCO,I.3.1,Neuquén,AR-Q,annual,2023,gasoline combustion consumption by petrochemical industries,7.1323,TJ,CH4,33.0,kg/TJ,235.36589999999998,kg +07b07c5b-ea70-31d6-9fa1-d0f616fa8bfe,SESCO,I.3.1,Neuquén,AR-Q,annual,2023,gasoline combustion consumption by petrochemical industries,7.1323,TJ,N2O,3.2,kg/TJ,22.82336,kg +a376646d-e1fa-3314-be70-b434c496d8c2,SESCO,I.3.1,Santa Fe,AR-S,annual,2023,gasoline combustion consumption by petrochemical industries,30.8771,TJ,CO2,69300.0,kg/TJ,2139783.03,kg +6371cfd6-701e-3f6b-aafc-f3284c02f7e4,SESCO,I.3.1,Santa Fe,AR-S,annual,2023,gasoline combustion consumption by petrochemical industries,30.8771,TJ,CH4,33.0,kg/TJ,1018.9443,kg +0e421c55-b075-3b05-8a98-25ae0cf58682,SESCO,I.3.1,Santa Fe,AR-S,annual,2023,gasoline combustion consumption by petrochemical industries,30.8771,TJ,N2O,3.2,kg/TJ,98.80672,kg +aa866583-2325-3efa-829f-ae1a7038ae5f,SESCO,I.3.1,Buenos Aires,AR-B,annual,2023,gas oil combustion consumption by petrochemical industries,82.46196,TJ,CO2,74100.0,kg/TJ,6110431.2360000005,kg +3ae7a727-7722-396a-b983-7740bc16783e,SESCO,I.3.1,Buenos Aires,AR-B,annual,2023,gas oil combustion consumption by petrochemical industries,82.46196,TJ,CH4,3.9,kg/TJ,321.601644,kg +3ae7a727-7722-396a-b983-7740bc16783e,SESCO,I.3.1,Buenos Aires,AR-B,annual,2023,gas oil combustion consumption by petrochemical industries,82.46196,TJ,N2O,3.9,kg/TJ,321.601644,kg +b0a4daae-79f4-3410-822a-2e8e0be45772,SESCO,I.3.1,Córdoba,AR-X,annual,2023,gas oil combustion consumption by petrochemical industries,8.56044,TJ,CO2,74100.0,kg/TJ,634328.6039999999,kg +a8043948-3f4c-3450-a5f8-33d0a3528a91,SESCO,I.3.1,Córdoba,AR-X,annual,2023,gas oil combustion consumption by petrochemical industries,8.56044,TJ,CH4,3.9,kg/TJ,33.385715999999995,kg +a8043948-3f4c-3450-a5f8-33d0a3528a91,SESCO,I.3.1,Córdoba,AR-X,annual,2023,gas oil combustion consumption by petrochemical industries,8.56044,TJ,N2O,3.9,kg/TJ,33.385715999999995,kg +1789b9ed-ba28-3442-ae90-86914f72e73e,SESCO,I.3.1,Entre Rios,AR-E,annual,2023,gas oil combustion consumption by petrochemical industries,3.90096,TJ,CO2,74100.0,kg/TJ,289061.136,kg +ed9ebd9d-47de-3ef2-bf09-5e65c51945b9,SESCO,I.3.1,Entre Rios,AR-E,annual,2023,gas oil combustion consumption by petrochemical industries,3.90096,TJ,CH4,3.9,kg/TJ,15.213744,kg +ed9ebd9d-47de-3ef2-bf09-5e65c51945b9,SESCO,I.3.1,Entre Rios,AR-E,annual,2023,gas oil combustion consumption by petrochemical industries,3.90096,TJ,N2O,3.9,kg/TJ,15.213744,kg +ba23fda5-4bee-3373-b0ea-234c20ffee72,SESCO,I.3.1,Mendoza,AR-M,annual,2023,gas oil combustion consumption by petrochemical industries,5.09292,TJ,CO2,74100.0,kg/TJ,377385.37200000003,kg +42d1d119-f689-3b41-b22d-86ee57a83536,SESCO,I.3.1,Mendoza,AR-M,annual,2023,gas oil combustion consumption by petrochemical industries,5.09292,TJ,CH4,3.9,kg/TJ,19.862388,kg +42d1d119-f689-3b41-b22d-86ee57a83536,SESCO,I.3.1,Mendoza,AR-M,annual,2023,gas oil combustion consumption by petrochemical industries,5.09292,TJ,N2O,3.9,kg/TJ,19.862388,kg +0f187344-64fe-3a0e-9bae-3230a2f4e57d,SESCO,I.3.1,Misiones,AR-N,annual,2023,gas oil combustion consumption by petrochemical industries,7.5851999999999995,TJ,CO2,74100.0,kg/TJ,562063.32,kg +e00d4b10-77be-3449-b832-09b20520c524,SESCO,I.3.1,Misiones,AR-N,annual,2023,gas oil combustion consumption by petrochemical industries,7.5851999999999995,TJ,CH4,3.9,kg/TJ,29.582279999999997,kg +e00d4b10-77be-3449-b832-09b20520c524,SESCO,I.3.1,Misiones,AR-N,annual,2023,gas oil combustion consumption by petrochemical industries,7.5851999999999995,TJ,N2O,3.9,kg/TJ,29.582279999999997,kg +07a2b9e8-d847-3c6e-be32-f3910da5b65c,SESCO,I.3.1,Neuquén,AR-Q,annual,2023,gas oil combustion consumption by petrochemical industries,718.67964,TJ,CO2,74100.0,kg/TJ,53254161.32399999,kg +df8de260-3f3d-31ac-9e4a-7b69d89861ff,SESCO,I.3.1,Neuquén,AR-Q,annual,2023,gas oil combustion consumption by petrochemical industries,718.67964,TJ,CH4,3.9,kg/TJ,2802.8505959999998,kg +df8de260-3f3d-31ac-9e4a-7b69d89861ff,SESCO,I.3.1,Neuquén,AR-Q,annual,2023,gas oil combustion consumption by petrochemical industries,718.67964,TJ,N2O,3.9,kg/TJ,2802.8505959999998,kg +047b8428-b4b2-3eb0-b890-468fc8a7337d,SESCO,I.3.1,San Juan,AR-J,annual,2023,gas oil combustion consumption by petrochemical industries,7.87416,TJ,CO2,74100.0,kg/TJ,583475.2559999999,kg +fc83ac63-905f-30fe-8bd4-06b9ce05ddfb,SESCO,I.3.1,San Juan,AR-J,annual,2023,gas oil combustion consumption by petrochemical industries,7.87416,TJ,CH4,3.9,kg/TJ,30.709224,kg +fc83ac63-905f-30fe-8bd4-06b9ce05ddfb,SESCO,I.3.1,San Juan,AR-J,annual,2023,gas oil combustion consumption by petrochemical industries,7.87416,TJ,N2O,3.9,kg/TJ,30.709224,kg +bc4dfb81-4ac8-3192-bfa7-d4bf771df5a1,SESCO,I.3.1,Santa Fe,AR-S,annual,2023,gas oil combustion consumption by petrochemical industries,5.30964,TJ,CO2,74100.0,kg/TJ,393444.324,kg +74654c2a-b24a-3e2d-b360-a11c705ec009,SESCO,I.3.1,Santa Fe,AR-S,annual,2023,gas oil combustion consumption by petrochemical industries,5.30964,TJ,CH4,3.9,kg/TJ,20.707596,kg +74654c2a-b24a-3e2d-b360-a11c705ec009,SESCO,I.3.1,Santa Fe,AR-S,annual,2023,gas oil combustion consumption by petrochemical industries,5.30964,TJ,N2O,3.9,kg/TJ,20.707596,kg +3600e742-062b-3c2d-a996-b0ef7de5f169,SESCO,I.3.1,Buenos Aires,AR-B,annual,2023,gas oil combustion consumption by petrochemical industries,10.14972,TJ,CO2,74100.0,kg/TJ,752094.252,kg +2d1b4837-3d09-361b-9e45-67f319479ac2,SESCO,I.3.1,Buenos Aires,AR-B,annual,2023,gas oil combustion consumption by petrochemical industries,10.14972,TJ,CH4,3.9,kg/TJ,39.583908,kg +2d1b4837-3d09-361b-9e45-67f319479ac2,SESCO,I.3.1,Buenos Aires,AR-B,annual,2023,gas oil combustion consumption by petrochemical industries,10.14972,TJ,N2O,3.9,kg/TJ,39.583908,kg +402639a4-2404-31dc-bb9c-fa3c4f13bfd4,SESCO,I.3.1,Córdoba,AR-X,annual,2023,gas oil combustion consumption by petrochemical industries,0.57792,TJ,CO2,74100.0,kg/TJ,42823.871999999996,kg +ed305d67-c71c-3801-925f-9a14b1f0d47a,SESCO,I.3.1,Córdoba,AR-X,annual,2023,gas oil combustion consumption by petrochemical industries,0.57792,TJ,CH4,3.9,kg/TJ,2.253888,kg +ed305d67-c71c-3801-925f-9a14b1f0d47a,SESCO,I.3.1,Córdoba,AR-X,annual,2023,gas oil combustion consumption by petrochemical industries,0.57792,TJ,N2O,3.9,kg/TJ,2.253888,kg +509235b0-76c6-3111-889a-97fe9f1a8dc1,SESCO,I.3.1,Neuquén,AR-Q,annual,2023,gas oil combustion consumption by petrochemical industries,945.69384,TJ,CO2,74100.0,kg/TJ,70075913.544,kg +e1e62f40-c32a-3bec-aa01-da8487844e4b,SESCO,I.3.1,Neuquén,AR-Q,annual,2023,gas oil combustion consumption by petrochemical industries,945.69384,TJ,CH4,3.9,kg/TJ,3688.205976,kg +e1e62f40-c32a-3bec-aa01-da8487844e4b,SESCO,I.3.1,Neuquén,AR-Q,annual,2023,gas oil combustion consumption by petrochemical industries,945.69384,TJ,N2O,3.9,kg/TJ,3688.205976,kg +d30315e1-d545-3eee-9c05-ff3cd7892cee,SESCO,I.3.1,Santa Fe,AR-S,annual,2023,jet kerosene combustion consumption by petrochemical industries,2.20171,TJ,CO2,71500.0,kg/TJ,157422.26499999998,kg +970c5786-e232-3431-873b-16f0d667f124,SESCO,I.3.1,Santa Fe,AR-S,annual,2023,jet kerosene combustion consumption by petrochemical industries,2.20171,TJ,CH4,0.5,kg/TJ,1.100855,kg +60974e7c-fc2c-3ac5-87d9-5dcc0a1b05bd,SESCO,I.3.1,Santa Fe,AR-S,annual,2023,jet kerosene combustion consumption by petrochemical industries,2.20171,TJ,N2O,2.0,kg/TJ,4.40342,kg +c7f0c29f-8f77-3f2f-87db-a72cdf2db876,SESCO,II.2.1,Buenos Aires,AR-B,annual,2023,gas oil combustion consumption by railway transport,140.07336,TJ,CO2,74100.0,kg/TJ,10379435.976,kg +5240fadc-fb11-32fe-8159-76844843790f,SESCO,II.2.1,Buenos Aires,AR-B,annual,2023,gas oil combustion consumption by railway transport,140.07336,TJ,CH4,3.9,kg/TJ,546.286104,kg +5240fadc-fb11-32fe-8159-76844843790f,SESCO,II.2.1,Buenos Aires,AR-B,annual,2023,gas oil combustion consumption by railway transport,140.07336,TJ,N2O,3.9,kg/TJ,546.286104,kg +62afde42-3063-301e-85f1-4065eb644840,SESCO,II.1.1,Buenos Aires,AR-B,annual,2023,gasoline combustion consumption by freight transport,1.1961,TJ,CO2,69300.0,kg/TJ,82889.73,kg +786ebfd4-c51f-35df-9c5b-e8a871a86484,SESCO,II.1.1,Buenos Aires,AR-B,annual,2023,gasoline combustion consumption by freight transport,1.1961,TJ,CH4,33.0,kg/TJ,39.4713,kg +19a14e4d-1496-3233-be72-a0d23f54fa09,SESCO,II.1.1,Buenos Aires,AR-B,annual,2023,gasoline combustion consumption by freight transport,1.1961,TJ,N2O,3.2,kg/TJ,3.82752,kg +64494855-31b7-3c00-b78b-d67576679464,SESCO,II.1.1,Buenos Aires,AR-B,annual,2023,gas oil combustion consumption by freight transport,3.90096,TJ,CO2,74100.0,kg/TJ,289061.136,kg +4af3ae56-b4f5-3760-bf34-c0b7003b66c9,SESCO,II.1.1,Buenos Aires,AR-B,annual,2023,gas oil combustion consumption by freight transport,3.90096,TJ,CH4,3.9,kg/TJ,15.213744,kg +4af3ae56-b4f5-3760-bf34-c0b7003b66c9,SESCO,II.1.1,Buenos Aires,AR-B,annual,2023,gas oil combustion consumption by freight transport,3.90096,TJ,N2O,3.9,kg/TJ,15.213744,kg +a50b8522-09af-336b-b040-4564e26b2fbf,SESCO,II.1.1,Entre Rios,AR-E,annual,2023,gas oil combustion consumption by freight transport,15.60384,TJ,CO2,74100.0,kg/TJ,1156244.544,kg +1bc1d193-d309-3290-923a-a7c914c87195,SESCO,II.1.1,Entre Rios,AR-E,annual,2023,gas oil combustion consumption by freight transport,15.60384,TJ,CH4,3.9,kg/TJ,60.854976,kg +1bc1d193-d309-3290-923a-a7c914c87195,SESCO,II.1.1,Entre Rios,AR-E,annual,2023,gas oil combustion consumption by freight transport,15.60384,TJ,N2O,3.9,kg/TJ,60.854976,kg +e1663f3a-07e0-38aa-a8ee-461d90389c2a,SESCO,II.1.1,Buenos Aires,AR-B,annual,2023,gas oil combustion consumption by freight transport,2.78124,TJ,CO2,74100.0,kg/TJ,206089.884,kg +7313a014-e16d-333a-96ff-a7e82c55af01,SESCO,II.1.1,Buenos Aires,AR-B,annual,2023,gas oil combustion consumption by freight transport,2.78124,TJ,CH4,3.9,kg/TJ,10.846836,kg +7313a014-e16d-333a-96ff-a7e82c55af01,SESCO,II.1.1,Buenos Aires,AR-B,annual,2023,gas oil combustion consumption by freight transport,2.78124,TJ,N2O,3.9,kg/TJ,10.846836,kg +3d8ff9ac-50e3-3a4b-aa5b-1fad36431691,SESCO,II.1.1,Buenos Aires,AR-B,annual,2023,gas oil combustion consumption by public passenger transport,2707.84416,TJ,CO2,74100.0,kg/TJ,200651252.256,kg +5a3f3d52-f8d7-351f-a3d1-bd9df6d6a56d,SESCO,II.1.1,Buenos Aires,AR-B,annual,2023,gas oil combustion consumption by public passenger transport,2707.84416,TJ,CH4,3.9,kg/TJ,10560.592224,kg +5a3f3d52-f8d7-351f-a3d1-bd9df6d6a56d,SESCO,II.1.1,Buenos Aires,AR-B,annual,2023,gas oil combustion consumption by public passenger transport,2707.84416,TJ,N2O,3.9,kg/TJ,10560.592224,kg +3a48334f-faaa-3c1f-944b-1a77bc321c42,SESCO,II.1.1,Capital Federal,AR-C,annual,2023,gas oil combustion consumption by public passenger transport,141.37368,TJ,CO2,74100.0,kg/TJ,10475789.688000001,kg +9b9a49b1-d029-3601-af2f-1a62ab4ea9d5,SESCO,II.1.1,Capital Federal,AR-C,annual,2023,gas oil combustion consumption by public passenger transport,141.37368,TJ,CH4,3.9,kg/TJ,551.357352,kg +9b9a49b1-d029-3601-af2f-1a62ab4ea9d5,SESCO,II.1.1,Capital Federal,AR-C,annual,2023,gas oil combustion consumption by public passenger transport,141.37368,TJ,N2O,3.9,kg/TJ,551.357352,kg +9ab138d4-546f-33bc-8972-d411d127d675,SESCO,II.1.1,Corrientes,AR-W,annual,2023,gas oil combustion consumption by public passenger transport,0.57792,TJ,CO2,74100.0,kg/TJ,42823.871999999996,kg +4617c8f5-b0e3-39b3-b5f2-4b8d79287972,SESCO,II.1.1,Corrientes,AR-W,annual,2023,gas oil combustion consumption by public passenger transport,0.57792,TJ,CH4,3.9,kg/TJ,2.253888,kg +4617c8f5-b0e3-39b3-b5f2-4b8d79287972,SESCO,II.1.1,Corrientes,AR-W,annual,2023,gas oil combustion consumption by public passenger transport,0.57792,TJ,N2O,3.9,kg/TJ,2.253888,kg +1a8ecf0c-9d12-39b1-b506-a8425decb608,SESCO,II.1.1,Buenos Aires,AR-B,annual,2023,gas oil combustion consumption by public passenger transport,2397.06768,TJ,CO2,74100.0,kg/TJ,177622715.088,kg +4c3666a1-51df-31bb-8e5a-42eb2d6f1a42,SESCO,II.1.1,Buenos Aires,AR-B,annual,2023,gas oil combustion consumption by public passenger transport,2397.06768,TJ,CH4,3.9,kg/TJ,9348.563952,kg +4c3666a1-51df-31bb-8e5a-42eb2d6f1a42,SESCO,II.1.1,Buenos Aires,AR-B,annual,2023,gas oil combustion consumption by public passenger transport,2397.06768,TJ,N2O,3.9,kg/TJ,9348.563952,kg +578dbb22-85c4-355f-be5f-904f23a93015,SESCO,II.1.1,Capital Federal,AR-C,annual,2023,gas oil combustion consumption by public passenger transport,36.22836,TJ,CO2,74100.0,kg/TJ,2684521.4760000003,kg +e9d91f8c-66a1-3e2a-8871-dcb2f4e35929,SESCO,II.1.1,Capital Federal,AR-C,annual,2023,gas oil combustion consumption by public passenger transport,36.22836,TJ,CH4,3.9,kg/TJ,141.290604,kg +e9d91f8c-66a1-3e2a-8871-dcb2f4e35929,SESCO,II.1.1,Capital Federal,AR-C,annual,2023,gas oil combustion consumption by public passenger transport,36.22836,TJ,N2O,3.9,kg/TJ,141.290604,kg +6cf948d0-7bdc-325d-8efc-d45d1325ce93,SESCO,II.1.1,Corrientes,AR-W,annual,2023,gas oil combustion consumption by public passenger transport,43.45236,TJ,CO2,74100.0,kg/TJ,3219819.8759999997,kg +1e305462-7568-3265-86f1-ac8e74228731,SESCO,II.1.1,Corrientes,AR-W,annual,2023,gas oil combustion consumption by public passenger transport,43.45236,TJ,CH4,3.9,kg/TJ,169.464204,kg +1e305462-7568-3265-86f1-ac8e74228731,SESCO,II.1.1,Corrientes,AR-W,annual,2023,gas oil combustion consumption by public passenger transport,43.45236,TJ,N2O,3.9,kg/TJ,169.464204,kg +8063c84b-3419-3665-a9c6-07e4589f717a,SESCO,II.5.1,Buenos Aires,AR-B,annual,2023,gas oil combustion consumption by agriculture machines,2761.7173567199998,TJ,CO2,74100.0,kg/TJ,204643256.13295197,kg +ec3860e2-e26f-323c-bb4e-eecef314b8fa,SESCO,II.5.1,Buenos Aires,AR-B,annual,2023,gas oil combustion consumption by agriculture machines,2761.7173567199998,TJ,CH4,3.9,kg/TJ,10770.697691207999,kg +ec3860e2-e26f-323c-bb4e-eecef314b8fa,SESCO,II.5.1,Buenos Aires,AR-B,annual,2023,gas oil combustion consumption by agriculture machines,2761.7173567199998,TJ,N2O,3.9,kg/TJ,10770.697691207999,kg +d20a25fa-13ca-3995-b5a5-0d90130d7cee,SESCO,II.5.1,Capital Federal,AR-C,annual,2023,gas oil combustion consumption by agriculture machines,207.4935072,TJ,CO2,74100.0,kg/TJ,15375268.883520002,kg +c3858901-00e6-38ff-a638-01ebd35edbe5,SESCO,II.5.1,Capital Federal,AR-C,annual,2023,gas oil combustion consumption by agriculture machines,207.4935072,TJ,CH4,3.9,kg/TJ,809.22467808,kg +c3858901-00e6-38ff-a638-01ebd35edbe5,SESCO,II.5.1,Capital Federal,AR-C,annual,2023,gas oil combustion consumption by agriculture machines,207.4935072,TJ,N2O,3.9,kg/TJ,809.22467808,kg +2754051c-023f-3051-94b9-f2aad0cb36ed,SESCO,II.5.1,Córdoba,AR-X,annual,2023,gas oil combustion consumption by agriculture machines,1519.1913072,TJ,CO2,74100.0,kg/TJ,112572075.86352,kg +4096e805-5f7d-3dbb-8bcf-e46ca8ec79f6,SESCO,II.5.1,Córdoba,AR-X,annual,2023,gas oil combustion consumption by agriculture machines,1519.1913072,TJ,CH4,3.9,kg/TJ,5924.84609808,kg +4096e805-5f7d-3dbb-8bcf-e46ca8ec79f6,SESCO,II.5.1,Córdoba,AR-X,annual,2023,gas oil combustion consumption by agriculture machines,1519.1913072,TJ,N2O,3.9,kg/TJ,5924.84609808,kg +b5127e93-fe55-3bd4-a767-b29b4e3e45ed,SESCO,II.5.1,Entre Rios,AR-E,annual,2023,gas oil combustion consumption by agriculture machines,415.32390564,TJ,CO2,74100.0,kg/TJ,30775501.407924,kg +e3cf4510-b439-34b4-8e0e-4dfb7f0532a5,SESCO,II.5.1,Entre Rios,AR-E,annual,2023,gas oil combustion consumption by agriculture machines,415.32390564,TJ,CH4,3.9,kg/TJ,1619.763231996,kg +e3cf4510-b439-34b4-8e0e-4dfb7f0532a5,SESCO,II.5.1,Entre Rios,AR-E,annual,2023,gas oil combustion consumption by agriculture machines,415.32390564,TJ,N2O,3.9,kg/TJ,1619.763231996,kg +884f2c09-38f2-3a44-9c02-395a897f865d,SESCO,II.5.1,Jujuy,AR-Y,annual,2023,gas oil combustion consumption by agriculture machines,5.06236248,TJ,CO2,74100.0,kg/TJ,375121.059768,kg +a1c3bbdc-bfe6-33a4-af76-71e9ab5a1ca3,SESCO,II.5.1,Jujuy,AR-Y,annual,2023,gas oil combustion consumption by agriculture machines,5.06236248,TJ,CH4,3.9,kg/TJ,19.743213672,kg +a1c3bbdc-bfe6-33a4-af76-71e9ab5a1ca3,SESCO,II.5.1,Jujuy,AR-Y,annual,2023,gas oil combustion consumption by agriculture machines,5.06236248,TJ,N2O,3.9,kg/TJ,19.743213672,kg +1ad2cda7-1f0c-3a86-84fb-31949b145039,SESCO,II.5.1,La Pampa,AR-L,annual,2023,gas oil combustion consumption by agriculture machines,229.78323144,TJ,CO2,74100.0,kg/TJ,17026937.449704,kg +ff9c92c7-7e4c-3194-9d76-4ecf26639a31,SESCO,II.5.1,La Pampa,AR-L,annual,2023,gas oil combustion consumption by agriculture machines,229.78323144,TJ,CH4,3.9,kg/TJ,896.154602616,kg +ff9c92c7-7e4c-3194-9d76-4ecf26639a31,SESCO,II.5.1,La Pampa,AR-L,annual,2023,gas oil combustion consumption by agriculture machines,229.78323144,TJ,N2O,3.9,kg/TJ,896.154602616,kg +9ca78019-9bfb-399a-963f-1a4bba1c03ec,SESCO,II.5.1,Rio Negro,AR-R,annual,2023,gas oil combustion consumption by agriculture machines,156.66193956,TJ,CO2,74100.0,kg/TJ,11608649.721396001,kg +b1343d37-53a1-38a6-a1ab-bd778d041313,SESCO,II.5.1,Rio Negro,AR-R,annual,2023,gas oil combustion consumption by agriculture machines,156.66193956,TJ,CH4,3.9,kg/TJ,610.981564284,kg +b1343d37-53a1-38a6-a1ab-bd778d041313,SESCO,II.5.1,Rio Negro,AR-R,annual,2023,gas oil combustion consumption by agriculture machines,156.66193956,TJ,N2O,3.9,kg/TJ,610.981564284,kg +0a7ad109-98c2-36a5-ae6b-77ea4adb2886,SESCO,II.5.1,San Luis,AR-D,annual,2023,gas oil combustion consumption by agriculture machines,16.861899599999997,TJ,CO2,74100.0,kg/TJ,1249466.7603599997,kg +73349210-acb7-3421-aa7f-9c5879d48834,SESCO,II.5.1,San Luis,AR-D,annual,2023,gas oil combustion consumption by agriculture machines,16.861899599999997,TJ,CH4,3.9,kg/TJ,65.76140843999998,kg +73349210-acb7-3421-aa7f-9c5879d48834,SESCO,II.5.1,San Luis,AR-D,annual,2023,gas oil combustion consumption by agriculture machines,16.861899599999997,TJ,N2O,3.9,kg/TJ,65.76140843999998,kg +66871ea4-e9a8-3ffb-934a-c756e4f35dfd,SESCO,II.5.1,Santa Fe,AR-S,annual,2023,gas oil combustion consumption by agriculture machines,3773.36274084,TJ,CO2,74100.0,kg/TJ,279606179.096244,kg +b9bffbe5-d161-35c9-a7d8-eea119448468,SESCO,II.5.1,Santa Fe,AR-S,annual,2023,gas oil combustion consumption by agriculture machines,3773.36274084,TJ,CH4,3.9,kg/TJ,14716.114689275999,kg +b9bffbe5-d161-35c9-a7d8-eea119448468,SESCO,II.5.1,Santa Fe,AR-S,annual,2023,gas oil combustion consumption by agriculture machines,3773.36274084,TJ,N2O,3.9,kg/TJ,14716.114689275999,kg +110523e4-6b1d-30c0-a77f-ba5f830fa79e,SESCO,II.5.1,Santiago del Estero,AR-G,annual,2023,gas oil combustion consumption by agriculture machines,108.144183,TJ,CO2,74100.0,kg/TJ,8013483.960299999,kg +b63db65e-5db5-3920-b78f-2199bb53c9bc,SESCO,II.5.1,Santiago del Estero,AR-G,annual,2023,gas oil combustion consumption by agriculture machines,108.144183,TJ,CH4,3.9,kg/TJ,421.7623137,kg +b63db65e-5db5-3920-b78f-2199bb53c9bc,SESCO,II.5.1,Santiago del Estero,AR-G,annual,2023,gas oil combustion consumption by agriculture machines,108.144183,TJ,N2O,3.9,kg/TJ,421.7623137,kg +1bc9f96c-afb4-3a69-80f2-217f57121efc,SESCO,II.5.1,Tucuman,AR-T,annual,2023,gas oil combustion consumption by agriculture machines,56.525849519999994,TJ,CO2,74100.0,kg/TJ,4188565.4494319996,kg +6e250afe-6dc8-34cd-a4f0-76e3ca137aa5,SESCO,II.5.1,Tucuman,AR-T,annual,2023,gas oil combustion consumption by agriculture machines,56.525849519999994,TJ,CH4,3.9,kg/TJ,220.45081312799996,kg +6e250afe-6dc8-34cd-a4f0-76e3ca137aa5,SESCO,II.5.1,Tucuman,AR-T,annual,2023,gas oil combustion consumption by agriculture machines,56.525849519999994,TJ,N2O,3.9,kg/TJ,220.45081312799996,kg +6023ec96-21f8-3ada-be77-ffb4667e6f9b,SESCO,II.5.1,Buenos Aires,AR-B,annual,2023,gas oil combustion consumption by agriculture machines,151.70728692,TJ,CO2,74100.0,kg/TJ,11241509.960772,kg +7fadf842-9b45-30c6-a81a-169f2b6e7539,SESCO,II.5.1,Buenos Aires,AR-B,annual,2023,gas oil combustion consumption by agriculture machines,151.70728692,TJ,CH4,3.9,kg/TJ,591.658418988,kg +7fadf842-9b45-30c6-a81a-169f2b6e7539,SESCO,II.5.1,Buenos Aires,AR-B,annual,2023,gas oil combustion consumption by agriculture machines,151.70728692,TJ,N2O,3.9,kg/TJ,591.658418988,kg +74467e28-9747-35ef-93e3-e88462300c3a,SESCO,II.5.1,Capital Federal,AR-C,annual,2023,gas oil combustion consumption by agriculture machines,21.19308492,TJ,CO2,74100.0,kg/TJ,1570407.592572,kg +ffa5b623-2ed3-33db-879d-e263bbb5997f,SESCO,II.5.1,Capital Federal,AR-C,annual,2023,gas oil combustion consumption by agriculture machines,21.19308492,TJ,CH4,3.9,kg/TJ,82.653031188,kg +ffa5b623-2ed3-33db-879d-e263bbb5997f,SESCO,II.5.1,Capital Federal,AR-C,annual,2023,gas oil combustion consumption by agriculture machines,21.19308492,TJ,N2O,3.9,kg/TJ,82.653031188,kg +71b0aeb4-0950-3d8f-a031-03e8486548db,SESCO,II.5.1,Córdoba,AR-X,annual,2023,gas oil combustion consumption by agriculture machines,54.02266128,TJ,CO2,74100.0,kg/TJ,4003079.200848,kg +46b49caa-5849-36d0-bf7e-a3eda693418a,SESCO,II.5.1,Córdoba,AR-X,annual,2023,gas oil combustion consumption by agriculture machines,54.02266128,TJ,CH4,3.9,kg/TJ,210.688378992,kg +46b49caa-5849-36d0-bf7e-a3eda693418a,SESCO,II.5.1,Córdoba,AR-X,annual,2023,gas oil combustion consumption by agriculture machines,54.02266128,TJ,N2O,3.9,kg/TJ,210.688378992,kg +8b5d2fcf-329f-3518-881d-55df6145d7a7,SESCO,II.5.1,Entre Rios,AR-E,annual,2023,gas oil combustion consumption by agriculture machines,34.52858892,TJ,CO2,74100.0,kg/TJ,2558568.4389719996,kg +924d6385-5f3c-399e-85ad-de697e7b5001,SESCO,II.5.1,Entre Rios,AR-E,annual,2023,gas oil combustion consumption by agriculture machines,34.52858892,TJ,CH4,3.9,kg/TJ,134.661496788,kg +924d6385-5f3c-399e-85ad-de697e7b5001,SESCO,II.5.1,Entre Rios,AR-E,annual,2023,gas oil combustion consumption by agriculture machines,34.52858892,TJ,N2O,3.9,kg/TJ,134.661496788,kg +16c6b80d-38c6-37dd-85b3-e683c9be49bb,SESCO,II.5.1,Jujuy,AR-Y,annual,2023,gas oil combustion consumption by agriculture machines,33.1316118,TJ,CO2,74100.0,kg/TJ,2455052.43438,kg +46d6a79f-e40f-32bb-be91-7f038c0c3f3e,SESCO,II.5.1,Jujuy,AR-Y,annual,2023,gas oil combustion consumption by agriculture machines,33.1316118,TJ,CH4,3.9,kg/TJ,129.21328602,kg +46d6a79f-e40f-32bb-be91-7f038c0c3f3e,SESCO,II.5.1,Jujuy,AR-Y,annual,2023,gas oil combustion consumption by agriculture machines,33.1316118,TJ,N2O,3.9,kg/TJ,129.21328602,kg +564b9f56-f56a-3ea0-8bae-7bc7e0023df3,SESCO,II.5.1,La Pampa,AR-L,annual,2023,gas oil combustion consumption by agriculture machines,10.0326912,TJ,CO2,74100.0,kg/TJ,743422.41792,kg +31d12cc6-7e9b-3697-84a8-e828b7f8e622,SESCO,II.5.1,La Pampa,AR-L,annual,2023,gas oil combustion consumption by agriculture machines,10.0326912,TJ,CH4,3.9,kg/TJ,39.12749568,kg +31d12cc6-7e9b-3697-84a8-e828b7f8e622,SESCO,II.5.1,La Pampa,AR-L,annual,2023,gas oil combustion consumption by agriculture machines,10.0326912,TJ,N2O,3.9,kg/TJ,39.12749568,kg +2e0eb131-972d-30ec-aafd-63ae85839dad,SESCO,II.5.1,Rio Negro,AR-R,annual,2023,gas oil combustion consumption by agriculture machines,237.68408412,TJ,CO2,74100.0,kg/TJ,17612390.633292,kg +b71aa281-1ce4-39aa-a70d-fdf87fc65dcc,SESCO,II.5.1,Rio Negro,AR-R,annual,2023,gas oil combustion consumption by agriculture machines,237.68408412,TJ,CH4,3.9,kg/TJ,926.967928068,kg +b71aa281-1ce4-39aa-a70d-fdf87fc65dcc,SESCO,II.5.1,Rio Negro,AR-R,annual,2023,gas oil combustion consumption by agriculture machines,237.68408412,TJ,N2O,3.9,kg/TJ,926.967928068,kg +8765ebd3-b6e6-36df-8bd0-2327d8c46efc,SESCO,II.5.1,San Luis,AR-D,annual,2023,gas oil combustion consumption by agriculture machines,3.7010358,TJ,CO2,74100.0,kg/TJ,274246.75278,kg +f8ec632e-fab5-3758-9add-365cfb40a220,SESCO,II.5.1,San Luis,AR-D,annual,2023,gas oil combustion consumption by agriculture machines,3.7010358,TJ,CH4,3.9,kg/TJ,14.43403962,kg +f8ec632e-fab5-3758-9add-365cfb40a220,SESCO,II.5.1,San Luis,AR-D,annual,2023,gas oil combustion consumption by agriculture machines,3.7010358,TJ,N2O,3.9,kg/TJ,14.43403962,kg +1e64b400-61d6-388a-9b63-bbe00aa069e0,SESCO,II.5.1,Santa Fe,AR-S,annual,2023,gas oil combustion consumption by agriculture machines,174.20462891999998,TJ,CO2,74100.0,kg/TJ,12908563.002971997,kg +2dd35e43-5f37-3c0b-bdc7-25589d6317d2,SESCO,II.5.1,Santa Fe,AR-S,annual,2023,gas oil combustion consumption by agriculture machines,174.20462891999998,TJ,CH4,3.9,kg/TJ,679.3980527879999,kg +2dd35e43-5f37-3c0b-bdc7-25589d6317d2,SESCO,II.5.1,Santa Fe,AR-S,annual,2023,gas oil combustion consumption by agriculture machines,174.20462891999998,TJ,N2O,3.9,kg/TJ,679.3980527879999,kg +e655b8a0-5976-307c-890a-d4c7f460ac9c,SESCO,II.5.1,Santiago del Estero,AR-G,annual,2023,gas oil combustion consumption by agriculture machines,2.61465456,TJ,CO2,74100.0,kg/TJ,193745.90289599999,kg +b5a2c5e6-c604-3cbf-b3da-c92886204c85,SESCO,II.5.1,Santiago del Estero,AR-G,annual,2023,gas oil combustion consumption by agriculture machines,2.61465456,TJ,CH4,3.9,kg/TJ,10.197152784,kg +b5a2c5e6-c604-3cbf-b3da-c92886204c85,SESCO,II.5.1,Santiago del Estero,AR-G,annual,2023,gas oil combustion consumption by agriculture machines,2.61465456,TJ,N2O,3.9,kg/TJ,10.197152784,kg +cc5d8f9f-f2b2-3e9c-b125-797bc02f8df6,SESCO,II.5.1,Tucuman,AR-T,annual,2023,gas oil combustion consumption by agriculture machines,0.6075384,TJ,CO2,74100.0,kg/TJ,45018.595440000005,kg +8c0d57dc-c91a-3cb9-a7f7-cd3d8d135a23,SESCO,II.5.1,Tucuman,AR-T,annual,2023,gas oil combustion consumption by agriculture machines,0.6075384,TJ,CH4,3.9,kg/TJ,2.3693997600000003,kg +8c0d57dc-c91a-3cb9-a7f7-cd3d8d135a23,SESCO,II.5.1,Tucuman,AR-T,annual,2023,gas oil combustion consumption by agriculture machines,0.6075384,TJ,N2O,3.9,kg/TJ,2.3693997600000003,kg +ff344f6a-ed11-33f6-aafb-5f71709ed85a,SESCO,II.1.1,Buenos Aires,AR-B,annual,2023,gas oil combustion consumption by to the public,7798.27188,TJ,CO2,74100.0,kg/TJ,577851946.308,kg +2c8da0ed-2379-3cf5-a139-290405305fa6,SESCO,II.1.1,Buenos Aires,AR-B,annual,2023,gas oil combustion consumption by to the public,7798.27188,TJ,CH4,3.9,kg/TJ,30413.260332,kg +2c8da0ed-2379-3cf5-a139-290405305fa6,SESCO,II.1.1,Buenos Aires,AR-B,annual,2023,gas oil combustion consumption by to the public,7798.27188,TJ,N2O,3.9,kg/TJ,30413.260332,kg +f81d6485-3231-3d4c-bda3-24c4d064bd1d,SESCO,II.1.1,Capital Federal,AR-C,annual,2023,gas oil combustion consumption by to the public,326.38032,TJ,CO2,74100.0,kg/TJ,24184781.711999997,kg +997e1e78-44d6-398d-8a1f-52869cea78c6,SESCO,II.1.1,Capital Federal,AR-C,annual,2023,gas oil combustion consumption by to the public,326.38032,TJ,CH4,3.9,kg/TJ,1272.8832479999999,kg +997e1e78-44d6-398d-8a1f-52869cea78c6,SESCO,II.1.1,Capital Federal,AR-C,annual,2023,gas oil combustion consumption by to the public,326.38032,TJ,N2O,3.9,kg/TJ,1272.8832479999999,kg +01f15c7e-39b3-33bf-882b-668edfe6384b,SESCO,II.1.1,Chaco,AR-H,annual,2023,gas oil combustion consumption by to the public,59.16000888,TJ,CO2,74100.0,kg/TJ,4383756.658008,kg +79254552-02a6-3640-8f46-58d5b39403d2,SESCO,II.1.1,Chaco,AR-H,annual,2023,gas oil combustion consumption by to the public,59.16000888,TJ,CH4,3.9,kg/TJ,230.72403463199998,kg +79254552-02a6-3640-8f46-58d5b39403d2,SESCO,II.1.1,Chaco,AR-H,annual,2023,gas oil combustion consumption by to the public,59.16000888,TJ,N2O,3.9,kg/TJ,230.72403463199998,kg +ba426ba8-71f6-3ce1-b115-66e0f5c395e8,SESCO,II.1.1,Chubut,AR-U,annual,2023,gas oil combustion consumption by to the public,321.98296283999997,TJ,CO2,74100.0,kg/TJ,23858937.546444,kg +b26fd329-e398-32c9-a251-510f3645ff7a,SESCO,II.1.1,Chubut,AR-U,annual,2023,gas oil combustion consumption by to the public,321.98296283999997,TJ,CH4,3.9,kg/TJ,1255.733555076,kg +b26fd329-e398-32c9-a251-510f3645ff7a,SESCO,II.1.1,Chubut,AR-U,annual,2023,gas oil combustion consumption by to the public,321.98296283999997,TJ,N2O,3.9,kg/TJ,1255.733555076,kg +300ae216-d6e6-36c5-87cd-efcbde81913c,SESCO,II.1.1,Corrientes,AR-W,annual,2023,gas oil combustion consumption by to the public,963.59458692,TJ,CO2,74100.0,kg/TJ,71402358.890772,kg +82398ae5-8b7b-38e2-8bed-182487efdfdd,SESCO,II.1.1,Corrientes,AR-W,annual,2023,gas oil combustion consumption by to the public,963.59458692,TJ,CH4,3.9,kg/TJ,3758.018888988,kg +82398ae5-8b7b-38e2-8bed-182487efdfdd,SESCO,II.1.1,Corrientes,AR-W,annual,2023,gas oil combustion consumption by to the public,963.59458692,TJ,N2O,3.9,kg/TJ,3758.018888988,kg +be3196c4-cb84-3383-9c4d-85dbf36c110f,SESCO,II.1.1,Córdoba,AR-X,annual,2023,gas oil combustion consumption by to the public,1539.49721268,TJ,CO2,74100.0,kg/TJ,114076743.459588,kg +afad56b9-0935-304d-8e48-915d9b6e833f,SESCO,II.1.1,Córdoba,AR-X,annual,2023,gas oil combustion consumption by to the public,1539.49721268,TJ,CH4,3.9,kg/TJ,6004.039129452,kg +afad56b9-0935-304d-8e48-915d9b6e833f,SESCO,II.1.1,Córdoba,AR-X,annual,2023,gas oil combustion consumption by to the public,1539.49721268,TJ,N2O,3.9,kg/TJ,6004.039129452,kg +3455a610-406e-3ea4-abb9-77eda3c0d541,SESCO,II.1.1,Entre Rios,AR-E,annual,2023,gas oil combustion consumption by to the public,1670.9445387600001,TJ,CO2,74100.0,kg/TJ,123816990.322116,kg +265edbc9-325a-303a-a920-f5bb8ea308d9,SESCO,II.1.1,Entre Rios,AR-E,annual,2023,gas oil combustion consumption by to the public,1670.9445387600001,TJ,CH4,3.9,kg/TJ,6516.683701164,kg +265edbc9-325a-303a-a920-f5bb8ea308d9,SESCO,II.1.1,Entre Rios,AR-E,annual,2023,gas oil combustion consumption by to the public,1670.9445387600001,TJ,N2O,3.9,kg/TJ,6516.683701164,kg +d6790c02-4ba5-3d3a-8720-93d3bc00aae7,SESCO,II.1.1,Jujuy,AR-Y,annual,2023,gas oil combustion consumption by to the public,32.574749759999996,TJ,CO2,74100.0,kg/TJ,2413788.9572159997,kg +f354bb5e-d88c-310a-afc4-af8919c3d3ea,SESCO,II.1.1,Jujuy,AR-Y,annual,2023,gas oil combustion consumption by to the public,32.574749759999996,TJ,CH4,3.9,kg/TJ,127.04152406399999,kg +f354bb5e-d88c-310a-afc4-af8919c3d3ea,SESCO,II.1.1,Jujuy,AR-Y,annual,2023,gas oil combustion consumption by to the public,32.574749759999996,TJ,N2O,3.9,kg/TJ,127.04152406399999,kg +3d2a5c2f-7967-3db2-89eb-fcc362cf28e4,SESCO,II.1.1,La Pampa,AR-L,annual,2023,gas oil combustion consumption by to the public,988.71138744,TJ,CO2,74100.0,kg/TJ,73263513.809304,kg +4a01f516-6f75-330d-a12a-12a9c61b321e,SESCO,II.1.1,La Pampa,AR-L,annual,2023,gas oil combustion consumption by to the public,988.71138744,TJ,CH4,3.9,kg/TJ,3855.9744110159995,kg +4a01f516-6f75-330d-a12a-12a9c61b321e,SESCO,II.1.1,La Pampa,AR-L,annual,2023,gas oil combustion consumption by to the public,988.71138744,TJ,N2O,3.9,kg/TJ,3855.9744110159995,kg +675820d1-6e57-3ba9-bc34-6854aea61569,SESCO,II.1.1,Mendoza,AR-M,annual,2023,gas oil combustion consumption by to the public,134.73269292,TJ,CO2,74100.0,kg/TJ,9983692.545372,kg +de963634-b822-31db-aee0-f2ce4ef4b50c,SESCO,II.1.1,Mendoza,AR-M,annual,2023,gas oil combustion consumption by to the public,134.73269292,TJ,CH4,3.9,kg/TJ,525.457502388,kg +de963634-b822-31db-aee0-f2ce4ef4b50c,SESCO,II.1.1,Mendoza,AR-M,annual,2023,gas oil combustion consumption by to the public,134.73269292,TJ,N2O,3.9,kg/TJ,525.457502388,kg +f50a3d52-ae7f-3e10-afe9-9809dbed3613,SESCO,II.1.1,Neuquén,AR-Q,annual,2023,gas oil combustion consumption by to the public,237.52869588000001,TJ,CO2,74100.0,kg/TJ,17600876.364708003,kg +b587a93d-bf3c-3598-b0ec-61619badc7b0,SESCO,II.1.1,Neuquén,AR-Q,annual,2023,gas oil combustion consumption by to the public,237.52869588000001,TJ,CH4,3.9,kg/TJ,926.361913932,kg +b587a93d-bf3c-3598-b0ec-61619badc7b0,SESCO,II.1.1,Neuquén,AR-Q,annual,2023,gas oil combustion consumption by to the public,237.52869588000001,TJ,N2O,3.9,kg/TJ,926.361913932,kg +990cf2aa-153f-3e66-bdd0-d139c8672f96,SESCO,II.1.1,Rio Negro,AR-R,annual,2023,gas oil combustion consumption by to the public,873.9140088,TJ,CO2,74100.0,kg/TJ,64757028.052080005,kg +b20b26dd-5085-38a1-aa75-d52a92f283b0,SESCO,II.1.1,Rio Negro,AR-R,annual,2023,gas oil combustion consumption by to the public,873.9140088,TJ,CH4,3.9,kg/TJ,3408.26463432,kg +b20b26dd-5085-38a1-aa75-d52a92f283b0,SESCO,II.1.1,Rio Negro,AR-R,annual,2023,gas oil combustion consumption by to the public,873.9140088,TJ,N2O,3.9,kg/TJ,3408.26463432,kg +b55edba9-025a-30f0-8ff6-f5b1627f71d6,SESCO,II.1.1,San Juan,AR-J,annual,2023,gas oil combustion consumption by to the public,206.30530367999998,TJ,CO2,74100.0,kg/TJ,15287223.002687998,kg +d29b3d7d-0421-3ff6-a4bd-b50f692515ea,SESCO,II.1.1,San Juan,AR-J,annual,2023,gas oil combustion consumption by to the public,206.30530367999998,TJ,CH4,3.9,kg/TJ,804.5906843519999,kg +d29b3d7d-0421-3ff6-a4bd-b50f692515ea,SESCO,II.1.1,San Juan,AR-J,annual,2023,gas oil combustion consumption by to the public,206.30530367999998,TJ,N2O,3.9,kg/TJ,804.5906843519999,kg +59afe737-c288-3935-970d-89cecee9d9b3,SESCO,II.1.1,San Luis,AR-D,annual,2023,gas oil combustion consumption by to the public,87.39970848,TJ,CO2,74100.0,kg/TJ,6476318.398368,kg +9c45a090-7329-303e-91c3-5539943efc8c,SESCO,II.1.1,San Luis,AR-D,annual,2023,gas oil combustion consumption by to the public,87.39970848,TJ,CH4,3.9,kg/TJ,340.858863072,kg +9c45a090-7329-303e-91c3-5539943efc8c,SESCO,II.1.1,San Luis,AR-D,annual,2023,gas oil combustion consumption by to the public,87.39970848,TJ,N2O,3.9,kg/TJ,340.858863072,kg +55ee608c-9eae-3acc-89bf-fb628a283aae,SESCO,II.1.1,Santa Fe,AR-S,annual,2023,gas oil combustion consumption by to the public,1958.11544292,TJ,CO2,74100.0,kg/TJ,145096354.32037202,kg +6a8eef39-d725-3084-b26d-8c97c57cfcb1,SESCO,II.1.1,Santa Fe,AR-S,annual,2023,gas oil combustion consumption by to the public,1958.11544292,TJ,CH4,3.9,kg/TJ,7636.6502273880005,kg +6a8eef39-d725-3084-b26d-8c97c57cfcb1,SESCO,II.1.1,Santa Fe,AR-S,annual,2023,gas oil combustion consumption by to the public,1958.11544292,TJ,N2O,3.9,kg/TJ,7636.6502273880005,kg +0af7bb23-4b1a-3033-baa2-4323be756c7f,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2023,gas oil combustion consumption by to the public,423.99404208,TJ,CO2,74100.0,kg/TJ,31417958.518128,kg +f3260384-659f-391f-9d02-579a175ed138,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2023,gas oil combustion consumption by to the public,423.99404208,TJ,CH4,3.9,kg/TJ,1653.5767641119999,kg +f3260384-659f-391f-9d02-579a175ed138,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2023,gas oil combustion consumption by to the public,423.99404208,TJ,N2O,3.9,kg/TJ,1653.5767641119999,kg +9222a399-c7df-3343-aa95-d87d8a01ce06,SESCO,II.1.1,Tucuman,AR-T,annual,2023,gas oil combustion consumption by to the public,14.11071144,TJ,CO2,74100.0,kg/TJ,1045603.717704,kg +a6aadd86-55f3-3b3b-bb6d-d61853757e4d,SESCO,II.1.1,Tucuman,AR-T,annual,2023,gas oil combustion consumption by to the public,14.11071144,TJ,CH4,3.9,kg/TJ,55.03177461599999,kg +a6aadd86-55f3-3b3b-bb6d-d61853757e4d,SESCO,II.1.1,Tucuman,AR-T,annual,2023,gas oil combustion consumption by to the public,14.11071144,TJ,N2O,3.9,kg/TJ,55.03177461599999,kg +d9a424e9-f954-338e-9ce1-9f54c4e42d22,SESCO,II.1.1,Buenos Aires,AR-B,annual,2023,gas oil combustion consumption by to the public,1801.7846515200001,TJ,CO2,74100.0,kg/TJ,133512242.677632,kg +5f26ec3a-7f5b-3702-b7e2-e25badf67ada,SESCO,II.1.1,Buenos Aires,AR-B,annual,2023,gas oil combustion consumption by to the public,1801.7846515200001,TJ,CH4,3.9,kg/TJ,7026.960140928,kg +5f26ec3a-7f5b-3702-b7e2-e25badf67ada,SESCO,II.1.1,Buenos Aires,AR-B,annual,2023,gas oil combustion consumption by to the public,1801.7846515200001,TJ,N2O,3.9,kg/TJ,7026.960140928,kg +84decc4d-b831-3514-9c65-64c526fdc882,SESCO,II.1.1,Capital Federal,AR-C,annual,2023,gas oil combustion consumption by to the public,51.44687183999999,TJ,CO2,74100.0,kg/TJ,3812213.2033439996,kg +cccd7dae-73db-3ab5-a8e1-b6d1b4136b01,SESCO,II.1.1,Capital Federal,AR-C,annual,2023,gas oil combustion consumption by to the public,51.44687183999999,TJ,CH4,3.9,kg/TJ,200.64280017599998,kg +cccd7dae-73db-3ab5-a8e1-b6d1b4136b01,SESCO,II.1.1,Capital Federal,AR-C,annual,2023,gas oil combustion consumption by to the public,51.44687183999999,TJ,N2O,3.9,kg/TJ,200.64280017599998,kg +4d0b413d-e0a9-3e68-b221-9d52d1f72189,SESCO,II.1.1,Chaco,AR-H,annual,2023,gas oil combustion consumption by to the public,25.383944040000003,TJ,CO2,74100.0,kg/TJ,1880950.2533640002,kg +1c4ab24a-e4b9-321d-8a94-9363b0049e37,SESCO,II.1.1,Chaco,AR-H,annual,2023,gas oil combustion consumption by to the public,25.383944040000003,TJ,CH4,3.9,kg/TJ,98.99738175600001,kg +1c4ab24a-e4b9-321d-8a94-9363b0049e37,SESCO,II.1.1,Chaco,AR-H,annual,2023,gas oil combustion consumption by to the public,25.383944040000003,TJ,N2O,3.9,kg/TJ,98.99738175600001,kg +54a55bc5-df95-30df-ad75-df926dcbc816,SESCO,II.1.1,Chubut,AR-U,annual,2023,gas oil combustion consumption by to the public,269.84833008,TJ,CO2,74100.0,kg/TJ,19995761.258927997,kg +763a9844-f007-352d-99b6-274f4823fb0b,SESCO,II.1.1,Chubut,AR-U,annual,2023,gas oil combustion consumption by to the public,269.84833008,TJ,CH4,3.9,kg/TJ,1052.4084873119998,kg +763a9844-f007-352d-99b6-274f4823fb0b,SESCO,II.1.1,Chubut,AR-U,annual,2023,gas oil combustion consumption by to the public,269.84833008,TJ,N2O,3.9,kg/TJ,1052.4084873119998,kg +ad8944f1-e288-371c-b144-325d8268cd19,SESCO,II.1.1,Corrientes,AR-W,annual,2023,gas oil combustion consumption by to the public,127.75972691999999,TJ,CO2,74100.0,kg/TJ,9466995.764772,kg +33186cc0-0313-328e-ac6d-5d01f071095d,SESCO,II.1.1,Corrientes,AR-W,annual,2023,gas oil combustion consumption by to the public,127.75972691999999,TJ,CH4,3.9,kg/TJ,498.262934988,kg +33186cc0-0313-328e-ac6d-5d01f071095d,SESCO,II.1.1,Corrientes,AR-W,annual,2023,gas oil combustion consumption by to the public,127.75972691999999,TJ,N2O,3.9,kg/TJ,498.262934988,kg +8910af7b-fb94-3769-aeb1-4585fc45d6f9,SESCO,II.1.1,Córdoba,AR-X,annual,2023,gas oil combustion consumption by to the public,336.96351612,TJ,CO2,74100.0,kg/TJ,24968996.544492,kg +eb519d38-4c31-3c2d-8d74-e37ad07bab42,SESCO,II.1.1,Córdoba,AR-X,annual,2023,gas oil combustion consumption by to the public,336.96351612,TJ,CH4,3.9,kg/TJ,1314.157712868,kg +eb519d38-4c31-3c2d-8d74-e37ad07bab42,SESCO,II.1.1,Córdoba,AR-X,annual,2023,gas oil combustion consumption by to the public,336.96351612,TJ,N2O,3.9,kg/TJ,1314.157712868,kg +5de7c5e7-4452-3049-a8fc-fa64384e7169,SESCO,II.1.1,Entre Rios,AR-E,annual,2023,gas oil combustion consumption by to the public,378.51672264,TJ,CO2,74100.0,kg/TJ,28048089.147624,kg +34387a7f-fd91-39f5-9a01-f2fb77de3016,SESCO,II.1.1,Entre Rios,AR-E,annual,2023,gas oil combustion consumption by to the public,378.51672264,TJ,CH4,3.9,kg/TJ,1476.215218296,kg +34387a7f-fd91-39f5-9a01-f2fb77de3016,SESCO,II.1.1,Entre Rios,AR-E,annual,2023,gas oil combustion consumption by to the public,378.51672264,TJ,N2O,3.9,kg/TJ,1476.215218296,kg +f26f2925-49c3-3dbf-84c3-efb9867bf1e7,SESCO,II.1.1,Jujuy,AR-Y,annual,2023,gas oil combustion consumption by to the public,10.72684536,TJ,CO2,74100.0,kg/TJ,794859.241176,kg +3b9c4b85-fdba-3270-855c-7400c895e10b,SESCO,II.1.1,Jujuy,AR-Y,annual,2023,gas oil combustion consumption by to the public,10.72684536,TJ,CH4,3.9,kg/TJ,41.834696904,kg +3b9c4b85-fdba-3270-855c-7400c895e10b,SESCO,II.1.1,Jujuy,AR-Y,annual,2023,gas oil combustion consumption by to the public,10.72684536,TJ,N2O,3.9,kg/TJ,41.834696904,kg +c488a9f7-69b9-3552-ab20-39d062c111e5,SESCO,II.1.1,La Pampa,AR-L,annual,2023,gas oil combustion consumption by to the public,192.4540422,TJ,CO2,74100.0,kg/TJ,14260844.52702,kg +a84dc24f-2262-361b-8c46-53e03e7f6163,SESCO,II.1.1,La Pampa,AR-L,annual,2023,gas oil combustion consumption by to the public,192.4540422,TJ,CH4,3.9,kg/TJ,750.57076458,kg +a84dc24f-2262-361b-8c46-53e03e7f6163,SESCO,II.1.1,La Pampa,AR-L,annual,2023,gas oil combustion consumption by to the public,192.4540422,TJ,N2O,3.9,kg/TJ,750.57076458,kg +dbf9efca-0a27-3788-8d0c-b7161a84ea88,SESCO,II.1.1,Mendoza,AR-M,annual,2023,gas oil combustion consumption by to the public,35.61085248,TJ,CO2,74100.0,kg/TJ,2638764.168768,kg +7f058036-fa37-3880-9308-87e4d0111424,SESCO,II.1.1,Mendoza,AR-M,annual,2023,gas oil combustion consumption by to the public,35.61085248,TJ,CH4,3.9,kg/TJ,138.88232467199998,kg +7f058036-fa37-3880-9308-87e4d0111424,SESCO,II.1.1,Mendoza,AR-M,annual,2023,gas oil combustion consumption by to the public,35.61085248,TJ,N2O,3.9,kg/TJ,138.88232467199998,kg +ac3eed95-3b93-31b1-af07-737244c82073,SESCO,II.1.1,Neuquén,AR-Q,annual,2023,gas oil combustion consumption by to the public,323.49805236,TJ,CO2,74100.0,kg/TJ,23971205.679876,kg +24497ef1-dfa3-37b9-ae6c-f7633203f520,SESCO,II.1.1,Neuquén,AR-Q,annual,2023,gas oil combustion consumption by to the public,323.49805236,TJ,CH4,3.9,kg/TJ,1261.6424042039998,kg +24497ef1-dfa3-37b9-ae6c-f7633203f520,SESCO,II.1.1,Neuquén,AR-Q,annual,2023,gas oil combustion consumption by to the public,323.49805236,TJ,N2O,3.9,kg/TJ,1261.6424042039998,kg +cbf54987-99c1-3537-ad82-4579593ecdd2,SESCO,II.1.1,Rio Negro,AR-R,annual,2023,gas oil combustion consumption by to the public,373.85395572,TJ,CO2,74100.0,kg/TJ,27702578.118852,kg +33a505db-f39d-3bd1-98f6-0f684cf5a420,SESCO,II.1.1,Rio Negro,AR-R,annual,2023,gas oil combustion consumption by to the public,373.85395572,TJ,CH4,3.9,kg/TJ,1458.0304273079998,kg +33a505db-f39d-3bd1-98f6-0f684cf5a420,SESCO,II.1.1,Rio Negro,AR-R,annual,2023,gas oil combustion consumption by to the public,373.85395572,TJ,N2O,3.9,kg/TJ,1458.0304273079998,kg +da674e19-6f4b-3ef4-a136-b93c9ff3c8c6,SESCO,II.1.1,San Juan,AR-J,annual,2023,gas oil combustion consumption by to the public,42.58436028,TJ,CO2,74100.0,kg/TJ,3155501.096748,kg +4b012eb2-1928-34a2-81f4-9115cc940853,SESCO,II.1.1,San Juan,AR-J,annual,2023,gas oil combustion consumption by to the public,42.58436028,TJ,CH4,3.9,kg/TJ,166.079005092,kg +4b012eb2-1928-34a2-81f4-9115cc940853,SESCO,II.1.1,San Juan,AR-J,annual,2023,gas oil combustion consumption by to the public,42.58436028,TJ,N2O,3.9,kg/TJ,166.079005092,kg +419598b5-1922-3e28-b471-d81f57223483,SESCO,II.1.1,San Luis,AR-D,annual,2023,gas oil combustion consumption by to the public,31.816049160000002,TJ,CO2,74100.0,kg/TJ,2357569.2427560003,kg +a352e7c3-97c2-3d8d-b5fc-d6a78a00271f,SESCO,II.1.1,San Luis,AR-D,annual,2023,gas oil combustion consumption by to the public,31.816049160000002,TJ,CH4,3.9,kg/TJ,124.08259172400001,kg +a352e7c3-97c2-3d8d-b5fc-d6a78a00271f,SESCO,II.1.1,San Luis,AR-D,annual,2023,gas oil combustion consumption by to the public,31.816049160000002,TJ,N2O,3.9,kg/TJ,124.08259172400001,kg +ce824d9c-5a4f-3de8-bfe8-8a29539c42a2,SESCO,II.1.1,Santa Fe,AR-S,annual,2023,gas oil combustion consumption by to the public,419.59852703999996,TJ,CO2,74100.0,kg/TJ,31092250.853663996,kg +91702de8-0583-39f6-a370-c53c5756bb93,SESCO,II.1.1,Santa Fe,AR-S,annual,2023,gas oil combustion consumption by to the public,419.59852703999996,TJ,CH4,3.9,kg/TJ,1636.4342554559998,kg +91702de8-0583-39f6-a370-c53c5756bb93,SESCO,II.1.1,Santa Fe,AR-S,annual,2023,gas oil combustion consumption by to the public,419.59852703999996,TJ,N2O,3.9,kg/TJ,1636.4342554559998,kg +8bc033e4-4938-32b5-8caa-6fbcc7eef6fe,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2023,gas oil combustion consumption by to the public,54.62207268,TJ,CO2,74100.0,kg/TJ,4047495.5855880002,kg +4829fa72-aebe-3219-b05b-92526e45e10a,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2023,gas oil combustion consumption by to the public,54.62207268,TJ,CH4,3.9,kg/TJ,213.026083452,kg +4829fa72-aebe-3219-b05b-92526e45e10a,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2023,gas oil combustion consumption by to the public,54.62207268,TJ,N2O,3.9,kg/TJ,213.026083452,kg +1792a152-ab20-31b4-a4b2-79b9908c1886,SESCO,II.1.1,Tucuman,AR-T,annual,2023,gas oil combustion consumption by to the public,1.5059150399999999,TJ,CO2,74100.0,kg/TJ,111588.30446399999,kg +13c40026-db6b-30fd-afc9-fea28a8c2d06,SESCO,II.1.1,Tucuman,AR-T,annual,2023,gas oil combustion consumption by to the public,1.5059150399999999,TJ,CH4,3.9,kg/TJ,5.873068655999999,kg +13c40026-db6b-30fd-afc9-fea28a8c2d06,SESCO,II.1.1,Tucuman,AR-T,annual,2023,gas oil combustion consumption by to the public,1.5059150399999999,TJ,N2O,3.9,kg/TJ,5.873068655999999,kg +2f922cef-5acc-3276-8a2d-256f97b35186,SESCO,II.5.1,Buenos Aires,AR-B,annual,2023,gas oil combustion consumption by agriculture machines,8991.56832,TJ,CO2,74100.0,kg/TJ,666275212.512,kg +8b1270b7-cd17-3c0f-aa17-ce0a4f790a53,SESCO,II.5.1,Buenos Aires,AR-B,annual,2023,gas oil combustion consumption by agriculture machines,8991.56832,TJ,CH4,3.9,kg/TJ,35067.116448,kg +8b1270b7-cd17-3c0f-aa17-ce0a4f790a53,SESCO,II.5.1,Buenos Aires,AR-B,annual,2023,gas oil combustion consumption by agriculture machines,8991.56832,TJ,N2O,3.9,kg/TJ,35067.116448,kg +e000c3c6-3297-3238-998d-2c82133f39a0,SESCO,II.5.1,Capital Federal,AR-C,annual,2023,gas oil combustion consumption by agriculture machines,89.18028,TJ,CO2,74100.0,kg/TJ,6608258.748,kg +0ab6a520-bdf0-31b3-b0c6-359fee1136fd,SESCO,II.5.1,Capital Federal,AR-C,annual,2023,gas oil combustion consumption by agriculture machines,89.18028,TJ,CH4,3.9,kg/TJ,347.803092,kg +0ab6a520-bdf0-31b3-b0c6-359fee1136fd,SESCO,II.5.1,Capital Federal,AR-C,annual,2023,gas oil combustion consumption by agriculture machines,89.18028,TJ,N2O,3.9,kg/TJ,347.803092,kg +15d59397-cd33-38a6-a672-896a31a30d7e,SESCO,II.5.1,Catamarca,AR-K,annual,2023,gas oil combustion consumption by agriculture machines,250.81727999999998,TJ,CO2,74100.0,kg/TJ,18585560.448,kg +8decbaa5-a05f-3591-8f9a-c64e7ee1ee95,SESCO,II.5.1,Catamarca,AR-K,annual,2023,gas oil combustion consumption by agriculture machines,250.81727999999998,TJ,CH4,3.9,kg/TJ,978.1873919999999,kg +8decbaa5-a05f-3591-8f9a-c64e7ee1ee95,SESCO,II.5.1,Catamarca,AR-K,annual,2023,gas oil combustion consumption by agriculture machines,250.81727999999998,TJ,N2O,3.9,kg/TJ,978.1873919999999,kg +bf095aa4-69c8-31b5-8aa9-95144f58bde5,SESCO,II.5.1,Chaco,AR-H,annual,2023,gas oil combustion consumption by agriculture machines,1158.87408,TJ,CO2,74100.0,kg/TJ,85872569.32800001,kg +7c27a69e-d4c9-3579-ac87-ba98e2654555,SESCO,II.5.1,Chaco,AR-H,annual,2023,gas oil combustion consumption by agriculture machines,1158.87408,TJ,CH4,3.9,kg/TJ,4519.608912,kg +7c27a69e-d4c9-3579-ac87-ba98e2654555,SESCO,II.5.1,Chaco,AR-H,annual,2023,gas oil combustion consumption by agriculture machines,1158.87408,TJ,N2O,3.9,kg/TJ,4519.608912,kg +3f641dcd-7828-3889-99dd-a8dd4dd94e23,SESCO,II.5.1,Corrientes,AR-W,annual,2023,gas oil combustion consumption by agriculture machines,726.012,TJ,CO2,74100.0,kg/TJ,53797489.199999996,kg +70e59184-1311-32d8-8815-9ecf4477ff9b,SESCO,II.5.1,Corrientes,AR-W,annual,2023,gas oil combustion consumption by agriculture machines,726.012,TJ,CH4,3.9,kg/TJ,2831.4467999999997,kg +70e59184-1311-32d8-8815-9ecf4477ff9b,SESCO,II.5.1,Corrientes,AR-W,annual,2023,gas oil combustion consumption by agriculture machines,726.012,TJ,N2O,3.9,kg/TJ,2831.4467999999997,kg +49accdcb-580d-3834-8f46-d5c90605d770,SESCO,II.5.1,Córdoba,AR-X,annual,2023,gas oil combustion consumption by agriculture machines,7244.98572,TJ,CO2,74100.0,kg/TJ,536853441.852,kg +51fe9a11-390c-3436-bb1b-2b24edea32ca,SESCO,II.5.1,Córdoba,AR-X,annual,2023,gas oil combustion consumption by agriculture machines,7244.98572,TJ,CH4,3.9,kg/TJ,28255.444308,kg +51fe9a11-390c-3436-bb1b-2b24edea32ca,SESCO,II.5.1,Córdoba,AR-X,annual,2023,gas oil combustion consumption by agriculture machines,7244.98572,TJ,N2O,3.9,kg/TJ,28255.444308,kg +10eaec50-fdf7-3d73-b25f-552da802f6c0,SESCO,II.5.1,Entre Rios,AR-E,annual,2023,gas oil combustion consumption by agriculture machines,2012.1729599999999,TJ,CO2,74100.0,kg/TJ,149102016.336,kg +7dcdb88b-4dc8-34d2-b436-f1869b6f8530,SESCO,II.5.1,Entre Rios,AR-E,annual,2023,gas oil combustion consumption by agriculture machines,2012.1729599999999,TJ,CH4,3.9,kg/TJ,7847.474544,kg +7dcdb88b-4dc8-34d2-b436-f1869b6f8530,SESCO,II.5.1,Entre Rios,AR-E,annual,2023,gas oil combustion consumption by agriculture machines,2012.1729599999999,TJ,N2O,3.9,kg/TJ,7847.474544,kg +835f8a9a-a71a-3162-948b-6268ed27f2df,SESCO,II.5.1,Formosa,AR-P,annual,2023,gas oil combustion consumption by agriculture machines,322.44324,TJ,CO2,74100.0,kg/TJ,23893044.084,kg +0cb529c1-b0d3-3d55-a5e4-1d05e754dcd6,SESCO,II.5.1,Formosa,AR-P,annual,2023,gas oil combustion consumption by agriculture machines,322.44324,TJ,CH4,3.9,kg/TJ,1257.528636,kg +0cb529c1-b0d3-3d55-a5e4-1d05e754dcd6,SESCO,II.5.1,Formosa,AR-P,annual,2023,gas oil combustion consumption by agriculture machines,322.44324,TJ,N2O,3.9,kg/TJ,1257.528636,kg +c95aeed9-abf2-3dcf-82a2-67273184b2ff,SESCO,II.5.1,Jujuy,AR-Y,annual,2023,gas oil combustion consumption by agriculture machines,932.69064,TJ,CO2,74100.0,kg/TJ,69112376.424,kg +997c8603-1423-37e1-be55-f8ccae7e79fc,SESCO,II.5.1,Jujuy,AR-Y,annual,2023,gas oil combustion consumption by agriculture machines,932.69064,TJ,CH4,3.9,kg/TJ,3637.493496,kg +997c8603-1423-37e1-be55-f8ccae7e79fc,SESCO,II.5.1,Jujuy,AR-Y,annual,2023,gas oil combustion consumption by agriculture machines,932.69064,TJ,N2O,3.9,kg/TJ,3637.493496,kg +76aae08a-7012-3c57-83a4-ba4e268cf3cf,SESCO,II.5.1,La Pampa,AR-L,annual,2023,gas oil combustion consumption by agriculture machines,1452.78252,TJ,CO2,74100.0,kg/TJ,107651184.732,kg +8cec8e68-08c2-34e0-8a84-6c9637eb2517,SESCO,II.5.1,La Pampa,AR-L,annual,2023,gas oil combustion consumption by agriculture machines,1452.78252,TJ,CH4,3.9,kg/TJ,5665.851828,kg +8cec8e68-08c2-34e0-8a84-6c9637eb2517,SESCO,II.5.1,La Pampa,AR-L,annual,2023,gas oil combustion consumption by agriculture machines,1452.78252,TJ,N2O,3.9,kg/TJ,5665.851828,kg +5d0c9874-f848-37d8-b96b-5742adba7234,SESCO,II.5.1,La Rioja,AR-F,annual,2023,gas oil combustion consumption by agriculture machines,84.55692,TJ,CO2,74100.0,kg/TJ,6265667.772000001,kg +a6885e95-1d2b-38f0-b4d2-d17f5035415a,SESCO,II.5.1,La Rioja,AR-F,annual,2023,gas oil combustion consumption by agriculture machines,84.55692,TJ,CH4,3.9,kg/TJ,329.771988,kg +a6885e95-1d2b-38f0-b4d2-d17f5035415a,SESCO,II.5.1,La Rioja,AR-F,annual,2023,gas oil combustion consumption by agriculture machines,84.55692,TJ,N2O,3.9,kg/TJ,329.771988,kg +f9199add-e498-3845-a04e-be3cf48a7d9d,SESCO,II.5.1,Mendoza,AR-M,annual,2023,gas oil combustion consumption by agriculture machines,2486.3202,TJ,CO2,74100.0,kg/TJ,184236326.82000002,kg +08c04a98-5050-3acb-9083-c4815d56c5f0,SESCO,II.5.1,Mendoza,AR-M,annual,2023,gas oil combustion consumption by agriculture machines,2486.3202,TJ,CH4,3.9,kg/TJ,9696.64878,kg +08c04a98-5050-3acb-9083-c4815d56c5f0,SESCO,II.5.1,Mendoza,AR-M,annual,2023,gas oil combustion consumption by agriculture machines,2486.3202,TJ,N2O,3.9,kg/TJ,9696.64878,kg +789efae0-2a63-34cd-a6a4-b67ddbbd814c,SESCO,II.5.1,Misiones,AR-N,annual,2023,gas oil combustion consumption by agriculture machines,1237.8324,TJ,CO2,74100.0,kg/TJ,91723380.84,kg +44d4e11a-51df-3461-8343-ff5054b7afa5,SESCO,II.5.1,Misiones,AR-N,annual,2023,gas oil combustion consumption by agriculture machines,1237.8324,TJ,CH4,3.9,kg/TJ,4827.54636,kg +44d4e11a-51df-3461-8343-ff5054b7afa5,SESCO,II.5.1,Misiones,AR-N,annual,2023,gas oil combustion consumption by agriculture machines,1237.8324,TJ,N2O,3.9,kg/TJ,4827.54636,kg +0795293b-ff9e-3e0f-95ba-2c869f527796,SESCO,II.5.1,Neuquén,AR-Q,annual,2023,gas oil combustion consumption by agriculture machines,0.10836,TJ,CO2,74100.0,kg/TJ,8029.476,kg +95119bda-fa96-3950-817a-b1b57e2ef13e,SESCO,II.5.1,Neuquén,AR-Q,annual,2023,gas oil combustion consumption by agriculture machines,0.10836,TJ,CH4,3.9,kg/TJ,0.422604,kg +95119bda-fa96-3950-817a-b1b57e2ef13e,SESCO,II.5.1,Neuquén,AR-Q,annual,2023,gas oil combustion consumption by agriculture machines,0.10836,TJ,N2O,3.9,kg/TJ,0.422604,kg +0bc358f8-45fb-3520-a543-72ce8064040b,SESCO,II.5.1,Rio Negro,AR-R,annual,2023,gas oil combustion consumption by agriculture machines,158.2056,TJ,CO2,74100.0,kg/TJ,11723034.96,kg +20e9d325-7b09-35a4-9b25-bc92db859c34,SESCO,II.5.1,Rio Negro,AR-R,annual,2023,gas oil combustion consumption by agriculture machines,158.2056,TJ,CH4,3.9,kg/TJ,617.00184,kg +20e9d325-7b09-35a4-9b25-bc92db859c34,SESCO,II.5.1,Rio Negro,AR-R,annual,2023,gas oil combustion consumption by agriculture machines,158.2056,TJ,N2O,3.9,kg/TJ,617.00184,kg +1bf11900-3515-3aaf-8eb4-8b87d7838cac,SESCO,II.5.1,Salta,AR-A,annual,2023,gas oil combustion consumption by agriculture machines,1736.8301999999999,TJ,CO2,74100.0,kg/TJ,128699117.82,kg +51852086-ae0a-3647-974d-e64a6a977953,SESCO,II.5.1,Salta,AR-A,annual,2023,gas oil combustion consumption by agriculture machines,1736.8301999999999,TJ,CH4,3.9,kg/TJ,6773.637779999999,kg +51852086-ae0a-3647-974d-e64a6a977953,SESCO,II.5.1,Salta,AR-A,annual,2023,gas oil combustion consumption by agriculture machines,1736.8301999999999,TJ,N2O,3.9,kg/TJ,6773.637779999999,kg +f7c700d2-6f9b-3930-b05c-23295c9c49e1,SESCO,II.5.1,San Juan,AR-J,annual,2023,gas oil combustion consumption by agriculture machines,373.51691999999997,TJ,CO2,74100.0,kg/TJ,27677603.771999996,kg +eba45198-092e-382a-be96-dab2b6af08a8,SESCO,II.5.1,San Juan,AR-J,annual,2023,gas oil combustion consumption by agriculture machines,373.51691999999997,TJ,CH4,3.9,kg/TJ,1456.715988,kg +eba45198-092e-382a-be96-dab2b6af08a8,SESCO,II.5.1,San Juan,AR-J,annual,2023,gas oil combustion consumption by agriculture machines,373.51691999999997,TJ,N2O,3.9,kg/TJ,1456.715988,kg +16f5f5f6-6a35-3457-97bb-efbbf4590439,SESCO,II.5.1,San Luis,AR-D,annual,2023,gas oil combustion consumption by agriculture machines,274.72872,TJ,CO2,74100.0,kg/TJ,20357398.152000003,kg +cba69cc3-f12e-3a08-a649-3b83fdd0c351,SESCO,II.5.1,San Luis,AR-D,annual,2023,gas oil combustion consumption by agriculture machines,274.72872,TJ,CH4,3.9,kg/TJ,1071.442008,kg +cba69cc3-f12e-3a08-a649-3b83fdd0c351,SESCO,II.5.1,San Luis,AR-D,annual,2023,gas oil combustion consumption by agriculture machines,274.72872,TJ,N2O,3.9,kg/TJ,1071.442008,kg +e2d2ed6b-8e46-386c-93d2-d6ed261c88f1,SESCO,II.5.1,Santa Fe,AR-S,annual,2023,gas oil combustion consumption by agriculture machines,6257.21208,TJ,CO2,74100.0,kg/TJ,463659415.128,kg +fba09f10-c437-3f10-800d-d866f3bd99bb,SESCO,II.5.1,Santa Fe,AR-S,annual,2023,gas oil combustion consumption by agriculture machines,6257.21208,TJ,CH4,3.9,kg/TJ,24403.127112000002,kg +fba09f10-c437-3f10-800d-d866f3bd99bb,SESCO,II.5.1,Santa Fe,AR-S,annual,2023,gas oil combustion consumption by agriculture machines,6257.21208,TJ,N2O,3.9,kg/TJ,24403.127112000002,kg +2162f475-6456-35ee-a186-da9d2c735113,SESCO,II.5.1,Santiago del Estero,AR-G,annual,2023,gas oil combustion consumption by agriculture machines,1488.07176,TJ,CO2,74100.0,kg/TJ,110266117.41600001,kg +9c2582dc-f6cd-317d-b403-69d66e050b84,SESCO,II.5.1,Santiago del Estero,AR-G,annual,2023,gas oil combustion consumption by agriculture machines,1488.07176,TJ,CH4,3.9,kg/TJ,5803.479864,kg +9c2582dc-f6cd-317d-b403-69d66e050b84,SESCO,II.5.1,Santiago del Estero,AR-G,annual,2023,gas oil combustion consumption by agriculture machines,1488.07176,TJ,N2O,3.9,kg/TJ,5803.479864,kg +b0b35ee9-2922-38d9-a05a-3d19ff9dbb06,SESCO,II.5.1,Tucuman,AR-T,annual,2023,gas oil combustion consumption by agriculture machines,1130.3754,TJ,CO2,74100.0,kg/TJ,83760817.13999999,kg +0fbffb63-ead8-300d-9fda-438208d26e32,SESCO,II.5.1,Tucuman,AR-T,annual,2023,gas oil combustion consumption by agriculture machines,1130.3754,TJ,CH4,3.9,kg/TJ,4408.464059999999,kg +0fbffb63-ead8-300d-9fda-438208d26e32,SESCO,II.5.1,Tucuman,AR-T,annual,2023,gas oil combustion consumption by agriculture machines,1130.3754,TJ,N2O,3.9,kg/TJ,4408.464059999999,kg +1a0b7d95-9aa5-3199-a098-e4bfab4567ad,SESCO,II.5.1,Buenos Aires,AR-B,annual,2023,gas oil combustion consumption by agriculture machines,2140.8324,TJ,CO2,74100.0,kg/TJ,158635680.83999997,kg +f6ab8a3c-71e4-3ce5-bcf5-f3a38c64aa43,SESCO,II.5.1,Buenos Aires,AR-B,annual,2023,gas oil combustion consumption by agriculture machines,2140.8324,TJ,CH4,3.9,kg/TJ,8349.24636,kg +f6ab8a3c-71e4-3ce5-bcf5-f3a38c64aa43,SESCO,II.5.1,Buenos Aires,AR-B,annual,2023,gas oil combustion consumption by agriculture machines,2140.8324,TJ,N2O,3.9,kg/TJ,8349.24636,kg +87a2ccd9-9abd-36d4-80b2-e3c550798578,SESCO,II.5.1,Capital Federal,AR-C,annual,2023,gas oil combustion consumption by agriculture machines,10.51092,TJ,CO2,74100.0,kg/TJ,778859.172,kg +57cd5cb3-14cc-3d50-b20d-50e4b95366ee,SESCO,II.5.1,Capital Federal,AR-C,annual,2023,gas oil combustion consumption by agriculture machines,10.51092,TJ,CH4,3.9,kg/TJ,40.992588,kg +57cd5cb3-14cc-3d50-b20d-50e4b95366ee,SESCO,II.5.1,Capital Federal,AR-C,annual,2023,gas oil combustion consumption by agriculture machines,10.51092,TJ,N2O,3.9,kg/TJ,40.992588,kg +03a71b6b-f8e7-3c73-b219-05e2b692f926,SESCO,II.5.1,Catamarca,AR-K,annual,2023,gas oil combustion consumption by agriculture machines,59.12844,TJ,CO2,74100.0,kg/TJ,4381417.404,kg +bb3499c0-26c9-3dd1-9d6a-0f149c3790f4,SESCO,II.5.1,Catamarca,AR-K,annual,2023,gas oil combustion consumption by agriculture machines,59.12844,TJ,CH4,3.9,kg/TJ,230.60091599999998,kg +bb3499c0-26c9-3dd1-9d6a-0f149c3790f4,SESCO,II.5.1,Catamarca,AR-K,annual,2023,gas oil combustion consumption by agriculture machines,59.12844,TJ,N2O,3.9,kg/TJ,230.60091599999998,kg +39ae083f-9075-3f0b-885b-e8f684befae4,SESCO,II.5.1,Chaco,AR-H,annual,2023,gas oil combustion consumption by agriculture machines,27.48732,TJ,CO2,74100.0,kg/TJ,2036810.412,kg +ffb002bf-a13e-37bd-bced-5527af7126b7,SESCO,II.5.1,Chaco,AR-H,annual,2023,gas oil combustion consumption by agriculture machines,27.48732,TJ,CH4,3.9,kg/TJ,107.200548,kg +ffb002bf-a13e-37bd-bced-5527af7126b7,SESCO,II.5.1,Chaco,AR-H,annual,2023,gas oil combustion consumption by agriculture machines,27.48732,TJ,N2O,3.9,kg/TJ,107.200548,kg +11be6a2e-6ffd-39f3-a432-8d5bc7a30bbb,SESCO,II.5.1,Corrientes,AR-W,annual,2023,gas oil combustion consumption by agriculture machines,29.799,TJ,CO2,74100.0,kg/TJ,2208105.9,kg +7579e02d-ce20-36c5-983a-7286b83b2980,SESCO,II.5.1,Corrientes,AR-W,annual,2023,gas oil combustion consumption by agriculture machines,29.799,TJ,CH4,3.9,kg/TJ,116.2161,kg +7579e02d-ce20-36c5-983a-7286b83b2980,SESCO,II.5.1,Corrientes,AR-W,annual,2023,gas oil combustion consumption by agriculture machines,29.799,TJ,N2O,3.9,kg/TJ,116.2161,kg +dbcd01bf-6294-370b-b330-731404ed7aff,SESCO,II.5.1,Córdoba,AR-X,annual,2023,gas oil combustion consumption by agriculture machines,479.493,TJ,CO2,74100.0,kg/TJ,35530431.3,kg +fa653478-e733-3bd6-91cb-f92a3309a8dc,SESCO,II.5.1,Córdoba,AR-X,annual,2023,gas oil combustion consumption by agriculture machines,479.493,TJ,CH4,3.9,kg/TJ,1870.0227,kg +fa653478-e733-3bd6-91cb-f92a3309a8dc,SESCO,II.5.1,Córdoba,AR-X,annual,2023,gas oil combustion consumption by agriculture machines,479.493,TJ,N2O,3.9,kg/TJ,1870.0227,kg +5ab0f6f2-68da-3119-a2f9-6ef882f29bd6,SESCO,II.5.1,Entre Rios,AR-E,annual,2023,gas oil combustion consumption by agriculture machines,37.09524,TJ,CO2,74100.0,kg/TJ,2748757.284,kg +49a620b5-95b6-3937-995b-368608cd0171,SESCO,II.5.1,Entre Rios,AR-E,annual,2023,gas oil combustion consumption by agriculture machines,37.09524,TJ,CH4,3.9,kg/TJ,144.67143599999997,kg +49a620b5-95b6-3937-995b-368608cd0171,SESCO,II.5.1,Entre Rios,AR-E,annual,2023,gas oil combustion consumption by agriculture machines,37.09524,TJ,N2O,3.9,kg/TJ,144.67143599999997,kg +4a494f7a-14f5-37e4-a12f-1857b98cab08,SESCO,II.5.1,Formosa,AR-P,annual,2023,gas oil combustion consumption by agriculture machines,35.0364,TJ,CO2,74100.0,kg/TJ,2596197.24,kg +e34c42ae-a5a6-32c2-ac16-f3f837382d8c,SESCO,II.5.1,Formosa,AR-P,annual,2023,gas oil combustion consumption by agriculture machines,35.0364,TJ,CH4,3.9,kg/TJ,136.64196,kg +e34c42ae-a5a6-32c2-ac16-f3f837382d8c,SESCO,II.5.1,Formosa,AR-P,annual,2023,gas oil combustion consumption by agriculture machines,35.0364,TJ,N2O,3.9,kg/TJ,136.64196,kg +d40e0eb6-ab57-39e2-ba85-b43f81f0c43f,SESCO,II.5.1,Jujuy,AR-Y,annual,2023,gas oil combustion consumption by agriculture machines,30.81036,TJ,CO2,74100.0,kg/TJ,2283047.676,kg +78e6a5a0-1879-33b5-a78c-6ddafa020eab,SESCO,II.5.1,Jujuy,AR-Y,annual,2023,gas oil combustion consumption by agriculture machines,30.81036,TJ,CH4,3.9,kg/TJ,120.160404,kg +78e6a5a0-1879-33b5-a78c-6ddafa020eab,SESCO,II.5.1,Jujuy,AR-Y,annual,2023,gas oil combustion consumption by agriculture machines,30.81036,TJ,N2O,3.9,kg/TJ,120.160404,kg +faa03e97-564a-39a5-b329-33287bcb08f9,SESCO,II.5.1,La Pampa,AR-L,annual,2023,gas oil combustion consumption by agriculture machines,121.79664,TJ,CO2,74100.0,kg/TJ,9025131.024,kg +6439dd36-b058-3d4d-a384-b8ba96d3c519,SESCO,II.5.1,La Pampa,AR-L,annual,2023,gas oil combustion consumption by agriculture machines,121.79664,TJ,CH4,3.9,kg/TJ,475.006896,kg +6439dd36-b058-3d4d-a384-b8ba96d3c519,SESCO,II.5.1,La Pampa,AR-L,annual,2023,gas oil combustion consumption by agriculture machines,121.79664,TJ,N2O,3.9,kg/TJ,475.006896,kg +17d06eb0-6983-362d-b3af-8308775d4323,SESCO,II.5.1,La Rioja,AR-F,annual,2023,gas oil combustion consumption by agriculture machines,47.75064,TJ,CO2,74100.0,kg/TJ,3538322.4239999996,kg +17a5467a-f37f-3df1-b2e6-a6d2b70353d2,SESCO,II.5.1,La Rioja,AR-F,annual,2023,gas oil combustion consumption by agriculture machines,47.75064,TJ,CH4,3.9,kg/TJ,186.22749599999997,kg +17a5467a-f37f-3df1-b2e6-a6d2b70353d2,SESCO,II.5.1,La Rioja,AR-F,annual,2023,gas oil combustion consumption by agriculture machines,47.75064,TJ,N2O,3.9,kg/TJ,186.22749599999997,kg +a6f4a954-8d85-3e3d-a593-0256f3e4c28c,SESCO,II.5.1,Mendoza,AR-M,annual,2023,gas oil combustion consumption by agriculture machines,236.11643999999998,TJ,CO2,74100.0,kg/TJ,17496228.204,kg +43f1eec1-bbd4-363d-acba-b64b11ef28d4,SESCO,II.5.1,Mendoza,AR-M,annual,2023,gas oil combustion consumption by agriculture machines,236.11643999999998,TJ,CH4,3.9,kg/TJ,920.8541159999999,kg +43f1eec1-bbd4-363d-acba-b64b11ef28d4,SESCO,II.5.1,Mendoza,AR-M,annual,2023,gas oil combustion consumption by agriculture machines,236.11643999999998,TJ,N2O,3.9,kg/TJ,920.8541159999999,kg +4b786a41-aa79-3f96-962b-5e4b7f12fee1,SESCO,II.5.1,Misiones,AR-N,annual,2023,gas oil combustion consumption by agriculture machines,67.5444,TJ,CO2,74100.0,kg/TJ,5005040.04,kg +8e695b2a-7844-3f86-b116-1115a06aac06,SESCO,II.5.1,Misiones,AR-N,annual,2023,gas oil combustion consumption by agriculture machines,67.5444,TJ,CH4,3.9,kg/TJ,263.42316,kg +8e695b2a-7844-3f86-b116-1115a06aac06,SESCO,II.5.1,Misiones,AR-N,annual,2023,gas oil combustion consumption by agriculture machines,67.5444,TJ,N2O,3.9,kg/TJ,263.42316,kg +1cacfa1f-1843-38f5-9a39-0c89c5d5f3bf,SESCO,II.5.1,Rio Negro,AR-R,annual,2023,gas oil combustion consumption by agriculture machines,58.1532,TJ,CO2,74100.0,kg/TJ,4309152.12,kg +4ebb658c-def2-318b-afe1-53ce53bdbe89,SESCO,II.5.1,Rio Negro,AR-R,annual,2023,gas oil combustion consumption by agriculture machines,58.1532,TJ,CH4,3.9,kg/TJ,226.79747999999998,kg +4ebb658c-def2-318b-afe1-53ce53bdbe89,SESCO,II.5.1,Rio Negro,AR-R,annual,2023,gas oil combustion consumption by agriculture machines,58.1532,TJ,N2O,3.9,kg/TJ,226.79747999999998,kg +c89505bb-edf0-35bb-babd-e21da5f80133,SESCO,II.5.1,Salta,AR-A,annual,2023,gas oil combustion consumption by agriculture machines,274.76484,TJ,CO2,74100.0,kg/TJ,20360074.644,kg +a8cafd0b-532d-3b71-a1af-6517a418f96d,SESCO,II.5.1,Salta,AR-A,annual,2023,gas oil combustion consumption by agriculture machines,274.76484,TJ,CH4,3.9,kg/TJ,1071.582876,kg +a8cafd0b-532d-3b71-a1af-6517a418f96d,SESCO,II.5.1,Salta,AR-A,annual,2023,gas oil combustion consumption by agriculture machines,274.76484,TJ,N2O,3.9,kg/TJ,1071.582876,kg +6eee679c-558f-32da-a099-bc8064cccbf3,SESCO,II.5.1,San Juan,AR-J,annual,2023,gas oil combustion consumption by agriculture machines,61.54848,TJ,CO2,74100.0,kg/TJ,4560742.368,kg +62447040-bc32-3b4d-a3c3-ae0111ae9e92,SESCO,II.5.1,San Juan,AR-J,annual,2023,gas oil combustion consumption by agriculture machines,61.54848,TJ,CH4,3.9,kg/TJ,240.03907199999998,kg +62447040-bc32-3b4d-a3c3-ae0111ae9e92,SESCO,II.5.1,San Juan,AR-J,annual,2023,gas oil combustion consumption by agriculture machines,61.54848,TJ,N2O,3.9,kg/TJ,240.03907199999998,kg +88ee4502-49d5-3b28-a20e-a05a62763834,SESCO,II.5.1,San Luis,AR-D,annual,2023,gas oil combustion consumption by agriculture machines,31.46052,TJ,CO2,74100.0,kg/TJ,2331224.532,kg +22de3b5f-c791-3bfa-8052-d25d0419a588,SESCO,II.5.1,San Luis,AR-D,annual,2023,gas oil combustion consumption by agriculture machines,31.46052,TJ,CH4,3.9,kg/TJ,122.696028,kg +22de3b5f-c791-3bfa-8052-d25d0419a588,SESCO,II.5.1,San Luis,AR-D,annual,2023,gas oil combustion consumption by agriculture machines,31.46052,TJ,N2O,3.9,kg/TJ,122.696028,kg +5c0b9229-72b9-3cff-aecf-a0ea0aaf85f8,SESCO,II.5.1,Santa Fe,AR-S,annual,2023,gas oil combustion consumption by agriculture machines,377.05668,TJ,CO2,74100.0,kg/TJ,27939899.987999998,kg +d15bc6d8-1921-3de6-b200-7af8e7e7d5c2,SESCO,II.5.1,Santa Fe,AR-S,annual,2023,gas oil combustion consumption by agriculture machines,377.05668,TJ,CH4,3.9,kg/TJ,1470.5210519999998,kg +d15bc6d8-1921-3de6-b200-7af8e7e7d5c2,SESCO,II.5.1,Santa Fe,AR-S,annual,2023,gas oil combustion consumption by agriculture machines,377.05668,TJ,N2O,3.9,kg/TJ,1470.5210519999998,kg +12f06a57-1d8f-3807-8b82-f89be01ebde0,SESCO,II.5.1,Santiago del Estero,AR-G,annual,2023,gas oil combustion consumption by agriculture machines,223.79952,TJ,CO2,74100.0,kg/TJ,16583544.432,kg +0c1307f5-4ac9-3950-b3ee-9032734d141c,SESCO,II.5.1,Santiago del Estero,AR-G,annual,2023,gas oil combustion consumption by agriculture machines,223.79952,TJ,CH4,3.9,kg/TJ,872.818128,kg +0c1307f5-4ac9-3950-b3ee-9032734d141c,SESCO,II.5.1,Santiago del Estero,AR-G,annual,2023,gas oil combustion consumption by agriculture machines,223.79952,TJ,N2O,3.9,kg/TJ,872.818128,kg +f0288363-6e01-3a77-b5cc-3fd681c8616d,SESCO,II.5.1,Tucuman,AR-T,annual,2023,gas oil combustion consumption by agriculture machines,67.76112,TJ,CO2,74100.0,kg/TJ,5021098.992000001,kg +5a801920-77f7-391d-b971-4d505946a681,SESCO,II.5.1,Tucuman,AR-T,annual,2023,gas oil combustion consumption by agriculture machines,67.76112,TJ,CH4,3.9,kg/TJ,264.268368,kg +5a801920-77f7-391d-b971-4d505946a681,SESCO,II.5.1,Tucuman,AR-T,annual,2023,gas oil combustion consumption by agriculture machines,67.76112,TJ,N2O,3.9,kg/TJ,264.268368,kg +61b8f565-df72-3d25-a65d-b60347335663,SESCO,II.5.1,Buenos Aires,AR-B,annual,2023,jet kerosene combustion consumption by agriculture machines,3.9630779999999994,TJ,CO2,71500.0,kg/TJ,283360.07699999993,kg +68c29c88-49ca-3c56-9b55-8adc938e9781,SESCO,II.5.1,Buenos Aires,AR-B,annual,2023,jet kerosene combustion consumption by agriculture machines,3.9630779999999994,TJ,CH4,0.5,kg/TJ,1.9815389999999997,kg +33564f2c-3350-3e2e-85f8-64045f55d2c7,SESCO,II.5.1,Buenos Aires,AR-B,annual,2023,jet kerosene combustion consumption by agriculture machines,3.9630779999999994,TJ,N2O,2.0,kg/TJ,7.926155999999999,kg +f15cf9af-afeb-31b9-a32e-757a60ba7346,SESCO,II.5.1,Córdoba,AR-X,annual,2023,jet kerosene combustion consumption by agriculture machines,0.31453,TJ,CO2,71500.0,kg/TJ,22488.894999999997,kg +cf48b8c3-2f61-3dd0-b123-b5d477ee9603,SESCO,II.5.1,Córdoba,AR-X,annual,2023,jet kerosene combustion consumption by agriculture machines,0.31453,TJ,CH4,0.5,kg/TJ,0.157265,kg +ba1ec442-4a67-3a2f-9a40-c16e4a8f5665,SESCO,II.5.1,Córdoba,AR-X,annual,2023,jet kerosene combustion consumption by agriculture machines,0.31453,TJ,N2O,2.0,kg/TJ,0.62906,kg +9f968c3e-cbe5-3315-bc81-a6a88ff259f2,SESCO,II.5.1,Santa Fe,AR-S,annual,2023,jet kerosene combustion consumption by agriculture machines,0.25162399999999996,TJ,CO2,71500.0,kg/TJ,17991.115999999998,kg +00ff08c4-4804-379c-97b3-2b1ae630872a,SESCO,II.5.1,Santa Fe,AR-S,annual,2023,jet kerosene combustion consumption by agriculture machines,0.25162399999999996,TJ,CH4,0.5,kg/TJ,0.12581199999999998,kg +a0907ad1-e862-3abd-a013-011f9aebfb24,SESCO,II.5.1,Santa Fe,AR-S,annual,2023,jet kerosene combustion consumption by agriculture machines,0.25162399999999996,TJ,N2O,2.0,kg/TJ,0.5032479999999999,kg +f9bca6f7-f084-3609-95bc-fe5f39d46cd9,SESCO,II.1.1,Buenos Aires,AR-B,annual,2023,gas oil combustion consumption by to the public,29377.443479999998,TJ,CO2,74100.0,kg/TJ,2176868561.868,kg +7cb75588-d6d9-3f48-8767-e5b29992a2fd,SESCO,II.1.1,Buenos Aires,AR-B,annual,2023,gas oil combustion consumption by to the public,29377.443479999998,TJ,CH4,3.9,kg/TJ,114572.02957199998,kg +7cb75588-d6d9-3f48-8767-e5b29992a2fd,SESCO,II.1.1,Buenos Aires,AR-B,annual,2023,gas oil combustion consumption by to the public,29377.443479999998,TJ,N2O,3.9,kg/TJ,114572.02957199998,kg +c29347a3-6c44-34a9-9114-69dd5175d4bf,SESCO,II.1.1,Capital Federal,AR-C,annual,2023,gas oil combustion consumption by to the public,3614.42004,TJ,CO2,74100.0,kg/TJ,267828524.964,kg +280ba808-ed45-31c5-9b96-714ce912191e,SESCO,II.1.1,Capital Federal,AR-C,annual,2023,gas oil combustion consumption by to the public,3614.42004,TJ,CH4,3.9,kg/TJ,14096.238156,kg +280ba808-ed45-31c5-9b96-714ce912191e,SESCO,II.1.1,Capital Federal,AR-C,annual,2023,gas oil combustion consumption by to the public,3614.42004,TJ,N2O,3.9,kg/TJ,14096.238156,kg +17485993-d8b6-3362-bb0d-8052dadde7ce,SESCO,II.1.1,Catamarca,AR-K,annual,2023,gas oil combustion consumption by to the public,531.57804,TJ,CO2,74100.0,kg/TJ,39389932.764,kg +90d7d37f-788d-3d35-a8f3-e6d34b5e087c,SESCO,II.1.1,Catamarca,AR-K,annual,2023,gas oil combustion consumption by to the public,531.57804,TJ,CH4,3.9,kg/TJ,2073.154356,kg +90d7d37f-788d-3d35-a8f3-e6d34b5e087c,SESCO,II.1.1,Catamarca,AR-K,annual,2023,gas oil combustion consumption by to the public,531.57804,TJ,N2O,3.9,kg/TJ,2073.154356,kg +ae1df8d5-56d6-381e-b2f0-0f0b440c5f34,SESCO,II.1.1,Chaco,AR-H,annual,2023,gas oil combustion consumption by to the public,2323.56348,TJ,CO2,74100.0,kg/TJ,172176053.86799997,kg +0d37ff49-2dd5-3628-96a4-fce494664d79,SESCO,II.1.1,Chaco,AR-H,annual,2023,gas oil combustion consumption by to the public,2323.56348,TJ,CH4,3.9,kg/TJ,9061.897572,kg +0d37ff49-2dd5-3628-96a4-fce494664d79,SESCO,II.1.1,Chaco,AR-H,annual,2023,gas oil combustion consumption by to the public,2323.56348,TJ,N2O,3.9,kg/TJ,9061.897572,kg +d947fe27-94a3-3199-a887-d05a4ce76cb4,SESCO,II.1.1,Chubut,AR-U,annual,2023,gas oil combustion consumption by to the public,2677.97292,TJ,CO2,74100.0,kg/TJ,198437793.372,kg +fa80d9fa-69a6-38da-9730-9c5b256631c9,SESCO,II.1.1,Chubut,AR-U,annual,2023,gas oil combustion consumption by to the public,2677.97292,TJ,CH4,3.9,kg/TJ,10444.094388,kg +fa80d9fa-69a6-38da-9730-9c5b256631c9,SESCO,II.1.1,Chubut,AR-U,annual,2023,gas oil combustion consumption by to the public,2677.97292,TJ,N2O,3.9,kg/TJ,10444.094388,kg +205d8414-3725-3d98-916c-a2e0a6ad0897,SESCO,II.1.1,Corrientes,AR-W,annual,2023,gas oil combustion consumption by to the public,2339.45628,TJ,CO2,74100.0,kg/TJ,173353710.348,kg +67573ff8-9c00-3560-8691-fb4f38e59eea,SESCO,II.1.1,Corrientes,AR-W,annual,2023,gas oil combustion consumption by to the public,2339.45628,TJ,CH4,3.9,kg/TJ,9123.879492,kg +67573ff8-9c00-3560-8691-fb4f38e59eea,SESCO,II.1.1,Corrientes,AR-W,annual,2023,gas oil combustion consumption by to the public,2339.45628,TJ,N2O,3.9,kg/TJ,9123.879492,kg +f02559d2-e2c3-31b3-946a-b6ef7efa256f,SESCO,II.1.1,Córdoba,AR-X,annual,2023,gas oil combustion consumption by to the public,10595.0796,TJ,CO2,74100.0,kg/TJ,785095398.3599999,kg +4e80e4fd-20bd-39da-9393-b61957792ee5,SESCO,II.1.1,Córdoba,AR-X,annual,2023,gas oil combustion consumption by to the public,10595.0796,TJ,CH4,3.9,kg/TJ,41320.810439999994,kg +4e80e4fd-20bd-39da-9393-b61957792ee5,SESCO,II.1.1,Córdoba,AR-X,annual,2023,gas oil combustion consumption by to the public,10595.0796,TJ,N2O,3.9,kg/TJ,41320.810439999994,kg +32a781c1-ba85-3c0c-995a-d193b33994bc,SESCO,II.1.1,Entre Rios,AR-E,annual,2023,gas oil combustion consumption by to the public,4307.59896,TJ,CO2,74100.0,kg/TJ,319193082.93600005,kg +b3f06d80-7b5f-31b0-98ea-ba5740a35723,SESCO,II.1.1,Entre Rios,AR-E,annual,2023,gas oil combustion consumption by to the public,4307.59896,TJ,CH4,3.9,kg/TJ,16799.635944,kg +b3f06d80-7b5f-31b0-98ea-ba5740a35723,SESCO,II.1.1,Entre Rios,AR-E,annual,2023,gas oil combustion consumption by to the public,4307.59896,TJ,N2O,3.9,kg/TJ,16799.635944,kg +e8742958-83a9-3362-a827-8e2abee23dd3,SESCO,II.1.1,Formosa,AR-P,annual,2023,gas oil combustion consumption by to the public,815.37288,TJ,CO2,74100.0,kg/TJ,60419130.408,kg +d3b138ea-d393-3ae8-8f6d-d78205f31be4,SESCO,II.1.1,Formosa,AR-P,annual,2023,gas oil combustion consumption by to the public,815.37288,TJ,CH4,3.9,kg/TJ,3179.954232,kg +d3b138ea-d393-3ae8-8f6d-d78205f31be4,SESCO,II.1.1,Formosa,AR-P,annual,2023,gas oil combustion consumption by to the public,815.37288,TJ,N2O,3.9,kg/TJ,3179.954232,kg +6f412867-64bf-326e-a047-97eec206fca2,SESCO,II.1.1,Jujuy,AR-Y,annual,2023,gas oil combustion consumption by to the public,1795.12788,TJ,CO2,74100.0,kg/TJ,133018975.908,kg +cb58e59a-66e9-3e40-ba8d-c49330988bd4,SESCO,II.1.1,Jujuy,AR-Y,annual,2023,gas oil combustion consumption by to the public,1795.12788,TJ,CH4,3.9,kg/TJ,7000.998732,kg +cb58e59a-66e9-3e40-ba8d-c49330988bd4,SESCO,II.1.1,Jujuy,AR-Y,annual,2023,gas oil combustion consumption by to the public,1795.12788,TJ,N2O,3.9,kg/TJ,7000.998732,kg +0e4b5835-f178-3caf-bf8b-71527552f10b,SESCO,II.1.1,La Pampa,AR-L,annual,2023,gas oil combustion consumption by to the public,2944.7191199999997,TJ,CO2,74100.0,kg/TJ,218203686.792,kg +c4240c9a-5d19-3ade-a38f-7c82edee9188,SESCO,II.1.1,La Pampa,AR-L,annual,2023,gas oil combustion consumption by to the public,2944.7191199999997,TJ,CH4,3.9,kg/TJ,11484.404567999998,kg +c4240c9a-5d19-3ade-a38f-7c82edee9188,SESCO,II.1.1,La Pampa,AR-L,annual,2023,gas oil combustion consumption by to the public,2944.7191199999997,TJ,N2O,3.9,kg/TJ,11484.404567999998,kg +8f3c40cd-6553-309f-bf15-6fbe477afaa2,SESCO,II.1.1,La Rioja,AR-F,annual,2023,gas oil combustion consumption by to the public,601.398,TJ,CO2,74100.0,kg/TJ,44563591.800000004,kg +127a6d17-70f4-310a-b223-67df85478c3e,SESCO,II.1.1,La Rioja,AR-F,annual,2023,gas oil combustion consumption by to the public,601.398,TJ,CH4,3.9,kg/TJ,2345.4522,kg +127a6d17-70f4-310a-b223-67df85478c3e,SESCO,II.1.1,La Rioja,AR-F,annual,2023,gas oil combustion consumption by to the public,601.398,TJ,N2O,3.9,kg/TJ,2345.4522,kg +7e2cb059-555d-31b5-9f59-6b052f0debba,SESCO,II.1.1,Mendoza,AR-M,annual,2023,gas oil combustion consumption by to the public,9249.9708,TJ,CO2,74100.0,kg/TJ,685422836.28,kg +5c238853-ce93-37b6-8862-008be6cfddce,SESCO,II.1.1,Mendoza,AR-M,annual,2023,gas oil combustion consumption by to the public,9249.9708,TJ,CH4,3.9,kg/TJ,36074.886119999996,kg +5c238853-ce93-37b6-8862-008be6cfddce,SESCO,II.1.1,Mendoza,AR-M,annual,2023,gas oil combustion consumption by to the public,9249.9708,TJ,N2O,3.9,kg/TJ,36074.886119999996,kg +2312e3aa-bd67-35cf-9e55-1975a67418af,SESCO,II.1.1,Misiones,AR-N,annual,2023,gas oil combustion consumption by to the public,3559.9872,TJ,CO2,74100.0,kg/TJ,263795051.52,kg +710efea7-b0b4-3fff-9538-ee379ff6511e,SESCO,II.1.1,Misiones,AR-N,annual,2023,gas oil combustion consumption by to the public,3559.9872,TJ,CH4,3.9,kg/TJ,13883.95008,kg +710efea7-b0b4-3fff-9538-ee379ff6511e,SESCO,II.1.1,Misiones,AR-N,annual,2023,gas oil combustion consumption by to the public,3559.9872,TJ,N2O,3.9,kg/TJ,13883.95008,kg +e669fc19-8169-39c6-8bc7-eb663561deac,SESCO,II.1.1,Neuquén,AR-Q,annual,2023,gas oil combustion consumption by to the public,2056.60056,TJ,CO2,74100.0,kg/TJ,152394101.496,kg +7be9226c-5d4d-33b8-9e06-0d44500d2d23,SESCO,II.1.1,Neuquén,AR-Q,annual,2023,gas oil combustion consumption by to the public,2056.60056,TJ,CH4,3.9,kg/TJ,8020.742183999999,kg +7be9226c-5d4d-33b8-9e06-0d44500d2d23,SESCO,II.1.1,Neuquén,AR-Q,annual,2023,gas oil combustion consumption by to the public,2056.60056,TJ,N2O,3.9,kg/TJ,8020.742183999999,kg +ef11cb89-61af-3b64-be84-20f12d17ce43,SESCO,II.1.1,Rio Negro,AR-R,annual,2023,gas oil combustion consumption by to the public,3949.3608,TJ,CO2,74100.0,kg/TJ,292647635.28,kg +e463aa64-1f71-3c46-8add-05a1dbc4c45d,SESCO,II.1.1,Rio Negro,AR-R,annual,2023,gas oil combustion consumption by to the public,3949.3608,TJ,CH4,3.9,kg/TJ,15402.50712,kg +e463aa64-1f71-3c46-8add-05a1dbc4c45d,SESCO,II.1.1,Rio Negro,AR-R,annual,2023,gas oil combustion consumption by to the public,3949.3608,TJ,N2O,3.9,kg/TJ,15402.50712,kg +d6dc4b2c-7c68-3622-afd8-7dbd66a76ac5,SESCO,II.1.1,Salta,AR-A,annual,2023,gas oil combustion consumption by to the public,3811.52688,TJ,CO2,74100.0,kg/TJ,282434141.80799997,kg +32d4dbb9-e477-3daa-85e4-993376650d29,SESCO,II.1.1,Salta,AR-A,annual,2023,gas oil combustion consumption by to the public,3811.52688,TJ,CH4,3.9,kg/TJ,14864.954832,kg +32d4dbb9-e477-3daa-85e4-993376650d29,SESCO,II.1.1,Salta,AR-A,annual,2023,gas oil combustion consumption by to the public,3811.52688,TJ,N2O,3.9,kg/TJ,14864.954832,kg +5fc86388-cafb-3231-a4bc-1fdd825ab371,SESCO,II.1.1,San Juan,AR-J,annual,2023,gas oil combustion consumption by to the public,1526.6118,TJ,CO2,74100.0,kg/TJ,113121934.38,kg +0dee8b40-5323-3c2f-a0f8-a670dff79dca,SESCO,II.1.1,San Juan,AR-J,annual,2023,gas oil combustion consumption by to the public,1526.6118,TJ,CH4,3.9,kg/TJ,5953.78602,kg +0dee8b40-5323-3c2f-a0f8-a670dff79dca,SESCO,II.1.1,San Juan,AR-J,annual,2023,gas oil combustion consumption by to the public,1526.6118,TJ,N2O,3.9,kg/TJ,5953.78602,kg +5c138094-60d7-3dd5-8bae-f59e65580d59,SESCO,II.1.1,San Luis,AR-D,annual,2023,gas oil combustion consumption by to the public,1453.25208,TJ,CO2,74100.0,kg/TJ,107685979.12799999,kg +ccde7921-7569-3e7b-83b5-f7e4f25d002c,SESCO,II.1.1,San Luis,AR-D,annual,2023,gas oil combustion consumption by to the public,1453.25208,TJ,CH4,3.9,kg/TJ,5667.683112,kg +ccde7921-7569-3e7b-83b5-f7e4f25d002c,SESCO,II.1.1,San Luis,AR-D,annual,2023,gas oil combustion consumption by to the public,1453.25208,TJ,N2O,3.9,kg/TJ,5667.683112,kg +bab11c86-04d0-3c42-8ba8-826c354e88ac,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2023,gas oil combustion consumption by to the public,1669.03296,TJ,CO2,74100.0,kg/TJ,123675342.336,kg +b1f6d187-d7f4-3abd-9920-654905574cde,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2023,gas oil combustion consumption by to the public,1669.03296,TJ,CH4,3.9,kg/TJ,6509.228544,kg +b1f6d187-d7f4-3abd-9920-654905574cde,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2023,gas oil combustion consumption by to the public,1669.03296,TJ,N2O,3.9,kg/TJ,6509.228544,kg +fc1c39e2-fb4a-37e9-b1ba-220a895d13a4,SESCO,II.1.1,Santa Fe,AR-S,annual,2023,gas oil combustion consumption by to the public,7234.76376,TJ,CO2,74100.0,kg/TJ,536095994.616,kg +4073e374-1e59-32bc-bdb9-07c7296748d2,SESCO,II.1.1,Santa Fe,AR-S,annual,2023,gas oil combustion consumption by to the public,7234.76376,TJ,CH4,3.9,kg/TJ,28215.578663999997,kg +4073e374-1e59-32bc-bdb9-07c7296748d2,SESCO,II.1.1,Santa Fe,AR-S,annual,2023,gas oil combustion consumption by to the public,7234.76376,TJ,N2O,3.9,kg/TJ,28215.578663999997,kg +0e2f483a-a6b9-3dbf-92ef-74e01f89d105,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2023,gas oil combustion consumption by to the public,2363.90952,TJ,CO2,74100.0,kg/TJ,175165695.432,kg +87b4c821-9424-3fda-b043-138aef848e56,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2023,gas oil combustion consumption by to the public,2363.90952,TJ,CH4,3.9,kg/TJ,9219.247128,kg +87b4c821-9424-3fda-b043-138aef848e56,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2023,gas oil combustion consumption by to the public,2363.90952,TJ,N2O,3.9,kg/TJ,9219.247128,kg +693ca7f3-853e-3d75-8017-3662e9855422,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2023,gas oil combustion consumption by to the public,704.23164,TJ,CO2,74100.0,kg/TJ,52183564.524,kg +9e00ca30-ff8a-3e3e-ba5a-242f9bf5b1b7,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2023,gas oil combustion consumption by to the public,704.23164,TJ,CH4,3.9,kg/TJ,2746.5033959999996,kg +9e00ca30-ff8a-3e3e-ba5a-242f9bf5b1b7,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2023,gas oil combustion consumption by to the public,704.23164,TJ,N2O,3.9,kg/TJ,2746.5033959999996,kg +27e8eb84-754e-3817-a211-c7a4ff46cde0,SESCO,II.1.1,Tucuman,AR-T,annual,2023,gas oil combustion consumption by to the public,2746.2036,TJ,CO2,74100.0,kg/TJ,203493686.76,kg +4927cf16-47c1-311d-8945-4ad2a8ec455b,SESCO,II.1.1,Tucuman,AR-T,annual,2023,gas oil combustion consumption by to the public,2746.2036,TJ,CH4,3.9,kg/TJ,10710.194039999998,kg +4927cf16-47c1-311d-8945-4ad2a8ec455b,SESCO,II.1.1,Tucuman,AR-T,annual,2023,gas oil combustion consumption by to the public,2746.2036,TJ,N2O,3.9,kg/TJ,10710.194039999998,kg +6051fec0-6ced-382e-a6d8-7d6500892584,SESCO,II.1.1,Buenos Aires,AR-B,annual,2023,gas oil combustion consumption by to the public,15581.9874,TJ,CO2,74100.0,kg/TJ,1154625266.34,kg +f22c1853-50df-3305-b153-2414cc0b0393,SESCO,II.1.1,Buenos Aires,AR-B,annual,2023,gas oil combustion consumption by to the public,15581.9874,TJ,CH4,3.9,kg/TJ,60769.75086,kg +f22c1853-50df-3305-b153-2414cc0b0393,SESCO,II.1.1,Buenos Aires,AR-B,annual,2023,gas oil combustion consumption by to the public,15581.9874,TJ,N2O,3.9,kg/TJ,60769.75086,kg +005ed1dc-714f-3af1-bb80-cb28fa1a9a54,SESCO,II.1.1,Capital Federal,AR-C,annual,2023,gas oil combustion consumption by to the public,2249.84256,TJ,CO2,74100.0,kg/TJ,166713333.696,kg +04d4fb4f-e3c0-31f0-a9e8-071003f00849,SESCO,II.1.1,Capital Federal,AR-C,annual,2023,gas oil combustion consumption by to the public,2249.84256,TJ,CH4,3.9,kg/TJ,8774.385984,kg +04d4fb4f-e3c0-31f0-a9e8-071003f00849,SESCO,II.1.1,Capital Federal,AR-C,annual,2023,gas oil combustion consumption by to the public,2249.84256,TJ,N2O,3.9,kg/TJ,8774.385984,kg +7a8c8874-1295-3189-bd7a-565dc4119297,SESCO,II.1.1,Catamarca,AR-K,annual,2023,gas oil combustion consumption by to the public,607.97184,TJ,CO2,74100.0,kg/TJ,45050713.344000004,kg +24802868-ac1a-3401-afed-4b727c0c2c59,SESCO,II.1.1,Catamarca,AR-K,annual,2023,gas oil combustion consumption by to the public,607.97184,TJ,CH4,3.9,kg/TJ,2371.090176,kg +24802868-ac1a-3401-afed-4b727c0c2c59,SESCO,II.1.1,Catamarca,AR-K,annual,2023,gas oil combustion consumption by to the public,607.97184,TJ,N2O,3.9,kg/TJ,2371.090176,kg +9cb1e6b8-ca0d-3780-be8c-2c62d5f12672,SESCO,II.1.1,Chaco,AR-H,annual,2023,gas oil combustion consumption by to the public,1344.9282,TJ,CO2,74100.0,kg/TJ,99659179.62,kg +89b243e2-b544-3db2-a1af-85833aaaa2a3,SESCO,II.1.1,Chaco,AR-H,annual,2023,gas oil combustion consumption by to the public,1344.9282,TJ,CH4,3.9,kg/TJ,5245.21998,kg +89b243e2-b544-3db2-a1af-85833aaaa2a3,SESCO,II.1.1,Chaco,AR-H,annual,2023,gas oil combustion consumption by to the public,1344.9282,TJ,N2O,3.9,kg/TJ,5245.21998,kg +2a53111e-4f75-3f7d-8b71-98b678df9633,SESCO,II.1.1,Chubut,AR-U,annual,2023,gas oil combustion consumption by to the public,1813.91028,TJ,CO2,74100.0,kg/TJ,134410751.748,kg +3b48587d-73bf-30a6-97db-f569896e6705,SESCO,II.1.1,Chubut,AR-U,annual,2023,gas oil combustion consumption by to the public,1813.91028,TJ,CH4,3.9,kg/TJ,7074.250092,kg +3b48587d-73bf-30a6-97db-f569896e6705,SESCO,II.1.1,Chubut,AR-U,annual,2023,gas oil combustion consumption by to the public,1813.91028,TJ,N2O,3.9,kg/TJ,7074.250092,kg +f665ade3-4cb8-3a2e-ad4a-435b042f0d93,SESCO,II.1.1,Corrientes,AR-W,annual,2023,gas oil combustion consumption by to the public,1383.1070399999999,TJ,CO2,74100.0,kg/TJ,102488231.66399999,kg +7b7e2058-4aaa-3543-b5ff-29d4961eefc2,SESCO,II.1.1,Corrientes,AR-W,annual,2023,gas oil combustion consumption by to the public,1383.1070399999999,TJ,CH4,3.9,kg/TJ,5394.117455999999,kg +7b7e2058-4aaa-3543-b5ff-29d4961eefc2,SESCO,II.1.1,Corrientes,AR-W,annual,2023,gas oil combustion consumption by to the public,1383.1070399999999,TJ,N2O,3.9,kg/TJ,5394.117455999999,kg +3adab65b-49f3-3392-a128-1c2f05764718,SESCO,II.1.1,Córdoba,AR-X,annual,2023,gas oil combustion consumption by to the public,5387.26188,TJ,CO2,74100.0,kg/TJ,399196105.308,kg +2ac25cab-f331-38f1-9f7a-748533e29ba6,SESCO,II.1.1,Córdoba,AR-X,annual,2023,gas oil combustion consumption by to the public,5387.26188,TJ,CH4,3.9,kg/TJ,21010.321332,kg +2ac25cab-f331-38f1-9f7a-748533e29ba6,SESCO,II.1.1,Córdoba,AR-X,annual,2023,gas oil combustion consumption by to the public,5387.26188,TJ,N2O,3.9,kg/TJ,21010.321332,kg +0410edca-f38a-3c29-ac3c-8c4955d609a1,SESCO,II.1.1,Entre Rios,AR-E,annual,2023,gas oil combustion consumption by to the public,1862.31108,TJ,CO2,74100.0,kg/TJ,137997251.028,kg +87505067-29d7-3677-9aeb-f093f9c0595f,SESCO,II.1.1,Entre Rios,AR-E,annual,2023,gas oil combustion consumption by to the public,1862.31108,TJ,CH4,3.9,kg/TJ,7263.013212,kg +87505067-29d7-3677-9aeb-f093f9c0595f,SESCO,II.1.1,Entre Rios,AR-E,annual,2023,gas oil combustion consumption by to the public,1862.31108,TJ,N2O,3.9,kg/TJ,7263.013212,kg +6a56fced-4977-3ff5-9173-c95bdbbc7944,SESCO,II.1.1,Formosa,AR-P,annual,2023,gas oil combustion consumption by to the public,566.46996,TJ,CO2,74100.0,kg/TJ,41975424.036,kg +f9751041-e045-341f-a460-dadd53885b87,SESCO,II.1.1,Formosa,AR-P,annual,2023,gas oil combustion consumption by to the public,566.46996,TJ,CH4,3.9,kg/TJ,2209.232844,kg +f9751041-e045-341f-a460-dadd53885b87,SESCO,II.1.1,Formosa,AR-P,annual,2023,gas oil combustion consumption by to the public,566.46996,TJ,N2O,3.9,kg/TJ,2209.232844,kg +7252e03a-abec-32a1-8ae1-6d854661f669,SESCO,II.1.1,Jujuy,AR-Y,annual,2023,gas oil combustion consumption by to the public,1012.66032,TJ,CO2,74100.0,kg/TJ,75038129.712,kg +087afe47-a924-3424-81b1-e62a4b0b571e,SESCO,II.1.1,Jujuy,AR-Y,annual,2023,gas oil combustion consumption by to the public,1012.66032,TJ,CH4,3.9,kg/TJ,3949.375248,kg +087afe47-a924-3424-81b1-e62a4b0b571e,SESCO,II.1.1,Jujuy,AR-Y,annual,2023,gas oil combustion consumption by to the public,1012.66032,TJ,N2O,3.9,kg/TJ,3949.375248,kg +0ddaebb4-9f12-3ec3-a422-b0d82ca821ec,SESCO,II.1.1,La Pampa,AR-L,annual,2023,gas oil combustion consumption by to the public,1366.70856,TJ,CO2,74100.0,kg/TJ,101273104.296,kg +00eb5987-8c6e-325a-92cf-d3def1891098,SESCO,II.1.1,La Pampa,AR-L,annual,2023,gas oil combustion consumption by to the public,1366.70856,TJ,CH4,3.9,kg/TJ,5330.163384,kg +00eb5987-8c6e-325a-92cf-d3def1891098,SESCO,II.1.1,La Pampa,AR-L,annual,2023,gas oil combustion consumption by to the public,1366.70856,TJ,N2O,3.9,kg/TJ,5330.163384,kg +94e4af64-82d0-3d25-83f3-d9e7e78e475e,SESCO,II.1.1,La Rioja,AR-F,annual,2023,gas oil combustion consumption by to the public,594.7158,TJ,CO2,74100.0,kg/TJ,44068440.779999994,kg +e26fa67b-8dcc-32f8-9a37-02db0c43252a,SESCO,II.1.1,La Rioja,AR-F,annual,2023,gas oil combustion consumption by to the public,594.7158,TJ,CH4,3.9,kg/TJ,2319.39162,kg +e26fa67b-8dcc-32f8-9a37-02db0c43252a,SESCO,II.1.1,La Rioja,AR-F,annual,2023,gas oil combustion consumption by to the public,594.7158,TJ,N2O,3.9,kg/TJ,2319.39162,kg +9c41da75-92fc-3944-97da-bf98c885d2d8,SESCO,II.1.1,Mendoza,AR-M,annual,2023,gas oil combustion consumption by to the public,4210.43616,TJ,CO2,74100.0,kg/TJ,311993319.45600003,kg +f44af240-6c78-3a9f-a5a5-91d323b2de3f,SESCO,II.1.1,Mendoza,AR-M,annual,2023,gas oil combustion consumption by to the public,4210.43616,TJ,CH4,3.9,kg/TJ,16420.701024,kg +f44af240-6c78-3a9f-a5a5-91d323b2de3f,SESCO,II.1.1,Mendoza,AR-M,annual,2023,gas oil combustion consumption by to the public,4210.43616,TJ,N2O,3.9,kg/TJ,16420.701024,kg +ef9ecb7a-4a7a-3413-a020-539d5612a58f,SESCO,II.1.1,Misiones,AR-N,annual,2023,gas oil combustion consumption by to the public,1586.49876,TJ,CO2,74100.0,kg/TJ,117559558.116,kg +dccbf49c-7aa6-3447-9f76-6e1f3af11e92,SESCO,II.1.1,Misiones,AR-N,annual,2023,gas oil combustion consumption by to the public,1586.49876,TJ,CH4,3.9,kg/TJ,6187.345163999999,kg +dccbf49c-7aa6-3447-9f76-6e1f3af11e92,SESCO,II.1.1,Misiones,AR-N,annual,2023,gas oil combustion consumption by to the public,1586.49876,TJ,N2O,3.9,kg/TJ,6187.345163999999,kg +7af93395-969c-3394-acf8-948373b131ec,SESCO,II.1.1,Neuquén,AR-Q,annual,2023,gas oil combustion consumption by to the public,2776.79724,TJ,CO2,74100.0,kg/TJ,205760675.484,kg +5ddfe43c-a618-3a72-9390-9230c20d6253,SESCO,II.1.1,Neuquén,AR-Q,annual,2023,gas oil combustion consumption by to the public,2776.79724,TJ,CH4,3.9,kg/TJ,10829.509236,kg +5ddfe43c-a618-3a72-9390-9230c20d6253,SESCO,II.1.1,Neuquén,AR-Q,annual,2023,gas oil combustion consumption by to the public,2776.79724,TJ,N2O,3.9,kg/TJ,10829.509236,kg +4fd195b0-19f6-3899-b3db-ebd1e40ec5a0,SESCO,II.1.1,Rio Negro,AR-R,annual,2023,gas oil combustion consumption by to the public,2145.7086,TJ,CO2,74100.0,kg/TJ,158997007.26,kg +a4229f78-8785-30f4-951f-fbff4f18c973,SESCO,II.1.1,Rio Negro,AR-R,annual,2023,gas oil combustion consumption by to the public,2145.7086,TJ,CH4,3.9,kg/TJ,8368.26354,kg +a4229f78-8785-30f4-951f-fbff4f18c973,SESCO,II.1.1,Rio Negro,AR-R,annual,2023,gas oil combustion consumption by to the public,2145.7086,TJ,N2O,3.9,kg/TJ,8368.26354,kg +0182d26f-0f33-3289-8cfa-e615ff58c760,SESCO,II.1.1,Salta,AR-A,annual,2023,gas oil combustion consumption by to the public,2290.1524799999997,TJ,CO2,74100.0,kg/TJ,169700298.76799998,kg +c56675b1-be89-3fec-93e5-6490453b24ed,SESCO,II.1.1,Salta,AR-A,annual,2023,gas oil combustion consumption by to the public,2290.1524799999997,TJ,CH4,3.9,kg/TJ,8931.594672,kg +c56675b1-be89-3fec-93e5-6490453b24ed,SESCO,II.1.1,Salta,AR-A,annual,2023,gas oil combustion consumption by to the public,2290.1524799999997,TJ,N2O,3.9,kg/TJ,8931.594672,kg +e25f7523-1b3c-34c8-b583-1a7de0939894,SESCO,II.1.1,San Juan,AR-J,annual,2023,gas oil combustion consumption by to the public,778.16928,TJ,CO2,74100.0,kg/TJ,57662343.647999994,kg +e7362d83-8d2e-33c5-b404-244d55c1aa9e,SESCO,II.1.1,San Juan,AR-J,annual,2023,gas oil combustion consumption by to the public,778.16928,TJ,CH4,3.9,kg/TJ,3034.8601919999996,kg +e7362d83-8d2e-33c5-b404-244d55c1aa9e,SESCO,II.1.1,San Juan,AR-J,annual,2023,gas oil combustion consumption by to the public,778.16928,TJ,N2O,3.9,kg/TJ,3034.8601919999996,kg +f322ff1e-586d-3074-983a-175f0959cb5d,SESCO,II.1.1,San Luis,AR-D,annual,2023,gas oil combustion consumption by to the public,702.75072,TJ,CO2,74100.0,kg/TJ,52073828.352,kg +5ab20e74-1f87-32c2-9ec1-a0b675c85912,SESCO,II.1.1,San Luis,AR-D,annual,2023,gas oil combustion consumption by to the public,702.75072,TJ,CH4,3.9,kg/TJ,2740.727808,kg +5ab20e74-1f87-32c2-9ec1-a0b675c85912,SESCO,II.1.1,San Luis,AR-D,annual,2023,gas oil combustion consumption by to the public,702.75072,TJ,N2O,3.9,kg/TJ,2740.727808,kg +53689d8c-919f-39d8-a6d6-977a8e29ada3,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2023,gas oil combustion consumption by to the public,1704.79176,TJ,CO2,74100.0,kg/TJ,126325069.41600001,kg +b19d4f05-889d-3742-b619-74e5ece4111d,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2023,gas oil combustion consumption by to the public,1704.79176,TJ,CH4,3.9,kg/TJ,6648.687864,kg +b19d4f05-889d-3742-b619-74e5ece4111d,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2023,gas oil combustion consumption by to the public,1704.79176,TJ,N2O,3.9,kg/TJ,6648.687864,kg +31f4feda-46b5-345f-9987-2f892caed15b,SESCO,II.1.1,Santa Fe,AR-S,annual,2023,gas oil combustion consumption by to the public,3827.20296,TJ,CO2,74100.0,kg/TJ,283595739.336,kg +eef6acf6-a154-3ec0-95c3-7a77be80eac6,SESCO,II.1.1,Santa Fe,AR-S,annual,2023,gas oil combustion consumption by to the public,3827.20296,TJ,CH4,3.9,kg/TJ,14926.091544,kg +eef6acf6-a154-3ec0-95c3-7a77be80eac6,SESCO,II.1.1,Santa Fe,AR-S,annual,2023,gas oil combustion consumption by to the public,3827.20296,TJ,N2O,3.9,kg/TJ,14926.091544,kg +53344c3f-e901-3ceb-8499-66ce31948864,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2023,gas oil combustion consumption by to the public,1089.16248,TJ,CO2,74100.0,kg/TJ,80706939.76799999,kg +81ecfdf6-031d-31bd-9e0c-a91c98ad0793,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2023,gas oil combustion consumption by to the public,1089.16248,TJ,CH4,3.9,kg/TJ,4247.733671999999,kg +81ecfdf6-031d-31bd-9e0c-a91c98ad0793,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2023,gas oil combustion consumption by to the public,1089.16248,TJ,N2O,3.9,kg/TJ,4247.733671999999,kg +195dc3de-ea2e-30fe-aeb3-2dd74e9a5d16,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2023,gas oil combustion consumption by to the public,409.42019999999997,TJ,CO2,74100.0,kg/TJ,30338036.819999997,kg +63af79ce-bc6e-3453-bba9-0dc482b4fbcf,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2023,gas oil combustion consumption by to the public,409.42019999999997,TJ,CH4,3.9,kg/TJ,1596.73878,kg +63af79ce-bc6e-3453-bba9-0dc482b4fbcf,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2023,gas oil combustion consumption by to the public,409.42019999999997,TJ,N2O,3.9,kg/TJ,1596.73878,kg +ccbb208d-0729-305d-98cd-474a1ce7c589,SESCO,II.1.1,Tucuman,AR-T,annual,2023,gas oil combustion consumption by to the public,1550.2703999999999,TJ,CO2,74100.0,kg/TJ,114875036.63999999,kg +db1a0867-d633-3865-97b5-b3c74cb25eb7,SESCO,II.1.1,Tucuman,AR-T,annual,2023,gas oil combustion consumption by to the public,1550.2703999999999,TJ,CH4,3.9,kg/TJ,6046.05456,kg +db1a0867-d633-3865-97b5-b3c74cb25eb7,SESCO,II.1.1,Tucuman,AR-T,annual,2023,gas oil combustion consumption by to the public,1550.2703999999999,TJ,N2O,3.9,kg/TJ,6046.05456,kg +f186e2c1-ef4b-3a96-8362-15ec40ca06e8,SESCO,II.1.1,Buenos Aires,AR-B,annual,2023,jet kerosene combustion consumption by to the public,88.57164799999998,TJ,CO2,71500.0,kg/TJ,6332872.831999999,kg +0c09a821-2170-3f3d-a7b0-bc3c5cc00900,SESCO,II.1.1,Buenos Aires,AR-B,annual,2023,jet kerosene combustion consumption by to the public,88.57164799999998,TJ,CH4,0.5,kg/TJ,44.28582399999999,kg +b18094b1-5724-3142-9071-aa4cd1f35ca3,SESCO,II.1.1,Buenos Aires,AR-B,annual,2023,jet kerosene combustion consumption by to the public,88.57164799999998,TJ,N2O,2.0,kg/TJ,177.14329599999996,kg +cb4b8848-4726-3e02-b2e5-aa1c7d276730,SESCO,II.1.1,Capital Federal,AR-C,annual,2023,jet kerosene combustion consumption by to the public,2.6105989999999997,TJ,CO2,71500.0,kg/TJ,186657.82849999997,kg +0e9e239f-9672-38e1-8d02-03e544a4cdd9,SESCO,II.1.1,Capital Federal,AR-C,annual,2023,jet kerosene combustion consumption by to the public,2.6105989999999997,TJ,CH4,0.5,kg/TJ,1.3052994999999998,kg +ddf9bd17-deae-31dd-91a2-2f1372fff32e,SESCO,II.1.1,Capital Federal,AR-C,annual,2023,jet kerosene combustion consumption by to the public,2.6105989999999997,TJ,N2O,2.0,kg/TJ,5.221197999999999,kg +9b6d9681-645c-3f0b-aa04-e874853f6f4c,SESCO,II.1.1,Catamarca,AR-K,annual,2023,jet kerosene combustion consumption by to the public,3.0823939999999994,TJ,CO2,71500.0,kg/TJ,220391.17099999994,kg +ce707b9e-b63c-36ad-8755-e133a14d5964,SESCO,II.1.1,Catamarca,AR-K,annual,2023,jet kerosene combustion consumption by to the public,3.0823939999999994,TJ,CH4,0.5,kg/TJ,1.5411969999999997,kg +e6e9be18-65d5-32e9-8539-eefc25b44908,SESCO,II.1.1,Catamarca,AR-K,annual,2023,jet kerosene combustion consumption by to the public,3.0823939999999994,TJ,N2O,2.0,kg/TJ,6.164787999999999,kg +1c2f62a0-9ea6-33fb-8c24-3626db64e017,SESCO,II.1.1,Chubut,AR-U,annual,2023,jet kerosene combustion consumption by to the public,8.586668999999999,TJ,CO2,71500.0,kg/TJ,613946.8335,kg +34e32aa9-09fc-3530-8904-9ff4cf4a644b,SESCO,II.1.1,Chubut,AR-U,annual,2023,jet kerosene combustion consumption by to the public,8.586668999999999,TJ,CH4,0.5,kg/TJ,4.293334499999999,kg +a842024c-a3f7-31cd-b58e-98c5c2aed846,SESCO,II.1.1,Chubut,AR-U,annual,2023,jet kerosene combustion consumption by to the public,8.586668999999999,TJ,N2O,2.0,kg/TJ,17.173337999999998,kg +d218cb3e-1f97-3bf0-a7e9-afd975182275,SESCO,II.1.1,Corrientes,AR-W,annual,2023,jet kerosene combustion consumption by to the public,1.1323079999999999,TJ,CO2,71500.0,kg/TJ,80960.022,kg +772858b4-810c-3ab0-8398-e9ee0b539db1,SESCO,II.1.1,Corrientes,AR-W,annual,2023,jet kerosene combustion consumption by to the public,1.1323079999999999,TJ,CH4,0.5,kg/TJ,0.5661539999999999,kg +9a0c8c97-fcb6-3d46-bf9f-c5371de66f08,SESCO,II.1.1,Corrientes,AR-W,annual,2023,jet kerosene combustion consumption by to the public,1.1323079999999999,TJ,N2O,2.0,kg/TJ,2.2646159999999997,kg +5f0801b0-1cb0-32e6-87db-d5b648c43e55,SESCO,II.1.1,Córdoba,AR-X,annual,2023,jet kerosene combustion consumption by to the public,25.539835999999998,TJ,CO2,71500.0,kg/TJ,1826098.2739999997,kg +5c353a25-b234-305f-8b21-f8b396bcb8bc,SESCO,II.1.1,Córdoba,AR-X,annual,2023,jet kerosene combustion consumption by to the public,25.539835999999998,TJ,CH4,0.5,kg/TJ,12.769917999999999,kg +fefacdb2-057d-3c8c-ba4f-4f0bc8cb15f4,SESCO,II.1.1,Córdoba,AR-X,annual,2023,jet kerosene combustion consumption by to the public,25.539835999999998,TJ,N2O,2.0,kg/TJ,51.079671999999995,kg +6d282fd7-964c-3eed-ab46-62adc6825fae,SESCO,II.1.1,Entre Rios,AR-E,annual,2023,jet kerosene combustion consumption by to the public,3.3654709999999994,TJ,CO2,71500.0,kg/TJ,240631.17649999997,kg +0a92c236-fe04-323a-8c0c-5e89bf015bc9,SESCO,II.1.1,Entre Rios,AR-E,annual,2023,jet kerosene combustion consumption by to the public,3.3654709999999994,TJ,CH4,0.5,kg/TJ,1.6827354999999997,kg +0c0680c8-1774-3aa9-a195-f1ac890fe63b,SESCO,II.1.1,Entre Rios,AR-E,annual,2023,jet kerosene combustion consumption by to the public,3.3654709999999994,TJ,N2O,2.0,kg/TJ,6.730941999999999,kg +334cf7a3-37b6-35e3-ae72-71f67b7bc69a,SESCO,II.1.1,La Pampa,AR-L,annual,2023,jet kerosene combustion consumption by to the public,2.1388039999999995,TJ,CO2,71500.0,kg/TJ,152924.48599999998,kg +4b976a0f-8b91-337c-bf0a-333607a942ff,SESCO,II.1.1,La Pampa,AR-L,annual,2023,jet kerosene combustion consumption by to the public,2.1388039999999995,TJ,CH4,0.5,kg/TJ,1.0694019999999997,kg +62120822-d614-3248-8898-5457fc7f4445,SESCO,II.1.1,La Pampa,AR-L,annual,2023,jet kerosene combustion consumption by to the public,2.1388039999999995,TJ,N2O,2.0,kg/TJ,4.277607999999999,kg +19ddfa37-c53d-3a80-aef4-048a2baf31be,SESCO,II.1.1,La Rioja,AR-F,annual,2023,jet kerosene combustion consumption by to the public,0.9750429999999999,TJ,CO2,71500.0,kg/TJ,69715.57449999999,kg +04ec966d-61af-3fdd-8bde-b2e87f78d696,SESCO,II.1.1,La Rioja,AR-F,annual,2023,jet kerosene combustion consumption by to the public,0.9750429999999999,TJ,CH4,0.5,kg/TJ,0.48752149999999994,kg +d5345c0d-1a70-3cdb-9782-c7e66b3e3a40,SESCO,II.1.1,La Rioja,AR-F,annual,2023,jet kerosene combustion consumption by to the public,0.9750429999999999,TJ,N2O,2.0,kg/TJ,1.9500859999999998,kg +a3dfa245-bf4a-3fa8-8618-1b40300710b2,SESCO,II.1.1,Mendoza,AR-M,annual,2023,jet kerosene combustion consumption by to the public,10.096412999999998,TJ,CO2,71500.0,kg/TJ,721893.5294999998,kg +d20feb17-70f3-3eff-a925-904b9072bc09,SESCO,II.1.1,Mendoza,AR-M,annual,2023,jet kerosene combustion consumption by to the public,10.096412999999998,TJ,CH4,0.5,kg/TJ,5.048206499999999,kg +1f003975-f645-3e3c-bc3e-5d17d5d79636,SESCO,II.1.1,Mendoza,AR-M,annual,2023,jet kerosene combustion consumption by to the public,10.096412999999998,TJ,N2O,2.0,kg/TJ,20.192825999999997,kg +4a391a51-728d-3e34-87a0-4a30ec2c7339,SESCO,II.1.1,Neuquén,AR-Q,annual,2023,jet kerosene combustion consumption by to the public,5.378462999999999,TJ,CO2,71500.0,kg/TJ,384560.10449999996,kg +c60b8648-047a-3569-a451-2ed439465a64,SESCO,II.1.1,Neuquén,AR-Q,annual,2023,jet kerosene combustion consumption by to the public,5.378462999999999,TJ,CH4,0.5,kg/TJ,2.6892314999999996,kg +c91d2df5-c46f-3bb4-86b5-03b21ab0f96c,SESCO,II.1.1,Neuquén,AR-Q,annual,2023,jet kerosene combustion consumption by to the public,5.378462999999999,TJ,N2O,2.0,kg/TJ,10.756925999999998,kg +221bb477-1ef7-3051-889c-debd86525d38,SESCO,II.1.1,San Juan,AR-J,annual,2023,jet kerosene combustion consumption by to the public,2.51624,TJ,CO2,71500.0,kg/TJ,179911.15999999997,kg +973ade35-85bc-3588-87d9-58a00e7950c2,SESCO,II.1.1,San Juan,AR-J,annual,2023,jet kerosene combustion consumption by to the public,2.51624,TJ,CH4,0.5,kg/TJ,1.25812,kg +acb6411c-1db9-3e62-846c-4c0af0d0810a,SESCO,II.1.1,San Juan,AR-J,annual,2023,jet kerosene combustion consumption by to the public,2.51624,TJ,N2O,2.0,kg/TJ,5.03248,kg +5e2eb0ba-bede-348d-9033-245e596b69e7,SESCO,II.1.1,San Luis,AR-D,annual,2023,jet kerosene combustion consumption by to the public,2.5476929999999998,TJ,CO2,71500.0,kg/TJ,182160.0495,kg +54ab2e48-5268-3582-87c4-63882312278d,SESCO,II.1.1,San Luis,AR-D,annual,2023,jet kerosene combustion consumption by to the public,2.5476929999999998,TJ,CH4,0.5,kg/TJ,1.2738464999999999,kg +798df565-a80c-3705-ad0d-ee18679e3171,SESCO,II.1.1,San Luis,AR-D,annual,2023,jet kerosene combustion consumption by to the public,2.5476929999999998,TJ,N2O,2.0,kg/TJ,5.0953859999999995,kg +6fd9bbfd-ab1a-366d-910e-b41f3d431f0e,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2023,jet kerosene combustion consumption by to the public,0.157265,TJ,CO2,71500.0,kg/TJ,11244.447499999998,kg +4e715e2a-ae43-3565-8ccb-805e7cb8ffa0,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2023,jet kerosene combustion consumption by to the public,0.157265,TJ,CH4,0.5,kg/TJ,0.0786325,kg +7037e244-0541-349e-85ae-a084c68d59ba,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2023,jet kerosene combustion consumption by to the public,0.157265,TJ,N2O,2.0,kg/TJ,0.31453,kg +87be8ba9-f9ed-38e7-b91c-e7a6f6efd777,SESCO,II.1.1,Santa Fe,AR-S,annual,2023,jet kerosene combustion consumption by to the public,15.820858999999997,TJ,CO2,71500.0,kg/TJ,1131191.4184999997,kg +2307fbd5-505a-3394-a7ae-d974411235c7,SESCO,II.1.1,Santa Fe,AR-S,annual,2023,jet kerosene combustion consumption by to the public,15.820858999999997,TJ,CH4,0.5,kg/TJ,7.9104294999999984,kg +a701206a-9968-3a31-8858-704bd0fb1c56,SESCO,II.1.1,Santa Fe,AR-S,annual,2023,jet kerosene combustion consumption by to the public,15.820858999999997,TJ,N2O,2.0,kg/TJ,31.641717999999994,kg +bca10050-820f-3b0b-9d31-fde43ebbea7e,SESCO,II.1.1,Tucuman,AR-T,annual,2023,jet kerosene combustion consumption by to the public,8.838292999999998,TJ,CO2,71500.0,kg/TJ,631937.9494999999,kg +30f5148f-d6c7-383b-9ee0-70faa07afcfa,SESCO,II.1.1,Tucuman,AR-T,annual,2023,jet kerosene combustion consumption by to the public,8.838292999999998,TJ,CH4,0.5,kg/TJ,4.419146499999999,kg +af3d0a06-baa3-39b8-94ef-bc41b68a951e,SESCO,II.1.1,Tucuman,AR-T,annual,2023,jet kerosene combustion consumption by to the public,8.838292999999998,TJ,N2O,2.0,kg/TJ,17.676585999999997,kg +761f39a9-d94a-3044-9b07-fe4fbac70261,SESCO,II.1.1,Buenos Aires,AR-B,annual,2023,gas oil combustion consumption by freight transport,12976.2906,TJ,CO2,74100.0,kg/TJ,961543133.46,kg +06cb629b-b390-3c53-8406-898bb7b679fa,SESCO,II.1.1,Buenos Aires,AR-B,annual,2023,gas oil combustion consumption by freight transport,12976.2906,TJ,CH4,3.9,kg/TJ,50607.53334,kg +06cb629b-b390-3c53-8406-898bb7b679fa,SESCO,II.1.1,Buenos Aires,AR-B,annual,2023,gas oil combustion consumption by freight transport,12976.2906,TJ,N2O,3.9,kg/TJ,50607.53334,kg +a8d810cf-c90a-345c-8fdb-60a126e316b6,SESCO,II.1.1,Capital Federal,AR-C,annual,2023,gas oil combustion consumption by freight transport,964.69296,TJ,CO2,74100.0,kg/TJ,71483748.336,kg +47658663-14b6-3595-9099-6b1c1dc2a669,SESCO,II.1.1,Capital Federal,AR-C,annual,2023,gas oil combustion consumption by freight transport,964.69296,TJ,CH4,3.9,kg/TJ,3762.3025439999997,kg +47658663-14b6-3595-9099-6b1c1dc2a669,SESCO,II.1.1,Capital Federal,AR-C,annual,2023,gas oil combustion consumption by freight transport,964.69296,TJ,N2O,3.9,kg/TJ,3762.3025439999997,kg +4114cc78-6aa3-3960-8572-bea2f64effc0,SESCO,II.1.1,Catamarca,AR-K,annual,2023,gas oil combustion consumption by freight transport,81.95627999999999,TJ,CO2,74100.0,kg/TJ,6072960.347999999,kg +6e8c38df-ca81-3b20-8b82-8f37d69728d1,SESCO,II.1.1,Catamarca,AR-K,annual,2023,gas oil combustion consumption by freight transport,81.95627999999999,TJ,CH4,3.9,kg/TJ,319.62949199999997,kg +6e8c38df-ca81-3b20-8b82-8f37d69728d1,SESCO,II.1.1,Catamarca,AR-K,annual,2023,gas oil combustion consumption by freight transport,81.95627999999999,TJ,N2O,3.9,kg/TJ,319.62949199999997,kg +91b6e799-87a0-3985-9694-e41b35472b84,SESCO,II.1.1,Chaco,AR-H,annual,2023,gas oil combustion consumption by freight transport,436.04064,TJ,CO2,74100.0,kg/TJ,32310611.424,kg +1b229275-e104-388c-88cf-9f4c1577be95,SESCO,II.1.1,Chaco,AR-H,annual,2023,gas oil combustion consumption by freight transport,436.04064,TJ,CH4,3.9,kg/TJ,1700.5584959999999,kg +1b229275-e104-388c-88cf-9f4c1577be95,SESCO,II.1.1,Chaco,AR-H,annual,2023,gas oil combustion consumption by freight transport,436.04064,TJ,N2O,3.9,kg/TJ,1700.5584959999999,kg +dd6dc6d1-cb73-384d-bc83-5a087b623d60,SESCO,II.1.1,Chubut,AR-U,annual,2023,gas oil combustion consumption by freight transport,892.164,TJ,CO2,74100.0,kg/TJ,66109352.4,kg +87dca691-502f-3732-a3fb-9ccd76392bcd,SESCO,II.1.1,Chubut,AR-U,annual,2023,gas oil combustion consumption by freight transport,892.164,TJ,CH4,3.9,kg/TJ,3479.4395999999997,kg +87dca691-502f-3732-a3fb-9ccd76392bcd,SESCO,II.1.1,Chubut,AR-U,annual,2023,gas oil combustion consumption by freight transport,892.164,TJ,N2O,3.9,kg/TJ,3479.4395999999997,kg +9c6dc021-9214-3882-ac3b-0a29b7373b0f,SESCO,II.1.1,Corrientes,AR-W,annual,2023,gas oil combustion consumption by freight transport,836.86428,TJ,CO2,74100.0,kg/TJ,62011643.148,kg +ab178dee-3e52-3e38-ad0f-417869475502,SESCO,II.1.1,Corrientes,AR-W,annual,2023,gas oil combustion consumption by freight transport,836.86428,TJ,CH4,3.9,kg/TJ,3263.770692,kg +ab178dee-3e52-3e38-ad0f-417869475502,SESCO,II.1.1,Corrientes,AR-W,annual,2023,gas oil combustion consumption by freight transport,836.86428,TJ,N2O,3.9,kg/TJ,3263.770692,kg +d4220e58-75fc-3254-8d38-29e85a942a25,SESCO,II.1.1,Córdoba,AR-X,annual,2023,gas oil combustion consumption by freight transport,3070.23612,TJ,CO2,74100.0,kg/TJ,227504496.492,kg +11c33551-3b33-353a-bcc3-5ef462566d45,SESCO,II.1.1,Córdoba,AR-X,annual,2023,gas oil combustion consumption by freight transport,3070.23612,TJ,CH4,3.9,kg/TJ,11973.920868,kg +11c33551-3b33-353a-bcc3-5ef462566d45,SESCO,II.1.1,Córdoba,AR-X,annual,2023,gas oil combustion consumption by freight transport,3070.23612,TJ,N2O,3.9,kg/TJ,11973.920868,kg +5350117f-081e-3bd9-aa61-f54994c9b328,SESCO,II.1.1,Entre Rios,AR-E,annual,2023,gas oil combustion consumption by freight transport,1276.33632,TJ,CO2,74100.0,kg/TJ,94576521.31199999,kg +6c4b0551-1745-32c3-b207-779a0c228f2b,SESCO,II.1.1,Entre Rios,AR-E,annual,2023,gas oil combustion consumption by freight transport,1276.33632,TJ,CH4,3.9,kg/TJ,4977.7116479999995,kg +6c4b0551-1745-32c3-b207-779a0c228f2b,SESCO,II.1.1,Entre Rios,AR-E,annual,2023,gas oil combustion consumption by freight transport,1276.33632,TJ,N2O,3.9,kg/TJ,4977.7116479999995,kg +adce6dbf-9e10-3f49-b913-2bb1467581ca,SESCO,II.1.1,Formosa,AR-P,annual,2023,gas oil combustion consumption by freight transport,87.37428,TJ,CO2,74100.0,kg/TJ,6474434.148,kg +ff596419-2588-3287-84dc-c73553ea03d9,SESCO,II.1.1,Formosa,AR-P,annual,2023,gas oil combustion consumption by freight transport,87.37428,TJ,CH4,3.9,kg/TJ,340.759692,kg +ff596419-2588-3287-84dc-c73553ea03d9,SESCO,II.1.1,Formosa,AR-P,annual,2023,gas oil combustion consumption by freight transport,87.37428,TJ,N2O,3.9,kg/TJ,340.759692,kg +08c4571b-372e-34d6-b15c-3019cf777c94,SESCO,II.1.1,Jujuy,AR-Y,annual,2023,gas oil combustion consumption by freight transport,194.79516,TJ,CO2,74100.0,kg/TJ,14434321.356,kg +d01206e7-9234-3ce4-abf2-846d2125538f,SESCO,II.1.1,Jujuy,AR-Y,annual,2023,gas oil combustion consumption by freight transport,194.79516,TJ,CH4,3.9,kg/TJ,759.701124,kg +d01206e7-9234-3ce4-abf2-846d2125538f,SESCO,II.1.1,Jujuy,AR-Y,annual,2023,gas oil combustion consumption by freight transport,194.79516,TJ,N2O,3.9,kg/TJ,759.701124,kg +9b7071b7-5011-3e6c-a4e8-c3a055603e08,SESCO,II.1.1,La Pampa,AR-L,annual,2023,gas oil combustion consumption by freight transport,1265.0307599999999,TJ,CO2,74100.0,kg/TJ,93738779.31599998,kg +7b6685b0-e194-3e2e-9e6e-bde91be241d0,SESCO,II.1.1,La Pampa,AR-L,annual,2023,gas oil combustion consumption by freight transport,1265.0307599999999,TJ,CH4,3.9,kg/TJ,4933.6199639999995,kg +7b6685b0-e194-3e2e-9e6e-bde91be241d0,SESCO,II.1.1,La Pampa,AR-L,annual,2023,gas oil combustion consumption by freight transport,1265.0307599999999,TJ,N2O,3.9,kg/TJ,4933.6199639999995,kg +24e7f61c-d13b-3186-8efa-9a0c63197a29,SESCO,II.1.1,La Rioja,AR-F,annual,2023,gas oil combustion consumption by freight transport,107.457,TJ,CO2,74100.0,kg/TJ,7962563.699999999,kg +2b417467-530d-39cc-b393-9713341cba06,SESCO,II.1.1,La Rioja,AR-F,annual,2023,gas oil combustion consumption by freight transport,107.457,TJ,CH4,3.9,kg/TJ,419.0823,kg +2b417467-530d-39cc-b393-9713341cba06,SESCO,II.1.1,La Rioja,AR-F,annual,2023,gas oil combustion consumption by freight transport,107.457,TJ,N2O,3.9,kg/TJ,419.0823,kg +cf9f96f6-aca6-34de-8af8-da0bc6c2eb38,SESCO,II.1.1,Mendoza,AR-M,annual,2023,gas oil combustion consumption by freight transport,1688.93508,TJ,CO2,74100.0,kg/TJ,125150089.428,kg +3eeb8144-c8af-3ea8-9465-2be8f55e7054,SESCO,II.1.1,Mendoza,AR-M,annual,2023,gas oil combustion consumption by freight transport,1688.93508,TJ,CH4,3.9,kg/TJ,6586.846812,kg +3eeb8144-c8af-3ea8-9465-2be8f55e7054,SESCO,II.1.1,Mendoza,AR-M,annual,2023,gas oil combustion consumption by freight transport,1688.93508,TJ,N2O,3.9,kg/TJ,6586.846812,kg +ebadc4a0-7795-30fd-b945-826d7375e45b,SESCO,II.1.1,Misiones,AR-N,annual,2023,gas oil combustion consumption by freight transport,492.38784,TJ,CO2,74100.0,kg/TJ,36485938.944,kg +596a1243-52c9-3f17-9a4e-7e2e25e4752c,SESCO,II.1.1,Misiones,AR-N,annual,2023,gas oil combustion consumption by freight transport,492.38784,TJ,CH4,3.9,kg/TJ,1920.3125759999998,kg +596a1243-52c9-3f17-9a4e-7e2e25e4752c,SESCO,II.1.1,Misiones,AR-N,annual,2023,gas oil combustion consumption by freight transport,492.38784,TJ,N2O,3.9,kg/TJ,1920.3125759999998,kg +76ea7ac0-10a3-35e4-9ed5-ac21b15e53d4,SESCO,II.1.1,Neuquén,AR-Q,annual,2023,gas oil combustion consumption by freight transport,1243.10592,TJ,CO2,74100.0,kg/TJ,92114148.67199999,kg +d6a99a34-049a-3ab5-9885-38df64894434,SESCO,II.1.1,Neuquén,AR-Q,annual,2023,gas oil combustion consumption by freight transport,1243.10592,TJ,CH4,3.9,kg/TJ,4848.113088,kg +d6a99a34-049a-3ab5-9885-38df64894434,SESCO,II.1.1,Neuquén,AR-Q,annual,2023,gas oil combustion consumption by freight transport,1243.10592,TJ,N2O,3.9,kg/TJ,4848.113088,kg +05fed763-ddd9-3099-91cb-6623065750b6,SESCO,II.1.1,Rio Negro,AR-R,annual,2023,gas oil combustion consumption by freight transport,1537.33944,TJ,CO2,74100.0,kg/TJ,113916852.504,kg +8c07c68d-76e9-38ad-a0a8-c6f0888fa6eb,SESCO,II.1.1,Rio Negro,AR-R,annual,2023,gas oil combustion consumption by freight transport,1537.33944,TJ,CH4,3.9,kg/TJ,5995.623815999999,kg +8c07c68d-76e9-38ad-a0a8-c6f0888fa6eb,SESCO,II.1.1,Rio Negro,AR-R,annual,2023,gas oil combustion consumption by freight transport,1537.33944,TJ,N2O,3.9,kg/TJ,5995.623815999999,kg +5cf0f470-471a-3665-985b-746dca00bc1e,SESCO,II.1.1,Salta,AR-A,annual,2023,gas oil combustion consumption by freight transport,1033.28484,TJ,CO2,74100.0,kg/TJ,76566406.64400001,kg +078bf65f-0f86-3aeb-8903-cd95c6f77e3b,SESCO,II.1.1,Salta,AR-A,annual,2023,gas oil combustion consumption by freight transport,1033.28484,TJ,CH4,3.9,kg/TJ,4029.810876,kg +078bf65f-0f86-3aeb-8903-cd95c6f77e3b,SESCO,II.1.1,Salta,AR-A,annual,2023,gas oil combustion consumption by freight transport,1033.28484,TJ,N2O,3.9,kg/TJ,4029.810876,kg +6fbc82ca-e549-3125-bbff-0ce67951682f,SESCO,II.1.1,San Juan,AR-J,annual,2023,gas oil combustion consumption by freight transport,150.801,TJ,CO2,74100.0,kg/TJ,11174354.1,kg +cbaaa239-467f-3bde-90a5-97c629b05007,SESCO,II.1.1,San Juan,AR-J,annual,2023,gas oil combustion consumption by freight transport,150.801,TJ,CH4,3.9,kg/TJ,588.1238999999999,kg +cbaaa239-467f-3bde-90a5-97c629b05007,SESCO,II.1.1,San Juan,AR-J,annual,2023,gas oil combustion consumption by freight transport,150.801,TJ,N2O,3.9,kg/TJ,588.1238999999999,kg +6b380a57-c678-3b84-b798-c90a65de7444,SESCO,II.1.1,San Luis,AR-D,annual,2023,gas oil combustion consumption by freight transport,516.47988,TJ,CO2,74100.0,kg/TJ,38271159.107999995,kg +40101bdb-3d37-3ace-b306-9e5a123b5fe4,SESCO,II.1.1,San Luis,AR-D,annual,2023,gas oil combustion consumption by freight transport,516.47988,TJ,CH4,3.9,kg/TJ,2014.271532,kg +40101bdb-3d37-3ace-b306-9e5a123b5fe4,SESCO,II.1.1,San Luis,AR-D,annual,2023,gas oil combustion consumption by freight transport,516.47988,TJ,N2O,3.9,kg/TJ,2014.271532,kg +9d7bde0b-5a6d-3cb1-a2d1-97a78a2a08c6,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2023,gas oil combustion consumption by freight transport,798.0714,TJ,CO2,74100.0,kg/TJ,59137090.74,kg +bd1566b7-7faf-3faa-9ef3-5b2c2b47cb23,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2023,gas oil combustion consumption by freight transport,798.0714,TJ,CH4,3.9,kg/TJ,3112.4784600000003,kg +bd1566b7-7faf-3faa-9ef3-5b2c2b47cb23,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2023,gas oil combustion consumption by freight transport,798.0714,TJ,N2O,3.9,kg/TJ,3112.4784600000003,kg +46bff1cc-c899-3239-a60d-5b2fc62b0310,SESCO,II.1.1,Santa Fe,AR-S,annual,2023,gas oil combustion consumption by freight transport,3231.04236,TJ,CO2,74100.0,kg/TJ,239420238.876,kg +a1187abd-d004-37f5-b37f-9e6d3f387c67,SESCO,II.1.1,Santa Fe,AR-S,annual,2023,gas oil combustion consumption by freight transport,3231.04236,TJ,CH4,3.9,kg/TJ,12601.065203999999,kg +a1187abd-d004-37f5-b37f-9e6d3f387c67,SESCO,II.1.1,Santa Fe,AR-S,annual,2023,gas oil combustion consumption by freight transport,3231.04236,TJ,N2O,3.9,kg/TJ,12601.065203999999,kg +5558f0d3-c481-3b77-9866-89c1a638b5e7,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2023,gas oil combustion consumption by freight transport,782.5398,TJ,CO2,74100.0,kg/TJ,57986199.18,kg +f5bcb47b-5560-31eb-a84d-456a7dc1ec2e,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2023,gas oil combustion consumption by freight transport,782.5398,TJ,CH4,3.9,kg/TJ,3051.90522,kg +f5bcb47b-5560-31eb-a84d-456a7dc1ec2e,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2023,gas oil combustion consumption by freight transport,782.5398,TJ,N2O,3.9,kg/TJ,3051.90522,kg +cf55bb30-d3e8-3349-bd21-548d170b592e,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2023,gas oil combustion consumption by freight transport,304.27488,TJ,CO2,74100.0,kg/TJ,22546768.608,kg +74a83a03-4621-3b43-a852-5652a5b1d091,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2023,gas oil combustion consumption by freight transport,304.27488,TJ,CH4,3.9,kg/TJ,1186.672032,kg +74a83a03-4621-3b43-a852-5652a5b1d091,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2023,gas oil combustion consumption by freight transport,304.27488,TJ,N2O,3.9,kg/TJ,1186.672032,kg +160976b5-f826-37be-ae3a-7261afd77db4,SESCO,II.1.1,Tucuman,AR-T,annual,2023,gas oil combustion consumption by freight transport,449.11608,TJ,CO2,74100.0,kg/TJ,33279501.528,kg +4effa640-54fe-3871-9f3f-9e2abe0744f1,SESCO,II.1.1,Tucuman,AR-T,annual,2023,gas oil combustion consumption by freight transport,449.11608,TJ,CH4,3.9,kg/TJ,1751.552712,kg +4effa640-54fe-3871-9f3f-9e2abe0744f1,SESCO,II.1.1,Tucuman,AR-T,annual,2023,gas oil combustion consumption by freight transport,449.11608,TJ,N2O,3.9,kg/TJ,1751.552712,kg +6b815d4b-7f20-3279-a367-72cdc604e906,SESCO,II.1.1,Buenos Aires,AR-B,annual,2023,gas oil combustion consumption by freight transport,5763.70452,TJ,CO2,74100.0,kg/TJ,427090504.93200004,kg +0d1e0717-80f8-35ae-bb82-f9b1d22c542d,SESCO,II.1.1,Buenos Aires,AR-B,annual,2023,gas oil combustion consumption by freight transport,5763.70452,TJ,CH4,3.9,kg/TJ,22478.447628,kg +0d1e0717-80f8-35ae-bb82-f9b1d22c542d,SESCO,II.1.1,Buenos Aires,AR-B,annual,2023,gas oil combustion consumption by freight transport,5763.70452,TJ,N2O,3.9,kg/TJ,22478.447628,kg +9b9f9e0a-63bd-31aa-8076-8b2c1f4ae000,SESCO,II.1.1,Capital Federal,AR-C,annual,2023,gas oil combustion consumption by freight transport,374.9256,TJ,CO2,74100.0,kg/TJ,27781986.959999997,kg +ae2498b6-2b57-39bd-beef-c66dd4435b24,SESCO,II.1.1,Capital Federal,AR-C,annual,2023,gas oil combustion consumption by freight transport,374.9256,TJ,CH4,3.9,kg/TJ,1462.2098399999998,kg +ae2498b6-2b57-39bd-beef-c66dd4435b24,SESCO,II.1.1,Capital Federal,AR-C,annual,2023,gas oil combustion consumption by freight transport,374.9256,TJ,N2O,3.9,kg/TJ,1462.2098399999998,kg +7c7a3bf2-69d2-3c75-9d7c-d3695ce8924d,SESCO,II.1.1,Catamarca,AR-K,annual,2023,gas oil combustion consumption by freight transport,48.25632,TJ,CO2,74100.0,kg/TJ,3575793.3120000004,kg +8b753445-c582-3b17-9308-8cb17c764254,SESCO,II.1.1,Catamarca,AR-K,annual,2023,gas oil combustion consumption by freight transport,48.25632,TJ,CH4,3.9,kg/TJ,188.199648,kg +8b753445-c582-3b17-9308-8cb17c764254,SESCO,II.1.1,Catamarca,AR-K,annual,2023,gas oil combustion consumption by freight transport,48.25632,TJ,N2O,3.9,kg/TJ,188.199648,kg +71e7251a-550f-3b5d-85f5-80754131ab28,SESCO,II.1.1,Chaco,AR-H,annual,2023,gas oil combustion consumption by freight transport,230.15663999999998,TJ,CO2,74100.0,kg/TJ,17054607.024,kg +349fed4e-ce94-3466-998b-829862a712cb,SESCO,II.1.1,Chaco,AR-H,annual,2023,gas oil combustion consumption by freight transport,230.15663999999998,TJ,CH4,3.9,kg/TJ,897.6108959999999,kg +349fed4e-ce94-3466-998b-829862a712cb,SESCO,II.1.1,Chaco,AR-H,annual,2023,gas oil combustion consumption by freight transport,230.15663999999998,TJ,N2O,3.9,kg/TJ,897.6108959999999,kg +7af6f95a-ae25-3a0c-8ee4-3f44056d2305,SESCO,II.1.1,Chubut,AR-U,annual,2023,gas oil combustion consumption by freight transport,583.98816,TJ,CO2,74100.0,kg/TJ,43273522.656,kg +454f2c73-2c34-3bd3-a7a5-4e4fedf0acf7,SESCO,II.1.1,Chubut,AR-U,annual,2023,gas oil combustion consumption by freight transport,583.98816,TJ,CH4,3.9,kg/TJ,2277.553824,kg +454f2c73-2c34-3bd3-a7a5-4e4fedf0acf7,SESCO,II.1.1,Chubut,AR-U,annual,2023,gas oil combustion consumption by freight transport,583.98816,TJ,N2O,3.9,kg/TJ,2277.553824,kg +3bd96c5f-150d-33b4-a992-032849bdf3c3,SESCO,II.1.1,Corrientes,AR-W,annual,2023,gas oil combustion consumption by freight transport,307.95912,TJ,CO2,74100.0,kg/TJ,22819770.792,kg +4b91b395-9f55-39c3-9ee4-151afcba9c68,SESCO,II.1.1,Corrientes,AR-W,annual,2023,gas oil combustion consumption by freight transport,307.95912,TJ,CH4,3.9,kg/TJ,1201.040568,kg +4b91b395-9f55-39c3-9ee4-151afcba9c68,SESCO,II.1.1,Corrientes,AR-W,annual,2023,gas oil combustion consumption by freight transport,307.95912,TJ,N2O,3.9,kg/TJ,1201.040568,kg +a8d5b07f-9c04-3935-8bc3-88a658ee2054,SESCO,II.1.1,Córdoba,AR-X,annual,2023,gas oil combustion consumption by freight transport,996.5508,TJ,CO2,74100.0,kg/TJ,73844414.28,kg +bbc08672-bfbd-3933-b6f5-a0aff1ecde99,SESCO,II.1.1,Córdoba,AR-X,annual,2023,gas oil combustion consumption by freight transport,996.5508,TJ,CH4,3.9,kg/TJ,3886.54812,kg +bbc08672-bfbd-3933-b6f5-a0aff1ecde99,SESCO,II.1.1,Córdoba,AR-X,annual,2023,gas oil combustion consumption by freight transport,996.5508,TJ,N2O,3.9,kg/TJ,3886.54812,kg +7752b46c-fa00-35bf-8fb7-6797cb193e6c,SESCO,II.1.1,Entre Rios,AR-E,annual,2023,gas oil combustion consumption by freight transport,399.05376,TJ,CO2,74100.0,kg/TJ,29569883.616,kg +b321cfde-bda1-3f32-8546-44312500fdda,SESCO,II.1.1,Entre Rios,AR-E,annual,2023,gas oil combustion consumption by freight transport,399.05376,TJ,CH4,3.9,kg/TJ,1556.309664,kg +b321cfde-bda1-3f32-8546-44312500fdda,SESCO,II.1.1,Entre Rios,AR-E,annual,2023,gas oil combustion consumption by freight transport,399.05376,TJ,N2O,3.9,kg/TJ,1556.309664,kg +5bdd66c9-fb61-3c64-a8d7-78622a7ade89,SESCO,II.1.1,Formosa,AR-P,annual,2023,gas oil combustion consumption by freight transport,72.27611999999999,TJ,CO2,74100.0,kg/TJ,5355660.492,kg +73eb304a-adc0-39f0-a5de-0685feea5d1e,SESCO,II.1.1,Formosa,AR-P,annual,2023,gas oil combustion consumption by freight transport,72.27611999999999,TJ,CH4,3.9,kg/TJ,281.87686799999994,kg +73eb304a-adc0-39f0-a5de-0685feea5d1e,SESCO,II.1.1,Formosa,AR-P,annual,2023,gas oil combustion consumption by freight transport,72.27611999999999,TJ,N2O,3.9,kg/TJ,281.87686799999994,kg +5302fcb8-2442-303a-bd5d-878bbfbccfdc,SESCO,II.1.1,Jujuy,AR-Y,annual,2023,gas oil combustion consumption by freight transport,96.8016,TJ,CO2,74100.0,kg/TJ,7172998.56,kg +aab528d0-d102-38d2-874e-ffde9f983dd4,SESCO,II.1.1,Jujuy,AR-Y,annual,2023,gas oil combustion consumption by freight transport,96.8016,TJ,CH4,3.9,kg/TJ,377.52624,kg +aab528d0-d102-38d2-874e-ffde9f983dd4,SESCO,II.1.1,Jujuy,AR-Y,annual,2023,gas oil combustion consumption by freight transport,96.8016,TJ,N2O,3.9,kg/TJ,377.52624,kg +40c3937a-c7a4-3387-804a-394373f41cc3,SESCO,II.1.1,La Pampa,AR-L,annual,2023,gas oil combustion consumption by freight transport,260.49744,TJ,CO2,74100.0,kg/TJ,19302860.303999998,kg +127cbee2-9973-3037-a801-f718a2e14013,SESCO,II.1.1,La Pampa,AR-L,annual,2023,gas oil combustion consumption by freight transport,260.49744,TJ,CH4,3.9,kg/TJ,1015.9400159999999,kg +127cbee2-9973-3037-a801-f718a2e14013,SESCO,II.1.1,La Pampa,AR-L,annual,2023,gas oil combustion consumption by freight transport,260.49744,TJ,N2O,3.9,kg/TJ,1015.9400159999999,kg +5a454fd9-60f9-3c20-8a21-082636cbbd3d,SESCO,II.1.1,La Rioja,AR-F,annual,2023,gas oil combustion consumption by freight transport,101.28048,TJ,CO2,74100.0,kg/TJ,7504883.568,kg +df889c89-9d39-39eb-96cc-fa7768f45f56,SESCO,II.1.1,La Rioja,AR-F,annual,2023,gas oil combustion consumption by freight transport,101.28048,TJ,CH4,3.9,kg/TJ,394.99387199999995,kg +df889c89-9d39-39eb-96cc-fa7768f45f56,SESCO,II.1.1,La Rioja,AR-F,annual,2023,gas oil combustion consumption by freight transport,101.28048,TJ,N2O,3.9,kg/TJ,394.99387199999995,kg +9d80afc6-55bd-3b71-a919-2f47843554e6,SESCO,II.1.1,Mendoza,AR-M,annual,2023,gas oil combustion consumption by freight transport,715.5372,TJ,CO2,74100.0,kg/TJ,53021306.519999996,kg +2625f05b-c409-371a-8023-ac03ef756856,SESCO,II.1.1,Mendoza,AR-M,annual,2023,gas oil combustion consumption by freight transport,715.5372,TJ,CH4,3.9,kg/TJ,2790.59508,kg +2625f05b-c409-371a-8023-ac03ef756856,SESCO,II.1.1,Mendoza,AR-M,annual,2023,gas oil combustion consumption by freight transport,715.5372,TJ,N2O,3.9,kg/TJ,2790.59508,kg +e6ea362a-fba2-30c5-9c60-9b6ce30499d4,SESCO,II.1.1,Misiones,AR-N,annual,2023,gas oil combustion consumption by freight transport,210.9408,TJ,CO2,74100.0,kg/TJ,15630713.28,kg +3744768f-b35b-3d18-aa6a-e3fbba9bd0ea,SESCO,II.1.1,Misiones,AR-N,annual,2023,gas oil combustion consumption by freight transport,210.9408,TJ,CH4,3.9,kg/TJ,822.66912,kg +3744768f-b35b-3d18-aa6a-e3fbba9bd0ea,SESCO,II.1.1,Misiones,AR-N,annual,2023,gas oil combustion consumption by freight transport,210.9408,TJ,N2O,3.9,kg/TJ,822.66912,kg +d63f37b3-314c-36f9-bff9-63067fc5d2e3,SESCO,II.1.1,Neuquén,AR-Q,annual,2023,gas oil combustion consumption by freight transport,1647.46932,TJ,CO2,74100.0,kg/TJ,122077476.61199999,kg +59d6a31d-dcf1-34fe-bd50-d565ccd3e138,SESCO,II.1.1,Neuquén,AR-Q,annual,2023,gas oil combustion consumption by freight transport,1647.46932,TJ,CH4,3.9,kg/TJ,6425.130348,kg +59d6a31d-dcf1-34fe-bd50-d565ccd3e138,SESCO,II.1.1,Neuquén,AR-Q,annual,2023,gas oil combustion consumption by freight transport,1647.46932,TJ,N2O,3.9,kg/TJ,6425.130348,kg +1f982feb-c8fe-33a3-ba59-5c2d6dd004dd,SESCO,II.1.1,Rio Negro,AR-R,annual,2023,gas oil combustion consumption by freight transport,601.07292,TJ,CO2,74100.0,kg/TJ,44539503.371999994,kg +95a13d2c-8139-353a-983a-8b27afca3db4,SESCO,II.1.1,Rio Negro,AR-R,annual,2023,gas oil combustion consumption by freight transport,601.07292,TJ,CH4,3.9,kg/TJ,2344.1843879999997,kg +95a13d2c-8139-353a-983a-8b27afca3db4,SESCO,II.1.1,Rio Negro,AR-R,annual,2023,gas oil combustion consumption by freight transport,601.07292,TJ,N2O,3.9,kg/TJ,2344.1843879999997,kg +d2d6f8b8-5525-32ce-ab16-9241991c4f2f,SESCO,II.1.1,Salta,AR-A,annual,2023,gas oil combustion consumption by freight transport,378.5376,TJ,CO2,74100.0,kg/TJ,28049636.16,kg +23870403-beb3-3704-b32c-6aede457ae0a,SESCO,II.1.1,Salta,AR-A,annual,2023,gas oil combustion consumption by freight transport,378.5376,TJ,CH4,3.9,kg/TJ,1476.29664,kg +23870403-beb3-3704-b32c-6aede457ae0a,SESCO,II.1.1,Salta,AR-A,annual,2023,gas oil combustion consumption by freight transport,378.5376,TJ,N2O,3.9,kg/TJ,1476.29664,kg +0bb5732e-846f-3c28-8940-286567a05d88,SESCO,II.1.1,San Juan,AR-J,annual,2023,gas oil combustion consumption by freight transport,92.21436,TJ,CO2,74100.0,kg/TJ,6833084.076,kg +3739a081-e5ee-38fd-98c5-4043039a5661,SESCO,II.1.1,San Juan,AR-J,annual,2023,gas oil combustion consumption by freight transport,92.21436,TJ,CH4,3.9,kg/TJ,359.636004,kg +3739a081-e5ee-38fd-98c5-4043039a5661,SESCO,II.1.1,San Juan,AR-J,annual,2023,gas oil combustion consumption by freight transport,92.21436,TJ,N2O,3.9,kg/TJ,359.636004,kg +95aeeb02-bf13-3b56-95bd-dbb8f4a5d7b9,SESCO,II.1.1,San Luis,AR-D,annual,2023,gas oil combustion consumption by freight transport,161.96208,TJ,CO2,74100.0,kg/TJ,12001390.127999999,kg +eaaa3026-8d06-35d9-99f3-e9afff1c25a6,SESCO,II.1.1,San Luis,AR-D,annual,2023,gas oil combustion consumption by freight transport,161.96208,TJ,CH4,3.9,kg/TJ,631.6521119999999,kg +eaaa3026-8d06-35d9-99f3-e9afff1c25a6,SESCO,II.1.1,San Luis,AR-D,annual,2023,gas oil combustion consumption by freight transport,161.96208,TJ,N2O,3.9,kg/TJ,631.6521119999999,kg +4eeaf3db-bc4f-380c-b907-71be05efc8d0,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2023,gas oil combustion consumption by freight transport,479.34852,TJ,CO2,74100.0,kg/TJ,35519725.332,kg +31f8aaf2-e3f8-3b5f-8f36-a2cf3de6bacd,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2023,gas oil combustion consumption by freight transport,479.34852,TJ,CH4,3.9,kg/TJ,1869.459228,kg +31f8aaf2-e3f8-3b5f-8f36-a2cf3de6bacd,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2023,gas oil combustion consumption by freight transport,479.34852,TJ,N2O,3.9,kg/TJ,1869.459228,kg +50c7a0b0-e059-34ed-9b1c-f473ce8e25b5,SESCO,II.1.1,Santa Fe,AR-S,annual,2023,gas oil combustion consumption by freight transport,976.17912,TJ,CO2,74100.0,kg/TJ,72334872.792,kg +6f1ea800-8d67-3a5d-a819-1200cd06e9b0,SESCO,II.1.1,Santa Fe,AR-S,annual,2023,gas oil combustion consumption by freight transport,976.17912,TJ,CH4,3.9,kg/TJ,3807.098568,kg +6f1ea800-8d67-3a5d-a819-1200cd06e9b0,SESCO,II.1.1,Santa Fe,AR-S,annual,2023,gas oil combustion consumption by freight transport,976.17912,TJ,N2O,3.9,kg/TJ,3807.098568,kg +89b2663d-90ad-36c3-81eb-4b9d61e0732a,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2023,gas oil combustion consumption by freight transport,191.94168,TJ,CO2,74100.0,kg/TJ,14222878.488,kg +7c21ca75-09ea-38b5-b340-75821c5a7a7a,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2023,gas oil combustion consumption by freight transport,191.94168,TJ,CH4,3.9,kg/TJ,748.572552,kg +7c21ca75-09ea-38b5-b340-75821c5a7a7a,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2023,gas oil combustion consumption by freight transport,191.94168,TJ,N2O,3.9,kg/TJ,748.572552,kg +924ed928-09b4-3b3c-a37d-13bb4de3a00c,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2023,gas oil combustion consumption by freight transport,148.23648,TJ,CO2,74100.0,kg/TJ,10984323.168,kg +a3bf831e-90db-3aca-b3b1-1f03c8547fe6,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2023,gas oil combustion consumption by freight transport,148.23648,TJ,CH4,3.9,kg/TJ,578.122272,kg +a3bf831e-90db-3aca-b3b1-1f03c8547fe6,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2023,gas oil combustion consumption by freight transport,148.23648,TJ,N2O,3.9,kg/TJ,578.122272,kg +3534cb96-ddb1-3839-918b-fdfa4367c7dc,SESCO,II.1.1,Tucuman,AR-T,annual,2023,gas oil combustion consumption by freight transport,230.69844,TJ,CO2,74100.0,kg/TJ,17094754.404,kg +9fd9a19b-46ea-3666-b30f-530b08f1880f,SESCO,II.1.1,Tucuman,AR-T,annual,2023,gas oil combustion consumption by freight transport,230.69844,TJ,CH4,3.9,kg/TJ,899.723916,kg +9fd9a19b-46ea-3666-b30f-530b08f1880f,SESCO,II.1.1,Tucuman,AR-T,annual,2023,gas oil combustion consumption by freight transport,230.69844,TJ,N2O,3.9,kg/TJ,899.723916,kg +f80543b9-d0a6-308b-80af-f2b9e31e7246,SESCO,II.1.1,Buenos Aires,AR-B,annual,2023,gas oil combustion consumption by public passenger transport,5703.4202399999995,TJ,CO2,74100.0,kg/TJ,422623439.784,kg +25ae312c-99e1-3966-9aeb-4d6a44ac6172,SESCO,II.1.1,Buenos Aires,AR-B,annual,2023,gas oil combustion consumption by public passenger transport,5703.4202399999995,TJ,CH4,3.9,kg/TJ,22243.338935999996,kg +25ae312c-99e1-3966-9aeb-4d6a44ac6172,SESCO,II.1.1,Buenos Aires,AR-B,annual,2023,gas oil combustion consumption by public passenger transport,5703.4202399999995,TJ,N2O,3.9,kg/TJ,22243.338935999996,kg +be0315ff-0c0e-32ed-8017-0e515ffc96f0,SESCO,II.1.1,Capital Federal,AR-C,annual,2023,gas oil combustion consumption by public passenger transport,1664.48184,TJ,CO2,74100.0,kg/TJ,123338104.344,kg +4b1bd794-2913-3cd1-ad9c-dd513f59e0b2,SESCO,II.1.1,Capital Federal,AR-C,annual,2023,gas oil combustion consumption by public passenger transport,1664.48184,TJ,CH4,3.9,kg/TJ,6491.479176,kg +4b1bd794-2913-3cd1-ad9c-dd513f59e0b2,SESCO,II.1.1,Capital Federal,AR-C,annual,2023,gas oil combustion consumption by public passenger transport,1664.48184,TJ,N2O,3.9,kg/TJ,6491.479176,kg +06504179-0741-3648-803b-436c501dbc6e,SESCO,II.1.1,Catamarca,AR-K,annual,2023,gas oil combustion consumption by public passenger transport,70.14504,TJ,CO2,74100.0,kg/TJ,5197747.464,kg +6995b8db-999e-32db-b580-a5d6b798aaba,SESCO,II.1.1,Catamarca,AR-K,annual,2023,gas oil combustion consumption by public passenger transport,70.14504,TJ,CH4,3.9,kg/TJ,273.565656,kg +6995b8db-999e-32db-b580-a5d6b798aaba,SESCO,II.1.1,Catamarca,AR-K,annual,2023,gas oil combustion consumption by public passenger transport,70.14504,TJ,N2O,3.9,kg/TJ,273.565656,kg +4e4a5008-8663-3e7c-ba0a-f563a75c8a7b,SESCO,II.1.1,Chaco,AR-H,annual,2023,gas oil combustion consumption by public passenger transport,83.00376,TJ,CO2,74100.0,kg/TJ,6150578.616,kg +482cb67e-715e-3362-ae57-f1af7ce213ea,SESCO,II.1.1,Chaco,AR-H,annual,2023,gas oil combustion consumption by public passenger transport,83.00376,TJ,CH4,3.9,kg/TJ,323.71466399999997,kg +482cb67e-715e-3362-ae57-f1af7ce213ea,SESCO,II.1.1,Chaco,AR-H,annual,2023,gas oil combustion consumption by public passenger transport,83.00376,TJ,N2O,3.9,kg/TJ,323.71466399999997,kg +620708a5-a7c1-359f-9e18-172479b3c3df,SESCO,II.1.1,Chubut,AR-U,annual,2023,gas oil combustion consumption by public passenger transport,5.49024,TJ,CO2,74100.0,kg/TJ,406826.784,kg +a51eca68-bf6e-3dd5-8384-c31674e8405c,SESCO,II.1.1,Chubut,AR-U,annual,2023,gas oil combustion consumption by public passenger transport,5.49024,TJ,CH4,3.9,kg/TJ,21.411936,kg +a51eca68-bf6e-3dd5-8384-c31674e8405c,SESCO,II.1.1,Chubut,AR-U,annual,2023,gas oil combustion consumption by public passenger transport,5.49024,TJ,N2O,3.9,kg/TJ,21.411936,kg +63d99530-68aa-3973-a7fd-f8ebf76e19e3,SESCO,II.1.1,Corrientes,AR-W,annual,2023,gas oil combustion consumption by public passenger transport,124.32504,TJ,CO2,74100.0,kg/TJ,9212485.464,kg +0c0c65c6-1eb0-3f3f-8f67-7716c94790d2,SESCO,II.1.1,Corrientes,AR-W,annual,2023,gas oil combustion consumption by public passenger transport,124.32504,TJ,CH4,3.9,kg/TJ,484.867656,kg +0c0c65c6-1eb0-3f3f-8f67-7716c94790d2,SESCO,II.1.1,Corrientes,AR-W,annual,2023,gas oil combustion consumption by public passenger transport,124.32504,TJ,N2O,3.9,kg/TJ,484.867656,kg +d24b63d9-8b8f-3132-a535-2c543f13ffae,SESCO,II.1.1,Córdoba,AR-X,annual,2023,gas oil combustion consumption by public passenger transport,782.86488,TJ,CO2,74100.0,kg/TJ,58010287.607999995,kg +efcf033d-e4e0-3a8b-af60-56f0fc1cee73,SESCO,II.1.1,Córdoba,AR-X,annual,2023,gas oil combustion consumption by public passenger transport,782.86488,TJ,CH4,3.9,kg/TJ,3053.1730319999997,kg +efcf033d-e4e0-3a8b-af60-56f0fc1cee73,SESCO,II.1.1,Córdoba,AR-X,annual,2023,gas oil combustion consumption by public passenger transport,782.86488,TJ,N2O,3.9,kg/TJ,3053.1730319999997,kg +7aea0725-cd72-312d-a976-41539f17f7ec,SESCO,II.1.1,Entre Rios,AR-E,annual,2023,gas oil combustion consumption by public passenger transport,187.39056,TJ,CO2,74100.0,kg/TJ,13885640.496,kg +61fc4724-4a37-342b-8262-083863c8fa61,SESCO,II.1.1,Entre Rios,AR-E,annual,2023,gas oil combustion consumption by public passenger transport,187.39056,TJ,CH4,3.9,kg/TJ,730.823184,kg +61fc4724-4a37-342b-8262-083863c8fa61,SESCO,II.1.1,Entre Rios,AR-E,annual,2023,gas oil combustion consumption by public passenger transport,187.39056,TJ,N2O,3.9,kg/TJ,730.823184,kg +7493a0e8-ee10-3982-beef-eed0b3b08a90,SESCO,II.1.1,Formosa,AR-P,annual,2023,gas oil combustion consumption by public passenger transport,37.96212,TJ,CO2,74100.0,kg/TJ,2812993.0919999997,kg +79d13e8a-d8e8-3584-8e3d-4a8c781c227a,SESCO,II.1.1,Formosa,AR-P,annual,2023,gas oil combustion consumption by public passenger transport,37.96212,TJ,CH4,3.9,kg/TJ,148.052268,kg +79d13e8a-d8e8-3584-8e3d-4a8c781c227a,SESCO,II.1.1,Formosa,AR-P,annual,2023,gas oil combustion consumption by public passenger transport,37.96212,TJ,N2O,3.9,kg/TJ,148.052268,kg +48ed5757-0a7a-3219-994e-1107791800fd,SESCO,II.1.1,Jujuy,AR-Y,annual,2023,gas oil combustion consumption by public passenger transport,198.51552,TJ,CO2,74100.0,kg/TJ,14710000.032000002,kg +afeef817-e91f-3e1d-b3c4-b00f8e477084,SESCO,II.1.1,Jujuy,AR-Y,annual,2023,gas oil combustion consumption by public passenger transport,198.51552,TJ,CH4,3.9,kg/TJ,774.2105280000001,kg +afeef817-e91f-3e1d-b3c4-b00f8e477084,SESCO,II.1.1,Jujuy,AR-Y,annual,2023,gas oil combustion consumption by public passenger transport,198.51552,TJ,N2O,3.9,kg/TJ,774.2105280000001,kg +05a03f63-86ce-3227-a74f-f65c4ecccec2,SESCO,II.1.1,Mendoza,AR-M,annual,2023,gas oil combustion consumption by public passenger transport,1214.06544,TJ,CO2,74100.0,kg/TJ,89962249.104,kg +705776c6-9bbd-3eb4-a614-d1e14e1f3f00,SESCO,II.1.1,Mendoza,AR-M,annual,2023,gas oil combustion consumption by public passenger transport,1214.06544,TJ,CH4,3.9,kg/TJ,4734.855216,kg +705776c6-9bbd-3eb4-a614-d1e14e1f3f00,SESCO,II.1.1,Mendoza,AR-M,annual,2023,gas oil combustion consumption by public passenger transport,1214.06544,TJ,N2O,3.9,kg/TJ,4734.855216,kg +6b79c211-071e-3a7d-bc57-2a09ad53d188,SESCO,II.1.1,Misiones,AR-N,annual,2023,gas oil combustion consumption by public passenger transport,650.59344,TJ,CO2,74100.0,kg/TJ,48208973.904,kg +025f8972-a315-3834-ae7a-49f86fbfa440,SESCO,II.1.1,Misiones,AR-N,annual,2023,gas oil combustion consumption by public passenger transport,650.59344,TJ,CH4,3.9,kg/TJ,2537.3144159999997,kg +025f8972-a315-3834-ae7a-49f86fbfa440,SESCO,II.1.1,Misiones,AR-N,annual,2023,gas oil combustion consumption by public passenger transport,650.59344,TJ,N2O,3.9,kg/TJ,2537.3144159999997,kg +2768f7a9-b91d-3db8-ab3f-2256441cf3a8,SESCO,II.1.1,Neuquén,AR-Q,annual,2023,gas oil combustion consumption by public passenger transport,21.70812,TJ,CO2,74100.0,kg/TJ,1608571.692,kg +731cd47f-1037-380c-9aaf-64ece6be5d3a,SESCO,II.1.1,Neuquén,AR-Q,annual,2023,gas oil combustion consumption by public passenger transport,21.70812,TJ,CH4,3.9,kg/TJ,84.661668,kg +731cd47f-1037-380c-9aaf-64ece6be5d3a,SESCO,II.1.1,Neuquén,AR-Q,annual,2023,gas oil combustion consumption by public passenger transport,21.70812,TJ,N2O,3.9,kg/TJ,84.661668,kg +f670640a-89e7-3f91-9d62-aa6d2e3d2f11,SESCO,II.1.1,Rio Negro,AR-R,annual,2023,gas oil combustion consumption by public passenger transport,28.1736,TJ,CO2,74100.0,kg/TJ,2087663.76,kg +8e635a25-77e3-3cd2-b016-625148d21776,SESCO,II.1.1,Rio Negro,AR-R,annual,2023,gas oil combustion consumption by public passenger transport,28.1736,TJ,CH4,3.9,kg/TJ,109.87704,kg +8e635a25-77e3-3cd2-b016-625148d21776,SESCO,II.1.1,Rio Negro,AR-R,annual,2023,gas oil combustion consumption by public passenger transport,28.1736,TJ,N2O,3.9,kg/TJ,109.87704,kg +6ff70493-81ef-315d-8c47-786d49ab8058,SESCO,II.1.1,Salta,AR-A,annual,2023,gas oil combustion consumption by public passenger transport,287.37072,TJ,CO2,74100.0,kg/TJ,21294170.352,kg +76e0a0e5-1f79-3137-b906-fff3d492c550,SESCO,II.1.1,Salta,AR-A,annual,2023,gas oil combustion consumption by public passenger transport,287.37072,TJ,CH4,3.9,kg/TJ,1120.745808,kg +76e0a0e5-1f79-3137-b906-fff3d492c550,SESCO,II.1.1,Salta,AR-A,annual,2023,gas oil combustion consumption by public passenger transport,287.37072,TJ,N2O,3.9,kg/TJ,1120.745808,kg +9b7b353a-68e3-3c1d-b14a-d6ed4224e523,SESCO,II.1.1,San Juan,AR-J,annual,2023,gas oil combustion consumption by public passenger transport,3.0702,TJ,CO2,74100.0,kg/TJ,227501.81999999998,kg +026ca2c4-03ca-30e4-a19a-2badf58d9a8d,SESCO,II.1.1,San Juan,AR-J,annual,2023,gas oil combustion consumption by public passenger transport,3.0702,TJ,CH4,3.9,kg/TJ,11.97378,kg +026ca2c4-03ca-30e4-a19a-2badf58d9a8d,SESCO,II.1.1,San Juan,AR-J,annual,2023,gas oil combustion consumption by public passenger transport,3.0702,TJ,N2O,3.9,kg/TJ,11.97378,kg +209148d4-43a0-3aa0-8c2b-98d728d0ea6a,SESCO,II.1.1,Santa Fe,AR-S,annual,2023,gas oil combustion consumption by public passenger transport,419.49768,TJ,CO2,74100.0,kg/TJ,31084778.088,kg +b8be8dc4-17e1-346e-a2c3-f67265b359c4,SESCO,II.1.1,Santa Fe,AR-S,annual,2023,gas oil combustion consumption by public passenger transport,419.49768,TJ,CH4,3.9,kg/TJ,1636.040952,kg +b8be8dc4-17e1-346e-a2c3-f67265b359c4,SESCO,II.1.1,Santa Fe,AR-S,annual,2023,gas oil combustion consumption by public passenger transport,419.49768,TJ,N2O,3.9,kg/TJ,1636.040952,kg +08cd1f88-5341-3a47-9736-4743d9c979cd,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2023,gas oil combustion consumption by public passenger transport,9.53568,TJ,CO2,74100.0,kg/TJ,706593.8879999999,kg +c9cdc773-abc1-3803-bda7-b84ca150abf0,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2023,gas oil combustion consumption by public passenger transport,9.53568,TJ,CH4,3.9,kg/TJ,37.18915199999999,kg +c9cdc773-abc1-3803-bda7-b84ca150abf0,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2023,gas oil combustion consumption by public passenger transport,9.53568,TJ,N2O,3.9,kg/TJ,37.18915199999999,kg +8bcef5b6-91d4-3c35-a0cf-8f580115303f,SESCO,II.1.1,Tucuman,AR-T,annual,2023,gas oil combustion consumption by public passenger transport,47.3172,TJ,CO2,74100.0,kg/TJ,3506204.52,kg +5f287ff0-16a9-3b29-b797-f84519f32ee3,SESCO,II.1.1,Tucuman,AR-T,annual,2023,gas oil combustion consumption by public passenger transport,47.3172,TJ,CH4,3.9,kg/TJ,184.53708,kg +5f287ff0-16a9-3b29-b797-f84519f32ee3,SESCO,II.1.1,Tucuman,AR-T,annual,2023,gas oil combustion consumption by public passenger transport,47.3172,TJ,N2O,3.9,kg/TJ,184.53708,kg +fe15e951-61a2-3baf-844a-5d09f638fe5e,SESCO,II.1.1,Buenos Aires,AR-B,annual,2023,gas oil combustion consumption by public passenger transport,5114.8809599999995,TJ,CO2,74100.0,kg/TJ,379012679.136,kg +9f34c8d7-809f-35ce-b918-f0b63fd69e4e,SESCO,II.1.1,Buenos Aires,AR-B,annual,2023,gas oil combustion consumption by public passenger transport,5114.8809599999995,TJ,CH4,3.9,kg/TJ,19948.035743999997,kg +9f34c8d7-809f-35ce-b918-f0b63fd69e4e,SESCO,II.1.1,Buenos Aires,AR-B,annual,2023,gas oil combustion consumption by public passenger transport,5114.8809599999995,TJ,N2O,3.9,kg/TJ,19948.035743999997,kg +507278d1-2a4b-39e3-8ab2-a0de75923cc9,SESCO,II.1.1,Capital Federal,AR-C,annual,2023,gas oil combustion consumption by public passenger transport,1080.1686,TJ,CO2,74100.0,kg/TJ,80040493.25999999,kg +4931be1f-1f31-3330-800e-e7988ab36316,SESCO,II.1.1,Capital Federal,AR-C,annual,2023,gas oil combustion consumption by public passenger transport,1080.1686,TJ,CH4,3.9,kg/TJ,4212.65754,kg +4931be1f-1f31-3330-800e-e7988ab36316,SESCO,II.1.1,Capital Federal,AR-C,annual,2023,gas oil combustion consumption by public passenger transport,1080.1686,TJ,N2O,3.9,kg/TJ,4212.65754,kg +6010d215-1254-3ce1-ac5b-7c229ce54624,SESCO,II.1.1,Chaco,AR-H,annual,2023,gas oil combustion consumption by public passenger transport,32.1468,TJ,CO2,74100.0,kg/TJ,2382077.88,kg +b90df145-15a6-3931-a410-5026ec5a7af9,SESCO,II.1.1,Chaco,AR-H,annual,2023,gas oil combustion consumption by public passenger transport,32.1468,TJ,CH4,3.9,kg/TJ,125.37252,kg +b90df145-15a6-3931-a410-5026ec5a7af9,SESCO,II.1.1,Chaco,AR-H,annual,2023,gas oil combustion consumption by public passenger transport,32.1468,TJ,N2O,3.9,kg/TJ,125.37252,kg +6399b07b-8513-32ff-88cf-62a9680e39dc,SESCO,II.1.1,Chubut,AR-U,annual,2023,gas oil combustion consumption by public passenger transport,5.418,TJ,CO2,74100.0,kg/TJ,401473.8,kg +7eb87fd9-c8d4-3f88-b8e0-cdd1e7650121,SESCO,II.1.1,Chubut,AR-U,annual,2023,gas oil combustion consumption by public passenger transport,5.418,TJ,CH4,3.9,kg/TJ,21.1302,kg +7eb87fd9-c8d4-3f88-b8e0-cdd1e7650121,SESCO,II.1.1,Chubut,AR-U,annual,2023,gas oil combustion consumption by public passenger transport,5.418,TJ,N2O,3.9,kg/TJ,21.1302,kg +bdcf1cd8-c076-359e-94a2-6376b1e7833c,SESCO,II.1.1,Corrientes,AR-W,annual,2023,gas oil combustion consumption by public passenger transport,55.37196,TJ,CO2,74100.0,kg/TJ,4103062.236,kg +905eb200-6183-377e-9d2b-44172f02c73c,SESCO,II.1.1,Corrientes,AR-W,annual,2023,gas oil combustion consumption by public passenger transport,55.37196,TJ,CH4,3.9,kg/TJ,215.950644,kg +905eb200-6183-377e-9d2b-44172f02c73c,SESCO,II.1.1,Corrientes,AR-W,annual,2023,gas oil combustion consumption by public passenger transport,55.37196,TJ,N2O,3.9,kg/TJ,215.950644,kg +76e555b7-6d19-3c7a-9b93-8b0ab2be6bf4,SESCO,II.1.1,Córdoba,AR-X,annual,2023,gas oil combustion consumption by public passenger transport,237.74184,TJ,CO2,74100.0,kg/TJ,17616670.344,kg +2e216069-8371-3d2a-b811-deb92a91c12d,SESCO,II.1.1,Córdoba,AR-X,annual,2023,gas oil combustion consumption by public passenger transport,237.74184,TJ,CH4,3.9,kg/TJ,927.193176,kg +2e216069-8371-3d2a-b811-deb92a91c12d,SESCO,II.1.1,Córdoba,AR-X,annual,2023,gas oil combustion consumption by public passenger transport,237.74184,TJ,N2O,3.9,kg/TJ,927.193176,kg +b1c45e4b-705f-34a0-af3b-d4b86566ad63,SESCO,II.1.1,Entre Rios,AR-E,annual,2023,gas oil combustion consumption by public passenger transport,34.89192,TJ,CO2,74100.0,kg/TJ,2585491.272,kg +1a86c305-a031-314d-b83f-0119b8983b2f,SESCO,II.1.1,Entre Rios,AR-E,annual,2023,gas oil combustion consumption by public passenger transport,34.89192,TJ,CH4,3.9,kg/TJ,136.078488,kg +1a86c305-a031-314d-b83f-0119b8983b2f,SESCO,II.1.1,Entre Rios,AR-E,annual,2023,gas oil combustion consumption by public passenger transport,34.89192,TJ,N2O,3.9,kg/TJ,136.078488,kg +34210070-4f25-3191-a738-abd91f533e93,SESCO,II.1.1,Mendoza,AR-M,annual,2023,gas oil combustion consumption by public passenger transport,43.01892,TJ,CO2,74100.0,kg/TJ,3187701.972,kg +4277ca58-a60a-3fc9-854c-618f327ada18,SESCO,II.1.1,Mendoza,AR-M,annual,2023,gas oil combustion consumption by public passenger transport,43.01892,TJ,CH4,3.9,kg/TJ,167.773788,kg +4277ca58-a60a-3fc9-854c-618f327ada18,SESCO,II.1.1,Mendoza,AR-M,annual,2023,gas oil combustion consumption by public passenger transport,43.01892,TJ,N2O,3.9,kg/TJ,167.773788,kg +4f7bcde3-f7e1-3619-93f2-8ec8159a1ee2,SESCO,II.1.1,Misiones,AR-N,annual,2023,gas oil combustion consumption by public passenger transport,10.25808,TJ,CO2,74100.0,kg/TJ,760123.728,kg +c94ed515-b424-38de-89a3-8026054396c9,SESCO,II.1.1,Misiones,AR-N,annual,2023,gas oil combustion consumption by public passenger transport,10.25808,TJ,CH4,3.9,kg/TJ,40.006512,kg +c94ed515-b424-38de-89a3-8026054396c9,SESCO,II.1.1,Misiones,AR-N,annual,2023,gas oil combustion consumption by public passenger transport,10.25808,TJ,N2O,3.9,kg/TJ,40.006512,kg +1c2d185f-f8bd-3467-80bd-842fb59cb2e1,SESCO,II.1.1,Neuquén,AR-Q,annual,2023,gas oil combustion consumption by public passenger transport,15.45936,TJ,CO2,74100.0,kg/TJ,1145538.5760000001,kg +df3edd88-f4cb-3e82-a3a9-7dfa737e7cc5,SESCO,II.1.1,Neuquén,AR-Q,annual,2023,gas oil combustion consumption by public passenger transport,15.45936,TJ,CH4,3.9,kg/TJ,60.291503999999996,kg +df3edd88-f4cb-3e82-a3a9-7dfa737e7cc5,SESCO,II.1.1,Neuquén,AR-Q,annual,2023,gas oil combustion consumption by public passenger transport,15.45936,TJ,N2O,3.9,kg/TJ,60.291503999999996,kg +c62a2c0e-1126-3d59-b16f-3ddff8d52c83,SESCO,II.1.1,Rio Negro,AR-R,annual,2023,gas oil combustion consumption by public passenger transport,76.28544,TJ,CO2,74100.0,kg/TJ,5652751.103999999,kg +17ebeb4b-49ce-3a11-b765-738791233c19,SESCO,II.1.1,Rio Negro,AR-R,annual,2023,gas oil combustion consumption by public passenger transport,76.28544,TJ,CH4,3.9,kg/TJ,297.51321599999994,kg +17ebeb4b-49ce-3a11-b765-738791233c19,SESCO,II.1.1,Rio Negro,AR-R,annual,2023,gas oil combustion consumption by public passenger transport,76.28544,TJ,N2O,3.9,kg/TJ,297.51321599999994,kg +15e7c7f7-6e5a-39f3-95f6-ea1aed259607,SESCO,II.1.1,Salta,AR-A,annual,2023,gas oil combustion consumption by public passenger transport,178.75788,TJ,CO2,74100.0,kg/TJ,13245958.908,kg +1743d341-eeac-3298-bd78-9db7f21967c4,SESCO,II.1.1,Salta,AR-A,annual,2023,gas oil combustion consumption by public passenger transport,178.75788,TJ,CH4,3.9,kg/TJ,697.155732,kg +1743d341-eeac-3298-bd78-9db7f21967c4,SESCO,II.1.1,Salta,AR-A,annual,2023,gas oil combustion consumption by public passenger transport,178.75788,TJ,N2O,3.9,kg/TJ,697.155732,kg +d7f94d48-f094-37be-b6b9-d63a587d0775,SESCO,II.1.1,San Juan,AR-J,annual,2023,gas oil combustion consumption by public passenger transport,1.51704,TJ,CO2,74100.0,kg/TJ,112412.66399999999,kg +b13c3e27-4fb7-3565-acee-777d9fddf2eb,SESCO,II.1.1,San Juan,AR-J,annual,2023,gas oil combustion consumption by public passenger transport,1.51704,TJ,CH4,3.9,kg/TJ,5.916455999999999,kg +b13c3e27-4fb7-3565-acee-777d9fddf2eb,SESCO,II.1.1,San Juan,AR-J,annual,2023,gas oil combustion consumption by public passenger transport,1.51704,TJ,N2O,3.9,kg/TJ,5.916455999999999,kg +61071f19-df8b-3f9d-9a8b-dd2ecc1c8550,SESCO,II.1.1,Santa Fe,AR-S,annual,2023,gas oil combustion consumption by public passenger transport,49.88172,TJ,CO2,74100.0,kg/TJ,3696235.452,kg +55ae2d01-19d5-3264-b3df-a9812c4e9703,SESCO,II.1.1,Santa Fe,AR-S,annual,2023,gas oil combustion consumption by public passenger transport,49.88172,TJ,CH4,3.9,kg/TJ,194.538708,kg +55ae2d01-19d5-3264-b3df-a9812c4e9703,SESCO,II.1.1,Santa Fe,AR-S,annual,2023,gas oil combustion consumption by public passenger transport,49.88172,TJ,N2O,3.9,kg/TJ,194.538708,kg +1ece3a25-a5eb-32e3-b942-ae045c30d239,SESCO,I.3.1,Córdoba,AR-X,annual,2010,biodiesel combustion consumption by petrochemical industries,0.00031572288,TJ,CH4,10.0,kg/TJ,0.0031572288,kg +99751f99-d1ab-3cff-a62a-81dd29484065,SESCO,I.3.1,Córdoba,AR-X,annual,2010,biodiesel combustion consumption by petrochemical industries,0.00031572288,TJ,N2O,0.6,kg/TJ,0.000189433728,kg +214fe6a4-921f-3b60-9785-a7d03135e217,SESCO,II.5.1,Buenos Aires,AR-B,annual,2011,biodiesel combustion consumption by agriculture machines,8.5536e-05,TJ,CH4,10.0,kg/TJ,0.00085536,kg +ca8d4fda-16af-34e3-b28d-8d67fd48a5a3,SESCO,II.5.1,Buenos Aires,AR-B,annual,2011,biodiesel combustion consumption by agriculture machines,8.5536e-05,TJ,N2O,0.6,kg/TJ,5.13216e-05,kg +c5aeb523-236d-3fe5-ae85-8443fd8fb850,SESCO,II.1.1,Capital Federal,AR-C,annual,2012,biodiesel combustion consumption by freight transport,0.00020573784,TJ,CH4,10.0,kg/TJ,0.0020573784,kg +4aa81d07-01cc-3ae8-8cb7-7ec9748a8776,SESCO,II.1.1,Capital Federal,AR-C,annual,2012,biodiesel combustion consumption by freight transport,0.00020573784,TJ,N2O,0.6,kg/TJ,0.000123442704,kg +13952624-7f57-3441-b4d5-dc7ba8127c78,SESCO,II.1.1,Capital Federal,AR-C,annual,2012,biodiesel combustion consumption by public passenger transport,0.0009812880000000003,TJ,CH4,10.0,kg/TJ,0.009812880000000003,kg +bb5663b8-51e0-33e9-9ed3-f516c7f746a3,SESCO,II.1.1,Capital Federal,AR-C,annual,2012,biodiesel combustion consumption by public passenger transport,0.0009812880000000003,TJ,N2O,0.6,kg/TJ,0.0005887728000000002,kg +1b7e1b2f-08f1-394a-908e-d4616565dfd6,SESCO,II.5.1,La Pampa,AR-L,annual,2013,biodiesel combustion consumption by agriculture machines,0.000399168,TJ,CH4,10.0,kg/TJ,0.00399168,kg +5d3ee229-4133-3b53-a24c-365aed6ba4d2,SESCO,II.5.1,La Pampa,AR-L,annual,2013,biodiesel combustion consumption by agriculture machines,0.000399168,TJ,N2O,0.6,kg/TJ,0.00023950079999999997,kg +557b9769-c654-3a63-a98d-ff8a1bfd0b13,SESCO,I.3.1,Córdoba,AR-X,annual,2010,diesel combustion consumption by petrochemical industries,1.1994264374399999,TJ,CO2,74100.0,kg/TJ,88877.49901430399,kg +d7750494-65ef-3fec-9521-1df33e9fb9d6,SESCO,I.3.1,Córdoba,AR-X,annual,2010,diesel combustion consumption by petrochemical industries,1.1994264374399999,TJ,CH4,3.0,kg/TJ,3.59827931232,kg +c78e191c-dd9d-34bd-88b2-700f2109c505,SESCO,I.3.1,Córdoba,AR-X,annual,2010,diesel combustion consumption by petrochemical industries,1.1994264374399999,TJ,N2O,0.6,kg/TJ,0.7196558624639999,kg +2d62dacc-8f82-3a9d-bdb0-35b86426e967,SESCO,II.5.1,Buenos Aires,AR-B,annual,2011,diesel combustion consumption by agriculture machines,0.21658996800000002,TJ,CO2,74100.0,kg/TJ,16049.316628800001,kg +cb93c616-6157-3e81-b111-1366dfa37ab5,SESCO,II.5.1,Buenos Aires,AR-B,annual,2011,diesel combustion consumption by agriculture machines,0.21658996800000002,TJ,CH4,3.0,kg/TJ,0.649769904,kg +2dacbac9-5452-384d-93d9-8031cd825a93,SESCO,II.5.1,Buenos Aires,AR-B,annual,2011,diesel combustion consumption by agriculture machines,0.21658996800000002,TJ,N2O,0.6,kg/TJ,0.1299539808,kg +4d8f86ec-5c54-3a5f-8129-2f82889702f4,SESCO,II.1.1,Capital Federal,AR-C,annual,2012,diesel combustion consumption by freight transport,0.44649163692,TJ,CO2,74100.0,kg/TJ,33085.030295772,kg +d8da48b5-4faa-3207-b46f-275034fa0c7d,SESCO,II.1.1,Capital Federal,AR-C,annual,2012,diesel combustion consumption by freight transport,0.44649163692,TJ,CH4,3.0,kg/TJ,1.33947491076,kg +53c59895-c092-3e23-9ed9-e2dbf69838b3,SESCO,II.1.1,Capital Federal,AR-C,annual,2012,diesel combustion consumption by freight transport,0.44649163692,TJ,N2O,0.6,kg/TJ,0.26789498215199997,kg +e80eefd6-c605-3cf4-9185-7e8ce65ac1ea,SESCO,II.1.1,Capital Federal,AR-C,annual,2012,diesel combustion consumption by public passenger transport,2.129588244,TJ,CO2,74100.0,kg/TJ,157802.4888804,kg +3f388c1c-4e24-3fc1-876f-e59c65f5a372,SESCO,II.1.1,Capital Federal,AR-C,annual,2012,diesel combustion consumption by public passenger transport,2.129588244,TJ,CH4,3.0,kg/TJ,6.388764731999999,kg +43360c6e-d16a-3b8a-b649-f030d0acd388,SESCO,II.1.1,Capital Federal,AR-C,annual,2012,diesel combustion consumption by public passenger transport,2.129588244,TJ,N2O,0.6,kg/TJ,1.2777529464,kg +53588a48-62bd-3062-9f99-4c40ba7553b8,SESCO,II.5.1,La Pampa,AR-L,annual,2013,diesel combustion consumption by agriculture machines,0.757913184,TJ,CO2,74100.0,kg/TJ,56161.36693439999,kg +d6eecf97-fb4c-3d0c-9dde-ce1ae8ed8018,SESCO,II.5.1,La Pampa,AR-L,annual,2013,diesel combustion consumption by agriculture machines,0.757913184,TJ,CH4,3.0,kg/TJ,2.273739552,kg +767428ee-d7dc-30f8-bb6f-3b102ab96062,SESCO,II.5.1,La Pampa,AR-L,annual,2013,diesel combustion consumption by agriculture machines,0.757913184,TJ,N2O,0.6,kg/TJ,0.45474791039999996,kg +31ad8f2d-7892-37be-a77a-ea69bfaaca63,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,bioetanol combustion consumption by to the public,0.8342254800000001,TJ,CH4,10.0,kg/TJ,8.342254800000001,kg +be371208-e8b7-33dc-bd98-aef7337df8dc,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,bioetanol combustion consumption by to the public,0.8342254800000001,TJ,N2O,0.6,kg/TJ,0.500535288,kg +35b12868-41f4-3cc0-ad1e-28df3b1a13fe,SESCO,II.1.1,Capital Federal,AR-C,annual,2010,bioetanol combustion consumption by to the public,0.09628956000000001,TJ,CH4,10.0,kg/TJ,0.9628956000000001,kg +ff653487-a33c-3503-a39d-915a58cb0f25,SESCO,II.1.1,Capital Federal,AR-C,annual,2010,bioetanol combustion consumption by to the public,0.09628956000000001,TJ,N2O,0.6,kg/TJ,0.057773736000000006,kg +e58c7745-7569-3388-b28f-015f75256187,SESCO,II.1.1,Corrientes,AR-W,annual,2010,bioetanol combustion consumption by to the public,0.12952223999999998,TJ,CH4,10.0,kg/TJ,1.2952223999999999,kg +b1a4c5df-cb28-3350-ad9a-255111fdbf6f,SESCO,II.1.1,Corrientes,AR-W,annual,2010,bioetanol combustion consumption by to the public,0.12952223999999998,TJ,N2O,0.6,kg/TJ,0.07771334399999999,kg +61888ee5-b64c-362c-ab3d-5a1df7e55593,SESCO,II.1.1,Córdoba,AR-X,annual,2010,bioetanol combustion consumption by to the public,0.1256877,TJ,CH4,10.0,kg/TJ,1.2568770000000002,kg +bad1fe31-497f-3016-98af-65ac1885937c,SESCO,II.1.1,Córdoba,AR-X,annual,2010,bioetanol combustion consumption by to the public,0.1256877,TJ,N2O,0.6,kg/TJ,0.07541262,kg +5082389b-f239-3877-8b08-c609b8c7a500,SESCO,II.1.1,Entre Rios,AR-E,annual,2010,bioetanol combustion consumption by to the public,0.030250259999999998,TJ,CH4,10.0,kg/TJ,0.30250259999999995,kg +717a3341-2058-303e-9ea1-f79baff025cd,SESCO,II.1.1,Entre Rios,AR-E,annual,2010,bioetanol combustion consumption by to the public,0.030250259999999998,TJ,N2O,0.6,kg/TJ,0.018150155999999997,kg +cbc32429-53c8-3603-b26b-b668e1d427b2,SESCO,II.1.1,Jujuy,AR-Y,annual,2010,bioetanol combustion consumption by to the public,0.0340848,TJ,CH4,10.0,kg/TJ,0.340848,kg +d2906330-e6a7-322c-9a19-6dc39e396bcf,SESCO,II.1.1,Jujuy,AR-Y,annual,2010,bioetanol combustion consumption by to the public,0.0340848,TJ,N2O,0.6,kg/TJ,0.020450879999999998,kg +1cf5bce7-129f-37a7-9c4c-8651aa5d45a5,SESCO,II.1.1,La Pampa,AR-L,annual,2010,bioetanol combustion consumption by to the public,0.01405998,TJ,CH4,10.0,kg/TJ,0.1405998,kg +6d99fe2c-71b6-32c8-809d-a3ca1fc218a7,SESCO,II.1.1,La Pampa,AR-L,annual,2010,bioetanol combustion consumption by to the public,0.01405998,TJ,N2O,0.6,kg/TJ,0.008435988,kg +01ba8221-1474-3e45-aeae-a940d3bbd646,SESCO,II.1.1,Mendoza,AR-M,annual,2010,bioetanol combustion consumption by to the public,0.01107756,TJ,CH4,10.0,kg/TJ,0.1107756,kg +6d218887-9c3b-3259-83f3-e92d6930f4f2,SESCO,II.1.1,Mendoza,AR-M,annual,2010,bioetanol combustion consumption by to the public,0.01107756,TJ,N2O,0.6,kg/TJ,0.006646536,kg +cfdd628c-2631-3bdc-9ea6-e3f35bf2a933,SESCO,II.1.1,Santa Fe,AR-S,annual,2010,bioetanol combustion consumption by to the public,0.0553878,TJ,CH4,10.0,kg/TJ,0.553878,kg +7858e98c-f659-360b-8f8a-e7bd70050bb3,SESCO,II.1.1,Santa Fe,AR-S,annual,2010,bioetanol combustion consumption by to the public,0.0553878,TJ,N2O,0.6,kg/TJ,0.03323268,kg +d100cf16-a836-3b18-b1e3-c9aaea3192b5,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2010,bioetanol combustion consumption by to the public,0.06987384,TJ,CH4,10.0,kg/TJ,0.6987384000000001,kg +c6ce2169-76a0-39cd-a729-4d2c7abd1a57,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2010,bioetanol combustion consumption by to the public,0.06987384,TJ,N2O,0.6,kg/TJ,0.041924304,kg +8c085034-f527-3a63-9950-2289c7db76f5,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,bioetanol combustion consumption by to the public,6.2703250200000005,TJ,CH4,10.0,kg/TJ,62.70325020000001,kg +e0ab5d22-0795-3514-a6ea-546516662448,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,bioetanol combustion consumption by to the public,6.2703250200000005,TJ,N2O,0.6,kg/TJ,3.7621950120000003,kg +027fef4f-5b97-34bb-8a09-e31421513508,SESCO,II.1.1,Capital Federal,AR-C,annual,2010,bioetanol combustion consumption by to the public,2.02421106,TJ,CH4,10.0,kg/TJ,20.242110599999997,kg +99997eee-0641-36c3-a594-d2624760c2ad,SESCO,II.1.1,Capital Federal,AR-C,annual,2010,bioetanol combustion consumption by to the public,2.02421106,TJ,N2O,0.6,kg/TJ,1.2145266359999998,kg +b869dce3-3479-372d-9333-02cfe98cdcb2,SESCO,II.1.1,Chaco,AR-H,annual,2010,bioetanol combustion consumption by to the public,0.0702999,TJ,CH4,10.0,kg/TJ,0.7029989999999999,kg +bbfb02a9-611b-3027-b82e-dbd87ac17410,SESCO,II.1.1,Chaco,AR-H,annual,2010,bioetanol combustion consumption by to the public,0.0702999,TJ,N2O,0.6,kg/TJ,0.04217994,kg +6604dd72-736f-3e59-ac8e-1e21bb40bd7e,SESCO,II.1.1,Corrientes,AR-W,annual,2010,bioetanol combustion consumption by to the public,0.49678595999999997,TJ,CH4,10.0,kg/TJ,4.9678596,kg +e6bba2dd-a2f2-3550-ae50-51a5031ec05e,SESCO,II.1.1,Corrientes,AR-W,annual,2010,bioetanol combustion consumption by to the public,0.49678595999999997,TJ,N2O,0.6,kg/TJ,0.29807157599999995,kg +db0835f9-823a-34d8-9d20-35d27e027e20,SESCO,II.1.1,Córdoba,AR-X,annual,2010,bioetanol combustion consumption by to the public,1.8725337,TJ,CH4,10.0,kg/TJ,18.725337,kg +a40e3be6-3d6c-35dd-809e-3256e534c514,SESCO,II.1.1,Córdoba,AR-X,annual,2010,bioetanol combustion consumption by to the public,1.8725337,TJ,N2O,0.6,kg/TJ,1.1235202199999998,kg +0b4eb358-ad6b-384f-ab52-1fecd61c31ea,SESCO,II.1.1,Entre Rios,AR-E,annual,2010,bioetanol combustion consumption by to the public,0.23433299999999999,TJ,CH4,10.0,kg/TJ,2.34333,kg +729ebd04-284f-3218-bacc-9b9f611264c5,SESCO,II.1.1,Entre Rios,AR-E,annual,2010,bioetanol combustion consumption by to the public,0.23433299999999999,TJ,N2O,0.6,kg/TJ,0.1405998,kg +8d1b2949-bc2b-3475-b0ad-5ef86212dd17,SESCO,II.1.1,Formosa,AR-P,annual,2010,bioetanol combustion consumption by to the public,0.015338159999999998,TJ,CH4,10.0,kg/TJ,0.15338159999999998,kg +ca12d8b0-e987-364b-ba50-a09c98fcc47f,SESCO,II.1.1,Formosa,AR-P,annual,2010,bioetanol combustion consumption by to the public,0.015338159999999998,TJ,N2O,0.6,kg/TJ,0.009202895999999999,kg +9b7eb556-08a0-32d6-9e01-eca787bece9c,SESCO,II.1.1,Jujuy,AR-Y,annual,2010,bioetanol combustion consumption by to the public,0.16019856,TJ,CH4,10.0,kg/TJ,1.6019856,kg +4a75c13d-51ec-36b9-805a-8a68c6643c3a,SESCO,II.1.1,Jujuy,AR-Y,annual,2010,bioetanol combustion consumption by to the public,0.16019856,TJ,N2O,0.6,kg/TJ,0.096119136,kg +2ef629e3-b417-3019-8a5c-6931748891e7,SESCO,II.1.1,La Pampa,AR-L,annual,2010,bioetanol combustion consumption by to the public,0.28290384,TJ,CH4,10.0,kg/TJ,2.8290384,kg +471c0c95-83ca-3c56-8bd4-26a6fcb7bd00,SESCO,II.1.1,La Pampa,AR-L,annual,2010,bioetanol combustion consumption by to the public,0.28290384,TJ,N2O,0.6,kg/TJ,0.169742304,kg +39bdf1eb-d22d-3d96-8159-6061d8126678,SESCO,II.1.1,Mendoza,AR-M,annual,2010,bioetanol combustion consumption by to the public,0.27182628,TJ,CH4,10.0,kg/TJ,2.7182627999999998,kg +efdd9fac-1537-3220-80e6-557232310965,SESCO,II.1.1,Mendoza,AR-M,annual,2010,bioetanol combustion consumption by to the public,0.27182628,TJ,N2O,0.6,kg/TJ,0.16309576799999997,kg +d0c483db-b556-371a-a5d5-594a9324d032,SESCO,II.1.1,Misiones,AR-N,annual,2010,bioetanol combustion consumption by to the public,0.060074459999999996,TJ,CH4,10.0,kg/TJ,0.6007446,kg +0b189320-4906-3ddb-8bc6-ff1530ba3ac8,SESCO,II.1.1,Misiones,AR-N,annual,2010,bioetanol combustion consumption by to the public,0.060074459999999996,TJ,N2O,0.6,kg/TJ,0.036044676,kg +394d9628-e90d-348e-92fd-bc7fbb3db74b,SESCO,II.1.1,San Juan,AR-J,annual,2010,bioetanol combustion consumption by to the public,0.0021303,TJ,CH4,10.0,kg/TJ,0.021303,kg +f6f92680-53fc-3619-976c-35f3db28c257,SESCO,II.1.1,San Juan,AR-J,annual,2010,bioetanol combustion consumption by to the public,0.0021303,TJ,N2O,0.6,kg/TJ,0.0012781799999999999,kg +df27bcec-6d76-31ff-9dca-5a24a1b8ac5b,SESCO,II.1.1,Santa Fe,AR-S,annual,2010,bioetanol combustion consumption by to the public,1.28158848,TJ,CH4,10.0,kg/TJ,12.8158848,kg +ea389a5d-ce83-3fcd-ab89-b4232c00f21c,SESCO,II.1.1,Santa Fe,AR-S,annual,2010,bioetanol combustion consumption by to the public,1.28158848,TJ,N2O,0.6,kg/TJ,0.768953088,kg +d7188525-e0f5-369b-a493-d6175e6c51d6,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2010,bioetanol combustion consumption by to the public,0.5091417,TJ,CH4,10.0,kg/TJ,5.091417,kg +3fe9c2d1-8034-3e34-83a3-81672f24d407,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2010,bioetanol combustion consumption by to the public,0.5091417,TJ,N2O,0.6,kg/TJ,0.30548502,kg +6175ea5e-1d61-311c-8e47-36aa3ef02ddd,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,bioetanol combustion consumption by to the public,0.65314998,TJ,CH4,10.0,kg/TJ,6.531499800000001,kg +6e37ba29-9aff-3a04-a71a-936b2fe256a0,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,bioetanol combustion consumption by to the public,0.65314998,TJ,N2O,0.6,kg/TJ,0.391889988,kg +05f6017a-5a62-30b8-a631-19ac6cf17a9a,SESCO,II.1.1,Capital Federal,AR-C,annual,2010,bioetanol combustion consumption by to the public,0.21004757999999998,TJ,CH4,10.0,kg/TJ,2.1004758,kg +113825be-1d48-352b-9fed-dce0d42ae7b7,SESCO,II.1.1,Capital Federal,AR-C,annual,2010,bioetanol combustion consumption by to the public,0.21004757999999998,TJ,N2O,0.6,kg/TJ,0.126028548,kg +990693ce-ded4-33c6-abf1-504bbdd4046c,SESCO,II.1.1,Chaco,AR-H,annual,2010,bioetanol combustion consumption by to the public,0.01661634,TJ,CH4,10.0,kg/TJ,0.16616340000000002,kg +2b986d18-42d9-38d4-b6d9-3d15322f1dda,SESCO,II.1.1,Chaco,AR-H,annual,2010,bioetanol combustion consumption by to the public,0.01661634,TJ,N2O,0.6,kg/TJ,0.009969804,kg +82620fb6-460c-380b-907f-96fda7f94977,SESCO,II.1.1,Corrientes,AR-W,annual,2010,bioetanol combustion consumption by to the public,0.02811996,TJ,CH4,10.0,kg/TJ,0.2811996,kg +f1a52b77-4129-36fd-9561-ef89cd8ae0ba,SESCO,II.1.1,Corrientes,AR-W,annual,2010,bioetanol combustion consumption by to the public,0.02811996,TJ,N2O,0.6,kg/TJ,0.016871976,kg +6ce8fd5e-77f4-319e-b211-4db0abf7f6f6,SESCO,II.1.1,Córdoba,AR-X,annual,2010,bioetanol combustion consumption by to the public,0.21175181999999998,TJ,CH4,10.0,kg/TJ,2.1175181999999997,kg +019ea404-2ce7-3117-92f5-ded39f1e5f77,SESCO,II.1.1,Córdoba,AR-X,annual,2010,bioetanol combustion consumption by to the public,0.21175181999999998,TJ,N2O,0.6,kg/TJ,0.12705109199999998,kg +440ba18f-8886-3a71-9931-c7513b6dd337,SESCO,II.1.1,Entre Rios,AR-E,annual,2010,bioetanol combustion consumption by to the public,0.012355739999999999,TJ,CH4,10.0,kg/TJ,0.12355739999999998,kg +d2959387-a309-3e21-bd9e-b3c4179dba93,SESCO,II.1.1,Entre Rios,AR-E,annual,2010,bioetanol combustion consumption by to the public,0.012355739999999999,TJ,N2O,0.6,kg/TJ,0.007413443999999999,kg +f67fa5a5-b791-38cd-ae3f-bc842ee4f789,SESCO,II.1.1,Jujuy,AR-Y,annual,2010,bioetanol combustion consumption by to the public,0.0025563599999999997,TJ,CH4,10.0,kg/TJ,0.0255636,kg +92c477bd-2f60-3b02-b175-6419656b7967,SESCO,II.1.1,Jujuy,AR-Y,annual,2010,bioetanol combustion consumption by to the public,0.0025563599999999997,TJ,N2O,0.6,kg/TJ,0.0015338159999999997,kg +f79735c4-73e3-3870-abc3-2ebabf56e0bf,SESCO,II.1.1,La Pampa,AR-L,annual,2010,bioetanol combustion consumption by to the public,0.01959876,TJ,CH4,10.0,kg/TJ,0.19598759999999998,kg +203f0b4d-6620-35ac-bd08-89168e213b72,SESCO,II.1.1,La Pampa,AR-L,annual,2010,bioetanol combustion consumption by to the public,0.01959876,TJ,N2O,0.6,kg/TJ,0.011759256,kg +cbcfddf4-dca9-31ea-b1a4-8c67d7e4d9f5,SESCO,II.1.1,Mendoza,AR-M,annual,2010,bioetanol combustion consumption by to the public,0.03664116,TJ,CH4,10.0,kg/TJ,0.3664116,kg +f2b69dea-a42a-38f1-a1ce-520af43fcaeb,SESCO,II.1.1,Mendoza,AR-M,annual,2010,bioetanol combustion consumption by to the public,0.03664116,TJ,N2O,0.6,kg/TJ,0.021984695999999998,kg +7cb4f0f4-e316-3171-a5da-a70e1aa4a3f5,SESCO,II.1.1,Santa Fe,AR-S,annual,2010,bioetanol combustion consumption by to the public,0.15892038,TJ,CH4,10.0,kg/TJ,1.5892038,kg +d57f6efe-65af-3746-9c8b-b90002d55f36,SESCO,II.1.1,Santa Fe,AR-S,annual,2010,bioetanol combustion consumption by to the public,0.15892038,TJ,N2O,0.6,kg/TJ,0.095352228,kg +22fc16b9-31d4-33a4-93dd-6d11f291d9a2,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2010,bioetanol combustion consumption by to the public,0.04771872,TJ,CH4,10.0,kg/TJ,0.4771872,kg +69be165e-75d4-3f1e-b8b3-726449f6202f,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2010,bioetanol combustion consumption by to the public,0.04771872,TJ,N2O,0.6,kg/TJ,0.028631232,kg +16489120-66ff-31ce-9740-f7354bba59b6,SESCO,II.5.1,Buenos Aires,AR-B,annual,2010,bioetanol combustion consumption by agriculture machines,0.17766701999999998,TJ,CH4,10.0,kg/TJ,1.7766701999999999,kg +e53b3761-df4c-3399-9cc1-e8f001232e5d,SESCO,II.5.1,Buenos Aires,AR-B,annual,2010,bioetanol combustion consumption by agriculture machines,0.17766701999999998,TJ,N2O,0.6,kg/TJ,0.10660021199999999,kg +321ad8b3-45f4-3a03-8956-6267e3a59c0b,SESCO,II.5.1,Córdoba,AR-X,annual,2010,bioetanol combustion consumption by agriculture machines,0.10822350059999998,TJ,CH4,10.0,kg/TJ,1.0822350059999999,kg +c8c65a0e-4921-38c7-b755-123ad561eeb5,SESCO,II.5.1,Córdoba,AR-X,annual,2010,bioetanol combustion consumption by agriculture machines,0.10822350059999998,TJ,N2O,0.6,kg/TJ,0.06493410035999998,kg +c411fea5-6f04-300c-8344-03a5ca937d81,SESCO,II.5.1,Santa Fe,AR-S,annual,2010,bioetanol combustion consumption by agriculture machines,0.21142375379999997,TJ,CH4,10.0,kg/TJ,2.114237538,kg +3eec9c38-bd7e-30c0-8d9c-acf5f01afc73,SESCO,II.5.1,Santa Fe,AR-S,annual,2010,bioetanol combustion consumption by agriculture machines,0.21142375379999997,TJ,N2O,0.6,kg/TJ,0.12685425227999997,kg +c5ebee1a-d81d-38fa-b389-13857bfa9361,SESCO,II.5.1,Córdoba,AR-X,annual,2010,bioetanol combustion consumption by agriculture machines,0.05496174,TJ,CH4,10.0,kg/TJ,0.5496174,kg +85ed60e2-ee22-3e41-b677-2fb106ca36ae,SESCO,II.5.1,Córdoba,AR-X,annual,2010,bioetanol combustion consumption by agriculture machines,0.05496174,TJ,N2O,0.6,kg/TJ,0.032977044,kg +1ccf7733-a7ac-3446-b352-a5252d755a7f,SESCO,II.5.1,Santa Fe,AR-S,annual,2010,bioetanol combustion consumption by agriculture machines,0.013974767999999997,TJ,CH4,10.0,kg/TJ,0.13974767999999996,kg +ce12adbd-db35-30ff-833e-568def9a035f,SESCO,II.5.1,Santa Fe,AR-S,annual,2010,bioetanol combustion consumption by agriculture machines,0.013974767999999997,TJ,N2O,0.6,kg/TJ,0.008384860799999998,kg +d0d1214b-0fee-3717-9532-cd750beec210,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,bioetanol combustion consumption by to the public,7.150401799020001,TJ,CH4,10.0,kg/TJ,71.50401799020001,kg +d375b45b-b323-38e1-8914-b036a80d5eb2,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,bioetanol combustion consumption by to the public,7.150401799020001,TJ,N2O,0.6,kg/TJ,4.2902410794120005,kg +38ffee86-2655-3d97-8188-074f1e3952d0,SESCO,II.1.1,Capital Federal,AR-C,annual,2010,bioetanol combustion consumption by to the public,0.2250555435,TJ,CH4,10.0,kg/TJ,2.250555435,kg +5e74550b-fb66-3419-b344-d9fcf296f0cc,SESCO,II.1.1,Capital Federal,AR-C,annual,2010,bioetanol combustion consumption by to the public,0.2250555435,TJ,N2O,0.6,kg/TJ,0.1350333261,kg +c04edb1e-eab4-3a9e-baa3-7454e165e19f,SESCO,II.1.1,Chaco,AR-H,annual,2010,bioetanol combustion consumption by to the public,0.130225239,TJ,CH4,10.0,kg/TJ,1.30225239,kg +a02b59d7-d0e5-3c80-9706-9264f77712d1,SESCO,II.1.1,Chaco,AR-H,annual,2010,bioetanol combustion consumption by to the public,0.130225239,TJ,N2O,0.6,kg/TJ,0.0781351434,kg +554ae62c-96f1-30de-b782-a2c50586f83d,SESCO,II.1.1,Corrientes,AR-W,annual,2010,bioetanol combustion consumption by to the public,1.8593727065999996,TJ,CH4,10.0,kg/TJ,18.593727065999996,kg +fb76d3c8-232a-357b-a851-8d8b3c99ae2c,SESCO,II.1.1,Corrientes,AR-W,annual,2010,bioetanol combustion consumption by to the public,1.8593727065999996,TJ,N2O,0.6,kg/TJ,1.1156236239599997,kg +b2a9ccf8-0c33-3284-afc0-39522531b694,SESCO,II.1.1,Córdoba,AR-X,annual,2010,bioetanol combustion consumption by to the public,0.8152530282,TJ,CH4,10.0,kg/TJ,8.152530282,kg +b9c10e0d-161d-367a-8f5a-f0d3fa69f095,SESCO,II.1.1,Córdoba,AR-X,annual,2010,bioetanol combustion consumption by to the public,0.8152530282,TJ,N2O,0.6,kg/TJ,0.48915181692,kg +536a5576-5cae-3c92-a931-84a6cf4e3009,SESCO,II.1.1,Entre Rios,AR-E,annual,2010,bioetanol combustion consumption by to the public,0.3419216712,TJ,CH4,10.0,kg/TJ,3.419216712,kg +ce4dbf2d-d493-3f4c-a87d-f16716922750,SESCO,II.1.1,Entre Rios,AR-E,annual,2010,bioetanol combustion consumption by to the public,0.3419216712,TJ,N2O,0.6,kg/TJ,0.20515300272,kg +d05e54b2-6e37-3477-b259-5751405e4187,SESCO,II.1.1,La Pampa,AR-L,annual,2010,bioetanol combustion consumption by to the public,0.028895389199999996,TJ,CH4,10.0,kg/TJ,0.288953892,kg +0e359602-438c-380c-b969-6ad6b2b4de43,SESCO,II.1.1,La Pampa,AR-L,annual,2010,bioetanol combustion consumption by to the public,0.028895389199999996,TJ,N2O,0.6,kg/TJ,0.01733723352,kg +525678bb-437f-3656-a262-d34549989871,SESCO,II.1.1,Mendoza,AR-M,annual,2010,bioetanol combustion consumption by to the public,0.3141809046,TJ,CH4,10.0,kg/TJ,3.1418090459999997,kg +2d0d0fa9-ee5e-397d-a448-69c0100b20e5,SESCO,II.1.1,Mendoza,AR-M,annual,2010,bioetanol combustion consumption by to the public,0.3141809046,TJ,N2O,0.6,kg/TJ,0.18850854275999998,kg +f476d9dd-c779-3815-82de-246175713f99,SESCO,II.1.1,Misiones,AR-N,annual,2010,bioetanol combustion consumption by to the public,3.5202440591999995,TJ,CH4,10.0,kg/TJ,35.202440591999995,kg +e6a96181-6d22-3e79-aa2d-f0921db1f7f3,SESCO,II.1.1,Misiones,AR-N,annual,2010,bioetanol combustion consumption by to the public,3.5202440591999995,TJ,N2O,0.6,kg/TJ,2.1121464355199997,kg +cbfa01cc-4260-303a-b0fd-428502db664b,SESCO,II.1.1,Rio Negro,AR-R,annual,2010,bioetanol combustion consumption by to the public,0.0492014088,TJ,CH4,10.0,kg/TJ,0.492014088,kg +c4e6d280-4046-30a6-ad04-fb12d20351b1,SESCO,II.1.1,Rio Negro,AR-R,annual,2010,bioetanol combustion consumption by to the public,0.0492014088,TJ,N2O,0.6,kg/TJ,0.02952084528,kg +4159de8d-b2c3-3385-9ceb-050f60934e90,SESCO,II.1.1,Santa Fe,AR-S,annual,2010,bioetanol combustion consumption by to the public,2.5613108172,TJ,CH4,10.0,kg/TJ,25.613108171999997,kg +c5cd18e1-8ba8-3c49-8c63-4fe0c81766e2,SESCO,II.1.1,Santa Fe,AR-S,annual,2010,bioetanol combustion consumption by to the public,2.5613108172,TJ,N2O,0.6,kg/TJ,1.53678649032,kg +ddf9c9bb-4618-3e5c-a657-e6ba09264293,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,bioetanol combustion consumption by to the public,82.21249414188,TJ,CH4,10.0,kg/TJ,822.1249414188001,kg +77c513ac-f157-3b3c-8500-fa8ec24e20d7,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,bioetanol combustion consumption by to the public,82.21249414188,TJ,N2O,0.6,kg/TJ,49.327496485128,kg +423e1263-7035-388d-bb48-f10b0758993a,SESCO,II.1.1,Capital Federal,AR-C,annual,2010,bioetanol combustion consumption by to the public,28.617590836979996,TJ,CH4,10.0,kg/TJ,286.17590836979997,kg +d75dfa51-bfe7-38db-89c2-7b93a025e8ed,SESCO,II.1.1,Capital Federal,AR-C,annual,2010,bioetanol combustion consumption by to the public,28.617590836979996,TJ,N2O,0.6,kg/TJ,17.170554502187997,kg +11946764-c428-392a-86f2-26738f42ade3,SESCO,II.1.1,Catamarca,AR-K,annual,2010,bioetanol combustion consumption by to the public,3.1713818706,TJ,CH4,10.0,kg/TJ,31.713818705999998,kg +8415f5e0-91e6-3b3d-9717-34bcce37126c,SESCO,II.1.1,Catamarca,AR-K,annual,2010,bioetanol combustion consumption by to the public,3.1713818706,TJ,N2O,0.6,kg/TJ,1.9028291223599998,kg +1e551b31-bc27-3088-9d41-19b63e0ac2ec,SESCO,II.1.1,Chaco,AR-H,annual,2010,bioetanol combustion consumption by to the public,4.1020971587999995,TJ,CH4,10.0,kg/TJ,41.020971587999995,kg +9c87ec87-a9cd-3a9b-ac07-90789556bd23,SESCO,II.1.1,Chaco,AR-H,annual,2010,bioetanol combustion consumption by to the public,4.1020971587999995,TJ,N2O,0.6,kg/TJ,2.4612582952799995,kg +62e8292c-2e30-326c-bce6-4b7d25129757,SESCO,II.1.1,Chubut,AR-U,annual,2010,bioetanol combustion consumption by to the public,3.508241949,TJ,CH4,10.0,kg/TJ,35.08241949,kg +a9d2ea56-c9eb-3f6a-94d5-2bf732cae53c,SESCO,II.1.1,Chubut,AR-U,annual,2010,bioetanol combustion consumption by to the public,3.508241949,TJ,N2O,0.6,kg/TJ,2.1049451693999996,kg +fabf17bd-3e37-3b36-bb2e-038155648364,SESCO,II.1.1,Corrientes,AR-W,annual,2010,bioetanol combustion consumption by to the public,4.632614288999999,TJ,CH4,10.0,kg/TJ,46.32614288999999,kg +3f9a5a97-e718-3cc3-8760-7101ce93a971,SESCO,II.1.1,Corrientes,AR-W,annual,2010,bioetanol combustion consumption by to the public,4.632614288999999,TJ,N2O,0.6,kg/TJ,2.7795685733999993,kg +cba684ac-fc66-38b1-9636-f8702454e6c9,SESCO,II.1.1,Córdoba,AR-X,annual,2010,bioetanol combustion consumption by to the public,30.051296370899998,TJ,CH4,10.0,kg/TJ,300.51296370899996,kg +b8c618c4-1821-3a85-af6e-ac3139238ade,SESCO,II.1.1,Córdoba,AR-X,annual,2010,bioetanol combustion consumption by to the public,30.051296370899998,TJ,N2O,0.6,kg/TJ,18.03077782254,kg +4fd979f5-e9fd-3439-bd26-63459690a960,SESCO,II.1.1,Entre Rios,AR-E,annual,2010,bioetanol combustion consumption by to the public,8.781092339399999,TJ,CH4,10.0,kg/TJ,87.81092339399999,kg +cf4a713e-d2ff-340b-9eee-d7f782296dbe,SESCO,II.1.1,Entre Rios,AR-E,annual,2010,bioetanol combustion consumption by to the public,8.781092339399999,TJ,N2O,0.6,kg/TJ,5.2686554036399995,kg +01803116-f115-3b53-abef-1a3a2468b5a2,SESCO,II.1.1,Formosa,AR-P,annual,2010,bioetanol combustion consumption by to the public,3.6436736412,TJ,CH4,10.0,kg/TJ,36.436736412,kg +2537d672-5e35-307d-a2f8-3df2d935d95a,SESCO,II.1.1,Formosa,AR-P,annual,2010,bioetanol combustion consumption by to the public,3.6436736412,TJ,N2O,0.6,kg/TJ,2.1862041847199998,kg +259a655f-ca44-3461-acbe-c60ea3a973c7,SESCO,II.1.1,Jujuy,AR-Y,annual,2010,bioetanol combustion consumption by to the public,0.6694510356,TJ,CH4,10.0,kg/TJ,6.694510355999999,kg +f8f69a37-da25-3f8a-b367-b2311deac843,SESCO,II.1.1,Jujuy,AR-Y,annual,2010,bioetanol combustion consumption by to the public,0.6694510356,TJ,N2O,0.6,kg/TJ,0.40167062136,kg +9ad59e36-b12c-3d1e-b09e-be2ff3b59045,SESCO,II.1.1,La Pampa,AR-L,annual,2010,bioetanol combustion consumption by to the public,1.1109173652,TJ,CH4,10.0,kg/TJ,11.109173651999999,kg +9b34f613-e153-3a82-9d6e-bee7256a7a81,SESCO,II.1.1,La Pampa,AR-L,annual,2010,bioetanol combustion consumption by to the public,1.1109173652,TJ,N2O,0.6,kg/TJ,0.6665504191199999,kg +f10fe664-06c6-331c-91cd-1feba28e81a9,SESCO,II.1.1,La Rioja,AR-F,annual,2010,bioetanol combustion consumption by to the public,2.2552080102,TJ,CH4,10.0,kg/TJ,22.552080102,kg +3289c929-660f-3dda-ab29-4ced35d1e68a,SESCO,II.1.1,La Rioja,AR-F,annual,2010,bioetanol combustion consumption by to the public,2.2552080102,TJ,N2O,0.6,kg/TJ,1.35312480612,kg +78f565ed-ae1b-32f3-bd6a-75e8c00ffc10,SESCO,II.1.1,Mendoza,AR-M,annual,2010,bioetanol combustion consumption by to the public,3.2621369112,TJ,CH4,10.0,kg/TJ,32.621369112,kg +4348f40f-5652-3ecf-ab30-8a97ebe0eb63,SESCO,II.1.1,Mendoza,AR-M,annual,2010,bioetanol combustion consumption by to the public,3.2621369112,TJ,N2O,0.6,kg/TJ,1.95728214672,kg +7310c232-89c3-3029-b4ca-444727d69c3a,SESCO,II.1.1,Misiones,AR-N,annual,2010,bioetanol combustion consumption by to the public,7.451861830199999,TJ,CH4,10.0,kg/TJ,74.518618302,kg +5af6bc6b-b69c-3346-a73b-6a90dacc2d45,SESCO,II.1.1,Misiones,AR-N,annual,2010,bioetanol combustion consumption by to the public,7.451861830199999,TJ,N2O,0.6,kg/TJ,4.471117098119999,kg +dd11ddf3-afb6-348d-bea1-be3d4b66363e,SESCO,II.1.1,Neuquén,AR-Q,annual,2010,bioetanol combustion consumption by to the public,3.1987264013999996,TJ,CH4,10.0,kg/TJ,31.987264013999997,kg +54d964f7-665f-3bc1-8366-1f0b7dd12f7b,SESCO,II.1.1,Neuquén,AR-Q,annual,2010,bioetanol combustion consumption by to the public,3.1987264013999996,TJ,N2O,0.6,kg/TJ,1.9192358408399997,kg +c3d39956-dfd8-326c-a156-348a6f2dcb94,SESCO,II.1.1,Rio Negro,AR-R,annual,2010,bioetanol combustion consumption by to the public,4.8038733666,TJ,CH4,10.0,kg/TJ,48.038733666000006,kg +55215498-797e-3d47-992e-6d48728bb79b,SESCO,II.1.1,Rio Negro,AR-R,annual,2010,bioetanol combustion consumption by to the public,4.8038733666,TJ,N2O,0.6,kg/TJ,2.88232401996,kg +9ebd7f66-3fd7-38e0-99b6-d573b0226220,SESCO,II.1.1,Salta,AR-A,annual,2010,bioetanol combustion consumption by to the public,0.6254475588,TJ,CH4,10.0,kg/TJ,6.254475588,kg +a2628a3a-68c5-355e-9516-49e83af2055d,SESCO,II.1.1,Salta,AR-A,annual,2010,bioetanol combustion consumption by to the public,0.6254475588,TJ,N2O,0.6,kg/TJ,0.37526853528,kg +0822a43e-e044-38c4-bcc3-1189c5e41cc8,SESCO,II.1.1,San Juan,AR-J,annual,2010,bioetanol combustion consumption by to the public,2.6884939878,TJ,CH4,10.0,kg/TJ,26.884939877999997,kg +fe02d3a2-0c34-3c78-9d65-662f6221c034,SESCO,II.1.1,San Juan,AR-J,annual,2010,bioetanol combustion consumption by to the public,2.6884939878,TJ,N2O,0.6,kg/TJ,1.61309639268,kg +62e44831-0606-3bbb-9d40-212b8ed964f6,SESCO,II.1.1,San Luis,AR-D,annual,2010,bioetanol combustion consumption by to the public,5.557330652399999,TJ,CH4,10.0,kg/TJ,55.57330652399999,kg +1e2b5a13-52bf-3007-af68-d4189cb67e15,SESCO,II.1.1,San Luis,AR-D,annual,2010,bioetanol combustion consumption by to the public,5.557330652399999,TJ,N2O,0.6,kg/TJ,3.3343983914399993,kg +e08cfc45-66b1-31f5-b6fc-53ee119e56b6,SESCO,II.1.1,Santa Fe,AR-S,annual,2010,bioetanol combustion consumption by to the public,24.93555603156,TJ,CH4,10.0,kg/TJ,249.3555603156,kg +10f95be0-6d4d-38a6-89d1-cdacc7dccc8b,SESCO,II.1.1,Santa Fe,AR-S,annual,2010,bioetanol combustion consumption by to the public,24.93555603156,TJ,N2O,0.6,kg/TJ,14.961333618936,kg +7e2ca8ab-2b68-3427-815a-4c38ceae11f1,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2010,bioetanol combustion consumption by to the public,2.3012736174,TJ,CH4,10.0,kg/TJ,23.012736174,kg +c2c3b580-e50a-3533-9a3d-047805e466be,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2010,bioetanol combustion consumption by to the public,2.3012736174,TJ,N2O,0.6,kg/TJ,1.38076417044,kg +3595be19-a0f4-3f51-92b4-728e40f8c39c,SESCO,II.1.1,Tucuman,AR-T,annual,2010,bioetanol combustion consumption by to the public,0.7476628698,TJ,CH4,10.0,kg/TJ,7.476628698,kg +e31aa510-690e-3577-8d40-9b7b4b252628,SESCO,II.1.1,Tucuman,AR-T,annual,2010,bioetanol combustion consumption by to the public,0.7476628698,TJ,N2O,0.6,kg/TJ,0.44859772187999997,kg +935e6e87-83ab-3fad-a258-b0e908b302db,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,bioetanol combustion consumption by to the public,17.370019689119996,TJ,CH4,10.0,kg/TJ,173.70019689119997,kg +d6970c3d-b5fb-3bc0-8f89-b7bf2d8c3e29,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,bioetanol combustion consumption by to the public,17.370019689119996,TJ,N2O,0.6,kg/TJ,10.422011813471997,kg +f26e4acc-838f-3d42-8e52-fae0d72606f1,SESCO,II.1.1,Capital Federal,AR-C,annual,2010,bioetanol combustion consumption by to the public,9.5759434845,TJ,CH4,10.0,kg/TJ,95.759434845,kg +d66dcb1b-cffc-3dfe-bdce-a8af59dbcbd4,SESCO,II.1.1,Capital Federal,AR-C,annual,2010,bioetanol combustion consumption by to the public,9.5759434845,TJ,N2O,0.6,kg/TJ,5.7455660907,kg +60262fff-e0d9-3263-9793-5cd517a4ef22,SESCO,II.1.1,Catamarca,AR-K,annual,2010,bioetanol combustion consumption by to the public,0.4986947088,TJ,CH4,10.0,kg/TJ,4.986947088,kg +fb5fe785-5321-3f68-a32d-3718a68ce14f,SESCO,II.1.1,Catamarca,AR-K,annual,2010,bioetanol combustion consumption by to the public,0.4986947088,TJ,N2O,0.6,kg/TJ,0.29921682528,kg +92cdd386-3de1-3151-a133-6be2b3221c42,SESCO,II.1.1,Chaco,AR-H,annual,2010,bioetanol combustion consumption by to the public,0.5604989724,TJ,CH4,10.0,kg/TJ,5.604989724,kg +d3c98c41-ef52-3b64-bc4f-557caf0058ef,SESCO,II.1.1,Chaco,AR-H,annual,2010,bioetanol combustion consumption by to the public,0.5604989724,TJ,N2O,0.6,kg/TJ,0.33629938344,kg +ee8f37d5-7205-3716-89b5-b455d706df37,SESCO,II.1.1,Chubut,AR-U,annual,2010,bioetanol combustion consumption by to the public,0.3057278742,TJ,CH4,10.0,kg/TJ,3.0572787420000003,kg +76a43162-a562-379b-a6c4-e4f26b24e9b7,SESCO,II.1.1,Chubut,AR-U,annual,2010,bioetanol combustion consumption by to the public,0.3057278742,TJ,N2O,0.6,kg/TJ,0.18343672452,kg +93f71732-26a8-34f8-9f6b-af0a73583421,SESCO,II.1.1,Corrientes,AR-W,annual,2010,bioetanol combustion consumption by to the public,0.4106877552,TJ,CH4,10.0,kg/TJ,4.106877552,kg +aaa4ad72-61d7-35e3-96d2-691c9505bad2,SESCO,II.1.1,Corrientes,AR-W,annual,2010,bioetanol combustion consumption by to the public,0.4106877552,TJ,N2O,0.6,kg/TJ,0.24641265312,kg +ddca4af9-ec65-3702-9c45-d9d736dc917f,SESCO,II.1.1,Córdoba,AR-X,annual,2010,bioetanol combustion consumption by to the public,6.05977341102,TJ,CH4,10.0,kg/TJ,60.5977341102,kg +57ba830b-6b78-36dd-91eb-001018af330a,SESCO,II.1.1,Córdoba,AR-X,annual,2010,bioetanol combustion consumption by to the public,6.05977341102,TJ,N2O,0.6,kg/TJ,3.635864046612,kg +cefad75b-f767-3d3d-a112-417a73eeec6a,SESCO,II.1.1,Entre Rios,AR-E,annual,2010,bioetanol combustion consumption by to the public,1.5810873569999997,TJ,CH4,10.0,kg/TJ,15.810873569999996,kg +0155f4d1-de93-3e02-893a-f25402fbba2e,SESCO,II.1.1,Entre Rios,AR-E,annual,2010,bioetanol combustion consumption by to the public,1.5810873569999997,TJ,N2O,0.6,kg/TJ,0.9486524141999998,kg +e0e984e4-f436-3d15-a18a-eb5a059dea98,SESCO,II.1.1,Formosa,AR-P,annual,2010,bioetanol combustion consumption by to the public,0.5865610626,TJ,CH4,10.0,kg/TJ,5.865610626,kg +9623c3e7-8891-30a2-b7bd-e4da93a397ae,SESCO,II.1.1,Formosa,AR-P,annual,2010,bioetanol combustion consumption by to the public,0.5865610626,TJ,N2O,0.6,kg/TJ,0.35193663756,kg +07bf9f2e-f266-3c0d-a387-6ad45a952afd,SESCO,II.1.1,Jujuy,AR-Y,annual,2010,bioetanol combustion consumption by to the public,0.016952927399999998,TJ,CH4,10.0,kg/TJ,0.16952927399999998,kg +d4d12bb5-8620-358d-8d47-518fd12fe5e4,SESCO,II.1.1,Jujuy,AR-Y,annual,2010,bioetanol combustion consumption by to the public,0.016952927399999998,TJ,N2O,0.6,kg/TJ,0.010171756439999999,kg +3f1d69dc-eaea-3f64-b229-135961a26b4b,SESCO,II.1.1,La Pampa,AR-L,annual,2010,bioetanol combustion consumption by to the public,0.2250065466,TJ,CH4,10.0,kg/TJ,2.250065466,kg +76674bcb-9bb6-3bea-aa46-270664dda843,SESCO,II.1.1,La Pampa,AR-L,annual,2010,bioetanol combustion consumption by to the public,0.2250065466,TJ,N2O,0.6,kg/TJ,0.13500392796,kg +8d3d692a-7553-34e0-a8b1-9d5b2b65e1a2,SESCO,II.1.1,La Rioja,AR-F,annual,2010,bioetanol combustion consumption by to the public,0.4189703616,TJ,CH4,10.0,kg/TJ,4.189703616,kg +005870b8-e32f-3d67-a38e-ac527631b68e,SESCO,II.1.1,La Rioja,AR-F,annual,2010,bioetanol combustion consumption by to the public,0.4189703616,TJ,N2O,0.6,kg/TJ,0.25138221696,kg +a9004f48-5954-3e93-aceb-c39aa09f0ade,SESCO,II.1.1,Mendoza,AR-M,annual,2010,bioetanol combustion consumption by to the public,0.6780617082,TJ,CH4,10.0,kg/TJ,6.780617082,kg +63b963ce-ba2f-3fec-9d3b-9aebf27d6bf4,SESCO,II.1.1,Mendoza,AR-M,annual,2010,bioetanol combustion consumption by to the public,0.6780617082,TJ,N2O,0.6,kg/TJ,0.40683702492,kg +157e3a81-dab4-32b3-95f8-9caa39e5ad49,SESCO,II.1.1,Misiones,AR-N,annual,2010,bioetanol combustion consumption by to the public,0.499576653,TJ,CH4,10.0,kg/TJ,4.99576653,kg +07455244-d023-3edf-b47b-2a0a4f9e55df,SESCO,II.1.1,Misiones,AR-N,annual,2010,bioetanol combustion consumption by to the public,0.499576653,TJ,N2O,0.6,kg/TJ,0.2997459918,kg +a5e527f3-6793-30f7-bb9c-ddc4366469a6,SESCO,II.1.1,Neuquén,AR-Q,annual,2010,bioetanol combustion consumption by to the public,0.5451821154,TJ,CH4,10.0,kg/TJ,5.451821153999999,kg +75112e41-b1ea-3bb2-8668-b00584371903,SESCO,II.1.1,Neuquén,AR-Q,annual,2010,bioetanol combustion consumption by to the public,0.5451821154,TJ,N2O,0.6,kg/TJ,0.32710926923999994,kg +8a18a69d-070f-36d9-a884-71b06202b936,SESCO,II.1.1,Rio Negro,AR-R,annual,2010,bioetanol combustion consumption by to the public,0.8503774146,TJ,CH4,10.0,kg/TJ,8.503774146000001,kg +4209e62a-22b5-3d7f-b3c1-8edab6d4e137,SESCO,II.1.1,Rio Negro,AR-R,annual,2010,bioetanol combustion consumption by to the public,0.8503774146,TJ,N2O,0.6,kg/TJ,0.51022644876,kg +c7f4ddee-c0e4-3e02-beaa-683c32c695ea,SESCO,II.1.1,Salta,AR-A,annual,2010,bioetanol combustion consumption by to the public,0.07789228919999999,TJ,CH4,10.0,kg/TJ,0.778922892,kg +820c24d8-8146-3a9b-9a45-b7dca45cc6cf,SESCO,II.1.1,Salta,AR-A,annual,2010,bioetanol combustion consumption by to the public,0.07789228919999999,TJ,N2O,0.6,kg/TJ,0.04673537351999999,kg +789e1616-7427-36e1-9d47-fd03fb10a187,SESCO,II.1.1,San Juan,AR-J,annual,2010,bioetanol combustion consumption by to the public,0.47503985760000006,TJ,CH4,10.0,kg/TJ,4.750398576,kg +27c624d2-9938-3c9e-87b3-9d654d961bea,SESCO,II.1.1,San Juan,AR-J,annual,2010,bioetanol combustion consumption by to the public,0.47503985760000006,TJ,N2O,0.6,kg/TJ,0.28502391456000004,kg +9c9ee2c9-ab9a-3919-a7ff-e32a9dee6d0c,SESCO,II.1.1,San Luis,AR-D,annual,2010,bioetanol combustion consumption by to the public,0.7590770171999999,TJ,CH4,10.0,kg/TJ,7.590770171999999,kg +4e48810d-f0a2-3752-883f-fe8659e156b2,SESCO,II.1.1,San Luis,AR-D,annual,2010,bioetanol combustion consumption by to the public,0.7590770171999999,TJ,N2O,0.6,kg/TJ,0.4554462103199999,kg +d2f4ec64-681b-3b91-b654-1cd2106810a6,SESCO,II.1.1,Santa Fe,AR-S,annual,2010,bioetanol combustion consumption by to the public,5.49875720178,TJ,CH4,10.0,kg/TJ,54.987572017800005,kg +ad427c81-73bc-3114-8a63-43cd8e30c38c,SESCO,II.1.1,Santa Fe,AR-S,annual,2010,bioetanol combustion consumption by to the public,5.49875720178,TJ,N2O,0.6,kg/TJ,3.299254321068,kg +2c8dbde2-103e-3b6a-8c17-14ffab0ebda9,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2010,bioetanol combustion consumption by to the public,0.817694352,TJ,CH4,10.0,kg/TJ,8.17694352,kg +610bc497-a40a-3235-acc0-9908e8ac6e2e,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2010,bioetanol combustion consumption by to the public,0.817694352,TJ,N2O,0.6,kg/TJ,0.49061661119999994,kg +9d8fc066-0e4f-3e2b-8816-d42edb57f940,SESCO,II.1.1,Tucuman,AR-T,annual,2010,bioetanol combustion consumption by to the public,0.19435152960000002,TJ,CH4,10.0,kg/TJ,1.9435152960000002,kg +fa4666a8-194b-3e70-955a-69a0fd2bcb34,SESCO,II.1.1,Tucuman,AR-T,annual,2010,bioetanol combustion consumption by to the public,0.19435152960000002,TJ,N2O,0.6,kg/TJ,0.11661091776,kg +f8c87e0f-92a9-3437-b281-5f6ba524d02f,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,bioetanol combustion consumption by freight transport,1.2781799999999998e-05,TJ,CH4,10.0,kg/TJ,0.00012781799999999997,kg +86d0c6b7-af58-3361-9442-cf0272fe848c,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,bioetanol combustion consumption by freight transport,1.2781799999999998e-05,TJ,N2O,0.6,kg/TJ,7.66908e-06,kg +44eeabff-3e39-375e-8e09-2aabe9586c4d,SESCO,II.1.1,Capital Federal,AR-C,annual,2010,bioetanol combustion consumption by freight transport,0.0002002482,TJ,CH4,10.0,kg/TJ,0.002002482,kg +fc8e07d1-f901-3d47-994a-23535de9f1c5,SESCO,II.1.1,Capital Federal,AR-C,annual,2010,bioetanol combustion consumption by freight transport,0.0002002482,TJ,N2O,0.6,kg/TJ,0.00012014892,kg +d83aa82a-5ee1-3d5c-a25a-aad2a04d59d6,SESCO,II.1.1,Misiones,AR-N,annual,2010,bioetanol combustion consumption by freight transport,2.98242e-05,TJ,CH4,10.0,kg/TJ,0.000298242,kg +8895eb74-b43d-34c4-a1b0-d1b0006a645a,SESCO,II.1.1,Misiones,AR-N,annual,2010,bioetanol combustion consumption by freight transport,2.98242e-05,TJ,N2O,0.6,kg/TJ,1.789452e-05,kg +cede2b8f-0d97-3593-9c42-598583b50362,SESCO,II.1.1,Santa Fe,AR-S,annual,2010,bioetanol combustion consumption by freight transport,0.0009756774,TJ,CH4,10.0,kg/TJ,0.009756774,kg +ec7fc68a-fd06-3d6d-ae35-c4f06dd19548,SESCO,II.1.1,Santa Fe,AR-S,annual,2010,bioetanol combustion consumption by freight transport,0.0009756774,TJ,N2O,0.6,kg/TJ,0.00058540644,kg +529f70c6-5f58-3665-9bc9-4897b9a1929c,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,bioetanol combustion consumption by freight transport,0.05581386,TJ,CH4,10.0,kg/TJ,0.5581386,kg +3b75dbd8-e4b2-33bd-b304-a3d3fbee1f3f,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,bioetanol combustion consumption by freight transport,0.05581386,TJ,N2O,0.6,kg/TJ,0.033488316,kg +fa39c1f3-77c1-3b54-8869-85be9ba1601d,SESCO,II.1.1,Capital Federal,AR-C,annual,2010,bioetanol combustion consumption by freight transport,0.19752567659999998,TJ,CH4,10.0,kg/TJ,1.9752567659999998,kg +66053cc2-60b1-33d0-b553-f8c7ea8de421,SESCO,II.1.1,Capital Federal,AR-C,annual,2010,bioetanol combustion consumption by freight transport,0.19752567659999998,TJ,N2O,0.6,kg/TJ,0.11851540595999999,kg +eb2afe4f-66ec-355e-9af7-34907372bb2c,SESCO,II.1.1,Corrientes,AR-W,annual,2010,bioetanol combustion consumption by freight transport,0.00011077560000000001,TJ,CH4,10.0,kg/TJ,0.001107756,kg +c4a66dfb-3def-31a1-b50c-90f45bd43a61,SESCO,II.1.1,Corrientes,AR-W,annual,2010,bioetanol combustion consumption by freight transport,0.00011077560000000001,TJ,N2O,0.6,kg/TJ,6.646536e-05,kg +831191af-c28d-3fdb-9250-02508821f17b,SESCO,II.1.1,Córdoba,AR-X,annual,2010,bioetanol combustion consumption by freight transport,0.005854064399999999,TJ,CH4,10.0,kg/TJ,0.05854064399999999,kg +456d6be0-f84d-30ec-857d-806b2ab6cc71,SESCO,II.1.1,Córdoba,AR-X,annual,2010,bioetanol combustion consumption by freight transport,0.005854064399999999,TJ,N2O,0.6,kg/TJ,0.0035124386399999993,kg +53fb65a7-0870-3f86-ba63-2ac9e8b815c5,SESCO,II.1.1,Entre Rios,AR-E,annual,2010,bioetanol combustion consumption by freight transport,0.45475940160000006,TJ,CH4,10.0,kg/TJ,4.547594016000001,kg +dd57a16a-ab44-3ece-9246-afa95227048d,SESCO,II.1.1,Entre Rios,AR-E,annual,2010,bioetanol combustion consumption by freight transport,0.45475940160000006,TJ,N2O,0.6,kg/TJ,0.27285564096000003,kg +66354e68-1671-38e9-bee5-9a82e512520b,SESCO,II.1.1,Misiones,AR-N,annual,2010,bioetanol combustion consumption by freight transport,0.00028119960000000003,TJ,CH4,10.0,kg/TJ,0.002811996,kg +eeb6c888-e6d3-3346-a297-40088daa757e,SESCO,II.1.1,Misiones,AR-N,annual,2010,bioetanol combustion consumption by freight transport,0.00028119960000000003,TJ,N2O,0.6,kg/TJ,0.00016871976,kg +d6dd8afc-0a56-3737-ab20-5e4e731a81f7,SESCO,II.1.1,Salta,AR-A,annual,2010,bioetanol combustion consumption by freight transport,0.0128499696,TJ,CH4,10.0,kg/TJ,0.128499696,kg +fb3e8ed4-3ad0-37e4-b25a-3f7297776ae4,SESCO,II.1.1,Salta,AR-A,annual,2010,bioetanol combustion consumption by freight transport,0.0128499696,TJ,N2O,0.6,kg/TJ,0.00770998176,kg +78db2853-5c45-39b9-a1d6-8646bbc28aaa,SESCO,II.1.1,San Luis,AR-D,annual,2010,bioetanol combustion consumption by freight transport,0.0008734229999999998,TJ,CH4,10.0,kg/TJ,0.008734229999999997,kg +43942304-d219-36b7-9e77-0bbef100869a,SESCO,II.1.1,San Luis,AR-D,annual,2010,bioetanol combustion consumption by freight transport,0.0008734229999999998,TJ,N2O,0.6,kg/TJ,0.0005240537999999999,kg +fbf41e94-1a4b-37e8-a636-da34f0d655af,SESCO,II.1.1,Santa Fe,AR-S,annual,2010,bioetanol combustion consumption by freight transport,0.0096758226,TJ,CH4,10.0,kg/TJ,0.096758226,kg +66588eef-7158-31be-adf7-ade92cba0f1b,SESCO,II.1.1,Santa Fe,AR-S,annual,2010,bioetanol combustion consumption by freight transport,0.0096758226,TJ,N2O,0.6,kg/TJ,0.00580549356,kg +021afa1f-c6b0-3ad4-a365-5ab430ed43d3,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2010,bioetanol combustion consumption by freight transport,0.0003749328,TJ,CH4,10.0,kg/TJ,0.003749328,kg +1db5bea8-296f-3c6e-b99c-062c0836244c,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2010,bioetanol combustion consumption by freight transport,0.0003749328,TJ,N2O,0.6,kg/TJ,0.00022495968,kg +76eaa0e9-d798-352e-80be-eccfcd5b4215,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2010,bioetanol combustion consumption by freight transport,0.0002300724,TJ,CH4,10.0,kg/TJ,0.002300724,kg +c864015c-0f11-3cfd-ac44-f05f7d78219e,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2010,bioetanol combustion consumption by freight transport,0.0002300724,TJ,N2O,0.6,kg/TJ,0.00013804344,kg +ca6c5b14-ee13-32a4-9c68-b7015d373ddf,SESCO,II.1.1,Tucuman,AR-T,annual,2010,bioetanol combustion consumption by freight transport,0.0019215306,TJ,CH4,10.0,kg/TJ,0.019215306,kg +53487821-0ef1-3f8c-9176-57fe3933357d,SESCO,II.1.1,Tucuman,AR-T,annual,2010,bioetanol combustion consumption by freight transport,0.0019215306,TJ,N2O,0.6,kg/TJ,0.00115291836,kg +2aed4166-e1ce-3ed3-b9ca-8d26270a0b1b,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,bioetanol combustion consumption by freight transport,0.039994252200000004,TJ,CH4,10.0,kg/TJ,0.399942522,kg +91bfe3cc-815e-3cf1-b61f-e8d3ab180d47,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,bioetanol combustion consumption by freight transport,0.039994252200000004,TJ,N2O,0.6,kg/TJ,0.02399655132,kg +590e373f-19a2-3aea-989b-df98b59e1cac,SESCO,II.1.1,Capital Federal,AR-C,annual,2010,bioetanol combustion consumption by freight transport,0.2029622022,TJ,CH4,10.0,kg/TJ,2.029622022,kg +7a4b8e92-fd9f-3a1a-99a3-cb5770bf0a98,SESCO,II.1.1,Capital Federal,AR-C,annual,2010,bioetanol combustion consumption by freight transport,0.2029622022,TJ,N2O,0.6,kg/TJ,0.12177732131999999,kg +df037427-12aa-346c-9e5e-56985d37e11d,SESCO,II.1.1,Chaco,AR-H,annual,2010,bioetanol combustion consumption by freight transport,0.0001448604,TJ,CH4,10.0,kg/TJ,0.001448604,kg +3ef18fbb-a4eb-3cd2-9f7f-5d086aa354bc,SESCO,II.1.1,Chaco,AR-H,annual,2010,bioetanol combustion consumption by freight transport,0.0001448604,TJ,N2O,0.6,kg/TJ,8.691624e-05,kg +cad865b3-422c-36c7-baf2-901d7252d5ff,SESCO,II.1.1,Corrientes,AR-W,annual,2010,bioetanol combustion consumption by freight transport,0.0006518718,TJ,CH4,10.0,kg/TJ,0.006518718,kg +9c58e3dd-0ac4-3e3e-a493-5a2443247d62,SESCO,II.1.1,Corrientes,AR-W,annual,2010,bioetanol combustion consumption by freight transport,0.0006518718,TJ,N2O,0.6,kg/TJ,0.00039112308,kg +296bee66-ad83-363b-af5a-ba58b147e423,SESCO,II.1.1,Córdoba,AR-X,annual,2010,bioetanol combustion consumption by freight transport,0.0037834127999999993,TJ,CH4,10.0,kg/TJ,0.037834127999999995,kg +1751994c-7390-36c2-a412-8ee13940a264,SESCO,II.1.1,Córdoba,AR-X,annual,2010,bioetanol combustion consumption by freight transport,0.0037834127999999993,TJ,N2O,0.6,kg/TJ,0.0022700476799999993,kg +7fa834ec-3dbc-373c-80a1-c322c74b0c7f,SESCO,II.1.1,Entre Rios,AR-E,annual,2010,bioetanol combustion consumption by freight transport,0.014123889,TJ,CH4,10.0,kg/TJ,0.14123889,kg +83a55689-cc86-3b43-bebc-8a905d801fb4,SESCO,II.1.1,Entre Rios,AR-E,annual,2010,bioetanol combustion consumption by freight transport,0.014123889,TJ,N2O,0.6,kg/TJ,0.0084743334,kg +c3fcb024-8989-3f57-9eb4-2a6e26e5bb8d,SESCO,II.1.1,Misiones,AR-N,annual,2010,bioetanol combustion consumption by freight transport,0.00030250259999999995,TJ,CH4,10.0,kg/TJ,0.0030250259999999992,kg +36d0edac-d62b-323e-8b29-f4cc63dc56e1,SESCO,II.1.1,Misiones,AR-N,annual,2010,bioetanol combustion consumption by freight transport,0.00030250259999999995,TJ,N2O,0.6,kg/TJ,0.00018150155999999997,kg +f061660e-53be-318c-9491-92b83f0818f7,SESCO,II.1.1,San Luis,AR-D,annual,2010,bioetanol combustion consumption by freight transport,0.00038345400000000003,TJ,CH4,10.0,kg/TJ,0.0038345400000000004,kg +93061ea5-a1e7-3f3b-9d6c-7a71b9045956,SESCO,II.1.1,San Luis,AR-D,annual,2010,bioetanol combustion consumption by freight transport,0.00038345400000000003,TJ,N2O,0.6,kg/TJ,0.0002300724,kg +80e40b19-eed9-3e15-9b4a-a4e4c9643d3b,SESCO,II.1.1,Santa Fe,AR-S,annual,2010,bioetanol combustion consumption by freight transport,0.0035661221999999998,TJ,CH4,10.0,kg/TJ,0.035661222,kg +102b070b-0564-3b56-b226-e5228ff28a81,SESCO,II.1.1,Santa Fe,AR-S,annual,2010,bioetanol combustion consumption by freight transport,0.0035661221999999998,TJ,N2O,0.6,kg/TJ,0.00213967332,kg +5eb8cb8b-f311-330a-ba4c-0a1d5712a84c,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2010,bioetanol combustion consumption by freight transport,0.0023561118,TJ,CH4,10.0,kg/TJ,0.023561118,kg +a670fd46-30c8-37a5-a5d3-458aaa64b315,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2010,bioetanol combustion consumption by freight transport,0.0023561118,TJ,N2O,0.6,kg/TJ,0.0014136670799999999,kg +640ac9eb-d8b7-39c3-a850-3c13d634141f,SESCO,II.1.1,Tucuman,AR-T,annual,2010,bioetanol combustion consumption by freight transport,0.0009245502,TJ,CH4,10.0,kg/TJ,0.009245502,kg +35c36ff8-21d4-3e13-97cd-25afb34b1334,SESCO,II.1.1,Tucuman,AR-T,annual,2010,bioetanol combustion consumption by freight transport,0.0009245502,TJ,N2O,0.6,kg/TJ,0.00055473012,kg +aa259389-97b1-3b65-88b2-a0a848e60891,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,bioetanol combustion consumption by public passenger transport,0.0025947054,TJ,CH4,10.0,kg/TJ,0.025947053999999997,kg +4577afb5-c2a5-3888-b974-a84ecfddb788,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,bioetanol combustion consumption by public passenger transport,0.0025947054,TJ,N2O,0.6,kg/TJ,0.0015568232399999998,kg +18bc5219-7242-39c7-bb9d-8cff3bcb5871,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,bioetanol combustion consumption by public passenger transport,1.8087482574,TJ,CH4,10.0,kg/TJ,18.087482574,kg +b1203524-a221-32a3-a65c-4b26782808dc,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,bioetanol combustion consumption by public passenger transport,1.8087482574,TJ,N2O,0.6,kg/TJ,1.08524895444,kg +3934be37-e178-351b-b96f-9f8f90774b46,SESCO,II.1.1,Capital Federal,AR-C,annual,2010,bioetanol combustion consumption by public passenger transport,0.0003152844,TJ,CH4,10.0,kg/TJ,0.003152844,kg +012b8ca8-3808-336a-8875-df6a3f254374,SESCO,II.1.1,Capital Federal,AR-C,annual,2010,bioetanol combustion consumption by public passenger transport,0.0003152844,TJ,N2O,0.6,kg/TJ,0.00018917064,kg +130f205c-423c-360c-b9ff-3023adc3d618,SESCO,II.1.1,Córdoba,AR-X,annual,2010,bioetanol combustion consumption by public passenger transport,0.00038345400000000003,TJ,CH4,10.0,kg/TJ,0.0038345400000000004,kg +11c5b64f-ed71-3359-b8e9-4a5c3dc1072a,SESCO,II.1.1,Córdoba,AR-X,annual,2010,bioetanol combustion consumption by public passenger transport,0.00038345400000000003,TJ,N2O,0.6,kg/TJ,0.0002300724,kg +08217243-80ab-324d-b6d0-704a8c1f2809,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,bioetanol combustion consumption by public passenger transport,0.40577528339999996,TJ,CH4,10.0,kg/TJ,4.0577528339999995,kg +d82ba86c-6c8e-3fca-9e14-4b04dbe16e81,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,bioetanol combustion consumption by public passenger transport,0.40577528339999996,TJ,N2O,0.6,kg/TJ,0.24346517003999996,kg +c008329c-2de5-36f4-8758-d5a53b28c3d2,SESCO,II.1.1,Capital Federal,AR-C,annual,2010,bioetanol combustion consumption by public passenger transport,0.0053555742,TJ,CH4,10.0,kg/TJ,0.053555742,kg +d53c874c-52d6-3259-bcba-05eb3f119d1d,SESCO,II.1.1,Capital Federal,AR-C,annual,2010,bioetanol combustion consumption by public passenger transport,0.0053555742,TJ,N2O,0.6,kg/TJ,0.00321334452,kg +2caefbe3-dbf0-3ea2-b722-13644f1f3cc9,SESCO,II.1.1,Córdoba,AR-X,annual,2010,bioetanol combustion consumption by public passenger transport,0.0008819441999999999,TJ,CH4,10.0,kg/TJ,0.008819441999999999,kg +83fe3541-f89d-34ea-9815-a448db50ed08,SESCO,II.1.1,Córdoba,AR-X,annual,2010,bioetanol combustion consumption by public passenger transport,0.0008819441999999999,TJ,N2O,0.6,kg/TJ,0.00052916652,kg +54364559-09c3-38d8-b855-e59036f9c02d,SESCO,II.5.1,Buenos Aires,AR-B,annual,2010,bioetanol combustion consumption by agriculture machines,0.08776154304000001,TJ,CH4,10.0,kg/TJ,0.8776154304000001,kg +77dd3300-0523-3b01-b902-388f4edbd69a,SESCO,II.5.1,Buenos Aires,AR-B,annual,2010,bioetanol combustion consumption by agriculture machines,0.08776154304000001,TJ,N2O,0.6,kg/TJ,0.05265692582400001,kg +ca130592-eb83-3b14-8a96-5a43d72f940d,SESCO,II.5.1,Córdoba,AR-X,annual,2010,bioetanol combustion consumption by agriculture machines,0.01641225726,TJ,CH4,10.0,kg/TJ,0.16412257260000002,kg +c8b565e9-3c0e-386d-85b9-6489352ac2b8,SESCO,II.5.1,Córdoba,AR-X,annual,2010,bioetanol combustion consumption by agriculture machines,0.01641225726,TJ,N2O,0.6,kg/TJ,0.009847354356,kg +73fdf12a-4db1-345f-9979-474c649c2966,SESCO,II.5.1,La Pampa,AR-L,annual,2010,bioetanol combustion consumption by agriculture machines,0.0055579527,TJ,CH4,10.0,kg/TJ,0.055579527000000004,kg +b3ad4454-f4cb-3876-a8eb-1dea339a7c60,SESCO,II.5.1,La Pampa,AR-L,annual,2010,bioetanol combustion consumption by agriculture machines,0.0055579527,TJ,N2O,0.6,kg/TJ,0.00333477162,kg +f831c372-251c-3c33-90e3-f2f84134d84e,SESCO,II.5.1,San Luis,AR-D,annual,2010,bioetanol combustion consumption by agriculture machines,0.1593379188,TJ,CH4,10.0,kg/TJ,1.5933791880000001,kg +86ee9c15-2a71-38ca-9743-ed9b21410142,SESCO,II.5.1,San Luis,AR-D,annual,2010,bioetanol combustion consumption by agriculture machines,0.1593379188,TJ,N2O,0.6,kg/TJ,0.09560275128,kg +561f21b9-c528-34ae-8280-12f73d7c2155,SESCO,II.5.1,Santa Fe,AR-S,annual,2010,bioetanol combustion consumption by agriculture machines,0.0268375194,TJ,CH4,10.0,kg/TJ,0.268375194,kg +1e99c15a-df13-3b53-b4f2-5753c1a25e26,SESCO,II.5.1,Santa Fe,AR-S,annual,2010,bioetanol combustion consumption by agriculture machines,0.0268375194,TJ,N2O,0.6,kg/TJ,0.016102511639999997,kg +d8f8f4ba-2565-302a-9b8f-5ef2f06f96f2,SESCO,II.5.1,Santiago del Estero,AR-G,annual,2010,bioetanol combustion consumption by agriculture machines,0.08717187599999998,TJ,CH4,10.0,kg/TJ,0.8717187599999998,kg +8dfb82c4-d3b4-39eb-9ffd-d6c5db905acf,SESCO,II.5.1,Santiago del Estero,AR-G,annual,2010,bioetanol combustion consumption by agriculture machines,0.08717187599999998,TJ,N2O,0.6,kg/TJ,0.052303125599999986,kg +fbb72282-565a-32e4-b8db-ae41fcc4672e,SESCO,II.5.1,Santa Fe,AR-S,annual,2010,bioetanol combustion consumption by agriculture machines,0.010484910540000001,TJ,CH4,10.0,kg/TJ,0.10484910540000002,kg +40f0524b-7689-390c-b392-28847d404642,SESCO,II.5.1,Santa Fe,AR-S,annual,2010,bioetanol combustion consumption by agriculture machines,0.010484910540000001,TJ,N2O,0.6,kg/TJ,0.006290946324000001,kg +9d287839-9e14-320f-a355-3132a8ba2dec,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,bioetanol combustion consumption by to the public,8.175578849819999,TJ,CH4,10.0,kg/TJ,81.75578849819999,kg +85b8212d-f636-36be-b223-b8b35e6c3296,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,bioetanol combustion consumption by to the public,8.175578849819999,TJ,N2O,0.6,kg/TJ,4.905347309891999,kg +bec0a462-f0b6-3153-9d22-9aab0c97d540,SESCO,II.1.1,Capital Federal,AR-C,annual,2010,bioetanol combustion consumption by to the public,0.00627543774,TJ,CH4,10.0,kg/TJ,0.06275437739999999,kg +67fe44f8-3248-3d9b-8e63-5762cf0b70df,SESCO,II.1.1,Capital Federal,AR-C,annual,2010,bioetanol combustion consumption by to the public,0.00627543774,TJ,N2O,0.6,kg/TJ,0.0037652626439999997,kg +cab98a12-a10b-37dc-b579-cf1193e18ede,SESCO,II.1.1,Chaco,AR-H,annual,2010,bioetanol combustion consumption by to the public,0.15411271896,TJ,CH4,10.0,kg/TJ,1.5411271896,kg +628c8bb3-d17e-3fd0-a354-046c854a21f1,SESCO,II.1.1,Chaco,AR-H,annual,2010,bioetanol combustion consumption by to the public,0.15411271896,TJ,N2O,0.6,kg/TJ,0.092467631376,kg +c7cd1e84-a64d-3f84-88e1-91e69eb35fdc,SESCO,II.1.1,Chubut,AR-U,annual,2010,bioetanol combustion consumption by to the public,1.44982721826,TJ,CH4,10.0,kg/TJ,14.498272182600001,kg +ee8e8278-236d-3ea1-8037-0e7b3498adae,SESCO,II.1.1,Chubut,AR-U,annual,2010,bioetanol combustion consumption by to the public,1.44982721826,TJ,N2O,0.6,kg/TJ,0.869896330956,kg +13d04ebe-b839-3651-b115-c63ff9f11b37,SESCO,II.1.1,Corrientes,AR-W,annual,2010,bioetanol combustion consumption by to the public,0.17225989253999996,TJ,CH4,10.0,kg/TJ,1.7225989253999996,kg +3185785a-a76d-3db9-95b6-e0efea7d16ef,SESCO,II.1.1,Corrientes,AR-W,annual,2010,bioetanol combustion consumption by to the public,0.17225989253999996,TJ,N2O,0.6,kg/TJ,0.10335593552399998,kg +ea18dde1-35e3-38a5-8565-ae4253ca7503,SESCO,II.1.1,Entre Rios,AR-E,annual,2010,bioetanol combustion consumption by to the public,0.66324589776,TJ,CH4,10.0,kg/TJ,6.6324589776,kg +c43f1e7b-313e-381d-ba35-0ebefa049b1f,SESCO,II.1.1,Entre Rios,AR-E,annual,2010,bioetanol combustion consumption by to the public,0.66324589776,TJ,N2O,0.6,kg/TJ,0.39794753865599997,kg +cf2383c9-c252-3d50-9cc7-a4e1e244e011,SESCO,II.1.1,La Pampa,AR-L,annual,2010,bioetanol combustion consumption by to the public,0.25413115608,TJ,CH4,10.0,kg/TJ,2.5413115607999996,kg +7b7b5c3a-2e0c-343e-8662-a6a68d0ba941,SESCO,II.1.1,La Pampa,AR-L,annual,2010,bioetanol combustion consumption by to the public,0.25413115608,TJ,N2O,0.6,kg/TJ,0.15247869364799999,kg +81b6f217-86c4-3cfe-80ff-d207c1909e2c,SESCO,II.1.1,Misiones,AR-N,annual,2010,bioetanol combustion consumption by to the public,0.52041567366,TJ,CH4,10.0,kg/TJ,5.2041567366,kg +2e70dfe6-199d-30f7-9630-933263a4df76,SESCO,II.1.1,Misiones,AR-N,annual,2010,bioetanol combustion consumption by to the public,0.52041567366,TJ,N2O,0.6,kg/TJ,0.31224940419599995,kg +e73a852c-b7bf-3a7a-a1a1-60dc7245905c,SESCO,II.1.1,Neuquén,AR-Q,annual,2010,bioetanol combustion consumption by to the public,0.7462504808999999,TJ,CH4,10.0,kg/TJ,7.462504808999999,kg +99d62e4f-ca67-3d23-8b30-590fd687fdda,SESCO,II.1.1,Neuquén,AR-Q,annual,2010,bioetanol combustion consumption by to the public,0.7462504808999999,TJ,N2O,0.6,kg/TJ,0.44775028853999993,kg +cb344b59-33f9-341c-94af-55745b9908a0,SESCO,II.1.1,Rio Negro,AR-R,annual,2010,bioetanol combustion consumption by to the public,2.5634036239199998,TJ,CH4,10.0,kg/TJ,25.634036239199997,kg +7a9c65af-7f6b-3813-b06a-a4cc96712576,SESCO,II.1.1,Rio Negro,AR-R,annual,2010,bioetanol combustion consumption by to the public,2.5634036239199998,TJ,N2O,0.6,kg/TJ,1.5380421743519999,kg +9849df44-2a6d-3466-bce1-5c388162a115,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2010,bioetanol combustion consumption by to the public,0.47973290849999994,TJ,CH4,10.0,kg/TJ,4.797329084999999,kg +00d2c387-f117-3494-a719-9d596e1b57be,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2010,bioetanol combustion consumption by to the public,0.47973290849999994,TJ,N2O,0.6,kg/TJ,0.28783974509999993,kg +4608ee3d-9bb5-3f00-8edd-fbd3384a049b,SESCO,II.1.1,Santa Fe,AR-S,annual,2010,bioetanol combustion consumption by to the public,0.47915261478000004,TJ,CH4,10.0,kg/TJ,4.791526147800001,kg +bcdc9d7d-8969-364e-aebe-b5b14b43b31b,SESCO,II.1.1,Santa Fe,AR-S,annual,2010,bioetanol combustion consumption by to the public,0.47915261478000004,TJ,N2O,0.6,kg/TJ,0.28749156886800004,kg +a1fa24ec-3775-3586-a380-63ac7145958f,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,bioetanol combustion consumption by to the public,83.07398660976,TJ,CH4,10.0,kg/TJ,830.7398660976,kg +3604c9b5-3d47-3d16-a6c7-26c325f666de,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,bioetanol combustion consumption by to the public,83.07398660976,TJ,N2O,0.6,kg/TJ,49.844391965856,kg +b8a5d62c-2978-37b5-96ba-79cc99635859,SESCO,II.1.1,Capital Federal,AR-C,annual,2010,bioetanol combustion consumption by to the public,13.48459917786,TJ,CH4,10.0,kg/TJ,134.8459917786,kg +6078f9cd-9326-3889-9978-1f4e45106174,SESCO,II.1.1,Capital Federal,AR-C,annual,2010,bioetanol combustion consumption by to the public,13.48459917786,TJ,N2O,0.6,kg/TJ,8.090759506716,kg +a041a224-82e2-3988-bf05-e94fe5affb68,SESCO,II.1.1,Catamarca,AR-K,annual,2010,bioetanol combustion consumption by to the public,2.1351907427400003,TJ,CH4,10.0,kg/TJ,21.351907427400004,kg +639af85c-6862-382b-aeb8-4e59215d39f7,SESCO,II.1.1,Catamarca,AR-K,annual,2010,bioetanol combustion consumption by to the public,2.1351907427400003,TJ,N2O,0.6,kg/TJ,1.2811144456440002,kg +b3f55b2b-77a2-3497-8b77-949c741dfe60,SESCO,II.1.1,Chaco,AR-H,annual,2010,bioetanol combustion consumption by to the public,4.882985039519999,TJ,CH4,10.0,kg/TJ,48.8298503952,kg +395f6bb3-650c-338f-aa24-97e3de6b4133,SESCO,II.1.1,Chaco,AR-H,annual,2010,bioetanol combustion consumption by to the public,4.882985039519999,TJ,N2O,0.6,kg/TJ,2.9297910237119997,kg +3efb43b8-d208-3035-beb6-6c75521aad2a,SESCO,II.1.1,Chubut,AR-U,annual,2010,bioetanol combustion consumption by to the public,18.45886885056,TJ,CH4,10.0,kg/TJ,184.58868850559998,kg +efe48564-d7f9-3df3-91f4-c4182b2b6fba,SESCO,II.1.1,Chubut,AR-U,annual,2010,bioetanol combustion consumption by to the public,18.45886885056,TJ,N2O,0.6,kg/TJ,11.075321310336,kg +8ad0ed19-5ef2-314c-926a-ecf208b36201,SESCO,II.1.1,Corrientes,AR-W,annual,2010,bioetanol combustion consumption by to the public,5.5639281915,TJ,CH4,10.0,kg/TJ,55.639281915,kg +fa04bcc0-fc05-3581-9e79-7388dcc3a053,SESCO,II.1.1,Corrientes,AR-W,annual,2010,bioetanol combustion consumption by to the public,5.5639281915,TJ,N2O,0.6,kg/TJ,3.3383569149,kg +153b6e50-5564-34d8-b28c-3dda09c55b4e,SESCO,II.1.1,Córdoba,AR-X,annual,2010,bioetanol combustion consumption by to the public,20.823999914700003,TJ,CH4,10.0,kg/TJ,208.23999914700005,kg +15684ce7-44d4-353e-ac85-d8bf94a7f933,SESCO,II.1.1,Córdoba,AR-X,annual,2010,bioetanol combustion consumption by to the public,20.823999914700003,TJ,N2O,0.6,kg/TJ,12.494399948820002,kg +5149bf6a-ce1c-3580-bca9-0dbafe69ee9a,SESCO,II.1.1,Entre Rios,AR-E,annual,2010,bioetanol combustion consumption by to the public,7.1389096826400005,TJ,CH4,10.0,kg/TJ,71.3890968264,kg +1fb95071-0b94-3b4b-821d-d5a53357b765,SESCO,II.1.1,Entre Rios,AR-E,annual,2010,bioetanol combustion consumption by to the public,7.1389096826400005,TJ,N2O,0.6,kg/TJ,4.2833458095840005,kg +6fd9ce0d-13dd-3b0a-be4f-b86b637cd04c,SESCO,II.1.1,Formosa,AR-P,annual,2010,bioetanol combustion consumption by to the public,0.8483323266,TJ,CH4,10.0,kg/TJ,8.483323266,kg +4674614f-f294-3b43-ae16-2a43a3122d5f,SESCO,II.1.1,Formosa,AR-P,annual,2010,bioetanol combustion consumption by to the public,0.8483323266,TJ,N2O,0.6,kg/TJ,0.50899939596,kg +b7d56493-911a-35eb-bbaa-0c253deabb8d,SESCO,II.1.1,Jujuy,AR-Y,annual,2010,bioetanol combustion consumption by to the public,0.25084239894,TJ,CH4,10.0,kg/TJ,2.5084239893999998,kg +cf1b7029-d027-3697-b840-9c5053361ed3,SESCO,II.1.1,Jujuy,AR-Y,annual,2010,bioetanol combustion consumption by to the public,0.25084239894,TJ,N2O,0.6,kg/TJ,0.150505439364,kg +68df46b7-25d0-3382-a862-ff0aa386da66,SESCO,II.1.1,La Pampa,AR-L,annual,2010,bioetanol combustion consumption by to the public,2.50174464678,TJ,CH4,10.0,kg/TJ,25.017446467800003,kg +9a39d9bb-0e38-3eef-9445-cf4fbf170f04,SESCO,II.1.1,La Pampa,AR-L,annual,2010,bioetanol combustion consumption by to the public,2.50174464678,TJ,N2O,0.6,kg/TJ,1.501046788068,kg +af0182fa-69b2-3b43-b239-e468ab09c14f,SESCO,II.1.1,La Rioja,AR-F,annual,2010,bioetanol combustion consumption by to the public,1.34474846652,TJ,CH4,10.0,kg/TJ,13.447484665200001,kg +ff82a9b3-d34a-3741-854f-c13bb2bceb0f,SESCO,II.1.1,La Rioja,AR-F,annual,2010,bioetanol combustion consumption by to the public,1.34474846652,TJ,N2O,0.6,kg/TJ,0.806849079912,kg +45b528b1-8aff-394f-b23a-54de14aa7dd0,SESCO,II.1.1,Mendoza,AR-M,annual,2010,bioetanol combustion consumption by to the public,4.6800995281199995,TJ,CH4,10.0,kg/TJ,46.800995281199995,kg +ae4cb6a9-55e3-39c0-bf2b-0acba80ab560,SESCO,II.1.1,Mendoza,AR-M,annual,2010,bioetanol combustion consumption by to the public,4.6800995281199995,TJ,N2O,0.6,kg/TJ,2.8080597168719996,kg +7a6396d8-e53c-32b8-8253-64045354a948,SESCO,II.1.1,Misiones,AR-N,annual,2010,bioetanol combustion consumption by to the public,1.85259025746,TJ,CH4,10.0,kg/TJ,18.5259025746,kg +61e6740f-33ca-3eca-a968-e5bc03ec080e,SESCO,II.1.1,Misiones,AR-N,annual,2010,bioetanol combustion consumption by to the public,1.85259025746,TJ,N2O,0.6,kg/TJ,1.111554154476,kg +c668dd69-758a-3631-8340-7ca1d6a6abca,SESCO,II.1.1,Neuquén,AR-Q,annual,2010,bioetanol combustion consumption by to the public,7.05274756884,TJ,CH4,10.0,kg/TJ,70.5274756884,kg +0d01807e-5424-3d61-bbae-f3c5049c8d36,SESCO,II.1.1,Neuquén,AR-Q,annual,2010,bioetanol combustion consumption by to the public,7.05274756884,TJ,N2O,0.6,kg/TJ,4.231648541304,kg +99ce909e-bf43-3557-b093-dc6c67072ccd,SESCO,II.1.1,Rio Negro,AR-R,annual,2010,bioetanol combustion consumption by to the public,13.13314015356,TJ,CH4,10.0,kg/TJ,131.33140153559998,kg +8088efe6-06bd-3c07-848e-d9a288ebee39,SESCO,II.1.1,Rio Negro,AR-R,annual,2010,bioetanol combustion consumption by to the public,13.13314015356,TJ,N2O,0.6,kg/TJ,7.879884092135999,kg +8bd53d5b-3ba8-37a2-8012-871d4fc12506,SESCO,II.1.1,Salta,AR-A,annual,2010,bioetanol combustion consumption by to the public,0.47569130334,TJ,CH4,10.0,kg/TJ,4.7569130334,kg +c460f267-efaf-315f-be21-9d41b1df940b,SESCO,II.1.1,Salta,AR-A,annual,2010,bioetanol combustion consumption by to the public,0.47569130334,TJ,N2O,0.6,kg/TJ,0.285414782004,kg +b50f8e7d-8bcf-3bda-aa9d-10d328e4e95e,SESCO,II.1.1,San Juan,AR-J,annual,2010,bioetanol combustion consumption by to the public,3.15178055424,TJ,CH4,10.0,kg/TJ,31.5178055424,kg +c1ac13a3-2a6f-35d4-89a6-77b969b6650d,SESCO,II.1.1,San Juan,AR-J,annual,2010,bioetanol combustion consumption by to the public,3.15178055424,TJ,N2O,0.6,kg/TJ,1.891068332544,kg +45ced82a-8629-322a-8c0b-bf2479d1d8f6,SESCO,II.1.1,San Luis,AR-D,annual,2010,bioetanol combustion consumption by to the public,1.4305288305600001,TJ,CH4,10.0,kg/TJ,14.305288305600001,kg +44faa402-3c4d-3ab2-9500-f5d31b66122d,SESCO,II.1.1,San Luis,AR-D,annual,2010,bioetanol combustion consumption by to the public,1.4305288305600001,TJ,N2O,0.6,kg/TJ,0.858317298336,kg +845a1aee-990c-3c05-8547-4a50448f9029,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2010,bioetanol combustion consumption by to the public,12.85349993316,TJ,CH4,10.0,kg/TJ,128.5349993316,kg +ec3b8b04-af1c-329f-99ab-4afdab1a22a1,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2010,bioetanol combustion consumption by to the public,12.85349993316,TJ,N2O,0.6,kg/TJ,7.712099959895999,kg +e5288c11-fdc6-33f4-ab75-b6dfc2c6453e,SESCO,II.1.1,Santa Fe,AR-S,annual,2010,bioetanol combustion consumption by to the public,22.37362529706,TJ,CH4,10.0,kg/TJ,223.7362529706,kg +62705ef8-4514-3919-946c-ab81a6d0411f,SESCO,II.1.1,Santa Fe,AR-S,annual,2010,bioetanol combustion consumption by to the public,22.37362529706,TJ,N2O,0.6,kg/TJ,13.424175178235998,kg +7f8fbfb2-62d5-38ff-87cd-e2e5e04e09ed,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2010,bioetanol combustion consumption by to the public,1.89945302292,TJ,CH4,10.0,kg/TJ,18.9945302292,kg +d71e955d-e0f3-3afe-b871-d9dfb6c5ead6,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2010,bioetanol combustion consumption by to the public,1.89945302292,TJ,N2O,0.6,kg/TJ,1.1396718137519999,kg +3bcdf4b4-a339-3bb1-ae19-28d337d418ee,SESCO,II.1.1,Tucuman,AR-T,annual,2010,bioetanol combustion consumption by to the public,2.7626135156999996,TJ,CH4,10.0,kg/TJ,27.626135156999997,kg +0de84e32-b252-36be-a07b-d2ec18a429df,SESCO,II.1.1,Tucuman,AR-T,annual,2010,bioetanol combustion consumption by to the public,2.7626135156999996,TJ,N2O,0.6,kg/TJ,1.6575681094199997,kg +29ad103b-bc7e-3add-9de4-f72ee5ed16da,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,bioetanol combustion consumption by to the public,17.16587048376,TJ,CH4,10.0,kg/TJ,171.6587048376,kg +14d7e6d9-a961-3c77-b3ba-ab20576b9f47,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,bioetanol combustion consumption by to the public,17.16587048376,TJ,N2O,0.6,kg/TJ,10.299522290255998,kg +26814dae-5ec4-32b2-8b18-490d3b535df3,SESCO,II.1.1,Capital Federal,AR-C,annual,2010,bioetanol combustion consumption by to the public,3.4965380807999997,TJ,CH4,10.0,kg/TJ,34.965380808,kg +2c95458d-66e0-353d-8774-e54fac336be0,SESCO,II.1.1,Capital Federal,AR-C,annual,2010,bioetanol combustion consumption by to the public,3.4965380807999997,TJ,N2O,0.6,kg/TJ,2.0979228484799997,kg +87ba2d29-723a-3ef6-9cb1-4d98f9f3e472,SESCO,II.1.1,Catamarca,AR-K,annual,2010,bioetanol combustion consumption by to the public,0.22434785783999997,TJ,CH4,10.0,kg/TJ,2.2434785783999995,kg +eeb3a076-b2a4-3312-b17d-7567032b9833,SESCO,II.1.1,Catamarca,AR-K,annual,2010,bioetanol combustion consumption by to the public,0.22434785783999997,TJ,N2O,0.6,kg/TJ,0.134608714704,kg +c9c8994c-0d27-3d92-b9d4-96464999ce84,SESCO,II.1.1,Chaco,AR-H,annual,2010,bioetanol combustion consumption by to the public,0.32008652225999995,TJ,CH4,10.0,kg/TJ,3.2008652225999996,kg +ec2e55e3-c37d-3d85-a5b8-d9f8e48c1430,SESCO,II.1.1,Chaco,AR-H,annual,2010,bioetanol combustion consumption by to the public,0.32008652225999995,TJ,N2O,0.6,kg/TJ,0.19205191335599997,kg +01db29c5-751b-3c99-8ac2-16bbf481dab3,SESCO,II.1.1,Chubut,AR-U,annual,2010,bioetanol combustion consumption by to the public,2.4973251264,TJ,CH4,10.0,kg/TJ,24.973251263999998,kg +058403d0-8794-3124-a2a5-a2541bf9e8bc,SESCO,II.1.1,Chubut,AR-U,annual,2010,bioetanol combustion consumption by to the public,2.4973251264,TJ,N2O,0.6,kg/TJ,1.4983950758399998,kg +f743d60c-906a-34d4-a294-6f8d7483f1cf,SESCO,II.1.1,Corrientes,AR-W,annual,2010,bioetanol combustion consumption by to the public,0.55919054214,TJ,CH4,10.0,kg/TJ,5.5919054214,kg +4ae4bd83-a6ef-3c47-9570-5e4e856ba760,SESCO,II.1.1,Corrientes,AR-W,annual,2010,bioetanol combustion consumption by to the public,0.55919054214,TJ,N2O,0.6,kg/TJ,0.335514325284,kg +0ebf5479-6b3b-3fba-b3a3-b8dec8b65f98,SESCO,II.1.1,Córdoba,AR-X,annual,2010,bioetanol combustion consumption by to the public,3.5789393629800004,TJ,CH4,10.0,kg/TJ,35.7893936298,kg +7d01a2bb-2f1d-3ebd-a23e-93d5e9b33a84,SESCO,II.1.1,Córdoba,AR-X,annual,2010,bioetanol combustion consumption by to the public,3.5789393629800004,TJ,N2O,0.6,kg/TJ,2.1473636177880002,kg +4ae97c36-20af-34cf-a22e-146e02318315,SESCO,II.1.1,Entre Rios,AR-E,annual,2010,bioetanol combustion consumption by to the public,1.01989561104,TJ,CH4,10.0,kg/TJ,10.1989561104,kg +47b8f573-6093-3551-be50-58d1b9ae7e77,SESCO,II.1.1,Entre Rios,AR-E,annual,2010,bioetanol combustion consumption by to the public,1.01989561104,TJ,N2O,0.6,kg/TJ,0.6119373666239999,kg +6669d45c-3d26-376c-8ce8-82679ab30819,SESCO,II.1.1,Jujuy,AR-Y,annual,2010,bioetanol combustion consumption by to the public,0.022852154160000002,TJ,CH4,10.0,kg/TJ,0.22852154160000002,kg +17b9ee27-a988-3f2e-8be3-0a7b23eb1e44,SESCO,II.1.1,Jujuy,AR-Y,annual,2010,bioetanol combustion consumption by to the public,0.022852154160000002,TJ,N2O,0.6,kg/TJ,0.013711292496000001,kg +477d922a-7ca0-3a33-a888-ec54ca9ed773,SESCO,II.1.1,La Pampa,AR-L,annual,2010,bioetanol combustion consumption by to the public,0.51363918936,TJ,CH4,10.0,kg/TJ,5.1363918936,kg +9f6a6745-be9e-35c6-923f-2d71f7bdc3b9,SESCO,II.1.1,La Pampa,AR-L,annual,2010,bioetanol combustion consumption by to the public,0.51363918936,TJ,N2O,0.6,kg/TJ,0.308183513616,kg +6328e0ed-bfbe-32f7-ae46-80e85044a0ce,SESCO,II.1.1,La Rioja,AR-F,annual,2010,bioetanol combustion consumption by to the public,0.07117715754,TJ,CH4,10.0,kg/TJ,0.7117715753999999,kg +f162e3f7-0a47-3fd5-93c3-b9c701a827e1,SESCO,II.1.1,La Rioja,AR-F,annual,2010,bioetanol combustion consumption by to the public,0.07117715754,TJ,N2O,0.6,kg/TJ,0.042706294523999995,kg +a4622890-1efc-35e0-930c-84622a56d97b,SESCO,II.1.1,Mendoza,AR-M,annual,2010,bioetanol combustion consumption by to the public,0.6389877455999999,TJ,CH4,10.0,kg/TJ,6.389877455999999,kg +d695f941-2045-3c1b-b6e1-3bc59f256b0e,SESCO,II.1.1,Mendoza,AR-M,annual,2010,bioetanol combustion consumption by to the public,0.6389877455999999,TJ,N2O,0.6,kg/TJ,0.38339264735999995,kg +72d7b5c3-c3ae-3e8c-bc45-1f6c83a9acce,SESCO,II.1.1,Misiones,AR-N,annual,2010,bioetanol combustion consumption by to the public,0.17869425066,TJ,CH4,10.0,kg/TJ,1.7869425066,kg +48e1ffa9-479f-31eb-ac4f-87895b62a52a,SESCO,II.1.1,Misiones,AR-N,annual,2010,bioetanol combustion consumption by to the public,0.17869425066,TJ,N2O,0.6,kg/TJ,0.10721655039599999,kg +969c2d14-da14-36ad-ae37-361900946925,SESCO,II.1.1,Neuquén,AR-Q,annual,2010,bioetanol combustion consumption by to the public,1.33919221806,TJ,CH4,10.0,kg/TJ,13.3919221806,kg +5e8a16c1-10a4-3641-b12c-815b0e5ae17c,SESCO,II.1.1,Neuquén,AR-Q,annual,2010,bioetanol combustion consumption by to the public,1.33919221806,TJ,N2O,0.6,kg/TJ,0.803515330836,kg +33cce0c4-1f85-3e68-8095-f88bae359494,SESCO,II.1.1,Rio Negro,AR-R,annual,2010,bioetanol combustion consumption by to the public,1.4951553156000001,TJ,CH4,10.0,kg/TJ,14.951553156000001,kg +514987d3-9a3b-3d30-82bf-e6dcc92a8578,SESCO,II.1.1,Rio Negro,AR-R,annual,2010,bioetanol combustion consumption by to the public,1.4951553156000001,TJ,N2O,0.6,kg/TJ,0.89709318936,kg +a88128c6-6980-36b9-8426-99136277e3c1,SESCO,II.1.1,Salta,AR-A,annual,2010,bioetanol combustion consumption by to the public,0.033405660360000006,TJ,CH4,10.0,kg/TJ,0.33405660360000006,kg +1afe4cec-496a-367b-9973-ca87fed81860,SESCO,II.1.1,Salta,AR-A,annual,2010,bioetanol combustion consumption by to the public,0.033405660360000006,TJ,N2O,0.6,kg/TJ,0.020043396216000004,kg +5a45583a-f4a9-3a33-8594-11d352c52c50,SESCO,II.1.1,San Juan,AR-J,annual,2010,bioetanol combustion consumption by to the public,0.6007386351599999,TJ,CH4,10.0,kg/TJ,6.007386351599999,kg +0eafd6dd-1e68-3a51-8fe8-bcc59c01040a,SESCO,II.1.1,San Juan,AR-J,annual,2010,bioetanol combustion consumption by to the public,0.6007386351599999,TJ,N2O,0.6,kg/TJ,0.36044318109599993,kg +05382b04-f6c3-3c87-acde-58402393a4d5,SESCO,II.1.1,San Luis,AR-D,annual,2010,bioetanol combustion consumption by to the public,0.21625058753999998,TJ,CH4,10.0,kg/TJ,2.1625058754,kg +40ce8573-cffc-36d7-a5cc-55ac3d46cb58,SESCO,II.1.1,San Luis,AR-D,annual,2010,bioetanol combustion consumption by to the public,0.21625058753999998,TJ,N2O,0.6,kg/TJ,0.129750352524,kg +a5a631ed-48d7-3a8f-8558-37e0009aef27,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2010,bioetanol combustion consumption by to the public,1.79991092088,TJ,CH4,10.0,kg/TJ,17.9991092088,kg +be74a840-6212-3dfc-8ee8-f3dda0421985,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2010,bioetanol combustion consumption by to the public,1.79991092088,TJ,N2O,0.6,kg/TJ,1.0799465525279999,kg +79e5cbec-dae9-3b66-b330-10f78584ed22,SESCO,II.1.1,Santa Fe,AR-S,annual,2010,bioetanol combustion consumption by to the public,4.6176851465999995,TJ,CH4,10.0,kg/TJ,46.176851465999995,kg +0dd3da6f-5f63-32df-892d-a254055d491f,SESCO,II.1.1,Santa Fe,AR-S,annual,2010,bioetanol combustion consumption by to the public,4.6176851465999995,TJ,N2O,0.6,kg/TJ,2.7706110879599994,kg +0ee6fcd1-369b-3ace-94ff-2f09fec09dbb,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2010,bioetanol combustion consumption by to the public,0.19119527711999998,TJ,CH4,10.0,kg/TJ,1.9119527711999997,kg +1b9e2ad2-2391-3589-b968-9c42215130db,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2010,bioetanol combustion consumption by to the public,0.19119527711999998,TJ,N2O,0.6,kg/TJ,0.11471716627199999,kg +ba4a79c0-35d7-35bd-9444-820b0da90d7a,SESCO,II.1.1,Tucuman,AR-T,annual,2010,bioetanol combustion consumption by to the public,0.21409046333999998,TJ,CH4,10.0,kg/TJ,2.1409046334,kg +d822960b-f9a3-3cde-9e30-7382ed45c8d5,SESCO,II.1.1,Tucuman,AR-T,annual,2010,bioetanol combustion consumption by to the public,0.21409046333999998,TJ,N2O,0.6,kg/TJ,0.12845427800399997,kg +23918943-58f6-339f-87e2-80ba909b3dd1,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,bioetanol combustion consumption by to the public,2.2756248054,TJ,CH4,10.0,kg/TJ,22.756248054,kg +f140c64e-9683-337c-b3e1-6ed36eff67ba,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,bioetanol combustion consumption by to the public,2.2756248054,TJ,N2O,0.6,kg/TJ,1.3653748832400001,kg +781a49ae-50ad-3c44-898c-d56533030211,SESCO,II.1.1,Capital Federal,AR-C,annual,2010,bioetanol combustion consumption by to the public,0.020450879999999998,TJ,CH4,10.0,kg/TJ,0.2045088,kg +35a5fa77-4a8c-37fb-89f6-0993b0e0e9d9,SESCO,II.1.1,Capital Federal,AR-C,annual,2010,bioetanol combustion consumption by to the public,0.020450879999999998,TJ,N2O,0.6,kg/TJ,0.012270527999999998,kg +389d30c9-4074-3d82-aff0-883604c015c9,SESCO,II.1.1,Corrientes,AR-W,annual,2010,bioetanol combustion consumption by to the public,0.0170424,TJ,CH4,10.0,kg/TJ,0.170424,kg +98cb6aa3-a66f-3e73-a415-6353e011d000,SESCO,II.1.1,Corrientes,AR-W,annual,2010,bioetanol combustion consumption by to the public,0.0170424,TJ,N2O,0.6,kg/TJ,0.010225439999999999,kg +38920fec-7a8f-35af-93f1-8423755edf57,SESCO,II.1.1,Córdoba,AR-X,annual,2010,bioetanol combustion consumption by to the public,0.8005667399999999,TJ,CH4,10.0,kg/TJ,8.0056674,kg +076a8eb8-6e3f-39a1-85f3-fa090ab4b575,SESCO,II.1.1,Córdoba,AR-X,annual,2010,bioetanol combustion consumption by to the public,0.8005667399999999,TJ,N2O,0.6,kg/TJ,0.48034004399999997,kg +6315a4b9-2033-348e-9845-ab1bcc08559e,SESCO,II.1.1,Entre Rios,AR-E,annual,2010,bioetanol combustion consumption by to the public,0.19185481799999998,TJ,CH4,10.0,kg/TJ,1.9185481799999997,kg +4433a141-1cc2-3192-ae2a-855558b7d40a,SESCO,II.1.1,Entre Rios,AR-E,annual,2010,bioetanol combustion consumption by to the public,0.19185481799999998,TJ,N2O,0.6,kg/TJ,0.11511289079999998,kg +0e4a1d2c-fe0e-32e3-b4d4-bf6911e96499,SESCO,II.1.1,Santa Fe,AR-S,annual,2010,bioetanol combustion consumption by to the public,0.28418202,TJ,CH4,10.0,kg/TJ,2.8418202,kg +969c7469-6a3f-311a-a284-d6267592495a,SESCO,II.1.1,Santa Fe,AR-S,annual,2010,bioetanol combustion consumption by to the public,0.28418202,TJ,N2O,0.6,kg/TJ,0.170509212,kg +f2c900a4-db28-3929-8c8d-ef2090818511,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,bioetanol combustion consumption by to the public,15.357699111599999,TJ,CH4,10.0,kg/TJ,153.576991116,kg +543e1a4e-c8ff-3d22-ba37-581fb1dbc99e,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,bioetanol combustion consumption by to the public,15.357699111599999,TJ,N2O,0.6,kg/TJ,9.214619466959999,kg +b73d907a-3194-3b43-bd7e-5d531bfcbe71,SESCO,II.1.1,Capital Federal,AR-C,annual,2010,bioetanol combustion consumption by to the public,0.35448192,TJ,CH4,10.0,kg/TJ,3.5448192,kg +2dab0a29-5df1-3491-9da3-cf2d7c0ea925,SESCO,II.1.1,Capital Federal,AR-C,annual,2010,bioetanol combustion consumption by to the public,0.35448192,TJ,N2O,0.6,kg/TJ,0.212689152,kg +af108168-84b8-33db-9b56-4ba1547482b8,SESCO,II.1.1,Corrientes,AR-W,annual,2010,bioetanol combustion consumption by to the public,0.317968578,TJ,CH4,10.0,kg/TJ,3.17968578,kg +d4d710ef-d504-3aa5-9678-8d70c95c4415,SESCO,II.1.1,Corrientes,AR-W,annual,2010,bioetanol combustion consumption by to the public,0.317968578,TJ,N2O,0.6,kg/TJ,0.1907811468,kg +1cec701b-bdb4-30ba-bbc8-320ad9a28bd7,SESCO,II.1.1,Córdoba,AR-X,annual,2010,bioetanol combustion consumption by to the public,6.0727183920000005,TJ,CH4,10.0,kg/TJ,60.72718392,kg +f25a88bd-78ec-3d26-a767-eeea8b511e9c,SESCO,II.1.1,Córdoba,AR-X,annual,2010,bioetanol combustion consumption by to the public,6.0727183920000005,TJ,N2O,0.6,kg/TJ,3.6436310352000003,kg +20819484-1ac7-3fca-b04b-12db3f14031f,SESCO,II.1.1,Entre Rios,AR-E,annual,2010,bioetanol combustion consumption by to the public,2.129192244,TJ,CH4,10.0,kg/TJ,21.29192244,kg +7df005c1-a4b7-38b8-85b1-62cdecca33a6,SESCO,II.1.1,Entre Rios,AR-E,annual,2010,bioetanol combustion consumption by to the public,2.129192244,TJ,N2O,0.6,kg/TJ,1.2775153464,kg +f887f285-8777-31e1-b96c-035d85808c24,SESCO,II.1.1,Santa Fe,AR-S,annual,2010,bioetanol combustion consumption by to the public,2.2521531599999998,TJ,CH4,10.0,kg/TJ,22.521531599999996,kg +e7104527-4932-3597-b972-6d6d85708483,SESCO,II.1.1,Santa Fe,AR-S,annual,2010,bioetanol combustion consumption by to the public,2.2521531599999998,TJ,N2O,0.6,kg/TJ,1.3512918959999998,kg +744619e0-c4b0-3db8-bb4e-620422cc622d,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,bioetanol combustion consumption by to the public,1.27316442168,TJ,CH4,10.0,kg/TJ,12.7316442168,kg +a1749d7d-3ac5-3bec-b8f8-bb085269eaf8,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,bioetanol combustion consumption by to the public,1.27316442168,TJ,N2O,0.6,kg/TJ,0.763898653008,kg +49e09511-639c-3907-8131-37dd79aa821c,SESCO,II.1.1,Capital Federal,AR-C,annual,2010,bioetanol combustion consumption by to the public,0.0234333,TJ,CH4,10.0,kg/TJ,0.234333,kg +9f54dfe9-4560-3e8b-a41f-8e736c13cfd9,SESCO,II.1.1,Capital Federal,AR-C,annual,2010,bioetanol combustion consumption by to the public,0.0234333,TJ,N2O,0.6,kg/TJ,0.01405998,kg +41d7bf3c-ac25-3238-9e55-2626aefb0d66,SESCO,II.1.1,Corrientes,AR-W,annual,2010,bioetanol combustion consumption by to the public,0.030718925999999997,TJ,CH4,10.0,kg/TJ,0.30718925999999996,kg +fbe2f153-f095-3342-99e8-606df8ac36d9,SESCO,II.1.1,Corrientes,AR-W,annual,2010,bioetanol combustion consumption by to the public,0.030718925999999997,TJ,N2O,0.6,kg/TJ,0.018431355599999998,kg +4d56639a-1f12-374d-b14c-b495a1ca71d4,SESCO,II.1.1,Córdoba,AR-X,annual,2010,bioetanol combustion consumption by to the public,0.37024613999999995,TJ,CH4,10.0,kg/TJ,3.7024613999999993,kg +837294a9-42ae-3446-8860-986bb85ae083,SESCO,II.1.1,Córdoba,AR-X,annual,2010,bioetanol combustion consumption by to the public,0.37024613999999995,TJ,N2O,0.6,kg/TJ,0.22214768399999996,kg +ebb0687f-a3b0-366e-91a5-ce81f7f7f589,SESCO,II.1.1,Entre Rios,AR-E,annual,2010,bioetanol combustion consumption by to the public,0.10510900199999999,TJ,CH4,10.0,kg/TJ,1.05109002,kg +70bff495-d191-3664-bee9-b01226caef5b,SESCO,II.1.1,Entre Rios,AR-E,annual,2010,bioetanol combustion consumption by to the public,0.10510900199999999,TJ,N2O,0.6,kg/TJ,0.0630654012,kg +937822c5-3301-3192-936b-ce497af4f28e,SESCO,II.1.1,Santa Fe,AR-S,annual,2010,bioetanol combustion consumption by to the public,0.28844262,TJ,CH4,10.0,kg/TJ,2.8844262,kg +faea0fdd-6a1f-3b49-a59b-ffae6461b36d,SESCO,II.1.1,Santa Fe,AR-S,annual,2010,bioetanol combustion consumption by to the public,0.28844262,TJ,N2O,0.6,kg/TJ,0.17306557199999997,kg +6434550b-6531-38a2-80bf-d50ed503e07b,SESCO,II.1.1,Catamarca,AR-K,annual,2010,bioetanol combustion consumption by to the public,0.7797877938,TJ,CH4,10.0,kg/TJ,7.797877937999999,kg +87bded34-7b3f-38e9-81bb-d3cf1af410da,SESCO,II.1.1,Catamarca,AR-K,annual,2010,bioetanol combustion consumption by to the public,0.7797877938,TJ,N2O,0.6,kg/TJ,0.46787267627999996,kg +369ac615-540b-342a-b8eb-8392f80f43cc,SESCO,II.1.1,Chaco,AR-H,annual,2010,bioetanol combustion consumption by to the public,1.2007691586,TJ,CH4,10.0,kg/TJ,12.007691586,kg +151ef6ae-3883-3932-a68f-24f077e47d9e,SESCO,II.1.1,Chaco,AR-H,annual,2010,bioetanol combustion consumption by to the public,1.2007691586,TJ,N2O,0.6,kg/TJ,0.72046149516,kg +91aba35f-838a-3c75-b257-efd1525394b8,SESCO,II.1.1,Córdoba,AR-X,annual,2010,bioetanol combustion consumption by to the public,0.13809030660000002,TJ,CH4,10.0,kg/TJ,1.3809030660000001,kg +8ea9e023-db8a-390e-9888-4ba92784e8b3,SESCO,II.1.1,Córdoba,AR-X,annual,2010,bioetanol combustion consumption by to the public,0.13809030660000002,TJ,N2O,0.6,kg/TJ,0.08285418396000001,kg +92b00dfd-b250-3027-95e9-5f2763da3fed,SESCO,II.1.1,Jujuy,AR-Y,annual,2010,bioetanol combustion consumption by to the public,1.8647410625999998,TJ,CH4,10.0,kg/TJ,18.647410626,kg +f08248fe-6f38-3a19-bd93-d2b885c96a94,SESCO,II.1.1,Jujuy,AR-Y,annual,2010,bioetanol combustion consumption by to the public,1.8647410625999998,TJ,N2O,0.6,kg/TJ,1.1188446375599999,kg +a613e6eb-7ab2-3828-ad08-72e0fbb06e0c,SESCO,II.1.1,La Rioja,AR-F,annual,2010,bioetanol combustion consumption by to the public,0.660094758,TJ,CH4,10.0,kg/TJ,6.60094758,kg +1ced7859-8391-3168-80e1-5cfda806d3b8,SESCO,II.1.1,La Rioja,AR-F,annual,2010,bioetanol combustion consumption by to the public,0.660094758,TJ,N2O,0.6,kg/TJ,0.39605685479999997,kg +187194a0-2eb9-3936-84cf-2a1e3a374f28,SESCO,II.1.1,Salta,AR-A,annual,2010,bioetanol combustion consumption by to the public,3.4487043246,TJ,CH4,10.0,kg/TJ,34.487043246,kg +a527f095-b0a9-35b0-8ac8-463d65d09a76,SESCO,II.1.1,Salta,AR-A,annual,2010,bioetanol combustion consumption by to the public,3.4487043246,TJ,N2O,0.6,kg/TJ,2.06922259476,kg +1d674fc4-6094-345d-aa6c-faccc8a935d5,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2010,bioetanol combustion consumption by to the public,1.1839270068,TJ,CH4,10.0,kg/TJ,11.839270068000001,kg +2e8beb86-10a8-3983-bb8c-1c09eb3cf5b9,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2010,bioetanol combustion consumption by to the public,1.1839270068,TJ,N2O,0.6,kg/TJ,0.71035620408,kg +f20100cc-29b0-39c1-9095-eb8fc5598723,SESCO,II.1.1,Tucuman,AR-T,annual,2010,bioetanol combustion consumption by to the public,2.6591767991999995,TJ,CH4,10.0,kg/TJ,26.591767991999994,kg +edce3b2f-61b0-358d-971c-9e89b40e9878,SESCO,II.1.1,Tucuman,AR-T,annual,2010,bioetanol combustion consumption by to the public,2.6591767991999995,TJ,N2O,0.6,kg/TJ,1.5955060795199996,kg +2ed9a6c2-54d5-3ebd-9117-d4326e33cf62,SESCO,II.1.1,Catamarca,AR-K,annual,2010,bioetanol combustion consumption by to the public,2.4275535408,TJ,CH4,10.0,kg/TJ,24.275535408,kg +23f25b17-8a37-35e7-902c-aadb81573783,SESCO,II.1.1,Catamarca,AR-K,annual,2010,bioetanol combustion consumption by to the public,2.4275535408,TJ,N2O,0.6,kg/TJ,1.45653212448,kg +10522db2-85f6-3842-95ad-e325308f07cf,SESCO,II.1.1,Chaco,AR-H,annual,2010,bioetanol combustion consumption by to the public,0.9420314418000001,TJ,CH4,10.0,kg/TJ,9.420314418,kg +623ecaa0-24f1-31a7-bded-983b299589e6,SESCO,II.1.1,Chaco,AR-H,annual,2010,bioetanol combustion consumption by to the public,0.9420314418000001,TJ,N2O,0.6,kg/TJ,0.5652188650800001,kg +f72aa046-e44e-3a25-9023-450eeebf0016,SESCO,II.1.1,Córdoba,AR-X,annual,2010,bioetanol combustion consumption by to the public,0.7759063871999999,TJ,CH4,10.0,kg/TJ,7.759063872,kg +2e8bacea-2d73-3000-8487-d63ac50a8867,SESCO,II.1.1,Córdoba,AR-X,annual,2010,bioetanol combustion consumption by to the public,0.7759063871999999,TJ,N2O,0.6,kg/TJ,0.46554383231999996,kg +1930d0f1-c4a8-371d-b0eb-66402666e8d0,SESCO,II.1.1,Jujuy,AR-Y,annual,2010,bioetanol combustion consumption by to the public,3.0747386808000003,TJ,CH4,10.0,kg/TJ,30.747386808,kg +b7d7c245-2f75-3c18-9268-173731f78a26,SESCO,II.1.1,Jujuy,AR-Y,annual,2010,bioetanol combustion consumption by to the public,3.0747386808000003,TJ,N2O,0.6,kg/TJ,1.8448432084800002,kg +37292173-5843-325a-a103-f918e3654ed3,SESCO,II.1.1,La Rioja,AR-F,annual,2010,bioetanol combustion consumption by to the public,2.3628307661999997,TJ,CH4,10.0,kg/TJ,23.628307661999997,kg +9cd4a484-bf85-3407-8b47-08322d35a48d,SESCO,II.1.1,La Rioja,AR-F,annual,2010,bioetanol combustion consumption by to the public,2.3628307661999997,TJ,N2O,0.6,kg/TJ,1.4176984597199997,kg +0b9b410a-b907-349a-a872-363d469e8f18,SESCO,II.1.1,Salta,AR-A,annual,2010,bioetanol combustion consumption by to the public,7.0094283444,TJ,CH4,10.0,kg/TJ,70.094283444,kg +47299c25-20f8-38b4-9130-10b7c5c42823,SESCO,II.1.1,Salta,AR-A,annual,2010,bioetanol combustion consumption by to the public,7.0094283444,TJ,N2O,0.6,kg/TJ,4.20565700664,kg +f28e5f37-c768-3fdc-9bde-136fbf773010,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2010,bioetanol combustion consumption by to the public,2.2173781428,TJ,CH4,10.0,kg/TJ,22.173781427999998,kg +6f33d286-7324-306e-a7e4-df3b37fb96ff,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2010,bioetanol combustion consumption by to the public,2.2173781428,TJ,N2O,0.6,kg/TJ,1.33042688568,kg +3269be9c-fae3-36bb-ae53-6edb93fe7d7b,SESCO,II.1.1,Tucuman,AR-T,annual,2010,bioetanol combustion consumption by to the public,13.2122867634,TJ,CH4,10.0,kg/TJ,132.122867634,kg +6b8e1b60-b77b-33cb-80b7-196b0af46baa,SESCO,II.1.1,Tucuman,AR-T,annual,2010,bioetanol combustion consumption by to the public,13.2122867634,TJ,N2O,0.6,kg/TJ,7.92737205804,kg +bcf44d70-4e7b-32f5-9fab-dead5f12f787,SESCO,II.1.1,Catamarca,AR-K,annual,2010,bioetanol combustion consumption by to the public,0.10072058399999999,TJ,CH4,10.0,kg/TJ,1.00720584,kg +b0bfc66f-a918-31b4-89af-a0e0f5453b9c,SESCO,II.1.1,Catamarca,AR-K,annual,2010,bioetanol combustion consumption by to the public,0.10072058399999999,TJ,N2O,0.6,kg/TJ,0.06043235039999999,kg +046ffaf6-bf31-379f-bcba-c29637233d3e,SESCO,II.1.1,Chaco,AR-H,annual,2010,bioetanol combustion consumption by to the public,0.0076307346,TJ,CH4,10.0,kg/TJ,0.076307346,kg +0c1ac799-db87-300e-bbbc-16d7b34f9715,SESCO,II.1.1,Chaco,AR-H,annual,2010,bioetanol combustion consumption by to the public,0.0076307346,TJ,N2O,0.6,kg/TJ,0.00457844076,kg +e75b0666-79da-3ab5-bb31-427ea66c3286,SESCO,II.1.1,Córdoba,AR-X,annual,2010,bioetanol combustion consumption by to the public,0.0651829194,TJ,CH4,10.0,kg/TJ,0.651829194,kg +d450533a-7be1-3a0d-87bd-81cb302950dd,SESCO,II.1.1,Córdoba,AR-X,annual,2010,bioetanol combustion consumption by to the public,0.0651829194,TJ,N2O,0.6,kg/TJ,0.039109751639999996,kg +014d8307-eb34-3f9a-8de8-9c73d93c39a0,SESCO,II.1.1,Jujuy,AR-Y,annual,2010,bioetanol combustion consumption by to the public,0.2230253676,TJ,CH4,10.0,kg/TJ,2.230253676,kg +78b872d2-e60e-3e19-8b66-ca4c8e24f01c,SESCO,II.1.1,Jujuy,AR-Y,annual,2010,bioetanol combustion consumption by to the public,0.2230253676,TJ,N2O,0.6,kg/TJ,0.13381522056,kg +e02d1ddf-11b6-38b3-8550-57eb1a533fca,SESCO,II.1.1,La Rioja,AR-F,annual,2010,bioetanol combustion consumption by to the public,0.1236042666,TJ,CH4,10.0,kg/TJ,1.236042666,kg +a54f29a6-bdce-3d00-8508-d8af0557018d,SESCO,II.1.1,La Rioja,AR-F,annual,2010,bioetanol combustion consumption by to the public,0.1236042666,TJ,N2O,0.6,kg/TJ,0.07416255996,kg +cd63ecbb-a149-3a19-9591-8b86bc4705f9,SESCO,II.1.1,Salta,AR-A,annual,2010,bioetanol combustion consumption by to the public,0.552003336,TJ,CH4,10.0,kg/TJ,5.520033359999999,kg +aa74654d-f161-3bb8-9602-ea8350219a66,SESCO,II.1.1,Salta,AR-A,annual,2010,bioetanol combustion consumption by to the public,0.552003336,TJ,N2O,0.6,kg/TJ,0.33120200159999996,kg +a66d1575-27fa-3235-822b-c07148d575d6,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2010,bioetanol combustion consumption by to the public,0.2109465666,TJ,CH4,10.0,kg/TJ,2.109465666,kg +a8d29cdc-4d9d-354d-8859-2fbbfb3a0672,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2010,bioetanol combustion consumption by to the public,0.2109465666,TJ,N2O,0.6,kg/TJ,0.12656793996,kg +076b6605-81bf-34cf-b7e0-2ce90caf8a04,SESCO,II.1.1,Tucuman,AR-T,annual,2010,bioetanol combustion consumption by to the public,1.0517674554,TJ,CH4,10.0,kg/TJ,10.517674554000001,kg +5408a354-4dd0-3906-8285-5911105731d1,SESCO,II.1.1,Tucuman,AR-T,annual,2010,bioetanol combustion consumption by to the public,1.0517674554,TJ,N2O,0.6,kg/TJ,0.63106047324,kg +aebc7f6b-1fe1-3b0e-86ea-1bbbaef92a6c,SESCO,II.5.1,Misiones,AR-N,annual,2010,bioetanol combustion consumption by agriculture machines,0.10608894,TJ,CH4,10.0,kg/TJ,1.0608894,kg +b1baf6a7-e3d7-3f67-93d8-20e988d8ea00,SESCO,II.5.1,Misiones,AR-N,annual,2010,bioetanol combustion consumption by agriculture machines,0.10608894,TJ,N2O,0.6,kg/TJ,0.063653364,kg +a857ff55-10d0-328d-be62-891167a66e61,SESCO,II.5.1,Capital Federal,AR-C,annual,2010,bioetanol combustion consumption by agriculture machines,0.0068169599999999995,TJ,CH4,10.0,kg/TJ,0.0681696,kg +820d206e-1f00-39da-b415-23566542e7b7,SESCO,II.5.1,Capital Federal,AR-C,annual,2010,bioetanol combustion consumption by agriculture machines,0.0068169599999999995,TJ,N2O,0.6,kg/TJ,0.004090175999999999,kg +7e8a6d59-eb09-3827-b4f0-f11a2c53867c,SESCO,II.5.1,Salta,AR-A,annual,2010,bioetanol combustion consumption by agriculture machines,0.0025563599999999997,TJ,CH4,10.0,kg/TJ,0.0255636,kg +4079a562-7059-3c1b-955f-02a6f07108a5,SESCO,II.5.1,Salta,AR-A,annual,2010,bioetanol combustion consumption by agriculture machines,0.0025563599999999997,TJ,N2O,0.6,kg/TJ,0.0015338159999999997,kg +76861cc3-266b-33b7-a13e-977ae63f920a,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,bioetanol combustion consumption by to the public,4.9670074799999995,TJ,CH4,10.0,kg/TJ,49.670074799999995,kg +8716907d-6510-34bc-baf5-ca3a0be16728,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,bioetanol combustion consumption by to the public,4.9670074799999995,TJ,N2O,0.6,kg/TJ,2.9802044879999996,kg +e6a77332-8875-3b11-9074-62cfbfc14136,SESCO,II.1.1,Capital Federal,AR-C,annual,2010,bioetanol combustion consumption by to the public,0.1363392,TJ,CH4,10.0,kg/TJ,1.363392,kg +3d5f3f69-8af8-3335-8995-670a4bb7ba36,SESCO,II.1.1,Capital Federal,AR-C,annual,2010,bioetanol combustion consumption by to the public,0.1363392,TJ,N2O,0.6,kg/TJ,0.08180351999999999,kg +b81b914a-cc83-34c9-9614-71a91402da6c,SESCO,II.1.1,Chaco,AR-H,annual,2010,bioetanol combustion consumption by to the public,0.2577663,TJ,CH4,10.0,kg/TJ,2.5776630000000003,kg +7ed298af-8634-396b-98cb-b59047effc1e,SESCO,II.1.1,Chaco,AR-H,annual,2010,bioetanol combustion consumption by to the public,0.2577663,TJ,N2O,0.6,kg/TJ,0.15465978,kg +b778f734-0ae4-36d8-a0fc-3316c9e2e355,SESCO,II.1.1,Chubut,AR-U,annual,2010,bioetanol combustion consumption by to the public,0.10779318,TJ,CH4,10.0,kg/TJ,1.0779318,kg +497ca5ae-a24e-36fe-af5c-2a860a7d3530,SESCO,II.1.1,Chubut,AR-U,annual,2010,bioetanol combustion consumption by to the public,0.10779318,TJ,N2O,0.6,kg/TJ,0.064675908,kg +5cba0814-48b2-3b27-ade4-ba60d6aba24f,SESCO,II.1.1,Corrientes,AR-W,annual,2010,bioetanol combustion consumption by to the public,0.41242608,TJ,CH4,10.0,kg/TJ,4.1242608,kg +813adcb3-450c-3386-ab04-32812d75e838,SESCO,II.1.1,Corrientes,AR-W,annual,2010,bioetanol combustion consumption by to the public,0.41242608,TJ,N2O,0.6,kg/TJ,0.24745564799999997,kg +8cf29d1f-30f0-3b36-a76a-8da73d161e42,SESCO,II.1.1,Córdoba,AR-X,annual,2010,bioetanol combustion consumption by to the public,0.37109826,TJ,CH4,10.0,kg/TJ,3.7109826000000004,kg +163c46f5-6b41-38e1-940d-297a0b3d67fc,SESCO,II.1.1,Córdoba,AR-X,annual,2010,bioetanol combustion consumption by to the public,0.37109826,TJ,N2O,0.6,kg/TJ,0.222658956,kg +b999dc56-4385-31bd-b98d-c3743e9593a8,SESCO,II.1.1,Entre Rios,AR-E,annual,2010,bioetanol combustion consumption by to the public,0.5969100599999999,TJ,CH4,10.0,kg/TJ,5.969100599999999,kg +b6164a06-26de-3858-b23a-cfae06338b2d,SESCO,II.1.1,Entre Rios,AR-E,annual,2010,bioetanol combustion consumption by to the public,0.5969100599999999,TJ,N2O,0.6,kg/TJ,0.35814603599999995,kg +42afe55d-2f15-3a51-b184-fe578c001fb3,SESCO,II.1.1,Jujuy,AR-Y,annual,2010,bioetanol combustion consumption by to the public,0.0532575,TJ,CH4,10.0,kg/TJ,0.532575,kg +0526dfb1-a1bf-3338-b1d3-4f68a964244b,SESCO,II.1.1,Jujuy,AR-Y,annual,2010,bioetanol combustion consumption by to the public,0.0532575,TJ,N2O,0.6,kg/TJ,0.0319545,kg +e9fd757a-1e64-3f00-8a3a-9431176b0527,SESCO,II.1.1,La Pampa,AR-L,annual,2010,bioetanol combustion consumption by to the public,0.16360703999999998,TJ,CH4,10.0,kg/TJ,1.6360704,kg +25632230-9369-3385-a1bf-0cc9ce203aac,SESCO,II.1.1,La Pampa,AR-L,annual,2010,bioetanol combustion consumption by to the public,0.16360703999999998,TJ,N2O,0.6,kg/TJ,0.09816422399999998,kg +14ec31e9-7670-32f8-8c08-7173c9abe1d9,SESCO,II.1.1,Mendoza,AR-M,annual,2010,bioetanol combustion consumption by to the public,0.489969,TJ,CH4,10.0,kg/TJ,4.89969,kg +5d852a7a-06e9-3e8f-b391-a3f0dc6580a0,SESCO,II.1.1,Mendoza,AR-M,annual,2010,bioetanol combustion consumption by to the public,0.489969,TJ,N2O,0.6,kg/TJ,0.2939814,kg +a1cfb0ba-9120-3716-bc61-745589e4e8dd,SESCO,II.1.1,Misiones,AR-N,annual,2010,bioetanol combustion consumption by to the public,0.96587802,TJ,CH4,10.0,kg/TJ,9.6587802,kg +97fb0048-e410-3643-ba45-166b62159598,SESCO,II.1.1,Misiones,AR-N,annual,2010,bioetanol combustion consumption by to the public,0.96587802,TJ,N2O,0.6,kg/TJ,0.579526812,kg +8fa11059-744f-33df-ae7f-7c687cc491a2,SESCO,II.1.1,Neuquén,AR-Q,annual,2010,bioetanol combustion consumption by to the public,0.35533403999999996,TJ,CH4,10.0,kg/TJ,3.5533403999999997,kg +951e13be-8cf0-3ece-b88e-9bedaf24f8f4,SESCO,II.1.1,Neuquén,AR-Q,annual,2010,bioetanol combustion consumption by to the public,0.35533403999999996,TJ,N2O,0.6,kg/TJ,0.21320042399999997,kg +7e3fd4b5-0d95-34f4-8fc7-b2422f9920a8,SESCO,II.1.1,Rio Negro,AR-R,annual,2010,bioetanol combustion consumption by to the public,0.45204965999999996,TJ,CH4,10.0,kg/TJ,4.5204965999999995,kg +e49b062e-cf55-3cde-aa0e-d0683a8757f4,SESCO,II.1.1,Rio Negro,AR-R,annual,2010,bioetanol combustion consumption by to the public,0.45204965999999996,TJ,N2O,0.6,kg/TJ,0.27122979599999997,kg +b40ba657-8e8f-3c0e-b665-577dab3150ef,SESCO,II.1.1,Salta,AR-A,annual,2010,bioetanol combustion consumption by to the public,0.11716649999999999,TJ,CH4,10.0,kg/TJ,1.171665,kg +0403a88b-aab9-3f22-a77e-4f69af4e16a5,SESCO,II.1.1,Salta,AR-A,annual,2010,bioetanol combustion consumption by to the public,0.11716649999999999,TJ,N2O,0.6,kg/TJ,0.0702999,kg +22fe543f-503a-3de6-bdfe-b2413eab09be,SESCO,II.1.1,Santa Fe,AR-S,annual,2010,bioetanol combustion consumption by to the public,0.29568564,TJ,CH4,10.0,kg/TJ,2.9568564000000004,kg +dc03463c-63a5-3b77-b668-e59b1c6ec659,SESCO,II.1.1,Santa Fe,AR-S,annual,2010,bioetanol combustion consumption by to the public,0.29568564,TJ,N2O,0.6,kg/TJ,0.177411384,kg +bf58d1ac-0e92-3d82-bd4d-edffdd68d31f,SESCO,II.1.1,Tucuman,AR-T,annual,2010,bioetanol combustion consumption by to the public,0.19172699999999998,TJ,CH4,10.0,kg/TJ,1.9172699999999998,kg +d82b90e9-534a-34db-8677-2c774310b825,SESCO,II.1.1,Tucuman,AR-T,annual,2010,bioetanol combustion consumption by to the public,0.19172699999999998,TJ,N2O,0.6,kg/TJ,0.11503619999999998,kg +8026acb8-cb20-3203-bd75-44fdd48f7799,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,bioetanol combustion consumption by to the public,126.24626466,TJ,CH4,10.0,kg/TJ,1262.4626466,kg +a916de6f-732b-3dac-829d-9f6de0e9264f,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,bioetanol combustion consumption by to the public,126.24626466,TJ,N2O,0.6,kg/TJ,75.747758796,kg +6e7921f4-4a6a-3fa5-a05b-75e31e48c393,SESCO,II.1.1,Capital Federal,AR-C,annual,2010,bioetanol combustion consumption by to the public,44.3272824,TJ,CH4,10.0,kg/TJ,443.272824,kg +152953d1-9ad1-382a-8cae-cd04a913a320,SESCO,II.1.1,Capital Federal,AR-C,annual,2010,bioetanol combustion consumption by to the public,44.3272824,TJ,N2O,0.6,kg/TJ,26.59636944,kg +d4b53aa3-5e03-3116-af6b-975cdde2c814,SESCO,II.1.1,Catamarca,AR-K,annual,2010,bioetanol combustion consumption by to the public,0.67274874,TJ,CH4,10.0,kg/TJ,6.727487399999999,kg +b4e7df3a-c732-3d84-ba22-9e7920641929,SESCO,II.1.1,Catamarca,AR-K,annual,2010,bioetanol combustion consumption by to the public,0.67274874,TJ,N2O,0.6,kg/TJ,0.40364924399999996,kg +67c14655-5d36-30c9-8981-8bb9c4a1ebf5,SESCO,II.1.1,Chaco,AR-H,annual,2010,bioetanol combustion consumption by to the public,8.5787181,TJ,CH4,10.0,kg/TJ,85.787181,kg +d030869a-75e3-3560-8d3e-c97bd8107c80,SESCO,II.1.1,Chaco,AR-H,annual,2010,bioetanol combustion consumption by to the public,8.5787181,TJ,N2O,0.6,kg/TJ,5.14723086,kg +324b2501-ec60-307c-bd2a-2a76593e7321,SESCO,II.1.1,Chubut,AR-U,annual,2010,bioetanol combustion consumption by to the public,1.59602076,TJ,CH4,10.0,kg/TJ,15.9602076,kg +60d35c77-f892-3d1c-88d0-84e7822b0735,SESCO,II.1.1,Chubut,AR-U,annual,2010,bioetanol combustion consumption by to the public,1.59602076,TJ,N2O,0.6,kg/TJ,0.957612456,kg +c16dd0f2-3e07-3964-a1da-d3ab781ac646,SESCO,II.1.1,Corrientes,AR-W,annual,2010,bioetanol combustion consumption by to the public,9.04994046,TJ,CH4,10.0,kg/TJ,90.4994046,kg +a7ad5aed-ded2-3725-9d36-7a97ecbf3219,SESCO,II.1.1,Corrientes,AR-W,annual,2010,bioetanol combustion consumption by to the public,9.04994046,TJ,N2O,0.6,kg/TJ,5.429964276,kg +921e4348-c0ea-362b-aea9-c09c5a429341,SESCO,II.1.1,Córdoba,AR-X,annual,2010,bioetanol combustion consumption by to the public,30.87315972,TJ,CH4,10.0,kg/TJ,308.7315972,kg +c849120b-876a-3d9e-a251-046f392641fb,SESCO,II.1.1,Córdoba,AR-X,annual,2010,bioetanol combustion consumption by to the public,30.87315972,TJ,N2O,0.6,kg/TJ,18.523895832,kg +cdc0f50d-cddb-3e25-b7fd-f415087bbb36,SESCO,II.1.1,Entre Rios,AR-E,annual,2010,bioetanol combustion consumption by to the public,9.69371712,TJ,CH4,10.0,kg/TJ,96.93717120000001,kg +ee9f4c51-4a84-379c-a89a-747011972e84,SESCO,II.1.1,Entre Rios,AR-E,annual,2010,bioetanol combustion consumption by to the public,9.69371712,TJ,N2O,0.6,kg/TJ,5.816230272,kg +cce94eff-7a24-3563-9a3f-8b0964abe607,SESCO,II.1.1,Formosa,AR-P,annual,2010,bioetanol combustion consumption by to the public,3.7361201399999997,TJ,CH4,10.0,kg/TJ,37.3612014,kg +c18ffc49-f530-3346-81af-e4e1de46de93,SESCO,II.1.1,Formosa,AR-P,annual,2010,bioetanol combustion consumption by to the public,3.7361201399999997,TJ,N2O,0.6,kg/TJ,2.2416720839999997,kg +4d5a5b7b-d5c4-3aa3-ad91-d5764f32d2cd,SESCO,II.1.1,Jujuy,AR-Y,annual,2010,bioetanol combustion consumption by to the public,2.59939206,TJ,CH4,10.0,kg/TJ,25.9939206,kg +84fdd00d-9b6d-3488-9323-5e9cc57ebd12,SESCO,II.1.1,Jujuy,AR-Y,annual,2010,bioetanol combustion consumption by to the public,2.59939206,TJ,N2O,0.6,kg/TJ,1.5596352359999999,kg +bf05fd6a-958e-3b57-be16-0d52ae76ce02,SESCO,II.1.1,La Pampa,AR-L,annual,2010,bioetanol combustion consumption by to the public,3.04377264,TJ,CH4,10.0,kg/TJ,30.4377264,kg +b730219e-0b29-33bd-9e0e-9b3ca9a45ae4,SESCO,II.1.1,La Pampa,AR-L,annual,2010,bioetanol combustion consumption by to the public,3.04377264,TJ,N2O,0.6,kg/TJ,1.8262635839999999,kg +391432a9-9e00-3ad3-a262-a7feebfb733c,SESCO,II.1.1,La Rioja,AR-F,annual,2010,bioetanol combustion consumption by to the public,2.55337758,TJ,CH4,10.0,kg/TJ,25.533775799999997,kg +f8755dc6-8c0a-3d8c-a7c7-5adb83c5b6fd,SESCO,II.1.1,La Rioja,AR-F,annual,2010,bioetanol combustion consumption by to the public,2.55337758,TJ,N2O,0.6,kg/TJ,1.532026548,kg +d363cccb-eda9-36a0-8b98-c690ffcbbc01,SESCO,II.1.1,Mendoza,AR-M,annual,2010,bioetanol combustion consumption by to the public,7.122018959999999,TJ,CH4,10.0,kg/TJ,71.2201896,kg +c063f0ce-22df-392e-8e72-3429f4d49163,SESCO,II.1.1,Mendoza,AR-M,annual,2010,bioetanol combustion consumption by to the public,7.122018959999999,TJ,N2O,0.6,kg/TJ,4.273211375999999,kg +3aaff2af-90e3-37c9-a194-9e11188e371a,SESCO,II.1.1,Misiones,AR-N,annual,2010,bioetanol combustion consumption by to the public,9.8483769,TJ,CH4,10.0,kg/TJ,98.483769,kg +43180ed2-b98f-3ad1-bac7-d6b894549c8b,SESCO,II.1.1,Misiones,AR-N,annual,2010,bioetanol combustion consumption by to the public,9.8483769,TJ,N2O,0.6,kg/TJ,5.90902614,kg +b921e5eb-1d19-319b-9ba9-04e070885943,SESCO,II.1.1,Neuquén,AR-Q,annual,2010,bioetanol combustion consumption by to the public,1.7724096,TJ,CH4,10.0,kg/TJ,17.724096,kg +af34392e-aad7-375f-acf1-c2fb16b15c84,SESCO,II.1.1,Neuquén,AR-Q,annual,2010,bioetanol combustion consumption by to the public,1.7724096,TJ,N2O,0.6,kg/TJ,1.06344576,kg +193a9b06-6ba6-3545-b682-57c9d99b7ba2,SESCO,II.1.1,Rio Negro,AR-R,annual,2010,bioetanol combustion consumption by to the public,1.9918304999999998,TJ,CH4,10.0,kg/TJ,19.918304999999997,kg +642a792f-8dc5-3128-98b7-3c36839ec451,SESCO,II.1.1,Rio Negro,AR-R,annual,2010,bioetanol combustion consumption by to the public,1.9918304999999998,TJ,N2O,0.6,kg/TJ,1.1950983,kg +c8263e47-50de-37d8-84d2-1ae98d1a236a,SESCO,II.1.1,Salta,AR-A,annual,2010,bioetanol combustion consumption by to the public,3.3633176399999996,TJ,CH4,10.0,kg/TJ,33.633176399999996,kg +d3a7ec93-9d42-37ba-acdb-b39b6300f71e,SESCO,II.1.1,Salta,AR-A,annual,2010,bioetanol combustion consumption by to the public,3.3633176399999996,TJ,N2O,0.6,kg/TJ,2.0179905839999996,kg +a9860555-1fc6-340b-9284-835619078b40,SESCO,II.1.1,San Juan,AR-J,annual,2010,bioetanol combustion consumption by to the public,2.8396899,TJ,CH4,10.0,kg/TJ,28.396899,kg +044af76e-e6e3-319d-a45b-38ea25a69606,SESCO,II.1.1,San Juan,AR-J,annual,2010,bioetanol combustion consumption by to the public,2.8396899,TJ,N2O,0.6,kg/TJ,1.70381394,kg +2b1e2bb4-897a-30cb-9f9a-740e169e29ea,SESCO,II.1.1,San Luis,AR-D,annual,2010,bioetanol combustion consumption by to the public,0.14187798,TJ,CH4,10.0,kg/TJ,1.4187797999999998,kg +35ad1ca2-99a6-3d89-b848-411cf1aebcf4,SESCO,II.1.1,San Luis,AR-D,annual,2010,bioetanol combustion consumption by to the public,0.14187798,TJ,N2O,0.6,kg/TJ,0.085126788,kg +61a5e62e-5304-39ba-9dee-fd64ab2af0f2,SESCO,II.1.1,Santa Fe,AR-S,annual,2010,bioetanol combustion consumption by to the public,35.7975612,TJ,CH4,10.0,kg/TJ,357.97561199999996,kg +a487192a-7e49-355c-aadb-21dd57c74a83,SESCO,II.1.1,Santa Fe,AR-S,annual,2010,bioetanol combustion consumption by to the public,35.7975612,TJ,N2O,0.6,kg/TJ,21.478536719999997,kg +4fe7370b-4737-3227-8004-81839811f8d8,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2010,bioetanol combustion consumption by to the public,3.63684816,TJ,CH4,10.0,kg/TJ,36.3684816,kg +82b063bb-3168-3e2a-992b-b6bd6a3f7d2d,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2010,bioetanol combustion consumption by to the public,3.63684816,TJ,N2O,0.6,kg/TJ,2.182108896,kg +a0ee9340-dd4b-3aa6-9443-9154fd67b4ea,SESCO,II.1.1,Tucuman,AR-T,annual,2010,bioetanol combustion consumption by to the public,6.59668698,TJ,CH4,10.0,kg/TJ,65.9668698,kg +c3e5a502-fbfe-3755-afe2-99ad43db7f12,SESCO,II.1.1,Tucuman,AR-T,annual,2010,bioetanol combustion consumption by to the public,6.59668698,TJ,N2O,0.6,kg/TJ,3.958012188,kg +d8912314-ded0-3446-9a09-faf005a347c4,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,bioetanol combustion consumption by to the public,44.8768998,TJ,CH4,10.0,kg/TJ,448.76899799999995,kg +dae10f65-1b85-3b0e-96d4-33f1b74a408a,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,bioetanol combustion consumption by to the public,44.8768998,TJ,N2O,0.6,kg/TJ,26.926139879999997,kg +6f38e4d8-4724-3853-93ba-98b502eb5f4f,SESCO,II.1.1,Capital Federal,AR-C,annual,2010,bioetanol combustion consumption by to the public,24.96967236,TJ,CH4,10.0,kg/TJ,249.6967236,kg +2a4f5565-03b0-30cf-8b66-01454ebdae46,SESCO,II.1.1,Capital Federal,AR-C,annual,2010,bioetanol combustion consumption by to the public,24.96967236,TJ,N2O,0.6,kg/TJ,14.981803416,kg +dea34758-f644-3ff7-b7cd-43ba30f1b57e,SESCO,II.1.1,Catamarca,AR-K,annual,2010,bioetanol combustion consumption by to the public,0.2300724,TJ,CH4,10.0,kg/TJ,2.300724,kg +4e15f0e4-6c58-30f8-86d1-5fed4c74bfa2,SESCO,II.1.1,Catamarca,AR-K,annual,2010,bioetanol combustion consumption by to the public,0.2300724,TJ,N2O,0.6,kg/TJ,0.13804344,kg +d50fded5-462b-381b-9de9-17b5e10a9af2,SESCO,II.1.1,Chaco,AR-H,annual,2010,bioetanol combustion consumption by to the public,1.6488522,TJ,CH4,10.0,kg/TJ,16.488522,kg +48346f0b-60bb-340e-aef6-3524882a6bc0,SESCO,II.1.1,Chaco,AR-H,annual,2010,bioetanol combustion consumption by to the public,1.6488522,TJ,N2O,0.6,kg/TJ,0.98931132,kg +e7bac093-18cf-35af-b48d-56a1bfe8d5eb,SESCO,II.1.1,Chubut,AR-U,annual,2010,bioetanol combustion consumption by to the public,0.22964633999999998,TJ,CH4,10.0,kg/TJ,2.2964634,kg +78f336a7-fb90-38f8-8900-531603a2bed3,SESCO,II.1.1,Chubut,AR-U,annual,2010,bioetanol combustion consumption by to the public,0.22964633999999998,TJ,N2O,0.6,kg/TJ,0.13778780399999999,kg +5dc5f548-b0aa-3fb5-abb7-2529f775c285,SESCO,II.1.1,Corrientes,AR-W,annual,2010,bioetanol combustion consumption by to the public,1.384695,TJ,CH4,10.0,kg/TJ,13.84695,kg +e7e75894-caac-3a44-a773-189bd669af11,SESCO,II.1.1,Corrientes,AR-W,annual,2010,bioetanol combustion consumption by to the public,1.384695,TJ,N2O,0.6,kg/TJ,0.830817,kg +206c9cd6-67f0-3323-a44e-ae06c90c54f6,SESCO,II.1.1,Córdoba,AR-X,annual,2010,bioetanol combustion consumption by to the public,7.82118342,TJ,CH4,10.0,kg/TJ,78.2118342,kg +0f9c637b-288f-3f41-81a3-447576bd8a08,SESCO,II.1.1,Córdoba,AR-X,annual,2010,bioetanol combustion consumption by to the public,7.82118342,TJ,N2O,0.6,kg/TJ,4.692710052,kg +75f36119-f849-3d81-aeed-58fc5b9cc18e,SESCO,II.1.1,Entre Rios,AR-E,annual,2010,bioetanol combustion consumption by to the public,2.6522235,TJ,CH4,10.0,kg/TJ,26.522235,kg +9cbfb3c5-2178-3e06-a85b-1841dc61b07f,SESCO,II.1.1,Entre Rios,AR-E,annual,2010,bioetanol combustion consumption by to the public,2.6522235,TJ,N2O,0.6,kg/TJ,1.5913340999999999,kg +b754e3e6-eef3-3492-9608-a0cebe487326,SESCO,II.1.1,Formosa,AR-P,annual,2010,bioetanol combustion consumption by to the public,0.97823376,TJ,CH4,10.0,kg/TJ,9.7823376,kg +64ae5538-2f7b-33d0-9938-4340fe03c5dc,SESCO,II.1.1,Formosa,AR-P,annual,2010,bioetanol combustion consumption by to the public,0.97823376,TJ,N2O,0.6,kg/TJ,0.586940256,kg +3ed24f1c-cba9-340e-ab68-7ac9aa829c99,SESCO,II.1.1,Jujuy,AR-Y,annual,2010,bioetanol combustion consumption by to the public,0.3898449,TJ,CH4,10.0,kg/TJ,3.898449,kg +7b9c61e0-faae-30a7-8c99-e88f9a4f707c,SESCO,II.1.1,Jujuy,AR-Y,annual,2010,bioetanol combustion consumption by to the public,0.3898449,TJ,N2O,0.6,kg/TJ,0.23390693999999998,kg +783bc598-8cd0-36ac-a0db-128ebc9d0aa6,SESCO,II.1.1,La Pampa,AR-L,annual,2010,bioetanol combustion consumption by to the public,1.1524923,TJ,CH4,10.0,kg/TJ,11.524923000000001,kg +136e11ba-f869-343c-a756-d6e7ed9099bb,SESCO,II.1.1,La Pampa,AR-L,annual,2010,bioetanol combustion consumption by to the public,1.1524923,TJ,N2O,0.6,kg/TJ,0.69149538,kg +9dddde8a-a348-3abc-b709-5ccf20362147,SESCO,II.1.1,La Rioja,AR-F,annual,2010,bioetanol combustion consumption by to the public,0.40220063999999994,TJ,CH4,10.0,kg/TJ,4.0220063999999995,kg +4c06a56d-33e8-3aab-bf4b-49b488ab92d3,SESCO,II.1.1,La Rioja,AR-F,annual,2010,bioetanol combustion consumption by to the public,0.40220063999999994,TJ,N2O,0.6,kg/TJ,0.24132038399999994,kg +016ca97e-561e-3faa-9276-e95bd0269254,SESCO,II.1.1,Mendoza,AR-M,annual,2010,bioetanol combustion consumption by to the public,1.78561746,TJ,CH4,10.0,kg/TJ,17.856174600000003,kg +38697cb9-10cf-3097-a2d8-b24d89bcfe62,SESCO,II.1.1,Mendoza,AR-M,annual,2010,bioetanol combustion consumption by to the public,1.78561746,TJ,N2O,0.6,kg/TJ,1.071370476,kg +a1bac0b9-49ab-3d0a-ad4b-e4a0c05cb3f3,SESCO,II.1.1,Misiones,AR-N,annual,2010,bioetanol combustion consumption by to the public,1.4371003800000002,TJ,CH4,10.0,kg/TJ,14.371003800000002,kg +2bfaa556-599e-3636-be68-7875f01aeae8,SESCO,II.1.1,Misiones,AR-N,annual,2010,bioetanol combustion consumption by to the public,1.4371003800000002,TJ,N2O,0.6,kg/TJ,0.8622602280000001,kg +43154496-d2ad-3e8b-aa1a-cb901846f95b,SESCO,II.1.1,Neuquén,AR-Q,annual,2010,bioetanol combustion consumption by to the public,0.28759049999999997,TJ,CH4,10.0,kg/TJ,2.8759049999999995,kg +ff5b4118-be4f-3b2f-adb1-8b3f66ff2cfd,SESCO,II.1.1,Neuquén,AR-Q,annual,2010,bioetanol combustion consumption by to the public,0.28759049999999997,TJ,N2O,0.6,kg/TJ,0.17255429999999997,kg +84220893-c2d0-3942-bdae-59e262ebdd64,SESCO,II.1.1,Rio Negro,AR-R,annual,2010,bioetanol combustion consumption by to the public,0.55473012,TJ,CH4,10.0,kg/TJ,5.5473012,kg +8c963441-a73a-315b-91d0-c6ffe4f55bfd,SESCO,II.1.1,Rio Negro,AR-R,annual,2010,bioetanol combustion consumption by to the public,0.55473012,TJ,N2O,0.6,kg/TJ,0.332838072,kg +16d93af3-40b6-3c6f-8af2-e3ecead0b174,SESCO,II.1.1,Salta,AR-A,annual,2010,bioetanol combustion consumption by to the public,0.6544281599999999,TJ,CH4,10.0,kg/TJ,6.5442816,kg +2d6a70b7-0c6a-3167-ae81-eb589f1b56a9,SESCO,II.1.1,Salta,AR-A,annual,2010,bioetanol combustion consumption by to the public,0.6544281599999999,TJ,N2O,0.6,kg/TJ,0.3926568959999999,kg +52d2ec48-a6b7-33d3-8163-bc2f922a8fde,SESCO,II.1.1,San Juan,AR-J,annual,2010,bioetanol combustion consumption by to the public,0.28716444,TJ,CH4,10.0,kg/TJ,2.8716444,kg +671210a5-97c5-39ec-86b7-7d7f751aabf7,SESCO,II.1.1,San Juan,AR-J,annual,2010,bioetanol combustion consumption by to the public,0.28716444,TJ,N2O,0.6,kg/TJ,0.17229866400000002,kg +89fd85ae-ba2e-33b0-ac3f-3819b3dedaa4,SESCO,II.1.1,San Luis,AR-D,annual,2010,bioetanol combustion consumption by to the public,0.07626474,TJ,CH4,10.0,kg/TJ,0.7626474,kg +281be540-7fba-3a1b-9b8b-4297f7598266,SESCO,II.1.1,San Luis,AR-D,annual,2010,bioetanol combustion consumption by to the public,0.07626474,TJ,N2O,0.6,kg/TJ,0.045758844,kg +1c192d43-aad8-3f9d-a5d0-321833f690fb,SESCO,II.1.1,Santa Fe,AR-S,annual,2010,bioetanol combustion consumption by to the public,12.021282900000001,TJ,CH4,10.0,kg/TJ,120.21282900000001,kg +d158d089-fbcf-3bc1-9918-22debfe96c8c,SESCO,II.1.1,Santa Fe,AR-S,annual,2010,bioetanol combustion consumption by to the public,12.021282900000001,TJ,N2O,0.6,kg/TJ,7.212769740000001,kg +e37049db-5a7e-3428-9c67-760c3c32dfc7,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2010,bioetanol combustion consumption by to the public,1.0251003600000002,TJ,CH4,10.0,kg/TJ,10.2510036,kg +506f08fb-818a-3c25-8708-a07571c60fdc,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2010,bioetanol combustion consumption by to the public,1.0251003600000002,TJ,N2O,0.6,kg/TJ,0.615060216,kg +310abca6-4804-3491-bffd-bad6df68601c,SESCO,II.1.1,Tucuman,AR-T,annual,2010,bioetanol combustion consumption by to the public,1.5525626399999999,TJ,CH4,10.0,kg/TJ,15.525626399999998,kg +0932f040-2f72-3cea-8b66-7747a9edbbb2,SESCO,II.1.1,Tucuman,AR-T,annual,2010,bioetanol combustion consumption by to the public,1.5525626399999999,TJ,N2O,0.6,kg/TJ,0.9315375839999999,kg +4ec8676f-ce60-359c-aaaf-f9f32cc8356a,SESCO,II.2.1,Buenos Aires,AR-B,annual,2010,bioetanol combustion consumption by railway transport,2.322027,TJ,CH4,10.0,kg/TJ,23.22027,kg +9b08fc49-f046-33c7-91e3-721806139fa8,SESCO,II.2.1,Buenos Aires,AR-B,annual,2010,bioetanol combustion consumption by railway transport,2.322027,TJ,N2O,0.6,kg/TJ,1.3932162,kg +a0229d96-1b12-33a5-9375-6f4c4292bebb,SESCO,II.5.1,Buenos Aires,AR-B,annual,2010,bioetanol combustion consumption by agriculture machines,0.024711479999999997,TJ,CH4,10.0,kg/TJ,0.24711479999999997,kg +14d2d875-73cf-3dd7-9b00-d4b573bf6a89,SESCO,II.5.1,Buenos Aires,AR-B,annual,2010,bioetanol combustion consumption by agriculture machines,0.024711479999999997,TJ,N2O,0.6,kg/TJ,0.014826887999999998,kg +1aaab954-fc26-36bb-b9c8-36eed246af2d,SESCO,II.5.1,Entre Rios,AR-E,annual,2010,bioetanol combustion consumption by agriculture machines,0.01405998,TJ,CH4,10.0,kg/TJ,0.1405998,kg +c34cc1c0-f8db-3fa6-bdc0-a2c3c4968872,SESCO,II.5.1,Entre Rios,AR-E,annual,2010,bioetanol combustion consumption by agriculture machines,0.01405998,TJ,N2O,0.6,kg/TJ,0.008435988,kg +ccb922a9-167d-3bd0-bccd-81da4180cdcb,SESCO,II.5.1,Santa Fe,AR-S,annual,2010,bioetanol combustion consumption by agriculture machines,0.26458326,TJ,CH4,10.0,kg/TJ,2.6458326,kg +5c448d0f-5fa1-3fe7-be19-307bb37933b6,SESCO,II.5.1,Santa Fe,AR-S,annual,2010,bioetanol combustion consumption by agriculture machines,0.26458326,TJ,N2O,0.6,kg/TJ,0.158749956,kg +2f0d2c75-368a-3d0a-b532-80fcd0b2db18,SESCO,II.5.1,Santiago del Estero,AR-G,annual,2010,bioetanol combustion consumption by agriculture machines,0.0063909,TJ,CH4,10.0,kg/TJ,0.063909,kg +3467d2b7-b461-3d19-9875-71f3a0a39772,SESCO,II.5.1,Santiago del Estero,AR-G,annual,2010,bioetanol combustion consumption by agriculture machines,0.0063909,TJ,N2O,0.6,kg/TJ,0.0038345399999999996,kg +1e295685-a715-34fe-9200-728c5dce3f70,SESCO,II.5.1,Buenos Aires,AR-B,annual,2010,bioetanol combustion consumption by agriculture machines,0.0021303,TJ,CH4,10.0,kg/TJ,0.021303,kg +cc123cd9-4295-310e-84c6-cb17e9f9cf1d,SESCO,II.5.1,Buenos Aires,AR-B,annual,2010,bioetanol combustion consumption by agriculture machines,0.0021303,TJ,N2O,0.6,kg/TJ,0.0012781799999999999,kg +d28bb874-56e6-37dc-a921-e8a15d375905,SESCO,II.5.1,Entre Rios,AR-E,annual,2010,bioetanol combustion consumption by agriculture machines,0.00298242,TJ,CH4,10.0,kg/TJ,0.0298242,kg +73a018c9-85a0-3240-8f39-f7e7c834fe23,SESCO,II.5.1,Entre Rios,AR-E,annual,2010,bioetanol combustion consumption by agriculture machines,0.00298242,TJ,N2O,0.6,kg/TJ,0.001789452,kg +64060f89-5fd1-35fe-bb06-d23a5459a47e,SESCO,II.5.1,Santa Fe,AR-S,annual,2010,bioetanol combustion consumption by agriculture machines,0.02684178,TJ,CH4,10.0,kg/TJ,0.2684178,kg +cfab0b47-8a85-3143-b040-cf0587b9062c,SESCO,II.5.1,Santa Fe,AR-S,annual,2010,bioetanol combustion consumption by agriculture machines,0.02684178,TJ,N2O,0.6,kg/TJ,0.016105068,kg +a160ff0c-c719-3245-86f9-58c942833389,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,bioetanol combustion consumption by to the public,18.015094979999997,TJ,CH4,10.0,kg/TJ,180.15094979999998,kg +7ad5afe9-7d32-390e-ae1b-b25a49bc5317,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,bioetanol combustion consumption by to the public,18.015094979999997,TJ,N2O,0.6,kg/TJ,10.809056987999998,kg +bcb154bb-1c28-37b2-8ce8-506602c94a18,SESCO,II.1.1,Capital Federal,AR-C,annual,2010,bioetanol combustion consumption by to the public,0.66550572,TJ,CH4,10.0,kg/TJ,6.6550572,kg +c0a431d0-ef06-3e22-ad7c-b64dccd58329,SESCO,II.1.1,Capital Federal,AR-C,annual,2010,bioetanol combustion consumption by to the public,0.66550572,TJ,N2O,0.6,kg/TJ,0.39930343199999996,kg +323796f9-e930-37ea-be21-841ff1d78a10,SESCO,II.1.1,Catamarca,AR-K,annual,2010,bioetanol combustion consumption by to the public,0.005112719999999999,TJ,CH4,10.0,kg/TJ,0.0511272,kg +c3f54ff0-39a7-3853-9bdd-0378e9a317ab,SESCO,II.1.1,Catamarca,AR-K,annual,2010,bioetanol combustion consumption by to the public,0.005112719999999999,TJ,N2O,0.6,kg/TJ,0.0030676319999999994,kg +4bf4a568-5e8b-3c6e-a2ed-143ba612f08b,SESCO,II.1.1,Chaco,AR-H,annual,2010,bioetanol combustion consumption by to the public,0.09927198,TJ,CH4,10.0,kg/TJ,0.9927197999999999,kg +76dc4142-abff-3fd1-baf9-bc9a338e3aca,SESCO,II.1.1,Chaco,AR-H,annual,2010,bioetanol combustion consumption by to the public,0.09927198,TJ,N2O,0.6,kg/TJ,0.059563187999999996,kg +ec6d9b69-dc89-387d-bcda-0100db694b32,SESCO,II.1.1,Corrientes,AR-W,annual,2010,bioetanol combustion consumption by to the public,0.57560706,TJ,CH4,10.0,kg/TJ,5.756070599999999,kg +78ab093e-d5e9-37be-9601-f312fbdcd04b,SESCO,II.1.1,Corrientes,AR-W,annual,2010,bioetanol combustion consumption by to the public,0.57560706,TJ,N2O,0.6,kg/TJ,0.34536423599999994,kg +2cb9b57a-288d-3387-8b5c-72e0ac6976c2,SESCO,II.1.1,Entre Rios,AR-E,annual,2010,bioetanol combustion consumption by to the public,1.6168977,TJ,CH4,10.0,kg/TJ,16.168976999999998,kg +07eecea9-0a9e-362f-b8c5-cf7a797f43f6,SESCO,II.1.1,Entre Rios,AR-E,annual,2010,bioetanol combustion consumption by to the public,1.6168977,TJ,N2O,0.6,kg/TJ,0.97013862,kg +f44e96b1-bcf1-3efe-b734-c504eb9beda4,SESCO,II.1.1,Jujuy,AR-Y,annual,2010,bioetanol combustion consumption by to the public,1.3548708,TJ,CH4,10.0,kg/TJ,13.548708000000001,kg +828cd08a-7740-3f40-a419-76e4c00dcaa1,SESCO,II.1.1,Jujuy,AR-Y,annual,2010,bioetanol combustion consumption by to the public,1.3548708,TJ,N2O,0.6,kg/TJ,0.81292248,kg +24a3abde-3c39-389e-b370-79577b3efee7,SESCO,II.1.1,La Pampa,AR-L,annual,2010,bioetanol combustion consumption by to the public,1.04555124,TJ,CH4,10.0,kg/TJ,10.4555124,kg +cfe7109e-59df-3a77-aa06-bedcabe426e1,SESCO,II.1.1,La Pampa,AR-L,annual,2010,bioetanol combustion consumption by to the public,1.04555124,TJ,N2O,0.6,kg/TJ,0.627330744,kg +e18652b8-69fd-3801-800a-ac5f8b139226,SESCO,II.1.1,Misiones,AR-N,annual,2010,bioetanol combustion consumption by to the public,5.53068486,TJ,CH4,10.0,kg/TJ,55.3068486,kg +30fd3534-107d-3718-ad5e-27d83a9c2525,SESCO,II.1.1,Misiones,AR-N,annual,2010,bioetanol combustion consumption by to the public,5.53068486,TJ,N2O,0.6,kg/TJ,3.318410916,kg +68a84f97-5400-3bcb-82e3-9a71f679e39a,SESCO,II.1.1,Neuquén,AR-Q,annual,2010,bioetanol combustion consumption by to the public,0.6476112,TJ,CH4,10.0,kg/TJ,6.4761120000000005,kg +1504f74c-109a-3e82-ad81-4c40a14022bd,SESCO,II.1.1,Neuquén,AR-Q,annual,2010,bioetanol combustion consumption by to the public,0.6476112,TJ,N2O,0.6,kg/TJ,0.38856672000000003,kg +638a9795-2364-3ae3-aed8-06a2e263f2f9,SESCO,II.1.1,Rio Negro,AR-R,annual,2010,bioetanol combustion consumption by to the public,0.25094933999999997,TJ,CH4,10.0,kg/TJ,2.5094933999999998,kg +72c7e114-4a3d-37fb-81d4-ebf6f7cb683b,SESCO,II.1.1,Rio Negro,AR-R,annual,2010,bioetanol combustion consumption by to the public,0.25094933999999997,TJ,N2O,0.6,kg/TJ,0.15056960399999997,kg +e24bb7dd-9450-3c40-8835-09f55f853b24,SESCO,II.1.1,Salta,AR-A,annual,2010,bioetanol combustion consumption by to the public,0.7306929000000001,TJ,CH4,10.0,kg/TJ,7.306929000000001,kg +71cfca0b-fd1b-3cae-a099-791272628e3d,SESCO,II.1.1,Salta,AR-A,annual,2010,bioetanol combustion consumption by to the public,0.7306929000000001,TJ,N2O,0.6,kg/TJ,0.43841574000000005,kg +cbbe9006-715a-332f-b731-4f6e1323255a,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2010,bioetanol combustion consumption by to the public,0.07370837999999999,TJ,CH4,10.0,kg/TJ,0.7370838,kg +7c4af526-e57e-3346-b36f-29b6438ab418,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2010,bioetanol combustion consumption by to the public,0.07370837999999999,TJ,N2O,0.6,kg/TJ,0.04422502799999999,kg +6005321f-cd18-3201-bef1-890647ead284,SESCO,II.1.1,Santa Fe,AR-S,annual,2010,bioetanol combustion consumption by to the public,1.46394216,TJ,CH4,10.0,kg/TJ,14.6394216,kg +f4a69604-405e-3177-ba75-7b5a10c25dfb,SESCO,II.1.1,Santa Fe,AR-S,annual,2010,bioetanol combustion consumption by to the public,1.46394216,TJ,N2O,0.6,kg/TJ,0.878365296,kg +37ae45bf-6216-3440-a475-d1f35a1a87de,SESCO,II.1.1,Tucuman,AR-T,annual,2010,bioetanol combustion consumption by to the public,0.39240126000000003,TJ,CH4,10.0,kg/TJ,3.9240126,kg +1935beed-542f-38d2-beab-8bd13c38e41e,SESCO,II.1.1,Tucuman,AR-T,annual,2010,bioetanol combustion consumption by to the public,0.39240126000000003,TJ,N2O,0.6,kg/TJ,0.235440756,kg +8af7491f-f9c1-3124-84f6-2216d6606639,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,bioetanol combustion consumption by to the public,388.6348896,TJ,CH4,10.0,kg/TJ,3886.348896,kg +d6eb5f51-309d-30cc-88c5-53022b15525b,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,bioetanol combustion consumption by to the public,388.6348896,TJ,N2O,0.6,kg/TJ,233.18093376,kg +33878be2-bf87-3028-9d64-9e786f37507e,SESCO,II.1.1,Capital Federal,AR-C,annual,2010,bioetanol combustion consumption by to the public,90.48151007999999,TJ,CH4,10.0,kg/TJ,904.8151008,kg +787887a1-8261-3bf2-a8a1-0f47dfe5e086,SESCO,II.1.1,Capital Federal,AR-C,annual,2010,bioetanol combustion consumption by to the public,90.48151007999999,TJ,N2O,0.6,kg/TJ,54.288906047999994,kg +4ed68f7a-7ba2-30a2-945d-e10403949ebb,SESCO,II.1.1,Catamarca,AR-K,annual,2010,bioetanol combustion consumption by to the public,6.8463581399999995,TJ,CH4,10.0,kg/TJ,68.4635814,kg +dedc9669-b13d-3f90-896f-fd8f1ba42666,SESCO,II.1.1,Catamarca,AR-K,annual,2010,bioetanol combustion consumption by to the public,6.8463581399999995,TJ,N2O,0.6,kg/TJ,4.107814884,kg +9e5373af-556b-3869-87f0-8b2140778598,SESCO,II.1.1,Chaco,AR-H,annual,2010,bioetanol combustion consumption by to the public,23.58753372,TJ,CH4,10.0,kg/TJ,235.8753372,kg +6ac87592-6dbf-3a98-a5fa-835d080e81d0,SESCO,II.1.1,Chaco,AR-H,annual,2010,bioetanol combustion consumption by to the public,23.58753372,TJ,N2O,0.6,kg/TJ,14.152520231999999,kg +b7738ca6-9db2-36f5-8aa8-3d569e428e0a,SESCO,II.1.1,Chubut,AR-U,annual,2010,bioetanol combustion consumption by to the public,39.84640938,TJ,CH4,10.0,kg/TJ,398.4640938,kg +7cfac9c8-bf34-3275-a17d-ece2fad9eb23,SESCO,II.1.1,Chubut,AR-U,annual,2010,bioetanol combustion consumption by to the public,39.84640938,TJ,N2O,0.6,kg/TJ,23.907845627999997,kg +e94d2c16-4fda-3a26-ad3f-86d89967b907,SESCO,II.1.1,Corrientes,AR-W,annual,2010,bioetanol combustion consumption by to the public,25.9939206,TJ,CH4,10.0,kg/TJ,259.939206,kg +be6bdf09-e2d5-3656-8939-75d610b10117,SESCO,II.1.1,Corrientes,AR-W,annual,2010,bioetanol combustion consumption by to the public,25.9939206,TJ,N2O,0.6,kg/TJ,15.59635236,kg +58e19f34-0229-318a-a4e9-1f68b7f860a9,SESCO,II.1.1,Córdoba,AR-X,annual,2010,bioetanol combustion consumption by to the public,101.7452583,TJ,CH4,10.0,kg/TJ,1017.452583,kg +2fc23993-bec2-32e2-adb4-2a8d8ae405a3,SESCO,II.1.1,Córdoba,AR-X,annual,2010,bioetanol combustion consumption by to the public,101.7452583,TJ,N2O,0.6,kg/TJ,61.04715498,kg +7d72677f-36bc-35c4-a1c4-8abb27e4357e,SESCO,II.1.1,Entre Rios,AR-E,annual,2010,bioetanol combustion consumption by to the public,29.02874598,TJ,CH4,10.0,kg/TJ,290.2874598,kg +f23b2ce0-0b7e-34e5-9257-c156b2ba5c56,SESCO,II.1.1,Entre Rios,AR-E,annual,2010,bioetanol combustion consumption by to the public,29.02874598,TJ,N2O,0.6,kg/TJ,17.417247588,kg +b401c245-8adc-3a41-ba64-938924e6bad3,SESCO,II.1.1,Formosa,AR-P,annual,2010,bioetanol combustion consumption by to the public,10.0443645,TJ,CH4,10.0,kg/TJ,100.443645,kg +3f68988c-3509-330f-989d-0f445476c0b2,SESCO,II.1.1,Formosa,AR-P,annual,2010,bioetanol combustion consumption by to the public,10.0443645,TJ,N2O,0.6,kg/TJ,6.0266187,kg +5e38d123-d785-3d03-bfa0-7b48e3d63947,SESCO,II.1.1,Jujuy,AR-Y,annual,2010,bioetanol combustion consumption by to the public,10.11849894,TJ,CH4,10.0,kg/TJ,101.1849894,kg +474e8abf-0b17-3a19-9086-c26b085ab52a,SESCO,II.1.1,Jujuy,AR-Y,annual,2010,bioetanol combustion consumption by to the public,10.11849894,TJ,N2O,0.6,kg/TJ,6.071099364,kg +d4c63937-8e22-38aa-9d1b-dc7ae3d53da4,SESCO,II.1.1,La Pampa,AR-L,annual,2010,bioetanol combustion consumption by to the public,16.03519416,TJ,CH4,10.0,kg/TJ,160.3519416,kg +8e3a1a1e-285e-3e79-93fd-67fe8fe636d2,SESCO,II.1.1,La Pampa,AR-L,annual,2010,bioetanol combustion consumption by to the public,16.03519416,TJ,N2O,0.6,kg/TJ,9.621116495999999,kg +1a9b6ae7-c52f-3b0d-a343-0054182986f9,SESCO,II.1.1,La Rioja,AR-F,annual,2010,bioetanol combustion consumption by to the public,9.68519592,TJ,CH4,10.0,kg/TJ,96.8519592,kg +e2257b01-dade-3615-938d-ac2904d24d87,SESCO,II.1.1,La Rioja,AR-F,annual,2010,bioetanol combustion consumption by to the public,9.68519592,TJ,N2O,0.6,kg/TJ,5.811117552,kg +0d65ec23-0013-3d5e-a51e-30b41691e226,SESCO,II.1.1,Mendoza,AR-M,annual,2010,bioetanol combustion consumption by to the public,49.26020508,TJ,CH4,10.0,kg/TJ,492.6020508,kg +8c4038ed-a3c5-3c76-ac6e-102abd477de6,SESCO,II.1.1,Mendoza,AR-M,annual,2010,bioetanol combustion consumption by to the public,49.26020508,TJ,N2O,0.6,kg/TJ,29.556123047999996,kg +dc14a7c9-56dc-33c4-9048-a86ac6a31dae,SESCO,II.1.1,Misiones,AR-N,annual,2010,bioetanol combustion consumption by to the public,30.6805806,TJ,CH4,10.0,kg/TJ,306.80580599999996,kg +c7cd9428-5fc6-373e-bc24-949a913aaf03,SESCO,II.1.1,Misiones,AR-N,annual,2010,bioetanol combustion consumption by to the public,30.6805806,TJ,N2O,0.6,kg/TJ,18.408348359999998,kg +faad3f92-f72e-3cdb-87d8-799ef2aef1d3,SESCO,II.1.1,Neuquén,AR-Q,annual,2010,bioetanol combustion consumption by to the public,30.84631794,TJ,CH4,10.0,kg/TJ,308.4631794,kg +6b33dd23-1439-3829-9513-7bf57b6afb1f,SESCO,II.1.1,Neuquén,AR-Q,annual,2010,bioetanol combustion consumption by to the public,30.84631794,TJ,N2O,0.6,kg/TJ,18.507790764,kg +c9ea0561-2943-393a-931b-93a59bb02b72,SESCO,II.1.1,Rio Negro,AR-R,annual,2010,bioetanol combustion consumption by to the public,30.415997339999997,TJ,CH4,10.0,kg/TJ,304.15997339999996,kg +c9fd160e-753a-3093-9a61-bd0a2024ae49,SESCO,II.1.1,Rio Negro,AR-R,annual,2010,bioetanol combustion consumption by to the public,30.415997339999997,TJ,N2O,0.6,kg/TJ,18.249598403999997,kg +e28f2e03-47ae-318e-8c34-64195f59cdc8,SESCO,II.1.1,Salta,AR-A,annual,2010,bioetanol combustion consumption by to the public,23.6292876,TJ,CH4,10.0,kg/TJ,236.292876,kg +f6e64963-5aee-3478-bae5-bcc9d9adfd3e,SESCO,II.1.1,Salta,AR-A,annual,2010,bioetanol combustion consumption by to the public,23.6292876,TJ,N2O,0.6,kg/TJ,14.17757256,kg +2c600ec7-1e6b-3a6a-aa80-01dd9197e929,SESCO,II.1.1,San Juan,AR-J,annual,2010,bioetanol combustion consumption by to the public,15.286180680000001,TJ,CH4,10.0,kg/TJ,152.8618068,kg +0d02afbf-7000-3f1c-a88c-fffcd26ab8d7,SESCO,II.1.1,San Juan,AR-J,annual,2010,bioetanol combustion consumption by to the public,15.286180680000001,TJ,N2O,0.6,kg/TJ,9.171708408,kg +3bebc00d-57b4-36a9-a7fa-86b38c536ae5,SESCO,II.1.1,San Luis,AR-D,annual,2010,bioetanol combustion consumption by to the public,12.91728708,TJ,CH4,10.0,kg/TJ,129.1728708,kg +14e3e666-749f-3f42-b054-a991be98a63f,SESCO,II.1.1,San Luis,AR-D,annual,2010,bioetanol combustion consumption by to the public,12.91728708,TJ,N2O,0.6,kg/TJ,7.750372248,kg +09a20611-aca0-3083-8123-7d9f7ccb1f18,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2010,bioetanol combustion consumption by to the public,27.172828619999997,TJ,CH4,10.0,kg/TJ,271.72828619999996,kg +29ae1dbe-422b-3764-9090-9d30f7232bed,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2010,bioetanol combustion consumption by to the public,27.172828619999997,TJ,N2O,0.6,kg/TJ,16.303697171999996,kg +4c85f0cc-aa7a-3e11-beb9-f3cdcb44a7b1,SESCO,II.1.1,Santa Fe,AR-S,annual,2010,bioetanol combustion consumption by to the public,71.50224132,TJ,CH4,10.0,kg/TJ,715.0224132,kg +f0e53455-5349-3c90-8c1b-83286661f9d3,SESCO,II.1.1,Santa Fe,AR-S,annual,2010,bioetanol combustion consumption by to the public,71.50224132,TJ,N2O,0.6,kg/TJ,42.901344791999996,kg +8a1783a9-8205-3ad7-8ac4-50537dc634ad,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2010,bioetanol combustion consumption by to the public,10.90244934,TJ,CH4,10.0,kg/TJ,109.02449340000001,kg +da8ae917-3d26-3f60-b7b3-032bf03b2f02,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2010,bioetanol combustion consumption by to the public,10.90244934,TJ,N2O,0.6,kg/TJ,6.541469604,kg +f03f6845-5f9b-350b-8a36-b69d44a3307f,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2010,bioetanol combustion consumption by to the public,19.58555214,TJ,CH4,10.0,kg/TJ,195.85552140000001,kg +e0c6f62f-4c42-3b7d-a462-3959876310e2,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2010,bioetanol combustion consumption by to the public,19.58555214,TJ,N2O,0.6,kg/TJ,11.751331284,kg +586b9032-5bd0-3345-a98a-5f36bfef61f1,SESCO,II.1.1,Tucuman,AR-T,annual,2010,bioetanol combustion consumption by to the public,21.2071365,TJ,CH4,10.0,kg/TJ,212.07136500000001,kg +fafdeebd-83a7-3bcb-a669-b2a35bb41638,SESCO,II.1.1,Tucuman,AR-T,annual,2010,bioetanol combustion consumption by to the public,21.2071365,TJ,N2O,0.6,kg/TJ,12.7242819,kg +702e7a26-3096-30fd-b326-01315dbe4684,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,bioetanol combustion consumption by to the public,132.68658761999998,TJ,CH4,10.0,kg/TJ,1326.8658761999998,kg +9c526ead-cfa7-3133-ad7a-9d239abc3d99,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,bioetanol combustion consumption by to the public,132.68658761999998,TJ,N2O,0.6,kg/TJ,79.61195257199999,kg +5fef312a-5e61-3739-8b6c-b7390bfc77db,SESCO,II.1.1,Capital Federal,AR-C,annual,2010,bioetanol combustion consumption by to the public,38.89970406,TJ,CH4,10.0,kg/TJ,388.9970406,kg +6e4c56fd-3583-34e2-87c3-2b4710e48957,SESCO,II.1.1,Capital Federal,AR-C,annual,2010,bioetanol combustion consumption by to the public,38.89970406,TJ,N2O,0.6,kg/TJ,23.339822436,kg +caf5821c-4543-37a5-a21d-ac1801c16bc6,SESCO,II.1.1,Catamarca,AR-K,annual,2010,bioetanol combustion consumption by to the public,1.5994292399999999,TJ,CH4,10.0,kg/TJ,15.994292399999999,kg +6a3981ce-37b3-3d5b-bf0c-c75e5f080c63,SESCO,II.1.1,Catamarca,AR-K,annual,2010,bioetanol combustion consumption by to the public,1.5994292399999999,TJ,N2O,0.6,kg/TJ,0.9596575439999999,kg +060ffbda-83d9-3378-be9e-e55faa7f7c7f,SESCO,II.1.1,Chaco,AR-H,annual,2010,bioetanol combustion consumption by to the public,5.32276758,TJ,CH4,10.0,kg/TJ,53.2276758,kg +9a262ce5-3928-32b7-b85f-adef9bb3f7f5,SESCO,II.1.1,Chaco,AR-H,annual,2010,bioetanol combustion consumption by to the public,5.32276758,TJ,N2O,0.6,kg/TJ,3.193660548,kg +ec3f5d8c-2b67-38b1-ba62-2b75f9d2e460,SESCO,II.1.1,Chubut,AR-U,annual,2010,bioetanol combustion consumption by to the public,9.1006416,TJ,CH4,10.0,kg/TJ,91.006416,kg +9b33a2ea-cc5e-39e2-9de2-4aca5a12c62d,SESCO,II.1.1,Chubut,AR-U,annual,2010,bioetanol combustion consumption by to the public,9.1006416,TJ,N2O,0.6,kg/TJ,5.46038496,kg +1f39f29e-e406-3386-a79d-734f2438bcef,SESCO,II.1.1,Corrientes,AR-W,annual,2010,bioetanol combustion consumption by to the public,4.0590736199999995,TJ,CH4,10.0,kg/TJ,40.590736199999995,kg +0147cf5a-e0bf-3773-af26-5335d55715e0,SESCO,II.1.1,Corrientes,AR-W,annual,2010,bioetanol combustion consumption by to the public,4.0590736199999995,TJ,N2O,0.6,kg/TJ,2.4354441719999995,kg +5b4cdc57-a757-3f32-aed9-510431381978,SESCO,II.1.1,Córdoba,AR-X,annual,2010,bioetanol combustion consumption by to the public,29.8646757,TJ,CH4,10.0,kg/TJ,298.646757,kg +3dcec0fd-7c00-3805-89f6-7b8e270866d3,SESCO,II.1.1,Córdoba,AR-X,annual,2010,bioetanol combustion consumption by to the public,29.8646757,TJ,N2O,0.6,kg/TJ,17.918805419999998,kg +2f720fdc-53c2-38d0-aa3c-564432a51f82,SESCO,II.1.1,Entre Rios,AR-E,annual,2010,bioetanol combustion consumption by to the public,9.21652992,TJ,CH4,10.0,kg/TJ,92.16529919999999,kg +fdc67dcc-3820-32c2-84b2-fb47f6d9651d,SESCO,II.1.1,Entre Rios,AR-E,annual,2010,bioetanol combustion consumption by to the public,9.21652992,TJ,N2O,0.6,kg/TJ,5.529917951999999,kg +68187684-9c86-3b40-ad7d-b46ceb719b44,SESCO,II.1.1,Formosa,AR-P,annual,2010,bioetanol combustion consumption by to the public,1.7873217000000001,TJ,CH4,10.0,kg/TJ,17.873217,kg +dcc9deeb-f9b9-3049-af98-a0a37ded24c0,SESCO,II.1.1,Formosa,AR-P,annual,2010,bioetanol combustion consumption by to the public,1.7873217000000001,TJ,N2O,0.6,kg/TJ,1.07239302,kg +e64fb58d-abd1-31b0-84f8-61a6f6b4d8a5,SESCO,II.1.1,Jujuy,AR-Y,annual,2010,bioetanol combustion consumption by to the public,1.8214065,TJ,CH4,10.0,kg/TJ,18.214064999999998,kg +8e5d0730-b5bf-348a-8608-f40a74aa031e,SESCO,II.1.1,Jujuy,AR-Y,annual,2010,bioetanol combustion consumption by to the public,1.8214065,TJ,N2O,0.6,kg/TJ,1.0928438999999999,kg +3eb5248e-d671-35f6-acf6-a4fdf18f546f,SESCO,II.1.1,La Pampa,AR-L,annual,2010,bioetanol combustion consumption by to the public,5.37432084,TJ,CH4,10.0,kg/TJ,53.7432084,kg +a03477e7-f13c-3a00-995b-31a96b8d842f,SESCO,II.1.1,La Pampa,AR-L,annual,2010,bioetanol combustion consumption by to the public,5.37432084,TJ,N2O,0.6,kg/TJ,3.224592504,kg +9972b516-1c42-3de4-a2cf-be7b01d84524,SESCO,II.1.1,La Rioja,AR-F,annual,2010,bioetanol combustion consumption by to the public,2.15415936,TJ,CH4,10.0,kg/TJ,21.5415936,kg +99679d7e-8ae3-37e1-a0bd-63c68cc79cd2,SESCO,II.1.1,La Rioja,AR-F,annual,2010,bioetanol combustion consumption by to the public,2.15415936,TJ,N2O,0.6,kg/TJ,1.2924956159999998,kg +4d8626ee-8289-37ce-95f4-f38479167546,SESCO,II.1.1,Mendoza,AR-M,annual,2010,bioetanol combustion consumption by to the public,13.604947919999999,TJ,CH4,10.0,kg/TJ,136.04947919999998,kg +9cdc203a-c2f9-3e3d-8705-a3d15cdbe16e,SESCO,II.1.1,Mendoza,AR-M,annual,2010,bioetanol combustion consumption by to the public,13.604947919999999,TJ,N2O,0.6,kg/TJ,8.162968752,kg +6f1f4ab9-4dc4-37b5-b05f-f16249c94e88,SESCO,II.1.1,Misiones,AR-N,annual,2010,bioetanol combustion consumption by to the public,5.31680274,TJ,CH4,10.0,kg/TJ,53.1680274,kg +5607b416-3b15-3d63-b754-a208bbce370e,SESCO,II.1.1,Misiones,AR-N,annual,2010,bioetanol combustion consumption by to the public,5.31680274,TJ,N2O,0.6,kg/TJ,3.1900816439999997,kg +a2fc4e84-973f-3cc0-9cbb-e6ee6615668b,SESCO,II.1.1,Neuquén,AR-Q,annual,2010,bioetanol combustion consumption by to the public,6.76199826,TJ,CH4,10.0,kg/TJ,67.6199826,kg +2a64058f-ac0e-37d2-a05c-bbd288e74018,SESCO,II.1.1,Neuquén,AR-Q,annual,2010,bioetanol combustion consumption by to the public,6.76199826,TJ,N2O,0.6,kg/TJ,4.057198956,kg +1f364e1a-62d9-3dd5-a5d3-c17a4e80fcea,SESCO,II.1.1,Rio Negro,AR-R,annual,2010,bioetanol combustion consumption by to the public,6.95926404,TJ,CH4,10.0,kg/TJ,69.5926404,kg +cf89d79f-b711-3ac8-b6c3-c2489506f3e2,SESCO,II.1.1,Rio Negro,AR-R,annual,2010,bioetanol combustion consumption by to the public,6.95926404,TJ,N2O,0.6,kg/TJ,4.175558424,kg +1b3936da-011e-3e15-9170-de2e82b88c14,SESCO,II.1.1,Salta,AR-A,annual,2010,bioetanol combustion consumption by to the public,5.1127199999999995,TJ,CH4,10.0,kg/TJ,51.127199999999995,kg +3d131eda-2e14-31d9-b307-558eb9e0514d,SESCO,II.1.1,Salta,AR-A,annual,2010,bioetanol combustion consumption by to the public,5.1127199999999995,TJ,N2O,0.6,kg/TJ,3.0676319999999997,kg +fe69b7ad-c7a0-31da-a8d6-32759fb614cc,SESCO,II.1.1,San Juan,AR-J,annual,2010,bioetanol combustion consumption by to the public,4.18220496,TJ,CH4,10.0,kg/TJ,41.8220496,kg +7362796c-4467-3d59-8251-fde3d7d2cda3,SESCO,II.1.1,San Juan,AR-J,annual,2010,bioetanol combustion consumption by to the public,4.18220496,TJ,N2O,0.6,kg/TJ,2.509322976,kg +0a88dc0f-ca66-366b-baf0-16e52b821b06,SESCO,II.1.1,San Luis,AR-D,annual,2010,bioetanol combustion consumption by to the public,4.2533569799999995,TJ,CH4,10.0,kg/TJ,42.533569799999995,kg +1e5a9b74-f525-390f-87d0-1ed196d8958e,SESCO,II.1.1,San Luis,AR-D,annual,2010,bioetanol combustion consumption by to the public,4.2533569799999995,TJ,N2O,0.6,kg/TJ,2.552014188,kg +09313ec0-2210-3cd1-8efd-24a67712e290,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2010,bioetanol combustion consumption by to the public,4.91332392,TJ,CH4,10.0,kg/TJ,49.1332392,kg +fcdcca6e-b343-3902-9f90-b3a76a61a70c,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2010,bioetanol combustion consumption by to the public,4.91332392,TJ,N2O,0.6,kg/TJ,2.947994352,kg +87802275-b588-3753-a913-1b1e195bd057,SESCO,II.1.1,Santa Fe,AR-S,annual,2010,bioetanol combustion consumption by to the public,25.81966206,TJ,CH4,10.0,kg/TJ,258.19662059999996,kg +e6d0cea5-ae7b-39b7-8736-855ba915e97d,SESCO,II.1.1,Santa Fe,AR-S,annual,2010,bioetanol combustion consumption by to the public,25.81966206,TJ,N2O,0.6,kg/TJ,15.491797235999998,kg +a660cd0f-5784-30ec-bd9b-21d808419d8f,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2010,bioetanol combustion consumption by to the public,3.83965272,TJ,CH4,10.0,kg/TJ,38.3965272,kg +144390bd-7f5f-3e42-88ac-6ba1caef874a,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2010,bioetanol combustion consumption by to the public,3.83965272,TJ,N2O,0.6,kg/TJ,2.303791632,kg +ee3a790b-f169-3b37-aced-ed97d90e112e,SESCO,II.1.1,Tucuman,AR-T,annual,2010,bioetanol combustion consumption by to the public,5.0424201,TJ,CH4,10.0,kg/TJ,50.424201000000004,kg +1fd40669-30c0-36b5-a62a-78009914a75e,SESCO,II.1.1,Tucuman,AR-T,annual,2010,bioetanol combustion consumption by to the public,5.0424201,TJ,N2O,0.6,kg/TJ,3.02545206,kg +14b971f6-131b-37be-b5d4-3f8a7fccd29e,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,bioetanol combustion consumption by freight transport,0.0034084799999999998,TJ,CH4,10.0,kg/TJ,0.0340848,kg +11a7e0fd-16ec-30c5-94ee-babdb965aa1a,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,bioetanol combustion consumption by freight transport,0.0034084799999999998,TJ,N2O,0.6,kg/TJ,0.0020450879999999996,kg +1f5cdf5d-e555-3ac0-ae02-9196af385b24,SESCO,II.1.1,Santa Fe,AR-S,annual,2010,bioetanol combustion consumption by freight transport,0.0008521199999999999,TJ,CH4,10.0,kg/TJ,0.0085212,kg +47c4abcf-dc07-392d-b250-cc3308107f9d,SESCO,II.1.1,Santa Fe,AR-S,annual,2010,bioetanol combustion consumption by freight transport,0.0008521199999999999,TJ,N2O,0.6,kg/TJ,0.0005112719999999999,kg +041999e1-48cf-3c4a-9500-99d29119f6db,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,bioetanol combustion consumption by freight transport,1.46522034,TJ,CH4,10.0,kg/TJ,14.6522034,kg +f3fb6ab5-d364-30bc-a598-757309a43f5c,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,bioetanol combustion consumption by freight transport,1.46522034,TJ,N2O,0.6,kg/TJ,0.8791322039999999,kg +3211fb59-d13c-3d95-8887-d89f1745eb16,SESCO,II.1.1,Capital Federal,AR-C,annual,2010,bioetanol combustion consumption by freight transport,0.25861842,TJ,CH4,10.0,kg/TJ,2.5861842,kg +f379fff9-14bb-36ac-8067-68cb61eaef3e,SESCO,II.1.1,Capital Federal,AR-C,annual,2010,bioetanol combustion consumption by freight transport,0.25861842,TJ,N2O,0.6,kg/TJ,0.155171052,kg +8949e57c-ddf0-33cf-81cd-f813d3c49e41,SESCO,II.1.1,Catamarca,AR-K,annual,2010,bioetanol combustion consumption by freight transport,0.0017042399999999999,TJ,CH4,10.0,kg/TJ,0.0170424,kg +94fd4943-c564-3130-93fa-b3ceefc8909e,SESCO,II.1.1,Catamarca,AR-K,annual,2010,bioetanol combustion consumption by freight transport,0.0017042399999999999,TJ,N2O,0.6,kg/TJ,0.0010225439999999998,kg +12a84214-72b7-329b-9d2d-73fb5aaf71a3,SESCO,II.1.1,Chaco,AR-H,annual,2010,bioetanol combustion consumption by freight transport,0.042606,TJ,CH4,10.0,kg/TJ,0.42606,kg +a86bdc6d-a7f7-3033-a9ed-285f9f3450a9,SESCO,II.1.1,Chaco,AR-H,annual,2010,bioetanol combustion consumption by freight transport,0.042606,TJ,N2O,0.6,kg/TJ,0.0255636,kg +2b818e3b-28a7-301e-a813-d83a348eb07c,SESCO,II.1.1,Chubut,AR-U,annual,2010,bioetanol combustion consumption by freight transport,0.05283144,TJ,CH4,10.0,kg/TJ,0.5283144,kg +865c0db2-524e-3b28-ad2d-ec4c75be2b2e,SESCO,II.1.1,Chubut,AR-U,annual,2010,bioetanol combustion consumption by freight transport,0.05283144,TJ,N2O,0.6,kg/TJ,0.031698864,kg +427cf55f-2d3d-3fbc-ac46-4cf70b6c3425,SESCO,II.1.1,Corrientes,AR-W,annual,2010,bioetanol combustion consumption by freight transport,0.05410962,TJ,CH4,10.0,kg/TJ,0.5410961999999999,kg +752e07b2-a69e-3f28-8d46-05f3d01474f3,SESCO,II.1.1,Corrientes,AR-W,annual,2010,bioetanol combustion consumption by freight transport,0.05410962,TJ,N2O,0.6,kg/TJ,0.032465772,kg +05ee04c4-010a-306d-9780-7476b62d324e,SESCO,II.1.1,Córdoba,AR-X,annual,2010,bioetanol combustion consumption by freight transport,0.1874664,TJ,CH4,10.0,kg/TJ,1.874664,kg +d974d87c-5dad-3d51-ba36-6ab81ed24456,SESCO,II.1.1,Córdoba,AR-X,annual,2010,bioetanol combustion consumption by freight transport,0.1874664,TJ,N2O,0.6,kg/TJ,0.11247984,kg +9c159f83-f341-371b-806b-e03d9576c6e5,SESCO,II.1.1,Entre Rios,AR-E,annual,2010,bioetanol combustion consumption by freight transport,0.07413444,TJ,CH4,10.0,kg/TJ,0.7413444,kg +906e299e-8615-391d-8783-b7558432547b,SESCO,II.1.1,Entre Rios,AR-E,annual,2010,bioetanol combustion consumption by freight transport,0.07413444,TJ,N2O,0.6,kg/TJ,0.044480663999999996,kg +138efeef-30e0-3405-99e9-001c2d9ea3fa,SESCO,II.1.1,Formosa,AR-P,annual,2010,bioetanol combustion consumption by freight transport,0.0034084799999999998,TJ,CH4,10.0,kg/TJ,0.0340848,kg +528db194-aea9-31b5-834e-2e4418982aca,SESCO,II.1.1,Formosa,AR-P,annual,2010,bioetanol combustion consumption by freight transport,0.0034084799999999998,TJ,N2O,0.6,kg/TJ,0.0020450879999999996,kg +0540e00b-13ac-3870-b104-adcf3ba7cd37,SESCO,II.1.1,Jujuy,AR-Y,annual,2010,bioetanol combustion consumption by freight transport,0.03536298,TJ,CH4,10.0,kg/TJ,0.3536298,kg +65242698-30a1-3450-9a9e-2b2449905bd9,SESCO,II.1.1,Jujuy,AR-Y,annual,2010,bioetanol combustion consumption by freight transport,0.03536298,TJ,N2O,0.6,kg/TJ,0.021217788,kg +ad9af43f-4bae-3ba8-b89c-9f2004a62aef,SESCO,II.1.1,La Pampa,AR-L,annual,2010,bioetanol combustion consumption by freight transport,0.02385936,TJ,CH4,10.0,kg/TJ,0.2385936,kg +3077fb3f-0661-346f-8e50-e505a8420a3d,SESCO,II.1.1,La Pampa,AR-L,annual,2010,bioetanol combustion consumption by freight transport,0.02385936,TJ,N2O,0.6,kg/TJ,0.014315616,kg +f17f807e-507a-30bd-9aab-763cbdcc922f,SESCO,II.1.1,La Rioja,AR-F,annual,2010,bioetanol combustion consumption by freight transport,0.014912100000000001,TJ,CH4,10.0,kg/TJ,0.149121,kg +69434b2d-87b5-3c77-b4cd-61134943afb2,SESCO,II.1.1,La Rioja,AR-F,annual,2010,bioetanol combustion consumption by freight transport,0.014912100000000001,TJ,N2O,0.6,kg/TJ,0.00894726,kg +752ee234-3553-3cd8-bd85-82e686575b03,SESCO,II.1.1,Mendoza,AR-M,annual,2010,bioetanol combustion consumption by freight transport,0.19470942,TJ,CH4,10.0,kg/TJ,1.9470942,kg +34bfc8be-2fc4-38f3-91d1-e2f5f5ca99bc,SESCO,II.1.1,Mendoza,AR-M,annual,2010,bioetanol combustion consumption by freight transport,0.19470942,TJ,N2O,0.6,kg/TJ,0.11682565199999999,kg +9a0bf6cb-8ef2-3120-ad5f-11a81f0c8abe,SESCO,II.1.1,Misiones,AR-N,annual,2010,bioetanol combustion consumption by freight transport,0.05155326,TJ,CH4,10.0,kg/TJ,0.5155326,kg +f1e18b95-c3f0-3bf7-8d8e-5a49af1f4f9a,SESCO,II.1.1,Misiones,AR-N,annual,2010,bioetanol combustion consumption by freight transport,0.05155326,TJ,N2O,0.6,kg/TJ,0.030931955999999997,kg +713f132f-c76b-3ca8-9405-d38892221b5b,SESCO,II.1.1,Neuquén,AR-Q,annual,2010,bioetanol combustion consumption by freight transport,0.060926579999999994,TJ,CH4,10.0,kg/TJ,0.6092658,kg +60f164b9-b705-3fc4-b2c7-d1add34e4529,SESCO,II.1.1,Neuquén,AR-Q,annual,2010,bioetanol combustion consumption by freight transport,0.060926579999999994,TJ,N2O,0.6,kg/TJ,0.036555948,kg +a556b93b-2c79-3437-95a6-9f413197f1ef,SESCO,II.1.1,Rio Negro,AR-R,annual,2010,bioetanol combustion consumption by freight transport,0.042606,TJ,CH4,10.0,kg/TJ,0.42606,kg +51e01563-1726-3cfa-a382-1c4e7e69e7ce,SESCO,II.1.1,Rio Negro,AR-R,annual,2010,bioetanol combustion consumption by freight transport,0.042606,TJ,N2O,0.6,kg/TJ,0.0255636,kg +be46db31-d9f2-3ab8-af6b-0a13921d7662,SESCO,II.1.1,Salta,AR-A,annual,2010,bioetanol combustion consumption by freight transport,0.037919339999999996,TJ,CH4,10.0,kg/TJ,0.37919339999999996,kg +7f505e24-ba49-349a-b9c5-eeb9cab1fb19,SESCO,II.1.1,Salta,AR-A,annual,2010,bioetanol combustion consumption by freight transport,0.037919339999999996,TJ,N2O,0.6,kg/TJ,0.022751603999999998,kg +f51b5941-fccd-3dac-805b-f7eaaa26482a,SESCO,II.1.1,San Juan,AR-J,annual,2010,bioetanol combustion consumption by freight transport,0.015338159999999998,TJ,CH4,10.0,kg/TJ,0.15338159999999998,kg +f1b2c376-ce7f-3898-bfaf-03891565e4ba,SESCO,II.1.1,San Juan,AR-J,annual,2010,bioetanol combustion consumption by freight transport,0.015338159999999998,TJ,N2O,0.6,kg/TJ,0.009202895999999999,kg +f3fc34cf-cfcf-3e38-af93-21554675cce2,SESCO,II.1.1,San Luis,AR-D,annual,2010,bioetanol combustion consumption by freight transport,0.03493692,TJ,CH4,10.0,kg/TJ,0.34936920000000005,kg +75d6f678-70c6-3f35-9443-a2ad5fa12b77,SESCO,II.1.1,San Luis,AR-D,annual,2010,bioetanol combustion consumption by freight transport,0.03493692,TJ,N2O,0.6,kg/TJ,0.020962152,kg +f7f15152-ba41-377f-89aa-6542d1aacc1c,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2010,bioetanol combustion consumption by freight transport,0.027267839999999998,TJ,CH4,10.0,kg/TJ,0.2726784,kg +d3f80c1a-2077-3175-9f76-f8df9fc10daf,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2010,bioetanol combustion consumption by freight transport,0.027267839999999998,TJ,N2O,0.6,kg/TJ,0.016360703999999997,kg +100bdcce-4a51-3019-b65c-c929b6370b3c,SESCO,II.1.1,Santa Fe,AR-S,annual,2010,bioetanol combustion consumption by freight transport,0.29142503999999997,TJ,CH4,10.0,kg/TJ,2.9142504,kg +923ce6b3-5004-3f93-ba45-1760ca9cae9c,SESCO,II.1.1,Santa Fe,AR-S,annual,2010,bioetanol combustion consumption by freight transport,0.29142503999999997,TJ,N2O,0.6,kg/TJ,0.17485502399999997,kg +9f3785c0-2af9-38f6-8a99-b7226cbdf0d5,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2010,bioetanol combustion consumption by freight transport,0.02002482,TJ,CH4,10.0,kg/TJ,0.2002482,kg +fbdf568f-205b-39ff-aa7c-e1ca09868ca0,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2010,bioetanol combustion consumption by freight transport,0.02002482,TJ,N2O,0.6,kg/TJ,0.012014892,kg +50759ff3-10af-331c-8d17-f4de8e8f6989,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2010,bioetanol combustion consumption by freight transport,0.008095139999999999,TJ,CH4,10.0,kg/TJ,0.08095139999999999,kg +ae4f6268-f7f4-336d-9887-a9b13261a695,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2010,bioetanol combustion consumption by freight transport,0.008095139999999999,TJ,N2O,0.6,kg/TJ,0.004857083999999999,kg +dd702769-aeae-3a66-9cf1-06dc3b299b54,SESCO,II.1.1,Tucuman,AR-T,annual,2010,bioetanol combustion consumption by freight transport,0.04516236,TJ,CH4,10.0,kg/TJ,0.4516236,kg +45e66dd9-8dc2-3e5a-aa8e-9128bde9144c,SESCO,II.1.1,Tucuman,AR-T,annual,2010,bioetanol combustion consumption by freight transport,0.04516236,TJ,N2O,0.6,kg/TJ,0.027097416,kg +24e0bebc-fafe-3b8d-8984-972b13cc3f6c,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,bioetanol combustion consumption by freight transport,1.8644385599999997,TJ,CH4,10.0,kg/TJ,18.644385599999996,kg +8ba7341b-84b0-36ce-88b9-308c0a4151d3,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,bioetanol combustion consumption by freight transport,1.8644385599999997,TJ,N2O,0.6,kg/TJ,1.118663136,kg +4afbc446-9f36-3f98-97f8-93966a52b1d1,SESCO,II.1.1,Capital Federal,AR-C,annual,2010,bioetanol combustion consumption by freight transport,0.51638472,TJ,CH4,10.0,kg/TJ,5.1638472,kg +202d45a9-6a6c-337f-88e8-7fb640de911e,SESCO,II.1.1,Capital Federal,AR-C,annual,2010,bioetanol combustion consumption by freight transport,0.51638472,TJ,N2O,0.6,kg/TJ,0.309830832,kg +603e397a-7c16-3a6d-99ea-4d89470047fa,SESCO,II.1.1,Chaco,AR-H,annual,2010,bioetanol combustion consumption by freight transport,0.04303206,TJ,CH4,10.0,kg/TJ,0.43032059999999994,kg +150b450b-8774-342b-be60-cc467890e8bf,SESCO,II.1.1,Chaco,AR-H,annual,2010,bioetanol combustion consumption by freight transport,0.04303206,TJ,N2O,0.6,kg/TJ,0.025819236,kg +fdceb69d-1f1e-351a-a69e-b93ca3bdd21d,SESCO,II.1.1,Chubut,AR-U,annual,2010,bioetanol combustion consumption by freight transport,0.03919752,TJ,CH4,10.0,kg/TJ,0.39197519999999997,kg +42877eb7-58fe-3e92-9832-344245b092a9,SESCO,II.1.1,Chubut,AR-U,annual,2010,bioetanol combustion consumption by freight transport,0.03919752,TJ,N2O,0.6,kg/TJ,0.023518512,kg +07f1c278-9c30-3e95-b273-5973769ad4ff,SESCO,II.1.1,Corrientes,AR-W,annual,2010,bioetanol combustion consumption by freight transport,0.032380559999999996,TJ,CH4,10.0,kg/TJ,0.32380559999999997,kg +e0603c59-7a11-3613-a37e-a0557100cac6,SESCO,II.1.1,Corrientes,AR-W,annual,2010,bioetanol combustion consumption by freight transport,0.032380559999999996,TJ,N2O,0.6,kg/TJ,0.019428335999999997,kg +12f9cb12-7abb-3fe1-933c-ba03f1c1399b,SESCO,II.1.1,Córdoba,AR-X,annual,2010,bioetanol combustion consumption by freight transport,0.16062462,TJ,CH4,10.0,kg/TJ,1.6062462,kg +4204270a-2f8d-3d9f-8810-f5d9a0dc4db1,SESCO,II.1.1,Córdoba,AR-X,annual,2010,bioetanol combustion consumption by freight transport,0.16062462,TJ,N2O,0.6,kg/TJ,0.096374772,kg +89736ea3-e065-3f34-b80c-0af0d83277b7,SESCO,II.1.1,Entre Rios,AR-E,annual,2010,bioetanol combustion consumption by freight transport,0.06774354,TJ,CH4,10.0,kg/TJ,0.6774354,kg +1da11f2c-84ca-346f-82e8-ded34797d615,SESCO,II.1.1,Entre Rios,AR-E,annual,2010,bioetanol combustion consumption by freight transport,0.06774354,TJ,N2O,0.6,kg/TJ,0.040646124,kg +2bd3772e-25b3-39aa-8d0c-17c1d4de9ecf,SESCO,II.1.1,Formosa,AR-P,annual,2010,bioetanol combustion consumption by freight transport,0.00468666,TJ,CH4,10.0,kg/TJ,0.046866599999999994,kg +b66c7681-cc3a-3cd1-9b37-a1427b70053f,SESCO,II.1.1,Formosa,AR-P,annual,2010,bioetanol combustion consumption by freight transport,0.00468666,TJ,N2O,0.6,kg/TJ,0.0028119959999999998,kg +f67fa5a5-b791-38cd-ae3f-bc842ee4f789,SESCO,II.1.1,Jujuy,AR-Y,annual,2010,bioetanol combustion consumption by freight transport,0.0025563599999999997,TJ,CH4,10.0,kg/TJ,0.0255636,kg +92c477bd-2f60-3b02-b175-6419656b7967,SESCO,II.1.1,Jujuy,AR-Y,annual,2010,bioetanol combustion consumption by freight transport,0.0025563599999999997,TJ,N2O,0.6,kg/TJ,0.0015338159999999997,kg +a495d592-566d-3041-8c20-4409884d7e12,SESCO,II.1.1,La Pampa,AR-L,annual,2010,bioetanol combustion consumption by freight transport,0.01874664,TJ,CH4,10.0,kg/TJ,0.18746639999999998,kg +dbeaff3d-9c24-3fd0-8295-a9c0c08abc75,SESCO,II.1.1,La Pampa,AR-L,annual,2010,bioetanol combustion consumption by freight transport,0.01874664,TJ,N2O,0.6,kg/TJ,0.011247983999999999,kg +29446e0e-9a67-30a9-88ad-7d78c6e3ec9f,SESCO,II.1.1,La Rioja,AR-F,annual,2010,bioetanol combustion consumption by freight transport,0.00468666,TJ,CH4,10.0,kg/TJ,0.046866599999999994,kg +7c30a136-9360-3498-9771-e3d01280826d,SESCO,II.1.1,La Rioja,AR-F,annual,2010,bioetanol combustion consumption by freight transport,0.00468666,TJ,N2O,0.6,kg/TJ,0.0028119959999999998,kg +b2363995-95e8-347b-a40f-6ef9823f9988,SESCO,II.1.1,Mendoza,AR-M,annual,2010,bioetanol combustion consumption by freight transport,0.13165253999999998,TJ,CH4,10.0,kg/TJ,1.3165253999999997,kg +a696b972-91d4-32d4-8b97-5c4fc2052db6,SESCO,II.1.1,Mendoza,AR-M,annual,2010,bioetanol combustion consumption by freight transport,0.13165253999999998,TJ,N2O,0.6,kg/TJ,0.078991524,kg +4ea48154-7c94-3b5c-878c-219d03b81531,SESCO,II.1.1,Misiones,AR-N,annual,2010,bioetanol combustion consumption by freight transport,0.024711479999999997,TJ,CH4,10.0,kg/TJ,0.24711479999999997,kg +40159fb2-cb2d-3ea1-8570-abad6883a456,SESCO,II.1.1,Misiones,AR-N,annual,2010,bioetanol combustion consumption by freight transport,0.024711479999999997,TJ,N2O,0.6,kg/TJ,0.014826887999999998,kg +47d543c9-14fd-3ceb-885e-23dd2b3c5254,SESCO,II.1.1,Neuquén,AR-Q,annual,2010,bioetanol combustion consumption by freight transport,0.043458119999999996,TJ,CH4,10.0,kg/TJ,0.43458119999999995,kg +a155d215-e657-384d-bf8a-eea14f371314,SESCO,II.1.1,Neuquén,AR-Q,annual,2010,bioetanol combustion consumption by freight transport,0.043458119999999996,TJ,N2O,0.6,kg/TJ,0.026074871999999995,kg +299739ec-3b6f-3da3-bb49-dff5ae2a505b,SESCO,II.1.1,Rio Negro,AR-R,annual,2010,bioetanol combustion consumption by freight transport,0.029824200000000002,TJ,CH4,10.0,kg/TJ,0.298242,kg +1a278f68-b281-3ec3-9c66-d57a0a70418c,SESCO,II.1.1,Rio Negro,AR-R,annual,2010,bioetanol combustion consumption by freight transport,0.029824200000000002,TJ,N2O,0.6,kg/TJ,0.01789452,kg +5032d7f2-a9c8-3a8c-b651-8f3e36015709,SESCO,II.1.1,Salta,AR-A,annual,2010,bioetanol combustion consumption by freight transport,0.024711479999999997,TJ,CH4,10.0,kg/TJ,0.24711479999999997,kg +5a7da5a7-1add-3f08-b832-9f4a45a2e33b,SESCO,II.1.1,Salta,AR-A,annual,2010,bioetanol combustion consumption by freight transport,0.024711479999999997,TJ,N2O,0.6,kg/TJ,0.014826887999999998,kg +40ec8987-e25e-34be-8c5d-258c6102fd7d,SESCO,II.1.1,San Juan,AR-J,annual,2010,bioetanol combustion consumption by freight transport,0.014912100000000001,TJ,CH4,10.0,kg/TJ,0.149121,kg +30f522d4-53a4-3cc3-af65-bf599b295dec,SESCO,II.1.1,San Juan,AR-J,annual,2010,bioetanol combustion consumption by freight transport,0.014912100000000001,TJ,N2O,0.6,kg/TJ,0.00894726,kg +1653dca9-d3a7-32d2-8c17-386b78726f19,SESCO,II.1.1,San Luis,AR-D,annual,2010,bioetanol combustion consumption by freight transport,0.01832058,TJ,CH4,10.0,kg/TJ,0.1832058,kg +26c5c5f6-e73e-3b55-b4a4-ceaff681fd82,SESCO,II.1.1,San Luis,AR-D,annual,2010,bioetanol combustion consumption by freight transport,0.01832058,TJ,N2O,0.6,kg/TJ,0.010992347999999999,kg +d9b1b0ce-6095-3fad-9907-81293827cfb6,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2010,bioetanol combustion consumption by freight transport,0.008947259999999999,TJ,CH4,10.0,kg/TJ,0.08947259999999999,kg +3d98e574-8516-3cdf-b619-8e78a09b23b2,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2010,bioetanol combustion consumption by freight transport,0.008947259999999999,TJ,N2O,0.6,kg/TJ,0.005368355999999999,kg +1461f2b0-09a5-36e0-afdb-c042c81f88f1,SESCO,II.1.1,Santa Fe,AR-S,annual,2010,bioetanol combustion consumption by freight transport,0.24754086,TJ,CH4,10.0,kg/TJ,2.4754086,kg +e4309485-6f21-3100-abc6-b1477b4cbb00,SESCO,II.1.1,Santa Fe,AR-S,annual,2010,bioetanol combustion consumption by freight transport,0.24754086,TJ,N2O,0.6,kg/TJ,0.148524516,kg +0350a567-52de-3764-a961-598eab197fd1,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2010,bioetanol combustion consumption by freight transport,0.0085212,TJ,CH4,10.0,kg/TJ,0.085212,kg +5c4581ed-7260-348a-a14f-7392afc1a60b,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2010,bioetanol combustion consumption by freight transport,0.0085212,TJ,N2O,0.6,kg/TJ,0.005112719999999999,kg +761a4f01-7edb-3a90-901e-84dc78738511,SESCO,II.1.1,Tucuman,AR-T,annual,2010,bioetanol combustion consumption by freight transport,0.03365874,TJ,CH4,10.0,kg/TJ,0.3365874,kg +47bcebe4-90dd-3d2e-ac4f-8961f3dc0ad4,SESCO,II.1.1,Tucuman,AR-T,annual,2010,bioetanol combustion consumption by freight transport,0.03365874,TJ,N2O,0.6,kg/TJ,0.020195243999999998,kg +ff46c5b1-d16f-3d5b-8fba-d0f381d72816,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,bioetanol combustion consumption by public passenger transport,0.015742917000000002,TJ,CH4,10.0,kg/TJ,0.15742917,kg +7417e108-3a27-3410-9d7e-d7abda4d168a,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,bioetanol combustion consumption by public passenger transport,0.015742917000000002,TJ,N2O,0.6,kg/TJ,0.0094457502,kg +095a281f-9fea-34c7-828d-ced36c72664f,SESCO,II.1.1,Capital Federal,AR-C,annual,2010,bioetanol combustion consumption by public passenger transport,0.0025052328,TJ,CH4,10.0,kg/TJ,0.025052328,kg +9f8b826a-bdca-38ba-8e36-1bda5edc2bb3,SESCO,II.1.1,Capital Federal,AR-C,annual,2010,bioetanol combustion consumption by public passenger transport,0.0025052328,TJ,N2O,0.6,kg/TJ,0.0015031396799999998,kg +d01a4501-e545-322c-9259-4ca0c37da788,SESCO,II.1.1,Chubut,AR-U,annual,2010,bioetanol combustion consumption by public passenger transport,0.000937332,TJ,CH4,10.0,kg/TJ,0.009373320000000001,kg +d5e1343b-b599-34c5-84a1-bfecb3f7c8c9,SESCO,II.1.1,Chubut,AR-U,annual,2010,bioetanol combustion consumption by public passenger transport,0.000937332,TJ,N2O,0.6,kg/TJ,0.0005623992,kg +12b0e5e0-9e0d-3de0-93db-bb7bcf1cb4e7,SESCO,II.1.1,Córdoba,AR-X,annual,2010,bioetanol combustion consumption by public passenger transport,0.000447363,TJ,CH4,10.0,kg/TJ,0.00447363,kg +1e80cd27-0c61-3055-b10c-8c83a4c0df80,SESCO,II.1.1,Córdoba,AR-X,annual,2010,bioetanol combustion consumption by public passenger transport,0.000447363,TJ,N2O,0.6,kg/TJ,0.00026841779999999996,kg +8817f776-6944-3215-b664-1dd714ab2803,SESCO,II.1.1,Entre Rios,AR-E,annual,2010,bioetanol combustion consumption by public passenger transport,0.00042605999999999997,TJ,CH4,10.0,kg/TJ,0.0042606,kg +d169f72a-eb85-316f-81d9-ffdf6ddc7c7c,SESCO,II.1.1,Entre Rios,AR-E,annual,2010,bioetanol combustion consumption by public passenger transport,0.00042605999999999997,TJ,N2O,0.6,kg/TJ,0.00025563599999999995,kg +a26966f4-f54b-30b7-a5e7-82aec14d47d8,SESCO,II.1.1,La Pampa,AR-L,annual,2010,bioetanol combustion consumption by public passenger transport,0.00026415719999999996,TJ,CH4,10.0,kg/TJ,0.0026415719999999996,kg +b63a0e6b-57c6-365a-b66f-661eddbfdf9b,SESCO,II.1.1,La Pampa,AR-L,annual,2010,bioetanol combustion consumption by public passenger transport,0.00026415719999999996,TJ,N2O,0.6,kg/TJ,0.00015849431999999996,kg +9b29bcf9-284e-3acb-8f06-9a926d0c1f10,SESCO,II.1.1,Mendoza,AR-M,annual,2010,bioetanol combustion consumption by public passenger transport,0.0067360086,TJ,CH4,10.0,kg/TJ,0.067360086,kg +bd987dc4-64c7-3391-863c-37f4519a4561,SESCO,II.1.1,Mendoza,AR-M,annual,2010,bioetanol combustion consumption by public passenger transport,0.0067360086,TJ,N2O,0.6,kg/TJ,0.0040416051599999996,kg +b2ebbbc0-adc2-3f5d-8730-ecdb01048019,SESCO,II.1.1,Misiones,AR-N,annual,2010,bioetanol combustion consumption by public passenger transport,0.0015338160000000001,TJ,CH4,10.0,kg/TJ,0.015338160000000002,kg +f794e7f6-e4ff-3ec4-b074-b3599e023359,SESCO,II.1.1,Misiones,AR-N,annual,2010,bioetanol combustion consumption by public passenger transport,0.0015338160000000001,TJ,N2O,0.6,kg/TJ,0.0009202896,kg +102cc09b-2227-3463-be90-0f41844dbc5c,SESCO,II.1.1,Neuquén,AR-Q,annual,2010,bioetanol combustion consumption by public passenger transport,0.0039964428,TJ,CH4,10.0,kg/TJ,0.039964427999999996,kg +dbab66d3-5188-35e6-a1bb-d8a6f21fbff5,SESCO,II.1.1,Neuquén,AR-Q,annual,2010,bioetanol combustion consumption by public passenger transport,0.0039964428,TJ,N2O,0.6,kg/TJ,0.0023978656799999998,kg +6fa5a2c8-b4ff-3a8a-b5d7-978cc1c711b6,SESCO,II.1.1,Rio Negro,AR-R,annual,2010,bioetanol combustion consumption by public passenger transport,0.0064931544,TJ,CH4,10.0,kg/TJ,0.06493154400000001,kg +8a1ff9a5-a15b-3705-aae0-595e20a4efb3,SESCO,II.1.1,Rio Negro,AR-R,annual,2010,bioetanol combustion consumption by public passenger transport,0.0064931544,TJ,N2O,0.6,kg/TJ,0.00389589264,kg +eaaf487d-d1d6-3e9f-bf85-bc5818ad3506,SESCO,II.1.1,San Juan,AR-J,annual,2010,bioetanol combustion consumption by public passenger transport,1.70424e-05,TJ,CH4,10.0,kg/TJ,0.00017042400000000002,kg +ba620b5b-2ed3-3170-926c-2edcf699defe,SESCO,II.1.1,San Juan,AR-J,annual,2010,bioetanol combustion consumption by public passenger transport,1.70424e-05,TJ,N2O,0.6,kg/TJ,1.022544e-05,kg +a1a6b77d-3d93-3dfd-8823-7cc4930e1043,SESCO,II.1.1,San Luis,AR-D,annual,2010,bioetanol combustion consumption by public passenger transport,6.81696e-05,TJ,CH4,10.0,kg/TJ,0.0006816960000000001,kg +4e484625-112e-31da-b762-50adf0d7f86c,SESCO,II.1.1,San Luis,AR-D,annual,2010,bioetanol combustion consumption by public passenger transport,6.81696e-05,TJ,N2O,0.6,kg/TJ,4.090176e-05,kg +5ba9ee27-f5d9-3bcf-b396-4c14308a0d68,SESCO,II.1.1,Santa Fe,AR-S,annual,2010,bioetanol combustion consumption by public passenger transport,0.0040092246,TJ,CH4,10.0,kg/TJ,0.040092246,kg +7ff9e083-a357-3da3-951a-35f4598c6779,SESCO,II.1.1,Santa Fe,AR-S,annual,2010,bioetanol combustion consumption by public passenger transport,0.0040092246,TJ,N2O,0.6,kg/TJ,0.00240553476,kg +1f7dc019-dbc3-3dd8-b887-c0a4d189a9ee,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,bioetanol combustion consumption by public passenger transport,0.0443017188,TJ,CH4,10.0,kg/TJ,0.443017188,kg +fb9e1707-4ad0-3274-8f8e-470b391d0ed1,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,bioetanol combustion consumption by public passenger transport,0.0443017188,TJ,N2O,0.6,kg/TJ,0.02658103128,kg +de225684-ab44-35fd-ab4a-0da6d29a9df0,SESCO,II.1.1,Capital Federal,AR-C,annual,2010,bioetanol combustion consumption by public passenger transport,0.005197932,TJ,CH4,10.0,kg/TJ,0.051979319999999996,kg +6e5d5393-f61d-34aa-b458-ff2a3e2ac76c,SESCO,II.1.1,Capital Federal,AR-C,annual,2010,bioetanol combustion consumption by public passenger transport,0.005197932,TJ,N2O,0.6,kg/TJ,0.0031187591999999997,kg +30ec0d8a-15f5-39c0-874d-7d907926c97c,SESCO,II.1.1,Chaco,AR-H,annual,2010,bioetanol combustion consumption by public passenger transport,0.0005879628,TJ,CH4,10.0,kg/TJ,0.005879628,kg +eca55530-8be4-344f-bdc4-88ecf3b90a19,SESCO,II.1.1,Chaco,AR-H,annual,2010,bioetanol combustion consumption by public passenger transport,0.0005879628,TJ,N2O,0.6,kg/TJ,0.00035277767999999997,kg +2e0275a9-8b4e-3136-ae4d-c413e248979b,SESCO,II.1.1,Chubut,AR-U,annual,2010,bioetanol combustion consumption by public passenger transport,7.66908e-05,TJ,CH4,10.0,kg/TJ,0.000766908,kg +0561af30-fd96-368e-ab00-fc311d85f8a5,SESCO,II.1.1,Chubut,AR-U,annual,2010,bioetanol combustion consumption by public passenger transport,7.66908e-05,TJ,N2O,0.6,kg/TJ,4.6014479999999997e-05,kg +be67b46e-3e4e-3d6c-b3c0-d0e56602aa6d,SESCO,II.1.1,Córdoba,AR-X,annual,2010,bioetanol combustion consumption by public passenger transport,0.0031059774,TJ,CH4,10.0,kg/TJ,0.031059774,kg +6e317831-8653-3960-a5c2-5077ae79f2a0,SESCO,II.1.1,Córdoba,AR-X,annual,2010,bioetanol combustion consumption by public passenger transport,0.0031059774,TJ,N2O,0.6,kg/TJ,0.00186358644,kg +48aabc53-641b-34f9-a34e-0e6fb0f6d118,SESCO,II.1.1,Entre Rios,AR-E,annual,2010,bioetanol combustion consumption by public passenger transport,0.0030591108,TJ,CH4,10.0,kg/TJ,0.030591108000000002,kg +7ccac705-2ad3-3671-a616-03ceda8d6b57,SESCO,II.1.1,Entre Rios,AR-E,annual,2010,bioetanol combustion consumption by public passenger transport,0.0030591108,TJ,N2O,0.6,kg/TJ,0.00183546648,kg +06c18e40-c923-3458-91f3-a55f8f83318a,SESCO,II.1.1,Formosa,AR-P,annual,2010,bioetanol combustion consumption by public passenger transport,1.2781799999999998e-05,TJ,CH4,10.0,kg/TJ,0.00012781799999999997,kg +8394d588-d146-36f3-8556-8067d928dbc5,SESCO,II.1.1,Formosa,AR-P,annual,2010,bioetanol combustion consumption by public passenger transport,1.2781799999999998e-05,TJ,N2O,0.6,kg/TJ,7.66908e-06,kg +cbfd4515-4e29-34a1-b036-e0d56754e22c,SESCO,II.1.1,Jujuy,AR-Y,annual,2010,bioetanol combustion consumption by public passenger transport,1.70424e-05,TJ,CH4,10.0,kg/TJ,0.00017042400000000002,kg +6649893d-7f25-3bcb-b320-aacd45c5c53e,SESCO,II.1.1,Jujuy,AR-Y,annual,2010,bioetanol combustion consumption by public passenger transport,1.70424e-05,TJ,N2O,0.6,kg/TJ,1.022544e-05,kg +542cb9d3-b8f6-3cfb-a45c-3a361a2bf2bd,SESCO,II.1.1,La Pampa,AR-L,annual,2010,bioetanol combustion consumption by public passenger transport,2.1303e-05,TJ,CH4,10.0,kg/TJ,0.00021302999999999998,kg +b076a1f8-f6fe-3038-a6bf-432c8305a269,SESCO,II.1.1,La Pampa,AR-L,annual,2010,bioetanol combustion consumption by public passenger transport,2.1303e-05,TJ,N2O,0.6,kg/TJ,1.2781799999999998e-05,kg +862b2faa-c23a-3394-b182-6585e5694f82,SESCO,II.1.1,La Rioja,AR-F,annual,2010,bioetanol combustion consumption by public passenger transport,1.2781799999999998e-05,TJ,CH4,10.0,kg/TJ,0.00012781799999999997,kg +ed753b09-bcae-333b-9631-cee60ad43aa0,SESCO,II.1.1,La Rioja,AR-F,annual,2010,bioetanol combustion consumption by public passenger transport,1.2781799999999998e-05,TJ,N2O,0.6,kg/TJ,7.66908e-06,kg +705555a0-0f88-34c9-959b-bdcd0ed6bc1a,SESCO,II.1.1,Mendoza,AR-M,annual,2010,bioetanol combustion consumption by public passenger transport,0.006723226799999999,TJ,CH4,10.0,kg/TJ,0.06723226799999998,kg +38c57473-9ff0-3b37-b311-41202373b066,SESCO,II.1.1,Mendoza,AR-M,annual,2010,bioetanol combustion consumption by public passenger transport,0.006723226799999999,TJ,N2O,0.6,kg/TJ,0.004033936079999999,kg +b3805b06-8433-3bd4-80cb-22aa3f135cc2,SESCO,II.1.1,Misiones,AR-N,annual,2010,bioetanol combustion consumption by public passenger transport,0.0002513754,TJ,CH4,10.0,kg/TJ,0.002513754,kg +dd8a3103-4ae4-3731-9807-e1d496299fbf,SESCO,II.1.1,Misiones,AR-N,annual,2010,bioetanol combustion consumption by public passenger transport,0.0002513754,TJ,N2O,0.6,kg/TJ,0.00015082523999999998,kg +8fc69ff7-66bd-3cee-813b-3d72a7ebad5d,SESCO,II.1.1,Neuquén,AR-Q,annual,2010,bioetanol combustion consumption by public passenger transport,0.000276939,TJ,CH4,10.0,kg/TJ,0.00276939,kg +a0dedcea-3ded-372d-a2c5-7d5966e7f7bf,SESCO,II.1.1,Neuquén,AR-Q,annual,2010,bioetanol combustion consumption by public passenger transport,0.000276939,TJ,N2O,0.6,kg/TJ,0.00016616340000000002,kg +120affa9-5b4e-3fef-9cf0-45c62213322c,SESCO,II.1.1,Rio Negro,AR-R,annual,2010,bioetanol combustion consumption by public passenger transport,0.0021516029999999998,TJ,CH4,10.0,kg/TJ,0.02151603,kg +988a9111-8cb1-3b1f-8d88-a3f2106ad953,SESCO,II.1.1,Rio Negro,AR-R,annual,2010,bioetanol combustion consumption by public passenger transport,0.0021516029999999998,TJ,N2O,0.6,kg/TJ,0.0012909617999999998,kg +ee11d190-ad76-3693-8d3d-425b79523bf0,SESCO,II.1.1,Salta,AR-A,annual,2010,bioetanol combustion consumption by public passenger transport,2.1303e-05,TJ,CH4,10.0,kg/TJ,0.00021302999999999998,kg +7a3e5775-3a0f-30f0-bd7a-cc593dfbeb0f,SESCO,II.1.1,Salta,AR-A,annual,2010,bioetanol combustion consumption by public passenger transport,2.1303e-05,TJ,N2O,0.6,kg/TJ,1.2781799999999998e-05,kg +eaaf487d-d1d6-3e9f-bf85-bc5818ad3506,SESCO,II.1.1,San Juan,AR-J,annual,2010,bioetanol combustion consumption by public passenger transport,1.70424e-05,TJ,CH4,10.0,kg/TJ,0.00017042400000000002,kg +ba620b5b-2ed3-3170-926c-2edcf699defe,SESCO,II.1.1,San Juan,AR-J,annual,2010,bioetanol combustion consumption by public passenger transport,1.70424e-05,TJ,N2O,0.6,kg/TJ,1.022544e-05,kg +24dfc520-b129-339b-999f-fc1ad68199a0,SESCO,II.1.1,San Luis,AR-D,annual,2010,bioetanol combustion consumption by public passenger transport,0.0005410962,TJ,CH4,10.0,kg/TJ,0.005410962,kg +d25a2832-cf83-3970-8887-74fc076113ca,SESCO,II.1.1,San Luis,AR-D,annual,2010,bioetanol combustion consumption by public passenger transport,0.0005410962,TJ,N2O,0.6,kg/TJ,0.00032465772,kg +71daa44c-66a5-310b-b898-a66b0c4b0ad5,SESCO,II.1.1,Santa Fe,AR-S,annual,2010,bioetanol combustion consumption by public passenger transport,0.0096161742,TJ,CH4,10.0,kg/TJ,0.09616174200000001,kg +f33dd662-0033-3223-ad7b-773c8409b3fd,SESCO,II.1.1,Santa Fe,AR-S,annual,2010,bioetanol combustion consumption by public passenger transport,0.0096161742,TJ,N2O,0.6,kg/TJ,0.00576970452,kg +5d7ec678-0dee-3f1f-a27f-13e87ad38754,SESCO,II.1.1,Tucuman,AR-T,annual,2010,bioetanol combustion consumption by public passenger transport,1.2781799999999998e-05,TJ,CH4,10.0,kg/TJ,0.00012781799999999997,kg +80a9e65d-2920-361f-90b8-f4256e671a3b,SESCO,II.1.1,Tucuman,AR-T,annual,2010,bioetanol combustion consumption by public passenger transport,1.2781799999999998e-05,TJ,N2O,0.6,kg/TJ,7.66908e-06,kg +9d8152b6-0e09-3dcd-8b61-fe3c194bbc18,SESCO,II.1.1,Capital Federal,AR-C,annual,2011,bioetanol combustion consumption by to the public,0.52447986,TJ,CH4,10.0,kg/TJ,5.2447986,kg +868629a3-8096-3a13-bc81-1148f6572638,SESCO,II.1.1,Capital Federal,AR-C,annual,2011,bioetanol combustion consumption by to the public,0.52447986,TJ,N2O,0.6,kg/TJ,0.314687916,kg +66670ee2-daad-3c65-970f-fb317c227e1c,SESCO,II.1.1,Capital Federal,AR-C,annual,2011,bioetanol combustion consumption by to the public,0.06646536,TJ,CH4,10.0,kg/TJ,0.6646536000000001,kg +3a6097f0-c959-3b27-a0e5-77ffc7995d03,SESCO,II.1.1,Capital Federal,AR-C,annual,2011,bioetanol combustion consumption by to the public,0.06646536,TJ,N2O,0.6,kg/TJ,0.039879216,kg +0a554443-7f2c-3a0e-8426-33d9cccc3daa,SESCO,II.5.1,Córdoba,AR-X,annual,2011,bioetanol combustion consumption by agriculture machines,0.1266335532,TJ,CH4,10.0,kg/TJ,1.266335532,kg +b7843353-f759-3a5d-9dc6-7cd99617f611,SESCO,II.5.1,Córdoba,AR-X,annual,2011,bioetanol combustion consumption by agriculture machines,0.1266335532,TJ,N2O,0.6,kg/TJ,0.07598013192,kg +e9904209-f873-3777-a33d-783527d0e4ce,SESCO,II.5.1,Santa Fe,AR-S,annual,2011,bioetanol combustion consumption by agriculture machines,0.265094532,TJ,CH4,10.0,kg/TJ,2.65094532,kg +9185a50a-4d33-3c16-a37f-a6097b7a3e30,SESCO,II.5.1,Santa Fe,AR-S,annual,2011,bioetanol combustion consumption by agriculture machines,0.265094532,TJ,N2O,0.6,kg/TJ,0.1590567192,kg +f4f7c107-6d2a-3c7f-9410-0eb640bd7cde,SESCO,II.5.1,Córdoba,AR-X,annual,2011,bioetanol combustion consumption by agriculture machines,0.0678330126,TJ,CH4,10.0,kg/TJ,0.6783301260000001,kg +1f882de1-41b7-3eaa-b4c2-e6fd074fcd25,SESCO,II.5.1,Córdoba,AR-X,annual,2011,bioetanol combustion consumption by agriculture machines,0.0678330126,TJ,N2O,0.6,kg/TJ,0.04069980756,kg +cb129b1e-6706-35c9-ae37-1c6422b881ff,SESCO,II.5.1,Santa Fe,AR-S,annual,2011,bioetanol combustion consumption by agriculture machines,0.0127818,TJ,CH4,10.0,kg/TJ,0.127818,kg +b7f2515f-6d69-379d-859d-6df360006df4,SESCO,II.5.1,Santa Fe,AR-S,annual,2011,bioetanol combustion consumption by agriculture machines,0.0127818,TJ,N2O,0.6,kg/TJ,0.007669079999999999,kg +10583fc3-4919-38dd-91fe-fb5ce58035d9,SESCO,II.1.1,Buenos Aires,AR-B,annual,2011,bioetanol combustion consumption by to the public,4.06122863148,TJ,CH4,10.0,kg/TJ,40.612286314799995,kg +817297af-be7b-312e-a0fc-36e5d7670b27,SESCO,II.1.1,Buenos Aires,AR-B,annual,2011,bioetanol combustion consumption by to the public,4.06122863148,TJ,N2O,0.6,kg/TJ,2.436737178888,kg +b3b1031d-bc78-369a-b187-cfadbe1dd8cd,SESCO,II.1.1,Capital Federal,AR-C,annual,2011,bioetanol combustion consumption by to the public,0.19997978219999998,TJ,CH4,10.0,kg/TJ,1.999797822,kg +0677c96f-6837-338e-87b7-21dd4b681d44,SESCO,II.1.1,Capital Federal,AR-C,annual,2011,bioetanol combustion consumption by to the public,0.19997978219999998,TJ,N2O,0.6,kg/TJ,0.11998786931999998,kg +784d4671-e106-3b65-9e12-60ab0a61adff,SESCO,II.1.1,Catamarca,AR-K,annual,2011,bioetanol combustion consumption by to the public,0.0085169394,TJ,CH4,10.0,kg/TJ,0.085169394,kg +ce057268-70b7-3987-8e89-eadb65ccc985,SESCO,II.1.1,Catamarca,AR-K,annual,2011,bioetanol combustion consumption by to the public,0.0085169394,TJ,N2O,0.6,kg/TJ,0.005110163639999999,kg +597a25fc-3883-3d3a-9f52-c9a0911d024b,SESCO,II.1.1,Chaco,AR-H,annual,2011,bioetanol combustion consumption by to the public,0.015619359599999999,TJ,CH4,10.0,kg/TJ,0.156193596,kg +3fa503e3-f173-350d-8f8e-dec82596c4f9,SESCO,II.1.1,Chaco,AR-H,annual,2011,bioetanol combustion consumption by to the public,0.015619359599999999,TJ,N2O,0.6,kg/TJ,0.009371615759999999,kg +79bd330b-2b5d-323c-99a6-2c6dfaf22d02,SESCO,II.1.1,Corrientes,AR-W,annual,2011,bioetanol combustion consumption by to the public,1.465092522,TJ,CH4,10.0,kg/TJ,14.65092522,kg +e5a68747-7c2f-3d68-af7c-4e06cd7f540d,SESCO,II.1.1,Corrientes,AR-W,annual,2011,bioetanol combustion consumption by to the public,1.465092522,TJ,N2O,0.6,kg/TJ,0.8790555132,kg +fc1b4d62-333f-35ca-a655-e0fb4cd81106,SESCO,II.1.1,Córdoba,AR-X,annual,2011,bioetanol combustion consumption by to the public,2.1732724116,TJ,CH4,10.0,kg/TJ,21.732724116,kg +88be80b9-9e23-38a5-926f-1024ccbc8afc,SESCO,II.1.1,Córdoba,AR-X,annual,2011,bioetanol combustion consumption by to the public,2.1732724116,TJ,N2O,0.6,kg/TJ,1.30396344696,kg +351b93ed-806d-3b8c-9f2d-6e8471243807,SESCO,II.1.1,Entre Rios,AR-E,annual,2011,bioetanol combustion consumption by to the public,0.2336470434,TJ,CH4,10.0,kg/TJ,2.336470434,kg +e51c2713-0a5b-36ec-a9f4-5f58b4a9db33,SESCO,II.1.1,Entre Rios,AR-E,annual,2011,bioetanol combustion consumption by to the public,0.2336470434,TJ,N2O,0.6,kg/TJ,0.14018822604,kg +6bd23a69-2fd4-3456-a290-c95aaad081ba,SESCO,II.1.1,Mendoza,AR-M,annual,2011,bioetanol combustion consumption by to the public,1.9959334577999999,TJ,CH4,10.0,kg/TJ,19.959334578,kg +8a2e5812-ad52-3749-b68b-d579ca6452ae,SESCO,II.1.1,Mendoza,AR-M,annual,2011,bioetanol combustion consumption by to the public,1.9959334577999999,TJ,N2O,0.6,kg/TJ,1.19756007468,kg +0583639d-7390-34a1-9b3f-249866630cc9,SESCO,II.1.1,Misiones,AR-N,annual,2011,bioetanol combustion consumption by to the public,2.4164546778,TJ,CH4,10.0,kg/TJ,24.164546778000002,kg +a24cc5ef-aa43-30f9-93bc-c18f666633f5,SESCO,II.1.1,Misiones,AR-N,annual,2011,bioetanol combustion consumption by to the public,2.4164546778,TJ,N2O,0.6,kg/TJ,1.44987280668,kg +72f97e65-9b99-3b1a-a95d-e8d9f959dc4e,SESCO,II.1.1,Rio Negro,AR-R,annual,2011,bioetanol combustion consumption by to the public,0.019044882000000003,TJ,CH4,10.0,kg/TJ,0.19044882000000002,kg +f36b5609-58e8-34ba-ba24-418b170a00be,SESCO,II.1.1,Rio Negro,AR-R,annual,2011,bioetanol combustion consumption by to the public,0.019044882000000003,TJ,N2O,0.6,kg/TJ,0.011426929200000002,kg +ce2b53c5-28dc-3348-b0e8-b242ea6288a7,SESCO,II.1.1,San Juan,AR-J,annual,2011,bioetanol combustion consumption by to the public,0.4573668888,TJ,CH4,10.0,kg/TJ,4.573668888,kg +44e2ac1d-db5c-36cc-8e30-99811610dc02,SESCO,II.1.1,San Juan,AR-J,annual,2011,bioetanol combustion consumption by to the public,0.4573668888,TJ,N2O,0.6,kg/TJ,0.27442013328,kg +837d1800-7d2d-306c-87b7-9305ebfe7959,SESCO,II.1.1,Santa Fe,AR-S,annual,2011,bioetanol combustion consumption by to the public,2.046067938,TJ,CH4,10.0,kg/TJ,20.460679380000002,kg +29c2e433-aeea-3a1b-8982-9899643e7ead,SESCO,II.1.1,Santa Fe,AR-S,annual,2011,bioetanol combustion consumption by to the public,2.046067938,TJ,N2O,0.6,kg/TJ,1.2276407628000001,kg +d50a5cce-05e1-3b88-9076-26a920f62e76,SESCO,II.1.1,Buenos Aires,AR-B,annual,2011,bioetanol combustion consumption by to the public,90.07814373984,TJ,CH4,10.0,kg/TJ,900.7814373984,kg +264d3a31-05c6-3c7a-ad84-71fa64094cc9,SESCO,II.1.1,Buenos Aires,AR-B,annual,2011,bioetanol combustion consumption by to the public,90.07814373984,TJ,N2O,0.6,kg/TJ,54.046886243904,kg +5f7a605d-fb4a-3d46-bff7-76f114d4be9c,SESCO,II.1.1,Capital Federal,AR-C,annual,2011,bioetanol combustion consumption by to the public,27.575457024240002,TJ,CH4,10.0,kg/TJ,275.7545702424,kg +a14df6fb-fe2e-36eb-aaf3-74edd6b15ea6,SESCO,II.1.1,Capital Federal,AR-C,annual,2011,bioetanol combustion consumption by to the public,27.575457024240002,TJ,N2O,0.6,kg/TJ,16.545274214544,kg +18b6a84b-3d56-3d76-b28b-104b9f7fafa5,SESCO,II.1.1,Catamarca,AR-K,annual,2011,bioetanol combustion consumption by to the public,3.5394636258000003,TJ,CH4,10.0,kg/TJ,35.394636258000006,kg +fa0f7d16-45ea-3f6e-aed7-6a2b0a6af3ab,SESCO,II.1.1,Catamarca,AR-K,annual,2011,bioetanol combustion consumption by to the public,3.5394636258000003,TJ,N2O,0.6,kg/TJ,2.1236781754800003,kg +c57ed141-65d0-37e4-9f73-3bb3e10f31f7,SESCO,II.1.1,Chaco,AR-H,annual,2011,bioetanol combustion consumption by to the public,4.776239115,TJ,CH4,10.0,kg/TJ,47.76239115,kg +440a0457-19c1-36cc-92e0-e1c2aefb27c2,SESCO,II.1.1,Chaco,AR-H,annual,2011,bioetanol combustion consumption by to the public,4.776239115,TJ,N2O,0.6,kg/TJ,2.865743469,kg +8df612a4-3b04-3a1e-a3dc-ed21e7648764,SESCO,II.1.1,Chubut,AR-U,annual,2011,bioetanol combustion consumption by to the public,3.9413702844,TJ,CH4,10.0,kg/TJ,39.413702844,kg +0ae86127-5f34-3cd0-a7c7-1ad229b6b74c,SESCO,II.1.1,Chubut,AR-U,annual,2011,bioetanol combustion consumption by to the public,3.9413702844,TJ,N2O,0.6,kg/TJ,2.36482217064,kg +28bb0b97-8356-36df-bca1-d05e9a8643e6,SESCO,II.1.1,Corrientes,AR-W,annual,2011,bioetanol combustion consumption by to the public,5.08033944,TJ,CH4,10.0,kg/TJ,50.8033944,kg +04112ad0-9025-3d30-9cc8-bb13ab5fdf71,SESCO,II.1.1,Corrientes,AR-W,annual,2011,bioetanol combustion consumption by to the public,5.08033944,TJ,N2O,0.6,kg/TJ,3.0482036640000003,kg +15d85dd5-3eaa-30ba-827e-0c94e833ebe9,SESCO,II.1.1,Córdoba,AR-X,annual,2011,bioetanol combustion consumption by to the public,34.47949005432,TJ,CH4,10.0,kg/TJ,344.7949005432,kg +c8a75091-a6b2-3c45-8dcd-ef13c0f26ef4,SESCO,II.1.1,Córdoba,AR-X,annual,2011,bioetanol combustion consumption by to the public,34.47949005432,TJ,N2O,0.6,kg/TJ,20.687694032592002,kg +0692e633-4615-343c-a9a0-b09ed85b14f2,SESCO,II.1.1,Entre Rios,AR-E,annual,2011,bioetanol combustion consumption by to the public,11.0562271758,TJ,CH4,10.0,kg/TJ,110.56227175800001,kg +3ef23da0-6218-3ecc-9045-88dfc5e134ef,SESCO,II.1.1,Entre Rios,AR-E,annual,2011,bioetanol combustion consumption by to the public,11.0562271758,TJ,N2O,0.6,kg/TJ,6.63373630548,kg +2b7fb8a8-a06a-3bf1-8400-ac1414b42476,SESCO,II.1.1,Formosa,AR-P,annual,2011,bioetanol combustion consumption by to the public,3.7769878152,TJ,CH4,10.0,kg/TJ,37.769878152000004,kg +c978ab0d-e9c8-35b8-8968-95cb09b42975,SESCO,II.1.1,Formosa,AR-P,annual,2011,bioetanol combustion consumption by to the public,3.7769878152,TJ,N2O,0.6,kg/TJ,2.26619268912,kg +5b19ea7c-44f2-3580-b7c4-5925fabf60ef,SESCO,II.1.1,Jujuy,AR-Y,annual,2011,bioetanol combustion consumption by to the public,0.9408512556,TJ,CH4,10.0,kg/TJ,9.408512556,kg +839fdddb-8315-37fd-8cd0-f078a03e09d8,SESCO,II.1.1,Jujuy,AR-Y,annual,2011,bioetanol combustion consumption by to the public,0.9408512556,TJ,N2O,0.6,kg/TJ,0.56451075336,kg +d68c4698-9027-3eed-ad2b-36ad63199fed,SESCO,II.1.1,La Pampa,AR-L,annual,2011,bioetanol combustion consumption by to the public,1.2181864914,TJ,CH4,10.0,kg/TJ,12.181864914,kg +3c72e80f-2125-3f35-b2ff-6d363cbd1eec,SESCO,II.1.1,La Pampa,AR-L,annual,2011,bioetanol combustion consumption by to the public,1.2181864914,TJ,N2O,0.6,kg/TJ,0.73091189484,kg +6abee72e-0332-3ae7-91b9-ffdf5a6fc39b,SESCO,II.1.1,La Rioja,AR-F,annual,2011,bioetanol combustion consumption by to the public,2.4685447734,TJ,CH4,10.0,kg/TJ,24.685447734,kg +7c1421b7-3bd0-3ad0-991d-7701ac027b52,SESCO,II.1.1,La Rioja,AR-F,annual,2011,bioetanol combustion consumption by to the public,2.4685447734,TJ,N2O,0.6,kg/TJ,1.48112686404,kg +670de7a2-24e6-38ef-a1c3-440b0d7571c9,SESCO,II.1.1,Mendoza,AR-M,annual,2011,bioetanol combustion consumption by to the public,4.473097425,TJ,CH4,10.0,kg/TJ,44.730974249999996,kg +7df62148-4fe8-3eac-8bec-1f67ecf263dd,SESCO,II.1.1,Mendoza,AR-M,annual,2011,bioetanol combustion consumption by to the public,4.473097425,TJ,N2O,0.6,kg/TJ,2.6838584549999998,kg +efbb3581-bbba-37c3-a8f5-310b63277dba,SESCO,II.1.1,Misiones,AR-N,annual,2011,bioetanol combustion consumption by to the public,7.5305593728,TJ,CH4,10.0,kg/TJ,75.305593728,kg +68a6e958-8249-379d-ae10-ce1b33f01bef,SESCO,II.1.1,Misiones,AR-N,annual,2011,bioetanol combustion consumption by to the public,7.5305593728,TJ,N2O,0.6,kg/TJ,4.51833562368,kg +1afb492d-2fd0-34e4-a121-072a52b61f10,SESCO,II.1.1,Neuquén,AR-Q,annual,2011,bioetanol combustion consumption by to the public,3.3754859136,TJ,CH4,10.0,kg/TJ,33.754859136,kg +836eb47c-7561-327c-8ccd-0058a725ff9b,SESCO,II.1.1,Neuquén,AR-Q,annual,2011,bioetanol combustion consumption by to the public,3.3754859136,TJ,N2O,0.6,kg/TJ,2.02529154816,kg +e3b1c7bd-1b69-3a62-bf1e-950cbfcea39d,SESCO,II.1.1,Rio Negro,AR-R,annual,2011,bioetanol combustion consumption by to the public,4.6733158008,TJ,CH4,10.0,kg/TJ,46.733158008000004,kg +73086ede-937e-3d30-851f-913bf4836571,SESCO,II.1.1,Rio Negro,AR-R,annual,2011,bioetanol combustion consumption by to the public,4.6733158008,TJ,N2O,0.6,kg/TJ,2.80398948048,kg +bfba60f1-c50d-34dd-83bc-e5adeb2d8140,SESCO,II.1.1,Salta,AR-A,annual,2011,bioetanol combustion consumption by to the public,0.7141234265999999,TJ,CH4,10.0,kg/TJ,7.141234266,kg +b52ec2f7-c645-3207-a006-391919ca52f2,SESCO,II.1.1,Salta,AR-A,annual,2011,bioetanol combustion consumption by to the public,0.7141234265999999,TJ,N2O,0.6,kg/TJ,0.42847405595999993,kg +43f7ff6d-93ac-33d7-a895-8e57c1dcb852,SESCO,II.1.1,San Juan,AR-J,annual,2011,bioetanol combustion consumption by to the public,3.3605865954,TJ,CH4,10.0,kg/TJ,33.605865954,kg +8d68d8be-4130-3b46-accc-e6f8c5bcb485,SESCO,II.1.1,San Juan,AR-J,annual,2011,bioetanol combustion consumption by to the public,3.3605865954,TJ,N2O,0.6,kg/TJ,2.01635195724,kg +0067bce2-8c33-3e56-95b7-aedd6af6ae34,SESCO,II.1.1,San Luis,AR-D,annual,2011,bioetanol combustion consumption by to the public,6.052804347599999,TJ,CH4,10.0,kg/TJ,60.528043475999986,kg +a93e959d-6f77-3e55-bef0-bfca25a2c055,SESCO,II.1.1,San Luis,AR-D,annual,2011,bioetanol combustion consumption by to the public,6.052804347599999,TJ,N2O,0.6,kg/TJ,3.631682608559999,kg +794c59e1-98fe-35b9-a236-8f19b1748359,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2011,bioetanol combustion consumption by to the public,0.421139007,TJ,CH4,10.0,kg/TJ,4.21139007,kg +0f919961-147d-3105-b8ef-f131cae3cb75,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2011,bioetanol combustion consumption by to the public,0.421139007,TJ,N2O,0.6,kg/TJ,0.2526834042,kg +70b25951-709a-34e4-8898-6713b99ab051,SESCO,II.1.1,Santa Fe,AR-S,annual,2011,bioetanol combustion consumption by to the public,28.23280966008,TJ,CH4,10.0,kg/TJ,282.3280966008,kg +7f876b74-2434-362e-b6ba-bf67c3560de8,SESCO,II.1.1,Santa Fe,AR-S,annual,2011,bioetanol combustion consumption by to the public,28.23280966008,TJ,N2O,0.6,kg/TJ,16.939685796048,kg +8962b509-8ce4-3f33-b49a-adae0793d3b5,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2011,bioetanol combustion consumption by to the public,2.617989579,TJ,CH4,10.0,kg/TJ,26.17989579,kg +e39ff35e-bd59-32ed-92a0-11007a0370fc,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2011,bioetanol combustion consumption by to the public,2.617989579,TJ,N2O,0.6,kg/TJ,1.5707937474,kg +f14dfcf4-7aaf-3e1b-9f4f-d48e993335a1,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2011,bioetanol combustion consumption by to the public,0.31772572379999997,TJ,CH4,10.0,kg/TJ,3.1772572379999997,kg +d1d085b9-ed16-34d8-839a-ee9fe28d5d1f,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2011,bioetanol combustion consumption by to the public,0.31772572379999997,TJ,N2O,0.6,kg/TJ,0.19063543428,kg +61b8fc17-26aa-30ab-bf79-2085e20e1e53,SESCO,II.1.1,Tucuman,AR-T,annual,2011,bioetanol combustion consumption by to the public,0.8308510847999999,TJ,CH4,10.0,kg/TJ,8.308510848,kg +19af08f0-d564-38dd-9356-6a25656b9a1d,SESCO,II.1.1,Tucuman,AR-T,annual,2011,bioetanol combustion consumption by to the public,0.8308510847999999,TJ,N2O,0.6,kg/TJ,0.4985106508799999,kg +8da6560a-b4c1-3613-bd7e-f4f7bb75cc07,SESCO,II.1.1,Buenos Aires,AR-B,annual,2011,bioetanol combustion consumption by to the public,24.31338785658,TJ,CH4,10.0,kg/TJ,243.1338785658,kg +19465b3a-c3cc-3124-bfca-5da5410262e4,SESCO,II.1.1,Buenos Aires,AR-B,annual,2011,bioetanol combustion consumption by to the public,24.31338785658,TJ,N2O,0.6,kg/TJ,14.588032713948,kg +fae35aa3-5ee5-3dc9-8a1f-351a83705208,SESCO,II.1.1,Capital Federal,AR-C,annual,2011,bioetanol combustion consumption by to the public,11.18999552976,TJ,CH4,10.0,kg/TJ,111.89995529759999,kg +23a07e10-62f7-35b1-b5fc-03e3920e7bb7,SESCO,II.1.1,Capital Federal,AR-C,annual,2011,bioetanol combustion consumption by to the public,11.18999552976,TJ,N2O,0.6,kg/TJ,6.713997317855999,kg +be7e728e-9ebe-323e-8d6e-c54fa84fd576,SESCO,II.1.1,Catamarca,AR-K,annual,2011,bioetanol combustion consumption by to the public,0.6797489058,TJ,CH4,10.0,kg/TJ,6.797489058,kg +d8ec4562-9a54-303f-b4f7-51eb04289933,SESCO,II.1.1,Catamarca,AR-K,annual,2011,bioetanol combustion consumption by to the public,0.6797489058,TJ,N2O,0.6,kg/TJ,0.40784934348,kg +412e8172-a117-3544-b852-541cd0fe7c74,SESCO,II.1.1,Chaco,AR-H,annual,2011,bioetanol combustion consumption by to the public,0.9618261894,TJ,CH4,10.0,kg/TJ,9.618261894,kg +80bdaa17-8532-3abd-b323-960083ca5832,SESCO,II.1.1,Chaco,AR-H,annual,2011,bioetanol combustion consumption by to the public,0.9618261894,TJ,N2O,0.6,kg/TJ,0.57709571364,kg +f00a6253-0241-3c11-a486-28ee5047bc30,SESCO,II.1.1,Chubut,AR-U,annual,2011,bioetanol combustion consumption by to the public,0.42343973100000004,TJ,CH4,10.0,kg/TJ,4.23439731,kg +cc3f29e3-1b4f-3b76-9214-84f010518f44,SESCO,II.1.1,Chubut,AR-U,annual,2011,bioetanol combustion consumption by to the public,0.42343973100000004,TJ,N2O,0.6,kg/TJ,0.25406383860000004,kg +9225095f-a48d-3f17-9c8c-9ac2811cecfa,SESCO,II.1.1,Corrientes,AR-W,annual,2011,bioetanol combustion consumption by to the public,0.6473001762,TJ,CH4,10.0,kg/TJ,6.473001762,kg +34557f9c-cb25-3190-b24e-7e7ae46db1da,SESCO,II.1.1,Corrientes,AR-W,annual,2011,bioetanol combustion consumption by to the public,0.6473001762,TJ,N2O,0.6,kg/TJ,0.38838010572,kg +7b062c31-9aae-37b5-bc1d-2759a84d10ed,SESCO,II.1.1,Córdoba,AR-X,annual,2011,bioetanol combustion consumption by to the public,8.25316650612,TJ,CH4,10.0,kg/TJ,82.53166506119999,kg +4189e1e4-d7b8-3733-b852-7b2120e74905,SESCO,II.1.1,Córdoba,AR-X,annual,2011,bioetanol combustion consumption by to the public,8.25316650612,TJ,N2O,0.6,kg/TJ,4.9518999036719995,kg +b7469872-be1b-3d13-a3e3-644cc5df5b93,SESCO,II.1.1,Entre Rios,AR-E,annual,2011,bioetanol combustion consumption by to the public,2.171073942,TJ,CH4,10.0,kg/TJ,21.71073942,kg +02d15859-e2a9-3220-887b-be9852add431,SESCO,II.1.1,Entre Rios,AR-E,annual,2011,bioetanol combustion consumption by to the public,2.171073942,TJ,N2O,0.6,kg/TJ,1.3026443652,kg +3eef0a18-ff7b-313b-b81a-f6e4fae3eef2,SESCO,II.1.1,Formosa,AR-P,annual,2011,bioetanol combustion consumption by to the public,0.9569520630000001,TJ,CH4,10.0,kg/TJ,9.569520630000001,kg +dba0832c-6096-3b65-9695-6cb764e41fde,SESCO,II.1.1,Formosa,AR-P,annual,2011,bioetanol combustion consumption by to the public,0.9569520630000001,TJ,N2O,0.6,kg/TJ,0.5741712378,kg +bdad457f-988e-38b6-ae45-e94ccb5b1720,SESCO,II.1.1,Jujuy,AR-Y,annual,2011,bioetanol combustion consumption by to the public,0.0824255676,TJ,CH4,10.0,kg/TJ,0.8242556759999999,kg +54f92a51-330d-3619-8d81-2b45ee323f7f,SESCO,II.1.1,Jujuy,AR-Y,annual,2011,bioetanol combustion consumption by to the public,0.0824255676,TJ,N2O,0.6,kg/TJ,0.04945534056,kg +b0a41a4b-859e-3f7a-a371-583ea4b6e865,SESCO,II.1.1,La Pampa,AR-L,annual,2011,bioetanol combustion consumption by to the public,0.2372983776,TJ,CH4,10.0,kg/TJ,2.372983776,kg +f26dbde2-be20-33f5-8a5a-ae16603f0914,SESCO,II.1.1,La Pampa,AR-L,annual,2011,bioetanol combustion consumption by to the public,0.2372983776,TJ,N2O,0.6,kg/TJ,0.14237902655999998,kg +17e4d831-51f1-35de-93f3-029cfc9e46fa,SESCO,II.1.1,La Rioja,AR-F,annual,2011,bioetanol combustion consumption by to the public,0.5147443890000001,TJ,CH4,10.0,kg/TJ,5.147443890000001,kg +fc860521-8adf-3a82-a294-ce806157bb20,SESCO,II.1.1,La Rioja,AR-F,annual,2011,bioetanol combustion consumption by to the public,0.5147443890000001,TJ,N2O,0.6,kg/TJ,0.3088466334,kg +5ef90eba-65f1-3124-9624-84b0b78aae4e,SESCO,II.1.1,Mendoza,AR-M,annual,2011,bioetanol combustion consumption by to the public,0.9218830643999999,TJ,CH4,10.0,kg/TJ,9.218830643999999,kg +a1de58b7-a6b2-3120-a015-031230bfbe2f,SESCO,II.1.1,Mendoza,AR-M,annual,2011,bioetanol combustion consumption by to the public,0.9218830643999999,TJ,N2O,0.6,kg/TJ,0.5531298386399999,kg +eff40897-6e9c-3b14-9cd6-562d3485a7a8,SESCO,II.1.1,Misiones,AR-N,annual,2011,bioetanol combustion consumption by to the public,1.0574297928,TJ,CH4,10.0,kg/TJ,10.574297928,kg +d76d1e1f-e6b7-355a-b8ea-e12e0f89dac0,SESCO,II.1.1,Misiones,AR-N,annual,2011,bioetanol combustion consumption by to the public,1.0574297928,TJ,N2O,0.6,kg/TJ,0.63445787568,kg +cdf16942-b067-33d8-9aba-8b0ae6276a34,SESCO,II.1.1,Neuquén,AR-Q,annual,2011,bioetanol combustion consumption by to the public,0.6644448306,TJ,CH4,10.0,kg/TJ,6.644448306,kg +e3813ded-01aa-39cc-8046-4ff7efd6986e,SESCO,II.1.1,Neuquén,AR-Q,annual,2011,bioetanol combustion consumption by to the public,0.6644448306,TJ,N2O,0.6,kg/TJ,0.39866689836,kg +6d6dcb0a-0eef-33ed-9883-4c933f537060,SESCO,II.1.1,Rio Negro,AR-R,annual,2011,bioetanol combustion consumption by to the public,1.0202475366000001,TJ,CH4,10.0,kg/TJ,10.202475366000002,kg +4b317fb9-25f5-3c12-88fc-75664250d62a,SESCO,II.1.1,Rio Negro,AR-R,annual,2011,bioetanol combustion consumption by to the public,1.0202475366000001,TJ,N2O,0.6,kg/TJ,0.61214852196,kg +828d8044-0334-3164-81d1-44d66d749bb5,SESCO,II.1.1,Salta,AR-A,annual,2011,bioetanol combustion consumption by to the public,0.15202246860000002,TJ,CH4,10.0,kg/TJ,1.5202246860000002,kg +23306489-98cb-3bb6-9323-dc5b63453f38,SESCO,II.1.1,Salta,AR-A,annual,2011,bioetanol combustion consumption by to the public,0.15202246860000002,TJ,N2O,0.6,kg/TJ,0.09121348116000001,kg +c316762a-07c2-313e-9c10-01f1937b7d0a,SESCO,II.1.1,San Juan,AR-J,annual,2011,bioetanol combustion consumption by to the public,0.5626292723999999,TJ,CH4,10.0,kg/TJ,5.626292723999999,kg +818567ef-cde3-366f-b002-70a2a66e2815,SESCO,II.1.1,San Juan,AR-J,annual,2011,bioetanol combustion consumption by to the public,0.5626292723999999,TJ,N2O,0.6,kg/TJ,0.33757756343999995,kg +fd66a39e-6319-360c-8156-7bf17aa38e18,SESCO,II.1.1,San Luis,AR-D,annual,2011,bioetanol combustion consumption by to the public,0.8711776638000001,TJ,CH4,10.0,kg/TJ,8.711776638,kg +e81d2ec6-3fdc-3dff-8449-f4c63c7a1264,SESCO,II.1.1,San Luis,AR-D,annual,2011,bioetanol combustion consumption by to the public,0.8711776638000001,TJ,N2O,0.6,kg/TJ,0.52270659828,kg +3c7f91a7-7edf-349c-8406-47c44e93c796,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2011,bioetanol combustion consumption by to the public,0.18818218080000002,TJ,CH4,10.0,kg/TJ,1.8818218080000002,kg +23980aad-e4cc-3845-bee9-a71e448bcd89,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2011,bioetanol combustion consumption by to the public,0.18818218080000002,TJ,N2O,0.6,kg/TJ,0.11290930848,kg +d7b1e71f-c261-375a-a7c3-f012eb8e424b,SESCO,II.1.1,Santa Fe,AR-S,annual,2011,bioetanol combustion consumption by to the public,7.796228659740001,TJ,CH4,10.0,kg/TJ,77.96228659740001,kg +8d92fafe-584b-3bc9-bb60-932148593c01,SESCO,II.1.1,Santa Fe,AR-S,annual,2011,bioetanol combustion consumption by to the public,7.796228659740001,TJ,N2O,0.6,kg/TJ,4.677737195844,kg +3855c841-c1d3-384e-8c10-30d94a5327a4,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2011,bioetanol combustion consumption by to the public,0.9441574812,TJ,CH4,10.0,kg/TJ,9.441574811999999,kg +e278e4f8-62b6-356e-b32a-258580ed6579,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2011,bioetanol combustion consumption by to the public,0.9441574812,TJ,N2O,0.6,kg/TJ,0.56649448872,kg +de330538-f608-348f-a6c3-845769fc682a,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2011,bioetanol combustion consumption by to the public,0.124217793,TJ,CH4,10.0,kg/TJ,1.24217793,kg +a2bf345e-674d-3465-987b-b4afc2b1c9e6,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2011,bioetanol combustion consumption by to the public,0.124217793,TJ,N2O,0.6,kg/TJ,0.0745306758,kg +11db5608-b6b9-33c5-a4aa-224bfb5719a8,SESCO,II.1.1,Tucuman,AR-T,annual,2011,bioetanol combustion consumption by to the public,0.32836018139999995,TJ,CH4,10.0,kg/TJ,3.2836018139999994,kg +b9a72c1d-adc7-3eee-92c2-08c0886fd590,SESCO,II.1.1,Tucuman,AR-T,annual,2011,bioetanol combustion consumption by to the public,0.32836018139999995,TJ,N2O,0.6,kg/TJ,0.19701610883999995,kg +5110a043-d737-3df9-9241-a79037a7d613,SESCO,II.1.1,Capital Federal,AR-C,annual,2011,bioetanol combustion consumption by freight transport,0.00029398140000000004,TJ,CH4,10.0,kg/TJ,0.0029398140000000007,kg +933d3275-7470-344f-b516-c7c48f38203d,SESCO,II.1.1,Capital Federal,AR-C,annual,2011,bioetanol combustion consumption by freight transport,0.00029398140000000004,TJ,N2O,0.6,kg/TJ,0.00017638884,kg +55252e97-22b5-3f99-8c1a-20598beb21de,SESCO,II.1.1,Misiones,AR-N,annual,2011,bioetanol combustion consumption by freight transport,1.2781799999999998e-05,TJ,CH4,10.0,kg/TJ,0.00012781799999999997,kg +13d54e91-545a-30f5-9b5c-7b48a817371e,SESCO,II.1.1,Misiones,AR-N,annual,2011,bioetanol combustion consumption by freight transport,1.2781799999999998e-05,TJ,N2O,0.6,kg/TJ,7.66908e-06,kg +02f93263-e5ed-3a83-a6b5-40b4761018f1,SESCO,II.1.1,Buenos Aires,AR-B,annual,2011,bioetanol combustion consumption by freight transport,0.06675934139999999,TJ,CH4,10.0,kg/TJ,0.6675934139999999,kg +b695eb81-3317-3dce-a197-acf9d4a8d76f,SESCO,II.1.1,Buenos Aires,AR-B,annual,2011,bioetanol combustion consumption by freight transport,0.06675934139999999,TJ,N2O,0.6,kg/TJ,0.040055604839999995,kg +29d3a58f-cda2-3164-b1e3-51e766f8a5cc,SESCO,II.1.1,Capital Federal,AR-C,annual,2011,bioetanol combustion consumption by freight transport,1.4048817228000001,TJ,CH4,10.0,kg/TJ,14.048817228,kg +76ce00f8-76fc-3cdb-813d-aeba337fffcd,SESCO,II.1.1,Capital Federal,AR-C,annual,2011,bioetanol combustion consumption by freight transport,1.4048817228000001,TJ,N2O,0.6,kg/TJ,0.84292903368,kg +f2d159ee-ac0c-35c5-b85a-2ac42927dcee,SESCO,II.1.1,Chaco,AR-H,annual,2011,bioetanol combustion consumption by freight transport,8.5212e-05,TJ,CH4,10.0,kg/TJ,0.0008521199999999999,kg +1f6793bf-d782-31d7-a901-ee50f5f1dd49,SESCO,II.1.1,Chaco,AR-H,annual,2011,bioetanol combustion consumption by freight transport,8.5212e-05,TJ,N2O,0.6,kg/TJ,5.1127199999999994e-05,kg +63434aa5-d11d-3718-a5f2-b2237540dad0,SESCO,II.1.1,Corrientes,AR-W,annual,2011,bioetanol combustion consumption by freight transport,0.00036641160000000007,TJ,CH4,10.0,kg/TJ,0.0036641160000000007,kg +9fa5bcac-b76b-35cb-89a4-d8857d4b90b6,SESCO,II.1.1,Corrientes,AR-W,annual,2011,bioetanol combustion consumption by freight transport,0.00036641160000000007,TJ,N2O,0.6,kg/TJ,0.00021984696000000004,kg +3290d6ca-cc51-3b38-bdd8-0bafd1a9d579,SESCO,II.1.1,Córdoba,AR-X,annual,2011,bioetanol combustion consumption by freight transport,0.0060330096,TJ,CH4,10.0,kg/TJ,0.060330096,kg +c5768fb5-6d93-3500-acb9-648323bdf82a,SESCO,II.1.1,Córdoba,AR-X,annual,2011,bioetanol combustion consumption by freight transport,0.0060330096,TJ,N2O,0.6,kg/TJ,0.00361980576,kg +2035e5b4-ce62-3433-96db-09245badffc7,SESCO,II.1.1,Entre Rios,AR-E,annual,2011,bioetanol combustion consumption by freight transport,0.23417109719999998,TJ,CH4,10.0,kg/TJ,2.341710972,kg +c1421ec4-6a0d-3f50-87f4-5e8ede97aac0,SESCO,II.1.1,Entre Rios,AR-E,annual,2011,bioetanol combustion consumption by freight transport,0.23417109719999998,TJ,N2O,0.6,kg/TJ,0.14050265831999997,kg +93c6841d-8829-33f8-b3fa-b61267f0baf0,SESCO,II.1.1,Mendoza,AR-M,annual,2011,bioetanol combustion consumption by freight transport,2.1303e-05,TJ,CH4,10.0,kg/TJ,0.00021302999999999998,kg +288e02c9-c084-3981-a6b1-393c9c485ece,SESCO,II.1.1,Mendoza,AR-M,annual,2011,bioetanol combustion consumption by freight transport,2.1303e-05,TJ,N2O,0.6,kg/TJ,1.2781799999999998e-05,kg +92011e4b-27f7-37aa-b1b2-45c9a5d5cd0d,SESCO,II.1.1,Misiones,AR-N,annual,2011,bioetanol combustion consumption by freight transport,1.70424e-05,TJ,CH4,10.0,kg/TJ,0.00017042400000000002,kg +18944b36-9c5c-3fc5-90bf-fc29d2d8757d,SESCO,II.1.1,Misiones,AR-N,annual,2011,bioetanol combustion consumption by freight transport,1.70424e-05,TJ,N2O,0.6,kg/TJ,1.022544e-05,kg +90f3d446-d69b-3db3-b706-69d8938933e8,SESCO,II.1.1,San Luis,AR-D,annual,2011,bioetanol combustion consumption by freight transport,0.000255636,TJ,CH4,10.0,kg/TJ,0.00255636,kg +d90beb9f-eb3f-30d9-9a0f-a9e447215867,SESCO,II.1.1,San Luis,AR-D,annual,2011,bioetanol combustion consumption by freight transport,0.000255636,TJ,N2O,0.6,kg/TJ,0.0001533816,kg +c705e461-2efc-3658-a6d2-e6f7cbf44d2c,SESCO,II.1.1,Santa Fe,AR-S,annual,2011,bioetanol combustion consumption by freight transport,0.0089600418,TJ,CH4,10.0,kg/TJ,0.089600418,kg +c8bc01f7-885d-3d9c-9af8-0605b1887ce7,SESCO,II.1.1,Santa Fe,AR-S,annual,2011,bioetanol combustion consumption by freight transport,0.0089600418,TJ,N2O,0.6,kg/TJ,0.00537602508,kg +39a03b53-1884-39c5-aa2c-dc1e420dab65,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2011,bioetanol combustion consumption by freight transport,0.00032806619999999997,TJ,CH4,10.0,kg/TJ,0.0032806619999999997,kg +77bc618d-5115-3943-b8a7-80c6470bfe83,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2011,bioetanol combustion consumption by freight transport,0.00032806619999999997,TJ,N2O,0.6,kg/TJ,0.00019683971999999997,kg +04b1a4fb-514a-3a57-b198-b15ad8ef80ed,SESCO,II.1.1,Tucuman,AR-T,annual,2011,bioetanol combustion consumption by freight transport,0.000575181,TJ,CH4,10.0,kg/TJ,0.00575181,kg +b642a15f-23ff-3f71-a6b4-7fba3028d066,SESCO,II.1.1,Tucuman,AR-T,annual,2011,bioetanol combustion consumption by freight transport,0.000575181,TJ,N2O,0.6,kg/TJ,0.0003451086,kg +f9810949-c8e3-3592-b113-f64247277532,SESCO,II.1.1,Buenos Aires,AR-B,annual,2011,bioetanol combustion consumption by freight transport,0.0428445936,TJ,CH4,10.0,kg/TJ,0.428445936,kg +7f9242dc-e99d-3d81-a507-c5dba62e56b1,SESCO,II.1.1,Buenos Aires,AR-B,annual,2011,bioetanol combustion consumption by freight transport,0.0428445936,TJ,N2O,0.6,kg/TJ,0.02570675616,kg +5c379d1d-c2de-39e4-862d-31ed4dce9a08,SESCO,II.1.1,Capital Federal,AR-C,annual,2011,bioetanol combustion consumption by freight transport,0.2519676234,TJ,CH4,10.0,kg/TJ,2.5196762340000003,kg +184d00d7-a1cc-35f4-92ed-4f487c3a4140,SESCO,II.1.1,Capital Federal,AR-C,annual,2011,bioetanol combustion consumption by freight transport,0.2519676234,TJ,N2O,0.6,kg/TJ,0.15118057404,kg +1cac8a0a-d984-3612-aa15-baaa95b25180,SESCO,II.1.1,Chaco,AR-H,annual,2011,bioetanol combustion consumption by freight transport,0.000532575,TJ,CH4,10.0,kg/TJ,0.00532575,kg +52866948-561e-3372-b301-0373c2fefaa4,SESCO,II.1.1,Chaco,AR-H,annual,2011,bioetanol combustion consumption by freight transport,0.000532575,TJ,N2O,0.6,kg/TJ,0.00031954499999999996,kg +b556f9a4-3d80-325a-a026-54346c6bb10d,SESCO,II.1.1,Corrientes,AR-W,annual,2011,bioetanol combustion consumption by freight transport,0.00037067219999999996,TJ,CH4,10.0,kg/TJ,0.0037067219999999995,kg +80bf8549-445a-32fa-bcce-2120141d944b,SESCO,II.1.1,Corrientes,AR-W,annual,2011,bioetanol combustion consumption by freight transport,0.00037067219999999996,TJ,N2O,0.6,kg/TJ,0.00022240331999999997,kg +81b1ee89-5fbb-328f-bcb0-9a9c73d6a30e,SESCO,II.1.1,Córdoba,AR-X,annual,2011,bioetanol combustion consumption by freight transport,0.007528480200000001,TJ,CH4,10.0,kg/TJ,0.07528480200000001,kg +c9cc1bee-2021-346e-8e3e-ab694dec7162,SESCO,II.1.1,Córdoba,AR-X,annual,2011,bioetanol combustion consumption by freight transport,0.007528480200000001,TJ,N2O,0.6,kg/TJ,0.00451708812,kg +05351542-b44e-304c-b047-d6d35e88fec8,SESCO,II.1.1,Entre Rios,AR-E,annual,2011,bioetanol combustion consumption by freight transport,0.0047122236,TJ,CH4,10.0,kg/TJ,0.047122236,kg +9b6725b9-6d91-3e02-bb4e-82bce27cd97f,SESCO,II.1.1,Entre Rios,AR-E,annual,2011,bioetanol combustion consumption by freight transport,0.0047122236,TJ,N2O,0.6,kg/TJ,0.0028273341599999997,kg +015e6162-ef9e-36b5-a3c8-e38e75434e91,SESCO,II.1.1,Misiones,AR-N,annual,2011,bioetanol combustion consumption by freight transport,0.0001959876,TJ,CH4,10.0,kg/TJ,0.001959876,kg +bae42917-827b-3852-8e47-2616cc09617f,SESCO,II.1.1,Misiones,AR-N,annual,2011,bioetanol combustion consumption by freight transport,0.0001959876,TJ,N2O,0.6,kg/TJ,0.00011759256,kg +3c91e7ea-e7fb-3f56-a4d4-f4eee98c4e46,SESCO,II.1.1,San Luis,AR-D,annual,2011,bioetanol combustion consumption by freight transport,5.96484e-05,TJ,CH4,10.0,kg/TJ,0.000596484,kg +ee1223b4-f749-3832-b884-e2c34251c968,SESCO,II.1.1,San Luis,AR-D,annual,2011,bioetanol combustion consumption by freight transport,5.96484e-05,TJ,N2O,0.6,kg/TJ,3.578904e-05,kg +01d43bf8-2da8-36ec-87c0-d73423362430,SESCO,II.1.1,Santa Fe,AR-S,annual,2011,bioetanol combustion consumption by freight transport,0.0067828752,TJ,CH4,10.0,kg/TJ,0.06782875199999999,kg +856d13b8-2a1d-35dd-8e72-5deaceab06f8,SESCO,II.1.1,Santa Fe,AR-S,annual,2011,bioetanol combustion consumption by freight transport,0.0067828752,TJ,N2O,0.6,kg/TJ,0.00406972512,kg +aa71daa4-3f51-3b23-ad07-9c5a6b42fceb,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2011,bioetanol combustion consumption by freight transport,0.011235202199999999,TJ,CH4,10.0,kg/TJ,0.112352022,kg +821c1e02-e6c0-3d65-9343-31c0508cc81c,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2011,bioetanol combustion consumption by freight transport,0.011235202199999999,TJ,N2O,0.6,kg/TJ,0.006741121319999999,kg +b09f711b-8c4a-30bc-890b-e181585a618c,SESCO,II.1.1,Tucuman,AR-T,annual,2011,bioetanol combustion consumption by freight transport,0.0006944778,TJ,CH4,10.0,kg/TJ,0.006944778,kg +b008760c-c97b-318f-b3ec-563c0642c0da,SESCO,II.1.1,Tucuman,AR-T,annual,2011,bioetanol combustion consumption by freight transport,0.0006944778,TJ,N2O,0.6,kg/TJ,0.00041668668000000004,kg +67413416-c9d3-341b-8240-38810445ab4d,SESCO,II.1.1,Capital Federal,AR-C,annual,2011,bioetanol combustion consumption by public passenger transport,2.1303e-05,TJ,CH4,10.0,kg/TJ,0.00021302999999999998,kg +96a5568e-5cc4-3491-aa3e-b60ae277be29,SESCO,II.1.1,Capital Federal,AR-C,annual,2011,bioetanol combustion consumption by public passenger transport,2.1303e-05,TJ,N2O,0.6,kg/TJ,1.2781799999999998e-05,kg +da1213d1-b4b9-376a-b608-b90c17d35fee,SESCO,II.1.1,Capital Federal,AR-C,annual,2011,bioetanol combustion consumption by public passenger transport,0.000255636,TJ,CH4,10.0,kg/TJ,0.00255636,kg +800c0c82-85e6-31cf-8e17-3e58f4ccc90c,SESCO,II.1.1,Capital Federal,AR-C,annual,2011,bioetanol combustion consumption by public passenger transport,0.000255636,TJ,N2O,0.6,kg/TJ,0.0001533816,kg +0759de8d-8f4f-3d7f-98ae-f1fc8ef33950,SESCO,II.1.1,Córdoba,AR-X,annual,2011,bioetanol combustion consumption by public passenger transport,0.0004004964,TJ,CH4,10.0,kg/TJ,0.004004964,kg +080dd30f-0b4f-3b36-9ab9-02bf308a63e8,SESCO,II.1.1,Córdoba,AR-X,annual,2011,bioetanol combustion consumption by public passenger transport,0.0004004964,TJ,N2O,0.6,kg/TJ,0.00024029784,kg +42adf1ef-beb9-31cf-a07a-cd4ecfbce074,SESCO,II.1.1,Tucuman,AR-T,annual,2011,bioetanol combustion consumption by public passenger transport,2.1303e-05,TJ,CH4,10.0,kg/TJ,0.00021302999999999998,kg +26d280b8-4e40-3d7e-a2d1-3d8c3ba5ce28,SESCO,II.1.1,Tucuman,AR-T,annual,2011,bioetanol combustion consumption by public passenger transport,2.1303e-05,TJ,N2O,0.6,kg/TJ,1.2781799999999998e-05,kg +2f9fd0e4-8d78-3078-8430-36f7079d0a85,SESCO,II.1.1,Capital Federal,AR-C,annual,2011,bioetanol combustion consumption by public passenger transport,0.0046397934,TJ,CH4,10.0,kg/TJ,0.046397934,kg +71153990-c013-3fdb-a1c4-43d614d22826,SESCO,II.1.1,Capital Federal,AR-C,annual,2011,bioetanol combustion consumption by public passenger transport,0.0046397934,TJ,N2O,0.6,kg/TJ,0.0027838760399999996,kg +519c2a58-f853-355c-bbda-50b75918ec08,SESCO,II.1.1,Córdoba,AR-X,annual,2011,bioetanol combustion consumption by public passenger transport,0.000255636,TJ,CH4,10.0,kg/TJ,0.00255636,kg +ed7dae8a-0f8b-34c3-8ae3-790cfc079b50,SESCO,II.1.1,Córdoba,AR-X,annual,2011,bioetanol combustion consumption by public passenger transport,0.000255636,TJ,N2O,0.6,kg/TJ,0.0001533816,kg +1c94b0f0-c6f1-3920-b949-d71648af77f1,SESCO,II.1.1,Tucuman,AR-T,annual,2011,bioetanol combustion consumption by public passenger transport,9.79938e-05,TJ,CH4,10.0,kg/TJ,0.000979938,kg +eb6f860d-ef80-31ac-bfae-8b743456f132,SESCO,II.1.1,Tucuman,AR-T,annual,2011,bioetanol combustion consumption by public passenger transport,9.79938e-05,TJ,N2O,0.6,kg/TJ,5.879628e-05,kg +8d34c864-62af-3d7e-825f-1f942936302e,SESCO,II.5.1,Córdoba,AR-X,annual,2011,bioetanol combustion consumption by agriculture machines,0.021233296583999996,TJ,CH4,10.0,kg/TJ,0.21233296583999997,kg +82f8601d-6fdb-33b0-9416-4204959e6dcc,SESCO,II.5.1,Córdoba,AR-X,annual,2011,bioetanol combustion consumption by agriculture machines,0.021233296583999996,TJ,N2O,0.6,kg/TJ,0.012739977950399998,kg +3ff091eb-3680-3258-8b3d-dcfb7399d186,SESCO,II.1.1,Buenos Aires,AR-B,annual,2011,bioetanol combustion consumption by to the public,19.885263152273996,TJ,CH4,10.0,kg/TJ,198.85263152273996,kg +9b132902-6fe1-315d-b5f7-64159b1e706c,SESCO,II.1.1,Buenos Aires,AR-B,annual,2011,bioetanol combustion consumption by to the public,19.885263152273996,TJ,N2O,0.6,kg/TJ,11.931157891364398,kg +f50fa83b-1366-3cfe-9392-c222edb89b0f,SESCO,II.1.1,Capital Federal,AR-C,annual,2011,bioetanol combustion consumption by to the public,3.107937616848,TJ,CH4,10.0,kg/TJ,31.07937616848,kg +f0aa91c4-ba23-342b-a64b-d9c4f57f2f88,SESCO,II.1.1,Capital Federal,AR-C,annual,2011,bioetanol combustion consumption by to the public,3.107937616848,TJ,N2O,0.6,kg/TJ,1.8647625701088,kg +b1f3cd38-ee31-3a36-a25b-4e59a7f9af08,SESCO,II.1.1,Catamarca,AR-K,annual,2011,bioetanol combustion consumption by to the public,1.459183538466,TJ,CH4,10.0,kg/TJ,14.59183538466,kg +e61c50c9-1f63-3042-8d54-bfd381ce27d1,SESCO,II.1.1,Catamarca,AR-K,annual,2011,bioetanol combustion consumption by to the public,1.459183538466,TJ,N2O,0.6,kg/TJ,0.8755101230796,kg +70dad4a7-041e-388a-b5ce-cb14f20cd8d4,SESCO,II.1.1,Chaco,AR-H,annual,2011,bioetanol combustion consumption by to the public,3.350055627774,TJ,CH4,10.0,kg/TJ,33.50055627774,kg +ce64389e-97a0-305e-b779-d9a2ef3804a0,SESCO,II.1.1,Chaco,AR-H,annual,2011,bioetanol combustion consumption by to the public,3.350055627774,TJ,N2O,0.6,kg/TJ,2.0100333766644,kg +8bbee420-1e98-3e10-a376-c69b2f1cc666,SESCO,II.1.1,Corrientes,AR-W,annual,2011,bioetanol combustion consumption by to the public,4.269566304882,TJ,CH4,10.0,kg/TJ,42.695663048819995,kg +a966370a-ce72-3838-84ae-b50ee25b04e4,SESCO,II.1.1,Corrientes,AR-W,annual,2011,bioetanol combustion consumption by to the public,4.269566304882,TJ,N2O,0.6,kg/TJ,2.5617397829292,kg +d7c80d52-1d0c-3126-8ff5-6eea08e133d6,SESCO,II.1.1,Córdoba,AR-X,annual,2011,bioetanol combustion consumption by to the public,7.804256524865999,TJ,CH4,10.0,kg/TJ,78.04256524866,kg +0c283caa-8b7d-326b-95b0-fba295a42d46,SESCO,II.1.1,Córdoba,AR-X,annual,2011,bioetanol combustion consumption by to the public,7.804256524865999,TJ,N2O,0.6,kg/TJ,4.682553914919599,kg +4ae05a00-2268-3b91-a16b-5e58c0ec6083,SESCO,II.1.1,Entre Rios,AR-E,annual,2011,bioetanol combustion consumption by to the public,3.7884083535000004,TJ,CH4,10.0,kg/TJ,37.884083535,kg +c4369b55-2434-390c-b605-dcecedf40792,SESCO,II.1.1,Entre Rios,AR-E,annual,2011,bioetanol combustion consumption by to the public,3.7884083535000004,TJ,N2O,0.6,kg/TJ,2.2730450121000003,kg +33dab1d2-e82e-336d-a061-b5c21b456f16,SESCO,II.1.1,Formosa,AR-P,annual,2011,bioetanol combustion consumption by to the public,0.5548810730579999,TJ,CH4,10.0,kg/TJ,5.54881073058,kg +7b6fe2e4-798a-3454-98d2-0443bd8486e3,SESCO,II.1.1,Formosa,AR-P,annual,2011,bioetanol combustion consumption by to the public,0.5548810730579999,TJ,N2O,0.6,kg/TJ,0.3329286438348,kg +44c4f30f-c433-38d0-a2d1-10adc95312f8,SESCO,II.1.1,Jujuy,AR-Y,annual,2011,bioetanol combustion consumption by to the public,0.21327093693000002,TJ,CH4,10.0,kg/TJ,2.1327093693,kg +ede9e74d-3661-312d-b00e-47238cfda0b5,SESCO,II.1.1,Jujuy,AR-Y,annual,2011,bioetanol combustion consumption by to the public,0.21327093693000002,TJ,N2O,0.6,kg/TJ,0.127962562158,kg +81fc4c22-f6ac-3655-9c66-70103c885ee3,SESCO,II.1.1,La Pampa,AR-L,annual,2011,bioetanol combustion consumption by to the public,0.11248128860399999,TJ,CH4,10.0,kg/TJ,1.12481288604,kg +6d5654b7-1fc8-342a-b154-7bd4400170ee,SESCO,II.1.1,La Pampa,AR-L,annual,2011,bioetanol combustion consumption by to the public,0.11248128860399999,TJ,N2O,0.6,kg/TJ,0.06748877316239998,kg +5e5a5963-2808-3eb0-b563-e8d9084f815e,SESCO,II.1.1,La Rioja,AR-F,annual,2011,bioetanol combustion consumption by to the public,0.8664755378219999,TJ,CH4,10.0,kg/TJ,8.664755378219999,kg +b11a89f8-ac4f-3871-8420-7cf96fe3f01e,SESCO,II.1.1,La Rioja,AR-F,annual,2011,bioetanol combustion consumption by to the public,0.8664755378219999,TJ,N2O,0.6,kg/TJ,0.5198853226932,kg +ac79973c-74e4-31b3-a632-8ff3b79298a3,SESCO,II.1.1,Mendoza,AR-M,annual,2011,bioetanol combustion consumption by to the public,3.0295520353799996,TJ,CH4,10.0,kg/TJ,30.295520353799997,kg +64adde9f-f5a9-3bd4-ab7e-b5ab14b08078,SESCO,II.1.1,Mendoza,AR-M,annual,2011,bioetanol combustion consumption by to the public,3.0295520353799996,TJ,N2O,0.6,kg/TJ,1.8177312212279997,kg +529f4e5e-49bd-3126-8eca-cf77bfa178af,SESCO,II.1.1,Misiones,AR-N,annual,2011,bioetanol combustion consumption by to the public,1.4794662099779998,TJ,CH4,10.0,kg/TJ,14.794662099779998,kg +78df9abd-c866-3c31-8091-375ba8ff181e,SESCO,II.1.1,Misiones,AR-N,annual,2011,bioetanol combustion consumption by to the public,1.4794662099779998,TJ,N2O,0.6,kg/TJ,0.8876797259867999,kg +6c1c81f1-5260-3625-a571-c41111523a51,SESCO,II.1.1,Salta,AR-A,annual,2011,bioetanol combustion consumption by to the public,0.09265999746600001,TJ,CH4,10.0,kg/TJ,0.9265999746600001,kg +cee4c882-2f9b-3df0-b98c-cb0e5ca57ea6,SESCO,II.1.1,Salta,AR-A,annual,2011,bioetanol combustion consumption by to the public,0.09265999746600001,TJ,N2O,0.6,kg/TJ,0.055595998479600006,kg +b95c76d8-b7c0-3913-884b-26ec456e1235,SESCO,II.1.1,San Juan,AR-J,annual,2011,bioetanol combustion consumption by to the public,2.308236630768,TJ,CH4,10.0,kg/TJ,23.08236630768,kg +fad4ac3d-9814-37cb-9f18-d8948c4a3d81,SESCO,II.1.1,San Juan,AR-J,annual,2011,bioetanol combustion consumption by to the public,2.308236630768,TJ,N2O,0.6,kg/TJ,1.3849419784608,kg +11385c16-3d65-385d-87a5-38bbf45efca0,SESCO,II.1.1,San Luis,AR-D,annual,2011,bioetanol combustion consumption by to the public,1.0022123741939999,TJ,CH4,10.0,kg/TJ,10.02212374194,kg +c010fb65-ffcc-3b8b-be65-251820a7ab4c,SESCO,II.1.1,San Luis,AR-D,annual,2011,bioetanol combustion consumption by to the public,1.0022123741939999,TJ,N2O,0.6,kg/TJ,0.6013274245163999,kg +345dec4e-7f85-3584-b796-d137057f192e,SESCO,II.1.1,Santa Fe,AR-S,annual,2011,bioetanol combustion consumption by to the public,10.043443486097999,TJ,CH4,10.0,kg/TJ,100.43443486097999,kg +f1af72b1-d315-39d4-b533-a6c9a6547349,SESCO,II.1.1,Santa Fe,AR-S,annual,2011,bioetanol combustion consumption by to the public,10.043443486097999,TJ,N2O,0.6,kg/TJ,6.026066091658799,kg +5c9a456e-b967-3bae-a0b6-508a13d34a4e,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2011,bioetanol combustion consumption by to the public,1.511634123432,TJ,CH4,10.0,kg/TJ,15.11634123432,kg +cd902659-e2bc-3fed-948e-9a2039dda94e,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2011,bioetanol combustion consumption by to the public,1.511634123432,TJ,N2O,0.6,kg/TJ,0.9069804740592,kg +c4c78b7b-42c4-3b56-8289-bfb91294aa61,SESCO,II.1.1,Tucuman,AR-T,annual,2011,bioetanol combustion consumption by to the public,1.940657754186,TJ,CH4,10.0,kg/TJ,19.40657754186,kg +0c3ef771-d1d0-3588-a164-340b37dd3b71,SESCO,II.1.1,Tucuman,AR-T,annual,2011,bioetanol combustion consumption by to the public,1.940657754186,TJ,N2O,0.6,kg/TJ,1.1643946525116,kg +53a46d7e-0fc8-3beb-8d04-b5f0fc3e0cba,SESCO,II.1.1,Buenos Aires,AR-B,annual,2011,bioetanol combustion consumption by to the public,3.502144945188,TJ,CH4,10.0,kg/TJ,35.021449451879995,kg +532d3b3f-d496-3dee-9435-ae0fb7cd927b,SESCO,II.1.1,Buenos Aires,AR-B,annual,2011,bioetanol combustion consumption by to the public,3.502144945188,TJ,N2O,0.6,kg/TJ,2.1012869671127996,kg +0b4b2e99-a75a-357b-9da7-d95c89709b86,SESCO,II.1.1,Capital Federal,AR-C,annual,2011,bioetanol combustion consumption by to the public,0.48997389969,TJ,CH4,10.0,kg/TJ,4.8997389969,kg +7a8cece2-d83d-3471-8808-616df0a662dd,SESCO,II.1.1,Capital Federal,AR-C,annual,2011,bioetanol combustion consumption by to the public,0.48997389969,TJ,N2O,0.6,kg/TJ,0.29398433981399996,kg +c469fded-0c49-321d-8914-f4c476424ee8,SESCO,II.1.1,Catamarca,AR-K,annual,2011,bioetanol combustion consumption by to the public,0.18513529792199998,TJ,CH4,10.0,kg/TJ,1.8513529792199999,kg +3b213382-3562-38fe-8c44-ca49b1ceb3d8,SESCO,II.1.1,Catamarca,AR-K,annual,2011,bioetanol combustion consumption by to the public,0.18513529792199998,TJ,N2O,0.6,kg/TJ,0.11108117875319999,kg +94a2fe43-47cd-329f-af9b-386ea26a5064,SESCO,II.1.1,Chaco,AR-H,annual,2011,bioetanol combustion consumption by to the public,0.272630170008,TJ,CH4,10.0,kg/TJ,2.72630170008,kg +72a3fcfc-b016-3280-a7e6-b823986e8642,SESCO,II.1.1,Chaco,AR-H,annual,2011,bioetanol combustion consumption by to the public,0.272630170008,TJ,N2O,0.6,kg/TJ,0.1635781020048,kg +b908cbf8-f274-3b05-8e16-c77cfb3d9285,SESCO,II.1.1,Corrientes,AR-W,annual,2011,bioetanol combustion consumption by to the public,0.39015153538200004,TJ,CH4,10.0,kg/TJ,3.9015153538200003,kg +c6dc68cb-ed37-307d-b4e7-ccf9e4952838,SESCO,II.1.1,Corrientes,AR-W,annual,2011,bioetanol combustion consumption by to the public,0.39015153538200004,TJ,N2O,0.6,kg/TJ,0.2340909212292,kg +b8d7e0cc-78d0-3639-ae68-e912ce13b554,SESCO,II.1.1,Córdoba,AR-X,annual,2011,bioetanol combustion consumption by to the public,1.33157426526,TJ,CH4,10.0,kg/TJ,13.315742652600001,kg +25317257-d20f-3e32-b178-afb280e5e5eb,SESCO,II.1.1,Córdoba,AR-X,annual,2011,bioetanol combustion consumption by to the public,1.33157426526,TJ,N2O,0.6,kg/TJ,0.7989445591559999,kg +756ef96d-a9c5-325e-b035-b69a9ba85f8f,SESCO,II.1.1,Entre Rios,AR-E,annual,2011,bioetanol combustion consumption by to the public,0.6700018459679999,TJ,CH4,10.0,kg/TJ,6.700018459679999,kg +92aee14e-be50-3258-bbce-0586a3c8a644,SESCO,II.1.1,Entre Rios,AR-E,annual,2011,bioetanol combustion consumption by to the public,0.6700018459679999,TJ,N2O,0.6,kg/TJ,0.40200110758079993,kg +7521687a-911e-3975-b36c-f00b0cab6ef2,SESCO,II.1.1,Jujuy,AR-Y,annual,2011,bioetanol combustion consumption by to the public,0.025915482953999997,TJ,CH4,10.0,kg/TJ,0.25915482953999996,kg +1e3c6ccc-b979-3d19-bbe6-7cfa0382616a,SESCO,II.1.1,Jujuy,AR-Y,annual,2011,bioetanol combustion consumption by to the public,0.025915482953999997,TJ,N2O,0.6,kg/TJ,0.015549289772399997,kg +6a8bebb1-8f83-3ee9-8e51-a8d0595522f1,SESCO,II.1.1,La Pampa,AR-L,annual,2011,bioetanol combustion consumption by to the public,0.04778953117200001,TJ,CH4,10.0,kg/TJ,0.4778953117200001,kg +7d97ae0a-8442-3529-a91e-aeb17b00aa54,SESCO,II.1.1,La Pampa,AR-L,annual,2011,bioetanol combustion consumption by to the public,0.04778953117200001,TJ,N2O,0.6,kg/TJ,0.028673718703200003,kg +6394f142-a889-3891-aa01-e1a6e0a40c44,SESCO,II.1.1,La Rioja,AR-F,annual,2011,bioetanol combustion consumption by to the public,0.11039892035400001,TJ,CH4,10.0,kg/TJ,1.10398920354,kg +69e85956-ec30-3e41-bdeb-e9e864de7c04,SESCO,II.1.1,La Rioja,AR-F,annual,2011,bioetanol combustion consumption by to the public,0.11039892035400001,TJ,N2O,0.6,kg/TJ,0.0662393522124,kg +20915ad4-c1d4-3888-b0b7-71b710e6a0a1,SESCO,II.1.1,Mendoza,AR-M,annual,2011,bioetanol combustion consumption by to the public,0.5394702698280001,TJ,CH4,10.0,kg/TJ,5.394702698280001,kg +401e8dce-c579-3aad-831f-f1d583a2b7ae,SESCO,II.1.1,Mendoza,AR-M,annual,2011,bioetanol combustion consumption by to the public,0.5394702698280001,TJ,N2O,0.6,kg/TJ,0.32368216189680005,kg +b42b864e-5df3-381c-902c-3fa91a279652,SESCO,II.1.1,Misiones,AR-N,annual,2011,bioetanol combustion consumption by to the public,0.136048243626,TJ,CH4,10.0,kg/TJ,1.3604824362599999,kg +1e958b12-73f6-3b6d-b144-f02e547bab1a,SESCO,II.1.1,Misiones,AR-N,annual,2011,bioetanol combustion consumption by to the public,0.136048243626,TJ,N2O,0.6,kg/TJ,0.08162894617559999,kg +8b0c8906-297f-31d0-a832-4226fb513df0,SESCO,II.1.1,Salta,AR-A,annual,2011,bioetanol combustion consumption by to the public,0.007273951956,TJ,CH4,10.0,kg/TJ,0.07273951956000001,kg +09eb1d54-65c5-310c-af90-3cba4c93f2b9,SESCO,II.1.1,Salta,AR-A,annual,2011,bioetanol combustion consumption by to the public,0.007273951956,TJ,N2O,0.6,kg/TJ,0.0043643711736,kg +86f70f43-c75d-3604-8490-c1e5e2818499,SESCO,II.1.1,San Juan,AR-J,annual,2011,bioetanol combustion consumption by to the public,0.47055029295600004,TJ,CH4,10.0,kg/TJ,4.705502929560001,kg +a646408f-3e71-3a55-b663-03a553c1d1fc,SESCO,II.1.1,San Juan,AR-J,annual,2011,bioetanol combustion consumption by to the public,0.47055029295600004,TJ,N2O,0.6,kg/TJ,0.28233017577360003,kg +48e507ef-1e51-3daa-ad40-2b80e6afa967,SESCO,II.1.1,San Luis,AR-D,annual,2011,bioetanol combustion consumption by to the public,0.16673240313,TJ,CH4,10.0,kg/TJ,1.6673240313000002,kg +491c566c-263c-3f5f-8c55-0cdda3b207cf,SESCO,II.1.1,San Luis,AR-D,annual,2011,bioetanol combustion consumption by to the public,0.16673240313,TJ,N2O,0.6,kg/TJ,0.100039441878,kg +35657cdf-0bb6-32c5-a060-c694a23acb0f,SESCO,II.1.1,Santa Fe,AR-S,annual,2011,bioetanol combustion consumption by to the public,1.9152613401299998,TJ,CH4,10.0,kg/TJ,19.1526134013,kg +7b69dab7-f82c-3e23-b762-64f549ae4937,SESCO,II.1.1,Santa Fe,AR-S,annual,2011,bioetanol combustion consumption by to the public,1.9152613401299998,TJ,N2O,0.6,kg/TJ,1.1491568040779998,kg +50ff1d34-c0f9-3371-bf80-5e50363c566f,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2011,bioetanol combustion consumption by to the public,0.19212067944,TJ,CH4,10.0,kg/TJ,1.9212067944,kg +b5460067-cff3-39c8-b76a-528c9ac66259,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2011,bioetanol combustion consumption by to the public,0.19212067944,TJ,N2O,0.6,kg/TJ,0.11527240766399999,kg +1c724961-fc25-363d-84f6-0610086f09b6,SESCO,II.1.1,Tucuman,AR-T,annual,2011,bioetanol combustion consumption by to the public,0.295802295228,TJ,CH4,10.0,kg/TJ,2.95802295228,kg +4c023175-e175-37f0-8e23-7bb5ede9001b,SESCO,II.1.1,Tucuman,AR-T,annual,2011,bioetanol combustion consumption by to the public,0.295802295228,TJ,N2O,0.6,kg/TJ,0.17748137713679998,kg +349e6dc7-423f-3b1e-a6b3-903e7662a3d8,SESCO,II.5.1,Santiago del Estero,AR-G,annual,2011,bioetanol combustion consumption by agriculture machines,0.022291033139999996,TJ,CH4,10.0,kg/TJ,0.22291033139999997,kg +2653e992-42f7-35e2-bfc7-0996b2a4a63d,SESCO,II.5.1,Santiago del Estero,AR-G,annual,2011,bioetanol combustion consumption by agriculture machines,0.022291033139999996,TJ,N2O,0.6,kg/TJ,0.013374619883999997,kg +32813049-d9db-3b0c-a5f3-c259dd48310d,SESCO,II.1.1,Buenos Aires,AR-B,annual,2011,bioetanol combustion consumption by to the public,2.2294335105000003,TJ,CH4,10.0,kg/TJ,22.294335105000002,kg +e241926b-862b-38b7-b941-f5a787bcf8e3,SESCO,II.1.1,Buenos Aires,AR-B,annual,2011,bioetanol combustion consumption by to the public,2.2294335105000003,TJ,N2O,0.6,kg/TJ,1.3376601063000002,kg +9c007782-ce89-390b-b963-2995ef85067a,SESCO,II.1.1,Chubut,AR-U,annual,2011,bioetanol combustion consumption by to the public,0.550235187,TJ,CH4,10.0,kg/TJ,5.50235187,kg +1d8587e8-f01c-3792-a67d-64ba38b739a6,SESCO,II.1.1,Chubut,AR-U,annual,2011,bioetanol combustion consumption by to the public,0.550235187,TJ,N2O,0.6,kg/TJ,0.3301411122,kg +78c20000-257e-3af1-a691-d9e278373aab,SESCO,II.1.1,Entre Rios,AR-E,annual,2011,bioetanol combustion consumption by to the public,0.02038952736,TJ,CH4,10.0,kg/TJ,0.20389527359999998,kg +a48e36a3-3c40-31ff-948f-e15a35bd2f8a,SESCO,II.1.1,Entre Rios,AR-E,annual,2011,bioetanol combustion consumption by to the public,0.02038952736,TJ,N2O,0.6,kg/TJ,0.012233716415999999,kg +08330d11-b3b0-3dc8-8f1a-b475b660811b,SESCO,II.1.1,La Pampa,AR-L,annual,2011,bioetanol combustion consumption by to the public,0.01258666452,TJ,CH4,10.0,kg/TJ,0.12586664520000002,kg +714663bc-7eea-34fd-b0c0-6b9b1a3d0ba5,SESCO,II.1.1,La Pampa,AR-L,annual,2011,bioetanol combustion consumption by to the public,0.01258666452,TJ,N2O,0.6,kg/TJ,0.007551998712,kg +e03a3267-ca72-3fc0-a206-44a46edd9c14,SESCO,II.1.1,Neuquén,AR-Q,annual,2011,bioetanol combustion consumption by to the public,0.19500425352,TJ,CH4,10.0,kg/TJ,1.9500425352000001,kg +a9bd3949-26fc-3a32-80ab-8121b8b32c5b,SESCO,II.1.1,Neuquén,AR-Q,annual,2011,bioetanol combustion consumption by to the public,0.19500425352,TJ,N2O,0.6,kg/TJ,0.117002552112,kg +32e7992b-2e43-3b3a-96d7-9a7c956ff0bb,SESCO,II.1.1,Rio Negro,AR-R,annual,2011,bioetanol combustion consumption by to the public,1.2057182715599999,TJ,CH4,10.0,kg/TJ,12.0571827156,kg +d9553ed5-e9e8-39fe-b3c8-d1a4c1df0794,SESCO,II.1.1,Rio Negro,AR-R,annual,2011,bioetanol combustion consumption by to the public,1.2057182715599999,TJ,N2O,0.6,kg/TJ,0.723430962936,kg +562016be-206c-3a9f-9c3e-79efaf60e871,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2011,bioetanol combustion consumption by to the public,0.031785354179999996,TJ,CH4,10.0,kg/TJ,0.3178535418,kg +cd3bf8b1-9eea-332c-9cf6-54b40839413d,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2011,bioetanol combustion consumption by to the public,0.031785354179999996,TJ,N2O,0.6,kg/TJ,0.019071212507999997,kg +9708532c-caa4-3d5f-a455-19f105943aaa,SESCO,II.1.1,Santa Fe,AR-S,annual,2011,bioetanol combustion consumption by to the public,0.00252099702,TJ,CH4,10.0,kg/TJ,0.0252099702,kg +d15500d5-6e0d-3dbf-969a-7be948de5a2e,SESCO,II.1.1,Santa Fe,AR-S,annual,2011,bioetanol combustion consumption by to the public,0.00252099702,TJ,N2O,0.6,kg/TJ,0.001512598212,kg +e5de3e19-7ffb-3d39-ad83-68b048e86762,SESCO,II.1.1,Buenos Aires,AR-B,annual,2011,bioetanol combustion consumption by to the public,76.43144023560001,TJ,CH4,10.0,kg/TJ,764.3144023560001,kg +5e4890b7-d382-3679-851d-c0ae177b877e,SESCO,II.1.1,Buenos Aires,AR-B,annual,2011,bioetanol combustion consumption by to the public,76.43144023560001,TJ,N2O,0.6,kg/TJ,45.85886414136,kg +0044efcc-08c5-3c40-829e-7c8b0081c421,SESCO,II.1.1,Capital Federal,AR-C,annual,2011,bioetanol combustion consumption by to the public,10.800039002039998,TJ,CH4,10.0,kg/TJ,108.00039002039998,kg +04263c9c-389c-30a5-85f9-280b5aa4921b,SESCO,II.1.1,Capital Federal,AR-C,annual,2011,bioetanol combustion consumption by to the public,10.800039002039998,TJ,N2O,0.6,kg/TJ,6.480023401223999,kg +d1a73453-45cd-3e11-ab8b-29e2397a15e2,SESCO,II.1.1,Catamarca,AR-K,annual,2011,bioetanol combustion consumption by to the public,0.7720224242399999,TJ,CH4,10.0,kg/TJ,7.720224242399999,kg +4b3c672d-08d3-315b-8792-7f360fa67813,SESCO,II.1.1,Catamarca,AR-K,annual,2011,bioetanol combustion consumption by to the public,0.7720224242399999,TJ,N2O,0.6,kg/TJ,0.4632134545439999,kg +f2446868-e01e-37ad-9bdc-03a16ce38110,SESCO,II.1.1,Chaco,AR-H,annual,2011,bioetanol combustion consumption by to the public,1.48508070084,TJ,CH4,10.0,kg/TJ,14.8508070084,kg +35ee4c2b-6222-33d6-8f62-ac92d924f33b,SESCO,II.1.1,Chaco,AR-H,annual,2011,bioetanol combustion consumption by to the public,1.48508070084,TJ,N2O,0.6,kg/TJ,0.891048420504,kg +6e222643-324b-3be5-89de-7f048d17f72d,SESCO,II.1.1,Chubut,AR-U,annual,2011,bioetanol combustion consumption by to the public,19.42654569588,TJ,CH4,10.0,kg/TJ,194.26545695880003,kg +98d26409-5b9e-32d1-a83d-a061a4c18018,SESCO,II.1.1,Chubut,AR-U,annual,2011,bioetanol combustion consumption by to the public,19.42654569588,TJ,N2O,0.6,kg/TJ,11.655927417528,kg +c4478702-5bed-34c1-a4b2-92ff9456e1dd,SESCO,II.1.1,Corrientes,AR-W,annual,2011,bioetanol combustion consumption by to the public,2.07001506636,TJ,CH4,10.0,kg/TJ,20.7001506636,kg +1633c064-a3eb-39e3-9ddb-badcaa764f71,SESCO,II.1.1,Corrientes,AR-W,annual,2011,bioetanol combustion consumption by to the public,2.07001506636,TJ,N2O,0.6,kg/TJ,1.242009039816,kg +891a4b68-9fb2-307c-96ea-d63e7ba0e423,SESCO,II.1.1,Córdoba,AR-X,annual,2011,bioetanol combustion consumption by to the public,13.267985161139999,TJ,CH4,10.0,kg/TJ,132.67985161139998,kg +0c7a943e-acb8-3112-9d08-80d45785f696,SESCO,II.1.1,Córdoba,AR-X,annual,2011,bioetanol combustion consumption by to the public,13.267985161139999,TJ,N2O,0.6,kg/TJ,7.960791096683999,kg +109fb094-544b-377b-9974-d0a4eb9e6ede,SESCO,II.1.1,Entre Rios,AR-E,annual,2011,bioetanol combustion consumption by to the public,3.33758659842,TJ,CH4,10.0,kg/TJ,33.375865984200004,kg +cbd23d8b-6291-393d-ba5a-cb5d65fb08db,SESCO,II.1.1,Entre Rios,AR-E,annual,2011,bioetanol combustion consumption by to the public,3.33758659842,TJ,N2O,0.6,kg/TJ,2.002551959052,kg +82b93641-54ed-3cf0-9134-c33a633ccf9a,SESCO,II.1.1,Formosa,AR-P,annual,2011,bioetanol combustion consumption by to the public,0.20718999558,TJ,CH4,10.0,kg/TJ,2.0718999558,kg +9e144b0e-6f1d-3e8f-a356-591f15936a58,SESCO,II.1.1,Formosa,AR-P,annual,2011,bioetanol combustion consumption by to the public,0.20718999558,TJ,N2O,0.6,kg/TJ,0.124313997348,kg +f9898260-50e1-371f-a470-cfd9c2b0646e,SESCO,II.1.1,Jujuy,AR-Y,annual,2011,bioetanol combustion consumption by to the public,0.10248234210000001,TJ,CH4,10.0,kg/TJ,1.0248234210000002,kg +925d9af1-79be-31e5-ab27-9d69591e08c9,SESCO,II.1.1,Jujuy,AR-Y,annual,2011,bioetanol combustion consumption by to the public,0.10248234210000001,TJ,N2O,0.6,kg/TJ,0.061489405260000005,kg +7ef05e80-56fe-3310-bbc7-9f70e4f166b2,SESCO,II.1.1,La Pampa,AR-L,annual,2011,bioetanol combustion consumption by to the public,3.00791926494,TJ,CH4,10.0,kg/TJ,30.0791926494,kg +0b255e24-18d6-3322-8e3e-c595f68acb5c,SESCO,II.1.1,La Pampa,AR-L,annual,2011,bioetanol combustion consumption by to the public,3.00791926494,TJ,N2O,0.6,kg/TJ,1.804751558964,kg +1fc505ed-08de-3e7a-8bb0-68467959a822,SESCO,II.1.1,La Rioja,AR-F,annual,2011,bioetanol combustion consumption by to the public,0.40127523767999995,TJ,CH4,10.0,kg/TJ,4.0127523768,kg +f5e7a43f-0b7d-3b97-9aab-24c0578a1150,SESCO,II.1.1,La Rioja,AR-F,annual,2011,bioetanol combustion consumption by to the public,0.40127523767999995,TJ,N2O,0.6,kg/TJ,0.24076514260799997,kg +b70efe1c-f6e8-3f3e-aa0a-3df8557521ee,SESCO,II.1.1,Mendoza,AR-M,annual,2011,bioetanol combustion consumption by to the public,1.6917014802600001,TJ,CH4,10.0,kg/TJ,16.9170148026,kg +4b72a74b-32f2-3914-82a2-f47b8a094380,SESCO,II.1.1,Mendoza,AR-M,annual,2011,bioetanol combustion consumption by to the public,1.6917014802600001,TJ,N2O,0.6,kg/TJ,1.0150208881560001,kg +75bee87d-4441-3a10-9d93-1ece81cf765c,SESCO,II.1.1,Misiones,AR-N,annual,2011,bioetanol combustion consumption by to the public,0.70720378614,TJ,CH4,10.0,kg/TJ,7.0720378614,kg +1f836740-2c40-3c4a-8821-20e794ebbbe7,SESCO,II.1.1,Misiones,AR-N,annual,2011,bioetanol combustion consumption by to the public,0.70720378614,TJ,N2O,0.6,kg/TJ,0.424322271684,kg +49d2a5d5-851d-3389-8ffc-57213da65b15,SESCO,II.1.1,Neuquén,AR-Q,annual,2011,bioetanol combustion consumption by to the public,7.3109706051600005,TJ,CH4,10.0,kg/TJ,73.1097060516,kg +457f8baf-2fef-3bd1-90f7-93a310f94f6f,SESCO,II.1.1,Neuquén,AR-Q,annual,2011,bioetanol combustion consumption by to the public,7.3109706051600005,TJ,N2O,0.6,kg/TJ,4.386582363096,kg +3ada4402-09c8-32e6-8e83-40b05802cbc1,SESCO,II.1.1,Rio Negro,AR-R,annual,2011,bioetanol combustion consumption by to the public,14.339115339300001,TJ,CH4,10.0,kg/TJ,143.39115339300002,kg +b34472d1-3a56-30db-81ae-d28db9d786ac,SESCO,II.1.1,Rio Negro,AR-R,annual,2011,bioetanol combustion consumption by to the public,14.339115339300001,TJ,N2O,0.6,kg/TJ,8.60346920358,kg +1747531f-f72d-3083-8dbd-db452319893d,SESCO,II.1.1,Salta,AR-A,annual,2011,bioetanol combustion consumption by to the public,0.13595617206,TJ,CH4,10.0,kg/TJ,1.3595617206,kg +034a6766-43e9-3d22-ab8a-dc8f9f3474e7,SESCO,II.1.1,Salta,AR-A,annual,2011,bioetanol combustion consumption by to the public,0.13595617206,TJ,N2O,0.6,kg/TJ,0.081573703236,kg +ad6640a8-6df5-32da-8403-cc26d5666da0,SESCO,II.1.1,San Juan,AR-J,annual,2011,bioetanol combustion consumption by to the public,1.02166035156,TJ,CH4,10.0,kg/TJ,10.2166035156,kg +a6c1a8a3-1e82-3815-ad34-8a542d0de350,SESCO,II.1.1,San Juan,AR-J,annual,2011,bioetanol combustion consumption by to the public,1.02166035156,TJ,N2O,0.6,kg/TJ,0.612996210936,kg +cb45aafb-b47d-31f8-8878-525458d63745,SESCO,II.1.1,San Luis,AR-D,annual,2011,bioetanol combustion consumption by to the public,0.5893278962399999,TJ,CH4,10.0,kg/TJ,5.893278962399999,kg +52e413fb-ef0f-3723-819f-7622bf3ee33f,SESCO,II.1.1,San Luis,AR-D,annual,2011,bioetanol combustion consumption by to the public,0.5893278962399999,TJ,N2O,0.6,kg/TJ,0.35359673774399997,kg +d8645201-7d28-32c9-949c-0bcff5521e0a,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2011,bioetanol combustion consumption by to the public,12.99434088312,TJ,CH4,10.0,kg/TJ,129.9434088312,kg +6059f466-0c14-38c2-87da-384d80399e3f,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2011,bioetanol combustion consumption by to the public,12.99434088312,TJ,N2O,0.6,kg/TJ,7.796604529871999,kg +fda6dbca-36c7-3f90-bbb1-71ce1e8a43e5,SESCO,II.1.1,Santa Fe,AR-S,annual,2011,bioetanol combustion consumption by to the public,13.17330951642,TJ,CH4,10.0,kg/TJ,131.7330951642,kg +aae3b821-32e3-342d-b4be-a79767698a1d,SESCO,II.1.1,Santa Fe,AR-S,annual,2011,bioetanol combustion consumption by to the public,13.17330951642,TJ,N2O,0.6,kg/TJ,7.903985709852,kg +d3bb8890-3ead-3be3-b1d4-58835ee0b98a,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2011,bioetanol combustion consumption by to the public,0.76197805974,TJ,CH4,10.0,kg/TJ,7.6197805974,kg +52aedc99-3e9d-3178-b919-9c587b59faba,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2011,bioetanol combustion consumption by to the public,0.76197805974,TJ,N2O,0.6,kg/TJ,0.457186835844,kg +80e209eb-d7f3-31c4-a096-9807ff897112,SESCO,II.1.1,Tucuman,AR-T,annual,2011,bioetanol combustion consumption by to the public,1.1069805708,TJ,CH4,10.0,kg/TJ,11.069805708,kg +c9e8ba13-35cb-3853-9890-eee3cafe16d8,SESCO,II.1.1,Tucuman,AR-T,annual,2011,bioetanol combustion consumption by to the public,1.1069805708,TJ,N2O,0.6,kg/TJ,0.66418834248,kg +992db803-0e58-3272-b507-ad112b3ab134,SESCO,II.1.1,Buenos Aires,AR-B,annual,2011,bioetanol combustion consumption by to the public,18.1953077085,TJ,CH4,10.0,kg/TJ,181.953077085,kg +81fa22e7-fcf4-3fee-b3f9-f5592805c9bc,SESCO,II.1.1,Buenos Aires,AR-B,annual,2011,bioetanol combustion consumption by to the public,18.1953077085,TJ,N2O,0.6,kg/TJ,10.917184625099999,kg +0a611b8d-763c-3a51-b6ee-253005a5bbec,SESCO,II.1.1,Capital Federal,AR-C,annual,2011,bioetanol combustion consumption by to the public,3.16507916502,TJ,CH4,10.0,kg/TJ,31.6507916502,kg +46d9462b-2e33-34a7-bb5a-17676802b733,SESCO,II.1.1,Capital Federal,AR-C,annual,2011,bioetanol combustion consumption by to the public,3.16507916502,TJ,N2O,0.6,kg/TJ,1.8990474990119999,kg +4218d985-37e1-34ea-b6a8-5988bb667e64,SESCO,II.1.1,Catamarca,AR-K,annual,2011,bioetanol combustion consumption by to the public,0.08596910862,TJ,CH4,10.0,kg/TJ,0.8596910862,kg +456ee6ec-ec76-3b65-b6a4-aedb7bf1dd26,SESCO,II.1.1,Catamarca,AR-K,annual,2011,bioetanol combustion consumption by to the public,0.08596910862,TJ,N2O,0.6,kg/TJ,0.051581465172,kg +11fde66b-09ef-3357-9ce9-71319b9c7bc8,SESCO,II.1.1,Chaco,AR-H,annual,2011,bioetanol combustion consumption by to the public,0.11657768508,TJ,CH4,10.0,kg/TJ,1.1657768508,kg +7bdda4a3-8e67-3b62-b33e-9ab562197a72,SESCO,II.1.1,Chaco,AR-H,annual,2011,bioetanol combustion consumption by to the public,0.11657768508,TJ,N2O,0.6,kg/TJ,0.069946611048,kg +0ba0c022-4f5d-368c-b469-a340c5c6948b,SESCO,II.1.1,Chubut,AR-U,annual,2011,bioetanol combustion consumption by to the public,3.02976037872,TJ,CH4,10.0,kg/TJ,30.297603787199996,kg +d73db366-acd5-39e0-8133-c48b497bb8ff,SESCO,II.1.1,Chubut,AR-U,annual,2011,bioetanol combustion consumption by to the public,3.02976037872,TJ,N2O,0.6,kg/TJ,1.8178562272319998,kg +bff79f2a-74e2-3e40-8bf5-bbe7227239d2,SESCO,II.1.1,Corrientes,AR-W,annual,2011,bioetanol combustion consumption by to the public,0.27823677876,TJ,CH4,10.0,kg/TJ,2.7823677876,kg +2e2fcd67-28d4-3d35-ad0a-885ba0de8c59,SESCO,II.1.1,Corrientes,AR-W,annual,2011,bioetanol combustion consumption by to the public,0.27823677876,TJ,N2O,0.6,kg/TJ,0.166942067256,kg +255da746-7c06-3ded-9023-e383b6b0c245,SESCO,II.1.1,Córdoba,AR-X,annual,2011,bioetanol combustion consumption by to the public,2.5483441071599997,TJ,CH4,10.0,kg/TJ,25.483441071599998,kg +cbf5f4a9-4015-332a-8c49-3d2c27569248,SESCO,II.1.1,Córdoba,AR-X,annual,2011,bioetanol combustion consumption by to the public,2.5483441071599997,TJ,N2O,0.6,kg/TJ,1.5290064642959997,kg +673c29d1-80f1-31b4-8a60-aba24549f6e5,SESCO,II.1.1,Entre Rios,AR-E,annual,2011,bioetanol combustion consumption by to the public,0.6487722134999999,TJ,CH4,10.0,kg/TJ,6.487722134999999,kg +16ab46ce-85e7-3f5e-a1fb-ee368dd61c19,SESCO,II.1.1,Entre Rios,AR-E,annual,2011,bioetanol combustion consumption by to the public,0.6487722134999999,TJ,N2O,0.6,kg/TJ,0.3892633280999999,kg +a09f74c5-2934-3568-9bc1-0c28389ebbb3,SESCO,II.1.1,Jujuy,AR-Y,annual,2011,bioetanol combustion consumption by to the public,0.01727588088,TJ,CH4,10.0,kg/TJ,0.1727588088,kg +8485e2ce-621b-3c1f-a2b5-011117fdd541,SESCO,II.1.1,Jujuy,AR-Y,annual,2011,bioetanol combustion consumption by to the public,0.01727588088,TJ,N2O,0.6,kg/TJ,0.010365528528,kg +cf58640c-7e2d-34b2-8d15-ab51b0f88326,SESCO,II.1.1,La Pampa,AR-L,annual,2011,bioetanol combustion consumption by to the public,0.6550992044999999,TJ,CH4,10.0,kg/TJ,6.550992044999999,kg +694e9e46-ac9a-3e06-933e-9a4bae42fe7e,SESCO,II.1.1,La Pampa,AR-L,annual,2011,bioetanol combustion consumption by to the public,0.6550992044999999,TJ,N2O,0.6,kg/TJ,0.39305952269999994,kg +f9c5b7da-025d-39ad-b217-c3126bf76cb6,SESCO,II.1.1,La Rioja,AR-F,annual,2011,bioetanol combustion consumption by to the public,0.0404437455,TJ,CH4,10.0,kg/TJ,0.40443745500000006,kg +e81f6bb4-eec2-3475-a380-6107f4af9bcd,SESCO,II.1.1,La Rioja,AR-F,annual,2011,bioetanol combustion consumption by to the public,0.0404437455,TJ,N2O,0.6,kg/TJ,0.024266247300000002,kg +52504edf-9001-31a0-80e6-7c1b068b1926,SESCO,II.1.1,Mendoza,AR-M,annual,2011,bioetanol combustion consumption by to the public,0.23452131852000002,TJ,CH4,10.0,kg/TJ,2.3452131852000004,kg +d53d3bf7-8a8c-3439-9d6c-9f54a4ae40ff,SESCO,II.1.1,Mendoza,AR-M,annual,2011,bioetanol combustion consumption by to the public,0.23452131852000002,TJ,N2O,0.6,kg/TJ,0.140712791112,kg +16527381-f421-39dc-a70a-754f12cd074c,SESCO,II.1.1,Misiones,AR-N,annual,2011,bioetanol combustion consumption by to the public,0.09464241204,TJ,CH4,10.0,kg/TJ,0.9464241204,kg +a1896251-492a-32fe-bf24-5205b0a91b8c,SESCO,II.1.1,Misiones,AR-N,annual,2011,bioetanol combustion consumption by to the public,0.09464241204,TJ,N2O,0.6,kg/TJ,0.056785447223999995,kg +0f563d14-e3ba-3c68-80d1-6932f115fd0c,SESCO,II.1.1,Neuquén,AR-Q,annual,2011,bioetanol combustion consumption by to the public,1.79405472618,TJ,CH4,10.0,kg/TJ,17.9405472618,kg +80111c19-ec9a-349a-b6a4-6d259892d52e,SESCO,II.1.1,Neuquén,AR-Q,annual,2011,bioetanol combustion consumption by to the public,1.79405472618,TJ,N2O,0.6,kg/TJ,1.076432835708,kg +05b151de-0b7c-31b1-854a-638f16abc873,SESCO,II.1.1,Rio Negro,AR-R,annual,2011,bioetanol combustion consumption by to the public,2.11575175524,TJ,CH4,10.0,kg/TJ,21.157517552399998,kg +14504416-d35f-3e2a-b2c4-12bdcef09644,SESCO,II.1.1,Rio Negro,AR-R,annual,2011,bioetanol combustion consumption by to the public,2.11575175524,TJ,N2O,0.6,kg/TJ,1.2694510531439998,kg +6a03fdbd-500f-3cc5-9f52-378cea7ad100,SESCO,II.1.1,Salta,AR-A,annual,2011,bioetanol combustion consumption by to the public,0.01765635246,TJ,CH4,10.0,kg/TJ,0.1765635246,kg +0036f159-6305-30b9-9a4b-e141e4bb0501,SESCO,II.1.1,Salta,AR-A,annual,2011,bioetanol combustion consumption by to the public,0.01765635246,TJ,N2O,0.6,kg/TJ,0.010593811476,kg +7df49116-435a-3512-81c5-4549631c5e16,SESCO,II.1.1,San Juan,AR-J,annual,2011,bioetanol combustion consumption by to the public,0.1717341345,TJ,CH4,10.0,kg/TJ,1.717341345,kg +2bf8eeae-adba-363c-a422-fd8f9d3fdd4f,SESCO,II.1.1,San Juan,AR-J,annual,2011,bioetanol combustion consumption by to the public,0.1717341345,TJ,N2O,0.6,kg/TJ,0.10304048069999999,kg +a92d848c-0e6b-3e39-9a5c-c152479681cf,SESCO,II.1.1,San Luis,AR-D,annual,2011,bioetanol combustion consumption by to the public,0.1077761376,TJ,CH4,10.0,kg/TJ,1.077761376,kg +9d2d30d7-b34a-3e10-8eb4-d46e2a3142c0,SESCO,II.1.1,San Luis,AR-D,annual,2011,bioetanol combustion consumption by to the public,0.1077761376,TJ,N2O,0.6,kg/TJ,0.06466568255999999,kg +19259d69-e98b-3f23-b05b-9a082b7e1463,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2011,bioetanol combustion consumption by to the public,2.35156446162,TJ,CH4,10.0,kg/TJ,23.515644616200003,kg +c72fdb80-f839-3568-9842-b2ccbd26a977,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2011,bioetanol combustion consumption by to the public,2.35156446162,TJ,N2O,0.6,kg/TJ,1.410938676972,kg +362ee695-3205-394f-958a-c7646255f8e8,SESCO,II.1.1,Santa Fe,AR-S,annual,2011,bioetanol combustion consumption by to the public,3.7788249859199996,TJ,CH4,10.0,kg/TJ,37.78824985919999,kg +4da27e88-f2cb-3d19-9583-6971b1f8406f,SESCO,II.1.1,Santa Fe,AR-S,annual,2011,bioetanol combustion consumption by to the public,3.7788249859199996,TJ,N2O,0.6,kg/TJ,2.2672949915519998,kg +b811f0d5-a436-32ff-8703-0763c2abfcb4,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2011,bioetanol combustion consumption by to the public,0.08925232697999999,TJ,CH4,10.0,kg/TJ,0.8925232697999999,kg +e3fb6a85-4f9e-3087-8c0b-4962504959f5,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2011,bioetanol combustion consumption by to the public,0.08925232697999999,TJ,N2O,0.6,kg/TJ,0.05355139618799999,kg +b1069a51-ba6a-3f00-8524-31f2481f2854,SESCO,II.1.1,Tucuman,AR-T,annual,2011,bioetanol combustion consumption by to the public,0.11960484138,TJ,CH4,10.0,kg/TJ,1.1960484137999998,kg +7ded0916-18e9-377f-9534-82c3f700aa65,SESCO,II.1.1,Tucuman,AR-T,annual,2011,bioetanol combustion consumption by to the public,0.11960484138,TJ,N2O,0.6,kg/TJ,0.07176290482799999,kg +57d075e3-0047-3c51-a85e-ba4f5617f610,SESCO,I.3.1,La Pampa,AR-L,annual,2011,bioetanol combustion consumption by petrochemical industries,0.006832724219999999,TJ,CH4,10.0,kg/TJ,0.0683272422,kg +42329340-1a20-3262-8107-4ad68ecf7a4c,SESCO,I.3.1,La Pampa,AR-L,annual,2011,bioetanol combustion consumption by petrochemical industries,0.006832724219999999,TJ,N2O,0.6,kg/TJ,0.004099634531999999,kg +7883db2b-f218-37cb-a714-622899d629f2,SESCO,I.3.1,La Pampa,AR-L,annual,2011,bioetanol combustion consumption by petrochemical industries,0.0085148091,TJ,CH4,10.0,kg/TJ,0.085148091,kg +2c20889f-358a-3720-a4f5-43e8f76ad9b2,SESCO,I.3.1,La Pampa,AR-L,annual,2011,bioetanol combustion consumption by petrochemical industries,0.0085148091,TJ,N2O,0.6,kg/TJ,0.0051088854599999995,kg +900c7368-cd17-38d9-9b0f-988a9ae88a88,SESCO,II.1.1,Buenos Aires,AR-B,annual,2011,bioetanol combustion consumption by to the public,1.4189076180000002,TJ,CH4,10.0,kg/TJ,14.189076180000002,kg +f7f85055-a185-3250-aa73-e5761d6e1425,SESCO,II.1.1,Buenos Aires,AR-B,annual,2011,bioetanol combustion consumption by to the public,1.4189076180000002,TJ,N2O,0.6,kg/TJ,0.8513445708000001,kg +4c6ab6c9-e57d-32a1-951e-22c31d2eaf19,SESCO,II.1.1,Capital Federal,AR-C,annual,2011,bioetanol combustion consumption by to the public,0.0008521199999999999,TJ,CH4,10.0,kg/TJ,0.0085212,kg +cf9c2973-0403-3549-ba82-de993fcf4ec7,SESCO,II.1.1,Capital Federal,AR-C,annual,2011,bioetanol combustion consumption by to the public,0.0008521199999999999,TJ,N2O,0.6,kg/TJ,0.0005112719999999999,kg +a65177d1-9180-3080-a59d-a88429392216,SESCO,II.1.1,Chaco,AR-H,annual,2011,bioetanol combustion consumption by to the public,0.0068169599999999995,TJ,CH4,10.0,kg/TJ,0.0681696,kg +23146f26-1011-3e43-a7c1-22232ca84ba7,SESCO,II.1.1,Chaco,AR-H,annual,2011,bioetanol combustion consumption by to the public,0.0068169599999999995,TJ,N2O,0.6,kg/TJ,0.004090175999999999,kg +5f3c7673-2996-3d73-be6e-99408fc6223f,SESCO,II.1.1,Corrientes,AR-W,annual,2011,bioetanol combustion consumption by to the public,0.01405998,TJ,CH4,10.0,kg/TJ,0.1405998,kg +61e3d07b-d0bc-3128-8152-644dbe99a6b8,SESCO,II.1.1,Corrientes,AR-W,annual,2011,bioetanol combustion consumption by to the public,0.01405998,TJ,N2O,0.6,kg/TJ,0.008435988,kg +a5cf0fff-0aec-39a2-9605-a22b3479bb01,SESCO,II.1.1,Córdoba,AR-X,annual,2011,bioetanol combustion consumption by to the public,0.56623374,TJ,CH4,10.0,kg/TJ,5.6623374,kg +a1abec36-3b08-323e-bcba-4dc3780dbfc4,SESCO,II.1.1,Córdoba,AR-X,annual,2011,bioetanol combustion consumption by to the public,0.56623374,TJ,N2O,0.6,kg/TJ,0.339740244,kg +fac193a0-19f5-3930-98fb-de122437c26e,SESCO,II.1.1,Entre Rios,AR-E,annual,2011,bioetanol combustion consumption by to the public,0.13165253999999998,TJ,CH4,10.0,kg/TJ,1.3165253999999997,kg +699f40cc-7045-3df5-a03a-95842ad91fe1,SESCO,II.1.1,Entre Rios,AR-E,annual,2011,bioetanol combustion consumption by to the public,0.13165253999999998,TJ,N2O,0.6,kg/TJ,0.078991524,kg +1ce0b3af-4d5c-382b-9fb7-1ca05bcf56bd,SESCO,II.1.1,Santa Fe,AR-S,annual,2011,bioetanol combustion consumption by to the public,0.38132370000000004,TJ,CH4,10.0,kg/TJ,3.8132370000000004,kg +1e4d6afb-a6ef-3f8d-ae54-2a4db915126e,SESCO,II.1.1,Santa Fe,AR-S,annual,2011,bioetanol combustion consumption by to the public,0.38132370000000004,TJ,N2O,0.6,kg/TJ,0.22879422000000002,kg +026c98c1-3a3c-30b3-ae96-348137655b01,SESCO,II.1.1,Buenos Aires,AR-B,annual,2011,bioetanol combustion consumption by to the public,15.288566616,TJ,CH4,10.0,kg/TJ,152.88566616,kg +36f9e7b6-6ece-3ac9-a55b-6cce7429ef54,SESCO,II.1.1,Buenos Aires,AR-B,annual,2011,bioetanol combustion consumption by to the public,15.288566616,TJ,N2O,0.6,kg/TJ,9.1731399696,kg +76bcdeb7-8f63-31b5-8d7b-11c8cc2a9d4a,SESCO,II.1.1,Capital Federal,AR-C,annual,2011,bioetanol combustion consumption by to the public,0.48400415999999996,TJ,CH4,10.0,kg/TJ,4.840041599999999,kg +0d5ada12-1bf8-3a3f-a6f4-bd30613dfc91,SESCO,II.1.1,Capital Federal,AR-C,annual,2011,bioetanol combustion consumption by to the public,0.48400415999999996,TJ,N2O,0.6,kg/TJ,0.29040249599999995,kg +6f1f9e8e-2d20-31c3-be65-c98d667e4bca,SESCO,II.1.1,Chaco,AR-H,annual,2011,bioetanol combustion consumption by to the public,0.06518718,TJ,CH4,10.0,kg/TJ,0.6518718,kg +1c018b0d-93e7-371a-92d0-5fa877cce991,SESCO,II.1.1,Chaco,AR-H,annual,2011,bioetanol combustion consumption by to the public,0.06518718,TJ,N2O,0.6,kg/TJ,0.039112308,kg +4fed3264-0f6d-3b64-8d32-c2d76411ed0b,SESCO,II.1.1,Corrientes,AR-W,annual,2011,bioetanol combustion consumption by to the public,0.0383454,TJ,CH4,10.0,kg/TJ,0.383454,kg +24f070b4-08ff-3f62-bdcd-1e9497ffe9a0,SESCO,II.1.1,Corrientes,AR-W,annual,2011,bioetanol combustion consumption by to the public,0.0383454,TJ,N2O,0.6,kg/TJ,0.02300724,kg +9f10ace9-da24-3baa-98d9-b21aed7450da,SESCO,II.1.1,Córdoba,AR-X,annual,2011,bioetanol combustion consumption by to the public,5.4003105,TJ,CH4,10.0,kg/TJ,54.003105,kg +fcfc1b1c-06bb-3798-bc4b-0c39add9bad6,SESCO,II.1.1,Córdoba,AR-X,annual,2011,bioetanol combustion consumption by to the public,5.4003105,TJ,N2O,0.6,kg/TJ,3.2401863,kg +a952e414-923d-3013-88d3-e8fa0013f278,SESCO,II.1.1,Entre Rios,AR-E,annual,2011,bioetanol combustion consumption by to the public,1.9056385619999998,TJ,CH4,10.0,kg/TJ,19.056385619999997,kg +f827f4cb-6630-393f-93dc-a30ce2dc4983,SESCO,II.1.1,Entre Rios,AR-E,annual,2011,bioetanol combustion consumption by to the public,1.9056385619999998,TJ,N2O,0.6,kg/TJ,1.1433831371999998,kg +1400762a-2ce6-3140-988c-c7f8bc6bc1fb,SESCO,II.1.1,Santa Fe,AR-S,annual,2011,bioetanol combustion consumption by to the public,2.45325348,TJ,CH4,10.0,kg/TJ,24.5325348,kg +0473618f-e414-37f2-85a4-9ef4895fee87,SESCO,II.1.1,Santa Fe,AR-S,annual,2011,bioetanol combustion consumption by to the public,2.45325348,TJ,N2O,0.6,kg/TJ,1.4719520879999999,kg +e4ee9430-ceca-31b5-a1dc-7fb75acdf691,SESCO,II.1.1,Buenos Aires,AR-B,annual,2011,bioetanol combustion consumption by to the public,1.818764928,TJ,CH4,10.0,kg/TJ,18.18764928,kg +57064dba-6bea-375b-8b08-05a2bfd3cb7e,SESCO,II.1.1,Buenos Aires,AR-B,annual,2011,bioetanol combustion consumption by to the public,1.818764928,TJ,N2O,0.6,kg/TJ,1.0912589568,kg +d55b87ab-b6c3-3cc0-a799-b7b3c6579796,SESCO,II.1.1,Capital Federal,AR-C,annual,2011,bioetanol combustion consumption by to the public,0.025989659999999998,TJ,CH4,10.0,kg/TJ,0.2598966,kg +45285bc9-964b-31ef-8a74-f91aff1f05fd,SESCO,II.1.1,Capital Federal,AR-C,annual,2011,bioetanol combustion consumption by to the public,0.025989659999999998,TJ,N2O,0.6,kg/TJ,0.015593795999999998,kg +967abba2-c04a-3722-ba6a-d55f191eb5d9,SESCO,II.1.1,Chaco,AR-H,annual,2011,bioetanol combustion consumption by to the public,0.0017042399999999999,TJ,CH4,10.0,kg/TJ,0.0170424,kg +712a02f9-ab94-3019-976a-a48a0076e110,SESCO,II.1.1,Chaco,AR-H,annual,2011,bioetanol combustion consumption by to the public,0.0017042399999999999,TJ,N2O,0.6,kg/TJ,0.0010225439999999998,kg +945474ae-87b7-3f12-9226-83815f5641d9,SESCO,II.1.1,Corrientes,AR-W,annual,2011,bioetanol combustion consumption by to the public,0.0034084799999999998,TJ,CH4,10.0,kg/TJ,0.0340848,kg +625dd9f5-c503-32bd-aa48-3023cdcaa470,SESCO,II.1.1,Corrientes,AR-W,annual,2011,bioetanol combustion consumption by to the public,0.0034084799999999998,TJ,N2O,0.6,kg/TJ,0.0020450879999999996,kg +824543f2-2ce8-3962-94f7-e2249369bd39,SESCO,II.1.1,Córdoba,AR-X,annual,2011,bioetanol combustion consumption by to the public,0.6276289859999999,TJ,CH4,10.0,kg/TJ,6.276289859999999,kg +0220e2c9-9480-3aaf-bfe9-60e8483d89c0,SESCO,II.1.1,Córdoba,AR-X,annual,2011,bioetanol combustion consumption by to the public,0.6276289859999999,TJ,N2O,0.6,kg/TJ,0.3765773916,kg +3ded5fd1-48e9-3f79-b440-8579df39b158,SESCO,II.1.1,Entre Rios,AR-E,annual,2011,bioetanol combustion consumption by to the public,0.30292866,TJ,CH4,10.0,kg/TJ,3.0292866000000003,kg +d121cfe7-2f83-370b-ba28-320ba069be41,SESCO,II.1.1,Entre Rios,AR-E,annual,2011,bioetanol combustion consumption by to the public,0.30292866,TJ,N2O,0.6,kg/TJ,0.181757196,kg +ada1b83f-0a2f-3e29-bb30-0ccdc8bb7198,SESCO,II.1.1,Santa Fe,AR-S,annual,2011,bioetanol combustion consumption by to the public,0.44480664,TJ,CH4,10.0,kg/TJ,4.4480664,kg +411c1c34-1d3f-3f8a-bebb-16013ad53d09,SESCO,II.1.1,Santa Fe,AR-S,annual,2011,bioetanol combustion consumption by to the public,0.44480664,TJ,N2O,0.6,kg/TJ,0.26688398399999996,kg +5b18f16a-590c-3035-8e6d-c3d6dcd20641,SESCO,II.1.1,Catamarca,AR-K,annual,2011,bioetanol combustion consumption by to the public,0.8018406593999999,TJ,CH4,10.0,kg/TJ,8.018406594,kg +56138584-ea42-3a08-b30d-e82008b29e74,SESCO,II.1.1,Catamarca,AR-K,annual,2011,bioetanol combustion consumption by to the public,0.8018406593999999,TJ,N2O,0.6,kg/TJ,0.48110439563999996,kg +9df4af21-89e4-3ffd-9640-858c4a6db03b,SESCO,II.1.1,Chaco,AR-H,annual,2011,bioetanol combustion consumption by to the public,0.7883388179999999,TJ,CH4,10.0,kg/TJ,7.883388179999999,kg +9629a0da-f172-3062-bfa5-31a48b202fd1,SESCO,II.1.1,Chaco,AR-H,annual,2011,bioetanol combustion consumption by to the public,0.7883388179999999,TJ,N2O,0.6,kg/TJ,0.4730032907999999,kg +18976950-50f4-3cdb-a5c0-6e66ed259251,SESCO,II.1.1,Córdoba,AR-X,annual,2011,bioetanol combustion consumption by to the public,0.0647440776,TJ,CH4,10.0,kg/TJ,0.647440776,kg +122b774c-2a4b-3e98-a765-deea2971376b,SESCO,II.1.1,Córdoba,AR-X,annual,2011,bioetanol combustion consumption by to the public,0.0647440776,TJ,N2O,0.6,kg/TJ,0.038846446560000004,kg +ebbac39c-ddc1-3ae2-b8d1-1df827f3ca14,SESCO,II.1.1,Jujuy,AR-Y,annual,2011,bioetanol combustion consumption by to the public,1.9059751493999997,TJ,CH4,10.0,kg/TJ,19.059751493999997,kg +82b22d09-57e9-39fc-8b81-4867ad5bd850,SESCO,II.1.1,Jujuy,AR-Y,annual,2011,bioetanol combustion consumption by to the public,1.9059751493999997,TJ,N2O,0.6,kg/TJ,1.1435850896399997,kg +18fb4eaa-3771-3246-a997-e2d5dbdcdad2,SESCO,II.1.1,La Rioja,AR-F,annual,2011,bioetanol combustion consumption by to the public,0.6414333299999999,TJ,CH4,10.0,kg/TJ,6.414333299999999,kg +41807f85-3c8e-3ba9-adcb-5501a6159006,SESCO,II.1.1,La Rioja,AR-F,annual,2011,bioetanol combustion consumption by to the public,0.6414333299999999,TJ,N2O,0.6,kg/TJ,0.3848599979999999,kg +1b7f7e94-1432-39e5-a1e2-150850c773b8,SESCO,II.1.1,Salta,AR-A,annual,2011,bioetanol combustion consumption by to the public,3.6473377572000003,TJ,CH4,10.0,kg/TJ,36.473377572000004,kg +87013b4c-1616-3aeb-ad56-fa14d6d69985,SESCO,II.1.1,Salta,AR-A,annual,2011,bioetanol combustion consumption by to the public,3.6473377572000003,TJ,N2O,0.6,kg/TJ,2.18840265432,kg +4336904a-18a7-372d-adc1-028b9a5ed57e,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2011,bioetanol combustion consumption by to the public,1.2347772678,TJ,CH4,10.0,kg/TJ,12.347772678,kg +0432ad7f-c2ea-3896-92fd-2520a754deb6,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2011,bioetanol combustion consumption by to the public,1.2347772678,TJ,N2O,0.6,kg/TJ,0.74086636068,kg +5eb4260a-6a03-3de1-95b5-e70d706546e6,SESCO,II.1.1,Tucuman,AR-T,annual,2011,bioetanol combustion consumption by to the public,2.8792197467999996,TJ,CH4,10.0,kg/TJ,28.792197467999998,kg +ba7d1b51-6479-338a-9b83-4a49f3d301a0,SESCO,II.1.1,Tucuman,AR-T,annual,2011,bioetanol combustion consumption by to the public,2.8792197467999996,TJ,N2O,0.6,kg/TJ,1.7275318480799997,kg +0a3739c5-112a-38a9-9f69-466d5f8f5910,SESCO,II.1.1,Catamarca,AR-K,annual,2011,bioetanol combustion consumption by to the public,2.4875001828,TJ,CH4,10.0,kg/TJ,24.875001828,kg +0caa3426-89d4-3b8a-a5f3-c6eb97e90d7e,SESCO,II.1.1,Catamarca,AR-K,annual,2011,bioetanol combustion consumption by to the public,2.4875001828,TJ,N2O,0.6,kg/TJ,1.49250010968,kg +4e206c86-9929-35c3-ba7b-2973ecf8b01a,SESCO,II.1.1,Chaco,AR-H,annual,2011,bioetanol combustion consumption by to the public,0.9554012045999999,TJ,CH4,10.0,kg/TJ,9.554012045999999,kg +7dbb5184-7e2b-3e4b-9ae6-e180e1d760fc,SESCO,II.1.1,Chaco,AR-H,annual,2011,bioetanol combustion consumption by to the public,0.9554012045999999,TJ,N2O,0.6,kg/TJ,0.5732407227599999,kg +8c7cb882-b3ca-3205-8c71-8148905dacc9,SESCO,II.1.1,Córdoba,AR-X,annual,2011,bioetanol combustion consumption by to the public,0.3005342028,TJ,CH4,10.0,kg/TJ,3.005342028,kg +e4606577-a185-3821-ad9b-01686bb72571,SESCO,II.1.1,Córdoba,AR-X,annual,2011,bioetanol combustion consumption by to the public,0.3005342028,TJ,N2O,0.6,kg/TJ,0.18032052167999998,kg +482a09a9-6351-3384-a568-caf0d05dd768,SESCO,II.1.1,Jujuy,AR-Y,annual,2011,bioetanol combustion consumption by to the public,3.3541701318,TJ,CH4,10.0,kg/TJ,33.541701318,kg +cf2e461d-b9e4-34ce-b05d-c6af48379ade,SESCO,II.1.1,Jujuy,AR-Y,annual,2011,bioetanol combustion consumption by to the public,3.3541701318,TJ,N2O,0.6,kg/TJ,2.01250207908,kg +01315e4b-49cf-3672-8021-a0bb0f991557,SESCO,II.1.1,La Rioja,AR-F,annual,2011,bioetanol combustion consumption by to the public,2.44068471,TJ,CH4,10.0,kg/TJ,24.4068471,kg +20edf589-1893-381a-9cc0-45dfcd868130,SESCO,II.1.1,La Rioja,AR-F,annual,2011,bioetanol combustion consumption by to the public,2.44068471,TJ,N2O,0.6,kg/TJ,1.4644108260000002,kg +e0ef13fc-3e79-3be2-8fbb-7691811e2cf7,SESCO,II.1.1,Salta,AR-A,annual,2011,bioetanol combustion consumption by to the public,7.686684799199999,TJ,CH4,10.0,kg/TJ,76.86684799199999,kg +4436b919-31b0-345a-a54d-eb3c283276e7,SESCO,II.1.1,Salta,AR-A,annual,2011,bioetanol combustion consumption by to the public,7.686684799199999,TJ,N2O,0.6,kg/TJ,4.61201087952,kg +efb7b5ff-399b-3732-b6b0-1950a594d834,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2011,bioetanol combustion consumption by to the public,2.4487074198,TJ,CH4,10.0,kg/TJ,24.487074198,kg +0b3787b3-1fff-352c-97f4-d049c021b820,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2011,bioetanol combustion consumption by to the public,2.4487074198,TJ,N2O,0.6,kg/TJ,1.46922445188,kg +5ae7243f-59fb-3b73-8d26-3cdaf4200d7f,SESCO,II.1.1,Tucuman,AR-T,annual,2011,bioetanol combustion consumption by to the public,14.091061076999997,TJ,CH4,10.0,kg/TJ,140.91061076999998,kg +4c48e255-fa81-32b9-a855-7aa1481b3c8f,SESCO,II.1.1,Tucuman,AR-T,annual,2011,bioetanol combustion consumption by to the public,14.091061076999997,TJ,N2O,0.6,kg/TJ,8.454636646199997,kg +6bcd2934-a904-30bf-9833-62db4f8c7580,SESCO,II.1.1,Catamarca,AR-K,annual,2011,bioetanol combustion consumption by to the public,0.1341109062,TJ,CH4,10.0,kg/TJ,1.341109062,kg +4f8280c6-44d1-305b-9617-0f08960618bd,SESCO,II.1.1,Catamarca,AR-K,annual,2011,bioetanol combustion consumption by to the public,0.1341109062,TJ,N2O,0.6,kg/TJ,0.08046654371999999,kg +b1963fbf-1c67-3ba1-925a-11426a24d6dd,SESCO,II.1.1,Chaco,AR-H,annual,2011,bioetanol combustion consumption by to the public,0.028822959000000002,TJ,CH4,10.0,kg/TJ,0.28822959000000004,kg +3c599d59-616a-37f7-8c5c-24cd5d01a6bb,SESCO,II.1.1,Chaco,AR-H,annual,2011,bioetanol combustion consumption by to the public,0.028822959000000002,TJ,N2O,0.6,kg/TJ,0.0172937754,kg +84e0e83a-a084-38f1-bfcc-10a20933b702,SESCO,II.1.1,Córdoba,AR-X,annual,2011,bioetanol combustion consumption by to the public,0.048217210200000006,TJ,CH4,10.0,kg/TJ,0.48217210200000005,kg +1119c41e-7694-3f1a-bd4d-bafa70aebd7d,SESCO,II.1.1,Córdoba,AR-X,annual,2011,bioetanol combustion consumption by to the public,0.048217210200000006,TJ,N2O,0.6,kg/TJ,0.028930326120000002,kg +f0382c56-5576-372a-a24f-6924234e5f28,SESCO,II.1.1,Jujuy,AR-Y,annual,2011,bioetanol combustion consumption by to the public,0.3552616098,TJ,CH4,10.0,kg/TJ,3.5526160979999997,kg +373bd637-5a40-3c0b-a282-36c6e64d89f4,SESCO,II.1.1,Jujuy,AR-Y,annual,2011,bioetanol combustion consumption by to the public,0.3552616098,TJ,N2O,0.6,kg/TJ,0.21315696588,kg +dd596cbd-e370-3d79-afed-9db673987118,SESCO,II.1.1,La Rioja,AR-F,annual,2011,bioetanol combustion consumption by to the public,0.1562617656,TJ,CH4,10.0,kg/TJ,1.562617656,kg +30c0aca5-045a-326f-9dba-214b6910e9c4,SESCO,II.1.1,La Rioja,AR-F,annual,2011,bioetanol combustion consumption by to the public,0.1562617656,TJ,N2O,0.6,kg/TJ,0.09375705935999999,kg +12cb5059-ab7f-3e3d-80eb-02d7369772e8,SESCO,II.1.1,Salta,AR-A,annual,2011,bioetanol combustion consumption by to the public,1.0142273088,TJ,CH4,10.0,kg/TJ,10.142273088,kg +a85a8470-bdcb-3aa0-9bd7-c5cf97925413,SESCO,II.1.1,Salta,AR-A,annual,2011,bioetanol combustion consumption by to the public,1.0142273088,TJ,N2O,0.6,kg/TJ,0.60853638528,kg +73cc4f77-3202-3a78-9b4f-aa9524af9009,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2011,bioetanol combustion consumption by to the public,0.282094326,TJ,CH4,10.0,kg/TJ,2.82094326,kg +b269e00e-6638-3a30-bd2f-3904890ce141,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2011,bioetanol combustion consumption by to the public,0.282094326,TJ,N2O,0.6,kg/TJ,0.1692565956,kg +9c87cb28-9eb0-3e55-b759-9e3dfbcb02c7,SESCO,II.1.1,Tucuman,AR-T,annual,2011,bioetanol combustion consumption by to the public,1.5641898173999997,TJ,CH4,10.0,kg/TJ,15.641898173999998,kg +8515d4e8-8b42-3496-a7b5-48c2488a6655,SESCO,II.1.1,Tucuman,AR-T,annual,2011,bioetanol combustion consumption by to the public,1.5641898173999997,TJ,N2O,0.6,kg/TJ,0.9385138904399998,kg +d9f7436e-400c-3da8-9f35-2ab08ae9719e,SESCO,II.5.1,Capital Federal,AR-C,annual,2011,bioetanol combustion consumption by agriculture machines,0.0127818,TJ,CH4,10.0,kg/TJ,0.127818,kg +901636a3-5312-33fe-9df1-698933121ad0,SESCO,II.5.1,Capital Federal,AR-C,annual,2011,bioetanol combustion consumption by agriculture machines,0.0127818,TJ,N2O,0.6,kg/TJ,0.007669079999999999,kg +859a8213-38da-354c-8092-19ab3bc4151d,SESCO,II.1.1,Buenos Aires,AR-B,annual,2011,bioetanol combustion consumption by to the public,5.84682138,TJ,CH4,10.0,kg/TJ,58.4682138,kg +a4640dcc-5ea0-338c-b330-222e4f0db427,SESCO,II.1.1,Buenos Aires,AR-B,annual,2011,bioetanol combustion consumption by to the public,5.84682138,TJ,N2O,0.6,kg/TJ,3.5080928279999997,kg +d7dcfb65-d3ca-3b53-890b-0c4c768578b2,SESCO,II.1.1,Capital Federal,AR-C,annual,2011,bioetanol combustion consumption by to the public,0.1661634,TJ,CH4,10.0,kg/TJ,1.6616339999999998,kg +eb29370e-1930-390e-ba36-928dcb136921,SESCO,II.1.1,Capital Federal,AR-C,annual,2011,bioetanol combustion consumption by to the public,0.1661634,TJ,N2O,0.6,kg/TJ,0.09969803999999999,kg +9df3887d-41c3-30a2-9804-b3b5115827fe,SESCO,II.1.1,Chaco,AR-H,annual,2011,bioetanol combustion consumption by to the public,0.26713962,TJ,CH4,10.0,kg/TJ,2.6713962,kg +48a11de8-37aa-3689-b559-36745f252d1a,SESCO,II.1.1,Chaco,AR-H,annual,2011,bioetanol combustion consumption by to the public,0.26713962,TJ,N2O,0.6,kg/TJ,0.16028377200000002,kg +300c15b5-0d89-3d42-99c5-90d9ec407147,SESCO,II.1.1,Corrientes,AR-W,annual,2011,bioetanol combustion consumption by to the public,0.30378078,TJ,CH4,10.0,kg/TJ,3.0378077999999995,kg +0537edad-322a-3259-bdfb-b965bdf4fbc6,SESCO,II.1.1,Corrientes,AR-W,annual,2011,bioetanol combustion consumption by to the public,0.30378078,TJ,N2O,0.6,kg/TJ,0.182268468,kg +75e947d1-d348-3cf7-ade0-903b1a5f2b30,SESCO,II.1.1,Córdoba,AR-X,annual,2011,bioetanol combustion consumption by to the public,0.1853361,TJ,CH4,10.0,kg/TJ,1.853361,kg +4951687f-afec-330d-82b3-e4d1fbaebb9d,SESCO,II.1.1,Córdoba,AR-X,annual,2011,bioetanol combustion consumption by to the public,0.1853361,TJ,N2O,0.6,kg/TJ,0.11120166,kg +b9676b4c-fea2-3ca1-bbb4-f7e173142631,SESCO,II.1.1,Entre Rios,AR-E,annual,2011,bioetanol combustion consumption by to the public,0.54833922,TJ,CH4,10.0,kg/TJ,5.4833922,kg +49e34b69-23fd-3b1d-857f-d682f1505dd3,SESCO,II.1.1,Entre Rios,AR-E,annual,2011,bioetanol combustion consumption by to the public,0.54833922,TJ,N2O,0.6,kg/TJ,0.329003532,kg +22869237-b46c-35a9-90b6-a4d4a1356865,SESCO,II.1.1,La Pampa,AR-L,annual,2011,bioetanol combustion consumption by to the public,0.10779318,TJ,CH4,10.0,kg/TJ,1.0779318,kg +8500497f-96f2-31f4-a738-42efc82c89c0,SESCO,II.1.1,La Pampa,AR-L,annual,2011,bioetanol combustion consumption by to the public,0.10779318,TJ,N2O,0.6,kg/TJ,0.064675908,kg +f9236db3-1ceb-3444-b866-532cb0f650ff,SESCO,II.1.1,Mendoza,AR-M,annual,2011,bioetanol combustion consumption by to the public,1.2206619,TJ,CH4,10.0,kg/TJ,12.206619,kg +ac2fe6f5-6108-30cd-918d-38d86ecca94e,SESCO,II.1.1,Mendoza,AR-M,annual,2011,bioetanol combustion consumption by to the public,1.2206619,TJ,N2O,0.6,kg/TJ,0.73239714,kg +35a9807c-d1aa-3eed-a441-4f2626cc69a9,SESCO,II.1.1,Misiones,AR-N,annual,2011,bioetanol combustion consumption by to the public,0.51723684,TJ,CH4,10.0,kg/TJ,5.1723684,kg +e27a613d-53a3-37d2-a0ac-b95664efe7b9,SESCO,II.1.1,Misiones,AR-N,annual,2011,bioetanol combustion consumption by to the public,0.51723684,TJ,N2O,0.6,kg/TJ,0.310342104,kg +9b3e7983-a894-341b-9106-e366e2593f90,SESCO,II.1.1,Neuquén,AR-Q,annual,2011,bioetanol combustion consumption by to the public,0.32849226,TJ,CH4,10.0,kg/TJ,3.2849226,kg +be484563-11b6-34a6-bbdf-b6719fb7b4bd,SESCO,II.1.1,Neuquén,AR-Q,annual,2011,bioetanol combustion consumption by to the public,0.32849226,TJ,N2O,0.6,kg/TJ,0.19709535599999997,kg +e2605cb3-6d74-3377-a3a5-80e48cf643de,SESCO,II.1.1,Rio Negro,AR-R,annual,2011,bioetanol combustion consumption by to the public,0.35107344,TJ,CH4,10.0,kg/TJ,3.5107344,kg +a846f7a7-1315-311f-af58-49e8f4b88256,SESCO,II.1.1,Rio Negro,AR-R,annual,2011,bioetanol combustion consumption by to the public,0.35107344,TJ,N2O,0.6,kg/TJ,0.210644064,kg +2a1dde05-5c94-3536-abb7-9ecd4980558e,SESCO,II.1.1,Santa Fe,AR-S,annual,2011,bioetanol combustion consumption by to the public,0.1256877,TJ,CH4,10.0,kg/TJ,1.2568770000000002,kg +e1502058-edb6-3f1b-b5bf-63149e8516fc,SESCO,II.1.1,Santa Fe,AR-S,annual,2011,bioetanol combustion consumption by to the public,0.1256877,TJ,N2O,0.6,kg/TJ,0.07541262,kg +b94ae58f-9f1e-3f9e-96a9-e6701493ef0a,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2011,bioetanol combustion consumption by to the public,0.15252948,TJ,CH4,10.0,kg/TJ,1.5252948,kg +3343404b-dfb5-3fdb-a8b9-11960dd714df,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2011,bioetanol combustion consumption by to the public,0.15252948,TJ,N2O,0.6,kg/TJ,0.091517688,kg +d934c678-ba08-357f-acbc-f1967e17e35e,SESCO,II.1.1,Tucuman,AR-T,annual,2011,bioetanol combustion consumption by to the public,0.03323268,TJ,CH4,10.0,kg/TJ,0.33232680000000003,kg +c977c332-0e30-34b8-ae7a-23a7fffcace3,SESCO,II.1.1,Tucuman,AR-T,annual,2011,bioetanol combustion consumption by to the public,0.03323268,TJ,N2O,0.6,kg/TJ,0.019939608,kg +1767e19b-3147-3c98-8aec-c6893c373fa4,SESCO,II.1.1,Buenos Aires,AR-B,annual,2011,bioetanol combustion consumption by to the public,159.97956516,TJ,CH4,10.0,kg/TJ,1599.7956516,kg +60c553d2-a306-334b-a5ba-05803beb7cb5,SESCO,II.1.1,Buenos Aires,AR-B,annual,2011,bioetanol combustion consumption by to the public,159.97956516,TJ,N2O,0.6,kg/TJ,95.987739096,kg +a26890d4-8d86-32cc-a09d-275a3f7ccbca,SESCO,II.1.1,Capital Federal,AR-C,annual,2011,bioetanol combustion consumption by to the public,51.32872638,TJ,CH4,10.0,kg/TJ,513.2872638,kg +41174fc2-1acf-3387-b0bf-84752b593635,SESCO,II.1.1,Capital Federal,AR-C,annual,2011,bioetanol combustion consumption by to the public,51.32872638,TJ,N2O,0.6,kg/TJ,30.797235827999998,kg +adace7a1-c0ec-3f5c-9641-bf4f40ae7ce2,SESCO,II.1.1,Catamarca,AR-K,annual,2011,bioetanol combustion consumption by to the public,0.79843644,TJ,CH4,10.0,kg/TJ,7.9843644000000005,kg +489d3cfb-4750-393e-8bd1-35a07f05eda4,SESCO,II.1.1,Catamarca,AR-K,annual,2011,bioetanol combustion consumption by to the public,0.79843644,TJ,N2O,0.6,kg/TJ,0.479061864,kg +dfae4bdc-99c8-3674-be8a-9b85b6e6d9cf,SESCO,II.1.1,Chaco,AR-H,annual,2011,bioetanol combustion consumption by to the public,10.45679058,TJ,CH4,10.0,kg/TJ,104.5679058,kg +361d9370-9d65-3288-a40d-01a2c6971cf9,SESCO,II.1.1,Chaco,AR-H,annual,2011,bioetanol combustion consumption by to the public,10.45679058,TJ,N2O,0.6,kg/TJ,6.274074348,kg +c5d2a230-705f-364a-8507-5b9cb6c3048c,SESCO,II.1.1,Chubut,AR-U,annual,2011,bioetanol combustion consumption by to the public,1.8052162199999997,TJ,CH4,10.0,kg/TJ,18.052162199999998,kg +b34f6fca-3159-34a2-8d5d-0975dd57eafc,SESCO,II.1.1,Chubut,AR-U,annual,2011,bioetanol combustion consumption by to the public,1.8052162199999997,TJ,N2O,0.6,kg/TJ,1.0831297319999997,kg +9837ae7a-e695-3122-b790-5d44912148ae,SESCO,II.1.1,Corrientes,AR-W,annual,2011,bioetanol combustion consumption by to the public,10.89946692,TJ,CH4,10.0,kg/TJ,108.9946692,kg +0081aded-3be9-3c87-a7da-8ef36ba217aa,SESCO,II.1.1,Corrientes,AR-W,annual,2011,bioetanol combustion consumption by to the public,10.89946692,TJ,N2O,0.6,kg/TJ,6.539680152,kg +3f564b05-82df-3120-8392-09e035378e77,SESCO,II.1.1,Córdoba,AR-X,annual,2011,bioetanol combustion consumption by to the public,38.33006184,TJ,CH4,10.0,kg/TJ,383.30061839999996,kg +aa8c2f11-9dde-3d8c-8f5f-509d7076aec1,SESCO,II.1.1,Córdoba,AR-X,annual,2011,bioetanol combustion consumption by to the public,38.33006184,TJ,N2O,0.6,kg/TJ,22.998037103999998,kg +cf4c90a2-ab45-31b5-a5e3-85267ea13d49,SESCO,II.1.1,Entre Rios,AR-E,annual,2011,bioetanol combustion consumption by to the public,13.74213924,TJ,CH4,10.0,kg/TJ,137.4213924,kg +7e8fbe30-fa8e-3082-a5fa-c601baec9608,SESCO,II.1.1,Entre Rios,AR-E,annual,2011,bioetanol combustion consumption by to the public,13.74213924,TJ,N2O,0.6,kg/TJ,8.245283544,kg +688e6978-3eb5-39b9-b887-595375d76953,SESCO,II.1.1,Formosa,AR-P,annual,2011,bioetanol combustion consumption by to the public,4.35135078,TJ,CH4,10.0,kg/TJ,43.5135078,kg +288dd45b-0568-3c75-928d-d9581a527af0,SESCO,II.1.1,Formosa,AR-P,annual,2011,bioetanol combustion consumption by to the public,4.35135078,TJ,N2O,0.6,kg/TJ,2.610810468,kg +6db84455-d9a7-317f-8d14-1d06811f44b5,SESCO,II.1.1,Jujuy,AR-Y,annual,2011,bioetanol combustion consumption by to the public,2.9952018,TJ,CH4,10.0,kg/TJ,29.952018,kg +0e09d356-f062-39b1-812d-639c2181c457,SESCO,II.1.1,Jujuy,AR-Y,annual,2011,bioetanol combustion consumption by to the public,2.9952018,TJ,N2O,0.6,kg/TJ,1.79712108,kg +375977b9-a1e6-3b3d-8b77-cbc4b0f4368c,SESCO,II.1.1,La Pampa,AR-L,annual,2011,bioetanol combustion consumption by to the public,3.68797536,TJ,CH4,10.0,kg/TJ,36.8797536,kg +1592fd20-5597-301a-a312-622a89a3a255,SESCO,II.1.1,La Pampa,AR-L,annual,2011,bioetanol combustion consumption by to the public,3.68797536,TJ,N2O,0.6,kg/TJ,2.212785216,kg +7edaf522-2445-3372-82fc-34baa02ff214,SESCO,II.1.1,La Rioja,AR-F,annual,2011,bioetanol combustion consumption by to the public,3.68158446,TJ,CH4,10.0,kg/TJ,36.8158446,kg +4dea5606-83d6-3069-9fb1-58e4ccfe692c,SESCO,II.1.1,La Rioja,AR-F,annual,2011,bioetanol combustion consumption by to the public,3.68158446,TJ,N2O,0.6,kg/TJ,2.2089506759999997,kg +183600d0-ca10-3f61-ae0e-eee3144f0472,SESCO,II.1.1,Mendoza,AR-M,annual,2011,bioetanol combustion consumption by to the public,9.35712972,TJ,CH4,10.0,kg/TJ,93.5712972,kg +bdff62ef-1c21-3f9a-af88-81a94a87526d,SESCO,II.1.1,Mendoza,AR-M,annual,2011,bioetanol combustion consumption by to the public,9.35712972,TJ,N2O,0.6,kg/TJ,5.614277832,kg +f11f615b-447d-3da5-92fe-96c9a1e27999,SESCO,II.1.1,Misiones,AR-N,annual,2011,bioetanol combustion consumption by to the public,13.1375601,TJ,CH4,10.0,kg/TJ,131.375601,kg +7bc75312-8ef7-38bd-bcc0-76c4a9a9373f,SESCO,II.1.1,Misiones,AR-N,annual,2011,bioetanol combustion consumption by to the public,13.1375601,TJ,N2O,0.6,kg/TJ,7.88253606,kg +3dc00e7c-22ae-3254-a1a1-8f68e83c6243,SESCO,II.1.1,Neuquén,AR-Q,annual,2011,bioetanol combustion consumption by to the public,3.0497374799999997,TJ,CH4,10.0,kg/TJ,30.497374799999996,kg +9e08b508-ba44-3614-889e-4839e39006c1,SESCO,II.1.1,Neuquén,AR-Q,annual,2011,bioetanol combustion consumption by to the public,3.0497374799999997,TJ,N2O,0.6,kg/TJ,1.8298424879999997,kg +be6bf7e4-d77d-3dc0-bd36-b7077763ebd1,SESCO,II.1.1,Rio Negro,AR-R,annual,2011,bioetanol combustion consumption by to the public,2.64924108,TJ,CH4,10.0,kg/TJ,26.4924108,kg +923efcd0-60b3-32d3-87fc-52963086bd42,SESCO,II.1.1,Rio Negro,AR-R,annual,2011,bioetanol combustion consumption by to the public,2.64924108,TJ,N2O,0.6,kg/TJ,1.589544648,kg +231fefd8-6049-3280-809a-e66cfc6920a5,SESCO,II.1.1,Salta,AR-A,annual,2011,bioetanol combustion consumption by to the public,4.15791954,TJ,CH4,10.0,kg/TJ,41.5791954,kg +3395b21f-c0a1-3f5c-aa2d-28510235ca5d,SESCO,II.1.1,Salta,AR-A,annual,2011,bioetanol combustion consumption by to the public,4.15791954,TJ,N2O,0.6,kg/TJ,2.494751724,kg +787946b1-8388-3110-a88a-1def79d99a7f,SESCO,II.1.1,San Juan,AR-J,annual,2011,bioetanol combustion consumption by to the public,3.16860822,TJ,CH4,10.0,kg/TJ,31.686082199999998,kg +e9a52c46-968d-3309-8dc4-a045a470e0fd,SESCO,II.1.1,San Juan,AR-J,annual,2011,bioetanol combustion consumption by to the public,3.16860822,TJ,N2O,0.6,kg/TJ,1.901164932,kg +aa03b24c-33f4-3b25-9f7e-4a51c2633998,SESCO,II.1.1,San Luis,AR-D,annual,2011,bioetanol combustion consumption by to the public,0.07413444,TJ,CH4,10.0,kg/TJ,0.7413444,kg +7682becc-b6bb-390a-a9d2-a42d1fe7ba9c,SESCO,II.1.1,San Luis,AR-D,annual,2011,bioetanol combustion consumption by to the public,0.07413444,TJ,N2O,0.6,kg/TJ,0.044480663999999996,kg +09584b42-8a9a-3937-93e5-efa6625cee19,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2011,bioetanol combustion consumption by to the public,0.0106515,TJ,CH4,10.0,kg/TJ,0.106515,kg +75b8d291-cdc2-3d53-aaba-e74aebb46efe,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2011,bioetanol combustion consumption by to the public,0.0106515,TJ,N2O,0.6,kg/TJ,0.0063909,kg +f188732a-5b07-3643-a0e3-bab61c758912,SESCO,II.1.1,Santa Fe,AR-S,annual,2011,bioetanol combustion consumption by to the public,42.05340018,TJ,CH4,10.0,kg/TJ,420.53400179999994,kg +63ca88ea-f44a-3098-8c45-899ee3639caa,SESCO,II.1.1,Santa Fe,AR-S,annual,2011,bioetanol combustion consumption by to the public,42.05340018,TJ,N2O,0.6,kg/TJ,25.232040107999996,kg +c8b4f842-70f0-3771-a319-e8059704c636,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2011,bioetanol combustion consumption by to the public,4.3632804599999995,TJ,CH4,10.0,kg/TJ,43.63280459999999,kg +289795b9-3f05-3b3c-8bbd-285df09e3425,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2011,bioetanol combustion consumption by to the public,4.3632804599999995,TJ,N2O,0.6,kg/TJ,2.6179682759999996,kg +b25ce1c4-b11e-3640-97ed-c30c860dfd15,SESCO,II.1.1,Tucuman,AR-T,annual,2011,bioetanol combustion consumption by to the public,9.60680088,TJ,CH4,10.0,kg/TJ,96.0680088,kg +eb40d63e-073e-3ab4-9b8b-7faedb2de74d,SESCO,II.1.1,Tucuman,AR-T,annual,2011,bioetanol combustion consumption by to the public,9.60680088,TJ,N2O,0.6,kg/TJ,5.764080528,kg +824eb128-d34c-38e6-a6d9-92fa996db05c,SESCO,II.1.1,Buenos Aires,AR-B,annual,2011,bioetanol combustion consumption by to the public,60.23465856,TJ,CH4,10.0,kg/TJ,602.3465856,kg +1da87b5a-f2f7-35dd-ae84-b859e7fb29ed,SESCO,II.1.1,Buenos Aires,AR-B,annual,2011,bioetanol combustion consumption by to the public,60.23465856,TJ,N2O,0.6,kg/TJ,36.140795136,kg +0b6cfd3b-fc75-32f7-b040-7fde7c77d9f2,SESCO,II.1.1,Capital Federal,AR-C,annual,2011,bioetanol combustion consumption by to the public,29.55237372,TJ,CH4,10.0,kg/TJ,295.52373719999997,kg +f3a6be5b-e59d-352f-92ba-ad6d44925e77,SESCO,II.1.1,Capital Federal,AR-C,annual,2011,bioetanol combustion consumption by to the public,29.55237372,TJ,N2O,0.6,kg/TJ,17.731424232,kg +4157a269-429c-3b30-aec6-8e46902e65e0,SESCO,II.1.1,Catamarca,AR-K,annual,2011,bioetanol combustion consumption by to the public,0.3706722,TJ,CH4,10.0,kg/TJ,3.706722,kg +9b6cecbf-276a-307d-809d-f2c3eb9bbf79,SESCO,II.1.1,Catamarca,AR-K,annual,2011,bioetanol combustion consumption by to the public,0.3706722,TJ,N2O,0.6,kg/TJ,0.22240332,kg +eccc63d0-b87b-33c4-bda7-43158f8f1160,SESCO,II.1.1,Chaco,AR-H,annual,2011,bioetanol combustion consumption by to the public,2.54272608,TJ,CH4,10.0,kg/TJ,25.4272608,kg +7db82102-e874-3351-bbd9-0d8d30ca79c0,SESCO,II.1.1,Chaco,AR-H,annual,2011,bioetanol combustion consumption by to the public,2.54272608,TJ,N2O,0.6,kg/TJ,1.525635648,kg +c134b5ce-c5d1-389b-b7aa-8a39e3a82290,SESCO,II.1.1,Chubut,AR-U,annual,2011,bioetanol combustion consumption by to the public,0.36257705999999995,TJ,CH4,10.0,kg/TJ,3.6257705999999996,kg +aa050042-6983-308e-b862-2c64a3fff37e,SESCO,II.1.1,Chubut,AR-U,annual,2011,bioetanol combustion consumption by to the public,0.36257705999999995,TJ,N2O,0.6,kg/TJ,0.21754623599999998,kg +4ff0f765-8fe4-3503-a58c-c0eea97314ee,SESCO,II.1.1,Corrientes,AR-W,annual,2011,bioetanol combustion consumption by to the public,2.3752845,TJ,CH4,10.0,kg/TJ,23.752844999999997,kg +fb2a9478-1ab0-3216-9e77-f65e77c9bd81,SESCO,II.1.1,Corrientes,AR-W,annual,2011,bioetanol combustion consumption by to the public,2.3752845,TJ,N2O,0.6,kg/TJ,1.4251706999999998,kg +11beee45-457b-36f3-ad9f-987892432bc7,SESCO,II.1.1,Córdoba,AR-X,annual,2011,bioetanol combustion consumption by to the public,10.91267478,TJ,CH4,10.0,kg/TJ,109.1267478,kg +b19ecf06-8792-35e6-90cf-1e9f86214364,SESCO,II.1.1,Córdoba,AR-X,annual,2011,bioetanol combustion consumption by to the public,10.91267478,TJ,N2O,0.6,kg/TJ,6.547604868,kg +42332c1a-e162-302f-bbcc-af9906c06f05,SESCO,II.1.1,Entre Rios,AR-E,annual,2011,bioetanol combustion consumption by to the public,3.88907568,TJ,CH4,10.0,kg/TJ,38.8907568,kg +abddd460-eb14-377c-9e99-c88b970f86de,SESCO,II.1.1,Entre Rios,AR-E,annual,2011,bioetanol combustion consumption by to the public,3.88907568,TJ,N2O,0.6,kg/TJ,2.3334454079999998,kg +5b20ffc0-3fad-3515-b0a0-979a0135ad25,SESCO,II.1.1,Formosa,AR-P,annual,2011,bioetanol combustion consumption by to the public,1.4209101,TJ,CH4,10.0,kg/TJ,14.209101,kg +d50da4db-1ced-3012-89aa-4b4eba43f821,SESCO,II.1.1,Formosa,AR-P,annual,2011,bioetanol combustion consumption by to the public,1.4209101,TJ,N2O,0.6,kg/TJ,0.85254606,kg +05c8add4-5dfe-32e3-815f-2bc0228442cd,SESCO,II.1.1,Jujuy,AR-Y,annual,2011,bioetanol combustion consumption by to the public,0.44821511999999997,TJ,CH4,10.0,kg/TJ,4.4821512,kg +e5b1e550-3ba5-3e52-8db7-c374cba25969,SESCO,II.1.1,Jujuy,AR-Y,annual,2011,bioetanol combustion consumption by to the public,0.44821511999999997,TJ,N2O,0.6,kg/TJ,0.268929072,kg +355f5df5-4844-3650-9c73-63c2a657cb07,SESCO,II.1.1,La Pampa,AR-L,annual,2011,bioetanol combustion consumption by to the public,1.3301593200000001,TJ,CH4,10.0,kg/TJ,13.301593200000001,kg +97e24434-ea80-3b69-a46a-f0dbf97fb83b,SESCO,II.1.1,La Pampa,AR-L,annual,2011,bioetanol combustion consumption by to the public,1.3301593200000001,TJ,N2O,0.6,kg/TJ,0.798095592,kg +e6c4aa1e-0171-3453-bd9c-05ff42027476,SESCO,II.1.1,La Rioja,AR-F,annual,2011,bioetanol combustion consumption by to the public,0.73324926,TJ,CH4,10.0,kg/TJ,7.3324926,kg +24c8c70b-5854-37f7-84c7-7284921abcec,SESCO,II.1.1,La Rioja,AR-F,annual,2011,bioetanol combustion consumption by to the public,0.73324926,TJ,N2O,0.6,kg/TJ,0.439949556,kg +67f7f9c7-3c9b-3421-82b7-47a06af49d77,SESCO,II.1.1,Mendoza,AR-M,annual,2011,bioetanol combustion consumption by to the public,2.72081916,TJ,CH4,10.0,kg/TJ,27.2081916,kg +29a77f33-6bc9-3b95-8a31-255603eda85f,SESCO,II.1.1,Mendoza,AR-M,annual,2011,bioetanol combustion consumption by to the public,2.72081916,TJ,N2O,0.6,kg/TJ,1.6324914959999999,kg +076d94ce-0534-3c82-ac8f-4bc572974280,SESCO,II.1.1,Misiones,AR-N,annual,2011,bioetanol combustion consumption by to the public,2.23298046,TJ,CH4,10.0,kg/TJ,22.3298046,kg +4448ae61-c63e-3d48-81f5-2f1a602944fc,SESCO,II.1.1,Misiones,AR-N,annual,2011,bioetanol combustion consumption by to the public,2.23298046,TJ,N2O,0.6,kg/TJ,1.339788276,kg +ea7982af-1db7-3317-ae28-5d74ddbce333,SESCO,II.1.1,Neuquén,AR-Q,annual,2011,bioetanol combustion consumption by to the public,0.6071354999999999,TJ,CH4,10.0,kg/TJ,6.071355,kg +5b893535-ea23-3fcc-a69a-0466e7f1e5f7,SESCO,II.1.1,Neuquén,AR-Q,annual,2011,bioetanol combustion consumption by to the public,0.6071354999999999,TJ,N2O,0.6,kg/TJ,0.3642813,kg +d75297c4-164a-3f4d-aad9-05443e1cf411,SESCO,II.1.1,Rio Negro,AR-R,annual,2011,bioetanol combustion consumption by to the public,0.7460310600000001,TJ,CH4,10.0,kg/TJ,7.460310600000001,kg +4c9f6e1a-c5ff-3a52-828e-77d1ba23fc41,SESCO,II.1.1,Rio Negro,AR-R,annual,2011,bioetanol combustion consumption by to the public,0.7460310600000001,TJ,N2O,0.6,kg/TJ,0.447618636,kg +a60c3d35-51c7-354b-8c09-3bc15e639601,SESCO,II.1.1,Salta,AR-A,annual,2011,bioetanol combustion consumption by to the public,0.8887611599999999,TJ,CH4,10.0,kg/TJ,8.8876116,kg +71fd08ba-90e3-35d4-930f-217ee4522154,SESCO,II.1.1,Salta,AR-A,annual,2011,bioetanol combustion consumption by to the public,0.8887611599999999,TJ,N2O,0.6,kg/TJ,0.5332566959999999,kg +c53db579-0682-3bc8-baa0-66830f257ec7,SESCO,II.1.1,San Juan,AR-J,annual,2011,bioetanol combustion consumption by to the public,0.51425442,TJ,CH4,10.0,kg/TJ,5.1425442,kg +c17a5d36-bcc8-3524-b542-73777831d844,SESCO,II.1.1,San Juan,AR-J,annual,2011,bioetanol combustion consumption by to the public,0.51425442,TJ,N2O,0.6,kg/TJ,0.308552652,kg +6f5d7c6d-5e32-33b2-a8db-e854a8caf6f4,SESCO,II.1.1,San Luis,AR-D,annual,2011,bioetanol combustion consumption by to the public,0.04558842,TJ,CH4,10.0,kg/TJ,0.45588419999999996,kg +594c7342-5411-3dbd-bd1b-212c52b62078,SESCO,II.1.1,San Luis,AR-D,annual,2011,bioetanol combustion consumption by to the public,0.04558842,TJ,N2O,0.6,kg/TJ,0.027353052,kg +0ef228a0-9cd2-3642-b62b-eadf5b9944c9,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2011,bioetanol combustion consumption by to the public,0.00298242,TJ,CH4,10.0,kg/TJ,0.0298242,kg +03b73bf5-166f-31b5-9599-0565aa41eb3e,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2011,bioetanol combustion consumption by to the public,0.00298242,TJ,N2O,0.6,kg/TJ,0.001789452,kg +9f79a541-1813-3dee-94b4-edb9a7d81127,SESCO,II.1.1,Santa Fe,AR-S,annual,2011,bioetanol combustion consumption by to the public,15.72885702,TJ,CH4,10.0,kg/TJ,157.28857019999998,kg +0e8c9f65-2f4d-3dc8-8f78-34a7ffb5a3ef,SESCO,II.1.1,Santa Fe,AR-S,annual,2011,bioetanol combustion consumption by to the public,15.72885702,TJ,N2O,0.6,kg/TJ,9.437314211999999,kg +6b20cf00-5a30-34f3-8f04-e06e9e8667b7,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2011,bioetanol combustion consumption by to the public,1.54148508,TJ,CH4,10.0,kg/TJ,15.4148508,kg +0ac48306-faf0-3fc7-a572-6686f8975c22,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2011,bioetanol combustion consumption by to the public,1.54148508,TJ,N2O,0.6,kg/TJ,0.9248910479999999,kg +3aecaf54-af1e-3e21-8548-0fdc36b927e5,SESCO,II.1.1,Tucuman,AR-T,annual,2011,bioetanol combustion consumption by to the public,2.7689639399999995,TJ,CH4,10.0,kg/TJ,27.689639399999994,kg +6562772a-abf4-345f-8d93-8192134fe71a,SESCO,II.1.1,Tucuman,AR-T,annual,2011,bioetanol combustion consumption by to the public,2.7689639399999995,TJ,N2O,0.6,kg/TJ,1.6613783639999997,kg +eab71522-215f-3312-8f45-40fc478f5009,SESCO,II.5.1,Buenos Aires,AR-B,annual,2011,bioetanol combustion consumption by agriculture machines,0.2194209,TJ,CH4,10.0,kg/TJ,2.194209,kg +381683cd-ff6a-367a-aa51-b7cb849815e3,SESCO,II.5.1,Buenos Aires,AR-B,annual,2011,bioetanol combustion consumption by agriculture machines,0.2194209,TJ,N2O,0.6,kg/TJ,0.13165253999999998,kg +db035be1-5be1-3d06-a3be-a05aef5c73c3,SESCO,II.5.1,Entre Rios,AR-E,annual,2011,bioetanol combustion consumption by agriculture machines,0.049422959999999995,TJ,CH4,10.0,kg/TJ,0.49422959999999994,kg +9be6c220-1a10-30aa-940a-82528ac8eebd,SESCO,II.5.1,Entre Rios,AR-E,annual,2011,bioetanol combustion consumption by agriculture machines,0.049422959999999995,TJ,N2O,0.6,kg/TJ,0.029653775999999996,kg +a7101fc7-005b-32b5-bb2c-7f3ac51409b2,SESCO,II.5.1,Jujuy,AR-Y,annual,2011,bioetanol combustion consumption by agriculture machines,0.00979938,TJ,CH4,10.0,kg/TJ,0.09799379999999999,kg +cc8cd84f-f3bd-3d45-b20d-17fbaeb189ae,SESCO,II.5.1,Jujuy,AR-Y,annual,2011,bioetanol combustion consumption by agriculture machines,0.00979938,TJ,N2O,0.6,kg/TJ,0.005879628,kg +a0716d5b-30fc-3193-9185-625cafd08e6f,SESCO,II.5.1,La Pampa,AR-L,annual,2011,bioetanol combustion consumption by agriculture machines,0.02002482,TJ,CH4,10.0,kg/TJ,0.2002482,kg +1c03a119-aead-3dcb-bf10-bdbb8bd4584d,SESCO,II.5.1,La Pampa,AR-L,annual,2011,bioetanol combustion consumption by agriculture machines,0.02002482,TJ,N2O,0.6,kg/TJ,0.012014892,kg +f8b676df-ea57-3a46-aaea-ccf0fee6b9a3,SESCO,II.5.1,Salta,AR-A,annual,2011,bioetanol combustion consumption by agriculture machines,0.01107756,TJ,CH4,10.0,kg/TJ,0.1107756,kg +3681bb06-515e-3d3c-a286-d7c1a2a90cd4,SESCO,II.5.1,Salta,AR-A,annual,2011,bioetanol combustion consumption by agriculture machines,0.01107756,TJ,N2O,0.6,kg/TJ,0.006646536,kg +ee9be53d-3d84-3a26-9ebf-58cc51f0d0b0,SESCO,II.5.1,Santa Fe,AR-S,annual,2011,bioetanol combustion consumption by agriculture machines,0.979938,TJ,CH4,10.0,kg/TJ,9.79938,kg +f1bd4aed-b9d8-31ac-97a5-0ea4130497f8,SESCO,II.5.1,Santa Fe,AR-S,annual,2011,bioetanol combustion consumption by agriculture machines,0.979938,TJ,N2O,0.6,kg/TJ,0.5879628,kg +a547afe5-c586-3c47-82b5-3bc862dd71af,SESCO,II.5.1,Santiago del Estero,AR-G,annual,2011,bioetanol combustion consumption by agriculture machines,0.016190279999999998,TJ,CH4,10.0,kg/TJ,0.16190279999999999,kg +f2654a19-17cc-30be-80ad-21f538f3dc60,SESCO,II.5.1,Santiago del Estero,AR-G,annual,2011,bioetanol combustion consumption by agriculture machines,0.016190279999999998,TJ,N2O,0.6,kg/TJ,0.009714167999999999,kg +4ee5a1df-648d-35f1-94c0-50e3606ba917,SESCO,II.5.1,Buenos Aires,AR-B,annual,2011,bioetanol combustion consumption by agriculture machines,0.00596484,TJ,CH4,10.0,kg/TJ,0.0596484,kg +a65fef8b-00e7-306b-9aa4-2315652f3f62,SESCO,II.5.1,Buenos Aires,AR-B,annual,2011,bioetanol combustion consumption by agriculture machines,0.00596484,TJ,N2O,0.6,kg/TJ,0.003578904,kg +b92cd4a5-674c-38b6-a352-d8899aa30264,SESCO,II.1.1,Buenos Aires,AR-B,annual,2011,bioetanol combustion consumption by to the public,0.23049846,TJ,CH4,10.0,kg/TJ,2.3049846,kg +013c973b-d9dc-3eec-a1b4-c71f841bfdbd,SESCO,II.1.1,Buenos Aires,AR-B,annual,2011,bioetanol combustion consumption by to the public,0.23049846,TJ,N2O,0.6,kg/TJ,0.138299076,kg +f5e75b0d-de85-3493-85bf-9ab1cc600a23,SESCO,II.1.1,Capital Federal,AR-C,annual,2011,bioetanol combustion consumption by to the public,0.09586349999999999,TJ,CH4,10.0,kg/TJ,0.9586349999999999,kg +09518a5d-f456-3f13-817b-e3649ccf8a0f,SESCO,II.1.1,Capital Federal,AR-C,annual,2011,bioetanol combustion consumption by to the public,0.09586349999999999,TJ,N2O,0.6,kg/TJ,0.05751809999999999,kg +a65177d1-9180-3080-a59d-a88429392216,SESCO,II.1.1,Chaco,AR-H,annual,2011,bioetanol combustion consumption by to the public,0.0068169599999999995,TJ,CH4,10.0,kg/TJ,0.0681696,kg +23146f26-1011-3e43-a7c1-22232ca84ba7,SESCO,II.1.1,Chaco,AR-H,annual,2011,bioetanol combustion consumption by to the public,0.0068169599999999995,TJ,N2O,0.6,kg/TJ,0.004090175999999999,kg +ffdf321e-edf6-35e7-9073-ba3f6f61885a,SESCO,II.1.1,Entre Rios,AR-E,annual,2011,bioetanol combustion consumption by to the public,0.008947259999999999,TJ,CH4,10.0,kg/TJ,0.08947259999999999,kg +433090a8-db2f-37b5-abe7-225549093a7e,SESCO,II.1.1,Entre Rios,AR-E,annual,2011,bioetanol combustion consumption by to the public,0.008947259999999999,TJ,N2O,0.6,kg/TJ,0.005368355999999999,kg +6fdf1c73-81a3-3cd6-9edf-2da669465e57,SESCO,II.1.1,Jujuy,AR-Y,annual,2011,bioetanol combustion consumption by to the public,0.00298242,TJ,CH4,10.0,kg/TJ,0.0298242,kg +973e76db-7c9f-34e1-bc48-ceb2663c8095,SESCO,II.1.1,Jujuy,AR-Y,annual,2011,bioetanol combustion consumption by to the public,0.00298242,TJ,N2O,0.6,kg/TJ,0.001789452,kg +ab4d08cb-022b-3b42-b321-54323b6d4748,SESCO,II.1.1,Misiones,AR-N,annual,2011,bioetanol combustion consumption by to the public,0.0340848,TJ,CH4,10.0,kg/TJ,0.340848,kg +5e434354-1b7b-3d67-950a-3fd34cbc4916,SESCO,II.1.1,Misiones,AR-N,annual,2011,bioetanol combustion consumption by to the public,0.0340848,TJ,N2O,0.6,kg/TJ,0.020450879999999998,kg +5ea0f7df-5463-3ff1-a4d6-c99c909f2b0f,SESCO,II.1.1,Salta,AR-A,annual,2011,bioetanol combustion consumption by to the public,0.0008521199999999999,TJ,CH4,10.0,kg/TJ,0.0085212,kg +2d8d3ec9-10be-30a7-8178-a94951004f42,SESCO,II.1.1,Salta,AR-A,annual,2011,bioetanol combustion consumption by to the public,0.0008521199999999999,TJ,N2O,0.6,kg/TJ,0.0005112719999999999,kg +3e6b346f-26fe-3500-8895-4328f4fd5209,SESCO,II.1.1,Santa Fe,AR-S,annual,2011,bioetanol combustion consumption by to the public,0.03877146,TJ,CH4,10.0,kg/TJ,0.3877146,kg +1c380a1e-3dcd-33de-be9f-f8a94e45f3f4,SESCO,II.1.1,Santa Fe,AR-S,annual,2011,bioetanol combustion consumption by to the public,0.03877146,TJ,N2O,0.6,kg/TJ,0.023262876,kg +c1e422ad-f1dc-3e9a-9292-7d23369f3aee,SESCO,II.1.1,Buenos Aires,AR-B,annual,2011,bioetanol combustion consumption by to the public,410.1871347,TJ,CH4,10.0,kg/TJ,4101.871347,kg +01dd4347-c89f-3167-9c16-8c64ce45612a,SESCO,II.1.1,Buenos Aires,AR-B,annual,2011,bioetanol combustion consumption by to the public,410.1871347,TJ,N2O,0.6,kg/TJ,246.11228082,kg +b3e5351f-b30d-3bc8-aec4-8595b4daddde,SESCO,II.1.1,Capital Federal,AR-C,annual,2011,bioetanol combustion consumption by to the public,89.94893507999998,TJ,CH4,10.0,kg/TJ,899.4893507999998,kg +643a77d4-383c-31c5-b5cc-32500f6ae06a,SESCO,II.1.1,Capital Federal,AR-C,annual,2011,bioetanol combustion consumption by to the public,89.94893507999998,TJ,N2O,0.6,kg/TJ,53.96936104799999,kg +29118260-8e0a-330a-a3d2-acb0f1e509c5,SESCO,II.1.1,Catamarca,AR-K,annual,2011,bioetanol combustion consumption by to the public,6.64099722,TJ,CH4,10.0,kg/TJ,66.4099722,kg +8453dd0c-32d6-37b6-9f88-3a2f6dc08659,SESCO,II.1.1,Catamarca,AR-K,annual,2011,bioetanol combustion consumption by to the public,6.64099722,TJ,N2O,0.6,kg/TJ,3.984598332,kg +19b85c8d-c1d3-37b4-919b-b589e29d8711,SESCO,II.1.1,Chaco,AR-H,annual,2011,bioetanol combustion consumption by to the public,22.63955022,TJ,CH4,10.0,kg/TJ,226.3955022,kg +9d01210c-3ae0-34ae-a8b0-cd47caeacfaa,SESCO,II.1.1,Chaco,AR-H,annual,2011,bioetanol combustion consumption by to the public,22.63955022,TJ,N2O,0.6,kg/TJ,13.583730132,kg +0d89613a-2fe7-35e9-b229-31194d2d0253,SESCO,II.1.1,Chubut,AR-U,annual,2011,bioetanol combustion consumption by to the public,41.11862454,TJ,CH4,10.0,kg/TJ,411.18624539999996,kg +2ef9c89d-7aa9-3ac0-bcfe-2a3a85d09265,SESCO,II.1.1,Chubut,AR-U,annual,2011,bioetanol combustion consumption by to the public,41.11862454,TJ,N2O,0.6,kg/TJ,24.671174724,kg +70af32c8-75ed-3dba-ac95-a9526ff82cec,SESCO,II.1.1,Corrientes,AR-W,annual,2011,bioetanol combustion consumption by to the public,25.54826184,TJ,CH4,10.0,kg/TJ,255.48261839999998,kg +c0bf22d6-b1bd-3250-9850-7ca579b733d5,SESCO,II.1.1,Corrientes,AR-W,annual,2011,bioetanol combustion consumption by to the public,25.54826184,TJ,N2O,0.6,kg/TJ,15.328957103999999,kg +4e5afe75-2f76-38e6-9825-7ecf1bd05621,SESCO,II.1.1,Córdoba,AR-X,annual,2011,bioetanol combustion consumption by to the public,104.895972,TJ,CH4,10.0,kg/TJ,1048.95972,kg +1b3d89a5-45ee-3889-9163-15aaa17e16e7,SESCO,II.1.1,Córdoba,AR-X,annual,2011,bioetanol combustion consumption by to the public,104.895972,TJ,N2O,0.6,kg/TJ,62.9375832,kg +0529128c-aa95-3106-ab6d-046d61af07bc,SESCO,II.1.1,Entre Rios,AR-E,annual,2011,bioetanol combustion consumption by to the public,29.77988976,TJ,CH4,10.0,kg/TJ,297.7988976,kg +9f4f3c82-87c3-3b1e-90fb-1011093625d4,SESCO,II.1.1,Entre Rios,AR-E,annual,2011,bioetanol combustion consumption by to the public,29.77988976,TJ,N2O,0.6,kg/TJ,17.867933856,kg +d889ff6f-00a3-3326-9bdb-2bb5b60cf6da,SESCO,II.1.1,Formosa,AR-P,annual,2011,bioetanol combustion consumption by to the public,9.4500108,TJ,CH4,10.0,kg/TJ,94.500108,kg +fd5c5527-4c2e-34f3-aa87-989ea63ec58d,SESCO,II.1.1,Formosa,AR-P,annual,2011,bioetanol combustion consumption by to the public,9.4500108,TJ,N2O,0.6,kg/TJ,5.67000648,kg +cf461706-39f3-3467-b979-cb43eccf61f9,SESCO,II.1.1,Jujuy,AR-Y,annual,2011,bioetanol combustion consumption by to the public,11.77587234,TJ,CH4,10.0,kg/TJ,117.7587234,kg +80e0f3a4-3fe0-34f6-aae8-41b5b0522643,SESCO,II.1.1,Jujuy,AR-Y,annual,2011,bioetanol combustion consumption by to the public,11.77587234,TJ,N2O,0.6,kg/TJ,7.0655234039999995,kg +267b7490-7df1-3504-95c8-f83a18a14251,SESCO,II.1.1,La Pampa,AR-L,annual,2011,bioetanol combustion consumption by to the public,17.41477644,TJ,CH4,10.0,kg/TJ,174.1477644,kg +62622d2e-a757-3eba-9bec-7d646818efee,SESCO,II.1.1,La Pampa,AR-L,annual,2011,bioetanol combustion consumption by to the public,17.41477644,TJ,N2O,0.6,kg/TJ,10.448865864,kg +505ce2dd-7230-3ad6-bbd2-91be380780a0,SESCO,II.1.1,La Rioja,AR-F,annual,2011,bioetanol combustion consumption by to the public,9.58975848,TJ,CH4,10.0,kg/TJ,95.8975848,kg +7492f4d9-ebfa-33c9-946a-1b8030253322,SESCO,II.1.1,La Rioja,AR-F,annual,2011,bioetanol combustion consumption by to the public,9.58975848,TJ,N2O,0.6,kg/TJ,5.753855088,kg +7a8d10fd-0df6-3e61-aab2-f0ec25c7dfe8,SESCO,II.1.1,Mendoza,AR-M,annual,2011,bioetanol combustion consumption by to the public,51.185996280000005,TJ,CH4,10.0,kg/TJ,511.85996280000006,kg +58e5adb3-5ea2-3cd3-9a78-56e6943d6cbf,SESCO,II.1.1,Mendoza,AR-M,annual,2011,bioetanol combustion consumption by to the public,51.185996280000005,TJ,N2O,0.6,kg/TJ,30.711597768,kg +40490b94-1bcd-3690-975d-98fa091b8a3d,SESCO,II.1.1,Misiones,AR-N,annual,2011,bioetanol combustion consumption by to the public,32.00392296,TJ,CH4,10.0,kg/TJ,320.0392296,kg +493d00f8-e646-3f30-bbcd-ee594e55f431,SESCO,II.1.1,Misiones,AR-N,annual,2011,bioetanol combustion consumption by to the public,32.00392296,TJ,N2O,0.6,kg/TJ,19.202353776,kg +be784ea5-e3bf-3cf2-acfa-0debb2a3a816,SESCO,II.1.1,Neuquén,AR-Q,annual,2011,bioetanol combustion consumption by to the public,31.45132314,TJ,CH4,10.0,kg/TJ,314.5132314,kg +69ef7049-f46f-34e5-a41e-bcc1a70feec0,SESCO,II.1.1,Neuquén,AR-Q,annual,2011,bioetanol combustion consumption by to the public,31.45132314,TJ,N2O,0.6,kg/TJ,18.870793883999998,kg +5a2419f0-7cf2-370a-a040-83bc4fdd4b8b,SESCO,II.1.1,Rio Negro,AR-R,annual,2011,bioetanol combustion consumption by to the public,31.66818768,TJ,CH4,10.0,kg/TJ,316.6818768,kg +1c08749e-ac2a-37b0-85cd-eb0c4d0bb546,SESCO,II.1.1,Rio Negro,AR-R,annual,2011,bioetanol combustion consumption by to the public,31.66818768,TJ,N2O,0.6,kg/TJ,19.000912608,kg +c9901875-0eeb-30a0-85ec-7f2d2cc95cbd,SESCO,II.1.1,Salta,AR-A,annual,2011,bioetanol combustion consumption by to the public,24.65225766,TJ,CH4,10.0,kg/TJ,246.5225766,kg +0b0c5de3-43b8-3b69-9f03-425f9dc3b542,SESCO,II.1.1,Salta,AR-A,annual,2011,bioetanol combustion consumption by to the public,24.65225766,TJ,N2O,0.6,kg/TJ,14.791354596,kg +361cf5b4-6780-3ba0-a44e-58d9287b918d,SESCO,II.1.1,San Juan,AR-J,annual,2011,bioetanol combustion consumption by to the public,15.946147619999998,TJ,CH4,10.0,kg/TJ,159.4614762,kg +8d82215c-2485-3cb2-bbfe-a99af40222cb,SESCO,II.1.1,San Juan,AR-J,annual,2011,bioetanol combustion consumption by to the public,15.946147619999998,TJ,N2O,0.6,kg/TJ,9.567688571999998,kg +1299ab2b-bb94-355e-9c91-3281386854b0,SESCO,II.1.1,San Luis,AR-D,annual,2011,bioetanol combustion consumption by to the public,13.558081320000001,TJ,CH4,10.0,kg/TJ,135.58081320000002,kg +643e78fc-a3bc-3524-ae5f-b8effccf9f51,SESCO,II.1.1,San Luis,AR-D,annual,2011,bioetanol combustion consumption by to the public,13.558081320000001,TJ,N2O,0.6,kg/TJ,8.134848792,kg +4408d8ff-814e-37d2-b5f1-5a770cdb1945,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2011,bioetanol combustion consumption by to the public,28.926065519999998,TJ,CH4,10.0,kg/TJ,289.2606552,kg +30c14b42-27d0-3d0a-b844-f5d42105cb49,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2011,bioetanol combustion consumption by to the public,28.926065519999998,TJ,N2O,0.6,kg/TJ,17.355639311999997,kg +bacff650-bd3c-3c07-903b-585e4ffa053c,SESCO,II.1.1,Santa Fe,AR-S,annual,2011,bioetanol combustion consumption by to the public,73.05821243999999,TJ,CH4,10.0,kg/TJ,730.5821243999999,kg +b720a05b-93b6-37b0-9117-aa6c3a6e4954,SESCO,II.1.1,Santa Fe,AR-S,annual,2011,bioetanol combustion consumption by to the public,73.05821243999999,TJ,N2O,0.6,kg/TJ,43.834927463999996,kg +65b83d75-a080-3d71-b2fb-973b3186b8e5,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2011,bioetanol combustion consumption by to the public,10.94420322,TJ,CH4,10.0,kg/TJ,109.4420322,kg +d14a0765-0950-3932-83df-8ae607537c59,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2011,bioetanol combustion consumption by to the public,10.94420322,TJ,N2O,0.6,kg/TJ,6.566521932,kg +dbe91326-ac81-3431-ba0b-4cf988686fc8,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2011,bioetanol combustion consumption by to the public,21.823219260000002,TJ,CH4,10.0,kg/TJ,218.23219260000002,kg +53487fbc-2f34-3ed0-b89c-7a5acceebe46,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2011,bioetanol combustion consumption by to the public,21.823219260000002,TJ,N2O,0.6,kg/TJ,13.093931556000001,kg +ec6f2514-f793-34c5-b057-20f43d5fe54a,SESCO,II.1.1,Tucuman,AR-T,annual,2011,bioetanol combustion consumption by to the public,21.323876939999998,TJ,CH4,10.0,kg/TJ,213.23876939999997,kg +8506d0e4-2259-399f-9453-171f40627085,SESCO,II.1.1,Tucuman,AR-T,annual,2011,bioetanol combustion consumption by to the public,21.323876939999998,TJ,N2O,0.6,kg/TJ,12.794326164,kg +669cb122-149c-3d00-b9e5-ce9a15561b68,SESCO,II.1.1,Buenos Aires,AR-B,annual,2011,bioetanol combustion consumption by to the public,184.79031714,TJ,CH4,10.0,kg/TJ,1847.9031714000002,kg +30590776-ab32-373c-8526-c3098c1656ea,SESCO,II.1.1,Buenos Aires,AR-B,annual,2011,bioetanol combustion consumption by to the public,184.79031714,TJ,N2O,0.6,kg/TJ,110.87419028400001,kg +d178d595-5fdc-3b3e-946f-ab6ecbca8ddd,SESCO,II.1.1,Capital Federal,AR-C,annual,2011,bioetanol combustion consumption by to the public,40.59542286,TJ,CH4,10.0,kg/TJ,405.95422859999996,kg +bcba5ef3-edef-307a-a908-16a3c4c60450,SESCO,II.1.1,Capital Federal,AR-C,annual,2011,bioetanol combustion consumption by to the public,40.59542286,TJ,N2O,0.6,kg/TJ,24.357253716,kg +e2e960bd-855b-3e3d-a674-da8369fbee54,SESCO,II.1.1,Catamarca,AR-K,annual,2011,bioetanol combustion consumption by to the public,2.5627508999999997,TJ,CH4,10.0,kg/TJ,25.627508999999996,kg +fba176db-d38f-3f88-b2aa-713bfdd13a37,SESCO,II.1.1,Catamarca,AR-K,annual,2011,bioetanol combustion consumption by to the public,2.5627508999999997,TJ,N2O,0.6,kg/TJ,1.5376505399999998,kg +9440d7f4-c1c1-3a13-9ba4-c1ac833e19e3,SESCO,II.1.1,Chaco,AR-H,annual,2011,bioetanol combustion consumption by to the public,9.33966126,TJ,CH4,10.0,kg/TJ,93.3966126,kg +f5f49992-b6e8-3142-b251-ec72e2846b41,SESCO,II.1.1,Chaco,AR-H,annual,2011,bioetanol combustion consumption by to the public,9.33966126,TJ,N2O,0.6,kg/TJ,5.6037967559999995,kg +32dfbc9d-6741-3894-aa3c-8bd5c065469d,SESCO,II.1.1,Chubut,AR-U,annual,2011,bioetanol combustion consumption by to the public,12.820145400000001,TJ,CH4,10.0,kg/TJ,128.201454,kg +1a97d5ef-aa84-35da-8867-06ca76853daa,SESCO,II.1.1,Chubut,AR-U,annual,2011,bioetanol combustion consumption by to the public,12.820145400000001,TJ,N2O,0.6,kg/TJ,7.69208724,kg +504701ae-5b3b-3cdc-943e-73c2c9e6ff72,SESCO,II.1.1,Corrientes,AR-W,annual,2011,bioetanol combustion consumption by to the public,8.20421136,TJ,CH4,10.0,kg/TJ,82.04211360000001,kg +660f130d-6cdf-3519-876a-8175182e3cd3,SESCO,II.1.1,Corrientes,AR-W,annual,2011,bioetanol combustion consumption by to the public,8.20421136,TJ,N2O,0.6,kg/TJ,4.922526816,kg +8e5da082-af22-344b-8a35-42e242b1cb0c,SESCO,II.1.1,Córdoba,AR-X,annual,2011,bioetanol combustion consumption by to the public,41.00444046,TJ,CH4,10.0,kg/TJ,410.0444046,kg +8bfdedda-3180-357b-81c7-1a48a74d2161,SESCO,II.1.1,Córdoba,AR-X,annual,2011,bioetanol combustion consumption by to the public,41.00444046,TJ,N2O,0.6,kg/TJ,24.602664276,kg +78cb6db6-a91e-31d5-bb68-69c711c98cb7,SESCO,II.1.1,Entre Rios,AR-E,annual,2011,bioetanol combustion consumption by to the public,13.96965528,TJ,CH4,10.0,kg/TJ,139.6965528,kg +8ad4218b-bf70-340c-9bf5-798b7d128db5,SESCO,II.1.1,Entre Rios,AR-E,annual,2011,bioetanol combustion consumption by to the public,13.96965528,TJ,N2O,0.6,kg/TJ,8.381793168,kg +e20c634d-cd79-3cb9-96aa-e1f4096ddf9c,SESCO,II.1.1,Formosa,AR-P,annual,2011,bioetanol combustion consumption by to the public,3.4681284,TJ,CH4,10.0,kg/TJ,34.681284,kg +b76cbcbc-553f-31b3-87bc-9e3ec7f371b0,SESCO,II.1.1,Formosa,AR-P,annual,2011,bioetanol combustion consumption by to the public,3.4681284,TJ,N2O,0.6,kg/TJ,2.08087704,kg +9155bf0e-0e46-377b-86c4-3a3360354562,SESCO,II.1.1,Jujuy,AR-Y,annual,2011,bioetanol combustion consumption by to the public,3.34840554,TJ,CH4,10.0,kg/TJ,33.4840554,kg +59c2501b-91e4-3575-9651-e0a4afa9f403,SESCO,II.1.1,Jujuy,AR-Y,annual,2011,bioetanol combustion consumption by to the public,3.34840554,TJ,N2O,0.6,kg/TJ,2.009043324,kg +dd3d3b1c-077e-39e9-b303-09b97afd3349,SESCO,II.1.1,La Pampa,AR-L,annual,2011,bioetanol combustion consumption by to the public,7.6605588000000004,TJ,CH4,10.0,kg/TJ,76.60558800000001,kg +4af0a9d0-b60d-3fb3-850e-2f82129278c2,SESCO,II.1.1,La Pampa,AR-L,annual,2011,bioetanol combustion consumption by to the public,7.6605588000000004,TJ,N2O,0.6,kg/TJ,4.59633528,kg +4c24887c-e9e1-3388-86ff-af58a65e584d,SESCO,II.1.1,La Rioja,AR-F,annual,2011,bioetanol combustion consumption by to the public,3.63770028,TJ,CH4,10.0,kg/TJ,36.3770028,kg +8281d822-e639-3de0-8cd6-f26aa0b72ec0,SESCO,II.1.1,La Rioja,AR-F,annual,2011,bioetanol combustion consumption by to the public,3.63770028,TJ,N2O,0.6,kg/TJ,2.1826201679999997,kg +4163f8c2-2fe1-30a3-b738-65abc89c2ec9,SESCO,II.1.1,Mendoza,AR-M,annual,2011,bioetanol combustion consumption by to the public,19.3942512,TJ,CH4,10.0,kg/TJ,193.942512,kg +1014f077-12ac-3992-bba5-0a6a7311b61d,SESCO,II.1.1,Mendoza,AR-M,annual,2011,bioetanol combustion consumption by to the public,19.3942512,TJ,N2O,0.6,kg/TJ,11.636550719999999,kg +5138c40c-aaf2-3fa8-b4a5-e36aad350297,SESCO,II.1.1,Misiones,AR-N,annual,2011,bioetanol combustion consumption by to the public,12.45714228,TJ,CH4,10.0,kg/TJ,124.5714228,kg +8355f762-4c86-3e93-a463-4696b5a6ce39,SESCO,II.1.1,Misiones,AR-N,annual,2011,bioetanol combustion consumption by to the public,12.45714228,TJ,N2O,0.6,kg/TJ,7.474285367999999,kg +28a2b8b3-68f5-3692-bc17-95580d2b8734,SESCO,II.1.1,Neuquén,AR-Q,annual,2011,bioetanol combustion consumption by to the public,10.44145242,TJ,CH4,10.0,kg/TJ,104.41452419999999,kg +1cf6e3c4-c4c9-3877-8fcf-f7dc7f11ad12,SESCO,II.1.1,Neuquén,AR-Q,annual,2011,bioetanol combustion consumption by to the public,10.44145242,TJ,N2O,0.6,kg/TJ,6.2648714519999995,kg +dec434ca-b797-3629-b5f5-b398a54ed4db,SESCO,II.1.1,Rio Negro,AR-R,annual,2011,bioetanol combustion consumption by to the public,9.86286294,TJ,CH4,10.0,kg/TJ,98.6286294,kg +06452795-d657-340e-a05a-58b124184e5d,SESCO,II.1.1,Rio Negro,AR-R,annual,2011,bioetanol combustion consumption by to the public,9.86286294,TJ,N2O,0.6,kg/TJ,5.917717764,kg +a3277076-9b43-355d-8dc9-0da8e529a14d,SESCO,II.1.1,Salta,AR-A,annual,2011,bioetanol combustion consumption by to the public,8.84330136,TJ,CH4,10.0,kg/TJ,88.4330136,kg +55e49bad-c4b7-3239-a3c6-d6fbecef9697,SESCO,II.1.1,Salta,AR-A,annual,2011,bioetanol combustion consumption by to the public,8.84330136,TJ,N2O,0.6,kg/TJ,5.305980816,kg +a6b84a31-ef2b-3a79-976f-db37b5e7984b,SESCO,II.1.1,San Juan,AR-J,annual,2011,bioetanol combustion consumption by to the public,6.3964387799999995,TJ,CH4,10.0,kg/TJ,63.9643878,kg +2aa99277-88af-353d-a1e3-08b42f07ac04,SESCO,II.1.1,San Juan,AR-J,annual,2011,bioetanol combustion consumption by to the public,6.3964387799999995,TJ,N2O,0.6,kg/TJ,3.8378632679999996,kg +00928f9b-e3e9-3ace-8231-507928b13dab,SESCO,II.1.1,San Luis,AR-D,annual,2011,bioetanol combustion consumption by to the public,6.167644559999999,TJ,CH4,10.0,kg/TJ,61.676445599999994,kg +a965f680-e0b8-3dd5-aa7d-99d4e59d8450,SESCO,II.1.1,San Luis,AR-D,annual,2011,bioetanol combustion consumption by to the public,6.167644559999999,TJ,N2O,0.6,kg/TJ,3.7005867359999995,kg +4b74cd2d-d706-39d6-bbaf-5602f035cdae,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2011,bioetanol combustion consumption by to the public,6.874904160000001,TJ,CH4,10.0,kg/TJ,68.74904160000001,kg +06f2b2bb-bcb8-392b-8816-a63bbc68ce7c,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2011,bioetanol combustion consumption by to the public,6.874904160000001,TJ,N2O,0.6,kg/TJ,4.124942496,kg +a5539cc0-055b-3b95-bc6b-c1b7df2f82aa,SESCO,II.1.1,Santa Fe,AR-S,annual,2011,bioetanol combustion consumption by to the public,36.28241748,TJ,CH4,10.0,kg/TJ,362.8241748,kg +3c1fcf3e-6f23-3838-8cdb-026f3506fe7f,SESCO,II.1.1,Santa Fe,AR-S,annual,2011,bioetanol combustion consumption by to the public,36.28241748,TJ,N2O,0.6,kg/TJ,21.769450488,kg +6842977e-5a51-3cc8-b2d4-6fae92656a13,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2011,bioetanol combustion consumption by to the public,6.11651736,TJ,CH4,10.0,kg/TJ,61.165173599999996,kg +d31824ca-cc1b-320e-82f6-8eec07bfe7ed,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2011,bioetanol combustion consumption by to the public,6.11651736,TJ,N2O,0.6,kg/TJ,3.6699104159999996,kg +3ef07d53-a1cd-31cb-b06b-85ebdf04026f,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2011,bioetanol combustion consumption by to the public,0.40518306,TJ,CH4,10.0,kg/TJ,4.0518306,kg +e2b959c4-ecc3-3083-bcac-b3eeb093aac7,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2011,bioetanol combustion consumption by to the public,0.40518306,TJ,N2O,0.6,kg/TJ,0.24310983599999997,kg +1c3d4f7d-0eaf-3215-a7b7-1a07e0abf85b,SESCO,II.1.1,Tucuman,AR-T,annual,2011,bioetanol combustion consumption by to the public,9.1006416,TJ,CH4,10.0,kg/TJ,91.006416,kg +36583f89-113b-39f7-bc58-b5326ae55ac8,SESCO,II.1.1,Tucuman,AR-T,annual,2011,bioetanol combustion consumption by to the public,9.1006416,TJ,N2O,0.6,kg/TJ,5.46038496,kg +d528005f-5856-36ab-805b-02ba6c606dcd,SESCO,II.1.1,Buenos Aires,AR-B,annual,2011,bioetanol combustion consumption by freight transport,0.34681284,TJ,CH4,10.0,kg/TJ,3.4681284000000003,kg +87e75431-cfe0-3a47-881b-3e1dac03bd63,SESCO,II.1.1,Buenos Aires,AR-B,annual,2011,bioetanol combustion consumption by freight transport,0.34681284,TJ,N2O,0.6,kg/TJ,0.208087704,kg +a0e71644-f2ba-3d29-94aa-be0f93ce9abb,SESCO,II.1.1,Capital Federal,AR-C,annual,2011,bioetanol combustion consumption by freight transport,0.0553878,TJ,CH4,10.0,kg/TJ,0.553878,kg +fe6cd39b-064e-3c38-9728-c4f31ed29ea8,SESCO,II.1.1,Capital Federal,AR-C,annual,2011,bioetanol combustion consumption by freight transport,0.0553878,TJ,N2O,0.6,kg/TJ,0.03323268,kg +15c8f7d6-ca0d-3a2d-b67f-cfb745354651,SESCO,II.1.1,Catamarca,AR-K,annual,2011,bioetanol combustion consumption by freight transport,0.00042605999999999997,TJ,CH4,10.0,kg/TJ,0.0042606,kg +ea3ffdaa-c037-3d9b-8938-cfdc2e59c09b,SESCO,II.1.1,Catamarca,AR-K,annual,2011,bioetanol combustion consumption by freight transport,0.00042605999999999997,TJ,N2O,0.6,kg/TJ,0.00025563599999999995,kg +167b8b92-37e0-338f-88e3-d6db87e593d1,SESCO,II.1.1,Chaco,AR-H,annual,2011,bioetanol combustion consumption by freight transport,0.0063909,TJ,CH4,10.0,kg/TJ,0.063909,kg +5ffc931d-4661-3fb4-bea6-33e63e451093,SESCO,II.1.1,Chaco,AR-H,annual,2011,bioetanol combustion consumption by freight transport,0.0063909,TJ,N2O,0.6,kg/TJ,0.0038345399999999996,kg +4854168d-3399-33d7-b90e-0be337475e7b,SESCO,II.1.1,Chubut,AR-U,annual,2011,bioetanol combustion consumption by freight transport,0.00937332,TJ,CH4,10.0,kg/TJ,0.09373319999999999,kg +b95827a9-e7ba-383a-ac59-eb0088f94ea3,SESCO,II.1.1,Chubut,AR-U,annual,2011,bioetanol combustion consumption by freight transport,0.00937332,TJ,N2O,0.6,kg/TJ,0.0056239919999999995,kg +f79a8008-1510-3cb9-a1bd-98d62a4e7ab6,SESCO,II.1.1,Corrientes,AR-W,annual,2011,bioetanol combustion consumption by freight transport,0.0085212,TJ,CH4,10.0,kg/TJ,0.085212,kg +c4eb2eca-87b6-3b85-970d-a95095041ff5,SESCO,II.1.1,Corrientes,AR-W,annual,2011,bioetanol combustion consumption by freight transport,0.0085212,TJ,N2O,0.6,kg/TJ,0.005112719999999999,kg +6a0e9b7f-6da1-3315-ba7d-9294bc3b0600,SESCO,II.1.1,Córdoba,AR-X,annual,2011,bioetanol combustion consumption by freight transport,0.032380559999999996,TJ,CH4,10.0,kg/TJ,0.32380559999999997,kg +e069458f-70bc-30c6-9036-ff9d876bf3b2,SESCO,II.1.1,Córdoba,AR-X,annual,2011,bioetanol combustion consumption by freight transport,0.032380559999999996,TJ,N2O,0.6,kg/TJ,0.019428335999999997,kg +d4768481-f403-3bd5-a3a5-423ba13f07e1,SESCO,II.1.1,Entre Rios,AR-E,annual,2011,bioetanol combustion consumption by freight transport,0.0127818,TJ,CH4,10.0,kg/TJ,0.127818,kg +5c4bacb4-ac0a-3f04-b583-6bcac4ecc744,SESCO,II.1.1,Entre Rios,AR-E,annual,2011,bioetanol combustion consumption by freight transport,0.0127818,TJ,N2O,0.6,kg/TJ,0.007669079999999999,kg +1bb6d8bc-38d7-329e-b5fa-e720ba4b2327,SESCO,II.1.1,Formosa,AR-P,annual,2011,bioetanol combustion consumption by freight transport,0.00042605999999999997,TJ,CH4,10.0,kg/TJ,0.0042606,kg +5e5b328d-5cc6-3930-a979-96f3615f13e4,SESCO,II.1.1,Formosa,AR-P,annual,2011,bioetanol combustion consumption by freight transport,0.00042605999999999997,TJ,N2O,0.6,kg/TJ,0.00025563599999999995,kg +afb21d67-95af-3344-9989-ab862bc466e6,SESCO,II.1.1,Jujuy,AR-Y,annual,2011,bioetanol combustion consumption by freight transport,0.0017042399999999999,TJ,CH4,10.0,kg/TJ,0.0170424,kg +e13363be-a933-322d-ae6d-a6154d7bf2a0,SESCO,II.1.1,Jujuy,AR-Y,annual,2011,bioetanol combustion consumption by freight transport,0.0017042399999999999,TJ,N2O,0.6,kg/TJ,0.0010225439999999998,kg +2d1064f0-0dc6-36cd-b980-b16aa234a1ce,SESCO,II.1.1,La Pampa,AR-L,annual,2011,bioetanol combustion consumption by freight transport,0.00298242,TJ,CH4,10.0,kg/TJ,0.0298242,kg +dfa36a6d-d29b-3ec0-afc1-1a1f1d6868f7,SESCO,II.1.1,La Pampa,AR-L,annual,2011,bioetanol combustion consumption by freight transport,0.00298242,TJ,N2O,0.6,kg/TJ,0.001789452,kg +8155c34c-caf9-378f-9f6c-58060b73b58f,SESCO,II.1.1,La Rioja,AR-F,annual,2011,bioetanol combustion consumption by freight transport,0.0012781799999999999,TJ,CH4,10.0,kg/TJ,0.0127818,kg +924f8765-6448-3547-9d5c-11fa5c9774a2,SESCO,II.1.1,La Rioja,AR-F,annual,2011,bioetanol combustion consumption by freight transport,0.0012781799999999999,TJ,N2O,0.6,kg/TJ,0.0007669079999999998,kg +7c97a5ee-9d69-3872-a012-c6450ed40130,SESCO,II.1.1,Mendoza,AR-M,annual,2011,bioetanol combustion consumption by freight transport,0.032380559999999996,TJ,CH4,10.0,kg/TJ,0.32380559999999997,kg +5bbb06bb-0135-3e71-9da2-8becdc6e8875,SESCO,II.1.1,Mendoza,AR-M,annual,2011,bioetanol combustion consumption by freight transport,0.032380559999999996,TJ,N2O,0.6,kg/TJ,0.019428335999999997,kg +8fa8e5d7-64f9-3235-816e-015752238542,SESCO,II.1.1,Misiones,AR-N,annual,2011,bioetanol combustion consumption by freight transport,0.008095139999999999,TJ,CH4,10.0,kg/TJ,0.08095139999999999,kg +5077916b-bb69-3e8a-99fc-4ecbf50f52df,SESCO,II.1.1,Misiones,AR-N,annual,2011,bioetanol combustion consumption by freight transport,0.008095139999999999,TJ,N2O,0.6,kg/TJ,0.004857083999999999,kg +69be2e6d-6c27-3757-9109-1a5ca07203cb,SESCO,II.1.1,Neuquén,AR-Q,annual,2011,bioetanol combustion consumption by freight transport,0.0106515,TJ,CH4,10.0,kg/TJ,0.106515,kg +ba072e55-da1f-3588-8feb-cfabcf337742,SESCO,II.1.1,Neuquén,AR-Q,annual,2011,bioetanol combustion consumption by freight transport,0.0106515,TJ,N2O,0.6,kg/TJ,0.0063909,kg +f68464a0-f04f-3968-bccd-9f9977c27763,SESCO,II.1.1,Rio Negro,AR-R,annual,2011,bioetanol combustion consumption by freight transport,0.0106515,TJ,CH4,10.0,kg/TJ,0.106515,kg +8cfcb868-1711-3270-bf28-94b3cc5b3446,SESCO,II.1.1,Rio Negro,AR-R,annual,2011,bioetanol combustion consumption by freight transport,0.0106515,TJ,N2O,0.6,kg/TJ,0.0063909,kg +90a7954d-eb45-30be-8376-1201b6a6da0a,SESCO,II.1.1,Salta,AR-A,annual,2011,bioetanol combustion consumption by freight transport,0.0085212,TJ,CH4,10.0,kg/TJ,0.085212,kg +ebc51a4a-b999-3eb0-9e8f-6f4f5c83e564,SESCO,II.1.1,Salta,AR-A,annual,2011,bioetanol combustion consumption by freight transport,0.0085212,TJ,N2O,0.6,kg/TJ,0.005112719999999999,kg +394d9628-e90d-348e-92fd-bc7fbb3db74b,SESCO,II.1.1,San Juan,AR-J,annual,2011,bioetanol combustion consumption by freight transport,0.0021303,TJ,CH4,10.0,kg/TJ,0.021303,kg +f6f92680-53fc-3619-976c-35f3db28c257,SESCO,II.1.1,San Juan,AR-J,annual,2011,bioetanol combustion consumption by freight transport,0.0021303,TJ,N2O,0.6,kg/TJ,0.0012781799999999999,kg +73b958d4-3f88-3e62-9789-c016455df6c6,SESCO,II.1.1,San Luis,AR-D,annual,2011,bioetanol combustion consumption by freight transport,0.00468666,TJ,CH4,10.0,kg/TJ,0.046866599999999994,kg +23ef3ab7-31e4-3814-9099-e9ec8c1a051e,SESCO,II.1.1,San Luis,AR-D,annual,2011,bioetanol combustion consumption by freight transport,0.00468666,TJ,N2O,0.6,kg/TJ,0.0028119959999999998,kg +0ef228a0-9cd2-3642-b62b-eadf5b9944c9,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2011,bioetanol combustion consumption by freight transport,0.00298242,TJ,CH4,10.0,kg/TJ,0.0298242,kg +03b73bf5-166f-31b5-9599-0565aa41eb3e,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2011,bioetanol combustion consumption by freight transport,0.00298242,TJ,N2O,0.6,kg/TJ,0.001789452,kg +f792a12e-5c5c-305d-9f6b-2e37836d1943,SESCO,II.1.1,Santa Fe,AR-S,annual,2011,bioetanol combustion consumption by freight transport,0.05155326,TJ,CH4,10.0,kg/TJ,0.5155326,kg +07b78673-91cf-375d-8ac7-151b05f4b067,SESCO,II.1.1,Santa Fe,AR-S,annual,2011,bioetanol combustion consumption by freight transport,0.05155326,TJ,N2O,0.6,kg/TJ,0.030931955999999997,kg +4e9983f9-1fc0-353d-9e08-cb4377baad9e,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2011,bioetanol combustion consumption by freight transport,0.0025563599999999997,TJ,CH4,10.0,kg/TJ,0.0255636,kg +9b33756f-94e1-3203-91ed-bf636d919669,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2011,bioetanol combustion consumption by freight transport,0.0025563599999999997,TJ,N2O,0.6,kg/TJ,0.0015338159999999997,kg +5a4d2d0a-b5a7-3a24-b751-6050dede8762,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2011,bioetanol combustion consumption by freight transport,0.0012781799999999999,TJ,CH4,10.0,kg/TJ,0.0127818,kg +debf8a4b-e77c-39af-a08b-9880918cf2e7,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2011,bioetanol combustion consumption by freight transport,0.0012781799999999999,TJ,N2O,0.6,kg/TJ,0.0007669079999999998,kg +1507e541-034b-3358-8505-5247ee2b6643,SESCO,II.1.1,Tucuman,AR-T,annual,2011,bioetanol combustion consumption by freight transport,0.00724302,TJ,CH4,10.0,kg/TJ,0.0724302,kg +ce2c63fe-7c2d-3295-a47e-9a66a7a49afa,SESCO,II.1.1,Tucuman,AR-T,annual,2011,bioetanol combustion consumption by freight transport,0.00724302,TJ,N2O,0.6,kg/TJ,0.004345812,kg +c9aa4cfd-f73b-3536-962e-dd607d45d094,SESCO,II.1.1,Buenos Aires,AR-B,annual,2011,bioetanol combustion consumption by freight transport,0.38601036,TJ,CH4,10.0,kg/TJ,3.8601036,kg +89a60579-3d8c-3705-a760-02758a5e0ea5,SESCO,II.1.1,Buenos Aires,AR-B,annual,2011,bioetanol combustion consumption by freight transport,0.38601036,TJ,N2O,0.6,kg/TJ,0.23160621599999998,kg +c4f0fb88-bec0-3969-8e03-255602dcca59,SESCO,II.1.1,Capital Federal,AR-C,annual,2011,bioetanol combustion consumption by freight transport,0.1043847,TJ,CH4,10.0,kg/TJ,1.043847,kg +9fb19d44-1369-3fe7-ab13-1bfeb24178ce,SESCO,II.1.1,Capital Federal,AR-C,annual,2011,bioetanol combustion consumption by freight transport,0.1043847,TJ,N2O,0.6,kg/TJ,0.06263081999999999,kg +15c8f7d6-ca0d-3a2d-b67f-cfb745354651,SESCO,II.1.1,Catamarca,AR-K,annual,2011,bioetanol combustion consumption by freight transport,0.00042605999999999997,TJ,CH4,10.0,kg/TJ,0.0042606,kg +ea3ffdaa-c037-3d9b-8938-cfdc2e59c09b,SESCO,II.1.1,Catamarca,AR-K,annual,2011,bioetanol combustion consumption by freight transport,0.00042605999999999997,TJ,N2O,0.6,kg/TJ,0.00025563599999999995,kg +ba869e3e-0c6f-3c21-8f7a-8f693aba2a6a,SESCO,II.1.1,Chaco,AR-H,annual,2011,bioetanol combustion consumption by freight transport,0.010225439999999999,TJ,CH4,10.0,kg/TJ,0.1022544,kg +766eb192-4d75-324a-a4ef-384c46b8bfec,SESCO,II.1.1,Chaco,AR-H,annual,2011,bioetanol combustion consumption by freight transport,0.010225439999999999,TJ,N2O,0.6,kg/TJ,0.006135263999999999,kg +967b6872-cc45-3d64-b6c4-7613905b1973,SESCO,II.1.1,Chubut,AR-U,annual,2011,bioetanol combustion consumption by freight transport,0.007669079999999999,TJ,CH4,10.0,kg/TJ,0.07669079999999999,kg +0d47c510-c114-34cb-8680-bdb1101ad357,SESCO,II.1.1,Chubut,AR-U,annual,2011,bioetanol combustion consumption by freight transport,0.007669079999999999,TJ,N2O,0.6,kg/TJ,0.004601447999999999,kg +afb93252-cc80-3c3a-a83c-c86db53f1eb4,SESCO,II.1.1,Corrientes,AR-W,annual,2011,bioetanol combustion consumption by freight transport,0.0068169599999999995,TJ,CH4,10.0,kg/TJ,0.0681696,kg +3362e73c-459e-32a7-8bcf-3c8adb764834,SESCO,II.1.1,Corrientes,AR-W,annual,2011,bioetanol combustion consumption by freight transport,0.0068169599999999995,TJ,N2O,0.6,kg/TJ,0.004090175999999999,kg +6885ffaf-2338-35a9-be94-cc1a5616cc46,SESCO,II.1.1,Córdoba,AR-X,annual,2011,bioetanol combustion consumption by freight transport,0.030676319999999997,TJ,CH4,10.0,kg/TJ,0.30676319999999996,kg +6c669eee-7008-3f6e-a259-ff067004c2fe,SESCO,II.1.1,Córdoba,AR-X,annual,2011,bioetanol combustion consumption by freight transport,0.030676319999999997,TJ,N2O,0.6,kg/TJ,0.018405791999999997,kg +408aa0b9-36bd-34f4-94e3-91ff7fba3b68,SESCO,II.1.1,Entre Rios,AR-E,annual,2011,bioetanol combustion consumption by freight transport,0.01192968,TJ,CH4,10.0,kg/TJ,0.1192968,kg +b1309d9c-c5a8-3083-a398-7c7d261a75dc,SESCO,II.1.1,Entre Rios,AR-E,annual,2011,bioetanol combustion consumption by freight transport,0.01192968,TJ,N2O,0.6,kg/TJ,0.007157808,kg +34b39e73-dcf8-379f-8655-32177d674aa5,SESCO,II.1.1,Formosa,AR-P,annual,2011,bioetanol combustion consumption by freight transport,0.0008521199999999999,TJ,CH4,10.0,kg/TJ,0.0085212,kg +7d8ff3ab-88e9-3543-8229-bc376e70b7af,SESCO,II.1.1,Formosa,AR-P,annual,2011,bioetanol combustion consumption by freight transport,0.0008521199999999999,TJ,N2O,0.6,kg/TJ,0.0005112719999999999,kg +0d2ae1f5-b16d-31c5-a263-1013a1f6653b,SESCO,II.1.1,Jujuy,AR-Y,annual,2011,bioetanol combustion consumption by freight transport,0.0008521199999999999,TJ,CH4,10.0,kg/TJ,0.0085212,kg +3ed49f0d-04c9-3fce-9145-9b9bd02ddacd,SESCO,II.1.1,Jujuy,AR-Y,annual,2011,bioetanol combustion consumption by freight transport,0.0008521199999999999,TJ,N2O,0.6,kg/TJ,0.0005112719999999999,kg +2792db6d-bde5-3a3f-9653-206bd7822800,SESCO,II.1.1,La Pampa,AR-L,annual,2011,bioetanol combustion consumption by freight transport,0.0025563599999999997,TJ,CH4,10.0,kg/TJ,0.0255636,kg +5e7e7785-5f4a-3ad1-9f02-a2175461f2e7,SESCO,II.1.1,La Pampa,AR-L,annual,2011,bioetanol combustion consumption by freight transport,0.0025563599999999997,TJ,N2O,0.6,kg/TJ,0.0015338159999999997,kg +adfdccbb-7726-3072-a1d3-4b1ab53bfc36,SESCO,II.1.1,La Rioja,AR-F,annual,2011,bioetanol combustion consumption by freight transport,0.0008521199999999999,TJ,CH4,10.0,kg/TJ,0.0085212,kg +7f7bdd19-7ddd-3547-b49c-476669ee487a,SESCO,II.1.1,La Rioja,AR-F,annual,2011,bioetanol combustion consumption by freight transport,0.0008521199999999999,TJ,N2O,0.6,kg/TJ,0.0005112719999999999,kg +e429df09-613d-358b-8732-f60558dedaa1,SESCO,II.1.1,Mendoza,AR-M,annual,2011,bioetanol combustion consumption by freight transport,0.02087694,TJ,CH4,10.0,kg/TJ,0.2087694,kg +a887e21e-fa69-3224-b439-92ba31ad0480,SESCO,II.1.1,Mendoza,AR-M,annual,2011,bioetanol combustion consumption by freight transport,0.02087694,TJ,N2O,0.6,kg/TJ,0.012526164,kg +202dca87-2b91-3e20-8069-c8e82d2f0233,SESCO,II.1.1,Misiones,AR-N,annual,2011,bioetanol combustion consumption by freight transport,0.00596484,TJ,CH4,10.0,kg/TJ,0.0596484,kg +b1100ccc-b39b-38f5-9764-00c017fd6e99,SESCO,II.1.1,Misiones,AR-N,annual,2011,bioetanol combustion consumption by freight transport,0.00596484,TJ,N2O,0.6,kg/TJ,0.003578904,kg +4e2f9d5a-d16d-3bb1-ad24-65a709c3a375,SESCO,II.1.1,Neuquén,AR-Q,annual,2011,bioetanol combustion consumption by freight transport,0.008095139999999999,TJ,CH4,10.0,kg/TJ,0.08095139999999999,kg +eae57004-4cb5-3ea5-8c88-c76c6c337613,SESCO,II.1.1,Neuquén,AR-Q,annual,2011,bioetanol combustion consumption by freight transport,0.008095139999999999,TJ,N2O,0.6,kg/TJ,0.004857083999999999,kg +b69ec520-db2f-3e2f-ba4e-39a071705342,SESCO,II.1.1,Rio Negro,AR-R,annual,2011,bioetanol combustion consumption by freight transport,0.007669079999999999,TJ,CH4,10.0,kg/TJ,0.07669079999999999,kg +2cdd2b28-4bb5-3d25-8293-214d91d527f1,SESCO,II.1.1,Rio Negro,AR-R,annual,2011,bioetanol combustion consumption by freight transport,0.007669079999999999,TJ,N2O,0.6,kg/TJ,0.004601447999999999,kg +ec42fcfc-b79f-3816-9f82-bde7c74bed39,SESCO,II.1.1,Salta,AR-A,annual,2011,bioetanol combustion consumption by freight transport,0.00553878,TJ,CH4,10.0,kg/TJ,0.0553878,kg +11e70322-441e-34d9-a0da-666d94ff7366,SESCO,II.1.1,Salta,AR-A,annual,2011,bioetanol combustion consumption by freight transport,0.00553878,TJ,N2O,0.6,kg/TJ,0.003323268,kg +118789c7-e607-37d1-9aa5-f875c37409d7,SESCO,II.1.1,San Juan,AR-J,annual,2011,bioetanol combustion consumption by freight transport,0.0017042399999999999,TJ,CH4,10.0,kg/TJ,0.0170424,kg +74f561e5-1a09-3112-a341-d1450a823386,SESCO,II.1.1,San Juan,AR-J,annual,2011,bioetanol combustion consumption by freight transport,0.0017042399999999999,TJ,N2O,0.6,kg/TJ,0.0010225439999999998,kg +7ad1742c-e527-3b6d-ad64-b90e36df425b,SESCO,II.1.1,San Luis,AR-D,annual,2011,bioetanol combustion consumption by freight transport,0.0034084799999999998,TJ,CH4,10.0,kg/TJ,0.0340848,kg +2fb7fcc7-03f0-35f7-a0fb-47eb5ef3d5b9,SESCO,II.1.1,San Luis,AR-D,annual,2011,bioetanol combustion consumption by freight transport,0.0034084799999999998,TJ,N2O,0.6,kg/TJ,0.0020450879999999996,kg +e886ad5b-b4ca-32b5-b7ca-5b039180ac54,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2011,bioetanol combustion consumption by freight transport,0.0017042399999999999,TJ,CH4,10.0,kg/TJ,0.0170424,kg +a12501c9-cadb-3f6d-9474-841b63b89018,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2011,bioetanol combustion consumption by freight transport,0.0017042399999999999,TJ,N2O,0.6,kg/TJ,0.0010225439999999998,kg +7b1607dc-dfbe-347c-9ebd-07a422a22243,SESCO,II.1.1,Santa Fe,AR-S,annual,2011,bioetanol combustion consumption by freight transport,0.04771872,TJ,CH4,10.0,kg/TJ,0.4771872,kg +f22f5dd8-4e8a-372e-9995-252efd2d6f26,SESCO,II.1.1,Santa Fe,AR-S,annual,2011,bioetanol combustion consumption by freight transport,0.04771872,TJ,N2O,0.6,kg/TJ,0.028631232,kg +6ed23538-be15-3e88-a514-1f6fab3966bb,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2011,bioetanol combustion consumption by freight transport,0.0012781799999999999,TJ,CH4,10.0,kg/TJ,0.0127818,kg +3fa75ef5-5cf8-3cd2-8691-3535b3963c6d,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2011,bioetanol combustion consumption by freight transport,0.0012781799999999999,TJ,N2O,0.6,kg/TJ,0.0007669079999999998,kg +b6b0052d-e8b2-3fc0-8493-219cf43ccba6,SESCO,II.1.1,Tucuman,AR-T,annual,2011,bioetanol combustion consumption by freight transport,0.008095139999999999,TJ,CH4,10.0,kg/TJ,0.08095139999999999,kg +d9578a1e-7c1e-3502-b31d-106b993f0548,SESCO,II.1.1,Tucuman,AR-T,annual,2011,bioetanol combustion consumption by freight transport,0.008095139999999999,TJ,N2O,0.6,kg/TJ,0.004857083999999999,kg +c20717cc-f67c-3038-84c3-66f4657e215f,SESCO,II.1.1,Capital Federal,AR-C,annual,2012,bioetanol combustion consumption by to the public,0.80908794,TJ,CH4,10.0,kg/TJ,8.090879399999999,kg +aa4736c1-d86d-3fac-bb34-a41be1ead661,SESCO,II.1.1,Capital Federal,AR-C,annual,2012,bioetanol combustion consumption by to the public,0.80908794,TJ,N2O,0.6,kg/TJ,0.4854527639999999,kg +ab0a9cb3-1682-3e99-8a40-07ce9a90c020,SESCO,II.1.1,Capital Federal,AR-C,annual,2012,bioetanol combustion consumption by to the public,0.1022544,TJ,CH4,10.0,kg/TJ,1.022544,kg +09762b66-b826-3da7-8d67-989cbdee8085,SESCO,II.1.1,Capital Federal,AR-C,annual,2012,bioetanol combustion consumption by to the public,0.1022544,TJ,N2O,0.6,kg/TJ,0.06135263999999999,kg +8a6ecc91-3c59-318d-a00c-3875f49aa424,SESCO,II.5.1,Córdoba,AR-X,annual,2012,bioetanol combustion consumption by agriculture machines,0.146862882,TJ,CH4,10.0,kg/TJ,1.46862882,kg +65c76a59-c5c5-300b-8c1c-c7e8863d3257,SESCO,II.5.1,Córdoba,AR-X,annual,2012,bioetanol combustion consumption by agriculture machines,0.146862882,TJ,N2O,0.6,kg/TJ,0.0881177292,kg +3307b0f6-959d-3d37-bedb-59992ca710e5,SESCO,II.5.1,Santa Fe,AR-S,annual,2012,bioetanol combustion consumption by agriculture machines,0.39802525199999994,TJ,CH4,10.0,kg/TJ,3.9802525199999996,kg +63cda862-89ad-36cd-8257-04f2cef7a782,SESCO,II.5.1,Santa Fe,AR-S,annual,2012,bioetanol combustion consumption by agriculture machines,0.39802525199999994,TJ,N2O,0.6,kg/TJ,0.23881515119999996,kg +caa6c4d2-2e9f-376c-8c36-c4c4fa9cd6ef,SESCO,II.5.1,Córdoba,AR-X,annual,2012,bioetanol combustion consumption by agriculture machines,0.070044264,TJ,CH4,10.0,kg/TJ,0.7004426399999999,kg +dafb17ec-0f2c-30b7-b7a0-5f8a0d9fd139,SESCO,II.5.1,Córdoba,AR-X,annual,2012,bioetanol combustion consumption by agriculture machines,0.070044264,TJ,N2O,0.6,kg/TJ,0.0420265584,kg +5fd11a89-9610-3e7a-b58a-f7be7decd03b,SESCO,II.5.1,Santa Fe,AR-S,annual,2012,bioetanol combustion consumption by agriculture machines,0.01150362,TJ,CH4,10.0,kg/TJ,0.1150362,kg +82bebfb3-a1ba-33ff-bab0-ac2373381ad1,SESCO,II.5.1,Santa Fe,AR-S,annual,2012,bioetanol combustion consumption by agriculture machines,0.01150362,TJ,N2O,0.6,kg/TJ,0.006902172000000001,kg +df95c809-b3d7-36df-89ad-f002a8c14afc,SESCO,II.1.1,Buenos Aires,AR-B,annual,2012,bioetanol combustion consumption by to the public,0.29781593999999995,TJ,CH4,10.0,kg/TJ,2.9781593999999996,kg +72714bec-918d-3f3d-809e-cd1085fbbc59,SESCO,II.1.1,Buenos Aires,AR-B,annual,2012,bioetanol combustion consumption by to the public,0.29781593999999995,TJ,N2O,0.6,kg/TJ,0.17868956399999997,kg +35ce37fa-2215-306d-92fb-85c60f9853b4,SESCO,II.1.1,Chaco,AR-H,annual,2012,bioetanol combustion consumption by to the public,0.08883350999999999,TJ,CH4,10.0,kg/TJ,0.8883350999999999,kg +3da9bf17-dc81-3474-8ed1-74783793013f,SESCO,II.1.1,Chaco,AR-H,annual,2012,bioetanol combustion consumption by to the public,0.08883350999999999,TJ,N2O,0.6,kg/TJ,0.05330010599999999,kg +58c7d687-42b5-3fae-aed2-c32a383ce085,SESCO,II.1.1,Entre Rios,AR-E,annual,2012,bioetanol combustion consumption by to the public,0.052405379999999994,TJ,CH4,10.0,kg/TJ,0.5240537999999999,kg +533ec31d-2284-3a7e-9f83-d5eba16128be,SESCO,II.1.1,Entre Rios,AR-E,annual,2012,bioetanol combustion consumption by to the public,0.052405379999999994,TJ,N2O,0.6,kg/TJ,0.031443228,kg +d9758482-9fbe-3005-8cfd-dafb426b10a5,SESCO,II.1.1,Santa Fe,AR-S,annual,2012,bioetanol combustion consumption by to the public,0.024924509999999997,TJ,CH4,10.0,kg/TJ,0.24924509999999997,kg +b5babf12-bb84-351a-b672-171faf963dab,SESCO,II.1.1,Santa Fe,AR-S,annual,2012,bioetanol combustion consumption by to the public,0.024924509999999997,TJ,N2O,0.6,kg/TJ,0.014954705999999998,kg +55b6b6b0-87d9-3a27-97bc-f63da042f62a,SESCO,II.1.1,Buenos Aires,AR-B,annual,2012,bioetanol combustion consumption by to the public,158.829863403879,TJ,CH4,10.0,kg/TJ,1588.29863403879,kg +1a12fd3d-a316-36f3-b8fc-2f40ed2ceb40,SESCO,II.1.1,Buenos Aires,AR-B,annual,2012,bioetanol combustion consumption by to the public,158.829863403879,TJ,N2O,0.6,kg/TJ,95.2979180423274,kg +a843a19f-be03-37a7-a029-4ba53909a9f4,SESCO,II.1.1,Capital Federal,AR-C,annual,2012,bioetanol combustion consumption by to the public,53.828059910633996,TJ,CH4,10.0,kg/TJ,538.28059910634,kg +2480cc11-2ca1-3586-bc54-cc7ecc6287a8,SESCO,II.1.1,Capital Federal,AR-C,annual,2012,bioetanol combustion consumption by to the public,53.828059910633996,TJ,N2O,0.6,kg/TJ,32.2968359463804,kg +0bce88fb-ace2-34de-83df-8e9e37dc4a88,SESCO,II.1.1,Catamarca,AR-K,annual,2012,bioetanol combustion consumption by to the public,6.208354997757,TJ,CH4,10.0,kg/TJ,62.083549977569994,kg +71edf7b5-0ea2-3919-adce-6689bedc7fee,SESCO,II.1.1,Catamarca,AR-K,annual,2012,bioetanol combustion consumption by to the public,6.208354997757,TJ,N2O,0.6,kg/TJ,3.7250129986541998,kg +eef2a14f-cca3-3928-8613-d05d57afc23a,SESCO,II.1.1,Chaco,AR-H,annual,2012,bioetanol combustion consumption by to the public,7.805238380135999,TJ,CH4,10.0,kg/TJ,78.05238380136,kg +999913d4-b99e-3582-93a8-8b75727134ae,SESCO,II.1.1,Chaco,AR-H,annual,2012,bioetanol combustion consumption by to the public,7.805238380135999,TJ,N2O,0.6,kg/TJ,4.6831430280815995,kg +bc9a20cc-c9c3-3aa3-a752-12354c5e9284,SESCO,II.1.1,Chubut,AR-U,annual,2012,bioetanol combustion consumption by to the public,6.949108495142999,TJ,CH4,10.0,kg/TJ,69.49108495143,kg +ad23d842-bf2d-3a7d-80e7-e8dd51c5cb41,SESCO,II.1.1,Chubut,AR-U,annual,2012,bioetanol combustion consumption by to the public,6.949108495142999,TJ,N2O,0.6,kg/TJ,4.1694650970858,kg +0cc23241-9927-315c-8057-9a4b8d0d943d,SESCO,II.1.1,Corrientes,AR-W,annual,2012,bioetanol combustion consumption by to the public,5.062351527648,TJ,CH4,10.0,kg/TJ,50.62351527647999,kg +74155ff4-e215-3c91-9dfa-c6dbc24370f1,SESCO,II.1.1,Corrientes,AR-W,annual,2012,bioetanol combustion consumption by to the public,5.062351527648,TJ,N2O,0.6,kg/TJ,3.0374109165887995,kg +ef043bc1-e032-38b9-9e0f-6004782a1845,SESCO,II.1.1,Córdoba,AR-X,annual,2012,bioetanol combustion consumption by to the public,51.235704572382,TJ,CH4,10.0,kg/TJ,512.35704572382,kg +cef8654c-a3c2-3b0d-967c-279ac8bcfa13,SESCO,II.1.1,Córdoba,AR-X,annual,2012,bioetanol combustion consumption by to the public,51.235704572382,TJ,N2O,0.6,kg/TJ,30.741422743429197,kg +01f1b2dc-bca3-3e2b-bc40-a4f8afe58a39,SESCO,II.1.1,Entre Rios,AR-E,annual,2012,bioetanol combustion consumption by to the public,17.428313111805,TJ,CH4,10.0,kg/TJ,174.28313111805,kg +ba20897c-9c6d-33e6-96c3-c26a23858d9a,SESCO,II.1.1,Entre Rios,AR-E,annual,2012,bioetanol combustion consumption by to the public,17.428313111805,TJ,N2O,0.6,kg/TJ,10.456987867082999,kg +ea76541e-8c9c-3abc-83d8-ec984930c7e8,SESCO,II.1.1,Formosa,AR-P,annual,2012,bioetanol combustion consumption by to the public,7.140344290569,TJ,CH4,10.0,kg/TJ,71.40344290569,kg +342eb0fe-2a3e-33b3-9576-c4cc6b769b8e,SESCO,II.1.1,Formosa,AR-P,annual,2012,bioetanol combustion consumption by to the public,7.140344290569,TJ,N2O,0.6,kg/TJ,4.2842065743413995,kg +1a87acbe-6564-3bb5-838a-bd5e90c4f289,SESCO,II.1.1,Jujuy,AR-Y,annual,2012,bioetanol combustion consumption by to the public,1.8734447227949997,TJ,CH4,10.0,kg/TJ,18.734447227949996,kg +dd0cb058-b3ea-34da-ae8f-bf9e992a7e82,SESCO,II.1.1,Jujuy,AR-Y,annual,2012,bioetanol combustion consumption by to the public,1.8734447227949997,TJ,N2O,0.6,kg/TJ,1.1240668336769999,kg +6d9a6177-dda7-36f1-9bdb-f0198d953d6f,SESCO,II.1.1,La Pampa,AR-L,annual,2012,bioetanol combustion consumption by to the public,2.027515070088,TJ,CH4,10.0,kg/TJ,20.27515070088,kg +15f069d5-9c0e-3249-a695-82029cb61f46,SESCO,II.1.1,La Pampa,AR-L,annual,2012,bioetanol combustion consumption by to the public,2.027515070088,TJ,N2O,0.6,kg/TJ,1.2165090420528,kg +e18c1bc8-4511-3532-8ca4-706d94bfaa49,SESCO,II.1.1,La Rioja,AR-F,annual,2012,bioetanol combustion consumption by to the public,4.343928985224,TJ,CH4,10.0,kg/TJ,43.43928985224,kg +ced6c85a-160d-3f78-9db2-0da7dc6559fb,SESCO,II.1.1,La Rioja,AR-F,annual,2012,bioetanol combustion consumption by to the public,4.343928985224,TJ,N2O,0.6,kg/TJ,2.6063573911344,kg +159985bb-42b2-333e-8fe7-58ba72d61bf4,SESCO,II.1.1,Mendoza,AR-M,annual,2012,bioetanol combustion consumption by to the public,7.741548268461,TJ,CH4,10.0,kg/TJ,77.41548268461,kg +a3970fa2-5282-3452-9792-548cfcf3e77c,SESCO,II.1.1,Mendoza,AR-M,annual,2012,bioetanol combustion consumption by to the public,7.741548268461,TJ,N2O,0.6,kg/TJ,4.6449289610766,kg +4ed0e579-ba55-399b-80b1-e166a16cb28b,SESCO,II.1.1,Misiones,AR-N,annual,2012,bioetanol combustion consumption by to the public,14.689432394982,TJ,CH4,10.0,kg/TJ,146.89432394981998,kg +3b0eed5d-2d9b-36fc-8f75-cfe523236fac,SESCO,II.1.1,Misiones,AR-N,annual,2012,bioetanol combustion consumption by to the public,14.689432394982,TJ,N2O,0.6,kg/TJ,8.8136594369892,kg +b363a00a-06d5-38d9-9a83-a048aa25361e,SESCO,II.1.1,Neuquén,AR-Q,annual,2012,bioetanol combustion consumption by to the public,5.359744453976999,TJ,CH4,10.0,kg/TJ,53.597444539769995,kg +e2e7ce6f-957f-3393-8fc2-00e14b90dd30,SESCO,II.1.1,Neuquén,AR-Q,annual,2012,bioetanol combustion consumption by to the public,5.359744453976999,TJ,N2O,0.6,kg/TJ,3.2158466723861996,kg +61848143-4199-3852-b9e9-c8cd300f2618,SESCO,II.1.1,Rio Negro,AR-R,annual,2012,bioetanol combustion consumption by to the public,7.69470814809,TJ,CH4,10.0,kg/TJ,76.9470814809,kg +e87e2bf4-8a9a-3d2b-aa11-ad295a1f22c5,SESCO,II.1.1,Rio Negro,AR-R,annual,2012,bioetanol combustion consumption by to the public,7.69470814809,TJ,N2O,0.6,kg/TJ,4.6168248888539996,kg +f329e0f1-a27c-363a-9dd4-d0de6597140a,SESCO,II.1.1,Salta,AR-A,annual,2012,bioetanol combustion consumption by to the public,1.290681047763,TJ,CH4,10.0,kg/TJ,12.90681047763,kg +eeb1b0d5-d903-3e14-800a-bce641c4691e,SESCO,II.1.1,Salta,AR-A,annual,2012,bioetanol combustion consumption by to the public,1.290681047763,TJ,N2O,0.6,kg/TJ,0.7744086286577999,kg +5e378a16-0e6b-3fa1-8bb7-1005d833ad90,SESCO,II.1.1,San Juan,AR-J,annual,2012,bioetanol combustion consumption by to the public,6.1093380998789995,TJ,CH4,10.0,kg/TJ,61.093380998789996,kg +738a80b0-0b26-3040-82e7-86febe6b2606,SESCO,II.1.1,San Juan,AR-J,annual,2012,bioetanol combustion consumption by to the public,6.1093380998789995,TJ,N2O,0.6,kg/TJ,3.6656028599273993,kg +e7fd9f9b-14b2-3ee1-ac10-4ce16e429330,SESCO,II.1.1,San Luis,AR-D,annual,2012,bioetanol combustion consumption by to the public,10.001315354993999,TJ,CH4,10.0,kg/TJ,100.01315354993999,kg +e16db142-346d-3469-b7bc-219be3c2b464,SESCO,II.1.1,San Luis,AR-D,annual,2012,bioetanol combustion consumption by to the public,10.001315354993999,TJ,N2O,0.6,kg/TJ,6.000789212996399,kg +ec59d432-6c37-3a5f-a554-25c9bfbbda75,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2012,bioetanol combustion consumption by to the public,0.8077900760279999,TJ,CH4,10.0,kg/TJ,8.077900760279999,kg +e6633161-cb62-3119-84a7-461bc9356ab8,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2012,bioetanol combustion consumption by to the public,0.8077900760279999,TJ,N2O,0.6,kg/TJ,0.48467404561679994,kg +a23e78c7-bd30-36a6-8681-17c5b75adfc4,SESCO,II.1.1,Santa Fe,AR-S,annual,2012,bioetanol combustion consumption by to the public,48.76628011289999,TJ,CH4,10.0,kg/TJ,487.66280112899994,kg +6bda0c29-827e-3ad8-a050-012862d44c74,SESCO,II.1.1,Santa Fe,AR-S,annual,2012,bioetanol combustion consumption by to the public,48.76628011289999,TJ,N2O,0.6,kg/TJ,29.259768067739994,kg +a88c4bd6-c298-3d5d-9b3c-7158bf8bab90,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2012,bioetanol combustion consumption by to the public,5.1014616627419995,TJ,CH4,10.0,kg/TJ,51.01461662742,kg +43d00eb2-5e1c-34b9-a0d3-d7e410dcd37d,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2012,bioetanol combustion consumption by to the public,5.1014616627419995,TJ,N2O,0.6,kg/TJ,3.0608769976451997,kg +c8d42ed2-6821-3348-9af9-dd999949daff,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2012,bioetanol combustion consumption by to the public,1.8568421871389997,TJ,CH4,10.0,kg/TJ,18.568421871389997,kg +7ce05dcb-5522-31bc-b078-876c1ee6216f,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2012,bioetanol combustion consumption by to the public,1.8568421871389997,TJ,N2O,0.6,kg/TJ,1.1141053122833997,kg +cb13188b-a96e-3e9a-af83-10bcb23d1433,SESCO,II.1.1,Tucuman,AR-T,annual,2012,bioetanol combustion consumption by to the public,1.7517348254699998,TJ,CH4,10.0,kg/TJ,17.517348254699996,kg +3e8f5abc-09c1-3667-b57c-a4b0d8d4d715,SESCO,II.1.1,Tucuman,AR-T,annual,2012,bioetanol combustion consumption by to the public,1.7517348254699998,TJ,N2O,0.6,kg/TJ,1.0510408952819998,kg +7ae3737d-5ecb-34b2-9106-703c4c1573bc,SESCO,II.1.1,Buenos Aires,AR-B,annual,2012,bioetanol combustion consumption by to the public,36.47673701249399,TJ,CH4,10.0,kg/TJ,364.76737012493993,kg +f5c744f9-4972-3ef3-9030-bf154d14e415,SESCO,II.1.1,Buenos Aires,AR-B,annual,2012,bioetanol combustion consumption by to the public,36.47673701249399,TJ,N2O,0.6,kg/TJ,21.886042207496395,kg +f35c7270-899b-3e55-bcf4-d00a57f8812c,SESCO,II.1.1,Capital Federal,AR-C,annual,2012,bioetanol combustion consumption by to the public,18.496975507839,TJ,CH4,10.0,kg/TJ,184.96975507839,kg +133ff47c-1288-31a0-ac4b-dde9a04bd3fa,SESCO,II.1.1,Capital Federal,AR-C,annual,2012,bioetanol combustion consumption by to the public,18.496975507839,TJ,N2O,0.6,kg/TJ,11.0981853047034,kg +39d6739b-cd26-37ad-af20-06be3c450408,SESCO,II.1.1,Catamarca,AR-K,annual,2012,bioetanol combustion consumption by to the public,1.2195626651999998,TJ,CH4,10.0,kg/TJ,12.195626651999998,kg +cd822bdb-e00e-3409-8d7d-df8d467fa928,SESCO,II.1.1,Catamarca,AR-K,annual,2012,bioetanol combustion consumption by to the public,1.2195626651999998,TJ,N2O,0.6,kg/TJ,0.7317375991199998,kg +8034a875-5a4a-3b9f-8bf5-3e84e00382da,SESCO,II.1.1,Chaco,AR-H,annual,2012,bioetanol combustion consumption by to the public,1.5939327677580002,TJ,CH4,10.0,kg/TJ,15.939327677580001,kg +f56d8243-6436-3d80-b5b3-a155efd39bc2,SESCO,II.1.1,Chaco,AR-H,annual,2012,bioetanol combustion consumption by to the public,1.5939327677580002,TJ,N2O,0.6,kg/TJ,0.9563596606548,kg +cf79b6f3-eb89-303f-ba6a-05a295d9e587,SESCO,II.1.1,Chubut,AR-U,annual,2012,bioetanol combustion consumption by to the public,0.8852827422509999,TJ,CH4,10.0,kg/TJ,8.85282742251,kg +5b56d15e-1863-32ee-85f1-f3ce40af4a79,SESCO,II.1.1,Chubut,AR-U,annual,2012,bioetanol combustion consumption by to the public,0.8852827422509999,TJ,N2O,0.6,kg/TJ,0.5311696453506,kg +d5ad3073-7902-3905-a4fd-37172266fa96,SESCO,II.1.1,Corrientes,AR-W,annual,2012,bioetanol combustion consumption by to the public,1.1290597882109998,TJ,CH4,10.0,kg/TJ,11.29059788211,kg +0fc5ed78-459c-39bf-9b35-adb0840be5a7,SESCO,II.1.1,Corrientes,AR-W,annual,2012,bioetanol combustion consumption by to the public,1.1290597882109998,TJ,N2O,0.6,kg/TJ,0.6774358729265999,kg +b847f4fb-922b-3ca3-83d1-a103a4405ec1,SESCO,II.1.1,Córdoba,AR-X,annual,2012,bioetanol combustion consumption by to the public,12.024425816801998,TJ,CH4,10.0,kg/TJ,120.24425816801997,kg +905b8467-ae33-3ea3-8cb8-f08fd85c770a,SESCO,II.1.1,Córdoba,AR-X,annual,2012,bioetanol combustion consumption by to the public,12.024425816801998,TJ,N2O,0.6,kg/TJ,7.214655490081198,kg +89a54984-7874-3d86-abe2-54f1c4ae325c,SESCO,II.1.1,Entre Rios,AR-E,annual,2012,bioetanol combustion consumption by to the public,3.748014307899,TJ,CH4,10.0,kg/TJ,37.48014307899,kg +437d23bb-6c7b-3107-967f-a39bfbfd14dc,SESCO,II.1.1,Entre Rios,AR-E,annual,2012,bioetanol combustion consumption by to the public,3.748014307899,TJ,N2O,0.6,kg/TJ,2.2488085847394,kg +7bc9a96b-a9ec-3ba4-a6b5-51ff03e16943,SESCO,II.1.1,Formosa,AR-P,annual,2012,bioetanol combustion consumption by to the public,1.4967290321189999,TJ,CH4,10.0,kg/TJ,14.96729032119,kg +c5425c38-7448-3780-9aee-e7615b8cded6,SESCO,II.1.1,Formosa,AR-P,annual,2012,bioetanol combustion consumption by to the public,1.4967290321189999,TJ,N2O,0.6,kg/TJ,0.8980374192713999,kg +27ccf45e-89ff-3675-addd-2bfe20c3088f,SESCO,II.1.1,Jujuy,AR-Y,annual,2012,bioetanol combustion consumption by to the public,0.12013115329799998,TJ,CH4,10.0,kg/TJ,1.2013115329799997,kg +083f2f3e-15c7-3199-96c3-c3291e2f448c,SESCO,II.1.1,Jujuy,AR-Y,annual,2012,bioetanol combustion consumption by to the public,0.12013115329799998,TJ,N2O,0.6,kg/TJ,0.07207869197879999,kg +0b0fb4f8-e7a2-3a82-a6b4-108870b6698f,SESCO,II.1.1,La Pampa,AR-L,annual,2012,bioetanol combustion consumption by to the public,0.4424790103109999,TJ,CH4,10.0,kg/TJ,4.4247901031099985,kg +d3da2277-5b7e-32d8-bbac-fe0cdee5b624,SESCO,II.1.1,La Pampa,AR-L,annual,2012,bioetanol combustion consumption by to the public,0.4424790103109999,TJ,N2O,0.6,kg/TJ,0.26548740618659994,kg +bc48d318-8788-3fc4-a863-176f2495db9a,SESCO,II.1.1,La Rioja,AR-F,annual,2012,bioetanol combustion consumption by to the public,0.751358109483,TJ,CH4,10.0,kg/TJ,7.51358109483,kg +d6b76130-35a0-3c56-93f1-857307a8a698,SESCO,II.1.1,La Rioja,AR-F,annual,2012,bioetanol combustion consumption by to the public,0.751358109483,TJ,N2O,0.6,kg/TJ,0.45081486568979995,kg +87c5580d-30e6-3967-99a1-9948fb70fc1f,SESCO,II.1.1,Mendoza,AR-M,annual,2012,bioetanol combustion consumption by to the public,1.381851390348,TJ,CH4,10.0,kg/TJ,13.818513903480001,kg +0a83dc36-5730-3296-8230-872779aa3fe1,SESCO,II.1.1,Mendoza,AR-M,annual,2012,bioetanol combustion consumption by to the public,1.381851390348,TJ,N2O,0.6,kg/TJ,0.8291108342088,kg +1a99b5d1-91a1-334a-9095-615be5aef486,SESCO,II.1.1,Misiones,AR-N,annual,2012,bioetanol combustion consumption by to the public,1.8325168240139997,TJ,CH4,10.0,kg/TJ,18.32516824014,kg +9c6baef1-b3d6-3a69-a4ae-b16abf944781,SESCO,II.1.1,Misiones,AR-N,annual,2012,bioetanol combustion consumption by to the public,1.8325168240139997,TJ,N2O,0.6,kg/TJ,1.0995100944083998,kg +a92a5ce4-301b-3ce1-8bd3-81ccdac23e63,SESCO,II.1.1,Neuquén,AR-Q,annual,2012,bioetanol combustion consumption by to the public,1.1625842767049999,TJ,CH4,10.0,kg/TJ,11.625842767049999,kg +e88411dc-a5b5-38dd-8183-6ab4da3d2020,SESCO,II.1.1,Neuquén,AR-Q,annual,2012,bioetanol combustion consumption by to the public,1.1625842767049999,TJ,N2O,0.6,kg/TJ,0.6975505660229999,kg +f62398c4-e1d9-3879-b3ea-5a141253c973,SESCO,II.1.1,Rio Negro,AR-R,annual,2012,bioetanol combustion consumption by to the public,1.611881226954,TJ,CH4,10.0,kg/TJ,16.11881226954,kg +9830955e-222e-312e-807c-7484aec0a397,SESCO,II.1.1,Rio Negro,AR-R,annual,2012,bioetanol combustion consumption by to the public,1.611881226954,TJ,N2O,0.6,kg/TJ,0.9671287361723999,kg +ee177145-702f-3d08-a28f-7cc7986d1213,SESCO,II.1.1,Salta,AR-A,annual,2012,bioetanol combustion consumption by to the public,0.20308382102699998,TJ,CH4,10.0,kg/TJ,2.0308382102699998,kg +51641c18-bc2a-3c15-9810-6f37e1e2b020,SESCO,II.1.1,Salta,AR-A,annual,2012,bioetanol combustion consumption by to the public,0.20308382102699998,TJ,N2O,0.6,kg/TJ,0.12185029261619998,kg +e0b8a1b1-1fd3-3787-8aa2-5f307fc87703,SESCO,II.1.1,San Juan,AR-J,annual,2012,bioetanol combustion consumption by to the public,1.1341838201039998,TJ,CH4,10.0,kg/TJ,11.341838201039998,kg +b8456277-59b8-304d-8354-4d35fe83d71c,SESCO,II.1.1,San Juan,AR-J,annual,2012,bioetanol combustion consumption by to the public,1.1341838201039998,TJ,N2O,0.6,kg/TJ,0.6805102920623999,kg +44945ed6-300d-3c9d-9afa-3f9794231189,SESCO,II.1.1,San Luis,AR-D,annual,2012,bioetanol combustion consumption by to the public,1.6411696991099998,TJ,CH4,10.0,kg/TJ,16.411696991099998,kg +2630bdae-79b0-3c61-b13b-1710e879c1e5,SESCO,II.1.1,San Luis,AR-D,annual,2012,bioetanol combustion consumption by to the public,1.6411696991099998,TJ,N2O,0.6,kg/TJ,0.9847018194659998,kg +e73d3dbf-fb47-3368-b096-45911c9a1187,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2012,bioetanol combustion consumption by to the public,0.39035323218599993,TJ,CH4,10.0,kg/TJ,3.9035323218599993,kg +60b0aff8-6ab3-3cae-8dee-8e9ade6b1b53,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2012,bioetanol combustion consumption by to the public,0.39035323218599993,TJ,N2O,0.6,kg/TJ,0.23421193931159995,kg +59189301-4882-380a-a0ea-c5f66951bc23,SESCO,II.1.1,Santa Fe,AR-S,annual,2012,bioetanol combustion consumption by to the public,11.643542364599998,TJ,CH4,10.0,kg/TJ,116.43542364599998,kg +499549dd-37a1-38fb-bd2c-37cc58a4d7f2,SESCO,II.1.1,Santa Fe,AR-S,annual,2012,bioetanol combustion consumption by to the public,11.643542364599998,TJ,N2O,0.6,kg/TJ,6.986125418759999,kg +06b63379-11d3-3aaf-a8e8-c348623e6e4e,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2012,bioetanol combustion consumption by to the public,1.378805806953,TJ,CH4,10.0,kg/TJ,13.78805806953,kg +c4733a4b-fd3c-3394-9df7-ebde20823b63,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2012,bioetanol combustion consumption by to the public,1.378805806953,TJ,N2O,0.6,kg/TJ,0.8272834841718,kg +32354641-c4b8-3171-bc11-2468b6c679a6,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2012,bioetanol combustion consumption by to the public,0.83633362488,TJ,CH4,10.0,kg/TJ,8.3633362488,kg +ab1299d7-288a-368f-84f8-f61de81563c1,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2012,bioetanol combustion consumption by to the public,0.83633362488,TJ,N2O,0.6,kg/TJ,0.501800174928,kg +178ee560-3764-3846-808d-a50fa5a414f4,SESCO,II.1.1,Tucuman,AR-T,annual,2012,bioetanol combustion consumption by to the public,0.42277081679999995,TJ,CH4,10.0,kg/TJ,4.2277081679999995,kg +90c75233-4c4c-3cfc-a714-e4f0db33ec42,SESCO,II.1.1,Tucuman,AR-T,annual,2012,bioetanol combustion consumption by to the public,0.42277081679999995,TJ,N2O,0.6,kg/TJ,0.25366249007999997,kg +1c192c14-4c6a-3565-95bf-dbbb2e9c5b5a,SESCO,II.1.1,Buenos Aires,AR-B,annual,2012,bioetanol combustion consumption by freight transport,0.0069405173999999995,TJ,CH4,10.0,kg/TJ,0.069405174,kg +ff6f76a6-622e-3991-9190-66eac2946565,SESCO,II.1.1,Buenos Aires,AR-B,annual,2012,bioetanol combustion consumption by freight transport,0.0069405173999999995,TJ,N2O,0.6,kg/TJ,0.004164310439999999,kg +8296d95f-f29c-3e79-b51c-36403c136b14,SESCO,II.1.1,Capital Federal,AR-C,annual,2012,bioetanol combustion consumption by freight transport,0.2537251209,TJ,CH4,10.0,kg/TJ,2.537251209,kg +7ed83c62-6b7c-3541-b40e-1180599e47c0,SESCO,II.1.1,Capital Federal,AR-C,annual,2012,bioetanol combustion consumption by freight transport,0.2537251209,TJ,N2O,0.6,kg/TJ,0.15223507254,kg +205350a6-1e53-3249-9c85-d4fbd5bddb74,SESCO,II.1.1,Misiones,AR-N,annual,2012,bioetanol combustion consumption by freight transport,0.04601448,TJ,CH4,10.0,kg/TJ,0.4601448,kg +1cfffed8-6daa-3867-b871-2f24dcac90c1,SESCO,II.1.1,Misiones,AR-N,annual,2012,bioetanol combustion consumption by freight transport,0.04601448,TJ,N2O,0.6,kg/TJ,0.027608688000000003,kg +121da17a-0456-33b1-9081-4e44bbb0ffe4,SESCO,II.1.1,Santa Fe,AR-S,annual,2012,bioetanol combustion consumption by freight transport,0.0006390899999999999,TJ,CH4,10.0,kg/TJ,0.0063909,kg +8937cc2f-f164-38de-8eed-a9553fda797a,SESCO,II.1.1,Santa Fe,AR-S,annual,2012,bioetanol combustion consumption by freight transport,0.0006390899999999999,TJ,N2O,0.6,kg/TJ,0.0003834539999999999,kg +dd7897fa-b1d6-3e69-89e2-b90e9d489058,SESCO,II.1.1,Buenos Aires,AR-B,annual,2012,bioetanol combustion consumption by freight transport,0.08767675709999999,TJ,CH4,10.0,kg/TJ,0.8767675709999999,kg +fcde75ab-63c5-394f-9940-30e040b3b4ec,SESCO,II.1.1,Buenos Aires,AR-B,annual,2012,bioetanol combustion consumption by freight transport,0.08767675709999999,TJ,N2O,0.6,kg/TJ,0.05260605425999999,kg +5786e7e0-b098-361a-978d-5559db60681d,SESCO,II.1.1,Capital Federal,AR-C,annual,2012,bioetanol combustion consumption by freight transport,0.2223074565,TJ,CH4,10.0,kg/TJ,2.223074565,kg +6e865ded-dbe2-3a22-ba3f-b96b6636edc1,SESCO,II.1.1,Capital Federal,AR-C,annual,2012,bioetanol combustion consumption by freight transport,0.2223074565,TJ,N2O,0.6,kg/TJ,0.1333844739,kg +0a369861-b350-3e7b-bdf4-4a3366a16b40,SESCO,II.1.1,Chaco,AR-H,annual,2012,bioetanol combustion consumption by freight transport,0.0008116443,TJ,CH4,10.0,kg/TJ,0.008116443000000001,kg +00f49059-e2f2-36bc-9bbf-3e5b29129321,SESCO,II.1.1,Chaco,AR-H,annual,2012,bioetanol combustion consumption by freight transport,0.0008116443,TJ,N2O,0.6,kg/TJ,0.00048698658,kg +d113bfc6-a89c-37df-9455-65dd43c44046,SESCO,II.1.1,Corrientes,AR-W,annual,2012,bioetanol combustion consumption by freight transport,4.473630000000001e-05,TJ,CH4,10.0,kg/TJ,0.0004473630000000001,kg +b48f4a2e-cfad-374e-8305-226a430433eb,SESCO,II.1.1,Corrientes,AR-W,annual,2012,bioetanol combustion consumption by freight transport,4.473630000000001e-05,TJ,N2O,0.6,kg/TJ,2.6841780000000003e-05,kg +68a86daf-3222-327f-b09b-6a5da13f548b,SESCO,II.1.1,Córdoba,AR-X,annual,2012,bioetanol combustion consumption by freight transport,0.008627715,TJ,CH4,10.0,kg/TJ,0.08627715,kg +704485ee-6874-3752-95d1-d1e9cffa7d27,SESCO,II.1.1,Córdoba,AR-X,annual,2012,bioetanol combustion consumption by freight transport,0.008627715,TJ,N2O,0.6,kg/TJ,0.005176628999999999,kg +1c549144-0e04-3c1d-910c-d813abd4eb54,SESCO,II.1.1,Entre Rios,AR-E,annual,2012,bioetanol combustion consumption by freight transport,3.19545e-05,TJ,CH4,10.0,kg/TJ,0.000319545,kg +d3bf0ff9-fdcd-3d76-93f2-f6fa5e335641,SESCO,II.1.1,Entre Rios,AR-E,annual,2012,bioetanol combustion consumption by freight transport,3.19545e-05,TJ,N2O,0.6,kg/TJ,1.91727e-05,kg +22b82253-4393-3a94-8fe4-dede4a207fd9,SESCO,II.1.1,Misiones,AR-N,annual,2012,bioetanol combustion consumption by freight transport,7.02999e-05,TJ,CH4,10.0,kg/TJ,0.0007029989999999999,kg +b18c4e88-9f11-33a7-aeaf-f9b810d7e3ed,SESCO,II.1.1,Misiones,AR-N,annual,2012,bioetanol combustion consumption by freight transport,7.02999e-05,TJ,N2O,0.6,kg/TJ,4.2179939999999995e-05,kg +be590d4a-729f-33f5-b2a8-1323ac79e226,SESCO,II.1.1,San Luis,AR-D,annual,2012,bioetanol combustion consumption by freight transport,0.00030037229999999997,TJ,CH4,10.0,kg/TJ,0.003003723,kg +4c138c4c-785c-3194-8826-51da738e90e1,SESCO,II.1.1,San Luis,AR-D,annual,2012,bioetanol combustion consumption by freight transport,0.00030037229999999997,TJ,N2O,0.6,kg/TJ,0.00018022337999999997,kg +70200a58-114b-344c-b034-ba2e809ca509,SESCO,II.1.1,Santa Fe,AR-S,annual,2012,bioetanol combustion consumption by freight transport,0.012832927199999998,TJ,CH4,10.0,kg/TJ,0.128329272,kg +dbb8004a-bc13-329d-9b67-9736ebe76250,SESCO,II.1.1,Santa Fe,AR-S,annual,2012,bioetanol combustion consumption by freight transport,0.012832927199999998,TJ,N2O,0.6,kg/TJ,0.007699756319999999,kg +2bc98f0a-ef27-333c-a005-2054b004967f,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2012,bioetanol combustion consumption by freight transport,0.00013420889999999998,TJ,CH4,10.0,kg/TJ,0.0013420889999999999,kg +6b749abe-190d-3867-bf71-b825bc3df593,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2012,bioetanol combustion consumption by freight transport,0.00013420889999999998,TJ,N2O,0.6,kg/TJ,8.052533999999999e-05,kg +2a6f5b8e-b5ef-331e-b578-c5c8b4c379f3,SESCO,II.1.1,Tucuman,AR-T,annual,2012,bioetanol combustion consumption by freight transport,0.0007285626,TJ,CH4,10.0,kg/TJ,0.007285626,kg +59d2727b-aeb8-32da-967d-58cc619816fb,SESCO,II.1.1,Tucuman,AR-T,annual,2012,bioetanol combustion consumption by freight transport,0.0007285626,TJ,N2O,0.6,kg/TJ,0.00043713755999999997,kg +f5c88541-2e12-3f19-8cb9-35d8f9153cf8,SESCO,II.1.1,Buenos Aires,AR-B,annual,2012,bioetanol combustion consumption by freight transport,0.0507757005,TJ,CH4,10.0,kg/TJ,0.507757005,kg +63dfaac1-bf5a-328c-97e0-047439fb24f3,SESCO,II.1.1,Buenos Aires,AR-B,annual,2012,bioetanol combustion consumption by freight transport,0.0507757005,TJ,N2O,0.6,kg/TJ,0.030465420299999997,kg +bd028f13-ad64-303c-a31b-5487dfefdd7d,SESCO,II.1.1,Capital Federal,AR-C,annual,2012,bioetanol combustion consumption by freight transport,0.205978707,TJ,CH4,10.0,kg/TJ,2.05978707,kg +7ce5ce94-94d4-3e37-9494-fdb9952fdbe0,SESCO,II.1.1,Capital Federal,AR-C,annual,2012,bioetanol combustion consumption by freight transport,0.205978707,TJ,N2O,0.6,kg/TJ,0.1235872242,kg +23146f26-1011-3e43-a7c1-22232ca84ba7,SESCO,II.1.1,Chaco,AR-H,annual,2012,bioetanol combustion consumption by freight transport,0.00040901759999999995,TJ,CH4,10.0,kg/TJ,0.004090175999999999,kg +2597761d-0924-3f38-ad52-385e2e72cd25,SESCO,II.1.1,Chaco,AR-H,annual,2012,bioetanol combustion consumption by freight transport,0.00040901759999999995,TJ,N2O,0.6,kg/TJ,0.00024541056,kg +78dc30fa-122e-3314-9344-0024027fc544,SESCO,II.1.1,Córdoba,AR-X,annual,2012,bioetanol combustion consumption by freight transport,0.0074070531,TJ,CH4,10.0,kg/TJ,0.074070531,kg +0468d833-3b2e-3116-854d-4672983e6746,SESCO,II.1.1,Córdoba,AR-X,annual,2012,bioetanol combustion consumption by freight transport,0.0074070531,TJ,N2O,0.6,kg/TJ,0.00444423186,kg +b02e39d2-e69d-37a6-9915-e7850df55d64,SESCO,II.1.1,Entre Rios,AR-E,annual,2012,bioetanol combustion consumption by freight transport,0.0018469701,TJ,CH4,10.0,kg/TJ,0.018469700999999998,kg +3e71e490-9c41-31ff-9b25-299d88b56b5f,SESCO,II.1.1,Entre Rios,AR-E,annual,2012,bioetanol combustion consumption by freight transport,0.0018469701,TJ,N2O,0.6,kg/TJ,0.0011081820599999999,kg +fc24f5fb-6b4a-33ea-8b57-e53719cb45cc,SESCO,II.1.1,Misiones,AR-N,annual,2012,bioetanol combustion consumption by freight transport,0.000191727,TJ,CH4,10.0,kg/TJ,0.00191727,kg +c182ceff-dca8-34b6-8647-a2f313de7eea,SESCO,II.1.1,Misiones,AR-N,annual,2012,bioetanol combustion consumption by freight transport,0.000191727,TJ,N2O,0.6,kg/TJ,0.00011503619999999999,kg +4f1ff8d3-49f2-3e7c-8d79-0bcc94de8c22,SESCO,II.1.1,San Luis,AR-D,annual,2012,bioetanol combustion consumption by freight transport,2.5563599999999997e-05,TJ,CH4,10.0,kg/TJ,0.00025563599999999995,kg +d53ca589-3783-3a9b-922c-ee7ce26c06d9,SESCO,II.1.1,San Luis,AR-D,annual,2012,bioetanol combustion consumption by freight transport,2.5563599999999997e-05,TJ,N2O,0.6,kg/TJ,1.533816e-05,kg +6002ad42-54a3-3dc4-9bc7-0d48ac9dce10,SESCO,II.1.1,Santa Fe,AR-S,annual,2012,bioetanol combustion consumption by freight transport,0.0086468877,TJ,CH4,10.0,kg/TJ,0.086468877,kg +cec12f27-a5b0-3e35-8c72-e1efdb7579f0,SESCO,II.1.1,Santa Fe,AR-S,annual,2012,bioetanol combustion consumption by freight transport,0.0086468877,TJ,N2O,0.6,kg/TJ,0.00518813262,kg +c04e465e-07a5-3cdf-8449-02097d21b75a,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2012,bioetanol combustion consumption by freight transport,0.004281902999999999,TJ,CH4,10.0,kg/TJ,0.042819029999999994,kg +4c2a8bb1-f5c6-319b-8a2f-7996f8b75f48,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2012,bioetanol combustion consumption by freight transport,0.004281902999999999,TJ,N2O,0.6,kg/TJ,0.0025691417999999995,kg +f9725db0-502b-317e-9724-e610aa8b93fc,SESCO,II.1.1,Tucuman,AR-T,annual,2012,bioetanol combustion consumption by freight transport,0.0005560083,TJ,CH4,10.0,kg/TJ,0.0055600829999999995,kg +97d25c16-388f-367f-997d-02eedba91a7b,SESCO,II.1.1,Tucuman,AR-T,annual,2012,bioetanol combustion consumption by freight transport,0.0005560083,TJ,N2O,0.6,kg/TJ,0.00033360498,kg +ac52698c-372d-3744-b93a-8f28ce28c92d,SESCO,II.1.1,Capital Federal,AR-C,annual,2012,bioetanol combustion consumption by public passenger transport,0.3754462023,TJ,CH4,10.0,kg/TJ,3.754462023,kg +a5083c86-1c28-3be1-98e8-a477ca30c42e,SESCO,II.1.1,Capital Federal,AR-C,annual,2012,bioetanol combustion consumption by public passenger transport,0.3754462023,TJ,N2O,0.6,kg/TJ,0.22526772137999998,kg +e3821d32-eebd-359e-87e6-e59560a3fa67,SESCO,II.1.1,Córdoba,AR-X,annual,2012,bioetanol combustion consumption by public passenger transport,0.00028759049999999996,TJ,CH4,10.0,kg/TJ,0.0028759049999999998,kg +4018d7bc-f84b-3bb5-9d8c-51569574e945,SESCO,II.1.1,Córdoba,AR-X,annual,2012,bioetanol combustion consumption by public passenger transport,0.00028759049999999996,TJ,N2O,0.6,kg/TJ,0.00017255429999999997,kg +1b4913ce-c0b0-3a03-ac2a-2b9ff344cad6,SESCO,II.1.1,Misiones,AR-N,annual,2012,bioetanol combustion consumption by public passenger transport,0.38089764,TJ,CH4,10.0,kg/TJ,3.8089763999999997,kg +73327487-8b39-3afa-8ed6-260c54fc03c7,SESCO,II.1.1,Misiones,AR-N,annual,2012,bioetanol combustion consumption by public passenger transport,0.38089764,TJ,N2O,0.6,kg/TJ,0.228538584,kg +a3807d5d-0ad7-3d2c-b5d5-f569bdb725b6,SESCO,II.1.1,Santa Fe,AR-S,annual,2012,bioetanol combustion consumption by public passenger transport,0.0018917063999999996,TJ,CH4,10.0,kg/TJ,0.018917063999999997,kg +442a6837-08ee-3efa-a5a5-adb96e23684b,SESCO,II.1.1,Santa Fe,AR-S,annual,2012,bioetanol combustion consumption by public passenger transport,0.0018917063999999996,TJ,N2O,0.6,kg/TJ,0.0011350238399999997,kg +032d349a-83a7-36c6-9b8e-c48f2112ff56,SESCO,II.1.1,Buenos Aires,AR-B,annual,2012,bioetanol combustion consumption by public passenger transport,7.66908e-05,TJ,CH4,10.0,kg/TJ,0.000766908,kg +390a03df-66a8-3c54-9550-ff0dfb7ca57d,SESCO,II.1.1,Buenos Aires,AR-B,annual,2012,bioetanol combustion consumption by public passenger transport,7.66908e-05,TJ,N2O,0.6,kg/TJ,4.6014479999999997e-05,kg +30b40f07-14bf-32d1-9fda-e4accab0b1bc,SESCO,II.1.1,Capital Federal,AR-C,annual,2012,bioetanol combustion consumption by public passenger transport,0.0043905483,TJ,CH4,10.0,kg/TJ,0.043905482999999995,kg +4202d03a-d383-352c-88bb-029de668e328,SESCO,II.1.1,Capital Federal,AR-C,annual,2012,bioetanol combustion consumption by public passenger transport,0.0043905483,TJ,N2O,0.6,kg/TJ,0.00263432898,kg +f46650c1-ef4e-3201-9ec2-c543c2b94782,SESCO,II.1.1,Córdoba,AR-X,annual,2012,bioetanol combustion consumption by public passenger transport,0.0001469907,TJ,CH4,10.0,kg/TJ,0.001469907,kg +3b03ee5a-58fe-3873-be90-4546eb6af322,SESCO,II.1.1,Córdoba,AR-X,annual,2012,bioetanol combustion consumption by public passenger transport,0.0001469907,TJ,N2O,0.6,kg/TJ,8.819441999999999e-05,kg +8bc024fa-d3a8-3f41-ae75-b0c491531546,SESCO,II.1.1,Santa Fe,AR-S,annual,2012,bioetanol combustion consumption by public passenger transport,0.0016232886,TJ,CH4,10.0,kg/TJ,0.016232886000000002,kg +e2e37232-a6b5-39c8-8db2-c41ad869f442,SESCO,II.1.1,Santa Fe,AR-S,annual,2012,bioetanol combustion consumption by public passenger transport,0.0016232886,TJ,N2O,0.6,kg/TJ,0.00097397316,kg +381833e8-f9e5-30e2-8fa4-136932b6c6a3,SESCO,II.5.1,Córdoba,AR-X,annual,2012,bioetanol combustion consumption by agriculture machines,0.016409083113,TJ,CH4,10.0,kg/TJ,0.16409083113,kg +b0ed03bd-aed4-3764-b351-fa6919443379,SESCO,II.5.1,Córdoba,AR-X,annual,2012,bioetanol combustion consumption by agriculture machines,0.016409083113,TJ,N2O,0.6,kg/TJ,0.0098454498678,kg +68927210-9b9b-3c19-bc16-cadfadee3083,SESCO,II.5.1,Santa Fe,AR-S,annual,2012,bioetanol combustion consumption by agriculture machines,0.034144917066,TJ,CH4,10.0,kg/TJ,0.34144917066,kg +86bceae0-8974-3bb8-a8bd-2c20add7a091,SESCO,II.5.1,Santa Fe,AR-S,annual,2012,bioetanol combustion consumption by agriculture machines,0.034144917066,TJ,N2O,0.6,kg/TJ,0.0204869502396,kg +ed569392-fea9-3cc1-b74e-14b8cb15cb3f,SESCO,II.1.1,Buenos Aires,AR-B,annual,2012,bioetanol combustion consumption by to the public,45.55846570257899,TJ,CH4,10.0,kg/TJ,455.5846570257899,kg +4a66cb21-115f-3fe7-a185-ebd7c1eeaec1,SESCO,II.1.1,Buenos Aires,AR-B,annual,2012,bioetanol combustion consumption by to the public,45.55846570257899,TJ,N2O,0.6,kg/TJ,27.335079421547395,kg +6266d46c-1988-3056-b54c-fa8a76dc7a5b,SESCO,II.1.1,Capital Federal,AR-C,annual,2012,bioetanol combustion consumption by to the public,6.499162101636,TJ,CH4,10.0,kg/TJ,64.99162101636,kg +21caeb45-2808-358c-a3ed-68a69d9dcfd1,SESCO,II.1.1,Capital Federal,AR-C,annual,2012,bioetanol combustion consumption by to the public,6.499162101636,TJ,N2O,0.6,kg/TJ,3.8994972609816,kg +31d3bbad-e339-361d-acf4-825079f76792,SESCO,II.1.1,Catamarca,AR-K,annual,2012,bioetanol combustion consumption by to the public,3.7179611645579995,TJ,CH4,10.0,kg/TJ,37.179611645579996,kg +691c0464-46ad-3008-ac1e-f41a3ab22a43,SESCO,II.1.1,Catamarca,AR-K,annual,2012,bioetanol combustion consumption by to the public,3.7179611645579995,TJ,N2O,0.6,kg/TJ,2.2307766987347994,kg +f878b1db-0acd-36ad-8e4b-fbf02c3c4bda,SESCO,II.1.1,Chaco,AR-H,annual,2012,bioetanol combustion consumption by to the public,6.791796875096999,TJ,CH4,10.0,kg/TJ,67.91796875096999,kg +e4b2c11b-a5c7-3ce9-8d55-f392ca5d3dff,SESCO,II.1.1,Chaco,AR-H,annual,2012,bioetanol combustion consumption by to the public,6.791796875096999,TJ,N2O,0.6,kg/TJ,4.075078125058199,kg +f75a42c8-5158-3712-8914-1ee03d40817e,SESCO,II.1.1,Corrientes,AR-W,annual,2012,bioetanol combustion consumption by to the public,8.675134391547,TJ,CH4,10.0,kg/TJ,86.75134391546999,kg +b5df821c-2fcf-3269-b3b2-75d2ee8943c5,SESCO,II.1.1,Corrientes,AR-W,annual,2012,bioetanol combustion consumption by to the public,8.675134391547,TJ,N2O,0.6,kg/TJ,5.2050806349281995,kg +30736591-f957-3d84-866b-d2c10ab23666,SESCO,II.1.1,Córdoba,AR-X,annual,2012,bioetanol combustion consumption by to the public,15.412656612302998,TJ,CH4,10.0,kg/TJ,154.12656612303,kg +e93f9b32-e514-37b0-94e2-3f111823f36b,SESCO,II.1.1,Córdoba,AR-X,annual,2012,bioetanol combustion consumption by to the public,15.412656612302998,TJ,N2O,0.6,kg/TJ,9.247593967381798,kg +58d938b9-3aa7-392e-906f-e305bdab4a6d,SESCO,II.1.1,Entre Rios,AR-E,annual,2012,bioetanol combustion consumption by to the public,9.665409011904,TJ,CH4,10.0,kg/TJ,96.65409011904,kg +81998214-639c-38bd-9d91-659dceb7fb6f,SESCO,II.1.1,Entre Rios,AR-E,annual,2012,bioetanol combustion consumption by to the public,9.665409011904,TJ,N2O,0.6,kg/TJ,5.7992454071424,kg +2377a2d4-deca-332e-85b5-2f6be579f6a8,SESCO,II.1.1,Formosa,AR-P,annual,2012,bioetanol combustion consumption by to the public,1.244423457927,TJ,CH4,10.0,kg/TJ,12.444234579269999,kg +315fc453-7adf-37bb-9f56-590df5abae83,SESCO,II.1.1,Formosa,AR-P,annual,2012,bioetanol combustion consumption by to the public,1.244423457927,TJ,N2O,0.6,kg/TJ,0.7466540747561999,kg +a031d3ab-16f3-3841-b8c5-529664d3e049,SESCO,II.1.1,Jujuy,AR-Y,annual,2012,bioetanol combustion consumption by to the public,0.52349395716,TJ,CH4,10.0,kg/TJ,5.2349395716,kg +9a1fa0ce-9d8e-3ed7-9174-376b5fd2697e,SESCO,II.1.1,Jujuy,AR-Y,annual,2012,bioetanol combustion consumption by to the public,0.52349395716,TJ,N2O,0.6,kg/TJ,0.314096374296,kg +03da274a-f54b-3d44-8079-db84f3bceaab,SESCO,II.1.1,La Pampa,AR-L,annual,2012,bioetanol combustion consumption by to the public,0.2999377188,TJ,CH4,10.0,kg/TJ,2.9993771879999995,kg +7afcbe84-04f6-3e63-94a9-7a1f833e7fce,SESCO,II.1.1,La Pampa,AR-L,annual,2012,bioetanol combustion consumption by to the public,0.2999377188,TJ,N2O,0.6,kg/TJ,0.17996263127999998,kg +06de8403-9336-349b-abbd-d446d5165da3,SESCO,II.1.1,La Rioja,AR-F,annual,2012,bioetanol combustion consumption by to the public,1.969500972339,TJ,CH4,10.0,kg/TJ,19.69500972339,kg +3a03554b-015a-3723-95de-11a3755347f4,SESCO,II.1.1,La Rioja,AR-F,annual,2012,bioetanol combustion consumption by to the public,1.969500972339,TJ,N2O,0.6,kg/TJ,1.1817005834034,kg +da373dcd-629e-30c5-be6e-3c9c7b0042be,SESCO,II.1.1,Mendoza,AR-M,annual,2012,bioetanol combustion consumption by to the public,7.636656599666999,TJ,CH4,10.0,kg/TJ,76.36656599666999,kg +633a57ca-6e9a-36f0-a4fb-f23e8d77307e,SESCO,II.1.1,Mendoza,AR-M,annual,2012,bioetanol combustion consumption by to the public,7.636656599666999,TJ,N2O,0.6,kg/TJ,4.581993959800199,kg +4eb22cb2-e478-3039-b5ad-aa686c51445b,SESCO,II.1.1,Misiones,AR-N,annual,2012,bioetanol combustion consumption by to the public,4.017928473225,TJ,CH4,10.0,kg/TJ,40.17928473225,kg +387ac654-961c-3f78-bf90-9b0a93c54d37,SESCO,II.1.1,Misiones,AR-N,annual,2012,bioetanol combustion consumption by to the public,4.017928473225,TJ,N2O,0.6,kg/TJ,2.410757083935,kg +fc2ca945-1347-34f2-bcb2-6752d0b08872,SESCO,II.1.1,Rio Negro,AR-R,annual,2012,bioetanol combustion consumption by to the public,0.395667904626,TJ,CH4,10.0,kg/TJ,3.9566790462599997,kg +c80a2077-3847-33e2-b03c-0aca8feb0a16,SESCO,II.1.1,Rio Negro,AR-R,annual,2012,bioetanol combustion consumption by to the public,0.395667904626,TJ,N2O,0.6,kg/TJ,0.23740074277559997,kg +b4ab8f68-aceb-3f81-a045-c3cb3a6f8989,SESCO,II.1.1,San Juan,AR-J,annual,2012,bioetanol combustion consumption by to the public,4.899022939160999,TJ,CH4,10.0,kg/TJ,48.990229391609994,kg +2e0f1ead-8709-3f9f-9c6c-0fcfed336c0a,SESCO,II.1.1,San Juan,AR-J,annual,2012,bioetanol combustion consumption by to the public,4.899022939160999,TJ,N2O,0.6,kg/TJ,2.9394137634965993,kg +32df133b-af7e-3e3f-9952-2c4617882332,SESCO,II.1.1,San Luis,AR-D,annual,2012,bioetanol combustion consumption by to the public,2.956434685812,TJ,CH4,10.0,kg/TJ,29.564346858119997,kg +bc75e936-9088-3af7-8c74-ddd4e36bd3b1,SESCO,II.1.1,San Luis,AR-D,annual,2012,bioetanol combustion consumption by to the public,2.956434685812,TJ,N2O,0.6,kg/TJ,1.7738608114871999,kg +ff5570de-4a69-33bb-80ea-721a1c9faa08,SESCO,II.1.1,Santa Fe,AR-S,annual,2012,bioetanol combustion consumption by to the public,24.100430031143997,TJ,CH4,10.0,kg/TJ,241.00430031143998,kg +f40643c3-018d-305d-aca8-981de4b80273,SESCO,II.1.1,Santa Fe,AR-S,annual,2012,bioetanol combustion consumption by to the public,24.100430031143997,TJ,N2O,0.6,kg/TJ,14.460258018686398,kg +3c62e7df-1283-36bb-92a7-3f4a5b868d44,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2012,bioetanol combustion consumption by to the public,3.5426051579069995,TJ,CH4,10.0,kg/TJ,35.42605157906999,kg +527eeb36-02d8-3898-832e-90f0024f2bf5,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2012,bioetanol combustion consumption by to the public,3.5426051579069995,TJ,N2O,0.6,kg/TJ,2.1255630947441997,kg +d0ac2cf3-2c8e-31b7-9290-d3948f4df995,SESCO,II.1.1,Tucuman,AR-T,annual,2012,bioetanol combustion consumption by to the public,4.268550748266,TJ,CH4,10.0,kg/TJ,42.68550748266,kg +00050c6f-52d0-3e72-9bd1-82e74aca9dfe,SESCO,II.1.1,Tucuman,AR-T,annual,2012,bioetanol combustion consumption by to the public,4.268550748266,TJ,N2O,0.6,kg/TJ,2.5611304489595996,kg +0a0c5af4-ad9e-3c22-b0d5-ac4ecd32a62d,SESCO,II.1.1,Buenos Aires,AR-B,annual,2012,bioetanol combustion consumption by to the public,7.739772365168999,TJ,CH4,10.0,kg/TJ,77.39772365169,kg +eadc8361-8c68-3434-a54a-80aabe32d45e,SESCO,II.1.1,Buenos Aires,AR-B,annual,2012,bioetanol combustion consumption by to the public,7.739772365168999,TJ,N2O,0.6,kg/TJ,4.643863419101399,kg +3d9c3b4a-969d-3ac1-8b61-f51a5bd4c8b5,SESCO,II.1.1,Capital Federal,AR-C,annual,2012,bioetanol combustion consumption by to the public,1.2478114657439998,TJ,CH4,10.0,kg/TJ,12.478114657439999,kg +05cbe631-c9fa-39f5-83e5-894e0b601b72,SESCO,II.1.1,Capital Federal,AR-C,annual,2012,bioetanol combustion consumption by to the public,1.2478114657439998,TJ,N2O,0.6,kg/TJ,0.7486868794463999,kg +4fb35b65-8453-348d-bc90-772a93dd7a5e,SESCO,II.1.1,Catamarca,AR-K,annual,2012,bioetanol combustion consumption by to the public,0.356252028876,TJ,CH4,10.0,kg/TJ,3.56252028876,kg +e47acf6f-523a-34f3-9546-e89dad2f7f4b,SESCO,II.1.1,Catamarca,AR-K,annual,2012,bioetanol combustion consumption by to the public,0.356252028876,TJ,N2O,0.6,kg/TJ,0.21375121732559998,kg +c37989e8-e689-30c1-bf4b-823c4e1ca771,SESCO,II.1.1,Chaco,AR-H,annual,2012,bioetanol combustion consumption by to the public,0.611431846434,TJ,CH4,10.0,kg/TJ,6.114318464339999,kg +033d3dea-8c29-3d29-b260-d536cc8940db,SESCO,II.1.1,Chaco,AR-H,annual,2012,bioetanol combustion consumption by to the public,0.611431846434,TJ,N2O,0.6,kg/TJ,0.36685910786039994,kg +71bb5124-f154-3d5d-8c60-92cc5086f027,SESCO,II.1.1,Chubut,AR-U,annual,2012,bioetanol combustion consumption by to the public,0.010491173622,TJ,CH4,10.0,kg/TJ,0.10491173622,kg +de4517b5-5465-36fe-b39e-80515c843e01,SESCO,II.1.1,Chubut,AR-U,annual,2012,bioetanol combustion consumption by to the public,0.010491173622,TJ,N2O,0.6,kg/TJ,0.006294704173199999,kg +9af28399-b923-3af6-8dd5-cf5188a1766c,SESCO,II.1.1,Corrientes,AR-W,annual,2012,bioetanol combustion consumption by to the public,1.182529636515,TJ,CH4,10.0,kg/TJ,11.825296365149999,kg +2227e9ec-f16d-3b8a-b5fe-5fbb6ede1f57,SESCO,II.1.1,Corrientes,AR-W,annual,2012,bioetanol combustion consumption by to the public,1.182529636515,TJ,N2O,0.6,kg/TJ,0.709517781909,kg +a07f10d8-75ae-31ec-a102-54a892170ec0,SESCO,II.1.1,Córdoba,AR-X,annual,2012,bioetanol combustion consumption by to the public,2.8624928655329995,TJ,CH4,10.0,kg/TJ,28.624928655329995,kg +bcc39160-b770-3b73-88e9-ce928ddd639a,SESCO,II.1.1,Córdoba,AR-X,annual,2012,bioetanol combustion consumption by to the public,2.8624928655329995,TJ,N2O,0.6,kg/TJ,1.7174957193197997,kg +a279a030-0bef-365d-8ef0-ea84ed13ba50,SESCO,II.1.1,Entre Rios,AR-E,annual,2012,bioetanol combustion consumption by to the public,1.7229879181799999,TJ,CH4,10.0,kg/TJ,17.229879181799998,kg +d3aed6e6-6633-3714-b87d-2ae17242a401,SESCO,II.1.1,Entre Rios,AR-E,annual,2012,bioetanol combustion consumption by to the public,1.7229879181799999,TJ,N2O,0.6,kg/TJ,1.0337927509079998,kg +8f0396fd-7996-3e85-b42f-022ad34b16da,SESCO,II.1.1,Jujuy,AR-Y,annual,2012,bioetanol combustion consumption by to the public,0.08690921001,TJ,CH4,10.0,kg/TJ,0.8690921001,kg +48439575-6528-3665-ba98-c38530a20faf,SESCO,II.1.1,Jujuy,AR-Y,annual,2012,bioetanol combustion consumption by to the public,0.08690921001,TJ,N2O,0.6,kg/TJ,0.052145526006,kg +3c23fab4-1460-3dd6-ab27-797467c36deb,SESCO,II.1.1,La Pampa,AR-L,annual,2012,bioetanol combustion consumption by to the public,0.102197457081,TJ,CH4,10.0,kg/TJ,1.02197457081,kg +aaa84747-aead-3333-894d-a44bf1f0698c,SESCO,II.1.1,La Pampa,AR-L,annual,2012,bioetanol combustion consumption by to the public,0.102197457081,TJ,N2O,0.6,kg/TJ,0.0613184742486,kg +8715ed3d-3cb9-3788-82e2-c6d7d25fd6aa,SESCO,II.1.1,La Rioja,AR-F,annual,2012,bioetanol combustion consumption by to the public,0.12523709894399998,TJ,CH4,10.0,kg/TJ,1.2523709894399997,kg +0a340650-1505-3810-8f28-6a9d72681da5,SESCO,II.1.1,La Rioja,AR-F,annual,2012,bioetanol combustion consumption by to the public,0.12523709894399998,TJ,N2O,0.6,kg/TJ,0.07514225936639998,kg +4cf3ffc2-64bd-3ce3-acbb-2ddab3f6e244,SESCO,II.1.1,Mendoza,AR-M,annual,2012,bioetanol combustion consumption by to the public,1.102483741833,TJ,CH4,10.0,kg/TJ,11.02483741833,kg +75029ff5-8aae-3379-9d1c-c6918a1b9e1b,SESCO,II.1.1,Mendoza,AR-M,annual,2012,bioetanol combustion consumption by to the public,1.102483741833,TJ,N2O,0.6,kg/TJ,0.6614902450998,kg +541a75e8-3b94-3ba3-9611-23b70fc243e6,SESCO,II.1.1,Misiones,AR-N,annual,2012,bioetanol combustion consumption by to the public,0.433809498825,TJ,CH4,10.0,kg/TJ,4.33809498825,kg +2e729421-3f05-32db-bf36-bdc88695bdf8,SESCO,II.1.1,Misiones,AR-N,annual,2012,bioetanol combustion consumption by to the public,0.433809498825,TJ,N2O,0.6,kg/TJ,0.26028569929499995,kg +4dee1115-fed7-3775-b7fa-bbadd37e8f21,SESCO,II.1.1,San Juan,AR-J,annual,2012,bioetanol combustion consumption by to the public,1.0077097624649998,TJ,CH4,10.0,kg/TJ,10.077097624649998,kg +d1b5e132-840b-3f2e-860f-a55b8e862798,SESCO,II.1.1,San Juan,AR-J,annual,2012,bioetanol combustion consumption by to the public,1.0077097624649998,TJ,N2O,0.6,kg/TJ,0.6046258574789999,kg +9f026f43-7d9f-3e6d-9a68-5d9e5aeac0eb,SESCO,II.1.1,San Luis,AR-D,annual,2012,bioetanol combustion consumption by to the public,0.5301434329739999,TJ,CH4,10.0,kg/TJ,5.301434329739999,kg +555f8610-386b-3195-8d8d-e3e8f5d20a32,SESCO,II.1.1,San Luis,AR-D,annual,2012,bioetanol combustion consumption by to the public,0.5301434329739999,TJ,N2O,0.6,kg/TJ,0.3180860597843999,kg +ccf44b8a-b0ee-3b4a-b67f-411f44354ecf,SESCO,II.1.1,Santa Fe,AR-S,annual,2012,bioetanol combustion consumption by to the public,4.174794519723,TJ,CH4,10.0,kg/TJ,41.74794519723,kg +c80b5458-e45f-3979-a3f4-51a03140ff0e,SESCO,II.1.1,Santa Fe,AR-S,annual,2012,bioetanol combustion consumption by to the public,4.174794519723,TJ,N2O,0.6,kg/TJ,2.5048767118338,kg +8fe7019b-7a76-30ec-939e-db6c2b7ff18c,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2012,bioetanol combustion consumption by to the public,0.4761826357319999,TJ,CH4,10.0,kg/TJ,4.7618263573199995,kg +898f7fa2-5f57-3ffa-90b1-ae993f288cab,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2012,bioetanol combustion consumption by to the public,0.4761826357319999,TJ,N2O,0.6,kg/TJ,0.28570958143919994,kg +4f447bcc-9cd3-3073-9151-3b2e22a91fd9,SESCO,II.1.1,Tucuman,AR-T,annual,2012,bioetanol combustion consumption by to the public,0.533441968191,TJ,CH4,10.0,kg/TJ,5.33441968191,kg +75f46755-813e-3f53-8bb4-cf2b4b9dbb19,SESCO,II.1.1,Tucuman,AR-T,annual,2012,bioetanol combustion consumption by to the public,0.533441968191,TJ,N2O,0.6,kg/TJ,0.32006518091459996,kg +6065f6b1-3cc7-344e-b03d-dde4028c0d30,SESCO,II.5.1,Buenos Aires,AR-B,annual,2012,bioetanol combustion consumption by agriculture machines,0.0393998985,TJ,CH4,10.0,kg/TJ,0.393998985,kg +35612cf2-1357-3ea6-b611-321d9a7b5478,SESCO,II.5.1,Buenos Aires,AR-B,annual,2012,bioetanol combustion consumption by agriculture machines,0.0393998985,TJ,N2O,0.6,kg/TJ,0.0236399391,kg +756d6743-61ef-3cf3-bd9f-f80cbcbed7b8,SESCO,II.5.1,Santa Cruz,AR-Z,annual,2012,bioetanol combustion consumption by agriculture machines,0.043382707379999996,TJ,CH4,10.0,kg/TJ,0.43382707379999996,kg +b0582cd3-549f-34b9-97c0-06bcdf22f12e,SESCO,II.5.1,Santa Cruz,AR-Z,annual,2012,bioetanol combustion consumption by agriculture machines,0.043382707379999996,TJ,N2O,0.6,kg/TJ,0.026029624427999998,kg +cbc406e5-4d91-35c3-a6e6-76e3b0514e15,SESCO,II.1.1,Buenos Aires,AR-B,annual,2012,bioetanol combustion consumption by to the public,102.40502776118998,TJ,CH4,10.0,kg/TJ,1024.0502776119,kg +245ed831-d479-34c0-ab52-4b0d096d80e6,SESCO,II.1.1,Buenos Aires,AR-B,annual,2012,bioetanol combustion consumption by to the public,102.40502776118998,TJ,N2O,0.6,kg/TJ,61.443016656713986,kg +9535fbf4-956a-3e43-b7d0-0c02c80d4dd9,SESCO,II.1.1,Capital Federal,AR-C,annual,2012,bioetanol combustion consumption by to the public,14.673600346229998,TJ,CH4,10.0,kg/TJ,146.73600346229998,kg +3fcdd9b3-d751-3742-a4b3-67497ca2e4ae,SESCO,II.1.1,Capital Federal,AR-C,annual,2012,bioetanol combustion consumption by to the public,14.673600346229998,TJ,N2O,0.6,kg/TJ,8.804160207737999,kg +4d222a39-d80b-3e61-a104-de0ad9361c09,SESCO,II.1.1,Chaco,AR-H,annual,2012,bioetanol combustion consumption by to the public,0.11865792302999999,TJ,CH4,10.0,kg/TJ,1.1865792302999998,kg +ce84b08a-a804-323f-a23a-a4c76612473c,SESCO,II.1.1,Chaco,AR-H,annual,2012,bioetanol combustion consumption by to the public,0.11865792302999999,TJ,N2O,0.6,kg/TJ,0.07119475381799999,kg +6657c37a-4c1d-381b-a363-ac8db88b4c8f,SESCO,II.1.1,Chubut,AR-U,annual,2012,bioetanol combustion consumption by to the public,30.49818580521,TJ,CH4,10.0,kg/TJ,304.9818580521,kg +667f2190-350f-3c84-8b4a-d019ac7defe6,SESCO,II.1.1,Chubut,AR-U,annual,2012,bioetanol combustion consumption by to the public,30.49818580521,TJ,N2O,0.6,kg/TJ,18.298911483126,kg +3c80d261-72f6-39ac-82aa-ab4d63e71e80,SESCO,II.1.1,Córdoba,AR-X,annual,2012,bioetanol combustion consumption by to the public,12.967933045229998,TJ,CH4,10.0,kg/TJ,129.67933045229998,kg +912d8ade-c23b-30e6-a949-5c154347edca,SESCO,II.1.1,Córdoba,AR-X,annual,2012,bioetanol combustion consumption by to the public,12.967933045229998,TJ,N2O,0.6,kg/TJ,7.780759827137999,kg +89da144b-edbe-383d-8c2a-df4c70a47f01,SESCO,II.1.1,Entre Rios,AR-E,annual,2012,bioetanol combustion consumption by to the public,2.07278168697,TJ,CH4,10.0,kg/TJ,20.7278168697,kg +3ed64547-9546-3936-935f-d5ecc0bb5cde,SESCO,II.1.1,Entre Rios,AR-E,annual,2012,bioetanol combustion consumption by to the public,2.07278168697,TJ,N2O,0.6,kg/TJ,1.243669012182,kg +ba88927a-01d0-3ab2-9537-e1ce75fa3a7b,SESCO,II.1.1,La Pampa,AR-L,annual,2012,bioetanol combustion consumption by to the public,4.51283497605,TJ,CH4,10.0,kg/TJ,45.1283497605,kg +e285fa47-4d09-367f-b8b9-9464a47981cc,SESCO,II.1.1,La Pampa,AR-L,annual,2012,bioetanol combustion consumption by to the public,4.51283497605,TJ,N2O,0.6,kg/TJ,2.70770098563,kg +57abfd21-7e5e-3bcc-ab17-b45aabbcb460,SESCO,II.1.1,La Rioja,AR-F,annual,2012,bioetanol combustion consumption by to the public,0.014483696669999999,TJ,CH4,10.0,kg/TJ,0.14483696669999999,kg +ab13622e-89cf-3331-ba12-358fcfdadd21,SESCO,II.1.1,La Rioja,AR-F,annual,2012,bioetanol combustion consumption by to the public,0.014483696669999999,TJ,N2O,0.6,kg/TJ,0.008690218001999999,kg +4c622d94-7c2b-3ddc-9070-73deed8ee397,SESCO,II.1.1,Mendoza,AR-M,annual,2012,bioetanol combustion consumption by to the public,0.52579532025,TJ,CH4,10.0,kg/TJ,5.2579532024999995,kg +75c81b4e-c379-3409-8e1c-c41fe08e7ee1,SESCO,II.1.1,Mendoza,AR-M,annual,2012,bioetanol combustion consumption by to the public,0.52579532025,TJ,N2O,0.6,kg/TJ,0.31547719215,kg +3a477f6c-55fd-37a4-b3a8-432ecd008f82,SESCO,II.1.1,Neuquén,AR-Q,annual,2012,bioetanol combustion consumption by to the public,11.193715033559998,TJ,CH4,10.0,kg/TJ,111.93715033559998,kg +097df422-e231-3c28-baac-1e44a6597a8b,SESCO,II.1.1,Neuquén,AR-Q,annual,2012,bioetanol combustion consumption by to the public,11.193715033559998,TJ,N2O,0.6,kg/TJ,6.716229020135999,kg +26610227-e191-3bf1-94c0-e2e4065a21d3,SESCO,II.1.1,Rio Negro,AR-R,annual,2012,bioetanol combustion consumption by to the public,22.01880039876,TJ,CH4,10.0,kg/TJ,220.18800398759998,kg +20380e0a-113f-352f-a481-1e3f9c02ac1f,SESCO,II.1.1,Rio Negro,AR-R,annual,2012,bioetanol combustion consumption by to the public,22.01880039876,TJ,N2O,0.6,kg/TJ,13.211280239256,kg +9831928e-6e6e-3cb0-ab4f-f846a6694cf5,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2012,bioetanol combustion consumption by to the public,19.156266439739998,TJ,CH4,10.0,kg/TJ,191.56266439739997,kg +1b7a0010-96a4-305f-ae61-354dcc5b8a43,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2012,bioetanol combustion consumption by to the public,19.156266439739998,TJ,N2O,0.6,kg/TJ,11.493759863843998,kg +d81bab62-e86c-32f1-8b1b-2dcd743d8f67,SESCO,II.1.1,Santa Fe,AR-S,annual,2012,bioetanol combustion consumption by to the public,12.98851429959,TJ,CH4,10.0,kg/TJ,129.8851429959,kg +167d89c9-6b20-3e75-a58c-f2e70fd62e19,SESCO,II.1.1,Santa Fe,AR-S,annual,2012,bioetanol combustion consumption by to the public,12.98851429959,TJ,N2O,0.6,kg/TJ,7.793108579754,kg +3cae2d18-4bf9-3422-9456-758daba8254f,SESCO,II.1.1,Buenos Aires,AR-B,annual,2012,bioetanol combustion consumption by to the public,25.9462615284,TJ,CH4,10.0,kg/TJ,259.462615284,kg +36ec48a7-1f97-302d-98ad-12b4258a2511,SESCO,II.1.1,Buenos Aires,AR-B,annual,2012,bioetanol combustion consumption by to the public,25.9462615284,TJ,N2O,0.6,kg/TJ,15.56775691704,kg +995ceae2-7f93-3c01-b928-265d90c3bdb1,SESCO,II.1.1,Capital Federal,AR-C,annual,2012,bioetanol combustion consumption by to the public,4.827594470129999,TJ,CH4,10.0,kg/TJ,48.27594470129999,kg +347d8e3f-8488-3e36-be1d-2caa9a09263a,SESCO,II.1.1,Capital Federal,AR-C,annual,2012,bioetanol combustion consumption by to the public,4.827594470129999,TJ,N2O,0.6,kg/TJ,2.8965566820779993,kg +21b1f713-cf71-37e6-b998-f8852ff859e4,SESCO,II.1.1,Chubut,AR-U,annual,2012,bioetanol combustion consumption by to the public,4.691722018859999,TJ,CH4,10.0,kg/TJ,46.91722018859999,kg +df0e170a-05f8-3299-97c9-e5df28a33e52,SESCO,II.1.1,Chubut,AR-U,annual,2012,bioetanol combustion consumption by to the public,4.691722018859999,TJ,N2O,0.6,kg/TJ,2.8150332113159995,kg +d66d829e-8aee-3094-bc71-c134b47223aa,SESCO,II.1.1,Córdoba,AR-X,annual,2012,bioetanol combustion consumption by to the public,2.80934825013,TJ,CH4,10.0,kg/TJ,28.0934825013,kg +329b1345-83e4-3ced-b433-2b53992cff11,SESCO,II.1.1,Córdoba,AR-X,annual,2012,bioetanol combustion consumption by to the public,2.80934825013,TJ,N2O,0.6,kg/TJ,1.6856089500779998,kg +a4ef31e3-4119-3636-bc8b-9762126131d7,SESCO,II.1.1,Entre Rios,AR-E,annual,2012,bioetanol combustion consumption by to the public,0.43988500790999996,TJ,CH4,10.0,kg/TJ,4.3988500791,kg +fa7ee456-c66b-393a-a01c-7d73ead8b94d,SESCO,II.1.1,Entre Rios,AR-E,annual,2012,bioetanol combustion consumption by to the public,0.43988500790999996,TJ,N2O,0.6,kg/TJ,0.26393100474599995,kg +ce7c1d9b-4111-38d8-9628-1119dbba8cae,SESCO,II.1.1,La Pampa,AR-L,annual,2012,bioetanol combustion consumption by to the public,0.9909167140799998,TJ,CH4,10.0,kg/TJ,9.909167140799997,kg +83beab85-607c-3e15-934a-043b607a2200,SESCO,II.1.1,La Pampa,AR-L,annual,2012,bioetanol combustion consumption by to the public,0.9909167140799998,TJ,N2O,0.6,kg/TJ,0.5945500284479999,kg +c62c6982-b04b-388e-a623-0d6a727bcfbe,SESCO,II.1.1,Mendoza,AR-M,annual,2012,bioetanol combustion consumption by to the public,0.04895429399999999,TJ,CH4,10.0,kg/TJ,0.48954293999999987,kg +daf1dfd9-9a24-3bfa-803d-153b4768cf83,SESCO,II.1.1,Mendoza,AR-M,annual,2012,bioetanol combustion consumption by to the public,0.04895429399999999,TJ,N2O,0.6,kg/TJ,0.029372576399999992,kg +25a45ff8-0183-377a-818e-a9d93512b7fb,SESCO,II.1.1,Neuquén,AR-Q,annual,2012,bioetanol combustion consumption by to the public,2.7721532121299997,TJ,CH4,10.0,kg/TJ,27.721532121299997,kg +1ce41c68-2d41-3aee-903a-e8143d309202,SESCO,II.1.1,Neuquén,AR-Q,annual,2012,bioetanol combustion consumption by to the public,2.7721532121299997,TJ,N2O,0.6,kg/TJ,1.6632919272779998,kg +418a76f8-7495-3a85-a452-3b07ca0dd2fe,SESCO,II.1.1,Rio Negro,AR-R,annual,2012,bioetanol combustion consumption by to the public,3.495210690869999,TJ,CH4,10.0,kg/TJ,34.95210690869999,kg +73d1f790-7608-3d4b-b504-dca484bf7448,SESCO,II.1.1,Rio Negro,AR-R,annual,2012,bioetanol combustion consumption by to the public,3.495210690869999,TJ,N2O,0.6,kg/TJ,2.097126414521999,kg +9663fa2d-146d-3dbc-978f-79af4d713d53,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2012,bioetanol combustion consumption by to the public,3.29432872662,TJ,CH4,10.0,kg/TJ,32.9432872662,kg +e278fd4d-1497-3d29-8abf-6d225ab4fdeb,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2012,bioetanol combustion consumption by to the public,3.29432872662,TJ,N2O,0.6,kg/TJ,1.9765972359719999,kg +aa953a0f-4aae-3dd2-b120-67930a6de806,SESCO,II.1.1,Santa Fe,AR-S,annual,2012,bioetanol combustion consumption by to the public,3.8696682209399995,TJ,CH4,10.0,kg/TJ,38.696682209399995,kg +caf710b5-75f9-378b-ae59-705fe9092cc2,SESCO,II.1.1,Santa Fe,AR-S,annual,2012,bioetanol combustion consumption by to the public,3.8696682209399995,TJ,N2O,0.6,kg/TJ,2.3218009325639994,kg +01dc081a-adb7-3b8f-b7e3-95f6b760850c,SESCO,II.1.1,Buenos Aires,AR-B,annual,2012,bioetanol combustion consumption by to the public,1.6841938769999998,TJ,CH4,10.0,kg/TJ,16.84193877,kg +00d315c2-0f17-36f4-8d5e-86fff40b1446,SESCO,II.1.1,Buenos Aires,AR-B,annual,2012,bioetanol combustion consumption by to the public,1.6841938769999998,TJ,N2O,0.6,kg/TJ,1.0105163261999999,kg +7d583d8a-a5df-3201-8dcc-217c53d127ef,SESCO,II.1.1,Capital Federal,AR-C,annual,2012,bioetanol combustion consumption by to the public,1.0001758499999998,TJ,CH4,10.0,kg/TJ,10.001758499999998,kg +2d3264b6-30cf-390a-919d-014cb49778c5,SESCO,II.1.1,Capital Federal,AR-C,annual,2012,bioetanol combustion consumption by to the public,1.0001758499999998,TJ,N2O,0.6,kg/TJ,0.6001055099999998,kg +60319045-5902-3276-8035-f6f5d9d56a66,SESCO,II.1.1,Chaco,AR-H,annual,2012,bioetanol combustion consumption by to the public,0.20131334999999997,TJ,CH4,10.0,kg/TJ,2.0131335,kg +96acbe35-3dca-34c9-95fa-e38c16bae992,SESCO,II.1.1,Chaco,AR-H,annual,2012,bioetanol combustion consumption by to the public,0.20131334999999997,TJ,N2O,0.6,kg/TJ,0.12078800999999997,kg +29f6d636-58b6-3b77-82db-2d75e97c1b58,SESCO,II.1.1,Córdoba,AR-X,annual,2012,bioetanol combustion consumption by to the public,0.6148045799999999,TJ,CH4,10.0,kg/TJ,6.148045799999999,kg +5d3f62be-0970-3f6c-b14e-427948617d05,SESCO,II.1.1,Córdoba,AR-X,annual,2012,bioetanol combustion consumption by to the public,0.6148045799999999,TJ,N2O,0.6,kg/TJ,0.3688827479999999,kg +8345765c-3bcf-3a67-bc66-5968a29d4b2a,SESCO,II.1.1,Entre Rios,AR-E,annual,2012,bioetanol combustion consumption by to the public,0.1725543,TJ,CH4,10.0,kg/TJ,1.725543,kg +b99c47ec-37c0-31a0-9c94-e94b56e0179c,SESCO,II.1.1,Entre Rios,AR-E,annual,2012,bioetanol combustion consumption by to the public,0.1725543,TJ,N2O,0.6,kg/TJ,0.10353258,kg +6ccb3cc9-5cb1-3cf0-b8f8-9be7dad89b0d,SESCO,II.1.1,Santa Fe,AR-S,annual,2012,bioetanol combustion consumption by to the public,0.82378701,TJ,CH4,10.0,kg/TJ,8.2378701,kg +1624dfaa-d544-3e68-95d2-7e933691c40e,SESCO,II.1.1,Santa Fe,AR-S,annual,2012,bioetanol combustion consumption by to the public,0.82378701,TJ,N2O,0.6,kg/TJ,0.494272206,kg +9ffeb681-3c1b-3607-8409-668a2337798b,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2012,bioetanol combustion consumption by to the public,0.021729059999999998,TJ,CH4,10.0,kg/TJ,0.21729059999999997,kg +97bf82fc-27f5-3f3e-a3c4-fb266e667fdf,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2012,bioetanol combustion consumption by to the public,0.021729059999999998,TJ,N2O,0.6,kg/TJ,0.013037435999999998,kg +68cdda0c-0b01-3182-bd4a-4a1f2047d843,SESCO,II.1.1,Buenos Aires,AR-B,annual,2012,bioetanol combustion consumption by to the public,24.973016931,TJ,CH4,10.0,kg/TJ,249.73016931,kg +cefc3640-dfe3-30dc-83e2-361c05028649,SESCO,II.1.1,Buenos Aires,AR-B,annual,2012,bioetanol combustion consumption by to the public,24.973016931,TJ,N2O,0.6,kg/TJ,14.983810158599999,kg +5737aae0-a66c-3e64-85c6-74e779ff2301,SESCO,II.1.1,Capital Federal,AR-C,annual,2012,bioetanol combustion consumption by to the public,5.783125409999999,TJ,CH4,10.0,kg/TJ,57.831254099999995,kg +29d77564-4721-3364-98ea-554b33de8653,SESCO,II.1.1,Capital Federal,AR-C,annual,2012,bioetanol combustion consumption by to the public,5.783125409999999,TJ,N2O,0.6,kg/TJ,3.4698752459999995,kg +7249ef62-e848-3a84-974e-c583f2500d7f,SESCO,II.1.1,Chaco,AR-H,annual,2012,bioetanol combustion consumption by to the public,1.6162586099999998,TJ,CH4,10.0,kg/TJ,16.1625861,kg +4a189cb2-7d83-3c50-a4f4-60c3caf4d000,SESCO,II.1.1,Chaco,AR-H,annual,2012,bioetanol combustion consumption by to the public,1.6162586099999998,TJ,N2O,0.6,kg/TJ,0.9697551659999999,kg +d71d5869-d193-3792-9d80-d49f368add3e,SESCO,II.1.1,Córdoba,AR-X,annual,2012,bioetanol combustion consumption by to the public,6.900893819999999,TJ,CH4,10.0,kg/TJ,69.00893819999999,kg +aa4885b1-83e8-3493-8d08-27f8b3cdca3b,SESCO,II.1.1,Córdoba,AR-X,annual,2012,bioetanol combustion consumption by to the public,6.900893819999999,TJ,N2O,0.6,kg/TJ,4.140536291999999,kg +f3a7e201-7494-3339-8107-2090004441f9,SESCO,II.1.1,Entre Rios,AR-E,annual,2012,bioetanol combustion consumption by to the public,2.76470334,TJ,CH4,10.0,kg/TJ,27.6470334,kg +283fc75a-c64d-335e-9537-1be474c51a87,SESCO,II.1.1,Entre Rios,AR-E,annual,2012,bioetanol combustion consumption by to the public,2.76470334,TJ,N2O,0.6,kg/TJ,1.658822004,kg +ff0fe4c6-e59b-3d0d-8d2c-6ab21f2d63df,SESCO,II.1.1,Santa Fe,AR-S,annual,2012,bioetanol combustion consumption by to the public,3.5290549799999997,TJ,CH4,10.0,kg/TJ,35.290549799999994,kg +fb55b0d0-73bb-34ee-9a41-d5035f2734f9,SESCO,II.1.1,Santa Fe,AR-S,annual,2012,bioetanol combustion consumption by to the public,3.5290549799999997,TJ,N2O,0.6,kg/TJ,2.1174329879999996,kg +ee7d0ca1-29a8-355a-a9a9-e7a5178fff23,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2012,bioetanol combustion consumption by to the public,0.10992348,TJ,CH4,10.0,kg/TJ,1.0992348,kg +2f08a649-9c4a-3d80-b607-0546a4004652,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2012,bioetanol combustion consumption by to the public,0.10992348,TJ,N2O,0.6,kg/TJ,0.065954088,kg +9fd2d87e-642f-31cf-91fb-e96291f3bc58,SESCO,II.1.1,Buenos Aires,AR-B,annual,2012,bioetanol combustion consumption by to the public,3.0026365470000003,TJ,CH4,10.0,kg/TJ,30.026365470000002,kg +859ca3a3-330d-3cfd-bf57-5ef0f03049f7,SESCO,II.1.1,Buenos Aires,AR-B,annual,2012,bioetanol combustion consumption by to the public,3.0026365470000003,TJ,N2O,0.6,kg/TJ,1.8015819282,kg +653f3843-031a-3a13-a944-9a25bf3719b6,SESCO,II.1.1,Capital Federal,AR-C,annual,2012,bioetanol combustion consumption by to the public,0.29717685,TJ,CH4,10.0,kg/TJ,2.9717685,kg +241fa75f-cc84-30fd-b780-e909233e90a6,SESCO,II.1.1,Capital Federal,AR-C,annual,2012,bioetanol combustion consumption by to the public,0.29717685,TJ,N2O,0.6,kg/TJ,0.17830611,kg +bb82d9c1-3338-37fa-9857-b94032f0e4d5,SESCO,II.1.1,Chaco,AR-H,annual,2012,bioetanol combustion consumption by to the public,0.0127818,TJ,CH4,10.0,kg/TJ,0.127818,kg +59c15a3a-0c61-3a8c-b3c9-b9af198d5fce,SESCO,II.1.1,Chaco,AR-H,annual,2012,bioetanol combustion consumption by to the public,0.0127818,TJ,N2O,0.6,kg/TJ,0.007669079999999999,kg +5e95d139-55c2-3995-963f-8bb1f0473916,SESCO,II.1.1,Córdoba,AR-X,annual,2012,bioetanol combustion consumption by to the public,0.6697663199999999,TJ,CH4,10.0,kg/TJ,6.697663199999999,kg +58b73478-a85a-3a59-aaf1-75b4944256a7,SESCO,II.1.1,Córdoba,AR-X,annual,2012,bioetanol combustion consumption by to the public,0.6697663199999999,TJ,N2O,0.6,kg/TJ,0.40185979199999994,kg +9c8b2add-1c0a-3177-bcba-b6451bc9d7f3,SESCO,II.1.1,Entre Rios,AR-E,annual,2012,bioetanol combustion consumption by to the public,0.37578492,TJ,CH4,10.0,kg/TJ,3.7578492000000003,kg +986faa80-be15-3ea8-9cec-43dafbcfe5a7,SESCO,II.1.1,Entre Rios,AR-E,annual,2012,bioetanol combustion consumption by to the public,0.37578492,TJ,N2O,0.6,kg/TJ,0.225470952,kg +be0a6f8e-8068-3dcf-93a2-3f41d0e598ea,SESCO,II.1.1,Santa Fe,AR-S,annual,2012,bioetanol combustion consumption by to the public,0.5361965099999999,TJ,CH4,10.0,kg/TJ,5.361965099999999,kg +e4b8f54e-5cc8-3544-b370-8283ec4c6ae9,SESCO,II.1.1,Santa Fe,AR-S,annual,2012,bioetanol combustion consumption by to the public,0.5361965099999999,TJ,N2O,0.6,kg/TJ,0.32171790599999994,kg +3841dc21-d2f6-3f29-8f59-f0669c39ee60,SESCO,II.1.1,Catamarca,AR-K,annual,2012,bioetanol combustion consumption by to the public,0.8694372087,TJ,CH4,10.0,kg/TJ,8.694372087,kg +4993fcfd-dda6-32e5-819b-3a11b2570f7d,SESCO,II.1.1,Catamarca,AR-K,annual,2012,bioetanol combustion consumption by to the public,0.8694372087,TJ,N2O,0.6,kg/TJ,0.52166232522,kg +fca3d9ea-0844-3f0f-9678-5c4018c21550,SESCO,II.1.1,Chaco,AR-H,annual,2012,bioetanol combustion consumption by to the public,0.8611482114,TJ,CH4,10.0,kg/TJ,8.611482114,kg +4ee284f1-6a9c-33c5-a807-5244f7122c02,SESCO,II.1.1,Chaco,AR-H,annual,2012,bioetanol combustion consumption by to the public,0.8611482114,TJ,N2O,0.6,kg/TJ,0.51668892684,kg +7073dbf0-f32e-319e-812b-c9a65e707b51,SESCO,II.1.1,Córdoba,AR-X,annual,2012,bioetanol combustion consumption by to the public,0.0361277577,TJ,CH4,10.0,kg/TJ,0.36127757699999996,kg +b4138112-1e07-3a34-be1c-cde72cd9548b,SESCO,II.1.1,Córdoba,AR-X,annual,2012,bioetanol combustion consumption by to the public,0.0361277577,TJ,N2O,0.6,kg/TJ,0.02167665462,kg +a7263603-7cc2-3619-8f7e-f173f06eac21,SESCO,II.1.1,Jujuy,AR-Y,annual,2012,bioetanol combustion consumption by to the public,2.3025006701999997,TJ,CH4,10.0,kg/TJ,23.025006702,kg +fe985b5b-b5d9-333f-9ecb-5da5822a6690,SESCO,II.1.1,Jujuy,AR-Y,annual,2012,bioetanol combustion consumption by to the public,2.3025006701999997,TJ,N2O,0.6,kg/TJ,1.3815004021199997,kg +8be1e813-1546-3bc3-aee6-c97ce2547abe,SESCO,II.1.1,La Rioja,AR-F,annual,2012,bioetanol combustion consumption by to the public,0.7023535190999999,TJ,CH4,10.0,kg/TJ,7.023535190999999,kg +21d6c144-92fd-39b4-abb3-49c8cd46e35b,SESCO,II.1.1,La Rioja,AR-F,annual,2012,bioetanol combustion consumption by to the public,0.7023535190999999,TJ,N2O,0.6,kg/TJ,0.4214121114599999,kg +592e92ca-4988-3905-afe7-05f10102cfec,SESCO,II.1.1,Salta,AR-A,annual,2012,bioetanol combustion consumption by to the public,4.638988146599999,TJ,CH4,10.0,kg/TJ,46.38988146599999,kg +c22cfeaa-bf46-3b4d-b89b-26f956352e20,SESCO,II.1.1,Salta,AR-A,annual,2012,bioetanol combustion consumption by to the public,4.638988146599999,TJ,N2O,0.6,kg/TJ,2.7833928879599994,kg +660720c8-b82c-3ade-8f40-c1ff2bd85db5,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2012,bioetanol combustion consumption by to the public,1.1287671489,TJ,CH4,10.0,kg/TJ,11.287671489,kg +d8caf2f3-3f9c-3851-9908-bb6d6ffb02eb,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2012,bioetanol combustion consumption by to the public,1.1287671489,TJ,N2O,0.6,kg/TJ,0.6772602893399999,kg +2e593326-697e-3792-ac5c-194fa1bc882f,SESCO,II.1.1,Tucuman,AR-T,annual,2012,bioetanol combustion consumption by to the public,3.3790286025,TJ,CH4,10.0,kg/TJ,33.790286025,kg +a1001da4-ef38-3787-954a-61c3415ca408,SESCO,II.1.1,Tucuman,AR-T,annual,2012,bioetanol combustion consumption by to the public,3.3790286025,TJ,N2O,0.6,kg/TJ,2.0274171615,kg +a5a83f5b-e5a7-3677-990a-7fa948df0e1c,SESCO,II.1.1,Catamarca,AR-K,annual,2012,bioetanol combustion consumption by to the public,4.333106890799999,TJ,CH4,10.0,kg/TJ,43.33106890799999,kg +9f6c6a50-f633-3758-882e-214e5aeda372,SESCO,II.1.1,Catamarca,AR-K,annual,2012,bioetanol combustion consumption by to the public,4.333106890799999,TJ,N2O,0.6,kg/TJ,2.5998641344799993,kg +d4840f80-1958-33b4-aa18-f05111a4065f,SESCO,II.1.1,Chaco,AR-H,annual,2012,bioetanol combustion consumption by to the public,1.4401765331999998,TJ,CH4,10.0,kg/TJ,14.401765331999998,kg +dc1a3d0a-90da-37cb-a6c5-e98f8eaef2e8,SESCO,II.1.1,Chaco,AR-H,annual,2012,bioetanol combustion consumption by to the public,1.4401765331999998,TJ,N2O,0.6,kg/TJ,0.8641059199199999,kg +3b9a4141-b49d-3013-a017-96e25e8e9d94,SESCO,II.1.1,Córdoba,AR-X,annual,2012,bioetanol combustion consumption by to the public,0.37480072140000004,TJ,CH4,10.0,kg/TJ,3.7480072140000003,kg +a38e2c8c-0404-37ac-969e-41fa3e705aec,SESCO,II.1.1,Córdoba,AR-X,annual,2012,bioetanol combustion consumption by to the public,0.37480072140000004,TJ,N2O,0.6,kg/TJ,0.22488043284,kg +52226647-878d-3cbc-a5a7-7da6b545c168,SESCO,II.1.1,Jujuy,AR-Y,annual,2012,bioetanol combustion consumption by to the public,6.688958794199999,TJ,CH4,10.0,kg/TJ,66.88958794199999,kg +c57a5d3c-7c1e-3aff-b462-e3d614e93594,SESCO,II.1.1,Jujuy,AR-Y,annual,2012,bioetanol combustion consumption by to the public,6.688958794199999,TJ,N2O,0.6,kg/TJ,4.013375276519999,kg +ec76461c-cd85-3210-9bd9-e9951ba927b6,SESCO,II.1.1,La Rioja,AR-F,annual,2012,bioetanol combustion consumption by to the public,4.377542818499999,TJ,CH4,10.0,kg/TJ,43.775428184999996,kg +9bafc71d-176b-3eb9-a0ae-edbc7aa11287,SESCO,II.1.1,La Rioja,AR-F,annual,2012,bioetanol combustion consumption by to the public,4.377542818499999,TJ,N2O,0.6,kg/TJ,2.6265256910999994,kg +f9128061-ad5f-3882-aec1-d7d9461dde2e,SESCO,II.1.1,Salta,AR-A,annual,2012,bioetanol combustion consumption by to the public,14.516839877399999,TJ,CH4,10.0,kg/TJ,145.168398774,kg +c7f488d1-8839-3a2b-8013-aa6538e42a00,SESCO,II.1.1,Salta,AR-A,annual,2012,bioetanol combustion consumption by to the public,14.516839877399999,TJ,N2O,0.6,kg/TJ,8.710103926439999,kg +8c99e701-d32c-3dc7-9815-117db234be71,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2012,bioetanol combustion consumption by to the public,4.595855962499999,TJ,CH4,10.0,kg/TJ,45.95855962499999,kg +4d8507e5-8748-34fe-b449-bd0fd1ca1db0,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2012,bioetanol combustion consumption by to the public,4.595855962499999,TJ,N2O,0.6,kg/TJ,2.7575135774999993,kg +678b238d-3979-3349-a80b-cb5b18837f47,SESCO,II.1.1,Tucuman,AR-T,annual,2012,bioetanol combustion consumption by to the public,25.4283238197,TJ,CH4,10.0,kg/TJ,254.283238197,kg +45448aff-b389-3291-bd67-e99e64cf718b,SESCO,II.1.1,Tucuman,AR-T,annual,2012,bioetanol combustion consumption by to the public,25.4283238197,TJ,N2O,0.6,kg/TJ,15.25699429182,kg +9a472a4d-7c02-3430-b756-494822301028,SESCO,II.1.1,Catamarca,AR-K,annual,2012,bioetanol combustion consumption by to the public,0.27485982719999996,TJ,CH4,10.0,kg/TJ,2.7485982719999997,kg +4c2d5d68-8c3c-3be8-9a29-f2e177d7135f,SESCO,II.1.1,Catamarca,AR-K,annual,2012,bioetanol combustion consumption by to the public,0.27485982719999996,TJ,N2O,0.6,kg/TJ,0.16491589631999998,kg +e4ba2b7b-c6d4-3c5e-9261-d5cd6b104ac2,SESCO,II.1.1,Chaco,AR-H,annual,2012,bioetanol combustion consumption by to the public,0.030414293099999996,TJ,CH4,10.0,kg/TJ,0.30414293099999995,kg +42310820-bc09-360f-ba0d-eefb30938f7b,SESCO,II.1.1,Chaco,AR-H,annual,2012,bioetanol combustion consumption by to the public,0.030414293099999996,TJ,N2O,0.6,kg/TJ,0.018248575859999998,kg +deb595fc-0974-3f5a-bf13-a3eb158b6f31,SESCO,II.1.1,Córdoba,AR-X,annual,2012,bioetanol combustion consumption by to the public,0.067935267,TJ,CH4,10.0,kg/TJ,0.6793526699999999,kg +b236e019-b452-322a-9574-0fd291e92f71,SESCO,II.1.1,Córdoba,AR-X,annual,2012,bioetanol combustion consumption by to the public,0.067935267,TJ,N2O,0.6,kg/TJ,0.04076116019999999,kg +c9b63493-fd0c-3115-9aa0-0878c7a2b981,SESCO,II.1.1,Jujuy,AR-Y,annual,2012,bioetanol combustion consumption by to the public,0.6502165568999999,TJ,CH4,10.0,kg/TJ,6.502165568999999,kg +a642ad02-35a2-39ef-87f7-d2cca4779a0c,SESCO,II.1.1,Jujuy,AR-Y,annual,2012,bioetanol combustion consumption by to the public,0.6502165568999999,TJ,N2O,0.6,kg/TJ,0.3901299341399999,kg +c02cb3f4-fe74-349d-bdd4-9dd4d798b6c2,SESCO,II.1.1,La Rioja,AR-F,annual,2012,bioetanol combustion consumption by to the public,0.22823182079999998,TJ,CH4,10.0,kg/TJ,2.282318208,kg +9e59bc5e-154c-3dec-ac65-f1c919375da8,SESCO,II.1.1,La Rioja,AR-F,annual,2012,bioetanol combustion consumption by to the public,0.22823182079999998,TJ,N2O,0.6,kg/TJ,0.13693909248,kg +5652fa38-8dab-30f5-ac31-0100b6faaaf9,SESCO,II.1.1,Salta,AR-A,annual,2012,bioetanol combustion consumption by to the public,1.3633323515999998,TJ,CH4,10.0,kg/TJ,13.633323515999997,kg +feeee0a5-c589-3710-a83f-188f606ee4b3,SESCO,II.1.1,Salta,AR-A,annual,2012,bioetanol combustion consumption by to the public,1.3633323515999998,TJ,N2O,0.6,kg/TJ,0.8179994109599998,kg +3b563510-e9fd-3b5f-ac40-11974fc21579,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2012,bioetanol combustion consumption by to the public,0.47078564849999993,TJ,CH4,10.0,kg/TJ,4.707856484999999,kg +025c4c45-d19a-35c0-8153-e84f65af536f,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2012,bioetanol combustion consumption by to the public,0.47078564849999993,TJ,N2O,0.6,kg/TJ,0.28247138909999997,kg +401989ee-48c9-395a-9af2-4a5b6b87a42a,SESCO,II.1.1,Tucuman,AR-T,annual,2012,bioetanol combustion consumption by to the public,2.2665135123,TJ,CH4,10.0,kg/TJ,22.665135123,kg +0c5b60ed-1f08-314b-adc9-6c14ff9dc760,SESCO,II.1.1,Tucuman,AR-T,annual,2012,bioetanol combustion consumption by to the public,2.2665135123,TJ,N2O,0.6,kg/TJ,1.35990810738,kg +c63f59c0-d8cb-35d8-992c-b489c669f516,SESCO,II.5.1,Capital Federal,AR-C,annual,2012,bioetanol combustion consumption by agriculture machines,0.007669079999999999,TJ,CH4,10.0,kg/TJ,0.07669079999999999,kg +e29d81a1-3ff3-3cd1-81f9-fb6f3776bb9e,SESCO,II.5.1,Capital Federal,AR-C,annual,2012,bioetanol combustion consumption by agriculture machines,0.007669079999999999,TJ,N2O,0.6,kg/TJ,0.004601447999999999,kg +a87b56df-7f57-3fab-abfe-48c0b1f02d81,SESCO,II.5.1,Santa Fe,AR-S,annual,2012,bioetanol combustion consumption by agriculture machines,0.08755532999999999,TJ,CH4,10.0,kg/TJ,0.8755532999999999,kg +c2c4ffd4-d6f9-353b-b8e6-e35eb0a3620d,SESCO,II.5.1,Santa Fe,AR-S,annual,2012,bioetanol combustion consumption by agriculture machines,0.08755532999999999,TJ,N2O,0.6,kg/TJ,0.05253319799999999,kg +4462b416-a65e-33aa-987e-be76e53df6e6,SESCO,II.1.1,Buenos Aires,AR-B,annual,2012,bioetanol combustion consumption by to the public,5.8169971799999995,TJ,CH4,10.0,kg/TJ,58.1699718,kg +61a232d6-6c18-3cae-b453-d0fbfbfc7400,SESCO,II.1.1,Buenos Aires,AR-B,annual,2012,bioetanol combustion consumption by to the public,5.8169971799999995,TJ,N2O,0.6,kg/TJ,3.4901983079999996,kg +86a65f1c-4799-3b2a-b08d-9ef22a015b11,SESCO,II.1.1,Capital Federal,AR-C,annual,2012,bioetanol combustion consumption by to the public,0.07349534999999999,TJ,CH4,10.0,kg/TJ,0.7349534999999998,kg +b74f89d4-3852-3177-9dc5-e75767205304,SESCO,II.1.1,Capital Federal,AR-C,annual,2012,bioetanol combustion consumption by to the public,0.07349534999999999,TJ,N2O,0.6,kg/TJ,0.04409720999999999,kg +d5fb3414-8423-3e39-84fa-dd250a3fd4a4,SESCO,II.1.1,Chaco,AR-H,annual,2012,bioetanol combustion consumption by to the public,0.20514788999999997,TJ,CH4,10.0,kg/TJ,2.0514788999999998,kg +f7bd1ddc-7cfd-3b56-84c3-8d421fa88532,SESCO,II.1.1,Chaco,AR-H,annual,2012,bioetanol combustion consumption by to the public,0.20514788999999997,TJ,N2O,0.6,kg/TJ,0.12308873399999998,kg +901aa231-485b-351f-832d-f8b99178d2f2,SESCO,II.1.1,Corrientes,AR-W,annual,2012,bioetanol combustion consumption by to the public,0.05623991999999999,TJ,CH4,10.0,kg/TJ,0.5623991999999999,kg +56cf3cfc-4031-3958-b561-f32bfefc1836,SESCO,II.1.1,Corrientes,AR-W,annual,2012,bioetanol combustion consumption by to the public,0.05623991999999999,TJ,N2O,0.6,kg/TJ,0.033743951999999994,kg +9d4f51ee-2077-379b-bd80-a98f2d0a331a,SESCO,II.1.1,Córdoba,AR-X,annual,2012,bioetanol combustion consumption by to the public,0.014699069999999998,TJ,CH4,10.0,kg/TJ,0.14699069999999997,kg +2caefbe3-dbf0-3ea2-b722-13644f1f3cc9,SESCO,II.1.1,Córdoba,AR-X,annual,2012,bioetanol combustion consumption by to the public,0.014699069999999998,TJ,N2O,0.6,kg/TJ,0.008819441999999999,kg +0b1eec8a-65b8-31a0-81d4-3c0699b25ce4,SESCO,II.1.1,Entre Rios,AR-E,annual,2012,bioetanol combustion consumption by to the public,0.47931749999999995,TJ,CH4,10.0,kg/TJ,4.793175,kg +b5876469-382c-30e8-ba17-f7efbe736789,SESCO,II.1.1,Entre Rios,AR-E,annual,2012,bioetanol combustion consumption by to the public,0.47931749999999995,TJ,N2O,0.6,kg/TJ,0.28759049999999997,kg +6c960e43-5978-3e6d-8dbd-d0a424cb170f,SESCO,II.1.1,La Pampa,AR-L,annual,2012,bioetanol combustion consumption by to the public,0.038345399999999995,TJ,CH4,10.0,kg/TJ,0.38345399999999996,kg +165c1dff-bafb-38a2-963b-a25af0f8f57f,SESCO,II.1.1,La Pampa,AR-L,annual,2012,bioetanol combustion consumption by to the public,0.038345399999999995,TJ,N2O,0.6,kg/TJ,0.023007239999999995,kg +dac083c2-58d6-34a2-a9a7-c6de3637748a,SESCO,II.1.1,Mendoza,AR-M,annual,2012,bioetanol combustion consumption by to the public,1.4360352299999999,TJ,CH4,10.0,kg/TJ,14.360352299999999,kg +69ae7468-970a-31e4-a35a-cb3278d385b7,SESCO,II.1.1,Mendoza,AR-M,annual,2012,bioetanol combustion consumption by to the public,1.4360352299999999,TJ,N2O,0.6,kg/TJ,0.861621138,kg +506c950e-40c6-31c1-8e58-8870bdd69e99,SESCO,II.1.1,Misiones,AR-N,annual,2012,bioetanol combustion consumption by to the public,0.49018202999999994,TJ,CH4,10.0,kg/TJ,4.901820299999999,kg +4c477fee-f10a-31e9-a6ee-6f0021df5aeb,SESCO,II.1.1,Misiones,AR-N,annual,2012,bioetanol combustion consumption by to the public,0.49018202999999994,TJ,N2O,0.6,kg/TJ,0.29410921799999995,kg +da8a4c76-1aa1-3d0a-a723-6256d5d9bbf1,SESCO,II.1.1,Neuquén,AR-Q,annual,2012,bioetanol combustion consumption by to the public,0.28822959,TJ,CH4,10.0,kg/TJ,2.8822959,kg +0c8dc5e9-e4b7-3c74-9f2d-f48070b266d5,SESCO,II.1.1,Neuquén,AR-Q,annual,2012,bioetanol combustion consumption by to the public,0.28822959,TJ,N2O,0.6,kg/TJ,0.17293775399999997,kg +8c95e198-34f2-3686-a315-3ee3fc3058b1,SESCO,II.1.1,Rio Negro,AR-R,annual,2012,bioetanol combustion consumption by to the public,0.14890796999999997,TJ,CH4,10.0,kg/TJ,1.4890796999999998,kg +7d30c3d0-c66e-306c-af9f-81c9071dafbf,SESCO,II.1.1,Rio Negro,AR-R,annual,2012,bioetanol combustion consumption by to the public,0.14890796999999997,TJ,N2O,0.6,kg/TJ,0.08934478199999998,kg +9bb5ee29-c578-3ca8-83fd-c4a6494d1735,SESCO,II.1.1,Santa Fe,AR-S,annual,2012,bioetanol combustion consumption by to the public,0.06838263,TJ,CH4,10.0,kg/TJ,0.6838263,kg +5943e239-9df9-3c3a-8f9e-6ad9bc00e0a8,SESCO,II.1.1,Santa Fe,AR-S,annual,2012,bioetanol combustion consumption by to the public,0.06838263,TJ,N2O,0.6,kg/TJ,0.041029578,kg +ee471297-a0fa-32d6-b23c-2e2dd067b67e,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2012,bioetanol combustion consumption by to the public,0.036428129999999996,TJ,CH4,10.0,kg/TJ,0.3642813,kg +208682e7-c816-33fe-acc1-f2b7e7772d7e,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2012,bioetanol combustion consumption by to the public,0.036428129999999996,TJ,N2O,0.6,kg/TJ,0.021856877999999996,kg +7b4bc83a-d4c3-3339-be35-088cd68278ae,SESCO,II.1.1,Tucuman,AR-T,annual,2012,bioetanol combustion consumption by to the public,0.13676526,TJ,CH4,10.0,kg/TJ,1.3676526,kg +5454902a-1b2b-3cb5-995d-5567efbb989d,SESCO,II.1.1,Tucuman,AR-T,annual,2012,bioetanol combustion consumption by to the public,0.13676526,TJ,N2O,0.6,kg/TJ,0.082059156,kg +fa22693a-5de6-3fb5-a39f-6c86888faee0,SESCO,II.1.1,Buenos Aires,AR-B,annual,2012,bioetanol combustion consumption by to the public,272.87800911,TJ,CH4,10.0,kg/TJ,2728.7800911,kg +e0eb21d4-b343-39e2-ac6d-5dc86c483fc5,SESCO,II.1.1,Buenos Aires,AR-B,annual,2012,bioetanol combustion consumption by to the public,272.87800911,TJ,N2O,0.6,kg/TJ,163.726805466,kg +dfe22d63-dae0-319c-8e80-f3b949050e5e,SESCO,II.1.1,Capital Federal,AR-C,annual,2012,bioetanol combustion consumption by to the public,80.71834518,TJ,CH4,10.0,kg/TJ,807.1834518000001,kg +7c9b30a6-228b-36e9-9ee2-4425fe61f99b,SESCO,II.1.1,Capital Federal,AR-C,annual,2012,bioetanol combustion consumption by to the public,80.71834518,TJ,N2O,0.6,kg/TJ,48.431007107999996,kg +4b9d09f4-8ce5-3d6b-bed9-5464579bd808,SESCO,II.1.1,Catamarca,AR-K,annual,2012,bioetanol combustion consumption by to the public,1.2366391499999998,TJ,CH4,10.0,kg/TJ,12.366391499999999,kg +011f4fc2-21b6-362d-9d36-fa35475d3ade,SESCO,II.1.1,Catamarca,AR-K,annual,2012,bioetanol combustion consumption by to the public,1.2366391499999998,TJ,N2O,0.6,kg/TJ,0.7419834899999999,kg +69bc00b3-fd50-34f8-9dd4-53df14ca41a2,SESCO,II.1.1,Chaco,AR-H,annual,2012,bioetanol combustion consumption by to the public,17.885572739999997,TJ,CH4,10.0,kg/TJ,178.85572739999998,kg +8588ef29-5ae1-3de2-9b8f-f8969303864b,SESCO,II.1.1,Chaco,AR-H,annual,2012,bioetanol combustion consumption by to the public,17.885572739999997,TJ,N2O,0.6,kg/TJ,10.731343643999997,kg +526556de-b884-3b94-8f83-747e23093f18,SESCO,II.1.1,Chubut,AR-U,annual,2012,bioetanol combustion consumption by to the public,1.9038491099999997,TJ,CH4,10.0,kg/TJ,19.038491099999998,kg +87382088-3454-364c-af60-51367d206b7f,SESCO,II.1.1,Chubut,AR-U,annual,2012,bioetanol combustion consumption by to the public,1.9038491099999997,TJ,N2O,0.6,kg/TJ,1.1423094659999997,kg +7ad779a9-9be8-309c-8d46-fb02ad09e2d6,SESCO,II.1.1,Corrientes,AR-W,annual,2012,bioetanol combustion consumption by to the public,17.16979194,TJ,CH4,10.0,kg/TJ,171.6979194,kg +47b53901-8866-3b8c-8a90-1d0e783aafe2,SESCO,II.1.1,Corrientes,AR-W,annual,2012,bioetanol combustion consumption by to the public,17.16979194,TJ,N2O,0.6,kg/TJ,10.301875164,kg +ecd158d5-8194-33aa-997e-332510c134df,SESCO,II.1.1,Córdoba,AR-X,annual,2012,bioetanol combustion consumption by to the public,55.312600409999995,TJ,CH4,10.0,kg/TJ,553.1260040999999,kg +f3a6295a-1f50-319d-9f22-051bd3cb8fa5,SESCO,II.1.1,Córdoba,AR-X,annual,2012,bioetanol combustion consumption by to the public,55.312600409999995,TJ,N2O,0.6,kg/TJ,33.187560246,kg +23db8eea-0cb7-3978-b417-a636e1aeeefe,SESCO,II.1.1,Entre Rios,AR-E,annual,2012,bioetanol combustion consumption by to the public,21.488123069999997,TJ,CH4,10.0,kg/TJ,214.88123069999997,kg +0c3af81d-b8dd-39bb-93fb-7ad12c0a8604,SESCO,II.1.1,Entre Rios,AR-E,annual,2012,bioetanol combustion consumption by to the public,21.488123069999997,TJ,N2O,0.6,kg/TJ,12.892873841999998,kg +4e1a597b-53b2-393d-b81e-c1ebeec577a1,SESCO,II.1.1,Formosa,AR-P,annual,2012,bioetanol combustion consumption by to the public,8.522904239999999,TJ,CH4,10.0,kg/TJ,85.2290424,kg +8f5b93fe-2140-3846-a43d-321a91a3d79e,SESCO,II.1.1,Formosa,AR-P,annual,2012,bioetanol combustion consumption by to the public,8.522904239999999,TJ,N2O,0.6,kg/TJ,5.113742543999999,kg +2dc2e577-51cc-3f04-a038-d5079d99af28,SESCO,II.1.1,Jujuy,AR-Y,annual,2012,bioetanol combustion consumption by to the public,4.21671582,TJ,CH4,10.0,kg/TJ,42.1671582,kg +804bbea2-764d-3df6-aaf6-ebc2cfc17146,SESCO,II.1.1,Jujuy,AR-Y,annual,2012,bioetanol combustion consumption by to the public,4.21671582,TJ,N2O,0.6,kg/TJ,2.530029492,kg +11a04fe6-2df9-390e-88e8-1707d246b661,SESCO,II.1.1,La Pampa,AR-L,annual,2012,bioetanol combustion consumption by to the public,5.747336369999999,TJ,CH4,10.0,kg/TJ,57.47336369999999,kg +520efe64-0cfd-3945-8cb6-87801449f4f5,SESCO,II.1.1,La Pampa,AR-L,annual,2012,bioetanol combustion consumption by to the public,5.747336369999999,TJ,N2O,0.6,kg/TJ,3.4484018219999997,kg +609fd2a5-7198-31ab-afae-19a0ef4a7bb0,SESCO,II.1.1,La Rioja,AR-F,annual,2012,bioetanol combustion consumption by to the public,5.453994059999999,TJ,CH4,10.0,kg/TJ,54.539940599999994,kg +8e1b878e-3141-396b-a00a-b95a0cb8c872,SESCO,II.1.1,La Rioja,AR-F,annual,2012,bioetanol combustion consumption by to the public,5.453994059999999,TJ,N2O,0.6,kg/TJ,3.2723964359999997,kg +88bb4641-fc5b-3013-b59e-7a86e6b2fbf4,SESCO,II.1.1,Mendoza,AR-M,annual,2012,bioetanol combustion consumption by to the public,14.596176509999998,TJ,CH4,10.0,kg/TJ,145.96176509999998,kg +6c5ae16d-7373-3b0d-a1c3-47b4f6dc61fe,SESCO,II.1.1,Mendoza,AR-M,annual,2012,bioetanol combustion consumption by to the public,14.596176509999998,TJ,N2O,0.6,kg/TJ,8.757705905999998,kg +07726f1f-0d8c-3a1b-818e-b8769010abce,SESCO,II.1.1,Misiones,AR-N,annual,2012,bioetanol combustion consumption by to the public,22.161723929999997,TJ,CH4,10.0,kg/TJ,221.61723929999997,kg +2d667b17-9538-3af6-af4c-4080529d146d,SESCO,II.1.1,Misiones,AR-N,annual,2012,bioetanol combustion consumption by to the public,22.161723929999997,TJ,N2O,0.6,kg/TJ,13.297034357999998,kg +f6b09f9a-4a50-3afa-b022-7f7d68eda6dd,SESCO,II.1.1,Neuquén,AR-Q,annual,2012,bioetanol combustion consumption by to the public,4.615507979999999,TJ,CH4,10.0,kg/TJ,46.155079799999996,kg +56c454f0-35c8-3055-a37f-3a77cf975a7f,SESCO,II.1.1,Neuquén,AR-Q,annual,2012,bioetanol combustion consumption by to the public,4.615507979999999,TJ,N2O,0.6,kg/TJ,2.7693047879999995,kg +ad5ac076-643f-3347-b788-bbbd8fc10659,SESCO,II.1.1,Rio Negro,AR-R,annual,2012,bioetanol combustion consumption by to the public,3.9393507599999995,TJ,CH4,10.0,kg/TJ,39.39350759999999,kg +3c003fe7-c5e0-337d-ba8a-edbe303eefe5,SESCO,II.1.1,Rio Negro,AR-R,annual,2012,bioetanol combustion consumption by to the public,3.9393507599999995,TJ,N2O,0.6,kg/TJ,2.3636104559999995,kg +b5ef171d-eda9-3a42-9626-265455fea431,SESCO,II.1.1,Salta,AR-A,annual,2012,bioetanol combustion consumption by to the public,6.34552461,TJ,CH4,10.0,kg/TJ,63.4552461,kg +18909917-532d-3a42-8be8-ee9a7048da6c,SESCO,II.1.1,Salta,AR-A,annual,2012,bioetanol combustion consumption by to the public,6.34552461,TJ,N2O,0.6,kg/TJ,3.8073147659999997,kg +eae8b968-cabb-3799-aae0-1748a485f039,SESCO,II.1.1,San Juan,AR-J,annual,2012,bioetanol combustion consumption by to the public,4.373292869999999,TJ,CH4,10.0,kg/TJ,43.732928699999995,kg +3780f829-115f-3e4e-a17b-ad5fae4961f0,SESCO,II.1.1,San Juan,AR-J,annual,2012,bioetanol combustion consumption by to the public,4.373292869999999,TJ,N2O,0.6,kg/TJ,2.6239757219999995,kg +3b629c5c-be49-3fb5-bfad-fc69747a326a,SESCO,II.1.1,San Luis,AR-D,annual,2012,bioetanol combustion consumption by to the public,0.30356774999999997,TJ,CH4,10.0,kg/TJ,3.0356775,kg +ac5fdcb2-5fbc-351e-9ab2-49e59a2ac2b6,SESCO,II.1.1,San Luis,AR-D,annual,2012,bioetanol combustion consumption by to the public,0.30356774999999997,TJ,N2O,0.6,kg/TJ,0.18214065,kg +8b0173e7-ea3e-3cb0-ac6c-49f0a120ca69,SESCO,II.1.1,Santa Fe,AR-S,annual,2012,bioetanol combustion consumption by to the public,63.35107443,TJ,CH4,10.0,kg/TJ,633.5107442999999,kg +bc74fdad-825a-3898-aaf7-f8c993626fbf,SESCO,II.1.1,Santa Fe,AR-S,annual,2012,bioetanol combustion consumption by to the public,63.35107443,TJ,N2O,0.6,kg/TJ,38.010644658,kg +b82d8a55-24d9-3cfb-8ef0-03770186cabd,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2012,bioetanol combustion consumption by to the public,7.12713168,TJ,CH4,10.0,kg/TJ,71.2713168,kg +92de953c-c8dc-33ba-9ae9-88089e0f7b14,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2012,bioetanol combustion consumption by to the public,7.12713168,TJ,N2O,0.6,kg/TJ,4.2762790079999995,kg +a040c2b7-58f6-3893-8e5e-e9fda7843927,SESCO,II.1.1,Tucuman,AR-T,annual,2012,bioetanol combustion consumption by to the public,16.57863369,TJ,CH4,10.0,kg/TJ,165.7863369,kg +d9afc3a9-87fc-383e-97fb-ca3d9836b6be,SESCO,II.1.1,Tucuman,AR-T,annual,2012,bioetanol combustion consumption by to the public,16.57863369,TJ,N2O,0.6,kg/TJ,9.947180214,kg +2bbba4c0-efc5-3b73-a256-c262d07cd11e,SESCO,II.1.1,Buenos Aires,AR-B,annual,2012,bioetanol combustion consumption by to the public,113.62764564,TJ,CH4,10.0,kg/TJ,1136.2764564,kg +969c3e96-bd60-3eef-9636-9f14f2d8ddba,SESCO,II.1.1,Buenos Aires,AR-B,annual,2012,bioetanol combustion consumption by to the public,113.62764564,TJ,N2O,0.6,kg/TJ,68.176587384,kg +aa655e38-1907-3c97-b8ea-0b4de1444b75,SESCO,II.1.1,Capital Federal,AR-C,annual,2012,bioetanol combustion consumption by to the public,49.270643549999996,TJ,CH4,10.0,kg/TJ,492.70643549999994,kg +3a0c0f25-4a18-3331-990a-52d316fbe73b,SESCO,II.1.1,Capital Federal,AR-C,annual,2012,bioetanol combustion consumption by to the public,49.270643549999996,TJ,N2O,0.6,kg/TJ,29.562386129999997,kg +adccb11d-c6ee-3685-be98-fb63d3ef4207,SESCO,II.1.1,Catamarca,AR-K,annual,2012,bioetanol combustion consumption by to the public,0.6077745899999999,TJ,CH4,10.0,kg/TJ,6.077745899999999,kg +db34a95e-548b-384f-9d82-f8244470bebf,SESCO,II.1.1,Catamarca,AR-K,annual,2012,bioetanol combustion consumption by to the public,0.6077745899999999,TJ,N2O,0.6,kg/TJ,0.3646647539999999,kg +fbffea95-f881-3dc3-9369-70fc1663f8bc,SESCO,II.1.1,Chaco,AR-H,annual,2012,bioetanol combustion consumption by to the public,4.749716879999999,TJ,CH4,10.0,kg/TJ,47.4971688,kg +07f00c8b-e32b-3b45-90a7-08b44b95defa,SESCO,II.1.1,Chaco,AR-H,annual,2012,bioetanol combustion consumption by to the public,4.749716879999999,TJ,N2O,0.6,kg/TJ,2.8498301279999994,kg +4197e16a-4c8e-352f-8f74-73dcd6ba2a84,SESCO,II.1.1,Chubut,AR-U,annual,2012,bioetanol combustion consumption by to the public,0.60202278,TJ,CH4,10.0,kg/TJ,6.0202278,kg +7e3719db-d646-3d42-8120-2799cfd001f0,SESCO,II.1.1,Chubut,AR-U,annual,2012,bioetanol combustion consumption by to the public,0.60202278,TJ,N2O,0.6,kg/TJ,0.361213668,kg +47324110-5823-3ac2-a83f-13834386f9b7,SESCO,II.1.1,Corrientes,AR-W,annual,2012,bioetanol combustion consumption by to the public,5.2213652999999995,TJ,CH4,10.0,kg/TJ,52.213652999999994,kg +cc3ea887-8b61-3bd3-8d49-ad75c78c9bd3,SESCO,II.1.1,Corrientes,AR-W,annual,2012,bioetanol combustion consumption by to the public,5.2213652999999995,TJ,N2O,0.6,kg/TJ,3.13281918,kg +f8f5e708-90c8-34a8-8e66-6a71933edb69,SESCO,II.1.1,Córdoba,AR-X,annual,2012,bioetanol combustion consumption by to the public,19.95622434,TJ,CH4,10.0,kg/TJ,199.5622434,kg +ee76e0d8-49d1-3a84-9b99-6172d6ac8f5a,SESCO,II.1.1,Córdoba,AR-X,annual,2012,bioetanol combustion consumption by to the public,19.95622434,TJ,N2O,0.6,kg/TJ,11.973734603999999,kg +7c8eec7e-0bde-3fa0-8191-32aa9de50aab,SESCO,II.1.1,Entre Rios,AR-E,annual,2012,bioetanol combustion consumption by to the public,7.025516369999999,TJ,CH4,10.0,kg/TJ,70.2551637,kg +5d86dc32-1d24-3026-af5c-2216f93fc9bd,SESCO,II.1.1,Entre Rios,AR-E,annual,2012,bioetanol combustion consumption by to the public,7.025516369999999,TJ,N2O,0.6,kg/TJ,4.215309821999999,kg +ed36e6b5-12ca-3461-9e47-4f81b40b0210,SESCO,II.1.1,Formosa,AR-P,annual,2012,bioetanol combustion consumption by to the public,2.6841779999999997,TJ,CH4,10.0,kg/TJ,26.841779999999996,kg +860631f6-61e3-34c0-9617-b97069a1f0bf,SESCO,II.1.1,Formosa,AR-P,annual,2012,bioetanol combustion consumption by to the public,2.6841779999999997,TJ,N2O,0.6,kg/TJ,1.6105067999999998,kg +b5cd650a-424e-3eff-b442-bbdeeeb3b421,SESCO,II.1.1,Jujuy,AR-Y,annual,2012,bioetanol combustion consumption by to the public,1.1573919899999998,TJ,CH4,10.0,kg/TJ,11.573919899999998,kg +07eeaebd-6412-3d48-ae59-8afc4edc5b26,SESCO,II.1.1,Jujuy,AR-Y,annual,2012,bioetanol combustion consumption by to the public,1.1573919899999998,TJ,N2O,0.6,kg/TJ,0.6944351939999999,kg +66e38468-07df-3dbd-81eb-b6897f67b15c,SESCO,II.1.1,La Pampa,AR-L,annual,2012,bioetanol combustion consumption by to the public,2.2495968,TJ,CH4,10.0,kg/TJ,22.495967999999998,kg +9acbdf4d-9aa5-338e-8a65-ca3b7e5e0e85,SESCO,II.1.1,La Pampa,AR-L,annual,2012,bioetanol combustion consumption by to the public,2.2495968,TJ,N2O,0.6,kg/TJ,1.34975808,kg +702069ae-9663-3921-97bd-d2ad8123d268,SESCO,II.1.1,La Rioja,AR-F,annual,2012,bioetanol combustion consumption by to the public,1.3727653199999998,TJ,CH4,10.0,kg/TJ,13.727653199999999,kg +a03b6fd6-7367-3b82-aea4-859df53afe8f,SESCO,II.1.1,La Rioja,AR-F,annual,2012,bioetanol combustion consumption by to the public,1.3727653199999998,TJ,N2O,0.6,kg/TJ,0.8236591919999999,kg +d869926b-e1f6-337b-932f-7b1871cbf7f7,SESCO,II.1.1,Mendoza,AR-M,annual,2012,bioetanol combustion consumption by to the public,5.25395889,TJ,CH4,10.0,kg/TJ,52.5395889,kg +7baf598c-343a-3373-bee4-7440bf32f6fb,SESCO,II.1.1,Mendoza,AR-M,annual,2012,bioetanol combustion consumption by to the public,5.25395889,TJ,N2O,0.6,kg/TJ,3.152375334,kg +83430c49-7b7c-30eb-9cce-9abcb747bcac,SESCO,II.1.1,Misiones,AR-N,annual,2012,bioetanol combustion consumption by to the public,3.78916461,TJ,CH4,10.0,kg/TJ,37.891646099999996,kg +5508c6bf-60f8-367b-88df-8c14f2dfbc27,SESCO,II.1.1,Misiones,AR-N,annual,2012,bioetanol combustion consumption by to the public,3.78916461,TJ,N2O,0.6,kg/TJ,2.273498766,kg +da86f360-b460-3add-a9d1-5d196b84ad5d,SESCO,II.1.1,Neuquén,AR-Q,annual,2012,bioetanol combustion consumption by to the public,1.2078801,TJ,CH4,10.0,kg/TJ,12.078800999999999,kg +1fc37899-b375-3796-bce0-51a94bb900a0,SESCO,II.1.1,Neuquén,AR-Q,annual,2012,bioetanol combustion consumption by to the public,1.2078801,TJ,N2O,0.6,kg/TJ,0.7247280599999999,kg +d5ec46cd-15bb-3cc5-8d79-d1758649414f,SESCO,II.1.1,Rio Negro,AR-R,annual,2012,bioetanol combustion consumption by to the public,1.44817794,TJ,CH4,10.0,kg/TJ,14.4817794,kg +39cc5d23-c455-3913-b6f2-560680f7a03e,SESCO,II.1.1,Rio Negro,AR-R,annual,2012,bioetanol combustion consumption by to the public,1.44817794,TJ,N2O,0.6,kg/TJ,0.868906764,kg +4e9b6d56-aff2-3070-bc30-6d7cb32874a0,SESCO,II.1.1,Salta,AR-A,annual,2012,bioetanol combustion consumption by to the public,1.7760311099999997,TJ,CH4,10.0,kg/TJ,17.760311099999996,kg +30c37d2a-996a-3fa2-96fb-5aa7d35a5ccd,SESCO,II.1.1,Salta,AR-A,annual,2012,bioetanol combustion consumption by to the public,1.7760311099999997,TJ,N2O,0.6,kg/TJ,1.0656186659999998,kg +9faa4db2-f4bd-3d3a-a8a3-1821aafb540e,SESCO,II.1.1,San Juan,AR-J,annual,2012,bioetanol combustion consumption by to the public,0.6972471899999999,TJ,CH4,10.0,kg/TJ,6.972471899999999,kg +6d03d807-7c0d-3359-b85a-d6b82a5b7941,SESCO,II.1.1,San Juan,AR-J,annual,2012,bioetanol combustion consumption by to the public,0.6972471899999999,TJ,N2O,0.6,kg/TJ,0.41834831399999994,kg +501e502d-a2af-3729-beca-8c3c20a2ceb1,SESCO,II.1.1,San Luis,AR-D,annual,2012,bioetanol combustion consumption by to the public,0.27736506,TJ,CH4,10.0,kg/TJ,2.7736506,kg +69dce5e2-d20c-37b7-a239-a64ab1d3e79d,SESCO,II.1.1,San Luis,AR-D,annual,2012,bioetanol combustion consumption by to the public,0.27736506,TJ,N2O,0.6,kg/TJ,0.166419036,kg +af137f1c-596f-3968-b354-09cf7b444fda,SESCO,II.1.1,Santa Fe,AR-S,annual,2012,bioetanol combustion consumption by to the public,25.33927941,TJ,CH4,10.0,kg/TJ,253.3927941,kg +84918ed3-19f3-3176-9780-d51f4ad5ac48,SESCO,II.1.1,Santa Fe,AR-S,annual,2012,bioetanol combustion consumption by to the public,25.33927941,TJ,N2O,0.6,kg/TJ,15.203567646,kg +c56e2085-bb26-389e-8eb4-d8ea70d4da56,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2012,bioetanol combustion consumption by to the public,2.3492948399999998,TJ,CH4,10.0,kg/TJ,23.492948399999996,kg +2974dea7-f730-376e-80a6-8854a7d31257,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2012,bioetanol combustion consumption by to the public,2.3492948399999998,TJ,N2O,0.6,kg/TJ,1.409576904,kg +29106317-a1d0-323c-927d-5c5c25ce1b34,SESCO,II.1.1,Tucuman,AR-T,annual,2012,bioetanol combustion consumption by to the public,5.16959901,TJ,CH4,10.0,kg/TJ,51.695990099999996,kg +13c8e603-0590-3d0a-badc-ccfb83755390,SESCO,II.1.1,Tucuman,AR-T,annual,2012,bioetanol combustion consumption by to the public,5.16959901,TJ,N2O,0.6,kg/TJ,3.1017594059999998,kg +b04ac74f-5611-3e3c-9e59-67dde107f64e,SESCO,II.5.1,Buenos Aires,AR-B,annual,2012,bioetanol combustion consumption by agriculture machines,0.09330714,TJ,CH4,10.0,kg/TJ,0.9330714,kg +9df9b8db-b20a-36bd-8b8a-cbc11c3b39a5,SESCO,II.5.1,Buenos Aires,AR-B,annual,2012,bioetanol combustion consumption by agriculture machines,0.09330714,TJ,N2O,0.6,kg/TJ,0.055984283999999995,kg +a1dad0aa-00b3-348c-8d8f-3d245ba8f136,SESCO,II.5.1,Chubut,AR-U,annual,2012,bioetanol combustion consumption by agriculture machines,0.16488521999999997,TJ,CH4,10.0,kg/TJ,1.6488521999999997,kg +93b4131b-d10d-3665-9788-6482369f677d,SESCO,II.5.1,Chubut,AR-U,annual,2012,bioetanol combustion consumption by agriculture machines,0.16488521999999997,TJ,N2O,0.6,kg/TJ,0.09893113199999998,kg +a5fa3882-8874-3d18-a8cd-2641c37bf91a,SESCO,II.5.1,Corrientes,AR-W,annual,2012,bioetanol combustion consumption by agriculture machines,0.014059979999999998,TJ,CH4,10.0,kg/TJ,0.14059979999999997,kg +67c922ef-95cf-37b7-8e8c-3ac22d9c34cc,SESCO,II.5.1,Corrientes,AR-W,annual,2012,bioetanol combustion consumption by agriculture machines,0.014059979999999998,TJ,N2O,0.6,kg/TJ,0.008435987999999998,kg +5bf754ee-c1d8-3b9b-bca3-7c8f046b221f,SESCO,II.5.1,Entre Rios,AR-E,annual,2012,bioetanol combustion consumption by agriculture machines,0.13484799,TJ,CH4,10.0,kg/TJ,1.3484799,kg +b96b695b-bf46-3d69-9854-9181a0962544,SESCO,II.5.1,Entre Rios,AR-E,annual,2012,bioetanol combustion consumption by agriculture machines,0.13484799,TJ,N2O,0.6,kg/TJ,0.08090879399999999,kg +5f3d644e-3b30-38db-a49f-886ba5ecbd35,SESCO,II.5.1,Jujuy,AR-Y,annual,2012,bioetanol combustion consumption by agriculture machines,0.010225439999999999,TJ,CH4,10.0,kg/TJ,0.1022544,kg +acb571aa-4bdc-3a61-ab21-1e9b4461b058,SESCO,II.5.1,Jujuy,AR-Y,annual,2012,bioetanol combustion consumption by agriculture machines,0.010225439999999999,TJ,N2O,0.6,kg/TJ,0.006135263999999999,kg +fef6ec61-5b3c-329a-9f77-0e5488fb2614,SESCO,II.5.1,Salta,AR-A,annual,2012,bioetanol combustion consumption by agriculture machines,0.0038345399999999996,TJ,CH4,10.0,kg/TJ,0.038345399999999995,kg +510fb3a3-1fb6-360d-a5a5-f80f9cf3a773,SESCO,II.5.1,Salta,AR-A,annual,2012,bioetanol combustion consumption by agriculture machines,0.0038345399999999996,TJ,N2O,0.6,kg/TJ,0.0023007239999999997,kg +51f03009-7995-30b1-a6a8-8729547fa5ca,SESCO,II.5.1,Santa Fe,AR-S,annual,2012,bioetanol combustion consumption by agriculture machines,1.6584385499999998,TJ,CH4,10.0,kg/TJ,16.5843855,kg +45c1032f-bdc5-37fb-9221-d02e9760a0ba,SESCO,II.5.1,Santa Fe,AR-S,annual,2012,bioetanol combustion consumption by agriculture machines,1.6584385499999998,TJ,N2O,0.6,kg/TJ,0.9950631299999999,kg +da886a95-e7ca-3eae-bd59-514c122cb427,SESCO,II.5.1,Santiago del Estero,AR-G,annual,2012,bioetanol combustion consumption by agriculture machines,0.009586349999999999,TJ,CH4,10.0,kg/TJ,0.09586349999999999,kg +0462b924-4943-36bb-80f6-06bed45456fa,SESCO,II.5.1,Santiago del Estero,AR-G,annual,2012,bioetanol combustion consumption by agriculture machines,0.009586349999999999,TJ,N2O,0.6,kg/TJ,0.005751809999999999,kg +78a514d5-efb8-3371-9e30-1060c4171bd1,SESCO,II.5.1,Buenos Aires,AR-B,annual,2012,bioetanol combustion consumption by agriculture machines,0.019172699999999997,TJ,CH4,10.0,kg/TJ,0.19172699999999998,kg +8005a4c2-c186-3fd0-ac83-fce585976a19,SESCO,II.5.1,Buenos Aires,AR-B,annual,2012,bioetanol combustion consumption by agriculture machines,0.019172699999999997,TJ,N2O,0.6,kg/TJ,0.011503619999999997,kg +028f1cb8-53b8-3471-a1e6-92f480195ee1,SESCO,II.5.1,Santa Fe,AR-S,annual,2012,bioetanol combustion consumption by agriculture machines,0.023646329999999997,TJ,CH4,10.0,kg/TJ,0.23646329999999996,kg +0ed95317-8ae2-3a0c-ac67-684a53cc076a,SESCO,II.5.1,Santa Fe,AR-S,annual,2012,bioetanol combustion consumption by agriculture machines,0.023646329999999997,TJ,N2O,0.6,kg/TJ,0.014187797999999998,kg +2f068e02-12b6-3937-97c9-dba13437e4ad,SESCO,II.1.1,Buenos Aires,AR-B,annual,2012,bioetanol combustion consumption by to the public,0.045375389999999995,TJ,CH4,10.0,kg/TJ,0.45375389999999993,kg +99c1e360-3b45-3d4d-8846-c90557bc30ff,SESCO,II.1.1,Buenos Aires,AR-B,annual,2012,bioetanol combustion consumption by to the public,0.045375389999999995,TJ,N2O,0.6,kg/TJ,0.027225233999999997,kg +2e1bf3ec-c36c-3825-aa7a-0ae9b76183b9,SESCO,II.1.1,Capital Federal,AR-C,annual,2012,bioetanol combustion consumption by to the public,0.029398139999999996,TJ,CH4,10.0,kg/TJ,0.29398139999999995,kg +6bcef442-bb9b-3dc3-a91a-c279ae5e2320,SESCO,II.1.1,Capital Federal,AR-C,annual,2012,bioetanol combustion consumption by to the public,0.029398139999999996,TJ,N2O,0.6,kg/TJ,0.017638883999999997,kg +70032bdf-3396-3e27-b7b7-0afc66fecad9,SESCO,II.1.1,Córdoba,AR-X,annual,2012,bioetanol combustion consumption by to the public,0.0127818,TJ,CH4,10.0,kg/TJ,0.127818,kg +5d02d840-b899-3c18-ae39-9f02f2fc726c,SESCO,II.1.1,Córdoba,AR-X,annual,2012,bioetanol combustion consumption by to the public,0.0127818,TJ,N2O,0.6,kg/TJ,0.007669079999999999,kg +111340e8-289f-345b-a43c-d8bab93af8e0,SESCO,II.1.1,Buenos Aires,AR-B,annual,2012,bioetanol combustion consumption by to the public,684.7363641599999,TJ,CH4,10.0,kg/TJ,6847.363641599999,kg +f7e37394-3bb5-3b85-8be8-72a284c3a2f9,SESCO,II.1.1,Buenos Aires,AR-B,annual,2012,bioetanol combustion consumption by to the public,684.7363641599999,TJ,N2O,0.6,kg/TJ,410.8418184959999,kg +af41656e-7ba5-3973-9c1c-f8f6cb04e479,SESCO,II.1.1,Capital Federal,AR-C,annual,2012,bioetanol combustion consumption by to the public,142.94334302999997,TJ,CH4,10.0,kg/TJ,1429.4334302999996,kg +a45dbed9-ad3c-3dd7-98d5-72f7a1017bc9,SESCO,II.1.1,Capital Federal,AR-C,annual,2012,bioetanol combustion consumption by to the public,142.94334302999997,TJ,N2O,0.6,kg/TJ,85.76600581799998,kg +bb708961-d9df-3116-bc5d-84b8aac924db,SESCO,II.1.1,Catamarca,AR-K,annual,2012,bioetanol combustion consumption by to the public,11.152120499999999,TJ,CH4,10.0,kg/TJ,111.52120499999998,kg +c3b43f7d-302d-3199-88b9-6a2b6e8e3c7c,SESCO,II.1.1,Catamarca,AR-K,annual,2012,bioetanol combustion consumption by to the public,11.152120499999999,TJ,N2O,0.6,kg/TJ,6.691272299999999,kg +dd00c466-e354-37c2-b326-27a1e24402fc,SESCO,II.1.1,Chaco,AR-H,annual,2012,bioetanol combustion consumption by to the public,36.726585029999995,TJ,CH4,10.0,kg/TJ,367.26585029999995,kg +ff457d77-0b3b-34cc-b6ac-045624e3ac51,SESCO,II.1.1,Chaco,AR-H,annual,2012,bioetanol combustion consumption by to the public,36.726585029999995,TJ,N2O,0.6,kg/TJ,22.035951017999995,kg +3762e4be-62e8-35ab-9fc6-85e23ca46368,SESCO,II.1.1,Chubut,AR-U,annual,2012,bioetanol combustion consumption by to the public,67.25335797,TJ,CH4,10.0,kg/TJ,672.5335797,kg +96da2829-1d8c-3a96-ba53-8f4f71556dfd,SESCO,II.1.1,Chubut,AR-U,annual,2012,bioetanol combustion consumption by to the public,67.25335797,TJ,N2O,0.6,kg/TJ,40.352014782,kg +d8e7dc7f-8b95-3c45-a567-76658f8e173c,SESCO,II.1.1,Corrientes,AR-W,annual,2012,bioetanol combustion consumption by to the public,41.37852114,TJ,CH4,10.0,kg/TJ,413.7852114,kg +082a15fe-2afc-3fbb-bb18-88fd02d78e4d,SESCO,II.1.1,Corrientes,AR-W,annual,2012,bioetanol combustion consumption by to the public,41.37852114,TJ,N2O,0.6,kg/TJ,24.827112683999996,kg +be58ffdf-67e7-3666-9e35-93c7cfcf97cf,SESCO,II.1.1,Córdoba,AR-X,annual,2012,bioetanol combustion consumption by to the public,170.63958635999998,TJ,CH4,10.0,kg/TJ,1706.3958635999998,kg +67023a80-fd8a-367b-8eb8-d61de736cb3a,SESCO,II.1.1,Córdoba,AR-X,annual,2012,bioetanol combustion consumption by to the public,170.63958635999998,TJ,N2O,0.6,kg/TJ,102.38375181599999,kg +96c3d8cd-8cef-39d9-9433-84a80758f040,SESCO,II.1.1,Entre Rios,AR-E,annual,2012,bioetanol combustion consumption by to the public,49.16838914999999,TJ,CH4,10.0,kg/TJ,491.6838914999999,kg +d4d59820-d46c-3137-86cc-290148b5b8c2,SESCO,II.1.1,Entre Rios,AR-E,annual,2012,bioetanol combustion consumption by to the public,49.16838914999999,TJ,N2O,0.6,kg/TJ,29.50103348999999,kg +17683d93-19b0-38d6-bc9d-854a4e36ce3a,SESCO,II.1.1,Formosa,AR-P,annual,2012,bioetanol combustion consumption by to the public,14.910608789999998,TJ,CH4,10.0,kg/TJ,149.10608789999998,kg +70c60ed5-e62b-3612-abac-9b58954a7595,SESCO,II.1.1,Formosa,AR-P,annual,2012,bioetanol combustion consumption by to the public,14.910608789999998,TJ,N2O,0.6,kg/TJ,8.946365273999998,kg +bc3ce2e3-3f7a-3b60-837d-26b2164c31a4,SESCO,II.1.1,Jujuy,AR-Y,annual,2012,bioetanol combustion consumption by to the public,17.9648199,TJ,CH4,10.0,kg/TJ,179.64819899999998,kg +76aff9a3-ed9d-37be-b741-d5931b99c41d,SESCO,II.1.1,Jujuy,AR-Y,annual,2012,bioetanol combustion consumption by to the public,17.9648199,TJ,N2O,0.6,kg/TJ,10.77889194,kg +295b9a7c-84db-30a9-bec9-f19d3d4dee48,SESCO,II.1.1,La Pampa,AR-L,annual,2012,bioetanol combustion consumption by to the public,29.524040729999996,TJ,CH4,10.0,kg/TJ,295.24040729999996,kg +a7647a27-6d02-3181-80c8-0bdf971e47b6,SESCO,II.1.1,La Pampa,AR-L,annual,2012,bioetanol combustion consumption by to the public,29.524040729999996,TJ,N2O,0.6,kg/TJ,17.714424437999998,kg +472f2032-f768-35a9-9bff-a97d3c8f2515,SESCO,II.1.1,La Rioja,AR-F,annual,2012,bioetanol combustion consumption by to the public,15.276168269999998,TJ,CH4,10.0,kg/TJ,152.76168269999997,kg +9d29dae1-2d8f-397f-b0db-4cd4de42dd0d,SESCO,II.1.1,La Rioja,AR-F,annual,2012,bioetanol combustion consumption by to the public,15.276168269999998,TJ,N2O,0.6,kg/TJ,9.165700961999999,kg +a7035361-0604-3a47-a083-850fa079c895,SESCO,II.1.1,Mendoza,AR-M,annual,2012,bioetanol combustion consumption by to the public,86.71428756,TJ,CH4,10.0,kg/TJ,867.1428756,kg +0cde2adb-1840-3f44-8f56-efb9376a671f,SESCO,II.1.1,Mendoza,AR-M,annual,2012,bioetanol combustion consumption by to the public,86.71428756,TJ,N2O,0.6,kg/TJ,52.028572536,kg +27943592-d02a-3430-ad72-d133b5e2e36a,SESCO,II.1.1,Misiones,AR-N,annual,2012,bioetanol combustion consumption by to the public,51.39497870999999,TJ,CH4,10.0,kg/TJ,513.9497870999999,kg +5f6e7d86-1ce7-3fce-ac64-e61a0d5a1a4a,SESCO,II.1.1,Misiones,AR-N,annual,2012,bioetanol combustion consumption by to the public,51.39497870999999,TJ,N2O,0.6,kg/TJ,30.83698722599999,kg +45e26085-b8e0-35ee-a269-8cf53bded976,SESCO,II.1.1,Neuquén,AR-Q,annual,2012,bioetanol combustion consumption by to the public,53.51931387,TJ,CH4,10.0,kg/TJ,535.1931387,kg +ac155550-2b8c-3caa-81c4-6311a727b0bd,SESCO,II.1.1,Neuquén,AR-Q,annual,2012,bioetanol combustion consumption by to the public,53.51931387,TJ,N2O,0.6,kg/TJ,32.111588321999996,kg +1135427b-cc61-3c40-967c-842bab0cff56,SESCO,II.1.1,Rio Negro,AR-R,annual,2012,bioetanol combustion consumption by to the public,51.66211833,TJ,CH4,10.0,kg/TJ,516.6211833,kg +b3a5404e-e1a6-3fcb-bce9-9575a5c30577,SESCO,II.1.1,Rio Negro,AR-R,annual,2012,bioetanol combustion consumption by to the public,51.66211833,TJ,N2O,0.6,kg/TJ,30.997270997999998,kg +fa30e247-4759-331c-8c3c-f9240096ef3b,SESCO,II.1.1,Salta,AR-A,annual,2012,bioetanol combustion consumption by to the public,40.243497299999994,TJ,CH4,10.0,kg/TJ,402.43497299999996,kg +6041c035-2a78-3784-b2f8-41a7c5e93a0f,SESCO,II.1.1,Salta,AR-A,annual,2012,bioetanol combustion consumption by to the public,40.243497299999994,TJ,N2O,0.6,kg/TJ,24.146098379999994,kg +ca5d2774-dc23-37bb-9303-acb0df27038f,SESCO,II.1.1,San Juan,AR-J,annual,2012,bioetanol combustion consumption by to the public,25.92468585,TJ,CH4,10.0,kg/TJ,259.2468585,kg +bea6348c-dc75-3ab2-afd3-669a7d2575dd,SESCO,II.1.1,San Juan,AR-J,annual,2012,bioetanol combustion consumption by to the public,25.92468585,TJ,N2O,0.6,kg/TJ,15.554811509999999,kg +5ad0d0bb-6952-3562-8c44-104bb857ba86,SESCO,II.1.1,San Luis,AR-D,annual,2012,bioetanol combustion consumption by to the public,21.440191319999997,TJ,CH4,10.0,kg/TJ,214.40191319999997,kg +b163852b-c6b8-3fba-8d51-f9b9401f159b,SESCO,II.1.1,San Luis,AR-D,annual,2012,bioetanol combustion consumption by to the public,21.440191319999997,TJ,N2O,0.6,kg/TJ,12.864114791999997,kg +85759f73-7250-301d-87d1-327eefb6ea90,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2012,bioetanol combustion consumption by to the public,47.94133634999999,TJ,CH4,10.0,kg/TJ,479.41336349999995,kg +42089089-adce-31dc-be47-7bf409e7e58e,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2012,bioetanol combustion consumption by to the public,47.94133634999999,TJ,N2O,0.6,kg/TJ,28.764801809999994,kg +91780f50-44cb-3d6c-890c-c1b4dd0d9fe6,SESCO,II.1.1,Santa Fe,AR-S,annual,2012,bioetanol combustion consumption by to the public,124.19819423999999,TJ,CH4,10.0,kg/TJ,1241.9819424,kg +4e91469d-6f2a-3208-b624-c832217d8acf,SESCO,II.1.1,Santa Fe,AR-S,annual,2012,bioetanol combustion consumption by to the public,124.19819423999999,TJ,N2O,0.6,kg/TJ,74.51891654399999,kg +8f926e91-bc64-3f94-a5bf-b5209c29e502,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2012,bioetanol combustion consumption by to the public,18.185945039999996,TJ,CH4,10.0,kg/TJ,181.85945039999996,kg +630d6754-75a5-3ae9-9840-d6b6a8c5910d,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2012,bioetanol combustion consumption by to the public,18.185945039999996,TJ,N2O,0.6,kg/TJ,10.911567023999998,kg +791b7a1a-4b42-32bd-b644-cf685d95134b,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2012,bioetanol combustion consumption by to the public,35.213859,TJ,CH4,10.0,kg/TJ,352.13859,kg +523c7577-595c-3150-b244-494c6af604c6,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2012,bioetanol combustion consumption by to the public,35.213859,TJ,N2O,0.6,kg/TJ,21.128315399999998,kg +e71d487d-004b-328a-8b4d-915c231d8fcf,SESCO,II.1.1,Tucuman,AR-T,annual,2012,bioetanol combustion consumption by to the public,34.17725502,TJ,CH4,10.0,kg/TJ,341.77255019999996,kg +f79174ca-627c-33b7-8e32-5e0fcbd0c5d0,SESCO,II.1.1,Tucuman,AR-T,annual,2012,bioetanol combustion consumption by to the public,34.17725502,TJ,N2O,0.6,kg/TJ,20.506353011999998,kg +626bd6b2-ebec-3f9d-9553-0056b7b7660b,SESCO,II.1.1,Buenos Aires,AR-B,annual,2012,bioetanol combustion consumption by to the public,267.6572829,TJ,CH4,10.0,kg/TJ,2676.5728289999997,kg +12139fbc-f218-3a4d-ab21-66e12034cefa,SESCO,II.1.1,Buenos Aires,AR-B,annual,2012,bioetanol combustion consumption by to the public,267.6572829,TJ,N2O,0.6,kg/TJ,160.59436974,kg +a35d182d-13d7-3f21-ba01-f5fd51fecf7f,SESCO,II.1.1,Capital Federal,AR-C,annual,2012,bioetanol combustion consumption by to the public,56.8662282,TJ,CH4,10.0,kg/TJ,568.662282,kg +a5cab2c4-c824-31f1-a181-d669bbf3628a,SESCO,II.1.1,Capital Federal,AR-C,annual,2012,bioetanol combustion consumption by to the public,56.8662282,TJ,N2O,0.6,kg/TJ,34.11973692,kg +b25ae136-9250-36c3-a0e7-4e16cda0265f,SESCO,II.1.1,Catamarca,AR-K,annual,2012,bioetanol combustion consumption by to the public,4.03777062,TJ,CH4,10.0,kg/TJ,40.3777062,kg +d28bebe6-6e10-3390-94ad-856493e9814c,SESCO,II.1.1,Catamarca,AR-K,annual,2012,bioetanol combustion consumption by to the public,4.03777062,TJ,N2O,0.6,kg/TJ,2.422662372,kg +6fa67767-6306-38ff-8101-41a683b5307a,SESCO,II.1.1,Chaco,AR-H,annual,2012,bioetanol combustion consumption by to the public,15.001359569999998,TJ,CH4,10.0,kg/TJ,150.0135957,kg +74a6f6c6-f911-367a-9c60-30b28199ce8b,SESCO,II.1.1,Chaco,AR-H,annual,2012,bioetanol combustion consumption by to the public,15.001359569999998,TJ,N2O,0.6,kg/TJ,9.000815741999999,kg +1dc2314f-9f18-38b8-9e85-6bc25277a9d7,SESCO,II.1.1,Chubut,AR-U,annual,2012,bioetanol combustion consumption by to the public,19.40405058,TJ,CH4,10.0,kg/TJ,194.0405058,kg +f64cc137-9d64-31f6-8e7d-0b8e14e3acdc,SESCO,II.1.1,Chubut,AR-U,annual,2012,bioetanol combustion consumption by to the public,19.40405058,TJ,N2O,0.6,kg/TJ,11.642430348,kg +c9d0a94d-5f7f-342b-bfdd-1d88c3fd3b80,SESCO,II.1.1,Corrientes,AR-W,annual,2012,bioetanol combustion consumption by to the public,13.379349149999998,TJ,CH4,10.0,kg/TJ,133.7934915,kg +ca5a820f-66c5-31cd-905b-f0078b5298a4,SESCO,II.1.1,Corrientes,AR-W,annual,2012,bioetanol combustion consumption by to the public,13.379349149999998,TJ,N2O,0.6,kg/TJ,8.027609489999998,kg +24bf3f6d-ddff-3274-ba4c-ac8544c9b3f6,SESCO,II.1.1,Córdoba,AR-X,annual,2012,bioetanol combustion consumption by to the public,68.22157932,TJ,CH4,10.0,kg/TJ,682.2157932,kg +81c47a17-5865-34ca-add9-f0b6595b1a3b,SESCO,II.1.1,Córdoba,AR-X,annual,2012,bioetanol combustion consumption by to the public,68.22157932,TJ,N2O,0.6,kg/TJ,40.932947592,kg +ed1df8ff-f7c1-3ba0-b40c-ac8eb1a70b56,SESCO,II.1.1,Entre Rios,AR-E,annual,2012,bioetanol combustion consumption by to the public,21.98341782,TJ,CH4,10.0,kg/TJ,219.8341782,kg +43475a13-6bdc-35b8-9200-b624a76dfe1e,SESCO,II.1.1,Entre Rios,AR-E,annual,2012,bioetanol combustion consumption by to the public,21.98341782,TJ,N2O,0.6,kg/TJ,13.190050692,kg +28fd84f3-f9fe-374c-ba3e-9a376f40a08a,SESCO,II.1.1,Formosa,AR-P,annual,2012,bioetanol combustion consumption by to the public,4.5778016699999995,TJ,CH4,10.0,kg/TJ,45.778016699999995,kg +7912957b-7de9-3730-a99c-658f5db2ceff,SESCO,II.1.1,Formosa,AR-P,annual,2012,bioetanol combustion consumption by to the public,4.5778016699999995,TJ,N2O,0.6,kg/TJ,2.7466810019999994,kg +0e8e59e3-ea2b-3a56-99ec-6685df1548c9,SESCO,II.1.1,Jujuy,AR-Y,annual,2012,bioetanol combustion consumption by to the public,5.82658353,TJ,CH4,10.0,kg/TJ,58.2658353,kg +e3eca777-321f-3626-8217-899a51c1cf4c,SESCO,II.1.1,Jujuy,AR-Y,annual,2012,bioetanol combustion consumption by to the public,5.82658353,TJ,N2O,0.6,kg/TJ,3.4959501179999997,kg +88a0df83-78dc-3066-b0e8-794609f283dc,SESCO,II.1.1,La Pampa,AR-L,annual,2012,bioetanol combustion consumption by to the public,11.14636869,TJ,CH4,10.0,kg/TJ,111.4636869,kg +0ce298c0-c8cf-3aad-8faf-6cb1001969fa,SESCO,II.1.1,La Pampa,AR-L,annual,2012,bioetanol combustion consumption by to the public,11.14636869,TJ,N2O,0.6,kg/TJ,6.6878212139999995,kg +45bd30fc-ac21-3b1b-8358-68467d3ba788,SESCO,II.1.1,La Rioja,AR-F,annual,2012,bioetanol combustion consumption by to the public,5.9633487899999995,TJ,CH4,10.0,kg/TJ,59.63348789999999,kg +6528c433-cb90-345f-aeaf-4621eea5f4f9,SESCO,II.1.1,La Rioja,AR-F,annual,2012,bioetanol combustion consumption by to the public,5.9633487899999995,TJ,N2O,0.6,kg/TJ,3.578009274,kg +d5a5e364-d97c-30cf-911f-4d6077a5069b,SESCO,II.1.1,Mendoza,AR-M,annual,2012,bioetanol combustion consumption by to the public,33.44613606,TJ,CH4,10.0,kg/TJ,334.46136060000003,kg +034f2493-27f4-3d8b-8d25-63b9a8e45fb3,SESCO,II.1.1,Mendoza,AR-M,annual,2012,bioetanol combustion consumption by to the public,33.44613606,TJ,N2O,0.6,kg/TJ,20.067681636,kg +2b6a7ad6-12a4-3bf3-8dca-8964c0f4c441,SESCO,II.1.1,Misiones,AR-N,annual,2012,bioetanol combustion consumption by to the public,16.9870122,TJ,CH4,10.0,kg/TJ,169.87012199999998,kg +5f03c8af-16ae-35dd-9acf-5afb199c407f,SESCO,II.1.1,Misiones,AR-N,annual,2012,bioetanol combustion consumption by to the public,16.9870122,TJ,N2O,0.6,kg/TJ,10.19220732,kg +4ed20c14-1b5c-3385-90bf-8389c7f1a07d,SESCO,II.1.1,Neuquén,AR-Q,annual,2012,bioetanol combustion consumption by to the public,17.385165269999998,TJ,CH4,10.0,kg/TJ,173.8516527,kg +e4b66c70-cb0e-31e6-8ef3-9473dbc90c29,SESCO,II.1.1,Neuquén,AR-Q,annual,2012,bioetanol combustion consumption by to the public,17.385165269999998,TJ,N2O,0.6,kg/TJ,10.431099161999999,kg +31061a8c-606c-3ff9-9621-b282ecb6696f,SESCO,II.1.1,Rio Negro,AR-R,annual,2012,bioetanol combustion consumption by to the public,16.62976089,TJ,CH4,10.0,kg/TJ,166.2976089,kg +b83f604e-856c-38c5-b38b-e9a4af2f101b,SESCO,II.1.1,Rio Negro,AR-R,annual,2012,bioetanol combustion consumption by to the public,16.62976089,TJ,N2O,0.6,kg/TJ,9.977856533999999,kg +d9061bc5-bc6f-37ca-aee7-68cccb8843be,SESCO,II.1.1,Salta,AR-A,annual,2012,bioetanol combustion consumption by to the public,14.73613722,TJ,CH4,10.0,kg/TJ,147.3613722,kg +d3320e51-ac1a-3cd2-9eed-5546d8e4921d,SESCO,II.1.1,Salta,AR-A,annual,2012,bioetanol combustion consumption by to the public,14.73613722,TJ,N2O,0.6,kg/TJ,8.841682332,kg +dd3624a3-2b17-3942-82f9-52733c65490a,SESCO,II.1.1,San Juan,AR-J,annual,2012,bioetanol combustion consumption by to the public,10.674720269999998,TJ,CH4,10.0,kg/TJ,106.74720269999997,kg +956c11e6-e150-31fe-b806-16c2a50316f0,SESCO,II.1.1,San Juan,AR-J,annual,2012,bioetanol combustion consumption by to the public,10.674720269999998,TJ,N2O,0.6,kg/TJ,6.404832161999999,kg +adcc71e5-75a7-3003-ad24-09bc532c7e0f,SESCO,II.1.1,San Luis,AR-D,annual,2012,bioetanol combustion consumption by to the public,10.055442059999999,TJ,CH4,10.0,kg/TJ,100.55442059999999,kg +cdf206b2-f3e2-3419-ad96-468cc79936d1,SESCO,II.1.1,San Luis,AR-D,annual,2012,bioetanol combustion consumption by to the public,10.055442059999999,TJ,N2O,0.6,kg/TJ,6.033265235999999,kg +f2684841-c306-3f37-bf78-1322c4f8cefd,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2012,bioetanol combustion consumption by to the public,10.253559959999999,TJ,CH4,10.0,kg/TJ,102.53559959999998,kg +754e012d-ebac-30a6-86f5-0b2055443c56,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2012,bioetanol combustion consumption by to the public,10.253559959999999,TJ,N2O,0.6,kg/TJ,6.152135975999999,kg +85e3d269-071d-30e4-823e-68bdce0028de,SESCO,II.1.1,Santa Fe,AR-S,annual,2012,bioetanol combustion consumption by to the public,56.57991588,TJ,CH4,10.0,kg/TJ,565.7991588,kg +70006afd-5d6c-315e-996f-436b7a071793,SESCO,II.1.1,Santa Fe,AR-S,annual,2012,bioetanol combustion consumption by to the public,56.57991588,TJ,N2O,0.6,kg/TJ,33.947949528,kg +90bba178-e8f4-33f4-b4cb-5b5c9a921824,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2012,bioetanol combustion consumption by to the public,10.49833143,TJ,CH4,10.0,kg/TJ,104.9833143,kg +c1fdaf5d-c3aa-30c7-8fe2-004b738ca3ab,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2012,bioetanol combustion consumption by to the public,10.49833143,TJ,N2O,0.6,kg/TJ,6.298998858,kg +8ba2ebf7-3b18-3151-b2c8-2b47e54756bb,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2012,bioetanol combustion consumption by to the public,0.81931338,TJ,CH4,10.0,kg/TJ,8.1931338,kg +0df7ffc9-3da0-3341-8c5f-880e981ef983,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2012,bioetanol combustion consumption by to the public,0.81931338,TJ,N2O,0.6,kg/TJ,0.49158802799999995,kg +423c8e6e-e495-3728-8234-edc766ae5276,SESCO,II.1.1,Tucuman,AR-T,annual,2012,bioetanol combustion consumption by to the public,14.420426759999998,TJ,CH4,10.0,kg/TJ,144.20426759999998,kg +58a085f7-70b1-3370-9cdf-c2f1963ffc51,SESCO,II.1.1,Tucuman,AR-T,annual,2012,bioetanol combustion consumption by to the public,14.420426759999998,TJ,N2O,0.6,kg/TJ,8.652256055999999,kg +d75d7594-d85b-387c-bb0c-b9a8b94424e9,SESCO,II.1.1,Buenos Aires,AR-B,annual,2012,bioetanol combustion consumption by freight transport,0.20259153,TJ,CH4,10.0,kg/TJ,2.0259153,kg +511e067b-cd76-30ec-8bf0-4285969dc4d6,SESCO,II.1.1,Buenos Aires,AR-B,annual,2012,bioetanol combustion consumption by freight transport,0.20259153,TJ,N2O,0.6,kg/TJ,0.12155491799999998,kg +894dd03e-c24d-336e-9557-0e9756250710,SESCO,II.1.1,Capital Federal,AR-C,annual,2013,bioetanol combustion consumption by to the public,1.40727618,TJ,CH4,10.0,kg/TJ,14.0727618,kg +c4072d95-ced1-33fd-bcc0-b25333926294,SESCO,II.1.1,Capital Federal,AR-C,annual,2013,bioetanol combustion consumption by to the public,1.40727618,TJ,N2O,0.6,kg/TJ,0.844365708,kg +b67342c8-8bdd-3f41-a48f-701799fc39c5,SESCO,II.1.1,Capital Federal,AR-C,annual,2013,bioetanol combustion consumption by to the public,0.23007239999999995,TJ,CH4,10.0,kg/TJ,2.3007239999999998,kg +f924b7a6-2e11-3072-9e8b-307ef7209168,SESCO,II.1.1,Capital Federal,AR-C,annual,2013,bioetanol combustion consumption by to the public,0.23007239999999995,TJ,N2O,0.6,kg/TJ,0.13804343999999996,kg +e87b01ff-21b2-357d-9e2a-248ab75c3706,SESCO,II.5.1,Buenos Aires,AR-B,annual,2013,bioetanol combustion consumption by agriculture machines,0.1922638356,TJ,CH4,10.0,kg/TJ,1.9226383559999998,kg +f4d85c00-a412-3844-9820-1a7652ead558,SESCO,II.5.1,Buenos Aires,AR-B,annual,2013,bioetanol combustion consumption by agriculture machines,0.1922638356,TJ,N2O,0.6,kg/TJ,0.11535830135999998,kg +603ed77f-21f2-3874-a716-72f871cabdd0,SESCO,II.5.1,Córdoba,AR-X,annual,2013,bioetanol combustion consumption by agriculture machines,0.21371169599999995,TJ,CH4,10.0,kg/TJ,2.1371169599999993,kg +c7c29a54-ed36-3cc7-93ed-4f718858a727,SESCO,II.5.1,Córdoba,AR-X,annual,2013,bioetanol combustion consumption by agriculture machines,0.21371169599999995,TJ,N2O,0.6,kg/TJ,0.12822701759999997,kg +65baeaca-ae2d-3975-9293-82be50056f1f,SESCO,II.5.1,Santa Fe,AR-S,annual,2013,bioetanol combustion consumption by agriculture machines,0.6551950679999999,TJ,CH4,10.0,kg/TJ,6.551950679999999,kg +47f3f8cd-28e4-376c-9a63-9f342bfd5ed2,SESCO,II.5.1,Santa Fe,AR-S,annual,2013,bioetanol combustion consumption by agriculture machines,0.6551950679999999,TJ,N2O,0.6,kg/TJ,0.39311704079999993,kg +c72af6ee-6017-3266-a3cc-8342eb65c523,SESCO,II.5.1,Buenos Aires,AR-B,annual,2013,bioetanol combustion consumption by agriculture machines,0.008947259999999999,TJ,CH4,10.0,kg/TJ,0.08947259999999999,kg +248716d4-f2f9-3f38-8a3d-9ac9a8b2e856,SESCO,II.5.1,Buenos Aires,AR-B,annual,2013,bioetanol combustion consumption by agriculture machines,0.008947259999999999,TJ,N2O,0.6,kg/TJ,0.005368355999999999,kg +7fddd2ca-a5f1-3f59-ba66-558ea88c33b1,SESCO,II.5.1,Capital Federal,AR-C,annual,2013,bioetanol combustion consumption by agriculture machines,0.0010864529999999998,TJ,CH4,10.0,kg/TJ,0.010864529999999997,kg +b83dc7e3-550f-304f-8514-497e2526369c,SESCO,II.5.1,Capital Federal,AR-C,annual,2013,bioetanol combustion consumption by agriculture machines,0.0010864529999999998,TJ,N2O,0.6,kg/TJ,0.0006518717999999999,kg +9f066f36-6d65-3a2a-8079-9584c21d20fc,SESCO,II.5.1,Córdoba,AR-X,annual,2013,bioetanol combustion consumption by agriculture machines,0.11069038799999999,TJ,CH4,10.0,kg/TJ,1.10690388,kg +e4873f57-9b4d-362d-83bc-34f99bcf0ef2,SESCO,II.5.1,Córdoba,AR-X,annual,2013,bioetanol combustion consumption by agriculture machines,0.11069038799999999,TJ,N2O,0.6,kg/TJ,0.06641423279999999,kg +c3910823-f79a-3078-8be6-5d53561b0d14,SESCO,II.5.1,Santa Fe,AR-S,annual,2013,bioetanol combustion consumption by agriculture machines,0.048698658,TJ,CH4,10.0,kg/TJ,0.48698658,kg +2c24b376-b959-356f-9101-36f3723bfeec,SESCO,II.5.1,Santa Fe,AR-S,annual,2013,bioetanol combustion consumption by agriculture machines,0.048698658,TJ,N2O,0.6,kg/TJ,0.029219194799999997,kg +1f09a48e-9100-367d-ab52-0f29ee533ed4,SESCO,II.1.1,Buenos Aires,AR-B,annual,2013,bioetanol combustion consumption by to the public,0.07796898,TJ,CH4,10.0,kg/TJ,0.7796897999999999,kg +67634009-abbd-30a6-b52c-1bea1a72b5cb,SESCO,II.1.1,Buenos Aires,AR-B,annual,2013,bioetanol combustion consumption by to the public,0.07796898,TJ,N2O,0.6,kg/TJ,0.04678138799999999,kg +7ce66b5b-596c-3ad5-84a9-0cb2fd3699aa,SESCO,II.1.1,Entre Rios,AR-E,annual,2013,bioetanol combustion consumption by to the public,0.0063909,TJ,CH4,10.0,kg/TJ,0.063909,kg +81b32ab8-ee79-3336-82f5-f789485d7ae8,SESCO,II.1.1,Entre Rios,AR-E,annual,2013,bioetanol combustion consumption by to the public,0.0063909,TJ,N2O,0.6,kg/TJ,0.0038345399999999996,kg +b397c06b-5236-31de-97fd-091da0b60faf,SESCO,II.1.1,Santa Fe,AR-S,annual,2013,bioetanol combustion consumption by to the public,0.008947259999999999,TJ,CH4,10.0,kg/TJ,0.08947259999999999,kg +520e5680-5b76-3fc9-942e-e1ded6e8ac9b,SESCO,II.1.1,Santa Fe,AR-S,annual,2013,bioetanol combustion consumption by to the public,0.008947259999999999,TJ,N2O,0.6,kg/TJ,0.005368355999999999,kg +9877808a-7119-3ded-8a68-cd1bc984c27c,SESCO,II.1.1,Buenos Aires,AR-B,annual,2013,bioetanol combustion consumption by to the public,334.6571522124,TJ,CH4,10.0,kg/TJ,3346.571522124,kg +b3d9883a-9406-3134-81a3-5813f327c3d0,SESCO,II.1.1,Buenos Aires,AR-B,annual,2013,bioetanol combustion consumption by to the public,334.6571522124,TJ,N2O,0.6,kg/TJ,200.79429132744,kg +268bb23f-68c6-3c41-a509-ab46bb6d9934,SESCO,II.1.1,Capital Federal,AR-C,annual,2013,bioetanol combustion consumption by to the public,114.5704056444,TJ,CH4,10.0,kg/TJ,1145.704056444,kg +db8081d2-4732-3ab4-9950-821c0bb69726,SESCO,II.1.1,Capital Federal,AR-C,annual,2013,bioetanol combustion consumption by to the public,114.5704056444,TJ,N2O,0.6,kg/TJ,68.74224338664,kg +0c776f6c-11b3-3c44-a477-2f83f22fe1d0,SESCO,II.1.1,Catamarca,AR-K,annual,2013,bioetanol combustion consumption by to the public,15.631400055599999,TJ,CH4,10.0,kg/TJ,156.314000556,kg +ac7141d6-4493-3438-abbe-27c13beac5ea,SESCO,II.1.1,Catamarca,AR-K,annual,2013,bioetanol combustion consumption by to the public,15.631400055599999,TJ,N2O,0.6,kg/TJ,9.37884003336,kg +966c1d62-33bb-3b36-9a16-c466de6012c6,SESCO,II.1.1,Chaco,AR-H,annual,2013,bioetanol combustion consumption by to the public,18.1679099202,TJ,CH4,10.0,kg/TJ,181.679099202,kg +23bfc469-88c0-344b-9ad9-883b33704475,SESCO,II.1.1,Chaco,AR-H,annual,2013,bioetanol combustion consumption by to the public,18.1679099202,TJ,N2O,0.6,kg/TJ,10.90074595212,kg +a5fda2f8-d122-3094-969d-35b0f17091ce,SESCO,II.1.1,Chubut,AR-U,annual,2013,bioetanol combustion consumption by to the public,13.171210318799998,TJ,CH4,10.0,kg/TJ,131.712103188,kg +9e497465-9983-3dc7-bf70-238c1a07ebb4,SESCO,II.1.1,Chubut,AR-U,annual,2013,bioetanol combustion consumption by to the public,13.171210318799998,TJ,N2O,0.6,kg/TJ,7.902726191279998,kg +e0500e7e-7d06-396d-865b-40261c579e80,SESCO,II.1.1,Corrientes,AR-W,annual,2013,bioetanol combustion consumption by to the public,10.983183449399998,TJ,CH4,10.0,kg/TJ,109.83183449399999,kg +234d6ee4-d246-3dec-85d3-a11c1a022071,SESCO,II.1.1,Corrientes,AR-W,annual,2013,bioetanol combustion consumption by to the public,10.983183449399998,TJ,N2O,0.6,kg/TJ,6.589910069639999,kg +dcab2fd2-ea8f-3132-8ca0-c3d717a04fbe,SESCO,II.1.1,Córdoba,AR-X,annual,2013,bioetanol combustion consumption by to the public,115.26066118979999,TJ,CH4,10.0,kg/TJ,1152.606611898,kg +5a177782-42d1-3463-a3b9-25686417c9cb,SESCO,II.1.1,Córdoba,AR-X,annual,2013,bioetanol combustion consumption by to the public,115.26066118979999,TJ,N2O,0.6,kg/TJ,69.15639671387999,kg +2988d4ea-8690-3208-8a78-d271edf591d4,SESCO,II.1.1,Entre Rios,AR-E,annual,2013,bioetanol combustion consumption by to the public,37.3437286794,TJ,CH4,10.0,kg/TJ,373.437286794,kg +1f77202e-0f4d-328d-925b-20a79ec3f6aa,SESCO,II.1.1,Entre Rios,AR-E,annual,2013,bioetanol combustion consumption by to the public,37.3437286794,TJ,N2O,0.6,kg/TJ,22.40623720764,kg +2a9746f2-8e5c-39f1-adb2-c6f116006c8e,SESCO,II.1.1,Formosa,AR-P,annual,2013,bioetanol combustion consumption by to the public,18.3317342508,TJ,CH4,10.0,kg/TJ,183.317342508,kg +635d51c2-f294-31df-8dd3-5a2029761eaa,SESCO,II.1.1,Formosa,AR-P,annual,2013,bioetanol combustion consumption by to the public,18.3317342508,TJ,N2O,0.6,kg/TJ,10.99904055048,kg +ce1271f3-7d61-38ad-a297-3b6e50910d5b,SESCO,II.1.1,Jujuy,AR-Y,annual,2013,bioetanol combustion consumption by to the public,5.212034586,TJ,CH4,10.0,kg/TJ,52.12034586,kg +51079e51-e50c-3206-b084-1af4488c7e57,SESCO,II.1.1,Jujuy,AR-Y,annual,2013,bioetanol combustion consumption by to the public,5.212034586,TJ,N2O,0.6,kg/TJ,3.1272207516,kg +7a86910c-79ad-361f-987e-f9814ba8dc29,SESCO,II.1.1,La Pampa,AR-L,annual,2013,bioetanol combustion consumption by to the public,4.59761346,TJ,CH4,10.0,kg/TJ,45.976134599999995,kg +c593d6d2-e945-388d-9158-a89dbf8b0e28,SESCO,II.1.1,La Pampa,AR-L,annual,2013,bioetanol combustion consumption by to the public,4.59761346,TJ,N2O,0.6,kg/TJ,2.758568076,kg +cb2091d5-d801-3a58-adf3-66362556b0f5,SESCO,II.1.1,La Rioja,AR-F,annual,2013,bioetanol combustion consumption by to the public,9.2727868824,TJ,CH4,10.0,kg/TJ,92.727868824,kg +ea8e345d-81c2-3aae-8aee-2218cee54367,SESCO,II.1.1,La Rioja,AR-F,annual,2013,bioetanol combustion consumption by to the public,9.2727868824,TJ,N2O,0.6,kg/TJ,5.56367212944,kg +914927af-c1b5-3ddb-b484-416ea6d9a4cc,SESCO,II.1.1,Mendoza,AR-M,annual,2013,bioetanol combustion consumption by to the public,19.391345470799997,TJ,CH4,10.0,kg/TJ,193.91345470799996,kg +bf967660-4a95-3123-8344-83cc354f1ea7,SESCO,II.1.1,Mendoza,AR-M,annual,2013,bioetanol combustion consumption by to the public,19.391345470799997,TJ,N2O,0.6,kg/TJ,11.634807282479999,kg +e5e9961d-ea90-3f4d-ab83-4d128e4011a0,SESCO,II.1.1,Misiones,AR-N,annual,2013,bioetanol combustion consumption by to the public,33.408378622799994,TJ,CH4,10.0,kg/TJ,334.08378622799995,kg +c36b471c-4e1c-3079-ac67-ebab44214cc6,SESCO,II.1.1,Misiones,AR-N,annual,2013,bioetanol combustion consumption by to the public,33.408378622799994,TJ,N2O,0.6,kg/TJ,20.045027173679994,kg +aac150f0-9d7f-34ee-9140-e38caba9dbb1,SESCO,II.1.1,Neuquén,AR-Q,annual,2013,bioetanol combustion consumption by to the public,11.132526000599999,TJ,CH4,10.0,kg/TJ,111.32526000599998,kg +998ed132-d393-3e4d-85d9-f97043656b09,SESCO,II.1.1,Neuquén,AR-Q,annual,2013,bioetanol combustion consumption by to the public,11.132526000599999,TJ,N2O,0.6,kg/TJ,6.679515600359999,kg +afc3c612-951c-3bc7-bb7b-3c7dabd9bbde,SESCO,II.1.1,Rio Negro,AR-R,annual,2013,bioetanol combustion consumption by to the public,15.719594475599997,TJ,CH4,10.0,kg/TJ,157.19594475599996,kg +7e0b4b3c-d4c3-36d1-b687-245f8522a130,SESCO,II.1.1,Rio Negro,AR-R,annual,2013,bioetanol combustion consumption by to the public,15.719594475599997,TJ,N2O,0.6,kg/TJ,9.431756685359998,kg +9277042a-2243-301f-a17f-4ce7aa66dc8f,SESCO,II.1.1,Salta,AR-A,annual,2013,bioetanol combustion consumption by to the public,3.246705017999999,TJ,CH4,10.0,kg/TJ,32.467050179999994,kg +fefc3790-872f-3a80-91e4-42a8f94cceac,SESCO,II.1.1,Salta,AR-A,annual,2013,bioetanol combustion consumption by to the public,3.246705017999999,TJ,N2O,0.6,kg/TJ,1.9480230107999994,kg +d4be30cb-b059-3fae-81db-8429b0315558,SESCO,II.1.1,San Juan,AR-J,annual,2013,bioetanol combustion consumption by to the public,12.749334227999999,TJ,CH4,10.0,kg/TJ,127.49334227999998,kg +aa93aa0f-da27-37d9-bb7c-dd6a3e1fe749,SESCO,II.1.1,San Juan,AR-J,annual,2013,bioetanol combustion consumption by to the public,12.749334227999999,TJ,N2O,0.6,kg/TJ,7.649600536799999,kg +b41e4e9a-41c9-3c02-b2b7-cc2c2bb57167,SESCO,II.1.1,San Luis,AR-D,annual,2013,bioetanol combustion consumption by to the public,22.128427341000002,TJ,CH4,10.0,kg/TJ,221.28427341000003,kg +f5551b40-72c5-38a3-a0d6-7c851d3c055d,SESCO,II.1.1,San Luis,AR-D,annual,2013,bioetanol combustion consumption by to the public,22.128427341000002,TJ,N2O,0.6,kg/TJ,13.277056404600001,kg +cfd54b92-d269-3b8d-bd30-841c404e0d5d,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2013,bioetanol combustion consumption by to the public,2.2216174398,TJ,CH4,10.0,kg/TJ,22.216174398,kg +770afb74-452d-3061-905d-6eb4f8e0aafe,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2013,bioetanol combustion consumption by to the public,2.2216174398,TJ,N2O,0.6,kg/TJ,1.33297046388,kg +384ecd41-df49-37b6-957f-0ca52a9e5465,SESCO,II.1.1,Santa Fe,AR-S,annual,2013,bioetanol combustion consumption by to the public,104.77806415559999,TJ,CH4,10.0,kg/TJ,1047.7806415559999,kg +8e026961-dbf4-3147-bc7e-fbc3d1a7f5f0,SESCO,II.1.1,Santa Fe,AR-S,annual,2013,bioetanol combustion consumption by to the public,104.77806415559999,TJ,N2O,0.6,kg/TJ,62.86683849335999,kg +fbbbdbeb-1678-32a8-864a-44ceec49133c,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2013,bioetanol combustion consumption by to the public,12.617630560799999,TJ,CH4,10.0,kg/TJ,126.17630560799998,kg +5a5bd273-e5df-3a85-8ff8-1427e6bce842,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2013,bioetanol combustion consumption by to the public,12.617630560799999,TJ,N2O,0.6,kg/TJ,7.570578336479999,kg +cfc85021-1c3b-363c-9af0-77256795e828,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2013,bioetanol combustion consumption by to the public,5.217888650399999,TJ,CH4,10.0,kg/TJ,52.17888650399999,kg +2e4ff2af-8cd7-3b71-b648-6fb1b1e956b5,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2013,bioetanol combustion consumption by to the public,5.217888650399999,TJ,N2O,0.6,kg/TJ,3.1307331902399995,kg +3022f6a4-e461-3a69-9449-3a75850cb3a2,SESCO,II.1.1,Tucuman,AR-T,annual,2013,bioetanol combustion consumption by to the public,4.2925885848,TJ,CH4,10.0,kg/TJ,42.925885848,kg +b249fd5e-1820-3174-bc0e-07ab14b4ba5e,SESCO,II.1.1,Tucuman,AR-T,annual,2013,bioetanol combustion consumption by to the public,4.2925885848,TJ,N2O,0.6,kg/TJ,2.57555315088,kg +f2e0abb1-47e5-39d6-a812-9092ba988f01,SESCO,II.1.1,Buenos Aires,AR-B,annual,2013,bioetanol combustion consumption by to the public,89.7377712228,TJ,CH4,10.0,kg/TJ,897.3777122280001,kg +b6730fdd-29ca-3ffb-9fc6-c23c62ef2233,SESCO,II.1.1,Buenos Aires,AR-B,annual,2013,bioetanol combustion consumption by to the public,89.7377712228,TJ,N2O,0.6,kg/TJ,53.84266273368,kg +7793e3cc-6980-3e47-82b9-b923eb212d03,SESCO,II.1.1,Capital Federal,AR-C,annual,2013,bioetanol combustion consumption by to the public,42.774518915316,TJ,CH4,10.0,kg/TJ,427.74518915316,kg +8b2fe796-5061-3eb8-8c5a-655884cc5763,SESCO,II.1.1,Capital Federal,AR-C,annual,2013,bioetanol combustion consumption by to the public,42.774518915316,TJ,N2O,0.6,kg/TJ,25.6647113491896,kg +a81c6051-1556-3cce-8f5b-5bcc02a27c8a,SESCO,II.1.1,Catamarca,AR-K,annual,2013,bioetanol combustion consumption by to the public,3.645748596006,TJ,CH4,10.0,kg/TJ,36.45748596006,kg +b5a976f8-f9ac-3d8e-962b-d1037b40989b,SESCO,II.1.1,Catamarca,AR-K,annual,2013,bioetanol combustion consumption by to the public,3.645748596006,TJ,N2O,0.6,kg/TJ,2.1874491576036,kg +78eef0b9-426c-3f91-a731-14fbd8cd5b78,SESCO,II.1.1,Chaco,AR-H,annual,2013,bioetanol combustion consumption by to the public,3.6431919803699997,TJ,CH4,10.0,kg/TJ,36.4319198037,kg +7ddbcbb6-658c-3e38-bb65-2ecdd69b4165,SESCO,II.1.1,Chaco,AR-H,annual,2013,bioetanol combustion consumption by to the public,3.6431919803699997,TJ,N2O,0.6,kg/TJ,2.185915188222,kg +0be21e33-e4ea-3000-a538-06d352928df5,SESCO,II.1.1,Chubut,AR-U,annual,2013,bioetanol combustion consumption by to the public,1.9103684670899999,TJ,CH4,10.0,kg/TJ,19.103684670899998,kg +ae6a1b8b-4863-3880-a29a-3f6612e5c2a4,SESCO,II.1.1,Chubut,AR-U,annual,2013,bioetanol combustion consumption by to the public,1.9103684670899999,TJ,N2O,0.6,kg/TJ,1.1462210802539998,kg +8c9dab76-8d16-3fa1-8954-7effa698c4f2,SESCO,II.1.1,Corrientes,AR-W,annual,2013,bioetanol combustion consumption by to the public,3.0635825979419997,TJ,CH4,10.0,kg/TJ,30.635825979419998,kg +f94afc0f-157c-3f03-86df-1c4c08962815,SESCO,II.1.1,Corrientes,AR-W,annual,2013,bioetanol combustion consumption by to the public,3.0635825979419997,TJ,N2O,0.6,kg/TJ,1.8381495587651997,kg +8821135a-8beb-3bed-90cc-966fc665ab43,SESCO,II.1.1,Córdoba,AR-X,annual,2013,bioetanol combustion consumption by to the public,24.666077086523998,TJ,CH4,10.0,kg/TJ,246.66077086523998,kg +0d73d6b0-597d-3a01-9e51-8db014372254,SESCO,II.1.1,Córdoba,AR-X,annual,2013,bioetanol combustion consumption by to the public,24.666077086523998,TJ,N2O,0.6,kg/TJ,14.799646251914398,kg +a23291a0-df1e-360d-bc57-f78baa77c2c6,SESCO,II.1.1,Entre Rios,AR-E,annual,2013,bioetanol combustion consumption by to the public,9.116446679153999,TJ,CH4,10.0,kg/TJ,91.16446679153998,kg +13aad19c-da06-37af-877a-573ec6986cc6,SESCO,II.1.1,Entre Rios,AR-E,annual,2013,bioetanol combustion consumption by to the public,9.116446679153999,TJ,N2O,0.6,kg/TJ,5.469868007492399,kg +e98d6206-deb7-32b7-8229-564589b9e472,SESCO,II.1.1,Formosa,AR-P,annual,2013,bioetanol combustion consumption by to the public,4.108794353334,TJ,CH4,10.0,kg/TJ,41.087943533339995,kg +050252ad-0d6d-39cb-93c0-718199d726ee,SESCO,II.1.1,Formosa,AR-P,annual,2013,bioetanol combustion consumption by to the public,4.108794353334,TJ,N2O,0.6,kg/TJ,2.4652766120004,kg +970d9b78-d97a-3ef8-bb66-57b8918fe592,SESCO,II.1.1,Jujuy,AR-Y,annual,2013,bioetanol combustion consumption by to the public,0.21309522978599998,TJ,CH4,10.0,kg/TJ,2.13095229786,kg +3910f36a-b10d-36d9-9c43-bea290d9a448,SESCO,II.1.1,Jujuy,AR-Y,annual,2013,bioetanol combustion consumption by to the public,0.21309522978599998,TJ,N2O,0.6,kg/TJ,0.1278571378716,kg +fb195a3c-111a-3667-8bb0-e832a13cafea,SESCO,II.1.1,La Pampa,AR-L,annual,2013,bioetanol combustion consumption by to the public,1.1771399988179998,TJ,CH4,10.0,kg/TJ,11.771399988179997,kg +2ca17fb6-5844-33a3-b491-efed7916c1a7,SESCO,II.1.1,La Pampa,AR-L,annual,2013,bioetanol combustion consumption by to the public,1.1771399988179998,TJ,N2O,0.6,kg/TJ,0.7062839992907999,kg +8a109563-156f-34dd-80cc-331908ec720d,SESCO,II.1.1,La Rioja,AR-F,annual,2013,bioetanol combustion consumption by to the public,1.9027946114999998,TJ,CH4,10.0,kg/TJ,19.027946115,kg +ce3d6ab5-7be5-3149-ac5b-5a20edbb2484,SESCO,II.1.1,La Rioja,AR-F,annual,2013,bioetanol combustion consumption by to the public,1.9027946114999998,TJ,N2O,0.6,kg/TJ,1.1416767668999999,kg +78bc778f-f5bb-3144-bfa1-484866cd9b5e,SESCO,II.1.1,Mendoza,AR-M,annual,2013,bioetanol combustion consumption by to the public,3.8408438559419995,TJ,CH4,10.0,kg/TJ,38.40843855941999,kg +cdefdb2a-94f0-326c-8e2e-4e033e0c3a93,SESCO,II.1.1,Mendoza,AR-M,annual,2013,bioetanol combustion consumption by to the public,3.8408438559419995,TJ,N2O,0.6,kg/TJ,2.3045063135651995,kg +0892b97a-1b9b-3c6e-909f-d9a0da15ce9c,SESCO,II.1.1,Misiones,AR-N,annual,2013,bioetanol combustion consumption by to the public,5.085774815238,TJ,CH4,10.0,kg/TJ,50.85774815238,kg +b67680b8-c4c0-36e4-82ba-69c902daf10f,SESCO,II.1.1,Misiones,AR-N,annual,2013,bioetanol combustion consumption by to the public,5.085774815238,TJ,N2O,0.6,kg/TJ,3.0514648891427996,kg +a4ac2f7a-bb75-3381-9a6d-8eab7eb6e1fd,SESCO,II.1.1,Neuquén,AR-Q,annual,2013,bioetanol combustion consumption by to the public,3.015497082888,TJ,CH4,10.0,kg/TJ,30.15497082888,kg +710f5507-81e2-3f59-8489-92d849adde7c,SESCO,II.1.1,Neuquén,AR-Q,annual,2013,bioetanol combustion consumption by to the public,3.015497082888,TJ,N2O,0.6,kg/TJ,1.8092982497327998,kg +7a6c66ad-0ca1-30d8-bdac-3aa4dc13eaf4,SESCO,II.1.1,Rio Negro,AR-R,annual,2013,bioetanol combustion consumption by to the public,4.359284145018,TJ,CH4,10.0,kg/TJ,43.59284145018,kg +7cbea116-ff72-3041-ba54-5a2d473e91ef,SESCO,II.1.1,Rio Negro,AR-R,annual,2013,bioetanol combustion consumption by to the public,4.359284145018,TJ,N2O,0.6,kg/TJ,2.6155704870108,kg +e63a350b-a79b-3478-bb7c-446c1e86e7e8,SESCO,II.1.1,Salta,AR-A,annual,2013,bioetanol combustion consumption by to the public,0.42060455733599994,TJ,CH4,10.0,kg/TJ,4.206045573359999,kg +e297ff9b-1278-3ae7-a486-74befaa1eef8,SESCO,II.1.1,Salta,AR-A,annual,2013,bioetanol combustion consumption by to the public,0.42060455733599994,TJ,N2O,0.6,kg/TJ,0.25236273440159995,kg +75457451-5412-3ac1-b680-0e6950c9552d,SESCO,II.1.1,San Juan,AR-J,annual,2013,bioetanol combustion consumption by to the public,2.662862175594,TJ,CH4,10.0,kg/TJ,26.62862175594,kg +a5154af8-64be-373b-96f4-16a43682146b,SESCO,II.1.1,San Juan,AR-J,annual,2013,bioetanol combustion consumption by to the public,2.662862175594,TJ,N2O,0.6,kg/TJ,1.5977173053563998,kg +383046d7-d549-3624-8861-22eeb2f4a0a6,SESCO,II.1.1,San Luis,AR-D,annual,2013,bioetanol combustion consumption by to the public,5.119843297139999,TJ,CH4,10.0,kg/TJ,51.198432971399995,kg +e6e7484e-3702-3743-9a1c-3033daeb9aa9,SESCO,II.1.1,San Luis,AR-D,annual,2013,bioetanol combustion consumption by to the public,5.119843297139999,TJ,N2O,0.6,kg/TJ,3.0719059782839993,kg +cbf9f455-9105-3f8a-8752-f0d2dcbe7abe,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2013,bioetanol combustion consumption by to the public,1.096090605018,TJ,CH4,10.0,kg/TJ,10.96090605018,kg +1f80fc29-25fd-3bc3-9bec-ad98f50acda2,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2013,bioetanol combustion consumption by to the public,1.096090605018,TJ,N2O,0.6,kg/TJ,0.6576543630107999,kg +3cdb387a-feee-398b-82f8-24fb0ac7ebca,SESCO,II.1.1,Santa Fe,AR-S,annual,2013,bioetanol combustion consumption by to the public,23.966446474278,TJ,CH4,10.0,kg/TJ,239.66446474278,kg +181e405f-ef93-3f21-a8f9-5c99709c5069,SESCO,II.1.1,Santa Fe,AR-S,annual,2013,bioetanol combustion consumption by to the public,23.966446474278,TJ,N2O,0.6,kg/TJ,14.379867884566801,kg +2e4bdde8-8977-3d5d-8203-9224a5e9358e,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2013,bioetanol combustion consumption by to the public,3.213825882588,TJ,CH4,10.0,kg/TJ,32.13825882588,kg +5d5a903f-191e-30e3-a2eb-66c11bb25be7,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2013,bioetanol combustion consumption by to the public,3.213825882588,TJ,N2O,0.6,kg/TJ,1.9282955295528,kg +6907c9fd-066e-367f-90cc-ce04b1dffc7a,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2013,bioetanol combustion consumption by to the public,2.469931896942,TJ,CH4,10.0,kg/TJ,24.699318969420002,kg +0149bcfd-c085-3468-84c7-97e9d9767f0a,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2013,bioetanol combustion consumption by to the public,2.469931896942,TJ,N2O,0.6,kg/TJ,1.4819591381652,kg +18799d41-cff8-311c-ba7a-abc509e7d162,SESCO,II.1.1,Tucuman,AR-T,annual,2013,bioetanol combustion consumption by to the public,0.9097414195499998,TJ,CH4,10.0,kg/TJ,9.097414195499997,kg +0f215db6-01a0-3b35-96b1-1da5715dde5f,SESCO,II.1.1,Tucuman,AR-T,annual,2013,bioetanol combustion consumption by to the public,0.9097414195499998,TJ,N2O,0.6,kg/TJ,0.5458448517299999,kg +ad992603-2f6a-37e5-8537-d2b63592b113,SESCO,I.3.1,Buenos Aires,AR-B,annual,2013,bioetanol combustion consumption by petrochemical industries,0.71450262,TJ,CH4,10.0,kg/TJ,7.1450262,kg +e69cafda-b274-34a1-b728-b60653eb1f1f,SESCO,I.3.1,Buenos Aires,AR-B,annual,2013,bioetanol combustion consumption by petrochemical industries,0.71450262,TJ,N2O,0.6,kg/TJ,0.428701572,kg +17e1521c-3e7e-37ca-a43d-549cce3f80c8,SESCO,I.3.1,Buenos Aires,AR-B,annual,2013,bioetanol combustion consumption by petrochemical industries,0.05751809999999999,TJ,CH4,10.0,kg/TJ,0.5751809999999999,kg +c47764e5-773d-3d7a-870d-95c0fba0762f,SESCO,I.3.1,Buenos Aires,AR-B,annual,2013,bioetanol combustion consumption by petrochemical industries,0.05751809999999999,TJ,N2O,0.6,kg/TJ,0.03451085999999999,kg +70dc5d85-e56e-3f54-9d76-77ba784761d4,SESCO,II.1.1,Buenos Aires,AR-B,annual,2013,bioetanol combustion consumption by freight transport,0.199983275892,TJ,CH4,10.0,kg/TJ,1.9998327589199998,kg +85753594-b033-325d-9f1f-e6ceac514c79,SESCO,II.1.1,Buenos Aires,AR-B,annual,2013,bioetanol combustion consumption by freight transport,0.199983275892,TJ,N2O,0.6,kg/TJ,0.11998996553519999,kg +8821c53a-6247-3b1e-a723-eb8e9a1f7314,SESCO,II.1.1,Capital Federal,AR-C,annual,2013,bioetanol combustion consumption by freight transport,0.5048764985519999,TJ,CH4,10.0,kg/TJ,5.048764985519999,kg +67891c04-1986-3649-ad2a-a0d6b0cec067,SESCO,II.1.1,Capital Federal,AR-C,annual,2013,bioetanol combustion consumption by freight transport,0.5048764985519999,TJ,N2O,0.6,kg/TJ,0.30292589913119994,kg +07af39b5-0bcc-322a-af84-26fb83ba1d5f,SESCO,II.1.1,Chaco,AR-H,annual,2013,bioetanol combustion consumption by freight transport,0.009617793227999999,TJ,CH4,10.0,kg/TJ,0.09617793227999999,kg +0c2dfe39-4dbc-3114-888d-602d968cfa33,SESCO,II.1.1,Chaco,AR-H,annual,2013,bioetanol combustion consumption by freight transport,0.009617793227999999,TJ,N2O,0.6,kg/TJ,0.005770675936799999,kg +dcfae3d2-1e5e-3bd1-9337-1e20783db5d7,SESCO,II.1.1,Corrientes,AR-W,annual,2013,bioetanol combustion consumption by freight transport,0.000674495586,TJ,CH4,10.0,kg/TJ,0.00674495586,kg +b3d197e1-c6de-30e2-aa67-45555d0091d8,SESCO,II.1.1,Corrientes,AR-W,annual,2013,bioetanol combustion consumption by freight transport,0.000674495586,TJ,N2O,0.6,kg/TJ,0.0004046973516,kg +95e6cc7d-330e-37db-8b5e-7cf77cfb0879,SESCO,II.1.1,Córdoba,AR-X,annual,2013,bioetanol combustion consumption by freight transport,0.017392450896,TJ,CH4,10.0,kg/TJ,0.17392450896,kg +c29785f8-7beb-3a7f-ba05-302d6d1f6938,SESCO,II.1.1,Córdoba,AR-X,annual,2013,bioetanol combustion consumption by freight transport,0.017392450896,TJ,N2O,0.6,kg/TJ,0.0104354705376,kg +861255a8-3954-3854-abf0-f6a45c32c8b1,SESCO,II.1.1,Entre Rios,AR-E,annual,2013,bioetanol combustion consumption by freight transport,6.3909e-05,TJ,CH4,10.0,kg/TJ,0.00063909,kg +5dcab6ef-0d2d-3053-a516-19886f03f291,SESCO,II.1.1,Entre Rios,AR-E,annual,2013,bioetanol combustion consumption by freight transport,6.3909e-05,TJ,N2O,0.6,kg/TJ,3.83454e-05,kg +e2cf53c3-ed20-3914-9c45-f02222962f8e,SESCO,II.1.1,Misiones,AR-N,annual,2013,bioetanol combustion consumption by freight transport,0.0002428542,TJ,CH4,10.0,kg/TJ,0.0024285419999999997,kg +29bff508-c0bc-3c9c-b672-f8b8bec5af9f,SESCO,II.1.1,Misiones,AR-N,annual,2013,bioetanol combustion consumption by freight transport,0.0002428542,TJ,N2O,0.6,kg/TJ,0.00014571252,kg +2010ecbf-c045-31c3-8d6f-2474d95ddae3,SESCO,II.1.1,San Luis,AR-D,annual,2013,bioetanol combustion consumption by freight transport,0.003937050036,TJ,CH4,10.0,kg/TJ,0.03937050036,kg +df3c12ad-0560-379b-87c3-dec0dc8517bf,SESCO,II.1.1,San Luis,AR-D,annual,2013,bioetanol combustion consumption by freight transport,0.003937050036,TJ,N2O,0.6,kg/TJ,0.0023622300216,kg +326fd410-b3fd-3698-8ae0-47c648a15813,SESCO,II.1.1,Santa Fe,AR-S,annual,2013,bioetanol combustion consumption by freight transport,0.037301382576,TJ,CH4,10.0,kg/TJ,0.37301382576,kg +069fd406-1dd9-37bd-8e15-59f0252ad11a,SESCO,II.1.1,Santa Fe,AR-S,annual,2013,bioetanol combustion consumption by freight transport,0.037301382576,TJ,N2O,0.6,kg/TJ,0.022380829545599997,kg +0d3046cc-f380-3137-b030-e38e3e3039dc,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2013,bioetanol combustion consumption by freight transport,0.001125309672,TJ,CH4,10.0,kg/TJ,0.011253096720000001,kg +5fd67a3e-6ded-3435-b192-cc8e80493b86,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2013,bioetanol combustion consumption by freight transport,0.001125309672,TJ,N2O,0.6,kg/TJ,0.0006751858032,kg +15e1c2e1-4174-321e-8585-57c1995988c0,SESCO,II.1.1,Tucuman,AR-T,annual,2013,bioetanol combustion consumption by freight transport,0.002032178382,TJ,CH4,10.0,kg/TJ,0.02032178382,kg +eda38a0d-f034-3520-b5ce-a8ce48ac62d2,SESCO,II.1.1,Tucuman,AR-T,annual,2013,bioetanol combustion consumption by freight transport,0.002032178382,TJ,N2O,0.6,kg/TJ,0.0012193070292,kg +204a1980-de5a-35eb-9942-fb718595a350,SESCO,II.1.1,Buenos Aires,AR-B,annual,2013,bioetanol combustion consumption by freight transport,0.9790730982,TJ,CH4,10.0,kg/TJ,9.790730982,kg +a6a97947-72f2-3af5-996a-53536820cf76,SESCO,II.1.1,Buenos Aires,AR-B,annual,2013,bioetanol combustion consumption by freight transport,0.9790730982,TJ,N2O,0.6,kg/TJ,0.58744385892,kg +f14df98b-9d09-3acf-955e-e71fe6f0db42,SESCO,II.1.1,Capital Federal,AR-C,annual,2013,bioetanol combustion consumption by freight transport,0.31770442079999994,TJ,CH4,10.0,kg/TJ,3.1770442079999994,kg +b8567021-e2d4-31a4-88f7-98a2d95a720d,SESCO,II.1.1,Capital Federal,AR-C,annual,2013,bioetanol combustion consumption by freight transport,0.31770442079999994,TJ,N2O,0.6,kg/TJ,0.19062265247999996,kg +602f07b5-afe4-3a64-9a8e-d772db3e98bd,SESCO,II.1.1,Chaco,AR-H,annual,2013,bioetanol combustion consumption by freight transport,0.002356708284,TJ,CH4,10.0,kg/TJ,0.02356708284,kg +a30db940-d764-3bc6-9b24-3a7b60b65f40,SESCO,II.1.1,Chaco,AR-H,annual,2013,bioetanol combustion consumption by freight transport,0.002356708284,TJ,N2O,0.6,kg/TJ,0.0014140249704,kg +d4d65da2-da71-3c15-ae48-22f07e8777e3,SESCO,II.1.1,Corrientes,AR-W,annual,2013,bioetanol combustion consumption by freight transport,0.00017894520000000003,TJ,CH4,10.0,kg/TJ,0.0017894520000000004,kg +905f8ed1-b89c-354b-b646-7f328e582114,SESCO,II.1.1,Corrientes,AR-W,annual,2013,bioetanol combustion consumption by freight transport,0.00017894520000000003,TJ,N2O,0.6,kg/TJ,0.00010736712000000001,kg +087774f2-dbe6-3b6f-8556-fe2a5f1b5732,SESCO,II.1.1,Córdoba,AR-X,annual,2013,bioetanol combustion consumption by freight transport,0.01285721262,TJ,CH4,10.0,kg/TJ,0.1285721262,kg +1a3234d2-ff0e-3bb7-9e87-dee1728c90f8,SESCO,II.1.1,Córdoba,AR-X,annual,2013,bioetanol combustion consumption by freight transport,0.01285721262,TJ,N2O,0.6,kg/TJ,0.007714327572,kg +296252aa-a0c5-346a-9bf3-d864c6ab4113,SESCO,II.1.1,Entre Rios,AR-E,annual,2013,bioetanol combustion consumption by freight transport,0.001022544,TJ,CH4,10.0,kg/TJ,0.01022544,kg +7f57e259-9455-3bc0-b18b-93bfd18f503a,SESCO,II.1.1,Entre Rios,AR-E,annual,2013,bioetanol combustion consumption by freight transport,0.001022544,TJ,N2O,0.6,kg/TJ,0.0006135264,kg +d5cb36c9-ea1c-3011-b092-c21b5ab5ba19,SESCO,II.1.1,Mendoza,AR-M,annual,2013,bioetanol combustion consumption by freight transport,0.00021013279199999998,TJ,CH4,10.0,kg/TJ,0.00210132792,kg +6aee963e-d4f6-35d3-9a90-4d44aa0bebe6,SESCO,II.1.1,Mendoza,AR-M,annual,2013,bioetanol combustion consumption by freight transport,0.00021013279199999998,TJ,N2O,0.6,kg/TJ,0.0001260796752,kg +75d99494-d1fe-3dcd-90b2-38f7856a3fcf,SESCO,II.1.1,Misiones,AR-N,annual,2013,bioetanol combustion consumption by freight transport,0.0001533816,TJ,CH4,10.0,kg/TJ,0.001533816,kg +56b791b7-b1ad-3bf5-b24a-011b955a9410,SESCO,II.1.1,Misiones,AR-N,annual,2013,bioetanol combustion consumption by freight transport,0.0001533816,TJ,N2O,0.6,kg/TJ,9.202895999999999e-05,kg +bde429c3-5248-3b97-a8aa-c2f4ad3ba6ff,SESCO,II.1.1,San Luis,AR-D,annual,2013,bioetanol combustion consumption by freight transport,0.0003706722,TJ,CH4,10.0,kg/TJ,0.003706722,kg +b8da9aa9-78df-3eae-9b3a-86864506f8b2,SESCO,II.1.1,San Luis,AR-D,annual,2013,bioetanol combustion consumption by freight transport,0.0003706722,TJ,N2O,0.6,kg/TJ,0.00022240332,kg +99812c70-6961-37c1-b73c-09e1ae8bf9a0,SESCO,II.1.1,Santa Fe,AR-S,annual,2013,bioetanol combustion consumption by freight transport,0.026970109271999998,TJ,CH4,10.0,kg/TJ,0.26970109272,kg +22559cd1-3e26-3ada-b0d4-706192bba676,SESCO,II.1.1,Santa Fe,AR-S,annual,2013,bioetanol combustion consumption by freight transport,0.026970109271999998,TJ,N2O,0.6,kg/TJ,0.0161820655632,kg +bfe072da-aef0-32ba-b1b6-c4dbdbe8dd14,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2013,bioetanol combustion consumption by freight transport,0.009870105959999998,TJ,CH4,10.0,kg/TJ,0.09870105959999999,kg +14d479e8-b92e-34e1-9ef9-0ab549d17c03,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2013,bioetanol combustion consumption by freight transport,0.009870105959999998,TJ,N2O,0.6,kg/TJ,0.0059220635759999985,kg +08c289cc-8d0f-380d-9c5c-fffb3d1f5b06,SESCO,II.1.1,Tucuman,AR-T,annual,2013,bioetanol combustion consumption by freight transport,0.001890811674,TJ,CH4,10.0,kg/TJ,0.01890811674,kg +c28608fd-aa06-3eed-9cab-141b1d01a7d2,SESCO,II.1.1,Tucuman,AR-T,annual,2013,bioetanol combustion consumption by freight transport,0.001890811674,TJ,N2O,0.6,kg/TJ,0.0011344870043999999,kg +e2aa85a3-97ca-3fd0-9cb2-99bb8f06d47c,SESCO,II.1.1,Buenos Aires,AR-B,annual,2013,bioetanol combustion consumption by public passenger transport,0.0882072018,TJ,CH4,10.0,kg/TJ,0.8820720179999999,kg +3b73743d-7a8c-3a32-9acb-8fde224d72c9,SESCO,II.1.1,Buenos Aires,AR-B,annual,2013,bioetanol combustion consumption by public passenger transport,0.0882072018,TJ,N2O,0.6,kg/TJ,0.052924321079999996,kg +26dc6c31-11bd-3273-9f2d-f4bffb4d3a73,SESCO,II.1.1,Capital Federal,AR-C,annual,2013,bioetanol combustion consumption by public passenger transport,0.0015849431999999998,TJ,CH4,10.0,kg/TJ,0.015849431999999997,kg +8baebd5c-1d58-3436-9602-a8a3d488cbf1,SESCO,II.1.1,Capital Federal,AR-C,annual,2013,bioetanol combustion consumption by public passenger transport,0.0015849431999999998,TJ,N2O,0.6,kg/TJ,0.0009509659199999998,kg +fa4d21d6-3216-3a0e-b330-a30ef8c956d0,SESCO,II.1.1,Córdoba,AR-X,annual,2013,bioetanol combustion consumption by public passenger transport,5.1127199999999994e-05,TJ,CH4,10.0,kg/TJ,0.0005112719999999999,kg +75ff36c3-dc25-3a98-891b-a5a7e943201e,SESCO,II.1.1,Córdoba,AR-X,annual,2013,bioetanol combustion consumption by public passenger transport,5.1127199999999994e-05,TJ,N2O,0.6,kg/TJ,3.067632e-05,kg +3fa32afa-9ee7-3518-a474-b7e137d450cf,SESCO,II.1.1,Entre Rios,AR-E,annual,2013,bioetanol combustion consumption by public passenger transport,3.83454e-05,TJ,CH4,10.0,kg/TJ,0.000383454,kg +9495c2a5-93df-3eab-b93b-19ca62b4a998,SESCO,II.1.1,Entre Rios,AR-E,annual,2013,bioetanol combustion consumption by public passenger transport,3.83454e-05,TJ,N2O,0.6,kg/TJ,2.3007239999999998e-05,kg +a4a4dec3-de1b-31e0-b171-3c61fb4ff4a3,SESCO,II.1.1,Santa Fe,AR-S,annual,2013,bioetanol combustion consumption by public passenger transport,0.002107207548,TJ,CH4,10.0,kg/TJ,0.021072075479999997,kg +46f81003-1337-3533-bb16-5ba27f24fa24,SESCO,II.1.1,Santa Fe,AR-S,annual,2013,bioetanol combustion consumption by public passenger transport,0.002107207548,TJ,N2O,0.6,kg/TJ,0.0012643245288,kg +98c898a2-f2d9-3311-a3c4-9e2cd61a998c,SESCO,II.1.1,Buenos Aires,AR-B,annual,2013,bioetanol combustion consumption by public passenger transport,0.01661634,TJ,CH4,10.0,kg/TJ,0.16616340000000002,kg +f3b32d3f-2caa-3421-8f10-73445335349d,SESCO,II.1.1,Buenos Aires,AR-B,annual,2013,bioetanol combustion consumption by public passenger transport,0.01661634,TJ,N2O,0.6,kg/TJ,0.009969804,kg +a3ba64d7-c78e-302a-ada7-235146db36e3,SESCO,II.1.1,Capital Federal,AR-C,annual,2013,bioetanol combustion consumption by public passenger transport,0.007630734599999999,TJ,CH4,10.0,kg/TJ,0.07630734599999998,kg +35d00af9-bc88-3e93-85b2-7e83e4bfc960,SESCO,II.1.1,Capital Federal,AR-C,annual,2013,bioetanol combustion consumption by public passenger transport,0.007630734599999999,TJ,N2O,0.6,kg/TJ,0.004578440759999999,kg +37b8c734-486d-3c02-9c48-2501a6480edd,SESCO,II.1.1,Entre Rios,AR-E,annual,2013,bioetanol combustion consumption by public passenger transport,5.1127199999999994e-05,TJ,CH4,10.0,kg/TJ,0.0005112719999999999,kg +fc66cb57-0870-3829-acd9-39bf78edc4ac,SESCO,II.1.1,Entre Rios,AR-E,annual,2013,bioetanol combustion consumption by public passenger transport,5.1127199999999994e-05,TJ,N2O,0.6,kg/TJ,3.067632e-05,kg +48ffc929-2dcf-3df6-9a7f-e28bf5aaca06,SESCO,II.1.1,Santa Fe,AR-S,annual,2013,bioetanol combustion consumption by public passenger transport,0.00044736299999999994,TJ,CH4,10.0,kg/TJ,0.004473629999999999,kg +9c419969-7344-3f67-b850-3f62793ee38d,SESCO,II.1.1,Santa Fe,AR-S,annual,2013,bioetanol combustion consumption by public passenger transport,0.00044736299999999994,TJ,N2O,0.6,kg/TJ,0.00026841779999999996,kg +34118832-c80e-3e6b-ab43-bbdbd7790e3f,SESCO,II.5.1,Córdoba,AR-X,annual,2013,bioetanol combustion consumption by agriculture machines,0.251870098266,TJ,CH4,10.0,kg/TJ,2.51870098266,kg +8e72e29f-58ac-3f35-8561-0a0e78a7433e,SESCO,II.5.1,Córdoba,AR-X,annual,2013,bioetanol combustion consumption by agriculture machines,0.251870098266,TJ,N2O,0.6,kg/TJ,0.1511220589596,kg +89011c7a-1b78-341d-bd51-545fce46b402,SESCO,II.5.1,Santa Fe,AR-S,annual,2013,bioetanol combustion consumption by agriculture machines,0.056450308427999994,TJ,CH4,10.0,kg/TJ,0.56450308428,kg +68b84948-6baa-3c58-a56a-0aea2d38182e,SESCO,II.5.1,Santa Fe,AR-S,annual,2013,bioetanol combustion consumption by agriculture machines,0.056450308427999994,TJ,N2O,0.6,kg/TJ,0.03387018505679999,kg +7fb808ba-8922-3b74-ba9f-fa6f3b5e570a,SESCO,II.1.1,Buenos Aires,AR-B,annual,2013,bioetanol combustion consumption by to the public,92.06523896639399,TJ,CH4,10.0,kg/TJ,920.6523896639399,kg +1b2d46d2-2495-3518-9ad5-b6d5cc0f2760,SESCO,II.1.1,Buenos Aires,AR-B,annual,2013,bioetanol combustion consumption by to the public,92.06523896639399,TJ,N2O,0.6,kg/TJ,55.23914337983639,kg +f1110573-2632-35cd-9c38-156e81ba1d3f,SESCO,II.1.1,Capital Federal,AR-C,annual,2013,bioetanol combustion consumption by to the public,10.095962794541999,TJ,CH4,10.0,kg/TJ,100.95962794541998,kg +d174e996-118c-3e60-866c-5f12a9d1cb8a,SESCO,II.1.1,Capital Federal,AR-C,annual,2013,bioetanol combustion consumption by to the public,10.095962794541999,TJ,N2O,0.6,kg/TJ,6.057577676725199,kg +3ecd8f3e-1aef-32f3-b295-222a1a5b8a57,SESCO,II.1.1,Catamarca,AR-K,annual,2013,bioetanol combustion consumption by to the public,7.229828330279998,TJ,CH4,10.0,kg/TJ,72.29828330279999,kg +74257c12-efa0-3a25-8c1e-7d52ea302ef7,SESCO,II.1.1,Catamarca,AR-K,annual,2013,bioetanol combustion consumption by to the public,7.229828330279998,TJ,N2O,0.6,kg/TJ,4.337896998167999,kg +a03c2853-020e-3be6-a861-5c780b2cd849,SESCO,II.1.1,Chaco,AR-H,annual,2013,bioetanol combustion consumption by to the public,13.085614055285998,TJ,CH4,10.0,kg/TJ,130.85614055285998,kg +c6ba0798-8cff-35d2-872e-87c29f87a4ac,SESCO,II.1.1,Chaco,AR-H,annual,2013,bioetanol combustion consumption by to the public,13.085614055285998,TJ,N2O,0.6,kg/TJ,7.851368433171598,kg +cc0bad26-ee69-3383-846c-b5bc45480a6f,SESCO,II.1.1,Corrientes,AR-W,annual,2013,bioetanol combustion consumption by to the public,17.423077622616,TJ,CH4,10.0,kg/TJ,174.23077622616,kg +e74c894f-7c57-39a5-80a7-6b58b8918194,SESCO,II.1.1,Corrientes,AR-W,annual,2013,bioetanol combustion consumption by to the public,17.423077622616,TJ,N2O,0.6,kg/TJ,10.4538465735696,kg +b9cc582f-c3e4-3071-8a5a-b7eee53f527a,SESCO,II.1.1,Córdoba,AR-X,annual,2013,bioetanol combustion consumption by to the public,34.516115748341996,TJ,CH4,10.0,kg/TJ,345.16115748341997,kg +50007992-8809-3875-b308-38b8113ccab2,SESCO,II.1.1,Córdoba,AR-X,annual,2013,bioetanol combustion consumption by to the public,34.516115748341996,TJ,N2O,0.6,kg/TJ,20.709669449005197,kg +69a871b9-e742-3861-abea-c285de30615c,SESCO,II.1.1,Entre Rios,AR-E,annual,2013,bioetanol combustion consumption by to the public,22.214749610753998,TJ,CH4,10.0,kg/TJ,222.14749610753998,kg +e8b27aab-26e5-34f0-95a3-c3852587c0ad,SESCO,II.1.1,Entre Rios,AR-E,annual,2013,bioetanol combustion consumption by to the public,22.214749610753998,TJ,N2O,0.6,kg/TJ,13.328849766452398,kg +a9ddc2cb-fdfd-313c-85c3-b97dbe9d7d6a,SESCO,II.1.1,Formosa,AR-P,annual,2013,bioetanol combustion consumption by to the public,0.7509226974659998,TJ,CH4,10.0,kg/TJ,7.509226974659998,kg +2aefbc7b-8a9c-376c-b5e7-aefa5baccb0f,SESCO,II.1.1,Formosa,AR-P,annual,2013,bioetanol combustion consumption by to the public,0.7509226974659998,TJ,N2O,0.6,kg/TJ,0.45055361847959985,kg +464034f7-fee8-34f2-9bcf-a82020152f78,SESCO,II.1.1,Jujuy,AR-Y,annual,2013,bioetanol combustion consumption by to the public,1.373809209606,TJ,CH4,10.0,kg/TJ,13.738092096059999,kg +613b14d4-cbdc-328c-81c3-34d41b22f423,SESCO,II.1.1,Jujuy,AR-Y,annual,2013,bioetanol combustion consumption by to the public,1.373809209606,TJ,N2O,0.6,kg/TJ,0.8242855257635999,kg +7fc5b085-fe7a-3c63-ad71-7ebdc14b6c7e,SESCO,II.1.1,La Pampa,AR-L,annual,2013,bioetanol combustion consumption by to the public,0.7387499502359999,TJ,CH4,10.0,kg/TJ,7.387499502359999,kg +07b8572c-f4f6-387e-9326-bd50ce85ca5d,SESCO,II.1.1,La Pampa,AR-L,annual,2013,bioetanol combustion consumption by to the public,0.7387499502359999,TJ,N2O,0.6,kg/TJ,0.4432499701415999,kg +46cf8432-e15c-35fb-b0a2-400122505070,SESCO,II.1.1,La Rioja,AR-F,annual,2013,bioetanol combustion consumption by to the public,3.6628154944559994,TJ,CH4,10.0,kg/TJ,36.628154944559995,kg +9a4df17e-9815-36a4-a0b1-1fdcd6a30e08,SESCO,II.1.1,La Rioja,AR-F,annual,2013,bioetanol combustion consumption by to the public,3.6628154944559994,TJ,N2O,0.6,kg/TJ,2.1976892966735995,kg +eb8a6d00-0315-31a0-a00a-a5aadb36fdf0,SESCO,II.1.1,Mendoza,AR-M,annual,2013,bioetanol combustion consumption by to the public,15.739427483387999,TJ,CH4,10.0,kg/TJ,157.39427483388,kg +acbcea8f-9a9d-33e5-b056-1302acfadfa7,SESCO,II.1.1,Mendoza,AR-M,annual,2013,bioetanol combustion consumption by to the public,15.739427483387999,TJ,N2O,0.6,kg/TJ,9.443656490032799,kg +ec483a49-e2f4-326f-a480-ca8a5dd9a3bd,SESCO,II.1.1,Misiones,AR-N,annual,2013,bioetanol combustion consumption by to the public,10.523185128827999,TJ,CH4,10.0,kg/TJ,105.23185128827998,kg +a03b8faa-ef57-3f90-a397-eab63b8fb396,SESCO,II.1.1,Misiones,AR-N,annual,2013,bioetanol combustion consumption by to the public,10.523185128827999,TJ,N2O,0.6,kg/TJ,6.313911077296799,kg +004af6fe-5fa1-3448-ac59-3dfaeff62c23,SESCO,II.1.1,Rio Negro,AR-R,annual,2013,bioetanol combustion consumption by to the public,0.704133129114,TJ,CH4,10.0,kg/TJ,7.04133129114,kg +9788b1ed-d23c-3b72-8219-4eb804b71a0e,SESCO,II.1.1,Rio Negro,AR-R,annual,2013,bioetanol combustion consumption by to the public,0.704133129114,TJ,N2O,0.6,kg/TJ,0.42247987746839993,kg +ca025c77-2b7e-3621-b968-23b695a7715a,SESCO,II.1.1,San Juan,AR-J,annual,2013,bioetanol combustion consumption by to the public,10.081520638721999,TJ,CH4,10.0,kg/TJ,100.81520638721999,kg +5a50fe96-7439-3e1c-ba50-f7f5073202d2,SESCO,II.1.1,San Juan,AR-J,annual,2013,bioetanol combustion consumption by to the public,10.081520638721999,TJ,N2O,0.6,kg/TJ,6.0489123832331995,kg +5f26c3db-1fc5-35aa-b15a-7177f1269b0b,SESCO,II.1.1,San Luis,AR-D,annual,2013,bioetanol combustion consumption by to the public,6.705630479394,TJ,CH4,10.0,kg/TJ,67.05630479394,kg +1370fffa-cf78-3bbe-b629-077ea06fd01b,SESCO,II.1.1,San Luis,AR-D,annual,2013,bioetanol combustion consumption by to the public,6.705630479394,TJ,N2O,0.6,kg/TJ,4.0233782876364,kg +c7fdba60-e1c5-31ec-a170-f427bdbbeb60,SESCO,II.1.1,Santa Fe,AR-S,annual,2013,bioetanol combustion consumption by to the public,53.60767317521999,TJ,CH4,10.0,kg/TJ,536.0767317522,kg +ca0535be-5a86-35eb-b8fc-f8f55268dc8d,SESCO,II.1.1,Santa Fe,AR-S,annual,2013,bioetanol combustion consumption by to the public,53.60767317521999,TJ,N2O,0.6,kg/TJ,32.164603905132,kg +edbf36d7-7321-3d5b-8fc8-2c2a0e65e546,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2013,bioetanol combustion consumption by to the public,8.505716425722,TJ,CH4,10.0,kg/TJ,85.05716425722,kg +447c6f98-5beb-3331-89d8-687fb24f9354,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2013,bioetanol combustion consumption by to the public,8.505716425722,TJ,N2O,0.6,kg/TJ,5.103429855433199,kg +b406facb-e550-3c7a-99bd-90a29dfd3f12,SESCO,II.1.1,Tucuman,AR-T,annual,2013,bioetanol combustion consumption by to the public,8.361038592432,TJ,CH4,10.0,kg/TJ,83.61038592431998,kg +aa875a28-9cc6-3c53-9213-4df0f2585719,SESCO,II.1.1,Tucuman,AR-T,annual,2013,bioetanol combustion consumption by to the public,8.361038592432,TJ,N2O,0.6,kg/TJ,5.016623155459199,kg +b223ea76-11b4-3b2a-9803-ee24dade261f,SESCO,II.1.1,Buenos Aires,AR-B,annual,2013,bioetanol combustion consumption by to the public,15.049077608304,TJ,CH4,10.0,kg/TJ,150.49077608304,kg +9b31248a-2544-3786-aaba-b6cf05122b81,SESCO,II.1.1,Buenos Aires,AR-B,annual,2013,bioetanol combustion consumption by to the public,15.049077608304,TJ,N2O,0.6,kg/TJ,9.029446564982399,kg +0dfad364-881c-3615-9f72-c75f61bd55c8,SESCO,II.1.1,Capital Federal,AR-C,annual,2013,bioetanol combustion consumption by to the public,2.7437778717660004,TJ,CH4,10.0,kg/TJ,27.437778717660002,kg +57b3d1ba-2945-3b38-bb65-29e5cff36956,SESCO,II.1.1,Capital Federal,AR-C,annual,2013,bioetanol combustion consumption by to the public,2.7437778717660004,TJ,N2O,0.6,kg/TJ,1.6462667230596002,kg +8caeedd7-ba9a-34b8-ac06-d561db20faa2,SESCO,II.1.1,Catamarca,AR-K,annual,2013,bioetanol combustion consumption by to the public,0.651403858302,TJ,CH4,10.0,kg/TJ,6.51403858302,kg +46aa3d2b-e45d-308d-a999-7509c89209b4,SESCO,II.1.1,Catamarca,AR-K,annual,2013,bioetanol combustion consumption by to the public,0.651403858302,TJ,N2O,0.6,kg/TJ,0.3908423149812,kg +b04a0a94-e816-316b-bd0d-0d7ec9823f25,SESCO,II.1.1,Chaco,AR-H,annual,2013,bioetanol combustion consumption by to the public,1.115960935662,TJ,CH4,10.0,kg/TJ,11.159609356619999,kg +2f71a945-2378-34e4-b502-2de7d9a6d74c,SESCO,II.1.1,Chaco,AR-H,annual,2013,bioetanol combustion consumption by to the public,1.115960935662,TJ,N2O,0.6,kg/TJ,0.6695765613971999,kg +e95b5e7e-443d-342c-b909-a08d20fb8b63,SESCO,II.1.1,Corrientes,AR-W,annual,2013,bioetanol combustion consumption by to the public,2.698231461282,TJ,CH4,10.0,kg/TJ,26.982314612819998,kg +6243a5c6-e872-38d7-b357-06de2336a181,SESCO,II.1.1,Corrientes,AR-W,annual,2013,bioetanol combustion consumption by to the public,2.698231461282,TJ,N2O,0.6,kg/TJ,1.6189388767692,kg +15b181ef-209f-3529-8460-624db12a2f02,SESCO,II.1.1,Córdoba,AR-X,annual,2013,bioetanol combustion consumption by to the public,6.324620487372,TJ,CH4,10.0,kg/TJ,63.24620487372,kg +71dc620c-5a5c-3a91-b56e-2f819827cc42,SESCO,II.1.1,Córdoba,AR-X,annual,2013,bioetanol combustion consumption by to the public,6.324620487372,TJ,N2O,0.6,kg/TJ,3.7947722924232,kg +b632178c-0028-3e50-b668-3f37db1a4790,SESCO,II.1.1,Entre Rios,AR-E,annual,2013,bioetanol combustion consumption by to the public,4.101902151138,TJ,CH4,10.0,kg/TJ,41.01902151138,kg +4bb7e0a5-ede4-3e2c-940d-1df800360c9d,SESCO,II.1.1,Entre Rios,AR-E,annual,2013,bioetanol combustion consumption by to the public,4.101902151138,TJ,N2O,0.6,kg/TJ,2.4611412906827996,kg +458e2fdb-b7ac-3bf2-b9a2-4e4a90b0de1e,SESCO,II.1.1,Jujuy,AR-Y,annual,2013,bioetanol combustion consumption by to the public,0.08900018467199998,TJ,CH4,10.0,kg/TJ,0.8900018467199998,kg +4d254bff-68f2-3db5-b6fd-0c67f7cbd24c,SESCO,II.1.1,Jujuy,AR-Y,annual,2013,bioetanol combustion consumption by to the public,0.08900018467199998,TJ,N2O,0.6,kg/TJ,0.053400110803199986,kg +49a57721-59a3-3dc4-bb5b-79ef1eefc74b,SESCO,II.1.1,La Pampa,AR-L,annual,2013,bioetanol combustion consumption by to the public,0.142449454278,TJ,CH4,10.0,kg/TJ,1.4244945427799998,kg +86e853dc-c7fd-3db2-ad43-b91ed8dbad4e,SESCO,II.1.1,La Pampa,AR-L,annual,2013,bioetanol combustion consumption by to the public,0.142449454278,TJ,N2O,0.6,kg/TJ,0.08546967256679999,kg +edf4f05e-2fb3-3345-ad9f-d292997d7741,SESCO,II.1.1,La Rioja,AR-F,annual,2013,bioetanol combustion consumption by to the public,0.22046483221199997,TJ,CH4,10.0,kg/TJ,2.2046483221199997,kg +1e4e7683-7ba1-302a-ba80-d5c36a5b6da9,SESCO,II.1.1,La Rioja,AR-F,annual,2013,bioetanol combustion consumption by to the public,0.22046483221199997,TJ,N2O,0.6,kg/TJ,0.13227889932719997,kg +f98c5f0b-778b-31b4-a69d-bfbe61e4c0f9,SESCO,II.1.1,Mendoza,AR-M,annual,2013,bioetanol combustion consumption by to the public,2.636099642754,TJ,CH4,10.0,kg/TJ,26.36099642754,kg +a4ad1746-47b7-3c1c-add5-2a308d694984,SESCO,II.1.1,Mendoza,AR-M,annual,2013,bioetanol combustion consumption by to the public,2.636099642754,TJ,N2O,0.6,kg/TJ,1.5816597856524,kg +138b54d2-7ffd-30a6-b689-1fde0fba3ec0,SESCO,II.1.1,Misiones,AR-N,annual,2013,bioetanol combustion consumption by to the public,1.267046029656,TJ,CH4,10.0,kg/TJ,12.67046029656,kg +80b5f35c-6550-30dd-8ea4-8cb14fb90625,SESCO,II.1.1,Misiones,AR-N,annual,2013,bioetanol combustion consumption by to the public,1.267046029656,TJ,N2O,0.6,kg/TJ,0.7602276177935999,kg +08bc04ee-bf14-3396-b04d-4e761fcbcc1e,SESCO,II.1.1,Rio Negro,AR-R,annual,2013,bioetanol combustion consumption by to the public,0.055380216132,TJ,CH4,10.0,kg/TJ,0.5538021613199999,kg +254588ac-3a92-302c-9480-eeabdf4980b1,SESCO,II.1.1,Rio Negro,AR-R,annual,2013,bioetanol combustion consumption by to the public,0.055380216132,TJ,N2O,0.6,kg/TJ,0.0332281296792,kg +ab1f58a9-60bb-35bf-8bfb-4c4e8eac3cef,SESCO,II.1.1,San Juan,AR-J,annual,2013,bioetanol combustion consumption by to the public,2.4224464873979996,TJ,CH4,10.0,kg/TJ,24.224464873979997,kg +b50677e3-fda0-3822-957a-7528d75ba8fb,SESCO,II.1.1,San Juan,AR-J,annual,2013,bioetanol combustion consumption by to the public,2.4224464873979996,TJ,N2O,0.6,kg/TJ,1.4534678924387998,kg +78e2d74b-ca63-360c-8708-2ff4d9466ad7,SESCO,II.1.1,San Luis,AR-D,annual,2013,bioetanol combustion consumption by to the public,1.40534804547,TJ,CH4,10.0,kg/TJ,14.0534804547,kg +305d7c01-fbba-3266-8f95-6d76e5ff167f,SESCO,II.1.1,San Luis,AR-D,annual,2013,bioetanol combustion consumption by to the public,1.40534804547,TJ,N2O,0.6,kg/TJ,0.843208827282,kg +c7a8e5f8-6a90-385c-b829-f88f86fdd8a7,SESCO,II.1.1,Santa Fe,AR-S,annual,2013,bioetanol combustion consumption by to the public,9.543067501931999,TJ,CH4,10.0,kg/TJ,95.43067501931999,kg +67caa7dd-b0d7-393f-9fd6-20acea806c75,SESCO,II.1.1,Santa Fe,AR-S,annual,2013,bioetanol combustion consumption by to the public,9.543067501931999,TJ,N2O,0.6,kg/TJ,5.725840501159199,kg +a506b454-2ae5-3f8e-b9f7-808142ea8389,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2013,bioetanol combustion consumption by to the public,1.0830518908379998,TJ,CH4,10.0,kg/TJ,10.830518908379998,kg +498f1799-d8c4-3d5c-912c-5e62e3abfbfd,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2013,bioetanol combustion consumption by to the public,1.0830518908379998,TJ,N2O,0.6,kg/TJ,0.6498311345027998,kg +1d236a5e-f040-3a3b-a9d1-593634df3949,SESCO,II.1.1,Tucuman,AR-T,annual,2013,bioetanol combustion consumption by to the public,1.1563947539639998,TJ,CH4,10.0,kg/TJ,11.563947539639997,kg +2271a034-80d2-369f-98b9-365205c42e75,SESCO,II.1.1,Tucuman,AR-T,annual,2013,bioetanol combustion consumption by to the public,1.1563947539639998,TJ,N2O,0.6,kg/TJ,0.6938368523783999,kg +fb42a934-cbc6-3572-ad2c-d4a64b96b5ac,SESCO,II.5.1,Buenos Aires,AR-B,annual,2013,bioetanol combustion consumption by agriculture machines,0.17805047400000001,TJ,CH4,10.0,kg/TJ,1.78050474,kg +e6b4191a-bf8d-300f-bbe3-67f885bf792a,SESCO,II.5.1,Buenos Aires,AR-B,annual,2013,bioetanol combustion consumption by agriculture machines,0.17805047400000001,TJ,N2O,0.6,kg/TJ,0.1068302844,kg +0cf5b29d-579e-3f61-b245-d56858049d15,SESCO,II.1.1,Buenos Aires,AR-B,annual,2013,bioetanol combustion consumption by to the public,203.92169997149998,TJ,CH4,10.0,kg/TJ,2039.2169997149997,kg +e1ffcb6b-a026-31bc-8c0d-854eed27a320,SESCO,II.1.1,Buenos Aires,AR-B,annual,2013,bioetanol combustion consumption by to the public,203.92169997149998,TJ,N2O,0.6,kg/TJ,122.35301998289998,kg +b8614f78-2676-3539-ad80-134d6d4b6a26,SESCO,II.1.1,Capital Federal,AR-C,annual,2013,bioetanol combustion consumption by to the public,26.063549881559997,TJ,CH4,10.0,kg/TJ,260.6354988156,kg +1289da75-8b9a-34f8-9b3a-192e8a9c964e,SESCO,II.1.1,Capital Federal,AR-C,annual,2013,bioetanol combustion consumption by to the public,26.063549881559997,TJ,N2O,0.6,kg/TJ,15.638129928935998,kg +bf9a93f0-3906-3331-a725-55b35a310572,SESCO,II.1.1,Chaco,AR-H,annual,2013,bioetanol combustion consumption by to the public,0.22417871202,TJ,CH4,10.0,kg/TJ,2.2417871202,kg +0dec97d2-6970-3711-88be-90678e51bee0,SESCO,II.1.1,Chaco,AR-H,annual,2013,bioetanol combustion consumption by to the public,0.22417871202,TJ,N2O,0.6,kg/TJ,0.134507227212,kg +dcff42b0-b7a0-3e2e-918f-84e4e1069785,SESCO,II.1.1,Chubut,AR-U,annual,2013,bioetanol combustion consumption by to the public,60.38802950849999,TJ,CH4,10.0,kg/TJ,603.880295085,kg +1f6c50c2-edb6-3853-91d8-a181847ded9d,SESCO,II.1.1,Chubut,AR-U,annual,2013,bioetanol combustion consumption by to the public,60.38802950849999,TJ,N2O,0.6,kg/TJ,36.23281770509999,kg +5e9c3f6e-83cc-3a6c-8254-14f07efc5215,SESCO,II.1.1,Córdoba,AR-X,annual,2013,bioetanol combustion consumption by to the public,25.57849335336,TJ,CH4,10.0,kg/TJ,255.7849335336,kg +adc75b32-381b-3230-8e73-34238605cacd,SESCO,II.1.1,Córdoba,AR-X,annual,2013,bioetanol combustion consumption by to the public,25.57849335336,TJ,N2O,0.6,kg/TJ,15.347096012016,kg +f4a17320-afba-3be5-b90e-c022f8e78bb0,SESCO,II.1.1,Entre Rios,AR-E,annual,2013,bioetanol combustion consumption by to the public,4.696643011859999,TJ,CH4,10.0,kg/TJ,46.96643011859999,kg +42b85279-3c60-31a3-bf8a-15239241a030,SESCO,II.1.1,Entre Rios,AR-E,annual,2013,bioetanol combustion consumption by to the public,4.696643011859999,TJ,N2O,0.6,kg/TJ,2.8179858071159996,kg +940de736-df79-3abd-9e65-027da59331e1,SESCO,II.1.1,La Pampa,AR-L,annual,2013,bioetanol combustion consumption by to the public,9.294554287799999,TJ,CH4,10.0,kg/TJ,92.94554287799998,kg +f82f2561-5f7d-3615-b8bd-fae1722e6904,SESCO,II.1.1,La Pampa,AR-L,annual,2013,bioetanol combustion consumption by to the public,9.294554287799999,TJ,N2O,0.6,kg/TJ,5.576732572679999,kg +c5a2d17b-2527-3c43-8d85-8afd766fe861,SESCO,II.1.1,Mendoza,AR-M,annual,2013,bioetanol combustion consumption by to the public,1.35212654754,TJ,CH4,10.0,kg/TJ,13.5212654754,kg +bb3d8ab8-b101-385a-b533-8b992598dd37,SESCO,II.1.1,Mendoza,AR-M,annual,2013,bioetanol combustion consumption by to the public,1.35212654754,TJ,N2O,0.6,kg/TJ,0.811275928524,kg +3aa52d7e-b325-3f26-9302-9aab4f3258fe,SESCO,II.1.1,Neuquén,AR-Q,annual,2013,bioetanol combustion consumption by to the public,23.468725610819998,TJ,CH4,10.0,kg/TJ,234.6872561082,kg +ff3e3d1a-15d0-3cb9-8588-97d891f963e1,SESCO,II.1.1,Neuquén,AR-Q,annual,2013,bioetanol combustion consumption by to the public,23.468725610819998,TJ,N2O,0.6,kg/TJ,14.081235366491999,kg +1b721cf1-603c-3200-92e7-d39c639edabe,SESCO,II.1.1,Rio Negro,AR-R,annual,2013,bioetanol combustion consumption by to the public,43.29467656703999,TJ,CH4,10.0,kg/TJ,432.94676567039994,kg +306eb983-05a4-3fed-bb21-c8bd6f75cf9d,SESCO,II.1.1,Rio Negro,AR-R,annual,2013,bioetanol combustion consumption by to the public,43.29467656703999,TJ,N2O,0.6,kg/TJ,25.976805940223993,kg +d96a37d8-3475-35b5-9d1b-a323f98f7d42,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2013,bioetanol combustion consumption by to the public,38.11917619998,TJ,CH4,10.0,kg/TJ,381.19176199979995,kg +53a12456-b9cc-33de-bed0-1534103699f6,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2013,bioetanol combustion consumption by to the public,38.11917619998,TJ,N2O,0.6,kg/TJ,22.871505719987997,kg +4575ba7c-8611-3202-b34e-ffab72d91572,SESCO,II.1.1,Santa Fe,AR-S,annual,2013,bioetanol combustion consumption by to the public,24.914100502079997,TJ,CH4,10.0,kg/TJ,249.14100502079998,kg +9530d4a5-5ff9-37de-a7f4-4e8cd762bb84,SESCO,II.1.1,Santa Fe,AR-S,annual,2013,bioetanol combustion consumption by to the public,24.914100502079997,TJ,N2O,0.6,kg/TJ,14.948460301247998,kg +9b0d7c72-7786-3d2a-93b9-a8dec87e79ce,SESCO,II.1.1,Buenos Aires,AR-B,annual,2013,bioetanol combustion consumption by to the public,57.13028868437999,TJ,CH4,10.0,kg/TJ,571.3028868437999,kg +7f67ff6c-9a42-33ee-b638-8ec773d47ed2,SESCO,II.1.1,Buenos Aires,AR-B,annual,2013,bioetanol combustion consumption by to the public,57.13028868437999,TJ,N2O,0.6,kg/TJ,34.27817321062799,kg +43356833-b5f7-3a8e-bf69-774ccaac7ce9,SESCO,II.1.1,Capital Federal,AR-C,annual,2013,bioetanol combustion consumption by to the public,9.93314835396,TJ,CH4,10.0,kg/TJ,99.3314835396,kg +463ff531-82aa-3d65-bd03-86a1f8b83277,SESCO,II.1.1,Capital Federal,AR-C,annual,2013,bioetanol combustion consumption by to the public,9.93314835396,TJ,N2O,0.6,kg/TJ,5.959889012376,kg +99f69b7d-5568-3b5f-9dd6-47fd899e4b48,SESCO,II.1.1,Chubut,AR-U,annual,2013,bioetanol combustion consumption by to the public,10.02168404802,TJ,CH4,10.0,kg/TJ,100.21684048019999,kg +52015a22-b166-3fe2-8dc2-96a54ba77440,SESCO,II.1.1,Chubut,AR-U,annual,2013,bioetanol combustion consumption by to the public,10.02168404802,TJ,N2O,0.6,kg/TJ,6.013010428812,kg +46011b35-7d5e-31cb-99d0-663dd145a8cd,SESCO,II.1.1,Córdoba,AR-X,annual,2013,bioetanol combustion consumption by to the public,6.2045605287,TJ,CH4,10.0,kg/TJ,62.045605287,kg +18dd375d-33bc-3a6f-b04f-7f2f8fbc5a56,SESCO,II.1.1,Córdoba,AR-X,annual,2013,bioetanol combustion consumption by to the public,6.2045605287,TJ,N2O,0.6,kg/TJ,3.72273631722,kg +a58473e1-a0bf-3b1e-a25f-171f149e8379,SESCO,II.1.1,Entre Rios,AR-E,annual,2013,bioetanol combustion consumption by to the public,1.1906029409399999,TJ,CH4,10.0,kg/TJ,11.906029409399999,kg +f1084135-a0f0-3cab-9a37-dbb388bbc438,SESCO,II.1.1,Entre Rios,AR-E,annual,2013,bioetanol combustion consumption by to the public,1.1906029409399999,TJ,N2O,0.6,kg/TJ,0.7143617645639999,kg +c45aa948-1cc8-3bfb-8f68-4254d5e2a98c,SESCO,II.1.1,La Pampa,AR-L,annual,2013,bioetanol combustion consumption by to the public,2.2508174618999996,TJ,CH4,10.0,kg/TJ,22.508174618999995,kg +da10012d-b18e-320b-87e0-eb6485179314,SESCO,II.1.1,La Pampa,AR-L,annual,2013,bioetanol combustion consumption by to the public,2.2508174618999996,TJ,N2O,0.6,kg/TJ,1.3504904771399997,kg +e9b8a04e-7b91-3f9e-8952-e32760e1bb9b,SESCO,II.1.1,Mendoza,AR-M,annual,2013,bioetanol combustion consumption by to the public,0.12854144988,TJ,CH4,10.0,kg/TJ,1.2854144987999998,kg +1a250e15-c268-3d2d-99b3-6ed736af831b,SESCO,II.1.1,Mendoza,AR-M,annual,2013,bioetanol combustion consumption by to the public,0.12854144988,TJ,N2O,0.6,kg/TJ,0.077124869928,kg +6a5792fc-d8b6-3a54-b58b-01181ec8c3b9,SESCO,II.1.1,Neuquén,AR-Q,annual,2013,bioetanol combustion consumption by to the public,6.69532540878,TJ,CH4,10.0,kg/TJ,66.95325408779999,kg +d65244e4-0941-3e18-9564-d209b39618f4,SESCO,II.1.1,Neuquén,AR-Q,annual,2013,bioetanol combustion consumption by to the public,6.69532540878,TJ,N2O,0.6,kg/TJ,4.017195245268,kg +5f440fee-6ee3-3e0c-a55e-690ba1b1c9fc,SESCO,II.1.1,Rio Negro,AR-R,annual,2013,bioetanol combustion consumption by to the public,8.0957556567,TJ,CH4,10.0,kg/TJ,80.957556567,kg +a43e3b7f-ede5-39ee-861b-3e1206c6414d,SESCO,II.1.1,Rio Negro,AR-R,annual,2013,bioetanol combustion consumption by to the public,8.0957556567,TJ,N2O,0.6,kg/TJ,4.857453394019999,kg +3e2fb5ea-0582-35e1-85ca-031860303547,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2013,bioetanol combustion consumption by to the public,7.519972633919999,TJ,CH4,10.0,kg/TJ,75.1997263392,kg +4f84fa7d-00b7-30e8-b1de-e09a17dfffe0,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2013,bioetanol combustion consumption by to the public,7.519972633919999,TJ,N2O,0.6,kg/TJ,4.511983580351999,kg +289a20d1-e552-3a5b-ac25-c437729bd988,SESCO,II.1.1,Santa Fe,AR-S,annual,2013,bioetanol combustion consumption by to the public,8.589115242179998,TJ,CH4,10.0,kg/TJ,85.89115242179999,kg +46d9ebda-f9ac-392e-93ce-0568a29077ec,SESCO,II.1.1,Santa Fe,AR-S,annual,2013,bioetanol combustion consumption by to the public,8.589115242179998,TJ,N2O,0.6,kg/TJ,5.153469145307999,kg +c8de6e3a-d368-312c-9a8a-dc0554f0eff5,SESCO,II.1.1,Buenos Aires,AR-B,annual,2013,bioetanol combustion consumption by freight transport,0.00503347284,TJ,CH4,10.0,kg/TJ,0.0503347284,kg +5eca818f-8c93-327b-8a95-b418bcbde3eb,SESCO,II.1.1,Buenos Aires,AR-B,annual,2013,bioetanol combustion consumption by freight transport,0.00503347284,TJ,N2O,0.6,kg/TJ,0.003020083704,kg +7df039a5-d1d4-3f38-808f-0c89375d5200,SESCO,II.1.1,Buenos Aires,AR-B,annual,2013,bioetanol combustion consumption by to the public,1.5591239639999996,TJ,CH4,10.0,kg/TJ,15.591239639999996,kg +6defd76c-6b18-3047-9439-c47da7698c9b,SESCO,II.1.1,Buenos Aires,AR-B,annual,2013,bioetanol combustion consumption by to the public,1.5591239639999996,TJ,N2O,0.6,kg/TJ,0.9354743783999997,kg +9a5ff45a-f5a4-3329-a8c5-29f9a1f16a46,SESCO,II.1.1,Capital Federal,AR-C,annual,2013,bioetanol combustion consumption by to the public,0.47676113999999997,TJ,CH4,10.0,kg/TJ,4.7676114,kg +bd06546f-91f6-3969-88e7-a085e3519fb3,SESCO,II.1.1,Capital Federal,AR-C,annual,2013,bioetanol combustion consumption by to the public,0.47676113999999997,TJ,N2O,0.6,kg/TJ,0.28605668399999995,kg +c6418e8a-f394-3321-b4d0-841d91125e91,SESCO,II.1.1,Córdoba,AR-X,annual,2013,bioetanol combustion consumption by to the public,0.09202896,TJ,CH4,10.0,kg/TJ,0.9202896,kg +8db99f8f-c2c4-37c7-b422-06fc8869faf8,SESCO,II.1.1,Córdoba,AR-X,annual,2013,bioetanol combustion consumption by to the public,0.09202896,TJ,N2O,0.6,kg/TJ,0.055217376000000006,kg +12c821e7-8911-3aea-b489-f8bfb80d4f09,SESCO,II.1.1,Entre Rios,AR-E,annual,2013,bioetanol combustion consumption by to the public,0.0894726,TJ,CH4,10.0,kg/TJ,0.894726,kg +40e08d19-493b-356b-960c-dff5c75b5316,SESCO,II.1.1,Entre Rios,AR-E,annual,2013,bioetanol combustion consumption by to the public,0.0894726,TJ,N2O,0.6,kg/TJ,0.05368356,kg +ea6282a3-c5d6-388a-b7d5-4d9c2871f685,SESCO,II.1.1,Santa Fe,AR-S,annual,2013,bioetanol combustion consumption by to the public,0.53555742,TJ,CH4,10.0,kg/TJ,5.3555741999999995,kg +a39c1151-13bc-3295-9455-173fe8710a51,SESCO,II.1.1,Santa Fe,AR-S,annual,2013,bioetanol combustion consumption by to the public,0.53555742,TJ,N2O,0.6,kg/TJ,0.32133445199999994,kg +44134449-185d-3159-887a-61ce2a3ed5cf,SESCO,II.1.1,Buenos Aires,AR-B,annual,2013,bioetanol combustion consumption by to the public,50.30993170799999,TJ,CH4,10.0,kg/TJ,503.09931707999993,kg +28b4c3e2-18db-32d6-8abc-6ac047cdddc7,SESCO,II.1.1,Buenos Aires,AR-B,annual,2013,bioetanol combustion consumption by to the public,50.30993170799999,TJ,N2O,0.6,kg/TJ,30.185959024799995,kg +457f177a-24d8-31cf-bd58-59be79f220b3,SESCO,II.1.1,Capital Federal,AR-C,annual,2013,bioetanol combustion consumption by to the public,7.3124677799999995,TJ,CH4,10.0,kg/TJ,73.1246778,kg +c3091c87-beb2-3d6c-90f2-db026af1785d,SESCO,II.1.1,Capital Federal,AR-C,annual,2013,bioetanol combustion consumption by to the public,7.3124677799999995,TJ,N2O,0.6,kg/TJ,4.387480667999999,kg +8b65ed5d-e2f8-3b38-9215-8d0f50c0bc50,SESCO,II.1.1,Chaco,AR-H,annual,2013,bioetanol combustion consumption by to the public,0.11631438,TJ,CH4,10.0,kg/TJ,1.1631437999999998,kg +7c149d3b-a5d2-3896-b1ac-e03c5e64628f,SESCO,II.1.1,Chaco,AR-H,annual,2013,bioetanol combustion consumption by to the public,0.11631438,TJ,N2O,0.6,kg/TJ,0.06978862799999999,kg +72bdb365-4bdc-3f53-ae6a-ddfafec4fefe,SESCO,II.1.1,Córdoba,AR-X,annual,2013,bioetanol combustion consumption by to the public,10.432505159999998,TJ,CH4,10.0,kg/TJ,104.32505159999998,kg +0d3cd468-59f9-3a22-b0c6-621b44ffe395,SESCO,II.1.1,Córdoba,AR-X,annual,2013,bioetanol combustion consumption by to the public,10.432505159999998,TJ,N2O,0.6,kg/TJ,6.259503095999999,kg +faf41523-d84d-3a65-af4e-c2f4ca3d08a6,SESCO,II.1.1,Entre Rios,AR-E,annual,2013,bioetanol combustion consumption by to the public,7.25750604,TJ,CH4,10.0,kg/TJ,72.5750604,kg +7fe0eef8-c699-3d22-bf2e-17a2576c0534,SESCO,II.1.1,Entre Rios,AR-E,annual,2013,bioetanol combustion consumption by to the public,7.25750604,TJ,N2O,0.6,kg/TJ,4.3545036239999995,kg +217f020c-0de7-30d1-97fb-ee30714e74a9,SESCO,II.1.1,Rio Negro,AR-R,annual,2013,bioetanol combustion consumption by to the public,0.017894519999999997,TJ,CH4,10.0,kg/TJ,0.17894519999999997,kg +f60e8180-9ac2-3058-a727-cfc25fe76661,SESCO,II.1.1,Rio Negro,AR-R,annual,2013,bioetanol combustion consumption by to the public,0.017894519999999997,TJ,N2O,0.6,kg/TJ,0.010736711999999997,kg +5748738b-7fe9-3445-891f-828ceae19459,SESCO,II.1.1,Santa Fe,AR-S,annual,2013,bioetanol combustion consumption by to the public,5.5620002699999995,TJ,CH4,10.0,kg/TJ,55.62000269999999,kg +c92c2894-8b6b-3e15-9cc8-ba23f12807f0,SESCO,II.1.1,Santa Fe,AR-S,annual,2013,bioetanol combustion consumption by to the public,5.5620002699999995,TJ,N2O,0.6,kg/TJ,3.337200162,kg +cbc74162-5021-32e8-bca7-ce510770be47,SESCO,II.1.1,Buenos Aires,AR-B,annual,2013,bioetanol combustion consumption by to the public,5.525444321999999,TJ,CH4,10.0,kg/TJ,55.25444321999999,kg +9d748f47-65ac-322c-9eea-fc105472d937,SESCO,II.1.1,Buenos Aires,AR-B,annual,2013,bioetanol combustion consumption by to the public,5.525444321999999,TJ,N2O,0.6,kg/TJ,3.3152665931999996,kg +8c65e8fb-a3b8-3c08-bf1a-8e89a1fa754a,SESCO,II.1.1,Capital Federal,AR-C,annual,2013,bioetanol combustion consumption by to the public,0.5240537999999999,TJ,CH4,10.0,kg/TJ,5.240537999999999,kg +4e9cc5ca-1738-32a8-b706-0be58662f967,SESCO,II.1.1,Capital Federal,AR-C,annual,2013,bioetanol combustion consumption by to the public,0.5240537999999999,TJ,N2O,0.6,kg/TJ,0.31443227999999995,kg +167b8b92-37e0-338f-88e3-d6db87e593d1,SESCO,II.1.1,Chaco,AR-H,annual,2013,bioetanol combustion consumption by to the public,0.0063909,TJ,CH4,10.0,kg/TJ,0.063909,kg +5ffc931d-4661-3fb4-bea6-33e63e451093,SESCO,II.1.1,Chaco,AR-H,annual,2013,bioetanol combustion consumption by to the public,0.0063909,TJ,N2O,0.6,kg/TJ,0.0038345399999999996,kg +5fab936e-a3d9-335e-9a59-fe102856794b,SESCO,II.1.1,Córdoba,AR-X,annual,2013,bioetanol combustion consumption by to the public,0.6774353999999999,TJ,CH4,10.0,kg/TJ,6.774353999999999,kg +bcd66ff2-3102-3c27-beca-660f2de3a3e3,SESCO,II.1.1,Córdoba,AR-X,annual,2013,bioetanol combustion consumption by to the public,0.6774353999999999,TJ,N2O,0.6,kg/TJ,0.40646123999999995,kg +99aa52a7-25b7-3797-89a7-deee3ba41679,SESCO,II.1.1,Entre Rios,AR-E,annual,2013,bioetanol combustion consumption by to the public,0.6927735599999999,TJ,CH4,10.0,kg/TJ,6.927735599999999,kg +7c330355-2f5c-3183-a0da-876da009d989,SESCO,II.1.1,Entre Rios,AR-E,annual,2013,bioetanol combustion consumption by to the public,0.6927735599999999,TJ,N2O,0.6,kg/TJ,0.4156641359999999,kg +894201e6-a809-31c3-9cb4-a4a5252d9307,SESCO,II.1.1,Santa Fe,AR-S,annual,2013,bioetanol combustion consumption by to the public,0.80397522,TJ,CH4,10.0,kg/TJ,8.0397522,kg +93390aa1-1b91-3447-ab38-dc689793206e,SESCO,II.1.1,Santa Fe,AR-S,annual,2013,bioetanol combustion consumption by to the public,0.80397522,TJ,N2O,0.6,kg/TJ,0.482385132,kg +d9c93d05-259d-331d-9278-b1b27c86779c,SESCO,II.1.1,Catamarca,AR-K,annual,2013,bioetanol combustion consumption by to the public,1.1648182157999998,TJ,CH4,10.0,kg/TJ,11.648182157999997,kg +5ded5787-c463-3202-a086-7002dcbf5fd9,SESCO,II.1.1,Catamarca,AR-K,annual,2013,bioetanol combustion consumption by to the public,1.1648182157999998,TJ,N2O,0.6,kg/TJ,0.6988909294799999,kg +c71bd35c-4321-3e92-ba4c-be26ead0a1ce,SESCO,II.1.1,Chaco,AR-H,annual,2013,bioetanol combustion consumption by to the public,4.0397006718,TJ,CH4,10.0,kg/TJ,40.397006718,kg +49a576a5-16e8-3f80-83d8-20ffa90f7364,SESCO,II.1.1,Chaco,AR-H,annual,2013,bioetanol combustion consumption by to the public,4.0397006718,TJ,N2O,0.6,kg/TJ,2.42382040308,kg +a240de46-a4fe-3ae7-b423-df9b42ad2073,SESCO,II.1.1,Córdoba,AR-X,annual,2013,bioetanol combustion consumption by to the public,0.05836169879999999,TJ,CH4,10.0,kg/TJ,0.583616988,kg +fcdb7cb0-c1a9-37a2-9e4f-81dccff10a27,SESCO,II.1.1,Córdoba,AR-X,annual,2013,bioetanol combustion consumption by to the public,0.05836169879999999,TJ,N2O,0.6,kg/TJ,0.03501701927999999,kg +0ce732e2-e4b6-34a0-8083-4547c3ac8116,SESCO,II.1.1,Jujuy,AR-Y,annual,2013,bioetanol combustion consumption by to the public,3.4878848021999995,TJ,CH4,10.0,kg/TJ,34.87884802199999,kg +ccf60113-e3ed-3fe3-bc8b-0188524d27c0,SESCO,II.1.1,Jujuy,AR-Y,annual,2013,bioetanol combustion consumption by to the public,3.4878848021999995,TJ,N2O,0.6,kg/TJ,2.0927308813199996,kg +2c4ebfed-61b4-332f-b67f-5e85fe4a86e9,SESCO,II.1.1,La Rioja,AR-F,annual,2013,bioetanol combustion consumption by to the public,1.1128601987999998,TJ,CH4,10.0,kg/TJ,11.128601987999998,kg +74c67c47-b815-38e0-8918-a563dfaee1e7,SESCO,II.1.1,La Rioja,AR-F,annual,2013,bioetanol combustion consumption by to the public,1.1128601987999998,TJ,N2O,0.6,kg/TJ,0.6677161192799999,kg +d82830ba-c2c6-33fe-aeda-7a4e5424b1e8,SESCO,II.1.1,Salta,AR-A,annual,2013,bioetanol combustion consumption by to the public,6.0454974186,TJ,CH4,10.0,kg/TJ,60.454974186,kg +6cc10174-fad4-3680-a7b7-57f75267580e,SESCO,II.1.1,Salta,AR-A,annual,2013,bioetanol combustion consumption by to the public,6.0454974186,TJ,N2O,0.6,kg/TJ,3.6272984511599997,kg +2cfcc550-5982-38b9-b85c-4b55d54115b9,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2013,bioetanol combustion consumption by to the public,1.0414099367999998,TJ,CH4,10.0,kg/TJ,10.414099367999999,kg +0da21498-973c-3825-8f9a-3aa0ec063473,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2013,bioetanol combustion consumption by to the public,1.0414099367999998,TJ,N2O,0.6,kg/TJ,0.6248459620799999,kg +3a224ecf-2041-3757-bc0c-59f5ee0ef50a,SESCO,II.1.1,Tucuman,AR-T,annual,2013,bioetanol combustion consumption by to the public,3.8835837665999997,TJ,CH4,10.0,kg/TJ,38.835837665999996,kg +f076723c-371d-3be5-8104-c09369f3bc8d,SESCO,II.1.1,Tucuman,AR-T,annual,2013,bioetanol combustion consumption by to the public,3.8835837665999997,TJ,N2O,0.6,kg/TJ,2.33015025996,kg +ce101075-fa2c-301c-ae2c-6938551f4cc6,SESCO,II.1.1,Catamarca,AR-K,annual,2013,bioetanol combustion consumption by to the public,9.585225201599998,TJ,CH4,10.0,kg/TJ,95.85225201599998,kg +92230898-9401-3366-9c72-ac0e88c1c8ae,SESCO,II.1.1,Catamarca,AR-K,annual,2013,bioetanol combustion consumption by to the public,9.585225201599998,TJ,N2O,0.6,kg/TJ,5.751135120959999,kg +a57d102a-d475-3022-ab6a-706e4a09ac65,SESCO,II.1.1,Chaco,AR-H,annual,2013,bioetanol combustion consumption by to the public,3.702312279,TJ,CH4,10.0,kg/TJ,37.02312279,kg +caedfbeb-46e6-3153-a45e-d573c4163fc3,SESCO,II.1.1,Chaco,AR-H,annual,2013,bioetanol combustion consumption by to the public,3.702312279,TJ,N2O,0.6,kg/TJ,2.2213873673999998,kg +d250f383-b8fa-30b6-80b9-2dc1d573e43e,SESCO,II.1.1,Córdoba,AR-X,annual,2013,bioetanol combustion consumption by to the public,0.9187813475999999,TJ,CH4,10.0,kg/TJ,9.187813475999999,kg +dc0ff389-fafc-3fc4-80c2-8283d6080581,SESCO,II.1.1,Córdoba,AR-X,annual,2013,bioetanol combustion consumption by to the public,0.9187813475999999,TJ,N2O,0.6,kg/TJ,0.5512688085599999,kg +41351225-abdb-3cfd-acf5-fa1539a64dcd,SESCO,II.1.1,Jujuy,AR-Y,annual,2013,bioetanol combustion consumption by to the public,20.3134884318,TJ,CH4,10.0,kg/TJ,203.134884318,kg +2e4d2437-9078-3478-802b-515ae1c1e85c,SESCO,II.1.1,Jujuy,AR-Y,annual,2013,bioetanol combustion consumption by to the public,20.3134884318,TJ,N2O,0.6,kg/TJ,12.18809305908,kg +5063de35-86a6-3cef-9049-61fae7d62003,SESCO,II.1.1,La Rioja,AR-F,annual,2013,bioetanol combustion consumption by to the public,9.848197954799998,TJ,CH4,10.0,kg/TJ,98.48197954799998,kg +7b7a851e-1ef6-325c-804c-61b525eeb6e4,SESCO,II.1.1,La Rioja,AR-F,annual,2013,bioetanol combustion consumption by to the public,9.848197954799998,TJ,N2O,0.6,kg/TJ,5.908918772879999,kg +c3b1a110-3810-3356-8d04-5a45be4f1fcc,SESCO,II.1.1,Salta,AR-A,annual,2013,bioetanol combustion consumption by to the public,39.78918100079999,TJ,CH4,10.0,kg/TJ,397.89181000799994,kg +87b4727a-28cc-373c-8d4f-1fb937f2c7e8,SESCO,II.1.1,Salta,AR-A,annual,2013,bioetanol combustion consumption by to the public,39.78918100079999,TJ,N2O,0.6,kg/TJ,23.873508600479994,kg +fcf0f167-a7a9-39ff-b9e2-02f68e896cb9,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2013,bioetanol combustion consumption by to the public,11.249198271,TJ,CH4,10.0,kg/TJ,112.49198270999999,kg +77ea673d-4465-32b3-bdcc-f871ae2b0a54,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2013,bioetanol combustion consumption by to the public,11.249198271,TJ,N2O,0.6,kg/TJ,6.749518962599999,kg +a90b72d0-e8f4-3c5c-9040-9d0c6b45552b,SESCO,II.1.1,Tucuman,AR-T,annual,2013,bioetanol combustion consumption by to the public,67.12160317559999,TJ,CH4,10.0,kg/TJ,671.2160317559999,kg +f3bfffdd-d5f4-3162-aad8-a08b2554f286,SESCO,II.1.1,Tucuman,AR-T,annual,2013,bioetanol combustion consumption by to the public,67.12160317559999,TJ,N2O,0.6,kg/TJ,40.27296190535999,kg +d2d476fd-b2e1-3b9d-9fe6-49dbc50567e7,SESCO,II.1.1,Catamarca,AR-K,annual,2013,bioetanol combustion consumption by to the public,0.6177188304,TJ,CH4,10.0,kg/TJ,6.1771883039999995,kg +e60ec1af-30e8-3bfb-aaa7-77da8e00a7ba,SESCO,II.1.1,Catamarca,AR-K,annual,2013,bioetanol combustion consumption by to the public,0.6177188304,TJ,N2O,0.6,kg/TJ,0.37063129823999996,kg +e9663d33-5cd8-3c3e-bcd4-6a8bf28c6f42,SESCO,II.1.1,Chaco,AR-H,annual,2013,bioetanol combustion consumption by to the public,0.058425607799999994,TJ,CH4,10.0,kg/TJ,0.5842560779999999,kg +4a4a8e48-fb95-3c02-bc5a-d5faa4450f96,SESCO,II.1.1,Chaco,AR-H,annual,2013,bioetanol combustion consumption by to the public,0.058425607799999994,TJ,N2O,0.6,kg/TJ,0.03505536467999999,kg +31af1263-60fd-3c1f-ab31-c119d528c87a,SESCO,II.1.1,Córdoba,AR-X,annual,2013,bioetanol combustion consumption by to the public,0.149674878,TJ,CH4,10.0,kg/TJ,1.4967487800000001,kg +d7b626a4-00ca-3aa8-8e97-622929b918bd,SESCO,II.1.1,Córdoba,AR-X,annual,2013,bioetanol combustion consumption by to the public,0.149674878,TJ,N2O,0.6,kg/TJ,0.0898049268,kg +91150392-1d34-3e25-a6a9-9ee8dcf59d33,SESCO,II.1.1,Jujuy,AR-Y,annual,2013,bioetanol combustion consumption by to the public,1.2104620235999999,TJ,CH4,10.0,kg/TJ,12.104620235999999,kg +88c0b465-b60b-32fb-a3f4-eecbae56063f,SESCO,II.1.1,Jujuy,AR-Y,annual,2013,bioetanol combustion consumption by to the public,1.2104620235999999,TJ,N2O,0.6,kg/TJ,0.7262772141599999,kg +7c2157b7-3f9f-3932-9f75-73ff7b2dbedd,SESCO,II.1.1,La Rioja,AR-F,annual,2013,bioetanol combustion consumption by to the public,0.40414773419999994,TJ,CH4,10.0,kg/TJ,4.041477341999999,kg +1b0cb974-d6fc-32d3-ae6c-cf5c9e0b04c3,SESCO,II.1.1,La Rioja,AR-F,annual,2013,bioetanol combustion consumption by to the public,0.40414773419999994,TJ,N2O,0.6,kg/TJ,0.24248864051999997,kg +3afdd4cc-bda5-39a2-a8c0-a2953cc70ece,SESCO,II.1.1,Salta,AR-A,annual,2013,bioetanol combustion consumption by to the public,2.1481859988,TJ,CH4,10.0,kg/TJ,21.481859987999997,kg +22166ea5-29e4-3beb-bb60-ff7e8792dd18,SESCO,II.1.1,Salta,AR-A,annual,2013,bioetanol combustion consumption by to the public,2.1481859988,TJ,N2O,0.6,kg/TJ,1.2889115992799998,kg +fabf5490-1e43-3771-9aac-c5486b6e2d3e,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2013,bioetanol combustion consumption by to the public,1.133937387,TJ,CH4,10.0,kg/TJ,11.33937387,kg +c781928f-7046-31b4-939b-124eb9d10fff,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2013,bioetanol combustion consumption by to the public,1.133937387,TJ,N2O,0.6,kg/TJ,0.6803624322,kg +dd3f5077-cd39-306c-b04f-83bb07617f1d,SESCO,II.1.1,Tucuman,AR-T,annual,2013,bioetanol combustion consumption by to the public,4.183879375799999,TJ,CH4,10.0,kg/TJ,41.838793757999994,kg +cfa75aaa-42d4-38c6-b75d-55c62e5771bb,SESCO,II.1.1,Tucuman,AR-T,annual,2013,bioetanol combustion consumption by to the public,4.183879375799999,TJ,N2O,0.6,kg/TJ,2.5103276254799995,kg +f9f86abf-673f-3d55-9729-ee21a0303e26,SESCO,II.5.1,Capital Federal,AR-C,annual,2013,bioetanol combustion consumption by agriculture machines,0.015338159999999998,TJ,CH4,10.0,kg/TJ,0.15338159999999998,kg +77df070e-aeff-38df-9458-9cf935467ec2,SESCO,II.5.1,Capital Federal,AR-C,annual,2013,bioetanol combustion consumption by agriculture machines,0.015338159999999998,TJ,N2O,0.6,kg/TJ,0.009202895999999999,kg +8ab734d1-12b3-3f93-9365-68353ec9c2ec,SESCO,II.5.1,Santa Fe,AR-S,annual,2013,bioetanol combustion consumption by agriculture machines,1.2871272599999999,TJ,CH4,10.0,kg/TJ,12.8712726,kg +fd76383f-8cc8-31d9-9c65-eb03c0e52cef,SESCO,II.5.1,Santa Fe,AR-S,annual,2013,bioetanol combustion consumption by agriculture machines,1.2871272599999999,TJ,N2O,0.6,kg/TJ,0.7722763559999999,kg +e6b93b23-9650-32af-a22c-01eadb7629aa,SESCO,II.1.1,Buenos Aires,AR-B,annual,2013,bioetanol combustion consumption by to the public,29.456936279999997,TJ,CH4,10.0,kg/TJ,294.56936279999996,kg +c79a0e2d-d1f5-301d-beda-deb289205b3a,SESCO,II.1.1,Buenos Aires,AR-B,annual,2013,bioetanol combustion consumption by to the public,29.456936279999997,TJ,N2O,0.6,kg/TJ,17.674161767999998,kg +527ccb3a-5288-3283-9091-2af5e7dab78c,SESCO,II.1.1,Capital Federal,AR-C,annual,2013,bioetanol combustion consumption by to the public,0.40262669999999995,TJ,CH4,10.0,kg/TJ,4.026267,kg +2f47e91b-3d68-30c9-9bdc-2952f52c6f82,SESCO,II.1.1,Capital Federal,AR-C,annual,2013,bioetanol combustion consumption by to the public,0.40262669999999995,TJ,N2O,0.6,kg/TJ,0.24157601999999995,kg +b294e061-d051-34df-8e32-798c05e703b4,SESCO,II.1.1,Chaco,AR-H,annual,2013,bioetanol combustion consumption by to the public,0.8205915599999999,TJ,CH4,10.0,kg/TJ,8.205915599999999,kg +06b2246a-f171-3cec-ad17-d37dd4993bfd,SESCO,II.1.1,Chaco,AR-H,annual,2013,bioetanol combustion consumption by to the public,0.8205915599999999,TJ,N2O,0.6,kg/TJ,0.4923549359999999,kg +7340b9dc-3e90-39b0-82a5-da728dea4919,SESCO,II.1.1,Entre Rios,AR-E,annual,2013,bioetanol combustion consumption by to the public,0.8845005599999999,TJ,CH4,10.0,kg/TJ,8.845005599999999,kg +b79cfd5c-81ed-301f-ac09-d734b738f8e4,SESCO,II.1.1,Entre Rios,AR-E,annual,2013,bioetanol combustion consumption by to the public,0.8845005599999999,TJ,N2O,0.6,kg/TJ,0.5307003359999999,kg +e96556dc-730e-3327-8fec-b87996706489,SESCO,II.1.1,Mendoza,AR-M,annual,2013,bioetanol combustion consumption by to the public,1.87636824,TJ,CH4,10.0,kg/TJ,18.7636824,kg +06d8082f-ebcf-363d-a6a3-b72e4eba771b,SESCO,II.1.1,Mendoza,AR-M,annual,2013,bioetanol combustion consumption by to the public,1.87636824,TJ,N2O,0.6,kg/TJ,1.125820944,kg +0a0f194b-e3d2-32c8-8f79-76624d4c1a67,SESCO,II.1.1,Misiones,AR-N,annual,2013,bioetanol combustion consumption by to the public,0.48698657999999995,TJ,CH4,10.0,kg/TJ,4.8698657999999995,kg +9203577d-b1fc-38ea-8282-f11a54c11d3f,SESCO,II.1.1,Misiones,AR-N,annual,2013,bioetanol combustion consumption by to the public,0.48698657999999995,TJ,N2O,0.6,kg/TJ,0.292191948,kg +b423b4c4-410b-3858-be9c-5bbde34666c3,SESCO,II.1.1,Neuquén,AR-Q,annual,2013,bioetanol combustion consumption by to the public,0.39495761999999995,TJ,CH4,10.0,kg/TJ,3.9495761999999996,kg +4da8d44f-2620-3db1-89a1-624ced0a4752,SESCO,II.1.1,Neuquén,AR-Q,annual,2013,bioetanol combustion consumption by to the public,0.39495761999999995,TJ,N2O,0.6,kg/TJ,0.23697457199999997,kg +b397c06b-5236-31de-97fd-091da0b60faf,SESCO,II.1.1,Santa Fe,AR-S,annual,2013,bioetanol combustion consumption by to the public,0.008947259999999999,TJ,CH4,10.0,kg/TJ,0.08947259999999999,kg +520e5680-5b76-3fc9-942e-e1ded6e8ac9b,SESCO,II.1.1,Santa Fe,AR-S,annual,2013,bioetanol combustion consumption by to the public,0.008947259999999999,TJ,N2O,0.6,kg/TJ,0.005368355999999999,kg +ce9a127c-561c-3efb-8f67-b002a3d33369,SESCO,II.1.1,Tucuman,AR-T,annual,2013,bioetanol combustion consumption by to the public,0.49849019999999994,TJ,CH4,10.0,kg/TJ,4.984901999999999,kg +b8dce79e-6a87-3aad-84fe-b2b2be299d6f,SESCO,II.1.1,Tucuman,AR-T,annual,2013,bioetanol combustion consumption by to the public,0.49849019999999994,TJ,N2O,0.6,kg/TJ,0.29909411999999996,kg +3beb26b1-c947-321f-9290-baf125646b33,SESCO,II.1.1,Buenos Aires,AR-B,annual,2013,bioetanol combustion consumption by to the public,589.3304526,TJ,CH4,10.0,kg/TJ,5893.304526,kg +64f8f682-3f6e-30d6-a9c0-1ebd4ada7c88,SESCO,II.1.1,Buenos Aires,AR-B,annual,2013,bioetanol combustion consumption by to the public,589.3304526,TJ,N2O,0.6,kg/TJ,353.59827155999994,kg +cae4a9d1-9143-3be6-8411-c48fbb428311,SESCO,II.1.1,Capital Federal,AR-C,annual,2013,bioetanol combustion consumption by to the public,171.59438681999998,TJ,CH4,10.0,kg/TJ,1715.9438681999998,kg +a5ec758b-07bd-33bd-aa01-1696c1b454ca,SESCO,II.1.1,Capital Federal,AR-C,annual,2013,bioetanol combustion consumption by to the public,171.59438681999998,TJ,N2O,0.6,kg/TJ,102.95663209199999,kg +1bffde3d-d7be-30b7-941c-9356e8749f20,SESCO,II.1.1,Catamarca,AR-K,annual,2013,bioetanol combustion consumption by to the public,2.2879422,TJ,CH4,10.0,kg/TJ,22.879421999999998,kg +9e852807-f8ee-3fbc-a63b-ef5a21e0aa79,SESCO,II.1.1,Catamarca,AR-K,annual,2013,bioetanol combustion consumption by to the public,2.2879422,TJ,N2O,0.6,kg/TJ,1.3727653199999998,kg +84201e6d-2fb4-3ef2-952d-2214a4a2e65a,SESCO,II.1.1,Chaco,AR-H,annual,2013,bioetanol combustion consumption by to the public,33.20456004,TJ,CH4,10.0,kg/TJ,332.04560039999996,kg +7cd93ad4-b061-3d1a-b398-885292ab3a0e,SESCO,II.1.1,Chaco,AR-H,annual,2013,bioetanol combustion consumption by to the public,33.20456004,TJ,N2O,0.6,kg/TJ,19.922736024,kg +abe46538-e3eb-35c7-898b-f0465a3702aa,SESCO,II.1.1,Chubut,AR-U,annual,2013,bioetanol combustion consumption by to the public,1.72426482,TJ,CH4,10.0,kg/TJ,17.242648199999998,kg +1d54af5b-6475-34f3-9b6f-a4a68d3cf21d,SESCO,II.1.1,Chubut,AR-U,annual,2013,bioetanol combustion consumption by to the public,1.72426482,TJ,N2O,0.6,kg/TJ,1.034558892,kg +24817aaa-da8d-3456-a411-809ac4173999,SESCO,II.1.1,Corrientes,AR-W,annual,2013,bioetanol combustion consumption by to the public,33.98808438,TJ,CH4,10.0,kg/TJ,339.8808438,kg +93b31ff4-a70c-3cc8-a0dd-e596b7ffb5cf,SESCO,II.1.1,Corrientes,AR-W,annual,2013,bioetanol combustion consumption by to the public,33.98808438,TJ,N2O,0.6,kg/TJ,20.392850627999998,kg +53921225-e5cc-3735-94cf-6bf61d8b21fe,SESCO,II.1.1,Córdoba,AR-X,annual,2013,bioetanol combustion consumption by to the public,122.60046924,TJ,CH4,10.0,kg/TJ,1226.0046923999998,kg +86d389b1-6fd6-31d5-b1fe-0ba7c3d3220b,SESCO,II.1.1,Córdoba,AR-X,annual,2013,bioetanol combustion consumption by to the public,122.60046924,TJ,N2O,0.6,kg/TJ,73.56028154399999,kg +5d3956cf-4224-34af-a52e-ebc91703cfbe,SESCO,II.1.1,Entre Rios,AR-E,annual,2013,bioetanol combustion consumption by to the public,38.72757581999999,TJ,CH4,10.0,kg/TJ,387.2757581999999,kg +48369f8f-883d-33ac-8847-e35f3478a3d1,SESCO,II.1.1,Entre Rios,AR-E,annual,2013,bioetanol combustion consumption by to the public,38.72757581999999,TJ,N2O,0.6,kg/TJ,23.236545491999994,kg +cb53a59d-bd04-3f1f-9fe7-37ab10230db5,SESCO,II.1.1,Formosa,AR-P,annual,2013,bioetanol combustion consumption by to the public,17.64910944,TJ,CH4,10.0,kg/TJ,176.4910944,kg +f6e54bfd-6f18-34c7-bd1f-9b338d7a3fd8,SESCO,II.1.1,Formosa,AR-P,annual,2013,bioetanol combustion consumption by to the public,17.64910944,TJ,N2O,0.6,kg/TJ,10.589465664,kg +61f1c6fc-abbf-3cc0-9d28-e4b07ee3efb0,SESCO,II.1.1,Jujuy,AR-Y,annual,2013,bioetanol combustion consumption by to the public,8.44749162,TJ,CH4,10.0,kg/TJ,84.4749162,kg +75da9c3b-f239-3ec1-8acb-38eb3396c23b,SESCO,II.1.1,Jujuy,AR-Y,annual,2013,bioetanol combustion consumption by to the public,8.44749162,TJ,N2O,0.6,kg/TJ,5.068494971999999,kg +47678b9a-633f-3681-b01d-ad739d4d8c8b,SESCO,II.1.1,La Pampa,AR-L,annual,2013,bioetanol combustion consumption by to the public,11.368132919999999,TJ,CH4,10.0,kg/TJ,113.6813292,kg +6d9cb162-3491-3539-af93-cd7df6d94300,SESCO,II.1.1,La Pampa,AR-L,annual,2013,bioetanol combustion consumption by to the public,11.368132919999999,TJ,N2O,0.6,kg/TJ,6.820879751999999,kg +c93678fa-cbf9-3d8d-9bc2-48c025743b11,SESCO,II.1.1,La Rioja,AR-F,annual,2013,bioetanol combustion consumption by to the public,11.21347314,TJ,CH4,10.0,kg/TJ,112.13473139999999,kg +aa8399bb-4a3f-3f4a-9fc0-501baf6f88ea,SESCO,II.1.1,La Rioja,AR-F,annual,2013,bioetanol combustion consumption by to the public,11.21347314,TJ,N2O,0.6,kg/TJ,6.728083883999999,kg +6a643391-a42e-39fa-8040-affa326f9916,SESCO,II.1.1,Mendoza,AR-M,annual,2013,bioetanol combustion consumption by to the public,28.863860759999994,TJ,CH4,10.0,kg/TJ,288.63860759999994,kg +890e00c4-8ce3-3a5d-8e4c-b6f9255a277c,SESCO,II.1.1,Mendoza,AR-M,annual,2013,bioetanol combustion consumption by to the public,28.863860759999994,TJ,N2O,0.6,kg/TJ,17.318316455999994,kg +4694303c-53d2-313a-83bf-b5a16d5bd4e2,SESCO,II.1.1,Misiones,AR-N,annual,2013,bioetanol combustion consumption by to the public,49.146021,TJ,CH4,10.0,kg/TJ,491.46020999999996,kg +362c1879-309d-3f7e-ada6-c37174678992,SESCO,II.1.1,Misiones,AR-N,annual,2013,bioetanol combustion consumption by to the public,49.146021,TJ,N2O,0.6,kg/TJ,29.4876126,kg +9469f9d5-fbc0-309e-bb8f-fbb566453ae3,SESCO,II.1.1,Neuquén,AR-Q,annual,2013,bioetanol combustion consumption by to the public,13.43239362,TJ,CH4,10.0,kg/TJ,134.3239362,kg +f621c186-2d19-3954-8cad-13a632859a08,SESCO,II.1.1,Neuquén,AR-Q,annual,2013,bioetanol combustion consumption by to the public,13.43239362,TJ,N2O,0.6,kg/TJ,8.059436172,kg +92febf44-6820-3347-b1a1-4e133efa538c,SESCO,II.1.1,Rio Negro,AR-R,annual,2013,bioetanol combustion consumption by to the public,6.84209754,TJ,CH4,10.0,kg/TJ,68.4209754,kg +ff168840-ac2d-3fc4-9662-e76c92ce555b,SESCO,II.1.1,Rio Negro,AR-R,annual,2013,bioetanol combustion consumption by to the public,6.84209754,TJ,N2O,0.6,kg/TJ,4.105258524,kg +b75c9ea3-8353-3dbc-b377-451d8ebc28f5,SESCO,II.1.1,Salta,AR-A,annual,2013,bioetanol combustion consumption by to the public,11.950982999999999,TJ,CH4,10.0,kg/TJ,119.50983,kg +107d699d-d616-3f65-afe5-5b69d08ebf11,SESCO,II.1.1,Salta,AR-A,annual,2013,bioetanol combustion consumption by to the public,11.950982999999999,TJ,N2O,0.6,kg/TJ,7.170589799999999,kg +78915ef0-72b2-35a1-818e-d871462bba93,SESCO,II.1.1,San Juan,AR-J,annual,2013,bioetanol combustion consumption by to the public,8.39252988,TJ,CH4,10.0,kg/TJ,83.9252988,kg +5d138792-54ac-3b57-8b01-9e9ccf136a55,SESCO,II.1.1,San Juan,AR-J,annual,2013,bioetanol combustion consumption by to the public,8.39252988,TJ,N2O,0.6,kg/TJ,5.035517928,kg +b6ecd65e-3039-3123-b579-9f527b92c97c,SESCO,II.1.1,San Luis,AR-D,annual,2013,bioetanol combustion consumption by to the public,0.8487115199999998,TJ,CH4,10.0,kg/TJ,8.487115199999998,kg +3345c638-7ec3-3fdd-8852-d2d58b158259,SESCO,II.1.1,San Luis,AR-D,annual,2013,bioetanol combustion consumption by to the public,0.8487115199999998,TJ,N2O,0.6,kg/TJ,0.5092269119999999,kg +cd08454c-f134-3838-80b2-2723ab398521,SESCO,II.1.1,Santa Fe,AR-S,annual,2013,bioetanol combustion consumption by to the public,137.0911959,TJ,CH4,10.0,kg/TJ,1370.911959,kg +a4ec1d7b-1e38-331e-93ba-900fdb916cb6,SESCO,II.1.1,Santa Fe,AR-S,annual,2013,bioetanol combustion consumption by to the public,137.0911959,TJ,N2O,0.6,kg/TJ,82.25471754,kg +1978498f-4a8f-3cff-ba19-a039583f9132,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2013,bioetanol combustion consumption by to the public,14.461328519999997,TJ,CH4,10.0,kg/TJ,144.61328519999998,kg +88114f84-c01f-3a66-8978-5582b001a0b8,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2013,bioetanol combustion consumption by to the public,14.461328519999997,TJ,N2O,0.6,kg/TJ,8.676797111999997,kg +d490bff0-a695-3c83-8ce5-a4555d4b82b9,SESCO,II.1.1,Tucuman,AR-T,annual,2013,bioetanol combustion consumption by to the public,32.89779684,TJ,CH4,10.0,kg/TJ,328.9779684,kg +816d9784-3f98-366d-9a81-fc21e292bce0,SESCO,II.1.1,Tucuman,AR-T,annual,2013,bioetanol combustion consumption by to the public,32.89779684,TJ,N2O,0.6,kg/TJ,19.738678103999998,kg +3768593e-81d6-333d-98df-b70455f2618f,SESCO,II.1.1,Buenos Aires,AR-B,annual,2013,bioetanol combustion consumption by to the public,260.07000641999997,TJ,CH4,10.0,kg/TJ,2600.7000642,kg +ea4d81ef-5030-396a-8065-502e7b443857,SESCO,II.1.1,Buenos Aires,AR-B,annual,2013,bioetanol combustion consumption by to the public,260.07000641999997,TJ,N2O,0.6,kg/TJ,156.04200385199997,kg +308eeeb4-b4c9-3488-ad80-b519e157b9fa,SESCO,II.1.1,Capital Federal,AR-C,annual,2013,bioetanol combustion consumption by to the public,105.60195341999999,TJ,CH4,10.0,kg/TJ,1056.0195342,kg +40d79b21-51a0-3f6f-a07b-b47eb4afb70e,SESCO,II.1.1,Capital Federal,AR-C,annual,2013,bioetanol combustion consumption by to the public,105.60195341999999,TJ,N2O,0.6,kg/TJ,63.361172051999986,kg +2904936b-5f69-3a05-82f0-2b4b5eb1edf7,SESCO,II.1.1,Catamarca,AR-K,annual,2013,bioetanol combustion consumption by to the public,1.3088563199999999,TJ,CH4,10.0,kg/TJ,13.0885632,kg +02765592-4fc2-360e-a6f2-04c039753b00,SESCO,II.1.1,Catamarca,AR-K,annual,2013,bioetanol combustion consumption by to the public,1.3088563199999999,TJ,N2O,0.6,kg/TJ,0.7853137919999998,kg +9ab1d1fd-3326-3bdb-aa01-c92e144fadec,SESCO,II.1.1,Chaco,AR-H,annual,2013,bioetanol combustion consumption by to the public,9.60807906,TJ,CH4,10.0,kg/TJ,96.0807906,kg +937d1d30-cfea-338b-9051-9c361ffddb91,SESCO,II.1.1,Chaco,AR-H,annual,2013,bioetanol combustion consumption by to the public,9.60807906,TJ,N2O,0.6,kg/TJ,5.764847435999999,kg +a9082e60-2f6d-3a96-82c9-43a65cb7bba8,SESCO,II.1.1,Chubut,AR-U,annual,2013,bioetanol combustion consumption by to the public,0.8244260999999998,TJ,CH4,10.0,kg/TJ,8.244260999999998,kg +b544acbb-6ee1-3d0e-bfd1-94bb4667bbba,SESCO,II.1.1,Chubut,AR-U,annual,2013,bioetanol combustion consumption by to the public,0.8244260999999998,TJ,N2O,0.6,kg/TJ,0.4946556599999999,kg +43123f28-0d97-3aa3-b3cd-5905079bf2b4,SESCO,II.1.1,Corrientes,AR-W,annual,2013,bioetanol combustion consumption by to the public,11.00768616,TJ,CH4,10.0,kg/TJ,110.0768616,kg +d4439030-a301-332f-a4c1-f34b9648d10f,SESCO,II.1.1,Corrientes,AR-W,annual,2013,bioetanol combustion consumption by to the public,11.00768616,TJ,N2O,0.6,kg/TJ,6.604611696,kg +55cb300c-60d9-30a3-9a73-d84f7a8c26b6,SESCO,II.1.1,Córdoba,AR-X,annual,2013,bioetanol combustion consumption by to the public,43.65751608,TJ,CH4,10.0,kg/TJ,436.5751608,kg +d2a3f0a2-4d60-3830-bb76-452420fa6e93,SESCO,II.1.1,Córdoba,AR-X,annual,2013,bioetanol combustion consumption by to the public,43.65751608,TJ,N2O,0.6,kg/TJ,26.194509648,kg +376935f5-16ff-361d-8c80-2d4c6261ff45,SESCO,II.1.1,Entre Rios,AR-E,annual,2013,bioetanol combustion consumption by to the public,14.966209619999999,TJ,CH4,10.0,kg/TJ,149.66209619999998,kg +e2082b7e-591a-3147-9fa0-416acd11a7dd,SESCO,II.1.1,Entre Rios,AR-E,annual,2013,bioetanol combustion consumption by to the public,14.966209619999999,TJ,N2O,0.6,kg/TJ,8.979725771999998,kg +52ad136f-a3c6-395a-881a-0fd537744aac,SESCO,II.1.1,Formosa,AR-P,annual,2013,bioetanol combustion consumption by to the public,5.7569227199999995,TJ,CH4,10.0,kg/TJ,57.56922719999999,kg +5aeac293-d18e-3830-b1f9-f4b4f57c3ead,SESCO,II.1.1,Formosa,AR-P,annual,2013,bioetanol combustion consumption by to the public,5.7569227199999995,TJ,N2O,0.6,kg/TJ,3.4541536319999997,kg +c24439e0-3cd1-3c39-9517-76b4d9a53feb,SESCO,II.1.1,Jujuy,AR-Y,annual,2013,bioetanol combustion consumption by to the public,1.9607281199999997,TJ,CH4,10.0,kg/TJ,19.607281199999996,kg +1338977a-5a40-3199-ab1e-ac8f541e34a8,SESCO,II.1.1,Jujuy,AR-Y,annual,2013,bioetanol combustion consumption by to the public,1.9607281199999997,TJ,N2O,0.6,kg/TJ,1.1764368719999998,kg +f7ff3bbc-db16-31be-aaf5-d057052409d0,SESCO,II.1.1,La Pampa,AR-L,annual,2013,bioetanol combustion consumption by to the public,5.1574563,TJ,CH4,10.0,kg/TJ,51.574563,kg +c2dc9c03-1c89-322e-94dd-106166ede3ab,SESCO,II.1.1,La Pampa,AR-L,annual,2013,bioetanol combustion consumption by to the public,5.1574563,TJ,N2O,0.6,kg/TJ,3.09447378,kg +3f493d17-2798-34df-872c-d6c80817440d,SESCO,II.1.1,La Rioja,AR-F,annual,2013,bioetanol combustion consumption by to the public,2.9053031399999996,TJ,CH4,10.0,kg/TJ,29.053031399999995,kg +2b1afeaf-4cb0-3d2e-b1dc-8ce2e678be95,SESCO,II.1.1,La Rioja,AR-F,annual,2013,bioetanol combustion consumption by to the public,2.9053031399999996,TJ,N2O,0.6,kg/TJ,1.7431818839999997,kg +1f4fa0a3-3a7e-3ecb-946b-8b3ce43f97bb,SESCO,II.1.1,Mendoza,AR-M,annual,2013,bioetanol combustion consumption by to the public,11.43715464,TJ,CH4,10.0,kg/TJ,114.3715464,kg +9fd1e305-72ab-3762-9397-0a66a3ba52be,SESCO,II.1.1,Mendoza,AR-M,annual,2013,bioetanol combustion consumption by to the public,11.43715464,TJ,N2O,0.6,kg/TJ,6.862292783999999,kg +0aafb5d8-4776-3a98-99a1-7a3ff65779bd,SESCO,II.1.1,Misiones,AR-N,annual,2013,bioetanol combustion consumption by to the public,9.473870159999999,TJ,CH4,10.0,kg/TJ,94.73870159999998,kg +0ab0bc17-4d1c-3093-bf66-7492b338fec9,SESCO,II.1.1,Misiones,AR-N,annual,2013,bioetanol combustion consumption by to the public,9.473870159999999,TJ,N2O,0.6,kg/TJ,5.684322095999999,kg +a460fe51-cd3e-3334-850e-4600e786b12b,SESCO,II.1.1,Neuquén,AR-Q,annual,2013,bioetanol combustion consumption by to the public,5.03475102,TJ,CH4,10.0,kg/TJ,50.3475102,kg +8325ed87-14f6-39e7-aea8-9142059ab144,SESCO,II.1.1,Neuquén,AR-Q,annual,2013,bioetanol combustion consumption by to the public,5.03475102,TJ,N2O,0.6,kg/TJ,3.020850612,kg +6643556b-cfa8-325b-9abc-3cfb26d8e8c3,SESCO,II.1.1,Rio Negro,AR-R,annual,2013,bioetanol combustion consumption by to the public,3.04718112,TJ,CH4,10.0,kg/TJ,30.471811199999998,kg +f8ece5d0-961b-3c03-a5d1-58693867bc6b,SESCO,II.1.1,Rio Negro,AR-R,annual,2013,bioetanol combustion consumption by to the public,3.04718112,TJ,N2O,0.6,kg/TJ,1.828308672,kg +7d7e662d-38f7-39db-a30f-a1cadd2c1018,SESCO,II.1.1,Salta,AR-A,annual,2013,bioetanol combustion consumption by to the public,3.4268005799999997,TJ,CH4,10.0,kg/TJ,34.2680058,kg +8aeeb390-684a-3578-8406-e37a2cf2a6c1,SESCO,II.1.1,Salta,AR-A,annual,2013,bioetanol combustion consumption by to the public,3.4268005799999997,TJ,N2O,0.6,kg/TJ,2.0560803479999996,kg +14dfbe9a-be07-3a25-9531-4f1980680c09,SESCO,II.1.1,San Juan,AR-J,annual,2013,bioetanol combustion consumption by to the public,1.3024654199999999,TJ,CH4,10.0,kg/TJ,13.024654199999999,kg +4625ff0e-d78f-3711-b43e-08bac42aa392,SESCO,II.1.1,San Juan,AR-J,annual,2013,bioetanol combustion consumption by to the public,1.3024654199999999,TJ,N2O,0.6,kg/TJ,0.7814792519999999,kg +0b85ddb0-9f45-3f13-85ec-9bea1c1fa84c,SESCO,II.1.1,San Luis,AR-D,annual,2013,bioetanol combustion consumption by to the public,1.3356980999999999,TJ,CH4,10.0,kg/TJ,13.356981,kg +714948e3-a7c2-3eb7-be29-6a559d74f7f6,SESCO,II.1.1,San Luis,AR-D,annual,2013,bioetanol combustion consumption by to the public,1.3356980999999999,TJ,N2O,0.6,kg/TJ,0.80141886,kg +8a23b1d0-4cce-33df-b18d-ade6b6b96aba,SESCO,II.1.1,Santa Fe,AR-S,annual,2013,bioetanol combustion consumption by to the public,57.258629459999995,TJ,CH4,10.0,kg/TJ,572.5862946,kg +09d7f6ae-1088-33b5-8e46-eb7e4afce58c,SESCO,II.1.1,Santa Fe,AR-S,annual,2013,bioetanol combustion consumption by to the public,57.258629459999995,TJ,N2O,0.6,kg/TJ,34.355177676,kg +20e4699b-ce71-372f-973c-2433b3b618e3,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2013,bioetanol combustion consumption by to the public,5.138283599999999,TJ,CH4,10.0,kg/TJ,51.382836,kg +6a37034e-8066-3fe1-b53e-d527f254cfbf,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2013,bioetanol combustion consumption by to the public,5.138283599999999,TJ,N2O,0.6,kg/TJ,3.0829701599999995,kg +8f937c5a-ee81-3e40-abdd-df6e668baadb,SESCO,II.1.1,Tucuman,AR-T,annual,2013,bioetanol combustion consumption by to the public,10.251003599999999,TJ,CH4,10.0,kg/TJ,102.51003599999999,kg +899f7f33-17a4-38d2-bb27-c26899eb890c,SESCO,II.1.1,Tucuman,AR-T,annual,2013,bioetanol combustion consumption by to the public,10.251003599999999,TJ,N2O,0.6,kg/TJ,6.150602159999999,kg +f359043e-4d21-3300-9afa-81bb18e00ffd,SESCO,II.5.1,Buenos Aires,AR-B,annual,2013,bioetanol combustion consumption by agriculture machines,0.16488521999999997,TJ,CH4,10.0,kg/TJ,1.6488521999999997,kg +81b35096-1fe4-3369-a0da-23c16e2c7646,SESCO,II.5.1,Buenos Aires,AR-B,annual,2013,bioetanol combustion consumption by agriculture machines,0.16488521999999997,TJ,N2O,0.6,kg/TJ,0.09893113199999998,kg +ad51910d-dfcc-39e1-a673-3bb4e1bb2137,SESCO,II.5.1,Chubut,AR-U,annual,2013,bioetanol combustion consumption by agriculture machines,0.5023247399999999,TJ,CH4,10.0,kg/TJ,5.023247399999999,kg +0f23bb04-e20a-33b2-8e74-298ed38fa104,SESCO,II.5.1,Chubut,AR-U,annual,2013,bioetanol combustion consumption by agriculture machines,0.5023247399999999,TJ,N2O,0.6,kg/TJ,0.30139484399999994,kg +5f3a703e-2a41-3b03-909c-4bce0b7634f5,SESCO,II.5.1,Entre Rios,AR-E,annual,2013,bioetanol combustion consumption by agriculture machines,0.14826888,TJ,CH4,10.0,kg/TJ,1.4826888,kg +e858175f-77b1-38da-be14-65f4afdc5867,SESCO,II.5.1,Entre Rios,AR-E,annual,2013,bioetanol combustion consumption by agriculture machines,0.14826888,TJ,N2O,0.6,kg/TJ,0.08896132799999999,kg +e0302f56-6835-3034-8a82-54009ec277c8,SESCO,II.5.1,La Pampa,AR-L,annual,2013,bioetanol combustion consumption by agriculture machines,0.03451086,TJ,CH4,10.0,kg/TJ,0.3451086,kg +768cb470-2cbf-3e80-b63a-6ab356c23ed0,SESCO,II.5.1,La Pampa,AR-L,annual,2013,bioetanol combustion consumption by agriculture machines,0.03451086,TJ,N2O,0.6,kg/TJ,0.020706515999999998,kg +e8ba450d-2582-386d-acb5-7e84a0154575,SESCO,II.5.1,Santa Fe,AR-S,annual,2013,bioetanol combustion consumption by agriculture machines,1.1695346999999998,TJ,CH4,10.0,kg/TJ,11.695346999999998,kg +c685c172-ca85-3dd1-8412-981782179bec,SESCO,II.5.1,Santa Fe,AR-S,annual,2013,bioetanol combustion consumption by agriculture machines,1.1695346999999998,TJ,N2O,0.6,kg/TJ,0.7017208199999999,kg +00ab2c97-ae88-306f-828a-679a00482044,SESCO,II.5.1,Santiago del Estero,AR-G,annual,2013,bioetanol combustion consumption by agriculture machines,0.01661634,TJ,CH4,10.0,kg/TJ,0.16616340000000002,kg +d9fbcf2f-9315-320e-bd26-31eef331e289,SESCO,II.5.1,Santiago del Estero,AR-G,annual,2013,bioetanol combustion consumption by agriculture machines,0.01661634,TJ,N2O,0.6,kg/TJ,0.009969804,kg +b0d08cf3-3fcc-371c-a5df-3d1a26d76157,SESCO,II.5.1,Buenos Aires,AR-B,annual,2013,bioetanol combustion consumption by agriculture machines,0.035789039999999994,TJ,CH4,10.0,kg/TJ,0.35789039999999994,kg +452a4ee3-f047-351f-9d5a-e5c7fa286b6f,SESCO,II.5.1,Buenos Aires,AR-B,annual,2013,bioetanol combustion consumption by agriculture machines,0.035789039999999994,TJ,N2O,0.6,kg/TJ,0.021473423999999994,kg +8c140160-b7ad-32d1-8022-5ec9c3471b21,SESCO,II.5.1,Santa Fe,AR-S,annual,2013,bioetanol combustion consumption by agriculture machines,0.08435988,TJ,CH4,10.0,kg/TJ,0.8435988,kg +a3cc05ac-e069-34f8-9295-6171752b2c37,SESCO,II.5.1,Santa Fe,AR-S,annual,2013,bioetanol combustion consumption by agriculture machines,0.08435988,TJ,N2O,0.6,kg/TJ,0.050615928,kg +b5fef9a7-72ad-3e19-9ba5-5cd9f7c61a17,SESCO,II.1.1,Buenos Aires,AR-B,annual,2013,bioetanol combustion consumption by to the public,1522.2459146399997,TJ,CH4,10.0,kg/TJ,15222.459146399997,kg +e5997173-5a59-3a68-9ac2-5b2b4b7dc5cc,SESCO,II.1.1,Buenos Aires,AR-B,annual,2013,bioetanol combustion consumption by to the public,1522.2459146399997,TJ,N2O,0.6,kg/TJ,913.3475487839997,kg +b1f11113-d14c-338a-b7f7-69d968364df5,SESCO,II.1.1,Capital Federal,AR-C,annual,2013,bioetanol combustion consumption by to the public,312.48944639999996,TJ,CH4,10.0,kg/TJ,3124.8944639999995,kg +47d5ddd9-dcae-3442-a222-7fa9f5e45de6,SESCO,II.1.1,Capital Federal,AR-C,annual,2013,bioetanol combustion consumption by to the public,312.48944639999996,TJ,N2O,0.6,kg/TJ,187.49366783999997,kg +ed17d629-f71f-330d-a059-516b009b44ef,SESCO,II.1.1,Catamarca,AR-K,annual,2013,bioetanol combustion consumption by to the public,25.737432479999995,TJ,CH4,10.0,kg/TJ,257.37432479999995,kg +5e0d4c3b-8dbc-3aad-804f-7e5d45fa1d99,SESCO,II.1.1,Catamarca,AR-K,annual,2013,bioetanol combustion consumption by to the public,25.737432479999995,TJ,N2O,0.6,kg/TJ,15.442459487999997,kg +55af5287-a8fb-372b-b6fa-009cf2793f25,SESCO,II.1.1,Chaco,AR-H,annual,2013,bioetanol combustion consumption by to the public,82.58832251999999,TJ,CH4,10.0,kg/TJ,825.8832252,kg +5a0c1cbc-8498-36bc-b434-9c266c5ea3df,SESCO,II.1.1,Chaco,AR-H,annual,2013,bioetanol combustion consumption by to the public,82.58832251999999,TJ,N2O,0.6,kg/TJ,49.55299351199999,kg +39d54a3b-324d-3e8f-818a-03af80178fc9,SESCO,II.1.1,Chubut,AR-U,annual,2013,bioetanol combustion consumption by to the public,148.70985209999998,TJ,CH4,10.0,kg/TJ,1487.098521,kg +c16b9bf2-168c-3c20-bd19-9dca1c338b81,SESCO,II.1.1,Chubut,AR-U,annual,2013,bioetanol combustion consumption by to the public,148.70985209999998,TJ,N2O,0.6,kg/TJ,89.22591125999999,kg +f2a947f1-214c-38ec-b22c-cf9229e910e0,SESCO,II.1.1,Corrientes,AR-W,annual,2013,bioetanol combustion consumption by to the public,91.08182862,TJ,CH4,10.0,kg/TJ,910.8182862,kg +885a1985-7789-3c5c-9596-84148a00c003,SESCO,II.1.1,Corrientes,AR-W,annual,2013,bioetanol combustion consumption by to the public,91.08182862,TJ,N2O,0.6,kg/TJ,54.649097172,kg +1af5e24b-f44c-3d1e-af50-c809a6f42685,SESCO,II.1.1,Córdoba,AR-X,annual,2013,bioetanol combustion consumption by to the public,377.1743016599999,TJ,CH4,10.0,kg/TJ,3771.743016599999,kg +7708a968-6959-33b6-b5d9-fbdc76aeff7d,SESCO,II.1.1,Córdoba,AR-X,annual,2013,bioetanol combustion consumption by to the public,377.1743016599999,TJ,N2O,0.6,kg/TJ,226.30458099599994,kg +5d3f1f06-1de7-34e0-8b56-c311c1021d98,SESCO,II.1.1,Entre Rios,AR-E,annual,2013,bioetanol combustion consumption by to the public,116.50994153999999,TJ,CH4,10.0,kg/TJ,1165.0994153999998,kg +e663ee69-b455-3640-bd4b-b35c2880cb1f,SESCO,II.1.1,Entre Rios,AR-E,annual,2013,bioetanol combustion consumption by to the public,116.50994153999999,TJ,N2O,0.6,kg/TJ,69.90596492399999,kg +15baf6a1-5dd0-3873-b6d4-cb9c5aea565d,SESCO,II.1.1,Formosa,AR-P,annual,2013,bioetanol combustion consumption by to the public,31.449618899999997,TJ,CH4,10.0,kg/TJ,314.49618899999996,kg +5412eb92-2d61-3d9d-b13a-c899f44fa88a,SESCO,II.1.1,Formosa,AR-P,annual,2013,bioetanol combustion consumption by to the public,31.449618899999997,TJ,N2O,0.6,kg/TJ,18.869771339999996,kg +145a69f4-3ddb-3cb7-be8b-3bc92832a0ca,SESCO,II.1.1,Jujuy,AR-Y,annual,2013,bioetanol combustion consumption by to the public,39.99936492,TJ,CH4,10.0,kg/TJ,399.9936492,kg +0673694a-abb6-3bd8-8211-a212d5acfeee,SESCO,II.1.1,Jujuy,AR-Y,annual,2013,bioetanol combustion consumption by to the public,39.99936492,TJ,N2O,0.6,kg/TJ,23.999618952,kg +c73b2629-015f-3e21-8adc-bc95b9d442e1,SESCO,II.1.1,La Pampa,AR-L,annual,2013,bioetanol combustion consumption by to the public,64.90214585999999,TJ,CH4,10.0,kg/TJ,649.0214586,kg +1d1af07f-b03c-3ab4-be54-d576678f69b9,SESCO,II.1.1,La Pampa,AR-L,annual,2013,bioetanol combustion consumption by to the public,64.90214585999999,TJ,N2O,0.6,kg/TJ,38.941287515999996,kg +3f25b421-e7bf-30d8-8165-a3bec56b59be,SESCO,II.1.1,La Rioja,AR-F,annual,2013,bioetanol combustion consumption by to the public,35.50272768,TJ,CH4,10.0,kg/TJ,355.0272768,kg +77052d44-f6d3-3a9c-a56c-5f9fa68a91d2,SESCO,II.1.1,La Rioja,AR-F,annual,2013,bioetanol combustion consumption by to the public,35.50272768,TJ,N2O,0.6,kg/TJ,21.301636608,kg +b9676d19-12f4-32d7-999a-cc33aa8c1bb1,SESCO,II.1.1,Mendoza,AR-M,annual,2013,bioetanol combustion consumption by to the public,207.95221691999998,TJ,CH4,10.0,kg/TJ,2079.5221692,kg +fe0d382b-4139-3312-8eae-0426d9b8e25b,SESCO,II.1.1,Mendoza,AR-M,annual,2013,bioetanol combustion consumption by to the public,207.95221691999998,TJ,N2O,0.6,kg/TJ,124.77133015199999,kg +b40bafef-67fe-3925-b53e-32e33fe932f6,SESCO,II.1.1,Misiones,AR-N,annual,2013,bioetanol combustion consumption by to the public,121.48461809999999,TJ,CH4,10.0,kg/TJ,1214.846181,kg +8192e363-a23d-3089-93e0-701faa935758,SESCO,II.1.1,Misiones,AR-N,annual,2013,bioetanol combustion consumption by to the public,121.48461809999999,TJ,N2O,0.6,kg/TJ,72.89077085999999,kg +96f06770-658f-3ae6-b09c-0e5cef19a0e3,SESCO,II.1.1,Neuquén,AR-Q,annual,2013,bioetanol combustion consumption by to the public,118.17668825999999,TJ,CH4,10.0,kg/TJ,1181.7668826,kg +be4c2cc8-146c-32f8-812d-a50148107220,SESCO,II.1.1,Neuquén,AR-Q,annual,2013,bioetanol combustion consumption by to the public,118.17668825999999,TJ,N2O,0.6,kg/TJ,70.906012956,kg +2fed14e6-7688-353d-b6bc-3b7ea4129ac5,SESCO,II.1.1,Rio Negro,AR-R,annual,2013,bioetanol combustion consumption by to the public,120.8455281,TJ,CH4,10.0,kg/TJ,1208.455281,kg +19030131-484b-3933-a919-a09e5df3d19b,SESCO,II.1.1,Rio Negro,AR-R,annual,2013,bioetanol combustion consumption by to the public,120.8455281,TJ,N2O,0.6,kg/TJ,72.50731685999999,kg +d876ab4f-bd21-322d-8e3f-68594542c2a6,SESCO,II.1.1,Salta,AR-A,annual,2013,bioetanol combustion consumption by to the public,93.04000038,TJ,CH4,10.0,kg/TJ,930.4000037999999,kg +2c6fa80d-54fc-3cc2-be95-dff0bf9ed8ed,SESCO,II.1.1,Salta,AR-A,annual,2013,bioetanol combustion consumption by to the public,93.04000038,TJ,N2O,0.6,kg/TJ,55.824000227999996,kg +a5a5d04f-aa33-3b7a-a8d3-db6b02ffeab4,SESCO,II.1.1,San Juan,AR-J,annual,2013,bioetanol combustion consumption by to the public,60.97941144,TJ,CH4,10.0,kg/TJ,609.7941144,kg +2ae0567c-147e-31b2-aa1b-0efae38c2eff,SESCO,II.1.1,San Juan,AR-J,annual,2013,bioetanol combustion consumption by to the public,60.97941144,TJ,N2O,0.6,kg/TJ,36.587646864,kg +b8bcd406-416c-3c68-927d-cb4f6f294ff4,SESCO,II.1.1,San Luis,AR-D,annual,2013,bioetanol combustion consumption by to the public,49.5806022,TJ,CH4,10.0,kg/TJ,495.806022,kg +3e8e983a-0a8a-3339-8309-017c90d5c64b,SESCO,II.1.1,San Luis,AR-D,annual,2013,bioetanol combustion consumption by to the public,49.5806022,TJ,N2O,0.6,kg/TJ,29.74836132,kg +7ba127bf-fb3b-3715-958a-d0ec0b838826,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2013,bioetanol combustion consumption by to the public,102.52026143999998,TJ,CH4,10.0,kg/TJ,1025.2026144,kg +d7c35c04-f686-3795-bc63-0e2c46ea3fcf,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2013,bioetanol combustion consumption by to the public,102.52026143999998,TJ,N2O,0.6,kg/TJ,61.51215686399999,kg +82f2b8f0-3843-3478-9097-c1e693e65341,SESCO,II.1.1,Santa Fe,AR-S,annual,2013,bioetanol combustion consumption by to the public,285.42909762,TJ,CH4,10.0,kg/TJ,2854.2909762,kg +eba9958c-7bf8-3aeb-bb1b-d07576f62061,SESCO,II.1.1,Santa Fe,AR-S,annual,2013,bioetanol combustion consumption by to the public,285.42909762,TJ,N2O,0.6,kg/TJ,171.257458572,kg +0395b816-2b30-33e7-ae0b-2c6707f653f4,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2013,bioetanol combustion consumption by to the public,41.90257494,TJ,CH4,10.0,kg/TJ,419.0257494,kg +00a4f7dd-b650-301d-81cd-7f67e0e48bfb,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2013,bioetanol combustion consumption by to the public,41.90257494,TJ,N2O,0.6,kg/TJ,25.141544964,kg +620f079a-39a4-3b8f-9e7a-9aa6a1bba58c,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2013,bioetanol combustion consumption by to the public,75.5468289,TJ,CH4,10.0,kg/TJ,755.4682889999999,kg +be10317c-5ce6-3246-b040-b6f1dcfacbff,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2013,bioetanol combustion consumption by to the public,75.5468289,TJ,N2O,0.6,kg/TJ,45.32809733999999,kg +89c8472e-8431-3414-96ac-2c9c6ec26c57,SESCO,II.1.1,Tucuman,AR-T,annual,2013,bioetanol combustion consumption by to the public,79.78910832,TJ,CH4,10.0,kg/TJ,797.8910831999999,kg +977539af-52a1-3cb1-8ad0-77075abe60c8,SESCO,II.1.1,Tucuman,AR-T,annual,2013,bioetanol combustion consumption by to the public,79.78910832,TJ,N2O,0.6,kg/TJ,47.873464991999995,kg +bcbd6825-589b-3757-9b83-4067c48e78cf,SESCO,II.1.1,Buenos Aires,AR-B,annual,2013,bioetanol combustion consumption by to the public,535.94854308,TJ,CH4,10.0,kg/TJ,5359.4854308,kg +e9167fdc-82f4-3219-9588-4bb67972f333,SESCO,II.1.1,Buenos Aires,AR-B,annual,2013,bioetanol combustion consumption by to the public,535.94854308,TJ,N2O,0.6,kg/TJ,321.569125848,kg +753859d7-0711-3fea-a3ef-d44e9712a6c3,SESCO,II.1.1,Capital Federal,AR-C,annual,2013,bioetanol combustion consumption by to the public,124.44871752,TJ,CH4,10.0,kg/TJ,1244.4871752,kg +b6034d36-dfda-3343-8865-329a47f65971,SESCO,II.1.1,Capital Federal,AR-C,annual,2013,bioetanol combustion consumption by to the public,124.44871752,TJ,N2O,0.6,kg/TJ,74.669230512,kg +a41fc1d8-66cb-3a5a-982d-78c0928aa24f,SESCO,II.1.1,Catamarca,AR-K,annual,2013,bioetanol combustion consumption by to the public,8.263433699999998,TJ,CH4,10.0,kg/TJ,82.63433699999999,kg +245c8616-e6cb-34eb-809e-934923ca707c,SESCO,II.1.1,Catamarca,AR-K,annual,2013,bioetanol combustion consumption by to the public,8.263433699999998,TJ,N2O,0.6,kg/TJ,4.958060219999999,kg +79ff2c0f-bb82-3dae-b431-b12608972848,SESCO,II.1.1,Chaco,AR-H,annual,2013,bioetanol combustion consumption by to the public,30.6443655,TJ,CH4,10.0,kg/TJ,306.443655,kg +2efb7f8b-9088-3d3a-8f5a-ddcdce9aa142,SESCO,II.1.1,Chaco,AR-H,annual,2013,bioetanol combustion consumption by to the public,30.6443655,TJ,N2O,0.6,kg/TJ,18.3866193,kg +b5a61454-f0ef-314b-8508-ed1d23083bd0,SESCO,II.1.1,Chubut,AR-U,annual,2013,bioetanol combustion consumption by to the public,41.001458039999996,TJ,CH4,10.0,kg/TJ,410.01458039999994,kg +5bd3b266-9d09-3287-95fa-577167df5445,SESCO,II.1.1,Chubut,AR-U,annual,2013,bioetanol combustion consumption by to the public,41.001458039999996,TJ,N2O,0.6,kg/TJ,24.600874823999998,kg +f285e681-2a3d-3cc6-a4e3-77dd2b58ae89,SESCO,II.1.1,Corrientes,AR-W,annual,2013,bioetanol combustion consumption by to the public,29.767534019999996,TJ,CH4,10.0,kg/TJ,297.67534019999994,kg +f366e905-7292-302e-9037-1ff404957f4c,SESCO,II.1.1,Corrientes,AR-W,annual,2013,bioetanol combustion consumption by to the public,29.767534019999996,TJ,N2O,0.6,kg/TJ,17.860520411999996,kg +a4bc220d-b9d1-359a-b3f9-7427c6a2a2ac,SESCO,II.1.1,Córdoba,AR-X,annual,2013,bioetanol combustion consumption by to the public,128.95046748,TJ,CH4,10.0,kg/TJ,1289.5046748,kg +eb482e44-0b52-3c94-ba25-0af48871b1ae,SESCO,II.1.1,Córdoba,AR-X,annual,2013,bioetanol combustion consumption by to the public,128.95046748,TJ,N2O,0.6,kg/TJ,77.37028048799999,kg +f804682b-c926-3095-9a34-5d883868a1b2,SESCO,II.1.1,Entre Rios,AR-E,annual,2013,bioetanol combustion consumption by to the public,47.16995471999999,TJ,CH4,10.0,kg/TJ,471.6995471999999,kg +4337d4ac-7e97-364f-96cb-ecaf3524122a,SESCO,II.1.1,Entre Rios,AR-E,annual,2013,bioetanol combustion consumption by to the public,47.16995471999999,TJ,N2O,0.6,kg/TJ,28.301972831999993,kg +5e56bdb1-a7e5-36c2-be82-b3ecbd3752d0,SESCO,II.1.1,Formosa,AR-P,annual,2013,bioetanol combustion consumption by to the public,7.66396728,TJ,CH4,10.0,kg/TJ,76.6396728,kg +ac719ae4-6273-3d5b-b284-de4a693092f9,SESCO,II.1.1,Formosa,AR-P,annual,2013,bioetanol combustion consumption by to the public,7.66396728,TJ,N2O,0.6,kg/TJ,4.598380368,kg +9e51e186-dab0-3c17-9fa7-374206672f32,SESCO,II.1.1,Jujuy,AR-Y,annual,2013,bioetanol combustion consumption by to the public,11.5547472,TJ,CH4,10.0,kg/TJ,115.547472,kg +9ad51c31-3a87-3859-92d0-d4bab212f1b1,SESCO,II.1.1,Jujuy,AR-Y,annual,2013,bioetanol combustion consumption by to the public,11.5547472,TJ,N2O,0.6,kg/TJ,6.93284832,kg +8e17908e-2eab-385a-beaf-bf99b4ecdcee,SESCO,II.1.1,La Pampa,AR-L,annual,2013,bioetanol combustion consumption by to the public,24.575566859999995,TJ,CH4,10.0,kg/TJ,245.75566859999995,kg +e49c27d6-c6c1-32d7-8b19-ee609bdf5971,SESCO,II.1.1,La Pampa,AR-L,annual,2013,bioetanol combustion consumption by to the public,24.575566859999995,TJ,N2O,0.6,kg/TJ,14.745340115999996,kg +0f348355-7d9b-3492-bf3f-9ea9554fd436,SESCO,II.1.1,La Rioja,AR-F,annual,2013,bioetanol combustion consumption by to the public,11.8359468,TJ,CH4,10.0,kg/TJ,118.359468,kg +cf1eca37-34b9-307e-b909-f664275df5c7,SESCO,II.1.1,La Rioja,AR-F,annual,2013,bioetanol combustion consumption by to the public,11.8359468,TJ,N2O,0.6,kg/TJ,7.10156808,kg +573d4731-a1d4-349d-992e-c00a6b676567,SESCO,II.1.1,Mendoza,AR-M,annual,2013,bioetanol combustion consumption by to the public,74.65721562,TJ,CH4,10.0,kg/TJ,746.5721562,kg +9b779c29-105f-3d90-b465-de14e5feebc5,SESCO,II.1.1,Mendoza,AR-M,annual,2013,bioetanol combustion consumption by to the public,74.65721562,TJ,N2O,0.6,kg/TJ,44.794329372,kg +1c011fcc-3cda-3e83-bca2-b35848e9caf8,SESCO,II.1.1,Misiones,AR-N,annual,2013,bioetanol combustion consumption by to the public,35.2202499,TJ,CH4,10.0,kg/TJ,352.202499,kg +04dc59bb-b1fa-33e7-a022-4f4e142dfb87,SESCO,II.1.1,Misiones,AR-N,annual,2013,bioetanol combustion consumption by to the public,35.2202499,TJ,N2O,0.6,kg/TJ,21.132149939999998,kg +7cd7b387-9253-305c-8914-817d248d51ed,SESCO,II.1.1,Neuquén,AR-Q,annual,2013,bioetanol combustion consumption by to the public,38.32367094,TJ,CH4,10.0,kg/TJ,383.2367094,kg +3bcc7845-7343-355a-a908-40b086674464,SESCO,II.1.1,Neuquén,AR-Q,annual,2013,bioetanol combustion consumption by to the public,38.32367094,TJ,N2O,0.6,kg/TJ,22.994202564,kg +2c7e352f-5096-3b77-b0e0-b8e010b5c6e8,SESCO,II.1.1,Rio Negro,AR-R,annual,2013,bioetanol combustion consumption by to the public,38.79787572,TJ,CH4,10.0,kg/TJ,387.9787572,kg +13210a96-a5d5-3e28-a51e-9b759f867b95,SESCO,II.1.1,Rio Negro,AR-R,annual,2013,bioetanol combustion consumption by to the public,38.79787572,TJ,N2O,0.6,kg/TJ,23.278725431999998,kg +34f04a5f-afc8-3a81-89ac-6a170f4b25e7,SESCO,II.1.1,Salta,AR-A,annual,2013,bioetanol combustion consumption by to the public,28.559653919999995,TJ,CH4,10.0,kg/TJ,285.59653919999994,kg +24b35abd-63d2-3cfd-807a-7f293aa22d77,SESCO,II.1.1,Salta,AR-A,annual,2013,bioetanol combustion consumption by to the public,28.559653919999995,TJ,N2O,0.6,kg/TJ,17.135792351999996,kg +65ca8a42-8032-3b80-ac06-994377bfca2f,SESCO,II.1.1,San Juan,AR-J,annual,2013,bioetanol combustion consumption by to the public,24.66503946,TJ,CH4,10.0,kg/TJ,246.6503946,kg +c64b05f4-719b-310d-8aa5-982cda6f8656,SESCO,II.1.1,San Juan,AR-J,annual,2013,bioetanol combustion consumption by to the public,24.66503946,TJ,N2O,0.6,kg/TJ,14.799023676,kg +6d0307c9-acdc-385f-96d8-aa0bacfd8d6e,SESCO,II.1.1,San Luis,AR-D,annual,2013,bioetanol combustion consumption by to the public,22.254391979999998,TJ,CH4,10.0,kg/TJ,222.54391979999997,kg +9d2d0970-5370-3366-94ed-89c185da3a42,SESCO,II.1.1,San Luis,AR-D,annual,2013,bioetanol combustion consumption by to the public,22.254391979999998,TJ,N2O,0.6,kg/TJ,13.352635187999999,kg +5ba5bf91-6db5-38f2-b16d-cdd16ef5cb00,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2013,bioetanol combustion consumption by to the public,20.71674144,TJ,CH4,10.0,kg/TJ,207.16741439999998,kg +93b53d79-89f5-3b7c-88af-919ed4808c21,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2013,bioetanol combustion consumption by to the public,20.71674144,TJ,N2O,0.6,kg/TJ,12.430044864,kg +2c447721-3dfd-3521-b264-861594442136,SESCO,II.1.1,Santa Fe,AR-S,annual,2013,bioetanol combustion consumption by to the public,116.97392088,TJ,CH4,10.0,kg/TJ,1169.7392088,kg +8a094b00-b766-31a8-a192-0bdba861426f,SESCO,II.1.1,Santa Fe,AR-S,annual,2013,bioetanol combustion consumption by to the public,116.97392088,TJ,N2O,0.6,kg/TJ,70.18435252799999,kg +c4f32aa1-c371-30ed-a3d5-49de549bbc72,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2013,bioetanol combustion consumption by to the public,22.09589766,TJ,CH4,10.0,kg/TJ,220.95897659999997,kg +fbaec03d-94ce-31c1-a147-2417aae73990,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2013,bioetanol combustion consumption by to the public,22.09589766,TJ,N2O,0.6,kg/TJ,13.257538595999998,kg +e9ed5ced-565a-3bf4-8880-2a35d652b894,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2013,bioetanol combustion consumption by to the public,1.67058126,TJ,CH4,10.0,kg/TJ,16.7058126,kg +4da84d26-e274-3130-8166-63e3024da18d,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2013,bioetanol combustion consumption by to the public,1.67058126,TJ,N2O,0.6,kg/TJ,1.002348756,kg +eefe1a14-c999-307a-897d-387bb603792c,SESCO,II.1.1,Tucuman,AR-T,annual,2013,bioetanol combustion consumption by to the public,23.972265899999996,TJ,CH4,10.0,kg/TJ,239.72265899999996,kg +4b2bdd11-f6f4-39c7-84ef-e6801cd641f7,SESCO,II.1.1,Tucuman,AR-T,annual,2013,bioetanol combustion consumption by to the public,23.972265899999996,TJ,N2O,0.6,kg/TJ,14.383359539999997,kg +26b4fb4c-618b-398c-904c-e426c9b7207a,SESCO,I.3.1,Neuquén,AR-Q,annual,2013,bioetanol combustion consumption by petrochemical industries,0.0127818,TJ,CH4,10.0,kg/TJ,0.127818,kg +a06081d0-d437-3d54-a9e4-c99c089fd9ed,SESCO,I.3.1,Neuquén,AR-Q,annual,2013,bioetanol combustion consumption by petrochemical industries,0.0127818,TJ,N2O,0.6,kg/TJ,0.007669079999999999,kg +719616d6-06f5-34d9-8d97-8b517ab3696b,SESCO,II.1.1,Buenos Aires,AR-B,annual,2013,bioetanol combustion consumption by freight transport,6.3142092,TJ,CH4,10.0,kg/TJ,63.142092,kg +9d8f868f-6a61-31d7-91a8-2e1f3488ecc7,SESCO,II.1.1,Buenos Aires,AR-B,annual,2013,bioetanol combustion consumption by freight transport,6.3142092,TJ,N2O,0.6,kg/TJ,3.7885255199999994,kg +a180c8eb-3bd4-36e3-9347-369b3c088d15,SESCO,II.1.1,Capital Federal,AR-C,annual,2013,bioetanol combustion consumption by freight transport,6.222180239999999,TJ,CH4,10.0,kg/TJ,62.221802399999994,kg +4ed15d67-a337-3db5-b84c-4f7e6b5e8285,SESCO,II.1.1,Capital Federal,AR-C,annual,2013,bioetanol combustion consumption by freight transport,6.222180239999999,TJ,N2O,0.6,kg/TJ,3.7333081439999996,kg +f873d983-6ffc-3777-bfbb-84a24fb69ec9,SESCO,II.1.1,Chaco,AR-H,annual,2013,bioetanol combustion consumption by freight transport,0.18277974,TJ,CH4,10.0,kg/TJ,1.8277974,kg +1158a26a-b69d-3d0e-b82c-542b82ed2433,SESCO,II.1.1,Chaco,AR-H,annual,2013,bioetanol combustion consumption by freight transport,0.18277974,TJ,N2O,0.6,kg/TJ,0.109667844,kg +c42f0472-0cf3-38ce-96dc-6b9732677fa9,SESCO,II.1.1,Chubut,AR-U,annual,2013,bioetanol combustion consumption by freight transport,0.03323268,TJ,CH4,10.0,kg/TJ,0.33232680000000003,kg +f3e17596-27f0-3ea5-a439-58804fa3ab4a,SESCO,II.1.1,Chubut,AR-U,annual,2013,bioetanol combustion consumption by freight transport,0.03323268,TJ,N2O,0.6,kg/TJ,0.019939608,kg +174c46f0-d3db-314b-8409-efb11742d8c5,SESCO,II.1.1,Corrientes,AR-W,annual,2013,bioetanol combustion consumption by freight transport,0.05496174,TJ,CH4,10.0,kg/TJ,0.5496174,kg +d2626bb9-dd49-3ca8-8ab1-d684b3360f3e,SESCO,II.1.1,Corrientes,AR-W,annual,2013,bioetanol combustion consumption by freight transport,0.05496174,TJ,N2O,0.6,kg/TJ,0.032977044,kg +14af7c7f-c5e6-3e50-9377-e113c52bbded,SESCO,II.1.1,Córdoba,AR-X,annual,2013,bioetanol combustion consumption by freight transport,0.09458531999999999,TJ,CH4,10.0,kg/TJ,0.9458531999999998,kg +9085fa87-5d99-3d9a-a945-b138eee90222,SESCO,II.1.1,Córdoba,AR-X,annual,2013,bioetanol combustion consumption by freight transport,0.09458531999999999,TJ,N2O,0.6,kg/TJ,0.05675119199999999,kg +3018fa1b-5cfa-3c1b-9df9-46c35818dd88,SESCO,II.1.1,Entre Rios,AR-E,annual,2013,bioetanol combustion consumption by freight transport,0.09969803999999999,TJ,CH4,10.0,kg/TJ,0.9969803999999999,kg +db22f441-beed-3d57-ae14-c0cb13007808,SESCO,II.1.1,Entre Rios,AR-E,annual,2013,bioetanol combustion consumption by freight transport,0.09969803999999999,TJ,N2O,0.6,kg/TJ,0.05981882399999999,kg +d7085dd0-3fa5-3903-85fd-7144e85ceb9d,SESCO,II.1.1,Mendoza,AR-M,annual,2013,bioetanol combustion consumption by freight transport,0.17383247999999998,TJ,CH4,10.0,kg/TJ,1.7383247999999998,kg +bf67a73d-03d9-389f-a95a-1e8f4a781b7f,SESCO,II.1.1,Mendoza,AR-M,annual,2013,bioetanol combustion consumption by freight transport,0.17383247999999998,TJ,N2O,0.6,kg/TJ,0.10429948799999998,kg +514ee4c5-6a87-318b-bddb-04668542fb7c,SESCO,II.1.1,Misiones,AR-N,annual,2013,bioetanol combustion consumption by freight transport,0.019172699999999997,TJ,CH4,10.0,kg/TJ,0.19172699999999998,kg +ffdff974-cb85-343f-a8bd-e31093b8bae6,SESCO,II.1.1,Misiones,AR-N,annual,2013,bioetanol combustion consumption by freight transport,0.019172699999999997,TJ,N2O,0.6,kg/TJ,0.011503619999999997,kg +13cb469a-0b14-3e00-8d51-d6c4d7b94fbc,SESCO,II.1.1,Neuquén,AR-Q,annual,2013,bioetanol combustion consumption by freight transport,0.017894519999999997,TJ,CH4,10.0,kg/TJ,0.17894519999999997,kg +6dec8d8b-ea31-3ce6-81d2-f369e4b6afee,SESCO,II.1.1,Neuquén,AR-Q,annual,2013,bioetanol combustion consumption by freight transport,0.017894519999999997,TJ,N2O,0.6,kg/TJ,0.010736711999999997,kg +44db4c55-bafa-32be-8080-ebfbe362b4ef,SESCO,II.1.1,Rio Negro,AR-R,annual,2013,bioetanol combustion consumption by freight transport,0.0511272,TJ,CH4,10.0,kg/TJ,0.511272,kg +9fbb3989-ada2-3612-9085-5e2b2d8f1e6f,SESCO,II.1.1,Rio Negro,AR-R,annual,2013,bioetanol combustion consumption by freight transport,0.0511272,TJ,N2O,0.6,kg/TJ,0.030676319999999997,kg +d9aa9830-93b8-310e-8be4-05334f3dde1e,SESCO,II.1.1,Salta,AR-A,annual,2013,bioetanol combustion consumption by freight transport,0.3898449,TJ,CH4,10.0,kg/TJ,3.898449,kg +0e01a02a-be1f-3875-ae74-1d1b82490253,SESCO,II.1.1,Salta,AR-A,annual,2013,bioetanol combustion consumption by freight transport,0.3898449,TJ,N2O,0.6,kg/TJ,0.23390693999999998,kg +d23102f5-cc81-3284-b05b-f22a4131568f,SESCO,II.1.1,Santa Fe,AR-S,annual,2013,bioetanol combustion consumption by freight transport,0.6045791399999999,TJ,CH4,10.0,kg/TJ,6.045791399999999,kg +1843e620-4c74-3969-9536-8522cc4bbc30,SESCO,II.1.1,Santa Fe,AR-S,annual,2013,bioetanol combustion consumption by freight transport,0.6045791399999999,TJ,N2O,0.6,kg/TJ,0.36274748399999995,kg +6ed23538-be15-3e88-a514-1f6fab3966bb,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2013,bioetanol combustion consumption by freight transport,0.0012781799999999999,TJ,CH4,10.0,kg/TJ,0.0127818,kg +3fa75ef5-5cf8-3cd2-8691-3535b3963c6d,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2013,bioetanol combustion consumption by freight transport,0.0012781799999999999,TJ,N2O,0.6,kg/TJ,0.0007669079999999998,kg +2669f643-d8e0-35a2-8775-e216dada96dd,SESCO,II.1.1,Tucuman,AR-T,annual,2013,bioetanol combustion consumption by freight transport,0.03706722,TJ,CH4,10.0,kg/TJ,0.3706722,kg +5f851a3e-103f-349f-b773-0565b1a9d429,SESCO,II.1.1,Tucuman,AR-T,annual,2013,bioetanol combustion consumption by freight transport,0.03706722,TJ,N2O,0.6,kg/TJ,0.022240331999999998,kg +4130952b-152e-35e4-b37f-d12994fa2bd5,SESCO,II.1.1,Buenos Aires,AR-B,annual,2013,bioetanol combustion consumption by freight transport,6.36022368,TJ,CH4,10.0,kg/TJ,63.6022368,kg +b58144c3-1fd3-3c7c-ae7f-d4292221fd07,SESCO,II.1.1,Buenos Aires,AR-B,annual,2013,bioetanol combustion consumption by freight transport,6.36022368,TJ,N2O,0.6,kg/TJ,3.816134208,kg +db5b2db8-06ec-36b6-9aa5-6a175c8d4d1d,SESCO,II.1.1,Capital Federal,AR-C,annual,2013,bioetanol combustion consumption by freight transport,6.122482199999999,TJ,CH4,10.0,kg/TJ,61.224821999999996,kg +46c04210-3fc1-31ea-a424-10a96d3b92aa,SESCO,II.1.1,Capital Federal,AR-C,annual,2013,bioetanol combustion consumption by freight transport,6.122482199999999,TJ,N2O,0.6,kg/TJ,3.6734893199999994,kg +77d14312-cb50-3074-a3ee-85a1db449646,SESCO,II.1.1,Chaco,AR-H,annual,2013,bioetanol combustion consumption by freight transport,0.22751603999999997,TJ,CH4,10.0,kg/TJ,2.2751604,kg +d0b8c1b3-e942-395a-a68e-5c49cbce556b,SESCO,II.1.1,Chaco,AR-H,annual,2013,bioetanol combustion consumption by freight transport,0.22751603999999997,TJ,N2O,0.6,kg/TJ,0.13650962399999997,kg +37c02061-ab4a-368d-b16a-6f9c0c8332d9,SESCO,II.1.1,Chubut,AR-U,annual,2013,bioetanol combustion consumption by freight transport,0.02428542,TJ,CH4,10.0,kg/TJ,0.2428542,kg +883ae279-1d72-35bd-9eba-8cea4284f2ba,SESCO,II.1.1,Chubut,AR-U,annual,2013,bioetanol combustion consumption by freight transport,0.02428542,TJ,N2O,0.6,kg/TJ,0.014571251999999998,kg +3c75acaf-213f-359b-834e-f010257b4be1,SESCO,II.1.1,Corrientes,AR-W,annual,2013,bioetanol combustion consumption by freight transport,0.08052533999999999,TJ,CH4,10.0,kg/TJ,0.8052533999999999,kg +b941d417-b280-38b1-a4cf-b0032d2235b0,SESCO,II.1.1,Corrientes,AR-W,annual,2013,bioetanol combustion consumption by freight transport,0.08052533999999999,TJ,N2O,0.6,kg/TJ,0.048315203999999994,kg +e9365ea8-6890-3086-9dde-fa2218c9cba5,SESCO,II.1.1,Córdoba,AR-X,annual,2013,bioetanol combustion consumption by freight transport,0.14187798,TJ,CH4,10.0,kg/TJ,1.4187797999999998,kg +870250b3-4cf4-39f1-92f0-bbed71869f9e,SESCO,II.1.1,Córdoba,AR-X,annual,2013,bioetanol combustion consumption by freight transport,0.14187798,TJ,N2O,0.6,kg/TJ,0.085126788,kg +6d8e0aaa-09b9-38fb-a041-6ac763bfcb38,SESCO,II.1.1,Entre Rios,AR-E,annual,2013,bioetanol combustion consumption by freight transport,0.11247983999999998,TJ,CH4,10.0,kg/TJ,1.1247983999999998,kg +a9109fcc-f15b-3acf-a11a-436be7934421,SESCO,II.1.1,Entre Rios,AR-E,annual,2013,bioetanol combustion consumption by freight transport,0.11247983999999998,TJ,N2O,0.6,kg/TJ,0.06748790399999999,kg +92736f31-fa43-34de-b28d-a8f65d83a9ed,SESCO,II.1.1,Jujuy,AR-Y,annual,2013,bioetanol combustion consumption by freight transport,0.0038345399999999996,TJ,CH4,10.0,kg/TJ,0.038345399999999995,kg +832dccf9-9a4b-3ae0-aff3-52971d35831c,SESCO,II.1.1,Jujuy,AR-Y,annual,2013,bioetanol combustion consumption by freight transport,0.0038345399999999996,TJ,N2O,0.6,kg/TJ,0.0023007239999999997,kg +314f62fa-87e0-3197-9bb1-be24c34fdf51,SESCO,II.1.1,La Pampa,AR-L,annual,2013,bioetanol combustion consumption by freight transport,0.0012781799999999999,TJ,CH4,10.0,kg/TJ,0.0127818,kg +c3eb1576-6ad4-3f43-ab04-fe852b072496,SESCO,II.1.1,La Pampa,AR-L,annual,2013,bioetanol combustion consumption by freight transport,0.0012781799999999999,TJ,N2O,0.6,kg/TJ,0.0007669079999999998,kg +cf28b7f2-aa98-38a1-8752-d550cb27d53e,SESCO,II.1.1,La Rioja,AR-F,annual,2013,bioetanol combustion consumption by freight transport,0.014059979999999998,TJ,CH4,10.0,kg/TJ,0.14059979999999997,kg +e09ede8d-c38e-396a-b9d2-805f6794a1ec,SESCO,II.1.1,La Rioja,AR-F,annual,2013,bioetanol combustion consumption by freight transport,0.014059979999999998,TJ,N2O,0.6,kg/TJ,0.008435987999999998,kg +deb95871-e581-3a9e-bebc-c90f7e770f72,SESCO,II.1.1,Mendoza,AR-M,annual,2013,bioetanol combustion consumption by freight transport,0.14699069999999997,TJ,CH4,10.0,kg/TJ,1.4699069999999996,kg +a53dc2c4-8a2f-3edc-bbed-89554084e23e,SESCO,II.1.1,Mendoza,AR-M,annual,2013,bioetanol combustion consumption by freight transport,0.14699069999999997,TJ,N2O,0.6,kg/TJ,0.08819441999999998,kg +6a7844f8-1294-3374-855d-fa8414bd1a42,SESCO,II.1.1,Misiones,AR-N,annual,2013,bioetanol combustion consumption by freight transport,0.028119959999999996,TJ,CH4,10.0,kg/TJ,0.28119959999999994,kg +e121f3a4-26b5-37d7-9b35-1b6cbde959b3,SESCO,II.1.1,Misiones,AR-N,annual,2013,bioetanol combustion consumption by freight transport,0.028119959999999996,TJ,N2O,0.6,kg/TJ,0.016871975999999997,kg +528f4e37-2b84-3ed4-a612-537462dcbc90,SESCO,II.1.1,Neuquén,AR-Q,annual,2013,bioetanol combustion consumption by freight transport,0.0127818,TJ,CH4,10.0,kg/TJ,0.127818,kg +b33f88bc-c6a2-3d29-86cd-aca859465e2e,SESCO,II.1.1,Neuquén,AR-Q,annual,2013,bioetanol combustion consumption by freight transport,0.0127818,TJ,N2O,0.6,kg/TJ,0.007669079999999999,kg +e94d0e47-e784-359e-890d-1b88adf2d257,SESCO,II.1.1,Rio Negro,AR-R,annual,2013,bioetanol combustion consumption by freight transport,0.05368356,TJ,CH4,10.0,kg/TJ,0.5368356,kg +9dece7e5-4afe-37ae-88f7-5f30a1cb8b2c,SESCO,II.1.1,Rio Negro,AR-R,annual,2013,bioetanol combustion consumption by freight transport,0.05368356,TJ,N2O,0.6,kg/TJ,0.032210136,kg +38bf57d5-b217-3793-90b1-d247d69808f5,SESCO,II.1.1,Salta,AR-A,annual,2013,bioetanol combustion consumption by freight transport,0.05879627999999999,TJ,CH4,10.0,kg/TJ,0.5879627999999999,kg +745023af-7905-3ad0-a600-b3f62879171c,SESCO,II.1.1,Salta,AR-A,annual,2013,bioetanol combustion consumption by freight transport,0.05879627999999999,TJ,N2O,0.6,kg/TJ,0.035277767999999994,kg +f7fc2bf4-9a8a-3cff-b108-ec5e175bd83d,SESCO,II.1.1,San Luis,AR-D,annual,2013,bioetanol combustion consumption by freight transport,0.015338159999999998,TJ,CH4,10.0,kg/TJ,0.15338159999999998,kg +1057b0c7-45ae-34c1-af8c-b08332abde10,SESCO,II.1.1,San Luis,AR-D,annual,2013,bioetanol combustion consumption by freight transport,0.015338159999999998,TJ,N2O,0.6,kg/TJ,0.009202895999999999,kg +7b9ec62c-fc64-371d-b70b-74329c5e7469,SESCO,II.1.1,Santa Fe,AR-S,annual,2013,bioetanol combustion consumption by freight transport,0.8627714999999999,TJ,CH4,10.0,kg/TJ,8.627714999999998,kg +f38fc082-4e13-3538-a7a0-f77483134940,SESCO,II.1.1,Santa Fe,AR-S,annual,2013,bioetanol combustion consumption by freight transport,0.8627714999999999,TJ,N2O,0.6,kg/TJ,0.5176628999999999,kg +d934c678-ba08-357f-acbc-f1967e17e35e,SESCO,II.1.1,Tucuman,AR-T,annual,2013,bioetanol combustion consumption by freight transport,0.03323268,TJ,CH4,10.0,kg/TJ,0.33232680000000003,kg +c977c332-0e30-34b8-ae7a-23a7fffcace3,SESCO,II.1.1,Tucuman,AR-T,annual,2013,bioetanol combustion consumption by freight transport,0.03323268,TJ,N2O,0.6,kg/TJ,0.019939608,kg +ecf99d33-2769-3aa8-95cc-25f66072008d,SESCO,II.1.1,Capital Federal,AR-C,annual,2014,bioetanol combustion consumption by to the public,1.81671984,TJ,CH4,10.0,kg/TJ,18.1671984,kg +5a1eef13-1ba6-3cba-ac96-06672c955aa9,SESCO,II.1.1,Capital Federal,AR-C,annual,2014,bioetanol combustion consumption by to the public,1.81671984,TJ,N2O,0.6,kg/TJ,1.090031904,kg +eaafde45-d9e8-31bc-9097-cacf86dbdbff,SESCO,II.1.1,Capital Federal,AR-C,annual,2014,bioetanol combustion consumption by to the public,0.26074872,TJ,CH4,10.0,kg/TJ,2.6074872,kg +03548c23-442e-3a79-bc69-d0d8387d105d,SESCO,II.1.1,Capital Federal,AR-C,annual,2014,bioetanol combustion consumption by to the public,0.26074872,TJ,N2O,0.6,kg/TJ,0.156449232,kg +300d29bb-33db-3d93-87c0-68b2bcc63348,SESCO,II.5.1,Córdoba,AR-X,annual,2014,bioetanol combustion consumption by agriculture machines,0.31886330399999996,TJ,CH4,10.0,kg/TJ,3.1886330399999996,kg +a84cc2ef-80a9-3c26-916f-3d80cfb7d922,SESCO,II.5.1,Córdoba,AR-X,annual,2014,bioetanol combustion consumption by agriculture machines,0.31886330399999996,TJ,N2O,0.6,kg/TJ,0.19131798239999998,kg +92bed8b5-b29a-307d-8eaf-b1b87862ec19,SESCO,II.5.1,Santa Fe,AR-S,annual,2014,bioetanol combustion consumption by agriculture machines,0.956760336,TJ,CH4,10.0,kg/TJ,9.56760336,kg +bfd3d87f-14cb-3637-967f-6a67e73b8393,SESCO,II.5.1,Santa Fe,AR-S,annual,2014,bioetanol combustion consumption by agriculture machines,0.956760336,TJ,N2O,0.6,kg/TJ,0.5740562015999999,kg +81c16f88-5adc-33eb-84e0-8cdc58f477c7,SESCO,II.5.1,Buenos Aires,AR-B,annual,2014,bioetanol combustion consumption by agriculture machines,0.013633919999999999,TJ,CH4,10.0,kg/TJ,0.1363392,kg +fefef925-e5f7-3ba0-892b-a2fe358420ff,SESCO,II.5.1,Buenos Aires,AR-B,annual,2014,bioetanol combustion consumption by agriculture machines,0.013633919999999999,TJ,N2O,0.6,kg/TJ,0.008180351999999998,kg +d804f917-dd5e-3e40-8332-11e0809c8752,SESCO,II.5.1,Córdoba,AR-X,annual,2014,bioetanol combustion consumption by agriculture machines,0.135998352,TJ,CH4,10.0,kg/TJ,1.35998352,kg +9544c96e-f93d-3ae2-a3f4-137d57f2a3ba,SESCO,II.5.1,Córdoba,AR-X,annual,2014,bioetanol combustion consumption by agriculture machines,0.135998352,TJ,N2O,0.6,kg/TJ,0.08159901119999999,kg +6206224e-c513-3e0b-bc02-733d730be001,SESCO,II.5.1,Santa Fe,AR-S,annual,2014,bioetanol combustion consumption by agriculture machines,0.19087488,TJ,CH4,10.0,kg/TJ,1.9087488,kg +167ccbd0-34f7-3d41-81c0-3bb60b9d2718,SESCO,II.5.1,Santa Fe,AR-S,annual,2014,bioetanol combustion consumption by agriculture machines,0.19087488,TJ,N2O,0.6,kg/TJ,0.114524928,kg +c0b52354-6906-3a0f-a6e2-df01e4569413,SESCO,II.1.1,Buenos Aires,AR-B,annual,2014,bioetanol combustion consumption by to the public,454.259803644,TJ,CH4,10.0,kg/TJ,4542.59803644,kg +f211d88d-e6d4-365e-bc99-33b1d0459474,SESCO,II.1.1,Buenos Aires,AR-B,annual,2014,bioetanol combustion consumption by to the public,454.259803644,TJ,N2O,0.6,kg/TJ,272.55588218639997,kg +72825eea-be16-3d1b-939c-f84cdeef1e07,SESCO,II.1.1,Capital Federal,AR-C,annual,2014,bioetanol combustion consumption by to the public,151.59155151599998,TJ,CH4,10.0,kg/TJ,1515.9155151599998,kg +a111e2a6-9662-3041-b4ac-7f16873a26d7,SESCO,II.1.1,Capital Federal,AR-C,annual,2014,bioetanol combustion consumption by to the public,151.59155151599998,TJ,N2O,0.6,kg/TJ,90.95493090959998,kg +0700d011-fb0c-3797-9758-cd1e8d67535c,SESCO,II.1.1,Catamarca,AR-K,annual,2014,bioetanol combustion consumption by to the public,23.227086959999998,TJ,CH4,10.0,kg/TJ,232.27086959999997,kg +b8abbe3a-de7e-38eb-aa60-47a560c7222c,SESCO,II.1.1,Catamarca,AR-K,annual,2014,bioetanol combustion consumption by to the public,23.227086959999998,TJ,N2O,0.6,kg/TJ,13.936252175999998,kg +3c2e839d-9ee3-368b-b841-05e1a77c404a,SESCO,II.1.1,Chaco,AR-H,annual,2014,bioetanol combustion consumption by to the public,20.94851808,TJ,CH4,10.0,kg/TJ,209.4851808,kg +ec1a691b-ca6c-3b7f-8dbe-8488ee2a72fe,SESCO,II.1.1,Chaco,AR-H,annual,2014,bioetanol combustion consumption by to the public,20.94851808,TJ,N2O,0.6,kg/TJ,12.569110848,kg +79551942-58e4-3c64-8c36-11cd4f43217a,SESCO,II.1.1,Chubut,AR-U,annual,2014,bioetanol combustion consumption by to the public,15.138763919999999,TJ,CH4,10.0,kg/TJ,151.3876392,kg +7bb17fd4-d563-3145-b7c7-0c3e5294a1bc,SESCO,II.1.1,Chubut,AR-U,annual,2014,bioetanol combustion consumption by to the public,15.138763919999999,TJ,N2O,0.6,kg/TJ,9.083258352,kg +f2de60bf-b05c-3b72-80b8-66f24c49fbe2,SESCO,II.1.1,Corrientes,AR-W,annual,2014,bioetanol combustion consumption by to the public,15.54778152,TJ,CH4,10.0,kg/TJ,155.47781519999998,kg +efdc7dd6-d53d-31e5-ab34-79b0475012bb,SESCO,II.1.1,Corrientes,AR-W,annual,2014,bioetanol combustion consumption by to the public,15.54778152,TJ,N2O,0.6,kg/TJ,9.328668912,kg +d0045557-b04c-3519-941d-419b16eb7ae7,SESCO,II.1.1,Córdoba,AR-X,annual,2014,bioetanol combustion consumption by to the public,144.8111985912,TJ,CH4,10.0,kg/TJ,1448.111985912,kg +9367843e-5e12-310b-9fae-c2df2866eea3,SESCO,II.1.1,Córdoba,AR-X,annual,2014,bioetanol combustion consumption by to the public,144.8111985912,TJ,N2O,0.6,kg/TJ,86.88671915472,kg +9ed9b617-c555-3e7b-a82c-3d2ad1c96fdd,SESCO,II.1.1,Entre Rios,AR-E,annual,2014,bioetanol combustion consumption by to the public,51.68448648,TJ,CH4,10.0,kg/TJ,516.8448648,kg +eccfb701-0629-38c9-889a-8f2bba51cf18,SESCO,II.1.1,Entre Rios,AR-E,annual,2014,bioetanol combustion consumption by to the public,51.68448648,TJ,N2O,0.6,kg/TJ,31.010691887999997,kg +5bf53250-aa1e-3af0-b78a-e60fb4c290e7,SESCO,II.1.1,Formosa,AR-P,annual,2014,bioetanol combustion consumption by to the public,25.83798264,TJ,CH4,10.0,kg/TJ,258.3798264,kg +53ac22b2-4182-3fd8-890e-fa3bf057fcf3,SESCO,II.1.1,Formosa,AR-P,annual,2014,bioetanol combustion consumption by to the public,25.83798264,TJ,N2O,0.6,kg/TJ,15.502789583999999,kg +7956fc3b-5751-3440-bdec-41846c686ae8,SESCO,II.1.1,Jujuy,AR-Y,annual,2014,bioetanol combustion consumption by to the public,6.999313679999999,TJ,CH4,10.0,kg/TJ,69.99313679999999,kg +6875843c-f3df-35e0-b47e-d898e203ddc7,SESCO,II.1.1,Jujuy,AR-Y,annual,2014,bioetanol combustion consumption by to the public,6.999313679999999,TJ,N2O,0.6,kg/TJ,4.199588208,kg +3bc51fbb-f2ca-3122-947f-38fab64e0cb4,SESCO,II.1.1,La Pampa,AR-L,annual,2014,bioetanol combustion consumption by to the public,5.97165696,TJ,CH4,10.0,kg/TJ,59.7165696,kg +e56556ac-8e17-352d-bd98-58c94efb7651,SESCO,II.1.1,La Pampa,AR-L,annual,2014,bioetanol combustion consumption by to the public,5.97165696,TJ,N2O,0.6,kg/TJ,3.5829941759999997,kg +39e88ce3-6e00-3992-b096-d9308eafe86e,SESCO,II.1.1,La Rioja,AR-F,annual,2014,bioetanol combustion consumption by to the public,6.106291919999999,TJ,CH4,10.0,kg/TJ,61.062919199999996,kg +34692781-d39b-3228-bc3a-04e21a142f7c,SESCO,II.1.1,La Rioja,AR-F,annual,2014,bioetanol combustion consumption by to the public,6.106291919999999,TJ,N2O,0.6,kg/TJ,3.6637751519999995,kg +ec92dcb3-bb04-36be-9cf5-5279aafdf7a9,SESCO,II.1.1,Mendoza,AR-M,annual,2014,bioetanol combustion consumption by to the public,23.12312832,TJ,CH4,10.0,kg/TJ,231.2312832,kg +704182fd-368b-3db2-83ea-a31102c40970,SESCO,II.1.1,Mendoza,AR-M,annual,2014,bioetanol combustion consumption by to the public,23.12312832,TJ,N2O,0.6,kg/TJ,13.873876992,kg +d61efb05-9146-3057-b840-40aff3bfbf2e,SESCO,II.1.1,Misiones,AR-N,annual,2014,bioetanol combustion consumption by to the public,42.07427712,TJ,CH4,10.0,kg/TJ,420.7427712,kg +2c0acf19-2dc9-390b-8dbf-4aa877c04b17,SESCO,II.1.1,Misiones,AR-N,annual,2014,bioetanol combustion consumption by to the public,42.07427712,TJ,N2O,0.6,kg/TJ,25.244566271999997,kg +625945e1-0f4e-3efb-9f62-438b5b5a43ca,SESCO,II.1.1,Neuquén,AR-Q,annual,2014,bioetanol combustion consumption by to the public,14.4775188,TJ,CH4,10.0,kg/TJ,144.775188,kg +9906dc69-852b-310d-b4ad-ed7ecf20b472,SESCO,II.1.1,Neuquén,AR-Q,annual,2014,bioetanol combustion consumption by to the public,14.4775188,TJ,N2O,0.6,kg/TJ,8.68651128,kg +80cba79a-3e0d-3ed1-a032-61fda8658267,SESCO,II.1.1,Rio Negro,AR-R,annual,2014,bioetanol combustion consumption by to the public,19.00398024,TJ,CH4,10.0,kg/TJ,190.0398024,kg +fb52a684-b5c7-35f7-98be-fb0eee5a1adb,SESCO,II.1.1,Rio Negro,AR-R,annual,2014,bioetanol combustion consumption by to the public,19.00398024,TJ,N2O,0.6,kg/TJ,11.402388144,kg +7a270f95-95e5-37ff-9925-0309d25e3ca8,SESCO,II.1.1,Salta,AR-A,annual,2014,bioetanol combustion consumption by to the public,3.4667650080000003,TJ,CH4,10.0,kg/TJ,34.66765008,kg +551489dd-072b-3de8-b8de-3d4a95e74e86,SESCO,II.1.1,Salta,AR-A,annual,2014,bioetanol combustion consumption by to the public,3.4667650080000003,TJ,N2O,0.6,kg/TJ,2.0800590048000003,kg +4ff6eba7-a81b-3eee-aa24-041f16147071,SESCO,II.1.1,San Juan,AR-J,annual,2014,bioetanol combustion consumption by to the public,14.641125839999999,TJ,CH4,10.0,kg/TJ,146.41125839999998,kg +b7c4539d-f1d9-39b2-83b9-3774c882019d,SESCO,II.1.1,San Juan,AR-J,annual,2014,bioetanol combustion consumption by to the public,14.641125839999999,TJ,N2O,0.6,kg/TJ,8.784675503999999,kg +304eb3a8-9a08-39e3-ba00-f8e5515bf20a,SESCO,II.1.1,San Luis,AR-D,annual,2014,bioetanol combustion consumption by to the public,29.133982800000002,TJ,CH4,10.0,kg/TJ,291.339828,kg +78e69ef8-0d84-3566-a463-a58178999f7b,SESCO,II.1.1,San Luis,AR-D,annual,2014,bioetanol combustion consumption by to the public,29.133982800000002,TJ,N2O,0.6,kg/TJ,17.480389680000002,kg +0b993c4e-ba4b-3e13-8507-a6c6d0eec523,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2014,bioetanol combustion consumption by to the public,3.2908874399999997,TJ,CH4,10.0,kg/TJ,32.908874399999995,kg +acadbc86-7fe2-3306-a649-271b2dc68bab,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2014,bioetanol combustion consumption by to the public,3.2908874399999997,TJ,N2O,0.6,kg/TJ,1.9745324639999997,kg +afc26546-6715-3e2e-9b6c-ca76bf2ca7c3,SESCO,II.1.1,Santa Fe,AR-S,annual,2014,bioetanol combustion consumption by to the public,136.8861587856,TJ,CH4,10.0,kg/TJ,1368.861587856,kg +a957e968-e304-3a81-a8b1-2a6e27f607a0,SESCO,II.1.1,Santa Fe,AR-S,annual,2014,bioetanol combustion consumption by to the public,136.8861587856,TJ,N2O,0.6,kg/TJ,82.13169527136,kg +c4b0e386-5374-3f6c-86b4-3a3fc8d00448,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2014,bioetanol combustion consumption by to the public,18.06664824,TJ,CH4,10.0,kg/TJ,180.6664824,kg +312a43ce-df3d-3be9-94b2-47e3f9f83d0e,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2014,bioetanol combustion consumption by to the public,18.06664824,TJ,N2O,0.6,kg/TJ,10.839988944,kg +d274eed3-1d00-3c5a-877f-ea62bf6b0ca5,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2014,bioetanol combustion consumption by to the public,6.3687448799999995,TJ,CH4,10.0,kg/TJ,63.6874488,kg +758d5599-b13e-3573-9258-973ae2637c20,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2014,bioetanol combustion consumption by to the public,6.3687448799999995,TJ,N2O,0.6,kg/TJ,3.8212469279999994,kg +2b75ffde-ba34-3115-93c6-7159281a8ad6,SESCO,II.1.1,Tucuman,AR-T,annual,2014,bioetanol combustion consumption by to the public,5.18259384,TJ,CH4,10.0,kg/TJ,51.8259384,kg +817632d1-005e-3431-964c-dae5059edf40,SESCO,II.1.1,Tucuman,AR-T,annual,2014,bioetanol combustion consumption by to the public,5.18259384,TJ,N2O,0.6,kg/TJ,3.109556304,kg +359013d4-f1e6-3a48-b867-1ff5992f36fe,SESCO,II.1.1,Buenos Aires,AR-B,annual,2014,bioetanol combustion consumption by to the public,112.89303298799999,TJ,CH4,10.0,kg/TJ,1128.9303298799998,kg +040e7145-e165-38a4-af06-148b9bb2e22b,SESCO,II.1.1,Buenos Aires,AR-B,annual,2014,bioetanol combustion consumption by to the public,112.89303298799999,TJ,N2O,0.6,kg/TJ,67.73581979279999,kg +53af27cc-04f6-336e-9b82-b1af2e4cc9a5,SESCO,II.1.1,Capital Federal,AR-C,annual,2014,bioetanol combustion consumption by to the public,53.3054232288,TJ,CH4,10.0,kg/TJ,533.054232288,kg +75fcc875-d9c8-3418-8398-5a8b70ca6ac1,SESCO,II.1.1,Capital Federal,AR-C,annual,2014,bioetanol combustion consumption by to the public,53.3054232288,TJ,N2O,0.6,kg/TJ,31.98325393728,kg +aa121ac3-7cc3-3187-9cab-16ef289f96ae,SESCO,II.1.1,Catamarca,AR-K,annual,2014,bioetanol combustion consumption by to the public,5.076930959999999,TJ,CH4,10.0,kg/TJ,50.76930959999999,kg +d3fcd2a0-9c6b-3c69-a760-f5a967264d18,SESCO,II.1.1,Catamarca,AR-K,annual,2014,bioetanol combustion consumption by to the public,5.076930959999999,TJ,N2O,0.6,kg/TJ,3.0461585759999994,kg +1866d974-4f5f-3e4c-beb4-5a14fdef4049,SESCO,II.1.1,Chaco,AR-H,annual,2014,bioetanol combustion consumption by to the public,4.275060817248,TJ,CH4,10.0,kg/TJ,42.75060817248,kg +2c227e79-4649-3e7a-957b-9c6543820276,SESCO,II.1.1,Chaco,AR-H,annual,2014,bioetanol combustion consumption by to the public,4.275060817248,TJ,N2O,0.6,kg/TJ,2.5650364903488,kg +96a2fbd7-bbb6-3370-b0dd-95c6a772093e,SESCO,II.1.1,Chubut,AR-U,annual,2014,bioetanol combustion consumption by to the public,2.721533577408,TJ,CH4,10.0,kg/TJ,27.21533577408,kg +573f0281-7265-35ed-aa59-1e8b6e44a474,SESCO,II.1.1,Chubut,AR-U,annual,2014,bioetanol combustion consumption by to the public,2.721533577408,TJ,N2O,0.6,kg/TJ,1.6329201464448,kg +567f6748-e9eb-397e-8a8b-922585d1a13e,SESCO,II.1.1,Corrientes,AR-W,annual,2014,bioetanol combustion consumption by to the public,4.401787081104,TJ,CH4,10.0,kg/TJ,44.01787081104,kg +e026bdde-9ac0-36e5-ab97-88930ce97e9a,SESCO,II.1.1,Corrientes,AR-W,annual,2014,bioetanol combustion consumption by to the public,4.401787081104,TJ,N2O,0.6,kg/TJ,2.6410722486624,kg +a2ea66e6-0776-3b0d-81c6-606f19b1a27d,SESCO,II.1.1,Córdoba,AR-X,annual,2014,bioetanol combustion consumption by to the public,29.025262172592,TJ,CH4,10.0,kg/TJ,290.25262172592,kg +5116a492-9daf-31ab-96bd-1703f0937d0e,SESCO,II.1.1,Córdoba,AR-X,annual,2014,bioetanol combustion consumption by to the public,29.025262172592,TJ,N2O,0.6,kg/TJ,17.4151573035552,kg +f9f78686-8674-3eb4-9591-4cebc749eb96,SESCO,II.1.1,Entre Rios,AR-E,annual,2014,bioetanol combustion consumption by to the public,12.354453980495999,TJ,CH4,10.0,kg/TJ,123.54453980495998,kg +6166c421-0081-304e-9db3-20c1cff5f1cd,SESCO,II.1.1,Entre Rios,AR-E,annual,2014,bioetanol combustion consumption by to the public,12.354453980495999,TJ,N2O,0.6,kg/TJ,7.412672388297599,kg +09286f6e-ec85-32f6-b301-fec49e140775,SESCO,II.1.1,Formosa,AR-P,annual,2014,bioetanol combustion consumption by to the public,4.996216619784,TJ,CH4,10.0,kg/TJ,49.96216619784,kg +5dd4ea50-39fe-3f2f-b458-7095b127dfdd,SESCO,II.1.1,Formosa,AR-P,annual,2014,bioetanol combustion consumption by to the public,4.996216619784,TJ,N2O,0.6,kg/TJ,2.9977299718704,kg +2a2c6adb-c900-32b6-979b-407915cd6378,SESCO,II.1.1,Jujuy,AR-Y,annual,2014,bioetanol combustion consumption by to the public,0.257287919832,TJ,CH4,10.0,kg/TJ,2.57287919832,kg +8a2b6883-e6d2-3860-ae26-8a775e9532db,SESCO,II.1.1,Jujuy,AR-Y,annual,2014,bioetanol combustion consumption by to the public,0.257287919832,TJ,N2O,0.6,kg/TJ,0.1543727518992,kg +f2c5db26-3387-34c1-8601-9bd86773563f,SESCO,II.1.1,La Pampa,AR-L,annual,2014,bioetanol combustion consumption by to the public,1.566419645016,TJ,CH4,10.0,kg/TJ,15.664196450159999,kg +4bcd56f4-34e2-3edc-aea7-51913ad35592,SESCO,II.1.1,La Pampa,AR-L,annual,2014,bioetanol combustion consumption by to the public,1.566419645016,TJ,N2O,0.6,kg/TJ,0.9398517870095999,kg +4189ed5f-a40a-32dd-9eb7-689e73781c0e,SESCO,II.1.1,La Rioja,AR-F,annual,2014,bioetanol combustion consumption by to the public,1.0067756898240001,TJ,CH4,10.0,kg/TJ,10.06775689824,kg +6ec41be4-7fa3-3389-98c4-6f1cbb189a8b,SESCO,II.1.1,La Rioja,AR-F,annual,2014,bioetanol combustion consumption by to the public,1.0067756898240001,TJ,N2O,0.6,kg/TJ,0.6040654138944,kg +803db2fa-e35a-37d7-bf56-1261d59d8356,SESCO,II.1.1,Mendoza,AR-M,annual,2014,bioetanol combustion consumption by to the public,5.549543809416,TJ,CH4,10.0,kg/TJ,55.49543809416,kg +9097946a-1344-3b42-97e3-cbf88b847d21,SESCO,II.1.1,Mendoza,AR-M,annual,2014,bioetanol combustion consumption by to the public,5.549543809416,TJ,N2O,0.6,kg/TJ,3.3297262856496,kg +e5adf7b2-50b1-3f28-9b9c-bbb1b62ddebb,SESCO,II.1.1,Misiones,AR-N,annual,2014,bioetanol combustion consumption by to the public,6.473257738848,TJ,CH4,10.0,kg/TJ,64.73257738848,kg +26adfa93-6fd8-3ba8-8fd3-641daf6b50eb,SESCO,II.1.1,Misiones,AR-N,annual,2014,bioetanol combustion consumption by to the public,6.473257738848,TJ,N2O,0.6,kg/TJ,3.8839546433087997,kg +30d94b4f-7f80-3494-a680-3517e294d73d,SESCO,II.1.1,Neuquén,AR-Q,annual,2014,bioetanol combustion consumption by to the public,4.121463971736,TJ,CH4,10.0,kg/TJ,41.21463971736,kg +d42ccc87-cf18-3870-87d1-544c46bb3a41,SESCO,II.1.1,Neuquén,AR-Q,annual,2014,bioetanol combustion consumption by to the public,4.121463971736,TJ,N2O,0.6,kg/TJ,2.4728783830416003,kg +bc4c4cb7-bcc0-301a-9634-4404a5ef3714,SESCO,II.1.1,Rio Negro,AR-R,annual,2014,bioetanol combustion consumption by to the public,5.490026124624,TJ,CH4,10.0,kg/TJ,54.90026124624001,kg +8880b3e4-a011-3835-990a-b5efb5a78146,SESCO,II.1.1,Rio Negro,AR-R,annual,2014,bioetanol combustion consumption by to the public,5.490026124624,TJ,N2O,0.6,kg/TJ,3.2940156747744003,kg +a1e7bc8d-8036-395e-b1b3-48c42da07f15,SESCO,II.1.1,Salta,AR-A,annual,2014,bioetanol combustion consumption by to the public,0.42776424,TJ,CH4,10.0,kg/TJ,4.2776424,kg +d77739c4-0f86-37bb-b02d-7b4a695ab4cf,SESCO,II.1.1,Salta,AR-A,annual,2014,bioetanol combustion consumption by to the public,0.42776424,TJ,N2O,0.6,kg/TJ,0.256658544,kg +d3103a3d-4984-370c-880d-4bcdc8b4c46e,SESCO,II.1.1,San Juan,AR-J,annual,2014,bioetanol combustion consumption by to the public,3.020267080224,TJ,CH4,10.0,kg/TJ,30.20267080224,kg +a86bd933-f1fe-3dd5-aba7-eb30648a3df3,SESCO,II.1.1,San Juan,AR-J,annual,2014,bioetanol combustion consumption by to the public,3.020267080224,TJ,N2O,0.6,kg/TJ,1.8121602481344,kg +4cefcef0-4714-38e4-825d-ad704ab7484b,SESCO,II.1.1,San Luis,AR-D,annual,2014,bioetanol combustion consumption by to the public,6.899018985575999,TJ,CH4,10.0,kg/TJ,68.99018985576,kg +222fe22d-af9d-3ca4-a6eb-d9c49f710ce7,SESCO,II.1.1,San Luis,AR-D,annual,2014,bioetanol combustion consumption by to the public,6.899018985575999,TJ,N2O,0.6,kg/TJ,4.139411391345599,kg +e4e0c217-1852-35c2-a467-9d75efdf72f8,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2014,bioetanol combustion consumption by to the public,1.505369337192,TJ,CH4,10.0,kg/TJ,15.053693371920001,kg +593dad1b-5518-3eb9-a1e1-1ba9d5c4e82c,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2014,bioetanol combustion consumption by to the public,1.505369337192,TJ,N2O,0.6,kg/TJ,0.9032216023152,kg +8206988e-cf6d-3825-ba30-deace34fea24,SESCO,II.1.1,Santa Fe,AR-S,annual,2014,bioetanol combustion consumption by to the public,31.414092142536003,TJ,CH4,10.0,kg/TJ,314.14092142536003,kg +d0499cf0-011a-380f-bd36-b18dfb8d212b,SESCO,II.1.1,Santa Fe,AR-S,annual,2014,bioetanol combustion consumption by to the public,31.414092142536003,TJ,N2O,0.6,kg/TJ,18.848455285521602,kg +5142a019-1645-3239-a45e-c2d169517ea2,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2014,bioetanol combustion consumption by to the public,4.27899556656,TJ,CH4,10.0,kg/TJ,42.7899556656,kg +ac4ce8c8-be7a-3eaa-9dec-6a0cc793a460,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2014,bioetanol combustion consumption by to the public,4.27899556656,TJ,N2O,0.6,kg/TJ,2.567397339936,kg +dfde8dc6-fbd1-34db-8756-2d1c72be55a8,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2014,bioetanol combustion consumption by to the public,2.9149280058239997,TJ,CH4,10.0,kg/TJ,29.149280058239995,kg +621a2123-6996-3f43-b4c0-e4a5c66c3dfa,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2014,bioetanol combustion consumption by to the public,2.9149280058239997,TJ,N2O,0.6,kg/TJ,1.7489568034943999,kg +910c9a72-8f0f-386e-a70f-4ed2797c3e04,SESCO,II.1.1,Tucuman,AR-T,annual,2014,bioetanol combustion consumption by to the public,1.0723074671519999,TJ,CH4,10.0,kg/TJ,10.72307467152,kg +7164be96-5068-3a5d-8d92-b0b297b3b910,SESCO,II.1.1,Tucuman,AR-T,annual,2014,bioetanol combustion consumption by to the public,1.0723074671519999,TJ,N2O,0.6,kg/TJ,0.6433844802911999,kg +7e9603a5-2ab6-3804-917c-c30f1068b65e,SESCO,I.3.1,Buenos Aires,AR-B,annual,2014,bioetanol combustion consumption by petrochemical industries,0.689876352,TJ,CH4,10.0,kg/TJ,6.898763519999999,kg +a3867aa5-fdd9-343f-8632-4e4a404c7538,SESCO,I.3.1,Buenos Aires,AR-B,annual,2014,bioetanol combustion consumption by petrochemical industries,0.689876352,TJ,N2O,0.6,kg/TJ,0.4139258112,kg +7fff26d6-eaa3-33ab-98eb-7897551cf4e4,SESCO,I.3.1,Córdoba,AR-X,annual,2014,bioetanol combustion consumption by petrochemical industries,0.14145192,TJ,CH4,10.0,kg/TJ,1.4145192,kg +667a66a8-8674-32b4-92d0-1d96e1ce7293,SESCO,I.3.1,Córdoba,AR-X,annual,2014,bioetanol combustion consumption by petrochemical industries,0.14145192,TJ,N2O,0.6,kg/TJ,0.084871152,kg +155c53d8-af14-3364-b0e4-94705770fa0e,SESCO,I.3.1,Buenos Aires,AR-B,annual,2014,bioetanol combustion consumption by petrochemical industries,0.0255636,TJ,CH4,10.0,kg/TJ,0.255636,kg +09cff81a-c187-34cd-910c-f83225c0f463,SESCO,I.3.1,Buenos Aires,AR-B,annual,2014,bioetanol combustion consumption by petrochemical industries,0.0255636,TJ,N2O,0.6,kg/TJ,0.015338159999999998,kg +88f45e7a-ef46-3e17-a98c-89c92b629942,SESCO,II.1.1,Buenos Aires,AR-B,annual,2014,bioetanol combustion consumption by freight transport,0.2721330432,TJ,CH4,10.0,kg/TJ,2.721330432,kg +a88d3a45-b24d-3f03-9aa3-6c4590466a27,SESCO,II.1.1,Buenos Aires,AR-B,annual,2014,bioetanol combustion consumption by freight transport,0.2721330432,TJ,N2O,0.6,kg/TJ,0.16327982591999998,kg +c55b86d6-788b-3748-b4a5-08549193ab39,SESCO,II.1.1,Capital Federal,AR-C,annual,2014,bioetanol combustion consumption by freight transport,0.5114935512,TJ,CH4,10.0,kg/TJ,5.114935512,kg +6db33bc1-5393-34bb-bab1-6ca7043b0855,SESCO,II.1.1,Capital Federal,AR-C,annual,2014,bioetanol combustion consumption by freight transport,0.5114935512,TJ,N2O,0.6,kg/TJ,0.30689613071999994,kg +b10d5cd9-04be-3dc3-98fa-743dff0c7971,SESCO,II.1.1,Chaco,AR-H,annual,2014,bioetanol combustion consumption by freight transport,0.004345812,TJ,CH4,10.0,kg/TJ,0.04345812,kg +b01d7daa-3f50-3525-a07e-98b78ebfb550,SESCO,II.1.1,Chaco,AR-H,annual,2014,bioetanol combustion consumption by freight transport,0.004345812,TJ,N2O,0.6,kg/TJ,0.0026074872,kg +01a29b05-c8ed-3721-ac65-68c0a4fdfd0f,SESCO,II.1.1,Corrientes,AR-W,annual,2014,bioetanol combustion consumption by freight transport,0.001874664,TJ,CH4,10.0,kg/TJ,0.018746640000000002,kg +d4b24fcc-8890-3ee7-b5bd-7681d43aff26,SESCO,II.1.1,Corrientes,AR-W,annual,2014,bioetanol combustion consumption by freight transport,0.001874664,TJ,N2O,0.6,kg/TJ,0.0011247984,kg +bc66acac-1501-3272-928b-fc7d0b8e5006,SESCO,II.1.1,Córdoba,AR-X,annual,2014,bioetanol combustion consumption by freight transport,0.028580104799999995,TJ,CH4,10.0,kg/TJ,0.28580104799999995,kg +a3f046ee-f280-319c-8434-261a87fb5937,SESCO,II.1.1,Córdoba,AR-X,annual,2014,bioetanol combustion consumption by freight transport,0.028580104799999995,TJ,N2O,0.6,kg/TJ,0.017148062879999995,kg +01b07d4e-fb3f-3b22-ac75-6e35093064a4,SESCO,II.1.1,Entre Rios,AR-E,annual,2014,bioetanol combustion consumption by freight transport,0.0002045088,TJ,CH4,10.0,kg/TJ,0.002045088,kg +be3ad310-3f27-3a04-8665-f1d083bc7ce2,SESCO,II.1.1,Entre Rios,AR-E,annual,2014,bioetanol combustion consumption by freight transport,0.0002045088,TJ,N2O,0.6,kg/TJ,0.00012270528,kg +c419a2f1-9e7f-3651-8dec-63ac268132a3,SESCO,II.1.1,Mendoza,AR-M,annual,2014,bioetanol combustion consumption by freight transport,6.81696e-05,TJ,CH4,10.0,kg/TJ,0.0006816960000000001,kg +d9c8e5a2-c1cb-3c43-91d1-192e87932dff,SESCO,II.1.1,Mendoza,AR-M,annual,2014,bioetanol combustion consumption by freight transport,6.81696e-05,TJ,N2O,0.6,kg/TJ,4.090176e-05,kg +4ccc6183-494f-3bfa-8dd4-682f5cef43c8,SESCO,II.1.1,San Luis,AR-D,annual,2014,bioetanol combustion consumption by freight transport,0.0038004552,TJ,CH4,10.0,kg/TJ,0.038004552,kg +7ec9f050-3146-3936-be22-297516359e12,SESCO,II.1.1,San Luis,AR-D,annual,2014,bioetanol combustion consumption by freight transport,0.0038004552,TJ,N2O,0.6,kg/TJ,0.0022802731199999997,kg +2747aa9f-03a7-3f46-b82d-91ad42e38e8e,SESCO,II.1.1,Santa Fe,AR-S,annual,2014,bioetanol combustion consumption by freight transport,0.22380079679999998,TJ,CH4,10.0,kg/TJ,2.238007968,kg +5e5d4466-124d-30d2-8316-b3505ba8ca48,SESCO,II.1.1,Santa Fe,AR-S,annual,2014,bioetanol combustion consumption by freight transport,0.22380079679999998,TJ,N2O,0.6,kg/TJ,0.13428047808,kg +1ed4b42a-2e00-362c-af79-d3ffba7fa6f8,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2014,bioetanol combustion consumption by freight transport,0.000170424,TJ,CH4,10.0,kg/TJ,0.0017042399999999999,kg +27421454-4516-3dad-9f3d-2ad6e99edc3d,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2014,bioetanol combustion consumption by freight transport,0.000170424,TJ,N2O,0.6,kg/TJ,0.00010225439999999999,kg +fca70eaa-02cd-31b4-b6c3-8bd3233852c6,SESCO,II.1.1,Tucuman,AR-T,annual,2014,bioetanol combustion consumption by freight transport,0.0030676320000000003,TJ,CH4,10.0,kg/TJ,0.030676320000000003,kg +ebd0a288-9af0-3fca-b73c-9431e7b42f67,SESCO,II.1.1,Tucuman,AR-T,annual,2014,bioetanol combustion consumption by freight transport,0.0030676320000000003,TJ,N2O,0.6,kg/TJ,0.0018405792,kg +f75ac8d6-f10d-3d5a-97a5-c2ec38c6a4c7,SESCO,II.1.1,Buenos Aires,AR-B,annual,2014,bioetanol combustion consumption by freight transport,0.32216952959999995,TJ,CH4,10.0,kg/TJ,3.2216952959999996,kg +c53af122-841d-3937-a0a0-3f30d65127d7,SESCO,II.1.1,Buenos Aires,AR-B,annual,2014,bioetanol combustion consumption by freight transport,0.32216952959999995,TJ,N2O,0.6,kg/TJ,0.19330171775999996,kg +da50da94-38ce-3a1a-b383-d26b47b4a201,SESCO,II.1.1,Capital Federal,AR-C,annual,2014,bioetanol combustion consumption by freight transport,0.43785334080000005,TJ,CH4,10.0,kg/TJ,4.378533408000001,kg +ff61679f-f93c-35b4-8bfd-b3db9a5282f8,SESCO,II.1.1,Capital Federal,AR-C,annual,2014,bioetanol combustion consumption by freight transport,0.43785334080000005,TJ,N2O,0.6,kg/TJ,0.26271200448000004,kg +44e8dc79-e03d-3e82-928b-c5238a65e5e2,SESCO,II.1.1,Chaco,AR-H,annual,2014,bioetanol combustion consumption by freight transport,0.0028460808000000002,TJ,CH4,10.0,kg/TJ,0.028460808000000004,kg +8dc926ab-02d8-3123-bea2-5b7856a9b062,SESCO,II.1.1,Chaco,AR-H,annual,2014,bioetanol combustion consumption by freight transport,0.0028460808000000002,TJ,N2O,0.6,kg/TJ,0.00170764848,kg +0f363f4b-fe8b-34a4-8fb0-498fba0e3b0c,SESCO,II.1.1,Corrientes,AR-W,annual,2014,bioetanol combustion consumption by freight transport,0.005283144,TJ,CH4,10.0,kg/TJ,0.05283144,kg +7cdeee0c-76f8-39f7-b49f-36f2dc257327,SESCO,II.1.1,Corrientes,AR-W,annual,2014,bioetanol combustion consumption by freight transport,0.005283144,TJ,N2O,0.6,kg/TJ,0.0031698864,kg +17ac965a-ecaa-340f-8b77-b1a0cf523afc,SESCO,II.1.1,Córdoba,AR-X,annual,2014,bioetanol combustion consumption by freight transport,0.028546020000000002,TJ,CH4,10.0,kg/TJ,0.2854602,kg +ff1efd94-5dfd-38fa-973c-62a04c62d8ca,SESCO,II.1.1,Córdoba,AR-X,annual,2014,bioetanol combustion consumption by freight transport,0.028546020000000002,TJ,N2O,0.6,kg/TJ,0.017127612,kg +4959fd8f-ed29-38a6-a2e6-14afd1c281f6,SESCO,II.1.1,Entre Rios,AR-E,annual,2014,bioetanol combustion consumption by freight transport,0.008776836,TJ,CH4,10.0,kg/TJ,0.08776835999999999,kg +fc92edf7-aee5-3662-8e2f-d6fd8e89b7dc,SESCO,II.1.1,Entre Rios,AR-E,annual,2014,bioetanol combustion consumption by freight transport,0.008776836,TJ,N2O,0.6,kg/TJ,0.0052661016,kg +9dd3eb6b-0835-383c-8d5b-c93bb619ab33,SESCO,II.1.1,Misiones,AR-N,annual,2014,bioetanol combustion consumption by freight transport,0.000340848,TJ,CH4,10.0,kg/TJ,0.0034084799999999998,kg +2605ddef-32aa-3c72-bf75-40c2f90761cf,SESCO,II.1.1,Misiones,AR-N,annual,2014,bioetanol combustion consumption by freight transport,0.000340848,TJ,N2O,0.6,kg/TJ,0.00020450879999999998,kg +7e7611e4-2a10-37a0-bb09-14a001f5e3b6,SESCO,II.1.1,San Luis,AR-D,annual,2014,bioetanol combustion consumption by freight transport,0.0001533816,TJ,CH4,10.0,kg/TJ,0.001533816,kg +09f1dbb4-690b-3580-9e4f-f34fc8d6b86c,SESCO,II.1.1,San Luis,AR-D,annual,2014,bioetanol combustion consumption by freight transport,0.0001533816,TJ,N2O,0.6,kg/TJ,9.202895999999999e-05,kg +35a04a3a-10d3-3ade-900b-7b0ed8ba52b0,SESCO,II.1.1,Santa Fe,AR-S,annual,2014,bioetanol combustion consumption by freight transport,0.040492742400000004,TJ,CH4,10.0,kg/TJ,0.40492742400000004,kg +e304350e-3d14-34c0-9881-b0a02dd9cc02,SESCO,II.1.1,Santa Fe,AR-S,annual,2014,bioetanol combustion consumption by freight transport,0.040492742400000004,TJ,N2O,0.6,kg/TJ,0.024295645440000003,kg +cbe6ce33-fda4-3300-8a4c-8a8767721eea,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2014,bioetanol combustion consumption by freight transport,0.005112719999999999,TJ,CH4,10.0,kg/TJ,0.0511272,kg +90ad8231-d310-3c9b-8727-46ca11099751,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2014,bioetanol combustion consumption by freight transport,0.005112719999999999,TJ,N2O,0.6,kg/TJ,0.0030676319999999994,kg +a5359d69-9039-3e01-b0f4-9c9470ba9140,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2014,bioetanol combustion consumption by freight transport,0.002811996,TJ,CH4,10.0,kg/TJ,0.028119960000000003,kg +ec585101-c341-3800-9894-e80714de688e,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2014,bioetanol combustion consumption by freight transport,0.002811996,TJ,N2O,0.6,kg/TJ,0.0016871976,kg +ea1e573e-c70e-32b4-9029-45056daa2fc3,SESCO,II.1.1,Tucuman,AR-T,annual,2014,bioetanol combustion consumption by freight transport,0.0076861224,TJ,CH4,10.0,kg/TJ,0.076861224,kg +defdca30-f8ac-3836-a7aa-ced26557fcdf,SESCO,II.1.1,Tucuman,AR-T,annual,2014,bioetanol combustion consumption by freight transport,0.0076861224,TJ,N2O,0.6,kg/TJ,0.00461167344,kg +c71fbfd2-d6ee-31b3-993d-40e8f667a5c3,SESCO,II.1.1,Capital Federal,AR-C,annual,2014,bioetanol combustion consumption by public passenger transport,0.0013974768,TJ,CH4,10.0,kg/TJ,0.013974768,kg +2463b81c-48d1-3389-9f18-b04745fbc80e,SESCO,II.1.1,Capital Federal,AR-C,annual,2014,bioetanol combustion consumption by public passenger transport,0.0013974768,TJ,N2O,0.6,kg/TJ,0.00083848608,kg +65690277-ebe6-3ffb-9634-c3a2a6f91b9f,SESCO,II.1.1,Entre Rios,AR-E,annual,2014,bioetanol combustion consumption by public passenger transport,6.81696e-05,TJ,CH4,10.0,kg/TJ,0.0006816960000000001,kg +3fa10b4e-fd70-3268-aa22-068ecde3abeb,SESCO,II.1.1,Entre Rios,AR-E,annual,2014,bioetanol combustion consumption by public passenger transport,6.81696e-05,TJ,N2O,0.6,kg/TJ,4.090176e-05,kg +605f7072-d686-3013-94ee-814e117dc62b,SESCO,II.1.1,Santa Fe,AR-S,annual,2014,bioetanol combustion consumption by public passenger transport,0.06987384,TJ,CH4,10.0,kg/TJ,0.6987384000000001,kg +8a0f87fd-8efa-37b0-9f35-b8568e3205fb,SESCO,II.1.1,Santa Fe,AR-S,annual,2014,bioetanol combustion consumption by public passenger transport,0.06987384,TJ,N2O,0.6,kg/TJ,0.041924304,kg +36eb3189-6183-3877-92e9-dd3a2dd32499,SESCO,II.1.1,Buenos Aires,AR-B,annual,2014,bioetanol combustion consumption by public passenger transport,0.05027507999999999,TJ,CH4,10.0,kg/TJ,0.5027507999999999,kg +14de0894-1640-307e-9f23-beb55510f041,SESCO,II.1.1,Buenos Aires,AR-B,annual,2014,bioetanol combustion consumption by public passenger transport,0.05027507999999999,TJ,N2O,0.6,kg/TJ,0.030165047999999993,kg +6ced6e94-2fa2-3693-91d5-46b86c7d691c,SESCO,II.1.1,Capital Federal,AR-C,annual,2014,bioetanol combustion consumption by public passenger transport,0.013293072,TJ,CH4,10.0,kg/TJ,0.13293072,kg +491b730a-f260-376b-94ca-a90c889b0742,SESCO,II.1.1,Capital Federal,AR-C,annual,2014,bioetanol combustion consumption by public passenger transport,0.013293072,TJ,N2O,0.6,kg/TJ,0.007975843199999999,kg +fd0eca06-ab22-36b7-81df-c015ccb7aa32,SESCO,II.1.1,Chaco,AR-H,annual,2014,bioetanol combustion consumption by public passenger transport,0.000511272,TJ,CH4,10.0,kg/TJ,0.00511272,kg +74a49f03-78ab-354e-b887-76f0025237aa,SESCO,II.1.1,Chaco,AR-H,annual,2014,bioetanol combustion consumption by public passenger transport,0.000511272,TJ,N2O,0.6,kg/TJ,0.0003067632,kg +df92bf16-a961-3cf7-b72d-4eb8e5a9b3d2,SESCO,II.1.1,Entre Rios,AR-E,annual,2014,bioetanol combustion consumption by public passenger transport,0.0034255224000000004,TJ,CH4,10.0,kg/TJ,0.034255224,kg +6fb20dfc-2457-30f0-b71d-61aec3b79a59,SESCO,II.1.1,Entre Rios,AR-E,annual,2014,bioetanol combustion consumption by public passenger transport,0.0034255224000000004,TJ,N2O,0.6,kg/TJ,0.00205531344,kg +b6e53611-9bc9-3b5f-b98f-f9384fba70f9,SESCO,II.1.1,Rio Negro,AR-R,annual,2014,bioetanol combustion consumption by public passenger transport,0.06305688,TJ,CH4,10.0,kg/TJ,0.6305687999999999,kg +b720d73b-83fc-3b84-9f35-c3da11c9591f,SESCO,II.1.1,Rio Negro,AR-R,annual,2014,bioetanol combustion consumption by public passenger transport,0.06305688,TJ,N2O,0.6,kg/TJ,0.037834127999999995,kg +2dab2f44-1482-3b74-ae80-065eeefe03c5,SESCO,II.5.1,Córdoba,AR-X,annual,2014,bioetanol combustion consumption by agriculture machines,0.15045064804799999,TJ,CH4,10.0,kg/TJ,1.50450648048,kg +ec091ee7-6779-35cf-ad85-7bea4c04f0af,SESCO,II.5.1,Córdoba,AR-X,annual,2014,bioetanol combustion consumption by agriculture machines,0.15045064804799999,TJ,N2O,0.6,kg/TJ,0.0902703888288,kg +4db62813-f32d-30a6-ab06-eb447d2bf32e,SESCO,II.5.1,Santa Fe,AR-S,annual,2014,bioetanol combustion consumption by agriculture machines,0.23966079508799998,TJ,CH4,10.0,kg/TJ,2.39660795088,kg +9c87dd81-10c9-31c0-872e-721a21a29ed2,SESCO,II.5.1,Santa Fe,AR-S,annual,2014,bioetanol combustion consumption by agriculture machines,0.23966079508799998,TJ,N2O,0.6,kg/TJ,0.1437964770528,kg +fac4fd6e-7412-3bc5-b0ce-6b8c95ce3631,SESCO,II.5.1,Santiago del Estero,AR-G,annual,2014,bioetanol combustion consumption by agriculture machines,0.123636135888,TJ,CH4,10.0,kg/TJ,1.23636135888,kg +647c754f-cbaf-3afb-a9e1-98c7da1ae2b1,SESCO,II.5.1,Santiago del Estero,AR-G,annual,2014,bioetanol combustion consumption by agriculture machines,0.123636135888,TJ,N2O,0.6,kg/TJ,0.0741816815328,kg +915622e2-9fa5-3493-89c8-a0bda65d6116,SESCO,II.1.1,Buenos Aires,AR-B,annual,2014,bioetanol combustion consumption by to the public,106.18407425570399,TJ,CH4,10.0,kg/TJ,1061.84074255704,kg +7746d659-8a15-3030-849e-d2a68d4d69af,SESCO,II.1.1,Buenos Aires,AR-B,annual,2014,bioetanol combustion consumption by to the public,106.18407425570399,TJ,N2O,0.6,kg/TJ,63.71044455342239,kg +287e52b2-248b-3460-a5ca-854ad1c019c6,SESCO,II.1.1,Capital Federal,AR-C,annual,2014,bioetanol combustion consumption by to the public,12.989889237815998,TJ,CH4,10.0,kg/TJ,129.89889237815999,kg +d8ed865f-1d58-30c2-b66c-0242cc2e8162,SESCO,II.1.1,Capital Federal,AR-C,annual,2014,bioetanol combustion consumption by to the public,12.989889237815998,TJ,N2O,0.6,kg/TJ,7.793933542689598,kg +41a4ee98-6c58-3fe7-afe4-e06379b761bc,SESCO,II.1.1,Catamarca,AR-K,annual,2014,bioetanol combustion consumption by to the public,9.387681289631999,TJ,CH4,10.0,kg/TJ,93.87681289631999,kg +7bab8d1b-4bd1-3363-bb33-1a5a0a829419,SESCO,II.1.1,Catamarca,AR-K,annual,2014,bioetanol combustion consumption by to the public,9.387681289631999,TJ,N2O,0.6,kg/TJ,5.632608773779199,kg +4ee7568a-b03b-377c-b02f-d0ab5acfc429,SESCO,II.1.1,Chaco,AR-H,annual,2014,bioetanol combustion consumption by to the public,17.896374383544,TJ,CH4,10.0,kg/TJ,178.96374383544,kg +72f8b719-5acf-30a4-be30-318f3ee9d6ea,SESCO,II.1.1,Chaco,AR-H,annual,2014,bioetanol combustion consumption by to the public,17.896374383544,TJ,N2O,0.6,kg/TJ,10.737824630126399,kg +2dd2dbaa-464d-3505-99f6-5c228407bbbb,SESCO,II.1.1,Corrientes,AR-W,annual,2014,bioetanol combustion consumption by to the public,17.772925202784,TJ,CH4,10.0,kg/TJ,177.72925202783998,kg +f751d848-bc4e-34cc-a2ea-7fb18e275095,SESCO,II.1.1,Corrientes,AR-W,annual,2014,bioetanol combustion consumption by to the public,17.772925202784,TJ,N2O,0.6,kg/TJ,10.663755121670398,kg +412b118a-f71e-38a3-a551-1d8843d15a8a,SESCO,II.1.1,Córdoba,AR-X,annual,2014,bioetanol combustion consumption by to the public,44.45554844469601,TJ,CH4,10.0,kg/TJ,444.55548444696007,kg +97ee493c-6317-3a3c-95f9-464e641d55eb,SESCO,II.1.1,Córdoba,AR-X,annual,2014,bioetanol combustion consumption by to the public,44.45554844469601,TJ,N2O,0.6,kg/TJ,26.673329066817605,kg +c1d0596a-1f6e-3b69-bc92-70b5cd1e45ef,SESCO,II.1.1,Entre Rios,AR-E,annual,2014,bioetanol combustion consumption by to the public,25.974367854479997,TJ,CH4,10.0,kg/TJ,259.7436785448,kg +dd630215-14d3-3ad8-8bef-b562d9b5f4ff,SESCO,II.1.1,Entre Rios,AR-E,annual,2014,bioetanol combustion consumption by to the public,25.974367854479997,TJ,N2O,0.6,kg/TJ,15.584620712687997,kg +67260a16-d2ce-3a7d-b99a-ab23e4245f12,SESCO,II.1.1,Jujuy,AR-Y,annual,2014,bioetanol combustion consumption by to the public,2.508537662208,TJ,CH4,10.0,kg/TJ,25.08537662208,kg +0ebaf92c-4880-3342-93d2-4af92cb3455f,SESCO,II.1.1,Jujuy,AR-Y,annual,2014,bioetanol combustion consumption by to the public,2.508537662208,TJ,N2O,0.6,kg/TJ,1.5051225973248,kg +02afd3ed-1049-3359-ae49-5fa05b31a727,SESCO,II.1.1,La Pampa,AR-L,annual,2014,bioetanol combustion consumption by to the public,0.588533890824,TJ,CH4,10.0,kg/TJ,5.88533890824,kg +ada877c2-c680-31da-9f6d-e83c18a58c2a,SESCO,II.1.1,La Pampa,AR-L,annual,2014,bioetanol combustion consumption by to the public,0.588533890824,TJ,N2O,0.6,kg/TJ,0.3531203344944,kg +183ce345-4e20-32af-8b1a-239514c05f76,SESCO,II.1.1,La Rioja,AR-F,annual,2014,bioetanol combustion consumption by to the public,3.998841688224,TJ,CH4,10.0,kg/TJ,39.98841688224,kg +1ddf79d5-0508-3074-9dba-9ab82b975936,SESCO,II.1.1,La Rioja,AR-F,annual,2014,bioetanol combustion consumption by to the public,3.998841688224,TJ,N2O,0.6,kg/TJ,2.3993050129344,kg +7c5763fc-e256-316c-bfea-c43a230d7db6,SESCO,II.1.1,Mendoza,AR-M,annual,2014,bioetanol combustion consumption by to the public,17.4047384664,TJ,CH4,10.0,kg/TJ,174.04738466400002,kg +d6674899-f851-3b3b-b7f5-8b9c0c36ee25,SESCO,II.1.1,Mendoza,AR-M,annual,2014,bioetanol combustion consumption by to the public,17.4047384664,TJ,N2O,0.6,kg/TJ,10.442843079840001,kg +9d54f596-0bdd-35ef-81d1-02f29214d01f,SESCO,II.1.1,Misiones,AR-N,annual,2014,bioetanol combustion consumption by to the public,12.889379468304,TJ,CH4,10.0,kg/TJ,128.89379468304,kg +c8ced396-aa5e-3c72-933e-8f35d113450b,SESCO,II.1.1,Misiones,AR-N,annual,2014,bioetanol combustion consumption by to the public,12.889379468304,TJ,N2O,0.6,kg/TJ,7.7336276809824,kg +58942299-96b2-33be-ab35-57e33f72d3fb,SESCO,II.1.1,Salta,AR-A,annual,2014,bioetanol combustion consumption by to the public,0.40593991298399995,TJ,CH4,10.0,kg/TJ,4.059399129839999,kg +f46c15ff-002c-3a6b-a6a7-ee26da70bbb9,SESCO,II.1.1,Salta,AR-A,annual,2014,bioetanol combustion consumption by to the public,0.40593991298399995,TJ,N2O,0.6,kg/TJ,0.24356394779039997,kg +f5a59678-d18d-3730-9356-b761a71459fe,SESCO,II.1.1,San Juan,AR-J,annual,2014,bioetanol combustion consumption by to the public,13.126380967296,TJ,CH4,10.0,kg/TJ,131.26380967296,kg +e3b51379-ec26-3256-88e0-3f737f118605,SESCO,II.1.1,San Juan,AR-J,annual,2014,bioetanol combustion consumption by to the public,13.126380967296,TJ,N2O,0.6,kg/TJ,7.8758285803776005,kg +d03c4547-3eff-3631-96e7-6611746816c7,SESCO,II.1.1,San Luis,AR-D,annual,2014,bioetanol combustion consumption by to the public,8.428178661048,TJ,CH4,10.0,kg/TJ,84.28178661048,kg +00aee032-a348-38b6-8893-b4c77f9af20e,SESCO,II.1.1,San Luis,AR-D,annual,2014,bioetanol combustion consumption by to the public,8.428178661048,TJ,N2O,0.6,kg/TJ,5.056907196628799,kg +fbce0b2a-1154-312b-b8b3-da11b8a6c6b2,SESCO,II.1.1,Santa Fe,AR-S,annual,2014,bioetanol combustion consumption by to the public,63.9604083996,TJ,CH4,10.0,kg/TJ,639.604083996,kg +a00c8281-dc31-3ae6-866d-94ba87d12c4a,SESCO,II.1.1,Santa Fe,AR-S,annual,2014,bioetanol combustion consumption by to the public,63.9604083996,TJ,N2O,0.6,kg/TJ,38.37624503976,kg +aa12adff-95cb-3b66-84ee-abe20aa0f038,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2014,bioetanol combustion consumption by to the public,10.588365236232,TJ,CH4,10.0,kg/TJ,105.88365236232,kg +5cf08bb8-820b-3ca8-9a4e-40e77968fdad,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2014,bioetanol combustion consumption by to the public,10.588365236232,TJ,N2O,0.6,kg/TJ,6.353019141739201,kg +36870e03-0cb7-34d2-b7fb-82b109516f56,SESCO,II.1.1,Tucuman,AR-T,annual,2014,bioetanol combustion consumption by to the public,10.973793427848,TJ,CH4,10.0,kg/TJ,109.73793427848,kg +6051e0d5-4905-3297-9689-34c0d86028f2,SESCO,II.1.1,Tucuman,AR-T,annual,2014,bioetanol combustion consumption by to the public,10.973793427848,TJ,N2O,0.6,kg/TJ,6.5842760567087995,kg +e42f9a37-e884-3d4b-a870-0f824d3350c1,SESCO,II.1.1,Buenos Aires,AR-B,annual,2014,bioetanol combustion consumption by to the public,17.110993274063997,TJ,CH4,10.0,kg/TJ,171.10993274063998,kg +7373f423-52a7-3a50-9b62-db5202db0214,SESCO,II.1.1,Buenos Aires,AR-B,annual,2014,bioetanol combustion consumption by to the public,17.110993274063997,TJ,N2O,0.6,kg/TJ,10.266595964438398,kg +da49e4be-d68d-3ea7-913a-8d0c02c7f422,SESCO,II.1.1,Capital Federal,AR-C,annual,2014,bioetanol combustion consumption by to the public,3.8743844495040003,TJ,CH4,10.0,kg/TJ,38.74384449504,kg +010e80af-8aa9-3c0c-ae35-9deb9d62b3b9,SESCO,II.1.1,Capital Federal,AR-C,annual,2014,bioetanol combustion consumption by to the public,3.8743844495040003,TJ,N2O,0.6,kg/TJ,2.3246306697024,kg +9d67d8a2-ba1c-3dc2-9475-a0e359ebcc5e,SESCO,II.1.1,Catamarca,AR-K,annual,2014,bioetanol combustion consumption by to the public,0.825307532928,TJ,CH4,10.0,kg/TJ,8.25307532928,kg +b143badb-d1e3-33ea-878e-d64b315288cc,SESCO,II.1.1,Catamarca,AR-K,annual,2014,bioetanol combustion consumption by to the public,0.825307532928,TJ,N2O,0.6,kg/TJ,0.49518451975679995,kg +81c3deff-4c9f-3497-bb8c-07037246370f,SESCO,II.1.1,Chaco,AR-H,annual,2014,bioetanol combustion consumption by to the public,1.520114251248,TJ,CH4,10.0,kg/TJ,15.201142512479999,kg +eee59b54-4a60-31fc-b1a1-d4b2b557a806,SESCO,II.1.1,Chaco,AR-H,annual,2014,bioetanol combustion consumption by to the public,1.520114251248,TJ,N2O,0.6,kg/TJ,0.9120685507487999,kg +ed86f5f9-1ebd-30cf-a748-bdbb430ac091,SESCO,II.1.1,Corrientes,AR-W,annual,2014,bioetanol combustion consumption by to the public,3.279802551768,TJ,CH4,10.0,kg/TJ,32.798025517679996,kg +24451a7a-b99b-3d1d-a167-273b7431d066,SESCO,II.1.1,Corrientes,AR-W,annual,2014,bioetanol combustion consumption by to the public,3.279802551768,TJ,N2O,0.6,kg/TJ,1.9678815310607998,kg +4e92003a-fff8-327d-9fa2-9a528e029603,SESCO,II.1.1,Córdoba,AR-X,annual,2014,bioetanol combustion consumption by to the public,7.685076848759999,TJ,CH4,10.0,kg/TJ,76.85076848759999,kg +b7a8b775-3aef-344b-b5a0-23a0fbb5726a,SESCO,II.1.1,Córdoba,AR-X,annual,2014,bioetanol combustion consumption by to the public,7.685076848759999,TJ,N2O,0.6,kg/TJ,4.611046109255999,kg +f917a4ff-38a8-3a26-bfcf-3cc030e76bb9,SESCO,II.1.1,Entre Rios,AR-E,annual,2014,bioetanol combustion consumption by to the public,4.880980682856,TJ,CH4,10.0,kg/TJ,48.80980682856,kg +2ecdb84a-6e13-3e92-a6e2-ea3c81c9b602,SESCO,II.1.1,Entre Rios,AR-E,annual,2014,bioetanol combustion consumption by to the public,4.880980682856,TJ,N2O,0.6,kg/TJ,2.9285884097136,kg +c9decb61-9933-317f-aa36-f76a4cc4431b,SESCO,II.1.1,Jujuy,AR-Y,annual,2014,bioetanol combustion consumption by to the public,0.11690864848800002,TJ,CH4,10.0,kg/TJ,1.1690864848800002,kg +2732a14f-e907-3eda-8306-9c16d8a7f109,SESCO,II.1.1,Jujuy,AR-Y,annual,2014,bioetanol combustion consumption by to the public,0.11690864848800002,TJ,N2O,0.6,kg/TJ,0.07014518909280001,kg +8ecd86f1-2676-34ab-8691-596bc9e7dacb,SESCO,II.1.1,La Pampa,AR-L,annual,2014,bioetanol combustion consumption by to the public,0.154011657528,TJ,CH4,10.0,kg/TJ,1.54011657528,kg +7b3dd9b8-5f56-3b85-bf3d-6958078ffb76,SESCO,II.1.1,La Pampa,AR-L,annual,2014,bioetanol combustion consumption by to the public,0.154011657528,TJ,N2O,0.6,kg/TJ,0.0924069945168,kg +2a2a3e30-354a-3e2c-90e1-81f8820c696a,SESCO,II.1.1,La Rioja,AR-F,annual,2014,bioetanol combustion consumption by to the public,0.336099305664,TJ,CH4,10.0,kg/TJ,3.36099305664,kg +f33694f8-34ea-3865-ac04-239c51eb1812,SESCO,II.1.1,La Rioja,AR-F,annual,2014,bioetanol combustion consumption by to the public,0.336099305664,TJ,N2O,0.6,kg/TJ,0.20165958339839998,kg +5df7c5c8-383f-3ffa-b2fd-71c7446f1ad9,SESCO,II.1.1,Mendoza,AR-M,annual,2014,bioetanol combustion consumption by to the public,2.488009409712,TJ,CH4,10.0,kg/TJ,24.880094097119997,kg +e2544cbb-485e-304d-a1c7-6167e78524b8,SESCO,II.1.1,Mendoza,AR-M,annual,2014,bioetanol combustion consumption by to the public,2.488009409712,TJ,N2O,0.6,kg/TJ,1.4928056458271999,kg +a48e86a5-0cb9-36d1-bb7e-1eaecbd9b0cb,SESCO,II.1.1,Misiones,AR-N,annual,2014,bioetanol combustion consumption by to the public,1.447837432848,TJ,CH4,10.0,kg/TJ,14.47837432848,kg +a00d65ef-b70b-34b3-8b3e-d09c7bb6fa5e,SESCO,II.1.1,Misiones,AR-N,annual,2014,bioetanol combustion consumption by to the public,1.447837432848,TJ,N2O,0.6,kg/TJ,0.8687024597087999,kg +c1008803-c82b-3135-a0d6-6f8706d4785a,SESCO,II.1.1,San Juan,AR-J,annual,2014,bioetanol combustion consumption by to the public,2.497473224856,TJ,CH4,10.0,kg/TJ,24.97473224856,kg +cfe685e8-8377-34f3-b01a-e207bf5bbe1b,SESCO,II.1.1,San Juan,AR-J,annual,2014,bioetanol combustion consumption by to the public,2.497473224856,TJ,N2O,0.6,kg/TJ,1.4984839349135999,kg +7545c293-3811-3d53-a125-7f5c51af0c01,SESCO,II.1.1,San Luis,AR-D,annual,2014,bioetanol combustion consumption by to the public,2.0217341175840002,TJ,CH4,10.0,kg/TJ,20.21734117584,kg +2d17b9d0-00db-32ce-a138-e85cb3a6b273,SESCO,II.1.1,San Luis,AR-D,annual,2014,bioetanol combustion consumption by to the public,2.0217341175840002,TJ,N2O,0.6,kg/TJ,1.2130404705504,kg +2c9722c9-ab70-35e7-95ff-b7da7106a806,SESCO,II.1.1,Santa Fe,AR-S,annual,2014,bioetanol combustion consumption by to the public,11.232940503095998,TJ,CH4,10.0,kg/TJ,112.32940503095998,kg +0b282ff9-1fef-30ba-9577-b2650a7877b9,SESCO,II.1.1,Santa Fe,AR-S,annual,2014,bioetanol combustion consumption by to the public,11.232940503095998,TJ,N2O,0.6,kg/TJ,6.739764301857599,kg +80c821da-ca0f-36a3-b2ac-dd4170cb0460,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2014,bioetanol combustion consumption by to the public,1.3303982544479998,TJ,CH4,10.0,kg/TJ,13.303982544479997,kg +95f2951a-f42e-396b-8b9a-a6a331d491dd,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2014,bioetanol combustion consumption by to the public,1.3303982544479998,TJ,N2O,0.6,kg/TJ,0.7982389526687999,kg +828bc0ec-6781-381f-867a-4e28da5e9478,SESCO,II.1.1,Tucuman,AR-T,annual,2014,bioetanol combustion consumption by to the public,1.229289785424,TJ,CH4,10.0,kg/TJ,12.29289785424,kg +f1e193b0-db94-319a-a811-6b4188eeac0b,SESCO,II.1.1,Tucuman,AR-T,annual,2014,bioetanol combustion consumption by to the public,1.229289785424,TJ,N2O,0.6,kg/TJ,0.7375738712543999,kg +a0d02228-a71d-3712-ba50-5f34415333a8,SESCO,II.5.1,Buenos Aires,AR-B,annual,2014,bioetanol combustion consumption by agriculture machines,0.32585580072000003,TJ,CH4,10.0,kg/TJ,3.2585580072000004,kg +708665b2-8344-3aeb-9606-2c3bc3edd7ab,SESCO,II.5.1,Buenos Aires,AR-B,annual,2014,bioetanol combustion consumption by agriculture machines,0.32585580072000003,TJ,N2O,0.6,kg/TJ,0.195513480432,kg +4104c22c-1c44-342b-ba2d-1f15a006a3eb,SESCO,II.1.1,Buenos Aires,AR-B,annual,2014,bioetanol combustion consumption by to the public,237.36886326215998,TJ,CH4,10.0,kg/TJ,2373.6886326216,kg +3103ea96-6178-3083-992a-b5a5dd124bda,SESCO,II.1.1,Buenos Aires,AR-B,annual,2014,bioetanol combustion consumption by to the public,237.36886326215998,TJ,N2O,0.6,kg/TJ,142.42131795729597,kg +45e11bd1-f2f8-3311-9973-726e68cb517d,SESCO,II.1.1,Capital Federal,AR-C,annual,2014,bioetanol combustion consumption by to the public,27.177283503359998,TJ,CH4,10.0,kg/TJ,271.77283503359996,kg +e7d97fa7-5ddc-3ddb-8cec-8bca22277a7a,SESCO,II.1.1,Capital Federal,AR-C,annual,2014,bioetanol combustion consumption by to the public,27.177283503359998,TJ,N2O,0.6,kg/TJ,16.306370102015997,kg +7b928138-05ab-3a23-a8b6-5dbd3b362256,SESCO,II.1.1,Chaco,AR-H,annual,2014,bioetanol combustion consumption by to the public,0.17256452544,TJ,CH4,10.0,kg/TJ,1.7256452544,kg +f6f1da82-fa93-3bf2-a74f-45f3722907c1,SESCO,II.1.1,Chaco,AR-H,annual,2014,bioetanol combustion consumption by to the public,0.17256452544,TJ,N2O,0.6,kg/TJ,0.103538715264,kg +0717ac70-bf76-33ac-b84b-7dd64554999b,SESCO,II.1.1,Chubut,AR-U,annual,2014,bioetanol combustion consumption by to the public,76.79499893784,TJ,CH4,10.0,kg/TJ,767.9499893784,kg +5104353c-bb1e-3ab5-aa20-9f2b4ae421ba,SESCO,II.1.1,Chubut,AR-U,annual,2014,bioetanol combustion consumption by to the public,76.79499893784,TJ,N2O,0.6,kg/TJ,46.076999362704,kg +155770aa-c7f6-3139-aeaf-dcd1d2efaf47,SESCO,II.1.1,Córdoba,AR-X,annual,2014,bioetanol combustion consumption by to the public,26.404022096640002,TJ,CH4,10.0,kg/TJ,264.0402209664,kg +c94d86a1-fbf1-39cf-9e69-c962fa546fef,SESCO,II.1.1,Córdoba,AR-X,annual,2014,bioetanol combustion consumption by to the public,26.404022096640002,TJ,N2O,0.6,kg/TJ,15.842413257984001,kg +398ea1e8-ec49-32ae-a1e6-78c703dcbd33,SESCO,II.1.1,Entre Rios,AR-E,annual,2014,bioetanol combustion consumption by to the public,5.474584687679999,TJ,CH4,10.0,kg/TJ,54.745846876799995,kg +c3033d40-dc3e-37e8-819c-6868b11dd6b3,SESCO,II.1.1,Entre Rios,AR-E,annual,2014,bioetanol combustion consumption by to the public,5.474584687679999,TJ,N2O,0.6,kg/TJ,3.2847508126079994,kg +8a8f2a51-7a97-38af-9b28-6d75620b18f0,SESCO,II.1.1,La Pampa,AR-L,annual,2014,bioetanol combustion consumption by to the public,12.063769603199999,TJ,CH4,10.0,kg/TJ,120.637696032,kg +2aa20809-edae-3055-b6a7-8a9b5fb86c35,SESCO,II.1.1,La Pampa,AR-L,annual,2014,bioetanol combustion consumption by to the public,12.063769603199999,TJ,N2O,0.6,kg/TJ,7.238261761919999,kg +f81aa750-4a34-313e-bd7d-721b309d49c0,SESCO,II.1.1,Mendoza,AR-M,annual,2014,bioetanol combustion consumption by to the public,1.67760443304,TJ,CH4,10.0,kg/TJ,16.776044330399998,kg +328064a6-292c-352d-b759-14eb8cc4d20f,SESCO,II.1.1,Mendoza,AR-M,annual,2014,bioetanol combustion consumption by to the public,1.67760443304,TJ,N2O,0.6,kg/TJ,1.0065626598239998,kg +6b45e22b-892f-309b-9308-f93dc69befe9,SESCO,II.1.1,Neuquén,AR-Q,annual,2014,bioetanol combustion consumption by to the public,29.74891008528,TJ,CH4,10.0,kg/TJ,297.4891008528,kg +3390ec0c-4e42-3b6a-9f92-079feb745741,SESCO,II.1.1,Neuquén,AR-Q,annual,2014,bioetanol combustion consumption by to the public,29.74891008528,TJ,N2O,0.6,kg/TJ,17.849346051168,kg +b5d68c2c-6509-3e31-b282-51817c74130f,SESCO,II.1.1,Rio Negro,AR-R,annual,2014,bioetanol combustion consumption by to the public,59.649882688800005,TJ,CH4,10.0,kg/TJ,596.498826888,kg +76f5c5f1-b10e-3514-ad45-359c06e7325d,SESCO,II.1.1,Rio Negro,AR-R,annual,2014,bioetanol combustion consumption by to the public,59.649882688800005,TJ,N2O,0.6,kg/TJ,35.78992961328,kg +9325c197-12e2-3a19-be55-0afbc444cbbc,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2014,bioetanol combustion consumption by to the public,48.51992412575999,TJ,CH4,10.0,kg/TJ,485.1992412575999,kg +cd87b392-063d-32ab-b9e1-96ca89fc1bcb,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2014,bioetanol combustion consumption by to the public,48.51992412575999,TJ,N2O,0.6,kg/TJ,29.111954475455995,kg +eae7b764-8b62-39ec-a929-98d0d93ddcb9,SESCO,II.1.1,Santa Fe,AR-S,annual,2014,bioetanol combustion consumption by to the public,31.406752151280003,TJ,CH4,10.0,kg/TJ,314.0675215128,kg +b092c051-7bbe-3586-8291-de362aade013,SESCO,II.1.1,Santa Fe,AR-S,annual,2014,bioetanol combustion consumption by to the public,31.406752151280003,TJ,N2O,0.6,kg/TJ,18.844051290768,kg +daec9f31-db50-39d4-857c-158f659f2f64,SESCO,II.1.1,Buenos Aires,AR-B,annual,2014,bioetanol combustion consumption by to the public,62.721030535919994,TJ,CH4,10.0,kg/TJ,627.2103053592,kg +0c7a4f25-fa26-355e-a3bf-0835d53e6142,SESCO,II.1.1,Buenos Aires,AR-B,annual,2014,bioetanol combustion consumption by to the public,62.721030535919994,TJ,N2O,0.6,kg/TJ,37.632618321551995,kg +5d9e2950-73f7-3061-ada1-550b0b38ff6c,SESCO,II.1.1,Capital Federal,AR-C,annual,2014,bioetanol combustion consumption by to the public,12.376056245040001,TJ,CH4,10.0,kg/TJ,123.76056245040002,kg +80baa3c3-8219-3546-b91d-4c0ce1182493,SESCO,II.1.1,Capital Federal,AR-C,annual,2014,bioetanol combustion consumption by to the public,12.376056245040001,TJ,N2O,0.6,kg/TJ,7.425633747024,kg +d09b8d74-9ce1-3c8a-93fe-dd1513841d6d,SESCO,II.1.1,Chubut,AR-U,annual,2014,bioetanol combustion consumption by to the public,12.67251561,TJ,CH4,10.0,kg/TJ,126.72515609999999,kg +444e8b6f-d879-3a65-be6e-7fe0372e2efc,SESCO,II.1.1,Chubut,AR-U,annual,2014,bioetanol combustion consumption by to the public,12.67251561,TJ,N2O,0.6,kg/TJ,7.603509365999999,kg +4c6e0484-07b2-3189-8def-70ded35e3bb1,SESCO,II.1.1,Córdoba,AR-X,annual,2014,bioetanol combustion consumption by to the public,6.1485604804800005,TJ,CH4,10.0,kg/TJ,61.485604804800005,kg +2b8b2e9f-5108-3ac2-b42e-2fac05356510,SESCO,II.1.1,Córdoba,AR-X,annual,2014,bioetanol combustion consumption by to the public,6.1485604804800005,TJ,N2O,0.6,kg/TJ,3.689136288288,kg +65c2a6a6-9ecc-3e3e-b958-65666cddd6e4,SESCO,II.1.1,Entre Rios,AR-E,annual,2014,bioetanol combustion consumption by to the public,1.37634933672,TJ,CH4,10.0,kg/TJ,13.763493367199999,kg +fb16a88b-6e97-39fc-9f8b-b20e3e0ff7d2,SESCO,II.1.1,Entre Rios,AR-E,annual,2014,bioetanol combustion consumption by to the public,1.37634933672,TJ,N2O,0.6,kg/TJ,0.8258096020319999,kg +c95fb9cf-e76d-3fc0-bfbc-8c3f4042c3a6,SESCO,II.1.1,La Pampa,AR-L,annual,2014,bioetanol combustion consumption by to the public,2.82343485888,TJ,CH4,10.0,kg/TJ,28.234348588799996,kg +5d38cea1-8c16-38fa-86c4-5f6ab737fe60,SESCO,II.1.1,La Pampa,AR-L,annual,2014,bioetanol combustion consumption by to the public,2.82343485888,TJ,N2O,0.6,kg/TJ,1.6940609153279997,kg +8860b405-6e78-3700-a1c9-025af9a30e7a,SESCO,II.1.1,Mendoza,AR-M,annual,2014,bioetanol combustion consumption by to the public,0.16797159864,TJ,CH4,10.0,kg/TJ,1.6797159864,kg +e16b76f0-fb2d-3954-ae59-5bddf8198f76,SESCO,II.1.1,Mendoza,AR-M,annual,2014,bioetanol combustion consumption by to the public,0.16797159864,TJ,N2O,0.6,kg/TJ,0.100782959184,kg +4ddf1ebd-a264-3d90-9671-21fa1edfef91,SESCO,II.1.1,Neuquén,AR-Q,annual,2014,bioetanol combustion consumption by to the public,8.65517712336,TJ,CH4,10.0,kg/TJ,86.5517712336,kg +e56a56a6-720e-3028-b234-cdbf81e7a9de,SESCO,II.1.1,Neuquén,AR-Q,annual,2014,bioetanol combustion consumption by to the public,8.65517712336,TJ,N2O,0.6,kg/TJ,5.1931062740159994,kg +8ce820d8-7a4b-333b-80ab-e3b324dd5dd0,SESCO,II.1.1,Rio Negro,AR-R,annual,2014,bioetanol combustion consumption by to the public,10.3129697664,TJ,CH4,10.0,kg/TJ,103.129697664,kg +01538610-abda-3b96-bb18-68ee38c09747,SESCO,II.1.1,Rio Negro,AR-R,annual,2014,bioetanol combustion consumption by to the public,10.3129697664,TJ,N2O,0.6,kg/TJ,6.18778185984,kg +68fc8248-17f4-3042-8673-f51a016a7762,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2014,bioetanol combustion consumption by to the public,9.05703691536,TJ,CH4,10.0,kg/TJ,90.5703691536,kg +7cf4560f-3005-3d8f-aab8-eb0df4129e47,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2014,bioetanol combustion consumption by to the public,9.05703691536,TJ,N2O,0.6,kg/TJ,5.434222149216,kg +f8ea95c2-9c41-37ea-8f5a-b6bca8a172f1,SESCO,II.1.1,Santa Fe,AR-S,annual,2014,bioetanol combustion consumption by to the public,10.056587309280001,TJ,CH4,10.0,kg/TJ,100.56587309280002,kg +f6d6fb9d-7c6f-3668-a424-b028e2d54cc6,SESCO,II.1.1,Santa Fe,AR-S,annual,2014,bioetanol combustion consumption by to the public,10.056587309280001,TJ,N2O,0.6,kg/TJ,6.033952385568001,kg +5b0d0dc5-cbb2-3b1a-8353-d7c67b1d2e72,SESCO,II.1.1,Buenos Aires,AR-B,annual,2014,bioetanol combustion consumption by to the public,0.002726784,TJ,CH4,10.0,kg/TJ,0.027267839999999998,kg +e1d36a2e-84d6-38e6-adac-2d1cc8a1363e,SESCO,II.1.1,Buenos Aires,AR-B,annual,2014,bioetanol combustion consumption by to the public,0.002726784,TJ,N2O,0.6,kg/TJ,0.0016360703999999998,kg +695b39e5-77d5-389e-af69-8f0bf37554f2,SESCO,II.1.1,Buenos Aires,AR-B,annual,2014,bioetanol combustion consumption by to the public,38.99982816,TJ,CH4,10.0,kg/TJ,389.9982816,kg +dd7e4f8f-47c4-34b2-a58b-9aaf73b00f7e,SESCO,II.1.1,Buenos Aires,AR-B,annual,2014,bioetanol combustion consumption by to the public,38.99982816,TJ,N2O,0.6,kg/TJ,23.399896895999998,kg +5347c43d-766d-3dd0-bf3b-cf862b60be94,SESCO,II.1.1,Capital Federal,AR-C,annual,2014,bioetanol combustion consumption by to the public,1.03276944,TJ,CH4,10.0,kg/TJ,10.3276944,kg +c96082e1-456f-3588-9be6-251b84f88e28,SESCO,II.1.1,Capital Federal,AR-C,annual,2014,bioetanol combustion consumption by to the public,1.03276944,TJ,N2O,0.6,kg/TJ,0.619661664,kg +f13abd27-588c-3fe6-9d4d-db1db3184318,SESCO,II.1.1,Córdoba,AR-X,annual,2014,bioetanol combustion consumption by to the public,7.060666319999999,TJ,CH4,10.0,kg/TJ,70.60666319999999,kg +b268110d-bc57-353a-8b96-42ba5bb08df9,SESCO,II.1.1,Córdoba,AR-X,annual,2014,bioetanol combustion consumption by to the public,7.060666319999999,TJ,N2O,0.6,kg/TJ,4.236399791999999,kg +190fb93b-a899-32b7-bed5-544ab2a1c6c3,SESCO,II.1.1,Entre Rios,AR-E,annual,2014,bioetanol combustion consumption by to the public,5.29848216,TJ,CH4,10.0,kg/TJ,52.9848216,kg +0abaf5d7-8e40-3dc9-8b3c-cca3dea3ace9,SESCO,II.1.1,Entre Rios,AR-E,annual,2014,bioetanol combustion consumption by to the public,5.29848216,TJ,N2O,0.6,kg/TJ,3.179089296,kg +6a99b7b0-5acd-3509-af5b-e00bf452447a,SESCO,II.1.1,Santa Fe,AR-S,annual,2014,bioetanol combustion consumption by to the public,4.2196982400000005,TJ,CH4,10.0,kg/TJ,42.1969824,kg +636f0464-e1cc-391b-8719-a791f023f242,SESCO,II.1.1,Santa Fe,AR-S,annual,2014,bioetanol combustion consumption by to the public,4.2196982400000005,TJ,N2O,0.6,kg/TJ,2.5318189440000003,kg +a9e8d243-4623-3c38-b635-eece6f0a8b1d,SESCO,II.1.1,Buenos Aires,AR-B,annual,2014,bioetanol combustion consumption by to the public,3.8946996720000002,TJ,CH4,10.0,kg/TJ,38.94699672,kg +de96861c-c7cf-37a1-a16b-3f5014dd1235,SESCO,II.1.1,Buenos Aires,AR-B,annual,2014,bioetanol combustion consumption by to the public,3.8946996720000002,TJ,N2O,0.6,kg/TJ,2.3368198032,kg +adf5356a-da68-3098-92d3-d65697c17d5f,SESCO,II.1.1,Capital Federal,AR-C,annual,2014,bioetanol combustion consumption by to the public,0.06135263999999999,TJ,CH4,10.0,kg/TJ,0.6135263999999999,kg +1908bc9f-8066-30ee-adf4-c45582fdba56,SESCO,II.1.1,Capital Federal,AR-C,annual,2014,bioetanol combustion consumption by to the public,0.06135263999999999,TJ,N2O,0.6,kg/TJ,0.036811583999999994,kg +6abfbcf7-5a80-3455-85a7-b7c4b1052808,SESCO,II.1.1,Córdoba,AR-X,annual,2014,bioetanol combustion consumption by to the public,0.298242,TJ,CH4,10.0,kg/TJ,2.9824200000000003,kg +c5beb835-87f8-36b8-83b8-c509c471904e,SESCO,II.1.1,Córdoba,AR-X,annual,2014,bioetanol combustion consumption by to the public,0.298242,TJ,N2O,0.6,kg/TJ,0.1789452,kg +5d5b4ae4-2865-311d-8923-a5062409e26d,SESCO,II.1.1,Entre Rios,AR-E,annual,2014,bioetanol combustion consumption by to the public,0.42946848,TJ,CH4,10.0,kg/TJ,4.2946848,kg +06cf0c39-c6a8-3b88-bb8b-35e019434d33,SESCO,II.1.1,Entre Rios,AR-E,annual,2014,bioetanol combustion consumption by to the public,0.42946848,TJ,N2O,0.6,kg/TJ,0.257681088,kg +3c96ccb2-a25d-32b1-bc6b-bcfdf8595c2a,SESCO,II.1.1,Santa Fe,AR-S,annual,2014,bioetanol combustion consumption by to the public,0.5027508,TJ,CH4,10.0,kg/TJ,5.027508000000001,kg +3778bfa3-e6a4-3781-a0c6-dbfb80c76dcc,SESCO,II.1.1,Santa Fe,AR-S,annual,2014,bioetanol combustion consumption by to the public,0.5027508,TJ,N2O,0.6,kg/TJ,0.30165048,kg +8949e57c-ddf0-33cf-81cd-f813d3c49e41,SESCO,II.1.1,Catamarca,AR-K,annual,2014,bioetanol combustion consumption by to the public,0.0017042399999999999,TJ,CH4,10.0,kg/TJ,0.0170424,kg +94fd4943-c564-3130-93fa-b3ceefc8909e,SESCO,II.1.1,Catamarca,AR-K,annual,2014,bioetanol combustion consumption by to the public,0.0017042399999999999,TJ,N2O,0.6,kg/TJ,0.0010225439999999998,kg +4e12562f-03ac-3f37-a65b-038bba08750a,SESCO,II.1.1,Salta,AR-A,annual,2014,bioetanol combustion consumption by to the public,0.032210136,TJ,CH4,10.0,kg/TJ,0.32210136,kg +a33c3e9a-80e6-3ee7-8780-06d3234771c7,SESCO,II.1.1,Salta,AR-A,annual,2014,bioetanol combustion consumption by to the public,0.032210136,TJ,N2O,0.6,kg/TJ,0.0193260816,kg +0424da32-9201-3316-9d79-3a61077c7b91,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2014,bioetanol combustion consumption by to the public,0.0014997312,TJ,CH4,10.0,kg/TJ,0.014997312,kg +53534e07-5f5f-37a4-98e5-3bc583014b9e,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2014,bioetanol combustion consumption by to the public,0.0014997312,TJ,N2O,0.6,kg/TJ,0.00089983872,kg +1f31aba6-9e15-30cf-a70b-ee3dab25d251,SESCO,II.1.1,Tucuman,AR-T,annual,2014,bioetanol combustion consumption by to the public,0.0016360703999999998,TJ,CH4,10.0,kg/TJ,0.016360703999999997,kg +5947161a-975c-3b89-95b0-d7c22179b055,SESCO,II.1.1,Tucuman,AR-T,annual,2014,bioetanol combustion consumption by to the public,0.0016360703999999998,TJ,N2O,0.6,kg/TJ,0.00098164224,kg +0eac4412-a91f-3649-b51c-62ec2f01d645,SESCO,II.1.1,Catamarca,AR-K,annual,2014,bioetanol combustion consumption by to the public,13.129072984799999,TJ,CH4,10.0,kg/TJ,131.29072984799998,kg +7f014e83-b4c2-3a6a-835c-0bc28cb0e16c,SESCO,II.1.1,Catamarca,AR-K,annual,2014,bioetanol combustion consumption by to the public,13.129072984799999,TJ,N2O,0.6,kg/TJ,7.877443790879999,kg +2c9256ee-6ac7-300c-837c-01d9b6a6fe2e,SESCO,II.1.1,Chaco,AR-H,annual,2014,bioetanol combustion consumption by to the public,5.7463053048,TJ,CH4,10.0,kg/TJ,57.463053048,kg +6ac8c8fd-d2fb-31b7-ade7-6d4454dd5a46,SESCO,II.1.1,Chaco,AR-H,annual,2014,bioetanol combustion consumption by to the public,5.7463053048,TJ,N2O,0.6,kg/TJ,3.44778318288,kg +cde4e6aa-a71e-3b9a-8560-34a07eda087c,SESCO,II.1.1,Córdoba,AR-X,annual,2014,bioetanol combustion consumption by to the public,1.903721292,TJ,CH4,10.0,kg/TJ,19.037212919999998,kg +8c8492c0-605a-3b68-bb79-0f43011ca614,SESCO,II.1.1,Córdoba,AR-X,annual,2014,bioetanol combustion consumption by to the public,1.903721292,TJ,N2O,0.6,kg/TJ,1.1422327751999999,kg +b1e28935-a4a6-33f3-b667-84f886157528,SESCO,II.1.1,Jujuy,AR-Y,annual,2014,bioetanol combustion consumption by to the public,29.8892849256,TJ,CH4,10.0,kg/TJ,298.892849256,kg +98cc7615-fd3f-3b54-a5ab-21c1b7091c7d,SESCO,II.1.1,Jujuy,AR-Y,annual,2014,bioetanol combustion consumption by to the public,29.8892849256,TJ,N2O,0.6,kg/TJ,17.933570955359997,kg +45efc550-6b79-3623-b641-d1343d1123d4,SESCO,II.1.1,La Rioja,AR-F,annual,2014,bioetanol combustion consumption by to the public,14.926943930399998,TJ,CH4,10.0,kg/TJ,149.26943930399997,kg +69f59549-b0c0-3c32-8228-89ccc0c6f87b,SESCO,II.1.1,La Rioja,AR-F,annual,2014,bioetanol combustion consumption by to the public,14.926943930399998,TJ,N2O,0.6,kg/TJ,8.956166358239999,kg +5d64d8c1-d2f3-323b-98d1-a18a99fe555e,SESCO,II.1.1,Salta,AR-A,annual,2014,bioetanol combustion consumption by to the public,56.6926854408,TJ,CH4,10.0,kg/TJ,566.9268544079999,kg +e006c8b7-7e8f-3cf7-a786-fe47c614fc94,SESCO,II.1.1,Salta,AR-A,annual,2014,bioetanol combustion consumption by to the public,56.6926854408,TJ,N2O,0.6,kg/TJ,34.01561126448,kg +fc043039-8e36-313c-a955-6d2fa50abdd2,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2014,bioetanol combustion consumption by to the public,16.8150884688,TJ,CH4,10.0,kg/TJ,168.150884688,kg +6ef0f8fe-d488-37a3-98db-a8f8c2620f65,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2014,bioetanol combustion consumption by to the public,16.8150884688,TJ,N2O,0.6,kg/TJ,10.08905308128,kg +f2af178a-4a8c-3b29-a6db-3a6714c97d42,SESCO,II.1.1,Tucuman,AR-T,annual,2014,bioetanol combustion consumption by to the public,90.0701235864,TJ,CH4,10.0,kg/TJ,900.701235864,kg +185e4e0e-ddb7-32fc-b0df-90ee27d68cc5,SESCO,II.1.1,Tucuman,AR-T,annual,2014,bioetanol combustion consumption by to the public,90.0701235864,TJ,N2O,0.6,kg/TJ,54.04207415184,kg +6dc19ebb-9a24-3194-af35-a1eb102711f8,SESCO,II.1.1,Catamarca,AR-K,annual,2014,bioetanol combustion consumption by to the public,0.9607141727999999,TJ,CH4,10.0,kg/TJ,9.607141727999998,kg +3a221cc9-8a2b-3f29-87ca-d2101677e91e,SESCO,II.1.1,Catamarca,AR-K,annual,2014,bioetanol combustion consumption by to the public,0.9607141727999999,TJ,N2O,0.6,kg/TJ,0.57642850368,kg +2ac17fcb-f752-3b62-a6ae-9f0942f2398b,SESCO,II.1.1,Chaco,AR-H,annual,2014,bioetanol combustion consumption by to the public,0.0676072008,TJ,CH4,10.0,kg/TJ,0.676072008,kg +ecee9758-981e-3e4e-a2ad-1a241c284f3e,SESCO,II.1.1,Chaco,AR-H,annual,2014,bioetanol combustion consumption by to the public,0.0676072008,TJ,N2O,0.6,kg/TJ,0.04056432048,kg +5089ca43-c772-3adf-a8e8-76d017f7234c,SESCO,II.1.1,Córdoba,AR-X,annual,2014,bioetanol combustion consumption by to the public,0.21795525359999998,TJ,CH4,10.0,kg/TJ,2.1795525359999997,kg +df20a38c-91da-3cdc-843a-64304bf1add8,SESCO,II.1.1,Córdoba,AR-X,annual,2014,bioetanol combustion consumption by to the public,0.21795525359999998,TJ,N2O,0.6,kg/TJ,0.13077315216,kg +b13ae376-2f71-356b-b843-85771997a651,SESCO,II.1.1,Jujuy,AR-Y,annual,2014,bioetanol combustion consumption by to the public,1.5716160432,TJ,CH4,10.0,kg/TJ,15.716160431999999,kg +8f5450c3-1e6a-35f8-9f32-e970978c4828,SESCO,II.1.1,Jujuy,AR-Y,annual,2014,bioetanol combustion consumption by to the public,1.5716160432,TJ,N2O,0.6,kg/TJ,0.9429696259199999,kg +a71d3d82-e5a0-3978-a8fc-f526be8bacf3,SESCO,II.1.1,La Rioja,AR-F,annual,2014,bioetanol combustion consumption by to the public,0.38745896399999996,TJ,CH4,10.0,kg/TJ,3.8745896399999995,kg +3eb0184a-e89a-3607-97a9-32b1a6ab8ca0,SESCO,II.1.1,La Rioja,AR-F,annual,2014,bioetanol combustion consumption by to the public,0.38745896399999996,TJ,N2O,0.6,kg/TJ,0.23247537839999996,kg +65fff7c4-0d9e-33f3-96c3-d14519cd9e8f,SESCO,II.1.1,Salta,AR-A,annual,2014,bioetanol combustion consumption by to the public,3.0074212008000005,TJ,CH4,10.0,kg/TJ,30.074212008000003,kg +98079587-5d0e-307d-9a71-aa28e2c4e6ea,SESCO,II.1.1,Salta,AR-A,annual,2014,bioetanol combustion consumption by to the public,3.0074212008000005,TJ,N2O,0.6,kg/TJ,1.8044527204800003,kg +dddd8b8a-3cd8-3311-967a-1997cd137d13,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2014,bioetanol combustion consumption by to the public,1.63053162,TJ,CH4,10.0,kg/TJ,16.3053162,kg +1e3abfde-a94d-33b0-9021-267ba74c4d97,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2014,bioetanol combustion consumption by to the public,1.63053162,TJ,N2O,0.6,kg/TJ,0.978318972,kg +6bce264e-14e4-347e-88de-e293f82b5703,SESCO,II.1.1,Tucuman,AR-T,annual,2014,bioetanol combustion consumption by to the public,5.2935909912,TJ,CH4,10.0,kg/TJ,52.935909912,kg +0a4ca07c-cbe3-3c41-b67c-3d74d6eb3aa3,SESCO,II.1.1,Tucuman,AR-T,annual,2014,bioetanol combustion consumption by to the public,5.2935909912,TJ,N2O,0.6,kg/TJ,3.1761545947200003,kg +83e463d8-7b98-371a-8542-877f807d3576,SESCO,II.5.1,Santa Fe,AR-S,annual,2014,bioetanol combustion consumption by agriculture machines,2.69610768,TJ,CH4,10.0,kg/TJ,26.9610768,kg +707ce43a-48e9-3a1e-82f1-efc63aaddcd2,SESCO,II.5.1,Santa Fe,AR-S,annual,2014,bioetanol combustion consumption by agriculture machines,2.69610768,TJ,N2O,0.6,kg/TJ,1.617664608,kg +2f0b056b-ef79-314c-8dfd-faeddd9a14e1,SESCO,II.5.1,Santa Fe,AR-S,annual,2014,bioetanol combustion consumption by agriculture machines,0.25734024,TJ,CH4,10.0,kg/TJ,2.5734024,kg +03781888-4acb-3357-acab-9d34a97a8c64,SESCO,II.5.1,Santa Fe,AR-S,annual,2014,bioetanol combustion consumption by agriculture machines,0.25734024,TJ,N2O,0.6,kg/TJ,0.154404144,kg +4dd478e7-c7cf-345d-8d62-46b5d0660652,SESCO,II.1.1,Buenos Aires,AR-B,annual,2014,bioetanol combustion consumption by to the public,4.81277376,TJ,CH4,10.0,kg/TJ,48.127737599999996,kg +a15beebd-a428-3519-a30d-eb96e3bb5eb3,SESCO,II.1.1,Buenos Aires,AR-B,annual,2014,bioetanol combustion consumption by to the public,4.81277376,TJ,N2O,0.6,kg/TJ,2.887664256,kg +8f735a00-3b16-325a-aef4-a96419496d53,SESCO,II.1.1,Entre Rios,AR-E,annual,2014,bioetanol combustion consumption by to the public,1.0515160799999999,TJ,CH4,10.0,kg/TJ,10.515160799999999,kg +3b696176-faa7-3c7a-becd-b74ba32757f2,SESCO,II.1.1,Entre Rios,AR-E,annual,2014,bioetanol combustion consumption by to the public,1.0515160799999999,TJ,N2O,0.6,kg/TJ,0.6309096479999999,kg +2a0c59e1-e52a-3c6f-8f54-7466cddbb0b3,SESCO,II.1.1,Misiones,AR-N,annual,2014,bioetanol combustion consumption by to the public,0.0511272,TJ,CH4,10.0,kg/TJ,0.511272,kg +a9b934e2-a854-30ed-abe6-2908701e53ad,SESCO,II.1.1,Misiones,AR-N,annual,2014,bioetanol combustion consumption by to the public,0.0511272,TJ,N2O,0.6,kg/TJ,0.030676319999999997,kg +b48b6198-6ad5-3c1a-ae71-a82918989df8,SESCO,II.1.1,Buenos Aires,AR-B,annual,2014,bioetanol combustion consumption by to the public,727.7411563200001,TJ,CH4,10.0,kg/TJ,7277.411563200001,kg +162509eb-0ece-3409-8ae6-651e5ca98e1f,SESCO,II.1.1,Buenos Aires,AR-B,annual,2014,bioetanol combustion consumption by to the public,727.7411563200001,TJ,N2O,0.6,kg/TJ,436.64469379200006,kg +481a89fc-b056-300f-8e06-2d190a308221,SESCO,II.1.1,Capital Federal,AR-C,annual,2014,bioetanol combustion consumption by to the public,228.26249712,TJ,CH4,10.0,kg/TJ,2282.6249712,kg +04b9c1be-1445-36fd-b415-5cef637ae53d,SESCO,II.1.1,Capital Federal,AR-C,annual,2014,bioetanol combustion consumption by to the public,228.26249712,TJ,N2O,0.6,kg/TJ,136.957498272,kg +d946b4af-01f4-3272-bab1-674f42790f5f,SESCO,II.1.1,Catamarca,AR-K,annual,2014,bioetanol combustion consumption by to the public,2.93640552,TJ,CH4,10.0,kg/TJ,29.364055200000003,kg +5dcc27a1-4fc2-38f4-8b1e-a923eefb5d91,SESCO,II.1.1,Catamarca,AR-K,annual,2014,bioetanol combustion consumption by to the public,2.93640552,TJ,N2O,0.6,kg/TJ,1.761843312,kg +67027eb1-af8b-357a-b138-f33534e9285f,SESCO,II.1.1,Chaco,AR-H,annual,2014,bioetanol combustion consumption by to the public,44.289789119999995,TJ,CH4,10.0,kg/TJ,442.89789119999995,kg +60232d60-e0b9-3ad4-a28a-3a2af75906bc,SESCO,II.1.1,Chaco,AR-H,annual,2014,bioetanol combustion consumption by to the public,44.289789119999995,TJ,N2O,0.6,kg/TJ,26.573873471999995,kg +2490d75b-af7d-351f-93e1-e183b8d68063,SESCO,II.1.1,Corrientes,AR-W,annual,2014,bioetanol combustion consumption by to the public,43.873954559999994,TJ,CH4,10.0,kg/TJ,438.73954559999993,kg +f989369d-251c-3955-8dd5-d420829c96df,SESCO,II.1.1,Corrientes,AR-W,annual,2014,bioetanol combustion consumption by to the public,43.873954559999994,TJ,N2O,0.6,kg/TJ,26.324372735999997,kg +6f44a3c9-1e77-348f-b1fa-48223ec5a306,SESCO,II.1.1,Córdoba,AR-X,annual,2014,bioetanol combustion consumption by to the public,146.90037528,TJ,CH4,10.0,kg/TJ,1469.0037527999998,kg +b40331af-6284-39cb-80db-ce58461fabd0,SESCO,II.1.1,Córdoba,AR-X,annual,2014,bioetanol combustion consumption by to the public,146.90037528,TJ,N2O,0.6,kg/TJ,88.14022516799999,kg +e98c0d09-b7b8-394c-ae7f-78b62c944499,SESCO,II.1.1,Entre Rios,AR-E,annual,2014,bioetanol combustion consumption by to the public,44.884568879999996,TJ,CH4,10.0,kg/TJ,448.84568879999995,kg +112c62ae-241f-3d7d-8455-2de6defdcfa8,SESCO,II.1.1,Entre Rios,AR-E,annual,2014,bioetanol combustion consumption by to the public,44.884568879999996,TJ,N2O,0.6,kg/TJ,26.930741327999996,kg +c5da3a17-ec6a-3729-b5d2-60dddcfdb8e9,SESCO,II.1.1,Formosa,AR-P,annual,2014,bioetanol combustion consumption by to the public,23.232199679999997,TJ,CH4,10.0,kg/TJ,232.32199679999997,kg +afd68a2d-9800-3a3f-987f-b3f1ef45ed42,SESCO,II.1.1,Formosa,AR-P,annual,2014,bioetanol combustion consumption by to the public,23.232199679999997,TJ,N2O,0.6,kg/TJ,13.939319807999999,kg +c72d9b18-77cc-3bdb-8a04-5e356b6405b8,SESCO,II.1.1,Jujuy,AR-Y,annual,2014,bioetanol combustion consumption by to the public,10.8048816,TJ,CH4,10.0,kg/TJ,108.048816,kg +7913456a-928f-3a5d-a24f-fa3d339343b0,SESCO,II.1.1,Jujuy,AR-Y,annual,2014,bioetanol combustion consumption by to the public,10.8048816,TJ,N2O,0.6,kg/TJ,6.48292896,kg +8e377152-d7b6-39a9-a774-e84811a0d2f4,SESCO,II.1.1,La Pampa,AR-L,annual,2014,bioetanol combustion consumption by to the public,14.119628400000002,TJ,CH4,10.0,kg/TJ,141.19628400000002,kg +5ddaf52e-b47b-36c6-a574-b8a4de628487,SESCO,II.1.1,La Pampa,AR-L,annual,2014,bioetanol combustion consumption by to the public,14.119628400000002,TJ,N2O,0.6,kg/TJ,8.471777040000001,kg +6f2abd4f-e295-302e-a845-9d7eede50066,SESCO,II.1.1,La Rioja,AR-F,annual,2014,bioetanol combustion consumption by to the public,13.33226952,TJ,CH4,10.0,kg/TJ,133.3226952,kg +0fec5f44-a03b-3b20-bf42-cd9304dd01ba,SESCO,II.1.1,La Rioja,AR-F,annual,2014,bioetanol combustion consumption by to the public,13.33226952,TJ,N2O,0.6,kg/TJ,7.999361712,kg +410e02e6-0bfc-3273-bfa3-dd542176bce8,SESCO,II.1.1,Mendoza,AR-M,annual,2014,bioetanol combustion consumption by to the public,30.879124559999998,TJ,CH4,10.0,kg/TJ,308.79124559999997,kg +b0e7a661-125d-381a-afd3-b65e5fabe7a7,SESCO,II.1.1,Mendoza,AR-M,annual,2014,bioetanol combustion consumption by to the public,30.879124559999998,TJ,N2O,0.6,kg/TJ,18.527474736,kg +7cbe30c4-7bd1-3fe0-9696-0fe9cdb75c70,SESCO,II.1.1,Misiones,AR-N,annual,2014,bioetanol combustion consumption by to the public,65.868876,TJ,CH4,10.0,kg/TJ,658.68876,kg +37c842bc-fe7e-323a-b2f5-c2d58444202f,SESCO,II.1.1,Misiones,AR-N,annual,2014,bioetanol combustion consumption by to the public,65.868876,TJ,N2O,0.6,kg/TJ,39.5213256,kg +9a603b5f-698e-359e-85d4-904f48da706f,SESCO,II.1.1,Neuquén,AR-Q,annual,2014,bioetanol combustion consumption by to the public,22.023893519999998,TJ,CH4,10.0,kg/TJ,220.2389352,kg +7cb36a26-7bc6-3966-b05d-b8b398706b5d,SESCO,II.1.1,Neuquén,AR-Q,annual,2014,bioetanol combustion consumption by to the public,22.023893519999998,TJ,N2O,0.6,kg/TJ,13.214336111999998,kg +c9a4294b-31d2-3ec9-b4a4-7f69f471aa7b,SESCO,II.1.1,Rio Negro,AR-R,annual,2014,bioetanol combustion consumption by to the public,6.91239744,TJ,CH4,10.0,kg/TJ,69.12397440000001,kg +e4321d3d-cdbe-3f7d-bdbf-cdc5f60e9ee1,SESCO,II.1.1,Rio Negro,AR-R,annual,2014,bioetanol combustion consumption by to the public,6.91239744,TJ,N2O,0.6,kg/TJ,4.147438464,kg +87a3cfa5-31aa-3fb9-a0ed-3fb2a4caee31,SESCO,II.1.1,Salta,AR-A,annual,2014,bioetanol combustion consumption by to the public,13.802639759999998,TJ,CH4,10.0,kg/TJ,138.0263976,kg +e285e36c-6971-3bcb-85c2-3c0cfe497439,SESCO,II.1.1,Salta,AR-A,annual,2014,bioetanol combustion consumption by to the public,13.802639759999998,TJ,N2O,0.6,kg/TJ,8.281583856,kg +3a95138d-b785-3009-a585-4b50acfb7d77,SESCO,II.1.1,San Juan,AR-J,annual,2014,bioetanol combustion consumption by to the public,9.5096592,TJ,CH4,10.0,kg/TJ,95.096592,kg +684470be-1999-3661-a052-d73d69bf49bd,SESCO,II.1.1,San Juan,AR-J,annual,2014,bioetanol combustion consumption by to the public,9.5096592,TJ,N2O,0.6,kg/TJ,5.70579552,kg +ed1141d2-33e8-3878-b0c7-bb5975c53f14,SESCO,II.1.1,San Luis,AR-D,annual,2014,bioetanol combustion consumption by to the public,1.0174312799999998,TJ,CH4,10.0,kg/TJ,10.1743128,kg +e2eecd1b-ef91-305f-8cd8-cf4824f00584,SESCO,II.1.1,San Luis,AR-D,annual,2014,bioetanol combustion consumption by to the public,1.0174312799999998,TJ,N2O,0.6,kg/TJ,0.6104587679999999,kg +271c1da6-149e-33fa-8efb-dabefec98c5a,SESCO,II.1.1,Santa Fe,AR-S,annual,2014,bioetanol combustion consumption by to the public,169.29749736,TJ,CH4,10.0,kg/TJ,1692.9749735999999,kg +fe1a47bc-532b-3219-b461-542abb34502b,SESCO,II.1.1,Santa Fe,AR-S,annual,2014,bioetanol combustion consumption by to the public,169.29749736,TJ,N2O,0.6,kg/TJ,101.57849841599999,kg +0682dbea-e9a5-3bb4-98dd-9882770d0147,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2014,bioetanol combustion consumption by to the public,17.937126,TJ,CH4,10.0,kg/TJ,179.37126,kg +8aba0436-73b3-3319-bc0c-c7b9089090cf,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2014,bioetanol combustion consumption by to the public,17.937126,TJ,N2O,0.6,kg/TJ,10.762275599999999,kg +49840583-d50d-349c-bcb8-81375bf613e3,SESCO,II.1.1,Tucuman,AR-T,annual,2014,bioetanol combustion consumption by to the public,44.172196559999996,TJ,CH4,10.0,kg/TJ,441.7219656,kg +a5b62276-6d1e-389e-bd52-198b682a6302,SESCO,II.1.1,Tucuman,AR-T,annual,2014,bioetanol combustion consumption by to the public,44.172196559999996,TJ,N2O,0.6,kg/TJ,26.503317936,kg +647377be-8196-34b9-87b5-4aa3202be8b2,SESCO,II.1.1,Buenos Aires,AR-B,annual,2014,bioetanol combustion consumption by to the public,313.91589528,TJ,CH4,10.0,kg/TJ,3139.1589527999995,kg +cf503aa4-445a-34f2-9243-ef860072d37e,SESCO,II.1.1,Buenos Aires,AR-B,annual,2014,bioetanol combustion consumption by to the public,313.91589528,TJ,N2O,0.6,kg/TJ,188.34953716799998,kg +81150472-92aa-367c-99ef-0683290a1f97,SESCO,II.1.1,Capital Federal,AR-C,annual,2014,bioetanol combustion consumption by to the public,138.31782264,TJ,CH4,10.0,kg/TJ,1383.1782264,kg +70c90f11-6440-314b-ad42-95435030f7a0,SESCO,II.1.1,Capital Federal,AR-C,annual,2014,bioetanol combustion consumption by to the public,138.31782264,TJ,N2O,0.6,kg/TJ,82.990693584,kg +3e261911-a230-3d2a-a13a-f3feac1ecd2c,SESCO,II.1.1,Catamarca,AR-K,annual,2014,bioetanol combustion consumption by to the public,1.71787392,TJ,CH4,10.0,kg/TJ,17.1787392,kg +0325c4fe-709e-334a-9351-90473e40c156,SESCO,II.1.1,Catamarca,AR-K,annual,2014,bioetanol combustion consumption by to the public,1.71787392,TJ,N2O,0.6,kg/TJ,1.030724352,kg +cabf6312-3db0-38b8-84c6-e5baca3069ee,SESCO,II.1.1,Chaco,AR-H,annual,2014,bioetanol combustion consumption by to the public,12.25859832,TJ,CH4,10.0,kg/TJ,122.58598320000002,kg +3823dda6-35a1-3679-ba0a-4540e8d2d2f3,SESCO,II.1.1,Chaco,AR-H,annual,2014,bioetanol combustion consumption by to the public,12.25859832,TJ,N2O,0.6,kg/TJ,7.355158992,kg +74b9b2cf-086d-3ea4-a61f-696c85b0e4fb,SESCO,II.1.1,Corrientes,AR-W,annual,2014,bioetanol combustion consumption by to the public,14.881423680000001,TJ,CH4,10.0,kg/TJ,148.8142368,kg +e9efbb5e-82d8-3238-9e63-4e87f68a45a0,SESCO,II.1.1,Corrientes,AR-W,annual,2014,bioetanol combustion consumption by to the public,14.881423680000001,TJ,N2O,0.6,kg/TJ,8.928854208,kg +40444eba-5b42-3d2f-a9b3-392ceab19652,SESCO,II.1.1,Córdoba,AR-X,annual,2014,bioetanol combustion consumption by to the public,52.78372128,TJ,CH4,10.0,kg/TJ,527.8372128,kg +30f79886-3f7c-375e-be17-fa86360e539a,SESCO,II.1.1,Córdoba,AR-X,annual,2014,bioetanol combustion consumption by to the public,52.78372128,TJ,N2O,0.6,kg/TJ,31.670232767999998,kg +9c1431c9-b561-3f6f-8bb3-77ec7afe50f0,SESCO,II.1.1,Entre Rios,AR-E,annual,2014,bioetanol combustion consumption by to the public,17.66956032,TJ,CH4,10.0,kg/TJ,176.6956032,kg +9045b80b-5102-3fc7-9bf4-b46498888303,SESCO,II.1.1,Entre Rios,AR-E,annual,2014,bioetanol combustion consumption by to the public,17.66956032,TJ,N2O,0.6,kg/TJ,10.601736191999999,kg +0ffd8835-05b5-30a4-8958-b61b1be8d4f0,SESCO,II.1.1,Formosa,AR-P,annual,2014,bioetanol combustion consumption by to the public,7.580459520000001,TJ,CH4,10.0,kg/TJ,75.80459520000001,kg +fd2ee629-b757-3012-bc9e-e8af2e2dcf87,SESCO,II.1.1,Formosa,AR-P,annual,2014,bioetanol combustion consumption by to the public,7.580459520000001,TJ,N2O,0.6,kg/TJ,4.548275712000001,kg +4a287d38-fd76-3eeb-a681-e65879bd8016,SESCO,II.1.1,Jujuy,AR-Y,annual,2014,bioetanol combustion consumption by to the public,1.8201283199999998,TJ,CH4,10.0,kg/TJ,18.2012832,kg +2288d318-da22-33ca-a5a8-e16918417377,SESCO,II.1.1,Jujuy,AR-Y,annual,2014,bioetanol combustion consumption by to the public,1.8201283199999998,TJ,N2O,0.6,kg/TJ,1.0920769919999997,kg +e4534f18-bb1f-3b59-940a-4bf753c4fd06,SESCO,II.1.1,La Pampa,AR-L,annual,2014,bioetanol combustion consumption by to the public,5.60354112,TJ,CH4,10.0,kg/TJ,56.0354112,kg +887a8658-7c0d-36a4-a91e-5d4f0f94fc22,SESCO,II.1.1,La Pampa,AR-L,annual,2014,bioetanol combustion consumption by to the public,5.60354112,TJ,N2O,0.6,kg/TJ,3.3621246719999998,kg +0d56be63-38eb-3b74-8378-dfcb6a605341,SESCO,II.1.1,La Rioja,AR-F,annual,2014,bioetanol combustion consumption by to the public,3.5448192,TJ,CH4,10.0,kg/TJ,35.448192,kg +9ba2bc9a-7f5c-3916-9a90-e56b0d098f04,SESCO,II.1.1,La Rioja,AR-F,annual,2014,bioetanol combustion consumption by to the public,3.5448192,TJ,N2O,0.6,kg/TJ,2.12689152,kg +a90e6a69-2ec2-361c-887c-8ce1b4dd1288,SESCO,II.1.1,Mendoza,AR-M,annual,2014,bioetanol combustion consumption by to the public,13.73106168,TJ,CH4,10.0,kg/TJ,137.3106168,kg +5e427f3f-3970-3951-b9f8-6225be503b9e,SESCO,II.1.1,Mendoza,AR-M,annual,2014,bioetanol combustion consumption by to the public,13.73106168,TJ,N2O,0.6,kg/TJ,8.238637008,kg +b393dd2f-10c2-340c-ae3f-26ac11d1ad9e,SESCO,II.1.1,Misiones,AR-N,annual,2014,bioetanol combustion consumption by to the public,12.534685199999998,TJ,CH4,10.0,kg/TJ,125.34685199999998,kg +6d4a98c8-29b1-3da3-b169-55ddb3705961,SESCO,II.1.1,Misiones,AR-N,annual,2014,bioetanol combustion consumption by to the public,12.534685199999998,TJ,N2O,0.6,kg/TJ,7.5208111199999985,kg +a67fd1a4-2222-3afe-9443-3abe18a4a534,SESCO,II.1.1,Neuquén,AR-Q,annual,2014,bioetanol combustion consumption by to the public,8.90976672,TJ,CH4,10.0,kg/TJ,89.0976672,kg +f6b99898-c670-3b73-96b4-46efd0c0f5d1,SESCO,II.1.1,Neuquén,AR-Q,annual,2014,bioetanol combustion consumption by to the public,8.90976672,TJ,N2O,0.6,kg/TJ,5.345860032,kg +45ad21f1-6d6f-3c68-9f48-81995e55ec1c,SESCO,II.1.1,Rio Negro,AR-R,annual,2014,bioetanol combustion consumption by to the public,2.8767571199999997,TJ,CH4,10.0,kg/TJ,28.7675712,kg +7fbecfcc-2fd5-3b7d-a0c6-56b972f4bc73,SESCO,II.1.1,Rio Negro,AR-R,annual,2014,bioetanol combustion consumption by to the public,2.8767571199999997,TJ,N2O,0.6,kg/TJ,1.7260542719999998,kg +7052e382-5f88-3935-a164-19a937a01fb5,SESCO,II.1.1,Salta,AR-A,annual,2014,bioetanol combustion consumption by to the public,3.7987509599999996,TJ,CH4,10.0,kg/TJ,37.987509599999996,kg +108b59ad-4159-3bd3-b4ee-5bc2646cca4f,SESCO,II.1.1,Salta,AR-A,annual,2014,bioetanol combustion consumption by to the public,3.7987509599999996,TJ,N2O,0.6,kg/TJ,2.2792505759999995,kg +e57702e9-8595-39dd-bacf-6dd4b256f361,SESCO,II.1.1,San Juan,AR-J,annual,2014,bioetanol combustion consumption by to the public,1.5491541599999998,TJ,CH4,10.0,kg/TJ,15.491541599999998,kg +cd9ad799-b8c2-3ab2-b6ea-416f892c8f77,SESCO,II.1.1,San Juan,AR-J,annual,2014,bioetanol combustion consumption by to the public,1.5491541599999998,TJ,N2O,0.6,kg/TJ,0.9294924959999998,kg +e37fd2b7-2573-3586-84d7-4c25bc250b1a,SESCO,II.1.1,San Luis,AR-D,annual,2014,bioetanol combustion consumption by to the public,1.2781799999999999,TJ,CH4,10.0,kg/TJ,12.781799999999999,kg +855c7cc1-3606-37e5-be46-35f4c714b141,SESCO,II.1.1,San Luis,AR-D,annual,2014,bioetanol combustion consumption by to the public,1.2781799999999999,TJ,N2O,0.6,kg/TJ,0.7669079999999999,kg +0cc5df1c-e143-3990-ba5d-fe4ab527e7f1,SESCO,II.1.1,Santa Fe,AR-S,annual,2014,bioetanol combustion consumption by to the public,65.4683796,TJ,CH4,10.0,kg/TJ,654.683796,kg +292b8912-b921-39f4-a8d6-3789586829df,SESCO,II.1.1,Santa Fe,AR-S,annual,2014,bioetanol combustion consumption by to the public,65.4683796,TJ,N2O,0.6,kg/TJ,39.28102776,kg +a05d0182-b19a-3a16-aaf8-73d0124f3e5f,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2014,bioetanol combustion consumption by to the public,6.58347912,TJ,CH4,10.0,kg/TJ,65.8347912,kg +42e63921-3e27-3e09-b9c2-50fc7747c230,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2014,bioetanol combustion consumption by to the public,6.58347912,TJ,N2O,0.6,kg/TJ,3.950087472,kg +f1e511f6-623f-31b5-8852-e30c945a8098,SESCO,II.1.1,Tucuman,AR-T,annual,2014,bioetanol combustion consumption by to the public,10.53902016,TJ,CH4,10.0,kg/TJ,105.3902016,kg +46b82d12-05ae-3716-896e-17d998482e7c,SESCO,II.1.1,Tucuman,AR-T,annual,2014,bioetanol combustion consumption by to the public,10.53902016,TJ,N2O,0.6,kg/TJ,6.323412095999999,kg +a0756af1-9db0-3858-93c8-3b7952adc8d1,SESCO,II.5.1,Buenos Aires,AR-B,annual,2014,bioetanol combustion consumption by agriculture machines,0.20110031999999997,TJ,CH4,10.0,kg/TJ,2.0110031999999998,kg +c4d03efe-2fe6-3f11-a984-e741ca9e727e,SESCO,II.5.1,Buenos Aires,AR-B,annual,2014,bioetanol combustion consumption by agriculture machines,0.20110031999999997,TJ,N2O,0.6,kg/TJ,0.12066019199999997,kg +b29642a7-316d-37e6-a761-630168b92137,SESCO,II.5.1,Chubut,AR-U,annual,2014,bioetanol combustion consumption by agriculture machines,0.0255636,TJ,CH4,10.0,kg/TJ,0.255636,kg +83dd1549-ac23-3c7d-b7c7-4e97b18c64e5,SESCO,II.5.1,Chubut,AR-U,annual,2014,bioetanol combustion consumption by agriculture machines,0.0255636,TJ,N2O,0.6,kg/TJ,0.015338159999999998,kg +4cc12b03-9b88-39b1-b92b-5568e515c18e,SESCO,II.5.1,Entre Rios,AR-E,annual,2014,bioetanol combustion consumption by agriculture machines,0.0766908,TJ,CH4,10.0,kg/TJ,0.766908,kg +c84ecc66-cf4f-36fd-b519-c8f0ac7e1ba8,SESCO,II.5.1,Entre Rios,AR-E,annual,2014,bioetanol combustion consumption by agriculture machines,0.0766908,TJ,N2O,0.6,kg/TJ,0.04601448,kg +9a5fcf14-45e0-3d14-9fac-1a604c4aa38d,SESCO,II.5.1,Salta,AR-A,annual,2014,bioetanol combustion consumption by agriculture machines,0.0085212,TJ,CH4,10.0,kg/TJ,0.085212,kg +3f9f78dd-7f8b-369f-897d-1f0611709453,SESCO,II.5.1,Salta,AR-A,annual,2014,bioetanol combustion consumption by agriculture machines,0.0085212,TJ,N2O,0.6,kg/TJ,0.005112719999999999,kg +e633b30f-621c-3d06-94e8-b98fbddf8013,SESCO,II.5.1,Santa Fe,AR-S,annual,2014,bioetanol combustion consumption by agriculture machines,1.53892872,TJ,CH4,10.0,kg/TJ,15.389287199999998,kg +dafb8e81-6758-3309-8122-e55c09a45c6a,SESCO,II.5.1,Santa Fe,AR-S,annual,2014,bioetanol combustion consumption by agriculture machines,1.53892872,TJ,N2O,0.6,kg/TJ,0.9233572319999999,kg +ba0cbf95-4d33-3bd0-a80c-c8dad85734b3,SESCO,II.5.1,Buenos Aires,AR-B,annual,2014,bioetanol combustion consumption by agriculture machines,0.0340848,TJ,CH4,10.0,kg/TJ,0.340848,kg +40227557-46e7-387c-a6f0-7cfdde187d58,SESCO,II.5.1,Buenos Aires,AR-B,annual,2014,bioetanol combustion consumption by agriculture machines,0.0340848,TJ,N2O,0.6,kg/TJ,0.020450879999999998,kg +f508ad57-3891-3ffe-8336-e671ccc3da61,SESCO,II.5.1,Santa Fe,AR-S,annual,2014,bioetanol combustion consumption by agriculture machines,0.04771872,TJ,CH4,10.0,kg/TJ,0.4771872,kg +c7688946-372a-30b1-8e5a-885b449686ba,SESCO,II.5.1,Santa Fe,AR-S,annual,2014,bioetanol combustion consumption by agriculture machines,0.04771872,TJ,N2O,0.6,kg/TJ,0.028631232,kg +d282d934-0c57-3c02-9819-27fae156aa3e,SESCO,II.1.1,Buenos Aires,AR-B,annual,2014,bioetanol combustion consumption by to the public,2124.1817784,TJ,CH4,10.0,kg/TJ,21241.817784,kg +d848a2d8-ad85-3059-a9c6-64a02a328357,SESCO,II.1.1,Buenos Aires,AR-B,annual,2014,bioetanol combustion consumption by to the public,2124.1817784,TJ,N2O,0.6,kg/TJ,1274.50906704,kg +97ab2841-b62a-31c0-8867-7f89f010a31d,SESCO,II.1.1,Capital Federal,AR-C,annual,2014,bioetanol combustion consumption by to the public,453.83229503999996,TJ,CH4,10.0,kg/TJ,4538.322950399999,kg +325e2fad-6734-386c-a85f-5247dcd9a951,SESCO,II.1.1,Capital Federal,AR-C,annual,2014,bioetanol combustion consumption by to the public,453.83229503999996,TJ,N2O,0.6,kg/TJ,272.29937702399997,kg +04e1250b-3087-3744-8328-b99599f4de56,SESCO,II.1.1,Catamarca,AR-K,annual,2014,bioetanol combustion consumption by to the public,36.51504624,TJ,CH4,10.0,kg/TJ,365.1504624,kg +2bba8e4d-b59d-32c7-a32f-3d9b0eb59263,SESCO,II.1.1,Catamarca,AR-K,annual,2014,bioetanol combustion consumption by to the public,36.51504624,TJ,N2O,0.6,kg/TJ,21.909027743999996,kg +446d46f6-3270-33a4-a617-4c281a723491,SESCO,II.1.1,Chaco,AR-H,annual,2014,bioetanol combustion consumption by to the public,120.40285175999999,TJ,CH4,10.0,kg/TJ,1204.0285176,kg +ba70d091-09bc-3d76-ba1e-a52258a79999,SESCO,II.1.1,Chaco,AR-H,annual,2014,bioetanol combustion consumption by to the public,120.40285175999999,TJ,N2O,0.6,kg/TJ,72.24171105599999,kg +c3dc379a-49fd-3938-ab12-1317cb24dde4,SESCO,II.1.1,Chubut,AR-U,annual,2014,bioetanol combustion consumption by to the public,202.31373888000002,TJ,CH4,10.0,kg/TJ,2023.1373888000003,kg +8ea0ec94-aec3-38cc-a442-54c6fad92547,SESCO,II.1.1,Chubut,AR-U,annual,2014,bioetanol combustion consumption by to the public,202.31373888000002,TJ,N2O,0.6,kg/TJ,121.388243328,kg +b58ff469-b34c-3aa3-8e97-6c32818b05b8,SESCO,II.1.1,Corrientes,AR-W,annual,2014,bioetanol combustion consumption by to the public,131.88602088,TJ,CH4,10.0,kg/TJ,1318.8602087999998,kg +4a042822-f5f4-35a0-9fce-015d6028aefc,SESCO,II.1.1,Corrientes,AR-W,annual,2014,bioetanol combustion consumption by to the public,131.88602088,TJ,N2O,0.6,kg/TJ,79.13161252799999,kg +6ceb298a-10c3-3f84-949c-43745b3dc416,SESCO,II.1.1,Córdoba,AR-X,annual,2014,bioetanol combustion consumption by to the public,525.93868944,TJ,CH4,10.0,kg/TJ,5259.3868944,kg +0e0fcc23-637f-3090-9be4-c5bf97fe4ec8,SESCO,II.1.1,Córdoba,AR-X,annual,2014,bioetanol combustion consumption by to the public,525.93868944,TJ,N2O,0.6,kg/TJ,315.563213664,kg +0270538f-158d-3bc6-a8b6-3eac6d03ba39,SESCO,II.1.1,Entre Rios,AR-E,annual,2014,bioetanol combustion consumption by to the public,178.68445128,TJ,CH4,10.0,kg/TJ,1786.8445127999998,kg +5ced05d3-6473-337f-aa26-a84e1ef387da,SESCO,II.1.1,Entre Rios,AR-E,annual,2014,bioetanol combustion consumption by to the public,178.68445128,TJ,N2O,0.6,kg/TJ,107.21067076799999,kg +2b8c9b87-3b7f-3397-82c4-195b2be06f10,SESCO,II.1.1,Formosa,AR-P,annual,2014,bioetanol combustion consumption by to the public,46.270115999999994,TJ,CH4,10.0,kg/TJ,462.70115999999996,kg +6f673d17-3b81-354b-a506-222df24a2e24,SESCO,II.1.1,Formosa,AR-P,annual,2014,bioetanol combustion consumption by to the public,46.270115999999994,TJ,N2O,0.6,kg/TJ,27.762069599999997,kg +eadb6a07-6a0b-30de-b8e0-ad84664ece5c,SESCO,II.1.1,Jujuy,AR-Y,annual,2014,bioetanol combustion consumption by to the public,60.03867096,TJ,CH4,10.0,kg/TJ,600.3867096,kg +20e9ddc2-64ec-3198-bb03-73a520ec6f8b,SESCO,II.1.1,Jujuy,AR-Y,annual,2014,bioetanol combustion consumption by to the public,60.03867096,TJ,N2O,0.6,kg/TJ,36.023202575999996,kg +a435f762-f803-393d-a299-239493e613f6,SESCO,II.1.1,La Pampa,AR-L,annual,2014,bioetanol combustion consumption by to the public,86.788422,TJ,CH4,10.0,kg/TJ,867.8842199999999,kg +4bca964a-274d-3e5c-9eb9-18dccd7c2394,SESCO,II.1.1,La Pampa,AR-L,annual,2014,bioetanol combustion consumption by to the public,86.788422,TJ,N2O,0.6,kg/TJ,52.0730532,kg +ad8e87a1-7de2-303a-9e31-ffb5aa278403,SESCO,II.1.1,La Rioja,AR-F,annual,2014,bioetanol combustion consumption by to the public,53.77558896,TJ,CH4,10.0,kg/TJ,537.7558896,kg +65a0d1ff-db0b-3044-b627-2260c6626ff8,SESCO,II.1.1,La Rioja,AR-F,annual,2014,bioetanol combustion consumption by to the public,53.77558896,TJ,N2O,0.6,kg/TJ,32.265353376,kg +6f08fd23-d00c-3e77-b7c0-ad0dfaa97b3f,SESCO,II.1.1,Mendoza,AR-M,annual,2014,bioetanol combustion consumption by to the public,289.78556112,TJ,CH4,10.0,kg/TJ,2897.8556112,kg +ab2cb6a9-bb28-30f3-9f49-becdb5cb10a3,SESCO,II.1.1,Mendoza,AR-M,annual,2014,bioetanol combustion consumption by to the public,289.78556112,TJ,N2O,0.6,kg/TJ,173.871336672,kg +4a57dae6-68a1-3416-a99b-728379235a67,SESCO,II.1.1,Misiones,AR-N,annual,2014,bioetanol combustion consumption by to the public,173.15589672,TJ,CH4,10.0,kg/TJ,1731.5589671999999,kg +6fed5a2e-1593-38bf-8f4d-17b92f644372,SESCO,II.1.1,Misiones,AR-N,annual,2014,bioetanol combustion consumption by to the public,173.15589672,TJ,N2O,0.6,kg/TJ,103.893538032,kg +8cebf34d-da9d-3fe6-8bb5-7b1f0523d532,SESCO,II.1.1,Neuquén,AR-Q,annual,2014,bioetanol combustion consumption by to the public,163.49456016,TJ,CH4,10.0,kg/TJ,1634.9456016,kg +409484bb-bce3-33e0-8a12-68c25e402a1d,SESCO,II.1.1,Neuquén,AR-Q,annual,2014,bioetanol combustion consumption by to the public,163.49456016,TJ,N2O,0.6,kg/TJ,98.09673609599999,kg +f63f1c7a-c1d4-35fd-93f8-f9d188affb63,SESCO,II.1.1,Rio Negro,AR-R,annual,2014,bioetanol combustion consumption by to the public,162.28284552,TJ,CH4,10.0,kg/TJ,1622.8284552,kg +63f795d6-3e06-3dd1-bfb8-49ba5f317fe6,SESCO,II.1.1,Rio Negro,AR-R,annual,2014,bioetanol combustion consumption by to the public,162.28284552,TJ,N2O,0.6,kg/TJ,97.36970731199999,kg +f41dd542-f7f6-3190-92c0-0fb1eea88351,SESCO,II.1.1,Salta,AR-A,annual,2014,bioetanol combustion consumption by to the public,138.83079888,TJ,CH4,10.0,kg/TJ,1388.3079888,kg +a0a16dfa-c85f-3104-a836-83aca0a02056,SESCO,II.1.1,Salta,AR-A,annual,2014,bioetanol combustion consumption by to the public,138.83079888,TJ,N2O,0.6,kg/TJ,83.298479328,kg +dd6b1332-bd74-3d13-948d-8da8b298f281,SESCO,II.1.1,San Juan,AR-J,annual,2014,bioetanol combustion consumption by to the public,90.67068072,TJ,CH4,10.0,kg/TJ,906.7068072,kg +d32cee01-9068-3623-b4fb-f5356966bc39,SESCO,II.1.1,San Juan,AR-J,annual,2014,bioetanol combustion consumption by to the public,90.67068072,TJ,N2O,0.6,kg/TJ,54.402408431999994,kg +6d07709b-bcac-3c01-8060-decd4a3d43ca,SESCO,II.1.1,San Luis,AR-D,annual,2014,bioetanol combustion consumption by to the public,69.75624744,TJ,CH4,10.0,kg/TJ,697.5624743999999,kg +a1edb781-08d2-3c90-8172-005d47c4fa3e,SESCO,II.1.1,San Luis,AR-D,annual,2014,bioetanol combustion consumption by to the public,69.75624744,TJ,N2O,0.6,kg/TJ,41.853748464,kg +4c666a5a-1e8f-3094-970d-ff2b0fabc217,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2014,bioetanol combustion consumption by to the public,138.87340487999998,TJ,CH4,10.0,kg/TJ,1388.7340487999998,kg +7a361211-adac-3940-a1a0-e46b7b7ce12f,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2014,bioetanol combustion consumption by to the public,138.87340487999998,TJ,N2O,0.6,kg/TJ,83.32404292799998,kg +1b112f0a-27e0-3458-ad2d-645cec280d42,SESCO,II.1.1,Santa Fe,AR-S,annual,2014,bioetanol combustion consumption by to the public,412.55048952,TJ,CH4,10.0,kg/TJ,4125.5048952,kg +46b01c78-1f38-3aed-aa03-c76c46d67896,SESCO,II.1.1,Santa Fe,AR-S,annual,2014,bioetanol combustion consumption by to the public,412.55048952,TJ,N2O,0.6,kg/TJ,247.53029371199997,kg +43cf017f-ad5c-38c8-b3bb-e7c70776bda4,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2014,bioetanol combustion consumption by to the public,64.39300416,TJ,CH4,10.0,kg/TJ,643.9300416000001,kg +9cca8e1a-0bcc-3911-8afe-92217f20ce59,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2014,bioetanol combustion consumption by to the public,64.39300416,TJ,N2O,0.6,kg/TJ,38.635802496000004,kg +014600e9-3e82-3457-b127-555168046a70,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2014,bioetanol combustion consumption by to the public,101.74483224,TJ,CH4,10.0,kg/TJ,1017.4483223999999,kg +a2bcdfd2-d5d1-3e6a-a6e9-0e43e65627e2,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2014,bioetanol combustion consumption by to the public,101.74483224,TJ,N2O,0.6,kg/TJ,61.046899343999996,kg +a99f80b1-5071-3dec-8273-f5a25b23759b,SESCO,II.1.1,Tucuman,AR-T,annual,2014,bioetanol combustion consumption by to the public,117.98794368,TJ,CH4,10.0,kg/TJ,1179.8794368,kg +b9cec7ef-ffff-34ee-93bd-a6e552e1e3f1,SESCO,II.1.1,Tucuman,AR-T,annual,2014,bioetanol combustion consumption by to the public,117.98794368,TJ,N2O,0.6,kg/TJ,70.792766208,kg +968fdd12-76f2-386e-bd71-ef6a4bc78e14,SESCO,II.1.1,Buenos Aires,AR-B,annual,2014,bioetanol combustion consumption by to the public,729.22214088,TJ,CH4,10.0,kg/TJ,7292.2214088,kg +7cc997b3-92db-3b8a-bee5-e022823afbbe,SESCO,II.1.1,Buenos Aires,AR-B,annual,2014,bioetanol combustion consumption by to the public,729.22214088,TJ,N2O,0.6,kg/TJ,437.53328452799997,kg +6b2f576b-5e70-3b51-b55d-9863f89fa76b,SESCO,II.1.1,Capital Federal,AR-C,annual,2014,bioetanol combustion consumption by to the public,177.05008512,TJ,CH4,10.0,kg/TJ,1770.5008512,kg +c0ce478f-506f-3cf3-a7a8-059199180e95,SESCO,II.1.1,Capital Federal,AR-C,annual,2014,bioetanol combustion consumption by to the public,177.05008512,TJ,N2O,0.6,kg/TJ,106.230051072,kg +47d0cc2b-c25c-3a55-bd7a-d927fa67a9d1,SESCO,II.1.1,Catamarca,AR-K,annual,2014,bioetanol combustion consumption by to the public,10.99064376,TJ,CH4,10.0,kg/TJ,109.90643759999999,kg +69cd978d-1609-356b-b533-ee37f4c39fca,SESCO,II.1.1,Catamarca,AR-K,annual,2014,bioetanol combustion consumption by to the public,10.99064376,TJ,N2O,0.6,kg/TJ,6.594386255999999,kg +59f8e59e-17fb-343d-a588-fc75439ebee7,SESCO,II.1.1,Chaco,AR-H,annual,2014,bioetanol combustion consumption by to the public,43.82282736,TJ,CH4,10.0,kg/TJ,438.22827359999997,kg +fad3ec08-6fa6-334d-9770-9d77342ccc11,SESCO,II.1.1,Chaco,AR-H,annual,2014,bioetanol combustion consumption by to the public,43.82282736,TJ,N2O,0.6,kg/TJ,26.293696416,kg +bca56488-f4bf-3928-9a2f-533660e15465,SESCO,II.1.1,Chubut,AR-U,annual,2014,bioetanol combustion consumption by to the public,58.8644496,TJ,CH4,10.0,kg/TJ,588.644496,kg +b755f1db-6c9a-37e8-9b6a-2e7e6ba2564c,SESCO,II.1.1,Chubut,AR-U,annual,2014,bioetanol combustion consumption by to the public,58.8644496,TJ,N2O,0.6,kg/TJ,35.31866976,kg +7605e6d6-995d-3f28-a527-bf981e5ea480,SESCO,II.1.1,Corrientes,AR-W,annual,2014,bioetanol combustion consumption by to the public,44.16026688,TJ,CH4,10.0,kg/TJ,441.6026688,kg +6d2b24eb-f2f8-3962-afdf-3f40e728014f,SESCO,II.1.1,Corrientes,AR-W,annual,2014,bioetanol combustion consumption by to the public,44.16026688,TJ,N2O,0.6,kg/TJ,26.496160128,kg +289f1b32-ccc0-3ae8-b53f-c6a6f36f9de8,SESCO,II.1.1,Córdoba,AR-X,annual,2014,bioetanol combustion consumption by to the public,151.31435688,TJ,CH4,10.0,kg/TJ,1513.1435688,kg +107a15c4-ff95-32b7-b75d-360e7863ec37,SESCO,II.1.1,Córdoba,AR-X,annual,2014,bioetanol combustion consumption by to the public,151.31435688,TJ,N2O,0.6,kg/TJ,90.78861412799999,kg +ecda6e2d-7439-3956-8988-6956c60f1509,SESCO,II.1.1,Entre Rios,AR-E,annual,2014,bioetanol combustion consumption by to the public,63.16254288,TJ,CH4,10.0,kg/TJ,631.6254288,kg +dc2995b8-39d9-3c0f-8e6a-92eb835b469b,SESCO,II.1.1,Entre Rios,AR-E,annual,2014,bioetanol combustion consumption by to the public,63.16254288,TJ,N2O,0.6,kg/TJ,37.897525728,kg +ba2d4fa3-2111-3ffb-b996-fef137f7bcde,SESCO,II.1.1,Formosa,AR-P,annual,2014,bioetanol combustion consumption by to the public,11.72346696,TJ,CH4,10.0,kg/TJ,117.23466959999999,kg +635cbaeb-fb6a-3426-aeb1-5e1a629d0565,SESCO,II.1.1,Formosa,AR-P,annual,2014,bioetanol combustion consumption by to the public,11.72346696,TJ,N2O,0.6,kg/TJ,7.034080176,kg +9ae9b138-0364-30cb-86bd-7fbd60cbf732,SESCO,II.1.1,Jujuy,AR-Y,annual,2014,bioetanol combustion consumption by to the public,14.06679696,TJ,CH4,10.0,kg/TJ,140.6679696,kg +8e8c8c2d-be11-328c-9756-9440bd5f211d,SESCO,II.1.1,Jujuy,AR-Y,annual,2014,bioetanol combustion consumption by to the public,14.06679696,TJ,N2O,0.6,kg/TJ,8.440078176,kg +d42d349a-d8e2-3ece-80b4-6985ad48b3f7,SESCO,II.1.1,La Pampa,AR-L,annual,2014,bioetanol combustion consumption by to the public,35.13120336,TJ,CH4,10.0,kg/TJ,351.3120336,kg +9e75b35a-4447-3426-bbe2-84747c4726ed,SESCO,II.1.1,La Pampa,AR-L,annual,2014,bioetanol combustion consumption by to the public,35.13120336,TJ,N2O,0.6,kg/TJ,21.078722016,kg +0825ef8d-50f2-3945-bbac-1a29ed9281b9,SESCO,II.1.1,La Rioja,AR-F,annual,2014,bioetanol combustion consumption by to the public,15.477907680000001,TJ,CH4,10.0,kg/TJ,154.7790768,kg +c4a2975a-7769-395c-bbc2-c543e00bdc54,SESCO,II.1.1,La Rioja,AR-F,annual,2014,bioetanol combustion consumption by to the public,15.477907680000001,TJ,N2O,0.6,kg/TJ,9.286744608000001,kg +adafc084-8e56-3f18-b4d7-3abfda999810,SESCO,II.1.1,Mendoza,AR-M,annual,2014,bioetanol combustion consumption by to the public,104.9556204,TJ,CH4,10.0,kg/TJ,1049.556204,kg +b74be6b7-83e1-3999-ac6b-6d1981212222,SESCO,II.1.1,Mendoza,AR-M,annual,2014,bioetanol combustion consumption by to the public,104.9556204,TJ,N2O,0.6,kg/TJ,62.973372239999996,kg +15ff8700-41a7-38ef-bd44-e6852db729ed,SESCO,II.1.1,Misiones,AR-N,annual,2014,bioetanol combustion consumption by to the public,45.239050799999994,TJ,CH4,10.0,kg/TJ,452.39050799999995,kg +73ec5662-9eb5-32f8-bd00-cd2a8b07f12c,SESCO,II.1.1,Misiones,AR-N,annual,2014,bioetanol combustion consumption by to the public,45.239050799999994,TJ,N2O,0.6,kg/TJ,27.143430479999996,kg +12b18a29-8de3-351b-b349-c78f2dfbe4b0,SESCO,II.1.1,Neuquén,AR-Q,annual,2014,bioetanol combustion consumption by to the public,57.46015584,TJ,CH4,10.0,kg/TJ,574.6015583999999,kg +2c77db19-ed15-3586-8374-a71ca4dd7cd5,SESCO,II.1.1,Neuquén,AR-Q,annual,2014,bioetanol combustion consumption by to the public,57.46015584,TJ,N2O,0.6,kg/TJ,34.476093504,kg +b92109bb-1662-3340-98d2-b6620c1423dd,SESCO,II.1.1,Rio Negro,AR-R,annual,2014,bioetanol combustion consumption by to the public,57.521508479999994,TJ,CH4,10.0,kg/TJ,575.2150847999999,kg +446b91f6-a398-363e-8554-e478c3bf37e2,SESCO,II.1.1,Rio Negro,AR-R,annual,2014,bioetanol combustion consumption by to the public,57.521508479999994,TJ,N2O,0.6,kg/TJ,34.512905088,kg +5fc13a83-0534-3fc3-8d60-022d14fa14a6,SESCO,II.1.1,Salta,AR-A,annual,2014,bioetanol combustion consumption by to the public,34.84489104,TJ,CH4,10.0,kg/TJ,348.4489104,kg +162058dc-09c2-39a7-b8f6-c8a96f4ed6ff,SESCO,II.1.1,Salta,AR-A,annual,2014,bioetanol combustion consumption by to the public,34.84489104,TJ,N2O,0.6,kg/TJ,20.906934623999998,kg +aa701cd9-0458-3942-8ee3-3339e8c881a1,SESCO,II.1.1,San Juan,AR-J,annual,2014,bioetanol combustion consumption by to the public,30.05768088,TJ,CH4,10.0,kg/TJ,300.5768088,kg +bd5dd3b4-de69-3ac9-bf6b-55b0bbfe52ba,SESCO,II.1.1,San Juan,AR-J,annual,2014,bioetanol combustion consumption by to the public,30.05768088,TJ,N2O,0.6,kg/TJ,18.034608528,kg +0231b0a1-e859-3772-8056-9e6cc8512090,SESCO,II.1.1,San Luis,AR-D,annual,2014,bioetanol combustion consumption by to the public,29.42540784,TJ,CH4,10.0,kg/TJ,294.25407839999997,kg +b2379a4c-fcac-3f71-bd07-ecec35b25a6a,SESCO,II.1.1,San Luis,AR-D,annual,2014,bioetanol combustion consumption by to the public,29.42540784,TJ,N2O,0.6,kg/TJ,17.655244703999998,kg +6cec36a3-3a76-39ab-9659-859831f19756,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2014,bioetanol combustion consumption by to the public,29.086264080000003,TJ,CH4,10.0,kg/TJ,290.8626408,kg +c9de0ec0-bef7-3650-9e66-b50b61fd9003,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2014,bioetanol combustion consumption by to the public,29.086264080000003,TJ,N2O,0.6,kg/TJ,17.451758448,kg +b41e76a2-4a8d-3e70-a632-36c1efd0897d,SESCO,II.1.1,Santa Fe,AR-S,annual,2014,bioetanol combustion consumption by to the public,152.70331248,TJ,CH4,10.0,kg/TJ,1527.0331248,kg +45672531-9bbc-3095-a65f-e9289cfeabce,SESCO,II.1.1,Santa Fe,AR-S,annual,2014,bioetanol combustion consumption by to the public,152.70331248,TJ,N2O,0.6,kg/TJ,91.62198748799999,kg +cef283f8-7fef-3e2f-94bb-bc36576405d7,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2014,bioetanol combustion consumption by to the public,27.187740719999997,TJ,CH4,10.0,kg/TJ,271.8774072,kg +c208eb57-3d04-3575-bc55-5c12ed53f2fc,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2014,bioetanol combustion consumption by to the public,27.187740719999997,TJ,N2O,0.6,kg/TJ,16.312644432,kg +674ed496-5901-3e5d-9900-003da21a6c09,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2014,bioetanol combustion consumption by to the public,3.3999588,TJ,CH4,10.0,kg/TJ,33.999587999999996,kg +9b914b86-571a-3832-93fe-5e79c4d923d0,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2014,bioetanol combustion consumption by to the public,3.3999588,TJ,N2O,0.6,kg/TJ,2.0399752799999997,kg +ef0490be-707d-394e-b636-c002a4c96c42,SESCO,II.1.1,Tucuman,AR-T,annual,2014,bioetanol combustion consumption by to the public,26.85541392,TJ,CH4,10.0,kg/TJ,268.5541392,kg +69e5b783-fac3-3a74-b63b-bf0d549e5d4e,SESCO,II.1.1,Tucuman,AR-T,annual,2014,bioetanol combustion consumption by to the public,26.85541392,TJ,N2O,0.6,kg/TJ,16.113248352,kg +270bcdff-b102-334f-9a95-d13ccd5fb014,SESCO,II.1.1,Buenos Aires,AR-B,annual,2014,bioetanol combustion consumption by freight transport,9.830056319999999,TJ,CH4,10.0,kg/TJ,98.30056319999998,kg +47a8e0a3-4e88-368e-b82c-38301c8458a2,SESCO,II.1.1,Buenos Aires,AR-B,annual,2014,bioetanol combustion consumption by freight transport,9.830056319999999,TJ,N2O,0.6,kg/TJ,5.898033791999999,kg +e51c5619-6670-39db-b5c6-fbf14b67ef5f,SESCO,II.1.1,Capital Federal,AR-C,annual,2014,bioetanol combustion consumption by freight transport,10.677063599999999,TJ,CH4,10.0,kg/TJ,106.77063599999998,kg +8b5f5bda-6f25-3c5b-a922-ef93d34874ef,SESCO,II.1.1,Capital Federal,AR-C,annual,2014,bioetanol combustion consumption by freight transport,10.677063599999999,TJ,N2O,0.6,kg/TJ,6.406238159999999,kg +5917f770-57de-30f0-aa90-e1a3028e7fdc,SESCO,II.1.1,Chaco,AR-H,annual,2014,bioetanol combustion consumption by freight transport,0.27097416,TJ,CH4,10.0,kg/TJ,2.7097416,kg +aa42d09a-d06c-3777-aa56-4b3b19efea75,SESCO,II.1.1,Chaco,AR-H,annual,2014,bioetanol combustion consumption by freight transport,0.27097416,TJ,N2O,0.6,kg/TJ,0.162584496,kg +86492cf3-b28e-3d19-9529-fab2fc5b7964,SESCO,II.1.1,Chubut,AR-U,annual,2014,bioetanol combustion consumption by freight transport,0.027267839999999998,TJ,CH4,10.0,kg/TJ,0.2726784,kg +c2fd24cc-33f3-3724-92d0-d47e8e8f2761,SESCO,II.1.1,Chubut,AR-U,annual,2014,bioetanol combustion consumption by freight transport,0.027267839999999998,TJ,N2O,0.6,kg/TJ,0.016360703999999997,kg +155c9bb0-66da-375c-b793-7e67d719eb11,SESCO,II.1.1,Corrientes,AR-W,annual,2014,bioetanol combustion consumption by freight transport,0.08691623999999999,TJ,CH4,10.0,kg/TJ,0.8691623999999999,kg +4c510094-a338-3fe5-9ce4-4b2d047456af,SESCO,II.1.1,Corrientes,AR-W,annual,2014,bioetanol combustion consumption by freight transport,0.08691623999999999,TJ,N2O,0.6,kg/TJ,0.05214974399999999,kg +fbcb83ed-f9de-3fd1-9905-6ed1a939170e,SESCO,II.1.1,Córdoba,AR-X,annual,2014,bioetanol combustion consumption by freight transport,0.26756568,TJ,CH4,10.0,kg/TJ,2.6756567999999996,kg +141f9e8b-bef7-3e3b-b7d5-1d1ad597119a,SESCO,II.1.1,Córdoba,AR-X,annual,2014,bioetanol combustion consumption by freight transport,0.26756568,TJ,N2O,0.6,kg/TJ,0.16053940799999997,kg +85ecdc5d-daf3-3b19-9a44-7e25b44afdb7,SESCO,II.1.1,Entre Rios,AR-E,annual,2014,bioetanol combustion consumption by freight transport,0.09884591999999999,TJ,CH4,10.0,kg/TJ,0.9884591999999999,kg +8670bfe4-c268-3e20-8c7b-9d38e537a6f8,SESCO,II.1.1,Entre Rios,AR-E,annual,2014,bioetanol combustion consumption by freight transport,0.09884591999999999,TJ,N2O,0.6,kg/TJ,0.05930755199999999,kg +838f2edf-24e1-37fa-aef6-fe6675db96db,SESCO,II.1.1,Mendoza,AR-M,annual,2014,bioetanol combustion consumption by freight transport,0.26756568,TJ,CH4,10.0,kg/TJ,2.6756567999999996,kg +7beaa6a6-898c-3cc7-b1df-70a063784607,SESCO,II.1.1,Mendoza,AR-M,annual,2014,bioetanol combustion consumption by freight transport,0.26756568,TJ,N2O,0.6,kg/TJ,0.16053940799999997,kg +890dc80d-fb8d-3d49-9707-3cc78931f3b0,SESCO,II.1.1,Misiones,AR-N,annual,2014,bioetanol combustion consumption by freight transport,0.030676319999999997,TJ,CH4,10.0,kg/TJ,0.30676319999999996,kg +e6b623b8-d5c3-397d-8cfd-5caa64659724,SESCO,II.1.1,Misiones,AR-N,annual,2014,bioetanol combustion consumption by freight transport,0.030676319999999997,TJ,N2O,0.6,kg/TJ,0.018405791999999997,kg +cf77e3bd-b316-3d0b-9844-e7906ae22486,SESCO,II.1.1,Neuquén,AR-Q,annual,2014,bioetanol combustion consumption by freight transport,0.013633919999999999,TJ,CH4,10.0,kg/TJ,0.1363392,kg +0aa0bb36-f3a3-357a-9379-1b98f8812114,SESCO,II.1.1,Neuquén,AR-Q,annual,2014,bioetanol combustion consumption by freight transport,0.013633919999999999,TJ,N2O,0.6,kg/TJ,0.008180351999999998,kg +e60c386a-e743-3aa2-a5e1-e9390fbe5296,SESCO,II.1.1,Rio Negro,AR-R,annual,2014,bioetanol combustion consumption by freight transport,0.08862048,TJ,CH4,10.0,kg/TJ,0.8862048,kg +908761eb-398b-326a-99d5-4cf40c5115e9,SESCO,II.1.1,Rio Negro,AR-R,annual,2014,bioetanol combustion consumption by freight transport,0.08862048,TJ,N2O,0.6,kg/TJ,0.053172288,kg +80a8bf29-873e-3c3b-888a-78317d39910b,SESCO,II.1.1,Salta,AR-A,annual,2014,bioetanol combustion consumption by freight transport,0.553878,TJ,CH4,10.0,kg/TJ,5.53878,kg +d270c9a1-df67-389b-be7d-33df19b3f032,SESCO,II.1.1,Salta,AR-A,annual,2014,bioetanol combustion consumption by freight transport,0.553878,TJ,N2O,0.6,kg/TJ,0.3323268,kg +180c2f54-4195-3c81-a440-b0d99efa495d,SESCO,II.1.1,San Juan,AR-J,annual,2014,bioetanol combustion consumption by freight transport,0.0034084799999999998,TJ,CH4,10.0,kg/TJ,0.0340848,kg +c88ede68-b3e6-3738-8401-fd8b91e9219b,SESCO,II.1.1,San Juan,AR-J,annual,2014,bioetanol combustion consumption by freight transport,0.0034084799999999998,TJ,N2O,0.6,kg/TJ,0.0020450879999999996,kg +e585bcf5-e26c-33d9-b701-64ca71ecb216,SESCO,II.1.1,San Luis,AR-D,annual,2014,bioetanol combustion consumption by freight transport,0.013633919999999999,TJ,CH4,10.0,kg/TJ,0.1363392,kg +60f954ca-30c9-387f-a54c-af2732ec0cf7,SESCO,II.1.1,San Luis,AR-D,annual,2014,bioetanol combustion consumption by freight transport,0.013633919999999999,TJ,N2O,0.6,kg/TJ,0.008180351999999998,kg +aae72771-15a5-3bfe-b661-1258063f9411,SESCO,II.1.1,Santa Fe,AR-S,annual,2014,bioetanol combustion consumption by freight transport,0.85893696,TJ,CH4,10.0,kg/TJ,8.5893696,kg +96c806d8-b327-32c5-a0e1-8dd0fabe168f,SESCO,II.1.1,Santa Fe,AR-S,annual,2014,bioetanol combustion consumption by freight transport,0.85893696,TJ,N2O,0.6,kg/TJ,0.515362176,kg +9a0a3377-6505-39f8-a619-5a6c210802d7,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2014,bioetanol combustion consumption by freight transport,0.0017042399999999999,TJ,CH4,10.0,kg/TJ,0.0170424,kg +0efac24f-2725-3f0b-82d4-60666149a274,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2014,bioetanol combustion consumption by freight transport,0.0017042399999999999,TJ,N2O,0.6,kg/TJ,0.0010225439999999998,kg +1a7f3786-b863-30f6-a3cd-674ded28a8a8,SESCO,II.1.1,Tucuman,AR-T,annual,2014,bioetanol combustion consumption by freight transport,0.06476111999999999,TJ,CH4,10.0,kg/TJ,0.6476111999999999,kg +8ce8a3e7-d5e4-3413-941e-d992dbfd96c2,SESCO,II.1.1,Tucuman,AR-T,annual,2014,bioetanol combustion consumption by freight transport,0.06476111999999999,TJ,N2O,0.6,kg/TJ,0.038856671999999995,kg +28a9a6cf-3332-38cb-9523-1bf06fbb0bd5,SESCO,II.1.1,Buenos Aires,AR-B,annual,2014,bioetanol combustion consumption by freight transport,9.884592,TJ,CH4,10.0,kg/TJ,98.84591999999999,kg +6b921ae5-b4c8-3f76-8a18-161128b1e085,SESCO,II.1.1,Buenos Aires,AR-B,annual,2014,bioetanol combustion consumption by freight transport,9.884592,TJ,N2O,0.6,kg/TJ,5.930755199999999,kg +7650d82f-63ac-37ce-90ad-758cd8bdd4b6,SESCO,II.1.1,Capital Federal,AR-C,annual,2014,bioetanol combustion consumption by freight transport,9.67667472,TJ,CH4,10.0,kg/TJ,96.7667472,kg +c34e2478-ea9e-3ee4-a6cb-d2128b8b037c,SESCO,II.1.1,Capital Federal,AR-C,annual,2014,bioetanol combustion consumption by freight transport,9.67667472,TJ,N2O,0.6,kg/TJ,5.806004831999999,kg +06fc960d-97e6-332b-804a-aad794f8f6a3,SESCO,II.1.1,Chaco,AR-H,annual,2014,bioetanol combustion consumption by freight transport,0.32039712,TJ,CH4,10.0,kg/TJ,3.2039712,kg +872541a0-4f4d-31aa-84f5-8bbf86197a5a,SESCO,II.1.1,Chaco,AR-H,annual,2014,bioetanol combustion consumption by freight transport,0.32039712,TJ,N2O,0.6,kg/TJ,0.192238272,kg +4b726d1e-05f6-3bd7-b24c-ddd5a77a2189,SESCO,II.1.1,Chubut,AR-U,annual,2014,bioetanol combustion consumption by freight transport,0.02215512,TJ,CH4,10.0,kg/TJ,0.2215512,kg +86e06134-7445-3d64-99ac-59ac5bd27542,SESCO,II.1.1,Chubut,AR-U,annual,2014,bioetanol combustion consumption by freight transport,0.02215512,TJ,N2O,0.6,kg/TJ,0.013293072,kg +42b3be01-ee6e-34ef-b122-0ad451c00025,SESCO,II.1.1,Corrientes,AR-W,annual,2014,bioetanol combustion consumption by freight transport,0.14315615999999998,TJ,CH4,10.0,kg/TJ,1.4315615999999998,kg +d38fe19b-94da-3d85-94b2-c16549be187c,SESCO,II.1.1,Corrientes,AR-W,annual,2014,bioetanol combustion consumption by freight transport,0.14315615999999998,TJ,N2O,0.6,kg/TJ,0.08589369599999998,kg +66e4335c-b58b-32cd-a27e-f92e46e8e83c,SESCO,II.1.1,Córdoba,AR-X,annual,2014,bioetanol combustion consumption by freight transport,0.2641572,TJ,CH4,10.0,kg/TJ,2.641572,kg +325f85a7-fe8e-31c6-90b6-d68874d4e92c,SESCO,II.1.1,Córdoba,AR-X,annual,2014,bioetanol combustion consumption by freight transport,0.2641572,TJ,N2O,0.6,kg/TJ,0.15849432,kg +b0811922-cdb6-30cb-8d29-0534637ee5ea,SESCO,II.1.1,Entre Rios,AR-E,annual,2014,bioetanol combustion consumption by freight transport,0.1107756,TJ,CH4,10.0,kg/TJ,1.107756,kg +e6d61e80-0000-3e9a-a3ae-54a506a9a366,SESCO,II.1.1,Entre Rios,AR-E,annual,2014,bioetanol combustion consumption by freight transport,0.1107756,TJ,N2O,0.6,kg/TJ,0.06646536,kg +d573f2b1-1dbd-3490-864e-b3c4a1485f04,SESCO,II.1.1,Jujuy,AR-Y,annual,2014,bioetanol combustion consumption by freight transport,0.005112719999999999,TJ,CH4,10.0,kg/TJ,0.0511272,kg +e488517e-def6-3d29-a51c-2106d8abbd23,SESCO,II.1.1,Jujuy,AR-Y,annual,2014,bioetanol combustion consumption by freight transport,0.005112719999999999,TJ,N2O,0.6,kg/TJ,0.0030676319999999994,kg +9e0754c2-ce88-3992-bdaf-36499b346246,SESCO,II.1.1,La Rioja,AR-F,annual,2014,bioetanol combustion consumption by freight transport,0.0255636,TJ,CH4,10.0,kg/TJ,0.255636,kg +ec1bb08f-a31a-36b4-a228-ddcb6ae7bb7e,SESCO,II.1.1,La Rioja,AR-F,annual,2014,bioetanol combustion consumption by freight transport,0.0255636,TJ,N2O,0.6,kg/TJ,0.015338159999999998,kg +90910fe3-0d24-383d-ad64-36d8c346a0d8,SESCO,II.1.1,Mendoza,AR-M,annual,2014,bioetanol combustion consumption by freight transport,0.22325544,TJ,CH4,10.0,kg/TJ,2.2325544,kg +2ad585ab-e5da-3552-bfad-59760ca94dd4,SESCO,II.1.1,Mendoza,AR-M,annual,2014,bioetanol combustion consumption by freight transport,0.22325544,TJ,N2O,0.6,kg/TJ,0.133953264,kg +845393f5-8212-3a2b-be1c-7aabcc073e8a,SESCO,II.1.1,Misiones,AR-N,annual,2014,bioetanol combustion consumption by freight transport,0.040901759999999995,TJ,CH4,10.0,kg/TJ,0.4090176,kg +5d59fc73-9f91-349b-9be8-f0f6c561d228,SESCO,II.1.1,Misiones,AR-N,annual,2014,bioetanol combustion consumption by freight transport,0.040901759999999995,TJ,N2O,0.6,kg/TJ,0.024541055999999995,kg +cf77e3bd-b316-3d0b-9844-e7906ae22486,SESCO,II.1.1,Neuquén,AR-Q,annual,2014,bioetanol combustion consumption by freight transport,0.013633919999999999,TJ,CH4,10.0,kg/TJ,0.1363392,kg +0aa0bb36-f3a3-357a-9379-1b98f8812114,SESCO,II.1.1,Neuquén,AR-Q,annual,2014,bioetanol combustion consumption by freight transport,0.013633919999999999,TJ,N2O,0.6,kg/TJ,0.008180351999999998,kg +75b5a713-9854-3c98-9d2c-c4393a4d5642,SESCO,II.1.1,Rio Negro,AR-R,annual,2014,bioetanol combustion consumption by freight transport,0.1022544,TJ,CH4,10.0,kg/TJ,1.022544,kg +34be2b69-1cec-3969-bebe-060843fb4422,SESCO,II.1.1,Rio Negro,AR-R,annual,2014,bioetanol combustion consumption by freight transport,0.1022544,TJ,N2O,0.6,kg/TJ,0.06135263999999999,kg +0cc9e75a-716e-30fe-863f-8c5fcdf16884,SESCO,II.1.1,Salta,AR-A,annual,2014,bioetanol combustion consumption by freight transport,0.054535679999999996,TJ,CH4,10.0,kg/TJ,0.5453568,kg +1c966b52-65e7-3fcb-9af6-8015de24daf4,SESCO,II.1.1,Salta,AR-A,annual,2014,bioetanol combustion consumption by freight transport,0.054535679999999996,TJ,N2O,0.6,kg/TJ,0.032721407999999993,kg +4d445df7-e721-38c9-bfde-b08a1a862ef9,SESCO,II.1.1,San Luis,AR-D,annual,2014,bioetanol combustion consumption by freight transport,0.01874664,TJ,CH4,10.0,kg/TJ,0.18746639999999998,kg +1fa820d9-e089-37f0-bee4-348c4c6cd61c,SESCO,II.1.1,San Luis,AR-D,annual,2014,bioetanol combustion consumption by freight transport,0.01874664,TJ,N2O,0.6,kg/TJ,0.011247983999999999,kg +68e58d36-ada3-381c-9561-ded02170269d,SESCO,II.1.1,Santa Fe,AR-S,annual,2014,bioetanol combustion consumption by freight transport,1.17251712,TJ,CH4,10.0,kg/TJ,11.7251712,kg +20689d92-0349-34f3-aaa1-f93028060d36,SESCO,II.1.1,Santa Fe,AR-S,annual,2014,bioetanol combustion consumption by freight transport,1.17251712,TJ,N2O,0.6,kg/TJ,0.7035102719999999,kg +d8ef2ca3-13be-3e4a-a0fb-30a91e2f344b,SESCO,II.1.1,Tucuman,AR-T,annual,2014,bioetanol combustion consumption by freight transport,0.040901759999999995,TJ,CH4,10.0,kg/TJ,0.4090176,kg +02fe95e6-4ca2-37ed-9ac9-18d7b0696b0b,SESCO,II.1.1,Tucuman,AR-T,annual,2014,bioetanol combustion consumption by freight transport,0.040901759999999995,TJ,N2O,0.6,kg/TJ,0.024541055999999995,kg +d3adc838-1eee-3803-a47c-8aa552c81a11,SESCO,II.1.1,Buenos Aires,AR-B,annual,2014,bioetanol combustion consumption by public passenger transport,0.010225439999999999,TJ,CH4,10.0,kg/TJ,0.1022544,kg +839a5344-1900-32c3-b23f-8f83aeafb00c,SESCO,II.1.1,Buenos Aires,AR-B,annual,2014,bioetanol combustion consumption by public passenger transport,0.010225439999999999,TJ,N2O,0.6,kg/TJ,0.006135263999999999,kg +894dd03e-c24d-336e-9557-0e9756250710,SESCO,II.1.1,Capital Federal,AR-C,annual,2015,bioetanol combustion consumption by to the public,1.40727618,TJ,CH4,10.0,kg/TJ,14.0727618,kg +c4072d95-ced1-33fd-bcc0-b25333926294,SESCO,II.1.1,Capital Federal,AR-C,annual,2015,bioetanol combustion consumption by to the public,1.40727618,TJ,N2O,0.6,kg/TJ,0.844365708,kg +0186f02e-ed6b-3b10-8344-b9175cd41c32,SESCO,II.1.1,Capital Federal,AR-C,annual,2015,bioetanol combustion consumption by to the public,0.43522028999999995,TJ,CH4,10.0,kg/TJ,4.3522029,kg +368125e1-d7dd-3d57-845c-242cb2a17f4c,SESCO,II.1.1,Capital Federal,AR-C,annual,2015,bioetanol combustion consumption by to the public,0.43522028999999995,TJ,N2O,0.6,kg/TJ,0.26113217399999994,kg +4c604c65-eadb-3892-8dcd-7a9ada93196f,SESCO,II.5.1,Córdoba,AR-X,annual,2015,bioetanol combustion consumption by agriculture machines,0.4160475899999999,TJ,CH4,10.0,kg/TJ,4.160475899999999,kg +127c318f-f41f-38cd-8502-92f4f04e3f9d,SESCO,II.5.1,Córdoba,AR-X,annual,2015,bioetanol combustion consumption by agriculture machines,0.4160475899999999,TJ,N2O,0.6,kg/TJ,0.24962855399999995,kg +496fab8e-16ec-3b15-895e-ef53bed8dcd5,SESCO,II.5.1,Santa Fe,AR-S,annual,2015,bioetanol combustion consumption by agriculture machines,1.0544985,TJ,CH4,10.0,kg/TJ,10.544985,kg +95cd5687-7cce-37ff-8f5d-0e1f89ba3f54,SESCO,II.5.1,Santa Fe,AR-S,annual,2015,bioetanol combustion consumption by agriculture machines,1.0544985,TJ,N2O,0.6,kg/TJ,0.6326991,kg +dfd77a7e-39b0-37ad-a3bf-35fef28b1a66,SESCO,II.5.1,Córdoba,AR-X,annual,2015,bioetanol combustion consumption by agriculture machines,0.20706515999999997,TJ,CH4,10.0,kg/TJ,2.0706515999999997,kg +be8b1fcd-7705-304b-ba26-f8c62e2b5352,SESCO,II.5.1,Córdoba,AR-X,annual,2015,bioetanol combustion consumption by agriculture machines,0.20706515999999997,TJ,N2O,0.6,kg/TJ,0.12423909599999998,kg +fac02b52-56a5-3824-907e-380b20ccf930,SESCO,II.5.1,Santa Fe,AR-S,annual,2015,bioetanol combustion consumption by agriculture machines,0.37770219,TJ,CH4,10.0,kg/TJ,3.7770219,kg +83aaee4f-4597-3f9c-a3fa-f65dc7401ba0,SESCO,II.5.1,Santa Fe,AR-S,annual,2015,bioetanol combustion consumption by agriculture machines,0.37770219,TJ,N2O,0.6,kg/TJ,0.226621314,kg +29fffd63-46f5-3237-830b-e4d0cd3aef81,SESCO,II.1.1,Buenos Aires,AR-B,annual,2015,bioetanol combustion consumption by to the public,553.142014327044,TJ,CH4,10.0,kg/TJ,5531.420143270439,kg +94d5486c-aae3-3014-8d5d-cfa8a7656121,SESCO,II.1.1,Buenos Aires,AR-B,annual,2015,bioetanol combustion consumption by to the public,553.142014327044,TJ,N2O,0.6,kg/TJ,331.8852085962264,kg +431ef201-6c58-3ea8-b415-b31bcdc1097f,SESCO,II.1.1,Capital Federal,AR-C,annual,2015,bioetanol combustion consumption by to the public,198.01597958843396,TJ,CH4,10.0,kg/TJ,1980.1597958843397,kg +abfab013-c053-345d-ac48-7f07a81287e4,SESCO,II.1.1,Capital Federal,AR-C,annual,2015,bioetanol combustion consumption by to the public,198.01597958843396,TJ,N2O,0.6,kg/TJ,118.80958775306037,kg +0e503988-fecb-3f76-a88b-c141e9e33296,SESCO,II.1.1,Catamarca,AR-K,annual,2015,bioetanol combustion consumption by to the public,25.594343552267993,TJ,CH4,10.0,kg/TJ,255.94343552267992,kg +76a38364-7a53-3387-a7fa-6e27ba261176,SESCO,II.1.1,Catamarca,AR-K,annual,2015,bioetanol combustion consumption by to the public,25.594343552267993,TJ,N2O,0.6,kg/TJ,15.356606131360795,kg +dfacce38-7685-3e7f-b49d-af156688370a,SESCO,II.1.1,Chaco,AR-H,annual,2015,bioetanol combustion consumption by to the public,25.631160696351,TJ,CH4,10.0,kg/TJ,256.31160696351,kg +db175cc9-1bb7-3db7-9993-95dc6d04d1bc,SESCO,II.1.1,Chaco,AR-H,annual,2015,bioetanol combustion consumption by to the public,25.631160696351,TJ,N2O,0.6,kg/TJ,15.378696417810598,kg +6de57489-9a80-345b-bf3a-17de72da7683,SESCO,II.1.1,Chubut,AR-U,annual,2015,bioetanol combustion consumption by to the public,18.66207923271,TJ,CH4,10.0,kg/TJ,186.6207923271,kg +9bca9d3f-1cb0-3a6b-bf97-a5758d855d4b,SESCO,II.1.1,Chubut,AR-U,annual,2015,bioetanol combustion consumption by to the public,18.66207923271,TJ,N2O,0.6,kg/TJ,11.197247539626,kg +d2208f77-a524-3c87-abb2-8c4868b7606a,SESCO,II.1.1,Corrientes,AR-W,annual,2015,bioetanol combustion consumption by to the public,22.165549075376997,TJ,CH4,10.0,kg/TJ,221.65549075376998,kg +6779cca7-0c06-3dc3-b57e-17f6470b0c99,SESCO,II.1.1,Corrientes,AR-W,annual,2015,bioetanol combustion consumption by to the public,22.165549075376997,TJ,N2O,0.6,kg/TJ,13.299329445226197,kg +9d9b7f34-b572-3765-9189-a6abd6638cde,SESCO,II.1.1,Córdoba,AR-X,annual,2015,bioetanol combustion consumption by to the public,163.247002321509,TJ,CH4,10.0,kg/TJ,1632.47002321509,kg +93418239-b0ab-33b9-82f4-53fece7ded27,SESCO,II.1.1,Córdoba,AR-X,annual,2015,bioetanol combustion consumption by to the public,163.247002321509,TJ,N2O,0.6,kg/TJ,97.9482013929054,kg +57cf640b-d4a6-3855-b274-2944b94c1a64,SESCO,II.1.1,Entre Rios,AR-E,annual,2015,bioetanol combustion consumption by to the public,61.633425533589,TJ,CH4,10.0,kg/TJ,616.33425533589,kg +84d640ca-af35-34b7-9ce2-889f050529eb,SESCO,II.1.1,Entre Rios,AR-E,annual,2015,bioetanol combustion consumption by to the public,61.633425533589,TJ,N2O,0.6,kg/TJ,36.9800553201534,kg +5bbb0717-89e9-33c1-a321-98aba8a39ff7,SESCO,II.1.1,Formosa,AR-P,annual,2015,bioetanol combustion consumption by to the public,31.710130581519,TJ,CH4,10.0,kg/TJ,317.10130581519,kg +465bbd50-70d1-320b-a4f2-e53a98790b41,SESCO,II.1.1,Formosa,AR-P,annual,2015,bioetanol combustion consumption by to the public,31.710130581519,TJ,N2O,0.6,kg/TJ,19.026078348911398,kg +bd83fc2d-7a84-3ea6-b798-025545b2588d,SESCO,II.1.1,Jujuy,AR-Y,annual,2015,bioetanol combustion consumption by to the public,5.880337645535999,TJ,CH4,10.0,kg/TJ,58.80337645535999,kg +7b66a8a0-0250-396d-8ed8-cd205f0df590,SESCO,II.1.1,Jujuy,AR-Y,annual,2015,bioetanol combustion consumption by to the public,5.880337645535999,TJ,N2O,0.6,kg/TJ,3.528202587321599,kg +7bc1267b-2bc3-3a51-b955-4487cef651c1,SESCO,II.1.1,La Pampa,AR-L,annual,2015,bioetanol combustion consumption by to the public,6.771401340290999,TJ,CH4,10.0,kg/TJ,67.71401340290998,kg +7d46e134-5f02-3abb-a4b7-7c0697e700f9,SESCO,II.1.1,La Pampa,AR-L,annual,2015,bioetanol combustion consumption by to the public,6.771401340290999,TJ,N2O,0.6,kg/TJ,4.062840804174599,kg +04c2e641-b31d-3121-93f9-f1c0fc7cde14,SESCO,II.1.1,La Rioja,AR-F,annual,2015,bioetanol combustion consumption by to the public,6.051323235222,TJ,CH4,10.0,kg/TJ,60.51323235222,kg +06e3d918-2bb1-38c8-9162-ee95ff392b51,SESCO,II.1.1,La Rioja,AR-F,annual,2015,bioetanol combustion consumption by to the public,6.051323235222,TJ,N2O,0.6,kg/TJ,3.6307939411332,kg +f408c9dd-4bdb-3bc8-a990-3a8e0d2f7085,SESCO,II.1.1,Mendoza,AR-M,annual,2015,bioetanol combustion consumption by to the public,28.082635418456995,TJ,CH4,10.0,kg/TJ,280.82635418456994,kg +523cf4c4-87cc-317a-a35b-56add125a631,SESCO,II.1.1,Mendoza,AR-M,annual,2015,bioetanol combustion consumption by to the public,28.082635418456995,TJ,N2O,0.6,kg/TJ,16.849581251074195,kg +99ed5456-9176-3ba9-80aa-e9656945bebf,SESCO,II.1.1,Misiones,AR-N,annual,2015,bioetanol combustion consumption by to the public,46.38784915979999,TJ,CH4,10.0,kg/TJ,463.8784915979999,kg +0b9c1506-a568-3033-8ec5-9b4c987b266b,SESCO,II.1.1,Misiones,AR-N,annual,2015,bioetanol combustion consumption by to the public,46.38784915979999,TJ,N2O,0.6,kg/TJ,27.832709495879993,kg +5c2cd5d3-a1e1-3b01-888e-01b3f4ba2df8,SESCO,II.1.1,Neuquén,AR-Q,annual,2015,bioetanol combustion consumption by to the public,16.735623208685997,TJ,CH4,10.0,kg/TJ,167.35623208685996,kg +a6494fa3-fc3c-341d-9a34-8de349f7a732,SESCO,II.1.1,Neuquén,AR-Q,annual,2015,bioetanol combustion consumption by to the public,16.735623208685997,TJ,N2O,0.6,kg/TJ,10.041373925211598,kg +0d2eaed4-4040-3c30-98c1-0e145113622c,SESCO,II.1.1,Rio Negro,AR-R,annual,2015,bioetanol combustion consumption by to the public,18.423285554934,TJ,CH4,10.0,kg/TJ,184.23285554934,kg +8708b5f5-c373-3b5e-82ae-e7c19faadcee,SESCO,II.1.1,Rio Negro,AR-R,annual,2015,bioetanol combustion consumption by to the public,18.423285554934,TJ,N2O,0.6,kg/TJ,11.0539713329604,kg +cd5bd1ad-23f3-3cc3-b5ba-7e29aa4b0a7f,SESCO,II.1.1,Salta,AR-A,annual,2015,bioetanol combustion consumption by to the public,3.256411197375,TJ,CH4,10.0,kg/TJ,32.56411197375,kg +b5979192-5877-35a3-93c4-87cab7774d46,SESCO,II.1.1,Salta,AR-A,annual,2015,bioetanol combustion consumption by to the public,3.256411197375,TJ,N2O,0.6,kg/TJ,1.953846718425,kg +87541640-05f5-3f9d-8149-7073d873a352,SESCO,II.1.1,San Juan,AR-J,annual,2015,bioetanol combustion consumption by to the public,17.01711142173,TJ,CH4,10.0,kg/TJ,170.1711142173,kg +d14c0295-6538-31a6-b904-c728a7025330,SESCO,II.1.1,San Juan,AR-J,annual,2015,bioetanol combustion consumption by to the public,17.01711142173,TJ,N2O,0.6,kg/TJ,10.210266853038,kg +e301234c-780f-3b01-a9f7-5c0bbcde6759,SESCO,II.1.1,San Luis,AR-D,annual,2015,bioetanol combustion consumption by to the public,34.189744308507,TJ,CH4,10.0,kg/TJ,341.89744308507,kg +538e9718-e069-3771-82f2-593c5d49f99a,SESCO,II.1.1,San Luis,AR-D,annual,2015,bioetanol combustion consumption by to the public,34.189744308507,TJ,N2O,0.6,kg/TJ,20.5138465851042,kg +85f4809f-fbfe-3b1d-b967-011696c44a5b,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2015,bioetanol combustion consumption by to the public,3.755140289216999,TJ,CH4,10.0,kg/TJ,37.55140289216999,kg +0add7905-959e-3c73-a2dc-a93cec4de315,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2015,bioetanol combustion consumption by to the public,3.755140289216999,TJ,N2O,0.6,kg/TJ,2.2530841735301994,kg +2f192da9-b012-3ce4-9110-7969864defda,SESCO,II.1.1,Santa Fe,AR-S,annual,2015,bioetanol combustion consumption by to the public,149.94439004989798,TJ,CH4,10.0,kg/TJ,1499.4439004989797,kg +32f89d92-0d36-3cc3-92bb-b616cb44b47c,SESCO,II.1.1,Santa Fe,AR-S,annual,2015,bioetanol combustion consumption by to the public,149.94439004989798,TJ,N2O,0.6,kg/TJ,89.96663402993879,kg +4edc4aa2-a7b9-3b44-b713-ccfbd0f48f3a,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2015,bioetanol combustion consumption by to the public,19.856473063802998,TJ,CH4,10.0,kg/TJ,198.56473063802997,kg +5ae85425-8432-3321-9de8-41a61f2bc4b3,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2015,bioetanol combustion consumption by to the public,19.856473063802998,TJ,N2O,0.6,kg/TJ,11.913883838281798,kg +585c20f0-a913-3d1b-85fc-c76a3b7f2e27,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2015,bioetanol combustion consumption by to the public,7.319880712727999,TJ,CH4,10.0,kg/TJ,73.19880712727999,kg +4824193c-05b8-38ba-b516-cb22862cc151,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2015,bioetanol combustion consumption by to the public,7.319880712727999,TJ,N2O,0.6,kg/TJ,4.391928427636799,kg +c3c3cce9-1c34-387d-b0d2-e1c81f13e30c,SESCO,II.1.1,Tucuman,AR-T,annual,2015,bioetanol combustion consumption by to the public,7.450754713289999,TJ,CH4,10.0,kg/TJ,74.50754713289999,kg +6175d2ab-8b67-3ced-9a6e-7c6ef8c39b1b,SESCO,II.1.1,Tucuman,AR-T,annual,2015,bioetanol combustion consumption by to the public,7.450754713289999,TJ,N2O,0.6,kg/TJ,4.4704528279739995,kg +6ec74054-aae4-3494-a149-2fef26ab09a9,SESCO,II.1.1,Buenos Aires,AR-B,annual,2015,bioetanol combustion consumption by to the public,154.623676911174,TJ,CH4,10.0,kg/TJ,1546.23676911174,kg +47297602-db38-30ac-9836-4d49b44a280c,SESCO,II.1.1,Buenos Aires,AR-B,annual,2015,bioetanol combustion consumption by to the public,154.623676911174,TJ,N2O,0.6,kg/TJ,92.77420614670439,kg +628d0870-b0e0-305d-ae51-50c53aad12cc,SESCO,II.1.1,Capital Federal,AR-C,annual,2015,bioetanol combustion consumption by to the public,78.972685863615,TJ,CH4,10.0,kg/TJ,789.7268586361499,kg +9881b2ec-75b4-30ba-84c8-41450c4a836a,SESCO,II.1.1,Capital Federal,AR-C,annual,2015,bioetanol combustion consumption by to the public,78.972685863615,TJ,N2O,0.6,kg/TJ,47.383611518169,kg +8510543d-32ef-3329-85f5-ac440ee96ea8,SESCO,II.1.1,Catamarca,AR-K,annual,2015,bioetanol combustion consumption by to the public,6.988319159094,TJ,CH4,10.0,kg/TJ,69.88319159094,kg +489c4811-bcf0-35b1-ba2a-b3623b762934,SESCO,II.1.1,Catamarca,AR-K,annual,2015,bioetanol combustion consumption by to the public,6.988319159094,TJ,N2O,0.6,kg/TJ,4.1929914954564,kg +46bb58f5-768b-3fa1-8d6d-6a4c4c1de81a,SESCO,II.1.1,Chaco,AR-H,annual,2015,bioetanol combustion consumption by to the public,5.190779219507999,TJ,CH4,10.0,kg/TJ,51.90779219507999,kg +396b3528-1b14-3e2e-b621-a1125252ea3e,SESCO,II.1.1,Chaco,AR-H,annual,2015,bioetanol combustion consumption by to the public,5.190779219507999,TJ,N2O,0.6,kg/TJ,3.1144675317047996,kg +d547d63c-52d0-32cb-b551-7186d8cd08fa,SESCO,II.1.1,Chubut,AR-U,annual,2015,bioetanol combustion consumption by to the public,4.246423854741,TJ,CH4,10.0,kg/TJ,42.46423854741,kg +18c0afe8-6dd9-3e67-87a0-874bc60588f0,SESCO,II.1.1,Chubut,AR-U,annual,2015,bioetanol combustion consumption by to the public,4.246423854741,TJ,N2O,0.6,kg/TJ,2.5478543128445996,kg +21f55c35-d0db-3bec-a5d4-221aa64389b9,SESCO,II.1.1,Corrientes,AR-W,annual,2015,bioetanol combustion consumption by to the public,6.540319114181999,TJ,CH4,10.0,kg/TJ,65.40319114181999,kg +ea7feb17-3398-3520-b6ec-d673937aca36,SESCO,II.1.1,Corrientes,AR-W,annual,2015,bioetanol combustion consumption by to the public,6.540319114181999,TJ,N2O,0.6,kg/TJ,3.9241914685091994,kg +b0ea1b42-5a82-3c73-9bb3-faa6540fcd62,SESCO,II.1.1,Córdoba,AR-X,annual,2015,bioetanol combustion consumption by to the public,38.15407869433199,TJ,CH4,10.0,kg/TJ,381.5407869433199,kg +cf8310ea-43a3-3a15-b5e4-4beb18378c3b,SESCO,II.1.1,Córdoba,AR-X,annual,2015,bioetanol combustion consumption by to the public,38.15407869433199,TJ,N2O,0.6,kg/TJ,22.892447216599194,kg +f325d834-73be-36bf-bb62-c3db7ae67f74,SESCO,II.1.1,Entre Rios,AR-E,annual,2015,bioetanol combustion consumption by to the public,16.391769078447,TJ,CH4,10.0,kg/TJ,163.91769078446998,kg +30c0002d-bc4d-3b8d-8f0b-ba7c48bb3268,SESCO,II.1.1,Entre Rios,AR-E,annual,2015,bioetanol combustion consumption by to the public,16.391769078447,TJ,N2O,0.6,kg/TJ,9.835061447068199,kg +a1009914-ab43-3828-bf97-7453c503ed76,SESCO,II.1.1,Formosa,AR-P,annual,2015,bioetanol combustion consumption by to the public,7.642501652898,TJ,CH4,10.0,kg/TJ,76.42501652898,kg +d7184bdd-b478-3485-91f7-26142fa8032f,SESCO,II.1.1,Formosa,AR-P,annual,2015,bioetanol combustion consumption by to the public,7.642501652898,TJ,N2O,0.6,kg/TJ,4.5855009917388,kg +ca2b3669-0a1d-3f85-b19a-eef79850a790,SESCO,II.1.1,Jujuy,AR-Y,annual,2015,bioetanol combustion consumption by to the public,0.274148711757,TJ,CH4,10.0,kg/TJ,2.74148711757,kg +f3b099e5-8196-389c-9d24-8844c97bd362,SESCO,II.1.1,Jujuy,AR-Y,annual,2015,bioetanol combustion consumption by to the public,0.274148711757,TJ,N2O,0.6,kg/TJ,0.1644892270542,kg +b57a4bea-66a2-37d9-a180-3f8ed77f9a75,SESCO,II.1.1,La Pampa,AR-L,annual,2015,bioetanol combustion consumption by to the public,2.192842668186,TJ,CH4,10.0,kg/TJ,21.92842668186,kg +474b03ff-f05f-36a9-8528-8945193b747b,SESCO,II.1.1,La Pampa,AR-L,annual,2015,bioetanol combustion consumption by to the public,2.192842668186,TJ,N2O,0.6,kg/TJ,1.3157056009116,kg +80f3cfa7-07aa-3dd1-bd69-db0c0a95a7b5,SESCO,II.1.1,La Rioja,AR-F,annual,2015,bioetanol combustion consumption by to the public,1.0761661434509997,TJ,CH4,10.0,kg/TJ,10.761661434509996,kg +d1e394e5-b72b-345c-af0f-cc6a886e3801,SESCO,II.1.1,La Rioja,AR-F,annual,2015,bioetanol combustion consumption by to the public,1.0761661434509997,TJ,N2O,0.6,kg/TJ,0.6456996860705998,kg +dd513797-6449-33f1-866b-29a7a86b5efa,SESCO,II.1.1,Mendoza,AR-M,annual,2015,bioetanol combustion consumption by to the public,7.741087868024999,TJ,CH4,10.0,kg/TJ,77.41087868025,kg +744dda1f-cc7a-3265-9d7b-b81890ce582a,SESCO,II.1.1,Mendoza,AR-M,annual,2015,bioetanol combustion consumption by to the public,7.741087868024999,TJ,N2O,0.6,kg/TJ,4.6446527208149995,kg +fa4a8992-5c90-31fb-863c-89e10e32142e,SESCO,II.1.1,Misiones,AR-N,annual,2015,bioetanol combustion consumption by to the public,7.578240322580999,TJ,CH4,10.0,kg/TJ,75.78240322580999,kg +f937c3a9-a75b-3318-b27f-aa11c6049ba5,SESCO,II.1.1,Misiones,AR-N,annual,2015,bioetanol combustion consumption by to the public,7.578240322580999,TJ,N2O,0.6,kg/TJ,4.546944193548599,kg +d0800a6a-bdb1-31ce-b053-7a856cf6d3fb,SESCO,II.1.1,Neuquén,AR-Q,annual,2015,bioetanol combustion consumption by to the public,6.115737947138999,TJ,CH4,10.0,kg/TJ,61.157379471389994,kg +9e141ce0-099c-3517-be1d-7109a8444a1c,SESCO,II.1.1,Neuquén,AR-Q,annual,2015,bioetanol combustion consumption by to the public,6.115737947138999,TJ,N2O,0.6,kg/TJ,3.6694427682833997,kg +8925275d-d33c-36f2-9733-06024feadba0,SESCO,II.1.1,Rio Negro,AR-R,annual,2015,bioetanol combustion consumption by to the public,6.505373992527,TJ,CH4,10.0,kg/TJ,65.05373992527,kg +9938ae91-c515-3c23-9d93-cd330d55253c,SESCO,II.1.1,Rio Negro,AR-R,annual,2015,bioetanol combustion consumption by to the public,6.505373992527,TJ,N2O,0.6,kg/TJ,3.9032243955161996,kg +5ea20eeb-21b1-39b5-af3f-2c0e6528e192,SESCO,II.1.1,Salta,AR-A,annual,2015,bioetanol combustion consumption by to the public,0.5406093625409999,TJ,CH4,10.0,kg/TJ,5.406093625409999,kg +a1702d9f-c53e-3f0f-bf9d-80d4e2fd14b2,SESCO,II.1.1,Salta,AR-A,annual,2015,bioetanol combustion consumption by to the public,0.5406093625409999,TJ,N2O,0.6,kg/TJ,0.3243656175245999,kg +469cbf11-969f-377b-aa76-9921eab42619,SESCO,II.1.1,San Juan,AR-J,annual,2015,bioetanol combustion consumption by to the public,4.708608054839999,TJ,CH4,10.0,kg/TJ,47.08608054839999,kg +97a43b2b-7569-391c-9e0d-9dbee3915ad5,SESCO,II.1.1,San Juan,AR-J,annual,2015,bioetanol combustion consumption by to the public,4.708608054839999,TJ,N2O,0.6,kg/TJ,2.8251648329039996,kg +ddc91851-518a-3338-935f-96a9285741df,SESCO,II.1.1,San Luis,AR-D,annual,2015,bioetanol combustion consumption by to the public,8.596718304183,TJ,CH4,10.0,kg/TJ,85.96718304183,kg +6a7657f7-e933-3fe2-a79c-bbcd33e22b24,SESCO,II.1.1,San Luis,AR-D,annual,2015,bioetanol combustion consumption by to the public,8.596718304183,TJ,N2O,0.6,kg/TJ,5.1580309825098,kg +aa1c2de3-e8ca-3239-974a-3f5f44961eea,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2015,bioetanol combustion consumption by to the public,2.016549308232,TJ,CH4,10.0,kg/TJ,20.165493082319998,kg +d03c50a4-dc73-33c2-bd88-27e59edf06e1,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2015,bioetanol combustion consumption by to the public,2.016549308232,TJ,N2O,0.6,kg/TJ,1.2099295849391998,kg +328790b5-44cc-3961-a757-3ddb7e0e5ccb,SESCO,II.1.1,Santa Fe,AR-S,annual,2015,bioetanol combustion consumption by to the public,41.883335455095,TJ,CH4,10.0,kg/TJ,418.83335455095,kg +3643a199-91a9-378a-979c-9c18e897a7ea,SESCO,II.1.1,Santa Fe,AR-S,annual,2015,bioetanol combustion consumption by to the public,41.883335455095,TJ,N2O,0.6,kg/TJ,25.130001273057,kg +e12089c0-92f7-3b23-af88-dcfca34bfbf7,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2015,bioetanol combustion consumption by to the public,5.462271170226,TJ,CH4,10.0,kg/TJ,54.62271170226,kg +2ff41c23-1d48-3e13-b3bd-2622091b4cfe,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2015,bioetanol combustion consumption by to the public,5.462271170226,TJ,N2O,0.6,kg/TJ,3.2773627021356,kg +f13db923-32a5-37b0-aa63-58776e8fdf21,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2015,bioetanol combustion consumption by to the public,4.053231677007,TJ,CH4,10.0,kg/TJ,40.53231677007,kg +47ee4fb6-0ca4-37a8-baa6-74de94cb1f23,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2015,bioetanol combustion consumption by to the public,4.053231677007,TJ,N2O,0.6,kg/TJ,2.4319390062042,kg +34178580-8de8-33d5-bbe1-0c8f47194b8b,SESCO,II.1.1,Tucuman,AR-T,annual,2015,bioetanol combustion consumption by to the public,1.349146087416,TJ,CH4,10.0,kg/TJ,13.49146087416,kg +bd9c41e7-b60a-337f-9834-16c42543b4ad,SESCO,II.1.1,Tucuman,AR-T,annual,2015,bioetanol combustion consumption by to the public,1.349146087416,TJ,N2O,0.6,kg/TJ,0.8094876524496,kg +9351aa57-8fe9-3fb8-8440-7cd842d931f5,SESCO,I.3.1,Buenos Aires,AR-B,annual,2015,bioetanol combustion consumption by petrochemical industries,31.487325209999998,TJ,CH4,10.0,kg/TJ,314.8732521,kg +edccf30e-a0e1-3810-8a3a-66520b562778,SESCO,I.3.1,Buenos Aires,AR-B,annual,2015,bioetanol combustion consumption by petrochemical industries,31.487325209999998,TJ,N2O,0.6,kg/TJ,18.892395125999997,kg +6ae3850f-695c-3f08-9ae1-e4c64f66f21c,SESCO,I.3.1,Buenos Aires,AR-B,annual,2015,bioetanol combustion consumption by petrochemical industries,2.71677159,TJ,CH4,10.0,kg/TJ,27.1677159,kg +0198c450-b0be-3b1f-8757-c2284fd26fa9,SESCO,I.3.1,Buenos Aires,AR-B,annual,2015,bioetanol combustion consumption by petrochemical industries,2.71677159,TJ,N2O,0.6,kg/TJ,1.630062954,kg +dfa7c749-3f92-3c8a-b4a7-dbf77352ecbb,SESCO,II.1.1,Buenos Aires,AR-B,annual,2015,bioetanol combustion consumption by freight transport,0.43522028999999995,TJ,CH4,10.0,kg/TJ,4.3522029,kg +3c52a800-4a48-3e4a-89a7-c4cc9d078b4b,SESCO,II.1.1,Buenos Aires,AR-B,annual,2015,bioetanol combustion consumption by freight transport,0.43522028999999995,TJ,N2O,0.6,kg/TJ,0.26113217399999994,kg +b6fe75da-21fd-3abb-a49a-8903353de518,SESCO,II.1.1,Capital Federal,AR-C,annual,2015,bioetanol combustion consumption by freight transport,0.35469494999999995,TJ,CH4,10.0,kg/TJ,3.5469494999999993,kg +5d4365f7-9122-387f-98e0-0fbe20a87c2d,SESCO,II.1.1,Capital Federal,AR-C,annual,2015,bioetanol combustion consumption by freight transport,0.35469494999999995,TJ,N2O,0.6,kg/TJ,0.21281696999999997,kg +cc9e8562-81d5-31ec-a028-1b974d641add,SESCO,II.1.1,Córdoba,AR-X,annual,2015,bioetanol combustion consumption by freight transport,0.04217994,TJ,CH4,10.0,kg/TJ,0.4217994,kg +0c8bbf8c-d2d9-3e00-9b33-a82189f34ff7,SESCO,II.1.1,Córdoba,AR-X,annual,2015,bioetanol combustion consumption by freight transport,0.04217994,TJ,N2O,0.6,kg/TJ,0.025307964,kg +93ac2963-1d1b-33c0-a677-7c0eb97a962f,SESCO,II.1.1,Santa Fe,AR-S,annual,2015,bioetanol combustion consumption by freight transport,0.9202895999999998,TJ,CH4,10.0,kg/TJ,9.202895999999999,kg +5f23f94c-44bc-33e0-9db3-78858b405a43,SESCO,II.1.1,Santa Fe,AR-S,annual,2015,bioetanol combustion consumption by freight transport,0.9202895999999998,TJ,N2O,0.6,kg/TJ,0.5521737599999998,kg +f9e3279f-20bd-3737-bbdc-5edfe6518af8,SESCO,II.1.1,Tucuman,AR-T,annual,2015,bioetanol combustion consumption by freight transport,0.0038345399999999996,TJ,CH4,10.0,kg/TJ,0.038345399999999995,kg +effc2640-cee5-3de8-bc14-265c7bca68d9,SESCO,II.1.1,Tucuman,AR-T,annual,2015,bioetanol combustion consumption by freight transport,0.0038345399999999996,TJ,N2O,0.6,kg/TJ,0.0023007239999999997,kg +d552f84e-f35c-3659-874d-049f7f481325,SESCO,II.1.1,Buenos Aires,AR-B,annual,2015,bioetanol combustion consumption by freight transport,0.31059774,TJ,CH4,10.0,kg/TJ,3.1059774,kg +1714f9fb-80b1-3593-8994-3a06fe649e04,SESCO,II.1.1,Buenos Aires,AR-B,annual,2015,bioetanol combustion consumption by freight transport,0.31059774,TJ,N2O,0.6,kg/TJ,0.186358644,kg +f3467ede-d28a-335d-a865-fea9f4a56857,SESCO,II.1.1,Capital Federal,AR-C,annual,2015,bioetanol combustion consumption by freight transport,0.33935678999999996,TJ,CH4,10.0,kg/TJ,3.3935679,kg +7f09ca6f-3e46-3f49-98da-15be9458732a,SESCO,II.1.1,Capital Federal,AR-C,annual,2015,bioetanol combustion consumption by freight transport,0.33935678999999996,TJ,N2O,0.6,kg/TJ,0.20361407399999998,kg +f3f13ef2-37c7-39d4-b2e3-7c494a1bd37a,SESCO,II.1.1,Córdoba,AR-X,annual,2015,bioetanol combustion consumption by freight transport,0.05368356,TJ,CH4,10.0,kg/TJ,0.5368356,kg +a21293e2-33d6-3fb0-ae89-3f0439020bd9,SESCO,II.1.1,Córdoba,AR-X,annual,2015,bioetanol combustion consumption by freight transport,0.05368356,TJ,N2O,0.6,kg/TJ,0.032210136,kg +f38fc082-4e13-3538-a7a0-f77483134940,SESCO,II.1.1,Santa Fe,AR-S,annual,2015,bioetanol combustion consumption by freight transport,0.05176628999999999,TJ,CH4,10.0,kg/TJ,0.5176628999999999,kg +d171df26-b08b-3196-aedf-5e2ede81eac0,SESCO,II.1.1,Santa Fe,AR-S,annual,2015,bioetanol combustion consumption by freight transport,0.05176628999999999,TJ,N2O,0.6,kg/TJ,0.031059773999999995,kg +9a223517-e8d3-30ae-991d-0b2d199ddb41,SESCO,II.1.1,Buenos Aires,AR-B,annual,2015,bioetanol combustion consumption by public passenger transport,0.015338159999999998,TJ,CH4,10.0,kg/TJ,0.15338159999999998,kg +f16fa0b0-ed21-3c82-81d1-ef18e2f7f7ef,SESCO,II.1.1,Buenos Aires,AR-B,annual,2015,bioetanol combustion consumption by public passenger transport,0.015338159999999998,TJ,N2O,0.6,kg/TJ,0.009202895999999999,kg +471fdcb0-c268-3caa-b1ca-2448f7434fdc,SESCO,II.1.1,Capital Federal,AR-C,annual,2015,bioetanol combustion consumption by public passenger transport,0.00575181,TJ,CH4,10.0,kg/TJ,0.0575181,kg +a4650199-5b08-353f-adbb-45eb52c4e9a0,SESCO,II.1.1,Capital Federal,AR-C,annual,2015,bioetanol combustion consumption by public passenger transport,0.00575181,TJ,N2O,0.6,kg/TJ,0.0034510860000000003,kg +2191c35a-a16d-3b1e-b959-14bd8b9bb1e7,SESCO,II.5.1,Córdoba,AR-X,annual,2015,bioetanol combustion consumption by agriculture machines,0.392184480672,TJ,CH4,10.0,kg/TJ,3.9218448067200002,kg +6888a96b-7d43-332d-b520-0784181bb0a3,SESCO,II.5.1,Córdoba,AR-X,annual,2015,bioetanol combustion consumption by agriculture machines,0.392184480672,TJ,N2O,0.6,kg/TJ,0.2353106884032,kg +8348aa2b-ca84-3fee-bf6c-e94139b05011,SESCO,II.5.1,Santa Fe,AR-S,annual,2015,bioetanol combustion consumption by agriculture machines,0.8204897529630001,TJ,CH4,10.0,kg/TJ,8.204897529630001,kg +3c3cf2ed-b6c8-36b4-b374-213167cdc9e5,SESCO,II.5.1,Santa Fe,AR-S,annual,2015,bioetanol combustion consumption by agriculture machines,0.8204897529630001,TJ,N2O,0.6,kg/TJ,0.49229385177780005,kg +0d9887b0-3ed4-30f2-81b6-85a6ebc1b3c8,SESCO,II.5.1,Santiago del Estero,AR-G,annual,2015,bioetanol combustion consumption by agriculture machines,0.897530646465,TJ,CH4,10.0,kg/TJ,8.97530646465,kg +939c05df-f720-3f40-918c-581f470e8813,SESCO,II.5.1,Santiago del Estero,AR-G,annual,2015,bioetanol combustion consumption by agriculture machines,0.897530646465,TJ,N2O,0.6,kg/TJ,0.538518387879,kg +9cc0cdcc-8c7d-33c7-949d-d010cc1196aa,SESCO,II.5.1,Santa Fe,AR-S,annual,2015,bioetanol combustion consumption by agriculture machines,0.06451019196300001,TJ,CH4,10.0,kg/TJ,0.6451019196300001,kg +4bc860fc-04f5-362a-9b29-f40c868af162,SESCO,II.5.1,Santa Fe,AR-S,annual,2015,bioetanol combustion consumption by agriculture machines,0.06451019196300001,TJ,N2O,0.6,kg/TJ,0.0387061151778,kg +9efeb790-984e-34ad-9edc-9619f883735d,SESCO,II.1.1,Buenos Aires,AR-B,annual,2015,bioetanol combustion consumption by to the public,114.244219093302,TJ,CH4,10.0,kg/TJ,1142.44219093302,kg +9a4913d1-b675-3db9-b3c2-77a1ffe0509d,SESCO,II.1.1,Buenos Aires,AR-B,annual,2015,bioetanol combustion consumption by to the public,114.244219093302,TJ,N2O,0.6,kg/TJ,68.5465314559812,kg +997473b4-2f26-3878-b5c8-96394c2a8c5e,SESCO,II.1.1,Capital Federal,AR-C,annual,2015,bioetanol combustion consumption by to the public,13.320355455098998,TJ,CH4,10.0,kg/TJ,133.20355455098996,kg +ad090ac2-ff8c-39db-9d14-5ea6c26eff0f,SESCO,II.1.1,Capital Federal,AR-C,annual,2015,bioetanol combustion consumption by to the public,13.320355455098998,TJ,N2O,0.6,kg/TJ,7.992213273059399,kg +c5569aba-3cf5-3a85-bc3a-d015ff216778,SESCO,II.1.1,Catamarca,AR-K,annual,2015,bioetanol combustion consumption by to the public,11.026421466803999,TJ,CH4,10.0,kg/TJ,110.26421466803998,kg +72bfdbf3-b991-31e4-a4e9-9bddceaffefd,SESCO,II.1.1,Catamarca,AR-K,annual,2015,bioetanol combustion consumption by to the public,11.026421466803999,TJ,N2O,0.6,kg/TJ,6.615852880082399,kg +62ac9626-fff6-314b-89b1-58889e3da889,SESCO,II.1.1,Chaco,AR-H,annual,2015,bioetanol combustion consumption by to the public,18.588552886845,TJ,CH4,10.0,kg/TJ,185.88552886845002,kg +27d7c08c-f2c1-35f2-a11a-36cd424e6dcd,SESCO,II.1.1,Chaco,AR-H,annual,2015,bioetanol combustion consumption by to the public,18.588552886845,TJ,N2O,0.6,kg/TJ,11.153131732107001,kg +9eb094bc-20ff-3f97-b629-8e9dde38def1,SESCO,II.1.1,Corrientes,AR-W,annual,2015,bioetanol combustion consumption by to the public,19.517209069670997,TJ,CH4,10.0,kg/TJ,195.17209069670997,kg +24a9f680-6c97-350a-af15-407baa1420e6,SESCO,II.1.1,Corrientes,AR-W,annual,2015,bioetanol combustion consumption by to the public,19.517209069670997,TJ,N2O,0.6,kg/TJ,11.710325441802597,kg +53f5e936-5cfd-3b25-9a1d-b78236d5fd60,SESCO,II.1.1,Córdoba,AR-X,annual,2015,bioetanol combustion consumption by to the public,52.953602202621,TJ,CH4,10.0,kg/TJ,529.53602202621,kg +a02c17bd-8dac-320d-aad3-0429bf221391,SESCO,II.1.1,Córdoba,AR-X,annual,2015,bioetanol combustion consumption by to the public,52.953602202621,TJ,N2O,0.6,kg/TJ,31.772161321572597,kg +d751eb41-c898-3941-aab1-2add45d3b610,SESCO,II.1.1,Entre Rios,AR-E,annual,2015,bioetanol combustion consumption by to the public,26.641544347467,TJ,CH4,10.0,kg/TJ,266.41544347467,kg +65370a7f-438a-3415-b4bd-6d26da84277e,SESCO,II.1.1,Entre Rios,AR-E,annual,2015,bioetanol combustion consumption by to the public,26.641544347467,TJ,N2O,0.6,kg/TJ,15.9849266084802,kg +5641902f-8e21-3fd5-86b0-6f6787f95c56,SESCO,II.1.1,Jujuy,AR-Y,annual,2015,bioetanol combustion consumption by to the public,3.617752555557,TJ,CH4,10.0,kg/TJ,36.17752555557,kg +bef2b9ed-e1af-38dc-b411-98480c8c3f92,SESCO,II.1.1,Jujuy,AR-Y,annual,2015,bioetanol combustion consumption by to the public,3.617752555557,TJ,N2O,0.6,kg/TJ,2.1706515333342,kg +9cd9c6c4-6b1f-312e-b6f2-e3584562df91,SESCO,II.1.1,La Pampa,AR-L,annual,2015,bioetanol combustion consumption by to the public,0.8325355769189999,TJ,CH4,10.0,kg/TJ,8.325355769189999,kg +1ebda260-4665-3922-a823-066745c98d54,SESCO,II.1.1,La Pampa,AR-L,annual,2015,bioetanol combustion consumption by to the public,0.8325355769189999,TJ,N2O,0.6,kg/TJ,0.4995213461513999,kg +680cf062-8eb8-396c-a3ea-be1c34d2e6a6,SESCO,II.1.1,La Rioja,AR-F,annual,2015,bioetanol combustion consumption by to the public,3.427052445369,TJ,CH4,10.0,kg/TJ,34.27052445369,kg +5d0693b1-4cbb-3d42-8a1b-90eb871ca1b4,SESCO,II.1.1,La Rioja,AR-F,annual,2015,bioetanol combustion consumption by to the public,3.427052445369,TJ,N2O,0.6,kg/TJ,2.0562314672214,kg +edce10e8-481c-3093-8b6f-a599c37dea7c,SESCO,II.1.1,Mendoza,AR-M,annual,2015,bioetanol combustion consumption by to the public,18.463488597836996,TJ,CH4,10.0,kg/TJ,184.63488597836997,kg +bc2ba191-5a25-3d4e-92e9-85ef8e38c1aa,SESCO,II.1.1,Mendoza,AR-M,annual,2015,bioetanol combustion consumption by to the public,18.463488597836996,TJ,N2O,0.6,kg/TJ,11.078093158702197,kg +825daf90-7105-3d96-b5b5-dc745e69532c,SESCO,II.1.1,Misiones,AR-N,annual,2015,bioetanol combustion consumption by to the public,16.033527370673998,TJ,CH4,10.0,kg/TJ,160.33527370673997,kg +d422ec0b-913a-3f83-b7b2-89844cf56268,SESCO,II.1.1,Misiones,AR-N,annual,2015,bioetanol combustion consumption by to the public,16.033527370673998,TJ,N2O,0.6,kg/TJ,9.620116422404399,kg +dec5c2dc-9385-330e-99ec-e1b46c66a519,SESCO,II.1.1,Salta,AR-A,annual,2015,bioetanol combustion consumption by to the public,3.142941406965,TJ,CH4,10.0,kg/TJ,31.42941406965,kg +322cce4b-e4dc-30af-a5a1-a74d2aaf9ab8,SESCO,II.1.1,Salta,AR-A,annual,2015,bioetanol combustion consumption by to the public,3.142941406965,TJ,N2O,0.6,kg/TJ,1.8857648441789998,kg +29702cd1-f516-3a75-8107-6d95d66b60c4,SESCO,II.1.1,San Juan,AR-J,annual,2015,bioetanol combustion consumption by to the public,15.797604612995997,TJ,CH4,10.0,kg/TJ,157.97604612995997,kg +1decd549-f9dc-3901-8534-35b1f89fc1b9,SESCO,II.1.1,San Juan,AR-J,annual,2015,bioetanol combustion consumption by to the public,15.797604612995997,TJ,N2O,0.6,kg/TJ,9.478562767797598,kg +f220923a-80ff-3508-8c68-3180fe6268d9,SESCO,II.1.1,San Luis,AR-D,annual,2015,bioetanol combustion consumption by to the public,8.928961255575,TJ,CH4,10.0,kg/TJ,89.28961255575001,kg +6b55bfe6-fc7e-34e1-a0cc-7b11a51f85f2,SESCO,II.1.1,San Luis,AR-D,annual,2015,bioetanol combustion consumption by to the public,8.928961255575,TJ,N2O,0.6,kg/TJ,5.357376753345,kg +308080e1-68e6-3139-bf65-0d253a0f191f,SESCO,II.1.1,Santa Fe,AR-S,annual,2015,bioetanol combustion consumption by to the public,64.170316551465,TJ,CH4,10.0,kg/TJ,641.7031655146501,kg +fc46231b-5e35-32d6-bbc1-e0acf3d61563,SESCO,II.1.1,Santa Fe,AR-S,annual,2015,bioetanol combustion consumption by to the public,64.170316551465,TJ,N2O,0.6,kg/TJ,38.502189930879005,kg +118c2970-74a6-3e0d-a677-f20706402b1a,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2015,bioetanol combustion consumption by to the public,11.772097427097,TJ,CH4,10.0,kg/TJ,117.72097427097,kg +bd491730-3277-31e5-932f-82ed4ee41235,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2015,bioetanol combustion consumption by to the public,11.772097427097,TJ,N2O,0.6,kg/TJ,7.0632584562581995,kg +2673e50e-aaa5-3d47-8532-718fd84dbc72,SESCO,II.1.1,Tucuman,AR-T,annual,2015,bioetanol combustion consumption by to the public,13.020050387367,TJ,CH4,10.0,kg/TJ,130.20050387367002,kg +2e5f17b1-0421-33b8-b18f-553b37f00312,SESCO,II.1.1,Tucuman,AR-T,annual,2015,bioetanol combustion consumption by to the public,13.020050387367,TJ,N2O,0.6,kg/TJ,7.8120302324202,kg +25497de8-5933-3a17-bc99-a77224b40f39,SESCO,II.1.1,Buenos Aires,AR-B,annual,2015,bioetanol combustion consumption by to the public,22.142143043216997,TJ,CH4,10.0,kg/TJ,221.42143043216998,kg +fd0ff609-83ff-36a7-b545-1be59464c245,SESCO,II.1.1,Buenos Aires,AR-B,annual,2015,bioetanol combustion consumption by to the public,22.142143043216997,TJ,N2O,0.6,kg/TJ,13.285285825930197,kg +dfc5dcca-24ff-371e-9ea9-30f299717f57,SESCO,II.1.1,Capital Federal,AR-C,annual,2015,bioetanol combustion consumption by to the public,4.338132438924,TJ,CH4,10.0,kg/TJ,43.38132438924,kg +64cdf1a4-e8a9-3c4a-891d-38b2e879d5f0,SESCO,II.1.1,Capital Federal,AR-C,annual,2015,bioetanol combustion consumption by to the public,4.338132438924,TJ,N2O,0.6,kg/TJ,2.6028794633544,kg +7a743371-c0bd-3ce1-95be-96b175e9c25a,SESCO,II.1.1,Catamarca,AR-K,annual,2015,bioetanol combustion consumption by to the public,1.1876996828879998,TJ,CH4,10.0,kg/TJ,11.876996828879998,kg +efc84dee-7b24-3732-ac51-7fdd9cfb6fa2,SESCO,II.1.1,Catamarca,AR-K,annual,2015,bioetanol combustion consumption by to the public,1.1876996828879998,TJ,N2O,0.6,kg/TJ,0.7126198097327998,kg +c077ff60-a231-3ec2-9112-02a2f78065a2,SESCO,II.1.1,Chaco,AR-H,annual,2015,bioetanol combustion consumption by to the public,1.9762005528089999,TJ,CH4,10.0,kg/TJ,19.76200552809,kg +c1c34b8b-37b4-3df2-b95d-6b8416302faa,SESCO,II.1.1,Chaco,AR-H,annual,2015,bioetanol combustion consumption by to the public,1.9762005528089999,TJ,N2O,0.6,kg/TJ,1.1857203316854,kg +dccc2aa6-467d-3612-b6cd-6fe52b3065b9,SESCO,II.1.1,Corrientes,AR-W,annual,2015,bioetanol combustion consumption by to the public,4.744139861114999,TJ,CH4,10.0,kg/TJ,47.44139861114999,kg +02f34783-ce4e-3fb7-b409-5bfff4b65977,SESCO,II.1.1,Corrientes,AR-W,annual,2015,bioetanol combustion consumption by to the public,4.744139861114999,TJ,N2O,0.6,kg/TJ,2.8464839166689995,kg +02ba2285-7724-3670-bb41-62c5339e13e1,SESCO,II.1.1,Córdoba,AR-X,annual,2015,bioetanol combustion consumption by to the public,10.264156519562999,TJ,CH4,10.0,kg/TJ,102.64156519563,kg +f2a1fba6-8a06-3728-9eac-0d6051e000a1,SESCO,II.1.1,Córdoba,AR-X,annual,2015,bioetanol combustion consumption by to the public,10.264156519562999,TJ,N2O,0.6,kg/TJ,6.158493911737799,kg +19e99da8-8d90-3132-b149-2718b8c23151,SESCO,II.1.1,Entre Rios,AR-E,annual,2015,bioetanol combustion consumption by to the public,5.816048323076999,TJ,CH4,10.0,kg/TJ,58.16048323076999,kg +261b868e-f9a7-3aa9-bd40-2075d2efa749,SESCO,II.1.1,Entre Rios,AR-E,annual,2015,bioetanol combustion consumption by to the public,5.816048323076999,TJ,N2O,0.6,kg/TJ,3.4896289938461993,kg +d92ce651-7cdd-3c3c-9e93-37a9586551f4,SESCO,II.1.1,Jujuy,AR-Y,annual,2015,bioetanol combustion consumption by to the public,0.12576466773899997,TJ,CH4,10.0,kg/TJ,1.2576466773899997,kg +6c1cb373-afbd-3528-961a-8471d90fecd6,SESCO,II.1.1,Jujuy,AR-Y,annual,2015,bioetanol combustion consumption by to the public,0.12576466773899997,TJ,N2O,0.6,kg/TJ,0.07545880064339998,kg +3a67a268-45be-3c86-b7a1-b9cad579df14,SESCO,II.1.1,La Pampa,AR-L,annual,2015,bioetanol combustion consumption by to the public,0.16962432798599997,TJ,CH4,10.0,kg/TJ,1.6962432798599996,kg +8e0e478d-d7ff-32be-a616-68d71440d2e9,SESCO,II.1.1,La Pampa,AR-L,annual,2015,bioetanol combustion consumption by to the public,0.16962432798599997,TJ,N2O,0.6,kg/TJ,0.10177459679159997,kg +8d867a97-fc1a-37cf-8664-a5f51df90a46,SESCO,II.1.1,La Rioja,AR-F,annual,2015,bioetanol combustion consumption by to the public,0.412077499011,TJ,CH4,10.0,kg/TJ,4.12077499011,kg +ccd055bc-70ad-3774-9a98-f554d3351314,SESCO,II.1.1,La Rioja,AR-F,annual,2015,bioetanol combustion consumption by to the public,0.412077499011,TJ,N2O,0.6,kg/TJ,0.24724649940659998,kg +0e91a490-8ed9-3eca-bfe9-a0b103c7710c,SESCO,II.1.1,Mendoza,AR-M,annual,2015,bioetanol combustion consumption by to the public,3.135959476533,TJ,CH4,10.0,kg/TJ,31.359594765329998,kg +223de2b4-4ebf-38f1-a802-0f459cac5b48,SESCO,II.1.1,Mendoza,AR-M,annual,2015,bioetanol combustion consumption by to the public,3.135959476533,TJ,N2O,0.6,kg/TJ,1.8815756859197998,kg +db15c609-f693-3306-af5e-5501efffa22d,SESCO,II.1.1,Misiones,AR-N,annual,2015,bioetanol combustion consumption by to the public,2.5271852219549995,TJ,CH4,10.0,kg/TJ,25.271852219549995,kg +052f297a-1e0e-3d61-b5bc-7fe2fe6083ce,SESCO,II.1.1,Misiones,AR-N,annual,2015,bioetanol combustion consumption by to the public,2.5271852219549995,TJ,N2O,0.6,kg/TJ,1.5163111331729997,kg +47fbb211-7a42-3cfc-9612-b13746ac2f65,SESCO,II.1.1,Salta,AR-A,annual,2015,bioetanol combustion consumption by to the public,0.10663644840299998,TJ,CH4,10.0,kg/TJ,1.0663644840299997,kg +f7ff5b8e-7b59-3092-936a-907b02ee536c,SESCO,II.1.1,Salta,AR-A,annual,2015,bioetanol combustion consumption by to the public,0.10663644840299998,TJ,N2O,0.6,kg/TJ,0.06398186904179998,kg +e5d1de16-2463-3042-9353-0dd8dbbcb9fa,SESCO,II.1.1,San Juan,AR-J,annual,2015,bioetanol combustion consumption by to the public,3.306533236623,TJ,CH4,10.0,kg/TJ,33.065332366229995,kg +0848c8d1-5bb6-3918-8709-b176a3f6e207,SESCO,II.1.1,San Juan,AR-J,annual,2015,bioetanol combustion consumption by to the public,3.306533236623,TJ,N2O,0.6,kg/TJ,1.9839199419737998,kg +18b557e7-f310-39c2-a724-2a6d42d0fc48,SESCO,II.1.1,San Luis,AR-D,annual,2015,bioetanol combustion consumption by to the public,2.5064608753439996,TJ,CH4,10.0,kg/TJ,25.064608753439998,kg +3654152d-c2b2-3467-861d-bd2f7e2dec35,SESCO,II.1.1,San Luis,AR-D,annual,2015,bioetanol combustion consumption by to the public,2.5064608753439996,TJ,N2O,0.6,kg/TJ,1.5038765252063997,kg +b36a619a-9bc0-380d-beca-4fbf5325f5dd,SESCO,II.1.1,Santa Fe,AR-S,annual,2015,bioetanol combustion consumption by to the public,13.792267691450999,TJ,CH4,10.0,kg/TJ,137.92267691451,kg +224c356c-1ff4-3450-af2e-1fbfe233982b,SESCO,II.1.1,Santa Fe,AR-S,annual,2015,bioetanol combustion consumption by to the public,13.792267691450999,TJ,N2O,0.6,kg/TJ,8.275360614870598,kg +7ee8cffd-9c11-3cd3-ae61-426481f55108,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2015,bioetanol combustion consumption by to the public,1.6097178433949997,TJ,CH4,10.0,kg/TJ,16.097178433949995,kg +752102a4-862b-32f7-8a7c-4a93061d0923,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2015,bioetanol combustion consumption by to the public,1.6097178433949997,TJ,N2O,0.6,kg/TJ,0.9658307060369997,kg +6a5f446a-ee99-3954-9419-28fb94e81e38,SESCO,II.1.1,Tucuman,AR-T,annual,2015,bioetanol combustion consumption by to the public,1.540406615625,TJ,CH4,10.0,kg/TJ,15.40406615625,kg +b5535f8d-f274-3d7a-92cf-76d27ecc39c7,SESCO,II.1.1,Tucuman,AR-T,annual,2015,bioetanol combustion consumption by to the public,1.540406615625,TJ,N2O,0.6,kg/TJ,0.924243969375,kg +31bc5bad-5c80-351b-8b43-6aacfe4f27d1,SESCO,II.5.1,Buenos Aires,AR-B,annual,2015,bioetanol combustion consumption by agriculture machines,0.49439491127999996,TJ,CH4,10.0,kg/TJ,4.9439491127999995,kg +8e32500f-4f46-3aef-b5e9-0309e0d958f1,SESCO,II.5.1,Buenos Aires,AR-B,annual,2015,bioetanol combustion consumption by agriculture machines,0.49439491127999996,TJ,N2O,0.6,kg/TJ,0.29663694676799995,kg +25470cbf-3651-305b-93c2-2202fafce647,SESCO,II.5.1,Rio Negro,AR-R,annual,2015,bioetanol combustion consumption by agriculture machines,0.013167810359999999,TJ,CH4,10.0,kg/TJ,0.13167810359999998,kg +4af36fec-5bd6-3b35-94a7-ada685a68ef3,SESCO,II.5.1,Rio Negro,AR-R,annual,2015,bioetanol combustion consumption by agriculture machines,0.013167810359999999,TJ,N2O,0.6,kg/TJ,0.007900686216,kg +a15272fc-acca-3311-8d06-5000620898cc,SESCO,II.1.1,Buenos Aires,AR-B,annual,2015,bioetanol combustion consumption by to the public,262.29304839140997,TJ,CH4,10.0,kg/TJ,2622.9304839140996,kg +261d0478-2101-382b-bcdc-d39a104416da,SESCO,II.1.1,Buenos Aires,AR-B,annual,2015,bioetanol combustion consumption by to the public,262.29304839140997,TJ,N2O,0.6,kg/TJ,157.37582903484596,kg +c87223e9-fb63-37e7-a7cd-6e8e93df7a31,SESCO,II.1.1,Capital Federal,AR-C,annual,2015,bioetanol combustion consumption by to the public,27.80533663209,TJ,CH4,10.0,kg/TJ,278.0533663209,kg +6a3b1b82-f00b-3d71-849e-0fdc05e9a123,SESCO,II.1.1,Capital Federal,AR-C,annual,2015,bioetanol combustion consumption by to the public,27.80533663209,TJ,N2O,0.6,kg/TJ,16.683201979254,kg +20cbff6e-ac4c-3d56-8cbb-25513b3e382c,SESCO,II.1.1,Chaco,AR-H,annual,2015,bioetanol combustion consumption by to the public,0.06483248504999999,TJ,CH4,10.0,kg/TJ,0.6483248504999999,kg +7f462fb2-6c67-3864-9a37-992a5b7d5844,SESCO,II.1.1,Chaco,AR-H,annual,2015,bioetanol combustion consumption by to the public,0.06483248504999999,TJ,N2O,0.6,kg/TJ,0.03889949102999999,kg +7ad09442-73b1-3716-b839-9795e9cc9530,SESCO,II.1.1,Chubut,AR-U,annual,2015,bioetanol combustion consumption by to the public,89.56849289814,TJ,CH4,10.0,kg/TJ,895.6849289813999,kg +ce8eb8fc-6a08-39ad-8706-893cb64158e2,SESCO,II.1.1,Chubut,AR-U,annual,2015,bioetanol combustion consumption by to the public,89.56849289814,TJ,N2O,0.6,kg/TJ,53.74109573888399,kg +3ec1e9e1-976a-3782-8434-bd652d8826c7,SESCO,II.1.1,Córdoba,AR-X,annual,2015,bioetanol combustion consumption by to the public,31.219777850579995,TJ,CH4,10.0,kg/TJ,312.19777850579993,kg +b1254f06-44be-3012-8c41-d187979aa62e,SESCO,II.1.1,Córdoba,AR-X,annual,2015,bioetanol combustion consumption by to the public,31.219777850579995,TJ,N2O,0.6,kg/TJ,18.731866710347997,kg +8440f11e-e9e3-3ed1-a62c-54d35c92886b,SESCO,II.1.1,Entre Rios,AR-E,annual,2015,bioetanol combustion consumption by to the public,6.769322444429999,TJ,CH4,10.0,kg/TJ,67.6932244443,kg +419f98a4-77d4-34cc-8a67-880f660f8bcd,SESCO,II.1.1,Entre Rios,AR-E,annual,2015,bioetanol combustion consumption by to the public,6.769322444429999,TJ,N2O,0.6,kg/TJ,4.061593466658,kg +eaa6fab4-9f86-3f61-8f36-fd99436679ce,SESCO,II.1.1,La Pampa,AR-L,annual,2015,bioetanol combustion consumption by to the public,13.065420472919998,TJ,CH4,10.0,kg/TJ,130.6542047292,kg +814fbf1e-71aa-3a5a-9564-7de46c1bee89,SESCO,II.1.1,La Pampa,AR-L,annual,2015,bioetanol combustion consumption by to the public,13.065420472919998,TJ,N2O,0.6,kg/TJ,7.839252283751998,kg +2e36fd15-ada2-3a2d-9cee-4480eaf25ee5,SESCO,II.1.1,Mendoza,AR-M,annual,2015,bioetanol combustion consumption by to the public,1.2512391610499998,TJ,CH4,10.0,kg/TJ,12.512391610499998,kg +d1d09797-d576-3151-86a6-ff0ad55b0c06,SESCO,II.1.1,Mendoza,AR-M,annual,2015,bioetanol combustion consumption by to the public,1.2512391610499998,TJ,N2O,0.6,kg/TJ,0.7507434966299998,kg +242869ef-98cb-3912-b269-7a5a4c2d2f4c,SESCO,II.1.1,Neuquén,AR-Q,annual,2015,bioetanol combustion consumption by to the public,34.965252989999996,TJ,CH4,10.0,kg/TJ,349.6525299,kg +4e56c1fc-072a-3b1e-9122-cf5425c0c4f5,SESCO,II.1.1,Neuquén,AR-Q,annual,2015,bioetanol combustion consumption by to the public,34.965252989999996,TJ,N2O,0.6,kg/TJ,20.979151793999996,kg +cf7a9a80-7d21-3cbe-bace-e0a617b30ab0,SESCO,II.1.1,Rio Negro,AR-R,annual,2015,bioetanol combustion consumption by to the public,73.57632525935999,TJ,CH4,10.0,kg/TJ,735.7632525935999,kg +f952bb79-e2ec-3d6c-9750-9ac25c25bc98,SESCO,II.1.1,Rio Negro,AR-R,annual,2015,bioetanol combustion consumption by to the public,73.57632525935999,TJ,N2O,0.6,kg/TJ,44.14579515561599,kg +ff35a464-ddf3-318c-8850-8b96d9c60d4d,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2015,bioetanol combustion consumption by to the public,51.78642516954,TJ,CH4,10.0,kg/TJ,517.8642516954001,kg +cd914b5d-8683-3464-ae77-c42a56f1e60b,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2015,bioetanol combustion consumption by to the public,51.78642516954,TJ,N2O,0.6,kg/TJ,31.071855101724,kg +50c86f1e-9472-3d95-9902-a90376cc9b03,SESCO,II.1.1,Santa Fe,AR-S,annual,2015,bioetanol combustion consumption by to the public,33.50324258604,TJ,CH4,10.0,kg/TJ,335.03242586040005,kg +6976942e-7d6c-3339-8479-3015abb85ba4,SESCO,II.1.1,Santa Fe,AR-S,annual,2015,bioetanol combustion consumption by to the public,33.50324258604,TJ,N2O,0.6,kg/TJ,20.101945551624002,kg +2902a354-359e-3059-9a2d-6df9ce23c50a,SESCO,II.1.1,Buenos Aires,AR-B,annual,2015,bioetanol combustion consumption by to the public,74.08041963957,TJ,CH4,10.0,kg/TJ,740.8041963956999,kg +8ee179a8-53aa-3a89-ab28-66001c099594,SESCO,II.1.1,Buenos Aires,AR-B,annual,2015,bioetanol combustion consumption by to the public,74.08041963957,TJ,N2O,0.6,kg/TJ,44.448251783741995,kg +66ad78e0-106c-3da3-8ace-e0f11437d07b,SESCO,II.1.1,Capital Federal,AR-C,annual,2015,bioetanol combustion consumption by to the public,14.716069154909999,TJ,CH4,10.0,kg/TJ,147.1606915491,kg +d0feecc5-bf59-340f-8bf5-5a2bd6b875a0,SESCO,II.1.1,Capital Federal,AR-C,annual,2015,bioetanol combustion consumption by to the public,14.716069154909999,TJ,N2O,0.6,kg/TJ,8.829641492946,kg +31e9ab15-69c1-33ca-9e3a-3577ff70053f,SESCO,II.1.1,Chubut,AR-U,annual,2015,bioetanol combustion consumption by to the public,18.57986669511,TJ,CH4,10.0,kg/TJ,185.7986669511,kg +4875b47a-cf28-3903-8dde-0caea1a466ce,SESCO,II.1.1,Chubut,AR-U,annual,2015,bioetanol combustion consumption by to the public,18.57986669511,TJ,N2O,0.6,kg/TJ,11.147920017066,kg +00170451-b009-350b-8fbf-3f47077be5dd,SESCO,II.1.1,Córdoba,AR-X,annual,2015,bioetanol combustion consumption by to the public,7.668834589439999,TJ,CH4,10.0,kg/TJ,76.68834589439999,kg +edaacd73-0f2b-33ec-a17b-8bf87d06a9ca,SESCO,II.1.1,Córdoba,AR-X,annual,2015,bioetanol combustion consumption by to the public,7.668834589439999,TJ,N2O,0.6,kg/TJ,4.601300753664,kg +86569d58-7193-315f-8faa-4e6979402f2c,SESCO,II.1.1,Entre Rios,AR-E,annual,2015,bioetanol combustion consumption by to the public,2.26611535923,TJ,CH4,10.0,kg/TJ,22.6611535923,kg +71aca02b-4226-38fc-9964-7ef115e0a8fe,SESCO,II.1.1,Entre Rios,AR-E,annual,2015,bioetanol combustion consumption by to the public,2.26611535923,TJ,N2O,0.6,kg/TJ,1.359669215538,kg +f8741bb3-26f1-3d5b-b1f9-6f97f3e77712,SESCO,II.1.1,La Pampa,AR-L,annual,2015,bioetanol combustion consumption by to the public,3.9161543493599997,TJ,CH4,10.0,kg/TJ,39.1615434936,kg +b73fe742-68b4-37b4-a061-6cccd5a46bf8,SESCO,II.1.1,La Pampa,AR-L,annual,2015,bioetanol combustion consumption by to the public,3.9161543493599997,TJ,N2O,0.6,kg/TJ,2.3496926096159996,kg +78cd1391-95b4-334d-8966-46b2f6457fbc,SESCO,II.1.1,Mendoza,AR-M,annual,2015,bioetanol combustion consumption by to the public,0.23305758939,TJ,CH4,10.0,kg/TJ,2.3305758939,kg +80fe8dc4-653e-3b03-9184-1aaf2ad43d23,SESCO,II.1.1,Mendoza,AR-M,annual,2015,bioetanol combustion consumption by to the public,0.23305758939,TJ,N2O,0.6,kg/TJ,0.139834553634,kg +22d7cdd9-f744-3603-b166-8460ce06d05a,SESCO,II.1.1,Neuquén,AR-Q,annual,2015,bioetanol combustion consumption by to the public,13.52090438955,TJ,CH4,10.0,kg/TJ,135.2090438955,kg +ee67d6e8-700a-3de1-97be-bda7335860a5,SESCO,II.1.1,Neuquén,AR-Q,annual,2015,bioetanol combustion consumption by to the public,13.52090438955,TJ,N2O,0.6,kg/TJ,8.11254263373,kg +bc3c244a-c217-3141-8e22-9685ebbdd045,SESCO,II.1.1,Rio Negro,AR-R,annual,2015,bioetanol combustion consumption by to the public,14.0965167753,TJ,CH4,10.0,kg/TJ,140.965167753,kg +b383840c-8796-3117-9a5f-dfd20952db59,SESCO,II.1.1,Rio Negro,AR-R,annual,2015,bioetanol combustion consumption by to the public,14.0965167753,TJ,N2O,0.6,kg/TJ,8.45791006518,kg +707d55b1-653a-39fc-85fc-b2e48a9e117b,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2015,bioetanol combustion consumption by to the public,11.63120281488,TJ,CH4,10.0,kg/TJ,116.3120281488,kg +87e1449e-b52d-3ab6-b592-925ae573c726,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2015,bioetanol combustion consumption by to the public,11.63120281488,TJ,N2O,0.6,kg/TJ,6.978721688928,kg +2ea47508-2ef7-3842-8746-8a70c21db6f9,SESCO,II.1.1,Santa Fe,AR-S,annual,2015,bioetanol combustion consumption by to the public,11.64675379185,TJ,CH4,10.0,kg/TJ,116.4675379185,kg +df23dbce-fe14-350d-9ed4-0d374c844781,SESCO,II.1.1,Santa Fe,AR-S,annual,2015,bioetanol combustion consumption by to the public,11.64675379185,TJ,N2O,0.6,kg/TJ,6.988052275109999,kg +d214aea4-7e7f-3204-9031-277903727c13,SESCO,II.1.1,Buenos Aires,AR-B,annual,2015,bioetanol combustion consumption by to the public,23.702825555999993,TJ,CH4,10.0,kg/TJ,237.02825555999993,kg +7a180b2a-367d-3356-8f30-6e9e89948e94,SESCO,II.1.1,Buenos Aires,AR-B,annual,2015,bioetanol combustion consumption by to the public,23.702825555999993,TJ,N2O,0.6,kg/TJ,14.221695333599996,kg +b3536235-f3c4-3448-a243-68b5e52df6e7,SESCO,II.1.1,Capital Federal,AR-C,annual,2015,bioetanol combustion consumption by to the public,0.9567177299999999,TJ,CH4,10.0,kg/TJ,9.567177299999999,kg +4a3a4e3d-3f46-3e83-9e9b-9958241eee63,SESCO,II.1.1,Capital Federal,AR-C,annual,2015,bioetanol combustion consumption by to the public,0.9567177299999999,TJ,N2O,0.6,kg/TJ,0.574030638,kg +afba4b54-bbda-35af-8345-19892f1d96e7,SESCO,II.1.1,Córdoba,AR-X,annual,2015,bioetanol combustion consumption by to the public,6.04515231,TJ,CH4,10.0,kg/TJ,60.451523099999996,kg +b688f10f-449e-38a4-a6cb-f9a905240374,SESCO,II.1.1,Córdoba,AR-X,annual,2015,bioetanol combustion consumption by to the public,6.04515231,TJ,N2O,0.6,kg/TJ,3.6270913859999996,kg +1ea34266-4a3f-3ec2-978f-225ce5e607bf,SESCO,II.1.1,Entre Rios,AR-E,annual,2015,bioetanol combustion consumption by to the public,1.5491541599999998,TJ,CH4,10.0,kg/TJ,15.491541599999998,kg +34955abc-1cdc-3d66-afb3-17a8acdb9515,SESCO,II.1.1,Entre Rios,AR-E,annual,2015,bioetanol combustion consumption by to the public,1.5491541599999998,TJ,N2O,0.6,kg/TJ,0.9294924959999998,kg +29446c4a-9224-3a2b-8a0a-208ab74e289f,SESCO,II.1.1,Salta,AR-A,annual,2015,bioetanol combustion consumption by to the public,0.24732782999999997,TJ,CH4,10.0,kg/TJ,2.4732782999999996,kg +3f14718c-5d31-3c7f-92d2-d8d56916e94e,SESCO,II.1.1,Salta,AR-A,annual,2015,bioetanol combustion consumption by to the public,0.24732782999999997,TJ,N2O,0.6,kg/TJ,0.14839669799999997,kg +efd587de-9abd-3cd7-aa00-cd9c0339b7b0,SESCO,II.1.1,Santa Fe,AR-S,annual,2015,bioetanol combustion consumption by to the public,1.03340853,TJ,CH4,10.0,kg/TJ,10.3340853,kg +c7a53f8b-1916-3b8c-b38f-b03c373d442d,SESCO,II.1.1,Santa Fe,AR-S,annual,2015,bioetanol combustion consumption by to the public,1.03340853,TJ,N2O,0.6,kg/TJ,0.620045118,kg +3fb0240b-b42d-382d-bf73-7f9c7bb1bdcd,SESCO,II.1.1,Buenos Aires,AR-B,annual,2015,bioetanol combustion consumption by to the public,3.778363989,TJ,CH4,10.0,kg/TJ,37.783639889999996,kg +8acfd7e0-176e-3995-b45f-3481ee93ac63,SESCO,II.1.1,Buenos Aires,AR-B,annual,2015,bioetanol combustion consumption by to the public,3.778363989,TJ,N2O,0.6,kg/TJ,2.2670183934,kg +f0fc4ad2-ad97-328b-9612-27fbb181a981,SESCO,II.1.1,Capital Federal,AR-C,annual,2015,bioetanol combustion consumption by to the public,0.09394623,TJ,CH4,10.0,kg/TJ,0.9394623000000001,kg +0e97db1d-ea84-3552-ad68-f5fee60760f2,SESCO,II.1.1,Capital Federal,AR-C,annual,2015,bioetanol combustion consumption by to the public,0.09394623,TJ,N2O,0.6,kg/TJ,0.056367738,kg +4975d2ed-506a-3303-ab22-a268ae967390,SESCO,II.1.1,Córdoba,AR-X,annual,2015,bioetanol combustion consumption by to the public,0.38537127,TJ,CH4,10.0,kg/TJ,3.8537127,kg +216f1326-717c-3827-8417-02b4b7fce83e,SESCO,II.1.1,Córdoba,AR-X,annual,2015,bioetanol combustion consumption by to the public,0.38537127,TJ,N2O,0.6,kg/TJ,0.23122276199999997,kg +0e4a615f-2bc0-30f3-b196-09c9447e1d35,SESCO,II.1.1,Entre Rios,AR-E,annual,2015,bioetanol combustion consumption by to the public,0.12270527999999999,TJ,CH4,10.0,kg/TJ,1.2270527999999998,kg +2cf75b5e-f70d-376b-bddd-965b34114a97,SESCO,II.1.1,Entre Rios,AR-E,annual,2015,bioetanol combustion consumption by to the public,0.12270527999999999,TJ,N2O,0.6,kg/TJ,0.07362316799999999,kg +f2341f4d-50cf-3487-bf32-5b1245fc4739,SESCO,II.1.1,Santa Fe,AR-S,annual,2015,bioetanol combustion consumption by to the public,0.14379524999999999,TJ,CH4,10.0,kg/TJ,1.4379524999999997,kg +9bf0988d-acc7-39a4-8686-a4cb6a13881e,SESCO,II.1.1,Santa Fe,AR-S,annual,2015,bioetanol combustion consumption by to the public,0.14379524999999999,TJ,N2O,0.6,kg/TJ,0.08627714999999998,kg +229acd1c-0cff-3797-bd23-f0988f5934a0,SESCO,II.1.1,Catamarca,AR-K,annual,2015,bioetanol combustion consumption by to the public,0.015338159999999998,TJ,CH4,10.0,kg/TJ,0.15338159999999998,kg +82516b25-c776-3630-909b-f1c68a3c2c39,SESCO,II.1.1,Catamarca,AR-K,annual,2015,bioetanol combustion consumption by to the public,0.015338159999999998,TJ,N2O,0.6,kg/TJ,0.009202895999999999,kg +c6187f40-7182-381d-ae1d-7d749dde6704,SESCO,II.1.1,Jujuy,AR-Y,annual,2015,bioetanol combustion consumption by to the public,0.1342089,TJ,CH4,10.0,kg/TJ,1.3420889999999999,kg +ee0a4959-6fa0-3165-84cd-e4a8a068632c,SESCO,II.1.1,Jujuy,AR-Y,annual,2015,bioetanol combustion consumption by to the public,0.1342089,TJ,N2O,0.6,kg/TJ,0.08052533999999999,kg +c81d100d-afdc-37eb-961d-d10cdeabb38b,SESCO,II.1.1,Salta,AR-A,annual,2015,bioetanol combustion consumption by to the public,0.9527681537999999,TJ,CH4,10.0,kg/TJ,9.527681538,kg +2ca5f981-2ec5-30d8-a49a-8adccf1a11c7,SESCO,II.1.1,Salta,AR-A,annual,2015,bioetanol combustion consumption by to the public,0.9527681537999999,TJ,N2O,0.6,kg/TJ,0.5716608922799999,kg +8d5cd22b-1204-359a-860c-16cafe66da67,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2015,bioetanol combustion consumption by to the public,0.02108997,TJ,CH4,10.0,kg/TJ,0.2108997,kg +4299b15b-e977-3b1c-861b-fc1e29338fbe,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2015,bioetanol combustion consumption by to the public,0.02108997,TJ,N2O,0.6,kg/TJ,0.012653982,kg +930cec90-8705-337c-bd79-97860aafa7b4,SESCO,II.1.1,Tucuman,AR-T,annual,2015,bioetanol combustion consumption by to the public,0.08627715,TJ,CH4,10.0,kg/TJ,0.8627715,kg +bdbb567a-0340-366d-964e-59a3ea3e1fb0,SESCO,II.1.1,Tucuman,AR-T,annual,2015,bioetanol combustion consumption by to the public,0.08627715,TJ,N2O,0.6,kg/TJ,0.05176629,kg +02e8068c-fc01-3da3-bc64-1acc425cc0d1,SESCO,II.1.1,Catamarca,AR-K,annual,2015,bioetanol combustion consumption by to the public,15.5244036078,TJ,CH4,10.0,kg/TJ,155.244036078,kg +3b938a8d-1412-33d6-b9ea-3f15c8c46716,SESCO,II.1.1,Catamarca,AR-K,annual,2015,bioetanol combustion consumption by to the public,15.5244036078,TJ,N2O,0.6,kg/TJ,9.31464216468,kg +f1f081e7-0500-3e79-ae0a-958528430b7d,SESCO,II.1.1,Chaco,AR-H,annual,2015,bioetanol combustion consumption by to the public,6.0747549588,TJ,CH4,10.0,kg/TJ,60.747549588,kg +937fe45c-221e-3601-8d9f-c084abfdef50,SESCO,II.1.1,Chaco,AR-H,annual,2015,bioetanol combustion consumption by to the public,6.0747549588,TJ,N2O,0.6,kg/TJ,3.6448529752799996,kg +aa8c4364-7f65-332b-add5-d67a1c036b5e,SESCO,II.1.1,Córdoba,AR-X,annual,2015,bioetanol combustion consumption by to the public,0.05372190539999999,TJ,CH4,10.0,kg/TJ,0.5372190539999999,kg +6fa73984-0411-3968-a130-133d84ffeeca,SESCO,II.1.1,Córdoba,AR-X,annual,2015,bioetanol combustion consumption by to the public,0.05372190539999999,TJ,N2O,0.6,kg/TJ,0.03223314323999999,kg +f0b8cecf-0c6c-30e7-a873-ed327d1fa9b7,SESCO,II.1.1,Jujuy,AR-Y,annual,2015,bioetanol combustion consumption by to the public,35.590455564299994,TJ,CH4,10.0,kg/TJ,355.9045556429999,kg +8fd6b6fe-85e8-3a85-9fbb-f87a52ad1e31,SESCO,II.1.1,Jujuy,AR-Y,annual,2015,bioetanol combustion consumption by to the public,35.590455564299994,TJ,N2O,0.6,kg/TJ,21.354273338579997,kg +bae0ff9e-be6a-386e-a1d3-268f5a022c2c,SESCO,II.1.1,La Rioja,AR-F,annual,2015,bioetanol combustion consumption by to the public,18.183714615899998,TJ,CH4,10.0,kg/TJ,181.83714615899999,kg +3957a0ab-8608-308f-8317-0654e793f790,SESCO,II.1.1,La Rioja,AR-F,annual,2015,bioetanol combustion consumption by to the public,18.183714615899998,TJ,N2O,0.6,kg/TJ,10.910228769539998,kg +43b34514-01d6-362f-a910-3c0bcb49873d,SESCO,II.1.1,Salta,AR-A,annual,2015,bioetanol combustion consumption by to the public,68.0970781971,TJ,CH4,10.0,kg/TJ,680.9707819710001,kg +0e64fd66-0e56-31ca-9ab1-464cf50d872f,SESCO,II.1.1,Salta,AR-A,annual,2015,bioetanol combustion consumption by to the public,68.0970781971,TJ,N2O,0.6,kg/TJ,40.85824691826,kg +6301be2b-b405-31f2-8e21-f741fe22003b,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2015,bioetanol combustion consumption by to the public,19.0863269865,TJ,CH4,10.0,kg/TJ,190.863269865,kg +85e47efd-58e3-3d15-9b68-1cf07df377eb,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2015,bioetanol combustion consumption by to the public,19.0863269865,TJ,N2O,0.6,kg/TJ,11.4517961919,kg +065a7acf-a3fb-3c27-8841-d2b7f3ba1a98,SESCO,II.1.1,Tucuman,AR-T,annual,2015,bioetanol combustion consumption by to the public,107.15932627739998,TJ,CH4,10.0,kg/TJ,1071.5932627739999,kg +9fcc634d-4f77-39a8-b875-b0083afae50a,SESCO,II.1.1,Tucuman,AR-T,annual,2015,bioetanol combustion consumption by to the public,107.15932627739998,TJ,N2O,0.6,kg/TJ,64.29559576643999,kg +527110b7-1519-39b0-84e2-946859915651,SESCO,II.1.1,Catamarca,AR-K,annual,2015,bioetanol combustion consumption by to the public,1.2621771864,TJ,CH4,10.0,kg/TJ,12.621771864,kg +999f25f4-eda4-30cb-9336-c3966e8025ae,SESCO,II.1.1,Catamarca,AR-K,annual,2015,bioetanol combustion consumption by to the public,1.2621771864,TJ,N2O,0.6,kg/TJ,0.75730631184,kg +b8a79de4-d6e2-3d09-b427-9f97dcec1882,SESCO,II.1.1,Chaco,AR-H,annual,2015,bioetanol combustion consumption by to the public,0.08435988,TJ,CH4,10.0,kg/TJ,0.8435988,kg +86ff8ed8-5423-3930-b8a2-983706abfb41,SESCO,II.1.1,Chaco,AR-H,annual,2015,bioetanol combustion consumption by to the public,0.08435988,TJ,N2O,0.6,kg/TJ,0.050615928,kg +46f0d620-9eca-3c33-881c-0cffdd8daba9,SESCO,II.1.1,Córdoba,AR-X,annual,2015,bioetanol combustion consumption by to the public,0.022738822199999998,TJ,CH4,10.0,kg/TJ,0.22738822199999997,kg +68559e4d-ea18-3bc7-8277-bc4e5ff63d67,SESCO,II.1.1,Córdoba,AR-X,annual,2015,bioetanol combustion consumption by to the public,0.022738822199999998,TJ,N2O,0.6,kg/TJ,0.013643293319999998,kg +5c85944a-ea01-3f08-b882-6960157d739e,SESCO,II.1.1,Jujuy,AR-Y,annual,2015,bioetanol combustion consumption by to the public,1.9567465892999996,TJ,CH4,10.0,kg/TJ,19.567465892999994,kg +7f9bec12-ba7d-3b76-8426-9d1440b1e433,SESCO,II.1.1,Jujuy,AR-Y,annual,2015,bioetanol combustion consumption by to the public,1.9567465892999996,TJ,N2O,0.6,kg/TJ,1.1740479535799997,kg +d05295ec-a101-304f-8b1f-43102abfda66,SESCO,II.1.1,La Rioja,AR-F,annual,2015,bioetanol combustion consumption by to the public,0.7610603265,TJ,CH4,10.0,kg/TJ,7.610603265,kg +b968809d-d76c-3e6d-9ce0-0a12c48d076e,SESCO,II.1.1,La Rioja,AR-F,annual,2015,bioetanol combustion consumption by to the public,0.7610603265,TJ,N2O,0.6,kg/TJ,0.4566361959,kg +772a7592-b9d6-3ee6-ab72-a268ec59c977,SESCO,II.1.1,Salta,AR-A,annual,2015,bioetanol combustion consumption by to the public,3.7923792326999997,TJ,CH4,10.0,kg/TJ,37.923792326999994,kg +f2f862fb-b2cf-3a4f-9174-fffa2fd6d22c,SESCO,II.1.1,Salta,AR-A,annual,2015,bioetanol combustion consumption by to the public,3.7923792326999997,TJ,N2O,0.6,kg/TJ,2.27542753962,kg +5dc803b6-2da7-3b8a-8f0b-af5b56f9441a,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2015,bioetanol combustion consumption by to the public,1.8471937815,TJ,CH4,10.0,kg/TJ,18.471937815,kg +6e3826ee-8687-3033-a7b0-387581e97c33,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2015,bioetanol combustion consumption by to the public,1.8471937815,TJ,N2O,0.6,kg/TJ,1.1083162689,kg +f85a2e31-7d93-3325-bb63-345dbc0bf52e,SESCO,II.1.1,Tucuman,AR-T,annual,2015,bioetanol combustion consumption by to the public,6.8392663713,TJ,CH4,10.0,kg/TJ,68.392663713,kg +bbc61a55-417d-3619-8162-1ecaab6650d1,SESCO,II.1.1,Tucuman,AR-T,annual,2015,bioetanol combustion consumption by to the public,6.8392663713,TJ,N2O,0.6,kg/TJ,4.103559822779999,kg +210cb43b-f483-3096-af15-a1a626573a0d,SESCO,II.5.1,Santa Fe,AR-S,annual,2015,bioetanol combustion consumption by agriculture machines,2.1205006199999996,TJ,CH4,10.0,kg/TJ,21.205006199999996,kg +5610b264-bed6-3300-af73-efe4dc404760,SESCO,II.5.1,Santa Fe,AR-S,annual,2015,bioetanol combustion consumption by agriculture machines,2.1205006199999996,TJ,N2O,0.6,kg/TJ,1.2723003719999997,kg +75403023-e4c2-36e8-afef-0752d5b01fc1,SESCO,II.5.1,Santa Fe,AR-S,annual,2015,bioetanol combustion consumption by agriculture machines,0.35469494999999995,TJ,CH4,10.0,kg/TJ,3.5469494999999993,kg +17929829-c464-3606-b806-25ee40ee9aa3,SESCO,II.5.1,Santa Fe,AR-S,annual,2015,bioetanol combustion consumption by agriculture machines,0.35469494999999995,TJ,N2O,0.6,kg/TJ,0.21281696999999997,kg +de2d0e09-ef62-3a8c-ad0b-74ba7c0ed36e,SESCO,II.1.1,Buenos Aires,AR-B,annual,2015,bioetanol combustion consumption by to the public,1.6891148699999998,TJ,CH4,10.0,kg/TJ,16.8911487,kg +30092756-4a9a-3c35-a4f0-6386eb18fd0c,SESCO,II.1.1,Buenos Aires,AR-B,annual,2015,bioetanol combustion consumption by to the public,1.6891148699999998,TJ,N2O,0.6,kg/TJ,1.013468922,kg +6cfaab90-321c-30a4-9876-3bece879b2f5,SESCO,II.1.1,Entre Rios,AR-E,annual,2015,bioetanol combustion consumption by to the public,1.4149452599999999,TJ,CH4,10.0,kg/TJ,14.149452599999998,kg +3af7104c-b9a6-3e3e-a138-bbd400171e63,SESCO,II.1.1,Entre Rios,AR-E,annual,2015,bioetanol combustion consumption by to the public,1.4149452599999999,TJ,N2O,0.6,kg/TJ,0.848967156,kg +240127d7-057b-32a0-9ef8-b2139c268a34,SESCO,II.1.1,Buenos Aires,AR-B,annual,2015,bioetanol combustion consumption by to the public,799.02994158,TJ,CH4,10.0,kg/TJ,7990.2994158,kg +eaba8519-cc1d-3f38-ae53-86936559cdcf,SESCO,II.1.1,Buenos Aires,AR-B,annual,2015,bioetanol combustion consumption by to the public,799.02994158,TJ,N2O,0.6,kg/TJ,479.41796494799996,kg +b0d68d4c-aa01-3424-960c-58aefc757985,SESCO,II.1.1,Capital Federal,AR-C,annual,2015,bioetanol combustion consumption by to the public,252.75178682999996,TJ,CH4,10.0,kg/TJ,2527.5178682999995,kg +b2ab0e8e-ecde-3a3a-bd51-35573a387162,SESCO,II.1.1,Capital Federal,AR-C,annual,2015,bioetanol combustion consumption by to the public,252.75178682999996,TJ,N2O,0.6,kg/TJ,151.65107209799996,kg +e638a7dc-4db9-3c18-9b74-4d045416e7dc,SESCO,II.1.1,Catamarca,AR-K,annual,2015,bioetanol combustion consumption by to the public,3.15199188,TJ,CH4,10.0,kg/TJ,31.519918800000003,kg +932379c3-918f-3059-9d60-5801db100ef3,SESCO,II.1.1,Catamarca,AR-K,annual,2015,bioetanol combustion consumption by to the public,3.15199188,TJ,N2O,0.6,kg/TJ,1.8911951280000001,kg +cf507c03-ff5a-3c42-9927-e66e2c9368a2,SESCO,II.1.1,Chaco,AR-H,annual,2015,bioetanol combustion consumption by to the public,47.06706122999999,TJ,CH4,10.0,kg/TJ,470.6706122999999,kg +fb32e6f2-2e09-3cd6-bdb8-656f673117cf,SESCO,II.1.1,Chaco,AR-H,annual,2015,bioetanol combustion consumption by to the public,47.06706122999999,TJ,N2O,0.6,kg/TJ,28.240236737999997,kg +37cfe000-8da2-38d8-9a93-4ea4ae683044,SESCO,II.1.1,Corrientes,AR-W,annual,2015,bioetanol combustion consumption by to the public,50.09826509999999,TJ,CH4,10.0,kg/TJ,500.9826509999999,kg +75a34c83-ae6a-3074-ac31-fcbf845a90db,SESCO,II.1.1,Corrientes,AR-W,annual,2015,bioetanol combustion consumption by to the public,50.09826509999999,TJ,N2O,0.6,kg/TJ,30.058959059999992,kg +ec5d66e0-dce8-320d-a009-724f4b79aa7a,SESCO,II.1.1,Córdoba,AR-X,annual,2015,bioetanol combustion consumption by to the public,160.10163135,TJ,CH4,10.0,kg/TJ,1601.0163134999998,kg +1195749b-8115-3a9c-95e4-85a9413fa9c2,SESCO,II.1.1,Córdoba,AR-X,annual,2015,bioetanol combustion consumption by to the public,160.10163135,TJ,N2O,0.6,kg/TJ,96.06097881,kg +9b55c415-3e6b-3eef-bbbb-cdc867695c5f,SESCO,II.1.1,Entre Rios,AR-E,annual,2015,bioetanol combustion consumption by to the public,49.271921729999995,TJ,CH4,10.0,kg/TJ,492.71921729999997,kg +75b6f1c1-f68e-39db-a84d-85e55bc8d42b,SESCO,II.1.1,Entre Rios,AR-E,annual,2015,bioetanol combustion consumption by to the public,49.271921729999995,TJ,N2O,0.6,kg/TJ,29.563153037999996,kg +184208dc-71d1-3ada-b3f9-93af3e4e66af,SESCO,II.1.1,Formosa,AR-P,annual,2015,bioetanol combustion consumption by to the public,25.022290769999998,TJ,CH4,10.0,kg/TJ,250.22290769999998,kg +84dcfb68-4b50-3ffd-8a84-2d1af0273759,SESCO,II.1.1,Formosa,AR-P,annual,2015,bioetanol combustion consumption by to the public,25.022290769999998,TJ,N2O,0.6,kg/TJ,15.013374461999998,kg +b3a35065-32d1-3eaa-94e4-8c4e941aa313,SESCO,II.1.1,Jujuy,AR-Y,annual,2015,bioetanol combustion consumption by to the public,11.10674511,TJ,CH4,10.0,kg/TJ,111.0674511,kg +310c6059-6855-3447-97c3-8d39b0b5e6fd,SESCO,II.1.1,Jujuy,AR-Y,annual,2015,bioetanol combustion consumption by to the public,11.10674511,TJ,N2O,0.6,kg/TJ,6.664047066,kg +43f48b96-3d52-34c5-ae0a-19c24af164c8,SESCO,II.1.1,La Pampa,AR-L,annual,2015,bioetanol combustion consumption by to the public,14.74188903,TJ,CH4,10.0,kg/TJ,147.4188903,kg +f06ba077-7369-3443-931d-e26e2c0b563e,SESCO,II.1.1,La Pampa,AR-L,annual,2015,bioetanol combustion consumption by to the public,14.74188903,TJ,N2O,0.6,kg/TJ,8.845133418,kg +ba01ab1c-8133-3fdf-b815-e782ebecd2dd,SESCO,II.1.1,La Rioja,AR-F,annual,2015,bioetanol combustion consumption by to the public,15.869243789999999,TJ,CH4,10.0,kg/TJ,158.6924379,kg +b1d77cfc-085f-3c07-994c-a9b8753b7560,SESCO,II.1.1,La Rioja,AR-F,annual,2015,bioetanol combustion consumption by to the public,15.869243789999999,TJ,N2O,0.6,kg/TJ,9.521546273999999,kg +85030887-528e-34b0-a104-efc99c3691e8,SESCO,II.1.1,Mendoza,AR-M,annual,2015,bioetanol combustion consumption by to the public,39.179412449999994,TJ,CH4,10.0,kg/TJ,391.79412449999995,kg +4eb07f9c-a9d4-3e94-8b96-0552725c992f,SESCO,II.1.1,Mendoza,AR-M,annual,2015,bioetanol combustion consumption by to the public,39.179412449999994,TJ,N2O,0.6,kg/TJ,23.507647469999995,kg +c1eac1c9-564e-3813-837d-a28cf6e4aefe,SESCO,II.1.1,Misiones,AR-N,annual,2015,bioetanol combustion consumption by to the public,67.81767443999999,TJ,CH4,10.0,kg/TJ,678.1767444,kg +cfe88853-ebd0-34e6-bc3c-abd1935782fd,SESCO,II.1.1,Misiones,AR-N,annual,2015,bioetanol combustion consumption by to the public,67.81767443999999,TJ,N2O,0.6,kg/TJ,40.69060466399999,kg +311551bb-df44-38b3-aa16-9f6a0f134df6,SESCO,II.1.1,Neuquén,AR-Q,annual,2015,bioetanol combustion consumption by to the public,24.713610299999996,TJ,CH4,10.0,kg/TJ,247.13610299999996,kg +304d24c1-2f10-3b09-96fb-717cc1685693,SESCO,II.1.1,Neuquén,AR-Q,annual,2015,bioetanol combustion consumption by to the public,24.713610299999996,TJ,N2O,0.6,kg/TJ,14.828166179999997,kg +d83f33fd-8ebb-30b0-9b71-0a0eb5d36d9b,SESCO,II.1.1,Rio Negro,AR-R,annual,2015,bioetanol combustion consumption by to the public,8.119638449999998,TJ,CH4,10.0,kg/TJ,81.19638449999998,kg +bf12a750-b805-352b-9807-924716a48e9d,SESCO,II.1.1,Rio Negro,AR-R,annual,2015,bioetanol combustion consumption by to the public,8.119638449999998,TJ,N2O,0.6,kg/TJ,4.871783069999998,kg +80682a06-53b8-38e4-af53-ee34d5871c5b,SESCO,II.1.1,Salta,AR-A,annual,2015,bioetanol combustion consumption by to the public,13.451566319999998,TJ,CH4,10.0,kg/TJ,134.51566319999998,kg +20fda14d-1f86-3218-910f-b6bdd969b866,SESCO,II.1.1,Salta,AR-A,annual,2015,bioetanol combustion consumption by to the public,13.451566319999998,TJ,N2O,0.6,kg/TJ,8.070939791999999,kg +932e2e4f-aef7-3539-a7cc-97ee7b0758be,SESCO,II.1.1,San Juan,AR-J,annual,2015,bioetanol combustion consumption by to the public,11.083737869999998,TJ,CH4,10.0,kg/TJ,110.83737869999999,kg +0a941fb7-b269-3ce8-ac1a-26ef4659825f,SESCO,II.1.1,San Juan,AR-J,annual,2015,bioetanol combustion consumption by to the public,11.083737869999998,TJ,N2O,0.6,kg/TJ,6.650242721999999,kg +e8933788-6369-3fc2-a779-a0e924cac1dc,SESCO,II.1.1,San Luis,AR-D,annual,2015,bioetanol combustion consumption by to the public,1.3056608699999999,TJ,CH4,10.0,kg/TJ,13.056608699999998,kg +9e99728d-9a3a-31df-a739-ad8ec8a27cdd,SESCO,II.1.1,San Luis,AR-D,annual,2015,bioetanol combustion consumption by to the public,1.3056608699999999,TJ,N2O,0.6,kg/TJ,0.7833965219999999,kg +823da591-f8b6-3fa0-899b-eb51f48815d0,SESCO,II.1.1,Santa Fe,AR-S,annual,2015,bioetanol combustion consumption by to the public,197.27174483999997,TJ,CH4,10.0,kg/TJ,1972.7174483999997,kg +e906628d-6c91-392e-937f-5243c3ae87ff,SESCO,II.1.1,Santa Fe,AR-S,annual,2015,bioetanol combustion consumption by to the public,197.27174483999997,TJ,N2O,0.6,kg/TJ,118.36304690399997,kg +f4934c08-64cc-3266-81b9-6027f53ce2e7,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2015,bioetanol combustion consumption by to the public,19.76321916,TJ,CH4,10.0,kg/TJ,197.6321916,kg +45aa09d8-8318-301b-bc25-fb5a67ab0a49,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2015,bioetanol combustion consumption by to the public,19.76321916,TJ,N2O,0.6,kg/TJ,11.857931495999999,kg +c2025050-ef32-3b9e-bef7-63ecc00262d5,SESCO,II.1.1,Tucuman,AR-T,annual,2015,bioetanol combustion consumption by to the public,46.89258965999999,TJ,CH4,10.0,kg/TJ,468.92589659999993,kg +a877a471-b621-3ee1-aab7-9210330218ce,SESCO,II.1.1,Tucuman,AR-T,annual,2015,bioetanol combustion consumption by to the public,46.89258965999999,TJ,N2O,0.6,kg/TJ,28.135553795999993,kg +d48ba357-1b8d-3515-9473-cb9d1d9655fa,SESCO,II.1.1,Buenos Aires,AR-B,annual,2015,bioetanol combustion consumption by to the public,437.06086919999996,TJ,CH4,10.0,kg/TJ,4370.608692,kg +7fc9e8c2-7239-3ae8-9c72-15a46241e902,SESCO,II.1.1,Buenos Aires,AR-B,annual,2015,bioetanol combustion consumption by to the public,437.06086919999996,TJ,N2O,0.6,kg/TJ,262.23652151999994,kg +5595a7b9-6f20-3c27-8dd0-223bfb0fe7de,SESCO,II.1.1,Capital Federal,AR-C,annual,2015,bioetanol combustion consumption by to the public,182.01794471999997,TJ,CH4,10.0,kg/TJ,1820.1794471999997,kg +082d302a-64d1-377f-a22b-10aa720e1f03,SESCO,II.1.1,Capital Federal,AR-C,annual,2015,bioetanol combustion consumption by to the public,182.01794471999997,TJ,N2O,0.6,kg/TJ,109.21076683199998,kg +e3a61a8d-7f78-3651-ba17-41f385f1476c,SESCO,II.1.1,Catamarca,AR-K,annual,2015,bioetanol combustion consumption by to the public,2.3697457199999996,TJ,CH4,10.0,kg/TJ,23.697457199999995,kg +9718e20f-025d-36f5-9799-7131ce6e79f9,SESCO,II.1.1,Catamarca,AR-K,annual,2015,bioetanol combustion consumption by to the public,2.3697457199999996,TJ,N2O,0.6,kg/TJ,1.4218474319999996,kg +5c2e0f75-9922-3e66-9948-4e3f77e1615f,SESCO,II.1.1,Chaco,AR-H,annual,2015,bioetanol combustion consumption by to the public,18.49206915,TJ,CH4,10.0,kg/TJ,184.92069149999998,kg +0341ffd7-c7d9-3963-a7f1-2eba9741be3e,SESCO,II.1.1,Chaco,AR-H,annual,2015,bioetanol combustion consumption by to the public,18.49206915,TJ,N2O,0.6,kg/TJ,11.09524149,kg +86446fca-7c89-364e-8495-e94f48256642,SESCO,II.1.1,Corrientes,AR-W,annual,2015,bioetanol combustion consumption by to the public,21.632557409999997,TJ,CH4,10.0,kg/TJ,216.32557409999998,kg +2356a1f8-2077-37ba-b57a-e1441349e805,SESCO,II.1.1,Corrientes,AR-W,annual,2015,bioetanol combustion consumption by to the public,21.632557409999997,TJ,N2O,0.6,kg/TJ,12.979534445999997,kg +cabc1006-0e2f-313c-a41e-70f1b6ba3ed4,SESCO,II.1.1,Córdoba,AR-X,annual,2015,bioetanol combustion consumption by to the public,68.63634873,TJ,CH4,10.0,kg/TJ,686.3634873,kg +23901f5d-36f9-3fdd-ba93-9bba9c522c73,SESCO,II.1.1,Córdoba,AR-X,annual,2015,bioetanol combustion consumption by to the public,68.63634873,TJ,N2O,0.6,kg/TJ,41.18180923799999,kg +c2637c58-116e-392c-b6a3-e126090f6c30,SESCO,II.1.1,Entre Rios,AR-E,annual,2015,bioetanol combustion consumption by to the public,23.356183139999995,TJ,CH4,10.0,kg/TJ,233.56183139999996,kg +b2e6828b-e71f-3162-8eb5-4344d69d1517,SESCO,II.1.1,Entre Rios,AR-E,annual,2015,bioetanol combustion consumption by to the public,23.356183139999995,TJ,N2O,0.6,kg/TJ,14.013709883999997,kg +5a60fbe0-d44f-373d-9230-8934dbd47197,SESCO,II.1.1,Formosa,AR-P,annual,2015,bioetanol combustion consumption by to the public,10.84791366,TJ,CH4,10.0,kg/TJ,108.4791366,kg +b772c500-74da-3a76-a7b4-a1b5f861b36d,SESCO,II.1.1,Formosa,AR-P,annual,2015,bioetanol combustion consumption by to the public,10.84791366,TJ,N2O,0.6,kg/TJ,6.508748196,kg +162c6852-84a4-3397-b2db-ca9339d44a00,SESCO,II.1.1,Jujuy,AR-Y,annual,2015,bioetanol combustion consumption by to the public,2.32948305,TJ,CH4,10.0,kg/TJ,23.2948305,kg +7ec3b89c-da1c-33eb-b2ba-ce7ad320d6b9,SESCO,II.1.1,Jujuy,AR-Y,annual,2015,bioetanol combustion consumption by to the public,2.32948305,TJ,N2O,0.6,kg/TJ,1.3976898299999998,kg +0f89937f-e5d0-35e6-89fd-dfb7ae143965,SESCO,II.1.1,La Pampa,AR-L,annual,2015,bioetanol combustion consumption by to the public,7.249197869999999,TJ,CH4,10.0,kg/TJ,72.49197869999999,kg +a8f52fd2-2fbe-393c-9592-4c9868affc28,SESCO,II.1.1,La Pampa,AR-L,annual,2015,bioetanol combustion consumption by to the public,7.249197869999999,TJ,N2O,0.6,kg/TJ,4.349518721999999,kg +5ae29c24-45d5-323e-b2e8-acbbd1d7bf8a,SESCO,II.1.1,La Rioja,AR-F,annual,2015,bioetanol combustion consumption by to the public,4.97531565,TJ,CH4,10.0,kg/TJ,49.753156499999996,kg +c20c9781-237e-3e7d-9dde-aca00fbfbd22,SESCO,II.1.1,La Rioja,AR-F,annual,2015,bioetanol combustion consumption by to the public,4.97531565,TJ,N2O,0.6,kg/TJ,2.98518939,kg +8c1a8d3c-3960-395c-8fb5-27ee2c48f65b,SESCO,II.1.1,Mendoza,AR-M,annual,2015,bioetanol combustion consumption by to the public,21.85112619,TJ,CH4,10.0,kg/TJ,218.5112619,kg +61d401d9-a7fc-32c8-9505-f4880cf1aa10,SESCO,II.1.1,Mendoza,AR-M,annual,2015,bioetanol combustion consumption by to the public,21.85112619,TJ,N2O,0.6,kg/TJ,13.110675714,kg +8e827378-a63e-3879-98f9-660681008938,SESCO,II.1.1,Misiones,AR-N,annual,2015,bioetanol combustion consumption by to the public,19.45453869,TJ,CH4,10.0,kg/TJ,194.54538689999998,kg +7db66cdb-2f57-3192-ba61-91c6776d952f,SESCO,II.1.1,Misiones,AR-N,annual,2015,bioetanol combustion consumption by to the public,19.45453869,TJ,N2O,0.6,kg/TJ,11.672723214,kg +db075939-e7fd-3b97-9dab-8b2f62690cb3,SESCO,II.1.1,Neuquén,AR-Q,annual,2015,bioetanol combustion consumption by to the public,15.524135189999999,TJ,CH4,10.0,kg/TJ,155.24135189999998,kg +e6931e24-c3cf-3cd5-9c5f-29d64de9a6d8,SESCO,II.1.1,Neuquén,AR-Q,annual,2015,bioetanol combustion consumption by to the public,15.524135189999999,TJ,N2O,0.6,kg/TJ,9.314481114,kg +8258f737-3b0d-3d86-bb19-0e447c9812ca,SESCO,II.1.1,Rio Negro,AR-R,annual,2015,bioetanol combustion consumption by to the public,4.217994,TJ,CH4,10.0,kg/TJ,42.17994,kg +e0c8e846-020d-3797-b665-79e5f810e077,SESCO,II.1.1,Rio Negro,AR-R,annual,2015,bioetanol combustion consumption by to the public,4.217994,TJ,N2O,0.6,kg/TJ,2.5307964,kg +df8595cb-6790-3f9d-8e74-329fcaf2f860,SESCO,II.1.1,Salta,AR-A,annual,2015,bioetanol combustion consumption by to the public,4.703063309999999,TJ,CH4,10.0,kg/TJ,47.03063309999999,kg +3ef6fb92-686c-3b4d-8bf5-4ae18c8a76bb,SESCO,II.1.1,Salta,AR-A,annual,2015,bioetanol combustion consumption by to the public,4.703063309999999,TJ,N2O,0.6,kg/TJ,2.8218379859999994,kg +89f2f9a4-b24c-3de1-ae6c-a451515a1a09,SESCO,II.1.1,San Juan,AR-J,annual,2015,bioetanol combustion consumption by to the public,2.09749338,TJ,CH4,10.0,kg/TJ,20.9749338,kg +86e9dda5-c6ac-38eb-af72-4bb7771c8790,SESCO,II.1.1,San Juan,AR-J,annual,2015,bioetanol combustion consumption by to the public,2.09749338,TJ,N2O,0.6,kg/TJ,1.258496028,kg +9f6b0775-801b-3460-81a4-a06535f31215,SESCO,II.1.1,San Luis,AR-D,annual,2015,bioetanol combustion consumption by to the public,1.43220069,TJ,CH4,10.0,kg/TJ,14.3220069,kg +9c14a7fe-31a0-314b-b646-b2f1bba40e5a,SESCO,II.1.1,San Luis,AR-D,annual,2015,bioetanol combustion consumption by to the public,1.43220069,TJ,N2O,0.6,kg/TJ,0.8593204139999999,kg +2ee58b0c-1cdb-3ad8-a6aa-556c860cdcf2,SESCO,II.1.1,Santa Fe,AR-S,annual,2015,bioetanol combustion consumption by to the public,95.75996741999998,TJ,CH4,10.0,kg/TJ,957.5996741999998,kg +e6166d6f-2f3c-3aee-bf77-0f2edc4d31eb,SESCO,II.1.1,Santa Fe,AR-S,annual,2015,bioetanol combustion consumption by to the public,95.75996741999998,TJ,N2O,0.6,kg/TJ,57.455980451999984,kg +6fdcf702-f75a-35a9-ac87-cb2e1346447d,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2015,bioetanol combustion consumption by to the public,9.016920809999998,TJ,CH4,10.0,kg/TJ,90.16920809999999,kg +8743e9f5-4f6b-3d41-b8af-40396ef45363,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2015,bioetanol combustion consumption by to the public,9.016920809999998,TJ,N2O,0.6,kg/TJ,5.4101524859999985,kg +0a42bd75-b572-3ae9-bd43-97c9c2f536af,SESCO,II.1.1,Tucuman,AR-T,annual,2015,bioetanol combustion consumption by to the public,13.84460667,TJ,CH4,10.0,kg/TJ,138.4460667,kg +025461b5-7d43-3e3d-9aaf-b225df272adb,SESCO,II.1.1,Tucuman,AR-T,annual,2015,bioetanol combustion consumption by to the public,13.84460667,TJ,N2O,0.6,kg/TJ,8.306764002,kg +e4fff9ca-a40c-3c2f-afc4-628c4ac29f58,SESCO,II.5.1,Buenos Aires,AR-B,annual,2015,bioetanol combustion consumption by agriculture machines,0.04217994,TJ,CH4,10.0,kg/TJ,0.4217994,kg +79750c50-321d-3cb5-b44d-552bb75f24a8,SESCO,II.5.1,Buenos Aires,AR-B,annual,2015,bioetanol combustion consumption by agriculture machines,0.04217994,TJ,N2O,0.6,kg/TJ,0.025307964,kg +f40ffc10-3f90-3210-b76c-6367d616590c,SESCO,II.5.1,Entre Rios,AR-E,annual,2015,bioetanol combustion consumption by agriculture machines,0.07669079999999999,TJ,CH4,10.0,kg/TJ,0.7669079999999999,kg +d7b8f586-e5e7-3994-8138-dc78dede7272,SESCO,II.5.1,Entre Rios,AR-E,annual,2015,bioetanol combustion consumption by agriculture machines,0.07669079999999999,TJ,N2O,0.6,kg/TJ,0.04601447999999999,kg +c49181ec-d5e2-323b-81a3-ab46d4956f2a,SESCO,II.5.1,Salta,AR-A,annual,2015,bioetanol combustion consumption by agriculture machines,0.019172699999999997,TJ,CH4,10.0,kg/TJ,0.19172699999999998,kg +bad8eae8-4fa7-3049-9bf1-e887941f99d9,SESCO,II.5.1,Salta,AR-A,annual,2015,bioetanol combustion consumption by agriculture machines,0.019172699999999997,TJ,N2O,0.6,kg/TJ,0.011503619999999997,kg +3cd8d66d-651a-310b-9e00-b54ce4f2d9d5,SESCO,II.5.1,Santa Fe,AR-S,annual,2015,bioetanol combustion consumption by agriculture machines,1.5951686399999998,TJ,CH4,10.0,kg/TJ,15.951686399999998,kg +8b91b207-f32e-3ad3-8060-1cd04d6ef2ee,SESCO,II.5.1,Santa Fe,AR-S,annual,2015,bioetanol combustion consumption by agriculture machines,1.5951686399999998,TJ,N2O,0.6,kg/TJ,0.9571011839999999,kg +5178b579-e6f1-3b02-8b18-dcc53cb542e6,SESCO,II.5.1,Buenos Aires,AR-B,annual,2015,bioetanol combustion consumption by agriculture machines,0.009586349999999999,TJ,CH4,10.0,kg/TJ,0.09586349999999999,kg +d4e28260-10d9-3835-bedd-316594ff1d47,SESCO,II.5.1,Buenos Aires,AR-B,annual,2015,bioetanol combustion consumption by agriculture machines,0.009586349999999999,TJ,N2O,0.6,kg/TJ,0.005751809999999999,kg +90c2466b-84db-3ee2-90bf-324f56cd567d,SESCO,II.5.1,Santa Fe,AR-S,annual,2015,bioetanol combustion consumption by agriculture machines,0.024924509999999997,TJ,CH4,10.0,kg/TJ,0.24924509999999997,kg +6e97a535-cd6f-322d-8ae2-5d7f1eb342a0,SESCO,II.5.1,Santa Fe,AR-S,annual,2015,bioetanol combustion consumption by agriculture machines,0.024924509999999997,TJ,N2O,0.6,kg/TJ,0.014954705999999998,kg +94e2ba3d-a35d-3db9-af20-d2d1883f8acf,SESCO,II.1.1,Buenos Aires,AR-B,annual,2015,bioetanol combustion consumption by to the public,2260.4594127299997,TJ,CH4,10.0,kg/TJ,22604.5941273,kg +2cfcdf04-2f84-3176-b59a-37e700cb0ad3,SESCO,II.1.1,Buenos Aires,AR-B,annual,2015,bioetanol combustion consumption by to the public,2260.4594127299997,TJ,N2O,0.6,kg/TJ,1356.2756476379998,kg +19b19b3e-c407-323a-8f9b-bab3412afcf3,SESCO,II.1.1,Capital Federal,AR-C,annual,2015,bioetanol combustion consumption by to the public,496.56334365,TJ,CH4,10.0,kg/TJ,4965.6334365,kg +04bfce94-d554-36df-94a9-876eb99fb866,SESCO,II.1.1,Capital Federal,AR-C,annual,2015,bioetanol combustion consumption by to the public,496.56334365,TJ,N2O,0.6,kg/TJ,297.93800618999995,kg +7849bd30-03c0-39af-a42e-18db9bed498c,SESCO,II.1.1,Catamarca,AR-K,annual,2015,bioetanol combustion consumption by to the public,40.93754903999999,TJ,CH4,10.0,kg/TJ,409.37549039999993,kg +d4ffb0a1-a56c-3412-ac1c-69c1f8d07f10,SESCO,II.1.1,Catamarca,AR-K,annual,2015,bioetanol combustion consumption by to the public,40.93754903999999,TJ,N2O,0.6,kg/TJ,24.562529423999994,kg +b12f94b9-06d5-3246-ac25-c3be8bf770ed,SESCO,II.1.1,Chaco,AR-H,annual,2015,bioetanol combustion consumption by to the public,136.32556608,TJ,CH4,10.0,kg/TJ,1363.2556608,kg +b210e66d-1b73-326a-8e61-9217773901cf,SESCO,II.1.1,Chaco,AR-H,annual,2015,bioetanol combustion consumption by to the public,136.32556608,TJ,N2O,0.6,kg/TJ,81.795339648,kg +ffc4697f-1b42-3b6b-8d95-0502b54627db,SESCO,II.1.1,Chubut,AR-U,annual,2015,bioetanol combustion consumption by to the public,211.92160490999999,TJ,CH4,10.0,kg/TJ,2119.2160491,kg +a5fadd28-1be0-39ce-a541-c4797259d76d,SESCO,II.1.1,Chubut,AR-U,annual,2015,bioetanol combustion consumption by to the public,211.92160490999999,TJ,N2O,0.6,kg/TJ,127.15296294599999,kg +07d56bf3-daa9-3728-aa62-72d5774a0eeb,SESCO,II.1.1,Corrientes,AR-W,annual,2015,bioetanol combustion consumption by to the public,145.18910529,TJ,CH4,10.0,kg/TJ,1451.8910529,kg +52e79279-dc06-3b99-9eb2-49dac470af91,SESCO,II.1.1,Corrientes,AR-W,annual,2015,bioetanol combustion consumption by to the public,145.18910529,TJ,N2O,0.6,kg/TJ,87.11346317399999,kg +5ad03b1f-3bf3-39e4-9201-81605a0372ea,SESCO,II.1.1,Córdoba,AR-X,annual,2015,bioetanol combustion consumption by to the public,574.7361933599999,TJ,CH4,10.0,kg/TJ,5747.361933599999,kg +a2eb1af7-aace-34c6-a101-558c4a75674a,SESCO,II.1.1,Córdoba,AR-X,annual,2015,bioetanol combustion consumption by to the public,574.7361933599999,TJ,N2O,0.6,kg/TJ,344.8417160159999,kg +d6982e5d-8ecf-3740-a133-602efe5500a7,SESCO,II.1.1,Entre Rios,AR-E,annual,2015,bioetanol combustion consumption by to the public,201.68913492,TJ,CH4,10.0,kg/TJ,2016.8913492,kg +1a4a441d-a437-3646-8295-1a79040a87d6,SESCO,II.1.1,Entre Rios,AR-E,annual,2015,bioetanol combustion consumption by to the public,201.68913492,TJ,N2O,0.6,kg/TJ,121.01348095199998,kg +9e994cbf-9a4a-39bf-98ba-474679ae3ef3,SESCO,II.1.1,Formosa,AR-P,annual,2015,bioetanol combustion consumption by to the public,47.56171689,TJ,CH4,10.0,kg/TJ,475.6171689,kg +4efb10b7-55ee-3b85-a013-acbe582190a8,SESCO,II.1.1,Formosa,AR-P,annual,2015,bioetanol combustion consumption by to the public,47.56171689,TJ,N2O,0.6,kg/TJ,28.537030134,kg +362a4ccc-9a06-333e-8145-467d230093fc,SESCO,II.1.1,Jujuy,AR-Y,annual,2015,bioetanol combustion consumption by to the public,70.51527332999999,TJ,CH4,10.0,kg/TJ,705.1527332999999,kg +58424f2d-5c83-310d-acdc-8aba0cebfebb,SESCO,II.1.1,Jujuy,AR-Y,annual,2015,bioetanol combustion consumption by to the public,70.51527332999999,TJ,N2O,0.6,kg/TJ,42.30916399799999,kg +41ebc2c6-496f-379a-b96a-0a117dfa7683,SESCO,II.1.1,La Pampa,AR-L,annual,2015,bioetanol combustion consumption by to the public,90.86709438,TJ,CH4,10.0,kg/TJ,908.6709438,kg +fe6ea7ec-f90f-3bb5-8e5e-0b94a27245b1,SESCO,II.1.1,La Pampa,AR-L,annual,2015,bioetanol combustion consumption by to the public,90.86709438,TJ,N2O,0.6,kg/TJ,54.520256628,kg +78ac4189-4cc4-3343-9ad2-21ebc36da048,SESCO,II.1.1,La Rioja,AR-F,annual,2015,bioetanol combustion consumption by to the public,61.95849732,TJ,CH4,10.0,kg/TJ,619.5849732,kg +bb932856-3e28-3b2d-b9fc-6aed31e9a0ab,SESCO,II.1.1,La Rioja,AR-F,annual,2015,bioetanol combustion consumption by to the public,61.95849732,TJ,N2O,0.6,kg/TJ,37.175098391999995,kg +365283f9-e649-3679-84ce-34d1dd2f5941,SESCO,II.1.1,Mendoza,AR-M,annual,2015,bioetanol combustion consumption by to the public,308.91437693999995,TJ,CH4,10.0,kg/TJ,3089.1437693999997,kg +3588cb1f-17b7-307f-b3c8-94552337e4fb,SESCO,II.1.1,Mendoza,AR-M,annual,2015,bioetanol combustion consumption by to the public,308.91437693999995,TJ,N2O,0.6,kg/TJ,185.34862616399997,kg +39800538-f923-3c4f-8b49-2c293fdfd39f,SESCO,II.1.1,Misiones,AR-N,annual,2015,bioetanol combustion consumption by to the public,199.06247502,TJ,CH4,10.0,kg/TJ,1990.6247501999999,kg +dd1ec394-35dc-37e5-bcc2-a5afdce393a5,SESCO,II.1.1,Misiones,AR-N,annual,2015,bioetanol combustion consumption by to the public,199.06247502,TJ,N2O,0.6,kg/TJ,119.437485012,kg +7f2a0539-8223-34f4-816a-cafaeb6e4ecb,SESCO,II.1.1,Neuquén,AR-Q,annual,2015,bioetanol combustion consumption by to the public,184.28799239999998,TJ,CH4,10.0,kg/TJ,1842.8799239999998,kg +b9dbd804-7468-3d35-9464-6a16b816990e,SESCO,II.1.1,Neuquén,AR-Q,annual,2015,bioetanol combustion consumption by to the public,184.28799239999998,TJ,N2O,0.6,kg/TJ,110.57279543999998,kg +fa2b0144-380d-3d2c-8093-b97c58d92422,SESCO,II.1.1,Rio Negro,AR-R,annual,2015,bioetanol combustion consumption by to the public,180.55890225,TJ,CH4,10.0,kg/TJ,1805.5890224999998,kg +cca11d71-1e9e-3d09-9a15-7dfb5a3fda47,SESCO,II.1.1,Rio Negro,AR-R,annual,2015,bioetanol combustion consumption by to the public,180.55890225,TJ,N2O,0.6,kg/TJ,108.33534135,kg +b593694a-6c51-3a37-bb6d-7f143be968a8,SESCO,II.1.1,Salta,AR-A,annual,2015,bioetanol combustion consumption by to the public,165.71539790999998,TJ,CH4,10.0,kg/TJ,1657.1539790999998,kg +5919fca1-4f7a-39b7-bfd3-83a57f51e20f,SESCO,II.1.1,Salta,AR-A,annual,2015,bioetanol combustion consumption by to the public,165.71539790999998,TJ,N2O,0.6,kg/TJ,99.42923874599998,kg +8b2f2936-fbb5-3410-be09-7fba3083883b,SESCO,II.1.1,San Juan,AR-J,annual,2015,bioetanol combustion consumption by to the public,100.61449505999998,TJ,CH4,10.0,kg/TJ,1006.1449505999998,kg +1a860abf-1aa0-3fe2-8d90-1ec338ef0d63,SESCO,II.1.1,San Juan,AR-J,annual,2015,bioetanol combustion consumption by to the public,100.61449505999998,TJ,N2O,0.6,kg/TJ,60.368697035999986,kg +9a3db61b-478d-3131-97ad-4d122f2304f9,SESCO,II.1.1,San Luis,AR-D,annual,2015,bioetanol combustion consumption by to the public,78.224616,TJ,CH4,10.0,kg/TJ,782.2461599999999,kg +99452489-f875-37de-bbc5-ffc5a48ae034,SESCO,II.1.1,San Luis,AR-D,annual,2015,bioetanol combustion consumption by to the public,78.224616,TJ,N2O,0.6,kg/TJ,46.934769599999996,kg +bc7f790b-f9ba-32cd-9ab7-e3cc6a401354,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2015,bioetanol combustion consumption by to the public,147.56076828,TJ,CH4,10.0,kg/TJ,1475.6076828,kg +337ba6bf-5681-36c3-85fb-774e4e60c5ab,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2015,bioetanol combustion consumption by to the public,147.56076828,TJ,N2O,0.6,kg/TJ,88.53646096799999,kg +5dace457-4377-3ad1-bce6-4c91a0b711c4,SESCO,II.1.1,Santa Fe,AR-S,annual,2015,bioetanol combustion consumption by to the public,440.36049087,TJ,CH4,10.0,kg/TJ,4403.6049087,kg +3b2b71e4-313e-3f30-b36d-0f5113eb4c10,SESCO,II.1.1,Santa Fe,AR-S,annual,2015,bioetanol combustion consumption by to the public,440.36049087,TJ,N2O,0.6,kg/TJ,264.216294522,kg +4c1280f8-0f8f-396f-abeb-375f646ab940,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2015,bioetanol combustion consumption by to the public,74.96717426999999,TJ,CH4,10.0,kg/TJ,749.6717426999999,kg +949753b4-80c4-30e1-ba0c-822d58c70dd5,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2015,bioetanol combustion consumption by to the public,74.96717426999999,TJ,N2O,0.6,kg/TJ,44.98030456199999,kg +e1baf799-8121-3ae0-a237-ed47c170eed9,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2015,bioetanol combustion consumption by to the public,112.34051837999999,TJ,CH4,10.0,kg/TJ,1123.4051838,kg +3559014a-4b2e-3ddd-b949-696177c639d3,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2015,bioetanol combustion consumption by to the public,112.34051837999999,TJ,N2O,0.6,kg/TJ,67.404311028,kg +06682f93-4ebe-322a-9136-a1682e4c0784,SESCO,II.1.1,Tucuman,AR-T,annual,2015,bioetanol combustion consumption by to the public,135.56824443,TJ,CH4,10.0,kg/TJ,1355.6824443,kg +3b2c48a2-087e-301c-9505-9e85b81a4a82,SESCO,II.1.1,Tucuman,AR-T,annual,2015,bioetanol combustion consumption by to the public,135.56824443,TJ,N2O,0.6,kg/TJ,81.340946658,kg +2efa6781-b189-36ed-9745-03caf860e33e,SESCO,II.1.1,Buenos Aires,AR-B,annual,2015,bioetanol combustion consumption by to the public,992.4594773399999,TJ,CH4,10.0,kg/TJ,9924.5947734,kg +a3efa743-ac56-38be-83f2-fafd677f337f,SESCO,II.1.1,Buenos Aires,AR-B,annual,2015,bioetanol combustion consumption by to the public,992.4594773399999,TJ,N2O,0.6,kg/TJ,595.4756864039999,kg +c1935c65-86fd-3eac-a6ca-57d2070b4c36,SESCO,II.1.1,Capital Federal,AR-C,annual,2015,bioetanol combustion consumption by to the public,241.91729406,TJ,CH4,10.0,kg/TJ,2419.1729406,kg +6339f99a-60d7-353d-a271-a0b3b348539c,SESCO,II.1.1,Capital Federal,AR-C,annual,2015,bioetanol combustion consumption by to the public,241.91729406,TJ,N2O,0.6,kg/TJ,145.150376436,kg +d8fddb18-6bc3-321e-a692-dd83521e37a0,SESCO,II.1.1,Catamarca,AR-K,annual,2015,bioetanol combustion consumption by to the public,16.74543618,TJ,CH4,10.0,kg/TJ,167.4543618,kg +6d3d3912-9c85-3cda-8c9d-8724586fad81,SESCO,II.1.1,Catamarca,AR-K,annual,2015,bioetanol combustion consumption by to the public,16.74543618,TJ,N2O,0.6,kg/TJ,10.047261707999999,kg +e73034cb-e8e5-3744-9f59-ad018f9f64fb,SESCO,II.1.1,Chaco,AR-H,annual,2015,bioetanol combustion consumption by to the public,61.632561419999995,TJ,CH4,10.0,kg/TJ,616.3256141999999,kg +33134fe6-4c23-374c-96db-c3ff2e4050da,SESCO,II.1.1,Chaco,AR-H,annual,2015,bioetanol combustion consumption by to the public,61.632561419999995,TJ,N2O,0.6,kg/TJ,36.979536851999995,kg +6bac8ce0-9576-309d-80e8-2e63cd23b287,SESCO,II.1.1,Chubut,AR-U,annual,2015,bioetanol combustion consumption by to the public,92.92049054999998,TJ,CH4,10.0,kg/TJ,929.2049054999998,kg +17879175-2e86-3dc8-9666-c5b0d4ad0ee0,SESCO,II.1.1,Chubut,AR-U,annual,2015,bioetanol combustion consumption by to the public,92.92049054999998,TJ,N2O,0.6,kg/TJ,55.75229432999999,kg +d642ecc4-ccb5-38da-8d39-fb989ec5fee7,SESCO,II.1.1,Corrientes,AR-W,annual,2015,bioetanol combustion consumption by to the public,65.44984599,TJ,CH4,10.0,kg/TJ,654.4984599,kg +d34584dd-24e0-3d21-aef5-dfb9f1986fb6,SESCO,II.1.1,Corrientes,AR-W,annual,2015,bioetanol combustion consumption by to the public,65.44984599,TJ,N2O,0.6,kg/TJ,39.269907593999996,kg +104abe7d-4fa3-3ebe-83f6-d1e85fb2a84a,SESCO,II.1.1,Córdoba,AR-X,annual,2015,bioetanol combustion consumption by to the public,203.41659518999998,TJ,CH4,10.0,kg/TJ,2034.1659518999998,kg +1c91e168-5fcc-35fe-a427-2789d7ab6961,SESCO,II.1.1,Córdoba,AR-X,annual,2015,bioetanol combustion consumption by to the public,203.41659518999998,TJ,N2O,0.6,kg/TJ,122.04995711399998,kg +f7f7d6c7-0485-3dae-8ecf-d8d122605d62,SESCO,II.1.1,Entre Rios,AR-E,annual,2015,bioetanol combustion consumption by to the public,87.68634344999998,TJ,CH4,10.0,kg/TJ,876.8634344999998,kg +6863bd95-963f-339c-ba1f-a074274a8f19,SESCO,II.1.1,Entre Rios,AR-E,annual,2015,bioetanol combustion consumption by to the public,87.68634344999998,TJ,N2O,0.6,kg/TJ,52.611806069999986,kg +8f929f28-13e3-3be8-9721-27e43263a405,SESCO,II.1.1,Formosa,AR-P,annual,2015,bioetanol combustion consumption by to the public,17.37621801,TJ,CH4,10.0,kg/TJ,173.7621801,kg +47ea4cc2-5b1f-3ad8-bad3-3a4f2f358547,SESCO,II.1.1,Formosa,AR-P,annual,2015,bioetanol combustion consumption by to the public,17.37621801,TJ,N2O,0.6,kg/TJ,10.425730805999999,kg +d61f6c62-8149-377a-8ed7-2a7e5ccf5054,SESCO,II.1.1,Jujuy,AR-Y,annual,2015,bioetanol combustion consumption by to the public,22.51641888,TJ,CH4,10.0,kg/TJ,225.1641888,kg +95e44e5b-6863-3d7e-adbf-7ad2652bd3f2,SESCO,II.1.1,Jujuy,AR-Y,annual,2015,bioetanol combustion consumption by to the public,22.51641888,TJ,N2O,0.6,kg/TJ,13.509851328,kg +a7bb9648-129c-30b8-9594-56a30dd13aec,SESCO,II.1.1,La Pampa,AR-L,annual,2015,bioetanol combustion consumption by to the public,52.91473472999999,TJ,CH4,10.0,kg/TJ,529.1473472999999,kg +99b73450-db79-393a-aa18-7d6b39633a58,SESCO,II.1.1,La Pampa,AR-L,annual,2015,bioetanol combustion consumption by to the public,52.91473472999999,TJ,N2O,0.6,kg/TJ,31.748840837999992,kg +9f370ba2-c13d-3eae-8a53-912e2b9a04f0,SESCO,II.1.1,La Rioja,AR-F,annual,2015,bioetanol combustion consumption by to the public,23.413701239999998,TJ,CH4,10.0,kg/TJ,234.13701239999997,kg +43a43877-e193-3fa1-897f-fa7a1b989dd1,SESCO,II.1.1,La Rioja,AR-F,annual,2015,bioetanol combustion consumption by to the public,23.413701239999998,TJ,N2O,0.6,kg/TJ,14.048220743999998,kg +f6f4d668-c199-3ef7-8066-c2dd60d5ab17,SESCO,II.1.1,Mendoza,AR-M,annual,2015,bioetanol combustion consumption by to the public,163.79237609999998,TJ,CH4,10.0,kg/TJ,1637.9237609999998,kg +caa052d1-a3ef-32bc-9403-c65df5e01052,SESCO,II.1.1,Mendoza,AR-M,annual,2015,bioetanol combustion consumption by to the public,163.79237609999998,TJ,N2O,0.6,kg/TJ,98.27542565999998,kg +3336cd23-e1b2-3fd1-a209-663ec40b6a10,SESCO,II.1.1,Misiones,AR-N,annual,2015,bioetanol combustion consumption by to the public,62.84235878999999,TJ,CH4,10.0,kg/TJ,628.4235878999999,kg +631774ab-e8a1-3504-8038-c8595ebedd79,SESCO,II.1.1,Misiones,AR-N,annual,2015,bioetanol combustion consumption by to the public,62.84235878999999,TJ,N2O,0.6,kg/TJ,37.705415273999996,kg +528e1a54-c264-3294-b55b-21b9cf359525,SESCO,II.1.1,Neuquén,AR-Q,annual,2015,bioetanol combustion consumption by to the public,91.56689792999998,TJ,CH4,10.0,kg/TJ,915.6689792999998,kg +50da4543-36af-344e-9fbe-e1acc666b7df,SESCO,II.1.1,Neuquén,AR-Q,annual,2015,bioetanol combustion consumption by to the public,91.56689792999998,TJ,N2O,0.6,kg/TJ,54.94013875799999,kg +c0f994d5-ddb3-36b5-a437-87e03fccfcd8,SESCO,II.1.1,Rio Negro,AR-R,annual,2015,bioetanol combustion consumption by to the public,85.05584901,TJ,CH4,10.0,kg/TJ,850.5584901,kg +e039c374-ca6c-3a54-ae4a-3b6d148c924e,SESCO,II.1.1,Rio Negro,AR-R,annual,2015,bioetanol combustion consumption by to the public,85.05584901,TJ,N2O,0.6,kg/TJ,51.033509406,kg +dce11410-1d3c-39b8-8875-5012507191fb,SESCO,II.1.1,Salta,AR-A,annual,2015,bioetanol combustion consumption by to the public,54.2779137,TJ,CH4,10.0,kg/TJ,542.779137,kg +879ecdad-514e-3c43-a741-8f4800bd99ae,SESCO,II.1.1,Salta,AR-A,annual,2015,bioetanol combustion consumption by to the public,54.2779137,TJ,N2O,0.6,kg/TJ,32.56674822,kg +86c19b3c-1232-3876-adce-c9e8194a8381,SESCO,II.1.1,San Juan,AR-J,annual,2015,bioetanol combustion consumption by to the public,42.09941466,TJ,CH4,10.0,kg/TJ,420.9941466,kg +3bb7cc89-842c-3ad1-ae35-2ab6626b568f,SESCO,II.1.1,San Juan,AR-J,annual,2015,bioetanol combustion consumption by to the public,42.09941466,TJ,N2O,0.6,kg/TJ,25.259648796,kg +a1262e46-2795-3daa-a874-ae6b07699c6f,SESCO,II.1.1,San Luis,AR-D,annual,2015,bioetanol combustion consumption by to the public,39.68557172999999,TJ,CH4,10.0,kg/TJ,396.8557172999999,kg +78279342-ad03-3c95-9a5c-23d8c30b9f7b,SESCO,II.1.1,San Luis,AR-D,annual,2015,bioetanol combustion consumption by to the public,39.68557172999999,TJ,N2O,0.6,kg/TJ,23.811343037999993,kg +6dce9f21-6894-3902-a471-21cbd64e14ca,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2015,bioetanol combustion consumption by to the public,56.79528920999999,TJ,CH4,10.0,kg/TJ,567.9528920999999,kg +85bdb8b5-dd13-313e-a6b5-34420fb49377,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2015,bioetanol combustion consumption by to the public,56.79528920999999,TJ,N2O,0.6,kg/TJ,34.077173525999996,kg +02bae1cb-8562-3dcd-9d63-14a7cfa37dea,SESCO,II.1.1,Santa Fe,AR-S,annual,2015,bioetanol combustion consumption by to the public,206.27716203,TJ,CH4,10.0,kg/TJ,2062.7716203,kg +83706404-a5f7-3ee9-b681-08501b9f179f,SESCO,II.1.1,Santa Fe,AR-S,annual,2015,bioetanol combustion consumption by to the public,206.27716203,TJ,N2O,0.6,kg/TJ,123.76629721799999,kg +7ede9d0d-042c-3996-9acd-4cd3cb41b66f,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2015,bioetanol combustion consumption by to the public,39.01452722999999,TJ,CH4,10.0,kg/TJ,390.14527229999993,kg +00e6a95c-8830-3664-b341-98ffabe8bb4c,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2015,bioetanol combustion consumption by to the public,39.01452722999999,TJ,N2O,0.6,kg/TJ,23.408716337999994,kg +8a96294d-7f92-38ab-87be-9037260108de,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2015,bioetanol combustion consumption by to the public,9.087859799999999,TJ,CH4,10.0,kg/TJ,90.87859799999998,kg +7ad4ddf6-9e45-39e6-85af-96a2bc08c260,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2015,bioetanol combustion consumption by to the public,9.087859799999999,TJ,N2O,0.6,kg/TJ,5.452715879999999,kg +1c4a1a3d-1727-346f-a88a-eb028303be02,SESCO,II.1.1,Tucuman,AR-T,annual,2015,bioetanol combustion consumption by to the public,40.057522109999994,TJ,CH4,10.0,kg/TJ,400.5752210999999,kg +da995ebd-310f-3cc3-b8df-83f12a839760,SESCO,II.1.1,Tucuman,AR-T,annual,2015,bioetanol combustion consumption by to the public,40.057522109999994,TJ,N2O,0.6,kg/TJ,24.034513265999994,kg +78ec8621-49a8-3ce8-8510-76b01038c190,SESCO,II.1.1,Buenos Aires,AR-B,annual,2015,bioetanol combustion consumption by freight transport,12.226430789999998,TJ,CH4,10.0,kg/TJ,122.26430789999998,kg +019e459a-c9d0-3789-8edc-e9b7e6c0a5d7,SESCO,II.1.1,Buenos Aires,AR-B,annual,2015,bioetanol combustion consumption by freight transport,12.226430789999998,TJ,N2O,0.6,kg/TJ,7.335858473999998,kg +465f99eb-b62a-3d75-8bf1-1284f722972d,SESCO,II.1.1,Capital Federal,AR-C,annual,2015,bioetanol combustion consumption by freight transport,12.72300372,TJ,CH4,10.0,kg/TJ,127.2300372,kg +e22f2387-747b-3925-b5e8-a1c609dd2011,SESCO,II.1.1,Capital Federal,AR-C,annual,2015,bioetanol combustion consumption by freight transport,12.72300372,TJ,N2O,0.6,kg/TJ,7.633802231999999,kg +2d7b6aa7-2a81-369d-a760-2a6e165649fb,SESCO,II.1.1,Chaco,AR-H,annual,2015,bioetanol combustion consumption by freight transport,0.36619856999999995,TJ,CH4,10.0,kg/TJ,3.6619856999999993,kg +576b6bcc-e128-3ddb-938f-410c69b6db5f,SESCO,II.1.1,Chaco,AR-H,annual,2015,bioetanol combustion consumption by freight transport,0.36619856999999995,TJ,N2O,0.6,kg/TJ,0.21971914199999995,kg +8bb457ba-8769-356c-a2b9-f0fdf487c7da,SESCO,II.1.1,Chubut,AR-U,annual,2015,bioetanol combustion consumption by freight transport,0.06326991,TJ,CH4,10.0,kg/TJ,0.6326991,kg +421cac05-cacf-3f1f-8666-d0a58956a9cd,SESCO,II.1.1,Chubut,AR-U,annual,2015,bioetanol combustion consumption by freight transport,0.06326991,TJ,N2O,0.6,kg/TJ,0.037961945999999996,kg +2229883a-fe65-3bf8-a3af-7ccc2dfd3060,SESCO,II.1.1,Corrientes,AR-W,annual,2015,bioetanol combustion consumption by freight transport,0.07285625999999999,TJ,CH4,10.0,kg/TJ,0.7285626,kg +6880ace5-503c-3d74-a4f3-75d21570290a,SESCO,II.1.1,Corrientes,AR-W,annual,2015,bioetanol combustion consumption by freight transport,0.07285625999999999,TJ,N2O,0.6,kg/TJ,0.04371375599999999,kg +7080d980-a94b-339c-bdea-4752f3ddcd61,SESCO,II.1.1,Córdoba,AR-X,annual,2015,bioetanol combustion consumption by freight transport,0.25499690999999997,TJ,CH4,10.0,kg/TJ,2.5499690999999998,kg +db61c14c-3153-3f9c-8680-3a132da0fdea,SESCO,II.1.1,Córdoba,AR-X,annual,2015,bioetanol combustion consumption by freight transport,0.25499690999999997,TJ,N2O,0.6,kg/TJ,0.15299814599999997,kg +ab035b87-aa9a-37fa-a68e-63a112b0b922,SESCO,II.1.1,Entre Rios,AR-E,annual,2015,bioetanol combustion consumption by freight transport,0.12845708999999997,TJ,CH4,10.0,kg/TJ,1.2845708999999996,kg +0112bcec-47b5-38f7-a6f5-7d84b469a679,SESCO,II.1.1,Entre Rios,AR-E,annual,2015,bioetanol combustion consumption by freight transport,0.12845708999999997,TJ,N2O,0.6,kg/TJ,0.07707425399999998,kg +441fcc6d-ad86-34b7-9feb-14e10984adad,SESCO,II.1.1,Mendoza,AR-M,annual,2015,bioetanol combustion consumption by freight transport,0.37961945999999996,TJ,CH4,10.0,kg/TJ,3.7961945999999998,kg +227b2ab5-2c6b-3050-b2f0-0325e9afc363,SESCO,II.1.1,Mendoza,AR-M,annual,2015,bioetanol combustion consumption by freight transport,0.37961945999999996,TJ,N2O,0.6,kg/TJ,0.22777167599999998,kg +dc0e860c-8884-3994-8741-e2fa78d92981,SESCO,II.1.1,Misiones,AR-N,annual,2015,bioetanol combustion consumption by freight transport,0.02684178,TJ,CH4,10.0,kg/TJ,0.2684178,kg +cf272d45-a916-351a-b4f7-cf502a7c1942,SESCO,II.1.1,Misiones,AR-N,annual,2015,bioetanol combustion consumption by freight transport,0.02684178,TJ,N2O,0.6,kg/TJ,0.016105068,kg +419f9268-fd56-3f53-ab20-e99b448d1d94,SESCO,II.1.1,Neuquén,AR-Q,annual,2015,bioetanol combustion consumption by freight transport,0.05751809999999999,TJ,CH4,10.0,kg/TJ,0.5751809999999999,kg +24df73f4-9bff-3988-a3d9-f63d4a6489b2,SESCO,II.1.1,Neuquén,AR-Q,annual,2015,bioetanol combustion consumption by freight transport,0.05751809999999999,TJ,N2O,0.6,kg/TJ,0.03451085999999999,kg +45665c7c-ca13-3e78-b982-5b48fc5e84d7,SESCO,II.1.1,Rio Negro,AR-R,annual,2015,bioetanol combustion consumption by freight transport,0.07477352999999999,TJ,CH4,10.0,kg/TJ,0.7477352999999999,kg +a1b7884b-59da-323b-85e7-dba8cc3e492e,SESCO,II.1.1,Rio Negro,AR-R,annual,2015,bioetanol combustion consumption by freight transport,0.07477352999999999,TJ,N2O,0.6,kg/TJ,0.044864117999999995,kg +cdafb186-d07e-37f6-9037-0388a733adc2,SESCO,II.1.1,Salta,AR-A,annual,2015,bioetanol combustion consumption by freight transport,0.6576236099999999,TJ,CH4,10.0,kg/TJ,6.576236099999999,kg +b9160f12-83eb-35d6-8ddc-92d4d269163e,SESCO,II.1.1,Salta,AR-A,annual,2015,bioetanol combustion consumption by freight transport,0.6576236099999999,TJ,N2O,0.6,kg/TJ,0.39457416599999995,kg +6facc6db-7c3e-399c-a38d-79dbfa93628b,SESCO,II.1.1,San Juan,AR-J,annual,2015,bioetanol combustion consumption by freight transport,0.0019172699999999998,TJ,CH4,10.0,kg/TJ,0.019172699999999997,kg +223dfcb3-df64-368c-a56d-dd5498d96d8a,SESCO,II.1.1,San Juan,AR-J,annual,2015,bioetanol combustion consumption by freight transport,0.0019172699999999998,TJ,N2O,0.6,kg/TJ,0.0011503619999999998,kg +ff30c057-ab5c-3da7-88dc-a4a66a1120c4,SESCO,II.1.1,San Luis,AR-D,annual,2015,bioetanol combustion consumption by freight transport,0.009586349999999999,TJ,CH4,10.0,kg/TJ,0.09586349999999999,kg +339973c4-7ddf-38a2-96dd-6b81a0f98371,SESCO,II.1.1,San Luis,AR-D,annual,2015,bioetanol combustion consumption by freight transport,0.009586349999999999,TJ,N2O,0.6,kg/TJ,0.005751809999999999,kg +9344a932-c29c-315b-a690-0b945b12251f,SESCO,II.1.1,Santa Fe,AR-S,annual,2015,bioetanol combustion consumption by freight transport,1.0755884699999998,TJ,CH4,10.0,kg/TJ,10.755884699999998,kg +ff9ca05f-9e83-3f47-9349-e6957b6b6c35,SESCO,II.1.1,Santa Fe,AR-S,annual,2015,bioetanol combustion consumption by freight transport,1.0755884699999998,TJ,N2O,0.6,kg/TJ,0.6453530819999999,kg +dd36fd37-455b-37dc-86ab-f6bb7ee20290,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2015,bioetanol combustion consumption by freight transport,0.0038345399999999996,TJ,CH4,10.0,kg/TJ,0.038345399999999995,kg +bf133a78-8b68-3ec6-bf50-e883a6b53745,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2015,bioetanol combustion consumption by freight transport,0.0038345399999999996,TJ,N2O,0.6,kg/TJ,0.0023007239999999997,kg +53ad5da2-bdf2-3d33-9536-8af116cb7c3d,SESCO,II.1.1,Tucuman,AR-T,annual,2015,bioetanol combustion consumption by freight transport,0.09011168999999998,TJ,CH4,10.0,kg/TJ,0.9011168999999998,kg +bfe38c43-c08f-3c02-b173-1856d5d5d610,SESCO,II.1.1,Tucuman,AR-T,annual,2015,bioetanol combustion consumption by freight transport,0.09011168999999998,TJ,N2O,0.6,kg/TJ,0.05406701399999999,kg +d09b3a56-9cc1-326f-bd38-edd736c8dd66,SESCO,II.1.1,Buenos Aires,AR-B,annual,2015,bioetanol combustion consumption by freight transport,12.078800999999999,TJ,CH4,10.0,kg/TJ,120.78800999999999,kg +0562810e-c5bc-39fe-870e-5ca4a8dcd17f,SESCO,II.1.1,Buenos Aires,AR-B,annual,2015,bioetanol combustion consumption by freight transport,12.078800999999999,TJ,N2O,0.6,kg/TJ,7.247280599999999,kg +8120e42c-a3f1-38af-9717-1d621aca073a,SESCO,II.1.1,Capital Federal,AR-C,annual,2015,bioetanol combustion consumption by freight transport,13.033601459999998,TJ,CH4,10.0,kg/TJ,130.33601459999997,kg +a502aa1c-2898-355e-a5a9-5f9a8f11f7a0,SESCO,II.1.1,Capital Federal,AR-C,annual,2015,bioetanol combustion consumption by freight transport,13.033601459999998,TJ,N2O,0.6,kg/TJ,7.820160875999998,kg +d4d655b5-588d-3688-a78b-defb6351bb65,SESCO,II.1.1,Chaco,AR-H,annual,2015,bioetanol combustion consumption by freight transport,0.39495761999999995,TJ,CH4,10.0,kg/TJ,3.9495761999999996,kg +d80c1a83-8953-3ae1-a20e-69a786c4c67d,SESCO,II.1.1,Chaco,AR-H,annual,2015,bioetanol combustion consumption by freight transport,0.39495761999999995,TJ,N2O,0.6,kg/TJ,0.23697457199999997,kg +4b816b67-1d8e-31bb-910c-fc56097e64b9,SESCO,II.1.1,Chubut,AR-U,annual,2015,bioetanol combustion consumption by freight transport,0.03451086,TJ,CH4,10.0,kg/TJ,0.3451086,kg +cee3b19b-ba53-3736-981c-e477d3f70700,SESCO,II.1.1,Chubut,AR-U,annual,2015,bioetanol combustion consumption by freight transport,0.03451086,TJ,N2O,0.6,kg/TJ,0.020706515999999998,kg +f1b5e5fc-ab65-3d79-a320-3e4b5a7a7674,SESCO,II.1.1,Corrientes,AR-W,annual,2015,bioetanol combustion consumption by freight transport,0.18022337999999996,TJ,CH4,10.0,kg/TJ,1.8022337999999996,kg +21c2a7e7-eef1-3452-a09e-54a26a503c9d,SESCO,II.1.1,Corrientes,AR-W,annual,2015,bioetanol combustion consumption by freight transport,0.18022337999999996,TJ,N2O,0.6,kg/TJ,0.10813402799999998,kg +21d89ae9-5fe7-3d60-a40e-ac7dec72bf6d,SESCO,II.1.1,Córdoba,AR-X,annual,2015,bioetanol combustion consumption by freight transport,0.36236402999999995,TJ,CH4,10.0,kg/TJ,3.6236402999999995,kg +57c9740d-0f54-3aec-bbff-eb5c3c3a3d70,SESCO,II.1.1,Córdoba,AR-X,annual,2015,bioetanol combustion consumption by freight transport,0.36236402999999995,TJ,N2O,0.6,kg/TJ,0.21741841799999997,kg +fb565422-07c8-318a-9799-c4e7fd589514,SESCO,II.1.1,Entre Rios,AR-E,annual,2015,bioetanol combustion consumption by freight transport,0.14187798,TJ,CH4,10.0,kg/TJ,1.4187797999999998,kg +9bb56055-5086-38e1-aa2a-9312ac70ab6e,SESCO,II.1.1,Entre Rios,AR-E,annual,2015,bioetanol combustion consumption by freight transport,0.14187798,TJ,N2O,0.6,kg/TJ,0.085126788,kg +92736f31-fa43-34de-b28d-a8f65d83a9ed,SESCO,II.1.1,Jujuy,AR-Y,annual,2015,bioetanol combustion consumption by freight transport,0.0038345399999999996,TJ,CH4,10.0,kg/TJ,0.038345399999999995,kg +832dccf9-9a4b-3ae0-aff3-52971d35831c,SESCO,II.1.1,Jujuy,AR-Y,annual,2015,bioetanol combustion consumption by freight transport,0.0038345399999999996,TJ,N2O,0.6,kg/TJ,0.0023007239999999997,kg +fddc1262-6993-3d13-a7bd-ccda5607ecc4,SESCO,II.1.1,La Pampa,AR-L,annual,2015,bioetanol combustion consumption by freight transport,0.00575181,TJ,CH4,10.0,kg/TJ,0.0575181,kg +ba2b6ba5-d8ea-33e0-a263-afa5e20a4dca,SESCO,II.1.1,La Pampa,AR-L,annual,2015,bioetanol combustion consumption by freight transport,0.00575181,TJ,N2O,0.6,kg/TJ,0.0034510860000000003,kg +112422ed-218b-323b-ae0c-9b857868d98e,SESCO,II.1.1,La Rioja,AR-F,annual,2015,bioetanol combustion consumption by freight transport,0.05943537,TJ,CH4,10.0,kg/TJ,0.5943537,kg +f3d3c0a8-984b-3f09-8e06-4015773dcd6b,SESCO,II.1.1,La Rioja,AR-F,annual,2015,bioetanol combustion consumption by freight transport,0.05943537,TJ,N2O,0.6,kg/TJ,0.035661222,kg +3b15b160-b395-321c-b642-8a8780a6d92b,SESCO,II.1.1,Mendoza,AR-M,annual,2015,bioetanol combustion consumption by freight transport,0.29717685,TJ,CH4,10.0,kg/TJ,2.9717685,kg +22a8a790-7908-3e2b-830b-09c47cdda4e1,SESCO,II.1.1,Mendoza,AR-M,annual,2015,bioetanol combustion consumption by freight transport,0.29717685,TJ,N2O,0.6,kg/TJ,0.17830611,kg +534ed88c-5bca-3144-b729-99d50038347d,SESCO,II.1.1,Misiones,AR-N,annual,2015,bioetanol combustion consumption by freight transport,0.11503619999999998,TJ,CH4,10.0,kg/TJ,1.1503619999999999,kg +98b11cc4-0106-3903-9ccf-03889257680c,SESCO,II.1.1,Misiones,AR-N,annual,2015,bioetanol combustion consumption by freight transport,0.11503619999999998,TJ,N2O,0.6,kg/TJ,0.06902171999999998,kg +5445e13a-abd6-3df0-87d6-45aa3fdc25ec,SESCO,II.1.1,Neuquén,AR-Q,annual,2015,bioetanol combustion consumption by freight transport,0.09394623,TJ,CH4,10.0,kg/TJ,0.9394623000000001,kg +b3c31dc3-c64a-3013-bc2c-f0232d465b0f,SESCO,II.1.1,Neuquén,AR-Q,annual,2015,bioetanol combustion consumption by freight transport,0.09394623,TJ,N2O,0.6,kg/TJ,0.056367738,kg +1c01a2fa-01f1-3093-b3b7-1a09fde2287d,SESCO,II.1.1,Rio Negro,AR-R,annual,2015,bioetanol combustion consumption by freight transport,0.15146432999999998,TJ,CH4,10.0,kg/TJ,1.5146433,kg +d7a8cc08-e13e-3410-8ea0-07bd9e623552,SESCO,II.1.1,Rio Negro,AR-R,annual,2015,bioetanol combustion consumption by freight transport,0.15146432999999998,TJ,N2O,0.6,kg/TJ,0.09087859799999999,kg +cafff6fb-b291-3368-b7da-62cb5044cfcb,SESCO,II.1.1,Salta,AR-A,annual,2015,bioetanol combustion consumption by freight transport,0.08052533999999999,TJ,CH4,10.0,kg/TJ,0.8052533999999999,kg +6c7ce611-bfa8-3c74-9d5a-c406ec295fdc,SESCO,II.1.1,Salta,AR-A,annual,2015,bioetanol combustion consumption by freight transport,0.08052533999999999,TJ,N2O,0.6,kg/TJ,0.048315203999999994,kg +e1568ab1-9a6f-30d5-b726-ec7693402060,SESCO,II.1.1,San Luis,AR-D,annual,2015,bioetanol combustion consumption by freight transport,0.02300724,TJ,CH4,10.0,kg/TJ,0.2300724,kg +f83e59d5-2f79-3a1c-87ed-c98d34bbe43b,SESCO,II.1.1,San Luis,AR-D,annual,2015,bioetanol combustion consumption by freight transport,0.02300724,TJ,N2O,0.6,kg/TJ,0.013804344000000001,kg +728f0a3a-45de-30b3-acab-25346763cf03,SESCO,II.1.1,Santa Fe,AR-S,annual,2015,bioetanol combustion consumption by freight transport,1.4743806299999997,TJ,CH4,10.0,kg/TJ,14.743806299999997,kg +c69631c2-78bd-3c66-b66c-a7872bb9fd0d,SESCO,II.1.1,Santa Fe,AR-S,annual,2015,bioetanol combustion consumption by freight transport,1.4743806299999997,TJ,N2O,0.6,kg/TJ,0.8846283779999998,kg +dd36fd37-455b-37dc-86ab-f6bb7ee20290,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2015,bioetanol combustion consumption by freight transport,0.0038345399999999996,TJ,CH4,10.0,kg/TJ,0.038345399999999995,kg +bf133a78-8b68-3ec6-bf50-e883a6b53745,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2015,bioetanol combustion consumption by freight transport,0.0038345399999999996,TJ,N2O,0.6,kg/TJ,0.0023007239999999997,kg +f71fac61-75fe-3741-9203-7e2c0c130fae,SESCO,II.1.1,Tucuman,AR-T,annual,2015,bioetanol combustion consumption by freight transport,0.07477352999999999,TJ,CH4,10.0,kg/TJ,0.7477352999999999,kg +dd09322d-0695-36bd-a6f7-85c7502f808d,SESCO,II.1.1,Tucuman,AR-T,annual,2015,bioetanol combustion consumption by freight transport,0.07477352999999999,TJ,N2O,0.6,kg/TJ,0.044864117999999995,kg +1e5826fb-72e6-3eb5-9cfd-f17f4f41a42f,SESCO,II.1.1,Buenos Aires,AR-B,annual,2015,bioetanol combustion consumption by public passenger transport,0.009586349999999999,TJ,CH4,10.0,kg/TJ,0.09586349999999999,kg +e9f9b9d6-f303-34df-8155-c35a3a3d16ed,SESCO,II.1.1,Buenos Aires,AR-B,annual,2015,bioetanol combustion consumption by public passenger transport,0.009586349999999999,TJ,N2O,0.6,kg/TJ,0.005751809999999999,kg +548e2bb5-55e6-322b-ae66-c56a049d2960,SESCO,II.1.1,Capital Federal,AR-C,annual,2016,bioetanol combustion consumption by to the public,1.6661076299999997,TJ,CH4,10.0,kg/TJ,16.661076299999998,kg +acc553a3-be7c-31c7-a3d2-3e7391f9d092,SESCO,II.1.1,Capital Federal,AR-C,annual,2016,bioetanol combustion consumption by to the public,1.6661076299999997,TJ,N2O,0.6,kg/TJ,0.9996645779999997,kg +cb0d2639-e4ea-30ec-9d5d-94e8f7ae2a00,SESCO,II.1.1,Capital Federal,AR-C,annual,2016,bioetanol combustion consumption by to the public,0.34212617999999995,TJ,CH4,10.0,kg/TJ,3.4212617999999995,kg +058c459c-bcc5-32d0-ad30-ca960ecb0207,SESCO,II.1.1,Capital Federal,AR-C,annual,2016,bioetanol combustion consumption by to the public,0.34212617999999995,TJ,N2O,0.6,kg/TJ,0.20527570799999997,kg +59db290e-78da-3ffe-ad39-f8938ba786e0,SESCO,II.5.1,Buenos Aires,AR-B,annual,2016,bioetanol combustion consumption by agriculture machines,1.17400833,TJ,CH4,10.0,kg/TJ,11.740083299999998,kg +9635f07f-08e8-3d09-8df9-53c8de18dc02,SESCO,II.5.1,Buenos Aires,AR-B,annual,2016,bioetanol combustion consumption by agriculture machines,1.17400833,TJ,N2O,0.6,kg/TJ,0.7044049979999999,kg +fd441d0a-6ddb-3e02-bfcb-0f1787a752c5,SESCO,II.5.1,Chaco,AR-H,annual,2016,bioetanol combustion consumption by agriculture machines,0.6889390200000001,TJ,CH4,10.0,kg/TJ,6.889390200000001,kg +a436e905-b0c4-3df2-9908-8b4475dbfeeb,SESCO,II.5.1,Chaco,AR-H,annual,2016,bioetanol combustion consumption by agriculture machines,0.6889390200000001,TJ,N2O,0.6,kg/TJ,0.41336341200000004,kg +145b092d-2b58-36f0-99d0-796f1333435c,SESCO,II.5.1,Córdoba,AR-X,annual,2016,bioetanol combustion consumption by agriculture machines,0.81079218,TJ,CH4,10.0,kg/TJ,8.1079218,kg +357fe57b-bde8-3789-8f62-746debe152b8,SESCO,II.5.1,Córdoba,AR-X,annual,2016,bioetanol combustion consumption by agriculture machines,0.81079218,TJ,N2O,0.6,kg/TJ,0.48647530799999994,kg +62565a0f-d6cf-398d-9b26-08e2276b9838,SESCO,II.5.1,Santa Fe,AR-S,annual,2016,bioetanol combustion consumption by agriculture machines,2.51673642,TJ,CH4,10.0,kg/TJ,25.1673642,kg +50deac4f-d4e7-3d07-8ab0-887c99155685,SESCO,II.5.1,Santa Fe,AR-S,annual,2016,bioetanol combustion consumption by agriculture machines,2.51673642,TJ,N2O,0.6,kg/TJ,1.5100418519999999,kg +89fe14af-0e77-348c-9b07-e5a58d225342,SESCO,II.5.1,Tucuman,AR-T,annual,2016,bioetanol combustion consumption by agriculture machines,0.89515206,TJ,CH4,10.0,kg/TJ,8.9515206,kg +60783fde-fd3f-3caf-8624-af5cd6317d93,SESCO,II.5.1,Tucuman,AR-T,annual,2016,bioetanol combustion consumption by agriculture machines,0.89515206,TJ,N2O,0.6,kg/TJ,0.537091236,kg +7752fad3-0f0d-3d2d-b113-ca8f763586c5,SESCO,II.5.1,Buenos Aires,AR-B,annual,2016,bioetanol combustion consumption by agriculture machines,0.27182628,TJ,CH4,10.0,kg/TJ,2.7182627999999998,kg +0a57a1bc-db13-3638-b32d-0318425566f8,SESCO,II.5.1,Buenos Aires,AR-B,annual,2016,bioetanol combustion consumption by agriculture machines,0.27182628,TJ,N2O,0.6,kg/TJ,0.16309576799999997,kg +6e131edb-45ba-3687-a4ba-545196d21cdd,SESCO,II.5.1,Chaco,AR-H,annual,2016,bioetanol combustion consumption by agriculture machines,0.09841986,TJ,CH4,10.0,kg/TJ,0.9841986,kg +f870c041-8e4f-31cf-849e-775a2946afb1,SESCO,II.5.1,Chaco,AR-H,annual,2016,bioetanol combustion consumption by agriculture machines,0.09841986,TJ,N2O,0.6,kg/TJ,0.059051915999999996,kg +dee14d28-c9bb-3a9a-a317-521ff3d1db9b,SESCO,II.5.1,Córdoba,AR-X,annual,2016,bioetanol combustion consumption by agriculture machines,0.33978284999999997,TJ,CH4,10.0,kg/TJ,3.3978284999999997,kg +3f6d2842-0321-3e89-b34c-93a10f00aab2,SESCO,II.5.1,Córdoba,AR-X,annual,2016,bioetanol combustion consumption by agriculture machines,0.33978284999999997,TJ,N2O,0.6,kg/TJ,0.20386970999999998,kg +772bc070-0c11-321c-bc05-af64aa63e107,SESCO,II.5.1,Santa Fe,AR-S,annual,2016,bioetanol combustion consumption by agriculture machines,0.89280873,TJ,CH4,10.0,kg/TJ,8.928087300000001,kg +005f6a1a-0a4d-3c6a-a2ec-6b9737e35dc3,SESCO,II.5.1,Santa Fe,AR-S,annual,2016,bioetanol combustion consumption by agriculture machines,0.89280873,TJ,N2O,0.6,kg/TJ,0.535685238,kg +fc6569b7-b1f0-32bf-bdf8-613cc6da8734,SESCO,II.5.1,Tucuman,AR-T,annual,2016,bioetanol combustion consumption by agriculture machines,0.25307964,TJ,CH4,10.0,kg/TJ,2.5307964,kg +adaa020d-094b-3275-8ec7-e1ae2657e5fc,SESCO,II.5.1,Tucuman,AR-T,annual,2016,bioetanol combustion consumption by agriculture machines,0.25307964,TJ,N2O,0.6,kg/TJ,0.15184778399999999,kg +c6bcff0b-aa63-3554-8ac7-fe0e170bb802,SESCO,II.1.1,Buenos Aires,AR-B,annual,2016,bioetanol combustion consumption by to the public,0.51787593,TJ,CH4,10.0,kg/TJ,5.178759299999999,kg +148f9003-5a8d-3d9a-a869-8bcf20c72857,SESCO,II.1.1,Buenos Aires,AR-B,annual,2016,bioetanol combustion consumption by to the public,0.51787593,TJ,N2O,0.6,kg/TJ,0.31072555799999996,kg +c8fa2155-550f-3e7c-91d0-6d113a207929,SESCO,II.1.1,Santa Fe,AR-S,annual,2016,bioetanol combustion consumption by to the public,0.85765878,TJ,CH4,10.0,kg/TJ,8.576587799999999,kg +8e3fadad-53e2-3e19-a50b-3f44c59eca52,SESCO,II.1.1,Santa Fe,AR-S,annual,2016,bioetanol combustion consumption by to the public,0.85765878,TJ,N2O,0.6,kg/TJ,0.514595268,kg +d5bd48db-0c33-37fc-96f8-a945255ebdf2,SESCO,II.1.1,Buenos Aires,AR-B,annual,2016,bioetanol combustion consumption by to the public,724.27409307,TJ,CH4,10.0,kg/TJ,7242.740930700001,kg +84c7d386-19dc-3062-9fa5-26c9af3e5686,SESCO,II.1.1,Buenos Aires,AR-B,annual,2016,bioetanol combustion consumption by to the public,724.27409307,TJ,N2O,0.6,kg/TJ,434.56445584200003,kg +03e8dce3-b44c-3e3f-8476-870705ad0e5f,SESCO,II.1.1,Capital Federal,AR-C,annual,2016,bioetanol combustion consumption by to the public,279.12106629,TJ,CH4,10.0,kg/TJ,2791.2106629,kg +23cb2368-8936-37b9-b721-4b93ab71ae49,SESCO,II.1.1,Capital Federal,AR-C,annual,2016,bioetanol combustion consumption by to the public,279.12106629,TJ,N2O,0.6,kg/TJ,167.472639774,kg +d173cbb6-3b35-3fbb-a26b-523768aeece8,SESCO,II.1.1,Catamarca,AR-K,annual,2016,bioetanol combustion consumption by to the public,27.733310549999995,TJ,CH4,10.0,kg/TJ,277.33310549999993,kg +c0b64239-28ac-3b1d-9332-5ac522280f24,SESCO,II.1.1,Catamarca,AR-K,annual,2016,bioetanol combustion consumption by to the public,27.733310549999995,TJ,N2O,0.6,kg/TJ,16.639986329999996,kg +b06d4a66-d444-30e8-a0ff-4ddb08c063f6,SESCO,II.1.1,Chaco,AR-H,annual,2016,bioetanol combustion consumption by to the public,34.69768731,TJ,CH4,10.0,kg/TJ,346.9768731,kg +438ee61f-e52c-3b25-8ec6-495dfed8dabe,SESCO,II.1.1,Chaco,AR-H,annual,2016,bioetanol combustion consumption by to the public,34.69768731,TJ,N2O,0.6,kg/TJ,20.818612385999998,kg +53d86389-30d3-39c8-9630-b2bc43f1997f,SESCO,II.1.1,Chubut,AR-U,annual,2016,bioetanol combustion consumption by to the public,23.6441997,TJ,CH4,10.0,kg/TJ,236.44199700000001,kg +31f4d65d-1cc5-3831-a8d2-b50a8b085e3b,SESCO,II.1.1,Chubut,AR-U,annual,2016,bioetanol combustion consumption by to the public,23.6441997,TJ,N2O,0.6,kg/TJ,14.186519820000001,kg +278b4353-ac42-3f1a-a2a7-38277710fea7,SESCO,II.1.1,Corrientes,AR-W,annual,2016,bioetanol combustion consumption by to the public,43.8905709,TJ,CH4,10.0,kg/TJ,438.905709,kg +04ece087-4c94-3729-b266-247898c3d6f3,SESCO,II.1.1,Corrientes,AR-W,annual,2016,bioetanol combustion consumption by to the public,43.8905709,TJ,N2O,0.6,kg/TJ,26.334342539999998,kg +02bd8c1c-3c7e-35c2-8808-bb3d127b63eb,SESCO,II.1.1,Córdoba,AR-X,annual,2016,bioetanol combustion consumption by to the public,220.6245195,TJ,CH4,10.0,kg/TJ,2206.245195,kg +96a71641-bb47-30b8-bb0c-b652f77f1791,SESCO,II.1.1,Córdoba,AR-X,annual,2016,bioetanol combustion consumption by to the public,220.6245195,TJ,N2O,0.6,kg/TJ,132.37471169999998,kg +b0e3142d-3a05-3b6c-9bbe-98383c014c3b,SESCO,II.1.1,Entre Rios,AR-E,annual,2016,bioetanol combustion consumption by to the public,78.11021889,TJ,CH4,10.0,kg/TJ,781.1021889,kg +38bf6f6f-9bb1-3ddc-8470-170567d36474,SESCO,II.1.1,Entre Rios,AR-E,annual,2016,bioetanol combustion consumption by to the public,78.11021889,TJ,N2O,0.6,kg/TJ,46.866131333999995,kg +a0a11f73-f782-3f18-ad5a-ab3bcf389ef1,SESCO,II.1.1,Formosa,AR-P,annual,2016,bioetanol combustion consumption by to the public,45.38327210999999,TJ,CH4,10.0,kg/TJ,453.83272109999996,kg +f85ad682-1fdc-3426-b71b-e4baa24c54a6,SESCO,II.1.1,Formosa,AR-P,annual,2016,bioetanol combustion consumption by to the public,45.38327210999999,TJ,N2O,0.6,kg/TJ,27.229963265999995,kg +a81b75a7-8316-3daf-8f22-ea261171c0df,SESCO,II.1.1,Jujuy,AR-Y,annual,2016,bioetanol combustion consumption by to the public,12.930494939999999,TJ,CH4,10.0,kg/TJ,129.3049494,kg +fe111a44-13f7-3c2b-b5cb-5e5fe6c80f53,SESCO,II.1.1,Jujuy,AR-Y,annual,2016,bioetanol combustion consumption by to the public,12.930494939999999,TJ,N2O,0.6,kg/TJ,7.7582969639999995,kg +470ebf46-936a-3c9a-b3fa-403e5f10ed30,SESCO,II.1.1,La Pampa,AR-L,annual,2016,bioetanol combustion consumption by to the public,10.983187710000001,TJ,CH4,10.0,kg/TJ,109.83187710000001,kg +cf5780a8-6bb6-3b3a-9582-b766e208fa6e,SESCO,II.1.1,La Pampa,AR-L,annual,2016,bioetanol combustion consumption by to the public,10.983187710000001,TJ,N2O,0.6,kg/TJ,6.589912626,kg +81db36f4-b515-3916-b985-335cff16f810,SESCO,II.1.1,La Rioja,AR-F,annual,2016,bioetanol combustion consumption by to the public,7.55255259,TJ,CH4,10.0,kg/TJ,75.5255259,kg +bd6b4a8f-1f7a-32e1-8568-39bd6da33bd7,SESCO,II.1.1,La Rioja,AR-F,annual,2016,bioetanol combustion consumption by to the public,7.55255259,TJ,N2O,0.6,kg/TJ,4.531531554,kg +c9da7b43-1dc9-3fd5-85ae-33fa2aa09df0,SESCO,II.1.1,Mendoza,AR-M,annual,2016,bioetanol combustion consumption by to the public,32.002857809999995,TJ,CH4,10.0,kg/TJ,320.02857809999995,kg +de054228-bdf6-3e48-b2d5-bb3ad33ea816,SESCO,II.1.1,Mendoza,AR-M,annual,2016,bioetanol combustion consumption by to the public,32.002857809999995,TJ,N2O,0.6,kg/TJ,19.201714685999995,kg +89bd7e78-e117-3d50-8ef0-7a45986f1ce0,SESCO,II.1.1,Misiones,AR-N,annual,2016,bioetanol combustion consumption by to the public,51.398600220000006,TJ,CH4,10.0,kg/TJ,513.9860022,kg +61989c08-d9d4-36e1-b4f2-59b1599a02bd,SESCO,II.1.1,Misiones,AR-N,annual,2016,bioetanol combustion consumption by to the public,51.398600220000006,TJ,N2O,0.6,kg/TJ,30.839160132000004,kg +36520600-21b7-397f-a844-0b4f88246349,SESCO,II.1.1,Neuquén,AR-Q,annual,2016,bioetanol combustion consumption by to the public,18.21704742,TJ,CH4,10.0,kg/TJ,182.1704742,kg +596d6487-dafb-3e43-8cca-7e810bc9a38a,SESCO,II.1.1,Neuquén,AR-Q,annual,2016,bioetanol combustion consumption by to the public,18.21704742,TJ,N2O,0.6,kg/TJ,10.930228452,kg +9734180d-221f-3994-a114-61e0fda0280a,SESCO,II.1.1,Rio Negro,AR-R,annual,2016,bioetanol combustion consumption by to the public,33.60803886,TJ,CH4,10.0,kg/TJ,336.0803886,kg +6e99c483-16d7-36e2-9ad6-3d93cc1d8618,SESCO,II.1.1,Rio Negro,AR-R,annual,2016,bioetanol combustion consumption by to the public,33.60803886,TJ,N2O,0.6,kg/TJ,20.164823316,kg +271e65b0-c889-3746-b8c4-b8b641434dd2,SESCO,II.1.1,Salta,AR-A,annual,2016,bioetanol combustion consumption by to the public,6.77925369,TJ,CH4,10.0,kg/TJ,67.7925369,kg +2caecde2-3587-3cb2-a914-748d4b671b46,SESCO,II.1.1,Salta,AR-A,annual,2016,bioetanol combustion consumption by to the public,6.77925369,TJ,N2O,0.6,kg/TJ,4.067552214,kg +be892c4e-7f9e-3e91-87e7-b70b2264c74f,SESCO,II.1.1,San Juan,AR-J,annual,2016,bioetanol combustion consumption by to the public,17.39922525,TJ,CH4,10.0,kg/TJ,173.9922525,kg +631c95b6-8b1d-3631-bea9-6b8c782529e1,SESCO,II.1.1,San Juan,AR-J,annual,2016,bioetanol combustion consumption by to the public,17.39922525,TJ,N2O,0.6,kg/TJ,10.43953515,kg +d616ddcf-7bbe-394a-8015-12daf892b92a,SESCO,II.1.1,San Luis,AR-D,annual,2016,bioetanol combustion consumption by to the public,39.45230388,TJ,CH4,10.0,kg/TJ,394.5230388,kg +ecc5ad9a-bd07-38a2-a2b4-03d6a5dcad06,SESCO,II.1.1,San Luis,AR-D,annual,2016,bioetanol combustion consumption by to the public,39.45230388,TJ,N2O,0.6,kg/TJ,23.671382328,kg +0287491c-7525-3a04-9793-1672a2c3c696,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2016,bioetanol combustion consumption by to the public,5.11314606,TJ,CH4,10.0,kg/TJ,51.1314606,kg +7dba5045-3454-3bff-941b-02c5a1744f99,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2016,bioetanol combustion consumption by to the public,5.11314606,TJ,N2O,0.6,kg/TJ,3.067887636,kg +1c8d76a8-8e38-3a14-905e-1be8195bb99e,SESCO,II.1.1,Santa Fe,AR-S,annual,2016,bioetanol combustion consumption by to the public,191.87889038999998,TJ,CH4,10.0,kg/TJ,1918.7889038999997,kg +634368fe-4bf0-380c-95c3-d09960f5c9ab,SESCO,II.1.1,Santa Fe,AR-S,annual,2016,bioetanol combustion consumption by to the public,191.87889038999998,TJ,N2O,0.6,kg/TJ,115.12733423399999,kg +b531165f-5d51-3c5d-9567-660a48eb3eb5,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2016,bioetanol combustion consumption by to the public,28.52535609,TJ,CH4,10.0,kg/TJ,285.25356089999997,kg +6c3fa299-380a-3995-8815-5be91fb261c0,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2016,bioetanol combustion consumption by to the public,28.52535609,TJ,N2O,0.6,kg/TJ,17.115213653999998,kg +8b1f4404-ea0a-3775-8937-8db3c9f3e456,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2016,bioetanol combustion consumption by to the public,9.55844307,TJ,CH4,10.0,kg/TJ,95.58443069999998,kg +32796533-0719-3265-8b75-204a194bd12a,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2016,bioetanol combustion consumption by to the public,9.55844307,TJ,N2O,0.6,kg/TJ,5.735065841999999,kg +a40bc316-1189-314a-9af2-fdc4bbbd747c,SESCO,II.1.1,Tucuman,AR-T,annual,2016,bioetanol combustion consumption by to the public,10.70667477,TJ,CH4,10.0,kg/TJ,107.0667477,kg +934c69fc-05a9-3aef-a4fc-73b7ae857f23,SESCO,II.1.1,Tucuman,AR-T,annual,2016,bioetanol combustion consumption by to the public,10.70667477,TJ,N2O,0.6,kg/TJ,6.424004861999999,kg +9a1c172f-178c-3f06-85fd-6a7a4e43e4e3,SESCO,II.1.1,Buenos Aires,AR-B,annual,2016,bioetanol combustion consumption by to the public,193.89415419,TJ,CH4,10.0,kg/TJ,1938.9415419,kg +699ec909-d004-37c9-b362-689556d67875,SESCO,II.1.1,Buenos Aires,AR-B,annual,2016,bioetanol combustion consumption by to the public,193.89415419,TJ,N2O,0.6,kg/TJ,116.33649251399999,kg +fa8ae279-cf82-3eda-83a3-f6886f2501ac,SESCO,II.1.1,Capital Federal,AR-C,annual,2016,bioetanol combustion consumption by to the public,96.48895608,TJ,CH4,10.0,kg/TJ,964.8895607999999,kg +71f7d547-74bb-3bee-967a-fc2a679f37c7,SESCO,II.1.1,Capital Federal,AR-C,annual,2016,bioetanol combustion consumption by to the public,96.48895608,TJ,N2O,0.6,kg/TJ,57.893373647999994,kg +0b2ec0d3-49aa-3661-b7f3-6e83b73b5617,SESCO,II.1.1,Catamarca,AR-K,annual,2016,bioetanol combustion consumption by to the public,8.091518489999999,TJ,CH4,10.0,kg/TJ,80.91518489999999,kg +13518211-5131-34a5-a242-c411ef449473,SESCO,II.1.1,Catamarca,AR-K,annual,2016,bioetanol combustion consumption by to the public,8.091518489999999,TJ,N2O,0.6,kg/TJ,4.854911093999999,kg +2972dfe1-180f-3f0a-a261-f9d9c3859d2d,SESCO,II.1.1,Chaco,AR-H,annual,2016,bioetanol combustion consumption by to the public,7.0979465699999995,TJ,CH4,10.0,kg/TJ,70.97946569999999,kg +6bb6c869-85de-36ce-8715-8a7635cd02e7,SESCO,II.1.1,Chaco,AR-H,annual,2016,bioetanol combustion consumption by to the public,7.0979465699999995,TJ,N2O,0.6,kg/TJ,4.2587679419999995,kg +879f3b6e-90c1-318d-bcc8-3dc36c81db2d,SESCO,II.1.1,Chubut,AR-U,annual,2016,bioetanol combustion consumption by to the public,4.7194666199999995,TJ,CH4,10.0,kg/TJ,47.19466619999999,kg +eea432e0-46ad-31bb-bc5a-bded9a21da21,SESCO,II.1.1,Chubut,AR-U,annual,2016,bioetanol combustion consumption by to the public,4.7194666199999995,TJ,N2O,0.6,kg/TJ,2.8316799719999994,kg +6218ff8a-66d4-3a83-875e-0c7ebb7b352b,SESCO,II.1.1,Corrientes,AR-W,annual,2016,bioetanol combustion consumption by to the public,10.78400466,TJ,CH4,10.0,kg/TJ,107.84004660000001,kg +058ef81a-8deb-38a5-ace1-e587a0282204,SESCO,II.1.1,Corrientes,AR-W,annual,2016,bioetanol combustion consumption by to the public,10.78400466,TJ,N2O,0.6,kg/TJ,6.470402796,kg +7d851fcc-68bc-30ad-a248-7c1d1fe71e4f,SESCO,II.1.1,Córdoba,AR-X,annual,2016,bioetanol combustion consumption by to the public,51.14786390999999,TJ,CH4,10.0,kg/TJ,511.4786390999999,kg +306222a5-72be-3830-aaf6-7d8589772522,SESCO,II.1.1,Córdoba,AR-X,annual,2016,bioetanol combustion consumption by to the public,51.14786390999999,TJ,N2O,0.6,kg/TJ,30.688718345999995,kg +fc571333-8a10-3efe-bea8-52fc2e1f8325,SESCO,II.1.1,Entre Rios,AR-E,annual,2016,bioetanol combustion consumption by to the public,20.40571764,TJ,CH4,10.0,kg/TJ,204.0571764,kg +1de53070-0e1a-3dcb-8747-b9710aa0bc99,SESCO,II.1.1,Entre Rios,AR-E,annual,2016,bioetanol combustion consumption by to the public,20.40571764,TJ,N2O,0.6,kg/TJ,12.243430583999999,kg +93a21678-6eee-3ef7-9254-b4eb109753ed,SESCO,II.1.1,Formosa,AR-P,annual,2016,bioetanol combustion consumption by to the public,11.187057419999999,TJ,CH4,10.0,kg/TJ,111.8705742,kg +a37cf16e-4454-3968-9665-eb116c4d2bc6,SESCO,II.1.1,Formosa,AR-P,annual,2016,bioetanol combustion consumption by to the public,11.187057419999999,TJ,N2O,0.6,kg/TJ,6.712234451999999,kg +69af76b4-a59c-3b43-b0cf-64143f35538d,SESCO,II.1.1,Jujuy,AR-Y,annual,2016,bioetanol combustion consumption by to the public,1.50910452,TJ,CH4,10.0,kg/TJ,15.0910452,kg +b231d99e-1fdf-3617-8538-169d1aaaad6b,SESCO,II.1.1,Jujuy,AR-Y,annual,2016,bioetanol combustion consumption by to the public,1.50910452,TJ,N2O,0.6,kg/TJ,0.905462712,kg +eff1a2ed-2a49-32ae-b2dd-11b57f69a168,SESCO,II.1.1,La Pampa,AR-L,annual,2016,bioetanol combustion consumption by to the public,3.64153482,TJ,CH4,10.0,kg/TJ,36.4153482,kg +d99884ed-9c09-34a1-abf8-d845a4cbe4f7,SESCO,II.1.1,La Pampa,AR-L,annual,2016,bioetanol combustion consumption by to the public,3.64153482,TJ,N2O,0.6,kg/TJ,2.184920892,kg +4416f4d1-fb19-3ada-921b-8db2d44a810e,SESCO,II.1.1,La Rioja,AR-F,annual,2016,bioetanol combustion consumption by to the public,1.3685047199999998,TJ,CH4,10.0,kg/TJ,13.685047199999998,kg +4032d342-9343-3824-b556-88e8613f84ec,SESCO,II.1.1,La Rioja,AR-F,annual,2016,bioetanol combustion consumption by to the public,1.3685047199999998,TJ,N2O,0.6,kg/TJ,0.8211028319999999,kg +09cd4545-74e7-36de-8288-57e32cc3225c,SESCO,II.1.1,Mendoza,AR-M,annual,2016,bioetanol combustion consumption by to the public,10.74885471,TJ,CH4,10.0,kg/TJ,107.4885471,kg +d548de02-a2a4-3e9d-bafa-525649710ab1,SESCO,II.1.1,Mendoza,AR-M,annual,2016,bioetanol combustion consumption by to the public,10.74885471,TJ,N2O,0.6,kg/TJ,6.449312826,kg +7ae4c6c2-dfb7-3a62-a7ab-00a9c919b283,SESCO,II.1.1,Misiones,AR-N,annual,2016,bioetanol combustion consumption by to the public,7.290099629999999,TJ,CH4,10.0,kg/TJ,72.90099629999999,kg +edd6f639-c05f-394a-b615-9f39ba4bbd34,SESCO,II.1.1,Misiones,AR-N,annual,2016,bioetanol combustion consumption by to the public,7.290099629999999,TJ,N2O,0.6,kg/TJ,4.3740597779999995,kg +0dff6a1c-a565-3891-8831-fcd9ed3d448e,SESCO,II.1.1,Neuquén,AR-Q,annual,2016,bioetanol combustion consumption by to the public,7.8196922099999995,TJ,CH4,10.0,kg/TJ,78.1969221,kg +add431dc-f174-3727-9316-d9d07f13a944,SESCO,II.1.1,Neuquén,AR-Q,annual,2016,bioetanol combustion consumption by to the public,7.8196922099999995,TJ,N2O,0.6,kg/TJ,4.6918153259999995,kg +e4572af7-ada3-3a6b-ab4a-c1569381cbed,SESCO,II.1.1,Rio Negro,AR-R,annual,2016,bioetanol combustion consumption by to the public,12.089239469999999,TJ,CH4,10.0,kg/TJ,120.89239469999998,kg +915f23e0-d366-3a44-ae8b-507396ab811c,SESCO,II.1.1,Rio Negro,AR-R,annual,2016,bioetanol combustion consumption by to the public,12.089239469999999,TJ,N2O,0.6,kg/TJ,7.253543681999999,kg +eb5dd228-e5dc-3cbe-a055-cd94db9cf0e7,SESCO,II.1.1,Salta,AR-A,annual,2016,bioetanol combustion consumption by to the public,0.98888526,TJ,CH4,10.0,kg/TJ,9.8888526,kg +59ae1c2c-f365-3863-9f22-cc27b0fbbcf8,SESCO,II.1.1,Salta,AR-A,annual,2016,bioetanol combustion consumption by to the public,0.98888526,TJ,N2O,0.6,kg/TJ,0.593331156,kg +fc356b2a-0998-33cb-a317-eed09b98224a,SESCO,II.1.1,San Juan,AR-J,annual,2016,bioetanol combustion consumption by to the public,4.59761346,TJ,CH4,10.0,kg/TJ,45.976134599999995,kg +4cd7b81b-6dc9-317c-8bc1-e832038d432a,SESCO,II.1.1,San Juan,AR-J,annual,2016,bioetanol combustion consumption by to the public,4.59761346,TJ,N2O,0.6,kg/TJ,2.758568076,kg +037dffc3-ca17-3962-8d24-01ea1c199c57,SESCO,II.1.1,San Luis,AR-D,annual,2016,bioetanol combustion consumption by to the public,9.35457336,TJ,CH4,10.0,kg/TJ,93.5457336,kg +623dd4b5-e647-31aa-b39b-24432da20e30,SESCO,II.1.1,San Luis,AR-D,annual,2016,bioetanol combustion consumption by to the public,9.35457336,TJ,N2O,0.6,kg/TJ,5.612744016,kg +a18cea04-67cd-30a3-8fc1-d5a80940186e,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2016,bioetanol combustion consumption by to the public,2.5401697199999997,TJ,CH4,10.0,kg/TJ,25.401697199999997,kg +03a89fe6-d44e-3045-a24b-54ad5ce67a35,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2016,bioetanol combustion consumption by to the public,2.5401697199999997,TJ,N2O,0.6,kg/TJ,1.5241018319999997,kg +dc286823-776f-3ad9-a2da-1e50672b32b1,SESCO,II.1.1,Santa Fe,AR-S,annual,2016,bioetanol combustion consumption by to the public,52.41091878,TJ,CH4,10.0,kg/TJ,524.1091878,kg +e34a3d1f-bb8d-34d6-b49d-e859c394dc7c,SESCO,II.1.1,Santa Fe,AR-S,annual,2016,bioetanol combustion consumption by to the public,52.41091878,TJ,N2O,0.6,kg/TJ,31.446551268,kg +b7cd46d4-1870-342b-866d-1c566510d5ee,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2016,bioetanol combustion consumption by to the public,7.62988248,TJ,CH4,10.0,kg/TJ,76.2988248,kg +1df8ea73-fc93-3e20-8bf8-a11288ad9d34,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2016,bioetanol combustion consumption by to the public,7.62988248,TJ,N2O,0.6,kg/TJ,4.577929488,kg +0269d2de-9b79-3ff2-8ae8-2092bf47312d,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2016,bioetanol combustion consumption by to the public,4.4078037299999995,TJ,CH4,10.0,kg/TJ,44.07803729999999,kg +5515ccf6-623b-3a1d-9925-6ad27d82af2e,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2016,bioetanol combustion consumption by to the public,4.4078037299999995,TJ,N2O,0.6,kg/TJ,2.6446822379999997,kg +fcc583d9-cd8e-3aff-b66b-ff9702d1767a,SESCO,II.1.1,Tucuman,AR-T,annual,2016,bioetanol combustion consumption by to the public,1.6051810499999999,TJ,CH4,10.0,kg/TJ,16.0518105,kg +c0e95a51-0923-3128-b24f-775b6bc04b60,SESCO,II.1.1,Tucuman,AR-T,annual,2016,bioetanol combustion consumption by to the public,1.6051810499999999,TJ,N2O,0.6,kg/TJ,0.9631086299999999,kg +6a8cb409-2a82-3fbe-ae8f-678a13535054,SESCO,II.1.1,Buenos Aires,AR-B,annual,2016,bioetanol combustion consumption by freight transport,0.6326991,TJ,CH4,10.0,kg/TJ,6.326991,kg +8406d880-88cf-3d95-ac89-435d9e0031b1,SESCO,II.1.1,Buenos Aires,AR-B,annual,2016,bioetanol combustion consumption by freight transport,0.6326991,TJ,N2O,0.6,kg/TJ,0.37961945999999996,kg +d5f0600a-a3ab-3ff5-87fe-da17b1b7085d,SESCO,II.1.1,Capital Federal,AR-C,annual,2016,bioetanol combustion consumption by freight transport,0.42648605999999994,TJ,CH4,10.0,kg/TJ,4.2648606,kg +ef26a23e-633a-3041-acb9-e18d583284fd,SESCO,II.1.1,Capital Federal,AR-C,annual,2016,bioetanol combustion consumption by freight transport,0.42648605999999994,TJ,N2O,0.6,kg/TJ,0.255891636,kg +6d42d135-b6ee-31b9-a37e-2c590ee537ea,SESCO,II.1.1,Córdoba,AR-X,annual,2016,bioetanol combustion consumption by freight transport,0.11716649999999999,TJ,CH4,10.0,kg/TJ,1.171665,kg +5bf06d85-3414-33b8-979b-eb265095807d,SESCO,II.1.1,Córdoba,AR-X,annual,2016,bioetanol combustion consumption by freight transport,0.11716649999999999,TJ,N2O,0.6,kg/TJ,0.0702999,kg +cadc9428-f574-34a6-b499-327a785c18e5,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2016,bioetanol combustion consumption by freight transport,0.18512306999999997,TJ,CH4,10.0,kg/TJ,1.8512306999999997,kg +86f485cf-85ec-338e-965d-dc6857b55b77,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2016,bioetanol combustion consumption by freight transport,0.18512306999999997,TJ,N2O,0.6,kg/TJ,0.11107384199999998,kg +9ddd1832-6c10-3252-8433-911f76797b46,SESCO,II.1.1,Santa Fe,AR-S,annual,2016,bioetanol combustion consumption by freight transport,0.49912928999999995,TJ,CH4,10.0,kg/TJ,4.9912928999999995,kg +9e99c01c-6713-3f41-888a-ee8cdd7253a7,SESCO,II.1.1,Santa Fe,AR-S,annual,2016,bioetanol combustion consumption by freight transport,0.49912928999999995,TJ,N2O,0.6,kg/TJ,0.29947757399999997,kg +69089264-1b4f-3924-acdf-ade836602154,SESCO,II.1.1,Buenos Aires,AR-B,annual,2016,bioetanol combustion consumption by freight transport,0.4217994,TJ,CH4,10.0,kg/TJ,4.217994,kg +3733a4e9-f319-333b-9b9d-f036503569e3,SESCO,II.1.1,Buenos Aires,AR-B,annual,2016,bioetanol combustion consumption by freight transport,0.4217994,TJ,N2O,0.6,kg/TJ,0.25307964,kg +f584452d-e9bc-3fa3-9c19-0830191dd3ef,SESCO,II.1.1,Capital Federal,AR-C,annual,2016,bioetanol combustion consumption by freight transport,0.36555948,TJ,CH4,10.0,kg/TJ,3.6555948,kg +8a99bac4-c915-33d0-836f-609ea8116970,SESCO,II.1.1,Capital Federal,AR-C,annual,2016,bioetanol combustion consumption by freight transport,0.36555948,TJ,N2O,0.6,kg/TJ,0.219335688,kg +cc9e8562-81d5-31ec-a028-1b974d641add,SESCO,II.1.1,Córdoba,AR-X,annual,2016,bioetanol combustion consumption by freight transport,0.04217994,TJ,CH4,10.0,kg/TJ,0.4217994,kg +0c8bbf8c-d2d9-3e00-9b33-a82189f34ff7,SESCO,II.1.1,Córdoba,AR-X,annual,2016,bioetanol combustion consumption by freight transport,0.04217994,TJ,N2O,0.6,kg/TJ,0.025307964,kg +7a050305-cbc6-37ec-9c54-092b61ab98f5,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2016,bioetanol combustion consumption by freight transport,0.0234333,TJ,CH4,10.0,kg/TJ,0.234333,kg +0f965096-8623-3f5f-8f62-e2f698045e11,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2016,bioetanol combustion consumption by freight transport,0.0234333,TJ,N2O,0.6,kg/TJ,0.01405998,kg +e038ca7f-ee10-3103-9c00-21bb8978d6c5,SESCO,II.1.1,Santa Fe,AR-S,annual,2016,bioetanol combustion consumption by freight transport,0.09607653,TJ,CH4,10.0,kg/TJ,0.9607652999999999,kg +02d098c8-56bb-38b5-b5d4-f511d410d91b,SESCO,II.1.1,Santa Fe,AR-S,annual,2016,bioetanol combustion consumption by freight transport,0.09607653,TJ,N2O,0.6,kg/TJ,0.05764591799999999,kg +dec9c0e9-dfdf-3805-83a7-3a3d19cbe0e5,SESCO,II.1.1,Santa Fe,AR-S,annual,2016,bioetanol combustion consumption by public passenger transport,0.0468666,TJ,CH4,10.0,kg/TJ,0.468666,kg +40ade20a-d8b4-3611-a320-69b99f656424,SESCO,II.1.1,Santa Fe,AR-S,annual,2016,bioetanol combustion consumption by public passenger transport,0.0468666,TJ,N2O,0.6,kg/TJ,0.02811996,kg +5c503842-ab5e-3936-8f87-e0a45fde6fe3,SESCO,II.1.1,Buenos Aires,AR-B,annual,2016,bioetanol combustion consumption by public passenger transport,0.0234333,TJ,CH4,10.0,kg/TJ,0.234333,kg +f4bd4708-bd02-335a-9ad0-a38bb8b93eae,SESCO,II.1.1,Buenos Aires,AR-B,annual,2016,bioetanol combustion consumption by public passenger transport,0.0234333,TJ,N2O,0.6,kg/TJ,0.01405998,kg +92cb3fe1-f1c1-399f-beec-774a042131d8,SESCO,II.1.1,Capital Federal,AR-C,annual,2016,bioetanol combustion consumption by public passenger transport,0.01640331,TJ,CH4,10.0,kg/TJ,0.16403310000000002,kg +02ef6973-a37f-32e9-aef5-795adfbb54d0,SESCO,II.1.1,Capital Federal,AR-C,annual,2016,bioetanol combustion consumption by public passenger transport,0.01640331,TJ,N2O,0.6,kg/TJ,0.009841986,kg +19f3fa28-a62a-3af0-9727-6650f21ef6c0,SESCO,II.1.1,Santa Fe,AR-S,annual,2016,bioetanol combustion consumption by public passenger transport,0.03749328,TJ,CH4,10.0,kg/TJ,0.37493279999999995,kg +b87f797b-6950-3a51-9be7-468dc72e90f6,SESCO,II.1.1,Santa Fe,AR-S,annual,2016,bioetanol combustion consumption by public passenger transport,0.03749328,TJ,N2O,0.6,kg/TJ,0.022495967999999998,kg +ecb2a895-c989-37b0-aa2b-aa93076b322c,SESCO,II.5.1,Santa Fe,AR-S,annual,2016,bioetanol combustion consumption by agriculture machines,0.3583888902,TJ,CH4,10.0,kg/TJ,3.583888902,kg +4a18ebce-bfae-3459-aab3-4f381d534081,SESCO,II.5.1,Santa Fe,AR-S,annual,2016,bioetanol combustion consumption by agriculture machines,0.3583888902,TJ,N2O,0.6,kg/TJ,0.21503333411999997,kg +fcaa5df3-93fa-3453-83d0-675ced91a4a4,SESCO,II.5.1,Santiago del Estero,AR-G,annual,2016,bioetanol combustion consumption by agriculture machines,0.3216126691799999,TJ,CH4,10.0,kg/TJ,3.216126691799999,kg +0f3475ec-fd90-36d5-8860-9798970269f0,SESCO,II.5.1,Santiago del Estero,AR-G,annual,2016,bioetanol combustion consumption by agriculture machines,0.3216126691799999,TJ,N2O,0.6,kg/TJ,0.19296760150799994,kg +fb070d00-c6fe-37e0-9ae0-b230d63e9321,SESCO,II.1.1,Buenos Aires,AR-B,annual,2016,bioetanol combustion consumption by to the public,132.70143681224098,TJ,CH4,10.0,kg/TJ,1327.01436812241,kg +a7a93e2e-18bc-3e01-bea3-b2bb98e69a24,SESCO,II.1.1,Buenos Aires,AR-B,annual,2016,bioetanol combustion consumption by to the public,132.70143681224098,TJ,N2O,0.6,kg/TJ,79.62086208734459,kg +e5689019-a360-381e-ba82-35e6decc02b9,SESCO,II.1.1,Capital Federal,AR-C,annual,2016,bioetanol combustion consumption by to the public,15.054987678290999,TJ,CH4,10.0,kg/TJ,150.54987678291,kg +e70ed0fd-d828-3b12-97d5-84be3cb4c98f,SESCO,II.1.1,Capital Federal,AR-C,annual,2016,bioetanol combustion consumption by to the public,15.054987678290999,TJ,N2O,0.6,kg/TJ,9.032992606974599,kg +58aefd9a-d17e-38e3-9159-ba568057fbdb,SESCO,II.1.1,Catamarca,AR-K,annual,2016,bioetanol combustion consumption by to the public,12.760996257107998,TJ,CH4,10.0,kg/TJ,127.60996257107998,kg +2153dac7-e952-3187-a518-489bde0b3852,SESCO,II.1.1,Catamarca,AR-K,annual,2016,bioetanol combustion consumption by to the public,12.760996257107998,TJ,N2O,0.6,kg/TJ,7.656597754264798,kg +c8862e0c-0cad-32e5-bc41-e8cc128743c3,SESCO,II.1.1,Chaco,AR-H,annual,2016,bioetanol combustion consumption by to the public,20.857912139097,TJ,CH4,10.0,kg/TJ,208.57912139097,kg +50a1849c-8069-359e-a5c2-95f809ffd86a,SESCO,II.1.1,Chaco,AR-H,annual,2016,bioetanol combustion consumption by to the public,20.857912139097,TJ,N2O,0.6,kg/TJ,12.514747283458199,kg +ae24d5b7-07c7-3fd4-987e-4b954a3d3552,SESCO,II.1.1,Corrientes,AR-W,annual,2016,bioetanol combustion consumption by to the public,20.272400440974,TJ,CH4,10.0,kg/TJ,202.72400440974,kg +8662bcb8-7ae8-375f-85c7-59f11e33ce00,SESCO,II.1.1,Corrientes,AR-W,annual,2016,bioetanol combustion consumption by to the public,20.272400440974,TJ,N2O,0.6,kg/TJ,12.1634402645844,kg +3313bede-0204-378c-924c-e1a30a78eba1,SESCO,II.1.1,Córdoba,AR-X,annual,2016,bioetanol combustion consumption by to the public,59.867064664803,TJ,CH4,10.0,kg/TJ,598.67064664803,kg +168ef6ef-f462-35d6-b2fd-4410e72f0ed7,SESCO,II.1.1,Córdoba,AR-X,annual,2016,bioetanol combustion consumption by to the public,59.867064664803,TJ,N2O,0.6,kg/TJ,35.9202387988818,kg +9724014a-6c43-3daa-a3ba-8640f9bb7f84,SESCO,II.1.1,Entre Rios,AR-E,annual,2016,bioetanol combustion consumption by to the public,28.104763036284,TJ,CH4,10.0,kg/TJ,281.04763036284004,kg +2ea67377-9238-3425-a874-1340732585f3,SESCO,II.1.1,Entre Rios,AR-E,annual,2016,bioetanol combustion consumption by to the public,28.104763036284,TJ,N2O,0.6,kg/TJ,16.8628578217704,kg +04ac3786-34c2-3268-bcb0-0fc874e1b9bb,SESCO,II.1.1,Jujuy,AR-Y,annual,2016,bioetanol combustion consumption by to the public,5.0338402741440005,TJ,CH4,10.0,kg/TJ,50.33840274144001,kg +c161483f-4047-3426-93d2-012bed6420c3,SESCO,II.1.1,Jujuy,AR-Y,annual,2016,bioetanol combustion consumption by to the public,5.0338402741440005,TJ,N2O,0.6,kg/TJ,3.0203041644864004,kg +c3c021cd-d0b8-337f-b8ca-4486ed8c2ee4,SESCO,II.1.1,La Pampa,AR-L,annual,2016,bioetanol combustion consumption by to the public,0.9270953972279999,TJ,CH4,10.0,kg/TJ,9.27095397228,kg +1be56113-f950-3f74-af31-9c32b772db63,SESCO,II.1.1,La Pampa,AR-L,annual,2016,bioetanol combustion consumption by to the public,0.9270953972279999,TJ,N2O,0.6,kg/TJ,0.5562572383368,kg +9fd644b4-01d8-3b8f-84b0-081040cf8af0,SESCO,II.1.1,La Rioja,AR-F,annual,2016,bioetanol combustion consumption by to the public,2.795136209316,TJ,CH4,10.0,kg/TJ,27.95136209316,kg +e80a3890-4024-3aaf-ad6d-ec55ca5ab8bf,SESCO,II.1.1,La Rioja,AR-F,annual,2016,bioetanol combustion consumption by to the public,2.795136209316,TJ,N2O,0.6,kg/TJ,1.6770817255896,kg +7b1268a9-0eab-3322-ab19-6fd7242ac63d,SESCO,II.1.1,Mendoza,AR-M,annual,2016,bioetanol combustion consumption by to the public,19.034717273549997,TJ,CH4,10.0,kg/TJ,190.34717273549998,kg +b10e8028-7e29-3709-a03e-d6876f11f07d,SESCO,II.1.1,Mendoza,AR-M,annual,2016,bioetanol combustion consumption by to the public,19.034717273549997,TJ,N2O,0.6,kg/TJ,11.420830364129998,kg +3a00f69a-8d32-33e2-a247-8f9d2b496b86,SESCO,II.1.1,Misiones,AR-N,annual,2016,bioetanol combustion consumption by to the public,19.217865853691997,TJ,CH4,10.0,kg/TJ,192.17865853691995,kg +7ee46021-0968-36c5-8699-820a3f4a96ee,SESCO,II.1.1,Misiones,AR-N,annual,2016,bioetanol combustion consumption by to the public,19.217865853691997,TJ,N2O,0.6,kg/TJ,11.530719512215198,kg +955e81c7-4333-33b8-91ce-b064499a3ea1,SESCO,II.1.1,Salta,AR-A,annual,2016,bioetanol combustion consumption by to the public,2.147696626284,TJ,CH4,10.0,kg/TJ,21.47696626284,kg +64b33305-d4c8-3c8e-aa5a-36db6f283929,SESCO,II.1.1,Salta,AR-A,annual,2016,bioetanol combustion consumption by to the public,2.147696626284,TJ,N2O,0.6,kg/TJ,1.2886179757704,kg +7a398942-6589-3b7c-b643-639ebb4aa989,SESCO,II.1.1,San Juan,AR-J,annual,2016,bioetanol combustion consumption by to the public,19.643239066275,TJ,CH4,10.0,kg/TJ,196.43239066275,kg +b118c4c0-65dc-384e-acb4-d59cdba7aace,SESCO,II.1.1,San Juan,AR-J,annual,2016,bioetanol combustion consumption by to the public,19.643239066275,TJ,N2O,0.6,kg/TJ,11.785943439765001,kg +cbf7269a-f087-3183-818d-d92e1fabc8e0,SESCO,II.1.1,San Luis,AR-D,annual,2016,bioetanol combustion consumption by to the public,12.255895693602,TJ,CH4,10.0,kg/TJ,122.55895693602,kg +d290bcf2-3d2f-3e3b-b60c-753613e75ec3,SESCO,II.1.1,San Luis,AR-D,annual,2016,bioetanol combustion consumption by to the public,12.255895693602,TJ,N2O,0.6,kg/TJ,7.353537416161199,kg +8994520d-65c4-34cd-907e-a87bb12c3381,SESCO,II.1.1,Santa Fe,AR-S,annual,2016,bioetanol combustion consumption by to the public,74.754336465666,TJ,CH4,10.0,kg/TJ,747.5433646566601,kg +67878b8d-a144-38a2-b62e-165857d3ab57,SESCO,II.1.1,Santa Fe,AR-S,annual,2016,bioetanol combustion consumption by to the public,74.754336465666,TJ,N2O,0.6,kg/TJ,44.8526018793996,kg +96600095-c902-3d11-9a85-8427859d37de,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2016,bioetanol combustion consumption by to the public,13.542334888005,TJ,CH4,10.0,kg/TJ,135.42334888004999,kg +eeac2458-8128-36eb-8ce5-b7bfede4269c,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2016,bioetanol combustion consumption by to the public,13.542334888005,TJ,N2O,0.6,kg/TJ,8.125400932803,kg +ea7e74a8-f669-3849-a295-f5cd774311e7,SESCO,II.1.1,Tucuman,AR-T,annual,2016,bioetanol combustion consumption by to the public,15.618639153843,TJ,CH4,10.0,kg/TJ,156.18639153843,kg +261a5b0e-ba87-36c3-82fc-793617c953d8,SESCO,II.1.1,Tucuman,AR-T,annual,2016,bioetanol combustion consumption by to the public,15.618639153843,TJ,N2O,0.6,kg/TJ,9.3711834923058,kg +78d9d89d-5a20-3927-a40a-529a217b397b,SESCO,II.1.1,Buenos Aires,AR-B,annual,2016,bioetanol combustion consumption by to the public,24.958681758846,TJ,CH4,10.0,kg/TJ,249.58681758846,kg +09d5fb4f-d2a3-3097-b074-cc8229dc146c,SESCO,II.1.1,Buenos Aires,AR-B,annual,2016,bioetanol combustion consumption by to the public,24.958681758846,TJ,N2O,0.6,kg/TJ,14.9752090553076,kg +3bfd47cf-d83b-365e-ae53-9030430ab064,SESCO,II.1.1,Capital Federal,AR-C,annual,2016,bioetanol combustion consumption by to the public,4.840149989664,TJ,CH4,10.0,kg/TJ,48.40149989664,kg +e88679d4-687f-3ee9-bf88-f9b9f7fc3c18,SESCO,II.1.1,Capital Federal,AR-C,annual,2016,bioetanol combustion consumption by to the public,4.840149989664,TJ,N2O,0.6,kg/TJ,2.9040899937984,kg +3401d7f6-9cc1-3b36-ac0c-c880918af3fb,SESCO,II.1.1,Catamarca,AR-K,annual,2016,bioetanol combustion consumption by to the public,1.5061521585329998,TJ,CH4,10.0,kg/TJ,15.061521585329999,kg +ebfed15d-d2c0-3a90-bf4a-d714eae4a5ca,SESCO,II.1.1,Catamarca,AR-K,annual,2016,bioetanol combustion consumption by to the public,1.5061521585329998,TJ,N2O,0.6,kg/TJ,0.9036912951197998,kg +58222348-b746-3d48-891a-8b053eba6a90,SESCO,II.1.1,Chaco,AR-H,annual,2016,bioetanol combustion consumption by to the public,2.042197566354,TJ,CH4,10.0,kg/TJ,20.42197566354,kg +fdb8585a-3b0a-33dd-8ef6-e5f4db18e7ba,SESCO,II.1.1,Chaco,AR-H,annual,2016,bioetanol combustion consumption by to the public,2.042197566354,TJ,N2O,0.6,kg/TJ,1.2253185398124,kg +a76f86b3-ce12-3215-b9b4-e351bea80b2b,SESCO,II.1.1,Corrientes,AR-W,annual,2016,bioetanol combustion consumption by to the public,5.321552691212999,TJ,CH4,10.0,kg/TJ,53.215526912129995,kg +783c1627-2a1d-3545-b992-fa6772185ee5,SESCO,II.1.1,Corrientes,AR-W,annual,2016,bioetanol combustion consumption by to the public,5.321552691212999,TJ,N2O,0.6,kg/TJ,3.1929316147277995,kg +cdcb5859-336a-3814-84bb-65f7ecbb3906,SESCO,II.1.1,Córdoba,AR-X,annual,2016,bioetanol combustion consumption by to the public,11.55425020101,TJ,CH4,10.0,kg/TJ,115.5425020101,kg +01eba23f-ebb5-3f31-aa3d-0757760378bb,SESCO,II.1.1,Córdoba,AR-X,annual,2016,bioetanol combustion consumption by to the public,11.55425020101,TJ,N2O,0.6,kg/TJ,6.932550120606,kg +aec8280b-a4ca-3779-b2bd-cebca5ba236c,SESCO,II.1.1,Entre Rios,AR-E,annual,2016,bioetanol combustion consumption by to the public,6.086006926461,TJ,CH4,10.0,kg/TJ,60.86006926461,kg +512bae5a-460e-30ac-977e-586ea042f70f,SESCO,II.1.1,Entre Rios,AR-E,annual,2016,bioetanol combustion consumption by to the public,6.086006926461,TJ,N2O,0.6,kg/TJ,3.6516041558765995,kg +88348af8-74d6-31f8-a7d7-9e1e31e3d864,SESCO,II.1.1,Jujuy,AR-Y,annual,2016,bioetanol combustion consumption by to the public,0.123507082314,TJ,CH4,10.0,kg/TJ,1.23507082314,kg +5a69d8eb-8e62-3356-9cf2-344c99b48916,SESCO,II.1.1,Jujuy,AR-Y,annual,2016,bioetanol combustion consumption by to the public,0.123507082314,TJ,N2O,0.6,kg/TJ,0.07410424938839999,kg +0eb3a80e-20a0-3324-99fe-d0fcbf5c7d28,SESCO,II.1.1,La Pampa,AR-L,annual,2016,bioetanol combustion consumption by to the public,0.29820538014299997,TJ,CH4,10.0,kg/TJ,2.9820538014299998,kg +d0ba8246-1536-3916-bed7-96e6caf902c3,SESCO,II.1.1,La Pampa,AR-L,annual,2016,bioetanol combustion consumption by to the public,0.29820538014299997,TJ,N2O,0.6,kg/TJ,0.17892322808579997,kg +2c5bc471-386f-3524-8d9a-604ab2d2951e,SESCO,II.1.1,La Rioja,AR-F,annual,2016,bioetanol combustion consumption by to the public,0.454397697963,TJ,CH4,10.0,kg/TJ,4.54397697963,kg +080014b5-6393-3911-b637-2e45381dbe2d,SESCO,II.1.1,La Rioja,AR-F,annual,2016,bioetanol combustion consumption by to the public,0.454397697963,TJ,N2O,0.6,kg/TJ,0.2726386187778,kg +75f84a46-ed1b-3d73-95f3-d175ade53beb,SESCO,II.1.1,Mendoza,AR-M,annual,2016,bioetanol combustion consumption by to the public,3.5350731201059995,TJ,CH4,10.0,kg/TJ,35.35073120105999,kg +504f0a6b-da38-34dc-bd2d-15f240f2159f,SESCO,II.1.1,Mendoza,AR-M,annual,2016,bioetanol combustion consumption by to the public,3.5350731201059995,TJ,N2O,0.6,kg/TJ,2.1210438720636,kg +456a807b-e259-3247-84b7-a50b84f04a34,SESCO,II.1.1,Misiones,AR-N,annual,2016,bioetanol combustion consumption by to the public,2.987193661452,TJ,CH4,10.0,kg/TJ,29.87193661452,kg +f129ecfe-2f78-34b4-ba0d-713554ed337b,SESCO,II.1.1,Misiones,AR-N,annual,2016,bioetanol combustion consumption by to the public,2.987193661452,TJ,N2O,0.6,kg/TJ,1.7923161968711998,kg +ea9a1dea-63e1-35fd-8995-5532a35b389a,SESCO,II.1.1,Salta,AR-A,annual,2016,bioetanol combustion consumption by to the public,0.055926148113,TJ,CH4,10.0,kg/TJ,0.55926148113,kg +0ce60b0d-85d8-3db3-ac27-913559ced6a9,SESCO,II.1.1,Salta,AR-A,annual,2016,bioetanol combustion consumption by to the public,0.055926148113,TJ,N2O,0.6,kg/TJ,0.0335556888678,kg +0137aaf4-bac3-32c5-b1a4-3fa4c7d0e60a,SESCO,II.1.1,San Juan,AR-J,annual,2016,bioetanol combustion consumption by to the public,4.688487328734,TJ,CH4,10.0,kg/TJ,46.88487328734,kg +e68249d4-ca98-38d0-9ed4-8595dd47b89e,SESCO,II.1.1,San Juan,AR-J,annual,2016,bioetanol combustion consumption by to the public,4.688487328734,TJ,N2O,0.6,kg/TJ,2.8130923972404003,kg +ffbb356e-3dd9-3358-a0ea-da738838736f,SESCO,II.1.1,San Luis,AR-D,annual,2016,bioetanol combustion consumption by to the public,3.05211468177,TJ,CH4,10.0,kg/TJ,30.5211468177,kg +2b4f6d6c-a75a-37ca-9d33-84ea9091ec34,SESCO,II.1.1,San Luis,AR-D,annual,2016,bioetanol combustion consumption by to the public,3.05211468177,TJ,N2O,0.6,kg/TJ,1.831268809062,kg +78d84c43-6abb-3d3f-99f2-44fb34be01e3,SESCO,II.1.1,Santa Fe,AR-S,annual,2016,bioetanol combustion consumption by to the public,15.911044557902999,TJ,CH4,10.0,kg/TJ,159.11044557903,kg +41ff48e9-93d9-3a11-b5d1-4bcd25fc00a4,SESCO,II.1.1,Santa Fe,AR-S,annual,2016,bioetanol combustion consumption by to the public,15.911044557902999,TJ,N2O,0.6,kg/TJ,9.5466267347418,kg +aeb9b8e9-9fef-3798-8664-94d92ec81a61,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2016,bioetanol combustion consumption by to the public,1.9963327399289998,TJ,CH4,10.0,kg/TJ,19.963327399289998,kg +3b6ffda9-d6d8-31d1-8ea8-120e31ff2604,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2016,bioetanol combustion consumption by to the public,1.9963327399289998,TJ,N2O,0.6,kg/TJ,1.1977996439574,kg +833c4023-b905-3c81-a85f-d2da66f7f719,SESCO,II.1.1,Tucuman,AR-T,annual,2016,bioetanol combustion consumption by to the public,2.034020047653,TJ,CH4,10.0,kg/TJ,20.34020047653,kg +87a6390d-bab4-3c86-97b9-a21c2b7e12a2,SESCO,II.1.1,Tucuman,AR-T,annual,2016,bioetanol combustion consumption by to the public,2.034020047653,TJ,N2O,0.6,kg/TJ,1.2204120285918,kg +7f296f88-f84b-3a40-ac19-76eeb2ea94b2,SESCO,II.5.1,Buenos Aires,AR-B,annual,2016,bioetanol combustion consumption by agriculture machines,0.509069461527,TJ,CH4,10.0,kg/TJ,5.0906946152699994,kg +23fb1e55-270f-3226-bd27-ecedde2a0f0f,SESCO,II.5.1,Buenos Aires,AR-B,annual,2016,bioetanol combustion consumption by agriculture machines,0.509069461527,TJ,N2O,0.6,kg/TJ,0.30544167691619994,kg +00a53d21-fe43-30ed-895c-b02da1a05888,SESCO,II.5.1,Rio Negro,AR-R,annual,2016,bioetanol combustion consumption by agriculture machines,0.14658466482,TJ,CH4,10.0,kg/TJ,1.4658466481999999,kg +10185bbb-6c5f-3e09-8761-5263895795ec,SESCO,II.5.1,Rio Negro,AR-R,annual,2016,bioetanol combustion consumption by agriculture machines,0.14658466482,TJ,N2O,0.6,kg/TJ,0.08795079889199998,kg +21bdb0bc-1cef-3f47-9db0-4d8831d34852,SESCO,II.1.1,Buenos Aires,AR-B,annual,2016,bioetanol combustion consumption by to the public,296.458393415382,TJ,CH4,10.0,kg/TJ,2964.58393415382,kg +412fedb9-4337-3397-8990-64ee5e8999f8,SESCO,II.1.1,Buenos Aires,AR-B,annual,2016,bioetanol combustion consumption by to the public,296.458393415382,TJ,N2O,0.6,kg/TJ,177.87503604922918,kg +4d66c12a-63d6-3c53-b837-609c7a5d8557,SESCO,II.1.1,Capital Federal,AR-C,annual,2016,bioetanol combustion consumption by to the public,54.352240207848,TJ,CH4,10.0,kg/TJ,543.52240207848,kg +deecf8b6-ca89-31d1-9996-a9c485161cde,SESCO,II.1.1,Capital Federal,AR-C,annual,2016,bioetanol combustion consumption by to the public,54.352240207848,TJ,N2O,0.6,kg/TJ,32.6113441247088,kg +30c94708-33e7-32c6-8dbb-274cabe5cef5,SESCO,II.1.1,Chubut,AR-U,annual,2016,bioetanol combustion consumption by to the public,103.68535109862599,TJ,CH4,10.0,kg/TJ,1036.8535109862598,kg +83321706-e6db-3e55-a0fa-4a47e0ead898,SESCO,II.1.1,Chubut,AR-U,annual,2016,bioetanol combustion consumption by to the public,103.68535109862599,TJ,N2O,0.6,kg/TJ,62.21121065917559,kg +4fd9c341-223e-3b06-b537-3cfe99cadad0,SESCO,II.1.1,Córdoba,AR-X,annual,2016,bioetanol combustion consumption by to the public,35.385618463767,TJ,CH4,10.0,kg/TJ,353.85618463767,kg +a8f758d4-8f03-36cd-8e39-a4832717d2d1,SESCO,II.1.1,Córdoba,AR-X,annual,2016,bioetanol combustion consumption by to the public,35.385618463767,TJ,N2O,0.6,kg/TJ,21.2313710782602,kg +36e4a5eb-fc0e-3629-8af1-c26e21f05887,SESCO,II.1.1,Entre Rios,AR-E,annual,2016,bioetanol combustion consumption by to the public,11.563456441581001,TJ,CH4,10.0,kg/TJ,115.63456441581002,kg +a05fa58f-f9f0-3726-a271-1c926b726366,SESCO,II.1.1,Entre Rios,AR-E,annual,2016,bioetanol combustion consumption by to the public,11.563456441581001,TJ,N2O,0.6,kg/TJ,6.938073864948601,kg +eda637ec-8550-3458-b6bd-4307646eeae8,SESCO,II.1.1,La Pampa,AR-L,annual,2016,bioetanol combustion consumption by to the public,29.059491449537997,TJ,CH4,10.0,kg/TJ,290.59491449537995,kg +ce5b7a82-6ce8-312d-b925-143dbb6f2a08,SESCO,II.1.1,La Pampa,AR-L,annual,2016,bioetanol combustion consumption by to the public,29.059491449537997,TJ,N2O,0.6,kg/TJ,17.4356948697228,kg +8e06960b-b041-3d30-987e-e8913136a020,SESCO,II.1.1,Mendoza,AR-M,annual,2016,bioetanol combustion consumption by to the public,0.543859476039,TJ,CH4,10.0,kg/TJ,5.43859476039,kg +9b073674-6e01-39f8-a0a7-765288fdf158,SESCO,II.1.1,Mendoza,AR-M,annual,2016,bioetanol combustion consumption by to the public,0.543859476039,TJ,N2O,0.6,kg/TJ,0.32631568562339996,kg +bcc297d8-ea01-3a49-be5f-8fcd7cf7a6f7,SESCO,II.1.1,Neuquén,AR-Q,annual,2016,bioetanol combustion consumption by to the public,41.928281823978,TJ,CH4,10.0,kg/TJ,419.28281823978,kg +27e06b97-c765-3564-8a76-0674e4d39838,SESCO,II.1.1,Neuquén,AR-Q,annual,2016,bioetanol combustion consumption by to the public,41.928281823978,TJ,N2O,0.6,kg/TJ,25.1569690943868,kg +496f4d7b-aafe-355d-af41-94b5adae4f65,SESCO,II.1.1,Rio Negro,AR-R,annual,2016,bioetanol combustion consumption by to the public,88.723940554557,TJ,CH4,10.0,kg/TJ,887.23940554557,kg +5a8bb5f8-9b04-3c63-bc6c-75e084d36d6e,SESCO,II.1.1,Rio Negro,AR-R,annual,2016,bioetanol combustion consumption by to the public,88.723940554557,TJ,N2O,0.6,kg/TJ,53.2343643327342,kg +f9961eff-c342-36c1-96ff-b6a29934c706,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2016,bioetanol combustion consumption by to the public,60.02539831757699,TJ,CH4,10.0,kg/TJ,600.2539831757699,kg +7df0f30e-7718-3437-be96-e360ddc2ef2b,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2016,bioetanol combustion consumption by to the public,60.02539831757699,TJ,N2O,0.6,kg/TJ,36.015238990546194,kg +65a4e23a-9e7d-3b41-8ec9-6fb540c8819a,SESCO,II.1.1,Santa Fe,AR-S,annual,2016,bioetanol combustion consumption by to the public,42.124481580555,TJ,CH4,10.0,kg/TJ,421.24481580555,kg +234415f0-14e9-3865-a0a8-7056bf968bcb,SESCO,II.1.1,Santa Fe,AR-S,annual,2016,bioetanol combustion consumption by to the public,42.124481580555,TJ,N2O,0.6,kg/TJ,25.274688948332997,kg +6389b36d-31f6-3488-942b-b5e2cb3d8a45,SESCO,II.1.1,Buenos Aires,AR-B,annual,2016,bioetanol combustion consumption by to the public,78.81346745464501,TJ,CH4,10.0,kg/TJ,788.13467454645,kg +b89de1f9-4a0b-377f-afdb-cbda8a8f0167,SESCO,II.1.1,Buenos Aires,AR-B,annual,2016,bioetanol combustion consumption by to the public,78.81346745464501,TJ,N2O,0.6,kg/TJ,47.288080472787,kg +59565871-37ba-3f7a-8ec8-300fbc94810e,SESCO,II.1.1,Capital Federal,AR-C,annual,2016,bioetanol combustion consumption by to the public,20.574607994424,TJ,CH4,10.0,kg/TJ,205.74607994424,kg +4ab463b3-5c3f-3604-91b6-ab14da3965cc,SESCO,II.1.1,Capital Federal,AR-C,annual,2016,bioetanol combustion consumption by to the public,20.574607994424,TJ,N2O,0.6,kg/TJ,12.344764796654399,kg +e7290290-61e5-3599-ad33-a5027b23d775,SESCO,II.1.1,Chubut,AR-U,annual,2016,bioetanol combustion consumption by to the public,21.761166965571,TJ,CH4,10.0,kg/TJ,217.61166965571,kg +65bd2c9c-f017-3d6d-af61-4d542c782cf1,SESCO,II.1.1,Chubut,AR-U,annual,2016,bioetanol combustion consumption by to the public,21.761166965571,TJ,N2O,0.6,kg/TJ,13.0567001793426,kg +02f070d0-e713-3309-8d28-21be66c3e031,SESCO,II.1.1,Córdoba,AR-X,annual,2016,bioetanol combustion consumption by to the public,9.008830250145,TJ,CH4,10.0,kg/TJ,90.08830250144999,kg +6b806b97-dc3f-37e7-a92e-2e273d1ee2a6,SESCO,II.1.1,Córdoba,AR-X,annual,2016,bioetanol combustion consumption by to the public,9.008830250145,TJ,N2O,0.6,kg/TJ,5.405298150087,kg +5ea9a2a9-0421-31ef-b067-ef62d83c2c22,SESCO,II.1.1,Entre Rios,AR-E,annual,2016,bioetanol combustion consumption by to the public,3.5602125986789996,TJ,CH4,10.0,kg/TJ,35.60212598679,kg +c62e4f01-0c84-3c44-8d2d-9f2cb1bb16f4,SESCO,II.1.1,Entre Rios,AR-E,annual,2016,bioetanol combustion consumption by to the public,3.5602125986789996,TJ,N2O,0.6,kg/TJ,2.1361275592073996,kg +0e4a4a14-6271-3c77-915b-84246525d608,SESCO,II.1.1,La Pampa,AR-L,annual,2016,bioetanol combustion consumption by to the public,10.009933398431999,TJ,CH4,10.0,kg/TJ,100.09933398431998,kg +3ced0c01-5fbb-3f46-843e-b51c54aef4cb,SESCO,II.1.1,La Pampa,AR-L,annual,2016,bioetanol combustion consumption by to the public,10.009933398431999,TJ,N2O,0.6,kg/TJ,6.005960039059199,kg +51a55a41-785c-3485-b775-55f58e32248a,SESCO,II.1.1,Mendoza,AR-M,annual,2016,bioetanol combustion consumption by to the public,0.15868515227399999,TJ,CH4,10.0,kg/TJ,1.58685152274,kg +44e54cd2-0fde-313e-b6f5-69ea744fcfaa,SESCO,II.1.1,Mendoza,AR-M,annual,2016,bioetanol combustion consumption by to the public,0.15868515227399999,TJ,N2O,0.6,kg/TJ,0.0952110913644,kg +c1dd1d72-79fa-3c8c-8979-4aaacfed44a1,SESCO,II.1.1,Neuquén,AR-Q,annual,2016,bioetanol combustion consumption by to the public,18.310571360631002,TJ,CH4,10.0,kg/TJ,183.10571360631002,kg +1afdb99a-2d28-3752-bcbb-0cd893e912a3,SESCO,II.1.1,Neuquén,AR-Q,annual,2016,bioetanol combustion consumption by to the public,18.310571360631002,TJ,N2O,0.6,kg/TJ,10.9863428163786,kg +9ef8d2bc-0a85-3a2b-a3d1-b7cd7919e137,SESCO,II.1.1,Rio Negro,AR-R,annual,2016,bioetanol combustion consumption by to the public,20.619712410263997,TJ,CH4,10.0,kg/TJ,206.19712410263998,kg +ecc01821-52ea-3c64-949c-59a75cb24135,SESCO,II.1.1,Rio Negro,AR-R,annual,2016,bioetanol combustion consumption by to the public,20.619712410263997,TJ,N2O,0.6,kg/TJ,12.371827446158397,kg +9d7bbd95-7268-3956-8955-a230dccc5fe1,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2016,bioetanol combustion consumption by to the public,13.381896221892001,TJ,CH4,10.0,kg/TJ,133.81896221892,kg +63104ff4-0aef-3162-94b6-696438bc82ca,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2016,bioetanol combustion consumption by to the public,13.381896221892001,TJ,N2O,0.6,kg/TJ,8.029137733135201,kg +da2607e3-03f6-3f23-a040-5416706409b3,SESCO,II.1.1,Santa Fe,AR-S,annual,2016,bioetanol combustion consumption by to the public,14.613246305658,TJ,CH4,10.0,kg/TJ,146.13246305658,kg +7dd5ac20-4192-3246-8d42-ff6ab6075039,SESCO,II.1.1,Santa Fe,AR-S,annual,2016,bioetanol combustion consumption by to the public,14.613246305658,TJ,N2O,0.6,kg/TJ,8.7679477833948,kg +7a0d60ff-886a-38a0-9f91-8215529f4482,SESCO,II.1.1,Buenos Aires,AR-B,annual,2016,bioetanol combustion consumption by to the public,29.506274028,TJ,CH4,10.0,kg/TJ,295.06274028,kg +07ee3185-6c5a-3a10-b956-e108773f7e49,SESCO,II.1.1,Buenos Aires,AR-B,annual,2016,bioetanol combustion consumption by to the public,29.506274028,TJ,N2O,0.6,kg/TJ,17.7037644168,kg +01ad7400-6586-3175-9128-6a90653a62ed,SESCO,II.1.1,Capital Federal,AR-C,annual,2016,bioetanol combustion consumption by to the public,2.83777263,TJ,CH4,10.0,kg/TJ,28.3777263,kg +611f8389-4c8b-370f-8708-b23c05a31b8e,SESCO,II.1.1,Capital Federal,AR-C,annual,2016,bioetanol combustion consumption by to the public,2.83777263,TJ,N2O,0.6,kg/TJ,1.702663578,kg +3b51c2cd-4f9e-3928-b5aa-89301776201b,SESCO,II.1.1,Corrientes,AR-W,annual,2016,bioetanol combustion consumption by to the public,0.29057292,TJ,CH4,10.0,kg/TJ,2.9057292,kg +23a6776a-3357-3825-9034-9be59cfb7a52,SESCO,II.1.1,Corrientes,AR-W,annual,2016,bioetanol combustion consumption by to the public,0.29057292,TJ,N2O,0.6,kg/TJ,0.174343752,kg +621d0e07-bdd9-3394-b7f9-fcccb847dc40,SESCO,II.1.1,Córdoba,AR-X,annual,2016,bioetanol combustion consumption by to the public,9.26084016,TJ,CH4,10.0,kg/TJ,92.60840160000001,kg +98c5b8f7-c762-3598-bfbc-e51b472122d1,SESCO,II.1.1,Córdoba,AR-X,annual,2016,bioetanol combustion consumption by to the public,9.26084016,TJ,N2O,0.6,kg/TJ,5.556504096,kg +f595275e-ad75-365f-a5d9-f7bedc73c1e4,SESCO,II.1.1,Entre Rios,AR-E,annual,2016,bioetanol combustion consumption by to the public,2.55657303,TJ,CH4,10.0,kg/TJ,25.5657303,kg +d3874986-41c2-3c82-86ef-e9edd61357e3,SESCO,II.1.1,Entre Rios,AR-E,annual,2016,bioetanol combustion consumption by to the public,2.55657303,TJ,N2O,0.6,kg/TJ,1.533943818,kg +11f3886b-b6f3-3f12-a03e-ffd4630640d7,SESCO,II.1.1,Santa Fe,AR-S,annual,2016,bioetanol combustion consumption by to the public,1.57940442,TJ,CH4,10.0,kg/TJ,15.794044199999998,kg +f3f264db-0aea-3ab1-8a93-8ba3ea1a1074,SESCO,II.1.1,Santa Fe,AR-S,annual,2016,bioetanol combustion consumption by to the public,1.57940442,TJ,N2O,0.6,kg/TJ,0.9476426519999999,kg +9826a71e-fc14-36ee-881e-bec1626d313b,SESCO,II.1.1,Buenos Aires,AR-B,annual,2016,bioetanol combustion consumption by to the public,3.726129033,TJ,CH4,10.0,kg/TJ,37.26129033,kg +4b644a17-7415-3b98-ae94-d06e771ebfd6,SESCO,II.1.1,Buenos Aires,AR-B,annual,2016,bioetanol combustion consumption by to the public,3.726129033,TJ,N2O,0.6,kg/TJ,2.2356774198,kg +a6dff89f-9983-3612-b175-cf357c2528d5,SESCO,II.1.1,Capital Federal,AR-C,annual,2016,bioetanol combustion consumption by to the public,0.22964633999999998,TJ,CH4,10.0,kg/TJ,2.2964634,kg +e71ffa4c-ed30-3a65-96ba-e669ff53fc76,SESCO,II.1.1,Capital Federal,AR-C,annual,2016,bioetanol combustion consumption by to the public,0.22964633999999998,TJ,N2O,0.6,kg/TJ,0.13778780399999999,kg +1f605ba3-9874-30e7-94d4-00c2a386964b,SESCO,II.1.1,Córdoba,AR-X,annual,2016,bioetanol combustion consumption by to the public,0.5483392199999999,TJ,CH4,10.0,kg/TJ,5.483392199999999,kg +492ac5f5-48d4-3315-bf9d-aeae011210c0,SESCO,II.1.1,Córdoba,AR-X,annual,2016,bioetanol combustion consumption by to the public,0.5483392199999999,TJ,N2O,0.6,kg/TJ,0.32900353199999993,kg +b7c7c64a-5711-3883-a57d-b7d961e3bf1f,SESCO,II.1.1,Entre Rios,AR-E,annual,2016,bioetanol combustion consumption by to the public,0.217695357,TJ,CH4,10.0,kg/TJ,2.1769535700000002,kg +72980f97-da3e-3c44-9065-1a9f8adb9c64,SESCO,II.1.1,Entre Rios,AR-E,annual,2016,bioetanol combustion consumption by to the public,0.217695357,TJ,N2O,0.6,kg/TJ,0.1306172142,kg +c39ac509-fc78-3861-a511-486f466b694d,SESCO,II.1.1,Santa Fe,AR-S,annual,2016,bioetanol combustion consumption by to the public,0.15465978,TJ,CH4,10.0,kg/TJ,1.5465978,kg +c941fe39-6e7b-3a95-a9da-6c5f6a438089,SESCO,II.1.1,Santa Fe,AR-S,annual,2016,bioetanol combustion consumption by to the public,0.15465978,TJ,N2O,0.6,kg/TJ,0.09279586799999999,kg +424b76bd-4c2d-3750-b336-dda4d9655bb6,SESCO,II.1.1,Catamarca,AR-K,annual,2016,bioetanol combustion consumption by to the public,20.4166844244,TJ,CH4,10.0,kg/TJ,204.166844244,kg +0c1cd512-ee4f-3487-ac09-119e05217059,SESCO,II.1.1,Catamarca,AR-K,annual,2016,bioetanol combustion consumption by to the public,20.4166844244,TJ,N2O,0.6,kg/TJ,12.250010654639999,kg +899062cb-9301-3904-823e-904d2fe25c54,SESCO,II.1.1,Chaco,AR-H,annual,2016,bioetanol combustion consumption by to the public,7.1192474397000005,TJ,CH4,10.0,kg/TJ,71.19247439700001,kg +208b1829-6397-3164-99fb-bcb4b1f23776,SESCO,II.1.1,Chaco,AR-H,annual,2016,bioetanol combustion consumption by to the public,7.1192474397000005,TJ,N2O,0.6,kg/TJ,4.27154846382,kg +1a112407-3f72-3650-9aa3-87ff8be514f7,SESCO,II.1.1,Jujuy,AR-Y,annual,2016,bioetanol combustion consumption by to the public,41.097555873,TJ,CH4,10.0,kg/TJ,410.97555873,kg +ee74ca3e-82a1-314c-b03a-0e16c663311f,SESCO,II.1.1,Jujuy,AR-Y,annual,2016,bioetanol combustion consumption by to the public,41.097555873,TJ,N2O,0.6,kg/TJ,24.6585335238,kg +26f67304-a1da-3745-9f4b-a7752062bb03,SESCO,II.1.1,La Rioja,AR-F,annual,2016,bioetanol combustion consumption by to the public,34.6680207522,TJ,CH4,10.0,kg/TJ,346.680207522,kg +e444b4f2-ffff-3865-ae6d-663e3e102bf4,SESCO,II.1.1,La Rioja,AR-F,annual,2016,bioetanol combustion consumption by to the public,34.6680207522,TJ,N2O,0.6,kg/TJ,20.80081245132,kg +096272fd-1e64-3ad1-896c-508c51a0adf2,SESCO,II.1.1,Salta,AR-A,annual,2016,bioetanol combustion consumption by to the public,81.40224604049999,TJ,CH4,10.0,kg/TJ,814.022460405,kg +a532c5db-b8db-32f1-b187-12e5302f5d6f,SESCO,II.1.1,Salta,AR-A,annual,2016,bioetanol combustion consumption by to the public,81.40224604049999,TJ,N2O,0.6,kg/TJ,48.84134762429999,kg +a268fa5b-f32f-34bb-86b2-02a1e57b51b6,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2016,bioetanol combustion consumption by to the public,39.281311089899994,TJ,CH4,10.0,kg/TJ,392.8131108989999,kg +3101b95e-21b2-33b3-a7ef-001851e977a2,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2016,bioetanol combustion consumption by to the public,39.281311089899994,TJ,N2O,0.6,kg/TJ,23.568786653939995,kg +0e72fc29-e72c-355e-a3b2-54695014dfa5,SESCO,II.1.1,Tucuman,AR-T,annual,2016,bioetanol combustion consumption by to the public,150.0387566733,TJ,CH4,10.0,kg/TJ,1500.387566733,kg +479cb9d0-d465-3f1b-8b27-f3a889115a05,SESCO,II.1.1,Tucuman,AR-T,annual,2016,bioetanol combustion consumption by to the public,150.0387566733,TJ,N2O,0.6,kg/TJ,90.02325400398,kg +20840cfa-9af2-3b98-a826-f7fc20498759,SESCO,II.1.1,Catamarca,AR-K,annual,2016,bioetanol combustion consumption by to the public,1.6858853352,TJ,CH4,10.0,kg/TJ,16.858853352,kg +2cc39e9d-27a0-3f4e-9f03-33b45bc98627,SESCO,II.1.1,Catamarca,AR-K,annual,2016,bioetanol combustion consumption by to the public,1.6858853352,TJ,N2O,0.6,kg/TJ,1.01153120112,kg +b9d05ec1-6068-3e88-9afa-267a4fe95fc8,SESCO,II.1.1,Chaco,AR-H,annual,2016,bioetanol combustion consumption by to the public,0.11489346989999999,TJ,CH4,10.0,kg/TJ,1.1489346989999998,kg +a6eabde5-4c53-3ed0-ad52-a76ce05aba6c,SESCO,II.1.1,Chaco,AR-H,annual,2016,bioetanol combustion consumption by to the public,0.11489346989999999,TJ,N2O,0.6,kg/TJ,0.06893608193999999,kg +9359f7cd-a9d6-3f9c-b70d-23fe61d7f77a,SESCO,II.1.1,Jujuy,AR-Y,annual,2016,bioetanol combustion consumption by to the public,1.9578287817,TJ,CH4,10.0,kg/TJ,19.578287817,kg +a7c2f926-194a-37bc-8b37-08c09f6c5120,SESCO,II.1.1,Jujuy,AR-Y,annual,2016,bioetanol combustion consumption by to the public,1.9578287817,TJ,N2O,0.6,kg/TJ,1.17469726902,kg +2b48c6f5-91f7-3225-ab41-d2ac7088859a,SESCO,II.1.1,La Rioja,AR-F,annual,2016,bioetanol combustion consumption by to the public,2.3023685916,TJ,CH4,10.0,kg/TJ,23.023685916,kg +ec405814-2c5a-38ce-8e54-63ead230906d,SESCO,II.1.1,La Rioja,AR-F,annual,2016,bioetanol combustion consumption by to the public,2.3023685916,TJ,N2O,0.6,kg/TJ,1.38142115496,kg +6ec1bce4-656b-3e3f-9bab-5026dd95a7b2,SESCO,II.1.1,Salta,AR-A,annual,2016,bioetanol combustion consumption by to the public,4.5696575331,TJ,CH4,10.0,kg/TJ,45.696575331,kg +fda3f857-b4d6-3afa-ac92-8d39a61c3d9e,SESCO,II.1.1,Salta,AR-A,annual,2016,bioetanol combustion consumption by to the public,4.5696575331,TJ,N2O,0.6,kg/TJ,2.74179451986,kg +9a07f8d8-593e-3347-ac49-d04282647625,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2016,bioetanol combustion consumption by to the public,3.0668800040999997,TJ,CH4,10.0,kg/TJ,30.668800040999997,kg +e5a21bd7-6958-3d70-8f9e-3294f26a2af4,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2016,bioetanol combustion consumption by to the public,3.0668800040999997,TJ,N2O,0.6,kg/TJ,1.8401280024599997,kg +2185f12b-be00-38ca-962b-61874fe34552,SESCO,II.1.1,Tucuman,AR-T,annual,2016,bioetanol combustion consumption by to the public,9.6507468387,TJ,CH4,10.0,kg/TJ,96.507468387,kg +9421e13e-cded-3838-92d9-1082a19aff15,SESCO,II.1.1,Tucuman,AR-T,annual,2016,bioetanol combustion consumption by to the public,9.6507468387,TJ,N2O,0.6,kg/TJ,5.79044810322,kg +a17b563f-1752-3cb1-9092-e5a79a8244da,SESCO,II.1.1,Buenos Aires,AR-B,annual,2016,bioetanol combustion consumption by to the public,3.59935488,TJ,CH4,10.0,kg/TJ,35.9935488,kg +dd0f6e0d-f461-3666-9654-f894221c8e0c,SESCO,II.1.1,Buenos Aires,AR-B,annual,2016,bioetanol combustion consumption by to the public,3.59935488,TJ,N2O,0.6,kg/TJ,2.159612928,kg +2b13ded6-aa58-32c3-8dac-68b39390c557,SESCO,II.1.1,Entre Rios,AR-E,annual,2016,bioetanol combustion consumption by to the public,1.81608075,TJ,CH4,10.0,kg/TJ,18.1608075,kg +70f00f8c-2958-32f6-8457-c5a7a27b2286,SESCO,II.1.1,Entre Rios,AR-E,annual,2016,bioetanol combustion consumption by to the public,1.81608075,TJ,N2O,0.6,kg/TJ,1.0896484499999999,kg +6997fb75-24fc-3ca0-a2f7-3479ffed5873,SESCO,II.1.1,Buenos Aires,AR-B,annual,2016,bioetanol combustion consumption by to the public,1084.99225329,TJ,CH4,10.0,kg/TJ,10849.9225329,kg +7890b35a-1ceb-31d4-bca0-9b9c89b0d7aa,SESCO,II.1.1,Buenos Aires,AR-B,annual,2016,bioetanol combustion consumption by to the public,1084.99225329,TJ,N2O,0.6,kg/TJ,650.995351974,kg +e31d37d3-14f2-3d02-8440-152392cb176f,SESCO,II.1.1,Capital Federal,AR-C,annual,2016,bioetanol combustion consumption by to the public,328.6285992,TJ,CH4,10.0,kg/TJ,3286.285992,kg +38d4952d-0cfe-360f-aaaf-6c0f0d5ba9aa,SESCO,II.1.1,Capital Federal,AR-C,annual,2016,bioetanol combustion consumption by to the public,328.6285992,TJ,N2O,0.6,kg/TJ,197.17715952,kg +4972f85d-5012-368f-bacc-4e14c718a207,SESCO,II.1.1,Catamarca,AR-K,annual,2016,bioetanol combustion consumption by to the public,4.33750383,TJ,CH4,10.0,kg/TJ,43.3750383,kg +6223f75a-4420-3194-9a81-cba3ce6a7555,SESCO,II.1.1,Catamarca,AR-K,annual,2016,bioetanol combustion consumption by to the public,4.33750383,TJ,N2O,0.6,kg/TJ,2.602502298,kg +41565e57-da12-30ac-8a23-3c384ee55736,SESCO,II.1.1,Chaco,AR-H,annual,2016,bioetanol combustion consumption by to the public,63.358956539999994,TJ,CH4,10.0,kg/TJ,633.5895654,kg +1cbdbf52-defd-3d6f-a766-5c70c1971240,SESCO,II.1.1,Chaco,AR-H,annual,2016,bioetanol combustion consumption by to the public,63.358956539999994,TJ,N2O,0.6,kg/TJ,38.015373923999995,kg +68a54c05-3e79-3fd9-a3df-dee1f3cd9b1c,SESCO,II.1.1,Corrientes,AR-W,annual,2016,bioetanol combustion consumption by to the public,64.17443537999999,TJ,CH4,10.0,kg/TJ,641.7443537999999,kg +bd1982b6-10ce-3443-a4b6-3ac1accbcb0b,SESCO,II.1.1,Corrientes,AR-W,annual,2016,bioetanol combustion consumption by to the public,64.17443537999999,TJ,N2O,0.6,kg/TJ,38.504661227999996,kg +2c9f9737-c567-3059-a551-0471d7f0191c,SESCO,II.1.1,Córdoba,AR-X,annual,2016,bioetanol combustion consumption by to the public,224.52147729,TJ,CH4,10.0,kg/TJ,2245.2147729,kg +c639e09d-f218-3b4f-97d7-766873bfa1b3,SESCO,II.1.1,Córdoba,AR-X,annual,2016,bioetanol combustion consumption by to the public,224.52147729,TJ,N2O,0.6,kg/TJ,134.712886374,kg +cf3d5b53-a166-3157-9956-874b8d639773,SESCO,II.1.1,Entre Rios,AR-E,annual,2016,bioetanol combustion consumption by to the public,64.26816858,TJ,CH4,10.0,kg/TJ,642.6816858,kg +9133a6e6-e5fc-3693-8bf9-738b9ab87e40,SESCO,II.1.1,Entre Rios,AR-E,annual,2016,bioetanol combustion consumption by to the public,64.26816858,TJ,N2O,0.6,kg/TJ,38.56090114799999,kg +93668766-4115-3da0-bb09-3229351d061a,SESCO,II.1.1,Formosa,AR-P,annual,2016,bioetanol combustion consumption by to the public,29.96650404,TJ,CH4,10.0,kg/TJ,299.6650404,kg +9cda0e51-b769-3151-b6ac-53dc6400be4a,SESCO,II.1.1,Formosa,AR-P,annual,2016,bioetanol combustion consumption by to the public,29.96650404,TJ,N2O,0.6,kg/TJ,17.979902424,kg +b4a0fcd8-28ab-3af6-8349-85a246af726a,SESCO,II.1.1,Jujuy,AR-Y,annual,2016,bioetanol combustion consumption by to the public,13.43665422,TJ,CH4,10.0,kg/TJ,134.3665422,kg +1e1dcc1a-b092-3158-8f7b-1fe3bc15bc1e,SESCO,II.1.1,Jujuy,AR-Y,annual,2016,bioetanol combustion consumption by to the public,13.43665422,TJ,N2O,0.6,kg/TJ,8.061992532,kg +7fa0248f-3592-3bd7-918e-5b9f6be10d78,SESCO,II.1.1,La Pampa,AR-L,annual,2016,bioetanol combustion consumption by to the public,22.451444730000002,TJ,CH4,10.0,kg/TJ,224.51444730000003,kg +6a0c184c-9ffd-3460-a3cd-9f3a90b57ec4,SESCO,II.1.1,La Pampa,AR-L,annual,2016,bioetanol combustion consumption by to the public,22.451444730000002,TJ,N2O,0.6,kg/TJ,13.470866838000001,kg +0de17de7-dc76-3077-91a1-571ad0a0f49a,SESCO,II.1.1,La Rioja,AR-F,annual,2016,bioetanol combustion consumption by to the public,21.03607341,TJ,CH4,10.0,kg/TJ,210.3607341,kg +a963e8f3-5ef1-3277-8410-d675f1ebc893,SESCO,II.1.1,La Rioja,AR-F,annual,2016,bioetanol combustion consumption by to the public,21.03607341,TJ,N2O,0.6,kg/TJ,12.621644046,kg +728580de-6500-31d2-8fec-76047eb1943f,SESCO,II.1.1,Mendoza,AR-M,annual,2016,bioetanol combustion consumption by to the public,62.50129776,TJ,CH4,10.0,kg/TJ,625.0129776,kg +8278730e-31a9-3291-8aff-b2c322829895,SESCO,II.1.1,Mendoza,AR-M,annual,2016,bioetanol combustion consumption by to the public,62.50129776,TJ,N2O,0.6,kg/TJ,37.500778656,kg +8c2131aa-d68d-3ed8-8bc8-1476fe178361,SESCO,II.1.1,Misiones,AR-N,annual,2016,bioetanol combustion consumption by to the public,82.75704228000001,TJ,CH4,10.0,kg/TJ,827.5704228000001,kg +6d7e47cb-1a6b-3387-98e8-7c03c7a77da1,SESCO,II.1.1,Misiones,AR-N,annual,2016,bioetanol combustion consumption by to the public,82.75704228000001,TJ,N2O,0.6,kg/TJ,49.654225368000006,kg +31565e50-4f6e-36d9-8716-0c6211061f2f,SESCO,II.1.1,Neuquén,AR-Q,annual,2016,bioetanol combustion consumption by to the public,33.09016293,TJ,CH4,10.0,kg/TJ,330.90162929999997,kg +042a3205-c725-30cf-b72e-27c8ec3de389,SESCO,II.1.1,Neuquén,AR-Q,annual,2016,bioetanol combustion consumption by to the public,33.09016293,TJ,N2O,0.6,kg/TJ,19.854097757999998,kg +7dbc4860-67fa-39cc-ae52-cb57af01e86c,SESCO,II.1.1,Rio Negro,AR-R,annual,2016,bioetanol combustion consumption by to the public,10.75119804,TJ,CH4,10.0,kg/TJ,107.5119804,kg +ceca1021-8834-35af-914b-18259374f3bd,SESCO,II.1.1,Rio Negro,AR-R,annual,2016,bioetanol combustion consumption by to the public,10.75119804,TJ,N2O,0.6,kg/TJ,6.450718824,kg +8ecb6865-6dd8-3675-a383-843267e43e0b,SESCO,II.1.1,Salta,AR-A,annual,2016,bioetanol combustion consumption by to the public,17.574975,TJ,CH4,10.0,kg/TJ,175.74974999999998,kg +f252ebc5-ea3e-37f6-8915-52c9cddd71cb,SESCO,II.1.1,Salta,AR-A,annual,2016,bioetanol combustion consumption by to the public,17.574975,TJ,N2O,0.6,kg/TJ,10.544984999999999,kg +dcacdbce-3eb0-3a64-b7a8-d35fe6cfa984,SESCO,II.1.1,San Juan,AR-J,annual,2016,bioetanol combustion consumption by to the public,12.766461839999998,TJ,CH4,10.0,kg/TJ,127.66461839999998,kg +5caadfdf-bd60-3e0e-a413-34b46be3b276,SESCO,II.1.1,San Juan,AR-J,annual,2016,bioetanol combustion consumption by to the public,12.766461839999998,TJ,N2O,0.6,kg/TJ,7.659877103999999,kg +5af4f36f-639b-3542-b1e7-dd83ef09bdb9,SESCO,II.1.1,San Luis,AR-D,annual,2016,bioetanol combustion consumption by to the public,2.3573899799999998,TJ,CH4,10.0,kg/TJ,23.5738998,kg +f255599f-9be3-3961-99a5-b6b0aab30fd1,SESCO,II.1.1,San Luis,AR-D,annual,2016,bioetanol combustion consumption by to the public,2.3573899799999998,TJ,N2O,0.6,kg/TJ,1.4144339879999999,kg +a15a88cb-7ad3-3063-a2f0-961a0d170874,SESCO,II.1.1,Santa Fe,AR-S,annual,2016,bioetanol combustion consumption by to the public,250.27467399,TJ,CH4,10.0,kg/TJ,2502.7467398999997,kg +f59d2757-173b-3424-ba7b-2c4b65a99a4b,SESCO,II.1.1,Santa Fe,AR-S,annual,2016,bioetanol combustion consumption by to the public,250.27467399,TJ,N2O,0.6,kg/TJ,150.164804394,kg +36141202-988e-30b7-9fe4-1d6be103dffe,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2016,bioetanol combustion consumption by to the public,25.418100510000002,TJ,CH4,10.0,kg/TJ,254.18100510000002,kg +8b2cbf8c-c88b-3f34-a4b9-38eb67277910,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2016,bioetanol combustion consumption by to the public,25.418100510000002,TJ,N2O,0.6,kg/TJ,15.250860306,kg +51a59994-c668-3a12-9464-bd6c603e0086,SESCO,II.1.1,Tucuman,AR-T,annual,2016,bioetanol combustion consumption by to the public,55.64940084,TJ,CH4,10.0,kg/TJ,556.4940084,kg +9b8f96a8-50b4-31c4-b350-19f301b45a22,SESCO,II.1.1,Tucuman,AR-T,annual,2016,bioetanol combustion consumption by to the public,55.64940084,TJ,N2O,0.6,kg/TJ,33.389640504,kg +07808ad3-9a8c-3f03-ba4c-6706d7ff91a7,SESCO,II.1.1,Buenos Aires,AR-B,annual,2016,bioetanol combustion consumption by to the public,574.8305656499999,TJ,CH4,10.0,kg/TJ,5748.305656499999,kg +b6f990eb-cde5-38a7-9199-7385f26e0d1e,SESCO,II.1.1,Buenos Aires,AR-B,annual,2016,bioetanol combustion consumption by to the public,574.8305656499999,TJ,N2O,0.6,kg/TJ,344.89833938999993,kg +d3dec21b-d837-3fa0-bc52-77bd87b76137,SESCO,II.1.1,Capital Federal,AR-C,annual,2016,bioetanol combustion consumption by to the public,243.41340375,TJ,CH4,10.0,kg/TJ,2434.1340375,kg +bf056da3-f782-34b4-827f-ec09b122d063,SESCO,II.1.1,Capital Federal,AR-C,annual,2016,bioetanol combustion consumption by to the public,243.41340375,TJ,N2O,0.6,kg/TJ,146.04804224999998,kg +42fcc6ce-d3bc-348c-ad87-e52869aeeb76,SESCO,II.1.1,Catamarca,AR-K,annual,2016,bioetanol combustion consumption by to the public,3.11428557,TJ,CH4,10.0,kg/TJ,31.1428557,kg +63096d99-e1b9-317f-8787-45ece2bb806f,SESCO,II.1.1,Catamarca,AR-K,annual,2016,bioetanol combustion consumption by to the public,3.11428557,TJ,N2O,0.6,kg/TJ,1.8685713419999999,kg +e5abdbee-bea7-30ef-8edc-8c277a7c3b8d,SESCO,II.1.1,Chaco,AR-H,annual,2016,bioetanol combustion consumption by to the public,25.65243351,TJ,CH4,10.0,kg/TJ,256.52433510000003,kg +111fdbe7-5e2c-3545-8616-1f419c231b42,SESCO,II.1.1,Chaco,AR-H,annual,2016,bioetanol combustion consumption by to the public,25.65243351,TJ,N2O,0.6,kg/TJ,15.391460106,kg +2c208b34-1246-3f8b-9d88-1d5fa20fde77,SESCO,II.1.1,Corrientes,AR-W,annual,2016,bioetanol combustion consumption by to the public,25.91254314,TJ,CH4,10.0,kg/TJ,259.1254314,kg +997270e2-be5f-340f-a7d2-0ceede948238,SESCO,II.1.1,Corrientes,AR-W,annual,2016,bioetanol combustion consumption by to the public,25.91254314,TJ,N2O,0.6,kg/TJ,15.547525883999999,kg +50ee6b64-4d99-3ef8-9dd7-6329faf62a8f,SESCO,II.1.1,Córdoba,AR-X,annual,2016,bioetanol combustion consumption by to the public,103.33382301,TJ,CH4,10.0,kg/TJ,1033.3382301000001,kg +aad21cde-aa20-33d2-93ef-364c50d363b3,SESCO,II.1.1,Córdoba,AR-X,annual,2016,bioetanol combustion consumption by to the public,103.33382301,TJ,N2O,0.6,kg/TJ,62.000293806,kg +277fc1b9-09f0-36c9-9989-ff657185ce18,SESCO,II.1.1,Entre Rios,AR-E,annual,2016,bioetanol combustion consumption by to the public,29.08541196,TJ,CH4,10.0,kg/TJ,290.8541196,kg +e70a53c0-6a55-33a5-884b-9c089d0190ae,SESCO,II.1.1,Entre Rios,AR-E,annual,2016,bioetanol combustion consumption by to the public,29.08541196,TJ,N2O,0.6,kg/TJ,17.451247176,kg +6f3f308e-0768-3c4c-bc16-0f44258c8c71,SESCO,II.1.1,Formosa,AR-P,annual,2016,bioetanol combustion consumption by to the public,14.04592002,TJ,CH4,10.0,kg/TJ,140.4592002,kg +1fdb1b28-f07a-300e-bfd6-5d779ad0cec7,SESCO,II.1.1,Formosa,AR-P,annual,2016,bioetanol combustion consumption by to the public,14.04592002,TJ,N2O,0.6,kg/TJ,8.427552012,kg +05b0e2f1-fbef-3430-8de5-69d9dd4ff60e,SESCO,II.1.1,Jujuy,AR-Y,annual,2016,bioetanol combustion consumption by to the public,2.9572824599999996,TJ,CH4,10.0,kg/TJ,29.572824599999997,kg +fac21b2b-4b77-3ba7-bd84-26ba3c5b1d3f,SESCO,II.1.1,Jujuy,AR-Y,annual,2016,bioetanol combustion consumption by to the public,2.9572824599999996,TJ,N2O,0.6,kg/TJ,1.7743694759999997,kg +1ab94e72-9414-3dec-b052-aa215650cdd6,SESCO,II.1.1,La Pampa,AR-L,annual,2016,bioetanol combustion consumption by to the public,12.257959229999999,TJ,CH4,10.0,kg/TJ,122.57959229999999,kg +85ffc2fc-8d45-35b2-91f9-466453e4ae6e,SESCO,II.1.1,La Pampa,AR-L,annual,2016,bioetanol combustion consumption by to the public,12.257959229999999,TJ,N2O,0.6,kg/TJ,7.354775537999999,kg +0fe5bf1a-ff08-3960-9520-a246e71c42e9,SESCO,II.1.1,La Rioja,AR-F,annual,2016,bioetanol combustion consumption by to the public,7.01358669,TJ,CH4,10.0,kg/TJ,70.1358669,kg +e94602b8-4bb0-3002-abd6-92e10a9f4eb8,SESCO,II.1.1,La Rioja,AR-F,annual,2016,bioetanol combustion consumption by to the public,7.01358669,TJ,N2O,0.6,kg/TJ,4.208152014,kg +b57c3a1f-dbe9-3ffb-a614-bad809fbfe6f,SESCO,II.1.1,Mendoza,AR-M,annual,2016,bioetanol combustion consumption by to the public,33.33152592,TJ,CH4,10.0,kg/TJ,333.31525919999996,kg +eda7318b-dcf0-32fa-83a1-02488531db86,SESCO,II.1.1,Mendoza,AR-M,annual,2016,bioetanol combustion consumption by to the public,33.33152592,TJ,N2O,0.6,kg/TJ,19.998915551999996,kg +e2285493-035f-377f-85f8-8387cf3f5cbd,SESCO,II.1.1,Misiones,AR-N,annual,2016,bioetanol combustion consumption by to the public,24.38469198,TJ,CH4,10.0,kg/TJ,243.8469198,kg +a1a0f1be-a116-3451-ab48-9a4afcd0c1e4,SESCO,II.1.1,Misiones,AR-N,annual,2016,bioetanol combustion consumption by to the public,24.38469198,TJ,N2O,0.6,kg/TJ,14.630815188,kg +efbf7c4c-7aad-32ea-b5a2-4873fdcb41e0,SESCO,II.1.1,Neuquén,AR-Q,annual,2016,bioetanol combustion consumption by to the public,24.818208029999997,TJ,CH4,10.0,kg/TJ,248.18208029999997,kg +1eeea28a-74d9-363b-8947-ccf73e5a2cd3,SESCO,II.1.1,Neuquén,AR-Q,annual,2016,bioetanol combustion consumption by to the public,24.818208029999997,TJ,N2O,0.6,kg/TJ,14.890924817999998,kg +d0ef227d-6996-3591-89f6-45b4cba1d31d,SESCO,II.1.1,Rio Negro,AR-R,annual,2016,bioetanol combustion consumption by to the public,6.12312129,TJ,CH4,10.0,kg/TJ,61.2312129,kg +cf219096-83e4-3492-89ce-40d4165926e9,SESCO,II.1.1,Rio Negro,AR-R,annual,2016,bioetanol combustion consumption by to the public,6.12312129,TJ,N2O,0.6,kg/TJ,3.673872774,kg +deeaba68-6508-3c21-a158-88cda7e5fadf,SESCO,II.1.1,Salta,AR-A,annual,2016,bioetanol combustion consumption by to the public,6.587100629999999,TJ,CH4,10.0,kg/TJ,65.87100629999999,kg +906973e5-73e4-366c-9a3b-e978bb5b682b,SESCO,II.1.1,Salta,AR-A,annual,2016,bioetanol combustion consumption by to the public,6.587100629999999,TJ,N2O,0.6,kg/TJ,3.952260377999999,kg +ff952113-7ca1-3e4c-8d8f-468fd69420fe,SESCO,II.1.1,San Juan,AR-J,annual,2016,bioetanol combustion consumption by to the public,2.4604965,TJ,CH4,10.0,kg/TJ,24.604965,kg +60a5ddd5-24d3-30ba-8c8d-e7e98f6802b0,SESCO,II.1.1,San Juan,AR-J,annual,2016,bioetanol combustion consumption by to the public,2.4604965,TJ,N2O,0.6,kg/TJ,1.4762979,kg +906cda79-3058-375b-810d-1244925317f6,SESCO,II.1.1,San Luis,AR-D,annual,2016,bioetanol combustion consumption by to the public,1.5419111399999998,TJ,CH4,10.0,kg/TJ,15.419111399999998,kg +093e800e-bf8e-3425-aae4-043b66520c1c,SESCO,II.1.1,San Luis,AR-D,annual,2016,bioetanol combustion consumption by to the public,1.5419111399999998,TJ,N2O,0.6,kg/TJ,0.9251466839999999,kg +0fc8b084-6987-3e60-8b92-ace07a87c6e3,SESCO,II.1.1,Santa Fe,AR-S,annual,2016,bioetanol combustion consumption by to the public,127.02254597999999,TJ,CH4,10.0,kg/TJ,1270.2254598,kg +af642423-d5c1-3560-822a-599e3568c642,SESCO,II.1.1,Santa Fe,AR-S,annual,2016,bioetanol combustion consumption by to the public,127.02254597999999,TJ,N2O,0.6,kg/TJ,76.21352758799999,kg +aa6ba443-e8ea-3e49-bbd2-0bb61b5869cd,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2016,bioetanol combustion consumption by to the public,12.236869259999999,TJ,CH4,10.0,kg/TJ,122.36869259999999,kg +5157bd71-9e01-303d-8a9f-fde7d3c2a83e,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2016,bioetanol combustion consumption by to the public,12.236869259999999,TJ,N2O,0.6,kg/TJ,7.342121555999999,kg +d1961718-143a-3e2f-a385-cf43883c1b47,SESCO,II.1.1,Tucuman,AR-T,annual,2016,bioetanol combustion consumption by to the public,17.612468279999998,TJ,CH4,10.0,kg/TJ,176.1246828,kg +65091470-3357-312d-a6c1-3d79ce088085,SESCO,II.1.1,Tucuman,AR-T,annual,2016,bioetanol combustion consumption by to the public,17.612468279999998,TJ,N2O,0.6,kg/TJ,10.567480967999998,kg +c158b37f-7ff8-333e-a6c7-9d77c9faa433,SESCO,II.5.1,Buenos Aires,AR-B,annual,2016,bioetanol combustion consumption by agriculture machines,10.44890847,TJ,CH4,10.0,kg/TJ,104.48908469999999,kg +768ba4db-8c68-3455-afff-3ce981079de0,SESCO,II.5.1,Buenos Aires,AR-B,annual,2016,bioetanol combustion consumption by agriculture machines,10.44890847,TJ,N2O,0.6,kg/TJ,6.269345081999999,kg +e4866274-b8ed-3c8c-a2ab-8204e6fb23fd,SESCO,II.5.1,Entre Rios,AR-E,annual,2016,bioetanol combustion consumption by agriculture machines,0.03983661,TJ,CH4,10.0,kg/TJ,0.3983661,kg +35c5a6ea-4036-3984-82ce-b524a1475b12,SESCO,II.5.1,Entre Rios,AR-E,annual,2016,bioetanol combustion consumption by agriculture machines,0.03983661,TJ,N2O,0.6,kg/TJ,0.023901966,kg +08958d38-23c6-317f-928b-f3d645b3f4d0,SESCO,II.5.1,Jujuy,AR-Y,annual,2016,bioetanol combustion consumption by agriculture machines,0.07732989,TJ,CH4,10.0,kg/TJ,0.7732989,kg +76e4d6c7-8d12-3eaf-a762-49a512159701,SESCO,II.5.1,Jujuy,AR-Y,annual,2016,bioetanol combustion consumption by agriculture machines,0.07732989,TJ,N2O,0.6,kg/TJ,0.046397933999999995,kg +0449a275-24a0-3792-b8dd-a0f5e8e5186c,SESCO,II.5.1,Salta,AR-A,annual,2016,bioetanol combustion consumption by agriculture machines,0.04920993,TJ,CH4,10.0,kg/TJ,0.4920993,kg +55ef7d3f-9f4a-3f2b-8669-de7668431bd7,SESCO,II.5.1,Salta,AR-A,annual,2016,bioetanol combustion consumption by agriculture machines,0.04920993,TJ,N2O,0.6,kg/TJ,0.029525957999999998,kg +2283c550-4d18-3f20-9410-8cd23a16a5aa,SESCO,II.5.1,Santa Fe,AR-S,annual,2016,bioetanol combustion consumption by agriculture machines,3.30175197,TJ,CH4,10.0,kg/TJ,33.0175197,kg +ea2da13c-f6de-37c0-82a5-bdda050680f2,SESCO,II.5.1,Santa Fe,AR-S,annual,2016,bioetanol combustion consumption by agriculture machines,3.30175197,TJ,N2O,0.6,kg/TJ,1.981051182,kg +95cd5687-7cce-37ff-8f5d-0e1f89ba3f54,SESCO,II.5.1,Santa Fe,AR-S,annual,2016,bioetanol combustion consumption by agriculture machines,0.06326991,TJ,CH4,10.0,kg/TJ,0.6326991,kg +a3689f92-8ee5-3af1-bb12-55c6643b5848,SESCO,II.5.1,Santa Fe,AR-S,annual,2016,bioetanol combustion consumption by agriculture machines,0.06326991,TJ,N2O,0.6,kg/TJ,0.037961945999999996,kg +1e1af0eb-25c6-3c90-a3fd-704d0bb9b4f7,SESCO,II.1.1,Buenos Aires,AR-B,annual,2016,bioetanol combustion consumption by to the public,2615.22423657,TJ,CH4,10.0,kg/TJ,26152.2423657,kg +48448309-047c-339e-b588-8f90c1e43527,SESCO,II.1.1,Buenos Aires,AR-B,annual,2016,bioetanol combustion consumption by to the public,2615.22423657,TJ,N2O,0.6,kg/TJ,1569.134541942,kg +a17024cd-7e02-3ef8-8e21-5d63d053d68c,SESCO,II.1.1,Capital Federal,AR-C,annual,2016,bioetanol combustion consumption by to the public,603.37232505,TJ,CH4,10.0,kg/TJ,6033.723250499999,kg +abc1871a-a0fd-3509-bc42-884627d109f4,SESCO,II.1.1,Capital Federal,AR-C,annual,2016,bioetanol combustion consumption by to the public,603.37232505,TJ,N2O,0.6,kg/TJ,362.02339502999996,kg +017330e8-419a-3bc7-b3d7-60fda7304d16,SESCO,II.1.1,Catamarca,AR-K,annual,2016,bioetanol combustion consumption by to the public,49.08104684999999,TJ,CH4,10.0,kg/TJ,490.81046849999996,kg +a556ddce-6a7d-35b7-8c1f-1a6568215097,SESCO,II.1.1,Catamarca,AR-K,annual,2016,bioetanol combustion consumption by to the public,49.08104684999999,TJ,N2O,0.6,kg/TJ,29.448628109999994,kg +2490a049-0443-31d0-bec2-f5117dc6d250,SESCO,II.1.1,Chaco,AR-H,annual,2016,bioetanol combustion consumption by to the public,165.68983431,TJ,CH4,10.0,kg/TJ,1656.8983431000001,kg +c4aa427b-cc13-38f7-93e6-0885aee365b6,SESCO,II.1.1,Chaco,AR-H,annual,2016,bioetanol combustion consumption by to the public,165.68983431,TJ,N2O,0.6,kg/TJ,99.413900586,kg +87bcc474-3d2c-3fb0-8b8a-ace56e31d299,SESCO,II.1.1,Chubut,AR-U,annual,2016,bioetanol combustion consumption by to the public,255.02929056,TJ,CH4,10.0,kg/TJ,2550.2929056,kg +c178a935-b7fd-350f-9403-df18d4c60835,SESCO,II.1.1,Chubut,AR-U,annual,2016,bioetanol combustion consumption by to the public,255.02929056,TJ,N2O,0.6,kg/TJ,153.017574336,kg +7267bdf8-8008-3ea2-be5a-1b872bf916b7,SESCO,II.1.1,Corrientes,AR-W,annual,2016,bioetanol combustion consumption by to the public,171.87153884999998,TJ,CH4,10.0,kg/TJ,1718.7153884999998,kg +c56f747e-4c61-3438-8412-94be0fa99e0d,SESCO,II.1.1,Corrientes,AR-W,annual,2016,bioetanol combustion consumption by to the public,171.87153884999998,TJ,N2O,0.6,kg/TJ,103.12292330999999,kg +15be19fa-1f2d-359c-a717-4e319db75116,SESCO,II.1.1,Córdoba,AR-X,annual,2016,bioetanol combustion consumption by to the public,661.10260293,TJ,CH4,10.0,kg/TJ,6611.0260293,kg +ca11bc90-c5be-3c65-8e17-1d64779acc10,SESCO,II.1.1,Córdoba,AR-X,annual,2016,bioetanol combustion consumption by to the public,661.10260293,TJ,N2O,0.6,kg/TJ,396.661561758,kg +9b3c13b8-0901-3e6c-9d40-331db56efa15,SESCO,II.1.1,Entre Rios,AR-E,annual,2016,bioetanol combustion consumption by to the public,232.58253248999998,TJ,CH4,10.0,kg/TJ,2325.8253249,kg +42f92887-869c-38c2-b5b2-4b1f0aab0081,SESCO,II.1.1,Entre Rios,AR-E,annual,2016,bioetanol combustion consumption by to the public,232.58253248999998,TJ,N2O,0.6,kg/TJ,139.54951949399998,kg +77109954-2411-3a0b-bcbf-9cae2bf3c98a,SESCO,II.1.1,Formosa,AR-P,annual,2016,bioetanol combustion consumption by to the public,52.55854857,TJ,CH4,10.0,kg/TJ,525.5854856999999,kg +31516999-ebe7-3f69-80dc-f549de01cb96,SESCO,II.1.1,Formosa,AR-P,annual,2016,bioetanol combustion consumption by to the public,52.55854857,TJ,N2O,0.6,kg/TJ,31.535129142,kg +9a827d8a-77c0-3c12-b33e-c16f01bf6574,SESCO,II.1.1,Jujuy,AR-Y,annual,2016,bioetanol combustion consumption by to the public,90.54861453,TJ,CH4,10.0,kg/TJ,905.4861453,kg +d43b447a-b313-3d4e-96d5-340087159832,SESCO,II.1.1,Jujuy,AR-Y,annual,2016,bioetanol combustion consumption by to the public,90.54861453,TJ,N2O,0.6,kg/TJ,54.329168718,kg +54d7427d-debd-3cf6-9132-e6c56c9d1a85,SESCO,II.1.1,La Pampa,AR-L,annual,2016,bioetanol combustion consumption by to the public,112.73291963999999,TJ,CH4,10.0,kg/TJ,1127.3291964,kg +8757754a-54fb-3efb-ba9c-9329c9a9aefc,SESCO,II.1.1,La Pampa,AR-L,annual,2016,bioetanol combustion consumption by to the public,112.73291963999999,TJ,N2O,0.6,kg/TJ,67.639751784,kg +56f68bff-62cc-3a3f-8f22-ee5c7c964723,SESCO,II.1.1,La Rioja,AR-F,annual,2016,bioetanol combustion consumption by to the public,71.57232819,TJ,CH4,10.0,kg/TJ,715.7232819,kg +b0183200-bf23-3b91-a247-384761c2841b,SESCO,II.1.1,La Rioja,AR-F,annual,2016,bioetanol combustion consumption by to the public,71.57232819,TJ,N2O,0.6,kg/TJ,42.943396914,kg +16f0770f-2e8d-3c6b-bfb2-97411446d980,SESCO,II.1.1,Mendoza,AR-M,annual,2016,bioetanol combustion consumption by to the public,370.34221653,TJ,CH4,10.0,kg/TJ,3703.4221652999995,kg +0f39bbe3-f6e0-3f46-8aff-df4a4bfd5a02,SESCO,II.1.1,Mendoza,AR-M,annual,2016,bioetanol combustion consumption by to the public,370.34221653,TJ,N2O,0.6,kg/TJ,222.205329918,kg +f34299f9-c2a8-3c2e-b478-ab0838a4ba12,SESCO,II.1.1,Misiones,AR-N,annual,2016,bioetanol combustion consumption by to the public,229.82677640999998,TJ,CH4,10.0,kg/TJ,2298.2677641,kg +65a7434c-bcfe-3eda-a248-5d5bcd7581ca,SESCO,II.1.1,Misiones,AR-N,annual,2016,bioetanol combustion consumption by to the public,229.82677640999998,TJ,N2O,0.6,kg/TJ,137.89606584599997,kg +d04fb7d5-cb39-3da7-831f-04c7573e93f2,SESCO,II.1.1,Neuquén,AR-Q,annual,2016,bioetanol combustion consumption by to the public,225.43771932,TJ,CH4,10.0,kg/TJ,2254.3771932,kg +1a388dfe-d6ca-30da-ac50-2a0136f55e03,SESCO,II.1.1,Neuquén,AR-Q,annual,2016,bioetanol combustion consumption by to the public,225.43771932,TJ,N2O,0.6,kg/TJ,135.262631592,kg +ae9703ae-3a00-367c-8e7a-90d85cb87a3f,SESCO,II.1.1,Rio Negro,AR-R,annual,2016,bioetanol combustion consumption by to the public,221.67198800999998,TJ,CH4,10.0,kg/TJ,2216.7198801,kg +490b50ab-ae90-3ea3-88de-a541585f40e6,SESCO,II.1.1,Rio Negro,AR-R,annual,2016,bioetanol combustion consumption by to the public,221.67198800999998,TJ,N2O,0.6,kg/TJ,133.003192806,kg +0c1ccf39-6205-3d13-9ee4-8bb5b364a8fc,SESCO,II.1.1,Salta,AR-A,annual,2016,bioetanol combustion consumption by to the public,214.34908176,TJ,CH4,10.0,kg/TJ,2143.4908176,kg +17916823-2e1a-3b72-a187-655afc370ba5,SESCO,II.1.1,Salta,AR-A,annual,2016,bioetanol combustion consumption by to the public,214.34908176,TJ,N2O,0.6,kg/TJ,128.609449056,kg +bac92023-bb5c-3f12-94eb-87270d87ef4e,SESCO,II.1.1,San Juan,AR-J,annual,2016,bioetanol combustion consumption by to the public,121.45948056,TJ,CH4,10.0,kg/TJ,1214.5948056,kg +88137e6d-f3b2-3e69-bc6d-176185bad2cb,SESCO,II.1.1,San Juan,AR-J,annual,2016,bioetanol combustion consumption by to the public,121.45948056,TJ,N2O,0.6,kg/TJ,72.875688336,kg +0e12d55e-d04d-3346-bcb7-be5407c255fe,SESCO,II.1.1,San Luis,AR-D,annual,2016,bioetanol combustion consumption by to the public,94.99625487,TJ,CH4,10.0,kg/TJ,949.9625487000001,kg +9837c473-4a8d-3940-b04a-c709f809684e,SESCO,II.1.1,San Luis,AR-D,annual,2016,bioetanol combustion consumption by to the public,94.99625487,TJ,N2O,0.6,kg/TJ,56.997752922,kg +805d1347-e6c5-3616-99ad-274f11d6fadc,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2016,bioetanol combustion consumption by to the public,171.52941267,TJ,CH4,10.0,kg/TJ,1715.2941267,kg +0d41b2d1-61a9-3022-98bf-baafd70fed5b,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2016,bioetanol combustion consumption by to the public,171.52941267,TJ,N2O,0.6,kg/TJ,102.917647602,kg +8cca4933-27bf-3a2d-b1d1-6082fc36872b,SESCO,II.1.1,Santa Fe,AR-S,annual,2016,bioetanol combustion consumption by to the public,496.12748426999997,TJ,CH4,10.0,kg/TJ,4961.2748427,kg +549fd33c-7102-3789-b772-0f57c7eded05,SESCO,II.1.1,Santa Fe,AR-S,annual,2016,bioetanol combustion consumption by to the public,496.12748426999997,TJ,N2O,0.6,kg/TJ,297.67649056199997,kg +40e22eb7-ef70-38d2-829e-d0db7b15e47d,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2016,bioetanol combustion consumption by to the public,91.42736328,TJ,CH4,10.0,kg/TJ,914.2736328,kg +fab1f73a-26cb-3c92-83d2-5e625fbc2146,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2016,bioetanol combustion consumption by to the public,91.42736328,TJ,N2O,0.6,kg/TJ,54.856417967999995,kg +f36111b9-3f6b-3019-bc69-a534cff799c0,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2016,bioetanol combustion consumption by to the public,131.29209323999999,TJ,CH4,10.0,kg/TJ,1312.9209323999999,kg +8d599307-57ac-3cfb-bf14-23a8edf229d1,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2016,bioetanol combustion consumption by to the public,131.29209323999999,TJ,N2O,0.6,kg/TJ,78.775255944,kg +7676442e-5a33-3d60-8121-9f6767d6a848,SESCO,II.1.1,Tucuman,AR-T,annual,2016,bioetanol combustion consumption by to the public,161.2445373,TJ,CH4,10.0,kg/TJ,1612.445373,kg +e9f430ce-8e83-318d-bcf6-99ef989a17f5,SESCO,II.1.1,Tucuman,AR-T,annual,2016,bioetanol combustion consumption by to the public,161.2445373,TJ,N2O,0.6,kg/TJ,96.74672238,kg +b6a10ee9-4b64-3a77-bf4c-65d846c1d3e8,SESCO,II.1.1,Buenos Aires,AR-B,annual,2016,bioetanol combustion consumption by to the public,1173.8911635,TJ,CH4,10.0,kg/TJ,11738.911635,kg +e6fd5f9c-bed7-352b-b499-5983c10c08c7,SESCO,II.1.1,Buenos Aires,AR-B,annual,2016,bioetanol combustion consumption by to the public,1173.8911635,TJ,N2O,0.6,kg/TJ,704.3346981,kg +7b7809eb-0556-3e74-9c5e-3a9f82f9de4c,SESCO,II.1.1,Capital Federal,AR-C,annual,2016,bioetanol combustion consumption by to the public,307.03481325,TJ,CH4,10.0,kg/TJ,3070.3481325000002,kg +703ee7bc-61e7-3f85-8fb2-61ee27f368b5,SESCO,II.1.1,Capital Federal,AR-C,annual,2016,bioetanol combustion consumption by to the public,307.03481325,TJ,N2O,0.6,kg/TJ,184.22088795,kg +de37bfa8-bcc2-34fd-947d-1aaf3d62704c,SESCO,II.1.1,Catamarca,AR-K,annual,2016,bioetanol combustion consumption by to the public,21.4180362,TJ,CH4,10.0,kg/TJ,214.180362,kg +20f7582c-c9f7-3886-8547-573c54c0b4bd,SESCO,II.1.1,Catamarca,AR-K,annual,2016,bioetanol combustion consumption by to the public,21.4180362,TJ,N2O,0.6,kg/TJ,12.850821719999999,kg +630849c7-2034-3738-8bbe-ec854bee6c62,SESCO,II.1.1,Chaco,AR-H,annual,2016,bioetanol combustion consumption by to the public,73.44464886,TJ,CH4,10.0,kg/TJ,734.4464886000001,kg +6a26d9ee-e94c-311c-b205-80cc26fd1d68,SESCO,II.1.1,Chaco,AR-H,annual,2016,bioetanol combustion consumption by to the public,73.44464886,TJ,N2O,0.6,kg/TJ,44.066789316,kg +cafa6308-f7f2-3489-b51a-16512e3a0d49,SESCO,II.1.1,Chubut,AR-U,annual,2016,bioetanol combustion consumption by to the public,114.96142646999999,TJ,CH4,10.0,kg/TJ,1149.6142647,kg +f577d003-aff0-37a7-a265-00a0a00b78c8,SESCO,II.1.1,Chubut,AR-U,annual,2016,bioetanol combustion consumption by to the public,114.96142646999999,TJ,N2O,0.6,kg/TJ,68.976855882,kg +bc8c225f-e038-31cd-879b-fbdc67403b7e,SESCO,II.1.1,Corrientes,AR-W,annual,2016,bioetanol combustion consumption by to the public,80.20281258,TJ,CH4,10.0,kg/TJ,802.0281258,kg +7f352d02-5add-32e7-8bcf-eed5ebd7a14c,SESCO,II.1.1,Corrientes,AR-W,annual,2016,bioetanol combustion consumption by to the public,80.20281258,TJ,N2O,0.6,kg/TJ,48.121687548,kg +510f573a-07d3-3834-aa67-0642ca936e9e,SESCO,II.1.1,Córdoba,AR-X,annual,2016,bioetanol combustion consumption by to the public,258.7739319,TJ,CH4,10.0,kg/TJ,2587.739319,kg +311c52c2-779a-3f53-bfdd-f4fd06583ae6,SESCO,II.1.1,Córdoba,AR-X,annual,2016,bioetanol combustion consumption by to the public,258.7739319,TJ,N2O,0.6,kg/TJ,155.26435913999998,kg +d3830645-c70b-341a-8555-60cebb9643e1,SESCO,II.1.1,Entre Rios,AR-E,annual,2016,bioetanol combustion consumption by to the public,103.78608569999999,TJ,CH4,10.0,kg/TJ,1037.860857,kg +d6628dd8-67ef-3487-9567-06a33115a25b,SESCO,II.1.1,Entre Rios,AR-E,annual,2016,bioetanol combustion consumption by to the public,103.78608569999999,TJ,N2O,0.6,kg/TJ,62.27165141999999,kg +1819a030-cb32-32bd-85d7-bf2f9e02e508,SESCO,II.1.1,Formosa,AR-P,annual,2016,bioetanol combustion consumption by to the public,19.31841252,TJ,CH4,10.0,kg/TJ,193.18412519999998,kg +a2d38417-b6ee-378f-9908-daed5af18b87,SESCO,II.1.1,Formosa,AR-P,annual,2016,bioetanol combustion consumption by to the public,19.31841252,TJ,N2O,0.6,kg/TJ,11.591047512,kg +12aaa915-2a39-3b73-a81c-c57b16cd2927,SESCO,II.1.1,Jujuy,AR-Y,annual,2016,bioetanol combustion consumption by to the public,28.11293001,TJ,CH4,10.0,kg/TJ,281.1293001,kg +93ad5447-74c9-323f-b526-d32b90d7a8e7,SESCO,II.1.1,Jujuy,AR-Y,annual,2016,bioetanol combustion consumption by to the public,28.11293001,TJ,N2O,0.6,kg/TJ,16.867758006,kg +cffeff49-561b-3278-b0ae-fff2848a03d3,SESCO,II.1.1,La Pampa,AR-L,annual,2016,bioetanol combustion consumption by to the public,80.07861609,TJ,CH4,10.0,kg/TJ,800.7861608999999,kg +c4972b2c-8fc1-382a-9aa5-05c81bec87d7,SESCO,II.1.1,La Pampa,AR-L,annual,2016,bioetanol combustion consumption by to the public,80.07861609,TJ,N2O,0.6,kg/TJ,48.047169653999994,kg +aec17e27-b91b-303c-8514-0936214bf915,SESCO,II.1.1,La Rioja,AR-F,annual,2016,bioetanol combustion consumption by to the public,29.005738739999998,TJ,CH4,10.0,kg/TJ,290.0573874,kg +c099042e-7463-313b-ad3e-6a4602820268,SESCO,II.1.1,La Rioja,AR-F,annual,2016,bioetanol combustion consumption by to the public,29.005738739999998,TJ,N2O,0.6,kg/TJ,17.403443243999998,kg +88bef4b9-f39e-36ea-9fce-a771b2095dbf,SESCO,II.1.1,Mendoza,AR-M,annual,2016,bioetanol combustion consumption by to the public,202.42387538999998,TJ,CH4,10.0,kg/TJ,2024.2387538999997,kg +00f40d63-1315-312e-8a4e-85c45cc40c91,SESCO,II.1.1,Mendoza,AR-M,annual,2016,bioetanol combustion consumption by to the public,202.42387538999998,TJ,N2O,0.6,kg/TJ,121.45432523399998,kg +286d3a4c-aa51-3dea-92de-6b6cc6848761,SESCO,II.1.1,Misiones,AR-N,annual,2016,bioetanol combustion consumption by to the public,68.66425566,TJ,CH4,10.0,kg/TJ,686.6425565999999,kg +02efd122-84a0-3d63-a11b-4d5e27641f2a,SESCO,II.1.1,Misiones,AR-N,annual,2016,bioetanol combustion consumption by to the public,68.66425566,TJ,N2O,0.6,kg/TJ,41.198553395999994,kg +e32a4cf9-7767-3700-9cec-b737fe903612,SESCO,II.1.1,Neuquén,AR-Q,annual,2016,bioetanol combustion consumption by to the public,136.36071603,TJ,CH4,10.0,kg/TJ,1363.6071603,kg +eb57de1f-6deb-385c-919f-09782e0e14c4,SESCO,II.1.1,Neuquén,AR-Q,annual,2016,bioetanol combustion consumption by to the public,136.36071603,TJ,N2O,0.6,kg/TJ,81.81642961799999,kg +f7436e60-62fe-3962-aa07-7d5ab6b697c9,SESCO,II.1.1,Rio Negro,AR-R,annual,2016,bioetanol combustion consumption by to the public,120.36045879,TJ,CH4,10.0,kg/TJ,1203.6045878999998,kg +b000d2cd-f0fd-32f8-95c6-becaf4ee47fe,SESCO,II.1.1,Rio Negro,AR-R,annual,2016,bioetanol combustion consumption by to the public,120.36045879,TJ,N2O,0.6,kg/TJ,72.216275274,kg +da634914-2ce3-3ac4-9b4e-5b781b633793,SESCO,II.1.1,Salta,AR-A,annual,2016,bioetanol combustion consumption by to the public,71.17864875,TJ,CH4,10.0,kg/TJ,711.7864874999999,kg +764603e4-0d12-3f62-ab4a-eb0e9ce8d16d,SESCO,II.1.1,Salta,AR-A,annual,2016,bioetanol combustion consumption by to the public,71.17864875,TJ,N2O,0.6,kg/TJ,42.70718924999999,kg +d93c39bf-0ab3-360f-af6a-4d7595f38954,SESCO,II.1.1,San Juan,AR-J,annual,2016,bioetanol combustion consumption by to the public,53.03658789,TJ,CH4,10.0,kg/TJ,530.3658789,kg +15b682aa-dc6c-39d1-866a-37f9c6a4f9d0,SESCO,II.1.1,San Juan,AR-J,annual,2016,bioetanol combustion consumption by to the public,53.03658789,TJ,N2O,0.6,kg/TJ,31.821952734,kg +c297e904-7ba9-3d15-af5d-5b097504f621,SESCO,II.1.1,San Luis,AR-D,annual,2016,bioetanol combustion consumption by to the public,49.875435720000006,TJ,CH4,10.0,kg/TJ,498.7543572000001,kg +7ff3b998-163e-34b1-ac93-ea00d1fe0188,SESCO,II.1.1,San Luis,AR-D,annual,2016,bioetanol combustion consumption by to the public,49.875435720000006,TJ,N2O,0.6,kg/TJ,29.925261432000003,kg +5d83a5d6-ca36-3325-8085-1b3e36538cde,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2016,bioetanol combustion consumption by to the public,66.28343238,TJ,CH4,10.0,kg/TJ,662.8343238,kg +6f116bbc-ce17-3a10-acf5-73d6ab5a1ce1,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2016,bioetanol combustion consumption by to the public,66.28343238,TJ,N2O,0.6,kg/TJ,39.770059427999996,kg +9c2dcd24-3cd7-3883-9338-2b4d98ae2366,SESCO,II.1.1,Santa Fe,AR-S,annual,2016,bioetanol combustion consumption by to the public,242.98926102,TJ,CH4,10.0,kg/TJ,2429.8926102,kg +4ecd2aa3-b37c-3b0f-accb-87708f95acf8,SESCO,II.1.1,Santa Fe,AR-S,annual,2016,bioetanol combustion consumption by to the public,242.98926102,TJ,N2O,0.6,kg/TJ,145.79355661199997,kg +5df905cf-9c9c-345f-b225-43346b8dcca8,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2016,bioetanol combustion consumption by to the public,45.69727833,TJ,CH4,10.0,kg/TJ,456.97278330000006,kg +6a777026-51fd-3958-b071-d7311463eec6,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2016,bioetanol combustion consumption by to the public,45.69727833,TJ,N2O,0.6,kg/TJ,27.418366998,kg +48e66f08-4e49-3231-a3bd-6941970da420,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2016,bioetanol combustion consumption by to the public,17.207072189999998,TJ,CH4,10.0,kg/TJ,172.07072189999997,kg +74741aab-4ca8-3df3-ae1a-11dcfa60b176,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2016,bioetanol combustion consumption by to the public,17.207072189999998,TJ,N2O,0.6,kg/TJ,10.324243313999999,kg +21e89820-71c3-349c-9760-dc105f56a109,SESCO,II.1.1,Tucuman,AR-T,annual,2016,bioetanol combustion consumption by to the public,51.28377705,TJ,CH4,10.0,kg/TJ,512.8377705,kg +1266144d-7651-3d95-bbdf-7fa5ea87b2ac,SESCO,II.1.1,Tucuman,AR-T,annual,2016,bioetanol combustion consumption by to the public,51.28377705,TJ,N2O,0.6,kg/TJ,30.770266229999997,kg +11c859ec-1e39-3a4e-8b34-6f7a44f88c34,SESCO,II.1.1,Buenos Aires,AR-B,annual,2016,bioetanol combustion consumption by freight transport,16.40096667,TJ,CH4,10.0,kg/TJ,164.0096667,kg +1a6b027c-c959-3ec0-a1d3-d3cd57390ba3,SESCO,II.1.1,Buenos Aires,AR-B,annual,2016,bioetanol combustion consumption by freight transport,16.40096667,TJ,N2O,0.6,kg/TJ,9.840580002,kg +05e00db0-5cf0-3466-be84-1b515fcaf21f,SESCO,II.1.1,Capital Federal,AR-C,annual,2016,bioetanol combustion consumption by freight transport,17.21410218,TJ,CH4,10.0,kg/TJ,172.1410218,kg +77bfdacd-d42d-3087-ab46-3332617b6082,SESCO,II.1.1,Capital Federal,AR-C,annual,2016,bioetanol combustion consumption by freight transport,17.21410218,TJ,N2O,0.6,kg/TJ,10.328461308,kg +a9ac7948-7498-3f76-9e08-92dcb0de5c46,SESCO,II.1.1,Chaco,AR-H,annual,2016,bioetanol combustion consumption by freight transport,0.57645918,TJ,CH4,10.0,kg/TJ,5.7645918,kg +9488ea82-ca6f-34e3-97bd-bb138897324a,SESCO,II.1.1,Chaco,AR-H,annual,2016,bioetanol combustion consumption by freight transport,0.57645918,TJ,N2O,0.6,kg/TJ,0.34587550799999994,kg +c036d04b-6ffa-3734-a601-b1c2f3514565,SESCO,II.1.1,Chubut,AR-U,annual,2016,bioetanol combustion consumption by freight transport,0.11247984,TJ,CH4,10.0,kg/TJ,1.1247984,kg +3ef19765-c19e-313f-b46d-12a990f11d3f,SESCO,II.1.1,Chubut,AR-U,annual,2016,bioetanol combustion consumption by freight transport,0.11247984,TJ,N2O,0.6,kg/TJ,0.067487904,kg +b2ffd063-1eeb-3297-b5cb-c44a39738867,SESCO,II.1.1,Corrientes,AR-W,annual,2016,bioetanol combustion consumption by freight transport,0.08904654,TJ,CH4,10.0,kg/TJ,0.8904654,kg +a651dae3-ff16-319a-87ed-73a387c59bb6,SESCO,II.1.1,Corrientes,AR-W,annual,2016,bioetanol combustion consumption by freight transport,0.08904654,TJ,N2O,0.6,kg/TJ,0.053427923999999995,kg +7e8ea4cb-3afe-3e73-b316-66eed2e3b95f,SESCO,II.1.1,Córdoba,AR-X,annual,2016,bioetanol combustion consumption by freight transport,0.44288936999999995,TJ,CH4,10.0,kg/TJ,4.4288937,kg +a11ca418-4c66-396b-86b5-ce728ce39981,SESCO,II.1.1,Córdoba,AR-X,annual,2016,bioetanol combustion consumption by freight transport,0.44288936999999995,TJ,N2O,0.6,kg/TJ,0.26573362199999995,kg +3c100df8-ea80-378b-9d83-90c0c81cefa0,SESCO,II.1.1,Entre Rios,AR-E,annual,2016,bioetanol combustion consumption by freight transport,0.14294313,TJ,CH4,10.0,kg/TJ,1.4294313,kg +25a160d4-e026-3176-839a-3094563bd574,SESCO,II.1.1,Entre Rios,AR-E,annual,2016,bioetanol combustion consumption by freight transport,0.14294313,TJ,N2O,0.6,kg/TJ,0.085765878,kg +3ea5c83f-c9a1-3035-a5a8-8f905b6c445f,SESCO,II.1.1,Formosa,AR-P,annual,2016,bioetanol combustion consumption by freight transport,0.00937332,TJ,CH4,10.0,kg/TJ,0.09373319999999999,kg +cc3d6791-c45e-337b-96ed-9284b73e51e0,SESCO,II.1.1,Formosa,AR-P,annual,2016,bioetanol combustion consumption by freight transport,0.00937332,TJ,N2O,0.6,kg/TJ,0.0056239919999999995,kg +2a231542-853f-3947-ba9d-9d48c1146dbe,SESCO,II.1.1,Mendoza,AR-M,annual,2016,bioetanol combustion consumption by freight transport,0.75689559,TJ,CH4,10.0,kg/TJ,7.5689559,kg +bc16225c-ee16-319d-b8f1-25079d1eca8b,SESCO,II.1.1,Mendoza,AR-M,annual,2016,bioetanol combustion consumption by freight transport,0.75689559,TJ,N2O,0.6,kg/TJ,0.45413735399999994,kg +7529da1b-3071-3a45-b391-f9f120cb743d,SESCO,II.1.1,Misiones,AR-N,annual,2016,bioetanol combustion consumption by freight transport,0.04920993,TJ,CH4,10.0,kg/TJ,0.4920993,kg +07357110-9641-3ba8-9dfa-02bbd3777d38,SESCO,II.1.1,Misiones,AR-N,annual,2016,bioetanol combustion consumption by freight transport,0.04920993,TJ,N2O,0.6,kg/TJ,0.029525957999999998,kg +b5d97ba3-e690-369e-9e69-504ad13c0228,SESCO,II.1.1,Neuquén,AR-Q,annual,2016,bioetanol combustion consumption by freight transport,0.12419648999999999,TJ,CH4,10.0,kg/TJ,1.2419649,kg +35f6fafc-7e3e-36c0-8738-a89a321f30ea,SESCO,II.1.1,Neuquén,AR-Q,annual,2016,bioetanol combustion consumption by freight transport,0.12419648999999999,TJ,N2O,0.6,kg/TJ,0.07451789399999999,kg +b0cdf783-fdcc-3480-a942-46d29c398a62,SESCO,II.1.1,Rio Negro,AR-R,annual,2016,bioetanol combustion consumption by freight transport,0.11716649999999999,TJ,CH4,10.0,kg/TJ,1.171665,kg +3b020e36-85b2-3633-b5a1-0864de17a364,SESCO,II.1.1,Rio Negro,AR-R,annual,2016,bioetanol combustion consumption by freight transport,0.11716649999999999,TJ,N2O,0.6,kg/TJ,0.0702999,kg +0ba8f2ac-c4c3-330c-b6aa-f542303a0d95,SESCO,II.1.1,Salta,AR-A,annual,2016,bioetanol combustion consumption by freight transport,0.7498656,TJ,CH4,10.0,kg/TJ,7.498656,kg +bea7270a-c2a0-322b-b75e-f5538a644a1b,SESCO,II.1.1,Salta,AR-A,annual,2016,bioetanol combustion consumption by freight transport,0.7498656,TJ,N2O,0.6,kg/TJ,0.44991936,kg +fa73b745-6780-350c-bc47-0774b96e5fcd,SESCO,II.1.1,San Juan,AR-J,annual,2016,bioetanol combustion consumption by freight transport,0.01640331,TJ,CH4,10.0,kg/TJ,0.16403310000000002,kg +60b0d270-1c4f-33f0-b217-029c2185df44,SESCO,II.1.1,San Juan,AR-J,annual,2016,bioetanol combustion consumption by freight transport,0.01640331,TJ,N2O,0.6,kg/TJ,0.009841986,kg +949f2763-4161-32b2-8280-335c999da45a,SESCO,II.1.1,San Luis,AR-D,annual,2016,bioetanol combustion consumption by freight transport,0.02811996,TJ,CH4,10.0,kg/TJ,0.2811996,kg +d8adffaa-c8c1-34a0-b390-4289e220b8b0,SESCO,II.1.1,San Luis,AR-D,annual,2016,bioetanol combustion consumption by freight transport,0.02811996,TJ,N2O,0.6,kg/TJ,0.016871976,kg +0970ce63-ed46-350e-9868-f397c268043f,SESCO,II.1.1,Santa Fe,AR-S,annual,2016,bioetanol combustion consumption by freight transport,1.23024825,TJ,CH4,10.0,kg/TJ,12.3024825,kg +763a4d2e-de59-32fe-96ef-70624a8dee06,SESCO,II.1.1,Santa Fe,AR-S,annual,2016,bioetanol combustion consumption by freight transport,1.23024825,TJ,N2O,0.6,kg/TJ,0.73814895,kg +a28fbd9d-9f77-385d-814e-dee05ca71b2e,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2016,bioetanol combustion consumption by freight transport,0.00937332,TJ,CH4,10.0,kg/TJ,0.09373319999999999,kg +7607d646-c322-34fa-b639-9a89bdfe2592,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2016,bioetanol combustion consumption by freight transport,0.00937332,TJ,N2O,0.6,kg/TJ,0.0056239919999999995,kg +09b47269-ec30-362a-a784-f70463243401,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2016,bioetanol combustion consumption by freight transport,0.01640331,TJ,CH4,10.0,kg/TJ,0.16403310000000002,kg +3effbacc-e70c-3031-82d3-784589c54421,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2016,bioetanol combustion consumption by freight transport,0.01640331,TJ,N2O,0.6,kg/TJ,0.009841986,kg +3feffdba-c0e4-3f77-96c9-e703345418be,SESCO,II.1.1,Tucuman,AR-T,annual,2016,bioetanol combustion consumption by freight transport,0.15700311,TJ,CH4,10.0,kg/TJ,1.5700311,kg +778c3a0b-c03d-3687-a04c-397bd61758c7,SESCO,II.1.1,Tucuman,AR-T,annual,2016,bioetanol combustion consumption by freight transport,0.15700311,TJ,N2O,0.6,kg/TJ,0.094201866,kg +3cf6a7db-70b4-356d-b2d7-61cc45823b88,SESCO,II.1.1,Buenos Aires,AR-B,annual,2016,bioetanol combustion consumption by freight transport,16.03072053,TJ,CH4,10.0,kg/TJ,160.3072053,kg +839c201c-1205-3f06-b8fd-eedf2d7516c5,SESCO,II.1.1,Buenos Aires,AR-B,annual,2016,bioetanol combustion consumption by freight transport,16.03072053,TJ,N2O,0.6,kg/TJ,9.618432318,kg +e817c109-89cb-33c5-af21-19da41953269,SESCO,II.1.1,Capital Federal,AR-C,annual,2016,bioetanol combustion consumption by freight transport,18.097537589999998,TJ,CH4,10.0,kg/TJ,180.9753759,kg +da4cbb1d-6683-3189-9d55-461cda5654a7,SESCO,II.1.1,Capital Federal,AR-C,annual,2016,bioetanol combustion consumption by freight transport,18.097537589999998,TJ,N2O,0.6,kg/TJ,10.858522553999999,kg +c591891f-2e24-3ce7-bd14-eadc522ba3c0,SESCO,II.1.1,Chaco,AR-H,annual,2016,bioetanol combustion consumption by freight transport,0.63738576,TJ,CH4,10.0,kg/TJ,6.3738576,kg +21474abc-df77-3e87-8574-5ff65da92683,SESCO,II.1.1,Chaco,AR-H,annual,2016,bioetanol combustion consumption by freight transport,0.63738576,TJ,N2O,0.6,kg/TJ,0.382431456,kg +96c9a062-2888-3246-aaf3-be631f5045e5,SESCO,II.1.1,Chubut,AR-U,annual,2016,bioetanol combustion consumption by freight transport,0.07498656,TJ,CH4,10.0,kg/TJ,0.7498655999999999,kg +944b77be-8f34-3e29-ba45-3cc51a448d4b,SESCO,II.1.1,Chubut,AR-U,annual,2016,bioetanol combustion consumption by freight transport,0.07498656,TJ,N2O,0.6,kg/TJ,0.044991935999999996,kg +4baa436c-ae13-3ca9-b6e7-d2601b1247cb,SESCO,II.1.1,Corrientes,AR-W,annual,2016,bioetanol combustion consumption by freight transport,0.23901966,TJ,CH4,10.0,kg/TJ,2.3901966,kg +65853385-e316-3a2f-8ab1-860c57775e79,SESCO,II.1.1,Corrientes,AR-W,annual,2016,bioetanol combustion consumption by freight transport,0.23901966,TJ,N2O,0.6,kg/TJ,0.14341179599999998,kg +01059816-f6bd-3ea9-9c95-9b699706dabe,SESCO,II.1.1,Córdoba,AR-X,annual,2016,bioetanol combustion consumption by freight transport,0.56005587,TJ,CH4,10.0,kg/TJ,5.600558700000001,kg +ced4ce97-6ce9-3174-9940-a6df4443bdaa,SESCO,II.1.1,Córdoba,AR-X,annual,2016,bioetanol combustion consumption by freight transport,0.56005587,TJ,N2O,0.6,kg/TJ,0.336033522,kg +2d49a605-810f-3266-a32c-d008b8afc59e,SESCO,II.1.1,Entre Rios,AR-E,annual,2016,bioetanol combustion consumption by freight transport,0.24604965,TJ,CH4,10.0,kg/TJ,2.4604965,kg +87c2e159-a810-38f5-be54-a0df2a01afed,SESCO,II.1.1,Entre Rios,AR-E,annual,2016,bioetanol combustion consumption by freight transport,0.24604965,TJ,N2O,0.6,kg/TJ,0.14762979,kg +2bd3772e-25b3-39aa-8d0c-17c1d4de9ecf,SESCO,II.1.1,Formosa,AR-P,annual,2016,bioetanol combustion consumption by freight transport,0.00468666,TJ,CH4,10.0,kg/TJ,0.046866599999999994,kg +b66c7681-cc3a-3cd1-9b37-a1427b70053f,SESCO,II.1.1,Formosa,AR-P,annual,2016,bioetanol combustion consumption by freight transport,0.00468666,TJ,N2O,0.6,kg/TJ,0.0028119959999999998,kg +f586ee49-9857-3ff2-ab26-fe973c67adbb,SESCO,II.1.1,Jujuy,AR-Y,annual,2016,bioetanol combustion consumption by freight transport,0.00234333,TJ,CH4,10.0,kg/TJ,0.023433299999999997,kg +c115d993-5482-38ce-b0fb-189b01351472,SESCO,II.1.1,Jujuy,AR-Y,annual,2016,bioetanol combustion consumption by freight transport,0.00234333,TJ,N2O,0.6,kg/TJ,0.0014059979999999999,kg +1cf5bce7-129f-37a7-9c4c-8651aa5d45a5,SESCO,II.1.1,La Pampa,AR-L,annual,2016,bioetanol combustion consumption by freight transport,0.01405998,TJ,CH4,10.0,kg/TJ,0.1405998,kg +6d99fe2c-71b6-32c8-809d-a3ca1fc218a7,SESCO,II.1.1,La Pampa,AR-L,annual,2016,bioetanol combustion consumption by freight transport,0.01405998,TJ,N2O,0.6,kg/TJ,0.008435988,kg +48f36ce7-adee-3848-bd0a-7d730fdcd589,SESCO,II.1.1,La Rioja,AR-F,annual,2016,bioetanol combustion consumption by freight transport,0.08201655,TJ,CH4,10.0,kg/TJ,0.8201654999999999,kg +ac43253c-93a0-3e02-8afb-11329931283e,SESCO,II.1.1,La Rioja,AR-F,annual,2016,bioetanol combustion consumption by freight transport,0.08201655,TJ,N2O,0.6,kg/TJ,0.04920992999999999,kg +f77aa42e-203f-3460-8287-9521598ebb65,SESCO,II.1.1,Mendoza,AR-M,annual,2016,bioetanol combustion consumption by freight transport,0.5389659,TJ,CH4,10.0,kg/TJ,5.389659,kg +90edf5c9-963a-3bdd-84cd-3525ffb82460,SESCO,II.1.1,Mendoza,AR-M,annual,2016,bioetanol combustion consumption by freight transport,0.5389659,TJ,N2O,0.6,kg/TJ,0.32337953999999997,kg +820d1582-412f-321d-986f-a6358d52007d,SESCO,II.1.1,Misiones,AR-N,annual,2016,bioetanol combustion consumption by freight transport,0.15465978,TJ,CH4,10.0,kg/TJ,1.5465978,kg +6d6daab3-c9f8-3637-85b4-38eaff9de303,SESCO,II.1.1,Misiones,AR-N,annual,2016,bioetanol combustion consumption by freight transport,0.15465978,TJ,N2O,0.6,kg/TJ,0.09279586799999999,kg +08ae8aa0-1bb4-32ff-b972-719e2c558422,SESCO,II.1.1,Neuquén,AR-Q,annual,2016,bioetanol combustion consumption by freight transport,0.19449639000000002,TJ,CH4,10.0,kg/TJ,1.9449639000000003,kg +e7da63f4-b112-3b7f-b0b1-a715129d278b,SESCO,II.1.1,Neuquén,AR-Q,annual,2016,bioetanol combustion consumption by freight transport,0.19449639000000002,TJ,N2O,0.6,kg/TJ,0.116697834,kg +f07ad5fa-6070-312b-8962-ab2017886063,SESCO,II.1.1,Rio Negro,AR-R,annual,2016,bioetanol combustion consumption by freight transport,0.41242608,TJ,CH4,10.0,kg/TJ,4.1242608,kg +12791a36-8c16-310e-a202-4e20044b5460,SESCO,II.1.1,Rio Negro,AR-R,annual,2016,bioetanol combustion consumption by freight transport,0.41242608,TJ,N2O,0.6,kg/TJ,0.24745564799999997,kg +0196b66d-2147-3645-95d9-18b49b22a2b6,SESCO,II.1.1,Salta,AR-A,annual,2016,bioetanol combustion consumption by freight transport,0.20152638,TJ,CH4,10.0,kg/TJ,2.0152638,kg +006de014-d5dd-37d5-a06b-b4ba4c645793,SESCO,II.1.1,Salta,AR-A,annual,2016,bioetanol combustion consumption by freight transport,0.20152638,TJ,N2O,0.6,kg/TJ,0.120915828,kg +ddbe1a76-3dc9-3848-8e4e-7184a52a2b7c,SESCO,II.1.1,San Juan,AR-J,annual,2016,bioetanol combustion consumption by freight transport,0.00702999,TJ,CH4,10.0,kg/TJ,0.0702999,kg +79f79348-7570-3759-9be6-55890dc9fdc5,SESCO,II.1.1,San Juan,AR-J,annual,2016,bioetanol combustion consumption by freight transport,0.00702999,TJ,N2O,0.6,kg/TJ,0.004217994,kg +cdeb0f49-8d5b-33ce-bcac-0241b6702619,SESCO,II.1.1,San Luis,AR-D,annual,2016,bioetanol combustion consumption by freight transport,0.03983661,TJ,CH4,10.0,kg/TJ,0.3983661,kg +def54420-3460-32a3-8b40-7ffa57fddc5f,SESCO,II.1.1,San Luis,AR-D,annual,2016,bioetanol combustion consumption by freight transport,0.03983661,TJ,N2O,0.6,kg/TJ,0.023901966,kg +87367af5-0be5-37b7-aa37-7eb32d01e59f,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2016,bioetanol combustion consumption by freight transport,0.00702999,TJ,CH4,10.0,kg/TJ,0.0702999,kg +f52e52d4-0473-3df6-bf3d-56880901821e,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2016,bioetanol combustion consumption by freight transport,0.00702999,TJ,N2O,0.6,kg/TJ,0.004217994,kg +bdeba68c-ad95-30c0-bd2b-351b64b8ed89,SESCO,II.1.1,Santa Fe,AR-S,annual,2016,bioetanol combustion consumption by freight transport,1.8980972999999999,TJ,CH4,10.0,kg/TJ,18.980973,kg +a0892e9b-a229-344e-b460-7c4c85ce6d16,SESCO,II.1.1,Santa Fe,AR-S,annual,2016,bioetanol combustion consumption by freight transport,1.8980972999999999,TJ,N2O,0.6,kg/TJ,1.1388583799999998,kg +9eac265b-28ab-3c4f-bce7-a3a37bafc4d7,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2016,bioetanol combustion consumption by freight transport,0.02811996,TJ,CH4,10.0,kg/TJ,0.2811996,kg +99dd1bfa-fc6b-375b-98a2-1952d469e094,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2016,bioetanol combustion consumption by freight transport,0.02811996,TJ,N2O,0.6,kg/TJ,0.016871976,kg +43884f1d-2ef4-3051-ac7d-dd7478f28316,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2016,bioetanol combustion consumption by freight transport,0.00468666,TJ,CH4,10.0,kg/TJ,0.046866599999999994,kg +2f36cf43-106e-36ec-b968-675de7e2af6a,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2016,bioetanol combustion consumption by freight transport,0.00468666,TJ,N2O,0.6,kg/TJ,0.0028119959999999998,kg +7dd095e4-a140-3eb6-a59e-ffd68ef510c8,SESCO,II.1.1,Tucuman,AR-T,annual,2016,bioetanol combustion consumption by freight transport,0.13591314,TJ,CH4,10.0,kg/TJ,1.3591313999999999,kg +f9f8ddba-7b74-3f98-aa11-40fc8b477c75,SESCO,II.1.1,Tucuman,AR-T,annual,2016,bioetanol combustion consumption by freight transport,0.13591314,TJ,N2O,0.6,kg/TJ,0.08154788399999999,kg +0e67aabd-bc6e-3a6a-8662-d3e2bf7302db,SESCO,II.1.1,Capital Federal,AR-C,annual,2017,bioetanol combustion consumption by to the public,1.5312596399999998,TJ,CH4,10.0,kg/TJ,15.312596399999999,kg +f403ad53-2026-34e8-bc9c-0df8f7552e8a,SESCO,II.1.1,Capital Federal,AR-C,annual,2017,bioetanol combustion consumption by to the public,1.5312596399999998,TJ,N2O,0.6,kg/TJ,0.9187557839999998,kg +b77b4fce-d184-377a-b82b-cdeb51f820fa,SESCO,II.1.1,Capital Federal,AR-C,annual,2017,bioetanol combustion consumption by to the public,0.34766495999999997,TJ,CH4,10.0,kg/TJ,3.4766495999999996,kg +5d4c39fd-633d-3ac4-a2de-e8e2cc6e2466,SESCO,II.1.1,Capital Federal,AR-C,annual,2017,bioetanol combustion consumption by to the public,0.34766495999999997,TJ,N2O,0.6,kg/TJ,0.20859897599999996,kg +bd7d8071-a4dc-3f82-8c53-115edafd19ea,SESCO,II.5.1,Buenos Aires,AR-B,annual,2017,bioetanol combustion consumption by agriculture machines,3.8243145599999995,TJ,CH4,10.0,kg/TJ,38.24314559999999,kg +807322e1-ca0b-33be-9450-5a31b0ccadf4,SESCO,II.5.1,Buenos Aires,AR-B,annual,2017,bioetanol combustion consumption by agriculture machines,3.8243145599999995,TJ,N2O,0.6,kg/TJ,2.2945887359999997,kg +187ee274-d379-35d8-9b7e-52bc9fed5942,SESCO,II.5.1,Chaco,AR-H,annual,2017,bioetanol combustion consumption by agriculture machines,1.5287032799999998,TJ,CH4,10.0,kg/TJ,15.287032799999999,kg +1f713c98-8d3f-3e62-9687-a05cd47b3f59,SESCO,II.5.1,Chaco,AR-H,annual,2017,bioetanol combustion consumption by agriculture machines,1.5287032799999998,TJ,N2O,0.6,kg/TJ,0.9172219679999998,kg +931ee1dc-551e-3994-9e27-492d737bda59,SESCO,II.5.1,Córdoba,AR-X,annual,2017,bioetanol combustion consumption by agriculture machines,0.7490134799999999,TJ,CH4,10.0,kg/TJ,7.490134799999999,kg +b9f7f310-9754-3ee0-a59c-fa7897484ae4,SESCO,II.5.1,Córdoba,AR-X,annual,2017,bioetanol combustion consumption by agriculture machines,0.7490134799999999,TJ,N2O,0.6,kg/TJ,0.44940808799999993,kg +0df36c77-b8a7-339e-a36f-9f9b11ea2b1a,SESCO,II.5.1,Santa Fe,AR-S,annual,2017,bioetanol combustion consumption by agriculture machines,4.62445524,TJ,CH4,10.0,kg/TJ,46.244552399999996,kg +9f36f48b-f960-3211-a79a-7cfa9d393318,SESCO,II.5.1,Santa Fe,AR-S,annual,2017,bioetanol combustion consumption by agriculture machines,4.62445524,TJ,N2O,0.6,kg/TJ,2.774673144,kg +7265e6ab-2b7d-3a2d-834f-1a4bcfba7656,SESCO,II.5.1,Tucuman,AR-T,annual,2017,bioetanol combustion consumption by agriculture machines,3.2261263199999997,TJ,CH4,10.0,kg/TJ,32.261263199999995,kg +70785066-7743-394c-a582-3f486b1b64c1,SESCO,II.5.1,Tucuman,AR-T,annual,2017,bioetanol combustion consumption by agriculture machines,3.2261263199999997,TJ,N2O,0.6,kg/TJ,1.9356757919999996,kg +8010ae61-c985-3eb4-ab94-1f90bca08418,SESCO,II.5.1,Buenos Aires,AR-B,annual,2017,bioetanol combustion consumption by agriculture machines,0.8563805999999998,TJ,CH4,10.0,kg/TJ,8.563805999999998,kg +1c29e1d0-1273-3666-a1a5-d06ba6bda712,SESCO,II.5.1,Buenos Aires,AR-B,annual,2017,bioetanol combustion consumption by agriculture machines,0.8563805999999998,TJ,N2O,0.6,kg/TJ,0.5138283599999999,kg +58c46465-c723-3e61-aab7-a170085ffc05,SESCO,II.5.1,Chaco,AR-H,annual,2017,bioetanol combustion consumption by agriculture machines,0.24029783999999998,TJ,CH4,10.0,kg/TJ,2.4029784,kg +6363598c-dbda-394c-a53a-ba7367343fe4,SESCO,II.5.1,Chaco,AR-H,annual,2017,bioetanol combustion consumption by agriculture machines,0.24029783999999998,TJ,N2O,0.6,kg/TJ,0.144178704,kg +b17217f2-0722-3357-a84f-d440e030c567,SESCO,II.5.1,Córdoba,AR-X,annual,2017,bioetanol combustion consumption by agriculture machines,0.39112307999999996,TJ,CH4,10.0,kg/TJ,3.9112307999999993,kg +cee7f92b-c30b-3bb3-a300-9a6877bcb79d,SESCO,II.5.1,Córdoba,AR-X,annual,2017,bioetanol combustion consumption by agriculture machines,0.39112307999999996,TJ,N2O,0.6,kg/TJ,0.23467384799999996,kg +b028878a-310a-300e-9592-3d8416f6684d,SESCO,II.5.1,Santa Fe,AR-S,annual,2017,bioetanol combustion consumption by agriculture machines,1.5210341999999997,TJ,CH4,10.0,kg/TJ,15.210341999999997,kg +622c92b7-27e4-391e-a0ce-ffed25442c87,SESCO,II.5.1,Santa Fe,AR-S,annual,2017,bioetanol combustion consumption by agriculture machines,1.5210341999999997,TJ,N2O,0.6,kg/TJ,0.9126205199999997,kg +e59622b3-4f48-3edb-860e-b338820f9ca4,SESCO,II.5.1,Tucuman,AR-T,annual,2017,bioetanol combustion consumption by agriculture machines,0.8461551599999999,TJ,CH4,10.0,kg/TJ,8.4615516,kg +9acdd0a0-5c17-3f63-970c-1d186363e433,SESCO,II.5.1,Tucuman,AR-T,annual,2017,bioetanol combustion consumption by agriculture machines,0.8461551599999999,TJ,N2O,0.6,kg/TJ,0.5076930959999999,kg +1b3bade9-61f6-3585-915a-d1cee5cec8cd,SESCO,II.1.1,Buenos Aires,AR-B,annual,2017,bioetanol combustion consumption by to the public,0.15593796,TJ,CH4,10.0,kg/TJ,1.5593795999999998,kg +b3b20bc6-8203-3f66-9867-72ab125f6271,SESCO,II.1.1,Buenos Aires,AR-B,annual,2017,bioetanol combustion consumption by to the public,0.15593796,TJ,N2O,0.6,kg/TJ,0.09356277599999999,kg +98b88e70-7de8-3441-a6d0-1647c2449373,SESCO,II.1.1,Santa Fe,AR-S,annual,2017,bioetanol combustion consumption by to the public,0.08435988,TJ,CH4,10.0,kg/TJ,0.8435988,kg +0e6cbe31-4edb-302c-af92-3d7e33bb4bda,SESCO,II.1.1,Santa Fe,AR-S,annual,2017,bioetanol combustion consumption by to the public,0.08435988,TJ,N2O,0.6,kg/TJ,0.050615928,kg +1cb6dcac-1abb-3770-9ac8-7b8c249d4355,SESCO,II.1.1,Tucuman,AR-T,annual,2017,bioetanol combustion consumption by to the public,0.12014891999999999,TJ,CH4,10.0,kg/TJ,1.2014892,kg +d50db80d-0f44-3922-8643-c148e2b15c57,SESCO,II.1.1,Tucuman,AR-T,annual,2017,bioetanol combustion consumption by to the public,0.12014891999999999,TJ,N2O,0.6,kg/TJ,0.072089352,kg +6afa2f7c-69cd-38b3-8c4c-7e3278df82c4,SESCO,II.1.1,Buenos Aires,AR-B,annual,2017,bioetanol combustion consumption by to the public,825.40007316,TJ,CH4,10.0,kg/TJ,8254.000731600001,kg +6992d062-4c4e-32f6-899f-d8ddd8eb60ba,SESCO,II.1.1,Buenos Aires,AR-B,annual,2017,bioetanol combustion consumption by to the public,825.40007316,TJ,N2O,0.6,kg/TJ,495.240043896,kg +20299a03-9c2d-3bb2-a634-ce8ce5612343,SESCO,II.1.1,Capital Federal,AR-C,annual,2017,bioetanol combustion consumption by to the public,275.46312816,TJ,CH4,10.0,kg/TJ,2754.6312816,kg +e50c062d-2b4d-39c9-bfa6-544f225e1ad0,SESCO,II.1.1,Capital Federal,AR-C,annual,2017,bioetanol combustion consumption by to the public,275.46312816,TJ,N2O,0.6,kg/TJ,165.27787689599998,kg +fb7ddd3b-bab4-338f-8c33-3b82b061901c,SESCO,II.1.1,Catamarca,AR-K,annual,2017,bioetanol combustion consumption by to the public,35.272655279999995,TJ,CH4,10.0,kg/TJ,352.7265527999999,kg +a143cad3-36d0-35d7-b4ad-52ce44df42e0,SESCO,II.1.1,Catamarca,AR-K,annual,2017,bioetanol combustion consumption by to the public,35.272655279999995,TJ,N2O,0.6,kg/TJ,21.163593167999995,kg +c1c03959-63be-3647-96f6-131b9e0232ba,SESCO,II.1.1,Chaco,AR-H,annual,2017,bioetanol combustion consumption by to the public,35.05792104,TJ,CH4,10.0,kg/TJ,350.57921039999997,kg +d9c1b91b-0777-3428-8ddf-108f1cb35a15,SESCO,II.1.1,Chaco,AR-H,annual,2017,bioetanol combustion consumption by to the public,35.05792104,TJ,N2O,0.6,kg/TJ,21.034752623999996,kg +16435a4f-0bda-3527-b063-adc25d0a5905,SESCO,II.1.1,Chubut,AR-U,annual,2017,bioetanol combustion consumption by to the public,26.092766519999998,TJ,CH4,10.0,kg/TJ,260.9276652,kg +359ff9b8-0119-3b39-b638-1c9ce3246625,SESCO,II.1.1,Chubut,AR-U,annual,2017,bioetanol combustion consumption by to the public,26.092766519999998,TJ,N2O,0.6,kg/TJ,15.655659911999997,kg +f7c91af4-65b2-364c-a5b9-5e072ac57810,SESCO,II.1.1,Corrientes,AR-W,annual,2017,bioetanol combustion consumption by to the public,49.386318839999994,TJ,CH4,10.0,kg/TJ,493.86318839999996,kg +dc27cfa9-7211-3327-a862-d4fe08d42ff4,SESCO,II.1.1,Corrientes,AR-W,annual,2017,bioetanol combustion consumption by to the public,49.386318839999994,TJ,N2O,0.6,kg/TJ,29.631791303999997,kg +8ee0e1b4-e623-336a-a9d1-936cbc62bf34,SESCO,II.1.1,Córdoba,AR-X,annual,2017,bioetanol combustion consumption by to the public,257.44079015999995,TJ,CH4,10.0,kg/TJ,2574.4079015999996,kg +bb92696a-e357-3b46-a87d-cf97c41222f4,SESCO,II.1.1,Córdoba,AR-X,annual,2017,bioetanol combustion consumption by to the public,257.44079015999995,TJ,N2O,0.6,kg/TJ,154.46447409599998,kg +8cc5c899-732a-31a3-a551-29a5022f2a82,SESCO,II.1.1,Entre Rios,AR-E,annual,2017,bioetanol combustion consumption by to the public,89.56718532,TJ,CH4,10.0,kg/TJ,895.6718532,kg +4dcc3b7b-c8ee-39e2-a674-7244edf865a4,SESCO,II.1.1,Entre Rios,AR-E,annual,2017,bioetanol combustion consumption by to the public,89.56718532,TJ,N2O,0.6,kg/TJ,53.74031119199999,kg +24076578-0f28-3731-bf4a-2eaa2bb40a1b,SESCO,II.1.1,Formosa,AR-P,annual,2017,bioetanol combustion consumption by to the public,54.619187759999996,TJ,CH4,10.0,kg/TJ,546.1918776,kg +dd9a0b2a-7d05-3060-8372-1cfe7938e34c,SESCO,II.1.1,Formosa,AR-P,annual,2017,bioetanol combustion consumption by to the public,54.619187759999996,TJ,N2O,0.6,kg/TJ,32.771512656,kg +88440982-b439-3b9f-bbef-b9cb456c4640,SESCO,II.1.1,Jujuy,AR-Y,annual,2017,bioetanol combustion consumption by to the public,16.86430692,TJ,CH4,10.0,kg/TJ,168.6430692,kg +4132d527-cf24-334f-9684-f85c37d7cf4d,SESCO,II.1.1,Jujuy,AR-Y,annual,2017,bioetanol combustion consumption by to the public,16.86430692,TJ,N2O,0.6,kg/TJ,10.118584152,kg +7d1a5e72-ef1a-318c-84d5-e00f6850f14f,SESCO,II.1.1,La Pampa,AR-L,annual,2017,bioetanol combustion consumption by to the public,13.98584556,TJ,CH4,10.0,kg/TJ,139.85845559999998,kg +090ac5c5-7fcc-31a5-8580-0119ec99ac2f,SESCO,II.1.1,La Pampa,AR-L,annual,2017,bioetanol combustion consumption by to the public,13.98584556,TJ,N2O,0.6,kg/TJ,8.391507336,kg +134d8d53-3b35-3233-bbee-c5329a5e9cf5,SESCO,II.1.1,La Rioja,AR-F,annual,2017,bioetanol combustion consumption by to the public,8.571475079999999,TJ,CH4,10.0,kg/TJ,85.71475079999999,kg +7bf503c4-11e6-3334-8462-52203e5f6b33,SESCO,II.1.1,La Rioja,AR-F,annual,2017,bioetanol combustion consumption by to the public,8.571475079999999,TJ,N2O,0.6,kg/TJ,5.142885047999999,kg +a9410fcd-a889-3184-8687-6d15e3df70bd,SESCO,II.1.1,Mendoza,AR-M,annual,2017,bioetanol combustion consumption by to the public,32.925916799999996,TJ,CH4,10.0,kg/TJ,329.25916799999993,kg +951469a8-b366-3176-a423-88b181e90120,SESCO,II.1.1,Mendoza,AR-M,annual,2017,bioetanol combustion consumption by to the public,32.925916799999996,TJ,N2O,0.6,kg/TJ,19.755550079999995,kg +2b35345b-dcd7-319a-bc78-fd1f9de63168,SESCO,II.1.1,Misiones,AR-N,annual,2017,bioetanol combustion consumption by to the public,62.311274999999995,TJ,CH4,10.0,kg/TJ,623.11275,kg +6459600f-583f-3f17-a3bd-deac8f3899d2,SESCO,II.1.1,Misiones,AR-N,annual,2017,bioetanol combustion consumption by to the public,62.311274999999995,TJ,N2O,0.6,kg/TJ,37.386765,kg +0310a24a-9a76-3953-8a6b-329464e336df,SESCO,II.1.1,Neuquén,AR-Q,annual,2017,bioetanol combustion consumption by to the public,22.715814959999996,TJ,CH4,10.0,kg/TJ,227.15814959999994,kg +637631fd-d82c-394d-8ece-e006f8206f88,SESCO,II.1.1,Neuquén,AR-Q,annual,2017,bioetanol combustion consumption by to the public,22.715814959999996,TJ,N2O,0.6,kg/TJ,13.629488975999998,kg +8d13140e-fada-3a8b-ad1e-1f589d6a4ded,SESCO,II.1.1,Rio Negro,AR-R,annual,2017,bioetanol combustion consumption by to the public,46.845296999999995,TJ,CH4,10.0,kg/TJ,468.45296999999994,kg +34bd75d4-1e9c-35b3-a39e-c0e528ffc371,SESCO,II.1.1,Rio Negro,AR-R,annual,2017,bioetanol combustion consumption by to the public,46.845296999999995,TJ,N2O,0.6,kg/TJ,28.107178199999996,kg +7b305595-2f03-3eb1-abae-0b7bbf8e90c6,SESCO,II.1.1,Salta,AR-A,annual,2017,bioetanol combustion consumption by to the public,11.411591039999998,TJ,CH4,10.0,kg/TJ,114.11591039999998,kg +71db1504-d671-3ce6-ae5d-22451165787c,SESCO,II.1.1,Salta,AR-A,annual,2017,bioetanol combustion consumption by to the public,11.411591039999998,TJ,N2O,0.6,kg/TJ,6.8469546239999985,kg +95dbc30b-a68f-308b-82da-8419a24b3e6f,SESCO,II.1.1,San Juan,AR-J,annual,2017,bioetanol combustion consumption by to the public,19.04999472,TJ,CH4,10.0,kg/TJ,190.4999472,kg +a402ed8f-3bec-35aa-9ef1-b382c55c9a6f,SESCO,II.1.1,San Juan,AR-J,annual,2017,bioetanol combustion consumption by to the public,19.04999472,TJ,N2O,0.6,kg/TJ,11.429996832,kg +0a080393-6a7f-385c-ab25-faa00f4c7586,SESCO,II.1.1,San Luis,AR-D,annual,2017,bioetanol combustion consumption by to the public,43.66007244,TJ,CH4,10.0,kg/TJ,436.6007244,kg +15c2ae89-a16b-3502-a827-49cc15cccd88,SESCO,II.1.1,San Luis,AR-D,annual,2017,bioetanol combustion consumption by to the public,43.66007244,TJ,N2O,0.6,kg/TJ,26.196043464,kg +9f039b35-6f86-3b58-9d6a-dcdb1b111404,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2017,bioetanol combustion consumption by to the public,5.07181824,TJ,CH4,10.0,kg/TJ,50.718182399999996,kg +83f4d57d-01f0-3fa6-afa4-5f7dd71835ed,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2017,bioetanol combustion consumption by to the public,5.07181824,TJ,N2O,0.6,kg/TJ,3.043090944,kg +26df2c74-025c-3cfb-9bdc-374b33e7185a,SESCO,II.1.1,Santa Fe,AR-S,annual,2017,bioetanol combustion consumption by to the public,212.93967528,TJ,CH4,10.0,kg/TJ,2129.3967528,kg +24329137-a371-3e29-88a9-a9b3d747d9de,SESCO,II.1.1,Santa Fe,AR-S,annual,2017,bioetanol combustion consumption by to the public,212.93967528,TJ,N2O,0.6,kg/TJ,127.76380516799999,kg +7b9b9341-72a7-36ca-9191-f5e290e5c4d5,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2017,bioetanol combustion consumption by to the public,28.618450199999995,TJ,CH4,10.0,kg/TJ,286.18450199999995,kg +6a5a4b43-c4af-368f-86cf-ad0ea831931b,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2017,bioetanol combustion consumption by to the public,28.618450199999995,TJ,N2O,0.6,kg/TJ,17.171070119999996,kg +fa540be3-d6cf-3abb-94e7-41a5e5cd65fa,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2017,bioetanol combustion consumption by to the public,13.1396904,TJ,CH4,10.0,kg/TJ,131.396904,kg +4e30c0d0-1c63-313b-a523-d24561cd1b5f,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2017,bioetanol combustion consumption by to the public,13.1396904,TJ,N2O,0.6,kg/TJ,7.8838142399999995,kg +ed589b3f-9e0c-3b9a-8afd-30f7a6fd6d66,SESCO,II.1.1,Tucuman,AR-T,annual,2017,bioetanol combustion consumption by to the public,7.4466766799999995,TJ,CH4,10.0,kg/TJ,74.46676679999999,kg +ed40c99f-9e6d-38c4-94f7-4aac9002ff1c,SESCO,II.1.1,Tucuman,AR-T,annual,2017,bioetanol combustion consumption by to the public,7.4466766799999995,TJ,N2O,0.6,kg/TJ,4.468006008,kg +dee55a9d-7591-3405-aaca-01bbf048ff77,SESCO,II.1.1,Buenos Aires,AR-B,annual,2017,bioetanol combustion consumption by to the public,244.66921559999997,TJ,CH4,10.0,kg/TJ,2446.6921559999996,kg +d6ac1f88-f7b3-3a42-8a4d-a15bf04aacdc,SESCO,II.1.1,Buenos Aires,AR-B,annual,2017,bioetanol combustion consumption by to the public,244.66921559999997,TJ,N2O,0.6,kg/TJ,146.80152936,kg +48a258fd-7756-3709-abe4-5cfc95665879,SESCO,II.1.1,Capital Federal,AR-C,annual,2017,bioetanol combustion consumption by to the public,108.48169295999999,TJ,CH4,10.0,kg/TJ,1084.8169295999999,kg +a6dfedf3-ae0c-3ed0-9d3b-52d4b3762cc1,SESCO,II.1.1,Capital Federal,AR-C,annual,2017,bioetanol combustion consumption by to the public,108.48169295999999,TJ,N2O,0.6,kg/TJ,65.089015776,kg +d62e09aa-9270-33fa-9522-17e11c6e09a4,SESCO,II.1.1,Catamarca,AR-K,annual,2017,bioetanol combustion consumption by to the public,11.784819599999999,TJ,CH4,10.0,kg/TJ,117.84819599999999,kg +a200b3f3-21af-365d-af9f-9c4496e2fa91,SESCO,II.1.1,Catamarca,AR-K,annual,2017,bioetanol combustion consumption by to the public,11.784819599999999,TJ,N2O,0.6,kg/TJ,7.070891759999999,kg +1177b82f-5180-3959-a1b4-8a9bfd698194,SESCO,II.1.1,Chaco,AR-H,annual,2017,bioetanol combustion consumption by to the public,7.44412032,TJ,CH4,10.0,kg/TJ,74.44120319999999,kg +d96a5114-7ac4-3fde-b1aa-53d443adc80d,SESCO,II.1.1,Chaco,AR-H,annual,2017,bioetanol combustion consumption by to the public,7.44412032,TJ,N2O,0.6,kg/TJ,4.4664721919999995,kg +ef9d90ba-79db-3896-b857-339235eee57b,SESCO,II.1.1,Chubut,AR-U,annual,2017,bioetanol combustion consumption by to the public,6.347441879999999,TJ,CH4,10.0,kg/TJ,63.47441879999999,kg +e5f36b62-05e2-30c4-bb91-f51a48401df8,SESCO,II.1.1,Chubut,AR-U,annual,2017,bioetanol combustion consumption by to the public,6.347441879999999,TJ,N2O,0.6,kg/TJ,3.808465127999999,kg +b6f89eab-fcb1-33b9-b74a-c5a33b80e622,SESCO,II.1.1,Corrientes,AR-W,annual,2017,bioetanol combustion consumption by to the public,13.17547944,TJ,CH4,10.0,kg/TJ,131.7547944,kg +5368a85d-2d40-3831-be8a-29adf1ec9e61,SESCO,II.1.1,Corrientes,AR-W,annual,2017,bioetanol combustion consumption by to the public,13.17547944,TJ,N2O,0.6,kg/TJ,7.905287663999999,kg +af01a547-54f4-3872-9f16-df53e28a1f42,SESCO,II.1.1,Córdoba,AR-X,annual,2017,bioetanol combustion consumption by to the public,63.909,TJ,CH4,10.0,kg/TJ,639.09,kg +907ad123-8362-3a1d-90da-237f49808fe9,SESCO,II.1.1,Córdoba,AR-X,annual,2017,bioetanol combustion consumption by to the public,63.909,TJ,N2O,0.6,kg/TJ,38.3454,kg +6d4f7c4a-adf4-3d27-8e97-2016a351e003,SESCO,II.1.1,Entre Rios,AR-E,annual,2017,bioetanol combustion consumption by to the public,26.65516572,TJ,CH4,10.0,kg/TJ,266.5516572,kg +77b906a4-7d83-3c6a-a142-18b1f665ea1d,SESCO,II.1.1,Entre Rios,AR-E,annual,2017,bioetanol combustion consumption by to the public,26.65516572,TJ,N2O,0.6,kg/TJ,15.993099432,kg +0967eccd-81e6-3261-8713-e1d49e539bcd,SESCO,II.1.1,Formosa,AR-P,annual,2017,bioetanol combustion consumption by to the public,14.558470199999999,TJ,CH4,10.0,kg/TJ,145.584702,kg +463a159c-369b-3922-aedc-8e1857bdb70a,SESCO,II.1.1,Formosa,AR-P,annual,2017,bioetanol combustion consumption by to the public,14.558470199999999,TJ,N2O,0.6,kg/TJ,8.73508212,kg +e9960e8e-48e8-321b-bd13-1df8d49ba5b5,SESCO,II.1.1,Jujuy,AR-Y,annual,2017,bioetanol combustion consumption by to the public,3.17499912,TJ,CH4,10.0,kg/TJ,31.749991199999997,kg +4b1a6227-395c-39b0-ab4b-8a275d5e2b38,SESCO,II.1.1,Jujuy,AR-Y,annual,2017,bioetanol combustion consumption by to the public,3.17499912,TJ,N2O,0.6,kg/TJ,1.9049994719999999,kg +49763401-d73f-30a6-bfd8-2e88e54991f6,SESCO,II.1.1,La Pampa,AR-L,annual,2017,bioetanol combustion consumption by to the public,5.358130559999999,TJ,CH4,10.0,kg/TJ,53.58130559999999,kg +2601aca5-a720-3231-bc37-6becff6368b2,SESCO,II.1.1,La Pampa,AR-L,annual,2017,bioetanol combustion consumption by to the public,5.358130559999999,TJ,N2O,0.6,kg/TJ,3.2148783359999995,kg +78925b15-8c0c-3aa1-babb-f29ff9a00282,SESCO,II.1.1,La Rioja,AR-F,annual,2017,bioetanol combustion consumption by to the public,1.95050268,TJ,CH4,10.0,kg/TJ,19.5050268,kg +d5fce45a-4efa-32aa-83db-2907545bdb50,SESCO,II.1.1,La Rioja,AR-F,annual,2017,bioetanol combustion consumption by to the public,1.95050268,TJ,N2O,0.6,kg/TJ,1.170301608,kg +a064aab4-d255-3106-ace3-a0e4cf3b18b8,SESCO,II.1.1,Mendoza,AR-M,annual,2017,bioetanol combustion consumption by to the public,13.904042039999998,TJ,CH4,10.0,kg/TJ,139.0404204,kg +d585e1c1-f135-3aa9-9881-86e37003e96a,SESCO,II.1.1,Mendoza,AR-M,annual,2017,bioetanol combustion consumption by to the public,13.904042039999998,TJ,N2O,0.6,kg/TJ,8.342425224,kg +cfc2a9ef-39ae-338b-b994-98c2464fecfa,SESCO,II.1.1,Misiones,AR-N,annual,2017,bioetanol combustion consumption by to the public,10.210101839999998,TJ,CH4,10.0,kg/TJ,102.10101839999999,kg +0ae6a0d6-1fc8-3c8e-90f8-8acb5a02f7d5,SESCO,II.1.1,Misiones,AR-N,annual,2017,bioetanol combustion consumption by to the public,10.210101839999998,TJ,N2O,0.6,kg/TJ,6.126061103999999,kg +5d9533c6-7b48-363b-ba20-927ff4fd6f7b,SESCO,II.1.1,Neuquén,AR-Q,annual,2017,bioetanol combustion consumption by to the public,11.823165,TJ,CH4,10.0,kg/TJ,118.23165,kg +0ea9cd61-6211-34da-aaca-82bbc6ff8c14,SESCO,II.1.1,Neuquén,AR-Q,annual,2017,bioetanol combustion consumption by to the public,11.823165,TJ,N2O,0.6,kg/TJ,7.0938989999999995,kg +902e40c2-cb21-323d-8782-ef966a835052,SESCO,II.1.1,Rio Negro,AR-R,annual,2017,bioetanol combustion consumption by to the public,18.0479016,TJ,CH4,10.0,kg/TJ,180.479016,kg +30841142-ba5f-3ec0-897f-3a0843eea176,SESCO,II.1.1,Rio Negro,AR-R,annual,2017,bioetanol combustion consumption by to the public,18.0479016,TJ,N2O,0.6,kg/TJ,10.82874096,kg +6ced39a9-c269-3982-81e0-73c0e818866b,SESCO,II.1.1,Salta,AR-A,annual,2017,bioetanol combustion consumption by to the public,1.47246336,TJ,CH4,10.0,kg/TJ,14.7246336,kg +a130f266-7be3-3954-a179-b98d09994612,SESCO,II.1.1,Salta,AR-A,annual,2017,bioetanol combustion consumption by to the public,1.47246336,TJ,N2O,0.6,kg/TJ,0.8834780160000001,kg +b4f3875f-54d2-39e1-a9e4-ff595fd85596,SESCO,II.1.1,San Juan,AR-J,annual,2017,bioetanol combustion consumption by to the public,5.49361764,TJ,CH4,10.0,kg/TJ,54.9361764,kg +8b8e3da4-6475-3ba9-aff4-7688de59d077,SESCO,II.1.1,San Juan,AR-J,annual,2017,bioetanol combustion consumption by to the public,5.49361764,TJ,N2O,0.6,kg/TJ,3.296170584,kg +5c681ff6-2a75-35c6-a286-b2368293f989,SESCO,II.1.1,San Luis,AR-D,annual,2017,bioetanol combustion consumption by to the public,11.1712932,TJ,CH4,10.0,kg/TJ,111.712932,kg +8c03fd3f-cb2a-341f-90e2-ec0299b68338,SESCO,II.1.1,San Luis,AR-D,annual,2017,bioetanol combustion consumption by to the public,11.1712932,TJ,N2O,0.6,kg/TJ,6.70277592,kg +8015da6d-6813-35ba-9b3f-09be13c10a06,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2017,bioetanol combustion consumption by to the public,2.4489928799999996,TJ,CH4,10.0,kg/TJ,24.489928799999994,kg +b6b0f1a4-d890-3b00-bb79-b30c3738c8ff,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2017,bioetanol combustion consumption by to the public,2.4489928799999996,TJ,N2O,0.6,kg/TJ,1.4693957279999996,kg +bc0e1d2c-c1df-35c8-ab12-06440867470c,SESCO,II.1.1,Santa Fe,AR-S,annual,2017,bioetanol combustion consumption by to the public,64.95455124,TJ,CH4,10.0,kg/TJ,649.5455124,kg +8e4c9790-2a56-3609-ac8f-0f25258792f1,SESCO,II.1.1,Santa Fe,AR-S,annual,2017,bioetanol combustion consumption by to the public,64.95455124,TJ,N2O,0.6,kg/TJ,38.972730743999996,kg +05d133d7-3d6b-35b4-8f89-6abbcf90d057,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2017,bioetanol combustion consumption by to the public,9.78318972,TJ,CH4,10.0,kg/TJ,97.83189719999999,kg +dde0a45a-3883-3faa-bd87-a2c37446b322,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2017,bioetanol combustion consumption by to the public,9.78318972,TJ,N2O,0.6,kg/TJ,5.869913831999999,kg +d026a111-e10d-3636-8155-6d4158203211,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2017,bioetanol combustion consumption by to the public,5.0232474,TJ,CH4,10.0,kg/TJ,50.232473999999996,kg +38b94879-9819-33d7-8442-4e840ad26bd8,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2017,bioetanol combustion consumption by to the public,5.0232474,TJ,N2O,0.6,kg/TJ,3.0139484399999996,kg +6ad44370-81e0-32ef-b8c3-b5b447c37b1f,SESCO,II.1.1,Tucuman,AR-T,annual,2017,bioetanol combustion consumption by to the public,2.14222968,TJ,CH4,10.0,kg/TJ,21.422296799999998,kg +4d60547b-1de0-39e9-9155-bcb5a67b8f12,SESCO,II.1.1,Tucuman,AR-T,annual,2017,bioetanol combustion consumption by to the public,2.14222968,TJ,N2O,0.6,kg/TJ,1.2853378079999997,kg +d4ae96e2-06db-3bbd-81f9-9183d5fb2da7,SESCO,II.1.1,Buenos Aires,AR-B,annual,2017,bioetanol combustion consumption by freight transport,0.7029989999999999,TJ,CH4,10.0,kg/TJ,7.02999,kg +e801a390-fb81-3e5f-a2f0-65f22ea6734f,SESCO,II.1.1,Buenos Aires,AR-B,annual,2017,bioetanol combustion consumption by freight transport,0.7029989999999999,TJ,N2O,0.6,kg/TJ,0.42179939999999994,kg +ae3ef28b-1d8a-3718-bd07-9faa5cdd8a6c,SESCO,II.1.1,Capital Federal,AR-C,annual,2017,bioetanol combustion consumption by freight transport,0.33999588,TJ,CH4,10.0,kg/TJ,3.3999588,kg +ec4e4f4f-d30c-3949-9dff-eeddb417a9bd,SESCO,II.1.1,Capital Federal,AR-C,annual,2017,bioetanol combustion consumption by freight transport,0.33999588,TJ,N2O,0.6,kg/TJ,0.20399752799999998,kg +45d27464-a7d4-3099-b930-2b558d4a7e10,SESCO,II.1.1,Chubut,AR-U,annual,2017,bioetanol combustion consumption by freight transport,0.0025563599999999997,TJ,CH4,10.0,kg/TJ,0.0255636,kg +9d63a93a-bef2-395d-920c-f60ae59dd929,SESCO,II.1.1,Chubut,AR-U,annual,2017,bioetanol combustion consumption by freight transport,0.0025563599999999997,TJ,N2O,0.6,kg/TJ,0.0015338159999999997,kg +9aa6aacd-7fe2-34b3-aafb-8a25d2895bbc,SESCO,II.1.1,Córdoba,AR-X,annual,2017,bioetanol combustion consumption by freight transport,0.12270527999999999,TJ,CH4,10.0,kg/TJ,1.2270527999999998,kg +09cb70cd-f9c9-3dc2-ade0-cac088bc249d,SESCO,II.1.1,Córdoba,AR-X,annual,2017,bioetanol combustion consumption by freight transport,0.12270527999999999,TJ,N2O,0.6,kg/TJ,0.07362316799999999,kg +44ae4a60-19f6-387e-a540-2d41fd61ad6e,SESCO,II.1.1,Santa Fe,AR-S,annual,2017,bioetanol combustion consumption by freight transport,0.02300724,TJ,CH4,10.0,kg/TJ,0.2300724,kg +94557bb9-41e2-37d8-922f-8bd2d0e2c324,SESCO,II.1.1,Santa Fe,AR-S,annual,2017,bioetanol combustion consumption by freight transport,0.02300724,TJ,N2O,0.6,kg/TJ,0.013804344000000001,kg +0d10b228-5f07-3d73-b916-95e2922f2397,SESCO,II.1.1,Buenos Aires,AR-B,annual,2017,bioetanol combustion consumption by freight transport,0.5956318799999999,TJ,CH4,10.0,kg/TJ,5.956318799999999,kg +01f3f8c9-5173-3f91-bc00-50b1f03c1b1a,SESCO,II.1.1,Buenos Aires,AR-B,annual,2017,bioetanol combustion consumption by freight transport,0.5956318799999999,TJ,N2O,0.6,kg/TJ,0.35737912799999993,kg +003b5f19-ca34-3645-b875-72e5bd631d89,SESCO,II.1.1,Capital Federal,AR-C,annual,2017,bioetanol combustion consumption by freight transport,0.34255223999999995,TJ,CH4,10.0,kg/TJ,3.4255223999999993,kg +ca3a61e7-9e8e-36f0-8d16-2b8c49bcb9f8,SESCO,II.1.1,Capital Federal,AR-C,annual,2017,bioetanol combustion consumption by freight transport,0.34255223999999995,TJ,N2O,0.6,kg/TJ,0.20553134399999998,kg +45d27464-a7d4-3099-b930-2b558d4a7e10,SESCO,II.1.1,Chubut,AR-U,annual,2017,bioetanol combustion consumption by freight transport,0.0025563599999999997,TJ,CH4,10.0,kg/TJ,0.0255636,kg +9d63a93a-bef2-395d-920c-f60ae59dd929,SESCO,II.1.1,Chubut,AR-U,annual,2017,bioetanol combustion consumption by freight transport,0.0025563599999999997,TJ,N2O,0.6,kg/TJ,0.0015338159999999997,kg +c7c30fd0-f7fc-3386-aac7-cc0e5f4e3199,SESCO,II.1.1,Córdoba,AR-X,annual,2017,bioetanol combustion consumption by freight transport,0.13804344,TJ,CH4,10.0,kg/TJ,1.3804344,kg +e298aede-67f1-3a86-a1a6-d27b11c4f726,SESCO,II.1.1,Córdoba,AR-X,annual,2017,bioetanol combustion consumption by freight transport,0.13804344,TJ,N2O,0.6,kg/TJ,0.08282606399999999,kg +98b88e70-7de8-3441-a6d0-1647c2449373,SESCO,II.1.1,Santa Fe,AR-S,annual,2017,bioetanol combustion consumption by freight transport,0.08435988,TJ,CH4,10.0,kg/TJ,0.8435988,kg +0e6cbe31-4edb-302c-af92-3d7e33bb4bda,SESCO,II.1.1,Santa Fe,AR-S,annual,2017,bioetanol combustion consumption by freight transport,0.08435988,TJ,N2O,0.6,kg/TJ,0.050615928,kg +355b0e43-e2e6-3fd4-a498-74b0cbfa05da,SESCO,II.1.1,Buenos Aires,AR-B,annual,2017,bioetanol combustion consumption by public passenger transport,0.0025563599999999997,TJ,CH4,10.0,kg/TJ,0.0255636,kg +e08d602b-f4c9-3be9-ae01-5eafd413cdfc,SESCO,II.1.1,Buenos Aires,AR-B,annual,2017,bioetanol combustion consumption by public passenger transport,0.0025563599999999997,TJ,N2O,0.6,kg/TJ,0.0015338159999999997,kg +94cba0fc-4f25-3798-8da8-b570b89ec5d4,SESCO,II.1.1,Santa Fe,AR-S,annual,2017,bioetanol combustion consumption by public passenger transport,0.14315615999999998,TJ,CH4,10.0,kg/TJ,1.4315615999999998,kg +540b84ae-c4d4-3359-ab37-d0e045738d49,SESCO,II.1.1,Santa Fe,AR-S,annual,2017,bioetanol combustion consumption by public passenger transport,0.14315615999999998,TJ,N2O,0.6,kg/TJ,0.08589369599999998,kg +b663d7cb-2578-3e2e-866c-e3fddd96c9fa,SESCO,II.1.1,Santa Fe,AR-S,annual,2017,bioetanol combustion consumption by public passenger transport,0.04857084,TJ,CH4,10.0,kg/TJ,0.4857084,kg +24a03b1a-3e2d-3948-a6f5-88fb91041e2d,SESCO,II.1.1,Santa Fe,AR-S,annual,2017,bioetanol combustion consumption by public passenger transport,0.04857084,TJ,N2O,0.6,kg/TJ,0.029142503999999996,kg +f43f8f28-0dbe-3519-bec3-074809303181,SESCO,II.5.1,Santiago del Estero,AR-G,annual,2017,bioetanol combustion consumption by agriculture machines,0.037886789016,TJ,CH4,10.0,kg/TJ,0.37886789016,kg +9b701950-c589-368e-afac-53ffe14ac12a,SESCO,II.5.1,Santiago del Estero,AR-G,annual,2017,bioetanol combustion consumption by agriculture machines,0.037886789016,TJ,N2O,0.6,kg/TJ,0.022732073409599998,kg +09246ffb-b8db-3614-a61f-eac47f274f6d,SESCO,II.1.1,Buenos Aires,AR-B,annual,2017,bioetanol combustion consumption by to the public,157.80138155478,TJ,CH4,10.0,kg/TJ,1578.0138155477998,kg +24360b9b-b681-39a2-870b-c73291c6fc1a,SESCO,II.1.1,Buenos Aires,AR-B,annual,2017,bioetanol combustion consumption by to the public,157.80138155478,TJ,N2O,0.6,kg/TJ,94.680828932868,kg +f79240d1-c08c-3378-ad04-1a79588d1088,SESCO,II.1.1,Capital Federal,AR-C,annual,2017,bioetanol combustion consumption by to the public,15.905116167336,TJ,CH4,10.0,kg/TJ,159.05116167336,kg +5f7be375-ad38-31d6-aeec-525e56e1fb19,SESCO,II.1.1,Capital Federal,AR-C,annual,2017,bioetanol combustion consumption by to the public,15.905116167336,TJ,N2O,0.6,kg/TJ,9.5430697004016,kg +3f5cc2d9-f5ae-316e-94d4-c993d1af042a,SESCO,II.1.1,Catamarca,AR-K,annual,2017,bioetanol combustion consumption by to the public,14.900571498095998,TJ,CH4,10.0,kg/TJ,149.00571498095997,kg +5fb3c264-c3c5-36f0-bfc6-a339f6866818,SESCO,II.1.1,Catamarca,AR-K,annual,2017,bioetanol combustion consumption by to the public,14.900571498095998,TJ,N2O,0.6,kg/TJ,8.940342898857597,kg +a5a4dbfc-bde2-3835-9f50-903d895de4cb,SESCO,II.1.1,Chaco,AR-H,annual,2017,bioetanol combustion consumption by to the public,21.261209819688002,TJ,CH4,10.0,kg/TJ,212.61209819688003,kg +9feb5eca-4335-3362-a0bd-c568114d85ea,SESCO,II.1.1,Chaco,AR-H,annual,2017,bioetanol combustion consumption by to the public,21.261209819688002,TJ,N2O,0.6,kg/TJ,12.7567258918128,kg +f558bdf8-feeb-33a4-a286-54ea38982004,SESCO,II.1.1,Corrientes,AR-W,annual,2017,bioetanol combustion consumption by to the public,20.441140524035998,TJ,CH4,10.0,kg/TJ,204.41140524035998,kg +8d1cbf99-9042-33a0-b0e6-d8043621cf8a,SESCO,II.1.1,Corrientes,AR-W,annual,2017,bioetanol combustion consumption by to the public,20.441140524035998,TJ,N2O,0.6,kg/TJ,12.264684314421599,kg +2cdbad39-b75f-3215-b685-a8cc80e20549,SESCO,II.1.1,Córdoba,AR-X,annual,2017,bioetanol combustion consumption by to the public,68.748959966904,TJ,CH4,10.0,kg/TJ,687.48959966904,kg +95495ee8-3369-32f8-9532-014fb5fd584a,SESCO,II.1.1,Córdoba,AR-X,annual,2017,bioetanol combustion consumption by to the public,68.748959966904,TJ,N2O,0.6,kg/TJ,41.249375980142396,kg +196bea83-c0ec-343d-82ca-2ef3348c0dc8,SESCO,II.1.1,Entre Rios,AR-E,annual,2017,bioetanol combustion consumption by to the public,31.524153665975998,TJ,CH4,10.0,kg/TJ,315.24153665975996,kg +77e66b4e-e4d7-3c69-8a3b-b40bac58058c,SESCO,II.1.1,Entre Rios,AR-E,annual,2017,bioetanol combustion consumption by to the public,31.524153665975998,TJ,N2O,0.6,kg/TJ,18.9144921995856,kg +5746e1ba-c886-3ed3-a2f1-99480bbd67cf,SESCO,II.1.1,Jujuy,AR-Y,annual,2017,bioetanol combustion consumption by to the public,6.0938210585879995,TJ,CH4,10.0,kg/TJ,60.93821058587999,kg +3473e4a9-ce58-3df4-989c-748efec61cc3,SESCO,II.1.1,Jujuy,AR-Y,annual,2017,bioetanol combustion consumption by to the public,6.0938210585879995,TJ,N2O,0.6,kg/TJ,3.6562926351527993,kg +9d1ed82f-392b-304a-b8ce-b0471bb2efc8,SESCO,II.1.1,La Pampa,AR-L,annual,2017,bioetanol combustion consumption by to the public,0.7862583670200001,TJ,CH4,10.0,kg/TJ,7.862583670200001,kg +dc1e9802-e48b-3e35-8770-0b90611432d3,SESCO,II.1.1,La Pampa,AR-L,annual,2017,bioetanol combustion consumption by to the public,0.7862583670200001,TJ,N2O,0.6,kg/TJ,0.471755020212,kg +6b567f68-f2e5-3170-b2b3-46bd3464273b,SESCO,II.1.1,La Rioja,AR-F,annual,2017,bioetanol combustion consumption by to the public,3.7368545822279993,TJ,CH4,10.0,kg/TJ,37.36854582227999,kg +24c78974-2063-3d0e-ac12-ef1b3c9bb256,SESCO,II.1.1,La Rioja,AR-F,annual,2017,bioetanol combustion consumption by to the public,3.7368545822279993,TJ,N2O,0.6,kg/TJ,2.2421127493367994,kg +9d643c5c-2aa3-3794-8843-e08e3e44a10e,SESCO,II.1.1,Mendoza,AR-M,annual,2017,bioetanol combustion consumption by to the public,20.943915694667997,TJ,CH4,10.0,kg/TJ,209.43915694667996,kg +e108bcb2-26e9-3f7f-961c-cebb5399550d,SESCO,II.1.1,Mendoza,AR-M,annual,2017,bioetanol combustion consumption by to the public,20.943915694667997,TJ,N2O,0.6,kg/TJ,12.566349416800797,kg +21e22426-fc93-3324-8f28-b351f63b6af5,SESCO,II.1.1,Misiones,AR-N,annual,2017,bioetanol combustion consumption by to the public,23.52059926794,TJ,CH4,10.0,kg/TJ,235.2059926794,kg +63ab491b-c16f-30cf-88e8-2e87354f501b,SESCO,II.1.1,Misiones,AR-N,annual,2017,bioetanol combustion consumption by to the public,23.52059926794,TJ,N2O,0.6,kg/TJ,14.112359560764,kg +dfee258a-c669-3933-80f1-80a68e8bb965,SESCO,II.1.1,San Juan,AR-J,annual,2017,bioetanol combustion consumption by to the public,24.039238697459997,TJ,CH4,10.0,kg/TJ,240.39238697459996,kg +3f7cd7db-fd56-358a-9264-dc7436962818,SESCO,II.1.1,San Juan,AR-J,annual,2017,bioetanol combustion consumption by to the public,24.039238697459997,TJ,N2O,0.6,kg/TJ,14.423543218475997,kg +85194c8e-1fe0-34a6-893f-5584d061d68b,SESCO,II.1.1,San Luis,AR-D,annual,2017,bioetanol combustion consumption by to the public,16.181084943503997,TJ,CH4,10.0,kg/TJ,161.81084943503998,kg +97c316a7-7c67-3ec9-a684-9592bbbb0d8e,SESCO,II.1.1,San Luis,AR-D,annual,2017,bioetanol combustion consumption by to the public,16.181084943503997,TJ,N2O,0.6,kg/TJ,9.708650966102399,kg +2c38eeaa-fb71-3ada-8b47-b6aab3028dc0,SESCO,II.1.1,Santa Fe,AR-S,annual,2017,bioetanol combustion consumption by to the public,84.558830506452,TJ,CH4,10.0,kg/TJ,845.58830506452,kg +5f15fb2d-edbf-3fa8-a530-cc35c92588e1,SESCO,II.1.1,Santa Fe,AR-S,annual,2017,bioetanol combustion consumption by to the public,84.558830506452,TJ,N2O,0.6,kg/TJ,50.7352983038712,kg +4a63c19a-f05f-374d-b667-1568052dfac7,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2017,bioetanol combustion consumption by to the public,17.190168174287997,TJ,CH4,10.0,kg/TJ,171.90168174288,kg +b6ae2908-1f49-3d33-bdf0-92d2281ff4cf,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2017,bioetanol combustion consumption by to the public,17.190168174287997,TJ,N2O,0.6,kg/TJ,10.314100904572799,kg +f67dc18e-4def-3ea5-9887-5c50e1a54f59,SESCO,II.1.1,Tucuman,AR-T,annual,2017,bioetanol combustion consumption by to the public,16.452806838804,TJ,CH4,10.0,kg/TJ,164.52806838804003,kg +132066c2-a3c6-3338-95a8-90326238c66a,SESCO,II.1.1,Tucuman,AR-T,annual,2017,bioetanol combustion consumption by to the public,16.452806838804,TJ,N2O,0.6,kg/TJ,9.8716841032824,kg +65aa3ae6-adb1-3d93-9770-7ea69912afc8,SESCO,II.1.1,Buenos Aires,AR-B,annual,2017,bioetanol combustion consumption by to the public,29.470437439703996,TJ,CH4,10.0,kg/TJ,294.70437439703994,kg +85f740c4-77c8-3981-a235-2a21e7387357,SESCO,II.1.1,Buenos Aires,AR-B,annual,2017,bioetanol combustion consumption by to the public,29.470437439703996,TJ,N2O,0.6,kg/TJ,17.682262463822397,kg +4224e8d5-1312-38fb-aa39-d045eaf0d3d4,SESCO,II.1.1,Capital Federal,AR-C,annual,2017,bioetanol combustion consumption by to the public,5.389300001844,TJ,CH4,10.0,kg/TJ,53.89300001844,kg +8a066fa9-da5b-3718-9331-62665ec5ef80,SESCO,II.1.1,Capital Federal,AR-C,annual,2017,bioetanol combustion consumption by to the public,5.389300001844,TJ,N2O,0.6,kg/TJ,3.2335800011063998,kg +53d3fc61-fb85-32eb-99fd-e22368de20ed,SESCO,II.1.1,Catamarca,AR-K,annual,2017,bioetanol combustion consumption by to the public,1.95003358794,TJ,CH4,10.0,kg/TJ,19.500335879399998,kg +86bc17fe-e29b-353c-921e-e45acc4fbdbb,SESCO,II.1.1,Catamarca,AR-K,annual,2017,bioetanol combustion consumption by to the public,1.95003358794,TJ,N2O,0.6,kg/TJ,1.170020152764,kg +e73a315e-85b9-3bb4-9da2-728d504d9503,SESCO,II.1.1,Chaco,AR-H,annual,2017,bioetanol combustion consumption by to the public,2.6378649371519995,TJ,CH4,10.0,kg/TJ,26.378649371519995,kg +9845f2dd-5bee-39e0-82cc-df6b2b29b14a,SESCO,II.1.1,Chaco,AR-H,annual,2017,bioetanol combustion consumption by to the public,2.6378649371519995,TJ,N2O,0.6,kg/TJ,1.5827189622911997,kg +26686f1c-8822-3b17-b213-61fd3356b60a,SESCO,II.1.1,Corrientes,AR-W,annual,2017,bioetanol combustion consumption by to the public,5.203773197387999,TJ,CH4,10.0,kg/TJ,52.03773197387999,kg +53847163-d0c4-3027-a9e5-4650fe0afb24,SESCO,II.1.1,Corrientes,AR-W,annual,2017,bioetanol combustion consumption by to the public,5.203773197387999,TJ,N2O,0.6,kg/TJ,3.1222639184327994,kg +afbc38a3-ce0e-3f86-ac1b-d6e94bbbfb64,SESCO,II.1.1,Córdoba,AR-X,annual,2017,bioetanol combustion consumption by to the public,15.187688304587999,TJ,CH4,10.0,kg/TJ,151.87688304588,kg +d432b764-b1f6-3923-a478-9c22d3832dc8,SESCO,II.1.1,Córdoba,AR-X,annual,2017,bioetanol combustion consumption by to the public,15.187688304587999,TJ,N2O,0.6,kg/TJ,9.112612982752799,kg +90b5998b-fd9b-3686-9aa4-97c4ca2a7640,SESCO,II.1.1,Entre Rios,AR-E,annual,2017,bioetanol combustion consumption by to the public,6.3894306042719995,TJ,CH4,10.0,kg/TJ,63.89430604272,kg +ec567d6d-b4c6-3532-9fd7-e5028c5a638b,SESCO,II.1.1,Entre Rios,AR-E,annual,2017,bioetanol combustion consumption by to the public,6.3894306042719995,TJ,N2O,0.6,kg/TJ,3.8336583625631997,kg +6a0feb39-b6be-3968-80ef-8b136dcfba84,SESCO,II.1.1,Jujuy,AR-Y,annual,2017,bioetanol combustion consumption by to the public,0.145073174364,TJ,CH4,10.0,kg/TJ,1.45073174364,kg +0f75c736-bcde-3b18-b233-e91573b24c6e,SESCO,II.1.1,Jujuy,AR-Y,annual,2017,bioetanol combustion consumption by to the public,0.145073174364,TJ,N2O,0.6,kg/TJ,0.08704390461839999,kg +c9e9c113-456d-305b-9796-b8bbe8b45992,SESCO,II.1.1,La Pampa,AR-L,annual,2017,bioetanol combustion consumption by to the public,0.3260892816,TJ,CH4,10.0,kg/TJ,3.260892816,kg +020b1dec-77dc-30b8-be2c-05690ff0be74,SESCO,II.1.1,La Pampa,AR-L,annual,2017,bioetanol combustion consumption by to the public,0.3260892816,TJ,N2O,0.6,kg/TJ,0.19565356896,kg +9888614b-9a2f-3dec-aa92-452ef6cedb0c,SESCO,II.1.1,La Rioja,AR-F,annual,2017,bioetanol combustion consumption by to the public,0.7959551517719999,TJ,CH4,10.0,kg/TJ,7.95955151772,kg +a9033eed-382e-34d5-974a-aa35b582040d,SESCO,II.1.1,La Rioja,AR-F,annual,2017,bioetanol combustion consumption by to the public,0.7959551517719999,TJ,N2O,0.6,kg/TJ,0.47757309106319995,kg +6d19b767-4af4-3018-9586-e5c4bba1e796,SESCO,II.1.1,Mendoza,AR-M,annual,2017,bioetanol combustion consumption by to the public,4.334453836883999,TJ,CH4,10.0,kg/TJ,43.34453836883999,kg +d76e3a74-19e5-39bc-80fb-a145e7daa7ab,SESCO,II.1.1,Mendoza,AR-M,annual,2017,bioetanol combustion consumption by to the public,4.334453836883999,TJ,N2O,0.6,kg/TJ,2.6006723021303997,kg +55eddcf5-a856-3e44-a3eb-f46fec2351c1,SESCO,II.1.1,Misiones,AR-N,annual,2017,bioetanol combustion consumption by to the public,3.3242054172119997,TJ,CH4,10.0,kg/TJ,33.24205417212,kg +920c29dd-03e6-3cc4-a24a-458deda1e183,SESCO,II.1.1,Misiones,AR-N,annual,2017,bioetanol combustion consumption by to the public,3.3242054172119997,TJ,N2O,0.6,kg/TJ,1.9945232503271997,kg +7ee23fe0-05a7-3bd7-af54-b5f57211d319,SESCO,II.1.1,San Juan,AR-J,annual,2017,bioetanol combustion consumption by to the public,5.964003985068,TJ,CH4,10.0,kg/TJ,59.64003985068,kg +2da7713b-0170-363e-9890-fb7427cc32ad,SESCO,II.1.1,San Juan,AR-J,annual,2017,bioetanol combustion consumption by to the public,5.964003985068,TJ,N2O,0.6,kg/TJ,3.5784023910408,kg +d570fb23-63c6-3a0c-b2ea-11362e30e083,SESCO,II.1.1,San Luis,AR-D,annual,2017,bioetanol combustion consumption by to the public,3.93654387672,TJ,CH4,10.0,kg/TJ,39.365438767200004,kg +bd946940-cfa5-3ddc-8699-158484f56611,SESCO,II.1.1,San Luis,AR-D,annual,2017,bioetanol combustion consumption by to the public,3.93654387672,TJ,N2O,0.6,kg/TJ,2.361926326032,kg +157e2b56-6fd4-30c7-9ec1-6f972fe608e1,SESCO,II.1.1,Santa Fe,AR-S,annual,2017,bioetanol combustion consumption by to the public,19.227874173516,TJ,CH4,10.0,kg/TJ,192.27874173516,kg +d5421639-1bad-3413-932f-97e06f295caa,SESCO,II.1.1,Santa Fe,AR-S,annual,2017,bioetanol combustion consumption by to the public,19.227874173516,TJ,N2O,0.6,kg/TJ,11.5367245041096,kg +f93b6ef7-7700-307f-a982-62b754233773,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2017,bioetanol combustion consumption by to the public,3.109593626856,TJ,CH4,10.0,kg/TJ,31.09593626856,kg +f4b2576a-959b-38f8-8301-ba497599bb37,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2017,bioetanol combustion consumption by to the public,3.109593626856,TJ,N2O,0.6,kg/TJ,1.8657561761136,kg +41712d09-a262-3c74-b327-6250434e8ef0,SESCO,II.1.1,Tucuman,AR-T,annual,2017,bioetanol combustion consumption by to the public,2.2463103435839997,TJ,CH4,10.0,kg/TJ,22.463103435839997,kg +3bd66cf3-b227-3adf-be29-baa514208ba9,SESCO,II.1.1,Tucuman,AR-T,annual,2017,bioetanol combustion consumption by to the public,2.2463103435839997,TJ,N2O,0.6,kg/TJ,1.3477862061503998,kg +28baf756-974c-31d6-88ad-d2c4f47457f6,SESCO,II.5.1,Buenos Aires,AR-B,annual,2017,bioetanol combustion consumption by agriculture machines,0.66560967864,TJ,CH4,10.0,kg/TJ,6.6560967864,kg +2b7eaf0c-c942-3c0f-98a5-962073bfd363,SESCO,II.5.1,Buenos Aires,AR-B,annual,2017,bioetanol combustion consumption by agriculture machines,0.66560967864,TJ,N2O,0.6,kg/TJ,0.399365807184,kg +54e5e0ce-f78e-3fff-884e-d1d7a05c5a81,SESCO,II.5.1,Neuquén,AR-Q,annual,2017,bioetanol combustion consumption by agriculture machines,0.26645707188,TJ,CH4,10.0,kg/TJ,2.6645707188000003,kg +723ccd61-c53c-3b38-8ea4-1f971e538816,SESCO,II.5.1,Neuquén,AR-Q,annual,2017,bioetanol combustion consumption by agriculture machines,0.26645707188,TJ,N2O,0.6,kg/TJ,0.159874243128,kg +97f341b4-9ba0-3d1a-bec5-915f4e36f692,SESCO,II.5.1,Rio Negro,AR-R,annual,2017,bioetanol combustion consumption by agriculture machines,0.10947356063999998,TJ,CH4,10.0,kg/TJ,1.0947356063999998,kg +e98dde1f-784e-329e-98ea-03409c1d14ed,SESCO,II.5.1,Rio Negro,AR-R,annual,2017,bioetanol combustion consumption by agriculture machines,0.10947356063999998,TJ,N2O,0.6,kg/TJ,0.06568413638399999,kg +0840b470-f400-350c-892c-e797be7f2a74,SESCO,II.5.1,Buenos Aires,AR-B,annual,2017,bioetanol combustion consumption by agriculture machines,0.13807922903999997,TJ,CH4,10.0,kg/TJ,1.3807922903999996,kg +3e2368e3-6421-3777-8e9b-9029f683c890,SESCO,II.5.1,Buenos Aires,AR-B,annual,2017,bioetanol combustion consumption by agriculture machines,0.13807922903999997,TJ,N2O,0.6,kg/TJ,0.08284753742399999,kg +134e7525-ee3a-3b81-b6a7-a2f6f220e5a4,SESCO,II.1.1,Buenos Aires,AR-B,annual,2017,bioetanol combustion consumption by to the public,337.29056345915996,TJ,CH4,10.0,kg/TJ,3372.9056345915997,kg +c80849b8-b301-303e-86e2-b85645df12c5,SESCO,II.1.1,Buenos Aires,AR-B,annual,2017,bioetanol combustion consumption by to the public,337.29056345915996,TJ,N2O,0.6,kg/TJ,202.37433807549596,kg +b557d3e9-d2bc-3ca6-98b3-d2628185c75d,SESCO,II.1.1,Capital Federal,AR-C,annual,2017,bioetanol combustion consumption by to the public,39.227535927,TJ,CH4,10.0,kg/TJ,392.27535926999997,kg +25daa600-1076-3177-8193-ef057914660a,SESCO,II.1.1,Capital Federal,AR-C,annual,2017,bioetanol combustion consumption by to the public,39.227535927,TJ,N2O,0.6,kg/TJ,23.536521556199997,kg +f09f2004-1041-30f8-8e61-bbcb35df0ca1,SESCO,II.1.1,Chubut,AR-U,annual,2017,bioetanol combustion consumption by to the public,114.59796576155999,TJ,CH4,10.0,kg/TJ,1145.9796576156,kg +4ca6fd58-89bb-3798-832b-f2a56c520c1f,SESCO,II.1.1,Chubut,AR-U,annual,2017,bioetanol combustion consumption by to the public,114.59796576155999,TJ,N2O,0.6,kg/TJ,68.758779456936,kg +41dcc950-5832-3305-8e83-c3ac74d43421,SESCO,II.1.1,Córdoba,AR-X,annual,2017,bioetanol combustion consumption by to the public,37.639762836479996,TJ,CH4,10.0,kg/TJ,376.39762836479997,kg +6dc5febd-d081-3802-93f1-28ca9f6a2bd9,SESCO,II.1.1,Córdoba,AR-X,annual,2017,bioetanol combustion consumption by to the public,37.639762836479996,TJ,N2O,0.6,kg/TJ,22.583857701887997,kg +dc011594-7775-3b2f-a365-6fdd7381a72e,SESCO,II.1.1,Entre Rios,AR-E,annual,2017,bioetanol combustion consumption by to the public,10.89078637356,TJ,CH4,10.0,kg/TJ,108.90786373559999,kg +bf6c2542-93e6-33d0-9f80-91f3a43ac6e9,SESCO,II.1.1,Entre Rios,AR-E,annual,2017,bioetanol combustion consumption by to the public,10.89078637356,TJ,N2O,0.6,kg/TJ,6.534471824135999,kg +991d46a5-da4b-3352-b62b-62cf5ef6b9fd,SESCO,II.1.1,La Pampa,AR-L,annual,2017,bioetanol combustion consumption by to the public,32.8942051542,TJ,CH4,10.0,kg/TJ,328.942051542,kg +a6a439b4-e4bb-31dc-9138-02041fba26cd,SESCO,II.1.1,La Pampa,AR-L,annual,2017,bioetanol combustion consumption by to the public,32.8942051542,TJ,N2O,0.6,kg/TJ,19.73652309252,kg +0e58e3ed-869f-34a1-8194-2ec58f70199d,SESCO,II.1.1,Neuquén,AR-Q,annual,2017,bioetanol combustion consumption by to the public,39.71239817184,TJ,CH4,10.0,kg/TJ,397.1239817184,kg +387443fc-ebe6-3dd9-88e3-ac1829ebe099,SESCO,II.1.1,Neuquén,AR-Q,annual,2017,bioetanol combustion consumption by to the public,39.71239817184,TJ,N2O,0.6,kg/TJ,23.827438903104,kg +fabf99b1-5e8e-339d-8be5-55f46f3aa2ad,SESCO,II.1.1,Rio Negro,AR-R,annual,2017,bioetanol combustion consumption by to the public,102.51829559915998,TJ,CH4,10.0,kg/TJ,1025.1829559915998,kg +e1375c7a-ade7-3ecf-8c58-27e56ad3b63e,SESCO,II.1.1,Rio Negro,AR-R,annual,2017,bioetanol combustion consumption by to the public,102.51829559915998,TJ,N2O,0.6,kg/TJ,61.51097735949599,kg +cccc390a-c640-38b1-9106-8db80d079984,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2017,bioetanol combustion consumption by to the public,66.6698943636,TJ,CH4,10.0,kg/TJ,666.698943636,kg +af1a5589-c8c1-3b26-98f2-7680539d90bc,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2017,bioetanol combustion consumption by to the public,66.6698943636,TJ,N2O,0.6,kg/TJ,40.001936618159995,kg +2ec57213-7e96-3cad-9d14-a6a3d23fcd09,SESCO,II.1.1,Santa Fe,AR-S,annual,2017,bioetanol combustion consumption by to the public,46.06591907592,TJ,CH4,10.0,kg/TJ,460.6591907592,kg +7b498e8f-9e82-3596-bec9-75be32bee3a8,SESCO,II.1.1,Santa Fe,AR-S,annual,2017,bioetanol combustion consumption by to the public,46.06591907592,TJ,N2O,0.6,kg/TJ,27.639551445551998,kg +daa96c7d-bc47-331f-a10f-2b920f8a9be2,SESCO,II.1.1,Buenos Aires,AR-B,annual,2017,bioetanol combustion consumption by to the public,93.65018050475999,TJ,CH4,10.0,kg/TJ,936.5018050475999,kg +5897c58d-481d-37c0-91de-6b560a531b64,SESCO,II.1.1,Buenos Aires,AR-B,annual,2017,bioetanol combustion consumption by to the public,93.65018050475999,TJ,N2O,0.6,kg/TJ,56.19010830285599,kg +1174d20d-6892-3237-a6bd-b1d2e7f4a20e,SESCO,II.1.1,Capital Federal,AR-C,annual,2017,bioetanol combustion consumption by to the public,13.796350262279997,TJ,CH4,10.0,kg/TJ,137.96350262279998,kg +b090f805-3af7-357d-96d5-537a93453452,SESCO,II.1.1,Capital Federal,AR-C,annual,2017,bioetanol combustion consumption by to the public,13.796350262279997,TJ,N2O,0.6,kg/TJ,8.277810157367998,kg +16c01d03-9ecb-3f5d-a26c-e1debfb51d6b,SESCO,II.1.1,Chubut,AR-U,annual,2017,bioetanol combustion consumption by to the public,25.2530789508,TJ,CH4,10.0,kg/TJ,252.530789508,kg +584eaddd-b31c-31fd-9a43-a9a398b21c14,SESCO,II.1.1,Chubut,AR-U,annual,2017,bioetanol combustion consumption by to the public,25.2530789508,TJ,N2O,0.6,kg/TJ,15.151847370479999,kg +7fee85ee-5399-3e6c-a4c6-cefac559ceef,SESCO,II.1.1,Córdoba,AR-X,annual,2017,bioetanol combustion consumption by to the public,10.684130742432,TJ,CH4,10.0,kg/TJ,106.84130742432001,kg +609d1707-abe8-387b-b8d7-9682ae707e10,SESCO,II.1.1,Córdoba,AR-X,annual,2017,bioetanol combustion consumption by to the public,10.684130742432,TJ,N2O,0.6,kg/TJ,6.4104784454592,kg +1450e3cb-0ce4-3edc-8067-4bfd83dc0044,SESCO,II.1.1,Entre Rios,AR-E,annual,2017,bioetanol combustion consumption by to the public,3.7330448389199997,TJ,CH4,10.0,kg/TJ,37.3304483892,kg +7e8676e8-727b-361a-9771-deac944743e9,SESCO,II.1.1,Entre Rios,AR-E,annual,2017,bioetanol combustion consumption by to the public,3.7330448389199997,TJ,N2O,0.6,kg/TJ,2.2398269033519997,kg +553d787c-76f8-3b55-a41d-7146734d847d,SESCO,II.1.1,La Pampa,AR-L,annual,2017,bioetanol combustion consumption by to the public,12.65509146024,TJ,CH4,10.0,kg/TJ,126.5509146024,kg +9f9e50b5-da1f-3dad-b970-c915894533a7,SESCO,II.1.1,La Pampa,AR-L,annual,2017,bioetanol combustion consumption by to the public,12.65509146024,TJ,N2O,0.6,kg/TJ,7.5930548761439995,kg +646986e4-685c-3867-a53d-8484a247e0b9,SESCO,II.1.1,Neuquén,AR-Q,annual,2017,bioetanol combustion consumption by to the public,19.73912802336,TJ,CH4,10.0,kg/TJ,197.39128023359999,kg +772e25ab-93df-3f35-b83a-045cc75e0c8c,SESCO,II.1.1,Neuquén,AR-Q,annual,2017,bioetanol combustion consumption by to the public,19.73912802336,TJ,N2O,0.6,kg/TJ,11.843476814015998,kg +583b3c08-970b-3894-9c82-fc1d34092a2c,SESCO,II.1.1,Rio Negro,AR-R,annual,2017,bioetanol combustion consumption by to the public,24.960304152719996,TJ,CH4,10.0,kg/TJ,249.60304152719996,kg +c77553cf-a95d-3f1b-92d2-c9d609c73025,SESCO,II.1.1,Rio Negro,AR-R,annual,2017,bioetanol combustion consumption by to the public,24.960304152719996,TJ,N2O,0.6,kg/TJ,14.976182491631997,kg +03bf61b0-1793-36c0-8731-0196fe1b64e8,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2017,bioetanol combustion consumption by to the public,14.221033236359998,TJ,CH4,10.0,kg/TJ,142.21033236359997,kg +23e267b5-0f48-3dd6-95af-e47c048e467a,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2017,bioetanol combustion consumption by to the public,14.221033236359998,TJ,N2O,0.6,kg/TJ,8.532619941815998,kg +118aa0f3-d783-3452-ae4d-165f778852aa,SESCO,II.1.1,Santa Fe,AR-S,annual,2017,bioetanol combustion consumption by to the public,18.144171561239997,TJ,CH4,10.0,kg/TJ,181.44171561239997,kg +d57dd42d-8602-341c-ab45-8bc8e1d76c25,SESCO,II.1.1,Santa Fe,AR-S,annual,2017,bioetanol combustion consumption by to the public,18.144171561239997,TJ,N2O,0.6,kg/TJ,10.886502936743998,kg +a319d9c0-e44b-360f-83f3-ac8d1bf66060,SESCO,I.3.1,Santa Cruz,AR-Z,annual,2017,bioetanol combustion consumption by petrochemical industries,0.03082458888,TJ,CH4,10.0,kg/TJ,0.3082458888,kg +d2daceb1-b140-39f0-b4a8-0c0aced032a4,SESCO,I.3.1,Santa Cruz,AR-Z,annual,2017,bioetanol combustion consumption by petrochemical industries,0.03082458888,TJ,N2O,0.6,kg/TJ,0.018494753327999998,kg +d6010956-4f94-321f-9793-00669752c408,SESCO,II.1.1,Buenos Aires,AR-B,annual,2017,bioetanol combustion consumption by to the public,25.20826596,TJ,CH4,10.0,kg/TJ,252.0826596,kg +4e588953-244b-3900-8426-80be11d18dc2,SESCO,II.1.1,Buenos Aires,AR-B,annual,2017,bioetanol combustion consumption by to the public,25.20826596,TJ,N2O,0.6,kg/TJ,15.124959575999998,kg +1b753d46-e6a3-3658-85e8-d9cebdab0fc2,SESCO,II.1.1,Capital Federal,AR-C,annual,2017,bioetanol combustion consumption by to the public,2.57169816,TJ,CH4,10.0,kg/TJ,25.7169816,kg +c7033bbc-dc5c-3091-a15a-de46939a5772,SESCO,II.1.1,Capital Federal,AR-C,annual,2017,bioetanol combustion consumption by to the public,2.57169816,TJ,N2O,0.6,kg/TJ,1.543018896,kg +4b8808e5-57a5-3373-a415-a2fb77cdf7d5,SESCO,II.1.1,Corrientes,AR-W,annual,2017,bioetanol combustion consumption by to the public,0.8845005599999999,TJ,CH4,10.0,kg/TJ,8.845005599999999,kg +d7895bd6-1666-3436-b085-220b6493f967,SESCO,II.1.1,Corrientes,AR-W,annual,2017,bioetanol combustion consumption by to the public,0.8845005599999999,TJ,N2O,0.6,kg/TJ,0.5307003359999999,kg +efa0f42e-4983-3703-8f35-5fb0a74c16fb,SESCO,II.1.1,Córdoba,AR-X,annual,2017,bioetanol combustion consumption by to the public,9.23868504,TJ,CH4,10.0,kg/TJ,92.3868504,kg +91a788fe-8443-36cc-9149-733610691710,SESCO,II.1.1,Córdoba,AR-X,annual,2017,bioetanol combustion consumption by to the public,9.23868504,TJ,N2O,0.6,kg/TJ,5.543211024,kg +4253b013-6787-3fac-a1fb-16d922f2917f,SESCO,II.1.1,Entre Rios,AR-E,annual,2017,bioetanol combustion consumption by to the public,4.435284599999999,TJ,CH4,10.0,kg/TJ,44.35284599999999,kg +bbce47ca-3f8d-3dc1-bb53-e296930abeb5,SESCO,II.1.1,Entre Rios,AR-E,annual,2017,bioetanol combustion consumption by to the public,4.435284599999999,TJ,N2O,0.6,kg/TJ,2.6611707599999996,kg +cab5b984-3c2a-3c33-b454-3cd0dd7eaaea,SESCO,II.1.1,Salta,AR-A,annual,2017,bioetanol combustion consumption by to the public,1.47501972,TJ,CH4,10.0,kg/TJ,14.750197199999999,kg +3444d641-7222-310b-891e-2675dff74f99,SESCO,II.1.1,Salta,AR-A,annual,2017,bioetanol combustion consumption by to the public,1.47501972,TJ,N2O,0.6,kg/TJ,0.8850118319999999,kg +c0979044-66e3-3313-ab50-21509162a9bc,SESCO,II.1.1,Santa Fe,AR-S,annual,2017,bioetanol combustion consumption by to the public,1.2398345999999998,TJ,CH4,10.0,kg/TJ,12.398345999999998,kg +db47d8ef-e69d-3506-8fbc-98092611182c,SESCO,II.1.1,Santa Fe,AR-S,annual,2017,bioetanol combustion consumption by to the public,1.2398345999999998,TJ,N2O,0.6,kg/TJ,0.7439007599999998,kg +31cfd1d8-1b83-3b8b-baf8-6685518683d5,SESCO,II.1.1,Buenos Aires,AR-B,annual,2017,bioetanol combustion consumption by to the public,1.9423223279999997,TJ,CH4,10.0,kg/TJ,19.42322328,kg +ca83587a-656c-3462-b0ed-8a569fd51d00,SESCO,II.1.1,Buenos Aires,AR-B,annual,2017,bioetanol combustion consumption by to the public,1.9423223279999997,TJ,N2O,0.6,kg/TJ,1.1653933967999999,kg +45f9d4a0-f587-3f06-8264-0be936001167,SESCO,II.1.1,Capital Federal,AR-C,annual,2017,bioetanol combustion consumption by to the public,0.17383247999999998,TJ,CH4,10.0,kg/TJ,1.7383247999999998,kg +28edfb69-5cc9-3efa-9519-e52f6a927674,SESCO,II.1.1,Capital Federal,AR-C,annual,2017,bioetanol combustion consumption by to the public,0.17383247999999998,TJ,N2O,0.6,kg/TJ,0.10429948799999998,kg +2ad21b40-3fcd-3b18-b161-e9b2018c63fe,SESCO,II.1.1,Corrientes,AR-W,annual,2017,bioetanol combustion consumption by to the public,0.015338159999999998,TJ,CH4,10.0,kg/TJ,0.15338159999999998,kg +1d09cb3c-b1e5-3e73-8628-425546410389,SESCO,II.1.1,Corrientes,AR-W,annual,2017,bioetanol combustion consumption by to the public,0.015338159999999998,TJ,N2O,0.6,kg/TJ,0.009202895999999999,kg +c5bdf030-dc4c-33b7-910e-b0ade089a6fb,SESCO,II.1.1,Córdoba,AR-X,annual,2017,bioetanol combustion consumption by to the public,0.75156984,TJ,CH4,10.0,kg/TJ,7.515698400000001,kg +5fe6c7fa-fa46-3a8f-8dda-229af1666422,SESCO,II.1.1,Córdoba,AR-X,annual,2017,bioetanol combustion consumption by to the public,0.75156984,TJ,N2O,0.6,kg/TJ,0.450941904,kg +7f4b061c-7d11-3562-ad89-15ff374526c5,SESCO,II.1.1,Entre Rios,AR-E,annual,2017,bioetanol combustion consumption by to the public,0.24950073599999997,TJ,CH4,10.0,kg/TJ,2.49500736,kg +4835cbd7-1d2e-3af1-b12a-8791f446c955,SESCO,II.1.1,Entre Rios,AR-E,annual,2017,bioetanol combustion consumption by to the public,0.24950073599999997,TJ,N2O,0.6,kg/TJ,0.14970044159999998,kg +c01c3a93-d6d0-3476-bc89-d9c7bb9a0ecf,SESCO,II.1.1,Santa Fe,AR-S,annual,2017,bioetanol combustion consumption by to the public,0.09969803999999999,TJ,CH4,10.0,kg/TJ,0.9969803999999999,kg +50522aec-e12f-35ca-95a1-2d5d8cf4304d,SESCO,II.1.1,Santa Fe,AR-S,annual,2017,bioetanol combustion consumption by to the public,0.09969803999999999,TJ,N2O,0.6,kg/TJ,0.05981882399999999,kg +c2ebc2d1-4d11-39c7-a3f0-08555ad24d9b,SESCO,II.1.1,Catamarca,AR-K,annual,2017,bioetanol combustion consumption by to the public,20.9013361956,TJ,CH4,10.0,kg/TJ,209.01336195599998,kg +9eeece86-6408-3d8a-b352-b5cab01782ba,SESCO,II.1.1,Catamarca,AR-K,annual,2017,bioetanol combustion consumption by to the public,20.9013361956,TJ,N2O,0.6,kg/TJ,12.540801717359999,kg +61e671e0-6b42-3ff3-937e-539d6691aac6,SESCO,II.1.1,Chaco,AR-H,annual,2017,bioetanol combustion consumption by to the public,10.931762267999998,TJ,CH4,10.0,kg/TJ,109.31762267999999,kg +fd74ca4b-96f5-31ac-b61f-d99a7f5f2fe5,SESCO,II.1.1,Chaco,AR-H,annual,2017,bioetanol combustion consumption by to the public,10.931762267999998,TJ,N2O,0.6,kg/TJ,6.559057360799999,kg +4a911a6e-f4a8-326f-9caa-7f1955ef9e4a,SESCO,II.1.1,Jujuy,AR-Y,annual,2017,bioetanol combustion consumption by to the public,44.4467666664,TJ,CH4,10.0,kg/TJ,444.46766666400003,kg +bdd89612-9130-3320-8237-f3b85c382c8d,SESCO,II.1.1,Jujuy,AR-Y,annual,2017,bioetanol combustion consumption by to the public,44.4467666664,TJ,N2O,0.6,kg/TJ,26.66805999984,kg +d4f94ede-6789-3445-b42f-663ec8a87f65,SESCO,II.1.1,La Rioja,AR-F,annual,2017,bioetanol combustion consumption by to the public,39.798486151199995,TJ,CH4,10.0,kg/TJ,397.98486151199995,kg +3a934348-624b-3a18-972c-8fcfc9db5a44,SESCO,II.1.1,La Rioja,AR-F,annual,2017,bioetanol combustion consumption by to the public,39.798486151199995,TJ,N2O,0.6,kg/TJ,23.879091690719996,kg +402605a0-4af8-3ee9-9b1d-c10ea5d27728,SESCO,II.1.1,Salta,AR-A,annual,2017,bioetanol combustion consumption by to the public,93.9944940768,TJ,CH4,10.0,kg/TJ,939.9449407679999,kg +790fd667-230f-3769-8e1e-e213317b701e,SESCO,II.1.1,Salta,AR-A,annual,2017,bioetanol combustion consumption by to the public,93.9944940768,TJ,N2O,0.6,kg/TJ,56.39669644607999,kg +0838ceeb-a11b-3ebb-94f5-b1d2d090cd9b,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2017,bioetanol combustion consumption by to the public,43.60004910719999,TJ,CH4,10.0,kg/TJ,436.00049107199993,kg +b52a539e-4299-372a-9875-d14086504a69,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2017,bioetanol combustion consumption by to the public,43.60004910719999,TJ,N2O,0.6,kg/TJ,26.160029464319994,kg +2e748b19-a5d3-3ea9-be61-9c3059f6dc86,SESCO,II.1.1,Tucuman,AR-T,annual,2017,bioetanol combustion consumption by to the public,183.7031227956,TJ,CH4,10.0,kg/TJ,1837.0312279559998,kg +1663d14f-7451-3edb-9c2e-c0bf7b875794,SESCO,II.1.1,Tucuman,AR-T,annual,2017,bioetanol combustion consumption by to the public,183.7031227956,TJ,N2O,0.6,kg/TJ,110.22187367736,kg +502e8184-b56d-3f3d-a6e6-27e93a280886,SESCO,II.1.1,Catamarca,AR-K,annual,2017,bioetanol combustion consumption by to the public,1.943344872,TJ,CH4,10.0,kg/TJ,19.43344872,kg +2fcb6c38-0e08-3690-8703-2d708239182b,SESCO,II.1.1,Catamarca,AR-K,annual,2017,bioetanol combustion consumption by to the public,1.943344872,TJ,N2O,0.6,kg/TJ,1.1660069231999999,kg +69c9657e-7ee5-3ee8-974c-a74cf27b9bb6,SESCO,II.1.1,Chaco,AR-H,annual,2017,bioetanol combustion consumption by to the public,0.20719297799999997,TJ,CH4,10.0,kg/TJ,2.0719297799999996,kg +087e2cdf-9ce9-3206-97ce-8b37442ce93d,SESCO,II.1.1,Chaco,AR-H,annual,2017,bioetanol combustion consumption by to the public,0.20719297799999997,TJ,N2O,0.6,kg/TJ,0.12431578679999998,kg +78bd1d39-5016-3e79-b55c-b8b236753a9b,SESCO,II.1.1,Jujuy,AR-Y,annual,2017,bioetanol combustion consumption by to the public,2.3550722135999997,TJ,CH4,10.0,kg/TJ,23.550722135999997,kg +4efd7114-190d-385e-b488-828404d9d057,SESCO,II.1.1,Jujuy,AR-Y,annual,2017,bioetanol combustion consumption by to the public,2.3550722135999997,TJ,N2O,0.6,kg/TJ,1.41304332816,kg +e2a4fb53-f83d-33d5-a67c-4ad5a1c9959a,SESCO,II.1.1,La Rioja,AR-F,annual,2017,bioetanol combustion consumption by to the public,3.1118314643999994,TJ,CH4,10.0,kg/TJ,31.118314643999994,kg +e3419cf3-360c-3780-9a8f-b043b089b39b,SESCO,II.1.1,La Rioja,AR-F,annual,2017,bioetanol combustion consumption by to the public,3.1118314643999994,TJ,N2O,0.6,kg/TJ,1.8670988786399996,kg +49be6e62-ee5b-3fc6-96c9-d16893fea659,SESCO,II.1.1,Salta,AR-A,annual,2017,bioetanol combustion consumption by to the public,6.051287574,TJ,CH4,10.0,kg/TJ,60.51287574,kg +8285630e-0add-30ae-a0da-abc94d6db41d,SESCO,II.1.1,Salta,AR-A,annual,2017,bioetanol combustion consumption by to the public,6.051287574,TJ,N2O,0.6,kg/TJ,3.6307725443999996,kg +8d91a894-92a7-37e1-8a97-806ed90b427a,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2017,bioetanol combustion consumption by to the public,5.489757536399999,TJ,CH4,10.0,kg/TJ,54.89757536399999,kg +71177cce-27b6-3795-97d2-7a5e3a4fec98,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2017,bioetanol combustion consumption by to the public,5.489757536399999,TJ,N2O,0.6,kg/TJ,3.2938545218399993,kg +e76fc7a4-7578-3839-9661-ef54f4c6850b,SESCO,II.1.1,Tucuman,AR-T,annual,2017,bioetanol combustion consumption by to the public,14.1384858156,TJ,CH4,10.0,kg/TJ,141.384858156,kg +3c812baf-3aa5-3c87-99a9-0018df516825,SESCO,II.1.1,Tucuman,AR-T,annual,2017,bioetanol combustion consumption by to the public,14.1384858156,TJ,N2O,0.6,kg/TJ,8.48309148936,kg +e893194f-0066-330b-8956-25701504cbcc,SESCO,II.1.1,Buenos Aires,AR-B,annual,2017,bioetanol combustion consumption by to the public,2.5691417999999997,TJ,CH4,10.0,kg/TJ,25.691418,kg +f149c348-f9ea-36ff-9376-76ce56f2e162,SESCO,II.1.1,Buenos Aires,AR-B,annual,2017,bioetanol combustion consumption by to the public,2.5691417999999997,TJ,N2O,0.6,kg/TJ,1.5414850799999997,kg +4a9a07eb-9e11-3619-9ed7-b45c3eb9443d,SESCO,II.1.1,Entre Rios,AR-E,annual,2017,bioetanol combustion consumption by to the public,0.27608688,TJ,CH4,10.0,kg/TJ,2.7608688,kg +b3cf4c7e-90aa-39c4-970a-c485e11a1aa0,SESCO,II.1.1,Entre Rios,AR-E,annual,2017,bioetanol combustion consumption by to the public,0.27608688,TJ,N2O,0.6,kg/TJ,0.16565212799999998,kg +284a3731-8d38-3270-9863-bd8c9c215559,SESCO,II.1.1,Buenos Aires,AR-B,annual,2017,bioetanol combustion consumption by to the public,1293.4849273199998,TJ,CH4,10.0,kg/TJ,12934.849273199998,kg +6e4d2ea0-0273-3d86-b05f-c603b4e45934,SESCO,II.1.1,Buenos Aires,AR-B,annual,2017,bioetanol combustion consumption by to the public,1293.4849273199998,TJ,N2O,0.6,kg/TJ,776.0909563919998,kg +f6bd557c-2f4a-3304-9fcc-ee20e2e72ea7,SESCO,II.1.1,Capital Federal,AR-C,annual,2017,bioetanol combustion consumption by to the public,367.09073964,TJ,CH4,10.0,kg/TJ,3670.9073964,kg +15cf75a1-dc44-3efc-b916-d67c6b213c71,SESCO,II.1.1,Capital Federal,AR-C,annual,2017,bioetanol combustion consumption by to the public,367.09073964,TJ,N2O,0.6,kg/TJ,220.254443784,kg +7f745ab2-d61e-3866-9b1e-02f89d1c9469,SESCO,II.1.1,Catamarca,AR-K,annual,2017,bioetanol combustion consumption by to the public,3.6325875599999993,TJ,CH4,10.0,kg/TJ,36.32587559999999,kg +50698ba9-6524-39a9-a139-921fc91d7298,SESCO,II.1.1,Catamarca,AR-K,annual,2017,bioetanol combustion consumption by to the public,3.6325875599999993,TJ,N2O,0.6,kg/TJ,2.1795525359999997,kg +f25edd61-99c2-3ddd-8c25-91fbbc086ceb,SESCO,II.1.1,Chaco,AR-H,annual,2017,bioetanol combustion consumption by to the public,74.78375544,TJ,CH4,10.0,kg/TJ,747.8375543999999,kg +6e9236a2-f27c-39e2-a2e5-8475f3f9a6b2,SESCO,II.1.1,Chaco,AR-H,annual,2017,bioetanol combustion consumption by to the public,74.78375544,TJ,N2O,0.6,kg/TJ,44.87025326399999,kg +3f883691-440e-387c-9c95-07881d130e23,SESCO,II.1.1,Corrientes,AR-W,annual,2017,bioetanol combustion consumption by to the public,74.11143276,TJ,CH4,10.0,kg/TJ,741.1143276,kg +2aeece43-d6a4-3562-a547-daa9f487c3a8,SESCO,II.1.1,Corrientes,AR-W,annual,2017,bioetanol combustion consumption by to the public,74.11143276,TJ,N2O,0.6,kg/TJ,44.466859656,kg +1a10b309-6d4a-3acf-a3a3-f87f87e1d86b,SESCO,II.1.1,Córdoba,AR-X,annual,2017,bioetanol combustion consumption by to the public,292.60352195999997,TJ,CH4,10.0,kg/TJ,2926.0352195999994,kg +873c7233-50c1-3154-ae8b-40e80d52714b,SESCO,II.1.1,Córdoba,AR-X,annual,2017,bioetanol combustion consumption by to the public,292.60352195999997,TJ,N2O,0.6,kg/TJ,175.56211317599997,kg +497baa35-f676-3e45-80b4-27a97947fbf7,SESCO,II.1.1,Entre Rios,AR-E,annual,2017,bioetanol combustion consumption by to the public,77.64432228,TJ,CH4,10.0,kg/TJ,776.4432228,kg +eaaa5681-792b-3a04-a7c8-2211fd0d62fc,SESCO,II.1.1,Entre Rios,AR-E,annual,2017,bioetanol combustion consumption by to the public,77.64432228,TJ,N2O,0.6,kg/TJ,46.586593367999996,kg +2ddcbb49-4d8d-3bc9-9e6a-0cd39122b02a,SESCO,II.1.1,Formosa,AR-P,annual,2017,bioetanol combustion consumption by to the public,34.094173319999996,TJ,CH4,10.0,kg/TJ,340.94173319999993,kg +a2b25532-dcf0-3257-9f50-a1dc8123cc10,SESCO,II.1.1,Formosa,AR-P,annual,2017,bioetanol combustion consumption by to the public,34.094173319999996,TJ,N2O,0.6,kg/TJ,20.456503992,kg +4e48eb44-7313-36a5-b243-622c5e942ea9,SESCO,II.1.1,Jujuy,AR-Y,annual,2017,bioetanol combustion consumption by to the public,13.37231916,TJ,CH4,10.0,kg/TJ,133.7231916,kg +60ffde0d-6423-321e-aa87-b572364be7a6,SESCO,II.1.1,Jujuy,AR-Y,annual,2017,bioetanol combustion consumption by to the public,13.37231916,TJ,N2O,0.6,kg/TJ,8.023391496,kg +3c1194bf-47c8-3bbf-9c9f-9ad691c9876c,SESCO,II.1.1,La Pampa,AR-L,annual,2017,bioetanol combustion consumption by to the public,26.269155359999996,TJ,CH4,10.0,kg/TJ,262.69155359999996,kg +df85f1ef-f6a8-3e31-99d6-4b8fffc761eb,SESCO,II.1.1,La Pampa,AR-L,annual,2017,bioetanol combustion consumption by to the public,26.269155359999996,TJ,N2O,0.6,kg/TJ,15.761493215999996,kg +b819f619-ef87-3f26-a69f-87684ffb825c,SESCO,II.1.1,La Rioja,AR-F,annual,2017,bioetanol combustion consumption by to the public,25.5252546,TJ,CH4,10.0,kg/TJ,255.252546,kg +ceb7496f-db57-31b0-9ec0-a2e20efc94c1,SESCO,II.1.1,La Rioja,AR-F,annual,2017,bioetanol combustion consumption by to the public,25.5252546,TJ,N2O,0.6,kg/TJ,15.31515276,kg +993f9e47-9514-346c-80d1-ef71401d06c9,SESCO,II.1.1,Mendoza,AR-M,annual,2017,bioetanol combustion consumption by to the public,86.53789871999999,TJ,CH4,10.0,kg/TJ,865.3789871999999,kg +7d24ec2b-0c9c-3856-8132-7890357f575f,SESCO,II.1.1,Mendoza,AR-M,annual,2017,bioetanol combustion consumption by to the public,86.53789871999999,TJ,N2O,0.6,kg/TJ,51.92273923199999,kg +43124059-ea90-3e07-9476-85f08a9a096a,SESCO,II.1.1,Misiones,AR-N,annual,2017,bioetanol combustion consumption by to the public,96.43612464,TJ,CH4,10.0,kg/TJ,964.3612464,kg +078f84de-7f21-37b7-ab1c-72cbe96f1ded,SESCO,II.1.1,Misiones,AR-N,annual,2017,bioetanol combustion consumption by to the public,96.43612464,TJ,N2O,0.6,kg/TJ,57.861674784,kg +76c34124-538c-343a-afce-c0c0596c70c7,SESCO,II.1.1,Neuquén,AR-Q,annual,2017,bioetanol combustion consumption by to the public,38.11021488,TJ,CH4,10.0,kg/TJ,381.1021488,kg +43149f7d-bcff-3845-b63b-ce05a02d0b08,SESCO,II.1.1,Neuquén,AR-Q,annual,2017,bioetanol combustion consumption by to the public,38.11021488,TJ,N2O,0.6,kg/TJ,22.866128928,kg +ca1b1d26-0d12-3942-8984-6141362988c8,SESCO,II.1.1,Rio Negro,AR-R,annual,2017,bioetanol combustion consumption by to the public,12.707665559999999,TJ,CH4,10.0,kg/TJ,127.07665559999998,kg +68190b33-227d-3821-ba0d-6dbf3e614834,SESCO,II.1.1,Rio Negro,AR-R,annual,2017,bioetanol combustion consumption by to the public,12.707665559999999,TJ,N2O,0.6,kg/TJ,7.624599335999999,kg +211c2b4f-db46-330c-9cc5-c1c00e794d08,SESCO,II.1.1,Salta,AR-A,annual,2017,bioetanol combustion consumption by to the public,20.793432239999998,TJ,CH4,10.0,kg/TJ,207.93432239999999,kg +57d62e51-d126-3248-8729-640ab9a3d8ef,SESCO,II.1.1,Salta,AR-A,annual,2017,bioetanol combustion consumption by to the public,20.793432239999998,TJ,N2O,0.6,kg/TJ,12.476059343999998,kg +d8c34a88-d903-30ee-aec7-9f4a05ced711,SESCO,II.1.1,San Juan,AR-J,annual,2017,bioetanol combustion consumption by to the public,13.702089599999997,TJ,CH4,10.0,kg/TJ,137.02089599999996,kg +20d6209e-b955-303d-a80d-793f80552ae3,SESCO,II.1.1,San Juan,AR-J,annual,2017,bioetanol combustion consumption by to the public,13.702089599999997,TJ,N2O,0.6,kg/TJ,8.221253759999998,kg +fbf43b09-f17a-301f-a4b4-ebf7f99145d3,SESCO,II.1.1,San Luis,AR-D,annual,2017,bioetanol combustion consumption by to the public,4.83918948,TJ,CH4,10.0,kg/TJ,48.3918948,kg +61cdb9c7-d547-3f91-a908-c66cb449a8dc,SESCO,II.1.1,San Luis,AR-D,annual,2017,bioetanol combustion consumption by to the public,4.83918948,TJ,N2O,0.6,kg/TJ,2.903513688,kg +22ef45e8-18a1-3059-8be4-55bcca99e9a2,SESCO,II.1.1,Santa Fe,AR-S,annual,2017,bioetanol combustion consumption by to the public,288.85078547999996,TJ,CH4,10.0,kg/TJ,2888.5078547999997,kg +d6235186-ec48-3b44-a73a-18389d836c3b,SESCO,II.1.1,Santa Fe,AR-S,annual,2017,bioetanol combustion consumption by to the public,288.85078547999996,TJ,N2O,0.6,kg/TJ,173.31047128799997,kg +82d3b00f-a48a-3c33-8e6a-1406ddd71710,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2017,bioetanol combustion consumption by to the public,29.786706719999998,TJ,CH4,10.0,kg/TJ,297.86706719999995,kg +2eab8e59-248b-3f4b-bb8a-44cba070e3fa,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2017,bioetanol combustion consumption by to the public,29.786706719999998,TJ,N2O,0.6,kg/TJ,17.872024032,kg +c2033df7-e23c-3812-8eef-7f5a32e5f348,SESCO,II.1.1,Tucuman,AR-T,annual,2017,bioetanol combustion consumption by to the public,62.90435051999999,TJ,CH4,10.0,kg/TJ,629.0435051999999,kg +f4c6aef3-2c9e-3196-9b8a-27cd87b3d040,SESCO,II.1.1,Tucuman,AR-T,annual,2017,bioetanol combustion consumption by to the public,62.90435051999999,TJ,N2O,0.6,kg/TJ,37.74261031199999,kg +285b3903-089f-375c-8fcd-5716585b5a2a,SESCO,II.1.1,Buenos Aires,AR-B,annual,2017,bioetanol combustion consumption by to the public,775.1445919199999,TJ,CH4,10.0,kg/TJ,7751.4459191999995,kg +4a62c86f-df1c-38cf-8943-f99140333877,SESCO,II.1.1,Buenos Aires,AR-B,annual,2017,bioetanol combustion consumption by to the public,775.1445919199999,TJ,N2O,0.6,kg/TJ,465.0867551519999,kg +8f5d0205-ccb8-358b-b024-e82481d99224,SESCO,II.1.1,Capital Federal,AR-C,annual,2017,bioetanol combustion consumption by to the public,303.92564039999996,TJ,CH4,10.0,kg/TJ,3039.2564039999997,kg +fd27d844-a1c6-3f46-b4fc-9740cc45aac0,SESCO,II.1.1,Capital Federal,AR-C,annual,2017,bioetanol combustion consumption by to the public,303.92564039999996,TJ,N2O,0.6,kg/TJ,182.35538423999998,kg +ad8eff87-3144-365f-a486-a3c80527c183,SESCO,II.1.1,Catamarca,AR-K,annual,2017,bioetanol combustion consumption by to the public,3.6709329599999996,TJ,CH4,10.0,kg/TJ,36.7093296,kg +9bde37b2-821d-3245-b27c-2e8caa9ba9d2,SESCO,II.1.1,Catamarca,AR-K,annual,2017,bioetanol combustion consumption by to the public,3.6709329599999996,TJ,N2O,0.6,kg/TJ,2.2025597759999997,kg +74c786c3-e919-3681-9bbb-21cbe91e962f,SESCO,II.1.1,Chaco,AR-H,annual,2017,bioetanol combustion consumption by to the public,32.455546559999995,TJ,CH4,10.0,kg/TJ,324.55546559999993,kg +42cfcf93-f31d-3f31-8e98-86733ca22129,SESCO,II.1.1,Chaco,AR-H,annual,2017,bioetanol combustion consumption by to the public,32.455546559999995,TJ,N2O,0.6,kg/TJ,19.473327935999997,kg +10d7e53b-3ff8-3662-afd8-75bc5e4b18df,SESCO,II.1.1,Corrientes,AR-W,annual,2017,bioetanol combustion consumption by to the public,32.5168992,TJ,CH4,10.0,kg/TJ,325.168992,kg +77f9045e-053e-3640-b3e3-065ff6ed71eb,SESCO,II.1.1,Corrientes,AR-W,annual,2017,bioetanol combustion consumption by to the public,32.5168992,TJ,N2O,0.6,kg/TJ,19.51013952,kg +e759acb0-b310-351b-990a-94f17cdef470,SESCO,II.1.1,Córdoba,AR-X,annual,2017,bioetanol combustion consumption by to the public,153.87242111999998,TJ,CH4,10.0,kg/TJ,1538.7242112,kg +e5afdc99-9e90-3d41-b157-11a1d9507a1d,SESCO,II.1.1,Córdoba,AR-X,annual,2017,bioetanol combustion consumption by to the public,153.87242111999998,TJ,N2O,0.6,kg/TJ,92.32345267199999,kg +84cf71e3-8899-32a4-af97-5767d9a84531,SESCO,II.1.1,Entre Rios,AR-E,annual,2017,bioetanol combustion consumption by to the public,36.039563279999996,TJ,CH4,10.0,kg/TJ,360.39563279999993,kg +3215fb84-ec24-3b6d-83cd-475d41021349,SESCO,II.1.1,Entre Rios,AR-E,annual,2017,bioetanol combustion consumption by to the public,36.039563279999996,TJ,N2O,0.6,kg/TJ,21.623737967999997,kg +6f287980-477c-3e85-9777-6b7ab3185457,SESCO,II.1.1,Formosa,AR-P,annual,2017,bioetanol combustion consumption by to the public,17.0892666,TJ,CH4,10.0,kg/TJ,170.892666,kg +d75d419f-24b1-389a-bde4-b10854e2f678,SESCO,II.1.1,Formosa,AR-P,annual,2017,bioetanol combustion consumption by to the public,17.0892666,TJ,N2O,0.6,kg/TJ,10.253559959999999,kg +634638b4-08a6-3146-8184-cd722c5398ac,SESCO,II.1.1,Jujuy,AR-Y,annual,2017,bioetanol combustion consumption by to the public,3.46898052,TJ,CH4,10.0,kg/TJ,34.6898052,kg +646fb62f-8787-3282-9abd-471c2af4b7b6,SESCO,II.1.1,Jujuy,AR-Y,annual,2017,bioetanol combustion consumption by to the public,3.46898052,TJ,N2O,0.6,kg/TJ,2.081388312,kg +ebdbbcf1-d9ab-3cc0-93c6-49210e753a9b,SESCO,II.1.1,La Pampa,AR-L,annual,2017,bioetanol combustion consumption by to the public,17.08159752,TJ,CH4,10.0,kg/TJ,170.8159752,kg +c414e1af-5d9a-307d-a957-f19d5530b7d2,SESCO,II.1.1,La Pampa,AR-L,annual,2017,bioetanol combustion consumption by to the public,17.08159752,TJ,N2O,0.6,kg/TJ,10.248958512,kg +4aae4008-b132-3e92-ba87-698ad571d34c,SESCO,II.1.1,La Rioja,AR-F,annual,2017,bioetanol combustion consumption by to the public,9.49176468,TJ,CH4,10.0,kg/TJ,94.9176468,kg +74d50fb5-8090-3bc1-bd62-d5b829a304c8,SESCO,II.1.1,La Rioja,AR-F,annual,2017,bioetanol combustion consumption by to the public,9.49176468,TJ,N2O,0.6,kg/TJ,5.695058808,kg +930595c6-60c7-3377-9bd9-7fde8cc94c30,SESCO,II.1.1,Mendoza,AR-M,annual,2017,bioetanol combustion consumption by to the public,47.61987408,TJ,CH4,10.0,kg/TJ,476.1987408,kg +1f192614-fbd6-3668-aa45-7bbf32a0f2b2,SESCO,II.1.1,Mendoza,AR-M,annual,2017,bioetanol combustion consumption by to the public,47.61987408,TJ,N2O,0.6,kg/TJ,28.571924448,kg +aad96b91-e80d-30e6-9cdc-08e646cabab8,SESCO,II.1.1,Misiones,AR-N,annual,2017,bioetanol combustion consumption by to the public,29.730466799999995,TJ,CH4,10.0,kg/TJ,297.30466799999994,kg +31e452d3-0347-33d9-805d-2eb1cba3de2d,SESCO,II.1.1,Misiones,AR-N,annual,2017,bioetanol combustion consumption by to the public,29.730466799999995,TJ,N2O,0.6,kg/TJ,17.838280079999997,kg +4bad7f1a-9476-3f85-a969-630d7c98c592,SESCO,II.1.1,Neuquén,AR-Q,annual,2017,bioetanol combustion consumption by to the public,31.890590999999997,TJ,CH4,10.0,kg/TJ,318.90590999999995,kg +569af9b2-dcd3-348a-837b-4b8fac048adf,SESCO,II.1.1,Neuquén,AR-Q,annual,2017,bioetanol combustion consumption by to the public,31.890590999999997,TJ,N2O,0.6,kg/TJ,19.134354599999998,kg +72149961-a924-3bc1-9481-164beb6ee05a,SESCO,II.1.1,Rio Negro,AR-R,annual,2017,bioetanol combustion consumption by to the public,7.812236159999999,TJ,CH4,10.0,kg/TJ,78.12236159999999,kg +76cc0dc7-3037-354d-a396-9713f0efeff7,SESCO,II.1.1,Rio Negro,AR-R,annual,2017,bioetanol combustion consumption by to the public,7.812236159999999,TJ,N2O,0.6,kg/TJ,4.687341696,kg +91f58990-cd5d-3150-b765-f02ddbd2061a,SESCO,II.1.1,Salta,AR-A,annual,2017,bioetanol combustion consumption by to the public,9.24891048,TJ,CH4,10.0,kg/TJ,92.48910479999999,kg +a6383708-e1b3-3353-be76-26a0dd60d999,SESCO,II.1.1,Salta,AR-A,annual,2017,bioetanol combustion consumption by to the public,9.24891048,TJ,N2O,0.6,kg/TJ,5.549346288,kg +4bf052de-db4e-36d4-b1a7-531927f62f54,SESCO,II.1.1,San Juan,AR-J,annual,2017,bioetanol combustion consumption by to the public,3.131541,TJ,CH4,10.0,kg/TJ,31.31541,kg +434fb24d-55ea-3ccb-9727-5f486610e3a2,SESCO,II.1.1,San Juan,AR-J,annual,2017,bioetanol combustion consumption by to the public,3.131541,TJ,N2O,0.6,kg/TJ,1.8789246,kg +cb4ea796-b43f-3355-9875-80d509f7ae2a,SESCO,II.1.1,San Luis,AR-D,annual,2017,bioetanol combustion consumption by to the public,3.7578492,TJ,CH4,10.0,kg/TJ,37.578492,kg +ebcd456b-10f0-3ba6-b192-4a5b35e1514f,SESCO,II.1.1,San Luis,AR-D,annual,2017,bioetanol combustion consumption by to the public,3.7578492,TJ,N2O,0.6,kg/TJ,2.25470952,kg +533d88ea-683c-3155-8a6a-a3d41c4df18c,SESCO,II.1.1,Santa Fe,AR-S,annual,2017,bioetanol combustion consumption by to the public,160.40647728,TJ,CH4,10.0,kg/TJ,1604.0647728,kg +97a51038-5f36-3936-bc9c-c15a8f5ff3bc,SESCO,II.1.1,Santa Fe,AR-S,annual,2017,bioetanol combustion consumption by to the public,160.40647728,TJ,N2O,0.6,kg/TJ,96.24388636799999,kg +5b4e4fb8-7c40-3e2c-9809-85b1e6b69592,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2017,bioetanol combustion consumption by to the public,16.37604216,TJ,CH4,10.0,kg/TJ,163.7604216,kg +a5e7948a-7d99-3a70-be55-b21742294244,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2017,bioetanol combustion consumption by to the public,16.37604216,TJ,N2O,0.6,kg/TJ,9.825625296,kg +5f6ef01e-f549-3a7e-82fe-a9bc0cc46a8e,SESCO,II.1.1,Tucuman,AR-T,annual,2017,bioetanol combustion consumption by to the public,23.69490084,TJ,CH4,10.0,kg/TJ,236.9490084,kg +10e8f6bb-c765-396c-b9de-0bf4e33f4cdc,SESCO,II.1.1,Tucuman,AR-T,annual,2017,bioetanol combustion consumption by to the public,23.69490084,TJ,N2O,0.6,kg/TJ,14.216940503999998,kg +a799781a-050a-3125-895a-f8652e7b13e0,SESCO,II.1.1,Buenos Aires,AR-B,annual,2017,bioetanol combustion consumption by to the public,86.33778174647999,TJ,CH4,10.0,kg/TJ,863.3778174647999,kg +442fee84-b9fb-39fd-9de8-16b9a00e68f1,SESCO,II.1.1,Buenos Aires,AR-B,annual,2017,bioetanol combustion consumption by to the public,86.33778174647999,TJ,N2O,0.6,kg/TJ,51.802669047887996,kg +b6378e45-81a1-3ca0-a4ba-e14b450c85af,SESCO,II.1.1,Buenos Aires,AR-B,annual,2017,bioetanol combustion consumption by to the public,5.0203101423600005,TJ,CH4,10.0,kg/TJ,50.2031014236,kg +c33e40eb-17b2-3e29-beab-821702ac0d98,SESCO,II.1.1,Buenos Aires,AR-B,annual,2017,bioetanol combustion consumption by to the public,5.0203101423600005,TJ,N2O,0.6,kg/TJ,3.0121860854160003,kg +d22df3f5-4e19-3945-a50e-4ede0bd9b079,SESCO,II.5.1,Buenos Aires,AR-B,annual,2017,bioetanol combustion consumption by agriculture machines,59.095374119999995,TJ,CH4,10.0,kg/TJ,590.9537412,kg +9f8c25ef-dedf-368d-8b07-1b5a197fe124,SESCO,II.5.1,Buenos Aires,AR-B,annual,2017,bioetanol combustion consumption by agriculture machines,59.095374119999995,TJ,N2O,0.6,kg/TJ,35.45722447199999,kg +cf8281b9-986e-3984-bca4-07abad41d080,SESCO,II.5.1,Chubut,AR-U,annual,2017,bioetanol combustion consumption by agriculture machines,0.127818,TJ,CH4,10.0,kg/TJ,1.2781799999999999,kg +dbf6bbba-f0a9-36ec-bef1-f2b350f8971e,SESCO,II.5.1,Chubut,AR-U,annual,2017,bioetanol combustion consumption by agriculture machines,0.127818,TJ,N2O,0.6,kg/TJ,0.07669079999999999,kg +0e645a15-21c0-3584-9d63-decf96007c93,SESCO,II.5.1,Jujuy,AR-Y,annual,2017,bioetanol combustion consumption by agriculture machines,0.0255636,TJ,CH4,10.0,kg/TJ,0.255636,kg +dbda01c4-7567-3de9-b9ee-66579a6e4d0f,SESCO,II.5.1,Jujuy,AR-Y,annual,2017,bioetanol combustion consumption by agriculture machines,0.0255636,TJ,N2O,0.6,kg/TJ,0.015338159999999998,kg +bcad6a01-d454-3815-97df-ce3ebb0618a1,SESCO,II.5.1,Mendoza,AR-M,annual,2017,bioetanol combustion consumption by agriculture machines,1.8201283199999998,TJ,CH4,10.0,kg/TJ,18.2012832,kg +05995652-23e6-3015-892e-b20eb7e88063,SESCO,II.5.1,Mendoza,AR-M,annual,2017,bioetanol combustion consumption by agriculture machines,1.8201283199999998,TJ,N2O,0.6,kg/TJ,1.0920769919999997,kg +dd9c6a65-429c-3212-a864-d01cc333b834,SESCO,II.5.1,Salta,AR-A,annual,2017,bioetanol combustion consumption by agriculture machines,0.035789039999999994,TJ,CH4,10.0,kg/TJ,0.35789039999999994,kg +deed34fb-20ad-3cfe-a7ed-27c508c2c78c,SESCO,II.5.1,Salta,AR-A,annual,2017,bioetanol combustion consumption by agriculture machines,0.035789039999999994,TJ,N2O,0.6,kg/TJ,0.021473423999999994,kg +6b0714ba-a9e4-352f-b98f-9c140c63d5c4,SESCO,II.5.1,Santa Fe,AR-S,annual,2017,bioetanol combustion consumption by agriculture machines,8.287719119999998,TJ,CH4,10.0,kg/TJ,82.87719119999998,kg +860dc41c-deef-3efe-aab3-c16c9a9d00b4,SESCO,II.5.1,Santa Fe,AR-S,annual,2017,bioetanol combustion consumption by agriculture machines,8.287719119999998,TJ,N2O,0.6,kg/TJ,4.972631471999999,kg +73ef4a61-7abe-3899-b1b8-73c2cfade7ff,SESCO,II.5.1,Buenos Aires,AR-B,annual,2017,bioetanol combustion consumption by agriculture machines,0.32210135999999995,TJ,CH4,10.0,kg/TJ,3.2210135999999996,kg +61e46692-3e92-3379-8e66-0b9b22e67cdf,SESCO,II.5.1,Buenos Aires,AR-B,annual,2017,bioetanol combustion consumption by agriculture machines,0.32210135999999995,TJ,N2O,0.6,kg/TJ,0.19326081599999997,kg +9b1d72c9-d3dc-3d5e-8266-0e83b31ee0fb,SESCO,II.5.1,Santa Fe,AR-S,annual,2017,bioetanol combustion consumption by agriculture machines,0.043458119999999996,TJ,CH4,10.0,kg/TJ,0.43458119999999995,kg +cf216ec1-c182-3631-8225-3d430fa347a7,SESCO,II.5.1,Santa Fe,AR-S,annual,2017,bioetanol combustion consumption by agriculture machines,0.043458119999999996,TJ,N2O,0.6,kg/TJ,0.026074871999999995,kg +572996ba-79e1-36e6-8d96-59e7f00456ad,SESCO,II.1.1,Buenos Aires,AR-B,annual,2017,bioetanol combustion consumption by to the public,2829.7013493599998,TJ,CH4,10.0,kg/TJ,28297.013493599996,kg +5477f9a3-af84-3dd4-8927-78aaaf1d27fa,SESCO,II.1.1,Buenos Aires,AR-B,annual,2017,bioetanol combustion consumption by to the public,2829.7013493599998,TJ,N2O,0.6,kg/TJ,1697.820809616,kg +3e1c0f7a-6e34-3693-ae72-de6d2bdccba9,SESCO,II.1.1,Capital Federal,AR-C,annual,2017,bioetanol combustion consumption by to the public,614.5770639599999,TJ,CH4,10.0,kg/TJ,6145.770639599999,kg +8a98316f-bcc5-3a2a-91a5-4d499922aff5,SESCO,II.1.1,Capital Federal,AR-C,annual,2017,bioetanol combustion consumption by to the public,614.5770639599999,TJ,N2O,0.6,kg/TJ,368.74623837599995,kg +e9515f08-20af-35a5-a2f8-8789217f81e4,SESCO,II.1.1,Catamarca,AR-K,annual,2017,bioetanol combustion consumption by to the public,55.17391788,TJ,CH4,10.0,kg/TJ,551.7391788,kg +caeb4ec1-6c89-3463-b31d-0866121b6be4,SESCO,II.1.1,Catamarca,AR-K,annual,2017,bioetanol combustion consumption by to the public,55.17391788,TJ,N2O,0.6,kg/TJ,33.104350728,kg +906a5d49-8917-3c43-9d36-c8348d7947b2,SESCO,II.1.1,Chaco,AR-H,annual,2017,bioetanol combustion consumption by to the public,185.18783111999997,TJ,CH4,10.0,kg/TJ,1851.8783111999996,kg +5aa894b7-bbb0-361c-8c6a-77378ab95f1e,SESCO,II.1.1,Chaco,AR-H,annual,2017,bioetanol combustion consumption by to the public,185.18783111999997,TJ,N2O,0.6,kg/TJ,111.11269867199998,kg +375865f0-3781-3ae2-b299-c0aff64ea2b9,SESCO,II.1.1,Chubut,AR-U,annual,2017,bioetanol combustion consumption by to the public,259.77219048,TJ,CH4,10.0,kg/TJ,2597.7219048,kg +2e1bbc7f-e30c-374b-ab22-1b4f4e48c147,SESCO,II.1.1,Chubut,AR-U,annual,2017,bioetanol combustion consumption by to the public,259.77219048,TJ,N2O,0.6,kg/TJ,155.863314288,kg +c4de627d-1a3c-3932-9989-33b98cb20705,SESCO,II.1.1,Corrientes,AR-W,annual,2017,bioetanol combustion consumption by to the public,188.14553963999998,TJ,CH4,10.0,kg/TJ,1881.4553963999997,kg +69051f15-7f72-34b3-8465-2ef3bda3bce0,SESCO,II.1.1,Corrientes,AR-W,annual,2017,bioetanol combustion consumption by to the public,188.14553963999998,TJ,N2O,0.6,kg/TJ,112.88732378399999,kg +9f57dc91-d021-3536-b848-e47c3d9fa704,SESCO,II.1.1,Córdoba,AR-X,annual,2017,bioetanol combustion consumption by to the public,696.53396556,TJ,CH4,10.0,kg/TJ,6965.3396556,kg +820447c4-f6c2-364e-b224-89b6e924b7a1,SESCO,II.1.1,Córdoba,AR-X,annual,2017,bioetanol combustion consumption by to the public,696.53396556,TJ,N2O,0.6,kg/TJ,417.92037933599994,kg +a06a5ae0-f36b-3f32-a4c6-6b5255a29b19,SESCO,II.1.1,Entre Rios,AR-E,annual,2017,bioetanol combustion consumption by to the public,247.31504819999998,TJ,CH4,10.0,kg/TJ,2473.150482,kg +f6030826-a0ea-38d9-ac1f-bb5a768236b4,SESCO,II.1.1,Entre Rios,AR-E,annual,2017,bioetanol combustion consumption by to the public,247.31504819999998,TJ,N2O,0.6,kg/TJ,148.38902892,kg +e1919e15-4452-3f1a-bd64-cf890bddfb80,SESCO,II.1.1,Formosa,AR-P,annual,2017,bioetanol combustion consumption by to the public,61.426774439999996,TJ,CH4,10.0,kg/TJ,614.2677444,kg +15a02f11-3ccb-3a32-b191-8b824b85f7fb,SESCO,II.1.1,Formosa,AR-P,annual,2017,bioetanol combustion consumption by to the public,61.426774439999996,TJ,N2O,0.6,kg/TJ,36.856064663999994,kg +58354226-edb3-3298-961a-f1c36c0da79e,SESCO,II.1.1,Jujuy,AR-Y,annual,2017,bioetanol combustion consumption by to the public,108.83191428,TJ,CH4,10.0,kg/TJ,1088.3191428,kg +5380ead6-2f46-3dc9-b927-a8ce9a8f5015,SESCO,II.1.1,Jujuy,AR-Y,annual,2017,bioetanol combustion consumption by to the public,108.83191428,TJ,N2O,0.6,kg/TJ,65.299148568,kg +ba49d9f2-21e0-33c4-b3fd-c8d5dc81bbd1,SESCO,II.1.1,La Pampa,AR-L,annual,2017,bioetanol combustion consumption by to the public,122.21190252,TJ,CH4,10.0,kg/TJ,1222.1190252,kg +360e9e46-b867-390f-928b-1f3c001f58ce,SESCO,II.1.1,La Pampa,AR-L,annual,2017,bioetanol combustion consumption by to the public,122.21190252,TJ,N2O,0.6,kg/TJ,73.327141512,kg +4ac22f8e-8ba0-3b55-a87f-1ecf335cc21f,SESCO,II.1.1,La Rioja,AR-F,annual,2017,bioetanol combustion consumption by to the public,76.93876691999999,TJ,CH4,10.0,kg/TJ,769.3876691999999,kg +ad7a9f68-2aae-3620-8d78-d6d9f01a4dbc,SESCO,II.1.1,La Rioja,AR-F,annual,2017,bioetanol combustion consumption by to the public,76.93876691999999,TJ,N2O,0.6,kg/TJ,46.16326015199999,kg +b4295c5b-d6bc-384b-a443-1db077eb8115,SESCO,II.1.1,Mendoza,AR-M,annual,2017,bioetanol combustion consumption by to the public,385.92088739999997,TJ,CH4,10.0,kg/TJ,3859.208874,kg +c1e712ad-15bb-3a9e-a808-1cb017a81459,SESCO,II.1.1,Mendoza,AR-M,annual,2017,bioetanol combustion consumption by to the public,385.92088739999997,TJ,N2O,0.6,kg/TJ,231.55253243999996,kg +7d35a097-4b96-37ed-a978-1f827ee70982,SESCO,II.1.1,Misiones,AR-N,annual,2017,bioetanol combustion consumption by to the public,252.31528835999995,TJ,CH4,10.0,kg/TJ,2523.1528835999998,kg +19ccf1f3-db3d-3b47-8350-a41e32b99183,SESCO,II.1.1,Misiones,AR-N,annual,2017,bioetanol combustion consumption by to the public,252.31528835999995,TJ,N2O,0.6,kg/TJ,151.38917301599997,kg +098aebeb-e1b2-35fa-b6e4-3474c2243905,SESCO,II.1.1,Neuquén,AR-Q,annual,2017,bioetanol combustion consumption by to the public,247.200012,TJ,CH4,10.0,kg/TJ,2472.0001199999997,kg +40c6cd70-ae7c-36c7-92cc-5f25d11e4794,SESCO,II.1.1,Neuquén,AR-Q,annual,2017,bioetanol combustion consumption by to the public,247.200012,TJ,N2O,0.6,kg/TJ,148.3200072,kg +1b97ff9e-e4e0-32db-9bd1-1b986713255a,SESCO,II.1.1,Rio Negro,AR-R,annual,2017,bioetanol combustion consumption by to the public,233.21927915999999,TJ,CH4,10.0,kg/TJ,2332.1927916,kg +ff98d3c0-3f20-3d00-a9ad-c85502532c94,SESCO,II.1.1,Rio Negro,AR-R,annual,2017,bioetanol combustion consumption by to the public,233.21927915999999,TJ,N2O,0.6,kg/TJ,139.93156749599999,kg +e20c09da-3d44-38b9-83f6-f66773ab807c,SESCO,II.1.1,Salta,AR-A,annual,2017,bioetanol combustion consumption by to the public,245.69687231999995,TJ,CH4,10.0,kg/TJ,2456.9687231999997,kg +f779143a-a826-3737-98a7-0ef599ac74fd,SESCO,II.1.1,Salta,AR-A,annual,2017,bioetanol combustion consumption by to the public,245.69687231999995,TJ,N2O,0.6,kg/TJ,147.41812339199996,kg +d8b61adb-4ddb-3048-89a0-03545b96c299,SESCO,II.1.1,San Juan,AR-J,annual,2017,bioetanol combustion consumption by to the public,129.41828135999998,TJ,CH4,10.0,kg/TJ,1294.1828136,kg +92c596d1-c53e-365e-b857-f60f54bbdf14,SESCO,II.1.1,San Juan,AR-J,annual,2017,bioetanol combustion consumption by to the public,129.41828135999998,TJ,N2O,0.6,kg/TJ,77.65096881599999,kg +46427518-5ab3-3dac-9d58-8abede006e12,SESCO,II.1.1,San Luis,AR-D,annual,2017,bioetanol combustion consumption by to the public,100.23231924,TJ,CH4,10.0,kg/TJ,1002.3231923999999,kg +d2f9c256-fbe2-395f-8331-2459c823aac0,SESCO,II.1.1,San Luis,AR-D,annual,2017,bioetanol combustion consumption by to the public,100.23231924,TJ,N2O,0.6,kg/TJ,60.13939154399999,kg +1c188158-9f26-3df9-bdec-0596ac08cc55,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2017,bioetanol combustion consumption by to the public,177.85619063999997,TJ,CH4,10.0,kg/TJ,1778.5619063999998,kg +e1a1eeaa-4fab-3dc6-9f24-daff943579f7,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2017,bioetanol combustion consumption by to the public,177.85619063999997,TJ,N2O,0.6,kg/TJ,106.71371438399997,kg +883e5b07-c13e-310c-b312-70d8d1d380f6,SESCO,II.1.1,Santa Fe,AR-S,annual,2017,bioetanol combustion consumption by to the public,518.6598803999999,TJ,CH4,10.0,kg/TJ,5186.598803999999,kg +9cc4fee4-8466-391b-9cf1-8f4d0a563605,SESCO,II.1.1,Santa Fe,AR-S,annual,2017,bioetanol combustion consumption by to the public,518.6598803999999,TJ,N2O,0.6,kg/TJ,311.19592823999994,kg +ab011f9b-498e-37d2-9e35-bb8cd4895f72,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2017,bioetanol combustion consumption by to the public,102.50747964,TJ,CH4,10.0,kg/TJ,1025.0747964,kg +8df45a86-fabd-309e-9ea5-8b9bbcdd4833,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2017,bioetanol combustion consumption by to the public,102.50747964,TJ,N2O,0.6,kg/TJ,61.504487784,kg +73c854bd-2372-3c8d-9265-464e0e4ebb98,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2017,bioetanol combustion consumption by to the public,137.39668092,TJ,CH4,10.0,kg/TJ,1373.9668092,kg +1d599009-3dd3-33e6-a13c-659238376780,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2017,bioetanol combustion consumption by to the public,137.39668092,TJ,N2O,0.6,kg/TJ,82.438008552,kg +535fd522-a722-32ef-8842-7ecb7d11beed,SESCO,II.1.1,Tucuman,AR-T,annual,2017,bioetanol combustion consumption by to the public,189.50552315999997,TJ,CH4,10.0,kg/TJ,1895.0552315999996,kg +16df649f-8b78-36d8-8d01-627189a7519b,SESCO,II.1.1,Tucuman,AR-T,annual,2017,bioetanol combustion consumption by to the public,189.50552315999997,TJ,N2O,0.6,kg/TJ,113.70331389599998,kg +753fffc2-0fba-3ccd-ab16-e311e4fd7d26,SESCO,II.1.1,Buenos Aires,AR-B,annual,2017,bioetanol combustion consumption by to the public,1533.9617125199998,TJ,CH4,10.0,kg/TJ,15339.617125199999,kg +7dd4186a-4b53-3e32-adb1-37fd18c2b55b,SESCO,II.1.1,Buenos Aires,AR-B,annual,2017,bioetanol combustion consumption by to the public,1533.9617125199998,TJ,N2O,0.6,kg/TJ,920.3770275119998,kg +f6371da4-bd06-3bfe-935f-77ef306aaf25,SESCO,II.1.1,Capital Federal,AR-C,annual,2017,bioetanol combustion consumption by to the public,362.3870372399999,TJ,CH4,10.0,kg/TJ,3623.8703723999993,kg +6e40fdc0-a244-34fc-ac28-c809bee58a4c,SESCO,II.1.1,Capital Federal,AR-C,annual,2017,bioetanol combustion consumption by to the public,362.3870372399999,TJ,N2O,0.6,kg/TJ,217.43222234399994,kg +3f29ed31-37e3-33c5-903e-38146e6b7972,SESCO,II.1.1,Catamarca,AR-K,annual,2017,bioetanol combustion consumption by to the public,30.471811199999994,TJ,CH4,10.0,kg/TJ,304.71811199999996,kg +ca21faec-d742-37b6-b206-acb53d6d8440,SESCO,II.1.1,Catamarca,AR-K,annual,2017,bioetanol combustion consumption by to the public,30.471811199999994,TJ,N2O,0.6,kg/TJ,18.283086719999996,kg +fa765226-9fe5-3c33-b273-c3ba0dfd3dcf,SESCO,II.1.1,Chaco,AR-H,annual,2017,bioetanol combustion consumption by to the public,93.56533236,TJ,CH4,10.0,kg/TJ,935.6533236,kg +45bc47dd-a934-35f6-bbdd-b1c08eb215d9,SESCO,II.1.1,Chaco,AR-H,annual,2017,bioetanol combustion consumption by to the public,93.56533236,TJ,N2O,0.6,kg/TJ,56.139199416,kg +b366a2ca-0393-3b64-b8ac-62d6228071a9,SESCO,II.1.1,Chubut,AR-U,annual,2017,bioetanol combustion consumption by to the public,134.5028814,TJ,CH4,10.0,kg/TJ,1345.028814,kg +5d1c70ce-2987-3089-acae-48387531084f,SESCO,II.1.1,Chubut,AR-U,annual,2017,bioetanol combustion consumption by to the public,134.5028814,TJ,N2O,0.6,kg/TJ,80.70172884,kg +08145412-83e6-3c5a-b1c2-7611c0b7ecea,SESCO,II.1.1,Corrientes,AR-W,annual,2017,bioetanol combustion consumption by to the public,101.00945267999998,TJ,CH4,10.0,kg/TJ,1010.0945267999998,kg +867e99d6-87c9-3585-9497-1911daca33ee,SESCO,II.1.1,Corrientes,AR-W,annual,2017,bioetanol combustion consumption by to the public,101.00945267999998,TJ,N2O,0.6,kg/TJ,60.60567160799999,kg +4a4af128-cc36-3644-ba6d-e6a6faadcc76,SESCO,II.1.1,Córdoba,AR-X,annual,2017,bioetanol combustion consumption by to the public,354.51089208,TJ,CH4,10.0,kg/TJ,3545.1089208000003,kg +4f088cb6-fb0c-3b1e-87aa-530f784a5bdd,SESCO,II.1.1,Córdoba,AR-X,annual,2017,bioetanol combustion consumption by to the public,354.51089208,TJ,N2O,0.6,kg/TJ,212.706535248,kg +a2d6f264-cae6-3d5f-9dc2-a55f5b8d6ec9,SESCO,II.1.1,Entre Rios,AR-E,annual,2017,bioetanol combustion consumption by to the public,135.90121032,TJ,CH4,10.0,kg/TJ,1359.0121032,kg +92be6466-b2ff-3a2e-8cba-b33b01c03d95,SESCO,II.1.1,Entre Rios,AR-E,annual,2017,bioetanol combustion consumption by to the public,135.90121032,TJ,N2O,0.6,kg/TJ,81.540726192,kg +5d4caa4d-d686-3a36-8c19-0b1188f1f331,SESCO,II.1.1,Formosa,AR-P,annual,2017,bioetanol combustion consumption by to the public,24.90917184,TJ,CH4,10.0,kg/TJ,249.0917184,kg +22d46b9d-af40-334f-bd4e-3250d489ef68,SESCO,II.1.1,Formosa,AR-P,annual,2017,bioetanol combustion consumption by to the public,24.90917184,TJ,N2O,0.6,kg/TJ,14.945503103999998,kg +c62bb394-d4da-3b51-b0cc-d7e297493b48,SESCO,II.1.1,Jujuy,AR-Y,annual,2017,bioetanol combustion consumption by to the public,41.72235156,TJ,CH4,10.0,kg/TJ,417.2235156,kg +fd653369-f986-3ee0-8939-feb4ef4b146e,SESCO,II.1.1,Jujuy,AR-Y,annual,2017,bioetanol combustion consumption by to the public,41.72235156,TJ,N2O,0.6,kg/TJ,25.033410936,kg +2b0d7754-1e52-3e1b-ab38-1c7f56d2ed8e,SESCO,II.1.1,La Pampa,AR-L,annual,2017,bioetanol combustion consumption by to the public,102.74522112,TJ,CH4,10.0,kg/TJ,1027.4522112,kg +2542d2c2-5230-3a95-88c0-be6ded23893f,SESCO,II.1.1,La Pampa,AR-L,annual,2017,bioetanol combustion consumption by to the public,102.74522112,TJ,N2O,0.6,kg/TJ,61.647132672,kg +6222d133-2346-3fb9-9503-29bfba99bba2,SESCO,II.1.1,La Rioja,AR-F,annual,2017,bioetanol combustion consumption by to the public,42.14670732,TJ,CH4,10.0,kg/TJ,421.46707319999996,kg +fe8c9ae7-60bd-369b-83b7-8d72c1337225,SESCO,II.1.1,La Rioja,AR-F,annual,2017,bioetanol combustion consumption by to the public,42.14670732,TJ,N2O,0.6,kg/TJ,25.288024391999997,kg +1bd75854-0b0e-38fd-9433-9b59ba272e9a,SESCO,II.1.1,Mendoza,AR-M,annual,2017,bioetanol combustion consumption by to the public,259.03340244,TJ,CH4,10.0,kg/TJ,2590.3340243999996,kg +a7c0c240-6dbe-304d-a82b-949b767c0133,SESCO,II.1.1,Mendoza,AR-M,annual,2017,bioetanol combustion consumption by to the public,259.03340244,TJ,N2O,0.6,kg/TJ,155.42004146399998,kg +342e5022-2f9e-33f2-835c-2c7a91fcae70,SESCO,II.1.1,Misiones,AR-N,annual,2017,bioetanol combustion consumption by to the public,91.453779,TJ,CH4,10.0,kg/TJ,914.53779,kg +460fdf8c-500d-3d77-87a8-48f626f9f91c,SESCO,II.1.1,Misiones,AR-N,annual,2017,bioetanol combustion consumption by to the public,91.453779,TJ,N2O,0.6,kg/TJ,54.8722674,kg +41030aba-14a0-391b-8420-540fb2b209bd,SESCO,II.1.1,Neuquén,AR-Q,annual,2017,bioetanol combustion consumption by to the public,175.95170244,TJ,CH4,10.0,kg/TJ,1759.5170243999999,kg +71388c7b-4b56-3fbb-94fb-2f37d132bef8,SESCO,II.1.1,Neuquén,AR-Q,annual,2017,bioetanol combustion consumption by to the public,175.95170244,TJ,N2O,0.6,kg/TJ,105.571021464,kg +0650502b-fbba-3e5f-9d62-79cd28a56dd2,SESCO,II.1.1,Rio Negro,AR-R,annual,2017,bioetanol combustion consumption by to the public,150.30885528,TJ,CH4,10.0,kg/TJ,1503.0885528,kg +724fc6c8-5604-3456-b8a6-d2d14ebc3b61,SESCO,II.1.1,Rio Negro,AR-R,annual,2017,bioetanol combustion consumption by to the public,150.30885528,TJ,N2O,0.6,kg/TJ,90.185313168,kg +95190287-30c1-3d55-a001-29021e358925,SESCO,II.1.1,Salta,AR-A,annual,2017,bioetanol combustion consumption by to the public,104.79286547999999,TJ,CH4,10.0,kg/TJ,1047.9286548,kg +5ed72628-f324-353d-bba1-6f10421e5869,SESCO,II.1.1,Salta,AR-A,annual,2017,bioetanol combustion consumption by to the public,104.79286547999999,TJ,N2O,0.6,kg/TJ,62.87571928799999,kg +9aada7ed-7709-3927-96a8-9f1e3815edf7,SESCO,II.1.1,San Juan,AR-J,annual,2017,bioetanol combustion consumption by to the public,72.5622786,TJ,CH4,10.0,kg/TJ,725.622786,kg +dab47a87-cff9-3563-9ea6-798de559573e,SESCO,II.1.1,San Juan,AR-J,annual,2017,bioetanol combustion consumption by to the public,72.5622786,TJ,N2O,0.6,kg/TJ,43.537367159999995,kg +1b4ee167-77c3-3745-8f8f-27b16e8b99e6,SESCO,II.1.1,San Luis,AR-D,annual,2017,bioetanol combustion consumption by to the public,66.19438584,TJ,CH4,10.0,kg/TJ,661.9438584,kg +82753196-8958-3b23-b6f4-8d0032a45a5d,SESCO,II.1.1,San Luis,AR-D,annual,2017,bioetanol combustion consumption by to the public,66.19438584,TJ,N2O,0.6,kg/TJ,39.716631504,kg +bdcc70f5-d704-3011-9823-9bf19cb9bdee,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2017,bioetanol combustion consumption by to the public,75.93923016,TJ,CH4,10.0,kg/TJ,759.3923015999999,kg +eb902608-a8f9-393d-ba64-a02660d5dded,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2017,bioetanol combustion consumption by to the public,75.93923016,TJ,N2O,0.6,kg/TJ,45.563538095999995,kg +dae7252e-e497-3d8c-8eb6-7671df6f9923,SESCO,II.1.1,Santa Fe,AR-S,annual,2017,bioetanol combustion consumption by to the public,316.48248071999996,TJ,CH4,10.0,kg/TJ,3164.8248071999997,kg +fda95cff-6cfa-33cb-b9e6-d017fdb0abbd,SESCO,II.1.1,Santa Fe,AR-S,annual,2017,bioetanol combustion consumption by to the public,316.48248071999996,TJ,N2O,0.6,kg/TJ,189.88948843199998,kg +1b61c269-719d-3d1e-a196-b0261ca0b06c,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2017,bioetanol combustion consumption by to the public,59.59130795999999,TJ,CH4,10.0,kg/TJ,595.9130795999998,kg +319d0894-7dc8-3f14-a019-37c752057835,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2017,bioetanol combustion consumption by to the public,59.59130795999999,TJ,N2O,0.6,kg/TJ,35.754784775999994,kg +58831bb4-4d1a-387b-b4a2-5063b63bdf47,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2017,bioetanol combustion consumption by to the public,27.381171959999996,TJ,CH4,10.0,kg/TJ,273.81171959999995,kg +ef48f0cc-3a94-3ec1-8b35-e46436a6bf49,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2017,bioetanol combustion consumption by to the public,27.381171959999996,TJ,N2O,0.6,kg/TJ,16.428703175999996,kg +92c95c5a-fc40-3abc-b0c6-65eb8fe732cd,SESCO,II.1.1,Tucuman,AR-T,annual,2017,bioetanol combustion consumption by to the public,78.0456708,TJ,CH4,10.0,kg/TJ,780.4567079999999,kg +9cec3948-5eef-34ae-a227-f73845385024,SESCO,II.1.1,Tucuman,AR-T,annual,2017,bioetanol combustion consumption by to the public,78.0456708,TJ,N2O,0.6,kg/TJ,46.827402479999996,kg +aebad1dc-6fd9-3a8c-b75a-085ae26f8174,SESCO,II.1.1,Buenos Aires,AR-B,annual,2017,bioetanol combustion consumption by freight transport,21.35583144,TJ,CH4,10.0,kg/TJ,213.5583144,kg +0b3a5aec-2111-3a86-94d1-09809cfbe3ba,SESCO,II.1.1,Buenos Aires,AR-B,annual,2017,bioetanol combustion consumption by freight transport,21.35583144,TJ,N2O,0.6,kg/TJ,12.813498864,kg +cca078c8-f122-3d09-904d-28251863d1ef,SESCO,II.1.1,Capital Federal,AR-C,annual,2017,bioetanol combustion consumption by freight transport,22.08439404,TJ,CH4,10.0,kg/TJ,220.8439404,kg +81875058-5660-379d-8c3f-50abb8ab631f,SESCO,II.1.1,Capital Federal,AR-C,annual,2017,bioetanol combustion consumption by freight transport,22.08439404,TJ,N2O,0.6,kg/TJ,13.250636424,kg +18e1fba0-ed47-31f9-acc6-af0463f6327d,SESCO,II.1.1,Chaco,AR-H,annual,2017,bioetanol combustion consumption by freight transport,0.8487115199999998,TJ,CH4,10.0,kg/TJ,8.487115199999998,kg +215f7ad2-3be7-3728-82f4-ea3cd1bee42c,SESCO,II.1.1,Chaco,AR-H,annual,2017,bioetanol combustion consumption by freight transport,0.8487115199999998,TJ,N2O,0.6,kg/TJ,0.5092269119999999,kg +b5006ac5-393a-30d2-84da-ac25ac7233a5,SESCO,II.1.1,Chubut,AR-U,annual,2017,bioetanol combustion consumption by freight transport,0.2811996,TJ,CH4,10.0,kg/TJ,2.8119959999999997,kg +723e6978-1b1d-3340-8377-2b5ea9a99793,SESCO,II.1.1,Chubut,AR-U,annual,2017,bioetanol combustion consumption by freight transport,0.2811996,TJ,N2O,0.6,kg/TJ,0.16871976,kg +ea532fc8-c9ea-3ab0-920a-3aa7cd799419,SESCO,II.1.1,Corrientes,AR-W,annual,2017,bioetanol combustion consumption by freight transport,0.16360703999999998,TJ,CH4,10.0,kg/TJ,1.6360704,kg +d412fd77-691e-3378-b9cd-3dc64e077e3e,SESCO,II.1.1,Corrientes,AR-W,annual,2017,bioetanol combustion consumption by freight transport,0.16360703999999998,TJ,N2O,0.6,kg/TJ,0.09816422399999998,kg +b68f7ba5-4f1d-35bb-887b-8522526ca4e1,SESCO,II.1.1,Córdoba,AR-X,annual,2017,bioetanol combustion consumption by freight transport,1.4699069999999999,TJ,CH4,10.0,kg/TJ,14.699069999999999,kg +9a78a6bd-1ca7-324a-beef-2d9c995f07d5,SESCO,II.1.1,Córdoba,AR-X,annual,2017,bioetanol combustion consumption by freight transport,1.4699069999999999,TJ,N2O,0.6,kg/TJ,0.8819441999999998,kg +97021d37-9017-33c6-bd55-5548a2b42ef5,SESCO,II.1.1,Entre Rios,AR-E,annual,2017,bioetanol combustion consumption by freight transport,0.8001406799999998,TJ,CH4,10.0,kg/TJ,8.001406799999998,kg +b31f4508-a0f1-335c-83e0-bfc5cc78637d,SESCO,II.1.1,Entre Rios,AR-E,annual,2017,bioetanol combustion consumption by freight transport,0.8001406799999998,TJ,N2O,0.6,kg/TJ,0.48008440799999985,kg +cba91117-131a-3af2-8058-9e5506e03bb7,SESCO,II.1.1,Formosa,AR-P,annual,2017,bioetanol combustion consumption by freight transport,0.03323268,TJ,CH4,10.0,kg/TJ,0.33232680000000003,kg +e272e4c4-2d23-37d0-8785-a0728c4501f0,SESCO,II.1.1,Formosa,AR-P,annual,2017,bioetanol combustion consumption by freight transport,0.03323268,TJ,N2O,0.6,kg/TJ,0.019939608,kg +75776759-bdcb-3ea0-bab8-b1a4ede1fc2f,SESCO,II.1.1,Jujuy,AR-Y,annual,2017,bioetanol combustion consumption by freight transport,0.0127818,TJ,CH4,10.0,kg/TJ,0.127818,kg +640bb9dc-4a3f-3ff5-b29a-9ca97766390c,SESCO,II.1.1,Jujuy,AR-Y,annual,2017,bioetanol combustion consumption by freight transport,0.0127818,TJ,N2O,0.6,kg/TJ,0.007669079999999999,kg +385d8419-2798-3df6-8af5-a50d87fa65f4,SESCO,II.1.1,La Pampa,AR-L,annual,2017,bioetanol combustion consumption by freight transport,0.09458531999999999,TJ,CH4,10.0,kg/TJ,0.9458531999999998,kg +9fec1bb1-2d16-35c1-ac72-b3fa7ff15d34,SESCO,II.1.1,La Pampa,AR-L,annual,2017,bioetanol combustion consumption by freight transport,0.09458531999999999,TJ,N2O,0.6,kg/TJ,0.05675119199999999,kg +8ca211c4-23f0-36a7-8469-a45a907effe6,SESCO,II.1.1,La Rioja,AR-F,annual,2017,bioetanol combustion consumption by freight transport,0.0025563599999999997,TJ,CH4,10.0,kg/TJ,0.0255636,kg +97537dea-e231-355e-8ff1-bb04e5921ef4,SESCO,II.1.1,La Rioja,AR-F,annual,2017,bioetanol combustion consumption by freight transport,0.0025563599999999997,TJ,N2O,0.6,kg/TJ,0.0015338159999999997,kg +97cb20c0-720d-3738-8c29-134aea7b4e04,SESCO,II.1.1,Mendoza,AR-M,annual,2017,bioetanol combustion consumption by freight transport,1.5593796,TJ,CH4,10.0,kg/TJ,15.593796,kg +41b3af82-96d1-35a7-919d-9a778bc71aef,SESCO,II.1.1,Mendoza,AR-M,annual,2017,bioetanol combustion consumption by freight transport,1.5593796,TJ,N2O,0.6,kg/TJ,0.9356277599999999,kg +dd69d74a-c4e6-3293-8429-9f3ae85dad72,SESCO,II.1.1,Misiones,AR-N,annual,2017,bioetanol combustion consumption by freight transport,0.15082524,TJ,CH4,10.0,kg/TJ,1.5082524,kg +cc7df22c-6b46-3e53-ba57-f96512ee025a,SESCO,II.1.1,Misiones,AR-N,annual,2017,bioetanol combustion consumption by freight transport,0.15082524,TJ,N2O,0.6,kg/TJ,0.090495144,kg +782414c2-2097-3595-b8e1-dcb61c2d7341,SESCO,II.1.1,Neuquén,AR-Q,annual,2017,bioetanol combustion consumption by freight transport,0.34766495999999997,TJ,CH4,10.0,kg/TJ,3.4766495999999996,kg +7c082af4-2df2-335c-8780-f2fa7a3d1cee,SESCO,II.1.1,Neuquén,AR-Q,annual,2017,bioetanol combustion consumption by freight transport,0.34766495999999997,TJ,N2O,0.6,kg/TJ,0.20859897599999996,kg +ffe6f949-3917-32ca-a216-e649177dc264,SESCO,II.1.1,Rio Negro,AR-R,annual,2017,bioetanol combustion consumption by freight transport,0.6467590799999999,TJ,CH4,10.0,kg/TJ,6.467590799999999,kg +e87f843e-76b7-3856-9aff-0b30aadf5a51,SESCO,II.1.1,Rio Negro,AR-R,annual,2017,bioetanol combustion consumption by freight transport,0.6467590799999999,TJ,N2O,0.6,kg/TJ,0.38805544799999997,kg +110dbdbe-6e2f-317a-b92e-2d105387193d,SESCO,II.1.1,Salta,AR-A,annual,2017,bioetanol combustion consumption by freight transport,0.85126788,TJ,CH4,10.0,kg/TJ,8.5126788,kg +aef3bf90-7ff2-3bad-bfce-15d39a4c3cf7,SESCO,II.1.1,Salta,AR-A,annual,2017,bioetanol combustion consumption by freight transport,0.85126788,TJ,N2O,0.6,kg/TJ,0.5107607279999999,kg +03a654d1-dc6d-3184-abae-de4ff665c83b,SESCO,II.1.1,San Juan,AR-J,annual,2017,bioetanol combustion consumption by freight transport,0.15849432,TJ,CH4,10.0,kg/TJ,1.5849431999999999,kg +1254881a-85d1-3083-98b4-39d1b7f9c487,SESCO,II.1.1,San Juan,AR-J,annual,2017,bioetanol combustion consumption by freight transport,0.15849432,TJ,N2O,0.6,kg/TJ,0.095096592,kg +21050fec-f831-3cc1-8097-251ce5bd9a88,SESCO,II.1.1,San Luis,AR-D,annual,2017,bioetanol combustion consumption by freight transport,0.23007239999999995,TJ,CH4,10.0,kg/TJ,2.3007239999999998,kg +c7ca3386-97a8-3b75-a7d6-b9b469de3069,SESCO,II.1.1,San Luis,AR-D,annual,2017,bioetanol combustion consumption by freight transport,0.23007239999999995,TJ,N2O,0.6,kg/TJ,0.13804343999999996,kg +a56adad9-6624-3f9b-b89a-a479b41c5f11,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2017,bioetanol combustion consumption by freight transport,0.028119959999999996,TJ,CH4,10.0,kg/TJ,0.28119959999999994,kg +57f493c6-343f-335f-a9f7-5435388b5f35,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2017,bioetanol combustion consumption by freight transport,0.028119959999999996,TJ,N2O,0.6,kg/TJ,0.016871975999999997,kg +649a8741-e301-31a4-a9d6-1b9d5475a802,SESCO,II.1.1,Santa Fe,AR-S,annual,2017,bioetanol combustion consumption by freight transport,2.03741892,TJ,CH4,10.0,kg/TJ,20.3741892,kg +783339ae-0ca0-3609-a31a-4cacce832721,SESCO,II.1.1,Santa Fe,AR-S,annual,2017,bioetanol combustion consumption by freight transport,2.03741892,TJ,N2O,0.6,kg/TJ,1.222451352,kg +d712c3b2-2832-36f1-b129-435a35b483f6,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2017,bioetanol combustion consumption by freight transport,0.007669079999999999,TJ,CH4,10.0,kg/TJ,0.07669079999999999,kg +c23a0078-2b27-3df1-b479-612f5ca22a1d,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2017,bioetanol combustion consumption by freight transport,0.007669079999999999,TJ,N2O,0.6,kg/TJ,0.004601447999999999,kg +8f3be89d-fa3e-3966-a059-186043834f29,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2017,bioetanol combustion consumption by freight transport,0.34255223999999995,TJ,CH4,10.0,kg/TJ,3.4255223999999993,kg +ebf16c0f-2a39-32fe-96b0-897b10f7039a,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2017,bioetanol combustion consumption by freight transport,0.34255223999999995,TJ,N2O,0.6,kg/TJ,0.20553134399999998,kg +37854ee1-ba37-3577-a43b-3d39acd0695e,SESCO,II.1.1,Tucuman,AR-T,annual,2017,bioetanol combustion consumption by freight transport,0.32210135999999995,TJ,CH4,10.0,kg/TJ,3.2210135999999996,kg +734bb5aa-1918-361a-843b-cc914785e244,SESCO,II.1.1,Tucuman,AR-T,annual,2017,bioetanol combustion consumption by freight transport,0.32210135999999995,TJ,N2O,0.6,kg/TJ,0.19326081599999997,kg +bd5bbfe0-375a-327c-b520-a323cf3088ea,SESCO,II.1.1,Buenos Aires,AR-B,annual,2017,bioetanol combustion consumption by freight transport,22.51130616,TJ,CH4,10.0,kg/TJ,225.1130616,kg +a2598b7c-9eba-383c-b2ed-8675df421251,SESCO,II.1.1,Buenos Aires,AR-B,annual,2017,bioetanol combustion consumption by freight transport,22.51130616,TJ,N2O,0.6,kg/TJ,13.506783696,kg +ab3393e8-6181-3d8e-892d-8f42e0c36aed,SESCO,II.1.1,Capital Federal,AR-C,annual,2017,bioetanol combustion consumption by freight transport,26.54268588,TJ,CH4,10.0,kg/TJ,265.4268588,kg +ba7e4946-98f8-35b6-bf16-452d092cfa52,SESCO,II.1.1,Capital Federal,AR-C,annual,2017,bioetanol combustion consumption by freight transport,26.54268588,TJ,N2O,0.6,kg/TJ,15.925611528,kg +323796f9-e930-37ea-be21-841ff1d78a10,SESCO,II.1.1,Catamarca,AR-K,annual,2017,bioetanol combustion consumption by freight transport,0.005112719999999999,TJ,CH4,10.0,kg/TJ,0.0511272,kg +c3f54ff0-39a7-3853-9bdd-0378e9a317ab,SESCO,II.1.1,Catamarca,AR-K,annual,2017,bioetanol combustion consumption by freight transport,0.005112719999999999,TJ,N2O,0.6,kg/TJ,0.0030676319999999994,kg +ae34624b-d15b-38b4-be4e-a4cba477d995,SESCO,II.1.1,Chaco,AR-H,annual,2017,bioetanol combustion consumption by freight transport,0.8461551599999999,TJ,CH4,10.0,kg/TJ,8.4615516,kg +abe83dda-f4ca-3451-ba43-8cea065b88fb,SESCO,II.1.1,Chaco,AR-H,annual,2017,bioetanol combustion consumption by freight transport,0.8461551599999999,TJ,N2O,0.6,kg/TJ,0.5076930959999999,kg +90fd1452-380e-3423-831a-e81ef6565f47,SESCO,II.1.1,Chubut,AR-U,annual,2017,bioetanol combustion consumption by freight transport,0.19428336,TJ,CH4,10.0,kg/TJ,1.9428336,kg +a2974419-38e7-36aa-b194-d84f0444f2e6,SESCO,II.1.1,Chubut,AR-U,annual,2017,bioetanol combustion consumption by freight transport,0.19428336,TJ,N2O,0.6,kg/TJ,0.11657001599999998,kg +b7825a93-87be-3053-8fdf-b17dd95cfe87,SESCO,II.1.1,Corrientes,AR-W,annual,2017,bioetanol combustion consumption by freight transport,0.4217994,TJ,CH4,10.0,kg/TJ,4.217994,kg +3c988ddf-6537-3e1f-96dd-31697d443786,SESCO,II.1.1,Corrientes,AR-W,annual,2017,bioetanol combustion consumption by freight transport,0.4217994,TJ,N2O,0.6,kg/TJ,0.25307964,kg +d881bcb8-6cd0-3504-9500-37e8c2a2256b,SESCO,II.1.1,Córdoba,AR-X,annual,2017,bioetanol combustion consumption by freight transport,1.59005592,TJ,CH4,10.0,kg/TJ,15.9005592,kg +3ec4034c-469d-3959-9453-9f6edab29140,SESCO,II.1.1,Córdoba,AR-X,annual,2017,bioetanol combustion consumption by freight transport,1.59005592,TJ,N2O,0.6,kg/TJ,0.954033552,kg +83bfa16e-51b5-373f-9ee9-a9a0a31182f7,SESCO,II.1.1,Entre Rios,AR-E,annual,2017,bioetanol combustion consumption by freight transport,1.1273547599999998,TJ,CH4,10.0,kg/TJ,11.273547599999997,kg +07ee573b-1c1c-309d-bfe1-cec09bea1e6b,SESCO,II.1.1,Entre Rios,AR-E,annual,2017,bioetanol combustion consumption by freight transport,1.1273547599999998,TJ,N2O,0.6,kg/TJ,0.6764128559999999,kg +6b17ccae-9029-3fd9-995e-5d63bad9234d,SESCO,II.1.1,Formosa,AR-P,annual,2017,bioetanol combustion consumption by freight transport,0.035789039999999994,TJ,CH4,10.0,kg/TJ,0.35789039999999994,kg +da20de9a-8098-3178-88d9-3c85780328ff,SESCO,II.1.1,Formosa,AR-P,annual,2017,bioetanol combustion consumption by freight transport,0.035789039999999994,TJ,N2O,0.6,kg/TJ,0.021473423999999994,kg +34061b52-e448-36db-8dfd-3b838f0a0805,SESCO,II.1.1,Jujuy,AR-Y,annual,2017,bioetanol combustion consumption by freight transport,0.017894519999999997,TJ,CH4,10.0,kg/TJ,0.17894519999999997,kg +4d5c7d9e-f71b-3587-a405-e9ff96e7bd71,SESCO,II.1.1,Jujuy,AR-Y,annual,2017,bioetanol combustion consumption by freight transport,0.017894519999999997,TJ,N2O,0.6,kg/TJ,0.010736711999999997,kg +cca99bbf-9a8b-3e24-bb1c-007b79ad7b1b,SESCO,II.1.1,La Pampa,AR-L,annual,2017,bioetanol combustion consumption by freight transport,0.14826888,TJ,CH4,10.0,kg/TJ,1.4826888,kg +ac04425e-7704-3d09-b38c-bd2b3bcc9101,SESCO,II.1.1,La Pampa,AR-L,annual,2017,bioetanol combustion consumption by freight transport,0.14826888,TJ,N2O,0.6,kg/TJ,0.08896132799999999,kg +50d6baff-81e8-37a6-9dbf-1a88771ca651,SESCO,II.1.1,La Rioja,AR-F,annual,2017,bioetanol combustion consumption by freight transport,0.12526163999999998,TJ,CH4,10.0,kg/TJ,1.2526163999999997,kg +695e5b62-3f96-3f8a-9e43-5f922a47703b,SESCO,II.1.1,La Rioja,AR-F,annual,2017,bioetanol combustion consumption by freight transport,0.12526163999999998,TJ,N2O,0.6,kg/TJ,0.07515698399999998,kg +0aabce23-d1ef-3cb2-8b9a-8cd0e3a8c604,SESCO,II.1.1,Mendoza,AR-M,annual,2017,bioetanol combustion consumption by freight transport,1.4059979999999999,TJ,CH4,10.0,kg/TJ,14.05998,kg +d6e6b717-dbe2-3054-961c-e59a836a28dc,SESCO,II.1.1,Mendoza,AR-M,annual,2017,bioetanol combustion consumption by freight transport,1.4059979999999999,TJ,N2O,0.6,kg/TJ,0.8435987999999999,kg +20161f82-8f08-3fdb-9c12-6ca291f531e8,SESCO,II.1.1,Misiones,AR-N,annual,2017,bioetanol combustion consumption by freight transport,0.31443228,TJ,CH4,10.0,kg/TJ,3.1443228000000003,kg +cdb9025b-0da9-3061-87e0-8fac4ccb5304,SESCO,II.1.1,Misiones,AR-N,annual,2017,bioetanol combustion consumption by freight transport,0.31443228,TJ,N2O,0.6,kg/TJ,0.188659368,kg +5230d7ec-9b6e-3690-8208-b7e9fd1014d1,SESCO,II.1.1,Neuquén,AR-Q,annual,2017,bioetanol combustion consumption by freight transport,0.70811172,TJ,CH4,10.0,kg/TJ,7.0811172,kg +1e745a84-e58d-36e7-9356-a6b88a75d5a0,SESCO,II.1.1,Neuquén,AR-Q,annual,2017,bioetanol combustion consumption by freight transport,0.70811172,TJ,N2O,0.6,kg/TJ,0.424867032,kg +166bfac3-b2c7-3dba-a7b3-cccb2500b4ac,SESCO,II.1.1,Rio Negro,AR-R,annual,2017,bioetanol combustion consumption by freight transport,2.7710942399999996,TJ,CH4,10.0,kg/TJ,27.710942399999997,kg +bfc91a06-46ba-3424-a84d-735e9619f107,SESCO,II.1.1,Rio Negro,AR-R,annual,2017,bioetanol combustion consumption by freight transport,2.7710942399999996,TJ,N2O,0.6,kg/TJ,1.6626565439999996,kg +94367a4a-41cc-3227-82ce-3edb06399b77,SESCO,II.1.1,Salta,AR-A,annual,2017,bioetanol combustion consumption by freight transport,0.38345399999999996,TJ,CH4,10.0,kg/TJ,3.8345399999999996,kg +7934f207-c426-3344-ae56-6f334cfddf31,SESCO,II.1.1,Salta,AR-A,annual,2017,bioetanol combustion consumption by freight transport,0.38345399999999996,TJ,N2O,0.6,kg/TJ,0.23007239999999995,kg +7fd31cbb-fd9a-3afd-bfbc-16a50227ec94,SESCO,II.1.1,San Juan,AR-J,annual,2017,bioetanol combustion consumption by freight transport,0.06646536,TJ,CH4,10.0,kg/TJ,0.6646536000000001,kg +5e90a8da-9c49-3410-8b9f-f11d697f67be,SESCO,II.1.1,San Juan,AR-J,annual,2017,bioetanol combustion consumption by freight transport,0.06646536,TJ,N2O,0.6,kg/TJ,0.039879216,kg +1e8de52d-c295-398c-b435-710a109cfff6,SESCO,II.1.1,San Luis,AR-D,annual,2017,bioetanol combustion consumption by freight transport,0.22751603999999997,TJ,CH4,10.0,kg/TJ,2.2751604,kg +6dca664d-736b-3393-a19d-1edaaaa9cfce,SESCO,II.1.1,San Luis,AR-D,annual,2017,bioetanol combustion consumption by freight transport,0.22751603999999997,TJ,N2O,0.6,kg/TJ,0.13650962399999997,kg +1b02fc51-b5c9-3dec-800c-c022cda99711,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2017,bioetanol combustion consumption by freight transport,0.07157807999999999,TJ,CH4,10.0,kg/TJ,0.7157807999999999,kg +d0fba223-cea0-36d4-9789-67228ad5271e,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2017,bioetanol combustion consumption by freight transport,0.07157807999999999,TJ,N2O,0.6,kg/TJ,0.04294684799999999,kg +25075f11-0645-380d-b46a-ead2b1d67513,SESCO,II.1.1,Santa Fe,AR-S,annual,2017,bioetanol combustion consumption by freight transport,3.7655182799999998,TJ,CH4,10.0,kg/TJ,37.6551828,kg +1a21ace4-4e5e-3801-8f20-686008edda51,SESCO,II.1.1,Santa Fe,AR-S,annual,2017,bioetanol combustion consumption by freight transport,3.7655182799999998,TJ,N2O,0.6,kg/TJ,2.259310968,kg +60ba7c71-b213-3e28-9524-534067af159d,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2017,bioetanol combustion consumption by freight transport,0.038345399999999995,TJ,CH4,10.0,kg/TJ,0.38345399999999996,kg +93e8120d-f756-38be-ad77-98e8e7ad89db,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2017,bioetanol combustion consumption by freight transport,0.038345399999999995,TJ,N2O,0.6,kg/TJ,0.023007239999999995,kg +4a0e72ea-9407-3511-bdd6-49ab65ce4a76,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2017,bioetanol combustion consumption by freight transport,0.05879627999999999,TJ,CH4,10.0,kg/TJ,0.5879627999999999,kg +c09435cb-5aaa-3775-a751-53d0584471f0,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2017,bioetanol combustion consumption by freight transport,0.05879627999999999,TJ,N2O,0.6,kg/TJ,0.035277767999999994,kg +a87b81cd-60bc-3eb9-9b6d-d8058c094577,SESCO,II.1.1,Tucuman,AR-T,annual,2017,bioetanol combustion consumption by freight transport,0.29398139999999995,TJ,CH4,10.0,kg/TJ,2.9398139999999993,kg +c9ffe423-3df3-329b-bcc1-fb363463efcc,SESCO,II.1.1,Tucuman,AR-T,annual,2017,bioetanol combustion consumption by freight transport,0.29398139999999995,TJ,N2O,0.6,kg/TJ,0.17638883999999996,kg +6a5210fd-c4e3-3f49-8ceb-f82385ab3266,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,bioetanol combustion consumption by to the public,96.65298918,TJ,CH4,10.0,kg/TJ,966.5298918000001,kg +77e8dde1-1785-312c-9551-3839488073bc,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,bioetanol combustion consumption by to the public,96.65298918,TJ,N2O,0.6,kg/TJ,57.991793508,kg +85c623b2-ccb7-30f7-ae75-669cf990377d,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,bioetanol combustion consumption by to the public,7.04170665,TJ,CH4,10.0,kg/TJ,70.4170665,kg +9ca63c6c-9da8-3d31-b036-f1a7a5c81784,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,bioetanol combustion consumption by to the public,7.04170665,TJ,N2O,0.6,kg/TJ,4.2250239899999995,kg +92eaa4af-3499-3626-85d7-c637cbff0286,SESCO,II.1.1,Chaco,AR-H,annual,2018,bioetanol combustion consumption by to the public,10.13021559,TJ,CH4,10.0,kg/TJ,101.3021559,kg +c3486ba9-67f4-30f4-ae57-59d58c939501,SESCO,II.1.1,Chaco,AR-H,annual,2018,bioetanol combustion consumption by to the public,10.13021559,TJ,N2O,0.6,kg/TJ,6.0781293540000005,kg +91a2e601-c4e3-3318-89c6-484af9f2b7db,SESCO,II.1.1,Corrientes,AR-W,annual,2018,bioetanol combustion consumption by to the public,0.17574974999999998,TJ,CH4,10.0,kg/TJ,1.7574975,kg +f0c958aa-5ad0-3e8d-ac33-a538dc40a615,SESCO,II.1.1,Corrientes,AR-W,annual,2018,bioetanol combustion consumption by to the public,0.17574974999999998,TJ,N2O,0.6,kg/TJ,0.10544984999999998,kg +239a9da0-f7b7-31e1-8e40-ce2d2efa8df6,SESCO,II.1.1,Córdoba,AR-X,annual,2018,bioetanol combustion consumption by to the public,41.95966698,TJ,CH4,10.0,kg/TJ,419.59666980000003,kg +c7c49d70-de8e-368a-94a1-59d74742a297,SESCO,II.1.1,Córdoba,AR-X,annual,2018,bioetanol combustion consumption by to the public,41.95966698,TJ,N2O,0.6,kg/TJ,25.175800188,kg +a05a3e5e-94e2-3fef-ab20-d30d40924ad0,SESCO,II.1.1,Mendoza,AR-M,annual,2018,bioetanol combustion consumption by to the public,25.84927323,TJ,CH4,10.0,kg/TJ,258.4927323,kg +a1347b8f-d97b-32dc-a2f1-7eb361cbd780,SESCO,II.1.1,Mendoza,AR-M,annual,2018,bioetanol combustion consumption by to the public,25.84927323,TJ,N2O,0.6,kg/TJ,15.509563938,kg +0fe6081c-29b2-3a27-badb-49e33ecfdb55,SESCO,II.1.1,Misiones,AR-N,annual,2018,bioetanol combustion consumption by to the public,0.02811996,TJ,CH4,10.0,kg/TJ,0.2811996,kg +682d317a-5115-390b-8a61-a889d0f87fa7,SESCO,II.1.1,Misiones,AR-N,annual,2018,bioetanol combustion consumption by to the public,0.02811996,TJ,N2O,0.6,kg/TJ,0.016871976,kg +5b642497-8e60-3d4b-b14f-e991b25e3ae9,SESCO,II.1.1,San Juan,AR-J,annual,2018,bioetanol combustion consumption by to the public,0.12185315999999999,TJ,CH4,10.0,kg/TJ,1.2185316,kg +90fc5aa6-de0e-3a4c-812a-86869fa250dc,SESCO,II.1.1,San Juan,AR-J,annual,2018,bioetanol combustion consumption by to the public,0.12185315999999999,TJ,N2O,0.6,kg/TJ,0.073111896,kg +e59734aa-3e88-3936-9adf-ecb9e073d4ca,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,bioetanol combustion consumption by to the public,35.07027678,TJ,CH4,10.0,kg/TJ,350.7027678,kg +b9f99236-4f2b-3503-9ec9-ca34866dd700,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,bioetanol combustion consumption by to the public,35.07027678,TJ,N2O,0.6,kg/TJ,21.042166068,kg +2da2a07d-10e7-3998-9be4-2eb8b5584ce2,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2018,bioetanol combustion consumption by to the public,0.03749328,TJ,CH4,10.0,kg/TJ,0.37493279999999995,kg +1e7f7089-161c-3fa8-b8d0-56ea0c94a724,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2018,bioetanol combustion consumption by to the public,0.03749328,TJ,N2O,0.6,kg/TJ,0.022495967999999998,kg +adf1497b-d3db-354c-9ccc-a2cd3f64f342,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,bioetanol combustion consumption by to the public,10.85430456,TJ,CH4,10.0,kg/TJ,108.5430456,kg +0afb1c7d-347d-32c8-83a1-16e05b7cebd1,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,bioetanol combustion consumption by to the public,10.85430456,TJ,N2O,0.6,kg/TJ,6.512582736,kg +bfff0c97-7b37-369e-bbe4-bb8a2c709e1c,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,bioetanol combustion consumption by to the public,1.28180151,TJ,CH4,10.0,kg/TJ,12.8180151,kg +d362f791-8280-399f-aa0f-52deb87e624c,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,bioetanol combustion consumption by to the public,1.28180151,TJ,N2O,0.6,kg/TJ,0.769080906,kg +746c10d1-0775-37b3-bf52-8dbb97734921,SESCO,II.1.1,Chaco,AR-H,annual,2018,bioetanol combustion consumption by to the public,0.7358056199999999,TJ,CH4,10.0,kg/TJ,7.358056199999999,kg +728ad7bd-051d-3fa5-a952-6ece7869597e,SESCO,II.1.1,Chaco,AR-H,annual,2018,bioetanol combustion consumption by to the public,0.7358056199999999,TJ,N2O,0.6,kg/TJ,0.44148337199999993,kg +a3f9fd4d-b76a-34ef-b9b9-6ba0f9c67183,SESCO,II.1.1,Corrientes,AR-W,annual,2018,bioetanol combustion consumption by to the public,0.14294313,TJ,CH4,10.0,kg/TJ,1.4294313,kg +0760c528-1a1c-3812-aaf8-d9f08982d184,SESCO,II.1.1,Corrientes,AR-W,annual,2018,bioetanol combustion consumption by to the public,0.14294313,TJ,N2O,0.6,kg/TJ,0.085765878,kg +0dab5027-f351-3ed0-9e88-c2baedba2851,SESCO,II.1.1,Córdoba,AR-X,annual,2018,bioetanol combustion consumption by to the public,5.63805198,TJ,CH4,10.0,kg/TJ,56.3805198,kg +87d18388-14f3-3fb1-b807-5aa81e96da40,SESCO,II.1.1,Córdoba,AR-X,annual,2018,bioetanol combustion consumption by to the public,5.63805198,TJ,N2O,0.6,kg/TJ,3.382831188,kg +0663c876-a141-3d00-ba1b-3cc2048fa66c,SESCO,II.1.1,Mendoza,AR-M,annual,2018,bioetanol combustion consumption by to the public,2.5823496599999998,TJ,CH4,10.0,kg/TJ,25.8234966,kg +1d0890a6-1bd2-3092-b000-b3f74f9d5084,SESCO,II.1.1,Mendoza,AR-M,annual,2018,bioetanol combustion consumption by to the public,2.5823496599999998,TJ,N2O,0.6,kg/TJ,1.5494097959999997,kg +d47ed572-ed8f-35b7-a91f-c8fa41e596ca,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,bioetanol combustion consumption by to the public,3.29003532,TJ,CH4,10.0,kg/TJ,32.9003532,kg +96d7ee1c-f6b6-3f9c-bf7b-8ee60a20b61a,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,bioetanol combustion consumption by to the public,3.29003532,TJ,N2O,0.6,kg/TJ,1.974021192,kg +43d1c97b-a610-32e2-ba4d-e416501267fb,SESCO,II.5.1,Buenos Aires,AR-B,annual,2018,bioetanol combustion consumption by agriculture machines,0.9185853599999999,TJ,CH4,10.0,kg/TJ,9.1858536,kg +5d6ae77e-383d-38d1-b6e7-933aa4284a64,SESCO,II.5.1,Buenos Aires,AR-B,annual,2018,bioetanol combustion consumption by agriculture machines,0.9185853599999999,TJ,N2O,0.6,kg/TJ,0.5511512159999999,kg +faf12e85-287e-3885-941a-5fefa48eacbe,SESCO,II.5.1,Córdoba,AR-X,annual,2018,bioetanol combustion consumption by agriculture machines,0.13825647,TJ,CH4,10.0,kg/TJ,1.3825646999999999,kg +2deaec26-8ed6-3a11-bf3b-3fa0ee2d60b4,SESCO,II.5.1,Córdoba,AR-X,annual,2018,bioetanol combustion consumption by agriculture machines,0.13825647,TJ,N2O,0.6,kg/TJ,0.08295388199999999,kg +e16cb4c7-9251-3d8d-a994-2c65514fd467,SESCO,II.5.1,Santa Fe,AR-S,annual,2018,bioetanol combustion consumption by agriculture machines,1.06621515,TJ,CH4,10.0,kg/TJ,10.662151499999998,kg +25593ec9-7145-3ae3-8952-c0b386335883,SESCO,II.5.1,Santa Fe,AR-S,annual,2018,bioetanol combustion consumption by agriculture machines,1.06621515,TJ,N2O,0.6,kg/TJ,0.6397290899999999,kg +b2537e57-0122-3b62-8dcd-063ad97f335b,SESCO,II.5.1,Tucuman,AR-T,annual,2018,bioetanol combustion consumption by agriculture machines,0.81547884,TJ,CH4,10.0,kg/TJ,8.154788400000001,kg +dddb2794-076a-3cf3-8fcd-3cd7a41889a1,SESCO,II.5.1,Tucuman,AR-T,annual,2018,bioetanol combustion consumption by agriculture machines,0.81547884,TJ,N2O,0.6,kg/TJ,0.489287304,kg +62945497-338e-3bb4-97db-fe3193963e07,SESCO,II.5.1,Buenos Aires,AR-B,annual,2018,bioetanol combustion consumption by agriculture machines,0.18512306999999997,TJ,CH4,10.0,kg/TJ,1.8512306999999997,kg +f2549024-b137-37f6-9223-31d3e0edd686,SESCO,II.5.1,Buenos Aires,AR-B,annual,2018,bioetanol combustion consumption by agriculture machines,0.18512306999999997,TJ,N2O,0.6,kg/TJ,0.11107384199999998,kg +a425e76b-f7a7-34b2-a310-c3fb0a19c3c7,SESCO,II.5.1,Córdoba,AR-X,annual,2018,bioetanol combustion consumption by agriculture machines,0.06561324,TJ,CH4,10.0,kg/TJ,0.6561324000000001,kg +9b807328-3738-38f3-a830-2fac6c2d78f5,SESCO,II.5.1,Córdoba,AR-X,annual,2018,bioetanol combustion consumption by agriculture machines,0.06561324,TJ,N2O,0.6,kg/TJ,0.039367944,kg +3b07f0f0-a5c0-32b3-8d65-10ebcfffc2a6,SESCO,II.5.1,Santa Fe,AR-S,annual,2018,bioetanol combustion consumption by agriculture machines,0.34681284,TJ,CH4,10.0,kg/TJ,3.4681284000000003,kg +acd73c96-84ad-3109-9961-293b4b0359b1,SESCO,II.5.1,Santa Fe,AR-S,annual,2018,bioetanol combustion consumption by agriculture machines,0.34681284,TJ,N2O,0.6,kg/TJ,0.208087704,kg +f3701c29-d3cb-3dc2-b7d2-34dfad3fbf32,SESCO,II.5.1,Tucuman,AR-T,annual,2018,bioetanol combustion consumption by agriculture machines,0.17340642,TJ,CH4,10.0,kg/TJ,1.7340642000000002,kg +1a16adee-2f88-31c2-8890-906623cd6a8c,SESCO,II.5.1,Tucuman,AR-T,annual,2018,bioetanol combustion consumption by agriculture machines,0.17340642,TJ,N2O,0.6,kg/TJ,0.104043852,kg +b83206bc-8d43-34d8-898a-bb1651b0a638,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,bioetanol combustion consumption by to the public,200.38517829,TJ,CH4,10.0,kg/TJ,2003.8517829,kg +c30a3473-7e02-3c09-a2c9-0013f96f6703,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,bioetanol combustion consumption by to the public,200.38517829,TJ,N2O,0.6,kg/TJ,120.231106974,kg +ac781260-67ba-301a-89e4-0bc0a3ff1c17,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,bioetanol combustion consumption by to the public,62.46146115,TJ,CH4,10.0,kg/TJ,624.6146115,kg +c111fa22-584e-3490-872d-be7cf1cfe846,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,bioetanol combustion consumption by to the public,62.46146115,TJ,N2O,0.6,kg/TJ,37.47687669,kg +78d8f12d-a4ed-357d-aca1-d7089358589d,SESCO,II.1.1,Catamarca,AR-K,annual,2018,bioetanol combustion consumption by to the public,8.94917727,TJ,CH4,10.0,kg/TJ,89.4917727,kg +12ff0c51-cd9a-3e67-a5b7-b6af9c737555,SESCO,II.1.1,Catamarca,AR-K,annual,2018,bioetanol combustion consumption by to the public,8.94917727,TJ,N2O,0.6,kg/TJ,5.369506362,kg +ffe3f535-e19c-397c-a68e-2b753179870b,SESCO,II.1.1,Chaco,AR-H,annual,2018,bioetanol combustion consumption by to the public,6.46056081,TJ,CH4,10.0,kg/TJ,64.6056081,kg +7b512ab5-e037-3dab-8a63-79fe99d1219f,SESCO,II.1.1,Chaco,AR-H,annual,2018,bioetanol combustion consumption by to the public,6.46056081,TJ,N2O,0.6,kg/TJ,3.8763364859999996,kg +3745e62a-2666-3ab3-a659-4a2e80e02c35,SESCO,II.1.1,Chubut,AR-U,annual,2018,bioetanol combustion consumption by to the public,6.1981078499999995,TJ,CH4,10.0,kg/TJ,61.981078499999995,kg +6786e209-a677-3535-be60-b6125f003190,SESCO,II.1.1,Chubut,AR-U,annual,2018,bioetanol combustion consumption by to the public,6.1981078499999995,TJ,N2O,0.6,kg/TJ,3.7188647099999996,kg +aef99baf-8aea-35cb-86aa-9ba0e48bfa7d,SESCO,II.1.1,Corrientes,AR-W,annual,2018,bioetanol combustion consumption by to the public,11.770546589999999,TJ,CH4,10.0,kg/TJ,117.70546589999998,kg +cf80a874-6486-38f4-b92b-bc1fbd50fc8f,SESCO,II.1.1,Corrientes,AR-W,annual,2018,bioetanol combustion consumption by to the public,11.770546589999999,TJ,N2O,0.6,kg/TJ,7.062327953999999,kg +fbea8555-f7c9-3d5c-802e-5b5162094f63,SESCO,II.1.1,Córdoba,AR-X,annual,2018,bioetanol combustion consumption by to the public,57.98335752,TJ,CH4,10.0,kg/TJ,579.8335752,kg +3d8d488e-13e9-3e26-92a4-d8e079b8320a,SESCO,II.1.1,Córdoba,AR-X,annual,2018,bioetanol combustion consumption by to the public,57.98335752,TJ,N2O,0.6,kg/TJ,34.790014512,kg +2f35e275-6223-3ad9-a79a-d4f443869c03,SESCO,II.1.1,Entre Rios,AR-E,annual,2018,bioetanol combustion consumption by to the public,24.28627212,TJ,CH4,10.0,kg/TJ,242.8627212,kg +cd3fd3c2-8f3f-3860-a5c2-d16a73b613ae,SESCO,II.1.1,Entre Rios,AR-E,annual,2018,bioetanol combustion consumption by to the public,24.28627212,TJ,N2O,0.6,kg/TJ,14.571763271999998,kg +af6e69a8-dd97-3390-8147-10369d61d5d3,SESCO,II.1.1,Formosa,AR-P,annual,2018,bioetanol combustion consumption by to the public,12.84379173,TJ,CH4,10.0,kg/TJ,128.43791729999998,kg +b29a9719-f700-3132-8802-ebf800210061,SESCO,II.1.1,Formosa,AR-P,annual,2018,bioetanol combustion consumption by to the public,12.84379173,TJ,N2O,0.6,kg/TJ,7.706275037999999,kg +1498c22d-7492-313b-9950-921ecb495959,SESCO,II.1.1,Jujuy,AR-Y,annual,2018,bioetanol combustion consumption by to the public,3.52671165,TJ,CH4,10.0,kg/TJ,35.2671165,kg +020d4492-d274-32c0-8a6a-8678c7112895,SESCO,II.1.1,Jujuy,AR-Y,annual,2018,bioetanol combustion consumption by to the public,3.52671165,TJ,N2O,0.6,kg/TJ,2.11602699,kg +94785f0b-201e-3895-82b9-9cf5714c16d2,SESCO,II.1.1,La Pampa,AR-L,annual,2018,bioetanol combustion consumption by to the public,3.11897223,TJ,CH4,10.0,kg/TJ,31.1897223,kg +fefa3cfc-aac0-3d0c-90d3-64f75f6e45bc,SESCO,II.1.1,La Pampa,AR-L,annual,2018,bioetanol combustion consumption by to the public,3.11897223,TJ,N2O,0.6,kg/TJ,1.8713833379999998,kg +42321528-35f6-3a1a-aebb-89cebf3fb4be,SESCO,II.1.1,La Rioja,AR-F,annual,2018,bioetanol combustion consumption by to the public,2.50033311,TJ,CH4,10.0,kg/TJ,25.0033311,kg +2f9e7149-b0f2-3005-bea0-2ca4abe1cd79,SESCO,II.1.1,La Rioja,AR-F,annual,2018,bioetanol combustion consumption by to the public,2.50033311,TJ,N2O,0.6,kg/TJ,1.500199866,kg +231e72b9-9830-37a1-bf6f-6372bc318a3d,SESCO,II.1.1,Mendoza,AR-M,annual,2018,bioetanol combustion consumption by to the public,8.07745851,TJ,CH4,10.0,kg/TJ,80.7745851,kg +c916debd-5226-3c66-8689-1c9a4422dd3c,SESCO,II.1.1,Mendoza,AR-M,annual,2018,bioetanol combustion consumption by to the public,8.07745851,TJ,N2O,0.6,kg/TJ,4.846475106,kg +8f03cb4b-d959-3bdf-8444-257ab84056a1,SESCO,II.1.1,Misiones,AR-N,annual,2018,bioetanol combustion consumption by to the public,15.62766777,TJ,CH4,10.0,kg/TJ,156.2766777,kg +f7798f0f-a634-3934-94b1-769be9dee793,SESCO,II.1.1,Misiones,AR-N,annual,2018,bioetanol combustion consumption by to the public,15.62766777,TJ,N2O,0.6,kg/TJ,9.376600662,kg +21f42a80-abca-3821-8927-752df04e95e4,SESCO,II.1.1,Neuquén,AR-Q,annual,2018,bioetanol combustion consumption by to the public,7.21042641,TJ,CH4,10.0,kg/TJ,72.1042641,kg +29f04613-3367-348b-be72-dc70528c29e3,SESCO,II.1.1,Neuquén,AR-Q,annual,2018,bioetanol combustion consumption by to the public,7.21042641,TJ,N2O,0.6,kg/TJ,4.326255846,kg +24e4c8d1-4b38-39f6-9fed-3e53fc99eda7,SESCO,II.1.1,Rio Negro,AR-R,annual,2018,bioetanol combustion consumption by to the public,12.909404969999999,TJ,CH4,10.0,kg/TJ,129.0940497,kg +0cedc92f-0057-364a-85c0-fe83eefddf83,SESCO,II.1.1,Rio Negro,AR-R,annual,2018,bioetanol combustion consumption by to the public,12.909404969999999,TJ,N2O,0.6,kg/TJ,7.745642981999999,kg +ad11ab5f-bcbc-396b-99f7-b26b4b287b0d,SESCO,II.1.1,Salta,AR-A,annual,2018,bioetanol combustion consumption by to the public,2.3901966,TJ,CH4,10.0,kg/TJ,23.901965999999998,kg +008eca19-d743-3e9c-a4b4-a2515e8abd28,SESCO,II.1.1,Salta,AR-A,annual,2018,bioetanol combustion consumption by to the public,2.3901966,TJ,N2O,0.6,kg/TJ,1.4341179599999998,kg +5a2c2bd6-871c-371a-b4c9-0f3bfee603e5,SESCO,II.1.1,San Juan,AR-J,annual,2018,bioetanol combustion consumption by to the public,4.91396301,TJ,CH4,10.0,kg/TJ,49.1396301,kg +d1242bb6-c6dc-3586-8cea-78d3af4bbaff,SESCO,II.1.1,San Juan,AR-J,annual,2018,bioetanol combustion consumption by to the public,4.91396301,TJ,N2O,0.6,kg/TJ,2.948377806,kg +fce0c9a7-94ad-3e34-b108-f290187f2834,SESCO,II.1.1,San Luis,AR-D,annual,2018,bioetanol combustion consumption by to the public,11.93457969,TJ,CH4,10.0,kg/TJ,119.3457969,kg +59967695-d1e3-30b4-8562-6be005479872,SESCO,II.1.1,San Luis,AR-D,annual,2018,bioetanol combustion consumption by to the public,11.93457969,TJ,N2O,0.6,kg/TJ,7.160747814,kg +26321f09-aade-3568-ada0-e67b89a73d19,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,bioetanol combustion consumption by to the public,48.58426089,TJ,CH4,10.0,kg/TJ,485.8426089,kg +e77af01e-9d2b-386e-a76a-af391865e378,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,bioetanol combustion consumption by to the public,48.58426089,TJ,N2O,0.6,kg/TJ,29.150556534,kg +d6726989-85a3-358d-8502-7c04dec39e3d,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2018,bioetanol combustion consumption by to the public,6.48633744,TJ,CH4,10.0,kg/TJ,64.8633744,kg +66194dd2-5930-3c1c-a245-9720e48e04f7,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2018,bioetanol combustion consumption by to the public,6.48633744,TJ,N2O,0.6,kg/TJ,3.8918024639999995,kg +91367f5b-71bd-3330-b668-7887a34e890b,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2018,bioetanol combustion consumption by to the public,2.9971190699999997,TJ,CH4,10.0,kg/TJ,29.971190699999998,kg +26b36ff9-f3a8-3338-9bd0-44ad32ceeb8a,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2018,bioetanol combustion consumption by to the public,2.9971190699999997,TJ,N2O,0.6,kg/TJ,1.7982714419999997,kg +8c53fcf0-e1a9-332a-9673-ab29093ad175,SESCO,II.1.1,Tucuman,AR-T,annual,2018,bioetanol combustion consumption by to the public,0.86468877,TJ,CH4,10.0,kg/TJ,8.6468877,kg +3ef05556-0e87-364b-82d9-1fa84d1952fd,SESCO,II.1.1,Tucuman,AR-T,annual,2018,bioetanol combustion consumption by to the public,0.86468877,TJ,N2O,0.6,kg/TJ,0.518813262,kg +a89b6996-f58e-3d22-985a-59ab31d7e146,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,bioetanol combustion consumption by to the public,60.450884009999996,TJ,CH4,10.0,kg/TJ,604.5088400999999,kg +719387c3-69ca-3c5d-ae57-62eb85ff8e32,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,bioetanol combustion consumption by to the public,60.450884009999996,TJ,N2O,0.6,kg/TJ,36.270530406,kg +0a1c7563-4bc7-3cd2-bda4-ef1ec552c7f1,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,bioetanol combustion consumption by to the public,25.99221636,TJ,CH4,10.0,kg/TJ,259.9221636,kg +41bbff00-449f-3a2d-87c1-051bfbe534eb,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,bioetanol combustion consumption by to the public,25.99221636,TJ,N2O,0.6,kg/TJ,15.595329816,kg +b67dfa3b-8ad6-3ab1-a074-e15ecda9afce,SESCO,II.1.1,Catamarca,AR-K,annual,2018,bioetanol combustion consumption by to the public,2.69717283,TJ,CH4,10.0,kg/TJ,26.9717283,kg +d3faf5d7-66d9-329e-83d5-26ab0a373ae9,SESCO,II.1.1,Catamarca,AR-K,annual,2018,bioetanol combustion consumption by to the public,2.69717283,TJ,N2O,0.6,kg/TJ,1.6183036979999998,kg +2f54a633-5fcc-309a-a7d3-e5b6b305aaa6,SESCO,II.1.1,Chaco,AR-H,annual,2018,bioetanol combustion consumption by to the public,1.38490803,TJ,CH4,10.0,kg/TJ,13.8490803,kg +e2d0b319-2bbd-3421-a866-5571444194cb,SESCO,II.1.1,Chaco,AR-H,annual,2018,bioetanol combustion consumption by to the public,1.38490803,TJ,N2O,0.6,kg/TJ,0.830944818,kg +72fa999d-8631-3876-9e0b-aa362368ea6a,SESCO,II.1.1,Chubut,AR-U,annual,2018,bioetanol combustion consumption by to the public,1.60049439,TJ,CH4,10.0,kg/TJ,16.0049439,kg +446469b5-2691-34a0-8426-6c49f8ad8841,SESCO,II.1.1,Chubut,AR-U,annual,2018,bioetanol combustion consumption by to the public,1.60049439,TJ,N2O,0.6,kg/TJ,0.9602966339999999,kg +38557217-c178-3563-a812-e4bb1755ab29,SESCO,II.1.1,Corrientes,AR-W,annual,2018,bioetanol combustion consumption by to the public,3.4118884799999996,TJ,CH4,10.0,kg/TJ,34.1188848,kg +06d951ee-44cb-322c-a9cd-6730990f7eb1,SESCO,II.1.1,Corrientes,AR-W,annual,2018,bioetanol combustion consumption by to the public,3.4118884799999996,TJ,N2O,0.6,kg/TJ,2.047133088,kg +40039437-47aa-3ea4-9847-63312ec62f68,SESCO,II.1.1,Córdoba,AR-X,annual,2018,bioetanol combustion consumption by to the public,15.14025513,TJ,CH4,10.0,kg/TJ,151.4025513,kg +3ffe4b0e-6798-3c8b-a8f1-9d3c6cf5b860,SESCO,II.1.1,Córdoba,AR-X,annual,2018,bioetanol combustion consumption by to the public,15.14025513,TJ,N2O,0.6,kg/TJ,9.084153078,kg +578b042f-67d2-3dc9-9a72-0c7ef1f43843,SESCO,II.1.1,Entre Rios,AR-E,annual,2018,bioetanol combustion consumption by to the public,7.48225269,TJ,CH4,10.0,kg/TJ,74.8225269,kg +41136533-f8e2-3a92-99c8-8cfe782f0a79,SESCO,II.1.1,Entre Rios,AR-E,annual,2018,bioetanol combustion consumption by to the public,7.48225269,TJ,N2O,0.6,kg/TJ,4.489351614,kg +5d5946ef-cdbe-3de5-ad22-10db12f25e21,SESCO,II.1.1,Formosa,AR-P,annual,2018,bioetanol combustion consumption by to the public,3.19864545,TJ,CH4,10.0,kg/TJ,31.9864545,kg +53848ccc-232f-30c1-9555-270cf739e123,SESCO,II.1.1,Formosa,AR-P,annual,2018,bioetanol combustion consumption by to the public,3.19864545,TJ,N2O,0.6,kg/TJ,1.91918727,kg +a97b49ce-a8d2-3b21-bc6c-56ed4c883134,SESCO,II.1.1,Jujuy,AR-Y,annual,2018,bioetanol combustion consumption by to the public,0.8201655,TJ,CH4,10.0,kg/TJ,8.201655,kg +0eed65cb-6199-3ebc-bf95-8d402ff5d628,SESCO,II.1.1,Jujuy,AR-Y,annual,2018,bioetanol combustion consumption by to the public,0.8201655,TJ,N2O,0.6,kg/TJ,0.49209929999999996,kg +4089b326-3f0c-3510-abdb-7f87223cc3b9,SESCO,II.1.1,La Pampa,AR-L,annual,2018,bioetanol combustion consumption by to the public,1.34741475,TJ,CH4,10.0,kg/TJ,13.4741475,kg +8ab490e9-48e6-3af2-989f-f7ac4f018ae7,SESCO,II.1.1,La Pampa,AR-L,annual,2018,bioetanol combustion consumption by to the public,1.34741475,TJ,N2O,0.6,kg/TJ,0.80844885,kg +490d843d-2116-3a40-9518-62a4533aa66e,SESCO,II.1.1,La Rioja,AR-F,annual,2018,bioetanol combustion consumption by to the public,0.53427924,TJ,CH4,10.0,kg/TJ,5.3427924,kg +4939e90b-00c4-3846-9429-857f8d6dcbca,SESCO,II.1.1,La Rioja,AR-F,annual,2018,bioetanol combustion consumption by to the public,0.53427924,TJ,N2O,0.6,kg/TJ,0.32056754400000004,kg +fa72c954-1180-3478-b5ef-f71b4be950f1,SESCO,II.1.1,Mendoza,AR-M,annual,2018,bioetanol combustion consumption by to the public,3.1634955,TJ,CH4,10.0,kg/TJ,31.634954999999998,kg +6446e987-f344-3cf0-bf60-6c9215124bf8,SESCO,II.1.1,Mendoza,AR-M,annual,2018,bioetanol combustion consumption by to the public,3.1634955,TJ,N2O,0.6,kg/TJ,1.8980972999999999,kg +a92b4834-789d-3b2e-9cc5-a840737a8f25,SESCO,II.1.1,Misiones,AR-N,annual,2018,bioetanol combustion consumption by to the public,2.34801666,TJ,CH4,10.0,kg/TJ,23.480166599999997,kg +09eb2b8d-9e3b-3fc6-b229-cb4cd0428e8a,SESCO,II.1.1,Misiones,AR-N,annual,2018,bioetanol combustion consumption by to the public,2.34801666,TJ,N2O,0.6,kg/TJ,1.4088099959999998,kg +3c08e704-221c-31a9-9bdd-dd21ee4f9654,SESCO,II.1.1,Neuquén,AR-Q,annual,2018,bioetanol combustion consumption by to the public,4.07270754,TJ,CH4,10.0,kg/TJ,40.7270754,kg +83686a7b-9555-36d1-96cf-196e24569818,SESCO,II.1.1,Neuquén,AR-Q,annual,2018,bioetanol combustion consumption by to the public,4.07270754,TJ,N2O,0.6,kg/TJ,2.4436245239999996,kg +2fcb8a36-f761-3157-98ef-e521462c5996,SESCO,II.1.1,Rio Negro,AR-R,annual,2018,bioetanol combustion consumption by to the public,5.36153904,TJ,CH4,10.0,kg/TJ,53.6153904,kg +1a28d25d-65a9-3a43-97e4-521f866fc2f3,SESCO,II.1.1,Rio Negro,AR-R,annual,2018,bioetanol combustion consumption by to the public,5.36153904,TJ,N2O,0.6,kg/TJ,3.216923424,kg +2f23e500-e596-3a71-97fe-91b3a2c19f60,SESCO,II.1.1,Salta,AR-A,annual,2018,bioetanol combustion consumption by to the public,0.31634955,TJ,CH4,10.0,kg/TJ,3.1634955,kg +db6e1108-8c14-30fe-baa1-6dc775cb73df,SESCO,II.1.1,Salta,AR-A,annual,2018,bioetanol combustion consumption by to the public,0.31634955,TJ,N2O,0.6,kg/TJ,0.18980972999999998,kg +142533cb-d2f6-31d3-85f6-daaab99ab419,SESCO,II.1.1,San Juan,AR-J,annual,2018,bioetanol combustion consumption by to the public,1.4036546699999999,TJ,CH4,10.0,kg/TJ,14.036546699999999,kg +ff72fed4-7f3a-38e5-a7df-8794015585e5,SESCO,II.1.1,San Juan,AR-J,annual,2018,bioetanol combustion consumption by to the public,1.4036546699999999,TJ,N2O,0.6,kg/TJ,0.8421928019999999,kg +a2b2ea4b-e414-3234-8264-74e29f657395,SESCO,II.1.1,San Luis,AR-D,annual,2018,bioetanol combustion consumption by to the public,2.9572824599999996,TJ,CH4,10.0,kg/TJ,29.572824599999997,kg +0409f36a-ac90-361f-bfae-6657a1ece87f,SESCO,II.1.1,San Luis,AR-D,annual,2018,bioetanol combustion consumption by to the public,2.9572824599999996,TJ,N2O,0.6,kg/TJ,1.7743694759999997,kg +63720eb0-29f2-3882-87fc-1b375fa764bf,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,bioetanol combustion consumption by to the public,14.235729749999999,TJ,CH4,10.0,kg/TJ,142.3572975,kg +34f330b7-b142-39dd-b652-9fa2c12a62c8,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,bioetanol combustion consumption by to the public,14.235729749999999,TJ,N2O,0.6,kg/TJ,8.54143785,kg +2522bc5e-f32a-3a4a-b62e-c51aabd6b8c3,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2018,bioetanol combustion consumption by to the public,2.2355368199999996,TJ,CH4,10.0,kg/TJ,22.355368199999997,kg +1eb62e0d-af47-3a51-a57b-03621f621da7,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2018,bioetanol combustion consumption by to the public,2.2355368199999996,TJ,N2O,0.6,kg/TJ,1.3413220919999997,kg +df17fc25-b9c4-36a9-b757-3e145ed0572b,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2018,bioetanol combustion consumption by to the public,1.05215517,TJ,CH4,10.0,kg/TJ,10.5215517,kg +c2fd1112-507e-3418-b288-24e2ef996cfc,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2018,bioetanol combustion consumption by to the public,1.05215517,TJ,N2O,0.6,kg/TJ,0.631293102,kg +24080f04-55a4-39e6-b7a3-8161d792d478,SESCO,II.1.1,Tucuman,AR-T,annual,2018,bioetanol combustion consumption by to the public,0.48272598,TJ,CH4,10.0,kg/TJ,4.8272598,kg +26acbaa7-c2f5-3afe-8fd4-278683478cca,SESCO,II.1.1,Tucuman,AR-T,annual,2018,bioetanol combustion consumption by to the public,0.48272598,TJ,N2O,0.6,kg/TJ,0.289635588,kg +6bec8ec0-6b7e-3abb-89c9-4367e79ab751,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,bioetanol combustion consumption by freight transport,0.17340642,TJ,CH4,10.0,kg/TJ,1.7340642000000002,kg +e38a7459-630e-387a-acc8-69d70f46214e,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,bioetanol combustion consumption by freight transport,0.17340642,TJ,N2O,0.6,kg/TJ,0.104043852,kg +a2382a37-fc73-3c15-b756-6e8e303679e2,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,bioetanol combustion consumption by freight transport,0.0702999,TJ,CH4,10.0,kg/TJ,0.7029989999999999,kg +37219cb2-2af4-3af7-8fdf-2c7729be688b,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,bioetanol combustion consumption by freight transport,0.0702999,TJ,N2O,0.6,kg/TJ,0.04217994,kg +d982a95b-62cc-3466-93d3-2ec432b3f6c7,SESCO,II.1.1,Córdoba,AR-X,annual,2018,bioetanol combustion consumption by freight transport,0.03280662,TJ,CH4,10.0,kg/TJ,0.32806620000000003,kg +79d82f73-840d-35c5-bce9-72c9919987a7,SESCO,II.1.1,Córdoba,AR-X,annual,2018,bioetanol combustion consumption by freight transport,0.03280662,TJ,N2O,0.6,kg/TJ,0.019683972,kg +e6ac2cc4-217e-3509-b48d-f5f8f1535de9,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,bioetanol combustion consumption by freight transport,0.00937332,TJ,CH4,10.0,kg/TJ,0.09373319999999999,kg +d73f31c2-f003-302d-8396-2f2a4e8b794d,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,bioetanol combustion consumption by freight transport,0.00937332,TJ,N2O,0.6,kg/TJ,0.0056239919999999995,kg +5fa59e99-3445-3e6c-8153-1f0a95ec3fbc,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,bioetanol combustion consumption by freight transport,0.14528646,TJ,CH4,10.0,kg/TJ,1.4528646,kg +6e5a5794-cc65-3bd7-891f-e1d6e6a755e0,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,bioetanol combustion consumption by freight transport,0.14528646,TJ,N2O,0.6,kg/TJ,0.087171876,kg +f73f88bd-1764-3651-86c0-dea2a1312eb9,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,bioetanol combustion consumption by freight transport,0.07264323,TJ,CH4,10.0,kg/TJ,0.7264323,kg +ef79a026-c82e-3378-961f-2abbadf12c54,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,bioetanol combustion consumption by freight transport,0.07264323,TJ,N2O,0.6,kg/TJ,0.043585938,kg +7f5a10bc-ad3e-359a-90f7-730389b49036,SESCO,II.1.1,Córdoba,AR-X,annual,2018,bioetanol combustion consumption by freight transport,0.03514995,TJ,CH4,10.0,kg/TJ,0.35149949999999996,kg +29308c39-ce0f-3cbd-af67-f9d7559605ac,SESCO,II.1.1,Córdoba,AR-X,annual,2018,bioetanol combustion consumption by freight transport,0.03514995,TJ,N2O,0.6,kg/TJ,0.02108997,kg +d64dedef-3b1f-3afc-a340-4c2efd94c710,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,bioetanol combustion consumption by freight transport,0.0234333,TJ,CH4,10.0,kg/TJ,0.234333,kg +fd4cda31-0db8-340d-9bba-3c102a1a2fa8,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,bioetanol combustion consumption by freight transport,0.0234333,TJ,N2O,0.6,kg/TJ,0.01405998,kg +f8ffa291-8e2e-38c5-9f42-877fe036acab,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,bioetanol combustion consumption by public passenger transport,0.14528646,TJ,CH4,10.0,kg/TJ,1.4528646,kg +d18602e8-4573-307f-afc6-472d65b2292c,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,bioetanol combustion consumption by public passenger transport,0.14528646,TJ,N2O,0.6,kg/TJ,0.087171876,kg +0f45fe3f-b1e8-31c2-ab7c-53b07906e758,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,bioetanol combustion consumption by public passenger transport,0.01405998,TJ,CH4,10.0,kg/TJ,0.1405998,kg +0a09637b-ea40-3d0f-bd6b-39775a7b6018,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,bioetanol combustion consumption by public passenger transport,0.01405998,TJ,N2O,0.6,kg/TJ,0.008435988,kg +a3f8138d-cf2e-3c9b-9ef5-5fe285f9a5bf,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,bioetanol combustion consumption by to the public,24.301301769953998,TJ,CH4,10.0,kg/TJ,243.01301769953997,kg +555e0007-9a13-352d-9e58-398ba10080a1,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,bioetanol combustion consumption by to the public,24.301301769953998,TJ,N2O,0.6,kg/TJ,14.580781061972399,kg +6cdb070f-a18d-3660-ae97-7d54f12db0bd,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,bioetanol combustion consumption by to the public,2.181106419426,TJ,CH4,10.0,kg/TJ,21.81106419426,kg +85c155fb-91ba-3848-a2d8-5266261f6028,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,bioetanol combustion consumption by to the public,2.181106419426,TJ,N2O,0.6,kg/TJ,1.3086638516556,kg +7f029ea9-5d7d-3649-ba75-9e2b995eb23d,SESCO,II.1.1,Catamarca,AR-K,annual,2018,bioetanol combustion consumption by to the public,2.5045009567379997,TJ,CH4,10.0,kg/TJ,25.045009567379996,kg +6caffebf-feb0-34b0-9120-21c2c9078f12,SESCO,II.1.1,Catamarca,AR-K,annual,2018,bioetanol combustion consumption by to the public,2.5045009567379997,TJ,N2O,0.6,kg/TJ,1.5027005740427997,kg +30110ecf-f33d-3874-87bc-a70ebb8f120b,SESCO,II.1.1,Chaco,AR-H,annual,2018,bioetanol combustion consumption by to the public,2.7695810240009995,TJ,CH4,10.0,kg/TJ,27.695810240009994,kg +08a77787-0b19-3a58-ae8f-96f4e6a2595a,SESCO,II.1.1,Chaco,AR-H,annual,2018,bioetanol combustion consumption by to the public,2.7695810240009995,TJ,N2O,0.6,kg/TJ,1.6617486144005997,kg +0e0fe406-79fb-3afc-b491-5664e1b9e1aa,SESCO,II.1.1,Corrientes,AR-W,annual,2018,bioetanol combustion consumption by to the public,2.9573314355969997,TJ,CH4,10.0,kg/TJ,29.57331435597,kg +94162056-3ff0-3b9b-a226-00087da93cf1,SESCO,II.1.1,Corrientes,AR-W,annual,2018,bioetanol combustion consumption by to the public,2.9573314355969997,TJ,N2O,0.6,kg/TJ,1.7743988613581998,kg +c1078c2d-3bdf-33bc-8404-ac0d637e10b0,SESCO,II.1.1,Córdoba,AR-X,annual,2018,bioetanol combustion consumption by to the public,11.948979687182998,TJ,CH4,10.0,kg/TJ,119.48979687182998,kg +dac5cace-e1e4-33ef-b758-b581463968e2,SESCO,II.1.1,Córdoba,AR-X,annual,2018,bioetanol combustion consumption by to the public,11.948979687182998,TJ,N2O,0.6,kg/TJ,7.1693878123097985,kg +b0ff00b0-e761-32a4-95d0-c60f84cff28f,SESCO,II.1.1,Entre Rios,AR-E,annual,2018,bioetanol combustion consumption by to the public,3.728636864766,TJ,CH4,10.0,kg/TJ,37.28636864766,kg +d477b8fd-3750-389e-b1c1-3e77a413ef70,SESCO,II.1.1,Entre Rios,AR-E,annual,2018,bioetanol combustion consumption by to the public,3.728636864766,TJ,N2O,0.6,kg/TJ,2.2371821188595997,kg +b8f18412-ae50-3387-bd2f-1af36996fe2a,SESCO,II.1.1,Jujuy,AR-Y,annual,2018,bioetanol combustion consumption by to the public,0.9294366182309999,TJ,CH4,10.0,kg/TJ,9.294366182309998,kg +5afeaab9-9f45-3f06-a3eb-f9f7f08ac4ce,SESCO,II.1.1,Jujuy,AR-Y,annual,2018,bioetanol combustion consumption by to the public,0.9294366182309999,TJ,N2O,0.6,kg/TJ,0.5576619709385999,kg +daa6faee-727e-3ab8-a7b5-de3284b830f4,SESCO,II.1.1,La Rioja,AR-F,annual,2018,bioetanol combustion consumption by to the public,0.5337590207399999,TJ,CH4,10.0,kg/TJ,5.337590207399999,kg +baf36bb7-2c40-30ab-b8c8-195707f72771,SESCO,II.1.1,La Rioja,AR-F,annual,2018,bioetanol combustion consumption by to the public,0.5337590207399999,TJ,N2O,0.6,kg/TJ,0.32025541244399996,kg +3b3fd833-acf7-3c9c-a66c-4aa7522f7d4b,SESCO,II.1.1,Mendoza,AR-M,annual,2018,bioetanol combustion consumption by to the public,2.881464252183,TJ,CH4,10.0,kg/TJ,28.814642521830002,kg +eb256ece-1308-3ef0-a4c7-4513c07dcdf3,SESCO,II.1.1,Mendoza,AR-M,annual,2018,bioetanol combustion consumption by to the public,2.881464252183,TJ,N2O,0.6,kg/TJ,1.7288785513098,kg +59cdc096-5e20-38e0-975d-a4c8471aabf0,SESCO,II.1.1,Misiones,AR-N,annual,2018,bioetanol combustion consumption by to the public,3.75790927446,TJ,CH4,10.0,kg/TJ,37.5790927446,kg +3ece69d6-3dee-3663-9e5b-ad0eac6c2efc,SESCO,II.1.1,Misiones,AR-N,annual,2018,bioetanol combustion consumption by to the public,3.75790927446,TJ,N2O,0.6,kg/TJ,2.254745564676,kg +afc68073-129a-36a2-8fe7-39a672b7a0ff,SESCO,II.1.1,San Juan,AR-J,annual,2018,bioetanol combustion consumption by to the public,3.3957016936919997,TJ,CH4,10.0,kg/TJ,33.95701693692,kg +f8f5fca4-dcf9-3c50-a558-5a6613550f16,SESCO,II.1.1,San Juan,AR-J,annual,2018,bioetanol combustion consumption by to the public,3.3957016936919997,TJ,N2O,0.6,kg/TJ,2.0374210162151996,kg +7419a174-dfa1-31b8-a440-1775c6bda240,SESCO,II.1.1,San Luis,AR-D,annual,2018,bioetanol combustion consumption by to the public,2.628141374528999,TJ,CH4,10.0,kg/TJ,26.281413745289992,kg +d6ffee56-fbef-33a8-a392-67342680ce64,SESCO,II.1.1,San Luis,AR-D,annual,2018,bioetanol combustion consumption by to the public,2.628141374528999,TJ,N2O,0.6,kg/TJ,1.5768848247173994,kg +27737ae4-22a2-3662-aa5e-8fdead789713,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,bioetanol combustion consumption by to the public,12.078810714167998,TJ,CH4,10.0,kg/TJ,120.78810714167999,kg +7c54cb4f-4786-334f-8168-9b2e7e50a044,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,bioetanol combustion consumption by to the public,12.078810714167998,TJ,N2O,0.6,kg/TJ,7.247286428500798,kg +4d1ddcad-16f9-39a7-842a-04c00f407c91,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2018,bioetanol combustion consumption by to the public,2.3345551664819997,TJ,CH4,10.0,kg/TJ,23.345551664819997,kg +b7a56710-7690-35b0-a5a3-1866fea18e2d,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2018,bioetanol combustion consumption by to the public,2.3345551664819997,TJ,N2O,0.6,kg/TJ,1.4007330998891998,kg +9814370d-a830-374a-9f93-cef3fbad66b0,SESCO,II.1.1,Tucuman,AR-T,annual,2018,bioetanol combustion consumption by to the public,2.483558616528,TJ,CH4,10.0,kg/TJ,24.835586165280002,kg +841d9f04-7068-3f6d-8548-42e704ac5c54,SESCO,II.1.1,Tucuman,AR-T,annual,2018,bioetanol combustion consumption by to the public,2.483558616528,TJ,N2O,0.6,kg/TJ,1.4901351699168,kg +c1478e8a-d7ab-3f30-a5ea-9378f3db1319,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,bioetanol combustion consumption by to the public,4.999357001529,TJ,CH4,10.0,kg/TJ,49.99357001529,kg +681bb59f-053f-3de7-b892-a0d02350d529,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,bioetanol combustion consumption by to the public,4.999357001529,TJ,N2O,0.6,kg/TJ,2.9996142009174,kg +1b9e9749-5c3a-302a-a5d7-4dbc25e03cc6,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,bioetanol combustion consumption by to the public,0.8328396346379999,TJ,CH4,10.0,kg/TJ,8.32839634638,kg +c39bc235-6ae1-3f05-a06e-639dd77a8500,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,bioetanol combustion consumption by to the public,0.8328396346379999,TJ,N2O,0.6,kg/TJ,0.4997037807827999,kg +673b8af7-f428-3cf9-a033-5d034e832b7f,SESCO,II.1.1,Catamarca,AR-K,annual,2018,bioetanol combustion consumption by to the public,0.337475841615,TJ,CH4,10.0,kg/TJ,3.3747584161499997,kg +94aba1ba-4be1-346b-8541-b06a2c942843,SESCO,II.1.1,Catamarca,AR-K,annual,2018,bioetanol combustion consumption by to the public,0.337475841615,TJ,N2O,0.6,kg/TJ,0.202485504969,kg +6920e21c-0b2d-3d7d-a793-0ad4169f22dd,SESCO,II.1.1,Chaco,AR-H,annual,2018,bioetanol combustion consumption by to the public,0.33800988652200004,TJ,CH4,10.0,kg/TJ,3.3800988652200004,kg +9cac5d45-9e3c-3682-b6b6-5555008d84a6,SESCO,II.1.1,Chaco,AR-H,annual,2018,bioetanol combustion consumption by to the public,0.33800988652200004,TJ,N2O,0.6,kg/TJ,0.2028059319132,kg +708dc0e7-4d5f-3499-89a9-ed2221d69333,SESCO,II.1.1,Corrientes,AR-W,annual,2018,bioetanol combustion consumption by to the public,0.94749970887,TJ,CH4,10.0,kg/TJ,9.4749970887,kg +1a90cc18-f0b0-3250-90b9-06f8dd5ce330,SESCO,II.1.1,Corrientes,AR-W,annual,2018,bioetanol combustion consumption by to the public,0.94749970887,TJ,N2O,0.6,kg/TJ,0.5684998253219999,kg +369ea48f-3640-3d46-a845-005c2c938369,SESCO,II.1.1,Córdoba,AR-X,annual,2018,bioetanol combustion consumption by to the public,2.7814385081340003,TJ,CH4,10.0,kg/TJ,27.814385081340003,kg +6c98092f-e781-3ae7-987f-0fb7f45c561c,SESCO,II.1.1,Córdoba,AR-X,annual,2018,bioetanol combustion consumption by to the public,2.7814385081340003,TJ,N2O,0.6,kg/TJ,1.6688631048804001,kg +a86912d6-e2c4-3aaa-ac78-1806647d271a,SESCO,II.1.1,Entre Rios,AR-E,annual,2018,bioetanol combustion consumption by to the public,0.787946352831,TJ,CH4,10.0,kg/TJ,7.87946352831,kg +7377d7e6-7d5d-3c52-ba9c-9c3d72913738,SESCO,II.1.1,Entre Rios,AR-E,annual,2018,bioetanol combustion consumption by to the public,0.787946352831,TJ,N2O,0.6,kg/TJ,0.4727678116986,kg +48a81e83-6208-387b-9335-370f457e2f22,SESCO,II.1.1,Jujuy,AR-Y,annual,2018,bioetanol combustion consumption by to the public,0.011585189187,TJ,CH4,10.0,kg/TJ,0.11585189187,kg +3b45a525-b944-3985-89cf-80ddba678262,SESCO,II.1.1,Jujuy,AR-Y,annual,2018,bioetanol combustion consumption by to the public,0.011585189187,TJ,N2O,0.6,kg/TJ,0.0069511135121999995,kg +de1f1e77-242a-34d5-8470-cf50280bf429,SESCO,II.1.1,La Rioja,AR-F,annual,2018,bioetanol combustion consumption by to the public,0.185349904344,TJ,CH4,10.0,kg/TJ,1.85349904344,kg +9c0ad537-6b6a-3130-862d-404d9dde042a,SESCO,II.1.1,La Rioja,AR-F,annual,2018,bioetanol combustion consumption by to the public,0.185349904344,TJ,N2O,0.6,kg/TJ,0.1112099426064,kg +cc361975-e955-39ba-bd5e-d0a9d6334341,SESCO,II.1.1,Mendoza,AR-M,annual,2018,bioetanol combustion consumption by to the public,0.584773549173,TJ,CH4,10.0,kg/TJ,5.847735491729999,kg +1aec6c5a-fb77-3b74-8cf5-ff2446acdcf3,SESCO,II.1.1,Mendoza,AR-M,annual,2018,bioetanol combustion consumption by to the public,0.584773549173,TJ,N2O,0.6,kg/TJ,0.35086412950379997,kg +4d06af5d-7565-30dd-b534-73cea803c065,SESCO,II.1.1,Misiones,AR-N,annual,2018,bioetanol combustion consumption by to the public,0.503766037071,TJ,CH4,10.0,kg/TJ,5.03766037071,kg +6f01e0de-4d32-3d64-b804-3ed920b7add4,SESCO,II.1.1,Misiones,AR-N,annual,2018,bioetanol combustion consumption by to the public,0.503766037071,TJ,N2O,0.6,kg/TJ,0.3022596222426,kg +5f013baf-15ca-3505-aa0b-c280dd945d17,SESCO,II.1.1,San Juan,AR-J,annual,2018,bioetanol combustion consumption by to the public,0.8090869387589998,TJ,CH4,10.0,kg/TJ,8.090869387589999,kg +bce5919f-e4a8-3f87-99e0-4696b1aaa725,SESCO,II.1.1,San Juan,AR-J,annual,2018,bioetanol combustion consumption by to the public,0.8090869387589998,TJ,N2O,0.6,kg/TJ,0.48545216325539986,kg +457fc922-442f-3687-88c5-b29de8340ed7,SESCO,II.1.1,San Luis,AR-D,annual,2018,bioetanol combustion consumption by to the public,0.735150190599,TJ,CH4,10.0,kg/TJ,7.35150190599,kg +025c6cf8-1d45-3fed-a333-cb299988f7c6,SESCO,II.1.1,San Luis,AR-D,annual,2018,bioetanol combustion consumption by to the public,0.735150190599,TJ,N2O,0.6,kg/TJ,0.4410901143594,kg +ad7ebe54-2198-3ae6-b2d2-cfd9ea0b7eed,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,bioetanol combustion consumption by to the public,2.9112184505250003,TJ,CH4,10.0,kg/TJ,29.112184505250003,kg +ff2c6722-d5df-3092-b491-a590c1f5745b,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,bioetanol combustion consumption by to the public,2.9112184505250003,TJ,N2O,0.6,kg/TJ,1.746731070315,kg +fc5bf17a-063b-3960-be31-5d601c8a0de4,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2018,bioetanol combustion consumption by to the public,0.353544524091,TJ,CH4,10.0,kg/TJ,3.53544524091,kg +ef64a20d-fc5c-3db1-b5c6-eae1219f4f7d,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2018,bioetanol combustion consumption by to the public,0.353544524091,TJ,N2O,0.6,kg/TJ,0.2121267144546,kg +908184cd-f6ec-3a5e-811b-67db7cb5d408,SESCO,II.1.1,Tucuman,AR-T,annual,2018,bioetanol combustion consumption by to the public,0.41825675370599996,TJ,CH4,10.0,kg/TJ,4.18256753706,kg +bb00d44c-d929-368e-a4ce-9c882d8612e9,SESCO,II.1.1,Tucuman,AR-T,annual,2018,bioetanol combustion consumption by to the public,0.41825675370599996,TJ,N2O,0.6,kg/TJ,0.25095405222359995,kg +5bf72a10-b2ce-35f2-aef0-0b2c6568bbf2,SESCO,II.5.1,Buenos Aires,AR-B,annual,2018,bioetanol combustion consumption by agriculture machines,0.9607652999999999,TJ,CH4,10.0,kg/TJ,9.607652999999999,kg +3250116d-471c-33e3-849f-244295312962,SESCO,II.5.1,Buenos Aires,AR-B,annual,2018,bioetanol combustion consumption by agriculture machines,0.9607652999999999,TJ,N2O,0.6,kg/TJ,0.57645918,kg +95dc751f-3e30-3dc9-811c-d98a56a20693,SESCO,II.5.1,Córdoba,AR-X,annual,2018,bioetanol combustion consumption by agriculture machines,0.38899278000000004,TJ,CH4,10.0,kg/TJ,3.8899278000000006,kg +774764ff-2392-36eb-ae01-7a97ed944899,SESCO,II.5.1,Córdoba,AR-X,annual,2018,bioetanol combustion consumption by agriculture machines,0.38899278000000004,TJ,N2O,0.6,kg/TJ,0.233395668,kg +a4f87707-c3c3-3c63-801e-cf6e51eb8871,SESCO,II.5.1,Santa Fe,AR-S,annual,2018,bioetanol combustion consumption by agriculture machines,2.14414695,TJ,CH4,10.0,kg/TJ,21.4414695,kg +a3524caa-6121-3896-be23-7a768db6d56a,SESCO,II.5.1,Santa Fe,AR-S,annual,2018,bioetanol combustion consumption by agriculture machines,2.14414695,TJ,N2O,0.6,kg/TJ,1.28648817,kg +4ae5000f-24fc-30c2-809e-6f2b5c6895e1,SESCO,II.5.1,Tucuman,AR-T,annual,2018,bioetanol combustion consumption by agriculture machines,0.9209286899999999,TJ,CH4,10.0,kg/TJ,9.209286899999999,kg +a566f859-2015-3455-bfc5-2f08bda1c699,SESCO,II.5.1,Tucuman,AR-T,annual,2018,bioetanol combustion consumption by agriculture machines,0.9209286899999999,TJ,N2O,0.6,kg/TJ,0.5525572139999999,kg +11a2a334-fd4a-3c8a-9f93-2d9451396b76,SESCO,II.5.1,Buenos Aires,AR-B,annual,2018,bioetanol combustion consumption by agriculture machines,0.17809308,TJ,CH4,10.0,kg/TJ,1.7809308,kg +d73626e2-a7e0-3dde-b12e-2a951cda1d98,SESCO,II.5.1,Buenos Aires,AR-B,annual,2018,bioetanol combustion consumption by agriculture machines,0.17809308,TJ,N2O,0.6,kg/TJ,0.10685584799999999,kg +567cdcaf-f11f-3b9f-bb89-dc825acef23e,SESCO,II.5.1,Córdoba,AR-X,annual,2018,bioetanol combustion consumption by agriculture machines,0.17106308999999997,TJ,CH4,10.0,kg/TJ,1.7106308999999997,kg +06f7f271-d29a-34ab-8e3d-c38f00f119cc,SESCO,II.5.1,Córdoba,AR-X,annual,2018,bioetanol combustion consumption by agriculture machines,0.17106308999999997,TJ,N2O,0.6,kg/TJ,0.10263785399999999,kg +7b0a58db-93fe-3165-8acd-72616edeae45,SESCO,II.5.1,Santa Fe,AR-S,annual,2018,bioetanol combustion consumption by agriculture machines,0.6842523599999999,TJ,CH4,10.0,kg/TJ,6.842523599999999,kg +71f794a4-1835-3eba-8c15-920f5d2fdf4a,SESCO,II.5.1,Santa Fe,AR-S,annual,2018,bioetanol combustion consumption by agriculture machines,0.6842523599999999,TJ,N2O,0.6,kg/TJ,0.41055141599999995,kg +ad2d3566-7bc7-3f11-b4d2-64c0db938268,SESCO,II.5.1,Tucuman,AR-T,annual,2018,bioetanol combustion consumption by agriculture machines,0.17809308,TJ,CH4,10.0,kg/TJ,1.7809308,kg +c893cc3a-1119-38cd-99fe-5edd1bc7aada,SESCO,II.5.1,Tucuman,AR-T,annual,2018,bioetanol combustion consumption by agriculture machines,0.17809308,TJ,N2O,0.6,kg/TJ,0.10685584799999999,kg +189fe504-c20d-3636-95fb-966d221e4f6e,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,bioetanol combustion consumption by to the public,628.4529860399999,TJ,CH4,10.0,kg/TJ,6284.529860399999,kg +60d9a197-954f-391b-b4d4-caad085252b1,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,bioetanol combustion consumption by to the public,628.4529860399999,TJ,N2O,0.6,kg/TJ,377.07179162399996,kg +71c9ea86-3a2f-3e00-800c-4a9a717ba34f,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,bioetanol combustion consumption by to the public,191.79218717999998,TJ,CH4,10.0,kg/TJ,1917.9218717999997,kg +afd9f387-603c-3a3f-8212-3524cf8b71d7,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,bioetanol combustion consumption by to the public,191.79218717999998,TJ,N2O,0.6,kg/TJ,115.075312308,kg +c4e5624a-8160-3394-a331-37e587867e61,SESCO,II.1.1,Catamarca,AR-K,annual,2018,bioetanol combustion consumption by to the public,25.624313549999997,TJ,CH4,10.0,kg/TJ,256.2431355,kg +4ba6924e-b679-32f8-bd60-cca1a6e826b0,SESCO,II.1.1,Catamarca,AR-K,annual,2018,bioetanol combustion consumption by to the public,25.624313549999997,TJ,N2O,0.6,kg/TJ,15.374588129999998,kg +b1b48dec-e654-38cc-a64a-3935a71844b6,SESCO,II.1.1,Chaco,AR-H,annual,2018,bioetanol combustion consumption by to the public,22.52174463,TJ,CH4,10.0,kg/TJ,225.2174463,kg +1cfb0691-6b0a-3650-9071-65dcf699142c,SESCO,II.1.1,Chaco,AR-H,annual,2018,bioetanol combustion consumption by to the public,22.52174463,TJ,N2O,0.6,kg/TJ,13.513046778,kg +2a97bf43-b44c-3fc7-ac78-853e11cc05bf,SESCO,II.1.1,Chubut,AR-U,annual,2018,bioetanol combustion consumption by to the public,75.07794987,TJ,CH4,10.0,kg/TJ,750.7794987,kg +d5bcaaef-8d93-3ac8-b981-c803738bba93,SESCO,II.1.1,Chubut,AR-U,annual,2018,bioetanol combustion consumption by to the public,75.07794987,TJ,N2O,0.6,kg/TJ,45.046769921999996,kg +a95cd8b0-613f-30e2-a9c9-7cea0b7759ae,SESCO,II.1.1,Corrientes,AR-W,annual,2018,bioetanol combustion consumption by to the public,33.88689513,TJ,CH4,10.0,kg/TJ,338.8689513,kg +0024b267-ab16-3d48-8bf8-92ddaaaf2d12,SESCO,II.1.1,Corrientes,AR-W,annual,2018,bioetanol combustion consumption by to the public,33.88689513,TJ,N2O,0.6,kg/TJ,20.332137078,kg +6b9a6540-cf6f-3f39-898a-e8de617bb39f,SESCO,II.1.1,Córdoba,AR-X,annual,2018,bioetanol combustion consumption by to the public,175.71928670999998,TJ,CH4,10.0,kg/TJ,1757.1928670999998,kg +8dd2b4c9-67b5-3d7a-920c-9046030c763b,SESCO,II.1.1,Córdoba,AR-X,annual,2018,bioetanol combustion consumption by to the public,175.71928670999998,TJ,N2O,0.6,kg/TJ,105.43157202599998,kg +1f56d719-8a48-36a5-8de8-2dbc23038a44,SESCO,II.1.1,Entre Rios,AR-E,annual,2018,bioetanol combustion consumption by to the public,72.31047714,TJ,CH4,10.0,kg/TJ,723.1047714,kg +a6fe7915-faee-3cbb-94a0-992957862530,SESCO,II.1.1,Entre Rios,AR-E,annual,2018,bioetanol combustion consumption by to the public,72.31047714,TJ,N2O,0.6,kg/TJ,43.386286284,kg +04fe6b3e-31d8-3db2-9ed4-dff891fd460c,SESCO,II.1.1,Formosa,AR-P,annual,2018,bioetanol combustion consumption by to the public,37.23082704,TJ,CH4,10.0,kg/TJ,372.3082704,kg +a20f9633-2296-3c51-a313-05ca13a5d758,SESCO,II.1.1,Formosa,AR-P,annual,2018,bioetanol combustion consumption by to the public,37.23082704,TJ,N2O,0.6,kg/TJ,22.338496224,kg +938c1721-0e62-3ea5-b256-5c89782fd850,SESCO,II.1.1,Jujuy,AR-Y,annual,2018,bioetanol combustion consumption by to the public,13.64052393,TJ,CH4,10.0,kg/TJ,136.4052393,kg +f937c4ef-5a21-3b92-a139-c38568e49a54,SESCO,II.1.1,Jujuy,AR-Y,annual,2018,bioetanol combustion consumption by to the public,13.64052393,TJ,N2O,0.6,kg/TJ,8.184314358,kg +7bd0021a-247c-32e9-8b06-90251e5c6793,SESCO,II.1.1,La Pampa,AR-L,annual,2018,bioetanol combustion consumption by to the public,11.37921048,TJ,CH4,10.0,kg/TJ,113.79210479999999,kg +3042d3a4-8473-34ed-a406-2b59db672218,SESCO,II.1.1,La Pampa,AR-L,annual,2018,bioetanol combustion consumption by to the public,11.37921048,TJ,N2O,0.6,kg/TJ,6.827526288,kg +1db1e772-218d-323a-95c1-ff1a74f1e9ca,SESCO,II.1.1,La Rioja,AR-F,annual,2018,bioetanol combustion consumption by to the public,8.112608459999999,TJ,CH4,10.0,kg/TJ,81.12608459999998,kg +bfae81e8-bc31-35b5-ab3a-839b3d3c2425,SESCO,II.1.1,La Rioja,AR-F,annual,2018,bioetanol combustion consumption by to the public,8.112608459999999,TJ,N2O,0.6,kg/TJ,4.867565075999999,kg +13a21011-f1cb-389a-826e-3c5ce8f3f476,SESCO,II.1.1,Mendoza,AR-M,annual,2018,bioetanol combustion consumption by to the public,36.62859123,TJ,CH4,10.0,kg/TJ,366.28591229999995,kg +5037a67c-c8e0-3216-a5e3-c17b44c7f158,SESCO,II.1.1,Mendoza,AR-M,annual,2018,bioetanol combustion consumption by to the public,36.62859123,TJ,N2O,0.6,kg/TJ,21.977154738,kg +2e51360f-c41c-3f58-a636-552fe2de459e,SESCO,II.1.1,Misiones,AR-N,annual,2018,bioetanol combustion consumption by to the public,50.287861799999995,TJ,CH4,10.0,kg/TJ,502.87861799999996,kg +cdf0c3b4-762f-3d9d-aa13-60d28d6e1b3b,SESCO,II.1.1,Misiones,AR-N,annual,2018,bioetanol combustion consumption by to the public,50.287861799999995,TJ,N2O,0.6,kg/TJ,30.172717079999995,kg +c635bd88-ec69-367f-bc93-99dd65f0991b,SESCO,II.1.1,Neuquén,AR-Q,annual,2018,bioetanol combustion consumption by to the public,23.381746739999997,TJ,CH4,10.0,kg/TJ,233.81746739999997,kg +ad67ef9b-2652-3ca2-9ca9-0f0f1f1fc669,SESCO,II.1.1,Neuquén,AR-Q,annual,2018,bioetanol combustion consumption by to the public,23.381746739999997,TJ,N2O,0.6,kg/TJ,14.029048043999998,kg +edf2dac1-8b4a-385b-be9b-2991ef6feeab,SESCO,II.1.1,Rio Negro,AR-R,annual,2018,bioetanol combustion consumption by to the public,37.80025623,TJ,CH4,10.0,kg/TJ,378.0025623,kg +0a368b35-020c-3576-b3b1-22b7a592251e,SESCO,II.1.1,Rio Negro,AR-R,annual,2018,bioetanol combustion consumption by to the public,37.80025623,TJ,N2O,0.6,kg/TJ,22.680153738,kg +6ec0a237-9fd9-3731-9da0-59f9ae0cdede,SESCO,II.1.1,Salta,AR-A,annual,2018,bioetanol combustion consumption by to the public,9.19522692,TJ,CH4,10.0,kg/TJ,91.95226919999999,kg +893caddf-01ae-3789-beef-44740c04efe6,SESCO,II.1.1,Salta,AR-A,annual,2018,bioetanol combustion consumption by to the public,9.19522692,TJ,N2O,0.6,kg/TJ,5.517136152,kg +539a8da3-5436-3f1d-a815-da34384a246d,SESCO,II.1.1,San Juan,AR-J,annual,2018,bioetanol combustion consumption by to the public,16.92352926,TJ,CH4,10.0,kg/TJ,169.23529259999998,kg +a14cedb7-9c55-33c6-94c4-483f2fbb24e8,SESCO,II.1.1,San Juan,AR-J,annual,2018,bioetanol combustion consumption by to the public,16.92352926,TJ,N2O,0.6,kg/TJ,10.154117556,kg +9f131f3e-72d8-38c5-b010-4e6badcc52e0,SESCO,II.1.1,San Luis,AR-D,annual,2018,bioetanol combustion consumption by to the public,35.33975973,TJ,CH4,10.0,kg/TJ,353.3975973,kg +8e5e240e-233a-327c-ba6f-5f1ffeea3844,SESCO,II.1.1,San Luis,AR-D,annual,2018,bioetanol combustion consumption by to the public,35.33975973,TJ,N2O,0.6,kg/TJ,21.203855838,kg +09d25352-3e5d-37f9-bd93-d7e287d86cea,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2018,bioetanol combustion consumption by to the public,39.00707118,TJ,CH4,10.0,kg/TJ,390.07071179999997,kg +19e6c74c-221d-329b-baf8-e089d875b824,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2018,bioetanol combustion consumption by to the public,39.00707118,TJ,N2O,0.6,kg/TJ,23.404242707999998,kg +44ce8536-bd59-3939-bff7-3b05a031dc2c,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,bioetanol combustion consumption by to the public,161.1039375,TJ,CH4,10.0,kg/TJ,1611.039375,kg +29bd83bc-f63d-3b46-beff-456b2a05982a,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,bioetanol combustion consumption by to the public,161.1039375,TJ,N2O,0.6,kg/TJ,96.6623625,kg +2505e31c-fee4-3a7f-937a-3ea54541dff0,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2018,bioetanol combustion consumption by to the public,20.321357759999998,TJ,CH4,10.0,kg/TJ,203.21357759999998,kg +89b25418-487d-3028-b606-3b598d66dd95,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2018,bioetanol combustion consumption by to the public,20.321357759999998,TJ,N2O,0.6,kg/TJ,12.192814655999998,kg +54f5fe40-c775-39cc-8a56-6eeb25f152ab,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2018,bioetanol combustion consumption by to the public,8.80154748,TJ,CH4,10.0,kg/TJ,88.01547479999999,kg +16571e79-9e33-3ab7-a389-e993a072e450,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2018,bioetanol combustion consumption by to the public,8.80154748,TJ,N2O,0.6,kg/TJ,5.280928488,kg +a99fc9c3-f479-3189-b889-d257fb6c974b,SESCO,II.1.1,Tucuman,AR-T,annual,2018,bioetanol combustion consumption by to the public,5.2982691299999995,TJ,CH4,10.0,kg/TJ,52.9826913,kg +4d0f5858-11c3-376b-90e8-ab514498202f,SESCO,II.1.1,Tucuman,AR-T,annual,2018,bioetanol combustion consumption by to the public,5.2982691299999995,TJ,N2O,0.6,kg/TJ,3.1789614779999997,kg +b814ac28-23cd-33d6-9aa3-b9fec8489aa0,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,bioetanol combustion consumption by to the public,147.46341356999997,TJ,CH4,10.0,kg/TJ,1474.6341356999997,kg +261442e2-b4c6-3448-aa2a-aea00979bafc,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,bioetanol combustion consumption by to the public,147.46341356999997,TJ,N2O,0.6,kg/TJ,88.47804814199998,kg +4cd11aca-0fb1-3184-a373-39e6fe272442,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,bioetanol combustion consumption by to the public,65.65776327,TJ,CH4,10.0,kg/TJ,656.5776327000001,kg +dcd75a80-f96e-3e8f-86c7-def1ddc5a497,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,bioetanol combustion consumption by to the public,65.65776327,TJ,N2O,0.6,kg/TJ,39.394657962000004,kg +c46e0308-654a-369b-a6c0-1230edfbb572,SESCO,II.1.1,Catamarca,AR-K,annual,2018,bioetanol combustion consumption by to the public,6.67146051,TJ,CH4,10.0,kg/TJ,66.7146051,kg +b3551964-80f1-3895-80c5-36fed43d6da7,SESCO,II.1.1,Catamarca,AR-K,annual,2018,bioetanol combustion consumption by to the public,6.67146051,TJ,N2O,0.6,kg/TJ,4.002876306,kg +ce5f924d-52ea-3a93-b611-fca4ca449c1b,SESCO,II.1.1,Chaco,AR-H,annual,2018,bioetanol combustion consumption by to the public,4.03990092,TJ,CH4,10.0,kg/TJ,40.3990092,kg +62799495-8b36-35c0-aa1d-01fc138667e2,SESCO,II.1.1,Chaco,AR-H,annual,2018,bioetanol combustion consumption by to the public,4.03990092,TJ,N2O,0.6,kg/TJ,2.423940552,kg +161cd8d7-d231-34a0-8d44-cfd799c1bf12,SESCO,II.1.1,Chubut,AR-U,annual,2018,bioetanol combustion consumption by to the public,13.08984138,TJ,CH4,10.0,kg/TJ,130.8984138,kg +fdf0f149-b5ff-3a64-b50e-0758613cd1c4,SESCO,II.1.1,Chubut,AR-U,annual,2018,bioetanol combustion consumption by to the public,13.08984138,TJ,N2O,0.6,kg/TJ,7.853904827999999,kg +1aa5cfe4-e48e-3360-a098-991db0b3bb11,SESCO,II.1.1,Corrientes,AR-W,annual,2018,bioetanol combustion consumption by to the public,6.715983779999999,TJ,CH4,10.0,kg/TJ,67.15983779999999,kg +1b14707f-b51d-3995-9bca-d0b5c005f974,SESCO,II.1.1,Corrientes,AR-W,annual,2018,bioetanol combustion consumption by to the public,6.715983779999999,TJ,N2O,0.6,kg/TJ,4.029590268,kg +c828b8bc-86ab-3d60-a702-2913b9639b7c,SESCO,II.1.1,Córdoba,AR-X,annual,2018,bioetanol combustion consumption by to the public,37.50968331,TJ,CH4,10.0,kg/TJ,375.0968331,kg +f216809c-7b3c-3327-878f-5e9c90b540eb,SESCO,II.1.1,Córdoba,AR-X,annual,2018,bioetanol combustion consumption by to the public,37.50968331,TJ,N2O,0.6,kg/TJ,22.505809986,kg +c0975220-6d1d-3b9e-add6-720f5d56fbf6,SESCO,II.1.1,Entre Rios,AR-E,annual,2018,bioetanol combustion consumption by to the public,15.829194149999998,TJ,CH4,10.0,kg/TJ,158.29194149999998,kg +7a4a499b-7cb4-3ac1-b0c2-4fd12b6b3bd9,SESCO,II.1.1,Entre Rios,AR-E,annual,2018,bioetanol combustion consumption by to the public,15.829194149999998,TJ,N2O,0.6,kg/TJ,9.497516489999999,kg +11f4d460-81fe-38f8-b914-c8cb3b325c6e,SESCO,II.1.1,Formosa,AR-P,annual,2018,bioetanol combustion consumption by to the public,7.885305449999999,TJ,CH4,10.0,kg/TJ,78.85305449999998,kg +5844f7f5-4eb7-3d1b-9d8c-58b5b1de565a,SESCO,II.1.1,Formosa,AR-P,annual,2018,bioetanol combustion consumption by to the public,7.885305449999999,TJ,N2O,0.6,kg/TJ,4.731183269999999,kg +b423d44f-4683-32b3-96a2-57984c433fd5,SESCO,II.1.1,Jujuy,AR-Y,annual,2018,bioetanol combustion consumption by to the public,2.48627313,TJ,CH4,10.0,kg/TJ,24.8627313,kg +3d2352d3-f599-3812-bbdd-95468111ca33,SESCO,II.1.1,Jujuy,AR-Y,annual,2018,bioetanol combustion consumption by to the public,2.48627313,TJ,N2O,0.6,kg/TJ,1.4917638779999998,kg +96797900-253e-3bdc-81ef-6f1dd11457a2,SESCO,II.1.1,La Pampa,AR-L,annual,2018,bioetanol combustion consumption by to the public,3.71652138,TJ,CH4,10.0,kg/TJ,37.165213800000004,kg +a6d14ac6-0948-3b04-bab1-ed3110bf635d,SESCO,II.1.1,La Pampa,AR-L,annual,2018,bioetanol combustion consumption by to the public,3.71652138,TJ,N2O,0.6,kg/TJ,2.229912828,kg +52adc1e3-a74e-3b14-a6b4-0cdeec1ac180,SESCO,II.1.1,La Rioja,AR-F,annual,2018,bioetanol combustion consumption by to the public,1.26071154,TJ,CH4,10.0,kg/TJ,12.6071154,kg +1563e47c-79b7-30a3-8d4d-e7d45c0d76de,SESCO,II.1.1,La Rioja,AR-F,annual,2018,bioetanol combustion consumption by to the public,1.26071154,TJ,N2O,0.6,kg/TJ,0.756426924,kg +fa48e66f-e136-3a55-a8d8-d381d78372a1,SESCO,II.1.1,Mendoza,AR-M,annual,2018,bioetanol combustion consumption by to the public,9.42721659,TJ,CH4,10.0,kg/TJ,94.2721659,kg +1c876946-e9e8-39eb-913c-06f6a186df9d,SESCO,II.1.1,Mendoza,AR-M,annual,2018,bioetanol combustion consumption by to the public,9.42721659,TJ,N2O,0.6,kg/TJ,5.656329954,kg +74a32193-8ad0-3c56-bd8a-a31f84a78eb6,SESCO,II.1.1,Misiones,AR-N,annual,2018,bioetanol combustion consumption by to the public,5.991894809999999,TJ,CH4,10.0,kg/TJ,59.91894809999999,kg +6e916592-a101-3b69-847c-af067d4c7b70,SESCO,II.1.1,Misiones,AR-N,annual,2018,bioetanol combustion consumption by to the public,5.991894809999999,TJ,N2O,0.6,kg/TJ,3.5951368859999993,kg +8b1edd72-ee5c-36ad-afde-b9624312de42,SESCO,II.1.1,Neuquén,AR-Q,annual,2018,bioetanol combustion consumption by to the public,10.3340853,TJ,CH4,10.0,kg/TJ,103.340853,kg +5348e2e2-66e3-37ba-9a93-8dd8698ad49b,SESCO,II.1.1,Neuquén,AR-Q,annual,2018,bioetanol combustion consumption by to the public,10.3340853,TJ,N2O,0.6,kg/TJ,6.20045118,kg +ae7ba0f9-0754-338f-9800-a478aee0b71b,SESCO,II.1.1,Rio Negro,AR-R,annual,2018,bioetanol combustion consumption by to the public,11.709620009999998,TJ,CH4,10.0,kg/TJ,117.09620009999998,kg +4a067977-af5f-3c21-9c3b-b3d6cae7f9bd,SESCO,II.1.1,Rio Negro,AR-R,annual,2018,bioetanol combustion consumption by to the public,11.709620009999998,TJ,N2O,0.6,kg/TJ,7.025772005999999,kg +f58e6a1f-d383-3e04-80c8-2293300d67d2,SESCO,II.1.1,Salta,AR-A,annual,2018,bioetanol combustion consumption by to the public,1.05918516,TJ,CH4,10.0,kg/TJ,10.5918516,kg +a6e08cf8-3462-375d-b9d1-99d4231d54ed,SESCO,II.1.1,Salta,AR-A,annual,2018,bioetanol combustion consumption by to the public,1.05918516,TJ,N2O,0.6,kg/TJ,0.635511096,kg +7870e7e2-debf-34cc-9044-0f4f0a29b82d,SESCO,II.1.1,San Juan,AR-J,annual,2018,bioetanol combustion consumption by to the public,4.38437043,TJ,CH4,10.0,kg/TJ,43.8437043,kg +3ab3d692-ba6a-35ba-9b6a-1feb82569041,SESCO,II.1.1,San Juan,AR-J,annual,2018,bioetanol combustion consumption by to the public,4.38437043,TJ,N2O,0.6,kg/TJ,2.630622258,kg +d5236302-4625-3642-9885-cb2942f0accf,SESCO,II.1.1,San Luis,AR-D,annual,2018,bioetanol combustion consumption by to the public,6.2332578000000005,TJ,CH4,10.0,kg/TJ,62.332578000000005,kg +25538d6b-7693-3a3e-b2c5-57c46a2a90c7,SESCO,II.1.1,San Luis,AR-D,annual,2018,bioetanol combustion consumption by to the public,6.2332578000000005,TJ,N2O,0.6,kg/TJ,3.7399546800000003,kg +caf9b35d-82c4-3640-808f-d2294fcf85be,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2018,bioetanol combustion consumption by to the public,5.58884205,TJ,CH4,10.0,kg/TJ,55.8884205,kg +56304a26-ac60-3171-86af-3f18b6866902,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2018,bioetanol combustion consumption by to the public,5.58884205,TJ,N2O,0.6,kg/TJ,3.35330523,kg +422109d6-c317-32a6-a223-0111b73552e5,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,bioetanol combustion consumption by to the public,39.5085438,TJ,CH4,10.0,kg/TJ,395.08543799999995,kg +4685fc99-d803-3b3e-9bb4-9c3d100d3811,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,bioetanol combustion consumption by to the public,39.5085438,TJ,N2O,0.6,kg/TJ,23.705126279999998,kg +99106ff4-a3e0-38f5-92ac-8cdd92815d69,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2018,bioetanol combustion consumption by to the public,5.77865178,TJ,CH4,10.0,kg/TJ,57.7865178,kg +2d52310f-db49-3f95-b38c-0adc3e9f8864,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2018,bioetanol combustion consumption by to the public,5.77865178,TJ,N2O,0.6,kg/TJ,3.4671910679999995,kg +c5aba010-fb76-377c-ae18-53e3d982dfa9,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2018,bioetanol combustion consumption by to the public,2.11837032,TJ,CH4,10.0,kg/TJ,21.1837032,kg +2549d0bf-04c7-362f-98fe-3ef7af9396b0,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2018,bioetanol combustion consumption by to the public,2.11837032,TJ,N2O,0.6,kg/TJ,1.271022192,kg +d1172243-d099-33d0-bbd9-6245bd5f5fe5,SESCO,II.1.1,Tucuman,AR-T,annual,2018,bioetanol combustion consumption by to the public,0.90921204,TJ,CH4,10.0,kg/TJ,9.0921204,kg +019e31f5-c022-3c15-bb9d-c8029790aa29,SESCO,II.1.1,Tucuman,AR-T,annual,2018,bioetanol combustion consumption by to the public,0.90921204,TJ,N2O,0.6,kg/TJ,0.545527224,kg +6a8cb409-2a82-3fbe-ae8f-678a13535054,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,bioetanol combustion consumption by freight transport,0.6326991,TJ,CH4,10.0,kg/TJ,6.326991,kg +8406d880-88cf-3d95-ac89-435d9e0031b1,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,bioetanol combustion consumption by freight transport,0.6326991,TJ,N2O,0.6,kg/TJ,0.37961945999999996,kg +a7b42703-3cb7-3850-ab2f-c67710a98e44,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,bioetanol combustion consumption by freight transport,0.25307964,TJ,CH4,10.0,kg/TJ,2.5307964,kg +e88e410b-79cf-30fb-b4d9-689180ad45a3,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,bioetanol combustion consumption by freight transport,0.25307964,TJ,N2O,0.6,kg/TJ,0.15184778399999999,kg +0f313575-54d0-3502-ad0a-e040007bc266,SESCO,II.1.1,Catamarca,AR-K,annual,2018,bioetanol combustion consumption by freight transport,0.00234333,TJ,CH4,10.0,kg/TJ,0.023433299999999997,kg +57689d39-59a5-3fa6-b413-e1463b049bf1,SESCO,II.1.1,Catamarca,AR-K,annual,2018,bioetanol combustion consumption by freight transport,0.00234333,TJ,N2O,0.6,kg/TJ,0.0014059979999999999,kg +b5531fbc-247d-3fc2-a224-b775c5c4c204,SESCO,II.1.1,Chubut,AR-U,annual,2018,bioetanol combustion consumption by freight transport,0.00234333,TJ,CH4,10.0,kg/TJ,0.023433299999999997,kg +81c4662e-13ac-3261-a66f-7a2f036bd95e,SESCO,II.1.1,Chubut,AR-U,annual,2018,bioetanol combustion consumption by freight transport,0.00234333,TJ,N2O,0.6,kg/TJ,0.0014059979999999999,kg +7cf66589-0de2-37c6-aff7-cc3340b386f3,SESCO,II.1.1,Córdoba,AR-X,annual,2018,bioetanol combustion consumption by freight transport,0.14528646,TJ,CH4,10.0,kg/TJ,1.4528646,kg +03a08416-4299-3558-bd44-ca00450be73d,SESCO,II.1.1,Córdoba,AR-X,annual,2018,bioetanol combustion consumption by freight transport,0.14528646,TJ,N2O,0.6,kg/TJ,0.087171876,kg +30401135-e661-3864-a263-268d73016ec5,SESCO,II.1.1,Entre Rios,AR-E,annual,2018,bioetanol combustion consumption by freight transport,0.00234333,TJ,CH4,10.0,kg/TJ,0.023433299999999997,kg +1335f7e7-0467-33d1-a402-f0a79b4fd6b8,SESCO,II.1.1,Entre Rios,AR-E,annual,2018,bioetanol combustion consumption by freight transport,0.00234333,TJ,N2O,0.6,kg/TJ,0.0014059979999999999,kg +ac26f80d-706d-350b-9c71-5e1169969f30,SESCO,II.1.1,La Rioja,AR-F,annual,2018,bioetanol combustion consumption by freight transport,0.00234333,TJ,CH4,10.0,kg/TJ,0.023433299999999997,kg +50f68aa3-4f5b-35fb-be89-47e500263dc0,SESCO,II.1.1,La Rioja,AR-F,annual,2018,bioetanol combustion consumption by freight transport,0.00234333,TJ,N2O,0.6,kg/TJ,0.0014059979999999999,kg +0efd282e-235f-3b45-a837-b47ee548c4ea,SESCO,II.1.1,Mendoza,AR-M,annual,2018,bioetanol combustion consumption by freight transport,0.00702999,TJ,CH4,10.0,kg/TJ,0.0702999,kg +19cec43a-74da-3f3d-8861-a3e9a1e141ea,SESCO,II.1.1,Mendoza,AR-M,annual,2018,bioetanol combustion consumption by freight transport,0.00702999,TJ,N2O,0.6,kg/TJ,0.004217994,kg +c2fdc3b9-9146-38db-b2d4-d6c190a98295,SESCO,II.1.1,Misiones,AR-N,annual,2018,bioetanol combustion consumption by freight transport,0.00234333,TJ,CH4,10.0,kg/TJ,0.023433299999999997,kg +9a152ecb-be16-34c3-89a3-55574f5f5969,SESCO,II.1.1,Misiones,AR-N,annual,2018,bioetanol combustion consumption by freight transport,0.00234333,TJ,N2O,0.6,kg/TJ,0.0014059979999999999,kg +85407a3f-db6b-3c76-bace-bfacbc7bea90,SESCO,II.1.1,Salta,AR-A,annual,2018,bioetanol combustion consumption by freight transport,0.00937332,TJ,CH4,10.0,kg/TJ,0.09373319999999999,kg +05147705-3e8d-3f14-870f-671c77b81da2,SESCO,II.1.1,Salta,AR-A,annual,2018,bioetanol combustion consumption by freight transport,0.00937332,TJ,N2O,0.6,kg/TJ,0.0056239919999999995,kg +4194c315-2d10-33fb-9cbd-9b345c015e0a,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,bioetanol combustion consumption by freight transport,0.08904654,TJ,CH4,10.0,kg/TJ,0.8904654,kg +0f2c30a4-96c2-361f-86f7-8197c4e3e0b7,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,bioetanol combustion consumption by freight transport,0.08904654,TJ,N2O,0.6,kg/TJ,0.053427923999999995,kg +d9f811f7-8acf-3acd-b7f1-5eae288f8841,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2018,bioetanol combustion consumption by freight transport,0.00234333,TJ,CH4,10.0,kg/TJ,0.023433299999999997,kg +738b2b03-fef8-3f9b-ad86-0d6e42383b8a,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2018,bioetanol combustion consumption by freight transport,0.00234333,TJ,N2O,0.6,kg/TJ,0.0014059979999999999,kg +77e64e3c-8818-3600-8e0b-f4229e669093,SESCO,II.1.1,Tucuman,AR-T,annual,2018,bioetanol combustion consumption by freight transport,0.00234333,TJ,CH4,10.0,kg/TJ,0.023433299999999997,kg +2a27a3de-8710-3b00-beaf-8550538b2841,SESCO,II.1.1,Tucuman,AR-T,annual,2018,bioetanol combustion consumption by freight transport,0.00234333,TJ,N2O,0.6,kg/TJ,0.0014059979999999999,kg +7f49cd0c-8a26-3285-bc52-fe82f95b0c6b,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,bioetanol combustion consumption by freight transport,0.41711274000000004,TJ,CH4,10.0,kg/TJ,4.1711274000000005,kg +3afa62fa-7531-3804-88e2-fbd421de8278,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,bioetanol combustion consumption by freight transport,0.41711274000000004,TJ,N2O,0.6,kg/TJ,0.250267644,kg +5187e314-e9fc-3eea-904d-ff1162dfc1d2,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,bioetanol combustion consumption by freight transport,0.20621304,TJ,CH4,10.0,kg/TJ,2.0621304,kg +bfaab497-8250-39eb-b0a0-844b3be906a9,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,bioetanol combustion consumption by freight transport,0.20621304,TJ,N2O,0.6,kg/TJ,0.12372782399999999,kg +b5531fbc-247d-3fc2-a224-b775c5c4c204,SESCO,II.1.1,Chubut,AR-U,annual,2018,bioetanol combustion consumption by freight transport,0.00234333,TJ,CH4,10.0,kg/TJ,0.023433299999999997,kg +81c4662e-13ac-3261-a66f-7a2f036bd95e,SESCO,II.1.1,Chubut,AR-U,annual,2018,bioetanol combustion consumption by freight transport,0.00234333,TJ,N2O,0.6,kg/TJ,0.0014059979999999999,kg +1d31749d-1c41-3a74-8d9a-71fc48a8a303,SESCO,II.1.1,Corrientes,AR-W,annual,2018,bioetanol combustion consumption by freight transport,0.00702999,TJ,CH4,10.0,kg/TJ,0.0702999,kg +302f80e2-5235-3a31-9fb9-e93e862d1b04,SESCO,II.1.1,Corrientes,AR-W,annual,2018,bioetanol combustion consumption by freight transport,0.00702999,TJ,N2O,0.6,kg/TJ,0.004217994,kg +46341ddd-e3fd-36c5-97b4-bab8fe195251,SESCO,II.1.1,Córdoba,AR-X,annual,2018,bioetanol combustion consumption by freight transport,0.10779317999999999,TJ,CH4,10.0,kg/TJ,1.0779318,kg +79b1156b-94f4-37ac-990b-ccd9873f117b,SESCO,II.1.1,Córdoba,AR-X,annual,2018,bioetanol combustion consumption by freight transport,0.10779317999999999,TJ,N2O,0.6,kg/TJ,0.06467590799999999,kg +ff0efea0-a712-395b-a155-6fc2c3cdf713,SESCO,II.1.1,Entre Rios,AR-E,annual,2018,bioetanol combustion consumption by freight transport,0.01874664,TJ,CH4,10.0,kg/TJ,0.18746639999999998,kg +7a7e5eee-751e-3842-b4db-9d272aeb056a,SESCO,II.1.1,Entre Rios,AR-E,annual,2018,bioetanol combustion consumption by freight transport,0.01874664,TJ,N2O,0.6,kg/TJ,0.011247983999999999,kg +f586ee49-9857-3ff2-ab26-fe973c67adbb,SESCO,II.1.1,Jujuy,AR-Y,annual,2018,bioetanol combustion consumption by freight transport,0.00234333,TJ,CH4,10.0,kg/TJ,0.023433299999999997,kg +c115d993-5482-38ce-b0fb-189b01351472,SESCO,II.1.1,Jujuy,AR-Y,annual,2018,bioetanol combustion consumption by freight transport,0.00234333,TJ,N2O,0.6,kg/TJ,0.0014059979999999999,kg +57c7eb7e-b62a-31d7-ac33-ef9a346a491c,SESCO,II.1.1,La Pampa,AR-L,annual,2018,bioetanol combustion consumption by freight transport,0.00234333,TJ,CH4,10.0,kg/TJ,0.023433299999999997,kg +d5369b08-91a3-3817-84ca-790eb1febc81,SESCO,II.1.1,La Pampa,AR-L,annual,2018,bioetanol combustion consumption by freight transport,0.00234333,TJ,N2O,0.6,kg/TJ,0.0014059979999999999,kg +d432f0c9-e41d-3e9f-a639-33480962244f,SESCO,II.1.1,Mendoza,AR-M,annual,2018,bioetanol combustion consumption by freight transport,0.00468666,TJ,CH4,10.0,kg/TJ,0.046866599999999994,kg +7945b11d-2dce-3ffc-bec6-0426a51de0db,SESCO,II.1.1,Mendoza,AR-M,annual,2018,bioetanol combustion consumption by freight transport,0.00468666,TJ,N2O,0.6,kg/TJ,0.0028119959999999998,kg +d1c359bc-5f90-39ce-b309-a39c42ed9252,SESCO,II.1.1,Neuquén,AR-Q,annual,2018,bioetanol combustion consumption by freight transport,0.00234333,TJ,CH4,10.0,kg/TJ,0.023433299999999997,kg +653f198d-c040-30d6-a37f-75d6d15cfe3f,SESCO,II.1.1,Neuquén,AR-Q,annual,2018,bioetanol combustion consumption by freight transport,0.00234333,TJ,N2O,0.6,kg/TJ,0.0014059979999999999,kg +c1646e1a-78e7-32df-af36-673317283f74,SESCO,II.1.1,Rio Negro,AR-R,annual,2018,bioetanol combustion consumption by freight transport,0.00234333,TJ,CH4,10.0,kg/TJ,0.023433299999999997,kg +cb58bac5-219c-312e-a203-12afdceef81f,SESCO,II.1.1,Rio Negro,AR-R,annual,2018,bioetanol combustion consumption by freight transport,0.00234333,TJ,N2O,0.6,kg/TJ,0.0014059979999999999,kg +d179812e-89b1-3cc6-a0b6-afee06648247,SESCO,II.1.1,San Luis,AR-D,annual,2018,bioetanol combustion consumption by freight transport,0.00234333,TJ,CH4,10.0,kg/TJ,0.023433299999999997,kg +b42f79c4-e7d3-376e-939f-bfa7eb305f7e,SESCO,II.1.1,San Luis,AR-D,annual,2018,bioetanol combustion consumption by freight transport,0.00234333,TJ,N2O,0.6,kg/TJ,0.0014059979999999999,kg +45f46ae3-32fa-3722-a880-e29f330ce493,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,bioetanol combustion consumption by freight transport,0.09841986,TJ,CH4,10.0,kg/TJ,0.9841986,kg +7020a7aa-47ae-329f-a3e1-be7218cf3d16,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,bioetanol combustion consumption by freight transport,0.09841986,TJ,N2O,0.6,kg/TJ,0.059051915999999996,kg +d9f811f7-8acf-3acd-b7f1-5eae288f8841,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2018,bioetanol combustion consumption by freight transport,0.00234333,TJ,CH4,10.0,kg/TJ,0.023433299999999997,kg +738b2b03-fef8-3f9b-ad86-0d6e42383b8a,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2018,bioetanol combustion consumption by freight transport,0.00234333,TJ,N2O,0.6,kg/TJ,0.0014059979999999999,kg +77e64e3c-8818-3600-8e0b-f4229e669093,SESCO,II.1.1,Tucuman,AR-T,annual,2018,bioetanol combustion consumption by freight transport,0.00234333,TJ,CH4,10.0,kg/TJ,0.023433299999999997,kg +2a27a3de-8710-3b00-beaf-8550538b2841,SESCO,II.1.1,Tucuman,AR-T,annual,2018,bioetanol combustion consumption by freight transport,0.00234333,TJ,N2O,0.6,kg/TJ,0.0014059979999999999,kg +0229071f-19a0-3647-b19b-921da3875121,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,bioetanol combustion consumption by public passenger transport,0.00234333,TJ,CH4,10.0,kg/TJ,0.023433299999999997,kg +ee0f6b45-2ffe-329d-aea5-d455caf0b8ce,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,bioetanol combustion consumption by public passenger transport,0.00234333,TJ,N2O,0.6,kg/TJ,0.0014059979999999999,kg +140ea528-c49f-3e2e-a591-90b151cfb791,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,bioetanol combustion consumption by public passenger transport,0.00234333,TJ,CH4,10.0,kg/TJ,0.023433299999999997,kg +73775438-642f-3ef0-9989-28744f6cfc68,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,bioetanol combustion consumption by public passenger transport,0.00234333,TJ,N2O,0.6,kg/TJ,0.0014059979999999999,kg +80e22c4d-1a98-3f7c-ac3c-b0571e3a981f,SESCO,II.1.1,Salta,AR-A,annual,2018,bioetanol combustion consumption by public passenger transport,0.05155326,TJ,CH4,10.0,kg/TJ,0.5155326,kg +d3f4706c-2532-323d-bfaa-aaf373b0481d,SESCO,II.1.1,Salta,AR-A,annual,2018,bioetanol combustion consumption by public passenger transport,0.05155326,TJ,N2O,0.6,kg/TJ,0.030931955999999997,kg +836215ac-83b5-37b7-8b0a-8f0640f6e703,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,bioetanol combustion consumption by public passenger transport,0.01640331,TJ,CH4,10.0,kg/TJ,0.16403310000000002,kg +26a4331b-6901-3ad7-bf9e-2a108415978d,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,bioetanol combustion consumption by public passenger transport,0.01640331,TJ,N2O,0.6,kg/TJ,0.009841986,kg +0229071f-19a0-3647-b19b-921da3875121,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,bioetanol combustion consumption by public passenger transport,0.00234333,TJ,CH4,10.0,kg/TJ,0.023433299999999997,kg +ee0f6b45-2ffe-329d-aea5-d455caf0b8ce,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,bioetanol combustion consumption by public passenger transport,0.00234333,TJ,N2O,0.6,kg/TJ,0.0014059979999999999,kg +140ea528-c49f-3e2e-a591-90b151cfb791,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,bioetanol combustion consumption by public passenger transport,0.00234333,TJ,CH4,10.0,kg/TJ,0.023433299999999997,kg +73775438-642f-3ef0-9989-28744f6cfc68,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,bioetanol combustion consumption by public passenger transport,0.00234333,TJ,N2O,0.6,kg/TJ,0.0014059979999999999,kg +c11900d3-ff56-34f8-88bd-6131c370a848,SESCO,II.1.1,Córdoba,AR-X,annual,2018,bioetanol combustion consumption by public passenger transport,0.00234333,TJ,CH4,10.0,kg/TJ,0.023433299999999997,kg +d865e7ed-a05b-30d2-90c1-c6544fea4874,SESCO,II.1.1,Córdoba,AR-X,annual,2018,bioetanol combustion consumption by public passenger transport,0.00234333,TJ,N2O,0.6,kg/TJ,0.0014059979999999999,kg +e75c0557-0693-35e8-810d-56d15cbd80ac,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,bioetanol combustion consumption by public passenger transport,0.00702999,TJ,CH4,10.0,kg/TJ,0.0702999,kg +0c6bcdfe-cddf-3fc0-b9d4-9101488bd81a,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,bioetanol combustion consumption by public passenger transport,0.00702999,TJ,N2O,0.6,kg/TJ,0.004217994,kg +84c9f7b7-1baf-3612-959b-6fb2b3c2b8b0,SESCO,II.5.1,Buenos Aires,AR-B,annual,2018,bioetanol combustion consumption by agriculture machines,0.33627019833,TJ,CH4,10.0,kg/TJ,3.3627019833,kg +d99574ff-015c-3089-89e8-0d13c190b670,SESCO,II.5.1,Buenos Aires,AR-B,annual,2018,bioetanol combustion consumption by agriculture machines,0.33627019833,TJ,N2O,0.6,kg/TJ,0.20176211899799998,kg +f1316e88-03ca-3818-b652-c769f121921e,SESCO,II.5.1,Rio Negro,AR-R,annual,2018,bioetanol combustion consumption by agriculture machines,0.032361387299999995,TJ,CH4,10.0,kg/TJ,0.32361387299999994,kg +a788b157-76d7-301c-a973-e91a005c2c68,SESCO,II.5.1,Rio Negro,AR-R,annual,2018,bioetanol combustion consumption by agriculture machines,0.032361387299999995,TJ,N2O,0.6,kg/TJ,0.019416832379999995,kg +4429b2f5-bef5-3ecc-b762-d9f1eed3f1da,SESCO,II.5.1,Buenos Aires,AR-B,annual,2018,bioetanol combustion consumption by agriculture machines,0.051187700520000004,TJ,CH4,10.0,kg/TJ,0.5118770052,kg +a7685afc-d6f9-3deb-80ae-e949b72c4740,SESCO,II.5.1,Buenos Aires,AR-B,annual,2018,bioetanol combustion consumption by agriculture machines,0.051187700520000004,TJ,N2O,0.6,kg/TJ,0.030712620312,kg +1e7cb11d-a01b-392b-beb2-6b1fc9567a10,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,bioetanol combustion consumption by to the public,108.36182183112,TJ,CH4,10.0,kg/TJ,1083.6182183112,kg +a0f1627f-6260-359e-a937-c43ae9a77fff,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,bioetanol combustion consumption by to the public,108.36182183112,TJ,N2O,0.6,kg/TJ,65.01709309867199,kg +f9177d6d-fba7-3302-8267-e5dbd9afbbe9,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,bioetanol combustion consumption by to the public,7.081409690189999,TJ,CH4,10.0,kg/TJ,70.81409690189999,kg +6bbe7d66-df4e-3284-83b9-bf31acd3d59b,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,bioetanol combustion consumption by to the public,7.081409690189999,TJ,N2O,0.6,kg/TJ,4.2488458141139995,kg +109af613-a0fa-3941-a1f2-41b5a5e0a474,SESCO,II.1.1,Chubut,AR-U,annual,2018,bioetanol combustion consumption by to the public,37.06886544372,TJ,CH4,10.0,kg/TJ,370.6886544372,kg +2309256e-eadf-3018-b96e-de53bda2e7a8,SESCO,II.1.1,Chubut,AR-U,annual,2018,bioetanol combustion consumption by to the public,37.06886544372,TJ,N2O,0.6,kg/TJ,22.241319266232,kg +64d18ce9-86c7-3f6d-886b-e485127710a0,SESCO,II.1.1,Córdoba,AR-X,annual,2018,bioetanol combustion consumption by to the public,10.9964743911,TJ,CH4,10.0,kg/TJ,109.964743911,kg +f792d965-b2ea-347f-93cc-ebc532f03cb1,SESCO,II.1.1,Córdoba,AR-X,annual,2018,bioetanol combustion consumption by to the public,10.9964743911,TJ,N2O,0.6,kg/TJ,6.59788463466,kg +4821649b-35a8-317e-b0eb-7353a4a68e26,SESCO,II.1.1,Entre Rios,AR-E,annual,2018,bioetanol combustion consumption by to the public,3.95272201401,TJ,CH4,10.0,kg/TJ,39.5272201401,kg +e958501f-26ff-37b9-a2f6-d0feae8bf23e,SESCO,II.1.1,Entre Rios,AR-E,annual,2018,bioetanol combustion consumption by to the public,3.95272201401,TJ,N2O,0.6,kg/TJ,2.3716332084059997,kg +d329c144-5023-349d-8f93-c01e5abeb458,SESCO,II.1.1,La Pampa,AR-L,annual,2018,bioetanol combustion consumption by to the public,11.95782786693,TJ,CH4,10.0,kg/TJ,119.5782786693,kg +aebce579-b12a-319f-a999-14009f05705c,SESCO,II.1.1,La Pampa,AR-L,annual,2018,bioetanol combustion consumption by to the public,11.95782786693,TJ,N2O,0.6,kg/TJ,7.174696720158,kg +7d9ad1b6-597c-325c-af0f-ed3ee8f44616,SESCO,II.1.1,Neuquén,AR-Q,annual,2018,bioetanol combustion consumption by to the public,11.397607963829998,TJ,CH4,10.0,kg/TJ,113.97607963829998,kg +3ee90cca-4f21-3ee6-87d1-af01bd12d578,SESCO,II.1.1,Neuquén,AR-Q,annual,2018,bioetanol combustion consumption by to the public,11.397607963829998,TJ,N2O,0.6,kg/TJ,6.838564778297998,kg +659a4763-9ece-3674-8e6e-a678e8be40c0,SESCO,II.1.1,Rio Negro,AR-R,annual,2018,bioetanol combustion consumption by to the public,34.168045520069995,TJ,CH4,10.0,kg/TJ,341.68045520069995,kg +6b59e455-0315-3250-8133-80df7f870f03,SESCO,II.1.1,Rio Negro,AR-R,annual,2018,bioetanol combustion consumption by to the public,34.168045520069995,TJ,N2O,0.6,kg/TJ,20.500827312041995,kg +eed8e800-22db-396e-9479-78609fb6abad,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2018,bioetanol combustion consumption by to the public,22.99444818759,TJ,CH4,10.0,kg/TJ,229.94448187589998,kg +5941cddf-2365-3f16-b715-0ecccb8e2428,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2018,bioetanol combustion consumption by to the public,22.99444818759,TJ,N2O,0.6,kg/TJ,13.796668912553999,kg +1910c4c2-8ca3-3bf2-b760-acbf8e818f75,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,bioetanol combustion consumption by to the public,14.60192661576,TJ,CH4,10.0,kg/TJ,146.0192661576,kg +55c9bdfc-54fd-3257-bdc0-7a11e5b1ac1b,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,bioetanol combustion consumption by to the public,14.60192661576,TJ,N2O,0.6,kg/TJ,8.761155969456,kg +e6ad5506-20cc-3329-814c-9139227d187e,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,bioetanol combustion consumption by to the public,29.326336747289997,TJ,CH4,10.0,kg/TJ,293.2633674729,kg +5dfdf586-0fb3-347a-9b34-29fdb1fd0952,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,bioetanol combustion consumption by to the public,29.326336747289997,TJ,N2O,0.6,kg/TJ,17.595802048373997,kg +3c055619-de2c-3608-a0f9-80734acef40c,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,bioetanol combustion consumption by to the public,2.06897058027,TJ,CH4,10.0,kg/TJ,20.689705802699997,kg +649ac3e1-4146-307b-ad4a-1680578cd116,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,bioetanol combustion consumption by to the public,2.06897058027,TJ,N2O,0.6,kg/TJ,1.2413823481619999,kg +dc0fc928-bc2b-3a70-836e-665de2f4d5dd,SESCO,II.1.1,Chubut,AR-U,annual,2018,bioetanol combustion consumption by to the public,8.150628989249999,TJ,CH4,10.0,kg/TJ,81.50628989249998,kg +06aa9375-8463-378c-b825-77869f11df26,SESCO,II.1.1,Chubut,AR-U,annual,2018,bioetanol combustion consumption by to the public,8.150628989249999,TJ,N2O,0.6,kg/TJ,4.890377393549999,kg +03b01718-8198-34dc-8834-3f8b1af6103b,SESCO,II.1.1,Córdoba,AR-X,annual,2018,bioetanol combustion consumption by to the public,3.09470704785,TJ,CH4,10.0,kg/TJ,30.947070478500002,kg +adddb1a3-01d2-38db-a257-748434336dc8,SESCO,II.1.1,Córdoba,AR-X,annual,2018,bioetanol combustion consumption by to the public,3.09470704785,TJ,N2O,0.6,kg/TJ,1.8568242287099999,kg +642c54bb-79e5-3f8c-ba7e-0988da9e78ad,SESCO,II.1.1,Entre Rios,AR-E,annual,2018,bioetanol combustion consumption by to the public,1.29351347334,TJ,CH4,10.0,kg/TJ,12.9351347334,kg +1a10e58a-c90b-3fcf-a7d1-192a1d8dcdb8,SESCO,II.1.1,Entre Rios,AR-E,annual,2018,bioetanol combustion consumption by to the public,1.29351347334,TJ,N2O,0.6,kg/TJ,0.776108084004,kg +0768556d-4d8f-3c75-9a8a-f2f71fd3ce63,SESCO,II.1.1,La Pampa,AR-L,annual,2018,bioetanol combustion consumption by to the public,4.98959867241,TJ,CH4,10.0,kg/TJ,49.8959867241,kg +ed45217b-0131-360d-8103-9557de89c41e,SESCO,II.1.1,La Pampa,AR-L,annual,2018,bioetanol combustion consumption by to the public,4.98959867241,TJ,N2O,0.6,kg/TJ,2.993759203446,kg +b0e76596-9998-365e-b83c-de0feeaf2877,SESCO,II.1.1,Neuquén,AR-Q,annual,2018,bioetanol combustion consumption by to the public,5.77070086131,TJ,CH4,10.0,kg/TJ,57.7070086131,kg +93c01834-eaf0-3af6-9266-c921456adf20,SESCO,II.1.1,Neuquén,AR-Q,annual,2018,bioetanol combustion consumption by to the public,5.77070086131,TJ,N2O,0.6,kg/TJ,3.462420516786,kg +96c73ba6-2124-3f97-a46d-9ff133ef9b4c,SESCO,II.1.1,Rio Negro,AR-R,annual,2018,bioetanol combustion consumption by to the public,8.84951075844,TJ,CH4,10.0,kg/TJ,88.49510758439999,kg +f1bd42d9-bc81-3866-8a75-98ae541d1628,SESCO,II.1.1,Rio Negro,AR-R,annual,2018,bioetanol combustion consumption by to the public,8.84951075844,TJ,N2O,0.6,kg/TJ,5.309706455063999,kg +c071c6f4-9d81-3ea3-887f-bb6967cf6238,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2018,bioetanol combustion consumption by to the public,4.51082120346,TJ,CH4,10.0,kg/TJ,45.1082120346,kg +632ffccd-0401-37ad-a654-c153c7ed867c,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2018,bioetanol combustion consumption by to the public,4.51082120346,TJ,N2O,0.6,kg/TJ,2.706492722076,kg +ef6c0cac-2381-372c-bb71-09d6e6970e12,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,bioetanol combustion consumption by to the public,6.198653845889999,TJ,CH4,10.0,kg/TJ,61.98653845889999,kg +9ce8abdc-9e76-3a65-a24f-7700285d82a0,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,bioetanol combustion consumption by to the public,6.198653845889999,TJ,N2O,0.6,kg/TJ,3.719192307533999,kg +9a246e0f-a532-37fa-90d1-1f391a0f3185,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,bioetanol combustion consumption by to the public,6.116559966,TJ,CH4,10.0,kg/TJ,61.16559966,kg +991d0bfd-37e6-3474-9c3c-550764b812bc,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,bioetanol combustion consumption by to the public,6.116559966,TJ,N2O,0.6,kg/TJ,3.6699359795999995,kg +172ef57f-cce6-3a8e-bc80-4dc15db9e55d,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,bioetanol combustion consumption by to the public,0.40773942,TJ,CH4,10.0,kg/TJ,4.0773942000000005,kg +c24b4bc4-43e2-3073-96d8-2e194c9c65a0,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,bioetanol combustion consumption by to the public,0.40773942,TJ,N2O,0.6,kg/TJ,0.244643652,kg +8159a1c4-981c-303a-b5f8-2a06a3621467,SESCO,II.1.1,Córdoba,AR-X,annual,2018,bioetanol combustion consumption by to the public,1.25836821,TJ,CH4,10.0,kg/TJ,12.5836821,kg +f6cfa99c-8a2a-3f0e-a8fc-c2418f1ef406,SESCO,II.1.1,Córdoba,AR-X,annual,2018,bioetanol combustion consumption by to the public,1.25836821,TJ,N2O,0.6,kg/TJ,0.7550209259999999,kg +343e9194-38ab-323a-8576-4a426db2a22f,SESCO,II.1.1,Entre Rios,AR-E,annual,2018,bioetanol combustion consumption by to the public,1.7471868480000001,TJ,CH4,10.0,kg/TJ,17.47186848,kg +81a8a303-57d4-3302-a1c1-57b4c91faa60,SESCO,II.1.1,Entre Rios,AR-E,annual,2018,bioetanol combustion consumption by to the public,1.7471868480000001,TJ,N2O,0.6,kg/TJ,1.0483121088,kg +d888e1a2-6b21-362e-abef-1bab6d43c388,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,bioetanol combustion consumption by to the public,0.03983661,TJ,CH4,10.0,kg/TJ,0.3983661,kg +898962b4-c424-3aaa-8d3a-e19e9170c06c,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,bioetanol combustion consumption by to the public,0.03983661,TJ,N2O,0.6,kg/TJ,0.023901966,kg +a98f2e82-8ea9-3c87-b2ee-d13ee366dadc,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,bioetanol combustion consumption by to the public,0.6159911571,TJ,CH4,10.0,kg/TJ,6.159911570999999,kg +86d649a5-16ec-33bf-b507-29336b4b3fd1,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,bioetanol combustion consumption by to the public,0.6159911571,TJ,N2O,0.6,kg/TJ,0.36959469425999997,kg +536b0e44-c0db-332f-a320-04308ea295f8,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,bioetanol combustion consumption by to the public,0.03280662,TJ,CH4,10.0,kg/TJ,0.32806620000000003,kg +84a376ba-983c-3edf-b35a-91bd7c208954,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,bioetanol combustion consumption by to the public,0.03280662,TJ,N2O,0.6,kg/TJ,0.019683972,kg +69e2d2b9-ec12-3ef6-aab0-a67d6c8913e7,SESCO,II.1.1,Córdoba,AR-X,annual,2018,bioetanol combustion consumption by to the public,0.05623992,TJ,CH4,10.0,kg/TJ,0.5623992,kg +be54e6f0-0ceb-34a7-b1fb-e696139d2de3,SESCO,II.1.1,Córdoba,AR-X,annual,2018,bioetanol combustion consumption by to the public,0.05623992,TJ,N2O,0.6,kg/TJ,0.033743952,kg +d51fc32c-362c-3cd5-b9e5-89012518a844,SESCO,II.1.1,Entre Rios,AR-E,annual,2018,bioetanol combustion consumption by to the public,0.120681495,TJ,CH4,10.0,kg/TJ,1.20681495,kg +2415d196-2a29-31d4-98cb-05e844f7ae27,SESCO,II.1.1,Entre Rios,AR-E,annual,2018,bioetanol combustion consumption by to the public,0.120681495,TJ,N2O,0.6,kg/TJ,0.072408897,kg +98b88e70-7de8-3441-a6d0-1647c2449373,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,bioetanol combustion consumption by to the public,0.08435988,TJ,CH4,10.0,kg/TJ,0.8435988,kg +0e6cbe31-4edb-302c-af92-3d7e33bb4bda,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,bioetanol combustion consumption by to the public,0.08435988,TJ,N2O,0.6,kg/TJ,0.050615928,kg +2237bb90-b5f5-3477-b7d2-9a5d302abdf1,SESCO,II.1.1,Catamarca,AR-K,annual,2018,bioetanol combustion consumption by to the public,18.915734692799997,TJ,CH4,10.0,kg/TJ,189.15734692799998,kg +14a13edd-8a09-3a3a-b728-1fc3624c5591,SESCO,II.1.1,Catamarca,AR-K,annual,2018,bioetanol combustion consumption by to the public,18.915734692799997,TJ,N2O,0.6,kg/TJ,11.349440815679998,kg +8b54baec-267e-32f1-bb2f-95b9d2296ca3,SESCO,II.1.1,Chaco,AR-H,annual,2018,bioetanol combustion consumption by to the public,9.77637276,TJ,CH4,10.0,kg/TJ,97.7637276,kg +8ed92259-9a36-37d0-b660-95dd869de6d6,SESCO,II.1.1,Chaco,AR-H,annual,2018,bioetanol combustion consumption by to the public,9.77637276,TJ,N2O,0.6,kg/TJ,5.865823655999999,kg +486605f3-73e2-3102-bfc0-ee581bea3e11,SESCO,II.1.1,Jujuy,AR-Y,annual,2018,bioetanol combustion consumption by to the public,43.83433098,TJ,CH4,10.0,kg/TJ,438.3433098,kg +c45bcf98-09f9-39a1-8b8e-43a383e448e5,SESCO,II.1.1,Jujuy,AR-Y,annual,2018,bioetanol combustion consumption by to the public,43.83433098,TJ,N2O,0.6,kg/TJ,26.300598587999996,kg +b7eb257b-4fb3-3ab9-ba5a-8d76549da554,SESCO,II.1.1,La Rioja,AR-F,annual,2018,bioetanol combustion consumption by to the public,34.3427196816,TJ,CH4,10.0,kg/TJ,343.427196816,kg +c89ffc19-8443-356e-b486-86cc6782f2c5,SESCO,II.1.1,La Rioja,AR-F,annual,2018,bioetanol combustion consumption by to the public,34.3427196816,TJ,N2O,0.6,kg/TJ,20.605631808960002,kg +fc7804cd-5a54-3328-8210-eb005778f0b6,SESCO,II.1.1,Salta,AR-A,annual,2018,bioetanol combustion consumption by to the public,81.460946457,TJ,CH4,10.0,kg/TJ,814.60946457,kg +8a46fc60-0031-3188-af7d-5f955100da19,SESCO,II.1.1,Salta,AR-A,annual,2018,bioetanol combustion consumption by to the public,81.460946457,TJ,N2O,0.6,kg/TJ,48.8765678742,kg +9608a8ac-d18d-3e9e-bc82-b08d757cb279,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2018,bioetanol combustion consumption by to the public,46.5342689394,TJ,CH4,10.0,kg/TJ,465.342689394,kg +a6443c5a-1099-3fdd-9735-de35b8ccb8d0,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2018,bioetanol combustion consumption by to the public,46.5342689394,TJ,N2O,0.6,kg/TJ,27.92056136364,kg +0e703a16-da5e-3650-9698-8c95464df5d4,SESCO,II.1.1,Tucuman,AR-T,annual,2018,bioetanol combustion consumption by to the public,175.7446415406,TJ,CH4,10.0,kg/TJ,1757.4464154060001,kg +5065916b-cddf-3e26-9fd6-10fadc0cc969,SESCO,II.1.1,Tucuman,AR-T,annual,2018,bioetanol combustion consumption by to the public,175.7446415406,TJ,N2O,0.6,kg/TJ,105.44678492436,kg +a4f748fd-5e07-3c34-8391-acb7012722e7,SESCO,II.1.1,Catamarca,AR-K,annual,2018,bioetanol combustion consumption by to the public,1.6661076299999997,TJ,CH4,10.0,kg/TJ,16.661076299999998,kg +7cbfe923-1156-3cbe-b3d9-b27f19486fc5,SESCO,II.1.1,Catamarca,AR-K,annual,2018,bioetanol combustion consumption by to the public,1.6661076299999997,TJ,N2O,0.6,kg/TJ,0.9996645779999997,kg +d8e2cea5-7a52-3ba3-b2d0-174f8195a2b2,SESCO,II.1.1,Chaco,AR-H,annual,2018,bioetanol combustion consumption by to the public,0.26245296,TJ,CH4,10.0,kg/TJ,2.6245296000000002,kg +57184383-0b87-3c05-b731-6e423fe3b289,SESCO,II.1.1,Chaco,AR-H,annual,2018,bioetanol combustion consumption by to the public,0.26245296,TJ,N2O,0.6,kg/TJ,0.157471776,kg +ee53dd73-a41c-30b8-95b7-1d6939691cab,SESCO,II.1.1,Jujuy,AR-Y,annual,2018,bioetanol combustion consumption by to the public,2.02229379,TJ,CH4,10.0,kg/TJ,20.222937899999998,kg +411c476c-ae74-3612-ad1f-312ae5afc232,SESCO,II.1.1,Jujuy,AR-Y,annual,2018,bioetanol combustion consumption by to the public,2.02229379,TJ,N2O,0.6,kg/TJ,1.213376274,kg +ce2fba5a-2dca-3d39-9055-f00620eac04e,SESCO,II.1.1,La Rioja,AR-F,annual,2018,bioetanol combustion consumption by to the public,2.83777263,TJ,CH4,10.0,kg/TJ,28.3777263,kg +5fc1182e-0062-37eb-b643-898e808b724a,SESCO,II.1.1,La Rioja,AR-F,annual,2018,bioetanol combustion consumption by to the public,2.83777263,TJ,N2O,0.6,kg/TJ,1.702663578,kg +47461dcc-895c-34b2-bf22-c6c8ff87bf21,SESCO,II.1.1,Salta,AR-A,annual,2018,bioetanol combustion consumption by to the public,5.0923138563,TJ,CH4,10.0,kg/TJ,50.923138562999995,kg +516b4a98-85bd-3109-bc24-7ca3d54ea5ac,SESCO,II.1.1,Salta,AR-A,annual,2018,bioetanol combustion consumption by to the public,5.0923138563,TJ,N2O,0.6,kg/TJ,3.0553883137799995,kg +96b5e56b-8012-36eb-b42b-c8e30ac565ac,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2018,bioetanol combustion consumption by to the public,5.8068654732,TJ,CH4,10.0,kg/TJ,58.068654732,kg +5d80a4cd-ef63-3403-967d-1e1005d371c8,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2018,bioetanol combustion consumption by to the public,5.8068654732,TJ,N2O,0.6,kg/TJ,3.48411928392,kg +2282825b-5119-32d1-8b7a-100826072b63,SESCO,II.1.1,Tucuman,AR-T,annual,2018,bioetanol combustion consumption by to the public,12.6710648757,TJ,CH4,10.0,kg/TJ,126.710648757,kg +7c06aa2c-6b17-3682-a8b9-f253959399ee,SESCO,II.1.1,Tucuman,AR-T,annual,2018,bioetanol combustion consumption by to the public,12.6710648757,TJ,N2O,0.6,kg/TJ,7.60263892542,kg +26ee8632-2157-3b93-9b96-50f1f0010055,SESCO,II.5.1,Buenos Aires,AR-B,annual,2018,bioetanol combustion consumption by agriculture machines,0.030463289999999997,TJ,CH4,10.0,kg/TJ,0.3046329,kg +0eb40b7b-8567-3623-9505-5601f7a841ba,SESCO,II.5.1,Buenos Aires,AR-B,annual,2018,bioetanol combustion consumption by agriculture machines,0.030463289999999997,TJ,N2O,0.6,kg/TJ,0.018277974,kg +4695f968-a4d8-3051-94ad-7323b7417557,SESCO,II.5.1,Buenos Aires,AR-B,annual,2018,bioetanol combustion consumption by agriculture machines,0.02811996,TJ,CH4,10.0,kg/TJ,0.2811996,kg +af01abf1-4b4d-3f77-95f8-2be2f8b098a2,SESCO,II.5.1,Buenos Aires,AR-B,annual,2018,bioetanol combustion consumption by agriculture machines,0.02811996,TJ,N2O,0.6,kg/TJ,0.016871976,kg +00b41518-ddf8-3805-840c-0d8ae2c2740a,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,bioetanol combustion consumption by to the public,1256.97861531,TJ,CH4,10.0,kg/TJ,12569.786153099998,kg +b013cf08-bf9c-3ab6-b00e-15852c9c4588,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,bioetanol combustion consumption by to the public,1256.97861531,TJ,N2O,0.6,kg/TJ,754.1871691859999,kg +3386f58b-a97c-3a29-ba81-b52d631aeb57,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,bioetanol combustion consumption by to the public,361.11886964999997,TJ,CH4,10.0,kg/TJ,3611.1886964999994,kg +8379d827-00b4-3f1a-ba1d-cb24a032a557,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,bioetanol combustion consumption by to the public,361.11886964999997,TJ,N2O,0.6,kg/TJ,216.67132178999998,kg +f776b1c2-4c15-31b4-ba00-44165adf29cb,SESCO,II.1.1,Catamarca,AR-K,annual,2018,bioetanol combustion consumption by to the public,3.09085227,TJ,CH4,10.0,kg/TJ,30.9085227,kg +7dd9d8ff-4e54-33e8-a4cf-dcd79798d24f,SESCO,II.1.1,Catamarca,AR-K,annual,2018,bioetanol combustion consumption by to the public,3.09085227,TJ,N2O,0.6,kg/TJ,1.854511362,kg +9ca58856-fb6b-39f8-8aa1-1e1470f23b9e,SESCO,II.1.1,Chaco,AR-H,annual,2018,bioetanol combustion consumption by to the public,70.61156289,TJ,CH4,10.0,kg/TJ,706.1156289,kg +e1ac34a1-12a0-3d3d-9fae-4ad2c95eccdb,SESCO,II.1.1,Chaco,AR-H,annual,2018,bioetanol combustion consumption by to the public,70.61156289,TJ,N2O,0.6,kg/TJ,42.366937734,kg +770dd1a7-06aa-3ff3-ac4f-ead632c75717,SESCO,II.1.1,Corrientes,AR-W,annual,2018,bioetanol combustion consumption by to the public,64.38767840999999,TJ,CH4,10.0,kg/TJ,643.8767840999999,kg +fedbbfb0-8db3-37e0-95d1-b77b8cb8b198,SESCO,II.1.1,Corrientes,AR-W,annual,2018,bioetanol combustion consumption by to the public,64.38767840999999,TJ,N2O,0.6,kg/TJ,38.632607046,kg +4e4d4fd8-79b2-3406-b9a1-567d8495ab36,SESCO,II.1.1,Córdoba,AR-X,annual,2018,bioetanol combustion consumption by to the public,306.38571084,TJ,CH4,10.0,kg/TJ,3063.8571084,kg +597e1c45-186b-3a65-847f-b91c3e93bb91,SESCO,II.1.1,Córdoba,AR-X,annual,2018,bioetanol combustion consumption by to the public,306.38571084,TJ,N2O,0.6,kg/TJ,183.831426504,kg +ea47ea85-53ac-33dc-8621-b14e7248bdf8,SESCO,II.1.1,Entre Rios,AR-E,annual,2018,bioetanol combustion consumption by to the public,70.26709337999999,TJ,CH4,10.0,kg/TJ,702.6709338,kg +762a9595-77b5-3a3c-bcc2-49ffd65127a9,SESCO,II.1.1,Entre Rios,AR-E,annual,2018,bioetanol combustion consumption by to the public,70.26709337999999,TJ,N2O,0.6,kg/TJ,42.16025602799999,kg +e64ff7c4-960d-3d68-9f27-f41aab99a3c7,SESCO,II.1.1,Formosa,AR-P,annual,2018,bioetanol combustion consumption by to the public,28.733912459999996,TJ,CH4,10.0,kg/TJ,287.33912459999993,kg +1e192e13-9a75-3675-9326-61ce4243e08b,SESCO,II.1.1,Formosa,AR-P,annual,2018,bioetanol combustion consumption by to the public,28.733912459999996,TJ,N2O,0.6,kg/TJ,17.240347475999997,kg +e8897078-b522-3c6a-bef2-8cc1e7cf9435,SESCO,II.1.1,Jujuy,AR-Y,annual,2018,bioetanol combustion consumption by to the public,13.8490803,TJ,CH4,10.0,kg/TJ,138.490803,kg +b2bd4747-ef8d-3e8e-ad64-33f116656c51,SESCO,II.1.1,Jujuy,AR-Y,annual,2018,bioetanol combustion consumption by to the public,13.8490803,TJ,N2O,0.6,kg/TJ,8.30944818,kg +37cc177a-6477-3212-816a-e7c24b481db7,SESCO,II.1.1,La Pampa,AR-L,annual,2018,bioetanol combustion consumption by to the public,25.60088025,TJ,CH4,10.0,kg/TJ,256.0088025,kg +272f96ed-5af1-3992-9cd8-7ca0c411d77e,SESCO,II.1.1,La Pampa,AR-L,annual,2018,bioetanol combustion consumption by to the public,25.60088025,TJ,N2O,0.6,kg/TJ,15.360528149999999,kg +a7d925eb-ee83-379e-9e8a-3f5e6f49b81f,SESCO,II.1.1,La Rioja,AR-F,annual,2018,bioetanol combustion consumption by to the public,21.354766289999997,TJ,CH4,10.0,kg/TJ,213.54766289999998,kg +3b94988a-82a3-3658-94d3-364b483d0a3f,SESCO,II.1.1,La Rioja,AR-F,annual,2018,bioetanol combustion consumption by to the public,21.354766289999997,TJ,N2O,0.6,kg/TJ,12.812859773999998,kg +de53c326-943c-3678-9eab-b4d87691a08a,SESCO,II.1.1,Mendoza,AR-M,annual,2018,bioetanol combustion consumption by to the public,97.73795096999999,TJ,CH4,10.0,kg/TJ,977.3795096999999,kg +6a6755e3-341a-3956-adb3-e2cb77d7dbe3,SESCO,II.1.1,Mendoza,AR-M,annual,2018,bioetanol combustion consumption by to the public,97.73795096999999,TJ,N2O,0.6,kg/TJ,58.64277058199999,kg +6b21c03b-c3b1-3524-bc7c-cb6d60ef9473,SESCO,II.1.1,Misiones,AR-N,annual,2018,bioetanol combustion consumption by to the public,91.17428364,TJ,CH4,10.0,kg/TJ,911.7428364,kg +0a75f690-cf81-3039-b981-3dc7f1a7ab0b,SESCO,II.1.1,Misiones,AR-N,annual,2018,bioetanol combustion consumption by to the public,91.17428364,TJ,N2O,0.6,kg/TJ,54.704570184,kg +7e8caef5-210a-31e0-938e-a3732b1d3918,SESCO,II.1.1,Neuquén,AR-Q,annual,2018,bioetanol combustion consumption by to the public,38.976607890000004,TJ,CH4,10.0,kg/TJ,389.7660789,kg +e83c7e09-1920-354c-96d1-cf5d43fc1d3b,SESCO,II.1.1,Neuquén,AR-Q,annual,2018,bioetanol combustion consumption by to the public,38.976607890000004,TJ,N2O,0.6,kg/TJ,23.385964734,kg +ffd90e0c-6152-312a-8dcc-b8087d9ac8ed,SESCO,II.1.1,Rio Negro,AR-R,annual,2018,bioetanol combustion consumption by to the public,12.5836821,TJ,CH4,10.0,kg/TJ,125.83682100000001,kg +914e193a-0a57-357a-b156-2f00a589e09b,SESCO,II.1.1,Rio Negro,AR-R,annual,2018,bioetanol combustion consumption by to the public,12.5836821,TJ,N2O,0.6,kg/TJ,7.55020926,kg +543f2b53-18e6-3b0a-94f4-162fbfa55a26,SESCO,II.1.1,Salta,AR-A,annual,2018,bioetanol combustion consumption by to the public,17.38047861,TJ,CH4,10.0,kg/TJ,173.8047861,kg +bf874cf5-a293-3ef5-b53f-34ad33787867,SESCO,II.1.1,Salta,AR-A,annual,2018,bioetanol combustion consumption by to the public,17.38047861,TJ,N2O,0.6,kg/TJ,10.428287166,kg +3d0b6e22-79ee-37c0-b5ed-29d3cdb20922,SESCO,II.1.1,San Juan,AR-J,annual,2018,bioetanol combustion consumption by to the public,18.25922736,TJ,CH4,10.0,kg/TJ,182.5922736,kg +eb3c6423-cf84-3dd9-817c-4a315d063121,SESCO,II.1.1,San Juan,AR-J,annual,2018,bioetanol combustion consumption by to the public,18.25922736,TJ,N2O,0.6,kg/TJ,10.955536416,kg +19e55d97-9bbe-3edb-aade-00b6456769d8,SESCO,II.1.1,San Luis,AR-D,annual,2018,bioetanol combustion consumption by to the public,9.438933239999999,TJ,CH4,10.0,kg/TJ,94.38933239999999,kg +479fe8a4-5e97-303b-bade-ab89258372e7,SESCO,II.1.1,San Luis,AR-D,annual,2018,bioetanol combustion consumption by to the public,9.438933239999999,TJ,N2O,0.6,kg/TJ,5.663359943999999,kg +595f5095-69ef-3f40-b489-43c8bf9dae29,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,bioetanol combustion consumption by to the public,274.31958312,TJ,CH4,10.0,kg/TJ,2743.1958312,kg +a69be76a-6fe8-3ba2-9fd2-4e4ca566c4eb,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,bioetanol combustion consumption by to the public,274.31958312,TJ,N2O,0.6,kg/TJ,164.591749872,kg +2ea7575b-1f44-3fdd-b367-ef7983a26527,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2018,bioetanol combustion consumption by to the public,27.35603442,TJ,CH4,10.0,kg/TJ,273.56034420000003,kg +618a4bfa-fe20-34eb-af9b-1b613563693b,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2018,bioetanol combustion consumption by to the public,27.35603442,TJ,N2O,0.6,kg/TJ,16.413620652,kg +07316b21-bdfb-3ffe-88a7-b77685d69b31,SESCO,II.1.1,Tucuman,AR-T,annual,2018,bioetanol combustion consumption by to the public,67.04735796,TJ,CH4,10.0,kg/TJ,670.4735796,kg +06c6eca1-4a30-3a87-bbdc-61655194cf68,SESCO,II.1.1,Tucuman,AR-T,annual,2018,bioetanol combustion consumption by to the public,67.04735796,TJ,N2O,0.6,kg/TJ,40.228414776,kg +1500e8f6-5b21-3784-84d9-8bf4485a2d10,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,bioetanol combustion consumption by to the public,665.5994532,TJ,CH4,10.0,kg/TJ,6655.994532,kg +bcec63e4-0c1a-3a78-bda2-9d7ec27252e0,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,bioetanol combustion consumption by to the public,665.5994532,TJ,N2O,0.6,kg/TJ,399.35967192,kg +7448ec3e-0472-3a35-9838-de1038d65fea,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,bioetanol combustion consumption by to the public,265.74533864999995,TJ,CH4,10.0,kg/TJ,2657.4533864999994,kg +f2b420b3-c16d-35c6-850b-b2d1a7506261,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,bioetanol combustion consumption by to the public,265.74533864999995,TJ,N2O,0.6,kg/TJ,159.44720318999995,kg +f9dee4a7-d804-311e-931c-c419a72e3497,SESCO,II.1.1,Catamarca,AR-K,annual,2018,bioetanol combustion consumption by to the public,2.83074264,TJ,CH4,10.0,kg/TJ,28.3074264,kg +9835e430-f82b-3116-ae6a-747da20c8095,SESCO,II.1.1,Catamarca,AR-K,annual,2018,bioetanol combustion consumption by to the public,2.83074264,TJ,N2O,0.6,kg/TJ,1.698445584,kg +d85e33da-5352-35e7-b224-b73f731a5a6c,SESCO,II.1.1,Chaco,AR-H,annual,2018,bioetanol combustion consumption by to the public,27.784863809999997,TJ,CH4,10.0,kg/TJ,277.84863809999996,kg +9ec8b527-ba0c-36c2-8597-2f64662f4823,SESCO,II.1.1,Chaco,AR-H,annual,2018,bioetanol combustion consumption by to the public,27.784863809999997,TJ,N2O,0.6,kg/TJ,16.670918286,kg +c1422360-6a33-3f11-93b7-37168cbcd93c,SESCO,II.1.1,Corrientes,AR-W,annual,2018,bioetanol combustion consumption by to the public,27.660667319999998,TJ,CH4,10.0,kg/TJ,276.6066732,kg +662aaba7-65fb-3618-a23d-65518793d22c,SESCO,II.1.1,Corrientes,AR-W,annual,2018,bioetanol combustion consumption by to the public,27.660667319999998,TJ,N2O,0.6,kg/TJ,16.596400392,kg +42577bec-7f53-327d-b497-296bfe03389d,SESCO,II.1.1,Córdoba,AR-X,annual,2018,bioetanol combustion consumption by to the public,148.24374246,TJ,CH4,10.0,kg/TJ,1482.4374246,kg +da120505-55a6-3b89-9989-4dd484fcb747,SESCO,II.1.1,Córdoba,AR-X,annual,2018,bioetanol combustion consumption by to the public,148.24374246,TJ,N2O,0.6,kg/TJ,88.94624547599999,kg +7677c300-1ce8-3482-8db2-7714967eba86,SESCO,II.1.1,Entre Rios,AR-E,annual,2018,bioetanol combustion consumption by to the public,28.72453914,TJ,CH4,10.0,kg/TJ,287.2453914,kg +13e2a116-02c9-337c-a8ce-cac0f974ae0c,SESCO,II.1.1,Entre Rios,AR-E,annual,2018,bioetanol combustion consumption by to the public,28.72453914,TJ,N2O,0.6,kg/TJ,17.234723484,kg +58bf1a2c-564f-3c38-aaef-25a95701ffef,SESCO,II.1.1,Formosa,AR-P,annual,2018,bioetanol combustion consumption by to the public,13.450714199999998,TJ,CH4,10.0,kg/TJ,134.507142,kg +991cfda9-776b-32d8-9db6-c42ea4e5fdee,SESCO,II.1.1,Formosa,AR-P,annual,2018,bioetanol combustion consumption by to the public,13.450714199999998,TJ,N2O,0.6,kg/TJ,8.070428519999998,kg +bff89808-2915-35f8-88e3-712f4fa055dc,SESCO,II.1.1,Jujuy,AR-Y,annual,2018,bioetanol combustion consumption by to the public,3.20567544,TJ,CH4,10.0,kg/TJ,32.056754399999996,kg +9a204c27-e41a-3a8f-b8df-c6594399e780,SESCO,II.1.1,Jujuy,AR-Y,annual,2018,bioetanol combustion consumption by to the public,3.20567544,TJ,N2O,0.6,kg/TJ,1.923405264,kg +45fa5952-1a0e-3b40-9d6f-fe0af93c6ca8,SESCO,II.1.1,La Pampa,AR-L,annual,2018,bioetanol combustion consumption by to the public,15.70734099,TJ,CH4,10.0,kg/TJ,157.0734099,kg +9c390901-9c1c-3c7b-a0c6-ff2850b0defe,SESCO,II.1.1,La Pampa,AR-L,annual,2018,bioetanol combustion consumption by to the public,15.70734099,TJ,N2O,0.6,kg/TJ,9.424404594,kg +d243efe1-8890-3b37-86b5-ec52612d0af7,SESCO,II.1.1,La Rioja,AR-F,annual,2018,bioetanol combustion consumption by to the public,7.594732529999999,TJ,CH4,10.0,kg/TJ,75.94732529999999,kg +6352dce2-8228-3ab8-9132-630f1aee2e23,SESCO,II.1.1,La Rioja,AR-F,annual,2018,bioetanol combustion consumption by to the public,7.594732529999999,TJ,N2O,0.6,kg/TJ,4.556839517999999,kg +6449e173-7a1b-3d16-a99e-db54270a43b5,SESCO,II.1.1,Mendoza,AR-M,annual,2018,bioetanol combustion consumption by to the public,44.79978294,TJ,CH4,10.0,kg/TJ,447.9978294,kg +1d55c85d-2e80-3d24-b2fe-243426559cbd,SESCO,II.1.1,Mendoza,AR-M,annual,2018,bioetanol combustion consumption by to the public,44.79978294,TJ,N2O,0.6,kg/TJ,26.879869764,kg +0d0d454a-d46d-3878-92c0-5d67d371f52e,SESCO,II.1.1,Misiones,AR-N,annual,2018,bioetanol combustion consumption by to the public,22.652971110000003,TJ,CH4,10.0,kg/TJ,226.52971110000004,kg +f2964d4f-8e10-3a78-9331-994705c5bbfb,SESCO,II.1.1,Misiones,AR-N,annual,2018,bioetanol combustion consumption by to the public,22.652971110000003,TJ,N2O,0.6,kg/TJ,13.591782666000002,kg +d1a8bb26-59f2-30f5-b6ca-1cf45cd80e8d,SESCO,II.1.1,Neuquén,AR-Q,annual,2018,bioetanol combustion consumption by to the public,28.422249569999998,TJ,CH4,10.0,kg/TJ,284.22249569999997,kg +9cffa5a6-0124-3a89-9846-68a3cb1abca7,SESCO,II.1.1,Neuquén,AR-Q,annual,2018,bioetanol combustion consumption by to the public,28.422249569999998,TJ,N2O,0.6,kg/TJ,17.053349741999998,kg +fb6444c7-2f76-3ca2-9c6d-7f9e0fc4d211,SESCO,II.1.1,Rio Negro,AR-R,annual,2018,bioetanol combustion consumption by to the public,6.80034366,TJ,CH4,10.0,kg/TJ,68.0034366,kg +54380087-69b8-3a25-b793-fee81ca8a58e,SESCO,II.1.1,Rio Negro,AR-R,annual,2018,bioetanol combustion consumption by to the public,6.80034366,TJ,N2O,0.6,kg/TJ,4.080206196,kg +a1063a88-958b-34d5-b4b7-f73bcc8efc33,SESCO,II.1.1,Salta,AR-A,annual,2018,bioetanol combustion consumption by to the public,9.05462712,TJ,CH4,10.0,kg/TJ,90.54627119999999,kg +7f56d513-f5d9-3706-94e0-6ffcbd6c5133,SESCO,II.1.1,Salta,AR-A,annual,2018,bioetanol combustion consumption by to the public,9.05462712,TJ,N2O,0.6,kg/TJ,5.432776271999999,kg +602b978b-3d68-3ec7-a0dc-820b51dc476a,SESCO,II.1.1,San Juan,AR-J,annual,2018,bioetanol combustion consumption by to the public,3.77979129,TJ,CH4,10.0,kg/TJ,37.7979129,kg +1305824f-7519-3bfd-a914-1d9689ef9cc6,SESCO,II.1.1,San Juan,AR-J,annual,2018,bioetanol combustion consumption by to the public,3.77979129,TJ,N2O,0.6,kg/TJ,2.267874774,kg +3ab55622-f1f2-3733-8921-ecbb003d458c,SESCO,II.1.1,San Luis,AR-D,annual,2018,bioetanol combustion consumption by to the public,4.74524325,TJ,CH4,10.0,kg/TJ,47.4524325,kg +e518b3a8-7ef0-3fe0-a503-b5b70eead658,SESCO,II.1.1,San Luis,AR-D,annual,2018,bioetanol combustion consumption by to the public,4.74524325,TJ,N2O,0.6,kg/TJ,2.84714595,kg +e3ac06fb-e20d-30e0-ba60-f8cbbc9f62b7,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,bioetanol combustion consumption by to the public,140.46388686,TJ,CH4,10.0,kg/TJ,1404.6388686,kg +b88704fb-8215-3605-83cc-a87354378717,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,bioetanol combustion consumption by to the public,140.46388686,TJ,N2O,0.6,kg/TJ,84.278332116,kg +6b92c0bb-cb71-3aaa-abc6-b32fca899084,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2018,bioetanol combustion consumption by to the public,13.028914799999999,TJ,CH4,10.0,kg/TJ,130.28914799999998,kg +66101669-582e-35b3-a49d-f20117a4def7,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2018,bioetanol combustion consumption by to the public,13.028914799999999,TJ,N2O,0.6,kg/TJ,7.817348879999999,kg +54ade29f-04e2-3bb9-8d19-68766d4af1ba,SESCO,II.1.1,Tucuman,AR-T,annual,2018,bioetanol combustion consumption by to the public,22.4022348,TJ,CH4,10.0,kg/TJ,224.022348,kg +31ab3c51-13ee-3021-90a9-be52d906c37d,SESCO,II.1.1,Tucuman,AR-T,annual,2018,bioetanol combustion consumption by to the public,22.4022348,TJ,N2O,0.6,kg/TJ,13.441340879999998,kg +72793fd5-3940-3b29-8ad9-a21d5d96e7d0,SESCO,II.5.1,Buenos Aires,AR-B,annual,2018,bioetanol combustion consumption by agriculture machines,3.95382806577,TJ,CH4,10.0,kg/TJ,39.5382806577,kg +d4ebec83-aacc-331b-b4bd-85cf5258f49a,SESCO,II.5.1,Buenos Aires,AR-B,annual,2018,bioetanol combustion consumption by agriculture machines,3.95382806577,TJ,N2O,0.6,kg/TJ,2.372296839462,kg +c8db28ee-72d0-3f76-aaca-9f7eb676be87,SESCO,II.5.1,Capital Federal,AR-C,annual,2018,bioetanol combustion consumption by agriculture machines,0.7232359978799999,TJ,CH4,10.0,kg/TJ,7.232359978799999,kg +3708d935-e11b-346f-ba4b-9256116d23de,SESCO,II.5.1,Capital Federal,AR-C,annual,2018,bioetanol combustion consumption by agriculture machines,0.7232359978799999,TJ,N2O,0.6,kg/TJ,0.4339415987279999,kg +071be070-eb10-3d82-ba02-c5e91a1e0598,SESCO,II.5.1,Entre Rios,AR-E,annual,2018,bioetanol combustion consumption by agriculture machines,0.36278497728,TJ,CH4,10.0,kg/TJ,3.6278497728,kg +2b08d5e9-1d6a-3339-83e7-b46ee8f49d16,SESCO,II.5.1,Entre Rios,AR-E,annual,2018,bioetanol combustion consumption by agriculture machines,0.36278497728,TJ,N2O,0.6,kg/TJ,0.21767098636799997,kg +d41ff1ce-3b60-39ae-bcbe-a003b01b75b5,SESCO,II.5.1,Santa Fe,AR-S,annual,2018,bioetanol combustion consumption by agriculture machines,1.6210946040299998,TJ,CH4,10.0,kg/TJ,16.210946040299998,kg +b9a65724-cd3d-35cb-8b16-3dbb175c76d3,SESCO,II.5.1,Santa Fe,AR-S,annual,2018,bioetanol combustion consumption by agriculture machines,1.6210946040299998,TJ,N2O,0.6,kg/TJ,0.9726567624179998,kg +e6c8dbd2-9fe3-3d08-9aaf-1d17bfbb2b36,SESCO,II.5.1,Tucuman,AR-T,annual,2018,bioetanol combustion consumption by agriculture machines,0.38563947477,TJ,CH4,10.0,kg/TJ,3.8563947477,kg +3fd51439-937f-3a21-bd38-7d4358f60f73,SESCO,II.5.1,Tucuman,AR-T,annual,2018,bioetanol combustion consumption by agriculture machines,0.38563947477,TJ,N2O,0.6,kg/TJ,0.23138368486199998,kg +df165dfc-4e83-39f5-9924-96b181d96eee,SESCO,II.5.1,Buenos Aires,AR-B,annual,2018,bioetanol combustion consumption by agriculture machines,0.37788539579999997,TJ,CH4,10.0,kg/TJ,3.7788539579999996,kg +6815d499-2f48-3c57-9a6a-8b3e44dca325,SESCO,II.5.1,Buenos Aires,AR-B,annual,2018,bioetanol combustion consumption by agriculture machines,0.37788539579999997,TJ,N2O,0.6,kg/TJ,0.22673123747999996,kg +6a8cb516-a5d7-34ed-ba3e-e21f37cea78e,SESCO,II.5.1,Capital Federal,AR-C,annual,2018,bioetanol combustion consumption by agriculture machines,0.056235233339999996,TJ,CH4,10.0,kg/TJ,0.5623523334,kg +f871bc26-6c3e-3668-aaf4-c05e1ae914bd,SESCO,II.5.1,Capital Federal,AR-C,annual,2018,bioetanol combustion consumption by agriculture machines,0.056235233339999996,TJ,N2O,0.6,kg/TJ,0.033741140004,kg +8252282c-d7de-38e3-b9fe-adae1dc7e9e2,SESCO,II.5.1,Entre Rios,AR-E,annual,2018,bioetanol combustion consumption by agriculture machines,0.03544755291,TJ,CH4,10.0,kg/TJ,0.3544755291,kg +4f363fe1-d9a1-38b3-878d-b43ae9892db0,SESCO,II.5.1,Entre Rios,AR-E,annual,2018,bioetanol combustion consumption by agriculture machines,0.03544755291,TJ,N2O,0.6,kg/TJ,0.021268531745999998,kg +3e4e9e97-ae99-3f57-af00-fefe75f813d3,SESCO,II.5.1,Santa Fe,AR-S,annual,2018,bioetanol combustion consumption by agriculture machines,0.09346606038,TJ,CH4,10.0,kg/TJ,0.9346606037999999,kg +53978efa-1e5d-3535-bbb9-c5efe3ac268d,SESCO,II.5.1,Santa Fe,AR-S,annual,2018,bioetanol combustion consumption by agriculture machines,0.09346606038,TJ,N2O,0.6,kg/TJ,0.056079636227999996,kg +3d0b66bb-0f09-3bd7-aac8-60db8076d790,SESCO,II.5.1,Tucuman,AR-T,annual,2018,bioetanol combustion consumption by agriculture machines,0.02483226801,TJ,CH4,10.0,kg/TJ,0.24832268009999997,kg +102735f7-bcb8-321e-b587-cac4170a2469,SESCO,II.5.1,Tucuman,AR-T,annual,2018,bioetanol combustion consumption by agriculture machines,0.02483226801,TJ,N2O,0.6,kg/TJ,0.014899360805999998,kg +441407e0-4418-3385-ae15-7fe801780b4e,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,bioetanol combustion consumption by to the public,262.62522053162996,TJ,CH4,10.0,kg/TJ,2626.2522053162998,kg +e89ea21a-f877-34a0-b13b-506e038baa28,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,bioetanol combustion consumption by to the public,262.62522053162996,TJ,N2O,0.6,kg/TJ,157.57513231897798,kg +0154b562-f653-318b-b988-b82ee906b2f7,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,bioetanol combustion consumption by to the public,12.78246912723,TJ,CH4,10.0,kg/TJ,127.8246912723,kg +169100dd-8b43-3262-a1bc-3bc2c54946f5,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,bioetanol combustion consumption by to the public,12.78246912723,TJ,N2O,0.6,kg/TJ,7.6694814763379995,kg +ab954bfe-56ab-3a2b-8131-705fdcf40e14,SESCO,II.1.1,Catamarca,AR-K,annual,2018,bioetanol combustion consumption by to the public,0.9505929044699999,TJ,CH4,10.0,kg/TJ,9.505929044699998,kg +8420ef0e-3d08-3829-9fc9-e3bc98832037,SESCO,II.1.1,Catamarca,AR-K,annual,2018,bioetanol combustion consumption by to the public,0.9505929044699999,TJ,N2O,0.6,kg/TJ,0.570355742682,kg +e5327e72-153d-352e-838c-b4cbeec77b39,SESCO,II.1.1,Chaco,AR-H,annual,2018,bioetanol combustion consumption by to the public,1.36130835357,TJ,CH4,10.0,kg/TJ,13.6130835357,kg +47e6d0d6-8bce-3f1f-92d0-9eb8ed78f528,SESCO,II.1.1,Chaco,AR-H,annual,2018,bioetanol combustion consumption by to the public,1.36130835357,TJ,N2O,0.6,kg/TJ,0.8167850121419999,kg +269b00f8-c9a6-3e0f-9bc3-5e82ee6915c4,SESCO,II.1.1,Chubut,AR-U,annual,2018,bioetanol combustion consumption by to the public,6.694190810999999,TJ,CH4,10.0,kg/TJ,66.94190810999999,kg +a700aa3a-67a4-3dab-a7b0-bb6781563c82,SESCO,II.1.1,Chubut,AR-U,annual,2018,bioetanol combustion consumption by to the public,6.694190810999999,TJ,N2O,0.6,kg/TJ,4.016514486599999,kg +bd82b76b-9cb4-3a10-bd11-97028051e73b,SESCO,II.1.1,Corrientes,AR-W,annual,2018,bioetanol combustion consumption by to the public,9.64591489224,TJ,CH4,10.0,kg/TJ,96.4591489224,kg +0da0325a-b253-30d4-923b-494f456bc9d1,SESCO,II.1.1,Corrientes,AR-W,annual,2018,bioetanol combustion consumption by to the public,9.64591489224,TJ,N2O,0.6,kg/TJ,5.787548935344,kg +5fff1837-8496-3c3c-be69-7e6ca9ad6f8a,SESCO,II.1.1,Córdoba,AR-X,annual,2018,bioetanol combustion consumption by to the public,19.999597461029996,TJ,CH4,10.0,kg/TJ,199.99597461029995,kg +ad0c8439-f94e-3dc9-bcbe-10cac2b51cb9,SESCO,II.1.1,Córdoba,AR-X,annual,2018,bioetanol combustion consumption by to the public,19.999597461029996,TJ,N2O,0.6,kg/TJ,11.999758476617997,kg +6170dfdb-adfe-31f0-bab2-09404fe89eaf,SESCO,II.1.1,Entre Rios,AR-E,annual,2018,bioetanol combustion consumption by to the public,17.911723237649998,TJ,CH4,10.0,kg/TJ,179.11723237649997,kg +d0633aef-d019-3cc8-b9af-a92731c641b7,SESCO,II.1.1,Entre Rios,AR-E,annual,2018,bioetanol combustion consumption by to the public,17.911723237649998,TJ,N2O,0.6,kg/TJ,10.747033942589999,kg +d756804a-0e71-32ba-8172-6e19f2911eff,SESCO,II.1.1,Formosa,AR-P,annual,2018,bioetanol combustion consumption by to the public,0.34412035383,TJ,CH4,10.0,kg/TJ,3.4412035383,kg +54e540bc-3a07-3001-8c72-bc2e632ade23,SESCO,II.1.1,Formosa,AR-P,annual,2018,bioetanol combustion consumption by to the public,0.34412035383,TJ,N2O,0.6,kg/TJ,0.206472212298,kg +5bce4a0f-b794-3efe-85e5-fb2fb0c28949,SESCO,II.1.1,Jujuy,AR-Y,annual,2018,bioetanol combustion consumption by to the public,2.4410866976100003,TJ,CH4,10.0,kg/TJ,24.410866976100003,kg +58830290-40b6-3ae7-8591-7cd81c71676d,SESCO,II.1.1,Jujuy,AR-Y,annual,2018,bioetanol combustion consumption by to the public,2.4410866976100003,TJ,N2O,0.6,kg/TJ,1.4646520185660001,kg +8e9d87a1-38ad-36a4-ba39-ea1cf1adc622,SESCO,II.1.1,La Pampa,AR-L,annual,2018,bioetanol combustion consumption by to the public,15.20116062003,TJ,CH4,10.0,kg/TJ,152.0116062003,kg +24b2e280-237e-3a42-9d4d-b2e0d4db765b,SESCO,II.1.1,La Pampa,AR-L,annual,2018,bioetanol combustion consumption by to the public,15.20116062003,TJ,N2O,0.6,kg/TJ,9.120696372018,kg +b899bf53-3cbf-396b-b09b-238e271605e5,SESCO,II.1.1,Mendoza,AR-M,annual,2018,bioetanol combustion consumption by to the public,1.09998956529,TJ,CH4,10.0,kg/TJ,10.999895652900001,kg +cfc91de0-80c6-3b56-a046-f45e1d72c252,SESCO,II.1.1,Mendoza,AR-M,annual,2018,bioetanol combustion consumption by to the public,1.09998956529,TJ,N2O,0.6,kg/TJ,0.659993739174,kg +2f8fc6ba-9c57-39ee-be61-dad334564154,SESCO,II.1.1,Misiones,AR-N,annual,2018,bioetanol combustion consumption by to the public,4.236555516929999,TJ,CH4,10.0,kg/TJ,42.365555169299995,kg +126ec0c4-4096-3089-b854-429fa6f1816a,SESCO,II.1.1,Misiones,AR-N,annual,2018,bioetanol combustion consumption by to the public,4.236555516929999,TJ,N2O,0.6,kg/TJ,2.5419333101579995,kg +92833b54-55ce-3f89-8482-256059bec881,SESCO,II.1.1,Neuquén,AR-Q,annual,2018,bioetanol combustion consumption by to the public,23.331374518320004,TJ,CH4,10.0,kg/TJ,233.31374518320004,kg +2493dba6-a31b-3b7d-a822-1951b7a06e47,SESCO,II.1.1,Neuquén,AR-Q,annual,2018,bioetanol combustion consumption by to the public,23.331374518320004,TJ,N2O,0.6,kg/TJ,13.998824710992002,kg +afd68bd5-eb82-39b2-866b-abfa97f77e75,SESCO,II.1.1,Rio Negro,AR-R,annual,2018,bioetanol combustion consumption by to the public,43.223987248200004,TJ,CH4,10.0,kg/TJ,432.239872482,kg +0755c56c-8dd7-3466-b29f-a977b32e9cf4,SESCO,II.1.1,Rio Negro,AR-R,annual,2018,bioetanol combustion consumption by to the public,43.223987248200004,TJ,N2O,0.6,kg/TJ,25.934392348920003,kg +f9a01cbd-029e-3c26-ad76-a5d7868fc582,SESCO,II.1.1,San Luis,AR-D,annual,2018,bioetanol combustion consumption by to the public,2.2236350469299997,TJ,CH4,10.0,kg/TJ,22.236350469299996,kg +15f17b66-c8d9-3075-833a-ff906844c8bf,SESCO,II.1.1,San Luis,AR-D,annual,2018,bioetanol combustion consumption by to the public,2.2236350469299997,TJ,N2O,0.6,kg/TJ,1.3341810281579998,kg +899a5550-9b5a-3601-b1c8-9a83fa6e3ddb,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,bioetanol combustion consumption by to the public,35.03266867683,TJ,CH4,10.0,kg/TJ,350.32668676829996,kg +d0cd59e8-160d-3d5e-97ec-8cca71f20268,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,bioetanol combustion consumption by to the public,35.03266867683,TJ,N2O,0.6,kg/TJ,21.019601206098,kg +7207a159-bb68-3ca5-8103-c02a6216af4f,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2018,bioetanol combustion consumption by to the public,11.125289584529998,TJ,CH4,10.0,kg/TJ,111.25289584529997,kg +67bd34ea-4136-3bd3-9086-8a0a43e68f12,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2018,bioetanol combustion consumption by to the public,11.125289584529998,TJ,N2O,0.6,kg/TJ,6.675173750717999,kg +48afe241-e331-3505-a609-6be99cd70b7d,SESCO,II.1.1,Tucuman,AR-T,annual,2018,bioetanol combustion consumption by to the public,1.85114165346,TJ,CH4,10.0,kg/TJ,18.511416534600002,kg +df3908b4-6442-3056-a938-a6fed06553f4,SESCO,II.1.1,Tucuman,AR-T,annual,2018,bioetanol combustion consumption by to the public,1.85114165346,TJ,N2O,0.6,kg/TJ,1.110684992076,kg +b365cc0f-a541-3a67-b046-4dc5845a4e94,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,bioetanol combustion consumption by to the public,44.219780645040004,TJ,CH4,10.0,kg/TJ,442.19780645040004,kg +335c22fa-7dd7-3718-91c3-bba55d020179,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,bioetanol combustion consumption by to the public,44.219780645040004,TJ,N2O,0.6,kg/TJ,26.531868387024,kg +eb8c175e-59ca-3e18-ae09-5b0db1ee94e8,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,bioetanol combustion consumption by to the public,2.14502569875,TJ,CH4,10.0,kg/TJ,21.4502569875,kg +be737e36-f8b2-3711-b037-a14829661284,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,bioetanol combustion consumption by to the public,2.14502569875,TJ,N2O,0.6,kg/TJ,1.28701541925,kg +e7138a74-f7dd-3b69-843e-af0120633417,SESCO,II.1.1,Catamarca,AR-K,annual,2018,bioetanol combustion consumption by to the public,0.1293752493,TJ,CH4,10.0,kg/TJ,1.293752493,kg +dd00d326-0669-3b73-81c7-1ce849fe4561,SESCO,II.1.1,Catamarca,AR-K,annual,2018,bioetanol combustion consumption by to the public,0.1293752493,TJ,N2O,0.6,kg/TJ,0.07762514958,kg +096394fe-909c-34e6-a780-96060ed829ba,SESCO,II.1.1,Chaco,AR-H,annual,2018,bioetanol combustion consumption by to the public,0.22744595313,TJ,CH4,10.0,kg/TJ,2.2744595313,kg +86031ca9-0123-343b-8332-cf0b0ef9bfe9,SESCO,II.1.1,Chaco,AR-H,annual,2018,bioetanol combustion consumption by to the public,0.22744595313,TJ,N2O,0.6,kg/TJ,0.136467571878,kg +1f7aaa66-3781-3514-bf45-f130fe7d6caf,SESCO,II.1.1,Chubut,AR-U,annual,2018,bioetanol combustion consumption by to the public,0.9999246876300001,TJ,CH4,10.0,kg/TJ,9.9992468763,kg +84d94ea0-b508-34f2-8cd4-0806871e2dba,SESCO,II.1.1,Chubut,AR-U,annual,2018,bioetanol combustion consumption by to the public,0.9999246876300001,TJ,N2O,0.6,kg/TJ,0.599954812578,kg +879e7264-4ea5-3a1e-9682-ee698f8320e8,SESCO,II.1.1,Corrientes,AR-W,annual,2018,bioetanol combustion consumption by to the public,0.7334435433600001,TJ,CH4,10.0,kg/TJ,7.3344354336,kg +d9c6269d-207b-3ed5-99c0-83b24e21c9be,SESCO,II.1.1,Corrientes,AR-W,annual,2018,bioetanol combustion consumption by to the public,0.7334435433600001,TJ,N2O,0.6,kg/TJ,0.44006612601600004,kg +19653ebc-af02-35b4-ae09-984b93946b58,SESCO,II.1.1,Córdoba,AR-X,annual,2018,bioetanol combustion consumption by to the public,4.408502042339999,TJ,CH4,10.0,kg/TJ,44.085020423399996,kg +318d44a5-3ffb-375a-8f79-170236365b81,SESCO,II.1.1,Córdoba,AR-X,annual,2018,bioetanol combustion consumption by to the public,4.408502042339999,TJ,N2O,0.6,kg/TJ,2.6451012254039994,kg +05fe3493-5c9a-3cdc-afe8-4441f41bf8ff,SESCO,II.1.1,Entre Rios,AR-E,annual,2018,bioetanol combustion consumption by to the public,3.69749822706,TJ,CH4,10.0,kg/TJ,36.9749822706,kg +67ca3755-4b0e-3480-a07e-df08b213230c,SESCO,II.1.1,Entre Rios,AR-E,annual,2018,bioetanol combustion consumption by to the public,3.69749822706,TJ,N2O,0.6,kg/TJ,2.218498936236,kg +c38ca046-126a-3ca3-b855-317d201b23af,SESCO,II.1.1,Formosa,AR-P,annual,2018,bioetanol combustion consumption by to the public,0.08439268661999998,TJ,CH4,10.0,kg/TJ,0.8439268661999998,kg +a667e95e-3c9d-3576-9515-9324a1e29e57,SESCO,II.1.1,Formosa,AR-P,annual,2018,bioetanol combustion consumption by to the public,0.08439268661999998,TJ,N2O,0.6,kg/TJ,0.050635611971999984,kg +a85218be-d793-3975-8a7f-7ea6f0710c7e,SESCO,II.1.1,Jujuy,AR-Y,annual,2018,bioetanol combustion consumption by to the public,0.023583273119999998,TJ,CH4,10.0,kg/TJ,0.23583273119999998,kg +e425b90f-f44b-33d0-adcc-552cc996e188,SESCO,II.1.1,Jujuy,AR-Y,annual,2018,bioetanol combustion consumption by to the public,0.023583273119999998,TJ,N2O,0.6,kg/TJ,0.014149963871999998,kg +8bcb9965-6213-35a4-b671-86bf2be366b9,SESCO,II.1.1,La Pampa,AR-L,annual,2018,bioetanol combustion consumption by to the public,4.47413637231,TJ,CH4,10.0,kg/TJ,44.7413637231,kg +ff25260b-691f-34ae-bccc-36ee3d27208b,SESCO,II.1.1,La Pampa,AR-L,annual,2018,bioetanol combustion consumption by to the public,4.47413637231,TJ,N2O,0.6,kg/TJ,2.684481823386,kg +3b71ba44-1b12-3465-9fd1-b5d9e816a293,SESCO,II.1.1,Mendoza,AR-M,annual,2018,bioetanol combustion consumption by to the public,0.08581743126,TJ,CH4,10.0,kg/TJ,0.8581743125999999,kg +4beac6be-0356-3c85-8856-376fcc4bc96e,SESCO,II.1.1,Mendoza,AR-M,annual,2018,bioetanol combustion consumption by to the public,0.08581743126,TJ,N2O,0.6,kg/TJ,0.051490458755999995,kg +335cdccc-27e9-3cfb-b5f0-ea192de5eb48,SESCO,II.1.1,Misiones,AR-N,annual,2018,bioetanol combustion consumption by to the public,0.40013297082,TJ,CH4,10.0,kg/TJ,4.0013297082,kg +7f85a701-579e-3efd-b738-c449ce2b2bed,SESCO,II.1.1,Misiones,AR-N,annual,2018,bioetanol combustion consumption by to the public,0.40013297082,TJ,N2O,0.6,kg/TJ,0.240079782492,kg +db1e43f8-baec-387b-b9b8-3ef1dcbbdb56,SESCO,II.1.1,Neuquén,AR-Q,annual,2018,bioetanol combustion consumption by to the public,9.95785663851,TJ,CH4,10.0,kg/TJ,99.5785663851,kg +fd0b1882-b1c8-33d0-93fe-d2adfc22a525,SESCO,II.1.1,Neuquén,AR-Q,annual,2018,bioetanol combustion consumption by to the public,9.95785663851,TJ,N2O,0.6,kg/TJ,5.974713983106,kg +0abb18f5-152b-369c-913c-7ee025bbc39c,SESCO,II.1.1,Rio Negro,AR-R,annual,2018,bioetanol combustion consumption by to the public,7.81480871028,TJ,CH4,10.0,kg/TJ,78.1480871028,kg +28f77012-6168-3eea-ab2f-06517960f0b4,SESCO,II.1.1,Rio Negro,AR-R,annual,2018,bioetanol combustion consumption by to the public,7.81480871028,TJ,N2O,0.6,kg/TJ,4.688885226168,kg +dcaccd79-8205-35b7-85a2-acbec8437ab2,SESCO,II.1.1,San Luis,AR-D,annual,2018,bioetanol combustion consumption by to the public,0.7854279760799999,TJ,CH4,10.0,kg/TJ,7.854279760799999,kg +9a511eef-a40e-31a0-bd77-d877bdddd2ad,SESCO,II.1.1,San Luis,AR-D,annual,2018,bioetanol combustion consumption by to the public,0.7854279760799999,TJ,N2O,0.6,kg/TJ,0.47125678564799994,kg +c6a6429b-5514-3900-a1dd-d8a798c79f1f,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,bioetanol combustion consumption by to the public,9.03980321442,TJ,CH4,10.0,kg/TJ,90.39803214419999,kg +41943d26-1dcf-30c0-88dc-11b9ac16b42b,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,bioetanol combustion consumption by to the public,9.03980321442,TJ,N2O,0.6,kg/TJ,5.4238819286519995,kg +a78d95bd-484d-35e2-af0f-6887218782ef,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2018,bioetanol combustion consumption by to the public,2.1514112729999995,TJ,CH4,10.0,kg/TJ,21.514112729999994,kg +8547d8f7-d4b9-3dce-a6c4-62d887d7c607,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2018,bioetanol combustion consumption by to the public,2.1514112729999995,TJ,N2O,0.6,kg/TJ,1.2908467637999996,kg +f92b5c77-0a77-3a5a-8bd9-cffa64eef426,SESCO,II.1.1,Tucuman,AR-T,annual,2018,bioetanol combustion consumption by to the public,0.07242295698,TJ,CH4,10.0,kg/TJ,0.7242295698,kg +1c55bbdf-f4b3-3812-b6da-b155e108fcd3,SESCO,II.1.1,Tucuman,AR-T,annual,2018,bioetanol combustion consumption by to the public,0.07242295698,TJ,N2O,0.6,kg/TJ,0.043453774188,kg +7ae3597c-b953-3e9d-9460-d6521d8e8690,SESCO,II.5.1,Buenos Aires,AR-B,annual,2018,bioetanol combustion consumption by agriculture machines,21.15792657,TJ,CH4,10.0,kg/TJ,211.5792657,kg +12c7f9b2-4d25-3cde-89d8-0ccc882319ad,SESCO,II.5.1,Buenos Aires,AR-B,annual,2018,bioetanol combustion consumption by agriculture machines,21.15792657,TJ,N2O,0.6,kg/TJ,12.694755942,kg +ae18cec6-a5f8-3978-a35d-0e8a003e9389,SESCO,II.5.1,Mendoza,AR-M,annual,2018,bioetanol combustion consumption by agriculture machines,1.53253782,TJ,CH4,10.0,kg/TJ,15.3253782,kg +733ddafd-f23c-39cf-8bc9-b318f741a48c,SESCO,II.5.1,Mendoza,AR-M,annual,2018,bioetanol combustion consumption by agriculture machines,1.53253782,TJ,N2O,0.6,kg/TJ,0.9195226919999999,kg +080f325d-712b-38bb-9f60-017e84ddf552,SESCO,II.5.1,Misiones,AR-N,annual,2018,bioetanol combustion consumption by agriculture machines,0.08435988,TJ,CH4,10.0,kg/TJ,0.8435988,kg +a346fb82-933b-396c-b531-d4cb415396af,SESCO,II.5.1,Misiones,AR-N,annual,2018,bioetanol combustion consumption by agriculture machines,0.08435988,TJ,N2O,0.6,kg/TJ,0.050615928,kg +31da5cf0-cdfb-3dd0-a7f6-c3dca034f33f,SESCO,II.5.1,Salta,AR-A,annual,2018,bioetanol combustion consumption by agriculture machines,0.0468666,TJ,CH4,10.0,kg/TJ,0.468666,kg +07a56451-a396-3e00-add2-e94fcb0f15c9,SESCO,II.5.1,Salta,AR-A,annual,2018,bioetanol combustion consumption by agriculture machines,0.0468666,TJ,N2O,0.6,kg/TJ,0.02811996,kg +72fe89f7-e109-344f-a148-088233c38ba9,SESCO,II.5.1,Santa Fe,AR-S,annual,2018,bioetanol combustion consumption by agriculture machines,9.43658991,TJ,CH4,10.0,kg/TJ,94.36589910000001,kg +89045b93-796f-3785-aca0-58cfb33dc93d,SESCO,II.5.1,Santa Fe,AR-S,annual,2018,bioetanol combustion consumption by agriculture machines,9.43658991,TJ,N2O,0.6,kg/TJ,5.661953946,kg +3bf27370-d864-37ca-91a1-70ce5f09b1f4,SESCO,II.5.1,Buenos Aires,AR-B,annual,2018,bioetanol combustion consumption by agriculture machines,0.09607653,TJ,CH4,10.0,kg/TJ,0.9607652999999999,kg +4617a34e-3dbf-3539-8e07-a8318086a04b,SESCO,II.5.1,Buenos Aires,AR-B,annual,2018,bioetanol combustion consumption by agriculture machines,0.09607653,TJ,N2O,0.6,kg/TJ,0.05764591799999999,kg +d50e0e0b-1f4b-3eaa-b6a7-61dea83d13fa,SESCO,II.5.1,Santa Fe,AR-S,annual,2018,bioetanol combustion consumption by agriculture machines,0.03983661,TJ,CH4,10.0,kg/TJ,0.3983661,kg +45c7e2b3-745e-373d-98b8-fbac230427e3,SESCO,II.5.1,Santa Fe,AR-S,annual,2018,bioetanol combustion consumption by agriculture machines,0.03983661,TJ,N2O,0.6,kg/TJ,0.023901966,kg +2ba4713e-2d19-3b44-8fb3-d9a463e71696,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,bioetanol combustion consumption by to the public,2846.0586448799995,TJ,CH4,10.0,kg/TJ,28460.586448799993,kg +994199fe-9401-3aad-aa65-1efa1ede9792,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,bioetanol combustion consumption by to the public,2846.0586448799995,TJ,N2O,0.6,kg/TJ,1707.6351869279997,kg +b5e8d0d9-8423-3d9d-a4b9-ca46f3213a8e,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,bioetanol combustion consumption by to the public,603.7355412000001,TJ,CH4,10.0,kg/TJ,6037.355412000001,kg +b01cf382-be20-3652-8371-95c02b259806,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,bioetanol combustion consumption by to the public,603.7355412000001,TJ,N2O,0.6,kg/TJ,362.24132472,kg +78aa86b9-6f7a-389f-b7ad-b04d6fe54709,SESCO,II.1.1,Catamarca,AR-K,annual,2018,bioetanol combustion consumption by to the public,55.50645771,TJ,CH4,10.0,kg/TJ,555.0645771,kg +214fc425-8d4c-389a-950e-ad264b1160f6,SESCO,II.1.1,Catamarca,AR-K,annual,2018,bioetanol combustion consumption by to the public,55.50645771,TJ,N2O,0.6,kg/TJ,33.303874625999995,kg +c77987c8-a847-3133-989a-f8f0d3b2d6ad,SESCO,II.1.1,Chaco,AR-H,annual,2018,bioetanol combustion consumption by to the public,179.09836857,TJ,CH4,10.0,kg/TJ,1790.9836857,kg +feac2ce7-5b43-3927-a15b-927888087b3e,SESCO,II.1.1,Chaco,AR-H,annual,2018,bioetanol combustion consumption by to the public,179.09836857,TJ,N2O,0.6,kg/TJ,107.459021142,kg +c00d3dfb-c1e0-3c6e-b725-d05ad7ecd089,SESCO,II.1.1,Chubut,AR-U,annual,2018,bioetanol combustion consumption by to the public,249.31390868999998,TJ,CH4,10.0,kg/TJ,2493.1390868999997,kg +37d21f3b-a1f0-32b7-b25d-b08589ee2da0,SESCO,II.1.1,Chubut,AR-U,annual,2018,bioetanol combustion consumption by to the public,249.31390868999998,TJ,N2O,0.6,kg/TJ,149.588345214,kg +8c47ca1c-4049-30fd-a249-04737a7bd64c,SESCO,II.1.1,Corrientes,AR-W,annual,2018,bioetanol combustion consumption by to the public,181.20970889999998,TJ,CH4,10.0,kg/TJ,1812.0970889999999,kg +28dc23ba-3807-324b-9766-668ba18849b8,SESCO,II.1.1,Corrientes,AR-W,annual,2018,bioetanol combustion consumption by to the public,181.20970889999998,TJ,N2O,0.6,kg/TJ,108.72582533999999,kg +6a601fc6-1c1a-3cd0-9809-aa1df4e6817e,SESCO,II.1.1,Córdoba,AR-X,annual,2018,bioetanol combustion consumption by to the public,683.37595458,TJ,CH4,10.0,kg/TJ,6833.7595458,kg +5d62e6fb-aa1c-3593-914f-e901921144a5,SESCO,II.1.1,Córdoba,AR-X,annual,2018,bioetanol combustion consumption by to the public,683.37595458,TJ,N2O,0.6,kg/TJ,410.025572748,kg +0232d628-390d-38c3-a31b-0f9527db8349,SESCO,II.1.1,Entre Rios,AR-E,annual,2018,bioetanol combustion consumption by to the public,246.85106886,TJ,CH4,10.0,kg/TJ,2468.5106886,kg +e3c3b99e-ea7c-3c5d-8cc9-269fd572c0d8,SESCO,II.1.1,Entre Rios,AR-E,annual,2018,bioetanol combustion consumption by to the public,246.85106886,TJ,N2O,0.6,kg/TJ,148.110641316,kg +0449d847-a7c8-3c6a-9e79-b4c1031d1435,SESCO,II.1.1,Formosa,AR-P,annual,2018,bioetanol combustion consumption by to the public,67.32855756,TJ,CH4,10.0,kg/TJ,673.2855755999999,kg +cafefda4-c532-3319-8864-d676a89f3ec6,SESCO,II.1.1,Formosa,AR-P,annual,2018,bioetanol combustion consumption by to the public,67.32855756,TJ,N2O,0.6,kg/TJ,40.397134535999996,kg +37ec1033-3142-3e05-91bb-007362b438b1,SESCO,II.1.1,Jujuy,AR-Y,annual,2018,bioetanol combustion consumption by to the public,107.96189976,TJ,CH4,10.0,kg/TJ,1079.6189976,kg +e2ab5e21-2d95-30c6-8331-f0c5b2f5b6e3,SESCO,II.1.1,Jujuy,AR-Y,annual,2018,bioetanol combustion consumption by to the public,107.96189976,TJ,N2O,0.6,kg/TJ,64.77713985599999,kg +a1b7e1ef-fba3-3700-95b9-bc385039dcfd,SESCO,II.1.1,La Pampa,AR-L,annual,2018,bioetanol combustion consumption by to the public,123.66221076,TJ,CH4,10.0,kg/TJ,1236.6221076,kg +c56d8437-98d8-3ae9-9fc4-b9a2d3d71dca,SESCO,II.1.1,La Pampa,AR-L,annual,2018,bioetanol combustion consumption by to the public,123.66221076,TJ,N2O,0.6,kg/TJ,74.197326456,kg +0e43597a-5ca5-3661-9826-74d1e29d2d77,SESCO,II.1.1,La Rioja,AR-F,annual,2018,bioetanol combustion consumption by to the public,74.31636762,TJ,CH4,10.0,kg/TJ,743.1636761999999,kg +df5a8bae-c1a9-3903-be9e-7b42cd22f3a6,SESCO,II.1.1,La Rioja,AR-F,annual,2018,bioetanol combustion consumption by to the public,74.31636762,TJ,N2O,0.6,kg/TJ,44.589820571999994,kg +81fa7dfa-c1c4-3d41-aadf-acb3668c075e,SESCO,II.1.1,Mendoza,AR-M,annual,2018,bioetanol combustion consumption by to the public,373.60881854999997,TJ,CH4,10.0,kg/TJ,3736.0881855,kg +8a9bbadd-d5fb-3a4b-9295-0ceab38ee125,SESCO,II.1.1,Mendoza,AR-M,annual,2018,bioetanol combustion consumption by to the public,373.60881854999997,TJ,N2O,0.6,kg/TJ,224.16529112999999,kg +c8b6c80a-df1e-3ef6-b044-5a28201248d0,SESCO,II.1.1,Misiones,AR-N,annual,2018,bioetanol combustion consumption by to the public,244.79362512,TJ,CH4,10.0,kg/TJ,2447.9362512,kg +2b0b818f-7609-3b96-8ce1-0c548601a4c3,SESCO,II.1.1,Misiones,AR-N,annual,2018,bioetanol combustion consumption by to the public,244.79362512,TJ,N2O,0.6,kg/TJ,146.876175072,kg +0f338f68-3317-3a7d-a8c8-e3c9ed86f473,SESCO,II.1.1,Neuquén,AR-Q,annual,2018,bioetanol combustion consumption by to the public,240.13274174999998,TJ,CH4,10.0,kg/TJ,2401.3274174999997,kg +8d0946ee-e103-3ac8-b77d-815d1764cf72,SESCO,II.1.1,Neuquén,AR-Q,annual,2018,bioetanol combustion consumption by to the public,240.13274174999998,TJ,N2O,0.6,kg/TJ,144.07964504999998,kg +37f8fa8a-9c7a-3d01-9ddc-7c85650a59e4,SESCO,II.1.1,Rio Negro,AR-R,annual,2018,bioetanol combustion consumption by to the public,238.22058446999998,TJ,CH4,10.0,kg/TJ,2382.2058447,kg +6f38c8b0-0bbe-3b55-9b6a-99e8cf90a9fa,SESCO,II.1.1,Rio Negro,AR-R,annual,2018,bioetanol combustion consumption by to the public,238.22058446999998,TJ,N2O,0.6,kg/TJ,142.932350682,kg +db376b19-ed3e-30a8-9127-3f51bb2e8d35,SESCO,II.1.1,Salta,AR-A,annual,2018,bioetanol combustion consumption by to the public,242.34484526999998,TJ,CH4,10.0,kg/TJ,2423.4484527,kg +0cdf2d69-a7db-3c78-a33a-88fa48c307f1,SESCO,II.1.1,Salta,AR-A,annual,2018,bioetanol combustion consumption by to the public,242.34484526999998,TJ,N2O,0.6,kg/TJ,145.40690716199998,kg +a834833d-4a4f-3da1-8e81-ef2c92f9d8e2,SESCO,II.1.1,San Juan,AR-J,annual,2018,bioetanol combustion consumption by to the public,127.43731539,TJ,CH4,10.0,kg/TJ,1274.3731539,kg +4bc44a97-0009-38e3-8fff-919b2654802d,SESCO,II.1.1,San Juan,AR-J,annual,2018,bioetanol combustion consumption by to the public,127.43731539,TJ,N2O,0.6,kg/TJ,76.462389234,kg +4b4de417-a3d5-3ac8-b04d-c6cd286a42d6,SESCO,II.1.1,San Luis,AR-D,annual,2018,bioetanol combustion consumption by to the public,105.31159353,TJ,CH4,10.0,kg/TJ,1053.1159353,kg +1522ed2c-592a-3f4b-8224-22465c1e9501,SESCO,II.1.1,San Luis,AR-D,annual,2018,bioetanol combustion consumption by to the public,105.31159353,TJ,N2O,0.6,kg/TJ,63.186956118,kg +9a8f69dd-ca5e-32cd-b56c-426cf61e39bf,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2018,bioetanol combustion consumption by to the public,169.3290258,TJ,CH4,10.0,kg/TJ,1693.290258,kg +2ec9bca0-b064-34d3-bde8-e6bd92875d3d,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2018,bioetanol combustion consumption by to the public,169.3290258,TJ,N2O,0.6,kg/TJ,101.59741548000001,kg +985ee9d9-1b08-3e32-8666-f6daab26c2d1,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,bioetanol combustion consumption by to the public,516.5074252799999,TJ,CH4,10.0,kg/TJ,5165.074252799999,kg +ceb0cd58-7621-320b-9df3-9c1eb152b745,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,bioetanol combustion consumption by to the public,516.5074252799999,TJ,N2O,0.6,kg/TJ,309.9044551679999,kg +d3b382e4-82a9-3cbf-9e9f-a0e4c4cc2a29,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2018,bioetanol combustion consumption by to the public,107.67367017000001,TJ,CH4,10.0,kg/TJ,1076.7367017000001,kg +d136b708-e101-364d-bd2d-8b3ef29d44c1,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2018,bioetanol combustion consumption by to the public,107.67367017000001,TJ,N2O,0.6,kg/TJ,64.604202102,kg +c6221263-be2b-3f8f-a01e-9b4ae92d4fae,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2018,bioetanol combustion consumption by to the public,126.09224396999998,TJ,CH4,10.0,kg/TJ,1260.9224396999998,kg +cff54dcc-90a3-3f6a-8466-5cd7e96ddf73,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2018,bioetanol combustion consumption by to the public,126.09224396999998,TJ,N2O,0.6,kg/TJ,75.65534638199999,kg +8f5580c9-2af4-3b3d-a0cf-eaf24a969f2f,SESCO,II.1.1,Tucuman,AR-T,annual,2018,bioetanol combustion consumption by to the public,193.12788528,TJ,CH4,10.0,kg/TJ,1931.2788527999999,kg +055e11d0-8576-3205-b9a6-86c978ff2802,SESCO,II.1.1,Tucuman,AR-T,annual,2018,bioetanol combustion consumption by to the public,193.12788528,TJ,N2O,0.6,kg/TJ,115.87673116799999,kg +ab649867-9b61-3b2f-9609-5f68cfa63ab0,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,bioetanol combustion consumption by to the public,1300.4544168,TJ,CH4,10.0,kg/TJ,13004.544168,kg +2990f3f6-6491-34f4-a6e2-99839da6cc46,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,bioetanol combustion consumption by to the public,1300.4544168,TJ,N2O,0.6,kg/TJ,780.27265008,kg +2311ff1c-99a4-331b-8c14-cc41f3103c86,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,bioetanol combustion consumption by to the public,303.85725777,TJ,CH4,10.0,kg/TJ,3038.5725777,kg +9c2b3236-261c-3390-b652-0b6a08361978,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,bioetanol combustion consumption by to the public,303.85725777,TJ,N2O,0.6,kg/TJ,182.314354662,kg +21ce8b4c-27be-30eb-9ebb-e5ac7063367a,SESCO,II.1.1,Catamarca,AR-K,annual,2018,bioetanol combustion consumption by to the public,25.56338697,TJ,CH4,10.0,kg/TJ,255.6338697,kg +4d042314-348e-36c8-8d91-59e24624ee8b,SESCO,II.1.1,Catamarca,AR-K,annual,2018,bioetanol combustion consumption by to the public,25.56338697,TJ,N2O,0.6,kg/TJ,15.338032182,kg +63c29e23-8d57-321f-ba01-d73bdfebfd99,SESCO,II.1.1,Chaco,AR-H,annual,2018,bioetanol combustion consumption by to the public,77.09087034,TJ,CH4,10.0,kg/TJ,770.9087033999999,kg +d0b134eb-cc87-3914-a9e0-bde58e8a3b87,SESCO,II.1.1,Chaco,AR-H,annual,2018,bioetanol combustion consumption by to the public,77.09087034,TJ,N2O,0.6,kg/TJ,46.254522204,kg +988ec338-4c80-37ae-9b8a-76cfcb2fb0ac,SESCO,II.1.1,Chubut,AR-U,annual,2018,bioetanol combustion consumption by to the public,110.49972615,TJ,CH4,10.0,kg/TJ,1104.9972615,kg +d16007ef-ad87-3046-be9d-bb3acc22e965,SESCO,II.1.1,Chubut,AR-U,annual,2018,bioetanol combustion consumption by to the public,110.49972615,TJ,N2O,0.6,kg/TJ,66.29983569,kg +4a2e202b-ae33-3114-9a84-9509718b3384,SESCO,II.1.1,Corrientes,AR-W,annual,2018,bioetanol combustion consumption by to the public,84.93399584999999,TJ,CH4,10.0,kg/TJ,849.3399584999999,kg +707760db-e763-3fa1-a40f-610cef9bd99a,SESCO,II.1.1,Corrientes,AR-W,annual,2018,bioetanol combustion consumption by to the public,84.93399584999999,TJ,N2O,0.6,kg/TJ,50.96039750999999,kg +ced9323f-a523-3da6-9b1a-dbd05c36c916,SESCO,II.1.1,Córdoba,AR-X,annual,2018,bioetanol combustion consumption by to the public,298.97141472,TJ,CH4,10.0,kg/TJ,2989.7141472,kg +17de4877-8686-3ae7-b5c1-eb1122ead482,SESCO,II.1.1,Córdoba,AR-X,annual,2018,bioetanol combustion consumption by to the public,298.97141472,TJ,N2O,0.6,kg/TJ,179.38284883199998,kg +498082da-41ef-3b80-9f03-9817736c15b5,SESCO,II.1.1,Entre Rios,AR-E,annual,2018,bioetanol combustion consumption by to the public,112.1752071,TJ,CH4,10.0,kg/TJ,1121.752071,kg +8463143d-fa89-3359-b957-7ee1bce8682e,SESCO,II.1.1,Entre Rios,AR-E,annual,2018,bioetanol combustion consumption by to the public,112.1752071,TJ,N2O,0.6,kg/TJ,67.30512426,kg +c810eb9e-f4f4-3eba-b382-876d2e70403a,SESCO,II.1.1,Formosa,AR-P,annual,2018,bioetanol combustion consumption by to the public,21.729699089999997,TJ,CH4,10.0,kg/TJ,217.29699089999997,kg +f696e06e-3d31-32bc-8c4b-9ec284724cf0,SESCO,II.1.1,Formosa,AR-P,annual,2018,bioetanol combustion consumption by to the public,21.729699089999997,TJ,N2O,0.6,kg/TJ,13.037819453999997,kg +4826e911-8eb8-3aee-94d9-67f54beb774b,SESCO,II.1.1,Jujuy,AR-Y,annual,2018,bioetanol combustion consumption by to the public,36.00760878,TJ,CH4,10.0,kg/TJ,360.0760878,kg +b6f73e6c-c91f-3c2c-ad1c-103dd9ddcf8c,SESCO,II.1.1,Jujuy,AR-Y,annual,2018,bioetanol combustion consumption by to the public,36.00760878,TJ,N2O,0.6,kg/TJ,21.604565267999998,kg +aabd2b36-9d37-3069-91b6-22efd2f0b66b,SESCO,II.1.1,La Pampa,AR-L,annual,2018,bioetanol combustion consumption by to the public,90.59079446999999,TJ,CH4,10.0,kg/TJ,905.9079446999999,kg +8b8f0057-c2a4-3b9b-ba1a-6a5609ee7b3c,SESCO,II.1.1,La Pampa,AR-L,annual,2018,bioetanol combustion consumption by to the public,90.59079446999999,TJ,N2O,0.6,kg/TJ,54.35447668199999,kg +be203458-538b-3670-b0be-17bf7e7ae3e6,SESCO,II.1.1,La Rioja,AR-F,annual,2018,bioetanol combustion consumption by to the public,34.79142051,TJ,CH4,10.0,kg/TJ,347.9142051,kg +4f7a741a-aeb6-3c8f-a568-60acb11138da,SESCO,II.1.1,La Rioja,AR-F,annual,2018,bioetanol combustion consumption by to the public,34.79142051,TJ,N2O,0.6,kg/TJ,20.874852306,kg +2c9765b9-f490-322b-8aa8-e6799e4f1c6d,SESCO,II.1.1,Mendoza,AR-M,annual,2018,bioetanol combustion consumption by to the public,217.18216772999997,TJ,CH4,10.0,kg/TJ,2171.8216773,kg +992edf64-4c26-3e60-bf47-5c0b82c3e543,SESCO,II.1.1,Mendoza,AR-M,annual,2018,bioetanol combustion consumption by to the public,217.18216772999997,TJ,N2O,0.6,kg/TJ,130.30930063799997,kg +0283e9c6-4448-3cf8-ab2a-ff14b7405b16,SESCO,II.1.1,Misiones,AR-N,annual,2018,bioetanol combustion consumption by to the public,72.12535407,TJ,CH4,10.0,kg/TJ,721.2535407,kg +33f328eb-2d43-378c-a613-26a54c7e2908,SESCO,II.1.1,Misiones,AR-N,annual,2018,bioetanol combustion consumption by to the public,72.12535407,TJ,N2O,0.6,kg/TJ,43.275212442,kg +00bb06d0-63c8-37ec-b301-39a8502a26c5,SESCO,II.1.1,Neuquén,AR-Q,annual,2018,bioetanol combustion consumption by to the public,154.95035292,TJ,CH4,10.0,kg/TJ,1549.5035292,kg +291ed650-0163-32e6-98bc-943ef91d9856,SESCO,II.1.1,Neuquén,AR-Q,annual,2018,bioetanol combustion consumption by to the public,154.95035292,TJ,N2O,0.6,kg/TJ,92.970211752,kg +ff3fff0e-df36-3583-9ff8-898a3c37bad4,SESCO,II.1.1,Rio Negro,AR-R,annual,2018,bioetanol combustion consumption by to the public,133.57683999,TJ,CH4,10.0,kg/TJ,1335.7683999,kg +2a3d9a1b-11fc-3c7d-9c0c-8ebe37fc3eb7,SESCO,II.1.1,Rio Negro,AR-R,annual,2018,bioetanol combustion consumption by to the public,133.57683999,TJ,N2O,0.6,kg/TJ,80.146103994,kg +51a82ef8-2f6c-30fa-b019-7359258e69d4,SESCO,II.1.1,Salta,AR-A,annual,2018,bioetanol combustion consumption by to the public,87.31013246999999,TJ,CH4,10.0,kg/TJ,873.1013246999999,kg +f64e68a1-1f3f-39a4-b290-5e2adfeb362e,SESCO,II.1.1,Salta,AR-A,annual,2018,bioetanol combustion consumption by to the public,87.31013246999999,TJ,N2O,0.6,kg/TJ,52.38607948199999,kg +84ca2f86-1e3e-3d1b-a82d-b09ce8af3da1,SESCO,II.1.1,San Juan,AR-J,annual,2018,bioetanol combustion consumption by to the public,62.96059044,TJ,CH4,10.0,kg/TJ,629.6059044,kg +ef085bae-bad3-3dff-9d90-d136e8a609f0,SESCO,II.1.1,San Juan,AR-J,annual,2018,bioetanol combustion consumption by to the public,62.96059044,TJ,N2O,0.6,kg/TJ,37.776354264,kg +681bbcd2-bb36-3aa4-af0e-e9bce894327e,SESCO,II.1.1,San Luis,AR-D,annual,2018,bioetanol combustion consumption by to the public,56.85387246,TJ,CH4,10.0,kg/TJ,568.5387246,kg +e8af54b5-cade-39a1-b41c-fb3a6225bc5a,SESCO,II.1.1,San Luis,AR-D,annual,2018,bioetanol combustion consumption by to the public,56.85387246,TJ,N2O,0.6,kg/TJ,34.112323476,kg +cd9e5314-f65c-31a5-af2b-3acbfe3fe42f,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2018,bioetanol combustion consumption by to the public,58.205973869999994,TJ,CH4,10.0,kg/TJ,582.0597386999999,kg +2e68aa42-0c9f-342d-915a-ee06c951f0dd,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2018,bioetanol combustion consumption by to the public,58.205973869999994,TJ,N2O,0.6,kg/TJ,34.923584321999996,kg +ebecab12-e625-3d9c-98a2-e149c4616db7,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,bioetanol combustion consumption by to the public,263.1325257,TJ,CH4,10.0,kg/TJ,2631.3252569999995,kg +855127a4-2f94-367b-9575-152b417d90bd,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,bioetanol combustion consumption by to the public,263.1325257,TJ,N2O,0.6,kg/TJ,157.87951542,kg +35f0a63d-b59b-3e29-9a4f-86812b55e07b,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2018,bioetanol combustion consumption by to the public,51.000234119999995,TJ,CH4,10.0,kg/TJ,510.00234119999993,kg +906f10b3-785c-3a86-a1f6-13d78c6c06af,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2018,bioetanol combustion consumption by to the public,51.000234119999995,TJ,N2O,0.6,kg/TJ,30.600140471999996,kg +e4eb0082-25eb-37eb-948a-65b098681039,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2018,bioetanol combustion consumption by to the public,25.26344073,TJ,CH4,10.0,kg/TJ,252.6344073,kg +fc35db7e-3783-3da2-8ddb-7e9b3b287192,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2018,bioetanol combustion consumption by to the public,25.26344073,TJ,N2O,0.6,kg/TJ,15.158064437999998,kg +88f1678c-7064-39e7-9d3b-9257c6f83296,SESCO,II.1.1,Tucuman,AR-T,annual,2018,bioetanol combustion consumption by to the public,64.95007761,TJ,CH4,10.0,kg/TJ,649.5007760999999,kg +a10a1c1f-bef7-360a-a3cb-ed57423e1c30,SESCO,II.1.1,Tucuman,AR-T,annual,2018,bioetanol combustion consumption by to the public,64.95007761,TJ,N2O,0.6,kg/TJ,38.97004656599999,kg +615cbca6-72ac-3073-bc86-18508da1cc14,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,bioetanol combustion consumption by freight transport,24.604965,TJ,CH4,10.0,kg/TJ,246.04964999999999,kg +d5e6ee16-4353-3fb0-aed8-6e2a2627545a,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,bioetanol combustion consumption by freight transport,24.604965,TJ,N2O,0.6,kg/TJ,14.762979,kg +d488761a-2aef-3564-bd5f-7c574c500134,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,bioetanol combustion consumption by freight transport,26.62257213,TJ,CH4,10.0,kg/TJ,266.2257213,kg +73fdf42f-d8f9-3a6a-a1a1-8268edd0d5ce,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,bioetanol combustion consumption by freight transport,26.62257213,TJ,N2O,0.6,kg/TJ,15.973543277999998,kg +3ee86c07-ec9f-38c0-bc0c-ce5c6f3ef431,SESCO,II.1.1,Chaco,AR-H,annual,2018,bioetanol combustion consumption by freight transport,1.0427818500000001,TJ,CH4,10.0,kg/TJ,10.4278185,kg +5cd12e91-0235-3b01-9d13-170646358e7d,SESCO,II.1.1,Chaco,AR-H,annual,2018,bioetanol combustion consumption by freight transport,1.0427818500000001,TJ,N2O,0.6,kg/TJ,0.62566911,kg +93fe91e0-8c07-3673-8b91-e0100ba9d04f,SESCO,II.1.1,Chubut,AR-U,annual,2018,bioetanol combustion consumption by freight transport,0.36555948,TJ,CH4,10.0,kg/TJ,3.6555948,kg +c0e9e446-4f83-310b-8f74-f06a7a407bec,SESCO,II.1.1,Chubut,AR-U,annual,2018,bioetanol combustion consumption by freight transport,0.36555948,TJ,N2O,0.6,kg/TJ,0.219335688,kg +cbdbc95e-b1a5-34d4-83bc-17534bb0d881,SESCO,II.1.1,Corrientes,AR-W,annual,2018,bioetanol combustion consumption by freight transport,0.46397934,TJ,CH4,10.0,kg/TJ,4.6397934,kg +683bfad4-c393-3ab5-af92-319ec4ea4523,SESCO,II.1.1,Corrientes,AR-W,annual,2018,bioetanol combustion consumption by freight transport,0.46397934,TJ,N2O,0.6,kg/TJ,0.278387604,kg +09847a92-821f-376b-b292-3dd1f428ffec,SESCO,II.1.1,Córdoba,AR-X,annual,2018,bioetanol combustion consumption by freight transport,2.80262268,TJ,CH4,10.0,kg/TJ,28.026226799999996,kg +d047cf21-4236-3151-a512-1fee49ce046b,SESCO,II.1.1,Córdoba,AR-X,annual,2018,bioetanol combustion consumption by freight transport,2.80262268,TJ,N2O,0.6,kg/TJ,1.6815736079999999,kg +6290208c-8aae-302f-b1c9-6a9bacf10fe0,SESCO,II.1.1,Entre Rios,AR-E,annual,2018,bioetanol combustion consumption by freight transport,1.39428135,TJ,CH4,10.0,kg/TJ,13.9428135,kg +da3835de-acf7-36c0-a972-4190088fd0f5,SESCO,II.1.1,Entre Rios,AR-E,annual,2018,bioetanol combustion consumption by freight transport,1.39428135,TJ,N2O,0.6,kg/TJ,0.8365688099999999,kg +26c48722-edf1-37db-ab76-c70fffa11105,SESCO,II.1.1,Formosa,AR-P,annual,2018,bioetanol combustion consumption by freight transport,0.03514995,TJ,CH4,10.0,kg/TJ,0.35149949999999996,kg +f7cb6e1c-7c7a-32b7-96d1-87e23265875c,SESCO,II.1.1,Formosa,AR-P,annual,2018,bioetanol combustion consumption by freight transport,0.03514995,TJ,N2O,0.6,kg/TJ,0.02108997,kg +05cefa8e-2e7d-3206-889f-e60db399c8f5,SESCO,II.1.1,Jujuy,AR-Y,annual,2018,bioetanol combustion consumption by freight transport,0.07264323,TJ,CH4,10.0,kg/TJ,0.7264323,kg +56686b27-d363-3fe7-a08b-81e4242feb8a,SESCO,II.1.1,Jujuy,AR-Y,annual,2018,bioetanol combustion consumption by freight transport,0.07264323,TJ,N2O,0.6,kg/TJ,0.043585938,kg +0fbca47a-f6e1-3eb2-a097-12629596d0c9,SESCO,II.1.1,La Pampa,AR-L,annual,2018,bioetanol combustion consumption by freight transport,0.2577663,TJ,CH4,10.0,kg/TJ,2.5776630000000003,kg +2436dc11-0882-3b00-a326-ccb02d9ba9af,SESCO,II.1.1,La Pampa,AR-L,annual,2018,bioetanol combustion consumption by freight transport,0.2577663,TJ,N2O,0.6,kg/TJ,0.15465978,kg +2b7bd1dd-bde5-39e2-80e8-8fedbca81ec8,SESCO,II.1.1,La Rioja,AR-F,annual,2018,bioetanol combustion consumption by freight transport,0.02108997,TJ,CH4,10.0,kg/TJ,0.2108997,kg +dca4239e-e65e-3afe-9818-0f013a73d19a,SESCO,II.1.1,La Rioja,AR-F,annual,2018,bioetanol combustion consumption by freight transport,0.02108997,TJ,N2O,0.6,kg/TJ,0.012653982,kg +66974ea4-2443-36b3-89ce-d99927062689,SESCO,II.1.1,Mendoza,AR-M,annual,2018,bioetanol combustion consumption by freight transport,2.31286671,TJ,CH4,10.0,kg/TJ,23.1286671,kg +44c5b281-d9f7-3861-bd57-613be5d2e873,SESCO,II.1.1,Mendoza,AR-M,annual,2018,bioetanol combustion consumption by freight transport,2.31286671,TJ,N2O,0.6,kg/TJ,1.387720026,kg +1a752b4b-b3e9-37eb-8650-dd8b0b6d19e2,SESCO,II.1.1,Misiones,AR-N,annual,2018,bioetanol combustion consumption by freight transport,0.37961945999999996,TJ,CH4,10.0,kg/TJ,3.7961945999999998,kg +0e591d7a-f1d8-39b2-b7a3-889ef3441462,SESCO,II.1.1,Misiones,AR-N,annual,2018,bioetanol combustion consumption by freight transport,0.37961945999999996,TJ,N2O,0.6,kg/TJ,0.22777167599999998,kg +e6c18ab5-a5c3-34c5-a19d-e8193df47956,SESCO,II.1.1,Neuquén,AR-Q,annual,2018,bioetanol combustion consumption by freight transport,0.53427924,TJ,CH4,10.0,kg/TJ,5.3427924,kg +3ddac884-8088-3068-835d-a17c864e29e4,SESCO,II.1.1,Neuquén,AR-Q,annual,2018,bioetanol combustion consumption by freight transport,0.53427924,TJ,N2O,0.6,kg/TJ,0.32056754400000004,kg +2f7f80c4-031f-3340-ae60-8c3c19e4fecb,SESCO,II.1.1,Rio Negro,AR-R,annual,2018,bioetanol combustion consumption by freight transport,0.83656881,TJ,CH4,10.0,kg/TJ,8.3656881,kg +59c1c1d2-1fd5-371c-9253-57ec882cc1e7,SESCO,II.1.1,Rio Negro,AR-R,annual,2018,bioetanol combustion consumption by freight transport,0.83656881,TJ,N2O,0.6,kg/TJ,0.501941286,kg +8d59db7d-8e2c-34d2-900b-f86755b2a155,SESCO,II.1.1,Salta,AR-A,annual,2018,bioetanol combustion consumption by freight transport,0.92795868,TJ,CH4,10.0,kg/TJ,9.2795868,kg +96d7319c-b193-392a-8336-41a884f22478,SESCO,II.1.1,Salta,AR-A,annual,2018,bioetanol combustion consumption by freight transport,0.92795868,TJ,N2O,0.6,kg/TJ,0.556775208,kg +c0d6f17f-5ccf-3886-bbf5-0e855d4399aa,SESCO,II.1.1,San Juan,AR-J,annual,2018,bioetanol combustion consumption by freight transport,0.19683972,TJ,CH4,10.0,kg/TJ,1.9683972,kg +10f811a2-0dcd-34f1-841c-b4d8ff965497,SESCO,II.1.1,San Juan,AR-J,annual,2018,bioetanol combustion consumption by freight transport,0.19683972,TJ,N2O,0.6,kg/TJ,0.11810383199999999,kg +57ed68e5-5f8c-3f05-817b-5d262571c482,SESCO,II.1.1,San Luis,AR-D,annual,2018,bioetanol combustion consumption by freight transport,0.30697623,TJ,CH4,10.0,kg/TJ,3.0697623000000003,kg +45f70bae-cfe1-353e-a992-d3bba397ad13,SESCO,II.1.1,San Luis,AR-D,annual,2018,bioetanol combustion consumption by freight transport,0.30697623,TJ,N2O,0.6,kg/TJ,0.18418573800000002,kg +4bcf9f92-771b-37f9-b1f8-ab19c9d18a27,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2018,bioetanol combustion consumption by freight transport,0.11482316999999999,TJ,CH4,10.0,kg/TJ,1.1482317,kg +63f391e6-ad7b-3c2f-b7f2-2b9b0f018699,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2018,bioetanol combustion consumption by freight transport,0.11482316999999999,TJ,N2O,0.6,kg/TJ,0.06889390199999999,kg +7ecd8475-5bfb-327a-bba1-b3165a8291b6,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,bioetanol combustion consumption by freight transport,3.19864545,TJ,CH4,10.0,kg/TJ,31.9864545,kg +dcd3ab93-7738-32d4-9224-e2a3e32e9c03,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,bioetanol combustion consumption by freight transport,3.19864545,TJ,N2O,0.6,kg/TJ,1.91918727,kg +c8176a50-3674-3f23-aa1f-fde2e7a53d39,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2018,bioetanol combustion consumption by freight transport,0.06795657,TJ,CH4,10.0,kg/TJ,0.6795656999999999,kg +6cfa1aec-0eb7-32b2-8cd4-56ae261c4dd5,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2018,bioetanol combustion consumption by freight transport,0.06795657,TJ,N2O,0.6,kg/TJ,0.040773941999999994,kg +3296200a-14b7-3c72-81e6-d4d6e2f3e5c2,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2018,bioetanol combustion consumption by freight transport,0.52490592,TJ,CH4,10.0,kg/TJ,5.2490592000000005,kg +afccf682-2bd2-3ed6-936d-26909e9d2ee0,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2018,bioetanol combustion consumption by freight transport,0.52490592,TJ,N2O,0.6,kg/TJ,0.314943552,kg +1e8e268f-8937-3945-b65a-f9b88fcaec40,SESCO,II.1.1,Tucuman,AR-T,annual,2018,bioetanol combustion consumption by freight transport,0.76158225,TJ,CH4,10.0,kg/TJ,7.6158225,kg +1f4410a3-420b-3a2d-9a53-fbeedcdb5c00,SESCO,II.1.1,Tucuman,AR-T,annual,2018,bioetanol combustion consumption by freight transport,0.76158225,TJ,N2O,0.6,kg/TJ,0.45694935,kg +259c1149-8d5d-3e8d-8d2d-b5309e1c26cf,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,bioetanol combustion consumption by freight transport,23.742619559999998,TJ,CH4,10.0,kg/TJ,237.42619559999997,kg +9e843863-69d0-3da3-8e56-680428981e3f,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,bioetanol combustion consumption by freight transport,23.742619559999998,TJ,N2O,0.6,kg/TJ,14.245571735999999,kg +48c09b4c-0558-3681-b527-1b13ef30d546,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,bioetanol combustion consumption by freight transport,30.910866029999998,TJ,CH4,10.0,kg/TJ,309.1086603,kg +2ee2e992-a8e2-3c3a-b8f7-0552ddaba897,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,bioetanol combustion consumption by freight transport,30.910866029999998,TJ,N2O,0.6,kg/TJ,18.546519617999998,kg +cb866289-6c5d-3f58-8e63-0c1c9fccf6ac,SESCO,II.1.1,Catamarca,AR-K,annual,2018,bioetanol combustion consumption by freight transport,0.02108997,TJ,CH4,10.0,kg/TJ,0.2108997,kg +a7e08c7a-8daa-3865-8c47-01806201cf6c,SESCO,II.1.1,Catamarca,AR-K,annual,2018,bioetanol combustion consumption by freight transport,0.02108997,TJ,N2O,0.6,kg/TJ,0.012653982,kg +8824c2ff-1094-3b5c-bf3a-cdbe8ee74a4f,SESCO,II.1.1,Chaco,AR-H,annual,2018,bioetanol combustion consumption by freight transport,0.8318821499999999,TJ,CH4,10.0,kg/TJ,8.318821499999999,kg +59af50c4-5b26-33c3-96c0-c4bfd7132013,SESCO,II.1.1,Chaco,AR-H,annual,2018,bioetanol combustion consumption by freight transport,0.8318821499999999,TJ,N2O,0.6,kg/TJ,0.4991292899999999,kg +8893b696-a155-3448-972a-1803f3b9eba1,SESCO,II.1.1,Chubut,AR-U,annual,2018,bioetanol combustion consumption by freight transport,0.31166289,TJ,CH4,10.0,kg/TJ,3.1166289000000003,kg +3b72388e-705b-3067-b7eb-34fd129d1529,SESCO,II.1.1,Chubut,AR-U,annual,2018,bioetanol combustion consumption by freight transport,0.31166289,TJ,N2O,0.6,kg/TJ,0.186997734,kg +93b812e7-1925-31a8-b3e2-7a793ca1fdbf,SESCO,II.1.1,Corrientes,AR-W,annual,2018,bioetanol combustion consumption by freight transport,0.57177252,TJ,CH4,10.0,kg/TJ,5.7177252,kg +b9859610-db2a-36a0-85b4-d8c5591e82f4,SESCO,II.1.1,Corrientes,AR-W,annual,2018,bioetanol combustion consumption by freight transport,0.57177252,TJ,N2O,0.6,kg/TJ,0.343063512,kg +5a69530a-be2c-3674-9055-9119f635f5e7,SESCO,II.1.1,Córdoba,AR-X,annual,2018,bioetanol combustion consumption by freight transport,2.30583672,TJ,CH4,10.0,kg/TJ,23.0583672,kg +51c281c6-0117-3b8a-b7fe-fe0d10fd3b74,SESCO,II.1.1,Córdoba,AR-X,annual,2018,bioetanol combustion consumption by freight transport,2.30583672,TJ,N2O,0.6,kg/TJ,1.3835020319999998,kg +059b2226-5674-368b-b380-6ddd1e721243,SESCO,II.1.1,Entre Rios,AR-E,annual,2018,bioetanol combustion consumption by freight transport,1.80202077,TJ,CH4,10.0,kg/TJ,18.0202077,kg +83a5c2a9-9239-35b8-b591-69d05e7aeee5,SESCO,II.1.1,Entre Rios,AR-E,annual,2018,bioetanol combustion consumption by freight transport,1.80202077,TJ,N2O,0.6,kg/TJ,1.0812124619999999,kg +a1c2f452-014b-3926-b272-1f51b1e261bd,SESCO,II.1.1,Formosa,AR-P,annual,2018,bioetanol combustion consumption by freight transport,0.03749328,TJ,CH4,10.0,kg/TJ,0.37493279999999995,kg +489b92f1-853b-3e18-b344-25b060bb09f0,SESCO,II.1.1,Formosa,AR-P,annual,2018,bioetanol combustion consumption by freight transport,0.03749328,TJ,N2O,0.6,kg/TJ,0.022495967999999998,kg +b1ccde21-281f-3924-92a9-15db9d334a1b,SESCO,II.1.1,Jujuy,AR-Y,annual,2018,bioetanol combustion consumption by freight transport,0.06561324,TJ,CH4,10.0,kg/TJ,0.6561324000000001,kg +73f140e3-b4ab-372d-a6f7-dee697f6953b,SESCO,II.1.1,Jujuy,AR-Y,annual,2018,bioetanol combustion consumption by freight transport,0.06561324,TJ,N2O,0.6,kg/TJ,0.039367944,kg +149e0c2c-21f2-372f-afd1-ce13cdb90ead,SESCO,II.1.1,La Pampa,AR-L,annual,2018,bioetanol combustion consumption by freight transport,0.26479629,TJ,CH4,10.0,kg/TJ,2.6479629,kg +3d529029-eb18-3df2-b383-3227c17ae7de,SESCO,II.1.1,La Pampa,AR-L,annual,2018,bioetanol combustion consumption by freight transport,0.26479629,TJ,N2O,0.6,kg/TJ,0.158877774,kg +42810dee-da4f-30f6-a215-9b2172c4ff3a,SESCO,II.1.1,La Rioja,AR-F,annual,2018,bioetanol combustion consumption by freight transport,0.13591314,TJ,CH4,10.0,kg/TJ,1.3591313999999999,kg +84531ed6-1c75-3a30-b224-1789a60b98c5,SESCO,II.1.1,La Rioja,AR-F,annual,2018,bioetanol combustion consumption by freight transport,0.13591314,TJ,N2O,0.6,kg/TJ,0.08154788399999999,kg +d4c2ea88-c40d-3246-b36e-7c83c3313ee9,SESCO,II.1.1,Mendoza,AR-M,annual,2018,bioetanol combustion consumption by freight transport,4.016467619999999,TJ,CH4,10.0,kg/TJ,40.164676199999995,kg +441a9dc9-d4bf-3db9-97a0-17f81188c1e3,SESCO,II.1.1,Mendoza,AR-M,annual,2018,bioetanol combustion consumption by freight transport,4.016467619999999,TJ,N2O,0.6,kg/TJ,2.4098805719999996,kg +54a83b5b-007c-3305-8c5e-f1e1cba5d0d6,SESCO,II.1.1,Misiones,AR-N,annual,2018,bioetanol combustion consumption by freight transport,0.41476940999999995,TJ,CH4,10.0,kg/TJ,4.1476941,kg +3d6ece41-10dd-3cb3-adf2-b7f523485b4a,SESCO,II.1.1,Misiones,AR-N,annual,2018,bioetanol combustion consumption by freight transport,0.41476940999999995,TJ,N2O,0.6,kg/TJ,0.24886164599999996,kg +9efbaebc-2a92-3773-b6fb-21882cd1863b,SESCO,II.1.1,Neuquén,AR-Q,annual,2018,bioetanol combustion consumption by freight transport,1.2888315,TJ,CH4,10.0,kg/TJ,12.888314999999999,kg +a6722f3b-61a2-3f71-a275-890459dc55ce,SESCO,II.1.1,Neuquén,AR-Q,annual,2018,bioetanol combustion consumption by freight transport,1.2888315,TJ,N2O,0.6,kg/TJ,0.7732988999999999,kg +c7249fda-a652-3d56-899c-5f37c4b72347,SESCO,II.1.1,Rio Negro,AR-R,annual,2018,bioetanol combustion consumption by freight transport,3.5524882799999995,TJ,CH4,10.0,kg/TJ,35.52488279999999,kg +3241adb1-b7bd-361e-a5a9-f2cd96d788c0,SESCO,II.1.1,Rio Negro,AR-R,annual,2018,bioetanol combustion consumption by freight transport,3.5524882799999995,TJ,N2O,0.6,kg/TJ,2.1314929679999994,kg +3a044071-77ae-3e7f-98cc-ea6cece60ddb,SESCO,II.1.1,Salta,AR-A,annual,2018,bioetanol combustion consumption by freight transport,0.44288936999999995,TJ,CH4,10.0,kg/TJ,4.4288937,kg +421d4670-c1e5-3160-adff-b27345d82284,SESCO,II.1.1,Salta,AR-A,annual,2018,bioetanol combustion consumption by freight transport,0.44288936999999995,TJ,N2O,0.6,kg/TJ,0.26573362199999995,kg +b4c552fa-eb90-3758-a06a-682f5f86b661,SESCO,II.1.1,San Juan,AR-J,annual,2018,bioetanol combustion consumption by freight transport,0.08670321,TJ,CH4,10.0,kg/TJ,0.8670321000000001,kg +c409589b-ab40-3306-816c-f68528870b62,SESCO,II.1.1,San Juan,AR-J,annual,2018,bioetanol combustion consumption by freight transport,0.08670321,TJ,N2O,0.6,kg/TJ,0.052021926,kg +18e14f47-051f-3bc5-87e2-4af38b876b8f,SESCO,II.1.1,San Luis,AR-D,annual,2018,bioetanol combustion consumption by freight transport,0.28822959,TJ,CH4,10.0,kg/TJ,2.8822959,kg +bf314eaa-a25a-347e-b83e-7a5ec1e5e8f5,SESCO,II.1.1,San Luis,AR-D,annual,2018,bioetanol combustion consumption by freight transport,0.28822959,TJ,N2O,0.6,kg/TJ,0.17293775399999997,kg +4c630141-514d-3879-a52f-01de32ccc9e9,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2018,bioetanol combustion consumption by freight transport,0.09841986,TJ,CH4,10.0,kg/TJ,0.9841986,kg +28e56533-f7fd-360b-93a2-dc1907f1ef30,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2018,bioetanol combustion consumption by freight transport,0.09841986,TJ,N2O,0.6,kg/TJ,0.059051915999999996,kg +10fecf00-aa8c-329d-b3f6-0ae3169ff6d6,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,bioetanol combustion consumption by freight transport,5.281865819999999,TJ,CH4,10.0,kg/TJ,52.818658199999994,kg +7d55e122-f1e7-32aa-8105-c3560b4b07e2,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,bioetanol combustion consumption by freight transport,5.281865819999999,TJ,N2O,0.6,kg/TJ,3.1691194919999996,kg +3bb3b0de-f3cf-3dd5-a791-3cd98ac45ce2,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2018,bioetanol combustion consumption by freight transport,0.060926579999999994,TJ,CH4,10.0,kg/TJ,0.6092658,kg +ffba881a-457c-38ba-97f3-d38e584255c0,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2018,bioetanol combustion consumption by freight transport,0.060926579999999994,TJ,N2O,0.6,kg/TJ,0.036555948,kg +8ced469f-b83b-3b8d-8517-e386095cd2c3,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2018,bioetanol combustion consumption by freight transport,0.12419648999999999,TJ,CH4,10.0,kg/TJ,1.2419649,kg +cbeeb5c5-de20-3ef3-bc86-9d21f1b13461,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2018,bioetanol combustion consumption by freight transport,0.12419648999999999,TJ,N2O,0.6,kg/TJ,0.07451789399999999,kg +c32e8c7e-6975-3a41-8bee-841ebfd7394f,SESCO,II.1.1,Tucuman,AR-T,annual,2018,bioetanol combustion consumption by freight transport,0.42414272999999997,TJ,CH4,10.0,kg/TJ,4.2414273,kg +b3e2e881-76a8-3182-a954-c8ac64bf51c6,SESCO,II.1.1,Tucuman,AR-T,annual,2018,bioetanol combustion consumption by freight transport,0.42414272999999997,TJ,N2O,0.6,kg/TJ,0.25448563799999996,kg +b2540ee8-11cd-32e0-9a30-93827c35521d,SESCO,II.5.1,Buenos Aires,AR-B,annual,2019,bioetanol combustion consumption by agriculture machines,0.015338159999999998,TJ,CH4,10.0,kg/TJ,0.15338159999999998,kg +a77a22c9-d717-302c-8ce5-2260a93ef55d,SESCO,II.5.1,Buenos Aires,AR-B,annual,2019,bioetanol combustion consumption by agriculture machines,0.015338159999999998,TJ,N2O,0.6,kg/TJ,0.009202895999999999,kg +f03d145a-8edb-3d71-ad6d-ebb69eaf4356,SESCO,II.5.1,Córdoba,AR-X,annual,2019,bioetanol combustion consumption by agriculture machines,0.09458531999999999,TJ,CH4,10.0,kg/TJ,0.9458531999999998,kg +fec48ed7-bee0-36eb-bfa9-275eb6cca815,SESCO,II.5.1,Córdoba,AR-X,annual,2019,bioetanol combustion consumption by agriculture machines,0.09458531999999999,TJ,N2O,0.6,kg/TJ,0.05675119199999999,kg +b8bddf34-68f1-3230-bb74-246507032fb2,SESCO,II.5.1,Santa Fe,AR-S,annual,2019,bioetanol combustion consumption by agriculture machines,0.9023950799999999,TJ,CH4,10.0,kg/TJ,9.0239508,kg +cd1134a8-95d8-317f-8c56-957fab267224,SESCO,II.5.1,Santa Fe,AR-S,annual,2019,bioetanol combustion consumption by agriculture machines,0.9023950799999999,TJ,N2O,0.6,kg/TJ,0.5414370479999999,kg +3e8676f6-b456-3e51-a0c5-decde5b6c22c,SESCO,II.5.1,Santa Fe,AR-S,annual,2019,bioetanol combustion consumption by agriculture machines,0.10736712,TJ,CH4,10.0,kg/TJ,1.0736712,kg +4ee10d13-bb2d-3fe4-b9ee-efbfba182923,SESCO,II.5.1,Santa Fe,AR-S,annual,2019,bioetanol combustion consumption by agriculture machines,0.10736712,TJ,N2O,0.6,kg/TJ,0.064420272,kg +f0c9cc40-de29-34f5-8657-dd1d18be19fb,SESCO,II.1.1,Buenos Aires,AR-B,annual,2019,bioetanol combustion consumption by to the public,36.89850024,TJ,CH4,10.0,kg/TJ,368.9850024,kg +ccf915b0-155e-30c1-9b19-ede005c761fb,SESCO,II.1.1,Buenos Aires,AR-B,annual,2019,bioetanol combustion consumption by to the public,36.89850024,TJ,N2O,0.6,kg/TJ,22.139100143999997,kg +088b76f3-48b4-3962-b06c-9b014a1a63b2,SESCO,II.1.1,Capital Federal,AR-C,annual,2019,bioetanol combustion consumption by to the public,2.9474830799999996,TJ,CH4,10.0,kg/TJ,29.474830799999996,kg +8f53d1d7-0da3-3ac2-ac6c-6321f4932883,SESCO,II.1.1,Capital Federal,AR-C,annual,2019,bioetanol combustion consumption by to the public,2.9474830799999996,TJ,N2O,0.6,kg/TJ,1.7684898479999998,kg +3497ca53-b899-3f64-8d7f-f46bf33e3947,SESCO,II.1.1,Catamarca,AR-K,annual,2019,bioetanol combustion consumption by to the public,3.6581511599999996,TJ,CH4,10.0,kg/TJ,36.5815116,kg +a4eb2889-b145-3817-a82b-b44a0eaa5171,SESCO,II.1.1,Catamarca,AR-K,annual,2019,bioetanol combustion consumption by to the public,3.6581511599999996,TJ,N2O,0.6,kg/TJ,2.194890696,kg +9b441f5b-8e0c-36cc-880b-72f2c830fb96,SESCO,II.1.1,Chaco,AR-H,annual,2019,bioetanol combustion consumption by to the public,3.8115327599999995,TJ,CH4,10.0,kg/TJ,38.11532759999999,kg +28be55a1-1e27-31f5-9d93-68b5f9b80271,SESCO,II.1.1,Chaco,AR-H,annual,2019,bioetanol combustion consumption by to the public,3.8115327599999995,TJ,N2O,0.6,kg/TJ,2.286919656,kg +b7483bc3-8db0-3462-b1c1-7d948dd18585,SESCO,II.1.1,Corrientes,AR-W,annual,2019,bioetanol combustion consumption by to the public,0.5777373599999999,TJ,CH4,10.0,kg/TJ,5.777373599999999,kg +d6beef62-2e9c-3b8b-8e20-767fd5b6488f,SESCO,II.1.1,Corrientes,AR-W,annual,2019,bioetanol combustion consumption by to the public,0.5777373599999999,TJ,N2O,0.6,kg/TJ,0.3466424159999999,kg +44abd8d9-0be8-3e1c-96d1-42f6e5967e7d,SESCO,II.1.1,Córdoba,AR-X,annual,2019,bioetanol combustion consumption by to the public,19.88081172,TJ,CH4,10.0,kg/TJ,198.8081172,kg +3f741b28-cfa3-3bd8-9778-26bde76a0db6,SESCO,II.1.1,Córdoba,AR-X,annual,2019,bioetanol combustion consumption by to the public,19.88081172,TJ,N2O,0.6,kg/TJ,11.928487032,kg +60a1f602-f083-3f39-8526-ec0735171b5f,SESCO,II.1.1,Entre Rios,AR-E,annual,2019,bioetanol combustion consumption by to the public,4.384157399999999,TJ,CH4,10.0,kg/TJ,43.841573999999994,kg +fb37990f-deaa-3c0f-be93-f1cb7edf13f7,SESCO,II.1.1,Entre Rios,AR-E,annual,2019,bioetanol combustion consumption by to the public,4.384157399999999,TJ,N2O,0.6,kg/TJ,2.6304944399999997,kg +01179f5a-9139-3a35-90dc-e38a51d113e0,SESCO,II.1.1,La Pampa,AR-L,annual,2019,bioetanol combustion consumption by to the public,0.03323268,TJ,CH4,10.0,kg/TJ,0.33232680000000003,kg +13ea6912-419e-343c-9655-b3b42644f421,SESCO,II.1.1,La Pampa,AR-L,annual,2019,bioetanol combustion consumption by to the public,0.03323268,TJ,N2O,0.6,kg/TJ,0.019939608,kg +4e939c1e-dad6-3ac8-9516-6941eb3706a5,SESCO,II.1.1,La Rioja,AR-F,annual,2019,bioetanol combustion consumption by to the public,0.028119959999999996,TJ,CH4,10.0,kg/TJ,0.28119959999999994,kg +c889c237-2481-349f-af95-284aa1b36252,SESCO,II.1.1,La Rioja,AR-F,annual,2019,bioetanol combustion consumption by to the public,0.028119959999999996,TJ,N2O,0.6,kg/TJ,0.016871975999999997,kg +aa4d034c-5326-34c0-bb55-41dda5682a1d,SESCO,II.1.1,Mendoza,AR-M,annual,2019,bioetanol combustion consumption by to the public,5.457828599999999,TJ,CH4,10.0,kg/TJ,54.57828599999999,kg +7cbc6045-da99-3674-aa2d-3f1625d5fe5c,SESCO,II.1.1,Mendoza,AR-M,annual,2019,bioetanol combustion consumption by to the public,5.457828599999999,TJ,N2O,0.6,kg/TJ,3.274697159999999,kg +6a7844f8-1294-3374-855d-fa8414bd1a42,SESCO,II.1.1,Misiones,AR-N,annual,2019,bioetanol combustion consumption by to the public,0.028119959999999996,TJ,CH4,10.0,kg/TJ,0.28119959999999994,kg +e121f3a4-26b5-37d7-9b35-1b6cbde959b3,SESCO,II.1.1,Misiones,AR-N,annual,2019,bioetanol combustion consumption by to the public,0.028119959999999996,TJ,N2O,0.6,kg/TJ,0.016871975999999997,kg +3bfeb9a0-dfa9-3159-afa4-a891190eba72,SESCO,II.1.1,San Juan,AR-J,annual,2019,bioetanol combustion consumption by to the public,3.05229384,TJ,CH4,10.0,kg/TJ,30.5229384,kg +ab28bb27-2bf4-398b-a84c-1fbb8aa720e8,SESCO,II.1.1,San Juan,AR-J,annual,2019,bioetanol combustion consumption by to the public,3.05229384,TJ,N2O,0.6,kg/TJ,1.831376304,kg +04a06f9c-6105-3d05-9ec3-eaefa4e30418,SESCO,II.1.1,San Luis,AR-D,annual,2019,bioetanol combustion consumption by to the public,3.19289364,TJ,CH4,10.0,kg/TJ,31.928936399999998,kg +5b82028c-663e-3730-bb0b-b3f1540a78b5,SESCO,II.1.1,San Luis,AR-D,annual,2019,bioetanol combustion consumption by to the public,3.19289364,TJ,N2O,0.6,kg/TJ,1.9157361839999998,kg +97d0e1ac-c1af-3532-b24b-2969d9334459,SESCO,II.1.1,Santa Fe,AR-S,annual,2019,bioetanol combustion consumption by to the public,11.493394559999999,TJ,CH4,10.0,kg/TJ,114.93394559999999,kg +7f5b1cb8-e0c1-3619-a1a7-f496c59c44db,SESCO,II.1.1,Santa Fe,AR-S,annual,2019,bioetanol combustion consumption by to the public,11.493394559999999,TJ,N2O,0.6,kg/TJ,6.896036735999999,kg +99c0084a-7feb-35ce-a62c-055d5785603c,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2019,bioetanol combustion consumption by to the public,2.4668873999999996,TJ,CH4,10.0,kg/TJ,24.668873999999995,kg +05fe16ee-da8f-30b0-b223-93ec68778122,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2019,bioetanol combustion consumption by to the public,2.4668873999999996,TJ,N2O,0.6,kg/TJ,1.4801324399999998,kg +0a791559-8bbe-32ef-a787-33cd2a644e24,SESCO,II.1.1,Tucuman,AR-T,annual,2019,bioetanol combustion consumption by to the public,0.15082524,TJ,CH4,10.0,kg/TJ,1.5082524,kg +6cffd3cc-a291-3aa7-8079-acd7c1a099ec,SESCO,II.1.1,Tucuman,AR-T,annual,2019,bioetanol combustion consumption by to the public,0.15082524,TJ,N2O,0.6,kg/TJ,0.090495144,kg +cb236dda-48e9-3b16-a072-6fe7ad626e91,SESCO,II.1.1,Buenos Aires,AR-B,annual,2019,bioetanol combustion consumption by to the public,2.74297428,TJ,CH4,10.0,kg/TJ,27.4297428,kg +cd5cd459-6ab5-3ca4-96d8-5864b060768e,SESCO,II.1.1,Buenos Aires,AR-B,annual,2019,bioetanol combustion consumption by to the public,2.74297428,TJ,N2O,0.6,kg/TJ,1.6457845679999998,kg +192c08fe-7d5b-362b-b425-a7c496f6b42a,SESCO,II.1.1,Capital Federal,AR-C,annual,2019,bioetanol combustion consumption by to the public,0.4959338399999999,TJ,CH4,10.0,kg/TJ,4.959338399999999,kg +24b97166-b83a-3131-bac5-7a744dd1e4ff,SESCO,II.1.1,Capital Federal,AR-C,annual,2019,bioetanol combustion consumption by to the public,0.4959338399999999,TJ,N2O,0.6,kg/TJ,0.29756030399999994,kg +6d3cdba4-cd57-3838-992e-13d8322f4f5d,SESCO,II.1.1,Catamarca,AR-K,annual,2019,bioetanol combustion consumption by to the public,0.31187592,TJ,CH4,10.0,kg/TJ,3.1187591999999995,kg +e7d92c6d-75ff-3b6a-8ec4-7f653294eed3,SESCO,II.1.1,Catamarca,AR-K,annual,2019,bioetanol combustion consumption by to the public,0.31187592,TJ,N2O,0.6,kg/TJ,0.18712555199999997,kg +a6a0aabb-d4aa-34f3-ad4d-b4063dc12768,SESCO,II.1.1,Chaco,AR-H,annual,2019,bioetanol combustion consumption by to the public,0.2811996,TJ,CH4,10.0,kg/TJ,2.8119959999999997,kg +62b811e4-aae2-3c7e-979f-6c951f42b048,SESCO,II.1.1,Chaco,AR-H,annual,2019,bioetanol combustion consumption by to the public,0.2811996,TJ,N2O,0.6,kg/TJ,0.16871976,kg +91b51055-448d-3516-91ae-884c98191b9e,SESCO,II.1.1,Corrientes,AR-W,annual,2019,bioetanol combustion consumption by to the public,0.06902172,TJ,CH4,10.0,kg/TJ,0.6902172,kg +1bee6d9e-e898-35d5-92b7-e6ce96131d15,SESCO,II.1.1,Corrientes,AR-W,annual,2019,bioetanol combustion consumption by to the public,0.06902172,TJ,N2O,0.6,kg/TJ,0.041413031999999995,kg +ba125d29-57d8-3b03-b106-1f9c67e6041f,SESCO,II.1.1,Córdoba,AR-X,annual,2019,bioetanol combustion consumption by to the public,3.0113920799999994,TJ,CH4,10.0,kg/TJ,30.113920799999995,kg +1c0f454f-868b-3f75-8992-a5f589dbe57e,SESCO,II.1.1,Córdoba,AR-X,annual,2019,bioetanol combustion consumption by to the public,3.0113920799999994,TJ,N2O,0.6,kg/TJ,1.8068352479999996,kg +2642e33b-0e5e-311c-bfab-af753f09ecc4,SESCO,II.1.1,Entre Rios,AR-E,annual,2019,bioetanol combustion consumption by to the public,0.3451086,TJ,CH4,10.0,kg/TJ,3.451086,kg +23723cba-69bd-3c00-b380-877648dc25ff,SESCO,II.1.1,Entre Rios,AR-E,annual,2019,bioetanol combustion consumption by to the public,0.3451086,TJ,N2O,0.6,kg/TJ,0.20706516,kg +c2380854-9090-3fc7-86e2-95bfa2a1e835,SESCO,II.1.1,La Rioja,AR-F,annual,2019,bioetanol combustion consumption by to the public,0.02300724,TJ,CH4,10.0,kg/TJ,0.2300724,kg +823d6d6c-6582-3564-a7e3-0e94a133efde,SESCO,II.1.1,La Rioja,AR-F,annual,2019,bioetanol combustion consumption by to the public,0.02300724,TJ,N2O,0.6,kg/TJ,0.013804344000000001,kg +3c159b85-36e1-34e3-b3c6-71daf7b4ad08,SESCO,II.1.1,Mendoza,AR-M,annual,2019,bioetanol combustion consumption by to the public,0.8435988,TJ,CH4,10.0,kg/TJ,8.435988,kg +0751b0f0-d0e8-3913-bf85-bc0356a92d89,SESCO,II.1.1,Mendoza,AR-M,annual,2019,bioetanol combustion consumption by to the public,0.8435988,TJ,N2O,0.6,kg/TJ,0.50615928,kg +e53867f8-f384-3a01-a709-ce4d5096674f,SESCO,II.1.1,San Juan,AR-J,annual,2019,bioetanol combustion consumption by to the public,0.511272,TJ,CH4,10.0,kg/TJ,5.1127199999999995,kg +86372bb3-129a-35bc-9b96-76e96727fe26,SESCO,II.1.1,San Juan,AR-J,annual,2019,bioetanol combustion consumption by to the public,0.511272,TJ,N2O,0.6,kg/TJ,0.30676319999999996,kg +20e1b148-db9e-33f6-866c-5b7cd6e62811,SESCO,II.1.1,San Luis,AR-D,annual,2019,bioetanol combustion consumption by to the public,0.1022544,TJ,CH4,10.0,kg/TJ,1.022544,kg +8a6b4ff6-0cfc-311a-bf3d-f7781ecda0bc,SESCO,II.1.1,San Luis,AR-D,annual,2019,bioetanol combustion consumption by to the public,0.1022544,TJ,N2O,0.6,kg/TJ,0.06135263999999999,kg +9f458fd6-13ab-3fe2-9b96-1e37ae1d3601,SESCO,II.1.1,Santa Fe,AR-S,annual,2019,bioetanol combustion consumption by to the public,2.1984696,TJ,CH4,10.0,kg/TJ,21.984696,kg +f4513782-e2d2-3adf-a0b1-47e96fa236fe,SESCO,II.1.1,Santa Fe,AR-S,annual,2019,bioetanol combustion consumption by to the public,2.1984696,TJ,N2O,0.6,kg/TJ,1.31908176,kg +e5bb5b41-d8bc-3ce8-ad15-32722e3b5813,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2019,bioetanol combustion consumption by to the public,0.32721407999999996,TJ,CH4,10.0,kg/TJ,3.2721408,kg +5029f9fe-a4ca-3fc3-bc16-d2a14bb9ccc1,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2019,bioetanol combustion consumption by to the public,0.32721407999999996,TJ,N2O,0.6,kg/TJ,0.19632844799999996,kg +92ff7581-d552-3e51-a705-237085ef64c5,SESCO,II.1.1,Tucuman,AR-T,annual,2019,bioetanol combustion consumption by to the public,0.0127818,TJ,CH4,10.0,kg/TJ,0.127818,kg +d8927f5d-3e90-3be0-ae3a-250ab7cf3974,SESCO,II.1.1,Tucuman,AR-T,annual,2019,bioetanol combustion consumption by to the public,0.0127818,TJ,N2O,0.6,kg/TJ,0.007669079999999999,kg +0ebe5911-c2ae-3527-bdcc-f7a31062fbdf,SESCO,II.1.1,Buenos Aires,AR-B,annual,2019,bioetanol combustion consumption by to the public,99.37338228,TJ,CH4,10.0,kg/TJ,993.7338228,kg +fd074edb-eced-3424-b990-5e7348aca2e8,SESCO,II.1.1,Buenos Aires,AR-B,annual,2019,bioetanol combustion consumption by to the public,99.37338228,TJ,N2O,0.6,kg/TJ,59.624029367999995,kg +873723e5-3c59-33d7-87bd-c31890e9970e,SESCO,II.1.1,Capital Federal,AR-C,annual,2019,bioetanol combustion consumption by to the public,5.795268119999999,TJ,CH4,10.0,kg/TJ,57.952681199999994,kg +1f3d7f29-d8f0-3357-8b3f-a37aa5110e4d,SESCO,II.1.1,Capital Federal,AR-C,annual,2019,bioetanol combustion consumption by to the public,5.795268119999999,TJ,N2O,0.6,kg/TJ,3.4771608719999993,kg +2b1bee39-69f3-3d35-b777-5796d687c2f5,SESCO,II.1.1,Catamarca,AR-K,annual,2019,bioetanol combustion consumption by to the public,0.030676319999999997,TJ,CH4,10.0,kg/TJ,0.30676319999999996,kg +c3998574-9a3a-3930-a296-60cd7311a7dc,SESCO,II.1.1,Catamarca,AR-K,annual,2019,bioetanol combustion consumption by to the public,0.030676319999999997,TJ,N2O,0.6,kg/TJ,0.018405791999999997,kg +f1b8d8e2-a6d3-39aa-aaca-a19a0c18bea6,SESCO,II.1.1,Chaco,AR-H,annual,2019,bioetanol combustion consumption by to the public,8.2186974,TJ,CH4,10.0,kg/TJ,82.18697399999999,kg +b12f40f4-12a1-3b6f-8fbf-5d3ddff94f2a,SESCO,II.1.1,Chaco,AR-H,annual,2019,bioetanol combustion consumption by to the public,8.2186974,TJ,N2O,0.6,kg/TJ,4.931218439999999,kg +631afe9e-1264-369d-b3ac-2617498a5ab4,SESCO,II.1.1,Corrientes,AR-W,annual,2019,bioetanol combustion consumption by to the public,3.30281712,TJ,CH4,10.0,kg/TJ,33.028171199999996,kg +ae2224eb-da5d-3bd3-93ee-c152aa86746c,SESCO,II.1.1,Corrientes,AR-W,annual,2019,bioetanol combustion consumption by to the public,3.30281712,TJ,N2O,0.6,kg/TJ,1.9816902719999998,kg +7c973a24-1003-3750-9eef-26af677c7a28,SESCO,II.1.1,Córdoba,AR-X,annual,2019,bioetanol combustion consumption by to the public,55.56504095999999,TJ,CH4,10.0,kg/TJ,555.6504095999999,kg +448b2c0c-f290-3d6e-b9fb-1d4db5b6716d,SESCO,II.1.1,Córdoba,AR-X,annual,2019,bioetanol combustion consumption by to the public,55.56504095999999,TJ,N2O,0.6,kg/TJ,33.33902457599999,kg +6190059a-bfb0-3515-9a89-c74b46d61fff,SESCO,II.1.1,Entre Rios,AR-E,annual,2019,bioetanol combustion consumption by to the public,0.67487904,TJ,CH4,10.0,kg/TJ,6.7487904,kg +49a28fb4-a8cc-33a3-b690-2aed969c1719,SESCO,II.1.1,Entre Rios,AR-E,annual,2019,bioetanol combustion consumption by to the public,0.67487904,TJ,N2O,0.6,kg/TJ,0.404927424,kg +63f6e4f7-7e69-3448-ac13-d629148392b0,SESCO,II.1.1,Formosa,AR-P,annual,2019,bioetanol combustion consumption by to the public,0.06902172,TJ,CH4,10.0,kg/TJ,0.6902172,kg +e9c3b120-edf2-3862-8e58-da8e139a503f,SESCO,II.1.1,Formosa,AR-P,annual,2019,bioetanol combustion consumption by to the public,0.06902172,TJ,N2O,0.6,kg/TJ,0.041413031999999995,kg +c58b36c5-ae18-326e-b899-4c605c23d9e9,SESCO,II.1.1,La Rioja,AR-F,annual,2019,bioetanol combustion consumption by to the public,0.043458119999999996,TJ,CH4,10.0,kg/TJ,0.43458119999999995,kg +36293cf3-5f21-3b4a-abcf-b0d96db76071,SESCO,II.1.1,La Rioja,AR-F,annual,2019,bioetanol combustion consumption by to the public,0.043458119999999996,TJ,N2O,0.6,kg/TJ,0.026074871999999995,kg +7fe2a438-c994-34c1-b88a-a97f5454e009,SESCO,II.1.1,Mendoza,AR-M,annual,2019,bioetanol combustion consumption by to the public,27.813196799999997,TJ,CH4,10.0,kg/TJ,278.131968,kg +7c28570e-e812-3fae-8c2b-8ef4cf8c2cab,SESCO,II.1.1,Mendoza,AR-M,annual,2019,bioetanol combustion consumption by to the public,27.813196799999997,TJ,N2O,0.6,kg/TJ,16.687918079999996,kg +ec3d6e13-2392-33b7-a47e-28bcef79315c,SESCO,II.1.1,Misiones,AR-N,annual,2019,bioetanol combustion consumption by to the public,6.3883436399999995,TJ,CH4,10.0,kg/TJ,63.883436399999994,kg +173448d4-c8ce-34dc-a84a-5975c8133627,SESCO,II.1.1,Misiones,AR-N,annual,2019,bioetanol combustion consumption by to the public,6.3883436399999995,TJ,N2O,0.6,kg/TJ,3.8330061839999994,kg +6f662a3c-b0aa-33f3-8039-99e5d43676f4,SESCO,II.1.1,San Luis,AR-D,annual,2019,bioetanol combustion consumption by to the public,0.54450468,TJ,CH4,10.0,kg/TJ,5.4450468,kg +1ab231f2-215e-3c63-92d0-079bd4d5248e,SESCO,II.1.1,San Luis,AR-D,annual,2019,bioetanol combustion consumption by to the public,0.54450468,TJ,N2O,0.6,kg/TJ,0.32670280799999996,kg +6089cfb1-ec1c-325f-a1f9-bc7f86bb50da,SESCO,II.1.1,Santa Fe,AR-S,annual,2019,bioetanol combustion consumption by to the public,37.708866359999995,TJ,CH4,10.0,kg/TJ,377.08866359999996,kg +e1a7cf3f-0bd7-3123-82eb-7680e7d976d4,SESCO,II.1.1,Santa Fe,AR-S,annual,2019,bioetanol combustion consumption by to the public,37.708866359999995,TJ,N2O,0.6,kg/TJ,22.625319815999998,kg +b7a25bf3-fc4d-3695-a206-bb5d3cbb9de1,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2019,bioetanol combustion consumption by to the public,0.3323268,TJ,CH4,10.0,kg/TJ,3.3232679999999997,kg +3592e92f-3e16-3b1a-a0c0-57116b3c8d4e,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2019,bioetanol combustion consumption by to the public,0.3323268,TJ,N2O,0.6,kg/TJ,0.19939607999999998,kg +962122b1-d88e-3a24-a989-7496b0180d88,SESCO,II.1.1,Tucuman,AR-T,annual,2019,bioetanol combustion consumption by to the public,0.020450879999999998,TJ,CH4,10.0,kg/TJ,0.2045088,kg +0149c71d-07ea-38a8-81c7-989da7be279e,SESCO,II.1.1,Tucuman,AR-T,annual,2019,bioetanol combustion consumption by to the public,0.020450879999999998,TJ,N2O,0.6,kg/TJ,0.012270527999999998,kg +56d6462f-c868-3ecf-99c5-e24ca5dad104,SESCO,II.1.1,Buenos Aires,AR-B,annual,2019,bioetanol combustion consumption by to the public,9.888000479999999,TJ,CH4,10.0,kg/TJ,98.8800048,kg +a613f074-f007-390c-b80b-7fd02b91acda,SESCO,II.1.1,Buenos Aires,AR-B,annual,2019,bioetanol combustion consumption by to the public,9.888000479999999,TJ,N2O,0.6,kg/TJ,5.932800287999999,kg +97b8a35c-c444-31ba-9940-af3c011a89c0,SESCO,II.1.1,Capital Federal,AR-C,annual,2019,bioetanol combustion consumption by to the public,1.0685584799999999,TJ,CH4,10.0,kg/TJ,10.685584799999999,kg +fa600c44-f1e6-346a-a7d2-e5dd506f50da,SESCO,II.1.1,Capital Federal,AR-C,annual,2019,bioetanol combustion consumption by to the public,1.0685584799999999,TJ,N2O,0.6,kg/TJ,0.6411350879999999,kg +5da985bd-c344-39df-b4b5-ba4a9bcb0f80,SESCO,II.1.1,Chaco,AR-H,annual,2019,bioetanol combustion consumption by to the public,0.48059567999999997,TJ,CH4,10.0,kg/TJ,4.8059568,kg +ca725dbe-0abb-3a19-bb14-a387d1e0cb3b,SESCO,II.1.1,Chaco,AR-H,annual,2019,bioetanol combustion consumption by to the public,0.48059567999999997,TJ,N2O,0.6,kg/TJ,0.288357408,kg +e5a369b1-2687-3dd1-9d21-15a8bb9013f3,SESCO,II.1.1,Corrientes,AR-W,annual,2019,bioetanol combustion consumption by to the public,0.16871976,TJ,CH4,10.0,kg/TJ,1.6871976,kg +7099a912-b24b-3da2-b014-356911421d84,SESCO,II.1.1,Corrientes,AR-W,annual,2019,bioetanol combustion consumption by to the public,0.16871976,TJ,N2O,0.6,kg/TJ,0.101231856,kg +97a02d83-cc23-390b-b11a-65ee741fdcda,SESCO,II.1.1,Córdoba,AR-X,annual,2019,bioetanol combustion consumption by to the public,6.6848814,TJ,CH4,10.0,kg/TJ,66.848814,kg +749f9e83-f071-3f32-af5d-cac6ef0f8a58,SESCO,II.1.1,Córdoba,AR-X,annual,2019,bioetanol combustion consumption by to the public,6.6848814,TJ,N2O,0.6,kg/TJ,4.01092884,kg +9c159f83-f341-371b-806b-e03d9576c6e5,SESCO,II.1.1,Entre Rios,AR-E,annual,2019,bioetanol combustion consumption by to the public,0.07413444,TJ,CH4,10.0,kg/TJ,0.7413444,kg +906e299e-8615-391d-8783-b7558432547b,SESCO,II.1.1,Entre Rios,AR-E,annual,2019,bioetanol combustion consumption by to the public,0.07413444,TJ,N2O,0.6,kg/TJ,0.044480663999999996,kg +16fe29cc-f30b-3007-9df0-8c10726b5889,SESCO,II.1.1,Mendoza,AR-M,annual,2019,bioetanol combustion consumption by to the public,3.11364648,TJ,CH4,10.0,kg/TJ,31.1364648,kg +de64bf15-7178-3eb2-8543-5bf086eaa621,SESCO,II.1.1,Mendoza,AR-M,annual,2019,bioetanol combustion consumption by to the public,3.11364648,TJ,N2O,0.6,kg/TJ,1.8681878879999998,kg +ddd50b6d-c9e3-3836-ac9d-d65950c0ea1f,SESCO,II.1.1,Misiones,AR-N,annual,2019,bioetanol combustion consumption by to the public,0.49337748,TJ,CH4,10.0,kg/TJ,4.9337748,kg +c84eb316-9d09-3d81-b82c-09ecfbd3ae1b,SESCO,II.1.1,Misiones,AR-N,annual,2019,bioetanol combustion consumption by to the public,0.49337748,TJ,N2O,0.6,kg/TJ,0.296026488,kg +8be0a4bf-e06f-346c-a77d-595d63a9f586,SESCO,II.1.1,San Luis,AR-D,annual,2019,bioetanol combustion consumption by to the public,0.05368356,TJ,CH4,10.0,kg/TJ,0.5368356,kg +e9e47f2d-6916-3de4-900f-672a01f49d91,SESCO,II.1.1,San Luis,AR-D,annual,2019,bioetanol combustion consumption by to the public,0.05368356,TJ,N2O,0.6,kg/TJ,0.032210136,kg +2e1d2c83-8c4a-3652-8a90-fd67ae91da41,SESCO,II.1.1,Santa Fe,AR-S,annual,2019,bioetanol combustion consumption by to the public,3.88311084,TJ,CH4,10.0,kg/TJ,38.8311084,kg +88c986bd-127b-34f5-9291-0d629c1da350,SESCO,II.1.1,Santa Fe,AR-S,annual,2019,bioetanol combustion consumption by to the public,3.88311084,TJ,N2O,0.6,kg/TJ,2.329866504,kg +fca3e329-b802-38fd-ab64-a5dca29dadb4,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2019,bioetanol combustion consumption by to the public,0.04601448,TJ,CH4,10.0,kg/TJ,0.4601448,kg +5056a9d7-8eca-30df-9c91-32c40fe338ee,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2019,bioetanol combustion consumption by to the public,0.04601448,TJ,N2O,0.6,kg/TJ,0.027608688000000003,kg +224ebc70-42c0-3f2e-b83d-9828fbe682f0,SESCO,I.3.1,Buenos Aires,AR-B,annual,2019,bioetanol combustion consumption by petrochemical industries,0.39367944,TJ,CH4,10.0,kg/TJ,3.9367944,kg +647e7ec7-7a9b-3468-b8c5-77feea522c53,SESCO,I.3.1,Buenos Aires,AR-B,annual,2019,bioetanol combustion consumption by petrochemical industries,0.39367944,TJ,N2O,0.6,kg/TJ,0.23620766399999998,kg +7aa49fbc-feed-314d-b8fc-c72ffb60337e,SESCO,II.5.1,Córdoba,AR-X,annual,2019,bioetanol combustion consumption by agriculture machines,0.10736712,TJ,CH4,10.0,kg/TJ,1.0736712,kg +935dd468-4d7b-3311-b485-e0a165cd6a09,SESCO,II.5.1,Córdoba,AR-X,annual,2019,bioetanol combustion consumption by agriculture machines,0.10736712,TJ,N2O,0.6,kg/TJ,0.064420272,kg +87613766-3652-30cf-88b8-57471f78bdef,SESCO,II.5.1,Santa Fe,AR-S,annual,2019,bioetanol combustion consumption by agriculture machines,0.41413031999999994,TJ,CH4,10.0,kg/TJ,4.141303199999999,kg +4fb553de-b39f-3aec-b142-35b1d4ae3956,SESCO,II.5.1,Santa Fe,AR-S,annual,2019,bioetanol combustion consumption by agriculture machines,0.41413031999999994,TJ,N2O,0.6,kg/TJ,0.24847819199999996,kg +b2e4b6f1-aa77-3bbe-ae5b-f262d9d08b3c,SESCO,II.5.1,Córdoba,AR-X,annual,2019,bioetanol combustion consumption by agriculture machines,0.07669079999999999,TJ,CH4,10.0,kg/TJ,0.7669079999999999,kg +82d5b127-7999-3459-ad61-b60f378110d0,SESCO,II.5.1,Córdoba,AR-X,annual,2019,bioetanol combustion consumption by agriculture machines,0.07669079999999999,TJ,N2O,0.6,kg/TJ,0.04601447999999999,kg +434a3563-769d-3b3d-a5b7-67ac3b4e3752,SESCO,II.5.1,Santa Fe,AR-S,annual,2019,bioetanol combustion consumption by agriculture machines,0.13037436,TJ,CH4,10.0,kg/TJ,1.3037436,kg +13f8eee9-6181-3044-9f84-656351194145,SESCO,II.5.1,Santa Fe,AR-S,annual,2019,bioetanol combustion consumption by agriculture machines,0.13037436,TJ,N2O,0.6,kg/TJ,0.078224616,kg +cda5f6dc-8674-3d00-8163-b61fcd8c97da,SESCO,II.1.1,Buenos Aires,AR-B,annual,2019,bioetanol combustion consumption by to the public,226.12538015999996,TJ,CH4,10.0,kg/TJ,2261.2538016,kg +648b9da3-a9b3-3a38-8fdd-02c44bc05501,SESCO,II.1.1,Buenos Aires,AR-B,annual,2019,bioetanol combustion consumption by to the public,226.12538015999996,TJ,N2O,0.6,kg/TJ,135.67522809599998,kg +f151d829-28eb-3e6f-8cc8-c69e83eb3051,SESCO,II.1.1,Capital Federal,AR-C,annual,2019,bioetanol combustion consumption by to the public,60.79535351999999,TJ,CH4,10.0,kg/TJ,607.9535351999999,kg +90e5816e-ffaa-3ad6-9aaf-dda4249e841e,SESCO,II.1.1,Capital Federal,AR-C,annual,2019,bioetanol combustion consumption by to the public,60.79535351999999,TJ,N2O,0.6,kg/TJ,36.477212112,kg +91c6bee1-2d55-38d4-b91c-5163481fb3ac,SESCO,II.1.1,Catamarca,AR-K,annual,2019,bioetanol combustion consumption by to the public,7.280513279999999,TJ,CH4,10.0,kg/TJ,72.8051328,kg +08717586-3358-34bd-8e45-2e46e0d162f9,SESCO,II.1.1,Catamarca,AR-K,annual,2019,bioetanol combustion consumption by to the public,7.280513279999999,TJ,N2O,0.6,kg/TJ,4.368307967999999,kg +3bc42c64-33ae-36d4-9f62-a24f40ab89e9,SESCO,II.1.1,Chaco,AR-H,annual,2019,bioetanol combustion consumption by to the public,7.850581559999999,TJ,CH4,10.0,kg/TJ,78.50581559999999,kg +17b89df8-435b-33bd-99c5-c3017d42503e,SESCO,II.1.1,Chaco,AR-H,annual,2019,bioetanol combustion consumption by to the public,7.850581559999999,TJ,N2O,0.6,kg/TJ,4.710348935999999,kg +e32264cf-0288-3cab-8c7d-ea84c9d8f15d,SESCO,II.1.1,Chubut,AR-U,annual,2019,bioetanol combustion consumption by to the public,30.827145239999997,TJ,CH4,10.0,kg/TJ,308.2714524,kg +198b41e8-6846-31dc-b58d-511f73b71080,SESCO,II.1.1,Chubut,AR-U,annual,2019,bioetanol combustion consumption by to the public,30.827145239999997,TJ,N2O,0.6,kg/TJ,18.496287143999997,kg +7b611c78-eca9-3c59-b178-8eeb52762204,SESCO,II.1.1,Corrientes,AR-W,annual,2019,bioetanol combustion consumption by to the public,14.100881759999998,TJ,CH4,10.0,kg/TJ,141.0088176,kg +c844c090-de93-3978-8a66-7b1d923cef19,SESCO,II.1.1,Corrientes,AR-W,annual,2019,bioetanol combustion consumption by to the public,14.100881759999998,TJ,N2O,0.6,kg/TJ,8.460529055999999,kg +7ac6cb99-cd89-33f3-a0a7-764e1180049f,SESCO,II.1.1,Córdoba,AR-X,annual,2019,bioetanol combustion consumption by to the public,58.34636064,TJ,CH4,10.0,kg/TJ,583.4636064,kg +7f08660b-f5ca-36b6-bdca-a8f2cff885e0,SESCO,II.1.1,Córdoba,AR-X,annual,2019,bioetanol combustion consumption by to the public,58.34636064,TJ,N2O,0.6,kg/TJ,35.007816384,kg +6e0a0e75-0ca4-3ee2-81e0-1e9c45388305,SESCO,II.1.1,Entre Rios,AR-E,annual,2019,bioetanol combustion consumption by to the public,25.21082232,TJ,CH4,10.0,kg/TJ,252.1082232,kg +d5aef984-e448-3ac9-b7f9-eb7de4dfecc1,SESCO,II.1.1,Entre Rios,AR-E,annual,2019,bioetanol combustion consumption by to the public,25.21082232,TJ,N2O,0.6,kg/TJ,15.126493391999999,kg +8a11ba16-1493-3868-a5ea-8e925ab327d7,SESCO,II.1.1,Formosa,AR-P,annual,2019,bioetanol combustion consumption by to the public,11.531739959999998,TJ,CH4,10.0,kg/TJ,115.31739959999997,kg +fe960b06-6369-3532-bf6e-0dfcfff53843,SESCO,II.1.1,Formosa,AR-P,annual,2019,bioetanol combustion consumption by to the public,11.531739959999998,TJ,N2O,0.6,kg/TJ,6.919043975999998,kg +d697d160-17f4-386d-9dd4-af6bcd47768b,SESCO,II.1.1,Jujuy,AR-Y,annual,2019,bioetanol combustion consumption by to the public,4.4557354799999995,TJ,CH4,10.0,kg/TJ,44.5573548,kg +0a913e8e-f6d9-3783-a9e0-22106aefec6f,SESCO,II.1.1,Jujuy,AR-Y,annual,2019,bioetanol combustion consumption by to the public,4.4557354799999995,TJ,N2O,0.6,kg/TJ,2.673441288,kg +f9f7d5e0-7754-3eb7-9a6d-7b62db2770fd,SESCO,II.1.1,La Pampa,AR-L,annual,2019,bioetanol combustion consumption by to the public,4.3585937999999995,TJ,CH4,10.0,kg/TJ,43.585938,kg +a6d7cec9-e496-3033-87af-34f68406d4d3,SESCO,II.1.1,La Pampa,AR-L,annual,2019,bioetanol combustion consumption by to the public,4.3585937999999995,TJ,N2O,0.6,kg/TJ,2.6151562799999994,kg +b9b08820-237c-3548-a985-4ee2e2d4aae6,SESCO,II.1.1,La Rioja,AR-F,annual,2019,bioetanol combustion consumption by to the public,2.8171087200000002,TJ,CH4,10.0,kg/TJ,28.171087200000002,kg +50e6adb8-372c-390f-9e98-1400e9cfac7e,SESCO,II.1.1,La Rioja,AR-F,annual,2019,bioetanol combustion consumption by to the public,2.8171087200000002,TJ,N2O,0.6,kg/TJ,1.690265232,kg +3aeae81e-71e5-383b-b9c9-9671819370fe,SESCO,II.1.1,Mendoza,AR-M,annual,2019,bioetanol combustion consumption by to the public,13.6893078,TJ,CH4,10.0,kg/TJ,136.893078,kg +a72b7fad-043b-35d8-8cc4-58b7449ae2c0,SESCO,II.1.1,Mendoza,AR-M,annual,2019,bioetanol combustion consumption by to the public,13.6893078,TJ,N2O,0.6,kg/TJ,8.21358468,kg +78468167-aeed-3569-9121-0707aa2893f8,SESCO,II.1.1,Misiones,AR-N,annual,2019,bioetanol combustion consumption by to the public,19.41044148,TJ,CH4,10.0,kg/TJ,194.1044148,kg +2d145723-25f0-3adb-afc6-cc0c325b3731,SESCO,II.1.1,Misiones,AR-N,annual,2019,bioetanol combustion consumption by to the public,19.41044148,TJ,N2O,0.6,kg/TJ,11.646264888,kg +0b6311c2-e4e5-3dcf-b124-c8b815c81f7f,SESCO,II.1.1,Neuquén,AR-Q,annual,2019,bioetanol combustion consumption by to the public,8.4104244,TJ,CH4,10.0,kg/TJ,84.104244,kg +b01754ef-1eb7-30b1-b2aa-deaf96fafc0a,SESCO,II.1.1,Neuquén,AR-Q,annual,2019,bioetanol combustion consumption by to the public,8.4104244,TJ,N2O,0.6,kg/TJ,5.04625464,kg +6a6ea0ac-cd53-3ef1-abc4-dfbdb841161b,SESCO,II.1.1,Rio Negro,AR-R,annual,2019,bioetanol combustion consumption by to the public,15.846875639999999,TJ,CH4,10.0,kg/TJ,158.4687564,kg +4aa81bb0-f268-3ea6-8e56-a26580a544c0,SESCO,II.1.1,Rio Negro,AR-R,annual,2019,bioetanol combustion consumption by to the public,15.846875639999999,TJ,N2O,0.6,kg/TJ,9.508125384,kg +1d6bdf94-a3b5-3ab4-a857-1ca745007716,SESCO,II.1.1,Salta,AR-A,annual,2019,bioetanol combustion consumption by to the public,3.46131144,TJ,CH4,10.0,kg/TJ,34.6131144,kg +fee44ffa-e0b4-3e39-920f-83a5d162637f,SESCO,II.1.1,Salta,AR-A,annual,2019,bioetanol combustion consumption by to the public,3.46131144,TJ,N2O,0.6,kg/TJ,2.076786864,kg +f5bed3e7-ce88-3d52-8dc1-d3f2bfaaf0cb,SESCO,II.1.1,San Juan,AR-J,annual,2019,bioetanol combustion consumption by to the public,5.06670552,TJ,CH4,10.0,kg/TJ,50.6670552,kg +a91a715a-6084-3757-afca-161ff8c2c128,SESCO,II.1.1,San Juan,AR-J,annual,2019,bioetanol combustion consumption by to the public,5.06670552,TJ,N2O,0.6,kg/TJ,3.040023312,kg +fae50c26-b6db-3c16-be7b-ec5c246250d3,SESCO,II.1.1,San Luis,AR-D,annual,2019,bioetanol combustion consumption by to the public,13.17547944,TJ,CH4,10.0,kg/TJ,131.7547944,kg +e91c9d66-0a3d-36b9-aa50-92df135d3e18,SESCO,II.1.1,San Luis,AR-D,annual,2019,bioetanol combustion consumption by to the public,13.17547944,TJ,N2O,0.6,kg/TJ,7.905287663999999,kg +85001c78-2868-3c8d-ae2e-67c614e20986,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2019,bioetanol combustion consumption by to the public,15.547781519999997,TJ,CH4,10.0,kg/TJ,155.47781519999998,kg +0a0ca50c-8a0b-325d-a2e0-d4f679464747,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2019,bioetanol combustion consumption by to the public,15.547781519999997,TJ,N2O,0.6,kg/TJ,9.328668911999998,kg +dc31c267-4184-33ee-b87a-6aa8619a7bdf,SESCO,II.1.1,Santa Fe,AR-S,annual,2019,bioetanol combustion consumption by to the public,53.752581719999995,TJ,CH4,10.0,kg/TJ,537.5258171999999,kg +2de292b7-7e09-3951-b5b2-4442b31c2fae,SESCO,II.1.1,Santa Fe,AR-S,annual,2019,bioetanol combustion consumption by to the public,53.752581719999995,TJ,N2O,0.6,kg/TJ,32.25154903199999,kg +d6f3c530-1648-3868-a831-d5ee2f324d4f,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2019,bioetanol combustion consumption by to the public,7.911934199999999,TJ,CH4,10.0,kg/TJ,79.11934199999999,kg +f193ac4f-4cbf-36a8-8e41-c199a8490c70,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2019,bioetanol combustion consumption by to the public,7.911934199999999,TJ,N2O,0.6,kg/TJ,4.7471605199999996,kg +b5734823-79c1-3614-9cf9-97a8db939743,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2019,bioetanol combustion consumption by to the public,2.7455306399999997,TJ,CH4,10.0,kg/TJ,27.455306399999998,kg +889ae831-1943-376e-bbac-54c81cf96ecc,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2019,bioetanol combustion consumption by to the public,2.7455306399999997,TJ,N2O,0.6,kg/TJ,1.6473183839999999,kg +f2b11a52-d45b-30bd-b28a-c32989eec951,SESCO,II.1.1,Tucuman,AR-T,annual,2019,bioetanol combustion consumption by to the public,1.8099028799999999,TJ,CH4,10.0,kg/TJ,18.0990288,kg +100fd1a2-8f3c-38fd-b614-0bd30328a898,SESCO,II.1.1,Tucuman,AR-T,annual,2019,bioetanol combustion consumption by to the public,1.8099028799999999,TJ,N2O,0.6,kg/TJ,1.0859417279999999,kg +edd6c24d-ab0b-3285-8893-5646aaae1ae3,SESCO,II.1.1,Buenos Aires,AR-B,annual,2019,bioetanol combustion consumption by to the public,49.27128264,TJ,CH4,10.0,kg/TJ,492.71282640000004,kg +7ecae4a5-7ed7-361f-9abf-3dd746649ce6,SESCO,II.1.1,Buenos Aires,AR-B,annual,2019,bioetanol combustion consumption by to the public,49.27128264,TJ,N2O,0.6,kg/TJ,29.562769584,kg +4b39330a-7caa-399c-ab5a-909e47c35e80,SESCO,II.1.1,Capital Federal,AR-C,annual,2019,bioetanol combustion consumption by to the public,19.88081172,TJ,CH4,10.0,kg/TJ,198.8081172,kg +8f2523a2-877c-3525-b015-80a6d7cb9986,SESCO,II.1.1,Capital Federal,AR-C,annual,2019,bioetanol combustion consumption by to the public,19.88081172,TJ,N2O,0.6,kg/TJ,11.928487032,kg +7ccdbca9-0228-3d8e-a3d6-145ee4f0cd67,SESCO,II.1.1,Catamarca,AR-K,annual,2019,bioetanol combustion consumption by to the public,1.9172699999999998,TJ,CH4,10.0,kg/TJ,19.1727,kg +ca5d8ec4-5c3a-33a0-9319-fe575a40afe7,SESCO,II.1.1,Catamarca,AR-K,annual,2019,bioetanol combustion consumption by to the public,1.9172699999999998,TJ,N2O,0.6,kg/TJ,1.1503619999999999,kg +2d431818-3918-3871-96f4-04bbf6f27457,SESCO,II.1.1,Chaco,AR-H,annual,2019,bioetanol combustion consumption by to the public,1.2884054399999998,TJ,CH4,10.0,kg/TJ,12.884054399999998,kg +5a572148-5112-343e-ae8a-b6b11f1870a2,SESCO,II.1.1,Chaco,AR-H,annual,2019,bioetanol combustion consumption by to the public,1.2884054399999998,TJ,N2O,0.6,kg/TJ,0.7730432639999999,kg +cab20e4c-09b1-3de8-aec4-22ecd19b192a,SESCO,II.1.1,Chubut,AR-U,annual,2019,bioetanol combustion consumption by to the public,5.10760728,TJ,CH4,10.0,kg/TJ,51.0760728,kg +f75068f2-f64a-322c-8dad-8c6c00df664d,SESCO,II.1.1,Chubut,AR-U,annual,2019,bioetanol combustion consumption by to the public,5.10760728,TJ,N2O,0.6,kg/TJ,3.0645643679999997,kg +3c870c0f-7d46-3048-877a-d6c36b4b5d36,SESCO,II.1.1,Corrientes,AR-W,annual,2019,bioetanol combustion consumption by to the public,2.6560580399999996,TJ,CH4,10.0,kg/TJ,26.560580399999996,kg +ea7f2d32-a8a8-3f78-97bb-c7213575d8cd,SESCO,II.1.1,Corrientes,AR-W,annual,2019,bioetanol combustion consumption by to the public,2.6560580399999996,TJ,N2O,0.6,kg/TJ,1.5936348239999998,kg +aff9f8cd-f7d8-3d91-856a-09e1191815f7,SESCO,II.1.1,Córdoba,AR-X,annual,2019,bioetanol combustion consumption by to the public,12.66165108,TJ,CH4,10.0,kg/TJ,126.6165108,kg +de1fc1a3-6b58-3ffb-bcfe-53ae2ee2ed79,SESCO,II.1.1,Córdoba,AR-X,annual,2019,bioetanol combustion consumption by to the public,12.66165108,TJ,N2O,0.6,kg/TJ,7.596990648,kg +687a3a53-392e-3fc8-9a55-4bde60ff58de,SESCO,II.1.1,Entre Rios,AR-E,annual,2019,bioetanol combustion consumption by to the public,5.88985344,TJ,CH4,10.0,kg/TJ,58.8985344,kg +bee891e0-a650-3914-a887-bdbcbe43589a,SESCO,II.1.1,Entre Rios,AR-E,annual,2019,bioetanol combustion consumption by to the public,5.88985344,TJ,N2O,0.6,kg/TJ,3.5339120640000004,kg +a14e9e7c-8788-3ec9-bbdf-4b5ea0010bd5,SESCO,II.1.1,Formosa,AR-P,annual,2019,bioetanol combustion consumption by to the public,2.50012008,TJ,CH4,10.0,kg/TJ,25.0012008,kg +1a4841c6-2ddf-3068-9720-be1a8fca957d,SESCO,II.1.1,Formosa,AR-P,annual,2019,bioetanol combustion consumption by to the public,2.50012008,TJ,N2O,0.6,kg/TJ,1.5000720479999998,kg +8a7417f0-bc95-3760-a96b-20b002d1f272,SESCO,II.1.1,Jujuy,AR-Y,annual,2019,bioetanol combustion consumption by to the public,0.8435988,TJ,CH4,10.0,kg/TJ,8.435988,kg +81c7b843-0bef-3c1d-a6ad-b6422a860728,SESCO,II.1.1,Jujuy,AR-Y,annual,2019,bioetanol combustion consumption by to the public,0.8435988,TJ,N2O,0.6,kg/TJ,0.50615928,kg +1d8de937-4d57-3957-9bcb-aeb571aded93,SESCO,II.1.1,La Pampa,AR-L,annual,2019,bioetanol combustion consumption by to the public,1.34720172,TJ,CH4,10.0,kg/TJ,13.4720172,kg +663dbbc4-1bb5-3c1b-a55c-5e050251da3b,SESCO,II.1.1,La Pampa,AR-L,annual,2019,bioetanol combustion consumption by to the public,1.34720172,TJ,N2O,0.6,kg/TJ,0.8083210319999999,kg +c2ca0d94-79ac-32f1-93fd-7ef6f61bcc6f,SESCO,II.1.1,La Rioja,AR-F,annual,2019,bioetanol combustion consumption by to the public,0.44736299999999996,TJ,CH4,10.0,kg/TJ,4.47363,kg +77e084a6-682e-3231-89e9-6bc4bf01d12e,SESCO,II.1.1,La Rioja,AR-F,annual,2019,bioetanol combustion consumption by to the public,0.44736299999999996,TJ,N2O,0.6,kg/TJ,0.2684178,kg +4e1189c7-e885-324d-bd18-05c9859271ee,SESCO,II.1.1,Mendoza,AR-M,annual,2019,bioetanol combustion consumption by to the public,3.26191536,TJ,CH4,10.0,kg/TJ,32.619153600000004,kg +d30ab2c1-b418-3d76-a293-11b496cca0d3,SESCO,II.1.1,Mendoza,AR-M,annual,2019,bioetanol combustion consumption by to the public,3.26191536,TJ,N2O,0.6,kg/TJ,1.957149216,kg +7b7b44be-b15e-3867-bcbd-f9b637b53da7,SESCO,II.1.1,Misiones,AR-N,annual,2019,bioetanol combustion consumption by to the public,2.3262876,TJ,CH4,10.0,kg/TJ,23.262876000000002,kg +f0217d98-de56-3918-9e5f-de7a7e1c3076,SESCO,II.1.1,Misiones,AR-N,annual,2019,bioetanol combustion consumption by to the public,2.3262876,TJ,N2O,0.6,kg/TJ,1.39577256,kg +db91091c-47ed-32e1-af9a-c96f95981e97,SESCO,II.1.1,Neuquén,AR-Q,annual,2019,bioetanol combustion consumption by to the public,3.6274748399999996,TJ,CH4,10.0,kg/TJ,36.27474839999999,kg +9639ded7-172f-3a4a-a8af-9bcbe3592f72,SESCO,II.1.1,Neuquén,AR-Q,annual,2019,bioetanol combustion consumption by to the public,3.6274748399999996,TJ,N2O,0.6,kg/TJ,2.1764849039999996,kg +9d9a9dec-8e0e-3e03-b523-ceee12a178bb,SESCO,II.1.1,Rio Negro,AR-R,annual,2019,bioetanol combustion consumption by to the public,5.36579964,TJ,CH4,10.0,kg/TJ,53.657996399999995,kg +c926861d-6093-36b7-8466-7b1a58e985d4,SESCO,II.1.1,Rio Negro,AR-R,annual,2019,bioetanol combustion consumption by to the public,5.36579964,TJ,N2O,0.6,kg/TJ,3.219479784,kg +d24ca058-07dc-3cfc-b8a3-885469bc9d54,SESCO,II.1.1,Salta,AR-A,annual,2019,bioetanol combustion consumption by to the public,0.37578492,TJ,CH4,10.0,kg/TJ,3.7578492000000003,kg +499e8692-60d9-3636-b620-5ee3472198d1,SESCO,II.1.1,Salta,AR-A,annual,2019,bioetanol combustion consumption by to the public,0.37578492,TJ,N2O,0.6,kg/TJ,0.225470952,kg +0b73dec2-1b00-31df-bdc8-4c5b11abe9eb,SESCO,II.1.1,San Juan,AR-J,annual,2019,bioetanol combustion consumption by to the public,1.3420889999999999,TJ,CH4,10.0,kg/TJ,13.420889999999998,kg +b0ffdadd-20e4-34ae-9f4a-f2c9fcb7a10c,SESCO,II.1.1,San Juan,AR-J,annual,2019,bioetanol combustion consumption by to the public,1.3420889999999999,TJ,N2O,0.6,kg/TJ,0.8052533999999999,kg +d073389e-0356-3154-becc-7512303b618d,SESCO,II.1.1,San Luis,AR-D,annual,2019,bioetanol combustion consumption by to the public,2.4157602,TJ,CH4,10.0,kg/TJ,24.157601999999997,kg +cc9007dd-e63f-366f-a072-2a4a2b832bb0,SESCO,II.1.1,San Luis,AR-D,annual,2019,bioetanol combustion consumption by to the public,2.4157602,TJ,N2O,0.6,kg/TJ,1.4494561199999998,kg +5fb6214d-df94-39b0-bbea-ae372a14bdd4,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2019,bioetanol combustion consumption by to the public,2.1626805599999996,TJ,CH4,10.0,kg/TJ,21.626805599999997,kg +72382653-f1f6-3724-ba54-d409081bfb3c,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2019,bioetanol combustion consumption by to the public,2.1626805599999996,TJ,N2O,0.6,kg/TJ,1.2976083359999997,kg +2ed803eb-c73e-33fd-89a1-ea81d3704af9,SESCO,II.1.1,Santa Fe,AR-S,annual,2019,bioetanol combustion consumption by to the public,12.06857556,TJ,CH4,10.0,kg/TJ,120.6857556,kg +5f08218a-f35f-3596-b57a-852826b546c3,SESCO,II.1.1,Santa Fe,AR-S,annual,2019,bioetanol combustion consumption by to the public,12.06857556,TJ,N2O,0.6,kg/TJ,7.241145335999999,kg +797cf368-10da-3d65-8433-13526ec8fc5e,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2019,bioetanol combustion consumption by to the public,1.8508046399999998,TJ,CH4,10.0,kg/TJ,18.508046399999998,kg +c81d533b-fa2a-3a55-9291-3324051625bb,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2019,bioetanol combustion consumption by to the public,1.8508046399999998,TJ,N2O,0.6,kg/TJ,1.1104827839999998,kg +b9d84be5-125b-37a3-92b0-882684f8a1d7,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2019,bioetanol combustion consumption by to the public,0.6058573199999999,TJ,CH4,10.0,kg/TJ,6.0585732,kg +531c8740-fa8a-3ece-8c4f-b312d304aba5,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2019,bioetanol combustion consumption by to the public,0.6058573199999999,TJ,N2O,0.6,kg/TJ,0.36351439199999996,kg +9af1df80-3368-3bb1-a352-2a2a9a477ab2,SESCO,II.1.1,Tucuman,AR-T,annual,2019,bioetanol combustion consumption by to the public,0.13548707999999998,TJ,CH4,10.0,kg/TJ,1.3548707999999998,kg +0e21e32e-85c2-3ae3-bb40-898780e3e086,SESCO,II.1.1,Tucuman,AR-T,annual,2019,bioetanol combustion consumption by to the public,0.13548707999999998,TJ,N2O,0.6,kg/TJ,0.08129224799999998,kg +280ff9fd-c82a-3dd5-b28f-960a96464e6b,SESCO,II.1.1,Buenos Aires,AR-B,annual,2019,bioetanol combustion consumption by freight transport,0.24029783999999998,TJ,CH4,10.0,kg/TJ,2.4029784,kg +30ced1b5-032e-3bed-95eb-6047dc02e28b,SESCO,II.1.1,Buenos Aires,AR-B,annual,2019,bioetanol combustion consumption by freight transport,0.24029783999999998,TJ,N2O,0.6,kg/TJ,0.144178704,kg +6abeccda-08d1-38e5-b368-3a862ec32eb1,SESCO,II.1.1,Capital Federal,AR-C,annual,2019,bioetanol combustion consumption by freight transport,0.11503619999999998,TJ,CH4,10.0,kg/TJ,1.1503619999999999,kg +d163c0d9-4f04-3d4e-a170-d1249892f9a1,SESCO,II.1.1,Capital Federal,AR-C,annual,2019,bioetanol combustion consumption by freight transport,0.11503619999999998,TJ,N2O,0.6,kg/TJ,0.06902171999999998,kg +d8118ba0-6cf7-37b9-9cab-db132d9a0e8e,SESCO,II.1.1,Córdoba,AR-X,annual,2019,bioetanol combustion consumption by freight transport,0.063909,TJ,CH4,10.0,kg/TJ,0.6390899999999999,kg +f7166e6f-eb45-336d-8fc6-c627253c90cf,SESCO,II.1.1,Córdoba,AR-X,annual,2019,bioetanol combustion consumption by freight transport,0.063909,TJ,N2O,0.6,kg/TJ,0.038345399999999995,kg +1ead6138-3314-3399-87c6-8a8d20e03161,SESCO,II.1.1,Mendoza,AR-M,annual,2019,bioetanol combustion consumption by freight transport,0.005112719999999999,TJ,CH4,10.0,kg/TJ,0.0511272,kg +b3cd3f34-225a-30b6-ae3f-dffcf57f5c45,SESCO,II.1.1,Mendoza,AR-M,annual,2019,bioetanol combustion consumption by freight transport,0.005112719999999999,TJ,N2O,0.6,kg/TJ,0.0030676319999999994,kg +616e2b4d-0dc1-38c2-8343-ca3e86471a59,SESCO,II.1.1,Salta,AR-A,annual,2019,bioetanol combustion consumption by freight transport,0.007669079999999999,TJ,CH4,10.0,kg/TJ,0.07669079999999999,kg +d0854f69-f300-3a72-8ee9-211090365fed,SESCO,II.1.1,Salta,AR-A,annual,2019,bioetanol combustion consumption by freight transport,0.007669079999999999,TJ,N2O,0.6,kg/TJ,0.004601447999999999,kg +37b4c558-94c5-3309-b9e9-e0d7a1ca13f7,SESCO,II.1.1,Santa Fe,AR-S,annual,2019,bioetanol combustion consumption by freight transport,0.035789039999999994,TJ,CH4,10.0,kg/TJ,0.35789039999999994,kg +5f5109a4-d4ee-3e20-b227-b0f0f816addc,SESCO,II.1.1,Santa Fe,AR-S,annual,2019,bioetanol combustion consumption by freight transport,0.035789039999999994,TJ,N2O,0.6,kg/TJ,0.021473423999999994,kg +53137234-5bee-3370-98ef-a94bcafb8a8d,SESCO,II.1.1,Tucuman,AR-T,annual,2019,bioetanol combustion consumption by freight transport,0.0025563599999999997,TJ,CH4,10.0,kg/TJ,0.0255636,kg +5fa21baf-2acb-3d82-a31f-10e581f47c91,SESCO,II.1.1,Tucuman,AR-T,annual,2019,bioetanol combustion consumption by freight transport,0.0025563599999999997,TJ,N2O,0.6,kg/TJ,0.0015338159999999997,kg +ee1aa1f1-09c7-3d45-9bfa-9f6afffb43fa,SESCO,II.1.1,Buenos Aires,AR-B,annual,2019,bioetanol combustion consumption by freight transport,0.14571251999999998,TJ,CH4,10.0,kg/TJ,1.4571252,kg +5af70caf-33f6-36f9-b463-c4809040b52e,SESCO,II.1.1,Buenos Aires,AR-B,annual,2019,bioetanol combustion consumption by freight transport,0.14571251999999998,TJ,N2O,0.6,kg/TJ,0.08742751199999999,kg +a65273fb-ddf5-3080-89fe-8c925f2126ae,SESCO,II.1.1,Capital Federal,AR-C,annual,2019,bioetanol combustion consumption by freight transport,0.063909,TJ,CH4,10.0,kg/TJ,0.6390899999999999,kg +8e69eed9-0198-3f1f-b000-d4965b95049b,SESCO,II.1.1,Capital Federal,AR-C,annual,2019,bioetanol combustion consumption by freight transport,0.063909,TJ,N2O,0.6,kg/TJ,0.038345399999999995,kg +932b14b7-8100-3bf9-b98a-ad886169d113,SESCO,II.1.1,Corrientes,AR-W,annual,2019,bioetanol combustion consumption by freight transport,0.007669079999999999,TJ,CH4,10.0,kg/TJ,0.07669079999999999,kg +54f02717-b0a9-3119-9edd-e8dd7f491cfa,SESCO,II.1.1,Corrientes,AR-W,annual,2019,bioetanol combustion consumption by freight transport,0.007669079999999999,TJ,N2O,0.6,kg/TJ,0.004601447999999999,kg +428402ed-3518-353d-9b5f-2295cf143e52,SESCO,II.1.1,Córdoba,AR-X,annual,2019,bioetanol combustion consumption by freight transport,0.040901759999999995,TJ,CH4,10.0,kg/TJ,0.4090176,kg +4b77ee56-06da-3e3a-96fd-318c10a99d27,SESCO,II.1.1,Córdoba,AR-X,annual,2019,bioetanol combustion consumption by freight transport,0.040901759999999995,TJ,N2O,0.6,kg/TJ,0.024541055999999995,kg +a6d9acb0-0c43-3b08-b944-ca4771e87a81,SESCO,II.1.1,Entre Rios,AR-E,annual,2019,bioetanol combustion consumption by freight transport,0.010225439999999999,TJ,CH4,10.0,kg/TJ,0.1022544,kg +0ad6a27c-c115-3486-a883-f8db452ae7b3,SESCO,II.1.1,Entre Rios,AR-E,annual,2019,bioetanol combustion consumption by freight transport,0.010225439999999999,TJ,N2O,0.6,kg/TJ,0.006135263999999999,kg +d0711613-8448-3183-b938-10c416ffa6a4,SESCO,II.1.1,Santa Fe,AR-S,annual,2019,bioetanol combustion consumption by freight transport,0.038345399999999995,TJ,CH4,10.0,kg/TJ,0.38345399999999996,kg +664b6246-b4b9-35f5-8915-d39cebdd82a6,SESCO,II.1.1,Santa Fe,AR-S,annual,2019,bioetanol combustion consumption by freight transport,0.038345399999999995,TJ,N2O,0.6,kg/TJ,0.023007239999999995,kg +4e9983f9-1fc0-353d-9e08-cb4377baad9e,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2019,bioetanol combustion consumption by freight transport,0.0025563599999999997,TJ,CH4,10.0,kg/TJ,0.0255636,kg +9b33756f-94e1-3203-91ed-bf636d919669,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2019,bioetanol combustion consumption by freight transport,0.0025563599999999997,TJ,N2O,0.6,kg/TJ,0.0015338159999999997,kg +59ae8139-e1e0-3965-8817-b6324e05871e,SESCO,II.1.1,Santa Fe,AR-S,annual,2019,bioetanol combustion consumption by public passenger transport,0.007669079999999999,TJ,CH4,10.0,kg/TJ,0.07669079999999999,kg +6c4d293d-77f7-357a-b4a3-54beeb65ef50,SESCO,II.1.1,Santa Fe,AR-S,annual,2019,bioetanol combustion consumption by public passenger transport,0.007669079999999999,TJ,N2O,0.6,kg/TJ,0.004601447999999999,kg +84e22604-2a2a-3997-a354-6819a6db171c,SESCO,II.5.1,Córdoba,AR-X,annual,2019,bioetanol combustion consumption by agriculture machines,0.21217787999999996,TJ,CH4,10.0,kg/TJ,2.1217787999999995,kg +fc675e99-a56f-38e2-8d12-9d4c33c90d3e,SESCO,II.5.1,Córdoba,AR-X,annual,2019,bioetanol combustion consumption by agriculture machines,0.21217787999999996,TJ,N2O,0.6,kg/TJ,0.12730672799999998,kg +1202876b-99e1-34b6-a5fb-7ebd199fd2e4,SESCO,II.5.1,Santa Fe,AR-S,annual,2019,bioetanol combustion consumption by agriculture machines,2.9832721199999996,TJ,CH4,10.0,kg/TJ,29.832721199999995,kg +2dae29ae-f042-3101-bee0-85893f5806b1,SESCO,II.5.1,Santa Fe,AR-S,annual,2019,bioetanol combustion consumption by agriculture machines,2.9832721199999996,TJ,N2O,0.6,kg/TJ,1.7899632719999998,kg +f9a60b85-1f02-3200-96f4-ae6661b357d2,SESCO,II.5.1,Córdoba,AR-X,annual,2019,bioetanol combustion consumption by agriculture machines,0.127818,TJ,CH4,10.0,kg/TJ,1.2781799999999999,kg +69ca89e7-2ea4-386f-b6bb-7ccc84336e1b,SESCO,II.5.1,Córdoba,AR-X,annual,2019,bioetanol combustion consumption by agriculture machines,0.127818,TJ,N2O,0.6,kg/TJ,0.07669079999999999,kg +a973f41a-0ba5-3f48-9079-a42d2340d647,SESCO,II.5.1,Santa Fe,AR-S,annual,2019,bioetanol combustion consumption by agriculture machines,0.45503207999999995,TJ,CH4,10.0,kg/TJ,4.5503208,kg +7bc359f7-aaa2-3313-9529-d58400df21a4,SESCO,II.5.1,Santa Fe,AR-S,annual,2019,bioetanol combustion consumption by agriculture machines,0.45503207999999995,TJ,N2O,0.6,kg/TJ,0.27301924799999994,kg +85d3a982-679c-350e-876d-aa351935a2d4,SESCO,II.1.1,Buenos Aires,AR-B,annual,2019,bioetanol combustion consumption by to the public,689.02082352,TJ,CH4,10.0,kg/TJ,6890.2082352,kg +e2d6d54c-1207-37c6-ba19-ee356d93d521,SESCO,II.1.1,Buenos Aires,AR-B,annual,2019,bioetanol combustion consumption by to the public,689.02082352,TJ,N2O,0.6,kg/TJ,413.412494112,kg +9b45ee53-c646-3c6e-8c95-7a201ded9cec,SESCO,II.1.1,Capital Federal,AR-C,annual,2019,bioetanol combustion consumption by to the public,203.1155838,TJ,CH4,10.0,kg/TJ,2031.155838,kg +389ab3e6-a3c1-3c48-9768-7379a487a334,SESCO,II.1.1,Capital Federal,AR-C,annual,2019,bioetanol combustion consumption by to the public,203.1155838,TJ,N2O,0.6,kg/TJ,121.86935027999999,kg +972321cc-ac82-304d-8661-b02a258ca850,SESCO,II.1.1,Catamarca,AR-K,annual,2019,bioetanol combustion consumption by to the public,26.097879239999997,TJ,CH4,10.0,kg/TJ,260.9787924,kg +3a84c0ef-35ec-3aa2-955c-f7a4fc36ac84,SESCO,II.1.1,Catamarca,AR-K,annual,2019,bioetanol combustion consumption by to the public,26.097879239999997,TJ,N2O,0.6,kg/TJ,15.658727543999998,kg +663c63e5-36de-3afe-9097-51b985d53ec3,SESCO,II.1.1,Chaco,AR-H,annual,2019,bioetanol combustion consumption by to the public,34.6642416,TJ,CH4,10.0,kg/TJ,346.64241599999997,kg +19dde110-5621-3fba-b37b-8a00dccced5e,SESCO,II.1.1,Chaco,AR-H,annual,2019,bioetanol combustion consumption by to the public,34.6642416,TJ,N2O,0.6,kg/TJ,20.798544959999997,kg +d3b8755f-f78e-3c19-ab07-1a64fd282bae,SESCO,II.1.1,Chubut,AR-U,annual,2019,bioetanol combustion consumption by to the public,100.05081767999998,TJ,CH4,10.0,kg/TJ,1000.5081767999998,kg +ce6d9263-bb01-3739-b011-d1798d69a5ac,SESCO,II.1.1,Chubut,AR-U,annual,2019,bioetanol combustion consumption by to the public,100.05081767999998,TJ,N2O,0.6,kg/TJ,60.03049060799999,kg +270346fa-686b-3e1a-ac08-80a39baa93e0,SESCO,II.1.1,Corrientes,AR-W,annual,2019,bioetanol combustion consumption by to the public,44.73118727999999,TJ,CH4,10.0,kg/TJ,447.31187279999995,kg +d2782c59-6c10-308d-8408-87794fd3a3e6,SESCO,II.1.1,Corrientes,AR-W,annual,2019,bioetanol combustion consumption by to the public,44.73118727999999,TJ,N2O,0.6,kg/TJ,26.838712367999996,kg +aea3a088-6e03-36ff-8084-b0dae9401f27,SESCO,II.1.1,Córdoba,AR-X,annual,2019,bioetanol combustion consumption by to the public,175.76508815999998,TJ,CH4,10.0,kg/TJ,1757.6508815999998,kg +29193f99-4bfa-32fa-aee1-5f789e4d1a0e,SESCO,II.1.1,Córdoba,AR-X,annual,2019,bioetanol combustion consumption by to the public,175.76508815999998,TJ,N2O,0.6,kg/TJ,105.45905289599999,kg +b7cf4d54-aa5f-3cb0-ad56-b46d8001d51e,SESCO,II.1.1,Entre Rios,AR-E,annual,2019,bioetanol combustion consumption by to the public,67.73842728,TJ,CH4,10.0,kg/TJ,677.3842728,kg +9f811e00-8233-33ff-97fc-7e181a9a71db,SESCO,II.1.1,Entre Rios,AR-E,annual,2019,bioetanol combustion consumption by to the public,67.73842728,TJ,N2O,0.6,kg/TJ,40.643056367999996,kg +149a1ae6-e541-3307-b23f-70b42121a4f4,SESCO,II.1.1,Formosa,AR-P,annual,2019,bioetanol combustion consumption by to the public,39.42674028,TJ,CH4,10.0,kg/TJ,394.26740279999996,kg +2a710d14-6bef-3f27-ae0e-796ac827a6be,SESCO,II.1.1,Formosa,AR-P,annual,2019,bioetanol combustion consumption by to the public,39.42674028,TJ,N2O,0.6,kg/TJ,23.656044167999998,kg +6dfaf88e-5e3d-3189-b2f5-d13b4ad08c57,SESCO,II.1.1,Jujuy,AR-Y,annual,2019,bioetanol combustion consumption by to the public,13.33397376,TJ,CH4,10.0,kg/TJ,133.33973759999998,kg +c79bcf34-4702-35fb-ae7b-45c75afb1967,SESCO,II.1.1,Jujuy,AR-Y,annual,2019,bioetanol combustion consumption by to the public,13.33397376,TJ,N2O,0.6,kg/TJ,8.000384255999998,kg +19023cb1-1bd9-3e91-bb5c-b47ad67bd975,SESCO,II.1.1,La Pampa,AR-L,annual,2019,bioetanol combustion consumption by to the public,11.674896119999998,TJ,CH4,10.0,kg/TJ,116.74896119999998,kg +1f0e5281-8084-3aad-a0b4-a7429ccfb78d,SESCO,II.1.1,La Pampa,AR-L,annual,2019,bioetanol combustion consumption by to the public,11.674896119999998,TJ,N2O,0.6,kg/TJ,7.004937671999999,kg +25ffde7c-42c9-38ed-aa4f-4246978b7eac,SESCO,II.1.1,La Rioja,AR-F,annual,2019,bioetanol combustion consumption by to the public,8.354184479999999,TJ,CH4,10.0,kg/TJ,83.54184479999999,kg +367ac22b-de3f-3c0e-abd6-b027f8963cb8,SESCO,II.1.1,La Rioja,AR-F,annual,2019,bioetanol combustion consumption by to the public,8.354184479999999,TJ,N2O,0.6,kg/TJ,5.012510687999999,kg +a6f38c3a-07c6-3a84-9922-7b4b266e6973,SESCO,II.1.1,Mendoza,AR-M,annual,2019,bioetanol combustion consumption by to the public,42.665648399999995,TJ,CH4,10.0,kg/TJ,426.656484,kg +71384ab9-a372-3db6-bfed-f6baed91e1ab,SESCO,II.1.1,Mendoza,AR-M,annual,2019,bioetanol combustion consumption by to the public,42.665648399999995,TJ,N2O,0.6,kg/TJ,25.599389039999995,kg +946b9667-adaf-3698-9d45-f34ba7da15c2,SESCO,II.1.1,Misiones,AR-N,annual,2019,bioetanol combustion consumption by to the public,61.67729771999999,TJ,CH4,10.0,kg/TJ,616.7729771999999,kg +69cf9861-3dd3-3530-b259-bf2c9eb743a4,SESCO,II.1.1,Misiones,AR-N,annual,2019,bioetanol combustion consumption by to the public,61.67729771999999,TJ,N2O,0.6,kg/TJ,37.00637863199999,kg +93603bdf-3f4f-381b-9dc7-d1e202211d99,SESCO,II.1.1,Neuquén,AR-Q,annual,2019,bioetanol combustion consumption by to the public,33.442301519999994,TJ,CH4,10.0,kg/TJ,334.42301519999995,kg +178d6278-d70b-3618-95f3-53e7d11b78f7,SESCO,II.1.1,Neuquén,AR-Q,annual,2019,bioetanol combustion consumption by to the public,33.442301519999994,TJ,N2O,0.6,kg/TJ,20.065380911999995,kg +a601c543-3475-377d-b602-4393a43c2c9d,SESCO,II.1.1,Rio Negro,AR-R,annual,2019,bioetanol combustion consumption by to the public,42.96729888,TJ,CH4,10.0,kg/TJ,429.6729888,kg +ade0cd29-0eaa-3078-b732-edc47024cf64,SESCO,II.1.1,Rio Negro,AR-R,annual,2019,bioetanol combustion consumption by to the public,42.96729888,TJ,N2O,0.6,kg/TJ,25.780379328,kg +59078d3f-18e6-387c-8da3-94375fa3a69f,SESCO,II.1.1,Salta,AR-A,annual,2019,bioetanol combustion consumption by to the public,11.286329399999998,TJ,CH4,10.0,kg/TJ,112.86329399999998,kg +fc43866c-7e21-3d83-ac23-3993b8d5db9d,SESCO,II.1.1,Salta,AR-A,annual,2019,bioetanol combustion consumption by to the public,11.286329399999998,TJ,N2O,0.6,kg/TJ,6.771797639999998,kg +898f19d2-3bee-386f-ad43-7f127f4a0572,SESCO,II.1.1,San Juan,AR-J,annual,2019,bioetanol combustion consumption by to the public,15.235905599999997,TJ,CH4,10.0,kg/TJ,152.35905599999998,kg +689afedf-7d1a-3e1b-9c28-023d2b8b6fd4,SESCO,II.1.1,San Juan,AR-J,annual,2019,bioetanol combustion consumption by to the public,15.235905599999997,TJ,N2O,0.6,kg/TJ,9.141543359999998,kg +13956f48-cc1c-3357-be7a-08f0e7e12b5c,SESCO,II.1.1,San Luis,AR-D,annual,2019,bioetanol combustion consumption by to the public,38.51667612,TJ,CH4,10.0,kg/TJ,385.1667612,kg +06cb77a3-be59-3b3d-a4e3-884fc4ff18f1,SESCO,II.1.1,San Luis,AR-D,annual,2019,bioetanol combustion consumption by to the public,38.51667612,TJ,N2O,0.6,kg/TJ,23.110005672,kg +dacdc3fe-3d0d-31bb-90c7-510211bdbeed,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2019,bioetanol combustion consumption by to the public,51.78162816,TJ,CH4,10.0,kg/TJ,517.8162815999999,kg +c653ce1b-66f9-36e1-9e66-6f79c5d23915,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2019,bioetanol combustion consumption by to the public,51.78162816,TJ,N2O,0.6,kg/TJ,31.068976895999995,kg +e86d0f2a-6ef7-3853-87f9-29a780642f2e,SESCO,II.1.1,Santa Fe,AR-S,annual,2019,bioetanol combustion consumption by to the public,179.37722483999997,TJ,CH4,10.0,kg/TJ,1793.7722483999996,kg +05ff84cf-192b-3063-a486-5b09b78f0fc7,SESCO,II.1.1,Santa Fe,AR-S,annual,2019,bioetanol combustion consumption by to the public,179.37722483999997,TJ,N2O,0.6,kg/TJ,107.62633490399998,kg +ba32f2a1-476f-397d-859b-15efd956bc12,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2019,bioetanol combustion consumption by to the public,25.438338359999996,TJ,CH4,10.0,kg/TJ,254.38338359999995,kg +194a1c6c-28f9-35b9-922b-feb4ce328d70,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2019,bioetanol combustion consumption by to the public,25.438338359999996,TJ,N2O,0.6,kg/TJ,15.263003015999997,kg +b832ffc5-8fd6-3f1c-84a7-dc711c306cce,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2019,bioetanol combustion consumption by to the public,9.300037679999999,TJ,CH4,10.0,kg/TJ,93.0003768,kg +85652570-5fdf-3411-8e21-8b7e44aaa8db,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2019,bioetanol combustion consumption by to the public,9.300037679999999,TJ,N2O,0.6,kg/TJ,5.580022607999999,kg +cdc09b1a-08fd-3660-8109-d06d09c84a9e,SESCO,II.1.1,Tucuman,AR-T,annual,2019,bioetanol combustion consumption by to the public,7.79434164,TJ,CH4,10.0,kg/TJ,77.9434164,kg +30f55916-00f0-3c0a-9af9-47ac9fdf4a90,SESCO,II.1.1,Tucuman,AR-T,annual,2019,bioetanol combustion consumption by to the public,7.79434164,TJ,N2O,0.6,kg/TJ,4.676604984,kg +0a708b57-1fe2-3d6d-8850-64b11b9fc4fd,SESCO,II.1.1,Buenos Aires,AR-B,annual,2019,bioetanol combustion consumption by to the public,141.95211443999997,TJ,CH4,10.0,kg/TJ,1419.5211443999997,kg +20409fbf-8b16-3bb8-aa49-d16c533fa915,SESCO,II.1.1,Buenos Aires,AR-B,annual,2019,bioetanol combustion consumption by to the public,141.95211443999997,TJ,N2O,0.6,kg/TJ,85.17126866399998,kg +38b5e6ac-27b0-380d-a2f9-22478630db8b,SESCO,II.1.1,Capital Federal,AR-C,annual,2019,bioetanol combustion consumption by to the public,67.24504979999999,TJ,CH4,10.0,kg/TJ,672.4504979999999,kg +c8e6aacc-c59f-3c38-872f-87ed9e4fbd02,SESCO,II.1.1,Capital Federal,AR-C,annual,2019,bioetanol combustion consumption by to the public,67.24504979999999,TJ,N2O,0.6,kg/TJ,40.347029879999994,kg +501b6456-5e0d-39da-bbff-5e56397f796f,SESCO,II.1.1,Catamarca,AR-K,annual,2019,bioetanol combustion consumption by to the public,6.257969279999999,TJ,CH4,10.0,kg/TJ,62.57969279999999,kg +582006e4-1896-36a7-84e6-fa7a10fd8c9d,SESCO,II.1.1,Catamarca,AR-K,annual,2019,bioetanol combustion consumption by to the public,6.257969279999999,TJ,N2O,0.6,kg/TJ,3.7547815679999994,kg +50a8cbb0-a25c-3dc5-8145-e2820e89a478,SESCO,II.1.1,Chaco,AR-H,annual,2019,bioetanol combustion consumption by to the public,5.2712143199999995,TJ,CH4,10.0,kg/TJ,52.71214319999999,kg +f6d2ad1e-8a2f-32d8-8782-fe2c4937e109,SESCO,II.1.1,Chaco,AR-H,annual,2019,bioetanol combustion consumption by to the public,5.2712143199999995,TJ,N2O,0.6,kg/TJ,3.1627285919999997,kg +4a9fa713-335e-370f-b4ac-2103e0e287d8,SESCO,II.1.1,Chubut,AR-U,annual,2019,bioetanol combustion consumption by to the public,16.54731828,TJ,CH4,10.0,kg/TJ,165.4731828,kg +70af9a1a-f444-3a3a-b7f3-dba0d1b7ff87,SESCO,II.1.1,Chubut,AR-U,annual,2019,bioetanol combustion consumption by to the public,16.54731828,TJ,N2O,0.6,kg/TJ,9.928390967999999,kg +5b002a1f-fb63-37ab-b709-0dd430f0dfd5,SESCO,II.1.1,Corrientes,AR-W,annual,2019,bioetanol combustion consumption by to the public,7.779003479999999,TJ,CH4,10.0,kg/TJ,77.79003479999999,kg +55ca0f84-4a88-3e9a-b0b8-cae6e791a10e,SESCO,II.1.1,Corrientes,AR-W,annual,2019,bioetanol combustion consumption by to the public,7.779003479999999,TJ,N2O,0.6,kg/TJ,4.667402087999999,kg +7cedea5c-8cba-3f4f-a10d-38b3fdb74159,SESCO,II.1.1,Córdoba,AR-X,annual,2019,bioetanol combustion consumption by to the public,36.08557775999999,TJ,CH4,10.0,kg/TJ,360.8557775999999,kg +f164d0d5-ea96-3450-bc5f-79bd7aacd6f7,SESCO,II.1.1,Córdoba,AR-X,annual,2019,bioetanol combustion consumption by to the public,36.08557775999999,TJ,N2O,0.6,kg/TJ,21.651346655999994,kg +38b26362-e939-3717-a84e-56ae2d37034d,SESCO,II.1.1,Entre Rios,AR-E,annual,2019,bioetanol combustion consumption by to the public,14.2005798,TJ,CH4,10.0,kg/TJ,142.005798,kg +6e8d7cbe-8212-39c1-928b-297d79a01881,SESCO,II.1.1,Entre Rios,AR-E,annual,2019,bioetanol combustion consumption by to the public,14.2005798,TJ,N2O,0.6,kg/TJ,8.52034788,kg +f9fb874b-8775-3724-9fcb-276b5af26b53,SESCO,II.1.1,Formosa,AR-P,annual,2019,bioetanol combustion consumption by to the public,9.17221968,TJ,CH4,10.0,kg/TJ,91.72219679999999,kg +1179dd73-e72f-3a18-ab55-e4a373e16fd5,SESCO,II.1.1,Formosa,AR-P,annual,2019,bioetanol combustion consumption by to the public,9.17221968,TJ,N2O,0.6,kg/TJ,5.5033318079999995,kg +30a7b864-19ab-36bd-8bec-9a5dab6ea425,SESCO,II.1.1,Jujuy,AR-Y,annual,2019,bioetanol combustion consumption by to the public,2.5052328,TJ,CH4,10.0,kg/TJ,25.052328,kg +f3adcdfc-aadb-3d97-b854-d6e626db0b17,SESCO,II.1.1,Jujuy,AR-Y,annual,2019,bioetanol combustion consumption by to the public,2.5052328,TJ,N2O,0.6,kg/TJ,1.5031396799999999,kg +a61f9e36-0a62-3ef9-ab27-4c3cd78799ea,SESCO,II.1.1,La Pampa,AR-L,annual,2019,bioetanol combustion consumption by to the public,3.2644717199999995,TJ,CH4,10.0,kg/TJ,32.644717199999995,kg +77975307-1b76-33b7-a51f-20cd17e675af,SESCO,II.1.1,La Pampa,AR-L,annual,2019,bioetanol combustion consumption by to the public,3.2644717199999995,TJ,N2O,0.6,kg/TJ,1.9586830319999997,kg +a101ea7c-a322-3b7f-8c23-833475dce433,SESCO,II.1.1,La Rioja,AR-F,annual,2019,bioetanol combustion consumption by to the public,1.4008852799999998,TJ,CH4,10.0,kg/TJ,14.008852799999998,kg +8548dcc9-e2c3-34fe-8648-216e4851b762,SESCO,II.1.1,La Rioja,AR-F,annual,2019,bioetanol combustion consumption by to the public,1.4008852799999998,TJ,N2O,0.6,kg/TJ,0.8405311679999998,kg +b6101d35-5be9-322d-b58a-3f814e017c4c,SESCO,II.1.1,Mendoza,AR-M,annual,2019,bioetanol combustion consumption by to the public,11.342569319999999,TJ,CH4,10.0,kg/TJ,113.42569319999998,kg +6788ebef-d282-3610-afa7-8c6e016f1168,SESCO,II.1.1,Mendoza,AR-M,annual,2019,bioetanol combustion consumption by to the public,11.342569319999999,TJ,N2O,0.6,kg/TJ,6.805541591999999,kg +c79126b3-fd0f-3e32-b799-3b5ccff8f13c,SESCO,II.1.1,Misiones,AR-N,annual,2019,bioetanol combustion consumption by to the public,7.216604279999999,TJ,CH4,10.0,kg/TJ,72.1660428,kg +0c5726a9-ff5e-34c8-b9fb-12592ebc049b,SESCO,II.1.1,Misiones,AR-N,annual,2019,bioetanol combustion consumption by to the public,7.216604279999999,TJ,N2O,0.6,kg/TJ,4.329962567999999,kg +edf15a8a-956d-39d7-87b8-9a073fb0be27,SESCO,II.1.1,Neuquén,AR-Q,annual,2019,bioetanol combustion consumption by to the public,12.03023016,TJ,CH4,10.0,kg/TJ,120.3023016,kg +af30165f-3e84-3fb9-b774-b44c0e53e692,SESCO,II.1.1,Neuquén,AR-Q,annual,2019,bioetanol combustion consumption by to the public,12.03023016,TJ,N2O,0.6,kg/TJ,7.218138096,kg +9b74e00b-8161-3c0d-95e8-e42bd3166715,SESCO,II.1.1,Rio Negro,AR-R,annual,2019,bioetanol combustion consumption by to the public,12.232182599999998,TJ,CH4,10.0,kg/TJ,122.32182599999999,kg +db5d4ab2-4d09-34e0-8ffd-3da7de19c4eb,SESCO,II.1.1,Rio Negro,AR-R,annual,2019,bioetanol combustion consumption by to the public,12.232182599999998,TJ,N2O,0.6,kg/TJ,7.3393095599999985,kg +a3ee1160-011c-3367-9453-0da235a4e76a,SESCO,II.1.1,Salta,AR-A,annual,2019,bioetanol combustion consumption by to the public,1.39577256,TJ,CH4,10.0,kg/TJ,13.9577256,kg +d1afe3cc-d99c-3bdf-8a6f-ec20e2c0bccd,SESCO,II.1.1,Salta,AR-A,annual,2019,bioetanol combustion consumption by to the public,1.39577256,TJ,N2O,0.6,kg/TJ,0.8374635359999999,kg +c84a025d-c60e-3e57-9f14-82057a39924f,SESCO,II.1.1,San Juan,AR-J,annual,2019,bioetanol combustion consumption by to the public,2.6841779999999997,TJ,CH4,10.0,kg/TJ,26.841779999999996,kg +7dd9012c-dcc5-3171-bace-077ae7ac79f9,SESCO,II.1.1,San Juan,AR-J,annual,2019,bioetanol combustion consumption by to the public,2.6841779999999997,TJ,N2O,0.6,kg/TJ,1.6105067999999998,kg +8271f9c2-6923-3063-b3f7-62d12531c88c,SESCO,II.1.1,San Luis,AR-D,annual,2019,bioetanol combustion consumption by to the public,6.9354046799999995,TJ,CH4,10.0,kg/TJ,69.35404679999999,kg +bbb36485-0337-31eb-a8a0-b3ea97d7b6e7,SESCO,II.1.1,San Luis,AR-D,annual,2019,bioetanol combustion consumption by to the public,6.9354046799999995,TJ,N2O,0.6,kg/TJ,4.161242808,kg +aefc78c8-38db-3746-8db0-dc37e46b4570,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2019,bioetanol combustion consumption by to the public,6.273307439999999,TJ,CH4,10.0,kg/TJ,62.73307439999999,kg +c2880fe3-c0e7-3398-b9d6-026d71263154,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2019,bioetanol combustion consumption by to the public,6.273307439999999,TJ,N2O,0.6,kg/TJ,3.763984463999999,kg +b00237f2-ad49-3bea-848b-7268782f5116,SESCO,II.1.1,Santa Fe,AR-S,annual,2019,bioetanol combustion consumption by to the public,41.203410479999995,TJ,CH4,10.0,kg/TJ,412.03410479999997,kg +426dadbf-cc3b-3fcd-a162-c8e21ff256e2,SESCO,II.1.1,Santa Fe,AR-S,annual,2019,bioetanol combustion consumption by to the public,41.203410479999995,TJ,N2O,0.6,kg/TJ,24.722046287999998,kg +4f7143fa-1c75-3e6c-8297-9ce49f9c2577,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2019,bioetanol combustion consumption by to the public,6.2886456,TJ,CH4,10.0,kg/TJ,62.886455999999995,kg +4a370da8-f1b6-3592-917d-169e3b67aa41,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2019,bioetanol combustion consumption by to the public,6.2886456,TJ,N2O,0.6,kg/TJ,3.7731873599999997,kg +53b46198-de28-32cd-b9af-1b3e54373ab1,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2019,bioetanol combustion consumption by to the public,1.8584737199999999,TJ,CH4,10.0,kg/TJ,18.5847372,kg +e7754657-2ecf-3ee4-8e9b-64c499c3ce0f,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2019,bioetanol combustion consumption by to the public,1.8584737199999999,TJ,N2O,0.6,kg/TJ,1.1150842319999998,kg +0752fa0f-5bc5-3e8d-a2a5-df3490d15b18,SESCO,II.1.1,Tucuman,AR-T,annual,2019,bioetanol combustion consumption by to the public,1.01487492,TJ,CH4,10.0,kg/TJ,10.148749200000001,kg +c8bcd823-0698-3cad-9d96-10ced88058e2,SESCO,II.1.1,Tucuman,AR-T,annual,2019,bioetanol combustion consumption by to the public,1.01487492,TJ,N2O,0.6,kg/TJ,0.608924952,kg +93743c61-9917-3308-a115-476b6b867df5,SESCO,II.1.1,Buenos Aires,AR-B,annual,2019,bioetanol combustion consumption by freight transport,0.82570428,TJ,CH4,10.0,kg/TJ,8.257042799999999,kg +89c3821a-611a-3cfe-8070-073769932737,SESCO,II.1.1,Buenos Aires,AR-B,annual,2019,bioetanol combustion consumption by freight transport,0.82570428,TJ,N2O,0.6,kg/TJ,0.49542256799999995,kg +7e3e0f88-efa6-34fa-b5ab-303f83c2d23c,SESCO,II.1.1,Capital Federal,AR-C,annual,2019,bioetanol combustion consumption by freight transport,0.37834127999999995,TJ,CH4,10.0,kg/TJ,3.7834127999999994,kg +b1a73049-3e87-35ee-b671-d471c9f69495,SESCO,II.1.1,Capital Federal,AR-C,annual,2019,bioetanol combustion consumption by freight transport,0.37834127999999995,TJ,N2O,0.6,kg/TJ,0.22700476799999997,kg +107077b4-4a33-3c2e-9084-fb26ec4b80a2,SESCO,II.1.1,Córdoba,AR-X,annual,2019,bioetanol combustion consumption by freight transport,0.11759255999999998,TJ,CH4,10.0,kg/TJ,1.1759255999999998,kg +eb0669ed-ca8b-37d1-92e7-6d16b5367117,SESCO,II.1.1,Córdoba,AR-X,annual,2019,bioetanol combustion consumption by freight transport,0.11759255999999998,TJ,N2O,0.6,kg/TJ,0.07055553599999999,kg +d91600d7-2828-3f1a-9d8d-ccf15b3e631b,SESCO,II.1.1,Entre Rios,AR-E,annual,2019,bioetanol combustion consumption by freight transport,0.02300724,TJ,CH4,10.0,kg/TJ,0.2300724,kg +c9c9c5b7-84b3-338d-ae0a-3067ee69606e,SESCO,II.1.1,Entre Rios,AR-E,annual,2019,bioetanol combustion consumption by freight transport,0.02300724,TJ,N2O,0.6,kg/TJ,0.013804344000000001,kg +12ff1f96-1671-3e23-a813-1a46d33d74f8,SESCO,II.1.1,Mendoza,AR-M,annual,2019,bioetanol combustion consumption by freight transport,0.015338159999999998,TJ,CH4,10.0,kg/TJ,0.15338159999999998,kg +a120ea7a-7474-3aa5-a1e9-7bb0a85c9ced,SESCO,II.1.1,Mendoza,AR-M,annual,2019,bioetanol combustion consumption by freight transport,0.015338159999999998,TJ,N2O,0.6,kg/TJ,0.009202895999999999,kg +840cbecc-830c-3a84-ac8f-dbbab0fb8d85,SESCO,II.1.1,Santa Fe,AR-S,annual,2019,bioetanol combustion consumption by freight transport,0.12526163999999998,TJ,CH4,10.0,kg/TJ,1.2526163999999997,kg +ce91a6d9-c795-3289-ae96-3ced081f5f29,SESCO,II.1.1,Santa Fe,AR-S,annual,2019,bioetanol combustion consumption by freight transport,0.12526163999999998,TJ,N2O,0.6,kg/TJ,0.07515698399999998,kg +7c55484a-6038-3520-9563-76f2b0ecf642,SESCO,II.1.1,Buenos Aires,AR-B,annual,2019,bioetanol combustion consumption by freight transport,0.49849019999999994,TJ,CH4,10.0,kg/TJ,4.984901999999999,kg +964a386a-4e9f-3635-b54a-db62673373dc,SESCO,II.1.1,Buenos Aires,AR-B,annual,2019,bioetanol combustion consumption by freight transport,0.49849019999999994,TJ,N2O,0.6,kg/TJ,0.29909411999999996,kg +c536dc73-e71a-3b5a-be56-36496a2c6f9b,SESCO,II.1.1,Capital Federal,AR-C,annual,2019,bioetanol combustion consumption by freight transport,0.20962151999999998,TJ,CH4,10.0,kg/TJ,2.0962151999999996,kg +bfe327be-c272-323a-ae55-6cd5000535e8,SESCO,II.1.1,Capital Federal,AR-C,annual,2019,bioetanol combustion consumption by freight transport,0.20962151999999998,TJ,N2O,0.6,kg/TJ,0.125772912,kg +a86bdc6d-a7f7-3033-a9ed-285f9f3450a9,SESCO,II.1.1,Chaco,AR-H,annual,2019,bioetanol combustion consumption by freight transport,0.0025563599999999997,TJ,CH4,10.0,kg/TJ,0.0255636,kg +52484b72-0eee-3d25-be3c-9188d051949a,SESCO,II.1.1,Chaco,AR-H,annual,2019,bioetanol combustion consumption by freight transport,0.0025563599999999997,TJ,N2O,0.6,kg/TJ,0.0015338159999999997,kg +ca9ef67e-03be-375c-a0a7-4de834f4dcc1,SESCO,II.1.1,Corrientes,AR-W,annual,2019,bioetanol combustion consumption by freight transport,0.0255636,TJ,CH4,10.0,kg/TJ,0.255636,kg +37c15994-77ae-3fb3-8c2e-455df888b61b,SESCO,II.1.1,Corrientes,AR-W,annual,2019,bioetanol combustion consumption by freight transport,0.0255636,TJ,N2O,0.6,kg/TJ,0.015338159999999998,kg +fe2b825f-80fb-36ea-a0e5-4c68e2486995,SESCO,II.1.1,Córdoba,AR-X,annual,2019,bioetanol combustion consumption by freight transport,0.07413444,TJ,CH4,10.0,kg/TJ,0.7413444,kg +75e1affa-735a-320a-9a11-cfa36831efa0,SESCO,II.1.1,Córdoba,AR-X,annual,2019,bioetanol combustion consumption by freight transport,0.07413444,TJ,N2O,0.6,kg/TJ,0.044480663999999996,kg +4276333d-546e-37c8-bd53-2ba79dfe6cd0,SESCO,II.1.1,Entre Rios,AR-E,annual,2019,bioetanol combustion consumption by freight transport,0.08691623999999999,TJ,CH4,10.0,kg/TJ,0.8691623999999999,kg +da37fa33-3e43-39ec-b16d-790d973a8c84,SESCO,II.1.1,Entre Rios,AR-E,annual,2019,bioetanol combustion consumption by freight transport,0.08691623999999999,TJ,N2O,0.6,kg/TJ,0.05214974399999999,kg +0698ad60-4625-364a-ae7c-6704e6e2ea91,SESCO,II.1.1,Santa Fe,AR-S,annual,2019,bioetanol combustion consumption by freight transport,0.10992348,TJ,CH4,10.0,kg/TJ,1.0992348,kg +4ff85572-afed-3724-b5d7-60740d762603,SESCO,II.1.1,Santa Fe,AR-S,annual,2019,bioetanol combustion consumption by freight transport,0.10992348,TJ,N2O,0.6,kg/TJ,0.065954088,kg +d0711613-8448-3183-b938-10c416ffa6a4,SESCO,II.1.1,Santa Fe,AR-S,annual,2019,bioetanol combustion consumption by public passenger transport,0.038345399999999995,TJ,CH4,10.0,kg/TJ,0.38345399999999996,kg +664b6246-b4b9-35f5-8915-d39cebdd82a6,SESCO,II.1.1,Santa Fe,AR-S,annual,2019,bioetanol combustion consumption by public passenger transport,0.038345399999999995,TJ,N2O,0.6,kg/TJ,0.023007239999999995,kg +c429e2a0-bfc8-33e7-896f-154a233ec42b,SESCO,II.1.1,Catamarca,AR-K,annual,2019,bioetanol combustion consumption by to the public,17.6881961844,TJ,CH4,10.0,kg/TJ,176.881961844,kg +f44656fa-8c0f-30c7-85e7-e7f6d186e5d8,SESCO,II.1.1,Catamarca,AR-K,annual,2019,bioetanol combustion consumption by to the public,17.6881961844,TJ,N2O,0.6,kg/TJ,10.61291771064,kg +00c79276-152d-3140-90e9-fb0801336451,SESCO,II.1.1,Chaco,AR-H,annual,2019,bioetanol combustion consumption by to the public,9.190114199999998,TJ,CH4,10.0,kg/TJ,91.90114199999998,kg +8eb142f9-61a9-3287-9bb4-a0620226c6c0,SESCO,II.1.1,Chaco,AR-H,annual,2019,bioetanol combustion consumption by to the public,9.190114199999998,TJ,N2O,0.6,kg/TJ,5.514068519999999,kg +6528be70-8fd9-3172-952d-fea71951aac5,SESCO,II.1.1,Jujuy,AR-Y,annual,2019,bioetanol combustion consumption by to the public,44.18923895999999,TJ,CH4,10.0,kg/TJ,441.8923895999999,kg +b8ca5407-0401-3145-9986-07a3459ba732,SESCO,II.1.1,Jujuy,AR-Y,annual,2019,bioetanol combustion consumption by to the public,44.18923895999999,TJ,N2O,0.6,kg/TJ,26.513543375999994,kg +2e87552a-4e1a-3794-92a2-e885544ed4e6,SESCO,II.1.1,La Rioja,AR-F,annual,2019,bioetanol combustion consumption by to the public,35.4750167376,TJ,CH4,10.0,kg/TJ,354.75016737600004,kg +3f892a67-439f-3f6c-9737-d371092a5ad3,SESCO,II.1.1,La Rioja,AR-F,annual,2019,bioetanol combustion consumption by to the public,35.4750167376,TJ,N2O,0.6,kg/TJ,21.28501004256,kg +64e74f7e-4d9b-3c30-87b7-46011a18dc1f,SESCO,II.1.1,Salta,AR-A,annual,2019,bioetanol combustion consumption by to the public,80.12383809839999,TJ,CH4,10.0,kg/TJ,801.2383809839998,kg +5df73a66-2a81-3fb6-b6f3-a620af6a1df2,SESCO,II.1.1,Salta,AR-A,annual,2019,bioetanol combustion consumption by to the public,80.12383809839999,TJ,N2O,0.6,kg/TJ,48.07430285903999,kg +ed63a4f4-336a-3c1d-880b-9a6e7106f1ae,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2019,bioetanol combustion consumption by to the public,46.80523883879999,TJ,CH4,10.0,kg/TJ,468.0523883879999,kg +13b3ad90-3e91-3889-a2f1-4c2d10e932a8,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2019,bioetanol combustion consumption by to the public,46.80523883879999,TJ,N2O,0.6,kg/TJ,28.083143303279993,kg +502788e1-78b3-3d03-92be-3cc69a5bb042,SESCO,II.1.1,Tucuman,AR-T,annual,2019,bioetanol combustion consumption by to the public,165.04120908719997,TJ,CH4,10.0,kg/TJ,1650.4120908719997,kg +684320ce-7ffb-3e0c-ae37-a598ebf12200,SESCO,II.1.1,Tucuman,AR-T,annual,2019,bioetanol combustion consumption by to the public,165.04120908719997,TJ,N2O,0.6,kg/TJ,99.02472545231998,kg +d2364e79-a54a-36dd-86d0-89fbb96d31d7,SESCO,II.1.1,Catamarca,AR-K,annual,2019,bioetanol combustion consumption by to the public,1.5952197671999997,TJ,CH4,10.0,kg/TJ,15.952197671999997,kg +795bc409-128a-3606-a47a-aa37665e695e,SESCO,II.1.1,Catamarca,AR-K,annual,2019,bioetanol combustion consumption by to the public,1.5952197671999997,TJ,N2O,0.6,kg/TJ,0.9571318603199997,kg +3f5d939f-b493-3e0d-9a8a-1dc7d5ec327e,SESCO,II.1.1,Chaco,AR-H,annual,2019,bioetanol combustion consumption by to the public,0.29909411999999996,TJ,CH4,10.0,kg/TJ,2.9909411999999995,kg +83e80f7f-5577-3702-bb39-8767ea0f4ef6,SESCO,II.1.1,Chaco,AR-H,annual,2019,bioetanol combustion consumption by to the public,0.29909411999999996,TJ,N2O,0.6,kg/TJ,0.17945647199999998,kg +ee7876cc-d23d-3dca-98c6-a22a7488596d,SESCO,II.1.1,Jujuy,AR-Y,annual,2019,bioetanol combustion consumption by to the public,1.9760662799999997,TJ,CH4,10.0,kg/TJ,19.7606628,kg +1591ddd8-f60f-30ea-86e2-70f72a715716,SESCO,II.1.1,Jujuy,AR-Y,annual,2019,bioetanol combustion consumption by to the public,1.9760662799999997,TJ,N2O,0.6,kg/TJ,1.1856397679999997,kg +d71db80c-5f8c-323f-a6a3-a383e87fc179,SESCO,II.1.1,La Rioja,AR-F,annual,2019,bioetanol combustion consumption by to the public,3.8166454799999996,TJ,CH4,10.0,kg/TJ,38.1664548,kg +315d9e20-4f11-33c8-9947-9806df98aa51,SESCO,II.1.1,La Rioja,AR-F,annual,2019,bioetanol combustion consumption by to the public,3.8166454799999996,TJ,N2O,0.6,kg/TJ,2.289987288,kg +445059f9-67b6-39cd-bc24-0dde3d055618,SESCO,II.1.1,Salta,AR-A,annual,2019,bioetanol combustion consumption by to the public,4.9871004696,TJ,CH4,10.0,kg/TJ,49.871004696,kg +42e9ad34-fede-3279-a298-904054fa0b5a,SESCO,II.1.1,Salta,AR-A,annual,2019,bioetanol combustion consumption by to the public,4.9871004696,TJ,N2O,0.6,kg/TJ,2.9922602817599997,kg +2ad56704-c3ba-375a-9ede-97849f20361c,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2019,bioetanol combustion consumption by to the public,3.9904523963999994,TJ,CH4,10.0,kg/TJ,39.90452396399999,kg +de80d1ed-664e-33f8-aff3-09ed9245712b,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2019,bioetanol combustion consumption by to the public,3.9904523963999994,TJ,N2O,0.6,kg/TJ,2.3942714378399996,kg +9b3f145b-63ea-30ec-be8b-256a30a1b223,SESCO,II.1.1,Tucuman,AR-T,annual,2019,bioetanol combustion consumption by to the public,11.0243280636,TJ,CH4,10.0,kg/TJ,110.24328063600001,kg +d6fd8d1c-4bfa-3edc-bd74-13146d3e79e2,SESCO,II.1.1,Tucuman,AR-T,annual,2019,bioetanol combustion consumption by to the public,11.0243280636,TJ,N2O,0.6,kg/TJ,6.61459683816,kg +5c4bea0c-d420-35d4-a9dd-e24bc9a14f2c,SESCO,II.5.1,Buenos Aires,AR-B,annual,2019,bioetanol combustion consumption by agriculture machines,0.08435988,TJ,CH4,10.0,kg/TJ,0.8435988,kg +7bca5573-5f17-37cb-8777-c68262fc4eed,SESCO,II.5.1,Buenos Aires,AR-B,annual,2019,bioetanol combustion consumption by agriculture machines,0.08435988,TJ,N2O,0.6,kg/TJ,0.050615928,kg +dee176f9-822a-315d-ae7a-ceabc0815f95,SESCO,II.5.1,Buenos Aires,AR-B,annual,2019,bioetanol combustion consumption by agriculture machines,0.0511272,TJ,CH4,10.0,kg/TJ,0.511272,kg +69bbc7c6-68d9-33c0-a6b3-fbfb40b6d579,SESCO,II.5.1,Buenos Aires,AR-B,annual,2019,bioetanol combustion consumption by agriculture machines,0.0511272,TJ,N2O,0.6,kg/TJ,0.030676319999999997,kg +1927eba1-bc1d-3042-bdaa-fa4ed5a0a4d3,SESCO,II.1.1,Buenos Aires,AR-B,annual,2019,bioetanol combustion consumption by to the public,1437.7658857199997,TJ,CH4,10.0,kg/TJ,14377.658857199996,kg +1eeaa210-9793-3a93-a873-ab55e705ca3f,SESCO,II.1.1,Buenos Aires,AR-B,annual,2019,bioetanol combustion consumption by to the public,1437.7658857199997,TJ,N2O,0.6,kg/TJ,862.6595314319998,kg +6928f968-7f4f-3d07-930b-720c8bf14267,SESCO,II.1.1,Capital Federal,AR-C,annual,2019,bioetanol combustion consumption by to the public,414.87933347999996,TJ,CH4,10.0,kg/TJ,4148.7933348,kg +1af3d5e9-3b88-36c8-bf53-0f7378b53ad0,SESCO,II.1.1,Capital Federal,AR-C,annual,2019,bioetanol combustion consumption by to the public,414.87933347999996,TJ,N2O,0.6,kg/TJ,248.92760008799996,kg +9bc94295-ec2d-365f-a8c3-221b282ed1a5,SESCO,II.1.1,Catamarca,AR-K,annual,2019,bioetanol combustion consumption by to the public,3.5865730799999995,TJ,CH4,10.0,kg/TJ,35.865730799999994,kg +84052340-7576-3f1b-b806-967bf54569db,SESCO,II.1.1,Catamarca,AR-K,annual,2019,bioetanol combustion consumption by to the public,3.5865730799999995,TJ,N2O,0.6,kg/TJ,2.1519438479999997,kg +8fd78ce0-b3ce-3f20-80f8-ed399fc4d79b,SESCO,II.1.1,Chaco,AR-H,annual,2019,bioetanol combustion consumption by to the public,83.90996064,TJ,CH4,10.0,kg/TJ,839.0996064,kg +e51746db-f69e-356b-a254-5fe3f6f9bc91,SESCO,II.1.1,Chaco,AR-H,annual,2019,bioetanol combustion consumption by to the public,83.90996064,TJ,N2O,0.6,kg/TJ,50.345976384,kg +39132edc-e21d-3e35-8dd5-b6f23462e3e6,SESCO,II.1.1,Corrientes,AR-W,annual,2019,bioetanol combustion consumption by to the public,72.35265707999999,TJ,CH4,10.0,kg/TJ,723.5265707999998,kg +9e4ec187-4317-31e5-979a-e080fde5a926,SESCO,II.1.1,Corrientes,AR-W,annual,2019,bioetanol combustion consumption by to the public,72.35265707999999,TJ,N2O,0.6,kg/TJ,43.41159424799999,kg +52198e80-f4e2-3854-b373-3b45f0af80ad,SESCO,II.1.1,Córdoba,AR-X,annual,2019,bioetanol combustion consumption by to the public,331.76184443999995,TJ,CH4,10.0,kg/TJ,3317.6184443999996,kg +ee377214-03a2-3ae9-8e6f-04c462491865,SESCO,II.1.1,Córdoba,AR-X,annual,2019,bioetanol combustion consumption by to the public,331.76184443999995,TJ,N2O,0.6,kg/TJ,199.05710666399997,kg +239fd029-82ed-3dc8-9ac3-6b2ad54170f3,SESCO,II.1.1,Entre Rios,AR-E,annual,2019,bioetanol combustion consumption by to the public,87.06962159999999,TJ,CH4,10.0,kg/TJ,870.6962159999999,kg +3f6f7566-dc7f-387d-b296-c46fa1031db5,SESCO,II.1.1,Entre Rios,AR-E,annual,2019,bioetanol combustion consumption by to the public,87.06962159999999,TJ,N2O,0.6,kg/TJ,52.24177295999999,kg +4647a99b-4446-3874-93b7-fc9abf3b62c3,SESCO,II.1.1,Formosa,AR-P,annual,2019,bioetanol combustion consumption by to the public,31.39976988,TJ,CH4,10.0,kg/TJ,313.9976988,kg +7fb00cdf-642f-336c-b758-e8182fb16faa,SESCO,II.1.1,Formosa,AR-P,annual,2019,bioetanol combustion consumption by to the public,31.39976988,TJ,N2O,0.6,kg/TJ,18.839861928,kg +5509f16c-ee1f-3dfa-80ad-09fda52fb9bd,SESCO,II.1.1,Jujuy,AR-Y,annual,2019,bioetanol combustion consumption by to the public,15.138763919999999,TJ,CH4,10.0,kg/TJ,151.3876392,kg +b725eb03-dec2-3738-baef-6db2b241b7dd,SESCO,II.1.1,Jujuy,AR-Y,annual,2019,bioetanol combustion consumption by to the public,15.138763919999999,TJ,N2O,0.6,kg/TJ,9.083258352,kg +98c01b44-c789-32b4-9177-313b7ef23a35,SESCO,II.1.1,La Pampa,AR-L,annual,2019,bioetanol combustion consumption by to the public,28.063720079999996,TJ,CH4,10.0,kg/TJ,280.63720079999996,kg +a6ce79aa-5235-3629-891f-b60c3dbc5405,SESCO,II.1.1,La Pampa,AR-L,annual,2019,bioetanol combustion consumption by to the public,28.063720079999996,TJ,N2O,0.6,kg/TJ,16.838232048,kg +14888bc8-0e39-3e73-9f96-6f2c645a1216,SESCO,II.1.1,La Rioja,AR-F,annual,2019,bioetanol combustion consumption by to the public,23.076261719999998,TJ,CH4,10.0,kg/TJ,230.76261719999997,kg +5f7c3997-f434-30f8-ae3f-884494d70b49,SESCO,II.1.1,La Rioja,AR-F,annual,2019,bioetanol combustion consumption by to the public,23.076261719999998,TJ,N2O,0.6,kg/TJ,13.845757031999998,kg +741089c7-fcc7-30e9-8a37-53c017e38f74,SESCO,II.1.1,Mendoza,AR-M,annual,2019,bioetanol combustion consumption by to the public,111.38316155999999,TJ,CH4,10.0,kg/TJ,1113.8316155999999,kg +372198bb-a1d5-3be0-af27-ace228be32c2,SESCO,II.1.1,Mendoza,AR-M,annual,2019,bioetanol combustion consumption by to the public,111.38316155999999,TJ,N2O,0.6,kg/TJ,66.829896936,kg +8d31dd97-dec0-3ae9-8a4c-76d4542147d4,SESCO,II.1.1,Misiones,AR-N,annual,2019,bioetanol combustion consumption by to the public,100.89697283999999,TJ,CH4,10.0,kg/TJ,1008.9697283999999,kg +41386ab0-9841-35d7-9415-4699bc932e67,SESCO,II.1.1,Misiones,AR-N,annual,2019,bioetanol combustion consumption by to the public,100.89697283999999,TJ,N2O,0.6,kg/TJ,60.53818370399999,kg +484db6f8-0e54-323a-8327-29ff71738745,SESCO,II.1.1,Neuquén,AR-Q,annual,2019,bioetanol combustion consumption by to the public,48.76001064,TJ,CH4,10.0,kg/TJ,487.60010639999996,kg +01796ae1-b199-3f39-b257-c6e7c54f7566,SESCO,II.1.1,Neuquén,AR-Q,annual,2019,bioetanol combustion consumption by to the public,48.76001064,TJ,N2O,0.6,kg/TJ,29.256006383999996,kg +4cded1bd-dccd-31f9-9657-55717956f0c1,SESCO,II.1.1,Rio Negro,AR-R,annual,2019,bioetanol combustion consumption by to the public,13.63051152,TJ,CH4,10.0,kg/TJ,136.30511520000002,kg +e804be5b-801f-3980-9059-8d9c6d2d8760,SESCO,II.1.1,Rio Negro,AR-R,annual,2019,bioetanol combustion consumption by to the public,13.63051152,TJ,N2O,0.6,kg/TJ,8.178306912,kg +33166f0d-63be-37ca-aec6-17b7f6a4c98c,SESCO,II.1.1,Salta,AR-A,annual,2019,bioetanol combustion consumption by to the public,20.63749428,TJ,CH4,10.0,kg/TJ,206.37494279999999,kg +8a23aee8-3f3c-3544-8c6a-bef2dda6a28f,SESCO,II.1.1,Salta,AR-A,annual,2019,bioetanol combustion consumption by to the public,20.63749428,TJ,N2O,0.6,kg/TJ,12.382496567999999,kg +c2f778d9-2bcb-3791-9a5b-b645395d2d76,SESCO,II.1.1,San Juan,AR-J,annual,2019,bioetanol combustion consumption by to the public,20.749974119999997,TJ,CH4,10.0,kg/TJ,207.49974119999996,kg +0becab46-7fe4-3e80-946b-f1c3b0396d05,SESCO,II.1.1,San Juan,AR-J,annual,2019,bioetanol combustion consumption by to the public,20.749974119999997,TJ,N2O,0.6,kg/TJ,12.449984471999999,kg +b47b4f05-ca15-3d11-807e-4c6f89c8a2fd,SESCO,II.1.1,San Luis,AR-D,annual,2019,bioetanol combustion consumption by to the public,17.81271648,TJ,CH4,10.0,kg/TJ,178.1271648,kg +b3e2e1e4-864c-37c4-b27e-279e1a88615d,SESCO,II.1.1,San Luis,AR-D,annual,2019,bioetanol combustion consumption by to the public,17.81271648,TJ,N2O,0.6,kg/TJ,10.687629887999998,kg +431f7963-6a56-3ba0-8a4c-c21604a8c5aa,SESCO,II.1.1,Santa Fe,AR-S,annual,2019,bioetanol combustion consumption by to the public,284.88842747999996,TJ,CH4,10.0,kg/TJ,2848.8842747999997,kg +5831ab24-28d0-3141-9e29-c95b380d77bc,SESCO,II.1.1,Santa Fe,AR-S,annual,2019,bioetanol combustion consumption by to the public,284.88842747999996,TJ,N2O,0.6,kg/TJ,170.93305648799998,kg +57bf9e5b-9833-37e9-abfa-a2452de3d8f2,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2019,bioetanol combustion consumption by to the public,35.745581879999996,TJ,CH4,10.0,kg/TJ,357.4558188,kg +80e754a3-dfbf-3329-b599-34543f2a96be,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2019,bioetanol combustion consumption by to the public,35.745581879999996,TJ,N2O,0.6,kg/TJ,21.447349127999995,kg +316d7011-0d93-33b0-9f4a-025c61997063,SESCO,II.1.1,Tucuman,AR-T,annual,2019,bioetanol combustion consumption by to the public,80.68639067999999,TJ,CH4,10.0,kg/TJ,806.8639067999999,kg +af861d3c-a602-3144-8ad4-abf82354a528,SESCO,II.1.1,Tucuman,AR-T,annual,2019,bioetanol combustion consumption by to the public,80.68639067999999,TJ,N2O,0.6,kg/TJ,48.41183440799999,kg +cc978a55-7200-3182-b8d8-8c8f79dd4b43,SESCO,II.1.1,Buenos Aires,AR-B,annual,2019,bioetanol combustion consumption by to the public,639.33541056,TJ,CH4,10.0,kg/TJ,6393.3541056,kg +269ee503-4da8-3659-b5a8-77d59202b9d5,SESCO,II.1.1,Buenos Aires,AR-B,annual,2019,bioetanol combustion consumption by to the public,639.33541056,TJ,N2O,0.6,kg/TJ,383.601246336,kg +0371c16e-76c1-3ad9-8f05-be9e91f63d4b,SESCO,II.1.1,Capital Federal,AR-C,annual,2019,bioetanol combustion consumption by to the public,267.91675344,TJ,CH4,10.0,kg/TJ,2679.1675343999996,kg +8444293d-691a-35cb-94b4-8d524b5bd2b3,SESCO,II.1.1,Capital Federal,AR-C,annual,2019,bioetanol combustion consumption by to the public,267.91675344,TJ,N2O,0.6,kg/TJ,160.750052064,kg +f6bf3c6a-0b19-3fc8-be93-0d96e0683fe1,SESCO,II.1.1,Catamarca,AR-K,annual,2019,bioetanol combustion consumption by to the public,2.84011596,TJ,CH4,10.0,kg/TJ,28.4011596,kg +69e15e99-e323-3a1a-bc44-a80fce8ae9eb,SESCO,II.1.1,Catamarca,AR-K,annual,2019,bioetanol combustion consumption by to the public,2.84011596,TJ,N2O,0.6,kg/TJ,1.704069576,kg +ec29a4c1-cbf8-3ef8-8dec-34ff2fc052e3,SESCO,II.1.1,Chaco,AR-H,annual,2019,bioetanol combustion consumption by to the public,26.1643446,TJ,CH4,10.0,kg/TJ,261.643446,kg +76992cf7-3cab-36a0-a1b8-06ab4856205a,SESCO,II.1.1,Chaco,AR-H,annual,2019,bioetanol combustion consumption by to the public,26.1643446,TJ,N2O,0.6,kg/TJ,15.698606759999999,kg +35ac9d08-4b57-34ca-bee6-bac6cc5c195e,SESCO,II.1.1,Corrientes,AR-W,annual,2019,bioetanol combustion consumption by to the public,26.772758279999998,TJ,CH4,10.0,kg/TJ,267.7275828,kg +456b9329-7c37-323c-9f25-d2e6dc2e5046,SESCO,II.1.1,Corrientes,AR-W,annual,2019,bioetanol combustion consumption by to the public,26.772758279999998,TJ,N2O,0.6,kg/TJ,16.063654967999998,kg +4da4b169-38f3-37e1-b014-3082c6791f8a,SESCO,II.1.1,Córdoba,AR-X,annual,2019,bioetanol combustion consumption by to the public,144.13013315999999,TJ,CH4,10.0,kg/TJ,1441.3013316,kg +123a5b77-d2d7-34d2-b89b-65a2bb4be290,SESCO,II.1.1,Córdoba,AR-X,annual,2019,bioetanol combustion consumption by to the public,144.13013315999999,TJ,N2O,0.6,kg/TJ,86.47807989599998,kg +bb125737-134c-3761-a90f-886514267a2e,SESCO,II.1.1,Entre Rios,AR-E,annual,2019,bioetanol combustion consumption by to the public,30.855265199999995,TJ,CH4,10.0,kg/TJ,308.55265199999997,kg +bd138c73-d1b8-38e6-ae52-a9e305923698,SESCO,II.1.1,Entre Rios,AR-E,annual,2019,bioetanol combustion consumption by to the public,30.855265199999995,TJ,N2O,0.6,kg/TJ,18.513159119999997,kg +7d2429d4-135d-351b-9b81-453de3bd838c,SESCO,II.1.1,Formosa,AR-P,annual,2019,bioetanol combustion consumption by to the public,12.53127672,TJ,CH4,10.0,kg/TJ,125.3127672,kg +c3256d1b-e5f9-3252-8d08-fb8abd4857bf,SESCO,II.1.1,Formosa,AR-P,annual,2019,bioetanol combustion consumption by to the public,12.53127672,TJ,N2O,0.6,kg/TJ,7.518766031999999,kg +b41d87b0-b2c1-36ba-add8-97d0546cd9bf,SESCO,II.1.1,Jujuy,AR-Y,annual,2019,bioetanol combustion consumption by to the public,3.2874789599999996,TJ,CH4,10.0,kg/TJ,32.8747896,kg +c25e1e07-2249-30fa-a6d1-9b52f002ead8,SESCO,II.1.1,Jujuy,AR-Y,annual,2019,bioetanol combustion consumption by to the public,3.2874789599999996,TJ,N2O,0.6,kg/TJ,1.9724873759999997,kg +be7e285f-f4a2-3021-ab00-ab358a143073,SESCO,II.1.1,La Pampa,AR-L,annual,2019,bioetanol combustion consumption by to the public,14.734859039999998,TJ,CH4,10.0,kg/TJ,147.34859039999998,kg +8d882071-f0d7-3d90-b513-8bdf73fffea7,SESCO,II.1.1,La Pampa,AR-L,annual,2019,bioetanol combustion consumption by to the public,14.734859039999998,TJ,N2O,0.6,kg/TJ,8.840915423999999,kg +1052f969-c0a0-3844-805b-e0d0e10a1842,SESCO,II.1.1,La Rioja,AR-F,annual,2019,bioetanol combustion consumption by to the public,7.119462599999999,TJ,CH4,10.0,kg/TJ,71.194626,kg +86c71c6f-d5c5-37eb-9876-2321928daebd,SESCO,II.1.1,La Rioja,AR-F,annual,2019,bioetanol combustion consumption by to the public,7.119462599999999,TJ,N2O,0.6,kg/TJ,4.27167756,kg +9680f1fd-47ff-3dac-bb74-6ca385076c13,SESCO,II.1.1,Mendoza,AR-M,annual,2019,bioetanol combustion consumption by to the public,48.03656076,TJ,CH4,10.0,kg/TJ,480.3656076,kg +07be4d3f-663d-3c1d-b8bc-449078842dd1,SESCO,II.1.1,Mendoza,AR-M,annual,2019,bioetanol combustion consumption by to the public,48.03656076,TJ,N2O,0.6,kg/TJ,28.821936456,kg +494a7e68-efaa-3c50-b3d9-8b6898b400d6,SESCO,II.1.1,Misiones,AR-N,annual,2019,bioetanol combustion consumption by to the public,22.375819079999996,TJ,CH4,10.0,kg/TJ,223.75819079999997,kg +710ecde6-1055-356b-a754-fded26a6c2c5,SESCO,II.1.1,Misiones,AR-N,annual,2019,bioetanol combustion consumption by to the public,22.375819079999996,TJ,N2O,0.6,kg/TJ,13.425491447999997,kg +456b2356-855c-39a0-abd2-ab531236addc,SESCO,II.1.1,Neuquén,AR-Q,annual,2019,bioetanol combustion consumption by to the public,30.545945639999996,TJ,CH4,10.0,kg/TJ,305.45945639999997,kg +c26957eb-7da2-37e1-9a41-e684af1aefc3,SESCO,II.1.1,Neuquén,AR-Q,annual,2019,bioetanol combustion consumption by to the public,30.545945639999996,TJ,N2O,0.6,kg/TJ,18.327567383999998,kg +b12f390b-e0a4-3b45-a0f4-b35bda453f89,SESCO,II.1.1,Rio Negro,AR-R,annual,2019,bioetanol combustion consumption by to the public,6.789692159999999,TJ,CH4,10.0,kg/TJ,67.89692159999998,kg +aff1644d-5858-3135-a45c-208caec6bdac,SESCO,II.1.1,Rio Negro,AR-R,annual,2019,bioetanol combustion consumption by to the public,6.789692159999999,TJ,N2O,0.6,kg/TJ,4.073815295999999,kg +4535a379-703e-3e11-9a0f-c01c952a8eb1,SESCO,II.1.1,Salta,AR-A,annual,2019,bioetanol combustion consumption by to the public,9.19778328,TJ,CH4,10.0,kg/TJ,91.97783279999999,kg +b6e1719a-6580-3882-8804-4e9ec5d98798,SESCO,II.1.1,Salta,AR-A,annual,2019,bioetanol combustion consumption by to the public,9.19778328,TJ,N2O,0.6,kg/TJ,5.518669967999999,kg +9713c651-b99a-3d6b-ad6a-67bcd86558be,SESCO,II.1.1,San Juan,AR-J,annual,2019,bioetanol combustion consumption by to the public,5.05903644,TJ,CH4,10.0,kg/TJ,50.5903644,kg +4657375c-4d72-3543-8cc2-6b9494038c50,SESCO,II.1.1,San Juan,AR-J,annual,2019,bioetanol combustion consumption by to the public,5.05903644,TJ,N2O,0.6,kg/TJ,3.035421864,kg +70f41c86-b2e9-3e6e-95a1-08e2cac0df5d,SESCO,II.1.1,San Luis,AR-D,annual,2019,bioetanol combustion consumption by to the public,7.60005828,TJ,CH4,10.0,kg/TJ,76.0005828,kg +a086ff0a-8d9c-3f3f-830a-e9967a9fa4cb,SESCO,II.1.1,San Luis,AR-D,annual,2019,bioetanol combustion consumption by to the public,7.60005828,TJ,N2O,0.6,kg/TJ,4.560034968,kg +10f5c73d-b9cf-3283-adc3-d243b18e5245,SESCO,II.1.1,Santa Fe,AR-S,annual,2019,bioetanol combustion consumption by to the public,131.04412631999998,TJ,CH4,10.0,kg/TJ,1310.4412631999999,kg +898ce431-894a-3d97-baa1-eee3c36fe1b5,SESCO,II.1.1,Santa Fe,AR-S,annual,2019,bioetanol combustion consumption by to the public,131.04412631999998,TJ,N2O,0.6,kg/TJ,78.62647579199998,kg +4bfcf5e4-2848-3f29-8814-0357eb2ba0e9,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2019,bioetanol combustion consumption by to the public,12.390676919999999,TJ,CH4,10.0,kg/TJ,123.90676919999999,kg +b6f72e6f-e947-34b2-ad1b-bb585bd666b0,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2019,bioetanol combustion consumption by to the public,12.390676919999999,TJ,N2O,0.6,kg/TJ,7.434406151999999,kg +f78e5f02-b515-3565-8072-6fc21691a700,SESCO,II.1.1,Tucuman,AR-T,annual,2019,bioetanol combustion consumption by to the public,22.023041399999997,TJ,CH4,10.0,kg/TJ,220.23041399999997,kg +0ade263b-8c35-388a-832e-5eee00130a79,SESCO,II.1.1,Tucuman,AR-T,annual,2019,bioetanol combustion consumption by to the public,22.023041399999997,TJ,N2O,0.6,kg/TJ,13.213824839999997,kg +a8b7ee04-f1a9-3215-bd22-1ccc8667f50a,SESCO,II.5.1,Buenos Aires,AR-B,annual,2019,bioetanol combustion consumption by agriculture machines,1.2259561215600001,TJ,CH4,10.0,kg/TJ,12.259561215600002,kg +a5423f90-cab2-3b6e-abb8-7ce1d61ddf5a,SESCO,II.5.1,Buenos Aires,AR-B,annual,2019,bioetanol combustion consumption by agriculture machines,1.2259561215600001,TJ,N2O,0.6,kg/TJ,0.7355736729360001,kg +cded5369-999b-38d7-bd31-01f78ca7f8c1,SESCO,II.5.1,Capital Federal,AR-C,annual,2019,bioetanol combustion consumption by agriculture machines,0.85766900544,TJ,CH4,10.0,kg/TJ,8.5766900544,kg +ff733a68-c23f-361d-8fa2-d1215b5a14ca,SESCO,II.5.1,Capital Federal,AR-C,annual,2019,bioetanol combustion consumption by agriculture machines,0.85766900544,TJ,N2O,0.6,kg/TJ,0.514601403264,kg +daabb841-3290-3697-a472-678c9bf77173,SESCO,II.5.1,Córdoba,AR-X,annual,2019,bioetanol combustion consumption by agriculture machines,0.09351164879999999,TJ,CH4,10.0,kg/TJ,0.9351164879999998,kg +48107a53-dc33-30d5-a3d1-86cbbcdf720c,SESCO,II.5.1,Córdoba,AR-X,annual,2019,bioetanol combustion consumption by agriculture machines,0.09351164879999999,TJ,N2O,0.6,kg/TJ,0.05610698927999999,kg +792c7973-0481-3455-8d44-c954831231de,SESCO,II.5.1,Entre Rios,AR-E,annual,2019,bioetanol combustion consumption by agriculture machines,0.0691623198,TJ,CH4,10.0,kg/TJ,0.6916231979999999,kg +cc11b624-b965-385a-9b56-0ef771de4de7,SESCO,II.5.1,Entre Rios,AR-E,annual,2019,bioetanol combustion consumption by agriculture machines,0.0691623198,TJ,N2O,0.6,kg/TJ,0.04149739188,kg +d559e410-2d57-34d7-9237-ee2f84b168ed,SESCO,II.5.1,Santa Fe,AR-S,annual,2019,bioetanol combustion consumption by agriculture machines,13.21152155964,TJ,CH4,10.0,kg/TJ,132.1152155964,kg +a1b0a73a-dbc3-3abe-b0ee-4a8579ce1c29,SESCO,II.5.1,Santa Fe,AR-S,annual,2019,bioetanol combustion consumption by agriculture machines,13.21152155964,TJ,N2O,0.6,kg/TJ,7.926912935783999,kg +620afd95-aff4-377f-ba90-d1fe5d843996,SESCO,II.5.1,Buenos Aires,AR-B,annual,2019,bioetanol combustion consumption by agriculture machines,0.08216652311999999,TJ,CH4,10.0,kg/TJ,0.8216652311999999,kg +5bdeee05-064f-30bd-9cf1-8967f1c6c459,SESCO,II.5.1,Buenos Aires,AR-B,annual,2019,bioetanol combustion consumption by agriculture machines,0.08216652311999999,TJ,N2O,0.6,kg/TJ,0.049299913871999994,kg +2caeccb2-b9ba-345b-b829-dd50b400e6a2,SESCO,II.5.1,Capital Federal,AR-C,annual,2019,bioetanol combustion consumption by agriculture machines,0.23721231348000002,TJ,CH4,10.0,kg/TJ,2.3721231348000003,kg +7de4b6d8-23ab-34e8-bcee-fb341a339e6c,SESCO,II.5.1,Capital Federal,AR-C,annual,2019,bioetanol combustion consumption by agriculture machines,0.23721231348000002,TJ,N2O,0.6,kg/TJ,0.142327388088,kg +29408d41-a2ff-3753-bf29-1e0c0de73673,SESCO,II.5.1,Córdoba,AR-X,annual,2019,bioetanol combustion consumption by agriculture machines,0.06596175707999999,TJ,CH4,10.0,kg/TJ,0.6596175707999998,kg +7c4a5006-80dd-357f-a47e-475567a247e1,SESCO,II.5.1,Córdoba,AR-X,annual,2019,bioetanol combustion consumption by agriculture machines,0.06596175707999999,TJ,N2O,0.6,kg/TJ,0.03957705424799999,kg +d3b2544d-1d19-3199-a4d3-01e5f5c126a0,SESCO,II.5.1,Santa Fe,AR-S,annual,2019,bioetanol combustion consumption by agriculture machines,0.7045609359599999,TJ,CH4,10.0,kg/TJ,7.045609359599999,kg +e8d6ac9e-04fe-3a05-900a-1237627d01f5,SESCO,II.5.1,Santa Fe,AR-S,annual,2019,bioetanol combustion consumption by agriculture machines,0.7045609359599999,TJ,N2O,0.6,kg/TJ,0.4227365615759999,kg +d4fffd0f-9452-3020-8e11-0eb15dccc5f3,SESCO,II.1.1,Buenos Aires,AR-B,annual,2019,bioetanol combustion consumption by to the public,539.18940937176,TJ,CH4,10.0,kg/TJ,5391.8940937176,kg +88a5999c-1a37-3dc1-ad17-d1a06983439d,SESCO,II.1.1,Buenos Aires,AR-B,annual,2019,bioetanol combustion consumption by to the public,539.18940937176,TJ,N2O,0.6,kg/TJ,323.513645623056,kg +e98ac500-7744-3488-99ef-276f0d340a7e,SESCO,II.1.1,Capital Federal,AR-C,annual,2019,bioetanol combustion consumption by to the public,18.448529226479998,TJ,CH4,10.0,kg/TJ,184.48529226479997,kg +93ae4330-3e8e-35ec-bb33-0783c7fd92bd,SESCO,II.1.1,Capital Federal,AR-C,annual,2019,bioetanol combustion consumption by to the public,18.448529226479998,TJ,N2O,0.6,kg/TJ,11.069117535888,kg +ab7ac992-17e1-3eeb-9ef7-657c37a4f144,SESCO,II.1.1,Catamarca,AR-K,annual,2019,bioetanol combustion consumption by to the public,1.5585002121599998,TJ,CH4,10.0,kg/TJ,15.585002121599999,kg +f38f8fc9-4bec-3592-b89f-77cffad36bef,SESCO,II.1.1,Catamarca,AR-K,annual,2019,bioetanol combustion consumption by to the public,1.5585002121599998,TJ,N2O,0.6,kg/TJ,0.9351001272959998,kg +8de1bf6d-ec5c-3ae6-97ae-9739b7097244,SESCO,II.1.1,Chaco,AR-H,annual,2019,bioetanol combustion consumption by to the public,2.5900579375199997,TJ,CH4,10.0,kg/TJ,25.900579375199996,kg +a2dcec55-54c0-3975-8c82-6bf4e8b7616b,SESCO,II.1.1,Chaco,AR-H,annual,2019,bioetanol combustion consumption by to the public,2.5900579375199997,TJ,N2O,0.6,kg/TJ,1.5540347625119997,kg +0ebe02e6-64f4-3b2a-ae72-389d806fd977,SESCO,II.1.1,Chubut,AR-U,annual,2019,bioetanol combustion consumption by to the public,8.510247701639999,TJ,CH4,10.0,kg/TJ,85.10247701639999,kg +4073b9bb-aada-3e19-8584-9f782fe760ee,SESCO,II.1.1,Chubut,AR-U,annual,2019,bioetanol combustion consumption by to the public,8.510247701639999,TJ,N2O,0.6,kg/TJ,5.1061486209839995,kg +d41c86b4-12e6-3838-b1f7-0f4917c1862b,SESCO,II.1.1,Corrientes,AR-W,annual,2019,bioetanol combustion consumption by to the public,15.187076567639997,TJ,CH4,10.0,kg/TJ,151.87076567639997,kg +23f444c9-b703-3255-9abf-06c1b169efb0,SESCO,II.1.1,Corrientes,AR-W,annual,2019,bioetanol combustion consumption by to the public,15.187076567639997,TJ,N2O,0.6,kg/TJ,9.112245940583998,kg +ca08f14e-f8a5-375a-9af6-00db04d0292c,SESCO,II.1.1,Córdoba,AR-X,annual,2019,bioetanol combustion consumption by to the public,27.74418019272,TJ,CH4,10.0,kg/TJ,277.4418019272,kg +d0f5c327-f6aa-38d6-b028-ca9c16aaf0bc,SESCO,II.1.1,Córdoba,AR-X,annual,2019,bioetanol combustion consumption by to the public,27.74418019272,TJ,N2O,0.6,kg/TJ,16.646508115632,kg +95adf5e4-f490-35f2-807c-cde470a671c9,SESCO,II.1.1,Entre Rios,AR-E,annual,2019,bioetanol combustion consumption by to the public,26.943553804319997,TJ,CH4,10.0,kg/TJ,269.4355380432,kg +b171a685-ebda-373c-83d8-c5d4d35c989d,SESCO,II.1.1,Entre Rios,AR-E,annual,2019,bioetanol combustion consumption by to the public,26.943553804319997,TJ,N2O,0.6,kg/TJ,16.166132282592,kg +3bffcd13-995e-3b99-bad1-fcb5e84e3a4f,SESCO,II.1.1,Formosa,AR-P,annual,2019,bioetanol combustion consumption by to the public,0.19348577567999997,TJ,CH4,10.0,kg/TJ,1.9348577567999996,kg +ffae4a75-6343-3b53-8265-279bca869afc,SESCO,II.1.1,Formosa,AR-P,annual,2019,bioetanol combustion consumption by to the public,0.19348577567999997,TJ,N2O,0.6,kg/TJ,0.11609146540799997,kg +b442c26f-ca10-3436-a7cf-81354136a92b,SESCO,II.1.1,Jujuy,AR-Y,annual,2019,bioetanol combustion consumption by to the public,3.0319579962,TJ,CH4,10.0,kg/TJ,30.319579962,kg +13e6d8c9-7284-3457-b180-bcf93a81762e,SESCO,II.1.1,Jujuy,AR-Y,annual,2019,bioetanol combustion consumption by to the public,3.0319579962,TJ,N2O,0.6,kg/TJ,1.81917479772,kg +6543959a-6252-3485-9592-9443b69b3ed1,SESCO,II.1.1,La Pampa,AR-L,annual,2019,bioetanol combustion consumption by to the public,22.893745285079994,TJ,CH4,10.0,kg/TJ,228.93745285079996,kg +8a0d0e2a-c9a1-338e-b165-6d59893bdaa3,SESCO,II.1.1,La Pampa,AR-L,annual,2019,bioetanol combustion consumption by to the public,22.893745285079994,TJ,N2O,0.6,kg/TJ,13.736247171047996,kg +172fdba0-8650-3a40-8408-8670b9c6e452,SESCO,II.1.1,Mendoza,AR-M,annual,2019,bioetanol combustion consumption by to the public,3.8754647672399996,TJ,CH4,10.0,kg/TJ,38.7546476724,kg +1d10ff7a-2467-3fbc-9824-4020208df651,SESCO,II.1.1,Mendoza,AR-M,annual,2019,bioetanol combustion consumption by to the public,3.8754647672399996,TJ,N2O,0.6,kg/TJ,2.3252788603439996,kg +6ed866c9-02d4-3ee5-831d-ccabc30dda4a,SESCO,II.1.1,Misiones,AR-N,annual,2019,bioetanol combustion consumption by to the public,3.0280978926,TJ,CH4,10.0,kg/TJ,30.280978926,kg +3729e66d-5a08-3ecb-9d9f-51804f8e1eb7,SESCO,II.1.1,Misiones,AR-N,annual,2019,bioetanol combustion consumption by to the public,3.0280978926,TJ,N2O,0.6,kg/TJ,1.8168587355599999,kg +f72d5650-576e-39e8-b756-848cc920db49,SESCO,II.1.1,Neuquén,AR-Q,annual,2019,bioetanol combustion consumption by to the public,23.114499752879993,TJ,CH4,10.0,kg/TJ,231.14499752879993,kg +31194f40-ba51-3ce8-bb71-a37e39f1b47b,SESCO,II.1.1,Neuquén,AR-Q,annual,2019,bioetanol combustion consumption by to the public,23.114499752879993,TJ,N2O,0.6,kg/TJ,13.868699851727996,kg +0a8e5a1e-dc35-3102-a21f-5b622c6f4a4d,SESCO,II.1.1,Rio Negro,AR-R,annual,2019,bioetanol combustion consumption by to the public,58.46814818676,TJ,CH4,10.0,kg/TJ,584.6814818675999,kg +3cde773d-1d1e-3c9d-9cb9-4989755c532a,SESCO,II.1.1,Rio Negro,AR-R,annual,2019,bioetanol combustion consumption by to the public,58.46814818676,TJ,N2O,0.6,kg/TJ,35.080888912056,kg +d5f99438-a55c-3089-81fa-0da371e9b186,SESCO,II.1.1,San Juan,AR-J,annual,2019,bioetanol combustion consumption by to the public,5.88767030856,TJ,CH4,10.0,kg/TJ,58.8767030856,kg +100352d4-ee87-3857-b739-e034ca0a660b,SESCO,II.1.1,San Juan,AR-J,annual,2019,bioetanol combustion consumption by to the public,5.88767030856,TJ,N2O,0.6,kg/TJ,3.5326021851359997,kg +0c078ec1-4c7d-3ff5-8bd8-35efc17b96d7,SESCO,II.1.1,San Luis,AR-D,annual,2019,bioetanol combustion consumption by to the public,4.04688659976,TJ,CH4,10.0,kg/TJ,40.4688659976,kg +65debebc-8d21-3960-974b-5cbbe30effcb,SESCO,II.1.1,San Luis,AR-D,annual,2019,bioetanol combustion consumption by to the public,4.04688659976,TJ,N2O,0.6,kg/TJ,2.4281319598559996,kg +0c635cae-8ffd-361e-b352-345742ee4d4d,SESCO,II.1.1,Santa Fe,AR-S,annual,2019,bioetanol combustion consumption by to the public,52.862605436879996,TJ,CH4,10.0,kg/TJ,528.6260543687999,kg +a807aeab-df19-365b-aa23-cc9fb107175d,SESCO,II.1.1,Santa Fe,AR-S,annual,2019,bioetanol combustion consumption by to the public,52.862605436879996,TJ,N2O,0.6,kg/TJ,31.717563262127996,kg +2e00177c-a104-3a51-a6e2-64dd9b09ebe0,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2019,bioetanol combustion consumption by to the public,18.59628427812,TJ,CH4,10.0,kg/TJ,185.96284278119998,kg +d9bbb89d-9c97-36b5-8ceb-defb4b0287cf,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2019,bioetanol combustion consumption by to the public,18.59628427812,TJ,N2O,0.6,kg/TJ,11.157770566872,kg +d657bd28-50b2-3073-af7d-10cb248b2025,SESCO,II.1.1,Tucuman,AR-T,annual,2019,bioetanol combustion consumption by to the public,3.5631414842399995,TJ,CH4,10.0,kg/TJ,35.6314148424,kg +678e5090-e0d2-34f2-9cef-6485eb000b1c,SESCO,II.1.1,Tucuman,AR-T,annual,2019,bioetanol combustion consumption by to the public,3.5631414842399995,TJ,N2O,0.6,kg/TJ,2.1378848905439995,kg +4d052d81-6dc2-3311-9cc0-4b397213994a,SESCO,II.1.1,Buenos Aires,AR-B,annual,2019,bioetanol combustion consumption by to the public,83.17148703228,TJ,CH4,10.0,kg/TJ,831.7148703227999,kg +0ecd6d2b-833e-36b2-a440-2484f93a137c,SESCO,II.1.1,Buenos Aires,AR-B,annual,2019,bioetanol combustion consumption by to the public,83.17148703228,TJ,N2O,0.6,kg/TJ,49.902892219368,kg +dec64d6b-6d17-3b47-be95-a6dcf34aee6b,SESCO,II.1.1,Capital Federal,AR-C,annual,2019,bioetanol combustion consumption by to the public,2.3464828439999996,TJ,CH4,10.0,kg/TJ,23.464828439999998,kg +121a7b42-c16a-301f-ad52-2468ba7bab00,SESCO,II.1.1,Capital Federal,AR-C,annual,2019,bioetanol combustion consumption by to the public,2.3464828439999996,TJ,N2O,0.6,kg/TJ,1.4078897063999998,kg +246f4d6f-1f41-31bc-b3f0-8f05dc38d590,SESCO,II.1.1,Catamarca,AR-K,annual,2019,bioetanol combustion consumption by to the public,0.0712713168,TJ,CH4,10.0,kg/TJ,0.712713168,kg +4e43d027-7ec1-3a61-a9fb-169d383cc0a2,SESCO,II.1.1,Catamarca,AR-K,annual,2019,bioetanol combustion consumption by to the public,0.0712713168,TJ,N2O,0.6,kg/TJ,0.042762790079999995,kg +7f3971a7-540a-35ab-a48d-243903b893e3,SESCO,II.1.1,Chaco,AR-H,annual,2019,bioetanol combustion consumption by to the public,0.30354474276,TJ,CH4,10.0,kg/TJ,3.0354474276,kg +2f47cedf-76ac-3c0b-9062-879f10b445ee,SESCO,II.1.1,Chaco,AR-H,annual,2019,bioetanol combustion consumption by to the public,0.30354474276,TJ,N2O,0.6,kg/TJ,0.18212684565599999,kg +d28a9011-b9aa-3edd-ab42-fb6e6abd8e2b,SESCO,II.1.1,Chubut,AR-U,annual,2019,bioetanol combustion consumption by to the public,1.10418391296,TJ,CH4,10.0,kg/TJ,11.0418391296,kg +b772fabb-6f6b-38b1-864e-f6142ae4aa23,SESCO,II.1.1,Chubut,AR-U,annual,2019,bioetanol combustion consumption by to the public,1.10418391296,TJ,N2O,0.6,kg/TJ,0.6625103477759999,kg +5b75218f-2d44-3b48-b728-d8e6ed87832e,SESCO,II.1.1,Corrientes,AR-W,annual,2019,bioetanol combustion consumption by to the public,1.09543349268,TJ,CH4,10.0,kg/TJ,10.9543349268,kg +b5053fc4-0758-3a54-99e0-bd508206c958,SESCO,II.1.1,Corrientes,AR-W,annual,2019,bioetanol combustion consumption by to the public,1.09543349268,TJ,N2O,0.6,kg/TJ,0.657260095608,kg +13cace51-5bdf-3843-b0c2-b37d8cc769e0,SESCO,II.1.1,Córdoba,AR-X,annual,2019,bioetanol combustion consumption by to the public,4.89376265328,TJ,CH4,10.0,kg/TJ,48.937626532799996,kg +07e2008e-3102-3c07-8241-5b798611ab1d,SESCO,II.1.1,Córdoba,AR-X,annual,2019,bioetanol combustion consumption by to the public,4.89376265328,TJ,N2O,0.6,kg/TJ,2.936257591968,kg +67cfeff8-db86-3a7d-b727-302d13cb3f78,SESCO,II.1.1,Entre Rios,AR-E,annual,2019,bioetanol combustion consumption by to the public,4.798553581439999,TJ,CH4,10.0,kg/TJ,47.985535814399995,kg +7eac7d9d-2247-3a38-8cf4-218be39a7147,SESCO,II.1.1,Entre Rios,AR-E,annual,2019,bioetanol combustion consumption by to the public,4.798553581439999,TJ,N2O,0.6,kg/TJ,2.8791321488639996,kg +e77da2a3-ef83-3935-97fb-a5644bcfaa91,SESCO,II.1.1,Formosa,AR-P,annual,2019,bioetanol combustion consumption by to the public,0.03825081468,TJ,CH4,10.0,kg/TJ,0.3825081468,kg +06f334f9-757d-33cd-b5ee-8b3c2992c31c,SESCO,II.1.1,Formosa,AR-P,annual,2019,bioetanol combustion consumption by to the public,0.03825081468,TJ,N2O,0.6,kg/TJ,0.022950488808000002,kg +eeb4a499-a117-320f-ae00-c52c02881386,SESCO,II.1.1,La Pampa,AR-L,annual,2019,bioetanol combustion consumption by to the public,4.82047181208,TJ,CH4,10.0,kg/TJ,48.2047181208,kg +99be2142-4d3e-3505-94e3-b893ca65bcce,SESCO,II.1.1,La Pampa,AR-L,annual,2019,bioetanol combustion consumption by to the public,4.82047181208,TJ,N2O,0.6,kg/TJ,2.892283087248,kg +7a744881-0907-3453-af45-1a8fec0f28d6,SESCO,II.1.1,Mendoza,AR-M,annual,2019,bioetanol combustion consumption by to the public,0.42980336315999995,TJ,CH4,10.0,kg/TJ,4.298033631599999,kg +cbd2612c-e36b-3714-b12b-2be5053927fa,SESCO,II.1.1,Mendoza,AR-M,annual,2019,bioetanol combustion consumption by to the public,0.42980336315999995,TJ,N2O,0.6,kg/TJ,0.25788201789599996,kg +34b66f55-c873-316c-a6ca-4e4c58492709,SESCO,II.1.1,Misiones,AR-N,annual,2019,bioetanol combustion consumption by to the public,0.20526036983999998,TJ,CH4,10.0,kg/TJ,2.0526036984,kg +bc0c7753-64dc-323d-8b2b-d9cf054bc15d,SESCO,II.1.1,Misiones,AR-N,annual,2019,bioetanol combustion consumption by to the public,0.20526036983999998,TJ,N2O,0.6,kg/TJ,0.12315622190399998,kg +586414db-27a8-3fcd-b1a2-db2b4e6eeebc,SESCO,II.1.1,Neuquén,AR-Q,annual,2019,bioetanol combustion consumption by to the public,7.66447599564,TJ,CH4,10.0,kg/TJ,76.64475995640001,kg +63f42952-692f-342c-9c63-328ba8c5648a,SESCO,II.1.1,Neuquén,AR-Q,annual,2019,bioetanol combustion consumption by to the public,7.66447599564,TJ,N2O,0.6,kg/TJ,4.598685597384,kg +5859c2c4-b39a-3ca9-bbad-9ca87749caae,SESCO,II.1.1,Rio Negro,AR-R,annual,2019,bioetanol combustion consumption by to the public,7.6624181258399995,TJ,CH4,10.0,kg/TJ,76.6241812584,kg +2d2a482c-f73a-31d1-bd44-b9c84484aba1,SESCO,II.1.1,Rio Negro,AR-R,annual,2019,bioetanol combustion consumption by to the public,7.6624181258399995,TJ,N2O,0.6,kg/TJ,4.597450875503999,kg +c47b1b5c-2034-3e78-8bb1-df9a1c6f2b89,SESCO,II.1.1,San Juan,AR-J,annual,2019,bioetanol combustion consumption by to the public,0.62366748012,TJ,CH4,10.0,kg/TJ,6.2366748011999995,kg +52a85b44-fcc6-31cd-9830-fe72aa5e6e79,SESCO,II.1.1,San Juan,AR-J,annual,2019,bioetanol combustion consumption by to the public,0.62366748012,TJ,N2O,0.6,kg/TJ,0.37420048807199996,kg +a3074e3a-be04-395f-b1e8-f28a300bb59c,SESCO,II.1.1,San Luis,AR-D,annual,2019,bioetanol combustion consumption by to the public,0.85749772932,TJ,CH4,10.0,kg/TJ,8.5749772932,kg +280f103a-8cc8-386c-9504-4efa0e4ce478,SESCO,II.1.1,San Luis,AR-D,annual,2019,bioetanol combustion consumption by to the public,0.85749772932,TJ,N2O,0.6,kg/TJ,0.514498637592,kg +4f72f2e7-8f94-3cd2-823a-9f99e8d74af2,SESCO,II.1.1,Santa Fe,AR-S,annual,2019,bioetanol combustion consumption by to the public,9.98687281572,TJ,CH4,10.0,kg/TJ,99.8687281572,kg +55145ccc-9fc4-34e3-83f1-cf341737a217,SESCO,II.1.1,Santa Fe,AR-S,annual,2019,bioetanol combustion consumption by to the public,9.98687281572,TJ,N2O,0.6,kg/TJ,5.992123689432,kg +b8041432-4f4e-33f2-b766-416ead711a4c,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2019,bioetanol combustion consumption by to the public,2.9939755993199992,TJ,CH4,10.0,kg/TJ,29.93975599319999,kg +de3950b0-6d6f-3371-820c-befbee1731ec,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2019,bioetanol combustion consumption by to the public,2.9939755993199992,TJ,N2O,0.6,kg/TJ,1.7963853595919994,kg +ca0ae9e0-8fcc-3570-b570-f6abf493f1d2,SESCO,II.1.1,Tucuman,AR-T,annual,2019,bioetanol combustion consumption by to the public,0.041203410479999994,TJ,CH4,10.0,kg/TJ,0.4120341047999999,kg +fadd848d-d3c1-3402-91d6-920bf6c32ef0,SESCO,II.1.1,Tucuman,AR-T,annual,2019,bioetanol combustion consumption by to the public,0.041203410479999994,TJ,N2O,0.6,kg/TJ,0.024722046287999996,kg +c7648b93-d34b-33bb-a36e-cecbcef91fc1,SESCO,I.3.1,Neuquén,AR-Q,annual,2019,bioetanol combustion consumption by petrochemical industries,0.31022195507999994,TJ,CH4,10.0,kg/TJ,3.1022195507999992,kg +807637ac-99f9-3ee4-8344-21276d093eea,SESCO,I.3.1,Neuquén,AR-Q,annual,2019,bioetanol combustion consumption by petrochemical industries,0.31022195507999994,TJ,N2O,0.6,kg/TJ,0.18613317304799995,kg +45c2028d-22ec-391b-994b-6690eb39b9a1,SESCO,I.3.1,Neuquén,AR-Q,annual,2019,bioetanol combustion consumption by petrochemical industries,0.025663298039999997,TJ,CH4,10.0,kg/TJ,0.2566329804,kg +9c09c66c-c90f-358e-839c-9761a691603d,SESCO,I.3.1,Neuquén,AR-Q,annual,2019,bioetanol combustion consumption by petrochemical industries,0.025663298039999997,TJ,N2O,0.6,kg/TJ,0.015397978823999998,kg +3440d0ce-a3e3-3847-9aea-e734f4e50285,SESCO,II.1.1,Buenos Aires,AR-B,annual,2019,bioetanol combustion consumption by public passenger transport,0.07372542239999999,TJ,CH4,10.0,kg/TJ,0.737254224,kg +b89065ca-5b81-3ded-a291-a3e36d8d1f62,SESCO,II.1.1,Buenos Aires,AR-B,annual,2019,bioetanol combustion consumption by public passenger transport,0.07372542239999999,TJ,N2O,0.6,kg/TJ,0.04423525343999999,kg +413ea82f-d151-3834-8bef-d5b8caebad3f,SESCO,II.5.1,Buenos Aires,AR-B,annual,2019,bioetanol combustion consumption by agriculture machines,4.67302608,TJ,CH4,10.0,kg/TJ,46.730260799999996,kg +11f0da7a-dc44-36bf-aaa9-b32d693a6ad5,SESCO,II.5.1,Buenos Aires,AR-B,annual,2019,bioetanol combustion consumption by agriculture machines,4.67302608,TJ,N2O,0.6,kg/TJ,2.8038156479999996,kg +84cd7a79-d0d4-35ea-8179-1633c573941e,SESCO,II.5.1,Mendoza,AR-M,annual,2019,bioetanol combustion consumption by agriculture machines,0.09458531999999999,TJ,CH4,10.0,kg/TJ,0.9458531999999998,kg +328fbcea-19d1-3115-aa83-a333f77c8da6,SESCO,II.5.1,Mendoza,AR-M,annual,2019,bioetanol combustion consumption by agriculture machines,0.09458531999999999,TJ,N2O,0.6,kg/TJ,0.05675119199999999,kg +9576d758-54e9-3276-afbf-8fb3dc3598a4,SESCO,II.5.1,Salta,AR-A,annual,2019,bioetanol combustion consumption by agriculture machines,0.038345399999999995,TJ,CH4,10.0,kg/TJ,0.38345399999999996,kg +3acb6310-f12e-3133-a695-f3ef715e2f16,SESCO,II.5.1,Salta,AR-A,annual,2019,bioetanol combustion consumption by agriculture machines,0.038345399999999995,TJ,N2O,0.6,kg/TJ,0.023007239999999995,kg +a03e424c-8feb-3213-8749-54b4af287d1f,SESCO,II.5.1,Santa Fe,AR-S,annual,2019,bioetanol combustion consumption by agriculture machines,3.23635176,TJ,CH4,10.0,kg/TJ,32.363517599999994,kg +dc022420-d297-3461-b6d1-13701e49462e,SESCO,II.5.1,Santa Fe,AR-S,annual,2019,bioetanol combustion consumption by agriculture machines,3.23635176,TJ,N2O,0.6,kg/TJ,1.9418110559999997,kg +d313839e-adc3-398f-b782-94e7d60ebeae,SESCO,II.1.1,Buenos Aires,AR-B,annual,2019,bioetanol combustion consumption by to the public,3284.18381196,TJ,CH4,10.0,kg/TJ,32841.838119600005,kg +7b00ffe3-37ef-3b25-a260-f2be18c63800,SESCO,II.1.1,Buenos Aires,AR-B,annual,2019,bioetanol combustion consumption by to the public,3284.18381196,TJ,N2O,0.6,kg/TJ,1970.510287176,kg +a2e341fb-6f49-35a7-a9e8-e5f31e31b41b,SESCO,II.1.1,Capital Federal,AR-C,annual,2019,bioetanol combustion consumption by to the public,668.59806348,TJ,CH4,10.0,kg/TJ,6685.980634799999,kg +66cc4caf-e9fc-388b-b573-bbd5f80302ab,SESCO,II.1.1,Capital Federal,AR-C,annual,2019,bioetanol combustion consumption by to the public,668.59806348,TJ,N2O,0.6,kg/TJ,401.158838088,kg +e872990d-0486-3b71-b4f6-d288e8432cca,SESCO,II.1.1,Catamarca,AR-K,annual,2019,bioetanol combustion consumption by to the public,64.23110136,TJ,CH4,10.0,kg/TJ,642.3110136,kg +13fecf68-d0a7-3a86-98c8-c1a32ebd9254,SESCO,II.1.1,Catamarca,AR-K,annual,2019,bioetanol combustion consumption by to the public,64.23110136,TJ,N2O,0.6,kg/TJ,38.538660816,kg +4e7409cf-24f2-3515-8bde-47fdc081a0dd,SESCO,II.1.1,Chaco,AR-H,annual,2019,bioetanol combustion consumption by to the public,192.66518411999996,TJ,CH4,10.0,kg/TJ,1926.6518411999996,kg +d5734abf-9e97-3f61-848e-9d27b4c7132b,SESCO,II.1.1,Chaco,AR-H,annual,2019,bioetanol combustion consumption by to the public,192.66518411999996,TJ,N2O,0.6,kg/TJ,115.59911047199998,kg +0ca87e3e-dcea-3269-9f9f-fbe8eb1e84ee,SESCO,II.1.1,Chubut,AR-U,annual,2019,bioetanol combustion consumption by to the public,276.66717372,TJ,CH4,10.0,kg/TJ,2766.6717372,kg +79aa3832-b997-3106-9ea4-6b9f251bee99,SESCO,II.1.1,Chubut,AR-U,annual,2019,bioetanol combustion consumption by to the public,276.66717372,TJ,N2O,0.6,kg/TJ,166.000304232,kg +00373603-d408-309a-9648-6cc253f2bf0b,SESCO,II.1.1,Corrientes,AR-W,annual,2019,bioetanol combustion consumption by to the public,198.71353187999998,TJ,CH4,10.0,kg/TJ,1987.1353187999998,kg +fa899d0c-26f7-39af-805b-9ff72ee4df39,SESCO,II.1.1,Corrientes,AR-W,annual,2019,bioetanol combustion consumption by to the public,198.71353187999998,TJ,N2O,0.6,kg/TJ,119.22811912799997,kg +f32e5c51-323b-3a5a-9fd8-6b9bdc5d84dc,SESCO,II.1.1,Córdoba,AR-X,annual,2019,bioetanol combustion consumption by to the public,802.2701278799999,TJ,CH4,10.0,kg/TJ,8022.701278799999,kg +7e5eca60-30d1-3824-89d6-b630f181f25c,SESCO,II.1.1,Córdoba,AR-X,annual,2019,bioetanol combustion consumption by to the public,802.2701278799999,TJ,N2O,0.6,kg/TJ,481.3620767279999,kg +8abcb99e-0605-3102-8410-e25728e94871,SESCO,II.1.1,Entre Rios,AR-E,annual,2019,bioetanol combustion consumption by to the public,279.49962059999996,TJ,CH4,10.0,kg/TJ,2794.996206,kg +2bb61dfc-972d-3cea-95ef-58c85db63b3c,SESCO,II.1.1,Entre Rios,AR-E,annual,2019,bioetanol combustion consumption by to the public,279.49962059999996,TJ,N2O,0.6,kg/TJ,167.69977235999997,kg +3565cce8-6ee5-303f-ba5a-662a151e9529,SESCO,II.1.1,Formosa,AR-P,annual,2019,bioetanol combustion consumption by to the public,88.68779747999999,TJ,CH4,10.0,kg/TJ,886.8779747999998,kg +a4f65916-495f-3fb2-88a5-db9705d8aa92,SESCO,II.1.1,Formosa,AR-P,annual,2019,bioetanol combustion consumption by to the public,88.68779747999999,TJ,N2O,0.6,kg/TJ,53.21267848799999,kg +f5257418-dac4-3394-ac96-673da877e2ba,SESCO,II.1.1,Jujuy,AR-Y,annual,2019,bioetanol combustion consumption by to the public,120.77267183999999,TJ,CH4,10.0,kg/TJ,1207.7267183999998,kg +62c7e60d-bc16-344d-bda9-21eedb63f311,SESCO,II.1.1,Jujuy,AR-Y,annual,2019,bioetanol combustion consumption by to the public,120.77267183999999,TJ,N2O,0.6,kg/TJ,72.46360310399999,kg +b185c81b-aa5e-3928-b4fd-8cab41568cd2,SESCO,II.1.1,La Pampa,AR-L,annual,2019,bioetanol combustion consumption by to the public,142.0824888,TJ,CH4,10.0,kg/TJ,1420.8248879999999,kg +d26e12ce-bf26-3b10-ace8-595a7231d476,SESCO,II.1.1,La Pampa,AR-L,annual,2019,bioetanol combustion consumption by to the public,142.0824888,TJ,N2O,0.6,kg/TJ,85.24949328,kg +2fe912cd-53fa-3c99-87ae-6d7bcb78fd87,SESCO,II.1.1,La Rioja,AR-F,annual,2019,bioetanol combustion consumption by to the public,84.4365708,TJ,CH4,10.0,kg/TJ,844.365708,kg +ef8c63c5-71e7-3802-8a32-78c507dc74bb,SESCO,II.1.1,La Rioja,AR-F,annual,2019,bioetanol combustion consumption by to the public,84.4365708,TJ,N2O,0.6,kg/TJ,50.66194248,kg +0b85551f-fe28-3cae-b3e1-3ab0a42f7454,SESCO,II.1.1,Mendoza,AR-M,annual,2019,bioetanol combustion consumption by to the public,416.59720739999995,TJ,CH4,10.0,kg/TJ,4165.972073999999,kg +746116e8-1f27-3306-8974-8f0fca37a7a8,SESCO,II.1.1,Mendoza,AR-M,annual,2019,bioetanol combustion consumption by to the public,416.59720739999995,TJ,N2O,0.6,kg/TJ,249.95832443999996,kg +0093ac5b-85c2-312b-b37b-d08420e7a70b,SESCO,II.1.1,Misiones,AR-N,annual,2019,bioetanol combustion consumption by to the public,274.24118808,TJ,CH4,10.0,kg/TJ,2742.4118808,kg +c4441633-e4cb-3dc4-a806-1babc5e77881,SESCO,II.1.1,Misiones,AR-N,annual,2019,bioetanol combustion consumption by to the public,274.24118808,TJ,N2O,0.6,kg/TJ,164.544712848,kg +84ed5da6-d8d6-37e1-988e-ec2f7fbcaf94,SESCO,II.1.1,Neuquén,AR-Q,annual,2019,bioetanol combustion consumption by to the public,277.90445195999996,TJ,CH4,10.0,kg/TJ,2779.0445195999996,kg +098011e8-686b-37ae-945b-b460dfd4b99f,SESCO,II.1.1,Neuquén,AR-Q,annual,2019,bioetanol combustion consumption by to the public,277.90445195999996,TJ,N2O,0.6,kg/TJ,166.74267117599996,kg +939bafd6-4e7b-371e-ba92-70205983c555,SESCO,II.1.1,Rio Negro,AR-R,annual,2019,bioetanol combustion consumption by to the public,279.45871883999996,TJ,CH4,10.0,kg/TJ,2794.5871884,kg +8a420770-2a0a-3692-9c15-2c3690884558,SESCO,II.1.1,Rio Negro,AR-R,annual,2019,bioetanol combustion consumption by to the public,279.45871883999996,TJ,N2O,0.6,kg/TJ,167.67523130399996,kg +7c6c917c-606e-360c-894d-f959cca42a2b,SESCO,II.1.1,Salta,AR-A,annual,2019,bioetanol combustion consumption by to the public,269.01598824,TJ,CH4,10.0,kg/TJ,2690.1598824000002,kg +82f059ab-86b2-30c8-a411-297ffb1224ba,SESCO,II.1.1,Salta,AR-A,annual,2019,bioetanol combustion consumption by to the public,269.01598824,TJ,N2O,0.6,kg/TJ,161.409592944,kg +208f9bad-6498-3f5f-a591-d694bbb57e18,SESCO,II.1.1,San Juan,AR-J,annual,2019,bioetanol combustion consumption by to the public,142.21797587999998,TJ,CH4,10.0,kg/TJ,1422.1797588,kg +39707e65-2fa0-30de-9c8b-a21c696352bb,SESCO,II.1.1,San Juan,AR-J,annual,2019,bioetanol combustion consumption by to the public,142.21797587999998,TJ,N2O,0.6,kg/TJ,85.33078552799999,kg +148875e9-e9df-33af-bf09-1cd24d76c354,SESCO,II.1.1,San Luis,AR-D,annual,2019,bioetanol combustion consumption by to the public,120.36621059999999,TJ,CH4,10.0,kg/TJ,1203.6621059999998,kg +d7d3f6f7-0475-3666-8d02-1cd068a4a9ea,SESCO,II.1.1,San Luis,AR-D,annual,2019,bioetanol combustion consumption by to the public,120.36621059999999,TJ,N2O,0.6,kg/TJ,72.21972636,kg +224ed333-dcee-38b5-921b-cdfe4657c58f,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2019,bioetanol combustion consumption by to the public,194.58245411999997,TJ,CH4,10.0,kg/TJ,1945.8245411999997,kg +d2ac04e0-e6ff-38f2-b570-d222372955c6,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2019,bioetanol combustion consumption by to the public,194.58245411999997,TJ,N2O,0.6,kg/TJ,116.74947247199998,kg +f6105c96-fa11-31ba-99b5-b3e16a3759be,SESCO,II.1.1,Santa Fe,AR-S,annual,2019,bioetanol combustion consumption by to the public,615.0985614,TJ,CH4,10.0,kg/TJ,6150.985614,kg +c3073496-26a0-3daa-9209-08e77c292897,SESCO,II.1.1,Santa Fe,AR-S,annual,2019,bioetanol combustion consumption by to the public,615.0985614,TJ,N2O,0.6,kg/TJ,369.05913684,kg +03ba89f4-801a-3ed1-ad2d-9c6d6a3aa01e,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2019,bioetanol combustion consumption by to the public,123.50286431999999,TJ,CH4,10.0,kg/TJ,1235.0286431999998,kg +1f125e31-5d5a-36ad-b1d5-a1152861b127,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2019,bioetanol combustion consumption by to the public,123.50286431999999,TJ,N2O,0.6,kg/TJ,74.10171859199998,kg +a40644b4-53e7-3047-b630-55ab63648a88,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2019,bioetanol combustion consumption by to the public,134.77385556,TJ,CH4,10.0,kg/TJ,1347.7385556,kg +ddb5fc3c-d8b6-3794-8568-edc62e7f3bce,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2019,bioetanol combustion consumption by to the public,134.77385556,TJ,N2O,0.6,kg/TJ,80.864313336,kg +ea6e8259-642b-3e9a-8ebd-ac86cba912bf,SESCO,II.1.1,Tucuman,AR-T,annual,2019,bioetanol combustion consumption by to the public,230.41495224,TJ,CH4,10.0,kg/TJ,2304.1495224,kg +993aa7e6-5e4c-3860-862a-e0d80c86e28a,SESCO,II.1.1,Tucuman,AR-T,annual,2019,bioetanol combustion consumption by to the public,230.41495224,TJ,N2O,0.6,kg/TJ,138.24897134399998,kg +d7077189-aa64-36d8-a54e-3435ec9922f2,SESCO,II.1.1,Buenos Aires,AR-B,annual,2019,bioetanol combustion consumption by to the public,1191.9795408,TJ,CH4,10.0,kg/TJ,11919.795408,kg +c47e97c4-4e88-3bc1-a843-819892e1cadd,SESCO,II.1.1,Buenos Aires,AR-B,annual,2019,bioetanol combustion consumption by to the public,1191.9795408,TJ,N2O,0.6,kg/TJ,715.1877244799999,kg +47bfe369-2d94-3872-a473-8357a5eafd39,SESCO,II.1.1,Capital Federal,AR-C,annual,2019,bioetanol combustion consumption by to the public,281.26606535999997,TJ,CH4,10.0,kg/TJ,2812.6606536,kg +4ce3b1f2-8ab5-31ff-894c-a80c169df148,SESCO,II.1.1,Capital Federal,AR-C,annual,2019,bioetanol combustion consumption by to the public,281.26606535999997,TJ,N2O,0.6,kg/TJ,168.75963921599998,kg +cefc0f5a-d2c2-38f5-9738-f6f725650317,SESCO,II.1.1,Catamarca,AR-K,annual,2019,bioetanol combustion consumption by to the public,22.897316519999997,TJ,CH4,10.0,kg/TJ,228.97316519999998,kg +82e7ae2a-aae8-343e-b8e9-d4ff182d2c65,SESCO,II.1.1,Catamarca,AR-K,annual,2019,bioetanol combustion consumption by to the public,22.897316519999997,TJ,N2O,0.6,kg/TJ,13.738389911999997,kg +c5c68373-6f8e-3615-8d50-b2a40feed510,SESCO,II.1.1,Chaco,AR-H,annual,2019,bioetanol combustion consumption by to the public,65.7751428,TJ,CH4,10.0,kg/TJ,657.751428,kg +85ea1640-91ce-30b4-bee3-c187c1434905,SESCO,II.1.1,Chaco,AR-H,annual,2019,bioetanol combustion consumption by to the public,65.7751428,TJ,N2O,0.6,kg/TJ,39.465085679999994,kg +2c892e54-f5b9-3f28-b19c-78b7313e634e,SESCO,II.1.1,Chubut,AR-U,annual,2019,bioetanol combustion consumption by to the public,97.79610816,TJ,CH4,10.0,kg/TJ,977.9610816,kg +66a2338f-fc1c-35fd-a4f7-6b9ff65b41dd,SESCO,II.1.1,Chubut,AR-U,annual,2019,bioetanol combustion consumption by to the public,97.79610816,TJ,N2O,0.6,kg/TJ,58.677664895999996,kg +d0e61b00-bd04-355f-be2b-6d9df56ac5c8,SESCO,II.1.1,Corrientes,AR-W,annual,2019,bioetanol combustion consumption by to the public,77.57018783999999,TJ,CH4,10.0,kg/TJ,775.7018783999999,kg +04c6d1c1-9624-3e50-b15e-02357bf7c8c3,SESCO,II.1.1,Corrientes,AR-W,annual,2019,bioetanol combustion consumption by to the public,77.57018783999999,TJ,N2O,0.6,kg/TJ,46.54211270399999,kg +e294bf50-27ec-35a3-85df-01c401ebab05,SESCO,II.1.1,Córdoba,AR-X,annual,2019,bioetanol combustion consumption by to the public,287.50869647999997,TJ,CH4,10.0,kg/TJ,2875.0869648,kg +c82cff14-fffb-3f1d-83e0-14838a678df0,SESCO,II.1.1,Córdoba,AR-X,annual,2019,bioetanol combustion consumption by to the public,287.50869647999997,TJ,N2O,0.6,kg/TJ,172.50521788799998,kg +9ee1517d-4681-38b9-a9d9-000fdff6f818,SESCO,II.1.1,Entre Rios,AR-E,annual,2019,bioetanol combustion consumption by to the public,101.81981879999998,TJ,CH4,10.0,kg/TJ,1018.1981879999998,kg +eed81997-0176-3961-8012-fab2c0d0469d,SESCO,II.1.1,Entre Rios,AR-E,annual,2019,bioetanol combustion consumption by to the public,101.81981879999998,TJ,N2O,0.6,kg/TJ,61.091891279999984,kg +cd0778c7-0dc1-3ecd-985c-b7520d7664af,SESCO,II.1.1,Formosa,AR-P,annual,2019,bioetanol combustion consumption by to the public,22.483186199999995,TJ,CH4,10.0,kg/TJ,224.83186199999994,kg +7924e74f-9667-33d1-9182-6e6bb47535c4,SESCO,II.1.1,Formosa,AR-P,annual,2019,bioetanol combustion consumption by to the public,22.483186199999995,TJ,N2O,0.6,kg/TJ,13.489911719999997,kg +aeefc769-fefe-304e-b7c7-756641078c5f,SESCO,II.1.1,Jujuy,AR-Y,annual,2019,bioetanol combustion consumption by to the public,33.805304639999996,TJ,CH4,10.0,kg/TJ,338.05304639999997,kg +53b2e6c2-4e16-3e16-828b-ef153d4a72b0,SESCO,II.1.1,Jujuy,AR-Y,annual,2019,bioetanol combustion consumption by to the public,33.805304639999996,TJ,N2O,0.6,kg/TJ,20.283182783999997,kg +c01359d9-9fa6-33f3-a4d7-6bb2e32410b7,SESCO,II.1.1,La Pampa,AR-L,annual,2019,bioetanol combustion consumption by to the public,84.23717471999998,TJ,CH4,10.0,kg/TJ,842.3717471999998,kg +c82f5856-e718-3d31-8469-47d5bc8123ae,SESCO,II.1.1,La Pampa,AR-L,annual,2019,bioetanol combustion consumption by to the public,84.23717471999998,TJ,N2O,0.6,kg/TJ,50.54230483199999,kg +3a0049d3-ba0d-3fd4-aa6c-4ee80b600b4e,SESCO,II.1.1,La Rioja,AR-F,annual,2019,bioetanol combustion consumption by to the public,32.86967688,TJ,CH4,10.0,kg/TJ,328.6967688,kg +aeafded0-035a-3f69-a283-fa3c2caae911,SESCO,II.1.1,La Rioja,AR-F,annual,2019,bioetanol combustion consumption by to the public,32.86967688,TJ,N2O,0.6,kg/TJ,19.721806128,kg +08a56cb4-a0b4-3e42-8c4c-df465e105c1c,SESCO,II.1.1,Mendoza,AR-M,annual,2019,bioetanol combustion consumption by to the public,199.89968291999998,TJ,CH4,10.0,kg/TJ,1998.9968291999999,kg +4656c335-0e84-35da-bb72-f797a306169b,SESCO,II.1.1,Mendoza,AR-M,annual,2019,bioetanol combustion consumption by to the public,199.89968291999998,TJ,N2O,0.6,kg/TJ,119.93980975199997,kg +04b56fb8-9698-321f-826c-b29ad4daa367,SESCO,II.1.1,Misiones,AR-N,annual,2019,bioetanol combustion consumption by to the public,64.59410448,TJ,CH4,10.0,kg/TJ,645.9410448,kg +b54488a6-f58b-3bf2-a672-5f78b596497e,SESCO,II.1.1,Misiones,AR-N,annual,2019,bioetanol combustion consumption by to the public,64.59410448,TJ,N2O,0.6,kg/TJ,38.756462688,kg +f13b3ab6-3fd2-36d9-8bdc-51100b730330,SESCO,II.1.1,Neuquén,AR-Q,annual,2019,bioetanol combustion consumption by to the public,155.08924847999998,TJ,CH4,10.0,kg/TJ,1550.8924847999997,kg +d9bc515d-1ff6-3193-ad6c-eb35e4ddf7dc,SESCO,II.1.1,Neuquén,AR-Q,annual,2019,bioetanol combustion consumption by to the public,155.08924847999998,TJ,N2O,0.6,kg/TJ,93.05354908799998,kg +9ba01b13-d43f-3599-b32d-73582af7ea49,SESCO,II.1.1,Rio Negro,AR-R,annual,2019,bioetanol combustion consumption by to the public,130.51751615999999,TJ,CH4,10.0,kg/TJ,1305.1751616,kg +7b6ae179-c361-3238-9181-b3ccc5b3d16c,SESCO,II.1.1,Rio Negro,AR-R,annual,2019,bioetanol combustion consumption by to the public,130.51751615999999,TJ,N2O,0.6,kg/TJ,78.31050969599998,kg +4f8e3fe7-6bee-3161-89d0-da7678615c64,SESCO,II.1.1,Salta,AR-A,annual,2019,bioetanol combustion consumption by to the public,76.05937907999999,TJ,CH4,10.0,kg/TJ,760.5937907999999,kg +2e798100-c2d2-3e12-b729-c017a9d8c19f,SESCO,II.1.1,Salta,AR-A,annual,2019,bioetanol combustion consumption by to the public,76.05937907999999,TJ,N2O,0.6,kg/TJ,45.63562744799999,kg +58b02ef7-cac8-3b86-81d8-7b089c4327f6,SESCO,II.1.1,San Juan,AR-J,annual,2019,bioetanol combustion consumption by to the public,58.19297904,TJ,CH4,10.0,kg/TJ,581.9297904,kg +f3a7ede5-7bd2-36f2-a31e-6147413239f6,SESCO,II.1.1,San Juan,AR-J,annual,2019,bioetanol combustion consumption by to the public,58.19297904,TJ,N2O,0.6,kg/TJ,34.915787423999994,kg +45274c4f-95a6-380f-8086-2fd4fd41f058,SESCO,II.1.1,San Luis,AR-D,annual,2019,bioetanol combustion consumption by to the public,49.06677383999999,TJ,CH4,10.0,kg/TJ,490.6677383999999,kg +4eda5e36-ed5f-32fb-ad27-f97695d65be9,SESCO,II.1.1,San Luis,AR-D,annual,2019,bioetanol combustion consumption by to the public,49.06677383999999,TJ,N2O,0.6,kg/TJ,29.440064303999993,kg +705c5686-e683-3fda-80a0-e95e88734b79,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2019,bioetanol combustion consumption by to the public,47.26454003999999,TJ,CH4,10.0,kg/TJ,472.6454003999999,kg +0b3fa80d-8da8-3cea-a1b4-d85019d847da,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2019,bioetanol combustion consumption by to the public,47.26454003999999,TJ,N2O,0.6,kg/TJ,28.358724023999994,kg +9ca6b31c-5838-32c0-a025-7a0c6579554d,SESCO,II.1.1,Santa Fe,AR-S,annual,2019,bioetanol combustion consumption by to the public,254.22744563999998,TJ,CH4,10.0,kg/TJ,2542.2744564,kg +0cd3805c-c730-301f-8211-158800d121d9,SESCO,II.1.1,Santa Fe,AR-S,annual,2019,bioetanol combustion consumption by to the public,254.22744563999998,TJ,N2O,0.6,kg/TJ,152.536467384,kg +d68e1102-bd45-320e-8588-130804d04d1c,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2019,bioetanol combustion consumption by to the public,44.78231448,TJ,CH4,10.0,kg/TJ,447.82314479999997,kg +7b73ddd2-8681-3fe4-9325-a1157cb1c000,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2019,bioetanol combustion consumption by to the public,44.78231448,TJ,N2O,0.6,kg/TJ,26.869388687999997,kg +46db8857-d6fd-3042-80b2-9e0f8c669d46,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2019,bioetanol combustion consumption by to the public,23.515955639999998,TJ,CH4,10.0,kg/TJ,235.15955639999999,kg +097e1784-3d92-3a79-b111-4cb14770f718,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2019,bioetanol combustion consumption by to the public,23.515955639999998,TJ,N2O,0.6,kg/TJ,14.109573383999999,kg +5021d296-2134-3e75-83ce-bb7b6e22ff3d,SESCO,II.1.1,Tucuman,AR-T,annual,2019,bioetanol combustion consumption by to the public,58.65312383999999,TJ,CH4,10.0,kg/TJ,586.5312383999999,kg +d5afbda6-f552-3cd4-b689-c44caa46f061,SESCO,II.1.1,Tucuman,AR-T,annual,2019,bioetanol combustion consumption by to the public,58.65312383999999,TJ,N2O,0.6,kg/TJ,35.191874303999995,kg +9450679b-ec1e-30a3-a576-33cd977e400b,SESCO,II.1.1,Buenos Aires,AR-B,annual,2019,bioetanol combustion consumption by freight transport,33.894777239999996,TJ,CH4,10.0,kg/TJ,338.94777239999996,kg +4584ce6f-d4a7-34a9-86d1-3d9bc42674c6,SESCO,II.1.1,Buenos Aires,AR-B,annual,2019,bioetanol combustion consumption by freight transport,33.894777239999996,TJ,N2O,0.6,kg/TJ,20.336866343999997,kg +4d44b20b-d25c-337f-b37c-f2ce90033fac,SESCO,II.1.1,Capital Federal,AR-C,annual,2019,bioetanol combustion consumption by freight transport,34.42905647999999,TJ,CH4,10.0,kg/TJ,344.2905647999999,kg +cfd7bc65-644e-3e2f-a614-ad08b80713f1,SESCO,II.1.1,Capital Federal,AR-C,annual,2019,bioetanol combustion consumption by freight transport,34.42905647999999,TJ,N2O,0.6,kg/TJ,20.657433887999996,kg +38a13827-234e-37d5-81af-fe38e0f6c0c0,SESCO,II.1.1,Chaco,AR-H,annual,2019,bioetanol combustion consumption by freight transport,1.3855471199999998,TJ,CH4,10.0,kg/TJ,13.855471199999998,kg +1b92e9f4-889d-3e15-a0df-4b48d841b590,SESCO,II.1.1,Chaco,AR-H,annual,2019,bioetanol combustion consumption by freight transport,1.3855471199999998,TJ,N2O,0.6,kg/TJ,0.8313282719999998,kg +8338f41d-a9b6-34b7-9a36-b2e713b5f048,SESCO,II.1.1,Chubut,AR-U,annual,2019,bioetanol combustion consumption by freight transport,1.29863088,TJ,CH4,10.0,kg/TJ,12.9863088,kg +33345b19-e3c2-3123-8189-ff99f55b7029,SESCO,II.1.1,Chubut,AR-U,annual,2019,bioetanol combustion consumption by freight transport,1.29863088,TJ,N2O,0.6,kg/TJ,0.779178528,kg +183cc0f9-2e6f-3cb0-a9d5-7c8d8fd445a4,SESCO,II.1.1,Corrientes,AR-W,annual,2019,bioetanol combustion consumption by freight transport,0.7796898,TJ,CH4,10.0,kg/TJ,7.796898,kg +f9549f08-219a-3103-a25c-c7762e308a55,SESCO,II.1.1,Corrientes,AR-W,annual,2019,bioetanol combustion consumption by freight transport,0.7796898,TJ,N2O,0.6,kg/TJ,0.46781387999999996,kg +a15e9af9-6df5-37cc-afa5-05e851fbccfe,SESCO,II.1.1,Córdoba,AR-X,annual,2019,bioetanol combustion consumption by freight transport,4.6985896799999995,TJ,CH4,10.0,kg/TJ,46.98589679999999,kg +547e3411-3c59-3cc5-864f-11d6e3bee32c,SESCO,II.1.1,Córdoba,AR-X,annual,2019,bioetanol combustion consumption by freight transport,4.6985896799999995,TJ,N2O,0.6,kg/TJ,2.819153808,kg +7e081ba4-35f0-3e20-a861-a97c89f18c7c,SESCO,II.1.1,Entre Rios,AR-E,annual,2019,bioetanol combustion consumption by freight transport,1.8993754799999998,TJ,CH4,10.0,kg/TJ,18.993754799999998,kg +5b033989-b9c4-31ad-934d-d69070f46d54,SESCO,II.1.1,Entre Rios,AR-E,annual,2019,bioetanol combustion consumption by freight transport,1.8993754799999998,TJ,N2O,0.6,kg/TJ,1.1396252879999997,kg +7682e8ec-5eb4-3a06-8039-7307932ba6e8,SESCO,II.1.1,Formosa,AR-P,annual,2019,bioetanol combustion consumption by freight transport,0.040901759999999995,TJ,CH4,10.0,kg/TJ,0.4090176,kg +fec41077-95c0-31c6-b0ae-c4daa46c23c6,SESCO,II.1.1,Formosa,AR-P,annual,2019,bioetanol combustion consumption by freight transport,0.040901759999999995,TJ,N2O,0.6,kg/TJ,0.024541055999999995,kg +31fb6948-d367-33d6-b14a-c720e6766eb4,SESCO,II.1.1,Jujuy,AR-Y,annual,2019,bioetanol combustion consumption by freight transport,0.14826888,TJ,CH4,10.0,kg/TJ,1.4826888,kg +455aab21-66de-369b-ba1f-65185ee9360b,SESCO,II.1.1,Jujuy,AR-Y,annual,2019,bioetanol combustion consumption by freight transport,0.14826888,TJ,N2O,0.6,kg/TJ,0.08896132799999999,kg +9f0349ea-4f02-39f9-b99b-7c733599c445,SESCO,II.1.1,La Pampa,AR-L,annual,2019,bioetanol combustion consumption by freight transport,0.4959338399999999,TJ,CH4,10.0,kg/TJ,4.959338399999999,kg +1d4c188c-6a82-3b7a-9279-145f26377210,SESCO,II.1.1,La Pampa,AR-L,annual,2019,bioetanol combustion consumption by freight transport,0.4959338399999999,TJ,N2O,0.6,kg/TJ,0.29756030399999994,kg +f206ca4b-b93d-3383-a62a-bbf707f3e9be,SESCO,II.1.1,La Rioja,AR-F,annual,2019,bioetanol combustion consumption by freight transport,0.035789039999999994,TJ,CH4,10.0,kg/TJ,0.35789039999999994,kg +eb6961a8-d0a2-3779-ab7b-4c3591d10d71,SESCO,II.1.1,La Rioja,AR-F,annual,2019,bioetanol combustion consumption by freight transport,0.035789039999999994,TJ,N2O,0.6,kg/TJ,0.021473423999999994,kg +9b2d594c-ff2b-3199-82dc-e2620c550bfd,SESCO,II.1.1,Mendoza,AR-M,annual,2019,bioetanol combustion consumption by freight transport,2.68162164,TJ,CH4,10.0,kg/TJ,26.8162164,kg +4102c4b2-ab87-341f-b8c3-4cfaa757f76b,SESCO,II.1.1,Mendoza,AR-M,annual,2019,bioetanol combustion consumption by freight transport,2.68162164,TJ,N2O,0.6,kg/TJ,1.608972984,kg +a6210275-9cae-3212-b516-8ba2337a38e7,SESCO,II.1.1,Misiones,AR-N,annual,2019,bioetanol combustion consumption by freight transport,0.53939196,TJ,CH4,10.0,kg/TJ,5.3939196,kg +c12de55d-48c0-3195-9115-6f20c5b4c704,SESCO,II.1.1,Misiones,AR-N,annual,2019,bioetanol combustion consumption by freight transport,0.53939196,TJ,N2O,0.6,kg/TJ,0.32363517599999997,kg +0a23e30d-0dbe-3a04-99c8-e48686b1f549,SESCO,II.1.1,Neuquén,AR-Q,annual,2019,bioetanol combustion consumption by freight transport,0.9023950799999999,TJ,CH4,10.0,kg/TJ,9.0239508,kg +0e0c7dba-c1c6-3ee3-846b-eb9e80312d37,SESCO,II.1.1,Neuquén,AR-Q,annual,2019,bioetanol combustion consumption by freight transport,0.9023950799999999,TJ,N2O,0.6,kg/TJ,0.5414370479999999,kg +332512d4-7685-3072-bb8b-14a28de28450,SESCO,II.1.1,Rio Negro,AR-R,annual,2019,bioetanol combustion consumption by freight transport,1.4366743199999998,TJ,CH4,10.0,kg/TJ,14.366743199999998,kg +1f3bb211-86f6-36ac-bdb5-f11ca267cd90,SESCO,II.1.1,Rio Negro,AR-R,annual,2019,bioetanol combustion consumption by freight transport,1.4366743199999998,TJ,N2O,0.6,kg/TJ,0.8620045919999999,kg +178f50f7-73b1-355e-a4af-681e700bee4e,SESCO,II.1.1,Salta,AR-A,annual,2019,bioetanol combustion consumption by freight transport,1.23472188,TJ,CH4,10.0,kg/TJ,12.3472188,kg +af986a0c-1be9-33e3-84a4-081bb777ac2c,SESCO,II.1.1,Salta,AR-A,annual,2019,bioetanol combustion consumption by freight transport,1.23472188,TJ,N2O,0.6,kg/TJ,0.7408331279999999,kg +8926d6ea-eb70-3c36-a7fe-58f2ad34e782,SESCO,II.1.1,San Juan,AR-J,annual,2019,bioetanol combustion consumption by freight transport,0.29909411999999996,TJ,CH4,10.0,kg/TJ,2.9909411999999995,kg +bc4a5c2e-9ad2-3994-8ae7-1d28b3e693e1,SESCO,II.1.1,San Juan,AR-J,annual,2019,bioetanol combustion consumption by freight transport,0.29909411999999996,TJ,N2O,0.6,kg/TJ,0.17945647199999998,kg +7730fbff-1795-3cfc-a0ca-01af23ecb891,SESCO,II.1.1,San Luis,AR-D,annual,2019,bioetanol combustion consumption by freight transport,0.4243557599999999,TJ,CH4,10.0,kg/TJ,4.243557599999999,kg +c8f38a04-34c2-3938-86c4-77e83e908ec6,SESCO,II.1.1,San Luis,AR-D,annual,2019,bioetanol combustion consumption by freight transport,0.4243557599999999,TJ,N2O,0.6,kg/TJ,0.25461345599999996,kg +62aa94a9-e6ea-30fe-b4b5-ead006afcb8a,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2019,bioetanol combustion consumption by freight transport,0.1661634,TJ,CH4,10.0,kg/TJ,1.6616339999999998,kg +d3177fac-cc07-35dd-827f-a2e9dbbc4def,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2019,bioetanol combustion consumption by freight transport,0.1661634,TJ,N2O,0.6,kg/TJ,0.09969803999999999,kg +aff6d228-bf63-3e28-b39c-0cd8ea925125,SESCO,II.1.1,Santa Fe,AR-S,annual,2019,bioetanol combustion consumption by freight transport,4.86730944,TJ,CH4,10.0,kg/TJ,48.6730944,kg +b4de510e-f1e5-3042-88a1-ac84978b6c66,SESCO,II.1.1,Santa Fe,AR-S,annual,2019,bioetanol combustion consumption by freight transport,4.86730944,TJ,N2O,0.6,kg/TJ,2.920385664,kg +56d019bf-ebe3-39e9-9dcd-f0b251c0e609,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2019,bioetanol combustion consumption by freight transport,0.07924716,TJ,CH4,10.0,kg/TJ,0.7924715999999999,kg +b3334e33-61ee-3f14-a53d-c43a62a7c41a,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2019,bioetanol combustion consumption by freight transport,0.07924716,TJ,N2O,0.6,kg/TJ,0.047548296,kg +b7a95960-7d20-343c-a532-8e92801d83b2,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2019,bioetanol combustion consumption by freight transport,0.76946436,TJ,CH4,10.0,kg/TJ,7.694643599999999,kg +e1b23a15-0c48-3bf7-97e8-606aa30d051c,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2019,bioetanol combustion consumption by freight transport,0.76946436,TJ,N2O,0.6,kg/TJ,0.46167861599999993,kg +90ee3244-71f1-38e4-b1e4-bd727e890a22,SESCO,II.1.1,Tucuman,AR-T,annual,2019,bioetanol combustion consumption by freight transport,1.10434752,TJ,CH4,10.0,kg/TJ,11.0434752,kg +54982e0f-cda7-3325-8351-d11a0304d52e,SESCO,II.1.1,Tucuman,AR-T,annual,2019,bioetanol combustion consumption by freight transport,1.10434752,TJ,N2O,0.6,kg/TJ,0.6626085119999999,kg +6abfa20e-2ddf-3b50-8640-5a18876f55ac,SESCO,II.1.1,Buenos Aires,AR-B,annual,2019,bioetanol combustion consumption by freight transport,26.179682759999995,TJ,CH4,10.0,kg/TJ,261.7968276,kg +b32005e4-34e7-370d-93e0-d4b6911957a2,SESCO,II.1.1,Buenos Aires,AR-B,annual,2019,bioetanol combustion consumption by freight transport,26.179682759999995,TJ,N2O,0.6,kg/TJ,15.707809655999997,kg +8eaa5987-130e-3451-aab2-2cbfe8cfffad,SESCO,II.1.1,Capital Federal,AR-C,annual,2019,bioetanol combustion consumption by freight transport,43.3686474,TJ,CH4,10.0,kg/TJ,433.686474,kg +dc4967d4-d234-38bc-96af-cfd1447de0a5,SESCO,II.1.1,Capital Federal,AR-C,annual,2019,bioetanol combustion consumption by freight transport,43.3686474,TJ,N2O,0.6,kg/TJ,26.02118844,kg +386f4e6c-4c0c-3f9c-b50c-a5fbe615b2e4,SESCO,II.1.1,Catamarca,AR-K,annual,2019,bioetanol combustion consumption by freight transport,0.0025563599999999997,TJ,CH4,10.0,kg/TJ,0.0255636,kg +4fb72792-2985-37b8-8172-5be3bf43d8f1,SESCO,II.1.1,Catamarca,AR-K,annual,2019,bioetanol combustion consumption by freight transport,0.0025563599999999997,TJ,N2O,0.6,kg/TJ,0.0015338159999999997,kg +43c35d9d-bdfd-3813-a437-acc1bdee620b,SESCO,II.1.1,Chaco,AR-H,annual,2019,bioetanol combustion consumption by freight transport,0.6774353999999999,TJ,CH4,10.0,kg/TJ,6.774353999999999,kg +bff626c8-82dc-3a04-af23-855e1d754884,SESCO,II.1.1,Chaco,AR-H,annual,2019,bioetanol combustion consumption by freight transport,0.6774353999999999,TJ,N2O,0.6,kg/TJ,0.40646123999999995,kg +26336733-e8a2-39bd-a1f4-7343ba4f35b4,SESCO,II.1.1,Chubut,AR-U,annual,2019,bioetanol combustion consumption by freight transport,0.67999176,TJ,CH4,10.0,kg/TJ,6.7999176,kg +497d2b20-c97f-3cb3-9c23-57dccef61ec0,SESCO,II.1.1,Chubut,AR-U,annual,2019,bioetanol combustion consumption by freight transport,0.67999176,TJ,N2O,0.6,kg/TJ,0.40799505599999997,kg +c7adfd14-8a56-3841-834c-06fe06243f98,SESCO,II.1.1,Corrientes,AR-W,annual,2019,bioetanol combustion consumption by freight transport,0.9177332399999999,TJ,CH4,10.0,kg/TJ,9.1773324,kg +3d530304-0ce1-3d42-af1e-89b3958b29d4,SESCO,II.1.1,Corrientes,AR-W,annual,2019,bioetanol combustion consumption by freight transport,0.9177332399999999,TJ,N2O,0.6,kg/TJ,0.5506399439999999,kg +76f65ae9-67d5-3565-bd21-8283e324b352,SESCO,II.1.1,Córdoba,AR-X,annual,2019,bioetanol combustion consumption by freight transport,3.2133445199999997,TJ,CH4,10.0,kg/TJ,32.1334452,kg +a5cc9e9a-6a7d-37f8-952f-84edf101ec11,SESCO,II.1.1,Córdoba,AR-X,annual,2019,bioetanol combustion consumption by freight transport,3.2133445199999997,TJ,N2O,0.6,kg/TJ,1.9280067119999997,kg +eccbc577-ca28-3073-8aff-9993c72c689f,SESCO,II.1.1,Entre Rios,AR-E,annual,2019,bioetanol combustion consumption by freight transport,2.14222968,TJ,CH4,10.0,kg/TJ,21.422296799999998,kg +f0c05773-5e45-3a07-8275-c958ac00e465,SESCO,II.1.1,Entre Rios,AR-E,annual,2019,bioetanol combustion consumption by freight transport,2.14222968,TJ,N2O,0.6,kg/TJ,1.2853378079999997,kg +cba91117-131a-3af2-8058-9e5506e03bb7,SESCO,II.1.1,Formosa,AR-P,annual,2019,bioetanol combustion consumption by freight transport,0.03323268,TJ,CH4,10.0,kg/TJ,0.33232680000000003,kg +e272e4c4-2d23-37d0-8785-a0728c4501f0,SESCO,II.1.1,Formosa,AR-P,annual,2019,bioetanol combustion consumption by freight transport,0.03323268,TJ,N2O,0.6,kg/TJ,0.019939608,kg +c7b77af9-32dc-3c20-9bef-03f902e0adc9,SESCO,II.1.1,Jujuy,AR-Y,annual,2019,bioetanol combustion consumption by freight transport,0.1405998,TJ,CH4,10.0,kg/TJ,1.4059979999999999,kg +10caac1f-2c39-30d3-8b26-eb7f2bf85b6d,SESCO,II.1.1,Jujuy,AR-Y,annual,2019,bioetanol combustion consumption by freight transport,0.1405998,TJ,N2O,0.6,kg/TJ,0.08435988,kg +4e80b970-e720-3c0b-b0a0-624c3dbe8511,SESCO,II.1.1,La Pampa,AR-L,annual,2019,bioetanol combustion consumption by freight transport,0.38856672,TJ,CH4,10.0,kg/TJ,3.8856672,kg +4cd09797-6d9d-37e5-9ffa-a4759a6a896d,SESCO,II.1.1,La Pampa,AR-L,annual,2019,bioetanol combustion consumption by freight transport,0.38856672,TJ,N2O,0.6,kg/TJ,0.23314003199999997,kg +699a600e-04b2-3699-9636-8dd65714324e,SESCO,II.1.1,La Rioja,AR-F,annual,2019,bioetanol combustion consumption by freight transport,0.23518511999999997,TJ,CH4,10.0,kg/TJ,2.3518511999999996,kg +c71efbce-6bcb-33b8-8c57-415f8156c159,SESCO,II.1.1,La Rioja,AR-F,annual,2019,bioetanol combustion consumption by freight transport,0.23518511999999997,TJ,N2O,0.6,kg/TJ,0.14111107199999998,kg +7cc84589-c903-35c1-ab72-e3059cf2cf72,SESCO,II.1.1,Mendoza,AR-M,annual,2019,bioetanol combustion consumption by freight transport,6.582627,TJ,CH4,10.0,kg/TJ,65.82627,kg +a5adb19e-e4c6-3ef3-9e2e-4cc5b4341ac4,SESCO,II.1.1,Mendoza,AR-M,annual,2019,bioetanol combustion consumption by freight transport,6.582627,TJ,N2O,0.6,kg/TJ,3.9495761999999996,kg +f66b97be-f17e-3b3d-9619-9ad13779c57d,SESCO,II.1.1,Misiones,AR-N,annual,2019,bioetanol combustion consumption by freight transport,0.6876608399999999,TJ,CH4,10.0,kg/TJ,6.876608399999999,kg +33147d48-f8b7-385e-a480-856a7bee6ced,SESCO,II.1.1,Misiones,AR-N,annual,2019,bioetanol combustion consumption by freight transport,0.6876608399999999,TJ,N2O,0.6,kg/TJ,0.412596504,kg +ece221e8-e0c3-3939-b3cd-788c3a8557ef,SESCO,II.1.1,Neuquén,AR-Q,annual,2019,bioetanol combustion consumption by freight transport,2.30583672,TJ,CH4,10.0,kg/TJ,23.0583672,kg +a45e7293-0df3-3c9e-b914-02de82af34cd,SESCO,II.1.1,Neuquén,AR-Q,annual,2019,bioetanol combustion consumption by freight transport,2.30583672,TJ,N2O,0.6,kg/TJ,1.3835020319999998,kg +7108e3fe-fdc6-3146-a897-080b4f71c5d9,SESCO,II.1.1,Rio Negro,AR-R,annual,2019,bioetanol combustion consumption by freight transport,4.47618636,TJ,CH4,10.0,kg/TJ,44.7618636,kg +340bb979-29f9-3329-8904-069a63516cf7,SESCO,II.1.1,Rio Negro,AR-R,annual,2019,bioetanol combustion consumption by freight transport,4.47618636,TJ,N2O,0.6,kg/TJ,2.685711816,kg +cf4d7acf-3640-3c24-98e5-49a4a8270368,SESCO,II.1.1,Salta,AR-A,annual,2019,bioetanol combustion consumption by freight transport,0.93818412,TJ,CH4,10.0,kg/TJ,9.3818412,kg +d466f460-f242-3475-be02-0325c5b4b401,SESCO,II.1.1,Salta,AR-A,annual,2019,bioetanol combustion consumption by freight transport,0.93818412,TJ,N2O,0.6,kg/TJ,0.562910472,kg +25585dd2-d3cb-394f-b494-664d181ac2c2,SESCO,II.1.1,San Juan,AR-J,annual,2019,bioetanol combustion consumption by freight transport,0.1405998,TJ,CH4,10.0,kg/TJ,1.4059979999999999,kg +f4312401-a716-32fd-ae40-d849eef664e5,SESCO,II.1.1,San Juan,AR-J,annual,2019,bioetanol combustion consumption by freight transport,0.1405998,TJ,N2O,0.6,kg/TJ,0.08435988,kg +53e1cf6e-2e2c-350c-b190-49a3caa9a9fd,SESCO,II.1.1,San Luis,AR-D,annual,2019,bioetanol combustion consumption by freight transport,0.36300311999999996,TJ,CH4,10.0,kg/TJ,3.6300311999999995,kg +08a8cb83-6ce4-3954-86b3-94e3ca473aa8,SESCO,II.1.1,San Luis,AR-D,annual,2019,bioetanol combustion consumption by freight transport,0.36300311999999996,TJ,N2O,0.6,kg/TJ,0.21780187199999998,kg +25469cf0-be20-33ff-858f-3a80e341cc5f,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2019,bioetanol combustion consumption by freight transport,0.15849432,TJ,CH4,10.0,kg/TJ,1.5849431999999999,kg +60219756-d236-37f0-bb3e-0bfc4bc8c935,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2019,bioetanol combustion consumption by freight transport,0.15849432,TJ,N2O,0.6,kg/TJ,0.095096592,kg +1417248f-fb45-331c-9708-3756b4166d57,SESCO,II.1.1,Santa Fe,AR-S,annual,2019,bioetanol combustion consumption by freight transport,6.500823479999999,TJ,CH4,10.0,kg/TJ,65.0082348,kg +1caebbe2-2422-3182-9957-75a632b7af64,SESCO,II.1.1,Santa Fe,AR-S,annual,2019,bioetanol combustion consumption by freight transport,6.500823479999999,TJ,N2O,0.6,kg/TJ,3.9004940879999994,kg +397cc93b-8708-3825-9d2e-dbd97de7ca05,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2019,bioetanol combustion consumption by freight transport,0.09202896,TJ,CH4,10.0,kg/TJ,0.9202896,kg +52fd4a7a-f4e3-34e4-82e6-1ad86a0f12bc,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2019,bioetanol combustion consumption by freight transport,0.09202896,TJ,N2O,0.6,kg/TJ,0.055217376000000006,kg +fcbe6316-bc9b-36dd-a042-076d800e69ec,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2019,bioetanol combustion consumption by freight transport,0.25307964,TJ,CH4,10.0,kg/TJ,2.5307964,kg +00e18380-65c7-3ede-8c50-6535eb4dfd9a,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2019,bioetanol combustion consumption by freight transport,0.25307964,TJ,N2O,0.6,kg/TJ,0.15184778399999999,kg +1106fa0e-bc2d-33cd-8345-ba266581ad8f,SESCO,II.1.1,Tucuman,AR-T,annual,2019,bioetanol combustion consumption by freight transport,0.56751192,TJ,CH4,10.0,kg/TJ,5.675119199999999,kg +d3aaab9c-d3ce-350d-9e70-576451eebb23,SESCO,II.1.1,Tucuman,AR-T,annual,2019,bioetanol combustion consumption by freight transport,0.56751192,TJ,N2O,0.6,kg/TJ,0.340507152,kg +4a8df0ef-f99d-36cf-950a-6ed02c2602ad,SESCO,II.5.1,Buenos Aires,AR-B,annual,2020,bioetanol combustion consumption by agriculture machines,0.1640331,TJ,CH4,10.0,kg/TJ,1.6403309999999998,kg +5b755399-69a7-33de-aecf-053ba7039fd6,SESCO,II.5.1,Buenos Aires,AR-B,annual,2020,bioetanol combustion consumption by agriculture machines,0.1640331,TJ,N2O,0.6,kg/TJ,0.09841985999999998,kg +d6390178-9e23-3e02-a8bc-eb14bb5b8382,SESCO,II.5.1,Santa Fe,AR-S,annual,2020,bioetanol combustion consumption by agriculture machines,0.07498656,TJ,CH4,10.0,kg/TJ,0.7498655999999999,kg +763de33e-7a53-3836-90fe-dfee75c3e95a,SESCO,II.5.1,Santa Fe,AR-S,annual,2020,bioetanol combustion consumption by agriculture machines,0.07498656,TJ,N2O,0.6,kg/TJ,0.044991935999999996,kg +db92347a-18fd-37bd-8785-2024dc2ddd4c,SESCO,II.5.1,Buenos Aires,AR-B,annual,2020,bioetanol combustion consumption by agriculture machines,0.03514995,TJ,CH4,10.0,kg/TJ,0.35149949999999996,kg +e508485d-4a89-3e59-854f-97aaf57fc28c,SESCO,II.5.1,Buenos Aires,AR-B,annual,2020,bioetanol combustion consumption by agriculture machines,0.03514995,TJ,N2O,0.6,kg/TJ,0.02108997,kg +391c9b27-ef37-3a9c-bd08-10ac6ce6d601,SESCO,II.1.1,Buenos Aires,AR-B,annual,2020,bioetanol combustion consumption by to the public,39.01410117,TJ,CH4,10.0,kg/TJ,390.14101170000004,kg +e84c602e-95ff-36be-8b0f-8c4f8754935a,SESCO,II.1.1,Buenos Aires,AR-B,annual,2020,bioetanol combustion consumption by to the public,39.01410117,TJ,N2O,0.6,kg/TJ,23.408460702000003,kg +282529c9-0342-3389-bd79-6ccbcdf144b3,SESCO,II.1.1,Capital Federal,AR-C,annual,2020,bioetanol combustion consumption by to the public,2.665069209,TJ,CH4,10.0,kg/TJ,26.65069209,kg +8f3d38aa-b3b9-3996-a21e-ea2257bdb646,SESCO,II.1.1,Capital Federal,AR-C,annual,2020,bioetanol combustion consumption by to the public,2.665069209,TJ,N2O,0.6,kg/TJ,1.5990415253999999,kg +a24a8a3a-e232-3383-9d5c-2cf15726b756,SESCO,II.1.1,Catamarca,AR-K,annual,2020,bioetanol combustion consumption by to the public,4.18284405,TJ,CH4,10.0,kg/TJ,41.8284405,kg +c53596c1-df78-3220-a380-a7b02d51bc11,SESCO,II.1.1,Catamarca,AR-K,annual,2020,bioetanol combustion consumption by to the public,4.18284405,TJ,N2O,0.6,kg/TJ,2.50970643,kg +21585c1e-d922-309f-8c18-6f7f970979cf,SESCO,II.1.1,Chaco,AR-H,annual,2020,bioetanol combustion consumption by to the public,2.66436621,TJ,CH4,10.0,kg/TJ,26.6436621,kg +e53ebe1a-7486-38a4-a408-454b5fe01b95,SESCO,II.1.1,Chaco,AR-H,annual,2020,bioetanol combustion consumption by to the public,2.66436621,TJ,N2O,0.6,kg/TJ,1.598619726,kg +469ddc8f-c0e4-353e-8efb-81f09f0156f8,SESCO,II.1.1,Corrientes,AR-W,annual,2020,bioetanol combustion consumption by to the public,1.12245507,TJ,CH4,10.0,kg/TJ,11.2245507,kg +36daca24-7770-3af0-8cbe-ac82bce761c9,SESCO,II.1.1,Corrientes,AR-W,annual,2020,bioetanol combustion consumption by to the public,1.12245507,TJ,N2O,0.6,kg/TJ,0.673473042,kg +001fc0e0-d12c-37b2-9bec-258ac6e9369b,SESCO,II.1.1,Córdoba,AR-X,annual,2020,bioetanol combustion consumption by to the public,16.674667614,TJ,CH4,10.0,kg/TJ,166.74667614,kg +57fa4434-2ba8-3199-9a6f-faf94f12d6b4,SESCO,II.1.1,Córdoba,AR-X,annual,2020,bioetanol combustion consumption by to the public,16.674667614,TJ,N2O,0.6,kg/TJ,10.0048005684,kg +d0f6a0e1-edaa-3469-9ab3-2a2cff5698b9,SESCO,II.1.1,Entre Rios,AR-E,annual,2020,bioetanol combustion consumption by to the public,5.116895388,TJ,CH4,10.0,kg/TJ,51.16895388,kg +6f881352-4725-3cd1-8db0-c1b304a34d00,SESCO,II.1.1,Entre Rios,AR-E,annual,2020,bioetanol combustion consumption by to the public,5.116895388,TJ,N2O,0.6,kg/TJ,3.0701372327999996,kg +b489ecce-f488-31a9-8048-0776c3c24a53,SESCO,II.1.1,Mendoza,AR-M,annual,2020,bioetanol combustion consumption by to the public,13.420485243,TJ,CH4,10.0,kg/TJ,134.20485243,kg +6784f4fa-5610-39cf-886b-7b328cd8007e,SESCO,II.1.1,Mendoza,AR-M,annual,2020,bioetanol combustion consumption by to the public,13.420485243,TJ,N2O,0.6,kg/TJ,8.0522911458,kg +166e2469-4919-384e-b176-82db3f33b865,SESCO,II.1.1,San Juan,AR-J,annual,2020,bioetanol combustion consumption by to the public,0.7034676659999999,TJ,CH4,10.0,kg/TJ,7.034676659999999,kg +9795346b-6534-36ae-af93-8c2b89984589,SESCO,II.1.1,San Juan,AR-J,annual,2020,bioetanol combustion consumption by to the public,0.7034676659999999,TJ,N2O,0.6,kg/TJ,0.42208059959999994,kg +81f958a5-1145-3dec-9b0c-7bfc9762e741,SESCO,II.1.1,San Luis,AR-D,annual,2020,bioetanol combustion consumption by to the public,3.3045639660000004,TJ,CH4,10.0,kg/TJ,33.045639660000006,kg +df720c0e-00aa-3c20-a736-b05cf54932c1,SESCO,II.1.1,San Luis,AR-D,annual,2020,bioetanol combustion consumption by to the public,3.3045639660000004,TJ,N2O,0.6,kg/TJ,1.9827383796000002,kg +e512adbf-bf3b-3ddf-a8ea-897a22b2b93b,SESCO,II.1.1,Santa Fe,AR-S,annual,2020,bioetanol combustion consumption by to the public,12.821061429,TJ,CH4,10.0,kg/TJ,128.21061429,kg +8b546e2e-2977-3ca6-8413-33a7a352a801,SESCO,II.1.1,Santa Fe,AR-S,annual,2020,bioetanol combustion consumption by to the public,12.821061429,TJ,N2O,0.6,kg/TJ,7.6926368574,kg +2277501d-f96b-3909-9ced-f8cf5ab42eb1,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2020,bioetanol combustion consumption by to the public,3.302454969,TJ,CH4,10.0,kg/TJ,33.02454969,kg +5f0b078c-a00f-3b1e-a3f6-b98dd6f57ea5,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2020,bioetanol combustion consumption by to the public,3.302454969,TJ,N2O,0.6,kg/TJ,1.9814729813999998,kg +9d3e94a6-1a68-34a5-8b3a-9b4d3db1bfc9,SESCO,II.1.1,Tucuman,AR-T,annual,2020,bioetanol combustion consumption by to the public,0.9068687099999999,TJ,CH4,10.0,kg/TJ,9.068687099999998,kg +cb7e739a-ca6d-3f9f-a2d9-8ad2c3ff2abc,SESCO,II.1.1,Tucuman,AR-T,annual,2020,bioetanol combustion consumption by to the public,0.9068687099999999,TJ,N2O,0.6,kg/TJ,0.5441212259999999,kg +09830777-65f0-356a-b250-dc409e90b2e5,SESCO,II.1.1,Buenos Aires,AR-B,annual,2020,bioetanol combustion consumption by to the public,3.4268857919999998,TJ,CH4,10.0,kg/TJ,34.268857919999995,kg +808b58ab-eb55-3f77-8a10-2b1b82914fe8,SESCO,II.1.1,Buenos Aires,AR-B,annual,2020,bioetanol combustion consumption by to the public,3.4268857919999998,TJ,N2O,0.6,kg/TJ,2.0561314752,kg +2b895ee7-6876-347b-bfb2-5dc552a2e7b6,SESCO,II.1.1,Capital Federal,AR-C,annual,2020,bioetanol combustion consumption by to the public,0.42203373299999997,TJ,CH4,10.0,kg/TJ,4.2203373299999996,kg +747035f4-478e-3ad8-a3d1-cf24e02b2aeb,SESCO,II.1.1,Capital Federal,AR-C,annual,2020,bioetanol combustion consumption by to the public,0.42203373299999997,TJ,N2O,0.6,kg/TJ,0.25322023979999997,kg +aab22f16-93c7-3492-a679-a91f53e2bf47,SESCO,II.1.1,Catamarca,AR-K,annual,2020,bioetanol combustion consumption by to the public,0.45226268999999997,TJ,CH4,10.0,kg/TJ,4.5226269,kg +0a6b6617-cd19-33db-9dae-f722a1601cf2,SESCO,II.1.1,Catamarca,AR-K,annual,2020,bioetanol combustion consumption by to the public,0.45226268999999997,TJ,N2O,0.6,kg/TJ,0.27135761399999997,kg +9ae8e544-4eed-3485-a9b0-16ffc80f8c5b,SESCO,II.1.1,Chaco,AR-H,annual,2020,bioetanol combustion consumption by to the public,0.13356981,TJ,CH4,10.0,kg/TJ,1.3356981,kg +f8260cd4-a117-3bb6-8ca4-74e50308b117,SESCO,II.1.1,Chaco,AR-H,annual,2020,bioetanol combustion consumption by to the public,0.13356981,TJ,N2O,0.6,kg/TJ,0.08014188600000001,kg +0f470493-4341-36fb-9486-a6fba9b649bb,SESCO,II.1.1,Corrientes,AR-W,annual,2020,bioetanol combustion consumption by to the public,0.07967322,TJ,CH4,10.0,kg/TJ,0.7967322,kg +80bbf75e-5698-3bee-8d16-0a8a2d52a4ff,SESCO,II.1.1,Corrientes,AR-W,annual,2020,bioetanol combustion consumption by to the public,0.07967322,TJ,N2O,0.6,kg/TJ,0.047803932,kg +0c1b0604-4e21-3be4-9f78-917a7963009a,SESCO,II.1.1,Córdoba,AR-X,annual,2020,bioetanol combustion consumption by to the public,1.963944873,TJ,CH4,10.0,kg/TJ,19.639448729999998,kg +05457a10-63dc-3951-9eb9-7442a1bf17f4,SESCO,II.1.1,Córdoba,AR-X,annual,2020,bioetanol combustion consumption by to the public,1.963944873,TJ,N2O,0.6,kg/TJ,1.1783669237999999,kg +bdeeb84a-6dab-3534-bcc0-73785c829e4a,SESCO,II.1.1,Entre Rios,AR-E,annual,2020,bioetanol combustion consumption by to the public,0.45226268999999997,TJ,CH4,10.0,kg/TJ,4.5226269,kg +4528adb8-c321-3caa-825d-6283348d0545,SESCO,II.1.1,Entre Rios,AR-E,annual,2020,bioetanol combustion consumption by to the public,0.45226268999999997,TJ,N2O,0.6,kg/TJ,0.27135761399999997,kg +05cddf65-7bad-3bb6-9cc8-eebe114b252b,SESCO,II.1.1,Mendoza,AR-M,annual,2020,bioetanol combustion consumption by to the public,2.486976129,TJ,CH4,10.0,kg/TJ,24.86976129,kg +ad0ff806-9b93-3723-a513-2ee5289df1d2,SESCO,II.1.1,Mendoza,AR-M,annual,2020,bioetanol combustion consumption by to the public,2.486976129,TJ,N2O,0.6,kg/TJ,1.4921856774,kg +077c3fe8-3113-3e69-8281-cb9e4365488b,SESCO,II.1.1,San Juan,AR-J,annual,2020,bioetanol combustion consumption by to the public,0.124430823,TJ,CH4,10.0,kg/TJ,1.24430823,kg +a3635898-32ba-31c9-ac02-4ea4c287d471,SESCO,II.1.1,San Juan,AR-J,annual,2020,bioetanol combustion consumption by to the public,0.124430823,TJ,N2O,0.6,kg/TJ,0.07465849379999999,kg +59963a40-1fb8-3ce6-bdec-625da53d22b0,SESCO,II.1.1,San Luis,AR-D,annual,2020,bioetanol combustion consumption by to the public,0.12419648999999999,TJ,CH4,10.0,kg/TJ,1.2419649,kg +76bb87f6-8c33-31f0-978b-e7ab9c751952,SESCO,II.1.1,San Luis,AR-D,annual,2020,bioetanol combustion consumption by to the public,0.12419648999999999,TJ,N2O,0.6,kg/TJ,0.07451789399999999,kg +51a69995-6acb-36f0-8a7d-99d3d0111ace,SESCO,II.1.1,Santa Fe,AR-S,annual,2020,bioetanol combustion consumption by to the public,2.313101043,TJ,CH4,10.0,kg/TJ,23.13101043,kg +43eca946-5d03-3a52-bf9a-63332a2af233,SESCO,II.1.1,Santa Fe,AR-S,annual,2020,bioetanol combustion consumption by to the public,2.313101043,TJ,N2O,0.6,kg/TJ,1.3878606258,kg +9bee29fd-d838-33db-9397-b48bdf498706,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2020,bioetanol combustion consumption by to the public,0.35642049299999995,TJ,CH4,10.0,kg/TJ,3.5642049299999994,kg +66aebfd3-2d72-39e1-b354-814b09f74661,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2020,bioetanol combustion consumption by to the public,0.35642049299999995,TJ,N2O,0.6,kg/TJ,0.21385229579999995,kg +30e880e7-f04c-379f-824a-60e83694e7fd,SESCO,II.1.1,Tucuman,AR-T,annual,2020,bioetanol combustion consumption by to the public,0.03280662,TJ,CH4,10.0,kg/TJ,0.32806620000000003,kg +41971ff5-987d-3627-9188-56a9add38eef,SESCO,II.1.1,Tucuman,AR-T,annual,2020,bioetanol combustion consumption by to the public,0.03280662,TJ,N2O,0.6,kg/TJ,0.019683972,kg +9d2de334-b6b9-3634-9225-94b215a8a116,SESCO,II.5.1,Chaco,AR-H,annual,2020,bioetanol combustion consumption by agriculture machines,1.04512518,TJ,CH4,10.0,kg/TJ,10.451251800000001,kg +60bfa357-ef41-3d47-a164-5f7b189a7ddd,SESCO,II.5.1,Chaco,AR-H,annual,2020,bioetanol combustion consumption by agriculture machines,1.04512518,TJ,N2O,0.6,kg/TJ,0.627075108,kg +79262d5f-b366-35d3-a7d3-c5a649f28ddd,SESCO,II.5.1,Córdoba,AR-X,annual,2020,bioetanol combustion consumption by agriculture machines,0.73346229,TJ,CH4,10.0,kg/TJ,7.334622899999999,kg +f5682bf7-13d8-3d61-8ace-3c376cb22af8,SESCO,II.5.1,Córdoba,AR-X,annual,2020,bioetanol combustion consumption by agriculture machines,0.73346229,TJ,N2O,0.6,kg/TJ,0.44007737399999997,kg +1e2a7450-bc01-3224-95d6-3a92777ca88e,SESCO,II.5.1,Mendoza,AR-M,annual,2020,bioetanol combustion consumption by agriculture machines,0.24370631999999998,TJ,CH4,10.0,kg/TJ,2.4370632,kg +24c0b394-c498-3c2f-ae87-f82542fdfc1c,SESCO,II.5.1,Mendoza,AR-M,annual,2020,bioetanol combustion consumption by agriculture machines,0.24370631999999998,TJ,N2O,0.6,kg/TJ,0.146223792,kg +1d8fbb5b-a79d-3d89-9143-e04a200d18f9,SESCO,II.5.1,Santa Fe,AR-S,annual,2020,bioetanol combustion consumption by agriculture machines,0.11013650999999999,TJ,CH4,10.0,kg/TJ,1.1013651,kg +f40575ea-f52e-3b6b-b4c9-6f495182a670,SESCO,II.5.1,Santa Fe,AR-S,annual,2020,bioetanol combustion consumption by agriculture machines,0.11013650999999999,TJ,N2O,0.6,kg/TJ,0.066081906,kg +ec3e0beb-793c-3d1f-b991-44a9c8a40c36,SESCO,II.5.1,Buenos Aires,AR-B,annual,2020,bioetanol combustion consumption by agriculture machines,0.01405998,TJ,CH4,10.0,kg/TJ,0.1405998,kg +8bc7d7d8-a370-3705-83b5-1b284787c2e6,SESCO,II.5.1,Buenos Aires,AR-B,annual,2020,bioetanol combustion consumption by agriculture machines,0.01405998,TJ,N2O,0.6,kg/TJ,0.008435988,kg +eb1ee81b-606d-34c6-90a9-dc8d361e269a,SESCO,II.5.1,Chaco,AR-H,annual,2020,bioetanol combustion consumption by agriculture machines,0.07498656,TJ,CH4,10.0,kg/TJ,0.7498655999999999,kg +b765ae4a-5659-330b-a1d0-a116a81cf943,SESCO,II.5.1,Chaco,AR-H,annual,2020,bioetanol combustion consumption by agriculture machines,0.07498656,TJ,N2O,0.6,kg/TJ,0.044991935999999996,kg +672fafad-ca74-305e-8e75-c815bc50f186,SESCO,II.5.1,Córdoba,AR-X,annual,2020,bioetanol combustion consumption by agriculture machines,0.058583249999999996,TJ,CH4,10.0,kg/TJ,0.5858325,kg +d7817a33-9500-393d-94a6-e5bf91f3e1e5,SESCO,II.5.1,Córdoba,AR-X,annual,2020,bioetanol combustion consumption by agriculture machines,0.058583249999999996,TJ,N2O,0.6,kg/TJ,0.03514995,kg +01b52399-675a-38e3-b688-1c7341d0523d,SESCO,II.5.1,Mendoza,AR-M,annual,2020,bioetanol combustion consumption by agriculture machines,0.00937332,TJ,CH4,10.0,kg/TJ,0.09373319999999999,kg +3b2e44f3-2af7-3091-8a8b-1f2ecc96aa7e,SESCO,II.5.1,Mendoza,AR-M,annual,2020,bioetanol combustion consumption by agriculture machines,0.00937332,TJ,N2O,0.6,kg/TJ,0.0056239919999999995,kg +4917f1dc-727c-3f89-92e7-69eae06656e5,SESCO,II.1.1,Buenos Aires,AR-B,annual,2020,bioetanol combustion consumption by to the public,57.163192020000004,TJ,CH4,10.0,kg/TJ,571.6319202000001,kg +10fb138a-06e4-390a-8b6c-da0b148ec13f,SESCO,II.1.1,Buenos Aires,AR-B,annual,2020,bioetanol combustion consumption by to the public,57.163192020000004,TJ,N2O,0.6,kg/TJ,34.297915212,kg +733f1ab1-3fd2-328a-8c68-b98c5023da9f,SESCO,II.1.1,Capital Federal,AR-C,annual,2020,bioetanol combustion consumption by to the public,10.62934488,TJ,CH4,10.0,kg/TJ,106.2934488,kg +09e0fe0b-8d78-3da7-86a3-5036e82f138a,SESCO,II.1.1,Capital Federal,AR-C,annual,2020,bioetanol combustion consumption by to the public,10.62934488,TJ,N2O,0.6,kg/TJ,6.377606928,kg +c4ce3461-3a66-3ba1-ae63-fc17766a1408,SESCO,II.1.1,Catamarca,AR-K,annual,2020,bioetanol combustion consumption by to the public,6.195764519999999,TJ,CH4,10.0,kg/TJ,61.95764519999999,kg +cc30bbd1-eafd-3dba-bc4c-985cbfe9fb3e,SESCO,II.1.1,Catamarca,AR-K,annual,2020,bioetanol combustion consumption by to the public,6.195764519999999,TJ,N2O,0.6,kg/TJ,3.717458711999999,kg +2c190f8b-0d6a-3bff-8547-cd93300c6a96,SESCO,II.1.1,Chaco,AR-H,annual,2020,bioetanol combustion consumption by to the public,6.62928057,TJ,CH4,10.0,kg/TJ,66.2928057,kg +10b03301-9244-3e3a-b708-0ff9e2cc69a9,SESCO,II.1.1,Chaco,AR-H,annual,2020,bioetanol combustion consumption by to the public,6.62928057,TJ,N2O,0.6,kg/TJ,3.9775683419999996,kg +0b7ee494-a8ec-3a17-84aa-6b2525444559,SESCO,II.1.1,Corrientes,AR-W,annual,2020,bioetanol combustion consumption by to the public,7.31821959,TJ,CH4,10.0,kg/TJ,73.1821959,kg +9adcd444-de04-38e2-8ce6-9770e2068550,SESCO,II.1.1,Corrientes,AR-W,annual,2020,bioetanol combustion consumption by to the public,7.31821959,TJ,N2O,0.6,kg/TJ,4.3909317539999995,kg +598d1855-30be-3545-a58c-f7f8e99ba6ae,SESCO,II.1.1,Córdoba,AR-X,annual,2020,bioetanol combustion consumption by to the public,26.76551526,TJ,CH4,10.0,kg/TJ,267.6551526,kg +bf0fe247-6cb4-3dd7-8d8d-a7c4808db61c,SESCO,II.1.1,Córdoba,AR-X,annual,2020,bioetanol combustion consumption by to the public,26.76551526,TJ,N2O,0.6,kg/TJ,16.059309156,kg +629c61de-f2c8-36a0-97b9-da263e431ca5,SESCO,II.1.1,Entre Rios,AR-E,annual,2020,bioetanol combustion consumption by to the public,5.7575618099999994,TJ,CH4,10.0,kg/TJ,57.57561809999999,kg +956412b4-5902-37b3-bbb2-925cf516849f,SESCO,II.1.1,Entre Rios,AR-E,annual,2020,bioetanol combustion consumption by to the public,5.7575618099999994,TJ,N2O,0.6,kg/TJ,3.4545370859999998,kg +4c87b61b-99fe-3fb8-8b5d-3325034fe66a,SESCO,II.1.1,Formosa,AR-P,annual,2020,bioetanol combustion consumption by to the public,5.29123914,TJ,CH4,10.0,kg/TJ,52.912391400000004,kg +e039bdf5-0bc3-36f8-bf66-aa7487b0f1df,SESCO,II.1.1,Formosa,AR-P,annual,2020,bioetanol combustion consumption by to the public,5.29123914,TJ,N2O,0.6,kg/TJ,3.174743484,kg +f2ba2f30-22a5-3dc4-8a9e-caf247539dc9,SESCO,II.1.1,La Rioja,AR-F,annual,2020,bioetanol combustion consumption by to the public,2.99477574,TJ,CH4,10.0,kg/TJ,29.9477574,kg +f4f086f1-e9c8-3d73-86a6-4b7245061009,SESCO,II.1.1,La Rioja,AR-F,annual,2020,bioetanol combustion consumption by to the public,2.99477574,TJ,N2O,0.6,kg/TJ,1.796865444,kg +f84b8033-f7ca-3823-8f99-6846c057e7c2,SESCO,II.1.1,Mendoza,AR-M,annual,2020,bioetanol combustion consumption by to the public,21.09699999,TJ,CH4,10.0,kg/TJ,210.9699999,kg +79ec6526-d791-3985-8967-456938d9753e,SESCO,II.1.1,Mendoza,AR-M,annual,2020,bioetanol combustion consumption by to the public,21.09699999,TJ,N2O,0.6,kg/TJ,12.658199994,kg +062b5ccb-51d0-3649-b10b-a2621218562c,SESCO,II.1.1,Misiones,AR-N,annual,2020,bioetanol combustion consumption by to the public,6.24028779,TJ,CH4,10.0,kg/TJ,62.4028779,kg +fd6500fa-eaf5-339a-9ffe-966441146ea3,SESCO,II.1.1,Misiones,AR-N,annual,2020,bioetanol combustion consumption by to the public,6.24028779,TJ,N2O,0.6,kg/TJ,3.7441726739999996,kg +d3912e65-1ea2-326e-8fa6-3121274f6f81,SESCO,II.1.1,Salta,AR-A,annual,2020,bioetanol combustion consumption by to the public,0.01405998,TJ,CH4,10.0,kg/TJ,0.1405998,kg +926a967d-b6de-32b1-ab0e-22dd73accc76,SESCO,II.1.1,Salta,AR-A,annual,2020,bioetanol combustion consumption by to the public,0.01405998,TJ,N2O,0.6,kg/TJ,0.008435988,kg +82ed8e77-40eb-3eed-a19b-05c1ea0068b5,SESCO,II.1.1,San Juan,AR-J,annual,2020,bioetanol combustion consumption by to the public,5.541975449999999,TJ,CH4,10.0,kg/TJ,55.41975449999999,kg +a4f17ca7-ecf7-3a97-b614-9525d29448f2,SESCO,II.1.1,San Juan,AR-J,annual,2020,bioetanol combustion consumption by to the public,5.541975449999999,TJ,N2O,0.6,kg/TJ,3.325185269999999,kg +ab779458-5933-3f05-9b80-e3a88d63b314,SESCO,II.1.1,San Luis,AR-D,annual,2020,bioetanol combustion consumption by to the public,2.6034396299999996,TJ,CH4,10.0,kg/TJ,26.034396299999997,kg +545a83df-8f36-313d-9456-dab88816838c,SESCO,II.1.1,San Luis,AR-D,annual,2020,bioetanol combustion consumption by to the public,2.6034396299999996,TJ,N2O,0.6,kg/TJ,1.5620637779999997,kg +fd05b415-dfb1-3737-aa3f-d5d175ef56e6,SESCO,II.1.1,Santa Fe,AR-S,annual,2020,bioetanol combustion consumption by to the public,18.41623047,TJ,CH4,10.0,kg/TJ,184.1623047,kg +795d6476-f6bc-327d-9b93-1a55aa940676,SESCO,II.1.1,Santa Fe,AR-S,annual,2020,bioetanol combustion consumption by to the public,18.41623047,TJ,N2O,0.6,kg/TJ,11.049738281999998,kg +361e69b5-3601-3947-a5a1-f338de5bf2ef,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2020,bioetanol combustion consumption by to the public,4.99597956,TJ,CH4,10.0,kg/TJ,49.95979560000001,kg +6fead9c3-d00f-3136-8a3c-ea707c0a1b31,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2020,bioetanol combustion consumption by to the public,4.99597956,TJ,N2O,0.6,kg/TJ,2.9975877360000003,kg +124370f4-cf8a-32f6-b6b7-03fcfec0e4a1,SESCO,II.1.1,Tucuman,AR-T,annual,2020,bioetanol combustion consumption by to the public,2.09493702,TJ,CH4,10.0,kg/TJ,20.9493702,kg +b055c878-0c37-36c1-bf1a-66f331b6ebc1,SESCO,II.1.1,Tucuman,AR-T,annual,2020,bioetanol combustion consumption by to the public,2.09493702,TJ,N2O,0.6,kg/TJ,1.2569622120000001,kg +39f36542-0ddc-3e90-8817-22a4b310c301,SESCO,II.1.1,Buenos Aires,AR-B,annual,2020,bioetanol combustion consumption by to the public,6.073911359999999,TJ,CH4,10.0,kg/TJ,60.739113599999996,kg +fe66e79b-37a9-32ec-8ec4-ca927a1c18c2,SESCO,II.1.1,Buenos Aires,AR-B,annual,2020,bioetanol combustion consumption by to the public,6.073911359999999,TJ,N2O,0.6,kg/TJ,3.6443468159999997,kg +79651a76-b591-31ff-87c7-3a1b7f1c27bd,SESCO,II.1.1,Capital Federal,AR-C,annual,2020,bioetanol combustion consumption by to the public,1.43880462,TJ,CH4,10.0,kg/TJ,14.3880462,kg +0ea8d085-44d9-30d7-bd1a-8d2b6b98e5da,SESCO,II.1.1,Capital Federal,AR-C,annual,2020,bioetanol combustion consumption by to the public,1.43880462,TJ,N2O,0.6,kg/TJ,0.8632827719999999,kg +a3aadf89-228d-395c-b2d0-aa04027bad5b,SESCO,II.1.1,Catamarca,AR-K,annual,2020,bioetanol combustion consumption by to the public,0.51787593,TJ,CH4,10.0,kg/TJ,5.178759299999999,kg +15ed988c-6aae-39bd-95cf-3fdc72e1e616,SESCO,II.1.1,Catamarca,AR-K,annual,2020,bioetanol combustion consumption by to the public,0.51787593,TJ,N2O,0.6,kg/TJ,0.31072555799999996,kg +c4b09d6c-ccb0-3b5f-ab0e-37537748427d,SESCO,II.1.1,Chaco,AR-H,annual,2020,bioetanol combustion consumption by to the public,0.31869288,TJ,CH4,10.0,kg/TJ,3.1869288,kg +c4ba33de-80ee-3a60-8491-115f066d99da,SESCO,II.1.1,Chaco,AR-H,annual,2020,bioetanol combustion consumption by to the public,0.31869288,TJ,N2O,0.6,kg/TJ,0.191215728,kg +2338a539-c361-33d0-85cd-441e840d42f6,SESCO,II.1.1,Corrientes,AR-W,annual,2020,bioetanol combustion consumption by to the public,0.3046329,TJ,CH4,10.0,kg/TJ,3.046329,kg +dff352d5-6c39-3ff5-8d94-4a4c9107b33b,SESCO,II.1.1,Corrientes,AR-W,annual,2020,bioetanol combustion consumption by to the public,0.3046329,TJ,N2O,0.6,kg/TJ,0.18277974,kg +9b8748bf-4317-310c-9a09-e9c9e8e5bab2,SESCO,II.1.1,Córdoba,AR-X,annual,2020,bioetanol combustion consumption by to the public,3.5852949,TJ,CH4,10.0,kg/TJ,35.852949,kg +362b88ec-a2c6-3afd-afa5-ac198e9e53b6,SESCO,II.1.1,Córdoba,AR-X,annual,2020,bioetanol combustion consumption by to the public,3.5852949,TJ,N2O,0.6,kg/TJ,2.15117694,kg +e2ffadca-fb33-3646-a330-5ae3efe5273a,SESCO,II.1.1,Entre Rios,AR-E,annual,2020,bioetanol combustion consumption by to the public,0.5131892699999999,TJ,CH4,10.0,kg/TJ,5.131892699999999,kg +267c132f-40e6-3190-aa9e-a7f9c39b3b0f,SESCO,II.1.1,Entre Rios,AR-E,annual,2020,bioetanol combustion consumption by to the public,0.5131892699999999,TJ,N2O,0.6,kg/TJ,0.3079135619999999,kg +3621f02e-8ccf-3b7e-99f1-9adaf158403a,SESCO,II.1.1,Formosa,AR-P,annual,2020,bioetanol combustion consumption by to the public,0.42882939,TJ,CH4,10.0,kg/TJ,4.288293899999999,kg +07cdfa45-fbc2-373c-8b60-a594d1b3e271,SESCO,II.1.1,Formosa,AR-P,annual,2020,bioetanol combustion consumption by to the public,0.42882939,TJ,N2O,0.6,kg/TJ,0.257297634,kg +994bc84c-9629-322d-a877-4ce23cf8c272,SESCO,II.1.1,La Rioja,AR-F,annual,2020,bioetanol combustion consumption by to the public,0.36321615,TJ,CH4,10.0,kg/TJ,3.6321615,kg +11509b5a-b515-3e77-be84-e2ad2b22778c,SESCO,II.1.1,La Rioja,AR-F,annual,2020,bioetanol combustion consumption by to the public,0.36321615,TJ,N2O,0.6,kg/TJ,0.21792969,kg +56a247c1-ddbe-30c8-b9af-9f305259fbb6,SESCO,II.1.1,Mendoza,AR-M,annual,2020,bioetanol combustion consumption by to the public,1.30992147,TJ,CH4,10.0,kg/TJ,13.0992147,kg +5557ede1-2aaf-312c-bc29-400fdbfa6311,SESCO,II.1.1,Mendoza,AR-M,annual,2020,bioetanol combustion consumption by to the public,1.30992147,TJ,N2O,0.6,kg/TJ,0.7859528819999999,kg +e1924f28-68ab-312c-a9c3-bb6ed0aa9d20,SESCO,II.1.1,Misiones,AR-N,annual,2020,bioetanol combustion consumption by to the public,0.33040953,TJ,CH4,10.0,kg/TJ,3.3040953,kg +8d420e16-3a8a-3941-a460-f74f73190629,SESCO,II.1.1,Misiones,AR-N,annual,2020,bioetanol combustion consumption by to the public,0.33040953,TJ,N2O,0.6,kg/TJ,0.198245718,kg +52d23ce2-2c5e-3646-8d53-4d7e4aef97bf,SESCO,II.1.1,San Juan,AR-J,annual,2020,bioetanol combustion consumption by to the public,0.62566911,TJ,CH4,10.0,kg/TJ,6.2566911,kg +994c963a-d307-37db-8dac-a1d5edfff529,SESCO,II.1.1,San Juan,AR-J,annual,2020,bioetanol combustion consumption by to the public,0.62566911,TJ,N2O,0.6,kg/TJ,0.375401466,kg +4cac45d8-a853-3a86-8531-fef25eea6ffc,SESCO,II.1.1,San Luis,AR-D,annual,2020,bioetanol combustion consumption by to the public,0.24136299,TJ,CH4,10.0,kg/TJ,2.4136299,kg +a9e17ea9-2999-3873-8d00-0c3e37f1d01b,SESCO,II.1.1,San Luis,AR-D,annual,2020,bioetanol combustion consumption by to the public,0.24136299,TJ,N2O,0.6,kg/TJ,0.144817794,kg +edb57149-1350-3baa-aa06-d8cf34b2fdf7,SESCO,II.1.1,Santa Fe,AR-S,annual,2020,bioetanol combustion consumption by to the public,2.2683434399999998,TJ,CH4,10.0,kg/TJ,22.683434399999996,kg +418f8a5f-2cf3-3e4b-826e-e9b8c1307d35,SESCO,II.1.1,Santa Fe,AR-S,annual,2020,bioetanol combustion consumption by to the public,2.2683434399999998,TJ,N2O,0.6,kg/TJ,1.361006064,kg +d4c5cd0f-5676-3c4a-a72d-62c6e361e2de,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2020,bioetanol combustion consumption by to the public,0.49444263,TJ,CH4,10.0,kg/TJ,4.9444263,kg +ab361b0f-1d82-3c04-bf60-f7b8f8d58f2f,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2020,bioetanol combustion consumption by to the public,0.49444263,TJ,N2O,0.6,kg/TJ,0.296665578,kg +790f1461-6ace-3b28-abab-e64e3b493dc9,SESCO,II.1.1,Tucuman,AR-T,annual,2020,bioetanol combustion consumption by to the public,0.22261634999999996,TJ,CH4,10.0,kg/TJ,2.2261634999999997,kg +ae14da49-dd17-3790-96bb-c00fdd3a990b,SESCO,II.1.1,Tucuman,AR-T,annual,2020,bioetanol combustion consumption by to the public,0.22261634999999996,TJ,N2O,0.6,kg/TJ,0.13356980999999998,kg +5693d78c-b3bd-359d-b92b-ee8230adc2cb,SESCO,I.3.1,Buenos Aires,AR-B,annual,2020,bioetanol combustion consumption by petrochemical industries,0.0937332,TJ,CH4,10.0,kg/TJ,0.937332,kg +7cd12e4a-123a-3aa4-abbf-37d0ecfcc205,SESCO,I.3.1,Buenos Aires,AR-B,annual,2020,bioetanol combustion consumption by petrochemical industries,0.0937332,TJ,N2O,0.6,kg/TJ,0.05623992,kg +f162beea-1495-3080-9d49-323c67fedd23,SESCO,II.5.1,Santa Fe,AR-S,annual,2020,bioetanol combustion consumption by agriculture machines,2.39488326,TJ,CH4,10.0,kg/TJ,23.9488326,kg +9141945d-14d7-3906-a4a9-0a082d638e5b,SESCO,II.5.1,Santa Fe,AR-S,annual,2020,bioetanol combustion consumption by agriculture machines,2.39488326,TJ,N2O,0.6,kg/TJ,1.436929956,kg +5e76ab60-83bb-30be-892a-855dfffe0f4e,SESCO,II.5.1,Santa Fe,AR-S,annual,2020,bioetanol combustion consumption by agriculture machines,0.45694935,TJ,CH4,10.0,kg/TJ,4.5694935,kg +0c6a6a37-152d-3181-ad23-9c683ef7c97b,SESCO,II.5.1,Santa Fe,AR-S,annual,2020,bioetanol combustion consumption by agriculture machines,0.45694935,TJ,N2O,0.6,kg/TJ,0.27416960999999995,kg +3976cde6-b3b2-3b13-9e26-1faa1c51660c,SESCO,II.1.1,Buenos Aires,AR-B,annual,2020,bioetanol combustion consumption by to the public,614.89447866,TJ,CH4,10.0,kg/TJ,6148.9447866,kg +70b7afaf-88a5-30e9-909c-b5e302cdcd5c,SESCO,II.1.1,Buenos Aires,AR-B,annual,2020,bioetanol combustion consumption by to the public,614.89447866,TJ,N2O,0.6,kg/TJ,368.936687196,kg +04085506-012e-3716-b951-967ddab9e81d,SESCO,II.1.1,Capital Federal,AR-C,annual,2020,bioetanol combustion consumption by to the public,144.20384154,TJ,CH4,10.0,kg/TJ,1442.0384154,kg +131ceefc-4095-39a0-94ca-c09465a09c92,SESCO,II.1.1,Capital Federal,AR-C,annual,2020,bioetanol combustion consumption by to the public,144.20384154,TJ,N2O,0.6,kg/TJ,86.52230492400001,kg +4eb60c8c-c1a8-31aa-b092-5c8ad3c4cae9,SESCO,II.1.1,Catamarca,AR-K,annual,2020,bioetanol combustion consumption by to the public,22.92011073,TJ,CH4,10.0,kg/TJ,229.20110730000002,kg +0207cb5c-a199-3629-892a-056d8bdcc451,SESCO,II.1.1,Catamarca,AR-K,annual,2020,bioetanol combustion consumption by to the public,22.92011073,TJ,N2O,0.6,kg/TJ,13.752066438,kg +2e7a84e1-e09f-393c-a8fb-c73b34be26ee,SESCO,II.1.1,Chaco,AR-H,annual,2020,bioetanol combustion consumption by to the public,34.08373485,TJ,CH4,10.0,kg/TJ,340.83734849999996,kg +790b5a2c-f921-3e25-958f-a7091f9e188d,SESCO,II.1.1,Chaco,AR-H,annual,2020,bioetanol combustion consumption by to the public,34.08373485,TJ,N2O,0.6,kg/TJ,20.450240909999998,kg +16213fc0-676b-364f-b10d-1dc1a570aebc,SESCO,II.1.1,Chubut,AR-U,annual,2020,bioetanol combustion consumption by to the public,88.03422144000001,TJ,CH4,10.0,kg/TJ,880.3422144000001,kg +0ae0fcf4-76e7-3436-9619-86f1ae4cf37e,SESCO,II.1.1,Chubut,AR-U,annual,2020,bioetanol combustion consumption by to the public,88.03422144000001,TJ,N2O,0.6,kg/TJ,52.82053286400001,kg +87017ed7-428c-3c5d-9a74-d9c7101a75f7,SESCO,II.1.1,Corrientes,AR-W,annual,2020,bioetanol combustion consumption by to the public,43.26724512,TJ,CH4,10.0,kg/TJ,432.67245119999995,kg +eb1d0bd1-b5ae-3e90-8c27-53b0c1688a45,SESCO,II.1.1,Corrientes,AR-W,annual,2020,bioetanol combustion consumption by to the public,43.26724512,TJ,N2O,0.6,kg/TJ,25.960347071999998,kg +80eaecab-4322-36b3-99f3-270f3343e819,SESCO,II.1.1,Córdoba,AR-X,annual,2020,bioetanol combustion consumption by to the public,151.17759162,TJ,CH4,10.0,kg/TJ,1511.7759161999998,kg +478ffc0f-8000-312e-a0a6-c9946b571b41,SESCO,II.1.1,Córdoba,AR-X,annual,2020,bioetanol combustion consumption by to the public,151.17759162,TJ,N2O,0.6,kg/TJ,90.70655497199999,kg +318d3b99-0a61-31d5-b77c-44f17cfb12e5,SESCO,II.1.1,Entre Rios,AR-E,annual,2020,bioetanol combustion consumption by to the public,62.079498359999995,TJ,CH4,10.0,kg/TJ,620.7949835999999,kg +ffb30c27-e3af-33ae-a7bf-b32e7f7fac6e,SESCO,II.1.1,Entre Rios,AR-E,annual,2020,bioetanol combustion consumption by to the public,62.079498359999995,TJ,N2O,0.6,kg/TJ,37.247699016,kg +0a95b3d7-2fe0-306c-9130-657bcf1a99a1,SESCO,II.1.1,Formosa,AR-P,annual,2020,bioetanol combustion consumption by to the public,42.42833298,TJ,CH4,10.0,kg/TJ,424.2833298,kg +1f5333ff-e330-3905-afd3-499afc683857,SESCO,II.1.1,Formosa,AR-P,annual,2020,bioetanol combustion consumption by to the public,42.42833298,TJ,N2O,0.6,kg/TJ,25.456999788,kg +fdd88d4e-21db-31b0-9e88-cadd42bb46a3,SESCO,II.1.1,Jujuy,AR-Y,annual,2020,bioetanol combustion consumption by to the public,14.4583461,TJ,CH4,10.0,kg/TJ,144.583461,kg +a0db017f-f6c9-3d40-b484-2470bbe3665e,SESCO,II.1.1,Jujuy,AR-Y,annual,2020,bioetanol combustion consumption by to the public,14.4583461,TJ,N2O,0.6,kg/TJ,8.67500766,kg +2641e243-643c-38f5-a4aa-16dbc49c9296,SESCO,II.1.1,La Pampa,AR-L,annual,2020,bioetanol combustion consumption by to the public,10.88945451,TJ,CH4,10.0,kg/TJ,108.8945451,kg +092f2136-b84e-3db2-bf31-a0f08f473b76,SESCO,II.1.1,La Pampa,AR-L,annual,2020,bioetanol combustion consumption by to the public,10.88945451,TJ,N2O,0.6,kg/TJ,6.533672706,kg +cdf9fa94-1af8-30f2-9529-2d87eb83c776,SESCO,II.1.1,La Rioja,AR-F,annual,2020,bioetanol combustion consumption by to the public,6.56366733,TJ,CH4,10.0,kg/TJ,65.6366733,kg +f367ba58-6eeb-3328-b748-ea2d3fdbe308,SESCO,II.1.1,La Rioja,AR-F,annual,2020,bioetanol combustion consumption by to the public,6.56366733,TJ,N2O,0.6,kg/TJ,3.938200398,kg +a8b8ca29-4a23-3c9e-b1ab-860ed487c63f,SESCO,II.1.1,Mendoza,AR-M,annual,2020,bioetanol combustion consumption by to the public,30.37424346,TJ,CH4,10.0,kg/TJ,303.74243459999997,kg +f99ba421-b4d4-3a92-ad1e-81325e5ea1ec,SESCO,II.1.1,Mendoza,AR-M,annual,2020,bioetanol combustion consumption by to the public,30.37424346,TJ,N2O,0.6,kg/TJ,18.224546076,kg +512b28f7-a9fc-3514-ac12-a5f01bdf7c92,SESCO,II.1.1,Misiones,AR-N,annual,2020,bioetanol combustion consumption by to the public,60.95235663,TJ,CH4,10.0,kg/TJ,609.5235663,kg +4ca37dbd-0c0f-3667-be87-3452d8e0c7b1,SESCO,II.1.1,Misiones,AR-N,annual,2020,bioetanol combustion consumption by to the public,60.95235663,TJ,N2O,0.6,kg/TJ,36.571413977999995,kg +ce409911-87ea-309a-830c-9980ec434191,SESCO,II.1.1,Neuquén,AR-Q,annual,2020,bioetanol combustion consumption by to the public,30.043833929999998,TJ,CH4,10.0,kg/TJ,300.4383393,kg +b8bfa025-dc93-3c49-ac69-a79741a38be5,SESCO,II.1.1,Neuquén,AR-Q,annual,2020,bioetanol combustion consumption by to the public,30.043833929999998,TJ,N2O,0.6,kg/TJ,18.026300357999997,kg +3dbd444e-7fe3-36fc-a289-0c4c9a7c2e7e,SESCO,II.1.1,Rio Negro,AR-R,annual,2020,bioetanol combustion consumption by to the public,41.7581406,TJ,CH4,10.0,kg/TJ,417.58140599999996,kg +d371bd1a-8960-33f9-94ed-947a0285f7ac,SESCO,II.1.1,Rio Negro,AR-R,annual,2020,bioetanol combustion consumption by to the public,41.7581406,TJ,N2O,0.6,kg/TJ,25.05488436,kg +f728d650-99d8-35ce-8836-92027316e217,SESCO,II.1.1,Salta,AR-A,annual,2020,bioetanol combustion consumption by to the public,11.435450399999999,TJ,CH4,10.0,kg/TJ,114.35450399999999,kg +b598071d-afc5-3340-9a7d-8d10d1f9a42d,SESCO,II.1.1,Salta,AR-A,annual,2020,bioetanol combustion consumption by to the public,11.435450399999999,TJ,N2O,0.6,kg/TJ,6.861270239999999,kg +2d279214-48de-3ae9-9d07-a2972cc3a0d5,SESCO,II.1.1,San Juan,AR-J,annual,2020,bioetanol combustion consumption by to the public,13.26559113,TJ,CH4,10.0,kg/TJ,132.6559113,kg +db2edc1d-818e-392a-afa9-fbd3045c20f8,SESCO,II.1.1,San Juan,AR-J,annual,2020,bioetanol combustion consumption by to the public,13.26559113,TJ,N2O,0.6,kg/TJ,7.959354678,kg +5d29b120-07b0-3938-88e3-2c05d2305266,SESCO,II.1.1,San Luis,AR-D,annual,2020,bioetanol combustion consumption by to the public,37.01524068,TJ,CH4,10.0,kg/TJ,370.1524068,kg +3e3e014d-ebd5-3714-b272-de9be1c479df,SESCO,II.1.1,San Luis,AR-D,annual,2020,bioetanol combustion consumption by to the public,37.01524068,TJ,N2O,0.6,kg/TJ,22.209144407999997,kg +8ef6b0de-2723-3839-af91-23da7c243c24,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2020,bioetanol combustion consumption by to the public,53.31310083,TJ,CH4,10.0,kg/TJ,533.1310083000001,kg +bb990d6c-67b0-3c70-bbc4-d2fcf74d5222,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2020,bioetanol combustion consumption by to the public,53.31310083,TJ,N2O,0.6,kg/TJ,31.987860498,kg +6fb2ebb9-4084-3605-8aa5-b06cccdd1a10,SESCO,II.1.1,Santa Fe,AR-S,annual,2020,bioetanol combustion consumption by to the public,164.27914965,TJ,CH4,10.0,kg/TJ,1642.7914965,kg +2c779ebc-5178-37b7-840e-baad5178c748,SESCO,II.1.1,Santa Fe,AR-S,annual,2020,bioetanol combustion consumption by to the public,164.27914965,TJ,N2O,0.6,kg/TJ,98.56748979,kg +9adf7c88-3039-3804-8e0c-974a643a4ce4,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2020,bioetanol combustion consumption by to the public,21.317273009999997,TJ,CH4,10.0,kg/TJ,213.17273009999997,kg +24bc69a7-0712-3106-98b7-469232c14a5b,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2020,bioetanol combustion consumption by to the public,21.317273009999997,TJ,N2O,0.6,kg/TJ,12.790363805999998,kg +0302c399-e2eb-332a-b722-58c17d4cdc3b,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2020,bioetanol combustion consumption by to the public,7.55255259,TJ,CH4,10.0,kg/TJ,75.5255259,kg +c4969474-e47e-328d-b782-b1a0425b1c54,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2020,bioetanol combustion consumption by to the public,7.55255259,TJ,N2O,0.6,kg/TJ,4.531531554,kg +838bb59f-dc96-3296-a273-72e7ee8f8b6d,SESCO,II.1.1,Tucuman,AR-T,annual,2020,bioetanol combustion consumption by to the public,10.477028429999999,TJ,CH4,10.0,kg/TJ,104.77028429999999,kg +40960436-3251-3c1c-9bce-dc27254d290e,SESCO,II.1.1,Tucuman,AR-T,annual,2020,bioetanol combustion consumption by to the public,10.477028429999999,TJ,N2O,0.6,kg/TJ,6.286217057999999,kg +6c1a4d25-7576-350c-ae00-76d58e4ed937,SESCO,II.1.1,Buenos Aires,AR-B,annual,2020,bioetanol combustion consumption by to the public,147.70243323,TJ,CH4,10.0,kg/TJ,1477.0243323,kg +ae8957d5-df89-3a74-ba9b-b70adff790b8,SESCO,II.1.1,Buenos Aires,AR-B,annual,2020,bioetanol combustion consumption by to the public,147.70243323,TJ,N2O,0.6,kg/TJ,88.621459938,kg +25bcad72-3f7f-35c3-81bb-8b6b3d1ac016,SESCO,II.1.1,Capital Federal,AR-C,annual,2020,bioetanol combustion consumption by to the public,60.132191129999995,TJ,CH4,10.0,kg/TJ,601.3219113,kg +6a73d78d-df81-3057-bc53-0be78569d39b,SESCO,II.1.1,Capital Federal,AR-C,annual,2020,bioetanol combustion consumption by to the public,60.132191129999995,TJ,N2O,0.6,kg/TJ,36.079314677999996,kg +72857d19-849c-3dfa-95a7-6abf3b641173,SESCO,II.1.1,Catamarca,AR-K,annual,2020,bioetanol combustion consumption by to the public,6.364484279999999,TJ,CH4,10.0,kg/TJ,63.64484279999999,kg +e3b8ebf9-d74e-33b2-9b47-c7f955c41991,SESCO,II.1.1,Catamarca,AR-K,annual,2020,bioetanol combustion consumption by to the public,6.364484279999999,TJ,N2O,0.6,kg/TJ,3.818690567999999,kg +f9090073-c505-36a3-b009-df472aef0c5d,SESCO,II.1.1,Chaco,AR-H,annual,2020,bioetanol combustion consumption by to the public,4.25783061,TJ,CH4,10.0,kg/TJ,42.5783061,kg +9c8be48d-1c75-3190-9bf8-8ca4e8ec2e83,SESCO,II.1.1,Chaco,AR-H,annual,2020,bioetanol combustion consumption by to the public,4.25783061,TJ,N2O,0.6,kg/TJ,2.5546983659999998,kg +1fd0e286-89ed-30e1-8e43-cae02c1bfecb,SESCO,II.1.1,Chubut,AR-U,annual,2020,bioetanol combustion consumption by to the public,14.22166977,TJ,CH4,10.0,kg/TJ,142.2166977,kg +54a386c5-c41e-3093-bf6f-9bcaf632d0a6,SESCO,II.1.1,Chubut,AR-U,annual,2020,bioetanol combustion consumption by to the public,14.22166977,TJ,N2O,0.6,kg/TJ,8.533001861999999,kg +c98a9985-d1ab-3efc-a8de-30c5ae43840a,SESCO,II.1.1,Corrientes,AR-W,annual,2020,bioetanol combustion consumption by to the public,7.8196922099999995,TJ,CH4,10.0,kg/TJ,78.1969221,kg +33bd5346-f05d-32d6-8c18-b8e9ca80f2f5,SESCO,II.1.1,Corrientes,AR-W,annual,2020,bioetanol combustion consumption by to the public,7.8196922099999995,TJ,N2O,0.6,kg/TJ,4.6918153259999995,kg +704bc61b-1cd1-3994-9ec8-1ef9a2b11774,SESCO,II.1.1,Córdoba,AR-X,annual,2020,bioetanol combustion consumption by to the public,35.63267598,TJ,CH4,10.0,kg/TJ,356.3267598,kg +2e61aba1-150a-3845-ab2e-6725895c5d51,SESCO,II.1.1,Córdoba,AR-X,annual,2020,bioetanol combustion consumption by to the public,35.63267598,TJ,N2O,0.6,kg/TJ,21.379605588,kg +86ffd5d0-fc30-3183-bbc4-d929736e34f9,SESCO,II.1.1,Entre Rios,AR-E,annual,2020,bioetanol combustion consumption by to the public,12.97267488,TJ,CH4,10.0,kg/TJ,129.7267488,kg +2e320363-864d-36af-a38c-05c2141787b6,SESCO,II.1.1,Entre Rios,AR-E,annual,2020,bioetanol combustion consumption by to the public,12.97267488,TJ,N2O,0.6,kg/TJ,7.783604927999999,kg +720f2a18-4aef-3c93-8395-1a1547e3beea,SESCO,II.1.1,Formosa,AR-P,annual,2020,bioetanol combustion consumption by to the public,9.79746273,TJ,CH4,10.0,kg/TJ,97.9746273,kg +eee0b2e5-0b50-3bf9-8490-9ce4d8ff8956,SESCO,II.1.1,Formosa,AR-P,annual,2020,bioetanol combustion consumption by to the public,9.79746273,TJ,N2O,0.6,kg/TJ,5.878477638,kg +9b1a0d48-f7b6-3c48-843a-e9fced8e717e,SESCO,II.1.1,Jujuy,AR-Y,annual,2020,bioetanol combustion consumption by to the public,2.96431245,TJ,CH4,10.0,kg/TJ,29.6431245,kg +101e05e4-20c8-3d82-98ff-bb37995f54b6,SESCO,II.1.1,Jujuy,AR-Y,annual,2020,bioetanol combustion consumption by to the public,2.96431245,TJ,N2O,0.6,kg/TJ,1.77858747,kg +a197e86b-d2dc-33d6-a40e-ce29488e414e,SESCO,II.1.1,La Pampa,AR-L,annual,2020,bioetanol combustion consumption by to the public,3.4376651099999997,TJ,CH4,10.0,kg/TJ,34.3766511,kg +a58048fe-ff61-365b-b8a8-42a98c367db3,SESCO,II.1.1,La Pampa,AR-L,annual,2020,bioetanol combustion consumption by to the public,3.4376651099999997,TJ,N2O,0.6,kg/TJ,2.0625990659999998,kg +eec302bd-6c3b-3bc5-b746-5253ae486e4f,SESCO,II.1.1,La Rioja,AR-F,annual,2020,bioetanol combustion consumption by to the public,1.5911210699999998,TJ,CH4,10.0,kg/TJ,15.911210699999998,kg +fea4fe17-bf14-3132-ac56-a305b481c2e4,SESCO,II.1.1,La Rioja,AR-F,annual,2020,bioetanol combustion consumption by to the public,1.5911210699999998,TJ,N2O,0.6,kg/TJ,0.9546726419999998,kg +4df95e28-abd4-391e-b3ea-df6dc118f8ea,SESCO,II.1.1,Mendoza,AR-M,annual,2020,bioetanol combustion consumption by to the public,10.495775069999999,TJ,CH4,10.0,kg/TJ,104.95775069999999,kg +fc9810d9-db42-3eb5-af9e-bdc2b6d72033,SESCO,II.1.1,Mendoza,AR-M,annual,2020,bioetanol combustion consumption by to the public,10.495775069999999,TJ,N2O,0.6,kg/TJ,6.297465041999999,kg +f7db96ec-1b8c-3b86-8c04-a20297af5455,SESCO,II.1.1,Misiones,AR-N,annual,2020,bioetanol combustion consumption by to the public,8.42661468,TJ,CH4,10.0,kg/TJ,84.2661468,kg +1a8330ce-6ba6-3c9c-91b0-f9023dc6bce5,SESCO,II.1.1,Misiones,AR-N,annual,2020,bioetanol combustion consumption by to the public,8.42661468,TJ,N2O,0.6,kg/TJ,5.055968808,kg +9924007c-5aeb-3f03-ba09-436fc51b337b,SESCO,II.1.1,Neuquén,AR-Q,annual,2020,bioetanol combustion consumption by to the public,10.36923525,TJ,CH4,10.0,kg/TJ,103.6923525,kg +50917afc-b39c-3679-a142-75bb3201230c,SESCO,II.1.1,Neuquén,AR-Q,annual,2020,bioetanol combustion consumption by to the public,10.36923525,TJ,N2O,0.6,kg/TJ,6.221541149999999,kg +e1636740-dc9f-31e2-8bae-9f1110115e12,SESCO,II.1.1,Rio Negro,AR-R,annual,2020,bioetanol combustion consumption by to the public,13.211694539999998,TJ,CH4,10.0,kg/TJ,132.1169454,kg +23c1210a-9a8c-34ae-9490-c4b3ce5082ec,SESCO,II.1.1,Rio Negro,AR-R,annual,2020,bioetanol combustion consumption by to the public,13.211694539999998,TJ,N2O,0.6,kg/TJ,7.927016723999999,kg +bc679e6c-8a13-3b6a-8c5e-6a91c0915e2d,SESCO,II.1.1,Salta,AR-A,annual,2020,bioetanol combustion consumption by to the public,1.51144785,TJ,CH4,10.0,kg/TJ,15.114478499999999,kg +6c46ac67-581d-399c-9264-ffeb86533ef8,SESCO,II.1.1,Salta,AR-A,annual,2020,bioetanol combustion consumption by to the public,1.51144785,TJ,N2O,0.6,kg/TJ,0.9068687099999999,kg +d3d9db79-1315-3c83-96e7-c024dbd6529e,SESCO,II.1.1,San Juan,AR-J,annual,2020,bioetanol combustion consumption by to the public,2.38082328,TJ,CH4,10.0,kg/TJ,23.8082328,kg +50664247-03b4-3f9b-b47a-b09a88b95fe5,SESCO,II.1.1,San Juan,AR-J,annual,2020,bioetanol combustion consumption by to the public,2.38082328,TJ,N2O,0.6,kg/TJ,1.428493968,kg +b7d01d27-d297-3216-a6a8-19c25eb5a563,SESCO,II.1.1,San Luis,AR-D,annual,2020,bioetanol combustion consumption by to the public,7.1002899,TJ,CH4,10.0,kg/TJ,71.002899,kg +a53500cd-a2a7-3000-8cdf-5850d77c47c4,SESCO,II.1.1,San Luis,AR-D,annual,2020,bioetanol combustion consumption by to the public,7.1002899,TJ,N2O,0.6,kg/TJ,4.26017394,kg +4336fc72-ef10-381f-afb2-1e9533bb29f7,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2020,bioetanol combustion consumption by to the public,5.865354989999999,TJ,CH4,10.0,kg/TJ,58.653549899999994,kg +e7d238bf-32aa-30cd-911e-78e81571f8aa,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2020,bioetanol combustion consumption by to the public,5.865354989999999,TJ,N2O,0.6,kg/TJ,3.5192129939999997,kg +f43e6337-c7cf-3632-89a5-7d22a4e6e623,SESCO,II.1.1,Santa Fe,AR-S,annual,2020,bioetanol combustion consumption by to the public,42.47051292,TJ,CH4,10.0,kg/TJ,424.7051292,kg +bef843d8-cf3b-3913-b582-1857de3d3219,SESCO,II.1.1,Santa Fe,AR-S,annual,2020,bioetanol combustion consumption by to the public,42.47051292,TJ,N2O,0.6,kg/TJ,25.482307751999997,kg +b1e2cca1-4638-39ee-ac06-42f71be44a6b,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2020,bioetanol combustion consumption by to the public,5.61930534,TJ,CH4,10.0,kg/TJ,56.193053400000004,kg +de29a9aa-7362-3bdb-ab9c-ae5561f24cbc,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2020,bioetanol combustion consumption by to the public,5.61930534,TJ,N2O,0.6,kg/TJ,3.3715832040000002,kg +192fdc3c-d06a-30ff-b0aa-36833b4cc0be,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2020,bioetanol combustion consumption by to the public,1.7715574799999998,TJ,CH4,10.0,kg/TJ,17.7155748,kg +e5cbc7c9-89f0-326e-8eeb-8364c76eef7e,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2020,bioetanol combustion consumption by to the public,1.7715574799999998,TJ,N2O,0.6,kg/TJ,1.0629344879999998,kg +4b210be9-8029-305e-afa7-f765d14d9330,SESCO,II.1.1,Tucuman,AR-T,annual,2020,bioetanol combustion consumption by to the public,1.78561746,TJ,CH4,10.0,kg/TJ,17.856174600000003,kg +c80b1449-4b28-3f40-9b98-9812e39d8737,SESCO,II.1.1,Tucuman,AR-T,annual,2020,bioetanol combustion consumption by to the public,1.78561746,TJ,N2O,0.6,kg/TJ,1.071370476,kg +12ffd935-5c02-30db-813b-7e39ddfe366b,SESCO,II.1.1,Buenos Aires,AR-B,annual,2020,bioetanol combustion consumption by freight transport,0.76626891,TJ,CH4,10.0,kg/TJ,7.6626891,kg +14ad5b85-5383-3a57-ae41-5d358605fe6f,SESCO,II.1.1,Buenos Aires,AR-B,annual,2020,bioetanol combustion consumption by freight transport,0.76626891,TJ,N2O,0.6,kg/TJ,0.45976134599999996,kg +fd39abb8-2f21-3901-9614-eef100c2e162,SESCO,II.1.1,Capital Federal,AR-C,annual,2020,bioetanol combustion consumption by freight transport,0.26713962,TJ,CH4,10.0,kg/TJ,2.6713962,kg +290a77e1-32d8-3a86-a5d4-1761f40185b6,SESCO,II.1.1,Capital Federal,AR-C,annual,2020,bioetanol combustion consumption by freight transport,0.26713962,TJ,N2O,0.6,kg/TJ,0.16028377200000002,kg +f3847240-3796-3e7f-afd5-62e6647c92f7,SESCO,II.1.1,Córdoba,AR-X,annual,2020,bioetanol combustion consumption by freight transport,0.09138987,TJ,CH4,10.0,kg/TJ,0.9138987,kg +4f321fbb-c204-36f0-b8b4-b490ce78dd86,SESCO,II.1.1,Córdoba,AR-X,annual,2020,bioetanol combustion consumption by freight transport,0.09138987,TJ,N2O,0.6,kg/TJ,0.054833922,kg +967e742e-0e1e-3982-a176-e9a87d7f47f5,SESCO,II.1.1,Entre Rios,AR-E,annual,2020,bioetanol combustion consumption by freight transport,0.02577663,TJ,CH4,10.0,kg/TJ,0.2577663,kg +d0bc4e0f-8c23-38be-952a-6d6c13258d08,SESCO,II.1.1,Entre Rios,AR-E,annual,2020,bioetanol combustion consumption by freight transport,0.02577663,TJ,N2O,0.6,kg/TJ,0.015465977999999998,kg +f586ee49-9857-3ff2-ab26-fe973c67adbb,SESCO,II.1.1,Jujuy,AR-Y,annual,2020,bioetanol combustion consumption by freight transport,0.00234333,TJ,CH4,10.0,kg/TJ,0.023433299999999997,kg +c115d993-5482-38ce-b0fb-189b01351472,SESCO,II.1.1,Jujuy,AR-Y,annual,2020,bioetanol combustion consumption by freight transport,0.00234333,TJ,N2O,0.6,kg/TJ,0.0014059979999999999,kg +a93e9cdb-ad4d-3e45-9e39-2d76b293bc68,SESCO,II.1.1,Mendoza,AR-M,annual,2020,bioetanol combustion consumption by freight transport,0.01171665,TJ,CH4,10.0,kg/TJ,0.1171665,kg +4765f33e-6a09-3b9f-83c1-7deec93b64fb,SESCO,II.1.1,Mendoza,AR-M,annual,2020,bioetanol combustion consumption by freight transport,0.01171665,TJ,N2O,0.6,kg/TJ,0.00702999,kg +e038ca7f-ee10-3103-9c00-21bb8978d6c5,SESCO,II.1.1,Santa Fe,AR-S,annual,2020,bioetanol combustion consumption by freight transport,0.09607653,TJ,CH4,10.0,kg/TJ,0.9607652999999999,kg +02d098c8-56bb-38b5-b5d4-f511d410d91b,SESCO,II.1.1,Santa Fe,AR-S,annual,2020,bioetanol combustion consumption by freight transport,0.09607653,TJ,N2O,0.6,kg/TJ,0.05764591799999999,kg +80abfafb-6fb1-398d-9795-83bb1a4e4c91,SESCO,II.1.1,Buenos Aires,AR-B,annual,2020,bioetanol combustion consumption by freight transport,0.44757603,TJ,CH4,10.0,kg/TJ,4.4757603,kg +a199cb69-800e-35bb-90fc-297fe76440ef,SESCO,II.1.1,Buenos Aires,AR-B,annual,2020,bioetanol combustion consumption by freight transport,0.44757603,TJ,N2O,0.6,kg/TJ,0.268545618,kg +54bb91c4-2254-33e1-9357-2359c59331bd,SESCO,II.1.1,Capital Federal,AR-C,annual,2020,bioetanol combustion consumption by freight transport,0.19215306,TJ,CH4,10.0,kg/TJ,1.9215305999999999,kg +4e80c872-b296-351b-a499-9a6d1ed332d4,SESCO,II.1.1,Capital Federal,AR-C,annual,2020,bioetanol combustion consumption by freight transport,0.19215306,TJ,N2O,0.6,kg/TJ,0.11529183599999998,kg +2245d918-727b-301c-a5c6-d4c721e4ce97,SESCO,II.1.1,Corrientes,AR-W,annual,2020,bioetanol combustion consumption by freight transport,0.01874664,TJ,CH4,10.0,kg/TJ,0.18746639999999998,kg +ecca72d7-2bb3-353e-8433-c5291c62dcbc,SESCO,II.1.1,Corrientes,AR-W,annual,2020,bioetanol combustion consumption by freight transport,0.01874664,TJ,N2O,0.6,kg/TJ,0.011247983999999999,kg +c8438087-f63f-3da4-9a53-12af454b87f3,SESCO,II.1.1,Córdoba,AR-X,annual,2020,bioetanol combustion consumption by freight transport,0.053896589999999994,TJ,CH4,10.0,kg/TJ,0.5389659,kg +21c1cdbf-632e-3c6e-aba1-ddbdf81c5ec5,SESCO,II.1.1,Córdoba,AR-X,annual,2020,bioetanol combustion consumption by freight transport,0.053896589999999994,TJ,N2O,0.6,kg/TJ,0.032337953999999995,kg +1030f5fc-6dff-3d89-b642-63dfb0314600,SESCO,II.1.1,Entre Rios,AR-E,annual,2020,bioetanol combustion consumption by freight transport,0.060926579999999994,TJ,CH4,10.0,kg/TJ,0.6092658,kg +7f177305-704f-32a0-a6ee-4899579bdbcd,SESCO,II.1.1,Entre Rios,AR-E,annual,2020,bioetanol combustion consumption by freight transport,0.060926579999999994,TJ,N2O,0.6,kg/TJ,0.036555948,kg +45f46ae3-32fa-3722-a880-e29f330ce493,SESCO,II.1.1,Santa Fe,AR-S,annual,2020,bioetanol combustion consumption by freight transport,0.09841986,TJ,CH4,10.0,kg/TJ,0.9841986,kg +7020a7aa-47ae-329f-a3e1-be7218cf3d16,SESCO,II.1.1,Santa Fe,AR-S,annual,2020,bioetanol combustion consumption by freight transport,0.09841986,TJ,N2O,0.6,kg/TJ,0.059051915999999996,kg +e75c0557-0693-35e8-810d-56d15cbd80ac,SESCO,II.1.1,Santa Fe,AR-S,annual,2020,bioetanol combustion consumption by public passenger transport,0.00702999,TJ,CH4,10.0,kg/TJ,0.0702999,kg +0c6bcdfe-cddf-3fc0-b9d4-9101488bd81a,SESCO,II.1.1,Santa Fe,AR-S,annual,2020,bioetanol combustion consumption by public passenger transport,0.00702999,TJ,N2O,0.6,kg/TJ,0.004217994,kg +c11900d3-ff56-34f8-88bd-6131c370a848,SESCO,II.1.1,Córdoba,AR-X,annual,2020,bioetanol combustion consumption by public passenger transport,0.00234333,TJ,CH4,10.0,kg/TJ,0.023433299999999997,kg +d865e7ed-a05b-30d2-90c1-c6544fea4874,SESCO,II.1.1,Córdoba,AR-X,annual,2020,bioetanol combustion consumption by public passenger transport,0.00234333,TJ,N2O,0.6,kg/TJ,0.0014059979999999999,kg +245d6e79-30f8-3029-9079-b854e8d0ffd8,SESCO,II.1.1,Catamarca,AR-K,annual,2020,bioetanol combustion consumption by to the public,11.43310707,TJ,CH4,10.0,kg/TJ,114.3310707,kg +57fb184b-1003-3140-b0c9-af624d56aebf,SESCO,II.1.1,Catamarca,AR-K,annual,2020,bioetanol combustion consumption by to the public,11.43310707,TJ,N2O,0.6,kg/TJ,6.859864242,kg +9a2d22ce-93ad-3bcd-8967-231552fa361a,SESCO,II.1.1,Chaco,AR-H,annual,2020,bioetanol combustion consumption by to the public,7.8501555,TJ,CH4,10.0,kg/TJ,78.501555,kg +f5996c4c-99d9-3eb7-bb1c-19a24afb53c1,SESCO,II.1.1,Chaco,AR-H,annual,2020,bioetanol combustion consumption by to the public,7.8501555,TJ,N2O,0.6,kg/TJ,4.7100933,kg +5aa764c4-72eb-3a8b-bb61-d5b4c22b9a5f,SESCO,II.1.1,Jujuy,AR-Y,annual,2020,bioetanol combustion consumption by to the public,26.578048860000003,TJ,CH4,10.0,kg/TJ,265.7804886,kg +70556c39-c20b-3906-96e3-52964993fcf7,SESCO,II.1.1,Jujuy,AR-Y,annual,2020,bioetanol combustion consumption by to the public,26.578048860000003,TJ,N2O,0.6,kg/TJ,15.946829316,kg +59b5a289-b4d3-3779-a1f2-d69b582de7de,SESCO,II.1.1,La Rioja,AR-F,annual,2020,bioetanol combustion consumption by to the public,25.4719971,TJ,CH4,10.0,kg/TJ,254.719971,kg +1f92fb0f-9442-3461-9701-8ddec6cba18f,SESCO,II.1.1,La Rioja,AR-F,annual,2020,bioetanol combustion consumption by to the public,25.4719971,TJ,N2O,0.6,kg/TJ,15.283198259999999,kg +c265bf87-a98c-3128-93b6-44337e2f2e05,SESCO,II.1.1,Salta,AR-A,annual,2020,bioetanol combustion consumption by to the public,61.82088846119999,TJ,CH4,10.0,kg/TJ,618.2088846119999,kg +0dfea182-359d-384e-bebf-6a14043dcbd8,SESCO,II.1.1,Salta,AR-A,annual,2020,bioetanol combustion consumption by to the public,61.82088846119999,TJ,N2O,0.6,kg/TJ,37.092533076719995,kg +b21b398b-9f13-39fa-b73a-97c410f47efe,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2020,bioetanol combustion consumption by to the public,19.40980239,TJ,CH4,10.0,kg/TJ,194.0980239,kg +34b58e0c-6330-39e3-86ee-3715543d3e3f,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2020,bioetanol combustion consumption by to the public,19.40980239,TJ,N2O,0.6,kg/TJ,11.645881434,kg +5559cfba-9001-325c-820e-386676bde8b1,SESCO,II.1.1,Tucuman,AR-T,annual,2020,bioetanol combustion consumption by to the public,128.63942024669998,TJ,CH4,10.0,kg/TJ,1286.3942024669998,kg +56d9300e-a093-3f4b-96d4-918a10e7e8e6,SESCO,II.1.1,Tucuman,AR-T,annual,2020,bioetanol combustion consumption by to the public,128.63942024669998,TJ,N2O,0.6,kg/TJ,77.18365214801999,kg +500db6aa-c24d-3ec7-804a-d237aabb5609,SESCO,II.1.1,Catamarca,AR-K,annual,2020,bioetanol combustion consumption by to the public,1.07558847,TJ,CH4,10.0,kg/TJ,10.7558847,kg +79051753-cf28-3971-9014-5835b0ae9cfb,SESCO,II.1.1,Catamarca,AR-K,annual,2020,bioetanol combustion consumption by to the public,1.07558847,TJ,N2O,0.6,kg/TJ,0.645353082,kg +13ef7acd-244e-3186-b02c-60a8d279d6d9,SESCO,II.1.1,Chaco,AR-H,annual,2020,bioetanol combustion consumption by to the public,0.22730301,TJ,CH4,10.0,kg/TJ,2.2730301,kg +26149fff-a6dd-39cf-9c21-7e6bb6ac41a6,SESCO,II.1.1,Chaco,AR-H,annual,2020,bioetanol combustion consumption by to the public,0.22730301,TJ,N2O,0.6,kg/TJ,0.136381806,kg +87736d0b-da67-3790-811a-abeb74efb52d,SESCO,II.1.1,Jujuy,AR-Y,annual,2020,bioetanol combustion consumption by to the public,1.33804143,TJ,CH4,10.0,kg/TJ,13.380414300000002,kg +cf0d0231-aba7-3a65-85f2-d786b0f01119,SESCO,II.1.1,Jujuy,AR-Y,annual,2020,bioetanol combustion consumption by to the public,1.33804143,TJ,N2O,0.6,kg/TJ,0.802824858,kg +b92d1d74-8015-3018-86e2-2e761763efee,SESCO,II.1.1,La Rioja,AR-F,annual,2020,bioetanol combustion consumption by to the public,2.11602699,TJ,CH4,10.0,kg/TJ,21.1602699,kg +91a46fb0-5e20-3d52-b747-13b8bd1f11c5,SESCO,II.1.1,La Rioja,AR-F,annual,2020,bioetanol combustion consumption by to the public,2.11602699,TJ,N2O,0.6,kg/TJ,1.269616194,kg +c074816f-c30b-3d36-a167-3721243f33c3,SESCO,II.1.1,Salta,AR-A,annual,2020,bioetanol combustion consumption by to the public,3.1757745492,TJ,CH4,10.0,kg/TJ,31.757745491999998,kg +804c4d26-65bf-3440-a29d-aa42736a4d2a,SESCO,II.1.1,Salta,AR-A,annual,2020,bioetanol combustion consumption by to the public,3.1757745492,TJ,N2O,0.6,kg/TJ,1.9054647295199998,kg +7c9118ad-8d33-3c7a-b83d-a21cec425105,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2020,bioetanol combustion consumption by to the public,1.8816939899999998,TJ,CH4,10.0,kg/TJ,18.816939899999998,kg +084e79aa-5784-3823-96af-344d77901e2c,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2020,bioetanol combustion consumption by to the public,1.8816939899999998,TJ,N2O,0.6,kg/TJ,1.1290163939999998,kg +6ee18e9b-a4d9-328c-8aae-3f63b4cdc103,SESCO,II.1.1,Tucuman,AR-T,annual,2020,bioetanol combustion consumption by to the public,9.432348482699998,TJ,CH4,10.0,kg/TJ,94.32348482699999,kg +8d46f42a-d70c-3b67-bde5-d31f5de6479b,SESCO,II.1.1,Tucuman,AR-T,annual,2020,bioetanol combustion consumption by to the public,9.432348482699998,TJ,N2O,0.6,kg/TJ,5.659409089619999,kg +73743b3e-3c57-3acd-852e-14ec9f4a144d,SESCO,I.3.1,Jujuy,AR-Y,annual,2020,bioetanol combustion consumption by petrochemical industries,0.23667633,TJ,CH4,10.0,kg/TJ,2.3667632999999997,kg +a50d58cc-a151-3980-9868-d21d4c8de089,SESCO,I.3.1,Jujuy,AR-Y,annual,2020,bioetanol combustion consumption by petrochemical industries,0.23667633,TJ,N2O,0.6,kg/TJ,0.142005798,kg +c54e6f89-14c4-3c63-b324-f30cdebe88a4,SESCO,II.5.1,Buenos Aires,AR-B,annual,2020,bioetanol combustion consumption by agriculture machines,0.08670321,TJ,CH4,10.0,kg/TJ,0.8670321000000001,kg +5f4f2cb0-f2d0-3ed1-8971-2881154c85f0,SESCO,II.5.1,Buenos Aires,AR-B,annual,2020,bioetanol combustion consumption by agriculture machines,0.08670321,TJ,N2O,0.6,kg/TJ,0.052021926,kg +95cd5687-7cce-37ff-8f5d-0e1f89ba3f54,SESCO,II.5.1,Santa Fe,AR-S,annual,2020,bioetanol combustion consumption by agriculture machines,0.06326991,TJ,CH4,10.0,kg/TJ,0.6326991,kg +a3689f92-8ee5-3af1-bb12-55c6643b5848,SESCO,II.5.1,Santa Fe,AR-S,annual,2020,bioetanol combustion consumption by agriculture machines,0.06326991,TJ,N2O,0.6,kg/TJ,0.037961945999999996,kg +db92347a-18fd-37bd-8785-2024dc2ddd4c,SESCO,II.5.1,Buenos Aires,AR-B,annual,2020,bioetanol combustion consumption by agriculture machines,0.03514995,TJ,CH4,10.0,kg/TJ,0.35149949999999996,kg +e508485d-4a89-3e59-854f-97aaf57fc28c,SESCO,II.5.1,Buenos Aires,AR-B,annual,2020,bioetanol combustion consumption by agriculture machines,0.03514995,TJ,N2O,0.6,kg/TJ,0.02108997,kg +378dfa49-318b-3538-9e4e-df7ac32eed4b,SESCO,II.5.1,Santa Fe,AR-S,annual,2020,bioetanol combustion consumption by agriculture machines,0.01405998,TJ,CH4,10.0,kg/TJ,0.1405998,kg +64f51b7f-51d1-3b33-aa6c-404960221609,SESCO,II.5.1,Santa Fe,AR-S,annual,2020,bioetanol combustion consumption by agriculture machines,0.01405998,TJ,N2O,0.6,kg/TJ,0.008435988,kg +70258824-8abf-3054-a3f1-3e371b3894cf,SESCO,II.1.1,Buenos Aires,AR-B,annual,2020,bioetanol combustion consumption by to the public,1018.3174847999999,TJ,CH4,10.0,kg/TJ,10183.174847999999,kg +94da50b1-6156-37ef-8a48-b9013a71b60c,SESCO,II.1.1,Buenos Aires,AR-B,annual,2020,bioetanol combustion consumption by to the public,1018.3174847999999,TJ,N2O,0.6,kg/TJ,610.9904908799999,kg +7807b925-eb24-3de5-8f99-0748016f0ded,SESCO,II.1.1,Capital Federal,AR-C,annual,2020,bioetanol combustion consumption by to the public,250.92143307,TJ,CH4,10.0,kg/TJ,2509.2143307,kg +f1533ad7-9196-36af-8ac5-5c9f6368ce08,SESCO,II.1.1,Capital Federal,AR-C,annual,2020,bioetanol combustion consumption by to the public,250.92143307,TJ,N2O,0.6,kg/TJ,150.552859842,kg +7b884923-260a-3f25-9ea9-510411f923d6,SESCO,II.1.1,Catamarca,AR-K,annual,2020,bioetanol combustion consumption by to the public,3.05101566,TJ,CH4,10.0,kg/TJ,30.510156600000002,kg +b9f1024c-5a10-3c1c-a062-ed0f60d4c79b,SESCO,II.1.1,Catamarca,AR-K,annual,2020,bioetanol combustion consumption by to the public,3.05101566,TJ,N2O,0.6,kg/TJ,1.8306093959999998,kg +de360f71-6e74-3cb0-b35f-2cea3b711535,SESCO,II.1.1,Chaco,AR-H,annual,2020,bioetanol combustion consumption by to the public,61.87797197999999,TJ,CH4,10.0,kg/TJ,618.7797198,kg +223c778b-58e6-3511-8530-0bed83e43657,SESCO,II.1.1,Chaco,AR-H,annual,2020,bioetanol combustion consumption by to the public,61.87797197999999,TJ,N2O,0.6,kg/TJ,37.12678318799999,kg +62a7ae8b-7c8c-3a69-8e85-cd2aca781086,SESCO,II.1.1,Corrientes,AR-W,annual,2020,bioetanol combustion consumption by to the public,63.42456978,TJ,CH4,10.0,kg/TJ,634.2456978,kg +5c24b738-4da7-346c-85a1-7fd25ee52cf4,SESCO,II.1.1,Corrientes,AR-W,annual,2020,bioetanol combustion consumption by to the public,63.42456978,TJ,N2O,0.6,kg/TJ,38.054741868,kg +f653e283-6db1-35a5-b8bf-626f7e24f898,SESCO,II.1.1,Córdoba,AR-X,annual,2020,bioetanol combustion consumption by to the public,233.25272487,TJ,CH4,10.0,kg/TJ,2332.5272487,kg +74b0506b-908e-3f84-a2cd-e8401bf55029,SESCO,II.1.1,Córdoba,AR-X,annual,2020,bioetanol combustion consumption by to the public,233.25272487,TJ,N2O,0.6,kg/TJ,139.951634922,kg +1864cadc-9fa4-3625-93b2-b3d7f9a24d9c,SESCO,II.1.1,Entre Rios,AR-E,annual,2020,bioetanol combustion consumption by to the public,67.35433419,TJ,CH4,10.0,kg/TJ,673.5433419000001,kg +2ca0a51d-a4f5-3667-acf3-e47be90a1ab0,SESCO,II.1.1,Entre Rios,AR-E,annual,2020,bioetanol combustion consumption by to the public,67.35433419,TJ,N2O,0.6,kg/TJ,40.412600514,kg +27471847-3a18-310b-9f1c-80d593647e75,SESCO,II.1.1,Formosa,AR-P,annual,2020,bioetanol combustion consumption by to the public,23.018530589999997,TJ,CH4,10.0,kg/TJ,230.18530589999997,kg +2a9f3126-f0c6-3e60-9b33-b6bf462070db,SESCO,II.1.1,Formosa,AR-P,annual,2020,bioetanol combustion consumption by to the public,23.018530589999997,TJ,N2O,0.6,kg/TJ,13.811118353999998,kg +2bb2e60a-1afb-3a7d-ab11-10c79e439fe1,SESCO,II.1.1,Jujuy,AR-Y,annual,2020,bioetanol combustion consumption by to the public,11.56199022,TJ,CH4,10.0,kg/TJ,115.6199022,kg +bc65f950-f0ab-333f-94b7-1aaba45aa32e,SESCO,II.1.1,Jujuy,AR-Y,annual,2020,bioetanol combustion consumption by to the public,11.56199022,TJ,N2O,0.6,kg/TJ,6.937194132,kg +fdcbd3e0-da5e-3db7-bbed-a690385529ec,SESCO,II.1.1,La Pampa,AR-L,annual,2020,bioetanol combustion consumption by to the public,17.68276818,TJ,CH4,10.0,kg/TJ,176.8276818,kg +6998e51f-e84d-331f-b1d6-d35f0f352d19,SESCO,II.1.1,La Pampa,AR-L,annual,2020,bioetanol combustion consumption by to the public,17.68276818,TJ,N2O,0.6,kg/TJ,10.609660908,kg +8888f225-1fdb-32eb-9307-b0ddce7f10de,SESCO,II.1.1,La Rioja,AR-F,annual,2020,bioetanol combustion consumption by to the public,15.04183527,TJ,CH4,10.0,kg/TJ,150.4183527,kg +5b8ec672-2d6f-3822-8a76-b83187242867,SESCO,II.1.1,La Rioja,AR-F,annual,2020,bioetanol combustion consumption by to the public,15.04183527,TJ,N2O,0.6,kg/TJ,9.025101162,kg +047fbceb-4207-3895-b167-23f3fae5773f,SESCO,II.1.1,Mendoza,AR-M,annual,2020,bioetanol combustion consumption by to the public,86.82271983,TJ,CH4,10.0,kg/TJ,868.2271982999999,kg +63893e8d-ea63-3b9d-90a6-587fdad0de79,SESCO,II.1.1,Mendoza,AR-M,annual,2020,bioetanol combustion consumption by to the public,86.82271983,TJ,N2O,0.6,kg/TJ,52.093631898,kg +356b5f9c-f028-30b7-9427-b869eae23a0d,SESCO,II.1.1,Misiones,AR-N,annual,2020,bioetanol combustion consumption by to the public,75.89577204,TJ,CH4,10.0,kg/TJ,758.9577204,kg +456fe648-4f14-35df-857c-51ca7153d5fe,SESCO,II.1.1,Misiones,AR-N,annual,2020,bioetanol combustion consumption by to the public,75.89577204,TJ,N2O,0.6,kg/TJ,45.537463224,kg +3a45a24a-575a-31fa-a055-1a6d20c3337b,SESCO,II.1.1,Neuquén,AR-Q,annual,2020,bioetanol combustion consumption by to the public,27.470857589999998,TJ,CH4,10.0,kg/TJ,274.70857589999997,kg +93c33a1e-9b2a-35e6-a7d4-8feb31b4ec76,SESCO,II.1.1,Neuquén,AR-Q,annual,2020,bioetanol combustion consumption by to the public,27.470857589999998,TJ,N2O,0.6,kg/TJ,16.482514553999998,kg +dc099754-acd4-3fa4-901b-5ca22eb12b52,SESCO,II.1.1,Rio Negro,AR-R,annual,2020,bioetanol combustion consumption by to the public,15.72140097,TJ,CH4,10.0,kg/TJ,157.2140097,kg +bee96b74-b07d-39d2-919e-b0e82f423c60,SESCO,II.1.1,Rio Negro,AR-R,annual,2020,bioetanol combustion consumption by to the public,15.72140097,TJ,N2O,0.6,kg/TJ,9.432840581999999,kg +22ae675b-e195-336a-8eb0-c29756b95465,SESCO,II.1.1,Salta,AR-A,annual,2020,bioetanol combustion consumption by to the public,16.63998633,TJ,CH4,10.0,kg/TJ,166.3998633,kg +0d2094de-603b-3df2-abbc-c8d09fdf463b,SESCO,II.1.1,Salta,AR-A,annual,2020,bioetanol combustion consumption by to the public,16.63998633,TJ,N2O,0.6,kg/TJ,9.983991798,kg +d6ff72a3-ac7d-3d4e-a27e-30e9ecdbd940,SESCO,II.1.1,San Juan,AR-J,annual,2020,bioetanol combustion consumption by to the public,18.287347320000002,TJ,CH4,10.0,kg/TJ,182.87347320000003,kg +945b25ce-a1eb-3593-89fc-2c2fd7cbfd8e,SESCO,II.1.1,San Juan,AR-J,annual,2020,bioetanol combustion consumption by to the public,18.287347320000002,TJ,N2O,0.6,kg/TJ,10.972408392,kg +e654d1fc-1c85-3cac-9589-318300616cba,SESCO,II.1.1,San Luis,AR-D,annual,2020,bioetanol combustion consumption by to the public,14.63643918,TJ,CH4,10.0,kg/TJ,146.3643918,kg +af0ea0b2-b12c-3b62-9a31-375e46c53d32,SESCO,II.1.1,San Luis,AR-D,annual,2020,bioetanol combustion consumption by to the public,14.63643918,TJ,N2O,0.6,kg/TJ,8.781863507999999,kg +e567896c-b1e3-3c38-9d36-39f851bae9d8,SESCO,II.1.1,Santa Fe,AR-S,annual,2020,bioetanol combustion consumption by to the public,197.01781308,TJ,CH4,10.0,kg/TJ,1970.1781308,kg +1126c523-e74a-367f-b735-6d1218c0de51,SESCO,II.1.1,Santa Fe,AR-S,annual,2020,bioetanol combustion consumption by to the public,197.01781308,TJ,N2O,0.6,kg/TJ,118.21068784799999,kg +1064bf8b-00eb-3677-812e-aec2deda972e,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2020,bioetanol combustion consumption by to the public,30.465633329999996,TJ,CH4,10.0,kg/TJ,304.6563333,kg +d4ebf346-cd5a-3ba6-bb25-1c135942d742,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2020,bioetanol combustion consumption by to the public,30.465633329999996,TJ,N2O,0.6,kg/TJ,18.279379997999996,kg +d2d132b3-b873-3eba-ba33-4f6430ab79cf,SESCO,II.1.1,Tucuman,AR-T,annual,2020,bioetanol combustion consumption by to the public,65.17503728999999,TJ,CH4,10.0,kg/TJ,651.7503728999999,kg +0e59765c-1e16-3015-a9d6-2337f9f6cf7f,SESCO,II.1.1,Tucuman,AR-T,annual,2020,bioetanol combustion consumption by to the public,65.17503728999999,TJ,N2O,0.6,kg/TJ,39.105022373999994,kg +c7fdd9f1-e6c1-3900-94f2-9bca5d6b6970,SESCO,II.1.1,Buenos Aires,AR-B,annual,2020,bioetanol combustion consumption by to the public,444.26724803999997,TJ,CH4,10.0,kg/TJ,4442.6724804,kg +b09cdd30-4e7c-37bd-b27a-b86ffcde4c20,SESCO,II.1.1,Buenos Aires,AR-B,annual,2020,bioetanol combustion consumption by to the public,444.26724803999997,TJ,N2O,0.6,kg/TJ,266.56034882399996,kg +8623c033-5722-3166-b3c6-a36504b658fa,SESCO,II.1.1,Capital Federal,AR-C,annual,2020,bioetanol combustion consumption by to the public,170.06717475,TJ,CH4,10.0,kg/TJ,1700.6717475,kg +2817994d-bd53-3720-9c5c-ba5182469f58,SESCO,II.1.1,Capital Federal,AR-C,annual,2020,bioetanol combustion consumption by to the public,170.06717475,TJ,N2O,0.6,kg/TJ,102.04030485,kg +35444429-d6d6-3255-8ac7-c7c2b74db6af,SESCO,II.1.1,Catamarca,AR-K,annual,2020,bioetanol combustion consumption by to the public,2.10431034,TJ,CH4,10.0,kg/TJ,21.0431034,kg +cc4e3a5b-7a0b-3e1a-bfbd-4128df39085e,SESCO,II.1.1,Catamarca,AR-K,annual,2020,bioetanol combustion consumption by to the public,2.10431034,TJ,N2O,0.6,kg/TJ,1.262586204,kg +1ccc9209-8fe9-3af8-8e6e-d7610f33294b,SESCO,II.1.1,Chaco,AR-H,annual,2020,bioetanol combustion consumption by to the public,16.69388292,TJ,CH4,10.0,kg/TJ,166.9388292,kg +00e9d3c3-55c4-3956-ae74-2e0a9068cfe6,SESCO,II.1.1,Chaco,AR-H,annual,2020,bioetanol combustion consumption by to the public,16.69388292,TJ,N2O,0.6,kg/TJ,10.016329751999999,kg +dc61b43d-61d1-315c-b0fd-085242cbed9a,SESCO,II.1.1,Corrientes,AR-W,annual,2020,bioetanol combustion consumption by to the public,19.16375274,TJ,CH4,10.0,kg/TJ,191.6375274,kg +37541c56-f133-394f-8815-59f8b5b2cfdf,SESCO,II.1.1,Corrientes,AR-W,annual,2020,bioetanol combustion consumption by to the public,19.16375274,TJ,N2O,0.6,kg/TJ,11.498251644,kg +4743a1f3-ae6e-328e-a2af-eb8029caaa65,SESCO,II.1.1,Córdoba,AR-X,annual,2020,bioetanol combustion consumption by to the public,98.96116923,TJ,CH4,10.0,kg/TJ,989.6116923,kg +8a5e4787-9c1c-3e12-9926-8d7d48c19b2f,SESCO,II.1.1,Córdoba,AR-X,annual,2020,bioetanol combustion consumption by to the public,98.96116923,TJ,N2O,0.6,kg/TJ,59.37670153799999,kg +889fec4a-ed9a-3010-ad8a-ec1bc48e5548,SESCO,II.1.1,Entre Rios,AR-E,annual,2020,bioetanol combustion consumption by to the public,21.729699089999997,TJ,CH4,10.0,kg/TJ,217.29699089999997,kg +05053bae-87b4-352a-aa8e-697f86eeea1c,SESCO,II.1.1,Entre Rios,AR-E,annual,2020,bioetanol combustion consumption by to the public,21.729699089999997,TJ,N2O,0.6,kg/TJ,13.037819453999997,kg +99e1476e-27bf-318a-9532-5df3763419f6,SESCO,II.1.1,Formosa,AR-P,annual,2020,bioetanol combustion consumption by to the public,8.2485216,TJ,CH4,10.0,kg/TJ,82.48521600000001,kg +6321edc2-bc27-36c9-9350-41ea5350cdc6,SESCO,II.1.1,Formosa,AR-P,annual,2020,bioetanol combustion consumption by to the public,8.2485216,TJ,N2O,0.6,kg/TJ,4.94911296,kg +ff351f9d-5141-31db-a2c6-bba62b816c39,SESCO,II.1.1,Jujuy,AR-Y,annual,2020,bioetanol combustion consumption by to the public,2.3691066299999997,TJ,CH4,10.0,kg/TJ,23.691066299999996,kg +7412132f-8667-3cd1-a18a-fa887ba550fb,SESCO,II.1.1,Jujuy,AR-Y,annual,2020,bioetanol combustion consumption by to the public,2.3691066299999997,TJ,N2O,0.6,kg/TJ,1.4214639779999998,kg +5da9e1e9-f2ea-3e1a-b276-9cd342985c96,SESCO,II.1.1,La Pampa,AR-L,annual,2020,bioetanol combustion consumption by to the public,8.588304449999999,TJ,CH4,10.0,kg/TJ,85.88304449999998,kg +c7f89f78-a2e0-31f3-b586-3a83d384253d,SESCO,II.1.1,La Pampa,AR-L,annual,2020,bioetanol combustion consumption by to the public,8.588304449999999,TJ,N2O,0.6,kg/TJ,5.152982669999999,kg +1c58d940-9fd6-38e5-b04e-bfdfc4bbfe14,SESCO,II.1.1,La Rioja,AR-F,annual,2020,bioetanol combustion consumption by to the public,3.8454045299999997,TJ,CH4,10.0,kg/TJ,38.4540453,kg +d5c56374-b1b7-39a5-81f5-4aef7bfdfa40,SESCO,II.1.1,La Rioja,AR-F,annual,2020,bioetanol combustion consumption by to the public,3.8454045299999997,TJ,N2O,0.6,kg/TJ,2.307242718,kg +be5c8c06-8dd0-3794-b5af-1c70c9e77aba,SESCO,II.1.1,Mendoza,AR-M,annual,2020,bioetanol combustion consumption by to the public,39.13126767,TJ,CH4,10.0,kg/TJ,391.3126767,kg +70aca0ce-f592-3a72-bc03-bd4821912f7c,SESCO,II.1.1,Mendoza,AR-M,annual,2020,bioetanol combustion consumption by to the public,39.13126767,TJ,N2O,0.6,kg/TJ,23.478760601999998,kg +1e11045a-3571-375b-a646-62603b17a466,SESCO,II.1.1,Misiones,AR-N,annual,2020,bioetanol combustion consumption by to the public,16.396280009999998,TJ,CH4,10.0,kg/TJ,163.96280009999998,kg +75f949f1-315b-309c-9a23-4cecbd4aea89,SESCO,II.1.1,Misiones,AR-N,annual,2020,bioetanol combustion consumption by to the public,16.396280009999998,TJ,N2O,0.6,kg/TJ,9.837768006,kg +56e26eab-f039-3f4b-b295-a1cbb936d084,SESCO,II.1.1,Neuquén,AR-Q,annual,2020,bioetanol combustion consumption by to the public,17.68511151,TJ,CH4,10.0,kg/TJ,176.8511151,kg +47d1e877-2568-3336-b89f-5974c0902263,SESCO,II.1.1,Neuquén,AR-Q,annual,2020,bioetanol combustion consumption by to the public,17.68511151,TJ,N2O,0.6,kg/TJ,10.611066906,kg +66b46e2a-3524-3205-a793-a0c33ebe2a98,SESCO,II.1.1,Rio Negro,AR-R,annual,2020,bioetanol combustion consumption by to the public,7.5689559,TJ,CH4,10.0,kg/TJ,75.689559,kg +adb0d073-c01c-33d5-8db1-78bdaa84767d,SESCO,II.1.1,Rio Negro,AR-R,annual,2020,bioetanol combustion consumption by to the public,7.5689559,TJ,N2O,0.6,kg/TJ,4.5413735399999995,kg +84f6f52f-e3ea-38bd-91f8-f7476e726362,SESCO,II.1.1,Salta,AR-A,annual,2020,bioetanol combustion consumption by to the public,7.786885590000001,TJ,CH4,10.0,kg/TJ,77.8688559,kg +6c5e5cb6-01a7-3193-b604-acdcdef5db18,SESCO,II.1.1,Salta,AR-A,annual,2020,bioetanol combustion consumption by to the public,7.786885590000001,TJ,N2O,0.6,kg/TJ,4.672131354,kg +36e983e3-a9f4-38ae-8a2d-65eee41383e7,SESCO,II.1.1,San Juan,AR-J,annual,2020,bioetanol combustion consumption by to the public,6.02938809,TJ,CH4,10.0,kg/TJ,60.293880900000005,kg +a5c1c69e-fbcf-3cb2-b15e-949934848be8,SESCO,II.1.1,San Juan,AR-J,annual,2020,bioetanol combustion consumption by to the public,6.02938809,TJ,N2O,0.6,kg/TJ,3.617632854,kg +dd745051-a7d9-38b1-9228-f89d312a7547,SESCO,II.1.1,San Luis,AR-D,annual,2020,bioetanol combustion consumption by to the public,6.08562801,TJ,CH4,10.0,kg/TJ,60.8562801,kg +68dbf45c-12d6-3e80-8b43-6e2d638dfaec,SESCO,II.1.1,San Luis,AR-D,annual,2020,bioetanol combustion consumption by to the public,6.08562801,TJ,N2O,0.6,kg/TJ,3.6513768059999996,kg +c9c8804e-7037-3260-a5e3-4cc1023dd2a3,SESCO,II.1.1,Santa Fe,AR-S,annual,2020,bioetanol combustion consumption by to the public,87.81629174999999,TJ,CH4,10.0,kg/TJ,878.1629174999999,kg +d4223679-c357-3682-be75-5409f4f7aaf6,SESCO,II.1.1,Santa Fe,AR-S,annual,2020,bioetanol combustion consumption by to the public,87.81629174999999,TJ,N2O,0.6,kg/TJ,52.689775049999994,kg +746c9c1a-4a62-3708-b55a-524c4b9a706d,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2020,bioetanol combustion consumption by to the public,8.65391769,TJ,CH4,10.0,kg/TJ,86.5391769,kg +7012d23e-3bd9-387e-a0e3-d6d4d2e81b98,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2020,bioetanol combustion consumption by to the public,8.65391769,TJ,N2O,0.6,kg/TJ,5.1923506139999995,kg +8c386ce5-6746-3dc8-b153-239693a307c0,SESCO,II.1.1,Tucuman,AR-T,annual,2020,bioetanol combustion consumption by to the public,17.26565544,TJ,CH4,10.0,kg/TJ,172.6565544,kg +ebd8055a-b25f-34ec-a552-c42447d47b79,SESCO,II.1.1,Tucuman,AR-T,annual,2020,bioetanol combustion consumption by to the public,17.26565544,TJ,N2O,0.6,kg/TJ,10.359393264,kg +24809d53-85c0-3cc1-b08c-f3954e3e6551,SESCO,I.3.1,Buenos Aires,AR-B,annual,2020,bioetanol combustion consumption by petrochemical industries,1.35678807,TJ,CH4,10.0,kg/TJ,13.5678807,kg +4bd0a8ad-cf2f-3808-9d47-b8003d6f7675,SESCO,I.3.1,Buenos Aires,AR-B,annual,2020,bioetanol combustion consumption by petrochemical industries,1.35678807,TJ,N2O,0.6,kg/TJ,0.814072842,kg +f889bf01-4d8d-3b58-981e-c5a166b39a31,SESCO,I.3.1,Misiones,AR-N,annual,2020,bioetanol combustion consumption by petrochemical industries,0.01171665,TJ,CH4,10.0,kg/TJ,0.1171665,kg +b31fe8b7-7f5e-3341-a558-ae1d93c71c76,SESCO,I.3.1,Misiones,AR-N,annual,2020,bioetanol combustion consumption by petrochemical industries,0.01171665,TJ,N2O,0.6,kg/TJ,0.00702999,kg +528f50b4-03e9-3615-ac37-24d62a5a3abe,SESCO,I.3.1,Tucuman,AR-T,annual,2020,bioetanol combustion consumption by petrochemical industries,0.01405998,TJ,CH4,10.0,kg/TJ,0.1405998,kg +99c37eda-5b82-33d0-b8a0-2e458ab88916,SESCO,I.3.1,Tucuman,AR-T,annual,2020,bioetanol combustion consumption by petrochemical industries,0.01405998,TJ,N2O,0.6,kg/TJ,0.008435988,kg +66f26087-e9ed-34fd-9d06-1e063c5847a1,SESCO,I.3.1,Buenos Aires,AR-B,annual,2020,bioetanol combustion consumption by petrochemical industries,0.41008275,TJ,CH4,10.0,kg/TJ,4.1008275,kg +9ec52e86-9424-3c5c-a738-fa5aab3c3642,SESCO,I.3.1,Buenos Aires,AR-B,annual,2020,bioetanol combustion consumption by petrochemical industries,0.41008275,TJ,N2O,0.6,kg/TJ,0.24604964999999998,kg +531c23d4-9401-3c66-8295-7550e75a18a8,SESCO,I.3.1,San Juan,AR-J,annual,2020,bioetanol combustion consumption by petrochemical industries,0.06561324,TJ,CH4,10.0,kg/TJ,0.6561324000000001,kg +547a061c-71af-3641-aec5-c5d945fa258d,SESCO,I.3.1,San Juan,AR-J,annual,2020,bioetanol combustion consumption by petrochemical industries,0.06561324,TJ,N2O,0.6,kg/TJ,0.039367944,kg +c594a5da-7c08-3cff-902e-0865b3e1f7f3,SESCO,I.3.1,Tucuman,AR-T,annual,2020,bioetanol combustion consumption by petrochemical industries,0.01640331,TJ,CH4,10.0,kg/TJ,0.16403310000000002,kg +a7adce2c-446a-3803-90e5-b76a27fbe4f0,SESCO,I.3.1,Tucuman,AR-T,annual,2020,bioetanol combustion consumption by petrochemical industries,0.01640331,TJ,N2O,0.6,kg/TJ,0.009841986,kg +8f9f9782-812f-3706-97bb-36d89cbae81c,SESCO,II.5.1,Buenos Aires,AR-B,annual,2020,bioetanol combustion consumption by agriculture machines,8.48415046149,TJ,CH4,10.0,kg/TJ,84.8415046149,kg +69506542-def8-3c26-bc79-896a4896266b,SESCO,II.5.1,Buenos Aires,AR-B,annual,2020,bioetanol combustion consumption by agriculture machines,8.48415046149,TJ,N2O,0.6,kg/TJ,5.090490276893999,kg +83e6810e-041b-3843-96fa-7159d54f3e68,SESCO,II.5.1,Capital Federal,AR-C,annual,2020,bioetanol combustion consumption by agriculture machines,1.7816408289899999,TJ,CH4,10.0,kg/TJ,17.8164082899,kg +9dcabc3a-d929-32c0-82d7-a2560b614a97,SESCO,II.5.1,Capital Federal,AR-C,annual,2020,bioetanol combustion consumption by agriculture machines,1.7816408289899999,TJ,N2O,0.6,kg/TJ,1.068984497394,kg +6e483344-3331-36eb-b15f-6dae50308f3c,SESCO,II.5.1,Chaco,AR-H,annual,2020,bioetanol combustion consumption by agriculture machines,0.20836187361,TJ,CH4,10.0,kg/TJ,2.0836187361,kg +98513731-b664-313d-ab70-5df859e278af,SESCO,II.5.1,Chaco,AR-H,annual,2020,bioetanol combustion consumption by agriculture machines,0.20836187361,TJ,N2O,0.6,kg/TJ,0.125017124166,kg +18a2b8e4-7948-326a-9df1-174463d51af5,SESCO,II.5.1,Córdoba,AR-X,annual,2020,bioetanol combustion consumption by agriculture machines,0.6695878008599999,TJ,CH4,10.0,kg/TJ,6.695878008599999,kg +ab3145fc-c44e-39c9-85f1-8c1937d434e0,SESCO,II.5.1,Córdoba,AR-X,annual,2020,bioetanol combustion consumption by agriculture machines,0.6695878008599999,TJ,N2O,0.6,kg/TJ,0.40175268051599994,kg +9ab38bdc-e571-3970-812a-0752c0b17c44,SESCO,II.5.1,Rio Negro,AR-R,annual,2020,bioetanol combustion consumption by agriculture machines,1.0575073357199998,TJ,CH4,10.0,kg/TJ,10.575073357199997,kg +4edc3485-36df-3609-a0fc-0a94b1e49244,SESCO,II.5.1,Rio Negro,AR-R,annual,2020,bioetanol combustion consumption by agriculture machines,1.0575073357199998,TJ,N2O,0.6,kg/TJ,0.6345044014319998,kg +f4dbcb02-d93c-3ee8-926a-485d4e7d568a,SESCO,II.5.1,Santa Fe,AR-S,annual,2020,bioetanol combustion consumption by agriculture machines,13.322559825629998,TJ,CH4,10.0,kg/TJ,133.22559825629997,kg +5bcaed44-b344-3e56-8b64-6ed62141841d,SESCO,II.5.1,Santa Fe,AR-S,annual,2020,bioetanol combustion consumption by agriculture machines,13.322559825629998,TJ,N2O,0.6,kg/TJ,7.993535895377999,kg +2c5204a0-d096-36f2-b69d-78288f68c583,SESCO,II.5.1,Buenos Aires,AR-B,annual,2020,bioetanol combustion consumption by agriculture machines,0.7301207014200001,TJ,CH4,10.0,kg/TJ,7.301207014200001,kg +d6ba0601-d2f9-342e-a829-6913ee8fd444,SESCO,II.5.1,Buenos Aires,AR-B,annual,2020,bioetanol combustion consumption by agriculture machines,0.7301207014200001,TJ,N2O,0.6,kg/TJ,0.43807242085200004,kg +0c94e594-dd2d-337a-8942-682705b2ed7c,SESCO,II.5.1,Capital Federal,AR-C,annual,2020,bioetanol combustion consumption by agriculture machines,0.5023021588200001,TJ,CH4,10.0,kg/TJ,5.023021588200001,kg +bbf978e6-66b3-3bde-a6ae-31899f93ed69,SESCO,II.5.1,Capital Federal,AR-C,annual,2020,bioetanol combustion consumption by agriculture machines,0.5023021588200001,TJ,N2O,0.6,kg/TJ,0.30138129529200003,kg +5b5fb57e-405b-3b2f-8fe9-40a6294930dd,SESCO,II.5.1,Córdoba,AR-X,annual,2020,bioetanol combustion consumption by agriculture machines,0.07226361054,TJ,CH4,10.0,kg/TJ,0.7226361053999999,kg +5edff33b-ab9c-38cf-b21d-78695710a589,SESCO,II.5.1,Córdoba,AR-X,annual,2020,bioetanol combustion consumption by agriculture machines,0.07226361054,TJ,N2O,0.6,kg/TJ,0.043358166324,kg +2bb2fba9-e288-3b7d-a39a-3ca502499032,SESCO,II.5.1,Rio Negro,AR-R,annual,2020,bioetanol combustion consumption by agriculture machines,0.21101452317,TJ,CH4,10.0,kg/TJ,2.1101452317,kg +8b0e2212-6f92-3fec-b3cd-683411b40776,SESCO,II.5.1,Rio Negro,AR-R,annual,2020,bioetanol combustion consumption by agriculture machines,0.21101452317,TJ,N2O,0.6,kg/TJ,0.126608713902,kg +11898084-cba0-37fd-aca3-5c8b3f67879d,SESCO,II.5.1,Santa Fe,AR-S,annual,2020,bioetanol combustion consumption by agriculture machines,1.17420985638,TJ,CH4,10.0,kg/TJ,11.7420985638,kg +bae93fb4-74c2-30b0-ab2c-b4076e19acbb,SESCO,II.5.1,Santa Fe,AR-S,annual,2020,bioetanol combustion consumption by agriculture machines,1.17420985638,TJ,N2O,0.6,kg/TJ,0.704525913828,kg +4d5fbeec-ec7b-3328-9777-8f8aa268a2b3,SESCO,II.1.1,Buenos Aires,AR-B,annual,2020,bioetanol combustion consumption by to the public,248.69695911093,TJ,CH4,10.0,kg/TJ,2486.9695911093,kg +6aa4bcad-f65e-3e7a-a045-d6ec4f67382f,SESCO,II.1.1,Buenos Aires,AR-B,annual,2020,bioetanol combustion consumption by to the public,248.69695911093,TJ,N2O,0.6,kg/TJ,149.218175466558,kg +aaa1028c-cdbf-3903-8f1c-1c499e97ec2e,SESCO,II.1.1,Capital Federal,AR-C,annual,2020,bioetanol combustion consumption by to the public,20.285659470779997,TJ,CH4,10.0,kg/TJ,202.85659470779996,kg +63f5dd50-3472-39e2-a605-002c62cd9c77,SESCO,II.1.1,Capital Federal,AR-C,annual,2020,bioetanol combustion consumption by to the public,20.285659470779997,TJ,N2O,0.6,kg/TJ,12.171395682467997,kg +99d8ab14-b0dc-37ae-83ea-fd3a9726ce42,SESCO,II.1.1,Catamarca,AR-K,annual,2020,bioetanol combustion consumption by to the public,1.8097186090499997,TJ,CH4,10.0,kg/TJ,18.097186090499996,kg +15cfad18-b027-387e-8be4-2f7ce8fc9d7b,SESCO,II.1.1,Catamarca,AR-K,annual,2020,bioetanol combustion consumption by to the public,1.8097186090499997,TJ,N2O,0.6,kg/TJ,1.0858311654299997,kg +2c889e96-6771-34c2-87db-e2cd8e101e03,SESCO,II.1.1,Chaco,AR-H,annual,2020,bioetanol combustion consumption by to the public,2.4460358105699997,TJ,CH4,10.0,kg/TJ,24.460358105699996,kg +96fb4df3-b059-34b0-95ae-1ea234460839,SESCO,II.1.1,Chaco,AR-H,annual,2020,bioetanol combustion consumption by to the public,2.4460358105699997,TJ,N2O,0.6,kg/TJ,1.4676214863419998,kg +562e95d7-806e-38ee-abd1-337f4a6321ac,SESCO,II.1.1,Chubut,AR-U,annual,2020,bioetanol combustion consumption by to the public,14.64268181112,TJ,CH4,10.0,kg/TJ,146.4268181112,kg +c6f168d9-0565-3607-ba80-e27276a37472,SESCO,II.1.1,Chubut,AR-U,annual,2020,bioetanol combustion consumption by to the public,14.64268181112,TJ,N2O,0.6,kg/TJ,8.785609086671998,kg +ca9a59e6-d0a9-3f0b-9633-4f93a8129df3,SESCO,II.1.1,Corrientes,AR-W,annual,2020,bioetanol combustion consumption by to the public,17.7235655553,TJ,CH4,10.0,kg/TJ,177.235655553,kg +38c9fedf-5b44-3611-a283-ec7e79d09e6d,SESCO,II.1.1,Corrientes,AR-W,annual,2020,bioetanol combustion consumption by to the public,17.7235655553,TJ,N2O,0.6,kg/TJ,10.634139333179998,kg +f621b0c6-7360-3135-ab10-1eda59285037,SESCO,II.1.1,Córdoba,AR-X,annual,2020,bioetanol combustion consumption by to the public,32.13532859823,TJ,CH4,10.0,kg/TJ,321.35328598229995,kg +d7b3ea29-bf45-3bd6-b575-c2f5942e5448,SESCO,II.1.1,Córdoba,AR-X,annual,2020,bioetanol combustion consumption by to the public,32.13532859823,TJ,N2O,0.6,kg/TJ,19.281197158937996,kg +3e8dd4b1-768d-3816-9265-70f1efa8c070,SESCO,II.1.1,Entre Rios,AR-E,annual,2020,bioetanol combustion consumption by to the public,30.41747321184,TJ,CH4,10.0,kg/TJ,304.1747321184,kg +e9b3abdc-ea7c-3006-ad57-2f8cca82b89c,SESCO,II.1.1,Entre Rios,AR-E,annual,2020,bioetanol combustion consumption by to the public,30.41747321184,TJ,N2O,0.6,kg/TJ,18.250483927104,kg +f53f6e90-cbd0-37f4-9152-91f9d92c5511,SESCO,II.1.1,Formosa,AR-P,annual,2020,bioetanol combustion consumption by to the public,0.10853601561,TJ,CH4,10.0,kg/TJ,1.0853601561,kg +795d547b-15bc-3ee9-9c1f-76491498b58d,SESCO,II.1.1,Formosa,AR-P,annual,2020,bioetanol combustion consumption by to the public,0.10853601561,TJ,N2O,0.6,kg/TJ,0.06512160936599999,kg +1004818e-ed1b-3438-a0c9-cfdfd686ef41,SESCO,II.1.1,Jujuy,AR-Y,annual,2020,bioetanol combustion consumption by to the public,3.4784835752699994,TJ,CH4,10.0,kg/TJ,34.78483575269999,kg +fac7bfcc-ee7f-36df-82c3-12592912b270,SESCO,II.1.1,Jujuy,AR-Y,annual,2020,bioetanol combustion consumption by to the public,3.4784835752699994,TJ,N2O,0.6,kg/TJ,2.0870901451619996,kg +a7cc55fc-beed-39c7-bd12-c8ccbe4faf61,SESCO,II.1.1,La Pampa,AR-L,annual,2020,bioetanol combustion consumption by to the public,27.972013860449998,TJ,CH4,10.0,kg/TJ,279.7201386045,kg +ed8d1a83-39dd-3048-a705-2919274ab354,SESCO,II.1.1,La Pampa,AR-L,annual,2020,bioetanol combustion consumption by to the public,27.972013860449998,TJ,N2O,0.6,kg/TJ,16.78320831627,kg +73ad7582-e14f-35d0-be2d-65868a234b3f,SESCO,II.1.1,Mendoza,AR-M,annual,2020,bioetanol combustion consumption by to the public,5.073904655819999,TJ,CH4,10.0,kg/TJ,50.73904655819999,kg +af571f3d-8674-371d-8d5f-a88ad6efadfe,SESCO,II.1.1,Mendoza,AR-M,annual,2020,bioetanol combustion consumption by to the public,5.073904655819999,TJ,N2O,0.6,kg/TJ,3.044342793491999,kg +4b6cb37b-960c-377e-a329-91a4a4a28b4e,SESCO,II.1.1,Misiones,AR-N,annual,2020,bioetanol combustion consumption by to the public,0.90301861881,TJ,CH4,10.0,kg/TJ,9.0301861881,kg +a2ca0278-d8fb-3aa4-9075-0dc2110e50fc,SESCO,II.1.1,Misiones,AR-N,annual,2020,bioetanol combustion consumption by to the public,0.90301861881,TJ,N2O,0.6,kg/TJ,0.541811171286,kg +d7888144-eac8-31c5-bb55-36c6ce4d0439,SESCO,II.1.1,Neuquén,AR-Q,annual,2020,bioetanol combustion consumption by to the public,20.873493174600004,TJ,CH4,10.0,kg/TJ,208.73493174600003,kg +7e5f1eb0-113b-3074-bcde-db7ecc6f87c7,SESCO,II.1.1,Neuquén,AR-Q,annual,2020,bioetanol combustion consumption by to the public,20.873493174600004,TJ,N2O,0.6,kg/TJ,12.524095904760001,kg +6975cb4b-d309-3601-a4d7-d3d25d55c409,SESCO,II.1.1,Rio Negro,AR-R,annual,2020,bioetanol combustion consumption by to the public,71.76597629454,TJ,CH4,10.0,kg/TJ,717.6597629454,kg +7981689f-278d-3aa4-8950-ecd12c3cf674,SESCO,II.1.1,Rio Negro,AR-R,annual,2020,bioetanol combustion consumption by to the public,71.76597629454,TJ,N2O,0.6,kg/TJ,43.059585776724,kg +4af839cf-75fc-34e0-b840-7b7180eb03c2,SESCO,II.1.1,San Juan,AR-J,annual,2020,bioetanol combustion consumption by to the public,9.00103984956,TJ,CH4,10.0,kg/TJ,90.0103984956,kg +899c032e-5cf3-3a22-ac9b-1df252bb1eee,SESCO,II.1.1,San Juan,AR-J,annual,2020,bioetanol combustion consumption by to the public,9.00103984956,TJ,N2O,0.6,kg/TJ,5.400623909736,kg +15651a4a-e340-384b-9460-a100804a5b70,SESCO,II.1.1,San Luis,AR-D,annual,2020,bioetanol combustion consumption by to the public,3.5565492708899997,TJ,CH4,10.0,kg/TJ,35.565492708899995,kg +a2433596-05bd-34d2-a145-e1bbbf83f866,SESCO,II.1.1,San Luis,AR-D,annual,2020,bioetanol combustion consumption by to the public,3.5565492708899997,TJ,N2O,0.6,kg/TJ,2.1339295625339996,kg +b318ce33-bfc6-34d9-8a38-e9b511f36ecf,SESCO,II.1.1,Santa Fe,AR-S,annual,2020,bioetanol combustion consumption by to the public,55.2947144112,TJ,CH4,10.0,kg/TJ,552.9471441119999,kg +de13c9d2-c724-3ab2-89f9-1cc662be02b0,SESCO,II.1.1,Santa Fe,AR-S,annual,2020,bioetanol combustion consumption by to the public,55.2947144112,TJ,N2O,0.6,kg/TJ,33.17682864672,kg +50917db0-3ec0-338f-8a9e-dca0903364aa,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2020,bioetanol combustion consumption by to the public,11.75542273818,TJ,CH4,10.0,kg/TJ,117.5542273818,kg +3f4f2b0d-9c42-3a53-a763-6ae1ef8a73bc,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2020,bioetanol combustion consumption by to the public,11.75542273818,TJ,N2O,0.6,kg/TJ,7.0532536429079995,kg +fedb1aad-359c-332f-8b82-c54b21cb6f8a,SESCO,II.1.1,Tucuman,AR-T,annual,2020,bioetanol combustion consumption by to the public,0.84297547422,TJ,CH4,10.0,kg/TJ,8.4297547422,kg +2a81e151-d127-3d59-a91e-799e3400a1b6,SESCO,II.1.1,Tucuman,AR-T,annual,2020,bioetanol combustion consumption by to the public,0.84297547422,TJ,N2O,0.6,kg/TJ,0.505785284532,kg +155ceea1-a369-3325-b047-bff6de659968,SESCO,II.1.1,Buenos Aires,AR-B,annual,2020,bioetanol combustion consumption by to the public,37.46829072887999,TJ,CH4,10.0,kg/TJ,374.6829072887999,kg +29e9ab00-d78e-3269-8ac7-b87acacf7d48,SESCO,II.1.1,Buenos Aires,AR-B,annual,2020,bioetanol combustion consumption by to the public,37.46829072887999,TJ,N2O,0.6,kg/TJ,22.480974437327994,kg +51b90e45-93ca-361b-a673-6337d0b6c65e,SESCO,II.1.1,Capital Federal,AR-C,annual,2020,bioetanol combustion consumption by to the public,2.8999107116099996,TJ,CH4,10.0,kg/TJ,28.999107116099996,kg +ee8fab5e-65c1-3a53-b93e-2e6a7d481b8e,SESCO,II.1.1,Capital Federal,AR-C,annual,2020,bioetanol combustion consumption by to the public,2.8999107116099996,TJ,N2O,0.6,kg/TJ,1.7399464269659997,kg +055de227-a792-3509-a221-ea7d64ea8855,SESCO,II.1.1,Catamarca,AR-K,annual,2020,bioetanol combustion consumption by to the public,0.11705402016,TJ,CH4,10.0,kg/TJ,1.1705402016,kg +4e430ec5-9ffa-3289-8f07-f2c06317b715,SESCO,II.1.1,Catamarca,AR-K,annual,2020,bioetanol combustion consumption by to the public,0.11705402016,TJ,N2O,0.6,kg/TJ,0.070232412096,kg +42fcdd72-e84c-3584-bde6-8402baaeeb62,SESCO,II.1.1,Chaco,AR-H,annual,2020,bioetanol combustion consumption by to the public,0.23079925836,TJ,CH4,10.0,kg/TJ,2.3079925836,kg +15fd318f-1fea-30ad-91da-7ec0fdde199f,SESCO,II.1.1,Chaco,AR-H,annual,2020,bioetanol combustion consumption by to the public,0.23079925836,TJ,N2O,0.6,kg/TJ,0.138479555016,kg +a513c0eb-67d1-3f7b-9a1a-2bff750c477c,SESCO,II.1.1,Chubut,AR-U,annual,2020,bioetanol combustion consumption by to the public,1.97264565729,TJ,CH4,10.0,kg/TJ,19.7264565729,kg +ecee4b58-cef2-3a2b-8f98-169c959887f1,SESCO,II.1.1,Chubut,AR-U,annual,2020,bioetanol combustion consumption by to the public,1.97264565729,TJ,N2O,0.6,kg/TJ,1.1835873943739998,kg +0dd5752e-1cac-3fbf-8954-d95ab9bfdd88,SESCO,II.1.1,Corrientes,AR-W,annual,2020,bioetanol combustion consumption by to the public,1.5092404331399998,TJ,CH4,10.0,kg/TJ,15.092404331399997,kg +66756059-3276-3821-94e2-5107bcb168cf,SESCO,II.1.1,Corrientes,AR-W,annual,2020,bioetanol combustion consumption by to the public,1.5092404331399998,TJ,N2O,0.6,kg/TJ,0.9055442598839998,kg +2b21a7e6-6846-3f87-909a-d0256f9a91bc,SESCO,II.1.1,Córdoba,AR-X,annual,2020,bioetanol combustion consumption by to the public,4.71018937653,TJ,CH4,10.0,kg/TJ,47.1018937653,kg +8c74725c-256d-35c5-ae1b-ac820714bc5b,SESCO,II.1.1,Córdoba,AR-X,annual,2020,bioetanol combustion consumption by to the public,4.71018937653,TJ,N2O,0.6,kg/TJ,2.826113625918,kg +4306138b-7a2a-3652-b585-54919665b04c,SESCO,II.1.1,Entre Rios,AR-E,annual,2020,bioetanol combustion consumption by to the public,5.49404732151,TJ,CH4,10.0,kg/TJ,54.9404732151,kg +73beb8e2-14c1-3cb3-9f34-859982b6c3cb,SESCO,II.1.1,Entre Rios,AR-E,annual,2020,bioetanol combustion consumption by to the public,5.49404732151,TJ,N2O,0.6,kg/TJ,3.296428392906,kg +0e0ec8e0-a028-3be7-b8d9-f50dad45cecb,SESCO,II.1.1,Formosa,AR-P,annual,2020,bioetanol combustion consumption by to the public,0.02546731044,TJ,CH4,10.0,kg/TJ,0.2546731044,kg +281686ef-f763-31b0-9865-9644efa97c4f,SESCO,II.1.1,Formosa,AR-P,annual,2020,bioetanol combustion consumption by to the public,0.02546731044,TJ,N2O,0.6,kg/TJ,0.015280386264,kg +2f5d8e0e-013a-3777-b6fc-a6997831bc38,SESCO,II.1.1,La Pampa,AR-L,annual,2020,bioetanol combustion consumption by to the public,5.38526994291,TJ,CH4,10.0,kg/TJ,53.8526994291,kg +fc9eb739-7561-3a26-88e3-c7f9130c3f7f,SESCO,II.1.1,La Pampa,AR-L,annual,2020,bioetanol combustion consumption by to the public,5.38526994291,TJ,N2O,0.6,kg/TJ,3.231161965746,kg +a0a44f16-6b6e-3e1a-9733-aa9e295d0c21,SESCO,II.1.1,Mendoza,AR-M,annual,2020,bioetanol combustion consumption by to the public,0.5925484837799999,TJ,CH4,10.0,kg/TJ,5.925484837799999,kg +0961245c-ac4d-3429-898a-fcec2e697c51,SESCO,II.1.1,Mendoza,AR-M,annual,2020,bioetanol combustion consumption by to the public,0.5925484837799999,TJ,N2O,0.6,kg/TJ,0.35552909026799995,kg +54873bfa-d8d0-3fa8-bc3c-ef255a3d8930,SESCO,II.1.1,Misiones,AR-N,annual,2020,bioetanol combustion consumption by to the public,0.07419685778999999,TJ,CH4,10.0,kg/TJ,0.7419685778999998,kg +902e31fe-b9ad-36e8-a86e-bf1de63ca7c0,SESCO,II.1.1,Misiones,AR-N,annual,2020,bioetanol combustion consumption by to the public,0.07419685778999999,TJ,N2O,0.6,kg/TJ,0.04451811467399999,kg +536d1a4e-3102-3310-9645-120da64172a9,SESCO,II.1.1,Neuquén,AR-Q,annual,2020,bioetanol combustion consumption by to the public,6.41300292765,TJ,CH4,10.0,kg/TJ,64.1300292765,kg +e2577340-a0a6-3acd-b31e-6296ed486907,SESCO,II.1.1,Neuquén,AR-Q,annual,2020,bioetanol combustion consumption by to the public,6.41300292765,TJ,N2O,0.6,kg/TJ,3.84780175659,kg +608a8a94-264e-3015-ae70-295ec389bf3f,SESCO,II.1.1,Rio Negro,AR-R,annual,2020,bioetanol combustion consumption by to the public,9.75595766904,TJ,CH4,10.0,kg/TJ,97.55957669040001,kg +3c3cc730-7a2c-32e0-b534-67efd4aaa3b1,SESCO,II.1.1,Rio Negro,AR-R,annual,2020,bioetanol combustion consumption by to the public,9.75595766904,TJ,N2O,0.6,kg/TJ,5.853574601424,kg +97b6cd65-062b-3681-a7b9-df3be06d30b5,SESCO,II.1.1,San Juan,AR-J,annual,2020,bioetanol combustion consumption by to the public,1.02317989455,TJ,CH4,10.0,kg/TJ,10.2317989455,kg +32d10ebb-903d-3c17-8115-d0e4a1fb0b73,SESCO,II.1.1,San Juan,AR-J,annual,2020,bioetanol combustion consumption by to the public,1.02317989455,TJ,N2O,0.6,kg/TJ,0.6139079367299999,kg +86fe412b-7ad2-3182-a3a2-97e8d84056fd,SESCO,II.1.1,San Luis,AR-D,annual,2020,bioetanol combustion consumption by to the public,0.7566331370400001,TJ,CH4,10.0,kg/TJ,7.566331370400001,kg +5a6b00ed-e531-3a32-8a9b-1c8b58a944c1,SESCO,II.1.1,San Luis,AR-D,annual,2020,bioetanol combustion consumption by to the public,0.7566331370400001,TJ,N2O,0.6,kg/TJ,0.45397988222400004,kg +cc006cef-2300-3760-8e5e-b56598c413f9,SESCO,II.1.1,Santa Fe,AR-S,annual,2020,bioetanol combustion consumption by to the public,11.22379614774,TJ,CH4,10.0,kg/TJ,112.2379614774,kg +b9c2f1f0-0e8d-38c9-b57d-efb036e152ed,SESCO,II.1.1,Santa Fe,AR-S,annual,2020,bioetanol combustion consumption by to the public,11.22379614774,TJ,N2O,0.6,kg/TJ,6.734277688644,kg +af6a1f02-af28-3876-8e0c-4a793f1976d2,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2020,bioetanol combustion consumption by to the public,2.29756710843,TJ,CH4,10.0,kg/TJ,22.9756710843,kg +54c77a2d-a3d0-389f-987f-8f3b3c8def82,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2020,bioetanol combustion consumption by to the public,2.29756710843,TJ,N2O,0.6,kg/TJ,1.3785402650579999,kg +348dd65c-3099-39b7-8b71-d1207b460d7b,SESCO,II.1.1,Tucuman,AR-T,annual,2020,bioetanol combustion consumption by to the public,0.020874383640000004,TJ,CH4,10.0,kg/TJ,0.20874383640000005,kg +15f2c897-9ee3-3b05-871f-265a01926b93,SESCO,II.1.1,Tucuman,AR-T,annual,2020,bioetanol combustion consumption by to the public,0.020874383640000004,TJ,N2O,0.6,kg/TJ,0.012524630184000003,kg +db1a2a9f-f446-3497-96e5-4becb117888d,SESCO,I.3.1,Buenos Aires,AR-B,annual,2020,bioetanol combustion consumption by petrochemical industries,3.8402023373999996,TJ,CH4,10.0,kg/TJ,38.402023373999995,kg +a4c312d3-ac5c-38df-b646-ad57db9d57dd,SESCO,I.3.1,Buenos Aires,AR-B,annual,2020,bioetanol combustion consumption by petrochemical industries,3.8402023373999996,TJ,N2O,0.6,kg/TJ,2.30412140244,kg +42ab7023-7c61-3b9f-9b94-cf5da423ffa4,SESCO,I.3.1,Capital Federal,AR-C,annual,2020,bioetanol combustion consumption by petrochemical industries,0.5803795710899999,TJ,CH4,10.0,kg/TJ,5.803795710899999,kg +4f3e24e7-9f26-35c1-a386-03669acb6472,SESCO,I.3.1,Capital Federal,AR-C,annual,2020,bioetanol combustion consumption by petrochemical industries,0.5803795710899999,TJ,N2O,0.6,kg/TJ,0.34822774265399997,kg +0623c68e-321b-3903-bc0e-844b2160e541,SESCO,I.3.1,Catamarca,AR-K,annual,2020,bioetanol combustion consumption by petrochemical industries,0.34238160297,TJ,CH4,10.0,kg/TJ,3.4238160296999998,kg +5889299d-d7df-3878-bd10-012f301c7ecb,SESCO,I.3.1,Catamarca,AR-K,annual,2020,bioetanol combustion consumption by petrochemical industries,0.34238160297,TJ,N2O,0.6,kg/TJ,0.20542896178199999,kg +0f7a6da6-3400-3a24-a440-eb4e4ee1a202,SESCO,I.3.1,Chaco,AR-H,annual,2020,bioetanol combustion consumption by petrochemical industries,0.43363790315999995,TJ,CH4,10.0,kg/TJ,4.3363790316,kg +d0033b72-5bc2-342d-a502-1823f9b0bd50,SESCO,I.3.1,Chaco,AR-H,annual,2020,bioetanol combustion consumption by petrochemical industries,0.43363790315999995,TJ,N2O,0.6,kg/TJ,0.26018274189599994,kg +fd356c28-077c-34ff-8e95-50ca5c0a5a89,SESCO,I.3.1,Chubut,AR-U,annual,2020,bioetanol combustion consumption by petrochemical industries,0.07276742649,TJ,CH4,10.0,kg/TJ,0.7276742649,kg +d6b140be-b0dd-3a7f-826b-cc728c3dc73c,SESCO,I.3.1,Chubut,AR-U,annual,2020,bioetanol combustion consumption by petrochemical industries,0.07276742649,TJ,N2O,0.6,kg/TJ,0.04366045589399999,kg +72eeae20-dc3d-3774-9814-9c9fd8594b37,SESCO,I.3.1,Córdoba,AR-X,annual,2020,bioetanol combustion consumption by petrochemical industries,1.38035728314,TJ,CH4,10.0,kg/TJ,13.8035728314,kg +cbaee887-32b5-31ec-9b99-eacd17a0eaeb,SESCO,I.3.1,Córdoba,AR-X,annual,2020,bioetanol combustion consumption by petrochemical industries,1.38035728314,TJ,N2O,0.6,kg/TJ,0.828214369884,kg +dac31cee-311b-3f8f-9cd4-3d6fdd23a7f2,SESCO,I.3.1,Entre Rios,AR-E,annual,2020,bioetanol combustion consumption by petrochemical industries,0.84591401004,TJ,CH4,10.0,kg/TJ,8.459140100399999,kg +a23cd836-5473-3ffb-967f-df7abfc705fa,SESCO,I.3.1,Entre Rios,AR-E,annual,2020,bioetanol combustion consumption by petrochemical industries,0.84591401004,TJ,N2O,0.6,kg/TJ,0.507548406024,kg +e0884ce0-26ee-30f4-b314-c45922eefe4c,SESCO,I.3.1,La Pampa,AR-L,annual,2020,bioetanol combustion consumption by petrochemical industries,1.01706380325,TJ,CH4,10.0,kg/TJ,10.1706380325,kg +852825a9-1edc-3bae-83e3-1100ecb0e3e4,SESCO,I.3.1,La Pampa,AR-L,annual,2020,bioetanol combustion consumption by petrochemical industries,1.01706380325,TJ,N2O,0.6,kg/TJ,0.61023828195,kg +02ee8b8a-a9df-3d11-95a3-4e1db7f21a1b,SESCO,I.3.1,Mendoza,AR-M,annual,2020,bioetanol combustion consumption by petrochemical industries,0.17988338412,TJ,CH4,10.0,kg/TJ,1.7988338412,kg +2b20f69c-19ad-3495-b549-0238b645f118,SESCO,I.3.1,Mendoza,AR-M,annual,2020,bioetanol combustion consumption by petrochemical industries,0.17988338412,TJ,N2O,0.6,kg/TJ,0.10793003047199999,kg +440d1cac-05a9-3b48-8174-2ec189c1a9b0,SESCO,I.3.1,Misiones,AR-N,annual,2020,bioetanol combustion consumption by petrochemical industries,0.23380106408999998,TJ,CH4,10.0,kg/TJ,2.3380106409,kg +a9269f62-7c6b-35ed-87d0-97223f07bcf6,SESCO,I.3.1,Misiones,AR-N,annual,2020,bioetanol combustion consumption by petrochemical industries,0.23380106408999998,TJ,N2O,0.6,kg/TJ,0.140280638454,kg +5e46526c-f4cb-3331-b440-b3b5da52fc34,SESCO,I.3.1,Neuquén,AR-Q,annual,2020,bioetanol combustion consumption by petrochemical industries,0.30479458976999996,TJ,CH4,10.0,kg/TJ,3.0479458976999996,kg +639b15de-7831-3aca-93ea-e64db6c78274,SESCO,I.3.1,Neuquén,AR-Q,annual,2020,bioetanol combustion consumption by petrochemical industries,0.30479458976999996,TJ,N2O,0.6,kg/TJ,0.18287675386199997,kg +516332b4-d900-3fa5-a65c-ea0360b02b1b,SESCO,I.3.1,Rio Negro,AR-R,annual,2020,bioetanol combustion consumption by petrochemical industries,0.73260931788,TJ,CH4,10.0,kg/TJ,7.326093178800001,kg +318cd99e-e245-31d6-a81f-e4b251805259,SESCO,I.3.1,Rio Negro,AR-R,annual,2020,bioetanol combustion consumption by petrochemical industries,0.73260931788,TJ,N2O,0.6,kg/TJ,0.439565590728,kg +226d2e1d-9fac-3ec8-998c-f1dd52ddba07,SESCO,I.3.1,San Luis,AR-D,annual,2020,bioetanol combustion consumption by petrochemical industries,0.15037382943000002,TJ,CH4,10.0,kg/TJ,1.5037382943000002,kg +f862a106-d726-3891-9d3d-ad74d53609e8,SESCO,I.3.1,San Luis,AR-D,annual,2020,bioetanol combustion consumption by petrochemical industries,0.15037382943000002,TJ,N2O,0.6,kg/TJ,0.09022429765800001,kg +b566e363-4ed7-35d0-8b88-c561fd342ebf,SESCO,I.3.1,Santa Fe,AR-S,annual,2020,bioetanol combustion consumption by petrochemical industries,3.8856840293699997,TJ,CH4,10.0,kg/TJ,38.856840293699996,kg +19c93775-0d43-3f6f-b70d-5471e996718b,SESCO,I.3.1,Santa Fe,AR-S,annual,2020,bioetanol combustion consumption by petrochemical industries,3.8856840293699997,TJ,N2O,0.6,kg/TJ,2.3314104176219996,kg +7938eab9-01bd-38b9-a62d-ee90278ead1f,SESCO,I.3.1,Santiago del Estero,AR-G,annual,2020,bioetanol combustion consumption by petrochemical industries,0.05838875361,TJ,CH4,10.0,kg/TJ,0.5838875361,kg +792b5184-d3e9-3756-b0b6-6b44612d47ac,SESCO,I.3.1,Santiago del Estero,AR-G,annual,2020,bioetanol combustion consumption by petrochemical industries,0.05838875361,TJ,N2O,0.6,kg/TJ,0.035033252166,kg +d8b44448-88cd-3b76-ada5-620be782b13e,SESCO,I.3.1,Tucuman,AR-T,annual,2020,bioetanol combustion consumption by petrochemical industries,0.32017152123,TJ,CH4,10.0,kg/TJ,3.2017152123,kg +d47f00ee-d794-30e8-9369-e3f995189196,SESCO,I.3.1,Tucuman,AR-T,annual,2020,bioetanol combustion consumption by petrochemical industries,0.32017152123,TJ,N2O,0.6,kg/TJ,0.19210291273799998,kg +0d7f8361-2c4b-3e92-9470-aa16d7d39fdb,SESCO,I.3.1,Buenos Aires,AR-B,annual,2020,bioetanol combustion consumption by petrochemical industries,0.15699842334,TJ,CH4,10.0,kg/TJ,1.5699842334,kg +e899b378-6209-3009-bb97-cb1a678b60ac,SESCO,I.3.1,Buenos Aires,AR-B,annual,2020,bioetanol combustion consumption by petrochemical industries,0.15699842334,TJ,N2O,0.6,kg/TJ,0.094199054004,kg +a2225cec-5841-35f6-b143-8d0c87b79b60,SESCO,I.3.1,Capital Federal,AR-C,annual,2020,bioetanol combustion consumption by petrochemical industries,0.06802452657,TJ,CH4,10.0,kg/TJ,0.6802452657,kg +5ba5a228-4bf0-3a21-9704-4e4b74772bdd,SESCO,I.3.1,Capital Federal,AR-C,annual,2020,bioetanol combustion consumption by petrochemical industries,0.06802452657,TJ,N2O,0.6,kg/TJ,0.04081471594199999,kg +c553bf2e-f99d-380b-9d55-4a7b219744db,SESCO,I.3.1,Chubut,AR-U,annual,2020,bioetanol combustion consumption by petrochemical industries,0.011782263239999997,TJ,CH4,10.0,kg/TJ,0.11782263239999996,kg +0cf2aade-00d9-339c-a2bc-469acde0fe42,SESCO,I.3.1,Chubut,AR-U,annual,2020,bioetanol combustion consumption by petrochemical industries,0.011782263239999997,TJ,N2O,0.6,kg/TJ,0.007069357943999998,kg +da384fcd-a86b-3b01-8943-cfa33743e03a,SESCO,I.3.1,Córdoba,AR-X,annual,2020,bioetanol combustion consumption by petrochemical industries,0.08675241992999999,TJ,CH4,10.0,kg/TJ,0.8675241992999999,kg +7312a848-db27-3854-806f-21bbdbb6ded7,SESCO,I.3.1,Córdoba,AR-X,annual,2020,bioetanol combustion consumption by petrochemical industries,0.08675241992999999,TJ,N2O,0.6,kg/TJ,0.05205145195799999,kg +c5ec0731-a817-3732-88ce-65314b480fbf,SESCO,I.3.1,Entre Rios,AR-E,annual,2020,bioetanol combustion consumption by petrochemical industries,0.06327459665999999,TJ,CH4,10.0,kg/TJ,0.6327459665999999,kg +b8071c86-43e3-3e9e-93a5-e6637093a2d2,SESCO,I.3.1,Entre Rios,AR-E,annual,2020,bioetanol combustion consumption by petrochemical industries,0.06327459665999999,TJ,N2O,0.6,kg/TJ,0.03796475799599999,kg +bdaf0da7-45e9-3a4b-94fc-166724feb270,SESCO,I.3.1,La Pampa,AR-L,annual,2020,bioetanol combustion consumption by petrochemical industries,0.23980936221,TJ,CH4,10.0,kg/TJ,2.3980936220999998,kg +109aa0c8-bb6b-3fcb-a8bf-f426a098bb66,SESCO,I.3.1,La Pampa,AR-L,annual,2020,bioetanol combustion consumption by petrochemical industries,0.23980936221,TJ,N2O,0.6,kg/TJ,0.143885617326,kg +226a9cd1-3b86-32f6-8641-00d74befba48,SESCO,I.3.1,Santa Fe,AR-S,annual,2020,bioetanol combustion consumption by petrochemical industries,0.18262508021999999,TJ,CH4,10.0,kg/TJ,1.8262508022,kg +94b44957-9ee7-3cff-9cab-1cca254b8e6d,SESCO,I.3.1,Santa Fe,AR-S,annual,2020,bioetanol combustion consumption by petrochemical industries,0.18262508021999999,TJ,N2O,0.6,kg/TJ,0.10957504813199999,kg +6dfd156d-2992-36f7-a665-9435b3ba7d1b,SESCO,I.3.1,Santiago del Estero,AR-G,annual,2020,bioetanol combustion consumption by petrochemical industries,0.009300676769999999,TJ,CH4,10.0,kg/TJ,0.09300676769999999,kg +a490a96e-3ff1-350b-bb69-fb093ed7f42a,SESCO,I.3.1,Santiago del Estero,AR-G,annual,2020,bioetanol combustion consumption by petrochemical industries,0.009300676769999999,TJ,N2O,0.6,kg/TJ,0.005580406061999999,kg +1c13038c-d879-3aac-912e-1886b11e6b78,SESCO,I.3.1,Tucuman,AR-T,annual,2020,bioetanol combustion consumption by petrochemical industries,0.00941784327,TJ,CH4,10.0,kg/TJ,0.09417843270000001,kg +de66789d-cd26-33f0-96fb-2fab0cdd0334,SESCO,I.3.1,Tucuman,AR-T,annual,2020,bioetanol combustion consumption by petrochemical industries,0.00941784327,TJ,N2O,0.6,kg/TJ,0.005650705962,kg +80f2e7ca-9070-338e-8eff-8eb2fdf7ac46,SESCO,II.5.1,Buenos Aires,AR-B,annual,2020,bioetanol combustion consumption by agriculture machines,0.01874664,TJ,CH4,10.0,kg/TJ,0.18746639999999998,kg +ddd45c0a-21c6-3548-b915-9244f7d1c5c6,SESCO,II.5.1,Buenos Aires,AR-B,annual,2020,bioetanol combustion consumption by agriculture machines,0.01874664,TJ,N2O,0.6,kg/TJ,0.011247983999999999,kg +aaa305d6-c8b3-399e-823b-9235790c7804,SESCO,II.5.1,Salta,AR-A,annual,2020,bioetanol combustion consumption by agriculture machines,0.05155326,TJ,CH4,10.0,kg/TJ,0.5155326,kg +396e1e0f-794f-3ff9-9609-c58fe4805b19,SESCO,II.5.1,Salta,AR-A,annual,2020,bioetanol combustion consumption by agriculture machines,0.05155326,TJ,N2O,0.6,kg/TJ,0.030931955999999997,kg +80e640c8-901e-30f0-a2fa-69079b9830d7,SESCO,II.5.1,Santa Fe,AR-S,annual,2020,bioetanol combustion consumption by agriculture machines,0.18512306999999997,TJ,CH4,10.0,kg/TJ,1.8512306999999997,kg +90e45eeb-bca0-39d9-addb-1aa812415b6a,SESCO,II.5.1,Santa Fe,AR-S,annual,2020,bioetanol combustion consumption by agriculture machines,0.18512306999999997,TJ,N2O,0.6,kg/TJ,0.11107384199999998,kg +cdbd77a5-e329-33c1-b289-17b0cdfbf4a5,SESCO,II.1.1,Buenos Aires,AR-B,annual,2020,bioetanol combustion consumption by to the public,2092.98268278,TJ,CH4,10.0,kg/TJ,20929.826827799996,kg +7e686da7-fc62-3d26-9e36-e6e5864aa074,SESCO,II.1.1,Buenos Aires,AR-B,annual,2020,bioetanol combustion consumption by to the public,2092.98268278,TJ,N2O,0.6,kg/TJ,1255.789609668,kg +727c458b-3a1f-3ca9-85de-cce0ab7a4ffc,SESCO,II.1.1,Capital Federal,AR-C,annual,2020,bioetanol combustion consumption by to the public,357.20082189,TJ,CH4,10.0,kg/TJ,3572.0082189,kg +6fe8edbe-9e45-31e8-a0c8-56a8799e3294,SESCO,II.1.1,Capital Federal,AR-C,annual,2020,bioetanol combustion consumption by to the public,357.20082189,TJ,N2O,0.6,kg/TJ,214.32049313399997,kg +286f9d48-687c-3e40-bae5-0b754312e360,SESCO,II.1.1,Catamarca,AR-K,annual,2020,bioetanol combustion consumption by to the public,45.49340862,TJ,CH4,10.0,kg/TJ,454.93408619999997,kg +6f857383-4101-3b24-bde8-9db6293503ce,SESCO,II.1.1,Catamarca,AR-K,annual,2020,bioetanol combustion consumption by to the public,45.49340862,TJ,N2O,0.6,kg/TJ,27.296045171999996,kg +fde19739-9841-3d0b-9534-c640efa42690,SESCO,II.1.1,Chaco,AR-H,annual,2020,bioetanol combustion consumption by to the public,127.28734227,TJ,CH4,10.0,kg/TJ,1272.8734227,kg +76dfc9f4-2285-3d8b-87cd-9b61211017e4,SESCO,II.1.1,Chaco,AR-H,annual,2020,bioetanol combustion consumption by to the public,127.28734227,TJ,N2O,0.6,kg/TJ,76.372405362,kg +f176618a-5116-30c9-a69a-6526bed43dcd,SESCO,II.1.1,Chubut,AR-U,annual,2020,bioetanol combustion consumption by to the public,182.96954972999998,TJ,CH4,10.0,kg/TJ,1829.6954972999997,kg +f7f33bd7-0470-3080-9156-e6e76927af87,SESCO,II.1.1,Chubut,AR-U,annual,2020,bioetanol combustion consumption by to the public,182.96954972999998,TJ,N2O,0.6,kg/TJ,109.78172983799999,kg +1a00bfd7-313f-3214-9012-819638ddff62,SESCO,II.1.1,Corrientes,AR-W,annual,2020,bioetanol combustion consumption by to the public,133.6869765,TJ,CH4,10.0,kg/TJ,1336.869765,kg +c291309c-7489-3580-8a9e-839f7fc41aa2,SESCO,II.1.1,Corrientes,AR-W,annual,2020,bioetanol combustion consumption by to the public,133.6869765,TJ,N2O,0.6,kg/TJ,80.2121859,kg +a46c1dae-1c57-3297-9cc3-7204fd2dc6b2,SESCO,II.1.1,Córdoba,AR-X,annual,2020,bioetanol combustion consumption by to the public,515.8606662,TJ,CH4,10.0,kg/TJ,5158.606662,kg +84051af1-398c-374f-ae14-44fecf8040f3,SESCO,II.1.1,Córdoba,AR-X,annual,2020,bioetanol combustion consumption by to the public,515.8606662,TJ,N2O,0.6,kg/TJ,309.51639972,kg +39d1fd93-989b-35cc-a501-2cd7a5e230bb,SESCO,II.1.1,Entre Rios,AR-E,annual,2020,bioetanol combustion consumption by to the public,175.32092061,TJ,CH4,10.0,kg/TJ,1753.2092061,kg +dd6435bc-1463-39d9-bb48-88c99569eb08,SESCO,II.1.1,Entre Rios,AR-E,annual,2020,bioetanol combustion consumption by to the public,175.32092061,TJ,N2O,0.6,kg/TJ,105.192552366,kg +e5d22a80-9ca3-3125-95ec-3a9c75342866,SESCO,II.1.1,Formosa,AR-P,annual,2020,bioetanol combustion consumption by to the public,58.90897287,TJ,CH4,10.0,kg/TJ,589.0897287,kg +05293390-dd4f-3e95-b5cf-30af69e2b5d4,SESCO,II.1.1,Formosa,AR-P,annual,2020,bioetanol combustion consumption by to the public,58.90897287,TJ,N2O,0.6,kg/TJ,35.345383722,kg +b161ce41-94cd-3b1f-b1ef-b79a22d23034,SESCO,II.1.1,Jujuy,AR-Y,annual,2020,bioetanol combustion consumption by to the public,82.79922222,TJ,CH4,10.0,kg/TJ,827.9922222,kg +4452cd94-1115-3c07-96cf-3906795d30fb,SESCO,II.1.1,Jujuy,AR-Y,annual,2020,bioetanol combustion consumption by to the public,82.79922222,TJ,N2O,0.6,kg/TJ,49.679533332,kg +7bd1bbb2-42f5-34c5-928e-002de521af50,SESCO,II.1.1,La Pampa,AR-L,annual,2020,bioetanol combustion consumption by to the public,81.39322422000001,TJ,CH4,10.0,kg/TJ,813.9322422,kg +a6f95a92-068c-312a-83af-b122bead5fd8,SESCO,II.1.1,La Pampa,AR-L,annual,2020,bioetanol combustion consumption by to the public,81.39322422000001,TJ,N2O,0.6,kg/TJ,48.835934532,kg +abb66c39-534c-366f-850e-01fcc5987549,SESCO,II.1.1,La Rioja,AR-F,annual,2020,bioetanol combustion consumption by to the public,52.631191799999996,TJ,CH4,10.0,kg/TJ,526.311918,kg +1988fce9-52b2-3470-84dd-661847431e55,SESCO,II.1.1,La Rioja,AR-F,annual,2020,bioetanol combustion consumption by to the public,52.631191799999996,TJ,N2O,0.6,kg/TJ,31.578715079999995,kg +248fbe12-1d32-38eb-8601-3384db678a0c,SESCO,II.1.1,Mendoza,AR-M,annual,2020,bioetanol combustion consumption by to the public,272.54802564,TJ,CH4,10.0,kg/TJ,2725.4802564,kg +5debe7ec-67e0-3eed-80d2-1bb5df196819,SESCO,II.1.1,Mendoza,AR-M,annual,2020,bioetanol combustion consumption by to the public,272.54802564,TJ,N2O,0.6,kg/TJ,163.52881538399998,kg +050383e3-bf85-3d73-8e6c-58e89630fcc0,SESCO,II.1.1,Misiones,AR-N,annual,2020,bioetanol combustion consumption by to the public,207.37298835,TJ,CH4,10.0,kg/TJ,2073.7298835,kg +2e7cd07b-f3b9-3033-b556-1af6c345b113,SESCO,II.1.1,Misiones,AR-N,annual,2020,bioetanol combustion consumption by to the public,207.37298835,TJ,N2O,0.6,kg/TJ,124.42379301,kg +eb0f7738-21d5-37bd-8afa-7a847777ea70,SESCO,II.1.1,Neuquén,AR-Q,annual,2020,bioetanol combustion consumption by to the public,174.26876544,TJ,CH4,10.0,kg/TJ,1742.6876544000002,kg +dc7961a2-9e55-3525-9677-750199e09a51,SESCO,II.1.1,Neuquén,AR-Q,annual,2020,bioetanol combustion consumption by to the public,174.26876544,TJ,N2O,0.6,kg/TJ,104.561259264,kg +f8914511-421e-321b-8473-5868b0f1e6bc,SESCO,II.1.1,Rio Negro,AR-R,annual,2020,bioetanol combustion consumption by to the public,168.56275689,TJ,CH4,10.0,kg/TJ,1685.6275689,kg +3cbfea3f-0cbf-3a45-9d24-3afd98e0bbff,SESCO,II.1.1,Rio Negro,AR-R,annual,2020,bioetanol combustion consumption by to the public,168.56275689,TJ,N2O,0.6,kg/TJ,101.137654134,kg +a9d8663e-dd98-38b6-836d-a89862c48003,SESCO,II.1.1,Salta,AR-A,annual,2020,bioetanol combustion consumption by to the public,194.74243964999997,TJ,CH4,10.0,kg/TJ,1947.4243964999996,kg +c66e707b-02f2-33d6-8fba-e4facd840057,SESCO,II.1.1,Salta,AR-A,annual,2020,bioetanol combustion consumption by to the public,194.74243964999997,TJ,N2O,0.6,kg/TJ,116.84546378999997,kg +adc9732c-d33a-32c2-a46c-b58262b7b38d,SESCO,II.1.1,San Juan,AR-J,annual,2020,bioetanol combustion consumption by to the public,93.75194664,TJ,CH4,10.0,kg/TJ,937.5194664,kg +0fff48a7-20a7-3eb6-a13d-e9abe89e9cd8,SESCO,II.1.1,San Juan,AR-J,annual,2020,bioetanol combustion consumption by to the public,93.75194664,TJ,N2O,0.6,kg/TJ,56.251167984,kg +5d6d7821-424f-3da1-981a-4fcf7fd928bb,SESCO,II.1.1,San Luis,AR-D,annual,2020,bioetanol combustion consumption by to the public,75.14356310999999,TJ,CH4,10.0,kg/TJ,751.4356310999999,kg +6dd718f5-0f0e-3035-bffd-9a52a4f407de,SESCO,II.1.1,San Luis,AR-D,annual,2020,bioetanol combustion consumption by to the public,75.14356310999999,TJ,N2O,0.6,kg/TJ,45.086137865999994,kg +5acc97cd-7e18-3651-9d7a-d956d25051a1,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2020,bioetanol combustion consumption by to the public,108.72113868000001,TJ,CH4,10.0,kg/TJ,1087.2113868000001,kg +c5cc5e60-31bd-3ec0-b2f6-48a88547f71b,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2020,bioetanol combustion consumption by to the public,108.72113868000001,TJ,N2O,0.6,kg/TJ,65.232683208,kg +1d2926ee-dfe9-3837-ac26-6b5f18da91ed,SESCO,II.1.1,Santa Fe,AR-S,annual,2020,bioetanol combustion consumption by to the public,395.3572642799999,TJ,CH4,10.0,kg/TJ,3953.5726427999994,kg +f9992e90-9f3e-3ee4-bf4b-dbc3caa3abb5,SESCO,II.1.1,Santa Fe,AR-S,annual,2020,bioetanol combustion consumption by to the public,395.3572642799999,TJ,N2O,0.6,kg/TJ,237.21435856799994,kg +b8adc28a-9ae5-30c1-aaed-56b879e9c2f7,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2020,bioetanol combustion consumption by to the public,80.36918901,TJ,CH4,10.0,kg/TJ,803.6918901,kg +c2765b62-029a-36c9-9b3b-0f3381ae0c45,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2020,bioetanol combustion consumption by to the public,80.36918901,TJ,N2O,0.6,kg/TJ,48.221513406,kg +cf5d216c-a1df-32ba-b71e-b8e99db853b3,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2020,bioetanol combustion consumption by to the public,81.7119171,TJ,CH4,10.0,kg/TJ,817.1191709999999,kg +b1435417-4278-3ff4-98d4-06a3e5e14d97,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2020,bioetanol combustion consumption by to the public,81.7119171,TJ,N2O,0.6,kg/TJ,49.02715025999999,kg +f067903d-e1f6-3f48-b38f-6b287cf179d7,SESCO,II.1.1,Tucuman,AR-T,annual,2020,bioetanol combustion consumption by to the public,162.17952597,TJ,CH4,10.0,kg/TJ,1621.7952596999999,kg +96a3c756-c3b1-3cc2-ae1f-792b441c61ff,SESCO,II.1.1,Tucuman,AR-T,annual,2020,bioetanol combustion consumption by to the public,162.17952597,TJ,N2O,0.6,kg/TJ,97.30771558199999,kg +9a72a9dd-8c0b-3428-ae10-7f09e42f7552,SESCO,II.1.1,Buenos Aires,AR-B,annual,2020,bioetanol combustion consumption by to the public,756.90730665,TJ,CH4,10.0,kg/TJ,7569.0730665,kg +0f84543f-79d7-3a4a-8c2e-efc9167b3c33,SESCO,II.1.1,Buenos Aires,AR-B,annual,2020,bioetanol combustion consumption by to the public,756.90730665,TJ,N2O,0.6,kg/TJ,454.14438399,kg +a5ba34d5-a750-33c6-ba50-ac5ed52e6e74,SESCO,II.1.1,Capital Federal,AR-C,annual,2020,bioetanol combustion consumption by to the public,166.52640312,TJ,CH4,10.0,kg/TJ,1665.2640311999999,kg +5cf67d06-ea8d-3d06-9ac7-afab7243af69,SESCO,II.1.1,Capital Federal,AR-C,annual,2020,bioetanol combustion consumption by to the public,166.52640312,TJ,N2O,0.6,kg/TJ,99.915841872,kg +e8a9e642-c1e5-37c6-a9fb-3da30d922c8c,SESCO,II.1.1,Catamarca,AR-K,annual,2020,bioetanol combustion consumption by to the public,15.56205453,TJ,CH4,10.0,kg/TJ,155.6205453,kg +a26bfed7-908d-3bae-8820-9bd291f8c1a7,SESCO,II.1.1,Catamarca,AR-K,annual,2020,bioetanol combustion consumption by to the public,15.56205453,TJ,N2O,0.6,kg/TJ,9.337232718,kg +8a63a7d1-9352-3a40-89cc-7ae6c69a1093,SESCO,II.1.1,Chaco,AR-H,annual,2020,bioetanol combustion consumption by to the public,36.43643817,TJ,CH4,10.0,kg/TJ,364.3643817,kg +0f5acfcd-934e-383e-8a2f-b10ffdcaa4e1,SESCO,II.1.1,Chaco,AR-H,annual,2020,bioetanol combustion consumption by to the public,36.43643817,TJ,N2O,0.6,kg/TJ,21.861862902000002,kg +8e7dc0fe-76df-31f4-8f67-545cc9b3fc74,SESCO,II.1.1,Chubut,AR-U,annual,2020,bioetanol combustion consumption by to the public,62.051378400000004,TJ,CH4,10.0,kg/TJ,620.513784,kg +608d0536-8d4d-36f8-9223-b4eefacd41a6,SESCO,II.1.1,Chubut,AR-U,annual,2020,bioetanol combustion consumption by to the public,62.051378400000004,TJ,N2O,0.6,kg/TJ,37.23082704,kg +0f74a285-4ce9-3c7e-9053-e72f2844c12e,SESCO,II.1.1,Corrientes,AR-W,annual,2020,bioetanol combustion consumption by to the public,49.17712338,TJ,CH4,10.0,kg/TJ,491.7712338,kg +0b895f97-63a0-3eed-8f1e-5a8c0ff72c98,SESCO,II.1.1,Corrientes,AR-W,annual,2020,bioetanol combustion consumption by to the public,49.17712338,TJ,N2O,0.6,kg/TJ,29.506274027999996,kg +d6e808f2-0c75-3a0b-bb9f-05eafe226efb,SESCO,II.1.1,Córdoba,AR-X,annual,2020,bioetanol combustion consumption by to the public,178.21024649999998,TJ,CH4,10.0,kg/TJ,1782.102465,kg +03c49a98-94aa-3e09-a1c9-e12f124f961d,SESCO,II.1.1,Córdoba,AR-X,annual,2020,bioetanol combustion consumption by to the public,178.21024649999998,TJ,N2O,0.6,kg/TJ,106.92614789999999,kg +ca21d049-55a5-35e5-8947-f9d8c00e790f,SESCO,II.1.1,Entre Rios,AR-E,annual,2020,bioetanol combustion consumption by to the public,61.247616210000004,TJ,CH4,10.0,kg/TJ,612.4761621,kg +a01b4351-abd2-3d95-89e0-b58b6f368e3e,SESCO,II.1.1,Entre Rios,AR-E,annual,2020,bioetanol combustion consumption by to the public,61.247616210000004,TJ,N2O,0.6,kg/TJ,36.748569726,kg +7b81147e-1548-38df-b8e3-6c6c62e8248f,SESCO,II.1.1,Formosa,AR-P,annual,2020,bioetanol combustion consumption by to the public,14.934042089999998,TJ,CH4,10.0,kg/TJ,149.34042089999997,kg +6f77dcd0-290e-3799-ab57-354ae6967b4b,SESCO,II.1.1,Formosa,AR-P,annual,2020,bioetanol combustion consumption by to the public,14.934042089999998,TJ,N2O,0.6,kg/TJ,8.960425253999999,kg +19bea1f7-558e-3163-b870-6edf61ddec9a,SESCO,II.1.1,Jujuy,AR-Y,annual,2020,bioetanol combustion consumption by to the public,22.655314439999998,TJ,CH4,10.0,kg/TJ,226.55314439999998,kg +3ab02743-bd4a-3cc2-8886-f8d8a601d533,SESCO,II.1.1,Jujuy,AR-Y,annual,2020,bioetanol combustion consumption by to the public,22.655314439999998,TJ,N2O,0.6,kg/TJ,13.593188663999998,kg +5ae1a063-0166-346b-96bf-612d0385366b,SESCO,II.1.1,La Pampa,AR-L,annual,2020,bioetanol combustion consumption by to the public,48.77641395,TJ,CH4,10.0,kg/TJ,487.7641395,kg +75c4e332-80db-33bf-a9ab-5955ac1d8d8d,SESCO,II.1.1,La Pampa,AR-L,annual,2020,bioetanol combustion consumption by to the public,48.77641395,TJ,N2O,0.6,kg/TJ,29.265848369999997,kg +11d4cf96-5251-3fff-9c73-83f39c930992,SESCO,II.1.1,La Rioja,AR-F,annual,2020,bioetanol combustion consumption by to the public,19.1215728,TJ,CH4,10.0,kg/TJ,191.21572799999998,kg +88d91ba3-845d-3847-9013-26f6b656ca98,SESCO,II.1.1,La Rioja,AR-F,annual,2020,bioetanol combustion consumption by to the public,19.1215728,TJ,N2O,0.6,kg/TJ,11.472943679999998,kg +2b7088c7-7b7f-3888-898e-154509da4c35,SESCO,II.1.1,Mendoza,AR-M,annual,2020,bioetanol combustion consumption by to the public,130.98043034999998,TJ,CH4,10.0,kg/TJ,1309.8043034999998,kg +de74b3aa-1ad8-30a3-962a-1b3a5383e0ea,SESCO,II.1.1,Mendoza,AR-M,annual,2020,bioetanol combustion consumption by to the public,130.98043034999998,TJ,N2O,0.6,kg/TJ,78.58825820999998,kg +1fc64bff-a866-3f8b-a619-aa242eed0590,SESCO,II.1.1,Misiones,AR-N,annual,2020,bioetanol combustion consumption by to the public,47.94453179999999,TJ,CH4,10.0,kg/TJ,479.44531799999993,kg +c1002e36-0b9a-3cee-9702-3e363d7beff9,SESCO,II.1.1,Misiones,AR-N,annual,2020,bioetanol combustion consumption by to the public,47.94453179999999,TJ,N2O,0.6,kg/TJ,28.766719079999994,kg +775a20fc-b05c-3042-bbad-d0417d53de1f,SESCO,II.1.1,Neuquén,AR-Q,annual,2020,bioetanol combustion consumption by to the public,91.43204994,TJ,CH4,10.0,kg/TJ,914.3204994,kg +0fd126d5-fd30-347a-b637-f12785ce9e3b,SESCO,II.1.1,Neuquén,AR-Q,annual,2020,bioetanol combustion consumption by to the public,91.43204994,TJ,N2O,0.6,kg/TJ,54.859229964,kg +20710374-4895-3895-80b6-543c807a6b9f,SESCO,II.1.1,Rio Negro,AR-R,annual,2020,bioetanol combustion consumption by to the public,77.17523022,TJ,CH4,10.0,kg/TJ,771.7523022,kg +aeca245f-5bf5-3b80-8e54-0794cc0f5fba,SESCO,II.1.1,Rio Negro,AR-R,annual,2020,bioetanol combustion consumption by to the public,77.17523022,TJ,N2O,0.6,kg/TJ,46.305138132,kg +8f5eb728-03c3-3e5b-9a8b-94031c7b139f,SESCO,II.1.1,Salta,AR-A,annual,2020,bioetanol combustion consumption by to the public,53.54040384,TJ,CH4,10.0,kg/TJ,535.4040384,kg +3b51c876-e85e-3bc7-9d05-f5579634babe,SESCO,II.1.1,Salta,AR-A,annual,2020,bioetanol combustion consumption by to the public,53.54040384,TJ,N2O,0.6,kg/TJ,32.124242304,kg +6ac1ee60-ab93-35fe-bb57-9ea9ef51c61e,SESCO,II.1.1,San Juan,AR-J,annual,2020,bioetanol combustion consumption by to the public,39.39372063,TJ,CH4,10.0,kg/TJ,393.93720629999996,kg +28585d89-1531-360d-b2ce-bab4d1a8aea1,SESCO,II.1.1,San Juan,AR-J,annual,2020,bioetanol combustion consumption by to the public,39.39372063,TJ,N2O,0.6,kg/TJ,23.636232378,kg +ebb6e8e3-2a5b-3e65-a2c5-341a14fe6f02,SESCO,II.1.1,San Luis,AR-D,annual,2020,bioetanol combustion consumption by to the public,28.95887214,TJ,CH4,10.0,kg/TJ,289.5887214,kg +f94587c0-eae0-30e8-9ecf-226b3a4baca1,SESCO,II.1.1,San Luis,AR-D,annual,2020,bioetanol combustion consumption by to the public,28.95887214,TJ,N2O,0.6,kg/TJ,17.375323284,kg +f6612f18-b2f1-3f5a-a8fc-0a67e12c4a3f,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2020,bioetanol combustion consumption by to the public,26.72333532,TJ,CH4,10.0,kg/TJ,267.2333532,kg +58d0ca13-b452-3372-8f18-9ea486ccb4e1,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2020,bioetanol combustion consumption by to the public,26.72333532,TJ,N2O,0.6,kg/TJ,16.034001191999998,kg +35bf539a-ff69-3440-87af-87d4126048fe,SESCO,II.1.1,Santa Fe,AR-S,annual,2020,bioetanol combustion consumption by to the public,162.09047943,TJ,CH4,10.0,kg/TJ,1620.9047942999998,kg +1055b9f0-80ef-3ebe-aafc-c1a82124129e,SESCO,II.1.1,Santa Fe,AR-S,annual,2020,bioetanol combustion consumption by to the public,162.09047943,TJ,N2O,0.6,kg/TJ,97.254287658,kg +8be86413-6a79-3fd4-a1b9-3a30340f6dda,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2020,bioetanol combustion consumption by to the public,27.023281559999997,TJ,CH4,10.0,kg/TJ,270.2328156,kg +e1ab2287-9a0c-32c6-b1b5-9a05dcf87891,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2020,bioetanol combustion consumption by to the public,27.023281559999997,TJ,N2O,0.6,kg/TJ,16.213968935999997,kg +8597d6ab-1d57-3f57-bdfe-d4834551f618,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2020,bioetanol combustion consumption by to the public,17.842114619999997,TJ,CH4,10.0,kg/TJ,178.42114619999995,kg +d347b519-72ef-39fb-9fe5-bc9ba3426956,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2020,bioetanol combustion consumption by to the public,17.842114619999997,TJ,N2O,0.6,kg/TJ,10.705268771999998,kg +32e3d932-b4e0-3d14-82c5-4bf71ab09b84,SESCO,II.1.1,Tucuman,AR-T,annual,2020,bioetanol combustion consumption by to the public,43.143048629999996,TJ,CH4,10.0,kg/TJ,431.4304863,kg +3dacbac6-aabc-370c-9cae-1e001d47f115,SESCO,II.1.1,Tucuman,AR-T,annual,2020,bioetanol combustion consumption by to the public,43.143048629999996,TJ,N2O,0.6,kg/TJ,25.885829177999998,kg +67229b3f-1545-3b0e-95d9-008fda8cdd87,SESCO,II.1.1,Buenos Aires,AR-B,annual,2020,bioetanol combustion consumption by freight transport,20.86266699,TJ,CH4,10.0,kg/TJ,208.62666990000002,kg +250b71dd-2408-3819-bfce-98a3a0706434,SESCO,II.1.1,Buenos Aires,AR-B,annual,2020,bioetanol combustion consumption by freight transport,20.86266699,TJ,N2O,0.6,kg/TJ,12.517600194,kg +1c5b6a69-6920-3500-a8eb-ff79ac837696,SESCO,II.1.1,Capital Federal,AR-C,annual,2020,bioetanol combustion consumption by freight transport,23.44501665,TJ,CH4,10.0,kg/TJ,234.4501665,kg +8ae75327-4bd1-3425-b1b4-63df4974be60,SESCO,II.1.1,Capital Federal,AR-C,annual,2020,bioetanol combustion consumption by freight transport,23.44501665,TJ,N2O,0.6,kg/TJ,14.067009989999999,kg +9d335193-736c-3644-a85b-61f60973987c,SESCO,II.1.1,Catamarca,AR-K,annual,2020,bioetanol combustion consumption by freight transport,0.01640331,TJ,CH4,10.0,kg/TJ,0.16403310000000002,kg +64de60ed-52a5-3a6f-a213-8723d54e327d,SESCO,II.1.1,Catamarca,AR-K,annual,2020,bioetanol combustion consumption by freight transport,0.01640331,TJ,N2O,0.6,kg/TJ,0.009841986,kg +5ccddbd3-53c0-3f60-9a57-c6851d38687b,SESCO,II.1.1,Chaco,AR-H,annual,2020,bioetanol combustion consumption by freight transport,0.97013862,TJ,CH4,10.0,kg/TJ,9.7013862,kg +bc2158de-b1f7-31d7-b3a3-9d346314cb74,SESCO,II.1.1,Chaco,AR-H,annual,2020,bioetanol combustion consumption by freight transport,0.97013862,TJ,N2O,0.6,kg/TJ,0.5820831719999999,kg +8fabff79-4686-3cc3-9538-47d20e8a5502,SESCO,II.1.1,Chubut,AR-U,annual,2020,bioetanol combustion consumption by freight transport,1.4927012100000001,TJ,CH4,10.0,kg/TJ,14.9270121,kg +7b605c2c-467f-3054-b307-56ad5918c6d3,SESCO,II.1.1,Chubut,AR-U,annual,2020,bioetanol combustion consumption by freight transport,1.4927012100000001,TJ,N2O,0.6,kg/TJ,0.8956207260000001,kg +f9acf13f-e391-363c-af0c-05e6484bbd4e,SESCO,II.1.1,Corrientes,AR-W,annual,2020,bioetanol combustion consumption by freight transport,0.60692247,TJ,CH4,10.0,kg/TJ,6.0692246999999995,kg +a205d091-aa17-3d90-b0ca-e7a3a72b1725,SESCO,II.1.1,Corrientes,AR-W,annual,2020,bioetanol combustion consumption by freight transport,0.60692247,TJ,N2O,0.6,kg/TJ,0.364153482,kg +2a6c1abc-9b6c-371d-9f43-055fc9230a06,SESCO,II.1.1,Córdoba,AR-X,annual,2020,bioetanol combustion consumption by freight transport,4.4968502699999995,TJ,CH4,10.0,kg/TJ,44.968502699999995,kg +0358a389-1317-3746-bd35-81d7c896d02c,SESCO,II.1.1,Córdoba,AR-X,annual,2020,bioetanol combustion consumption by freight transport,4.4968502699999995,TJ,N2O,0.6,kg/TJ,2.6981101619999994,kg +0f1a9683-4af1-30a7-a581-fbd5b152872a,SESCO,II.1.1,Entre Rios,AR-E,annual,2020,bioetanol combustion consumption by freight transport,1.44349128,TJ,CH4,10.0,kg/TJ,14.4349128,kg +9e5c3c26-fdc2-39bb-b17b-c4ee270ad29e,SESCO,II.1.1,Entre Rios,AR-E,annual,2020,bioetanol combustion consumption by freight transport,1.44349128,TJ,N2O,0.6,kg/TJ,0.866094768,kg +3fd3df7b-9301-3811-b056-7c519c1713e8,SESCO,II.1.1,Formosa,AR-P,annual,2020,bioetanol combustion consumption by freight transport,0.03983661,TJ,CH4,10.0,kg/TJ,0.3983661,kg +a640de51-3f86-30e6-a684-07717186f188,SESCO,II.1.1,Formosa,AR-P,annual,2020,bioetanol combustion consumption by freight transport,0.03983661,TJ,N2O,0.6,kg/TJ,0.023901966,kg +dcf83364-550f-3c5f-829b-a89ce0051f1c,SESCO,II.1.1,Jujuy,AR-Y,annual,2020,bioetanol combustion consumption by freight transport,0.16871976,TJ,CH4,10.0,kg/TJ,1.6871976,kg +5f45f360-8dda-38ba-acda-8c8357439271,SESCO,II.1.1,Jujuy,AR-Y,annual,2020,bioetanol combustion consumption by freight transport,0.16871976,TJ,N2O,0.6,kg/TJ,0.101231856,kg +e6d8242e-fe8b-39c9-af60-c5345815ad01,SESCO,II.1.1,La Pampa,AR-L,annual,2020,bioetanol combustion consumption by freight transport,0.50850261,TJ,CH4,10.0,kg/TJ,5.085026099999999,kg +dd98045c-db51-39f9-b0c2-f8a35c6a32f5,SESCO,II.1.1,La Pampa,AR-L,annual,2020,bioetanol combustion consumption by freight transport,0.50850261,TJ,N2O,0.6,kg/TJ,0.305101566,kg +590900b8-4768-3ea6-bec9-ba970a11e834,SESCO,II.1.1,La Rioja,AR-F,annual,2020,bioetanol combustion consumption by freight transport,0.04920993,TJ,CH4,10.0,kg/TJ,0.4920993,kg +35bec974-a7ff-30d9-8b8d-8d9e76144315,SESCO,II.1.1,La Rioja,AR-F,annual,2020,bioetanol combustion consumption by freight transport,0.04920993,TJ,N2O,0.6,kg/TJ,0.029525957999999998,kg +c8d51d9f-135d-39cd-bf2a-59ce6f858db4,SESCO,II.1.1,Mendoza,AR-M,annual,2020,bioetanol combustion consumption by freight transport,2.0504137499999997,TJ,CH4,10.0,kg/TJ,20.5041375,kg +b755d19a-5bef-33d2-acfb-b3d83c4bd4fd,SESCO,II.1.1,Mendoza,AR-M,annual,2020,bioetanol combustion consumption by freight transport,2.0504137499999997,TJ,N2O,0.6,kg/TJ,1.2302482499999998,kg +68351de9-fce4-3cff-979d-a9713883bcdd,SESCO,II.1.1,Misiones,AR-N,annual,2020,bioetanol combustion consumption by freight transport,0.47335266,TJ,CH4,10.0,kg/TJ,4.733526599999999,kg +4d52bbc7-3bba-3995-ba4d-5ecddd2fe391,SESCO,II.1.1,Misiones,AR-N,annual,2020,bioetanol combustion consumption by freight transport,0.47335266,TJ,N2O,0.6,kg/TJ,0.284011596,kg +30a3d132-7cac-3156-8281-b3a8209a7a78,SESCO,II.1.1,Neuquén,AR-Q,annual,2020,bioetanol combustion consumption by freight transport,0.59520582,TJ,CH4,10.0,kg/TJ,5.9520582,kg +38d9ae93-8f07-3a9f-9878-e3b7a53f118a,SESCO,II.1.1,Neuquén,AR-Q,annual,2020,bioetanol combustion consumption by freight transport,0.59520582,TJ,N2O,0.6,kg/TJ,0.357123492,kg +02db61c7-f110-31bc-9cb1-12f077b3aaaa,SESCO,II.1.1,Rio Negro,AR-R,annual,2020,bioetanol combustion consumption by freight transport,1.08730512,TJ,CH4,10.0,kg/TJ,10.873051199999999,kg +492278ec-1dac-38e5-80f9-4fbc21f0fa54,SESCO,II.1.1,Rio Negro,AR-R,annual,2020,bioetanol combustion consumption by freight transport,1.08730512,TJ,N2O,0.6,kg/TJ,0.6523830719999999,kg +2d934582-8a8d-3809-8440-0febbc3d87a7,SESCO,II.1.1,Salta,AR-A,annual,2020,bioetanol combustion consumption by freight transport,1.1810383199999999,TJ,CH4,10.0,kg/TJ,11.810383199999999,kg +dfce9781-ceba-3734-b70c-6b26cd30534a,SESCO,II.1.1,Salta,AR-A,annual,2020,bioetanol combustion consumption by freight transport,1.1810383199999999,TJ,N2O,0.6,kg/TJ,0.7086229919999999,kg +15bd1748-7ca1-3600-b256-b8335ab20fdc,SESCO,II.1.1,San Juan,AR-J,annual,2020,bioetanol combustion consumption by freight transport,0.29994624,TJ,CH4,10.0,kg/TJ,2.9994623999999996,kg +06db8e01-7999-39c2-92f9-4fe6042d2e76,SESCO,II.1.1,San Juan,AR-J,annual,2020,bioetanol combustion consumption by freight transport,0.29994624,TJ,N2O,0.6,kg/TJ,0.17996774399999999,kg +c14c2bb2-822f-3d5a-a317-a6d9f8f8316c,SESCO,II.1.1,San Luis,AR-D,annual,2020,bioetanol combustion consumption by freight transport,0.32103621,TJ,CH4,10.0,kg/TJ,3.2103620999999998,kg +09797079-7c11-318b-919b-29e595203d30,SESCO,II.1.1,San Luis,AR-D,annual,2020,bioetanol combustion consumption by freight transport,0.32103621,TJ,N2O,0.6,kg/TJ,0.192621726,kg +84387b36-5405-31ea-9e76-370aaef02db8,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2020,bioetanol combustion consumption by freight transport,0.17809308,TJ,CH4,10.0,kg/TJ,1.7809308,kg +c493cab5-d256-3779-9c2b-9ccf8c320fba,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2020,bioetanol combustion consumption by freight transport,0.17809308,TJ,N2O,0.6,kg/TJ,0.10685584799999999,kg +27b7c076-f81c-38e2-b8b1-60b4f239eeb2,SESCO,II.1.1,Santa Fe,AR-S,annual,2020,bioetanol combustion consumption by freight transport,4.0539609,TJ,CH4,10.0,kg/TJ,40.539609,kg +fd4eeedb-a6c3-304d-9fe1-6535e1f54620,SESCO,II.1.1,Santa Fe,AR-S,annual,2020,bioetanol combustion consumption by freight transport,4.0539609,TJ,N2O,0.6,kg/TJ,2.43237654,kg +9a2612c3-74fc-307a-939a-24c2bf3df053,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2020,bioetanol combustion consumption by freight transport,0.07732989,TJ,CH4,10.0,kg/TJ,0.7732989,kg +055d0748-c2d3-3189-875b-741838cfb925,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2020,bioetanol combustion consumption by freight transport,0.07732989,TJ,N2O,0.6,kg/TJ,0.046397933999999995,kg +c61486b3-6edc-36e2-8496-ff1dcd7c8a31,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2020,bioetanol combustion consumption by freight transport,0.59989248,TJ,CH4,10.0,kg/TJ,5.998924799999999,kg +172f6ab4-4c48-3d5c-ad36-403659de3d48,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2020,bioetanol combustion consumption by freight transport,0.59989248,TJ,N2O,0.6,kg/TJ,0.35993548799999997,kg +ffd54af2-50e9-39b6-8dde-c66c89411e13,SESCO,II.1.1,Tucuman,AR-T,annual,2020,bioetanol combustion consumption by freight transport,1.09902177,TJ,CH4,10.0,kg/TJ,10.9902177,kg +ee71d225-1092-3d01-97fb-a331e99a73af,SESCO,II.1.1,Tucuman,AR-T,annual,2020,bioetanol combustion consumption by freight transport,1.09902177,TJ,N2O,0.6,kg/TJ,0.6594130619999999,kg +4292011b-ac53-35a3-a645-e5f0bbe42296,SESCO,II.1.1,Buenos Aires,AR-B,annual,2020,bioetanol combustion consumption by freight transport,13.71785382,TJ,CH4,10.0,kg/TJ,137.1785382,kg +719105cb-6960-397b-b0de-39b8e8091d5f,SESCO,II.1.1,Buenos Aires,AR-B,annual,2020,bioetanol combustion consumption by freight transport,13.71785382,TJ,N2O,0.6,kg/TJ,8.230712292,kg +cabe19fa-a547-365e-9510-2fde4806bcb2,SESCO,II.1.1,Capital Federal,AR-C,annual,2020,bioetanol combustion consumption by freight transport,22.06245195,TJ,CH4,10.0,kg/TJ,220.6245195,kg +0820b60f-fb85-3bf2-88ec-ee91d14e6a2a,SESCO,II.1.1,Capital Federal,AR-C,annual,2020,bioetanol combustion consumption by freight transport,22.06245195,TJ,N2O,0.6,kg/TJ,13.23747117,kg +42f58d13-27e7-3f3f-bf5f-1bf7f9bf1e94,SESCO,II.1.1,Catamarca,AR-K,annual,2020,bioetanol combustion consumption by freight transport,0.00937332,TJ,CH4,10.0,kg/TJ,0.09373319999999999,kg +0dc320e9-0e3f-37af-9e4d-3c105aba927e,SESCO,II.1.1,Catamarca,AR-K,annual,2020,bioetanol combustion consumption by freight transport,0.00937332,TJ,N2O,0.6,kg/TJ,0.0056239919999999995,kg +399560d4-28cc-389e-a660-77b278c919f3,SESCO,II.1.1,Chaco,AR-H,annual,2020,bioetanol combustion consumption by freight transport,0.37961945999999996,TJ,CH4,10.0,kg/TJ,3.7961945999999998,kg +127b972d-c9e6-3012-8a43-82fa83691c68,SESCO,II.1.1,Chaco,AR-H,annual,2020,bioetanol combustion consumption by freight transport,0.37961945999999996,TJ,N2O,0.6,kg/TJ,0.22777167599999998,kg +e205dc14-0e0b-30e5-8dff-e58f6a77e14a,SESCO,II.1.1,Chubut,AR-U,annual,2020,bioetanol combustion consumption by freight transport,0.61863912,TJ,CH4,10.0,kg/TJ,6.1863912,kg +a4bdf664-3fe4-37dc-a6c5-c0e3f06ddcc1,SESCO,II.1.1,Chubut,AR-U,annual,2020,bioetanol combustion consumption by freight transport,0.61863912,TJ,N2O,0.6,kg/TJ,0.37118347199999996,kg +0c8d985e-1e8d-35f5-8d23-922a1b0aadd1,SESCO,II.1.1,Corrientes,AR-W,annual,2020,bioetanol combustion consumption by freight transport,0.76626891,TJ,CH4,10.0,kg/TJ,7.6626891,kg +1eb76fe5-699d-3756-a38d-407ff6c7e00e,SESCO,II.1.1,Corrientes,AR-W,annual,2020,bioetanol combustion consumption by freight transport,0.76626891,TJ,N2O,0.6,kg/TJ,0.45976134599999996,kg +554002fd-95b0-3104-8579-1b53822e82d4,SESCO,II.1.1,Córdoba,AR-X,annual,2020,bioetanol combustion consumption by freight transport,9.38269332,TJ,CH4,10.0,kg/TJ,93.8269332,kg +9db352f7-6cb7-3bc9-a8f5-f4749c28e847,SESCO,II.1.1,Córdoba,AR-X,annual,2020,bioetanol combustion consumption by freight transport,9.38269332,TJ,N2O,0.6,kg/TJ,5.629615992,kg +07c977a8-3d14-327b-af3d-805272f40f62,SESCO,II.1.1,Entre Rios,AR-E,annual,2020,bioetanol combustion consumption by freight transport,1.27711485,TJ,CH4,10.0,kg/TJ,12.7711485,kg +540fe75c-f4f2-39b6-be26-5fa8f63ee7c8,SESCO,II.1.1,Entre Rios,AR-E,annual,2020,bioetanol combustion consumption by freight transport,1.27711485,TJ,N2O,0.6,kg/TJ,0.76626891,kg +4c412e63-945c-3bd5-965e-ac0947e12070,SESCO,II.1.1,Formosa,AR-P,annual,2020,bioetanol combustion consumption by freight transport,0.02811996,TJ,CH4,10.0,kg/TJ,0.2811996,kg +45fdfd77-36a2-30ac-8c15-17dd5c14541c,SESCO,II.1.1,Formosa,AR-P,annual,2020,bioetanol combustion consumption by freight transport,0.02811996,TJ,N2O,0.6,kg/TJ,0.016871976,kg +b4ae5967-8941-3cbf-857e-c78b93be6529,SESCO,II.1.1,Jujuy,AR-Y,annual,2020,bioetanol combustion consumption by freight transport,0.12888315,TJ,CH4,10.0,kg/TJ,1.2888315000000001,kg +aa5554b8-7a0b-3380-b0a3-7c3a86a46274,SESCO,II.1.1,Jujuy,AR-Y,annual,2020,bioetanol combustion consumption by freight transport,0.12888315,TJ,N2O,0.6,kg/TJ,0.07732989,kg +25c793dc-f656-35fe-861e-7c6612624eb4,SESCO,II.1.1,La Pampa,AR-L,annual,2020,bioetanol combustion consumption by freight transport,0.26713962,TJ,CH4,10.0,kg/TJ,2.6713962,kg +5b119605-d3f9-3894-96aa-8ed5fed4155a,SESCO,II.1.1,La Pampa,AR-L,annual,2020,bioetanol combustion consumption by freight transport,0.26713962,TJ,N2O,0.6,kg/TJ,0.16028377200000002,kg +953dc6fa-4bcf-371b-b08a-2622480621a2,SESCO,II.1.1,La Rioja,AR-F,annual,2020,bioetanol combustion consumption by freight transport,0.16168976999999998,TJ,CH4,10.0,kg/TJ,1.6168976999999998,kg +09319f91-8065-3bc6-bde3-9e2a26191879,SESCO,II.1.1,La Rioja,AR-F,annual,2020,bioetanol combustion consumption by freight transport,0.16168976999999998,TJ,N2O,0.6,kg/TJ,0.09701386199999999,kg +ada2d9b4-a22f-3715-829d-931dabd6ab5e,SESCO,II.1.1,Mendoza,AR-M,annual,2020,bioetanol combustion consumption by freight transport,3.36970854,TJ,CH4,10.0,kg/TJ,33.6970854,kg +3c73c240-7a5c-32aa-a13e-ef7c26926001,SESCO,II.1.1,Mendoza,AR-M,annual,2020,bioetanol combustion consumption by freight transport,3.36970854,TJ,N2O,0.6,kg/TJ,2.021825124,kg +6a7632f5-a8bf-3d0a-9e5a-ddc1c929463f,SESCO,II.1.1,Misiones,AR-N,annual,2020,bioetanol combustion consumption by freight transport,0.57177252,TJ,CH4,10.0,kg/TJ,5.7177252,kg +cd62c366-4765-3f40-bbe5-006fd9a63cd4,SESCO,II.1.1,Misiones,AR-N,annual,2020,bioetanol combustion consumption by freight transport,0.57177252,TJ,N2O,0.6,kg/TJ,0.343063512,kg +315c4db7-9030-3218-8e7d-75954351b954,SESCO,II.1.1,Neuquén,AR-Q,annual,2020,bioetanol combustion consumption by freight transport,1.69422759,TJ,CH4,10.0,kg/TJ,16.9422759,kg +de22f63c-f348-3555-9847-f9b58a60d7af,SESCO,II.1.1,Neuquén,AR-Q,annual,2020,bioetanol combustion consumption by freight transport,1.69422759,TJ,N2O,0.6,kg/TJ,1.016536554,kg +2ae883d9-7676-3a9d-bb9a-f38e1dc54fe9,SESCO,II.1.1,Rio Negro,AR-R,annual,2020,bioetanol combustion consumption by freight transport,3.2642586899999997,TJ,CH4,10.0,kg/TJ,32.6425869,kg +fe069eed-ecd7-3c49-8c0c-23bab78ab2ae,SESCO,II.1.1,Rio Negro,AR-R,annual,2020,bioetanol combustion consumption by freight transport,3.2642586899999997,TJ,N2O,0.6,kg/TJ,1.9585552139999998,kg +3ff4f572-a732-30a3-9ed6-dce2b30794a7,SESCO,II.1.1,Salta,AR-A,annual,2020,bioetanol combustion consumption by freight transport,0.96779529,TJ,CH4,10.0,kg/TJ,9.6779529,kg +c7372dc1-fb69-3163-b77c-00036300c42e,SESCO,II.1.1,Salta,AR-A,annual,2020,bioetanol combustion consumption by freight transport,0.96779529,TJ,N2O,0.6,kg/TJ,0.580677174,kg +59ff752a-c957-3874-853f-bb943de49a3d,SESCO,II.1.1,San Juan,AR-J,annual,2020,bioetanol combustion consumption by freight transport,0.11950983,TJ,CH4,10.0,kg/TJ,1.1950983,kg +92dc6860-b3ef-38a8-8b04-dc95f32fddd3,SESCO,II.1.1,San Juan,AR-J,annual,2020,bioetanol combustion consumption by freight transport,0.11950983,TJ,N2O,0.6,kg/TJ,0.07170589799999999,kg +298ed66a-c800-32fc-b9a5-ab8fb020c6b8,SESCO,II.1.1,San Luis,AR-D,annual,2020,bioetanol combustion consumption by freight transport,0.29057292,TJ,CH4,10.0,kg/TJ,2.9057292,kg +9ae2e8e6-90c1-3ad2-8e3e-99c045b6e931,SESCO,II.1.1,San Luis,AR-D,annual,2020,bioetanol combustion consumption by freight transport,0.29057292,TJ,N2O,0.6,kg/TJ,0.174343752,kg +4fbdcdb4-b19a-3df6-bb17-94d514b72549,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2020,bioetanol combustion consumption by freight transport,0.13591314,TJ,CH4,10.0,kg/TJ,1.3591313999999999,kg +fc2bfbc0-d6a6-31b5-909d-92ea88654ac0,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2020,bioetanol combustion consumption by freight transport,0.13591314,TJ,N2O,0.6,kg/TJ,0.08154788399999999,kg +845c6aa8-fc68-32bd-9020-440eb85a1f51,SESCO,II.1.1,Santa Fe,AR-S,annual,2020,bioetanol combustion consumption by freight transport,4.45935699,TJ,CH4,10.0,kg/TJ,44.5935699,kg +bae9440e-311d-336a-82a6-e533b1e2ba77,SESCO,II.1.1,Santa Fe,AR-S,annual,2020,bioetanol combustion consumption by freight transport,4.45935699,TJ,N2O,0.6,kg/TJ,2.675614194,kg +445335d6-0f41-30e6-842a-f48e0bc0e685,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2020,bioetanol combustion consumption by freight transport,0.10310652,TJ,CH4,10.0,kg/TJ,1.0310652,kg +5fe17bf7-6852-3c68-b3f5-196451f7a48a,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2020,bioetanol combustion consumption by freight transport,0.10310652,TJ,N2O,0.6,kg/TJ,0.06186391199999999,kg +89943ff1-f12d-3cc7-9520-011789d0c102,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2020,bioetanol combustion consumption by freight transport,0.17809308,TJ,CH4,10.0,kg/TJ,1.7809308,kg +b8e4c7e2-01de-3692-85d3-acef62dd318d,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2020,bioetanol combustion consumption by freight transport,0.17809308,TJ,N2O,0.6,kg/TJ,0.10685584799999999,kg +7fbb2787-4899-34f9-9c26-188e06fc44c8,SESCO,II.1.1,Tucuman,AR-T,annual,2020,bioetanol combustion consumption by freight transport,0.46397934,TJ,CH4,10.0,kg/TJ,4.6397934,kg +f00c9915-21b7-376f-a268-b309af4a067e,SESCO,II.1.1,Tucuman,AR-T,annual,2020,bioetanol combustion consumption by freight transport,0.46397934,TJ,N2O,0.6,kg/TJ,0.278387604,kg +8c6ece75-dc47-3ca8-a664-21aa178b8119,SESCO,II.5.1,Buenos Aires,AR-B,annual,2021,bioetanol combustion consumption by agriculture machines,0.5976258407999999,TJ,CH4,10.0,kg/TJ,5.976258408,kg +7577d7d7-a173-3d1b-bcec-94d4757b9abe,SESCO,II.5.1,Buenos Aires,AR-B,annual,2021,bioetanol combustion consumption by agriculture machines,0.5976258407999999,TJ,N2O,0.6,kg/TJ,0.3585755044799999,kg +997a4f2c-09fb-3dda-bb38-d01c84a7822c,SESCO,II.5.1,Córdoba,AR-X,annual,2021,bioetanol combustion consumption by agriculture machines,0.17383247999999998,TJ,CH4,10.0,kg/TJ,1.7383247999999998,kg +4ced7332-53d4-3a62-8513-c94371d09456,SESCO,II.5.1,Córdoba,AR-X,annual,2021,bioetanol combustion consumption by agriculture machines,0.17383247999999998,TJ,N2O,0.6,kg/TJ,0.10429948799999998,kg +37a287b0-8396-3b20-a9b2-deeb3c30d264,SESCO,II.5.1,Santa Fe,AR-S,annual,2021,bioetanol combustion consumption by agriculture machines,0.5138283599999999,TJ,CH4,10.0,kg/TJ,5.1382835999999985,kg +85da1ca2-eebd-350d-961e-b127eb8f33c3,SESCO,II.5.1,Santa Fe,AR-S,annual,2021,bioetanol combustion consumption by agriculture machines,0.5138283599999999,TJ,N2O,0.6,kg/TJ,0.3082970159999999,kg +cd74402f-0531-3761-b4d5-04bbeb1c679e,SESCO,II.5.1,Buenos Aires,AR-B,annual,2021,bioetanol combustion consumption by agriculture machines,0.10481075999999999,TJ,CH4,10.0,kg/TJ,1.0481075999999998,kg +e60657ad-9732-32eb-bf91-4b1f6e160542,SESCO,II.5.1,Buenos Aires,AR-B,annual,2021,bioetanol combustion consumption by agriculture machines,0.10481075999999999,TJ,N2O,0.6,kg/TJ,0.062886456,kg +af642404-c5c5-31f3-a9e7-0008bb7db7ec,SESCO,II.5.1,Córdoba,AR-X,annual,2021,bioetanol combustion consumption by agriculture machines,0.043458119999999996,TJ,CH4,10.0,kg/TJ,0.43458119999999995,kg +d5bc3141-30b1-3283-b409-8017e7eafd4e,SESCO,II.5.1,Córdoba,AR-X,annual,2021,bioetanol combustion consumption by agriculture machines,0.043458119999999996,TJ,N2O,0.6,kg/TJ,0.026074871999999995,kg +9468589b-08aa-3104-ad9d-baf4743e991e,SESCO,II.1.1,Buenos Aires,AR-B,annual,2021,bioetanol combustion consumption by to the public,74.64315563999999,TJ,CH4,10.0,kg/TJ,746.4315563999999,kg +f120f924-d7a2-3da7-8d45-1acb775f2327,SESCO,II.1.1,Buenos Aires,AR-B,annual,2021,bioetanol combustion consumption by to the public,74.64315563999999,TJ,N2O,0.6,kg/TJ,44.78589338399999,kg +8c5ab38f-67f5-395b-9ab9-cda7ac8c7a7d,SESCO,II.1.1,Capital Federal,AR-C,annual,2021,bioetanol combustion consumption by to the public,4.29724116,TJ,CH4,10.0,kg/TJ,42.972411599999994,kg +d3fbf987-4c17-38ce-9638-411bff9a5777,SESCO,II.1.1,Capital Federal,AR-C,annual,2021,bioetanol combustion consumption by to the public,4.29724116,TJ,N2O,0.6,kg/TJ,2.578344696,kg +b27a6188-8d29-3036-8eed-571059f04f09,SESCO,II.1.1,Catamarca,AR-K,annual,2021,bioetanol combustion consumption by to the public,2.7225233999999996,TJ,CH4,10.0,kg/TJ,27.225233999999997,kg +cc80f814-8031-3354-a077-61b721526460,SESCO,II.1.1,Catamarca,AR-K,annual,2021,bioetanol combustion consumption by to the public,2.7225233999999996,TJ,N2O,0.6,kg/TJ,1.6335140399999997,kg +ce2d013e-8646-360a-899e-39d9b1907610,SESCO,II.1.1,Chaco,AR-H,annual,2021,bioetanol combustion consumption by to the public,0.7490134799999999,TJ,CH4,10.0,kg/TJ,7.490134799999999,kg +da58dc82-4184-3f32-ae9e-a890d7dca818,SESCO,II.1.1,Chaco,AR-H,annual,2021,bioetanol combustion consumption by to the public,0.7490134799999999,TJ,N2O,0.6,kg/TJ,0.44940808799999993,kg +e9fa4cae-2fa2-359e-bf20-532b29045943,SESCO,II.1.1,Corrientes,AR-W,annual,2021,bioetanol combustion consumption by to the public,1.11457296,TJ,CH4,10.0,kg/TJ,11.145729600000001,kg +5e32f2e7-b8ad-3e87-b32f-0f92d8ab6af3,SESCO,II.1.1,Corrientes,AR-W,annual,2021,bioetanol combustion consumption by to the public,1.11457296,TJ,N2O,0.6,kg/TJ,0.668743776,kg +65c661ea-82b4-320d-95a1-1eb07acc1d59,SESCO,II.1.1,Córdoba,AR-X,annual,2021,bioetanol combustion consumption by to the public,35.30077524,TJ,CH4,10.0,kg/TJ,353.0077524,kg +bd42de50-4292-3adf-8863-456d852b36cd,SESCO,II.1.1,Córdoba,AR-X,annual,2021,bioetanol combustion consumption by to the public,35.30077524,TJ,N2O,0.6,kg/TJ,21.180465144,kg +5c03102d-422e-3c09-9a56-68b274d9ceab,SESCO,II.1.1,Entre Rios,AR-E,annual,2021,bioetanol combustion consumption by to the public,9.64770264,TJ,CH4,10.0,kg/TJ,96.4770264,kg +f38126e0-2f7c-3db0-a86a-5a4c3b344529,SESCO,II.1.1,Entre Rios,AR-E,annual,2021,bioetanol combustion consumption by to the public,9.64770264,TJ,N2O,0.6,kg/TJ,5.788621584,kg +088a703e-1557-328f-b13a-26fa37f9d5bf,SESCO,II.1.1,Mendoza,AR-M,annual,2021,bioetanol combustion consumption by to the public,22.738822199999998,TJ,CH4,10.0,kg/TJ,227.38822199999998,kg +426cc70e-8041-3b7e-9b1c-88eb41882f42,SESCO,II.1.1,Mendoza,AR-M,annual,2021,bioetanol combustion consumption by to the public,22.738822199999998,TJ,N2O,0.6,kg/TJ,13.643293319999998,kg +46fef6b2-e1f8-3bea-9ab9-6c7809b9ffaa,SESCO,II.1.1,San Juan,AR-J,annual,2021,bioetanol combustion consumption by to the public,0.29142503999999997,TJ,CH4,10.0,kg/TJ,2.9142504,kg +c770c777-db7f-3c63-bee9-3ae6314fe113,SESCO,II.1.1,San Juan,AR-J,annual,2021,bioetanol combustion consumption by to the public,0.29142503999999997,TJ,N2O,0.6,kg/TJ,0.17485502399999997,kg +2f220e00-307f-35c2-a2ec-1d3307e510fa,SESCO,II.1.1,San Luis,AR-D,annual,2021,bioetanol combustion consumption by to the public,4.166866799999999,TJ,CH4,10.0,kg/TJ,41.668668,kg +7ef13dd6-d1b0-3e88-be6f-b4d8b93247bc,SESCO,II.1.1,San Luis,AR-D,annual,2021,bioetanol combustion consumption by to the public,4.166866799999999,TJ,N2O,0.6,kg/TJ,2.5001200799999994,kg +5c005299-0d80-39ac-8e49-c308dddb3d12,SESCO,II.1.1,Santa Fe,AR-S,annual,2021,bioetanol combustion consumption by to the public,26.15411916,TJ,CH4,10.0,kg/TJ,261.5411916,kg +a775e75d-c62d-3d62-a63e-c4e24799e7bc,SESCO,II.1.1,Santa Fe,AR-S,annual,2021,bioetanol combustion consumption by to the public,26.15411916,TJ,N2O,0.6,kg/TJ,15.692471496,kg +8effdcac-76fc-3f1c-b311-14ef194dcb0b,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2021,bioetanol combustion consumption by to the public,4.1413032,TJ,CH4,10.0,kg/TJ,41.413032,kg +4f1a3811-7fe0-3e90-aa98-a0dcb21ebece,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2021,bioetanol combustion consumption by to the public,4.1413032,TJ,N2O,0.6,kg/TJ,2.48478192,kg +7513a402-fff1-3886-8b84-72fd01f95ea8,SESCO,II.1.1,Tucuman,AR-T,annual,2021,bioetanol combustion consumption by to the public,2.22658956,TJ,CH4,10.0,kg/TJ,22.2658956,kg +349eb982-791c-3378-9b11-42953a252265,SESCO,II.1.1,Tucuman,AR-T,annual,2021,bioetanol combustion consumption by to the public,2.22658956,TJ,N2O,0.6,kg/TJ,1.3359537359999998,kg +8f1f0884-2e0b-3154-90c6-dadbaf3a94d9,SESCO,II.1.1,Buenos Aires,AR-B,annual,2021,bioetanol combustion consumption by to the public,5.309559719999999,TJ,CH4,10.0,kg/TJ,53.09559719999999,kg +8d50333e-ef62-3758-a4cf-febb7a332d3d,SESCO,II.1.1,Buenos Aires,AR-B,annual,2021,bioetanol combustion consumption by to the public,5.309559719999999,TJ,N2O,0.6,kg/TJ,3.1857358319999993,kg +ec505e57-1d26-3d39-9aab-3ddd0a9dfb9e,SESCO,II.1.1,Capital Federal,AR-C,annual,2021,bioetanol combustion consumption by to the public,0.7004426399999999,TJ,CH4,10.0,kg/TJ,7.004426399999999,kg +cb6de2a3-76bd-35d8-adbd-c0ac63f1c940,SESCO,II.1.1,Capital Federal,AR-C,annual,2021,bioetanol combustion consumption by to the public,0.7004426399999999,TJ,N2O,0.6,kg/TJ,0.4202655839999999,kg +b08fb1f3-1a54-3c8b-9268-4f92e03f9131,SESCO,II.1.1,Catamarca,AR-K,annual,2021,bioetanol combustion consumption by to the public,0.30931956,TJ,CH4,10.0,kg/TJ,3.0931956,kg +b4317ac1-f8f4-3871-8784-c7a9c8666977,SESCO,II.1.1,Catamarca,AR-K,annual,2021,bioetanol combustion consumption by to the public,0.30931956,TJ,N2O,0.6,kg/TJ,0.18559173599999998,kg +980b3ac5-06f1-335d-9f18-6f4701d2c61a,SESCO,II.1.1,Chaco,AR-H,annual,2021,bioetanol combustion consumption by to the public,0.017894519999999997,TJ,CH4,10.0,kg/TJ,0.17894519999999997,kg +d1ee5dd1-d789-3840-95c9-e86809dacb90,SESCO,II.1.1,Chaco,AR-H,annual,2021,bioetanol combustion consumption by to the public,0.017894519999999997,TJ,N2O,0.6,kg/TJ,0.010736711999999997,kg +7ddfba58-6a09-31d1-9796-1da53061420c,SESCO,II.1.1,Corrientes,AR-W,annual,2021,bioetanol combustion consumption by to the public,0.035789039999999994,TJ,CH4,10.0,kg/TJ,0.35789039999999994,kg +f4f590bc-45cd-3f77-a380-15beac892e57,SESCO,II.1.1,Corrientes,AR-W,annual,2021,bioetanol combustion consumption by to the public,0.035789039999999994,TJ,N2O,0.6,kg/TJ,0.021473423999999994,kg +36997a05-5fcd-35e7-8267-09a063d33402,SESCO,II.1.1,Córdoba,AR-X,annual,2021,bioetanol combustion consumption by to the public,3.5661222,TJ,CH4,10.0,kg/TJ,35.661222,kg +71306cd5-0b42-390a-80ba-8d81f3a81a13,SESCO,II.1.1,Córdoba,AR-X,annual,2021,bioetanol combustion consumption by to the public,3.5661222,TJ,N2O,0.6,kg/TJ,2.13967332,kg +e8c4cebc-bb27-3bf7-aec0-ee83ebf8d5cb,SESCO,II.1.1,Entre Rios,AR-E,annual,2021,bioetanol combustion consumption by to the public,0.77202072,TJ,CH4,10.0,kg/TJ,7.7202072,kg +cd55a858-a3ce-3689-a8ff-e10d6d770462,SESCO,II.1.1,Entre Rios,AR-E,annual,2021,bioetanol combustion consumption by to the public,0.77202072,TJ,N2O,0.6,kg/TJ,0.46321243199999995,kg +92dbc3ce-1394-30a5-bbd7-28f6e100a2d0,SESCO,II.1.1,Mendoza,AR-M,annual,2021,bioetanol combustion consumption by to the public,3.38206428,TJ,CH4,10.0,kg/TJ,33.8206428,kg +207ff150-c675-30b3-bbc6-24f391feada0,SESCO,II.1.1,Mendoza,AR-M,annual,2021,bioetanol combustion consumption by to the public,3.38206428,TJ,N2O,0.6,kg/TJ,2.029238568,kg +ec05a66e-6c99-3bd6-8572-81864ef4871d,SESCO,II.1.1,San Juan,AR-J,annual,2021,bioetanol combustion consumption by to the public,0.0255636,TJ,CH4,10.0,kg/TJ,0.255636,kg +b115e882-e144-3b16-9943-048c47474fc1,SESCO,II.1.1,San Juan,AR-J,annual,2021,bioetanol combustion consumption by to the public,0.0255636,TJ,N2O,0.6,kg/TJ,0.015338159999999998,kg +66527998-8c39-3df8-a673-bb831eda7ac7,SESCO,II.1.1,San Luis,AR-D,annual,2021,bioetanol combustion consumption by to the public,0.15338159999999998,TJ,CH4,10.0,kg/TJ,1.5338159999999998,kg +4a8b1c1d-71b8-3a5a-8a0a-e54cdc8beaa8,SESCO,II.1.1,San Luis,AR-D,annual,2021,bioetanol combustion consumption by to the public,0.15338159999999998,TJ,N2O,0.6,kg/TJ,0.09202895999999998,kg +8366f3f4-8f4e-3b05-b7d7-ff8ec4691bf1,SESCO,II.1.1,Santa Fe,AR-S,annual,2021,bioetanol combustion consumption by to the public,3.45364236,TJ,CH4,10.0,kg/TJ,34.5364236,kg +7779b0e4-da86-38e7-86e3-10a4adc17880,SESCO,II.1.1,Santa Fe,AR-S,annual,2021,bioetanol combustion consumption by to the public,3.45364236,TJ,N2O,0.6,kg/TJ,2.072185416,kg +696fbd33-659c-3d8c-8cca-8994b3a2d6df,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2021,bioetanol combustion consumption by to the public,0.5010465599999999,TJ,CH4,10.0,kg/TJ,5.010465599999999,kg +b59ad37d-3637-3ce9-aed2-8ed30a672a80,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2021,bioetanol combustion consumption by to the public,0.5010465599999999,TJ,N2O,0.6,kg/TJ,0.30062793599999993,kg +8492dee2-911a-31a9-8f77-a94515682ee1,SESCO,II.1.1,Tucuman,AR-T,annual,2021,bioetanol combustion consumption by to the public,0.015338159999999998,TJ,CH4,10.0,kg/TJ,0.15338159999999998,kg +e4c9483b-85af-356e-8055-adde5ba8ea71,SESCO,II.1.1,Tucuman,AR-T,annual,2021,bioetanol combustion consumption by to the public,0.015338159999999998,TJ,N2O,0.6,kg/TJ,0.009202895999999999,kg +f907bc0d-b35c-37db-9016-20956a8077d0,SESCO,II.5.1,Córdoba,AR-X,annual,2021,bioetanol combustion consumption by agriculture machines,0.46270115999999994,TJ,CH4,10.0,kg/TJ,4.6270115999999994,kg +529e0388-db37-3a2c-818c-cbada789b99d,SESCO,II.5.1,Córdoba,AR-X,annual,2021,bioetanol combustion consumption by agriculture machines,0.46270115999999994,TJ,N2O,0.6,kg/TJ,0.27762069599999994,kg +3c6fa9a9-6965-3260-b464-40db61a1a621,SESCO,II.5.1,Mendoza,AR-M,annual,2021,bioetanol combustion consumption by agriculture machines,0.12270527999999999,TJ,CH4,10.0,kg/TJ,1.2270527999999998,kg +1367eb42-fad6-3efa-9871-df90727a6942,SESCO,II.5.1,Mendoza,AR-M,annual,2021,bioetanol combustion consumption by agriculture machines,0.12270527999999999,TJ,N2O,0.6,kg/TJ,0.07362316799999999,kg +0e04fe80-4361-3510-87f0-210352339202,SESCO,II.5.1,Salta,AR-A,annual,2021,bioetanol combustion consumption by agriculture machines,0.030676319999999997,TJ,CH4,10.0,kg/TJ,0.30676319999999996,kg +c556fd6a-f5db-39a4-972f-42786c72fe52,SESCO,II.5.1,Salta,AR-A,annual,2021,bioetanol combustion consumption by agriculture machines,0.030676319999999997,TJ,N2O,0.6,kg/TJ,0.018405791999999997,kg +dc4de520-bbb5-3916-bf36-2bec8529b04e,SESCO,II.5.1,Córdoba,AR-X,annual,2021,bioetanol combustion consumption by agriculture machines,0.040901759999999995,TJ,CH4,10.0,kg/TJ,0.4090176,kg +bfcb8c6e-8f54-3990-9804-7891518a9db0,SESCO,II.5.1,Córdoba,AR-X,annual,2021,bioetanol combustion consumption by agriculture machines,0.040901759999999995,TJ,N2O,0.6,kg/TJ,0.024541055999999995,kg +61a26da2-4638-3402-950c-bb03fd7d1f4b,SESCO,II.1.1,Buenos Aires,AR-B,annual,2021,bioetanol combustion consumption by to the public,75.03683507999999,TJ,CH4,10.0,kg/TJ,750.3683507999999,kg +fc65a53f-bb3a-3796-a4db-af11451c6167,SESCO,II.1.1,Buenos Aires,AR-B,annual,2021,bioetanol combustion consumption by to the public,75.03683507999999,TJ,N2O,0.6,kg/TJ,45.02210104799999,kg +e7a85ec1-9e51-3408-903e-2bd38955442d,SESCO,II.1.1,Capital Federal,AR-C,annual,2021,bioetanol combustion consumption by to the public,12.827814479999999,TJ,CH4,10.0,kg/TJ,128.27814479999998,kg +927003e3-ecd8-3003-946e-05ae3d04a94b,SESCO,II.1.1,Capital Federal,AR-C,annual,2021,bioetanol combustion consumption by to the public,12.827814479999999,TJ,N2O,0.6,kg/TJ,7.696688687999999,kg +5698618c-11fa-38d5-8251-4081b6d24c98,SESCO,II.1.1,Catamarca,AR-K,annual,2021,bioetanol combustion consumption by to the public,6.219623879999999,TJ,CH4,10.0,kg/TJ,62.196238799999996,kg +7ac6d34d-81cf-3c04-bfc4-9af824ab4d98,SESCO,II.1.1,Catamarca,AR-K,annual,2021,bioetanol combustion consumption by to the public,6.219623879999999,TJ,N2O,0.6,kg/TJ,3.7317743279999993,kg +c7db4823-f796-3694-b246-8dd944fb0655,SESCO,II.1.1,Chaco,AR-H,annual,2021,bioetanol combustion consumption by to the public,14.39486316,TJ,CH4,10.0,kg/TJ,143.9486316,kg +76d53f69-6a1c-3e61-8408-ff22ebe18754,SESCO,II.1.1,Chaco,AR-H,annual,2021,bioetanol combustion consumption by to the public,14.39486316,TJ,N2O,0.6,kg/TJ,8.636917896,kg +76687703-2835-368b-8480-c05a8e41b33f,SESCO,II.1.1,Corrientes,AR-W,annual,2021,bioetanol combustion consumption by to the public,12.999090599999999,TJ,CH4,10.0,kg/TJ,129.990906,kg +c7c8d216-2c91-30f1-8fb6-0fdb300cc67f,SESCO,II.1.1,Corrientes,AR-W,annual,2021,bioetanol combustion consumption by to the public,12.999090599999999,TJ,N2O,0.6,kg/TJ,7.799454359999999,kg +ab778c8f-78d9-3e20-a645-5243cbdc2fcb,SESCO,II.1.1,Córdoba,AR-X,annual,2021,bioetanol combustion consumption by to the public,32.08743072,TJ,CH4,10.0,kg/TJ,320.8743072,kg +e82bc6da-7849-3f11-896e-9b2e2dc2a398,SESCO,II.1.1,Córdoba,AR-X,annual,2021,bioetanol combustion consumption by to the public,32.08743072,TJ,N2O,0.6,kg/TJ,19.252458432,kg +019005e1-ad7a-3f72-a181-65cfb26a6feb,SESCO,II.1.1,Entre Rios,AR-E,annual,2021,bioetanol combustion consumption by to the public,22.925436479999995,TJ,CH4,10.0,kg/TJ,229.25436479999996,kg +4976f740-6313-3222-926b-50f457c2b04a,SESCO,II.1.1,Entre Rios,AR-E,annual,2021,bioetanol combustion consumption by to the public,22.925436479999995,TJ,N2O,0.6,kg/TJ,13.755261887999996,kg +13f71803-d8a4-34f3-b05a-d2428d5b09cd,SESCO,II.1.1,Formosa,AR-P,annual,2021,bioetanol combustion consumption by to the public,3.2005627199999993,TJ,CH4,10.0,kg/TJ,32.00562719999999,kg +c4117b06-a411-3288-9595-0cc539873449,SESCO,II.1.1,Formosa,AR-P,annual,2021,bioetanol combustion consumption by to the public,3.2005627199999993,TJ,N2O,0.6,kg/TJ,1.9203376319999994,kg +a23774a3-896b-3150-ad34-5424570bd6c1,SESCO,II.1.1,La Rioja,AR-F,annual,2021,bioetanol combustion consumption by to the public,5.526850319999999,TJ,CH4,10.0,kg/TJ,55.2685032,kg +0b963970-9f47-30ca-bd54-55ae3205f7f7,SESCO,II.1.1,La Rioja,AR-F,annual,2021,bioetanol combustion consumption by to the public,5.526850319999999,TJ,N2O,0.6,kg/TJ,3.3161101919999996,kg +08aa64e0-8093-3eb6-8caa-328bf79bff5b,SESCO,II.1.1,Mendoza,AR-M,annual,2021,bioetanol combustion consumption by to the public,32.562913679999994,TJ,CH4,10.0,kg/TJ,325.62913679999997,kg +5d5ba784-bd45-3e21-bebd-1b8a498768d1,SESCO,II.1.1,Mendoza,AR-M,annual,2021,bioetanol combustion consumption by to the public,32.562913679999994,TJ,N2O,0.6,kg/TJ,19.537748207999996,kg +909c91b3-69e2-3fe6-9dd1-5b5718516738,SESCO,II.1.1,Misiones,AR-N,annual,2021,bioetanol combustion consumption by to the public,16.030933559999998,TJ,CH4,10.0,kg/TJ,160.30933559999997,kg +67ab8a69-9f4e-3a2b-aa03-e3afe464d055,SESCO,II.1.1,Misiones,AR-N,annual,2021,bioetanol combustion consumption by to the public,16.030933559999998,TJ,N2O,0.6,kg/TJ,9.618560135999997,kg +b9114de6-ee41-3187-abc0-011cf70c68fe,SESCO,II.1.1,Salta,AR-A,annual,2021,bioetanol combustion consumption by to the public,0.063909,TJ,CH4,10.0,kg/TJ,0.6390899999999999,kg +5ef6e0d3-089e-332d-8152-bc72f5a8c93b,SESCO,II.1.1,Salta,AR-A,annual,2021,bioetanol combustion consumption by to the public,0.063909,TJ,N2O,0.6,kg/TJ,0.038345399999999995,kg +c1c30882-4898-3c99-a91c-a25ca7829da5,SESCO,II.1.1,San Juan,AR-J,annual,2021,bioetanol combustion consumption by to the public,3.8754417599999997,TJ,CH4,10.0,kg/TJ,38.7544176,kg +3ea19010-c20a-33f9-8c07-3422faf18351,SESCO,II.1.1,San Juan,AR-J,annual,2021,bioetanol combustion consumption by to the public,3.8754417599999997,TJ,N2O,0.6,kg/TJ,2.3252650559999997,kg +26c63b6d-09e4-3371-8b68-2b534c9432f3,SESCO,II.1.1,San Luis,AR-D,annual,2021,bioetanol combustion consumption by to the public,1.3523144399999998,TJ,CH4,10.0,kg/TJ,13.523144399999998,kg +709b6d96-b0c3-38d9-9c11-d9a9b22c2848,SESCO,II.1.1,San Luis,AR-D,annual,2021,bioetanol combustion consumption by to the public,1.3523144399999998,TJ,N2O,0.6,kg/TJ,0.8113886639999999,kg +51c6bcd9-fe89-336d-8fa6-5d474f22ffe1,SESCO,II.1.1,Santa Fe,AR-S,annual,2021,bioetanol combustion consumption by to the public,24.46692156,TJ,CH4,10.0,kg/TJ,244.6692156,kg +60a80ab8-79bd-3841-b4a3-6729853402b2,SESCO,II.1.1,Santa Fe,AR-S,annual,2021,bioetanol combustion consumption by to the public,24.46692156,TJ,N2O,0.6,kg/TJ,14.680152935999999,kg +538aa8e7-17cf-3b12-b6c7-f7a621b65e53,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2021,bioetanol combustion consumption by to the public,7.51314204,TJ,CH4,10.0,kg/TJ,75.1314204,kg +c814f973-85c0-3437-9bb6-6211c5bf7c3a,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2021,bioetanol combustion consumption by to the public,7.51314204,TJ,N2O,0.6,kg/TJ,4.507885224,kg +a30283cc-bdbd-3ac9-a144-33bc85258f3a,SESCO,II.1.1,Tucuman,AR-T,annual,2021,bioetanol combustion consumption by to the public,3.40762788,TJ,CH4,10.0,kg/TJ,34.076278800000004,kg +801a90fb-5bf3-377d-b32a-ca1db1971956,SESCO,II.1.1,Tucuman,AR-T,annual,2021,bioetanol combustion consumption by to the public,3.40762788,TJ,N2O,0.6,kg/TJ,2.044576728,kg +b813d11b-03ce-3149-afd6-2eca84903495,SESCO,II.1.1,Buenos Aires,AR-B,annual,2021,bioetanol combustion consumption by to the public,8.55613692,TJ,CH4,10.0,kg/TJ,85.5613692,kg +9305fecb-8e8c-3a08-8b73-309fedb4179a,SESCO,II.1.1,Buenos Aires,AR-B,annual,2021,bioetanol combustion consumption by to the public,8.55613692,TJ,N2O,0.6,kg/TJ,5.1336821519999996,kg +1fdccb87-633b-3e92-bb6e-053a8e262e20,SESCO,II.1.1,Capital Federal,AR-C,annual,2021,bioetanol combustion consumption by to the public,1.8533609999999998,TJ,CH4,10.0,kg/TJ,18.53361,kg +0eabea5d-6412-317d-acbc-7c7dcb257470,SESCO,II.1.1,Capital Federal,AR-C,annual,2021,bioetanol combustion consumption by to the public,1.8533609999999998,TJ,N2O,0.6,kg/TJ,1.1120165999999998,kg +e5149e9c-d91e-34f7-9a2a-85a90646227e,SESCO,II.1.1,Catamarca,AR-K,annual,2021,bioetanol combustion consumption by to the public,0.6263082,TJ,CH4,10.0,kg/TJ,6.263082,kg +e9f2ed8e-c0ce-3f92-8c65-16071017771f,SESCO,II.1.1,Catamarca,AR-K,annual,2021,bioetanol combustion consumption by to the public,0.6263082,TJ,N2O,0.6,kg/TJ,0.37578491999999997,kg +b4c9f0d0-7a74-38e9-8e07-c2fcc648c81a,SESCO,II.1.1,Chaco,AR-H,annual,2021,bioetanol combustion consumption by to the public,1.0046494799999999,TJ,CH4,10.0,kg/TJ,10.046494799999998,kg +13beaad1-cafa-3714-a8bf-5f5af9755a8f,SESCO,II.1.1,Chaco,AR-H,annual,2021,bioetanol combustion consumption by to the public,1.0046494799999999,TJ,N2O,0.6,kg/TJ,0.6027896879999999,kg +46d104dc-0e04-3c50-b465-6a4cb2e05551,SESCO,II.1.1,Corrientes,AR-W,annual,2021,bioetanol combustion consumption by to the public,0.7899152399999999,TJ,CH4,10.0,kg/TJ,7.899152399999999,kg +f2749f78-0a25-36ca-9bf1-d74849a2981b,SESCO,II.1.1,Corrientes,AR-W,annual,2021,bioetanol combustion consumption by to the public,0.7899152399999999,TJ,N2O,0.6,kg/TJ,0.47394914399999993,kg +68e8d2ec-dfa2-3e91-ae81-9c204439b38b,SESCO,II.1.1,Córdoba,AR-X,annual,2021,bioetanol combustion consumption by to the public,4.63212432,TJ,CH4,10.0,kg/TJ,46.3212432,kg +b53fdd9c-26ef-3f9e-a379-c82b12cab02b,SESCO,II.1.1,Córdoba,AR-X,annual,2021,bioetanol combustion consumption by to the public,4.63212432,TJ,N2O,0.6,kg/TJ,2.7792745919999997,kg +85ed7925-c9fa-3682-b9cf-c28617cef6f6,SESCO,II.1.1,Entre Rios,AR-E,annual,2021,bioetanol combustion consumption by to the public,1.63862676,TJ,CH4,10.0,kg/TJ,16.3862676,kg +d98eecb7-6c27-36ef-bf1e-d4ad5e906306,SESCO,II.1.1,Entre Rios,AR-E,annual,2021,bioetanol combustion consumption by to the public,1.63862676,TJ,N2O,0.6,kg/TJ,0.9831760559999999,kg +e469d6b3-65a9-39c3-bc0c-ee8d1a87337e,SESCO,II.1.1,Formosa,AR-P,annual,2021,bioetanol combustion consumption by to the public,0.32210135999999995,TJ,CH4,10.0,kg/TJ,3.2210135999999996,kg +b0833be0-5d27-3401-baba-63658bb7dbfb,SESCO,II.1.1,Formosa,AR-P,annual,2021,bioetanol combustion consumption by to the public,0.32210135999999995,TJ,N2O,0.6,kg/TJ,0.19326081599999997,kg +4f61f939-fd61-34cb-b2f1-f68c4fc8b248,SESCO,II.1.1,La Rioja,AR-F,annual,2021,bioetanol combustion consumption by to the public,0.6467590799999999,TJ,CH4,10.0,kg/TJ,6.467590799999999,kg +d0934d53-7377-3681-9ec3-6a2c3d386a51,SESCO,II.1.1,La Rioja,AR-F,annual,2021,bioetanol combustion consumption by to the public,0.6467590799999999,TJ,N2O,0.6,kg/TJ,0.38805544799999997,kg +4fc2f02d-35de-37d0-8b42-2f48bd8bccdc,SESCO,II.1.1,Mendoza,AR-M,annual,2021,bioetanol combustion consumption by to the public,2.3978656799999998,TJ,CH4,10.0,kg/TJ,23.978656799999996,kg +00f1bbd9-d831-30d3-ab82-911678220f75,SESCO,II.1.1,Mendoza,AR-M,annual,2021,bioetanol combustion consumption by to the public,2.3978656799999998,TJ,N2O,0.6,kg/TJ,1.4387194079999999,kg +fb03e17e-5ef7-3457-9418-c9eda3ccd918,SESCO,II.1.1,Misiones,AR-N,annual,2021,bioetanol combustion consumption by to the public,1.5926122799999998,TJ,CH4,10.0,kg/TJ,15.926122799999998,kg +6d6a399a-f55b-3788-8229-199847ee0e96,SESCO,II.1.1,Misiones,AR-N,annual,2021,bioetanol combustion consumption by to the public,1.5926122799999998,TJ,N2O,0.6,kg/TJ,0.9555673679999999,kg +132f29cb-9687-3c1d-a8b9-2e9234a7f003,SESCO,II.1.1,San Juan,AR-J,annual,2021,bioetanol combustion consumption by to the public,0.46525752,TJ,CH4,10.0,kg/TJ,4.652575199999999,kg +cf8381fd-84e3-3894-a8ef-5d0dddd7cc7a,SESCO,II.1.1,San Juan,AR-J,annual,2021,bioetanol combustion consumption by to the public,0.46525752,TJ,N2O,0.6,kg/TJ,0.27915451199999997,kg +27fa34b8-6225-36f3-a9c1-af80babb1555,SESCO,II.1.1,San Luis,AR-D,annual,2021,bioetanol combustion consumption by to the public,0.13548707999999998,TJ,CH4,10.0,kg/TJ,1.3548707999999998,kg +13760e17-2e08-3f5a-a5b9-1ff71f6847c5,SESCO,II.1.1,San Luis,AR-D,annual,2021,bioetanol combustion consumption by to the public,0.13548707999999998,TJ,N2O,0.6,kg/TJ,0.08129224799999998,kg +e1c1f461-7290-33c7-a417-03fe2fe5687b,SESCO,II.1.1,Santa Fe,AR-S,annual,2021,bioetanol combustion consumption by to the public,3.5686785599999995,TJ,CH4,10.0,kg/TJ,35.68678559999999,kg +7cffb1bb-64b1-3bc1-b1a0-1b97e1168279,SESCO,II.1.1,Santa Fe,AR-S,annual,2021,bioetanol combustion consumption by to the public,3.5686785599999995,TJ,N2O,0.6,kg/TJ,2.141207136,kg +aced4492-b93a-3ef1-b184-6a45e689b417,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2021,bioetanol combustion consumption by to the public,0.6365336399999999,TJ,CH4,10.0,kg/TJ,6.365336399999999,kg +8c601998-82b7-3b9a-9853-9a7224a5cba0,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2021,bioetanol combustion consumption by to the public,0.6365336399999999,TJ,N2O,0.6,kg/TJ,0.38192018399999994,kg +0f36b3e0-7ebd-347b-83be-54aa9e925497,SESCO,II.1.1,Tucuman,AR-T,annual,2021,bioetanol combustion consumption by to the public,0.28631231999999995,TJ,CH4,10.0,kg/TJ,2.8631231999999995,kg +12b3c1d4-0f0c-3487-8631-0f1e5f5b7044,SESCO,II.1.1,Tucuman,AR-T,annual,2021,bioetanol combustion consumption by to the public,0.28631231999999995,TJ,N2O,0.6,kg/TJ,0.17178739199999996,kg +382cc73d-d943-32c9-a0f6-14218af66226,SESCO,I.3.1,Buenos Aires,AR-B,annual,2021,bioetanol combustion consumption by petrochemical industries,0.030676319999999997,TJ,CH4,10.0,kg/TJ,0.30676319999999996,kg +45cfa74f-a722-35c2-99ce-7dcf7239a3da,SESCO,I.3.1,Buenos Aires,AR-B,annual,2021,bioetanol combustion consumption by petrochemical industries,0.030676319999999997,TJ,N2O,0.6,kg/TJ,0.018405791999999997,kg +074576fb-0127-3b1c-ab3e-87655232c4ec,SESCO,II.5.1,Santa Fe,AR-S,annual,2021,bioetanol combustion consumption by agriculture machines,0.8998387199999999,TJ,CH4,10.0,kg/TJ,8.998387199999998,kg +2a138c3d-eb82-36aa-a467-1012e8fff348,SESCO,II.5.1,Santa Fe,AR-S,annual,2021,bioetanol combustion consumption by agriculture machines,0.8998387199999999,TJ,N2O,0.6,kg/TJ,0.5399032319999999,kg +f7bcef73-231a-3bb3-ba79-e8c8550b3d51,SESCO,II.5.1,Santa Fe,AR-S,annual,2021,bioetanol combustion consumption by agriculture machines,0.32721407999999996,TJ,CH4,10.0,kg/TJ,3.2721408,kg +23341fb4-859d-32fe-9fad-326499e8de38,SESCO,II.5.1,Santa Fe,AR-S,annual,2021,bioetanol combustion consumption by agriculture machines,0.32721407999999996,TJ,N2O,0.6,kg/TJ,0.19632844799999996,kg +5d4ee641-5843-3a7f-8615-979f523f0223,SESCO,II.1.1,Buenos Aires,AR-B,annual,2021,bioetanol combustion consumption by to the public,838.0642805999998,TJ,CH4,10.0,kg/TJ,8380.642805999998,kg +23f01466-7741-3009-9d5c-501c8a681e8d,SESCO,II.1.1,Buenos Aires,AR-B,annual,2021,bioetanol combustion consumption by to the public,838.0642805999998,TJ,N2O,0.6,kg/TJ,502.8385683599999,kg +d692bbed-1421-3f14-9952-45bad84d1bdd,SESCO,II.1.1,Capital Federal,AR-C,annual,2021,bioetanol combustion consumption by to the public,210.31940627999998,TJ,CH4,10.0,kg/TJ,2103.1940627999998,kg +3d901a39-0e26-382a-9218-aa87a59a77b2,SESCO,II.1.1,Capital Federal,AR-C,annual,2021,bioetanol combustion consumption by to the public,210.31940627999998,TJ,N2O,0.6,kg/TJ,126.19164376799998,kg +5dd38174-b772-3e04-b27c-286dcdf00bd5,SESCO,II.1.1,Catamarca,AR-K,annual,2021,bioetanol combustion consumption by to the public,37.35608868,TJ,CH4,10.0,kg/TJ,373.5608868,kg +1bcb15a2-3428-346f-bc08-d3f1021ea2c5,SESCO,II.1.1,Catamarca,AR-K,annual,2021,bioetanol combustion consumption by to the public,37.35608868,TJ,N2O,0.6,kg/TJ,22.413653208,kg +d9900155-d904-3c39-a6e3-c723511275cc,SESCO,II.1.1,Chaco,AR-H,annual,2021,bioetanol combustion consumption by to the public,52.02703871999999,TJ,CH4,10.0,kg/TJ,520.2703872,kg +0bf63916-8fed-3754-9e8f-d20fbde5b20e,SESCO,II.1.1,Chaco,AR-H,annual,2021,bioetanol combustion consumption by to the public,52.02703871999999,TJ,N2O,0.6,kg/TJ,31.216223231999994,kg +4f2ee527-5690-3c40-9b6a-3786e826858f,SESCO,II.1.1,Chubut,AR-U,annual,2021,bioetanol combustion consumption by to the public,124.43082299999999,TJ,CH4,10.0,kg/TJ,1244.3082299999999,kg +b8576303-abf3-3520-a61b-7d562472f634,SESCO,II.1.1,Chubut,AR-U,annual,2021,bioetanol combustion consumption by to the public,124.43082299999999,TJ,N2O,0.6,kg/TJ,74.65849379999999,kg +1c1df07c-6dfd-305a-b10b-7d4c5f0df35a,SESCO,II.1.1,Corrientes,AR-W,annual,2021,bioetanol combustion consumption by to the public,60.278968799999994,TJ,CH4,10.0,kg/TJ,602.789688,kg +da9dd9c2-7034-3c45-9aad-a3d10d8b3b5b,SESCO,II.1.1,Corrientes,AR-W,annual,2021,bioetanol combustion consumption by to the public,60.278968799999994,TJ,N2O,0.6,kg/TJ,36.167381279999994,kg +3c9e5059-432f-35a4-a692-63b8d4cc244c,SESCO,II.1.1,Córdoba,AR-X,annual,2021,bioetanol combustion consumption by to the public,205.38818783999997,TJ,CH4,10.0,kg/TJ,2053.8818783999996,kg +ac70a231-8f08-3f64-a040-7129e1fc3e34,SESCO,II.1.1,Córdoba,AR-X,annual,2021,bioetanol combustion consumption by to the public,205.38818783999997,TJ,N2O,0.6,kg/TJ,123.23291270399997,kg +91639afa-85fd-3a7a-8190-0b9594ec9d36,SESCO,II.1.1,Entre Rios,AR-E,annual,2021,bioetanol combustion consumption by to the public,80.40774744,TJ,CH4,10.0,kg/TJ,804.0774743999999,kg +caf4926d-f721-3999-9e1b-ec24f4fa5195,SESCO,II.1.1,Entre Rios,AR-E,annual,2021,bioetanol combustion consumption by to the public,80.40774744,TJ,N2O,0.6,kg/TJ,48.244648463999994,kg +2b763dd7-9f1a-34d3-91b7-61b56085127a,SESCO,II.1.1,Formosa,AR-P,annual,2021,bioetanol combustion consumption by to the public,51.94267883999999,TJ,CH4,10.0,kg/TJ,519.4267884,kg +9640741b-2677-32bf-993b-6615b116f30f,SESCO,II.1.1,Formosa,AR-P,annual,2021,bioetanol combustion consumption by to the public,51.94267883999999,TJ,N2O,0.6,kg/TJ,31.165607303999995,kg +f2d93350-0ba7-3e98-9507-74e7a58deed2,SESCO,II.1.1,Jujuy,AR-Y,annual,2021,bioetanol combustion consumption by to the public,18.97074756,TJ,CH4,10.0,kg/TJ,189.7074756,kg +901447cd-362d-3589-8f02-50b4c9a9f929,SESCO,II.1.1,Jujuy,AR-Y,annual,2021,bioetanol combustion consumption by to the public,18.97074756,TJ,N2O,0.6,kg/TJ,11.382448536,kg +3d4e957b-5bb3-3f4e-a88d-810d3c5234c6,SESCO,II.1.1,La Pampa,AR-L,annual,2021,bioetanol combustion consumption by to the public,16.667467199999997,TJ,CH4,10.0,kg/TJ,166.674672,kg +de5b0e55-5d30-361b-9bb7-518549eddb3a,SESCO,II.1.1,La Pampa,AR-L,annual,2021,bioetanol combustion consumption by to the public,16.667467199999997,TJ,N2O,0.6,kg/TJ,10.000480319999998,kg +b278a403-d777-31d3-a2c0-8e92d9a028dd,SESCO,II.1.1,La Rioja,AR-F,annual,2021,bioetanol combustion consumption by to the public,9.185001479999999,TJ,CH4,10.0,kg/TJ,91.85001479999998,kg +d3e03c96-4ad4-3687-8e48-c935351be35a,SESCO,II.1.1,La Rioja,AR-F,annual,2021,bioetanol combustion consumption by to the public,9.185001479999999,TJ,N2O,0.6,kg/TJ,5.511000887999999,kg +ad2808fa-21cd-3af6-a8dd-7e6851ff8aac,SESCO,II.1.1,Mendoza,AR-M,annual,2021,bioetanol combustion consumption by to the public,43.038876959999996,TJ,CH4,10.0,kg/TJ,430.38876959999993,kg +143eaeea-4da4-329d-8bdb-ac652d20abbb,SESCO,II.1.1,Mendoza,AR-M,annual,2021,bioetanol combustion consumption by to the public,43.038876959999996,TJ,N2O,0.6,kg/TJ,25.823326176,kg +7895bcd3-52f0-3cab-a034-b77d3e17dbf2,SESCO,II.1.1,Misiones,AR-N,annual,2021,bioetanol combustion consumption by to the public,95.30876988,TJ,CH4,10.0,kg/TJ,953.0876988,kg +653b7bd7-72b2-3e6b-a934-188d1989c903,SESCO,II.1.1,Misiones,AR-N,annual,2021,bioetanol combustion consumption by to the public,95.30876988,TJ,N2O,0.6,kg/TJ,57.185261927999996,kg +13cfdcd4-8b24-36ef-bd5f-189b06efde44,SESCO,II.1.1,Neuquén,AR-Q,annual,2021,bioetanol combustion consumption by to the public,44.37074052,TJ,CH4,10.0,kg/TJ,443.7074052,kg +79e11471-3147-320f-b0cf-07a35bcfac97,SESCO,II.1.1,Neuquén,AR-Q,annual,2021,bioetanol combustion consumption by to the public,44.37074052,TJ,N2O,0.6,kg/TJ,26.622444312,kg +775af576-30ce-308e-9c3f-559fed3f6718,SESCO,II.1.1,Rio Negro,AR-R,annual,2021,bioetanol combustion consumption by to the public,64.14674147999999,TJ,CH4,10.0,kg/TJ,641.4674147999999,kg +9a59e23c-e56c-3a3f-9999-8b9d9c541179,SESCO,II.1.1,Rio Negro,AR-R,annual,2021,bioetanol combustion consumption by to the public,64.14674147999999,TJ,N2O,0.6,kg/TJ,38.48804488799999,kg +e3807e40-7b15-399d-b210-f98cb81a689e,SESCO,II.1.1,Salta,AR-A,annual,2021,bioetanol combustion consumption by to the public,17.350015319999997,TJ,CH4,10.0,kg/TJ,173.50015319999997,kg +3640fb93-a9c1-37f0-8c0a-b749184ffcf7,SESCO,II.1.1,Salta,AR-A,annual,2021,bioetanol combustion consumption by to the public,17.350015319999997,TJ,N2O,0.6,kg/TJ,10.410009191999999,kg +74b23009-d6fe-36b7-a167-b20c1712bae2,SESCO,II.1.1,San Juan,AR-J,annual,2021,bioetanol combustion consumption by to the public,16.419500279999998,TJ,CH4,10.0,kg/TJ,164.19500279999997,kg +e3ad139c-ad39-3c30-ac82-d0492149babf,SESCO,II.1.1,San Juan,AR-J,annual,2021,bioetanol combustion consumption by to the public,16.419500279999998,TJ,N2O,0.6,kg/TJ,9.851700167999999,kg +98777c9b-cebe-381c-9bf4-75fe5a91d3b4,SESCO,II.1.1,San Luis,AR-D,annual,2021,bioetanol combustion consumption by to the public,51.533661239999994,TJ,CH4,10.0,kg/TJ,515.3366123999999,kg +f86de996-4167-369b-ad6c-3d06405b6983,SESCO,II.1.1,San Luis,AR-D,annual,2021,bioetanol combustion consumption by to the public,51.533661239999994,TJ,N2O,0.6,kg/TJ,30.920196743999995,kg +66b460c9-ae66-3b05-8eb8-ac4bf5a2496e,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2021,bioetanol combustion consumption by to the public,77.59575144,TJ,CH4,10.0,kg/TJ,775.9575144,kg +3e2c8ffd-129a-3fea-a3d5-2aa3a086659c,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2021,bioetanol combustion consumption by to the public,77.59575144,TJ,N2O,0.6,kg/TJ,46.557450863999996,kg +b1d368bf-e17d-3442-8470-32d9bfd313d7,SESCO,II.1.1,Santa Fe,AR-S,annual,2021,bioetanol combustion consumption by to the public,210.86902367999997,TJ,CH4,10.0,kg/TJ,2108.6902367999996,kg +d1a8970e-b956-398a-899d-3c0bacc836ad,SESCO,II.1.1,Santa Fe,AR-S,annual,2021,bioetanol combustion consumption by to the public,210.86902367999997,TJ,N2O,0.6,kg/TJ,126.52141420799998,kg +abe54b5f-8026-38f9-94e5-9dde2447b997,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2021,bioetanol combustion consumption by to the public,33.915228119999995,TJ,CH4,10.0,kg/TJ,339.15228119999995,kg +fb826a2c-e8c9-39df-86a9-befb76ecb311,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2021,bioetanol combustion consumption by to the public,33.915228119999995,TJ,N2O,0.6,kg/TJ,20.349136871999995,kg +a8cb0978-fcf9-368d-b686-2524719f0a77,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2021,bioetanol combustion consumption by to the public,12.255189839999998,TJ,CH4,10.0,kg/TJ,122.55189839999998,kg +c095988f-a48d-32c3-940d-e06d1d3377d6,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2021,bioetanol combustion consumption by to the public,12.255189839999998,TJ,N2O,0.6,kg/TJ,7.353113903999999,kg +e35f2f61-eae1-338c-b8f9-eff84576abc4,SESCO,II.1.1,Tucuman,AR-T,annual,2021,bioetanol combustion consumption by to the public,14.701626359999999,TJ,CH4,10.0,kg/TJ,147.0162636,kg +893255f6-34e9-3e12-91fb-93b10bf2b1c6,SESCO,II.1.1,Tucuman,AR-T,annual,2021,bioetanol combustion consumption by to the public,14.701626359999999,TJ,N2O,0.6,kg/TJ,8.820975815999999,kg +95620ec3-02fa-34f8-a8f2-04b1bad96c2a,SESCO,II.1.1,Buenos Aires,AR-B,annual,2021,bioetanol combustion consumption by to the public,241.08775523999998,TJ,CH4,10.0,kg/TJ,2410.8775524,kg +3c85a6a4-52a5-32c4-b879-a441bc12052b,SESCO,II.1.1,Buenos Aires,AR-B,annual,2021,bioetanol combustion consumption by to the public,241.08775523999998,TJ,N2O,0.6,kg/TJ,144.65265314399997,kg +1d73b185-e3e8-3d0f-bca2-1820519124cf,SESCO,II.1.1,Capital Federal,AR-C,annual,2021,bioetanol combustion consumption by to the public,95.03523935999999,TJ,CH4,10.0,kg/TJ,950.3523935999999,kg +0d4b20b6-0a5f-3d83-a3bf-a6d9eddbe581,SESCO,II.1.1,Capital Federal,AR-C,annual,2021,bioetanol combustion consumption by to the public,95.03523935999999,TJ,N2O,0.6,kg/TJ,57.021143615999996,kg +746b283d-0600-3a13-8e26-df9a52f12b3b,SESCO,II.1.1,Catamarca,AR-K,annual,2021,bioetanol combustion consumption by to the public,10.94377716,TJ,CH4,10.0,kg/TJ,109.43777159999999,kg +3f39cf75-4cfd-3340-8550-2aa6cc764c88,SESCO,II.1.1,Catamarca,AR-K,annual,2021,bioetanol combustion consumption by to the public,10.94377716,TJ,N2O,0.6,kg/TJ,6.566266295999999,kg +5cab73f8-3fb3-3ec5-bc51-8191ea3c4719,SESCO,II.1.1,Chaco,AR-H,annual,2021,bioetanol combustion consumption by to the public,7.32141504,TJ,CH4,10.0,kg/TJ,73.2141504,kg +b4da9990-7fa4-3290-a216-b54d0a96b90f,SESCO,II.1.1,Chaco,AR-H,annual,2021,bioetanol combustion consumption by to the public,7.32141504,TJ,N2O,0.6,kg/TJ,4.392849023999999,kg +2bfa8d17-d056-3e82-81d8-e7a0d4cac6b8,SESCO,II.1.1,Chubut,AR-U,annual,2021,bioetanol combustion consumption by to the public,22.08439404,TJ,CH4,10.0,kg/TJ,220.8439404,kg +12f21458-4f97-38c4-a24b-f8be7111b1d5,SESCO,II.1.1,Chubut,AR-U,annual,2021,bioetanol combustion consumption by to the public,22.08439404,TJ,N2O,0.6,kg/TJ,13.250636424,kg +d593a6f8-b777-3c9a-befc-bd6ab7f56baf,SESCO,II.1.1,Corrientes,AR-W,annual,2021,bioetanol combustion consumption by to the public,9.742287959999999,TJ,CH4,10.0,kg/TJ,97.42287959999999,kg +d3e3a398-78ec-3653-b8ef-51df45f535a5,SESCO,II.1.1,Corrientes,AR-W,annual,2021,bioetanol combustion consumption by to the public,9.742287959999999,TJ,N2O,0.6,kg/TJ,5.845372775999999,kg +5806529a-8898-3cbd-999b-701a36c6723e,SESCO,II.1.1,Córdoba,AR-X,annual,2021,bioetanol combustion consumption by to the public,53.89318151999999,TJ,CH4,10.0,kg/TJ,538.9318152,kg +3efb258b-94d5-3771-9dc6-88f84bc9591a,SESCO,II.1.1,Córdoba,AR-X,annual,2021,bioetanol combustion consumption by to the public,53.89318151999999,TJ,N2O,0.6,kg/TJ,32.335908911999994,kg +19025c25-055d-31ac-a145-6a646caf49a1,SESCO,II.1.1,Entre Rios,AR-E,annual,2021,bioetanol combustion consumption by to the public,21.30981696,TJ,CH4,10.0,kg/TJ,213.0981696,kg +3e75e2df-beac-35c3-91f0-c8cd9c029b03,SESCO,II.1.1,Entre Rios,AR-E,annual,2021,bioetanol combustion consumption by to the public,21.30981696,TJ,N2O,0.6,kg/TJ,12.785890175999999,kg +cb62d199-8ca9-3542-a49e-1b6f03e63b48,SESCO,II.1.1,Formosa,AR-P,annual,2021,bioetanol combustion consumption by to the public,13.60239156,TJ,CH4,10.0,kg/TJ,136.02391559999998,kg +ce18a855-072d-3c20-bc92-5404ee1de22b,SESCO,II.1.1,Formosa,AR-P,annual,2021,bioetanol combustion consumption by to the public,13.60239156,TJ,N2O,0.6,kg/TJ,8.161434936,kg +57f485b6-4565-337d-b151-bc9e102d05f1,SESCO,II.1.1,Jujuy,AR-Y,annual,2021,bioetanol combustion consumption by to the public,4.60400436,TJ,CH4,10.0,kg/TJ,46.040043600000004,kg +8c1e0d9e-8cbc-32be-bb8f-02812ad8e947,SESCO,II.1.1,Jujuy,AR-Y,annual,2021,bioetanol combustion consumption by to the public,4.60400436,TJ,N2O,0.6,kg/TJ,2.762402616,kg +696e136a-a773-3e37-a9eb-1540941857f7,SESCO,II.1.1,La Pampa,AR-L,annual,2021,bioetanol combustion consumption by to the public,5.767148159999999,TJ,CH4,10.0,kg/TJ,57.671481599999986,kg +bca187d6-14ad-3ddb-9ae1-a685d9ea1eb6,SESCO,II.1.1,La Pampa,AR-L,annual,2021,bioetanol combustion consumption by to the public,5.767148159999999,TJ,N2O,0.6,kg/TJ,3.4602888959999993,kg +c001999b-7f95-39ec-b3fa-b79c7b846051,SESCO,II.1.1,La Rioja,AR-F,annual,2021,bioetanol combustion consumption by to the public,3.1238719199999996,TJ,CH4,10.0,kg/TJ,31.238719199999995,kg +d8face93-3950-35ce-90c5-48b295eb8fe1,SESCO,II.1.1,La Rioja,AR-F,annual,2021,bioetanol combustion consumption by to the public,3.1238719199999996,TJ,N2O,0.6,kg/TJ,1.8743231519999997,kg +ac3980b6-b769-37bc-b241-71b8f796fd3a,SESCO,II.1.1,Mendoza,AR-M,annual,2021,bioetanol combustion consumption by to the public,17.55452412,TJ,CH4,10.0,kg/TJ,175.5452412,kg +79117672-b57c-3f39-82c3-f8ba6d51458f,SESCO,II.1.1,Mendoza,AR-M,annual,2021,bioetanol combustion consumption by to the public,17.55452412,TJ,N2O,0.6,kg/TJ,10.532714472,kg +e0f2e3f2-0786-3470-b2a4-56ad324f41cf,SESCO,II.1.1,Misiones,AR-N,annual,2021,bioetanol combustion consumption by to the public,14.295165119999998,TJ,CH4,10.0,kg/TJ,142.9516512,kg +10ab3170-b2a0-3e0e-bf63-fb638238148a,SESCO,II.1.1,Misiones,AR-N,annual,2021,bioetanol combustion consumption by to the public,14.295165119999998,TJ,N2O,0.6,kg/TJ,8.577099072,kg +c6eef368-d818-3e52-8631-c1fad85bd59e,SESCO,II.1.1,Neuquén,AR-Q,annual,2021,bioetanol combustion consumption by to the public,18.796915079999998,TJ,CH4,10.0,kg/TJ,187.96915079999997,kg +272b7834-7910-3422-9453-87318808b342,SESCO,II.1.1,Neuquén,AR-Q,annual,2021,bioetanol combustion consumption by to the public,18.796915079999998,TJ,N2O,0.6,kg/TJ,11.278149047999998,kg +44b043c1-bae5-3fba-a355-8ff596d7998a,SESCO,II.1.1,Rio Negro,AR-R,annual,2021,bioetanol combustion consumption by to the public,23.35490496,TJ,CH4,10.0,kg/TJ,233.5490496,kg +0c2fbf9e-e0da-31fa-8de0-fd771382ef5f,SESCO,II.1.1,Rio Negro,AR-R,annual,2021,bioetanol combustion consumption by to the public,23.35490496,TJ,N2O,0.6,kg/TJ,14.012942976,kg +25d66663-6c60-39a8-890e-f02fd1ff0bae,SESCO,II.1.1,Salta,AR-A,annual,2021,bioetanol combustion consumption by to the public,2.9168067599999996,TJ,CH4,10.0,kg/TJ,29.168067599999997,kg +ec0e6f3a-2b10-328d-b7b0-a2a472d462e3,SESCO,II.1.1,Salta,AR-A,annual,2021,bioetanol combustion consumption by to the public,2.9168067599999996,TJ,N2O,0.6,kg/TJ,1.7500840559999997,kg +db804e3e-42a0-3251-8d7b-13573cf085e8,SESCO,II.1.1,San Juan,AR-J,annual,2021,bioetanol combustion consumption by to the public,3.44852964,TJ,CH4,10.0,kg/TJ,34.485296399999996,kg +fa358f9e-8b29-354f-b818-a6f24b9124a3,SESCO,II.1.1,San Juan,AR-J,annual,2021,bioetanol combustion consumption by to the public,3.44852964,TJ,N2O,0.6,kg/TJ,2.069117784,kg +211f0fa8-e345-3c16-ade2-e330fbe1ab6a,SESCO,II.1.1,San Luis,AR-D,annual,2021,bioetanol combustion consumption by to the public,11.4524928,TJ,CH4,10.0,kg/TJ,114.524928,kg +cb524d72-c107-3e8a-8fca-07dd43ef7cb3,SESCO,II.1.1,San Luis,AR-D,annual,2021,bioetanol combustion consumption by to the public,11.4524928,TJ,N2O,0.6,kg/TJ,6.87149568,kg +68059005-d101-3982-a71c-1aeed3450780,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2021,bioetanol combustion consumption by to the public,9.108310679999999,TJ,CH4,10.0,kg/TJ,91.0831068,kg +e4b0eefe-52f4-3ee1-987f-b5386c4b9a44,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2021,bioetanol combustion consumption by to the public,9.108310679999999,TJ,N2O,0.6,kg/TJ,5.464986407999999,kg +d69c008a-eac0-3856-bdc0-a37bfe799f8e,SESCO,II.1.1,Santa Fe,AR-S,annual,2021,bioetanol combustion consumption by to the public,64.8420714,TJ,CH4,10.0,kg/TJ,648.420714,kg +88e603f3-85c8-3e7a-8036-ea662798a7d5,SESCO,II.1.1,Santa Fe,AR-S,annual,2021,bioetanol combustion consumption by to the public,64.8420714,TJ,N2O,0.6,kg/TJ,38.90524283999999,kg +668b0ffe-82bc-30b7-b78e-c721b62cdcfb,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2021,bioetanol combustion consumption by to the public,10.376265239999999,TJ,CH4,10.0,kg/TJ,103.76265239999998,kg +e5ece5bc-9d58-3ab0-bf4d-8a9022544b6e,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2021,bioetanol combustion consumption by to the public,10.376265239999999,TJ,N2O,0.6,kg/TJ,6.225759143999999,kg +9d8a4baf-7d08-3406-86bf-06fcc7d20cab,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2021,bioetanol combustion consumption by to the public,3.1187592,TJ,CH4,10.0,kg/TJ,31.187592,kg +c546ac5e-096e-378d-af3c-e991b532af4c,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2021,bioetanol combustion consumption by to the public,3.1187592,TJ,N2O,0.6,kg/TJ,1.8712555199999998,kg +f2166d2b-ca8f-3c4e-b022-1ccd8a3b79c6,SESCO,II.1.1,Tucuman,AR-T,annual,2021,bioetanol combustion consumption by to the public,3.0267302399999996,TJ,CH4,10.0,kg/TJ,30.267302399999995,kg +902d10f3-0c4a-3547-b6b4-3f5207436ede,SESCO,II.1.1,Tucuman,AR-T,annual,2021,bioetanol combustion consumption by to the public,3.0267302399999996,TJ,N2O,0.6,kg/TJ,1.8160381439999997,kg +81cf415d-233e-309a-8d3f-31f184577c48,SESCO,II.1.1,Buenos Aires,AR-B,annual,2021,bioetanol combustion consumption by freight transport,0.94329684,TJ,CH4,10.0,kg/TJ,9.4329684,kg +9661f70e-969a-3f16-b1d4-65cb9bada4e2,SESCO,II.1.1,Buenos Aires,AR-B,annual,2021,bioetanol combustion consumption by freight transport,0.94329684,TJ,N2O,0.6,kg/TJ,0.565978104,kg +3a5d0cc6-e980-3358-a589-2b18f7c1c0c8,SESCO,II.1.1,Capital Federal,AR-C,annual,2021,bioetanol combustion consumption by freight transport,0.31954499999999997,TJ,CH4,10.0,kg/TJ,3.1954499999999997,kg +bbac38c1-0a0b-38c5-a7ef-2bc6c518ef58,SESCO,II.1.1,Capital Federal,AR-C,annual,2021,bioetanol combustion consumption by freight transport,0.31954499999999997,TJ,N2O,0.6,kg/TJ,0.19172699999999998,kg +d10faf26-f89a-370e-89a6-710d4bb6683d,SESCO,II.1.1,Córdoba,AR-X,annual,2021,bioetanol combustion consumption by freight transport,0.0894726,TJ,CH4,10.0,kg/TJ,0.894726,kg +2779512a-d9a4-3f73-9e40-62d4af04d8a3,SESCO,II.1.1,Córdoba,AR-X,annual,2021,bioetanol combustion consumption by freight transport,0.0894726,TJ,N2O,0.6,kg/TJ,0.05368356,kg +01ae7b2c-1ff7-373c-b9f9-6816a7d5512d,SESCO,II.1.1,Entre Rios,AR-E,annual,2021,bioetanol combustion consumption by freight transport,0.040901759999999995,TJ,CH4,10.0,kg/TJ,0.4090176,kg +de8be7ab-ab0c-3888-ad78-1d4d8e397e6d,SESCO,II.1.1,Entre Rios,AR-E,annual,2021,bioetanol combustion consumption by freight transport,0.040901759999999995,TJ,N2O,0.6,kg/TJ,0.024541055999999995,kg +68589ead-89c2-39f1-8b6a-e34c9dfccb60,SESCO,II.1.1,Mendoza,AR-M,annual,2021,bioetanol combustion consumption by freight transport,0.007669079999999999,TJ,CH4,10.0,kg/TJ,0.07669079999999999,kg +9c6659a2-6789-3948-97dc-751545ec8b04,SESCO,II.1.1,Mendoza,AR-M,annual,2021,bioetanol combustion consumption by freight transport,0.007669079999999999,TJ,N2O,0.6,kg/TJ,0.004601447999999999,kg +1ee514c5-65ed-3a1f-bb4d-bd4e7a886329,SESCO,II.1.1,Santa Fe,AR-S,annual,2021,bioetanol combustion consumption by freight transport,0.14571251999999998,TJ,CH4,10.0,kg/TJ,1.4571252,kg +fec55789-f151-3a2f-b077-e5e6e7f0069f,SESCO,II.1.1,Santa Fe,AR-S,annual,2021,bioetanol combustion consumption by freight transport,0.14571251999999998,TJ,N2O,0.6,kg/TJ,0.08742751199999999,kg +4c69f6fa-e01e-325b-8678-2012f3a0c60f,SESCO,II.1.1,Buenos Aires,AR-B,annual,2021,bioetanol combustion consumption by freight transport,0.63397728,TJ,CH4,10.0,kg/TJ,6.3397727999999995,kg +d86b114f-75b3-399f-b9a4-733cf458a83a,SESCO,II.1.1,Buenos Aires,AR-B,annual,2021,bioetanol combustion consumption by freight transport,0.63397728,TJ,N2O,0.6,kg/TJ,0.380386368,kg +ed06d00f-ae8f-349c-ba5c-73290cca00a7,SESCO,II.1.1,Capital Federal,AR-C,annual,2021,bioetanol combustion consumption by freight transport,0.24796691999999995,TJ,CH4,10.0,kg/TJ,2.4796691999999996,kg +e01210f0-4b64-315b-ad09-75f9f335ab1e,SESCO,II.1.1,Capital Federal,AR-C,annual,2021,bioetanol combustion consumption by freight transport,0.24796691999999995,TJ,N2O,0.6,kg/TJ,0.14878015199999997,kg +aa339304-a56b-3d78-97b8-11ceeeb66ce8,SESCO,II.1.1,Corrientes,AR-W,annual,2021,bioetanol combustion consumption by freight transport,0.0025563599999999997,TJ,CH4,10.0,kg/TJ,0.0255636,kg +02ec4b80-5f6f-3151-b0d6-88c11c0cd9d0,SESCO,II.1.1,Corrientes,AR-W,annual,2021,bioetanol combustion consumption by freight transport,0.0025563599999999997,TJ,N2O,0.6,kg/TJ,0.0015338159999999997,kg +b5694896-de7e-377b-8c2e-ac414a18736d,SESCO,II.1.1,Córdoba,AR-X,annual,2021,bioetanol combustion consumption by freight transport,0.0511272,TJ,CH4,10.0,kg/TJ,0.511272,kg +0e3c9d56-8e92-36d2-8abf-626f9708a273,SESCO,II.1.1,Córdoba,AR-X,annual,2021,bioetanol combustion consumption by freight transport,0.0511272,TJ,N2O,0.6,kg/TJ,0.030676319999999997,kg +4236db38-10d4-3728-941c-067a5620757b,SESCO,II.1.1,Entre Rios,AR-E,annual,2021,bioetanol combustion consumption by freight transport,0.043458119999999996,TJ,CH4,10.0,kg/TJ,0.43458119999999995,kg +f89416b5-3eaf-33b0-bb4a-957f5617ba79,SESCO,II.1.1,Entre Rios,AR-E,annual,2021,bioetanol combustion consumption by freight transport,0.043458119999999996,TJ,N2O,0.6,kg/TJ,0.026074871999999995,kg +51e01563-1726-3cfa-a382-1c4e7e69e7ce,SESCO,II.1.1,Rio Negro,AR-R,annual,2021,bioetanol combustion consumption by freight transport,0.0025563599999999997,TJ,CH4,10.0,kg/TJ,0.0255636,kg +a60f794d-aceb-342f-8218-fe6a4604e730,SESCO,II.1.1,Rio Negro,AR-R,annual,2021,bioetanol combustion consumption by freight transport,0.0025563599999999997,TJ,N2O,0.6,kg/TJ,0.0015338159999999997,kg +0698ad60-4625-364a-ae7c-6704e6e2ea91,SESCO,II.1.1,Santa Fe,AR-S,annual,2021,bioetanol combustion consumption by freight transport,0.10992348,TJ,CH4,10.0,kg/TJ,1.0992348,kg +4ff85572-afed-3724-b5d7-60740d762603,SESCO,II.1.1,Santa Fe,AR-S,annual,2021,bioetanol combustion consumption by freight transport,0.10992348,TJ,N2O,0.6,kg/TJ,0.065954088,kg +9a223517-e8d3-30ae-991d-0b2d199ddb41,SESCO,II.1.1,Buenos Aires,AR-B,annual,2021,bioetanol combustion consumption by public passenger transport,0.015338159999999998,TJ,CH4,10.0,kg/TJ,0.15338159999999998,kg +f16fa0b0-ed21-3c82-81d1-ef18e2f7f7ef,SESCO,II.1.1,Buenos Aires,AR-B,annual,2021,bioetanol combustion consumption by public passenger transport,0.015338159999999998,TJ,N2O,0.6,kg/TJ,0.009202895999999999,kg +a7d51947-b8fd-3a9e-9450-36e8140ec1df,SESCO,II.1.1,Santa Fe,AR-S,annual,2021,bioetanol combustion consumption by public passenger transport,0.028119959999999996,TJ,CH4,10.0,kg/TJ,0.28119959999999994,kg +90a86b97-08cc-3622-a4c6-77501a2a958e,SESCO,II.1.1,Santa Fe,AR-S,annual,2021,bioetanol combustion consumption by public passenger transport,0.028119959999999996,TJ,N2O,0.6,kg/TJ,0.016871975999999997,kg +78a43899-b587-385e-b588-4313859a2642,SESCO,II.1.1,Buenos Aires,AR-B,annual,2021,bioetanol combustion consumption by public passenger transport,0.0255636,TJ,CH4,10.0,kg/TJ,0.255636,kg +16c52567-d89d-39aa-8d61-dc20dae08a7e,SESCO,II.1.1,Buenos Aires,AR-B,annual,2021,bioetanol combustion consumption by public passenger transport,0.0255636,TJ,N2O,0.6,kg/TJ,0.015338159999999998,kg +d1525bfb-dc52-3711-8bff-35992196b4bf,SESCO,II.1.1,Capital Federal,AR-C,annual,2021,bioetanol combustion consumption by public passenger transport,0.005112719999999999,TJ,CH4,10.0,kg/TJ,0.0511272,kg +1fd712ce-15d9-315c-ad60-978b062b76cd,SESCO,II.1.1,Capital Federal,AR-C,annual,2021,bioetanol combustion consumption by public passenger transport,0.005112719999999999,TJ,N2O,0.6,kg/TJ,0.0030676319999999994,kg +6885ffaf-2338-35a9-be94-cc1a5616cc46,SESCO,II.1.1,Córdoba,AR-X,annual,2021,bioetanol combustion consumption by public passenger transport,0.030676319999999997,TJ,CH4,10.0,kg/TJ,0.30676319999999996,kg +6c669eee-7008-3f6e-a259-ff067004c2fe,SESCO,II.1.1,Córdoba,AR-X,annual,2021,bioetanol combustion consumption by public passenger transport,0.030676319999999997,TJ,N2O,0.6,kg/TJ,0.018405791999999997,kg +55283af6-3416-3d3d-a0c3-44c34f6bbb9d,SESCO,II.1.1,Santa Fe,AR-S,annual,2021,bioetanol combustion consumption by public passenger transport,0.0025563599999999997,TJ,CH4,10.0,kg/TJ,0.0255636,kg +717fe6a5-c810-35ec-8cb9-789e3efb1f37,SESCO,II.1.1,Santa Fe,AR-S,annual,2021,bioetanol combustion consumption by public passenger transport,0.0025563599999999997,TJ,N2O,0.6,kg/TJ,0.0015338159999999997,kg +6747e313-feee-3b07-b09e-1e9f0ba43b68,SESCO,II.1.1,Catamarca,AR-K,annual,2021,bioetanol combustion consumption by to the public,12.477720977999999,TJ,CH4,10.0,kg/TJ,124.77720977999999,kg +dc1c048a-6552-3260-948a-8a56d47954d9,SESCO,II.1.1,Catamarca,AR-K,annual,2021,bioetanol combustion consumption by to the public,12.477720977999999,TJ,N2O,0.6,kg/TJ,7.486632586799999,kg +ecf5b9bb-2a6e-37e4-9a84-1a85ad08f7bd,SESCO,II.1.1,Chaco,AR-H,annual,2021,bioetanol combustion consumption by to the public,9.2712275028,TJ,CH4,10.0,kg/TJ,92.71227502800001,kg +e06dc264-7b42-3d08-a09d-a07c406f96e7,SESCO,II.1.1,Chaco,AR-H,annual,2021,bioetanol combustion consumption by to the public,9.2712275028,TJ,N2O,0.6,kg/TJ,5.56273650168,kg +17d2ab76-8330-327b-ad76-ddf22b486e77,SESCO,II.1.1,Jujuy,AR-Y,annual,2021,bioetanol combustion consumption by to the public,34.582617025199994,TJ,CH4,10.0,kg/TJ,345.82617025199994,kg +e8d13b59-c9a1-34d9-b0b5-8009d90195b7,SESCO,II.1.1,Jujuy,AR-Y,annual,2021,bioetanol combustion consumption by to the public,34.582617025199994,TJ,N2O,0.6,kg/TJ,20.749570215119995,kg +7f655408-ad0b-307f-a1c3-4ac84a55fa26,SESCO,II.1.1,La Rioja,AR-F,annual,2021,bioetanol combustion consumption by to the public,35.3931620904,TJ,CH4,10.0,kg/TJ,353.93162090399994,kg +75cdd188-8289-3553-a14e-6f5c40bd1d33,SESCO,II.1.1,La Rioja,AR-F,annual,2021,bioetanol combustion consumption by to the public,35.3931620904,TJ,N2O,0.6,kg/TJ,21.235897254239998,kg +5df4978c-1c8f-31ea-a0c4-0fde29472be9,SESCO,II.1.1,Salta,AR-A,annual,2021,bioetanol combustion consumption by to the public,84.31504144559999,TJ,CH4,10.0,kg/TJ,843.1504144559999,kg +c3bce339-8bb0-302f-a67b-8c7825829f93,SESCO,II.1.1,Salta,AR-A,annual,2021,bioetanol combustion consumption by to the public,84.31504144559999,TJ,N2O,0.6,kg/TJ,50.58902486735999,kg +8a0c392b-badd-3541-a392-8df97e3cdac6,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2021,bioetanol combustion consumption by to the public,23.4278379108,TJ,CH4,10.0,kg/TJ,234.27837910800002,kg +1c6414a2-83bc-3848-8063-cb54b0f828f8,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2021,bioetanol combustion consumption by to the public,23.4278379108,TJ,N2O,0.6,kg/TJ,14.056702746480001,kg +6e1a0042-5ec1-3dff-b93f-cee506ae8912,SESCO,II.1.1,Tucuman,AR-T,annual,2021,bioetanol combustion consumption by to the public,171.6586537104,TJ,CH4,10.0,kg/TJ,1716.586537104,kg +c3a838e9-8b97-3357-b6b2-1a800eda40f5,SESCO,II.1.1,Tucuman,AR-T,annual,2021,bioetanol combustion consumption by to the public,171.6586537104,TJ,N2O,0.6,kg/TJ,102.99519222624,kg +f406dc62-b0ff-3d27-ba0d-d92080f00e20,SESCO,II.1.1,Catamarca,AR-K,annual,2021,bioetanol combustion consumption by to the public,1.5465722363999999,TJ,CH4,10.0,kg/TJ,15.465722363999998,kg +4613b9dd-0f3a-300b-87fe-faccabeff894,SESCO,II.1.1,Catamarca,AR-K,annual,2021,bioetanol combustion consumption by to the public,1.5465722363999999,TJ,N2O,0.6,kg/TJ,0.9279433418399998,kg +fe2782d6-5bb2-3618-9c8b-2870083bf3b0,SESCO,II.1.1,Chaco,AR-H,annual,2021,bioetanol combustion consumption by to the public,0.33488315999999996,TJ,CH4,10.0,kg/TJ,3.3488315999999996,kg +5e633ad6-b9e7-3f87-8a1d-81752ccfafbb,SESCO,II.1.1,Chaco,AR-H,annual,2021,bioetanol combustion consumption by to the public,0.33488315999999996,TJ,N2O,0.6,kg/TJ,0.20092989599999997,kg +17b2c8dd-1ecf-3b6b-871b-88d7ebce2026,SESCO,II.1.1,Jujuy,AR-Y,annual,2021,bioetanol combustion consumption by to the public,2.1320298035999996,TJ,CH4,10.0,kg/TJ,21.320298035999997,kg +119b0954-0607-308c-94d8-7114ae3af175,SESCO,II.1.1,Jujuy,AR-Y,annual,2021,bioetanol combustion consumption by to the public,2.1320298035999996,TJ,N2O,0.6,kg/TJ,1.2792178821599998,kg +a5a916a8-b460-3a18-bbc9-13db782e6063,SESCO,II.1.1,La Rioja,AR-F,annual,2021,bioetanol combustion consumption by to the public,4.3198905095999995,TJ,CH4,10.0,kg/TJ,43.198905096,kg +bb947ab6-58b4-35ac-abd8-e34499ef36f5,SESCO,II.1.1,La Rioja,AR-F,annual,2021,bioetanol combustion consumption by to the public,4.3198905095999995,TJ,N2O,0.6,kg/TJ,2.5919343057599997,kg +c268a357-4818-32fb-9eab-d27f20b36e2d,SESCO,II.1.1,Salta,AR-A,annual,2021,bioetanol combustion consumption by to the public,5.837013478799999,TJ,CH4,10.0,kg/TJ,58.370134787999994,kg +0097a2ea-1cb2-3050-a01e-726457560aab,SESCO,II.1.1,Salta,AR-A,annual,2021,bioetanol combustion consumption by to the public,5.837013478799999,TJ,N2O,0.6,kg/TJ,3.5022080872799997,kg +56c5308f-7f21-3dbd-9fb8-c21710cbebda,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2021,bioetanol combustion consumption by to the public,2.8719170784,TJ,CH4,10.0,kg/TJ,28.719170784,kg +0b380f5d-570e-3f56-824e-349999fca7b8,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2021,bioetanol combustion consumption by to the public,2.8719170784,TJ,N2O,0.6,kg/TJ,1.72315024704,kg +9fb7ba18-b360-3372-a3d7-0c721e60e99e,SESCO,II.1.1,Tucuman,AR-T,annual,2021,bioetanol combustion consumption by to the public,16.2612360324,TJ,CH4,10.0,kg/TJ,162.612360324,kg +e98010f5-7da0-3452-b661-343b880dc9a6,SESCO,II.1.1,Tucuman,AR-T,annual,2021,bioetanol combustion consumption by to the public,16.2612360324,TJ,N2O,0.6,kg/TJ,9.75674161944,kg +fdf31264-2508-3585-80f4-5ee282649a90,SESCO,I.3.1,La Pampa,AR-L,annual,2021,bioetanol combustion consumption by petrochemical industries,1.2653982,TJ,CH4,10.0,kg/TJ,12.653982,kg +c6a44327-1c93-3a11-a65c-14b46256f495,SESCO,I.3.1,La Pampa,AR-L,annual,2021,bioetanol combustion consumption by petrochemical industries,1.2653982,TJ,N2O,0.6,kg/TJ,0.7592389199999999,kg +b73d8429-3247-375e-b068-8bbe9f8c20e6,SESCO,I.3.1,La Pampa,AR-L,annual,2021,bioetanol combustion consumption by petrochemical industries,0.33488315999999996,TJ,CH4,10.0,kg/TJ,3.3488315999999996,kg +f457bda8-050f-349c-b161-8bfab93f8046,SESCO,I.3.1,La Pampa,AR-L,annual,2021,bioetanol combustion consumption by petrochemical industries,0.33488315999999996,TJ,N2O,0.6,kg/TJ,0.20092989599999997,kg +14339093-13d0-3aea-a1b2-f140df938bcf,SESCO,II.5.1,Santa Fe,AR-S,annual,2021,bioetanol combustion consumption by agriculture machines,0.1022544,TJ,CH4,10.0,kg/TJ,1.022544,kg +04343e66-0984-31c1-a33d-ba615b47fea5,SESCO,II.5.1,Santa Fe,AR-S,annual,2021,bioetanol combustion consumption by agriculture machines,0.1022544,TJ,N2O,0.6,kg/TJ,0.06135263999999999,kg +bc49fc94-6eb8-319c-ad23-cb5c7185ec25,SESCO,II.5.1,Santa Fe,AR-S,annual,2021,bioetanol combustion consumption by agriculture machines,0.04601448,TJ,CH4,10.0,kg/TJ,0.4601448,kg +2a2f0fee-25c2-357e-9fbe-f9bd316556d2,SESCO,II.5.1,Santa Fe,AR-S,annual,2021,bioetanol combustion consumption by agriculture machines,0.04601448,TJ,N2O,0.6,kg/TJ,0.027608688000000003,kg +c4e6ec6a-ff23-3e57-9a26-6a1b41873ae4,SESCO,II.1.1,Buenos Aires,AR-B,annual,2021,bioetanol combustion consumption by to the public,1412.5601761199998,TJ,CH4,10.0,kg/TJ,14125.601761199998,kg +ae1e5477-57b5-33ee-aa72-bf06fd1875ac,SESCO,II.1.1,Buenos Aires,AR-B,annual,2021,bioetanol combustion consumption by to the public,1412.5601761199998,TJ,N2O,0.6,kg/TJ,847.5361056719998,kg +c74155ae-25ed-3715-a294-937f473fda18,SESCO,II.1.1,Capital Federal,AR-C,annual,2021,bioetanol combustion consumption by to the public,368.25132708,TJ,CH4,10.0,kg/TJ,3682.5132708,kg +2a0544b9-3953-324b-b7ea-4bbb2c473757,SESCO,II.1.1,Capital Federal,AR-C,annual,2021,bioetanol combustion consumption by to the public,368.25132708,TJ,N2O,0.6,kg/TJ,220.950796248,kg +806edb88-053d-3a64-82bd-48c9f8f97efe,SESCO,II.1.1,Catamarca,AR-K,annual,2021,bioetanol combustion consumption by to the public,5.5856466,TJ,CH4,10.0,kg/TJ,55.856466,kg +7f413a8e-d1f2-38c8-8fae-a2acfc794dc4,SESCO,II.1.1,Catamarca,AR-K,annual,2021,bioetanol combustion consumption by to the public,5.5856466,TJ,N2O,0.6,kg/TJ,3.35138796,kg +cb377f0b-a39e-371c-9645-884d1755738c,SESCO,II.1.1,Chaco,AR-H,annual,2021,bioetanol combustion consumption by to the public,87.50931552,TJ,CH4,10.0,kg/TJ,875.0931552,kg +baeed79d-219e-3939-bf7b-608355f77657,SESCO,II.1.1,Chaco,AR-H,annual,2021,bioetanol combustion consumption by to the public,87.50931552,TJ,N2O,0.6,kg/TJ,52.505589312,kg +8452f7b6-ea19-3ba0-8c53-ed57cfb985aa,SESCO,II.1.1,Corrientes,AR-W,annual,2021,bioetanol combustion consumption by to the public,91.07799407999998,TJ,CH4,10.0,kg/TJ,910.7799407999998,kg +47e3e416-2451-38f9-b73e-cb5ca04c2d2b,SESCO,II.1.1,Corrientes,AR-W,annual,2021,bioetanol combustion consumption by to the public,91.07799407999998,TJ,N2O,0.6,kg/TJ,54.64679644799999,kg +56eca713-0cf4-33c0-8da6-42a433270988,SESCO,II.1.1,Córdoba,AR-X,annual,2021,bioetanol combustion consumption by to the public,346.94151012,TJ,CH4,10.0,kg/TJ,3469.4151011999998,kg +ddeef86a-ffd9-3e15-b4cb-839420d16237,SESCO,II.1.1,Córdoba,AR-X,annual,2021,bioetanol combustion consumption by to the public,346.94151012,TJ,N2O,0.6,kg/TJ,208.16490607199998,kg +ca955bd6-4f9b-3aff-bfcd-2823b7f8ec05,SESCO,II.1.1,Entre Rios,AR-E,annual,2021,bioetanol combustion consumption by to the public,105.0919596,TJ,CH4,10.0,kg/TJ,1050.919596,kg +4d77be0b-8411-3a0d-bc05-782cb9f511a8,SESCO,II.1.1,Entre Rios,AR-E,annual,2021,bioetanol combustion consumption by to the public,105.0919596,TJ,N2O,0.6,kg/TJ,63.05517576,kg +72b36fe6-ce8a-320c-ad5c-460efa69ea02,SESCO,II.1.1,Formosa,AR-P,annual,2021,bioetanol combustion consumption by to the public,29.277991079999996,TJ,CH4,10.0,kg/TJ,292.7799108,kg +9a262cc8-d325-3ae0-b408-8991d6cf6c95,SESCO,II.1.1,Formosa,AR-P,annual,2021,bioetanol combustion consumption by to the public,29.277991079999996,TJ,N2O,0.6,kg/TJ,17.566794648,kg +73bdd4ae-00bb-3077-a522-d6cc70607c33,SESCO,II.1.1,Jujuy,AR-Y,annual,2021,bioetanol combustion consumption by to the public,20.466218159999997,TJ,CH4,10.0,kg/TJ,204.66218159999997,kg +024af8cb-af78-334b-b1f3-f83e15c14ae5,SESCO,II.1.1,Jujuy,AR-Y,annual,2021,bioetanol combustion consumption by to the public,20.466218159999997,TJ,N2O,0.6,kg/TJ,12.279730895999998,kg +b327438b-a9b6-30af-8c3b-1c9a30e300f7,SESCO,II.1.1,La Pampa,AR-L,annual,2021,bioetanol combustion consumption by to the public,25.2696186,TJ,CH4,10.0,kg/TJ,252.696186,kg +579fdd0f-f6c2-3e62-8872-e0cf160b2662,SESCO,II.1.1,La Pampa,AR-L,annual,2021,bioetanol combustion consumption by to the public,25.2696186,TJ,N2O,0.6,kg/TJ,15.16177116,kg +53a51ed2-aba3-3353-835e-f997f1d73ee0,SESCO,II.1.1,La Rioja,AR-F,annual,2021,bioetanol combustion consumption by to the public,20.131335,TJ,CH4,10.0,kg/TJ,201.31335,kg +da1cc285-8d08-3417-add8-ee3e9c71e2fb,SESCO,II.1.1,La Rioja,AR-F,annual,2021,bioetanol combustion consumption by to the public,20.131335,TJ,N2O,0.6,kg/TJ,12.078801,kg +1c570434-581d-3810-ad2c-5ebfad33636a,SESCO,II.1.1,Mendoza,AR-M,annual,2021,bioetanol combustion consumption by to the public,142.26399035999998,TJ,CH4,10.0,kg/TJ,1422.6399035999998,kg +7f2edda6-1f47-31af-b31a-062c01817462,SESCO,II.1.1,Mendoza,AR-M,annual,2021,bioetanol combustion consumption by to the public,142.26399035999998,TJ,N2O,0.6,kg/TJ,85.35839421599998,kg +59e5a2a1-5df7-3709-a14e-0cff345331a6,SESCO,II.1.1,Misiones,AR-N,annual,2021,bioetanol combustion consumption by to the public,104.98203611999999,TJ,CH4,10.0,kg/TJ,1049.8203612,kg +25c445ca-58eb-3c15-b584-0bb52e53b61b,SESCO,II.1.1,Misiones,AR-N,annual,2021,bioetanol combustion consumption by to the public,104.98203611999999,TJ,N2O,0.6,kg/TJ,62.98922167199999,kg +77e54ba6-46df-3321-bb85-414625f22018,SESCO,II.1.1,Neuquén,AR-Q,annual,2021,bioetanol combustion consumption by to the public,40.69469484,TJ,CH4,10.0,kg/TJ,406.9469484,kg +6bcb94cb-7096-3dff-b223-4e483ccf93f2,SESCO,II.1.1,Neuquén,AR-Q,annual,2021,bioetanol combustion consumption by to the public,40.69469484,TJ,N2O,0.6,kg/TJ,24.416816903999997,kg +d3aafc9e-05b9-3ac9-8550-fab902ae93d2,SESCO,II.1.1,Rio Negro,AR-R,annual,2021,bioetanol combustion consumption by to the public,28.47529404,TJ,CH4,10.0,kg/TJ,284.7529404,kg +348b2adf-1d4c-3695-a24f-db45171feed2,SESCO,II.1.1,Rio Negro,AR-R,annual,2021,bioetanol combustion consumption by to the public,28.47529404,TJ,N2O,0.6,kg/TJ,17.085176424,kg +dca9c6a4-64fb-33db-b89c-3f9e5bda370d,SESCO,II.1.1,Salta,AR-A,annual,2021,bioetanol combustion consumption by to the public,25.796228759999995,TJ,CH4,10.0,kg/TJ,257.96228759999997,kg +a40de6d0-4d07-3a12-920b-6c184cca44e9,SESCO,II.1.1,Salta,AR-A,annual,2021,bioetanol combustion consumption by to the public,25.796228759999995,TJ,N2O,0.6,kg/TJ,15.477737255999996,kg +62fc256f-fe85-3f0f-af7e-d5812c37a5af,SESCO,II.1.1,San Juan,AR-J,annual,2021,bioetanol combustion consumption by to the public,28.707922799999995,TJ,CH4,10.0,kg/TJ,287.07922799999994,kg +892792be-0ef6-3cc1-9803-6937a717795a,SESCO,II.1.1,San Juan,AR-J,annual,2021,bioetanol combustion consumption by to the public,28.707922799999995,TJ,N2O,0.6,kg/TJ,17.224753679999996,kg +18dd08ea-2235-3c27-8e6a-bead62616341,SESCO,II.1.1,San Luis,AR-D,annual,2021,bioetanol combustion consumption by to the public,23.434152119999997,TJ,CH4,10.0,kg/TJ,234.34152119999996,kg +4488ea57-f055-3811-8e06-8d21f4e70403,SESCO,II.1.1,San Luis,AR-D,annual,2021,bioetanol combustion consumption by to the public,23.434152119999997,TJ,N2O,0.6,kg/TJ,14.060491271999998,kg +53d37792-d688-38c4-a5ed-e942cad4c6ce,SESCO,II.1.1,Santa Fe,AR-S,annual,2021,bioetanol combustion consumption by to the public,283.2191244,TJ,CH4,10.0,kg/TJ,2832.191244,kg +c6d0c36d-121b-3c64-b608-200d19bafa7d,SESCO,II.1.1,Santa Fe,AR-S,annual,2021,bioetanol combustion consumption by to the public,283.2191244,TJ,N2O,0.6,kg/TJ,169.93147464,kg +adbeff1c-492d-3de0-95ff-1fd1d2fa4d29,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2021,bioetanol combustion consumption by to the public,44.18923895999999,TJ,CH4,10.0,kg/TJ,441.8923895999999,kg +706f766a-7f56-3020-a38a-1b31cd9a7604,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2021,bioetanol combustion consumption by to the public,44.18923895999999,TJ,N2O,0.6,kg/TJ,26.513543375999994,kg +a8e210f9-8451-3c6f-97da-bfe17b238d66,SESCO,II.1.1,Tucuman,AR-T,annual,2021,bioetanol combustion consumption by to the public,86.19279012,TJ,CH4,10.0,kg/TJ,861.9279012,kg +5f4527e9-8420-39b9-8ab3-d27a3774d16f,SESCO,II.1.1,Tucuman,AR-T,annual,2021,bioetanol combustion consumption by to the public,86.19279012,TJ,N2O,0.6,kg/TJ,51.715674072,kg +06a21bfc-cc0c-312a-9e1f-ebc04ac0dbce,SESCO,II.1.1,Buenos Aires,AR-B,annual,2021,bioetanol combustion consumption by to the public,670.0986468,TJ,CH4,10.0,kg/TJ,6700.986468,kg +5a91bf23-6bb9-32a7-9a14-99b9a994d5d8,SESCO,II.1.1,Buenos Aires,AR-B,annual,2021,bioetanol combustion consumption by to the public,670.0986468,TJ,N2O,0.6,kg/TJ,402.05918807999996,kg +735e2e7a-53e0-349d-8bae-5fdf6835d2e1,SESCO,II.1.1,Capital Federal,AR-C,annual,2021,bioetanol combustion consumption by to the public,263.2028256,TJ,CH4,10.0,kg/TJ,2632.0282559999996,kg +ddabdd1b-a3b0-3545-acc0-f750f4c675b5,SESCO,II.1.1,Capital Federal,AR-C,annual,2021,bioetanol combustion consumption by to the public,263.2028256,TJ,N2O,0.6,kg/TJ,157.92169535999997,kg +2337d36b-77e1-3c13-beb9-cf4cc8f18f34,SESCO,II.1.1,Catamarca,AR-K,annual,2021,bioetanol combustion consumption by to the public,3.1366537199999995,TJ,CH4,10.0,kg/TJ,31.366537199999996,kg +b31d01b4-0380-3622-aac6-06fed51c5df1,SESCO,II.1.1,Catamarca,AR-K,annual,2021,bioetanol combustion consumption by to the public,3.1366537199999995,TJ,N2O,0.6,kg/TJ,1.8819922319999995,kg +6d749794-2620-323e-91f0-0d15cfa1a5ec,SESCO,II.1.1,Chaco,AR-H,annual,2021,bioetanol combustion consumption by to the public,23.60031552,TJ,CH4,10.0,kg/TJ,236.00315519999998,kg +bc90cffc-d278-3f49-89ac-9190b30ec2c6,SESCO,II.1.1,Chaco,AR-H,annual,2021,bioetanol combustion consumption by to the public,23.60031552,TJ,N2O,0.6,kg/TJ,14.160189311999998,kg +22fd7707-2ea6-3dbb-9510-8f6e20864e4e,SESCO,II.1.1,Corrientes,AR-W,annual,2021,bioetanol combustion consumption by to the public,28.83829716,TJ,CH4,10.0,kg/TJ,288.3829716,kg +3492ae4d-d9a5-3e36-ae7a-6341f4a0f62a,SESCO,II.1.1,Corrientes,AR-W,annual,2021,bioetanol combustion consumption by to the public,28.83829716,TJ,N2O,0.6,kg/TJ,17.302978296,kg +6e144df6-b3e4-3bd7-af0a-e915c57a89a4,SESCO,II.1.1,Córdoba,AR-X,annual,2021,bioetanol combustion consumption by to the public,143.74923551999998,TJ,CH4,10.0,kg/TJ,1437.4923551999998,kg +e83a1e0d-56f8-3933-869e-ef2f0a432cdc,SESCO,II.1.1,Córdoba,AR-X,annual,2021,bioetanol combustion consumption by to the public,143.74923551999998,TJ,N2O,0.6,kg/TJ,86.24954131199999,kg +0fde6a1b-3494-31af-99a6-f8ffd8b57dd2,SESCO,II.1.1,Entre Rios,AR-E,annual,2021,bioetanol combustion consumption by to the public,34.85085588,TJ,CH4,10.0,kg/TJ,348.50855879999995,kg +2506b82b-0f58-3cf3-83fb-06d23a96226e,SESCO,II.1.1,Entre Rios,AR-E,annual,2021,bioetanol combustion consumption by to the public,34.85085588,TJ,N2O,0.6,kg/TJ,20.910513528,kg +206cde21-edb5-37c2-800e-6de2eee42a44,SESCO,II.1.1,Formosa,AR-P,annual,2021,bioetanol combustion consumption by to the public,9.97747308,TJ,CH4,10.0,kg/TJ,99.77473079999999,kg +4b30bd4f-e8c1-3449-ae65-97de69adcf61,SESCO,II.1.1,Formosa,AR-P,annual,2021,bioetanol combustion consumption by to the public,9.97747308,TJ,N2O,0.6,kg/TJ,5.986483848,kg +243745bb-779c-3779-8775-e8c355a33294,SESCO,II.1.1,Jujuy,AR-Y,annual,2021,bioetanol combustion consumption by to the public,6.34999824,TJ,CH4,10.0,kg/TJ,63.49998239999999,kg +c9dfe7c6-1a74-3669-8452-5bc5d85b9d33,SESCO,II.1.1,Jujuy,AR-Y,annual,2021,bioetanol combustion consumption by to the public,6.34999824,TJ,N2O,0.6,kg/TJ,3.8099989439999997,kg +833fa6ce-5397-3d95-8b17-d6b83140e347,SESCO,II.1.1,La Pampa,AR-L,annual,2021,bioetanol combustion consumption by to the public,13.390213679999999,TJ,CH4,10.0,kg/TJ,133.9021368,kg +97d9a018-8deb-3ff8-8a2a-89cfad848afe,SESCO,II.1.1,La Pampa,AR-L,annual,2021,bioetanol combustion consumption by to the public,13.390213679999999,TJ,N2O,0.6,kg/TJ,8.034128207999998,kg +8867cf24-5580-3641-a52b-384766149e8d,SESCO,II.1.1,La Rioja,AR-F,annual,2021,bioetanol combustion consumption by to the public,6.597965159999999,TJ,CH4,10.0,kg/TJ,65.9796516,kg +07886b64-77c1-38ec-87a2-a18fb753ede6,SESCO,II.1.1,La Rioja,AR-F,annual,2021,bioetanol combustion consumption by to the public,6.597965159999999,TJ,N2O,0.6,kg/TJ,3.9587790959999993,kg +87f91f28-f577-3753-8e8d-10d2e06189e4,SESCO,II.1.1,Mendoza,AR-M,annual,2021,bioetanol combustion consumption by to the public,59.44559544,TJ,CH4,10.0,kg/TJ,594.4559544,kg +4e631c93-381d-31ee-9d9b-54066a7ba883,SESCO,II.1.1,Mendoza,AR-M,annual,2021,bioetanol combustion consumption by to the public,59.44559544,TJ,N2O,0.6,kg/TJ,35.667357263999996,kg +fb4388e2-a4f2-34f6-bc8d-dbb96cd8a157,SESCO,II.1.1,Misiones,AR-N,annual,2021,bioetanol combustion consumption by to the public,24.441357959999998,TJ,CH4,10.0,kg/TJ,244.4135796,kg +86ded507-1d01-3d12-8aac-8ff53c11b04e,SESCO,II.1.1,Misiones,AR-N,annual,2021,bioetanol combustion consumption by to the public,24.441357959999998,TJ,N2O,0.6,kg/TJ,14.664814775999998,kg +64babc96-4a79-3ad3-9f18-7193e8d9c8f8,SESCO,II.1.1,Neuquén,AR-Q,annual,2021,bioetanol combustion consumption by to the public,24.81714288,TJ,CH4,10.0,kg/TJ,248.1714288,kg +67577193-4192-34a9-b5e2-44303bc1ee52,SESCO,II.1.1,Neuquén,AR-Q,annual,2021,bioetanol combustion consumption by to the public,24.81714288,TJ,N2O,0.6,kg/TJ,14.890285727999998,kg +20f1359c-4d6a-305a-8375-28ade1210830,SESCO,II.1.1,Rio Negro,AR-R,annual,2021,bioetanol combustion consumption by to the public,14.7118518,TJ,CH4,10.0,kg/TJ,147.118518,kg +2079c996-5f6b-3d57-9293-be2fdada7f06,SESCO,II.1.1,Rio Negro,AR-R,annual,2021,bioetanol combustion consumption by to the public,14.7118518,TJ,N2O,0.6,kg/TJ,8.82711108,kg +480b81a4-b88e-34fa-b9a2-cfc976040ee5,SESCO,II.1.1,Salta,AR-A,annual,2021,bioetanol combustion consumption by to the public,11.68000884,TJ,CH4,10.0,kg/TJ,116.80008839999999,kg +fdb62c5f-4c26-3337-b871-961b05ffdd77,SESCO,II.1.1,Salta,AR-A,annual,2021,bioetanol combustion consumption by to the public,11.68000884,TJ,N2O,0.6,kg/TJ,7.008005303999999,kg +a610bfa7-38b1-37cc-b999-62f01a0de12b,SESCO,II.1.1,San Juan,AR-J,annual,2021,bioetanol combustion consumption by to the public,9.07763436,TJ,CH4,10.0,kg/TJ,90.77634359999999,kg +b000176d-9093-331a-abab-97b9eebc897d,SESCO,II.1.1,San Juan,AR-J,annual,2021,bioetanol combustion consumption by to the public,9.07763436,TJ,N2O,0.6,kg/TJ,5.446580615999999,kg +dade3363-c81a-3ac8-be4a-f8877e32897c,SESCO,II.1.1,San Luis,AR-D,annual,2021,bioetanol combustion consumption by to the public,9.921233159999998,TJ,CH4,10.0,kg/TJ,99.21233159999998,kg +c9e371fc-0834-32f5-977a-be9102b4017f,SESCO,II.1.1,San Luis,AR-D,annual,2021,bioetanol combustion consumption by to the public,9.921233159999998,TJ,N2O,0.6,kg/TJ,5.952739895999999,kg +c534678d-2ade-39b6-b785-a0d5676be1cb,SESCO,II.1.1,Santa Fe,AR-S,annual,2021,bioetanol combustion consumption by to the public,131.972085,TJ,CH4,10.0,kg/TJ,1319.72085,kg +51f783d3-81a1-3b6b-806b-2ae353ab9b72,SESCO,II.1.1,Santa Fe,AR-S,annual,2021,bioetanol combustion consumption by to the public,131.972085,TJ,N2O,0.6,kg/TJ,79.183251,kg +1608812c-400f-3268-acd8-4b96c2b62270,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2021,bioetanol combustion consumption by to the public,14.213361599999997,TJ,CH4,10.0,kg/TJ,142.13361599999996,kg +6fd9e982-9698-33e4-8b76-92b83b757cec,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2021,bioetanol combustion consumption by to the public,14.213361599999997,TJ,N2O,0.6,kg/TJ,8.528016959999999,kg +44d0f82e-822b-354e-8d52-03b15c21946c,SESCO,II.1.1,Tucuman,AR-T,annual,2021,bioetanol combustion consumption by to the public,23.63610456,TJ,CH4,10.0,kg/TJ,236.3610456,kg +666b7cd9-c7ca-3b0b-ac89-771b2e1f6c88,SESCO,II.1.1,Tucuman,AR-T,annual,2021,bioetanol combustion consumption by to the public,23.63610456,TJ,N2O,0.6,kg/TJ,14.181662736,kg +e4deccd9-4408-3049-938f-02d84a23e90e,SESCO,I.3.1,Buenos Aires,AR-B,annual,2021,bioetanol combustion consumption by petrochemical industries,3.6683765999999998,TJ,CH4,10.0,kg/TJ,36.683766,kg +a51054a1-fd7d-3063-8b5a-897735eec741,SESCO,I.3.1,Buenos Aires,AR-B,annual,2021,bioetanol combustion consumption by petrochemical industries,3.6683765999999998,TJ,N2O,0.6,kg/TJ,2.20102596,kg +3be00ff5-335c-302f-b30d-5d7f58f5da23,SESCO,I.3.1,Misiones,AR-N,annual,2021,bioetanol combustion consumption by petrochemical industries,0.13293072,TJ,CH4,10.0,kg/TJ,1.3293072000000001,kg +fa597d8a-b5da-31dd-92e3-e326e4eeeff5,SESCO,I.3.1,Misiones,AR-N,annual,2021,bioetanol combustion consumption by petrochemical industries,0.13293072,TJ,N2O,0.6,kg/TJ,0.079758432,kg +aeb5171a-78d9-3837-8a00-e2b84b1ab7f4,SESCO,I.3.1,Buenos Aires,AR-B,annual,2021,bioetanol combustion consumption by petrochemical industries,1.1478056399999998,TJ,CH4,10.0,kg/TJ,11.478056399999998,kg +aa6ea3fe-4459-3eeb-96a5-240d51813389,SESCO,I.3.1,Buenos Aires,AR-B,annual,2021,bioetanol combustion consumption by petrochemical industries,1.1478056399999998,TJ,N2O,0.6,kg/TJ,0.6886833839999998,kg +ae73978a-b450-306d-9579-af8fa9c9b4f1,SESCO,I.3.1,Capital Federal,AR-C,annual,2021,bioetanol combustion consumption by petrochemical industries,0.038345399999999995,TJ,CH4,10.0,kg/TJ,0.38345399999999996,kg +623e00ab-e39c-3ce3-8eff-34aaaaf09365,SESCO,I.3.1,Capital Federal,AR-C,annual,2021,bioetanol combustion consumption by petrochemical industries,0.038345399999999995,TJ,N2O,0.6,kg/TJ,0.023007239999999995,kg +e747949f-7508-3cbc-8f73-ae22ae3eb5b8,SESCO,I.3.1,Entre Rios,AR-E,annual,2021,bioetanol combustion consumption by petrochemical industries,0.11503619999999998,TJ,CH4,10.0,kg/TJ,1.1503619999999999,kg +037ebfba-5065-35ce-ba6e-da54ea2e37eb,SESCO,I.3.1,Entre Rios,AR-E,annual,2021,bioetanol combustion consumption by petrochemical industries,0.11503619999999998,TJ,N2O,0.6,kg/TJ,0.06902171999999998,kg +113817c8-b201-3e5e-89d5-6ea158a7528b,SESCO,I.3.1,La Pampa,AR-L,annual,2021,bioetanol combustion consumption by petrochemical industries,0.020450879999999998,TJ,CH4,10.0,kg/TJ,0.2045088,kg +531c5ef9-5c0e-38c4-8938-8f41cb99fd61,SESCO,I.3.1,La Pampa,AR-L,annual,2021,bioetanol combustion consumption by petrochemical industries,0.020450879999999998,TJ,N2O,0.6,kg/TJ,0.012270527999999998,kg +65fea03a-36d0-38f7-b2ad-406c1dec03c8,SESCO,I.3.1,Misiones,AR-N,annual,2021,bioetanol combustion consumption by petrochemical industries,0.035789039999999994,TJ,CH4,10.0,kg/TJ,0.35789039999999994,kg +40e3c41c-5eab-33a3-ad1f-8e454c04d92b,SESCO,I.3.1,Misiones,AR-N,annual,2021,bioetanol combustion consumption by petrochemical industries,0.035789039999999994,TJ,N2O,0.6,kg/TJ,0.021473423999999994,kg +4afb0f3c-a3ff-3d8d-a94f-4649d7687241,SESCO,I.3.1,Rio Negro,AR-R,annual,2021,bioetanol combustion consumption by petrochemical industries,0.09458531999999999,TJ,CH4,10.0,kg/TJ,0.9458531999999998,kg +959dfb5b-621d-30f1-a108-9cab762595a1,SESCO,I.3.1,Rio Negro,AR-R,annual,2021,bioetanol combustion consumption by petrochemical industries,0.09458531999999999,TJ,N2O,0.6,kg/TJ,0.05675119199999999,kg +91bed77f-8b54-39db-a563-51ad3480f9a3,SESCO,I.3.1,San Juan,AR-J,annual,2021,bioetanol combustion consumption by petrochemical industries,0.2811996,TJ,CH4,10.0,kg/TJ,2.8119959999999997,kg +f42105ab-9538-3dad-8b59-c4b8dc2c6251,SESCO,I.3.1,San Juan,AR-J,annual,2021,bioetanol combustion consumption by petrochemical industries,0.2811996,TJ,N2O,0.6,kg/TJ,0.16871976,kg +a286557f-914e-352d-896e-d310de65adce,SESCO,I.3.1,San Luis,AR-D,annual,2021,bioetanol combustion consumption by petrochemical industries,0.063909,TJ,CH4,10.0,kg/TJ,0.6390899999999999,kg +6ea450ff-79dd-316f-977f-d1dfdc2d7984,SESCO,I.3.1,San Luis,AR-D,annual,2021,bioetanol combustion consumption by petrochemical industries,0.063909,TJ,N2O,0.6,kg/TJ,0.038345399999999995,kg +94168968-248f-3ebb-84e2-9fe1824648db,SESCO,I.3.1,Santa Fe,AR-S,annual,2021,bioetanol combustion consumption by petrochemical industries,0.038345399999999995,TJ,CH4,10.0,kg/TJ,0.38345399999999996,kg +bca2e62d-67e9-3c63-8d0e-894933c674ad,SESCO,I.3.1,Santa Fe,AR-S,annual,2021,bioetanol combustion consumption by petrochemical industries,0.038345399999999995,TJ,N2O,0.6,kg/TJ,0.023007239999999995,kg +fc1a1d15-52b7-3891-9d90-8f8be5ce6c0d,SESCO,I.3.1,Tucuman,AR-T,annual,2021,bioetanol combustion consumption by petrochemical industries,0.06902172,TJ,CH4,10.0,kg/TJ,0.6902172,kg +12140e47-927d-3461-a4ea-d5664cdede4c,SESCO,I.3.1,Tucuman,AR-T,annual,2021,bioetanol combustion consumption by petrochemical industries,0.06902172,TJ,N2O,0.6,kg/TJ,0.041413031999999995,kg +3b1a9823-d56d-31d7-b242-7106e8574120,SESCO,II.5.1,Buenos Aires,AR-B,annual,2021,bioetanol combustion consumption by agriculture machines,5.264542220399999,TJ,CH4,10.0,kg/TJ,52.64542220399999,kg +1ee37ef2-aac7-372f-a568-2189660a253c,SESCO,II.5.1,Buenos Aires,AR-B,annual,2021,bioetanol combustion consumption by agriculture machines,5.264542220399999,TJ,N2O,0.6,kg/TJ,3.1587253322399995,kg +5fd4f5d1-4c2f-3a3f-a1ec-0d81a4c2ecec,SESCO,II.5.1,Capital Federal,AR-C,annual,2021,bioetanol combustion consumption by agriculture machines,1.46413218276,TJ,CH4,10.0,kg/TJ,14.6413218276,kg +5d513abd-9099-32fb-99b5-29c31ce43b67,SESCO,II.5.1,Capital Federal,AR-C,annual,2021,bioetanol combustion consumption by agriculture machines,1.46413218276,TJ,N2O,0.6,kg/TJ,0.878479309656,kg +2cd2659c-fab6-3e05-b3e3-54e0f07d6d9a,SESCO,II.5.1,Córdoba,AR-X,annual,2021,bioetanol combustion consumption by agriculture machines,0.8265402097199999,TJ,CH4,10.0,kg/TJ,8.265402097199999,kg +36c77241-8d91-3d18-87a3-627459399244,SESCO,II.5.1,Córdoba,AR-X,annual,2021,bioetanol combustion consumption by agriculture machines,0.8265402097199999,TJ,N2O,0.6,kg/TJ,0.4959241258319999,kg +3fdfeec4-c898-3790-b654-782eb10bc2e4,SESCO,II.5.1,Santa Fe,AR-S,annual,2021,bioetanol combustion consumption by agriculture machines,20.848046315039998,TJ,CH4,10.0,kg/TJ,208.48046315039997,kg +83ee0066-93b0-36fb-8d87-3730630359b7,SESCO,II.5.1,Santa Fe,AR-S,annual,2021,bioetanol combustion consumption by agriculture machines,20.848046315039998,TJ,N2O,0.6,kg/TJ,12.508827789023998,kg +45279853-a6ee-3c51-a84e-0449bd46358e,SESCO,II.5.1,Tucuman,AR-T,annual,2021,bioetanol combustion consumption by agriculture machines,0.04575884399999999,TJ,CH4,10.0,kg/TJ,0.45758843999999993,kg +dc0f9a5d-ec06-30d1-a220-9529072e3539,SESCO,II.5.1,Tucuman,AR-T,annual,2021,bioetanol combustion consumption by agriculture machines,0.04575884399999999,TJ,N2O,0.6,kg/TJ,0.027455306399999994,kg +b3ed4dde-cedd-3164-9ef4-756aac807305,SESCO,II.5.1,Buenos Aires,AR-B,annual,2021,bioetanol combustion consumption by agriculture machines,1.26310003236,TJ,CH4,10.0,kg/TJ,12.631000323599999,kg +efe0ec41-a964-32bd-b8e9-e87a7f3d5692,SESCO,II.5.1,Buenos Aires,AR-B,annual,2021,bioetanol combustion consumption by agriculture machines,1.26310003236,TJ,N2O,0.6,kg/TJ,0.7578600194159999,kg +11927534-2f57-32f3-96da-e37e0deb0eee,SESCO,II.5.1,Capital Federal,AR-C,annual,2021,bioetanol combustion consumption by agriculture machines,0.3192663567599999,TJ,CH4,10.0,kg/TJ,3.1926635675999995,kg +6d480797-4e8c-396f-bc1d-ec9309b771e2,SESCO,II.5.1,Capital Federal,AR-C,annual,2021,bioetanol combustion consumption by agriculture machines,0.3192663567599999,TJ,N2O,0.6,kg/TJ,0.19155981405599995,kg +87478693-f5ba-31fe-afe8-b21ecb2c1b2a,SESCO,II.5.1,Córdoba,AR-X,annual,2021,bioetanol combustion consumption by agriculture machines,0.19078370315999998,TJ,CH4,10.0,kg/TJ,1.9078370315999997,kg +7017238b-db48-3ca1-9ef7-75c7909dfdc0,SESCO,II.5.1,Córdoba,AR-X,annual,2021,bioetanol combustion consumption by agriculture machines,0.19078370315999998,TJ,N2O,0.6,kg/TJ,0.11447022189599998,kg +22d1f704-b7b5-35b4-81d0-2ea8e2e27393,SESCO,II.5.1,Santa Fe,AR-S,annual,2021,bioetanol combustion consumption by agriculture machines,2.175398451,TJ,CH4,10.0,kg/TJ,21.75398451,kg +70283142-53fe-3b67-97b0-86a50c011044,SESCO,II.5.1,Santa Fe,AR-S,annual,2021,bioetanol combustion consumption by agriculture machines,2.175398451,TJ,N2O,0.6,kg/TJ,1.3052390705999999,kg +f9e66aed-5a39-3cc4-8e0b-99738a3c4a8b,SESCO,II.1.1,Buenos Aires,AR-B,annual,2021,bioetanol combustion consumption by to the public,366.73601145731993,TJ,CH4,10.0,kg/TJ,3667.360114573199,kg +d84d8c0e-8b68-367d-84e4-81b673df8fa0,SESCO,II.1.1,Buenos Aires,AR-B,annual,2021,bioetanol combustion consumption by to the public,366.73601145731993,TJ,N2O,0.6,kg/TJ,220.04160687439196,kg +411450d4-1e8d-3609-8fb4-a0f4972a1dd7,SESCO,II.1.1,Capital Federal,AR-C,annual,2021,bioetanol combustion consumption by to the public,23.1437751876,TJ,CH4,10.0,kg/TJ,231.437751876,kg +e67a2103-68da-3b3d-a1e1-7492776e8dc3,SESCO,II.1.1,Capital Federal,AR-C,annual,2021,bioetanol combustion consumption by to the public,23.1437751876,TJ,N2O,0.6,kg/TJ,13.886265112559999,kg +5c0acd65-6f0b-3013-8534-73e5212ab801,SESCO,II.1.1,Catamarca,AR-K,annual,2021,bioetanol combustion consumption by to the public,3.5926597731600003,TJ,CH4,10.0,kg/TJ,35.926597731600005,kg +2d0d268c-851b-3bb2-84c5-38f73c240c0a,SESCO,II.1.1,Catamarca,AR-K,annual,2021,bioetanol combustion consumption by to the public,3.5926597731600003,TJ,N2O,0.6,kg/TJ,2.155595863896,kg +22bb78d6-e8dd-37e9-b24e-3342cfb514c8,SESCO,II.1.1,Chaco,AR-H,annual,2021,bioetanol combustion consumption by to the public,3.8494052333999997,TJ,CH4,10.0,kg/TJ,38.494052333999996,kg +47bb49b3-8539-38dc-abd2-aafc3fe7c066,SESCO,II.1.1,Chaco,AR-H,annual,2021,bioetanol combustion consumption by to the public,3.8494052333999997,TJ,N2O,0.6,kg/TJ,2.30964314004,kg +1450e207-996f-30b7-b8af-b75e32602dfd,SESCO,II.1.1,Chubut,AR-U,annual,2021,bioetanol combustion consumption by to the public,25.55665181352,TJ,CH4,10.0,kg/TJ,255.5665181352,kg +68b2f30d-05d9-3120-8de7-3e0a51401ad0,SESCO,II.1.1,Chubut,AR-U,annual,2021,bioetanol combustion consumption by to the public,25.55665181352,TJ,N2O,0.6,kg/TJ,15.333991088111999,kg +1533baf8-6e60-35d4-aea1-6b194972590a,SESCO,II.1.1,Corrientes,AR-W,annual,2021,bioetanol combustion consumption by to the public,23.557072134239995,TJ,CH4,10.0,kg/TJ,235.57072134239996,kg +6e080a54-6f77-3804-aa65-932818eaf25e,SESCO,II.1.1,Corrientes,AR-W,annual,2021,bioetanol combustion consumption by to the public,23.557072134239995,TJ,N2O,0.6,kg/TJ,14.134243280543997,kg +f0bbd417-0bb3-3254-9d09-de5856309098,SESCO,II.1.1,Córdoba,AR-X,annual,2021,bioetanol combustion consumption by to the public,56.76159382884,TJ,CH4,10.0,kg/TJ,567.6159382884,kg +41d5ebb9-9969-3f4b-b2fe-24a923e70890,SESCO,II.1.1,Córdoba,AR-X,annual,2021,bioetanol combustion consumption by to the public,56.76159382884,TJ,N2O,0.6,kg/TJ,34.056956297304,kg +11c6791a-9753-30ec-a82a-8e1c47a28ee3,SESCO,II.1.1,Entre Rios,AR-E,annual,2021,bioetanol combustion consumption by to the public,46.46629362276,TJ,CH4,10.0,kg/TJ,464.66293622759997,kg +9b450e5a-4a3e-3a3b-b919-59ef0a58c72d,SESCO,II.1.1,Entre Rios,AR-E,annual,2021,bioetanol combustion consumption by to the public,46.46629362276,TJ,N2O,0.6,kg/TJ,27.879776173655998,kg +b567920f-9309-3c74-9de2-12d9eebcc443,SESCO,II.1.1,Jujuy,AR-Y,annual,2021,bioetanol combustion consumption by to the public,3.8042445776399996,TJ,CH4,10.0,kg/TJ,38.042445776399994,kg +497db59b-4a69-3f34-bb55-e8c0b5f4a420,SESCO,II.1.1,Jujuy,AR-Y,annual,2021,bioetanol combustion consumption by to the public,3.8042445776399996,TJ,N2O,0.6,kg/TJ,2.2825467465839995,kg +14a97ff3-b370-30bd-a541-65b379c3f614,SESCO,II.1.1,La Pampa,AR-L,annual,2021,bioetanol combustion consumption by to the public,29.53945046808,TJ,CH4,10.0,kg/TJ,295.39450468079997,kg +92085314-201b-39a7-b049-09535b502d9a,SESCO,II.1.1,La Pampa,AR-L,annual,2021,bioetanol combustion consumption by to the public,29.53945046808,TJ,N2O,0.6,kg/TJ,17.723670280847998,kg +c1445d73-61ae-3206-acd9-7ae25c6ddbfa,SESCO,II.1.1,Mendoza,AR-M,annual,2021,bioetanol combustion consumption by to the public,7.022988129959999,TJ,CH4,10.0,kg/TJ,70.2298812996,kg +e40fab82-c109-3425-bb85-1b4d3ae8a430,SESCO,II.1.1,Mendoza,AR-M,annual,2021,bioetanol combustion consumption by to the public,7.022988129959999,TJ,N2O,0.6,kg/TJ,4.213792877975999,kg +44ac98b4-e9ad-346b-9ea6-d6a0328bcbc3,SESCO,II.1.1,Neuquén,AR-Q,annual,2021,bioetanol combustion consumption by to the public,31.763522013479996,TJ,CH4,10.0,kg/TJ,317.63522013479997,kg +33fc82fc-4368-3969-8be9-ce66161a4e49,SESCO,II.1.1,Neuquén,AR-Q,annual,2021,bioetanol combustion consumption by to the public,31.763522013479996,TJ,N2O,0.6,kg/TJ,19.058113208087995,kg +db7074eb-10d2-3b19-b272-49f3327f9842,SESCO,II.1.1,Rio Negro,AR-R,annual,2021,bioetanol combustion consumption by to the public,106.15968470663998,TJ,CH4,10.0,kg/TJ,1061.5968470663997,kg +527e978d-b0b9-398a-922a-073b0b26ca9f,SESCO,II.1.1,Rio Negro,AR-R,annual,2021,bioetanol combustion consumption by to the public,106.15968470663998,TJ,N2O,0.6,kg/TJ,63.69581082398398,kg +c4e19342-3628-348a-b3c8-1b3ac705444a,SESCO,II.1.1,San Juan,AR-J,annual,2021,bioetanol combustion consumption by to the public,17.81729492076,TJ,CH4,10.0,kg/TJ,178.17294920759997,kg +d9206cbb-3d46-3218-943c-b85b85b23fe0,SESCO,II.1.1,San Juan,AR-J,annual,2021,bioetanol combustion consumption by to the public,17.81729492076,TJ,N2O,0.6,kg/TJ,10.690376952455999,kg +d3807b30-55e4-330d-ae3f-3482ba8a7adc,SESCO,II.1.1,San Luis,AR-D,annual,2021,bioetanol combustion consumption by to the public,6.4558698894,TJ,CH4,10.0,kg/TJ,64.558698894,kg +b3dcbc25-f201-3b24-96f7-199bf61f9a60,SESCO,II.1.1,San Luis,AR-D,annual,2021,bioetanol combustion consumption by to the public,6.4558698894,TJ,N2O,0.6,kg/TJ,3.8735219336399997,kg +8a1227bc-9521-3733-b8fa-650caa1c2597,SESCO,II.1.1,Santa Fe,AR-S,annual,2021,bioetanol combustion consumption by to the public,80.16329551499999,TJ,CH4,10.0,kg/TJ,801.6329551499998,kg +ec05dd14-acb5-3720-a57c-b366f9e49b81,SESCO,II.1.1,Santa Fe,AR-S,annual,2021,bioetanol combustion consumption by to the public,80.16329551499999,TJ,N2O,0.6,kg/TJ,48.097977308999994,kg +0f5ad232-6496-3c20-9390-744b4bec422f,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2021,bioetanol combustion consumption by to the public,5.3237219544,TJ,CH4,10.0,kg/TJ,53.237219544,kg +c98a21de-267f-3b81-9ceb-ae3a8fc12ea0,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2021,bioetanol combustion consumption by to the public,5.3237219544,TJ,N2O,0.6,kg/TJ,3.1942331726399997,kg +29a2cf1f-445e-3f16-9d46-7b3292535a1f,SESCO,II.1.1,Buenos Aires,AR-B,annual,2021,bioetanol combustion consumption by to the public,58.273097918759994,TJ,CH4,10.0,kg/TJ,582.7309791875999,kg +e389e11c-7498-3da7-8366-f4c953130430,SESCO,II.1.1,Buenos Aires,AR-B,annual,2021,bioetanol combustion consumption by to the public,58.273097918759994,TJ,N2O,0.6,kg/TJ,34.963858751256,kg +0cb3f5b8-a656-3b47-9d8a-e4ae7539b42e,SESCO,II.1.1,Capital Federal,AR-C,annual,2021,bioetanol combustion consumption by to the public,3.72089190348,TJ,CH4,10.0,kg/TJ,37.208919034800005,kg +6598e8e5-46b3-3173-8495-5fdf859f6363,SESCO,II.1.1,Capital Federal,AR-C,annual,2021,bioetanol combustion consumption by to the public,3.72089190348,TJ,N2O,0.6,kg/TJ,2.232535142088,kg +a10919b7-68bb-37eb-94de-ec9a59e359bb,SESCO,II.1.1,Catamarca,AR-K,annual,2021,bioetanol combustion consumption by to the public,0.29172157776,TJ,CH4,10.0,kg/TJ,2.9172157776,kg +5d0c7608-75e7-39a1-86ef-86ab6cdb171a,SESCO,II.1.1,Catamarca,AR-K,annual,2021,bioetanol combustion consumption by to the public,0.29172157776,TJ,N2O,0.6,kg/TJ,0.175032946656,kg +6d83b6f6-8c32-3254-b0ca-1e3e7d5bd1a5,SESCO,II.1.1,Chaco,AR-H,annual,2021,bioetanol combustion consumption by to the public,0.40832482643999995,TJ,CH4,10.0,kg/TJ,4.0832482644,kg +0eb58db6-6ffd-3daf-96d1-5856f4d156a9,SESCO,II.1.1,Chaco,AR-H,annual,2021,bioetanol combustion consumption by to the public,0.40832482643999995,TJ,N2O,0.6,kg/TJ,0.24499489586399997,kg +c4277651-1d61-3cbe-9942-d4f55d7f9c92,SESCO,II.1.1,Chubut,AR-U,annual,2021,bioetanol combustion consumption by to the public,3.82052092176,TJ,CH4,10.0,kg/TJ,38.2052092176,kg +e4c3afeb-eea4-3407-bc69-b7fc01914690,SESCO,II.1.1,Chubut,AR-U,annual,2021,bioetanol combustion consumption by to the public,3.82052092176,TJ,N2O,0.6,kg/TJ,2.292312553056,kg +e423ebb2-8842-3670-bee3-2255b4d107f4,SESCO,II.1.1,Corrientes,AR-W,annual,2021,bioetanol combustion consumption by to the public,2.41791265512,TJ,CH4,10.0,kg/TJ,24.1791265512,kg +8e6a4141-abe0-30a4-89be-b6b4b9d41286,SESCO,II.1.1,Corrientes,AR-W,annual,2021,bioetanol combustion consumption by to the public,2.41791265512,TJ,N2O,0.6,kg/TJ,1.450747593072,kg +bbe216cf-09f6-3113-b849-29a198927445,SESCO,II.1.1,Córdoba,AR-X,annual,2021,bioetanol combustion consumption by to the public,9.51967757484,TJ,CH4,10.0,kg/TJ,95.1967757484,kg +04d8ccaf-5693-3dcd-9cbb-3855c8e39baf,SESCO,II.1.1,Córdoba,AR-X,annual,2021,bioetanol combustion consumption by to the public,9.51967757484,TJ,N2O,0.6,kg/TJ,5.711806544903999,kg +dd46fabc-62e9-38d1-bdfc-7e30cbf6280f,SESCO,II.1.1,Entre Rios,AR-E,annual,2021,bioetanol combustion consumption by to the public,8.81452867608,TJ,CH4,10.0,kg/TJ,88.1452867608,kg +706ed070-ed1c-3e2e-96c2-ab619cdc65e9,SESCO,II.1.1,Entre Rios,AR-E,annual,2021,bioetanol combustion consumption by to the public,8.81452867608,TJ,N2O,0.6,kg/TJ,5.288717205648,kg +4c3648f4-d417-3995-9771-d61eb782f618,SESCO,II.1.1,Jujuy,AR-Y,annual,2021,bioetanol combustion consumption by to the public,0.08563805999999999,TJ,CH4,10.0,kg/TJ,0.8563805999999998,kg +a69a3815-3748-315a-a1e6-355100e08c87,SESCO,II.1.1,Jujuy,AR-Y,annual,2021,bioetanol combustion consumption by to the public,0.08563805999999999,TJ,N2O,0.6,kg/TJ,0.051382835999999994,kg +2262e91b-33a0-39e3-8939-7bc464a4bd90,SESCO,II.1.1,La Pampa,AR-L,annual,2021,bioetanol combustion consumption by to the public,6.855592564439999,TJ,CH4,10.0,kg/TJ,68.55592564439999,kg +b7175859-1d7d-387d-afea-fa9b2bea55f1,SESCO,II.1.1,La Pampa,AR-L,annual,2021,bioetanol combustion consumption by to the public,6.855592564439999,TJ,N2O,0.6,kg/TJ,4.113355538663999,kg +e5680475-9674-389f-bcb5-0caf5cc575e3,SESCO,II.1.1,Mendoza,AR-M,annual,2021,bioetanol combustion consumption by to the public,0.95893409412,TJ,CH4,10.0,kg/TJ,9.5893409412,kg +aec8da2c-550c-3e09-80b0-ab41dafcdd5c,SESCO,II.1.1,Mendoza,AR-M,annual,2021,bioetanol combustion consumption by to the public,0.95893409412,TJ,N2O,0.6,kg/TJ,0.575360456472,kg +a6d08f8d-10d8-3b99-a9e0-66d07dd042e8,SESCO,II.1.1,Neuquén,AR-Q,annual,2021,bioetanol combustion consumption by to the public,9.695460557519999,TJ,CH4,10.0,kg/TJ,96.95460557519999,kg +c1b11594-4fe4-3889-a80a-12afb8f44880,SESCO,II.1.1,Neuquén,AR-Q,annual,2021,bioetanol combustion consumption by to the public,9.695460557519999,TJ,N2O,0.6,kg/TJ,5.817276334511999,kg +fdac0ee2-b790-3276-9b36-8a8269005d32,SESCO,II.1.1,Rio Negro,AR-R,annual,2021,bioetanol combustion consumption by to the public,16.663279882319998,TJ,CH4,10.0,kg/TJ,166.63279882319998,kg +3b5b5ada-32a3-3b2d-8465-33b9865874de,SESCO,II.1.1,Rio Negro,AR-R,annual,2021,bioetanol combustion consumption by to the public,16.663279882319998,TJ,N2O,0.6,kg/TJ,9.997967929391999,kg +098fcb0e-550c-3863-99e1-80cb7a5c8c7f,SESCO,II.1.1,San Juan,AR-J,annual,2021,bioetanol combustion consumption by to the public,2.03803500276,TJ,CH4,10.0,kg/TJ,20.380350027600002,kg +c97adedc-c517-38e1-9a74-b783d47c7582,SESCO,II.1.1,San Juan,AR-J,annual,2021,bioetanol combustion consumption by to the public,2.03803500276,TJ,N2O,0.6,kg/TJ,1.222821001656,kg +5e3efb30-b2d1-35b5-befe-75caed2497f4,SESCO,II.1.1,San Luis,AR-D,annual,2021,bioetanol combustion consumption by to the public,1.40881255236,TJ,CH4,10.0,kg/TJ,14.088125523599999,kg +a0f03de1-a01c-347a-825b-2b2ea01faf72,SESCO,II.1.1,San Luis,AR-D,annual,2021,bioetanol combustion consumption by to the public,1.40881255236,TJ,N2O,0.6,kg/TJ,0.8452875314159999,kg +f7f7c4e4-f5c2-337d-9438-89a9e6a745da,SESCO,II.1.1,Santa Fe,AR-S,annual,2021,bioetanol combustion consumption by to the public,16.400519306999996,TJ,CH4,10.0,kg/TJ,164.00519306999996,kg +89f83a50-7b03-3f66-a6ff-02ef864ba574,SESCO,II.1.1,Santa Fe,AR-S,annual,2021,bioetanol combustion consumption by to the public,16.400519306999996,TJ,N2O,0.6,kg/TJ,9.840311584199997,kg +81e46c1f-5ecf-3b9b-90c6-99a7ffac2bf9,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2021,bioetanol combustion consumption by to the public,0.58886008236,TJ,CH4,10.0,kg/TJ,5.8886008236,kg +e738f6ed-cff1-35dc-acc0-bc9ba39964ab,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2021,bioetanol combustion consumption by to the public,0.58886008236,TJ,N2O,0.6,kg/TJ,0.353316049416,kg +d6725949-ae88-3b29-8b2e-6cefc325b3a3,SESCO,II.5.1,Buenos Aires,AR-B,annual,2021,bioetanol combustion consumption by agriculture machines,0.41157395999999996,TJ,CH4,10.0,kg/TJ,4.1157395999999995,kg +fe84b6dd-3ded-322e-a3b4-d24cd1c941f4,SESCO,II.5.1,Buenos Aires,AR-B,annual,2021,bioetanol combustion consumption by agriculture machines,0.41157395999999996,TJ,N2O,0.6,kg/TJ,0.24694437599999997,kg +496d5eea-bf00-3cf9-baba-623093108044,SESCO,II.5.1,Entre Rios,AR-E,annual,2021,bioetanol combustion consumption by agriculture machines,0.028119959999999996,TJ,CH4,10.0,kg/TJ,0.28119959999999994,kg +ac969ad8-0cb3-3b37-91c7-0d92842c76d4,SESCO,II.5.1,Entre Rios,AR-E,annual,2021,bioetanol combustion consumption by agriculture machines,0.028119959999999996,TJ,N2O,0.6,kg/TJ,0.016871975999999997,kg +9ee3631f-8b0e-3468-b9ca-5cc856bcbe20,SESCO,II.5.1,Salta,AR-A,annual,2021,bioetanol combustion consumption by agriculture machines,0.05368356,TJ,CH4,10.0,kg/TJ,0.5368356,kg +a8bca11d-a81b-3486-83fd-c43825b56070,SESCO,II.5.1,Salta,AR-A,annual,2021,bioetanol combustion consumption by agriculture machines,0.05368356,TJ,N2O,0.6,kg/TJ,0.032210136,kg +8a299b0b-8bc1-3c74-b5c4-bb572e794534,SESCO,II.5.1,Santa Fe,AR-S,annual,2021,bioetanol combustion consumption by agriculture machines,0.89728236,TJ,CH4,10.0,kg/TJ,8.9728236,kg +42329c4e-eca9-3366-a3ec-01afadec023d,SESCO,II.5.1,Santa Fe,AR-S,annual,2021,bioetanol combustion consumption by agriculture machines,0.89728236,TJ,N2O,0.6,kg/TJ,0.538369416,kg +280ba528-b40c-335f-82a5-a97ae881359c,SESCO,II.5.1,Santa Fe,AR-S,annual,2021,bioetanol combustion consumption by agriculture machines,0.06135263999999999,TJ,CH4,10.0,kg/TJ,0.6135263999999999,kg +1081de37-7686-3360-bf4f-162942d4a615,SESCO,II.5.1,Santa Fe,AR-S,annual,2021,bioetanol combustion consumption by agriculture machines,0.06135263999999999,TJ,N2O,0.6,kg/TJ,0.036811583999999994,kg +506295c3-43e0-321c-8ba3-f2c4aa22ce24,SESCO,II.1.1,Buenos Aires,AR-B,annual,2021,bioetanol combustion consumption by to the public,2841.85684116,TJ,CH4,10.0,kg/TJ,28418.568411599997,kg +b5146bd0-618b-39da-8e97-fc644a075721,SESCO,II.1.1,Buenos Aires,AR-B,annual,2021,bioetanol combustion consumption by to the public,2841.85684116,TJ,N2O,0.6,kg/TJ,1705.114104696,kg +61f05e09-803f-363b-ace4-c50df93a5dbe,SESCO,II.1.1,Capital Federal,AR-C,annual,2021,bioetanol combustion consumption by to the public,562.2509311199999,TJ,CH4,10.0,kg/TJ,5622.5093111999995,kg +64c0456e-dc27-3ea7-9c8c-511d37a086fc,SESCO,II.1.1,Capital Federal,AR-C,annual,2021,bioetanol combustion consumption by to the public,562.2509311199999,TJ,N2O,0.6,kg/TJ,337.3505586719999,kg +aa0208ab-c66f-315c-a273-29fc609010a9,SESCO,II.1.1,Catamarca,AR-K,annual,2021,bioetanol combustion consumption by to the public,59.92874747999999,TJ,CH4,10.0,kg/TJ,599.2874747999999,kg +a56b83d9-6078-310e-b993-078e9285303d,SESCO,II.1.1,Catamarca,AR-K,annual,2021,bioetanol combustion consumption by to the public,59.92874747999999,TJ,N2O,0.6,kg/TJ,35.95724848799999,kg +066f5d60-0d07-3129-bde9-472f360fb615,SESCO,II.1.1,Chaco,AR-H,annual,2021,bioetanol combustion consumption by to the public,179.47692287999996,TJ,CH4,10.0,kg/TJ,1794.7692287999996,kg +10ff0ce7-922b-3fa5-871b-c35076c93a6e,SESCO,II.1.1,Chaco,AR-H,annual,2021,bioetanol combustion consumption by to the public,179.47692287999996,TJ,N2O,0.6,kg/TJ,107.68615372799998,kg +87740061-0b69-3da5-aa02-50600f0d2113,SESCO,II.1.1,Chubut,AR-U,annual,2021,bioetanol combustion consumption by to the public,258.128451,TJ,CH4,10.0,kg/TJ,2581.28451,kg +476f6649-0136-39a5-9b38-1b52bdc9075b,SESCO,II.1.1,Chubut,AR-U,annual,2021,bioetanol combustion consumption by to the public,258.128451,TJ,N2O,0.6,kg/TJ,154.8770706,kg +b8eb279b-95a6-3fe7-ae79-2aae79b9105f,SESCO,II.1.1,Corrientes,AR-W,annual,2021,bioetanol combustion consumption by to the public,169.06231223999998,TJ,CH4,10.0,kg/TJ,1690.6231223999998,kg +a1581944-3819-33cb-b4dd-be2498f3e6ce,SESCO,II.1.1,Corrientes,AR-W,annual,2021,bioetanol combustion consumption by to the public,169.06231223999998,TJ,N2O,0.6,kg/TJ,101.43738734399999,kg +fe249e50-eb42-38cf-bd23-afe207c3e6f9,SESCO,II.1.1,Córdoba,AR-X,annual,2021,bioetanol combustion consumption by to the public,740.84079708,TJ,CH4,10.0,kg/TJ,7408.4079708,kg +42f43732-b2ae-3434-a17d-051e54fbe3d2,SESCO,II.1.1,Córdoba,AR-X,annual,2021,bioetanol combustion consumption by to the public,740.84079708,TJ,N2O,0.6,kg/TJ,444.504478248,kg +37bcb362-c8de-345b-b28f-623eb1a4d269,SESCO,II.1.1,Entre Rios,AR-E,annual,2021,bioetanol combustion consumption by to the public,233.64619127999998,TJ,CH4,10.0,kg/TJ,2336.4619128,kg +4e6f9e8d-2028-3e01-bef4-3837c9b57edd,SESCO,II.1.1,Entre Rios,AR-E,annual,2021,bioetanol combustion consumption by to the public,233.64619127999998,TJ,N2O,0.6,kg/TJ,140.18771476799998,kg +e13d8789-cade-399c-bce7-dc423834f78b,SESCO,II.1.1,Formosa,AR-P,annual,2021,bioetanol combustion consumption by to the public,70.73959391999999,TJ,CH4,10.0,kg/TJ,707.3959391999999,kg +3da0f18c-df79-3838-846d-a68ae1a2ca24,SESCO,II.1.1,Formosa,AR-P,annual,2021,bioetanol combustion consumption by to the public,70.73959391999999,TJ,N2O,0.6,kg/TJ,42.443756351999994,kg +5c5b1e29-45f0-3831-9a02-b9a1c2166654,SESCO,II.1.1,Jujuy,AR-Y,annual,2021,bioetanol combustion consumption by to the public,121.07176596,TJ,CH4,10.0,kg/TJ,1210.7176596,kg +fd911507-ef38-3584-acf5-f59140da7ff4,SESCO,II.1.1,Jujuy,AR-Y,annual,2021,bioetanol combustion consumption by to the public,121.07176596,TJ,N2O,0.6,kg/TJ,72.643059576,kg +7d5a8f36-3f9c-345c-83cf-6ad614fc3437,SESCO,II.1.1,La Pampa,AR-L,annual,2021,bioetanol combustion consumption by to the public,118.08082476,TJ,CH4,10.0,kg/TJ,1180.8082476,kg +afd950ac-5123-325a-863a-adf447ea02c0,SESCO,II.1.1,La Pampa,AR-L,annual,2021,bioetanol combustion consumption by to the public,118.08082476,TJ,N2O,0.6,kg/TJ,70.848494856,kg +d9d99a10-aa3d-3464-ad84-95292a1f8783,SESCO,II.1.1,La Rioja,AR-F,annual,2021,bioetanol combustion consumption by to the public,74.50766856,TJ,CH4,10.0,kg/TJ,745.0766856,kg +0ede6c6e-73e3-3706-9ad6-b0fde2480cf1,SESCO,II.1.1,La Rioja,AR-F,annual,2021,bioetanol combustion consumption by to the public,74.50766856,TJ,N2O,0.6,kg/TJ,44.704601136,kg +65709218-066e-3c7b-a2d5-2508b8a77985,SESCO,II.1.1,Mendoza,AR-M,annual,2021,bioetanol combustion consumption by to the public,376.43934816,TJ,CH4,10.0,kg/TJ,3764.3934816,kg +e16ab41f-5eea-34d2-ae8c-bae9942a7f75,SESCO,II.1.1,Mendoza,AR-M,annual,2021,bioetanol combustion consumption by to the public,376.43934816,TJ,N2O,0.6,kg/TJ,225.863608896,kg +ec090c90-4d79-3305-9718-7f31b6ed940d,SESCO,II.1.1,Misiones,AR-N,annual,2021,bioetanol combustion consumption by to the public,287.36554032,TJ,CH4,10.0,kg/TJ,2873.6554032,kg +aa7126e8-2ebf-3545-8179-f5e0c1316696,SESCO,II.1.1,Misiones,AR-N,annual,2021,bioetanol combustion consumption by to the public,287.36554032,TJ,N2O,0.6,kg/TJ,172.41932419199998,kg +56fb0b1b-772c-3a31-9596-673a8d3dfcca,SESCO,II.1.1,Neuquén,AR-Q,annual,2021,bioetanol combustion consumption by to the public,252.45844452,TJ,CH4,10.0,kg/TJ,2524.5844452,kg +f1980ca4-e583-3ff8-ac4c-999a6cc4cd3f,SESCO,II.1.1,Neuquén,AR-Q,annual,2021,bioetanol combustion consumption by to the public,252.45844452,TJ,N2O,0.6,kg/TJ,151.475066712,kg +0412acef-fa07-3953-9b4a-9e566e8192d8,SESCO,II.1.1,Rio Negro,AR-R,annual,2021,bioetanol combustion consumption by to the public,243.86140583999997,TJ,CH4,10.0,kg/TJ,2438.6140583999995,kg +7977edc3-cc9c-3e92-a98a-923e86ff4610,SESCO,II.1.1,Rio Negro,AR-R,annual,2021,bioetanol combustion consumption by to the public,243.86140583999997,TJ,N2O,0.6,kg/TJ,146.316843504,kg +a1e3dded-6560-3dc8-9733-43df6fc3ffbf,SESCO,II.1.1,Salta,AR-A,annual,2021,bioetanol combustion consumption by to the public,259.59835799999996,TJ,CH4,10.0,kg/TJ,2595.9835799999996,kg +33dd86d2-59bf-3255-a020-80cbf1ff76d4,SESCO,II.1.1,Salta,AR-A,annual,2021,bioetanol combustion consumption by to the public,259.59835799999996,TJ,N2O,0.6,kg/TJ,155.75901479999996,kg +84498067-427c-3098-ac61-a22e895c2999,SESCO,II.1.1,San Juan,AR-J,annual,2021,bioetanol combustion consumption by to the public,128.0991996,TJ,CH4,10.0,kg/TJ,1280.991996,kg +9ac4cbc7-331f-308e-b747-e4d765048611,SESCO,II.1.1,San Juan,AR-J,annual,2021,bioetanol combustion consumption by to the public,128.0991996,TJ,N2O,0.6,kg/TJ,76.85951976,kg +375b6d39-7263-3982-a3ea-9db619f0df14,SESCO,II.1.1,San Luis,AR-D,annual,2021,bioetanol combustion consumption by to the public,102.20071643999998,TJ,CH4,10.0,kg/TJ,1022.0071643999997,kg +3d6828ce-a9ba-3b5c-b0ec-9e1210125434,SESCO,II.1.1,San Luis,AR-D,annual,2021,bioetanol combustion consumption by to the public,102.20071643999998,TJ,N2O,0.6,kg/TJ,61.32042986399998,kg +63e84c55-2bfb-3bbf-a579-d1c761e4656d,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2021,bioetanol combustion consumption by to the public,147.35370312,TJ,CH4,10.0,kg/TJ,1473.5370312,kg +33e19736-3ef5-3ce1-a083-11765c1f1435,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2021,bioetanol combustion consumption by to the public,147.35370312,TJ,N2O,0.6,kg/TJ,88.412221872,kg +783e28b9-fd49-3e67-b201-c8a83789848e,SESCO,II.1.1,Santa Fe,AR-S,annual,2021,bioetanol combustion consumption by to the public,534.07217484,TJ,CH4,10.0,kg/TJ,5340.7217484,kg +5de21d62-5cce-3d26-9413-cdd1aaacb0c1,SESCO,II.1.1,Santa Fe,AR-S,annual,2021,bioetanol combustion consumption by to the public,534.07217484,TJ,N2O,0.6,kg/TJ,320.443304904,kg +1078e42e-1663-3382-85ca-d32c2d19c4fb,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2021,bioetanol combustion consumption by to the public,113.58930024,TJ,CH4,10.0,kg/TJ,1135.8930024000001,kg +d521ad41-ff42-3104-a680-f07de66f3d13,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2021,bioetanol combustion consumption by to the public,113.58930024,TJ,N2O,0.6,kg/TJ,68.153580144,kg +7e391c15-3878-3038-b09b-5b8bcdd46b6a,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2021,bioetanol combustion consumption by to the public,119.16727775999999,TJ,CH4,10.0,kg/TJ,1191.6727775999998,kg +9660bbfd-05f1-3665-9783-60e882381961,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2021,bioetanol combustion consumption by to the public,119.16727775999999,TJ,N2O,0.6,kg/TJ,71.500366656,kg +0f88bce0-84c7-345a-a7b0-c24be6f46889,SESCO,II.1.1,Tucuman,AR-T,annual,2021,bioetanol combustion consumption by to the public,219.03403752,TJ,CH4,10.0,kg/TJ,2190.3403752,kg +f2e8c8b6-a8be-38dc-a775-3193bf8900ef,SESCO,II.1.1,Tucuman,AR-T,annual,2021,bioetanol combustion consumption by to the public,219.03403752,TJ,N2O,0.6,kg/TJ,131.420422512,kg +3c4d4eae-34f6-37aa-bb5a-950f573c8c37,SESCO,II.1.1,Buenos Aires,AR-B,annual,2021,bioetanol combustion consumption by to the public,1180.3532155199998,TJ,CH4,10.0,kg/TJ,11803.532155199999,kg +2d0d71b5-dad3-3905-8d61-881e6d60b5ec,SESCO,II.1.1,Buenos Aires,AR-B,annual,2021,bioetanol combustion consumption by to the public,1180.3532155199998,TJ,N2O,0.6,kg/TJ,708.2119293119998,kg +66b045a1-aa99-3130-9bf1-233b5ce5e625,SESCO,II.1.1,Capital Federal,AR-C,annual,2021,bioetanol combustion consumption by to the public,294.33162131999995,TJ,CH4,10.0,kg/TJ,2943.3162131999998,kg +110b12d2-19aa-3fd2-9d96-a7e26f840f25,SESCO,II.1.1,Capital Federal,AR-C,annual,2021,bioetanol combustion consumption by to the public,294.33162131999995,TJ,N2O,0.6,kg/TJ,176.59897279199996,kg +2eba85e0-e55f-329f-bfc8-57c37b32b6d8,SESCO,II.1.1,Catamarca,AR-K,annual,2021,bioetanol combustion consumption by to the public,23.089043519999997,TJ,CH4,10.0,kg/TJ,230.89043519999996,kg +69e65142-390d-38e6-83c4-95c01fade3ad,SESCO,II.1.1,Catamarca,AR-K,annual,2021,bioetanol combustion consumption by to the public,23.089043519999997,TJ,N2O,0.6,kg/TJ,13.853426111999998,kg +2dcb72e1-169b-3707-a685-212050fbcd7a,SESCO,II.1.1,Chaco,AR-H,annual,2021,bioetanol combustion consumption by to the public,56.20924367999999,TJ,CH4,10.0,kg/TJ,562.0924368,kg +68ba4104-8bd4-3731-841e-d9b6a90d94a7,SESCO,II.1.1,Chaco,AR-H,annual,2021,bioetanol combustion consumption by to the public,56.20924367999999,TJ,N2O,0.6,kg/TJ,33.725546208,kg +7dcb9573-4f57-37c8-ae08-2755656029aa,SESCO,II.1.1,Chubut,AR-U,annual,2021,bioetanol combustion consumption by to the public,92.49166116,TJ,CH4,10.0,kg/TJ,924.9166116000001,kg +5c5b9d61-c4ca-3ab8-83e1-c55f06714e28,SESCO,II.1.1,Chubut,AR-U,annual,2021,bioetanol combustion consumption by to the public,92.49166116,TJ,N2O,0.6,kg/TJ,55.494996696,kg +2e7cc16b-c14e-361e-9027-cebc42e998b1,SESCO,II.1.1,Corrientes,AR-W,annual,2021,bioetanol combustion consumption by to the public,68.09631768,TJ,CH4,10.0,kg/TJ,680.9631767999999,kg +668afc84-f4c0-3d30-bdb3-dcf993d260e5,SESCO,II.1.1,Corrientes,AR-W,annual,2021,bioetanol combustion consumption by to the public,68.09631768,TJ,N2O,0.6,kg/TJ,40.857790607999995,kg +0c6db8b8-327d-3da7-9663-dc53f8e723ff,SESCO,II.1.1,Córdoba,AR-X,annual,2021,bioetanol combustion consumption by to the public,292.62908555999996,TJ,CH4,10.0,kg/TJ,2926.2908555999998,kg +c35ed99e-5eda-33db-972d-e0aef040645b,SESCO,II.1.1,Córdoba,AR-X,annual,2021,bioetanol combustion consumption by to the public,292.62908555999996,TJ,N2O,0.6,kg/TJ,175.57745133599997,kg +62058541-fb39-3691-9400-6fb64bf21065,SESCO,II.1.1,Entre Rios,AR-E,annual,2021,bioetanol combustion consumption by to the public,92.28715236,TJ,CH4,10.0,kg/TJ,922.8715235999999,kg +73f8b594-f7a7-3348-be92-61761e3e2b7c,SESCO,II.1.1,Entre Rios,AR-E,annual,2021,bioetanol combustion consumption by to the public,92.28715236,TJ,N2O,0.6,kg/TJ,55.372291415999996,kg +f69b2bfc-1818-3bf0-afbe-49dea91fdb13,SESCO,II.1.1,Formosa,AR-P,annual,2021,bioetanol combustion consumption by to the public,18.52594092,TJ,CH4,10.0,kg/TJ,185.2594092,kg +e7c4719c-ba43-3dd2-86fe-0a7b48773b66,SESCO,II.1.1,Formosa,AR-P,annual,2021,bioetanol combustion consumption by to the public,18.52594092,TJ,N2O,0.6,kg/TJ,11.115564552,kg +840c538c-9b9e-3448-af31-e2cdb2823fe2,SESCO,II.1.1,Jujuy,AR-Y,annual,2021,bioetanol combustion consumption by to the public,34.884088559999995,TJ,CH4,10.0,kg/TJ,348.8408856,kg +51e30b33-9cbb-3676-9fd8-cad9c96b70a6,SESCO,II.1.1,Jujuy,AR-Y,annual,2021,bioetanol combustion consumption by to the public,34.884088559999995,TJ,N2O,0.6,kg/TJ,20.930453135999997,kg +52b336d7-7721-3762-a1d9-de22a441093b,SESCO,II.1.1,La Pampa,AR-L,annual,2021,bioetanol combustion consumption by to the public,77.09726124,TJ,CH4,10.0,kg/TJ,770.9726123999999,kg +d16bb2fd-2500-38f1-802d-b66188630871,SESCO,II.1.1,La Pampa,AR-L,annual,2021,bioetanol combustion consumption by to the public,77.09726124,TJ,N2O,0.6,kg/TJ,46.258356744,kg +655afec7-1dab-3eca-8a45-035be8020e84,SESCO,II.1.1,La Rioja,AR-F,annual,2021,bioetanol combustion consumption by to the public,31.9161546,TJ,CH4,10.0,kg/TJ,319.161546,kg +0e8c503c-a80f-39e6-96c6-d936885ff965,SESCO,II.1.1,La Rioja,AR-F,annual,2021,bioetanol combustion consumption by to the public,31.9161546,TJ,N2O,0.6,kg/TJ,19.149692759999997,kg +3d524dc9-309e-3368-a28a-d7b4d54ef73c,SESCO,II.1.1,Mendoza,AR-M,annual,2021,bioetanol combustion consumption by to the public,196.88829083999997,TJ,CH4,10.0,kg/TJ,1968.8829083999997,kg +726e95b6-1e44-374d-89cf-1687681f42a8,SESCO,II.1.1,Mendoza,AR-M,annual,2021,bioetanol combustion consumption by to the public,196.88829083999997,TJ,N2O,0.6,kg/TJ,118.13297450399998,kg +edcaf841-561a-364e-b873-48bb21e952e7,SESCO,II.1.1,Misiones,AR-N,annual,2021,bioetanol combustion consumption by to the public,76.70613816,TJ,CH4,10.0,kg/TJ,767.0613816,kg +7501f008-76df-3bb7-8456-aed806f09ad4,SESCO,II.1.1,Misiones,AR-N,annual,2021,bioetanol combustion consumption by to the public,76.70613816,TJ,N2O,0.6,kg/TJ,46.023682896,kg +848faccc-1c25-3663-966c-e18d7c21902f,SESCO,II.1.1,Neuquén,AR-Q,annual,2021,bioetanol combustion consumption by to the public,139.03019496,TJ,CH4,10.0,kg/TJ,1390.3019496,kg +8922097a-8beb-36e3-b3ae-a99b039963c5,SESCO,II.1.1,Neuquén,AR-Q,annual,2021,bioetanol combustion consumption by to the public,139.03019496,TJ,N2O,0.6,kg/TJ,83.418116976,kg +c94c4e98-d4c6-3e40-b235-5f38c5c533c6,SESCO,II.1.1,Rio Negro,AR-R,annual,2021,bioetanol combustion consumption by to the public,122.24257884,TJ,CH4,10.0,kg/TJ,1222.4257883999999,kg +51bd8476-d6c0-3dfd-896e-94d55edb02b6,SESCO,II.1.1,Rio Negro,AR-R,annual,2021,bioetanol combustion consumption by to the public,122.24257884,TJ,N2O,0.6,kg/TJ,73.345547304,kg +bd0216de-e3fc-3889-97c3-00002e4fd9c3,SESCO,II.1.1,Salta,AR-A,annual,2021,bioetanol combustion consumption by to the public,79.17813827999998,TJ,CH4,10.0,kg/TJ,791.7813827999998,kg +5b6a0ce2-4d1b-3949-8ee3-8db71d60ba79,SESCO,II.1.1,Salta,AR-A,annual,2021,bioetanol combustion consumption by to the public,79.17813827999998,TJ,N2O,0.6,kg/TJ,47.50688296799999,kg +46761ee4-7df1-3f92-84ce-39b2747cd3cd,SESCO,II.1.1,San Juan,AR-J,annual,2021,bioetanol combustion consumption by to the public,56.47254876,TJ,CH4,10.0,kg/TJ,564.7254876000001,kg +363e33d9-6e07-3a8e-a953-0c761918dd03,SESCO,II.1.1,San Juan,AR-J,annual,2021,bioetanol combustion consumption by to the public,56.47254876,TJ,N2O,0.6,kg/TJ,33.883529256,kg +72b8efac-8e1b-3074-a1f3-ec5f79baf8b6,SESCO,II.1.1,San Luis,AR-D,annual,2021,bioetanol combustion consumption by to the public,43.87736303999999,TJ,CH4,10.0,kg/TJ,438.7736303999999,kg +7a740dac-f8a9-38d8-b0dc-46ef3fedf62b,SESCO,II.1.1,San Luis,AR-D,annual,2021,bioetanol combustion consumption by to the public,43.87736303999999,TJ,N2O,0.6,kg/TJ,26.326417823999993,kg +97ce5a6b-17cf-398a-a632-0bdc37da1260,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2021,bioetanol combustion consumption by to the public,40.75604747999999,TJ,CH4,10.0,kg/TJ,407.56047479999995,kg +2efd69dc-2f63-36a5-83cf-fd60cce8a37e,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2021,bioetanol combustion consumption by to the public,40.75604747999999,TJ,N2O,0.6,kg/TJ,24.453628487999996,kg +0426a31f-47af-3b0b-adc3-1fb3e980b990,SESCO,II.1.1,Santa Fe,AR-S,annual,2021,bioetanol combustion consumption by to the public,249.95321171999998,TJ,CH4,10.0,kg/TJ,2499.5321172,kg +f8930bfe-9291-3e59-9241-7f9e83b6e246,SESCO,II.1.1,Santa Fe,AR-S,annual,2021,bioetanol combustion consumption by to the public,249.95321171999998,TJ,N2O,0.6,kg/TJ,149.971927032,kg +7d291962-43eb-3651-b246-71f6ba288510,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2021,bioetanol combustion consumption by to the public,43.32263292,TJ,CH4,10.0,kg/TJ,433.22632919999995,kg +90043091-101a-310a-b65e-ea8621954091,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2021,bioetanol combustion consumption by to the public,43.32263292,TJ,N2O,0.6,kg/TJ,25.993579752,kg +f1be65e1-b1eb-39af-ae4b-9059ddcd27c5,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2021,bioetanol combustion consumption by to the public,29.249871119999998,TJ,CH4,10.0,kg/TJ,292.4987112,kg +c831933c-f909-3f12-995c-a0f0dbc54591,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2021,bioetanol combustion consumption by to the public,29.249871119999998,TJ,N2O,0.6,kg/TJ,17.549922671999997,kg +1f7f455b-39cb-314a-b318-17fa4cece78a,SESCO,II.1.1,Tucuman,AR-T,annual,2021,bioetanol combustion consumption by to the public,63.53065871999999,TJ,CH4,10.0,kg/TJ,635.3065872,kg +062c52ce-2b73-3694-b741-2b63611a84a3,SESCO,II.1.1,Tucuman,AR-T,annual,2021,bioetanol combustion consumption by to the public,63.53065871999999,TJ,N2O,0.6,kg/TJ,38.11839523199999,kg +2f3b991f-141e-3cb0-9791-c104fd2ac7d6,SESCO,II.1.1,Buenos Aires,AR-B,annual,2021,bioetanol combustion consumption by freight transport,49.71608927999999,TJ,CH4,10.0,kg/TJ,497.16089279999994,kg +32fa55b5-97e5-3190-b935-96a338295f41,SESCO,II.1.1,Buenos Aires,AR-B,annual,2021,bioetanol combustion consumption by freight transport,49.71608927999999,TJ,N2O,0.6,kg/TJ,29.829653567999994,kg +d704396c-f66c-37d7-918c-952a98cbe637,SESCO,II.1.1,Capital Federal,AR-C,annual,2021,bioetanol combustion consumption by freight transport,7.7023126799999995,TJ,CH4,10.0,kg/TJ,77.0231268,kg +d4b1acc6-d8e6-385c-a62d-c602649b58ae,SESCO,II.1.1,Capital Federal,AR-C,annual,2021,bioetanol combustion consumption by freight transport,7.7023126799999995,TJ,N2O,0.6,kg/TJ,4.621387607999999,kg +4368373d-f1ea-3541-8fab-f45a34bea872,SESCO,II.1.1,Catamarca,AR-K,annual,2021,bioetanol combustion consumption by freight transport,0.26586144,TJ,CH4,10.0,kg/TJ,2.6586144000000003,kg +8f603ace-8d3c-33e1-83ac-d005d45faa56,SESCO,II.1.1,Catamarca,AR-K,annual,2021,bioetanol combustion consumption by freight transport,0.26586144,TJ,N2O,0.6,kg/TJ,0.159516864,kg +434e86f4-be0a-3a1f-bce4-3d712267ed37,SESCO,II.1.1,Chaco,AR-H,annual,2021,bioetanol combustion consumption by freight transport,1.17336924,TJ,CH4,10.0,kg/TJ,11.733692399999999,kg +05987d0b-bf75-3501-b122-fbf970ce2e23,SESCO,II.1.1,Chaco,AR-H,annual,2021,bioetanol combustion consumption by freight transport,1.17336924,TJ,N2O,0.6,kg/TJ,0.7040215439999999,kg +3d766ff8-58e5-3200-922f-07403bddc802,SESCO,II.1.1,Chubut,AR-U,annual,2021,bioetanol combustion consumption by freight transport,1.63862676,TJ,CH4,10.0,kg/TJ,16.3862676,kg +f83e2ff9-69be-391d-9854-eb7ca20d0ada,SESCO,II.1.1,Chubut,AR-U,annual,2021,bioetanol combustion consumption by freight transport,1.63862676,TJ,N2O,0.6,kg/TJ,0.9831760559999999,kg +aa67b86b-b60f-388c-aaa9-f3d93c7c48ef,SESCO,II.1.1,Corrientes,AR-W,annual,2021,bioetanol combustion consumption by freight transport,1.2526164,TJ,CH4,10.0,kg/TJ,12.526164,kg +f8fe7356-c297-3ec9-97b3-6c327d3dc549,SESCO,II.1.1,Corrientes,AR-W,annual,2021,bioetanol combustion consumption by freight transport,1.2526164,TJ,N2O,0.6,kg/TJ,0.7515698399999999,kg +ec443f8c-0954-3ae5-88d0-f18d734be12b,SESCO,II.1.1,Córdoba,AR-X,annual,2021,bioetanol combustion consumption by freight transport,7.63584732,TJ,CH4,10.0,kg/TJ,76.35847319999999,kg +536f1027-9244-3c41-8f1f-8c2de0526c43,SESCO,II.1.1,Córdoba,AR-X,annual,2021,bioetanol combustion consumption by freight transport,7.63584732,TJ,N2O,0.6,kg/TJ,4.581508392,kg +9d43bdeb-068b-3454-ac34-357477210cc5,SESCO,II.1.1,Entre Rios,AR-E,annual,2021,bioetanol combustion consumption by freight transport,2.65094532,TJ,CH4,10.0,kg/TJ,26.5094532,kg +a365068f-fefe-3988-ac81-34f7399f25c7,SESCO,II.1.1,Entre Rios,AR-E,annual,2021,bioetanol combustion consumption by freight transport,2.65094532,TJ,N2O,0.6,kg/TJ,1.590567192,kg +35b739b5-9c4e-37ef-9e50-0b43dc30f9eb,SESCO,II.1.1,Formosa,AR-P,annual,2021,bioetanol combustion consumption by freight transport,0.31443228,TJ,CH4,10.0,kg/TJ,3.1443228000000003,kg +3882e093-1e37-3a3a-9c3d-3f36e605d2e5,SESCO,II.1.1,Formosa,AR-P,annual,2021,bioetanol combustion consumption by freight transport,0.31443228,TJ,N2O,0.6,kg/TJ,0.188659368,kg +6d7ed63c-3f4c-3ee0-9549-8c011aeef063,SESCO,II.1.1,Jujuy,AR-Y,annual,2021,bioetanol combustion consumption by freight transport,0.57006828,TJ,CH4,10.0,kg/TJ,5.7006828,kg +eee3d45b-0752-31e6-bf51-3849a5beb615,SESCO,II.1.1,Jujuy,AR-Y,annual,2021,bioetanol combustion consumption by freight transport,0.57006828,TJ,N2O,0.6,kg/TJ,0.342040968,kg +ca64bdc8-b80f-350c-abfc-b3bc587e79fa,SESCO,II.1.1,La Pampa,AR-L,annual,2021,bioetanol combustion consumption by freight transport,0.80269704,TJ,CH4,10.0,kg/TJ,8.0269704,kg +98a64e36-96be-3737-a762-fbf94b88b613,SESCO,II.1.1,La Pampa,AR-L,annual,2021,bioetanol combustion consumption by freight transport,0.80269704,TJ,N2O,0.6,kg/TJ,0.481618224,kg +797bed86-f956-3d7e-be92-18cdbff87294,SESCO,II.1.1,La Rioja,AR-F,annual,2021,bioetanol combustion consumption by freight transport,0.41668668,TJ,CH4,10.0,kg/TJ,4.166866799999999,kg +1ae289d5-d3c0-33d8-a08f-4b799106793b,SESCO,II.1.1,La Rioja,AR-F,annual,2021,bioetanol combustion consumption by freight transport,0.41668668,TJ,N2O,0.6,kg/TJ,0.25001200799999995,kg +1fde8be5-2ee7-3520-8f15-5e593eab94eb,SESCO,II.1.1,Mendoza,AR-M,annual,2021,bioetanol combustion consumption by freight transport,3.59679852,TJ,CH4,10.0,kg/TJ,35.9679852,kg +050a4d5a-3cb4-305d-8927-37a97656d1f6,SESCO,II.1.1,Mendoza,AR-M,annual,2021,bioetanol combustion consumption by freight transport,3.59679852,TJ,N2O,0.6,kg/TJ,2.158079112,kg +dd0593ae-c3e5-344a-a65a-7c7cc1f75247,SESCO,II.1.1,Misiones,AR-N,annual,2021,bioetanol combustion consumption by freight transport,1.2909617999999998,TJ,CH4,10.0,kg/TJ,12.909617999999998,kg +52cde539-b890-35bb-b92e-fb5db894bddd,SESCO,II.1.1,Misiones,AR-N,annual,2021,bioetanol combustion consumption by freight transport,1.2909617999999998,TJ,N2O,0.6,kg/TJ,0.7745770799999999,kg +46cf6408-ebc2-3e17-844e-7af6ecd9ec4d,SESCO,II.1.1,Neuquén,AR-Q,annual,2021,bioetanol combustion consumption by freight transport,1.33186356,TJ,CH4,10.0,kg/TJ,13.3186356,kg +943bfd06-ed7e-3c29-adc7-08eb024c38df,SESCO,II.1.1,Neuquén,AR-Q,annual,2021,bioetanol combustion consumption by freight transport,1.33186356,TJ,N2O,0.6,kg/TJ,0.7991181359999999,kg +c8cdcf87-7c38-31e2-ab1f-7f0485abaf5c,SESCO,II.1.1,Rio Negro,AR-R,annual,2021,bioetanol combustion consumption by freight transport,1.5977249999999998,TJ,CH4,10.0,kg/TJ,15.977249999999998,kg +8e7ae7e2-992f-3216-90cf-ef47143df4c1,SESCO,II.1.1,Rio Negro,AR-R,annual,2021,bioetanol combustion consumption by freight transport,1.5977249999999998,TJ,N2O,0.6,kg/TJ,0.9586349999999999,kg +850050aa-07bc-32f9-9ba3-f146b89595e4,SESCO,II.1.1,Salta,AR-A,annual,2021,bioetanol combustion consumption by freight transport,2.1038842799999995,TJ,CH4,10.0,kg/TJ,21.038842799999994,kg +ef577412-2052-3c77-9943-74288e47d13c,SESCO,II.1.1,Salta,AR-A,annual,2021,bioetanol combustion consumption by freight transport,2.1038842799999995,TJ,N2O,0.6,kg/TJ,1.2623305679999997,kg +2ad6b3af-d1c6-3a5c-aec9-30c3e08066fc,SESCO,II.1.1,San Juan,AR-J,annual,2021,bioetanol combustion consumption by freight transport,0.85893696,TJ,CH4,10.0,kg/TJ,8.5893696,kg +c6f80d0d-14cc-3314-8ff5-fcd70518ebcf,SESCO,II.1.1,San Juan,AR-J,annual,2021,bioetanol combustion consumption by freight transport,0.85893696,TJ,N2O,0.6,kg/TJ,0.515362176,kg +7c0ee150-4a7b-392b-8741-69004ee0ef80,SESCO,II.1.1,San Luis,AR-D,annual,2021,bioetanol combustion consumption by freight transport,0.8129224799999999,TJ,CH4,10.0,kg/TJ,8.1292248,kg +166ea822-0cbb-3314-8cd0-6410ed80cb99,SESCO,II.1.1,San Luis,AR-D,annual,2021,bioetanol combustion consumption by freight transport,0.8129224799999999,TJ,N2O,0.6,kg/TJ,0.4877534879999999,kg +266aaf88-c9bb-306e-80f0-7f71cfe40851,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2021,bioetanol combustion consumption by freight transport,0.8947259999999999,TJ,CH4,10.0,kg/TJ,8.94726,kg +0a288c78-aa51-3cc0-823b-a604a1eb6756,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2021,bioetanol combustion consumption by freight transport,0.8947259999999999,TJ,N2O,0.6,kg/TJ,0.5368356,kg +4f11769f-c036-35c9-8d53-03fc9844276e,SESCO,II.1.1,Santa Fe,AR-S,annual,2021,bioetanol combustion consumption by freight transport,7.157807999999999,TJ,CH4,10.0,kg/TJ,71.57808,kg +64749c8f-ab99-33c7-8e97-03e8c20d3547,SESCO,II.1.1,Santa Fe,AR-S,annual,2021,bioetanol combustion consumption by freight transport,7.157807999999999,TJ,N2O,0.6,kg/TJ,4.2946848,kg +b53d4a95-a888-3dff-9409-f1a5ac126e95,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2021,bioetanol combustion consumption by freight transport,0.56751192,TJ,CH4,10.0,kg/TJ,5.675119199999999,kg +4e1feeb2-cd01-3555-908c-c989edfaaa24,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2021,bioetanol combustion consumption by freight transport,0.56751192,TJ,N2O,0.6,kg/TJ,0.340507152,kg +0d4b6845-bfc5-3e06-ab11-b1cdf25a5d92,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2021,bioetanol combustion consumption by freight transport,1.1938201199999998,TJ,CH4,10.0,kg/TJ,11.938201199999998,kg +d2a207b2-9038-3930-8d3b-49cffe638dc1,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2021,bioetanol combustion consumption by freight transport,1.1938201199999998,TJ,N2O,0.6,kg/TJ,0.7162920719999999,kg +97020f5a-d4b2-35ba-bf73-b0d73615dda2,SESCO,II.1.1,Tucuman,AR-T,annual,2021,bioetanol combustion consumption by freight transport,2.2470404399999997,TJ,CH4,10.0,kg/TJ,22.470404399999996,kg +298037c9-fb51-3052-a67a-94b5175387e6,SESCO,II.1.1,Tucuman,AR-T,annual,2021,bioetanol combustion consumption by freight transport,2.2470404399999997,TJ,N2O,0.6,kg/TJ,1.3482242639999997,kg +1b12576d-6c66-3d6c-86cc-24d89940f9c3,SESCO,II.1.1,Buenos Aires,AR-B,annual,2021,bioetanol combustion consumption by freight transport,43.40443644,TJ,CH4,10.0,kg/TJ,434.04436439999995,kg +27e16329-da5f-35f6-a99c-3744eb49c2dd,SESCO,II.1.1,Buenos Aires,AR-B,annual,2021,bioetanol combustion consumption by freight transport,43.40443644,TJ,N2O,0.6,kg/TJ,26.042661864,kg +72a35131-092e-39e2-8744-c57ab60196e3,SESCO,II.1.1,Capital Federal,AR-C,annual,2021,bioetanol combustion consumption by freight transport,8.773427519999998,TJ,CH4,10.0,kg/TJ,87.73427519999998,kg +92ee2848-ee8a-3514-a7b0-67736832de8a,SESCO,II.1.1,Capital Federal,AR-C,annual,2021,bioetanol combustion consumption by freight transport,8.773427519999998,TJ,N2O,0.6,kg/TJ,5.264056511999999,kg +796c965c-c424-361b-83d7-0e840abcd45d,SESCO,II.1.1,Catamarca,AR-K,annual,2021,bioetanol combustion consumption by freight transport,0.08691623999999999,TJ,CH4,10.0,kg/TJ,0.8691623999999999,kg +c702d6ac-299b-39d9-bf45-4077d1779c9f,SESCO,II.1.1,Catamarca,AR-K,annual,2021,bioetanol combustion consumption by freight transport,0.08691623999999999,TJ,N2O,0.6,kg/TJ,0.05214974399999999,kg +08e2562c-df2b-3936-b503-2e2c80876ace,SESCO,II.1.1,Chaco,AR-H,annual,2021,bioetanol combustion consumption by freight transport,0.93818412,TJ,CH4,10.0,kg/TJ,9.3818412,kg +0d7fd05c-ed7f-3196-a3d7-720fd2fc17c5,SESCO,II.1.1,Chaco,AR-H,annual,2021,bioetanol combustion consumption by freight transport,0.93818412,TJ,N2O,0.6,kg/TJ,0.562910472,kg +3028fbda-d8aa-3132-8fcb-fee81138b134,SESCO,II.1.1,Chubut,AR-U,annual,2021,bioetanol combustion consumption by freight transport,1.12224204,TJ,CH4,10.0,kg/TJ,11.222420399999999,kg +c78629dd-d119-395f-98b1-a3829b4909f1,SESCO,II.1.1,Chubut,AR-U,annual,2021,bioetanol combustion consumption by freight transport,1.12224204,TJ,N2O,0.6,kg/TJ,0.673345224,kg +8467c4e8-1afc-3064-bc8c-48cb71cda92e,SESCO,II.1.1,Corrientes,AR-W,annual,2021,bioetanol combustion consumption by freight transport,1.2628418399999999,TJ,CH4,10.0,kg/TJ,12.6284184,kg +b178e650-cf9d-380c-b538-8799e3882088,SESCO,II.1.1,Corrientes,AR-W,annual,2021,bioetanol combustion consumption by freight transport,1.2628418399999999,TJ,N2O,0.6,kg/TJ,0.7577051039999999,kg +bf62b259-1829-3675-8d53-9da3f3b91a42,SESCO,II.1.1,Córdoba,AR-X,annual,2021,bioetanol combustion consumption by freight transport,15.90822828,TJ,CH4,10.0,kg/TJ,159.0822828,kg +fc8ad2c8-5c77-3d53-86e9-62dc797240c1,SESCO,II.1.1,Córdoba,AR-X,annual,2021,bioetanol combustion consumption by freight transport,15.90822828,TJ,N2O,0.6,kg/TJ,9.544936968,kg +2cb0bc44-cf4e-3fff-8a5b-a3779bfcf45c,SESCO,II.1.1,Entre Rios,AR-E,annual,2021,bioetanol combustion consumption by freight transport,2.2112513999999996,TJ,CH4,10.0,kg/TJ,22.112513999999997,kg +50ebfc08-7828-354c-a1a4-dfa05b5d2429,SESCO,II.1.1,Entre Rios,AR-E,annual,2021,bioetanol combustion consumption by freight transport,2.2112513999999996,TJ,N2O,0.6,kg/TJ,1.3267508399999997,kg +012ea0a3-ecb7-390d-ace5-f37631ed2611,SESCO,II.1.1,Formosa,AR-P,annual,2021,bioetanol combustion consumption by freight transport,0.14315615999999998,TJ,CH4,10.0,kg/TJ,1.4315615999999998,kg +400657a6-4b2f-39be-8641-05dbbd68f9ac,SESCO,II.1.1,Formosa,AR-P,annual,2021,bioetanol combustion consumption by freight transport,0.14315615999999998,TJ,N2O,0.6,kg/TJ,0.08589369599999998,kg +c337245b-49ff-35d4-8e74-b7a675767827,SESCO,II.1.1,Jujuy,AR-Y,annual,2021,bioetanol combustion consumption by freight transport,0.27353052,TJ,CH4,10.0,kg/TJ,2.7353052,kg +aca5a01a-0311-3989-8ec5-7fe40460edb6,SESCO,II.1.1,Jujuy,AR-Y,annual,2021,bioetanol combustion consumption by freight transport,0.27353052,TJ,N2O,0.6,kg/TJ,0.164118312,kg +40afe4f3-d1f2-3f50-a83f-1924f58551ea,SESCO,II.1.1,La Pampa,AR-L,annual,2021,bioetanol combustion consumption by freight transport,0.8435988,TJ,CH4,10.0,kg/TJ,8.435988,kg +c388625d-2a07-382f-8b0a-734f002028d2,SESCO,II.1.1,La Pampa,AR-L,annual,2021,bioetanol combustion consumption by freight transport,0.8435988,TJ,N2O,0.6,kg/TJ,0.50615928,kg +7b51b6e6-0fe8-3827-981b-ba663b5a80ce,SESCO,II.1.1,La Rioja,AR-F,annual,2021,bioetanol combustion consumption by freight transport,0.255636,TJ,CH4,10.0,kg/TJ,2.5563599999999997,kg +d03c67aa-5941-3801-bb6c-fa25231c4cda,SESCO,II.1.1,La Rioja,AR-F,annual,2021,bioetanol combustion consumption by freight transport,0.255636,TJ,N2O,0.6,kg/TJ,0.15338159999999998,kg +457e2808-62cf-31ea-8959-62f1e80e9761,SESCO,II.1.1,Mendoza,AR-M,annual,2021,bioetanol combustion consumption by freight transport,5.897522519999999,TJ,CH4,10.0,kg/TJ,58.97522519999999,kg +54b3358e-0cce-3987-a212-ed933942ddd7,SESCO,II.1.1,Mendoza,AR-M,annual,2021,bioetanol combustion consumption by freight transport,5.897522519999999,TJ,N2O,0.6,kg/TJ,3.5385135119999993,kg +0790038f-402f-36f9-a5df-b7c0a1d1c9a8,SESCO,II.1.1,Misiones,AR-N,annual,2021,bioetanol combustion consumption by freight transport,1.04299488,TJ,CH4,10.0,kg/TJ,10.4299488,kg +9a269a28-d1cb-30a5-942c-b22dab7a463e,SESCO,II.1.1,Misiones,AR-N,annual,2021,bioetanol combustion consumption by freight transport,1.04299488,TJ,N2O,0.6,kg/TJ,0.625796928,kg +fb955cda-1a79-31a7-aaf1-2ce8c6fe0fba,SESCO,II.1.1,Neuquén,AR-Q,annual,2021,bioetanol combustion consumption by freight transport,2.80943964,TJ,CH4,10.0,kg/TJ,28.0943964,kg +4df60f5f-83eb-3d04-a369-cc28414c0629,SESCO,II.1.1,Neuquén,AR-Q,annual,2021,bioetanol combustion consumption by freight transport,2.80943964,TJ,N2O,0.6,kg/TJ,1.685663784,kg +1ab76824-4bdf-3b44-add8-74c825668bf1,SESCO,II.1.1,Rio Negro,AR-R,annual,2021,bioetanol combustion consumption by freight transport,3.53288952,TJ,CH4,10.0,kg/TJ,35.3288952,kg +2e13e73f-b07a-3472-beb3-acd1d574e750,SESCO,II.1.1,Rio Negro,AR-R,annual,2021,bioetanol combustion consumption by freight transport,3.53288952,TJ,N2O,0.6,kg/TJ,2.119733712,kg +66b86d15-40ac-331b-8365-395a58aecff1,SESCO,II.1.1,Salta,AR-A,annual,2021,bioetanol combustion consumption by freight transport,1.59005592,TJ,CH4,10.0,kg/TJ,15.9005592,kg +8fc6f750-610a-3f77-873c-94f85d92396c,SESCO,II.1.1,Salta,AR-A,annual,2021,bioetanol combustion consumption by freight transport,1.59005592,TJ,N2O,0.6,kg/TJ,0.954033552,kg +e643c701-f2f6-3754-aa5c-99323006fd04,SESCO,II.1.1,San Juan,AR-J,annual,2021,bioetanol combustion consumption by freight transport,0.47548296,TJ,CH4,10.0,kg/TJ,4.7548296,kg +1f1385cb-0f38-33bd-99e5-be36487e8644,SESCO,II.1.1,San Juan,AR-J,annual,2021,bioetanol combustion consumption by freight transport,0.47548296,TJ,N2O,0.6,kg/TJ,0.285289776,kg +4523180c-432a-3ad5-b5d7-6d05ca64ad5d,SESCO,II.1.1,San Luis,AR-D,annual,2021,bioetanol combustion consumption by freight transport,0.6007446,TJ,CH4,10.0,kg/TJ,6.007446,kg +04bc0910-0ff4-3aad-aa87-55e25b12e74e,SESCO,II.1.1,San Luis,AR-D,annual,2021,bioetanol combustion consumption by freight transport,0.6007446,TJ,N2O,0.6,kg/TJ,0.36044676,kg +489c1bf8-7ce6-3757-841d-a72d746103ac,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2021,bioetanol combustion consumption by freight transport,0.38856672,TJ,CH4,10.0,kg/TJ,3.8856672,kg +eaa0d7c2-8fda-33d8-bdfd-0366d0eb76ce,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2021,bioetanol combustion consumption by freight transport,0.38856672,TJ,N2O,0.6,kg/TJ,0.23314003199999997,kg +4f11769f-c036-35c9-8d53-03fc9844276e,SESCO,II.1.1,Santa Fe,AR-S,annual,2021,bioetanol combustion consumption by freight transport,7.157807999999999,TJ,CH4,10.0,kg/TJ,71.57808,kg +64749c8f-ab99-33c7-8e97-03e8c20d3547,SESCO,II.1.1,Santa Fe,AR-S,annual,2021,bioetanol combustion consumption by freight transport,7.157807999999999,TJ,N2O,0.6,kg/TJ,4.2946848,kg +334ed519-ed97-396a-aca1-d7ca9f1bc14f,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2021,bioetanol combustion consumption by freight transport,0.29142503999999997,TJ,CH4,10.0,kg/TJ,2.9142504,kg +8b3c8258-c650-3d27-b811-a980966ece76,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2021,bioetanol combustion consumption by freight transport,0.29142503999999997,TJ,N2O,0.6,kg/TJ,0.17485502399999997,kg +ffcc463c-714c-33a4-9030-17ceeb7a7845,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2021,bioetanol combustion consumption by freight transport,0.5905191599999999,TJ,CH4,10.0,kg/TJ,5.905191599999999,kg +1b4e2480-63f4-38df-b1f2-3d1b7eacf305,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2021,bioetanol combustion consumption by freight transport,0.5905191599999999,TJ,N2O,0.6,kg/TJ,0.35431149599999995,kg +ef17a11f-0675-3d7c-8754-4351018acea0,SESCO,II.1.1,Tucuman,AR-T,annual,2021,bioetanol combustion consumption by freight transport,1.0838966399999999,TJ,CH4,10.0,kg/TJ,10.838966399999999,kg +bed9bb05-2358-3da1-8c03-428f8a2fb749,SESCO,II.1.1,Tucuman,AR-T,annual,2021,bioetanol combustion consumption by freight transport,1.0838966399999999,TJ,N2O,0.6,kg/TJ,0.6503379839999999,kg +f7daf5d9-9b28-3020-b310-ca65024d5f29,SESCO,II.5.1,Buenos Aires,AR-B,annual,2022,bioetanol combustion consumption by agriculture machines,2.46177468,TJ,CH4,10.0,kg/TJ,24.6177468,kg +abad7b1d-3f54-3763-a03a-c43d12180e95,SESCO,II.5.1,Buenos Aires,AR-B,annual,2022,bioetanol combustion consumption by agriculture machines,2.46177468,TJ,N2O,0.6,kg/TJ,1.477064808,kg +54854123-6512-3c4c-a611-d277c946da7c,SESCO,II.5.1,Córdoba,AR-X,annual,2022,bioetanol combustion consumption by agriculture machines,0.7260062399999999,TJ,CH4,10.0,kg/TJ,7.260062399999999,kg +cce14e1d-af65-349d-8e42-13fe2b653540,SESCO,II.5.1,Córdoba,AR-X,annual,2022,bioetanol combustion consumption by agriculture machines,0.7260062399999999,TJ,N2O,0.6,kg/TJ,0.43560374399999996,kg +e62539c9-20d5-3574-9f74-6e502460eda1,SESCO,II.5.1,Santa Fe,AR-S,annual,2022,bioetanol combustion consumption by agriculture machines,0.44225027999999994,TJ,CH4,10.0,kg/TJ,4.422502799999999,kg +bfcbf71e-2cff-3252-a279-d15e6ce111b8,SESCO,II.5.1,Santa Fe,AR-S,annual,2022,bioetanol combustion consumption by agriculture machines,0.44225027999999994,TJ,N2O,0.6,kg/TJ,0.26535016799999994,kg +f29cde89-21df-35ca-bd3d-79aa991b2375,SESCO,II.5.1,Buenos Aires,AR-B,annual,2022,bioetanol combustion consumption by agriculture machines,0.31954499999999997,TJ,CH4,10.0,kg/TJ,3.1954499999999997,kg +78a514d5-efb8-3371-9e30-1060c4171bd1,SESCO,II.5.1,Buenos Aires,AR-B,annual,2022,bioetanol combustion consumption by agriculture machines,0.31954499999999997,TJ,N2O,0.6,kg/TJ,0.19172699999999998,kg +5f8650aa-834c-33d4-83f8-21577b476d2d,SESCO,II.5.1,Córdoba,AR-X,annual,2022,bioetanol combustion consumption by agriculture machines,0.18661428,TJ,CH4,10.0,kg/TJ,1.8661428,kg +f9a344a4-11ce-3063-b83d-e012e39a6480,SESCO,II.5.1,Córdoba,AR-X,annual,2022,bioetanol combustion consumption by agriculture machines,0.18661428,TJ,N2O,0.6,kg/TJ,0.11196856799999999,kg +e17ee03e-032e-3ab4-b37b-9836b2c58d8f,SESCO,II.1.1,Buenos Aires,AR-B,annual,2022,bioetanol combustion consumption by to the public,102.50747964,TJ,CH4,10.0,kg/TJ,1025.0747964,kg +5a5924c3-e20c-3c58-92fb-e8e7e779c612,SESCO,II.1.1,Buenos Aires,AR-B,annual,2022,bioetanol combustion consumption by to the public,102.50747964,TJ,N2O,0.6,kg/TJ,61.504487784,kg +131cc752-d7ae-3e8b-b2a2-91613279fb51,SESCO,II.1.1,Capital Federal,AR-C,annual,2022,bioetanol combustion consumption by to the public,5.08204368,TJ,CH4,10.0,kg/TJ,50.820436799999996,kg +81869465-4d01-3fa0-9bb8-9c562fbdcb4b,SESCO,II.1.1,Capital Federal,AR-C,annual,2022,bioetanol combustion consumption by to the public,5.08204368,TJ,N2O,0.6,kg/TJ,3.049226208,kg +8997cfd9-3475-3f3a-b7a1-1701813cdf53,SESCO,II.1.1,Catamarca,AR-K,annual,2022,bioetanol combustion consumption by to the public,2.14222968,TJ,CH4,10.0,kg/TJ,21.422296799999998,kg +07da2381-b910-3e3d-851a-99a53b56e92e,SESCO,II.1.1,Catamarca,AR-K,annual,2022,bioetanol combustion consumption by to the public,2.14222968,TJ,N2O,0.6,kg/TJ,1.2853378079999997,kg +45e156b3-9db7-3231-a366-eb074aa496e1,SESCO,II.1.1,Chaco,AR-H,annual,2022,bioetanol combustion consumption by to the public,0.35022131999999995,TJ,CH4,10.0,kg/TJ,3.5022131999999995,kg +78cc45e2-e896-3475-872f-051b5f7fc243,SESCO,II.1.1,Chaco,AR-H,annual,2022,bioetanol combustion consumption by to the public,0.35022131999999995,TJ,N2O,0.6,kg/TJ,0.21013279199999996,kg +00e9c514-e5bf-32e2-b411-70ae900d19b4,SESCO,II.1.1,Corrientes,AR-W,annual,2022,bioetanol combustion consumption by to the public,0.9100641599999999,TJ,CH4,10.0,kg/TJ,9.1006416,kg +eb2e67f2-6300-329a-9dd4-bdd490bffdad,SESCO,II.1.1,Corrientes,AR-W,annual,2022,bioetanol combustion consumption by to the public,0.9100641599999999,TJ,N2O,0.6,kg/TJ,0.5460384959999999,kg +e39277d4-369a-3e03-81bb-c3b27c11b06a,SESCO,II.1.1,Córdoba,AR-X,annual,2022,bioetanol combustion consumption by to the public,41.691675239999995,TJ,CH4,10.0,kg/TJ,416.91675239999995,kg +b0e3d45a-aeaf-3193-8b86-9d29d4411a50,SESCO,II.1.1,Córdoba,AR-X,annual,2022,bioetanol combustion consumption by to the public,41.691675239999995,TJ,N2O,0.6,kg/TJ,25.015005143999996,kg +b27ef253-de11-3392-a00c-2096438be689,SESCO,II.1.1,Entre Rios,AR-E,annual,2022,bioetanol combustion consumption by to the public,10.97189712,TJ,CH4,10.0,kg/TJ,109.7189712,kg +18b85a85-2baf-3a5c-b43a-55be912838fb,SESCO,II.1.1,Entre Rios,AR-E,annual,2022,bioetanol combustion consumption by to the public,10.97189712,TJ,N2O,0.6,kg/TJ,6.583138271999999,kg +08ee9694-1f5b-32e0-bb54-43aef8c80e4d,SESCO,II.1.1,Mendoza,AR-M,annual,2022,bioetanol combustion consumption by to the public,25.84224324,TJ,CH4,10.0,kg/TJ,258.4224324,kg +c768cca2-79c5-321d-b2f6-1d827328fa4c,SESCO,II.1.1,Mendoza,AR-M,annual,2022,bioetanol combustion consumption by to the public,25.84224324,TJ,N2O,0.6,kg/TJ,15.505345943999998,kg +f392ce11-345b-399e-93e7-1965b157e729,SESCO,II.1.1,San Luis,AR-D,annual,2022,bioetanol combustion consumption by to the public,4.580997119999999,TJ,CH4,10.0,kg/TJ,45.80997119999999,kg +0af84afd-8412-31d8-85fb-936838c9adcd,SESCO,II.1.1,San Luis,AR-D,annual,2022,bioetanol combustion consumption by to the public,4.580997119999999,TJ,N2O,0.6,kg/TJ,2.7485982719999993,kg +eba1646b-8f9f-3847-971f-94628c57c07a,SESCO,II.1.1,Santa Fe,AR-S,annual,2022,bioetanol combustion consumption by to the public,28.362814199999995,TJ,CH4,10.0,kg/TJ,283.62814199999997,kg +45d3cbb7-9592-3aac-a7b4-1d1d8240d38e,SESCO,II.1.1,Santa Fe,AR-S,annual,2022,bioetanol combustion consumption by to the public,28.362814199999995,TJ,N2O,0.6,kg/TJ,17.017688519999997,kg +4bfbe7a5-defb-324a-82e4-e9825c8ce975,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2022,bioetanol combustion consumption by to the public,4.52220084,TJ,CH4,10.0,kg/TJ,45.2220084,kg +15f6b526-588e-3b11-9bbd-9a5745a2cefc,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2022,bioetanol combustion consumption by to the public,4.52220084,TJ,N2O,0.6,kg/TJ,2.713320504,kg +61b6d7f5-e2e8-378a-9ee0-74edd55ff1ea,SESCO,II.1.1,Tucuman,AR-T,annual,2022,bioetanol combustion consumption by to the public,2.4183165599999996,TJ,CH4,10.0,kg/TJ,24.183165599999995,kg +936658e9-12ae-3d9a-b5c7-e1456331df9a,SESCO,II.1.1,Tucuman,AR-T,annual,2022,bioetanol combustion consumption by to the public,2.4183165599999996,TJ,N2O,0.6,kg/TJ,1.4509899359999998,kg +d0c7cba4-c529-3007-91c0-eaa71b041a8a,SESCO,II.1.1,Buenos Aires,AR-B,annual,2022,bioetanol combustion consumption by to the public,8.15223204,TJ,CH4,10.0,kg/TJ,81.5223204,kg +00c137e6-ae4b-3173-b6fa-153b66c5eaa9,SESCO,II.1.1,Buenos Aires,AR-B,annual,2022,bioetanol combustion consumption by to the public,8.15223204,TJ,N2O,0.6,kg/TJ,4.891339223999999,kg +f9a99c3f-0e48-310b-bde7-e5429760e32a,SESCO,II.1.1,Capital Federal,AR-C,annual,2022,bioetanol combustion consumption by to the public,0.7669079999999999,TJ,CH4,10.0,kg/TJ,7.669079999999999,kg +895261a5-55d5-3adc-904e-b8911318c4c6,SESCO,II.1.1,Capital Federal,AR-C,annual,2022,bioetanol combustion consumption by to the public,0.7669079999999999,TJ,N2O,0.6,kg/TJ,0.4601447999999999,kg +27ddb701-7482-3b85-b1b8-55e6936252f7,SESCO,II.1.1,Catamarca,AR-K,annual,2022,bioetanol combustion consumption by to the public,0.22751603999999997,TJ,CH4,10.0,kg/TJ,2.2751604,kg +e1054093-eca6-33da-a80d-92b6d490f99d,SESCO,II.1.1,Catamarca,AR-K,annual,2022,bioetanol combustion consumption by to the public,0.22751603999999997,TJ,N2O,0.6,kg/TJ,0.13650962399999997,kg +c73b5ea3-35b8-3552-99db-e50568c479db,SESCO,II.1.1,Chaco,AR-H,annual,2022,bioetanol combustion consumption by to the public,0.035789039999999994,TJ,CH4,10.0,kg/TJ,0.35789039999999994,kg +3b62a40e-54ef-33e3-8037-484aa427071c,SESCO,II.1.1,Chaco,AR-H,annual,2022,bioetanol combustion consumption by to the public,0.035789039999999994,TJ,N2O,0.6,kg/TJ,0.021473423999999994,kg +cd9502b0-bf87-3691-bfcd-ac77b0e4bd74,SESCO,II.1.1,Corrientes,AR-W,annual,2022,bioetanol combustion consumption by to the public,0.11759255999999998,TJ,CH4,10.0,kg/TJ,1.1759255999999998,kg +e9a4054c-8037-3cef-b2aa-aa991081e9e5,SESCO,II.1.1,Corrientes,AR-W,annual,2022,bioetanol combustion consumption by to the public,0.11759255999999998,TJ,N2O,0.6,kg/TJ,0.07055553599999999,kg +f8e287d6-df15-3a47-a7c7-cdf0bae009ae,SESCO,II.1.1,Córdoba,AR-X,annual,2022,bioetanol combustion consumption by to the public,4.63468068,TJ,CH4,10.0,kg/TJ,46.346806799999996,kg +d99663b1-f01e-39d0-81f6-dc5a7c1168fe,SESCO,II.1.1,Córdoba,AR-X,annual,2022,bioetanol combustion consumption by to the public,4.63468068,TJ,N2O,0.6,kg/TJ,2.780808408,kg +119f1899-6773-3359-8cc1-11e99054dee4,SESCO,II.1.1,Entre Rios,AR-E,annual,2022,bioetanol combustion consumption by to the public,1.4085543600000001,TJ,CH4,10.0,kg/TJ,14.085543600000001,kg +8b35c255-526f-3599-bbe1-6e63b048e315,SESCO,II.1.1,Entre Rios,AR-E,annual,2022,bioetanol combustion consumption by to the public,1.4085543600000001,TJ,N2O,0.6,kg/TJ,0.845132616,kg +ba4e26fa-3a7a-3033-9909-429d2ed666d2,SESCO,II.1.1,Mendoza,AR-M,annual,2022,bioetanol combustion consumption by to the public,4.07228148,TJ,CH4,10.0,kg/TJ,40.7228148,kg +0f9d4669-b2a3-375e-b6b0-11e46ce1d840,SESCO,II.1.1,Mendoza,AR-M,annual,2022,bioetanol combustion consumption by to the public,4.07228148,TJ,N2O,0.6,kg/TJ,2.4433688879999997,kg +7f907ba4-0b44-381b-8d67-da063c7f7f35,SESCO,II.1.1,San Luis,AR-D,annual,2022,bioetanol combustion consumption by to the public,0.19428336,TJ,CH4,10.0,kg/TJ,1.9428336,kg +b2142de9-1481-331a-9144-a217cb3465a1,SESCO,II.1.1,San Luis,AR-D,annual,2022,bioetanol combustion consumption by to the public,0.19428336,TJ,N2O,0.6,kg/TJ,0.11657001599999998,kg +76eaf694-c968-3938-be27-abc56ff3b0f8,SESCO,II.1.1,Santa Fe,AR-S,annual,2022,bioetanol combustion consumption by to the public,4.18731768,TJ,CH4,10.0,kg/TJ,41.873176799999996,kg +b9c5744b-e307-32c5-9bf0-4b8751dab4f7,SESCO,II.1.1,Santa Fe,AR-S,annual,2022,bioetanol combustion consumption by to the public,4.18731768,TJ,N2O,0.6,kg/TJ,2.5123906079999996,kg +56e79be3-c494-3c20-8dd7-6297a155a7d4,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2022,bioetanol combustion consumption by to the public,0.45503207999999995,TJ,CH4,10.0,kg/TJ,4.5503208,kg +8273fcc9-ffe2-30e0-bcb7-e22f34a142ba,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2022,bioetanol combustion consumption by to the public,0.45503207999999995,TJ,N2O,0.6,kg/TJ,0.27301924799999994,kg +8492dee2-911a-31a9-8f77-a94515682ee1,SESCO,II.1.1,Tucuman,AR-T,annual,2022,bioetanol combustion consumption by to the public,0.015338159999999998,TJ,CH4,10.0,kg/TJ,0.15338159999999998,kg +e4c9483b-85af-356e-8055-adde5ba8ea71,SESCO,II.1.1,Tucuman,AR-T,annual,2022,bioetanol combustion consumption by to the public,0.015338159999999998,TJ,N2O,0.6,kg/TJ,0.009202895999999999,kg +bfce8600-ffa0-39f7-a78b-ee06d1ba391f,SESCO,II.5.1,Buenos Aires,AR-B,annual,2022,bioetanol combustion consumption by agriculture machines,0.61608276,TJ,CH4,10.0,kg/TJ,6.160827599999999,kg +be79c5a5-a558-3d47-a35b-efed300661be,SESCO,II.5.1,Buenos Aires,AR-B,annual,2022,bioetanol combustion consumption by agriculture machines,0.61608276,TJ,N2O,0.6,kg/TJ,0.36964965599999994,kg +922bd5e4-470e-3c19-93fb-35bbb693c088,SESCO,II.5.1,Capital Federal,AR-C,annual,2022,bioetanol combustion consumption by agriculture machines,0.07413444,TJ,CH4,10.0,kg/TJ,0.7413444,kg +e4e1aee4-f9eb-3444-8d93-1c1f2aa7368f,SESCO,II.5.1,Capital Federal,AR-C,annual,2022,bioetanol combustion consumption by agriculture machines,0.07413444,TJ,N2O,0.6,kg/TJ,0.044480663999999996,kg +858e44ec-437d-3a9f-b584-9f971a671cdb,SESCO,II.5.1,Córdoba,AR-X,annual,2022,bioetanol combustion consumption by agriculture machines,2.6969597999999997,TJ,CH4,10.0,kg/TJ,26.969597999999998,kg +b650c476-9dd9-3564-bb6c-019cb2a003b5,SESCO,II.5.1,Córdoba,AR-X,annual,2022,bioetanol combustion consumption by agriculture machines,2.6969597999999997,TJ,N2O,0.6,kg/TJ,1.6181758799999997,kg +91163007-8c17-38fd-b08e-7b086cc08a31,SESCO,II.5.1,Santa Fe,AR-S,annual,2022,bioetanol combustion consumption by agriculture machines,0.6390899999999999,TJ,CH4,10.0,kg/TJ,6.390899999999999,kg +2f6e9398-a75d-325b-8034-9e1c3f1901fc,SESCO,II.5.1,Santa Fe,AR-S,annual,2022,bioetanol combustion consumption by agriculture machines,0.6390899999999999,TJ,N2O,0.6,kg/TJ,0.38345399999999996,kg +837f76d4-4f0f-3f00-afec-ce7670bf4d00,SESCO,II.5.1,Buenos Aires,AR-B,annual,2022,bioetanol combustion consumption by agriculture machines,0.13804344,TJ,CH4,10.0,kg/TJ,1.3804344,kg +2212529a-29ac-3511-af37-017baa688d80,SESCO,II.5.1,Buenos Aires,AR-B,annual,2022,bioetanol combustion consumption by agriculture machines,0.13804344,TJ,N2O,0.6,kg/TJ,0.08282606399999999,kg +c63f59c0-d8cb-35d8-992c-b489c669f516,SESCO,II.5.1,Capital Federal,AR-C,annual,2022,bioetanol combustion consumption by agriculture machines,0.007669079999999999,TJ,CH4,10.0,kg/TJ,0.07669079999999999,kg +e29d81a1-3ff3-3cd1-81f9-fb6f3776bb9e,SESCO,II.5.1,Capital Federal,AR-C,annual,2022,bioetanol combustion consumption by agriculture machines,0.007669079999999999,TJ,N2O,0.6,kg/TJ,0.004601447999999999,kg +6ba56373-b9b0-32f3-aee3-f7b6026b5214,SESCO,II.5.1,Córdoba,AR-X,annual,2022,bioetanol combustion consumption by agriculture machines,0.22495967999999997,TJ,CH4,10.0,kg/TJ,2.2495967999999995,kg +9cb5836a-7f88-3db2-b451-279fabfc9cd0,SESCO,II.5.1,Córdoba,AR-X,annual,2022,bioetanol combustion consumption by agriculture machines,0.22495967999999997,TJ,N2O,0.6,kg/TJ,0.13497580799999997,kg +93a1bf44-f930-30ac-b4dd-f8f53dcf21d6,SESCO,II.1.1,Buenos Aires,AR-B,annual,2022,bioetanol combustion consumption by to the public,81.69870924,TJ,CH4,10.0,kg/TJ,816.9870923999999,kg +abdc9bde-17d9-3b8d-ae8f-e6152456585c,SESCO,II.1.1,Buenos Aires,AR-B,annual,2022,bioetanol combustion consumption by to the public,81.69870924,TJ,N2O,0.6,kg/TJ,49.019225544,kg +f5e59bcd-13c8-3555-a79d-f7a19c48c4b7,SESCO,II.1.1,Capital Federal,AR-C,annual,2022,bioetanol combustion consumption by to the public,9.946796759999998,TJ,CH4,10.0,kg/TJ,99.46796759999998,kg +6b7932b7-8268-3d16-98d3-380017dccaa3,SESCO,II.1.1,Capital Federal,AR-C,annual,2022,bioetanol combustion consumption by to the public,9.946796759999998,TJ,N2O,0.6,kg/TJ,5.968078055999999,kg +7bc083c4-78be-3731-97c4-2dc95f618c18,SESCO,II.1.1,Catamarca,AR-K,annual,2022,bioetanol combustion consumption by to the public,5.75947908,TJ,CH4,10.0,kg/TJ,57.5947908,kg +f9f4ed30-3918-39b8-a02a-632007e0e781,SESCO,II.1.1,Catamarca,AR-K,annual,2022,bioetanol combustion consumption by to the public,5.75947908,TJ,N2O,0.6,kg/TJ,3.455687448,kg +3f178e0d-d2af-30b9-8ee2-fd36d136cf09,SESCO,II.1.1,Chaco,AR-H,annual,2022,bioetanol combustion consumption by to the public,22.14574668,TJ,CH4,10.0,kg/TJ,221.4574668,kg +409414df-0942-3c8b-b30f-fd2eeb4e0fca,SESCO,II.1.1,Chaco,AR-H,annual,2022,bioetanol combustion consumption by to the public,22.14574668,TJ,N2O,0.6,kg/TJ,13.287448007999998,kg +475b2e8c-3758-3c26-a8e3-590dd3d3fbf5,SESCO,II.1.1,Corrientes,AR-W,annual,2022,bioetanol combustion consumption by to the public,17.81016012,TJ,CH4,10.0,kg/TJ,178.1016012,kg +98190238-df41-3a72-9a16-ecdafde925ea,SESCO,II.1.1,Corrientes,AR-W,annual,2022,bioetanol combustion consumption by to the public,17.81016012,TJ,N2O,0.6,kg/TJ,10.686096072,kg +a866ce85-d5b9-395b-94d2-16823675158b,SESCO,II.1.1,Córdoba,AR-X,annual,2022,bioetanol combustion consumption by to the public,32.634491759999996,TJ,CH4,10.0,kg/TJ,326.3449176,kg +1a6f03ae-aff2-3d60-92bd-0a79f453d62d,SESCO,II.1.1,Córdoba,AR-X,annual,2022,bioetanol combustion consumption by to the public,32.634491759999996,TJ,N2O,0.6,kg/TJ,19.580695055999996,kg +d3dac181-c48d-3a23-924b-3491b03f35be,SESCO,II.1.1,Entre Rios,AR-E,annual,2022,bioetanol combustion consumption by to the public,19.914044399999998,TJ,CH4,10.0,kg/TJ,199.14044399999997,kg +6d0360fd-12e9-3638-b7ff-33b39a2523cf,SESCO,II.1.1,Entre Rios,AR-E,annual,2022,bioetanol combustion consumption by to the public,19.914044399999998,TJ,N2O,0.6,kg/TJ,11.94842664,kg +6d1873d2-f5fb-3d94-a74c-d59281747e37,SESCO,II.1.1,Formosa,AR-P,annual,2022,bioetanol combustion consumption by to the public,3.3743952,TJ,CH4,10.0,kg/TJ,33.743952,kg +b4969d36-51e2-3457-896b-d2fdae212009,SESCO,II.1.1,Formosa,AR-P,annual,2022,bioetanol combustion consumption by to the public,3.3743952,TJ,N2O,0.6,kg/TJ,2.02463712,kg +0d4e94be-7454-3f66-aaa9-16b749372a5f,SESCO,II.1.1,La Rioja,AR-F,annual,2022,bioetanol combustion consumption by to the public,7.35720408,TJ,CH4,10.0,kg/TJ,73.5720408,kg +b3c120db-a703-369e-a527-d170ef913969,SESCO,II.1.1,La Rioja,AR-F,annual,2022,bioetanol combustion consumption by to the public,7.35720408,TJ,N2O,0.6,kg/TJ,4.414322448,kg +ab97b8af-2c07-303c-9f59-345eb41260c1,SESCO,II.1.1,Mendoza,AR-M,annual,2022,bioetanol combustion consumption by to the public,31.443227999999998,TJ,CH4,10.0,kg/TJ,314.43228,kg +413ee735-cc81-3c44-8420-6c1796f99dbc,SESCO,II.1.1,Mendoza,AR-M,annual,2022,bioetanol combustion consumption by to the public,31.443227999999998,TJ,N2O,0.6,kg/TJ,18.865936799999997,kg +cdc40040-334b-3f5a-99ab-9c29d688bfe2,SESCO,II.1.1,Misiones,AR-N,annual,2022,bioetanol combustion consumption by to the public,25.553374559999998,TJ,CH4,10.0,kg/TJ,255.53374559999997,kg +77885761-ad36-3873-82dd-4ff07a8f6bcc,SESCO,II.1.1,Misiones,AR-N,annual,2022,bioetanol combustion consumption by to the public,25.553374559999998,TJ,N2O,0.6,kg/TJ,15.332024735999997,kg +8ffea237-b927-3ffe-bfb8-d4abc59bf9f7,SESCO,II.1.1,San Juan,AR-J,annual,2022,bioetanol combustion consumption by to the public,6.434358119999999,TJ,CH4,10.0,kg/TJ,64.34358119999999,kg +3f3934f0-e1c7-39eb-9305-8898211216c4,SESCO,II.1.1,San Juan,AR-J,annual,2022,bioetanol combustion consumption by to the public,6.434358119999999,TJ,N2O,0.6,kg/TJ,3.8606148719999993,kg +c7d72634-7135-3ab1-9199-3c52196cb85d,SESCO,II.1.1,San Luis,AR-D,annual,2022,bioetanol combustion consumption by to the public,2.0271934799999998,TJ,CH4,10.0,kg/TJ,20.271934799999997,kg +663fcce9-2552-385f-b935-cd99dddf67ed,SESCO,II.1.1,San Luis,AR-D,annual,2022,bioetanol combustion consumption by to the public,2.0271934799999998,TJ,N2O,0.6,kg/TJ,1.216316088,kg +429e7b83-f02f-3308-862c-dad8cf41785b,SESCO,II.1.1,Santa Fe,AR-S,annual,2022,bioetanol combustion consumption by to the public,40.56687684,TJ,CH4,10.0,kg/TJ,405.6687684,kg +5487f009-ba6f-30a5-811f-919be353325b,SESCO,II.1.1,Santa Fe,AR-S,annual,2022,bioetanol combustion consumption by to the public,40.56687684,TJ,N2O,0.6,kg/TJ,24.340126104,kg +5838ce3a-b390-3a9d-af8e-321b14d846aa,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2022,bioetanol combustion consumption by to the public,12.835483559999998,TJ,CH4,10.0,kg/TJ,128.35483559999997,kg +46291538-07d9-3a0b-af78-313648d553cf,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2022,bioetanol combustion consumption by to the public,12.835483559999998,TJ,N2O,0.6,kg/TJ,7.701290135999999,kg +a2005e14-78f3-3176-931e-004d85fe2e27,SESCO,II.1.1,Tucuman,AR-T,annual,2022,bioetanol combustion consumption by to the public,2.8631232,TJ,CH4,10.0,kg/TJ,28.631232,kg +70512504-092a-31b7-8b08-dde7989353e3,SESCO,II.1.1,Tucuman,AR-T,annual,2022,bioetanol combustion consumption by to the public,2.8631232,TJ,N2O,0.6,kg/TJ,1.71787392,kg +d7cab2b8-dd40-37c8-aa21-e303bec87b24,SESCO,II.1.1,Buenos Aires,AR-B,annual,2022,bioetanol combustion consumption by to the public,9.450862919999999,TJ,CH4,10.0,kg/TJ,94.50862919999999,kg +2f759327-b305-3929-ab9c-ca9779f9f54c,SESCO,II.1.1,Buenos Aires,AR-B,annual,2022,bioetanol combustion consumption by to the public,9.450862919999999,TJ,N2O,0.6,kg/TJ,5.670517751999999,kg +b0a4ed31-b041-347a-be4b-7677a34bb3ae,SESCO,II.1.1,Capital Federal,AR-C,annual,2022,bioetanol combustion consumption by to the public,1.74343752,TJ,CH4,10.0,kg/TJ,17.4343752,kg +250e88fd-8a14-362e-90e6-2a2e89b68411,SESCO,II.1.1,Capital Federal,AR-C,annual,2022,bioetanol combustion consumption by to the public,1.74343752,TJ,N2O,0.6,kg/TJ,1.046062512,kg +e54a49e2-2b18-3f9b-8c4d-135662cb526a,SESCO,II.1.1,Catamarca,AR-K,annual,2022,bioetanol combustion consumption by to the public,0.7566825599999999,TJ,CH4,10.0,kg/TJ,7.566825599999999,kg +5094e064-3322-3ea9-a130-8e0ae7678234,SESCO,II.1.1,Catamarca,AR-K,annual,2022,bioetanol combustion consumption by to the public,0.7566825599999999,TJ,N2O,0.6,kg/TJ,0.45400953599999994,kg +936006e2-3b66-3470-8045-04018a7ba482,SESCO,II.1.1,Chaco,AR-H,annual,2022,bioetanol combustion consumption by to the public,1.6488521999999997,TJ,CH4,10.0,kg/TJ,16.488521999999996,kg +b8ee1abf-6492-3776-aed5-d33b967f345a,SESCO,II.1.1,Chaco,AR-H,annual,2022,bioetanol combustion consumption by to the public,1.6488521999999997,TJ,N2O,0.6,kg/TJ,0.9893113199999998,kg +77eab170-239d-3637-b581-56ff22e3e880,SESCO,II.1.1,Corrientes,AR-W,annual,2022,bioetanol combustion consumption by to the public,0.99953676,TJ,CH4,10.0,kg/TJ,9.9953676,kg +0679e7d2-0077-34c3-8960-820d3e3fbfbb,SESCO,II.1.1,Corrientes,AR-W,annual,2022,bioetanol combustion consumption by to the public,0.99953676,TJ,N2O,0.6,kg/TJ,0.599722056,kg +8c4bd117-fcd8-35ff-a1ff-d0553d3dbb7a,SESCO,II.1.1,Córdoba,AR-X,annual,2022,bioetanol combustion consumption by to the public,4.94144388,TJ,CH4,10.0,kg/TJ,49.4144388,kg +00ccc927-bf5b-37b0-b08d-6cb7b8e1d1e1,SESCO,II.1.1,Córdoba,AR-X,annual,2022,bioetanol combustion consumption by to the public,4.94144388,TJ,N2O,0.6,kg/TJ,2.964866328,kg +a5e69431-9952-369a-9156-d6e2b771b3ee,SESCO,II.1.1,Entre Rios,AR-E,annual,2022,bioetanol combustion consumption by to the public,2.17034964,TJ,CH4,10.0,kg/TJ,21.7034964,kg +56eab2cc-0c95-3939-8caf-cbb759d0edcb,SESCO,II.1.1,Entre Rios,AR-E,annual,2022,bioetanol combustion consumption by to the public,2.17034964,TJ,N2O,0.6,kg/TJ,1.302209784,kg +41740679-4e00-3867-a0df-e034469f3d59,SESCO,II.1.1,Formosa,AR-P,annual,2022,bioetanol combustion consumption by to the public,0.30931956,TJ,CH4,10.0,kg/TJ,3.0931956,kg +509cf9cb-ed63-368e-aa24-2eeecd68d7a9,SESCO,II.1.1,Formosa,AR-P,annual,2022,bioetanol combustion consumption by to the public,0.30931956,TJ,N2O,0.6,kg/TJ,0.18559173599999998,kg +21b22a9a-5a30-3eb2-b75a-2d58c4af11d8,SESCO,II.1.1,La Rioja,AR-F,annual,2022,bioetanol combustion consumption by to the public,0.7285625999999998,TJ,CH4,10.0,kg/TJ,7.285625999999999,kg +353ad1ab-c05a-3fa7-8d8d-8ad4f9a64739,SESCO,II.1.1,La Rioja,AR-F,annual,2022,bioetanol combustion consumption by to the public,0.7285625999999998,TJ,N2O,0.6,kg/TJ,0.43713755999999987,kg +dcedff83-6c34-3553-829b-393a05df05ec,SESCO,II.1.1,Mendoza,AR-M,annual,2022,bioetanol combustion consumption by to the public,2.22147684,TJ,CH4,10.0,kg/TJ,22.214768399999997,kg +8d60eb63-8f99-3b3d-a337-c29aeba5e1dc,SESCO,II.1.1,Mendoza,AR-M,annual,2022,bioetanol combustion consumption by to the public,2.22147684,TJ,N2O,0.6,kg/TJ,1.3328861039999997,kg +26fddf53-fdcb-38eb-870c-aff4993f5c6a,SESCO,II.1.1,Misiones,AR-N,annual,2022,bioetanol combustion consumption by to the public,1.71531756,TJ,CH4,10.0,kg/TJ,17.153175599999997,kg +638734fe-21a6-3842-81f1-5d9225596ef9,SESCO,II.1.1,Misiones,AR-N,annual,2022,bioetanol combustion consumption by to the public,1.71531756,TJ,N2O,0.6,kg/TJ,1.029190536,kg +f6555cfb-5729-3502-a167-2356b02a99dd,SESCO,II.1.1,San Juan,AR-J,annual,2022,bioetanol combustion consumption by to the public,0.88705692,TJ,CH4,10.0,kg/TJ,8.8705692,kg +f1778c91-d084-3c63-a938-9da940a934b9,SESCO,II.1.1,San Juan,AR-J,annual,2022,bioetanol combustion consumption by to the public,0.88705692,TJ,N2O,0.6,kg/TJ,0.532234152,kg +da08bcb8-9f49-3ac5-a5ff-d5eec593f32a,SESCO,II.1.1,San Luis,AR-D,annual,2022,bioetanol combustion consumption by to the public,0.1661634,TJ,CH4,10.0,kg/TJ,1.6616339999999998,kg +de6825da-68f2-38fa-bbc8-9051bcd79f27,SESCO,II.1.1,San Luis,AR-D,annual,2022,bioetanol combustion consumption by to the public,0.1661634,TJ,N2O,0.6,kg/TJ,0.09969803999999999,kg +3330a347-1f33-3ad6-8195-a4bf494f238c,SESCO,II.1.1,Santa Fe,AR-S,annual,2022,bioetanol combustion consumption by to the public,4.63212432,TJ,CH4,10.0,kg/TJ,46.3212432,kg +7f333252-bd78-3763-be21-d8146e8eb042,SESCO,II.1.1,Santa Fe,AR-S,annual,2022,bioetanol combustion consumption by to the public,4.63212432,TJ,N2O,0.6,kg/TJ,2.7792745919999997,kg +9900b73f-50c0-3041-95f4-c27724f9456c,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2022,bioetanol combustion consumption by to the public,1.16825652,TJ,CH4,10.0,kg/TJ,11.682565199999999,kg +f84978b9-ccad-3b0c-8040-6673c77b5472,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2022,bioetanol combustion consumption by to the public,1.16825652,TJ,N2O,0.6,kg/TJ,0.7009539119999999,kg +605f5d45-2094-3a94-85f6-de7600d74275,SESCO,II.1.1,Tucuman,AR-T,annual,2022,bioetanol combustion consumption by to the public,0.29653776,TJ,CH4,10.0,kg/TJ,2.9653776,kg +b7a851a0-23af-30cd-9769-6d1efacb64ac,SESCO,II.1.1,Tucuman,AR-T,annual,2022,bioetanol combustion consumption by to the public,0.29653776,TJ,N2O,0.6,kg/TJ,0.17792265599999998,kg +31a9660b-f3de-3fe1-a238-3da71a808bdf,SESCO,II.5.1,Santa Fe,AR-S,annual,2022,bioetanol combustion consumption by agriculture machines,0.22240332,TJ,CH4,10.0,kg/TJ,2.2240332,kg +4a0eb007-aa36-3de6-b0bf-99125b5f22f2,SESCO,II.5.1,Santa Fe,AR-S,annual,2022,bioetanol combustion consumption by agriculture machines,0.22240332,TJ,N2O,0.6,kg/TJ,0.13344199199999998,kg +d39c1950-f0fd-3ba9-b094-3c0ab83309e3,SESCO,II.5.1,Santa Fe,AR-S,annual,2022,bioetanol combustion consumption by agriculture machines,0.08180351999999999,TJ,CH4,10.0,kg/TJ,0.8180352,kg +d1fcb103-dafe-3593-8256-7f777e26fd4f,SESCO,II.5.1,Santa Fe,AR-S,annual,2022,bioetanol combustion consumption by agriculture machines,0.08180351999999999,TJ,N2O,0.6,kg/TJ,0.04908211199999999,kg +90f0d7fc-94b9-3176-bb56-9be0a78d7911,SESCO,II.1.1,Buenos Aires,AR-B,annual,2022,bioetanol combustion consumption by to the public,888.0999148799999,TJ,CH4,10.0,kg/TJ,8880.9991488,kg +02638d26-739e-39c7-8c14-189a32205084,SESCO,II.1.1,Buenos Aires,AR-B,annual,2022,bioetanol combustion consumption by to the public,888.0999148799999,TJ,N2O,0.6,kg/TJ,532.8599489279999,kg +46cc7d93-9213-3e35-80c1-691dd6fdbdaa,SESCO,II.1.1,Capital Federal,AR-C,annual,2022,bioetanol combustion consumption by to the public,219.48140052,TJ,CH4,10.0,kg/TJ,2194.8140052,kg +91d83460-435b-319f-99ea-b6efa91cabdd,SESCO,II.1.1,Capital Federal,AR-C,annual,2022,bioetanol combustion consumption by to the public,219.48140052,TJ,N2O,0.6,kg/TJ,131.688840312,kg +6eb19b6c-4f90-3e7d-a4ea-a689bc944ea0,SESCO,II.1.1,Catamarca,AR-K,annual,2022,bioetanol combustion consumption by to the public,35.43370596,TJ,CH4,10.0,kg/TJ,354.3370596,kg +fbdcd7e2-de39-34ac-872e-9b04f3305927,SESCO,II.1.1,Catamarca,AR-K,annual,2022,bioetanol combustion consumption by to the public,35.43370596,TJ,N2O,0.6,kg/TJ,21.260223575999998,kg +f306e877-6a79-3e08-b15b-35e17067c530,SESCO,II.1.1,Chaco,AR-H,annual,2022,bioetanol combustion consumption by to the public,64.63500624,TJ,CH4,10.0,kg/TJ,646.3500624,kg +2a166096-8b2e-387d-9be0-139f53bd73f8,SESCO,II.1.1,Chaco,AR-H,annual,2022,bioetanol combustion consumption by to the public,64.63500624,TJ,N2O,0.6,kg/TJ,38.781003743999996,kg +358aab6b-4d52-3443-961c-88325b9e4c2d,SESCO,II.1.1,Chubut,AR-U,annual,2022,bioetanol combustion consumption by to the public,136.35879875999998,TJ,CH4,10.0,kg/TJ,1363.5879876,kg +6c32062f-5c13-3871-90f1-c5f1959f4a5f,SESCO,II.1.1,Chubut,AR-U,annual,2022,bioetanol combustion consumption by to the public,136.35879875999998,TJ,N2O,0.6,kg/TJ,81.81527925599998,kg +726ebd68-2581-3719-86c5-9738b79e1c11,SESCO,II.1.1,Corrientes,AR-W,annual,2022,bioetanol combustion consumption by to the public,92.50955567999999,TJ,CH4,10.0,kg/TJ,925.0955567999999,kg +4c6b31cc-d407-3d26-a622-d0602d7ef1a4,SESCO,II.1.1,Corrientes,AR-W,annual,2022,bioetanol combustion consumption by to the public,92.50955567999999,TJ,N2O,0.6,kg/TJ,55.50573340799999,kg +bc15955c-1bbb-3c59-a1db-bf93d5d88091,SESCO,II.1.1,Córdoba,AR-X,annual,2022,bioetanol combustion consumption by to the public,212.26990895999998,TJ,CH4,10.0,kg/TJ,2122.6990895999998,kg +934895ee-51ff-3a39-a4b7-5eae6a603cb2,SESCO,II.1.1,Córdoba,AR-X,annual,2022,bioetanol combustion consumption by to the public,212.26990895999998,TJ,N2O,0.6,kg/TJ,127.36194537599998,kg +5623f247-fbd4-3a60-9c7a-f54b5c6384e3,SESCO,II.1.1,Entre Rios,AR-E,annual,2022,bioetanol combustion consumption by to the public,91.66084416,TJ,CH4,10.0,kg/TJ,916.6084416,kg +16534ad9-38d5-3af9-b9c9-8ed626d5f3d7,SESCO,II.1.1,Entre Rios,AR-E,annual,2022,bioetanol combustion consumption by to the public,91.66084416,TJ,N2O,0.6,kg/TJ,54.996506495999995,kg +2704e806-559e-3903-acee-cda805e13f32,SESCO,II.1.1,Formosa,AR-P,annual,2022,bioetanol combustion consumption by to the public,78.52626647999999,TJ,CH4,10.0,kg/TJ,785.2626647999999,kg +a30d4250-23a4-36b3-9142-b09da7161fab,SESCO,II.1.1,Formosa,AR-P,annual,2022,bioetanol combustion consumption by to the public,78.52626647999999,TJ,N2O,0.6,kg/TJ,47.11575988799999,kg +2a2daddf-0a91-3a57-b5a9-fa45268af795,SESCO,II.1.1,Jujuy,AR-Y,annual,2022,bioetanol combustion consumption by to the public,21.297035159999997,TJ,CH4,10.0,kg/TJ,212.97035159999996,kg +46f89743-5509-3279-9795-8fef7a1e87bc,SESCO,II.1.1,Jujuy,AR-Y,annual,2022,bioetanol combustion consumption by to the public,21.297035159999997,TJ,N2O,0.6,kg/TJ,12.778221095999998,kg +24ebbcfd-92e1-37c3-9c53-8cfcc417e1c2,SESCO,II.1.1,La Pampa,AR-L,annual,2022,bioetanol combustion consumption by to the public,19.60472484,TJ,CH4,10.0,kg/TJ,196.0472484,kg +5c08309e-6b29-374b-bf9a-9ada2c1ecec4,SESCO,II.1.1,La Pampa,AR-L,annual,2022,bioetanol combustion consumption by to the public,19.60472484,TJ,N2O,0.6,kg/TJ,11.762834904,kg +718a603a-3b12-3541-a7f7-8b56c5b61fb8,SESCO,II.1.1,La Rioja,AR-F,annual,2022,bioetanol combustion consumption by to the public,11.411591039999998,TJ,CH4,10.0,kg/TJ,114.11591039999998,kg +a1709e59-7ee8-3119-8599-b0cac858c2e9,SESCO,II.1.1,La Rioja,AR-F,annual,2022,bioetanol combustion consumption by to the public,11.411591039999998,TJ,N2O,0.6,kg/TJ,6.8469546239999985,kg +94b98db2-edc7-3aab-b5cb-ef9c3a80b755,SESCO,II.1.1,Mendoza,AR-M,annual,2022,bioetanol combustion consumption by to the public,42.69888107999999,TJ,CH4,10.0,kg/TJ,426.9888107999999,kg +1a01714e-d6ca-3847-85a5-f326543614c6,SESCO,II.1.1,Mendoza,AR-M,annual,2022,bioetanol combustion consumption by to the public,42.69888107999999,TJ,N2O,0.6,kg/TJ,25.619328647999996,kg +6cde847d-d1ad-3672-a70d-24f3be74a0e5,SESCO,II.1.1,Misiones,AR-N,annual,2022,bioetanol combustion consumption by to the public,152.90611703999997,TJ,CH4,10.0,kg/TJ,1529.0611703999998,kg +4a72aac8-407f-3f59-8883-e886fda8de74,SESCO,II.1.1,Misiones,AR-N,annual,2022,bioetanol combustion consumption by to the public,152.90611703999997,TJ,N2O,0.6,kg/TJ,91.74367022399998,kg +77d1f86b-3896-376c-8ab9-2dfa7ee4824f,SESCO,II.1.1,Neuquén,AR-Q,annual,2022,bioetanol combustion consumption by to the public,41.33122847999999,TJ,CH4,10.0,kg/TJ,413.31228479999993,kg +0e637051-1fc6-3c70-b8de-0a3dba61a3cf,SESCO,II.1.1,Neuquén,AR-Q,annual,2022,bioetanol combustion consumption by to the public,41.33122847999999,TJ,N2O,0.6,kg/TJ,24.798737087999996,kg +6b01cd25-8f93-326c-9e98-3bb689ddc659,SESCO,II.1.1,Rio Negro,AR-R,annual,2022,bioetanol combustion consumption by to the public,69.6480282,TJ,CH4,10.0,kg/TJ,696.480282,kg +324bf28a-14e1-3c4e-83b7-4dca3a699219,SESCO,II.1.1,Rio Negro,AR-R,annual,2022,bioetanol combustion consumption by to the public,69.6480282,TJ,N2O,0.6,kg/TJ,41.788816919999995,kg +5ffe2dc4-7f25-3f6f-ad93-b68f0f439aec,SESCO,II.1.1,Salta,AR-A,annual,2022,bioetanol combustion consumption by to the public,19.336307039999998,TJ,CH4,10.0,kg/TJ,193.36307039999997,kg +14811066-a3fb-3599-84b8-7a4d81928070,SESCO,II.1.1,Salta,AR-A,annual,2022,bioetanol combustion consumption by to the public,19.336307039999998,TJ,N2O,0.6,kg/TJ,11.601784223999998,kg +27b17386-9fbe-30d4-87be-48e4d1ccb326,SESCO,II.1.1,San Juan,AR-J,annual,2022,bioetanol combustion consumption by to the public,18.72022428,TJ,CH4,10.0,kg/TJ,187.2022428,kg +4eb8d589-4a4c-3128-8807-f4b595402454,SESCO,II.1.1,San Juan,AR-J,annual,2022,bioetanol combustion consumption by to the public,18.72022428,TJ,N2O,0.6,kg/TJ,11.232134568,kg +263b2343-c6f0-3193-89cd-674a27aa289c,SESCO,II.1.1,San Luis,AR-D,annual,2022,bioetanol combustion consumption by to the public,48.808581479999994,TJ,CH4,10.0,kg/TJ,488.0858147999999,kg +970e52ca-0b26-3676-95d6-775c17e8fe3c,SESCO,II.1.1,San Luis,AR-D,annual,2022,bioetanol combustion consumption by to the public,48.808581479999994,TJ,N2O,0.6,kg/TJ,29.285148887999995,kg +8859c372-ff8b-3509-8b9d-bd2c3072ed73,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2022,bioetanol combustion consumption by to the public,78.45724476,TJ,CH4,10.0,kg/TJ,784.5724475999999,kg +6c485e65-fb60-3684-86f9-cc3b77ab6b4a,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2022,bioetanol combustion consumption by to the public,78.45724476,TJ,N2O,0.6,kg/TJ,47.074346856,kg +3de2267c-6c2c-3d4a-86a2-733a89370d44,SESCO,II.1.1,Santa Fe,AR-S,annual,2022,bioetanol combustion consumption by to the public,219.28200443999998,TJ,CH4,10.0,kg/TJ,2192.8200444,kg +c855a832-a4bb-374d-b664-188ae62ab61e,SESCO,II.1.1,Santa Fe,AR-S,annual,2022,bioetanol combustion consumption by to the public,219.28200443999998,TJ,N2O,0.6,kg/TJ,131.569202664,kg +90a7dc87-3b46-3621-b1b2-dc05378e7cb3,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2022,bioetanol combustion consumption by to the public,38.854115639999996,TJ,CH4,10.0,kg/TJ,388.5411564,kg +eb3b370a-dd56-3704-b189-9b86deba1853,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2022,bioetanol combustion consumption by to the public,38.854115639999996,TJ,N2O,0.6,kg/TJ,23.312469383999996,kg +321c7a7a-27c8-3a1e-8108-aa9c5f132a5c,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2022,bioetanol combustion consumption by to the public,15.338159999999998,TJ,CH4,10.0,kg/TJ,153.3816,kg +f16604f8-3a53-34b0-bd94-94036c46b4af,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2022,bioetanol combustion consumption by to the public,15.338159999999998,TJ,N2O,0.6,kg/TJ,9.202895999999999,kg +fed6f18c-ca6a-33f6-9901-801e13e7cb25,SESCO,II.1.1,Tucuman,AR-T,annual,2022,bioetanol combustion consumption by to the public,17.61076404,TJ,CH4,10.0,kg/TJ,176.10764039999998,kg +73a2fec1-f92c-3846-ab09-45926f4f3477,SESCO,II.1.1,Tucuman,AR-T,annual,2022,bioetanol combustion consumption by to the public,17.61076404,TJ,N2O,0.6,kg/TJ,10.566458423999999,kg +c83028d8-f4bc-3448-a563-9de08ca99da4,SESCO,II.1.1,Buenos Aires,AR-B,annual,2022,bioetanol combustion consumption by to the public,277.50821615999996,TJ,CH4,10.0,kg/TJ,2775.0821615999994,kg +6c09d33b-1b02-31a6-9bb1-fc525e992837,SESCO,II.1.1,Buenos Aires,AR-B,annual,2022,bioetanol combustion consumption by to the public,277.50821615999996,TJ,N2O,0.6,kg/TJ,166.50492969599998,kg +ec267efd-62f3-333a-a94c-e77d4568426b,SESCO,II.1.1,Capital Federal,AR-C,annual,2022,bioetanol combustion consumption by to the public,104.89000716,TJ,CH4,10.0,kg/TJ,1048.9000716,kg +931da467-614e-3a16-afd0-e3a8e759e100,SESCO,II.1.1,Capital Federal,AR-C,annual,2022,bioetanol combustion consumption by to the public,104.89000716,TJ,N2O,0.6,kg/TJ,62.934004296,kg +2a647f74-825a-3d99-b3dd-7c4d4f904522,SESCO,II.1.1,Catamarca,AR-K,annual,2022,bioetanol combustion consumption by to the public,11.81805228,TJ,CH4,10.0,kg/TJ,118.1805228,kg +3f0c4566-0582-3531-b94f-6c8660545e7c,SESCO,II.1.1,Catamarca,AR-K,annual,2022,bioetanol combustion consumption by to the public,11.81805228,TJ,N2O,0.6,kg/TJ,7.090831368,kg +6e5f6b70-14d9-3381-9448-4db75d396b74,SESCO,II.1.1,Chaco,AR-H,annual,2022,bioetanol combustion consumption by to the public,10.31235624,TJ,CH4,10.0,kg/TJ,103.1235624,kg +cc82b558-549d-3bb5-a04a-4438a6085639,SESCO,II.1.1,Chaco,AR-H,annual,2022,bioetanol combustion consumption by to the public,10.31235624,TJ,N2O,0.6,kg/TJ,6.187413744,kg +9e152b9a-ed8d-3270-a23f-c95f2d0d329f,SESCO,II.1.1,Chubut,AR-U,annual,2022,bioetanol combustion consumption by to the public,24.198503759999994,TJ,CH4,10.0,kg/TJ,241.98503759999994,kg +f314d410-15dd-3108-8d49-6a49f2ca5cd3,SESCO,II.1.1,Chubut,AR-U,annual,2022,bioetanol combustion consumption by to the public,24.198503759999994,TJ,N2O,0.6,kg/TJ,14.519102255999996,kg +d388cefe-282b-398c-bc48-8d4ae51f4d49,SESCO,II.1.1,Corrientes,AR-W,annual,2022,bioetanol combustion consumption by to the public,12.904505279999999,TJ,CH4,10.0,kg/TJ,129.04505279999998,kg +784a82d3-2524-3931-a68c-a0130517e036,SESCO,II.1.1,Corrientes,AR-W,annual,2022,bioetanol combustion consumption by to the public,12.904505279999999,TJ,N2O,0.6,kg/TJ,7.7427031679999985,kg +18da2cea-5120-3113-bddf-e6d0a9c9914d,SESCO,II.1.1,Córdoba,AR-X,annual,2022,bioetanol combustion consumption by to the public,58.57387668,TJ,CH4,10.0,kg/TJ,585.7387668,kg +23572f31-77cc-3175-898b-6a7ed1b43368,SESCO,II.1.1,Córdoba,AR-X,annual,2022,bioetanol combustion consumption by to the public,58.57387668,TJ,N2O,0.6,kg/TJ,35.144326008,kg +b1d8a42f-ba47-39ec-9130-31bf52fa7649,SESCO,II.1.1,Entre Rios,AR-E,annual,2022,bioetanol combustion consumption by to the public,28.375595999999998,TJ,CH4,10.0,kg/TJ,283.75595999999996,kg +f9455589-2e58-3305-b782-1605219ee73b,SESCO,II.1.1,Entre Rios,AR-E,annual,2022,bioetanol combustion consumption by to the public,28.375595999999998,TJ,N2O,0.6,kg/TJ,17.0253576,kg +49303b9c-5c70-32b1-9255-49bf17d0c4ca,SESCO,II.1.1,Formosa,AR-P,annual,2022,bioetanol combustion consumption by to the public,22.419277199999996,TJ,CH4,10.0,kg/TJ,224.19277199999996,kg +28a97be9-63d6-3926-9a44-47a136580e03,SESCO,II.1.1,Formosa,AR-P,annual,2022,bioetanol combustion consumption by to the public,22.419277199999996,TJ,N2O,0.6,kg/TJ,13.451566319999998,kg +51073536-5d22-3d71-8ea7-bd479c355184,SESCO,II.1.1,Jujuy,AR-Y,annual,2022,bioetanol combustion consumption by to the public,5.1612908399999995,TJ,CH4,10.0,kg/TJ,51.612908399999995,kg +8948f9cd-7934-34c7-b6b4-7be35f1167be,SESCO,II.1.1,Jujuy,AR-Y,annual,2022,bioetanol combustion consumption by to the public,5.1612908399999995,TJ,N2O,0.6,kg/TJ,3.0967745039999994,kg +f141d54b-6a44-3d96-b4b6-479794bca5a1,SESCO,II.1.1,La Pampa,AR-L,annual,2022,bioetanol combustion consumption by to the public,6.784579439999999,TJ,CH4,10.0,kg/TJ,67.84579439999999,kg +4afe22d2-5a5f-317d-b98a-2326f6471449,SESCO,II.1.1,La Pampa,AR-L,annual,2022,bioetanol combustion consumption by to the public,6.784579439999999,TJ,N2O,0.6,kg/TJ,4.070747663999999,kg +0ef56d41-9cd2-3585-b21e-69edf81935dc,SESCO,II.1.1,La Rioja,AR-F,annual,2022,bioetanol combustion consumption by to the public,3.770631,TJ,CH4,10.0,kg/TJ,37.70631,kg +75cc2337-544c-32f0-87fb-5455cebe24e4,SESCO,II.1.1,La Rioja,AR-F,annual,2022,bioetanol combustion consumption by to the public,3.770631,TJ,N2O,0.6,kg/TJ,2.2623786,kg +876eb107-af0b-3cbb-a9f5-5218f7a8397b,SESCO,II.1.1,Mendoza,AR-M,annual,2022,bioetanol combustion consumption by to the public,19.01676204,TJ,CH4,10.0,kg/TJ,190.1676204,kg +9ffa2772-c6f4-3a84-ba2c-5ef26fae7110,SESCO,II.1.1,Mendoza,AR-M,annual,2022,bioetanol combustion consumption by to the public,19.01676204,TJ,N2O,0.6,kg/TJ,11.410057223999999,kg +d961eb9a-8aca-3e4c-a1d4-97859c729b5f,SESCO,II.1.1,Misiones,AR-N,annual,2022,bioetanol combustion consumption by to the public,17.36535348,TJ,CH4,10.0,kg/TJ,173.6535348,kg +7a240bba-bc4f-3874-bec1-b31e34ae2f46,SESCO,II.1.1,Misiones,AR-N,annual,2022,bioetanol combustion consumption by to the public,17.36535348,TJ,N2O,0.6,kg/TJ,10.419212088,kg +f0754b57-3fc1-3b75-9ebd-08c8c6848ebc,SESCO,II.1.1,Neuquén,AR-Q,annual,2022,bioetanol combustion consumption by to the public,19.66352112,TJ,CH4,10.0,kg/TJ,196.6352112,kg +76603907-13e2-3fac-84a0-6025c235270e,SESCO,II.1.1,Neuquén,AR-Q,annual,2022,bioetanol combustion consumption by to the public,19.66352112,TJ,N2O,0.6,kg/TJ,11.798112671999998,kg +5f5fbca9-0f9d-32c8-baeb-fee09228996a,SESCO,II.1.1,Rio Negro,AR-R,annual,2022,bioetanol combustion consumption by to the public,27.61891344,TJ,CH4,10.0,kg/TJ,276.1891344,kg +5ac8dac6-97d3-395e-a58b-bffd29c31688,SESCO,II.1.1,Rio Negro,AR-R,annual,2022,bioetanol combustion consumption by to the public,27.61891344,TJ,N2O,0.6,kg/TJ,16.571348064,kg +6d300930-1cec-3463-9614-023be5c23f7e,SESCO,II.1.1,Salta,AR-A,annual,2022,bioetanol combustion consumption by to the public,3.6019112399999993,TJ,CH4,10.0,kg/TJ,36.01911239999999,kg +efbe8ce4-5aaa-35c8-b83b-a094f81a3773,SESCO,II.1.1,Salta,AR-A,annual,2022,bioetanol combustion consumption by to the public,3.6019112399999993,TJ,N2O,0.6,kg/TJ,2.1611467439999994,kg +f8d88a21-82d6-37bf-9a40-da095e330533,SESCO,II.1.1,San Juan,AR-J,annual,2022,bioetanol combustion consumption by to the public,3.8958926399999996,TJ,CH4,10.0,kg/TJ,38.958926399999996,kg +56a0f1fb-0c89-3a8d-97fc-488f14dfbb79,SESCO,II.1.1,San Juan,AR-J,annual,2022,bioetanol combustion consumption by to the public,3.8958926399999996,TJ,N2O,0.6,kg/TJ,2.337535584,kg +0be3c445-add5-3b06-a4ed-979282d14a62,SESCO,II.1.1,San Luis,AR-D,annual,2022,bioetanol combustion consumption by to the public,11.16618048,TJ,CH4,10.0,kg/TJ,111.6618048,kg +1b255692-8d1e-3a05-853e-981b9b7e6d6d,SESCO,II.1.1,San Luis,AR-D,annual,2022,bioetanol combustion consumption by to the public,11.16618048,TJ,N2O,0.6,kg/TJ,6.699708287999999,kg +f1279f7a-5bbd-3227-9b5c-8392863a03e2,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2022,bioetanol combustion consumption by to the public,11.28888576,TJ,CH4,10.0,kg/TJ,112.8888576,kg +52a56656-ef30-311a-b3ee-6e58269b5bb0,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2022,bioetanol combustion consumption by to the public,11.28888576,TJ,N2O,0.6,kg/TJ,6.773331455999999,kg +9c94c7f0-2e36-3a39-a313-2a3bbee05faf,SESCO,II.1.1,Santa Fe,AR-S,annual,2022,bioetanol combustion consumption by to the public,72.01521756,TJ,CH4,10.0,kg/TJ,720.1521756,kg +405d6f35-efdc-33c8-b7af-3f57e4bd3bf2,SESCO,II.1.1,Santa Fe,AR-S,annual,2022,bioetanol combustion consumption by to the public,72.01521756,TJ,N2O,0.6,kg/TJ,43.209130535999996,kg +eeb23108-b4bf-3fbd-9e79-558466f9f743,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2022,bioetanol combustion consumption by to the public,12.89172348,TJ,CH4,10.0,kg/TJ,128.9172348,kg +9c962583-89f7-3781-af63-24cf418fbf16,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2022,bioetanol combustion consumption by to the public,12.89172348,TJ,N2O,0.6,kg/TJ,7.735034087999999,kg +ff59bcc7-ce0c-3ed7-a05d-5a97bf7bc71e,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2022,bioetanol combustion consumption by to the public,3.6504820799999993,TJ,CH4,10.0,kg/TJ,36.50482079999999,kg +ddd6646a-8a01-36e8-aee4-8f65f626afca,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2022,bioetanol combustion consumption by to the public,3.6504820799999993,TJ,N2O,0.6,kg/TJ,2.1902892479999996,kg +b31b89f1-27b2-3b43-b9c7-90b411ca66a8,SESCO,II.1.1,Tucuman,AR-T,annual,2022,bioetanol combustion consumption by to the public,3.3974024399999996,TJ,CH4,10.0,kg/TJ,33.9740244,kg +d70fcc92-0eb8-3b2c-87e3-21c55d37f460,SESCO,II.1.1,Tucuman,AR-T,annual,2022,bioetanol combustion consumption by to the public,3.3974024399999996,TJ,N2O,0.6,kg/TJ,2.0384414639999995,kg +bf8b8aee-51b1-3bbe-aa4d-64ce57303688,SESCO,II.1.1,Buenos Aires,AR-B,annual,2022,bioetanol combustion consumption by freight transport,1.7255429999999998,TJ,CH4,10.0,kg/TJ,17.255429999999997,kg +34c00d77-198f-326f-a725-50d0793eeea4,SESCO,II.1.1,Buenos Aires,AR-B,annual,2022,bioetanol combustion consumption by freight transport,1.7255429999999998,TJ,N2O,0.6,kg/TJ,1.0353257999999999,kg +4978d8b6-e607-3ac8-94f3-8acb1eb806b5,SESCO,II.1.1,Capital Federal,AR-C,annual,2022,bioetanol combustion consumption by freight transport,1.8150156,TJ,CH4,10.0,kg/TJ,18.150156,kg +a1974c51-ad13-35c6-bd5a-f6299e367fd3,SESCO,II.1.1,Capital Federal,AR-C,annual,2022,bioetanol combustion consumption by freight transport,1.8150156,TJ,N2O,0.6,kg/TJ,1.08900936,kg +77a25d51-e7a1-358e-ace9-24d4a9b11370,SESCO,II.1.1,Chubut,AR-U,annual,2022,bioetanol combustion consumption by freight transport,0.0127818,TJ,CH4,10.0,kg/TJ,0.127818,kg +cf75d5ac-9b19-3a0d-9d6c-d0e62e2fe408,SESCO,II.1.1,Chubut,AR-U,annual,2022,bioetanol combustion consumption by freight transport,0.0127818,TJ,N2O,0.6,kg/TJ,0.007669079999999999,kg +48d8ab01-6272-33bb-b298-15155908c535,SESCO,II.1.1,Corrientes,AR-W,annual,2022,bioetanol combustion consumption by freight transport,0.005112719999999999,TJ,CH4,10.0,kg/TJ,0.0511272,kg +6bf31a4a-90f4-35e9-9a3e-a86f7f18c0ab,SESCO,II.1.1,Corrientes,AR-W,annual,2022,bioetanol combustion consumption by freight transport,0.005112719999999999,TJ,N2O,0.6,kg/TJ,0.0030676319999999994,kg +9bd4ce1b-9d63-3001-a517-2e9025cef5fb,SESCO,II.1.1,Córdoba,AR-X,annual,2022,bioetanol combustion consumption by freight transport,0.23774148,TJ,CH4,10.0,kg/TJ,2.3774148,kg +3ea65333-e28b-3c41-bb4b-f4ecf45aabb8,SESCO,II.1.1,Córdoba,AR-X,annual,2022,bioetanol combustion consumption by freight transport,0.23774148,TJ,N2O,0.6,kg/TJ,0.142644888,kg +1eb423fc-ce35-3cfe-a708-87516a3e35d1,SESCO,II.1.1,Entre Rios,AR-E,annual,2022,bioetanol combustion consumption by freight transport,0.007669079999999999,TJ,CH4,10.0,kg/TJ,0.07669079999999999,kg +55f53ef8-bc01-3e6b-affb-8b4da7c58e4b,SESCO,II.1.1,Entre Rios,AR-E,annual,2022,bioetanol combustion consumption by freight transport,0.007669079999999999,TJ,N2O,0.6,kg/TJ,0.004601447999999999,kg +da9be594-7f63-3ba2-9300-ef4939e087c6,SESCO,II.1.1,Mendoza,AR-M,annual,2022,bioetanol combustion consumption by freight transport,0.0127818,TJ,CH4,10.0,kg/TJ,0.127818,kg +5e7b8975-d3b2-3e2e-831f-339c0c14e34d,SESCO,II.1.1,Mendoza,AR-M,annual,2022,bioetanol combustion consumption by freight transport,0.0127818,TJ,N2O,0.6,kg/TJ,0.007669079999999999,kg +96ee9bb9-0357-353a-8993-a22f3d4b1f94,SESCO,II.1.1,Rio Negro,AR-R,annual,2022,bioetanol combustion consumption by freight transport,0.020450879999999998,TJ,CH4,10.0,kg/TJ,0.2045088,kg +3567dfa8-7cc5-3437-901d-9eaaa450d840,SESCO,II.1.1,Rio Negro,AR-R,annual,2022,bioetanol combustion consumption by freight transport,0.020450879999999998,TJ,N2O,0.6,kg/TJ,0.012270527999999998,kg +f6e88427-782c-329e-bbc3-74864aecd4e2,SESCO,II.1.1,Santa Fe,AR-S,annual,2022,bioetanol combustion consumption by freight transport,0.5981882399999999,TJ,CH4,10.0,kg/TJ,5.981882399999999,kg +edf8e005-5d12-3ee6-9d2e-0aa4f5a97b1f,SESCO,II.1.1,Santa Fe,AR-S,annual,2022,bioetanol combustion consumption by freight transport,0.5981882399999999,TJ,N2O,0.6,kg/TJ,0.35891294399999996,kg +4e9983f9-1fc0-353d-9e08-cb4377baad9e,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2022,bioetanol combustion consumption by freight transport,0.0025563599999999997,TJ,CH4,10.0,kg/TJ,0.0255636,kg +9b33756f-94e1-3203-91ed-bf636d919669,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2022,bioetanol combustion consumption by freight transport,0.0025563599999999997,TJ,N2O,0.6,kg/TJ,0.0015338159999999997,kg +8228249a-4269-3768-a2ee-3073280611f4,SESCO,II.1.1,Buenos Aires,AR-B,annual,2022,bioetanol combustion consumption by freight transport,1.2935181599999999,TJ,CH4,10.0,kg/TJ,12.935181599999998,kg +02ed7881-228c-3861-b11c-4c569b816882,SESCO,II.1.1,Buenos Aires,AR-B,annual,2022,bioetanol combustion consumption by freight transport,1.2935181599999999,TJ,N2O,0.6,kg/TJ,0.7761108959999999,kg +d09b6c98-7336-3034-b5d1-10071854f3d9,SESCO,II.1.1,Capital Federal,AR-C,annual,2022,bioetanol combustion consumption by freight transport,1.3037435999999998,TJ,CH4,10.0,kg/TJ,13.037435999999998,kg +6ddc8cd2-6a84-3b8b-836f-fbcc4bdf0fb7,SESCO,II.1.1,Capital Federal,AR-C,annual,2022,bioetanol combustion consumption by freight transport,1.3037435999999998,TJ,N2O,0.6,kg/TJ,0.7822461599999998,kg +361dab53-ee89-3132-b859-fc1d36b9eb29,SESCO,II.1.1,Córdoba,AR-X,annual,2022,bioetanol combustion consumption by freight transport,0.10992348,TJ,CH4,10.0,kg/TJ,1.0992348,kg +7dfc39f5-f571-30a9-ac57-c0262b351bb4,SESCO,II.1.1,Córdoba,AR-X,annual,2022,bioetanol combustion consumption by freight transport,0.10992348,TJ,N2O,0.6,kg/TJ,0.065954088,kg +28d09fd5-0003-33c5-b770-bf45d687a3dd,SESCO,II.1.1,Entre Rios,AR-E,annual,2022,bioetanol combustion consumption by freight transport,0.035789039999999994,TJ,CH4,10.0,kg/TJ,0.35789039999999994,kg +a39b00bf-a3dd-3cdd-8c1e-bea2df669df1,SESCO,II.1.1,Entre Rios,AR-E,annual,2022,bioetanol combustion consumption by freight transport,0.035789039999999994,TJ,N2O,0.6,kg/TJ,0.021473423999999994,kg +b5a18393-5b29-3368-95f7-35d32aa2edac,SESCO,II.1.1,La Rioja,AR-F,annual,2022,bioetanol combustion consumption by freight transport,0.017894519999999997,TJ,CH4,10.0,kg/TJ,0.17894519999999997,kg +27d432e4-9a88-3279-9678-af7de078e13c,SESCO,II.1.1,La Rioja,AR-F,annual,2022,bioetanol combustion consumption by freight transport,0.017894519999999997,TJ,N2O,0.6,kg/TJ,0.010736711999999997,kg +68589ead-89c2-39f1-8b6a-e34c9dfccb60,SESCO,II.1.1,Mendoza,AR-M,annual,2022,bioetanol combustion consumption by freight transport,0.007669079999999999,TJ,CH4,10.0,kg/TJ,0.07669079999999999,kg +9c6659a2-6789-3948-97dc-751545ec8b04,SESCO,II.1.1,Mendoza,AR-M,annual,2022,bioetanol combustion consumption by freight transport,0.007669079999999999,TJ,N2O,0.6,kg/TJ,0.004601447999999999,kg +b7b4df64-968e-397e-b389-d96250dbc240,SESCO,II.1.1,Rio Negro,AR-R,annual,2022,bioetanol combustion consumption by freight transport,0.0255636,TJ,CH4,10.0,kg/TJ,0.255636,kg +c0b703ed-516c-3e5f-bd5d-a2c073a5bda5,SESCO,II.1.1,Rio Negro,AR-R,annual,2022,bioetanol combustion consumption by freight transport,0.0255636,TJ,N2O,0.6,kg/TJ,0.015338159999999998,kg +2922b56e-a032-3123-b8cc-3b2a281b940b,SESCO,II.1.1,San Luis,AR-D,annual,2022,bioetanol combustion consumption by freight transport,0.0025563599999999997,TJ,CH4,10.0,kg/TJ,0.0255636,kg +bda46b44-0189-355a-b441-4896cf20c72a,SESCO,II.1.1,San Luis,AR-D,annual,2022,bioetanol combustion consumption by freight transport,0.0025563599999999997,TJ,N2O,0.6,kg/TJ,0.0015338159999999997,kg +fb43df20-5b82-3cde-9daf-f1737896f472,SESCO,II.1.1,Santa Fe,AR-S,annual,2022,bioetanol combustion consumption by freight transport,0.56751192,TJ,CH4,10.0,kg/TJ,5.675119199999999,kg +5692decf-4189-3c9c-91fd-b09b1393789a,SESCO,II.1.1,Santa Fe,AR-S,annual,2022,bioetanol combustion consumption by freight transport,0.56751192,TJ,N2O,0.6,kg/TJ,0.340507152,kg +4e9983f9-1fc0-353d-9e08-cb4377baad9e,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2022,bioetanol combustion consumption by freight transport,0.0025563599999999997,TJ,CH4,10.0,kg/TJ,0.0255636,kg +9b33756f-94e1-3203-91ed-bf636d919669,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2022,bioetanol combustion consumption by freight transport,0.0025563599999999997,TJ,N2O,0.6,kg/TJ,0.0015338159999999997,kg +d3adc838-1eee-3803-a47c-8aa552c81a11,SESCO,II.1.1,Buenos Aires,AR-B,annual,2022,bioetanol combustion consumption by public passenger transport,0.010225439999999999,TJ,CH4,10.0,kg/TJ,0.1022544,kg +839a5344-1900-32c3-b23f-8f83aeafb00c,SESCO,II.1.1,Buenos Aires,AR-B,annual,2022,bioetanol combustion consumption by public passenger transport,0.010225439999999999,TJ,N2O,0.6,kg/TJ,0.006135263999999999,kg +de5351ac-721d-34a9-8db9-99a28da76b08,SESCO,II.1.1,Capital Federal,AR-C,annual,2022,bioetanol combustion consumption by public passenger transport,0.007669079999999999,TJ,CH4,10.0,kg/TJ,0.07669079999999999,kg +f822c255-7914-3ace-abf6-a82f12c44f81,SESCO,II.1.1,Capital Federal,AR-C,annual,2022,bioetanol combustion consumption by public passenger transport,0.007669079999999999,TJ,N2O,0.6,kg/TJ,0.004601447999999999,kg +d91600d7-2828-3f1a-9d8d-ccf15b3e631b,SESCO,II.1.1,Entre Rios,AR-E,annual,2022,bioetanol combustion consumption by public passenger transport,0.02300724,TJ,CH4,10.0,kg/TJ,0.2300724,kg +c9c9c5b7-84b3-338d-ae0a-3067ee69606e,SESCO,II.1.1,Entre Rios,AR-E,annual,2022,bioetanol combustion consumption by public passenger transport,0.02300724,TJ,N2O,0.6,kg/TJ,0.013804344000000001,kg +9f9885bf-265d-3105-bd01-fe04c0e64995,SESCO,II.1.1,Santa Fe,AR-S,annual,2022,bioetanol combustion consumption by public passenger transport,0.0255636,TJ,CH4,10.0,kg/TJ,0.255636,kg +edcc2f73-f67e-3ca5-aa71-ce8af8b57f44,SESCO,II.1.1,Santa Fe,AR-S,annual,2022,bioetanol combustion consumption by public passenger transport,0.0255636,TJ,N2O,0.6,kg/TJ,0.015338159999999998,kg +d3adc838-1eee-3803-a47c-8aa552c81a11,SESCO,II.1.1,Buenos Aires,AR-B,annual,2022,bioetanol combustion consumption by public passenger transport,0.010225439999999999,TJ,CH4,10.0,kg/TJ,0.1022544,kg +839a5344-1900-32c3-b23f-8f83aeafb00c,SESCO,II.1.1,Buenos Aires,AR-B,annual,2022,bioetanol combustion consumption by public passenger transport,0.010225439999999999,TJ,N2O,0.6,kg/TJ,0.006135263999999999,kg +a827d23c-30c2-392a-808d-397cd55f2c40,SESCO,II.1.1,Capital Federal,AR-C,annual,2022,bioetanol combustion consumption by public passenger transport,0.05879627999999999,TJ,CH4,10.0,kg/TJ,0.5879627999999999,kg +cc48c8e0-d322-3ed4-b4a6-e227b80d9a65,SESCO,II.1.1,Capital Federal,AR-C,annual,2022,bioetanol combustion consumption by public passenger transport,0.05879627999999999,TJ,N2O,0.6,kg/TJ,0.035277767999999994,kg +57d873a8-d0af-3ebb-8b0c-0f3f8d9c3089,SESCO,II.1.1,Córdoba,AR-X,annual,2022,bioetanol combustion consumption by public passenger transport,0.005112719999999999,TJ,CH4,10.0,kg/TJ,0.0511272,kg +f9528dae-7f41-3885-b0f9-b04840e35eaa,SESCO,II.1.1,Córdoba,AR-X,annual,2022,bioetanol combustion consumption by public passenger transport,0.005112719999999999,TJ,N2O,0.6,kg/TJ,0.0030676319999999994,kg +4236db38-10d4-3728-941c-067a5620757b,SESCO,II.1.1,Entre Rios,AR-E,annual,2022,bioetanol combustion consumption by public passenger transport,0.043458119999999996,TJ,CH4,10.0,kg/TJ,0.43458119999999995,kg +f89416b5-3eaf-33b0-bb4a-957f5617ba79,SESCO,II.1.1,Entre Rios,AR-E,annual,2022,bioetanol combustion consumption by public passenger transport,0.043458119999999996,TJ,N2O,0.6,kg/TJ,0.026074871999999995,kg +e1de8c31-4627-3daa-b643-904fa9fbd723,SESCO,II.1.1,Catamarca,AR-K,annual,2022,bioetanol combustion consumption by to the public,8.288102574,TJ,CH4,10.0,kg/TJ,82.88102574,kg +25078f61-619c-3639-b5b3-390bce1343eb,SESCO,II.1.1,Catamarca,AR-K,annual,2022,bioetanol combustion consumption by to the public,8.288102574,TJ,N2O,0.6,kg/TJ,4.9728615444,kg +f877eb9b-4f95-3acc-8b56-3ef78c740e73,SESCO,II.1.1,Chaco,AR-H,annual,2022,bioetanol combustion consumption by to the public,6.5363313203999995,TJ,CH4,10.0,kg/TJ,65.363313204,kg +a3c5c8f8-d8ff-30f1-a85e-d76e07ef1886,SESCO,II.1.1,Chaco,AR-H,annual,2022,bioetanol combustion consumption by to the public,6.5363313203999995,TJ,N2O,0.6,kg/TJ,3.9217987922399997,kg +e5ad3c26-943f-3ea6-a7e7-ac0bdf45fb04,SESCO,II.1.1,Jujuy,AR-Y,annual,2022,bioetanol combustion consumption by to the public,28.983063826800002,TJ,CH4,10.0,kg/TJ,289.83063826800003,kg +9ba97aab-2513-3627-91dc-70077d40f434,SESCO,II.1.1,Jujuy,AR-Y,annual,2022,bioetanol combustion consumption by to the public,28.983063826800002,TJ,N2O,0.6,kg/TJ,17.38983829608,kg +701b7a4b-5f0e-359e-9694-bba429a10809,SESCO,II.1.1,La Rioja,AR-F,annual,2022,bioetanol combustion consumption by to the public,34.886159211599995,TJ,CH4,10.0,kg/TJ,348.86159211599994,kg +3e4161c8-2e35-36ca-816e-737767053958,SESCO,II.1.1,La Rioja,AR-F,annual,2022,bioetanol combustion consumption by to the public,34.886159211599995,TJ,N2O,0.6,kg/TJ,20.931695526959995,kg +3c986197-9407-3cd3-aac7-31040d1ee76a,SESCO,II.1.1,Salta,AR-A,annual,2022,bioetanol combustion consumption by to the public,89.2185489432,TJ,CH4,10.0,kg/TJ,892.185489432,kg +d1c733d5-31a8-3e12-a85e-8a7b0dfc2188,SESCO,II.1.1,Salta,AR-A,annual,2022,bioetanol combustion consumption by to the public,89.2185489432,TJ,N2O,0.6,kg/TJ,53.53112936592,kg +71fa5d90-8185-3334-8806-8d2232a7beef,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2022,bioetanol combustion consumption by to the public,23.890615761599996,TJ,CH4,10.0,kg/TJ,238.90615761599997,kg +636ffedf-7e00-3ad1-8088-647e017348bc,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2022,bioetanol combustion consumption by to the public,23.890615761599996,TJ,N2O,0.6,kg/TJ,14.334369456959998,kg +d319cf88-cf60-3049-8d17-a23d0302b604,SESCO,II.1.1,Tucuman,AR-T,annual,2022,bioetanol combustion consumption by to the public,155.65821752519997,TJ,CH4,10.0,kg/TJ,1556.5821752519996,kg +b80a367f-2eb9-34c1-9267-084111e74381,SESCO,II.1.1,Tucuman,AR-T,annual,2022,bioetanol combustion consumption by to the public,155.65821752519997,TJ,N2O,0.6,kg/TJ,93.39493051511998,kg +e3f4848b-2140-3bea-b818-cc35b18b954e,SESCO,II.1.1,Catamarca,AR-K,annual,2022,bioetanol combustion consumption by to the public,1.1375546364,TJ,CH4,10.0,kg/TJ,11.375546364,kg +01bb8db0-e39d-3759-bda8-ef9e6defc399,SESCO,II.1.1,Catamarca,AR-K,annual,2022,bioetanol combustion consumption by to the public,1.1375546364,TJ,N2O,0.6,kg/TJ,0.68253278184,kg +5de1c5be-01ed-3c31-be6e-529dfa534b34,SESCO,II.1.1,Chaco,AR-H,annual,2022,bioetanol combustion consumption by to the public,0.255636,TJ,CH4,10.0,kg/TJ,2.5563599999999997,kg +946c3e84-3751-39b1-bdb0-6d1b1a376c40,SESCO,II.1.1,Chaco,AR-H,annual,2022,bioetanol combustion consumption by to the public,0.255636,TJ,N2O,0.6,kg/TJ,0.15338159999999998,kg +1c13224d-26b7-3cb0-9e17-4ce97f5b5f26,SESCO,II.1.1,Jujuy,AR-Y,annual,2022,bioetanol combustion consumption by to the public,1.9428847271999998,TJ,CH4,10.0,kg/TJ,19.428847272,kg +aa226020-b03b-36a8-809e-5c3208c7cfe8,SESCO,II.1.1,Jujuy,AR-Y,annual,2022,bioetanol combustion consumption by to the public,1.9428847271999998,TJ,N2O,0.6,kg/TJ,1.1657308363199999,kg +bc806051-eb81-3d24-944d-945180c81d8e,SESCO,II.1.1,La Rioja,AR-F,annual,2022,bioetanol combustion consumption by to the public,6.196437694799998,TJ,CH4,10.0,kg/TJ,61.96437694799998,kg +1a68c3d7-2052-3991-9242-cab0a96e502f,SESCO,II.1.1,La Rioja,AR-F,annual,2022,bioetanol combustion consumption by to the public,6.196437694799998,TJ,N2O,0.6,kg/TJ,3.717862616879999,kg +7182fbbd-6b58-301d-b8ae-7ebae7a742da,SESCO,II.1.1,Salta,AR-A,annual,2022,bioetanol combustion consumption by to the public,7.894167498000001,TJ,CH4,10.0,kg/TJ,78.94167498,kg +732fb766-f02d-39cd-876c-3d7027aa90f0,SESCO,II.1.1,Salta,AR-A,annual,2022,bioetanol combustion consumption by to the public,7.894167498000001,TJ,N2O,0.6,kg/TJ,4.7365004988,kg +5971b131-482f-30c9-ba35-bb1922de3419,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2022,bioetanol combustion consumption by to the public,3.356628498,TJ,CH4,10.0,kg/TJ,33.56628498,kg +cd4a130d-f318-3a6e-85d0-07c3f2429246,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2022,bioetanol combustion consumption by to the public,3.356628498,TJ,N2O,0.6,kg/TJ,2.0139770988,kg +95c5b1f1-763b-38c9-917e-2a6396587a4f,SESCO,II.1.1,Tucuman,AR-T,annual,2022,bioetanol combustion consumption by to the public,16.8123616848,TJ,CH4,10.0,kg/TJ,168.12361684799998,kg +7600ceee-7d83-3661-a4c7-887b547c08cb,SESCO,II.1.1,Tucuman,AR-T,annual,2022,bioetanol combustion consumption by to the public,16.8123616848,TJ,N2O,0.6,kg/TJ,10.08741701088,kg +5f3a703e-2a41-3b03-909c-4bce0b7634f5,SESCO,II.5.1,Entre Rios,AR-E,annual,2022,bioetanol combustion consumption by agriculture machines,0.14826888,TJ,CH4,10.0,kg/TJ,1.4826888,kg +e858175f-77b1-38da-be14-65f4afdc5867,SESCO,II.5.1,Entre Rios,AR-E,annual,2022,bioetanol combustion consumption by agriculture machines,0.14826888,TJ,N2O,0.6,kg/TJ,0.08896132799999999,kg +097ed94c-ff0e-3eef-ab42-724e9273e0dd,SESCO,II.5.1,Entre Rios,AR-E,annual,2022,bioetanol combustion consumption by agriculture machines,0.0127818,TJ,CH4,10.0,kg/TJ,0.127818,kg +b285bb1d-0316-3725-87b2-dd85fa01dbbb,SESCO,II.5.1,Entre Rios,AR-E,annual,2022,bioetanol combustion consumption by agriculture machines,0.0127818,TJ,N2O,0.6,kg/TJ,0.007669079999999999,kg +8f1ba521-db6f-3bb9-b3a7-bbc87ed1dc26,SESCO,II.5.1,Santa Fe,AR-S,annual,2022,bioetanol combustion consumption by agriculture machines,0.2428542,TJ,CH4,10.0,kg/TJ,2.4285419999999998,kg +b9e8d946-d831-38fe-98d2-2dfd35a11394,SESCO,II.5.1,Santa Fe,AR-S,annual,2022,bioetanol combustion consumption by agriculture machines,0.2428542,TJ,N2O,0.6,kg/TJ,0.14571251999999998,kg +ea0c610c-79b1-3cf8-a102-387ed20e5ef4,SESCO,II.5.1,Santa Fe,AR-S,annual,2022,bioetanol combustion consumption by agriculture machines,0.10992348,TJ,CH4,10.0,kg/TJ,1.0992348,kg +f1ce8b51-c064-339f-a2d8-f8175c7631b0,SESCO,II.5.1,Santa Fe,AR-S,annual,2022,bioetanol combustion consumption by agriculture machines,0.10992348,TJ,N2O,0.6,kg/TJ,0.065954088,kg +3bd659f9-ca97-37ef-baee-6efeea7976b3,SESCO,II.5.1,Tucuman,AR-T,annual,2022,bioetanol combustion consumption by agriculture machines,0.030676319999999997,TJ,CH4,10.0,kg/TJ,0.30676319999999996,kg +bea3418d-d6ae-3698-8579-91df148ae3d8,SESCO,II.5.1,Tucuman,AR-T,annual,2022,bioetanol combustion consumption by agriculture machines,0.030676319999999997,TJ,N2O,0.6,kg/TJ,0.018405791999999997,kg +210e0a35-df1d-3779-9888-9b96f1cc6235,SESCO,II.1.1,Buenos Aires,AR-B,annual,2022,bioetanol combustion consumption by to the public,1584.9227491199997,TJ,CH4,10.0,kg/TJ,15849.227491199998,kg +00daa4ce-f395-376f-9145-2f2ec2de523e,SESCO,II.1.1,Buenos Aires,AR-B,annual,2022,bioetanol combustion consumption by to the public,1584.9227491199997,TJ,N2O,0.6,kg/TJ,950.9536494719998,kg +4a72b1c1-317d-3b48-b034-8abd0a01ab83,SESCO,II.1.1,Capital Federal,AR-C,annual,2022,bioetanol combustion consumption by to the public,417.84726744,TJ,CH4,10.0,kg/TJ,4178.4726744,kg +ee8b1c70-c0bc-3ba4-af1c-813e1d5f1221,SESCO,II.1.1,Capital Federal,AR-C,annual,2022,bioetanol combustion consumption by to the public,417.84726744,TJ,N2O,0.6,kg/TJ,250.70836046399998,kg +73fce036-23c5-3c30-ad55-bca26a089f07,SESCO,II.1.1,Catamarca,AR-K,annual,2022,bioetanol combustion consumption by to the public,10.75460652,TJ,CH4,10.0,kg/TJ,107.54606519999999,kg +d772879f-9eb3-395f-919a-ee1401a87b1f,SESCO,II.1.1,Catamarca,AR-K,annual,2022,bioetanol combustion consumption by to the public,10.75460652,TJ,N2O,0.6,kg/TJ,6.452763911999999,kg +150e8016-d366-3778-973b-1dcba3c7a2cd,SESCO,II.1.1,Chaco,AR-H,annual,2022,bioetanol combustion consumption by to the public,95.15283191999998,TJ,CH4,10.0,kg/TJ,951.5283191999998,kg +fd88978f-d3e5-3d4e-9985-2e16c4afe9f4,SESCO,II.1.1,Chaco,AR-H,annual,2022,bioetanol combustion consumption by to the public,95.15283191999998,TJ,N2O,0.6,kg/TJ,57.09169915199999,kg +6139f7e5-3994-306f-92d7-1071a3477d52,SESCO,II.1.1,Corrientes,AR-W,annual,2022,bioetanol combustion consumption by to the public,105.16609403999998,TJ,CH4,10.0,kg/TJ,1051.6609403999998,kg +813695a5-88b9-3bbf-a589-51cf93ecfb42,SESCO,II.1.1,Corrientes,AR-W,annual,2022,bioetanol combustion consumption by to the public,105.16609403999998,TJ,N2O,0.6,kg/TJ,63.09965642399998,kg +1933929b-0fe5-3bac-962d-2e05d756e355,SESCO,II.1.1,Córdoba,AR-X,annual,2022,bioetanol combustion consumption by to the public,455.00651639999995,TJ,CH4,10.0,kg/TJ,4550.065164,kg +3259c365-5ab5-3825-b10f-c565993135ab,SESCO,II.1.1,Córdoba,AR-X,annual,2022,bioetanol combustion consumption by to the public,455.00651639999995,TJ,N2O,0.6,kg/TJ,273.00390983999995,kg +6e74c627-309b-3465-9a1d-d60dd4600462,SESCO,II.1.1,Entre Rios,AR-E,annual,2022,bioetanol combustion consumption by to the public,150.5312586,TJ,CH4,10.0,kg/TJ,1505.312586,kg +c88ead1e-9bbd-3ec9-a4a1-d8aac026d731,SESCO,II.1.1,Entre Rios,AR-E,annual,2022,bioetanol combustion consumption by to the public,150.5312586,TJ,N2O,0.6,kg/TJ,90.31875516,kg +c6f19392-7f70-3722-a3f7-cf2e161296c0,SESCO,II.1.1,Formosa,AR-P,annual,2022,bioetanol combustion consumption by to the public,51.132312719999994,TJ,CH4,10.0,kg/TJ,511.32312719999993,kg +e5c32743-ab73-365b-a9da-683e1a598471,SESCO,II.1.1,Formosa,AR-P,annual,2022,bioetanol combustion consumption by to the public,51.132312719999994,TJ,N2O,0.6,kg/TJ,30.679387631999994,kg +4e2b85de-e38d-3dba-82ff-565c9ef28566,SESCO,II.1.1,Jujuy,AR-Y,annual,2022,bioetanol combustion consumption by to the public,32.458102919999995,TJ,CH4,10.0,kg/TJ,324.58102919999993,kg +c7f07697-fe83-3c2b-bb9d-59de701b9809,SESCO,II.1.1,Jujuy,AR-Y,annual,2022,bioetanol combustion consumption by to the public,32.458102919999995,TJ,N2O,0.6,kg/TJ,19.474861751999995,kg +bf17080e-80f3-32c8-aa73-6caa7563420d,SESCO,II.1.1,La Pampa,AR-L,annual,2022,bioetanol combustion consumption by to the public,35.92452708,TJ,CH4,10.0,kg/TJ,359.24527079999996,kg +a2713099-40e1-35c0-a0d4-2d66a45117c7,SESCO,II.1.1,La Pampa,AR-L,annual,2022,bioetanol combustion consumption by to the public,35.92452708,TJ,N2O,0.6,kg/TJ,21.554716248,kg +a67a5ea6-499e-3a4f-9894-9a481e6d9ea2,SESCO,II.1.1,La Rioja,AR-F,annual,2022,bioetanol combustion consumption by to the public,26.455769639999996,TJ,CH4,10.0,kg/TJ,264.55769639999994,kg +1994f6b5-9534-3a10-81a7-376795a44d69,SESCO,II.1.1,La Rioja,AR-F,annual,2022,bioetanol combustion consumption by to the public,26.455769639999996,TJ,N2O,0.6,kg/TJ,15.873461783999996,kg +c2fbe091-e9bb-35e5-a2fa-93116c314ea8,SESCO,II.1.1,Mendoza,AR-M,annual,2022,bioetanol combustion consumption by to the public,150.35231339999999,TJ,CH4,10.0,kg/TJ,1503.5231339999998,kg +07789b6f-2cdc-3a93-af1b-f4cc97783352,SESCO,II.1.1,Mendoza,AR-M,annual,2022,bioetanol combustion consumption by to the public,150.35231339999999,TJ,N2O,0.6,kg/TJ,90.21138803999999,kg +3ba6d072-fdae-3dc4-973e-f4a710e5adc5,SESCO,II.1.1,Misiones,AR-N,annual,2022,bioetanol combustion consumption by to the public,192.42744263999998,TJ,CH4,10.0,kg/TJ,1924.2744263999998,kg +17be2a6d-8f3f-3aa0-bedb-0f092ba14dfe,SESCO,II.1.1,Misiones,AR-N,annual,2022,bioetanol combustion consumption by to the public,192.42744263999998,TJ,N2O,0.6,kg/TJ,115.45646558399999,kg +cae90fee-8900-30d1-b122-c6c9b61add71,SESCO,II.1.1,Neuquén,AR-Q,annual,2022,bioetanol combustion consumption by to the public,58.80394907999999,TJ,CH4,10.0,kg/TJ,588.0394907999998,kg +d156bbfa-c4e4-3bb8-8070-cd6b8a081110,SESCO,II.1.1,Neuquén,AR-Q,annual,2022,bioetanol combustion consumption by to the public,58.80394907999999,TJ,N2O,0.6,kg/TJ,35.28236944799999,kg +38d5594b-85b0-3b48-9ef7-e63df2f51e09,SESCO,II.1.1,Rio Negro,AR-R,annual,2022,bioetanol combustion consumption by to the public,30.620080079999997,TJ,CH4,10.0,kg/TJ,306.20080079999997,kg +27b95768-1f47-3690-8447-9a7bc69d7587,SESCO,II.1.1,Rio Negro,AR-R,annual,2022,bioetanol combustion consumption by to the public,30.620080079999997,TJ,N2O,0.6,kg/TJ,18.372048047999996,kg +b3c324f9-bd84-36a4-be47-7c16d37f35c1,SESCO,II.1.1,Salta,AR-A,annual,2022,bioetanol combustion consumption by to the public,29.451823559999998,TJ,CH4,10.0,kg/TJ,294.51823559999997,kg +04b391ea-47b7-3f42-999b-acdc54dfbb26,SESCO,II.1.1,Salta,AR-A,annual,2022,bioetanol combustion consumption by to the public,29.451823559999998,TJ,N2O,0.6,kg/TJ,17.671094135999997,kg +a7257049-bfc4-38e9-aa56-4249d6687f21,SESCO,II.1.1,San Juan,AR-J,annual,2022,bioetanol combustion consumption by to the public,32.557800959999994,TJ,CH4,10.0,kg/TJ,325.5780096,kg +233c0291-c739-3348-bffc-6b6b09222ae3,SESCO,II.1.1,San Juan,AR-J,annual,2022,bioetanol combustion consumption by to the public,32.557800959999994,TJ,N2O,0.6,kg/TJ,19.534680575999996,kg +8f0ba767-99a2-3dbe-8e52-9075de0d1bce,SESCO,II.1.1,San Luis,AR-D,annual,2022,bioetanol combustion consumption by to the public,32.87990232,TJ,CH4,10.0,kg/TJ,328.79902319999997,kg +2b6d0f6d-fdcb-3c02-9f9b-77a4dc060ada,SESCO,II.1.1,San Luis,AR-D,annual,2022,bioetanol combustion consumption by to the public,32.87990232,TJ,N2O,0.6,kg/TJ,19.727941391999998,kg +81088fcb-69cb-3f49-bc86-5b66c54f3046,SESCO,II.1.1,Santa Fe,AR-S,annual,2022,bioetanol combustion consumption by to the public,318.43553976,TJ,CH4,10.0,kg/TJ,3184.3553976,kg +cd6a7f65-f6ce-3f71-887a-b8093b4dd7fb,SESCO,II.1.1,Santa Fe,AR-S,annual,2022,bioetanol combustion consumption by to the public,318.43553976,TJ,N2O,0.6,kg/TJ,191.06132385599997,kg +9cbdb989-2d51-3f39-a192-5b2cadc32a6a,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2022,bioetanol combustion consumption by to the public,58.108619159999996,TJ,CH4,10.0,kg/TJ,581.0861916,kg +5b6d59d2-9162-3ddb-bc82-a525a1563b49,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2022,bioetanol combustion consumption by to the public,58.108619159999996,TJ,N2O,0.6,kg/TJ,34.865171495999995,kg +cc540a7b-ca19-38c6-9523-01e8d6a8bf77,SESCO,II.1.1,Tucuman,AR-T,annual,2022,bioetanol combustion consumption by to the public,108.75011076,TJ,CH4,10.0,kg/TJ,1087.5011076,kg +b68b1a69-fd60-302a-b355-7b57bba60fbf,SESCO,II.1.1,Tucuman,AR-T,annual,2022,bioetanol combustion consumption by to the public,108.75011076,TJ,N2O,0.6,kg/TJ,65.250066456,kg +4d2c2afe-0425-3d38-bf55-1af75b6fd717,SESCO,II.1.1,Buenos Aires,AR-B,annual,2022,bioetanol combustion consumption by to the public,784.6644765599999,TJ,CH4,10.0,kg/TJ,7846.644765599999,kg +a07a0ae2-3582-3151-adfc-c9a2ed84ce83,SESCO,II.1.1,Buenos Aires,AR-B,annual,2022,bioetanol combustion consumption by to the public,784.6644765599999,TJ,N2O,0.6,kg/TJ,470.7986859359999,kg +da2e634e-f7b2-3fec-b238-d5ba91e8d49b,SESCO,II.1.1,Capital Federal,AR-C,annual,2022,bioetanol combustion consumption by to the public,307.17988668,TJ,CH4,10.0,kg/TJ,3071.7988668,kg +91473124-336f-388f-b7b6-1945c832446e,SESCO,II.1.1,Capital Federal,AR-C,annual,2022,bioetanol combustion consumption by to the public,307.17988668,TJ,N2O,0.6,kg/TJ,184.307932008,kg +a474a019-4013-3465-a73a-690af7fa10bb,SESCO,II.1.1,Catamarca,AR-K,annual,2022,bioetanol combustion consumption by to the public,4.02371064,TJ,CH4,10.0,kg/TJ,40.2371064,kg +670c1a3f-d5bc-3abb-8424-3e46381577f3,SESCO,II.1.1,Catamarca,AR-K,annual,2022,bioetanol combustion consumption by to the public,4.02371064,TJ,N2O,0.6,kg/TJ,2.414226384,kg +c05cee72-aacb-3518-b906-aec4f357b8e8,SESCO,II.1.1,Chaco,AR-H,annual,2022,bioetanol combustion consumption by to the public,28.275897959999998,TJ,CH4,10.0,kg/TJ,282.7589796,kg +aed0be25-ebd9-3534-87fd-02cd9b509d51,SESCO,II.1.1,Chaco,AR-H,annual,2022,bioetanol combustion consumption by to the public,28.275897959999998,TJ,N2O,0.6,kg/TJ,16.965538776,kg +7493ea71-bfbb-3398-8cc7-f2cfea672c97,SESCO,II.1.1,Corrientes,AR-W,annual,2022,bioetanol combustion consumption by to the public,34.306351199999995,TJ,CH4,10.0,kg/TJ,343.06351199999995,kg +78cfa121-ae9c-354c-865a-7d7438e1a0dc,SESCO,II.1.1,Corrientes,AR-W,annual,2022,bioetanol combustion consumption by to the public,34.306351199999995,TJ,N2O,0.6,kg/TJ,20.583810719999995,kg +099ce4c4-1b77-3393-a638-727a34687717,SESCO,II.1.1,Córdoba,AR-X,annual,2022,bioetanol combustion consumption by to the public,171.49085424,TJ,CH4,10.0,kg/TJ,1714.9085424,kg +a28320aa-482d-327f-a44b-d9df5b6bf2d6,SESCO,II.1.1,Córdoba,AR-X,annual,2022,bioetanol combustion consumption by to the public,171.49085424,TJ,N2O,0.6,kg/TJ,102.894512544,kg +ef1d1dbb-b4cf-3903-863f-9d96e2310dad,SESCO,II.1.1,Entre Rios,AR-E,annual,2022,bioetanol combustion consumption by to the public,50.99171292,TJ,CH4,10.0,kg/TJ,509.9171292,kg +62a20ac1-aa09-3139-8efe-e88740f34971,SESCO,II.1.1,Entre Rios,AR-E,annual,2022,bioetanol combustion consumption by to the public,50.99171292,TJ,N2O,0.6,kg/TJ,30.595027751999996,kg +90839ef2-7b48-3c24-a78b-7a7d70ce4f4c,SESCO,II.1.1,Formosa,AR-P,annual,2022,bioetanol combustion consumption by to the public,14.821775279999999,TJ,CH4,10.0,kg/TJ,148.2177528,kg +61439c84-8856-329e-83fc-53bac888364a,SESCO,II.1.1,Formosa,AR-P,annual,2022,bioetanol combustion consumption by to the public,14.821775279999999,TJ,N2O,0.6,kg/TJ,8.893065168,kg +38ac542b-d7e3-3d9e-ab46-1c630285ef96,SESCO,II.1.1,Jujuy,AR-Y,annual,2022,bioetanol combustion consumption by to the public,8.139450239999999,TJ,CH4,10.0,kg/TJ,81.3945024,kg +8f8d8a21-9920-3ad8-8981-a3d42fbd74d7,SESCO,II.1.1,Jujuy,AR-Y,annual,2022,bioetanol combustion consumption by to the public,8.139450239999999,TJ,N2O,0.6,kg/TJ,4.883670143999999,kg +02a102d9-b155-32c5-ad32-4175b39f9371,SESCO,II.1.1,La Pampa,AR-L,annual,2022,bioetanol combustion consumption by to the public,17.633771279999998,TJ,CH4,10.0,kg/TJ,176.33771279999996,kg +1d0879cc-ee5c-3900-924e-dbae26ed1843,SESCO,II.1.1,La Pampa,AR-L,annual,2022,bioetanol combustion consumption by to the public,17.633771279999998,TJ,N2O,0.6,kg/TJ,10.580262767999999,kg +66e42054-33af-37ee-bf41-26cc45dbfeca,SESCO,II.1.1,La Rioja,AR-F,annual,2022,bioetanol combustion consumption by to the public,8.8066602,TJ,CH4,10.0,kg/TJ,88.06660199999999,kg +359c321f-e0a8-3fd9-9840-8140fd30d80d,SESCO,II.1.1,La Rioja,AR-F,annual,2022,bioetanol combustion consumption by to the public,8.8066602,TJ,N2O,0.6,kg/TJ,5.283996119999999,kg +3a5789e9-4ca1-358d-95a7-8c6517f4708a,SESCO,II.1.1,Mendoza,AR-M,annual,2022,bioetanol combustion consumption by to the public,64.48418099999999,TJ,CH4,10.0,kg/TJ,644.8418099999999,kg +112745b1-abf7-3f6b-9931-2a48e96734e3,SESCO,II.1.1,Mendoza,AR-M,annual,2022,bioetanol combustion consumption by to the public,64.48418099999999,TJ,N2O,0.6,kg/TJ,38.690508599999994,kg +0373cecb-46f8-3caf-8299-948ea3576545,SESCO,II.1.1,Misiones,AR-N,annual,2022,bioetanol combustion consumption by to the public,32.38908119999999,TJ,CH4,10.0,kg/TJ,323.8908119999999,kg +2ea6705e-55dc-3ec2-aeb2-078bb30fe0a7,SESCO,II.1.1,Misiones,AR-N,annual,2022,bioetanol combustion consumption by to the public,32.38908119999999,TJ,N2O,0.6,kg/TJ,19.433448719999994,kg +ecd75678-75f2-3e92-80de-f30e636a5c4a,SESCO,II.1.1,Neuquén,AR-Q,annual,2022,bioetanol combustion consumption by to the public,28.984009679999996,TJ,CH4,10.0,kg/TJ,289.84009679999997,kg +d7ebfe86-e325-3ece-9534-21f6f40c12b5,SESCO,II.1.1,Neuquén,AR-Q,annual,2022,bioetanol combustion consumption by to the public,28.984009679999996,TJ,N2O,0.6,kg/TJ,17.390405807999997,kg +5d5051f8-6ed9-33b3-8164-fbd1ce7a082d,SESCO,II.1.1,Rio Negro,AR-R,annual,2022,bioetanol combustion consumption by to the public,16.422056639999997,TJ,CH4,10.0,kg/TJ,164.22056639999997,kg +8b64c66b-7ac1-34f9-87e4-9f5c170bae42,SESCO,II.1.1,Rio Negro,AR-R,annual,2022,bioetanol combustion consumption by to the public,16.422056639999997,TJ,N2O,0.6,kg/TJ,9.853233983999997,kg +68b4bf09-7614-30b7-be1f-553dc0432529,SESCO,II.1.1,Salta,AR-A,annual,2022,bioetanol combustion consumption by to the public,11.810383199999999,TJ,CH4,10.0,kg/TJ,118.10383199999998,kg +aa59fd3c-ab46-37fa-a85e-919ca4b4292d,SESCO,II.1.1,Salta,AR-A,annual,2022,bioetanol combustion consumption by to the public,11.810383199999999,TJ,N2O,0.6,kg/TJ,7.086229919999999,kg +c93a0c56-0bde-39bd-b597-904fd9e4b975,SESCO,II.1.1,San Juan,AR-J,annual,2022,bioetanol combustion consumption by to the public,10.348145279999999,TJ,CH4,10.0,kg/TJ,103.48145279999999,kg +5bce3bbe-7d86-379b-857e-ce69123bd4e4,SESCO,II.1.1,San Juan,AR-J,annual,2022,bioetanol combustion consumption by to the public,10.348145279999999,TJ,N2O,0.6,kg/TJ,6.2088871679999995,kg +44a7a99c-30df-32da-ba19-5f3c8e51feef,SESCO,II.1.1,San Luis,AR-D,annual,2022,bioetanol combustion consumption by to the public,13.510362599999999,TJ,CH4,10.0,kg/TJ,135.103626,kg +3148ce9a-1ebe-33aa-8892-d7ccbb53c845,SESCO,II.1.1,San Luis,AR-D,annual,2022,bioetanol combustion consumption by to the public,13.510362599999999,TJ,N2O,0.6,kg/TJ,8.10621756,kg +1684e083-6bea-353d-af1c-97ab2222001d,SESCO,II.1.1,Santa Fe,AR-S,annual,2022,bioetanol combustion consumption by to the public,154.83361248,TJ,CH4,10.0,kg/TJ,1548.3361248,kg +febbb198-3d1b-3dd1-b474-5b1e5f4c33cf,SESCO,II.1.1,Santa Fe,AR-S,annual,2022,bioetanol combustion consumption by to the public,154.83361248,TJ,N2O,0.6,kg/TJ,92.900167488,kg +05820ce9-710b-32f8-898a-60ee1d903c52,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2022,bioetanol combustion consumption by to the public,18.487595519999996,TJ,CH4,10.0,kg/TJ,184.87595519999996,kg +db1b2833-882b-31c1-91cc-cbd6411d1d9e,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2022,bioetanol combustion consumption by to the public,18.487595519999996,TJ,N2O,0.6,kg/TJ,11.092557311999997,kg +566c126d-33e9-3933-afd5-5004d763a208,SESCO,II.1.1,Tucuman,AR-T,annual,2022,bioetanol combustion consumption by to the public,26.23847904,TJ,CH4,10.0,kg/TJ,262.38479040000004,kg +f8472865-de14-3687-8e58-157e0fad2311,SESCO,II.1.1,Tucuman,AR-T,annual,2022,bioetanol combustion consumption by to the public,26.23847904,TJ,N2O,0.6,kg/TJ,15.743087424,kg +f86972e1-33d6-3bd1-92f5-cb3b7d873079,SESCO,I.3.1,Buenos Aires,AR-B,annual,2022,bioetanol combustion consumption by petrochemical industries,3.2184572399999993,TJ,CH4,10.0,kg/TJ,32.18457239999999,kg +ba2671d8-5e28-3ea0-8e3b-20e3b2f2a004,SESCO,I.3.1,Buenos Aires,AR-B,annual,2022,bioetanol combustion consumption by petrochemical industries,3.2184572399999993,TJ,N2O,0.6,kg/TJ,1.9310743439999996,kg +21523c66-efb4-39a3-ac41-4bf6dddcfec8,SESCO,I.3.1,Misiones,AR-N,annual,2022,bioetanol combustion consumption by petrochemical industries,0.0511272,TJ,CH4,10.0,kg/TJ,0.511272,kg +b2ee929d-2f3f-3169-943c-eeaf50c12ef2,SESCO,I.3.1,Misiones,AR-N,annual,2022,bioetanol combustion consumption by petrochemical industries,0.0511272,TJ,N2O,0.6,kg/TJ,0.030676319999999997,kg +9a515889-e121-3450-bc8d-d44986b4fe59,SESCO,I.3.1,Buenos Aires,AR-B,annual,2022,bioetanol combustion consumption by petrochemical industries,1.0378821599999999,TJ,CH4,10.0,kg/TJ,10.378821599999998,kg +6fc06b79-2828-3d74-a079-4dc37f0b1e6a,SESCO,I.3.1,Buenos Aires,AR-B,annual,2022,bioetanol combustion consumption by petrochemical industries,1.0378821599999999,TJ,N2O,0.6,kg/TJ,0.6227292959999999,kg +37a7f7f2-f5bf-34cd-a833-fe01675dc74c,SESCO,I.3.1,Chubut,AR-U,annual,2022,bioetanol combustion consumption by petrochemical industries,0.040901759999999995,TJ,CH4,10.0,kg/TJ,0.4090176,kg +8d73a788-84d6-3742-8a32-386203bbfeec,SESCO,I.3.1,Chubut,AR-U,annual,2022,bioetanol combustion consumption by petrochemical industries,0.040901759999999995,TJ,N2O,0.6,kg/TJ,0.024541055999999995,kg +30c1a80b-c04d-3a7c-9d39-664f1fbbce7a,SESCO,I.3.1,Córdoba,AR-X,annual,2022,bioetanol combustion consumption by petrochemical industries,0.16105067999999997,TJ,CH4,10.0,kg/TJ,1.6105067999999998,kg +688898a2-a812-3e6b-81b1-d157fbcec19f,SESCO,I.3.1,Córdoba,AR-X,annual,2022,bioetanol combustion consumption by petrochemical industries,0.16105067999999997,TJ,N2O,0.6,kg/TJ,0.09663040799999999,kg +a2c232c5-a5d9-30ad-a4df-39958b3d84ee,SESCO,I.3.1,Entre Rios,AR-E,annual,2022,bioetanol combustion consumption by petrochemical industries,0.15593796,TJ,CH4,10.0,kg/TJ,1.5593795999999998,kg +ba24b3ec-b8ec-393b-9bb9-373b14c8f1c1,SESCO,I.3.1,Entre Rios,AR-E,annual,2022,bioetanol combustion consumption by petrochemical industries,0.15593796,TJ,N2O,0.6,kg/TJ,0.09356277599999999,kg +95a46a95-d302-35ef-9367-982858d423e6,SESCO,I.3.1,La Pampa,AR-L,annual,2022,bioetanol combustion consumption by petrochemical industries,0.09969803999999999,TJ,CH4,10.0,kg/TJ,0.9969803999999999,kg +40285db6-c12f-3ea7-aea1-4ec06f8ebf35,SESCO,I.3.1,La Pampa,AR-L,annual,2022,bioetanol combustion consumption by petrochemical industries,0.09969803999999999,TJ,N2O,0.6,kg/TJ,0.05981882399999999,kg +9bc18b99-e458-30a1-8a47-b7a24bebac09,SESCO,I.3.1,Misiones,AR-N,annual,2022,bioetanol combustion consumption by petrochemical industries,0.08691623999999999,TJ,CH4,10.0,kg/TJ,0.8691623999999999,kg +7f724236-debe-35a0-b52e-7778678bf585,SESCO,I.3.1,Misiones,AR-N,annual,2022,bioetanol combustion consumption by petrochemical industries,0.08691623999999999,TJ,N2O,0.6,kg/TJ,0.05214974399999999,kg +cb00e075-b686-3cda-aad2-571de358b69c,SESCO,I.3.1,Neuquén,AR-Q,annual,2022,bioetanol combustion consumption by petrochemical industries,0.10992348,TJ,CH4,10.0,kg/TJ,1.0992348,kg +43c688a2-353e-3245-b10d-17a3b07cfe9a,SESCO,I.3.1,Neuquén,AR-Q,annual,2022,bioetanol combustion consumption by petrochemical industries,0.10992348,TJ,N2O,0.6,kg/TJ,0.065954088,kg +7e3fb9a3-71d4-3e4d-8bd1-2d4eebb4c4bf,SESCO,I.3.1,Rio Negro,AR-R,annual,2022,bioetanol combustion consumption by petrochemical industries,0.043458119999999996,TJ,CH4,10.0,kg/TJ,0.43458119999999995,kg +67b0881a-9912-3ac9-8857-fb9a17e17166,SESCO,I.3.1,Rio Negro,AR-R,annual,2022,bioetanol combustion consumption by petrochemical industries,0.043458119999999996,TJ,N2O,0.6,kg/TJ,0.026074871999999995,kg +6ddcb676-88e8-39d3-8515-d356844935d2,SESCO,I.3.1,San Juan,AR-J,annual,2022,bioetanol combustion consumption by petrochemical industries,0.10736712,TJ,CH4,10.0,kg/TJ,1.0736712,kg +e16d39db-7311-36f0-8a5a-6c8eae79322a,SESCO,I.3.1,San Juan,AR-J,annual,2022,bioetanol combustion consumption by petrochemical industries,0.10736712,TJ,N2O,0.6,kg/TJ,0.064420272,kg +e7b40c6a-f911-3a6b-a49a-24b370dcd052,SESCO,I.3.1,San Luis,AR-D,annual,2022,bioetanol combustion consumption by petrochemical industries,0.04857084,TJ,CH4,10.0,kg/TJ,0.4857084,kg +aa046745-862b-3343-bb9e-019ccabe5cd6,SESCO,I.3.1,San Luis,AR-D,annual,2022,bioetanol combustion consumption by petrochemical industries,0.04857084,TJ,N2O,0.6,kg/TJ,0.029142503999999996,kg +ab226297-2aad-3b0f-9ba6-2a8b2574c377,SESCO,I.3.1,Santa Fe,AR-S,annual,2022,bioetanol combustion consumption by petrochemical industries,0.063909,TJ,CH4,10.0,kg/TJ,0.6390899999999999,kg +f4aa843d-bda4-3cf9-a29a-7606601fe407,SESCO,I.3.1,Santa Fe,AR-S,annual,2022,bioetanol combustion consumption by petrochemical industries,0.063909,TJ,N2O,0.6,kg/TJ,0.038345399999999995,kg +8a9350b1-c711-3edd-835e-0954edf8b5c4,SESCO,I.3.1,Santiago del Estero,AR-G,annual,2022,bioetanol combustion consumption by petrochemical industries,0.04601448,TJ,CH4,10.0,kg/TJ,0.4601448,kg +e9a2472d-b334-3e8d-b0da-c2f8d9c09758,SESCO,I.3.1,Santiago del Estero,AR-G,annual,2022,bioetanol combustion consumption by petrochemical industries,0.04601448,TJ,N2O,0.6,kg/TJ,0.027608688000000003,kg +5640463a-286a-37fd-a226-a0337b056199,SESCO,I.3.1,Tucuman,AR-T,annual,2022,bioetanol combustion consumption by petrochemical industries,0.028119959999999996,TJ,CH4,10.0,kg/TJ,0.28119959999999994,kg +eb91e7d9-3618-3947-9a62-2eb705c8c603,SESCO,I.3.1,Tucuman,AR-T,annual,2022,bioetanol combustion consumption by petrochemical industries,0.028119959999999996,TJ,N2O,0.6,kg/TJ,0.016871975999999997,kg +68a7a813-fded-3a6f-8e84-5eb2b6ca4407,SESCO,II.5.1,Buenos Aires,AR-B,annual,2022,bioetanol combustion consumption by agriculture machines,1.9545826305599998,TJ,CH4,10.0,kg/TJ,19.5458263056,kg +1ec08e8d-3ffb-3cce-9a02-094e7e6a5a42,SESCO,II.5.1,Buenos Aires,AR-B,annual,2022,bioetanol combustion consumption by agriculture machines,1.9545826305599998,TJ,N2O,0.6,kg/TJ,1.1727495783359998,kg +2df02b7d-6f4e-3f76-a67f-8970ca0759d1,SESCO,II.5.1,Capital Federal,AR-C,annual,2022,bioetanol combustion consumption by agriculture machines,0.4855805819999999,TJ,CH4,10.0,kg/TJ,4.85580582,kg +f7d83025-efe5-33c2-9188-75ad617b5d03,SESCO,II.5.1,Capital Federal,AR-C,annual,2022,bioetanol combustion consumption by agriculture machines,0.4855805819999999,TJ,N2O,0.6,kg/TJ,0.29134834919999997,kg +0467fe22-d4b6-3c76-8c86-325325041168,SESCO,II.5.1,Córdoba,AR-X,annual,2022,bioetanol combustion consumption by agriculture machines,1.19574250272,TJ,CH4,10.0,kg/TJ,11.9574250272,kg +ed0bce86-35ac-3e7d-ac8e-ec3106696274,SESCO,II.5.1,Córdoba,AR-X,annual,2022,bioetanol combustion consumption by agriculture machines,1.19574250272,TJ,N2O,0.6,kg/TJ,0.7174455016319999,kg +586894d2-32bd-3e8b-bf33-067351faf5fc,SESCO,II.5.1,Santa Fe,AR-S,annual,2022,bioetanol combustion consumption by agriculture machines,7.72574938848,TJ,CH4,10.0,kg/TJ,77.2574938848,kg +c39bd251-703e-3b5c-855c-b2698e6ba632,SESCO,II.5.1,Santa Fe,AR-S,annual,2022,bioetanol combustion consumption by agriculture machines,7.72574938848,TJ,N2O,0.6,kg/TJ,4.635449633087999,kg +29394853-845a-37aa-9b00-fa142928b120,SESCO,II.5.1,Buenos Aires,AR-B,annual,2022,bioetanol combustion consumption by agriculture machines,0.69035268708,TJ,CH4,10.0,kg/TJ,6.9035268707999995,kg +4a8ca562-b3a9-3ab8-994d-9679e48decf6,SESCO,II.5.1,Buenos Aires,AR-B,annual,2022,bioetanol combustion consumption by agriculture machines,0.69035268708,TJ,N2O,0.6,kg/TJ,0.41421161224799996,kg +f84c2314-4dca-321f-8f78-51da55556f05,SESCO,II.5.1,Capital Federal,AR-C,annual,2022,bioetanol combustion consumption by agriculture machines,0.11708128799999999,TJ,CH4,10.0,kg/TJ,1.17081288,kg +eab87f8e-5b11-3c0c-be40-503b1d72f0a3,SESCO,II.5.1,Capital Federal,AR-C,annual,2022,bioetanol combustion consumption by agriculture machines,0.11708128799999999,TJ,N2O,0.6,kg/TJ,0.0702487728,kg +47966f69-0628-34aa-865d-8fe7fff0363b,SESCO,II.5.1,Córdoba,AR-X,annual,2022,bioetanol combustion consumption by agriculture machines,0.23122276199999997,TJ,CH4,10.0,kg/TJ,2.31222762,kg +b092aaa1-b956-37eb-a0ca-092942952dd8,SESCO,II.5.1,Córdoba,AR-X,annual,2022,bioetanol combustion consumption by agriculture machines,0.23122276199999997,TJ,N2O,0.6,kg/TJ,0.13873365719999997,kg +1bf69907-a6a4-3ab2-b29e-63ae0caff5fc,SESCO,II.5.1,Santa Fe,AR-S,annual,2022,bioetanol combustion consumption by agriculture machines,1.06062353856,TJ,CH4,10.0,kg/TJ,10.6062353856,kg +ed424fbf-2ad3-353e-b0ee-d24ef280db59,SESCO,II.5.1,Santa Fe,AR-S,annual,2022,bioetanol combustion consumption by agriculture machines,1.06062353856,TJ,N2O,0.6,kg/TJ,0.636374123136,kg +c0d764eb-ef9c-378d-8c5c-210315f694ad,SESCO,II.1.1,Buenos Aires,AR-B,annual,2022,bioetanol combustion consumption by to the public,435.6085601822399,TJ,CH4,10.0,kg/TJ,4356.0856018223985,kg +e217bc22-afba-3252-ac10-ee7aa60a2d8f,SESCO,II.1.1,Buenos Aires,AR-B,annual,2022,bioetanol combustion consumption by to the public,435.6085601822399,TJ,N2O,0.6,kg/TJ,261.36513610934395,kg +bc1af83d-fbaf-3bba-aae5-b4c5102f758c,SESCO,II.1.1,Capital Federal,AR-C,annual,2022,bioetanol combustion consumption by to the public,26.00704665648,TJ,CH4,10.0,kg/TJ,260.0704665648,kg +e4da01ce-bc03-3626-8d7a-abe1d63ac384,SESCO,II.1.1,Capital Federal,AR-C,annual,2022,bioetanol combustion consumption by to the public,26.00704665648,TJ,N2O,0.6,kg/TJ,15.604227993888,kg +6738f3f7-accc-3504-9b87-c30599b9022d,SESCO,II.1.1,Catamarca,AR-K,annual,2022,bioetanol combustion consumption by to the public,0.8529295139999999,TJ,CH4,10.0,kg/TJ,8.529295139999999,kg +0dc1d5f9-a554-37fd-b196-94763cb0919f,SESCO,II.1.1,Catamarca,AR-K,annual,2022,bioetanol combustion consumption by to the public,0.8529295139999999,TJ,N2O,0.6,kg/TJ,0.5117577083999999,kg +01394e0d-318f-3252-bd89-6b13f8a6c46a,SESCO,II.1.1,Chaco,AR-H,annual,2022,bioetanol combustion consumption by to the public,6.520663389959999,TJ,CH4,10.0,kg/TJ,65.20663389959999,kg +2f6778bc-ae23-3be1-b2e1-5d409aad7aaa,SESCO,II.1.1,Chaco,AR-H,annual,2022,bioetanol combustion consumption by to the public,6.520663389959999,TJ,N2O,0.6,kg/TJ,3.9123980339759994,kg +b702a31c-f4e2-31d4-9d83-f8615f40d2ed,SESCO,II.1.1,Chubut,AR-U,annual,2022,bioetanol combustion consumption by to the public,26.860259926439998,TJ,CH4,10.0,kg/TJ,268.6025992644,kg +394de330-d0fc-3a4a-ad04-33c0282b97d4,SESCO,II.1.1,Chubut,AR-U,annual,2022,bioetanol combustion consumption by to the public,26.860259926439998,TJ,N2O,0.6,kg/TJ,16.116155955864,kg +d2c05c71-7a52-3cff-9014-2d6575ef06a3,SESCO,II.1.1,Corrientes,AR-W,annual,2022,bioetanol combustion consumption by to the public,38.91347687556,TJ,CH4,10.0,kg/TJ,389.1347687556,kg +0629d0ce-f920-3c96-b2e6-7d6b73b6adee,SESCO,II.1.1,Corrientes,AR-W,annual,2022,bioetanol combustion consumption by to the public,38.91347687556,TJ,N2O,0.6,kg/TJ,23.348086125336,kg +74ca275c-9440-35a9-af4c-3ed45cbec473,SESCO,II.1.1,Córdoba,AR-X,annual,2022,bioetanol combustion consumption by to the public,80.03529601343999,TJ,CH4,10.0,kg/TJ,800.3529601343998,kg +78291fcf-cc70-3e53-991a-f4d6b19d5ad9,SESCO,II.1.1,Córdoba,AR-X,annual,2022,bioetanol combustion consumption by to the public,80.03529601343999,TJ,N2O,0.6,kg/TJ,48.021177608063994,kg +92107345-1323-3701-95f3-3b3f38c2779b,SESCO,II.1.1,Entre Rios,AR-E,annual,2022,bioetanol combustion consumption by to the public,63.25159623696,TJ,CH4,10.0,kg/TJ,632.5159623696,kg +e9eb5e30-9a81-3544-8a79-8e6c362fbf58,SESCO,II.1.1,Entre Rios,AR-E,annual,2022,bioetanol combustion consumption by to the public,63.25159623696,TJ,N2O,0.6,kg/TJ,37.950957742175994,kg +d15bd87f-3c99-3313-a3dd-e41cc2bf4df6,SESCO,II.1.1,Jujuy,AR-Y,annual,2022,bioetanol combustion consumption by to the public,4.1707908126,TJ,CH4,10.0,kg/TJ,41.707908126,kg +dd852aab-405c-3ca3-8acb-e6066ff1396a,SESCO,II.1.1,Jujuy,AR-Y,annual,2022,bioetanol combustion consumption by to the public,4.1707908126,TJ,N2O,0.6,kg/TJ,2.50247448756,kg +0c48600e-21f9-384e-81c5-0ab37e51b77e,SESCO,II.1.1,La Pampa,AR-L,annual,2022,bioetanol combustion consumption by to the public,37.24277802299999,TJ,CH4,10.0,kg/TJ,372.42778022999994,kg +e67b3343-d685-30c9-a497-1646418243e8,SESCO,II.1.1,La Pampa,AR-L,annual,2022,bioetanol combustion consumption by to the public,37.24277802299999,TJ,N2O,0.6,kg/TJ,22.345666813799994,kg +8eee5d73-95af-3fba-ae68-3aa6f2c8e4df,SESCO,II.1.1,Mendoza,AR-M,annual,2022,bioetanol combustion consumption by to the public,8.31980655072,TJ,CH4,10.0,kg/TJ,83.1980655072,kg +4a918aaf-5473-3190-a739-eff81f062a70,SESCO,II.1.1,Mendoza,AR-M,annual,2022,bioetanol combustion consumption by to the public,8.31980655072,TJ,N2O,0.6,kg/TJ,4.9918839304319995,kg +649c9c0b-e403-34ff-aada-e6e9b750a50d,SESCO,II.1.1,Neuquén,AR-Q,annual,2022,bioetanol combustion consumption by to the public,36.51143410332,TJ,CH4,10.0,kg/TJ,365.1143410332,kg +f0963dff-033f-3251-bc1a-b682946eba33,SESCO,II.1.1,Neuquén,AR-Q,annual,2022,bioetanol combustion consumption by to the public,36.51143410332,TJ,N2O,0.6,kg/TJ,21.906860461992,kg +a71e98fa-2c38-3564-84cb-cbd55343a455,SESCO,II.1.1,Rio Negro,AR-R,annual,2022,bioetanol combustion consumption by to the public,127.62795764123999,TJ,CH4,10.0,kg/TJ,1276.2795764123998,kg +6c652113-d475-3747-81ed-7769474ca1fa,SESCO,II.1.1,Rio Negro,AR-R,annual,2022,bioetanol combustion consumption by to the public,127.62795764123999,TJ,N2O,0.6,kg/TJ,76.57677458474399,kg +1c7ac231-fa84-308b-94b0-679f926d122f,SESCO,II.1.1,San Juan,AR-J,annual,2022,bioetanol combustion consumption by to the public,23.83300563264,TJ,CH4,10.0,kg/TJ,238.33005632639998,kg +d40208c1-d41f-3d93-8754-d8b3eaf1a6b9,SESCO,II.1.1,San Juan,AR-J,annual,2022,bioetanol combustion consumption by to the public,23.83300563264,TJ,N2O,0.6,kg/TJ,14.299803379583999,kg +a3625dc9-7346-3dd0-93d5-ddd0722d0a99,SESCO,II.1.1,San Luis,AR-D,annual,2022,bioetanol combustion consumption by to the public,7.670869451999999,TJ,CH4,10.0,kg/TJ,76.70869452,kg +2327975f-084a-30d0-8300-f801659ae463,SESCO,II.1.1,San Luis,AR-D,annual,2022,bioetanol combustion consumption by to the public,7.670869451999999,TJ,N2O,0.6,kg/TJ,4.602521671199999,kg +0a6e3285-0708-3cd5-88b9-f3a9263b6113,SESCO,II.1.1,Santa Fe,AR-S,annual,2022,bioetanol combustion consumption by to the public,102.85439558652,TJ,CH4,10.0,kg/TJ,1028.5439558652,kg +fa5d6e10-e77f-3954-b77a-74cd6dcf5fee,SESCO,II.1.1,Santa Fe,AR-S,annual,2022,bioetanol combustion consumption by to the public,102.85439558652,TJ,N2O,0.6,kg/TJ,61.712637351911994,kg +5e9ca690-04e1-391e-ab90-ba89941ed125,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2022,bioetanol combustion consumption by to the public,7.758097567919999,TJ,CH4,10.0,kg/TJ,77.5809756792,kg +5aef5785-ee21-37bc-b1a8-84923689c500,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2022,bioetanol combustion consumption by to the public,7.758097567919999,TJ,N2O,0.6,kg/TJ,4.654858540752,kg +0a88b37c-830a-33c8-be5c-32d77a73ab4f,SESCO,II.1.1,Tucuman,AR-T,annual,2022,bioetanol combustion consumption by to the public,0.40736619143999997,TJ,CH4,10.0,kg/TJ,4.0736619144,kg +82407a08-903e-3d1c-b4af-311d7b5b2ae0,SESCO,II.1.1,Tucuman,AR-T,annual,2022,bioetanol combustion consumption by to the public,0.40736619143999997,TJ,N2O,0.6,kg/TJ,0.24441971486399997,kg +bedaa603-0507-3d0b-ad6f-b02b76f096d4,SESCO,II.1.1,Buenos Aires,AR-B,annual,2022,bioetanol combustion consumption by to the public,69.87529116035999,TJ,CH4,10.0,kg/TJ,698.7529116036,kg +6b339dc8-9df2-3fe9-80b9-575e8081044b,SESCO,II.1.1,Buenos Aires,AR-B,annual,2022,bioetanol combustion consumption by to the public,69.87529116035999,TJ,N2O,0.6,kg/TJ,41.925174696216,kg +1c609085-1eda-3cbd-862b-1bddf762dcda,SESCO,II.1.1,Capital Federal,AR-C,annual,2022,bioetanol combustion consumption by to the public,4.0117085298,TJ,CH4,10.0,kg/TJ,40.117085298,kg +48806dcd-ebf7-39e8-9917-dfd90c0cd70e,SESCO,II.1.1,Capital Federal,AR-C,annual,2022,bioetanol combustion consumption by to the public,4.0117085298,TJ,N2O,0.6,kg/TJ,2.40702511788,kg +4cda2c76-5c63-33ef-94a6-2999d5f49803,SESCO,II.1.1,Catamarca,AR-K,annual,2022,bioetanol combustion consumption by to the public,0.1114317324,TJ,CH4,10.0,kg/TJ,1.114317324,kg +173027e6-48a3-3db2-9e5c-92617cbd9ef6,SESCO,II.1.1,Catamarca,AR-K,annual,2022,bioetanol combustion consumption by to the public,0.1114317324,TJ,N2O,0.6,kg/TJ,0.06685903943999999,kg +8ece8928-1549-313c-88cc-b97db7bea6ad,SESCO,II.1.1,Chaco,AR-H,annual,2022,bioetanol combustion consumption by to the public,0.8764429132799999,TJ,CH4,10.0,kg/TJ,8.764429132799998,kg +733a8b98-4190-3870-ac5d-9c37f2c48fa6,SESCO,II.1.1,Chaco,AR-H,annual,2022,bioetanol combustion consumption by to the public,0.8764429132799999,TJ,N2O,0.6,kg/TJ,0.5258657479679999,kg +06c74134-37b8-32bf-8855-2a0f84453b58,SESCO,II.1.1,Chubut,AR-U,annual,2022,bioetanol combustion consumption by to the public,4.56725412864,TJ,CH4,10.0,kg/TJ,45.672541286400005,kg +dd1f3d78-4772-3aa2-8c93-01bd7b6531fa,SESCO,II.1.1,Chubut,AR-U,annual,2022,bioetanol combustion consumption by to the public,4.56725412864,TJ,N2O,0.6,kg/TJ,2.740352477184,kg +e70a7f01-c9c0-32e5-8a60-5a8d29f50cc3,SESCO,II.1.1,Corrientes,AR-W,annual,2022,bioetanol combustion consumption by to the public,5.27765890356,TJ,CH4,10.0,kg/TJ,52.7765890356,kg +aad2cee1-ab23-38f4-a863-5ddc54649fdf,SESCO,II.1.1,Corrientes,AR-W,annual,2022,bioetanol combustion consumption by to the public,5.27765890356,TJ,N2O,0.6,kg/TJ,3.166595342136,kg +bf40d0b9-92f6-3da7-8883-494843e2be18,SESCO,II.1.1,Córdoba,AR-X,annual,2022,bioetanol combustion consumption by to the public,13.36380903756,TJ,CH4,10.0,kg/TJ,133.6380903756,kg +3ee2dbb5-dfb3-313e-9ebd-f927bf752ad1,SESCO,II.1.1,Córdoba,AR-X,annual,2022,bioetanol combustion consumption by to the public,13.36380903756,TJ,N2O,0.6,kg/TJ,8.018285422536,kg +c88b47d3-9ce4-30ab-9169-5ab34a9a8cde,SESCO,II.1.1,Entre Rios,AR-E,annual,2022,bioetanol combustion consumption by to the public,13.98324574188,TJ,CH4,10.0,kg/TJ,139.8324574188,kg +add9498b-39c7-3a32-b063-668149119420,SESCO,II.1.1,Entre Rios,AR-E,annual,2022,bioetanol combustion consumption by to the public,13.98324574188,TJ,N2O,0.6,kg/TJ,8.389947445128,kg +84e40d56-425e-3096-833b-de79dd6228a3,SESCO,II.1.1,Jujuy,AR-Y,annual,2022,bioetanol combustion consumption by to the public,0.15302882232,TJ,CH4,10.0,kg/TJ,1.5302882232000001,kg +2b8e15d7-4212-32df-87fd-6a4354019a47,SESCO,II.1.1,Jujuy,AR-Y,annual,2022,bioetanol combustion consumption by to the public,0.15302882232,TJ,N2O,0.6,kg/TJ,0.091817293392,kg +e4d626d8-79be-3c75-8db0-a3f94c064d3a,SESCO,II.1.1,La Pampa,AR-L,annual,2022,bioetanol combustion consumption by to the public,8.91746051148,TJ,CH4,10.0,kg/TJ,89.1746051148,kg +8fec7a92-4b74-381e-93b6-705dd06dd339,SESCO,II.1.1,La Pampa,AR-L,annual,2022,bioetanol combustion consumption by to the public,8.91746051148,TJ,N2O,0.6,kg/TJ,5.350476306888,kg +f8526060-ab0a-33f7-9a56-dcd88e7d20b5,SESCO,II.1.1,Mendoza,AR-M,annual,2022,bioetanol combustion consumption by to the public,1.2654263199599998,TJ,CH4,10.0,kg/TJ,12.654263199599997,kg +fb0ec6d0-8ccc-320e-a823-c580760e439d,SESCO,II.1.1,Mendoza,AR-M,annual,2022,bioetanol combustion consumption by to the public,1.2654263199599998,TJ,N2O,0.6,kg/TJ,0.7592557919759998,kg +eb369f37-50fc-396a-8e9a-c63cdf66b1fa,SESCO,II.1.1,Neuquén,AR-Q,annual,2022,bioetanol combustion consumption by to the public,10.242181601639999,TJ,CH4,10.0,kg/TJ,102.42181601639999,kg +6a8ce6ef-f213-3ef2-bc0e-e7c5c880cd33,SESCO,II.1.1,Neuquén,AR-Q,annual,2022,bioetanol combustion consumption by to the public,10.242181601639999,TJ,N2O,0.6,kg/TJ,6.145308960983999,kg +f94c3a71-52af-3827-bc19-60233db4ac32,SESCO,II.1.1,Rio Negro,AR-R,annual,2022,bioetanol combustion consumption by to the public,19.97810422524,TJ,CH4,10.0,kg/TJ,199.7810422524,kg +e214b877-437b-3664-b19b-19ed5c9aad86,SESCO,II.1.1,Rio Negro,AR-R,annual,2022,bioetanol combustion consumption by to the public,19.97810422524,TJ,N2O,0.6,kg/TJ,11.986862535143999,kg +24f90e86-9245-3070-b354-08f665672db8,SESCO,II.1.1,San Juan,AR-J,annual,2022,bioetanol combustion consumption by to the public,2.59935286248,TJ,CH4,10.0,kg/TJ,25.9935286248,kg +bec2a91e-79c7-36d4-ba6c-8fcddfd9caba,SESCO,II.1.1,San Juan,AR-J,annual,2022,bioetanol combustion consumption by to the public,2.59935286248,TJ,N2O,0.6,kg/TJ,1.559611717488,kg +c3081910-7f62-39c5-80fe-eb955a0c5a11,SESCO,II.1.1,San Luis,AR-D,annual,2022,bioetanol combustion consumption by to the public,1.6169053690800002,TJ,CH4,10.0,kg/TJ,16.169053690800002,kg +f24d98d7-770d-315e-9008-e5258abb8dcd,SESCO,II.1.1,San Luis,AR-D,annual,2022,bioetanol combustion consumption by to the public,1.6169053690800002,TJ,N2O,0.6,kg/TJ,0.970143221448,kg +082bd83e-3b00-33e2-a158-2a4c94a3eaa5,SESCO,II.1.1,Santa Fe,AR-S,annual,2022,bioetanol combustion consumption by to the public,20.596444251119998,TJ,CH4,10.0,kg/TJ,205.9644425112,kg +be96d594-4087-3e29-beba-f396661edc85,SESCO,II.1.1,Santa Fe,AR-S,annual,2022,bioetanol combustion consumption by to the public,20.596444251119998,TJ,N2O,0.6,kg/TJ,12.357866550671998,kg +41c53248-645c-35d2-9391-c5599a5c4bbe,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2022,bioetanol combustion consumption by to the public,0.8093435760000001,TJ,CH4,10.0,kg/TJ,8.09343576,kg +e9218195-9bb3-3985-856c-976c30e1964c,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2022,bioetanol combustion consumption by to the public,0.8093435760000001,TJ,N2O,0.6,kg/TJ,0.48560614560000004,kg +f51f15c7-ed90-327b-b791-23cdbce2dcc2,SESCO,II.1.1,Tucuman,AR-T,annual,2022,bioetanol combustion consumption by to the public,0.062357289479999994,TJ,CH4,10.0,kg/TJ,0.6235728947999999,kg +8a7842f5-8bfb-36aa-b454-ff4edc428e7e,SESCO,II.1.1,Tucuman,AR-T,annual,2022,bioetanol combustion consumption by to the public,0.062357289479999994,TJ,N2O,0.6,kg/TJ,0.037414373688,kg +4ec31465-4a55-3253-8b4c-0f42bc0091e0,SESCO,II.5.1,Buenos Aires,AR-B,annual,2022,bioetanol combustion consumption by agriculture machines,3.21590088,TJ,CH4,10.0,kg/TJ,32.1590088,kg +d290ffcc-2f71-3a1e-b384-177a0abe505e,SESCO,II.5.1,Buenos Aires,AR-B,annual,2022,bioetanol combustion consumption by agriculture machines,3.21590088,TJ,N2O,0.6,kg/TJ,1.929540528,kg +3ddcf968-c14b-36e2-b591-ad6ffe84ab6b,SESCO,II.5.1,Salta,AR-A,annual,2022,bioetanol combustion consumption by agriculture machines,0.0255636,TJ,CH4,10.0,kg/TJ,0.255636,kg +4513edd0-082d-3724-a7a8-f5d760d3985c,SESCO,II.5.1,Salta,AR-A,annual,2022,bioetanol combustion consumption by agriculture machines,0.0255636,TJ,N2O,0.6,kg/TJ,0.015338159999999998,kg +b18a8dc2-8299-38e1-990c-baf9f3740d65,SESCO,II.5.1,Santa Fe,AR-S,annual,2022,bioetanol combustion consumption by agriculture machines,2.01441168,TJ,CH4,10.0,kg/TJ,20.1441168,kg +505a9009-0abf-3627-8c86-f16f92f029c7,SESCO,II.5.1,Santa Fe,AR-S,annual,2022,bioetanol combustion consumption by agriculture machines,2.01441168,TJ,N2O,0.6,kg/TJ,1.2086470079999998,kg +f823ce16-3308-3ffd-bdf6-7b70a3422f99,SESCO,II.5.1,Buenos Aires,AR-B,annual,2022,bioetanol combustion consumption by agriculture machines,0.09969803999999999,TJ,CH4,10.0,kg/TJ,0.9969803999999999,kg +77eb8d0c-e842-3814-8bde-1a81c39abd2f,SESCO,II.5.1,Buenos Aires,AR-B,annual,2022,bioetanol combustion consumption by agriculture machines,0.09969803999999999,TJ,N2O,0.6,kg/TJ,0.05981882399999999,kg +7417f382-1948-37a5-9b9e-e2fb1f071d14,SESCO,II.5.1,Santa Fe,AR-S,annual,2022,bioetanol combustion consumption by agriculture machines,0.13293072,TJ,CH4,10.0,kg/TJ,1.3293072000000001,kg +ae09ef5c-8c78-3a03-8d90-ea2d9bee63b9,SESCO,II.5.1,Santa Fe,AR-S,annual,2022,bioetanol combustion consumption by agriculture machines,0.13293072,TJ,N2O,0.6,kg/TJ,0.079758432,kg +ae8931f9-0c94-329b-8608-91bcd37ede07,SESCO,II.1.1,Buenos Aires,AR-B,annual,2022,bioetanol combustion consumption by to the public,3046.6877425199996,TJ,CH4,10.0,kg/TJ,30466.877425199997,kg +59848313-1a96-391a-829b-dce8ff8a208f,SESCO,II.1.1,Buenos Aires,AR-B,annual,2022,bioetanol combustion consumption by to the public,3046.6877425199996,TJ,N2O,0.6,kg/TJ,1828.0126455119996,kg +e0a8fa76-f19d-3527-ae25-4fd861014561,SESCO,II.1.1,Capital Federal,AR-C,annual,2022,bioetanol combustion consumption by to the public,576.842634,TJ,CH4,10.0,kg/TJ,5768.42634,kg +de605804-e2d1-33a4-b3c4-0b3594e12fd6,SESCO,II.1.1,Capital Federal,AR-C,annual,2022,bioetanol combustion consumption by to the public,576.842634,TJ,N2O,0.6,kg/TJ,346.10558039999995,kg +3976af50-49fa-3775-9002-30356c33cf3b,SESCO,II.1.1,Catamarca,AR-K,annual,2022,bioetanol combustion consumption by to the public,81.12352824,TJ,CH4,10.0,kg/TJ,811.2352824,kg +072b5e2a-ce71-366d-8965-4afc5aa8ce96,SESCO,II.1.1,Catamarca,AR-K,annual,2022,bioetanol combustion consumption by to the public,81.12352824,TJ,N2O,0.6,kg/TJ,48.674116944,kg +8e21b034-c401-3dd8-8716-eda98b23120e,SESCO,II.1.1,Chaco,AR-H,annual,2022,bioetanol combustion consumption by to the public,223.45654032,TJ,CH4,10.0,kg/TJ,2234.5654031999998,kg +6c881f41-bc38-32f7-9116-aa1495a60c2e,SESCO,II.1.1,Chaco,AR-H,annual,2022,bioetanol combustion consumption by to the public,223.45654032,TJ,N2O,0.6,kg/TJ,134.073924192,kg +d6d998aa-d298-39ab-b346-4318e82810e2,SESCO,II.1.1,Chubut,AR-U,annual,2022,bioetanol combustion consumption by to the public,270.91792008,TJ,CH4,10.0,kg/TJ,2709.1792007999998,kg +b9c34867-49d9-3d51-9a48-8478fb4c9d61,SESCO,II.1.1,Chubut,AR-U,annual,2022,bioetanol combustion consumption by to the public,270.91792008,TJ,N2O,0.6,kg/TJ,162.550752048,kg +8e71bb95-b2b9-34f6-87e1-0cb0738aa25c,SESCO,II.1.1,Corrientes,AR-W,annual,2022,bioetanol combustion consumption by to the public,222.14257128,TJ,CH4,10.0,kg/TJ,2221.4257128,kg +f936cd99-ba90-35d8-b205-47447878ea34,SESCO,II.1.1,Corrientes,AR-W,annual,2022,bioetanol combustion consumption by to the public,222.14257128,TJ,N2O,0.6,kg/TJ,133.285542768,kg +a1073e90-3e4b-3b30-9e57-3564fb530195,SESCO,II.1.1,Córdoba,AR-X,annual,2022,bioetanol combustion consumption by to the public,853.1749245599999,TJ,CH4,10.0,kg/TJ,8531.7492456,kg +42f05b72-42fb-329d-9b24-f0dba034c615,SESCO,II.1.1,Córdoba,AR-X,annual,2022,bioetanol combustion consumption by to the public,853.1749245599999,TJ,N2O,0.6,kg/TJ,511.9049547359999,kg +ccacc8b5-b731-3b6a-a4d7-22a70fda9ee1,SESCO,II.1.1,Entre Rios,AR-E,annual,2022,bioetanol combustion consumption by to the public,287.70809255999995,TJ,CH4,10.0,kg/TJ,2877.0809255999993,kg +6e1b3efc-4a4b-335e-bee4-0f15fd05c12b,SESCO,II.1.1,Entre Rios,AR-E,annual,2022,bioetanol combustion consumption by to the public,287.70809255999995,TJ,N2O,0.6,kg/TJ,172.62485553599996,kg +85132852-aca0-3315-8095-a414257688f8,SESCO,II.1.1,Formosa,AR-P,annual,2022,bioetanol combustion consumption by to the public,101.45425931999999,TJ,CH4,10.0,kg/TJ,1014.5425931999999,kg +8d147bce-5ba9-3ae6-83f8-914742da2ec4,SESCO,II.1.1,Formosa,AR-P,annual,2022,bioetanol combustion consumption by to the public,101.45425931999999,TJ,N2O,0.6,kg/TJ,60.87255559199999,kg +b847d25c-0ca0-3af0-b2a7-7f3405ee59c0,SESCO,II.1.1,Jujuy,AR-Y,annual,2022,bioetanol combustion consumption by to the public,136.75247819999998,TJ,CH4,10.0,kg/TJ,1367.524782,kg +5c9f729a-d8cf-378f-a55e-82effa1977c8,SESCO,II.1.1,Jujuy,AR-Y,annual,2022,bioetanol combustion consumption by to the public,136.75247819999998,TJ,N2O,0.6,kg/TJ,82.05148691999999,kg +f4c052b7-6a86-35fd-b8f6-3430bad9ad2d,SESCO,II.1.1,La Pampa,AR-L,annual,2022,bioetanol combustion consumption by to the public,144.0764496,TJ,CH4,10.0,kg/TJ,1440.7644959999998,kg +76ac2990-9596-339f-b526-ad52b4bdb215,SESCO,II.1.1,La Pampa,AR-L,annual,2022,bioetanol combustion consumption by to the public,144.0764496,TJ,N2O,0.6,kg/TJ,86.44586976,kg +61c69ab7-2451-377d-9615-0cd7416592b0,SESCO,II.1.1,La Rioja,AR-F,annual,2022,bioetanol combustion consumption by to the public,89.59530528,TJ,CH4,10.0,kg/TJ,895.9530528,kg +418a3b35-f911-3031-9520-0b02543f2177,SESCO,II.1.1,La Rioja,AR-F,annual,2022,bioetanol combustion consumption by to the public,89.59530528,TJ,N2O,0.6,kg/TJ,53.757183168000005,kg +ddfd4aab-9289-3036-bb81-5dc8bb375dae,SESCO,II.1.1,Mendoza,AR-M,annual,2022,bioetanol combustion consumption by to the public,409.27579235999997,TJ,CH4,10.0,kg/TJ,4092.7579235999997,kg +12ede996-f5df-33f4-95eb-2ea3b27ca35e,SESCO,II.1.1,Mendoza,AR-M,annual,2022,bioetanol combustion consumption by to the public,409.27579235999997,TJ,N2O,0.6,kg/TJ,245.56547541599997,kg +7e2aae8d-6e47-3d97-a8de-249465b5021d,SESCO,II.1.1,Misiones,AR-N,annual,2022,bioetanol combustion consumption by to the public,330.68306051999997,TJ,CH4,10.0,kg/TJ,3306.8306052,kg +8f4622ee-96d3-33b0-8b8f-98b1130b4d3e,SESCO,II.1.1,Misiones,AR-N,annual,2022,bioetanol combustion consumption by to the public,330.68306051999997,TJ,N2O,0.6,kg/TJ,198.40983631199998,kg +1f893aae-acab-3ed0-8c90-343ed310f88f,SESCO,II.1.1,Neuquén,AR-Q,annual,2022,bioetanol combustion consumption by to the public,279.12383567999996,TJ,CH4,10.0,kg/TJ,2791.2383567999996,kg +7d8dc451-207b-3321-8bd6-64ddc8595d4d,SESCO,II.1.1,Neuquén,AR-Q,annual,2022,bioetanol combustion consumption by to the public,279.12383567999996,TJ,N2O,0.6,kg/TJ,167.47430140799997,kg +ed8c30a9-74b0-30af-b974-f71d8ca17f50,SESCO,II.1.1,Rio Negro,AR-R,annual,2022,bioetanol combustion consumption by to the public,270.16635024,TJ,CH4,10.0,kg/TJ,2701.6635023999997,kg +46f4e724-87e2-3e2c-b54f-f073add43df1,SESCO,II.1.1,Rio Negro,AR-R,annual,2022,bioetanol combustion consumption by to the public,270.16635024,TJ,N2O,0.6,kg/TJ,162.09981014399997,kg +c4a47e1a-f9e5-3b4b-994c-537b4053b1d1,SESCO,II.1.1,Salta,AR-A,annual,2022,bioetanol combustion consumption by to the public,294.75086436,TJ,CH4,10.0,kg/TJ,2947.5086435999997,kg +e32c7ff0-e0c5-3135-9fe9-024c38d18595,SESCO,II.1.1,Salta,AR-A,annual,2022,bioetanol combustion consumption by to the public,294.75086436,TJ,N2O,0.6,kg/TJ,176.850518616,kg +e29d404a-1d56-3d86-9490-fd6d85148a87,SESCO,II.1.1,San Juan,AR-J,annual,2022,bioetanol combustion consumption by to the public,142.22053223999998,TJ,CH4,10.0,kg/TJ,1422.2053224,kg +da36bc8f-3547-3144-a92e-6777943f97c5,SESCO,II.1.1,San Juan,AR-J,annual,2022,bioetanol combustion consumption by to the public,142.22053223999998,TJ,N2O,0.6,kg/TJ,85.33231934399998,kg +f2f111c1-ff49-3aa0-88d4-029573dd0610,SESCO,II.1.1,San Luis,AR-D,annual,2022,bioetanol combustion consumption by to the public,124.19819423999999,TJ,CH4,10.0,kg/TJ,1241.9819424,kg +3af7b624-7cb4-3efc-b6ce-0567ef7712e7,SESCO,II.1.1,San Luis,AR-D,annual,2022,bioetanol combustion consumption by to the public,124.19819423999999,TJ,N2O,0.6,kg/TJ,74.51891654399999,kg +fa01ad15-e3d3-3a82-a755-2ed36c1c732a,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2022,bioetanol combustion consumption by to the public,177.83573976,TJ,CH4,10.0,kg/TJ,1778.3573976,kg +42143050-2404-308f-ae95-8af75a301631,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2022,bioetanol combustion consumption by to the public,177.83573976,TJ,N2O,0.6,kg/TJ,106.701443856,kg +debbee14-10fd-3812-a59c-143b8345e2e4,SESCO,II.1.1,Santa Fe,AR-S,annual,2022,bioetanol combustion consumption by to the public,613.1173824,TJ,CH4,10.0,kg/TJ,6131.1738239999995,kg +72d5fd0b-b1ad-3fe1-9430-8d7f6c3dbd16,SESCO,II.1.1,Santa Fe,AR-S,annual,2022,bioetanol combustion consumption by to the public,613.1173824,TJ,N2O,0.6,kg/TJ,367.87042944,kg +d3448de3-c393-3f2a-b17d-48482d90922f,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2022,bioetanol combustion consumption by to the public,142.51451364,TJ,CH4,10.0,kg/TJ,1425.1451364,kg +2308ab40-6172-3cac-b0ca-a76a3bbc17ef,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2022,bioetanol combustion consumption by to the public,142.51451364,TJ,N2O,0.6,kg/TJ,85.50870818399999,kg +38a8bc0c-da36-38e1-9b9a-1fdd85d50f02,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2022,bioetanol combustion consumption by to the public,116.87677919999999,TJ,CH4,10.0,kg/TJ,1168.7677919999999,kg +3131cf0c-f92d-3d88-ab26-17895b0f539b,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2022,bioetanol combustion consumption by to the public,116.87677919999999,TJ,N2O,0.6,kg/TJ,70.12606751999999,kg +a64e603b-8bfd-3ea0-a155-a0d01c80c456,SESCO,II.1.1,Tucuman,AR-T,annual,2022,bioetanol combustion consumption by to the public,265.87677815999996,TJ,CH4,10.0,kg/TJ,2658.7677815999996,kg +6cac72e2-55d5-347a-9d4f-5273c7f1c365,SESCO,II.1.1,Tucuman,AR-T,annual,2022,bioetanol combustion consumption by to the public,265.87677815999996,TJ,N2O,0.6,kg/TJ,159.52606689599997,kg +7bae84f4-e6c0-3262-8e03-9f5981e5d4e2,SESCO,II.1.1,Buenos Aires,AR-B,annual,2022,bioetanol combustion consumption by to the public,1396.0154142,TJ,CH4,10.0,kg/TJ,13960.154142,kg +c48f0457-ff17-3093-ba13-e3df46342bfd,SESCO,II.1.1,Buenos Aires,AR-B,annual,2022,bioetanol combustion consumption by to the public,1396.0154142,TJ,N2O,0.6,kg/TJ,837.6092485199999,kg +522cac3c-0c64-33de-b868-b4c8e19bae72,SESCO,II.1.1,Capital Federal,AR-C,annual,2022,bioetanol combustion consumption by to the public,352.26896436,TJ,CH4,10.0,kg/TJ,3522.6896435999997,kg +f5ccba5d-0231-32e8-a2b8-583f83b36838,SESCO,II.1.1,Capital Federal,AR-C,annual,2022,bioetanol combustion consumption by to the public,352.26896436,TJ,N2O,0.6,kg/TJ,211.361378616,kg +fd8c88e8-374a-3679-9cf8-9adb20ce3297,SESCO,II.1.1,Catamarca,AR-K,annual,2022,bioetanol combustion consumption by to the public,32.468328359999994,TJ,CH4,10.0,kg/TJ,324.6832835999999,kg +ce4d10b1-7ca9-3379-896e-47273e76ec96,SESCO,II.1.1,Catamarca,AR-K,annual,2022,bioetanol combustion consumption by to the public,32.468328359999994,TJ,N2O,0.6,kg/TJ,19.480997015999996,kg +cd664367-e25d-36ce-96a2-3beb4d4668b0,SESCO,II.1.1,Chaco,AR-H,annual,2022,bioetanol combustion consumption by to the public,69.20322156,TJ,CH4,10.0,kg/TJ,692.0322156,kg +06d6e25c-bbf9-33ae-baa9-1c184eb12bc2,SESCO,II.1.1,Chaco,AR-H,annual,2022,bioetanol combustion consumption by to the public,69.20322156,TJ,N2O,0.6,kg/TJ,41.521932936,kg +dd66100c-9ad4-3e77-bb61-7f7f3814eb09,SESCO,II.1.1,Chubut,AR-U,annual,2022,bioetanol combustion consumption by to the public,97.90347528,TJ,CH4,10.0,kg/TJ,979.0347528,kg +5a40d43b-011c-389a-bfe8-fd6149d9c939,SESCO,II.1.1,Chubut,AR-U,annual,2022,bioetanol combustion consumption by to the public,97.90347528,TJ,N2O,0.6,kg/TJ,58.742085167999996,kg +3d7f9f0b-8eb5-345b-8ae9-9d8b6e35dd53,SESCO,II.1.1,Corrientes,AR-W,annual,2022,bioetanol combustion consumption by to the public,89.06102604,TJ,CH4,10.0,kg/TJ,890.6102604,kg +3dffa0c4-292f-3004-83bb-59486b1c41b0,SESCO,II.1.1,Corrientes,AR-W,annual,2022,bioetanol combustion consumption by to the public,89.06102604,TJ,N2O,0.6,kg/TJ,53.436615624,kg +98f823e3-37c2-3b19-a6c8-95c383b389ca,SESCO,II.1.1,Córdoba,AR-X,annual,2022,bioetanol combustion consumption by to the public,363.2715378,TJ,CH4,10.0,kg/TJ,3632.715378,kg +4df86cc8-e085-39e6-a966-f323fcf77e16,SESCO,II.1.1,Córdoba,AR-X,annual,2022,bioetanol combustion consumption by to the public,363.2715378,TJ,N2O,0.6,kg/TJ,217.96292268,kg +f8b1a29c-139f-3f23-bb73-d3433e3be11e,SESCO,II.1.1,Entre Rios,AR-E,annual,2022,bioetanol combustion consumption by to the public,125.26164,TJ,CH4,10.0,kg/TJ,1252.6163999999999,kg +2f233db9-a9f9-3a62-a6b4-61f730652a3d,SESCO,II.1.1,Entre Rios,AR-E,annual,2022,bioetanol combustion consumption by to the public,125.26164,TJ,N2O,0.6,kg/TJ,75.156984,kg +bf3ae350-3bc4-3997-b4d9-65b3305aa336,SESCO,II.1.1,Formosa,AR-P,annual,2022,bioetanol combustion consumption by to the public,29.311223759999994,TJ,CH4,10.0,kg/TJ,293.11223759999996,kg +ae1b88f4-664e-342e-bc3d-6bf9011554d1,SESCO,II.1.1,Formosa,AR-P,annual,2022,bioetanol combustion consumption by to the public,29.311223759999994,TJ,N2O,0.6,kg/TJ,17.586734255999996,kg +81573cb4-d081-3840-b7e4-f567b72aed59,SESCO,II.1.1,Jujuy,AR-Y,annual,2022,bioetanol combustion consumption by to the public,43.02865152,TJ,CH4,10.0,kg/TJ,430.28651519999994,kg +5cc8b047-649b-3b9c-acd1-881355b1c35c,SESCO,II.1.1,Jujuy,AR-Y,annual,2022,bioetanol combustion consumption by to the public,43.02865152,TJ,N2O,0.6,kg/TJ,25.817190911999997,kg +cbe157f4-ba05-3a6e-823a-c0aaf9160f70,SESCO,II.1.1,La Pampa,AR-L,annual,2022,bioetanol combustion consumption by to the public,92.2718142,TJ,CH4,10.0,kg/TJ,922.718142,kg +059c260e-cb50-3d74-ad87-836e4abac7c8,SESCO,II.1.1,La Pampa,AR-L,annual,2022,bioetanol combustion consumption by to the public,92.2718142,TJ,N2O,0.6,kg/TJ,55.36308852,kg +75f9ed81-bf87-3f7f-8e3d-bceab81f8acf,SESCO,II.1.1,La Rioja,AR-F,annual,2022,bioetanol combustion consumption by to the public,40.817400119999995,TJ,CH4,10.0,kg/TJ,408.17400119999996,kg +3f234e3a-dac2-3446-abad-033a749de334,SESCO,II.1.1,La Rioja,AR-F,annual,2022,bioetanol combustion consumption by to the public,40.817400119999995,TJ,N2O,0.6,kg/TJ,24.490440071999995,kg +0732229a-4e89-39cc-8881-c89952535940,SESCO,II.1.1,Mendoza,AR-M,annual,2022,bioetanol combustion consumption by to the public,230.04939276,TJ,CH4,10.0,kg/TJ,2300.4939276,kg +50f02913-a488-3908-accd-490272a3594d,SESCO,II.1.1,Mendoza,AR-M,annual,2022,bioetanol combustion consumption by to the public,230.04939276,TJ,N2O,0.6,kg/TJ,138.02963565599998,kg +ed19a4fe-8a5a-3775-a868-9643e48b2110,SESCO,II.1.1,Misiones,AR-N,annual,2022,bioetanol combustion consumption by to the public,110.39129387999999,TJ,CH4,10.0,kg/TJ,1103.9129388,kg +a2928727-89f4-3efb-8598-e6ad582a908b,SESCO,II.1.1,Misiones,AR-N,annual,2022,bioetanol combustion consumption by to the public,110.39129387999999,TJ,N2O,0.6,kg/TJ,66.234776328,kg +6b06517f-d3be-38ac-962a-8923cf773306,SESCO,II.1.1,Neuquén,AR-Q,annual,2022,bioetanol combustion consumption by to the public,154.56775104,TJ,CH4,10.0,kg/TJ,1545.6775103999998,kg +1c19fc22-f356-3000-a6e8-3a71b892f223,SESCO,II.1.1,Neuquén,AR-Q,annual,2022,bioetanol combustion consumption by to the public,154.56775104,TJ,N2O,0.6,kg/TJ,92.740650624,kg +e975fffc-74bd-3311-9d2c-32ab8ac8d18d,SESCO,II.1.1,Rio Negro,AR-R,annual,2022,bioetanol combustion consumption by to the public,140.66370899999998,TJ,CH4,10.0,kg/TJ,1406.6370899999997,kg +f2ccb9fc-a6dc-3b84-b25b-c0b11956acad,SESCO,II.1.1,Rio Negro,AR-R,annual,2022,bioetanol combustion consumption by to the public,140.66370899999998,TJ,N2O,0.6,kg/TJ,84.39822539999999,kg +9f37e8d8-23ab-3733-a279-6b0320052ba0,SESCO,II.1.1,Salta,AR-A,annual,2022,bioetanol combustion consumption by to the public,96.76845143999999,TJ,CH4,10.0,kg/TJ,967.6845143999999,kg +74b44859-2a1d-354e-b3ab-defd2c9afa78,SESCO,II.1.1,Salta,AR-A,annual,2022,bioetanol combustion consumption by to the public,96.76845143999999,TJ,N2O,0.6,kg/TJ,58.061070863999994,kg +6eb387be-7b74-30f0-817b-590e01f4266b,SESCO,II.1.1,San Juan,AR-J,annual,2022,bioetanol combustion consumption by to the public,64.2413268,TJ,CH4,10.0,kg/TJ,642.413268,kg +b523e817-d885-3db0-8fb3-11ff1b51fe81,SESCO,II.1.1,San Juan,AR-J,annual,2022,bioetanol combustion consumption by to the public,64.2413268,TJ,N2O,0.6,kg/TJ,38.54479608,kg +e6a06a5b-a571-3572-84f9-5f644f60c2dd,SESCO,II.1.1,San Luis,AR-D,annual,2022,bioetanol combustion consumption by to the public,55.14579791999999,TJ,CH4,10.0,kg/TJ,551.4579792,kg +2fc54278-c7a4-3b05-b48e-85defb968f26,SESCO,II.1.1,San Luis,AR-D,annual,2022,bioetanol combustion consumption by to the public,55.14579791999999,TJ,N2O,0.6,kg/TJ,33.087478751999996,kg +46bb5897-f49e-374b-9d08-5829b9de23f6,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2022,bioetanol combustion consumption by to the public,51.87621348,TJ,CH4,10.0,kg/TJ,518.7621348,kg +dc7a47c1-9565-3592-a75e-5fe72f22c883,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2022,bioetanol combustion consumption by to the public,51.87621348,TJ,N2O,0.6,kg/TJ,31.125728087999995,kg +9b13714c-14ca-322d-a7ee-910fe423c605,SESCO,II.1.1,Santa Fe,AR-S,annual,2022,bioetanol combustion consumption by to the public,308.89009152,TJ,CH4,10.0,kg/TJ,3088.9009152,kg +300c9679-0fb1-383c-85eb-cf85257a9042,SESCO,II.1.1,Santa Fe,AR-S,annual,2022,bioetanol combustion consumption by to the public,308.89009152,TJ,N2O,0.6,kg/TJ,185.334054912,kg +d9f85088-85d8-31b2-9ec4-6a7b072a9e9b,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2022,bioetanol combustion consumption by to the public,54.98985995999999,TJ,CH4,10.0,kg/TJ,549.8985995999999,kg +a4b11201-030f-35f9-afee-c9d3f1d3ceb1,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2022,bioetanol combustion consumption by to the public,54.98985995999999,TJ,N2O,0.6,kg/TJ,32.99391597599999,kg +ce4f9412-085e-3e37-90ce-5c3a5d12d8c8,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2022,bioetanol combustion consumption by to the public,33.820642799999995,TJ,CH4,10.0,kg/TJ,338.20642799999996,kg +d15d3e45-89b3-398c-b949-5cc82cc61fe8,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2022,bioetanol combustion consumption by to the public,33.820642799999995,TJ,N2O,0.6,kg/TJ,20.292385679999995,kg +71b4b7f7-c4ae-394a-b4dc-ef8750af14fc,SESCO,II.1.1,Tucuman,AR-T,annual,2022,bioetanol combustion consumption by to the public,80.60458716,TJ,CH4,10.0,kg/TJ,806.0458715999999,kg +03b37faa-6db1-3f20-a1d9-f52c9d1403ed,SESCO,II.1.1,Tucuman,AR-T,annual,2022,bioetanol combustion consumption by to the public,80.60458716,TJ,N2O,0.6,kg/TJ,48.362752296,kg +2e005f71-b0b5-3ba1-9733-192aefc66a1a,SESCO,II.1.1,Buenos Aires,AR-B,annual,2022,bioetanol combustion consumption by freight transport,54.47091888,TJ,CH4,10.0,kg/TJ,544.7091888,kg +431e21fe-8879-371c-9446-f71db1470d89,SESCO,II.1.1,Buenos Aires,AR-B,annual,2022,bioetanol combustion consumption by freight transport,54.47091888,TJ,N2O,0.6,kg/TJ,32.682551327999995,kg +eafea905-a413-339c-99f6-e11c548c1408,SESCO,II.1.1,Capital Federal,AR-C,annual,2022,bioetanol combustion consumption by freight transport,7.298407799999999,TJ,CH4,10.0,kg/TJ,72.98407799999998,kg +d316b37d-2532-31e6-b865-f39ee5a276ed,SESCO,II.1.1,Capital Federal,AR-C,annual,2022,bioetanol combustion consumption by freight transport,7.298407799999999,TJ,N2O,0.6,kg/TJ,4.379044679999999,kg +2dadd01e-3bc6-38c2-96bb-d0634248fa2d,SESCO,II.1.1,Catamarca,AR-K,annual,2022,bioetanol combustion consumption by freight transport,0.3962357999999999,TJ,CH4,10.0,kg/TJ,3.962357999999999,kg +54b27e2a-f6f2-3a39-b136-a92bc0452e7b,SESCO,II.1.1,Catamarca,AR-K,annual,2022,bioetanol combustion consumption by freight transport,0.3962357999999999,TJ,N2O,0.6,kg/TJ,0.23774147999999995,kg +05b7a51f-d018-3d5a-a2a6-e938eae53bdd,SESCO,II.1.1,Chaco,AR-H,annual,2022,bioetanol combustion consumption by freight transport,1.4980269599999998,TJ,CH4,10.0,kg/TJ,14.980269599999998,kg +a6e27fe3-f602-30c0-9bb9-b0c11381a8c8,SESCO,II.1.1,Chaco,AR-H,annual,2022,bioetanol combustion consumption by freight transport,1.4980269599999998,TJ,N2O,0.6,kg/TJ,0.8988161759999999,kg +2437abe5-04d2-3c31-8c16-93da5871e301,SESCO,II.1.1,Chubut,AR-U,annual,2022,bioetanol combustion consumption by freight transport,1.8252410399999996,TJ,CH4,10.0,kg/TJ,18.252410399999995,kg +cd3ff636-313c-39dc-a089-ab6682bffd53,SESCO,II.1.1,Chubut,AR-U,annual,2022,bioetanol combustion consumption by freight transport,1.8252410399999996,TJ,N2O,0.6,kg/TJ,1.0951446239999998,kg +ce593eea-87e2-3bac-938c-d6a3447be705,SESCO,II.1.1,Corrientes,AR-W,annual,2022,bioetanol combustion consumption by freight transport,1.5159214799999998,TJ,CH4,10.0,kg/TJ,15.159214799999997,kg +28585b97-3745-3a6c-bc1c-01e756701e06,SESCO,II.1.1,Corrientes,AR-W,annual,2022,bioetanol combustion consumption by freight transport,1.5159214799999998,TJ,N2O,0.6,kg/TJ,0.9095528879999999,kg +d563c427-014b-3cf5-91ce-2a5e4e146ec4,SESCO,II.1.1,Córdoba,AR-X,annual,2022,bioetanol combustion consumption by freight transport,8.9983872,TJ,CH4,10.0,kg/TJ,89.98387199999999,kg +7c98f2a2-004e-392d-beee-59eaf21943c9,SESCO,II.1.1,Córdoba,AR-X,annual,2022,bioetanol combustion consumption by freight transport,8.9983872,TJ,N2O,0.6,kg/TJ,5.39903232,kg +e18bb183-8fb4-3c1d-bdab-df017bf92367,SESCO,II.1.1,Entre Rios,AR-E,annual,2022,bioetanol combustion consumption by freight transport,3.2389081199999996,TJ,CH4,10.0,kg/TJ,32.38908119999999,kg +ff0e7f2d-9e40-3bae-8c2d-cb13cd51caf6,SESCO,II.1.1,Entre Rios,AR-E,annual,2022,bioetanol combustion consumption by freight transport,3.2389081199999996,TJ,N2O,0.6,kg/TJ,1.9433448719999997,kg +781ab786-57fb-37f8-9f70-a4b36ebfd9a9,SESCO,II.1.1,Formosa,AR-P,annual,2022,bioetanol combustion consumption by freight transport,0.48315203999999995,TJ,CH4,10.0,kg/TJ,4.8315204,kg +641d8085-150f-3e6a-bdf6-173224152a41,SESCO,II.1.1,Formosa,AR-P,annual,2022,bioetanol combustion consumption by freight transport,0.48315203999999995,TJ,N2O,0.6,kg/TJ,0.28989122399999995,kg +afb5090a-d9e7-326f-9c02-248cdd774846,SESCO,II.1.1,Jujuy,AR-Y,annual,2022,bioetanol combustion consumption by freight transport,0.73623168,TJ,CH4,10.0,kg/TJ,7.3623168,kg +3fa9660d-b7c9-3b3c-b743-b20c925a5578,SESCO,II.1.1,Jujuy,AR-Y,annual,2022,bioetanol combustion consumption by freight transport,0.73623168,TJ,N2O,0.6,kg/TJ,0.44173900800000004,kg +22fd9657-6a1f-36e7-9f7b-14b0987650ca,SESCO,II.1.1,La Pampa,AR-L,annual,2022,bioetanol combustion consumption by freight transport,0.9177332399999999,TJ,CH4,10.0,kg/TJ,9.1773324,kg +2c3baca5-c4e8-3395-8706-5903a81e71bf,SESCO,II.1.1,La Pampa,AR-L,annual,2022,bioetanol combustion consumption by freight transport,0.9177332399999999,TJ,N2O,0.6,kg/TJ,0.5506399439999999,kg +a756a078-3f17-3c5d-82b6-d8e6a4c61217,SESCO,II.1.1,La Rioja,AR-F,annual,2022,bioetanol combustion consumption by freight transport,0.68254812,TJ,CH4,10.0,kg/TJ,6.8254812,kg +f398b893-1684-3ec4-b904-31fff587a38c,SESCO,II.1.1,La Rioja,AR-F,annual,2022,bioetanol combustion consumption by freight transport,0.68254812,TJ,N2O,0.6,kg/TJ,0.409528872,kg +182e7add-0577-3b5f-a639-236975bcd4dc,SESCO,II.1.1,Mendoza,AR-M,annual,2022,bioetanol combustion consumption by freight transport,4.1413032,TJ,CH4,10.0,kg/TJ,41.413032,kg +b9587177-0bb3-3df7-b68f-f1ff9071c7f5,SESCO,II.1.1,Mendoza,AR-M,annual,2022,bioetanol combustion consumption by freight transport,4.1413032,TJ,N2O,0.6,kg/TJ,2.48478192,kg +6a774ba3-7630-3a2b-b805-541bdd1f61ec,SESCO,II.1.1,Misiones,AR-N,annual,2022,bioetanol combustion consumption by freight transport,1.3932161999999997,TJ,CH4,10.0,kg/TJ,13.932161999999996,kg +6cd038b2-d625-3e91-b44e-8b77685f55e7,SESCO,II.1.1,Misiones,AR-N,annual,2022,bioetanol combustion consumption by freight transport,1.3932161999999997,TJ,N2O,0.6,kg/TJ,0.8359297199999998,kg +02c38665-581e-381c-bc4f-429ce205f97a,SESCO,II.1.1,Neuquén,AR-Q,annual,2022,bioetanol combustion consumption by freight transport,1.6769721599999998,TJ,CH4,10.0,kg/TJ,16.769721599999997,kg +cd1320d0-8d01-3f43-be56-cc12a39fdc09,SESCO,II.1.1,Neuquén,AR-Q,annual,2022,bioetanol combustion consumption by freight transport,1.6769721599999998,TJ,N2O,0.6,kg/TJ,1.006183296,kg +62f79345-720d-3a06-99e0-41ce260d02b7,SESCO,II.1.1,Rio Negro,AR-R,annual,2022,bioetanol combustion consumption by freight transport,1.9070445599999999,TJ,CH4,10.0,kg/TJ,19.0704456,kg +9092abf4-d3da-330b-b0e3-b9f964393f87,SESCO,II.1.1,Rio Negro,AR-R,annual,2022,bioetanol combustion consumption by freight transport,1.9070445599999999,TJ,N2O,0.6,kg/TJ,1.1442267359999998,kg +49a29f4c-f596-3590-a41a-3162d739afe7,SESCO,II.1.1,Salta,AR-A,annual,2022,bioetanol combustion consumption by freight transport,2.47455648,TJ,CH4,10.0,kg/TJ,24.7455648,kg +02d512ac-9c2b-3302-b16a-f2ba8ca368e2,SESCO,II.1.1,Salta,AR-A,annual,2022,bioetanol combustion consumption by freight transport,2.47455648,TJ,N2O,0.6,kg/TJ,1.4847338879999998,kg +3f555b9b-1266-3e17-9a83-e6debc88ae17,SESCO,II.1.1,San Juan,AR-J,annual,2022,bioetanol combustion consumption by freight transport,1.0966784399999998,TJ,CH4,10.0,kg/TJ,10.966784399999998,kg +a413a6a0-5ba2-3859-a76c-693b618dc39d,SESCO,II.1.1,San Juan,AR-J,annual,2022,bioetanol combustion consumption by freight transport,1.0966784399999998,TJ,N2O,0.6,kg/TJ,0.6580070639999999,kg +4fa2158d-4936-37fa-bbca-fc396461b630,SESCO,II.1.1,San Luis,AR-D,annual,2022,bioetanol combustion consumption by freight transport,0.9484095599999999,TJ,CH4,10.0,kg/TJ,9.484095599999998,kg +ccabcbee-9310-33c3-8e2a-c51588b7bebf,SESCO,II.1.1,San Luis,AR-D,annual,2022,bioetanol combustion consumption by freight transport,0.9484095599999999,TJ,N2O,0.6,kg/TJ,0.5690457359999999,kg +edbacc6a-1694-3451-b6ef-c6203db2dd2a,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2022,bioetanol combustion consumption by freight transport,1.0097622,TJ,CH4,10.0,kg/TJ,10.097622,kg +a0bcd035-84ea-33b4-93b1-c67a0b0ade2e,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2022,bioetanol combustion consumption by freight transport,1.0097622,TJ,N2O,0.6,kg/TJ,0.6058573199999999,kg +a7aa0c85-11b4-3763-bb21-0f9023b8133f,SESCO,II.1.1,Santa Fe,AR-S,annual,2022,bioetanol combustion consumption by freight transport,8.34907176,TJ,CH4,10.0,kg/TJ,83.4907176,kg +5834620a-4131-37ef-ac60-00a42b70ade7,SESCO,II.1.1,Santa Fe,AR-S,annual,2022,bioetanol combustion consumption by freight transport,8.34907176,TJ,N2O,0.6,kg/TJ,5.009443055999999,kg +ebc8cdfa-8cf2-38c2-b841-e0a10d956c33,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2022,bioetanol combustion consumption by freight transport,0.7848025199999998,TJ,CH4,10.0,kg/TJ,7.848025199999999,kg +795fe18b-4db2-3342-a1da-951c8034bbb3,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2022,bioetanol combustion consumption by freight transport,0.7848025199999998,TJ,N2O,0.6,kg/TJ,0.4708815119999999,kg +ef0ea6a7-0491-3996-932e-3ecc5ce93728,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2022,bioetanol combustion consumption by freight transport,0.9611913599999999,TJ,CH4,10.0,kg/TJ,9.6119136,kg +16ed9d4d-7710-3d18-a444-184dd945ce4f,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2022,bioetanol combustion consumption by freight transport,0.9611913599999999,TJ,N2O,0.6,kg/TJ,0.576714816,kg +850bae4b-f8a1-3ae7-bd04-e0e5503fd6e0,SESCO,II.1.1,Tucuman,AR-T,annual,2022,bioetanol combustion consumption by freight transport,2.71996704,TJ,CH4,10.0,kg/TJ,27.1996704,kg +3c0b1e2d-35a4-3912-a03f-327fa6f30c06,SESCO,II.1.1,Tucuman,AR-T,annual,2022,bioetanol combustion consumption by freight transport,2.71996704,TJ,N2O,0.6,kg/TJ,1.6319802239999999,kg +8d1ab358-c477-3986-8efc-83f4fd1cd954,SESCO,II.1.1,Buenos Aires,AR-B,annual,2022,bioetanol combustion consumption by freight transport,56.861115479999995,TJ,CH4,10.0,kg/TJ,568.6111547999999,kg +fb0a9a3e-77f1-3e84-a7d6-29f35b649e3c,SESCO,II.1.1,Buenos Aires,AR-B,annual,2022,bioetanol combustion consumption by freight transport,56.861115479999995,TJ,N2O,0.6,kg/TJ,34.116669288,kg +8725cb61-dd8e-31b9-9aa2-6f6f48632e83,SESCO,II.1.1,Capital Federal,AR-C,annual,2022,bioetanol combustion consumption by freight transport,10.07717112,TJ,CH4,10.0,kg/TJ,100.7717112,kg +6df9f63c-fa73-3aea-85b0-162bef932555,SESCO,II.1.1,Capital Federal,AR-C,annual,2022,bioetanol combustion consumption by freight transport,10.07717112,TJ,N2O,0.6,kg/TJ,6.0463026719999995,kg +2006156a-04ab-3c09-98d3-eb8a1a322a50,SESCO,II.1.1,Catamarca,AR-K,annual,2022,bioetanol combustion consumption by freight transport,0.1661634,TJ,CH4,10.0,kg/TJ,1.6616339999999998,kg +da2f4ccc-eb3d-3b9a-8dec-e796af178a4a,SESCO,II.1.1,Catamarca,AR-K,annual,2022,bioetanol combustion consumption by freight transport,0.1661634,TJ,N2O,0.6,kg/TJ,0.09969803999999999,kg +92b35201-c26e-31e4-9be2-b9bdd2e63812,SESCO,II.1.1,Chaco,AR-H,annual,2022,bioetanol combustion consumption by freight transport,1.39832892,TJ,CH4,10.0,kg/TJ,13.9832892,kg +12ba80d0-5008-3c23-95ad-764cbcc91987,SESCO,II.1.1,Chaco,AR-H,annual,2022,bioetanol combustion consumption by freight transport,1.39832892,TJ,N2O,0.6,kg/TJ,0.8389973519999999,kg +1f12f329-7800-3019-9f57-dbba8cc466de,SESCO,II.1.1,Chubut,AR-U,annual,2022,bioetanol combustion consumption by freight transport,1.3088563199999999,TJ,CH4,10.0,kg/TJ,13.0885632,kg +42894ba5-91ea-3473-a2b0-6cdb14f968f4,SESCO,II.1.1,Chubut,AR-U,annual,2022,bioetanol combustion consumption by freight transport,1.3088563199999999,TJ,N2O,0.6,kg/TJ,0.7853137919999998,kg +ccce4ccf-1755-3fa5-9100-b586feab74e7,SESCO,II.1.1,Corrientes,AR-W,annual,2022,bioetanol combustion consumption by freight transport,1.8099028799999999,TJ,CH4,10.0,kg/TJ,18.0990288,kg +30c5f6cd-49e1-3ce4-96a7-ef861c600299,SESCO,II.1.1,Corrientes,AR-W,annual,2022,bioetanol combustion consumption by freight transport,1.8099028799999999,TJ,N2O,0.6,kg/TJ,1.0859417279999999,kg +140b693a-a0e6-33ba-8081-e00fab3cedba,SESCO,II.1.1,Córdoba,AR-X,annual,2022,bioetanol combustion consumption by freight transport,11.081820599999999,TJ,CH4,10.0,kg/TJ,110.81820599999999,kg +933f97cb-d014-34e7-a4d6-880774e66ccb,SESCO,II.1.1,Córdoba,AR-X,annual,2022,bioetanol combustion consumption by freight transport,11.081820599999999,TJ,N2O,0.6,kg/TJ,6.649092359999999,kg +8ed3b188-8c21-35bd-ab80-7e97c28419e6,SESCO,II.1.1,Entre Rios,AR-E,annual,2022,bioetanol combustion consumption by freight transport,2.9909412,TJ,CH4,10.0,kg/TJ,29.909412,kg +a47cb48c-1b6d-3e27-aba5-0ac39698b610,SESCO,II.1.1,Entre Rios,AR-E,annual,2022,bioetanol combustion consumption by freight transport,2.9909412,TJ,N2O,0.6,kg/TJ,1.79456472,kg +a170682a-912c-3f8e-9069-2b831aa548a6,SESCO,II.1.1,Formosa,AR-P,annual,2022,bioetanol combustion consumption by freight transport,0.31187592,TJ,CH4,10.0,kg/TJ,3.1187591999999995,kg +99b8c909-7180-3f22-97e2-9cce0c07a16f,SESCO,II.1.1,Formosa,AR-P,annual,2022,bioetanol combustion consumption by freight transport,0.31187592,TJ,N2O,0.6,kg/TJ,0.18712555199999997,kg +f5a7de29-060c-3662-9788-8f19cb9e7442,SESCO,II.1.1,Jujuy,AR-Y,annual,2022,bioetanol combustion consumption by freight transport,0.40390488,TJ,CH4,10.0,kg/TJ,4.0390488,kg +c833ae67-5938-3ec1-a7b5-9815a769a68d,SESCO,II.1.1,Jujuy,AR-Y,annual,2022,bioetanol combustion consumption by freight transport,0.40390488,TJ,N2O,0.6,kg/TJ,0.242342928,kg +1b2751fe-51d9-3040-9153-49863b6f221d,SESCO,II.1.1,La Pampa,AR-L,annual,2022,bioetanol combustion consumption by freight transport,1.1375802,TJ,CH4,10.0,kg/TJ,11.375802,kg +24725ea3-0ff8-3213-ba54-a348980e7131,SESCO,II.1.1,La Pampa,AR-L,annual,2022,bioetanol combustion consumption by freight transport,1.1375802,TJ,N2O,0.6,kg/TJ,0.68254812,kg +f0602fcf-5fb2-364a-aa71-7b3179f3088a,SESCO,II.1.1,La Rioja,AR-F,annual,2022,bioetanol combustion consumption by freight transport,0.5879627999999999,TJ,CH4,10.0,kg/TJ,5.8796279999999985,kg +fa47ebe5-7bb7-308f-9a06-ffd3882a42e8,SESCO,II.1.1,La Rioja,AR-F,annual,2022,bioetanol combustion consumption by freight transport,0.5879627999999999,TJ,N2O,0.6,kg/TJ,0.3527776799999999,kg +4d772dd5-75f5-31f6-bb81-8f1713fa74f6,SESCO,II.1.1,Mendoza,AR-M,annual,2022,bioetanol combustion consumption by freight transport,5.7773736,TJ,CH4,10.0,kg/TJ,57.773736,kg +7d14d15e-86d3-3f87-b7ec-d7aefec47ec0,SESCO,II.1.1,Mendoza,AR-M,annual,2022,bioetanol combustion consumption by freight transport,5.7773736,TJ,N2O,0.6,kg/TJ,3.46642416,kg +b587720d-06ec-3358-a985-d77c025c5c55,SESCO,II.1.1,Misiones,AR-N,annual,2022,bioetanol combustion consumption by freight transport,1.4494561199999998,TJ,CH4,10.0,kg/TJ,14.494561199999998,kg +02f7af03-ab3f-3f0e-8510-757f82d318a2,SESCO,II.1.1,Misiones,AR-N,annual,2022,bioetanol combustion consumption by freight transport,1.4494561199999998,TJ,N2O,0.6,kg/TJ,0.8696736719999999,kg +7992eb50-ca19-3749-b69e-443492e2f8c7,SESCO,II.1.1,Neuquén,AR-Q,annual,2022,bioetanol combustion consumption by freight transport,3.56356584,TJ,CH4,10.0,kg/TJ,35.6356584,kg +eb1bded1-5c26-3036-a1b6-601c964cfab1,SESCO,II.1.1,Neuquén,AR-Q,annual,2022,bioetanol combustion consumption by freight transport,3.56356584,TJ,N2O,0.6,kg/TJ,2.1381395039999997,kg +a47e1062-0b76-3d04-a8b5-6968b935ad6b,SESCO,II.1.1,Rio Negro,AR-R,annual,2022,bioetanol combustion consumption by freight transport,3.2337953999999995,TJ,CH4,10.0,kg/TJ,32.337953999999996,kg +7a383461-0973-3f9a-af13-675892608285,SESCO,II.1.1,Rio Negro,AR-R,annual,2022,bioetanol combustion consumption by freight transport,3.2337953999999995,TJ,N2O,0.6,kg/TJ,1.9402772399999997,kg +397cef0c-515c-313d-92aa-7cefdbb015e2,SESCO,II.1.1,Salta,AR-A,annual,2022,bioetanol combustion consumption by freight transport,1.9223827199999999,TJ,CH4,10.0,kg/TJ,19.2238272,kg +3d3a3329-f8d5-3957-b28d-a749fe177ca2,SESCO,II.1.1,Salta,AR-A,annual,2022,bioetanol combustion consumption by freight transport,1.9223827199999999,TJ,N2O,0.6,kg/TJ,1.153429632,kg +5ff36317-70b5-3819-b7d7-b9510b753c5f,SESCO,II.1.1,San Juan,AR-J,annual,2022,bioetanol combustion consumption by freight transport,0.7490134799999999,TJ,CH4,10.0,kg/TJ,7.490134799999999,kg +79642fec-3460-3122-a28f-d58ec40bb7c1,SESCO,II.1.1,San Juan,AR-J,annual,2022,bioetanol combustion consumption by freight transport,0.7490134799999999,TJ,N2O,0.6,kg/TJ,0.44940808799999993,kg +2f16a00e-5aa4-3040-89de-58b4be718254,SESCO,II.1.1,San Luis,AR-D,annual,2022,bioetanol combustion consumption by freight transport,0.80269704,TJ,CH4,10.0,kg/TJ,8.0269704,kg +fea7755e-81b9-3541-ab55-24930adf4934,SESCO,II.1.1,San Luis,AR-D,annual,2022,bioetanol combustion consumption by freight transport,0.80269704,TJ,N2O,0.6,kg/TJ,0.481618224,kg +aa5232b0-0006-3ce1-9d43-620c86ed31d1,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2022,bioetanol combustion consumption by freight transport,0.54450468,TJ,CH4,10.0,kg/TJ,5.4450468,kg +5e159361-1646-3c07-9b17-a50ba4b67669,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2022,bioetanol combustion consumption by freight transport,0.54450468,TJ,N2O,0.6,kg/TJ,0.32670280799999996,kg +385c351f-48fc-30e6-bea0-69ee5a0b598c,SESCO,II.1.1,Santa Fe,AR-S,annual,2022,bioetanol combustion consumption by freight transport,9.330714,TJ,CH4,10.0,kg/TJ,93.30714,kg +6f00359d-f11b-34df-9a4c-28e79e5c42f1,SESCO,II.1.1,Santa Fe,AR-S,annual,2022,bioetanol combustion consumption by freight transport,9.330714,TJ,N2O,0.6,kg/TJ,5.5984284,kg +c167b794-291b-3ac1-aa9f-a1dc81cc01f7,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2022,bioetanol combustion consumption by freight transport,0.5087156399999999,TJ,CH4,10.0,kg/TJ,5.0871564,kg +20c14a4c-b38b-3d96-9c40-441f07fb15b4,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2022,bioetanol combustion consumption by freight transport,0.5087156399999999,TJ,N2O,0.6,kg/TJ,0.30522938399999994,kg +acfdf1e8-cba5-3740-b03d-c96c3ab71b29,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2022,bioetanol combustion consumption by freight transport,0.6135263999999999,TJ,CH4,10.0,kg/TJ,6.135263999999999,kg +bc9ddd36-947f-3998-82c2-1d90a69bd42b,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2022,bioetanol combustion consumption by freight transport,0.6135263999999999,TJ,N2O,0.6,kg/TJ,0.3681158399999999,kg +2517bacc-da01-30c7-a301-22f07740dfa7,SESCO,II.1.1,Tucuman,AR-T,annual,2022,bioetanol combustion consumption by freight transport,1.3727653199999998,TJ,CH4,10.0,kg/TJ,13.727653199999999,kg +3393224c-e71c-3b0a-89f3-2c10c1a208c0,SESCO,II.1.1,Tucuman,AR-T,annual,2022,bioetanol combustion consumption by freight transport,1.3727653199999998,TJ,N2O,0.6,kg/TJ,0.8236591919999999,kg +7a054522-2924-3c49-8f37-3cb1f73c3047,SESCO,II.5.1,Buenos Aires,AR-B,annual,2023,bioetanol combustion consumption by agriculture machines,2.8350032399999994,TJ,CH4,10.0,kg/TJ,28.350032399999993,kg +2a2e0229-14c8-30c4-bfd6-b47cf27f8793,SESCO,II.5.1,Buenos Aires,AR-B,annual,2023,bioetanol combustion consumption by agriculture machines,2.8350032399999994,TJ,N2O,0.6,kg/TJ,1.7010019439999995,kg +47e75d01-5a6f-3511-8b2d-9f4c95bedfa0,SESCO,II.5.1,Córdoba,AR-X,annual,2023,bioetanol combustion consumption by agriculture machines,1.1478056399999998,TJ,CH4,10.0,kg/TJ,11.478056399999998,kg +42715fee-3881-3bd4-a740-0c02115a1963,SESCO,II.5.1,Córdoba,AR-X,annual,2023,bioetanol combustion consumption by agriculture machines,1.1478056399999998,TJ,N2O,0.6,kg/TJ,0.6886833839999998,kg +2b2c2c03-19ad-321f-8d12-c235e7a8a72b,SESCO,II.5.1,Tucuman,AR-T,annual,2023,bioetanol combustion consumption by agriculture machines,0.62375184,TJ,CH4,10.0,kg/TJ,6.237518399999999,kg +2d7234cd-9a8e-3953-add6-1df4d0e24059,SESCO,II.5.1,Tucuman,AR-T,annual,2023,bioetanol combustion consumption by agriculture machines,0.62375184,TJ,N2O,0.6,kg/TJ,0.37425110399999995,kg +273536c4-8acc-3654-bbbb-72832643be86,SESCO,II.5.1,Buenos Aires,AR-B,annual,2023,bioetanol combustion consumption by agriculture machines,0.36555948,TJ,CH4,10.0,kg/TJ,3.6555948,kg +19a87ded-8fe5-3fd6-8990-e4b7597f7fae,SESCO,II.5.1,Buenos Aires,AR-B,annual,2023,bioetanol combustion consumption by agriculture machines,0.36555948,TJ,N2O,0.6,kg/TJ,0.219335688,kg +439b43e1-7c4d-3997-9f8e-06ca2d9c954b,SESCO,II.5.1,Córdoba,AR-X,annual,2023,bioetanol combustion consumption by agriculture machines,0.12014891999999999,TJ,CH4,10.0,kg/TJ,1.2014892,kg +f369918c-b683-30de-bed7-78186b18c6c4,SESCO,II.5.1,Córdoba,AR-X,annual,2023,bioetanol combustion consumption by agriculture machines,0.12014891999999999,TJ,N2O,0.6,kg/TJ,0.072089352,kg +73a8d45d-19d9-3a22-9f0c-ad3df76b99ae,SESCO,II.5.1,Tucuman,AR-T,annual,2023,bioetanol combustion consumption by agriculture machines,0.015338159999999998,TJ,CH4,10.0,kg/TJ,0.15338159999999998,kg +40c67e36-df2c-35c5-9285-23a128ecbbce,SESCO,II.5.1,Tucuman,AR-T,annual,2023,bioetanol combustion consumption by agriculture machines,0.015338159999999998,TJ,N2O,0.6,kg/TJ,0.009202895999999999,kg +f33aec77-6c0d-3c4f-a5b7-e295bd351170,SESCO,II.1.1,Buenos Aires,AR-B,annual,2023,bioetanol combustion consumption by to the public,120.00320747999999,TJ,CH4,10.0,kg/TJ,1200.0320748,kg +76bcde04-8e15-3ed3-b1e5-f61fd4b7187f,SESCO,II.1.1,Buenos Aires,AR-B,annual,2023,bioetanol combustion consumption by to the public,120.00320747999999,TJ,N2O,0.6,kg/TJ,72.00192448799999,kg +11098db3-8867-3518-b302-84e2de3bff1b,SESCO,II.1.1,Capital Federal,AR-C,annual,2023,bioetanol combustion consumption by to the public,6.83570664,TJ,CH4,10.0,kg/TJ,68.3570664,kg +d9c517bf-d42f-3405-8f9d-67e8bf3d19de,SESCO,II.1.1,Capital Federal,AR-C,annual,2023,bioetanol combustion consumption by to the public,6.83570664,TJ,N2O,0.6,kg/TJ,4.101423983999999,kg +703ec5ee-392a-3fd0-8f88-401789781645,SESCO,II.1.1,Catamarca,AR-K,annual,2023,bioetanol combustion consumption by to the public,2.60237448,TJ,CH4,10.0,kg/TJ,26.0237448,kg +21063a3c-4bb5-300e-ae49-007bbfef7d63,SESCO,II.1.1,Catamarca,AR-K,annual,2023,bioetanol combustion consumption by to the public,2.60237448,TJ,N2O,0.6,kg/TJ,1.561424688,kg +5a217653-abe7-3d64-ab7c-3fc336d6b398,SESCO,II.1.1,Corrientes,AR-W,annual,2023,bioetanol combustion consumption by to the public,0.05368356,TJ,CH4,10.0,kg/TJ,0.5368356,kg +9835cb43-f60b-3286-ad93-a32af17c08a8,SESCO,II.1.1,Corrientes,AR-W,annual,2023,bioetanol combustion consumption by to the public,0.05368356,TJ,N2O,0.6,kg/TJ,0.032210136,kg +f4979ef3-98a5-3716-aba1-95e20cfbb283,SESCO,II.1.1,Córdoba,AR-X,annual,2023,bioetanol combustion consumption by to the public,43.39932372,TJ,CH4,10.0,kg/TJ,433.99323719999995,kg +eca41356-40f6-3114-9add-4e2647474a0e,SESCO,II.1.1,Córdoba,AR-X,annual,2023,bioetanol combustion consumption by to the public,43.39932372,TJ,N2O,0.6,kg/TJ,26.039594232,kg +f9288476-e604-3b7d-85c4-f4c3603e50da,SESCO,II.1.1,Entre Rios,AR-E,annual,2023,bioetanol combustion consumption by to the public,12.697440119999998,TJ,CH4,10.0,kg/TJ,126.97440119999997,kg +ada28ac5-6c54-3194-82f5-00da42b52565,SESCO,II.1.1,Entre Rios,AR-E,annual,2023,bioetanol combustion consumption by to the public,12.697440119999998,TJ,N2O,0.6,kg/TJ,7.618464071999998,kg +c49a220e-a610-3f5f-ac9f-8fe9f134bc00,SESCO,II.1.1,La Rioja,AR-F,annual,2023,bioetanol combustion consumption by to the public,0.11503619999999998,TJ,CH4,10.0,kg/TJ,1.1503619999999999,kg +dbad50e4-6ea2-312c-a60a-85e41b3e54c0,SESCO,II.1.1,La Rioja,AR-F,annual,2023,bioetanol combustion consumption by to the public,0.11503619999999998,TJ,N2O,0.6,kg/TJ,0.06902171999999998,kg +182f49ab-04ad-3968-803c-b528c773b64c,SESCO,II.1.1,Mendoza,AR-M,annual,2023,bioetanol combustion consumption by to the public,31.780667519999998,TJ,CH4,10.0,kg/TJ,317.8066752,kg +ef26f952-9d5a-3b7f-951f-84e15edf36b9,SESCO,II.1.1,Mendoza,AR-M,annual,2023,bioetanol combustion consumption by to the public,31.780667519999998,TJ,N2O,0.6,kg/TJ,19.068400511999997,kg +78990c8a-6539-30e0-a8aa-0d7847913780,SESCO,II.1.1,San Luis,AR-D,annual,2023,bioetanol combustion consumption by to the public,5.186854439999999,TJ,CH4,10.0,kg/TJ,51.86854439999999,kg +8c79d313-055d-3961-b146-3097dba94245,SESCO,II.1.1,San Luis,AR-D,annual,2023,bioetanol combustion consumption by to the public,5.186854439999999,TJ,N2O,0.6,kg/TJ,3.1121126639999996,kg +7d4f2f9c-7870-3e7a-bad4-42474c6d43c9,SESCO,II.1.1,Santa Fe,AR-S,annual,2023,bioetanol combustion consumption by to the public,37.24616519999999,TJ,CH4,10.0,kg/TJ,372.46165199999996,kg +d0d1b9fb-abb6-3762-8bad-b9839ff8f1a8,SESCO,II.1.1,Santa Fe,AR-S,annual,2023,bioetanol combustion consumption by to the public,37.24616519999999,TJ,N2O,0.6,kg/TJ,22.347699119999994,kg +7bc8449b-4d76-3f3d-b8af-67679e212f5d,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2023,bioetanol combustion consumption by to the public,4.785505919999999,TJ,CH4,10.0,kg/TJ,47.85505919999999,kg +297f83eb-de3c-3f08-adf3-1e3e0f970d41,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2023,bioetanol combustion consumption by to the public,4.785505919999999,TJ,N2O,0.6,kg/TJ,2.8713035519999996,kg +0290de53-b592-368b-9fd1-078dc3e2cec9,SESCO,II.1.1,Tucuman,AR-T,annual,2023,bioetanol combustion consumption by to the public,1.74343752,TJ,CH4,10.0,kg/TJ,17.4343752,kg +ea558be7-12a7-3750-a23f-3728fd2fc7be,SESCO,II.1.1,Tucuman,AR-T,annual,2023,bioetanol combustion consumption by to the public,1.74343752,TJ,N2O,0.6,kg/TJ,1.046062512,kg +2028e601-a71c-326e-8023-f37bb1e65aa4,SESCO,II.1.1,Buenos Aires,AR-B,annual,2023,bioetanol combustion consumption by to the public,8.995830839999998,TJ,CH4,10.0,kg/TJ,89.95830839999998,kg +776e4c97-851a-3347-b6b3-cfabeb4acbbd,SESCO,II.1.1,Buenos Aires,AR-B,annual,2023,bioetanol combustion consumption by to the public,8.995830839999998,TJ,N2O,0.6,kg/TJ,5.397498503999999,kg +f7c94193-2eab-3435-a776-1c28b47dfb1e,SESCO,II.1.1,Capital Federal,AR-C,annual,2023,bioetanol combustion consumption by to the public,0.86660604,TJ,CH4,10.0,kg/TJ,8.6660604,kg +af1df5fd-4ae9-3d17-8a3d-095971c7bd85,SESCO,II.1.1,Capital Federal,AR-C,annual,2023,bioetanol combustion consumption by to the public,0.86660604,TJ,N2O,0.6,kg/TJ,0.519963624,kg +769aa5b3-2d25-3bbd-b1a6-88fb7571078f,SESCO,II.1.1,Catamarca,AR-K,annual,2023,bioetanol combustion consumption by to the public,0.31443228,TJ,CH4,10.0,kg/TJ,3.1443228000000003,kg +655eab8f-f67c-3c8d-a876-3c24261686bc,SESCO,II.1.1,Catamarca,AR-K,annual,2023,bioetanol combustion consumption by to the public,0.31443228,TJ,N2O,0.6,kg/TJ,0.188659368,kg +7f84cb44-ca23-3ab2-901d-16f1ec67b558,SESCO,II.1.1,Córdoba,AR-X,annual,2023,bioetanol combustion consumption by to the public,4.64490612,TJ,CH4,10.0,kg/TJ,46.4490612,kg +1cca27fa-ec73-36df-9971-7930496254e4,SESCO,II.1.1,Córdoba,AR-X,annual,2023,bioetanol combustion consumption by to the public,4.64490612,TJ,N2O,0.6,kg/TJ,2.786943672,kg +ce99b815-5149-3071-8ac0-a508a58406bb,SESCO,II.1.1,Entre Rios,AR-E,annual,2023,bioetanol combustion consumption by to the public,1.6590776399999998,TJ,CH4,10.0,kg/TJ,16.5907764,kg +167e337d-de7f-38e0-8938-efbaa805207e,SESCO,II.1.1,Entre Rios,AR-E,annual,2023,bioetanol combustion consumption by to the public,1.6590776399999998,TJ,N2O,0.6,kg/TJ,0.9954465839999999,kg +c58b36c5-ae18-326e-b899-4c605c23d9e9,SESCO,II.1.1,La Rioja,AR-F,annual,2023,bioetanol combustion consumption by to the public,0.043458119999999996,TJ,CH4,10.0,kg/TJ,0.43458119999999995,kg +36293cf3-5f21-3b4a-abcf-b0d96db76071,SESCO,II.1.1,La Rioja,AR-F,annual,2023,bioetanol combustion consumption by to the public,0.043458119999999996,TJ,N2O,0.6,kg/TJ,0.026074871999999995,kg +ac13e83a-e3ff-369b-ba5f-7afeb47a0fbc,SESCO,II.1.1,Mendoza,AR-M,annual,2023,bioetanol combustion consumption by to the public,4.55543352,TJ,CH4,10.0,kg/TJ,45.554335200000004,kg +3758a8b5-64bd-36e3-8015-f3b66d84567d,SESCO,II.1.1,Mendoza,AR-M,annual,2023,bioetanol combustion consumption by to the public,4.55543352,TJ,N2O,0.6,kg/TJ,2.733260112,kg +a60cda4a-48a7-3347-9ae8-f38947ae4d0d,SESCO,II.1.1,San Luis,AR-D,annual,2023,bioetanol combustion consumption by to the public,0.21984696,TJ,CH4,10.0,kg/TJ,2.1984696,kg +2ae31a6c-68cc-3582-a167-733039afc1ef,SESCO,II.1.1,San Luis,AR-D,annual,2023,bioetanol combustion consumption by to the public,0.21984696,TJ,N2O,0.6,kg/TJ,0.131908176,kg +82c13ef0-70f6-3d36-977d-99e7a9e81e8b,SESCO,II.1.1,Santa Fe,AR-S,annual,2023,bioetanol combustion consumption by to the public,5.1612908399999995,TJ,CH4,10.0,kg/TJ,51.612908399999995,kg +422bd458-9674-3f44-837b-3714a39337c6,SESCO,II.1.1,Santa Fe,AR-S,annual,2023,bioetanol combustion consumption by to the public,5.1612908399999995,TJ,N2O,0.6,kg/TJ,3.0967745039999994,kg +c6a90c91-4ba4-3494-804b-646aebba0ad2,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2023,bioetanol combustion consumption by to the public,0.4090176,TJ,CH4,10.0,kg/TJ,4.090176,kg +e4b6f92f-503b-3958-afda-594138ed806f,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2023,bioetanol combustion consumption by to the public,0.4090176,TJ,N2O,0.6,kg/TJ,0.24541055999999997,kg +8f99b71d-4a54-39f5-976a-7e97dfe894c7,SESCO,II.1.1,Tucuman,AR-T,annual,2023,bioetanol combustion consumption by to the public,0.043458119999999996,TJ,CH4,10.0,kg/TJ,0.43458119999999995,kg +861a5393-ec1a-3545-80b6-88d54d244faa,SESCO,II.1.1,Tucuman,AR-T,annual,2023,bioetanol combustion consumption by to the public,0.043458119999999996,TJ,N2O,0.6,kg/TJ,0.026074871999999995,kg +c7e4da88-633f-3145-a072-1be606e17d8d,SESCO,II.5.1,Buenos Aires,AR-B,annual,2023,bioetanol combustion consumption by agriculture machines,0.5189410799999999,TJ,CH4,10.0,kg/TJ,5.189410799999999,kg +f491f814-96f7-383a-b6f9-1e8c676f4aec,SESCO,II.5.1,Buenos Aires,AR-B,annual,2023,bioetanol combustion consumption by agriculture machines,0.5189410799999999,TJ,N2O,0.6,kg/TJ,0.31136464799999997,kg +031c3d44-8d7c-3249-8059-e9d35950be9d,SESCO,II.5.1,Capital Federal,AR-C,annual,2023,bioetanol combustion consumption by agriculture machines,0.19939607999999998,TJ,CH4,10.0,kg/TJ,1.9939607999999998,kg +2e3aa5a2-0802-3ead-aec9-02fd615ecc85,SESCO,II.5.1,Capital Federal,AR-C,annual,2023,bioetanol combustion consumption by agriculture machines,0.19939607999999998,TJ,N2O,0.6,kg/TJ,0.11963764799999999,kg +91509ae1-f80c-31bf-82dd-c292018b8f30,SESCO,II.5.1,Córdoba,AR-X,annual,2023,bioetanol combustion consumption by agriculture machines,3.41785332,TJ,CH4,10.0,kg/TJ,34.1785332,kg +657147b5-ee80-37ca-9961-adfa2522b5e3,SESCO,II.5.1,Córdoba,AR-X,annual,2023,bioetanol combustion consumption by agriculture machines,3.41785332,TJ,N2O,0.6,kg/TJ,2.0507119919999997,kg +09c9c992-b529-305b-bb41-fcd71e0e6b3f,SESCO,II.5.1,Santa Fe,AR-S,annual,2023,bioetanol combustion consumption by agriculture machines,1.77411384,TJ,CH4,10.0,kg/TJ,17.7411384,kg +90404223-cff2-326a-b0e1-63fd2b55b6d1,SESCO,II.5.1,Santa Fe,AR-S,annual,2023,bioetanol combustion consumption by agriculture machines,1.77411384,TJ,N2O,0.6,kg/TJ,1.064468304,kg +ddb32f52-a346-30ee-a665-7dc9643e3a98,SESCO,II.5.1,Buenos Aires,AR-B,annual,2023,bioetanol combustion consumption by agriculture machines,0.06902172,TJ,CH4,10.0,kg/TJ,0.6902172,kg +dfdf3062-8170-3bb2-9c43-014024f98404,SESCO,II.5.1,Buenos Aires,AR-B,annual,2023,bioetanol combustion consumption by agriculture machines,0.06902172,TJ,N2O,0.6,kg/TJ,0.041413031999999995,kg +4491f7bb-5345-3cef-890c-cd8ed1ea1b00,SESCO,II.5.1,Córdoba,AR-X,annual,2023,bioetanol combustion consumption by agriculture machines,0.1789452,TJ,CH4,10.0,kg/TJ,1.789452,kg +b3e81c62-57d1-3b3f-a279-bfbeef77110b,SESCO,II.5.1,Córdoba,AR-X,annual,2023,bioetanol combustion consumption by agriculture machines,0.1789452,TJ,N2O,0.6,kg/TJ,0.10736712,kg +cd2a5fcf-ff96-307b-b619-3496dd5b164b,SESCO,II.5.1,Santa Fe,AR-S,annual,2023,bioetanol combustion consumption by agriculture machines,0.10481075999999999,TJ,CH4,10.0,kg/TJ,1.0481075999999998,kg +4cf820c9-c95b-3d3f-9128-467685d43941,SESCO,II.5.1,Santa Fe,AR-S,annual,2023,bioetanol combustion consumption by agriculture machines,0.10481075999999999,TJ,N2O,0.6,kg/TJ,0.062886456,kg +38fab0e7-3bad-3ce0-85cf-672bfe65cc96,SESCO,II.1.1,Buenos Aires,AR-B,annual,2023,bioetanol combustion consumption by to the public,77.54718059999999,TJ,CH4,10.0,kg/TJ,775.4718059999999,kg +6475cdd7-feae-38d3-ada0-c86fa41d0149,SESCO,II.1.1,Buenos Aires,AR-B,annual,2023,bioetanol combustion consumption by to the public,77.54718059999999,TJ,N2O,0.6,kg/TJ,46.52830835999999,kg +cb4aa4f4-d6c2-3ed9-829d-1ae01f1e2761,SESCO,II.1.1,Capital Federal,AR-C,annual,2023,bioetanol combustion consumption by to the public,8.86034376,TJ,CH4,10.0,kg/TJ,88.60343759999999,kg +9fe9a5dc-548a-3d05-952f-70ed028fa6d0,SESCO,II.1.1,Capital Federal,AR-C,annual,2023,bioetanol combustion consumption by to the public,8.86034376,TJ,N2O,0.6,kg/TJ,5.316206255999999,kg +ab6e4aef-99c3-38cd-80f2-0215312622fe,SESCO,II.1.1,Catamarca,AR-K,annual,2023,bioetanol combustion consumption by to the public,6.51616164,TJ,CH4,10.0,kg/TJ,65.1616164,kg +0022fe4c-42ef-3e8f-9334-4b37b1538aa1,SESCO,II.1.1,Catamarca,AR-K,annual,2023,bioetanol combustion consumption by to the public,6.51616164,TJ,N2O,0.6,kg/TJ,3.909696984,kg +8a373e49-c90d-3c0b-9868-d70729aee560,SESCO,II.1.1,Chaco,AR-H,annual,2023,bioetanol combustion consumption by to the public,22.544538839999998,TJ,CH4,10.0,kg/TJ,225.44538839999998,kg +fdf78f90-a410-3b12-aff2-eb9ea568081b,SESCO,II.1.1,Chaco,AR-H,annual,2023,bioetanol combustion consumption by to the public,22.544538839999998,TJ,N2O,0.6,kg/TJ,13.526723303999999,kg +5d7fbc4a-e60b-3ac6-8146-c6b84e65513c,SESCO,II.1.1,Corrientes,AR-W,annual,2023,bioetanol combustion consumption by to the public,21.0132792,TJ,CH4,10.0,kg/TJ,210.132792,kg +fc0ff1e1-1aad-33cb-a027-be540cc4f80f,SESCO,II.1.1,Corrientes,AR-W,annual,2023,bioetanol combustion consumption by to the public,21.0132792,TJ,N2O,0.6,kg/TJ,12.607967519999999,kg +cc824605-5a00-36c2-8f22-f09cbf3822b7,SESCO,II.1.1,Córdoba,AR-X,annual,2023,bioetanol combustion consumption by to the public,33.72861384,TJ,CH4,10.0,kg/TJ,337.2861384,kg +12eed125-38bf-3e8e-95a8-b6d0a700c5e1,SESCO,II.1.1,Córdoba,AR-X,annual,2023,bioetanol combustion consumption by to the public,33.72861384,TJ,N2O,0.6,kg/TJ,20.237168304,kg +8302f00b-616c-3b21-937d-a882d81e1682,SESCO,II.1.1,Entre Rios,AR-E,annual,2023,bioetanol combustion consumption by to the public,22.40393904,TJ,CH4,10.0,kg/TJ,224.0393904,kg +a9c2f4dd-6fdf-37c8-a528-73a02bfdbcc2,SESCO,II.1.1,Entre Rios,AR-E,annual,2023,bioetanol combustion consumption by to the public,22.40393904,TJ,N2O,0.6,kg/TJ,13.442363424,kg +2ff322c8-09f4-3d3e-a8a9-eb21d1a648c0,SESCO,II.1.1,Formosa,AR-P,annual,2023,bioetanol combustion consumption by to the public,2.88101772,TJ,CH4,10.0,kg/TJ,28.8101772,kg +64a99ec1-1bee-3094-8369-abf42967f0d5,SESCO,II.1.1,Formosa,AR-P,annual,2023,bioetanol combustion consumption by to the public,2.88101772,TJ,N2O,0.6,kg/TJ,1.7286106319999999,kg +90ebfb6a-fc33-3738-a2f8-eed905c5e08b,SESCO,II.1.1,La Rioja,AR-F,annual,2023,bioetanol combustion consumption by to the public,8.221253759999998,TJ,CH4,10.0,kg/TJ,82.21253759999998,kg +1d25eb87-80b0-326d-885a-ac9440bd4fd3,SESCO,II.1.1,La Rioja,AR-F,annual,2023,bioetanol combustion consumption by to the public,8.221253759999998,TJ,N2O,0.6,kg/TJ,4.932752255999999,kg +a68350ec-0a0e-3b59-bfa8-1ee7c2c75e05,SESCO,II.1.1,Mendoza,AR-M,annual,2023,bioetanol combustion consumption by to the public,32.97960036,TJ,CH4,10.0,kg/TJ,329.7960036,kg +90605d44-7904-3ace-b3dd-36257e2ab7fb,SESCO,II.1.1,Mendoza,AR-M,annual,2023,bioetanol combustion consumption by to the public,32.97960036,TJ,N2O,0.6,kg/TJ,19.787760216,kg +5ba1b653-84df-3246-9854-72e3d8ba5f50,SESCO,II.1.1,Misiones,AR-N,annual,2023,bioetanol combustion consumption by to the public,22.66724412,TJ,CH4,10.0,kg/TJ,226.67244119999998,kg +e4a8b73f-6e37-3204-b304-4bbb83be75a9,SESCO,II.1.1,Misiones,AR-N,annual,2023,bioetanol combustion consumption by to the public,22.66724412,TJ,N2O,0.6,kg/TJ,13.600346472,kg +b04472b6-400d-30c4-aa3a-c6558d5558e2,SESCO,II.1.1,San Juan,AR-J,annual,2023,bioetanol combustion consumption by to the public,8.80410384,TJ,CH4,10.0,kg/TJ,88.04103839999999,kg +cb0f4676-4254-36dc-b099-bc0c1abc82f3,SESCO,II.1.1,San Juan,AR-J,annual,2023,bioetanol combustion consumption by to the public,8.80410384,TJ,N2O,0.6,kg/TJ,5.282462304,kg +c35a4cd5-3118-35af-8dbc-c8d25f398206,SESCO,II.1.1,San Luis,AR-D,annual,2023,bioetanol combustion consumption by to the public,2.8043269199999994,TJ,CH4,10.0,kg/TJ,28.043269199999994,kg +4aeae859-6d37-3635-93d3-ed2375efb890,SESCO,II.1.1,San Luis,AR-D,annual,2023,bioetanol combustion consumption by to the public,2.8043269199999994,TJ,N2O,0.6,kg/TJ,1.6825961519999997,kg +25c6287a-badf-3dab-aaa1-4ef6afb3b27e,SESCO,II.1.1,Santa Fe,AR-S,annual,2023,bioetanol combustion consumption by to the public,46.99356588,TJ,CH4,10.0,kg/TJ,469.9356588,kg +cc6b98e5-8ddd-37ea-a177-aeab204ad8c6,SESCO,II.1.1,Santa Fe,AR-S,annual,2023,bioetanol combustion consumption by to the public,46.99356588,TJ,N2O,0.6,kg/TJ,28.196139528,kg +a74720d8-0cde-3fc1-ab80-188a8044fa58,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2023,bioetanol combustion consumption by to the public,13.415777279999999,TJ,CH4,10.0,kg/TJ,134.15777279999998,kg +633f9555-00d4-3848-99cf-49ba60d1fa1f,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2023,bioetanol combustion consumption by to the public,13.415777279999999,TJ,N2O,0.6,kg/TJ,8.049466368,kg +00b12c48-2084-3d14-aaff-0aa9021288b5,SESCO,II.1.1,Tucuman,AR-T,annual,2023,bioetanol combustion consumption by to the public,3.9700270799999995,TJ,CH4,10.0,kg/TJ,39.7002708,kg +b1490b25-4b3b-37e5-a6ad-a30341b9fd4f,SESCO,II.1.1,Tucuman,AR-T,annual,2023,bioetanol combustion consumption by to the public,3.9700270799999995,TJ,N2O,0.6,kg/TJ,2.382016248,kg +3abddf02-1ae9-3280-aeff-bf0e6ea581b0,SESCO,II.1.1,Buenos Aires,AR-B,annual,2023,bioetanol combustion consumption by to the public,9.545448239999999,TJ,CH4,10.0,kg/TJ,95.45448239999999,kg +d83b7243-8503-31ef-b78d-c25978af5136,SESCO,II.1.1,Buenos Aires,AR-B,annual,2023,bioetanol combustion consumption by to the public,9.545448239999999,TJ,N2O,0.6,kg/TJ,5.7272689439999995,kg +3af9ce6d-7843-3f7a-922e-8637a4b7508b,SESCO,II.1.1,Capital Federal,AR-C,annual,2023,bioetanol combustion consumption by to the public,1.3395326399999998,TJ,CH4,10.0,kg/TJ,13.395326399999998,kg +87a1971c-0fd3-37b0-a35a-86f1e9fb5893,SESCO,II.1.1,Capital Federal,AR-C,annual,2023,bioetanol combustion consumption by to the public,1.3395326399999998,TJ,N2O,0.6,kg/TJ,0.8037195839999999,kg +6adf77ad-7abf-3e4d-beb9-55cbe743c7ea,SESCO,II.1.1,Catamarca,AR-K,annual,2023,bioetanol combustion consumption by to the public,0.9279586799999998,TJ,CH4,10.0,kg/TJ,9.279586799999999,kg +0248a0c6-930e-30d9-b828-887d8345dde6,SESCO,II.1.1,Catamarca,AR-K,annual,2023,bioetanol combustion consumption by to the public,0.9279586799999998,TJ,N2O,0.6,kg/TJ,0.5567752079999999,kg +90f5d88e-d0f2-361b-b6f9-a4a0d75741ae,SESCO,II.1.1,Chaco,AR-H,annual,2023,bioetanol combustion consumption by to the public,1.8150156,TJ,CH4,10.0,kg/TJ,18.150156,kg +7c1547ad-ccb6-31d0-8c7a-a0d39956030a,SESCO,II.1.1,Chaco,AR-H,annual,2023,bioetanol combustion consumption by to the public,1.8150156,TJ,N2O,0.6,kg/TJ,1.08900936,kg +0a02db59-0184-3b8f-b36d-5a62f5d02c7b,SESCO,II.1.1,Corrientes,AR-W,annual,2023,bioetanol combustion consumption by to the public,1.04299488,TJ,CH4,10.0,kg/TJ,10.4299488,kg +17a96deb-5cf6-375b-a101-def73b1a9c27,SESCO,II.1.1,Corrientes,AR-W,annual,2023,bioetanol combustion consumption by to the public,1.04299488,TJ,N2O,0.6,kg/TJ,0.625796928,kg +c3cf119e-e0fa-37bd-ab6b-06484edf5eaa,SESCO,II.1.1,Córdoba,AR-X,annual,2023,bioetanol combustion consumption by to the public,4.2614521199999995,TJ,CH4,10.0,kg/TJ,42.6145212,kg +bf575a8a-f380-375f-9cb3-610582d49036,SESCO,II.1.1,Córdoba,AR-X,annual,2023,bioetanol combustion consumption by to the public,4.2614521199999995,TJ,N2O,0.6,kg/TJ,2.5568712719999995,kg +5f013935-ce83-3ead-9aa2-db8256a6176f,SESCO,II.1.1,Entre Rios,AR-E,annual,2023,bioetanol combustion consumption by to the public,2.8528977599999994,TJ,CH4,10.0,kg/TJ,28.528977599999994,kg +329010d0-87da-3d4b-8eac-e0aeb01a0d29,SESCO,II.1.1,Entre Rios,AR-E,annual,2023,bioetanol combustion consumption by to the public,2.8528977599999994,TJ,N2O,0.6,kg/TJ,1.7117386559999996,kg +44ebe84b-d726-377f-a2f0-f81876b95a81,SESCO,II.1.1,Formosa,AR-P,annual,2023,bioetanol combustion consumption by to the public,0.18150155999999998,TJ,CH4,10.0,kg/TJ,1.8150155999999997,kg +c495d050-7396-38e8-a0a6-4119873e1c99,SESCO,II.1.1,Formosa,AR-P,annual,2023,bioetanol combustion consumption by to the public,0.18150155999999998,TJ,N2O,0.6,kg/TJ,0.10890093599999999,kg +825272ac-ce1b-31f6-8cae-0c3e9713af5d,SESCO,II.1.1,La Rioja,AR-F,annual,2023,bioetanol combustion consumption by to the public,0.7643516399999999,TJ,CH4,10.0,kg/TJ,7.643516399999999,kg +32252a61-3587-3b84-a3e0-60a784a2687a,SESCO,II.1.1,La Rioja,AR-F,annual,2023,bioetanol combustion consumption by to the public,0.7643516399999999,TJ,N2O,0.6,kg/TJ,0.4586109839999999,kg +94b91ffa-6179-31e4-a79f-f461bd2ec011,SESCO,II.1.1,Mendoza,AR-M,annual,2023,bioetanol combustion consumption by to the public,1.71531756,TJ,CH4,10.0,kg/TJ,17.153175599999997,kg +df6ea4f2-3113-3448-8aa1-21ec2cef8265,SESCO,II.1.1,Mendoza,AR-M,annual,2023,bioetanol combustion consumption by to the public,1.71531756,TJ,N2O,0.6,kg/TJ,1.029190536,kg +71df75f0-2a5c-3e23-9872-2915075e2ba1,SESCO,II.1.1,Misiones,AR-N,annual,2023,bioetanol combustion consumption by to the public,1.3906598399999999,TJ,CH4,10.0,kg/TJ,13.906598399999998,kg +8d389d53-6b0c-3b40-9fa2-b5f638df5310,SESCO,II.1.1,Misiones,AR-N,annual,2023,bioetanol combustion consumption by to the public,1.3906598399999999,TJ,N2O,0.6,kg/TJ,0.8343959039999999,kg +c9abc601-a2e5-394a-ae16-ffbfba4e0516,SESCO,II.1.1,San Juan,AR-J,annual,2023,bioetanol combustion consumption by to the public,1.2142709999999999,TJ,CH4,10.0,kg/TJ,12.14271,kg +df338cd4-89eb-347a-b439-9064937fba37,SESCO,II.1.1,San Juan,AR-J,annual,2023,bioetanol combustion consumption by to the public,1.2142709999999999,TJ,N2O,0.6,kg/TJ,0.7285626,kg +f2c11148-e354-3dd8-909e-b658c7596d05,SESCO,II.1.1,San Luis,AR-D,annual,2023,bioetanol combustion consumption by to the public,0.23518511999999997,TJ,CH4,10.0,kg/TJ,2.3518511999999996,kg +dd5b7138-5619-30f2-b82f-1e568b9967fd,SESCO,II.1.1,San Luis,AR-D,annual,2023,bioetanol combustion consumption by to the public,0.23518511999999997,TJ,N2O,0.6,kg/TJ,0.14111107199999998,kg +7d303ed7-9f41-3c99-aff0-cde664f2767d,SESCO,II.1.1,Santa Fe,AR-S,annual,2023,bioetanol combustion consumption by to the public,4.897985759999999,TJ,CH4,10.0,kg/TJ,48.97985759999999,kg +037b99dd-2dc4-32c6-a7e2-85af49a60008,SESCO,II.1.1,Santa Fe,AR-S,annual,2023,bioetanol combustion consumption by to the public,4.897985759999999,TJ,N2O,0.6,kg/TJ,2.9387914559999992,kg +a5cf4916-6091-3565-8617-199702c07ea7,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2023,bioetanol combustion consumption by to the public,1.4443434,TJ,CH4,10.0,kg/TJ,14.443434,kg +026a0c5e-2d8e-3fff-84d9-1240375e2745,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2023,bioetanol combustion consumption by to the public,1.4443434,TJ,N2O,0.6,kg/TJ,0.86660604,kg +8d9ddc29-fc35-3799-ae7c-e3daae0e86fc,SESCO,II.1.1,Tucuman,AR-T,annual,2023,bioetanol combustion consumption by to the public,0.3578904,TJ,CH4,10.0,kg/TJ,3.578904,kg +bb293172-f4d2-3343-b8a6-8beadc658a09,SESCO,II.1.1,Tucuman,AR-T,annual,2023,bioetanol combustion consumption by to the public,0.3578904,TJ,N2O,0.6,kg/TJ,0.21473424,kg +4ad74ec4-157a-3575-b107-b7345b292bbf,SESCO,II.5.1,Santa Fe,AR-S,annual,2023,bioetanol combustion consumption by agriculture machines,0.13548707999999998,TJ,CH4,10.0,kg/TJ,1.3548707999999998,kg +3ab8ee20-d2af-3436-8f63-c066506d30b6,SESCO,II.5.1,Santa Fe,AR-S,annual,2023,bioetanol combustion consumption by agriculture machines,0.13548707999999998,TJ,N2O,0.6,kg/TJ,0.08129224799999998,kg +b8fde464-3c32-33cc-80e3-06a336af0cca,SESCO,II.5.1,Santa Fe,AR-S,annual,2023,bioetanol combustion consumption by agriculture machines,0.08691623999999999,TJ,CH4,10.0,kg/TJ,0.8691623999999999,kg +d96c3dc3-9546-3f1d-9541-94a160c5dec5,SESCO,II.5.1,Santa Fe,AR-S,annual,2023,bioetanol combustion consumption by agriculture machines,0.08691623999999999,TJ,N2O,0.6,kg/TJ,0.05214974399999999,kg +d58be2c4-a2b7-3731-a4bd-6fc3a1cfe05e,SESCO,II.1.1,Buenos Aires,AR-B,annual,2023,bioetanol combustion consumption by to the public,880.7350417199999,TJ,CH4,10.0,kg/TJ,8807.3504172,kg +a3340a3a-05f6-3f24-80b3-88e27492e844,SESCO,II.1.1,Buenos Aires,AR-B,annual,2023,bioetanol combustion consumption by to the public,880.7350417199999,TJ,N2O,0.6,kg/TJ,528.441025032,kg +805b67a3-d0dd-34aa-a42c-e33af8829c03,SESCO,II.1.1,Capital Federal,AR-C,annual,2023,bioetanol combustion consumption by to the public,232.31177135999997,TJ,CH4,10.0,kg/TJ,2323.1177135999997,kg +b697b532-591a-3b1a-a41a-8ed2a192d6b3,SESCO,II.1.1,Capital Federal,AR-C,annual,2023,bioetanol combustion consumption by to the public,232.31177135999997,TJ,N2O,0.6,kg/TJ,139.38706281599997,kg +b102d1c3-2fbc-31eb-8508-fad3d3697d61,SESCO,II.1.1,Catamarca,AR-K,annual,2023,bioetanol combustion consumption by to the public,31.402326239999997,TJ,CH4,10.0,kg/TJ,314.02326239999996,kg +95e34842-25d8-372d-b56b-b959d6b820c3,SESCO,II.1.1,Catamarca,AR-K,annual,2023,bioetanol combustion consumption by to the public,31.402326239999997,TJ,N2O,0.6,kg/TJ,18.841395743999996,kg +19cc24e7-80ef-3424-9282-5c5db197878a,SESCO,II.1.1,Chaco,AR-H,annual,2023,bioetanol combustion consumption by to the public,63.584342279999994,TJ,CH4,10.0,kg/TJ,635.8434228,kg +b67a5295-7d28-3ab9-9b79-7fd8f8cb0970,SESCO,II.1.1,Chaco,AR-H,annual,2023,bioetanol combustion consumption by to the public,63.584342279999994,TJ,N2O,0.6,kg/TJ,38.150605367999994,kg +7d4d0a29-d972-35d0-a8e9-5419a26a2a26,SESCO,II.1.1,Chubut,AR-U,annual,2023,bioetanol combustion consumption by to the public,131.6014128,TJ,CH4,10.0,kg/TJ,1316.0141279999998,kg +2c0f1239-52a4-31db-bcf2-94680e20df77,SESCO,II.1.1,Chubut,AR-U,annual,2023,bioetanol combustion consumption by to the public,131.6014128,TJ,N2O,0.6,kg/TJ,78.96084767999999,kg +941f08c5-8755-314a-a83a-2204973ecd54,SESCO,II.1.1,Corrientes,AR-W,annual,2023,bioetanol combustion consumption by to the public,82.48351176,TJ,CH4,10.0,kg/TJ,824.8351176,kg +45db7cfe-b57a-3257-bce6-93560327f189,SESCO,II.1.1,Corrientes,AR-W,annual,2023,bioetanol combustion consumption by to the public,82.48351176,TJ,N2O,0.6,kg/TJ,49.490107056,kg +69df0cf8-0541-385f-94ee-e9e2acb0bab3,SESCO,II.1.1,Córdoba,AR-X,annual,2023,bioetanol combustion consumption by to the public,207.40259952,TJ,CH4,10.0,kg/TJ,2074.0259952,kg +fe785459-274c-3eec-a760-cd7b873969fb,SESCO,II.1.1,Córdoba,AR-X,annual,2023,bioetanol combustion consumption by to the public,207.40259952,TJ,N2O,0.6,kg/TJ,124.44155971199999,kg +830ef6d6-698f-3826-8e2a-f9ac4569de0c,SESCO,II.1.1,Entre Rios,AR-E,annual,2023,bioetanol combustion consumption by to the public,93.38638716,TJ,CH4,10.0,kg/TJ,933.8638716,kg +b2e7b236-2402-3675-baef-fbfc2e57f175,SESCO,II.1.1,Entre Rios,AR-E,annual,2023,bioetanol combustion consumption by to the public,93.38638716,TJ,N2O,0.6,kg/TJ,56.031832296,kg +95686c19-b84e-3af9-b8c9-8129ff399efa,SESCO,II.1.1,Formosa,AR-P,annual,2023,bioetanol combustion consumption by to the public,68.73285132,TJ,CH4,10.0,kg/TJ,687.3285132,kg +e4f3ba3a-b1c6-34b7-8cd2-b6c7842b4699,SESCO,II.1.1,Formosa,AR-P,annual,2023,bioetanol combustion consumption by to the public,68.73285132,TJ,N2O,0.6,kg/TJ,41.239710792,kg +eb9d798b-3bce-3b0e-a183-5cd332b79051,SESCO,II.1.1,Jujuy,AR-Y,annual,2023,bioetanol combustion consumption by to the public,27.468088199999997,TJ,CH4,10.0,kg/TJ,274.680882,kg +3e4047a8-df5f-3800-92ff-7dc4fff6d152,SESCO,II.1.1,Jujuy,AR-Y,annual,2023,bioetanol combustion consumption by to the public,27.468088199999997,TJ,N2O,0.6,kg/TJ,16.480852919999997,kg +b848695e-2467-3032-8921-427976545493,SESCO,II.1.1,La Pampa,AR-L,annual,2023,bioetanol combustion consumption by to the public,20.88034848,TJ,CH4,10.0,kg/TJ,208.80348479999998,kg +bdb85b79-457c-302b-a93d-bd6700c754bf,SESCO,II.1.1,La Pampa,AR-L,annual,2023,bioetanol combustion consumption by to the public,20.88034848,TJ,N2O,0.6,kg/TJ,12.528209087999999,kg +21ef9b0f-58df-3b14-9917-ac1c69d78309,SESCO,II.1.1,La Rioja,AR-F,annual,2023,bioetanol combustion consumption by to the public,15.386730839999998,TJ,CH4,10.0,kg/TJ,153.86730839999998,kg +ced79505-2432-3f9e-825c-5f2fcf30db40,SESCO,II.1.1,La Rioja,AR-F,annual,2023,bioetanol combustion consumption by to the public,15.386730839999998,TJ,N2O,0.6,kg/TJ,9.232038503999998,kg +d549c4fa-0f47-300a-9c23-b4ec945e37e6,SESCO,II.1.1,Mendoza,AR-M,annual,2023,bioetanol combustion consumption by to the public,40.66146216,TJ,CH4,10.0,kg/TJ,406.61462159999996,kg +842a5cda-a065-3d93-84e6-5965e6289e82,SESCO,II.1.1,Mendoza,AR-M,annual,2023,bioetanol combustion consumption by to the public,40.66146216,TJ,N2O,0.6,kg/TJ,24.396877296,kg +a2f19812-1fdd-35a9-95c4-ffdf31113c6b,SESCO,II.1.1,Misiones,AR-N,annual,2023,bioetanol combustion consumption by to the public,156.64351535999998,TJ,CH4,10.0,kg/TJ,1566.4351536,kg +a272d69c-8d5d-35c9-8029-f57a87f47ed7,SESCO,II.1.1,Misiones,AR-N,annual,2023,bioetanol combustion consumption by to the public,156.64351535999998,TJ,N2O,0.6,kg/TJ,93.98610921599999,kg +4449f391-2e0d-351f-8d9b-b2b00e7c9d2f,SESCO,II.1.1,Neuquén,AR-Q,annual,2023,bioetanol combustion consumption by to the public,40.129739279999995,TJ,CH4,10.0,kg/TJ,401.29739279999995,kg +c08b97a5-9325-390e-a364-a78d7273735d,SESCO,II.1.1,Neuquén,AR-Q,annual,2023,bioetanol combustion consumption by to the public,40.129739279999995,TJ,N2O,0.6,kg/TJ,24.077843567999995,kg +756d8d84-01c8-34cd-80a8-21607a5f214f,SESCO,II.1.1,Rio Negro,AR-R,annual,2023,bioetanol combustion consumption by to the public,68.82232391999999,TJ,CH4,10.0,kg/TJ,688.2232391999999,kg +728cfdf2-4a43-3298-972e-3e563ec3deb9,SESCO,II.1.1,Rio Negro,AR-R,annual,2023,bioetanol combustion consumption by to the public,68.82232391999999,TJ,N2O,0.6,kg/TJ,41.29339435199999,kg +9d4cc7a3-e194-3f63-a10e-510565e984c5,SESCO,II.1.1,Salta,AR-A,annual,2023,bioetanol combustion consumption by to the public,23.500617479999995,TJ,CH4,10.0,kg/TJ,235.00617479999994,kg +71baf3e2-5ca2-3f30-b7bc-a603b1b2ef82,SESCO,II.1.1,Salta,AR-A,annual,2023,bioetanol combustion consumption by to the public,23.500617479999995,TJ,N2O,0.6,kg/TJ,14.100370487999998,kg +fbdba8a7-4a3a-3f49-955d-522e95052dc9,SESCO,II.1.1,San Juan,AR-J,annual,2023,bioetanol combustion consumption by to the public,21.051624599999997,TJ,CH4,10.0,kg/TJ,210.51624599999997,kg +f90dabd5-ba2f-3bfa-b9b4-383f808594e1,SESCO,II.1.1,San Juan,AR-J,annual,2023,bioetanol combustion consumption by to the public,21.051624599999997,TJ,N2O,0.6,kg/TJ,12.630974759999997,kg +64e76acd-5b3e-3217-a6ee-92e165790dd8,SESCO,II.1.1,San Luis,AR-D,annual,2023,bioetanol combustion consumption by to the public,46.9603332,TJ,CH4,10.0,kg/TJ,469.603332,kg +7e8eb6a8-7a39-39cf-808d-8613dba8ce39,SESCO,II.1.1,San Luis,AR-D,annual,2023,bioetanol combustion consumption by to the public,46.9603332,TJ,N2O,0.6,kg/TJ,28.17619992,kg +bf195808-5114-3876-8488-593abf90c472,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2023,bioetanol combustion consumption by to the public,76.34313503999999,TJ,CH4,10.0,kg/TJ,763.4313503999999,kg +92c39f70-44eb-3aa4-9052-97901010405d,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2023,bioetanol combustion consumption by to the public,76.34313503999999,TJ,N2O,0.6,kg/TJ,45.805881023999994,kg +c8ce1243-b2d6-3597-9bfc-02548685c66a,SESCO,II.1.1,Santa Fe,AR-S,annual,2023,bioetanol combustion consumption by to the public,206.15253948,TJ,CH4,10.0,kg/TJ,2061.5253948,kg +a4453a98-a23e-3515-9198-27ae14b6d736,SESCO,II.1.1,Santa Fe,AR-S,annual,2023,bioetanol combustion consumption by to the public,206.15253948,TJ,N2O,0.6,kg/TJ,123.69152368799999,kg +209812dc-30df-3e10-a5b9-97dd1f259d85,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2023,bioetanol combustion consumption by to the public,41.54340636,TJ,CH4,10.0,kg/TJ,415.4340636,kg +c9cd59b5-e74a-3e5b-b2bc-d37bcf38738b,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2023,bioetanol combustion consumption by to the public,41.54340636,TJ,N2O,0.6,kg/TJ,24.926043816,kg +6cf716fd-cb8e-3d51-ab57-9628192bea37,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2023,bioetanol combustion consumption by to the public,15.110643959999997,TJ,CH4,10.0,kg/TJ,151.1064396,kg +b005565e-19db-3db5-b740-6c2d67414f70,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2023,bioetanol combustion consumption by to the public,15.110643959999997,TJ,N2O,0.6,kg/TJ,9.066386375999999,kg +b459ddc8-c8fb-3c73-961b-423471ac59f1,SESCO,II.1.1,Tucuman,AR-T,annual,2023,bioetanol combustion consumption by to the public,16.87708872,TJ,CH4,10.0,kg/TJ,168.7708872,kg +987b2038-d2a9-386b-95ea-6abccd2da17a,SESCO,II.1.1,Tucuman,AR-T,annual,2023,bioetanol combustion consumption by to the public,16.87708872,TJ,N2O,0.6,kg/TJ,10.126253232,kg +319c6f1c-de69-3221-91e1-24da15572d5f,SESCO,II.1.1,Buenos Aires,AR-B,annual,2023,bioetanol combustion consumption by to the public,282.4522164,TJ,CH4,10.0,kg/TJ,2824.522164,kg +25cf9bb6-3b26-39bf-b709-ccde5b8fa83e,SESCO,II.1.1,Buenos Aires,AR-B,annual,2023,bioetanol combustion consumption by to the public,282.4522164,TJ,N2O,0.6,kg/TJ,169.47132983999998,kg +9d8cdb04-8255-3d88-aec6-59489bc29ea1,SESCO,II.1.1,Capital Federal,AR-C,annual,2023,bioetanol combustion consumption by to the public,114.0392196,TJ,CH4,10.0,kg/TJ,1140.392196,kg +9dfd1bfc-e428-3561-b239-786f3f704842,SESCO,II.1.1,Capital Federal,AR-C,annual,2023,bioetanol combustion consumption by to the public,114.0392196,TJ,N2O,0.6,kg/TJ,68.42353175999999,kg +fdaaa27e-edd1-3566-9e6c-f839eefda5d0,SESCO,II.1.1,Catamarca,AR-K,annual,2023,bioetanol combustion consumption by to the public,11.056256999999999,TJ,CH4,10.0,kg/TJ,110.56257,kg +1e6b204e-3aa7-381b-96e2-214e2223f327,SESCO,II.1.1,Catamarca,AR-K,annual,2023,bioetanol combustion consumption by to the public,11.056256999999999,TJ,N2O,0.6,kg/TJ,6.633754199999999,kg +79df7207-c694-378f-83fe-d8d8ded00781,SESCO,II.1.1,Chaco,AR-H,annual,2023,bioetanol combustion consumption by to the public,8.85267468,TJ,CH4,10.0,kg/TJ,88.5267468,kg +7137cec6-ef98-3298-bb67-cd8db14394e2,SESCO,II.1.1,Chaco,AR-H,annual,2023,bioetanol combustion consumption by to the public,8.85267468,TJ,N2O,0.6,kg/TJ,5.311604807999999,kg +4c5bca5a-3600-3874-bc6f-a0f51911c2fc,SESCO,II.1.1,Chubut,AR-U,annual,2023,bioetanol combustion consumption by to the public,23.2884396,TJ,CH4,10.0,kg/TJ,232.884396,kg +7a56e6ec-2935-35ef-bdf6-adf5061d8fd5,SESCO,II.1.1,Chubut,AR-U,annual,2023,bioetanol combustion consumption by to the public,23.2884396,TJ,N2O,0.6,kg/TJ,13.97306376,kg +0af54804-7750-33bd-b80a-89a596c65c16,SESCO,II.1.1,Corrientes,AR-W,annual,2023,bioetanol combustion consumption by to the public,12.365113319999999,TJ,CH4,10.0,kg/TJ,123.65113319999999,kg +80690fe4-bbba-376f-b6d3-20f0aa1973d1,SESCO,II.1.1,Corrientes,AR-W,annual,2023,bioetanol combustion consumption by to the public,12.365113319999999,TJ,N2O,0.6,kg/TJ,7.419067991999999,kg +998dc9e7-bd05-32cc-b915-6d9da8bba870,SESCO,II.1.1,Córdoba,AR-X,annual,2023,bioetanol combustion consumption by to the public,55.879473239999996,TJ,CH4,10.0,kg/TJ,558.7947323999999,kg +f98d68c2-7efd-3941-a2dd-28fa938c6b8d,SESCO,II.1.1,Córdoba,AR-X,annual,2023,bioetanol combustion consumption by to the public,55.879473239999996,TJ,N2O,0.6,kg/TJ,33.527683943999996,kg +fd85879c-340c-3556-b39e-caaf63fa2735,SESCO,II.1.1,Entre Rios,AR-E,annual,2023,bioetanol combustion consumption by to the public,28.623562919999998,TJ,CH4,10.0,kg/TJ,286.23562919999995,kg +02977f7a-3776-30b3-9523-4246790dcda4,SESCO,II.1.1,Entre Rios,AR-E,annual,2023,bioetanol combustion consumption by to the public,28.623562919999998,TJ,N2O,0.6,kg/TJ,17.174137751999996,kg +2ddc840b-37dd-3c88-817b-04171662e097,SESCO,II.1.1,Formosa,AR-P,annual,2023,bioetanol combustion consumption by to the public,20.09554596,TJ,CH4,10.0,kg/TJ,200.95545959999998,kg +e30903fb-9926-3907-86a6-5e5a49b299c9,SESCO,II.1.1,Formosa,AR-P,annual,2023,bioetanol combustion consumption by to the public,20.09554596,TJ,N2O,0.6,kg/TJ,12.057327575999999,kg +5a08fa4a-7b95-373c-980c-1e356680acfc,SESCO,II.1.1,Jujuy,AR-Y,annual,2023,bioetanol combustion consumption by to the public,6.373005479999999,TJ,CH4,10.0,kg/TJ,63.73005479999999,kg +0483fe9e-9983-37e2-9b07-fe32eebd6a79,SESCO,II.1.1,Jujuy,AR-Y,annual,2023,bioetanol combustion consumption by to the public,6.373005479999999,TJ,N2O,0.6,kg/TJ,3.8238032879999992,kg +2c0ed90b-5c62-3c1b-9544-440f33bf9834,SESCO,II.1.1,La Pampa,AR-L,annual,2023,bioetanol combustion consumption by to the public,6.60563424,TJ,CH4,10.0,kg/TJ,66.05634239999999,kg +b8d9421f-044f-3513-b504-a5d142ec0e4f,SESCO,II.1.1,La Pampa,AR-L,annual,2023,bioetanol combustion consumption by to the public,6.60563424,TJ,N2O,0.6,kg/TJ,3.9633805439999996,kg +c57f65e0-4a02-39c5-88ba-aef07b4e5e3d,SESCO,II.1.1,La Rioja,AR-F,annual,2023,bioetanol combustion consumption by to the public,4.276790279999999,TJ,CH4,10.0,kg/TJ,42.767902799999995,kg +504f4965-a1b5-3fe1-93de-d304621f694a,SESCO,II.1.1,La Rioja,AR-F,annual,2023,bioetanol combustion consumption by to the public,4.276790279999999,TJ,N2O,0.6,kg/TJ,2.5660741679999997,kg +b2916267-d0a6-305b-b34f-155f786be28b,SESCO,II.1.1,Mendoza,AR-M,annual,2023,bioetanol combustion consumption by to the public,17.32700808,TJ,CH4,10.0,kg/TJ,173.2700808,kg +3ceb4253-b8c3-3eb2-bd92-635d38529bb7,SESCO,II.1.1,Mendoza,AR-M,annual,2023,bioetanol combustion consumption by to the public,17.32700808,TJ,N2O,0.6,kg/TJ,10.396204847999998,kg +6bd3c07c-36ff-3498-ab69-6870750daf25,SESCO,II.1.1,Misiones,AR-N,annual,2023,bioetanol combustion consumption by to the public,14.080430879999998,TJ,CH4,10.0,kg/TJ,140.80430879999997,kg +bde78e69-2031-3681-8109-dd992495a2a4,SESCO,II.1.1,Misiones,AR-N,annual,2023,bioetanol combustion consumption by to the public,14.080430879999998,TJ,N2O,0.6,kg/TJ,8.448258527999998,kg +f9d96847-15da-3c12-afbc-3671c0bd6919,SESCO,II.1.1,Neuquén,AR-Q,annual,2023,bioetanol combustion consumption by to the public,19.205932679999997,TJ,CH4,10.0,kg/TJ,192.05932679999995,kg +f8999209-f424-3108-b586-978b76ee266f,SESCO,II.1.1,Neuquén,AR-Q,annual,2023,bioetanol combustion consumption by to the public,19.205932679999997,TJ,N2O,0.6,kg/TJ,11.523559607999998,kg +b32658ca-d3b3-385d-bfc7-1603c2a08442,SESCO,II.1.1,Rio Negro,AR-R,annual,2023,bioetanol combustion consumption by to the public,27.20478312,TJ,CH4,10.0,kg/TJ,272.04783119999996,kg +54966fbb-9b25-3eca-8569-bf393a81ff3e,SESCO,II.1.1,Rio Negro,AR-R,annual,2023,bioetanol combustion consumption by to the public,27.20478312,TJ,N2O,0.6,kg/TJ,16.322869872,kg +f4413e2a-82b0-3689-9023-29d0e9307dc8,SESCO,II.1.1,Salta,AR-A,annual,2023,bioetanol combustion consumption by to the public,4.542651719999999,TJ,CH4,10.0,kg/TJ,45.42651719999999,kg +e4a1a553-e2a5-30c0-b4c0-f289b0823552,SESCO,II.1.1,Salta,AR-A,annual,2023,bioetanol combustion consumption by to the public,4.542651719999999,TJ,N2O,0.6,kg/TJ,2.7255910319999996,kg +c4d8c109-f6b9-31aa-8239-9ed637f360f7,SESCO,II.1.1,San Juan,AR-J,annual,2023,bioetanol combustion consumption by to the public,4.105514159999999,TJ,CH4,10.0,kg/TJ,41.05514159999999,kg +66713d83-7bc5-3841-af86-78bef470eef4,SESCO,II.1.1,San Juan,AR-J,annual,2023,bioetanol combustion consumption by to the public,4.105514159999999,TJ,N2O,0.6,kg/TJ,2.4633084959999993,kg +578d3caf-aee4-3d75-9421-065dc1e5ff58,SESCO,II.1.1,San Luis,AR-D,annual,2023,bioetanol combustion consumption by to the public,9.3690594,TJ,CH4,10.0,kg/TJ,93.69059399999999,kg +e5d0f151-b319-3ae5-b83b-921f9c33ba92,SESCO,II.1.1,San Luis,AR-D,annual,2023,bioetanol combustion consumption by to the public,9.3690594,TJ,N2O,0.6,kg/TJ,5.62143564,kg +e7aebc0e-ae9a-3266-ad2e-cf67a30c8725,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2023,bioetanol combustion consumption by to the public,12.46992408,TJ,CH4,10.0,kg/TJ,124.6992408,kg +e07a7827-017a-3793-8e4d-382fe73679b4,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2023,bioetanol combustion consumption by to the public,12.46992408,TJ,N2O,0.6,kg/TJ,7.481954448,kg +92984006-e056-38cc-974c-a29df88f2a65,SESCO,II.1.1,Santa Fe,AR-S,annual,2023,bioetanol combustion consumption by to the public,66.54460716,TJ,CH4,10.0,kg/TJ,665.4460716,kg +856eb96b-0b18-37e1-9b42-75af290221bb,SESCO,II.1.1,Santa Fe,AR-S,annual,2023,bioetanol combustion consumption by to the public,66.54460716,TJ,N2O,0.6,kg/TJ,39.926764295999995,kg +42863bfa-c105-3cec-b11d-fb5c61f084cb,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2023,bioetanol combustion consumption by to the public,13.54615164,TJ,CH4,10.0,kg/TJ,135.4615164,kg +e9ae9269-04a8-3d22-a3cd-518df2c26dd5,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2023,bioetanol combustion consumption by to the public,13.54615164,TJ,N2O,0.6,kg/TJ,8.127690984,kg +ff59bcc7-ce0c-3ed7-a05d-5a97bf7bc71e,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2023,bioetanol combustion consumption by to the public,3.6504820799999993,TJ,CH4,10.0,kg/TJ,36.50482079999999,kg +ddd6646a-8a01-36e8-aee4-8f65f626afca,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2023,bioetanol combustion consumption by to the public,3.6504820799999993,TJ,N2O,0.6,kg/TJ,2.1902892479999996,kg +6bfc373c-7088-368d-b7d9-1c3b8f97c4f6,SESCO,II.1.1,Tucuman,AR-T,annual,2023,bioetanol combustion consumption by to the public,3.36416976,TJ,CH4,10.0,kg/TJ,33.6416976,kg +b53236cf-6541-36f1-aa97-7c5079f2ac4a,SESCO,II.1.1,Tucuman,AR-T,annual,2023,bioetanol combustion consumption by to the public,3.36416976,TJ,N2O,0.6,kg/TJ,2.018501856,kg +00337677-e951-35d3-9233-9905d242e0d8,SESCO,II.1.1,Buenos Aires,AR-B,annual,2023,bioetanol combustion consumption by freight transport,1.6616339999999998,TJ,CH4,10.0,kg/TJ,16.616339999999997,kg +f4ffcb1d-b1e9-3c4f-b89f-b1ec8b98c71b,SESCO,II.1.1,Buenos Aires,AR-B,annual,2023,bioetanol combustion consumption by freight transport,1.6616339999999998,TJ,N2O,0.6,kg/TJ,0.9969803999999999,kg +08aed0d3-8945-3f8b-93c7-4bd32d894c65,SESCO,II.1.1,Capital Federal,AR-C,annual,2023,bioetanol combustion consumption by freight transport,2.15245512,TJ,CH4,10.0,kg/TJ,21.524551199999998,kg +a7671fcb-4519-3129-b882-2062e430abac,SESCO,II.1.1,Capital Federal,AR-C,annual,2023,bioetanol combustion consumption by freight transport,2.15245512,TJ,N2O,0.6,kg/TJ,1.2914730719999998,kg +a86bdc6d-a7f7-3033-a9ed-285f9f3450a9,SESCO,II.1.1,Chaco,AR-H,annual,2023,bioetanol combustion consumption by freight transport,0.0025563599999999997,TJ,CH4,10.0,kg/TJ,0.0255636,kg +52484b72-0eee-3d25-be3c-9188d051949a,SESCO,II.1.1,Chaco,AR-H,annual,2023,bioetanol combustion consumption by freight transport,0.0025563599999999997,TJ,N2O,0.6,kg/TJ,0.0015338159999999997,kg +aa339304-a56b-3d78-97b8-11ceeeb66ce8,SESCO,II.1.1,Corrientes,AR-W,annual,2023,bioetanol combustion consumption by freight transport,0.0025563599999999997,TJ,CH4,10.0,kg/TJ,0.0255636,kg +02ec4b80-5f6f-3151-b0d6-88c11c0cd9d0,SESCO,II.1.1,Corrientes,AR-W,annual,2023,bioetanol combustion consumption by freight transport,0.0025563599999999997,TJ,N2O,0.6,kg/TJ,0.0015338159999999997,kg +abe38a22-f9db-38a5-92c0-8a93d3b7a248,SESCO,II.1.1,Córdoba,AR-X,annual,2023,bioetanol combustion consumption by freight transport,0.28375596,TJ,CH4,10.0,kg/TJ,2.8375595999999996,kg +bf11152a-a5e2-3f50-b3ca-d02d38209cee,SESCO,II.1.1,Córdoba,AR-X,annual,2023,bioetanol combustion consumption by freight transport,0.28375596,TJ,N2O,0.6,kg/TJ,0.170253576,kg +12ff1f96-1671-3e23-a813-1a46d33d74f8,SESCO,II.1.1,Mendoza,AR-M,annual,2023,bioetanol combustion consumption by freight transport,0.015338159999999998,TJ,CH4,10.0,kg/TJ,0.15338159999999998,kg +a120ea7a-7474-3aa5-a1e9-7bb0a85c9ced,SESCO,II.1.1,Mendoza,AR-M,annual,2023,bioetanol combustion consumption by freight transport,0.015338159999999998,TJ,N2O,0.6,kg/TJ,0.009202895999999999,kg +163273f2-12a9-3c4a-a596-bb2e116adf71,SESCO,II.1.1,Rio Negro,AR-R,annual,2023,bioetanol combustion consumption by freight transport,0.03323268,TJ,CH4,10.0,kg/TJ,0.33232680000000003,kg +40ec4a1f-62a0-3312-8397-61ace4acc73b,SESCO,II.1.1,Rio Negro,AR-R,annual,2023,bioetanol combustion consumption by freight transport,0.03323268,TJ,N2O,0.6,kg/TJ,0.019939608,kg +90914e22-23e2-319a-9fc2-480fa27b2e68,SESCO,II.1.1,Santa Fe,AR-S,annual,2023,bioetanol combustion consumption by freight transport,0.85126788,TJ,CH4,10.0,kg/TJ,8.5126788,kg +cd580372-c641-3773-b119-245fe269cf73,SESCO,II.1.1,Santa Fe,AR-S,annual,2023,bioetanol combustion consumption by freight transport,0.85126788,TJ,N2O,0.6,kg/TJ,0.5107607279999999,kg +b6422eb9-837a-39ce-a617-b872986a9895,SESCO,II.1.1,Buenos Aires,AR-B,annual,2023,bioetanol combustion consumption by freight transport,0.9841985999999998,TJ,CH4,10.0,kg/TJ,9.841985999999999,kg +7f93373b-b349-3fa6-958e-6e18fde39466,SESCO,II.1.1,Buenos Aires,AR-B,annual,2023,bioetanol combustion consumption by freight transport,0.9841985999999998,TJ,N2O,0.6,kg/TJ,0.5905191599999998,kg +41a150f5-51ef-3309-b4ea-2e4c71ae53fb,SESCO,II.1.1,Capital Federal,AR-C,annual,2023,bioetanol combustion consumption by freight transport,1.62073224,TJ,CH4,10.0,kg/TJ,16.2073224,kg +6ba2c222-8793-3f1a-8863-8719c26062ca,SESCO,II.1.1,Capital Federal,AR-C,annual,2023,bioetanol combustion consumption by freight transport,1.62073224,TJ,N2O,0.6,kg/TJ,0.9724393439999999,kg +d2fba04f-cd19-3a69-8987-78e7e1f7598b,SESCO,II.1.1,Chubut,AR-U,annual,2023,bioetanol combustion consumption by freight transport,0.005112719999999999,TJ,CH4,10.0,kg/TJ,0.0511272,kg +61368e93-2f03-3a07-bb06-01035d42d8c5,SESCO,II.1.1,Chubut,AR-U,annual,2023,bioetanol combustion consumption by freight transport,0.005112719999999999,TJ,N2O,0.6,kg/TJ,0.0030676319999999994,kg +361dab53-ee89-3132-b859-fc1d36b9eb29,SESCO,II.1.1,Córdoba,AR-X,annual,2023,bioetanol combustion consumption by freight transport,0.10992348,TJ,CH4,10.0,kg/TJ,1.0992348,kg +7dfc39f5-f571-30a9-ac57-c0262b351bb4,SESCO,II.1.1,Córdoba,AR-X,annual,2023,bioetanol combustion consumption by freight transport,0.10992348,TJ,N2O,0.6,kg/TJ,0.065954088,kg +1eb423fc-ce35-3cfe-a708-87516a3e35d1,SESCO,II.1.1,Entre Rios,AR-E,annual,2023,bioetanol combustion consumption by freight transport,0.007669079999999999,TJ,CH4,10.0,kg/TJ,0.07669079999999999,kg +55f53ef8-bc01-3e6b-affb-8b4da7c58e4b,SESCO,II.1.1,Entre Rios,AR-E,annual,2023,bioetanol combustion consumption by freight transport,0.007669079999999999,TJ,N2O,0.6,kg/TJ,0.004601447999999999,kg +e677a857-06bc-3baf-b537-d64b9ae8b526,SESCO,II.1.1,La Rioja,AR-F,annual,2023,bioetanol combustion consumption by freight transport,0.030676319999999997,TJ,CH4,10.0,kg/TJ,0.30676319999999996,kg +cbaf4b9e-f6c0-337b-b2ec-5520bad63a8b,SESCO,II.1.1,La Rioja,AR-F,annual,2023,bioetanol combustion consumption by freight transport,0.030676319999999997,TJ,N2O,0.6,kg/TJ,0.018405791999999997,kg +3c951a8e-3fd2-3e86-8fea-baf0e0727658,SESCO,II.1.1,Neuquén,AR-Q,annual,2023,bioetanol combustion consumption by freight transport,0.0025563599999999997,TJ,CH4,10.0,kg/TJ,0.0255636,kg +e981f0ec-df2d-31d7-9c51-6634f95709bd,SESCO,II.1.1,Neuquén,AR-Q,annual,2023,bioetanol combustion consumption by freight transport,0.0025563599999999997,TJ,N2O,0.6,kg/TJ,0.0015338159999999997,kg +4ab73c9e-36a3-3bc9-a3dd-e9046101da1d,SESCO,II.1.1,Rio Negro,AR-R,annual,2023,bioetanol combustion consumption by freight transport,0.043458119999999996,TJ,CH4,10.0,kg/TJ,0.43458119999999995,kg +d237146e-5e5e-3e20-b24c-3eff07673601,SESCO,II.1.1,Rio Negro,AR-R,annual,2023,bioetanol combustion consumption by freight transport,0.043458119999999996,TJ,N2O,0.6,kg/TJ,0.026074871999999995,kg +aa03b24c-33f4-3b25-9f7e-4a51c2633998,SESCO,II.1.1,San Luis,AR-D,annual,2023,bioetanol combustion consumption by freight transport,0.07413444,TJ,CH4,10.0,kg/TJ,0.7413444,kg +7682becc-b6bb-390a-a9d2-a42d1fe7ba9c,SESCO,II.1.1,San Luis,AR-D,annual,2023,bioetanol combustion consumption by freight transport,0.07413444,TJ,N2O,0.6,kg/TJ,0.044480663999999996,kg +2bbd2031-2426-3895-b80f-3a01ed46c50a,SESCO,II.1.1,Santa Fe,AR-S,annual,2023,bioetanol combustion consumption by freight transport,0.6467590799999999,TJ,CH4,10.0,kg/TJ,6.467590799999999,kg +f1e7f708-0cd1-30f7-b0c4-2cb8e6c2d3cf,SESCO,II.1.1,Santa Fe,AR-S,annual,2023,bioetanol combustion consumption by freight transport,0.6467590799999999,TJ,N2O,0.6,kg/TJ,0.38805544799999997,kg +5f479867-6d23-36ae-b22c-566d4021a107,SESCO,II.1.1,Buenos Aires,AR-B,annual,2023,bioetanol combustion consumption by public passenger transport,0.005112719999999999,TJ,CH4,10.0,kg/TJ,0.0511272,kg +679f4ae0-d8b6-35dd-a3b2-d926fb1a9188,SESCO,II.1.1,Buenos Aires,AR-B,annual,2023,bioetanol combustion consumption by public passenger transport,0.005112719999999999,TJ,N2O,0.6,kg/TJ,0.0030676319999999994,kg +d91600d7-2828-3f1a-9d8d-ccf15b3e631b,SESCO,II.1.1,Entre Rios,AR-E,annual,2023,bioetanol combustion consumption by public passenger transport,0.02300724,TJ,CH4,10.0,kg/TJ,0.2300724,kg +c9c9c5b7-84b3-338d-ae0a-3067ee69606e,SESCO,II.1.1,Entre Rios,AR-E,annual,2023,bioetanol combustion consumption by public passenger transport,0.02300724,TJ,N2O,0.6,kg/TJ,0.013804344000000001,kg +355b0e43-e2e6-3fd4-a498-74b0cbfa05da,SESCO,II.1.1,Buenos Aires,AR-B,annual,2023,bioetanol combustion consumption by public passenger transport,0.0025563599999999997,TJ,CH4,10.0,kg/TJ,0.0255636,kg +e08d602b-f4c9-3be9-ae01-5eafd413cdfc,SESCO,II.1.1,Buenos Aires,AR-B,annual,2023,bioetanol combustion consumption by public passenger transport,0.0025563599999999997,TJ,N2O,0.6,kg/TJ,0.0015338159999999997,kg +8a180273-816e-34e9-97aa-aa0f0bdf7f6b,SESCO,II.1.1,Capital Federal,AR-C,annual,2023,bioetanol combustion consumption by public passenger transport,0.05623991999999999,TJ,CH4,10.0,kg/TJ,0.5623991999999999,kg +8f96a54a-d952-384f-b75b-c277d854338f,SESCO,II.1.1,Capital Federal,AR-C,annual,2023,bioetanol combustion consumption by public passenger transport,0.05623991999999999,TJ,N2O,0.6,kg/TJ,0.033743951999999994,kg +e2f5d5c3-74a8-3e8d-b2f7-e48268158336,SESCO,II.1.1,Entre Rios,AR-E,annual,2023,bioetanol combustion consumption by public passenger transport,0.05879627999999999,TJ,CH4,10.0,kg/TJ,0.5879627999999999,kg +238dc51e-e460-3ca3-a43c-c5bc2e590f1e,SESCO,II.1.1,Entre Rios,AR-E,annual,2023,bioetanol combustion consumption by public passenger transport,0.05879627999999999,TJ,N2O,0.6,kg/TJ,0.035277767999999994,kg +3d64ddb9-ea07-3ab9-a80b-b8bb78fa2626,SESCO,II.1.1,Catamarca,AR-K,annual,2023,bioetanol combustion consumption by to the public,5.025420305999999,TJ,CH4,10.0,kg/TJ,50.254203059999995,kg +dee6518f-edf4-36de-83f3-6efc94c4effa,SESCO,II.1.1,Catamarca,AR-K,annual,2023,bioetanol combustion consumption by to the public,5.025420305999999,TJ,N2O,0.6,kg/TJ,3.0152521835999995,kg +21c5f1d3-af90-31fb-98b8-48c44819d79f,SESCO,II.1.1,Chaco,AR-H,annual,2023,bioetanol combustion consumption by to the public,5.329397073599999,TJ,CH4,10.0,kg/TJ,53.29397073599999,kg +1aed10f2-133b-3e7f-9fab-24a6cb7fd0f4,SESCO,II.1.1,Chaco,AR-H,annual,2023,bioetanol combustion consumption by to the public,5.329397073599999,TJ,N2O,0.6,kg/TJ,3.1976382441599993,kg +1833651a-ba5d-38f7-a86b-b2b09ac991c8,SESCO,II.1.1,Córdoba,AR-X,annual,2023,bioetanol combustion consumption by to the public,0.6850533528,TJ,CH4,10.0,kg/TJ,6.850533528,kg +28fe29c7-5893-3037-bb49-63ed3e87bd18,SESCO,II.1.1,Córdoba,AR-X,annual,2023,bioetanol combustion consumption by to the public,0.6850533528,TJ,N2O,0.6,kg/TJ,0.41103201168,kg +3a8cb100-a57d-3421-a813-d856ff244050,SESCO,II.1.1,Jujuy,AR-Y,annual,2023,bioetanol combustion consumption by to the public,26.779328125199996,TJ,CH4,10.0,kg/TJ,267.79328125199993,kg +83d6d156-8bd1-35c4-909d-1922eb323f04,SESCO,II.1.1,Jujuy,AR-Y,annual,2023,bioetanol combustion consumption by to the public,26.779328125199996,TJ,N2O,0.6,kg/TJ,16.067596875119996,kg +f20be714-c38f-3c1d-a1f9-fa42c18b602a,SESCO,II.1.1,La Rioja,AR-F,annual,2023,bioetanol combustion consumption by to the public,27.101173849199995,TJ,CH4,10.0,kg/TJ,271.01173849199995,kg +551c64f4-8848-3413-aec9-efb4c29b8487,SESCO,II.1.1,La Rioja,AR-F,annual,2023,bioetanol combustion consumption by to the public,27.101173849199995,TJ,N2O,0.6,kg/TJ,16.260704309519998,kg +483c9611-d30d-3e9e-aacd-604f610acdde,SESCO,II.1.1,Salta,AR-A,annual,2023,bioetanol combustion consumption by to the public,72.53121882599999,TJ,CH4,10.0,kg/TJ,725.3121882599999,kg +e0cb043c-3344-3d18-9f40-30d943b0ce2f,SESCO,II.1.1,Salta,AR-A,annual,2023,bioetanol combustion consumption by to the public,72.53121882599999,TJ,N2O,0.6,kg/TJ,43.51873129559999,kg +7dd1cb52-9564-397f-9e2a-2b3e86493408,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2023,bioetanol combustion consumption by to the public,24.837798268799997,TJ,CH4,10.0,kg/TJ,248.37798268799997,kg +50233573-907f-3bf8-aca4-125e3423918d,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2023,bioetanol combustion consumption by to the public,24.837798268799997,TJ,N2O,0.6,kg/TJ,14.902678961279998,kg +5173035a-63df-3e73-96ff-8a88b9c05540,SESCO,II.1.1,Tucuman,AR-T,annual,2023,bioetanol combustion consumption by to the public,134.25120775799996,TJ,CH4,10.0,kg/TJ,1342.5120775799996,kg +e52bd3f6-585c-3ee7-b738-8a3154523965,SESCO,II.1.1,Tucuman,AR-T,annual,2023,bioetanol combustion consumption by to the public,134.25120775799996,TJ,N2O,0.6,kg/TJ,80.55072465479998,kg +699bb4c4-f2aa-3a6e-8ee1-329117991a36,SESCO,II.1.1,Catamarca,AR-K,annual,2023,bioetanol combustion consumption by to the public,0.44986823280000005,TJ,CH4,10.0,kg/TJ,4.498682328,kg +c36bac8b-3628-39ad-8a42-32715a8fe347,SESCO,II.1.1,Catamarca,AR-K,annual,2023,bioetanol combustion consumption by to the public,0.44986823280000005,TJ,N2O,0.6,kg/TJ,0.26992093968,kg +0218036f-65d1-3d5b-8ae5-d49571d52ffa,SESCO,II.1.1,Chaco,AR-H,annual,2023,bioetanol combustion consumption by to the public,0.20448323640000002,TJ,CH4,10.0,kg/TJ,2.0448323640000003,kg +270a3ab1-7335-30f8-be63-30aa2e1a0cd5,SESCO,II.1.1,Chaco,AR-H,annual,2023,bioetanol combustion consumption by to the public,0.20448323640000002,TJ,N2O,0.6,kg/TJ,0.12268994184000001,kg +7b5a41af-38d9-3f4b-a704-b36b556b01f8,SESCO,II.1.1,Córdoba,AR-X,annual,2023,bioetanol combustion consumption by to the public,0.09967247639999999,TJ,CH4,10.0,kg/TJ,0.9967247639999999,kg +18d9f7ad-b762-325f-9dee-a7f7b6e2ef00,SESCO,II.1.1,Córdoba,AR-X,annual,2023,bioetanol combustion consumption by to the public,0.09967247639999999,TJ,N2O,0.6,kg/TJ,0.05980348583999999,kg +6aac035a-96e7-3d68-a908-25041832d181,SESCO,II.1.1,Jujuy,AR-Y,annual,2023,bioetanol combustion consumption by to the public,2.0271679164,TJ,CH4,10.0,kg/TJ,20.271679164,kg +44db82d1-d456-3520-8f0e-af1bc5500110,SESCO,II.1.1,Jujuy,AR-Y,annual,2023,bioetanol combustion consumption by to the public,2.0271679164,TJ,N2O,0.6,kg/TJ,1.2163007498399998,kg +72b08370-6ed3-3d1d-af89-e3d0f68e7349,SESCO,II.1.1,La Rioja,AR-F,annual,2023,bioetanol combustion consumption by to the public,3.7317232008,TJ,CH4,10.0,kg/TJ,37.317232008,kg +43bf18d8-58af-3f6f-9b3e-525874485604,SESCO,II.1.1,La Rioja,AR-F,annual,2023,bioetanol combustion consumption by to the public,3.7317232008,TJ,N2O,0.6,kg/TJ,2.23903392048,kg +7472b364-6d76-324a-9e5b-eeedb409df04,SESCO,II.1.1,Salta,AR-A,annual,2023,bioetanol combustion consumption by to the public,5.8217775731999994,TJ,CH4,10.0,kg/TJ,58.21777573199999,kg +afe90501-1f52-3cf1-965b-d822f13c3ebf,SESCO,II.1.1,Salta,AR-A,annual,2023,bioetanol combustion consumption by to the public,5.8217775731999994,TJ,N2O,0.6,kg/TJ,3.4930665439199995,kg +643a473b-fa3e-3869-acf7-39e6cc798f0b,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2023,bioetanol combustion consumption by to the public,3.1185802548,TJ,CH4,10.0,kg/TJ,31.185802547999998,kg +89559185-ae5a-3a02-b22b-50e91d042fb0,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2023,bioetanol combustion consumption by to the public,3.1185802548,TJ,N2O,0.6,kg/TJ,1.8711481528799998,kg +a778033b-a78d-3787-af2f-de9451bf2d09,SESCO,II.1.1,Tucuman,AR-T,annual,2023,bioetanol combustion consumption by to the public,11.881807898399998,TJ,CH4,10.0,kg/TJ,118.81807898399998,kg +d9c3e1c3-431e-3999-8e35-ff3dfa365c94,SESCO,II.1.1,Tucuman,AR-T,annual,2023,bioetanol combustion consumption by to the public,11.881807898399998,TJ,N2O,0.6,kg/TJ,7.129084739039999,kg +ef7c7eef-a5b6-37bb-8707-b3a961edd063,SESCO,II.5.1,Corrientes,AR-W,annual,2023,bioetanol combustion consumption by agriculture machines,0.09202896,TJ,CH4,10.0,kg/TJ,0.9202896,kg +2fd6ba1a-cfca-30e0-bb90-6e0de24aa2f8,SESCO,II.5.1,Corrientes,AR-W,annual,2023,bioetanol combustion consumption by agriculture machines,0.09202896,TJ,N2O,0.6,kg/TJ,0.055217376000000006,kg +bc068af1-85f3-3dba-8eee-65c16fec101e,SESCO,II.5.1,Córdoba,AR-X,annual,2023,bioetanol combustion consumption by agriculture machines,0.9714168,TJ,CH4,10.0,kg/TJ,9.714167999999999,kg +8ecffcc9-f199-3ccd-9527-6395a7a9ef80,SESCO,II.5.1,Córdoba,AR-X,annual,2023,bioetanol combustion consumption by agriculture machines,0.9714168,TJ,N2O,0.6,kg/TJ,0.5828500799999999,kg +fbbe56c6-e012-3bdf-8b70-c0d016434c7c,SESCO,II.5.1,Salta,AR-A,annual,2023,bioetanol combustion consumption by agriculture machines,0.017894519999999997,TJ,CH4,10.0,kg/TJ,0.17894519999999997,kg +f6b48d54-60ba-32c6-b479-103b48e3d6d4,SESCO,II.5.1,Salta,AR-A,annual,2023,bioetanol combustion consumption by agriculture machines,0.017894519999999997,TJ,N2O,0.6,kg/TJ,0.010736711999999997,kg +aabf77e5-fc61-3fb0-80ec-41f013df6445,SESCO,II.5.1,Santa Fe,AR-S,annual,2023,bioetanol combustion consumption by agriculture machines,8.303057279999999,TJ,CH4,10.0,kg/TJ,83.03057279999999,kg +99ab1651-1895-3712-a6ba-c55b453480ad,SESCO,II.5.1,Santa Fe,AR-S,annual,2023,bioetanol combustion consumption by agriculture machines,8.303057279999999,TJ,N2O,0.6,kg/TJ,4.9818343679999995,kg +997a4f2c-09fb-3dda-bb38-d01c84a7822c,SESCO,II.5.1,Córdoba,AR-X,annual,2023,bioetanol combustion consumption by agriculture machines,0.17383247999999998,TJ,CH4,10.0,kg/TJ,1.7383247999999998,kg +4ced7332-53d4-3a62-8513-c94371d09456,SESCO,II.5.1,Córdoba,AR-X,annual,2023,bioetanol combustion consumption by agriculture machines,0.17383247999999998,TJ,N2O,0.6,kg/TJ,0.10429948799999998,kg +83db9cc9-04a6-30b5-82f1-b203b2fdd0cf,SESCO,II.5.1,Santa Fe,AR-S,annual,2023,bioetanol combustion consumption by agriculture machines,1.68208488,TJ,CH4,10.0,kg/TJ,16.8208488,kg +066c406d-b0ad-36a2-b20d-1154fa38fd2c,SESCO,II.5.1,Santa Fe,AR-S,annual,2023,bioetanol combustion consumption by agriculture machines,1.68208488,TJ,N2O,0.6,kg/TJ,1.009250928,kg +7a452d4b-b925-3a06-bd6c-001b47d45deb,SESCO,II.5.1,Tucuman,AR-T,annual,2023,bioetanol combustion consumption by agriculture machines,0.0894726,TJ,CH4,10.0,kg/TJ,0.894726,kg +4f6ef73d-691d-3b4c-a12b-f2c48d847b50,SESCO,II.5.1,Tucuman,AR-T,annual,2023,bioetanol combustion consumption by agriculture machines,0.0894726,TJ,N2O,0.6,kg/TJ,0.05368356,kg +bf3e84b2-ba4e-34e5-a4c1-3bd3985538e6,SESCO,II.1.1,Buenos Aires,AR-B,annual,2023,bioetanol combustion consumption by to the public,1613.2497742799999,TJ,CH4,10.0,kg/TJ,16132.497742799998,kg +307870d4-aacd-38a0-98fb-2112deb15139,SESCO,II.1.1,Buenos Aires,AR-B,annual,2023,bioetanol combustion consumption by to the public,1613.2497742799999,TJ,N2O,0.6,kg/TJ,967.9498645679998,kg +c85c3593-bb0b-3deb-8e2f-f63cc2fcf351,SESCO,II.1.1,Capital Federal,AR-C,annual,2023,bioetanol combustion consumption by to the public,452.23797851999996,TJ,CH4,10.0,kg/TJ,4522.3797852,kg +17880d8d-494b-3f52-a523-d6e30eb5524a,SESCO,II.1.1,Capital Federal,AR-C,annual,2023,bioetanol combustion consumption by to the public,452.23797851999996,TJ,N2O,0.6,kg/TJ,271.34278711199994,kg +da7a5d68-d976-352f-8a6b-64d608492ba7,SESCO,II.1.1,Catamarca,AR-K,annual,2023,bioetanol combustion consumption by to the public,10.46318148,TJ,CH4,10.0,kg/TJ,104.6318148,kg +86bc6682-bff5-3864-826a-d8806442f22e,SESCO,II.1.1,Catamarca,AR-K,annual,2023,bioetanol combustion consumption by to the public,10.46318148,TJ,N2O,0.6,kg/TJ,6.277908888,kg +cf3410b3-7c73-3519-8898-a6b72671ce93,SESCO,II.1.1,Chaco,AR-H,annual,2023,bioetanol combustion consumption by to the public,91.8116694,TJ,CH4,10.0,kg/TJ,918.116694,kg +5e267f51-fedd-3b66-b1df-5256ab04a7f7,SESCO,II.1.1,Chaco,AR-H,annual,2023,bioetanol combustion consumption by to the public,91.8116694,TJ,N2O,0.6,kg/TJ,55.08700164,kg +e97c7554-50d3-3e13-b053-3a7abe967064,SESCO,II.1.1,Corrientes,AR-W,annual,2023,bioetanol combustion consumption by to the public,108.88304147999999,TJ,CH4,10.0,kg/TJ,1088.8304148,kg +c2510a37-d301-3cf8-9dba-41d73fccc68b,SESCO,II.1.1,Corrientes,AR-W,annual,2023,bioetanol combustion consumption by to the public,108.88304147999999,TJ,N2O,0.6,kg/TJ,65.32982488799999,kg +23df1c2c-aa16-3a18-9dae-0dc450226da5,SESCO,II.1.1,Córdoba,AR-X,annual,2023,bioetanol combustion consumption by to the public,483.87548988,TJ,CH4,10.0,kg/TJ,4838.7548988,kg +4fbeb731-88c0-3efd-9eb2-8618a9acd519,SESCO,II.1.1,Córdoba,AR-X,annual,2023,bioetanol combustion consumption by to the public,483.87548988,TJ,N2O,0.6,kg/TJ,290.32529392799995,kg +921c3d32-e5c8-325b-80c4-2ed402c200dd,SESCO,II.1.1,Entre Rios,AR-E,annual,2023,bioetanol combustion consumption by to the public,160.7183532,TJ,CH4,10.0,kg/TJ,1607.183532,kg +14a35c25-6d92-377d-971b-acc88e3d1978,SESCO,II.1.1,Entre Rios,AR-E,annual,2023,bioetanol combustion consumption by to the public,160.7183532,TJ,N2O,0.6,kg/TJ,96.43101191999999,kg +8de1d7d9-41b5-3244-93e4-63e238cff928,SESCO,II.1.1,Formosa,AR-P,annual,2023,bioetanol combustion consumption by to the public,45.086521319999996,TJ,CH4,10.0,kg/TJ,450.86521319999997,kg +96897f98-6b68-32fe-9d08-dd2cc915b51c,SESCO,II.1.1,Formosa,AR-P,annual,2023,bioetanol combustion consumption by to the public,45.086521319999996,TJ,N2O,0.6,kg/TJ,27.051912791999996,kg +e6f0a794-de90-3934-9629-8277feecfe7b,SESCO,II.1.1,Jujuy,AR-Y,annual,2023,bioetanol combustion consumption by to the public,34.3574784,TJ,CH4,10.0,kg/TJ,343.57478399999997,kg +82a6bbe0-4b39-3b82-9fc1-62690169ecd3,SESCO,II.1.1,Jujuy,AR-Y,annual,2023,bioetanol combustion consumption by to the public,34.3574784,TJ,N2O,0.6,kg/TJ,20.614487039999997,kg +0bd7f72c-27d9-36a7-a737-ca2669fdb968,SESCO,II.1.1,La Pampa,AR-L,annual,2023,bioetanol combustion consumption by to the public,41.203410479999995,TJ,CH4,10.0,kg/TJ,412.03410479999997,kg +c3a28fd2-a2f1-32c3-a016-127f73a1ac61,SESCO,II.1.1,La Pampa,AR-L,annual,2023,bioetanol combustion consumption by to the public,41.203410479999995,TJ,N2O,0.6,kg/TJ,24.722046287999998,kg +6fe21b85-5c2a-3d87-aff4-57ea6cba1e25,SESCO,II.1.1,La Rioja,AR-F,annual,2023,bioetanol combustion consumption by to the public,28.2222144,TJ,CH4,10.0,kg/TJ,282.22214399999996,kg +cece14cd-9303-3c59-a113-6fa2634bbbf1,SESCO,II.1.1,La Rioja,AR-F,annual,2023,bioetanol combustion consumption by to the public,28.2222144,TJ,N2O,0.6,kg/TJ,16.93332864,kg +9f8bc4ea-dfe1-3972-9cb7-9ac7ce692eea,SESCO,II.1.1,Mendoza,AR-M,annual,2023,bioetanol combustion consumption by to the public,147.22588512,TJ,CH4,10.0,kg/TJ,1472.2588511999998,kg +5938360e-9893-3587-a8c2-b16f36cc4f41,SESCO,II.1.1,Mendoza,AR-M,annual,2023,bioetanol combustion consumption by to the public,147.22588512,TJ,N2O,0.6,kg/TJ,88.335531072,kg +f15d72cc-0652-3b73-aa69-7b3808acea52,SESCO,II.1.1,Misiones,AR-N,annual,2023,bioetanol combustion consumption by to the public,179.8271442,TJ,CH4,10.0,kg/TJ,1798.271442,kg +381f257a-69fd-3ce3-b7e9-5fb39b541b1b,SESCO,II.1.1,Misiones,AR-N,annual,2023,bioetanol combustion consumption by to the public,179.8271442,TJ,N2O,0.6,kg/TJ,107.89628651999999,kg +c4be7453-053b-3ca5-859f-398c695ee916,SESCO,II.1.1,Neuquén,AR-Q,annual,2023,bioetanol combustion consumption by to the public,48.03911712,TJ,CH4,10.0,kg/TJ,480.39117120000003,kg +1be27b06-b864-3c7a-8136-cb576dc04f2d,SESCO,II.1.1,Neuquén,AR-Q,annual,2023,bioetanol combustion consumption by to the public,48.03911712,TJ,N2O,0.6,kg/TJ,28.823470271999998,kg +8b96a823-8a89-3f2a-838a-9c671ffa8fdc,SESCO,II.1.1,Rio Negro,AR-R,annual,2023,bioetanol combustion consumption by to the public,29.8710666,TJ,CH4,10.0,kg/TJ,298.710666,kg +68b65f69-d39e-3d66-85de-7e1c40ea3212,SESCO,II.1.1,Rio Negro,AR-R,annual,2023,bioetanol combustion consumption by to the public,29.8710666,TJ,N2O,0.6,kg/TJ,17.922639959999998,kg +afa54eb0-9956-3586-91d8-fcfd198ec701,SESCO,II.1.1,Salta,AR-A,annual,2023,bioetanol combustion consumption by to the public,27.9665784,TJ,CH4,10.0,kg/TJ,279.665784,kg +3deaf687-3717-38d2-880f-3a3362f5d430,SESCO,II.1.1,Salta,AR-A,annual,2023,bioetanol combustion consumption by to the public,27.9665784,TJ,N2O,0.6,kg/TJ,16.77994704,kg +3f2dd650-0a1d-3bed-a53f-fa0b9b4b22cb,SESCO,II.1.1,San Juan,AR-J,annual,2023,bioetanol combustion consumption by to the public,33.5777886,TJ,CH4,10.0,kg/TJ,335.77788599999997,kg +45429998-8c2f-337c-9c79-9b1ec2ca2889,SESCO,II.1.1,San Juan,AR-J,annual,2023,bioetanol combustion consumption by to the public,33.5777886,TJ,N2O,0.6,kg/TJ,20.14667316,kg +f356f428-3a8d-3dcc-bef3-87dfc65fa826,SESCO,II.1.1,San Luis,AR-D,annual,2023,bioetanol combustion consumption by to the public,35.178069959999995,TJ,CH4,10.0,kg/TJ,351.78069959999993,kg +e9da4237-ce30-3a03-a4d2-cf0fb7b9e479,SESCO,II.1.1,San Luis,AR-D,annual,2023,bioetanol combustion consumption by to the public,35.178069959999995,TJ,N2O,0.6,kg/TJ,21.106841975999995,kg +beacd802-0682-3b8d-9a0d-2a88652d3d11,SESCO,II.1.1,Santa Fe,AR-S,annual,2023,bioetanol combustion consumption by to the public,320.61611483999997,TJ,CH4,10.0,kg/TJ,3206.1611483999995,kg +4c0f61cb-b6ab-3d06-9c35-06c50eb05139,SESCO,II.1.1,Santa Fe,AR-S,annual,2023,bioetanol combustion consumption by to the public,320.61611483999997,TJ,N2O,0.6,kg/TJ,192.36966890399998,kg +dea2e2ca-60c5-32f4-bfe3-00d3aafbd4aa,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2023,bioetanol combustion consumption by to the public,62.802096119999995,TJ,CH4,10.0,kg/TJ,628.0209612,kg +ad38a2b1-7126-319d-ad8c-7f7aad0a04e7,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2023,bioetanol combustion consumption by to the public,62.802096119999995,TJ,N2O,0.6,kg/TJ,37.681257671999994,kg +74817482-b5f6-3219-8959-716447905f87,SESCO,II.1.1,Tucuman,AR-T,annual,2023,bioetanol combustion consumption by to the public,112.38781103999999,TJ,CH4,10.0,kg/TJ,1123.8781104,kg +95314d95-abbc-38f4-a602-6089ed2a8d5a,SESCO,II.1.1,Tucuman,AR-T,annual,2023,bioetanol combustion consumption by to the public,112.38781103999999,TJ,N2O,0.6,kg/TJ,67.43268662399998,kg +c80da156-9c80-3c83-8176-e5e35a584f18,SESCO,II.1.1,Buenos Aires,AR-B,annual,2023,bioetanol combustion consumption by to the public,804.31521588,TJ,CH4,10.0,kg/TJ,8043.1521588,kg +2967c275-2f0a-3227-8038-2af371e466df,SESCO,II.1.1,Buenos Aires,AR-B,annual,2023,bioetanol combustion consumption by to the public,804.31521588,TJ,N2O,0.6,kg/TJ,482.58912952799994,kg +ee3450eb-4241-3169-8cb9-fa2b27d5ec4c,SESCO,II.1.1,Capital Federal,AR-C,annual,2023,bioetanol combustion consumption by to the public,324.89546148,TJ,CH4,10.0,kg/TJ,3248.9546148,kg +d893902d-ccd2-305a-acb0-0e3b4edf8202,SESCO,II.1.1,Capital Federal,AR-C,annual,2023,bioetanol combustion consumption by to the public,324.89546148,TJ,N2O,0.6,kg/TJ,194.93727688799999,kg +874aefb2-58be-37cf-8aa0-a89ed76a32d4,SESCO,II.1.1,Catamarca,AR-K,annual,2023,bioetanol combustion consumption by to the public,4.765055039999999,TJ,CH4,10.0,kg/TJ,47.65055039999999,kg +527cc4f1-cc07-39a5-b8ca-80b8d4529007,SESCO,II.1.1,Catamarca,AR-K,annual,2023,bioetanol combustion consumption by to the public,4.765055039999999,TJ,N2O,0.6,kg/TJ,2.8590330239999995,kg +b0f71af2-bc17-3495-a071-fa36bbb41a4a,SESCO,II.1.1,Chaco,AR-H,annual,2023,bioetanol combustion consumption by to the public,26.967041639999998,TJ,CH4,10.0,kg/TJ,269.67041639999997,kg +6172caac-0d7b-3380-8115-f9912767bebf,SESCO,II.1.1,Chaco,AR-H,annual,2023,bioetanol combustion consumption by to the public,26.967041639999998,TJ,N2O,0.6,kg/TJ,16.180224984,kg +921ce44e-b288-3942-991c-2df9563fb82a,SESCO,II.1.1,Corrientes,AR-W,annual,2023,bioetanol combustion consumption by to the public,34.94288484,TJ,CH4,10.0,kg/TJ,349.4288484,kg +2f1e85a1-d17a-3d53-a6ac-61b0a8ada009,SESCO,II.1.1,Corrientes,AR-W,annual,2023,bioetanol combustion consumption by to the public,34.94288484,TJ,N2O,0.6,kg/TJ,20.965730903999997,kg +e5de52e0-9feb-3a63-aea6-14968587c7ba,SESCO,II.1.1,Córdoba,AR-X,annual,2023,bioetanol combustion consumption by to the public,174.09834143999998,TJ,CH4,10.0,kg/TJ,1740.9834144,kg +970b0d6a-04b5-3e99-a94d-b4f3cc5c49d7,SESCO,II.1.1,Córdoba,AR-X,annual,2023,bioetanol combustion consumption by to the public,174.09834143999998,TJ,N2O,0.6,kg/TJ,104.459004864,kg +166ba566-06d4-3993-be81-39e66da49da6,SESCO,II.1.1,Entre Rios,AR-E,annual,2023,bioetanol combustion consumption by to the public,64.9443258,TJ,CH4,10.0,kg/TJ,649.443258,kg +aed4c53c-179b-323e-8257-8a457c1514d0,SESCO,II.1.1,Entre Rios,AR-E,annual,2023,bioetanol combustion consumption by to the public,64.9443258,TJ,N2O,0.6,kg/TJ,38.96659548,kg +ddeccf2a-1a7d-3e96-b98d-200f843ed027,SESCO,II.1.1,Formosa,AR-P,annual,2023,bioetanol combustion consumption by to the public,16.58822004,TJ,CH4,10.0,kg/TJ,165.8822004,kg +123373b6-3040-3aeb-9b01-26e31a51b7e6,SESCO,II.1.1,Formosa,AR-P,annual,2023,bioetanol combustion consumption by to the public,16.58822004,TJ,N2O,0.6,kg/TJ,9.952932023999999,kg +f6b4ff02-371e-33c7-9742-6b3356079aa8,SESCO,II.1.1,Jujuy,AR-Y,annual,2023,bioetanol combustion consumption by to the public,8.47177704,TJ,CH4,10.0,kg/TJ,84.71777039999999,kg +720f27e9-3997-350a-a3a0-bc03dde3ebea,SESCO,II.1.1,Jujuy,AR-Y,annual,2023,bioetanol combustion consumption by to the public,8.47177704,TJ,N2O,0.6,kg/TJ,5.0830662239999995,kg +0e689288-b8a5-3641-bfaa-ed9f4e9307ff,SESCO,II.1.1,La Pampa,AR-L,annual,2023,bioetanol combustion consumption by to the public,19.55871036,TJ,CH4,10.0,kg/TJ,195.58710359999998,kg +39eae213-c85e-38d5-ab01-80b082c1d21e,SESCO,II.1.1,La Pampa,AR-L,annual,2023,bioetanol combustion consumption by to the public,19.55871036,TJ,N2O,0.6,kg/TJ,11.735226216,kg +4599d623-c1f9-3330-97d1-d68728c95752,SESCO,II.1.1,La Rioja,AR-F,annual,2023,bioetanol combustion consumption by to the public,9.90333864,TJ,CH4,10.0,kg/TJ,99.0333864,kg +28944079-c189-3f13-9a79-d158733ea005,SESCO,II.1.1,La Rioja,AR-F,annual,2023,bioetanol combustion consumption by to the public,9.90333864,TJ,N2O,0.6,kg/TJ,5.942003184,kg +46120fbe-4477-3a5a-84f1-0c72f2916b5f,SESCO,II.1.1,Mendoza,AR-M,annual,2023,bioetanol combustion consumption by to the public,68.87600748,TJ,CH4,10.0,kg/TJ,688.7600748,kg +10de0200-0eaf-3adf-9cc6-9b516b3a338f,SESCO,II.1.1,Mendoza,AR-M,annual,2023,bioetanol combustion consumption by to the public,68.87600748,TJ,N2O,0.6,kg/TJ,41.325604487999996,kg +293f151a-a555-3632-8a20-93a5cf76ff6b,SESCO,II.1.1,Misiones,AR-N,annual,2023,bioetanol combustion consumption by to the public,46.02470544,TJ,CH4,10.0,kg/TJ,460.24705439999997,kg +21ab0616-1e29-3e53-8266-14eaa032e8b2,SESCO,II.1.1,Misiones,AR-N,annual,2023,bioetanol combustion consumption by to the public,46.02470544,TJ,N2O,0.6,kg/TJ,27.614823263999998,kg +35503bbd-ee38-3e06-a5c7-2ce145ab5d04,SESCO,II.1.1,Neuquén,AR-Q,annual,2023,bioetanol combustion consumption by to the public,29.050475039999995,TJ,CH4,10.0,kg/TJ,290.5047503999999,kg +fddbb944-f85d-3e71-b322-98a9bea565ce,SESCO,II.1.1,Neuquén,AR-Q,annual,2023,bioetanol combustion consumption by to the public,29.050475039999995,TJ,N2O,0.6,kg/TJ,17.430285023999996,kg +752f67d6-7ecb-304d-944e-85952bc5afbf,SESCO,II.1.1,Rio Negro,AR-R,annual,2023,bioetanol combustion consumption by to the public,15.491541599999998,TJ,CH4,10.0,kg/TJ,154.915416,kg +893c0c3e-9321-3720-bc6c-551315cde8b6,SESCO,II.1.1,Rio Negro,AR-R,annual,2023,bioetanol combustion consumption by to the public,15.491541599999998,TJ,N2O,0.6,kg/TJ,9.294924959999998,kg +2116ed27-b660-3d0a-b60f-647e06fe634f,SESCO,II.1.1,Salta,AR-A,annual,2023,bioetanol combustion consumption by to the public,12.799694520000001,TJ,CH4,10.0,kg/TJ,127.99694520000001,kg +c370ede3-cf40-3f37-9c04-96802629c6ec,SESCO,II.1.1,Salta,AR-A,annual,2023,bioetanol combustion consumption by to the public,12.799694520000001,TJ,N2O,0.6,kg/TJ,7.679816712,kg +5235cb4e-f278-39d4-adcc-a8475fa9f7d2,SESCO,II.1.1,San Juan,AR-J,annual,2023,bioetanol combustion consumption by to the public,10.966784399999998,TJ,CH4,10.0,kg/TJ,109.66784399999997,kg +1d89dd5a-ac2c-3471-9d63-12589307f6ce,SESCO,II.1.1,San Juan,AR-J,annual,2023,bioetanol combustion consumption by to the public,10.966784399999998,TJ,N2O,0.6,kg/TJ,6.580070639999999,kg +c94693a0-37cd-3fd6-adfa-b8c3081ca17b,SESCO,II.1.1,San Luis,AR-D,annual,2023,bioetanol combustion consumption by to the public,13.658631479999999,TJ,CH4,10.0,kg/TJ,136.5863148,kg +3aa2051a-a7be-3a52-9db7-6d1896199daf,SESCO,II.1.1,San Luis,AR-D,annual,2023,bioetanol combustion consumption by to the public,13.658631479999999,TJ,N2O,0.6,kg/TJ,8.195178888,kg +aa8b98e1-3b8d-3285-8c55-560ca433ca6c,SESCO,II.1.1,Santa Fe,AR-S,annual,2023,bioetanol combustion consumption by to the public,152.26702704,TJ,CH4,10.0,kg/TJ,1522.6702704,kg +d92cc3f5-1b87-39c6-be34-966695503a35,SESCO,II.1.1,Santa Fe,AR-S,annual,2023,bioetanol combustion consumption by to the public,152.26702704,TJ,N2O,0.6,kg/TJ,91.36021622399998,kg +b7a7999f-c847-327c-a310-c84a60bbd3b3,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2023,bioetanol combustion consumption by to the public,21.537333,TJ,CH4,10.0,kg/TJ,215.37333,kg +7f4b8f82-bc4a-3393-a748-d802ca4add31,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2023,bioetanol combustion consumption by to the public,21.537333,TJ,N2O,0.6,kg/TJ,12.922399799999999,kg +e80ee963-f63f-37e5-ad0a-d396fad30e87,SESCO,II.1.1,Tucuman,AR-T,annual,2023,bioetanol combustion consumption by to the public,27.365833799999997,TJ,CH4,10.0,kg/TJ,273.65833799999996,kg +d8b770d9-05a8-384a-97d5-9063c2caa947,SESCO,II.1.1,Tucuman,AR-T,annual,2023,bioetanol combustion consumption by to the public,27.365833799999997,TJ,N2O,0.6,kg/TJ,16.419500279999998,kg +76c3a953-41d3-34ef-9426-5a5d6921f5d7,SESCO,I.3.1,Buenos Aires,AR-B,annual,2023,bioetanol combustion consumption by petrochemical industries,0.7822461599999999,TJ,CH4,10.0,kg/TJ,7.822461599999999,kg +2bfca054-f817-348a-98ad-f829683229a8,SESCO,I.3.1,Buenos Aires,AR-B,annual,2023,bioetanol combustion consumption by petrochemical industries,0.7822461599999999,TJ,N2O,0.6,kg/TJ,0.4693476959999999,kg +26d2d88b-cceb-3941-b650-c0c2cca1c17b,SESCO,I.3.1,Misiones,AR-N,annual,2023,bioetanol combustion consumption by petrochemical industries,0.015338159999999998,TJ,CH4,10.0,kg/TJ,0.15338159999999998,kg +44905aeb-eebc-3ab9-94d3-6f687198d4ca,SESCO,I.3.1,Misiones,AR-N,annual,2023,bioetanol combustion consumption by petrochemical industries,0.015338159999999998,TJ,N2O,0.6,kg/TJ,0.009202895999999999,kg +08e075ad-db9a-3445-8bfc-1385cf818755,SESCO,I.3.1,Buenos Aires,AR-B,annual,2023,bioetanol combustion consumption by petrochemical industries,0.35277768,TJ,CH4,10.0,kg/TJ,3.5277768,kg +7660d6ba-ceb3-3990-b7f1-6608a4964ba8,SESCO,I.3.1,Buenos Aires,AR-B,annual,2023,bioetanol combustion consumption by petrochemical industries,0.35277768,TJ,N2O,0.6,kg/TJ,0.21166660799999998,kg +0ec006d9-358f-38d9-a4c9-64877ddd3e89,SESCO,I.3.1,Entre Rios,AR-E,annual,2023,bioetanol combustion consumption by petrochemical industries,0.0255636,TJ,CH4,10.0,kg/TJ,0.255636,kg +8daaf9a7-7e06-3f14-b162-68c172c5cb0a,SESCO,I.3.1,Entre Rios,AR-E,annual,2023,bioetanol combustion consumption by petrochemical industries,0.0255636,TJ,N2O,0.6,kg/TJ,0.015338159999999998,kg +f106a8bd-3715-3e75-b2e9-1285515480d8,SESCO,I.3.1,La Pampa,AR-L,annual,2023,bioetanol combustion consumption by petrochemical industries,0.07413444,TJ,CH4,10.0,kg/TJ,0.7413444,kg +311ffabc-8272-3434-8f1e-faf34903fe3e,SESCO,I.3.1,La Pampa,AR-L,annual,2023,bioetanol combustion consumption by petrochemical industries,0.07413444,TJ,N2O,0.6,kg/TJ,0.044480663999999996,kg +eecf7e2b-dc7a-390f-b9a9-06b611fefd7a,SESCO,I.3.1,Neuquén,AR-Q,annual,2023,bioetanol combustion consumption by petrochemical industries,0.04857084,TJ,CH4,10.0,kg/TJ,0.4857084,kg +5dbf080e-e6f9-314b-bafc-86580c0073e8,SESCO,I.3.1,Neuquén,AR-Q,annual,2023,bioetanol combustion consumption by petrochemical industries,0.04857084,TJ,N2O,0.6,kg/TJ,0.029142503999999996,kg +795f8fb6-a248-32f5-b31a-99c080247470,SESCO,I.3.1,Rio Negro,AR-R,annual,2023,bioetanol combustion consumption by petrochemical industries,0.05368356,TJ,CH4,10.0,kg/TJ,0.5368356,kg +4c4f9f39-9070-3321-aeff-5f90670e8cfb,SESCO,I.3.1,Rio Negro,AR-R,annual,2023,bioetanol combustion consumption by petrochemical industries,0.05368356,TJ,N2O,0.6,kg/TJ,0.032210136,kg +c57f51be-1a95-3c65-9761-aa37a591a1ec,SESCO,II.5.1,Buenos Aires,AR-B,annual,2023,bioetanol combustion consumption by agriculture machines,0.52235126424,TJ,CH4,10.0,kg/TJ,5.2235126424,kg +c4d13a6d-4ed9-335d-8681-ca9926568bf6,SESCO,II.5.1,Buenos Aires,AR-B,annual,2023,bioetanol combustion consumption by agriculture machines,0.52235126424,TJ,N2O,0.6,kg/TJ,0.31341075854399997,kg +f989b31b-c1cf-386c-8944-0eace9dd9327,SESCO,II.5.1,Capital Federal,AR-C,annual,2023,bioetanol combustion consumption by agriculture machines,0.44935440443999997,TJ,CH4,10.0,kg/TJ,4.4935440444,kg +69b7e62a-941c-3dc1-a8b6-57611c5e2e02,SESCO,II.5.1,Capital Federal,AR-C,annual,2023,bioetanol combustion consumption by agriculture machines,0.44935440443999997,TJ,N2O,0.6,kg/TJ,0.269612642664,kg +689cbb29-2b0e-35ca-b589-c9973820d48f,SESCO,II.5.1,Córdoba,AR-X,annual,2023,bioetanol combustion consumption by agriculture machines,0.6071227182,TJ,CH4,10.0,kg/TJ,6.0712271819999994,kg +50e80ac8-2394-3f59-b753-76a65eaf85bb,SESCO,II.5.1,Córdoba,AR-X,annual,2023,bioetanol combustion consumption by agriculture machines,0.6071227182,TJ,N2O,0.6,kg/TJ,0.36427363092,kg +e9125b11-12c1-39d0-8103-f69e455c2728,SESCO,II.5.1,Santa Fe,AR-S,annual,2023,bioetanol combustion consumption by agriculture machines,1.20728958084,TJ,CH4,10.0,kg/TJ,12.072895808399998,kg +a250b3ce-3300-37d0-8d07-a3e4ae646337,SESCO,II.5.1,Santa Fe,AR-S,annual,2023,bioetanol combustion consumption by agriculture machines,1.20728958084,TJ,N2O,0.6,kg/TJ,0.7243737485039999,kg +9d2d44d7-21d6-3822-859d-e39551d97c67,SESCO,II.5.1,Buenos Aires,AR-B,annual,2023,bioetanol combustion consumption by agriculture machines,0.35357782067999993,TJ,CH4,10.0,kg/TJ,3.5357782067999994,kg +85c5737b-34ec-3c2e-9f81-aa37a97e46b0,SESCO,II.5.1,Buenos Aires,AR-B,annual,2023,bioetanol combustion consumption by agriculture machines,0.35357782067999993,TJ,N2O,0.6,kg/TJ,0.21214669240799996,kg +c43a902e-a186-371b-b38c-9360f6cfb466,SESCO,II.5.1,Capital Federal,AR-C,annual,2023,bioetanol combustion consumption by agriculture machines,0.10664111375999999,TJ,CH4,10.0,kg/TJ,1.0664111375999998,kg +25b6d303-bbcb-3623-9c8a-d47c0f544b57,SESCO,II.5.1,Capital Federal,AR-C,annual,2023,bioetanol combustion consumption by agriculture machines,0.10664111375999999,TJ,N2O,0.6,kg/TJ,0.063984668256,kg +fee8ed7e-d38f-31df-a9e6-b514901283e5,SESCO,II.5.1,Córdoba,AR-X,annual,2023,bioetanol combustion consumption by agriculture machines,0.22895271431999997,TJ,CH4,10.0,kg/TJ,2.2895271432,kg +b7db65ae-f496-3f24-8ca6-67e9281c0a69,SESCO,II.5.1,Córdoba,AR-X,annual,2023,bioetanol combustion consumption by agriculture machines,0.22895271431999997,TJ,N2O,0.6,kg/TJ,0.13737162859199997,kg +9bb79027-fa4b-3baf-8fa1-ca3408bd81f1,SESCO,II.5.1,Santa Fe,AR-S,annual,2023,bioetanol combustion consumption by agriculture machines,0.31316943816,TJ,CH4,10.0,kg/TJ,3.1316943816,kg +d9bc7c7f-bb50-3edc-9158-ef7eb8b1bf5c,SESCO,II.5.1,Santa Fe,AR-S,annual,2023,bioetanol combustion consumption by agriculture machines,0.31316943816,TJ,N2O,0.6,kg/TJ,0.187901662896,kg +f35fdb26-172e-39c6-9beb-8c1ad18ba473,SESCO,II.1.1,Buenos Aires,AR-B,annual,2023,bioetanol combustion consumption by to the public,446.67705447756,TJ,CH4,10.0,kg/TJ,4466.7705447756,kg +091e319e-157c-33ba-9187-114399876b67,SESCO,II.1.1,Buenos Aires,AR-B,annual,2023,bioetanol combustion consumption by to the public,446.67705447756,TJ,N2O,0.6,kg/TJ,268.00623268653595,kg +a03d9fef-5945-38e5-b1ff-9dcf95595541,SESCO,II.1.1,Capital Federal,AR-C,annual,2023,bioetanol combustion consumption by to the public,33.92398365299999,TJ,CH4,10.0,kg/TJ,339.23983652999993,kg +46950ee9-f193-353b-ad1a-cc4e0116e093,SESCO,II.1.1,Capital Federal,AR-C,annual,2023,bioetanol combustion consumption by to the public,33.92398365299999,TJ,N2O,0.6,kg/TJ,20.354390191799997,kg +731a9735-53e1-38e8-bfd9-96a7c0381e06,SESCO,II.1.1,Chaco,AR-H,annual,2023,bioetanol combustion consumption by to the public,5.0294721366,TJ,CH4,10.0,kg/TJ,50.294721366,kg +d817e73c-7bbd-377b-92da-020e0c6618ee,SESCO,II.1.1,Chaco,AR-H,annual,2023,bioetanol combustion consumption by to the public,5.0294721366,TJ,N2O,0.6,kg/TJ,3.0176832819599997,kg +cd35105a-5d2f-31b4-bfcb-69419274fdf0,SESCO,II.1.1,Chubut,AR-U,annual,2023,bioetanol combustion consumption by to the public,26.955729746999996,TJ,CH4,10.0,kg/TJ,269.55729747,kg +3ac51907-5bed-3f06-a074-5d76d951818b,SESCO,II.1.1,Chubut,AR-U,annual,2023,bioetanol combustion consumption by to the public,26.955729746999996,TJ,N2O,0.6,kg/TJ,16.173437848199995,kg +bdd44533-6b9d-3714-a91d-9251d9a9c93f,SESCO,II.1.1,Corrientes,AR-W,annual,2023,bioetanol combustion consumption by to the public,39.68814598452,TJ,CH4,10.0,kg/TJ,396.88145984519997,kg +442a27da-21a2-35e1-8071-5a76798469dd,SESCO,II.1.1,Corrientes,AR-W,annual,2023,bioetanol combustion consumption by to the public,39.68814598452,TJ,N2O,0.6,kg/TJ,23.812887590712,kg +31542b9d-9be1-3e4d-a1c5-197506529187,SESCO,II.1.1,Córdoba,AR-X,annual,2023,bioetanol combustion consumption by to the public,93.38661723239998,TJ,CH4,10.0,kg/TJ,933.8661723239999,kg +8a5c8a03-353e-33bb-9e55-74d894729205,SESCO,II.1.1,Córdoba,AR-X,annual,2023,bioetanol combustion consumption by to the public,93.38661723239998,TJ,N2O,0.6,kg/TJ,56.03197033943999,kg +50953ea7-6c86-33c4-b285-ef84ead8ab72,SESCO,II.1.1,Entre Rios,AR-E,annual,2023,bioetanol combustion consumption by to the public,74.24327191428,TJ,CH4,10.0,kg/TJ,742.4327191428,kg +43a59487-b516-37f0-99d2-41490054c4ff,SESCO,II.1.1,Entre Rios,AR-E,annual,2023,bioetanol combustion consumption by to the public,74.24327191428,TJ,N2O,0.6,kg/TJ,44.545963148568,kg +27c8a453-7a6e-344c-85b1-1e7de3698844,SESCO,II.1.1,Jujuy,AR-Y,annual,2023,bioetanol combustion consumption by to the public,3.7071616939199994,TJ,CH4,10.0,kg/TJ,37.07161693919999,kg +1241f732-e7e5-39b7-94be-c3403f9cd548,SESCO,II.1.1,Jujuy,AR-Y,annual,2023,bioetanol combustion consumption by to the public,3.7071616939199994,TJ,N2O,0.6,kg/TJ,2.2242970163519997,kg +f6ad7607-9d92-3902-93e4-24bc473ebbed,SESCO,II.1.1,La Pampa,AR-L,annual,2023,bioetanol combustion consumption by to the public,35.704444934879994,TJ,CH4,10.0,kg/TJ,357.04444934879996,kg +aecd415d-9a18-3d03-a172-ec283eeb42e1,SESCO,II.1.1,La Pampa,AR-L,annual,2023,bioetanol combustion consumption by to the public,35.704444934879994,TJ,N2O,0.6,kg/TJ,21.422666960927994,kg +5ea47f88-0ddf-3be4-94a8-a0ff7c7b478c,SESCO,II.1.1,Mendoza,AR-M,annual,2023,bioetanol combustion consumption by to the public,7.913404106999998,TJ,CH4,10.0,kg/TJ,79.13404106999998,kg +0310589b-2a3e-3649-9801-a5c367d828c0,SESCO,II.1.1,Mendoza,AR-M,annual,2023,bioetanol combustion consumption by to the public,7.913404106999998,TJ,N2O,0.6,kg/TJ,4.748042464199998,kg +30e4698f-7705-38a2-80bb-50c3515f939d,SESCO,II.1.1,Neuquén,AR-Q,annual,2023,bioetanol combustion consumption by to the public,36.7800257358,TJ,CH4,10.0,kg/TJ,367.800257358,kg +b070f4d9-66de-302e-9be1-7ce087fb472e,SESCO,II.1.1,Neuquén,AR-Q,annual,2023,bioetanol combustion consumption by to the public,36.7800257358,TJ,N2O,0.6,kg/TJ,22.06801544148,kg +9cb69728-8e38-32de-b8fe-c47e41855ad9,SESCO,II.1.1,Rio Negro,AR-R,annual,2023,bioetanol combustion consumption by to the public,117.08272467431999,TJ,CH4,10.0,kg/TJ,1170.8272467431998,kg +fc6139e5-774b-31b7-8809-1eebca8d0827,SESCO,II.1.1,Rio Negro,AR-R,annual,2023,bioetanol combustion consumption by to the public,117.08272467431999,TJ,N2O,0.6,kg/TJ,70.24963480459199,kg +43e88638-7619-333f-94ef-86a9c1a931f2,SESCO,II.1.1,San Juan,AR-J,annual,2023,bioetanol combustion consumption by to the public,24.64994159784,TJ,CH4,10.0,kg/TJ,246.4994159784,kg +f54d00fd-4824-3729-953e-3c2f76313eb6,SESCO,II.1.1,San Juan,AR-J,annual,2023,bioetanol combustion consumption by to the public,24.64994159784,TJ,N2O,0.6,kg/TJ,14.789964958704001,kg +298d1f19-c643-330e-8a1f-be14ae22fd9b,SESCO,II.1.1,San Luis,AR-D,annual,2023,bioetanol combustion consumption by to the public,8.49995579628,TJ,CH4,10.0,kg/TJ,84.9995579628,kg +e3e07e01-c35e-3488-aa80-da0cd275d451,SESCO,II.1.1,San Luis,AR-D,annual,2023,bioetanol combustion consumption by to the public,8.49995579628,TJ,N2O,0.6,kg/TJ,5.099973477768,kg +e6f5dca2-e417-3d11-8505-5c73c06393a6,SESCO,II.1.1,Santa Fe,AR-S,annual,2023,bioetanol combustion consumption by to the public,110.20208745096,TJ,CH4,10.0,kg/TJ,1102.0208745096,kg +f4ea16b1-bdeb-3662-aff8-4f136eaea46e,SESCO,II.1.1,Santa Fe,AR-S,annual,2023,bioetanol combustion consumption by to the public,110.20208745096,TJ,N2O,0.6,kg/TJ,66.121252470576,kg +43542474-f4bf-3991-a439-8ae100ae94b6,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2023,bioetanol combustion consumption by to the public,7.51311903276,TJ,CH4,10.0,kg/TJ,75.1311903276,kg +348c5de9-d62c-3a05-8186-214718dd66e5,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2023,bioetanol combustion consumption by to the public,7.51311903276,TJ,N2O,0.6,kg/TJ,4.5078714196559995,kg +417a8cab-cfd7-3ae3-b002-93cb9179699e,SESCO,II.1.1,Tucuman,AR-T,annual,2023,bioetanol combustion consumption by to the public,0.3035268482399999,TJ,CH4,10.0,kg/TJ,3.0352684823999994,kg +c22d2560-b8e9-3a00-82e9-3aeb137dd5ae,SESCO,II.1.1,Tucuman,AR-T,annual,2023,bioetanol combustion consumption by to the public,0.3035268482399999,TJ,N2O,0.6,kg/TJ,0.18211610894399996,kg +3c2f222a-1abe-357f-aea5-5353ea2f45ee,SESCO,II.1.1,Buenos Aires,AR-B,annual,2023,bioetanol combustion consumption by to the public,69.39372406356,TJ,CH4,10.0,kg/TJ,693.9372406356,kg +89c5506b-2060-3d66-a54a-c2e14cf4ff37,SESCO,II.1.1,Buenos Aires,AR-B,annual,2023,bioetanol combustion consumption by to the public,69.39372406356,TJ,N2O,0.6,kg/TJ,41.636234438136,kg +6021927a-2ffe-3481-b8ec-ee5ae79d5eff,SESCO,II.1.1,Capital Federal,AR-C,annual,2023,bioetanol combustion consumption by to the public,4.69082601468,TJ,CH4,10.0,kg/TJ,46.9082601468,kg +3a18fd28-f0b6-3269-8fe8-756af20ef7eb,SESCO,II.1.1,Capital Federal,AR-C,annual,2023,bioetanol combustion consumption by to the public,4.69082601468,TJ,N2O,0.6,kg/TJ,2.814495608808,kg +42aaa25f-75e8-3318-a9ce-c5ec6252ebe2,SESCO,II.1.1,Chaco,AR-H,annual,2023,bioetanol combustion consumption by to the public,0.60470951436,TJ,CH4,10.0,kg/TJ,6.0470951436,kg +e4dd9a11-c6e2-397c-a07c-b2c63a08d9ea,SESCO,II.1.1,Chaco,AR-H,annual,2023,bioetanol combustion consumption by to the public,0.60470951436,TJ,N2O,0.6,kg/TJ,0.362825708616,kg +473b4b93-42e1-3d3c-a109-53cf0c0e6e33,SESCO,II.1.1,Chubut,AR-U,annual,2023,bioetanol combustion consumption by to the public,4.02534926676,TJ,CH4,10.0,kg/TJ,40.2534926676,kg +891b1ba9-057c-360e-8987-65139bb3fb84,SESCO,II.1.1,Chubut,AR-U,annual,2023,bioetanol combustion consumption by to the public,4.02534926676,TJ,N2O,0.6,kg/TJ,2.415209560056,kg +e29e9c9c-4c9e-3304-a3dd-87d05bce3dc8,SESCO,II.1.1,Corrientes,AR-W,annual,2023,bioetanol combustion consumption by to the public,5.4881981568,TJ,CH4,10.0,kg/TJ,54.881981568,kg +c4f66b7a-277c-38e8-baed-4f57be38006e,SESCO,II.1.1,Corrientes,AR-W,annual,2023,bioetanol combustion consumption by to the public,5.4881981568,TJ,N2O,0.6,kg/TJ,3.29291889408,kg +6371f553-5e87-3170-add7-f61bb8cf30e6,SESCO,II.1.1,Córdoba,AR-X,annual,2023,bioetanol combustion consumption by to the public,15.93144514152,TJ,CH4,10.0,kg/TJ,159.31445141519998,kg +8bd202b5-fa2b-3a09-bfee-51c4c787c82a,SESCO,II.1.1,Córdoba,AR-X,annual,2023,bioetanol combustion consumption by to the public,15.93144514152,TJ,N2O,0.6,kg/TJ,9.558867084911999,kg +a7d23add-45ad-3a90-a6e5-89d958fa5e75,SESCO,II.1.1,Entre Rios,AR-E,annual,2023,bioetanol combustion consumption by to the public,17.58033313056,TJ,CH4,10.0,kg/TJ,175.8033313056,kg +f9ea8777-15b4-3e49-ae80-5401ad13eb1c,SESCO,II.1.1,Entre Rios,AR-E,annual,2023,bioetanol combustion consumption by to the public,17.58033313056,TJ,N2O,0.6,kg/TJ,10.548199878336,kg +7b7bd1ab-7488-33c4-854a-57ff3ff11e63,SESCO,II.1.1,Jujuy,AR-Y,annual,2023,bioetanol combustion consumption by to the public,0.26523768816,TJ,CH4,10.0,kg/TJ,2.6523768816,kg +385c88b2-bdfe-3f29-9f7e-039097486d33,SESCO,II.1.1,Jujuy,AR-Y,annual,2023,bioetanol combustion consumption by to the public,0.26523768816,TJ,N2O,0.6,kg/TJ,0.15914261289599999,kg +dae4083f-b7bb-34f8-8afe-9aba65544d29,SESCO,II.1.1,La Pampa,AR-L,annual,2023,bioetanol combustion consumption by to the public,7.265474214119999,TJ,CH4,10.0,kg/TJ,72.65474214119999,kg +8bcac303-c6b2-39cb-9d00-57bc347927e3,SESCO,II.1.1,La Pampa,AR-L,annual,2023,bioetanol combustion consumption by to the public,7.265474214119999,TJ,N2O,0.6,kg/TJ,4.359284528471999,kg +63da1c64-adc6-3584-85b2-b6344c937508,SESCO,II.1.1,Mendoza,AR-M,annual,2023,bioetanol combustion consumption by to the public,1.3286987863199997,TJ,CH4,10.0,kg/TJ,13.286987863199997,kg +fbadb934-5b71-3dcb-a5db-69564b23e626,SESCO,II.1.1,Mendoza,AR-M,annual,2023,bioetanol combustion consumption by to the public,1.3286987863199997,TJ,N2O,0.6,kg/TJ,0.7972192717919998,kg +3909023c-d7c3-357a-96ac-6802b0068eff,SESCO,II.1.1,Neuquén,AR-Q,annual,2023,bioetanol combustion consumption by to the public,10.10253532392,TJ,CH4,10.0,kg/TJ,101.0253532392,kg +0b259795-e589-34f1-ac15-373a89cfd5bb,SESCO,II.1.1,Neuquén,AR-Q,annual,2023,bioetanol combustion consumption by to the public,10.10253532392,TJ,N2O,0.6,kg/TJ,6.061521194351999,kg +1bec52ca-1a92-3613-902f-9bd7b757480a,SESCO,II.1.1,Rio Negro,AR-R,annual,2023,bioetanol combustion consumption by to the public,18.20464225704,TJ,CH4,10.0,kg/TJ,182.0464225704,kg +59fa648d-eaba-39e3-87bd-6be3eadb40fa,SESCO,II.1.1,Rio Negro,AR-R,annual,2023,bioetanol combustion consumption by to the public,18.20464225704,TJ,N2O,0.6,kg/TJ,10.922785354223999,kg +d5ca8ae2-bd31-34da-aa1e-1ef3a3219eb4,SESCO,II.1.1,San Juan,AR-J,annual,2023,bioetanol combustion consumption by to the public,2.4337032908399996,TJ,CH4,10.0,kg/TJ,24.337032908399998,kg +e0c70116-c0f1-3cd6-9833-ccbb30cdb2b9,SESCO,II.1.1,San Juan,AR-J,annual,2023,bioetanol combustion consumption by to the public,2.4337032908399996,TJ,N2O,0.6,kg/TJ,1.4602219745039997,kg +ec5c4561-6d3a-3e6d-9f02-a84cbd65b921,SESCO,II.1.1,San Luis,AR-D,annual,2023,bioetanol combustion consumption by to the public,1.2104645799599998,TJ,CH4,10.0,kg/TJ,12.104645799599998,kg +63adb18c-3419-3a78-99ff-00f1d6f0371c,SESCO,II.1.1,San Luis,AR-D,annual,2023,bioetanol combustion consumption by to the public,1.2104645799599998,TJ,N2O,0.6,kg/TJ,0.7262787479759999,kg +252137c1-728e-3368-887b-3ef74720de96,SESCO,II.1.1,Santa Fe,AR-S,annual,2023,bioetanol combustion consumption by to the public,21.258495476639997,TJ,CH4,10.0,kg/TJ,212.58495476639996,kg +d99bdeba-f0a2-3b70-9ed8-dc90337381c1,SESCO,II.1.1,Santa Fe,AR-S,annual,2023,bioetanol combustion consumption by to the public,21.258495476639997,TJ,N2O,0.6,kg/TJ,12.755097285983998,kg +a24cc4e0-34b8-3a55-82d3-051bae516914,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2023,bioetanol combustion consumption by to the public,1.1037979026,TJ,CH4,10.0,kg/TJ,11.037979026,kg +27f9fa16-ea5d-32f7-8c71-7eab5610a476,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2023,bioetanol combustion consumption by to the public,1.1037979026,TJ,N2O,0.6,kg/TJ,0.66227874156,kg +bf999efe-2d2e-3bf0-8a0c-999ce03b86d6,SESCO,II.1.1,Tucuman,AR-T,annual,2023,bioetanol combustion consumption by to the public,0.05057246987999999,TJ,CH4,10.0,kg/TJ,0.5057246987999999,kg +0e4a57a5-f5d0-3652-897b-de6839e7bc26,SESCO,II.1.1,Tucuman,AR-T,annual,2023,bioetanol combustion consumption by to the public,0.05057246987999999,TJ,N2O,0.6,kg/TJ,0.030343481927999995,kg +2288b29f-d8f3-33e7-b8e9-3f655b40a20c,SESCO,II.5.1,Buenos Aires,AR-B,annual,2023,bioetanol combustion consumption by agriculture machines,8.067872159999999,TJ,CH4,10.0,kg/TJ,80.67872159999999,kg +f39b27b1-68f3-3947-bc7d-cd764f13178c,SESCO,II.5.1,Buenos Aires,AR-B,annual,2023,bioetanol combustion consumption by agriculture machines,8.067872159999999,TJ,N2O,0.6,kg/TJ,4.840723295999999,kg +1595c918-3a01-357a-92f8-a20489ad40a4,SESCO,II.5.1,Salta,AR-A,annual,2023,bioetanol combustion consumption by agriculture machines,0.07157807999999999,TJ,CH4,10.0,kg/TJ,0.7157807999999999,kg +3279daf9-c1e6-3b59-a63c-cf4907355935,SESCO,II.5.1,Salta,AR-A,annual,2023,bioetanol combustion consumption by agriculture machines,0.07157807999999999,TJ,N2O,0.6,kg/TJ,0.04294684799999999,kg +9aeef23a-a6a0-33eb-88ac-68016ccbf293,SESCO,II.5.1,Santa Fe,AR-S,annual,2023,bioetanol combustion consumption by agriculture machines,3.17499912,TJ,CH4,10.0,kg/TJ,31.749991199999997,kg +f46f3164-0d44-3150-a609-f60581513906,SESCO,II.5.1,Santa Fe,AR-S,annual,2023,bioetanol combustion consumption by agriculture machines,3.17499912,TJ,N2O,0.6,kg/TJ,1.9049994719999999,kg +790539d5-5d43-39dd-82c9-cd6332e5c397,SESCO,II.5.1,Buenos Aires,AR-B,annual,2023,bioetanol combustion consumption by agriculture machines,0.64164636,TJ,CH4,10.0,kg/TJ,6.4164636,kg +1e6abdba-4ee7-35ed-ab4c-a69e8fad6cd2,SESCO,II.5.1,Buenos Aires,AR-B,annual,2023,bioetanol combustion consumption by agriculture machines,0.64164636,TJ,N2O,0.6,kg/TJ,0.384987816,kg +155a6b3f-5ce8-377f-a3f6-d26c104cb805,SESCO,II.5.1,Santa Fe,AR-S,annual,2023,bioetanol combustion consumption by agriculture machines,0.34255223999999995,TJ,CH4,10.0,kg/TJ,3.4255223999999993,kg +d9b5f19e-d431-36c8-afe7-5bfb519a1e7e,SESCO,II.5.1,Santa Fe,AR-S,annual,2023,bioetanol combustion consumption by agriculture machines,0.34255223999999995,TJ,N2O,0.6,kg/TJ,0.20553134399999998,kg +507d6e89-fd03-371b-a4a8-ec578238844e,SESCO,II.1.1,Buenos Aires,AR-B,annual,2023,bioetanol combustion consumption by to the public,3243.9978327599997,TJ,CH4,10.0,kg/TJ,32439.978327599998,kg +59d906b2-5cfc-3812-b12e-e51e9c2b4b08,SESCO,II.1.1,Buenos Aires,AR-B,annual,2023,bioetanol combustion consumption by to the public,3243.9978327599997,TJ,N2O,0.6,kg/TJ,1946.3986996559997,kg +6251e2b4-8736-3776-8097-d8832fd2c6c6,SESCO,II.1.1,Capital Federal,AR-C,annual,2023,bioetanol combustion consumption by to the public,706.28903532,TJ,CH4,10.0,kg/TJ,7062.8903532,kg +55e2ae17-7de5-3f4f-b116-012badb888af,SESCO,II.1.1,Capital Federal,AR-C,annual,2023,bioetanol combustion consumption by to the public,706.28903532,TJ,N2O,0.6,kg/TJ,423.773421192,kg +1747466e-dda9-3270-af92-1c4356438d40,SESCO,II.1.1,Catamarca,AR-K,annual,2023,bioetanol combustion consumption by to the public,95.87883816,TJ,CH4,10.0,kg/TJ,958.7883816,kg +e43c687f-8451-3c9b-ad18-524d98a21640,SESCO,II.1.1,Catamarca,AR-K,annual,2023,bioetanol combustion consumption by to the public,95.87883816,TJ,N2O,0.6,kg/TJ,57.527302896,kg +c129ae3e-3b35-3bc9-b55a-1a97bc85e40b,SESCO,II.1.1,Chaco,AR-H,annual,2023,bioetanol combustion consumption by to the public,253.67015915999997,TJ,CH4,10.0,kg/TJ,2536.7015915999996,kg +00b03867-7700-3b10-a7ea-420f1c94225d,SESCO,II.1.1,Chaco,AR-H,annual,2023,bioetanol combustion consumption by to the public,253.67015915999997,TJ,N2O,0.6,kg/TJ,152.20209549599997,kg +4ab9429a-3f6b-30ce-aacc-70008b839acd,SESCO,II.1.1,Chubut,AR-U,annual,2023,bioetanol combustion consumption by to the public,279.99555444,TJ,CH4,10.0,kg/TJ,2799.9555444,kg +4efe8907-947e-3085-a346-4bf33c4e1b2a,SESCO,II.1.1,Chubut,AR-U,annual,2023,bioetanol combustion consumption by to the public,279.99555444,TJ,N2O,0.6,kg/TJ,167.99733266399997,kg +c1d8aa55-b952-30c2-be50-56144c6060c3,SESCO,II.1.1,Corrientes,AR-W,annual,2023,bioetanol combustion consumption by to the public,259.48843452,TJ,CH4,10.0,kg/TJ,2594.8843452,kg +8f01d75a-8ed0-3289-8138-133f6672ed74,SESCO,II.1.1,Corrientes,AR-W,annual,2023,bioetanol combustion consumption by to the public,259.48843452,TJ,N2O,0.6,kg/TJ,155.693060712,kg +cb0f02c7-f1ea-3db7-9d30-c62ef26ce492,SESCO,II.1.1,Córdoba,AR-X,annual,2023,bioetanol combustion consumption by to the public,977.7616855199999,TJ,CH4,10.0,kg/TJ,9777.616855199998,kg +676835fc-ceb4-337d-879a-f92586c03672,SESCO,II.1.1,Córdoba,AR-X,annual,2023,bioetanol combustion consumption by to the public,977.7616855199999,TJ,N2O,0.6,kg/TJ,586.6570113119999,kg +5cdc4eb3-d841-34a1-8382-094c93556806,SESCO,II.1.1,Entre Rios,AR-E,annual,2023,bioetanol combustion consumption by to the public,324.45576755999997,TJ,CH4,10.0,kg/TJ,3244.5576755999996,kg +45246fd6-989b-3a7f-95ec-e13203b5d6e1,SESCO,II.1.1,Entre Rios,AR-E,annual,2023,bioetanol combustion consumption by to the public,324.45576755999997,TJ,N2O,0.6,kg/TJ,194.67346053599996,kg +72ef49e6-d00f-3a12-87ec-915be8ba1f6f,SESCO,II.1.1,Formosa,AR-P,annual,2023,bioetanol combustion consumption by to the public,124.93698228,TJ,CH4,10.0,kg/TJ,1249.3698227999998,kg +41805e12-b78e-3c1f-b3c4-98a5163942ac,SESCO,II.1.1,Formosa,AR-P,annual,2023,bioetanol combustion consumption by to the public,124.93698228,TJ,N2O,0.6,kg/TJ,74.962189368,kg +41053a86-f5cb-3711-8fa2-41fe9aa0fdf8,SESCO,II.1.1,Jujuy,AR-Y,annual,2023,bioetanol combustion consumption by to the public,147.14152524,TJ,CH4,10.0,kg/TJ,1471.4152523999999,kg +e21069bb-8fb8-37ab-ad1f-ff5b5c5ebdeb,SESCO,II.1.1,Jujuy,AR-Y,annual,2023,bioetanol combustion consumption by to the public,147.14152524,TJ,N2O,0.6,kg/TJ,88.284915144,kg +17bec33c-81bf-3994-bcfe-9e4dc4917923,SESCO,II.1.1,La Pampa,AR-L,annual,2023,bioetanol combustion consumption by to the public,156.15269424,TJ,CH4,10.0,kg/TJ,1561.5269423999998,kg +19905c70-0908-31cd-9b6f-713fa0b9ee00,SESCO,II.1.1,La Pampa,AR-L,annual,2023,bioetanol combustion consumption by to the public,156.15269424,TJ,N2O,0.6,kg/TJ,93.69161654399998,kg +10031e66-5404-3e30-8830-604c2bd7a65a,SESCO,II.1.1,La Rioja,AR-F,annual,2023,bioetanol combustion consumption by to the public,102.77078472,TJ,CH4,10.0,kg/TJ,1027.7078471999998,kg +428d9b5d-3ba1-305d-b890-750d5733a927,SESCO,II.1.1,La Rioja,AR-F,annual,2023,bioetanol combustion consumption by to the public,102.77078472,TJ,N2O,0.6,kg/TJ,61.662470832,kg +b76b1f36-dbbd-37e4-9c86-617b0c549ffe,SESCO,II.1.1,Mendoza,AR-M,annual,2023,bioetanol combustion consumption by to the public,453.17616264,TJ,CH4,10.0,kg/TJ,4531.7616264,kg +aafd35a7-35f2-3bdc-9ee6-98a3b4f04d22,SESCO,II.1.1,Mendoza,AR-M,annual,2023,bioetanol combustion consumption by to the public,453.17616264,TJ,N2O,0.6,kg/TJ,271.905697584,kg +aba3b1ed-5b9e-37b8-97e0-87acaa1482a9,SESCO,II.1.1,Misiones,AR-N,annual,2023,bioetanol combustion consumption by to the public,377.29828512,TJ,CH4,10.0,kg/TJ,3772.9828512,kg +eb15201c-50af-37a7-b774-a71a746cd811,SESCO,II.1.1,Misiones,AR-N,annual,2023,bioetanol combustion consumption by to the public,377.29828512,TJ,N2O,0.6,kg/TJ,226.37897107199998,kg +bbe2affa-73d7-33f5-a161-12649188f894,SESCO,II.1.1,Neuquén,AR-Q,annual,2023,bioetanol combustion consumption by to the public,308.89520424,TJ,CH4,10.0,kg/TJ,3088.9520424,kg +9c7480be-8d00-3ab4-ad77-c60469697920,SESCO,II.1.1,Neuquén,AR-Q,annual,2023,bioetanol combustion consumption by to the public,308.89520424,TJ,N2O,0.6,kg/TJ,185.33712254399998,kg +fd41f2e0-ce28-3e4c-8d5e-59224dfed244,SESCO,II.1.1,Rio Negro,AR-R,annual,2023,bioetanol combustion consumption by to the public,304.65931572,TJ,CH4,10.0,kg/TJ,3046.5931572,kg +69532cef-00de-3acc-890e-4c36884cf605,SESCO,II.1.1,Rio Negro,AR-R,annual,2023,bioetanol combustion consumption by to the public,304.65931572,TJ,N2O,0.6,kg/TJ,182.79558943199999,kg +e3362f74-0220-342a-8cf7-1c002eb1c3c9,SESCO,II.1.1,Salta,AR-A,annual,2023,bioetanol combustion consumption by to the public,322.52571575999997,TJ,CH4,10.0,kg/TJ,3225.2571575999996,kg +11b0012c-ec3b-3e19-93c4-e7a552d4249b,SESCO,II.1.1,Salta,AR-A,annual,2023,bioetanol combustion consumption by to the public,322.52571575999997,TJ,N2O,0.6,kg/TJ,193.51542945599996,kg +9a4125fc-5086-3d79-8db0-8cde2206ee3a,SESCO,II.1.1,San Juan,AR-J,annual,2023,bioetanol combustion consumption by to the public,152.45875403999997,TJ,CH4,10.0,kg/TJ,1524.5875403999999,kg +9a8b85c3-f4bc-3d12-8bab-9c1d720a1d38,SESCO,II.1.1,San Juan,AR-J,annual,2023,bioetanol combustion consumption by to the public,152.45875403999997,TJ,N2O,0.6,kg/TJ,91.47525242399998,kg +e9939f26-bb66-395f-97a0-d0a1e4041100,SESCO,II.1.1,San Luis,AR-D,annual,2023,bioetanol combustion consumption by to the public,139.03530768,TJ,CH4,10.0,kg/TJ,1390.3530767999998,kg +bda326a0-b33a-3eb1-8c79-8cceb2e729b5,SESCO,II.1.1,San Luis,AR-D,annual,2023,bioetanol combustion consumption by to the public,139.03530768,TJ,N2O,0.6,kg/TJ,83.42118460799999,kg +f68cf759-b044-349d-aa4d-2048963a2aed,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2023,bioetanol combustion consumption by to the public,190.10115504,TJ,CH4,10.0,kg/TJ,1901.0115504,kg +adba31a1-6e2a-3548-9b41-67621990f517,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2023,bioetanol combustion consumption by to the public,190.10115504,TJ,N2O,0.6,kg/TJ,114.060693024,kg +129bddb7-e481-3d1c-a062-a70e21dc4dcd,SESCO,II.1.1,Santa Fe,AR-S,annual,2023,bioetanol combustion consumption by to the public,677.5938943199999,TJ,CH4,10.0,kg/TJ,6775.938943199999,kg +485b23b1-5958-33a3-9535-0b06af5038e4,SESCO,II.1.1,Santa Fe,AR-S,annual,2023,bioetanol combustion consumption by to the public,677.5938943199999,TJ,N2O,0.6,kg/TJ,406.5563365919999,kg +0b2440c7-6f03-3b34-91c0-d70463ad2975,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2023,bioetanol combustion consumption by to the public,161.42135219999997,TJ,CH4,10.0,kg/TJ,1614.2135219999998,kg +e5adfc81-2a91-396d-9833-85e2a318459b,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2023,bioetanol combustion consumption by to the public,161.42135219999997,TJ,N2O,0.6,kg/TJ,96.85281131999999,kg +06046b35-2a01-3ecb-8874-ab4b7b27ce0b,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2023,bioetanol combustion consumption by to the public,117.47496743999999,TJ,CH4,10.0,kg/TJ,1174.7496743999998,kg +9ea4f41c-b3b0-31f3-a9b4-8e81392fdf25,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2023,bioetanol combustion consumption by to the public,117.47496743999999,TJ,N2O,0.6,kg/TJ,70.48498046399999,kg +41b3ebd3-b9e2-3b10-951d-f5e4449bf93f,SESCO,II.1.1,Tucuman,AR-T,annual,2023,bioetanol combustion consumption by to the public,322.94751515999997,TJ,CH4,10.0,kg/TJ,3229.4751515999997,kg +66a6fef6-9f3e-3805-9e93-b56e86716f5c,SESCO,II.1.1,Tucuman,AR-T,annual,2023,bioetanol combustion consumption by to the public,322.94751515999997,TJ,N2O,0.6,kg/TJ,193.76850909599997,kg +76d3fc28-9bfd-3eeb-a62c-b87740c360d1,SESCO,II.1.1,Buenos Aires,AR-B,annual,2023,bioetanol combustion consumption by to the public,1343.7020631599999,TJ,CH4,10.0,kg/TJ,13437.020631599999,kg +bfa5f561-783e-3de1-b734-1ca631549ebf,SESCO,II.1.1,Buenos Aires,AR-B,annual,2023,bioetanol combustion consumption by to the public,1343.7020631599999,TJ,N2O,0.6,kg/TJ,806.2212378959999,kg +c312db34-c542-3a28-a4ad-041fa132721d,SESCO,II.1.1,Capital Federal,AR-C,annual,2023,bioetanol combustion consumption by to the public,358.5524972399999,TJ,CH4,10.0,kg/TJ,3585.524972399999,kg +1839eaf9-3776-3ef8-9b4d-a6a57ba5c2d3,SESCO,II.1.1,Capital Federal,AR-C,annual,2023,bioetanol combustion consumption by to the public,358.5524972399999,TJ,N2O,0.6,kg/TJ,215.13149834399994,kg +a4984ee0-f951-3b71-99e5-884c9278b278,SESCO,II.1.1,Catamarca,AR-K,annual,2023,bioetanol combustion consumption by to the public,35.2266408,TJ,CH4,10.0,kg/TJ,352.26640799999996,kg +7794c727-abca-39d7-927c-207815e0b7be,SESCO,II.1.1,Catamarca,AR-K,annual,2023,bioetanol combustion consumption by to the public,35.2266408,TJ,N2O,0.6,kg/TJ,21.135984479999998,kg +5c2dfbaa-fcd0-3517-9eb7-365f6722cbad,SESCO,II.1.1,Chaco,AR-H,annual,2023,bioetanol combustion consumption by to the public,65.33289251999999,TJ,CH4,10.0,kg/TJ,653.3289251999998,kg +33c7381d-f459-3e03-b416-7bf0bc553d55,SESCO,II.1.1,Chaco,AR-H,annual,2023,bioetanol combustion consumption by to the public,65.33289251999999,TJ,N2O,0.6,kg/TJ,39.19973551199999,kg +19ad20ac-d11a-3143-8c13-ebdcc1ef018d,SESCO,II.1.1,Chubut,AR-U,annual,2023,bioetanol combustion consumption by to the public,90.10657728,TJ,CH4,10.0,kg/TJ,901.0657728,kg +6350eb26-efe2-3f98-a4e4-a18e8d36d819,SESCO,II.1.1,Chubut,AR-U,annual,2023,bioetanol combustion consumption by to the public,90.10657728,TJ,N2O,0.6,kg/TJ,54.063946367999996,kg +37ffd8a7-25a9-3f14-9e36-4eed0acb0a32,SESCO,II.1.1,Corrientes,AR-W,annual,2023,bioetanol combustion consumption by to the public,86.55579324,TJ,CH4,10.0,kg/TJ,865.5579324,kg +1fc368e1-add7-3f65-8534-0e0439b27476,SESCO,II.1.1,Corrientes,AR-W,annual,2023,bioetanol combustion consumption by to the public,86.55579324,TJ,N2O,0.6,kg/TJ,51.933475944,kg +eb9b9641-a0c6-37b1-aead-fb1a66a996c8,SESCO,II.1.1,Córdoba,AR-X,annual,2023,bioetanol combustion consumption by to the public,362.62989144,TJ,CH4,10.0,kg/TJ,3626.2989144,kg +e59f8ec3-09de-3dca-a2a3-c99b9daac490,SESCO,II.1.1,Córdoba,AR-X,annual,2023,bioetanol combustion consumption by to the public,362.62989144,TJ,N2O,0.6,kg/TJ,217.57793486399999,kg +32b4b871-f28c-34e4-bc96-a424ca620e12,SESCO,II.1.1,Entre Rios,AR-E,annual,2023,bioetanol combustion consumption by to the public,136.00857743999998,TJ,CH4,10.0,kg/TJ,1360.0857743999998,kg +03703040-13c1-3e21-8f64-27dab4684fcd,SESCO,II.1.1,Entre Rios,AR-E,annual,2023,bioetanol combustion consumption by to the public,136.00857743999998,TJ,N2O,0.6,kg/TJ,81.60514646399999,kg +2cd328ef-009d-3c5b-89ba-40e4fc6dc71a,SESCO,II.1.1,Formosa,AR-P,annual,2023,bioetanol combustion consumption by to the public,34.17342048,TJ,CH4,10.0,kg/TJ,341.7342048,kg +0b6cd6ee-672f-36f4-854a-6242a814f23d,SESCO,II.1.1,Formosa,AR-P,annual,2023,bioetanol combustion consumption by to the public,34.17342048,TJ,N2O,0.6,kg/TJ,20.504052287999997,kg +7f245ed3-898a-3310-b4bc-be15bb4fbb8e,SESCO,II.1.1,Jujuy,AR-Y,annual,2023,bioetanol combustion consumption by to the public,43.85946852,TJ,CH4,10.0,kg/TJ,438.5946852,kg +b8ea6ef5-6e75-3bfa-bb5e-af70646b3f86,SESCO,II.1.1,Jujuy,AR-Y,annual,2023,bioetanol combustion consumption by to the public,43.85946852,TJ,N2O,0.6,kg/TJ,26.315681112,kg +5033ea21-f365-3303-a02c-3af6a62e8e2b,SESCO,II.1.1,La Pampa,AR-L,annual,2023,bioetanol combustion consumption by to the public,85.94737956,TJ,CH4,10.0,kg/TJ,859.4737956,kg +3572cb02-6ab4-3396-a322-6ef77f8dd33e,SESCO,II.1.1,La Pampa,AR-L,annual,2023,bioetanol combustion consumption by to the public,85.94737956,TJ,N2O,0.6,kg/TJ,51.568427736,kg +b281fd3b-278f-382b-82f2-764158fe1ebc,SESCO,II.1.1,La Rioja,AR-F,annual,2023,bioetanol combustion consumption by to the public,41.880845879999995,TJ,CH4,10.0,kg/TJ,418.8084587999999,kg +3746d59c-9027-3dcb-86b6-06fa87628a0c,SESCO,II.1.1,La Rioja,AR-F,annual,2023,bioetanol combustion consumption by to the public,41.880845879999995,TJ,N2O,0.6,kg/TJ,25.128507527999997,kg +06eff2d2-e767-326a-82c3-04b8ea2317e7,SESCO,II.1.1,Mendoza,AR-M,annual,2023,bioetanol combustion consumption by to the public,223.45909668,TJ,CH4,10.0,kg/TJ,2234.5909668,kg +6cb4f256-c962-3e89-bcdd-8ec6585465b8,SESCO,II.1.1,Mendoza,AR-M,annual,2023,bioetanol combustion consumption by to the public,223.45909668,TJ,N2O,0.6,kg/TJ,134.075458008,kg +975e8d55-ba8c-3ebd-90f3-4f0edaabc838,SESCO,II.1.1,Misiones,AR-N,annual,2023,bioetanol combustion consumption by to the public,112.21653491999999,TJ,CH4,10.0,kg/TJ,1122.1653491999998,kg +8f1a6cf0-a99c-383b-b40e-636e9dee1a05,SESCO,II.1.1,Misiones,AR-N,annual,2023,bioetanol combustion consumption by to the public,112.21653491999999,TJ,N2O,0.6,kg/TJ,67.329920952,kg +e18715be-280e-328c-babc-e3e9200e1aae,SESCO,II.1.1,Neuquén,AR-Q,annual,2023,bioetanol combustion consumption by to the public,158.80363956,TJ,CH4,10.0,kg/TJ,1588.0363955999999,kg +5f043bba-9e55-313a-a2d9-4581913005ef,SESCO,II.1.1,Neuquén,AR-Q,annual,2023,bioetanol combustion consumption by to the public,158.80363956,TJ,N2O,0.6,kg/TJ,95.282183736,kg +dcc0e558-61f7-3ba5-afbf-475f93b88c83,SESCO,II.1.1,Rio Negro,AR-R,annual,2023,bioetanol combustion consumption by to the public,143.98186427999997,TJ,CH4,10.0,kg/TJ,1439.8186427999997,kg +33577c51-b3ea-3c86-a372-325a9dbcffe8,SESCO,II.1.1,Rio Negro,AR-R,annual,2023,bioetanol combustion consumption by to the public,143.98186427999997,TJ,N2O,0.6,kg/TJ,86.38911856799997,kg +7476f183-bf39-3a14-9cb4-5a750a62df15,SESCO,II.1.1,Salta,AR-A,annual,2023,bioetanol combustion consumption by to the public,102.30297083999999,TJ,CH4,10.0,kg/TJ,1023.0297083999999,kg +c87d852d-28e3-37c2-bd2c-9a084ce3bae0,SESCO,II.1.1,Salta,AR-A,annual,2023,bioetanol combustion consumption by to the public,102.30297083999999,TJ,N2O,0.6,kg/TJ,61.381782503999986,kg +1934eabf-7f48-3d6c-a61a-077e4297013e,SESCO,II.1.1,San Juan,AR-J,annual,2023,bioetanol combustion consumption by to the public,60.767233559999994,TJ,CH4,10.0,kg/TJ,607.6723356,kg +3579a7be-0883-3e00-af9b-511ae78a7dc0,SESCO,II.1.1,San Juan,AR-J,annual,2023,bioetanol combustion consumption by to the public,60.767233559999994,TJ,N2O,0.6,kg/TJ,36.46034013599999,kg +c2568f7a-3b8f-35fb-a227-a0f4bca1440d,SESCO,II.1.1,San Luis,AR-D,annual,2023,bioetanol combustion consumption by to the public,51.38539236,TJ,CH4,10.0,kg/TJ,513.8539235999999,kg +7964877c-8b52-3e78-a037-383bffcd355e,SESCO,II.1.1,San Luis,AR-D,annual,2023,bioetanol combustion consumption by to the public,51.38539236,TJ,N2O,0.6,kg/TJ,30.831235416,kg +fabb1b0e-dadd-3cb4-ba41-2f8e4d37b121,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2023,bioetanol combustion consumption by to the public,51.814860839999994,TJ,CH4,10.0,kg/TJ,518.1486084,kg +41ab8bdf-ff35-361a-b165-05d6630fd792,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2023,bioetanol combustion consumption by to the public,51.814860839999994,TJ,N2O,0.6,kg/TJ,31.088916503999997,kg +b95d62be-c83d-3f14-833a-a6434727801b,SESCO,II.1.1,Santa Fe,AR-S,annual,2023,bioetanol combustion consumption by to the public,297.65744567999997,TJ,CH4,10.0,kg/TJ,2976.5744567999996,kg +e58651b9-683c-3374-a79c-4210b56c31b6,SESCO,II.1.1,Santa Fe,AR-S,annual,2023,bioetanol combustion consumption by to the public,297.65744567999997,TJ,N2O,0.6,kg/TJ,178.59446740799999,kg +9f869421-bacb-3700-b505-44bccb922e67,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2023,bioetanol combustion consumption by to the public,54.5910678,TJ,CH4,10.0,kg/TJ,545.910678,kg +b05fa324-4c15-3c67-abf0-8a1873f9c44d,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2023,bioetanol combustion consumption by to the public,54.5910678,TJ,N2O,0.6,kg/TJ,32.754640679999994,kg +f421263f-9077-3542-abe5-c59594a0d5c6,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2023,bioetanol combustion consumption by to the public,33.426963359999995,TJ,CH4,10.0,kg/TJ,334.26963359999996,kg +0f381a8c-2948-3887-975f-719c3011a81e,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2023,bioetanol combustion consumption by to the public,33.426963359999995,TJ,N2O,0.6,kg/TJ,20.056178015999997,kg +ccf9b03f-34d3-3660-a17c-7e3407f4015f,SESCO,II.1.1,Tucuman,AR-T,annual,2023,bioetanol combustion consumption by to the public,83.53928843999999,TJ,CH4,10.0,kg/TJ,835.3928844,kg +fe5655a2-c84b-3392-a7d2-41b1ed74733c,SESCO,II.1.1,Tucuman,AR-T,annual,2023,bioetanol combustion consumption by to the public,83.53928843999999,TJ,N2O,0.6,kg/TJ,50.12357306399999,kg +4a9b9dda-3ee8-323b-b094-0d4b92178f9e,SESCO,II.1.1,Buenos Aires,AR-B,annual,2023,bioetanol combustion consumption by freight transport,60.30708876,TJ,CH4,10.0,kg/TJ,603.0708876,kg +086f1970-33d0-365f-97a8-9ccb4c814b1f,SESCO,II.1.1,Buenos Aires,AR-B,annual,2023,bioetanol combustion consumption by freight transport,60.30708876,TJ,N2O,0.6,kg/TJ,36.184253256,kg +8dfd059e-6e09-3e92-8a9f-7f2f77ecec49,SESCO,II.1.1,Capital Federal,AR-C,annual,2023,bioetanol combustion consumption by freight transport,9.210565079999999,TJ,CH4,10.0,kg/TJ,92.10565079999998,kg +5975a96d-860b-34f0-874d-0a1cfe528994,SESCO,II.1.1,Capital Federal,AR-C,annual,2023,bioetanol combustion consumption by freight transport,9.210565079999999,TJ,N2O,0.6,kg/TJ,5.526339047999999,kg +8cf918c9-e216-3072-b98d-6da991283393,SESCO,II.1.1,Catamarca,AR-K,annual,2023,bioetanol combustion consumption by freight transport,0.4090176,TJ,CH4,10.0,kg/TJ,4.090176,kg +f2684436-7217-3f67-9ec1-c6a0a1c466dc,SESCO,II.1.1,Catamarca,AR-K,annual,2023,bioetanol combustion consumption by freight transport,0.4090176,TJ,N2O,0.6,kg/TJ,0.24541055999999997,kg +34558553-286b-390c-a849-9964a8f61d20,SESCO,II.1.1,Chaco,AR-H,annual,2023,bioetanol combustion consumption by freight transport,1.6565212799999998,TJ,CH4,10.0,kg/TJ,16.565212799999998,kg +2e1a252a-ce3e-3100-98a4-cb9dcb7101d3,SESCO,II.1.1,Chaco,AR-H,annual,2023,bioetanol combustion consumption by freight transport,1.6565212799999998,TJ,N2O,0.6,kg/TJ,0.9939127679999998,kg +9380fee1-8e08-3627-a706-7bd9fa457d11,SESCO,II.1.1,Chubut,AR-U,annual,2023,bioetanol combustion consumption by freight transport,1.7715574799999998,TJ,CH4,10.0,kg/TJ,17.7155748,kg +592e5a51-2046-3d7f-82ce-b42500320091,SESCO,II.1.1,Chubut,AR-U,annual,2023,bioetanol combustion consumption by freight transport,1.7715574799999998,TJ,N2O,0.6,kg/TJ,1.0629344879999998,kg +299656f3-6205-3d93-b198-785b588eafc2,SESCO,II.1.1,Corrientes,AR-W,annual,2023,bioetanol combustion consumption by freight transport,1.5977249999999998,TJ,CH4,10.0,kg/TJ,15.977249999999998,kg +f5377f24-005f-30fe-a504-ce91e9aa5c78,SESCO,II.1.1,Corrientes,AR-W,annual,2023,bioetanol combustion consumption by freight transport,1.5977249999999998,TJ,N2O,0.6,kg/TJ,0.9586349999999999,kg +4ab609d8-a160-338f-8523-73de0135033d,SESCO,II.1.1,Córdoba,AR-X,annual,2023,bioetanol combustion consumption by freight transport,10.225439999999999,TJ,CH4,10.0,kg/TJ,102.25439999999999,kg +dea01e60-550c-3aa0-82f8-ac2d0d1e9e4a,SESCO,II.1.1,Córdoba,AR-X,annual,2023,bioetanol combustion consumption by freight transport,10.225439999999999,TJ,N2O,0.6,kg/TJ,6.135263999999999,kg +6a2ec9ec-ef7d-3580-a39d-d71b9dc1fd7a,SESCO,II.1.1,Entre Rios,AR-E,annual,2023,bioetanol combustion consumption by freight transport,3.33349344,TJ,CH4,10.0,kg/TJ,33.334934399999995,kg +58dc7513-4ba9-37cd-8b48-53a9795bfb26,SESCO,II.1.1,Entre Rios,AR-E,annual,2023,bioetanol combustion consumption by freight transport,3.33349344,TJ,N2O,0.6,kg/TJ,2.0000960639999996,kg +c6128bde-2675-38fc-be46-e8ee7a50e128,SESCO,II.1.1,Formosa,AR-P,annual,2023,bioetanol combustion consumption by freight transport,0.57006828,TJ,CH4,10.0,kg/TJ,5.7006828,kg +8b26daa6-b9b4-3b86-b918-909878f52218,SESCO,II.1.1,Formosa,AR-P,annual,2023,bioetanol combustion consumption by freight transport,0.57006828,TJ,N2O,0.6,kg/TJ,0.342040968,kg +b248eddb-1199-3618-a59f-75242468770a,SESCO,II.1.1,Jujuy,AR-Y,annual,2023,bioetanol combustion consumption by freight transport,0.75156984,TJ,CH4,10.0,kg/TJ,7.515698400000001,kg +773fa0f8-01dc-39ce-8b2c-82e42131c350,SESCO,II.1.1,Jujuy,AR-Y,annual,2023,bioetanol combustion consumption by freight transport,0.75156984,TJ,N2O,0.6,kg/TJ,0.450941904,kg +210d0f17-56ff-3202-8d6a-5367be7cc960,SESCO,II.1.1,La Pampa,AR-L,annual,2023,bioetanol combustion consumption by freight transport,1.0660021199999998,TJ,CH4,10.0,kg/TJ,10.6600212,kg +8082d2bd-cc92-39c1-9da5-7f9970f21295,SESCO,II.1.1,La Pampa,AR-L,annual,2023,bioetanol combustion consumption by freight transport,1.0660021199999998,TJ,N2O,0.6,kg/TJ,0.6396012719999998,kg +da070d9b-d98c-35a9-9f8a-6e63373118fe,SESCO,II.1.1,La Rioja,AR-F,annual,2023,bioetanol combustion consumption by freight transport,0.6518717999999999,TJ,CH4,10.0,kg/TJ,6.518717999999999,kg +bf6dee62-9a38-3bd4-9e2c-42decf8585a9,SESCO,II.1.1,La Rioja,AR-F,annual,2023,bioetanol combustion consumption by freight transport,0.6518717999999999,TJ,N2O,0.6,kg/TJ,0.3911230799999999,kg +1720fa31-9a74-32ad-bc6c-ed189ae21074,SESCO,II.1.1,Mendoza,AR-M,annual,2023,bioetanol combustion consumption by freight transport,4.43784096,TJ,CH4,10.0,kg/TJ,44.3784096,kg +e4a818f2-7fa4-3e41-aaba-2250a7aa82ce,SESCO,II.1.1,Mendoza,AR-M,annual,2023,bioetanol combustion consumption by freight transport,4.43784096,TJ,N2O,0.6,kg/TJ,2.662704576,kg +78c0d060-40ef-3c89-8687-2e985162e06e,SESCO,II.1.1,Misiones,AR-N,annual,2023,bioetanol combustion consumption by freight transport,1.3293072,TJ,CH4,10.0,kg/TJ,13.293071999999999,kg +da0a8f4e-efe8-3b5e-b859-0e521a602569,SESCO,II.1.1,Misiones,AR-N,annual,2023,bioetanol combustion consumption by freight transport,1.3293072,TJ,N2O,0.6,kg/TJ,0.7975843199999999,kg +69f6c851-644d-35ea-8661-1c63db0b7e1a,SESCO,II.1.1,Neuquén,AR-Q,annual,2023,bioetanol combustion consumption by freight transport,1.7996774399999997,TJ,CH4,10.0,kg/TJ,17.996774399999996,kg +26361d6d-aabf-3978-858b-b6694942807b,SESCO,II.1.1,Neuquén,AR-Q,annual,2023,bioetanol combustion consumption by freight transport,1.7996774399999997,TJ,N2O,0.6,kg/TJ,1.0798064639999998,kg +6deb290a-c644-30db-93c9-f8697b885b88,SESCO,II.1.1,Rio Negro,AR-R,annual,2023,bioetanol combustion consumption by freight transport,2.0169680399999996,TJ,CH4,10.0,kg/TJ,20.169680399999997,kg +12c49b0b-aef8-3ee5-b498-a4adcf685915,SESCO,II.1.1,Rio Negro,AR-R,annual,2023,bioetanol combustion consumption by freight transport,2.0169680399999996,TJ,N2O,0.6,kg/TJ,1.2101808239999998,kg +627a03a5-16bc-3353-b0a2-9c8177c6085b,SESCO,II.1.1,Salta,AR-A,annual,2023,bioetanol combustion consumption by freight transport,2.2495968,TJ,CH4,10.0,kg/TJ,22.495967999999998,kg +034f6eec-5519-3c3c-bb25-6c05d49c53d2,SESCO,II.1.1,Salta,AR-A,annual,2023,bioetanol combustion consumption by freight transport,2.2495968,TJ,N2O,0.6,kg/TJ,1.34975808,kg +2d9cb39a-7afd-3328-80f9-7c84a4a221a8,SESCO,II.1.1,San Juan,AR-J,annual,2023,bioetanol combustion consumption by freight transport,1.2014892,TJ,CH4,10.0,kg/TJ,12.014892,kg +8c1a2fd5-296d-336d-8cf5-5a74c203ef89,SESCO,II.1.1,San Juan,AR-J,annual,2023,bioetanol combustion consumption by freight transport,1.2014892,TJ,N2O,0.6,kg/TJ,0.72089352,kg +93f13214-be26-3993-9c4f-08611df34a98,SESCO,II.1.1,San Luis,AR-D,annual,2023,bioetanol combustion consumption by freight transport,0.9714168,TJ,CH4,10.0,kg/TJ,9.714167999999999,kg +c574b95c-6acb-35ad-8f0c-fef121e0085e,SESCO,II.1.1,San Luis,AR-D,annual,2023,bioetanol combustion consumption by freight transport,0.9714168,TJ,N2O,0.6,kg/TJ,0.5828500799999999,kg +8a6b0f4c-5306-3b69-a4f0-2756fbbd4fd0,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2023,bioetanol combustion consumption by freight transport,1.0020931199999998,TJ,CH4,10.0,kg/TJ,10.020931199999998,kg +92c48b79-a942-39f6-9a94-5ca5837d2d46,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2023,bioetanol combustion consumption by freight transport,1.0020931199999998,TJ,N2O,0.6,kg/TJ,0.6012558719999999,kg +658ea077-85cc-330e-966f-1861b478d3ab,SESCO,II.1.1,Santa Fe,AR-S,annual,2023,bioetanol combustion consumption by freight transport,9.3690594,TJ,CH4,10.0,kg/TJ,93.69059399999999,kg +15ce058b-2db9-31aa-add0-1d4e9932b1ca,SESCO,II.1.1,Santa Fe,AR-S,annual,2023,bioetanol combustion consumption by freight transport,9.3690594,TJ,N2O,0.6,kg/TJ,5.62143564,kg +6c4225d5-8731-3b55-8171-bc709b166a85,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2023,bioetanol combustion consumption by freight transport,0.78735888,TJ,CH4,10.0,kg/TJ,7.8735888,kg +5f9069a4-f4ff-3ae5-a311-05f1fbb3e28d,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2023,bioetanol combustion consumption by freight transport,0.78735888,TJ,N2O,0.6,kg/TJ,0.47241532799999997,kg +3977a68d-edf6-3d4e-9970-578313ddb145,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2023,bioetanol combustion consumption by freight transport,0.7975843199999999,TJ,CH4,10.0,kg/TJ,7.975843199999999,kg +4a981cd0-0f0a-319f-9a53-d971e9b48de2,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2023,bioetanol combustion consumption by freight transport,0.7975843199999999,TJ,N2O,0.6,kg/TJ,0.47855059199999994,kg +42078f7b-3290-3325-a3bd-aa4378a4d3a1,SESCO,II.1.1,Tucuman,AR-T,annual,2023,bioetanol combustion consumption by freight transport,2.82222144,TJ,CH4,10.0,kg/TJ,28.2222144,kg +d75a2987-f8bd-39af-8a78-1157275aaf28,SESCO,II.1.1,Tucuman,AR-T,annual,2023,bioetanol combustion consumption by freight transport,2.82222144,TJ,N2O,0.6,kg/TJ,1.6933328639999998,kg +54e3f308-7c69-3e14-b9a1-9c4f419eced0,SESCO,II.1.1,Buenos Aires,AR-B,annual,2023,bioetanol combustion consumption by freight transport,59.990100119999994,TJ,CH4,10.0,kg/TJ,599.9010011999999,kg +d68e3704-f117-31ea-9f3d-7240f171c8c8,SESCO,II.1.1,Buenos Aires,AR-B,annual,2023,bioetanol combustion consumption by freight transport,59.990100119999994,TJ,N2O,0.6,kg/TJ,35.994060071999996,kg +6256613a-8015-3382-9bb5-f3374675684e,SESCO,II.1.1,Capital Federal,AR-C,annual,2023,bioetanol combustion consumption by freight transport,9.617026319999999,TJ,CH4,10.0,kg/TJ,96.1702632,kg +15ae8f53-ac28-3897-9e4d-a4cd072c0f0b,SESCO,II.1.1,Capital Federal,AR-C,annual,2023,bioetanol combustion consumption by freight transport,9.617026319999999,TJ,N2O,0.6,kg/TJ,5.770215791999999,kg +3d1ed2e5-eb68-3048-b495-162b920379a3,SESCO,II.1.1,Catamarca,AR-K,annual,2023,bioetanol combustion consumption by freight transport,0.18661428,TJ,CH4,10.0,kg/TJ,1.8661428,kg +a011d82d-9639-3692-909c-436b61b09c51,SESCO,II.1.1,Catamarca,AR-K,annual,2023,bioetanol combustion consumption by freight transport,0.18661428,TJ,N2O,0.6,kg/TJ,0.11196856799999999,kg +c7deffbf-4abf-3af0-b06f-c65297faad35,SESCO,II.1.1,Chaco,AR-H,annual,2023,bioetanol combustion consumption by freight transport,1.3369762799999998,TJ,CH4,10.0,kg/TJ,13.369762799999998,kg +349a51d0-46e4-3cec-b7bf-d3ad62f7bd6e,SESCO,II.1.1,Chaco,AR-H,annual,2023,bioetanol combustion consumption by freight transport,1.3369762799999998,TJ,N2O,0.6,kg/TJ,0.8021857679999999,kg +7fec9e26-08e1-3a18-bb2d-32a08af899cf,SESCO,II.1.1,Chubut,AR-U,annual,2023,bioetanol combustion consumption by freight transport,1.30118724,TJ,CH4,10.0,kg/TJ,13.0118724,kg +9b1c640b-dc5e-3e10-8a9b-d2bc6c355b36,SESCO,II.1.1,Chubut,AR-U,annual,2023,bioetanol combustion consumption by freight transport,1.30118724,TJ,N2O,0.6,kg/TJ,0.780712344,kg +3ea844d8-3f7c-32a1-9686-9ae5a184b20e,SESCO,II.1.1,Corrientes,AR-W,annual,2023,bioetanol combustion consumption by freight transport,1.7229866399999998,TJ,CH4,10.0,kg/TJ,17.2298664,kg +b27b64f3-9969-38fb-abcf-4aacccf149c7,SESCO,II.1.1,Corrientes,AR-W,annual,2023,bioetanol combustion consumption by freight transport,1.7229866399999998,TJ,N2O,0.6,kg/TJ,1.0337919839999998,kg +a3d46246-2ced-3b4c-be91-65c46c4ed2e5,SESCO,II.1.1,Córdoba,AR-X,annual,2023,bioetanol combustion consumption by freight transport,8.8577874,TJ,CH4,10.0,kg/TJ,88.577874,kg +7581d4fd-9470-311e-a030-074319b0a19d,SESCO,II.1.1,Córdoba,AR-X,annual,2023,bioetanol combustion consumption by freight transport,8.8577874,TJ,N2O,0.6,kg/TJ,5.31467244,kg +62add3c0-3d74-3eb1-982e-b97d1f7dae59,SESCO,II.1.1,Entre Rios,AR-E,annual,2023,bioetanol combustion consumption by freight transport,3.2568026399999996,TJ,CH4,10.0,kg/TJ,32.568026399999994,kg +70d9d63a-af35-3b7d-946b-9fd8f9bf458a,SESCO,II.1.1,Entre Rios,AR-E,annual,2023,bioetanol combustion consumption by freight transport,3.2568026399999996,TJ,N2O,0.6,kg/TJ,1.9540815839999996,kg +1603156c-de6a-324f-89a1-aecd3cbf16e7,SESCO,II.1.1,Formosa,AR-P,annual,2023,bioetanol combustion consumption by freight transport,0.28375596,TJ,CH4,10.0,kg/TJ,2.8375595999999996,kg +deaca44b-1751-31ad-be1c-39b45642640e,SESCO,II.1.1,Formosa,AR-P,annual,2023,bioetanol combustion consumption by freight transport,0.28375596,TJ,N2O,0.6,kg/TJ,0.170253576,kg +9036ef2a-c7c8-35b3-ab2d-c1011650f5a2,SESCO,II.1.1,Jujuy,AR-Y,annual,2023,bioetanol combustion consumption by freight transport,0.34255223999999995,TJ,CH4,10.0,kg/TJ,3.4255223999999993,kg +80e068e2-1569-3803-95c0-90d26241cbc3,SESCO,II.1.1,Jujuy,AR-Y,annual,2023,bioetanol combustion consumption by freight transport,0.34255223999999995,TJ,N2O,0.6,kg/TJ,0.20553134399999998,kg +3cb6868a-7035-3597-88a1-142078cf32ea,SESCO,II.1.1,La Pampa,AR-L,annual,2023,bioetanol combustion consumption by freight transport,1.17336924,TJ,CH4,10.0,kg/TJ,11.733692399999999,kg +67d98567-0de4-3074-ac36-9b350c77a7b3,SESCO,II.1.1,La Pampa,AR-L,annual,2023,bioetanol combustion consumption by freight transport,1.17336924,TJ,N2O,0.6,kg/TJ,0.7040215439999999,kg +d16411d3-0400-3a5b-b426-2e62c4964e73,SESCO,II.1.1,La Rioja,AR-F,annual,2023,bioetanol combustion consumption by freight transport,0.49849019999999994,TJ,CH4,10.0,kg/TJ,4.984901999999999,kg +e4712f81-998f-3d73-a539-f59ac04ac798,SESCO,II.1.1,La Rioja,AR-F,annual,2023,bioetanol combustion consumption by freight transport,0.49849019999999994,TJ,N2O,0.6,kg/TJ,0.29909411999999996,kg +50102a36-c5ae-3514-85ce-56c8b5874eed,SESCO,II.1.1,Mendoza,AR-M,annual,2023,bioetanol combustion consumption by freight transport,5.19196716,TJ,CH4,10.0,kg/TJ,51.9196716,kg +e90a6c9b-20f8-3c4c-969e-7fb3d2eff2e6,SESCO,II.1.1,Mendoza,AR-M,annual,2023,bioetanol combustion consumption by freight transport,5.19196716,TJ,N2O,0.6,kg/TJ,3.1151802959999997,kg +a33dc027-ef9e-3206-94ba-d949fe9311b0,SESCO,II.1.1,Misiones,AR-N,annual,2023,bioetanol combustion consumption by freight transport,1.39832892,TJ,CH4,10.0,kg/TJ,13.9832892,kg +f106ffd3-fae5-3ef5-9100-fe11ced349e0,SESCO,II.1.1,Misiones,AR-N,annual,2023,bioetanol combustion consumption by freight transport,1.39832892,TJ,N2O,0.6,kg/TJ,0.8389973519999999,kg +f56a49b2-1e3c-35a4-8fbd-7e060b42b922,SESCO,II.1.1,Neuquén,AR-Q,annual,2023,bioetanol combustion consumption by freight transport,3.4996568399999997,TJ,CH4,10.0,kg/TJ,34.996568399999994,kg +d28a18d7-6b76-300c-812b-9b277eeb127c,SESCO,II.1.1,Neuquén,AR-Q,annual,2023,bioetanol combustion consumption by freight transport,3.4996568399999997,TJ,N2O,0.6,kg/TJ,2.099794104,kg +af3384d1-804c-3708-b42e-36cc3ea6b859,SESCO,II.1.1,Rio Negro,AR-R,annual,2023,bioetanol combustion consumption by freight transport,2.59214904,TJ,CH4,10.0,kg/TJ,25.921490399999996,kg +7f711c4c-0342-3286-8fbe-4ccc6c899c8d,SESCO,II.1.1,Rio Negro,AR-R,annual,2023,bioetanol combustion consumption by freight transport,2.59214904,TJ,N2O,0.6,kg/TJ,1.555289424,kg +c4895b9b-4e9e-39a8-8270-07255aaa7eda,SESCO,II.1.1,Salta,AR-A,annual,2023,bioetanol combustion consumption by freight transport,1.9044881999999996,TJ,CH4,10.0,kg/TJ,19.044881999999998,kg +aebd2cf1-c659-3d90-9ac9-41e0d73b6d76,SESCO,II.1.1,Salta,AR-A,annual,2023,bioetanol combustion consumption by freight transport,1.9044881999999996,TJ,N2O,0.6,kg/TJ,1.1426929199999998,kg +5be930f5-1d7b-3553-ad7b-a66a47e83699,SESCO,II.1.1,San Juan,AR-J,annual,2023,bioetanol combustion consumption by freight transport,0.7260062399999999,TJ,CH4,10.0,kg/TJ,7.260062399999999,kg +eedcb45a-de22-3525-b039-037a573fea98,SESCO,II.1.1,San Juan,AR-J,annual,2023,bioetanol combustion consumption by freight transport,0.7260062399999999,TJ,N2O,0.6,kg/TJ,0.43560374399999996,kg +9fd937de-96e2-3683-845f-2ebea7b9991d,SESCO,II.1.1,San Luis,AR-D,annual,2023,bioetanol combustion consumption by freight transport,0.7643516399999999,TJ,CH4,10.0,kg/TJ,7.643516399999999,kg +385f97b2-adf6-312e-821a-0ae870b7d506,SESCO,II.1.1,San Luis,AR-D,annual,2023,bioetanol combustion consumption by freight transport,0.7643516399999999,TJ,N2O,0.6,kg/TJ,0.4586109839999999,kg +dfccddbb-64c4-38fc-8740-c6f5883f64f0,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2023,bioetanol combustion consumption by freight transport,0.47548296,TJ,CH4,10.0,kg/TJ,4.7548296,kg +973aa319-1d82-31c7-8b88-3feea716cc9e,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2023,bioetanol combustion consumption by freight transport,0.47548296,TJ,N2O,0.6,kg/TJ,0.285289776,kg +b69247bb-9f0f-3dc9-929f-668cf4236e07,SESCO,II.1.1,Santa Fe,AR-S,annual,2023,bioetanol combustion consumption by freight transport,9.256579559999999,TJ,CH4,10.0,kg/TJ,92.56579559999999,kg +fa5151a5-a209-3213-822e-4ca73ac7fd97,SESCO,II.1.1,Santa Fe,AR-S,annual,2023,bioetanol combustion consumption by freight transport,9.256579559999999,TJ,N2O,0.6,kg/TJ,5.553947735999999,kg +c167b794-291b-3ac1-aa9f-a1dc81cc01f7,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2023,bioetanol combustion consumption by freight transport,0.5087156399999999,TJ,CH4,10.0,kg/TJ,5.0871564,kg +20c14a4c-b38b-3d96-9c40-441f07fb15b4,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2023,bioetanol combustion consumption by freight transport,0.5087156399999999,TJ,N2O,0.6,kg/TJ,0.30522938399999994,kg +3bcb5b1d-cc43-3971-88be-2f23e557c7cc,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2023,bioetanol combustion consumption by freight transport,0.32977043999999994,TJ,CH4,10.0,kg/TJ,3.2977043999999993,kg +a6807b4b-875f-3d26-ba36-3f48af22c27f,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2023,bioetanol combustion consumption by freight transport,0.32977043999999994,TJ,N2O,0.6,kg/TJ,0.19786226399999995,kg +3907dfcd-c7fc-30af-bddc-1c14a7fe6f19,SESCO,II.1.1,Tucuman,AR-T,annual,2023,bioetanol combustion consumption by freight transport,1.56704868,TJ,CH4,10.0,kg/TJ,15.6704868,kg +24679619-63e5-3cf5-8a5d-5721425c176b,SESCO,II.1.1,Tucuman,AR-T,annual,2023,bioetanol combustion consumption by freight transport,1.56704868,TJ,N2O,0.6,kg/TJ,0.940229208,kg +ecb999bd-4dcf-3452-87ff-9658e0f7fade,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,naphtha combustion consumption by to the public,65.74905259999998,TJ,CO2,73300.0,kg/TJ,4819405.5555799985,kg +386c416b-332d-3148-aeb8-224835eac5ff,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,naphtha combustion consumption by to the public,65.74905259999998,TJ,CH4,3.0,kg/TJ,197.24715779999997,kg +71764d1a-d3b3-3563-bcb6-785ed0eb3a46,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,naphtha combustion consumption by to the public,65.74905259999998,TJ,N2O,0.6,kg/TJ,39.44943155999999,kg +0dc3f3f6-42ea-308c-a891-1bd241d11dcd,SESCO,II.1.1,Capital Federal,AR-C,annual,2010,naphtha combustion consumption by to the public,7.589012199999999,TJ,CO2,73300.0,kg/TJ,556274.5942599999,kg +473257e4-a44a-3636-8f13-6f0a1d052445,SESCO,II.1.1,Capital Federal,AR-C,annual,2010,naphtha combustion consumption by to the public,7.589012199999999,TJ,CH4,3.0,kg/TJ,22.767036599999997,kg +89f207ae-6880-3dbc-9f59-2db88768b7a9,SESCO,II.1.1,Capital Federal,AR-C,annual,2010,naphtha combustion consumption by to the public,7.589012199999999,TJ,N2O,0.6,kg/TJ,4.553407319999999,kg +5e68800d-a7c2-3214-8090-95b183e20c48,SESCO,II.1.1,Corrientes,AR-W,annual,2010,naphtha combustion consumption by to the public,10.208228799999999,TJ,CO2,73300.0,kg/TJ,748263.1710399999,kg +9fbae8e4-3d70-30ab-8cc2-6d3936921392,SESCO,II.1.1,Corrientes,AR-W,annual,2010,naphtha combustion consumption by to the public,10.208228799999999,TJ,CH4,3.0,kg/TJ,30.624686399999995,kg +dacc68e4-6f2a-3f6a-bf3b-27b7788a2d28,SESCO,II.1.1,Corrientes,AR-W,annual,2010,naphtha combustion consumption by to the public,10.208228799999999,TJ,N2O,0.6,kg/TJ,6.124937279999999,kg +c7f22e6f-f2f8-3f47-97d6-9f366e5bfc2a,SESCO,II.1.1,Córdoba,AR-X,annual,2010,naphtha combustion consumption by to the public,9.9060115,TJ,CO2,73300.0,kg/TJ,726110.64295,kg +e6d0abac-3a3c-3979-9380-de46496a5c36,SESCO,II.1.1,Córdoba,AR-X,annual,2010,naphtha combustion consumption by to the public,9.9060115,TJ,CH4,3.0,kg/TJ,29.7180345,kg +1a8a8595-abf9-314a-b9a6-6b1f2c045d8e,SESCO,II.1.1,Córdoba,AR-X,annual,2010,naphtha combustion consumption by to the public,9.9060115,TJ,N2O,0.6,kg/TJ,5.9436069,kg +17a68351-0a3b-369e-8b07-0d5e9320772f,SESCO,II.1.1,Entre Rios,AR-E,annual,2010,naphtha combustion consumption by to the public,2.3841586999999995,TJ,CO2,73300.0,kg/TJ,174758.83270999996,kg +1284ae13-c2d0-33e3-9d87-8cd68c64a65a,SESCO,II.1.1,Entre Rios,AR-E,annual,2010,naphtha combustion consumption by to the public,2.3841586999999995,TJ,CH4,3.0,kg/TJ,7.152476099999999,kg +59274e12-5537-30ac-a366-ca9b8795e4d7,SESCO,II.1.1,Entre Rios,AR-E,annual,2010,naphtha combustion consumption by to the public,2.3841586999999995,TJ,N2O,0.6,kg/TJ,1.4304952199999996,kg +543e5b19-2b0c-3fca-84c6-f9f9918ae080,SESCO,II.1.1,Jujuy,AR-Y,annual,2010,naphtha combustion consumption by to the public,2.686376,TJ,CO2,73300.0,kg/TJ,196911.3608,kg +5163c59c-54f1-309d-a598-103c4d32117e,SESCO,II.1.1,Jujuy,AR-Y,annual,2010,naphtha combustion consumption by to the public,2.686376,TJ,CH4,3.0,kg/TJ,8.059128000000001,kg +aba0e99b-bd74-3224-ab32-bc2cfb110f9e,SESCO,II.1.1,Jujuy,AR-Y,annual,2010,naphtha combustion consumption by to the public,2.686376,TJ,N2O,0.6,kg/TJ,1.6118256,kg +e7e8be78-fd11-3c03-844c-612a3f1b66c4,SESCO,II.1.1,La Pampa,AR-L,annual,2010,naphtha combustion consumption by to the public,1.1081301000000001,TJ,CO2,73300.0,kg/TJ,81225.93633000001,kg +8f87cf18-37ad-331e-9088-5dfe9bb8af93,SESCO,II.1.1,La Pampa,AR-L,annual,2010,naphtha combustion consumption by to the public,1.1081301000000001,TJ,CH4,3.0,kg/TJ,3.3243903,kg +e5ef3b22-5a29-3e89-8ca4-9dcb6f6223fe,SESCO,II.1.1,La Pampa,AR-L,annual,2010,naphtha combustion consumption by to the public,1.1081301000000001,TJ,N2O,0.6,kg/TJ,0.66487806,kg +5c4e2047-5fb8-347b-aeac-8321f8745751,SESCO,II.1.1,Mendoza,AR-M,annual,2010,naphtha combustion consumption by to the public,0.8730722,TJ,CO2,73300.0,kg/TJ,63996.192259999996,kg +f063c5e8-e3f2-3824-9c80-4e29ba8e55eb,SESCO,II.1.1,Mendoza,AR-M,annual,2010,naphtha combustion consumption by to the public,0.8730722,TJ,CH4,3.0,kg/TJ,2.6192165999999997,kg +0f0cece1-d2f0-344a-9f0f-c342b5d901f8,SESCO,II.1.1,Mendoza,AR-M,annual,2010,naphtha combustion consumption by to the public,0.8730722,TJ,N2O,0.6,kg/TJ,0.52384332,kg +54418432-ac46-347a-8136-f8d301757f5d,SESCO,II.1.1,Santa Fe,AR-S,annual,2010,naphtha combustion consumption by to the public,4.365361,TJ,CO2,73300.0,kg/TJ,319980.9613,kg +c33184aa-cb42-3fab-a0d1-1486dcfe9bb1,SESCO,II.1.1,Santa Fe,AR-S,annual,2010,naphtha combustion consumption by to the public,4.365361,TJ,CH4,3.0,kg/TJ,13.096083,kg +79dde3a8-e3ab-3a46-86ff-9a2df1957860,SESCO,II.1.1,Santa Fe,AR-S,annual,2010,naphtha combustion consumption by to the public,4.365361,TJ,N2O,0.6,kg/TJ,2.6192166,kg +9b1414f2-399f-3286-82e6-d09a2288aa08,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2010,naphtha combustion consumption by to the public,5.507070799999999,TJ,CO2,73300.0,kg/TJ,403668.28964,kg +7aad9632-0b3c-3a01-af83-e9668aa71f81,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2010,naphtha combustion consumption by to the public,5.507070799999999,TJ,CH4,3.0,kg/TJ,16.521212399999996,kg +ce1feca5-4c8d-3de9-9c3f-5213f6491f63,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2010,naphtha combustion consumption by to the public,5.507070799999999,TJ,N2O,0.6,kg/TJ,3.3042424799999996,kg +f2f233e4-8fa8-3e45-acea-40ac531dba06,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,naphtha combustion consumption by to the public,494.19244489999994,TJ,CO2,73300.0,kg/TJ,36224306.211169995,kg +5777964c-e392-3b49-9691-df21edd00ce6,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,naphtha combustion consumption by to the public,494.19244489999994,TJ,CH4,3.0,kg/TJ,1482.5773347,kg +410e0c17-89f8-3330-819b-46b314f3317b,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,naphtha combustion consumption by to the public,494.19244489999994,TJ,N2O,0.6,kg/TJ,296.51546693999995,kg +cda587bc-cdbb-31da-9b86-917924ded1c9,SESCO,II.1.1,Capital Federal,AR-C,annual,2010,naphtha combustion consumption by to the public,159.53715469999997,TJ,CO2,73300.0,kg/TJ,11694073.439509997,kg +b855a1c8-4eb7-3c64-acc1-8760df145901,SESCO,II.1.1,Capital Federal,AR-C,annual,2010,naphtha combustion consumption by to the public,159.53715469999997,TJ,CH4,3.0,kg/TJ,478.6114640999999,kg +76da2156-4b5e-30f6-8a5a-165c3226da90,SESCO,II.1.1,Capital Federal,AR-C,annual,2010,naphtha combustion consumption by to the public,159.53715469999997,TJ,N2O,0.6,kg/TJ,95.72229281999998,kg +1244ba03-789e-3049-a00c-4fef994ff0e6,SESCO,II.1.1,Chaco,AR-H,annual,2010,naphtha combustion consumption by to the public,5.540650499999999,TJ,CO2,73300.0,kg/TJ,406129.6816499999,kg +d358faa6-5295-307a-989e-75fe31817f29,SESCO,II.1.1,Chaco,AR-H,annual,2010,naphtha combustion consumption by to the public,5.540650499999999,TJ,CH4,3.0,kg/TJ,16.621951499999998,kg +e09f67aa-f631-381b-8816-d4fe2f89be1e,SESCO,II.1.1,Chaco,AR-H,annual,2010,naphtha combustion consumption by to the public,5.540650499999999,TJ,N2O,0.6,kg/TJ,3.3243902999999992,kg +39b757fa-6bda-373f-a192-240572f7c621,SESCO,II.1.1,Corrientes,AR-W,annual,2010,naphtha combustion consumption by to the public,39.1539302,TJ,CO2,73300.0,kg/TJ,2869983.08366,kg +597deb7f-933a-339b-a9e7-1a504906cb8b,SESCO,II.1.1,Corrientes,AR-W,annual,2010,naphtha combustion consumption by to the public,39.1539302,TJ,CH4,3.0,kg/TJ,117.4617906,kg +e1d1427d-b6f8-3c2e-bfef-eda9d2f32614,SESCO,II.1.1,Corrientes,AR-W,annual,2010,naphtha combustion consumption by to the public,39.1539302,TJ,N2O,0.6,kg/TJ,23.49235812,kg +b943e78b-fa22-3b2f-952f-a46daca1d320,SESCO,II.1.1,Córdoba,AR-X,annual,2010,naphtha combustion consumption by to the public,147.5827815,TJ,CO2,73300.0,kg/TJ,10817817.88395,kg +5132a7f3-9341-320e-a8ee-5f43a54fe65e,SESCO,II.1.1,Córdoba,AR-X,annual,2010,naphtha combustion consumption by to the public,147.5827815,TJ,CH4,3.0,kg/TJ,442.74834450000003,kg +d59e5252-2a7c-3df9-889f-cd97970825e2,SESCO,II.1.1,Córdoba,AR-X,annual,2010,naphtha combustion consumption by to the public,147.5827815,TJ,N2O,0.6,kg/TJ,88.5496689,kg +1b87dd3a-1c38-336a-b6f9-fb8a84cf0758,SESCO,II.1.1,Entre Rios,AR-E,annual,2010,naphtha combustion consumption by to the public,18.468835,TJ,CO2,73300.0,kg/TJ,1353765.6054999998,kg +c3bdd3f3-88ea-3c50-9a8a-32619a68354d,SESCO,II.1.1,Entre Rios,AR-E,annual,2010,naphtha combustion consumption by to the public,18.468835,TJ,CH4,3.0,kg/TJ,55.406504999999996,kg +2457dc7a-161a-3a0d-8485-9d6de432024b,SESCO,II.1.1,Entre Rios,AR-E,annual,2010,naphtha combustion consumption by to the public,18.468835,TJ,N2O,0.6,kg/TJ,11.081300999999998,kg +81c0be91-5faa-3f89-af64-05457b44f2f9,SESCO,II.1.1,Formosa,AR-P,annual,2010,naphtha combustion consumption by to the public,1.2088691999999999,TJ,CO2,73300.0,kg/TJ,88610.11235999998,kg +07bb157b-4084-31e3-9b8c-1ac17d731be2,SESCO,II.1.1,Formosa,AR-P,annual,2010,naphtha combustion consumption by to the public,1.2088691999999999,TJ,CH4,3.0,kg/TJ,3.6266076,kg +9d346b4d-8f18-37c6-891b-69d46d8aca57,SESCO,II.1.1,Formosa,AR-P,annual,2010,naphtha combustion consumption by to the public,1.2088691999999999,TJ,N2O,0.6,kg/TJ,0.7253215199999999,kg +9dccc0a4-1aab-319b-ae41-f223618f3a92,SESCO,II.1.1,Jujuy,AR-Y,annual,2010,naphtha combustion consumption by to the public,12.6259672,TJ,CO2,73300.0,kg/TJ,925483.39576,kg +52826862-9695-374e-a06f-6f3cab25ad53,SESCO,II.1.1,Jujuy,AR-Y,annual,2010,naphtha combustion consumption by to the public,12.6259672,TJ,CH4,3.0,kg/TJ,37.8779016,kg +ec579a94-8087-354c-ba99-4bd6b53dc116,SESCO,II.1.1,Jujuy,AR-Y,annual,2010,naphtha combustion consumption by to the public,12.6259672,TJ,N2O,0.6,kg/TJ,7.575580319999999,kg +24629d0c-e0f4-3d1b-a11f-937c84a69411,SESCO,II.1.1,La Pampa,AR-L,annual,2010,naphtha combustion consumption by to the public,22.2969208,TJ,CO2,73300.0,kg/TJ,1634364.29464,kg +033b3a7c-c94e-35d5-8329-4f0333278adf,SESCO,II.1.1,La Pampa,AR-L,annual,2010,naphtha combustion consumption by to the public,22.2969208,TJ,CH4,3.0,kg/TJ,66.8907624,kg +92c4c5c0-4ad5-3bb7-b043-35b0d0459555,SESCO,II.1.1,La Pampa,AR-L,annual,2010,naphtha combustion consumption by to the public,22.2969208,TJ,N2O,0.6,kg/TJ,13.378152479999999,kg +d4f63b44-c816-30cf-b791-c348ae64986f,SESCO,II.1.1,Mendoza,AR-M,annual,2010,naphtha combustion consumption by to the public,21.4238486,TJ,CO2,73300.0,kg/TJ,1570368.10238,kg +c35d04cf-5f9c-3b31-b11a-3c4f65d2dea0,SESCO,II.1.1,Mendoza,AR-M,annual,2010,naphtha combustion consumption by to the public,21.4238486,TJ,CH4,3.0,kg/TJ,64.2715458,kg +25c191ba-93ea-3bcf-8e15-b31ccd816219,SESCO,II.1.1,Mendoza,AR-M,annual,2010,naphtha combustion consumption by to the public,21.4238486,TJ,N2O,0.6,kg/TJ,12.85430916,kg +36205493-c16d-357b-bc5d-4fb264a79154,SESCO,II.1.1,Misiones,AR-N,annual,2010,naphtha combustion consumption by to the public,4.7347377,TJ,CO2,73300.0,kg/TJ,347056.27341,kg +55ea8313-9107-339e-ae7c-1cc2f14f8507,SESCO,II.1.1,Misiones,AR-N,annual,2010,naphtha combustion consumption by to the public,4.7347377,TJ,CH4,3.0,kg/TJ,14.2042131,kg +8e65f0bb-da81-30c7-a162-b5cf99c19972,SESCO,II.1.1,Misiones,AR-N,annual,2010,naphtha combustion consumption by to the public,4.7347377,TJ,N2O,0.6,kg/TJ,2.84084262,kg +a4e310c8-064d-3f14-b60a-971c51032d53,SESCO,II.1.1,San Juan,AR-J,annual,2010,naphtha combustion consumption by to the public,0.1678985,TJ,CO2,73300.0,kg/TJ,12306.96005,kg +6e1026bb-e7aa-3e86-bfdc-2b8bf064ab0b,SESCO,II.1.1,San Juan,AR-J,annual,2010,naphtha combustion consumption by to the public,0.1678985,TJ,CH4,3.0,kg/TJ,0.5036955000000001,kg +ff03980d-5993-3912-8ebf-dc426c7f7e95,SESCO,II.1.1,San Juan,AR-J,annual,2010,naphtha combustion consumption by to the public,0.1678985,TJ,N2O,0.6,kg/TJ,0.1007391,kg +c993408e-9fb1-3398-82a1-470ac8a4d61a,SESCO,II.1.1,Santa Fe,AR-S,annual,2010,naphtha combustion consumption by to the public,101.0077376,TJ,CO2,73300.0,kg/TJ,7403867.16608,kg +6af7d055-3057-320e-b47a-0e8efeed5e35,SESCO,II.1.1,Santa Fe,AR-S,annual,2010,naphtha combustion consumption by to the public,101.0077376,TJ,CH4,3.0,kg/TJ,303.0232128,kg +d5633474-ef7e-3728-a457-300c49bb8609,SESCO,II.1.1,Santa Fe,AR-S,annual,2010,naphtha combustion consumption by to the public,101.0077376,TJ,N2O,0.6,kg/TJ,60.604642559999995,kg +4404446a-83bd-323c-b9a0-76ae5ede83c8,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2010,naphtha combustion consumption by to the public,40.12774149999999,TJ,CO2,73300.0,kg/TJ,2941363.451949999,kg +3e2bcb43-b5db-3b85-aafe-eaf21e7fa295,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2010,naphtha combustion consumption by to the public,40.12774149999999,TJ,CH4,3.0,kg/TJ,120.38322449999998,kg +0ae3660a-3c22-3b77-b417-ba3cf2353ca7,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2010,naphtha combustion consumption by to the public,40.12774149999999,TJ,N2O,0.6,kg/TJ,24.076644899999994,kg +ef24bdb9-01b9-300f-a577-6b736bb4a9a0,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,naphtha combustion consumption by to the public,51.47768009999999,TJ,CO2,73300.0,kg/TJ,3773313.9513299996,kg +ec67e7f5-e7e9-380b-856b-6b3f1d787e0d,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,naphtha combustion consumption by to the public,51.47768009999999,TJ,CH4,3.0,kg/TJ,154.4330403,kg +e2c42ee9-d4af-3c64-b1a5-be8f175f361e,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,naphtha combustion consumption by to the public,51.47768009999999,TJ,N2O,0.6,kg/TJ,30.886608059999993,kg +b7d37f44-0182-3e0b-bc2c-68b158dc6d8b,SESCO,II.1.1,Capital Federal,AR-C,annual,2010,naphtha combustion consumption by to the public,16.554792099999997,TJ,CO2,73300.0,kg/TJ,1213466.2609299996,kg +44294274-3a3e-38fb-bc8f-4f35b92d55dc,SESCO,II.1.1,Capital Federal,AR-C,annual,2010,naphtha combustion consumption by to the public,16.554792099999997,TJ,CH4,3.0,kg/TJ,49.66437629999999,kg +9721dec7-8797-3a9b-8d75-a3a06c6ad00e,SESCO,II.1.1,Capital Federal,AR-C,annual,2010,naphtha combustion consumption by to the public,16.554792099999997,TJ,N2O,0.6,kg/TJ,9.932875259999998,kg +e0c0a679-267c-3c07-aeae-202db46e2c46,SESCO,II.1.1,Chaco,AR-H,annual,2010,naphtha combustion consumption by to the public,1.3096082999999998,TJ,CO2,73300.0,kg/TJ,95994.28838999999,kg +c870e2eb-6dc4-36e7-ae29-df643aaa57ac,SESCO,II.1.1,Chaco,AR-H,annual,2010,naphtha combustion consumption by to the public,1.3096082999999998,TJ,CH4,3.0,kg/TJ,3.9288248999999995,kg +3bd2cc2a-1a47-3e63-bb71-fd91ccf42a1d,SESCO,II.1.1,Chaco,AR-H,annual,2010,naphtha combustion consumption by to the public,1.3096082999999998,TJ,N2O,0.6,kg/TJ,0.7857649799999998,kg +0114073b-fa54-3834-b4a0-2eaf23c1d472,SESCO,II.1.1,Corrientes,AR-W,annual,2010,naphtha combustion consumption by to the public,2.2162602000000002,TJ,CO2,73300.0,kg/TJ,162451.87266000002,kg +8f823a5a-714c-3f85-910d-6dd2f3591f80,SESCO,II.1.1,Corrientes,AR-W,annual,2010,naphtha combustion consumption by to the public,2.2162602000000002,TJ,CH4,3.0,kg/TJ,6.6487806,kg +f835fc13-17f9-30e4-9a2c-54371ada46c3,SESCO,II.1.1,Corrientes,AR-W,annual,2010,naphtha combustion consumption by to the public,2.2162602000000002,TJ,N2O,0.6,kg/TJ,1.32975612,kg +571b3260-4b57-3634-a68b-bc4bdf74db09,SESCO,II.1.1,Córdoba,AR-X,annual,2010,naphtha combustion consumption by to the public,16.6891109,TJ,CO2,73300.0,kg/TJ,1223311.82897,kg +524060e7-0121-3461-a5b3-d079ea737b90,SESCO,II.1.1,Córdoba,AR-X,annual,2010,naphtha combustion consumption by to the public,16.6891109,TJ,CH4,3.0,kg/TJ,50.067332699999994,kg +15969b84-a86e-34c5-8551-362e09d796a0,SESCO,II.1.1,Córdoba,AR-X,annual,2010,naphtha combustion consumption by to the public,16.6891109,TJ,N2O,0.6,kg/TJ,10.01346654,kg +143f6f06-8e8d-3491-a87d-4b26d1923e62,SESCO,II.1.1,Entre Rios,AR-E,annual,2010,naphtha combustion consumption by to the public,0.9738112999999999,TJ,CO2,73300.0,kg/TJ,71380.36829,kg +ff8d2461-e005-3870-8031-0a4ce9cbccf5,SESCO,II.1.1,Entre Rios,AR-E,annual,2010,naphtha combustion consumption by to the public,0.9738112999999999,TJ,CH4,3.0,kg/TJ,2.9214339,kg +8b43b35f-3cdf-3ba7-8d83-b0042f281c84,SESCO,II.1.1,Entre Rios,AR-E,annual,2010,naphtha combustion consumption by to the public,0.9738112999999999,TJ,N2O,0.6,kg/TJ,0.5842867799999999,kg +f6963d8b-0848-3179-8924-fe3fc8420fd1,SESCO,II.1.1,Jujuy,AR-Y,annual,2010,naphtha combustion consumption by to the public,0.20147819999999997,TJ,CO2,73300.0,kg/TJ,14768.352059999997,kg +05b56aa7-05d6-33c6-9a88-272b790dfdc3,SESCO,II.1.1,Jujuy,AR-Y,annual,2010,naphtha combustion consumption by to the public,0.20147819999999997,TJ,CH4,3.0,kg/TJ,0.6044345999999999,kg +7cc417c1-af0f-37c9-a95d-1d1a8d62af0f,SESCO,II.1.1,Jujuy,AR-Y,annual,2010,naphtha combustion consumption by to the public,0.20147819999999997,TJ,N2O,0.6,kg/TJ,0.12088691999999998,kg +9c5f53f7-00f7-3906-9c62-97758be3e64c,SESCO,II.1.1,La Pampa,AR-L,annual,2010,naphtha combustion consumption by to the public,1.5446661999999998,TJ,CO2,73300.0,kg/TJ,113224.03245999999,kg +8add8ba1-a6cd-3a43-864f-934df2d0213e,SESCO,II.1.1,La Pampa,AR-L,annual,2010,naphtha combustion consumption by to the public,1.5446661999999998,TJ,CH4,3.0,kg/TJ,4.633998599999999,kg +b7497cd0-8da5-3094-9725-66192700cc12,SESCO,II.1.1,La Pampa,AR-L,annual,2010,naphtha combustion consumption by to the public,1.5446661999999998,TJ,N2O,0.6,kg/TJ,0.9267997199999998,kg +1fcec6d8-a4bd-3009-89ca-4fb049041f46,SESCO,II.1.1,Mendoza,AR-M,annual,2010,naphtha combustion consumption by to the public,2.8878541999999996,TJ,CO2,73300.0,kg/TJ,211679.71285999997,kg +f1b13fa2-772b-3296-8762-156c30a84167,SESCO,II.1.1,Mendoza,AR-M,annual,2010,naphtha combustion consumption by to the public,2.8878541999999996,TJ,CH4,3.0,kg/TJ,8.663562599999999,kg +2167c19f-dacc-3c05-abcb-275fe2596f04,SESCO,II.1.1,Mendoza,AR-M,annual,2010,naphtha combustion consumption by to the public,2.8878541999999996,TJ,N2O,0.6,kg/TJ,1.7327125199999998,kg +61f41a77-b92c-3047-b22d-c3d11f48f6da,SESCO,II.1.1,Santa Fe,AR-S,annual,2010,naphtha combustion consumption by to the public,12.5252281,TJ,CO2,73300.0,kg/TJ,918099.21973,kg +a6cc4246-2238-3421-a5af-ffc3d060f810,SESCO,II.1.1,Santa Fe,AR-S,annual,2010,naphtha combustion consumption by to the public,12.5252281,TJ,CH4,3.0,kg/TJ,37.5756843,kg +1647403e-eede-3771-808a-23e4319b62e8,SESCO,II.1.1,Santa Fe,AR-S,annual,2010,naphtha combustion consumption by to the public,12.5252281,TJ,N2O,0.6,kg/TJ,7.515136859999999,kg +3623b057-afac-3d1a-bbff-8bc4eeb8247e,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2010,naphtha combustion consumption by to the public,3.7609264,TJ,CO2,73300.0,kg/TJ,275675.90512,kg +7242dcbc-82e3-3260-bc8c-25edb62158cc,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2010,naphtha combustion consumption by to the public,3.7609264,TJ,CH4,3.0,kg/TJ,11.2827792,kg +86f076a1-ba35-3fa5-9e9b-239bb0aba2a9,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2010,naphtha combustion consumption by to the public,3.7609264,TJ,N2O,0.6,kg/TJ,2.25655584,kg +0c4ef70e-f4ab-3495-87e2-bbf004b24359,SESCO,II.5.1,Buenos Aires,AR-B,annual,2010,naphtha combustion consumption by agriculture machines,14.0027349,TJ,CO2,73300.0,kg/TJ,1026400.46817,kg +e9406b72-76d9-32ae-8d9a-03baa1dfde3e,SESCO,II.5.1,Buenos Aires,AR-B,annual,2010,naphtha combustion consumption by agriculture machines,14.0027349,TJ,CH4,3.0,kg/TJ,42.0082047,kg +ca5fd763-2abc-354f-b0ea-7af02fc25ff7,SESCO,II.5.1,Buenos Aires,AR-B,annual,2010,naphtha combustion consumption by agriculture machines,14.0027349,TJ,N2O,0.6,kg/TJ,8.40164094,kg +ccc225d7-15f0-3753-9d46-169ca25b4fd9,SESCO,II.5.1,Córdoba,AR-X,annual,2010,naphtha combustion consumption by agriculture machines,8.529579597,TJ,CO2,73300.0,kg/TJ,625218.1844601,kg +c7fc19d7-e157-3385-b7f7-af1c29b0e427,SESCO,II.5.1,Córdoba,AR-X,annual,2010,naphtha combustion consumption by agriculture machines,8.529579597,TJ,CH4,3.0,kg/TJ,25.588738790999997,kg +532b8315-1bf0-379c-b500-18f1962f93c9,SESCO,II.5.1,Córdoba,AR-X,annual,2010,naphtha combustion consumption by agriculture machines,8.529579597,TJ,N2O,0.6,kg/TJ,5.117747758199999,kg +029b696d-11bc-3ef2-8f1a-5e0d6f9ba4bd,SESCO,II.5.1,Santa Fe,AR-S,annual,2010,naphtha combustion consumption by agriculture machines,16.663254531,TJ,CO2,73300.0,kg/TJ,1221416.5571223,kg +59c9f069-79db-3957-98cd-db666201dbe2,SESCO,II.5.1,Santa Fe,AR-S,annual,2010,naphtha combustion consumption by agriculture machines,16.663254531,TJ,CH4,3.0,kg/TJ,49.989763593,kg +db2ad01d-c6cd-3792-9659-6776533d4197,SESCO,II.5.1,Santa Fe,AR-S,annual,2010,naphtha combustion consumption by agriculture machines,16.663254531,TJ,N2O,0.6,kg/TJ,9.997952718599999,kg +78141d2e-82bd-39b9-aed4-9d10db0d5222,SESCO,II.5.1,Córdoba,AR-X,annual,2010,naphtha combustion consumption by agriculture machines,4.331781299999999,TJ,CO2,73300.0,kg/TJ,317519.56928999996,kg +9826ac0c-7ec0-3514-9c42-a1af3de97d4a,SESCO,II.5.1,Córdoba,AR-X,annual,2010,naphtha combustion consumption by agriculture machines,4.331781299999999,TJ,CH4,3.0,kg/TJ,12.995343899999998,kg +3fc6b86a-3f86-37db-a6ff-448a47636abc,SESCO,II.5.1,Córdoba,AR-X,annual,2010,naphtha combustion consumption by agriculture machines,4.331781299999999,TJ,N2O,0.6,kg/TJ,2.5990687799999996,kg +84037d05-f301-3ffb-bf13-78f2be5fd12d,SESCO,II.5.1,Santa Fe,AR-S,annual,2010,naphtha combustion consumption by agriculture machines,1.1014141599999998,TJ,CO2,73300.0,kg/TJ,80733.65792799999,kg +3c943f3b-3472-3dea-afb2-3ae700212aed,SESCO,II.5.1,Santa Fe,AR-S,annual,2010,naphtha combustion consumption by agriculture machines,1.1014141599999998,TJ,CH4,3.0,kg/TJ,3.304242479999999,kg +1504406f-c596-3c3b-963e-267f2329abb6,SESCO,II.5.1,Santa Fe,AR-S,annual,2010,naphtha combustion consumption by agriculture machines,1.1014141599999998,TJ,N2O,0.6,kg/TJ,0.6608484959999998,kg +0341eb95-da79-37d9-900f-13315c7e4da0,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,naphtha combustion consumption by to the public,563.5552440749,TJ,CO2,73300.0,kg/TJ,41308599.39069017,kg +aefe2d4f-7d3d-3b97-8b85-b755e95cf6aa,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,naphtha combustion consumption by to the public,563.5552440749,TJ,CH4,3.0,kg/TJ,1690.6657322247,kg +5ac04cee-37c4-3a4b-9556-6eb4509390f5,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,naphtha combustion consumption by to the public,563.5552440749,TJ,N2O,0.6,kg/TJ,338.13314644494,kg +11e2cf3b-291d-3bc1-9a90-546657c85974,SESCO,II.1.1,Capital Federal,AR-C,annual,2010,naphtha combustion consumption by to the public,17.7376370325,TJ,CO2,73300.0,kg/TJ,1300168.79448225,kg +4a3db138-23a2-3098-aa28-73eda9363f11,SESCO,II.1.1,Capital Federal,AR-C,annual,2010,naphtha combustion consumption by to the public,17.7376370325,TJ,CH4,3.0,kg/TJ,53.2129110975,kg +f036299e-f7b2-3869-bc27-b3e1f8f80b40,SESCO,II.1.1,Capital Federal,AR-C,annual,2010,naphtha combustion consumption by to the public,17.7376370325,TJ,N2O,0.6,kg/TJ,10.6425822195,kg +1e090be8-acc4-31e3-ba46-6ebda8ee0961,SESCO,II.1.1,Chaco,AR-H,annual,2010,naphtha combustion consumption by to the public,10.263635305000001,TJ,CO2,73300.0,kg/TJ,752324.4678565001,kg +fb1f0a6d-8c86-3538-94b1-01e63d02ab86,SESCO,II.1.1,Chaco,AR-H,annual,2010,naphtha combustion consumption by to the public,10.263635305000001,TJ,CH4,3.0,kg/TJ,30.790905915000003,kg +bdac4c9e-54c2-3ad7-8179-32a13b8d69c6,SESCO,II.1.1,Chaco,AR-H,annual,2010,naphtha combustion consumption by to the public,10.263635305000001,TJ,N2O,0.6,kg/TJ,6.158181183000001,kg +dd9bd933-aeca-3326-923e-d7182474de2d,SESCO,II.1.1,Corrientes,AR-W,annual,2010,naphtha combustion consumption by to the public,146.545504567,TJ,CO2,73300.0,kg/TJ,10741785.4847611,kg +44c65992-9697-3019-a844-6073b6724487,SESCO,II.1.1,Corrientes,AR-W,annual,2010,naphtha combustion consumption by to the public,146.545504567,TJ,CH4,3.0,kg/TJ,439.636513701,kg +b9e62a62-3a5c-3c35-a834-d1427e8a86e7,SESCO,II.1.1,Corrientes,AR-W,annual,2010,naphtha combustion consumption by to the public,146.545504567,TJ,N2O,0.6,kg/TJ,87.92730274019999,kg +6b8f09a8-6b17-336d-bd8a-4ac5bd935494,SESCO,II.1.1,Córdoba,AR-X,annual,2010,naphtha combustion consumption by to the public,64.253748559,TJ,CO2,73300.0,kg/TJ,4709799.7693747,kg +9b428b40-5634-3bb4-8ffb-58a484e35a8b,SESCO,II.1.1,Córdoba,AR-X,annual,2010,naphtha combustion consumption by to the public,64.253748559,TJ,CH4,3.0,kg/TJ,192.761245677,kg +02ac1ca3-f164-37a9-8b69-01da8285e1a1,SESCO,II.1.1,Córdoba,AR-X,annual,2010,naphtha combustion consumption by to the public,64.253748559,TJ,N2O,0.6,kg/TJ,38.5522491354,kg +afd730ba-8860-37bf-93ff-82c50a9358cb,SESCO,II.1.1,Entre Rios,AR-E,annual,2010,naphtha combustion consumption by to the public,26.948380844,TJ,CO2,73300.0,kg/TJ,1975316.3158652,kg +0c35a782-84a2-3e5a-82eb-7ddbf015071f,SESCO,II.1.1,Entre Rios,AR-E,annual,2010,naphtha combustion consumption by to the public,26.948380844,TJ,CH4,3.0,kg/TJ,80.845142532,kg +d6dc6d68-8e56-3bb2-9592-6d5fe4155b0d,SESCO,II.1.1,Entre Rios,AR-E,annual,2010,naphtha combustion consumption by to the public,26.948380844,TJ,N2O,0.6,kg/TJ,16.1690285064,kg +871dccea-d5e6-32cb-9cb5-4d284db42d24,SESCO,II.1.1,La Pampa,AR-L,annual,2010,naphtha combustion consumption by to the public,2.277375254,TJ,CO2,73300.0,kg/TJ,166931.6061182,kg +0a0bad11-9098-3552-b4bc-f8e4c84d0775,SESCO,II.1.1,La Pampa,AR-L,annual,2010,naphtha combustion consumption by to the public,2.277375254,TJ,CH4,3.0,kg/TJ,6.8321257619999995,kg +40913c24-8c06-3d6b-9c1e-36af5d646a3e,SESCO,II.1.1,La Pampa,AR-L,annual,2010,naphtha combustion consumption by to the public,2.277375254,TJ,N2O,0.6,kg/TJ,1.3664251524,kg +6feaf25b-48af-3868-bba6-aba9e20e96de,SESCO,II.1.1,Mendoza,AR-M,annual,2010,naphtha combustion consumption by to the public,24.762006576999998,TJ,CO2,73300.0,kg/TJ,1815055.0820940998,kg +5c04ac3f-e688-363e-85ee-94f9d8d0a18c,SESCO,II.1.1,Mendoza,AR-M,annual,2010,naphtha combustion consumption by to the public,24.762006576999998,TJ,CH4,3.0,kg/TJ,74.286019731,kg +17698e19-5a1e-3b8d-ba7c-506674560e10,SESCO,II.1.1,Mendoza,AR-M,annual,2010,naphtha combustion consumption by to the public,24.762006576999998,TJ,N2O,0.6,kg/TJ,14.857203946199999,kg +1dc8b39d-2f32-3fa5-94b1-27a61e1d8f1b,SESCO,II.1.1,Misiones,AR-N,annual,2010,naphtha combustion consumption by to the public,277.44622690399996,TJ,CO2,73300.0,kg/TJ,20336808.432063196,kg +4b9a971d-5f4b-3e5c-b909-5ed86ba59ee1,SESCO,II.1.1,Misiones,AR-N,annual,2010,naphtha combustion consumption by to the public,277.44622690399996,TJ,CH4,3.0,kg/TJ,832.3386807119998,kg +569bb913-fc97-3f5a-9e77-32df8e1ccadc,SESCO,II.1.1,Misiones,AR-N,annual,2010,naphtha combustion consumption by to the public,277.44622690399996,TJ,N2O,0.6,kg/TJ,166.46773614239996,kg +af1fc30f-feb4-37b9-bd9d-c5d1bf01f6f4,SESCO,II.1.1,Rio Negro,AR-R,annual,2010,naphtha combustion consumption by to the public,3.8777837559999995,TJ,CO2,73300.0,kg/TJ,284241.54931479995,kg +069fe55b-0955-32bd-a1c4-65b7a4e41bf4,SESCO,II.1.1,Rio Negro,AR-R,annual,2010,naphtha combustion consumption by to the public,3.8777837559999995,TJ,CH4,3.0,kg/TJ,11.633351267999998,kg +243eb21b-fa83-3e9b-b4e6-5299dc1c20a5,SESCO,II.1.1,Rio Negro,AR-R,annual,2010,naphtha combustion consumption by to the public,3.8777837559999995,TJ,N2O,0.6,kg/TJ,2.3266702535999997,kg +cba74db8-e2b0-3930-8d1c-c29514079bdc,SESCO,II.1.1,Santa Fe,AR-S,annual,2010,naphtha combustion consumption by to the public,201.86839611399998,TJ,CO2,73300.0,kg/TJ,14796953.435156198,kg +192550cf-9b5f-3012-9462-47f0d0ac0c10,SESCO,II.1.1,Santa Fe,AR-S,annual,2010,naphtha combustion consumption by to the public,201.86839611399998,TJ,CH4,3.0,kg/TJ,605.6051883419999,kg +b5da8a91-29e6-3a07-b4f0-83e2efd2ed02,SESCO,II.1.1,Santa Fe,AR-S,annual,2010,naphtha combustion consumption by to the public,201.86839611399998,TJ,N2O,0.6,kg/TJ,121.12103766839998,kg +0a947fe2-123f-32f2-b1da-5387d2bdfb5b,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,naphtha combustion consumption by to the public,6479.535486870599,TJ,CO2,73300.0,kg/TJ,474949951.1876149,kg +e161be4f-c3c9-342a-afdc-0a26af20bdbb,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,naphtha combustion consumption by to the public,6479.535486870599,TJ,CH4,3.0,kg/TJ,19438.606460611798,kg +54fd6f47-297e-3da1-b7be-ee7f96abdab7,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,naphtha combustion consumption by to the public,6479.535486870599,TJ,N2O,0.6,kg/TJ,3887.721292122359,kg +1fc7fab3-f85e-36ca-9217-64abc894da13,SESCO,II.1.1,Capital Federal,AR-C,annual,2010,naphtha combustion consumption by to the public,2255.4807187450997,TJ,CO2,73300.0,kg/TJ,165326736.6840158,kg +e28e2c15-8c09-3298-a330-3a65a307b596,SESCO,II.1.1,Capital Federal,AR-C,annual,2010,naphtha combustion consumption by to the public,2255.4807187450997,TJ,CH4,3.0,kg/TJ,6766.442156235299,kg +0234fbd1-3e55-3902-84e7-bfbc9552ac9b,SESCO,II.1.1,Capital Federal,AR-C,annual,2010,naphtha combustion consumption by to the public,2255.4807187450997,TJ,N2O,0.6,kg/TJ,1353.2884312470599,kg +1939216f-3315-33e4-89b0-81275dde6af4,SESCO,II.1.1,Catamarca,AR-K,annual,2010,naphtha combustion consumption by to the public,249.95083274699996,TJ,CO2,73300.0,kg/TJ,18321396.040355098,kg +5d4eaccf-b424-3e8d-9c53-b36b1b605bb5,SESCO,II.1.1,Catamarca,AR-K,annual,2010,naphtha combustion consumption by to the public,249.95083274699996,TJ,CH4,3.0,kg/TJ,749.8524982409999,kg +af185b43-f68d-37e2-8a7e-71f036f591fa,SESCO,II.1.1,Catamarca,AR-K,annual,2010,naphtha combustion consumption by to the public,249.95083274699996,TJ,N2O,0.6,kg/TJ,149.97049964819996,kg +29e6a8dc-2225-3750-98d2-27fed060a62e,SESCO,II.1.1,Chaco,AR-H,annual,2010,naphtha combustion consumption by to the public,323.30468000599996,TJ,CO2,73300.0,kg/TJ,23698233.044439796,kg +2a4d6bae-e936-31f8-ac8c-c21c9bdac0cb,SESCO,II.1.1,Chaco,AR-H,annual,2010,naphtha combustion consumption by to the public,323.30468000599996,TJ,CH4,3.0,kg/TJ,969.9140400179999,kg +7589edb6-14fe-35d4-a5a8-101c83d4fa3d,SESCO,II.1.1,Chaco,AR-H,annual,2010,naphtha combustion consumption by to the public,323.30468000599996,TJ,N2O,0.6,kg/TJ,193.98280800359996,kg +fdbb216d-38bf-311f-8f06-92b68b130ccf,SESCO,II.1.1,Chubut,AR-U,annual,2010,naphtha combustion consumption by to the public,276.500286755,TJ,CO2,73300.0,kg/TJ,20267471.0191415,kg +57c3df17-6f25-3fa6-a37e-3716b79bfc8f,SESCO,II.1.1,Chubut,AR-U,annual,2010,naphtha combustion consumption by to the public,276.500286755,TJ,CH4,3.0,kg/TJ,829.500860265,kg +3ec1763d-bf19-3bab-8b15-fa85bbcc2047,SESCO,II.1.1,Chubut,AR-U,annual,2010,naphtha combustion consumption by to the public,276.500286755,TJ,N2O,0.6,kg/TJ,165.90017205299998,kg +64a79fcc-eaa7-32ed-a203-cc38d11599d0,SESCO,II.1.1,Corrientes,AR-W,annual,2010,naphtha combustion consumption by to the public,365.11711505499994,TJ,CO2,73300.0,kg/TJ,26763084.533531494,kg +96c2f112-8754-334b-8716-ae1602df88f0,SESCO,II.1.1,Corrientes,AR-W,annual,2010,naphtha combustion consumption by to the public,365.11711505499994,TJ,CH4,3.0,kg/TJ,1095.3513451649999,kg +62a23c16-4559-30a5-b433-5da10a570960,SESCO,II.1.1,Corrientes,AR-W,annual,2010,naphtha combustion consumption by to the public,365.11711505499994,TJ,N2O,0.6,kg/TJ,219.07026903299996,kg +921cd43a-a1ee-3335-b24f-3e43d1141beb,SESCO,II.1.1,Córdoba,AR-X,annual,2010,naphtha combustion consumption by to the public,2368.4774837954997,TJ,CO2,73300.0,kg/TJ,173609399.5622101,kg +da7bb059-a70c-39f1-aba7-9d52e6570de8,SESCO,II.1.1,Córdoba,AR-X,annual,2010,naphtha combustion consumption by to the public,2368.4774837954997,TJ,CH4,3.0,kg/TJ,7105.432451386499,kg +3673baaa-fa80-32d5-ac22-4cdfc45d394d,SESCO,II.1.1,Córdoba,AR-X,annual,2010,naphtha combustion consumption by to the public,2368.4774837954997,TJ,N2O,0.6,kg/TJ,1421.0864902772998,kg +5cf8593d-7b29-3536-87ee-bf1c5a48c118,SESCO,II.1.1,Entre Rios,AR-E,annual,2010,naphtha combustion consumption by to the public,692.0772812029999,TJ,CO2,73300.0,kg/TJ,50729264.71217989,kg +bf620cf5-56ce-3717-aae5-5f3e2820466a,SESCO,II.1.1,Entre Rios,AR-E,annual,2010,naphtha combustion consumption by to the public,692.0772812029999,TJ,CH4,3.0,kg/TJ,2076.2318436089995,kg +8a92b082-5ae5-39fa-9832-a9f81a3de199,SESCO,II.1.1,Entre Rios,AR-E,annual,2010,naphtha combustion consumption by to the public,692.0772812029999,TJ,N2O,0.6,kg/TJ,415.2463687217999,kg +0fb4f6cc-f810-3dc5-b6c6-754e6f536912,SESCO,II.1.1,Formosa,AR-P,annual,2010,naphtha combustion consumption by to the public,287.174265994,TJ,CO2,73300.0,kg/TJ,21049873.6973602,kg +ba5752a1-6d94-35dd-8977-4e20e290781e,SESCO,II.1.1,Formosa,AR-P,annual,2010,naphtha combustion consumption by to the public,287.174265994,TJ,CH4,3.0,kg/TJ,861.5227979819999,kg +80001fd3-0b1b-300f-9a38-f1dd264d5ca2,SESCO,II.1.1,Formosa,AR-P,annual,2010,naphtha combustion consumption by to the public,287.174265994,TJ,N2O,0.6,kg/TJ,172.3045595964,kg +869bf6a6-729c-3b0d-a7fe-efee4cfd6845,SESCO,II.1.1,Jujuy,AR-Y,annual,2010,naphtha combustion consumption by to the public,52.762439422,TJ,CO2,73300.0,kg/TJ,3867486.8096326,kg +c36a1814-3158-3a2d-88cb-42886d375f92,SESCO,II.1.1,Jujuy,AR-Y,annual,2010,naphtha combustion consumption by to the public,52.762439422,TJ,CH4,3.0,kg/TJ,158.287318266,kg +59db6ff8-93a7-39fb-b316-9f90a66eecce,SESCO,II.1.1,Jujuy,AR-Y,annual,2010,naphtha combustion consumption by to the public,52.762439422,TJ,N2O,0.6,kg/TJ,31.657463653199997,kg +520638de-1a3c-38d5-9617-af2c08157624,SESCO,II.1.1,La Pampa,AR-L,annual,2010,naphtha combustion consumption by to the public,87.556381374,TJ,CO2,73300.0,kg/TJ,6417882.754714199,kg +5c682fed-b8a6-32ce-94fb-5311f9ea5022,SESCO,II.1.1,La Pampa,AR-L,annual,2010,naphtha combustion consumption by to the public,87.556381374,TJ,CH4,3.0,kg/TJ,262.669144122,kg +b9121763-faf6-3999-b430-ec48ff452ee0,SESCO,II.1.1,La Pampa,AR-L,annual,2010,naphtha combustion consumption by to the public,87.556381374,TJ,N2O,0.6,kg/TJ,52.5338288244,kg +54007756-cf36-3044-9446-5bf9331f1600,SESCO,II.1.1,La Rioja,AR-F,annual,2010,naphtha combustion consumption by to the public,177.74306064899997,TJ,CO2,73300.0,kg/TJ,13028566.345571699,kg +b789b836-f6d4-3baa-9dbc-00672f8da891,SESCO,II.1.1,La Rioja,AR-F,annual,2010,naphtha combustion consumption by to the public,177.74306064899997,TJ,CH4,3.0,kg/TJ,533.2291819469999,kg +1394684d-48b5-3bc6-9068-a9eb1a20cc34,SESCO,II.1.1,La Rioja,AR-F,annual,2010,naphtha combustion consumption by to the public,177.74306064899997,TJ,N2O,0.6,kg/TJ,106.64583638939997,kg +22d396ca-5e96-3768-a9c3-bf9c0f181548,SESCO,II.1.1,Mendoza,AR-M,annual,2010,naphtha combustion consumption by to the public,257.103644644,TJ,CO2,73300.0,kg/TJ,18845697.1524052,kg +eaa5044a-9e52-3fc8-bae6-7b3baf97d2b4,SESCO,II.1.1,Mendoza,AR-M,annual,2010,naphtha combustion consumption by to the public,257.103644644,TJ,CH4,3.0,kg/TJ,771.3109339319999,kg +d0c3d397-fef3-38bc-88da-f51533a6e051,SESCO,II.1.1,Mendoza,AR-M,annual,2010,naphtha combustion consumption by to the public,257.103644644,TJ,N2O,0.6,kg/TJ,154.26218678639998,kg +c61e2c84-18a1-3c8d-a54a-2f5a842c287b,SESCO,II.1.1,Misiones,AR-N,annual,2010,naphtha combustion consumption by to the public,587.3146615489999,TJ,CO2,73300.0,kg/TJ,43050164.691541694,kg +f2b55239-2030-3cbe-aa55-c1a7bebf3a45,SESCO,II.1.1,Misiones,AR-N,annual,2010,naphtha combustion consumption by to the public,587.3146615489999,TJ,CH4,3.0,kg/TJ,1761.9439846469995,kg +d5fe3294-4e6d-397e-b953-fd6431085bfa,SESCO,II.1.1,Misiones,AR-N,annual,2010,naphtha combustion consumption by to the public,587.3146615489999,TJ,N2O,0.6,kg/TJ,352.3887969293999,kg +17a8f033-2f7f-3ae6-b09d-3830b5cf6d76,SESCO,II.1.1,Neuquén,AR-Q,annual,2010,naphtha combustion consumption by to the public,252.10597789299996,TJ,CO2,73300.0,kg/TJ,18479368.1795569,kg +6ed3e055-fcd1-3a22-888b-f66a2b4fc1b6,SESCO,II.1.1,Neuquén,AR-Q,annual,2010,naphtha combustion consumption by to the public,252.10597789299996,TJ,CH4,3.0,kg/TJ,756.3179336789999,kg +030db075-3edc-379d-b8bf-43c2a836bf6d,SESCO,II.1.1,Neuquén,AR-Q,annual,2010,naphtha combustion consumption by to the public,252.10597789299996,TJ,N2O,0.6,kg/TJ,151.26358673579998,kg +75bcb0c3-9c72-3564-a6da-7db5668e4b5d,SESCO,II.1.1,Rio Negro,AR-R,annual,2010,naphtha combustion consumption by to the public,378.61481126699994,TJ,CO2,73300.0,kg/TJ,27752465.665871095,kg +79cecd54-ff8b-3cd3-81c8-47a1642c082f,SESCO,II.1.1,Rio Negro,AR-R,annual,2010,naphtha combustion consumption by to the public,378.61481126699994,TJ,CH4,3.0,kg/TJ,1135.844433801,kg +d5ade6a9-3359-38f3-9ec2-1e3bf9dc4c51,SESCO,II.1.1,Rio Negro,AR-R,annual,2010,naphtha combustion consumption by to the public,378.61481126699994,TJ,N2O,0.6,kg/TJ,227.16888676019997,kg +7b36c558-08a6-3e57-bb33-9838fa9bcfc5,SESCO,II.1.1,Salta,AR-A,annual,2010,naphtha combustion consumption by to the public,49.29432800599999,TJ,CO2,73300.0,kg/TJ,3613274.2428397997,kg +12d83423-ae34-392e-9689-6bb6332efe66,SESCO,II.1.1,Salta,AR-A,annual,2010,naphtha combustion consumption by to the public,49.29432800599999,TJ,CH4,3.0,kg/TJ,147.88298401799997,kg +d001c6d1-20bc-3c2f-8931-9ea2b70c4676,SESCO,II.1.1,Salta,AR-A,annual,2010,naphtha combustion consumption by to the public,49.29432800599999,TJ,N2O,0.6,kg/TJ,29.576596803599994,kg +de0a9067-b965-36a5-b658-8b4c985e299c,SESCO,II.1.1,San Juan,AR-J,annual,2010,naphtha combustion consumption by to the public,211.892272361,TJ,CO2,73300.0,kg/TJ,15531703.5640613,kg +0ee13477-c098-3769-a8f1-6fb898235797,SESCO,II.1.1,San Juan,AR-J,annual,2010,naphtha combustion consumption by to the public,211.892272361,TJ,CH4,3.0,kg/TJ,635.6768170830001,kg +59fcc52f-7a14-3c9d-a3cf-a4a08e99af79,SESCO,II.1.1,San Juan,AR-J,annual,2010,naphtha combustion consumption by to the public,211.892272361,TJ,N2O,0.6,kg/TJ,127.1353634166,kg +0211a8d5-c7b3-3190-bb02-e9c403aac382,SESCO,II.1.1,San Luis,AR-D,annual,2010,naphtha combustion consumption by to the public,437.9981601379999,TJ,CO2,73300.0,kg/TJ,32105265.13811539,kg +96d0871a-e461-36b1-b26f-12f24081f084,SESCO,II.1.1,San Luis,AR-D,annual,2010,naphtha combustion consumption by to the public,437.9981601379999,TJ,CH4,3.0,kg/TJ,1313.9944804139996,kg +f5d53e42-093c-31de-b061-1e9e34f88f98,SESCO,II.1.1,San Luis,AR-D,annual,2010,naphtha combustion consumption by to the public,437.9981601379999,TJ,N2O,0.6,kg/TJ,262.7988960827999,kg +593548d1-7bb8-3ab0-9663-2ee25a46f064,SESCO,II.1.1,Santa Fe,AR-S,annual,2010,naphtha combustion consumption by to the public,1965.2830373021998,TJ,CO2,73300.0,kg/TJ,144055246.63425124,kg +c2eaf0e6-6951-3759-a568-47edad7c6c47,SESCO,II.1.1,Santa Fe,AR-S,annual,2010,naphtha combustion consumption by to the public,1965.2830373021998,TJ,CH4,3.0,kg/TJ,5895.849111906599,kg +14c6fae8-8e55-3031-9681-0a6758aeec92,SESCO,II.1.1,Santa Fe,AR-S,annual,2010,naphtha combustion consumption by to the public,1965.2830373021998,TJ,N2O,0.6,kg/TJ,1179.1698223813198,kg +ed61e8f2-b9c5-3707-bfdb-59f2b30e37d7,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2010,naphtha combustion consumption by to the public,181.37369781299998,TJ,CO2,73300.0,kg/TJ,13294692.049692899,kg +68ced933-0760-3e0a-b4f5-707acff53282,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2010,naphtha combustion consumption by to the public,181.37369781299998,TJ,CH4,3.0,kg/TJ,544.1210934389999,kg +69a7907a-1dba-3152-9cb3-99c3475ab1bd,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2010,naphtha combustion consumption by to the public,181.37369781299998,TJ,N2O,0.6,kg/TJ,108.82421868779998,kg +20bf8a86-e4c7-3797-9699-5aa2abea06c6,SESCO,II.1.1,Tucuman,AR-T,annual,2010,naphtha combustion consumption by to the public,58.92666495099999,TJ,CO2,73300.0,kg/TJ,4319324.540908299,kg +69005809-2484-3bbf-b4f4-39ea492b4ad4,SESCO,II.1.1,Tucuman,AR-T,annual,2010,naphtha combustion consumption by to the public,58.92666495099999,TJ,CH4,3.0,kg/TJ,176.77999485299998,kg +50ad0e70-d6bc-375f-966d-53c9538f1b89,SESCO,II.1.1,Tucuman,AR-T,annual,2010,naphtha combustion consumption by to the public,58.92666495099999,TJ,N2O,0.6,kg/TJ,35.35599897059999,kg +03fadeb0-4267-35bf-9e04-fe9a029ed111,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,naphtha combustion consumption by to the public,1369.0091774743998,TJ,CO2,73300.0,kg/TJ,100348372.70887351,kg +0b0339dd-1180-31af-9f65-98c148b991d3,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,naphtha combustion consumption by to the public,1369.0091774743998,TJ,CH4,3.0,kg/TJ,4107.0275324232,kg +021ba4be-0133-3b5b-a042-8995fc555ad7,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,naphtha combustion consumption by to the public,1369.0091774743998,TJ,N2O,0.6,kg/TJ,821.4055064846399,kg +83396201-4a10-3b0a-a67b-3b628ae5b68a,SESCO,II.1.1,Capital Federal,AR-C,annual,2010,naphtha combustion consumption by to the public,754.7230658274999,TJ,CO2,73300.0,kg/TJ,55321200.72515574,kg +e7eb477f-885b-3b89-bc75-240aba2eddd5,SESCO,II.1.1,Capital Federal,AR-C,annual,2010,naphtha combustion consumption by to the public,754.7230658274999,TJ,CH4,3.0,kg/TJ,2264.1691974825,kg +820cb83f-8da0-3143-b26e-314f0c3906a4,SESCO,II.1.1,Capital Federal,AR-C,annual,2010,naphtha combustion consumption by to the public,754.7230658274999,TJ,N2O,0.6,kg/TJ,452.83383949649993,kg +c1eb263e-5c00-3ee9-a0b0-0ffd7897b3ce,SESCO,II.1.1,Catamarca,AR-K,annual,2010,naphtha combustion consumption by to the public,39.304367256,TJ,CO2,73300.0,kg/TJ,2881010.1198648,kg +b3df14e0-e266-39af-982f-4cdfe35dae35,SESCO,II.1.1,Catamarca,AR-K,annual,2010,naphtha combustion consumption by to the public,39.304367256,TJ,CH4,3.0,kg/TJ,117.91310176799999,kg +ab36689e-9d25-3492-8bb8-b9831af65416,SESCO,II.1.1,Catamarca,AR-K,annual,2010,naphtha combustion consumption by to the public,39.304367256,TJ,N2O,0.6,kg/TJ,23.5826203536,kg +e761287d-d07a-3d6f-81ec-27be2ad14cf4,SESCO,II.1.1,Chaco,AR-H,annual,2010,naphtha combustion consumption by to the public,44.175438537999995,TJ,CO2,73300.0,kg/TJ,3238059.6448353995,kg +261e3910-475e-3bd9-b6ea-416e38acf43d,SESCO,II.1.1,Chaco,AR-H,annual,2010,naphtha combustion consumption by to the public,44.175438537999995,TJ,CH4,3.0,kg/TJ,132.526315614,kg +221218c3-0fa1-3ae8-91e1-40e230306c40,SESCO,II.1.1,Chaco,AR-H,annual,2010,naphtha combustion consumption by to the public,44.175438537999995,TJ,N2O,0.6,kg/TJ,26.505263122799995,kg +5a661213-a27e-3287-ab3d-07ca775d53cf,SESCO,II.1.1,Chubut,AR-U,annual,2010,naphtha combustion consumption by to the public,24.095785328999998,TJ,CO2,73300.0,kg/TJ,1766221.0646157,kg +76e20106-402a-3b99-b456-a61bfbc37c14,SESCO,II.1.1,Chubut,AR-U,annual,2010,naphtha combustion consumption by to the public,24.095785328999998,TJ,CH4,3.0,kg/TJ,72.287355987,kg +874dea7c-558a-39fa-91fa-4f50c2a2a119,SESCO,II.1.1,Chubut,AR-U,annual,2010,naphtha combustion consumption by to the public,24.095785328999998,TJ,N2O,0.6,kg/TJ,14.457471197399999,kg +5346dadb-fc93-350e-8c6e-0f075d90da38,SESCO,II.1.1,Corrientes,AR-W,annual,2010,naphtha combustion consumption by to the public,32.36814442399999,TJ,CO2,73300.0,kg/TJ,2372584.9862791994,kg +cabfbd81-c616-3665-9c32-b0d38148cf1c,SESCO,II.1.1,Corrientes,AR-W,annual,2010,naphtha combustion consumption by to the public,32.36814442399999,TJ,CH4,3.0,kg/TJ,97.10443327199998,kg +1a75c818-02fd-33ae-8470-56061bdced59,SESCO,II.1.1,Corrientes,AR-W,annual,2010,naphtha combustion consumption by to the public,32.36814442399999,TJ,N2O,0.6,kg/TJ,19.420886654399997,kg +1e14ecb8-757c-36ac-aac9-ccac8e450fbd,SESCO,II.1.1,Córdoba,AR-X,annual,2010,naphtha combustion consumption by to the public,477.5979280149,TJ,CO2,73300.0,kg/TJ,35007928.12349217,kg +817b8303-6c27-3b8a-9d2d-1929bbe2f89d,SESCO,II.1.1,Córdoba,AR-X,annual,2010,naphtha combustion consumption by to the public,477.5979280149,TJ,CH4,3.0,kg/TJ,1432.7937840447,kg +e03f699d-4a13-37fa-aa61-1107a9d5937d,SESCO,II.1.1,Córdoba,AR-X,annual,2010,naphtha combustion consumption by to the public,477.5979280149,TJ,N2O,0.6,kg/TJ,286.55875680893996,kg +ab33d85f-ba51-3bf3-b1b6-41db8bcda65a,SESCO,II.1.1,Entre Rios,AR-E,annual,2010,naphtha combustion consumption by to the public,124.61258771499998,TJ,CO2,73300.0,kg/TJ,9134102.679509498,kg +fb208edb-d2e6-3eb9-b0fb-37227c7ac846,SESCO,II.1.1,Entre Rios,AR-E,annual,2010,naphtha combustion consumption by to the public,124.61258771499998,TJ,CH4,3.0,kg/TJ,373.83776314499994,kg +f919decd-11e4-3517-b16d-8d332fa7cf7d,SESCO,II.1.1,Entre Rios,AR-E,annual,2010,naphtha combustion consumption by to the public,124.61258771499998,TJ,N2O,0.6,kg/TJ,74.76755262899998,kg +e5c25cb1-78bb-3e0a-906d-fdb08f2eb1e8,SESCO,II.1.1,Formosa,AR-P,annual,2010,naphtha combustion consumption by to the public,46.22950878699999,TJ,CO2,73300.0,kg/TJ,3388622.9940870996,kg +29b8d624-8ce4-3f56-b363-612dba7dc38b,SESCO,II.1.1,Formosa,AR-P,annual,2010,naphtha combustion consumption by to the public,46.22950878699999,TJ,CH4,3.0,kg/TJ,138.688526361,kg +7bd2d483-af01-332e-b5c9-df94ac9b8fae,SESCO,II.1.1,Formosa,AR-P,annual,2010,naphtha combustion consumption by to the public,46.22950878699999,TJ,N2O,0.6,kg/TJ,27.737705272199996,kg +80efa628-e821-3fb6-a8c6-6985b45cb2b7,SESCO,II.1.1,Jujuy,AR-Y,annual,2010,naphtha combustion consumption by to the public,1.3361362629999998,TJ,CO2,73300.0,kg/TJ,97938.78807789998,kg +800be713-7948-356b-941f-abf56bf67995,SESCO,II.1.1,Jujuy,AR-Y,annual,2010,naphtha combustion consumption by to the public,1.3361362629999998,TJ,CH4,3.0,kg/TJ,4.008408788999999,kg +87404ce9-3baf-3788-8ad6-a3f52ec88cd5,SESCO,II.1.1,Jujuy,AR-Y,annual,2010,naphtha combustion consumption by to the public,1.3361362629999998,TJ,N2O,0.6,kg/TJ,0.8016817577999998,kg +21f26a4b-692d-3fd8-a3bc-8b5692853363,SESCO,II.1.1,La Pampa,AR-L,annual,2010,naphtha combustion consumption by to the public,17.733775367,TJ,CO2,73300.0,kg/TJ,1299885.7344011,kg +1d8da0da-a420-3f07-8812-43f11505059a,SESCO,II.1.1,La Pampa,AR-L,annual,2010,naphtha combustion consumption by to the public,17.733775367,TJ,CH4,3.0,kg/TJ,53.201326101,kg +bc4071da-1343-3c34-9759-c95caae9fe86,SESCO,II.1.1,La Pampa,AR-L,annual,2010,naphtha combustion consumption by to the public,17.733775367,TJ,N2O,0.6,kg/TJ,10.6402652202,kg +ad84a59a-727f-39ab-a220-30d90385fe19,SESCO,II.1.1,La Rioja,AR-F,annual,2010,naphtha combustion consumption by to the public,33.020933792,TJ,CO2,73300.0,kg/TJ,2420434.4469536003,kg +f970edcc-19cc-3fbd-b440-a85fcaf7bfed,SESCO,II.1.1,La Rioja,AR-F,annual,2010,naphtha combustion consumption by to the public,33.020933792,TJ,CH4,3.0,kg/TJ,99.06280137600001,kg +55b42670-544e-3f1e-8f7e-9936e36c338b,SESCO,II.1.1,La Rioja,AR-F,annual,2010,naphtha combustion consumption by to the public,33.020933792,TJ,N2O,0.6,kg/TJ,19.8125602752,kg +37da60a6-bbf0-3331-9629-8b2888c3f41e,SESCO,II.1.1,Mendoza,AR-M,annual,2010,naphtha combustion consumption by to the public,53.441085159,TJ,CO2,73300.0,kg/TJ,3917231.5421546996,kg +66f5d65a-3da6-3828-8ade-dd2bae534acb,SESCO,II.1.1,Mendoza,AR-M,annual,2010,naphtha combustion consumption by to the public,53.441085159,TJ,CH4,3.0,kg/TJ,160.32325547699998,kg +be13e84c-80be-3ff1-b442-c3cfc89e0152,SESCO,II.1.1,Mendoza,AR-M,annual,2010,naphtha combustion consumption by to the public,53.441085159,TJ,N2O,0.6,kg/TJ,32.064651095399995,kg +2e9c5dec-9166-3a24-a7b4-f9d2780da09e,SESCO,II.1.1,Misiones,AR-N,annual,2010,naphtha combustion consumption by to the public,39.373877234999995,TJ,CO2,73300.0,kg/TJ,2886105.2013254995,kg +a877688a-723e-3c6a-9d7d-793e3bffdaf1,SESCO,II.1.1,Misiones,AR-N,annual,2010,naphtha combustion consumption by to the public,39.373877234999995,TJ,CH4,3.0,kg/TJ,118.12163170499998,kg +a42bee3f-f5d9-3f3c-8833-6ab1032ea935,SESCO,II.1.1,Misiones,AR-N,annual,2010,naphtha combustion consumption by to the public,39.373877234999995,TJ,N2O,0.6,kg/TJ,23.624326340999996,kg +d3770476-ba75-30bf-a7be-20353d51dbf2,SESCO,II.1.1,Neuquén,AR-Q,annual,2010,naphtha combustion consumption by to the public,42.968248323,TJ,CO2,73300.0,kg/TJ,3149572.6020759,kg +d91f81c0-7c07-310a-bf6a-a6c540691f86,SESCO,II.1.1,Neuquén,AR-Q,annual,2010,naphtha combustion consumption by to the public,42.968248323,TJ,CH4,3.0,kg/TJ,128.90474496899998,kg +597001eb-3abe-33be-a376-4b47d89ceb5b,SESCO,II.1.1,Neuquén,AR-Q,annual,2010,naphtha combustion consumption by to the public,42.968248323,TJ,N2O,0.6,kg/TJ,25.7809489938,kg +e1f79162-e52f-3ee8-a447-5ddf6ebe9850,SESCO,II.1.1,Rio Negro,AR-R,annual,2010,naphtha combustion consumption by to the public,67.022059027,TJ,CO2,73300.0,kg/TJ,4912716.9266791,kg +eff08a92-b933-32d9-92b0-21dabb3ee45c,SESCO,II.1.1,Rio Negro,AR-R,annual,2010,naphtha combustion consumption by to the public,67.022059027,TJ,CH4,3.0,kg/TJ,201.06617708099998,kg +29b0d102-b2c5-3546-afe9-5193941b3362,SESCO,II.1.1,Rio Negro,AR-R,annual,2010,naphtha combustion consumption by to the public,67.022059027,TJ,N2O,0.6,kg/TJ,40.2132354162,kg +0ff85840-3a29-38e6-a7ff-5b0c6d698255,SESCO,II.1.1,Salta,AR-A,annual,2010,naphtha combustion consumption by to the public,6.139040754,TJ,CO2,73300.0,kg/TJ,449991.6872682,kg +a6685f37-4c8a-3ca6-b17a-722ab214db40,SESCO,II.1.1,Salta,AR-A,annual,2010,naphtha combustion consumption by to the public,6.139040754,TJ,CH4,3.0,kg/TJ,18.417122262,kg +9fafc117-833c-3913-8dff-22692ffcff60,SESCO,II.1.1,Salta,AR-A,annual,2010,naphtha combustion consumption by to the public,6.139040754,TJ,N2O,0.6,kg/TJ,3.6834244523999997,kg +a6108f38-4778-392f-9df7-004a8c55b9fe,SESCO,II.1.1,San Juan,AR-J,annual,2010,naphtha combustion consumption by to the public,37.440022312,TJ,CO2,73300.0,kg/TJ,2744353.6354696,kg +eebd0cc6-8555-39bd-8200-07a89f94358a,SESCO,II.1.1,San Juan,AR-J,annual,2010,naphtha combustion consumption by to the public,37.440022312,TJ,CH4,3.0,kg/TJ,112.32006693600002,kg +7a9a0d6b-74c4-3d0e-bcb8-ab0161a27cfe,SESCO,II.1.1,San Juan,AR-J,annual,2010,naphtha combustion consumption by to the public,37.440022312,TJ,N2O,0.6,kg/TJ,22.4640133872,kg +da058152-59a4-32e7-b3ee-be5f924c6dce,SESCO,II.1.1,San Luis,AR-D,annual,2010,naphtha combustion consumption by to the public,59.826265113999995,TJ,CO2,73300.0,kg/TJ,4385265.232856199,kg +8db4802b-fa62-3886-af9a-a9e9b6f7ffec,SESCO,II.1.1,San Luis,AR-D,annual,2010,naphtha combustion consumption by to the public,59.826265113999995,TJ,CH4,3.0,kg/TJ,179.47879534199998,kg +38a4d48d-445c-3383-9f81-3a26144580c1,SESCO,II.1.1,San Luis,AR-D,annual,2010,naphtha combustion consumption by to the public,59.826265113999995,TJ,N2O,0.6,kg/TJ,35.8957590684,kg +9452b850-dd89-38b4-a66a-f8f3b0f8fd05,SESCO,II.1.1,Santa Fe,AR-S,annual,2010,naphtha combustion consumption by to the public,433.38172372109995,TJ,CO2,73300.0,kg/TJ,31766880.348756626,kg +96d104d5-a4e7-374b-8ef1-ab83c3bbd47e,SESCO,II.1.1,Santa Fe,AR-S,annual,2010,naphtha combustion consumption by to the public,433.38172372109995,TJ,CH4,3.0,kg/TJ,1300.1451711633,kg +49704c85-9267-30c7-9ac8-6f82a6fb8e5a,SESCO,II.1.1,Santa Fe,AR-S,annual,2010,naphtha combustion consumption by to the public,433.38172372109995,TJ,N2O,0.6,kg/TJ,260.02903423265997,kg +0c640068-5dc0-379e-9aed-d9698672fb52,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2010,naphtha combustion consumption by to the public,64.44616024,TJ,CO2,73300.0,kg/TJ,4723903.545592,kg +0ba55574-b15a-31f4-8a26-a022fcee549f,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2010,naphtha combustion consumption by to the public,64.44616024,TJ,CH4,3.0,kg/TJ,193.33848072,kg +5a561d89-812a-32c9-aef0-7b0153d9cd7a,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2010,naphtha combustion consumption by to the public,64.44616024,TJ,N2O,0.6,kg/TJ,38.667696144,kg +b958a5e4-2e13-3d38-a819-eb72ed3a56e5,SESCO,II.1.1,Tucuman,AR-T,annual,2010,naphtha combustion consumption by to the public,15.317715952,TJ,CO2,73300.0,kg/TJ,1122788.5792816,kg +efc8c975-799d-328f-8ffa-12e823e033ea,SESCO,II.1.1,Tucuman,AR-T,annual,2010,naphtha combustion consumption by to the public,15.317715952,TJ,CH4,3.0,kg/TJ,45.953147856,kg +7431d725-7377-334e-ae53-8243b5271255,SESCO,II.1.1,Tucuman,AR-T,annual,2010,naphtha combustion consumption by to the public,15.317715952,TJ,N2O,0.6,kg/TJ,9.1906295712,kg +e68ab9b6-f7b3-30a8-bce2-9a4d282f3f7a,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,naphtha combustion consumption by freight transport,0.0010073909999999998,TJ,CO2,73300.0,kg/TJ,73.84176029999999,kg +ad20e0fe-d585-3e22-b267-af33f1a76270,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,naphtha combustion consumption by freight transport,0.0010073909999999998,TJ,CH4,3.0,kg/TJ,0.0030221729999999995,kg +06ed6ad3-e099-34fa-9a0d-1e9dbd3eaac7,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,naphtha combustion consumption by freight transport,0.0010073909999999998,TJ,N2O,0.6,kg/TJ,0.0006044345999999999,kg +c669c511-8d33-3cc4-85c3-c64f13f468a3,SESCO,II.1.1,Capital Federal,AR-C,annual,2010,naphtha combustion consumption by freight transport,0.015782459,TJ,CO2,73300.0,kg/TJ,1156.8542447,kg +632b6a90-723b-3768-87f7-a1fad323e442,SESCO,II.1.1,Capital Federal,AR-C,annual,2010,naphtha combustion consumption by freight transport,0.015782459,TJ,CH4,3.0,kg/TJ,0.047347376999999996,kg +ea141dba-3032-3776-9dad-15cbe1afba55,SESCO,II.1.1,Capital Federal,AR-C,annual,2010,naphtha combustion consumption by freight transport,0.015782459,TJ,N2O,0.6,kg/TJ,0.009469475399999998,kg +769fc8f0-9a32-389a-9eb2-60caafd8d1f5,SESCO,II.1.1,Misiones,AR-N,annual,2010,naphtha combustion consumption by freight transport,0.002350579,TJ,CO2,73300.0,kg/TJ,172.2974407,kg +f40d46c6-aa3d-3bed-88f9-88acb711da85,SESCO,II.1.1,Misiones,AR-N,annual,2010,naphtha combustion consumption by freight transport,0.002350579,TJ,CH4,3.0,kg/TJ,0.007051737000000001,kg +e90f4943-05ab-31e7-89e0-d5d96c24a5ee,SESCO,II.1.1,Misiones,AR-N,annual,2010,naphtha combustion consumption by freight transport,0.002350579,TJ,N2O,0.6,kg/TJ,0.0014103474,kg +a52fb5a7-5be1-3723-9b3f-fe9af2ca8bd0,SESCO,II.1.1,Santa Fe,AR-S,annual,2010,naphtha combustion consumption by freight transport,0.076897513,TJ,CO2,73300.0,kg/TJ,5636.5877029,kg +27ec69c1-8da8-3754-9748-908afccd41b0,SESCO,II.1.1,Santa Fe,AR-S,annual,2010,naphtha combustion consumption by freight transport,0.076897513,TJ,CH4,3.0,kg/TJ,0.230692539,kg +bfd0f2f0-bc9a-3943-be1c-8af5ed564a46,SESCO,II.1.1,Santa Fe,AR-S,annual,2010,naphtha combustion consumption by freight transport,0.076897513,TJ,N2O,0.6,kg/TJ,0.0461385078,kg +e9745cbf-25af-3583-9e7e-f4724ed8a881,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,naphtha combustion consumption by freight transport,4.3989407,TJ,CO2,73300.0,kg/TJ,322442.35331,kg +ad49f1dd-7de3-3695-aa06-043d26ac9a1c,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,naphtha combustion consumption by freight transport,4.3989407,TJ,CH4,3.0,kg/TJ,13.196822099999999,kg +a282be36-e3ed-31f6-b9cb-9b109ff2da6d,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,naphtha combustion consumption by freight transport,4.3989407,TJ,N2O,0.6,kg/TJ,2.6393644199999997,kg +e8fce2a0-3381-372f-bd3d-fa51b98df7d1,SESCO,II.1.1,Capital Federal,AR-C,annual,2010,naphtha combustion consumption by freight transport,15.567884716999998,TJ,CO2,73300.0,kg/TJ,1141125.9497560998,kg +9586a83e-1414-368c-85a9-55c923b1e134,SESCO,II.1.1,Capital Federal,AR-C,annual,2010,naphtha combustion consumption by freight transport,15.567884716999998,TJ,CH4,3.0,kg/TJ,46.703654150999995,kg +ed3d5175-9e85-3821-91e3-fadd960bcd71,SESCO,II.1.1,Capital Federal,AR-C,annual,2010,naphtha combustion consumption by freight transport,15.567884716999998,TJ,N2O,0.6,kg/TJ,9.340730830199998,kg +43f8f7ac-5af8-335e-8ec9-7b150c044e48,SESCO,II.1.1,Corrientes,AR-W,annual,2010,naphtha combustion consumption by freight transport,0.008730722,TJ,CO2,73300.0,kg/TJ,639.9619226,kg +f58ff51e-cc64-3bbf-9d09-fbe6867e32b1,SESCO,II.1.1,Corrientes,AR-W,annual,2010,naphtha combustion consumption by freight transport,0.008730722,TJ,CH4,3.0,kg/TJ,0.026192166,kg +ca28e352-be3b-3064-8827-9c5cd59c98da,SESCO,II.1.1,Corrientes,AR-W,annual,2010,naphtha combustion consumption by freight transport,0.008730722,TJ,N2O,0.6,kg/TJ,0.0052384332,kg +7d32cc48-da89-35a8-9ae0-46bb3817eab2,SESCO,II.1.1,Córdoba,AR-X,annual,2010,naphtha combustion consumption by freight transport,0.46138507799999995,TJ,CO2,73300.0,kg/TJ,33819.526217399994,kg +201191d8-694e-3d09-bd5a-7fc7099334ab,SESCO,II.1.1,Córdoba,AR-X,annual,2010,naphtha combustion consumption by freight transport,0.46138507799999995,TJ,CH4,3.0,kg/TJ,1.3841552339999998,kg +705c53e4-b539-335c-923e-f28143e02127,SESCO,II.1.1,Córdoba,AR-X,annual,2010,naphtha combustion consumption by freight transport,0.46138507799999995,TJ,N2O,0.6,kg/TJ,0.2768310468,kg +b33d4660-c828-332a-b4c5-11e8016fc7c0,SESCO,II.1.1,Entre Rios,AR-E,annual,2010,naphtha combustion consumption by freight transport,35.841628592000006,TJ,CO2,73300.0,kg/TJ,2627191.3757936005,kg +6411fe08-3803-3756-a7a0-fda1bc61e4b2,SESCO,II.1.1,Entre Rios,AR-E,annual,2010,naphtha combustion consumption by freight transport,35.841628592000006,TJ,CH4,3.0,kg/TJ,107.52488577600002,kg +cda4e925-d000-3876-a746-1c7afff26761,SESCO,II.1.1,Entre Rios,AR-E,annual,2010,naphtha combustion consumption by freight transport,35.841628592000006,TJ,N2O,0.6,kg/TJ,21.504977155200002,kg +fedf40cc-4bb0-380d-8788-9ea92a626dc8,SESCO,II.1.1,Misiones,AR-N,annual,2010,naphtha combustion consumption by freight transport,0.022162602,TJ,CO2,73300.0,kg/TJ,1624.5187266,kg +1107c831-9f53-32ff-a453-6cab65af1e98,SESCO,II.1.1,Misiones,AR-N,annual,2010,naphtha combustion consumption by freight transport,0.022162602,TJ,CH4,3.0,kg/TJ,0.066487806,kg +f6aa657c-d044-3b48-a0a3-d5c868b6f29f,SESCO,II.1.1,Misiones,AR-N,annual,2010,naphtha combustion consumption by freight transport,0.022162602,TJ,N2O,0.6,kg/TJ,0.0132975612,kg +a18e7510-f47c-3803-8a87-bfe4e1e5dd69,SESCO,II.1.1,Salta,AR-A,annual,2010,naphtha combustion consumption by freight transport,1.012763752,TJ,CO2,73300.0,kg/TJ,74235.58302159999,kg +b8d50a7b-cf32-3feb-9735-8cd68ac3afd3,SESCO,II.1.1,Salta,AR-A,annual,2010,naphtha combustion consumption by freight transport,1.012763752,TJ,CH4,3.0,kg/TJ,3.038291256,kg +b7230195-7428-3116-bf83-4ab08af7ee0b,SESCO,II.1.1,Salta,AR-A,annual,2010,naphtha combustion consumption by freight transport,1.012763752,TJ,N2O,0.6,kg/TJ,0.6076582511999999,kg +55321016-25fd-375f-8a64-d60582ec9873,SESCO,II.1.1,San Luis,AR-D,annual,2010,naphtha combustion consumption by freight transport,0.06883838499999999,TJ,CO2,73300.0,kg/TJ,5045.853620499999,kg +9ee98f25-8d24-38e2-8b2d-c66d3de11d42,SESCO,II.1.1,San Luis,AR-D,annual,2010,naphtha combustion consumption by freight transport,0.06883838499999999,TJ,CH4,3.0,kg/TJ,0.20651515499999995,kg +622c5bb0-da96-310a-9db6-34cfc3231eb9,SESCO,II.1.1,San Luis,AR-D,annual,2010,naphtha combustion consumption by freight transport,0.06883838499999999,TJ,N2O,0.6,kg/TJ,0.04130303099999999,kg +a9213fdc-ea76-3c3b-b2dc-6322a72eeff4,SESCO,II.1.1,Santa Fe,AR-S,annual,2010,naphtha combustion consumption by freight transport,0.762594987,TJ,CO2,73300.0,kg/TJ,55898.212547099996,kg +d86241b3-1363-344f-a146-603740a2747c,SESCO,II.1.1,Santa Fe,AR-S,annual,2010,naphtha combustion consumption by freight transport,0.762594987,TJ,CH4,3.0,kg/TJ,2.287784961,kg +4d32b855-40be-382a-a7e6-077cdee8ec40,SESCO,II.1.1,Santa Fe,AR-S,annual,2010,naphtha combustion consumption by freight transport,0.762594987,TJ,N2O,0.6,kg/TJ,0.45755699219999996,kg +c9ae0eff-3876-3011-8500-1afbdec10ad1,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2010,naphtha combustion consumption by freight transport,0.029550135999999998,TJ,CO2,73300.0,kg/TJ,2166.0249688,kg +fc9570b3-b2b1-3aeb-897d-b401dea8211a,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2010,naphtha combustion consumption by freight transport,0.029550135999999998,TJ,CH4,3.0,kg/TJ,0.08865040799999999,kg +508d72fe-2175-3e91-a59c-530f287457cd,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2010,naphtha combustion consumption by freight transport,0.029550135999999998,TJ,N2O,0.6,kg/TJ,0.0177300816,kg +e2bd17c3-24b3-3455-929f-736c4872cb33,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2010,naphtha combustion consumption by freight transport,0.018133037999999997,TJ,CO2,73300.0,kg/TJ,1329.1516853999997,kg +34267336-59ef-31c8-89f2-5d09cf21479c,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2010,naphtha combustion consumption by freight transport,0.018133037999999997,TJ,CH4,3.0,kg/TJ,0.05439911399999999,kg +ae62ce1b-5daf-3ff1-8edf-cad6a74cb0c6,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2010,naphtha combustion consumption by freight transport,0.018133037999999997,TJ,N2O,0.6,kg/TJ,0.010879822799999998,kg +b28b729f-84c3-3d07-868d-d15641021321,SESCO,II.1.1,Tucuman,AR-T,annual,2010,naphtha combustion consumption by freight transport,0.15144444699999998,TJ,CO2,73300.0,kg/TJ,11100.877965099999,kg +2568b0c3-48cc-35f3-8316-d8366f118b0e,SESCO,II.1.1,Tucuman,AR-T,annual,2010,naphtha combustion consumption by freight transport,0.15144444699999998,TJ,CH4,3.0,kg/TJ,0.45433334099999995,kg +ef1d9ec6-af3f-32bf-a26d-c00e23eb9582,SESCO,II.1.1,Tucuman,AR-T,annual,2010,naphtha combustion consumption by freight transport,0.15144444699999998,TJ,N2O,0.6,kg/TJ,0.09086666819999999,kg +bbdb0a3a-cde6-33ca-b268-afaa40a0936b,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,naphtha combustion consumption by freight transport,3.152126439,TJ,CO2,73300.0,kg/TJ,231050.8679787,kg +6f945280-a055-3294-bd58-1400f9b6aa2e,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,naphtha combustion consumption by freight transport,3.152126439,TJ,CH4,3.0,kg/TJ,9.456379317,kg +7e57dc9d-ae86-3e01-87a4-e8bd04986a85,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,naphtha combustion consumption by freight transport,3.152126439,TJ,N2O,0.6,kg/TJ,1.8912758633999998,kg +2f72d7a3-43ad-3f81-b84b-58626f6b448c,SESCO,II.1.1,Capital Federal,AR-C,annual,2010,naphtha combustion consumption by freight transport,15.996361688999999,TJ,CO2,73300.0,kg/TJ,1172533.3118037,kg +7999d89e-85c6-31b7-b4f4-6b432233ae8b,SESCO,II.1.1,Capital Federal,AR-C,annual,2010,naphtha combustion consumption by freight transport,15.996361688999999,TJ,CH4,3.0,kg/TJ,47.989085067,kg +3ed9e5ce-62a9-3b72-9079-99832e543e88,SESCO,II.1.1,Capital Federal,AR-C,annual,2010,naphtha combustion consumption by freight transport,15.996361688999999,TJ,N2O,0.6,kg/TJ,9.597817013399998,kg +ec8d705c-ad1b-3291-81f2-e9b5c3361efd,SESCO,II.1.1,Chaco,AR-H,annual,2010,naphtha combustion consumption by freight transport,0.011417098,TJ,CO2,73300.0,kg/TJ,836.8732834,kg +dd7dc02c-1739-3b96-ba4f-c397c8637e4f,SESCO,II.1.1,Chaco,AR-H,annual,2010,naphtha combustion consumption by freight transport,0.011417098,TJ,CH4,3.0,kg/TJ,0.034251294,kg +b1496e72-0663-3254-92e5-75544c55a430,SESCO,II.1.1,Chaco,AR-H,annual,2010,naphtha combustion consumption by freight transport,0.011417098,TJ,N2O,0.6,kg/TJ,0.0068502588,kg +3a106cf0-6864-3acd-88af-f9669d35c689,SESCO,II.1.1,Corrientes,AR-W,annual,2010,naphtha combustion consumption by freight transport,0.051376940999999995,TJ,CO2,73300.0,kg/TJ,3765.9297752999996,kg +5afb5e19-8d9d-3ec6-893a-86c901366c2d,SESCO,II.1.1,Corrientes,AR-W,annual,2010,naphtha combustion consumption by freight transport,0.051376940999999995,TJ,CH4,3.0,kg/TJ,0.15413082299999997,kg +920ec3c0-5a5b-3f1b-b53c-cb909fe67c1b,SESCO,II.1.1,Corrientes,AR-W,annual,2010,naphtha combustion consumption by freight transport,0.051376940999999995,TJ,N2O,0.6,kg/TJ,0.030826164599999997,kg +6cae6ebe-2a7b-3adf-9c70-c8cf2069fcef,SESCO,II.1.1,Córdoba,AR-X,annual,2010,naphtha combustion consumption by freight transport,0.2981877359999999,TJ,CO2,73300.0,kg/TJ,21857.161048799993,kg +90a77bc8-2430-3063-a588-9f83b4946535,SESCO,II.1.1,Córdoba,AR-X,annual,2010,naphtha combustion consumption by freight transport,0.2981877359999999,TJ,CH4,3.0,kg/TJ,0.8945632079999998,kg +21be30a3-f653-3099-bb87-84c043dc18db,SESCO,II.1.1,Córdoba,AR-X,annual,2010,naphtha combustion consumption by freight transport,0.2981877359999999,TJ,N2O,0.6,kg/TJ,0.17891264159999995,kg +ba0a51e2-d157-3986-a7fb-fe11ff3e9599,SESCO,II.1.1,Entre Rios,AR-E,annual,2010,naphtha combustion consumption by freight transport,1.113167055,TJ,CO2,73300.0,kg/TJ,81595.14513149999,kg +cc276340-36b2-3a45-9a54-a680cbe6c943,SESCO,II.1.1,Entre Rios,AR-E,annual,2010,naphtha combustion consumption by freight transport,1.113167055,TJ,CH4,3.0,kg/TJ,3.3395011649999997,kg +335f2e69-13b2-3281-b347-b5c04db10116,SESCO,II.1.1,Entre Rios,AR-E,annual,2010,naphtha combustion consumption by freight transport,1.113167055,TJ,N2O,0.6,kg/TJ,0.6679002329999999,kg +aca2c31a-387b-3b5d-ae72-dd2ea364f928,SESCO,II.1.1,Misiones,AR-N,annual,2010,naphtha combustion consumption by freight transport,0.023841586999999997,TJ,CO2,73300.0,kg/TJ,1747.5883270999998,kg +d569858d-05c7-380d-b066-495b7af37faf,SESCO,II.1.1,Misiones,AR-N,annual,2010,naphtha combustion consumption by freight transport,0.023841586999999997,TJ,CH4,3.0,kg/TJ,0.07152476099999999,kg +ef6b543e-97af-3127-b1c1-630924e4c371,SESCO,II.1.1,Misiones,AR-N,annual,2010,naphtha combustion consumption by freight transport,0.023841586999999997,TJ,N2O,0.6,kg/TJ,0.014304952199999998,kg +7c67438a-b996-34a0-94d7-f51e8e6f6084,SESCO,II.1.1,San Luis,AR-D,annual,2010,naphtha combustion consumption by freight transport,0.03022173,TJ,CO2,73300.0,kg/TJ,2215.252809,kg +9aa2ce30-86bf-3e59-a24c-0c6bbc00768c,SESCO,II.1.1,San Luis,AR-D,annual,2010,naphtha combustion consumption by freight transport,0.03022173,TJ,CH4,3.0,kg/TJ,0.09066518999999999,kg +46ddd026-1407-3678-852d-7463c8b7aa57,SESCO,II.1.1,San Luis,AR-D,annual,2010,naphtha combustion consumption by freight transport,0.03022173,TJ,N2O,0.6,kg/TJ,0.018133037999999997,kg +dbe22e38-4de4-3978-ba27-edf53950d285,SESCO,II.1.1,Santa Fe,AR-S,annual,2010,naphtha combustion consumption by freight transport,0.2810620889999999,TJ,CO2,73300.0,kg/TJ,20601.85112369999,kg +4591414e-52c3-3dfd-bf01-ca56a39c8289,SESCO,II.1.1,Santa Fe,AR-S,annual,2010,naphtha combustion consumption by freight transport,0.2810620889999999,TJ,CH4,3.0,kg/TJ,0.8431862669999997,kg +57f0c1a5-4625-3a69-aa81-f2f289d1efd4,SESCO,II.1.1,Santa Fe,AR-S,annual,2010,naphtha combustion consumption by freight transport,0.2810620889999999,TJ,N2O,0.6,kg/TJ,0.16863725339999994,kg +59b51742-9a61-3fa7-a7e5-b4c26bb64e64,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2010,naphtha combustion consumption by freight transport,0.185695741,TJ,CO2,73300.0,kg/TJ,13611.4978153,kg +2963c060-d4f0-33c0-bd25-c68cd7c52382,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2010,naphtha combustion consumption by freight transport,0.185695741,TJ,CH4,3.0,kg/TJ,0.557087223,kg +e9fa3444-b83a-3d66-a2da-4cf37a187755,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2010,naphtha combustion consumption by freight transport,0.185695741,TJ,N2O,0.6,kg/TJ,0.1114174446,kg +04ec98de-2ca2-3548-9aa5-2e9768679ca3,SESCO,II.1.1,Tucuman,AR-T,annual,2010,naphtha combustion consumption by freight transport,0.07286794899999999,TJ,CO2,73300.0,kg/TJ,5341.220661699999,kg +d873c3db-6d70-39cc-be6f-7033b4d055c8,SESCO,II.1.1,Tucuman,AR-T,annual,2010,naphtha combustion consumption by freight transport,0.07286794899999999,TJ,CH4,3.0,kg/TJ,0.21860384699999996,kg +fb4de40d-9975-3fe0-8cb3-758870d0915f,SESCO,II.1.1,Tucuman,AR-T,annual,2010,naphtha combustion consumption by freight transport,0.07286794899999999,TJ,N2O,0.6,kg/TJ,0.04372076939999999,kg +19450e44-3b14-3afb-a545-33da2ebb4b7e,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,naphtha combustion consumption by public passenger transport,0.20450037299999996,TJ,CO2,73300.0,kg/TJ,14989.877340899997,kg +8c64dea4-2ee5-353d-aee6-83b157513513,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,naphtha combustion consumption by public passenger transport,0.20450037299999996,TJ,CH4,3.0,kg/TJ,0.6135011189999999,kg +6bc5f8f0-d48c-3824-9123-c380feb7c1ef,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,naphtha combustion consumption by public passenger transport,0.20450037299999996,TJ,N2O,0.6,kg/TJ,0.12270022379999997,kg +6a310463-4582-3ea0-bae2-ee6a23517c72,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,naphtha combustion consumption by public passenger transport,142.555564613,TJ,CO2,73300.0,kg/TJ,10449322.8861329,kg +6786e7a5-2e05-3af2-9f30-1ba0fc96b87f,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,naphtha combustion consumption by public passenger transport,142.555564613,TJ,CH4,3.0,kg/TJ,427.666693839,kg +b4d63b76-69d2-33bc-8b8c-a9fd60656978,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,naphtha combustion consumption by public passenger transport,142.555564613,TJ,N2O,0.6,kg/TJ,85.5333387678,kg +89037811-0d32-3056-84e6-89f72338491c,SESCO,II.1.1,Capital Federal,AR-C,annual,2010,naphtha combustion consumption by public passenger transport,0.024848977999999997,TJ,CO2,73300.0,kg/TJ,1821.4300873999998,kg +40638139-f4c1-35ed-b981-6ab687ffb849,SESCO,II.1.1,Capital Federal,AR-C,annual,2010,naphtha combustion consumption by public passenger transport,0.024848977999999997,TJ,CH4,3.0,kg/TJ,0.074546934,kg +459b90dc-1ef2-3696-a71f-c38095fd83a8,SESCO,II.1.1,Capital Federal,AR-C,annual,2010,naphtha combustion consumption by public passenger transport,0.024848977999999997,TJ,N2O,0.6,kg/TJ,0.014909386799999997,kg +684fb8df-fde0-36f4-af0d-dd150560d914,SESCO,II.1.1,Córdoba,AR-X,annual,2010,naphtha combustion consumption by public passenger transport,0.03022173,TJ,CO2,73300.0,kg/TJ,2215.252809,kg +b7c8cfaa-c05b-32cc-9337-3a8824fddecf,SESCO,II.1.1,Córdoba,AR-X,annual,2010,naphtha combustion consumption by public passenger transport,0.03022173,TJ,CH4,3.0,kg/TJ,0.09066518999999999,kg +5f427d02-9e4d-351b-82a4-dbdb43f0e799,SESCO,II.1.1,Córdoba,AR-X,annual,2010,naphtha combustion consumption by public passenger transport,0.03022173,TJ,N2O,0.6,kg/TJ,0.018133037999999997,kg +e45392e3-b160-3acd-8abf-0d7cd1db216a,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,naphtha combustion consumption by public passenger transport,31.980970482999997,TJ,CO2,73300.0,kg/TJ,2344205.1364038996,kg +0af0e7ea-3234-37e0-a5ce-2e41e2c75f95,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,naphtha combustion consumption by public passenger transport,31.980970482999997,TJ,CH4,3.0,kg/TJ,95.942911449,kg +b6be48ae-2c5f-3fa5-bc2a-dc31882b261e,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,naphtha combustion consumption by public passenger transport,31.980970482999997,TJ,N2O,0.6,kg/TJ,19.188582289799996,kg +ec50dbb0-f89c-3b94-b8da-41af007e3f46,SESCO,II.1.1,Capital Federal,AR-C,annual,2010,naphtha combustion consumption by public passenger transport,0.42209682899999995,TJ,CO2,73300.0,kg/TJ,30939.697565699997,kg +edc8babe-0258-3013-bf0f-39a2cff2f36f,SESCO,II.1.1,Capital Federal,AR-C,annual,2010,naphtha combustion consumption by public passenger transport,0.42209682899999995,TJ,CH4,3.0,kg/TJ,1.2662904869999998,kg +32a486ab-9a28-3aa5-9ed9-cf256fae92b7,SESCO,II.1.1,Capital Federal,AR-C,annual,2010,naphtha combustion consumption by public passenger transport,0.42209682899999995,TJ,N2O,0.6,kg/TJ,0.25325809739999994,kg +d39bac5a-43fb-3ae9-a693-026907ebfad8,SESCO,II.1.1,Córdoba,AR-X,annual,2010,naphtha combustion consumption by public passenger transport,0.06950997899999999,TJ,CO2,73300.0,kg/TJ,5095.081460699999,kg +f878dafa-c85f-3216-a061-5e2bedd1c266,SESCO,II.1.1,Córdoba,AR-X,annual,2010,naphtha combustion consumption by public passenger transport,0.06950997899999999,TJ,CH4,3.0,kg/TJ,0.20852993699999994,kg +0f524179-d24d-35a5-8bbd-82d66c267fda,SESCO,II.1.1,Córdoba,AR-X,annual,2010,naphtha combustion consumption by public passenger transport,0.06950997899999999,TJ,N2O,0.6,kg/TJ,0.04170598739999999,kg +d3eb464c-ffc5-3a16-8890-2bb78013df28,SESCO,II.5.1,Buenos Aires,AR-B,annual,2010,naphtha combustion consumption by agriculture machines,6.9168809248,TJ,CO2,73300.0,kg/TJ,507007.37178784,kg +83c92526-c3c2-3876-9977-c93be78ec017,SESCO,II.5.1,Buenos Aires,AR-B,annual,2010,naphtha combustion consumption by agriculture machines,6.9168809248,TJ,CH4,3.0,kg/TJ,20.7506427744,kg +2dfe80dc-25af-326b-969b-3e35daf4d161,SESCO,II.5.1,Buenos Aires,AR-B,annual,2010,naphtha combustion consumption by agriculture machines,6.9168809248,TJ,N2O,0.6,kg/TJ,4.15012855488,kg +01e92027-122a-3f35-a639-b81b990f22b5,SESCO,II.5.1,Córdoba,AR-X,annual,2010,naphtha combustion consumption by agriculture machines,1.2935236236999998,TJ,CO2,73300.0,kg/TJ,94815.28161720998,kg +2ab2b216-9db5-3624-a8d2-e494dded0a67,SESCO,II.5.1,Córdoba,AR-X,annual,2010,naphtha combustion consumption by agriculture machines,1.2935236236999998,TJ,CH4,3.0,kg/TJ,3.8805708710999998,kg +b8db8b58-49f0-39f0-877c-f33d993a8c42,SESCO,II.5.1,Córdoba,AR-X,annual,2010,naphtha combustion consumption by agriculture machines,1.2935236236999998,TJ,N2O,0.6,kg/TJ,0.7761141742199998,kg +276e400e-a111-349f-a2e5-5c8a33b6d5cb,SESCO,II.5.1,La Pampa,AR-L,annual,2010,naphtha combustion consumption by agriculture machines,0.43804718649999996,TJ,CO2,73300.0,kg/TJ,32108.85877045,kg +1efee6be-693c-3a17-8287-997366514066,SESCO,II.5.1,La Pampa,AR-L,annual,2010,naphtha combustion consumption by agriculture machines,0.43804718649999996,TJ,CH4,3.0,kg/TJ,1.3141415595,kg +9d690e8a-8493-3d43-a5b0-30c8da344724,SESCO,II.5.1,La Pampa,AR-L,annual,2010,naphtha combustion consumption by agriculture machines,0.43804718649999996,TJ,N2O,0.6,kg/TJ,0.26282831189999994,kg +7ef15455-b8f9-3a7a-9b74-e4f6aa3c6a45,SESCO,II.5.1,San Luis,AR-D,annual,2010,naphtha combustion consumption by agriculture machines,12.558136205999999,TJ,CO2,73300.0,kg/TJ,920511.3838997999,kg +18c1d958-442f-3258-a501-3b6423eb7f05,SESCO,II.5.1,San Luis,AR-D,annual,2010,naphtha combustion consumption by agriculture machines,12.558136205999999,TJ,CH4,3.0,kg/TJ,37.674408617999994,kg +7e2e31fe-6e0d-3bcd-aa57-10dfeb05b749,SESCO,II.5.1,San Luis,AR-D,annual,2010,naphtha combustion consumption by agriculture machines,12.558136205999999,TJ,N2O,0.6,kg/TJ,7.534881723599999,kg +93ec917f-fa1b-3161-a600-5d324e3b3d8c,SESCO,II.5.1,Santa Fe,AR-S,annual,2010,naphtha combustion consumption by agriculture machines,2.1151853029999996,TJ,CO2,73300.0,kg/TJ,155043.0827099,kg +013ed95e-d6dc-3060-bcaa-96c2c84fa90e,SESCO,II.5.1,Santa Fe,AR-S,annual,2010,naphtha combustion consumption by agriculture machines,2.1151853029999996,TJ,CH4,3.0,kg/TJ,6.345555908999999,kg +36f93abd-7d06-3823-9784-6f8828461394,SESCO,II.5.1,Santa Fe,AR-S,annual,2010,naphtha combustion consumption by agriculture machines,2.1151853029999996,TJ,N2O,0.6,kg/TJ,1.2691111817999998,kg +d074524c-1eb9-3629-9a2f-7392a951fd48,SESCO,II.5.1,Santiago del Estero,AR-G,annual,2010,naphtha combustion consumption by agriculture machines,6.870406619999999,TJ,CO2,73300.0,kg/TJ,503600.80524599995,kg +4b1ee94c-0bc4-39ae-8618-30833c022379,SESCO,II.5.1,Santiago del Estero,AR-G,annual,2010,naphtha combustion consumption by agriculture machines,6.870406619999999,TJ,CH4,3.0,kg/TJ,20.61121986,kg +46273899-ceca-397a-807c-f223989ce2f7,SESCO,II.5.1,Santiago del Estero,AR-G,annual,2010,naphtha combustion consumption by agriculture machines,6.870406619999999,TJ,N2O,0.6,kg/TJ,4.122243971999999,kg +c61c30f6-2644-3209-bca2-8360f2a31bd2,SESCO,II.5.1,Santa Fe,AR-S,annual,2010,naphtha combustion consumption by agriculture machines,0.8263628372999999,TJ,CO2,73300.0,kg/TJ,60572.395974089995,kg +c84b3747-091f-306e-b9aa-f7f4745cb228,SESCO,II.5.1,Santa Fe,AR-S,annual,2010,naphtha combustion consumption by agriculture machines,0.8263628372999999,TJ,CH4,3.0,kg/TJ,2.4790885118999997,kg +b705d581-50e7-3497-9630-7bf4e91626dc,SESCO,II.5.1,Santa Fe,AR-S,annual,2010,naphtha combustion consumption by agriculture machines,0.8263628372999999,TJ,N2O,0.6,kg/TJ,0.49581770237999995,kg +f6d1759e-65b2-36c2-b96b-1011b57339e2,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,naphtha combustion consumption by to the public,644.3540466208999,TJ,CO2,73300.0,kg/TJ,47231151.61731196,kg +17ceba55-3664-3120-9ca5-f92ceb974065,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,naphtha combustion consumption by to the public,644.3540466208999,TJ,CH4,3.0,kg/TJ,1933.0621398626997,kg +503da9fa-be60-3a00-86f4-fbce95fa19da,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,naphtha combustion consumption by to the public,644.3540466208999,TJ,N2O,0.6,kg/TJ,386.61242797253993,kg +666d63cc-02bd-31fd-9748-1069e615276a,SESCO,II.1.1,Capital Federal,AR-C,annual,2010,naphtha combustion consumption by to the public,0.49459540129999996,TJ,CO2,73300.0,kg/TJ,36253.84291529,kg +ea88abed-33b5-32b5-928c-1413919d38d6,SESCO,II.1.1,Capital Federal,AR-C,annual,2010,naphtha combustion consumption by to the public,0.49459540129999996,TJ,CH4,3.0,kg/TJ,1.4837862038999998,kg +85d94753-706b-31f2-a65b-867a7aed814f,SESCO,II.1.1,Capital Federal,AR-C,annual,2010,naphtha combustion consumption by to the public,0.49459540129999996,TJ,N2O,0.6,kg/TJ,0.29675724078,kg +52750e0f-692e-38c6-a6c5-f199480424e8,SESCO,II.1.1,Chaco,AR-H,annual,2010,naphtha combustion consumption by to the public,12.146314765199998,TJ,CO2,73300.0,kg/TJ,890324.8722891598,kg +9b7d70e2-a833-361f-bc4f-0ff470c499ac,SESCO,II.1.1,Chaco,AR-H,annual,2010,naphtha combustion consumption by to the public,12.146314765199998,TJ,CH4,3.0,kg/TJ,36.438944295599995,kg +ee8e277f-c7ad-39f5-8e20-6515e3383bcb,SESCO,II.1.1,Chaco,AR-H,annual,2010,naphtha combustion consumption by to the public,12.146314765199998,TJ,N2O,0.6,kg/TJ,7.287788859119998,kg +1960582d-1162-33f7-bc4b-62e639b00383,SESCO,II.1.1,Chubut,AR-U,annual,2010,naphtha combustion consumption by to the public,114.26738731869999,TJ,CO2,73300.0,kg/TJ,8375799.490460709,kg +02808f9b-2c19-3287-b28a-38888aa2db0e,SESCO,II.1.1,Chubut,AR-U,annual,2010,naphtha combustion consumption by to the public,114.26738731869999,TJ,CH4,3.0,kg/TJ,342.80216195609995,kg +a949b0c3-9f55-3cd6-b98c-a4c8b2942df0,SESCO,II.1.1,Chubut,AR-U,annual,2010,naphtha combustion consumption by to the public,114.26738731869999,TJ,N2O,0.6,kg/TJ,68.56043239121999,kg +2c8b08f0-bfcb-3efc-a7c2-0b21235c1520,SESCO,II.1.1,Corrientes,AR-W,annual,2010,naphtha combustion consumption by to the public,13.576574927299998,TJ,CO2,73300.0,kg/TJ,995162.9421710898,kg +4d616296-e94b-3c13-b7e1-c9acca82a040,SESCO,II.1.1,Corrientes,AR-W,annual,2010,naphtha combustion consumption by to the public,13.576574927299998,TJ,CH4,3.0,kg/TJ,40.72972478189999,kg +b9c98edb-1026-3d5a-bf3c-9448a50a622a,SESCO,II.1.1,Corrientes,AR-W,annual,2010,naphtha combustion consumption by to the public,13.576574927299998,TJ,N2O,0.6,kg/TJ,8.145944956379997,kg +b3451b14-85ae-3e1f-a068-ba82e678bf7b,SESCO,II.1.1,Entre Rios,AR-E,annual,2010,naphtha combustion consumption by to the public,52.27338467119999,TJ,CO2,73300.0,kg/TJ,3831639.0963989594,kg +8a7fde9a-d365-3158-b45d-ba3e02a9c5d9,SESCO,II.1.1,Entre Rios,AR-E,annual,2010,naphtha combustion consumption by to the public,52.27338467119999,TJ,CH4,3.0,kg/TJ,156.82015401359996,kg +b187c0db-bda5-390d-99c1-8c1c84458ac7,SESCO,II.1.1,Entre Rios,AR-E,annual,2010,naphtha combustion consumption by to the public,52.27338467119999,TJ,N2O,0.6,kg/TJ,31.364030802719995,kg +a552e574-4b5f-3aa7-b4da-6a56ee4a0b85,SESCO,II.1.1,La Pampa,AR-L,annual,2010,naphtha combustion consumption by to the public,20.029216499599997,TJ,CO2,73300.0,kg/TJ,1468141.5694206797,kg +1a81f05e-b1c5-380f-a82a-e042953c384c,SESCO,II.1.1,La Pampa,AR-L,annual,2010,naphtha combustion consumption by to the public,20.029216499599997,TJ,CH4,3.0,kg/TJ,60.08764949879999,kg +9b260b20-ffa5-3c88-9067-dcb84ebe2fa9,SESCO,II.1.1,La Pampa,AR-L,annual,2010,naphtha combustion consumption by to the public,20.029216499599997,TJ,N2O,0.6,kg/TJ,12.017529899759998,kg +1ff27852-c643-3489-a3b8-9e32041f28aa,SESCO,II.1.1,Misiones,AR-N,annual,2010,naphtha combustion consumption by to the public,41.0162939417,TJ,CO2,73300.0,kg/TJ,3006494.34592661,kg +2ba9bcb3-3dc7-35bb-978b-11d570750c70,SESCO,II.1.1,Misiones,AR-N,annual,2010,naphtha combustion consumption by to the public,41.0162939417,TJ,CH4,3.0,kg/TJ,123.0488818251,kg +4aa305b9-f0fe-3b0a-874e-61708ec5a981,SESCO,II.1.1,Misiones,AR-N,annual,2010,naphtha combustion consumption by to the public,41.0162939417,TJ,N2O,0.6,kg/TJ,24.60977636502,kg +04fe5b1f-ea10-30de-8d7f-bf8bcd750080,SESCO,II.1.1,Neuquén,AR-Q,annual,2010,naphtha combustion consumption by to the public,58.81534824549999,TJ,CO2,73300.0,kg/TJ,4311165.0263951495,kg +3c2db6a5-948d-3573-82dd-3373f6ceda52,SESCO,II.1.1,Neuquén,AR-Q,annual,2010,naphtha combustion consumption by to the public,58.81534824549999,TJ,CH4,3.0,kg/TJ,176.44604473649997,kg +86e96882-9cc6-3e06-942d-c3058c8d984c,SESCO,II.1.1,Neuquén,AR-Q,annual,2010,naphtha combustion consumption by to the public,58.81534824549999,TJ,N2O,0.6,kg/TJ,35.28920894729999,kg +43638a41-522c-3bd2-9b3f-1d2b8c76b9ec,SESCO,II.1.1,Rio Negro,AR-R,annual,2010,naphtha combustion consumption by to the public,202.03333960039998,TJ,CO2,73300.0,kg/TJ,14809043.792709319,kg +45714e1a-7687-3607-b20f-3facb6e24eff,SESCO,II.1.1,Rio Negro,AR-R,annual,2010,naphtha combustion consumption by to the public,202.03333960039998,TJ,CH4,3.0,kg/TJ,606.1000188011999,kg +a10732c2-4e42-3691-871e-b3dba4e950b1,SESCO,II.1.1,Rio Negro,AR-R,annual,2010,naphtha combustion consumption by to the public,202.03333960039998,TJ,N2O,0.6,kg/TJ,121.22000376023999,kg +7a8e1fa3-5aab-3093-b31a-ca830ce77675,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2010,naphtha combustion consumption by to the public,37.80990270749999,TJ,CO2,73300.0,kg/TJ,2771465.868459749,kg +b43ec4cb-7857-35ba-9472-8ac786c861a7,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2010,naphtha combustion consumption by to the public,37.80990270749999,TJ,CH4,3.0,kg/TJ,113.42970812249996,kg +f26b07bf-f698-39e0-8e49-33e1fbedf8c2,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2010,naphtha combustion consumption by to the public,37.80990270749999,TJ,N2O,0.6,kg/TJ,22.685941624499993,kg +9cc12e31-3d3c-3b18-b7a3-901bce4f5b90,SESCO,II.1.1,Santa Fe,AR-S,annual,2010,naphtha combustion consumption by to the public,37.7641671561,TJ,CO2,73300.0,kg/TJ,2768113.45254213,kg +389a88ce-229c-3ff9-ad93-8cb3b082dfa3,SESCO,II.1.1,Santa Fe,AR-S,annual,2010,naphtha combustion consumption by to the public,37.7641671561,TJ,CH4,3.0,kg/TJ,113.2925014683,kg +c4707624-e059-3ddf-9378-5b8f488f77e6,SESCO,II.1.1,Santa Fe,AR-S,annual,2010,naphtha combustion consumption by to the public,37.7641671561,TJ,N2O,0.6,kg/TJ,22.65850029366,kg +1a28963c-1945-305e-8c7b-81941344e48c,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,naphtha combustion consumption by to the public,6547.4335731112,TJ,CO2,73300.0,kg/TJ,479926880.90905094,kg +cd62da81-b29b-3ced-90b8-ba2e351874b5,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,naphtha combustion consumption by to the public,6547.4335731112,TJ,CH4,3.0,kg/TJ,19642.300719333598,kg +b7a9d220-dad4-3ec5-8426-4fb0675637f5,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,naphtha combustion consumption by to the public,6547.4335731112,TJ,N2O,0.6,kg/TJ,3928.4601438667196,kg +1b51070c-daa3-3ac2-8160-ef2b3280b661,SESCO,II.1.1,Capital Federal,AR-C,annual,2010,naphtha combustion consumption by to the public,1062.7817561207,TJ,CO2,73300.0,kg/TJ,77901902.72364731,kg +f970c7b9-abbf-3fef-9820-56e4f075db9f,SESCO,II.1.1,Capital Federal,AR-C,annual,2010,naphtha combustion consumption by to the public,1062.7817561207,TJ,CH4,3.0,kg/TJ,3188.3452683621,kg +d984ac0c-7dd5-3a94-b7f8-c8980c6d8fd9,SESCO,II.1.1,Capital Federal,AR-C,annual,2010,naphtha combustion consumption by to the public,1062.7817561207,TJ,N2O,0.6,kg/TJ,637.66905367242,kg +0f3f911b-db57-3e71-aa37-7df4b4eb07e1,SESCO,II.1.1,Catamarca,AR-K,annual,2010,naphtha combustion consumption by to the public,168.2839613763,TJ,CO2,73300.0,kg/TJ,12335214.36888279,kg +45d2d3fa-2607-3bb8-8c3d-347b57e17a62,SESCO,II.1.1,Catamarca,AR-K,annual,2010,naphtha combustion consumption by to the public,168.2839613763,TJ,CH4,3.0,kg/TJ,504.8518841289,kg +16304275-8ebb-3e3c-bdda-cdccb1badbc8,SESCO,II.1.1,Catamarca,AR-K,annual,2010,naphtha combustion consumption by to the public,168.2839613763,TJ,N2O,0.6,kg/TJ,100.97037682578,kg +1e521e92-a439-36eb-b6c1-de7043eec2f8,SESCO,II.1.1,Chaco,AR-H,annual,2010,naphtha combustion consumption by to the public,384.8499571223999,TJ,CO2,73300.0,kg/TJ,28209501.857071914,kg +6bc6e436-97dd-369c-8462-3308a4b495ed,SESCO,II.1.1,Chaco,AR-H,annual,2010,naphtha combustion consumption by to the public,384.8499571223999,TJ,CH4,3.0,kg/TJ,1154.5498713671998,kg +12b6a3c2-6a1e-38e3-9cf6-eaa825aa94d6,SESCO,II.1.1,Chaco,AR-H,annual,2010,naphtha combustion consumption by to the public,384.8499571223999,TJ,N2O,0.6,kg/TJ,230.90997427343996,kg +737151d0-e052-3eba-a1b8-1de2cc92f460,SESCO,II.1.1,Chubut,AR-U,annual,2010,naphtha combustion consumption by to the public,1454.8262647071997,TJ,CO2,73300.0,kg/TJ,106638765.20303774,kg +9811d3e3-97b1-3ce1-a980-203807637af8,SESCO,II.1.1,Chubut,AR-U,annual,2010,naphtha combustion consumption by to the public,1454.8262647071997,TJ,CH4,3.0,kg/TJ,4364.478794121599,kg +fe0b91c8-fb0d-3121-a058-149486ac0643,SESCO,II.1.1,Chubut,AR-U,annual,2010,naphtha combustion consumption by to the public,1454.8262647071997,TJ,N2O,0.6,kg/TJ,872.8957588243198,kg +a826f09d-07b9-361b-892a-6d2886f1a52b,SESCO,II.1.1,Corrientes,AR-W,annual,2010,naphtha combustion consumption by to the public,438.51814179249993,TJ,CO2,73300.0,kg/TJ,32143379.793390244,kg +9401dc09-52cf-3d6b-aca0-9b0c2f12ba54,SESCO,II.1.1,Corrientes,AR-W,annual,2010,naphtha combustion consumption by to the public,438.51814179249993,TJ,CH4,3.0,kg/TJ,1315.5544253774997,kg +5bc541b1-58c8-3c51-bee6-45156c06cefe,SESCO,II.1.1,Corrientes,AR-W,annual,2010,naphtha combustion consumption by to the public,438.51814179249993,TJ,N2O,0.6,kg/TJ,263.11088507549994,kg +23179bd4-124e-30af-876c-ff158bf3f11e,SESCO,II.1.1,Córdoba,AR-X,annual,2010,naphtha combustion consumption by to the public,1641.2328543765,TJ,CO2,73300.0,kg/TJ,120302368.22579744,kg +e587e990-479f-376a-b95e-d61136b84daa,SESCO,II.1.1,Córdoba,AR-X,annual,2010,naphtha combustion consumption by to the public,1641.2328543765,TJ,CH4,3.0,kg/TJ,4923.6985631295,kg +9525d046-8551-355a-b8e3-3b01d0a88c39,SESCO,II.1.1,Córdoba,AR-X,annual,2010,naphtha combustion consumption by to the public,1641.2328543765,TJ,N2O,0.6,kg/TJ,984.7397126259,kg +b627a42b-7102-3cec-9ce5-7b65ab44fb97,SESCO,II.1.1,Entre Rios,AR-E,annual,2010,naphtha combustion consumption by to the public,562.6494988267999,TJ,CO2,73300.0,kg/TJ,41242208.26400443,kg +72cd1b94-2494-366e-9d16-b4761aeeb33c,SESCO,II.1.1,Entre Rios,AR-E,annual,2010,naphtha combustion consumption by to the public,562.6494988267999,TJ,CH4,3.0,kg/TJ,1687.9484964803996,kg +fa233bc0-d3c9-3dab-9b71-1f9c8353df4b,SESCO,II.1.1,Entre Rios,AR-E,annual,2010,naphtha combustion consumption by to the public,562.6494988267999,TJ,N2O,0.6,kg/TJ,337.5896992960799,kg +187275e7-dc06-3220-9d44-aadd1f7929c0,SESCO,II.1.1,Formosa,AR-P,annual,2010,naphtha combustion consumption by to the public,66.860876467,TJ,CO2,73300.0,kg/TJ,4900902.2450311,kg +33f73d21-d673-3a81-8898-924d9231dc14,SESCO,II.1.1,Formosa,AR-P,annual,2010,naphtha combustion consumption by to the public,66.860876467,TJ,CH4,3.0,kg/TJ,200.582629401,kg +78324f0c-dc3c-39a0-ba5e-6bd7ac9d6414,SESCO,II.1.1,Formosa,AR-P,annual,2010,naphtha combustion consumption by to the public,66.860876467,TJ,N2O,0.6,kg/TJ,40.116525880199994,kg +f060990a-aa0e-3984-bcee-451d67679710,SESCO,II.1.1,Jujuy,AR-Y,annual,2010,naphtha combustion consumption by to the public,19.770014795299996,TJ,CO2,73300.0,kg/TJ,1449142.0844954897,kg +8f2751d8-6be0-375e-8929-f644f5a345a7,SESCO,II.1.1,Jujuy,AR-Y,annual,2010,naphtha combustion consumption by to the public,19.770014795299996,TJ,CH4,3.0,kg/TJ,59.310044385899985,kg +95dd6fc9-51d3-3851-9042-6f83b667167a,SESCO,II.1.1,Jujuy,AR-Y,annual,2010,naphtha combustion consumption by to the public,19.770014795299996,TJ,N2O,0.6,kg/TJ,11.862008877179997,kg +b810d8de-42a6-303f-893e-78ff32f61871,SESCO,II.1.1,La Pampa,AR-L,annual,2010,naphtha combustion consumption by to the public,197.17371899609998,TJ,CO2,73300.0,kg/TJ,14452833.60241413,kg +cfbc7563-d286-3e9d-8f98-cb6f5df255c6,SESCO,II.1.1,La Pampa,AR-L,annual,2010,naphtha combustion consumption by to the public,197.17371899609998,TJ,CH4,3.0,kg/TJ,591.5211569882999,kg +a3390299-5eb7-3256-b86f-6e7b960d0aea,SESCO,II.1.1,La Pampa,AR-L,annual,2010,naphtha combustion consumption by to the public,197.17371899609998,TJ,N2O,0.6,kg/TJ,118.30423139765998,kg +e726501d-374a-3dfd-a10b-d90a4306cb60,SESCO,II.1.1,La Rioja,AR-F,annual,2010,naphtha combustion consumption by to the public,105.98565948739999,TJ,CO2,73300.0,kg/TJ,7768748.840426419,kg +24ae60f1-e882-3bcf-9ac4-436cb191fa1a,SESCO,II.1.1,La Rioja,AR-F,annual,2010,naphtha combustion consumption by to the public,105.98565948739999,TJ,CH4,3.0,kg/TJ,317.95697846219997,kg +e4995416-9b94-3ac7-bb10-ea440f416852,SESCO,II.1.1,La Rioja,AR-F,annual,2010,naphtha combustion consumption by to the public,105.98565948739999,TJ,N2O,0.6,kg/TJ,63.59139569243999,kg +3a21c929-ccb6-3203-a55a-85f3703f87e3,SESCO,II.1.1,Mendoza,AR-M,annual,2010,naphtha combustion consumption by to the public,368.8596397793999,TJ,CO2,73300.0,kg/TJ,27037411.595830012,kg +3997df19-10af-3041-92d5-e8aebbb321b0,SESCO,II.1.1,Mendoza,AR-M,annual,2010,naphtha combustion consumption by to the public,368.8596397793999,TJ,CH4,3.0,kg/TJ,1106.5789193381997,kg +ccb73a24-1f76-3a15-9879-db1138542b80,SESCO,II.1.1,Mendoza,AR-M,annual,2010,naphtha combustion consumption by to the public,368.8596397793999,TJ,N2O,0.6,kg/TJ,221.31578386763994,kg +692a3cab-0dec-36b4-8621-4257f8d0f3fc,SESCO,II.1.1,Misiones,AR-N,annual,2010,naphtha combustion consumption by to the public,146.0109493227,TJ,CO2,73300.0,kg/TJ,10702602.585353909,kg +61206251-25d7-35af-8a9d-f1577a951ad8,SESCO,II.1.1,Misiones,AR-N,annual,2010,naphtha combustion consumption by to the public,146.0109493227,TJ,CH4,3.0,kg/TJ,438.0328479681,kg +c4424bde-941a-3c24-8c25-9c5760910045,SESCO,II.1.1,Misiones,AR-N,annual,2010,naphtha combustion consumption by to the public,146.0109493227,TJ,N2O,0.6,kg/TJ,87.60656959362,kg +6eec445e-3743-32f2-a18e-5df8f27af667,SESCO,II.1.1,Neuquén,AR-Q,annual,2010,naphtha combustion consumption by to the public,555.8586760958,TJ,CO2,73300.0,kg/TJ,40744440.95782214,kg +563a26d9-2672-3dac-83f8-9a8f40830870,SESCO,II.1.1,Neuquén,AR-Q,annual,2010,naphtha combustion consumption by to the public,555.8586760958,TJ,CH4,3.0,kg/TJ,1667.5760282873998,kg +083049b7-a926-3e82-b56e-e510404e6b61,SESCO,II.1.1,Neuquén,AR-Q,annual,2010,naphtha combustion consumption by to the public,555.8586760958,TJ,N2O,0.6,kg/TJ,333.51520565747995,kg +856a48bf-7de6-3c37-abba-fc33552b1ffc,SESCO,II.1.1,Rio Negro,AR-R,annual,2010,naphtha combustion consumption by to the public,1035.0816936922,TJ,CO2,73300.0,kg/TJ,75871488.14763825,kg +81847fed-90cf-304c-a4e6-8f4facb3c7e7,SESCO,II.1.1,Rio Negro,AR-R,annual,2010,naphtha combustion consumption by to the public,1035.0816936922,TJ,CH4,3.0,kg/TJ,3105.2450810765995,kg +16ba0c55-2f5c-3d6e-aa7c-db1a4c90ee11,SESCO,II.1.1,Rio Negro,AR-R,annual,2010,naphtha combustion consumption by to the public,1035.0816936922,TJ,N2O,0.6,kg/TJ,621.04901621532,kg +0706d463-482f-3fbf-ac53-c9d6904d3f92,SESCO,II.1.1,Salta,AR-A,annual,2010,naphtha combustion consumption by to the public,37.491365673299995,TJ,CO2,73300.0,kg/TJ,2748117.1038528895,kg +5d625f0e-aad2-373c-aac2-9cfed20e811c,SESCO,II.1.1,Salta,AR-A,annual,2010,naphtha combustion consumption by to the public,37.491365673299995,TJ,CH4,3.0,kg/TJ,112.47409701989999,kg +8892b91c-eba5-39e8-9604-a461f4411bb8,SESCO,II.1.1,Salta,AR-A,annual,2010,naphtha combustion consumption by to the public,37.491365673299995,TJ,N2O,0.6,kg/TJ,22.494819403979996,kg +1cadaf2f-167d-3403-aba4-8ceee4884896,SESCO,II.1.1,San Juan,AR-J,annual,2010,naphtha combustion consumption by to the public,248.4059650688,TJ,CO2,73300.0,kg/TJ,18208157.23954304,kg +a48b14e9-a647-3c64-b527-f3561be23eac,SESCO,II.1.1,San Juan,AR-J,annual,2010,naphtha combustion consumption by to the public,248.4059650688,TJ,CH4,3.0,kg/TJ,745.2178952063999,kg +7b87c5cf-5738-3751-8cdd-d097cfb51b60,SESCO,II.1.1,San Juan,AR-J,annual,2010,naphtha combustion consumption by to the public,248.4059650688,TJ,N2O,0.6,kg/TJ,149.04357904128,kg +680bcc06-b70a-3199-b0b2-b73d4d7a0e7b,SESCO,II.1.1,San Luis,AR-D,annual,2010,naphtha combustion consumption by to the public,112.74639480719999,TJ,CO2,73300.0,kg/TJ,8264310.73936776,kg +4dd2fbf6-a313-3acd-96b6-91e571f6e800,SESCO,II.1.1,San Luis,AR-D,annual,2010,naphtha combustion consumption by to the public,112.74639480719999,TJ,CH4,3.0,kg/TJ,338.2391844216,kg +b718fe68-93de-358c-b652-ee0d89d49403,SESCO,II.1.1,San Luis,AR-D,annual,2010,naphtha combustion consumption by to the public,112.74639480719999,TJ,N2O,0.6,kg/TJ,67.64783688431999,kg +ea20bc90-9ba2-3f88-a324-611293b9f5a1,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2010,naphtha combustion consumption by to the public,1013.0419933941998,TJ,CO2,73300.0,kg/TJ,74255978.11579485,kg +f1f90194-b4e9-3bad-b9f2-8b15a9f0c8b1,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2010,naphtha combustion consumption by to the public,1013.0419933941998,TJ,CH4,3.0,kg/TJ,3039.1259801825995,kg +220ddca4-3245-3240-ac07-920d7917eef9,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2010,naphtha combustion consumption by to the public,1013.0419933941998,TJ,N2O,0.6,kg/TJ,607.8251960365199,kg +5078261d-8052-3691-8d8c-6dfb69ce0553,SESCO,II.1.1,Santa Fe,AR-S,annual,2010,naphtha combustion consumption by to the public,1763.3657827246998,TJ,CO2,73300.0,kg/TJ,129254711.8737205,kg +a4c67eb4-42ac-36af-8107-889ff6de20b5,SESCO,II.1.1,Santa Fe,AR-S,annual,2010,naphtha combustion consumption by to the public,1763.3657827246998,TJ,CH4,3.0,kg/TJ,5290.097348174099,kg +31aef919-81b2-3922-b67d-ebace4d6a782,SESCO,II.1.1,Santa Fe,AR-S,annual,2010,naphtha combustion consumption by to the public,1763.3657827246998,TJ,N2O,0.6,kg/TJ,1058.0194696348199,kg +26697419-9b5e-3eea-b2d5-e6d569382627,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2010,naphtha combustion consumption by to the public,149.7044141054,TJ,CO2,73300.0,kg/TJ,10973333.55392582,kg +116a7663-6bd8-368d-b800-4ddc69622810,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2010,naphtha combustion consumption by to the public,149.7044141054,TJ,CH4,3.0,kg/TJ,449.11324231619994,kg +bb05a4b0-2d81-3a94-bad3-18aa418950bd,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2010,naphtha combustion consumption by to the public,149.7044141054,TJ,N2O,0.6,kg/TJ,89.82264846323999,kg +e2fb273b-7e93-3ba4-a6b2-b632a7dd315e,SESCO,II.1.1,Tucuman,AR-T,annual,2010,naphtha combustion consumption by to the public,217.73396487149998,TJ,CO2,73300.0,kg/TJ,15959899.625080949,kg +cbca3d0e-c300-3299-bbe4-6c1077560312,SESCO,II.1.1,Tucuman,AR-T,annual,2010,naphtha combustion consumption by to the public,217.73396487149998,TJ,CH4,3.0,kg/TJ,653.2018946144999,kg +9e26da91-1c25-39b9-999a-8ccc52b78a11,SESCO,II.1.1,Tucuman,AR-T,annual,2010,naphtha combustion consumption by to the public,217.73396487149998,TJ,N2O,0.6,kg/TJ,130.64037892289997,kg +8e68fb5f-601f-34f4-8d80-efa743df3b5b,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,naphtha combustion consumption by to the public,1352.9192627412,TJ,CO2,73300.0,kg/TJ,99168981.95892997,kg +11e10926-5566-3c93-b5fb-440ee0b1970a,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,naphtha combustion consumption by to the public,1352.9192627412,TJ,CH4,3.0,kg/TJ,4058.7577882236,kg +4f276248-fd77-3b1e-b9fd-22a557a50d36,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,naphtha combustion consumption by to the public,1352.9192627412,TJ,N2O,0.6,kg/TJ,811.75155764472,kg +c8d434d9-f009-30fc-b7db-a40d5c1706d4,SESCO,II.1.1,Capital Federal,AR-C,annual,2010,naphtha combustion consumption by to the public,275.57785239599997,TJ,CO2,73300.0,kg/TJ,20199856.580626797,kg +dcef1b59-3bea-33d2-8d50-06cfd7f9d229,SESCO,II.1.1,Capital Federal,AR-C,annual,2010,naphtha combustion consumption by to the public,275.57785239599997,TJ,CH4,3.0,kg/TJ,826.7335571879998,kg +24c3b7ea-03f8-3c11-adbb-a845a4ece9c9,SESCO,II.1.1,Capital Federal,AR-C,annual,2010,naphtha combustion consumption by to the public,275.57785239599997,TJ,N2O,0.6,kg/TJ,165.34671143759996,kg +38a28dec-9d48-3004-952b-e7d02805e7b4,SESCO,II.1.1,Catamarca,AR-K,annual,2010,naphtha combustion consumption by to the public,17.681861150799996,TJ,CO2,73300.0,kg/TJ,1296080.4223536397,kg +1d24a07e-bb54-36d6-a848-700804fd6441,SESCO,II.1.1,Catamarca,AR-K,annual,2010,naphtha combustion consumption by to the public,17.681861150799996,TJ,CH4,3.0,kg/TJ,53.04558345239999,kg +50fdf5b0-1e3c-3050-ad3b-0b890295bf4a,SESCO,II.1.1,Catamarca,AR-K,annual,2010,naphtha combustion consumption by to the public,17.681861150799996,TJ,N2O,0.6,kg/TJ,10.609116690479997,kg +05fa61ee-b854-3cbf-b9d7-3b44b6facfbd,SESCO,II.1.1,Chaco,AR-H,annual,2010,naphtha combustion consumption by to the public,25.227454798699995,TJ,CO2,73300.0,kg/TJ,1849172.4367447097,kg +85a09c16-5088-3c15-b560-b3d8e33540d0,SESCO,II.1.1,Chaco,AR-H,annual,2010,naphtha combustion consumption by to the public,25.227454798699995,TJ,CH4,3.0,kg/TJ,75.68236439609998,kg +845ec121-45e9-3a17-908d-2428bf34141c,SESCO,II.1.1,Chaco,AR-H,annual,2010,naphtha combustion consumption by to the public,25.227454798699995,TJ,N2O,0.6,kg/TJ,15.136472879219996,kg +45411856-d339-375b-b5a8-2191c1e41481,SESCO,II.1.1,Chubut,AR-U,annual,2010,naphtha combustion consumption by to the public,196.82539676799996,TJ,CO2,73300.0,kg/TJ,14427301.583094398,kg +c03324a9-c7e0-303e-b792-abe629e08b59,SESCO,II.1.1,Chubut,AR-U,annual,2010,naphtha combustion consumption by to the public,196.82539676799996,TJ,CH4,3.0,kg/TJ,590.4761903039998,kg +812597c9-ddc5-3da1-b120-72cfe6271334,SESCO,II.1.1,Chubut,AR-U,annual,2010,naphtha combustion consumption by to the public,196.82539676799996,TJ,N2O,0.6,kg/TJ,118.09523806079997,kg +394887eb-f5b8-3438-922e-aa5838b0fe0e,SESCO,II.1.1,Corrientes,AR-W,annual,2010,naphtha combustion consumption by to the public,44.0723152793,TJ,CO2,73300.0,kg/TJ,3230500.70997269,kg +7c9ff56a-fcfb-3a8e-abc0-7fd3457c4128,SESCO,II.1.1,Corrientes,AR-W,annual,2010,naphtha combustion consumption by to the public,44.0723152793,TJ,CH4,3.0,kg/TJ,132.2169458379,kg +19b227ad-944a-3359-a52c-2a1be945a2aa,SESCO,II.1.1,Corrientes,AR-W,annual,2010,naphtha combustion consumption by to the public,44.0723152793,TJ,N2O,0.6,kg/TJ,26.443389167579998,kg +35939a01-4ee5-3160-a8e5-aaad99461408,SESCO,II.1.1,Córdoba,AR-X,annual,2010,naphtha combustion consumption by to the public,282.0722671151,TJ,CO2,73300.0,kg/TJ,20675897.179536827,kg +84ca895e-b5cf-3fab-8796-304842fc3de2,SESCO,II.1.1,Córdoba,AR-X,annual,2010,naphtha combustion consumption by to the public,282.0722671151,TJ,CH4,3.0,kg/TJ,846.2168013452999,kg +efa7bd51-9b6f-301c-80c9-83f3c148c73d,SESCO,II.1.1,Córdoba,AR-X,annual,2010,naphtha combustion consumption by to the public,282.0722671151,TJ,N2O,0.6,kg/TJ,169.24336026906,kg +ef724f0e-e926-3bd5-b73b-184dc5ee9d5b,SESCO,II.1.1,Entre Rios,AR-E,annual,2010,naphtha combustion consumption by to the public,80.38254858479999,TJ,CO2,73300.0,kg/TJ,5892040.811265839,kg +875ef23a-a577-3864-9ecf-bcf3e49aa92b,SESCO,II.1.1,Entre Rios,AR-E,annual,2010,naphtha combustion consumption by to the public,80.38254858479999,TJ,CH4,3.0,kg/TJ,241.14764575439997,kg +16184c66-a5e0-362b-ae97-c9639eb6db94,SESCO,II.1.1,Entre Rios,AR-E,annual,2010,naphtha combustion consumption by to the public,80.38254858479999,TJ,N2O,0.6,kg/TJ,48.22952915087999,kg +7820a56b-c7a2-3506-ab62-eeebe7fe1bc9,SESCO,II.1.1,Jujuy,AR-Y,annual,2010,naphtha combustion consumption by to the public,1.8010807892,TJ,CO2,73300.0,kg/TJ,132019.22184836,kg +8d93c746-a7de-3d6d-b91a-b9a89d636198,SESCO,II.1.1,Jujuy,AR-Y,annual,2010,naphtha combustion consumption by to the public,1.8010807892,TJ,CH4,3.0,kg/TJ,5.4032423676,kg +2a3f5889-25f0-35f6-9bb7-62e95c81552f,SESCO,II.1.1,Jujuy,AR-Y,annual,2010,naphtha combustion consumption by to the public,1.8010807892,TJ,N2O,0.6,kg/TJ,1.08064847352,kg +2117e4b0-4950-36fe-aef1-e708f214dc8f,SESCO,II.1.1,La Pampa,AR-L,annual,2010,naphtha combustion consumption by to the public,40.482208813199996,TJ,CO2,73300.0,kg/TJ,2967345.9060075595,kg +21a509ee-8c4a-3aad-b630-91e919633373,SESCO,II.1.1,La Pampa,AR-L,annual,2010,naphtha combustion consumption by to the public,40.482208813199996,TJ,CH4,3.0,kg/TJ,121.44662643959998,kg +3d90035e-f141-397e-a341-f83efaf3aafe,SESCO,II.1.1,La Pampa,AR-L,annual,2010,naphtha combustion consumption by to the public,40.482208813199996,TJ,N2O,0.6,kg/TJ,24.289325287919997,kg +9765b869-8070-398e-b5c8-20353f32b1d4,SESCO,II.1.1,La Rioja,AR-F,annual,2010,naphtha combustion consumption by to the public,5.609791102299999,TJ,CO2,73300.0,kg/TJ,411197.68779858993,kg +5226a195-f0b4-39e7-bca6-2317fda81934,SESCO,II.1.1,La Rioja,AR-F,annual,2010,naphtha combustion consumption by to the public,5.609791102299999,TJ,CH4,3.0,kg/TJ,16.829373306899996,kg +33cb6c89-0c03-3d77-88c8-eb60fb201d00,SESCO,II.1.1,La Rioja,AR-F,annual,2010,naphtha combustion consumption by to the public,5.609791102299999,TJ,N2O,0.6,kg/TJ,3.3658746613799995,kg +c4e71184-750f-34cc-994e-561a813812ec,SESCO,II.1.1,Mendoza,AR-M,annual,2010,naphtha combustion consumption by to the public,50.36149087199999,TJ,CO2,73300.0,kg/TJ,3691497.2809175993,kg +f20be571-68c5-305a-b7bb-2c76aa0710b0,SESCO,II.1.1,Mendoza,AR-M,annual,2010,naphtha combustion consumption by to the public,50.36149087199999,TJ,CH4,3.0,kg/TJ,151.08447261599997,kg +5b85a0be-778b-33c3-b2ef-2a152f341c9a,SESCO,II.1.1,Mendoza,AR-M,annual,2010,naphtha combustion consumption by to the public,50.36149087199999,TJ,N2O,0.6,kg/TJ,30.216894523199993,kg +2d9fa8fb-5c82-3358-a9a5-bd90cd46839e,SESCO,II.1.1,Misiones,AR-N,annual,2010,naphtha combustion consumption by to the public,14.083695556699999,TJ,CO2,73300.0,kg/TJ,1032334.8843061099,kg +9327d17e-2a14-3c68-b387-55ae1fd15f4d,SESCO,II.1.1,Misiones,AR-N,annual,2010,naphtha combustion consumption by to the public,14.083695556699999,TJ,CH4,3.0,kg/TJ,42.251086670099994,kg +b34a7416-d097-370c-9c71-ee880f76948c,SESCO,II.1.1,Misiones,AR-N,annual,2010,naphtha combustion consumption by to the public,14.083695556699999,TJ,N2O,0.6,kg/TJ,8.45021733402,kg +d01b236f-a3bc-39dd-adab-132fb28ec609,SESCO,II.1.1,Neuquén,AR-Q,annual,2010,naphtha combustion consumption by to the public,105.54774661969999,TJ,CO2,73300.0,kg/TJ,7736649.82722401,kg +6cf148ad-758d-33fd-b2e9-699cb9ece856,SESCO,II.1.1,Neuquén,AR-Q,annual,2010,naphtha combustion consumption by to the public,105.54774661969999,TJ,CH4,3.0,kg/TJ,316.6432398591,kg +ff24ac15-50d5-3d63-88d2-0f4f87f106dd,SESCO,II.1.1,Neuquén,AR-Q,annual,2010,naphtha combustion consumption by to the public,105.54774661969999,TJ,N2O,0.6,kg/TJ,63.32864797181999,kg +34b430fd-8ca4-320e-8b4a-3ad5429ca557,SESCO,II.1.1,Rio Negro,AR-R,annual,2010,naphtha combustion consumption by to the public,117.839898022,TJ,CO2,73300.0,kg/TJ,8637664.5250126,kg +733d5dcc-27b0-3ca5-ad98-3d20c5dda36f,SESCO,II.1.1,Rio Negro,AR-R,annual,2010,naphtha combustion consumption by to the public,117.839898022,TJ,CH4,3.0,kg/TJ,353.519694066,kg +09f15338-1552-3ec5-a8f5-65160c71d674,SESCO,II.1.1,Rio Negro,AR-R,annual,2010,naphtha combustion consumption by to the public,117.839898022,TJ,N2O,0.6,kg/TJ,70.7039388132,kg +96040500-89ff-38d1-9efe-292f080bf705,SESCO,II.1.1,Salta,AR-A,annual,2010,naphtha combustion consumption by to the public,2.6328499582,TJ,CO2,73300.0,kg/TJ,192987.90193606,kg +7723abec-f69b-32d5-bf1a-b20c81ce4834,SESCO,II.1.1,Salta,AR-A,annual,2010,naphtha combustion consumption by to the public,2.6328499582,TJ,CH4,3.0,kg/TJ,7.8985498746000005,kg +42221677-65d2-37ff-837e-e0398a26ebde,SESCO,II.1.1,Salta,AR-A,annual,2010,naphtha combustion consumption by to the public,2.6328499582,TJ,N2O,0.6,kg/TJ,1.5797099749199999,kg +e24ba60d-fe1e-38aa-a6ef-26301e7933d9,SESCO,II.1.1,San Juan,AR-J,annual,2010,naphtha combustion consumption by to the public,47.34690688419999,TJ,CO2,73300.0,kg/TJ,3470528.274611859,kg +6a14b6c6-c4f8-3f6e-9c74-c4ebab4e6104,SESCO,II.1.1,San Juan,AR-J,annual,2010,naphtha combustion consumption by to the public,47.34690688419999,TJ,CH4,3.0,kg/TJ,142.04072065259996,kg +bc351887-ae66-3dbe-b6c8-db4f0a23ccd6,SESCO,II.1.1,San Juan,AR-J,annual,2010,naphtha combustion consumption by to the public,47.34690688419999,TJ,N2O,0.6,kg/TJ,28.408144130519993,kg +9a3c21e8-a78a-3939-91ba-f052a97c360b,SESCO,II.1.1,San Luis,AR-D,annual,2010,naphtha combustion consumption by to the public,17.0436789523,TJ,CO2,73300.0,kg/TJ,1249301.6672035898,kg +6c62152b-b15a-32e5-86ea-90566c87b3f7,SESCO,II.1.1,San Luis,AR-D,annual,2010,naphtha combustion consumption by to the public,17.0436789523,TJ,CH4,3.0,kg/TJ,51.131036856899996,kg +fcb5f04d-60e1-3dac-b81c-3274883c957a,SESCO,II.1.1,San Luis,AR-D,annual,2010,naphtha combustion consumption by to the public,17.0436789523,TJ,N2O,0.6,kg/TJ,10.22620737138,kg +ed476475-6268-3225-9937-af62eb84460a,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2010,naphtha combustion consumption by to the public,141.85905447559998,TJ,CO2,73300.0,kg/TJ,10398268.693061478,kg +88f2dbe4-be4a-3cf4-a03a-84dbe47515fa,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2010,naphtha combustion consumption by to the public,141.85905447559998,TJ,CH4,3.0,kg/TJ,425.5771634267999,kg +f1058bc6-27ec-339b-b56e-f9ad37996b78,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2010,naphtha combustion consumption by to the public,141.85905447559998,TJ,N2O,0.6,kg/TJ,85.11543268535998,kg +c59763f7-36ce-3456-ae86-06b6245a1c1a,SESCO,II.1.1,Santa Fe,AR-S,annual,2010,naphtha combustion consumption by to the public,363.940482367,TJ,CO2,73300.0,kg/TJ,26676837.3575011,kg +5bb72150-9d0d-3367-8327-a60c0f567131,SESCO,II.1.1,Santa Fe,AR-S,annual,2010,naphtha combustion consumption by to the public,363.940482367,TJ,CH4,3.0,kg/TJ,1091.821447101,kg +96e6f2b3-ca5d-387e-9485-6bd3c866f807,SESCO,II.1.1,Santa Fe,AR-S,annual,2010,naphtha combustion consumption by to the public,363.940482367,TJ,N2O,0.6,kg/TJ,218.3642894202,kg +145318cc-be14-3119-9575-578ab6e1e0bc,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2010,naphtha combustion consumption by to the public,15.068957534399999,TJ,CO2,73300.0,kg/TJ,1104554.58727152,kg +6417ee1c-d5c6-3ea4-b39a-b50bfb5c28f0,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2010,naphtha combustion consumption by to the public,15.068957534399999,TJ,CH4,3.0,kg/TJ,45.2068726032,kg +b48de37f-9c39-3f11-9d05-dd12345408f3,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2010,naphtha combustion consumption by to the public,15.068957534399999,TJ,N2O,0.6,kg/TJ,9.04137452064,kg +2a0dda2f-ef19-3c03-bdad-9e7e080c4fe6,SESCO,II.1.1,Tucuman,AR-T,annual,2010,naphtha combustion consumption by to the public,16.873429873299997,TJ,CO2,73300.0,kg/TJ,1236822.4097128897,kg +15a03855-d929-36bb-ba42-3bb499a2bd78,SESCO,II.1.1,Tucuman,AR-T,annual,2010,naphtha combustion consumption by to the public,16.873429873299997,TJ,CH4,3.0,kg/TJ,50.62028961989999,kg +78d17f1b-db64-38d0-9554-7d520c2ac2dc,SESCO,II.1.1,Tucuman,AR-T,annual,2010,naphtha combustion consumption by to the public,16.873429873299997,TJ,N2O,0.6,kg/TJ,10.124057923979999,kg +a2c70b28-2a71-31ca-ae2c-b401c50a6661,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,naphtha combustion consumption by to the public,179.352199873,TJ,CO2,73300.0,kg/TJ,13146516.2506909,kg +444a09a4-80ec-3b68-aa27-422abfee41ba,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,naphtha combustion consumption by to the public,179.352199873,TJ,CH4,3.0,kg/TJ,538.0565996189999,kg +47957071-d27a-3bf9-9a83-cd147565905c,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,naphtha combustion consumption by to the public,179.352199873,TJ,N2O,0.6,kg/TJ,107.6113199238,kg +8cf433db-4287-3e17-8db9-c11b0ca57ca7,SESCO,II.1.1,Capital Federal,AR-C,annual,2010,naphtha combustion consumption by to the public,1.6118255999999997,TJ,CO2,73300.0,kg/TJ,118146.81647999998,kg +0698cac9-4fd7-36bc-a8d0-b08bd894f9cf,SESCO,II.1.1,Capital Federal,AR-C,annual,2010,naphtha combustion consumption by to the public,1.6118255999999997,TJ,CH4,3.0,kg/TJ,4.8354767999999995,kg +e97f76e0-e607-3f33-8b90-5a77a6e94db7,SESCO,II.1.1,Capital Federal,AR-C,annual,2010,naphtha combustion consumption by to the public,1.6118255999999997,TJ,N2O,0.6,kg/TJ,0.9670953599999998,kg +91720fa8-6c30-321d-bcc9-e3d7a7578538,SESCO,II.1.1,Corrientes,AR-W,annual,2010,naphtha combustion consumption by to the public,1.343188,TJ,CO2,73300.0,kg/TJ,98455.6804,kg +81492efb-1783-3d4e-94b5-25ef2b7f0549,SESCO,II.1.1,Corrientes,AR-W,annual,2010,naphtha combustion consumption by to the public,1.343188,TJ,CH4,3.0,kg/TJ,4.029564000000001,kg +8ec978ee-fb0f-3188-a5a9-13729aed4c0d,SESCO,II.1.1,Corrientes,AR-W,annual,2010,naphtha combustion consumption by to the public,1.343188,TJ,N2O,0.6,kg/TJ,0.8059128,kg +6a18ced6-3775-309a-887e-7ee2ba5b2dfb,SESCO,II.1.1,Córdoba,AR-X,annual,2010,naphtha combustion consumption by to the public,63.09625629999999,TJ,CO2,73300.0,kg/TJ,4624955.586789999,kg +35e25917-5e6f-39ae-af5c-49b7899f89be,SESCO,II.1.1,Córdoba,AR-X,annual,2010,naphtha combustion consumption by to the public,63.09625629999999,TJ,CH4,3.0,kg/TJ,189.28876889999998,kg +e6ff8bee-376d-395e-9e19-3465640c0f86,SESCO,II.1.1,Córdoba,AR-X,annual,2010,naphtha combustion consumption by to the public,63.09625629999999,TJ,N2O,0.6,kg/TJ,37.857753779999996,kg +bc69c83f-2f06-3264-93b1-6cfc817b3093,SESCO,II.1.1,Entre Rios,AR-E,annual,2010,naphtha combustion consumption by to the public,15.120938909999998,TJ,CO2,73300.0,kg/TJ,1108364.8221029998,kg +0cee280e-db00-3aae-b47e-d00e199e591d,SESCO,II.1.1,Entre Rios,AR-E,annual,2010,naphtha combustion consumption by to the public,15.120938909999998,TJ,CH4,3.0,kg/TJ,45.36281672999999,kg +56173e74-6ae0-3c5c-9c3e-a9f12c4660ba,SESCO,II.1.1,Entre Rios,AR-E,annual,2010,naphtha combustion consumption by to the public,15.120938909999998,TJ,N2O,0.6,kg/TJ,9.072563345999999,kg +ebb9650c-4644-31d0-9e4f-901f55e62a85,SESCO,II.1.1,Santa Fe,AR-S,annual,2010,naphtha combustion consumption by to the public,22.397659899999997,TJ,CO2,73300.0,kg/TJ,1641748.4706699997,kg +891a6b42-2d8e-3e81-8e5d-8af4939dca49,SESCO,II.1.1,Santa Fe,AR-S,annual,2010,naphtha combustion consumption by to the public,22.397659899999997,TJ,CH4,3.0,kg/TJ,67.1929797,kg +122fcd5c-c800-3898-95e5-a0145514ace4,SESCO,II.1.1,Santa Fe,AR-S,annual,2010,naphtha combustion consumption by to the public,22.397659899999997,TJ,N2O,0.6,kg/TJ,13.438595939999997,kg +80f99ba7-74fb-3670-aa95-f5a1525d2f82,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,naphtha combustion consumption by to the public,1210.4091650419998,TJ,CO2,73300.0,kg/TJ,88722991.79757859,kg +6b55f8a0-1dd4-3ace-b163-51947ae09b8f,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,naphtha combustion consumption by to the public,1210.4091650419998,TJ,CH4,3.0,kg/TJ,3631.2274951259997,kg +4c7cc9ee-7c70-311b-b131-727410fe4c11,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,naphtha combustion consumption by to the public,1210.4091650419998,TJ,N2O,0.6,kg/TJ,726.2454990251998,kg +32f039c2-aaa9-3d5f-ac55-6dd7b76c92f2,SESCO,II.1.1,Capital Federal,AR-C,annual,2010,naphtha combustion consumption by to the public,27.9383104,TJ,CO2,73300.0,kg/TJ,2047878.1523199999,kg +77563ffc-6386-3619-8bc7-3a174af4206c,SESCO,II.1.1,Capital Federal,AR-C,annual,2010,naphtha combustion consumption by to the public,27.9383104,TJ,CH4,3.0,kg/TJ,83.81493119999999,kg +ec0c5f27-aead-37e3-9ca3-37f2c5e0b95f,SESCO,II.1.1,Capital Federal,AR-C,annual,2010,naphtha combustion consumption by to the public,27.9383104,TJ,N2O,0.6,kg/TJ,16.76298624,kg +696bbf04-24e0-3567-acb7-cf07110660da,SESCO,II.1.1,Corrientes,AR-W,annual,2010,naphtha combustion consumption by to the public,25.060530109999995,TJ,CO2,73300.0,kg/TJ,1836936.8570629996,kg +46a1d503-7ac2-3e75-889b-20230c5b9473,SESCO,II.1.1,Corrientes,AR-W,annual,2010,naphtha combustion consumption by to the public,25.060530109999995,TJ,CH4,3.0,kg/TJ,75.18159032999998,kg +022410bc-7926-3c0f-97eb-574b6e59310f,SESCO,II.1.1,Corrientes,AR-W,annual,2010,naphtha combustion consumption by to the public,25.060530109999995,TJ,N2O,0.6,kg/TJ,15.036318065999996,kg +5a1023d2-80e8-3acf-9408-b4e4e5b44492,SESCO,II.1.1,Córdoba,AR-X,annual,2010,naphtha combustion consumption by to the public,478.61818003999997,TJ,CO2,73300.0,kg/TJ,35082712.596932,kg +6f6aa325-ef3e-37f7-a87e-73d5bb1f488e,SESCO,II.1.1,Córdoba,AR-X,annual,2010,naphtha combustion consumption by to the public,478.61818003999997,TJ,CH4,3.0,kg/TJ,1435.85454012,kg +26e4bc8c-824a-3523-a103-6ab3d4bfa75b,SESCO,II.1.1,Córdoba,AR-X,annual,2010,naphtha combustion consumption by to the public,478.61818003999997,TJ,N2O,0.6,kg/TJ,287.17090802399997,kg +8713d4c4-2d41-3735-aa4a-6e6c42cd0966,SESCO,II.1.1,Entre Rios,AR-E,annual,2010,naphtha combustion consumption by to the public,167.81119277999997,TJ,CO2,73300.0,kg/TJ,12300560.430773998,kg +b5091e0a-183b-3311-9111-1c2f41e10b18,SESCO,II.1.1,Entre Rios,AR-E,annual,2010,naphtha combustion consumption by to the public,167.81119277999997,TJ,CH4,3.0,kg/TJ,503.43357833999994,kg +601d1ece-5d97-385a-a239-7b23fa382275,SESCO,II.1.1,Entre Rios,AR-E,annual,2010,naphtha combustion consumption by to the public,167.81119277999997,TJ,N2O,0.6,kg/TJ,100.68671566799998,kg +56a9d1a8-8519-3580-b3f3-99e84b3841f6,SESCO,II.1.1,Santa Fe,AR-S,annual,2010,naphtha combustion consumption by to the public,177.50229419999997,TJ,CO2,73300.0,kg/TJ,13010918.164859997,kg +545ce0b1-b238-3df8-a47c-2dbda47a1ffa,SESCO,II.1.1,Santa Fe,AR-S,annual,2010,naphtha combustion consumption by to the public,177.50229419999997,TJ,CH4,3.0,kg/TJ,532.5068825999999,kg +6720d988-6669-3937-bfea-c777b70a388f,SESCO,II.1.1,Santa Fe,AR-S,annual,2010,naphtha combustion consumption by to the public,177.50229419999997,TJ,N2O,0.6,kg/TJ,106.50137651999998,kg +a0a3d2f8-d6d8-3ad9-856b-9f9a42ea01e0,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,naphtha combustion consumption by to the public,100.34379977159999,TJ,CO2,73300.0,kg/TJ,7355200.523258279,kg +91a58066-1d5a-3440-a28e-bbcfb684c543,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,naphtha combustion consumption by to the public,100.34379977159999,TJ,CH4,3.0,kg/TJ,301.03139931479996,kg +4b72cae2-5153-35b9-9ced-5c5dc36aecc6,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,naphtha combustion consumption by to the public,100.34379977159999,TJ,N2O,0.6,kg/TJ,60.20627986295999,kg +f29ffae0-cc81-3572-bf93-a77e3fc4d8db,SESCO,II.1.1,Capital Federal,AR-C,annual,2010,naphtha combustion consumption by to the public,1.8468834999999997,TJ,CO2,73300.0,kg/TJ,135376.56054999997,kg +d33d073a-6691-3f17-a366-01d4ec29f915,SESCO,II.1.1,Capital Federal,AR-C,annual,2010,naphtha combustion consumption by to the public,1.8468834999999997,TJ,CH4,3.0,kg/TJ,5.540650499999999,kg +bc14cd7b-560c-38e7-a392-f1b6cf79640a,SESCO,II.1.1,Capital Federal,AR-C,annual,2010,naphtha combustion consumption by to the public,1.8468834999999997,TJ,N2O,0.6,kg/TJ,1.1081300999999997,kg +6e2e26da-c360-3f33-887a-ac25c12b834c,SESCO,II.1.1,Corrientes,AR-W,annual,2010,naphtha combustion consumption by to the public,2.42109637,TJ,CO2,73300.0,kg/TJ,177466.36392099998,kg +75791265-f33d-318b-9051-351bba561fb4,SESCO,II.1.1,Corrientes,AR-W,annual,2010,naphtha combustion consumption by to the public,2.42109637,TJ,CH4,3.0,kg/TJ,7.26328911,kg +5341765a-0b3f-3ea2-ae7e-411f6fce960c,SESCO,II.1.1,Corrientes,AR-W,annual,2010,naphtha combustion consumption by to the public,2.42109637,TJ,N2O,0.6,kg/TJ,1.452657822,kg +77e685b4-d8ff-3bbb-8361-c8d0c171f8b2,SESCO,II.1.1,Córdoba,AR-X,annual,2010,naphtha combustion consumption by to the public,29.1807593,TJ,CO2,73300.0,kg/TJ,2138949.65669,kg +c7f3a49e-5b7c-3170-84ad-5683f2100680,SESCO,II.1.1,Córdoba,AR-X,annual,2010,naphtha combustion consumption by to the public,29.1807593,TJ,CH4,3.0,kg/TJ,87.54227789999999,kg +58ec7863-e50a-385c-abcf-72aa6f957db7,SESCO,II.1.1,Córdoba,AR-X,annual,2010,naphtha combustion consumption by to the public,29.1807593,TJ,N2O,0.6,kg/TJ,17.50845558,kg +8ef8beb5-c557-3db8-b17f-6963d6c51e7a,SESCO,II.1.1,Entre Rios,AR-E,annual,2010,naphtha combustion consumption by to the public,8.28411199,TJ,CO2,73300.0,kg/TJ,607225.408867,kg +1bffc234-f4cc-368f-9e00-778e39aec2d2,SESCO,II.1.1,Entre Rios,AR-E,annual,2010,naphtha combustion consumption by to the public,8.28411199,TJ,CH4,3.0,kg/TJ,24.85233597,kg +a4af9e13-58a1-3592-ae67-d85c4aeab7dc,SESCO,II.1.1,Entre Rios,AR-E,annual,2010,naphtha combustion consumption by to the public,8.28411199,TJ,N2O,0.6,kg/TJ,4.970467193999999,kg +aeb2019c-256b-3499-acfe-4d8cc3373b25,SESCO,II.1.1,Santa Fe,AR-S,annual,2010,naphtha combustion consumption by to the public,22.7334569,TJ,CO2,73300.0,kg/TJ,1666362.39077,kg +5f52772d-25d9-3eeb-9d62-5d156e496fb9,SESCO,II.1.1,Santa Fe,AR-S,annual,2010,naphtha combustion consumption by to the public,22.7334569,TJ,CH4,3.0,kg/TJ,68.20037070000001,kg +4b8290bd-2bcd-39c3-a2c1-44118f370524,SESCO,II.1.1,Santa Fe,AR-S,annual,2010,naphtha combustion consumption by to the public,22.7334569,TJ,N2O,0.6,kg/TJ,13.64007414,kg +e06556c0-5e4d-36bd-92ef-5caa08fd7b5f,SESCO,II.1.1,Catamarca,AR-K,annual,2010,naphtha combustion consumption by to the public,61.458574331,TJ,CO2,73300.0,kg/TJ,4504913.4984623,kg +5bae199e-f772-3ce6-ba1a-db87a52d2420,SESCO,II.1.1,Catamarca,AR-K,annual,2010,naphtha combustion consumption by to the public,61.458574331,TJ,CH4,3.0,kg/TJ,184.375722993,kg +bc665813-8ede-3c2f-90da-7e6a7f880df2,SESCO,II.1.1,Catamarca,AR-K,annual,2010,naphtha combustion consumption by to the public,61.458574331,TJ,N2O,0.6,kg/TJ,36.8751445986,kg +261d76f2-20e5-31cb-8149-c72f19684277,SESCO,II.1.1,Chaco,AR-H,annual,2010,naphtha combustion consumption by to the public,94.63800430699999,TJ,CO2,73300.0,kg/TJ,6936965.715703099,kg +056d41fb-57c6-33f5-86b2-a8506258d13d,SESCO,II.1.1,Chaco,AR-H,annual,2010,naphtha combustion consumption by to the public,94.63800430699999,TJ,CH4,3.0,kg/TJ,283.914012921,kg +4a112d35-9e8d-3e82-89cc-dfcf328c20a3,SESCO,II.1.1,Chaco,AR-H,annual,2010,naphtha combustion consumption by to the public,94.63800430699999,TJ,N2O,0.6,kg/TJ,56.78280258419999,kg +cbbccab2-430d-3d9b-95ea-893940030f29,SESCO,II.1.1,Córdoba,AR-X,annual,2010,naphtha combustion consumption by to the public,10.883516567000001,TJ,CO2,73300.0,kg/TJ,797761.7643611,kg +71a8bbf1-fe76-34e1-8f8e-164eb84934c8,SESCO,II.1.1,Córdoba,AR-X,annual,2010,naphtha combustion consumption by to the public,10.883516567000001,TJ,CH4,3.0,kg/TJ,32.650549701,kg +ebac8475-0c68-3433-a428-723d14d83e16,SESCO,II.1.1,Córdoba,AR-X,annual,2010,naphtha combustion consumption by to the public,10.883516567000001,TJ,N2O,0.6,kg/TJ,6.5301099402,kg +38d36b15-5441-3c65-89b4-9e38a1af7c09,SESCO,II.1.1,Jujuy,AR-Y,annual,2010,naphtha combustion consumption by to the public,146.968608787,TJ,CO2,73300.0,kg/TJ,10772799.0240871,kg +14335bac-ebef-3633-9f7d-5b1a5e20ea2f,SESCO,II.1.1,Jujuy,AR-Y,annual,2010,naphtha combustion consumption by to the public,146.968608787,TJ,CH4,3.0,kg/TJ,440.905826361,kg +757d11c7-e4f0-33d6-a2a5-f6b5fbd91c69,SESCO,II.1.1,Jujuy,AR-Y,annual,2010,naphtha combustion consumption by to the public,146.968608787,TJ,N2O,0.6,kg/TJ,88.18116527219999,kg +fbc3d39a-2bf8-3066-9907-839a4a277312,SESCO,II.1.1,La Rioja,AR-F,annual,2010,naphtha combustion consumption by to the public,52.02502920999999,TJ,CO2,73300.0,kg/TJ,3813434.6410929994,kg +d47ae0ac-e1e1-3c36-8e41-af3b5f722218,SESCO,II.1.1,La Rioja,AR-F,annual,2010,naphtha combustion consumption by to the public,52.02502920999999,TJ,CH4,3.0,kg/TJ,156.07508762999998,kg +b279e3a0-303e-3192-81ea-aba53c4ec417,SESCO,II.1.1,La Rioja,AR-F,annual,2010,naphtha combustion consumption by to the public,52.02502920999999,TJ,N2O,0.6,kg/TJ,31.215017525999993,kg +f36eafe3-da9e-38c3-b94d-b7532d49d9cf,SESCO,II.1.1,Salta,AR-A,annual,2010,naphtha combustion consumption by to the public,271.80785947699997,TJ,CO2,73300.0,kg/TJ,19923516.099664096,kg +3164266d-e639-3a0d-bd8e-55f9fd280060,SESCO,II.1.1,Salta,AR-A,annual,2010,naphtha combustion consumption by to the public,271.80785947699997,TJ,CH4,3.0,kg/TJ,815.4235784309999,kg +1d315a4e-c745-3b83-bf58-7b1f227f46e9,SESCO,II.1.1,Salta,AR-A,annual,2010,naphtha combustion consumption by to the public,271.80785947699997,TJ,N2O,0.6,kg/TJ,163.08471568619998,kg +089f01eb-df66-3fa9-aa78-1e4e895e3b79,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2010,naphtha combustion consumption by to the public,93.310598766,TJ,CO2,73300.0,kg/TJ,6839666.8895478,kg +85ed14d7-61c2-3a83-8bc8-68d8b91160b7,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2010,naphtha combustion consumption by to the public,93.310598766,TJ,CH4,3.0,kg/TJ,279.931796298,kg +eab24fcb-a2b7-39af-b5f7-d0ef919c8c43,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2010,naphtha combustion consumption by to the public,93.310598766,TJ,N2O,0.6,kg/TJ,55.9863592596,kg +95c14465-4bd5-3cc7-ac78-4644dd7a7715,SESCO,II.1.1,Tucuman,AR-T,annual,2010,naphtha combustion consumption by to the public,209.58165320399996,TJ,CO2,73300.0,kg/TJ,15362335.179853197,kg +1fe0b594-1572-37ad-839c-4b541937b954,SESCO,II.1.1,Tucuman,AR-T,annual,2010,naphtha combustion consumption by to the public,209.58165320399996,TJ,CH4,3.0,kg/TJ,628.7449596119999,kg +0868dc62-da28-3cdf-8003-6c0d025b69d0,SESCO,II.1.1,Tucuman,AR-T,annual,2010,naphtha combustion consumption by to the public,209.58165320399996,TJ,N2O,0.6,kg/TJ,125.74899192239997,kg +1b1c573b-0382-33c9-b679-a8b464057dc8,SESCO,II.1.1,Catamarca,AR-K,annual,2010,naphtha combustion consumption by to the public,191.326385096,TJ,CO2,73300.0,kg/TJ,14024224.0275368,kg +01d19ab1-ab03-326a-bb95-f6335d169bb8,SESCO,II.1.1,Catamarca,AR-K,annual,2010,naphtha combustion consumption by to the public,191.326385096,TJ,CH4,3.0,kg/TJ,573.979155288,kg +bc3a16bd-ff53-32b7-9ef7-728fc591ba7d,SESCO,II.1.1,Catamarca,AR-K,annual,2010,naphtha combustion consumption by to the public,191.326385096,TJ,N2O,0.6,kg/TJ,114.7958310576,kg +c8ed4715-e870-36cb-8752-523e4afded44,SESCO,II.1.1,Chaco,AR-H,annual,2010,naphtha combustion consumption by to the public,74.245724091,TJ,CO2,73300.0,kg/TJ,5442211.5758703,kg +ecf08a38-8334-3f92-bfdf-1e1090c74dda,SESCO,II.1.1,Chaco,AR-H,annual,2010,naphtha combustion consumption by to the public,74.245724091,TJ,CH4,3.0,kg/TJ,222.737172273,kg +3a38503e-2e3e-3907-a7df-97f2d4f2002e,SESCO,II.1.1,Chaco,AR-H,annual,2010,naphtha combustion consumption by to the public,74.245724091,TJ,N2O,0.6,kg/TJ,44.5474344546,kg +db080903-b8fd-3a4e-9e40-da8b78ef80fc,SESCO,II.1.1,Córdoba,AR-X,annual,2010,naphtha combustion consumption by to the public,61.15266326399999,TJ,CO2,73300.0,kg/TJ,4482490.217251199,kg +2e3be6f5-780e-37d6-94e5-e8df17a5c011,SESCO,II.1.1,Córdoba,AR-X,annual,2010,naphtha combustion consumption by to the public,61.15266326399999,TJ,CH4,3.0,kg/TJ,183.45798979199998,kg +bf841e74-f8f6-3cdd-801f-9791b2c90851,SESCO,II.1.1,Córdoba,AR-X,annual,2010,naphtha combustion consumption by to the public,61.15266326399999,TJ,N2O,0.6,kg/TJ,36.691597958399996,kg +23f802ae-f7d2-3811-ac73-716c66efbc07,SESCO,II.1.1,Jujuy,AR-Y,annual,2010,naphtha combustion consumption by to the public,242.33394939599998,TJ,CO2,73300.0,kg/TJ,17763078.4907268,kg +68e29e07-c704-3149-81b4-37165d6b1891,SESCO,II.1.1,Jujuy,AR-Y,annual,2010,naphtha combustion consumption by to the public,242.33394939599998,TJ,CH4,3.0,kg/TJ,727.0018481879999,kg +9723200b-b251-3df2-97d1-62441b34652e,SESCO,II.1.1,Jujuy,AR-Y,annual,2010,naphtha combustion consumption by to the public,242.33394939599998,TJ,N2O,0.6,kg/TJ,145.4003696376,kg +fad341ed-724a-39bd-b03e-8935ea92b078,SESCO,II.1.1,La Rioja,AR-F,annual,2010,naphtha combustion consumption by to the public,186.22529286899996,TJ,CO2,73300.0,kg/TJ,13650313.967297697,kg +66bbeef6-0ecf-3368-9f2c-cc002fc5c440,SESCO,II.1.1,La Rioja,AR-F,annual,2010,naphtha combustion consumption by to the public,186.22529286899996,TJ,CH4,3.0,kg/TJ,558.6758786069998,kg +e81e633d-5ba2-3b99-98cb-cfc60e454fff,SESCO,II.1.1,La Rioja,AR-F,annual,2010,naphtha combustion consumption by to the public,186.22529286899996,TJ,N2O,0.6,kg/TJ,111.73517572139997,kg +8969ea19-6c4a-30cd-b910-0c5147536964,SESCO,II.1.1,Salta,AR-A,annual,2010,naphtha combustion consumption by to the public,552.4444936780001,TJ,CO2,73300.0,kg/TJ,40494181.3865974,kg +8d79ea41-3f21-36a9-b463-1218884a5777,SESCO,II.1.1,Salta,AR-A,annual,2010,naphtha combustion consumption by to the public,552.4444936780001,TJ,CH4,3.0,kg/TJ,1657.3334810340002,kg +aab5431e-5926-308e-a621-fe5f74f5f53d,SESCO,II.1.1,Salta,AR-A,annual,2010,naphtha combustion consumption by to the public,552.4444936780001,TJ,N2O,0.6,kg/TJ,331.4666962068,kg +bdb4e14d-c902-3703-aab2-acb9145b708d,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2010,naphtha combustion consumption by to the public,174.761519086,TJ,CO2,73300.0,kg/TJ,12810019.3490038,kg +4e0cf6c2-20c1-3ad9-a895-413d103a718d,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2010,naphtha combustion consumption by to the public,174.761519086,TJ,CH4,3.0,kg/TJ,524.284557258,kg +d9e83084-8abd-3c9e-8afd-dbc21261cc0f,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2010,naphtha combustion consumption by to the public,174.761519086,TJ,N2O,0.6,kg/TJ,104.8569114516,kg +085e6598-8f56-3b0b-8991-23b42bcc86a7,SESCO,II.1.1,Tucuman,AR-T,annual,2010,naphtha combustion consumption by to the public,1041.319593083,TJ,CO2,73300.0,kg/TJ,76328726.1729839,kg +d6f2372c-5123-3821-b816-166e0cfffbb3,SESCO,II.1.1,Tucuman,AR-T,annual,2010,naphtha combustion consumption by to the public,1041.319593083,TJ,CH4,3.0,kg/TJ,3123.958779249,kg +ede900c3-c891-3b4a-a19f-ce54a2a401b5,SESCO,II.1.1,Tucuman,AR-T,annual,2010,naphtha combustion consumption by to the public,1041.319593083,TJ,N2O,0.6,kg/TJ,624.7917558498,kg +3ca8c4ea-8de5-3491-872e-4a3df04cd2d0,SESCO,II.1.1,Catamarca,AR-K,annual,2010,naphtha combustion consumption by to the public,7.938241079999998,TJ,CO2,73300.0,kg/TJ,581873.0711639998,kg +fbb959e6-856b-34da-9037-34d269861d69,SESCO,II.1.1,Catamarca,AR-K,annual,2010,naphtha combustion consumption by to the public,7.938241079999998,TJ,CH4,3.0,kg/TJ,23.814723239999996,kg +049fc2a2-a8e3-3a9f-8d4f-69aa880af623,SESCO,II.1.1,Catamarca,AR-K,annual,2010,naphtha combustion consumption by to the public,7.938241079999998,TJ,N2O,0.6,kg/TJ,4.762944647999999,kg +2bc62b49-7661-393e-9af1-5d27891996f1,SESCO,II.1.1,Chaco,AR-H,annual,2010,naphtha combustion consumption by to the public,0.601412427,TJ,CO2,73300.0,kg/TJ,44083.5308991,kg +0441abaa-24a4-3aa8-9f60-486c1dc2fa76,SESCO,II.1.1,Chaco,AR-H,annual,2010,naphtha combustion consumption by to the public,0.601412427,TJ,CH4,3.0,kg/TJ,1.8042372809999998,kg +131ab36b-591e-365b-b1d2-076928ef5d44,SESCO,II.1.1,Chaco,AR-H,annual,2010,naphtha combustion consumption by to the public,0.601412427,TJ,N2O,0.6,kg/TJ,0.36084745619999997,kg +45ac5c38-a295-3816-82e0-85f89fea8a19,SESCO,II.1.1,Córdoba,AR-X,annual,2010,naphtha combustion consumption by to the public,5.137358303,TJ,CO2,73300.0,kg/TJ,376568.3636099,kg +3953cc88-3abd-322e-8f44-1f7101a64867,SESCO,II.1.1,Córdoba,AR-X,annual,2010,naphtha combustion consumption by to the public,5.137358303,TJ,CH4,3.0,kg/TJ,15.412074909000001,kg +3f5749b0-408d-39cc-b63f-d3d502298067,SESCO,II.1.1,Córdoba,AR-X,annual,2010,naphtha combustion consumption by to the public,5.137358303,TJ,N2O,0.6,kg/TJ,3.0824149818,kg +db84d86c-12e4-3f88-a4b3-7b0e1d04c9c1,SESCO,II.1.1,Jujuy,AR-Y,annual,2010,naphtha combustion consumption by to the public,17.577629762,TJ,CO2,73300.0,kg/TJ,1288440.2615546,kg +ead7a34e-2320-32c9-8d04-e952a3794e01,SESCO,II.1.1,Jujuy,AR-Y,annual,2010,naphtha combustion consumption by to the public,17.577629762,TJ,CH4,3.0,kg/TJ,52.732889286,kg +5dc21b8f-b804-3e77-b4a7-af8377937ad9,SESCO,II.1.1,Jujuy,AR-Y,annual,2010,naphtha combustion consumption by to the public,17.577629762,TJ,N2O,0.6,kg/TJ,10.5465778572,kg +84f07d8c-d132-3bcc-8045-c6d7eecc5e3a,SESCO,II.1.1,La Rioja,AR-F,annual,2010,naphtha combustion consumption by to the public,9.741806766999998,TJ,CO2,73300.0,kg/TJ,714074.4360210999,kg +3fc45cfc-f0f5-39cb-af90-fe369383cdda,SESCO,II.1.1,La Rioja,AR-F,annual,2010,naphtha combustion consumption by to the public,9.741806766999998,TJ,CH4,3.0,kg/TJ,29.225420300999993,kg +32954be2-3368-3167-8872-e45269f2d604,SESCO,II.1.1,La Rioja,AR-F,annual,2010,naphtha combustion consumption by to the public,9.741806766999998,TJ,N2O,0.6,kg/TJ,5.845084060199999,kg +b9bdaa30-dba0-3571-8276-c41d8b9c4319,SESCO,II.1.1,Salta,AR-A,annual,2010,naphtha combustion consumption by to the public,43.50585931999999,TJ,CO2,73300.0,kg/TJ,3188979.488155999,kg +7ac0094a-cd37-3a8a-813e-fcf1044fac47,SESCO,II.1.1,Salta,AR-A,annual,2010,naphtha combustion consumption by to the public,43.50585931999999,TJ,CH4,3.0,kg/TJ,130.51757795999998,kg +85f44427-d2f6-32b8-99e5-cf59a12acf00,SESCO,II.1.1,Salta,AR-A,annual,2010,naphtha combustion consumption by to the public,43.50585931999999,TJ,N2O,0.6,kg/TJ,26.103515591999994,kg +4dd69ea6-6f46-36b4-99f4-e577ea7c3296,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2010,naphtha combustion consumption by to the public,16.625645267,TJ,CO2,73300.0,kg/TJ,1218659.7980711,kg +f87fcb43-16cb-3448-8ef0-e2ac8616ed89,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2010,naphtha combustion consumption by to the public,16.625645267,TJ,CH4,3.0,kg/TJ,49.876935801,kg +9089f095-7391-36d9-9532-e0becbc67dac,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2010,naphtha combustion consumption by to the public,16.625645267,TJ,N2O,0.6,kg/TJ,9.975387160199999,kg +e3c58b9e-1163-369a-8e47-5d026749c62b,SESCO,II.1.1,Tucuman,AR-T,annual,2010,naphtha combustion consumption by to the public,82.894511623,TJ,CO2,73300.0,kg/TJ,6076167.7019659,kg +bcb75960-7a90-30fa-a973-442f41ff0538,SESCO,II.1.1,Tucuman,AR-T,annual,2010,naphtha combustion consumption by to the public,82.894511623,TJ,CH4,3.0,kg/TJ,248.683534869,kg +9b001bb5-ce29-3ac4-8be7-78b251261638,SESCO,II.1.1,Tucuman,AR-T,annual,2010,naphtha combustion consumption by to the public,82.894511623,TJ,N2O,0.6,kg/TJ,49.7367069738,kg +25fa6390-3d5c-332b-887e-a075d53de0df,SESCO,II.5.1,Misiones,AR-N,annual,2010,naphtha combustion consumption by agriculture machines,8.3613453,TJ,CO2,73300.0,kg/TJ,612886.61049,kg +f0a0d78c-41a6-3f22-8483-a5dc387d5717,SESCO,II.5.1,Misiones,AR-N,annual,2010,naphtha combustion consumption by agriculture machines,8.3613453,TJ,CH4,3.0,kg/TJ,25.0840359,kg +47f905fc-2ef2-3aea-8e7d-ba07124c83f7,SESCO,II.5.1,Misiones,AR-N,annual,2010,naphtha combustion consumption by agriculture machines,8.3613453,TJ,N2O,0.6,kg/TJ,5.01680718,kg +fb75b335-757f-3888-924d-f127f62986de,SESCO,II.5.1,Capital Federal,AR-C,annual,2010,naphtha combustion consumption by agriculture machines,0.5372752,TJ,CO2,73300.0,kg/TJ,39382.27215999999,kg +34a74087-a231-3b5a-9540-11e177f5eb27,SESCO,II.5.1,Capital Federal,AR-C,annual,2010,naphtha combustion consumption by agriculture machines,0.5372752,TJ,CH4,3.0,kg/TJ,1.6118256,kg +71e467a8-7d76-397c-877f-7e9f0d3ee460,SESCO,II.5.1,Capital Federal,AR-C,annual,2010,naphtha combustion consumption by agriculture machines,0.5372752,TJ,N2O,0.6,kg/TJ,0.32236511999999995,kg +27fb56e9-4246-3bdf-8887-15782830d222,SESCO,II.5.1,Salta,AR-A,annual,2010,naphtha combustion consumption by agriculture machines,0.20147819999999997,TJ,CO2,73300.0,kg/TJ,14768.352059999997,kg +6037b45b-c532-36c7-9ff7-4482a28b06c7,SESCO,II.5.1,Salta,AR-A,annual,2010,naphtha combustion consumption by agriculture machines,0.20147819999999997,TJ,CH4,3.0,kg/TJ,0.6044345999999999,kg +c1c375e4-9ec3-3520-a30a-56874bd11145,SESCO,II.5.1,Salta,AR-A,annual,2010,naphtha combustion consumption by agriculture machines,0.20147819999999997,TJ,N2O,0.6,kg/TJ,0.12088691999999998,kg +6bcb76c6-78a1-37e7-addc-6e15a84a30a3,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,naphtha combustion consumption by to the public,391.4721426,TJ,CO2,73300.0,kg/TJ,28694908.05258,kg +cef9ffe5-b950-39cb-9b62-4fb7ccaddbbd,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,naphtha combustion consumption by to the public,391.4721426,TJ,CH4,3.0,kg/TJ,1174.4164277999998,kg +7fb66fb6-2a00-35c4-b5a2-e50dd89a77c5,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,naphtha combustion consumption by to the public,391.4721426,TJ,N2O,0.6,kg/TJ,234.88328556,kg +55ccfc08-9464-3a1f-9c7c-5eeeecde6b35,SESCO,II.1.1,Capital Federal,AR-C,annual,2010,naphtha combustion consumption by to the public,10.745504,TJ,CO2,73300.0,kg/TJ,787645.4432,kg +15f00c55-7123-3492-a044-1ad56f553ed2,SESCO,II.1.1,Capital Federal,AR-C,annual,2010,naphtha combustion consumption by to the public,10.745504,TJ,CH4,3.0,kg/TJ,32.236512000000005,kg +ae8aba41-1c3d-3473-b340-50f4f929633e,SESCO,II.1.1,Capital Federal,AR-C,annual,2010,naphtha combustion consumption by to the public,10.745504,TJ,N2O,0.6,kg/TJ,6.4473024,kg +7fafaffb-9c67-3181-a413-59c2599c850c,SESCO,II.1.1,Chaco,AR-H,annual,2010,naphtha combustion consumption by to the public,20.3157185,TJ,CO2,73300.0,kg/TJ,1489142.1660499999,kg +e4261cbb-9355-3296-bcd1-0b798259316c,SESCO,II.1.1,Chaco,AR-H,annual,2010,naphtha combustion consumption by to the public,20.3157185,TJ,CH4,3.0,kg/TJ,60.947155499999994,kg +a4c985ef-0809-3cbb-a9fc-9dceb52cb8ed,SESCO,II.1.1,Chaco,AR-H,annual,2010,naphtha combustion consumption by to the public,20.3157185,TJ,N2O,0.6,kg/TJ,12.189431099999998,kg +9fb1ef87-2228-3816-af9b-6c6cbe68823b,SESCO,II.1.1,Chubut,AR-U,annual,2010,naphtha combustion consumption by to the public,8.495664099999999,TJ,CO2,73300.0,kg/TJ,622732.1785299999,kg +6ce06d59-18a3-38c5-87de-6762e4091c7f,SESCO,II.1.1,Chubut,AR-U,annual,2010,naphtha combustion consumption by to the public,8.495664099999999,TJ,CH4,3.0,kg/TJ,25.486992299999997,kg +27efea37-4045-3955-9c14-012fa6eb7649,SESCO,II.1.1,Chubut,AR-U,annual,2010,naphtha combustion consumption by to the public,8.495664099999999,TJ,N2O,0.6,kg/TJ,5.097398459999999,kg +9c9233a4-b90b-39b1-b250-f7962ab77843,SESCO,II.1.1,Corrientes,AR-W,annual,2010,naphtha combustion consumption by to the public,32.505149599999996,TJ,CO2,73300.0,kg/TJ,2382627.46568,kg +4d990097-46ed-3431-8e15-f37520596280,SESCO,II.1.1,Corrientes,AR-W,annual,2010,naphtha combustion consumption by to the public,32.505149599999996,TJ,CH4,3.0,kg/TJ,97.51544879999999,kg +46e0e7e0-37a0-311c-bc76-f13e55c9346c,SESCO,II.1.1,Corrientes,AR-W,annual,2010,naphtha combustion consumption by to the public,32.505149599999996,TJ,N2O,0.6,kg/TJ,19.503089759999998,kg +4f55bd82-fcff-360e-b681-185935593f7b,SESCO,II.1.1,Córdoba,AR-X,annual,2010,naphtha combustion consumption by to the public,29.2479187,TJ,CO2,73300.0,kg/TJ,2143872.4407099998,kg +a2695592-db58-3a5e-839b-a8af74fdf76a,SESCO,II.1.1,Córdoba,AR-X,annual,2010,naphtha combustion consumption by to the public,29.2479187,TJ,CH4,3.0,kg/TJ,87.7437561,kg +ecf348cc-be1b-3f36-aae2-27c8c544481b,SESCO,II.1.1,Córdoba,AR-X,annual,2010,naphtha combustion consumption by to the public,29.2479187,TJ,N2O,0.6,kg/TJ,17.54875122,kg +b7aff69d-6b0a-356f-b62c-5a696ab73704,SESCO,II.1.1,Entre Rios,AR-E,annual,2010,naphtha combustion consumption by to the public,47.0451597,TJ,CO2,73300.0,kg/TJ,3448410.20601,kg +c3419c7f-ae47-3738-9702-67eee515c9fc,SESCO,II.1.1,Entre Rios,AR-E,annual,2010,naphtha combustion consumption by to the public,47.0451597,TJ,CH4,3.0,kg/TJ,141.1354791,kg +d9c03300-21d7-3846-81e5-2061931c4454,SESCO,II.1.1,Entre Rios,AR-E,annual,2010,naphtha combustion consumption by to the public,47.0451597,TJ,N2O,0.6,kg/TJ,28.22709582,kg +1bef7367-53b3-39a6-b1be-8d719f19bcf0,SESCO,II.1.1,Jujuy,AR-Y,annual,2010,naphtha combustion consumption by to the public,4.197462499999999,TJ,CO2,73300.0,kg/TJ,307674.00125,kg +d3e559d2-e6c1-31a4-8196-103369d6206f,SESCO,II.1.1,Jujuy,AR-Y,annual,2010,naphtha combustion consumption by to the public,4.197462499999999,TJ,CH4,3.0,kg/TJ,12.592387499999997,kg +97216b61-e8c2-3ab4-9385-2aec46d68f80,SESCO,II.1.1,Jujuy,AR-Y,annual,2010,naphtha combustion consumption by to the public,4.197462499999999,TJ,N2O,0.6,kg/TJ,2.5184774999999995,kg +9aba0a89-e13c-357d-b9ca-42dccfbefb6c,SESCO,II.1.1,La Pampa,AR-L,annual,2010,naphtha combustion consumption by to the public,12.894604799999998,TJ,CO2,73300.0,kg/TJ,945174.5318399998,kg +df9e51d4-1150-3c73-a19e-f967be2f5d64,SESCO,II.1.1,La Pampa,AR-L,annual,2010,naphtha combustion consumption by to the public,12.894604799999998,TJ,CH4,3.0,kg/TJ,38.683814399999996,kg +10200b75-19fc-3bb4-9036-97a371918156,SESCO,II.1.1,La Pampa,AR-L,annual,2010,naphtha combustion consumption by to the public,12.894604799999998,TJ,N2O,0.6,kg/TJ,7.736762879999999,kg +841c79b7-304b-36e8-82c5-539df20f4161,SESCO,II.1.1,Mendoza,AR-M,annual,2010,naphtha combustion consumption by to the public,38.616654999999994,TJ,CO2,73300.0,kg/TJ,2830600.8114999994,kg +f1b1536d-ef9f-39ab-ae46-e48f530dbf34,SESCO,II.1.1,Mendoza,AR-M,annual,2010,naphtha combustion consumption by to the public,38.616654999999994,TJ,CH4,3.0,kg/TJ,115.84996499999998,kg +744cb17f-5d6b-3d3e-acf5-ee4b0fff2190,SESCO,II.1.1,Mendoza,AR-M,annual,2010,naphtha combustion consumption by to the public,38.616654999999994,TJ,N2O,0.6,kg/TJ,23.169992999999995,kg +f735b99b-23fc-37d6-861a-0359c55d5455,SESCO,II.1.1,Misiones,AR-N,annual,2010,naphtha combustion consumption by to the public,76.12517989999999,TJ,CO2,73300.0,kg/TJ,5579975.68667,kg +6a21a234-a5ca-3173-89a6-2136ccc8ab9d,SESCO,II.1.1,Misiones,AR-N,annual,2010,naphtha combustion consumption by to the public,76.12517989999999,TJ,CH4,3.0,kg/TJ,228.3755397,kg +027604d8-1e46-3a39-ab54-9e1518c5bc3a,SESCO,II.1.1,Misiones,AR-N,annual,2010,naphtha combustion consumption by to the public,76.12517989999999,TJ,N2O,0.6,kg/TJ,45.67510794,kg +08c7e905-8dd9-3577-be87-50f4858921a8,SESCO,II.1.1,Neuquén,AR-Q,annual,2010,naphtha combustion consumption by to the public,28.0054698,TJ,CO2,73300.0,kg/TJ,2052800.93634,kg +64954965-e4a3-3469-86db-9b15d56b9682,SESCO,II.1.1,Neuquén,AR-Q,annual,2010,naphtha combustion consumption by to the public,28.0054698,TJ,CH4,3.0,kg/TJ,84.0164094,kg +3f194673-227c-3280-8c54-335cade9b408,SESCO,II.1.1,Neuquén,AR-Q,annual,2010,naphtha combustion consumption by to the public,28.0054698,TJ,N2O,0.6,kg/TJ,16.80328188,kg +0cf5dad6-23c3-39f5-9914-32107cd3670e,SESCO,II.1.1,Rio Negro,AR-R,annual,2010,naphtha combustion consumption by to the public,35.628061699999996,TJ,CO2,73300.0,kg/TJ,2611536.92261,kg +06ebac53-cbd0-3bca-ae90-a60d75dc61e2,SESCO,II.1.1,Rio Negro,AR-R,annual,2010,naphtha combustion consumption by to the public,35.628061699999996,TJ,CH4,3.0,kg/TJ,106.8841851,kg +48e0d0cf-b20d-387d-a6f3-dd6038d18bd4,SESCO,II.1.1,Rio Negro,AR-R,annual,2010,naphtha combustion consumption by to the public,35.628061699999996,TJ,N2O,0.6,kg/TJ,21.376837019999996,kg +dd12e6b7-bf65-30e8-863e-1ea156af97e5,SESCO,II.1.1,Salta,AR-A,annual,2010,naphtha combustion consumption by to the public,9.2344175,TJ,CO2,73300.0,kg/TJ,676882.8027499999,kg +a4c85ebe-727d-3aac-b883-e3fa8a22a945,SESCO,II.1.1,Salta,AR-A,annual,2010,naphtha combustion consumption by to the public,9.2344175,TJ,CH4,3.0,kg/TJ,27.703252499999998,kg +a7f2195f-709c-3d1e-a18f-bfbde3ebc492,SESCO,II.1.1,Salta,AR-A,annual,2010,naphtha combustion consumption by to the public,9.2344175,TJ,N2O,0.6,kg/TJ,5.540650499999999,kg +3243e2aa-66a2-3b3c-b977-a54393c39048,SESCO,II.1.1,Santa Fe,AR-S,annual,2010,naphtha combustion consumption by to the public,23.304311799999997,TJ,CO2,73300.0,kg/TJ,1708206.0549399997,kg +92dd7b04-fa01-3140-8f2c-e00a920e1f1a,SESCO,II.1.1,Santa Fe,AR-S,annual,2010,naphtha combustion consumption by to the public,23.304311799999997,TJ,CH4,3.0,kg/TJ,69.9129354,kg +097fe3eb-cb04-3a22-871b-9e89a3331a5e,SESCO,II.1.1,Santa Fe,AR-S,annual,2010,naphtha combustion consumption by to the public,23.304311799999997,TJ,N2O,0.6,kg/TJ,13.982587079999998,kg +71853ff0-596a-39c3-a4f5-8b5e6a4f17f5,SESCO,II.1.1,Tucuman,AR-T,annual,2010,naphtha combustion consumption by to the public,15.110864999999999,TJ,CO2,73300.0,kg/TJ,1107626.4045,kg +3553559c-1ad0-3de6-a196-3ad5172832b7,SESCO,II.1.1,Tucuman,AR-T,annual,2010,naphtha combustion consumption by to the public,15.110864999999999,TJ,CH4,3.0,kg/TJ,45.332595,kg +aebdd22c-e7fe-3c01-b4a6-68a288b4930d,SESCO,II.1.1,Tucuman,AR-T,annual,2010,naphtha combustion consumption by to the public,15.110864999999999,TJ,N2O,0.6,kg/TJ,9.066519,kg +92ae5514-20b3-3581-8743-b662fe2f9add,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,naphtha combustion consumption by to the public,9950.0344867,TJ,CO2,73300.0,kg/TJ,729337527.87511,kg +1684a568-8880-306d-867f-9a3001b8b580,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,naphtha combustion consumption by to the public,9950.0344867,TJ,CH4,3.0,kg/TJ,29850.1034601,kg +3e1b6d1a-c0f4-3daf-b143-73c2e8282a5a,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,naphtha combustion consumption by to the public,9950.0344867,TJ,N2O,0.6,kg/TJ,5970.02069202,kg +28b0e6d7-de4a-31be-a167-3d37b4866b6d,SESCO,II.1.1,Capital Federal,AR-C,annual,2010,naphtha combustion consumption by to the public,3493.6319879999996,TJ,CO2,73300.0,kg/TJ,256083224.72039998,kg +d8fafae7-f274-37c1-88ea-840a18b22471,SESCO,II.1.1,Capital Federal,AR-C,annual,2010,naphtha combustion consumption by to the public,3493.6319879999996,TJ,CH4,3.0,kg/TJ,10480.895964,kg +b862b584-3953-36a9-9883-fbf07d3ed1e9,SESCO,II.1.1,Capital Federal,AR-C,annual,2010,naphtha combustion consumption by to the public,3493.6319879999996,TJ,N2O,0.6,kg/TJ,2096.1791928,kg +3ede896b-b802-3b91-9aee-43de35bdd728,SESCO,II.1.1,Catamarca,AR-K,annual,2010,naphtha combustion consumption by to the public,53.022346299999995,TJ,CO2,73300.0,kg/TJ,3886537.9837899995,kg +55a99e6e-4121-3206-8c11-7aa3bacc9f50,SESCO,II.1.1,Catamarca,AR-K,annual,2010,naphtha combustion consumption by to the public,53.022346299999995,TJ,CH4,3.0,kg/TJ,159.0670389,kg +3ce4f45d-8211-3f99-b4d1-761ef24f6947,SESCO,II.1.1,Catamarca,AR-K,annual,2010,naphtha combustion consumption by to the public,53.022346299999995,TJ,N2O,0.6,kg/TJ,31.813407779999995,kg +9c2907db-cefb-3092-afd9-bb7be7848d3c,SESCO,II.1.1,Chaco,AR-H,annual,2010,naphtha combustion consumption by to the public,676.1272594999999,TJ,CO2,73300.0,kg/TJ,49560128.12135,kg +c314489e-5aaf-3f6d-9977-7c9f3db2ac39,SESCO,II.1.1,Chaco,AR-H,annual,2010,naphtha combustion consumption by to the public,676.1272594999999,TJ,CH4,3.0,kg/TJ,2028.3817784999997,kg +02d84d2f-e442-3318-b82c-b5eed3de3abf,SESCO,II.1.1,Chaco,AR-H,annual,2010,naphtha combustion consumption by to the public,676.1272594999999,TJ,N2O,0.6,kg/TJ,405.67635569999993,kg +9993ddc1-e703-3d9c-b8fe-a6ec6ee21097,SESCO,II.1.1,Chubut,AR-U,annual,2010,naphtha combustion consumption by to the public,125.78955619999999,TJ,CO2,73300.0,kg/TJ,9220374.46946,kg +3b381df4-ae2c-3815-b8ff-70df38493fdf,SESCO,II.1.1,Chubut,AR-U,annual,2010,naphtha combustion consumption by to the public,125.78955619999999,TJ,CH4,3.0,kg/TJ,377.3686686,kg +9c669550-90a7-3cbc-bbcc-7a2a6240923a,SESCO,II.1.1,Chubut,AR-U,annual,2010,naphtha combustion consumption by to the public,125.78955619999999,TJ,N2O,0.6,kg/TJ,75.47373372,kg +76a98485-72ea-3f65-afee-408ee6ca9231,SESCO,II.1.1,Corrientes,AR-W,annual,2010,naphtha combustion consumption by to the public,713.2664077,TJ,CO2,73300.0,kg/TJ,52282427.68441,kg +941bf632-2a98-39b1-a40b-6c36fb2973bd,SESCO,II.1.1,Corrientes,AR-W,annual,2010,naphtha combustion consumption by to the public,713.2664077,TJ,CH4,3.0,kg/TJ,2139.7992231,kg +5bccf0c9-7e6b-317b-956c-78ce526520ab,SESCO,II.1.1,Corrientes,AR-W,annual,2010,naphtha combustion consumption by to the public,713.2664077,TJ,N2O,0.6,kg/TJ,427.95984461999996,kg +4fd58930-ed85-3431-87a6-80b2e0ba0c15,SESCO,II.1.1,Córdoba,AR-X,annual,2010,naphtha combustion consumption by to the public,2433.2522213999996,TJ,CO2,73300.0,kg/TJ,178357387.82861996,kg +5571b62d-f16a-3b5b-bf79-04afc24c78d3,SESCO,II.1.1,Córdoba,AR-X,annual,2010,naphtha combustion consumption by to the public,2433.2522213999996,TJ,CH4,3.0,kg/TJ,7299.756664199998,kg +d049905f-af0e-31d7-ad9b-975c5fd046c6,SESCO,II.1.1,Córdoba,AR-X,annual,2010,naphtha combustion consumption by to the public,2433.2522213999996,TJ,N2O,0.6,kg/TJ,1459.9513328399996,kg +8c7d3af5-eec1-354c-b33d-ed043e280b3a,SESCO,II.1.1,Entre Rios,AR-E,annual,2010,naphtha combustion consumption by to the public,764.0053343999999,TJ,CO2,73300.0,kg/TJ,56001591.01151999,kg +15139d76-87d4-3afc-9c9a-3bcecd50230b,SESCO,II.1.1,Entre Rios,AR-E,annual,2010,naphtha combustion consumption by to the public,764.0053343999999,TJ,CH4,3.0,kg/TJ,2292.0160032,kg +38d23de2-3ac3-32f3-8174-236b21105968,SESCO,II.1.1,Entre Rios,AR-E,annual,2010,naphtha combustion consumption by to the public,764.0053343999999,TJ,N2O,0.6,kg/TJ,458.40320063999997,kg +e4bb797f-7b40-3317-bb1a-03bc7501b274,SESCO,II.1.1,Formosa,AR-P,annual,2010,naphtha combustion consumption by to the public,294.4603893,TJ,CO2,73300.0,kg/TJ,21583946.53569,kg +dbaa96c2-08cb-381d-8ea6-9272ea4ca56e,SESCO,II.1.1,Formosa,AR-P,annual,2010,naphtha combustion consumption by to the public,294.4603893,TJ,CH4,3.0,kg/TJ,883.3811678999999,kg +d7ca35f9-91c9-3fac-945f-82abc9a4650c,SESCO,II.1.1,Formosa,AR-P,annual,2010,naphtha combustion consumption by to the public,294.4603893,TJ,N2O,0.6,kg/TJ,176.67623357999997,kg +01ee7675-dc1f-3b2d-bd99-b2a758d76c82,SESCO,II.1.1,Jujuy,AR-Y,annual,2010,naphtha combustion consumption by to the public,204.86974969999997,TJ,CO2,73300.0,kg/TJ,15016952.653009998,kg +d2af4835-e3ba-3b84-b7b2-98cff663d6e1,SESCO,II.1.1,Jujuy,AR-Y,annual,2010,naphtha combustion consumption by to the public,204.86974969999997,TJ,CH4,3.0,kg/TJ,614.6092490999999,kg +218ad84d-5741-3489-8469-a4854cbc0fe5,SESCO,II.1.1,Jujuy,AR-Y,annual,2010,naphtha combustion consumption by to the public,204.86974969999997,TJ,N2O,0.6,kg/TJ,122.92184981999998,kg +b1b34f75-7dbe-3bde-9647-39bbe76c350e,SESCO,II.1.1,La Pampa,AR-L,annual,2010,naphtha combustion consumption by to the public,239.89337679999997,TJ,CO2,73300.0,kg/TJ,17584184.51944,kg +5a5b09bb-33e4-34d0-8d81-d9d522eab2d0,SESCO,II.1.1,La Pampa,AR-L,annual,2010,naphtha combustion consumption by to the public,239.89337679999997,TJ,CH4,3.0,kg/TJ,719.6801303999999,kg +73594f9e-2c26-3b02-b5eb-01fa2db2495c,SESCO,II.1.1,La Pampa,AR-L,annual,2010,naphtha combustion consumption by to the public,239.89337679999997,TJ,N2O,0.6,kg/TJ,143.93602607999998,kg +5f8fabd9-fb1b-3461-8322-2e1b55689bfb,SESCO,II.1.1,La Rioja,AR-F,annual,2010,naphtha combustion consumption by to the public,201.2431421,TJ,CO2,73300.0,kg/TJ,14751122.31593,kg +cfd15500-4154-31cd-aee8-98a6981e28c2,SESCO,II.1.1,La Rioja,AR-F,annual,2010,naphtha combustion consumption by to the public,201.2431421,TJ,CH4,3.0,kg/TJ,603.7294263,kg +b65f60ec-7859-32cb-9a07-6e0626788a1f,SESCO,II.1.1,La Rioja,AR-F,annual,2010,naphtha combustion consumption by to the public,201.2431421,TJ,N2O,0.6,kg/TJ,120.74588526,kg +5ad52130-f729-3103-b02e-07ccf3b42a01,SESCO,II.1.1,Mendoza,AR-M,annual,2010,naphtha combustion consumption by to the public,561.3182651999999,TJ,CO2,73300.0,kg/TJ,41144628.839159995,kg +e2a604a0-6d65-3afc-bf5e-0d357574302d,SESCO,II.1.1,Mendoza,AR-M,annual,2010,naphtha combustion consumption by to the public,561.3182651999999,TJ,CH4,3.0,kg/TJ,1683.9547955999997,kg +fa8be831-6bd5-3add-9335-abd3e0e2b2f1,SESCO,II.1.1,Mendoza,AR-M,annual,2010,naphtha combustion consumption by to the public,561.3182651999999,TJ,N2O,0.6,kg/TJ,336.79095911999997,kg +2784d646-db8b-3e96-9d57-bba7ab09dffa,SESCO,II.1.1,Misiones,AR-N,annual,2010,naphtha combustion consumption by to the public,776.1947654999999,TJ,CO2,73300.0,kg/TJ,56895076.31114999,kg +9892dc11-e081-3bf5-a6f0-1a197e88e984,SESCO,II.1.1,Misiones,AR-N,annual,2010,naphtha combustion consumption by to the public,776.1947654999999,TJ,CH4,3.0,kg/TJ,2328.5842964999997,kg +d3805f76-63d6-339b-ae21-877478206305,SESCO,II.1.1,Misiones,AR-N,annual,2010,naphtha combustion consumption by to the public,776.1947654999999,TJ,N2O,0.6,kg/TJ,465.7168592999999,kg +deb1b3a0-c536-3cd8-beda-a354a4eacccc,SESCO,II.1.1,Neuquén,AR-Q,annual,2010,naphtha combustion consumption by to the public,139.691552,TJ,CO2,73300.0,kg/TJ,10239390.7616,kg +abf0f268-3758-37c9-91c2-9ad816a6d884,SESCO,II.1.1,Neuquén,AR-Q,annual,2010,naphtha combustion consumption by to the public,139.691552,TJ,CH4,3.0,kg/TJ,419.074656,kg +7cdf5d2e-153e-34c7-ae4c-1c024c2b43b1,SESCO,II.1.1,Neuquén,AR-Q,annual,2010,naphtha combustion consumption by to the public,139.691552,TJ,N2O,0.6,kg/TJ,83.8149312,kg +863904c0-ea1c-3bb5-a580-2dbec658d4d7,SESCO,II.1.1,Rio Negro,AR-R,annual,2010,naphtha combustion consumption by to the public,156.9850975,TJ,CO2,73300.0,kg/TJ,11507007.64675,kg +bdd7fab1-5343-3605-80c4-bf8ff7e04fe9,SESCO,II.1.1,Rio Negro,AR-R,annual,2010,naphtha combustion consumption by to the public,156.9850975,TJ,CH4,3.0,kg/TJ,470.9552925,kg +360ac7fb-4486-3294-8e0a-8dc307061203,SESCO,II.1.1,Rio Negro,AR-R,annual,2010,naphtha combustion consumption by to the public,156.9850975,TJ,N2O,0.6,kg/TJ,94.1910585,kg +6fbe2365-63c2-3756-bcb2-17dbef127698,SESCO,II.1.1,Salta,AR-A,annual,2010,naphtha combustion consumption by to the public,265.07815179999994,TJ,CO2,73300.0,kg/TJ,19430228.526939996,kg +ba20de41-765b-3001-a6e8-8d29835ba9bb,SESCO,II.1.1,Salta,AR-A,annual,2010,naphtha combustion consumption by to the public,265.07815179999994,TJ,CH4,3.0,kg/TJ,795.2344553999999,kg +473d7cfb-34de-3018-9e1e-6c18ef2873bf,SESCO,II.1.1,Salta,AR-A,annual,2010,naphtha combustion consumption by to the public,265.07815179999994,TJ,N2O,0.6,kg/TJ,159.04689107999997,kg +c37b0c8c-805b-3d6d-985e-c330795e73e0,SESCO,II.1.1,San Juan,AR-J,annual,2010,naphtha combustion consumption by to the public,223.8087005,TJ,CO2,73300.0,kg/TJ,16405177.74665,kg +7f1f97f4-1fa6-3573-95cf-429bbaf23648,SESCO,II.1.1,San Juan,AR-J,annual,2010,naphtha combustion consumption by to the public,223.8087005,TJ,CH4,3.0,kg/TJ,671.4261015,kg +7619ed87-4876-3994-a9fc-8af3b15e574d,SESCO,II.1.1,San Juan,AR-J,annual,2010,naphtha combustion consumption by to the public,223.8087005,TJ,N2O,0.6,kg/TJ,134.2852203,kg +1b08dff5-be95-3336-a9ae-8b3408e04263,SESCO,II.1.1,San Luis,AR-D,annual,2010,naphtha combustion consumption by to the public,11.182040099999998,TJ,CO2,73300.0,kg/TJ,819643.5393299998,kg +f653c548-3abe-3342-8700-48be6aeccf97,SESCO,II.1.1,San Luis,AR-D,annual,2010,naphtha combustion consumption by to the public,11.182040099999998,TJ,CH4,3.0,kg/TJ,33.5461203,kg +ac804f9f-c69c-3c1d-a27f-543df3aa102d,SESCO,II.1.1,San Luis,AR-D,annual,2010,naphtha combustion consumption by to the public,11.182040099999998,TJ,N2O,0.6,kg/TJ,6.709224059999999,kg +b9dbad25-899b-3fb3-9dd9-50cec56c6709,SESCO,II.1.1,Santa Fe,AR-S,annual,2010,naphtha combustion consumption by to the public,2821.366394,TJ,CO2,73300.0,kg/TJ,206806156.6802,kg +8f5e3e19-af4f-378b-b59e-af7b61950375,SESCO,II.1.1,Santa Fe,AR-S,annual,2010,naphtha combustion consumption by to the public,2821.366394,TJ,CH4,3.0,kg/TJ,8464.099182,kg +fcc85db0-d863-39da-a11d-db17407d07dd,SESCO,II.1.1,Santa Fe,AR-S,annual,2010,naphtha combustion consumption by to the public,2821.366394,TJ,N2O,0.6,kg/TJ,1692.8198364,kg +e24eb1ef-b4e5-3749-9d52-8467120deae0,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2010,naphtha combustion consumption by to the public,286.6363192,TJ,CO2,73300.0,kg/TJ,21010442.19736,kg +b77975a5-6714-3485-aa78-a74595e6ea0c,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2010,naphtha combustion consumption by to the public,286.6363192,TJ,CH4,3.0,kg/TJ,859.9089576,kg +6e194c16-a52f-309d-889c-976b7dd79998,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2010,naphtha combustion consumption by to the public,286.6363192,TJ,N2O,0.6,kg/TJ,171.98179152,kg +a581cc96-d675-3f1d-a3d2-3bc17562f3cb,SESCO,II.1.1,Tucuman,AR-T,annual,2010,naphtha combustion consumption by to the public,519.9144951,TJ,CO2,73300.0,kg/TJ,38109732.49083,kg +ef3e1ea4-a296-3c21-8e14-9355ddea87c7,SESCO,II.1.1,Tucuman,AR-T,annual,2010,naphtha combustion consumption by to the public,519.9144951,TJ,CH4,3.0,kg/TJ,1559.7434853,kg +99c46ebf-eaab-335f-bf22-ae4006a2e89e,SESCO,II.1.1,Tucuman,AR-T,annual,2010,naphtha combustion consumption by to the public,519.9144951,TJ,N2O,0.6,kg/TJ,311.94869706,kg +367bd99a-dbb6-3800-9b50-dffda8ca4205,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,naphtha combustion consumption by to the public,3536.9498009999993,TJ,CO2,73300.0,kg/TJ,259258420.41329995,kg +b2614277-498a-30b6-aabe-61a014e447c6,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,naphtha combustion consumption by to the public,3536.9498009999993,TJ,CH4,3.0,kg/TJ,10610.849402999998,kg +515e73b1-978f-39f0-94e2-7ef6ef25e1ce,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,naphtha combustion consumption by to the public,3536.9498009999993,TJ,N2O,0.6,kg/TJ,2122.1698805999995,kg +2409791e-8867-389c-a65a-b6d4d34cb28a,SESCO,II.1.1,Capital Federal,AR-C,annual,2010,naphtha combustion consumption by to the public,1967.9718981999997,TJ,CO2,73300.0,kg/TJ,144252340.13805997,kg +3f1e650c-9477-3542-8fb2-3486c5e644aa,SESCO,II.1.1,Capital Federal,AR-C,annual,2010,naphtha combustion consumption by to the public,1967.9718981999997,TJ,CH4,3.0,kg/TJ,5903.915694599999,kg +a5c3ea05-4e79-3f05-94b1-36cdb9d824ab,SESCO,II.1.1,Capital Federal,AR-C,annual,2010,naphtha combustion consumption by to the public,1967.9718981999997,TJ,N2O,0.6,kg/TJ,1180.7831389199998,kg +1e42a973-c4cc-343e-82c2-e3134d2106c2,SESCO,II.1.1,Catamarca,AR-K,annual,2010,naphtha combustion consumption by to the public,18.133038,TJ,CO2,73300.0,kg/TJ,1329151.6853999998,kg +719852a9-c62d-3e2b-afe6-0c6a10f21108,SESCO,II.1.1,Catamarca,AR-K,annual,2010,naphtha combustion consumption by to the public,18.133038,TJ,CH4,3.0,kg/TJ,54.399114,kg +bdaee9e2-c840-35a5-a460-ed4895ddd8b0,SESCO,II.1.1,Catamarca,AR-K,annual,2010,naphtha combustion consumption by to the public,18.133038,TJ,N2O,0.6,kg/TJ,10.8798228,kg +505c78c9-27b2-3b1e-a90b-cd7d04305a2d,SESCO,II.1.1,Chaco,AR-H,annual,2010,naphtha combustion consumption by to the public,129.95343899999997,TJ,CO2,73300.0,kg/TJ,9525587.078699999,kg +8a92ad82-b457-3b69-aa95-65efcdd915d4,SESCO,II.1.1,Chaco,AR-H,annual,2010,naphtha combustion consumption by to the public,129.95343899999997,TJ,CH4,3.0,kg/TJ,389.8603169999999,kg +8153f11b-e522-32a8-ac94-3b31da4a89e1,SESCO,II.1.1,Chaco,AR-H,annual,2010,naphtha combustion consumption by to the public,129.95343899999997,TJ,N2O,0.6,kg/TJ,77.97206339999998,kg +f587b596-e747-3ffa-aa57-e5d9ab9f7717,SESCO,II.1.1,Chubut,AR-U,annual,2010,naphtha combustion consumption by to the public,18.0994583,TJ,CO2,73300.0,kg/TJ,1326690.2933899998,kg +3cd5b4be-8bc5-3a42-a78d-0550ecdaf5a1,SESCO,II.1.1,Chubut,AR-U,annual,2010,naphtha combustion consumption by to the public,18.0994583,TJ,CH4,3.0,kg/TJ,54.2983749,kg +8816f51a-13ea-3318-a33e-113217644441,SESCO,II.1.1,Chubut,AR-U,annual,2010,naphtha combustion consumption by to the public,18.0994583,TJ,N2O,0.6,kg/TJ,10.85967498,kg +142a6898-e330-3bc8-8d1e-dea100384957,SESCO,II.1.1,Corrientes,AR-W,annual,2010,naphtha combustion consumption by to the public,109.134025,TJ,CO2,73300.0,kg/TJ,7999524.0325,kg +13f75ce4-be36-3379-8b50-a34b716f60fe,SESCO,II.1.1,Corrientes,AR-W,annual,2010,naphtha combustion consumption by to the public,109.134025,TJ,CH4,3.0,kg/TJ,327.40207499999997,kg +2784e42f-0d73-3997-8ba5-96ee428f2209,SESCO,II.1.1,Corrientes,AR-W,annual,2010,naphtha combustion consumption by to the public,109.134025,TJ,N2O,0.6,kg/TJ,65.480415,kg +a968f95a-8a5b-3318-9823-f46c526b19fb,SESCO,II.1.1,Córdoba,AR-X,annual,2010,naphtha combustion consumption by to the public,616.4225528999999,TJ,CO2,73300.0,kg/TJ,45183773.127569996,kg +1cd13c05-de78-315f-82ab-9c281f10e55c,SESCO,II.1.1,Córdoba,AR-X,annual,2010,naphtha combustion consumption by to the public,616.4225528999999,TJ,CH4,3.0,kg/TJ,1849.2676586999996,kg +c0f6d75b-28ab-3836-a8f8-e8208833574a,SESCO,II.1.1,Córdoba,AR-X,annual,2010,naphtha combustion consumption by to the public,616.4225528999999,TJ,N2O,0.6,kg/TJ,369.85353173999994,kg +277edf10-3286-3750-8d12-02fd5d3667fd,SESCO,II.1.1,Entre Rios,AR-E,annual,2010,naphtha combustion consumption by to the public,209.03363249999998,TJ,CO2,73300.0,kg/TJ,15322165.262249999,kg +9c16fbba-9005-3467-b5da-641db6c5dfae,SESCO,II.1.1,Entre Rios,AR-E,annual,2010,naphtha combustion consumption by to the public,209.03363249999998,TJ,CH4,3.0,kg/TJ,627.1008975,kg +ed1d9980-179e-3709-86eb-b18bb2872d83,SESCO,II.1.1,Entre Rios,AR-E,annual,2010,naphtha combustion consumption by to the public,209.03363249999998,TJ,N2O,0.6,kg/TJ,125.42017949999999,kg +90860d28-0c55-3c04-8eaf-cbae3baba285,SESCO,II.1.1,Formosa,AR-P,annual,2010,naphtha combustion consumption by to the public,77.09899119999999,TJ,CO2,73300.0,kg/TJ,5651356.054959999,kg +855d5698-4214-3707-b8d6-a71cdcfcfe4c,SESCO,II.1.1,Formosa,AR-P,annual,2010,naphtha combustion consumption by to the public,77.09899119999999,TJ,CH4,3.0,kg/TJ,231.29697359999994,kg +1e9f072c-a88e-32ba-b957-4f3df7b4ef65,SESCO,II.1.1,Formosa,AR-P,annual,2010,naphtha combustion consumption by to the public,77.09899119999999,TJ,N2O,0.6,kg/TJ,46.25939471999999,kg +171f8a3c-f947-376b-a97a-4e9255d978ac,SESCO,II.1.1,Jujuy,AR-Y,annual,2010,naphtha combustion consumption by to the public,30.7254255,TJ,CO2,73300.0,kg/TJ,2252173.68915,kg +494c2d12-b93e-38fb-b321-0875805e34fa,SESCO,II.1.1,Jujuy,AR-Y,annual,2010,naphtha combustion consumption by to the public,30.7254255,TJ,CH4,3.0,kg/TJ,92.1762765,kg +b02f0463-8910-3695-adc7-8fc8e76aeeb8,SESCO,II.1.1,Jujuy,AR-Y,annual,2010,naphtha combustion consumption by to the public,30.7254255,TJ,N2O,0.6,kg/TJ,18.435255299999998,kg +c0f1b1ca-cb89-330f-be6b-f5e57dd17d35,SESCO,II.1.1,La Pampa,AR-L,annual,2010,naphtha combustion consumption by to the public,90.83308849999999,TJ,CO2,73300.0,kg/TJ,6658065.387049999,kg +5ac634dd-21d6-3f48-a9af-0d43c3658b78,SESCO,II.1.1,La Pampa,AR-L,annual,2010,naphtha combustion consumption by to the public,90.83308849999999,TJ,CH4,3.0,kg/TJ,272.4992655,kg +adc64f14-397c-301a-abf8-13dca4209761,SESCO,II.1.1,La Pampa,AR-L,annual,2010,naphtha combustion consumption by to the public,90.83308849999999,TJ,N2O,0.6,kg/TJ,54.49985309999999,kg +f615ab3c-8817-3f1b-a3b7-063943821e70,SESCO,II.1.1,La Rioja,AR-F,annual,2010,naphtha combustion consumption by to the public,31.699236799999998,TJ,CO2,73300.0,kg/TJ,2323554.0574399997,kg +e7453c3a-676e-37ec-851d-246d9a57fc9b,SESCO,II.1.1,La Rioja,AR-F,annual,2010,naphtha combustion consumption by to the public,31.699236799999998,TJ,CH4,3.0,kg/TJ,95.0977104,kg +8384a2ae-ea7b-31d0-b160-b8ca21e1f0ea,SESCO,II.1.1,La Rioja,AR-F,annual,2010,naphtha combustion consumption by to the public,31.699236799999998,TJ,N2O,0.6,kg/TJ,19.019542079999997,kg +ac608604-6ae6-3eac-bd7f-cd404593d437,SESCO,II.1.1,Mendoza,AR-M,annual,2010,naphtha combustion consumption by to the public,140.7325227,TJ,CO2,73300.0,kg/TJ,10315693.91391,kg +75d10993-11e8-3287-ac3d-4a08899806fb,SESCO,II.1.1,Mendoza,AR-M,annual,2010,naphtha combustion consumption by to the public,140.7325227,TJ,CH4,3.0,kg/TJ,422.1975681,kg +e006135d-c97c-3c99-af92-7721a5e66c0c,SESCO,II.1.1,Mendoza,AR-M,annual,2010,naphtha combustion consumption by to the public,140.7325227,TJ,N2O,0.6,kg/TJ,84.43951362,kg +d3d486d2-2987-3ded-b381-6c28b01cb460,SESCO,II.1.1,Misiones,AR-N,annual,2010,naphtha combustion consumption by to the public,113.26432809999999,TJ,CO2,73300.0,kg/TJ,8302275.249729999,kg +d81ceb9c-2f03-3f3f-abcc-9087b44339a6,SESCO,II.1.1,Misiones,AR-N,annual,2010,naphtha combustion consumption by to the public,113.26432809999999,TJ,CH4,3.0,kg/TJ,339.79298429999994,kg +e4ac2b49-c5ad-378b-995d-67ab1b60edce,SESCO,II.1.1,Misiones,AR-N,annual,2010,naphtha combustion consumption by to the public,113.26432809999999,TJ,N2O,0.6,kg/TJ,67.95859685999999,kg +99318be6-f8bd-32eb-b717-843ee801f8c8,SESCO,II.1.1,Neuquén,AR-Q,annual,2010,naphtha combustion consumption by to the public,22.6662975,TJ,CO2,73300.0,kg/TJ,1661439.6067499998,kg +8fef138e-f0ec-3eab-852a-9d124cd095ed,SESCO,II.1.1,Neuquén,AR-Q,annual,2010,naphtha combustion consumption by to the public,22.6662975,TJ,CH4,3.0,kg/TJ,67.9988925,kg +d1adf1a2-2fc5-3460-a08d-8c269464da67,SESCO,II.1.1,Neuquén,AR-Q,annual,2010,naphtha combustion consumption by to the public,22.6662975,TJ,N2O,0.6,kg/TJ,13.5997785,kg +b36b9970-8d85-3ead-9bd1-e5cd219c7ba5,SESCO,II.1.1,Rio Negro,AR-R,annual,2010,naphtha combustion consumption by to the public,43.720769399999995,TJ,CO2,73300.0,kg/TJ,3204732.3970199996,kg +02ba82b2-f05f-3ae7-a1b2-ac57bb82febe,SESCO,II.1.1,Rio Negro,AR-R,annual,2010,naphtha combustion consumption by to the public,43.720769399999995,TJ,CH4,3.0,kg/TJ,131.16230819999998,kg +c09eb864-879a-3cd4-815a-2c408f0ed0c4,SESCO,II.1.1,Rio Negro,AR-R,annual,2010,naphtha combustion consumption by to the public,43.720769399999995,TJ,N2O,0.6,kg/TJ,26.232461639999997,kg +baa18a99-61b9-3e8d-b982-700ba57f4a1b,SESCO,II.1.1,Salta,AR-A,annual,2010,naphtha combustion consumption by to the public,51.57841919999999,TJ,CO2,73300.0,kg/TJ,3780698.1273599993,kg +d69656a5-9710-3bc8-b1a1-6553eb1a6ff8,SESCO,II.1.1,Salta,AR-A,annual,2010,naphtha combustion consumption by to the public,51.57841919999999,TJ,CH4,3.0,kg/TJ,154.73525759999998,kg +2f98c421-59cd-3e0d-990b-32deddaaac06,SESCO,II.1.1,Salta,AR-A,annual,2010,naphtha combustion consumption by to the public,51.57841919999999,TJ,N2O,0.6,kg/TJ,30.947051519999995,kg +1c429c38-2187-3428-9a6e-ee6cf8a85edb,SESCO,II.1.1,San Juan,AR-J,annual,2010,naphtha combustion consumption by to the public,22.632717799999998,TJ,CO2,73300.0,kg/TJ,1658978.21474,kg +8b3f5902-3d3e-360c-982d-58c8601b72b2,SESCO,II.1.1,San Juan,AR-J,annual,2010,naphtha combustion consumption by to the public,22.632717799999998,TJ,CH4,3.0,kg/TJ,67.8981534,kg +653e610e-f527-3329-b7a6-1e21dbc05112,SESCO,II.1.1,San Juan,AR-J,annual,2010,naphtha combustion consumption by to the public,22.632717799999998,TJ,N2O,0.6,kg/TJ,13.57963068,kg +e1c2b58c-72c9-3881-94ed-176428320453,SESCO,II.1.1,San Luis,AR-D,annual,2010,naphtha combustion consumption by to the public,6.010766299999999,TJ,CO2,73300.0,kg/TJ,440589.16978999996,kg +62f758c8-87f4-37c0-9494-d4fd0df3de58,SESCO,II.1.1,San Luis,AR-D,annual,2010,naphtha combustion consumption by to the public,6.010766299999999,TJ,CH4,3.0,kg/TJ,18.032298899999997,kg +32c791fe-83da-3faa-a6f5-701fa88f784d,SESCO,II.1.1,San Luis,AR-D,annual,2010,naphtha combustion consumption by to the public,6.010766299999999,TJ,N2O,0.6,kg/TJ,3.6064597799999993,kg +dd8004e1-153b-370b-8e76-b5e4dbf7dc40,SESCO,II.1.1,Santa Fe,AR-S,annual,2010,naphtha combustion consumption by to the public,947.4512354999999,TJ,CO2,73300.0,kg/TJ,69448175.56215,kg +7609eb31-ee5a-3055-b6df-49c607e55cd4,SESCO,II.1.1,Santa Fe,AR-S,annual,2010,naphtha combustion consumption by to the public,947.4512354999999,TJ,CH4,3.0,kg/TJ,2842.3537065,kg +f4b6e4ec-95e7-3e4b-9d63-6c01d3f01d2e,SESCO,II.1.1,Santa Fe,AR-S,annual,2010,naphtha combustion consumption by to the public,947.4512354999999,TJ,N2O,0.6,kg/TJ,568.4707413,kg +9b9ef1aa-fd94-3a6f-8d74-a7de3d188ad7,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2010,naphtha combustion consumption by to the public,80.7927582,TJ,CO2,73300.0,kg/TJ,5922109.1760599995,kg +ee5a693b-ac7a-32e4-a0d7-000140baa181,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2010,naphtha combustion consumption by to the public,80.7927582,TJ,CH4,3.0,kg/TJ,242.3782746,kg +1ae1b7fa-72f4-3855-855f-866eb9f99266,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2010,naphtha combustion consumption by to the public,80.7927582,TJ,N2O,0.6,kg/TJ,48.47565492,kg +04d51342-c343-3c3b-b925-850ab6e3c24a,SESCO,II.1.1,Tucuman,AR-T,annual,2010,naphtha combustion consumption by to the public,122.36442679999999,TJ,CO2,73300.0,kg/TJ,8969312.484439999,kg +063ffe5d-df44-325d-acc7-eb231d06575a,SESCO,II.1.1,Tucuman,AR-T,annual,2010,naphtha combustion consumption by to the public,122.36442679999999,TJ,CH4,3.0,kg/TJ,367.09328039999997,kg +29b7bfb1-052c-3028-92ba-3367d0631aaf,SESCO,II.1.1,Tucuman,AR-T,annual,2010,naphtha combustion consumption by to the public,122.36442679999999,TJ,N2O,0.6,kg/TJ,73.41865607999999,kg +6302ae2c-502e-3b2f-909b-89311d56169c,SESCO,II.2.1,Buenos Aires,AR-B,annual,2010,naphtha combustion consumption by railway transport,183.00936499999997,TJ,CO2,73300.0,kg/TJ,13414586.454499997,kg +f7d7dfb0-594f-3a65-bb4e-1e8bbe98586d,SESCO,II.2.1,Buenos Aires,AR-B,annual,2010,naphtha combustion consumption by railway transport,183.00936499999997,TJ,CH4,3.0,kg/TJ,549.0280949999999,kg +d1915715-d5e6-36ab-9f52-650613d52d66,SESCO,II.2.1,Buenos Aires,AR-B,annual,2010,naphtha combustion consumption by railway transport,183.00936499999997,TJ,N2O,0.6,kg/TJ,109.80561899999998,kg +c16750c4-ef92-3462-945c-3a5d78d1f655,SESCO,II.5.1,Buenos Aires,AR-B,annual,2010,naphtha combustion consumption by agriculture machines,1.9476225999999999,TJ,CO2,73300.0,kg/TJ,142760.73658,kg +8cfdda35-414e-3016-8800-b003f638c903,SESCO,II.5.1,Buenos Aires,AR-B,annual,2010,naphtha combustion consumption by agriculture machines,1.9476225999999999,TJ,CH4,3.0,kg/TJ,5.8428678,kg +82d13313-129b-3654-8f3d-2c5867480de0,SESCO,II.5.1,Buenos Aires,AR-B,annual,2010,naphtha combustion consumption by agriculture machines,1.9476225999999999,TJ,N2O,0.6,kg/TJ,1.1685735599999998,kg +a64385a8-61f0-3555-b5d7-f3782c006411,SESCO,II.5.1,Entre Rios,AR-E,annual,2010,naphtha combustion consumption by agriculture machines,1.1081301000000001,TJ,CO2,73300.0,kg/TJ,81225.93633000001,kg +ce7877c6-e415-3588-ac5b-fa194041e742,SESCO,II.5.1,Entre Rios,AR-E,annual,2010,naphtha combustion consumption by agriculture machines,1.1081301000000001,TJ,CH4,3.0,kg/TJ,3.3243903,kg +21abe357-5050-3ec9-87ff-22d376f7eeb6,SESCO,II.5.1,Entre Rios,AR-E,annual,2010,naphtha combustion consumption by agriculture machines,1.1081301000000001,TJ,N2O,0.6,kg/TJ,0.66487806,kg +577750b6-6327-3fd8-b013-c40de3be7d32,SESCO,II.5.1,Santa Fe,AR-S,annual,2010,naphtha combustion consumption by agriculture machines,20.8529937,TJ,CO2,73300.0,kg/TJ,1528524.4382099998,kg +11971d09-7a55-3c06-bc1c-23ee394b8fa6,SESCO,II.5.1,Santa Fe,AR-S,annual,2010,naphtha combustion consumption by agriculture machines,20.8529937,TJ,CH4,3.0,kg/TJ,62.5589811,kg +e9692cef-c99e-3532-8aaf-630876f4e542,SESCO,II.5.1,Santa Fe,AR-S,annual,2010,naphtha combustion consumption by agriculture machines,20.8529937,TJ,N2O,0.6,kg/TJ,12.511796219999999,kg +90888e80-6ed0-36bb-8b8c-f51823ac9252,SESCO,II.5.1,Santiago del Estero,AR-G,annual,2010,naphtha combustion consumption by agriculture machines,0.5036955,TJ,CO2,73300.0,kg/TJ,36920.88015,kg +d51600a5-b12f-3378-a214-172ae8844bb4,SESCO,II.5.1,Santiago del Estero,AR-G,annual,2010,naphtha combustion consumption by agriculture machines,0.5036955,TJ,CH4,3.0,kg/TJ,1.5110864999999998,kg +6ce5a287-d475-36eb-89c5-8236be97ba39,SESCO,II.5.1,Santiago del Estero,AR-G,annual,2010,naphtha combustion consumption by agriculture machines,0.5036955,TJ,N2O,0.6,kg/TJ,0.30221729999999997,kg +0a7c9643-5398-3518-a8df-5eb8b5742cd3,SESCO,II.5.1,Buenos Aires,AR-B,annual,2010,naphtha combustion consumption by agriculture machines,0.1678985,TJ,CO2,73300.0,kg/TJ,12306.96005,kg +f371ee52-8a7c-37e6-8397-2c731e62aa0f,SESCO,II.5.1,Buenos Aires,AR-B,annual,2010,naphtha combustion consumption by agriculture machines,0.1678985,TJ,CH4,3.0,kg/TJ,0.5036955000000001,kg +f90aecbf-4bee-3bb3-8364-b3d8cde582d0,SESCO,II.5.1,Buenos Aires,AR-B,annual,2010,naphtha combustion consumption by agriculture machines,0.1678985,TJ,N2O,0.6,kg/TJ,0.1007391,kg +5873c75a-dc4d-3bd4-8418-ea52a2e55b1d,SESCO,II.5.1,Entre Rios,AR-E,annual,2010,naphtha combustion consumption by agriculture machines,0.2350579,TJ,CO2,73300.0,kg/TJ,17229.74407,kg +5ad9d8e0-0ad7-3510-88cc-2d5fd048f309,SESCO,II.5.1,Entre Rios,AR-E,annual,2010,naphtha combustion consumption by agriculture machines,0.2350579,TJ,CH4,3.0,kg/TJ,0.7051737,kg +be0183b6-2882-3d46-bd52-aafd41f6e7ca,SESCO,II.5.1,Entre Rios,AR-E,annual,2010,naphtha combustion consumption by agriculture machines,0.2350579,TJ,N2O,0.6,kg/TJ,0.14103474,kg +0adda0b6-ea06-3046-a5f8-215ac4d5aba4,SESCO,II.5.1,Santa Fe,AR-S,annual,2010,naphtha combustion consumption by agriculture machines,2.1155211,TJ,CO2,73300.0,kg/TJ,155067.69663,kg +5731e6dd-9b0c-3d84-8f61-58fe850a9d5e,SESCO,II.5.1,Santa Fe,AR-S,annual,2010,naphtha combustion consumption by agriculture machines,2.1155211,TJ,CH4,3.0,kg/TJ,6.3465633,kg +6b9fc178-809e-3c98-95aa-11b5f3a70c4d,SESCO,II.5.1,Santa Fe,AR-S,annual,2010,naphtha combustion consumption by agriculture machines,2.1155211,TJ,N2O,0.6,kg/TJ,1.26931266,kg +bb7ed017-db10-32ba-8ec6-d2acdc467f7b,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,naphtha combustion consumption by to the public,1419.8504550999999,TJ,CO2,73300.0,kg/TJ,104075038.35882999,kg +b34b2f8e-e96c-31b5-a017-6bcbc039f5ca,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,naphtha combustion consumption by to the public,1419.8504550999999,TJ,CH4,3.0,kg/TJ,4259.5513653,kg +826c5bbe-8bd5-3173-9675-1999b90c3118,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,naphtha combustion consumption by to the public,1419.8504550999999,TJ,N2O,0.6,kg/TJ,851.9102730599999,kg +f60fc9ed-7e58-3a12-89be-c0dadf0b669f,SESCO,II.1.1,Capital Federal,AR-C,annual,2010,naphtha combustion consumption by to the public,52.451491399999995,TJ,CO2,73300.0,kg/TJ,3844694.3196199997,kg +ad83d8a5-7f69-3804-a595-169714f0f50d,SESCO,II.1.1,Capital Federal,AR-C,annual,2010,naphtha combustion consumption by to the public,52.451491399999995,TJ,CH4,3.0,kg/TJ,157.35447419999997,kg +36937352-1fac-33b0-b049-81c5d05ab274,SESCO,II.1.1,Capital Federal,AR-C,annual,2010,naphtha combustion consumption by to the public,52.451491399999995,TJ,N2O,0.6,kg/TJ,31.470894839999996,kg +d01a8223-9536-356b-b911-29b51f4ad6f3,SESCO,II.1.1,Catamarca,AR-K,annual,2010,naphtha combustion consumption by to the public,0.40295639999999994,TJ,CO2,73300.0,kg/TJ,29536.704119999995,kg +c5385c6a-1d66-3540-8a82-cb3de7b4605d,SESCO,II.1.1,Catamarca,AR-K,annual,2010,naphtha combustion consumption by to the public,0.40295639999999994,TJ,CH4,3.0,kg/TJ,1.2088691999999999,kg +0ce9d564-1fe8-37aa-b35b-4db985ff1679,SESCO,II.1.1,Catamarca,AR-K,annual,2010,naphtha combustion consumption by to the public,0.40295639999999994,TJ,N2O,0.6,kg/TJ,0.24177383999999996,kg +2510a609-29d5-3d2e-bd3c-18efb4ddfbf4,SESCO,II.1.1,Chaco,AR-H,annual,2010,naphtha combustion consumption by to the public,7.824070099999999,TJ,CO2,73300.0,kg/TJ,573504.3383299999,kg +b951399f-07ec-3d30-950b-8096bda87f4d,SESCO,II.1.1,Chaco,AR-H,annual,2010,naphtha combustion consumption by to the public,7.824070099999999,TJ,CH4,3.0,kg/TJ,23.472210299999997,kg +154e9751-053b-3d95-85a9-b942b512f9f5,SESCO,II.1.1,Chaco,AR-H,annual,2010,naphtha combustion consumption by to the public,7.824070099999999,TJ,N2O,0.6,kg/TJ,4.694442059999999,kg +43799a36-6be5-3d39-98e6-a191e57eb5cf,SESCO,II.1.1,Corrientes,AR-W,annual,2010,naphtha combustion consumption by to the public,45.366174699999995,TJ,CO2,73300.0,kg/TJ,3325340.6055099997,kg +cf2b3971-b221-3d87-8c48-e727729303b1,SESCO,II.1.1,Corrientes,AR-W,annual,2010,naphtha combustion consumption by to the public,45.366174699999995,TJ,CH4,3.0,kg/TJ,136.0985241,kg +681632aa-441d-3b25-8412-c80afcc7c215,SESCO,II.1.1,Corrientes,AR-W,annual,2010,naphtha combustion consumption by to the public,45.366174699999995,TJ,N2O,0.6,kg/TJ,27.219704819999997,kg +539b2cd7-7ace-3741-87cc-1108435ce4f7,SESCO,II.1.1,Entre Rios,AR-E,annual,2010,naphtha combustion consumption by to the public,127.43496149999999,TJ,CO2,73300.0,kg/TJ,9340982.677949999,kg +31fbf71f-1098-3a82-b9ae-68a518666c66,SESCO,II.1.1,Entre Rios,AR-E,annual,2010,naphtha combustion consumption by to the public,127.43496149999999,TJ,CH4,3.0,kg/TJ,382.30488449999996,kg +f00342fd-a4c9-3e05-a010-9b251c272110,SESCO,II.1.1,Entre Rios,AR-E,annual,2010,naphtha combustion consumption by to the public,127.43496149999999,TJ,N2O,0.6,kg/TJ,76.46097689999999,kg +0e23ecfe-b8f3-3fd1-bb10-e1c37dfd2636,SESCO,II.1.1,Jujuy,AR-Y,annual,2010,naphtha combustion consumption by to the public,106.783446,TJ,CO2,73300.0,kg/TJ,7827226.5918,kg +f326ccd4-419e-39a2-945b-0bae38219f04,SESCO,II.1.1,Jujuy,AR-Y,annual,2010,naphtha combustion consumption by to the public,106.783446,TJ,CH4,3.0,kg/TJ,320.35033799999997,kg +8d08e153-0e53-3d24-90dd-9133ad561b33,SESCO,II.1.1,Jujuy,AR-Y,annual,2010,naphtha combustion consumption by to the public,106.783446,TJ,N2O,0.6,kg/TJ,64.0700676,kg +1f6dcb14-f609-3700-acbb-e613e49e3730,SESCO,II.1.1,La Pampa,AR-L,annual,2010,naphtha combustion consumption by to the public,82.4045838,TJ,CO2,73300.0,kg/TJ,6040255.99254,kg +91394f59-82ac-33b9-808e-30819693940c,SESCO,II.1.1,La Pampa,AR-L,annual,2010,naphtha combustion consumption by to the public,82.4045838,TJ,CH4,3.0,kg/TJ,247.21375139999998,kg +34ddff67-c9c4-3a96-82da-e79b24cca994,SESCO,II.1.1,La Pampa,AR-L,annual,2010,naphtha combustion consumption by to the public,82.4045838,TJ,N2O,0.6,kg/TJ,49.44275028,kg +7df73e09-88d1-3fae-b7df-c329803987e8,SESCO,II.1.1,Misiones,AR-N,annual,2010,naphtha combustion consumption by to the public,435.8980856999999,TJ,CO2,73300.0,kg/TJ,31951329.68180999,kg +466e2127-6114-3e46-80bd-4f45ce572298,SESCO,II.1.1,Misiones,AR-N,annual,2010,naphtha combustion consumption by to the public,435.8980856999999,TJ,CH4,3.0,kg/TJ,1307.6942570999997,kg +f4ac3847-5fc3-332c-8813-69e114eb8032,SESCO,II.1.1,Misiones,AR-N,annual,2010,naphtha combustion consumption by to the public,435.8980856999999,TJ,N2O,0.6,kg/TJ,261.53885141999996,kg +2abaaa45-2368-38a4-a454-7dc42848b9fe,SESCO,II.1.1,Neuquén,AR-Q,annual,2010,naphtha combustion consumption by to the public,51.041143999999996,TJ,CO2,73300.0,kg/TJ,3741315.8551999996,kg +2791425c-deae-3717-bd43-a7f2b7e55861,SESCO,II.1.1,Neuquén,AR-Q,annual,2010,naphtha combustion consumption by to the public,51.041143999999996,TJ,CH4,3.0,kg/TJ,153.12343199999998,kg +ee48b1f7-a058-30f5-b7ba-fc8998e52d02,SESCO,II.1.1,Neuquén,AR-Q,annual,2010,naphtha combustion consumption by to the public,51.041143999999996,TJ,N2O,0.6,kg/TJ,30.624686399999995,kg +5af1968c-0d89-3fb3-b816-a6fb7ca92dd1,SESCO,II.1.1,Rio Negro,AR-R,annual,2010,naphtha combustion consumption by to the public,19.7784433,TJ,CO2,73300.0,kg/TJ,1449759.89389,kg +00d8785b-90bf-3d08-ac53-b2e3bc9d1227,SESCO,II.1.1,Rio Negro,AR-R,annual,2010,naphtha combustion consumption by to the public,19.7784433,TJ,CH4,3.0,kg/TJ,59.3353299,kg +a4645699-b696-3a96-9af5-5401e8ea82e1,SESCO,II.1.1,Rio Negro,AR-R,annual,2010,naphtha combustion consumption by to the public,19.7784433,TJ,N2O,0.6,kg/TJ,11.86706598,kg +bd9828a5-2bb2-3693-86e1-0ed097637f20,SESCO,II.1.1,Salta,AR-A,annual,2010,naphtha combustion consumption by to the public,57.5891855,TJ,CO2,73300.0,kg/TJ,4221287.29715,kg +5e8f0d45-b773-3a86-b778-163a5284afad,SESCO,II.1.1,Salta,AR-A,annual,2010,naphtha combustion consumption by to the public,57.5891855,TJ,CH4,3.0,kg/TJ,172.7675565,kg +7c769689-7137-3eea-bfa7-8c93510e64d6,SESCO,II.1.1,Salta,AR-A,annual,2010,naphtha combustion consumption by to the public,57.5891855,TJ,N2O,0.6,kg/TJ,34.5535113,kg +edcd9918-3cc7-30a5-a145-9e96dd769a1c,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2010,naphtha combustion consumption by to the public,5.809288099999999,TJ,CO2,73300.0,kg/TJ,425820.81772999995,kg +73a836d5-b8af-37c6-a04e-2e5f5013188c,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2010,naphtha combustion consumption by to the public,5.809288099999999,TJ,CH4,3.0,kg/TJ,17.427864299999996,kg +e1b57e66-57a3-358d-a800-5822151e409e,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2010,naphtha combustion consumption by to the public,5.809288099999999,TJ,N2O,0.6,kg/TJ,3.485572859999999,kg +57e40727-fd0f-3a5a-b97f-733e2fe87572,SESCO,II.1.1,Santa Fe,AR-S,annual,2010,naphtha combustion consumption by to the public,115.3798492,TJ,CO2,73300.0,kg/TJ,8457342.94636,kg +048812f3-c9c8-396f-a297-7fd35331cb92,SESCO,II.1.1,Santa Fe,AR-S,annual,2010,naphtha combustion consumption by to the public,115.3798492,TJ,CH4,3.0,kg/TJ,346.1395476,kg +6f730b2e-67f8-3ace-b973-1ea960fb69c5,SESCO,II.1.1,Santa Fe,AR-S,annual,2010,naphtha combustion consumption by to the public,115.3798492,TJ,N2O,0.6,kg/TJ,69.22790952,kg +8ceeb229-4795-34a5-b654-7cc680e364c3,SESCO,II.1.1,Tucuman,AR-T,annual,2010,naphtha combustion consumption by to the public,30.926903699999997,TJ,CO2,73300.0,kg/TJ,2266942.04121,kg +79ced93b-975a-39d2-adc5-2962e5d94bcf,SESCO,II.1.1,Tucuman,AR-T,annual,2010,naphtha combustion consumption by to the public,30.926903699999997,TJ,CH4,3.0,kg/TJ,92.78071109999999,kg +a305d156-bf43-379a-b7bf-4269fb81af81,SESCO,II.1.1,Tucuman,AR-T,annual,2010,naphtha combustion consumption by to the public,30.926903699999997,TJ,N2O,0.6,kg/TJ,18.556142219999998,kg +af81fa51-4080-34ce-9389-095f82c4df44,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,naphtha combustion consumption by to the public,30630.059151999998,TJ,CO2,73300.0,kg/TJ,2245183335.8416,kg +a459bfa5-abb0-32f9-b2f7-856ee528a0e2,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,naphtha combustion consumption by to the public,30630.059151999998,TJ,CH4,3.0,kg/TJ,91890.17745599999,kg +8125f0da-04a7-378a-b473-6d45c83651ed,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,naphtha combustion consumption by to the public,30630.059151999998,TJ,N2O,0.6,kg/TJ,18378.035491199997,kg +2e1a6cde-e228-3e7a-8e08-a136080f5fde,SESCO,II.1.1,Capital Federal,AR-C,annual,2010,naphtha combustion consumption by to the public,7131.2537296,TJ,CO2,73300.0,kg/TJ,522720898.37968,kg +3ad316bc-38ed-3972-b29c-ca1843415664,SESCO,II.1.1,Capital Federal,AR-C,annual,2010,naphtha combustion consumption by to the public,7131.2537296,TJ,CH4,3.0,kg/TJ,21393.7611888,kg +37e81de6-16f8-3a51-975e-5a3e653872ad,SESCO,II.1.1,Capital Federal,AR-C,annual,2010,naphtha combustion consumption by to the public,7131.2537296,TJ,N2O,0.6,kg/TJ,4278.75223776,kg +89466f86-ab18-3cf8-aaf5-d63db9909f2d,SESCO,II.1.1,Catamarca,AR-K,annual,2010,naphtha combustion consumption by to the public,539.5921993,TJ,CO2,73300.0,kg/TJ,39552108.208689995,kg +4073544d-8110-3e73-a873-005b37130414,SESCO,II.1.1,Catamarca,AR-K,annual,2010,naphtha combustion consumption by to the public,539.5921993,TJ,CH4,3.0,kg/TJ,1618.7765978999998,kg +fa202120-fd4c-3c47-af6c-1912878bc1ef,SESCO,II.1.1,Catamarca,AR-K,annual,2010,naphtha combustion consumption by to the public,539.5921993,TJ,N2O,0.6,kg/TJ,323.75531957999993,kg +24295bec-0d07-329b-87d9-84017959395c,SESCO,II.1.1,Chaco,AR-H,annual,2010,naphtha combustion consumption by to the public,1859.0393514,TJ,CO2,73300.0,kg/TJ,136267584.45762,kg +5253cc08-aec0-3a23-a4cf-4573dda9650a,SESCO,II.1.1,Chaco,AR-H,annual,2010,naphtha combustion consumption by to the public,1859.0393514,TJ,CH4,3.0,kg/TJ,5577.1180542,kg +72892866-28a2-3d4d-b565-78b6b79d47a1,SESCO,II.1.1,Chaco,AR-H,annual,2010,naphtha combustion consumption by to the public,1859.0393514,TJ,N2O,0.6,kg/TJ,1115.42361084,kg +d5b15eaa-bf66-3656-91a6-b0d033419c8d,SESCO,II.1.1,Chubut,AR-U,annual,2010,naphtha combustion consumption by to the public,3140.4742830999994,TJ,CO2,73300.0,kg/TJ,230196764.95122996,kg +5751de0b-b780-33ff-8826-d2de4d4890d3,SESCO,II.1.1,Chubut,AR-U,annual,2010,naphtha combustion consumption by to the public,3140.4742830999994,TJ,CH4,3.0,kg/TJ,9421.422849299997,kg +6f4bc9b6-b687-3c31-9766-9cd821d5a920,SESCO,II.1.1,Chubut,AR-U,annual,2010,naphtha combustion consumption by to the public,3140.4742830999994,TJ,N2O,0.6,kg/TJ,1884.2845698599995,kg +97d1da8f-eb77-3f24-8dd1-61196ee3adb8,SESCO,II.1.1,Corrientes,AR-W,annual,2010,naphtha combustion consumption by to the public,2048.697497,TJ,CO2,73300.0,kg/TJ,150169526.53010002,kg +5775825c-1ee6-39ad-8c18-d80ddfdd8520,SESCO,II.1.1,Corrientes,AR-W,annual,2010,naphtha combustion consumption by to the public,2048.697497,TJ,CH4,3.0,kg/TJ,6146.092491,kg +2d744d33-1088-30b1-a625-b9072ac4558f,SESCO,II.1.1,Corrientes,AR-W,annual,2010,naphtha combustion consumption by to the public,2048.697497,TJ,N2O,0.6,kg/TJ,1229.2184982,kg +5d3e3e15-db5a-32d8-9672-66055ab5a6e4,SESCO,II.1.1,Córdoba,AR-X,annual,2010,naphtha combustion consumption by to the public,8019.000258499999,TJ,CO2,73300.0,kg/TJ,587792718.9480499,kg +30d61796-5681-3f18-93f2-0969fa9f59ae,SESCO,II.1.1,Córdoba,AR-X,annual,2010,naphtha combustion consumption by to the public,8019.000258499999,TJ,CH4,3.0,kg/TJ,24057.000775499997,kg +3dd33955-e8ff-3387-8ccf-53e1d4d25770,SESCO,II.1.1,Córdoba,AR-X,annual,2010,naphtha combustion consumption by to the public,8019.000258499999,TJ,N2O,0.6,kg/TJ,4811.400155099999,kg +bafe3d9c-8883-3675-bfee-f62fc3fb816c,SESCO,II.1.1,Entre Rios,AR-E,annual,2010,naphtha combustion consumption by to the public,2287.8857000999997,TJ,CO2,73300.0,kg/TJ,167702021.81732997,kg +b4adf16e-7bea-39c6-aad4-cb4c69093caf,SESCO,II.1.1,Entre Rios,AR-E,annual,2010,naphtha combustion consumption by to the public,2287.8857000999997,TJ,CH4,3.0,kg/TJ,6863.657100299999,kg +ef93603c-e37b-38db-8ff2-91f1ea44b730,SESCO,II.1.1,Entre Rios,AR-E,annual,2010,naphtha combustion consumption by to the public,2287.8857000999997,TJ,N2O,0.6,kg/TJ,1372.7314200599997,kg +214bec74-f3af-3f00-9ec8-5ab905c71f82,SESCO,II.1.1,Formosa,AR-P,annual,2010,naphtha combustion consumption by to the public,791.6414275,TJ,CO2,73300.0,kg/TJ,58027316.635749996,kg +cdb8af86-64b4-321d-aca7-1a6bd6bc7573,SESCO,II.1.1,Formosa,AR-P,annual,2010,naphtha combustion consumption by to the public,791.6414275,TJ,CH4,3.0,kg/TJ,2374.9242825,kg +65381e74-ef19-3002-b654-995efe99ee46,SESCO,II.1.1,Formosa,AR-P,annual,2010,naphtha combustion consumption by to the public,791.6414275,TJ,N2O,0.6,kg/TJ,474.9848565,kg +64575015-9cb1-397d-a4aa-d2696e285391,SESCO,II.1.1,Jujuy,AR-Y,annual,2010,naphtha combustion consumption by to the public,797.4842953,TJ,CO2,73300.0,kg/TJ,58455598.84549,kg +308b5de5-fc51-3e3d-9da9-fc0d1f576405,SESCO,II.1.1,Jujuy,AR-Y,annual,2010,naphtha combustion consumption by to the public,797.4842953,TJ,CH4,3.0,kg/TJ,2392.4528859,kg +848a37a7-a87b-3968-90f5-2b45b78744a1,SESCO,II.1.1,Jujuy,AR-Y,annual,2010,naphtha combustion consumption by to the public,797.4842953,TJ,N2O,0.6,kg/TJ,478.49057717999995,kg +289b2dbd-15ba-3d53-967c-73bf42e0f6e4,SESCO,II.1.1,La Pampa,AR-L,annual,2010,naphtha combustion consumption by to the public,1263.8055891999998,TJ,CO2,73300.0,kg/TJ,92636949.68835998,kg +98f73b3b-d118-33e2-ad92-ce0c0abdcbd4,SESCO,II.1.1,La Pampa,AR-L,annual,2010,naphtha combustion consumption by to the public,1263.8055891999998,TJ,CH4,3.0,kg/TJ,3791.4167675999993,kg +0d70c92f-2def-3a67-b2ee-4e6a788d84dd,SESCO,II.1.1,La Pampa,AR-L,annual,2010,naphtha combustion consumption by to the public,1263.8055891999998,TJ,N2O,0.6,kg/TJ,758.2833535199999,kg +fa5d78c3-af3e-3cb8-9733-ded69087bc1c,SESCO,II.1.1,La Rioja,AR-F,annual,2010,naphtha combustion consumption by to the public,763.3337403999999,TJ,CO2,73300.0,kg/TJ,55952363.17131999,kg +88834bec-3bda-32aa-ae58-df86b6be7926,SESCO,II.1.1,La Rioja,AR-F,annual,2010,naphtha combustion consumption by to the public,763.3337403999999,TJ,CH4,3.0,kg/TJ,2290.0012211999997,kg +84ccb90e-7a07-3708-a25e-a017ec0da799,SESCO,II.1.1,La Rioja,AR-F,annual,2010,naphtha combustion consumption by to the public,763.3337403999999,TJ,N2O,0.6,kg/TJ,458.0002442399999,kg +d9863257-c3fc-3539-8e00-a124fa86cae7,SESCO,II.1.1,Mendoza,AR-M,annual,2010,naphtha combustion consumption by to the public,3882.4177545999996,TJ,CO2,73300.0,kg/TJ,284581221.41217995,kg +39028f0d-221c-31c9-9635-8096567f1ff1,SESCO,II.1.1,Mendoza,AR-M,annual,2010,naphtha combustion consumption by to the public,3882.4177545999996,TJ,CH4,3.0,kg/TJ,11647.2532638,kg +0ec9b3f3-4d8f-365c-a684-4d6d71179c69,SESCO,II.1.1,Mendoza,AR-M,annual,2010,naphtha combustion consumption by to the public,3882.4177545999996,TJ,N2O,0.6,kg/TJ,2329.4506527599997,kg +47ee55a9-c26d-3848-93cc-669d7dcaabf7,SESCO,II.1.1,Misiones,AR-N,annual,2010,naphtha combustion consumption by to the public,2418.074197,TJ,CO2,73300.0,kg/TJ,177244838.6401,kg +73e6712e-eff5-3693-b444-59f4f2593832,SESCO,II.1.1,Misiones,AR-N,annual,2010,naphtha combustion consumption by to the public,2418.074197,TJ,CH4,3.0,kg/TJ,7254.222591,kg +0dc7e8f5-e2da-35d9-81bc-51085a075264,SESCO,II.1.1,Misiones,AR-N,annual,2010,naphtha combustion consumption by to the public,2418.074197,TJ,N2O,0.6,kg/TJ,1450.8445181999998,kg +687b0cce-a812-3f8b-b26b-62f686b8505a,SESCO,II.1.1,Neuquén,AR-Q,annual,2010,naphtha combustion consumption by to the public,2431.1367003,TJ,CO2,73300.0,kg/TJ,178202320.13199002,kg +7ad539e1-d45f-3484-bf78-f50b4d1b3562,SESCO,II.1.1,Neuquén,AR-Q,annual,2010,naphtha combustion consumption by to the public,2431.1367003,TJ,CH4,3.0,kg/TJ,7293.4101009000005,kg +2883d014-c3ed-3506-b00c-8ae808428ba7,SESCO,II.1.1,Neuquén,AR-Q,annual,2010,naphtha combustion consumption by to the public,2431.1367003,TJ,N2O,0.6,kg/TJ,1458.6820201799999,kg +7c710db2-3cb8-3222-adab-b226f73dc5da,SESCO,II.1.1,Rio Negro,AR-R,annual,2010,naphtha combustion consumption by to the public,2397.2212032999996,TJ,CO2,73300.0,kg/TJ,175716314.20188996,kg +8a8053a3-9376-364e-8683-bc1a67d3f06e,SESCO,II.1.1,Rio Negro,AR-R,annual,2010,naphtha combustion consumption by to the public,2397.2212032999996,TJ,CH4,3.0,kg/TJ,7191.663609899999,kg +ac01e1d8-fd4d-3636-8674-b918d72e3734,SESCO,II.1.1,Rio Negro,AR-R,annual,2010,naphtha combustion consumption by to the public,2397.2212032999996,TJ,N2O,0.6,kg/TJ,1438.3327219799996,kg +b34b9a4a-a0d2-3250-b3e2-bdeef02ce8b6,SESCO,II.1.1,Salta,AR-A,annual,2010,naphtha combustion consumption by to the public,1862.330162,TJ,CO2,73300.0,kg/TJ,136508800.8746,kg +22b42f4f-5c99-36b4-97d5-05ac969ee93a,SESCO,II.1.1,Salta,AR-A,annual,2010,naphtha combustion consumption by to the public,1862.330162,TJ,CH4,3.0,kg/TJ,5586.990486,kg +556c4021-8a36-34a9-9187-2916591e61cb,SESCO,II.1.1,Salta,AR-A,annual,2010,naphtha combustion consumption by to the public,1862.330162,TJ,N2O,0.6,kg/TJ,1117.3980972,kg +528a2036-33a0-3f4f-a099-bb0770e16e3b,SESCO,II.1.1,San Juan,AR-J,annual,2010,naphtha combustion consumption by to the public,1204.7724766,TJ,CO2,73300.0,kg/TJ,88309822.53478,kg +0fc6ecb1-2efa-3adb-9f0a-9dfd502748ec,SESCO,II.1.1,San Juan,AR-J,annual,2010,naphtha combustion consumption by to the public,1204.7724766,TJ,CH4,3.0,kg/TJ,3614.3174297999994,kg +b6d7950d-8179-3c6c-a297-dce13b91aeec,SESCO,II.1.1,San Juan,AR-J,annual,2010,naphtha combustion consumption by to the public,1204.7724766,TJ,N2O,0.6,kg/TJ,722.8634859599999,kg +98fd1125-560d-3faf-a3a9-e395cd61aa9f,SESCO,II.1.1,San Luis,AR-D,annual,2010,naphtha combustion consumption by to the public,1018.0693445999999,TJ,CO2,73300.0,kg/TJ,74624482.95918,kg +dbc0de6f-be13-3b5e-9656-ddfcfcc61743,SESCO,II.1.1,San Luis,AR-D,annual,2010,naphtha combustion consumption by to the public,1018.0693445999999,TJ,CH4,3.0,kg/TJ,3054.2080337999996,kg +937e4ae5-e9e8-3286-b6c6-6fe4e8020699,SESCO,II.1.1,San Luis,AR-D,annual,2010,naphtha combustion consumption by to the public,1018.0693445999999,TJ,N2O,0.6,kg/TJ,610.8416067599999,kg +6ccba809-6013-3b5d-9bf1-b4fd9d250802,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2010,naphtha combustion consumption by to the public,2141.6125269,TJ,CO2,73300.0,kg/TJ,156980198.22177,kg +487d1329-6d29-39f2-8480-9b03e7fc51cf,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2010,naphtha combustion consumption by to the public,2141.6125269,TJ,CH4,3.0,kg/TJ,6424.837580699999,kg +507729c0-97ee-35a3-abc4-d1ad9e432de4,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2010,naphtha combustion consumption by to the public,2141.6125269,TJ,N2O,0.6,kg/TJ,1284.9675161399998,kg +f7651117-a39d-3872-87ab-47d746ad2c76,SESCO,II.1.1,Santa Fe,AR-S,annual,2010,naphtha combustion consumption by to the public,5635.412413399999,TJ,CO2,73300.0,kg/TJ,413075729.90221995,kg +fb036dee-15c5-3e6e-b753-390074943497,SESCO,II.1.1,Santa Fe,AR-S,annual,2010,naphtha combustion consumption by to the public,5635.412413399999,TJ,CH4,3.0,kg/TJ,16906.237240199996,kg +6b5e46cf-d7c5-3406-970f-f42cbc66c90f,SESCO,II.1.1,Santa Fe,AR-S,annual,2010,naphtha combustion consumption by to the public,5635.412413399999,TJ,N2O,0.6,kg/TJ,3381.2474480399997,kg +e9f7a02d-44f4-3555-963f-c9f4b0e7a614,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2010,naphtha combustion consumption by to the public,859.2709433,TJ,CO2,73300.0,kg/TJ,62984560.14389,kg +6f1f6477-f028-310b-864e-6cad1584db38,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2010,naphtha combustion consumption by to the public,859.2709433,TJ,CH4,3.0,kg/TJ,2577.8128299,kg +3788fa13-7e05-30a4-9ba0-57aa6b569975,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2010,naphtha combustion consumption by to the public,859.2709433,TJ,N2O,0.6,kg/TJ,515.5625659799999,kg +7dc51977-5ee4-3617-8fc9-5611cdd4e4fb,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2010,naphtha combustion consumption by to the public,1543.6252293,TJ,CO2,73300.0,kg/TJ,113147729.30769,kg +9615c25a-f7e1-329a-a552-a803b21233e4,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2010,naphtha combustion consumption by to the public,1543.6252293,TJ,CH4,3.0,kg/TJ,4630.8756879,kg +f043b015-c808-30eb-b5e1-0b783ec27982,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2010,naphtha combustion consumption by to the public,1543.6252293,TJ,N2O,0.6,kg/TJ,926.17513758,kg +42d1022e-e3b4-3b53-8a11-39c8ef28dcb7,SESCO,II.1.1,Tucuman,AR-T,annual,2010,naphtha combustion consumption by to the public,1671.4295674999998,TJ,CO2,73300.0,kg/TJ,122515787.29775,kg +ffbe5b0c-8202-3cd0-b9f4-cb39b1c7c366,SESCO,II.1.1,Tucuman,AR-T,annual,2010,naphtha combustion consumption by to the public,1671.4295674999998,TJ,CH4,3.0,kg/TJ,5014.2887025,kg +594fad14-ee9e-3890-a534-24584443e314,SESCO,II.1.1,Tucuman,AR-T,annual,2010,naphtha combustion consumption by to the public,1671.4295674999998,TJ,N2O,0.6,kg/TJ,1002.8577404999999,kg +90ae51aa-ef85-3900-b481-641dd3b3b1ef,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,naphtha combustion consumption by to the public,10457.6252319,TJ,CO2,73300.0,kg/TJ,766543929.4982699,kg +655f4b38-6af4-3265-be21-6f23603f2e34,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,naphtha combustion consumption by to the public,10457.6252319,TJ,CH4,3.0,kg/TJ,31372.8756957,kg +f898f39a-8661-386f-b430-381a2f63370f,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,naphtha combustion consumption by to the public,10457.6252319,TJ,N2O,0.6,kg/TJ,6274.57513914,kg +cc56eb6d-e864-36b3-bc70-ab49be8e334c,SESCO,II.1.1,Capital Federal,AR-C,annual,2010,naphtha combustion consumption by to the public,3065.8601896999994,TJ,CO2,73300.0,kg/TJ,224727551.90500996,kg +88e6bcc9-809f-304c-81e4-7ca58f020ce7,SESCO,II.1.1,Capital Federal,AR-C,annual,2010,naphtha combustion consumption by to the public,3065.8601896999994,TJ,CH4,3.0,kg/TJ,9197.580569099999,kg +e72c85fd-fa70-3680-84fc-7062717926e2,SESCO,II.1.1,Capital Federal,AR-C,annual,2010,naphtha combustion consumption by to the public,3065.8601896999994,TJ,N2O,0.6,kg/TJ,1839.5161138199996,kg +4cf2f8f3-c27e-3be7-8f62-2590cc91de6e,SESCO,II.1.1,Catamarca,AR-K,annual,2010,naphtha combustion consumption by to the public,126.0581938,TJ,CO2,73300.0,kg/TJ,9240065.60554,kg +7a0719c1-0daa-35ea-a2dc-4d91f181d2de,SESCO,II.1.1,Catamarca,AR-K,annual,2010,naphtha combustion consumption by to the public,126.0581938,TJ,CH4,3.0,kg/TJ,378.17458139999997,kg +1f656515-d342-3f74-9c0a-61fc13089ec3,SESCO,II.1.1,Catamarca,AR-K,annual,2010,naphtha combustion consumption by to the public,126.0581938,TJ,N2O,0.6,kg/TJ,75.63491628,kg +9f728905-1f4d-303c-a050-788bb962a094,SESCO,II.1.1,Chaco,AR-H,annual,2010,naphtha combustion consumption by to the public,419.51119209999996,TJ,CO2,73300.0,kg/TJ,30750170.380929995,kg +5cf4863c-2894-3ee1-9e2b-5784016dd0fb,SESCO,II.1.1,Chaco,AR-H,annual,2010,naphtha combustion consumption by to the public,419.51119209999996,TJ,CH4,3.0,kg/TJ,1258.5335762999998,kg +8d6675d9-f88f-31fc-812d-e5ecabeed076,SESCO,II.1.1,Chaco,AR-H,annual,2010,naphtha combustion consumption by to the public,419.51119209999996,TJ,N2O,0.6,kg/TJ,251.70671525999995,kg +e865ffd4-3f09-3baf-8100-64163af07369,SESCO,II.1.1,Chubut,AR-U,annual,2010,naphtha combustion consumption by to the public,717.2623919999999,TJ,CO2,73300.0,kg/TJ,52575333.33359999,kg +aae68e63-040a-3175-be60-7ea9368a7d3f,SESCO,II.1.1,Chubut,AR-U,annual,2010,naphtha combustion consumption by to the public,717.2623919999999,TJ,CH4,3.0,kg/TJ,2151.787176,kg +049fe3bd-4882-376d-bf37-61f77b7c5ce9,SESCO,II.1.1,Chubut,AR-U,annual,2010,naphtha combustion consumption by to the public,717.2623919999999,TJ,N2O,0.6,kg/TJ,430.3574351999999,kg +5c9f03d1-a9d2-3722-85fa-18f78118f50a,SESCO,II.1.1,Corrientes,AR-W,annual,2010,naphtha combustion consumption by to the public,319.91380189999995,TJ,CO2,73300.0,kg/TJ,23449681.679269996,kg +a64c23c0-40ae-32f4-94a0-8b77c6725931,SESCO,II.1.1,Corrientes,AR-W,annual,2010,naphtha combustion consumption by to the public,319.91380189999995,TJ,CH4,3.0,kg/TJ,959.7414056999999,kg +d5954e63-8bf1-361b-9ddc-d556c017fbf5,SESCO,II.1.1,Corrientes,AR-W,annual,2010,naphtha combustion consumption by to the public,319.91380189999995,TJ,N2O,0.6,kg/TJ,191.94828113999998,kg +67d4b8dd-19a9-31a4-9e14-079e70ea915a,SESCO,II.1.1,Córdoba,AR-X,annual,2010,naphtha combustion consumption by to the public,2353.7690715,TJ,CO2,73300.0,kg/TJ,172531272.94094998,kg +307d80e8-16af-360e-a4e1-158c73b359ce,SESCO,II.1.1,Córdoba,AR-X,annual,2010,naphtha combustion consumption by to the public,2353.7690715,TJ,CH4,3.0,kg/TJ,7061.3072145,kg +49c46f87-8762-3782-b062-7722664e26bb,SESCO,II.1.1,Córdoba,AR-X,annual,2010,naphtha combustion consumption by to the public,2353.7690715,TJ,N2O,0.6,kg/TJ,1412.2614428999998,kg +9c674e71-b4f2-3dbb-bedd-6c687e5634c6,SESCO,II.1.1,Entre Rios,AR-E,annual,2010,naphtha combustion consumption by to the public,726.3960704,TJ,CO2,73300.0,kg/TJ,53244831.960319996,kg +e1df1716-75cc-3ef3-b9e4-51544f92fd39,SESCO,II.1.1,Entre Rios,AR-E,annual,2010,naphtha combustion consumption by to the public,726.3960704,TJ,CH4,3.0,kg/TJ,2179.1882112,kg +69797bf1-d71b-32c6-a499-30f6f0fc6ec5,SESCO,II.1.1,Entre Rios,AR-E,annual,2010,naphtha combustion consumption by to the public,726.3960704,TJ,N2O,0.6,kg/TJ,435.83764224,kg +e4c8bf57-de29-32ae-8abb-120fc5147a10,SESCO,II.1.1,Formosa,AR-P,annual,2010,naphtha combustion consumption by to the public,140.8668415,TJ,CO2,73300.0,kg/TJ,10325539.48195,kg +71e3b156-96ed-3fbe-ad1c-1515d6669ec2,SESCO,II.1.1,Formosa,AR-P,annual,2010,naphtha combustion consumption by to the public,140.8668415,TJ,CH4,3.0,kg/TJ,422.6005245,kg +ee3b500c-0fd5-332d-81b7-a8fb9341349d,SESCO,II.1.1,Formosa,AR-P,annual,2010,naphtha combustion consumption by to the public,140.8668415,TJ,N2O,0.6,kg/TJ,84.52010489999999,kg +c9f44cbe-b7ba-3ab1-ba5a-479cb758e2d5,SESCO,II.1.1,Jujuy,AR-Y,annual,2010,naphtha combustion consumption by to the public,143.5532175,TJ,CO2,73300.0,kg/TJ,10522450.84275,kg +7f5ea297-15de-3d93-baf7-12daba6f75a9,SESCO,II.1.1,Jujuy,AR-Y,annual,2010,naphtha combustion consumption by to the public,143.5532175,TJ,CH4,3.0,kg/TJ,430.6596525,kg +39f614a5-1681-3b4f-b2f8-7505ddb60658,SESCO,II.1.1,Jujuy,AR-Y,annual,2010,naphtha combustion consumption by to the public,143.5532175,TJ,N2O,0.6,kg/TJ,86.1319305,kg +6a954ec6-e073-3303-88dd-33f80f70f7ee,SESCO,II.1.1,La Pampa,AR-L,annual,2010,naphtha combustion consumption by to the public,423.5743357999999,TJ,CO2,73300.0,kg/TJ,31047998.814139992,kg +cd24d0d5-3ec9-34a8-bccd-c98456876c59,SESCO,II.1.1,La Pampa,AR-L,annual,2010,naphtha combustion consumption by to the public,423.5743357999999,TJ,CH4,3.0,kg/TJ,1270.7230073999997,kg +2e1679ec-85a5-302c-9b27-17d267ad5f3d,SESCO,II.1.1,La Pampa,AR-L,annual,2010,naphtha combustion consumption by to the public,423.5743357999999,TJ,N2O,0.6,kg/TJ,254.14460147999995,kg +195f0032-7fc6-35b9-9fbe-5db0751f1404,SESCO,II.1.1,La Rioja,AR-F,annual,2010,naphtha combustion consumption by to the public,169.7789632,TJ,CO2,73300.0,kg/TJ,12444798.002559999,kg +62577374-b125-390b-b20a-f004edacb91b,SESCO,II.1.1,La Rioja,AR-F,annual,2010,naphtha combustion consumption by to the public,169.7789632,TJ,CH4,3.0,kg/TJ,509.33688959999995,kg +595a22ee-5143-3e82-abda-15263de0d5e6,SESCO,II.1.1,La Rioja,AR-F,annual,2010,naphtha combustion consumption by to the public,169.7789632,TJ,N2O,0.6,kg/TJ,101.86737792,kg +e0159bfc-e058-3e71-a73f-4e086f70372c,SESCO,II.1.1,Mendoza,AR-M,annual,2010,naphtha combustion consumption by to the public,1072.2669804,TJ,CO2,73300.0,kg/TJ,78597169.66332,kg +b7c1e511-4d4b-3825-98da-87d9623bf4df,SESCO,II.1.1,Mendoza,AR-M,annual,2010,naphtha combustion consumption by to the public,1072.2669804,TJ,CH4,3.0,kg/TJ,3216.8009412,kg +02946baa-bca5-3b0b-9ffc-e7e20d4fcc12,SESCO,II.1.1,Mendoza,AR-M,annual,2010,naphtha combustion consumption by to the public,1072.2669804,TJ,N2O,0.6,kg/TJ,643.36018824,kg +0c067ab1-547f-3ae9-be30-6150c031f4b6,SESCO,II.1.1,Misiones,AR-N,annual,2010,naphtha combustion consumption by to the public,419.0410763,TJ,CO2,73300.0,kg/TJ,30715710.892789997,kg +fa004c14-8585-38bd-841c-f24b04f0d009,SESCO,II.1.1,Misiones,AR-N,annual,2010,naphtha combustion consumption by to the public,419.0410763,TJ,CH4,3.0,kg/TJ,1257.1232289,kg +1ff75bf3-d1ec-3c48-9ca8-3e60354fd446,SESCO,II.1.1,Misiones,AR-N,annual,2010,naphtha combustion consumption by to the public,419.0410763,TJ,N2O,0.6,kg/TJ,251.42464578,kg +cef361a2-2f27-351d-8ed6-f3b333a488f4,SESCO,II.1.1,Neuquén,AR-Q,annual,2010,naphtha combustion consumption by to the public,532.9434186999999,TJ,CO2,73300.0,kg/TJ,39064752.59071,kg +32b31b31-32ea-3e10-8ad6-a9e886bf2503,SESCO,II.1.1,Neuquén,AR-Q,annual,2010,naphtha combustion consumption by to the public,532.9434186999999,TJ,CH4,3.0,kg/TJ,1598.8302560999998,kg +e0ec8d5c-c840-3898-b81a-6c614965f647,SESCO,II.1.1,Neuquén,AR-Q,annual,2010,naphtha combustion consumption by to the public,532.9434186999999,TJ,N2O,0.6,kg/TJ,319.76605121999995,kg +82b31a58-0462-3801-be05-1e9da97a686e,SESCO,II.1.1,Rio Negro,AR-R,annual,2010,naphtha combustion consumption by to the public,548.4908197999999,TJ,CO2,73300.0,kg/TJ,40204377.09134,kg +784dc139-f8db-3d17-b7e3-432021bb6d7e,SESCO,II.1.1,Rio Negro,AR-R,annual,2010,naphtha combustion consumption by to the public,548.4908197999999,TJ,CH4,3.0,kg/TJ,1645.4724594,kg +15e2b9fe-7291-36c8-af86-7e2d452d0972,SESCO,II.1.1,Rio Negro,AR-R,annual,2010,naphtha combustion consumption by to the public,548.4908197999999,TJ,N2O,0.6,kg/TJ,329.09449187999996,kg +8b220ff6-c13e-3421-b988-602cee3af039,SESCO,II.1.1,Salta,AR-A,annual,2010,naphtha combustion consumption by to the public,402.9564,TJ,CO2,73300.0,kg/TJ,29536704.119999997,kg +dd83b68c-be4a-3c07-aa5c-444ced84c0dc,SESCO,II.1.1,Salta,AR-A,annual,2010,naphtha combustion consumption by to the public,402.9564,TJ,CH4,3.0,kg/TJ,1208.8691999999999,kg +49064e5a-25a6-3725-b309-4894c31dde02,SESCO,II.1.1,Salta,AR-A,annual,2010,naphtha combustion consumption by to the public,402.9564,TJ,N2O,0.6,kg/TJ,241.77383999999998,kg +755f934e-462e-35f0-b8ea-a7cbc015dfef,SESCO,II.1.1,San Juan,AR-J,annual,2010,naphtha combustion consumption by to the public,329.6183352,TJ,CO2,73300.0,kg/TJ,24161023.97016,kg +88490e5c-c1fd-3dcb-9060-9ace1d1b66b7,SESCO,II.1.1,San Juan,AR-J,annual,2010,naphtha combustion consumption by to the public,329.6183352,TJ,CH4,3.0,kg/TJ,988.8550055999999,kg +ebc80272-498d-30b2-81df-4481f716d4ee,SESCO,II.1.1,San Juan,AR-J,annual,2010,naphtha combustion consumption by to the public,329.6183352,TJ,N2O,0.6,kg/TJ,197.77100112,kg +68d292c6-dd50-3c6d-93aa-813568096169,SESCO,II.1.1,San Luis,AR-D,annual,2010,naphtha combustion consumption by to the public,335.2261451,TJ,CO2,73300.0,kg/TJ,24572076.43583,kg +a2e80207-c9d9-315a-a8c9-5caa1adceb42,SESCO,II.1.1,San Luis,AR-D,annual,2010,naphtha combustion consumption by to the public,335.2261451,TJ,CH4,3.0,kg/TJ,1005.6784353,kg +2456440b-005d-3a5c-9bef-dffe3e8f532b,SESCO,II.1.1,San Luis,AR-D,annual,2010,naphtha combustion consumption by to the public,335.2261451,TJ,N2O,0.6,kg/TJ,201.13568705999998,kg +6efc6f02-2bbd-3f5c-b2fc-50d908e77399,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2010,naphtha combustion consumption by to the public,387.2411004,TJ,CO2,73300.0,kg/TJ,28384772.65932,kg +a501e5c0-d113-3c02-b3f7-2e263564ca58,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2010,naphtha combustion consumption by to the public,387.2411004,TJ,CH4,3.0,kg/TJ,1161.7233012,kg +10bf1fbb-1b01-3392-a238-9fd028a8ea29,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2010,naphtha combustion consumption by to the public,387.2411004,TJ,N2O,0.6,kg/TJ,232.34466024,kg +cde8d241-6c33-366f-937e-fe53722d1d1a,SESCO,II.1.1,Santa Fe,AR-S,annual,2010,naphtha combustion consumption by to the public,2034.9633996999999,TJ,CO2,73300.0,kg/TJ,149162817.19801,kg +04b7ead6-6e4c-3d19-a183-7b9b36f89088,SESCO,II.1.1,Santa Fe,AR-S,annual,2010,naphtha combustion consumption by to the public,2034.9633996999999,TJ,CH4,3.0,kg/TJ,6104.890199099999,kg +07f2b315-0159-3773-b5ec-cb73224463a4,SESCO,II.1.1,Santa Fe,AR-S,annual,2010,naphtha combustion consumption by to the public,2034.9633996999999,TJ,N2O,0.6,kg/TJ,1220.9780398199998,kg +503778bb-2283-3671-afbf-abad41ddd60b,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2010,naphtha combustion consumption by to the public,302.62025639999996,TJ,CO2,73300.0,kg/TJ,22182064.79412,kg +82b50394-3a02-3895-9c4a-f7879112e4e7,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2010,naphtha combustion consumption by to the public,302.62025639999996,TJ,CH4,3.0,kg/TJ,907.8607691999998,kg +f6ef55ab-db1a-352c-a9f2-d387fd819f89,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2010,naphtha combustion consumption by to the public,302.62025639999996,TJ,N2O,0.6,kg/TJ,181.57215383999997,kg +6126640f-c76d-3821-a011-365e450f1a2e,SESCO,II.1.1,Tucuman,AR-T,annual,2010,naphtha combustion consumption by to the public,397.41574949999995,TJ,CO2,73300.0,kg/TJ,29130574.438349996,kg +8e5d0b0b-bb12-365a-ab9b-dd48c051f0cf,SESCO,II.1.1,Tucuman,AR-T,annual,2010,naphtha combustion consumption by to the public,397.41574949999995,TJ,CH4,3.0,kg/TJ,1192.2472484999998,kg +3ea04f84-078a-3202-9b5a-601181ab00d4,SESCO,II.1.1,Tucuman,AR-T,annual,2010,naphtha combustion consumption by to the public,397.41574949999995,TJ,N2O,0.6,kg/TJ,238.44944969999995,kg +57f4f498-88d0-328d-8e6e-2f7553c6a6cc,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,naphtha combustion consumption by freight transport,0.2686376,TJ,CO2,73300.0,kg/TJ,19691.136079999997,kg +dc152019-20a0-3b15-bd96-dd8687b917fd,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,naphtha combustion consumption by freight transport,0.2686376,TJ,CH4,3.0,kg/TJ,0.8059128,kg +418305bc-ebd0-3a9c-abfc-d45a2c12006b,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,naphtha combustion consumption by freight transport,0.2686376,TJ,N2O,0.6,kg/TJ,0.16118255999999997,kg +6b0ca964-3ddd-3c0c-9a43-21cbed36b4a3,SESCO,II.1.1,Santa Fe,AR-S,annual,2010,naphtha combustion consumption by freight transport,0.0671594,TJ,CO2,73300.0,kg/TJ,4922.784019999999,kg +0655f1e2-4e75-3a0d-9ecb-087d07159bb3,SESCO,II.1.1,Santa Fe,AR-S,annual,2010,naphtha combustion consumption by freight transport,0.0671594,TJ,CH4,3.0,kg/TJ,0.2014782,kg +395885b9-69cc-342b-9d09-729c833ee2a8,SESCO,II.1.1,Santa Fe,AR-S,annual,2010,naphtha combustion consumption by freight transport,0.0671594,TJ,N2O,0.6,kg/TJ,0.040295639999999994,kg +cffca3d2-f6c9-303e-8e49-e1b6c10fd72c,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,naphtha combustion consumption by freight transport,115.48058829999998,TJ,CO2,73300.0,kg/TJ,8464727.122389998,kg +6612a9ef-7df1-3fa3-9e92-927812d83128,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,naphtha combustion consumption by freight transport,115.48058829999998,TJ,CH4,3.0,kg/TJ,346.44176489999995,kg +3e5e77b3-4834-3cfd-ac82-acc43214316c,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,naphtha combustion consumption by freight transport,115.48058829999998,TJ,N2O,0.6,kg/TJ,69.28835297999998,kg +9957216b-e315-3890-ba63-ab6a9bb2f29a,SESCO,II.1.1,Capital Federal,AR-C,annual,2010,naphtha combustion consumption by freight transport,20.382877899999997,TJ,CO2,73300.0,kg/TJ,1494064.9500699998,kg +3697139b-624d-3980-a93d-759321303303,SESCO,II.1.1,Capital Federal,AR-C,annual,2010,naphtha combustion consumption by freight transport,20.382877899999997,TJ,CH4,3.0,kg/TJ,61.14863369999999,kg +c5ce8047-1a3e-3b4f-924d-8e1ff6e67d42,SESCO,II.1.1,Capital Federal,AR-C,annual,2010,naphtha combustion consumption by freight transport,20.382877899999997,TJ,N2O,0.6,kg/TJ,12.229726739999998,kg +cbaad4c3-7ed7-3207-8419-041e06657a25,SESCO,II.1.1,Catamarca,AR-K,annual,2010,naphtha combustion consumption by freight transport,0.1343188,TJ,CO2,73300.0,kg/TJ,9845.568039999998,kg +f1cee474-ea69-39f5-8fe2-6f02c86b3f01,SESCO,II.1.1,Catamarca,AR-K,annual,2010,naphtha combustion consumption by freight transport,0.1343188,TJ,CH4,3.0,kg/TJ,0.4029564,kg +145e4b2e-426b-3bb3-90b2-c714eead2be1,SESCO,II.1.1,Catamarca,AR-K,annual,2010,naphtha combustion consumption by freight transport,0.1343188,TJ,N2O,0.6,kg/TJ,0.08059127999999999,kg +be05dbab-de78-3351-9efd-38848e4730be,SESCO,II.1.1,Chaco,AR-H,annual,2010,naphtha combustion consumption by freight transport,3.35797,TJ,CO2,73300.0,kg/TJ,246139.201,kg +4b02df36-9d25-3c04-a059-3e444fe1e06b,SESCO,II.1.1,Chaco,AR-H,annual,2010,naphtha combustion consumption by freight transport,3.35797,TJ,CH4,3.0,kg/TJ,10.07391,kg +5ab3f81d-11f0-3f7c-9d9a-878960a86a7f,SESCO,II.1.1,Chaco,AR-H,annual,2010,naphtha combustion consumption by freight transport,3.35797,TJ,N2O,0.6,kg/TJ,2.014782,kg +8bf606c8-fd77-3e46-8bb6-d4a350f555ed,SESCO,II.1.1,Chubut,AR-U,annual,2010,naphtha combustion consumption by freight transport,4.1638828,TJ,CO2,73300.0,kg/TJ,305212.60923999996,kg +e3893efe-63a5-3dc9-9c02-c1ff761706b7,SESCO,II.1.1,Chubut,AR-U,annual,2010,naphtha combustion consumption by freight transport,4.1638828,TJ,CH4,3.0,kg/TJ,12.491648399999999,kg +2cbb8e7e-2a9f-3e46-9b56-c3a876f0b52d,SESCO,II.1.1,Chubut,AR-U,annual,2010,naphtha combustion consumption by freight transport,4.1638828,TJ,N2O,0.6,kg/TJ,2.49832968,kg +b5764f49-458c-3e48-92d9-5dec69c3830e,SESCO,II.1.1,Corrientes,AR-W,annual,2010,naphtha combustion consumption by freight transport,4.264621899999999,TJ,CO2,73300.0,kg/TJ,312596.78526999993,kg +5534bbfe-812d-328b-8ead-f9abe283d1a2,SESCO,II.1.1,Corrientes,AR-W,annual,2010,naphtha combustion consumption by freight transport,4.264621899999999,TJ,CH4,3.0,kg/TJ,12.793865699999998,kg +21e732ea-744b-3ad1-937a-8eb4cb00c1f0,SESCO,II.1.1,Corrientes,AR-W,annual,2010,naphtha combustion consumption by freight transport,4.264621899999999,TJ,N2O,0.6,kg/TJ,2.558773139999999,kg +8b469d57-6677-3957-8de3-4c23e06318df,SESCO,II.1.1,Córdoba,AR-X,annual,2010,naphtha combustion consumption by freight transport,14.775067999999997,TJ,CO2,73300.0,kg/TJ,1083012.4843999997,kg +7461d9d1-bb83-33d0-bc0c-cb23c943e797,SESCO,II.1.1,Córdoba,AR-X,annual,2010,naphtha combustion consumption by freight transport,14.775067999999997,TJ,CH4,3.0,kg/TJ,44.32520399999999,kg +a27661aa-9b97-3afd-aefb-9299755dd3b2,SESCO,II.1.1,Córdoba,AR-X,annual,2010,naphtha combustion consumption by freight transport,14.775067999999997,TJ,N2O,0.6,kg/TJ,8.865040799999997,kg +dacd1fd6-b55f-38e5-ab20-701552c365ec,SESCO,II.1.1,Entre Rios,AR-E,annual,2010,naphtha combustion consumption by freight transport,5.8428678,TJ,CO2,73300.0,kg/TJ,428282.20973999996,kg +1a5dba28-d5ea-3d7d-a765-1c15d607d7ae,SESCO,II.1.1,Entre Rios,AR-E,annual,2010,naphtha combustion consumption by freight transport,5.8428678,TJ,CH4,3.0,kg/TJ,17.528603399999998,kg +204cddbf-7957-3d75-9f9f-fe8be9279a1e,SESCO,II.1.1,Entre Rios,AR-E,annual,2010,naphtha combustion consumption by freight transport,5.8428678,TJ,N2O,0.6,kg/TJ,3.5057206799999996,kg +2bb628d6-e59e-3dac-b192-af3dea974926,SESCO,II.1.1,Formosa,AR-P,annual,2010,naphtha combustion consumption by freight transport,0.2686376,TJ,CO2,73300.0,kg/TJ,19691.136079999997,kg +193962a6-f9d8-31d1-9e42-b3571db0af75,SESCO,II.1.1,Formosa,AR-P,annual,2010,naphtha combustion consumption by freight transport,0.2686376,TJ,CH4,3.0,kg/TJ,0.8059128,kg +6532a8f1-40e4-32b9-bdd9-544e949cbe23,SESCO,II.1.1,Formosa,AR-P,annual,2010,naphtha combustion consumption by freight transport,0.2686376,TJ,N2O,0.6,kg/TJ,0.16118255999999997,kg +9a043285-f311-3533-a6e1-d4e62e0fd6eb,SESCO,II.1.1,Jujuy,AR-Y,annual,2010,naphtha combustion consumption by freight transport,2.7871151,TJ,CO2,73300.0,kg/TJ,204295.53683,kg +ceb8b2e1-f2c9-3f9e-9e04-b5e866e2ace9,SESCO,II.1.1,Jujuy,AR-Y,annual,2010,naphtha combustion consumption by freight transport,2.7871151,TJ,CH4,3.0,kg/TJ,8.3613453,kg +a0ea3e07-1784-3814-bcfd-19d666bff428,SESCO,II.1.1,Jujuy,AR-Y,annual,2010,naphtha combustion consumption by freight transport,2.7871151,TJ,N2O,0.6,kg/TJ,1.6722690599999999,kg +b08d36e2-f719-37ec-b663-f9ec03039fe0,SESCO,II.1.1,La Pampa,AR-L,annual,2010,naphtha combustion consumption by freight transport,1.8804632,TJ,CO2,73300.0,kg/TJ,137837.95256,kg +80537d65-8586-3894-b0cf-70ca8d5f61d5,SESCO,II.1.1,La Pampa,AR-L,annual,2010,naphtha combustion consumption by freight transport,1.8804632,TJ,CH4,3.0,kg/TJ,5.6413896,kg +dfe634c9-c1ec-3fc4-ba39-4d10ceb3ac64,SESCO,II.1.1,La Pampa,AR-L,annual,2010,naphtha combustion consumption by freight transport,1.8804632,TJ,N2O,0.6,kg/TJ,1.12827792,kg +d05b253b-c20c-3a56-9626-3122b283eca7,SESCO,II.1.1,La Rioja,AR-F,annual,2010,naphtha combustion consumption by freight transport,1.1752894999999999,TJ,CO2,73300.0,kg/TJ,86148.72034999999,kg +0a4bbb26-6c49-3956-85da-5070eab9b496,SESCO,II.1.1,La Rioja,AR-F,annual,2010,naphtha combustion consumption by freight transport,1.1752894999999999,TJ,CH4,3.0,kg/TJ,3.5258684999999996,kg +8038500f-0f03-350f-a939-1682715cf029,SESCO,II.1.1,La Rioja,AR-F,annual,2010,naphtha combustion consumption by freight transport,1.1752894999999999,TJ,N2O,0.6,kg/TJ,0.7051736999999999,kg +2273e56d-a35f-355b-90f0-55e38ef92c5a,SESCO,II.1.1,Mendoza,AR-M,annual,2010,naphtha combustion consumption by freight transport,15.3459229,TJ,CO2,73300.0,kg/TJ,1124856.14857,kg +ef8f34c3-b73b-39b5-a91c-fc44564fab45,SESCO,II.1.1,Mendoza,AR-M,annual,2010,naphtha combustion consumption by freight transport,15.3459229,TJ,CH4,3.0,kg/TJ,46.0377687,kg +0f497da2-6b9f-380a-bbe5-f366406c10bc,SESCO,II.1.1,Mendoza,AR-M,annual,2010,naphtha combustion consumption by freight transport,15.3459229,TJ,N2O,0.6,kg/TJ,9.20755374,kg +73b704b2-c2bd-33a2-9131-c6cbd14e7105,SESCO,II.1.1,Misiones,AR-N,annual,2010,naphtha combustion consumption by freight transport,4.0631436999999995,TJ,CO2,73300.0,kg/TJ,297828.43321,kg +5e064580-750d-35eb-82a8-f9bfb135ae7a,SESCO,II.1.1,Misiones,AR-N,annual,2010,naphtha combustion consumption by freight transport,4.0631436999999995,TJ,CH4,3.0,kg/TJ,12.189431099999998,kg +ec76603e-c6e2-3c9c-9f6a-33c37ac70b76,SESCO,II.1.1,Misiones,AR-N,annual,2010,naphtha combustion consumption by freight transport,4.0631436999999995,TJ,N2O,0.6,kg/TJ,2.4378862199999998,kg +13dbc5db-3aed-399d-b386-ef6e44cd02ad,SESCO,II.1.1,Neuquén,AR-Q,annual,2010,naphtha combustion consumption by freight transport,4.801897099999999,TJ,CO2,73300.0,kg/TJ,351979.0574299999,kg +7e18c8ae-456b-3663-9c66-ba680fe7a865,SESCO,II.1.1,Neuquén,AR-Q,annual,2010,naphtha combustion consumption by freight transport,4.801897099999999,TJ,CH4,3.0,kg/TJ,14.405691299999997,kg +6b702b2b-b9c6-359b-b6c6-d4f53758197f,SESCO,II.1.1,Neuquén,AR-Q,annual,2010,naphtha combustion consumption by freight transport,4.801897099999999,TJ,N2O,0.6,kg/TJ,2.8811382599999993,kg +980f8af2-32ba-3d0c-aa12-4bc408b8f02d,SESCO,II.1.1,Rio Negro,AR-R,annual,2010,naphtha combustion consumption by freight transport,3.35797,TJ,CO2,73300.0,kg/TJ,246139.201,kg +7b8c82af-90d3-3281-bcd2-7a865c962b4e,SESCO,II.1.1,Rio Negro,AR-R,annual,2010,naphtha combustion consumption by freight transport,3.35797,TJ,CH4,3.0,kg/TJ,10.07391,kg +3915b4b7-b677-3af3-9785-cf83520a73ff,SESCO,II.1.1,Rio Negro,AR-R,annual,2010,naphtha combustion consumption by freight transport,3.35797,TJ,N2O,0.6,kg/TJ,2.014782,kg +d2ae399b-e73a-34aa-a2de-3484a6a0e650,SESCO,II.1.1,Salta,AR-A,annual,2010,naphtha combustion consumption by freight transport,2.9885933,TJ,CO2,73300.0,kg/TJ,219063.88888999997,kg +b716cf10-d526-3e13-8fb2-259098adc861,SESCO,II.1.1,Salta,AR-A,annual,2010,naphtha combustion consumption by freight transport,2.9885933,TJ,CH4,3.0,kg/TJ,8.9657799,kg +78fad841-261b-3e97-b160-7211fed4592c,SESCO,II.1.1,Salta,AR-A,annual,2010,naphtha combustion consumption by freight transport,2.9885933,TJ,N2O,0.6,kg/TJ,1.7931559799999999,kg +9ae218e9-c123-3096-997c-f3a2a844bbe5,SESCO,II.1.1,San Juan,AR-J,annual,2010,naphtha combustion consumption by freight transport,1.2088691999999999,TJ,CO2,73300.0,kg/TJ,88610.11235999998,kg +60d9c607-b8ed-31c6-9e14-0aa6c60c9f37,SESCO,II.1.1,San Juan,AR-J,annual,2010,naphtha combustion consumption by freight transport,1.2088691999999999,TJ,CH4,3.0,kg/TJ,3.6266076,kg +c48acf82-50be-3ffb-aeb3-eab6688cbe86,SESCO,II.1.1,San Juan,AR-J,annual,2010,naphtha combustion consumption by freight transport,1.2088691999999999,TJ,N2O,0.6,kg/TJ,0.7253215199999999,kg +ef58020c-2528-33b2-a5dd-8380d837f113,SESCO,II.1.1,San Luis,AR-D,annual,2010,naphtha combustion consumption by freight transport,2.7535353999999996,TJ,CO2,73300.0,kg/TJ,201834.14482,kg +28deda38-d606-3603-9970-f4c3481f91dd,SESCO,II.1.1,San Luis,AR-D,annual,2010,naphtha combustion consumption by freight transport,2.7535353999999996,TJ,CH4,3.0,kg/TJ,8.260606199999998,kg +9fb9716c-8392-33d8-be32-0bed294e6e10,SESCO,II.1.1,San Luis,AR-D,annual,2010,naphtha combustion consumption by freight transport,2.7535353999999996,TJ,N2O,0.6,kg/TJ,1.6521212399999998,kg +0d765c8c-7e61-3a0e-b2dd-1402c92fae70,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2010,naphtha combustion consumption by freight transport,2.1491008,TJ,CO2,73300.0,kg/TJ,157529.08863999997,kg +aeb6b615-9d66-3f99-9e6b-a7fedb7e3753,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2010,naphtha combustion consumption by freight transport,2.1491008,TJ,CH4,3.0,kg/TJ,6.4473024,kg +3e7eb36a-0912-3479-8e7a-443e217a9a2c,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2010,naphtha combustion consumption by freight transport,2.1491008,TJ,N2O,0.6,kg/TJ,1.2894604799999998,kg +c947d579-3cb3-30fd-9971-6973ab751744,SESCO,II.1.1,Santa Fe,AR-S,annual,2010,naphtha combustion consumption by freight transport,22.9685148,TJ,CO2,73300.0,kg/TJ,1683592.1348400002,kg +413c00e6-a912-3fba-a0b8-fe0b0a3c41a4,SESCO,II.1.1,Santa Fe,AR-S,annual,2010,naphtha combustion consumption by freight transport,22.9685148,TJ,CH4,3.0,kg/TJ,68.9055444,kg +a12e1c82-1e5f-3446-b9cd-5b8d671cf588,SESCO,II.1.1,Santa Fe,AR-S,annual,2010,naphtha combustion consumption by freight transport,22.9685148,TJ,N2O,0.6,kg/TJ,13.78110888,kg +f29899b8-a986-3b70-9ecf-9b324aeba0bb,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2010,naphtha combustion consumption by freight transport,1.5782459,TJ,CO2,73300.0,kg/TJ,115685.42447,kg +9f67040a-74a2-3936-af4d-9b96446d94de,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2010,naphtha combustion consumption by freight transport,1.5782459,TJ,CH4,3.0,kg/TJ,4.7347377,kg +2c78e480-f39c-3df2-9b38-859cb6723c4d,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2010,naphtha combustion consumption by freight transport,1.5782459,TJ,N2O,0.6,kg/TJ,0.9469475399999999,kg +10f4a569-ad42-3b27-938e-e04e78df66fe,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2010,naphtha combustion consumption by freight transport,0.6380142999999999,TJ,CO2,73300.0,kg/TJ,46766.448189999996,kg +7234c4eb-d117-354a-83fe-d363f3af591f,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2010,naphtha combustion consumption by freight transport,0.6380142999999999,TJ,CH4,3.0,kg/TJ,1.9140428999999997,kg +20687cea-4d7f-3294-8d89-e513fe5a511f,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2010,naphtha combustion consumption by freight transport,0.6380142999999999,TJ,N2O,0.6,kg/TJ,0.38280857999999995,kg +0d4873fb-5d67-3f0e-91b6-45062bbc1bdb,SESCO,II.1.1,Tucuman,AR-T,annual,2010,naphtha combustion consumption by freight transport,3.5594481999999994,TJ,CO2,73300.0,kg/TJ,260907.55305999995,kg +a1087845-558c-311f-9063-b042d542dd32,SESCO,II.1.1,Tucuman,AR-T,annual,2010,naphtha combustion consumption by freight transport,3.5594481999999994,TJ,CH4,3.0,kg/TJ,10.678344599999999,kg +5c5cf8cf-77a7-3620-bc24-b80337a6493d,SESCO,II.1.1,Tucuman,AR-T,annual,2010,naphtha combustion consumption by freight transport,3.5594481999999994,TJ,N2O,0.6,kg/TJ,2.1356689199999996,kg +2991c79a-ff8d-3b96-953a-4ac8771c07c5,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,naphtha combustion consumption by freight transport,146.94476719999997,TJ,CO2,73300.0,kg/TJ,10771051.435759999,kg +24a21022-c940-3087-8754-9a866a532d19,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,naphtha combustion consumption by freight transport,146.94476719999997,TJ,CH4,3.0,kg/TJ,440.8343015999999,kg +af82d1df-0a35-3244-b631-a11b5be7cbfa,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,naphtha combustion consumption by freight transport,146.94476719999997,TJ,N2O,0.6,kg/TJ,88.16686031999998,kg +1a786ca6-5d94-3397-ae2a-352a57561c9e,SESCO,II.1.1,Capital Federal,AR-C,annual,2010,naphtha combustion consumption by freight transport,40.69859639999999,TJ,CO2,73300.0,kg/TJ,2983207.1161199994,kg +0af3cc51-e44b-30d3-a3bc-b5b1cb2dde54,SESCO,II.1.1,Capital Federal,AR-C,annual,2010,naphtha combustion consumption by freight transport,40.69859639999999,TJ,CH4,3.0,kg/TJ,122.09578919999998,kg +713d2142-f326-38b2-8830-c6824b1ef448,SESCO,II.1.1,Capital Federal,AR-C,annual,2010,naphtha combustion consumption by freight transport,40.69859639999999,TJ,N2O,0.6,kg/TJ,24.419157839999993,kg +f93f2653-def3-3db7-a405-f7cd6a65d42b,SESCO,II.1.1,Chaco,AR-H,annual,2010,naphtha combustion consumption by freight transport,3.3915496999999997,TJ,CO2,73300.0,kg/TJ,248600.59300999998,kg +dc36c9cd-7461-3429-a1e1-d7d4db35cd93,SESCO,II.1.1,Chaco,AR-H,annual,2010,naphtha combustion consumption by freight transport,3.3915496999999997,TJ,CH4,3.0,kg/TJ,10.1746491,kg +73a7c589-6b06-3f54-8c92-7362df55ad43,SESCO,II.1.1,Chaco,AR-H,annual,2010,naphtha combustion consumption by freight transport,3.3915496999999997,TJ,N2O,0.6,kg/TJ,2.03492982,kg +7933b874-4cf3-305e-b19b-4621d3dc164e,SESCO,II.1.1,Chubut,AR-U,annual,2010,naphtha combustion consumption by freight transport,3.0893323999999995,TJ,CO2,73300.0,kg/TJ,226448.06491999998,kg +68d09f66-e49d-3b44-9f4a-2ebfcfb70f6e,SESCO,II.1.1,Chubut,AR-U,annual,2010,naphtha combustion consumption by freight transport,3.0893323999999995,TJ,CH4,3.0,kg/TJ,9.267997199999998,kg +c823075f-833a-35b3-9a33-45bfd6e6da34,SESCO,II.1.1,Chubut,AR-U,annual,2010,naphtha combustion consumption by freight transport,3.0893323999999995,TJ,N2O,0.6,kg/TJ,1.8535994399999995,kg +d3283949-0a7b-3b60-b5a6-eace98f0cda7,SESCO,II.1.1,Corrientes,AR-W,annual,2010,naphtha combustion consumption by freight transport,2.5520571999999997,TJ,CO2,73300.0,kg/TJ,187065.79275999998,kg +31dd90b5-f141-3f81-afa1-96ceecec3b0b,SESCO,II.1.1,Corrientes,AR-W,annual,2010,naphtha combustion consumption by freight transport,2.5520571999999997,TJ,CH4,3.0,kg/TJ,7.656171599999999,kg +a04eb641-899d-3159-9317-1c324cd7183f,SESCO,II.1.1,Corrientes,AR-W,annual,2010,naphtha combustion consumption by freight transport,2.5520571999999997,TJ,N2O,0.6,kg/TJ,1.5312343199999998,kg +48548058-e59e-3d79-b66e-16f83378dd32,SESCO,II.1.1,Córdoba,AR-X,annual,2010,naphtha combustion consumption by freight transport,12.659546899999999,TJ,CO2,73300.0,kg/TJ,927944.7877699999,kg +a0253afe-4232-3951-b4c0-09ff70ccb7ab,SESCO,II.1.1,Córdoba,AR-X,annual,2010,naphtha combustion consumption by freight transport,12.659546899999999,TJ,CH4,3.0,kg/TJ,37.9786407,kg +bc420897-ee01-35f4-8490-3949e2c247f0,SESCO,II.1.1,Córdoba,AR-X,annual,2010,naphtha combustion consumption by freight transport,12.659546899999999,TJ,N2O,0.6,kg/TJ,7.5957281399999985,kg +faf18342-9465-335a-b24a-a2441e344613,SESCO,II.1.1,Entre Rios,AR-E,annual,2010,naphtha combustion consumption by freight transport,5.3391722999999995,TJ,CO2,73300.0,kg/TJ,391361.32959,kg +9aacf9d4-eef5-3e59-98d8-7e0260136819,SESCO,II.1.1,Entre Rios,AR-E,annual,2010,naphtha combustion consumption by freight transport,5.3391722999999995,TJ,CH4,3.0,kg/TJ,16.017516899999997,kg +b65b4a93-b16b-3d4e-849a-1e41824def9d,SESCO,II.1.1,Entre Rios,AR-E,annual,2010,naphtha combustion consumption by freight transport,5.3391722999999995,TJ,N2O,0.6,kg/TJ,3.2035033799999995,kg +16f5de82-7832-342a-a1a2-58c645548a03,SESCO,II.1.1,Formosa,AR-P,annual,2010,naphtha combustion consumption by freight transport,0.36937669999999995,TJ,CO2,73300.0,kg/TJ,27075.312109999995,kg +fe992aca-4ab4-3128-b230-c1e4f1c67483,SESCO,II.1.1,Formosa,AR-P,annual,2010,naphtha combustion consumption by freight transport,0.36937669999999995,TJ,CH4,3.0,kg/TJ,1.1081301,kg +38ed3e9b-df37-30e1-a38a-c81bc5c358aa,SESCO,II.1.1,Formosa,AR-P,annual,2010,naphtha combustion consumption by freight transport,0.36937669999999995,TJ,N2O,0.6,kg/TJ,0.22162601999999995,kg +f6963d8b-0848-3179-8924-fe3fc8420fd1,SESCO,II.1.1,Jujuy,AR-Y,annual,2010,naphtha combustion consumption by freight transport,0.20147819999999997,TJ,CO2,73300.0,kg/TJ,14768.352059999997,kg +05b56aa7-05d6-33c6-9a88-272b790dfdc3,SESCO,II.1.1,Jujuy,AR-Y,annual,2010,naphtha combustion consumption by freight transport,0.20147819999999997,TJ,CH4,3.0,kg/TJ,0.6044345999999999,kg +7cc417c1-af0f-37c9-a95d-1d1a8d62af0f,SESCO,II.1.1,Jujuy,AR-Y,annual,2010,naphtha combustion consumption by freight transport,0.20147819999999997,TJ,N2O,0.6,kg/TJ,0.12088691999999998,kg +31b79ef8-de01-364e-9c25-30f876ef997b,SESCO,II.1.1,La Pampa,AR-L,annual,2010,naphtha combustion consumption by freight transport,1.4775067999999998,TJ,CO2,73300.0,kg/TJ,108301.24843999998,kg +cfaada9e-212d-39d7-85b7-824743a87078,SESCO,II.1.1,La Pampa,AR-L,annual,2010,naphtha combustion consumption by freight transport,1.4775067999999998,TJ,CH4,3.0,kg/TJ,4.4325204,kg +6291bd91-d7e6-32c3-830e-806ebe2e1e9f,SESCO,II.1.1,La Pampa,AR-L,annual,2010,naphtha combustion consumption by freight transport,1.4775067999999998,TJ,N2O,0.6,kg/TJ,0.8865040799999998,kg +0ddb1710-a9a1-3dfb-b0e9-a02f23dd8004,SESCO,II.1.1,La Rioja,AR-F,annual,2010,naphtha combustion consumption by freight transport,0.36937669999999995,TJ,CO2,73300.0,kg/TJ,27075.312109999995,kg +129278da-ed21-32b9-886b-5146318fbcae,SESCO,II.1.1,La Rioja,AR-F,annual,2010,naphtha combustion consumption by freight transport,0.36937669999999995,TJ,CH4,3.0,kg/TJ,1.1081301,kg +d88057ec-acd8-3e95-9366-fbe31240365c,SESCO,II.1.1,La Rioja,AR-F,annual,2010,naphtha combustion consumption by freight transport,0.36937669999999995,TJ,N2O,0.6,kg/TJ,0.22162601999999995,kg +df0de501-52b0-3bf2-9eeb-7863a63d65f2,SESCO,II.1.1,Mendoza,AR-M,annual,2010,naphtha combustion consumption by freight transport,10.376127299999998,TJ,CO2,73300.0,kg/TJ,760570.1310899999,kg +efe421bb-41eb-331e-9d1c-c3dc714d27cb,SESCO,II.1.1,Mendoza,AR-M,annual,2010,naphtha combustion consumption by freight transport,10.376127299999998,TJ,CH4,3.0,kg/TJ,31.128381899999994,kg +a286b276-e996-386e-8c38-bc9e55d514c2,SESCO,II.1.1,Mendoza,AR-M,annual,2010,naphtha combustion consumption by freight transport,10.376127299999998,TJ,N2O,0.6,kg/TJ,6.225676379999999,kg +efb7d2b3-02c5-35ae-ac53-6e0895db3cd0,SESCO,II.1.1,Misiones,AR-N,annual,2010,naphtha combustion consumption by freight transport,1.9476225999999999,TJ,CO2,73300.0,kg/TJ,142760.73658,kg +4cc6d842-822f-3055-926e-1c9759584338,SESCO,II.1.1,Misiones,AR-N,annual,2010,naphtha combustion consumption by freight transport,1.9476225999999999,TJ,CH4,3.0,kg/TJ,5.8428678,kg +30c3b8fb-102c-3066-b847-3e4e5041c31f,SESCO,II.1.1,Misiones,AR-N,annual,2010,naphtha combustion consumption by freight transport,1.9476225999999999,TJ,N2O,0.6,kg/TJ,1.1685735599999998,kg +d73935f1-bb47-3eea-9b3d-ffd23e10e879,SESCO,II.1.1,Neuquén,AR-Q,annual,2010,naphtha combustion consumption by freight transport,3.4251293999999994,TJ,CO2,73300.0,kg/TJ,251061.98501999996,kg +78b3eb87-5478-3e8b-bc21-849ecfccf97a,SESCO,II.1.1,Neuquén,AR-Q,annual,2010,naphtha combustion consumption by freight transport,3.4251293999999994,TJ,CH4,3.0,kg/TJ,10.275388199999998,kg +da6d3cd7-9778-3b49-94a7-6f8e30c8d566,SESCO,II.1.1,Neuquén,AR-Q,annual,2010,naphtha combustion consumption by freight transport,3.4251293999999994,TJ,N2O,0.6,kg/TJ,2.0550776399999995,kg +3d8579b4-f652-38d3-9f6a-69faab703bd6,SESCO,II.1.1,Rio Negro,AR-R,annual,2010,naphtha combustion consumption by freight transport,2.3505789999999998,TJ,CO2,73300.0,kg/TJ,172297.44069999998,kg +928d8bff-bcd0-39a5-8688-436ab5879b4f,SESCO,II.1.1,Rio Negro,AR-R,annual,2010,naphtha combustion consumption by freight transport,2.3505789999999998,TJ,CH4,3.0,kg/TJ,7.051736999999999,kg +3efb39e4-84fb-3502-b71d-e13331df598e,SESCO,II.1.1,Rio Negro,AR-R,annual,2010,naphtha combustion consumption by freight transport,2.3505789999999998,TJ,N2O,0.6,kg/TJ,1.4103473999999998,kg +3ad72d02-8796-3e18-93e7-d4816c920086,SESCO,II.1.1,Salta,AR-A,annual,2010,naphtha combustion consumption by freight transport,1.9476225999999999,TJ,CO2,73300.0,kg/TJ,142760.73658,kg +20360ce7-5761-3a81-9b3a-c59d3cb2e32e,SESCO,II.1.1,Salta,AR-A,annual,2010,naphtha combustion consumption by freight transport,1.9476225999999999,TJ,CH4,3.0,kg/TJ,5.8428678,kg +9f5e6ed4-7347-375f-bde5-8f9c7fca9dd0,SESCO,II.1.1,Salta,AR-A,annual,2010,naphtha combustion consumption by freight transport,1.9476225999999999,TJ,N2O,0.6,kg/TJ,1.1685735599999998,kg +7d2db5ea-ae5a-3f85-af46-afcfda0a3c89,SESCO,II.1.1,San Juan,AR-J,annual,2010,naphtha combustion consumption by freight transport,1.1752894999999999,TJ,CO2,73300.0,kg/TJ,86148.72034999999,kg +06bee1d8-5772-3f0d-9278-c00d1c1a25e7,SESCO,II.1.1,San Juan,AR-J,annual,2010,naphtha combustion consumption by freight transport,1.1752894999999999,TJ,CH4,3.0,kg/TJ,3.5258684999999996,kg +cc2a188b-0213-3885-bbf3-5440ee0a640f,SESCO,II.1.1,San Juan,AR-J,annual,2010,naphtha combustion consumption by freight transport,1.1752894999999999,TJ,N2O,0.6,kg/TJ,0.7051736999999999,kg +773fe49a-d9e8-3231-8f9f-f3290dbfce81,SESCO,II.1.1,San Luis,AR-D,annual,2010,naphtha combustion consumption by freight transport,1.4439270999999998,TJ,CO2,73300.0,kg/TJ,105839.85642999999,kg +64fd034c-5d8d-380b-b519-923140226179,SESCO,II.1.1,San Luis,AR-D,annual,2010,naphtha combustion consumption by freight transport,1.4439270999999998,TJ,CH4,3.0,kg/TJ,4.331781299999999,kg +8ae9b97a-0fad-381f-bf05-e96a98ec32b0,SESCO,II.1.1,San Luis,AR-D,annual,2010,naphtha combustion consumption by freight transport,1.4439270999999998,TJ,N2O,0.6,kg/TJ,0.8663562599999999,kg +0b3e8fee-0039-3b8e-bc63-a99fee3a04ab,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2010,naphtha combustion consumption by freight transport,0.7051736999999999,TJ,CO2,73300.0,kg/TJ,51689.232209999995,kg +5758678a-2083-37fb-8418-4a6d38293484,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2010,naphtha combustion consumption by freight transport,0.7051736999999999,TJ,CH4,3.0,kg/TJ,2.1155210999999996,kg +c9f9aad7-0164-30e7-976b-54473c32e55f,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2010,naphtha combustion consumption by freight transport,0.7051736999999999,TJ,N2O,0.6,kg/TJ,0.4231042199999999,kg +3741e888-1040-3ecc-8b22-7be7543e82da,SESCO,II.1.1,Santa Fe,AR-S,annual,2010,naphtha combustion consumption by freight transport,19.509805699999998,TJ,CO2,73300.0,kg/TJ,1430068.7578099999,kg +e7fcfd88-5ad8-388e-b762-079757488950,SESCO,II.1.1,Santa Fe,AR-S,annual,2010,naphtha combustion consumption by freight transport,19.509805699999998,TJ,CH4,3.0,kg/TJ,58.52941709999999,kg +5ddfc2ab-0dbb-3b03-8fa8-1403f72c78ce,SESCO,II.1.1,Santa Fe,AR-S,annual,2010,naphtha combustion consumption by freight transport,19.509805699999998,TJ,N2O,0.6,kg/TJ,11.705883419999997,kg +9cfc8b32-c371-3731-ae67-14ef9152da7b,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2010,naphtha combustion consumption by freight transport,0.671594,TJ,CO2,73300.0,kg/TJ,49227.8402,kg +f14055e9-50e6-3945-8025-f7e814ad352b,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2010,naphtha combustion consumption by freight transport,0.671594,TJ,CH4,3.0,kg/TJ,2.0147820000000003,kg +3e4ef8b6-decd-3e34-8f43-2c95b9b9ffd8,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2010,naphtha combustion consumption by freight transport,0.671594,TJ,N2O,0.6,kg/TJ,0.4029564,kg +e2d8975c-37bc-3ff9-ba26-1071c23647c6,SESCO,II.1.1,Tucuman,AR-T,annual,2010,naphtha combustion consumption by freight transport,2.6527963,TJ,CO2,73300.0,kg/TJ,194449.96878999998,kg +915514bf-e9ca-33b7-af1c-a6c36ac85388,SESCO,II.1.1,Tucuman,AR-T,annual,2010,naphtha combustion consumption by freight transport,2.6527963,TJ,CH4,3.0,kg/TJ,7.958388899999999,kg +5cf54486-fb60-3ddd-832c-a3a61bac876d,SESCO,II.1.1,Tucuman,AR-T,annual,2010,naphtha combustion consumption by freight transport,2.6527963,TJ,N2O,0.6,kg/TJ,1.59167778,kg +fad87dff-87dd-3e7f-977f-c9ac81645666,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,naphtha combustion consumption by public passenger transport,1.240769915,TJ,CO2,73300.0,kg/TJ,90948.4347695,kg +0a6b21d6-0a12-366e-8882-5717b5972378,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,naphtha combustion consumption by public passenger transport,1.240769915,TJ,CH4,3.0,kg/TJ,3.722309745,kg +e03f7b56-19c7-313f-9680-394b16ad5bad,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,naphtha combustion consumption by public passenger transport,1.240769915,TJ,N2O,0.6,kg/TJ,0.744461949,kg +a116db10-e17c-31af-84f1-3d1cc5b89d4a,SESCO,II.1.1,Capital Federal,AR-C,annual,2010,naphtha combustion consumption by public passenger transport,0.19744863599999996,TJ,CO2,73300.0,kg/TJ,14472.985018799996,kg +99a13797-bf1b-3487-9ca1-7378d82662ba,SESCO,II.1.1,Capital Federal,AR-C,annual,2010,naphtha combustion consumption by public passenger transport,0.19744863599999996,TJ,CH4,3.0,kg/TJ,0.5923459079999999,kg +110ee490-fe4e-3891-a8c9-1a6b6fa45b47,SESCO,II.1.1,Capital Federal,AR-C,annual,2010,naphtha combustion consumption by public passenger transport,0.19744863599999996,TJ,N2O,0.6,kg/TJ,0.11846918159999997,kg +84beb036-7338-35fb-a918-52b0c1389d91,SESCO,II.1.1,Chubut,AR-U,annual,2010,naphtha combustion consumption by public passenger transport,0.07387534,TJ,CO2,73300.0,kg/TJ,5415.062422,kg +a78682ed-5513-3d14-86f8-3069b8fa22de,SESCO,II.1.1,Chubut,AR-U,annual,2010,naphtha combustion consumption by public passenger transport,0.07387534,TJ,CH4,3.0,kg/TJ,0.22162601999999998,kg +f8027daa-d16a-3825-98c7-3cb1af4bb05c,SESCO,II.1.1,Chubut,AR-U,annual,2010,naphtha combustion consumption by public passenger transport,0.07387534,TJ,N2O,0.6,kg/TJ,0.044325204,kg +01045933-e55b-3821-853b-6ae91e761d18,SESCO,II.1.1,Córdoba,AR-X,annual,2010,naphtha combustion consumption by public passenger transport,0.035258685000000005,TJ,CO2,73300.0,kg/TJ,2584.4616105000005,kg +56fba308-9555-3bc1-91d4-8e5e993bea5a,SESCO,II.1.1,Córdoba,AR-X,annual,2010,naphtha combustion consumption by public passenger transport,0.035258685000000005,TJ,CH4,3.0,kg/TJ,0.10577605500000001,kg +8c0967e6-4a6d-3a65-98b3-943176f561a6,SESCO,II.1.1,Córdoba,AR-X,annual,2010,naphtha combustion consumption by public passenger transport,0.035258685000000005,TJ,N2O,0.6,kg/TJ,0.021155211000000004,kg +5be04469-8c76-37cd-94d9-7c45a7d752df,SESCO,II.1.1,Entre Rios,AR-E,annual,2010,naphtha combustion consumption by public passenger transport,0.0335797,TJ,CO2,73300.0,kg/TJ,2461.3920099999996,kg +73676ae2-fac3-38ce-8f0a-0765ed142ecd,SESCO,II.1.1,Entre Rios,AR-E,annual,2010,naphtha combustion consumption by public passenger transport,0.0335797,TJ,CH4,3.0,kg/TJ,0.1007391,kg +8128bbe0-e568-346b-a7e9-1d92e25c57b0,SESCO,II.1.1,Entre Rios,AR-E,annual,2010,naphtha combustion consumption by public passenger transport,0.0335797,TJ,N2O,0.6,kg/TJ,0.020147819999999997,kg +0277d32d-4ab3-3cb7-9a83-cd1c4f8764d2,SESCO,II.1.1,La Pampa,AR-L,annual,2010,naphtha combustion consumption by public passenger transport,0.020819413999999998,TJ,CO2,73300.0,kg/TJ,1526.0630462,kg +3c81d8b2-c19e-30cd-b46e-0127513a82e9,SESCO,II.1.1,La Pampa,AR-L,annual,2010,naphtha combustion consumption by public passenger transport,0.020819413999999998,TJ,CH4,3.0,kg/TJ,0.062458242,kg +b7a24073-7641-3eb4-86d2-59e2f2a2cc8f,SESCO,II.1.1,La Pampa,AR-L,annual,2010,naphtha combustion consumption by public passenger transport,0.020819413999999998,TJ,N2O,0.6,kg/TJ,0.012491648399999998,kg +b3619790-5f5a-3469-bd65-843fdd94f903,SESCO,II.1.1,Mendoza,AR-M,annual,2010,naphtha combustion consumption by public passenger transport,0.530895057,TJ,CO2,73300.0,kg/TJ,38914.607678099994,kg +973a4aa1-761c-3a82-af69-76aa849e79c8,SESCO,II.1.1,Mendoza,AR-M,annual,2010,naphtha combustion consumption by public passenger transport,0.530895057,TJ,CH4,3.0,kg/TJ,1.5926851709999998,kg +d834fe91-69ee-3462-bb83-8d909261ed35,SESCO,II.1.1,Mendoza,AR-M,annual,2010,naphtha combustion consumption by public passenger transport,0.530895057,TJ,N2O,0.6,kg/TJ,0.31853703419999996,kg +a47ac1f3-939d-30af-ba40-3ea6fd4fb6f2,SESCO,II.1.1,Misiones,AR-N,annual,2010,naphtha combustion consumption by public passenger transport,0.12088692,TJ,CO2,73300.0,kg/TJ,8861.011236,kg +d7dc7a0c-a37e-38c9-b7f6-9885ff8df2c9,SESCO,II.1.1,Misiones,AR-N,annual,2010,naphtha combustion consumption by public passenger transport,0.12088692,TJ,CH4,3.0,kg/TJ,0.36266075999999997,kg +c67a0f8a-3e8a-3b45-a0ac-84632b10caa6,SESCO,II.1.1,Misiones,AR-N,annual,2010,naphtha combustion consumption by public passenger transport,0.12088692,TJ,N2O,0.6,kg/TJ,0.07253215199999999,kg +f387b281-c840-35cf-bdea-1ca208bb6a90,SESCO,II.1.1,Neuquén,AR-Q,annual,2010,naphtha combustion consumption by public passenger transport,0.3149775859999999,TJ,CO2,73300.0,kg/TJ,23087.857053799995,kg +de6fe383-0c78-392b-84d5-ab2b0240da48,SESCO,II.1.1,Neuquén,AR-Q,annual,2010,naphtha combustion consumption by public passenger transport,0.3149775859999999,TJ,CH4,3.0,kg/TJ,0.9449327579999998,kg +ba2ba212-ca01-335b-9383-bc79f2e25c91,SESCO,II.1.1,Neuquén,AR-Q,annual,2010,naphtha combustion consumption by public passenger transport,0.3149775859999999,TJ,N2O,0.6,kg/TJ,0.18898655159999994,kg +658ade9d-f324-35e4-a3ae-8f9c41d59d6b,SESCO,II.1.1,Rio Negro,AR-R,annual,2010,naphtha combustion consumption by public passenger transport,0.5117546279999999,TJ,CO2,73300.0,kg/TJ,37511.614232399996,kg +08322eb1-35bb-3b8e-8818-060da59e5056,SESCO,II.1.1,Rio Negro,AR-R,annual,2010,naphtha combustion consumption by public passenger transport,0.5117546279999999,TJ,CH4,3.0,kg/TJ,1.535263884,kg +50a4b3d6-0717-3f1e-b4a3-c87565a95412,SESCO,II.1.1,Rio Negro,AR-R,annual,2010,naphtha combustion consumption by public passenger transport,0.5117546279999999,TJ,N2O,0.6,kg/TJ,0.3070527767999999,kg +25d718dc-4ff3-3414-a577-176c58460212,SESCO,II.1.1,San Juan,AR-J,annual,2010,naphtha combustion consumption by public passenger transport,0.001343188,TJ,CO2,73300.0,kg/TJ,98.45568039999999,kg +f1b89470-24c0-3fff-82f9-45889577741e,SESCO,II.1.1,San Juan,AR-J,annual,2010,naphtha combustion consumption by public passenger transport,0.001343188,TJ,CH4,3.0,kg/TJ,0.004029563999999999,kg +8952967e-0c59-3b60-8d04-e3933cbbc0a7,SESCO,II.1.1,San Juan,AR-J,annual,2010,naphtha combustion consumption by public passenger transport,0.001343188,TJ,N2O,0.6,kg/TJ,0.0008059127999999999,kg +5cd0b545-ba3a-3fff-b0c4-8870fcc09110,SESCO,II.1.1,San Luis,AR-D,annual,2010,naphtha combustion consumption by public passenger transport,0.005372752,TJ,CO2,73300.0,kg/TJ,393.82272159999997,kg +773a0a0d-10c9-347e-90fc-3b205bc0d975,SESCO,II.1.1,San Luis,AR-D,annual,2010,naphtha combustion consumption by public passenger transport,0.005372752,TJ,CH4,3.0,kg/TJ,0.016118255999999997,kg +9384e4d1-6395-338f-ad07-35fa2288bd0a,SESCO,II.1.1,San Luis,AR-D,annual,2010,naphtha combustion consumption by public passenger transport,0.005372752,TJ,N2O,0.6,kg/TJ,0.0032236511999999998,kg +5147deb6-7f26-38f1-8a89-acecfef9ffdf,SESCO,II.1.1,Santa Fe,AR-S,annual,2010,naphtha combustion consumption by public passenger transport,0.31598497699999994,TJ,CO2,73300.0,kg/TJ,23161.698814099997,kg +85583e1c-41bc-30e9-b528-65bea1d6a6d5,SESCO,II.1.1,Santa Fe,AR-S,annual,2010,naphtha combustion consumption by public passenger transport,0.31598497699999994,TJ,CH4,3.0,kg/TJ,0.9479549309999998,kg +b3c84c51-44c9-39f6-9356-badb706812e7,SESCO,II.1.1,Santa Fe,AR-S,annual,2010,naphtha combustion consumption by public passenger transport,0.31598497699999994,TJ,N2O,0.6,kg/TJ,0.18959098619999995,kg +50c5b4e9-c4ff-355a-9d35-51aafd0f62bf,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,naphtha combustion consumption by public passenger transport,3.491617206,TJ,CO2,73300.0,kg/TJ,255935.5411998,kg +693d9a89-e7fa-325b-a2b8-6bd42c59f522,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,naphtha combustion consumption by public passenger transport,3.491617206,TJ,CH4,3.0,kg/TJ,10.474851617999999,kg +aa4c8fca-6cf2-3b0f-b4cc-13b73b3b87f0,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,naphtha combustion consumption by public passenger transport,3.491617206,TJ,N2O,0.6,kg/TJ,2.0949703235999997,kg +4efab5c4-f266-3e87-9bed-573200e8d817,SESCO,II.1.1,Capital Federal,AR-C,annual,2010,naphtha combustion consumption by public passenger transport,0.40967233999999997,TJ,CO2,73300.0,kg/TJ,30028.982522,kg +94b08186-f169-3e51-8bf7-1cace4754abb,SESCO,II.1.1,Capital Federal,AR-C,annual,2010,naphtha combustion consumption by public passenger transport,0.40967233999999997,TJ,CH4,3.0,kg/TJ,1.22901702,kg +f44bc7ea-d5f1-3da5-955d-6bfa8229681d,SESCO,II.1.1,Capital Federal,AR-C,annual,2010,naphtha combustion consumption by public passenger transport,0.40967233999999997,TJ,N2O,0.6,kg/TJ,0.24580340399999998,kg +c001ecab-56b7-3b31-bc45-d66a432bf514,SESCO,II.1.1,Chaco,AR-H,annual,2010,naphtha combustion consumption by public passenger transport,0.04633998599999999,TJ,CO2,73300.0,kg/TJ,3396.7209737999997,kg +ecb06bc7-aa61-3fc9-99d1-bcf269b15a17,SESCO,II.1.1,Chaco,AR-H,annual,2010,naphtha combustion consumption by public passenger transport,0.04633998599999999,TJ,CH4,3.0,kg/TJ,0.13901995799999997,kg +b2feb14a-e602-3df6-b75f-1ac6d7b105e2,SESCO,II.1.1,Chaco,AR-H,annual,2010,naphtha combustion consumption by public passenger transport,0.04633998599999999,TJ,N2O,0.6,kg/TJ,0.027803991599999994,kg +5a003ab2-fe80-32be-9237-dc8f57726e4b,SESCO,II.1.1,Chubut,AR-U,annual,2010,naphtha combustion consumption by public passenger transport,0.006044346,TJ,CO2,73300.0,kg/TJ,443.05056179999997,kg +3de6493c-4d63-3cf9-b387-190c68d63273,SESCO,II.1.1,Chubut,AR-U,annual,2010,naphtha combustion consumption by public passenger transport,0.006044346,TJ,CH4,3.0,kg/TJ,0.018133038,kg +6f97c9dc-f459-3638-a938-58cb6790ca07,SESCO,II.1.1,Chubut,AR-U,annual,2010,naphtha combustion consumption by public passenger transport,0.006044346,TJ,N2O,0.6,kg/TJ,0.0036266075999999998,kg +bb025d04-82ef-305b-b4cb-768f98f85b3d,SESCO,II.1.1,Córdoba,AR-X,annual,2010,naphtha combustion consumption by public passenger transport,0.24479601299999998,TJ,CO2,73300.0,kg/TJ,17943.547752899998,kg +1769373b-f139-3848-a878-f267831f95eb,SESCO,II.1.1,Córdoba,AR-X,annual,2010,naphtha combustion consumption by public passenger transport,0.24479601299999998,TJ,CH4,3.0,kg/TJ,0.7343880389999999,kg +ac3a0cd5-59bb-35d2-a04c-61c73c06a465,SESCO,II.1.1,Córdoba,AR-X,annual,2010,naphtha combustion consumption by public passenger transport,0.24479601299999998,TJ,N2O,0.6,kg/TJ,0.14687760779999998,kg +4a5239e2-ea8f-36ce-a4c4-1f302684ca50,SESCO,II.1.1,Entre Rios,AR-E,annual,2010,naphtha combustion consumption by public passenger transport,0.24110224599999996,TJ,CO2,73300.0,kg/TJ,17672.794631799996,kg +63b4253f-53d9-3ccd-8b83-1d56a2b088e4,SESCO,II.1.1,Entre Rios,AR-E,annual,2010,naphtha combustion consumption by public passenger transport,0.24110224599999996,TJ,CH4,3.0,kg/TJ,0.7233067379999999,kg +30c65ab6-36d3-3bbf-aa02-8dc1db53eff9,SESCO,II.1.1,Entre Rios,AR-E,annual,2010,naphtha combustion consumption by public passenger transport,0.24110224599999996,TJ,N2O,0.6,kg/TJ,0.14466134759999996,kg +e60d606f-0ae7-314d-a0ca-f6a2b8e6c725,SESCO,II.1.1,Formosa,AR-P,annual,2010,naphtha combustion consumption by public passenger transport,0.0010073909999999998,TJ,CO2,73300.0,kg/TJ,73.84176029999999,kg +e35474f7-90f5-3e50-8e78-03207d926766,SESCO,II.1.1,Formosa,AR-P,annual,2010,naphtha combustion consumption by public passenger transport,0.0010073909999999998,TJ,CH4,3.0,kg/TJ,0.0030221729999999995,kg +6d9f592d-ffb7-315d-833c-fde0bdf15286,SESCO,II.1.1,Formosa,AR-P,annual,2010,naphtha combustion consumption by public passenger transport,0.0010073909999999998,TJ,N2O,0.6,kg/TJ,0.0006044345999999999,kg +9e8dcd9a-4116-317d-9375-4fe8547b63c7,SESCO,II.1.1,Jujuy,AR-Y,annual,2010,naphtha combustion consumption by public passenger transport,0.001343188,TJ,CO2,73300.0,kg/TJ,98.45568039999999,kg +b9c4478a-44ce-39a4-b962-074854b4a382,SESCO,II.1.1,Jujuy,AR-Y,annual,2010,naphtha combustion consumption by public passenger transport,0.001343188,TJ,CH4,3.0,kg/TJ,0.004029563999999999,kg +0e3c0dd3-ad2f-3181-9880-6314026920d0,SESCO,II.1.1,Jujuy,AR-Y,annual,2010,naphtha combustion consumption by public passenger transport,0.001343188,TJ,N2O,0.6,kg/TJ,0.0008059127999999999,kg +d420292d-820d-36d8-941c-0f5a88c1dbff,SESCO,II.1.1,La Pampa,AR-L,annual,2010,naphtha combustion consumption by public passenger transport,0.0016789849999999998,TJ,CO2,73300.0,kg/TJ,123.06960049999999,kg +02b49fb6-5c4b-31c6-ab36-0c39ac0122d9,SESCO,II.1.1,La Pampa,AR-L,annual,2010,naphtha combustion consumption by public passenger transport,0.0016789849999999998,TJ,CH4,3.0,kg/TJ,0.005036954999999999,kg +f36d166d-fba1-31d8-855e-6d83c78b2272,SESCO,II.1.1,La Pampa,AR-L,annual,2010,naphtha combustion consumption by public passenger transport,0.0016789849999999998,TJ,N2O,0.6,kg/TJ,0.0010073909999999998,kg +63faef15-d07c-355a-935f-ff66f91ac3ca,SESCO,II.1.1,La Rioja,AR-F,annual,2010,naphtha combustion consumption by public passenger transport,0.0010073909999999998,TJ,CO2,73300.0,kg/TJ,73.84176029999999,kg +7d0c0e65-a074-3e47-a030-ad361d6a964f,SESCO,II.1.1,La Rioja,AR-F,annual,2010,naphtha combustion consumption by public passenger transport,0.0010073909999999998,TJ,CH4,3.0,kg/TJ,0.0030221729999999995,kg +c1ae09be-f46a-308a-99a9-2eaee92388c1,SESCO,II.1.1,La Rioja,AR-F,annual,2010,naphtha combustion consumption by public passenger transport,0.0010073909999999998,TJ,N2O,0.6,kg/TJ,0.0006044345999999999,kg +04368da2-b4a8-31e1-b5ad-4579cb2565fa,SESCO,II.1.1,Mendoza,AR-M,annual,2010,naphtha combustion consumption by public passenger transport,0.5298876659999999,TJ,CO2,73300.0,kg/TJ,38840.765917799996,kg +fa4826da-2afa-350a-b2ef-9e8e19996108,SESCO,II.1.1,Mendoza,AR-M,annual,2010,naphtha combustion consumption by public passenger transport,0.5298876659999999,TJ,CH4,3.0,kg/TJ,1.5896629979999997,kg +63b0ab50-be29-3653-a1fb-72585a3a7581,SESCO,II.1.1,Mendoza,AR-M,annual,2010,naphtha combustion consumption by public passenger transport,0.5298876659999999,TJ,N2O,0.6,kg/TJ,0.3179325995999999,kg +3fb71139-3080-3302-ad8f-c00403737548,SESCO,II.1.1,Misiones,AR-N,annual,2010,naphtha combustion consumption by public passenger transport,0.019812023,TJ,CO2,73300.0,kg/TJ,1452.2212859,kg +f56ad08e-543f-3ffe-ba31-d7088361b960,SESCO,II.1.1,Misiones,AR-N,annual,2010,naphtha combustion consumption by public passenger transport,0.019812023,TJ,CH4,3.0,kg/TJ,0.05943606900000001,kg +d5325aaf-224a-3251-a801-c031942969d5,SESCO,II.1.1,Misiones,AR-N,annual,2010,naphtha combustion consumption by public passenger transport,0.019812023,TJ,N2O,0.6,kg/TJ,0.011887213800000001,kg +6665cc81-4a22-320d-abee-ee645ea00b80,SESCO,II.1.1,Neuquén,AR-Q,annual,2010,naphtha combustion consumption by public passenger transport,0.021826804999999998,TJ,CO2,73300.0,kg/TJ,1599.9048064999997,kg +f9efc00f-7ae9-38d5-94fb-6529c2c875f7,SESCO,II.1.1,Neuquén,AR-Q,annual,2010,naphtha combustion consumption by public passenger transport,0.021826804999999998,TJ,CH4,3.0,kg/TJ,0.06548041499999999,kg +9c9b8dcf-62b4-3e7b-a9ab-8f492c9c79b8,SESCO,II.1.1,Neuquén,AR-Q,annual,2010,naphtha combustion consumption by public passenger transport,0.021826804999999998,TJ,N2O,0.6,kg/TJ,0.013096082999999998,kg +deb2d0e3-aaa1-3e55-9336-0de9c0514aeb,SESCO,II.1.1,Rio Negro,AR-R,annual,2010,naphtha combustion consumption by public passenger transport,0.16957748499999997,TJ,CO2,73300.0,kg/TJ,12430.029650499999,kg +e277e07d-8424-305d-b254-8754cd31b39c,SESCO,II.1.1,Rio Negro,AR-R,annual,2010,naphtha combustion consumption by public passenger transport,0.16957748499999997,TJ,CH4,3.0,kg/TJ,0.5087324549999999,kg +a190bbf9-3fb8-30c0-9182-ed6a15fdd9ca,SESCO,II.1.1,Rio Negro,AR-R,annual,2010,naphtha combustion consumption by public passenger transport,0.16957748499999997,TJ,N2O,0.6,kg/TJ,0.10174649099999998,kg +4c935c26-6636-39d9-8209-7ffe9c20d5da,SESCO,II.1.1,Salta,AR-A,annual,2010,naphtha combustion consumption by public passenger transport,0.0016789849999999998,TJ,CO2,73300.0,kg/TJ,123.06960049999999,kg +9d045ecd-205a-3c4c-8134-1aaccd997046,SESCO,II.1.1,Salta,AR-A,annual,2010,naphtha combustion consumption by public passenger transport,0.0016789849999999998,TJ,CH4,3.0,kg/TJ,0.005036954999999999,kg +9c47cc75-486a-3d66-a40d-41f69b7e2119,SESCO,II.1.1,Salta,AR-A,annual,2010,naphtha combustion consumption by public passenger transport,0.0016789849999999998,TJ,N2O,0.6,kg/TJ,0.0010073909999999998,kg +25d718dc-4ff3-3414-a577-176c58460212,SESCO,II.1.1,San Juan,AR-J,annual,2010,naphtha combustion consumption by public passenger transport,0.001343188,TJ,CO2,73300.0,kg/TJ,98.45568039999999,kg +f1b89470-24c0-3fff-82f9-45889577741e,SESCO,II.1.1,San Juan,AR-J,annual,2010,naphtha combustion consumption by public passenger transport,0.001343188,TJ,CH4,3.0,kg/TJ,0.004029563999999999,kg +8952967e-0c59-3b60-8d04-e3933cbbc0a7,SESCO,II.1.1,San Juan,AR-J,annual,2010,naphtha combustion consumption by public passenger transport,0.001343188,TJ,N2O,0.6,kg/TJ,0.0008059127999999999,kg +6ee24818-10f8-3b5f-a00a-ae9157d4a289,SESCO,II.1.1,San Luis,AR-D,annual,2010,naphtha combustion consumption by public passenger transport,0.04264621899999999,TJ,CO2,73300.0,kg/TJ,3125.9678526999996,kg +2f6a2702-5b4f-31e4-95f3-4598db1fbb90,SESCO,II.1.1,San Luis,AR-D,annual,2010,naphtha combustion consumption by public passenger transport,0.04264621899999999,TJ,CH4,3.0,kg/TJ,0.12793865699999998,kg +682b5c0d-7ddf-3fe2-8b5d-a90cea35e70f,SESCO,II.1.1,San Luis,AR-D,annual,2010,naphtha combustion consumption by public passenger transport,0.04264621899999999,TJ,N2O,0.6,kg/TJ,0.025587731399999994,kg +80db25f6-fc40-3a2d-9f68-eef33641e4a7,SESCO,II.1.1,Santa Fe,AR-S,annual,2010,naphtha combustion consumption by public passenger transport,0.7578938289999999,TJ,CO2,73300.0,kg/TJ,55553.617665699996,kg +1b93d027-20ec-352b-8055-47bea0d67dc8,SESCO,II.1.1,Santa Fe,AR-S,annual,2010,naphtha combustion consumption by public passenger transport,0.7578938289999999,TJ,CH4,3.0,kg/TJ,2.2736814869999997,kg +83444b29-c539-36cd-bb86-c934d04f458f,SESCO,II.1.1,Santa Fe,AR-S,annual,2010,naphtha combustion consumption by public passenger transport,0.7578938289999999,TJ,N2O,0.6,kg/TJ,0.45473629739999993,kg +7194cba7-ca7e-3fb8-812f-60e8f2446b3e,SESCO,II.1.1,Tucuman,AR-T,annual,2010,naphtha combustion consumption by public passenger transport,0.0010073909999999998,TJ,CO2,73300.0,kg/TJ,73.84176029999999,kg +b74d2098-0427-35b7-86aa-9f29251f5deb,SESCO,II.1.1,Tucuman,AR-T,annual,2010,naphtha combustion consumption by public passenger transport,0.0010073909999999998,TJ,CH4,3.0,kg/TJ,0.0030221729999999995,kg +2112d494-9c84-33c5-b74b-d84e52327d25,SESCO,II.1.1,Tucuman,AR-T,annual,2010,naphtha combustion consumption by public passenger transport,0.0010073909999999998,TJ,N2O,0.6,kg/TJ,0.0006044345999999999,kg +e75637ab-9793-3783-80a1-2bee6568ca2c,SESCO,II.1.1,Capital Federal,AR-C,annual,2011,naphtha combustion consumption by to the public,41.3366107,TJ,CO2,73300.0,kg/TJ,3029973.5643100003,kg +7cc74fb6-99fd-3ea4-b34c-c3e25a26bdb8,SESCO,II.1.1,Capital Federal,AR-C,annual,2011,naphtha combustion consumption by to the public,41.3366107,TJ,CH4,3.0,kg/TJ,124.00983210000001,kg +ca0ee047-6520-3a67-b140-8bdbdb2c7599,SESCO,II.1.1,Capital Federal,AR-C,annual,2011,naphtha combustion consumption by to the public,41.3366107,TJ,N2O,0.6,kg/TJ,24.80196642,kg +a2dce5ad-66d5-3299-b649-7284d6d786f5,SESCO,II.1.1,Capital Federal,AR-C,annual,2011,naphtha combustion consumption by to the public,5.238433199999999,TJ,CO2,73300.0,kg/TJ,383977.15355999995,kg +7b80fec1-c41c-3b8c-9f84-f21b66688785,SESCO,II.1.1,Capital Federal,AR-C,annual,2011,naphtha combustion consumption by to the public,5.238433199999999,TJ,CH4,3.0,kg/TJ,15.715299599999998,kg +8fc7f846-249a-3277-a01b-7e460bba453a,SESCO,II.1.1,Capital Federal,AR-C,annual,2011,naphtha combustion consumption by to the public,5.238433199999999,TJ,N2O,0.6,kg/TJ,3.1430599199999993,kg +7b3109c2-ffce-3c2f-abfd-441a9e7c4f6c,SESCO,II.5.1,Córdoba,AR-X,annual,2011,naphtha combustion consumption by agriculture machines,9.980558434,TJ,CO2,73300.0,kg/TJ,731574.9332122001,kg +0b877d4e-fa88-3d59-9ea1-f692fe82208a,SESCO,II.5.1,Córdoba,AR-X,annual,2011,naphtha combustion consumption by agriculture machines,9.980558434,TJ,CH4,3.0,kg/TJ,29.941675302,kg +91a5cb11-9ec3-3578-8f13-c5db344906df,SESCO,II.5.1,Córdoba,AR-X,annual,2011,naphtha combustion consumption by agriculture machines,9.980558434,TJ,N2O,0.6,kg/TJ,5.9883350604,kg +4046cc8d-a67d-3d81-b14d-06fc6990592d,SESCO,II.5.1,Santa Fe,AR-S,annual,2011,naphtha combustion consumption by agriculture machines,20.893289340000003,TJ,CO2,73300.0,kg/TJ,1531478.108622,kg +b4caac93-dc63-38b1-bd90-88816185fd7e,SESCO,II.5.1,Santa Fe,AR-S,annual,2011,naphtha combustion consumption by agriculture machines,20.893289340000003,TJ,CH4,3.0,kg/TJ,62.67986802000001,kg +665bdf18-17f3-39bd-a900-aecc0e438418,SESCO,II.5.1,Santa Fe,AR-S,annual,2011,naphtha combustion consumption by agriculture machines,20.893289340000003,TJ,N2O,0.6,kg/TJ,12.535973604,kg +204d0bfd-4f58-3447-8119-813742324677,SESCO,II.5.1,Córdoba,AR-X,annual,2011,naphtha combustion consumption by agriculture machines,5.346224037,TJ,CO2,73300.0,kg/TJ,391878.2219121,kg +5a022bc3-7d76-31f6-b358-1452a12c0270,SESCO,II.5.1,Córdoba,AR-X,annual,2011,naphtha combustion consumption by agriculture machines,5.346224037,TJ,CH4,3.0,kg/TJ,16.038672111,kg +e8f2715c-1060-3862-b8d9-64972c24de81,SESCO,II.5.1,Córdoba,AR-X,annual,2011,naphtha combustion consumption by agriculture machines,5.346224037,TJ,N2O,0.6,kg/TJ,3.2077344221999997,kg +b8f69ccb-3834-323c-9439-b34879fc7981,SESCO,II.5.1,Santa Fe,AR-S,annual,2011,naphtha combustion consumption by agriculture machines,1.007391,TJ,CO2,73300.0,kg/TJ,73841.7603,kg +88b43a9c-dc0d-3e9e-93a4-1cc1f4ae30bc,SESCO,II.5.1,Santa Fe,AR-S,annual,2011,naphtha combustion consumption by agriculture machines,1.007391,TJ,CH4,3.0,kg/TJ,3.0221729999999996,kg +0d9f948b-a395-31a5-86d7-6dd7fccf9504,SESCO,II.5.1,Santa Fe,AR-S,annual,2011,naphtha combustion consumption by agriculture machines,1.007391,TJ,N2O,0.6,kg/TJ,0.6044345999999999,kg +e6be9040-4369-33e1-83ed-977cf8c4e036,SESCO,II.1.1,Buenos Aires,AR-B,annual,2011,naphtha combustion consumption by to the public,320.0836480226,TJ,CO2,73300.0,kg/TJ,23462131.400056582,kg +9f8cad3c-25f9-3e4d-8736-1e90e5ba09c0,SESCO,II.1.1,Buenos Aires,AR-B,annual,2011,naphtha combustion consumption by to the public,320.0836480226,TJ,CH4,3.0,kg/TJ,960.2509440678,kg +c2f2118b-6703-3805-9f7c-ed16a9b0c441,SESCO,II.1.1,Buenos Aires,AR-B,annual,2011,naphtha combustion consumption by to the public,320.0836480226,TJ,N2O,0.6,kg/TJ,192.05018881356,kg +8e9899b2-2f1c-3804-92b1-7b2a91c5d5b9,SESCO,II.1.1,Capital Federal,AR-C,annual,2011,naphtha combustion consumption by to the public,15.761303788999998,TJ,CO2,73300.0,kg/TJ,1155303.5677337,kg +e7b9f307-7c81-3286-b865-0be9ba287750,SESCO,II.1.1,Capital Federal,AR-C,annual,2011,naphtha combustion consumption by to the public,15.761303788999998,TJ,CH4,3.0,kg/TJ,47.283911366999995,kg +88e51062-90eb-35e6-84b8-c32f1b5f015a,SESCO,II.1.1,Capital Federal,AR-C,annual,2011,naphtha combustion consumption by to the public,15.761303788999998,TJ,N2O,0.6,kg/TJ,9.456782273399998,kg +2971273d-2984-304f-9e17-7c9053da243d,SESCO,II.1.1,Catamarca,AR-K,annual,2011,naphtha combustion consumption by to the public,0.6712582029999999,TJ,CO2,73300.0,kg/TJ,49203.226279899995,kg +48291f32-f807-31f8-9794-04273a8ca626,SESCO,II.1.1,Catamarca,AR-K,annual,2011,naphtha combustion consumption by to the public,0.6712582029999999,TJ,CH4,3.0,kg/TJ,2.013774609,kg +ac3bd9ea-4202-323f-be53-40e0fbb2fbc4,SESCO,II.1.1,Catamarca,AR-K,annual,2011,naphtha combustion consumption by to the public,0.6712582029999999,TJ,N2O,0.6,kg/TJ,0.40275492179999994,kg +d2f5dacf-15b9-3bce-9bfd-1ac133cba81f,SESCO,II.1.1,Chaco,AR-H,annual,2011,naphtha combustion consumption by to the public,1.231031802,TJ,CO2,73300.0,kg/TJ,90234.6310866,kg +f7467170-c05d-3190-99f1-265867c1975f,SESCO,II.1.1,Chaco,AR-H,annual,2011,naphtha combustion consumption by to the public,1.231031802,TJ,CH4,3.0,kg/TJ,3.693095406,kg +845b0603-047b-3aef-9fda-291cb5d6cd55,SESCO,II.1.1,Chaco,AR-H,annual,2011,naphtha combustion consumption by to the public,1.231031802,TJ,N2O,0.6,kg/TJ,0.7386190812,kg +4681a4cb-27f3-347b-85b2-86a79647a409,SESCO,II.1.1,Corrientes,AR-W,annual,2011,naphtha combustion consumption by to the public,115.47051438999999,TJ,CO2,73300.0,kg/TJ,8463988.704787,kg +d200523b-acad-3a98-a008-42109f495def,SESCO,II.1.1,Corrientes,AR-W,annual,2011,naphtha combustion consumption by to the public,115.47051438999999,TJ,CH4,3.0,kg/TJ,346.41154316999996,kg +8b5328b0-1685-3dd9-8404-ef885b99f32a,SESCO,II.1.1,Corrientes,AR-W,annual,2011,naphtha combustion consumption by to the public,115.47051438999999,TJ,N2O,0.6,kg/TJ,69.28230863399999,kg +a47c470e-28ac-3bbd-ac78-ade316813400,SESCO,II.1.1,Córdoba,AR-X,annual,2011,naphtha combustion consumption by to the public,171.28534854199995,TJ,CO2,73300.0,kg/TJ,12555216.048128596,kg +fc896631-b882-3efb-96d5-e221e7d65369,SESCO,II.1.1,Córdoba,AR-X,annual,2011,naphtha combustion consumption by to the public,171.28534854199995,TJ,CH4,3.0,kg/TJ,513.8560456259999,kg +87289263-bb13-3344-97df-cc046693dd5d,SESCO,II.1.1,Córdoba,AR-X,annual,2011,naphtha combustion consumption by to the public,171.28534854199995,TJ,N2O,0.6,kg/TJ,102.77120912519997,kg +b5d1223c-5836-37dc-8e13-d970fea18319,SESCO,II.1.1,Entre Rios,AR-E,annual,2011,naphtha combustion consumption by to the public,18.414771682999998,TJ,CO2,73300.0,kg/TJ,1349802.7643638998,kg +781187d5-20b5-3854-82cb-f7595551a787,SESCO,II.1.1,Entre Rios,AR-E,annual,2011,naphtha combustion consumption by to the public,18.414771682999998,TJ,CH4,3.0,kg/TJ,55.244315048999994,kg +2ab2963d-e98f-3b72-b6de-106a1fd73f49,SESCO,II.1.1,Entre Rios,AR-E,annual,2011,naphtha combustion consumption by to the public,18.414771682999998,TJ,N2O,0.6,kg/TJ,11.048863009799998,kg +5e4ed6a5-8783-39e6-960d-a159d5bc7765,SESCO,II.1.1,Mendoza,AR-M,annual,2011,naphtha combustion consumption by to the public,157.30847001099997,TJ,CO2,73300.0,kg/TJ,11530710.851806298,kg +b067a6c9-ef6f-30ae-b92d-e6cece6ba30b,SESCO,II.1.1,Mendoza,AR-M,annual,2011,naphtha combustion consumption by to the public,157.30847001099997,TJ,CH4,3.0,kg/TJ,471.92541003299993,kg +d9a2b9f1-e085-3d7a-8f4e-dc097fcb1824,SESCO,II.1.1,Mendoza,AR-M,annual,2011,naphtha combustion consumption by to the public,157.30847001099997,TJ,N2O,0.6,kg/TJ,94.38508200659997,kg +f31f1a8d-f4c1-38d0-856e-0dc335623487,SESCO,II.1.1,Misiones,AR-N,annual,2011,naphtha combustion consumption by to the public,190.451633911,TJ,CO2,73300.0,kg/TJ,13960104.7656763,kg +60f153ec-2b2e-3098-9516-893e764960f7,SESCO,II.1.1,Misiones,AR-N,annual,2011,naphtha combustion consumption by to the public,190.451633911,TJ,CH4,3.0,kg/TJ,571.3549017329999,kg +35fd6915-d7f1-38ee-89dc-e2843a300f2b,SESCO,II.1.1,Misiones,AR-N,annual,2011,naphtha combustion consumption by to the public,190.451633911,TJ,N2O,0.6,kg/TJ,114.27098034659998,kg +be9e046b-15df-3b1d-90fa-a3d467c13b10,SESCO,II.1.1,Rio Negro,AR-R,annual,2011,naphtha combustion consumption by to the public,1.50101259,TJ,CO2,73300.0,kg/TJ,110024.222847,kg +c1936597-26af-3944-8984-2d1e6a365f53,SESCO,II.1.1,Rio Negro,AR-R,annual,2011,naphtha combustion consumption by to the public,1.50101259,TJ,CH4,3.0,kg/TJ,4.50303777,kg +33f177ea-b8f2-3bbf-8081-023e03845303,SESCO,II.1.1,Rio Negro,AR-R,annual,2011,naphtha combustion consumption by to the public,1.50101259,TJ,N2O,0.6,kg/TJ,0.9006075539999999,kg +2bb0cb01-bed6-3ef7-8e1b-520dcdee44ee,SESCO,II.1.1,San Juan,AR-J,annual,2011,naphtha combustion consumption by to the public,36.047136356,TJ,CO2,73300.0,kg/TJ,2642255.0948948003,kg +3bfb924d-0615-3bed-be25-3fe3c11d2570,SESCO,II.1.1,San Juan,AR-J,annual,2011,naphtha combustion consumption by to the public,36.047136356,TJ,CH4,3.0,kg/TJ,108.141409068,kg +fd5aa5ce-5abb-3caa-87fc-dba5fb8cea1e,SESCO,II.1.1,San Juan,AR-J,annual,2011,naphtha combustion consumption by to the public,36.047136356,TJ,N2O,0.6,kg/TJ,21.6282818136,kg +8b500bb3-4960-3244-8800-28e1121b8291,SESCO,II.1.1,Santa Fe,AR-S,annual,2011,naphtha combustion consumption by to the public,161.25979331,TJ,CO2,73300.0,kg/TJ,11820342.849623,kg +bc591b1d-36c2-3404-99c7-9367fcfc279a,SESCO,II.1.1,Santa Fe,AR-S,annual,2011,naphtha combustion consumption by to the public,161.25979331,TJ,CH4,3.0,kg/TJ,483.77937993,kg +1f0c9d09-98f2-3c1a-99d6-e4c69dd10ca5,SESCO,II.1.1,Santa Fe,AR-S,annual,2011,naphtha combustion consumption by to the public,161.25979331,TJ,N2O,0.6,kg/TJ,96.75587598599999,kg +3dfe189b-4439-3445-af35-ebaae96894bd,SESCO,II.1.1,Buenos Aires,AR-B,annual,2011,naphtha combustion consumption by to the public,7099.462618740799,TJ,CO2,73300.0,kg/TJ,520390609.9537006,kg +5ee704fe-040c-35ab-9b59-7afe0cea1078,SESCO,II.1.1,Buenos Aires,AR-B,annual,2011,naphtha combustion consumption by to the public,7099.462618740799,TJ,CH4,3.0,kg/TJ,21298.387856222398,kg +69dbf7f9-e9ed-37ff-b405-ffea5fad97e6,SESCO,II.1.1,Buenos Aires,AR-B,annual,2011,naphtha combustion consumption by to the public,7099.462618740799,TJ,N2O,0.6,kg/TJ,4259.67757124448,kg +e49f2625-4580-3c85-a861-4203dc55bda7,SESCO,II.1.1,Capital Federal,AR-C,annual,2011,naphtha combustion consumption by to the public,2173.3454777188,TJ,CO2,73300.0,kg/TJ,159306223.51678804,kg +72c41261-e8e5-3cb5-9596-9c0bdb60e4a6,SESCO,II.1.1,Capital Federal,AR-C,annual,2011,naphtha combustion consumption by to the public,2173.3454777188,TJ,CH4,3.0,kg/TJ,6520.0364331564,kg +1c8255ac-ea82-34b8-8385-970cd4e8af87,SESCO,II.1.1,Capital Federal,AR-C,annual,2011,naphtha combustion consumption by to the public,2173.3454777188,TJ,N2O,0.6,kg/TJ,1304.0072866312798,kg +b07d6764-0ed3-376f-b078-136dcfe7d459,SESCO,II.1.1,Catamarca,AR-K,annual,2011,naphtha combustion consumption by to the public,278.96100717099995,TJ,CO2,73300.0,kg/TJ,20447841.825634297,kg +e8ef496d-ccaa-3fe1-962c-60430e70bfdd,SESCO,II.1.1,Catamarca,AR-K,annual,2011,naphtha combustion consumption by to the public,278.96100717099995,TJ,CH4,3.0,kg/TJ,836.8830215129999,kg +6ebc3d25-8305-3e61-971e-3fc2248da9f3,SESCO,II.1.1,Catamarca,AR-K,annual,2011,naphtha combustion consumption by to the public,278.96100717099995,TJ,N2O,0.6,kg/TJ,167.37660430259996,kg +7e94f9a9-b6ce-3446-93ad-0577e28e0664,SESCO,II.1.1,Chaco,AR-H,annual,2011,naphtha combustion consumption by to the public,376.436831925,TJ,CO2,73300.0,kg/TJ,27592819.7801025,kg +e87b5420-a20d-3fb1-88e1-a7ecbf39c47d,SESCO,II.1.1,Chaco,AR-H,annual,2011,naphtha combustion consumption by to the public,376.436831925,TJ,CH4,3.0,kg/TJ,1129.310495775,kg +c3f81021-a150-3527-a691-c38e4f765b8b,SESCO,II.1.1,Chaco,AR-H,annual,2011,naphtha combustion consumption by to the public,376.436831925,TJ,N2O,0.6,kg/TJ,225.86209915499998,kg +327b2a67-6072-3783-a738-01c1643b843c,SESCO,II.1.1,Chubut,AR-U,annual,2011,naphtha combustion consumption by to the public,310.63707397799993,TJ,CO2,73300.0,kg/TJ,22769697.522587396,kg +f43f209c-8802-31ca-ba2f-bdff4f2f4260,SESCO,II.1.1,Chubut,AR-U,annual,2011,naphtha combustion consumption by to the public,310.63707397799993,TJ,CH4,3.0,kg/TJ,931.9112219339997,kg +fce8bf96-f168-3d6f-ab2c-c98057a5da63,SESCO,II.1.1,Chubut,AR-U,annual,2011,naphtha combustion consumption by to the public,310.63707397799993,TJ,N2O,0.6,kg/TJ,186.38224438679995,kg +3e68de7b-9887-39eb-8cf3-4873e3fa0e4d,SESCO,II.1.1,Corrientes,AR-W,annual,2011,naphtha combustion consumption by to the public,400.4043428,TJ,CO2,73300.0,kg/TJ,29349638.32724,kg +9fa2afe7-d189-3238-9b18-a4ddafa3ba20,SESCO,II.1.1,Corrientes,AR-W,annual,2011,naphtha combustion consumption by to the public,400.4043428,TJ,CH4,3.0,kg/TJ,1201.2130284,kg +f8beb31d-252d-3651-aeb1-cfcf4d418db4,SESCO,II.1.1,Corrientes,AR-W,annual,2011,naphtha combustion consumption by to the public,400.4043428,TJ,N2O,0.6,kg/TJ,240.24260568,kg +deae680a-0d7c-32fb-9635-aab617038dd9,SESCO,II.1.1,Córdoba,AR-X,annual,2011,naphtha combustion consumption by to the public,2717.4832938483996,TJ,CO2,73300.0,kg/TJ,199191525.4390877,kg +b53b3f9b-270a-3b3e-9e78-0dce055c26f0,SESCO,II.1.1,Córdoba,AR-X,annual,2011,naphtha combustion consumption by to the public,2717.4832938483996,TJ,CH4,3.0,kg/TJ,8152.449881545199,kg +4a22b86c-6ff5-32fa-9893-a594fa8fbc4b,SESCO,II.1.1,Córdoba,AR-X,annual,2011,naphtha combustion consumption by to the public,2717.4832938483996,TJ,N2O,0.6,kg/TJ,1630.4899763090398,kg +48306a1a-7807-32d6-b6a4-9c8da43cc1d1,SESCO,II.1.1,Entre Rios,AR-E,annual,2011,naphtha combustion consumption by to the public,871.390864421,TJ,CO2,73300.0,kg/TJ,63872950.362059295,kg +388cae7b-feee-3133-99c7-9b87a93bf7d0,SESCO,II.1.1,Entre Rios,AR-E,annual,2011,naphtha combustion consumption by to the public,871.390864421,TJ,CH4,3.0,kg/TJ,2614.1725932629997,kg +9cb23f02-5bff-370b-b380-8249067931f7,SESCO,II.1.1,Entre Rios,AR-E,annual,2011,naphtha combustion consumption by to the public,871.390864421,TJ,N2O,0.6,kg/TJ,522.8345186526,kg +8bb7a810-908c-3e30-9afc-2684554193d8,SESCO,II.1.1,Formosa,AR-P,annual,2011,naphtha combustion consumption by to the public,297.681354124,TJ,CO2,73300.0,kg/TJ,21820043.2572892,kg +89ea927e-e75c-335b-9616-7ab664df0b14,SESCO,II.1.1,Formosa,AR-P,annual,2011,naphtha combustion consumption by to the public,297.681354124,TJ,CH4,3.0,kg/TJ,893.044062372,kg +54e36d54-a95d-357e-8488-8acfa6a313cb,SESCO,II.1.1,Formosa,AR-P,annual,2011,naphtha combustion consumption by to the public,297.681354124,TJ,N2O,0.6,kg/TJ,178.6088124744,kg +78f4db19-b336-31e0-aa80-83bf26c4cb8f,SESCO,II.1.1,Jujuy,AR-Y,annual,2011,naphtha combustion consumption by to the public,74.15270832200001,TJ,CO2,73300.0,kg/TJ,5435393.520002601,kg +2046e177-b807-3e1f-a6dc-c2baafc7d767,SESCO,II.1.1,Jujuy,AR-Y,annual,2011,naphtha combustion consumption by to the public,74.15270832200001,TJ,CH4,3.0,kg/TJ,222.458124966,kg +f423232f-84c1-3ee4-bb8b-78cb31d0439d,SESCO,II.1.1,Jujuy,AR-Y,annual,2011,naphtha combustion consumption by to the public,74.15270832200001,TJ,N2O,0.6,kg/TJ,44.491624993200006,kg +e22018c7-9b99-3c49-a839-e4336d399dcf,SESCO,II.1.1,La Pampa,AR-L,annual,2011,naphtha combustion consumption by to the public,96.010742443,TJ,CO2,73300.0,kg/TJ,7037587.4210719,kg +fb728f13-feac-34c0-9360-03854fd62665,SESCO,II.1.1,La Pampa,AR-L,annual,2011,naphtha combustion consumption by to the public,96.010742443,TJ,CH4,3.0,kg/TJ,288.03222732899997,kg +a74bb15c-61d6-3dcb-b69a-1764f52e17b1,SESCO,II.1.1,La Pampa,AR-L,annual,2011,naphtha combustion consumption by to the public,96.010742443,TJ,N2O,0.6,kg/TJ,57.60644546579999,kg +4e848c0d-72c5-3882-b11c-158ec692163b,SESCO,II.1.1,La Rioja,AR-F,annual,2011,naphtha combustion consumption by to the public,194.55708803299999,TJ,CO2,73300.0,kg/TJ,14261034.552818898,kg +570a8685-30a3-3ade-b240-e92f33ff5eef,SESCO,II.1.1,La Rioja,AR-F,annual,2011,naphtha combustion consumption by to the public,194.55708803299999,TJ,CH4,3.0,kg/TJ,583.6712640989999,kg +96fa867e-a63d-3be7-8d25-bb5c1ff21dbb,SESCO,II.1.1,La Rioja,AR-F,annual,2011,naphtha combustion consumption by to the public,194.55708803299999,TJ,N2O,0.6,kg/TJ,116.73425281979999,kg +16f60a60-a997-3c33-b9d9-013722ed1388,SESCO,II.1.1,Mendoza,AR-M,annual,2011,naphtha combustion consumption by to the public,352.54487537499995,TJ,CO2,73300.0,kg/TJ,25841539.364987496,kg +8b869aa4-a5ea-36c3-b90d-e4c55ab1af1c,SESCO,II.1.1,Mendoza,AR-M,annual,2011,naphtha combustion consumption by to the public,352.54487537499995,TJ,CH4,3.0,kg/TJ,1057.6346261249998,kg +d3c55014-17fc-3020-b723-da6942ea4535,SESCO,II.1.1,Mendoza,AR-M,annual,2011,naphtha combustion consumption by to the public,352.54487537499995,TJ,N2O,0.6,kg/TJ,211.52692522499996,kg +d8a7e440-26f5-3916-bd3a-6e49701d097d,SESCO,II.1.1,Misiones,AR-N,annual,2011,naphtha combustion consumption by to the public,593.5171679360001,TJ,CO2,73300.0,kg/TJ,43504808.409708805,kg +e14cc690-f827-3e1b-ae0f-009e132c0d80,SESCO,II.1.1,Misiones,AR-N,annual,2011,naphtha combustion consumption by to the public,593.5171679360001,TJ,CH4,3.0,kg/TJ,1780.5515038080002,kg +dff3573d-f227-3d7f-a040-ae331de9b35d,SESCO,II.1.1,Misiones,AR-N,annual,2011,naphtha combustion consumption by to the public,593.5171679360001,TJ,N2O,0.6,kg/TJ,356.11030076160006,kg +22ddffb8-948b-3b25-849f-5c18d6b4f710,SESCO,II.1.1,Neuquén,AR-Q,annual,2011,naphtha combustion consumption by to the public,266.03718803199996,TJ,CO2,73300.0,kg/TJ,19500525.882745598,kg +1fd5e5ba-3382-30ec-8614-396ce4437b87,SESCO,II.1.1,Neuquén,AR-Q,annual,2011,naphtha combustion consumption by to the public,266.03718803199996,TJ,CH4,3.0,kg/TJ,798.1115640959999,kg +4f5e7bb7-aa8f-3d48-9d01-1f277d471d99,SESCO,II.1.1,Neuquén,AR-Q,annual,2011,naphtha combustion consumption by to the public,266.03718803199996,TJ,N2O,0.6,kg/TJ,159.62231281919998,kg +e08c155f-16e9-36df-b48b-b29a9b2a8ba2,SESCO,II.1.1,Rio Negro,AR-R,annual,2011,naphtha combustion consumption by to the public,368.32498379599997,TJ,CO2,73300.0,kg/TJ,26998221.3122468,kg +ccbd3c43-7855-31e9-acfc-4cf5dacb1bf6,SESCO,II.1.1,Rio Negro,AR-R,annual,2011,naphtha combustion consumption by to the public,368.32498379599997,TJ,CH4,3.0,kg/TJ,1104.974951388,kg +0933d355-53a6-3f20-838d-4da03d8c4120,SESCO,II.1.1,Rio Negro,AR-R,annual,2011,naphtha combustion consumption by to the public,368.32498379599997,TJ,N2O,0.6,kg/TJ,220.99499027759998,kg +7d1caa51-7084-3520-9646-c68ca8379f41,SESCO,II.1.1,Salta,AR-A,annual,2011,naphtha combustion consumption by to the public,56.283270966999986,TJ,CO2,73300.0,kg/TJ,4125563.761881099,kg +3f8ea3c8-daae-3910-8a6a-b9658ed64398,SESCO,II.1.1,Salta,AR-A,annual,2011,naphtha combustion consumption by to the public,56.283270966999986,TJ,CH4,3.0,kg/TJ,168.84981290099995,kg +607702a0-dac7-3080-8ccb-4666428b5904,SESCO,II.1.1,Salta,AR-A,annual,2011,naphtha combustion consumption by to the public,56.283270966999986,TJ,N2O,0.6,kg/TJ,33.76996258019999,kg +344ebc04-777f-351f-8bf0-eb22cfe810b3,SESCO,II.1.1,San Juan,AR-J,annual,2011,naphtha combustion consumption by to the public,264.86290592299997,TJ,CO2,73300.0,kg/TJ,19414451.004155897,kg +ef88dc50-f7a8-3433-8e37-131bb5f48775,SESCO,II.1.1,San Juan,AR-J,annual,2011,naphtha combustion consumption by to the public,264.86290592299997,TJ,CH4,3.0,kg/TJ,794.5887177689999,kg +2299e333-cdb8-3244-a96e-19ef5f5b69eb,SESCO,II.1.1,San Juan,AR-J,annual,2011,naphtha combustion consumption by to the public,264.86290592299997,TJ,N2O,0.6,kg/TJ,158.91774355379997,kg +9e3c87ed-b2c9-3d25-8c6b-c25a8b6a35e5,SESCO,II.1.1,San Luis,AR-D,annual,2011,naphtha combustion consumption by to the public,477.04866486199995,TJ,CO2,73300.0,kg/TJ,34967667.134384595,kg +b47e5afe-0d9f-3e15-9474-ae6038272a78,SESCO,II.1.1,San Luis,AR-D,annual,2011,naphtha combustion consumption by to the public,477.04866486199995,TJ,CH4,3.0,kg/TJ,1431.145994586,kg +1ba414cf-1460-387f-9999-7efde3299f58,SESCO,II.1.1,San Luis,AR-D,annual,2011,naphtha combustion consumption by to the public,477.04866486199995,TJ,N2O,0.6,kg/TJ,286.22919891719994,kg +ada275c5-d5ea-301c-b6e0-d4fc780ec825,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2011,naphtha combustion consumption by to the public,33.191854465,TJ,CO2,73300.0,kg/TJ,2432962.9322845,kg +3c4f8ee3-fd5e-3d47-8c99-808a03ab395e,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2011,naphtha combustion consumption by to the public,33.191854465,TJ,CH4,3.0,kg/TJ,99.57556339499999,kg +8a63451d-da7a-3432-9018-a557ad1ce0e5,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2011,naphtha combustion consumption by to the public,33.191854465,TJ,N2O,0.6,kg/TJ,19.915112679,kg +e6527036-e890-3d8e-ae21-40146d9c8e00,SESCO,II.1.1,Santa Fe,AR-S,annual,2011,naphtha combustion consumption by to the public,2225.1543879796,TJ,CO2,73300.0,kg/TJ,163103816.6389047,kg +13f8d0fb-a595-3efc-ae77-90b8a3bed1c1,SESCO,II.1.1,Santa Fe,AR-S,annual,2011,naphtha combustion consumption by to the public,2225.1543879796,TJ,CH4,3.0,kg/TJ,6675.4631639388,kg +b3a3371c-914e-3148-b02f-14a905c364e5,SESCO,II.1.1,Santa Fe,AR-S,annual,2011,naphtha combustion consumption by to the public,2225.1543879796,TJ,N2O,0.6,kg/TJ,1335.0926327877598,kg +034d8391-7669-317e-bc0f-c7b8393c2fb0,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2011,naphtha combustion consumption by to the public,206.33550360499996,TJ,CO2,73300.0,kg/TJ,15124392.414246498,kg +ed4b1aae-5887-3cff-a344-9478c0e6c4b3,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2011,naphtha combustion consumption by to the public,206.33550360499996,TJ,CH4,3.0,kg/TJ,619.0065108149998,kg +a634b424-b5dd-3c14-9e42-779d1ed6d157,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2011,naphtha combustion consumption by to the public,206.33550360499996,TJ,N2O,0.6,kg/TJ,123.80130216299997,kg +0b854639-20de-3985-a6fb-e835a726cbb5,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2011,naphtha combustion consumption by to the public,25.041389681,TJ,CO2,73300.0,kg/TJ,1835533.8636172998,kg +d7cda45f-db1a-394f-a75e-cd85d544fd33,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2011,naphtha combustion consumption by to the public,25.041389681,TJ,CH4,3.0,kg/TJ,75.124169043,kg +e9af8ba4-616b-3e4a-9533-be9db87a6d79,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2011,naphtha combustion consumption by to the public,25.041389681,TJ,N2O,0.6,kg/TJ,15.024833808599999,kg +f96eae24-c3ae-30c1-935c-20d260451945,SESCO,II.1.1,Tucuman,AR-T,annual,2011,naphtha combustion consumption by to the public,65.483101376,TJ,CO2,73300.0,kg/TJ,4799911.330860799,kg +a1d0bbe2-bb55-3203-9935-ee5d40cbd90a,SESCO,II.1.1,Tucuman,AR-T,annual,2011,naphtha combustion consumption by to the public,65.483101376,TJ,CH4,3.0,kg/TJ,196.449304128,kg +d9768ed3-91be-3a1d-b79b-eb43834d0150,SESCO,II.1.1,Tucuman,AR-T,annual,2011,naphtha combustion consumption by to the public,65.483101376,TJ,N2O,0.6,kg/TJ,39.289860825599995,kg +5a611395-5833-3474-8d98-a8e847a86316,SESCO,II.1.1,Buenos Aires,AR-B,annual,2011,naphtha combustion consumption by to the public,1916.2471722470998,TJ,CO2,73300.0,kg/TJ,140460917.72571242,kg +70e77238-0507-38a5-800e-0d7c47e3f519,SESCO,II.1.1,Buenos Aires,AR-B,annual,2011,naphtha combustion consumption by to the public,1916.2471722470998,TJ,CH4,3.0,kg/TJ,5748.741516741299,kg +c3a7e9ef-a033-3154-9201-b9f56e60e724,SESCO,II.1.1,Buenos Aires,AR-B,annual,2011,naphtha combustion consumption by to the public,1916.2471722470998,TJ,N2O,0.6,kg/TJ,1149.74830334826,kg +a62c4843-43e9-3dbd-927a-3b8ff312f219,SESCO,II.1.1,Capital Federal,AR-C,annual,2011,naphtha combustion consumption by to the public,881.9337485112,TJ,CO2,73300.0,kg/TJ,64645743.76587096,kg +d71868d4-e206-30df-855e-b19d8fc06f35,SESCO,II.1.1,Capital Federal,AR-C,annual,2011,naphtha combustion consumption by to the public,881.9337485112,TJ,CH4,3.0,kg/TJ,2645.8012455335997,kg +f26ac3cd-b27b-3dca-b69d-056da91a9ace,SESCO,II.1.1,Capital Federal,AR-C,annual,2011,naphtha combustion consumption by to the public,881.9337485112,TJ,N2O,0.6,kg/TJ,529.1602491067199,kg +8c3dd696-04a6-315e-af4c-d50ff78140a0,SESCO,II.1.1,Catamarca,AR-K,annual,2011,naphtha combustion consumption by to the public,53.574060771,TJ,CO2,73300.0,kg/TJ,3926978.6545143,kg +405ac5a0-aac0-3629-914e-19066d269b6e,SESCO,II.1.1,Catamarca,AR-K,annual,2011,naphtha combustion consumption by to the public,53.574060771,TJ,CH4,3.0,kg/TJ,160.722182313,kg +f1e8e91c-4ef7-3ebc-8c5c-440008b47e00,SESCO,II.1.1,Catamarca,AR-K,annual,2011,naphtha combustion consumption by to the public,53.574060771,TJ,N2O,0.6,kg/TJ,32.1444364626,kg +ba2500dc-9a58-3434-854e-851b0d2c61d4,SESCO,II.1.1,Chaco,AR-H,annual,2011,naphtha combustion consumption by to the public,75.80583695299998,TJ,CO2,73300.0,kg/TJ,5556567.848654899,kg +f7c34563-2fc9-383f-bfbc-96e76eadab5d,SESCO,II.1.1,Chaco,AR-H,annual,2011,naphtha combustion consumption by to the public,75.80583695299998,TJ,CH4,3.0,kg/TJ,227.41751085899995,kg +33c8e2e4-8ab5-3c63-be80-29cff9373926,SESCO,II.1.1,Chaco,AR-H,annual,2011,naphtha combustion consumption by to the public,75.80583695299998,TJ,N2O,0.6,kg/TJ,45.48350217179999,kg +a269c5c9-7982-3873-82e6-50b47a3aadf1,SESCO,II.1.1,Chubut,AR-U,annual,2011,naphtha combustion consumption by to the public,33.373184845,TJ,CO2,73300.0,kg/TJ,2446254.4491385,kg +6237b97b-dd27-3cbe-b427-336fdcd0949b,SESCO,II.1.1,Chubut,AR-U,annual,2011,naphtha combustion consumption by to the public,33.373184845,TJ,CH4,3.0,kg/TJ,100.11955453499999,kg +f3ca1978-3776-3c73-ae79-db3cc07cbf35,SESCO,II.1.1,Chubut,AR-U,annual,2011,naphtha combustion consumption by to the public,33.373184845,TJ,N2O,0.6,kg/TJ,20.023910906999998,kg +4fee1fa8-c1c9-3324-869c-b6ffa1df6441,SESCO,II.1.1,Corrientes,AR-W,annual,2011,naphtha combustion consumption by to the public,51.016630819,TJ,CO2,73300.0,kg/TJ,3739519.0390327,kg +4c874777-5817-3310-a225-dbaf1775d93b,SESCO,II.1.1,Corrientes,AR-W,annual,2011,naphtha combustion consumption by to the public,51.016630819,TJ,CH4,3.0,kg/TJ,153.049892457,kg +2b7e17c7-dcb0-3084-b69d-a5fdc483ea28,SESCO,II.1.1,Corrientes,AR-W,annual,2011,naphtha combustion consumption by to the public,51.016630819,TJ,N2O,0.6,kg/TJ,30.6099784914,kg +808b2841-7957-3afc-b5aa-7474e2a869e8,SESCO,II.1.1,Córdoba,AR-X,annual,2011,naphtha combustion consumption by to the public,650.4690778893998,TJ,CO2,73300.0,kg/TJ,47679383.40929301,kg +d2ac580b-3c14-3a16-bfc9-791716e5be48,SESCO,II.1.1,Córdoba,AR-X,annual,2011,naphtha combustion consumption by to the public,650.4690778893998,TJ,CH4,3.0,kg/TJ,1951.4072336681995,kg +836ad075-7f41-3647-b936-9f1730587cb2,SESCO,II.1.1,Córdoba,AR-X,annual,2011,naphtha combustion consumption by to the public,650.4690778893998,TJ,N2O,0.6,kg/TJ,390.2814467336399,kg +d3501f36-b500-3092-90cf-2b103063b490,SESCO,II.1.1,Entre Rios,AR-E,annual,2011,naphtha combustion consumption by to the public,171.11207728999997,TJ,CO2,73300.0,kg/TJ,12542515.265356999,kg +e68889b0-ecee-3782-a7ad-3ac15392cc49,SESCO,II.1.1,Entre Rios,AR-E,annual,2011,naphtha combustion consumption by to the public,171.11207728999997,TJ,CH4,3.0,kg/TJ,513.3362318699999,kg +de9d57e9-99bb-399f-8161-f7ac71e70253,SESCO,II.1.1,Entre Rios,AR-E,annual,2011,naphtha combustion consumption by to the public,171.11207728999997,TJ,N2O,0.6,kg/TJ,102.66724637399999,kg +afb46260-ba41-378c-8d5b-d718b7988661,SESCO,II.1.1,Formosa,AR-P,annual,2011,naphtha combustion consumption by to the public,75.421685185,TJ,CO2,73300.0,kg/TJ,5528409.5240605,kg +8d03d375-4842-3c86-b6fe-29b23ecbf185,SESCO,II.1.1,Formosa,AR-P,annual,2011,naphtha combustion consumption by to the public,75.421685185,TJ,CH4,3.0,kg/TJ,226.265055555,kg +485dbbc5-a9ad-35dd-bd47-d4fc62cf1154,SESCO,II.1.1,Formosa,AR-P,annual,2011,naphtha combustion consumption by to the public,75.421685185,TJ,N2O,0.6,kg/TJ,45.253011111,kg +86bd05f2-1fef-3613-ae91-0005ea0bd6d8,SESCO,II.1.1,Jujuy,AR-Y,annual,2011,naphtha combustion consumption by to the public,6.496328761999999,TJ,CO2,73300.0,kg/TJ,476180.89825459995,kg +895799e1-5ee6-3181-94c7-4c4a2b6e6943,SESCO,II.1.1,Jujuy,AR-Y,annual,2011,naphtha combustion consumption by to the public,6.496328761999999,TJ,CH4,3.0,kg/TJ,19.488986286,kg +1f3781d1-1c21-370e-a42b-4e8867a7efde,SESCO,II.1.1,Jujuy,AR-Y,annual,2011,naphtha combustion consumption by to the public,6.496328761999999,TJ,N2O,0.6,kg/TJ,3.8977972571999993,kg +02b210df-9ba3-319c-a25c-ed7c37e0dcd6,SESCO,II.1.1,La Pampa,AR-L,annual,2011,naphtha combustion consumption by to the public,18.702549712,TJ,CO2,73300.0,kg/TJ,1370896.8938896,kg +733d4b6c-740e-3a3e-ae03-994ffa5abfd0,SESCO,II.1.1,La Pampa,AR-L,annual,2011,naphtha combustion consumption by to the public,18.702549712,TJ,CH4,3.0,kg/TJ,56.107649136,kg +7d542db3-0691-340c-8ac5-d8a2d7dda70e,SESCO,II.1.1,La Pampa,AR-L,annual,2011,naphtha combustion consumption by to the public,18.702549712,TJ,N2O,0.6,kg/TJ,11.2215298272,kg +8b711c68-8cfb-351f-9b42-2851dc1bc7a1,SESCO,II.1.1,La Rioja,AR-F,annual,2011,naphtha combustion consumption by to the public,40.569314555,TJ,CO2,73300.0,kg/TJ,2973730.7568814997,kg +2cd64028-a274-3124-8e6f-05c1e8c16c3a,SESCO,II.1.1,La Rioja,AR-F,annual,2011,naphtha combustion consumption by to the public,40.569314555,TJ,CH4,3.0,kg/TJ,121.70794366499999,kg +d4754d25-2003-33b5-b1ed-e52268b7a3a6,SESCO,II.1.1,La Rioja,AR-F,annual,2011,naphtha combustion consumption by to the public,40.569314555,TJ,N2O,0.6,kg/TJ,24.341588733,kg +f9f758e7-af24-309f-853a-7faca4191489,SESCO,II.1.1,Mendoza,AR-M,annual,2011,naphtha combustion consumption by to the public,72.65774007799997,TJ,CO2,73300.0,kg/TJ,5325812.347717398,kg +b3d66a82-8b55-3562-aa9f-7d9f1e35fe83,SESCO,II.1.1,Mendoza,AR-M,annual,2011,naphtha combustion consumption by to the public,72.65774007799997,TJ,CH4,3.0,kg/TJ,217.97322023399994,kg +2e15dd07-838c-338a-9aa4-2d3d0415ba1a,SESCO,II.1.1,Mendoza,AR-M,annual,2011,naphtha combustion consumption by to the public,72.65774007799997,TJ,N2O,0.6,kg/TJ,43.594644046799985,kg +886beb0a-478a-39bb-baf6-e8bcfe514ce7,SESCO,II.1.1,Misiones,AR-N,annual,2011,naphtha combustion consumption by to the public,83.340785836,TJ,CO2,73300.0,kg/TJ,6108879.6017788,kg +d9c895bb-7ebd-3beb-8bd7-1fcc34461c2f,SESCO,II.1.1,Misiones,AR-N,annual,2011,naphtha combustion consumption by to the public,83.340785836,TJ,CH4,3.0,kg/TJ,250.02235750799997,kg +9c152f72-5f1f-3eb5-9ba8-efbb2a6b2205,SESCO,II.1.1,Misiones,AR-N,annual,2011,naphtha combustion consumption by to the public,83.340785836,TJ,N2O,0.6,kg/TJ,50.004471501599994,kg +45e88317-93b8-379f-8e78-3dd28260ea22,SESCO,II.1.1,Neuquén,AR-Q,annual,2011,naphtha combustion consumption by to the public,52.367877947,TJ,CO2,73300.0,kg/TJ,3838565.4535151,kg +e1613051-3ce2-39ba-a7ce-69c66ff9abf5,SESCO,II.1.1,Neuquén,AR-Q,annual,2011,naphtha combustion consumption by to the public,52.367877947,TJ,CH4,3.0,kg/TJ,157.10363384099998,kg +d7e6d539-eda7-3984-8656-62a05ecc4e34,SESCO,II.1.1,Neuquén,AR-Q,annual,2011,naphtha combustion consumption by to the public,52.367877947,TJ,N2O,0.6,kg/TJ,31.420726768199998,kg +73ec1786-53e9-3fb7-8d7e-285986c8e86e,SESCO,II.1.1,Rio Negro,AR-R,annual,2011,naphtha combustion consumption by to the public,80.41028541700001,TJ,CO2,73300.0,kg/TJ,5894073.921066101,kg +2c9b2c9e-1935-3b21-b3de-9e1dccf4bc82,SESCO,II.1.1,Rio Negro,AR-R,annual,2011,naphtha combustion consumption by to the public,80.41028541700001,TJ,CH4,3.0,kg/TJ,241.23085625100003,kg +7e676d80-1d18-30b2-a4da-03c86c20000f,SESCO,II.1.1,Rio Negro,AR-R,annual,2011,naphtha combustion consumption by to the public,80.41028541700001,TJ,N2O,0.6,kg/TJ,48.24617125020001,kg +24b4cd59-c839-3b87-a8a5-a2586ee87228,SESCO,II.1.1,Salta,AR-A,annual,2011,naphtha combustion consumption by to the public,11.981572757,TJ,CO2,73300.0,kg/TJ,878249.2830881,kg +7b1feb97-322d-37c5-adf7-91bdf5e5c24b,SESCO,II.1.1,Salta,AR-A,annual,2011,naphtha combustion consumption by to the public,11.981572757,TJ,CH4,3.0,kg/TJ,35.944718271,kg +2fa84a38-cdae-34d2-9ec0-3fa52033883a,SESCO,II.1.1,Salta,AR-A,annual,2011,naphtha combustion consumption by to the public,11.981572757,TJ,N2O,0.6,kg/TJ,7.1889436542,kg +fc4fcbcd-5df2-3ea7-8c96-5a600438a745,SESCO,II.1.1,San Juan,AR-J,annual,2011,naphtha combustion consumption by to the public,44.343337037999994,TJ,CO2,73300.0,kg/TJ,3250366.6048854,kg +0cf339fb-9bec-3a20-ad3c-4c43f8ed8498,SESCO,II.1.1,San Juan,AR-J,annual,2011,naphtha combustion consumption by to the public,44.343337037999994,TJ,CH4,3.0,kg/TJ,133.030011114,kg +52b2ab55-0159-3b35-a424-faaa989e1cb5,SESCO,II.1.1,San Juan,AR-J,annual,2011,naphtha combustion consumption by to the public,44.343337037999994,TJ,N2O,0.6,kg/TJ,26.606002222799997,kg +a5871f2e-8da0-3566-ae4f-4e401a49829d,SESCO,II.1.1,San Luis,AR-D,annual,2011,naphtha combustion consumption by to the public,68.661419981,TJ,CO2,73300.0,kg/TJ,5032882.084607299,kg +60b91cd1-977f-3871-a15c-c729f2d8178a,SESCO,II.1.1,San Luis,AR-D,annual,2011,naphtha combustion consumption by to the public,68.661419981,TJ,CH4,3.0,kg/TJ,205.98425994299998,kg +e3b2e7c1-d251-3362-b868-923bb99d7cf8,SESCO,II.1.1,San Luis,AR-D,annual,2011,naphtha combustion consumption by to the public,68.661419981,TJ,N2O,0.6,kg/TJ,41.196851988599995,kg +49a7f073-a6dd-3045-ad48-1113093c1696,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2011,naphtha combustion consumption by to the public,14.831481896,TJ,CO2,73300.0,kg/TJ,1087147.6229768,kg +3a934cb7-d522-317c-bda4-038fedb55807,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2011,naphtha combustion consumption by to the public,14.831481896,TJ,CH4,3.0,kg/TJ,44.494445688,kg +27dd32f3-2f35-3783-a6c3-06154e2174ee,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2011,naphtha combustion consumption by to the public,14.831481896,TJ,N2O,0.6,kg/TJ,8.8988891376,kg +2099e5c3-5481-3de6-a216-5e6a6901110f,SESCO,II.1.1,Santa Fe,AR-S,annual,2011,naphtha combustion consumption by to the public,614.4557562913,TJ,CO2,73300.0,kg/TJ,45039606.93615229,kg +a8d7e03f-b035-3669-b3fc-6405ac42c673,SESCO,II.1.1,Santa Fe,AR-S,annual,2011,naphtha combustion consumption by to the public,614.4557562913,TJ,CH4,3.0,kg/TJ,1843.3672688738998,kg +81a5b5fb-3013-3b69-88f9-84b34489ec76,SESCO,II.1.1,Santa Fe,AR-S,annual,2011,naphtha combustion consumption by to the public,614.4557562913,TJ,N2O,0.6,kg/TJ,368.67345377477994,kg +92049f3c-a711-3567-a198-f2fbc92751de,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2011,naphtha combustion consumption by to the public,74.41328679399999,TJ,CO2,73300.0,kg/TJ,5454493.922000199,kg +2c302595-c379-3e72-a69c-c0ca6d040ea5,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2011,naphtha combustion consumption by to the public,74.41328679399999,TJ,CH4,3.0,kg/TJ,223.23986038199996,kg +6adcb332-0cc0-3a90-8ac1-b1777f2ffed8,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2011,naphtha combustion consumption by to the public,74.41328679399999,TJ,N2O,0.6,kg/TJ,44.64797207639999,kg +ed4bc6fb-669b-368e-8fe2-d81a423faae0,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2011,naphtha combustion consumption by to the public,9.790161535,TJ,CO2,73300.0,kg/TJ,717618.8405154999,kg +981ecfc8-487b-3e5d-b92f-e04ff0eecc60,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2011,naphtha combustion consumption by to the public,9.790161535,TJ,CH4,3.0,kg/TJ,29.370484604999998,kg +c86b5b61-c2e7-3c84-85ea-c6007827709b,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2011,naphtha combustion consumption by to the public,9.790161535,TJ,N2O,0.6,kg/TJ,5.874096921,kg +d71db52f-e02a-313d-b5d7-e96290cec4a0,SESCO,II.1.1,Tucuman,AR-T,annual,2011,naphtha combustion consumption by to the public,25.879538992999993,TJ,CO2,73300.0,kg/TJ,1896970.2081868995,kg +a5597f63-3701-3429-ace6-4117e8c59dda,SESCO,II.1.1,Tucuman,AR-T,annual,2011,naphtha combustion consumption by to the public,25.879538992999993,TJ,CH4,3.0,kg/TJ,77.63861697899998,kg +a770eae5-8903-3381-aa49-0c13c887dce0,SESCO,II.1.1,Tucuman,AR-T,annual,2011,naphtha combustion consumption by to the public,25.879538992999993,TJ,N2O,0.6,kg/TJ,15.527723395799995,kg +9348a412-8358-3819-b7f5-3b535c50cda6,SESCO,II.1.1,Capital Federal,AR-C,annual,2011,naphtha combustion consumption by freight transport,0.023169993,TJ,CO2,73300.0,kg/TJ,1698.3604869,kg +d67e0ed1-ba94-3a7a-876e-103d7294b98b,SESCO,II.1.1,Capital Federal,AR-C,annual,2011,naphtha combustion consumption by freight transport,0.023169993,TJ,CH4,3.0,kg/TJ,0.069509979,kg +8b19f6a7-33c2-36f2-a67c-3ebc71af38c1,SESCO,II.1.1,Capital Federal,AR-C,annual,2011,naphtha combustion consumption by freight transport,0.023169993,TJ,N2O,0.6,kg/TJ,0.013901995799999999,kg +fcdb2b7a-8e48-3107-807a-7e2d48b77f2a,SESCO,II.1.1,Misiones,AR-N,annual,2011,naphtha combustion consumption by freight transport,0.0010073909999999998,TJ,CO2,73300.0,kg/TJ,73.84176029999999,kg +a1862a6c-8137-3618-9f8b-58ab8f7eeb58,SESCO,II.1.1,Misiones,AR-N,annual,2011,naphtha combustion consumption by freight transport,0.0010073909999999998,TJ,CH4,3.0,kg/TJ,0.0030221729999999995,kg +d838e5d0-e90a-3ddc-8dea-c1e3e6c0ef2b,SESCO,II.1.1,Misiones,AR-N,annual,2011,naphtha combustion consumption by freight transport,0.0010073909999999998,TJ,N2O,0.6,kg/TJ,0.0006044345999999999,kg +370aba0e-0d18-38f4-bd1d-da21609ef856,SESCO,II.1.1,Buenos Aires,AR-B,annual,2011,naphtha combustion consumption by freight transport,5.261603192999999,TJ,CO2,73300.0,kg/TJ,385675.5140468999,kg +308105f7-8414-30c9-8512-56bf007c3d46,SESCO,II.1.1,Buenos Aires,AR-B,annual,2011,naphtha combustion consumption by freight transport,5.261603192999999,TJ,CH4,3.0,kg/TJ,15.784809578999997,kg +b8724eae-3997-3a51-9a6c-7d304336bcfd,SESCO,II.1.1,Buenos Aires,AR-B,annual,2011,naphtha combustion consumption by freight transport,5.261603192999999,TJ,N2O,0.6,kg/TJ,3.1569619157999993,kg +959b9e3a-0dfd-355a-8bc7-c6750a5bbbb8,SESCO,II.1.1,Capital Federal,AR-C,annual,2011,naphtha combustion consumption by freight transport,110.725031186,TJ,CO2,73300.0,kg/TJ,8116144.7859338,kg +19488c72-df20-3dae-b682-eb2da2d071b4,SESCO,II.1.1,Capital Federal,AR-C,annual,2011,naphtha combustion consumption by freight transport,110.725031186,TJ,CH4,3.0,kg/TJ,332.17509355799996,kg +821798bb-f4d2-3082-895e-ee522b9f8b2c,SESCO,II.1.1,Capital Federal,AR-C,annual,2011,naphtha combustion consumption by freight transport,110.725031186,TJ,N2O,0.6,kg/TJ,66.4350187116,kg +d5545c4a-2a80-35fe-a85c-1da7fa96dfa1,SESCO,II.1.1,Chaco,AR-H,annual,2011,naphtha combustion consumption by freight transport,0.006715939999999999,TJ,CO2,73300.0,kg/TJ,492.27840199999997,kg +2a5969ff-1cee-3240-8377-e39b9437b974,SESCO,II.1.1,Chaco,AR-H,annual,2011,naphtha combustion consumption by freight transport,0.006715939999999999,TJ,CH4,3.0,kg/TJ,0.020147819999999997,kg +fd8cde9a-aecf-379c-8560-2340f0de11b2,SESCO,II.1.1,Chaco,AR-H,annual,2011,naphtha combustion consumption by freight transport,0.006715939999999999,TJ,N2O,0.6,kg/TJ,0.004029563999999999,kg +bdef3208-8316-3ce3-969c-381670c15135,SESCO,II.1.1,Corrientes,AR-W,annual,2011,naphtha combustion consumption by freight transport,0.028878542,TJ,CO2,73300.0,kg/TJ,2116.7971286,kg +98028d58-4e14-3cb6-a548-7c964717c5c6,SESCO,II.1.1,Corrientes,AR-W,annual,2011,naphtha combustion consumption by freight transport,0.028878542,TJ,CH4,3.0,kg/TJ,0.086635626,kg +78d08473-eac2-3957-8d0a-2ae6b41110b9,SESCO,II.1.1,Corrientes,AR-W,annual,2011,naphtha combustion consumption by freight transport,0.028878542,TJ,N2O,0.6,kg/TJ,0.017327125199999998,kg +a4eaa0fe-78a4-3a15-a17b-cc581ef779b9,SESCO,II.1.1,Córdoba,AR-X,annual,2011,naphtha combustion consumption by freight transport,0.47548855199999995,TJ,CO2,73300.0,kg/TJ,34853.310861599995,kg +1f2111bd-6f10-3fa3-9c38-3e55bdb2c598,SESCO,II.1.1,Córdoba,AR-X,annual,2011,naphtha combustion consumption by freight transport,0.47548855199999995,TJ,CH4,3.0,kg/TJ,1.426465656,kg +a8eb5de9-31d2-3f83-b30f-57bb90d01e86,SESCO,II.1.1,Córdoba,AR-X,annual,2011,naphtha combustion consumption by freight transport,0.47548855199999995,TJ,N2O,0.6,kg/TJ,0.28529313119999994,kg +1f6d185b-625d-3d4f-9953-8c966ea325b9,SESCO,II.1.1,Entre Rios,AR-E,annual,2011,naphtha combustion consumption by freight transport,18.456074714,TJ,CO2,73300.0,kg/TJ,1352830.2765362,kg +8b590439-aa52-3ada-aab9-1123f9b99858,SESCO,II.1.1,Entre Rios,AR-E,annual,2011,naphtha combustion consumption by freight transport,18.456074714,TJ,CH4,3.0,kg/TJ,55.368224142,kg +4c834780-689f-3c3b-93d7-769678cf7baf,SESCO,II.1.1,Entre Rios,AR-E,annual,2011,naphtha combustion consumption by freight transport,18.456074714,TJ,N2O,0.6,kg/TJ,11.073644828399999,kg +4b4770e8-7678-3178-b46b-9280c8ccfb5b,SESCO,II.1.1,Mendoza,AR-M,annual,2011,naphtha combustion consumption by freight transport,0.0016789849999999998,TJ,CO2,73300.0,kg/TJ,123.06960049999999,kg +9a11c100-c56c-3cb2-9992-5e3b53010679,SESCO,II.1.1,Mendoza,AR-M,annual,2011,naphtha combustion consumption by freight transport,0.0016789849999999998,TJ,CH4,3.0,kg/TJ,0.005036954999999999,kg +9005a508-7728-3ffe-8c95-361e72772256,SESCO,II.1.1,Mendoza,AR-M,annual,2011,naphtha combustion consumption by freight transport,0.0016789849999999998,TJ,N2O,0.6,kg/TJ,0.0010073909999999998,kg +e8af5ad4-baa9-3132-8db4-2303384106ed,SESCO,II.1.1,Misiones,AR-N,annual,2011,naphtha combustion consumption by freight transport,0.001343188,TJ,CO2,73300.0,kg/TJ,98.45568039999999,kg +d19d4d12-df42-33eb-9bd5-6d354482ae1e,SESCO,II.1.1,Misiones,AR-N,annual,2011,naphtha combustion consumption by freight transport,0.001343188,TJ,CH4,3.0,kg/TJ,0.004029563999999999,kg +bc7e2fbd-a81a-3999-a588-83d03f78a5a9,SESCO,II.1.1,Misiones,AR-N,annual,2011,naphtha combustion consumption by freight transport,0.001343188,TJ,N2O,0.6,kg/TJ,0.0008059127999999999,kg +0bd69bae-c509-33c0-b54c-81cb6ce6b4e0,SESCO,II.1.1,San Luis,AR-D,annual,2011,naphtha combustion consumption by freight transport,0.020147819999999997,TJ,CO2,73300.0,kg/TJ,1476.8352059999997,kg +35b67176-1877-3dcc-a9be-2e14efd8a335,SESCO,II.1.1,San Luis,AR-D,annual,2011,naphtha combustion consumption by freight transport,0.020147819999999997,TJ,CH4,3.0,kg/TJ,0.06044345999999999,kg +0195da79-0c9b-3e77-9b21-9b0d27e3f64d,SESCO,II.1.1,San Luis,AR-D,annual,2011,naphtha combustion consumption by freight transport,0.020147819999999997,TJ,N2O,0.6,kg/TJ,0.012088691999999998,kg +6525f9e2-a6ed-38bf-b8c5-dee3d7929040,SESCO,II.1.1,Santa Fe,AR-S,annual,2011,naphtha combustion consumption by freight transport,0.7061810909999999,TJ,CO2,73300.0,kg/TJ,51763.07397029999,kg +a5c5a6d9-e8b5-310c-86ba-242df386e1c7,SESCO,II.1.1,Santa Fe,AR-S,annual,2011,naphtha combustion consumption by freight transport,0.7061810909999999,TJ,CH4,3.0,kg/TJ,2.118543273,kg +5fbd99d4-ad45-3456-9a6e-07e56e740fb4,SESCO,II.1.1,Santa Fe,AR-S,annual,2011,naphtha combustion consumption by freight transport,0.7061810909999999,TJ,N2O,0.6,kg/TJ,0.42370865459999996,kg +334b44e7-52dd-3259-8703-cf64d796dcac,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2011,naphtha combustion consumption by freight transport,0.025856369,TJ,CO2,73300.0,kg/TJ,1895.2718477,kg +7927144e-2ada-36b7-abff-28ded044f72c,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2011,naphtha combustion consumption by freight transport,0.025856369,TJ,CH4,3.0,kg/TJ,0.077569107,kg +993fbbd9-4dfa-385a-adf1-501657cfa4d5,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2011,naphtha combustion consumption by freight transport,0.025856369,TJ,N2O,0.6,kg/TJ,0.015513821399999999,kg +40b3b796-68bf-3009-a200-8584ab9b77c9,SESCO,II.1.1,Tucuman,AR-T,annual,2011,naphtha combustion consumption by freight transport,0.045332595,TJ,CO2,73300.0,kg/TJ,3322.8792135000003,kg +e7513752-67c2-3acd-8868-2958bd256ce3,SESCO,II.1.1,Tucuman,AR-T,annual,2011,naphtha combustion consumption by freight transport,0.045332595,TJ,CH4,3.0,kg/TJ,0.135997785,kg +b2c02b9f-7f3d-34ae-bdcc-e43970816d66,SESCO,II.1.1,Tucuman,AR-T,annual,2011,naphtha combustion consumption by freight transport,0.045332595,TJ,N2O,0.6,kg/TJ,0.027199557000000003,kg +c61466ab-2fb5-30b4-a987-8ba46cc25eaf,SESCO,II.1.1,Buenos Aires,AR-B,annual,2011,naphtha combustion consumption by freight transport,3.3767746319999996,TJ,CO2,73300.0,kg/TJ,247517.58052559997,kg +4ad0df82-25cd-3cec-92a3-c94cd0591951,SESCO,II.1.1,Buenos Aires,AR-B,annual,2011,naphtha combustion consumption by freight transport,3.3767746319999996,TJ,CH4,3.0,kg/TJ,10.130323895999998,kg +c2895b5d-16d8-35c8-af25-00109f616c55,SESCO,II.1.1,Buenos Aires,AR-B,annual,2011,naphtha combustion consumption by freight transport,3.3767746319999996,TJ,N2O,0.6,kg/TJ,2.0260647791999995,kg +823333e6-c28b-37fb-9ac3-8f4b75880c2a,SESCO,II.1.1,Capital Federal,AR-C,annual,2011,naphtha combustion consumption by freight transport,19.858698782999998,TJ,CO2,73300.0,kg/TJ,1455642.6207938998,kg +2e9655a5-6d34-3648-8ab0-75d8abd8c515,SESCO,II.1.1,Capital Federal,AR-C,annual,2011,naphtha combustion consumption by freight transport,19.858698782999998,TJ,CH4,3.0,kg/TJ,59.576096349,kg +4570c0bf-772a-3ecc-b752-b4758c2e3801,SESCO,II.1.1,Capital Federal,AR-C,annual,2011,naphtha combustion consumption by freight transport,19.858698782999998,TJ,N2O,0.6,kg/TJ,11.915219269799998,kg +1b3d7b85-d936-3af2-ae5b-f4bd9af2fc9b,SESCO,II.1.1,Chaco,AR-H,annual,2011,naphtha combustion consumption by freight transport,0.041974625,TJ,CO2,73300.0,kg/TJ,3076.7400125,kg +63ca6ae5-c8c2-3fd2-bd64-c81da8ee56f2,SESCO,II.1.1,Chaco,AR-H,annual,2011,naphtha combustion consumption by freight transport,0.041974625,TJ,CH4,3.0,kg/TJ,0.12592387500000002,kg +32250583-d112-3131-bebc-a17524bc57dd,SESCO,II.1.1,Chaco,AR-H,annual,2011,naphtha combustion consumption by freight transport,0.041974625,TJ,N2O,0.6,kg/TJ,0.025184775,kg +c2dea953-535a-3f72-a181-94784b086ce9,SESCO,II.1.1,Corrientes,AR-W,annual,2011,naphtha combustion consumption by freight transport,0.029214339,TJ,CO2,73300.0,kg/TJ,2141.4110487,kg +ca8825c3-46c8-33ee-9c9e-aa22136a3896,SESCO,II.1.1,Corrientes,AR-W,annual,2011,naphtha combustion consumption by freight transport,0.029214339,TJ,CH4,3.0,kg/TJ,0.08764301699999999,kg +6ed19c7b-9c30-375b-8311-2f94eae622e6,SESCO,II.1.1,Corrientes,AR-W,annual,2011,naphtha combustion consumption by freight transport,0.029214339,TJ,N2O,0.6,kg/TJ,0.0175286034,kg +c39fe52b-5c31-3443-af48-aa99e8962977,SESCO,II.1.1,Córdoba,AR-X,annual,2011,naphtha combustion consumption by freight transport,0.593353299,TJ,CO2,73300.0,kg/TJ,43492.7968167,kg +f2d8009f-ba6e-3778-bbc0-30fd306fae70,SESCO,II.1.1,Córdoba,AR-X,annual,2011,naphtha combustion consumption by freight transport,0.593353299,TJ,CH4,3.0,kg/TJ,1.7800598970000001,kg +a4fe4aa2-6c62-3dbb-a030-5f94895d27cd,SESCO,II.1.1,Córdoba,AR-X,annual,2011,naphtha combustion consumption by freight transport,0.593353299,TJ,N2O,0.6,kg/TJ,0.3560119794,kg +8e1a2842-8a7f-357d-bfac-372fdc33311d,SESCO,II.1.1,Entre Rios,AR-E,annual,2011,naphtha combustion consumption by freight transport,0.371391482,TJ,CO2,73300.0,kg/TJ,27222.9956306,kg +aae541b5-73d0-3f32-a930-15f56fed9eef,SESCO,II.1.1,Entre Rios,AR-E,annual,2011,naphtha combustion consumption by freight transport,0.371391482,TJ,CH4,3.0,kg/TJ,1.114174446,kg +551df676-8a0e-3efe-8727-39aa19318f14,SESCO,II.1.1,Entre Rios,AR-E,annual,2011,naphtha combustion consumption by freight transport,0.371391482,TJ,N2O,0.6,kg/TJ,0.2228348892,kg +05502622-9f07-3d6d-be58-7e53384c4e87,SESCO,II.1.1,Misiones,AR-N,annual,2011,naphtha combustion consumption by freight transport,0.015446662,TJ,CO2,73300.0,kg/TJ,1132.2403246,kg +2be6912e-1102-377d-a82a-45b1636d934d,SESCO,II.1.1,Misiones,AR-N,annual,2011,naphtha combustion consumption by freight transport,0.015446662,TJ,CH4,3.0,kg/TJ,0.046339986,kg +ca2ff99f-3e68-3c33-b9e4-02aed46a19da,SESCO,II.1.1,Misiones,AR-N,annual,2011,naphtha combustion consumption by freight transport,0.015446662,TJ,N2O,0.6,kg/TJ,0.0092679972,kg +18091329-b0b3-3b86-9cc2-4bb849eb169d,SESCO,II.1.1,San Luis,AR-D,annual,2011,naphtha combustion consumption by freight transport,0.004701158,TJ,CO2,73300.0,kg/TJ,344.5948814,kg +0a0ed485-5ad1-394e-95a9-fbdbc9180e55,SESCO,II.1.1,San Luis,AR-D,annual,2011,naphtha combustion consumption by freight transport,0.004701158,TJ,CH4,3.0,kg/TJ,0.014103474000000001,kg +3f6c94c6-5f6e-363c-a67b-7310e99f1cb2,SESCO,II.1.1,San Luis,AR-D,annual,2011,naphtha combustion consumption by freight transport,0.004701158,TJ,N2O,0.6,kg/TJ,0.0028206948,kg +847a4863-ff86-3aea-b4b0-4d62ba9eefeb,SESCO,II.1.1,Santa Fe,AR-S,annual,2011,naphtha combustion consumption by freight transport,0.534588824,TJ,CO2,73300.0,kg/TJ,39185.360799199996,kg +3f330958-d14c-3858-8f91-8d466a28a7f6,SESCO,II.1.1,Santa Fe,AR-S,annual,2011,naphtha combustion consumption by freight transport,0.534588824,TJ,CH4,3.0,kg/TJ,1.6037664719999998,kg +52b4588d-17c7-3aa2-a660-785453e537e6,SESCO,II.1.1,Santa Fe,AR-S,annual,2011,naphtha combustion consumption by freight transport,0.534588824,TJ,N2O,0.6,kg/TJ,0.32075329439999994,kg +96f64288-7607-3913-b66d-ff2f018a2423,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2011,naphtha combustion consumption by freight transport,0.8854966889999998,TJ,CO2,73300.0,kg/TJ,64906.90730369998,kg +03ade897-6c2b-3cee-96cf-132a6abd13b8,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2011,naphtha combustion consumption by freight transport,0.8854966889999998,TJ,CH4,3.0,kg/TJ,2.656490066999999,kg +8672b6ff-ee1a-3536-9fdf-df6b84b784e5,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2011,naphtha combustion consumption by freight transport,0.8854966889999998,TJ,N2O,0.6,kg/TJ,0.5312980133999998,kg +b27311c2-7cef-3466-aa07-a776c6c2f0f2,SESCO,II.1.1,Tucuman,AR-T,annual,2011,naphtha combustion consumption by freight transport,0.054734911,TJ,CO2,73300.0,kg/TJ,4012.0689762999996,kg +3b14e5aa-405d-372f-be0e-21355f679f73,SESCO,II.1.1,Tucuman,AR-T,annual,2011,naphtha combustion consumption by freight transport,0.054734911,TJ,CH4,3.0,kg/TJ,0.164204733,kg +32b4613c-8e70-3ea1-a508-88091be80f61,SESCO,II.1.1,Tucuman,AR-T,annual,2011,naphtha combustion consumption by freight transport,0.054734911,TJ,N2O,0.6,kg/TJ,0.0328409466,kg +3169fa5f-2fea-39d6-b99b-645a86ba1bfc,SESCO,II.1.1,Capital Federal,AR-C,annual,2011,naphtha combustion consumption by public passenger transport,0.0016789849999999998,TJ,CO2,73300.0,kg/TJ,123.06960049999999,kg +a3b41bfa-eca9-3b7e-9bc6-2f6063ba2a25,SESCO,II.1.1,Capital Federal,AR-C,annual,2011,naphtha combustion consumption by public passenger transport,0.0016789849999999998,TJ,CH4,3.0,kg/TJ,0.005036954999999999,kg +b4edbd21-be29-3ce7-8525-a3bae8b035ce,SESCO,II.1.1,Capital Federal,AR-C,annual,2011,naphtha combustion consumption by public passenger transport,0.0016789849999999998,TJ,N2O,0.6,kg/TJ,0.0010073909999999998,kg +45f7b12f-030d-363b-a8c7-4685cb5f10a3,SESCO,II.1.1,Capital Federal,AR-C,annual,2011,naphtha combustion consumption by public passenger transport,0.02014782,TJ,CO2,73300.0,kg/TJ,1476.835206,kg +3109aa48-bf62-30a7-abfe-93c12a184fb0,SESCO,II.1.1,Capital Federal,AR-C,annual,2011,naphtha combustion consumption by public passenger transport,0.02014782,TJ,CH4,3.0,kg/TJ,0.060443460000000004,kg +933a0bcc-ab27-3bf2-9048-fbfae9fb1e0e,SESCO,II.1.1,Capital Federal,AR-C,annual,2011,naphtha combustion consumption by public passenger transport,0.02014782,TJ,N2O,0.6,kg/TJ,0.012088692,kg +d81d87e3-e7b3-341c-83bd-cb9245850c14,SESCO,II.1.1,Córdoba,AR-X,annual,2011,naphtha combustion consumption by public passenger transport,0.031564918,TJ,CO2,73300.0,kg/TJ,2313.7084894,kg +e501cced-d28d-3f05-8630-dcbe711ef1b5,SESCO,II.1.1,Córdoba,AR-X,annual,2011,naphtha combustion consumption by public passenger transport,0.031564918,TJ,CH4,3.0,kg/TJ,0.09469475399999999,kg +6b7e20f4-c9bb-3f1f-9de7-6f4723ff1aa7,SESCO,II.1.1,Córdoba,AR-X,annual,2011,naphtha combustion consumption by public passenger transport,0.031564918,TJ,N2O,0.6,kg/TJ,0.018938950799999996,kg +d117bc5c-cd85-349b-9839-3c7dea0fe65f,SESCO,II.1.1,Tucuman,AR-T,annual,2011,naphtha combustion consumption by public passenger transport,0.0016789849999999998,TJ,CO2,73300.0,kg/TJ,123.06960049999999,kg +0547ee86-23b5-3f83-af81-87086ac3096e,SESCO,II.1.1,Tucuman,AR-T,annual,2011,naphtha combustion consumption by public passenger transport,0.0016789849999999998,TJ,CH4,3.0,kg/TJ,0.005036954999999999,kg +1c412239-eddc-3f35-91a1-2944dcfaf1e0,SESCO,II.1.1,Tucuman,AR-T,annual,2011,naphtha combustion consumption by public passenger transport,0.0016789849999999998,TJ,N2O,0.6,kg/TJ,0.0010073909999999998,kg +e98925a4-884c-352f-ae4b-36bd1de66c52,SESCO,II.1.1,Capital Federal,AR-C,annual,2011,naphtha combustion consumption by public passenger transport,0.365682933,TJ,CO2,73300.0,kg/TJ,26804.5589889,kg +88be197a-7c9b-3914-81d6-f36ca0ea3ddc,SESCO,II.1.1,Capital Federal,AR-C,annual,2011,naphtha combustion consumption by public passenger transport,0.365682933,TJ,CH4,3.0,kg/TJ,1.097048799,kg +e9284cea-1d25-368a-adbc-d978d1113726,SESCO,II.1.1,Capital Federal,AR-C,annual,2011,naphtha combustion consumption by public passenger transport,0.365682933,TJ,N2O,0.6,kg/TJ,0.2194097598,kg +040ac71d-31c0-3a73-9f93-710912afa7a5,SESCO,II.1.1,Córdoba,AR-X,annual,2011,naphtha combustion consumption by public passenger transport,0.020147819999999997,TJ,CO2,73300.0,kg/TJ,1476.8352059999997,kg +0aa4f6de-621f-32c4-93b1-37abf8d21c1c,SESCO,II.1.1,Córdoba,AR-X,annual,2011,naphtha combustion consumption by public passenger transport,0.020147819999999997,TJ,CH4,3.0,kg/TJ,0.06044345999999999,kg +1d4b3bfc-0f62-3b0f-b7ed-f6e07e1d4d17,SESCO,II.1.1,Córdoba,AR-X,annual,2011,naphtha combustion consumption by public passenger transport,0.020147819999999997,TJ,N2O,0.6,kg/TJ,0.012088691999999998,kg +ff56b702-610b-3c26-ba16-93e53437f22e,SESCO,II.1.1,Tucuman,AR-T,annual,2011,naphtha combustion consumption by public passenger transport,0.007723331,TJ,CO2,73300.0,kg/TJ,566.1201623,kg +a275f3b5-e155-3e3c-93de-d8b4a64fb8eb,SESCO,II.1.1,Tucuman,AR-T,annual,2011,naphtha combustion consumption by public passenger transport,0.007723331,TJ,CH4,3.0,kg/TJ,0.023169993,kg +19b98294-f9a8-36d0-9874-79dd7d576ab8,SESCO,II.1.1,Tucuman,AR-T,annual,2011,naphtha combustion consumption by public passenger transport,0.007723331,TJ,N2O,0.6,kg/TJ,0.0046339986,kg +7bf7952d-0f1c-3908-a3e4-6e5a364ab33c,SESCO,II.5.1,Córdoba,AR-X,annual,2011,naphtha combustion consumption by agriculture machines,1.67349136108,TJ,CO2,73300.0,kg/TJ,122666.916767164,kg +86f129a1-a372-3eeb-86b2-ec00a76af5d3,SESCO,II.5.1,Córdoba,AR-X,annual,2011,naphtha combustion consumption by agriculture machines,1.67349136108,TJ,CH4,3.0,kg/TJ,5.02047408324,kg +f557c0f0-9ded-3417-8975-52e85ea20cfd,SESCO,II.5.1,Córdoba,AR-X,annual,2011,naphtha combustion consumption by agriculture machines,1.67349136108,TJ,N2O,0.6,kg/TJ,1.004094816648,kg +a5e5e0b9-8507-3675-85fb-5dd035229f08,SESCO,II.1.1,Buenos Aires,AR-B,annual,2011,naphtha combustion consumption by to the public,1567.2467987476298,TJ,CO2,73300.0,kg/TJ,114879190.34820126,kg +4506aadd-5121-3e48-994b-0b52375ef74c,SESCO,II.1.1,Buenos Aires,AR-B,annual,2011,naphtha combustion consumption by to the public,1567.2467987476298,TJ,CH4,3.0,kg/TJ,4701.740396242889,kg +10ebee96-c379-3f11-99ea-e61de4f8120e,SESCO,II.1.1,Buenos Aires,AR-B,annual,2011,naphtha combustion consumption by to the public,1567.2467987476298,TJ,N2O,0.6,kg/TJ,940.3480792485778,kg +816d65a8-28a6-3bc0-a6e5-0cf90607e01a,SESCO,II.1.1,Capital Federal,AR-C,annual,2011,naphtha combustion consumption by to the public,244.95050648376,TJ,CO2,73300.0,kg/TJ,17954872.125259608,kg +e9c6fd5c-56a4-3f54-b82f-571fd858ac42,SESCO,II.1.1,Capital Federal,AR-C,annual,2011,naphtha combustion consumption by to the public,244.95050648376,TJ,CH4,3.0,kg/TJ,734.85151945128,kg +10564a08-072e-3e89-a3e8-f9de84478d71,SESCO,II.1.1,Capital Federal,AR-C,annual,2011,naphtha combustion consumption by to the public,244.95050648376,TJ,N2O,0.6,kg/TJ,146.970303890256,kg +bbf10042-529f-3ab4-99ab-d4553a3c6e8b,SESCO,II.1.1,Catamarca,AR-K,annual,2011,naphtha combustion consumption by to the public,115.00480088866998,TJ,CO2,73300.0,kg/TJ,8429851.90513951,kg +b29e622b-a39a-3a9c-bbbb-745cc93d7811,SESCO,II.1.1,Catamarca,AR-K,annual,2011,naphtha combustion consumption by to the public,115.00480088866998,TJ,CH4,3.0,kg/TJ,345.0144026660099,kg +e5054107-2b45-3e4e-9f74-4a7950e9d7f0,SESCO,II.1.1,Catamarca,AR-K,annual,2011,naphtha combustion consumption by to the public,115.00480088866998,TJ,N2O,0.6,kg/TJ,69.00288053320199,kg +ad37dcf6-f911-3ec6-9394-bbca1a0003a9,SESCO,II.1.1,Chaco,AR-H,annual,2011,naphtha combustion consumption by to the public,264.03291312013,TJ,CO2,73300.0,kg/TJ,19353612.53170553,kg +212d140c-fec8-3c23-ac18-c376dfe12d9c,SESCO,II.1.1,Chaco,AR-H,annual,2011,naphtha combustion consumption by to the public,264.03291312013,TJ,CH4,3.0,kg/TJ,792.09873936039,kg +873a0733-86a5-35b3-88b7-a74a7d00083e,SESCO,II.1.1,Chaco,AR-H,annual,2011,naphtha combustion consumption by to the public,264.03291312013,TJ,N2O,0.6,kg/TJ,158.41974787207798,kg +e7b64e51-c450-3c3b-a299-6793975dcca1,SESCO,II.1.1,Corrientes,AR-W,annual,2011,naphtha combustion consumption by to the public,336.50367471258994,TJ,CO2,73300.0,kg/TJ,24665719.356432844,kg +1c2f3716-39a6-307e-bf30-14c63a3d9d55,SESCO,II.1.1,Corrientes,AR-W,annual,2011,naphtha combustion consumption by to the public,336.50367471258994,TJ,CH4,3.0,kg/TJ,1009.5110241377698,kg +db711b1f-67ef-331e-be58-09b49ea89e7e,SESCO,II.1.1,Corrientes,AR-W,annual,2011,naphtha combustion consumption by to the public,336.50367471258994,TJ,N2O,0.6,kg/TJ,201.90220482755396,kg +997d866d-a98f-3080-9a01-7586f576a5a3,SESCO,II.1.1,Córdoba,AR-X,annual,2011,naphtha combustion consumption by to the public,615.08846835667,TJ,CO2,73300.0,kg/TJ,45085984.73054391,kg +38392525-18cf-36ca-9432-330ef8840b14,SESCO,II.1.1,Córdoba,AR-X,annual,2011,naphtha combustion consumption by to the public,615.08846835667,TJ,CH4,3.0,kg/TJ,1845.2654050700098,kg +b6a5749d-ecad-3dba-9dd4-4c82663b5482,SESCO,II.1.1,Córdoba,AR-X,annual,2011,naphtha combustion consumption by to the public,615.08846835667,TJ,N2O,0.6,kg/TJ,369.053081014002,kg +ebca86a8-5253-36fb-a8da-dfc604380dc5,SESCO,II.1.1,Entre Rios,AR-E,annual,2011,naphtha combustion consumption by to the public,298.58145798249996,TJ,CO2,73300.0,kg/TJ,21886020.870117247,kg +6044c699-bc4f-3883-9aee-bf58e157448b,SESCO,II.1.1,Entre Rios,AR-E,annual,2011,naphtha combustion consumption by to the public,298.58145798249996,TJ,CH4,3.0,kg/TJ,895.7443739474999,kg +8afd44e8-677c-36e3-9df8-e13e03c20912,SESCO,II.1.1,Entre Rios,AR-E,annual,2011,naphtha combustion consumption by to the public,298.58145798249996,TJ,N2O,0.6,kg/TJ,179.14887478949996,kg +7d8501f0-5f99-36bd-8e76-1acc8ec0b02b,SESCO,II.1.1,Formosa,AR-P,annual,2011,naphtha combustion consumption by to the public,43.732666687709994,TJ,CO2,73300.0,kg/TJ,3205604.4682091423,kg +2580363d-4461-3910-99bc-f0cdffc1ec2b,SESCO,II.1.1,Formosa,AR-P,annual,2011,naphtha combustion consumption by to the public,43.732666687709994,TJ,CH4,3.0,kg/TJ,131.19800006313,kg +302970f3-62f9-3c57-8e8b-edfe66fd4b66,SESCO,II.1.1,Formosa,AR-P,annual,2011,naphtha combustion consumption by to the public,43.732666687709994,TJ,N2O,0.6,kg/TJ,26.239600012625996,kg +757fd74c-fad3-3d25-8bf1-fbc2e241374f,SESCO,II.1.1,Jujuy,AR-Y,annual,2011,naphtha combustion consumption by to the public,16.80883932035,TJ,CO2,73300.0,kg/TJ,1232087.922181655,kg +eb6c73ef-175b-3381-b4cb-06c48252e011,SESCO,II.1.1,Jujuy,AR-Y,annual,2011,naphtha combustion consumption by to the public,16.80883932035,TJ,CH4,3.0,kg/TJ,50.426517961049996,kg +c024b168-e74c-330e-a7a4-bbe0dce94ea6,SESCO,II.1.1,Jujuy,AR-Y,annual,2011,naphtha combustion consumption by to the public,16.80883932035,TJ,N2O,0.6,kg/TJ,10.08530359221,kg +912f5036-f055-39c5-81b5-6ba906a1278e,SESCO,II.1.1,La Pampa,AR-L,annual,2011,naphtha combustion consumption by to the public,8.86515497098,TJ,CO2,73300.0,kg/TJ,649815.8593728341,kg +f5bd73de-2a4d-37a1-9bd4-2d0ef57f65a1,SESCO,II.1.1,La Pampa,AR-L,annual,2011,naphtha combustion consumption by to the public,8.86515497098,TJ,CH4,3.0,kg/TJ,26.595464912940002,kg +f2d68d05-9268-32cb-988d-c97e528550da,SESCO,II.1.1,La Pampa,AR-L,annual,2011,naphtha combustion consumption by to the public,8.86515497098,TJ,N2O,0.6,kg/TJ,5.319092982588001,kg +efedbfa2-316a-3069-8960-817fa9c5c59f,SESCO,II.1.1,La Rioja,AR-F,annual,2011,naphtha combustion consumption by to the public,68.29082433788999,TJ,CO2,73300.0,kg/TJ,5005717.423967336,kg +f75a2a96-a0fa-3095-9029-c9d86430c32b,SESCO,II.1.1,La Rioja,AR-F,annual,2011,naphtha combustion consumption by to the public,68.29082433788999,TJ,CH4,3.0,kg/TJ,204.87247301366995,kg +10f14ae4-a0f1-3b80-bee4-60821b578207,SESCO,II.1.1,La Rioja,AR-F,annual,2011,naphtha combustion consumption by to the public,68.29082433788999,TJ,N2O,0.6,kg/TJ,40.97449460273399,kg +65237436-a797-30f6-be9a-4dab45067fce,SESCO,II.1.1,Mendoza,AR-M,annual,2011,naphtha combustion consumption by to the public,238.77258715309998,TJ,CO2,73300.0,kg/TJ,17502030.638322227,kg +b1a25a69-47fe-322b-aabf-f0bcfaa847db,SESCO,II.1.1,Mendoza,AR-M,annual,2011,naphtha combustion consumption by to the public,238.77258715309998,TJ,CH4,3.0,kg/TJ,716.3177614593,kg +dc594a12-f08f-3a3c-9eee-c75937092e44,SESCO,II.1.1,Mendoza,AR-M,annual,2011,naphtha combustion consumption by to the public,238.77258715309998,TJ,N2O,0.6,kg/TJ,143.26355229185998,kg +12c19489-065b-36b4-b078-cbaa3929c065,SESCO,II.1.1,Misiones,AR-N,annual,2011,naphtha combustion consumption by to the public,116.60336922310998,TJ,CO2,73300.0,kg/TJ,8547026.964053962,kg +195f2384-8d5c-3a77-8531-cbe7bbd97d50,SESCO,II.1.1,Misiones,AR-N,annual,2011,naphtha combustion consumption by to the public,116.60336922310998,TJ,CH4,3.0,kg/TJ,349.8101076693299,kg +b3b57b37-d3de-3abd-8109-108b38bb09de,SESCO,II.1.1,Misiones,AR-N,annual,2011,naphtha combustion consumption by to the public,116.60336922310998,TJ,N2O,0.6,kg/TJ,69.96202153386598,kg +6291280e-d36b-3cda-8247-d8d183fea330,SESCO,II.1.1,Salta,AR-A,annual,2011,naphtha combustion consumption by to the public,7.30295009367,TJ,CO2,73300.0,kg/TJ,535306.2418660109,kg +a4c3c192-bb36-337f-b2c3-0910784d95dd,SESCO,II.1.1,Salta,AR-A,annual,2011,naphtha combustion consumption by to the public,7.30295009367,TJ,CH4,3.0,kg/TJ,21.90885028101,kg +e5c85940-5e98-3364-957b-d81e0e578fe6,SESCO,II.1.1,Salta,AR-A,annual,2011,naphtha combustion consumption by to the public,7.30295009367,TJ,N2O,0.6,kg/TJ,4.381770056202,kg +394d8706-100a-3769-ab34-cd4a41bdd96d,SESCO,II.1.1,San Juan,AR-J,annual,2011,naphtha combustion consumption by to the public,181.92248413416,TJ,CO2,73300.0,kg/TJ,13334918.087033927,kg +f0120c48-471d-3081-8d57-f34cb2e5b21c,SESCO,II.1.1,San Juan,AR-J,annual,2011,naphtha combustion consumption by to the public,181.92248413416,TJ,CH4,3.0,kg/TJ,545.76745240248,kg +2a559acc-5788-3d5d-917b-bda918277622,SESCO,II.1.1,San Juan,AR-J,annual,2011,naphtha combustion consumption by to the public,181.92248413416,TJ,N2O,0.6,kg/TJ,109.15349048049599,kg +0383fe2e-72a5-346f-8d09-9cff48142867,SESCO,II.1.1,San Luis,AR-D,annual,2011,naphtha combustion consumption by to the public,78.98885335802998,TJ,CO2,73300.0,kg/TJ,5789882.951143598,kg +08f43741-00c4-31b1-9790-5ccf31808d16,SESCO,II.1.1,San Luis,AR-D,annual,2011,naphtha combustion consumption by to the public,78.98885335802998,TJ,CH4,3.0,kg/TJ,236.96656007408995,kg +ca1741cd-cb07-3a85-9d75-eca40229a5b9,SESCO,II.1.1,San Luis,AR-D,annual,2011,naphtha combustion consumption by to the public,78.98885335802998,TJ,N2O,0.6,kg/TJ,47.39331201481799,kg +82b47b8c-d5e2-33aa-aa7a-9361473b85d7,SESCO,II.1.1,Santa Fe,AR-S,annual,2011,naphtha combustion consumption by to the public,791.56883826251,TJ,CO2,73300.0,kg/TJ,58021995.84464198,kg +c870748b-ef52-3051-9520-ebf525ae83aa,SESCO,II.1.1,Santa Fe,AR-S,annual,2011,naphtha combustion consumption by to the public,791.56883826251,TJ,CH4,3.0,kg/TJ,2374.70651478753,kg +740f910a-55f7-3640-80f9-6a9d9d13dd4c,SESCO,II.1.1,Santa Fe,AR-S,annual,2011,naphtha combustion consumption by to the public,791.56883826251,TJ,N2O,0.6,kg/TJ,474.94130295750597,kg +c360460e-ff5d-3b32-ace4-0b62eb2e55a5,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2011,naphtha combustion consumption by to the public,119.13866679483999,TJ,CO2,73300.0,kg/TJ,8732864.276061771,kg +8a581654-adbd-31c7-92e6-6c8265261179,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2011,naphtha combustion consumption by to the public,119.13866679483999,TJ,CH4,3.0,kg/TJ,357.41600038452,kg +dca0482b-c2cb-3378-aa2f-688138e14d22,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2011,naphtha combustion consumption by to the public,119.13866679483999,TJ,N2O,0.6,kg/TJ,71.483200076904,kg +b5b8d390-eefe-3c3e-a292-bd674eeee95c,SESCO,II.1.1,Tucuman,AR-T,annual,2011,naphtha combustion consumption by to the public,152.95194383007,TJ,CO2,73300.0,kg/TJ,11211377.482744131,kg +08734401-1c4f-34aa-92b2-3b230fb6961b,SESCO,II.1.1,Tucuman,AR-T,annual,2011,naphtha combustion consumption by to the public,152.95194383007,TJ,CH4,3.0,kg/TJ,458.85583149021,kg +d5af6001-a594-3460-b99a-d8dea3703d6f,SESCO,II.1.1,Tucuman,AR-T,annual,2011,naphtha combustion consumption by to the public,152.95194383007,TJ,N2O,0.6,kg/TJ,91.771166298042,kg +257ad653-58ac-3f55-935b-ef0a8396a07d,SESCO,II.1.1,Buenos Aires,AR-B,annual,2011,naphtha combustion consumption by to the public,276.01975453205995,TJ,CO2,73300.0,kg/TJ,20232248.007199995,kg +969c0c55-fcfb-325b-bba1-a7246e98fe78,SESCO,II.1.1,Buenos Aires,AR-B,annual,2011,naphtha combustion consumption by to the public,276.01975453205995,TJ,CH4,3.0,kg/TJ,828.0592635961798,kg +860bbdfe-1aba-3281-a970-63079a3ea026,SESCO,II.1.1,Buenos Aires,AR-B,annual,2011,naphtha combustion consumption by to the public,276.01975453205995,TJ,N2O,0.6,kg/TJ,165.61185271923597,kg +62a529da-4a9c-3532-8d77-2d768a9576db,SESCO,II.1.1,Capital Federal,AR-C,annual,2011,naphtha combustion consumption by to the public,38.617041166549996,TJ,CO2,73300.0,kg/TJ,2830629.117508115,kg +550e72a5-52b1-3a11-aa4c-aae590dbd81c,SESCO,II.1.1,Capital Federal,AR-C,annual,2011,naphtha combustion consumption by to the public,38.617041166549996,TJ,CH4,3.0,kg/TJ,115.85112349964999,kg +f82a2e06-891e-31a9-b3b7-954582a09cab,SESCO,II.1.1,Capital Federal,AR-C,annual,2011,naphtha combustion consumption by to the public,38.617041166549996,TJ,N2O,0.6,kg/TJ,23.170224699929996,kg +bb36600c-ae52-3cc5-a31f-5ccc3fdedaca,SESCO,II.1.1,Catamarca,AR-K,annual,2011,naphtha combustion consumption by to the public,14.591343387389996,TJ,CO2,73300.0,kg/TJ,1069545.4702956867,kg +d4d21ae9-231e-3d2b-98a6-6637ae27158a,SESCO,II.1.1,Catamarca,AR-K,annual,2011,naphtha combustion consumption by to the public,14.591343387389996,TJ,CH4,3.0,kg/TJ,43.774030162169986,kg +7ba377e4-60a4-3978-b1a3-b619af911e28,SESCO,II.1.1,Catamarca,AR-K,annual,2011,naphtha combustion consumption by to the public,14.591343387389996,TJ,N2O,0.6,kg/TJ,8.754806032433997,kg +8df7c6ff-09dd-3c04-a4e7-c5a6506c86e8,SESCO,II.1.1,Chaco,AR-H,annual,2011,naphtha combustion consumption by to the public,21.487206777959997,TJ,CO2,73300.0,kg/TJ,1575012.2568244678,kg +cc012742-37ac-39de-8c4c-14f2c4d94ce6,SESCO,II.1.1,Chaco,AR-H,annual,2011,naphtha combustion consumption by to the public,21.487206777959997,TJ,CH4,3.0,kg/TJ,64.46162033387999,kg +11328114-c46e-354e-920e-6d0336aee4b1,SESCO,II.1.1,Chaco,AR-H,annual,2011,naphtha combustion consumption by to the public,21.487206777959997,TJ,N2O,0.6,kg/TJ,12.892324066775998,kg +e63d9123-78f0-36cd-9929-292eb1759313,SESCO,II.1.1,Corrientes,AR-W,annual,2011,naphtha combustion consumption by to the public,30.74959281009,TJ,CO2,73300.0,kg/TJ,2253945.152979597,kg +af440145-c0da-36ed-9e3c-73c285680cc8,SESCO,II.1.1,Corrientes,AR-W,annual,2011,naphtha combustion consumption by to the public,30.74959281009,TJ,CH4,3.0,kg/TJ,92.24877843027,kg +7f34b3e9-6f7d-3362-8a0e-957ed981249c,SESCO,II.1.1,Corrientes,AR-W,annual,2011,naphtha combustion consumption by to the public,30.74959281009,TJ,N2O,0.6,kg/TJ,18.449755686054,kg +849c2854-4b4c-3169-ad89-09c6eef9298a,SESCO,II.1.1,Córdoba,AR-X,annual,2011,naphtha combustion consumption by to the public,104.94734158369998,TJ,CO2,73300.0,kg/TJ,7692640.138085209,kg +28a14451-41c4-3fe6-9c15-c0466487c795,SESCO,II.1.1,Córdoba,AR-X,annual,2011,naphtha combustion consumption by to the public,104.94734158369998,TJ,CH4,3.0,kg/TJ,314.8420247510999,kg +f9cebb44-3986-39f1-a1a3-372677d4d385,SESCO,II.1.1,Córdoba,AR-X,annual,2011,naphtha combustion consumption by to the public,104.94734158369998,TJ,N2O,0.6,kg/TJ,62.968404950219984,kg +341006dc-c445-3c6c-aae8-fa43d05f2180,SESCO,II.1.1,Entre Rios,AR-E,annual,2011,naphtha combustion consumption by to the public,52.80585125815999,TJ,CO2,73300.0,kg/TJ,3870668.897223127,kg +7ba17183-4f55-31f1-a44b-e001f845b309,SESCO,II.1.1,Entre Rios,AR-E,annual,2011,naphtha combustion consumption by to the public,52.80585125815999,TJ,CH4,3.0,kg/TJ,158.41755377447998,kg +dde82698-5577-3086-8c9d-73c97e993c5d,SESCO,II.1.1,Entre Rios,AR-E,annual,2011,naphtha combustion consumption by to the public,52.80585125815999,TJ,N2O,0.6,kg/TJ,31.68351075489599,kg +74b07935-c694-36f2-88f3-d1fe7812a7b6,SESCO,II.1.1,Jujuy,AR-Y,annual,2011,naphtha combustion consumption by to the public,2.0425154742299996,TJ,CO2,73300.0,kg/TJ,149716.38426105896,kg +f968451d-3b08-3920-b115-7a5767f75628,SESCO,II.1.1,Jujuy,AR-Y,annual,2011,naphtha combustion consumption by to the public,2.0425154742299996,TJ,CH4,3.0,kg/TJ,6.127546422689999,kg +e1e573ca-c650-3162-9aac-78787ec8d4db,SESCO,II.1.1,Jujuy,AR-Y,annual,2011,naphtha combustion consumption by to the public,2.0425154742299996,TJ,N2O,0.6,kg/TJ,1.2255092845379998,kg +4de4bc48-d781-3bfa-bcdf-b4f701deb27c,SESCO,II.1.1,La Pampa,AR-L,annual,2011,naphtha combustion consumption by to the public,3.7665073461399996,TJ,CO2,73300.0,kg/TJ,276084.988472062,kg +049054cb-f61c-32f7-bc0b-a1da94a11946,SESCO,II.1.1,La Pampa,AR-L,annual,2011,naphtha combustion consumption by to the public,3.7665073461399996,TJ,CH4,3.0,kg/TJ,11.29952203842,kg +443a0b4d-9c00-306f-a6c6-da3020b41f3c,SESCO,II.1.1,La Pampa,AR-L,annual,2011,naphtha combustion consumption by to the public,3.7665073461399996,TJ,N2O,0.6,kg/TJ,2.2599044076839996,kg +eee7fd0c-18bd-38fe-bb38-42e0ef6f4079,SESCO,II.1.1,La Rioja,AR-F,annual,2011,naphtha combustion consumption by to the public,8.701034187229999,TJ,CO2,73300.0,kg/TJ,637785.8059239589,kg +2c2273fd-3103-34fd-a01e-b90ac6ce235b,SESCO,II.1.1,La Rioja,AR-F,annual,2011,naphtha combustion consumption by to the public,8.701034187229999,TJ,CH4,3.0,kg/TJ,26.103102561689994,kg +13c5717b-1924-3475-b344-c0cef9e40838,SESCO,II.1.1,La Rioja,AR-F,annual,2011,naphtha combustion consumption by to the public,8.701034187229999,TJ,N2O,0.6,kg/TJ,5.220620512337999,kg +d5e38ce0-0868-39e5-8411-e80f19de7eae,SESCO,II.1.1,Mendoza,AR-M,annual,2011,naphtha combustion consumption by to the public,42.51807214886,TJ,CO2,73300.0,kg/TJ,3116574.688511438,kg +9280b8a1-bd28-3f45-a615-bd29315dc78f,SESCO,II.1.1,Mendoza,AR-M,annual,2011,naphtha combustion consumption by to the public,42.51807214886,TJ,CH4,3.0,kg/TJ,127.55421644658,kg +3dc4c103-a850-3bfc-af61-811a2706d815,SESCO,II.1.1,Mendoza,AR-M,annual,2011,naphtha combustion consumption by to the public,42.51807214886,TJ,N2O,0.6,kg/TJ,25.510843289316,kg +55288a44-a077-361c-bd7b-84bb3a7749b1,SESCO,II.1.1,Misiones,AR-N,annual,2011,naphtha combustion consumption by to the public,10.722572422869998,TJ,CO2,73300.0,kg/TJ,785964.5585963709,kg +3edc2853-b8e2-34e5-afe6-3d691c205662,SESCO,II.1.1,Misiones,AR-N,annual,2011,naphtha combustion consumption by to the public,10.722572422869998,TJ,CH4,3.0,kg/TJ,32.16771726860999,kg +8010b7e3-5bf8-37c5-a89b-8081761e4d6c,SESCO,II.1.1,Misiones,AR-N,annual,2011,naphtha combustion consumption by to the public,10.722572422869998,TJ,N2O,0.6,kg/TJ,6.433543453721999,kg +5462b77b-edf2-3052-9856-ebb30ed58aef,SESCO,II.1.1,Salta,AR-A,annual,2011,naphtha combustion consumption by to the public,0.57329278622,TJ,CO2,73300.0,kg/TJ,42022.361229926,kg +b0144b10-207e-393b-bf16-ccf6f08ee51e,SESCO,II.1.1,Salta,AR-A,annual,2011,naphtha combustion consumption by to the public,0.57329278622,TJ,CH4,3.0,kg/TJ,1.71987835866,kg +6622adc5-c7d9-3a68-b313-447cb7293b9c,SESCO,II.1.1,Salta,AR-A,annual,2011,naphtha combustion consumption by to the public,0.57329278622,TJ,N2O,0.6,kg/TJ,0.343975671732,kg +bbd9991c-37c6-364a-acae-2fd456b8827d,SESCO,II.1.1,San Juan,AR-J,annual,2011,naphtha combustion consumption by to the public,37.08617958122,TJ,CO2,73300.0,kg/TJ,2718416.9633034263,kg +ad5b4f72-e945-3e9b-8cdb-ed4cb24c03da,SESCO,II.1.1,San Juan,AR-J,annual,2011,naphtha combustion consumption by to the public,37.08617958122,TJ,CH4,3.0,kg/TJ,111.25853874366001,kg +fbf961b6-c3d3-35af-b07a-d91520e084e8,SESCO,II.1.1,San Juan,AR-J,annual,2011,naphtha combustion consumption by to the public,37.08617958122,TJ,N2O,0.6,kg/TJ,22.251707748732,kg +390047ac-93ef-3edc-a86a-0502648495b1,SESCO,II.1.1,San Luis,AR-D,annual,2011,naphtha combustion consumption by to the public,13.14092868935,TJ,CO2,73300.0,kg/TJ,963230.072929355,kg +20f990a0-a5d7-3987-9b45-d9e505849e99,SESCO,II.1.1,San Luis,AR-D,annual,2011,naphtha combustion consumption by to the public,13.14092868935,TJ,CH4,3.0,kg/TJ,39.42278606805,kg +70eae4d5-866e-3199-8500-31929cb10b24,SESCO,II.1.1,San Luis,AR-D,annual,2011,naphtha combustion consumption by to the public,13.14092868935,TJ,N2O,0.6,kg/TJ,7.88455721361,kg +23fcf9b8-9727-3959-8346-33d05af84c38,SESCO,II.1.1,Santa Fe,AR-S,annual,2011,naphtha combustion consumption by to the public,150.95033850435,TJ,CO2,73300.0,kg/TJ,11064659.812368855,kg +1da1e11e-9133-3eaa-8404-a1dbd4f95d04,SESCO,II.1.1,Santa Fe,AR-S,annual,2011,naphtha combustion consumption by to the public,150.95033850435,TJ,CH4,3.0,kg/TJ,452.85101551304996,kg +e8d19392-5883-30bb-b309-7231769a93a1,SESCO,II.1.1,Santa Fe,AR-S,annual,2011,naphtha combustion consumption by to the public,150.95033850435,TJ,N2O,0.6,kg/TJ,90.57020310261,kg +e3533305-351e-3746-9b2b-dc72226fc3ec,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2011,naphtha combustion consumption by to the public,15.141892642799997,TJ,CO2,73300.0,kg/TJ,1109900.7307172397,kg +762317db-0b2f-3c21-9549-4aefa7b2b0e0,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2011,naphtha combustion consumption by to the public,15.141892642799997,TJ,CH4,3.0,kg/TJ,45.42567792839999,kg +9b7b0c52-4ee7-3afc-9fa9-6ecd495f89ea,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2011,naphtha combustion consumption by to the public,15.141892642799997,TJ,N2O,0.6,kg/TJ,9.085135585679998,kg +e06988d2-1ea3-35b2-94ef-92cf631a95b0,SESCO,II.1.1,Tucuman,AR-T,annual,2011,naphtha combustion consumption by to the public,23.31350592186,TJ,CO2,73300.0,kg/TJ,1708879.9840723379,kg +2534df29-d0cb-3289-8b74-b320f37cd6b6,SESCO,II.1.1,Tucuman,AR-T,annual,2011,naphtha combustion consumption by to the public,23.31350592186,TJ,CH4,3.0,kg/TJ,69.94051776558,kg +04bc5fef-3d21-33d0-969c-afc89a2557a2,SESCO,II.1.1,Tucuman,AR-T,annual,2011,naphtha combustion consumption by to the public,23.31350592186,TJ,N2O,0.6,kg/TJ,13.988103553116,kg +858e72ee-3161-3f0f-91d2-22569df17668,SESCO,II.5.1,Santiago del Estero,AR-G,annual,2011,naphtha combustion consumption by agriculture machines,1.7568563242999997,TJ,CO2,73300.0,kg/TJ,128777.56857118999,kg +17b1e7a0-86df-3194-b8cd-07ac9c6ed980,SESCO,II.5.1,Santiago del Estero,AR-G,annual,2011,naphtha combustion consumption by agriculture machines,1.7568563242999997,TJ,CH4,3.0,kg/TJ,5.2705689729,kg +45e91999-a5c3-3f49-9a1d-e5a7d16cb58a,SESCO,II.5.1,Santiago del Estero,AR-G,annual,2011,naphtha combustion consumption by agriculture machines,1.7568563242999997,TJ,N2O,0.6,kg/TJ,1.0541137945799999,kg +3cbff7fe-d16d-3c2f-b9ea-31ec09a38edc,SESCO,II.1.1,Buenos Aires,AR-B,annual,2011,naphtha combustion consumption by to the public,175.7116566975,TJ,CO2,73300.0,kg/TJ,12879664.435926748,kg +e2894098-1369-3409-b56b-d1c34260bd6f,SESCO,II.1.1,Buenos Aires,AR-B,annual,2011,naphtha combustion consumption by to the public,175.7116566975,TJ,CH4,3.0,kg/TJ,527.1349700925,kg +fb31e21c-6b17-3721-8498-ca76c85129e7,SESCO,II.1.1,Buenos Aires,AR-B,annual,2011,naphtha combustion consumption by to the public,175.7116566975,TJ,N2O,0.6,kg/TJ,105.4269940185,kg +24a1454c-5473-3037-91e4-1f7bbe8c43c3,SESCO,II.1.1,Chubut,AR-U,annual,2011,naphtha combustion consumption by to the public,43.366503565,TJ,CO2,73300.0,kg/TJ,3178764.7113145003,kg +59fa92ef-2de0-353c-b5f4-b8ac6306bb4c,SESCO,II.1.1,Chubut,AR-U,annual,2011,naphtha combustion consumption by to the public,43.366503565,TJ,CH4,3.0,kg/TJ,130.099510695,kg +7f48d252-6b46-3052-a259-c4aee454c6a3,SESCO,II.1.1,Chubut,AR-U,annual,2011,naphtha combustion consumption by to the public,43.366503565,TJ,N2O,0.6,kg/TJ,26.019902139,kg +87a4ca68-2194-3651-9714-e3ec966c6e0f,SESCO,II.1.1,Entre Rios,AR-E,annual,2011,naphtha combustion consumption by to the public,1.6069901232,TJ,CO2,73300.0,kg/TJ,117792.37603055999,kg +4401849d-5cb2-3e4c-b83e-81595cb7d35d,SESCO,II.1.1,Entre Rios,AR-E,annual,2011,naphtha combustion consumption by to the public,1.6069901232,TJ,CH4,3.0,kg/TJ,4.8209703695999995,kg +b8040f87-1fa8-3949-a2de-a944705119fb,SESCO,II.1.1,Entre Rios,AR-E,annual,2011,naphtha combustion consumption by to the public,1.6069901232,TJ,N2O,0.6,kg/TJ,0.9641940739199999,kg +38889700-9fee-3576-89c1-ee1b01ef3aa2,SESCO,II.1.1,La Pampa,AR-L,annual,2011,naphtha combustion consumption by to the public,0.9920114973999999,TJ,CO2,73300.0,kg/TJ,72714.44275942,kg +40dae016-d124-3ad8-8b09-526c08a92d81,SESCO,II.1.1,La Pampa,AR-L,annual,2011,naphtha combustion consumption by to the public,0.9920114973999999,TJ,CH4,3.0,kg/TJ,2.9760344921999997,kg +4b02aae4-fb90-3bf0-9554-659e91bb86d8,SESCO,II.1.1,La Pampa,AR-L,annual,2011,naphtha combustion consumption by to the public,0.9920114973999999,TJ,N2O,0.6,kg/TJ,0.59520689844,kg +09e56609-d9b2-383e-80fc-b47cdf5ebf14,SESCO,II.1.1,Neuquén,AR-Q,annual,2011,naphtha combustion consumption by to the public,15.369160052399998,TJ,CO2,73300.0,kg/TJ,1126559.43184092,kg +7ad707ec-809d-3246-afd4-9ab7763dbb45,SESCO,II.1.1,Neuquén,AR-Q,annual,2011,naphtha combustion consumption by to the public,15.369160052399998,TJ,CH4,3.0,kg/TJ,46.107480157199994,kg +3ec17b8b-f379-3d59-8354-1488b7ca227b,SESCO,II.1.1,Neuquén,AR-Q,annual,2011,naphtha combustion consumption by to the public,15.369160052399998,TJ,N2O,0.6,kg/TJ,9.22149603144,kg +a4697cb4-9375-3a87-8921-727ef23f54fb,SESCO,II.1.1,Rio Negro,AR-R,annual,2011,naphtha combustion consumption by to the public,95.02806610219999,TJ,CO2,73300.0,kg/TJ,6965557.245291259,kg +f5ca9c0f-144d-37a3-8136-233d967a418f,SESCO,II.1.1,Rio Negro,AR-R,annual,2011,naphtha combustion consumption by to the public,95.02806610219999,TJ,CH4,3.0,kg/TJ,285.08419830659994,kg +ee0a7ada-9200-3e7f-bb97-2285ca6478ae,SESCO,II.1.1,Rio Negro,AR-R,annual,2011,naphtha combustion consumption by to the public,95.02806610219999,TJ,N2O,0.6,kg/TJ,57.01683966131999,kg +59d321a8-e79b-3809-b4b5-d23b85ad5934,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2011,naphtha combustion consumption by to the public,2.5051463591,TJ,CO2,73300.0,kg/TJ,183627.22812202998,kg +8759e21e-0557-3c26-b11e-d11bade89594,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2011,naphtha combustion consumption by to the public,2.5051463591,TJ,CH4,3.0,kg/TJ,7.5154390773,kg +176a40d9-ce88-353e-8ddc-8be9e90a8a03,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2011,naphtha combustion consumption by to the public,2.5051463591,TJ,N2O,0.6,kg/TJ,1.5030878154599998,kg +73a5a90b-1fb6-3208-8efb-01b987133a8b,SESCO,II.1.1,Santa Fe,AR-S,annual,2011,naphtha combustion consumption by to the public,0.19869108489999998,TJ,CO2,73300.0,kg/TJ,14564.056523169998,kg +cab16a8e-7473-32cc-8a43-ff9c9bdb524b,SESCO,II.1.1,Santa Fe,AR-S,annual,2011,naphtha combustion consumption by to the public,0.19869108489999998,TJ,CH4,3.0,kg/TJ,0.5960732546999999,kg +c4a63aa5-50e6-3e82-bb89-6e69e77c4cb5,SESCO,II.1.1,Santa Fe,AR-S,annual,2011,naphtha combustion consumption by to the public,0.19869108489999998,TJ,N2O,0.6,kg/TJ,0.11921465093999999,kg +7195aadc-d9c4-30b3-b959-1be2a6d894c2,SESCO,II.1.1,Buenos Aires,AR-B,annual,2011,naphtha combustion consumption by to the public,6023.9046934220005,TJ,CO2,73300.0,kg/TJ,441552214.0278326,kg +24bbac4c-ebaa-3c23-a659-23bd4cce1047,SESCO,II.1.1,Buenos Aires,AR-B,annual,2011,naphtha combustion consumption by to the public,6023.9046934220005,TJ,CH4,3.0,kg/TJ,18071.714080266,kg +cc1e0257-6ccf-3626-9e0a-1bec5f95227a,SESCO,II.1.1,Buenos Aires,AR-B,annual,2011,naphtha combustion consumption by to the public,6023.9046934220005,TJ,N2O,0.6,kg/TJ,3614.3428160532003,kg +afc5eef9-97d6-3516-b252-35dbb089eb59,SESCO,II.1.1,Capital Federal,AR-C,annual,2011,naphtha combustion consumption by to the public,851.1995251297999,TJ,CO2,73300.0,kg/TJ,62392925.19201433,kg +294918a7-4215-36ff-8b87-4ea0b93b55e1,SESCO,II.1.1,Capital Federal,AR-C,annual,2011,naphtha combustion consumption by to the public,851.1995251297999,TJ,CH4,3.0,kg/TJ,2553.5985753893997,kg +b1f8b9b7-024f-3991-b168-89347e4273ed,SESCO,II.1.1,Capital Federal,AR-C,annual,2011,naphtha combustion consumption by to the public,851.1995251297999,TJ,N2O,0.6,kg/TJ,510.7197150778799,kg +f60a955a-c0d4-3b55-922f-11d5fd798533,SESCO,II.1.1,Catamarca,AR-K,annual,2011,naphtha combustion consumption by to the public,60.84655071879999,TJ,CO2,73300.0,kg/TJ,4460052.167688039,kg +20d1bdbd-10d4-3b5b-b894-d61996d0da19,SESCO,II.1.1,Catamarca,AR-K,annual,2011,naphtha combustion consumption by to the public,60.84655071879999,TJ,CH4,3.0,kg/TJ,182.53965215639997,kg +ebb7d42e-e02c-3ca0-89d7-c4b8ef150f9b,SESCO,II.1.1,Catamarca,AR-K,annual,2011,naphtha combustion consumption by to the public,60.84655071879999,TJ,N2O,0.6,kg/TJ,36.507930431279995,kg +1a32915f-cbb1-344c-b6df-b3f2be09599d,SESCO,II.1.1,Chaco,AR-H,annual,2011,naphtha combustion consumption by to the public,117.04587243579998,TJ,CO2,73300.0,kg/TJ,8579462.44954414,kg +1bc891a6-b654-3232-b6cc-a7b24b4e0fb2,SESCO,II.1.1,Chaco,AR-H,annual,2011,naphtha combustion consumption by to the public,117.04587243579998,TJ,CH4,3.0,kg/TJ,351.1376173073999,kg +ce3b30e7-b67f-3c84-ba34-438de1b65599,SESCO,II.1.1,Chaco,AR-H,annual,2011,naphtha combustion consumption by to the public,117.04587243579998,TJ,N2O,0.6,kg/TJ,70.22752346147999,kg +d3c1a128-0b5f-370a-8319-e8c9fde02e0a,SESCO,II.1.1,Chubut,AR-U,annual,2011,naphtha combustion consumption by to the public,1531.0932181006,TJ,CO2,73300.0,kg/TJ,112229132.88677399,kg +5ed4bbe5-1955-3c8a-b459-409d8cc0b994,SESCO,II.1.1,Chubut,AR-U,annual,2011,naphtha combustion consumption by to the public,1531.0932181006,TJ,CH4,3.0,kg/TJ,4593.2796543018,kg +88cded83-f6e1-3225-9779-3e03e3090f3c,SESCO,II.1.1,Chubut,AR-U,annual,2011,naphtha combustion consumption by to the public,1531.0932181006,TJ,N2O,0.6,kg/TJ,918.6559308603601,kg +ba8db461-5af5-3702-8ce6-a72875effa08,SESCO,II.1.1,Corrientes,AR-W,annual,2011,naphtha combustion consumption by to the public,163.14717392819998,TJ,CO2,73300.0,kg/TJ,11958687.848937059,kg +57bd7b1c-c11f-3bb9-a9a0-dd2f971d7113,SESCO,II.1.1,Corrientes,AR-W,annual,2011,naphtha combustion consumption by to the public,163.14717392819998,TJ,CH4,3.0,kg/TJ,489.4415217845999,kg +b72b2223-7204-34ad-b3d6-4151e42f5c89,SESCO,II.1.1,Corrientes,AR-W,annual,2011,naphtha combustion consumption by to the public,163.14717392819998,TJ,N2O,0.6,kg/TJ,97.88830435691999,kg +1b189b48-d93f-3748-ad4e-ea2ff9b9b8a4,SESCO,II.1.1,Córdoba,AR-X,annual,2011,naphtha combustion consumption by to the public,1045.7094336842997,TJ,CO2,73300.0,kg/TJ,76650501.48905917,kg +98ee32d7-20fc-385a-a7fd-ca4b86426b8c,SESCO,II.1.1,Córdoba,AR-X,annual,2011,naphtha combustion consumption by to the public,1045.7094336842997,TJ,CH4,3.0,kg/TJ,3137.128301052899,kg +1441b98a-4515-32dd-9c06-fa322e338c11,SESCO,II.1.1,Córdoba,AR-X,annual,2011,naphtha combustion consumption by to the public,1045.7094336842997,TJ,N2O,0.6,kg/TJ,627.4256602105798,kg +14f915f6-a607-3c9f-8877-bf67099b033c,SESCO,II.1.1,Entre Rios,AR-E,annual,2011,naphtha combustion consumption by to the public,263.0501729779,TJ,CO2,73300.0,kg/TJ,19281577.67928007,kg +33801a87-ede6-3ed9-ae80-dca9450776b9,SESCO,II.1.1,Entre Rios,AR-E,annual,2011,naphtha combustion consumption by to the public,263.0501729779,TJ,CH4,3.0,kg/TJ,789.1505189336999,kg +5c5e707f-16df-3b9d-8d5c-5e4a7497ce07,SESCO,II.1.1,Entre Rios,AR-E,annual,2011,naphtha combustion consumption by to the public,263.0501729779,TJ,N2O,0.6,kg/TJ,157.83010378673998,kg +1ba9a3ba-58e2-30d5-bbad-4313a4de3115,SESCO,II.1.1,Formosa,AR-P,annual,2011,naphtha combustion consumption by to the public,16.3295730521,TJ,CO2,73300.0,kg/TJ,1196957.70471893,kg +bd47e5a4-6280-32e6-a370-627e60dbe3d6,SESCO,II.1.1,Formosa,AR-P,annual,2011,naphtha combustion consumption by to the public,16.3295730521,TJ,CH4,3.0,kg/TJ,48.98871915629999,kg +92a912cb-a941-389c-ba99-94ea63488b7d,SESCO,II.1.1,Formosa,AR-P,annual,2011,naphtha combustion consumption by to the public,16.3295730521,TJ,N2O,0.6,kg/TJ,9.797743831259998,kg +abfcbd86-cda5-3029-8416-e8f339935d5a,SESCO,II.1.1,Jujuy,AR-Y,annual,2011,naphtha combustion consumption by to the public,8.0770931395,TJ,CO2,73300.0,kg/TJ,592050.92712535,kg +433277b9-03d6-3604-997b-720ea77fb35b,SESCO,II.1.1,Jujuy,AR-Y,annual,2011,naphtha combustion consumption by to the public,8.0770931395,TJ,CH4,3.0,kg/TJ,24.2312794185,kg +22d7c360-ff6c-3e70-b946-149240be799d,SESCO,II.1.1,Jujuy,AR-Y,annual,2011,naphtha combustion consumption by to the public,8.0770931395,TJ,N2O,0.6,kg/TJ,4.8462558837000005,kg +bd338dfe-03a3-3db9-a4c9-ac4439b8b03e,SESCO,II.1.1,La Pampa,AR-L,annual,2011,naphtha combustion consumption by to the public,237.0676114653,TJ,CO2,73300.0,kg/TJ,17377055.92040649,kg +0197d6f2-77dc-392d-9917-0bb23ae4e54e,SESCO,II.1.1,La Pampa,AR-L,annual,2011,naphtha combustion consumption by to the public,237.0676114653,TJ,CH4,3.0,kg/TJ,711.2028343959,kg +d177eafe-df02-39b1-a41b-7b66ce9daf3f,SESCO,II.1.1,La Pampa,AR-L,annual,2011,naphtha combustion consumption by to the public,237.0676114653,TJ,N2O,0.6,kg/TJ,142.24056687918,kg +170b2a3f-d855-3740-9f33-37089b09912c,SESCO,II.1.1,La Rioja,AR-F,annual,2011,naphtha combustion consumption by to the public,31.6263016916,TJ,CO2,73300.0,kg/TJ,2318207.9139942797,kg +8663d11d-f0ea-341d-83f3-e36c2a2941eb,SESCO,II.1.1,La Rioja,AR-F,annual,2011,naphtha combustion consumption by to the public,31.6263016916,TJ,CH4,3.0,kg/TJ,94.8789050748,kg +74b1d09a-d04e-3146-919f-a0863bf891c5,SESCO,II.1.1,La Rioja,AR-F,annual,2011,naphtha combustion consumption by to the public,31.6263016916,TJ,N2O,0.6,kg/TJ,18.97578101496,kg +5cdcadb4-ad7e-3143-ad90-2179d8acc945,SESCO,II.1.1,Mendoza,AR-M,annual,2011,naphtha combustion consumption by to the public,133.3305830087,TJ,CO2,73300.0,kg/TJ,9773131.73453771,kg +5ed439e7-d796-3e6a-8470-cf76d33c4276,SESCO,II.1.1,Mendoza,AR-M,annual,2011,naphtha combustion consumption by to the public,133.3305830087,TJ,CH4,3.0,kg/TJ,399.99174902609997,kg +393ded2a-ed69-3777-a4f9-e1a323a36833,SESCO,II.1.1,Mendoza,AR-M,annual,2011,naphtha combustion consumption by to the public,133.3305830087,TJ,N2O,0.6,kg/TJ,79.99834980521999,kg +e70eeee1-e11b-36c8-b70c-89599c3fa308,SESCO,II.1.1,Misiones,AR-N,annual,2011,naphtha combustion consumption by to the public,55.737903059299995,TJ,CO2,73300.0,kg/TJ,4085588.29424669,kg +9bc5ea76-38f1-3ab4-b4d0-dfaa681e4fcf,SESCO,II.1.1,Misiones,AR-N,annual,2011,naphtha combustion consumption by to the public,55.737903059299995,TJ,CH4,3.0,kg/TJ,167.2137091779,kg +896e44bc-71b3-3631-96d2-2566504c1031,SESCO,II.1.1,Misiones,AR-N,annual,2011,naphtha combustion consumption by to the public,55.737903059299995,TJ,N2O,0.6,kg/TJ,33.442741835579994,kg +d5cc651c-e0ac-3bdc-9c1e-29206c6ddb6f,SESCO,II.1.1,Neuquén,AR-Q,annual,2011,naphtha combustion consumption by to the public,576.2103920342,TJ,CO2,73300.0,kg/TJ,42236221.736106865,kg +dfd99880-e932-384e-8e4a-f10c78eba56d,SESCO,II.1.1,Neuquén,AR-Q,annual,2011,naphtha combustion consumption by to the public,576.2103920342,TJ,CH4,3.0,kg/TJ,1728.6311761026,kg +fbdf0f87-1f5e-38e6-8f61-80f8b7037ffe,SESCO,II.1.1,Neuquén,AR-Q,annual,2011,naphtha combustion consumption by to the public,576.2103920342,TJ,N2O,0.6,kg/TJ,345.72623522052,kg +5306936e-9403-32ea-aada-bdf885fbd5ca,SESCO,II.1.1,Rio Negro,AR-R,annual,2011,naphtha combustion consumption by to the public,1130.1300083534998,TJ,CO2,73300.0,kg/TJ,82838529.61231153,kg +c27add13-e7f9-3cba-a328-477976e690a6,SESCO,II.1.1,Rio Negro,AR-R,annual,2011,naphtha combustion consumption by to the public,1130.1300083534998,TJ,CH4,3.0,kg/TJ,3390.3900250604993,kg +7c41024e-d2c4-36ca-aaf0-e962e81c5d15,SESCO,II.1.1,Rio Negro,AR-R,annual,2011,naphtha combustion consumption by to the public,1130.1300083534998,TJ,N2O,0.6,kg/TJ,678.0780050120999,kg +9720f3c9-b3e7-3d8d-90c9-21afd86078dd,SESCO,II.1.1,Salta,AR-A,annual,2011,naphtha combustion consumption by to the public,10.715315849699998,TJ,CO2,73300.0,kg/TJ,785432.6517830099,kg +a96d71e1-d53e-312d-bb93-12699260131a,SESCO,II.1.1,Salta,AR-A,annual,2011,naphtha combustion consumption by to the public,10.715315849699998,TJ,CH4,3.0,kg/TJ,32.14594754909999,kg +34751e8d-5541-3b2c-981f-3265fb302541,SESCO,II.1.1,Salta,AR-A,annual,2011,naphtha combustion consumption by to the public,10.715315849699998,TJ,N2O,0.6,kg/TJ,6.429189509819999,kg +1399d666-5a58-3cc2-b9dd-dfec64690032,SESCO,II.1.1,San Juan,AR-J,annual,2011,naphtha combustion consumption by to the public,80.52163570219999,TJ,CO2,73300.0,kg/TJ,5902235.896971259,kg +7deaa9e6-8a64-317c-bd61-c2779a314153,SESCO,II.1.1,San Juan,AR-J,annual,2011,naphtha combustion consumption by to the public,80.52163570219999,TJ,CH4,3.0,kg/TJ,241.56490710659995,kg +b2d8d57d-484d-35df-9963-34a2edacbca5,SESCO,II.1.1,San Juan,AR-J,annual,2011,naphtha combustion consumption by to the public,80.52163570219999,TJ,N2O,0.6,kg/TJ,48.31298142131999,kg +aae15c89-6b07-3c5c-825c-3240cd50491c,SESCO,II.1.1,San Luis,AR-D,annual,2011,naphtha combustion consumption by to the public,46.447575358799995,TJ,CO2,73300.0,kg/TJ,3404607.2738000397,kg +c2a3ea25-28df-3e43-93b7-eed9e859e571,SESCO,II.1.1,San Luis,AR-D,annual,2011,naphtha combustion consumption by to the public,46.447575358799995,TJ,CH4,3.0,kg/TJ,139.34272607639997,kg +2b4772e0-80d2-374e-9557-3537249e7726,SESCO,II.1.1,San Luis,AR-D,annual,2011,naphtha combustion consumption by to the public,46.447575358799995,TJ,N2O,0.6,kg/TJ,27.868545215279998,kg +4c494061-ffce-3435-b0ef-adac52e0596c,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2011,naphtha combustion consumption by to the public,1024.1423005043998,TJ,CO2,73300.0,kg/TJ,75069630.62697251,kg +ffd297cc-bb1a-3eb3-9d89-bfb111e1475a,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2011,naphtha combustion consumption by to the public,1024.1423005043998,TJ,CH4,3.0,kg/TJ,3072.4269015131995,kg +b517a534-ca7b-3243-b6ed-cafe67525b62,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2011,naphtha combustion consumption by to the public,1024.1423005043998,TJ,N2O,0.6,kg/TJ,614.4853803026399,kg +7d3928d1-5067-3fd4-8cac-c4f7b7aef85c,SESCO,II.1.1,Santa Fe,AR-S,annual,2011,naphtha combustion consumption by to the public,1038.2476213879,TJ,CO2,73300.0,kg/TJ,76103550.64773306,kg +0f4869ff-dca5-3feb-8aef-a0694025c28e,SESCO,II.1.1,Santa Fe,AR-S,annual,2011,naphtha combustion consumption by to the public,1038.2476213879,TJ,CH4,3.0,kg/TJ,3114.7428641637,kg +512d9272-8c20-36be-8e94-31e285963528,SESCO,II.1.1,Santa Fe,AR-S,annual,2011,naphtha combustion consumption by to the public,1038.2476213879,TJ,N2O,0.6,kg/TJ,622.94857283274,kg +51e02f0f-9f91-39e7-b72a-44f65211491c,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2011,naphtha combustion consumption by to the public,60.0549092913,TJ,CO2,73300.0,kg/TJ,4402024.85105229,kg +be82aa70-9a0d-36d3-9d48-80395947f1e7,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2011,naphtha combustion consumption by to the public,60.0549092913,TJ,CH4,3.0,kg/TJ,180.1647278739,kg +78beb0e6-f0e9-30a3-a15c-34c3d0a8d47e,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2011,naphtha combustion consumption by to the public,60.0549092913,TJ,N2O,0.6,kg/TJ,36.03294557478,kg +90c0039e-9eeb-3ac5-9fe3-1a7b575c1e85,SESCO,II.1.1,Tucuman,AR-T,annual,2011,naphtha combustion consumption by to the public,87.24610494599999,TJ,CO2,73300.0,kg/TJ,6395139.492541799,kg +9c09eafe-8b25-3cf9-8e45-483ee4d83c66,SESCO,II.1.1,Tucuman,AR-T,annual,2011,naphtha combustion consumption by to the public,87.24610494599999,TJ,CH4,3.0,kg/TJ,261.73831483799995,kg +f7e863d8-ef5a-396e-ac93-e05f0f64e3df,SESCO,II.1.1,Tucuman,AR-T,annual,2011,naphtha combustion consumption by to the public,87.24610494599999,TJ,N2O,0.6,kg/TJ,52.347662967599994,kg +790bca9b-44f0-3743-82b8-0cda82bbd08b,SESCO,II.1.1,Buenos Aires,AR-B,annual,2011,naphtha combustion consumption by to the public,1434.0538287074999,TJ,CO2,73300.0,kg/TJ,105116145.64425974,kg +c230ef0e-340c-3bd0-ba88-ed8a8ef9723c,SESCO,II.1.1,Buenos Aires,AR-B,annual,2011,naphtha combustion consumption by to the public,1434.0538287074999,TJ,CH4,3.0,kg/TJ,4302.1614861225,kg +80e2f313-5d29-3845-91a5-8d1e8b58c1a9,SESCO,II.1.1,Buenos Aires,AR-B,annual,2011,naphtha combustion consumption by to the public,1434.0538287074999,TJ,N2O,0.6,kg/TJ,860.4322972244998,kg +39d8ef34-8e49-3c5c-bdd5-8f37ec8e6763,SESCO,II.1.1,Capital Federal,AR-C,annual,2011,naphtha combustion consumption by to the public,249.45408824489996,TJ,CO2,73300.0,kg/TJ,18284984.668351166,kg +380ab357-4aad-318b-be5f-f6887612a6b3,SESCO,II.1.1,Capital Federal,AR-C,annual,2011,naphtha combustion consumption by to the public,249.45408824489996,TJ,CH4,3.0,kg/TJ,748.3622647346999,kg +5a4d77e0-5539-3f46-834d-97a4b7755391,SESCO,II.1.1,Capital Federal,AR-C,annual,2011,naphtha combustion consumption by to the public,249.45408824489996,TJ,N2O,0.6,kg/TJ,149.67245294693998,kg +8bf8f9b7-0881-3faf-aa8f-e6ef2d5291cf,SESCO,II.1.1,Catamarca,AR-K,annual,2011,naphtha combustion consumption by to the public,6.7756111268999994,TJ,CO2,73300.0,kg/TJ,496652.29560176993,kg +978cd108-6d49-3faa-a68a-1143c4823a0d,SESCO,II.1.1,Catamarca,AR-K,annual,2011,naphtha combustion consumption by to the public,6.7756111268999994,TJ,CH4,3.0,kg/TJ,20.3268333807,kg +ae226753-8c8c-3076-9aed-47b3983c2ebb,SESCO,II.1.1,Catamarca,AR-K,annual,2011,naphtha combustion consumption by to the public,6.7756111268999994,TJ,N2O,0.6,kg/TJ,4.065366676139999,kg +c3653177-9d43-318f-af73-4c23868d8b2d,SESCO,II.1.1,Chaco,AR-H,annual,2011,naphtha combustion consumption by to the public,9.1880103546,TJ,CO2,73300.0,kg/TJ,673481.1589921799,kg +8ced0356-3b06-377c-ae36-a2fb160bce32,SESCO,II.1.1,Chaco,AR-H,annual,2011,naphtha combustion consumption by to the public,9.1880103546,TJ,CH4,3.0,kg/TJ,27.564031063799998,kg +78faa18d-b1f6-3ec8-90a2-a77f00a5594d,SESCO,II.1.1,Chaco,AR-H,annual,2011,naphtha combustion consumption by to the public,9.1880103546,TJ,N2O,0.6,kg/TJ,5.512806212759999,kg +d89fb5fb-8a37-3d00-9c68-f83fa3e7dcfe,SESCO,II.1.1,Chubut,AR-U,annual,2011,naphtha combustion consumption by to the public,238.78900762639998,TJ,CO2,73300.0,kg/TJ,17503234.259015117,kg +f89888aa-3d8f-35c9-92ef-322ebb1971dc,SESCO,II.1.1,Chubut,AR-U,annual,2011,naphtha combustion consumption by to the public,238.78900762639998,TJ,CH4,3.0,kg/TJ,716.3670228791999,kg +a90ddd57-1437-3d0c-b0b6-285f0c68bd98,SESCO,II.1.1,Chubut,AR-U,annual,2011,naphtha combustion consumption by to the public,238.78900762639998,TJ,N2O,0.6,kg/TJ,143.27340457583998,kg +5136e1cf-b518-35ac-b4b8-6c7e89141940,SESCO,II.1.1,Corrientes,AR-W,annual,2011,naphtha combustion consumption by to the public,21.9290887662,TJ,CO2,73300.0,kg/TJ,1607402.20656246,kg +ca467daf-db23-3c8a-a4af-7e79d0472d84,SESCO,II.1.1,Corrientes,AR-W,annual,2011,naphtha combustion consumption by to the public,21.9290887662,TJ,CH4,3.0,kg/TJ,65.7872662986,kg +c0c99196-d3d7-32a0-a3ab-5b3332580476,SESCO,II.1.1,Corrientes,AR-W,annual,2011,naphtha combustion consumption by to the public,21.9290887662,TJ,N2O,0.6,kg/TJ,13.157453259719999,kg +cf23f766-ef4d-32d7-ae50-1e51aa8980d4,SESCO,II.1.1,Córdoba,AR-X,annual,2011,naphtha combustion consumption by to the public,200.84643152419997,TJ,CO2,73300.0,kg/TJ,14722043.430723857,kg +92bc24ac-a0f3-3ac4-a372-00884bca1dc2,SESCO,II.1.1,Córdoba,AR-X,annual,2011,naphtha combustion consumption by to the public,200.84643152419997,TJ,CH4,3.0,kg/TJ,602.5392945725999,kg +0842d3f1-d819-3ac8-9649-3cfe0ec1949a,SESCO,II.1.1,Córdoba,AR-X,annual,2011,naphtha combustion consumption by to the public,200.84643152419997,TJ,N2O,0.6,kg/TJ,120.50785891451997,kg +539b987b-844f-377e-8614-396eeaea869c,SESCO,II.1.1,Entre Rios,AR-E,annual,2011,naphtha combustion consumption by to the public,51.13264868249999,TJ,CO2,73300.0,kg/TJ,3748023.1484272494,kg +8bce0156-a1c2-3332-b2d9-a6f2da658d74,SESCO,II.1.1,Entre Rios,AR-E,annual,2011,naphtha combustion consumption by to the public,51.13264868249999,TJ,CH4,3.0,kg/TJ,153.39794604749997,kg +26d17ca5-44b7-3153-8d2d-c950d0d57938,SESCO,II.1.1,Entre Rios,AR-E,annual,2011,naphtha combustion consumption by to the public,51.13264868249999,TJ,N2O,0.6,kg/TJ,30.679589209499994,kg +b769d6b2-9a27-3da2-92cf-c5842f350aa7,SESCO,II.1.1,Jujuy,AR-Y,annual,2011,naphtha combustion consumption by to the public,1.3615896755999999,TJ,CO2,73300.0,kg/TJ,99804.52322147999,kg +232a1260-7967-32f9-a6fd-796776011bfa,SESCO,II.1.1,Jujuy,AR-Y,annual,2011,naphtha combustion consumption by to the public,1.3615896755999999,TJ,CH4,3.0,kg/TJ,4.0847690268,kg +602d6cc8-da2d-3e74-a993-5400fcfd58d9,SESCO,II.1.1,Jujuy,AR-Y,annual,2011,naphtha combustion consumption by to the public,1.3615896755999999,TJ,N2O,0.6,kg/TJ,0.81695380536,kg +4d97e88e-a9f7-3cde-a1ef-cc5a0e25a058,SESCO,II.1.1,La Pampa,AR-L,annual,2011,naphtha combustion consumption by to the public,51.631307227499995,TJ,CO2,73300.0,kg/TJ,3784574.8197757495,kg +0942a8ad-51c0-354e-b1a0-21149e764625,SESCO,II.1.1,La Pampa,AR-L,annual,2011,naphtha combustion consumption by to the public,51.631307227499995,TJ,CH4,3.0,kg/TJ,154.89392168249998,kg +a3780714-f10e-3987-9a73-78fb7eff039a,SESCO,II.1.1,La Pampa,AR-L,annual,2011,naphtha combustion consumption by to the public,51.631307227499995,TJ,N2O,0.6,kg/TJ,30.978784336499995,kg +63eb887e-3f80-3cae-b09e-6b6edc0f3e5f,SESCO,II.1.1,La Rioja,AR-F,annual,2011,naphtha combustion consumption by to the public,3.1875530224999995,TJ,CO2,73300.0,kg/TJ,233647.63654924996,kg +419d582c-614f-357b-a73e-6d3415037fbb,SESCO,II.1.1,La Rioja,AR-F,annual,2011,naphtha combustion consumption by to the public,3.1875530224999995,TJ,CH4,3.0,kg/TJ,9.562659067499998,kg +98f68ef5-d114-3f02-9aed-f97795a0deef,SESCO,II.1.1,La Rioja,AR-F,annual,2011,naphtha combustion consumption by to the public,3.1875530224999995,TJ,N2O,0.6,kg/TJ,1.9125318134999996,kg +b98367ba-116f-3145-83aa-6f7ddc5ef523,SESCO,II.1.1,Mendoza,AR-M,annual,2011,naphtha combustion consumption by to the public,18.4836772274,TJ,CO2,73300.0,kg/TJ,1354853.54076842,kg +25af291a-cd3b-3128-beda-68b2657a16e1,SESCO,II.1.1,Mendoza,AR-M,annual,2011,naphtha combustion consumption by to the public,18.4836772274,TJ,CH4,3.0,kg/TJ,55.451031682200004,kg +274c274b-da17-36fb-b6e3-03e1b4c53e16,SESCO,II.1.1,Mendoza,AR-M,annual,2011,naphtha combustion consumption by to the public,18.4836772274,TJ,N2O,0.6,kg/TJ,11.09020633644,kg +865e0c38-8513-38b9-ab0d-54acdb89ef9e,SESCO,II.1.1,Misiones,AR-N,annual,2011,naphtha combustion consumption by to the public,7.459193079799999,TJ,CO2,73300.0,kg/TJ,546758.8527493399,kg +999e9374-75b4-399b-b82e-64c49e7a8fe0,SESCO,II.1.1,Misiones,AR-N,annual,2011,naphtha combustion consumption by to the public,7.459193079799999,TJ,CH4,3.0,kg/TJ,22.377579239399996,kg +23e8639b-a893-3213-ac06-bac639c4db57,SESCO,II.1.1,Misiones,AR-N,annual,2011,naphtha combustion consumption by to the public,7.459193079799999,TJ,N2O,0.6,kg/TJ,4.475515847879999,kg +7280b7f7-d51b-3f08-a7c8-6e32fb41d6d6,SESCO,II.1.1,Neuquén,AR-Q,annual,2011,naphtha combustion consumption by to the public,141.3975014991,TJ,CO2,73300.0,kg/TJ,10364436.85988403,kg +45f6034d-bd98-36d2-be47-c05f18fb893e,SESCO,II.1.1,Neuquén,AR-Q,annual,2011,naphtha combustion consumption by to the public,141.3975014991,TJ,CH4,3.0,kg/TJ,424.1925044973,kg +948c8b25-6898-3816-b7e0-5d431ac34fba,SESCO,II.1.1,Neuquén,AR-Q,annual,2011,naphtha combustion consumption by to the public,141.3975014991,TJ,N2O,0.6,kg/TJ,84.83850089946,kg +a4e6eb6f-d4b3-3ff2-b72b-3df09bec929c,SESCO,II.1.1,Rio Negro,AR-R,annual,2011,naphtha combustion consumption by to the public,166.7518875638,TJ,CO2,73300.0,kg/TJ,12222913.358426541,kg +3d593515-3cc2-3314-8064-27ba5637f349,SESCO,II.1.1,Rio Negro,AR-R,annual,2011,naphtha combustion consumption by to the public,166.7518875638,TJ,CH4,3.0,kg/TJ,500.25566269140006,kg +8ce610c5-45a3-31b4-916e-f2fea9b96871,SESCO,II.1.1,Rio Negro,AR-R,annual,2011,naphtha combustion consumption by to the public,166.7518875638,TJ,N2O,0.6,kg/TJ,100.05113253828,kg +b7bb9db1-1a16-3057-89e1-1e9341cb34e8,SESCO,II.1.1,Salta,AR-A,annual,2011,naphtha combustion consumption by to the public,1.3915763477,TJ,CO2,73300.0,kg/TJ,102002.54628641,kg +1e540d9c-3e62-3af5-8721-65759ad0a481,SESCO,II.1.1,Salta,AR-A,annual,2011,naphtha combustion consumption by to the public,1.3915763477,TJ,CH4,3.0,kg/TJ,4.1747290431,kg +1d1dce97-2b5f-3512-a920-146e28b22e0a,SESCO,II.1.1,Salta,AR-A,annual,2011,naphtha combustion consumption by to the public,1.3915763477,TJ,N2O,0.6,kg/TJ,0.83494580862,kg +f10598f2-30bf-30b5-ab22-849a370c5e19,SESCO,II.1.1,San Juan,AR-J,annual,2011,naphtha combustion consumption by to the public,13.535137577499997,TJ,CO2,73300.0,kg/TJ,992125.5844307498,kg +ef104539-a906-39cc-944e-df534dc9d199,SESCO,II.1.1,San Juan,AR-J,annual,2011,naphtha combustion consumption by to the public,13.535137577499997,TJ,CH4,3.0,kg/TJ,40.60541273249999,kg +afb2ca53-65c9-38ee-a159-fd86e12581ab,SESCO,II.1.1,San Juan,AR-J,annual,2011,naphtha combustion consumption by to the public,13.535137577499997,TJ,N2O,0.6,kg/TJ,8.121082546499999,kg +46a37dd2-8476-3070-9a79-6ed0546a29c4,SESCO,II.1.1,San Luis,AR-D,annual,2011,naphtha combustion consumption by to the public,8.494320912,TJ,CO2,73300.0,kg/TJ,622633.7228495999,kg +112ac9c4-dac3-3f2f-ad84-fb4e555aa93c,SESCO,II.1.1,San Luis,AR-D,annual,2011,naphtha combustion consumption by to the public,8.494320912,TJ,CH4,3.0,kg/TJ,25.482962735999998,kg +02cc3911-8418-3c7d-9e92-bf10dfd3209d,SESCO,II.1.1,San Luis,AR-D,annual,2011,naphtha combustion consumption by to the public,8.494320912,TJ,N2O,0.6,kg/TJ,5.096592547199999,kg +dc0a3767-9a21-3845-ba30-0e7168a0b50c,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2011,naphtha combustion consumption by to the public,185.33734486189996,TJ,CO2,73300.0,kg/TJ,13585227.378377268,kg +e8117515-975e-3015-95ef-9c8519b5e85f,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2011,naphtha combustion consumption by to the public,185.33734486189996,TJ,CH4,3.0,kg/TJ,556.0120345856999,kg +b1df03af-b88b-3c4e-a346-619ab721d3c8,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2011,naphtha combustion consumption by to the public,185.33734486189996,TJ,N2O,0.6,kg/TJ,111.20240691713998,kg +d4d4e95f-91ec-3f25-82aa-7263c8c05433,SESCO,II.1.1,Santa Fe,AR-S,annual,2011,naphtha combustion consumption by to the public,297.82614979039994,TJ,CO2,73300.0,kg/TJ,21830656.779636316,kg +0a58f007-103b-3b03-92aa-05dbd1637fc3,SESCO,II.1.1,Santa Fe,AR-S,annual,2011,naphtha combustion consumption by to the public,297.82614979039994,TJ,CH4,3.0,kg/TJ,893.4784493711998,kg +e26c6270-bca7-370d-9da6-c7422ee3bb5f,SESCO,II.1.1,Santa Fe,AR-S,annual,2011,naphtha combustion consumption by to the public,297.82614979039994,TJ,N2O,0.6,kg/TJ,178.69568987423995,kg +3b9bd056-d147-3ceb-a477-54751be35c0d,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2011,naphtha combustion consumption by to the public,7.0343762950999995,TJ,CO2,73300.0,kg/TJ,515619.78243082995,kg +e1c06aab-0e40-30ef-8117-f89a5d4848ee,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2011,naphtha combustion consumption by to the public,7.0343762950999995,TJ,CH4,3.0,kg/TJ,21.1031288853,kg +4583fcdf-2129-368e-bb39-685030994fa4,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2011,naphtha combustion consumption by to the public,7.0343762950999995,TJ,N2O,0.6,kg/TJ,4.2206257770599995,kg +5311cf36-1dae-3aa5-8e0d-dc5a641db5e5,SESCO,II.1.1,Tucuman,AR-T,annual,2011,naphtha combustion consumption by to the public,9.4265941231,TJ,CO2,73300.0,kg/TJ,690969.3492232299,kg +249b5c83-96f7-3199-9fac-9646ffe4b871,SESCO,II.1.1,Tucuman,AR-T,annual,2011,naphtha combustion consumption by to the public,9.4265941231,TJ,CH4,3.0,kg/TJ,28.279782369299998,kg +2c983abe-e91e-3b13-b008-995945665e12,SESCO,II.1.1,Tucuman,AR-T,annual,2011,naphtha combustion consumption by to the public,9.4265941231,TJ,N2O,0.6,kg/TJ,5.655956473859999,kg +12be8481-6678-34fa-956c-4046ab428237,SESCO,I.3.1,La Pampa,AR-L,annual,2011,naphtha combustion consumption by petrochemical industries,0.5385176488999999,TJ,CO2,73300.0,kg/TJ,39473.34366436999,kg +d4a4a738-6d6d-394d-a766-b05bab2145a2,SESCO,I.3.1,La Pampa,AR-L,annual,2011,naphtha combustion consumption by petrochemical industries,0.5385176488999999,TJ,CH4,3.0,kg/TJ,1.6155529466999996,kg +d468dc47-b505-3538-96ae-14184c9761bb,SESCO,I.3.1,La Pampa,AR-L,annual,2011,naphtha combustion consumption by petrochemical industries,0.5385176488999999,TJ,N2O,0.6,kg/TJ,0.3231105893399999,kg +8045f628-dfa0-339f-99e8-52666a29ca67,SESCO,I.3.1,La Pampa,AR-L,annual,2011,naphtha combustion consumption by petrochemical industries,0.6710903045,TJ,CO2,73300.0,kg/TJ,49190.91931985,kg +94232fe2-7756-3d63-a2b0-3cbd5d6ee6b3,SESCO,I.3.1,La Pampa,AR-L,annual,2011,naphtha combustion consumption by petrochemical industries,0.6710903045,TJ,CH4,3.0,kg/TJ,2.0132709135,kg +cb3667e8-0578-3786-acdf-755519580478,SESCO,I.3.1,La Pampa,AR-L,annual,2011,naphtha combustion consumption by petrochemical industries,0.6710903045,TJ,N2O,0.6,kg/TJ,0.4026541827,kg +c7bcd63f-760a-3f98-9191-bc8bc2d68e36,SESCO,II.1.1,Buenos Aires,AR-B,annual,2011,naphtha combustion consumption by to the public,111.83047490999999,TJ,CO2,73300.0,kg/TJ,8197173.810903,kg +edae664d-ed8c-3b02-81a8-d7314e739530,SESCO,II.1.1,Buenos Aires,AR-B,annual,2011,naphtha combustion consumption by to the public,111.83047490999999,TJ,CH4,3.0,kg/TJ,335.49142472999995,kg +f47be2f3-cb79-3dde-8376-7b9a3b11dbb9,SESCO,II.1.1,Buenos Aires,AR-B,annual,2011,naphtha combustion consumption by to the public,111.83047490999999,TJ,N2O,0.6,kg/TJ,67.09828494599999,kg +75ddaf17-fa3b-38e8-bca1-20e7eac7b799,SESCO,II.1.1,Capital Federal,AR-C,annual,2011,naphtha combustion consumption by to the public,0.0671594,TJ,CO2,73300.0,kg/TJ,4922.784019999999,kg +0cde5c81-0918-3d73-93fa-4234b06c3d85,SESCO,II.1.1,Capital Federal,AR-C,annual,2011,naphtha combustion consumption by to the public,0.0671594,TJ,CH4,3.0,kg/TJ,0.2014782,kg +50073524-4243-3257-acbd-801e8187fa38,SESCO,II.1.1,Capital Federal,AR-C,annual,2011,naphtha combustion consumption by to the public,0.0671594,TJ,N2O,0.6,kg/TJ,0.040295639999999994,kg +2a605ac3-2889-3a39-bb71-95d8d61fe460,SESCO,II.1.1,Chaco,AR-H,annual,2011,naphtha combustion consumption by to the public,0.5372752,TJ,CO2,73300.0,kg/TJ,39382.27215999999,kg +c2b1c7cb-880e-33a9-ac12-8277308079ae,SESCO,II.1.1,Chaco,AR-H,annual,2011,naphtha combustion consumption by to the public,0.5372752,TJ,CH4,3.0,kg/TJ,1.6118256,kg +d2faac08-e588-3f3d-ae96-7af971ed6bbe,SESCO,II.1.1,Chaco,AR-H,annual,2011,naphtha combustion consumption by to the public,0.5372752,TJ,N2O,0.6,kg/TJ,0.32236511999999995,kg +66329981-6a9b-35d4-9c51-3fcb4f3d16a0,SESCO,II.1.1,Corrientes,AR-W,annual,2011,naphtha combustion consumption by to the public,1.1081301000000001,TJ,CO2,73300.0,kg/TJ,81225.93633000001,kg +b231c920-b1cb-38e8-ad17-9e750b37a87e,SESCO,II.1.1,Corrientes,AR-W,annual,2011,naphtha combustion consumption by to the public,1.1081301000000001,TJ,CH4,3.0,kg/TJ,3.3243903,kg +ddec6631-9a20-3828-a412-a0f260bec315,SESCO,II.1.1,Corrientes,AR-W,annual,2011,naphtha combustion consumption by to the public,1.1081301000000001,TJ,N2O,0.6,kg/TJ,0.66487806,kg +bc1a0201-db75-3cba-bc67-992f37179cbb,SESCO,II.1.1,Córdoba,AR-X,annual,2011,naphtha combustion consumption by to the public,44.6274213,TJ,CO2,73300.0,kg/TJ,3271189.98129,kg +8fb58569-c088-3160-88b9-c0b55071bad9,SESCO,II.1.1,Córdoba,AR-X,annual,2011,naphtha combustion consumption by to the public,44.6274213,TJ,CH4,3.0,kg/TJ,133.8822639,kg +b0ce1e9a-4b92-3105-b92f-b16ba52ea815,SESCO,II.1.1,Córdoba,AR-X,annual,2011,naphtha combustion consumption by to the public,44.6274213,TJ,N2O,0.6,kg/TJ,26.77645278,kg +b47a819e-3a11-3e6e-908d-67ad53902d00,SESCO,II.1.1,Entre Rios,AR-E,annual,2011,naphtha combustion consumption by to the public,10.376127299999998,TJ,CO2,73300.0,kg/TJ,760570.1310899999,kg +67797e5f-875b-39a9-997c-c64b18624675,SESCO,II.1.1,Entre Rios,AR-E,annual,2011,naphtha combustion consumption by to the public,10.376127299999998,TJ,CH4,3.0,kg/TJ,31.128381899999994,kg +87ffa79b-9c69-3c6f-a774-c9f430597bbd,SESCO,II.1.1,Entre Rios,AR-E,annual,2011,naphtha combustion consumption by to the public,10.376127299999998,TJ,N2O,0.6,kg/TJ,6.225676379999999,kg +cf9cab22-8b45-3668-8d2d-675014249f7f,SESCO,II.1.1,Santa Fe,AR-S,annual,2011,naphtha combustion consumption by to the public,30.053831499999998,TJ,CO2,73300.0,kg/TJ,2202945.84895,kg +06380af0-cfe1-35ae-9305-9de5d7f3e2a6,SESCO,II.1.1,Santa Fe,AR-S,annual,2011,naphtha combustion consumption by to the public,30.053831499999998,TJ,CH4,3.0,kg/TJ,90.16149449999999,kg +389a68fd-3752-343a-af9d-3c03ec93d54f,SESCO,II.1.1,Santa Fe,AR-S,annual,2011,naphtha combustion consumption by to the public,30.053831499999998,TJ,N2O,0.6,kg/TJ,18.032298899999997,kg +c7112dc9-5dd7-3dcc-89dc-e16dd3bc0971,SESCO,II.1.1,Buenos Aires,AR-B,annual,2011,naphtha combustion consumption by to the public,1204.96052292,TJ,CO2,73300.0,kg/TJ,88323606.330036,kg +7a00d48b-2876-3c47-855c-8e44c59b36b4,SESCO,II.1.1,Buenos Aires,AR-B,annual,2011,naphtha combustion consumption by to the public,1204.96052292,TJ,CH4,3.0,kg/TJ,3614.88156876,kg +c2dad380-1252-31f3-a4b6-5918c77eeb96,SESCO,II.1.1,Buenos Aires,AR-B,annual,2011,naphtha combustion consumption by to the public,1204.96052292,TJ,N2O,0.6,kg/TJ,722.9763137519999,kg +29fb1381-6e0b-301d-a296-02835888609c,SESCO,II.1.1,Capital Federal,AR-C,annual,2011,naphtha combustion consumption by to the public,38.14653919999999,TJ,CO2,73300.0,kg/TJ,2796141.3233599993,kg +e7297827-b345-3fdd-929c-7acedafa735b,SESCO,II.1.1,Capital Federal,AR-C,annual,2011,naphtha combustion consumption by to the public,38.14653919999999,TJ,CH4,3.0,kg/TJ,114.43961759999998,kg +4799745e-9a2b-3fa6-903a-906b656b584a,SESCO,II.1.1,Capital Federal,AR-C,annual,2011,naphtha combustion consumption by to the public,38.14653919999999,TJ,N2O,0.6,kg/TJ,22.887923519999994,kg +8b58942b-429d-371b-824e-082e0e93a7be,SESCO,II.1.1,Chaco,AR-H,annual,2011,naphtha combustion consumption by to the public,5.137694099999999,TJ,CO2,73300.0,kg/TJ,376592.9775299999,kg +2edeb93d-f6da-3106-a799-baa9d2335dc5,SESCO,II.1.1,Chaco,AR-H,annual,2011,naphtha combustion consumption by to the public,5.137694099999999,TJ,CH4,3.0,kg/TJ,15.413082299999997,kg +11ae919e-6d9e-3278-a954-4b446aae419f,SESCO,II.1.1,Chaco,AR-H,annual,2011,naphtha combustion consumption by to the public,5.137694099999999,TJ,N2O,0.6,kg/TJ,3.0826164599999992,kg +a126c80d-70f2-39b5-aa9a-f6e140f8dc5c,SESCO,II.1.1,Corrientes,AR-W,annual,2011,naphtha combustion consumption by to the public,3.022173,TJ,CO2,73300.0,kg/TJ,221525.2809,kg +f8b8befb-fd87-39cd-bb0a-f382ad1bb344,SESCO,II.1.1,Corrientes,AR-W,annual,2011,naphtha combustion consumption by to the public,3.022173,TJ,CH4,3.0,kg/TJ,9.066519,kg +e08b859d-6964-391b-b6d9-aaac3342ef24,SESCO,II.1.1,Corrientes,AR-W,annual,2011,naphtha combustion consumption by to the public,3.022173,TJ,N2O,0.6,kg/TJ,1.8133038,kg +ca487731-2958-353c-a416-6818d33a64d5,SESCO,II.1.1,Córdoba,AR-X,annual,2011,naphtha combustion consumption by to the public,425.62269749999996,TJ,CO2,73300.0,kg/TJ,31198143.726749998,kg +a8cc1791-576b-3145-b17a-6d965eb70bf3,SESCO,II.1.1,Córdoba,AR-X,annual,2011,naphtha combustion consumption by to the public,425.62269749999996,TJ,CH4,3.0,kg/TJ,1276.8680924999999,kg +bbcb94c4-f220-3d75-b97f-4bd3c6a00096,SESCO,II.1.1,Córdoba,AR-X,annual,2011,naphtha combustion consumption by to the public,425.62269749999996,TJ,N2O,0.6,kg/TJ,255.37361849999996,kg +ca85601c-9fb9-3c1c-9d9b-5fdfc0221145,SESCO,II.1.1,Entre Rios,AR-E,annual,2011,naphtha combustion consumption by to the public,150.19192418999998,TJ,CO2,73300.0,kg/TJ,11009068.043126998,kg +f5534fd0-9b20-3b65-b5e1-fa077e2a9498,SESCO,II.1.1,Entre Rios,AR-E,annual,2011,naphtha combustion consumption by to the public,150.19192418999998,TJ,CH4,3.0,kg/TJ,450.5757725699999,kg +db38797c-5c53-3139-87ea-80f71666ab66,SESCO,II.1.1,Entre Rios,AR-E,annual,2011,naphtha combustion consumption by to the public,150.19192418999998,TJ,N2O,0.6,kg/TJ,90.11515451399998,kg +93626840-a479-30e7-b739-04a38d6e88dd,SESCO,II.1.1,Santa Fe,AR-S,annual,2011,naphtha combustion consumption by to the public,193.3519126,TJ,CO2,73300.0,kg/TJ,14172695.19358,kg +6c646f37-d1ad-3fb0-8e22-290c89f47b08,SESCO,II.1.1,Santa Fe,AR-S,annual,2011,naphtha combustion consumption by to the public,193.3519126,TJ,CH4,3.0,kg/TJ,580.0557378,kg +548cadfe-ded2-39a5-8ee6-dc5b7ffaca0a,SESCO,II.1.1,Santa Fe,AR-S,annual,2011,naphtha combustion consumption by to the public,193.3519126,TJ,N2O,0.6,kg/TJ,116.01114755999998,kg +456f28ec-bc05-3c73-bcd6-1ef1199dc1f2,SESCO,II.1.1,Buenos Aires,AR-B,annual,2011,naphtha combustion consumption by to the public,143.34502336,TJ,CO2,73300.0,kg/TJ,10507190.212288,kg +6bce4620-11c1-38d5-9c32-27a21a93585f,SESCO,II.1.1,Buenos Aires,AR-B,annual,2011,naphtha combustion consumption by to the public,143.34502336,TJ,CH4,3.0,kg/TJ,430.03507007999997,kg +7e2f3c9d-874d-3666-8452-3608d81c7854,SESCO,II.1.1,Buenos Aires,AR-B,annual,2011,naphtha combustion consumption by to the public,143.34502336,TJ,N2O,0.6,kg/TJ,86.007014016,kg +217d515c-a023-38a0-8571-d2c2cd3caa43,SESCO,II.1.1,Capital Federal,AR-C,annual,2011,naphtha combustion consumption by to the public,2.0483617,TJ,CO2,73300.0,kg/TJ,150144.91261,kg +bfbb4b84-00d8-3df5-9cc8-93cb9e2d0806,SESCO,II.1.1,Capital Federal,AR-C,annual,2011,naphtha combustion consumption by to the public,2.0483617,TJ,CH4,3.0,kg/TJ,6.1450851,kg +94b08186-f169-3e51-8bf7-1cace4754abb,SESCO,II.1.1,Capital Federal,AR-C,annual,2011,naphtha combustion consumption by to the public,2.0483617,TJ,N2O,0.6,kg/TJ,1.22901702,kg +e194769d-7c58-34bf-a884-414e9a2b8d38,SESCO,II.1.1,Chaco,AR-H,annual,2011,naphtha combustion consumption by to the public,0.1343188,TJ,CO2,73300.0,kg/TJ,9845.568039999998,kg +c3afc7fc-e031-3556-9b3d-bc6402c315f5,SESCO,II.1.1,Chaco,AR-H,annual,2011,naphtha combustion consumption by to the public,0.1343188,TJ,CH4,3.0,kg/TJ,0.4029564,kg +0e595fe4-e0bf-32b1-84ce-1518565a019c,SESCO,II.1.1,Chaco,AR-H,annual,2011,naphtha combustion consumption by to the public,0.1343188,TJ,N2O,0.6,kg/TJ,0.08059127999999999,kg +b5a0a4e4-a6c8-3fb6-b002-f521d71d4309,SESCO,II.1.1,Corrientes,AR-W,annual,2011,naphtha combustion consumption by to the public,0.2686376,TJ,CO2,73300.0,kg/TJ,19691.136079999997,kg +8ec978ee-fb0f-3188-a5a9-13729aed4c0d,SESCO,II.1.1,Corrientes,AR-W,annual,2011,naphtha combustion consumption by to the public,0.2686376,TJ,CH4,3.0,kg/TJ,0.8059128,kg +4c59d0ab-cee4-388c-8273-582dc5708936,SESCO,II.1.1,Corrientes,AR-W,annual,2011,naphtha combustion consumption by to the public,0.2686376,TJ,N2O,0.6,kg/TJ,0.16118255999999997,kg +ef128869-3268-3759-b1e1-c1784a20b547,SESCO,II.1.1,Córdoba,AR-X,annual,2011,naphtha combustion consumption by to the public,49.46625606999999,TJ,CO2,73300.0,kg/TJ,3625876.5699309995,kg +d9fd2bcd-fb8b-3374-9f12-8e66b01a3925,SESCO,II.1.1,Córdoba,AR-X,annual,2011,naphtha combustion consumption by to the public,49.46625606999999,TJ,CH4,3.0,kg/TJ,148.39876821,kg +3100ca98-ff0b-3776-9b10-58e033593d34,SESCO,II.1.1,Córdoba,AR-X,annual,2011,naphtha combustion consumption by to the public,49.46625606999999,TJ,N2O,0.6,kg/TJ,29.679753641999994,kg +8e54f489-e850-35a7-8ae3-e0c195335a3e,SESCO,II.1.1,Entre Rios,AR-E,annual,2011,naphtha combustion consumption by to the public,23.875166699999998,TJ,CO2,73300.0,kg/TJ,1750049.7191099997,kg +fa52498e-8551-3d26-a096-1ad9fa8f477b,SESCO,II.1.1,Entre Rios,AR-E,annual,2011,naphtha combustion consumption by to the public,23.875166699999998,TJ,CH4,3.0,kg/TJ,71.6255001,kg +06e4a235-a47f-3ec5-8b40-7e87ee11cd5c,SESCO,II.1.1,Entre Rios,AR-E,annual,2011,naphtha combustion consumption by to the public,23.875166699999998,TJ,N2O,0.6,kg/TJ,14.325100019999999,kg +a224337e-adf6-3242-8b94-bd3054a02517,SESCO,II.1.1,Santa Fe,AR-S,annual,2011,naphtha combustion consumption by to the public,35.057206799999996,TJ,CO2,73300.0,kg/TJ,2569693.2584399995,kg +9457f064-7fb5-38d5-8035-cb56064282cb,SESCO,II.1.1,Santa Fe,AR-S,annual,2011,naphtha combustion consumption by to the public,35.057206799999996,TJ,CH4,3.0,kg/TJ,105.1716204,kg +c84a3ae1-cec1-3581-af3d-47e74967b87c,SESCO,II.1.1,Santa Fe,AR-S,annual,2011,naphtha combustion consumption by to the public,35.057206799999996,TJ,N2O,0.6,kg/TJ,21.034324079999998,kg +6a0fb599-b918-3af5-a1f5-4d4c9ae15885,SESCO,II.1.1,Catamarca,AR-K,annual,2011,naphtha combustion consumption by to the public,63.196659603,TJ,CO2,73300.0,kg/TJ,4632315.1488999,kg +97fb1247-781b-3ef3-83b6-2cbab7a45907,SESCO,II.1.1,Catamarca,AR-K,annual,2011,naphtha combustion consumption by to the public,63.196659603,TJ,CH4,3.0,kg/TJ,189.589978809,kg +4fdde8cb-af6d-3b2d-a56a-ccc03ab85d08,SESCO,II.1.1,Catamarca,AR-K,annual,2011,naphtha combustion consumption by to the public,63.196659603,TJ,N2O,0.6,kg/TJ,37.9179957618,kg +b0b0a85f-057a-3a7e-a622-92ca06c6345d,SESCO,II.1.1,Chaco,AR-H,annual,2011,naphtha combustion consumption by to the public,62.13251890999999,TJ,CO2,73300.0,kg/TJ,4554313.636102999,kg +305f789c-376d-3894-92fb-56b59b3f360c,SESCO,II.1.1,Chaco,AR-H,annual,2011,naphtha combustion consumption by to the public,62.13251890999999,TJ,CH4,3.0,kg/TJ,186.39755672999996,kg +1d7ef613-c3c5-3ae3-8bdb-5d192ad20c2c,SESCO,II.1.1,Chaco,AR-H,annual,2011,naphtha combustion consumption by to the public,62.13251890999999,TJ,N2O,0.6,kg/TJ,37.27951134599999,kg +86553f0a-6a7e-3c0a-8516-db7bc62c1acc,SESCO,II.1.1,Córdoba,AR-X,annual,2011,naphtha combustion consumption by to the public,5.102771212,TJ,CO2,73300.0,kg/TJ,374033.1298396,kg +496e6124-bc86-3d50-ad89-f6e62f5e0392,SESCO,II.1.1,Córdoba,AR-X,annual,2011,naphtha combustion consumption by to the public,5.102771212,TJ,CH4,3.0,kg/TJ,15.308313636000001,kg +139d3508-22a9-380b-8636-34aa4997a0cc,SESCO,II.1.1,Córdoba,AR-X,annual,2011,naphtha combustion consumption by to the public,5.102771212,TJ,N2O,0.6,kg/TJ,3.0616627272000003,kg +2b95dac0-f986-3efe-9e27-985b9cc6ee40,SESCO,II.1.1,Jujuy,AR-Y,annual,2011,naphtha combustion consumption by to the public,150.218452153,TJ,CO2,73300.0,kg/TJ,11011012.5428149,kg +60581cf9-7b80-34da-8078-449ef5d7be11,SESCO,II.1.1,Jujuy,AR-Y,annual,2011,naphtha combustion consumption by to the public,150.218452153,TJ,CH4,3.0,kg/TJ,450.65535645899996,kg +39bd9ab8-3ae1-3ddd-aead-ad99a7036f69,SESCO,II.1.1,Jujuy,AR-Y,annual,2011,naphtha combustion consumption by to the public,150.218452153,TJ,N2O,0.6,kg/TJ,90.13107129179998,kg +b4a8f4b8-a01c-3335-bcb2-ffc62439f32a,SESCO,II.1.1,La Rioja,AR-F,annual,2011,naphtha combustion consumption by to the public,50.55423835,TJ,CO2,73300.0,kg/TJ,3705625.671055,kg +eeab618c-6df6-33f6-90ab-14c72f9eb002,SESCO,II.1.1,La Rioja,AR-F,annual,2011,naphtha combustion consumption by to the public,50.55423835,TJ,CH4,3.0,kg/TJ,151.66271505,kg +3c47305a-8552-3f3d-85b4-773cea1631c2,SESCO,II.1.1,La Rioja,AR-F,annual,2011,naphtha combustion consumption by to the public,50.55423835,TJ,N2O,0.6,kg/TJ,30.33254301,kg +0fd69e79-46e1-38c1-8c1d-ddb714f6a6a1,SESCO,II.1.1,Salta,AR-A,annual,2011,naphtha combustion consumption by to the public,287.463051414,TJ,CO2,73300.0,kg/TJ,21071041.6686462,kg +8f6e1d51-4e3b-32f9-a613-96bd77bf0f9a,SESCO,II.1.1,Salta,AR-A,annual,2011,naphtha combustion consumption by to the public,287.463051414,TJ,CH4,3.0,kg/TJ,862.389154242,kg +4689f7be-f8b2-3d6c-bb6b-ecd86ff93c05,SESCO,II.1.1,Salta,AR-A,annual,2011,naphtha combustion consumption by to the public,287.463051414,TJ,N2O,0.6,kg/TJ,172.4778308484,kg +3aaf456a-20b2-3cf2-ab41-e48e59adfd34,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2011,naphtha combustion consumption by to the public,97.318335961,TJ,CO2,73300.0,kg/TJ,7133434.0259413,kg +d8b486b2-55cb-3d24-bf83-fa308309b3bc,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2011,naphtha combustion consumption by to the public,97.318335961,TJ,CH4,3.0,kg/TJ,291.955007883,kg +ca2056cb-d20f-34b3-a3c1-b6b7da0c2fb6,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2011,naphtha combustion consumption by to the public,97.318335961,TJ,N2O,0.6,kg/TJ,58.3910015766,kg +cbb4f395-06cf-3435-940e-db0bb0ab5b5e,SESCO,II.1.1,Tucuman,AR-T,annual,2011,naphtha combustion consumption by to the public,226.92422506599996,TJ,CO2,73300.0,kg/TJ,16633545.697337797,kg +6ed7cbe8-177d-30bf-a758-e87f14bb8172,SESCO,II.1.1,Tucuman,AR-T,annual,2011,naphtha combustion consumption by to the public,226.92422506599996,TJ,CH4,3.0,kg/TJ,680.7726751979999,kg +84f22d8a-cdc0-3764-a4ea-cfcf0e2ea4d7,SESCO,II.1.1,Tucuman,AR-T,annual,2011,naphtha combustion consumption by to the public,226.92422506599996,TJ,N2O,0.6,kg/TJ,136.15453503959998,kg +5aee4bfa-8966-31d4-88b2-3f9e2cb8ccbf,SESCO,II.1.1,Catamarca,AR-K,annual,2011,naphtha combustion consumption by to the public,196.051048886,TJ,CO2,73300.0,kg/TJ,14370541.883343799,kg +8ac86634-2d98-3c3c-ba06-b5fad34de51e,SESCO,II.1.1,Catamarca,AR-K,annual,2011,naphtha combustion consumption by to the public,196.051048886,TJ,CH4,3.0,kg/TJ,588.153146658,kg +79304d26-70a9-3ed6-8f2c-b945c338d8b9,SESCO,II.1.1,Catamarca,AR-K,annual,2011,naphtha combustion consumption by to the public,196.051048886,TJ,N2O,0.6,kg/TJ,117.63062933159999,kg +18b993a8-2964-3ae2-b779-c36cf24abcb0,SESCO,II.1.1,Chaco,AR-H,annual,2011,naphtha combustion consumption by to the public,75.29945507699999,TJ,CO2,73300.0,kg/TJ,5519450.057144099,kg +33fd755c-5208-3a31-bec2-e57c0015ab17,SESCO,II.1.1,Chaco,AR-H,annual,2011,naphtha combustion consumption by to the public,75.29945507699999,TJ,CH4,3.0,kg/TJ,225.89836523099996,kg +05256f47-a656-303e-9a54-e9ef401fcb81,SESCO,II.1.1,Chaco,AR-H,annual,2011,naphtha combustion consumption by to the public,75.29945507699999,TJ,N2O,0.6,kg/TJ,45.179673046199994,kg +3caad6c6-1edb-3f66-8817-8e3d1a462a3f,SESCO,II.1.1,Córdoba,AR-X,annual,2011,naphtha combustion consumption by to the public,23.686448785999996,TJ,CO2,73300.0,kg/TJ,1736216.6960137996,kg +ddd315ae-1699-3b16-a263-0679e93ad1d8,SESCO,II.1.1,Córdoba,AR-X,annual,2011,naphtha combustion consumption by to the public,23.686448785999996,TJ,CH4,3.0,kg/TJ,71.05934635799998,kg +44d9f62e-680a-3c07-9161-1606975a6a31,SESCO,II.1.1,Córdoba,AR-X,annual,2011,naphtha combustion consumption by to the public,23.686448785999996,TJ,N2O,0.6,kg/TJ,14.211869271599998,kg +ed9a46f8-856e-3583-9014-c397d094c2f8,SESCO,II.1.1,Jujuy,AR-Y,annual,2011,naphtha combustion consumption by to the public,264.357195641,TJ,CO2,73300.0,kg/TJ,19377382.4404853,kg +3434c4e2-c4a1-32b6-8443-9be890e61bb2,SESCO,II.1.1,Jujuy,AR-Y,annual,2011,naphtha combustion consumption by to the public,264.357195641,TJ,CH4,3.0,kg/TJ,793.0715869229999,kg +9795f366-065b-30c3-a02a-45f599c5d115,SESCO,II.1.1,Jujuy,AR-Y,annual,2011,naphtha combustion consumption by to the public,264.357195641,TJ,N2O,0.6,kg/TJ,158.61431738459999,kg +93a90884-3b8d-3254-9654-6f2b2641c416,SESCO,II.1.1,La Rioja,AR-F,annual,2011,naphtha combustion consumption by to the public,192.36131145,TJ,CO2,73300.0,kg/TJ,14100084.129284998,kg +2ec7d653-0793-3f71-86a0-0a45f9d8f131,SESCO,II.1.1,La Rioja,AR-F,annual,2011,naphtha combustion consumption by to the public,192.36131145,TJ,CH4,3.0,kg/TJ,577.0839343499999,kg +1d6876d5-6ba9-3137-af73-a5da842d0bb0,SESCO,II.1.1,La Rioja,AR-F,annual,2011,naphtha combustion consumption by to the public,192.36131145,TJ,N2O,0.6,kg/TJ,115.41678686999998,kg +5e69208d-daf1-3708-a526-ab0f2e59ee3f,SESCO,II.1.1,Salta,AR-A,annual,2011,naphtha combustion consumption by to the public,605.8221132039998,TJ,CO2,73300.0,kg/TJ,44406760.89785319,kg +aa2d9dc9-7c1b-3a45-93f3-f725da4f1634,SESCO,II.1.1,Salta,AR-A,annual,2011,naphtha combustion consumption by to the public,605.8221132039998,TJ,CH4,3.0,kg/TJ,1817.4663396119995,kg +d1f470a0-f11f-3f10-b518-eba1ddded4b9,SESCO,II.1.1,Salta,AR-A,annual,2011,naphtha combustion consumption by to the public,605.8221132039998,TJ,N2O,0.6,kg/TJ,363.49326792239987,kg +4be3b165-a596-39cc-a6fa-d3c751cefc2d,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2011,naphtha combustion consumption by to the public,192.99361720099998,TJ,CO2,73300.0,kg/TJ,14146432.140833298,kg +fdc57d07-6975-3415-9c81-9e3c8cf30e71,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2011,naphtha combustion consumption by to the public,192.99361720099998,TJ,CH4,3.0,kg/TJ,578.9808516029999,kg +304f22ba-9ac3-3922-a28c-f3eb4ae4d2fc,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2011,naphtha combustion consumption by to the public,192.99361720099998,TJ,N2O,0.6,kg/TJ,115.79617032059998,kg +1553f294-7ec5-3cfe-bb2b-ef2f729e7cc6,SESCO,II.1.1,Tucuman,AR-T,annual,2011,naphtha combustion consumption by to the public,1110.579739115,TJ,CO2,73300.0,kg/TJ,81405494.8771295,kg +99a009d1-3bd3-36bf-8b78-96e5cc1c4f9f,SESCO,II.1.1,Tucuman,AR-T,annual,2011,naphtha combustion consumption by to the public,1110.579739115,TJ,CH4,3.0,kg/TJ,3331.739217345,kg +da55af74-090d-39b2-9e59-259230c8109e,SESCO,II.1.1,Tucuman,AR-T,annual,2011,naphtha combustion consumption by to the public,1110.579739115,TJ,N2O,0.6,kg/TJ,666.3478434689999,kg +b9c24cae-2b3f-3fea-a99c-8445274f885a,SESCO,II.1.1,Catamarca,AR-K,annual,2011,naphtha combustion consumption by to the public,10.569882169,TJ,CO2,73300.0,kg/TJ,774772.3629876999,kg +41d36bc5-f769-3de7-a187-921820800434,SESCO,II.1.1,Catamarca,AR-K,annual,2011,naphtha combustion consumption by to the public,10.569882169,TJ,CH4,3.0,kg/TJ,31.709646507,kg +b8e92f1a-86e7-318a-a40c-d036bb6d0c4e,SESCO,II.1.1,Catamarca,AR-K,annual,2011,naphtha combustion consumption by to the public,10.569882169,TJ,N2O,0.6,kg/TJ,6.3419293013999996,kg +5a8b873f-c4a0-34ff-9d16-de09305d3c5c,SESCO,II.1.1,Chaco,AR-H,annual,2011,naphtha combustion consumption by to the public,2.2716667050000003,TJ,CO2,73300.0,kg/TJ,166513.1694765,kg +3e645c61-6890-309c-928a-847cfa1b896a,SESCO,II.1.1,Chaco,AR-H,annual,2011,naphtha combustion consumption by to the public,2.2716667050000003,TJ,CH4,3.0,kg/TJ,6.815000115000001,kg +f9b65207-c93a-329d-9d43-3399cb5faa35,SESCO,II.1.1,Chaco,AR-H,annual,2011,naphtha combustion consumption by to the public,2.2716667050000003,TJ,N2O,0.6,kg/TJ,1.3630000230000001,kg +eefffc3d-43f4-3d74-a68a-0f3e01a66e38,SESCO,II.1.1,Córdoba,AR-X,annual,2011,naphtha combustion consumption by to the public,3.8002146489999995,TJ,CO2,73300.0,kg/TJ,278555.73377169995,kg +fc6a1120-0269-3862-8c85-992eb59cb61b,SESCO,II.1.1,Córdoba,AR-X,annual,2011,naphtha combustion consumption by to the public,3.8002146489999995,TJ,CH4,3.0,kg/TJ,11.400643946999999,kg +a814e603-ccef-366a-8c2f-72558a29f858,SESCO,II.1.1,Córdoba,AR-X,annual,2011,naphtha combustion consumption by to the public,3.8002146489999995,TJ,N2O,0.6,kg/TJ,2.2801287893999995,kg +473de584-4f3d-3cf7-8e80-d5a770bb3c54,SESCO,II.1.1,Jujuy,AR-Y,annual,2011,naphtha combustion consumption by to the public,27.999761250999995,TJ,CO2,73300.0,kg/TJ,2052382.4996982997,kg +7fe5d47b-1361-3f43-b7a6-3c311bdbeadc,SESCO,II.1.1,Jujuy,AR-Y,annual,2011,naphtha combustion consumption by to the public,27.999761250999995,TJ,CH4,3.0,kg/TJ,83.99928375299999,kg +b31d5b98-61b8-383f-8ea3-0bfac3495791,SESCO,II.1.1,Jujuy,AR-Y,annual,2011,naphtha combustion consumption by to the public,27.999761250999995,TJ,N2O,0.6,kg/TJ,16.799856750599997,kg +87f01ad2-977b-3217-a672-701e65a5c8dc,SESCO,II.1.1,La Rioja,AR-F,annual,2011,naphtha combustion consumption by to the public,12.315690771999998,TJ,CO2,73300.0,kg/TJ,902740.1335875998,kg +5ba6fa34-65a3-349b-af89-a1aeb4a98c37,SESCO,II.1.1,La Rioja,AR-F,annual,2011,naphtha combustion consumption by to the public,12.315690771999998,TJ,CH4,3.0,kg/TJ,36.947072315999996,kg +2a3b9dec-866e-3488-90b6-f79117c3a74b,SESCO,II.1.1,La Rioja,AR-F,annual,2011,naphtha combustion consumption by to the public,12.315690771999998,TJ,N2O,0.6,kg/TJ,7.389414463199999,kg +0779a470-6bbe-3b4a-971d-ce603fd0cd68,SESCO,II.1.1,Salta,AR-A,annual,2011,naphtha combustion consumption by to the public,79.93580425599998,TJ,CO2,73300.0,kg/TJ,5859294.451964798,kg +8e2b83a8-3522-36e5-ba7c-6be2e5ad6bad,SESCO,II.1.1,Salta,AR-A,annual,2011,naphtha combustion consumption by to the public,79.93580425599998,TJ,CH4,3.0,kg/TJ,239.80741276799995,kg +0cf191bb-bf6b-3f2f-8502-ccfb499baef7,SESCO,II.1.1,Salta,AR-A,annual,2011,naphtha combustion consumption by to the public,79.93580425599998,TJ,N2O,0.6,kg/TJ,47.961482553599986,kg +b11c46a0-9bbb-3644-ae56-8ce443d092a9,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2011,naphtha combustion consumption by to the public,22.23311937,TJ,CO2,73300.0,kg/TJ,1629687.649821,kg +b94fee35-7822-35e5-abad-08441bfd16f8,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2011,naphtha combustion consumption by to the public,22.23311937,TJ,CH4,3.0,kg/TJ,66.69935811,kg +06b0c132-421a-3f9c-84d6-e156b0a432ba,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2011,naphtha combustion consumption by to the public,22.23311937,TJ,N2O,0.6,kg/TJ,13.339871622,kg +12b166f6-ab0f-3e8b-93ba-41a8ee6fe3d2,SESCO,II.1.1,Tucuman,AR-T,annual,2011,naphtha combustion consumption by to the public,123.28081681299999,TJ,CO2,73300.0,kg/TJ,9036483.872392898,kg +896b85f2-491e-3684-9570-5ebdf4bd6968,SESCO,II.1.1,Tucuman,AR-T,annual,2011,naphtha combustion consumption by to the public,123.28081681299999,TJ,CH4,3.0,kg/TJ,369.84245043899995,kg +2a0b575b-f0b6-3de4-959e-7e6da26b270e,SESCO,II.1.1,Tucuman,AR-T,annual,2011,naphtha combustion consumption by to the public,123.28081681299999,TJ,N2O,0.6,kg/TJ,73.96849008779999,kg +8352f034-6377-3176-84d5-87f7d66d6817,SESCO,II.5.1,Capital Federal,AR-C,annual,2011,naphtha combustion consumption by agriculture machines,1.007391,TJ,CO2,73300.0,kg/TJ,73841.7603,kg +0d6b4e15-3b7c-3bf3-ade1-2fe3448adc0d,SESCO,II.5.1,Capital Federal,AR-C,annual,2011,naphtha combustion consumption by agriculture machines,1.007391,TJ,CH4,3.0,kg/TJ,3.0221729999999996,kg +96836e58-0945-3937-aac5-67d27d05c7ff,SESCO,II.5.1,Capital Federal,AR-C,annual,2011,naphtha combustion consumption by agriculture machines,1.007391,TJ,N2O,0.6,kg/TJ,0.6044345999999999,kg +67f29cec-bc9d-332b-a96f-7689a8c110f1,SESCO,II.1.1,Buenos Aires,AR-B,annual,2011,naphtha combustion consumption by to the public,460.8142231,TJ,CO2,73300.0,kg/TJ,33777682.55323,kg +75091ff7-9592-30d5-8756-e4c66ab44726,SESCO,II.1.1,Buenos Aires,AR-B,annual,2011,naphtha combustion consumption by to the public,460.8142231,TJ,CH4,3.0,kg/TJ,1382.4426693,kg +14e1155d-9247-3ce8-b298-9beaf2cf8eaa,SESCO,II.1.1,Buenos Aires,AR-B,annual,2011,naphtha combustion consumption by to the public,460.8142231,TJ,N2O,0.6,kg/TJ,276.48853385999996,kg +581214f0-91a7-3460-878d-6414073a6091,SESCO,II.1.1,Capital Federal,AR-C,annual,2011,naphtha combustion consumption by to the public,13.096082999999998,TJ,CO2,73300.0,kg/TJ,959942.8838999999,kg +c20a4071-25fe-3506-ac9c-6ce3dac20700,SESCO,II.1.1,Capital Federal,AR-C,annual,2011,naphtha combustion consumption by to the public,13.096082999999998,TJ,CH4,3.0,kg/TJ,39.28824899999999,kg +4f34e963-3ea0-3dbc-8b14-d232b213d10c,SESCO,II.1.1,Capital Federal,AR-C,annual,2011,naphtha combustion consumption by to the public,13.096082999999998,TJ,N2O,0.6,kg/TJ,7.857649799999999,kg +382223b5-7a3f-34c3-93c3-e3fc26d16f25,SESCO,II.1.1,Chaco,AR-H,annual,2011,naphtha combustion consumption by to the public,21.0544719,TJ,CO2,73300.0,kg/TJ,1543292.79027,kg +907df678-29b7-32c7-9b3c-90551f0713e3,SESCO,II.1.1,Chaco,AR-H,annual,2011,naphtha combustion consumption by to the public,21.0544719,TJ,CH4,3.0,kg/TJ,63.1634157,kg +aac8673d-71cc-38b6-910d-5380edb31bbd,SESCO,II.1.1,Chaco,AR-H,annual,2011,naphtha combustion consumption by to the public,21.0544719,TJ,N2O,0.6,kg/TJ,12.63268314,kg +5a872beb-2d6a-3048-83ec-8498e14dcd00,SESCO,II.1.1,Corrientes,AR-W,annual,2011,naphtha combustion consumption by to the public,23.9423261,TJ,CO2,73300.0,kg/TJ,1754972.5031299999,kg +3224bb09-83b9-3df5-8a13-9b2a36e00590,SESCO,II.1.1,Corrientes,AR-W,annual,2011,naphtha combustion consumption by to the public,23.9423261,TJ,CH4,3.0,kg/TJ,71.8269783,kg +efd2dd42-4e2f-3f79-9c0d-863f9cd7ff5d,SESCO,II.1.1,Corrientes,AR-W,annual,2011,naphtha combustion consumption by to the public,23.9423261,TJ,N2O,0.6,kg/TJ,14.365395659999999,kg +5765377e-e210-3257-b62f-86902fe60800,SESCO,II.1.1,Córdoba,AR-X,annual,2011,naphtha combustion consumption by to the public,14.6071695,TJ,CO2,73300.0,kg/TJ,1070705.5243499998,kg +d16549e8-62e9-37be-a570-87c46f0105d8,SESCO,II.1.1,Córdoba,AR-X,annual,2011,naphtha combustion consumption by to the public,14.6071695,TJ,CH4,3.0,kg/TJ,43.8215085,kg +640a3d88-1c28-3947-99af-e6c0516dbd3a,SESCO,II.1.1,Córdoba,AR-X,annual,2011,naphtha combustion consumption by to the public,14.6071695,TJ,N2O,0.6,kg/TJ,8.764301699999999,kg +00064361-d969-325f-8538-441f8ae52fdd,SESCO,II.1.1,Entre Rios,AR-E,annual,2011,naphtha combustion consumption by to the public,43.217073899999995,TJ,CO2,73300.0,kg/TJ,3167811.5168699995,kg +f85b606a-4816-3e63-9b6e-c94bd86f97ee,SESCO,II.1.1,Entre Rios,AR-E,annual,2011,naphtha combustion consumption by to the public,43.217073899999995,TJ,CH4,3.0,kg/TJ,129.65122169999998,kg +41bc603f-0bb5-3e5b-a260-a0e94143679b,SESCO,II.1.1,Entre Rios,AR-E,annual,2011,naphtha combustion consumption by to the public,43.217073899999995,TJ,N2O,0.6,kg/TJ,25.930244339999998,kg +90b85466-af3b-376a-a900-d3e91d17f49c,SESCO,II.1.1,La Pampa,AR-L,annual,2011,naphtha combustion consumption by to the public,8.495664099999999,TJ,CO2,73300.0,kg/TJ,622732.1785299999,kg +49819bbc-89db-3dc8-a5d2-5f1128b0ed42,SESCO,II.1.1,La Pampa,AR-L,annual,2011,naphtha combustion consumption by to the public,8.495664099999999,TJ,CH4,3.0,kg/TJ,25.486992299999997,kg +6b3ab36f-cff2-39a1-ac18-5b68bb6faa30,SESCO,II.1.1,La Pampa,AR-L,annual,2011,naphtha combustion consumption by to the public,8.495664099999999,TJ,N2O,0.6,kg/TJ,5.097398459999999,kg +349416bd-ed9e-3f1b-90cb-238d1a949b63,SESCO,II.1.1,Mendoza,AR-M,annual,2011,naphtha combustion consumption by to the public,96.20584049999998,TJ,CO2,73300.0,kg/TJ,7051888.108649999,kg +460b798d-baec-3034-9233-df5ed8364b77,SESCO,II.1.1,Mendoza,AR-M,annual,2011,naphtha combustion consumption by to the public,96.20584049999998,TJ,CH4,3.0,kg/TJ,288.61752149999995,kg +7e95f788-cd97-3589-a256-984f139be358,SESCO,II.1.1,Mendoza,AR-M,annual,2011,naphtha combustion consumption by to the public,96.20584049999998,TJ,N2O,0.6,kg/TJ,57.72350429999999,kg +b9da563a-d311-3184-bb2e-a07326988990,SESCO,II.1.1,Misiones,AR-N,annual,2011,naphtha combustion consumption by to the public,40.765755799999994,TJ,CO2,73300.0,kg/TJ,2988129.9001399996,kg +3ba6b5af-8585-3208-94ca-e521d0c80551,SESCO,II.1.1,Misiones,AR-N,annual,2011,naphtha combustion consumption by to the public,40.765755799999994,TJ,CH4,3.0,kg/TJ,122.29726739999998,kg +bf5164e1-a1c9-3990-a143-fab42b896ba4,SESCO,II.1.1,Misiones,AR-N,annual,2011,naphtha combustion consumption by to the public,40.765755799999994,TJ,N2O,0.6,kg/TJ,24.459453479999997,kg +ef8d6be2-74c0-35b9-b332-784f3d2c6f65,SESCO,II.1.1,Neuquén,AR-Q,annual,2011,naphtha combustion consumption by to the public,25.889948699999998,TJ,CO2,73300.0,kg/TJ,1897733.2397099999,kg +57261d12-3972-3b84-b733-dec7b825bb35,SESCO,II.1.1,Neuquén,AR-Q,annual,2011,naphtha combustion consumption by to the public,25.889948699999998,TJ,CH4,3.0,kg/TJ,77.6698461,kg +ee6cc264-1b71-3f88-8315-0d3ef4c2b9aa,SESCO,II.1.1,Neuquén,AR-Q,annual,2011,naphtha combustion consumption by to the public,25.889948699999998,TJ,N2O,0.6,kg/TJ,15.533969219999998,kg +fb5cad49-137a-3aa8-8b29-69ac10f3cc1d,SESCO,II.1.1,Rio Negro,AR-R,annual,2011,naphtha combustion consumption by to the public,27.669672799999997,TJ,CO2,73300.0,kg/TJ,2028187.0162399998,kg +9b187e4d-0100-3e38-ba3d-c1b6d17db025,SESCO,II.1.1,Rio Negro,AR-R,annual,2011,naphtha combustion consumption by to the public,27.669672799999997,TJ,CH4,3.0,kg/TJ,83.00901839999999,kg +629d8bee-18e2-3f4e-83d9-1c3902256cf6,SESCO,II.1.1,Rio Negro,AR-R,annual,2011,naphtha combustion consumption by to the public,27.669672799999997,TJ,N2O,0.6,kg/TJ,16.601803679999996,kg +a731ebf0-f303-32a0-b4f8-44dc79c4ed8f,SESCO,II.1.1,Santa Fe,AR-S,annual,2011,naphtha combustion consumption by to the public,9.9060115,TJ,CO2,73300.0,kg/TJ,726110.64295,kg +3d35b5fd-82bd-3cea-99bc-8f57eab83bdf,SESCO,II.1.1,Santa Fe,AR-S,annual,2011,naphtha combustion consumption by to the public,9.9060115,TJ,CH4,3.0,kg/TJ,29.7180345,kg +18887134-9711-3cc6-b67d-f82f53cdfa62,SESCO,II.1.1,Santa Fe,AR-S,annual,2011,naphtha combustion consumption by to the public,9.9060115,TJ,N2O,0.6,kg/TJ,5.9436069,kg +b1f4c3e7-4529-33f0-b7a6-b32b17389323,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2011,naphtha combustion consumption by to the public,12.021532599999999,TJ,CO2,73300.0,kg/TJ,881178.3395799999,kg +50ec5053-7fe5-387b-ab94-4e1a4e14cb77,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2011,naphtha combustion consumption by to the public,12.021532599999999,TJ,CH4,3.0,kg/TJ,36.064597799999994,kg +8a4bb7c4-a769-3234-b794-c47f439e6b07,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2011,naphtha combustion consumption by to the public,12.021532599999999,TJ,N2O,0.6,kg/TJ,7.212919559999999,kg +e4b894b4-bfce-3f27-864e-45024c5f9067,SESCO,II.1.1,Tucuman,AR-T,annual,2011,naphtha combustion consumption by to the public,2.6192165999999997,TJ,CO2,73300.0,kg/TJ,191988.57677999997,kg +c6fad439-49ed-323a-937b-7498041bc4a9,SESCO,II.1.1,Tucuman,AR-T,annual,2011,naphtha combustion consumption by to the public,2.6192165999999997,TJ,CH4,3.0,kg/TJ,7.857649799999999,kg +ad9915ac-fffb-3965-87d5-aeb3bd79e3d9,SESCO,II.1.1,Tucuman,AR-T,annual,2011,naphtha combustion consumption by to the public,2.6192165999999997,TJ,N2O,0.6,kg/TJ,1.5715299599999997,kg +05b4b4a4-7b6a-37bb-b74b-f783afd71a8d,SESCO,II.1.1,Buenos Aires,AR-B,annual,2011,naphtha combustion consumption by to the public,12608.7072342,TJ,CO2,73300.0,kg/TJ,924218240.2668599,kg +120c2ae7-6393-3391-bfed-09c618a4598c,SESCO,II.1.1,Buenos Aires,AR-B,annual,2011,naphtha combustion consumption by to the public,12608.7072342,TJ,CH4,3.0,kg/TJ,37826.121702599994,kg +75dbce09-7eee-3ed0-90a2-ef733f5cd371,SESCO,II.1.1,Buenos Aires,AR-B,annual,2011,naphtha combustion consumption by to the public,12608.7072342,TJ,N2O,0.6,kg/TJ,7565.224340519999,kg +1c585714-b2e9-375f-a6cc-970dbd32c4fd,SESCO,II.1.1,Capital Federal,AR-C,annual,2011,naphtha combustion consumption by to the public,4045.4471980999992,TJ,CO2,73300.0,kg/TJ,296531279.6207299,kg +bf2f14f5-cfdf-3160-8a79-0e5ec5817f6b,SESCO,II.1.1,Capital Federal,AR-C,annual,2011,naphtha combustion consumption by to the public,4045.4471980999992,TJ,CH4,3.0,kg/TJ,12136.341594299998,kg +196616a1-7db4-33be-8b39-dd0ea24b5290,SESCO,II.1.1,Capital Federal,AR-C,annual,2011,naphtha combustion consumption by to the public,4045.4471980999992,TJ,N2O,0.6,kg/TJ,2427.2683188599995,kg +482d63b2-6f18-3fbc-aab6-e8f345b661ec,SESCO,II.1.1,Catamarca,AR-K,annual,2011,naphtha combustion consumption by to the public,62.92835779999999,TJ,CO2,73300.0,kg/TJ,4612648.626739999,kg +bb0f7eaf-808b-3746-b63a-569915664b94,SESCO,II.1.1,Catamarca,AR-K,annual,2011,naphtha combustion consumption by to the public,62.92835779999999,TJ,CH4,3.0,kg/TJ,188.7850734,kg +030195f2-2e60-3e08-854e-1053387c109e,SESCO,II.1.1,Catamarca,AR-K,annual,2011,naphtha combustion consumption by to the public,62.92835779999999,TJ,N2O,0.6,kg/TJ,37.75701468,kg +643725c0-af42-3f04-9bbe-ecb68fe93a3a,SESCO,II.1.1,Chaco,AR-H,annual,2011,naphtha combustion consumption by to the public,824.1465771,TJ,CO2,73300.0,kg/TJ,60409944.10143,kg +6059d39a-c9b2-3ece-9824-7abb3ae150b0,SESCO,II.1.1,Chaco,AR-H,annual,2011,naphtha combustion consumption by to the public,824.1465771,TJ,CH4,3.0,kg/TJ,2472.4397313,kg +42a0e61e-3387-321c-904c-ed5ec222762e,SESCO,II.1.1,Chaco,AR-H,annual,2011,naphtha combustion consumption by to the public,824.1465771,TJ,N2O,0.6,kg/TJ,494.48794625999994,kg +f8c7099a-b611-3bd2-b358-d545bf810f16,SESCO,II.1.1,Chubut,AR-U,annual,2011,naphtha combustion consumption by to the public,142.2771889,TJ,CO2,73300.0,kg/TJ,10428917.94637,kg +5a905025-a281-3ac8-ac85-ef00b071c442,SESCO,II.1.1,Chubut,AR-U,annual,2011,naphtha combustion consumption by to the public,142.2771889,TJ,CH4,3.0,kg/TJ,426.8315667,kg +46b27198-8243-3fcd-890b-6660e8da35fc,SESCO,II.1.1,Chubut,AR-U,annual,2011,naphtha combustion consumption by to the public,142.2771889,TJ,N2O,0.6,kg/TJ,85.36631333999999,kg +54b9468a-531e-36bb-a026-34af8e79268b,SESCO,II.1.1,Corrientes,AR-W,annual,2011,naphtha combustion consumption by to the public,859.0358854,TJ,CO2,73300.0,kg/TJ,62967330.39982,kg +b053d361-92b3-3808-b88f-bafcc59e2277,SESCO,II.1.1,Corrientes,AR-W,annual,2011,naphtha combustion consumption by to the public,859.0358854,TJ,CH4,3.0,kg/TJ,2577.1076562,kg +83a3f5d0-db24-362e-8321-9611aeb34d30,SESCO,II.1.1,Corrientes,AR-W,annual,2011,naphtha combustion consumption by to the public,859.0358854,TJ,N2O,0.6,kg/TJ,515.4215312399999,kg +17b88f31-5441-38f0-8aa1-59556cebbae5,SESCO,II.1.1,Córdoba,AR-X,annual,2011,naphtha combustion consumption by to the public,3020.9641307999996,TJ,CO2,73300.0,kg/TJ,221436670.78763998,kg +320da1a9-e3db-3e3f-9bae-2076ad9a0cca,SESCO,II.1.1,Córdoba,AR-X,annual,2011,naphtha combustion consumption by to the public,3020.9641307999996,TJ,CH4,3.0,kg/TJ,9062.8923924,kg +e004eb3a-bd5a-32c2-babf-9670461e4fa7,SESCO,II.1.1,Córdoba,AR-X,annual,2011,naphtha combustion consumption by to the public,3020.9641307999996,TJ,N2O,0.6,kg/TJ,1812.5784784799996,kg +362250b6-e111-36c8-a98d-677ea177dfb4,SESCO,II.1.1,Entre Rios,AR-E,annual,2011,naphtha combustion consumption by to the public,1083.0796437999998,TJ,CO2,73300.0,kg/TJ,79389737.89053999,kg +c1a605f7-f78a-3f0b-aaf5-0e41499045e3,SESCO,II.1.1,Entre Rios,AR-E,annual,2011,naphtha combustion consumption by to the public,1083.0796437999998,TJ,CH4,3.0,kg/TJ,3249.2389313999993,kg +ff44de4d-8510-3b14-8f4c-bd0500c6a3d9,SESCO,II.1.1,Entre Rios,AR-E,annual,2011,naphtha combustion consumption by to the public,1083.0796437999998,TJ,N2O,0.6,kg/TJ,649.8477862799998,kg +c387c1d8-c708-3006-b4cf-1e7d9195c785,SESCO,II.1.1,Formosa,AR-P,annual,2011,naphtha combustion consumption by to the public,342.94947609999997,TJ,CO2,73300.0,kg/TJ,25138196.59813,kg +8738019c-47ac-3982-a35a-7587658e6a74,SESCO,II.1.1,Formosa,AR-P,annual,2011,naphtha combustion consumption by to the public,342.94947609999997,TJ,CH4,3.0,kg/TJ,1028.8484282999998,kg +47023759-01ce-392d-85b9-d42273e052ac,SESCO,II.1.1,Formosa,AR-P,annual,2011,naphtha combustion consumption by to the public,342.94947609999997,TJ,N2O,0.6,kg/TJ,205.76968565999996,kg +3b0806c9-2bfd-36aa-a9c8-e5e789358cd4,SESCO,II.1.1,Jujuy,AR-Y,annual,2011,naphtha combustion consumption by to the public,236.06529099999997,TJ,CO2,73300.0,kg/TJ,17303585.8303,kg +b69eabe8-4407-3e5e-b46a-5307b1e6574b,SESCO,II.1.1,Jujuy,AR-Y,annual,2011,naphtha combustion consumption by to the public,236.06529099999997,TJ,CH4,3.0,kg/TJ,708.1958729999999,kg +01f86c62-25aa-3d46-b0c5-d5c9855a6b87,SESCO,II.1.1,Jujuy,AR-Y,annual,2011,naphtha combustion consumption by to the public,236.06529099999997,TJ,N2O,0.6,kg/TJ,141.6391746,kg +5f12c3f4-acf7-366f-ab5e-5d46f28227a0,SESCO,II.1.1,La Pampa,AR-L,annual,2011,naphtha combustion consumption by to the public,290.66588319999994,TJ,CO2,73300.0,kg/TJ,21305809.238559995,kg +4ad1b62f-c87d-3dcf-9496-8f4a72b07993,SESCO,II.1.1,La Pampa,AR-L,annual,2011,naphtha combustion consumption by to the public,290.66588319999994,TJ,CH4,3.0,kg/TJ,871.9976495999998,kg +9ce216d6-9589-3f37-bbaf-98634ed36759,SESCO,II.1.1,La Pampa,AR-L,annual,2011,naphtha combustion consumption by to the public,290.66588319999994,TJ,N2O,0.6,kg/TJ,174.39952991999996,kg +db08a49c-6d83-3a49-a82b-d65d8cd9d1c4,SESCO,II.1.1,La Rioja,AR-F,annual,2011,naphtha combustion consumption by to the public,290.1621877,TJ,CO2,73300.0,kg/TJ,21268888.35841,kg +bebbb6ba-5c13-36a7-bb5e-198ac3400438,SESCO,II.1.1,La Rioja,AR-F,annual,2011,naphtha combustion consumption by to the public,290.1621877,TJ,CH4,3.0,kg/TJ,870.4865631,kg +cb279dd4-7053-3ea6-a218-7831288caa0b,SESCO,II.1.1,La Rioja,AR-F,annual,2011,naphtha combustion consumption by to the public,290.1621877,TJ,N2O,0.6,kg/TJ,174.09731262,kg +20492050-0498-3916-828e-07cf3a1f2757,SESCO,II.1.1,Mendoza,AR-M,annual,2011,naphtha combustion consumption by to the public,737.4773713999999,TJ,CO2,73300.0,kg/TJ,54057091.32361999,kg +347455c9-8d4e-3ade-9900-24453ffea2c9,SESCO,II.1.1,Mendoza,AR-M,annual,2011,naphtha combustion consumption by to the public,737.4773713999999,TJ,CH4,3.0,kg/TJ,2212.4321142,kg +9f826f12-3cab-3571-9bf8-e566a5217969,SESCO,II.1.1,Mendoza,AR-M,annual,2011,naphtha combustion consumption by to the public,737.4773713999999,TJ,N2O,0.6,kg/TJ,442.48642283999993,kg +cec53ff1-72db-3b24-b347-b84fdbf3ee69,SESCO,II.1.1,Misiones,AR-N,annual,2011,naphtha combustion consumption by to the public,1035.4300494999998,TJ,CO2,73300.0,kg/TJ,75897022.62834999,kg +38452079-3187-3f5e-a9ec-fb67a52ee359,SESCO,II.1.1,Misiones,AR-N,annual,2011,naphtha combustion consumption by to the public,1035.4300494999998,TJ,CH4,3.0,kg/TJ,3106.2901484999993,kg +fa6d4d51-78ef-307e-a832-2932e5872569,SESCO,II.1.1,Misiones,AR-N,annual,2011,naphtha combustion consumption by to the public,1035.4300494999998,TJ,N2O,0.6,kg/TJ,621.2580296999998,kg +3c5456b2-7372-333c-b579-73ffb7ac1bc6,SESCO,II.1.1,Neuquén,AR-Q,annual,2011,naphtha combustion consumption by to the public,240.36349259999997,TJ,CO2,73300.0,kg/TJ,17618644.007579997,kg +f215f0dc-cf56-36c2-8cc9-3238a794530a,SESCO,II.1.1,Neuquén,AR-Q,annual,2011,naphtha combustion consumption by to the public,240.36349259999997,TJ,CH4,3.0,kg/TJ,721.0904777999999,kg +3652c426-0b03-374a-8aa5-89fc58cf4691,SESCO,II.1.1,Neuquén,AR-Q,annual,2011,naphtha combustion consumption by to the public,240.36349259999997,TJ,N2O,0.6,kg/TJ,144.21809555999997,kg +6ef0f929-718e-340d-9dd5-f3f0e240b31a,SESCO,II.1.1,Rio Negro,AR-R,annual,2011,naphtha combustion consumption by to the public,208.7985746,TJ,CO2,73300.0,kg/TJ,15304935.51818,kg +d6863687-c414-32d3-84fd-76f705f91b98,SESCO,II.1.1,Rio Negro,AR-R,annual,2011,naphtha combustion consumption by to the public,208.7985746,TJ,CH4,3.0,kg/TJ,626.3957238,kg +344b8a19-786f-3540-ad13-96eac3047aa6,SESCO,II.1.1,Rio Negro,AR-R,annual,2011,naphtha combustion consumption by to the public,208.7985746,TJ,N2O,0.6,kg/TJ,125.27914476,kg +f5919212-e26f-3102-abe9-123a53efdd31,SESCO,II.1.1,Salta,AR-A,annual,2011,naphtha combustion consumption by to the public,327.70429229999996,TJ,CO2,73300.0,kg/TJ,24020724.625589997,kg +a91405d1-b12f-3036-844b-33d7c716db44,SESCO,II.1.1,Salta,AR-A,annual,2011,naphtha combustion consumption by to the public,327.70429229999996,TJ,CH4,3.0,kg/TJ,983.1128769,kg +95677c3d-b447-3886-8a66-c207667271c3,SESCO,II.1.1,Salta,AR-A,annual,2011,naphtha combustion consumption by to the public,327.70429229999996,TJ,N2O,0.6,kg/TJ,196.62257537999997,kg +4ea9ac89-ba46-3bda-ac35-be142050593f,SESCO,II.1.1,San Juan,AR-J,annual,2011,naphtha combustion consumption by to the public,249.7322289,TJ,CO2,73300.0,kg/TJ,18305372.37837,kg +5fb4060a-3180-31ea-86bf-190b47275f41,SESCO,II.1.1,San Juan,AR-J,annual,2011,naphtha combustion consumption by to the public,249.7322289,TJ,CH4,3.0,kg/TJ,749.1966867,kg +7b906aa9-a378-3cde-93c0-80a7fd0c4243,SESCO,II.1.1,San Juan,AR-J,annual,2011,naphtha combustion consumption by to the public,249.7322289,TJ,N2O,0.6,kg/TJ,149.83933734,kg +443ce675-20f1-3075-9a42-c7dcbbb1273c,SESCO,II.1.1,San Luis,AR-D,annual,2011,naphtha combustion consumption by to the public,5.8428678,TJ,CO2,73300.0,kg/TJ,428282.20973999996,kg +3d8127e6-0822-3784-8775-89bda13eb7f3,SESCO,II.1.1,San Luis,AR-D,annual,2011,naphtha combustion consumption by to the public,5.8428678,TJ,CH4,3.0,kg/TJ,17.528603399999998,kg +c348667a-0fa6-3ed5-90c5-2ecf68874632,SESCO,II.1.1,San Luis,AR-D,annual,2011,naphtha combustion consumption by to the public,5.8428678,TJ,N2O,0.6,kg/TJ,3.5057206799999996,kg +3c232ed6-a85e-38a6-9f7a-efba3780b15b,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2011,naphtha combustion consumption by to the public,0.8394925,TJ,CO2,73300.0,kg/TJ,61534.80025,kg +e8a347c9-f175-33f2-893c-1e8fd36e33df,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2011,naphtha combustion consumption by to the public,0.8394925,TJ,CH4,3.0,kg/TJ,2.5184775,kg +f24f2db1-6e7c-3bc2-a39b-994e558f4156,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2011,naphtha combustion consumption by to the public,0.8394925,TJ,N2O,0.6,kg/TJ,0.5036955,kg +a3e0cfd3-4c12-374f-81d0-2a185d07a50d,SESCO,II.1.1,Santa Fe,AR-S,annual,2011,naphtha combustion consumption by to the public,3314.4171291,TJ,CO2,73300.0,kg/TJ,242946775.56302997,kg +c3dcf65c-8e9b-3857-99d3-575d0fcefb0b,SESCO,II.1.1,Santa Fe,AR-S,annual,2011,naphtha combustion consumption by to the public,3314.4171291,TJ,CH4,3.0,kg/TJ,9943.251387299999,kg +77ac9df3-4d4d-3f01-a27c-5eb6dc4f9e6a,SESCO,II.1.1,Santa Fe,AR-S,annual,2011,naphtha combustion consumption by to the public,3314.4171291,TJ,N2O,0.6,kg/TJ,1988.6502774599999,kg +15cf8c52-8468-386d-943f-c4d194868bf7,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2011,naphtha combustion consumption by to the public,343.8897077,TJ,CO2,73300.0,kg/TJ,25207115.57441,kg +4fc90202-e0dd-34cb-8239-84e9711de49e,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2011,naphtha combustion consumption by to the public,343.8897077,TJ,CH4,3.0,kg/TJ,1031.6691231,kg +2bc669af-169a-33df-bde5-dbdb41259e1f,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2011,naphtha combustion consumption by to the public,343.8897077,TJ,N2O,0.6,kg/TJ,206.33382461999997,kg +5c0dfc4d-1fa7-3dad-bc01-287ad2e4ca7a,SESCO,II.1.1,Tucuman,AR-T,annual,2011,naphtha combustion consumption by to the public,757.1550755999999,TJ,CO2,73300.0,kg/TJ,55499467.04148,kg +8be70b00-8c66-3015-9a83-c3eb192090aa,SESCO,II.1.1,Tucuman,AR-T,annual,2011,naphtha combustion consumption by to the public,757.1550755999999,TJ,CH4,3.0,kg/TJ,2271.4652268,kg +c075b8ba-15c7-3132-8899-3f595203b0c5,SESCO,II.1.1,Tucuman,AR-T,annual,2011,naphtha combustion consumption by to the public,757.1550755999999,TJ,N2O,0.6,kg/TJ,454.29304535999995,kg +85d903e8-d1bc-30be-b493-e9b3e9d52654,SESCO,II.1.1,Buenos Aires,AR-B,annual,2011,naphtha combustion consumption by to the public,4747.3636672,TJ,CO2,73300.0,kg/TJ,347981756.80576,kg +d0d16cee-ab0c-311c-9733-97739b0730f3,SESCO,II.1.1,Buenos Aires,AR-B,annual,2011,naphtha combustion consumption by to the public,4747.3636672,TJ,CH4,3.0,kg/TJ,14242.091001600002,kg +862220b3-da67-3dbc-838a-f0d8cc3fe906,SESCO,II.1.1,Buenos Aires,AR-B,annual,2011,naphtha combustion consumption by to the public,4747.3636672,TJ,N2O,0.6,kg/TJ,2848.41820032,kg +3479704d-f2ed-3cc9-88eb-8e75223d0087,SESCO,II.1.1,Capital Federal,AR-C,annual,2011,naphtha combustion consumption by to the public,2329.1551514,TJ,CO2,73300.0,kg/TJ,170727072.59761998,kg +94609bb9-ed28-3df5-ab03-5d69f26c085e,SESCO,II.1.1,Capital Federal,AR-C,annual,2011,naphtha combustion consumption by to the public,2329.1551514,TJ,CH4,3.0,kg/TJ,6987.465454199999,kg +6c6e86db-da7a-3a80-9a7a-6f41f3267326,SESCO,II.1.1,Capital Federal,AR-C,annual,2011,naphtha combustion consumption by to the public,2329.1551514,TJ,N2O,0.6,kg/TJ,1397.49309084,kg +122b9db0-70be-3786-b353-40f13f8cb234,SESCO,II.1.1,Catamarca,AR-K,annual,2011,naphtha combustion consumption by to the public,29.214339,TJ,CO2,73300.0,kg/TJ,2141411.0486999997,kg +11c2495a-4440-328c-af2c-e2ab5a3cf07b,SESCO,II.1.1,Catamarca,AR-K,annual,2011,naphtha combustion consumption by to the public,29.214339,TJ,CH4,3.0,kg/TJ,87.643017,kg +44a828fb-2f0c-3341-a9b8-9bf7c1166b08,SESCO,II.1.1,Catamarca,AR-K,annual,2011,naphtha combustion consumption by to the public,29.214339,TJ,N2O,0.6,kg/TJ,17.528603399999998,kg +d94bf043-86d1-369a-84b3-889a47b70cda,SESCO,II.1.1,Chaco,AR-H,annual,2011,naphtha combustion consumption by to the public,200.4036496,TJ,CO2,73300.0,kg/TJ,14689587.51568,kg +b01bdd7a-2f7c-3c06-9626-9822f4901b41,SESCO,II.1.1,Chaco,AR-H,annual,2011,naphtha combustion consumption by to the public,200.4036496,TJ,CH4,3.0,kg/TJ,601.2109488,kg +346439f8-ada4-390d-aafb-cc72a3caf2e7,SESCO,II.1.1,Chaco,AR-H,annual,2011,naphtha combustion consumption by to the public,200.4036496,TJ,N2O,0.6,kg/TJ,120.24218975999999,kg +3dfa2d4d-5cec-3f5f-82da-0523a311a93d,SESCO,II.1.1,Chubut,AR-U,annual,2011,naphtha combustion consumption by to the public,28.576324699999997,TJ,CO2,73300.0,kg/TJ,2094644.6005099998,kg +669f6fa1-6547-3257-9bf1-9fc34162d4c6,SESCO,II.1.1,Chubut,AR-U,annual,2011,naphtha combustion consumption by to the public,28.576324699999997,TJ,CH4,3.0,kg/TJ,85.72897409999999,kg +e2a19662-4580-3bdb-9eec-0c5544159f71,SESCO,II.1.1,Chubut,AR-U,annual,2011,naphtha combustion consumption by to the public,28.576324699999997,TJ,N2O,0.6,kg/TJ,17.14579482,kg +e0ee69a5-fe9a-39f9-84f6-edf88280c353,SESCO,II.1.1,Corrientes,AR-W,annual,2011,naphtha combustion consumption by to the public,187.20682749999997,TJ,CO2,73300.0,kg/TJ,13722260.455749998,kg +aa831cfb-9765-314d-9ac5-dffbc6786f25,SESCO,II.1.1,Corrientes,AR-W,annual,2011,naphtha combustion consumption by to the public,187.20682749999997,TJ,CH4,3.0,kg/TJ,561.6204825,kg +907b8b94-d962-322b-a75d-74384ed9ad31,SESCO,II.1.1,Corrientes,AR-W,annual,2011,naphtha combustion consumption by to the public,187.20682749999997,TJ,N2O,0.6,kg/TJ,112.32409649999998,kg +02057a26-d51c-344d-9d2b-618f05e476d7,SESCO,II.1.1,Córdoba,AR-X,annual,2011,naphtha combustion consumption by to the public,860.0768561,TJ,CO2,73300.0,kg/TJ,63043633.55213,kg +63ec4e02-7d4d-3815-936c-a407237cb145,SESCO,II.1.1,Córdoba,AR-X,annual,2011,naphtha combustion consumption by to the public,860.0768561,TJ,CH4,3.0,kg/TJ,2580.2305683,kg +f7e6b727-6867-3266-9235-c4143acf358f,SESCO,II.1.1,Córdoba,AR-X,annual,2011,naphtha combustion consumption by to the public,860.0768561,TJ,N2O,0.6,kg/TJ,516.04611366,kg +8db3fcb5-2711-3573-bd89-40ebbf98a3c7,SESCO,II.1.1,Entre Rios,AR-E,annual,2011,naphtha combustion consumption by to the public,306.5155016,TJ,CO2,73300.0,kg/TJ,22467586.26728,kg +97e35318-e2b7-3e56-80a5-4ddfc536ec8c,SESCO,II.1.1,Entre Rios,AR-E,annual,2011,naphtha combustion consumption by to the public,306.5155016,TJ,CH4,3.0,kg/TJ,919.5465048,kg +27db26ae-a458-3331-b928-d80dec02c481,SESCO,II.1.1,Entre Rios,AR-E,annual,2011,naphtha combustion consumption by to the public,306.5155016,TJ,N2O,0.6,kg/TJ,183.90930096,kg +985c66c8-1add-377d-b36a-b134da51979f,SESCO,II.1.1,Formosa,AR-P,annual,2011,naphtha combustion consumption by to the public,111.9882995,TJ,CO2,73300.0,kg/TJ,8208742.3533499995,kg +f8bcf780-5645-39f8-9c5b-e2a96c3689a5,SESCO,II.1.1,Formosa,AR-P,annual,2011,naphtha combustion consumption by to the public,111.9882995,TJ,CH4,3.0,kg/TJ,335.9648985,kg +46c15e38-853d-3e0d-aada-a27d26401a69,SESCO,II.1.1,Formosa,AR-P,annual,2011,naphtha combustion consumption by to the public,111.9882995,TJ,N2O,0.6,kg/TJ,67.1929797,kg +5c89fb34-30ff-3f20-aeab-39d36fd92a38,SESCO,II.1.1,Jujuy,AR-Y,annual,2011,naphtha combustion consumption by to the public,35.3258444,TJ,CO2,73300.0,kg/TJ,2589384.39452,kg +c3ddb5cc-0468-36d7-9237-ee389ee9bacf,SESCO,II.1.1,Jujuy,AR-Y,annual,2011,naphtha combustion consumption by to the public,35.3258444,TJ,CH4,3.0,kg/TJ,105.97753320000001,kg +c75473b4-e0ee-3fff-b959-7440bf97ceda,SESCO,II.1.1,Jujuy,AR-Y,annual,2011,naphtha combustion consumption by to the public,35.3258444,TJ,N2O,0.6,kg/TJ,21.19550664,kg +0eb96a94-78a0-3a78-a4be-06fb6dc22045,SESCO,II.1.1,La Pampa,AR-L,annual,2011,naphtha combustion consumption by to the public,104.8358234,TJ,CO2,73300.0,kg/TJ,7684465.855219999,kg +8de191f8-da7f-370f-96d4-64220c0b44e4,SESCO,II.1.1,La Pampa,AR-L,annual,2011,naphtha combustion consumption by to the public,104.8358234,TJ,CH4,3.0,kg/TJ,314.5074702,kg +2477adb5-b1cf-3ca5-bc92-c055a3ffc836,SESCO,II.1.1,La Pampa,AR-L,annual,2011,naphtha combustion consumption by to the public,104.8358234,TJ,N2O,0.6,kg/TJ,62.901494039999996,kg +7383a20b-1b79-3657-b561-4f4e9193fe66,SESCO,II.1.1,La Rioja,AR-F,annual,2011,naphtha combustion consumption by to the public,57.79066369999999,TJ,CO2,73300.0,kg/TJ,4236055.6492099995,kg +cd74271f-abd6-3c79-96b9-2f5f0589bdf4,SESCO,II.1.1,La Rioja,AR-F,annual,2011,naphtha combustion consumption by to the public,57.79066369999999,TJ,CH4,3.0,kg/TJ,173.37199109999997,kg +a70ab89a-cb5e-36ca-84ec-c888618da33e,SESCO,II.1.1,La Rioja,AR-F,annual,2011,naphtha combustion consumption by to the public,57.79066369999999,TJ,N2O,0.6,kg/TJ,34.67439821999999,kg +453158c0-c83d-3837-8a62-835ced5d8efb,SESCO,II.1.1,Mendoza,AR-M,annual,2011,naphtha combustion consumption by to the public,214.43996419999996,TJ,CO2,73300.0,kg/TJ,15718449.375859998,kg +a221a42d-80de-3f04-87e1-c00398538e7c,SESCO,II.1.1,Mendoza,AR-M,annual,2011,naphtha combustion consumption by to the public,214.43996419999996,TJ,CH4,3.0,kg/TJ,643.3198925999999,kg +b2645734-5cb3-37ed-b5fd-11377e2c3ad1,SESCO,II.1.1,Mendoza,AR-M,annual,2011,naphtha combustion consumption by to the public,214.43996419999996,TJ,N2O,0.6,kg/TJ,128.66397851999997,kg +cc636d8e-b6e2-332c-8aac-ad1821eceb4e,SESCO,II.1.1,Misiones,AR-N,annual,2011,naphtha combustion consumption by to the public,175.9912077,TJ,CO2,73300.0,kg/TJ,12900155.52441,kg +1107722e-8d2d-36c7-af0a-1f2d0c10d056,SESCO,II.1.1,Misiones,AR-N,annual,2011,naphtha combustion consumption by to the public,175.9912077,TJ,CH4,3.0,kg/TJ,527.9736230999999,kg +84f928ed-a63b-3603-bc48-30ad3ed2b1b1,SESCO,II.1.1,Misiones,AR-N,annual,2011,naphtha combustion consumption by to the public,175.9912077,TJ,N2O,0.6,kg/TJ,105.59472462,kg +c966ba52-f947-32c2-9d26-0ef7fbad5f01,SESCO,II.1.1,Neuquén,AR-Q,annual,2011,naphtha combustion consumption by to the public,47.851072499999994,TJ,CO2,73300.0,kg/TJ,3507483.6142499996,kg +5010af71-63fa-3c18-ac58-2d4b0f9dace8,SESCO,II.1.1,Neuquén,AR-Q,annual,2011,naphtha combustion consumption by to the public,47.851072499999994,TJ,CH4,3.0,kg/TJ,143.5532175,kg +38337dfc-28c6-3405-9994-15c4b1684e97,SESCO,II.1.1,Neuquén,AR-Q,annual,2011,naphtha combustion consumption by to the public,47.851072499999994,TJ,N2O,0.6,kg/TJ,28.710643499999996,kg +3bd6946f-081b-3595-8003-ab88d82f111c,SESCO,II.1.1,Rio Negro,AR-R,annual,2011,naphtha combustion consumption by to the public,58.798054699999994,TJ,CO2,73300.0,kg/TJ,4309897.40951,kg +28477616-37e7-38fb-8657-94d8c1de00b5,SESCO,II.1.1,Rio Negro,AR-R,annual,2011,naphtha combustion consumption by to the public,58.798054699999994,TJ,CH4,3.0,kg/TJ,176.39416409999998,kg +34dbe02d-7696-3199-9e80-20905995e650,SESCO,II.1.1,Rio Negro,AR-R,annual,2011,naphtha combustion consumption by to the public,58.798054699999994,TJ,N2O,0.6,kg/TJ,35.27883282,kg +b06a1244-0263-3d35-b017-85783ffc1258,SESCO,II.1.1,Salta,AR-A,annual,2011,naphtha combustion consumption by to the public,70.0472542,TJ,CO2,73300.0,kg/TJ,5134463.73286,kg +6986836b-0264-3763-bb97-747d15ea1326,SESCO,II.1.1,Salta,AR-A,annual,2011,naphtha combustion consumption by to the public,70.0472542,TJ,CH4,3.0,kg/TJ,210.1417626,kg +9ffdf52e-1818-3880-b0e5-43c6776ccf39,SESCO,II.1.1,Salta,AR-A,annual,2011,naphtha combustion consumption by to the public,70.0472542,TJ,N2O,0.6,kg/TJ,42.02835252,kg +349d406a-6aa7-3eb5-a13c-7403f4110a85,SESCO,II.1.1,San Juan,AR-J,annual,2011,naphtha combustion consumption by to the public,40.53069789999999,TJ,CO2,73300.0,kg/TJ,2970900.1560699996,kg +a073fb92-b3a6-3077-817e-3b671e7ecae1,SESCO,II.1.1,San Juan,AR-J,annual,2011,naphtha combustion consumption by to the public,40.53069789999999,TJ,CH4,3.0,kg/TJ,121.59209369999998,kg +f4cbe1f6-d012-37c9-a9e4-683b18b6e5c3,SESCO,II.1.1,San Juan,AR-J,annual,2011,naphtha combustion consumption by to the public,40.53069789999999,TJ,N2O,0.6,kg/TJ,24.318418739999995,kg +fcd0e542-254c-3682-907e-c3c2f8f04b28,SESCO,II.1.1,San Luis,AR-D,annual,2011,naphtha combustion consumption by to the public,3.5930278999999996,TJ,CO2,73300.0,kg/TJ,263368.94506999996,kg +b7072578-4fd0-370d-b1a2-5d9da14c8f19,SESCO,II.1.1,San Luis,AR-D,annual,2011,naphtha combustion consumption by to the public,3.5930278999999996,TJ,CH4,3.0,kg/TJ,10.7790837,kg +b3602816-5b0e-3b60-a024-9698456fa3ba,SESCO,II.1.1,San Luis,AR-D,annual,2011,naphtha combustion consumption by to the public,3.5930278999999996,TJ,N2O,0.6,kg/TJ,2.1558167399999997,kg +64fcee28-0d7e-340f-a439-7e1dcf0974d3,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2011,naphtha combustion consumption by to the public,0.2350579,TJ,CO2,73300.0,kg/TJ,17229.74407,kg +1bfa39e6-c4ce-3196-bdf3-2fd161e0de52,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2011,naphtha combustion consumption by to the public,0.2350579,TJ,CH4,3.0,kg/TJ,0.7051737,kg +d13c44b0-dafc-3c7b-a941-1fd832929b24,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2011,naphtha combustion consumption by to the public,0.2350579,TJ,N2O,0.6,kg/TJ,0.14103474,kg +f4707bee-903b-31ee-8df5-26931361ba50,SESCO,II.1.1,Santa Fe,AR-S,annual,2011,naphtha combustion consumption by to the public,1239.6617849,TJ,CO2,73300.0,kg/TJ,90867208.83317,kg +8a5c9c5b-a9c1-39d1-9131-50ad5fa23e30,SESCO,II.1.1,Santa Fe,AR-S,annual,2011,naphtha combustion consumption by to the public,1239.6617849,TJ,CH4,3.0,kg/TJ,3718.9853547,kg +9bbd8654-b3db-33f3-8f64-7194da593f4e,SESCO,II.1.1,Santa Fe,AR-S,annual,2011,naphtha combustion consumption by to the public,1239.6617849,TJ,N2O,0.6,kg/TJ,743.7970709399999,kg +9c3240d8-e91b-3c6e-a8bc-74bc8fb1053a,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2011,naphtha combustion consumption by to the public,121.49135459999998,TJ,CO2,73300.0,kg/TJ,8905316.292179998,kg +539c9eb4-7f76-3c71-937a-1aeb72f3b2f3,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2011,naphtha combustion consumption by to the public,121.49135459999998,TJ,CH4,3.0,kg/TJ,364.47406379999995,kg +1ce53173-7124-32de-a89d-79c62d6187bc,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2011,naphtha combustion consumption by to the public,121.49135459999998,TJ,N2O,0.6,kg/TJ,72.89481275999998,kg +4ea54b8c-e5dc-3bd9-a21d-d964b488f926,SESCO,II.1.1,Tucuman,AR-T,annual,2011,naphtha combustion consumption by to the public,218.2344703,TJ,CO2,73300.0,kg/TJ,15996586.67299,kg +23a244ec-72f7-3987-b732-ff457ae155db,SESCO,II.1.1,Tucuman,AR-T,annual,2011,naphtha combustion consumption by to the public,218.2344703,TJ,CH4,3.0,kg/TJ,654.7034109,kg +6a21ba9b-4e05-3be6-8a23-9828244fa03c,SESCO,II.1.1,Tucuman,AR-T,annual,2011,naphtha combustion consumption by to the public,218.2344703,TJ,N2O,0.6,kg/TJ,130.94068217999998,kg +56524a60-7e3c-3dfa-b4d5-f8e5c79bd3fb,SESCO,II.5.1,Buenos Aires,AR-B,annual,2011,naphtha combustion consumption by agriculture machines,17.293545499999997,TJ,CO2,73300.0,kg/TJ,1267616.8851499998,kg +42e81338-1f7b-39fe-bf9f-e58410a49e5d,SESCO,II.5.1,Buenos Aires,AR-B,annual,2011,naphtha combustion consumption by agriculture machines,17.293545499999997,TJ,CH4,3.0,kg/TJ,51.880636499999994,kg +0b5340f5-718e-34aa-9eb4-8969fa44e30a,SESCO,II.5.1,Buenos Aires,AR-B,annual,2011,naphtha combustion consumption by agriculture machines,17.293545499999997,TJ,N2O,0.6,kg/TJ,10.376127299999998,kg +e744dd87-edba-3316-a90a-4d7a92f9f84c,SESCO,II.5.1,Entre Rios,AR-E,annual,2011,naphtha combustion consumption by agriculture machines,3.8952451999999997,TJ,CO2,73300.0,kg/TJ,285521.47316,kg +edbdd079-7d55-3720-90b2-a6416c3e1148,SESCO,II.5.1,Entre Rios,AR-E,annual,2011,naphtha combustion consumption by agriculture machines,3.8952451999999997,TJ,CH4,3.0,kg/TJ,11.6857356,kg +e750638e-ffb4-3931-adca-4fc3028d3f77,SESCO,II.5.1,Entre Rios,AR-E,annual,2011,naphtha combustion consumption by agriculture machines,3.8952451999999997,TJ,N2O,0.6,kg/TJ,2.3371471199999996,kg +33c3ed0e-e048-3c2a-a980-7867e2b14d8a,SESCO,II.5.1,Jujuy,AR-Y,annual,2011,naphtha combustion consumption by agriculture machines,0.7723330999999999,TJ,CO2,73300.0,kg/TJ,56612.016229999994,kg +aede0689-de0f-39ab-9174-3d1ff393c454,SESCO,II.5.1,Jujuy,AR-Y,annual,2011,naphtha combustion consumption by agriculture machines,0.7723330999999999,TJ,CH4,3.0,kg/TJ,2.3169992999999995,kg +65269be0-a233-3fe1-9c19-0dfb07951b27,SESCO,II.5.1,Jujuy,AR-Y,annual,2011,naphtha combustion consumption by agriculture machines,0.7723330999999999,TJ,N2O,0.6,kg/TJ,0.4633998599999999,kg +78abb994-3f5d-3c99-bd2a-37066e645bb8,SESCO,II.5.1,La Pampa,AR-L,annual,2011,naphtha combustion consumption by agriculture machines,1.5782459,TJ,CO2,73300.0,kg/TJ,115685.42447,kg +4712fc31-dcf8-38a2-b934-47745dffd940,SESCO,II.5.1,La Pampa,AR-L,annual,2011,naphtha combustion consumption by agriculture machines,1.5782459,TJ,CH4,3.0,kg/TJ,4.7347377,kg +ba2a9e55-3798-3ccb-90cd-7ce45e6a06be,SESCO,II.5.1,La Pampa,AR-L,annual,2011,naphtha combustion consumption by agriculture machines,1.5782459,TJ,N2O,0.6,kg/TJ,0.9469475399999999,kg +f33e89da-9bba-3e76-8b9d-60ce3a30bc3b,SESCO,II.5.1,Salta,AR-A,annual,2011,naphtha combustion consumption by agriculture machines,0.8730722,TJ,CO2,73300.0,kg/TJ,63996.192259999996,kg +92d96a57-7261-3c65-b21f-2a68a4f78921,SESCO,II.5.1,Salta,AR-A,annual,2011,naphtha combustion consumption by agriculture machines,0.8730722,TJ,CH4,3.0,kg/TJ,2.6192165999999997,kg +84fa2ddd-c409-30e9-9f20-10937707ea38,SESCO,II.5.1,Salta,AR-A,annual,2011,naphtha combustion consumption by agriculture machines,0.8730722,TJ,N2O,0.6,kg/TJ,0.52384332,kg +2d36d463-4d6f-35d9-bb24-dfee6cfc6fd7,SESCO,II.5.1,Santa Fe,AR-S,annual,2011,naphtha combustion consumption by agriculture machines,77.23330999999999,TJ,CO2,73300.0,kg/TJ,5661201.622999999,kg +d438f057-275f-35f7-87e6-6a41e9eb4fad,SESCO,II.5.1,Santa Fe,AR-S,annual,2011,naphtha combustion consumption by agriculture machines,77.23330999999999,TJ,CH4,3.0,kg/TJ,231.69992999999997,kg +67f031d5-4b09-3443-9284-e00857468021,SESCO,II.5.1,Santa Fe,AR-S,annual,2011,naphtha combustion consumption by agriculture machines,77.23330999999999,TJ,N2O,0.6,kg/TJ,46.33998599999999,kg +aba82722-0395-35d4-81ea-a075733cd41f,SESCO,II.5.1,Santiago del Estero,AR-G,annual,2011,naphtha combustion consumption by agriculture machines,1.2760285999999998,TJ,CO2,73300.0,kg/TJ,93532.89637999999,kg +d7f53cee-ebaa-3ade-9a1d-ff9f36c6d89c,SESCO,II.5.1,Santiago del Estero,AR-G,annual,2011,naphtha combustion consumption by agriculture machines,1.2760285999999998,TJ,CH4,3.0,kg/TJ,3.8280857999999993,kg +5cfa9cb1-9ce4-3d88-b882-a6b92623f52a,SESCO,II.5.1,Santiago del Estero,AR-G,annual,2011,naphtha combustion consumption by agriculture machines,1.2760285999999998,TJ,N2O,0.6,kg/TJ,0.7656171599999999,kg +cba776d8-d41d-3aa1-a4ec-29ab17092cc7,SESCO,II.5.1,Buenos Aires,AR-B,annual,2011,naphtha combustion consumption by agriculture machines,0.4701158,TJ,CO2,73300.0,kg/TJ,34459.48814,kg +c30a48b6-6a15-3c08-b71b-986f697921ae,SESCO,II.5.1,Buenos Aires,AR-B,annual,2011,naphtha combustion consumption by agriculture machines,0.4701158,TJ,CH4,3.0,kg/TJ,1.4103474,kg +72c0a3f8-25df-3d2e-8016-af115baf906f,SESCO,II.5.1,Buenos Aires,AR-B,annual,2011,naphtha combustion consumption by agriculture machines,0.4701158,TJ,N2O,0.6,kg/TJ,0.28206948,kg +f82422d4-6aba-320b-b5bd-812a30c0aa64,SESCO,II.1.1,Buenos Aires,AR-B,annual,2011,naphtha combustion consumption by to the public,18.166617699999996,TJ,CO2,73300.0,kg/TJ,1331613.0774099997,kg +f10b0af8-84c2-33cc-ad02-f92baae5f869,SESCO,II.1.1,Buenos Aires,AR-B,annual,2011,naphtha combustion consumption by to the public,18.166617699999996,TJ,CH4,3.0,kg/TJ,54.49985309999999,kg +74cf159b-e171-37ea-a3e6-0665384e26ff,SESCO,II.1.1,Buenos Aires,AR-B,annual,2011,naphtha combustion consumption by to the public,18.166617699999996,TJ,N2O,0.6,kg/TJ,10.899970619999998,kg +266ebcfb-ca8f-3004-b355-9d380401738b,SESCO,II.1.1,Capital Federal,AR-C,annual,2011,naphtha combustion consumption by to the public,7.555432499999999,TJ,CO2,73300.0,kg/TJ,553813.20225,kg +877f8544-e1ec-360e-af02-928018f8dd17,SESCO,II.1.1,Capital Federal,AR-C,annual,2011,naphtha combustion consumption by to the public,7.555432499999999,TJ,CH4,3.0,kg/TJ,22.6662975,kg +b9855fb2-5eed-35c4-a9e7-c729136cb16d,SESCO,II.1.1,Capital Federal,AR-C,annual,2011,naphtha combustion consumption by to the public,7.555432499999999,TJ,N2O,0.6,kg/TJ,4.5332595,kg +2a605ac3-2889-3a39-bb71-95d8d61fe460,SESCO,II.1.1,Chaco,AR-H,annual,2011,naphtha combustion consumption by to the public,0.5372752,TJ,CO2,73300.0,kg/TJ,39382.27215999999,kg +c2b1c7cb-880e-33a9-ac12-8277308079ae,SESCO,II.1.1,Chaco,AR-H,annual,2011,naphtha combustion consumption by to the public,0.5372752,TJ,CH4,3.0,kg/TJ,1.6118256,kg +d2faac08-e588-3f3d-ae96-7af971ed6bbe,SESCO,II.1.1,Chaco,AR-H,annual,2011,naphtha combustion consumption by to the public,0.5372752,TJ,N2O,0.6,kg/TJ,0.32236511999999995,kg +32f21eb5-2f8c-3525-8a35-8f8f7ac36c47,SESCO,II.1.1,Entre Rios,AR-E,annual,2011,naphtha combustion consumption by to the public,0.7051736999999999,TJ,CO2,73300.0,kg/TJ,51689.232209999995,kg +f8584169-6dda-3fdf-8f6b-f0fe6cb2013e,SESCO,II.1.1,Entre Rios,AR-E,annual,2011,naphtha combustion consumption by to the public,0.7051736999999999,TJ,CH4,3.0,kg/TJ,2.1155210999999996,kg +e9ee62f7-1aa8-34b6-9b8c-8fdef327dd65,SESCO,II.1.1,Entre Rios,AR-E,annual,2011,naphtha combustion consumption by to the public,0.7051736999999999,TJ,N2O,0.6,kg/TJ,0.4231042199999999,kg +c8665a18-49c2-37d1-8e3c-ebfe91678829,SESCO,II.1.1,Jujuy,AR-Y,annual,2011,naphtha combustion consumption by to the public,0.2350579,TJ,CO2,73300.0,kg/TJ,17229.74407,kg +5831ef9f-51a5-32bf-a25f-c995044dee46,SESCO,II.1.1,Jujuy,AR-Y,annual,2011,naphtha combustion consumption by to the public,0.2350579,TJ,CH4,3.0,kg/TJ,0.7051737,kg +ce05f4fe-e30a-3b4c-bd86-e3d9ed9cdbe6,SESCO,II.1.1,Jujuy,AR-Y,annual,2011,naphtha combustion consumption by to the public,0.2350579,TJ,N2O,0.6,kg/TJ,0.14103474,kg +2e0113a4-aa83-3c7b-a75d-654e31dc7598,SESCO,II.1.1,Misiones,AR-N,annual,2011,naphtha combustion consumption by to the public,2.686376,TJ,CO2,73300.0,kg/TJ,196911.3608,kg +5035d006-3b22-336e-8534-9d96a2cb3833,SESCO,II.1.1,Misiones,AR-N,annual,2011,naphtha combustion consumption by to the public,2.686376,TJ,CH4,3.0,kg/TJ,8.059128000000001,kg +3586b78b-dba9-3fa2-8c2e-4e026d61272a,SESCO,II.1.1,Misiones,AR-N,annual,2011,naphtha combustion consumption by to the public,2.686376,TJ,N2O,0.6,kg/TJ,1.6118256,kg +1aadefec-9217-36ac-8c91-b5bdb0b7c5c4,SESCO,II.1.1,Salta,AR-A,annual,2011,naphtha combustion consumption by to the public,0.0671594,TJ,CO2,73300.0,kg/TJ,4922.784019999999,kg +384100e2-ba09-3074-8f77-901bda5d1d2f,SESCO,II.1.1,Salta,AR-A,annual,2011,naphtha combustion consumption by to the public,0.0671594,TJ,CH4,3.0,kg/TJ,0.2014782,kg +2226a6d7-41e4-3a35-bfb7-3f6f7c48fb9c,SESCO,II.1.1,Salta,AR-A,annual,2011,naphtha combustion consumption by to the public,0.0671594,TJ,N2O,0.6,kg/TJ,0.040295639999999994,kg +fca1ab8d-7c2e-3cdf-87a5-751984fefc7c,SESCO,II.1.1,Santa Fe,AR-S,annual,2011,naphtha combustion consumption by to the public,3.0557526999999998,TJ,CO2,73300.0,kg/TJ,223986.67291,kg +800d1203-e696-33ff-9056-e97dd8dee05d,SESCO,II.1.1,Santa Fe,AR-S,annual,2011,naphtha combustion consumption by to the public,3.0557526999999998,TJ,CH4,3.0,kg/TJ,9.1672581,kg +4bfd9f6b-5683-3037-b69e-c5a21adcc9a0,SESCO,II.1.1,Santa Fe,AR-S,annual,2011,naphtha combustion consumption by to the public,3.0557526999999998,TJ,N2O,0.6,kg/TJ,1.8334516199999997,kg +30aee469-f809-3830-abeb-831737f24a9b,SESCO,II.1.1,Buenos Aires,AR-B,annual,2011,naphtha combustion consumption by to the public,32328.688276499997,TJ,CO2,73300.0,kg/TJ,2369692850.66745,kg +841b207d-0b61-3dd6-90b8-0b7691a321b1,SESCO,II.1.1,Buenos Aires,AR-B,annual,2011,naphtha combustion consumption by to the public,32328.688276499997,TJ,CH4,3.0,kg/TJ,96986.06482949998,kg +a43337e4-56d4-33f7-81a3-5acb133b6cde,SESCO,II.1.1,Buenos Aires,AR-B,annual,2011,naphtha combustion consumption by to the public,32328.688276499997,TJ,N2O,0.6,kg/TJ,19397.2129659,kg +dcff5f2f-6dce-3bb2-a829-3e2da6dfed5c,SESCO,II.1.1,Capital Federal,AR-C,annual,2011,naphtha combustion consumption by to the public,7089.2791046,TJ,CO2,73300.0,kg/TJ,519644158.36718,kg +bcf33087-0a4a-35e1-a68c-8e6aba14df54,SESCO,II.1.1,Capital Federal,AR-C,annual,2011,naphtha combustion consumption by to the public,7089.2791046,TJ,CH4,3.0,kg/TJ,21267.837313800002,kg +ca03a49c-11fd-3edd-8f6c-cdba131197fa,SESCO,II.1.1,Capital Federal,AR-C,annual,2011,naphtha combustion consumption by to the public,7089.2791046,TJ,N2O,0.6,kg/TJ,4253.56746276,kg +f6f3a8ef-7a0b-3a9b-ba74-4d52b4394a4f,SESCO,II.1.1,Catamarca,AR-K,annual,2011,naphtha combustion consumption by to the public,523.4067838999999,TJ,CO2,73300.0,kg/TJ,38365717.25986999,kg +25a27b4c-a307-3e6e-bc4a-ae10d89ac1bf,SESCO,II.1.1,Catamarca,AR-K,annual,2011,naphtha combustion consumption by to the public,523.4067838999999,TJ,CH4,3.0,kg/TJ,1570.2203516999998,kg +00308e7c-9c3b-3741-8be0-bf3f56efb51c,SESCO,II.1.1,Catamarca,AR-K,annual,2011,naphtha combustion consumption by to the public,523.4067838999999,TJ,N2O,0.6,kg/TJ,314.04407033999996,kg +d4f58969-059f-379f-bc29-f3aac31f39b0,SESCO,II.1.1,Chaco,AR-H,annual,2011,naphtha combustion consumption by to the public,1784.3245189,TJ,CO2,73300.0,kg/TJ,130790987.23537,kg +0c2fe060-28f1-3fc9-8341-c3ddf46fe1da,SESCO,II.1.1,Chaco,AR-H,annual,2011,naphtha combustion consumption by to the public,1784.3245189,TJ,CH4,3.0,kg/TJ,5352.9735567,kg +9d5ea273-bb33-38c1-8442-17f98a5e24e0,SESCO,II.1.1,Chaco,AR-H,annual,2011,naphtha combustion consumption by to the public,1784.3245189,TJ,N2O,0.6,kg/TJ,1070.59471134,kg +ea589a9b-f37b-3a31-9049-fdaeb995ff96,SESCO,II.1.1,Chubut,AR-U,annual,2011,naphtha combustion consumption by to the public,3240.7432673,TJ,CO2,73300.0,kg/TJ,237546481.49308997,kg +e6f0b0a0-3297-3810-8901-da7e7a078b7a,SESCO,II.1.1,Chubut,AR-U,annual,2011,naphtha combustion consumption by to the public,3240.7432673,TJ,CH4,3.0,kg/TJ,9722.229801899999,kg +c6b1cc7b-0655-3b11-9fa3-c1f8faf12c7a,SESCO,II.1.1,Chubut,AR-U,annual,2011,naphtha combustion consumption by to the public,3240.7432673,TJ,N2O,0.6,kg/TJ,1944.4459603799999,kg +9b9691e7-c838-3ddf-9c7c-a0f90553620e,SESCO,II.1.1,Corrientes,AR-W,annual,2011,naphtha combustion consumption by to the public,2013.5731308,TJ,CO2,73300.0,kg/TJ,147594910.48764,kg +b3402a3f-b3d5-3958-bfc7-f9909fb3ddcc,SESCO,II.1.1,Corrientes,AR-W,annual,2011,naphtha combustion consumption by to the public,2013.5731308,TJ,CH4,3.0,kg/TJ,6040.7193924,kg +088847a3-38aa-3c58-bf58-d312b963659f,SESCO,II.1.1,Corrientes,AR-W,annual,2011,naphtha combustion consumption by to the public,2013.5731308,TJ,N2O,0.6,kg/TJ,1208.14387848,kg +5ac2ca27-689a-35df-bfc9-a480da66d0f6,SESCO,II.1.1,Córdoba,AR-X,annual,2011,naphtha combustion consumption by to the public,8267.322139999998,TJ,CO2,73300.0,kg/TJ,605994712.8619999,kg +b80f5401-b2ae-316e-a3dc-10f23594d09b,SESCO,II.1.1,Córdoba,AR-X,annual,2011,naphtha combustion consumption by to the public,8267.322139999998,TJ,CH4,3.0,kg/TJ,24801.966419999997,kg +40559397-0ca9-3fb7-93e7-1783f31e020c,SESCO,II.1.1,Córdoba,AR-X,annual,2011,naphtha combustion consumption by to the public,8267.322139999998,TJ,N2O,0.6,kg/TJ,4960.393283999999,kg +b4f119ae-bcc9-3db0-a4cc-abd0a12ddaa3,SESCO,II.1.1,Entre Rios,AR-E,annual,2011,naphtha combustion consumption by to the public,2347.0867111999996,TJ,CO2,73300.0,kg/TJ,172041455.93095997,kg +76886a45-966e-3563-afc6-1e21d3a1d04e,SESCO,II.1.1,Entre Rios,AR-E,annual,2011,naphtha combustion consumption by to the public,2347.0867111999996,TJ,CH4,3.0,kg/TJ,7041.260133599999,kg +fd2d52c3-30d6-3f9a-aa4b-36100da440e1,SESCO,II.1.1,Entre Rios,AR-E,annual,2011,naphtha combustion consumption by to the public,2347.0867111999996,TJ,N2O,0.6,kg/TJ,1408.2520267199998,kg +40fcd966-6fa9-3486-9939-0d14f7b0b79a,SESCO,II.1.1,Formosa,AR-P,annual,2011,naphtha combustion consumption by to the public,744.797746,TJ,CO2,73300.0,kg/TJ,54593674.781799994,kg +cae1c21e-1b1a-315d-9d04-79c61c52eea9,SESCO,II.1.1,Formosa,AR-P,annual,2011,naphtha combustion consumption by to the public,744.797746,TJ,CH4,3.0,kg/TJ,2234.3932379999997,kg +46afe825-067a-3342-8db2-0d3eed12ad29,SESCO,II.1.1,Formosa,AR-P,annual,2011,naphtha combustion consumption by to the public,744.797746,TJ,N2O,0.6,kg/TJ,446.87864759999997,kg +6a5f6c52-fb93-3ce7-a1d0-6655c8dd92ed,SESCO,II.1.1,Jujuy,AR-Y,annual,2011,naphtha combustion consumption by to the public,928.1093282999999,TJ,CO2,73300.0,kg/TJ,68030413.76438999,kg +6d01e9bd-84e5-38ae-bba1-5201c1827f82,SESCO,II.1.1,Jujuy,AR-Y,annual,2011,naphtha combustion consumption by to the public,928.1093282999999,TJ,CH4,3.0,kg/TJ,2784.3279848999996,kg +27ead714-24c7-340e-a1c2-901668eb6f97,SESCO,II.1.1,Jujuy,AR-Y,annual,2011,naphtha combustion consumption by to the public,928.1093282999999,TJ,N2O,0.6,kg/TJ,556.86559698,kg +74fcd6c7-0a84-387a-8151-8a73b447b42b,SESCO,II.1.1,La Pampa,AR-L,annual,2011,naphtha combustion consumption by to the public,1372.5366577999998,TJ,CO2,73300.0,kg/TJ,100606937.01674,kg +b929e470-afbb-37bc-91b5-31c9cd899482,SESCO,II.1.1,La Pampa,AR-L,annual,2011,naphtha combustion consumption by to the public,1372.5366577999998,TJ,CH4,3.0,kg/TJ,4117.6099734,kg +35819d58-3d3b-308a-9241-b3ff1c8f1ea2,SESCO,II.1.1,La Pampa,AR-L,annual,2011,naphtha combustion consumption by to the public,1372.5366577999998,TJ,N2O,0.6,kg/TJ,823.5219946799999,kg +1da6d506-26bf-3c1e-bb4e-0c96bc0c842e,SESCO,II.1.1,La Rioja,AR-F,annual,2011,naphtha combustion consumption by to the public,755.8118876,TJ,CO2,73300.0,kg/TJ,55401011.36108,kg +809905f4-33d2-3c5f-9563-3f0f488274ff,SESCO,II.1.1,La Rioja,AR-F,annual,2011,naphtha combustion consumption by to the public,755.8118876,TJ,CH4,3.0,kg/TJ,2267.4356628,kg +f31c3570-4532-3082-b429-367150d75efc,SESCO,II.1.1,La Rioja,AR-F,annual,2011,naphtha combustion consumption by to the public,755.8118876,TJ,N2O,0.6,kg/TJ,453.48713255999996,kg +2ea9ad07-a164-350f-914c-7ac967ce6ba5,SESCO,II.1.1,Mendoza,AR-M,annual,2011,naphtha combustion consumption by to the public,4034.1979985999997,TJ,CO2,73300.0,kg/TJ,295706713.29738,kg +2fa3fefe-c6db-3e3a-80ed-cb76fc67f731,SESCO,II.1.1,Mendoza,AR-M,annual,2011,naphtha combustion consumption by to the public,4034.1979985999997,TJ,CH4,3.0,kg/TJ,12102.593995799998,kg +3375fea6-a8b4-36d9-8f34-c6a1ce51356b,SESCO,II.1.1,Mendoza,AR-M,annual,2011,naphtha combustion consumption by to the public,4034.1979985999997,TJ,N2O,0.6,kg/TJ,2420.5187991599996,kg +97377765-5057-3e68-a5df-23908c69efaf,SESCO,II.1.1,Misiones,AR-N,annual,2011,naphtha combustion consumption by to the public,2522.3727451999994,TJ,CO2,73300.0,kg/TJ,184889922.22315997,kg +eba1c0cf-6671-34c4-830e-9cc15954ca5c,SESCO,II.1.1,Misiones,AR-N,annual,2011,naphtha combustion consumption by to the public,2522.3727451999994,TJ,CH4,3.0,kg/TJ,7567.118235599998,kg +9ea20c65-0e29-3de3-b82c-222cd239eec2,SESCO,II.1.1,Misiones,AR-N,annual,2011,naphtha combustion consumption by to the public,2522.3727451999994,TJ,N2O,0.6,kg/TJ,1513.4236471199995,kg +85a52326-4a4f-3b02-b76e-932aee2f7b6a,SESCO,II.1.1,Neuquén,AR-Q,annual,2011,naphtha combustion consumption by to the public,2478.8198743,TJ,CO2,73300.0,kg/TJ,181697496.78618997,kg +1c678912-3890-3bed-8b13-deaf00c7c88c,SESCO,II.1.1,Neuquén,AR-Q,annual,2011,naphtha combustion consumption by to the public,2478.8198743,TJ,CH4,3.0,kg/TJ,7436.4596229,kg +773c900b-b4dd-34a8-8a9e-05ef051092f2,SESCO,II.1.1,Neuquén,AR-Q,annual,2011,naphtha combustion consumption by to the public,2478.8198743,TJ,N2O,0.6,kg/TJ,1487.2919245799999,kg +6b1ae084-ecb0-3ec3-b3dd-fc261ce5636d,SESCO,II.1.1,Rio Negro,AR-R,annual,2011,naphtha combustion consumption by to the public,2495.9119416,TJ,CO2,73300.0,kg/TJ,182950345.31928,kg +a6d9a7b4-8525-3be4-966c-f4e0ef4726d8,SESCO,II.1.1,Rio Negro,AR-R,annual,2011,naphtha combustion consumption by to the public,2495.9119416,TJ,CH4,3.0,kg/TJ,7487.7358248,kg +da1c9d6d-15bf-3bea-921f-e333802e0138,SESCO,II.1.1,Rio Negro,AR-R,annual,2011,naphtha combustion consumption by to the public,2495.9119416,TJ,N2O,0.6,kg/TJ,1497.54716496,kg +16bd459e-75c5-3312-897d-bcffb97435d8,SESCO,II.1.1,Salta,AR-A,annual,2011,naphtha combustion consumption by to the public,1942.9550216999999,TJ,CO2,73300.0,kg/TJ,142418603.09061,kg +32dcce44-fee4-3b89-a85d-4ab960bb56ce,SESCO,II.1.1,Salta,AR-A,annual,2011,naphtha combustion consumption by to the public,1942.9550216999999,TJ,CH4,3.0,kg/TJ,5828.8650651,kg +918694b7-1fd7-3d2d-bff4-c89002e979e3,SESCO,II.1.1,Salta,AR-A,annual,2011,naphtha combustion consumption by to the public,1942.9550216999999,TJ,N2O,0.6,kg/TJ,1165.7730130199998,kg +ce4fceb0-d3e7-3882-96eb-ca8603b8fb6d,SESCO,II.1.1,San Juan,AR-J,annual,2011,naphtha combustion consumption by to the public,1256.7874318999998,TJ,CO2,73300.0,kg/TJ,92122518.75826998,kg +52a24759-740e-3bae-863d-a884600ffb86,SESCO,II.1.1,San Juan,AR-J,annual,2011,naphtha combustion consumption by to the public,1256.7874318999998,TJ,CH4,3.0,kg/TJ,3770.3622956999993,kg +3cbee838-86ff-3f21-9b40-819bf530e128,SESCO,II.1.1,San Juan,AR-J,annual,2011,naphtha combustion consumption by to the public,1256.7874318999998,TJ,N2O,0.6,kg/TJ,754.0724591399999,kg +6189997e-97b3-31fc-95d0-0937cb47fda9,SESCO,II.1.1,San Luis,AR-D,annual,2011,naphtha combustion consumption by to the public,1068.5732134,TJ,CO2,73300.0,kg/TJ,78326416.54222,kg +9a950f78-bac7-3eff-93bf-1b469a7c18ec,SESCO,II.1.1,San Luis,AR-D,annual,2011,naphtha combustion consumption by to the public,1068.5732134,TJ,CH4,3.0,kg/TJ,3205.7196402,kg +82055917-aed1-3c15-b228-6fd9b025b6a0,SESCO,II.1.1,San Luis,AR-D,annual,2011,naphtha combustion consumption by to the public,1068.5732134,TJ,N2O,0.6,kg/TJ,641.14392804,kg +983c0e6d-7a90-317b-9c59-4a6c832e795b,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2011,naphtha combustion consumption by to the public,2279.7929924,TJ,CO2,73300.0,kg/TJ,167108826.34292,kg +e14d2800-9b88-336f-b802-c247b51a3ce4,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2011,naphtha combustion consumption by to the public,2279.7929924,TJ,CH4,3.0,kg/TJ,6839.3789772,kg +18055bbc-8e11-3d76-8899-5bb1f330ea4b,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2011,naphtha combustion consumption by to the public,2279.7929924,TJ,N2O,0.6,kg/TJ,1367.87579544,kg +8d710c8b-42ec-32ff-9577-179f6b9b0302,SESCO,II.1.1,Santa Fe,AR-S,annual,2011,naphtha combustion consumption by to the public,5758.045477799999,TJ,CO2,73300.0,kg/TJ,422064733.52273995,kg +64979bbb-032e-333d-aad6-95fd5164bc80,SESCO,II.1.1,Santa Fe,AR-S,annual,2011,naphtha combustion consumption by to the public,5758.045477799999,TJ,CH4,3.0,kg/TJ,17274.1364334,kg +4e4da11a-8cac-3086-8914-193750b8dd4b,SESCO,II.1.1,Santa Fe,AR-S,annual,2011,naphtha combustion consumption by to the public,5758.045477799999,TJ,N2O,0.6,kg/TJ,3454.8272866799994,kg +eb4e4713-3ce1-3d80-8531-029111a32435,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2011,naphtha combustion consumption by to the public,862.5617538999999,TJ,CO2,73300.0,kg/TJ,63225776.56086999,kg +f5e33de9-e64c-37e1-8e26-5e27486982e2,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2011,naphtha combustion consumption by to the public,862.5617538999999,TJ,CH4,3.0,kg/TJ,2587.6852616999995,kg +37c3b36c-30c9-32f3-af60-eb52a31c39b1,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2011,naphtha combustion consumption by to the public,862.5617538999999,TJ,N2O,0.6,kg/TJ,517.53705234,kg +e560279d-6dc4-322b-9fbb-16e9315698f0,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2011,naphtha combustion consumption by to the public,1719.9858136999999,TJ,CO2,73300.0,kg/TJ,126074960.14421,kg +5ce46576-0b10-3cba-b961-00aa6f386b37,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2011,naphtha combustion consumption by to the public,1719.9858136999999,TJ,CH4,3.0,kg/TJ,5159.957441099999,kg +70a14770-32c2-3f15-8095-4c9157e885b9,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2011,naphtha combustion consumption by to the public,1719.9858136999999,TJ,N2O,0.6,kg/TJ,1031.9914882199998,kg +dccc76e5-4087-37f3-a3d8-c5f3105e92db,SESCO,II.1.1,Tucuman,AR-T,annual,2011,naphtha combustion consumption by to the public,1680.6304052999997,TJ,CO2,73300.0,kg/TJ,123190208.70848997,kg +15ab4a92-d009-37dc-a289-674837f1c671,SESCO,II.1.1,Tucuman,AR-T,annual,2011,naphtha combustion consumption by to the public,1680.6304052999997,TJ,CH4,3.0,kg/TJ,5041.891215899999,kg +ea6b0978-31f7-3c5f-96a2-465476703415,SESCO,II.1.1,Tucuman,AR-T,annual,2011,naphtha combustion consumption by to the public,1680.6304052999997,TJ,N2O,0.6,kg/TJ,1008.3782431799998,kg +949e04f3-25fc-3f22-b6b5-d89a9f020ccd,SESCO,II.1.1,Buenos Aires,AR-B,annual,2011,naphtha combustion consumption by to the public,14564.1539043,TJ,CO2,73300.0,kg/TJ,1067552481.18519,kg +c9b7710a-abaa-333f-88b5-d46725cb8e33,SESCO,II.1.1,Buenos Aires,AR-B,annual,2011,naphtha combustion consumption by to the public,14564.1539043,TJ,CH4,3.0,kg/TJ,43692.461712899996,kg +a6a7b60a-4df7-3abf-ac21-f25f5079432b,SESCO,II.1.1,Buenos Aires,AR-B,annual,2011,naphtha combustion consumption by to the public,14564.1539043,TJ,N2O,0.6,kg/TJ,8738.492342579999,kg +53bc616f-62e5-3bed-82f9-3f2cd4bf2691,SESCO,II.1.1,Capital Federal,AR-C,annual,2011,naphtha combustion consumption by to the public,3199.5073957,TJ,CO2,73300.0,kg/TJ,234523892.10481,kg +adb1bbe5-7aca-3587-abf4-d3c44be079c1,SESCO,II.1.1,Capital Federal,AR-C,annual,2011,naphtha combustion consumption by to the public,3199.5073957,TJ,CH4,3.0,kg/TJ,9598.5221871,kg +86a03317-490f-3806-a30d-564af1691a94,SESCO,II.1.1,Capital Federal,AR-C,annual,2011,naphtha combustion consumption by to the public,3199.5073957,TJ,N2O,0.6,kg/TJ,1919.70443742,kg +ba908a4f-956c-3877-8aaf-5a0b3a90d57a,SESCO,II.1.1,Catamarca,AR-K,annual,2011,naphtha combustion consumption by to the public,201.98189549999998,TJ,CO2,73300.0,kg/TJ,14805272.940149998,kg +33a22298-33ee-3279-b773-ac39912af690,SESCO,II.1.1,Catamarca,AR-K,annual,2011,naphtha combustion consumption by to the public,201.98189549999998,TJ,CH4,3.0,kg/TJ,605.9456865,kg +4485c9bd-b689-3684-a1ed-ac4d9f9cadb4,SESCO,II.1.1,Catamarca,AR-K,annual,2011,naphtha combustion consumption by to the public,201.98189549999998,TJ,N2O,0.6,kg/TJ,121.18913729999998,kg +54d6fe80-bed7-3300-aee2-0c52622a37fc,SESCO,II.1.1,Chaco,AR-H,annual,2011,naphtha combustion consumption by to the public,736.1006037,TJ,CO2,73300.0,kg/TJ,53956174.25121,kg +abcf6c4c-a44d-3a8e-aec9-112bdd2089bf,SESCO,II.1.1,Chaco,AR-H,annual,2011,naphtha combustion consumption by to the public,736.1006037,TJ,CH4,3.0,kg/TJ,2208.3018111,kg +e56ce2e0-bf1b-30e6-83d4-f4abcdb567b0,SESCO,II.1.1,Chaco,AR-H,annual,2011,naphtha combustion consumption by to the public,736.1006037,TJ,N2O,0.6,kg/TJ,441.66036221999997,kg +6f3d8fdb-0831-3346-9b95-9ddeeb7c0e0c,SESCO,II.1.1,Chubut,AR-U,annual,2011,naphtha combustion consumption by to the public,1010.4131729999999,TJ,CO2,73300.0,kg/TJ,74063285.5809,kg +f8b31d76-1a8a-3d4e-832d-5a63a96fb982,SESCO,II.1.1,Chubut,AR-U,annual,2011,naphtha combustion consumption by to the public,1010.4131729999999,TJ,CH4,3.0,kg/TJ,3031.2395189999997,kg +ee666abb-ade6-3e0a-acd5-05fc3dc00438,SESCO,II.1.1,Chubut,AR-U,annual,2011,naphtha combustion consumption by to the public,1010.4131729999999,TJ,N2O,0.6,kg/TJ,606.2479037999999,kg +3742e5b1-9da3-3ac4-934a-9796102b45d6,SESCO,II.1.1,Corrientes,AR-W,annual,2011,naphtha combustion consumption by to the public,646.6107032,TJ,CO2,73300.0,kg/TJ,47396564.54456,kg +090f7ab4-c9e4-3940-b826-6739796b1769,SESCO,II.1.1,Corrientes,AR-W,annual,2011,naphtha combustion consumption by to the public,646.6107032,TJ,CH4,3.0,kg/TJ,1939.8321096,kg +742e2b1e-36c4-317a-a081-c8160d078e0b,SESCO,II.1.1,Corrientes,AR-W,annual,2011,naphtha combustion consumption by to the public,646.6107032,TJ,N2O,0.6,kg/TJ,387.96642191999996,kg +f9642ec3-8a5a-341c-b068-468613f3ab2d,SESCO,II.1.1,Córdoba,AR-X,annual,2011,naphtha combustion consumption by to the public,3231.7439076999995,TJ,CO2,73300.0,kg/TJ,236886828.43440995,kg +b24ebd73-8525-3d13-b9b2-23608c490fb3,SESCO,II.1.1,Córdoba,AR-X,annual,2011,naphtha combustion consumption by to the public,3231.7439076999995,TJ,CH4,3.0,kg/TJ,9695.231723099998,kg +6d9c75c2-bc93-3836-b6e0-7af54fd44dc6,SESCO,II.1.1,Córdoba,AR-X,annual,2011,naphtha combustion consumption by to the public,3231.7439076999995,TJ,N2O,0.6,kg/TJ,1939.0463446199997,kg +982d443b-3b7e-3740-87ab-04ba91b90c10,SESCO,II.1.1,Entre Rios,AR-E,annual,2011,naphtha combustion consumption by to the public,1101.0112036,TJ,CO2,73300.0,kg/TJ,80704121.22388001,kg +9450d118-b989-3554-8187-ccda74b843f1,SESCO,II.1.1,Entre Rios,AR-E,annual,2011,naphtha combustion consumption by to the public,1101.0112036,TJ,CH4,3.0,kg/TJ,3303.0336108,kg +9a097c8f-9706-3892-9f61-d3660a9814b0,SESCO,II.1.1,Entre Rios,AR-E,annual,2011,naphtha combustion consumption by to the public,1101.0112036,TJ,N2O,0.6,kg/TJ,660.60672216,kg +5a0a09ae-02f9-38e2-af43-d296ec4750b7,SESCO,II.1.1,Formosa,AR-P,annual,2011,naphtha combustion consumption by to the public,273.338758,TJ,CO2,73300.0,kg/TJ,20035730.9614,kg +0c685a9b-6b5b-383e-b150-6db5d5711379,SESCO,II.1.1,Formosa,AR-P,annual,2011,naphtha combustion consumption by to the public,273.338758,TJ,CH4,3.0,kg/TJ,820.016274,kg +8c79ab56-b756-3c0d-9d7b-1722ff679edb,SESCO,II.1.1,Formosa,AR-P,annual,2011,naphtha combustion consumption by to the public,273.338758,TJ,N2O,0.6,kg/TJ,164.00325479999998,kg +51d72991-e5a7-3fdf-8b1e-07ee9957db78,SESCO,II.1.1,Jujuy,AR-Y,annual,2011,naphtha combustion consumption by to the public,263.9028623,TJ,CO2,73300.0,kg/TJ,19344079.80659,kg +94bf40ee-b462-3cd1-9fdb-b2fe80865e3a,SESCO,II.1.1,Jujuy,AR-Y,annual,2011,naphtha combustion consumption by to the public,263.9028623,TJ,CH4,3.0,kg/TJ,791.7085869,kg +5c7ff7d8-d4f5-3293-aee6-a6f2d82fef97,SESCO,II.1.1,Jujuy,AR-Y,annual,2011,naphtha combustion consumption by to the public,263.9028623,TJ,N2O,0.6,kg/TJ,158.34171737999998,kg +80ddbce8-2bf0-372f-99b9-630ac037d42e,SESCO,II.1.1,La Pampa,AR-L,annual,2011,naphtha combustion consumption by to the public,603.763006,TJ,CO2,73300.0,kg/TJ,44255828.3398,kg +169f67f9-c231-3c58-a603-885c8c4db91c,SESCO,II.1.1,La Pampa,AR-L,annual,2011,naphtha combustion consumption by to the public,603.763006,TJ,CH4,3.0,kg/TJ,1811.289018,kg +ac7cbf29-d0dc-30a8-9d7d-56dd8374fc7a,SESCO,II.1.1,La Pampa,AR-L,annual,2011,naphtha combustion consumption by to the public,603.763006,TJ,N2O,0.6,kg/TJ,362.2578036,kg +e5d2ed1b-f93e-37bc-a3fb-cc91c50b247a,SESCO,II.1.1,La Rioja,AR-F,annual,2011,naphtha combustion consumption by to the public,286.7034786,TJ,CO2,73300.0,kg/TJ,21015364.981379997,kg +3af396f8-dd12-394e-bb85-b15fa7593c61,SESCO,II.1.1,La Rioja,AR-F,annual,2011,naphtha combustion consumption by to the public,286.7034786,TJ,CH4,3.0,kg/TJ,860.1104358,kg +77000d1e-033e-3c6a-ac17-fa7cb5eddf97,SESCO,II.1.1,La Rioja,AR-F,annual,2011,naphtha combustion consumption by to the public,286.7034786,TJ,N2O,0.6,kg/TJ,172.02208715999998,kg +d6136856-6c96-3e8a-b572-92a6794ca821,SESCO,II.1.1,Mendoza,AR-M,annual,2011,naphtha combustion consumption by to the public,1528.547944,TJ,CO2,73300.0,kg/TJ,112042564.29519999,kg +332a3552-6ae4-367e-96a0-c9f0e8460e20,SESCO,II.1.1,Mendoza,AR-M,annual,2011,naphtha combustion consumption by to the public,1528.547944,TJ,CH4,3.0,kg/TJ,4585.643832,kg +7d8eaa9f-a2f6-3f33-9a38-c44638eebf14,SESCO,II.1.1,Mendoza,AR-M,annual,2011,naphtha combustion consumption by to the public,1528.547944,TJ,N2O,0.6,kg/TJ,917.1287663999999,kg +edbd1faf-a0a2-3bfc-80cb-464b11b566c3,SESCO,II.1.1,Misiones,AR-N,annual,2011,naphtha combustion consumption by to the public,981.8032685999999,TJ,CO2,73300.0,kg/TJ,71966179.58838,kg +cb3385f4-d19a-36b2-bebf-8f5f8d427210,SESCO,II.1.1,Misiones,AR-N,annual,2011,naphtha combustion consumption by to the public,981.8032685999999,TJ,CH4,3.0,kg/TJ,2945.4098058,kg +6feca29c-8c15-34ab-bf19-5db64ec48438,SESCO,II.1.1,Misiones,AR-N,annual,2011,naphtha combustion consumption by to the public,981.8032685999999,TJ,N2O,0.6,kg/TJ,589.0819611599999,kg +dfb39b4f-07c4-33f3-9f69-3902020f6cab,SESCO,II.1.1,Neuquén,AR-Q,annual,2011,naphtha combustion consumption by to the public,822.9377079,TJ,CO2,73300.0,kg/TJ,60321333.98907,kg +bdbeec5d-84ea-35aa-8304-701010b0f6bd,SESCO,II.1.1,Neuquén,AR-Q,annual,2011,naphtha combustion consumption by to the public,822.9377079,TJ,CH4,3.0,kg/TJ,2468.8131237,kg +8741d67d-fd50-35e6-b7f3-d51cb9093c85,SESCO,II.1.1,Neuquén,AR-Q,annual,2011,naphtha combustion consumption by to the public,822.9377079,TJ,N2O,0.6,kg/TJ,493.76262474,kg +ea1db9ea-f407-32c8-b26c-a1bab568126e,SESCO,II.1.1,Rio Negro,AR-R,annual,2011,naphtha combustion consumption by to the public,777.3364753,TJ,CO2,73300.0,kg/TJ,56978763.63948999,kg +5bca19c3-c119-3ed5-866d-316e49de0c57,SESCO,II.1.1,Rio Negro,AR-R,annual,2011,naphtha combustion consumption by to the public,777.3364753,TJ,CH4,3.0,kg/TJ,2332.0094258999998,kg +5efbcd02-89ee-310a-a370-d310f26e97d4,SESCO,II.1.1,Rio Negro,AR-R,annual,2011,naphtha combustion consumption by to the public,777.3364753,TJ,N2O,0.6,kg/TJ,466.40188517999997,kg +e8a58696-6b16-3024-b161-191d24196d84,SESCO,II.1.1,Salta,AR-A,annual,2011,naphtha combustion consumption by to the public,696.9802532,TJ,CO2,73300.0,kg/TJ,51088652.55956,kg +9861bd52-230b-3c18-807d-8cbd6b52b49c,SESCO,II.1.1,Salta,AR-A,annual,2011,naphtha combustion consumption by to the public,696.9802532,TJ,CH4,3.0,kg/TJ,2090.9407596,kg +e3ea9bb6-e44a-3be7-b750-a827057183e6,SESCO,II.1.1,Salta,AR-A,annual,2011,naphtha combustion consumption by to the public,696.9802532,TJ,N2O,0.6,kg/TJ,418.18815192,kg +6147c13e-9dd6-38f7-9783-5fd2af83255f,SESCO,II.1.1,San Juan,AR-J,annual,2011,naphtha combustion consumption by to the public,504.13203609999994,TJ,CO2,73300.0,kg/TJ,36952878.24613,kg +28cfafa3-eddb-3073-b2a8-4bd8483b6082,SESCO,II.1.1,San Juan,AR-J,annual,2011,naphtha combustion consumption by to the public,504.13203609999994,TJ,CH4,3.0,kg/TJ,1512.3961083,kg +062ef391-c487-37d7-9515-656488b45a9e,SESCO,II.1.1,San Juan,AR-J,annual,2011,naphtha combustion consumption by to the public,504.13203609999994,TJ,N2O,0.6,kg/TJ,302.47922165999995,kg +3accce5f-91db-3acb-944c-989a2f8c1387,SESCO,II.1.1,San Luis,AR-D,annual,2011,naphtha combustion consumption by to the public,486.09973719999994,TJ,CO2,73300.0,kg/TJ,35631110.73676,kg +68487bc5-aafd-341f-b31a-546bdc1857ce,SESCO,II.1.1,San Luis,AR-D,annual,2011,naphtha combustion consumption by to the public,486.09973719999994,TJ,CH4,3.0,kg/TJ,1458.2992115999998,kg +52e01ecb-31d8-3c91-8a70-7da89ed4ae30,SESCO,II.1.1,San Luis,AR-D,annual,2011,naphtha combustion consumption by to the public,486.09973719999994,TJ,N2O,0.6,kg/TJ,291.65984231999994,kg +ef8b7d3c-e39b-3576-ab43-ff6c826cb2fc,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2011,naphtha combustion consumption by to the public,541.8420391999999,TJ,CO2,73300.0,kg/TJ,39717021.473359995,kg +adb9dd46-0811-35f5-b050-6eb3dfb4ea98,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2011,naphtha combustion consumption by to the public,541.8420391999999,TJ,CH4,3.0,kg/TJ,1625.5261176,kg +6b93f6f7-c8bb-315b-9741-41776fe2e01d,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2011,naphtha combustion consumption by to the public,541.8420391999999,TJ,N2O,0.6,kg/TJ,325.1052235199999,kg +c1362743-32b9-3526-8252-4045b119e0fb,SESCO,II.1.1,Santa Fe,AR-S,annual,2011,naphtha combustion consumption by to the public,2859.5800925999997,TJ,CO2,73300.0,kg/TJ,209607220.78757998,kg +21551f09-01b0-3c80-85ea-1ec065a4ea62,SESCO,II.1.1,Santa Fe,AR-S,annual,2011,naphtha combustion consumption by to the public,2859.5800925999997,TJ,CH4,3.0,kg/TJ,8578.7402778,kg +5f8fc2ee-33fa-39dc-9508-a578f6fa54c0,SESCO,II.1.1,Santa Fe,AR-S,annual,2011,naphtha combustion consumption by to the public,2859.5800925999997,TJ,N2O,0.6,kg/TJ,1715.7480555599998,kg +6a0a4169-a89a-385d-9f84-b77fc8e42f8d,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2011,naphtha combustion consumption by to the public,482.07017319999994,TJ,CO2,73300.0,kg/TJ,35335743.69555999,kg +66be7c6d-9fe1-3e3d-b205-b34d3c6f4191,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2011,naphtha combustion consumption by to the public,482.07017319999994,TJ,CH4,3.0,kg/TJ,1446.2105195999998,kg +5451610b-6825-3b61-b5fe-fb1a7a454e7d,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2011,naphtha combustion consumption by to the public,482.07017319999994,TJ,N2O,0.6,kg/TJ,289.24210392,kg +6a0cd2c2-901a-38dc-80ab-a09d12990a4d,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2011,naphtha combustion consumption by to the public,31.9342947,TJ,CO2,73300.0,kg/TJ,2340783.80151,kg +2fd75143-0883-3c78-a266-d34cc3f4a1a9,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2011,naphtha combustion consumption by to the public,31.9342947,TJ,CH4,3.0,kg/TJ,95.8028841,kg +ef70c7a2-a89a-325e-814d-4e153929546b,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2011,naphtha combustion consumption by to the public,31.9342947,TJ,N2O,0.6,kg/TJ,19.16057682,kg +4f67fa04-c788-39b2-8e6a-08494405edaf,SESCO,II.1.1,Tucuman,AR-T,annual,2011,naphtha combustion consumption by to the public,717.2623919999999,TJ,CO2,73300.0,kg/TJ,52575333.33359999,kg +92d9b148-5e46-3906-907f-8af89acbac43,SESCO,II.1.1,Tucuman,AR-T,annual,2011,naphtha combustion consumption by to the public,717.2623919999999,TJ,CH4,3.0,kg/TJ,2151.787176,kg +dc3b0f61-0a44-307b-8c03-472a612ccc95,SESCO,II.1.1,Tucuman,AR-T,annual,2011,naphtha combustion consumption by to the public,717.2623919999999,TJ,N2O,0.6,kg/TJ,430.3574351999999,kg +7f09e98d-7072-3c20-b718-594d8f5d2a39,SESCO,II.1.1,Buenos Aires,AR-B,annual,2011,naphtha combustion consumption by freight transport,27.333875799999998,TJ,CO2,73300.0,kg/TJ,2003573.0961399998,kg +8e88ac37-b67a-3300-8a0f-e82d02389f6c,SESCO,II.1.1,Buenos Aires,AR-B,annual,2011,naphtha combustion consumption by freight transport,27.333875799999998,TJ,CH4,3.0,kg/TJ,82.00162739999999,kg +439ac43b-f988-3e23-aed3-46e49f32fa04,SESCO,II.1.1,Buenos Aires,AR-B,annual,2011,naphtha combustion consumption by freight transport,27.333875799999998,TJ,N2O,0.6,kg/TJ,16.40032548,kg +5e238956-172f-3c4c-a865-9f9987fecd7f,SESCO,II.1.1,Capital Federal,AR-C,annual,2011,naphtha combustion consumption by freight transport,4.365361,TJ,CO2,73300.0,kg/TJ,319980.9613,kg +c0e1cd73-7809-3225-9d1c-38755f4b9960,SESCO,II.1.1,Capital Federal,AR-C,annual,2011,naphtha combustion consumption by freight transport,4.365361,TJ,CH4,3.0,kg/TJ,13.096083,kg +0ef37612-bf61-33d0-815b-0f6a348ce98d,SESCO,II.1.1,Capital Federal,AR-C,annual,2011,naphtha combustion consumption by freight transport,4.365361,TJ,N2O,0.6,kg/TJ,2.6192166,kg +81accab0-adf3-337b-b4aa-d44fc93e996b,SESCO,II.1.1,Catamarca,AR-K,annual,2011,naphtha combustion consumption by freight transport,0.0335797,TJ,CO2,73300.0,kg/TJ,2461.3920099999996,kg +fbe6d11d-93ab-3c54-b9d2-ac6abc387cb4,SESCO,II.1.1,Catamarca,AR-K,annual,2011,naphtha combustion consumption by freight transport,0.0335797,TJ,CH4,3.0,kg/TJ,0.1007391,kg +fa14c1c5-2a59-39a1-baca-75b4053034ab,SESCO,II.1.1,Catamarca,AR-K,annual,2011,naphtha combustion consumption by freight transport,0.0335797,TJ,N2O,0.6,kg/TJ,0.020147819999999997,kg +60f98696-cf44-3e3f-a94e-fb217792ac88,SESCO,II.1.1,Chaco,AR-H,annual,2011,naphtha combustion consumption by freight transport,0.5036955,TJ,CO2,73300.0,kg/TJ,36920.88015,kg +8af53c8c-c775-3ef4-b931-cb04003ecabc,SESCO,II.1.1,Chaco,AR-H,annual,2011,naphtha combustion consumption by freight transport,0.5036955,TJ,CH4,3.0,kg/TJ,1.5110864999999998,kg +47e4296e-327a-36da-a984-6f30f92e399e,SESCO,II.1.1,Chaco,AR-H,annual,2011,naphtha combustion consumption by freight transport,0.5036955,TJ,N2O,0.6,kg/TJ,0.30221729999999997,kg +8d299b70-d5e6-3f09-8ba9-38348dd93c02,SESCO,II.1.1,Chubut,AR-U,annual,2011,naphtha combustion consumption by freight transport,0.7387533999999999,TJ,CO2,73300.0,kg/TJ,54150.62421999999,kg +e97ceda8-4009-3e9d-af6f-657ce7586cee,SESCO,II.1.1,Chubut,AR-U,annual,2011,naphtha combustion consumption by freight transport,0.7387533999999999,TJ,CH4,3.0,kg/TJ,2.2162602,kg +a7cab1da-5736-3b4d-97ce-bb7cde945eb3,SESCO,II.1.1,Chubut,AR-U,annual,2011,naphtha combustion consumption by freight transport,0.7387533999999999,TJ,N2O,0.6,kg/TJ,0.4432520399999999,kg +c07ee73a-2542-38b3-a07d-fc740229897a,SESCO,II.1.1,Corrientes,AR-W,annual,2011,naphtha combustion consumption by freight transport,0.671594,TJ,CO2,73300.0,kg/TJ,49227.8402,kg +14d67396-cdee-3b5b-96ec-90861d0b7aba,SESCO,II.1.1,Corrientes,AR-W,annual,2011,naphtha combustion consumption by freight transport,0.671594,TJ,CH4,3.0,kg/TJ,2.0147820000000003,kg +e4fc945c-066b-3770-8317-feb71f92cfb2,SESCO,II.1.1,Corrientes,AR-W,annual,2011,naphtha combustion consumption by freight transport,0.671594,TJ,N2O,0.6,kg/TJ,0.4029564,kg +5fe7a6a2-64ab-3360-9149-561e57610598,SESCO,II.1.1,Córdoba,AR-X,annual,2011,naphtha combustion consumption by freight transport,2.5520571999999997,TJ,CO2,73300.0,kg/TJ,187065.79275999998,kg +7483cd2f-9504-3a88-b013-7a49f59b3a2f,SESCO,II.1.1,Córdoba,AR-X,annual,2011,naphtha combustion consumption by freight transport,2.5520571999999997,TJ,CH4,3.0,kg/TJ,7.656171599999999,kg +ffbd4aa3-a3c3-31f7-8148-8f3fbdb0931e,SESCO,II.1.1,Córdoba,AR-X,annual,2011,naphtha combustion consumption by freight transport,2.5520571999999997,TJ,N2O,0.6,kg/TJ,1.5312343199999998,kg +32f7d0bd-472d-3ee4-a0e2-1d1189fb63e9,SESCO,II.1.1,Entre Rios,AR-E,annual,2011,naphtha combustion consumption by freight transport,1.007391,TJ,CO2,73300.0,kg/TJ,73841.7603,kg +c37d27e5-e477-3dde-ba49-8ebb839950e3,SESCO,II.1.1,Entre Rios,AR-E,annual,2011,naphtha combustion consumption by freight transport,1.007391,TJ,CH4,3.0,kg/TJ,3.0221729999999996,kg +b06cbca5-5a12-3714-9d62-ce6cbd9b62c2,SESCO,II.1.1,Entre Rios,AR-E,annual,2011,naphtha combustion consumption by freight transport,1.007391,TJ,N2O,0.6,kg/TJ,0.6044345999999999,kg +22555468-b853-3375-8543-5c8aa15737fa,SESCO,II.1.1,Formosa,AR-P,annual,2011,naphtha combustion consumption by freight transport,0.0335797,TJ,CO2,73300.0,kg/TJ,2461.3920099999996,kg +bc51265c-ebb4-3617-b40f-b71d79c481e1,SESCO,II.1.1,Formosa,AR-P,annual,2011,naphtha combustion consumption by freight transport,0.0335797,TJ,CH4,3.0,kg/TJ,0.1007391,kg +1cc97f5c-0918-3c32-ad95-770cde51140d,SESCO,II.1.1,Formosa,AR-P,annual,2011,naphtha combustion consumption by freight transport,0.0335797,TJ,N2O,0.6,kg/TJ,0.020147819999999997,kg +2f68b57b-2818-3434-83b5-c3fc54bc1004,SESCO,II.1.1,Jujuy,AR-Y,annual,2011,naphtha combustion consumption by freight transport,0.1343188,TJ,CO2,73300.0,kg/TJ,9845.568039999998,kg +0d0ca93f-2231-335b-8c3b-a4e51f2a79e2,SESCO,II.1.1,Jujuy,AR-Y,annual,2011,naphtha combustion consumption by freight transport,0.1343188,TJ,CH4,3.0,kg/TJ,0.4029564,kg +7fb85025-4227-3bdd-8bf7-cd64ac2b95a4,SESCO,II.1.1,Jujuy,AR-Y,annual,2011,naphtha combustion consumption by freight transport,0.1343188,TJ,N2O,0.6,kg/TJ,0.08059127999999999,kg +a54382ca-3351-3820-bce5-80f892d6fd01,SESCO,II.1.1,La Pampa,AR-L,annual,2011,naphtha combustion consumption by freight transport,0.2350579,TJ,CO2,73300.0,kg/TJ,17229.74407,kg +eff7f516-4f05-3529-a5e5-4e1c7fcd35c8,SESCO,II.1.1,La Pampa,AR-L,annual,2011,naphtha combustion consumption by freight transport,0.2350579,TJ,CH4,3.0,kg/TJ,0.7051737,kg +a04fdac5-de2d-32ce-aa1d-85aa4b10e180,SESCO,II.1.1,La Pampa,AR-L,annual,2011,naphtha combustion consumption by freight transport,0.2350579,TJ,N2O,0.6,kg/TJ,0.14103474,kg +f032dbd3-3012-38ae-877c-feae38c9fdbf,SESCO,II.1.1,La Rioja,AR-F,annual,2011,naphtha combustion consumption by freight transport,0.10073909999999998,TJ,CO2,73300.0,kg/TJ,7384.176029999999,kg +5a23d29c-f1e0-3183-81d4-2f85ed6a9e41,SESCO,II.1.1,La Rioja,AR-F,annual,2011,naphtha combustion consumption by freight transport,0.10073909999999998,TJ,CH4,3.0,kg/TJ,0.30221729999999997,kg +2f0023cf-2eb8-3e67-88d6-5ac45550fdfb,SESCO,II.1.1,La Rioja,AR-F,annual,2011,naphtha combustion consumption by freight transport,0.10073909999999998,TJ,N2O,0.6,kg/TJ,0.06044345999999999,kg +651273da-6733-39fb-bb17-f0997f737885,SESCO,II.1.1,Mendoza,AR-M,annual,2011,naphtha combustion consumption by freight transport,2.5520571999999997,TJ,CO2,73300.0,kg/TJ,187065.79275999998,kg +c3210227-39d0-3fb6-9f00-2f3bda72d4b0,SESCO,II.1.1,Mendoza,AR-M,annual,2011,naphtha combustion consumption by freight transport,2.5520571999999997,TJ,CH4,3.0,kg/TJ,7.656171599999999,kg +9ea9809a-4b78-3efe-87c4-2a4e65858d80,SESCO,II.1.1,Mendoza,AR-M,annual,2011,naphtha combustion consumption by freight transport,2.5520571999999997,TJ,N2O,0.6,kg/TJ,1.5312343199999998,kg +da21e52c-2ed1-3ebb-8cc1-9a0fe67eb8b8,SESCO,II.1.1,Misiones,AR-N,annual,2011,naphtha combustion consumption by freight transport,0.6380142999999999,TJ,CO2,73300.0,kg/TJ,46766.448189999996,kg +d4171ca8-1dca-358d-964b-84885b6b5a97,SESCO,II.1.1,Misiones,AR-N,annual,2011,naphtha combustion consumption by freight transport,0.6380142999999999,TJ,CH4,3.0,kg/TJ,1.9140428999999997,kg +aabedebd-9aa6-38b1-bc36-5457a86576d9,SESCO,II.1.1,Misiones,AR-N,annual,2011,naphtha combustion consumption by freight transport,0.6380142999999999,TJ,N2O,0.6,kg/TJ,0.38280857999999995,kg +070cb4f0-6cf8-3280-b11c-078ce5e8662a,SESCO,II.1.1,Neuquén,AR-Q,annual,2011,naphtha combustion consumption by freight transport,0.8394925,TJ,CO2,73300.0,kg/TJ,61534.80025,kg +aedfcc9f-fe07-32ce-a368-cfa024237530,SESCO,II.1.1,Neuquén,AR-Q,annual,2011,naphtha combustion consumption by freight transport,0.8394925,TJ,CH4,3.0,kg/TJ,2.5184775,kg +3d597daf-e7a6-34ce-bd9e-f4f9e24a3040,SESCO,II.1.1,Neuquén,AR-Q,annual,2011,naphtha combustion consumption by freight transport,0.8394925,TJ,N2O,0.6,kg/TJ,0.5036955,kg +2d61186c-5cc9-3542-8105-3868910179dc,SESCO,II.1.1,Rio Negro,AR-R,annual,2011,naphtha combustion consumption by freight transport,0.8394925,TJ,CO2,73300.0,kg/TJ,61534.80025,kg +8feaa39c-f2a4-3550-8123-a305d69a96cc,SESCO,II.1.1,Rio Negro,AR-R,annual,2011,naphtha combustion consumption by freight transport,0.8394925,TJ,CH4,3.0,kg/TJ,2.5184775,kg +eaa90382-ef82-3df2-bc83-fb7bd90f6d5b,SESCO,II.1.1,Rio Negro,AR-R,annual,2011,naphtha combustion consumption by freight transport,0.8394925,TJ,N2O,0.6,kg/TJ,0.5036955,kg +383404aa-578e-3b2f-a944-47ec4de6ea18,SESCO,II.1.1,Salta,AR-A,annual,2011,naphtha combustion consumption by freight transport,0.671594,TJ,CO2,73300.0,kg/TJ,49227.8402,kg +f7d15d72-91dc-3132-8398-ed91b07aecb5,SESCO,II.1.1,Salta,AR-A,annual,2011,naphtha combustion consumption by freight transport,0.671594,TJ,CH4,3.0,kg/TJ,2.0147820000000003,kg +c5c05b35-867f-3f91-9607-bcb106521f7c,SESCO,II.1.1,Salta,AR-A,annual,2011,naphtha combustion consumption by freight transport,0.671594,TJ,N2O,0.6,kg/TJ,0.4029564,kg +a4e310c8-064d-3f14-b60a-971c51032d53,SESCO,II.1.1,San Juan,AR-J,annual,2011,naphtha combustion consumption by freight transport,0.1678985,TJ,CO2,73300.0,kg/TJ,12306.96005,kg +6e1026bb-e7aa-3e86-bfdc-2b8bf064ab0b,SESCO,II.1.1,San Juan,AR-J,annual,2011,naphtha combustion consumption by freight transport,0.1678985,TJ,CH4,3.0,kg/TJ,0.5036955000000001,kg +ff03980d-5993-3912-8ebf-dc426c7f7e95,SESCO,II.1.1,San Juan,AR-J,annual,2011,naphtha combustion consumption by freight transport,0.1678985,TJ,N2O,0.6,kg/TJ,0.1007391,kg +c11f7fbe-a0ea-3de3-a08a-f97f6e092d1c,SESCO,II.1.1,San Luis,AR-D,annual,2011,naphtha combustion consumption by freight transport,0.36937669999999995,TJ,CO2,73300.0,kg/TJ,27075.312109999995,kg +95d64d2e-fe16-37fb-bdc8-badc9cd465d1,SESCO,II.1.1,San Luis,AR-D,annual,2011,naphtha combustion consumption by freight transport,0.36937669999999995,TJ,CH4,3.0,kg/TJ,1.1081301,kg +83604b7c-8e06-3bbc-bfff-bfc250497388,SESCO,II.1.1,San Luis,AR-D,annual,2011,naphtha combustion consumption by freight transport,0.36937669999999995,TJ,N2O,0.6,kg/TJ,0.22162601999999995,kg +64fcee28-0d7e-340f-a439-7e1dcf0974d3,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2011,naphtha combustion consumption by freight transport,0.2350579,TJ,CO2,73300.0,kg/TJ,17229.74407,kg +1bfa39e6-c4ce-3196-bdf3-2fd161e0de52,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2011,naphtha combustion consumption by freight transport,0.2350579,TJ,CH4,3.0,kg/TJ,0.7051737,kg +d13c44b0-dafc-3c7b-a941-1fd832929b24,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2011,naphtha combustion consumption by freight transport,0.2350579,TJ,N2O,0.6,kg/TJ,0.14103474,kg +255dacc6-086c-3996-a919-558e63a85ac5,SESCO,II.1.1,Santa Fe,AR-S,annual,2011,naphtha combustion consumption by freight transport,4.0631436999999995,TJ,CO2,73300.0,kg/TJ,297828.43321,kg +9d36d043-b496-366b-94e5-e621b59001ff,SESCO,II.1.1,Santa Fe,AR-S,annual,2011,naphtha combustion consumption by freight transport,4.0631436999999995,TJ,CH4,3.0,kg/TJ,12.189431099999998,kg +010e6255-1655-38c5-a935-59286e22e70d,SESCO,II.1.1,Santa Fe,AR-S,annual,2011,naphtha combustion consumption by freight transport,4.0631436999999995,TJ,N2O,0.6,kg/TJ,2.4378862199999998,kg +38519526-cfcc-3842-8f2b-041741a0538f,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2011,naphtha combustion consumption by freight transport,0.20147819999999997,TJ,CO2,73300.0,kg/TJ,14768.352059999997,kg +e23f34ee-8868-3274-918d-effba886e772,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2011,naphtha combustion consumption by freight transport,0.20147819999999997,TJ,CH4,3.0,kg/TJ,0.6044345999999999,kg +6dbf873f-e44e-3bd8-9576-a89db0d71c03,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2011,naphtha combustion consumption by freight transport,0.20147819999999997,TJ,N2O,0.6,kg/TJ,0.12088691999999998,kg +df1746a9-f834-3615-9b2a-c2d9f3dddfda,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2011,naphtha combustion consumption by freight transport,0.10073909999999998,TJ,CO2,73300.0,kg/TJ,7384.176029999999,kg +47858f80-1db0-3f9f-96a1-ebb622e2c6b6,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2011,naphtha combustion consumption by freight transport,0.10073909999999998,TJ,CH4,3.0,kg/TJ,0.30221729999999997,kg +039fc0e1-d15f-3ed1-a8dc-cfde1b286d40,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2011,naphtha combustion consumption by freight transport,0.10073909999999998,TJ,N2O,0.6,kg/TJ,0.06044345999999999,kg +bce3349d-92a7-3e9e-af09-d7ccc09b6a04,SESCO,II.1.1,Tucuman,AR-T,annual,2011,naphtha combustion consumption by freight transport,0.5708548999999999,TJ,CO2,73300.0,kg/TJ,41843.66417,kg +36420b79-f09a-3656-9260-2c46c4b233b4,SESCO,II.1.1,Tucuman,AR-T,annual,2011,naphtha combustion consumption by freight transport,0.5708548999999999,TJ,CH4,3.0,kg/TJ,1.7125646999999997,kg +461c82a0-0b00-3f96-938d-23007342ad93,SESCO,II.1.1,Tucuman,AR-T,annual,2011,naphtha combustion consumption by freight transport,0.5708548999999999,TJ,N2O,0.6,kg/TJ,0.34251293999999993,kg +012f683b-1a8b-324b-b6fa-7ea9e8db8f6b,SESCO,II.1.1,Buenos Aires,AR-B,annual,2011,naphtha combustion consumption by freight transport,30.423208199999998,TJ,CO2,73300.0,kg/TJ,2230021.16106,kg +7ebc00a1-6139-3b01-8bcf-701e6896c989,SESCO,II.1.1,Buenos Aires,AR-B,annual,2011,naphtha combustion consumption by freight transport,30.423208199999998,TJ,CH4,3.0,kg/TJ,91.26962459999999,kg +f39865b3-fa5d-32e6-8b46-628325b0bef2,SESCO,II.1.1,Buenos Aires,AR-B,annual,2011,naphtha combustion consumption by freight transport,30.423208199999998,TJ,N2O,0.6,kg/TJ,18.25392492,kg +1c34e6b6-1305-35aa-9ff0-ef6e94c72818,SESCO,II.1.1,Capital Federal,AR-C,annual,2011,naphtha combustion consumption by freight transport,8.2270265,TJ,CO2,73300.0,kg/TJ,603041.04245,kg +2f551c5b-c38c-3929-b011-a6f2e65d7916,SESCO,II.1.1,Capital Federal,AR-C,annual,2011,naphtha combustion consumption by freight transport,8.2270265,TJ,CH4,3.0,kg/TJ,24.681079499999996,kg +0678b380-4590-3762-bf76-54d1fc6992d6,SESCO,II.1.1,Capital Federal,AR-C,annual,2011,naphtha combustion consumption by freight transport,8.2270265,TJ,N2O,0.6,kg/TJ,4.9362159,kg +81accab0-adf3-337b-b4aa-d44fc93e996b,SESCO,II.1.1,Catamarca,AR-K,annual,2011,naphtha combustion consumption by freight transport,0.0335797,TJ,CO2,73300.0,kg/TJ,2461.3920099999996,kg +fbe6d11d-93ab-3c54-b9d2-ac6abc387cb4,SESCO,II.1.1,Catamarca,AR-K,annual,2011,naphtha combustion consumption by freight transport,0.0335797,TJ,CH4,3.0,kg/TJ,0.1007391,kg +fa14c1c5-2a59-39a1-baca-75b4053034ab,SESCO,II.1.1,Catamarca,AR-K,annual,2011,naphtha combustion consumption by freight transport,0.0335797,TJ,N2O,0.6,kg/TJ,0.020147819999999997,kg +00800d31-b42c-3d86-8738-b338d68ced3e,SESCO,II.1.1,Chaco,AR-H,annual,2011,naphtha combustion consumption by freight transport,0.8059127999999999,TJ,CO2,73300.0,kg/TJ,59073.40823999999,kg +79d23eb9-7771-3b43-b752-9a166774c5f0,SESCO,II.1.1,Chaco,AR-H,annual,2011,naphtha combustion consumption by freight transport,0.8059127999999999,TJ,CH4,3.0,kg/TJ,2.4177383999999997,kg +370d119f-a200-3fde-a7be-6934b2dad243,SESCO,II.1.1,Chaco,AR-H,annual,2011,naphtha combustion consumption by freight transport,0.8059127999999999,TJ,N2O,0.6,kg/TJ,0.4835476799999999,kg +9050f80b-a522-399c-aa0f-36b5dae2b492,SESCO,II.1.1,Chubut,AR-U,annual,2011,naphtha combustion consumption by freight transport,0.6044345999999999,TJ,CO2,73300.0,kg/TJ,44305.05617999999,kg +e156aa20-64cc-32e9-89c6-8d7a18955e64,SESCO,II.1.1,Chubut,AR-U,annual,2011,naphtha combustion consumption by freight transport,0.6044345999999999,TJ,CH4,3.0,kg/TJ,1.8133038,kg +484d2208-4c51-3590-ad4d-720329800d78,SESCO,II.1.1,Chubut,AR-U,annual,2011,naphtha combustion consumption by freight transport,0.6044345999999999,TJ,N2O,0.6,kg/TJ,0.36266075999999997,kg +3595e322-639f-3c22-9c37-a354e2a453a8,SESCO,II.1.1,Corrientes,AR-W,annual,2011,naphtha combustion consumption by freight transport,0.5372752,TJ,CO2,73300.0,kg/TJ,39382.27215999999,kg +54416d98-5087-3472-857b-8bf5abf7aa61,SESCO,II.1.1,Corrientes,AR-W,annual,2011,naphtha combustion consumption by freight transport,0.5372752,TJ,CH4,3.0,kg/TJ,1.6118256,kg +4fbf5609-9b20-3492-ad20-371c597cb454,SESCO,II.1.1,Corrientes,AR-W,annual,2011,naphtha combustion consumption by freight transport,0.5372752,TJ,N2O,0.6,kg/TJ,0.32236511999999995,kg +0e5c4403-bfc1-36e4-ac66-a4bebe1b2881,SESCO,II.1.1,Córdoba,AR-X,annual,2011,naphtha combustion consumption by freight transport,2.4177383999999997,TJ,CO2,73300.0,kg/TJ,177220.22471999997,kg +05978e6e-d1c6-3561-8f7e-a5f9fc3967c7,SESCO,II.1.1,Córdoba,AR-X,annual,2011,naphtha combustion consumption by freight transport,2.4177383999999997,TJ,CH4,3.0,kg/TJ,7.2532152,kg +826e367b-17bd-3be5-b78c-23c62aea978f,SESCO,II.1.1,Córdoba,AR-X,annual,2011,naphtha combustion consumption by freight transport,2.4177383999999997,TJ,N2O,0.6,kg/TJ,1.4506430399999999,kg +6e18fcd2-eb2e-3224-8bea-d27f6fbb02a1,SESCO,II.1.1,Entre Rios,AR-E,annual,2011,naphtha combustion consumption by freight transport,0.9402316,TJ,CO2,73300.0,kg/TJ,68918.97628,kg +0c9367e8-8507-315e-a1f5-0d64358fc5df,SESCO,II.1.1,Entre Rios,AR-E,annual,2011,naphtha combustion consumption by freight transport,0.9402316,TJ,CH4,3.0,kg/TJ,2.8206948,kg +59dc8e6b-2fe6-3c6a-87e9-98eab2b41ca4,SESCO,II.1.1,Entre Rios,AR-E,annual,2011,naphtha combustion consumption by freight transport,0.9402316,TJ,N2O,0.6,kg/TJ,0.56413896,kg +360bd600-d7ed-3911-93e4-aa9106d0b25d,SESCO,II.1.1,Formosa,AR-P,annual,2011,naphtha combustion consumption by freight transport,0.0671594,TJ,CO2,73300.0,kg/TJ,4922.784019999999,kg +1711d9a5-e191-33ae-9281-fe7a8777f12e,SESCO,II.1.1,Formosa,AR-P,annual,2011,naphtha combustion consumption by freight transport,0.0671594,TJ,CH4,3.0,kg/TJ,0.2014782,kg +1b483d69-6ff8-3e7b-a0be-f700c30610b8,SESCO,II.1.1,Formosa,AR-P,annual,2011,naphtha combustion consumption by freight transport,0.0671594,TJ,N2O,0.6,kg/TJ,0.040295639999999994,kg +69d5a740-f822-3411-bd11-c8189213b6bf,SESCO,II.1.1,Jujuy,AR-Y,annual,2011,naphtha combustion consumption by freight transport,0.0671594,TJ,CO2,73300.0,kg/TJ,4922.784019999999,kg +d106d6b4-f6b1-3af3-93a5-b4f6b7612db8,SESCO,II.1.1,Jujuy,AR-Y,annual,2011,naphtha combustion consumption by freight transport,0.0671594,TJ,CH4,3.0,kg/TJ,0.2014782,kg +486ed45b-4971-3165-86c8-5adf67deddec,SESCO,II.1.1,Jujuy,AR-Y,annual,2011,naphtha combustion consumption by freight transport,0.0671594,TJ,N2O,0.6,kg/TJ,0.040295639999999994,kg +e992e217-becb-3551-9bc2-4f5c614c8e73,SESCO,II.1.1,La Pampa,AR-L,annual,2011,naphtha combustion consumption by freight transport,0.20147819999999997,TJ,CO2,73300.0,kg/TJ,14768.352059999997,kg +e02d9202-d267-34f5-af52-dd21a122e42b,SESCO,II.1.1,La Pampa,AR-L,annual,2011,naphtha combustion consumption by freight transport,0.20147819999999997,TJ,CH4,3.0,kg/TJ,0.6044345999999999,kg +1db4b36c-d462-33d8-88d0-b52c5dabe7b2,SESCO,II.1.1,La Pampa,AR-L,annual,2011,naphtha combustion consumption by freight transport,0.20147819999999997,TJ,N2O,0.6,kg/TJ,0.12088691999999998,kg +5c083e9d-2d98-33fa-9460-20b7dd3431c6,SESCO,II.1.1,La Rioja,AR-F,annual,2011,naphtha combustion consumption by freight transport,0.0671594,TJ,CO2,73300.0,kg/TJ,4922.784019999999,kg +71414c0e-75de-3585-96f6-e6df13982b2d,SESCO,II.1.1,La Rioja,AR-F,annual,2011,naphtha combustion consumption by freight transport,0.0671594,TJ,CH4,3.0,kg/TJ,0.2014782,kg +32da6db0-c839-37ed-a53c-2ddea382efaf,SESCO,II.1.1,La Rioja,AR-F,annual,2011,naphtha combustion consumption by freight transport,0.0671594,TJ,N2O,0.6,kg/TJ,0.040295639999999994,kg +248c5efc-0117-3301-b905-cba451705b0a,SESCO,II.1.1,Mendoza,AR-M,annual,2011,naphtha combustion consumption by freight transport,1.6454053,TJ,CO2,73300.0,kg/TJ,120608.20848999999,kg +78f14bee-7d22-34c8-88d3-e9848b99c71d,SESCO,II.1.1,Mendoza,AR-M,annual,2011,naphtha combustion consumption by freight transport,1.6454053,TJ,CH4,3.0,kg/TJ,4.9362159,kg +57cfbd28-4d8f-30ec-9d2a-4fa8e5d7b5f7,SESCO,II.1.1,Mendoza,AR-M,annual,2011,naphtha combustion consumption by freight transport,1.6454053,TJ,N2O,0.6,kg/TJ,0.9872431799999999,kg +6f9e10fb-f652-3f90-87ce-8ac9d82da1a2,SESCO,II.1.1,Misiones,AR-N,annual,2011,naphtha combustion consumption by freight transport,0.4701158,TJ,CO2,73300.0,kg/TJ,34459.48814,kg +7eb2d0ce-8b80-39e3-8e89-abc059300946,SESCO,II.1.1,Misiones,AR-N,annual,2011,naphtha combustion consumption by freight transport,0.4701158,TJ,CH4,3.0,kg/TJ,1.4103474,kg +b9426a77-a4ac-3799-a168-b27d0f82f67e,SESCO,II.1.1,Misiones,AR-N,annual,2011,naphtha combustion consumption by freight transport,0.4701158,TJ,N2O,0.6,kg/TJ,0.28206948,kg +8fa522a8-0179-33b1-93c9-c2dff96fdc97,SESCO,II.1.1,Neuquén,AR-Q,annual,2011,naphtha combustion consumption by freight transport,0.6380142999999999,TJ,CO2,73300.0,kg/TJ,46766.448189999996,kg +7104d559-4853-32bc-8646-3211f5bd7616,SESCO,II.1.1,Neuquén,AR-Q,annual,2011,naphtha combustion consumption by freight transport,0.6380142999999999,TJ,CH4,3.0,kg/TJ,1.9140428999999997,kg +b7d6af82-8810-3e28-9a5c-428602ca6ba2,SESCO,II.1.1,Neuquén,AR-Q,annual,2011,naphtha combustion consumption by freight transport,0.6380142999999999,TJ,N2O,0.6,kg/TJ,0.38280857999999995,kg +719b6521-ef2d-3c79-8df5-4c32d0cf89d8,SESCO,II.1.1,Rio Negro,AR-R,annual,2011,naphtha combustion consumption by freight transport,0.6044345999999999,TJ,CO2,73300.0,kg/TJ,44305.05617999999,kg +9691f37e-5a4b-3820-89f7-d3fd09be53ca,SESCO,II.1.1,Rio Negro,AR-R,annual,2011,naphtha combustion consumption by freight transport,0.6044345999999999,TJ,CH4,3.0,kg/TJ,1.8133038,kg +ac537d70-a5bc-3970-9895-9a09a91cd522,SESCO,II.1.1,Rio Negro,AR-R,annual,2011,naphtha combustion consumption by freight transport,0.6044345999999999,TJ,N2O,0.6,kg/TJ,0.36266075999999997,kg +15a0dba1-fdf9-3d59-862a-c34ce653bbd8,SESCO,II.1.1,Salta,AR-A,annual,2011,naphtha combustion consumption by freight transport,0.4365361,TJ,CO2,73300.0,kg/TJ,31998.096129999998,kg +99796f22-251b-32f6-96cb-fbeef09351d4,SESCO,II.1.1,Salta,AR-A,annual,2011,naphtha combustion consumption by freight transport,0.4365361,TJ,CH4,3.0,kg/TJ,1.3096082999999998,kg +c600ba61-c3ff-331b-bf7b-46d698278ab9,SESCO,II.1.1,Salta,AR-A,annual,2011,naphtha combustion consumption by freight transport,0.4365361,TJ,N2O,0.6,kg/TJ,0.26192166,kg +8e2488b4-6a23-30b1-b549-40b79185f56e,SESCO,II.1.1,San Juan,AR-J,annual,2011,naphtha combustion consumption by freight transport,0.1343188,TJ,CO2,73300.0,kg/TJ,9845.568039999998,kg +c1112b1d-de7c-33de-8189-59c79831e380,SESCO,II.1.1,San Juan,AR-J,annual,2011,naphtha combustion consumption by freight transport,0.1343188,TJ,CH4,3.0,kg/TJ,0.4029564,kg +f9a35c29-94c5-3ae8-b79f-9b84d3988f7d,SESCO,II.1.1,San Juan,AR-J,annual,2011,naphtha combustion consumption by freight transport,0.1343188,TJ,N2O,0.6,kg/TJ,0.08059127999999999,kg +87d2ef54-a0df-3dbb-af88-30f1d8a281c4,SESCO,II.1.1,San Luis,AR-D,annual,2011,naphtha combustion consumption by freight transport,0.2686376,TJ,CO2,73300.0,kg/TJ,19691.136079999997,kg +e7170331-0829-3954-bf9b-efc8a02b326b,SESCO,II.1.1,San Luis,AR-D,annual,2011,naphtha combustion consumption by freight transport,0.2686376,TJ,CH4,3.0,kg/TJ,0.8059128,kg +846c067b-6d4b-395a-9749-653c88ef264e,SESCO,II.1.1,San Luis,AR-D,annual,2011,naphtha combustion consumption by freight transport,0.2686376,TJ,N2O,0.6,kg/TJ,0.16118255999999997,kg +d923db9f-90fd-3406-862f-d8deeba1904b,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2011,naphtha combustion consumption by freight transport,0.1343188,TJ,CO2,73300.0,kg/TJ,9845.568039999998,kg +faf33348-2345-330b-afb5-1a0551b1eb5b,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2011,naphtha combustion consumption by freight transport,0.1343188,TJ,CH4,3.0,kg/TJ,0.4029564,kg +14890568-c669-3b48-b1ac-4446655128be,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2011,naphtha combustion consumption by freight transport,0.1343188,TJ,N2O,0.6,kg/TJ,0.08059127999999999,kg +15be5887-c2b3-36f9-b497-1d39550d3b3b,SESCO,II.1.1,Santa Fe,AR-S,annual,2011,naphtha combustion consumption by freight transport,3.7609264,TJ,CO2,73300.0,kg/TJ,275675.90512,kg +b2ae24d0-64bb-3b7e-b9cd-8387222ed2c3,SESCO,II.1.1,Santa Fe,AR-S,annual,2011,naphtha combustion consumption by freight transport,3.7609264,TJ,CH4,3.0,kg/TJ,11.2827792,kg +f64de856-0bf9-37e6-9a15-fd8b0f130fb8,SESCO,II.1.1,Santa Fe,AR-S,annual,2011,naphtha combustion consumption by freight transport,3.7609264,TJ,N2O,0.6,kg/TJ,2.25655584,kg +fc7d3748-bc57-37e2-a85f-6b8cc212ab52,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2011,naphtha combustion consumption by freight transport,0.10073909999999998,TJ,CO2,73300.0,kg/TJ,7384.176029999999,kg +071af27a-6381-35d7-96ee-f82599a8ac91,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2011,naphtha combustion consumption by freight transport,0.10073909999999998,TJ,CH4,3.0,kg/TJ,0.30221729999999997,kg +b2a1d65a-1e5e-3a96-a238-dc624274066d,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2011,naphtha combustion consumption by freight transport,0.10073909999999998,TJ,N2O,0.6,kg/TJ,0.06044345999999999,kg +fa926560-7331-3588-890d-90b6ea5ec0bd,SESCO,II.1.1,Tucuman,AR-T,annual,2011,naphtha combustion consumption by freight transport,0.6380142999999999,TJ,CO2,73300.0,kg/TJ,46766.448189999996,kg +9b257886-3eee-34fd-9574-52c853851098,SESCO,II.1.1,Tucuman,AR-T,annual,2011,naphtha combustion consumption by freight transport,0.6380142999999999,TJ,CH4,3.0,kg/TJ,1.9140428999999997,kg +d90904a8-638f-32d5-9e95-c8f6661ca059,SESCO,II.1.1,Tucuman,AR-T,annual,2011,naphtha combustion consumption by freight transport,0.6380142999999999,TJ,N2O,0.6,kg/TJ,0.38280857999999995,kg +473454cb-120f-3e38-844b-aa449f4c3c51,SESCO,II.1.1,Capital Federal,AR-C,annual,2012,naphtha combustion consumption by to the public,42.0781053,TJ,CO2,73300.0,kg/TJ,3084325.11849,kg +ad47ea99-cc90-312e-8db7-b529245d4bb7,SESCO,II.1.1,Capital Federal,AR-C,annual,2012,naphtha combustion consumption by to the public,42.0781053,TJ,CH4,3.0,kg/TJ,126.23431589999998,kg +c3e1fea1-220c-3c51-b6be-6fd5d8bfa6af,SESCO,II.1.1,Capital Federal,AR-C,annual,2012,naphtha combustion consumption by to the public,42.0781053,TJ,N2O,0.6,kg/TJ,25.24686318,kg +d950181d-c76d-37e6-b3c2-4196124ef505,SESCO,II.1.1,Capital Federal,AR-C,annual,2012,naphtha combustion consumption by to the public,5.317927999999999,TJ,CO2,73300.0,kg/TJ,389804.12239999993,kg +1843a2cf-096b-3f4f-afa6-a14e8bca1976,SESCO,II.1.1,Capital Federal,AR-C,annual,2012,naphtha combustion consumption by to the public,5.317927999999999,TJ,CH4,3.0,kg/TJ,15.953783999999999,kg +cc6a8d17-6d70-3df4-9820-b6a02ee3f546,SESCO,II.1.1,Capital Federal,AR-C,annual,2012,naphtha combustion consumption by to the public,5.317927999999999,TJ,N2O,0.6,kg/TJ,3.1907567999999995,kg +229cf067-3d21-37f2-bfae-562bea35d4b4,SESCO,II.5.1,Córdoba,AR-X,annual,2012,naphtha combustion consumption by agriculture machines,7.6378740899999995,TJ,CO2,73300.0,kg/TJ,559856.1707969999,kg +dce1290d-5696-3aaf-8a66-8bf9d13a01bc,SESCO,II.5.1,Córdoba,AR-X,annual,2012,naphtha combustion consumption by agriculture machines,7.6378740899999995,TJ,CH4,3.0,kg/TJ,22.913622269999998,kg +d97b7a9e-959b-3126-9a6f-74ca24e3a89e,SESCO,II.5.1,Córdoba,AR-X,annual,2012,naphtha combustion consumption by agriculture machines,7.6378740899999995,TJ,N2O,0.6,kg/TJ,4.582724453999999,kg +496aefb1-98f4-303f-983b-005311a98fa5,SESCO,II.5.1,Santa Fe,AR-S,annual,2012,naphtha combustion consumption by agriculture machines,20.700034739999996,TJ,CO2,73300.0,kg/TJ,1517312.5464419997,kg +da219172-bf41-39c0-97cc-07f36d3d8205,SESCO,II.5.1,Santa Fe,AR-S,annual,2012,naphtha combustion consumption by agriculture machines,20.700034739999996,TJ,CH4,3.0,kg/TJ,62.10010421999999,kg +4d92e4cf-4d8d-35ca-a0c5-3f7e8ac92419,SESCO,II.5.1,Santa Fe,AR-S,annual,2012,naphtha combustion consumption by agriculture machines,20.700034739999996,TJ,N2O,0.6,kg/TJ,12.420020843999998,kg +f7e7b5d3-ef1f-3312-b26d-8ca60fd3679b,SESCO,II.5.1,Córdoba,AR-X,annual,2012,naphtha combustion consumption by agriculture machines,3.6427806799999995,TJ,CO2,73300.0,kg/TJ,267015.82384399994,kg +41c04000-af9c-35fc-8503-1486c64b41ab,SESCO,II.5.1,Córdoba,AR-X,annual,2012,naphtha combustion consumption by agriculture machines,3.6427806799999995,TJ,CH4,3.0,kg/TJ,10.928342039999999,kg +ebe9b7d8-0b66-34c3-ad59-967dd869ae33,SESCO,II.5.1,Córdoba,AR-X,annual,2012,naphtha combustion consumption by agriculture machines,3.6427806799999995,TJ,N2O,0.6,kg/TJ,2.1856684079999997,kg +38f64a82-bbf7-3491-aa78-fb85da7e133d,SESCO,II.5.1,Santa Fe,AR-S,annual,2012,naphtha combustion consumption by agriculture machines,0.5982668999999999,TJ,CO2,73300.0,kg/TJ,43852.963769999995,kg +4cb9e770-5de1-355f-8948-2ff8fc657106,SESCO,II.5.1,Santa Fe,AR-S,annual,2012,naphtha combustion consumption by agriculture machines,0.5982668999999999,TJ,CH4,3.0,kg/TJ,1.7948006999999997,kg +1ed3b68f-5082-3a31-afb9-289eed0fab1b,SESCO,II.5.1,Santa Fe,AR-S,annual,2012,naphtha combustion consumption by agriculture machines,0.5982668999999999,TJ,N2O,0.6,kg/TJ,0.3589601399999999,kg +692f0559-7c9b-34c0-a945-f87f653c646f,SESCO,II.1.1,Buenos Aires,AR-B,annual,2012,naphtha combustion consumption by to the public,15.488465299999998,TJ,CO2,73300.0,kg/TJ,1135304.5064899998,kg +8f494600-8c06-3ff0-ad37-9e5e0712d25c,SESCO,II.1.1,Buenos Aires,AR-B,annual,2012,naphtha combustion consumption by to the public,15.488465299999998,TJ,CH4,3.0,kg/TJ,46.46539589999999,kg +8de75e9f-856f-347e-a27c-f261fc29acdd,SESCO,II.1.1,Buenos Aires,AR-B,annual,2012,naphtha combustion consumption by to the public,15.488465299999998,TJ,N2O,0.6,kg/TJ,9.293079179999998,kg +678aefed-6d11-3e1a-8ed6-099dd4984cd4,SESCO,II.1.1,Chaco,AR-H,annual,2012,naphtha combustion consumption by to the public,4.61994995,TJ,CO2,73300.0,kg/TJ,338642.331335,kg +f3e98919-801c-3b2a-ba04-0b192385edcf,SESCO,II.1.1,Chaco,AR-H,annual,2012,naphtha combustion consumption by to the public,4.61994995,TJ,CH4,3.0,kg/TJ,13.85984985,kg +c209eec4-ac0b-32e4-ab16-e42eec965255,SESCO,II.1.1,Chaco,AR-H,annual,2012,naphtha combustion consumption by to the public,4.61994995,TJ,N2O,0.6,kg/TJ,2.77196997,kg +2f51c6ff-b361-349e-bffb-e92b448ea524,SESCO,II.1.1,Entre Rios,AR-E,annual,2012,naphtha combustion consumption by to the public,2.7254381,TJ,CO2,73300.0,kg/TJ,199774.61273,kg +1a986f38-e2cc-33e7-a6a0-233ef308da60,SESCO,II.1.1,Entre Rios,AR-E,annual,2012,naphtha combustion consumption by to the public,2.7254381,TJ,CH4,3.0,kg/TJ,8.1763143,kg +fe6fe926-48e8-3a4a-a642-4f4e133e0997,SESCO,II.1.1,Entre Rios,AR-E,annual,2012,naphtha combustion consumption by to the public,2.7254381,TJ,N2O,0.6,kg/TJ,1.6352628599999999,kg +8d6e1223-96a2-3cc2-abab-62c091b63782,SESCO,II.1.1,Santa Fe,AR-S,annual,2012,naphtha combustion consumption by to the public,1.2962449499999997,TJ,CO2,73300.0,kg/TJ,95014.75483499999,kg +9077c986-12c2-3d17-8f86-bdd6cab36d27,SESCO,II.1.1,Santa Fe,AR-S,annual,2012,naphtha combustion consumption by to the public,1.2962449499999997,TJ,CH4,3.0,kg/TJ,3.888734849999999,kg +22bd28af-a170-3571-a237-356442ec609c,SESCO,II.1.1,Santa Fe,AR-S,annual,2012,naphtha combustion consumption by to the public,1.2962449499999997,TJ,N2O,0.6,kg/TJ,0.7777469699999998,kg +f131108c-7276-3977-84ad-7a5ac99212ca,SESCO,II.1.1,Buenos Aires,AR-B,annual,2012,naphtha combustion consumption by to the public,8260.238951396355,TJ,CO2,73300.0,kg/TJ,605475515.1373528,kg +673e5380-9129-327b-9d97-f546d28228e0,SESCO,II.1.1,Buenos Aires,AR-B,annual,2012,naphtha combustion consumption by to the public,8260.238951396355,TJ,CH4,3.0,kg/TJ,24780.716854189064,kg +d2e54392-5c61-347b-87b7-2140991b3538,SESCO,II.1.1,Buenos Aires,AR-B,annual,2012,naphtha combustion consumption by to the public,8260.238951396355,TJ,N2O,0.6,kg/TJ,4956.143370837813,kg +e436a18a-e583-3860-a2ef-2ae84bc9e723,SESCO,II.1.1,Capital Federal,AR-C,annual,2012,naphtha combustion consumption by to the public,2799.42718342133,TJ,CO2,73300.0,kg/TJ,205198012.5447835,kg +517d1bc0-9f63-3c10-845c-ec9b9d7c4559,SESCO,II.1.1,Capital Federal,AR-C,annual,2012,naphtha combustion consumption by to the public,2799.42718342133,TJ,CH4,3.0,kg/TJ,8398.28155026399,kg +4afd4c2e-bd80-321e-aee0-d9f983008a9f,SESCO,II.1.1,Capital Federal,AR-C,annual,2012,naphtha combustion consumption by to the public,2799.42718342133,TJ,N2O,0.6,kg/TJ,1679.656310052798,kg +4b3cd332-1682-3efe-a1e9-ce7974a33b1a,SESCO,II.1.1,Catamarca,AR-K,annual,2012,naphtha combustion consumption by to the public,322.87691166846497,TJ,CO2,73300.0,kg/TJ,23666877.62529848,kg +93c8f4f8-90ef-357c-91f6-327834ac0cf3,SESCO,II.1.1,Catamarca,AR-K,annual,2012,naphtha combustion consumption by to the public,322.87691166846497,TJ,CH4,3.0,kg/TJ,968.6307350053949,kg +a5e8e758-ad1c-3fc7-9b75-c030bb74ef68,SESCO,II.1.1,Catamarca,AR-K,annual,2012,naphtha combustion consumption by to the public,322.87691166846497,TJ,N2O,0.6,kg/TJ,193.72614700107897,kg +d1bc4f8f-59f3-3599-a846-094edfc706e7,SESCO,II.1.1,Chaco,AR-H,annual,2012,naphtha combustion consumption by to the public,405.92576679731997,TJ,CO2,73300.0,kg/TJ,29754358.706243552,kg +9662a40b-68c3-3edd-ba17-24fbf930c0b8,SESCO,II.1.1,Chaco,AR-H,annual,2012,naphtha combustion consumption by to the public,405.92576679731997,TJ,CH4,3.0,kg/TJ,1217.77730039196,kg +42d8a3bb-5aa8-3b93-b04c-914b74ea0117,SESCO,II.1.1,Chaco,AR-H,annual,2012,naphtha combustion consumption by to the public,405.92576679731997,TJ,N2O,0.6,kg/TJ,243.55546007839197,kg +4dae53f0-2403-335a-bcbe-557f0c4d2804,SESCO,II.1.1,Chubut,AR-U,annual,2012,naphtha combustion consumption by to the public,361.4011586920349,TJ,CO2,73300.0,kg/TJ,26490704.93212616,kg +cbfad3e9-8211-395c-aff1-954d76fd721d,SESCO,II.1.1,Chubut,AR-U,annual,2012,naphtha combustion consumption by to the public,361.4011586920349,TJ,CH4,3.0,kg/TJ,1084.2034760761048,kg +1a2fcbd0-fb71-3d7b-915b-302426c03366,SESCO,II.1.1,Chubut,AR-U,annual,2012,naphtha combustion consumption by to the public,361.4011586920349,TJ,N2O,0.6,kg/TJ,216.84069521522096,kg +040b97b4-7f8f-3e1e-85eb-95b3842b6269,SESCO,II.1.1,Corrientes,AR-W,annual,2012,naphtha combustion consumption by to the public,263.27689502576,TJ,CO2,73300.0,kg/TJ,19298196.405388206,kg +f2e6d12b-35db-35d4-b0e1-98acbdf2280c,SESCO,II.1.1,Corrientes,AR-W,annual,2012,naphtha combustion consumption by to the public,263.27689502576,TJ,CH4,3.0,kg/TJ,789.8306850772799,kg +ee794658-f8a1-3abb-a5a4-ac4201591194,SESCO,II.1.1,Corrientes,AR-W,annual,2012,naphtha combustion consumption by to the public,263.27689502576,TJ,N2O,0.6,kg/TJ,157.96613701545598,kg +6aa909c9-5ef8-3040-913f-293d707d3745,SESCO,II.1.1,Córdoba,AR-X,annual,2012,naphtha combustion consumption by to the public,2664.60697970159,TJ,CO2,73300.0,kg/TJ,195315691.61212653,kg +eb889bcc-53b6-3b1c-a5b3-75ab4996f6a0,SESCO,II.1.1,Córdoba,AR-X,annual,2012,naphtha combustion consumption by to the public,2664.60697970159,TJ,CH4,3.0,kg/TJ,7993.820939104769,kg +5c22cc56-92c2-393e-9bcc-6ba9e7154d67,SESCO,II.1.1,Córdoba,AR-X,annual,2012,naphtha combustion consumption by to the public,2664.60697970159,TJ,N2O,0.6,kg/TJ,1598.7641878209538,kg +f449aa37-b05e-3269-b0f3-5b0b78b475eb,SESCO,II.1.1,Entre Rios,AR-E,annual,2012,naphtha combustion consumption by to the public,906.391453962225,TJ,CO2,73300.0,kg/TJ,66438493.57543109,kg +65cb7b79-7a92-3830-a693-dc9726c81c27,SESCO,II.1.1,Entre Rios,AR-E,annual,2012,naphtha combustion consumption by to the public,906.391453962225,TJ,CH4,3.0,kg/TJ,2719.174361886675,kg +5adc3c05-5477-317b-9a56-f0c46f55e08c,SESCO,II.1.1,Entre Rios,AR-E,annual,2012,naphtha combustion consumption by to the public,906.391453962225,TJ,N2O,0.6,kg/TJ,543.8348723773349,kg +a10d154a-aaaf-3821-9413-b70b8740e5fa,SESCO,II.1.1,Formosa,AR-P,annual,2012,naphtha combustion consumption by to the public,371.346727695405,TJ,CO2,73300.0,kg/TJ,27219715.140073184,kg +6ac567ce-279c-3f32-a78c-921aff485654,SESCO,II.1.1,Formosa,AR-P,annual,2012,naphtha combustion consumption by to the public,371.346727695405,TJ,CH4,3.0,kg/TJ,1114.040183086215,kg +155e759e-6d75-3914-b7ba-6040e0afc376,SESCO,II.1.1,Formosa,AR-P,annual,2012,naphtha combustion consumption by to the public,371.346727695405,TJ,N2O,0.6,kg/TJ,222.80803661724298,kg +a8982c83-8648-32f4-909e-e7c3aa4f393f,SESCO,II.1.1,Jujuy,AR-Y,annual,2012,naphtha combustion consumption by to the public,97.431935914775,TJ,CO2,73300.0,kg/TJ,7141760.902553007,kg +97d9f621-9790-306c-b534-e1fff6f5562d,SESCO,II.1.1,Jujuy,AR-Y,annual,2012,naphtha combustion consumption by to the public,97.431935914775,TJ,CH4,3.0,kg/TJ,292.295807744325,kg +b1b92f95-c86a-31f4-b2c6-46df8156f540,SESCO,II.1.1,Jujuy,AR-Y,annual,2012,naphtha combustion consumption by to the public,97.431935914775,TJ,N2O,0.6,kg/TJ,58.459161548865,kg +10806cce-de61-3a7b-9af1-9338b627492d,SESCO,II.1.1,La Pampa,AR-L,annual,2012,naphtha combustion consumption by to the public,105.44464748355999,TJ,CO2,73300.0,kg/TJ,7729092.660544948,kg +a27e1664-4782-3ad4-b16d-4da987e41fed,SESCO,II.1.1,La Pampa,AR-L,annual,2012,naphtha combustion consumption by to the public,105.44464748355999,TJ,CH4,3.0,kg/TJ,316.33394245067996,kg +c3160300-da9a-3bf9-a9b4-ecfff646ce76,SESCO,II.1.1,La Pampa,AR-L,annual,2012,naphtha combustion consumption by to the public,105.44464748355999,TJ,N2O,0.6,kg/TJ,63.266788490135994,kg +2ea2dc2a-6ab2-367d-b4e5-ff9e3d70a079,SESCO,II.1.1,La Rioja,AR-F,annual,2012,naphtha combustion consumption by to the public,225.91401035587998,TJ,CO2,73300.0,kg/TJ,16559496.959086003,kg +11f0d1de-4d59-3724-aeb1-2e6ba2e94308,SESCO,II.1.1,La Rioja,AR-F,annual,2012,naphtha combustion consumption by to the public,225.91401035587998,TJ,CH4,3.0,kg/TJ,677.7420310676399,kg +ace126fc-36db-38f6-87e3-4c9655858f3b,SESCO,II.1.1,La Rioja,AR-F,annual,2012,naphtha combustion consumption by to the public,225.91401035587998,TJ,N2O,0.6,kg/TJ,135.54840621352798,kg +91f8c45a-0e92-37e8-8b7c-d7e6da5321c2,SESCO,II.1.1,Mendoza,AR-M,annual,2012,naphtha combustion consumption by to the public,402.61344548694495,TJ,CO2,73300.0,kg/TJ,29511565.554193065,kg +5e501553-8b8b-3063-8c91-7dd883c4aaa7,SESCO,II.1.1,Mendoza,AR-M,annual,2012,naphtha combustion consumption by to the public,402.61344548694495,TJ,CH4,3.0,kg/TJ,1207.8403364608348,kg +73980bfb-0e18-3618-9f19-4550f486e3f9,SESCO,II.1.1,Mendoza,AR-M,annual,2012,naphtha combustion consumption by to the public,402.61344548694495,TJ,N2O,0.6,kg/TJ,241.56806729216697,kg +5c6491bb-7f3c-3a98-adb2-79db56adc919,SESCO,II.1.1,Misiones,AR-N,annual,2012,naphtha combustion consumption by to the public,763.95092863859,TJ,CO2,73300.0,kg/TJ,55997603.069208644,kg +9bc44398-ac11-3543-b1ba-37af79f76ce5,SESCO,II.1.1,Misiones,AR-N,annual,2012,naphtha combustion consumption by to the public,763.95092863859,TJ,CH4,3.0,kg/TJ,2291.85278591577,kg +020c3c53-2bb1-37bf-8551-c6022a8a44f1,SESCO,II.1.1,Misiones,AR-N,annual,2012,naphtha combustion consumption by to the public,763.95092863859,TJ,N2O,0.6,kg/TJ,458.37055718315395,kg +d1b5be93-c995-32a9-bc72-369643487ddd,SESCO,II.1.1,Neuquén,AR-Q,annual,2012,naphtha combustion consumption by to the public,278.74336072236497,TJ,CO2,73300.0,kg/TJ,20431888.340949353,kg +ee8b3c70-3ea0-3f6a-a915-6c8c2f8f5535,SESCO,II.1.1,Neuquén,AR-Q,annual,2012,naphtha combustion consumption by to the public,278.74336072236497,TJ,CH4,3.0,kg/TJ,836.2300821670949,kg +328f4cc0-34c4-3160-8c69-a0519c00c53f,SESCO,II.1.1,Neuquén,AR-Q,annual,2012,naphtha combustion consumption by to the public,278.74336072236497,TJ,N2O,0.6,kg/TJ,167.246016433419,kg +397270c7-16ec-3a9d-8c6c-73755b6347b6,SESCO,II.1.1,Rio Negro,AR-R,annual,2012,naphtha combustion consumption by to the public,400.17743894204995,TJ,CO2,73300.0,kg/TJ,29333006.27445226,kg +cf5699f5-94d7-3a37-af5b-64ee9108bebe,SESCO,II.1.1,Rio Negro,AR-R,annual,2012,naphtha combustion consumption by to the public,400.17743894204995,TJ,CH4,3.0,kg/TJ,1200.5323168261498,kg +a2ee5ad1-85da-3756-95c2-30bc2ae57b21,SESCO,II.1.1,Rio Negro,AR-R,annual,2012,naphtha combustion consumption by to the public,400.17743894204995,TJ,N2O,0.6,kg/TJ,240.10646336522996,kg +b1203d41-db14-308d-a840-9d1372822ced,SESCO,II.1.1,Salta,AR-A,annual,2012,naphtha combustion consumption by to the public,67.124239963935,TJ,CO2,73300.0,kg/TJ,4920206.789356436,kg +ca5b3458-c984-35b5-8eb0-267106b1dcee,SESCO,II.1.1,Salta,AR-A,annual,2012,naphtha combustion consumption by to the public,67.124239963935,TJ,CH4,3.0,kg/TJ,201.372719891805,kg +cd966fa7-4d16-3550-b800-997e8cd1c53a,SESCO,II.1.1,Salta,AR-A,annual,2012,naphtha combustion consumption by to the public,67.124239963935,TJ,N2O,0.6,kg/TJ,40.274543978360995,kg +1695f92d-8612-37fb-9ac3-6bdae2e89f40,SESCO,II.1.1,San Juan,AR-J,annual,2012,naphtha combustion consumption by to the public,317.72735591635495,TJ,CO2,73300.0,kg/TJ,23289415.188668817,kg +27ee37f9-bd1e-3f9f-b80e-3cc2829aa4dd,SESCO,II.1.1,San Juan,AR-J,annual,2012,naphtha combustion consumption by to the public,317.72735591635495,TJ,CH4,3.0,kg/TJ,953.1820677490648,kg +73ea3eaf-6914-3203-8789-c2599131718f,SESCO,II.1.1,San Juan,AR-J,annual,2012,naphtha combustion consumption by to the public,317.72735591635495,TJ,N2O,0.6,kg/TJ,190.63641354981297,kg +b9b6e4b7-950e-335e-b171-8e17040cb313,SESCO,II.1.1,San Luis,AR-D,annual,2012,naphtha combustion consumption by to the public,520.1367859295299,TJ,CO2,73300.0,kg/TJ,38126026.40863454,kg +a71b64f4-b388-31b4-b912-a051fb9855b0,SESCO,II.1.1,San Luis,AR-D,annual,2012,naphtha combustion consumption by to the public,520.1367859295299,TJ,CH4,3.0,kg/TJ,1560.4103577885896,kg +7fbd0f8a-4267-3c4c-88fc-af632df236c2,SESCO,II.1.1,San Luis,AR-D,annual,2012,naphtha combustion consumption by to the public,520.1367859295299,TJ,N2O,0.6,kg/TJ,312.08207155771794,kg +78dec38e-4479-39da-a120-014a92f1a9f0,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2012,naphtha combustion consumption by to the public,42.01060749886,TJ,CO2,73300.0,kg/TJ,3079377.529666438,kg +0e298234-4aaa-3ee0-ac69-86bbfcf8d484,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2012,naphtha combustion consumption by to the public,42.01060749886,TJ,CH4,3.0,kg/TJ,126.03182249657999,kg +249fef22-4cc5-3065-acbb-0ce8126d4377,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2012,naphtha combustion consumption by to the public,42.01060749886,TJ,N2O,0.6,kg/TJ,25.206364499316,kg +7a694d37-bcc0-32c6-940d-d69442292fe8,SESCO,II.1.1,Santa Fe,AR-S,annual,2012,naphtha combustion consumption by to the public,2536.1800222604998,TJ,CO2,73300.0,kg/TJ,185901995.63169464,kg +c414c582-c9df-3f87-84c1-b921c23d1609,SESCO,II.1.1,Santa Fe,AR-S,annual,2012,naphtha combustion consumption by to the public,2536.1800222604998,TJ,CH4,3.0,kg/TJ,7608.540066781499,kg +42ddceb6-7aae-30ab-8714-bf7216e4cad6,SESCO,II.1.1,Santa Fe,AR-S,annual,2012,naphtha combustion consumption by to the public,2536.1800222604998,TJ,N2O,0.6,kg/TJ,1521.7080133562997,kg +dad7c3bd-109f-3f17-b67f-03a005d53482,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2012,naphtha combustion consumption by to the public,265.31088947979,TJ,CO2,73300.0,kg/TJ,19447288.198868606,kg +70272057-71b7-3ceb-bb7d-7d1f8766a9d1,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2012,naphtha combustion consumption by to the public,265.31088947979,TJ,CH4,3.0,kg/TJ,795.93266843937,kg +330df499-b73e-31e9-8311-bab035e3d456,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2012,naphtha combustion consumption by to the public,265.31088947979,TJ,N2O,0.6,kg/TJ,159.18653368787398,kg +31a4e658-8efe-3d61-a825-dbdaccb01268,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2012,naphtha combustion consumption by to the public,96.56849053505499,TJ,CO2,73300.0,kg/TJ,7078470.356219531,kg +28b53341-c1c4-38e4-8683-2b575decf019,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2012,naphtha combustion consumption by to the public,96.56849053505499,TJ,CH4,3.0,kg/TJ,289.705471605165,kg +0aac53dd-be3a-38ab-92c0-8642fc8a76cc,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2012,naphtha combustion consumption by to the public,96.56849053505499,TJ,N2O,0.6,kg/TJ,57.94109432103299,kg +9b175eda-ccce-347e-9a09-79089e6d25c0,SESCO,II.1.1,Tucuman,AR-T,annual,2012,naphtha combustion consumption by to the public,91.10218902014999,TJ,CO2,73300.0,kg/TJ,6677790.455176994,kg +13e68873-16b2-3f37-b30b-dd7704ac2bcc,SESCO,II.1.1,Tucuman,AR-T,annual,2012,naphtha combustion consumption by to the public,91.10218902014999,TJ,CH4,3.0,kg/TJ,273.30656706045,kg +f8808924-98d1-38c7-b66a-4e9a8a62365e,SESCO,II.1.1,Tucuman,AR-T,annual,2012,naphtha combustion consumption by to the public,91.10218902014999,TJ,N2O,0.6,kg/TJ,54.661313412089996,kg +4f4a2ed2-9141-368f-ba1b-97a427650f89,SESCO,II.1.1,Buenos Aires,AR-B,annual,2012,naphtha combustion consumption by to the public,1897.0397470170296,TJ,CO2,73300.0,kg/TJ,139053013.45634827,kg +7f2b8bb6-426e-3492-8c38-303c7af2cd69,SESCO,II.1.1,Buenos Aires,AR-B,annual,2012,naphtha combustion consumption by to the public,1897.0397470170296,TJ,CH4,3.0,kg/TJ,5691.1192410510885,kg +bfe0247d-9a70-3807-9737-6a47bcc0d602,SESCO,II.1.1,Buenos Aires,AR-B,annual,2012,naphtha combustion consumption by to the public,1897.0397470170296,TJ,N2O,0.6,kg/TJ,1138.2238482102177,kg +944ca527-fc6c-32ad-ad08-a45e9563b810,SESCO,II.1.1,Capital Federal,AR-C,annual,2012,naphtha combustion consumption by to the public,961.969205906555,TJ,CO2,73300.0,kg/TJ,70512342.79295048,kg +df5330f5-c050-39d1-a13f-865828e81600,SESCO,II.1.1,Capital Federal,AR-C,annual,2012,naphtha combustion consumption by to the public,961.969205906555,TJ,CH4,3.0,kg/TJ,2885.907617719665,kg +c646ebb4-2257-36d8-9896-1b821762b121,SESCO,II.1.1,Capital Federal,AR-C,annual,2012,naphtha combustion consumption by to the public,961.969205906555,TJ,N2O,0.6,kg/TJ,577.1815235439329,kg +87f1bbaa-56d1-3629-afb1-fd14d6ca5ae7,SESCO,II.1.1,Catamarca,AR-K,annual,2012,naphtha combustion consumption by to the public,63.425597773999996,TJ,CO2,73300.0,kg/TJ,4649096.3168342,kg +60c7c63f-eff9-3918-9969-b9da9c47141a,SESCO,II.1.1,Catamarca,AR-K,annual,2012,naphtha combustion consumption by to the public,63.425597773999996,TJ,CH4,3.0,kg/TJ,190.276793322,kg +f0605988-3c4a-3ef7-bb26-213ddccf2096,SESCO,II.1.1,Catamarca,AR-K,annual,2012,naphtha combustion consumption by to the public,63.425597773999996,TJ,N2O,0.6,kg/TJ,38.055358664399996,kg +f98291be-c2c7-374b-a54d-67d8b5bc8608,SESCO,II.1.1,Chaco,AR-H,annual,2012,naphtha combustion consumption by to the public,82.89540299271,TJ,CO2,73300.0,kg/TJ,6076233.039365644,kg +92c7eb43-1032-349f-82d4-c322d01bd6ae,SESCO,II.1.1,Chaco,AR-H,annual,2012,naphtha combustion consumption by to the public,82.89540299271,TJ,CH4,3.0,kg/TJ,248.68620897813003,kg +df2b2f98-d6cd-3040-8d82-e9bd96de928a,SESCO,II.1.1,Chaco,AR-H,annual,2012,naphtha combustion consumption by to the public,82.89540299271,TJ,N2O,0.6,kg/TJ,49.737241795626,kg +43ec9e4c-1937-3871-9038-1c47fc537eb2,SESCO,II.1.1,Chubut,AR-U,annual,2012,naphtha combustion consumption by to the public,46.040756025495,TJ,CO2,73300.0,kg/TJ,3374787.4166687834,kg +7fea5252-c197-3945-9693-2256dfe34f8e,SESCO,II.1.1,Chubut,AR-U,annual,2012,naphtha combustion consumption by to the public,46.040756025495,TJ,CH4,3.0,kg/TJ,138.122268076485,kg +a17e7436-7522-327e-ac28-0ee3014535b7,SESCO,II.1.1,Chubut,AR-U,annual,2012,naphtha combustion consumption by to the public,46.040756025495,TJ,N2O,0.6,kg/TJ,27.624453615297,kg +25f9f02d-84b6-3c89-8298-53064115300d,SESCO,II.1.1,Corrientes,AR-W,annual,2012,naphtha combustion consumption by to the public,58.71882932569499,TJ,CO2,73300.0,kg/TJ,4304090.189573443,kg +e6df1988-fc51-359d-a23e-984a356b0a88,SESCO,II.1.1,Corrientes,AR-W,annual,2012,naphtha combustion consumption by to the public,58.71882932569499,TJ,CH4,3.0,kg/TJ,176.15648797708496,kg +a1cb32e2-c37e-3d55-a8b7-37a308f474b3,SESCO,II.1.1,Corrientes,AR-W,annual,2012,naphtha combustion consumption by to the public,58.71882932569499,TJ,N2O,0.6,kg/TJ,35.23129759541699,kg +c1764a37-4be9-3de4-acad-767b58df3e8e,SESCO,II.1.1,Córdoba,AR-X,annual,2012,naphtha combustion consumption by to the public,625.35236366449,TJ,CO2,73300.0,kg/TJ,45838328.256607115,kg +f74f7f21-d8f0-3a7f-af87-3b5d4e4cbe65,SESCO,II.1.1,Córdoba,AR-X,annual,2012,naphtha combustion consumption by to the public,625.35236366449,TJ,CH4,3.0,kg/TJ,1876.05709099347,kg +e0535f3e-41a9-3eef-aed6-676f324d8c5e,SESCO,II.1.1,Córdoba,AR-X,annual,2012,naphtha combustion consumption by to the public,625.35236366449,TJ,N2O,0.6,kg/TJ,375.211418198694,kg +46960bb4-beed-3152-aff1-da67be28eb3b,SESCO,II.1.1,Entre Rios,AR-E,annual,2012,naphtha combustion consumption by to the public,194.922372361255,TJ,CO2,73300.0,kg/TJ,14287809.89407999,kg +56930a28-a286-35d9-b9a0-44e40211d23f,SESCO,II.1.1,Entre Rios,AR-E,annual,2012,naphtha combustion consumption by to the public,194.922372361255,TJ,CH4,3.0,kg/TJ,584.767117083765,kg +3d2c16a6-8d02-3a81-8241-bd454bfe2a67,SESCO,II.1.1,Entre Rios,AR-E,annual,2012,naphtha combustion consumption by to the public,194.922372361255,TJ,N2O,0.6,kg/TJ,116.95342341675298,kg +834f56af-2af9-3b54-ba99-e8952a5482dc,SESCO,II.1.1,Formosa,AR-P,annual,2012,naphtha combustion consumption by to the public,77.840144075155,TJ,CO2,73300.0,kg/TJ,5705682.560708861,kg +6a25ce03-f4c5-36bc-91d2-89f3fd6adf80,SESCO,II.1.1,Formosa,AR-P,annual,2012,naphtha combustion consumption by to the public,77.840144075155,TJ,CH4,3.0,kg/TJ,233.520432225465,kg +659b8321-6f9b-3150-9191-0814dd2c3a13,SESCO,II.1.1,Formosa,AR-P,annual,2012,naphtha combustion consumption by to the public,77.840144075155,TJ,N2O,0.6,kg/TJ,46.704086445093,kg +b3e5977f-397f-316e-b252-a6617143fb30,SESCO,II.1.1,Jujuy,AR-Y,annual,2012,naphtha combustion consumption by to the public,6.247641410009999,TJ,CO2,73300.0,kg/TJ,457952.11535373295,kg +a32a5022-d2c5-3be1-97ef-37c2d2e53570,SESCO,II.1.1,Jujuy,AR-Y,annual,2012,naphtha combustion consumption by to the public,6.247641410009999,TJ,CH4,3.0,kg/TJ,18.74292423003,kg +206d0280-2a25-35c6-b065-fab254119155,SESCO,II.1.1,Jujuy,AR-Y,annual,2012,naphtha combustion consumption by to the public,6.247641410009999,TJ,N2O,0.6,kg/TJ,3.748584846005999,kg +b3d81eaa-0109-3158-bd02-a8d85294ba5e,SESCO,II.1.1,La Pampa,AR-L,annual,2012,naphtha combustion consumption by to the public,23.011934140194995,TJ,CO2,73300.0,kg/TJ,1686774.7724762931,kg +f1acf00c-f43d-35b5-a321-999d5d256e9c,SESCO,II.1.1,La Pampa,AR-L,annual,2012,naphtha combustion consumption by to the public,23.011934140194995,TJ,CH4,3.0,kg/TJ,69.03580242058499,kg +4395579e-7f2d-31d6-bb90-5373ca70c31c,SESCO,II.1.1,La Pampa,AR-L,annual,2012,naphtha combustion consumption by to the public,23.011934140194995,TJ,N2O,0.6,kg/TJ,13.807160484116997,kg +31d0a1eb-3400-3be0-b778-4bb490245c69,SESCO,II.1.1,La Rioja,AR-F,annual,2012,naphtha combustion consumption by to the public,39.075759365334996,TJ,CO2,73300.0,kg/TJ,2864253.1614790554,kg +aca2cf01-f09c-314e-a5d8-6c1a273b0f08,SESCO,II.1.1,La Rioja,AR-F,annual,2012,naphtha combustion consumption by to the public,39.075759365334996,TJ,CH4,3.0,kg/TJ,117.227278096005,kg +ed149702-2cc7-33c0-835a-8eec45a6400e,SESCO,II.1.1,La Rioja,AR-F,annual,2012,naphtha combustion consumption by to the public,39.075759365334996,TJ,N2O,0.6,kg/TJ,23.445455619200995,kg +901b7ac6-c822-3283-865d-73b821ee3b9c,SESCO,II.1.1,Mendoza,AR-M,annual,2012,naphtha combustion consumption by to the public,71.86572118726,TJ,CO2,73300.0,kg/TJ,5267757.363026158,kg +b18ca890-296f-3c1a-ab3e-390b40bc3d31,SESCO,II.1.1,Mendoza,AR-M,annual,2012,naphtha combustion consumption by to the public,71.86572118726,TJ,CH4,3.0,kg/TJ,215.59716356177998,kg +6e1c57ce-c17e-3ab9-a6b9-d6b37884dda8,SESCO,II.1.1,Mendoza,AR-M,annual,2012,naphtha combustion consumption by to the public,71.86572118726,TJ,N2O,0.6,kg/TJ,43.119432712355994,kg +e0e8271b-16a6-3638-8dd9-74212a131465,SESCO,II.1.1,Misiones,AR-N,annual,2012,naphtha combustion consumption by to the public,95.30340531942998,TJ,CO2,73300.0,kg/TJ,6985739.609914218,kg +f684f6c8-e76e-3164-83a9-b65a6446df86,SESCO,II.1.1,Misiones,AR-N,annual,2012,naphtha combustion consumption by to the public,95.30340531942998,TJ,CH4,3.0,kg/TJ,285.91021595828994,kg +b2acbc6b-1736-31d1-b6c0-34c87c7b16ac,SESCO,II.1.1,Misiones,AR-N,annual,2012,naphtha combustion consumption by to the public,95.30340531942998,TJ,N2O,0.6,kg/TJ,57.18204319165799,kg +fb6922e3-0059-3a2b-9111-b45f4ba0cfc8,SESCO,II.1.1,Neuquén,AR-Q,annual,2012,naphtha combustion consumption by to the public,60.462331962724996,TJ,CO2,73300.0,kg/TJ,4431888.932867742,kg +4119732d-4147-32f5-80a7-9d5cc3694e9e,SESCO,II.1.1,Neuquén,AR-Q,annual,2012,naphtha combustion consumption by to the public,60.462331962724996,TJ,CH4,3.0,kg/TJ,181.386995888175,kg +5e01c505-864d-304f-a356-c2b25008c90d,SESCO,II.1.1,Neuquén,AR-Q,annual,2012,naphtha combustion consumption by to the public,60.462331962724996,TJ,N2O,0.6,kg/TJ,36.277399177635,kg +7fe79a61-7339-3b91-9348-306e31bf8388,SESCO,II.1.1,Rio Negro,AR-R,annual,2012,naphtha combustion consumption by to the public,83.82884559972999,TJ,CO2,73300.0,kg/TJ,6144654.382460208,kg +194e074e-105a-308e-bf3d-2de54d7b5f42,SESCO,II.1.1,Rio Negro,AR-R,annual,2012,naphtha combustion consumption by to the public,83.82884559972999,TJ,CH4,3.0,kg/TJ,251.48653679918996,kg +96f02e63-68d8-3d3d-a63b-854c46d57871,SESCO,II.1.1,Rio Negro,AR-R,annual,2012,naphtha combustion consumption by to the public,83.82884559972999,TJ,N2O,0.6,kg/TJ,50.297307359837994,kg +1bf72a12-c278-38e1-a165-03baf72579b0,SESCO,II.1.1,Salta,AR-A,annual,2012,naphtha combustion consumption by to the public,10.561747349614999,TJ,CO2,73300.0,kg/TJ,774176.0807267794,kg +137c68be-15ca-351c-8dce-d59ec0425604,SESCO,II.1.1,Salta,AR-A,annual,2012,naphtha combustion consumption by to the public,10.561747349614999,TJ,CH4,3.0,kg/TJ,31.685242048844998,kg +dca836a5-a768-346c-9584-8d0222dc6516,SESCO,II.1.1,Salta,AR-A,annual,2012,naphtha combustion consumption by to the public,10.561747349614999,TJ,N2O,0.6,kg/TJ,6.337048409768999,kg +04a7c9e9-b939-3070-a681-9be84e524f7a,SESCO,II.1.1,San Juan,AR-J,annual,2012,naphtha combustion consumption by to the public,58.98531402148,TJ,CO2,73300.0,kg/TJ,4323623.517774484,kg +10803278-55b1-34d5-8369-b0f193fde0b0,SESCO,II.1.1,San Juan,AR-J,annual,2012,naphtha combustion consumption by to the public,58.98531402148,TJ,CH4,3.0,kg/TJ,176.95594206444,kg +5a5a605d-f53c-3bd1-b191-98b7f428a42f,SESCO,II.1.1,San Juan,AR-J,annual,2012,naphtha combustion consumption by to the public,58.98531402148,TJ,N2O,0.6,kg/TJ,35.391188412888,kg +3f9ccf08-d4a4-3357-a7d2-53b79ee2ebc6,SESCO,II.1.1,San Luis,AR-D,annual,2012,naphtha combustion consumption by to the public,85.35204642194999,TJ,CO2,73300.0,kg/TJ,6256305.002728934,kg +cdf7370e-06ff-3743-b00a-342bdac313ad,SESCO,II.1.1,San Luis,AR-D,annual,2012,naphtha combustion consumption by to the public,85.35204642194999,TJ,CH4,3.0,kg/TJ,256.05613926585,kg +1fa4bfdc-6242-3b5e-8ce2-d13f23326dd3,SESCO,II.1.1,San Luis,AR-D,annual,2012,naphtha combustion consumption by to the public,85.35204642194999,TJ,N2O,0.6,kg/TJ,51.211227853169994,kg +ea8685ca-cba1-3d3d-ab3f-d60eef8c8ffd,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2012,naphtha combustion consumption by to the public,20.301037249569998,TJ,CO2,73300.0,kg/TJ,1488066.0303934808,kg +86ab1fef-c60e-3f39-8c68-e21882bc01e7,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2012,naphtha combustion consumption by to the public,20.301037249569998,TJ,CH4,3.0,kg/TJ,60.90311174870999,kg +643e2501-0998-3254-a0ec-75c846fb8db6,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2012,naphtha combustion consumption by to the public,20.301037249569998,TJ,N2O,0.6,kg/TJ,12.180622349741999,kg +c1bf75bb-4b45-3987-b44a-492d597cd8a0,SESCO,II.1.1,Santa Fe,AR-S,annual,2012,naphtha combustion consumption by to the public,605.5438197269998,TJ,CO2,73300.0,kg/TJ,44386361.98598909,kg +a56e15ef-aee7-31c7-8977-76aea54c6d4d,SESCO,II.1.1,Santa Fe,AR-S,annual,2012,naphtha combustion consumption by to the public,605.5438197269998,TJ,CH4,3.0,kg/TJ,1816.6314591809994,kg +f669c18e-a059-37c2-9879-ff9b60c618ce,SESCO,II.1.1,Santa Fe,AR-S,annual,2012,naphtha combustion consumption by to the public,605.5438197269998,TJ,N2O,0.6,kg/TJ,363.32629183619986,kg +d0721dc0-d780-35e6-8af6-8aca996be098,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2012,naphtha combustion consumption by to the public,71.70733002548499,TJ,CO2,73300.0,kg/TJ,5256147.29086805,kg +2e2adb2c-6de8-3188-a9c0-c6cd52347f55,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2012,naphtha combustion consumption by to the public,71.70733002548499,TJ,CH4,3.0,kg/TJ,215.12199007645498,kg +9a098cd7-32f1-37f1-b3c1-2c0350ad0cc3,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2012,naphtha combustion consumption by to the public,71.70733002548499,TJ,N2O,0.6,kg/TJ,43.02439801529099,kg +6b04cadc-10fe-388f-ae78-ab29121e4ee6,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2012,naphtha combustion consumption by to the public,43.495067215599995,TJ,CO2,73300.0,kg/TJ,3188188.4269034797,kg +83386988-99ad-30c2-bc89-1e968d918330,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2012,naphtha combustion consumption by to the public,43.495067215599995,TJ,CH4,3.0,kg/TJ,130.4852016468,kg +c8517f12-6001-31c7-8103-6dd2e287835e,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2012,naphtha combustion consumption by to the public,43.495067215599995,TJ,N2O,0.6,kg/TJ,26.097040329359995,kg +69e238cb-c402-306e-8993-f86da59f50b1,SESCO,II.1.1,Tucuman,AR-T,annual,2012,naphtha combustion consumption by to the public,21.986973315999997,TJ,CO2,73300.0,kg/TJ,1611645.1440627999,kg +9ef0beb3-a899-359b-b9de-726e909b7c59,SESCO,II.1.1,Tucuman,AR-T,annual,2012,naphtha combustion consumption by to the public,21.986973315999997,TJ,CH4,3.0,kg/TJ,65.960919948,kg +2568b239-6355-3929-b81c-be88354a820e,SESCO,II.1.1,Tucuman,AR-T,annual,2012,naphtha combustion consumption by to the public,21.986973315999997,TJ,N2O,0.6,kg/TJ,13.192183989599998,kg +483dc302-05f1-3614-a7f8-1e20fe4832ac,SESCO,II.1.1,Buenos Aires,AR-B,annual,2012,naphtha combustion consumption by freight transport,0.360954363,TJ,CO2,73300.0,kg/TJ,26457.9548079,kg +3b1cfdc1-9ca0-342d-ae70-845d916ba461,SESCO,II.1.1,Buenos Aires,AR-B,annual,2012,naphtha combustion consumption by freight transport,0.360954363,TJ,CH4,3.0,kg/TJ,1.082863089,kg +617052c3-02ad-3f23-922a-9224e7378b91,SESCO,II.1.1,Buenos Aires,AR-B,annual,2012,naphtha combustion consumption by freight transport,0.360954363,TJ,N2O,0.6,kg/TJ,0.2165726178,kg +e0c8d56f-fd6d-3000-b868-96cf25171669,SESCO,II.1.1,Capital Federal,AR-C,annual,2012,naphtha combustion consumption by freight transport,13.195441220499998,TJ,CO2,73300.0,kg/TJ,967225.8414626499,kg +14348013-9edc-3623-bdb2-4247f9d0dfb6,SESCO,II.1.1,Capital Federal,AR-C,annual,2012,naphtha combustion consumption by freight transport,13.195441220499998,TJ,CH4,3.0,kg/TJ,39.58632366149999,kg +28eb54cc-293b-365e-acb5-cdce0dac6f77,SESCO,II.1.1,Capital Federal,AR-C,annual,2012,naphtha combustion consumption by freight transport,13.195441220499998,TJ,N2O,0.6,kg/TJ,7.917264732299998,kg +694fb702-ce01-3946-9553-6098ef63b0e7,SESCO,II.1.1,Misiones,AR-N,annual,2012,naphtha combustion consumption by freight transport,2.3930675999999997,TJ,CO2,73300.0,kg/TJ,175411.85507999998,kg +d2fa2600-201e-366d-b631-d7c98ab15c46,SESCO,II.1.1,Misiones,AR-N,annual,2012,naphtha combustion consumption by freight transport,2.3930675999999997,TJ,CH4,3.0,kg/TJ,7.179202799999999,kg +f45c181b-3e47-38fd-96a0-bf3debc73f86,SESCO,II.1.1,Misiones,AR-N,annual,2012,naphtha combustion consumption by freight transport,2.3930675999999997,TJ,N2O,0.6,kg/TJ,1.4358405599999997,kg +6c8be75e-c1ad-3174-9aa8-94958d034fcd,SESCO,II.1.1,Santa Fe,AR-S,annual,2012,naphtha combustion consumption by freight transport,0.03323705,TJ,CO2,73300.0,kg/TJ,2436.275765,kg +182a09ae-2486-333a-902a-dbe38b20d63e,SESCO,II.1.1,Santa Fe,AR-S,annual,2012,naphtha combustion consumption by freight transport,0.03323705,TJ,CH4,3.0,kg/TJ,0.09971115,kg +c7c891dd-0639-3fda-97dc-9a196f35122e,SESCO,II.1.1,Santa Fe,AR-S,annual,2012,naphtha combustion consumption by freight transport,0.03323705,TJ,N2O,0.6,kg/TJ,0.01994223,kg +1b0b65d7-7c24-3ebc-8595-cd2620175cef,SESCO,II.1.1,Buenos Aires,AR-B,annual,2012,naphtha combustion consumption by freight transport,4.5597908894999994,TJ,CO2,73300.0,kg/TJ,334232.67220035,kg +36779dd5-88bf-3e0d-9c9c-4a68f105c919,SESCO,II.1.1,Buenos Aires,AR-B,annual,2012,naphtha combustion consumption by freight transport,4.5597908894999994,TJ,CH4,3.0,kg/TJ,13.679372668499997,kg +06dd061e-fa07-3754-9133-200725a887db,SESCO,II.1.1,Buenos Aires,AR-B,annual,2012,naphtha combustion consumption by freight transport,4.5597908894999994,TJ,N2O,0.6,kg/TJ,2.7358745336999997,kg +7885800f-4829-345f-bff0-5357cad7449e,SESCO,II.1.1,Capital Federal,AR-C,annual,2012,naphtha combustion consumption by freight transport,11.5615078425,TJ,CO2,73300.0,kg/TJ,847458.5248552499,kg +e9fa397b-9933-39ce-a4c5-1d2cdadf50b0,SESCO,II.1.1,Capital Federal,AR-C,annual,2012,naphtha combustion consumption by freight transport,11.5615078425,TJ,CH4,3.0,kg/TJ,34.6845235275,kg +f31fc0d3-df11-3b8e-a773-85b18186a42c,SESCO,II.1.1,Capital Federal,AR-C,annual,2012,naphtha combustion consumption by freight transport,11.5615078425,TJ,N2O,0.6,kg/TJ,6.936904705499999,kg +2f50d321-05b7-3225-ae1d-142f7cacbcbf,SESCO,II.1.1,Chaco,AR-H,annual,2012,naphtha combustion consumption by freight transport,0.0422110535,TJ,CO2,73300.0,kg/TJ,3094.07022155,kg +ab3bc099-d70b-370e-9d1c-517150bbe300,SESCO,II.1.1,Chaco,AR-H,annual,2012,naphtha combustion consumption by freight transport,0.0422110535,TJ,CH4,3.0,kg/TJ,0.1266331605,kg +318c39ab-4225-35a0-98d1-a26feb67b90b,SESCO,II.1.1,Chaco,AR-H,annual,2012,naphtha combustion consumption by freight transport,0.0422110535,TJ,N2O,0.6,kg/TJ,0.0253266321,kg +8a103f2e-af73-3319-a99a-e6ef5bd53e77,SESCO,II.1.1,Corrientes,AR-W,annual,2012,naphtha combustion consumption by freight transport,0.0023265935,TJ,CO2,73300.0,kg/TJ,170.53930354999997,kg +a2cc4d7e-3353-35d5-ab2c-a93e4ed8eae7,SESCO,II.1.1,Corrientes,AR-W,annual,2012,naphtha combustion consumption by freight transport,0.0023265935,TJ,CH4,3.0,kg/TJ,0.006979780499999999,kg +75e1999d-2875-3906-9e3a-5f78769f896d,SESCO,II.1.1,Corrientes,AR-W,annual,2012,naphtha combustion consumption by freight transport,0.0023265935,TJ,N2O,0.6,kg/TJ,0.0013959560999999999,kg +12c2abe5-c85e-3bbb-9a22-f72dd5fc7571,SESCO,II.1.1,Córdoba,AR-X,annual,2012,naphtha combustion consumption by freight transport,0.448700175,TJ,CO2,73300.0,kg/TJ,32889.7228275,kg +ba391028-b68a-3f89-a40d-ec1076306b8b,SESCO,II.1.1,Córdoba,AR-X,annual,2012,naphtha combustion consumption by freight transport,0.448700175,TJ,CH4,3.0,kg/TJ,1.346100525,kg +5e6b3e18-db16-3b80-b7f0-c0efa3b618e6,SESCO,II.1.1,Córdoba,AR-X,annual,2012,naphtha combustion consumption by freight transport,0.448700175,TJ,N2O,0.6,kg/TJ,0.269220105,kg +74266f6c-ee73-3031-b7fb-2102dcca9fa9,SESCO,II.1.1,Entre Rios,AR-E,annual,2012,naphtha combustion consumption by freight transport,0.0016618524999999999,TJ,CO2,73300.0,kg/TJ,121.81378824999999,kg +23b87143-bf0a-362a-b5c9-06da31274d6c,SESCO,II.1.1,Entre Rios,AR-E,annual,2012,naphtha combustion consumption by freight transport,0.0016618524999999999,TJ,CH4,3.0,kg/TJ,0.0049855575,kg +4a34868b-a16c-3585-880f-f591fbc8aa7c,SESCO,II.1.1,Entre Rios,AR-E,annual,2012,naphtha combustion consumption by freight transport,0.0016618524999999999,TJ,N2O,0.6,kg/TJ,0.0009971115,kg +7dddc01e-29f7-3397-b5e9-3be58416a94a,SESCO,II.1.1,Misiones,AR-N,annual,2012,naphtha combustion consumption by freight transport,0.0036560754999999997,TJ,CO2,73300.0,kg/TJ,267.99033414999997,kg +bb124d99-4c8d-3e9b-b0de-8d9a6ffd3a77,SESCO,II.1.1,Misiones,AR-N,annual,2012,naphtha combustion consumption by freight transport,0.0036560754999999997,TJ,CH4,3.0,kg/TJ,0.010968226499999999,kg +6f522d1d-77c2-34da-859d-409b03e0e4c5,SESCO,II.1.1,Misiones,AR-N,annual,2012,naphtha combustion consumption by freight transport,0.0036560754999999997,TJ,N2O,0.6,kg/TJ,0.0021936453,kg +ad7dac2a-7dcf-3ab7-adc6-e58e4594a05f,SESCO,II.1.1,San Luis,AR-D,annual,2012,naphtha combustion consumption by freight transport,0.015621413499999999,TJ,CO2,73300.0,kg/TJ,1145.04960955,kg +ecbe205c-a0c8-36db-bb47-7ef4bbf6dff1,SESCO,II.1.1,San Luis,AR-D,annual,2012,naphtha combustion consumption by freight transport,0.015621413499999999,TJ,CH4,3.0,kg/TJ,0.046864240499999994,kg +8b1216a8-95ea-3283-b8d7-decbdf6b077a,SESCO,II.1.1,San Luis,AR-D,annual,2012,naphtha combustion consumption by freight transport,0.015621413499999999,TJ,N2O,0.6,kg/TJ,0.0093728481,kg +8721ba2c-522a-37b6-9949-5138dae4d97d,SESCO,II.1.1,Santa Fe,AR-S,annual,2012,naphtha combustion consumption by freight transport,0.6673999639999999,TJ,CO2,73300.0,kg/TJ,48920.417361199994,kg +df52ed5f-4c73-3bc9-bb7e-3535cbe90051,SESCO,II.1.1,Santa Fe,AR-S,annual,2012,naphtha combustion consumption by freight transport,0.6673999639999999,TJ,CH4,3.0,kg/TJ,2.0021998919999997,kg +eb3fe103-9dfa-33d0-ad14-2f7f38c96e84,SESCO,II.1.1,Santa Fe,AR-S,annual,2012,naphtha combustion consumption by freight transport,0.6673999639999999,TJ,N2O,0.6,kg/TJ,0.40043997839999995,kg +c68500aa-6d63-3db5-b9d4-084b98a28f49,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2012,naphtha combustion consumption by freight transport,0.0069797805,TJ,CO2,73300.0,kg/TJ,511.61791065,kg +7db1d2fb-0d6d-3f8f-8acd-4030e5edec14,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2012,naphtha combustion consumption by freight transport,0.0069797805,TJ,CH4,3.0,kg/TJ,0.0209393415,kg +653c91e3-782a-3128-bb84-8d46b18938ca,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2012,naphtha combustion consumption by freight transport,0.0069797805,TJ,N2O,0.6,kg/TJ,0.0041878683,kg +5f83113b-b913-34dc-a163-ab3340cb15be,SESCO,II.1.1,Tucuman,AR-T,annual,2012,naphtha combustion consumption by freight transport,0.037890237,TJ,CO2,73300.0,kg/TJ,2777.3543721,kg +7c95620c-e1ec-3e82-ad64-9ca5455cb88e,SESCO,II.1.1,Tucuman,AR-T,annual,2012,naphtha combustion consumption by freight transport,0.037890237,TJ,CH4,3.0,kg/TJ,0.11367071100000001,kg +0895fce6-2924-31f3-b85e-ec63ed6153c6,SESCO,II.1.1,Tucuman,AR-T,annual,2012,naphtha combustion consumption by freight transport,0.037890237,TJ,N2O,0.6,kg/TJ,0.022734142199999998,kg +259dfff8-9841-30ae-837a-e7cd7ee90a10,SESCO,II.1.1,Buenos Aires,AR-B,annual,2012,naphtha combustion consumption by freight transport,2.6406836225,TJ,CO2,73300.0,kg/TJ,193562.10952925,kg +5175801a-0e80-393a-a87a-d434e602676a,SESCO,II.1.1,Buenos Aires,AR-B,annual,2012,naphtha combustion consumption by freight transport,2.6406836225,TJ,CH4,3.0,kg/TJ,7.9220508675,kg +b96780ed-7f53-3a35-ace8-f37998c3a497,SESCO,II.1.1,Buenos Aires,AR-B,annual,2012,naphtha combustion consumption by freight transport,2.6406836225,TJ,N2O,0.6,kg/TJ,1.5844101735,kg +6014e0ec-471b-39f0-a1e5-5ab72ac53991,SESCO,II.1.1,Capital Federal,AR-C,annual,2012,naphtha combustion consumption by freight transport,10.712301215,TJ,CO2,73300.0,kg/TJ,785211.6790595,kg +597b04f1-110a-3539-9cb5-bf97b00d4416,SESCO,II.1.1,Capital Federal,AR-C,annual,2012,naphtha combustion consumption by freight transport,10.712301215,TJ,CH4,3.0,kg/TJ,32.136903645000004,kg +cbfa9ac0-b2b7-37ba-ad09-6bbbf72f8a00,SESCO,II.1.1,Capital Federal,AR-C,annual,2012,naphtha combustion consumption by freight transport,10.712301215,TJ,N2O,0.6,kg/TJ,6.427380729,kg +b1aceff4-f6d8-3dd1-b905-f8c7886c08d2,SESCO,II.1.1,Chaco,AR-H,annual,2012,naphtha combustion consumption by freight transport,0.021271711999999998,TJ,CO2,73300.0,kg/TJ,1559.2164896,kg +777ebe45-ec19-38c0-be2e-fcf51fbea7e9,SESCO,II.1.1,Chaco,AR-H,annual,2012,naphtha combustion consumption by freight transport,0.021271711999999998,TJ,CH4,3.0,kg/TJ,0.063815136,kg +8eb41d30-a6e8-3a3a-a255-8b1dd5455ef5,SESCO,II.1.1,Chaco,AR-H,annual,2012,naphtha combustion consumption by freight transport,0.021271711999999998,TJ,N2O,0.6,kg/TJ,0.012763027199999999,kg +d1743418-2900-3c2b-a633-80ed09fef5a0,SESCO,II.1.1,Córdoba,AR-X,annual,2012,naphtha combustion consumption by freight transport,0.3852174095,TJ,CO2,73300.0,kg/TJ,28236.43611635,kg +55f25ea7-e236-3279-abe3-3c9650fb257e,SESCO,II.1.1,Córdoba,AR-X,annual,2012,naphtha combustion consumption by freight transport,0.3852174095,TJ,CH4,3.0,kg/TJ,1.1556522285,kg +f01aa763-cf5c-38e4-a68b-06cf22267c3d,SESCO,II.1.1,Córdoba,AR-X,annual,2012,naphtha combustion consumption by freight transport,0.3852174095,TJ,N2O,0.6,kg/TJ,0.2311304457,kg +60a305cd-4d89-3ac2-8222-2546eb9f7d2c,SESCO,II.1.1,Entre Rios,AR-E,annual,2012,naphtha combustion consumption by freight transport,0.09605507449999999,TJ,CO2,73300.0,kg/TJ,7040.836960849999,kg +4b06cfe8-bb63-3e44-a8a6-daa4166ab6bf,SESCO,II.1.1,Entre Rios,AR-E,annual,2012,naphtha combustion consumption by freight transport,0.09605507449999999,TJ,CH4,3.0,kg/TJ,0.28816522349999996,kg +0fa3d347-0a84-3691-8383-9971d5bc397a,SESCO,II.1.1,Entre Rios,AR-E,annual,2012,naphtha combustion consumption by freight transport,0.09605507449999999,TJ,N2O,0.6,kg/TJ,0.05763304469999999,kg +179591cc-5549-340b-ac07-dc461e125f34,SESCO,II.1.1,Misiones,AR-N,annual,2012,naphtha combustion consumption by freight transport,0.009971115,TJ,CO2,73300.0,kg/TJ,730.8827295,kg +9e00adda-f3a4-3151-bd58-e09610b2e551,SESCO,II.1.1,Misiones,AR-N,annual,2012,naphtha combustion consumption by freight transport,0.009971115,TJ,CH4,3.0,kg/TJ,0.029913344999999997,kg +95cf0c92-aaf1-31cb-a018-3f174d0bbdd2,SESCO,II.1.1,Misiones,AR-N,annual,2012,naphtha combustion consumption by freight transport,0.009971115,TJ,N2O,0.6,kg/TJ,0.0059826689999999995,kg +6720d67e-a20c-34f8-84df-7de79ee09d83,SESCO,II.1.1,San Luis,AR-D,annual,2012,naphtha combustion consumption by freight transport,0.0013294819999999999,TJ,CO2,73300.0,kg/TJ,97.4510306,kg +b4b25bad-1fbf-3a3c-a21d-2245a68d3e0a,SESCO,II.1.1,San Luis,AR-D,annual,2012,naphtha combustion consumption by freight transport,0.0013294819999999999,TJ,CH4,3.0,kg/TJ,0.003988446,kg +b68ba034-002e-36d2-95f4-277970379e80,SESCO,II.1.1,San Luis,AR-D,annual,2012,naphtha combustion consumption by freight transport,0.0013294819999999999,TJ,N2O,0.6,kg/TJ,0.0007976891999999999,kg +52667e87-569d-3ba6-920e-411bbba9d478,SESCO,II.1.1,Santa Fe,AR-S,annual,2012,naphtha combustion consumption by freight transport,0.4496972864999999,TJ,CO2,73300.0,kg/TJ,32962.811100449995,kg +24af8b36-ec22-3562-8d0e-8d9bcad75316,SESCO,II.1.1,Santa Fe,AR-S,annual,2012,naphtha combustion consumption by freight transport,0.4496972864999999,TJ,CH4,3.0,kg/TJ,1.3490918594999997,kg +47e9a603-ecb7-326f-9ead-7b550688b16b,SESCO,II.1.1,Santa Fe,AR-S,annual,2012,naphtha combustion consumption by freight transport,0.4496972864999999,TJ,N2O,0.6,kg/TJ,0.2698183718999999,kg +a9ffd17a-166d-348b-81cf-28c6131df4ac,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2012,naphtha combustion consumption by freight transport,0.222688235,TJ,CO2,73300.0,kg/TJ,16323.047625500001,kg +b0d1c6e5-b33d-376f-b988-7d88ddc04fbb,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2012,naphtha combustion consumption by freight transport,0.222688235,TJ,CH4,3.0,kg/TJ,0.668064705,kg +0842e5d4-8399-3cde-9acc-372ec95dab07,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2012,naphtha combustion consumption by freight transport,0.222688235,TJ,N2O,0.6,kg/TJ,0.133612941,kg +2935fcc8-d173-3d7c-a372-83356387ebf2,SESCO,II.1.1,Tucuman,AR-T,annual,2012,naphtha combustion consumption by freight transport,0.028916233499999996,TJ,CO2,73300.0,kg/TJ,2119.55991555,kg +d7e474af-7f23-3bf4-8bd6-e03384d6cc56,SESCO,II.1.1,Tucuman,AR-T,annual,2012,naphtha combustion consumption by freight transport,0.028916233499999996,TJ,CH4,3.0,kg/TJ,0.08674870049999998,kg +a8b3497a-bc22-3a3a-8e98-9eb4b5537b4b,SESCO,II.1.1,Tucuman,AR-T,annual,2012,naphtha combustion consumption by freight transport,0.028916233499999996,TJ,N2O,0.6,kg/TJ,0.017349740099999997,kg +cfee1b09-c4b8-398a-a223-457d59320bd3,SESCO,II.1.1,Capital Federal,AR-C,annual,2012,naphtha combustion consumption by public passenger transport,19.525769763499998,TJ,CO2,73300.0,kg/TJ,1431238.9236645498,kg +cf510264-fd05-3147-a0c4-7226cd133523,SESCO,II.1.1,Capital Federal,AR-C,annual,2012,naphtha combustion consumption by public passenger transport,19.525769763499998,TJ,CH4,3.0,kg/TJ,58.5773092905,kg +99f71a23-da8b-3a35-a3df-81e0fe8c7d06,SESCO,II.1.1,Capital Federal,AR-C,annual,2012,naphtha combustion consumption by public passenger transport,19.525769763499998,TJ,N2O,0.6,kg/TJ,11.715461858099998,kg +1e5c5b45-8e46-3077-bd1e-ad1301a9caa6,SESCO,II.1.1,Córdoba,AR-X,annual,2012,naphtha combustion consumption by public passenger transport,0.014956672499999997,TJ,CO2,73300.0,kg/TJ,1096.3240942499997,kg +687c8a58-05b5-3af8-b045-88c0024b082c,SESCO,II.1.1,Córdoba,AR-X,annual,2012,naphtha combustion consumption by public passenger transport,0.014956672499999997,TJ,CH4,3.0,kg/TJ,0.04487001749999999,kg +5d9f9d05-7b7d-3ae8-974a-76aa29b5257a,SESCO,II.1.1,Córdoba,AR-X,annual,2012,naphtha combustion consumption by public passenger transport,0.014956672499999997,TJ,N2O,0.6,kg/TJ,0.008974003499999997,kg +47e1f0de-d037-331f-837b-7647ff13f5b3,SESCO,II.1.1,Misiones,AR-N,annual,2012,naphtha combustion consumption by public passenger transport,19.809281799999997,TJ,CO2,73300.0,kg/TJ,1452020.3559399997,kg +863b37d9-9b48-3c9a-bbb4-322cf834d102,SESCO,II.1.1,Misiones,AR-N,annual,2012,naphtha combustion consumption by public passenger transport,19.809281799999997,TJ,CH4,3.0,kg/TJ,59.427845399999995,kg +4ab31b03-6606-3b59-a221-dab98aa591bb,SESCO,II.1.1,Misiones,AR-N,annual,2012,naphtha combustion consumption by public passenger transport,19.809281799999997,TJ,N2O,0.6,kg/TJ,11.885569079999998,kg +70651b83-46cf-3f04-b62e-371f681bcc5b,SESCO,II.1.1,Santa Fe,AR-S,annual,2012,naphtha combustion consumption by public passenger transport,0.09838166799999999,TJ,CO2,73300.0,kg/TJ,7211.376264399999,kg +3e83e6f3-ff32-3e7c-af91-29992b34eadd,SESCO,II.1.1,Santa Fe,AR-S,annual,2012,naphtha combustion consumption by public passenger transport,0.09838166799999999,TJ,CH4,3.0,kg/TJ,0.295145004,kg +c96c5552-8414-3658-b559-bead5859c786,SESCO,II.1.1,Santa Fe,AR-S,annual,2012,naphtha combustion consumption by public passenger transport,0.09838166799999999,TJ,N2O,0.6,kg/TJ,0.059029000799999995,kg +11af6126-cd64-3976-b514-56e8e18d01a7,SESCO,II.1.1,Buenos Aires,AR-B,annual,2012,naphtha combustion consumption by public passenger transport,0.003988446,TJ,CO2,73300.0,kg/TJ,292.35309179999996,kg +7e282172-f7eb-367b-9023-057786901234,SESCO,II.1.1,Buenos Aires,AR-B,annual,2012,naphtha combustion consumption by public passenger transport,0.003988446,TJ,CH4,3.0,kg/TJ,0.011965337999999999,kg +ad51a85d-7e6a-31d1-bad1-4a550fe3715a,SESCO,II.1.1,Buenos Aires,AR-B,annual,2012,naphtha combustion consumption by public passenger transport,0.003988446,TJ,N2O,0.6,kg/TJ,0.0023930676,kg +82cbccb3-da73-3610-8789-d768035a026e,SESCO,II.1.1,Capital Federal,AR-C,annual,2012,naphtha combustion consumption by public passenger transport,0.22833853349999997,TJ,CO2,73300.0,kg/TJ,16737.214505549997,kg +e5e44cc7-5605-312d-936a-24cb47e4c963,SESCO,II.1.1,Capital Federal,AR-C,annual,2012,naphtha combustion consumption by public passenger transport,0.22833853349999997,TJ,CH4,3.0,kg/TJ,0.6850156004999999,kg +e16ef1bb-c6c7-31dd-b19d-e9e4074017f3,SESCO,II.1.1,Capital Federal,AR-C,annual,2012,naphtha combustion consumption by public passenger transport,0.22833853349999997,TJ,N2O,0.6,kg/TJ,0.1370031201,kg +19146f51-bb31-3104-800e-a9bd26981b8d,SESCO,II.1.1,Córdoba,AR-X,annual,2012,naphtha combustion consumption by public passenger transport,0.0076445215,TJ,CO2,73300.0,kg/TJ,560.34342595,kg +855d18d4-7a5a-38bf-ba6b-c5cfe10c3cbf,SESCO,II.1.1,Córdoba,AR-X,annual,2012,naphtha combustion consumption by public passenger transport,0.0076445215,TJ,CH4,3.0,kg/TJ,0.0229335645,kg +0b6a5efe-1cb8-30e3-b6a2-dc1f803c2388,SESCO,II.1.1,Córdoba,AR-X,annual,2012,naphtha combustion consumption by public passenger transport,0.0076445215,TJ,N2O,0.6,kg/TJ,0.0045867129,kg +1f390067-eb42-3b82-a6e4-3c134eb868eb,SESCO,II.1.1,Santa Fe,AR-S,annual,2012,naphtha combustion consumption by public passenger transport,0.084422107,TJ,CO2,73300.0,kg/TJ,6188.1404431,kg +7cbbe32a-5768-3eb0-adaf-5072110b849d,SESCO,II.1.1,Santa Fe,AR-S,annual,2012,naphtha combustion consumption by public passenger transport,0.084422107,TJ,CH4,3.0,kg/TJ,0.253266321,kg +d3bd1883-a6de-3f96-a6f0-d3a533ef4a8a,SESCO,II.1.1,Santa Fe,AR-S,annual,2012,naphtha combustion consumption by public passenger transport,0.084422107,TJ,N2O,0.6,kg/TJ,0.0506532642,kg +ed41f753-ed82-3272-b93d-60c5dd10d10f,SESCO,II.5.1,Córdoba,AR-X,annual,2012,naphtha combustion consumption by agriculture machines,0.8533845246849999,TJ,CO2,73300.0,kg/TJ,62553.08565941049,kg +83aa38fe-3884-35a5-8ddb-6adc1ea9241c,SESCO,II.5.1,Córdoba,AR-X,annual,2012,naphtha combustion consumption by agriculture machines,0.8533845246849999,TJ,CH4,3.0,kg/TJ,2.5601535740549997,kg +36366a41-ba3a-3985-8f9f-16fde7e342fb,SESCO,II.5.1,Córdoba,AR-X,annual,2012,naphtha combustion consumption by agriculture machines,0.8533845246849999,TJ,N2O,0.6,kg/TJ,0.5120307148109999,kg +88c1732a-1ebd-3a7f-94ab-d5d34115ac79,SESCO,II.5.1,Santa Fe,AR-S,annual,2012,naphtha combustion consumption by agriculture machines,1.7757691651699998,TJ,CO2,73300.0,kg/TJ,130163.87980696099,kg +024ca34b-ac8b-37dd-9099-fbe759a6bb30,SESCO,II.5.1,Santa Fe,AR-S,annual,2012,naphtha combustion consumption by agriculture machines,1.7757691651699998,TJ,CH4,3.0,kg/TJ,5.3273074955099995,kg +c1ec918c-3eb3-3566-b896-3c5ce6aab24e,SESCO,II.5.1,Santa Fe,AR-S,annual,2012,naphtha combustion consumption by agriculture machines,1.7757691651699998,TJ,N2O,0.6,kg/TJ,1.065461499102,kg +dbe41b2c-8f66-3c30-b62f-8f41d7be4ff2,SESCO,II.1.1,Buenos Aires,AR-B,annual,2012,naphtha combustion consumption by to the public,2369.351738377855,TJ,CO2,73300.0,kg/TJ,173673482.42309678,kg +52aa7a3a-efd4-3d8f-badd-9070ac767ba6,SESCO,II.1.1,Buenos Aires,AR-B,annual,2012,naphtha combustion consumption by to the public,2369.351738377855,TJ,CH4,3.0,kg/TJ,7108.055215133565,kg +53f1cae2-8f59-315c-9415-6f05c189f21b,SESCO,II.1.1,Buenos Aires,AR-B,annual,2012,naphtha combustion consumption by to the public,2369.351738377855,TJ,N2O,0.6,kg/TJ,1421.6110430267129,kg +3d471fe4-574b-31f5-a8ce-9c44c66ca4d3,SESCO,II.1.1,Capital Federal,AR-C,annual,2012,naphtha combustion consumption by to the public,338.00086956481994,TJ,CO2,73300.0,kg/TJ,24775463.739101302,kg +34bf8a03-9e00-35e2-84af-d18d41664997,SESCO,II.1.1,Capital Federal,AR-C,annual,2012,naphtha combustion consumption by to the public,338.00086956481994,TJ,CH4,3.0,kg/TJ,1014.0026086944598,kg +5e1c7873-4b33-398e-ad7f-ed707545cd42,SESCO,II.1.1,Capital Federal,AR-C,annual,2012,naphtha combustion consumption by to the public,338.00086956481994,TJ,N2O,0.6,kg/TJ,202.80052173889194,kg +a8e2bbe3-5435-3081-a9c2-13a361248e8e,SESCO,II.1.1,Catamarca,AR-K,annual,2012,naphtha combustion consumption by to the public,193.35940340870997,TJ,CO2,73300.0,kg/TJ,14173244.26985844,kg +2c5926dd-73db-3caa-be8f-303842a50386,SESCO,II.1.1,Catamarca,AR-K,annual,2012,naphtha combustion consumption by to the public,193.35940340870997,TJ,CH4,3.0,kg/TJ,580.0782102261298,kg +accf39a6-1ebe-3db2-8d5c-54621e8ef43c,SESCO,II.1.1,Catamarca,AR-K,annual,2012,naphtha combustion consumption by to the public,193.35940340870997,TJ,N2O,0.6,kg/TJ,116.01564204522597,kg +bd5105e9-b633-30d7-8e1e-43ad2dff61ea,SESCO,II.1.1,Chaco,AR-H,annual,2012,naphtha combustion consumption by to the public,353.2198787767649,TJ,CO2,73300.0,kg/TJ,25891017.114336867,kg +25dcbc55-03b5-365d-8a58-656c2686ed80,SESCO,II.1.1,Chaco,AR-H,annual,2012,naphtha combustion consumption by to the public,353.2198787767649,TJ,CH4,3.0,kg/TJ,1059.6596363302947,kg +bea91ef6-076c-368c-8ab8-198e2f199ef0,SESCO,II.1.1,Chaco,AR-H,annual,2012,naphtha combustion consumption by to the public,353.2198787767649,TJ,N2O,0.6,kg/TJ,211.93192726605895,kg +9fcf112d-b93f-3244-99f6-032de71ca120,SESCO,II.1.1,Corrientes,AR-W,annual,2012,naphtha combustion consumption by to the public,451.16630760701497,TJ,CO2,73300.0,kg/TJ,33070490.347594198,kg +b33a284c-99c2-3b0a-8e7f-561ad77b91bf,SESCO,II.1.1,Corrientes,AR-W,annual,2012,naphtha combustion consumption by to the public,451.16630760701497,TJ,CH4,3.0,kg/TJ,1353.498922821045,kg +a188dd25-2ee1-3f92-a4a6-d003fe8441ac,SESCO,II.1.1,Corrientes,AR-W,annual,2012,naphtha combustion consumption by to the public,451.16630760701497,TJ,N2O,0.6,kg/TJ,270.699784564209,kg +b397e907-3e3a-38b7-8404-a7ae9217d658,SESCO,II.1.1,Córdoba,AR-X,annual,2012,naphtha combustion consumption by to the public,801.5635332362349,TJ,CO2,73300.0,kg/TJ,58754606.986216016,kg +d8a66369-283e-3e2c-a91b-b4a2bfc3e78b,SESCO,II.1.1,Córdoba,AR-X,annual,2012,naphtha combustion consumption by to the public,801.5635332362349,TJ,CH4,3.0,kg/TJ,2404.6905997087047,kg +fba61785-c96e-3119-9598-1771264de703,SESCO,II.1.1,Córdoba,AR-X,annual,2012,naphtha combustion consumption by to the public,801.5635332362349,TJ,N2O,0.6,kg/TJ,480.9381199417409,kg +2b15f884-7a56-3c89-b403-210a6a23d8eb,SESCO,II.1.1,Entre Rios,AR-E,annual,2012,naphtha combustion consumption by to the public,502.66735921248,TJ,CO2,73300.0,kg/TJ,36845517.430274785,kg +bc1a8d8d-2ba6-308c-baa6-85f5c46e1951,SESCO,II.1.1,Entre Rios,AR-E,annual,2012,naphtha combustion consumption by to the public,502.66735921248,TJ,CH4,3.0,kg/TJ,1508.00207763744,kg +7fdcf9d9-dd00-3154-8302-5ac60224fdd0,SESCO,II.1.1,Entre Rios,AR-E,annual,2012,naphtha combustion consumption by to the public,502.66735921248,TJ,N2O,0.6,kg/TJ,301.600415527488,kg +f4f33bdf-338a-39d4-b2df-cc87da7e1f2c,SESCO,II.1.1,Formosa,AR-P,annual,2012,naphtha combustion consumption by to the public,64.71852899011499,TJ,CO2,73300.0,kg/TJ,4743868.174975429,kg +7d3d6117-9aac-34c6-b108-8e39dcee3c76,SESCO,II.1.1,Formosa,AR-P,annual,2012,naphtha combustion consumption by to the public,64.71852899011499,TJ,CH4,3.0,kg/TJ,194.15558697034498,kg +0abb077a-d7b7-30df-9f4b-47d6d199be0e,SESCO,II.1.1,Formosa,AR-P,annual,2012,naphtha combustion consumption by to the public,64.71852899011499,TJ,N2O,0.6,kg/TJ,38.83111739406899,kg +37f63483-ca7e-312f-9746-d93acfd31d80,SESCO,II.1.1,Jujuy,AR-Y,annual,2012,naphtha combustion consumption by to the public,27.2252653442,TJ,CO2,73300.0,kg/TJ,1995611.94972986,kg +fcee3b4c-64c5-3a6c-a946-c05fdca7def4,SESCO,II.1.1,Jujuy,AR-Y,annual,2012,naphtha combustion consumption by to the public,27.2252653442,TJ,CH4,3.0,kg/TJ,81.6757960326,kg +16b0eb2d-9c6b-36e6-b8e7-50659a758211,SESCO,II.1.1,Jujuy,AR-Y,annual,2012,naphtha combustion consumption by to the public,27.2252653442,TJ,N2O,0.6,kg/TJ,16.33515920652,kg +d01671df-9ad7-3c59-abf2-28b2ab3a778c,SESCO,II.1.1,La Pampa,AR-L,annual,2012,naphtha combustion consumption by to the public,15.598812306,TJ,CO2,73300.0,kg/TJ,1143392.9420298,kg +705233e0-24e2-36fd-86c7-316efd3c2069,SESCO,II.1.1,La Pampa,AR-L,annual,2012,naphtha combustion consumption by to the public,15.598812306,TJ,CH4,3.0,kg/TJ,46.796436918,kg +6b4efce2-b81e-35bc-8852-1c2d265d6ffa,SESCO,II.1.1,La Pampa,AR-L,annual,2012,naphtha combustion consumption by to the public,15.598812306,TJ,N2O,0.6,kg/TJ,9.3592873836,kg +f4ba0c72-e084-3c9f-a283-8ca1d6e915d0,SESCO,II.1.1,La Rioja,AR-F,annual,2012,naphtha combustion consumption by to the public,102.42751770905498,TJ,CO2,73300.0,kg/TJ,7507937.04807373,kg +b8766c4e-aab4-324d-b01e-ad20db29c786,SESCO,II.1.1,La Rioja,AR-F,annual,2012,naphtha combustion consumption by to the public,102.42751770905498,TJ,CH4,3.0,kg/TJ,307.28255312716493,kg +9c3811ed-15f6-35cb-a804-0a62ecad7f4f,SESCO,II.1.1,La Rioja,AR-F,annual,2012,naphtha combustion consumption by to the public,102.42751770905498,TJ,N2O,0.6,kg/TJ,61.45651062543298,kg +00a5b4d5-8982-30ed-96a2-727175dabe60,SESCO,II.1.1,Mendoza,AR-M,annual,2012,naphtha combustion consumption by to the public,397.158361476415,TJ,CO2,73300.0,kg/TJ,29111707.89622122,kg +60f352a1-d509-3563-88d6-e0a9281f1cd2,SESCO,II.1.1,Mendoza,AR-M,annual,2012,naphtha combustion consumption by to the public,397.158361476415,TJ,CH4,3.0,kg/TJ,1191.475084429245,kg +974bad1b-5bbe-31df-a4a1-3d49587c4b2d,SESCO,II.1.1,Mendoza,AR-M,annual,2012,naphtha combustion consumption by to the public,397.158361476415,TJ,N2O,0.6,kg/TJ,238.29501688584898,kg +c5e314a9-6b3c-343e-9227-461f4996cba8,SESCO,II.1.1,Misiones,AR-N,annual,2012,naphtha combustion consumption by to the public,208.959754590125,TJ,CO2,73300.0,kg/TJ,15316750.011456162,kg +9f3a1dbf-cf96-30b4-a4fc-49e8a8dd95ee,SESCO,II.1.1,Misiones,AR-N,annual,2012,naphtha combustion consumption by to the public,208.959754590125,TJ,CH4,3.0,kg/TJ,626.879263770375,kg +c8be231f-2fc0-3f78-98da-8ddee49a5a47,SESCO,II.1.1,Misiones,AR-N,annual,2012,naphtha combustion consumption by to the public,208.959754590125,TJ,N2O,0.6,kg/TJ,125.37585275407498,kg +5162a430-cdcf-3e36-b903-5be98567af3b,SESCO,II.1.1,Rio Negro,AR-R,annual,2012,naphtha combustion consumption by to the public,20.577436557369996,TJ,CO2,73300.0,kg/TJ,1508326.0996552208,kg +095459e6-f748-3fb1-9e1d-fc57537cb449,SESCO,II.1.1,Rio Negro,AR-R,annual,2012,naphtha combustion consumption by to the public,20.577436557369996,TJ,CH4,3.0,kg/TJ,61.73230967210999,kg +c4f1949c-79de-30f2-80e7-57052f6b6c27,SESCO,II.1.1,Rio Negro,AR-R,annual,2012,naphtha combustion consumption by to the public,20.577436557369996,TJ,N2O,0.6,kg/TJ,12.346461934421997,kg +97f5a422-4432-3fa7-a218-deb1cc5df8b1,SESCO,II.1.1,San Juan,AR-J,annual,2012,naphtha combustion consumption by to the public,254.782691608445,TJ,CO2,73300.0,kg/TJ,18675571.294899017,kg +e13a23bb-5e11-3e20-816b-1a853b585b8b,SESCO,II.1.1,San Juan,AR-J,annual,2012,naphtha combustion consumption by to the public,254.782691608445,TJ,CH4,3.0,kg/TJ,764.348074825335,kg +6c9e2979-7862-3d65-90f7-c11fa9a1081e,SESCO,II.1.1,San Juan,AR-J,annual,2012,naphtha combustion consumption by to the public,254.782691608445,TJ,N2O,0.6,kg/TJ,152.869614965067,kg +953c8d88-5d85-3504-8be0-7a79ceb99740,SESCO,II.1.1,San Luis,AR-D,annual,2012,naphtha combustion consumption by to the public,153.75481931194,TJ,CO2,73300.0,kg/TJ,11270228.255565202,kg +e244bcaf-62c8-3f50-8f5e-910791828e15,SESCO,II.1.1,San Luis,AR-D,annual,2012,naphtha combustion consumption by to the public,153.75481931194,TJ,CH4,3.0,kg/TJ,461.26445793582,kg +a10a72ab-2d99-32bd-b960-863d7a60eb83,SESCO,II.1.1,San Luis,AR-D,annual,2012,naphtha combustion consumption by to the public,153.75481931194,TJ,N2O,0.6,kg/TJ,92.252891587164,kg +fef738e4-72ec-3504-bb25-8162b94c009e,SESCO,II.1.1,Santa Fe,AR-S,annual,2012,naphtha combustion consumption by to the public,1253.3871566862797,TJ,CO2,73300.0,kg/TJ,91873278.5851043,kg +73ec1079-0228-31a2-8472-f1a87d3d2ed5,SESCO,II.1.1,Santa Fe,AR-S,annual,2012,naphtha combustion consumption by to the public,1253.3871566862797,TJ,CH4,3.0,kg/TJ,3760.161470058839,kg +dc57b1c0-dcb8-347f-8e8b-14d1215165a1,SESCO,II.1.1,Santa Fe,AR-S,annual,2012,naphtha combustion consumption by to the public,1253.3871566862797,TJ,N2O,0.6,kg/TJ,752.0322940117678,kg +d1bc4ff2-452d-3cb8-b556-b8acb1bc78f0,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2012,naphtha combustion consumption by to the public,184.23969200521498,TJ,CO2,73300.0,kg/TJ,13504769.423982257,kg +08b22bd4-cfb4-310b-9cdf-537b21a1d707,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2012,naphtha combustion consumption by to the public,184.23969200521498,TJ,CH4,3.0,kg/TJ,552.719076015645,kg +a3c10d6f-29a2-3f99-ac80-816d19718239,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2012,naphtha combustion consumption by to the public,184.23969200521498,TJ,N2O,0.6,kg/TJ,110.54381520312899,kg +51a8cdba-c862-31db-bd34-926041e5adc5,SESCO,II.1.1,Tucuman,AR-T,annual,2012,naphtha combustion consumption by to the public,221.99382660916996,TJ,CO2,73300.0,kg/TJ,16272147.490452157,kg +da5ea52e-9ce9-3dcf-b190-e5337028c111,SESCO,II.1.1,Tucuman,AR-T,annual,2012,naphtha combustion consumption by to the public,221.99382660916996,TJ,CH4,3.0,kg/TJ,665.9814798275099,kg +e3d9e47d-2a64-3b2a-b395-fde0ae860cc4,SESCO,II.1.1,Tucuman,AR-T,annual,2012,naphtha combustion consumption by to the public,221.99382660916996,TJ,N2O,0.6,kg/TJ,133.19629596550197,kg +f18266f5-74c9-33c7-8f99-86f70d6ae563,SESCO,II.1.1,Buenos Aires,AR-B,annual,2012,naphtha combustion consumption by to the public,402.52108637240497,TJ,CO2,73300.0,kg/TJ,29504795.631097283,kg +657a439f-8a88-37e5-872c-d7647c431222,SESCO,II.1.1,Buenos Aires,AR-B,annual,2012,naphtha combustion consumption by to the public,402.52108637240497,TJ,CH4,3.0,kg/TJ,1207.5632591172148,kg +81ba6d76-29db-3715-aa32-bdd18b713a9d,SESCO,II.1.1,Buenos Aires,AR-B,annual,2012,naphtha combustion consumption by to the public,402.52108637240497,TJ,N2O,0.6,kg/TJ,241.51265182344298,kg +d08f1b8b-7a94-3a2d-a237-d0fce4040d01,SESCO,II.1.1,Capital Federal,AR-C,annual,2012,naphtha combustion consumption by to the public,64.89472856328,TJ,CO2,73300.0,kg/TJ,4756783.6036884235,kg +5dad00ac-2442-36a1-a3d9-9e3035ecd1a3,SESCO,II.1.1,Capital Federal,AR-C,annual,2012,naphtha combustion consumption by to the public,64.89472856328,TJ,CH4,3.0,kg/TJ,194.68418568983998,kg +680ac40c-f63a-3cb3-8f56-30edcad03bec,SESCO,II.1.1,Capital Federal,AR-C,annual,2012,naphtha combustion consumption by to the public,64.89472856328,TJ,N2O,0.6,kg/TJ,38.936837137968,kg +a7b60525-4bd9-3b5a-ba56-e94b1c591f7b,SESCO,II.1.1,Catamarca,AR-K,annual,2012,naphtha combustion consumption by to the public,18.527541498620003,TJ,CO2,73300.0,kg/TJ,1358068.7918488462,kg +29b8c44c-f43e-3931-8e03-b2eab98445f5,SESCO,II.1.1,Catamarca,AR-K,annual,2012,naphtha combustion consumption by to the public,18.527541498620003,TJ,CH4,3.0,kg/TJ,55.58262449586001,kg +ff627ff5-8ebd-3726-b41f-b569bc63ee3d,SESCO,II.1.1,Catamarca,AR-K,annual,2012,naphtha combustion consumption by to the public,18.527541498620003,TJ,N2O,0.6,kg/TJ,11.116524899172001,kg +7c185054-b2d0-3344-bfb2-52689d0ad968,SESCO,II.1.1,Chaco,AR-H,annual,2012,naphtha combustion consumption by to the public,31.79863689233,TJ,CO2,73300.0,kg/TJ,2330840.084207789,kg +ec71701f-16e4-3a3b-a55a-873f06ba2630,SESCO,II.1.1,Chaco,AR-H,annual,2012,naphtha combustion consumption by to the public,31.79863689233,TJ,CH4,3.0,kg/TJ,95.39591067699,kg +e480def2-a270-3f61-9f1c-772f07eec0fc,SESCO,II.1.1,Chaco,AR-H,annual,2012,naphtha combustion consumption by to the public,31.79863689233,TJ,N2O,0.6,kg/TJ,19.079182135398,kg +f700147e-36b5-3c0c-88ed-c5f19de2d86a,SESCO,II.1.1,Chubut,AR-U,annual,2012,naphtha combustion consumption by to the public,0.54561276539,TJ,CO2,73300.0,kg/TJ,39993.415703087005,kg +037be725-cf88-3cc9-8eb4-8ecb92de5aba,SESCO,II.1.1,Chubut,AR-U,annual,2012,naphtha combustion consumption by to the public,0.54561276539,TJ,CH4,3.0,kg/TJ,1.63683829617,kg +694645ea-c6ed-39c1-8544-52f956cb9001,SESCO,II.1.1,Chubut,AR-U,annual,2012,naphtha combustion consumption by to the public,0.54561276539,TJ,N2O,0.6,kg/TJ,0.327367659234,kg +e82566ec-e264-3241-ae00-4ef74572d1a0,SESCO,II.1.1,Corrientes,AR-W,annual,2012,naphtha combustion consumption by to the public,61.49962705617499,TJ,CO2,73300.0,kg/TJ,4507922.6632176265,kg +2d1dda74-e9a5-3171-b870-741b7118a2b6,SESCO,II.1.1,Corrientes,AR-W,annual,2012,naphtha combustion consumption by to the public,61.49962705617499,TJ,CH4,3.0,kg/TJ,184.49888116852497,kg +daa36112-b469-3b8d-89c0-e3a637020f9f,SESCO,II.1.1,Corrientes,AR-W,annual,2012,naphtha combustion consumption by to the public,61.49962705617499,TJ,N2O,0.6,kg/TJ,36.89977623370499,kg +e2890355-d6b6-339e-ba24-5abc9f1a7605,SESCO,II.1.1,Córdoba,AR-X,annual,2012,naphtha combustion consumption by to the public,148.86920229758496,TJ,CO2,73300.0,kg/TJ,10912112.528412977,kg +4cd666ce-e452-32d5-bd6d-e5754fdc20db,SESCO,II.1.1,Córdoba,AR-X,annual,2012,naphtha combustion consumption by to the public,148.86920229758496,TJ,CH4,3.0,kg/TJ,446.6076068927549,kg +f0748d3e-1d27-325a-9fc4-536d900fa072,SESCO,II.1.1,Córdoba,AR-X,annual,2012,naphtha combustion consumption by to the public,148.86920229758496,TJ,N2O,0.6,kg/TJ,89.32152137855097,kg +9d019e4d-fc3f-3d39-99cd-e9d971bdb993,SESCO,II.1.1,Entre Rios,AR-E,annual,2012,naphtha combustion consumption by to the public,89.60715327409999,TJ,CO2,73300.0,kg/TJ,6568204.334991529,kg +025d59f7-81dc-33cb-85fc-11f198fe7a89,SESCO,II.1.1,Entre Rios,AR-E,annual,2012,naphtha combustion consumption by to the public,89.60715327409999,TJ,CH4,3.0,kg/TJ,268.82145982229997,kg +539922ab-7bad-32bd-8892-bdcd4fba5ee1,SESCO,II.1.1,Entre Rios,AR-E,annual,2012,naphtha combustion consumption by to the public,89.60715327409999,TJ,N2O,0.6,kg/TJ,53.76429196445999,kg +561b0633-a7be-356d-ba0e-f6fd00f3d5dd,SESCO,II.1.1,Jujuy,AR-Y,annual,2012,naphtha combustion consumption by to the public,4.51987319245,TJ,CO2,73300.0,kg/TJ,331306.70500658505,kg +b3f6b83f-a343-361d-9a8e-3df5beab486a,SESCO,II.1.1,Jujuy,AR-Y,annual,2012,naphtha combustion consumption by to the public,4.51987319245,TJ,CH4,3.0,kg/TJ,13.559619577350002,kg +87a6049b-e7cf-38a3-8cef-fc9caf8d2f63,SESCO,II.1.1,Jujuy,AR-Y,annual,2012,naphtha combustion consumption by to the public,4.51987319245,TJ,N2O,0.6,kg/TJ,2.7119239154700003,kg +0efafa1d-f3c2-3505-b4ec-bb083e3cfbcd,SESCO,II.1.1,La Pampa,AR-L,annual,2012,naphtha combustion consumption by to the public,5.314966578845,TJ,CO2,73300.0,kg/TJ,389587.05022933846,kg +35f278c7-67f2-3dfe-b3ed-1149396f7e61,SESCO,II.1.1,La Pampa,AR-L,annual,2012,naphtha combustion consumption by to the public,5.314966578845,TJ,CH4,3.0,kg/TJ,15.944899736535,kg +62259b09-2623-3d93-bca6-810b82245c62,SESCO,II.1.1,La Pampa,AR-L,annual,2012,naphtha combustion consumption by to the public,5.314966578845,TJ,N2O,0.6,kg/TJ,3.1889799473069997,kg +8e9cab68-aa29-387f-97f2-633c894bbd2b,SESCO,II.1.1,La Rioja,AR-F,annual,2012,naphtha combustion consumption by to the public,6.513185497279999,TJ,CO2,73300.0,kg/TJ,477416.4969506239,kg +9363e5cd-7615-3730-9b97-3c2c570cbe8e,SESCO,II.1.1,La Rioja,AR-F,annual,2012,naphtha combustion consumption by to the public,6.513185497279999,TJ,CH4,3.0,kg/TJ,19.53955649184,kg +9a52146c-8a4f-378c-a75c-85347a5a34d2,SESCO,II.1.1,La Rioja,AR-F,annual,2012,naphtha combustion consumption by to the public,6.513185497279999,TJ,N2O,0.6,kg/TJ,3.9079112983679996,kg +fc33fbb6-eb72-37bb-9795-9999162ddb23,SESCO,II.1.1,Mendoza,AR-M,annual,2012,naphtha combustion consumption by to the public,57.336693191085,TJ,CO2,73300.0,kg/TJ,4202779.61090653,kg +951d3e10-8ae3-3f2e-9538-ef17fa5ca01e,SESCO,II.1.1,Mendoza,AR-M,annual,2012,naphtha combustion consumption by to the public,57.336693191085,TJ,CH4,3.0,kg/TJ,172.01007957325498,kg +5cc65b3e-a62b-3416-b438-beb05d9e75f5,SESCO,II.1.1,Mendoza,AR-M,annual,2012,naphtha combustion consumption by to the public,57.336693191085,TJ,N2O,0.6,kg/TJ,34.402015914650995,kg +bce7eacd-bd5e-3fa7-91ab-396238373087,SESCO,II.1.1,Misiones,AR-N,annual,2012,naphtha combustion consumption by to the public,22.561060262124997,TJ,CO2,73300.0,kg/TJ,1653725.7172137622,kg +be065172-f701-38f4-8464-02c4059a8526,SESCO,II.1.1,Misiones,AR-N,annual,2012,naphtha combustion consumption by to the public,22.561060262124997,TJ,CH4,3.0,kg/TJ,67.68318078637499,kg +8954e975-04db-3885-8214-3e7b642f8275,SESCO,II.1.1,Misiones,AR-N,annual,2012,naphtha combustion consumption by to the public,22.561060262124997,TJ,N2O,0.6,kg/TJ,13.536636157274998,kg +d0920296-912b-3931-b059-b4677d0fb6b0,SESCO,II.1.1,San Juan,AR-J,annual,2012,naphtha combustion consumption by to the public,52.40779821392499,TJ,CO2,73300.0,kg/TJ,3841491.609080702,kg +4b8ac9d1-f752-3b7c-9f77-dae01b2f0df6,SESCO,II.1.1,San Juan,AR-J,annual,2012,naphtha combustion consumption by to the public,52.40779821392499,TJ,CH4,3.0,kg/TJ,157.22339464177497,kg +87a32fa0-0c3a-32f4-afc9-6a8ed780daa0,SESCO,II.1.1,San Juan,AR-J,annual,2012,naphtha combustion consumption by to the public,52.40779821392499,TJ,N2O,0.6,kg/TJ,31.444678928354993,kg +d2842e65-4757-3730-bc63-9386cabad039,SESCO,II.1.1,San Luis,AR-D,annual,2012,naphtha combustion consumption by to the public,27.571083554629997,TJ,CO2,73300.0,kg/TJ,2020960.4245543787,kg +c27be797-e1d4-3849-ac35-83f1ea619bea,SESCO,II.1.1,San Luis,AR-D,annual,2012,naphtha combustion consumption by to the public,27.571083554629997,TJ,CH4,3.0,kg/TJ,82.71325066389,kg +9db0610b-d8e6-3b45-be9b-b12e5b3c6f57,SESCO,II.1.1,San Luis,AR-D,annual,2012,naphtha combustion consumption by to the public,27.571083554629997,TJ,N2O,0.6,kg/TJ,16.542650132777997,kg +0e159bb0-9a7b-390a-afa0-acb1aa94d4f2,SESCO,II.1.1,Santa Fe,AR-S,annual,2012,naphtha combustion consumption by to the public,217.11786163413498,TJ,CO2,73300.0,kg/TJ,15914739.257782094,kg +edf3305a-30da-3e0f-9934-8bf2177a0695,SESCO,II.1.1,Santa Fe,AR-S,annual,2012,naphtha combustion consumption by to the public,217.11786163413498,TJ,CH4,3.0,kg/TJ,651.3535849024049,kg +1326743d-7e66-3454-a909-926e7af22202,SESCO,II.1.1,Santa Fe,AR-S,annual,2012,naphtha combustion consumption by to the public,217.11786163413498,TJ,N2O,0.6,kg/TJ,130.27071698048098,kg +3a2fcafb-4efc-3974-8a32-b053ac9162ce,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2012,naphtha combustion consumption by to the public,24.764753122339997,TJ,CO2,73300.0,kg/TJ,1815256.4038675218,kg +d33ba7fc-4879-39a0-88bc-432053470a14,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2012,naphtha combustion consumption by to the public,24.764753122339997,TJ,CH4,3.0,kg/TJ,74.29425936701999,kg +9dfd1a52-0919-340b-a45c-a044ebe050f7,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2012,naphtha combustion consumption by to the public,24.764753122339997,TJ,N2O,0.6,kg/TJ,14.858851873403998,kg +541c84eb-22b3-3a75-af6e-0abbced1f588,SESCO,II.1.1,Tucuman,AR-T,annual,2012,naphtha combustion consumption by to the public,27.742629940794995,TJ,CO2,73300.0,kg/TJ,2033534.7746602732,kg +18511148-136a-3f26-9465-cfd08d526c8d,SESCO,II.1.1,Tucuman,AR-T,annual,2012,naphtha combustion consumption by to the public,27.742629940794995,TJ,CH4,3.0,kg/TJ,83.22788982238498,kg +cd5544ce-b92d-3ce2-8823-58a579a2e68e,SESCO,II.1.1,Tucuman,AR-T,annual,2012,naphtha combustion consumption by to the public,27.742629940794995,TJ,N2O,0.6,kg/TJ,16.645577964476995,kg +ae5ad634-1142-35b6-bf00-3bb3704d75f5,SESCO,II.5.1,Buenos Aires,AR-B,annual,2012,naphtha combustion consumption by agriculture machines,2.0490641325,TJ,CO2,73300.0,kg/TJ,150196.40091224998,kg +46b01474-9c82-3830-972b-5dea678b3451,SESCO,II.5.1,Buenos Aires,AR-B,annual,2012,naphtha combustion consumption by agriculture machines,2.0490641325,TJ,CH4,3.0,kg/TJ,6.1471923975,kg +a82576f4-b580-33ed-ad04-5fc70925e2c4,SESCO,II.5.1,Buenos Aires,AR-B,annual,2012,naphtha combustion consumption by agriculture machines,2.0490641325,TJ,N2O,0.6,kg/TJ,1.2294384795,kg +a791136f-a043-36a9-86be-703d5e2cdee7,SESCO,II.5.1,Santa Cruz,AR-Z,annual,2012,naphtha combustion consumption by agriculture machines,2.2561974280999997,TJ,CO2,73300.0,kg/TJ,165379.27147972997,kg +6124c6b5-b13b-3cba-a176-1fe4a451f6b7,SESCO,II.5.1,Santa Cruz,AR-Z,annual,2012,naphtha combustion consumption by agriculture machines,2.2561974280999997,TJ,CH4,3.0,kg/TJ,6.768592284299999,kg +98c76bd7-3efe-3f72-a7bd-0341791a6d44,SESCO,II.5.1,Santa Cruz,AR-Z,annual,2012,naphtha combustion consumption by agriculture machines,2.2561974280999997,TJ,N2O,0.6,kg/TJ,1.3537184568599998,kg +9c8d89f4-fbbd-3b17-a0d3-9ca368aa77e2,SESCO,II.1.1,Buenos Aires,AR-B,annual,2012,naphtha combustion consumption by to the public,5325.761673551549,TJ,CO2,73300.0,kg/TJ,390378330.67132854,kg +b1e810f2-8742-3c24-810b-d3edfe486fd3,SESCO,II.1.1,Buenos Aires,AR-B,annual,2012,naphtha combustion consumption by to the public,5325.761673551549,TJ,CH4,3.0,kg/TJ,15977.285020654648,kg +1fb5d353-52b2-3fea-b4c6-7476ad89ea67,SESCO,II.1.1,Buenos Aires,AR-B,annual,2012,naphtha combustion consumption by to the public,5325.761673551549,TJ,N2O,0.6,kg/TJ,3195.4570041309294,kg +81070735-9026-392c-9120-f5e191ed011c,SESCO,II.1.1,Capital Federal,AR-C,annual,2012,naphtha combustion consumption by to the public,763.1275538463499,TJ,CO2,73300.0,kg/TJ,55937249.69693745,kg +b3b230aa-1b20-389b-bb3b-3050d487a2b7,SESCO,II.1.1,Capital Federal,AR-C,annual,2012,naphtha combustion consumption by to the public,763.1275538463499,TJ,CH4,3.0,kg/TJ,2289.38266153905,kg +86ca1a8a-cf31-3614-a3aa-b80e3ba826c9,SESCO,II.1.1,Capital Federal,AR-C,annual,2012,naphtha combustion consumption by to the public,763.1275538463499,TJ,N2O,0.6,kg/TJ,457.8765323078099,kg +a7770079-73b1-3706-b75d-e87c77745055,SESCO,II.1.1,Chaco,AR-H,annual,2012,naphtha combustion consumption by to the public,6.17102336235,TJ,CO2,73300.0,kg/TJ,452336.012460255,kg +b0377adb-7ce3-3afe-b3ec-8714d6619d94,SESCO,II.1.1,Chaco,AR-H,annual,2012,naphtha combustion consumption by to the public,6.17102336235,TJ,CH4,3.0,kg/TJ,18.51307008705,kg +c444a024-1c95-3db5-bc71-4d163ceaa3b9,SESCO,II.1.1,Chaco,AR-H,annual,2012,naphtha combustion consumption by to the public,6.17102336235,TJ,N2O,0.6,kg/TJ,3.7026140174099997,kg +65730eb1-6894-3bcc-94a3-c79d68a22d03,SESCO,II.1.1,Chubut,AR-U,annual,2012,naphtha combustion consumption by to the public,1586.1142038164498,TJ,CO2,73300.0,kg/TJ,116262171.13974577,kg +4074bac7-89fc-3e73-a0d6-8f553c7489c9,SESCO,II.1.1,Chubut,AR-U,annual,2012,naphtha combustion consumption by to the public,1586.1142038164498,TJ,CH4,3.0,kg/TJ,4758.3426114493495,kg +f5ebfb1f-6ca3-31fe-a6df-a1798eaa5af8,SESCO,II.1.1,Chubut,AR-U,annual,2012,naphtha combustion consumption by to the public,1586.1142038164498,TJ,N2O,0.6,kg/TJ,951.6685222898699,kg +249a9c6a-6edf-34dd-8da9-f0997c37801c,SESCO,II.1.1,Córdoba,AR-X,annual,2012,naphtha combustion consumption by to the public,674.4211911013499,TJ,CO2,73300.0,kg/TJ,49435073.307728946,kg +c4257378-de8e-31f2-bb92-ddde023022c3,SESCO,II.1.1,Córdoba,AR-X,annual,2012,naphtha combustion consumption by to the public,674.4211911013499,TJ,CH4,3.0,kg/TJ,2023.2635733040497,kg +339da3f0-9577-3bbe-abc8-fb07edee7571,SESCO,II.1.1,Córdoba,AR-X,annual,2012,naphtha combustion consumption by to the public,674.4211911013499,TJ,N2O,0.6,kg/TJ,404.6527146608099,kg +055c1a25-521b-374b-bc90-84210a8ee03a,SESCO,II.1.1,Entre Rios,AR-E,annual,2012,naphtha combustion consumption by to the public,107.79882108765,TJ,CO2,73300.0,kg/TJ,7901653.585724745,kg +144d24ad-dd69-3a04-a14a-e41ee577fd9b,SESCO,II.1.1,Entre Rios,AR-E,annual,2012,naphtha combustion consumption by to the public,107.79882108765,TJ,CH4,3.0,kg/TJ,323.39646326294996,kg +19830139-67cf-3bf9-9750-08dffab50b5e,SESCO,II.1.1,Entre Rios,AR-E,annual,2012,naphtha combustion consumption by to the public,107.79882108765,TJ,N2O,0.6,kg/TJ,64.67929265259,kg +c6318395-2754-3642-ac91-0576810e8ae2,SESCO,II.1.1,La Pampa,AR-L,annual,2012,naphtha combustion consumption by to the public,234.69827683224997,TJ,CO2,73300.0,kg/TJ,17203383.691803925,kg +90f65e75-e1a7-3d26-8f26-5c0683c0c0fe,SESCO,II.1.1,La Pampa,AR-L,annual,2012,naphtha combustion consumption by to the public,234.69827683224997,TJ,CH4,3.0,kg/TJ,704.0948304967499,kg +4e51c6b9-83cb-3164-8e04-7b75aed5d9c1,SESCO,II.1.1,La Pampa,AR-L,annual,2012,naphtha combustion consumption by to the public,234.69827683224997,TJ,N2O,0.6,kg/TJ,140.81896609934998,kg +ad9e191f-706e-3cd7-b645-26ae905f108a,SESCO,II.1.1,La Rioja,AR-F,annual,2012,naphtha combustion consumption by to the public,0.7532512641499999,TJ,CO2,73300.0,kg/TJ,55213.31766219499,kg +62becd94-d568-3179-b9d1-9889fe47d3ef,SESCO,II.1.1,La Rioja,AR-F,annual,2012,naphtha combustion consumption by to the public,0.7532512641499999,TJ,CH4,3.0,kg/TJ,2.2597537924499997,kg +38b8f876-0e0c-3462-b809-fe5b17f5bfed,SESCO,II.1.1,La Rioja,AR-F,annual,2012,naphtha combustion consumption by to the public,0.7532512641499999,TJ,N2O,0.6,kg/TJ,0.4519507584899999,kg +925b426a-ed23-38b4-8041-2773d6019549,SESCO,II.1.1,Mendoza,AR-M,annual,2012,naphtha combustion consumption by to the public,27.34495196125,TJ,CO2,73300.0,kg/TJ,2004384.978759625,kg +87352906-354f-3875-80e5-4b1ac28d09f2,SESCO,II.1.1,Mendoza,AR-M,annual,2012,naphtha combustion consumption by to the public,27.34495196125,TJ,CH4,3.0,kg/TJ,82.03485588375,kg +ac62ff8b-6b6a-3160-9269-0dd859feafb2,SESCO,II.1.1,Mendoza,AR-M,annual,2012,naphtha combustion consumption by to the public,27.34495196125,TJ,N2O,0.6,kg/TJ,16.406971176749998,kg +113be437-3ec5-33e5-934b-8c9e07b66d04,SESCO,II.1.1,Neuquén,AR-Q,annual,2012,naphtha combustion consumption by to the public,582.1497226621999,TJ,CO2,73300.0,kg/TJ,42671574.671139255,kg +c0adb543-98d3-34e9-9720-0b4214c181c9,SESCO,II.1.1,Neuquén,AR-Q,annual,2012,naphtha combustion consumption by to the public,582.1497226621999,TJ,CH4,3.0,kg/TJ,1746.4491679865996,kg +ce02782a-6840-344e-9430-336eb78523ef,SESCO,II.1.1,Neuquén,AR-Q,annual,2012,naphtha combustion consumption by to the public,582.1497226621999,TJ,N2O,0.6,kg/TJ,349.28983359731996,kg +012d4249-bdf6-393a-8feb-503beac071ce,SESCO,II.1.1,Rio Negro,AR-R,annual,2012,naphtha combustion consumption by to the public,1145.1281819362,TJ,CO2,73300.0,kg/TJ,83937895.73592345,kg +0fbf9426-4c92-34d4-ae60-0d5fc69b0b02,SESCO,II.1.1,Rio Negro,AR-R,annual,2012,naphtha combustion consumption by to the public,1145.1281819362,TJ,CH4,3.0,kg/TJ,3435.3845458086,kg +3778636d-a317-3a67-84f8-5ff3690242eb,SESCO,II.1.1,Rio Negro,AR-R,annual,2012,naphtha combustion consumption by to the public,1145.1281819362,TJ,N2O,0.6,kg/TJ,687.07690916172,kg +c8622831-df33-3a87-a369-7bc56043f081,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2012,naphtha combustion consumption by to the public,996.2568424962999,TJ,CO2,73300.0,kg/TJ,73025626.55497879,kg +8104b5cb-4ae7-3b3b-aa66-5d80332f99a4,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2012,naphtha combustion consumption by to the public,996.2568424962999,TJ,CH4,3.0,kg/TJ,2988.7705274888995,kg +3f9e6170-4789-39a4-bc3c-b7e428b51986,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2012,naphtha combustion consumption by to the public,996.2568424962999,TJ,N2O,0.6,kg/TJ,597.75410549778,kg +348a00f2-c88d-318d-832a-f4f37df28ea8,SESCO,II.1.1,Santa Fe,AR-S,annual,2012,naphtha combustion consumption by to the public,675.49155705955,TJ,CO2,73300.0,kg/TJ,49513531.13246502,kg +31dd9bab-0fc3-306e-8786-d271ebc5f588,SESCO,II.1.1,Santa Fe,AR-S,annual,2012,naphtha combustion consumption by to the public,675.49155705955,TJ,CH4,3.0,kg/TJ,2026.4746711786502,kg +dd44187a-e9e6-3f78-8f65-a5fdf9f15f65,SESCO,II.1.1,Santa Fe,AR-S,annual,2012,naphtha combustion consumption by to the public,675.49155705955,TJ,N2O,0.6,kg/TJ,405.29493423573,kg +3d98827d-d205-3ec2-9bff-342297e70e95,SESCO,II.1.1,Buenos Aires,AR-B,annual,2012,naphtha combustion consumption by to the public,1349.3830160579998,TJ,CO2,73300.0,kg/TJ,98909775.07705139,kg +f4a288dd-d96d-3c83-8933-9d8e9d82c40d,SESCO,II.1.1,Buenos Aires,AR-B,annual,2012,naphtha combustion consumption by to the public,1349.3830160579998,TJ,CH4,3.0,kg/TJ,4048.1490481739993,kg +cee3a169-1616-3410-9d81-be734c51851b,SESCO,II.1.1,Buenos Aires,AR-B,annual,2012,naphtha combustion consumption by to the public,1349.3830160579998,TJ,N2O,0.6,kg/TJ,809.6298096347999,kg +bb53ec90-f969-3c4b-b7f9-a05fe9f20e8d,SESCO,II.1.1,Capital Federal,AR-C,annual,2012,naphtha combustion consumption by to the public,251.06792280185,TJ,CO2,73300.0,kg/TJ,18403278.741375603,kg +1e84b196-3db0-3939-9a67-a16c9f1d81a2,SESCO,II.1.1,Capital Federal,AR-C,annual,2012,naphtha combustion consumption by to the public,251.06792280185,TJ,CH4,3.0,kg/TJ,753.2037684055499,kg +faad82cf-d26b-355b-a26d-d9d92a5f32f9,SESCO,II.1.1,Capital Federal,AR-C,annual,2012,naphtha combustion consumption by to the public,251.06792280185,TJ,N2O,0.6,kg/TJ,150.64075368111,kg +ecbc567d-a126-3ab4-a937-6697cbbb42d0,SESCO,II.1.1,Chubut,AR-U,annual,2012,naphtha combustion consumption by to the public,244.00162626069996,TJ,CO2,73300.0,kg/TJ,17885319.204909306,kg +c6da2df3-f413-3665-a2a8-fed48bcd736c,SESCO,II.1.1,Chubut,AR-U,annual,2012,naphtha combustion consumption by to the public,244.00162626069996,TJ,CH4,3.0,kg/TJ,732.0048787820999,kg +ff300673-525b-3a1c-a354-52b34b362a94,SESCO,II.1.1,Chubut,AR-U,annual,2012,naphtha combustion consumption by to the public,244.00162626069996,TJ,N2O,0.6,kg/TJ,146.40097575641997,kg +975baf7a-f2e3-3474-8973-a61c44e15971,SESCO,II.1.1,Córdoba,AR-X,annual,2012,naphtha combustion consumption by to the public,146.10531890184998,TJ,CO2,73300.0,kg/TJ,10709519.875505604,kg +0d2d1b1a-3e17-3d4b-a273-81a03c4abe39,SESCO,II.1.1,Córdoba,AR-X,annual,2012,naphtha combustion consumption by to the public,146.10531890184998,TJ,CH4,3.0,kg/TJ,438.31595670555,kg +de6b5720-01f8-349b-8ff1-1b27133a7caf,SESCO,II.1.1,Córdoba,AR-X,annual,2012,naphtha combustion consumption by to the public,146.10531890184998,TJ,N2O,0.6,kg/TJ,87.66319134111,kg +fa93cd15-d0ec-3501-a77d-69041cbe9d4f,SESCO,II.1.1,Entre Rios,AR-E,annual,2012,naphtha combustion consumption by to the public,22.87702827795,TJ,CO2,73300.0,kg/TJ,1676886.172773735,kg +d3c1eb33-c818-3980-9ad8-ef8fabc71a5c,SESCO,II.1.1,Entre Rios,AR-E,annual,2012,naphtha combustion consumption by to the public,22.87702827795,TJ,CH4,3.0,kg/TJ,68.63108483385,kg +eabf7d4d-70bf-393f-8658-7bc83c9d7031,SESCO,II.1.1,Entre Rios,AR-E,annual,2012,naphtha combustion consumption by to the public,22.87702827795,TJ,N2O,0.6,kg/TJ,13.72621696677,kg +9e2c7c34-771f-3087-b63e-d94940420269,SESCO,II.1.1,La Pampa,AR-L,annual,2012,naphtha combustion consumption by to the public,51.53444486959999,TJ,CO2,73300.0,kg/TJ,3777474.808941679,kg +c2475d51-3558-3414-9232-f4b8dfed97be,SESCO,II.1.1,La Pampa,AR-L,annual,2012,naphtha combustion consumption by to the public,51.53444486959999,TJ,CH4,3.0,kg/TJ,154.60333460879997,kg +dda84cda-7692-3eba-931e-88e27abeb264,SESCO,II.1.1,La Pampa,AR-L,annual,2012,naphtha combustion consumption by to the public,51.53444486959999,TJ,N2O,0.6,kg/TJ,30.92066692175999,kg +7bd8253d-fd60-32de-b267-ded74a116534,SESCO,II.1.1,Mendoza,AR-M,annual,2012,naphtha combustion consumption by to the public,2.5459580299999995,TJ,CO2,73300.0,kg/TJ,186618.72359899996,kg +338c9c50-964f-367f-8f29-a7d1517e0033,SESCO,II.1.1,Mendoza,AR-M,annual,2012,naphtha combustion consumption by to the public,2.5459580299999995,TJ,CH4,3.0,kg/TJ,7.637874089999999,kg +91fb8e13-6eb5-35fe-ba2e-6fa722125d0a,SESCO,II.1.1,Mendoza,AR-M,annual,2012,naphtha combustion consumption by to the public,2.5459580299999995,TJ,N2O,0.6,kg/TJ,1.5275748179999997,kg +73c27fca-91b6-394f-aaf6-60dd735b91ff,SESCO,II.1.1,Neuquén,AR-Q,annual,2012,naphtha combustion consumption by to the public,144.17092259184997,TJ,CO2,73300.0,kg/TJ,10567728.625982603,kg +af16e535-eb15-37d3-9c8e-70c77a0e8f2d,SESCO,II.1.1,Neuquén,AR-Q,annual,2012,naphtha combustion consumption by to the public,144.17092259184997,TJ,CH4,3.0,kg/TJ,432.51276777554995,kg +8a5e2e13-d7c1-34f2-91d0-b738bfb1412d,SESCO,II.1.1,Neuquén,AR-Q,annual,2012,naphtha combustion consumption by to the public,144.17092259184997,TJ,N2O,0.6,kg/TJ,86.50255355510998,kg +29a87f09-b5eb-3a36-a432-f2dc02f47735,SESCO,II.1.1,Rio Negro,AR-R,annual,2012,naphtha combustion consumption by to the public,181.77485564314998,TJ,CO2,73300.0,kg/TJ,13324096.918642893,kg +2ab58355-9c37-3634-80fd-717dd592e05e,SESCO,II.1.1,Rio Negro,AR-R,annual,2012,naphtha combustion consumption by to the public,181.77485564314998,TJ,CH4,3.0,kg/TJ,545.3245669294499,kg +e3ab02d6-e81d-3789-8bfe-a1a3cad59dc2,SESCO,II.1.1,Rio Negro,AR-R,annual,2012,naphtha combustion consumption by to the public,181.77485564314998,TJ,N2O,0.6,kg/TJ,109.06491338588998,kg +cc86434c-1b5b-36f3-83bb-2c78a7fd3e1a,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2012,naphtha combustion consumption by to the public,171.3276199019,TJ,CO2,73300.0,kg/TJ,12558314.53880927,kg +67ebb6f0-fc8b-3287-96af-364e915a2220,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2012,naphtha combustion consumption by to the public,171.3276199019,TJ,CH4,3.0,kg/TJ,513.9828597057,kg +8bd2ce43-72cb-3dd6-9c9b-38cbfa7ec3d9,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2012,naphtha combustion consumption by to the public,171.3276199019,TJ,N2O,0.6,kg/TJ,102.79657194113999,kg +83cd292b-4250-39ed-9e83-0f75ff694622,SESCO,II.1.1,Santa Fe,AR-S,annual,2012,naphtha combustion consumption by to the public,201.24920769029998,TJ,CO2,73300.0,kg/TJ,14751566.923698988,kg +05af7bb4-6039-3d80-8eb2-c988cc58bf4f,SESCO,II.1.1,Santa Fe,AR-S,annual,2012,naphtha combustion consumption by to the public,201.24920769029998,TJ,CH4,3.0,kg/TJ,603.7476230709,kg +4070be1a-2b18-3a0a-9c73-cd96c2f96f40,SESCO,II.1.1,Santa Fe,AR-S,annual,2012,naphtha combustion consumption by to the public,201.24920769029998,TJ,N2O,0.6,kg/TJ,120.74952461417999,kg +051527e7-c6f5-3403-a517-6f6634fb5cb2,SESCO,II.1.1,Buenos Aires,AR-B,annual,2012,naphtha combustion consumption by to the public,87.58959786499999,TJ,CO2,73300.0,kg/TJ,6420317.523504499,kg +190043dc-f941-3ea8-bb52-ccb5ec870bd6,SESCO,II.1.1,Buenos Aires,AR-B,annual,2012,naphtha combustion consumption by to the public,87.58959786499999,TJ,CH4,3.0,kg/TJ,262.768793595,kg +b8055f71-7ac2-3cb3-b442-16360f523c6f,SESCO,II.1.1,Buenos Aires,AR-B,annual,2012,naphtha combustion consumption by to the public,87.58959786499999,TJ,N2O,0.6,kg/TJ,52.553758718999994,kg +2a064c63-b38c-3392-9782-2e1d5c421599,SESCO,II.1.1,Capital Federal,AR-C,annual,2012,naphtha combustion consumption by to the public,52.01598324999999,TJ,CO2,73300.0,kg/TJ,3812771.5722249993,kg +1d36a0fa-e335-3a58-a65f-a56c007a5bae,SESCO,II.1.1,Capital Federal,AR-C,annual,2012,naphtha combustion consumption by to the public,52.01598324999999,TJ,CH4,3.0,kg/TJ,156.04794975,kg +46d0e753-b1e9-3e5e-a357-dd8faa159072,SESCO,II.1.1,Capital Federal,AR-C,annual,2012,naphtha combustion consumption by to the public,52.01598324999999,TJ,N2O,0.6,kg/TJ,31.209589949999994,kg +58ec1269-39bd-34de-a980-65b27e59f37b,SESCO,II.1.1,Chaco,AR-H,annual,2012,naphtha combustion consumption by to the public,10.469670749999999,TJ,CO2,73300.0,kg/TJ,767426.865975,kg +c0ead2f2-962d-3a74-ab83-008589a5e94f,SESCO,II.1.1,Chaco,AR-H,annual,2012,naphtha combustion consumption by to the public,10.469670749999999,TJ,CH4,3.0,kg/TJ,31.409012249999996,kg +cb822c21-3fc5-3e07-85d9-5ecdfc666714,SESCO,II.1.1,Chaco,AR-H,annual,2012,naphtha combustion consumption by to the public,10.469670749999999,TJ,N2O,0.6,kg/TJ,6.281802449999999,kg +8951dfc7-6fcf-3a61-9b4c-86caaf4bf2f6,SESCO,II.1.1,Córdoba,AR-X,annual,2012,naphtha combustion consumption by to the public,31.9740421,TJ,CO2,73300.0,kg/TJ,2343697.28593,kg +422d7b46-d6bc-314a-a09a-df3bc7f6f54b,SESCO,II.1.1,Córdoba,AR-X,annual,2012,naphtha combustion consumption by to the public,31.9740421,TJ,CH4,3.0,kg/TJ,95.9221263,kg +a3729fc3-691a-3420-8e5b-a5c3a09afb70,SESCO,II.1.1,Córdoba,AR-X,annual,2012,naphtha combustion consumption by to the public,31.9740421,TJ,N2O,0.6,kg/TJ,19.184425259999998,kg +03dc9b6f-8f30-318f-8e6c-44b102879e78,SESCO,II.1.1,Entre Rios,AR-E,annual,2012,naphtha combustion consumption by to the public,8.974003499999998,TJ,CO2,73300.0,kg/TJ,657794.4565499999,kg +08fb5c70-0acd-3396-abb9-6079e1c55550,SESCO,II.1.1,Entre Rios,AR-E,annual,2012,naphtha combustion consumption by to the public,8.974003499999998,TJ,CH4,3.0,kg/TJ,26.922010499999995,kg +49802460-2710-323e-b0df-6e62a13dda40,SESCO,II.1.1,Entre Rios,AR-E,annual,2012,naphtha combustion consumption by to the public,8.974003499999998,TJ,N2O,0.6,kg/TJ,5.384402099999999,kg +db21b1ec-f7a6-31ce-b197-8b82d4fea180,SESCO,II.1.1,Santa Fe,AR-S,annual,2012,naphtha combustion consumption by to the public,42.842557449999994,TJ,CO2,73300.0,kg/TJ,3140359.4610849996,kg +0488c83e-1cba-3f1f-bf9f-6198db44f392,SESCO,II.1.1,Santa Fe,AR-S,annual,2012,naphtha combustion consumption by to the public,42.842557449999994,TJ,CH4,3.0,kg/TJ,128.52767235,kg +2b9ab3f0-516b-339a-bf99-6fb5ec79bde7,SESCO,II.1.1,Santa Fe,AR-S,annual,2012,naphtha combustion consumption by to the public,42.842557449999994,TJ,N2O,0.6,kg/TJ,25.705534469999996,kg +26b95fb2-d3fb-3fc6-acd6-8b0e7f274bd4,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2012,naphtha combustion consumption by to the public,1.1300597,TJ,CO2,73300.0,kg/TJ,82833.37600999999,kg +a8c665d6-4f99-30f9-a139-6ca422023562,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2012,naphtha combustion consumption by to the public,1.1300597,TJ,CH4,3.0,kg/TJ,3.3901790999999997,kg +35bb47a2-3de9-382a-8cd2-c3c3389eb742,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2012,naphtha combustion consumption by to the public,1.1300597,TJ,N2O,0.6,kg/TJ,0.67803582,kg +10b85d60-b5b0-3169-b8ab-1cd136759984,SESCO,II.1.1,Buenos Aires,AR-B,annual,2012,naphtha combustion consumption by to the public,1298.767642095,TJ,CO2,73300.0,kg/TJ,95199668.1655635,kg +2dbd0f02-4cb3-3e88-ab6f-92d7fd6da4a4,SESCO,II.1.1,Buenos Aires,AR-B,annual,2012,naphtha combustion consumption by to the public,1298.767642095,TJ,CH4,3.0,kg/TJ,3896.3029262849996,kg +7e5691b7-dc19-396a-ac43-646fa060a884,SESCO,II.1.1,Buenos Aires,AR-B,annual,2012,naphtha combustion consumption by to the public,1298.767642095,TJ,N2O,0.6,kg/TJ,779.2605852569999,kg +72b72710-7ade-317d-92a5-ba7f9b9e0870,SESCO,II.1.1,Capital Federal,AR-C,annual,2012,naphtha combustion consumption by to the public,300.76206545,TJ,CO2,73300.0,kg/TJ,22045859.397485003,kg +8d33d717-74ce-3d04-a440-075f95f5df56,SESCO,II.1.1,Capital Federal,AR-C,annual,2012,naphtha combustion consumption by to the public,300.76206545,TJ,CH4,3.0,kg/TJ,902.2861963500001,kg +746675ca-8347-3001-90cb-1d33050ad90f,SESCO,II.1.1,Capital Federal,AR-C,annual,2012,naphtha combustion consumption by to the public,300.76206545,TJ,N2O,0.6,kg/TJ,180.45723927,kg +da1a1d27-b495-3f0f-9c87-33bc82f887d7,SESCO,II.1.1,Chaco,AR-H,annual,2012,naphtha combustion consumption by to the public,84.05649944999999,TJ,CO2,73300.0,kg/TJ,6161341.409684999,kg +f4f0f298-05e6-3f1b-911d-0d3aec5a5306,SESCO,II.1.1,Chaco,AR-H,annual,2012,naphtha combustion consumption by to the public,84.05649944999999,TJ,CH4,3.0,kg/TJ,252.16949834999997,kg +122d4ad6-d5bf-319e-ab17-329a11dc9905,SESCO,II.1.1,Chaco,AR-H,annual,2012,naphtha combustion consumption by to the public,84.05649944999999,TJ,N2O,0.6,kg/TJ,50.433899669999995,kg +0695e345-f971-3921-9ddf-e660496ea1a2,SESCO,II.1.1,Córdoba,AR-X,annual,2012,naphtha combustion consumption by to the public,358.8936659,TJ,CO2,73300.0,kg/TJ,26306905.71047,kg +8d565542-a13e-3a8c-b3ce-42a89983b89b,SESCO,II.1.1,Córdoba,AR-X,annual,2012,naphtha combustion consumption by to the public,358.8936659,TJ,CH4,3.0,kg/TJ,1076.6809976999998,kg +f7f3f372-c611-316e-853d-1f49b3a76037,SESCO,II.1.1,Córdoba,AR-X,annual,2012,naphtha combustion consumption by to the public,358.8936659,TJ,N2O,0.6,kg/TJ,215.33619953999997,kg +44ae3af6-7a3c-31e9-bcd9-85167cdd492a,SESCO,II.1.1,Entre Rios,AR-E,annual,2012,naphtha combustion consumption by to the public,143.78347829999998,TJ,CO2,73300.0,kg/TJ,10539328.95939,kg +10b4bef6-3dff-3cce-a0cb-7ef8ddf2a4e3,SESCO,II.1.1,Entre Rios,AR-E,annual,2012,naphtha combustion consumption by to the public,143.78347829999998,TJ,CH4,3.0,kg/TJ,431.3504349,kg +3dbd52f2-e831-3060-a7b5-9c73f59273cb,SESCO,II.1.1,Entre Rios,AR-E,annual,2012,naphtha combustion consumption by to the public,143.78347829999998,TJ,N2O,0.6,kg/TJ,86.27008697999999,kg +23e55041-d6e5-38dd-8f6a-78d3ea56378b,SESCO,II.1.1,Santa Fe,AR-S,annual,2012,naphtha combustion consumption by to the public,183.5349901,TJ,CO2,73300.0,kg/TJ,13453114.77433,kg +66edcf40-10b2-3836-b373-a89b1f2e8e11,SESCO,II.1.1,Santa Fe,AR-S,annual,2012,naphtha combustion consumption by to the public,183.5349901,TJ,CH4,3.0,kg/TJ,550.6049703,kg +4187c5f8-3cfa-3605-8932-72c09271a93d,SESCO,II.1.1,Santa Fe,AR-S,annual,2012,naphtha combustion consumption by to the public,183.5349901,TJ,N2O,0.6,kg/TJ,110.12099405999999,kg +3c6ea0c6-e9e7-3c33-b7e5-ee4f2c7f670f,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2012,naphtha combustion consumption by to the public,5.7167726,TJ,CO2,73300.0,kg/TJ,419039.43158,kg +99ea9866-0d3e-31ee-ae31-a4ca2c8c65e8,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2012,naphtha combustion consumption by to the public,5.7167726,TJ,CH4,3.0,kg/TJ,17.1503178,kg +a880ebb6-e8da-3cbe-95a5-b304a9471707,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2012,naphtha combustion consumption by to the public,5.7167726,TJ,N2O,0.6,kg/TJ,3.43006356,kg +f59c15f0-8476-313b-8d40-30881ada0a79,SESCO,II.1.1,Buenos Aires,AR-B,annual,2012,naphtha combustion consumption by to the public,156.15763201500002,TJ,CO2,73300.0,kg/TJ,11446354.4266995,kg +9a72bcff-4902-38d9-b76f-906e43f06d23,SESCO,II.1.1,Buenos Aires,AR-B,annual,2012,naphtha combustion consumption by to the public,156.15763201500002,TJ,CH4,3.0,kg/TJ,468.4728960450001,kg +da02f30e-9ce9-322a-8bae-0cd6e49e3b95,SESCO,II.1.1,Buenos Aires,AR-B,annual,2012,naphtha combustion consumption by to the public,156.15763201500002,TJ,N2O,0.6,kg/TJ,93.69457920900001,kg +d176794d-ff8a-368e-ad83-ddc69ecb1003,SESCO,II.1.1,Capital Federal,AR-C,annual,2012,naphtha combustion consumption by to the public,15.45522825,TJ,CO2,73300.0,kg/TJ,1132868.230725,kg +a7e15101-579f-362f-9887-f277cb52f914,SESCO,II.1.1,Capital Federal,AR-C,annual,2012,naphtha combustion consumption by to the public,15.45522825,TJ,CH4,3.0,kg/TJ,46.36568475,kg +7647bae8-f228-3166-90da-fc747e5259a3,SESCO,II.1.1,Capital Federal,AR-C,annual,2012,naphtha combustion consumption by to the public,15.45522825,TJ,N2O,0.6,kg/TJ,9.27313695,kg +c440b548-fb65-3a4a-a3ef-954cb118550c,SESCO,II.1.1,Chaco,AR-H,annual,2012,naphtha combustion consumption by to the public,0.6647409999999999,TJ,CO2,73300.0,kg/TJ,48725.51529999999,kg +07cfa2ab-bdbf-3420-b582-c5eec5d561e5,SESCO,II.1.1,Chaco,AR-H,annual,2012,naphtha combustion consumption by to the public,0.6647409999999999,TJ,CH4,3.0,kg/TJ,1.9942229999999999,kg +8689de45-46c1-3abc-ac7c-e558671eb43d,SESCO,II.1.1,Chaco,AR-H,annual,2012,naphtha combustion consumption by to the public,0.6647409999999999,TJ,N2O,0.6,kg/TJ,0.39884459999999994,kg +0f175ca7-027a-3a93-b419-56832f9ee8a7,SESCO,II.1.1,Córdoba,AR-X,annual,2012,naphtha combustion consumption by to the public,34.8324284,TJ,CO2,73300.0,kg/TJ,2553217.00172,kg +ebd88379-8c01-3cff-bf34-02c147e153b0,SESCO,II.1.1,Córdoba,AR-X,annual,2012,naphtha combustion consumption by to the public,34.8324284,TJ,CH4,3.0,kg/TJ,104.4972852,kg +65e25bb7-5562-3641-920c-31b877f99931,SESCO,II.1.1,Córdoba,AR-X,annual,2012,naphtha combustion consumption by to the public,34.8324284,TJ,N2O,0.6,kg/TJ,20.899457039999998,kg +d867fe3f-2b91-3c38-bb16-4e12b700b43a,SESCO,II.1.1,Entre Rios,AR-E,annual,2012,naphtha combustion consumption by to the public,19.5433854,TJ,CO2,73300.0,kg/TJ,1432530.14982,kg +e8f760d1-2d91-3178-8a6c-9284a773bf93,SESCO,II.1.1,Entre Rios,AR-E,annual,2012,naphtha combustion consumption by to the public,19.5433854,TJ,CH4,3.0,kg/TJ,58.630156199999995,kg +b1d7ac88-af5f-340c-8a0a-3404c8ae366c,SESCO,II.1.1,Entre Rios,AR-E,annual,2012,naphtha combustion consumption by to the public,19.5433854,TJ,N2O,0.6,kg/TJ,11.72603124,kg +5ba6e75c-9f4a-3da0-bf8d-74da25400a6b,SESCO,II.1.1,Santa Fe,AR-S,annual,2012,naphtha combustion consumption by to the public,27.885884949999998,TJ,CO2,73300.0,kg/TJ,2044035.3668349998,kg +41e7a8fe-ea42-3e00-b635-0ca40970395d,SESCO,II.1.1,Santa Fe,AR-S,annual,2012,naphtha combustion consumption by to the public,27.885884949999998,TJ,CH4,3.0,kg/TJ,83.65765485,kg +eb1aa815-c0b4-3d43-a46b-074533bdd42e,SESCO,II.1.1,Santa Fe,AR-S,annual,2012,naphtha combustion consumption by to the public,27.885884949999998,TJ,N2O,0.6,kg/TJ,16.731530969999998,kg +2159fd5c-5f77-3e1b-bde5-a2abe3a0215c,SESCO,II.1.1,Catamarca,AR-K,annual,2012,naphtha combustion consumption by to the public,45.2166799315,TJ,CO2,73300.0,kg/TJ,3314382.63897895,kg +5cc55eb0-0696-3330-b9a9-e6b420515e15,SESCO,II.1.1,Catamarca,AR-K,annual,2012,naphtha combustion consumption by to the public,45.2166799315,TJ,CH4,3.0,kg/TJ,135.6500397945,kg +ed662970-1699-3ad8-8626-d47073b74f5f,SESCO,II.1.1,Catamarca,AR-K,annual,2012,naphtha combustion consumption by to the public,45.2166799315,TJ,N2O,0.6,kg/TJ,27.130007958900002,kg +a2093b94-40a9-3d52-bc0b-7bdb3be1fbba,SESCO,II.1.1,Chaco,AR-H,annual,2012,naphtha combustion consumption by to the public,44.785595392999994,TJ,CO2,73300.0,kg/TJ,3282784.1423068997,kg +80b65ce8-45d5-3799-991b-b0def52f30fa,SESCO,II.1.1,Chaco,AR-H,annual,2012,naphtha combustion consumption by to the public,44.785595392999994,TJ,CH4,3.0,kg/TJ,134.35678617899998,kg +61a93662-bfad-35b6-929c-d4b1df43fa31,SESCO,II.1.1,Chaco,AR-H,annual,2012,naphtha combustion consumption by to the public,44.785595392999994,TJ,N2O,0.6,kg/TJ,26.871357235799994,kg +9cadd2b1-e4f2-377f-88a8-f5452b15bf7c,SESCO,II.1.1,Córdoba,AR-X,annual,2012,naphtha combustion consumption by to the public,1.8788904364999999,TJ,CO2,73300.0,kg/TJ,137722.66899545,kg +37eed3ff-441d-3ebf-83a7-f8e2d0b2e984,SESCO,II.1.1,Córdoba,AR-X,annual,2012,naphtha combustion consumption by to the public,1.8788904364999999,TJ,CH4,3.0,kg/TJ,5.6366713095,kg +0f1c71a6-b007-3d6d-a16b-488c73babeef,SESCO,II.1.1,Córdoba,AR-X,annual,2012,naphtha combustion consumption by to the public,1.8788904364999999,TJ,N2O,0.6,kg/TJ,1.1273342619,kg +8d3cee33-4ea0-3c3f-af0a-ae73d16bb512,SESCO,II.1.1,Jujuy,AR-Y,annual,2012,naphtha combustion consumption by to the public,119.745778999,TJ,CO2,73300.0,kg/TJ,8777365.6006267,kg +810972f2-fef3-3111-89a1-cffbbb2d5224,SESCO,II.1.1,Jujuy,AR-Y,annual,2012,naphtha combustion consumption by to the public,119.745778999,TJ,CH4,3.0,kg/TJ,359.237336997,kg +ba8ff398-729a-3686-932d-ea0d6a4d00e5,SESCO,II.1.1,Jujuy,AR-Y,annual,2012,naphtha combustion consumption by to the public,119.745778999,TJ,N2O,0.6,kg/TJ,71.84746739939999,kg +608f29be-0b94-3f57-b670-6e901b1a855b,SESCO,II.1.1,La Rioja,AR-F,annual,2012,naphtha combustion consumption by to the public,36.52718557949999,TJ,CO2,73300.0,kg/TJ,2677442.7029773495,kg +c620af7e-8556-3cd3-b680-37f8513ce6c3,SESCO,II.1.1,La Rioja,AR-F,annual,2012,naphtha combustion consumption by to the public,36.52718557949999,TJ,CH4,3.0,kg/TJ,109.58155673849998,kg +981f7b31-8d16-3786-b177-7b4a56c078f9,SESCO,II.1.1,La Rioja,AR-F,annual,2012,naphtha combustion consumption by to the public,36.52718557949999,TJ,N2O,0.6,kg/TJ,21.916311347699995,kg +3aba627c-e18c-30e8-abc4-799fcd66189c,SESCO,II.1.1,Salta,AR-A,annual,2012,naphtha combustion consumption by to the public,241.25910431699995,TJ,CO2,73300.0,kg/TJ,17684292.3464361,kg +0ead04dc-dfb9-3a95-839e-ba54469d29d7,SESCO,II.1.1,Salta,AR-A,annual,2012,naphtha combustion consumption by to the public,241.25910431699995,TJ,CH4,3.0,kg/TJ,723.7773129509999,kg +3ac053e0-f710-3f8b-b9bd-ce1d45ab10ef,SESCO,II.1.1,Salta,AR-A,annual,2012,naphtha combustion consumption by to the public,241.25910431699995,TJ,N2O,0.6,kg/TJ,144.75546259019995,kg +a11aa779-2f5d-35fb-b9d2-f33d4c89feb2,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2012,naphtha combustion consumption by to the public,58.70361008049999,TJ,CO2,73300.0,kg/TJ,4302974.618900649,kg +944a2288-0968-3502-ac6c-d7606250dc89,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2012,naphtha combustion consumption by to the public,58.70361008049999,TJ,CH4,3.0,kg/TJ,176.11083024149997,kg +ab7f2a9d-c4e4-3845-97a7-47d725afa54b,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2012,naphtha combustion consumption by to the public,58.70361008049999,TJ,N2O,0.6,kg/TJ,35.2221660483,kg +9500d359-a2f9-3b13-b673-ab7cd652c9ce,SESCO,II.1.1,Tucuman,AR-T,annual,2012,naphtha combustion consumption by to the public,175.73259261249999,TJ,CO2,73300.0,kg/TJ,12881199.038496248,kg +05a8f381-fe24-3a8e-ac24-eaaf2c9b8ac2,SESCO,II.1.1,Tucuman,AR-T,annual,2012,naphtha combustion consumption by to the public,175.73259261249999,TJ,CH4,3.0,kg/TJ,527.1977778375,kg +d652c09d-c73b-32f6-bf5d-5e56d4276a5e,SESCO,II.1.1,Tucuman,AR-T,annual,2012,naphtha combustion consumption by to the public,175.73259261249999,TJ,N2O,0.6,kg/TJ,105.4395555675,kg +4c853178-a32c-334b-a10a-7b99192bfe97,SESCO,II.1.1,Catamarca,AR-K,annual,2012,naphtha combustion consumption by to the public,225.35118744599998,TJ,CO2,73300.0,kg/TJ,16518242.039791798,kg +ea397610-a8e3-3116-9494-a8b3746e4a29,SESCO,II.1.1,Catamarca,AR-K,annual,2012,naphtha combustion consumption by to the public,225.35118744599998,TJ,CH4,3.0,kg/TJ,676.0535623379999,kg +17405726-b7f1-30a9-8e94-be84b6c14bb7,SESCO,II.1.1,Catamarca,AR-K,annual,2012,naphtha combustion consumption by to the public,225.35118744599998,TJ,N2O,0.6,kg/TJ,135.2107124676,kg +2a590081-4308-3dbe-b139-8eec2fe07d8e,SESCO,II.1.1,Chaco,AR-H,annual,2012,naphtha combustion consumption by to the public,74.89902743399999,TJ,CO2,73300.0,kg/TJ,5490098.7109122,kg +921973a4-c880-3a1c-8cfb-d4dc2ac63f28,SESCO,II.1.1,Chaco,AR-H,annual,2012,naphtha combustion consumption by to the public,74.89902743399999,TJ,CH4,3.0,kg/TJ,224.69708230199996,kg +5fc9d376-2d91-31e7-9357-680121790e6c,SESCO,II.1.1,Chaco,AR-H,annual,2012,naphtha combustion consumption by to the public,74.89902743399999,TJ,N2O,0.6,kg/TJ,44.93941646039999,kg +c9c77561-7257-34d5-882d-9c3fb2cb3fc9,SESCO,II.1.1,Córdoba,AR-X,annual,2012,naphtha combustion consumption by to the public,19.492200343,TJ,CO2,73300.0,kg/TJ,1428778.2851419,kg +dbfd5acf-3ab7-30ca-b2b4-a2d2a347888e,SESCO,II.1.1,Córdoba,AR-X,annual,2012,naphtha combustion consumption by to the public,19.492200343,TJ,CH4,3.0,kg/TJ,58.476601029,kg +1a991719-b855-3f64-a49c-4ef4006d5ed7,SESCO,II.1.1,Córdoba,AR-X,annual,2012,naphtha combustion consumption by to the public,19.492200343,TJ,N2O,0.6,kg/TJ,11.6953202058,kg +885b337a-9818-385b-af02-3a562f3c17d7,SESCO,II.1.1,Jujuy,AR-Y,annual,2012,naphtha combustion consumption by to the public,347.8715953789999,TJ,CO2,73300.0,kg/TJ,25498987.941280697,kg +e464813f-a010-307d-bed8-a66524a7a92e,SESCO,II.1.1,Jujuy,AR-Y,annual,2012,naphtha combustion consumption by to the public,347.8715953789999,TJ,CH4,3.0,kg/TJ,1043.6147861369998,kg +48302bad-23d0-3d0d-b00f-8e0eb77a7396,SESCO,II.1.1,Jujuy,AR-Y,annual,2012,naphtha combustion consumption by to the public,347.8715953789999,TJ,N2O,0.6,kg/TJ,208.72295722739995,kg +c9ec1a4a-ef64-3b25-a423-3825b0e7681f,SESCO,II.1.1,La Rioja,AR-F,annual,2012,naphtha combustion consumption by to the public,227.66215953249997,TJ,CO2,73300.0,kg/TJ,16687636.293732248,kg +86f12519-eaa4-3745-8d95-bbb7624a3bd7,SESCO,II.1.1,La Rioja,AR-F,annual,2012,naphtha combustion consumption by to the public,227.66215953249997,TJ,CH4,3.0,kg/TJ,682.9864785974999,kg +6ef376c1-db98-3e7e-91d5-150655fc105a,SESCO,II.1.1,La Rioja,AR-F,annual,2012,naphtha combustion consumption by to the public,227.66215953249997,TJ,N2O,0.6,kg/TJ,136.59729571949998,kg +cbbf7cac-04c3-357a-9a22-04601402ac46,SESCO,II.1.1,Salta,AR-A,annual,2012,naphtha combustion consumption by to the public,754.9749375629999,TJ,CO2,73300.0,kg/TJ,55339662.923367895,kg +72e1687e-2b81-3e50-9f2b-a55a15e83fc1,SESCO,II.1.1,Salta,AR-A,annual,2012,naphtha combustion consumption by to the public,754.9749375629999,TJ,CH4,3.0,kg/TJ,2264.9248126889997,kg +af053fe4-c0ca-3faf-8efe-81b08ec9c419,SESCO,II.1.1,Salta,AR-A,annual,2012,naphtha combustion consumption by to the public,754.9749375629999,TJ,N2O,0.6,kg/TJ,452.98496253779996,kg +0b83a973-d687-3ace-9111-cd2fe893b618,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2012,naphtha combustion consumption by to the public,239.01593581249998,TJ,CO2,73300.0,kg/TJ,17519868.095056247,kg +ee2ab702-bb6c-3696-ad53-3eb7683ee397,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2012,naphtha combustion consumption by to the public,239.01593581249998,TJ,CH4,3.0,kg/TJ,717.0478074375,kg +ec493479-577a-39d9-9f75-ffee9988179d,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2012,naphtha combustion consumption by to the public,239.01593581249998,TJ,N2O,0.6,kg/TJ,143.40956148749999,kg +5e33fc68-65b4-32fd-9f14-04cfa4e428cc,SESCO,II.1.1,Tucuman,AR-T,annual,2012,naphtha combustion consumption by to the public,1322.4467136265,TJ,CO2,73300.0,kg/TJ,96935344.10882245,kg +d558e028-734e-3a10-a475-116b5a6df6b1,SESCO,II.1.1,Tucuman,AR-T,annual,2012,naphtha combustion consumption by to the public,1322.4467136265,TJ,CH4,3.0,kg/TJ,3967.3401408795,kg +039a69a4-0d5a-3158-b91d-3a1fc387275d,SESCO,II.1.1,Tucuman,AR-T,annual,2012,naphtha combustion consumption by to the public,1322.4467136265,TJ,N2O,0.6,kg/TJ,793.4680281759,kg +b2dad741-226e-362e-9d78-987441bb3a23,SESCO,II.1.1,Catamarca,AR-K,annual,2012,naphtha combustion consumption by to the public,14.294590464,TJ,CO2,73300.0,kg/TJ,1047793.4810112,kg +d0ee7b8d-313f-332f-82a6-06cafa422f40,SESCO,II.1.1,Catamarca,AR-K,annual,2012,naphtha combustion consumption by to the public,14.294590464,TJ,CH4,3.0,kg/TJ,42.883771392,kg +ad3e5f55-5567-38a5-9275-dda9788ac4d6,SESCO,II.1.1,Catamarca,AR-K,annual,2012,naphtha combustion consumption by to the public,14.294590464,TJ,N2O,0.6,kg/TJ,8.5767542784,kg +4da21f61-fd52-3b03-b37c-a44f19028545,SESCO,II.1.1,Chaco,AR-H,annual,2012,naphtha combustion consumption by to the public,1.5817512095,TJ,CO2,73300.0,kg/TJ,115942.36365634999,kg +7b47d3c6-7c69-3a84-a2bb-f639f6bc90bc,SESCO,II.1.1,Chaco,AR-H,annual,2012,naphtha combustion consumption by to the public,1.5817512095,TJ,CH4,3.0,kg/TJ,4.7452536284999995,kg +0c681808-6d35-3e0c-a9b9-ab575097e8de,SESCO,II.1.1,Chaco,AR-H,annual,2012,naphtha combustion consumption by to the public,1.5817512095,TJ,N2O,0.6,kg/TJ,0.9490507256999999,kg +2537b1ee-11f4-3fab-a236-e004c476a20b,SESCO,II.1.1,Córdoba,AR-X,annual,2012,naphtha combustion consumption by to the public,3.533098415,TJ,CO2,73300.0,kg/TJ,258976.1138195,kg +1c77f5f8-5a5f-3185-abb3-7e77f86b40d4,SESCO,II.1.1,Córdoba,AR-X,annual,2012,naphtha combustion consumption by to the public,3.533098415,TJ,CH4,3.0,kg/TJ,10.599295245,kg +c5fb3fae-56f2-3fce-b2bc-9b3c23d95928,SESCO,II.1.1,Córdoba,AR-X,annual,2012,naphtha combustion consumption by to the public,3.533098415,TJ,N2O,0.6,kg/TJ,2.119859049,kg +40ca6a84-8f21-304f-a160-29d510bba436,SESCO,II.1.1,Jujuy,AR-Y,annual,2012,naphtha combustion consumption by to the public,33.815707040499994,TJ,CO2,73300.0,kg/TJ,2478691.3260686495,kg +a231a006-1120-394a-b256-18391a4cc0b1,SESCO,II.1.1,Jujuy,AR-Y,annual,2012,naphtha combustion consumption by to the public,33.815707040499994,TJ,CH4,3.0,kg/TJ,101.44712112149998,kg +906fa66d-b3ab-37b3-8724-d6073a61f550,SESCO,II.1.1,Jujuy,AR-Y,annual,2012,naphtha combustion consumption by to the public,33.815707040499994,TJ,N2O,0.6,kg/TJ,20.289424224299996,kg +c7947046-f84d-393a-98ee-eeac081f1507,SESCO,II.1.1,La Rioja,AR-F,annual,2012,naphtha combustion consumption by to the public,11.869615296,TJ,CO2,73300.0,kg/TJ,870042.8011968,kg +779c0edb-429d-3b7a-83b1-1781940670ec,SESCO,II.1.1,La Rioja,AR-F,annual,2012,naphtha combustion consumption by to the public,11.869615296,TJ,CH4,3.0,kg/TJ,35.608845888,kg +e7a0c2c1-3fdc-32d5-a5e7-d87e9cc9ff24,SESCO,II.1.1,La Rioja,AR-F,annual,2012,naphtha combustion consumption by to the public,11.869615296,TJ,N2O,0.6,kg/TJ,7.121769177599999,kg +fe1a20cc-1e4c-3f12-a503-93f39c663ef5,SESCO,II.1.1,Salta,AR-A,annual,2012,naphtha combustion consumption by to the public,70.90260454199999,TJ,CO2,73300.0,kg/TJ,5197160.912928599,kg +95884087-68fd-3224-ac69-ad599664d5b6,SESCO,II.1.1,Salta,AR-A,annual,2012,naphtha combustion consumption by to the public,70.90260454199999,TJ,CH4,3.0,kg/TJ,212.70781362599996,kg +33a7bbcf-61db-3fc5-a03a-2bbd70df3c1e,SESCO,II.1.1,Salta,AR-A,annual,2012,naphtha combustion consumption by to the public,70.90260454199999,TJ,N2O,0.6,kg/TJ,42.541562725199995,kg +ba1fc74b-7119-3eb5-92a2-c9c7f1a9e0e7,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2012,naphtha combustion consumption by to the public,24.484072882499994,TJ,CO2,73300.0,kg/TJ,1794682.5422872496,kg +1ea42f02-882f-3714-a268-3838a7984bfb,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2012,naphtha combustion consumption by to the public,24.484072882499994,TJ,CH4,3.0,kg/TJ,73.45221864749999,kg +1e42dd48-f0e7-31be-9610-4b07d0089c2d,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2012,naphtha combustion consumption by to the public,24.484072882499994,TJ,N2O,0.6,kg/TJ,14.690443729499997,kg +7a2b8d0c-2f82-3536-8fa7-2e6e37885394,SESCO,II.1.1,Tucuman,AR-T,annual,2012,naphtha combustion consumption by to the public,117.8742007135,TJ,CO2,73300.0,kg/TJ,8640178.912299551,kg +5893b353-d294-38ab-9662-1b98fd501f3d,SESCO,II.1.1,Tucuman,AR-T,annual,2012,naphtha combustion consumption by to the public,117.8742007135,TJ,CH4,3.0,kg/TJ,353.6226021405,kg +63977f54-5ab3-354e-b5d0-7e93e6c2050c,SESCO,II.1.1,Tucuman,AR-T,annual,2012,naphtha combustion consumption by to the public,117.8742007135,TJ,N2O,0.6,kg/TJ,70.72452042809999,kg +4e9b40e4-a445-3248-945c-7a1125a05f8d,SESCO,II.5.1,Capital Federal,AR-C,annual,2012,naphtha combustion consumption by agriculture machines,0.3988446,TJ,CO2,73300.0,kg/TJ,29235.30918,kg +464d0476-4e23-3251-bc8b-30e9338b0e9c,SESCO,II.5.1,Capital Federal,AR-C,annual,2012,naphtha combustion consumption by agriculture machines,0.3988446,TJ,CH4,3.0,kg/TJ,1.1965338,kg +d96eb345-cfd7-3813-b51d-09c0e93a9d98,SESCO,II.5.1,Capital Federal,AR-C,annual,2012,naphtha combustion consumption by agriculture machines,0.3988446,TJ,N2O,0.6,kg/TJ,0.23930675999999998,kg +24b6e2f6-736e-3b11-99f8-4b119d32c8ea,SESCO,II.5.1,Santa Fe,AR-S,annual,2012,naphtha combustion consumption by agriculture machines,4.553475849999999,TJ,CO2,73300.0,kg/TJ,333769.77980499994,kg +f89e05de-a497-3d0e-8fd7-608e93381827,SESCO,II.5.1,Santa Fe,AR-S,annual,2012,naphtha combustion consumption by agriculture machines,4.553475849999999,TJ,CH4,3.0,kg/TJ,13.660427549999998,kg +efac2d95-b1bb-361d-aa03-09d02b2ab197,SESCO,II.5.1,Santa Fe,AR-S,annual,2012,naphtha combustion consumption by agriculture machines,4.553475849999999,TJ,N2O,0.6,kg/TJ,2.732085509999999,kg +71e64ba2-5944-3668-88be-c94d4c46bb40,SESCO,II.1.1,Buenos Aires,AR-B,annual,2012,naphtha combustion consumption by to the public,302.5236291,TJ,CO2,73300.0,kg/TJ,22174982.01303,kg +dd8c9f3a-2187-3428-9327-d41bb8114fa1,SESCO,II.1.1,Buenos Aires,AR-B,annual,2012,naphtha combustion consumption by to the public,302.5236291,TJ,CH4,3.0,kg/TJ,907.5708873,kg +fcce5508-44f5-3c2e-8e39-4816006ff99b,SESCO,II.1.1,Buenos Aires,AR-B,annual,2012,naphtha combustion consumption by to the public,302.5236291,TJ,N2O,0.6,kg/TJ,181.51417745999998,kg +d624fd17-7a6a-37dd-80c8-1de85aab9c71,SESCO,II.1.1,Capital Federal,AR-C,annual,2012,naphtha combustion consumption by to the public,3.8222607499999994,TJ,CO2,73300.0,kg/TJ,280171.712975,kg +460870de-a01a-3414-a525-57e496dc67ea,SESCO,II.1.1,Capital Federal,AR-C,annual,2012,naphtha combustion consumption by to the public,3.8222607499999994,TJ,CH4,3.0,kg/TJ,11.466782249999998,kg +223891f6-1d78-3654-97e0-7cf5e2c91fb0,SESCO,II.1.1,Capital Federal,AR-C,annual,2012,naphtha combustion consumption by to the public,3.8222607499999994,TJ,N2O,0.6,kg/TJ,2.2933564499999997,kg +f83165bc-166e-30d0-9ca2-6be02c578e6a,SESCO,II.1.1,Chaco,AR-H,annual,2012,naphtha combustion consumption by to the public,10.669093049999999,TJ,CO2,73300.0,kg/TJ,782044.5205649999,kg +6a8795a0-f812-3962-9901-74c8260de14e,SESCO,II.1.1,Chaco,AR-H,annual,2012,naphtha combustion consumption by to the public,10.669093049999999,TJ,CH4,3.0,kg/TJ,32.007279149999995,kg +c416bf2c-5c3e-352c-864c-3366a92b0db5,SESCO,II.1.1,Chaco,AR-H,annual,2012,naphtha combustion consumption by to the public,10.669093049999999,TJ,N2O,0.6,kg/TJ,6.401455829999999,kg +efb313af-0de1-3d0e-9ced-6f585929f8db,SESCO,II.1.1,Corrientes,AR-W,annual,2012,naphtha combustion consumption by to the public,2.9248603999999996,TJ,CO2,73300.0,kg/TJ,214392.26731999996,kg +bfecf491-1424-3b40-abf8-2d5bb93a02d3,SESCO,II.1.1,Corrientes,AR-W,annual,2012,naphtha combustion consumption by to the public,2.9248603999999996,TJ,CH4,3.0,kg/TJ,8.774581199999998,kg +a7ebe1ac-63af-31aa-85b5-4bb5e7621e8f,SESCO,II.1.1,Corrientes,AR-W,annual,2012,naphtha combustion consumption by to the public,2.9248603999999996,TJ,N2O,0.6,kg/TJ,1.7549162399999998,kg +e9b7c693-8957-31b3-9bfe-bfce415f464e,SESCO,II.1.1,Córdoba,AR-X,annual,2012,naphtha combustion consumption by to the public,0.7644521499999999,TJ,CO2,73300.0,kg/TJ,56034.342594999995,kg +c2e43149-f1c5-30a9-aa6f-3fd1ba0a21a4,SESCO,II.1.1,Córdoba,AR-X,annual,2012,naphtha combustion consumption by to the public,0.7644521499999999,TJ,CH4,3.0,kg/TJ,2.2933564499999997,kg +44d71264-215b-3bad-8b0f-ffc066198e52,SESCO,II.1.1,Córdoba,AR-X,annual,2012,naphtha combustion consumption by to the public,0.7644521499999999,TJ,N2O,0.6,kg/TJ,0.4586712899999999,kg +98fb7604-7549-3246-999a-598d31cc0a1a,SESCO,II.1.1,Entre Rios,AR-E,annual,2012,naphtha combustion consumption by to the public,24.927787499999997,TJ,CO2,73300.0,kg/TJ,1827206.8237499997,kg +3df7edb3-d44b-3a22-b33d-738982a47d82,SESCO,II.1.1,Entre Rios,AR-E,annual,2012,naphtha combustion consumption by to the public,24.927787499999997,TJ,CH4,3.0,kg/TJ,74.7833625,kg +223d5229-e1e9-3eb6-b266-78ce2d69104a,SESCO,II.1.1,Entre Rios,AR-E,annual,2012,naphtha combustion consumption by to the public,24.927787499999997,TJ,N2O,0.6,kg/TJ,14.956672499999998,kg +6e16bb9d-fd78-346f-881a-ffb1ae146e6e,SESCO,II.1.1,La Pampa,AR-L,annual,2012,naphtha combustion consumption by to the public,1.9942229999999999,TJ,CO2,73300.0,kg/TJ,146176.5459,kg +5d0589b7-e3eb-3b19-b65a-920a94690159,SESCO,II.1.1,La Pampa,AR-L,annual,2012,naphtha combustion consumption by to the public,1.9942229999999999,TJ,CH4,3.0,kg/TJ,5.982669,kg +8b9f1b92-ed11-3ec7-bc7b-bc996a28110a,SESCO,II.1.1,La Pampa,AR-L,annual,2012,naphtha combustion consumption by to the public,1.9942229999999999,TJ,N2O,0.6,kg/TJ,1.1965337999999999,kg +ab2ee27b-b3ec-3353-af58-fa5ad10b8983,SESCO,II.1.1,Mendoza,AR-M,annual,2012,naphtha combustion consumption by to the public,74.68365135,TJ,CO2,73300.0,kg/TJ,5474311.643955001,kg +cd3b8743-d655-3806-8e84-cc5e10bc880e,SESCO,II.1.1,Mendoza,AR-M,annual,2012,naphtha combustion consumption by to the public,74.68365135,TJ,CH4,3.0,kg/TJ,224.05095405000003,kg +c95dd880-b1fd-3eef-ad41-31756c4e8e64,SESCO,II.1.1,Mendoza,AR-M,annual,2012,naphtha combustion consumption by to the public,74.68365135,TJ,N2O,0.6,kg/TJ,44.81019081,kg +80383b0f-c34d-3030-acc6-5ac0120bc1ca,SESCO,II.1.1,Misiones,AR-N,annual,2012,naphtha combustion consumption by to the public,25.49281735,TJ,CO2,73300.0,kg/TJ,1868623.5117549999,kg +cbbd06f9-ef89-390e-8f15-ab5b6345413f,SESCO,II.1.1,Misiones,AR-N,annual,2012,naphtha combustion consumption by to the public,25.49281735,TJ,CH4,3.0,kg/TJ,76.47845205,kg +1b56a26f-c8f9-32ea-8b01-e22a66366b0e,SESCO,II.1.1,Misiones,AR-N,annual,2012,naphtha combustion consumption by to the public,25.49281735,TJ,N2O,0.6,kg/TJ,15.295690409999999,kg +36fd2381-e85c-3c6c-869b-a7763067a016,SESCO,II.1.1,Neuquén,AR-Q,annual,2012,naphtha combustion consumption by to the public,14.98990955,TJ,CO2,73300.0,kg/TJ,1098760.370015,kg +adc2a841-f3ab-3151-b43b-55bd8d5b7c89,SESCO,II.1.1,Neuquén,AR-Q,annual,2012,naphtha combustion consumption by to the public,14.98990955,TJ,CH4,3.0,kg/TJ,44.96972865,kg +9a1ea552-145e-3ad5-9dc0-9b1d07272cbc,SESCO,II.1.1,Neuquén,AR-Q,annual,2012,naphtha combustion consumption by to the public,14.98990955,TJ,N2O,0.6,kg/TJ,8.99394573,kg +0b621037-ab15-3e8f-94b6-70ba3b896fb8,SESCO,II.1.1,Rio Negro,AR-R,annual,2012,naphtha combustion consumption by to the public,7.744232649999999,TJ,CO2,73300.0,kg/TJ,567652.2532449999,kg +e809f3e9-8e13-364d-a057-0a062d98269e,SESCO,II.1.1,Rio Negro,AR-R,annual,2012,naphtha combustion consumption by to the public,7.744232649999999,TJ,CH4,3.0,kg/TJ,23.232697949999995,kg +10903e8e-cde4-39c6-bc9b-31360c891b85,SESCO,II.1.1,Rio Negro,AR-R,annual,2012,naphtha combustion consumption by to the public,7.744232649999999,TJ,N2O,0.6,kg/TJ,4.646539589999999,kg +f4a5aa1a-1351-343f-b7f1-216cd83304f4,SESCO,II.1.1,Santa Fe,AR-S,annual,2012,naphtha combustion consumption by to the public,3.55636435,TJ,CO2,73300.0,kg/TJ,260681.50685499999,kg +8b51953a-e01a-3c30-a558-1838bce0996c,SESCO,II.1.1,Santa Fe,AR-S,annual,2012,naphtha combustion consumption by to the public,3.55636435,TJ,CH4,3.0,kg/TJ,10.66909305,kg +32712da3-8ee5-3e7c-8789-5631c8a761c7,SESCO,II.1.1,Santa Fe,AR-S,annual,2012,naphtha combustion consumption by to the public,3.55636435,TJ,N2O,0.6,kg/TJ,2.13381861,kg +6ac025a2-545a-3729-8acd-70519eaba6c8,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2012,naphtha combustion consumption by to the public,1.8945118499999998,TJ,CO2,73300.0,kg/TJ,138867.71860499997,kg +9918925e-ddd7-37f8-b960-b4ecc9a46fbd,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2012,naphtha combustion consumption by to the public,1.8945118499999998,TJ,CH4,3.0,kg/TJ,5.683535549999999,kg +faf8a259-0802-381a-a89f-ec80f09694ce,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2012,naphtha combustion consumption by to the public,1.8945118499999998,TJ,N2O,0.6,kg/TJ,1.13670711,kg +95b6bc97-0c14-3f38-8e9b-8b18b400a4f0,SESCO,II.1.1,Tucuman,AR-T,annual,2012,naphtha combustion consumption by to the public,7.1127287,TJ,CO2,73300.0,kg/TJ,521363.01370999997,kg +9eccd8ac-d630-3dcb-ac65-fb3c39a6bfb5,SESCO,II.1.1,Tucuman,AR-T,annual,2012,naphtha combustion consumption by to the public,7.1127287,TJ,CH4,3.0,kg/TJ,21.3381861,kg +9008a4db-f578-3e0e-a08f-40a6e3dbff21,SESCO,II.1.1,Tucuman,AR-T,annual,2012,naphtha combustion consumption by to the public,7.1127287,TJ,N2O,0.6,kg/TJ,4.26763722,kg +22da8532-d126-3183-bc0f-aca46dfa7732,SESCO,II.1.1,Buenos Aires,AR-B,annual,2012,naphtha combustion consumption by to the public,14191.522371949999,TJ,CO2,73300.0,kg/TJ,1040238589.8639349,kg +3a54b1d6-e2b5-376b-8721-e419d0dc3aa1,SESCO,II.1.1,Buenos Aires,AR-B,annual,2012,naphtha combustion consumption by to the public,14191.522371949999,TJ,CH4,3.0,kg/TJ,42574.56711585,kg +330b149b-4eee-33ce-87b4-fee17deca136,SESCO,II.1.1,Buenos Aires,AR-B,annual,2012,naphtha combustion consumption by to the public,14191.522371949999,TJ,N2O,0.6,kg/TJ,8514.913423169999,kg +6aad65b2-8b11-3f7f-ba02-bd25c1061b65,SESCO,II.1.1,Capital Federal,AR-C,annual,2012,naphtha combustion consumption by to the public,4197.9058890999995,TJ,CO2,73300.0,kg/TJ,307706501.67103,kg +3dd35726-53c6-370b-a534-782fc15e79ab,SESCO,II.1.1,Capital Federal,AR-C,annual,2012,naphtha combustion consumption by to the public,4197.9058890999995,TJ,CH4,3.0,kg/TJ,12593.7176673,kg +74ceb176-5df4-333b-a474-6d6fc3a1067b,SESCO,II.1.1,Capital Federal,AR-C,annual,2012,naphtha combustion consumption by to the public,4197.9058890999995,TJ,N2O,0.6,kg/TJ,2518.7435334599995,kg +b96e3f72-94e4-3b3a-a8ab-e01a26bf43ae,SESCO,II.1.1,Catamarca,AR-K,annual,2012,naphtha combustion consumption by to the public,64.31369174999999,TJ,CO2,73300.0,kg/TJ,4714193.6052749995,kg +fc750a45-8aa4-3d94-ae70-46fc3df924cb,SESCO,II.1.1,Catamarca,AR-K,annual,2012,naphtha combustion consumption by to the public,64.31369174999999,TJ,CH4,3.0,kg/TJ,192.94107524999998,kg +9ca4a632-f41b-3289-9148-81008bb4798c,SESCO,II.1.1,Catamarca,AR-K,annual,2012,naphtha combustion consumption by to the public,64.31369174999999,TJ,N2O,0.6,kg/TJ,38.588215049999995,kg +85c3828c-7abd-3631-b726-5fff01a63aff,SESCO,II.1.1,Chaco,AR-H,annual,2012,naphtha combustion consumption by to the public,930.1720812999998,TJ,CO2,73300.0,kg/TJ,68181613.55928999,kg +2147632f-86cd-34d2-9132-7201003cb7d5,SESCO,II.1.1,Chaco,AR-H,annual,2012,naphtha combustion consumption by to the public,930.1720812999998,TJ,CH4,3.0,kg/TJ,2790.5162438999996,kg +3897c11f-08a2-3b9d-a3ec-cb69268e4ef0,SESCO,II.1.1,Chaco,AR-H,annual,2012,naphtha combustion consumption by to the public,930.1720812999998,TJ,N2O,0.6,kg/TJ,558.1032487799998,kg +cc9fbae8-40f4-3d52-81c1-7395775b1a5c,SESCO,II.1.1,Chubut,AR-U,annual,2012,naphtha combustion consumption by to the public,99.01317195,TJ,CO2,73300.0,kg/TJ,7257665.503935,kg +d6e13b73-128d-3cbc-846c-e8b69b36c962,SESCO,II.1.1,Chubut,AR-U,annual,2012,naphtha combustion consumption by to the public,99.01317195,TJ,CH4,3.0,kg/TJ,297.03951585,kg +e10f315c-60ba-3c12-a921-57f384b84015,SESCO,II.1.1,Chubut,AR-U,annual,2012,naphtha combustion consumption by to the public,99.01317195,TJ,N2O,0.6,kg/TJ,59.40790317,kg +fd0c8414-2fa4-33cc-bd1e-cde5996afa0b,SESCO,II.1.1,Corrientes,AR-W,annual,2012,naphtha combustion consumption by to the public,892.9465852999999,TJ,CO2,73300.0,kg/TJ,65452984.702489994,kg +dd771e8c-d441-326c-ad38-0be8fd12e8db,SESCO,II.1.1,Corrientes,AR-W,annual,2012,naphtha combustion consumption by to the public,892.9465852999999,TJ,CH4,3.0,kg/TJ,2678.8397558999995,kg +96f7c4a1-06b0-3526-9dc5-fc0063fda191,SESCO,II.1.1,Corrientes,AR-W,annual,2012,naphtha combustion consumption by to the public,892.9465852999999,TJ,N2O,0.6,kg/TJ,535.76795118,kg +7cc53ff8-dbd7-3f05-bcd1-59daaf6697d8,SESCO,II.1.1,Córdoba,AR-X,annual,2012,naphtha combustion consumption by to the public,2876.63344045,TJ,CO2,73300.0,kg/TJ,210857231.18498498,kg +cc50a113-69b4-3006-bdf7-d4e2f5c35223,SESCO,II.1.1,Córdoba,AR-X,annual,2012,naphtha combustion consumption by to the public,2876.63344045,TJ,CH4,3.0,kg/TJ,8629.90032135,kg +933a744b-c72e-30b6-a25b-9daeaefc5c55,SESCO,II.1.1,Córdoba,AR-X,annual,2012,naphtha combustion consumption by to the public,2876.63344045,TJ,N2O,0.6,kg/TJ,1725.98006427,kg +7f1bfed8-cefa-31cd-ba8d-c060c2b3d49d,SESCO,II.1.1,Entre Rios,AR-E,annual,2012,naphtha combustion consumption by to the public,1117.5293321499998,TJ,CO2,73300.0,kg/TJ,81914900.04659499,kg +9028d754-3683-3b80-8525-04940e3139aa,SESCO,II.1.1,Entre Rios,AR-E,annual,2012,naphtha combustion consumption by to the public,1117.5293321499998,TJ,CH4,3.0,kg/TJ,3352.5879964499995,kg +12ebb38e-44bc-3886-a869-9a6565ead208,SESCO,II.1.1,Entre Rios,AR-E,annual,2012,naphtha combustion consumption by to the public,1117.5293321499998,TJ,N2O,0.6,kg/TJ,670.5175992899999,kg +626c9e7c-a2a2-3294-b40f-c607502e38fb,SESCO,II.1.1,Formosa,AR-P,annual,2012,naphtha combustion consumption by to the public,443.24929879999996,TJ,CO2,73300.0,kg/TJ,32490173.602039997,kg +588614d0-6155-3e59-8004-3a8978a288d0,SESCO,II.1.1,Formosa,AR-P,annual,2012,naphtha combustion consumption by to the public,443.24929879999996,TJ,CH4,3.0,kg/TJ,1329.7478964,kg +19a8e05c-0bb1-3038-a8c1-9ead4935119f,SESCO,II.1.1,Formosa,AR-P,annual,2012,naphtha combustion consumption by to the public,443.24929879999996,TJ,N2O,0.6,kg/TJ,265.94957927999997,kg +60e245fe-615b-35ee-a4c2-c0a87e631cda,SESCO,II.1.1,Jujuy,AR-Y,annual,2012,naphtha combustion consumption by to the public,219.29805589999998,TJ,CO2,73300.0,kg/TJ,16074547.497469999,kg +9c92cb1c-d892-3f05-9e0f-558c4dd6b591,SESCO,II.1.1,Jujuy,AR-Y,annual,2012,naphtha combustion consumption by to the public,219.29805589999998,TJ,CH4,3.0,kg/TJ,657.8941676999999,kg +cdc5ae7a-4085-38cc-9bcb-a5ea2aa61f93,SESCO,II.1.1,Jujuy,AR-Y,annual,2012,naphtha combustion consumption by to the public,219.29805589999998,TJ,N2O,0.6,kg/TJ,131.57883353999998,kg +599cde3f-880c-307b-a607-d97fd080e3de,SESCO,II.1.1,La Pampa,AR-L,annual,2012,naphtha combustion consumption by to the public,298.9007906499999,TJ,CO2,73300.0,kg/TJ,21909427.954644993,kg +77012311-de92-38aa-bcc6-2b6e8fdfdfef,SESCO,II.1.1,La Pampa,AR-L,annual,2012,naphtha combustion consumption by to the public,298.9007906499999,TJ,CH4,3.0,kg/TJ,896.7023719499998,kg +853fc8cb-a3a8-37b3-8e68-7a09381d5dcd,SESCO,II.1.1,La Pampa,AR-L,annual,2012,naphtha combustion consumption by to the public,298.9007906499999,TJ,N2O,0.6,kg/TJ,179.34047438999994,kg +36a1775d-8503-3646-8e49-9fe8e39e951c,SESCO,II.1.1,La Rioja,AR-F,annual,2012,naphtha combustion consumption by to the public,283.64498469999995,TJ,CO2,73300.0,kg/TJ,20791177.37851,kg +aee5f60e-726f-3d4b-beae-39fe3de0e752,SESCO,II.1.1,La Rioja,AR-F,annual,2012,naphtha combustion consumption by to the public,283.64498469999995,TJ,CH4,3.0,kg/TJ,850.9349540999999,kg +85962779-72a8-3af9-ba2a-821d281dc3ea,SESCO,II.1.1,La Rioja,AR-F,annual,2012,naphtha combustion consumption by to the public,283.64498469999995,TJ,N2O,0.6,kg/TJ,170.18699081999998,kg +46fb17d6-0023-381b-bdb8-dcb6446a9e96,SESCO,II.1.1,Mendoza,AR-M,annual,2012,naphtha combustion consumption by to the public,759.10098495,TJ,CO2,73300.0,kg/TJ,55642102.196835,kg +5e486aa1-2a49-3cdd-afbf-7022d0da93cf,SESCO,II.1.1,Mendoza,AR-M,annual,2012,naphtha combustion consumption by to the public,759.10098495,TJ,CH4,3.0,kg/TJ,2277.30295485,kg +44d92bb1-3374-35fd-be1b-ca3c472b9ed7,SESCO,II.1.1,Mendoza,AR-M,annual,2012,naphtha combustion consumption by to the public,759.10098495,TJ,N2O,0.6,kg/TJ,455.46059097,kg +26e3228f-c4fa-3de6-8009-ccf63cc32fab,SESCO,II.1.1,Misiones,AR-N,annual,2012,naphtha combustion consumption by to the public,1152.56118285,TJ,CO2,73300.0,kg/TJ,84482734.702905,kg +f85306bd-aaad-3bc0-8efe-05cc248f300a,SESCO,II.1.1,Misiones,AR-N,annual,2012,naphtha combustion consumption by to the public,1152.56118285,TJ,CH4,3.0,kg/TJ,3457.68354855,kg +a551ed49-b97a-368f-8d9a-fe014a947165,SESCO,II.1.1,Misiones,AR-N,annual,2012,naphtha combustion consumption by to the public,1152.56118285,TJ,N2O,0.6,kg/TJ,691.53670971,kg +efd5fafb-d4cf-3440-b069-ab875cbde070,SESCO,II.1.1,Neuquén,AR-Q,annual,2012,naphtha combustion consumption by to the public,240.03797509999998,TJ,CO2,73300.0,kg/TJ,17594783.57483,kg +189abe20-bf0c-34d7-89c3-5c4ecf595bae,SESCO,II.1.1,Neuquén,AR-Q,annual,2012,naphtha combustion consumption by to the public,240.03797509999998,TJ,CH4,3.0,kg/TJ,720.1139252999999,kg +7086ddeb-58a8-35e1-adb9-7f929d0046d4,SESCO,II.1.1,Neuquén,AR-Q,annual,2012,naphtha combustion consumption by to the public,240.03797509999998,TJ,N2O,0.6,kg/TJ,144.02278506,kg +72c6389c-694c-39db-8577-a73f0d4fbe68,SESCO,II.1.1,Rio Negro,AR-R,annual,2012,naphtha combustion consumption by to the public,204.8731762,TJ,CO2,73300.0,kg/TJ,15017203.815459998,kg +1c65cf38-06da-337c-bb33-b25067a137ae,SESCO,II.1.1,Rio Negro,AR-R,annual,2012,naphtha combustion consumption by to the public,204.8731762,TJ,CH4,3.0,kg/TJ,614.6195286,kg +12c1572f-e3fe-3cb8-80be-cf5fd3731602,SESCO,II.1.1,Rio Negro,AR-R,annual,2012,naphtha combustion consumption by to the public,204.8731762,TJ,N2O,0.6,kg/TJ,122.92390572,kg +13545685-6ef7-3615-a325-6eda12896003,SESCO,II.1.1,Salta,AR-A,annual,2012,naphtha combustion consumption by to the public,330.01066944999997,TJ,CO2,73300.0,kg/TJ,24189782.070685,kg +4d387df1-8e13-3ed7-b7f1-1a4450f0dde7,SESCO,II.1.1,Salta,AR-A,annual,2012,naphtha combustion consumption by to the public,330.01066944999997,TJ,CH4,3.0,kg/TJ,990.0320083499998,kg +28de91da-fb08-3aa3-b36e-6d6b6179438f,SESCO,II.1.1,Salta,AR-A,annual,2012,naphtha combustion consumption by to the public,330.01066944999997,TJ,N2O,0.6,kg/TJ,198.00640166999997,kg +bfb3e3d6-2a78-3bc3-ab4d-e55f7bae029d,SESCO,II.1.1,San Juan,AR-J,annual,2012,naphtha combustion consumption by to the public,227.44113314999998,TJ,CO2,73300.0,kg/TJ,16671435.059895,kg +631872bd-5c7e-37c7-acd7-2afda5d51cdc,SESCO,II.1.1,San Juan,AR-J,annual,2012,naphtha combustion consumption by to the public,227.44113314999998,TJ,CH4,3.0,kg/TJ,682.3233994499999,kg +baea2188-cf37-3342-acea-23254c435825,SESCO,II.1.1,San Juan,AR-J,annual,2012,naphtha combustion consumption by to the public,227.44113314999998,TJ,N2O,0.6,kg/TJ,136.46467988999999,kg +d10a496b-46fd-3aed-8da9-837ef010302a,SESCO,II.1.1,San Luis,AR-D,annual,2012,naphtha combustion consumption by to the public,15.787598749999999,TJ,CO2,73300.0,kg/TJ,1157230.988375,kg +d12a008a-b8b7-3164-a549-cbbf893b3167,SESCO,II.1.1,San Luis,AR-D,annual,2012,naphtha combustion consumption by to the public,15.787598749999999,TJ,CH4,3.0,kg/TJ,47.362796249999995,kg +f793ba82-9d72-3d49-aabc-5ba39341962f,SESCO,II.1.1,San Luis,AR-D,annual,2012,naphtha combustion consumption by to the public,15.787598749999999,TJ,N2O,0.6,kg/TJ,9.47255925,kg +605db8a5-d6ca-3e96-bcdf-ef38880664f7,SESCO,II.1.1,Santa Fe,AR-S,annual,2012,naphtha combustion consumption by to the public,3294.6890553499998,TJ,CO2,73300.0,kg/TJ,241500707.75715497,kg +799eeafc-bb37-333b-86b7-6e561fd7a948,SESCO,II.1.1,Santa Fe,AR-S,annual,2012,naphtha combustion consumption by to the public,3294.6890553499998,TJ,CH4,3.0,kg/TJ,9884.06716605,kg +59c5d45c-6a67-31e9-8383-4d8d037fc04b,SESCO,II.1.1,Santa Fe,AR-S,annual,2012,naphtha combustion consumption by to the public,3294.6890553499998,TJ,N2O,0.6,kg/TJ,1976.8134332099999,kg +e01b3261-8243-33a1-89b0-feda27efc0ad,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2012,naphtha combustion consumption by to the public,370.65958159999997,TJ,CO2,73300.0,kg/TJ,27169347.331279997,kg +b420ffe6-a87e-33ea-a431-d399a7353ad2,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2012,naphtha combustion consumption by to the public,370.65958159999997,TJ,CH4,3.0,kg/TJ,1111.9787448,kg +fda08e5c-6d2a-3a80-9624-9869f7299cbf,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2012,naphtha combustion consumption by to the public,370.65958159999997,TJ,N2O,0.6,kg/TJ,222.39574895999996,kg +5fcaf8cb-d8aa-3e46-bcb3-17414f22f55e,SESCO,II.1.1,Tucuman,AR-T,annual,2012,naphtha combustion consumption by to the public,862.2023140499999,TJ,CO2,73300.0,kg/TJ,63199429.61986499,kg +44d5ab82-15d2-31aa-8027-ea9c70c9ec46,SESCO,II.1.1,Tucuman,AR-T,annual,2012,naphtha combustion consumption by to the public,862.2023140499999,TJ,CH4,3.0,kg/TJ,2586.6069421499997,kg +94da0d5c-2324-34c7-9745-8f270740bc12,SESCO,II.1.1,Tucuman,AR-T,annual,2012,naphtha combustion consumption by to the public,862.2023140499999,TJ,N2O,0.6,kg/TJ,517.32138843,kg +63cb1cf8-f596-39e5-89b6-82823b6fcd2e,SESCO,II.1.1,Buenos Aires,AR-B,annual,2012,naphtha combustion consumption by to the public,5909.414541799999,TJ,CO2,73300.0,kg/TJ,433160085.9139399,kg +354acdd5-9486-33ea-be93-3f6f93bf775e,SESCO,II.1.1,Buenos Aires,AR-B,annual,2012,naphtha combustion consumption by to the public,5909.414541799999,TJ,CH4,3.0,kg/TJ,17728.2436254,kg +4838aecc-6f08-3a17-b5cc-83e6536a7f2a,SESCO,II.1.1,Buenos Aires,AR-B,annual,2012,naphtha combustion consumption by to the public,5909.414541799999,TJ,N2O,0.6,kg/TJ,3545.648725079999,kg +ea89f508-e136-3701-9a5f-b6e117768d75,SESCO,II.1.1,Capital Federal,AR-C,annual,2012,naphtha combustion consumption by to the public,2562.4103697499995,TJ,CO2,73300.0,kg/TJ,187824680.10267496,kg +ad54ecba-ad48-3c4b-b6c6-a97e46409426,SESCO,II.1.1,Capital Federal,AR-C,annual,2012,naphtha combustion consumption by to the public,2562.4103697499995,TJ,CH4,3.0,kg/TJ,7687.231109249999,kg +31756f36-22b6-3353-a2ff-899932eec9b1,SESCO,II.1.1,Capital Federal,AR-C,annual,2012,naphtha combustion consumption by to the public,2562.4103697499995,TJ,N2O,0.6,kg/TJ,1537.4462218499996,kg +387d8a59-411a-38c0-94e7-976c6abd0696,SESCO,II.1.1,Catamarca,AR-K,annual,2012,naphtha combustion consumption by to the public,31.60843455,TJ,CO2,73300.0,kg/TJ,2316898.252515,kg +afb8289e-6c2e-3c04-a6b8-e42c8cdfd011,SESCO,II.1.1,Catamarca,AR-K,annual,2012,naphtha combustion consumption by to the public,31.60843455,TJ,CH4,3.0,kg/TJ,94.82530365,kg +dd4a637a-8a73-36b2-833a-536a4505f83c,SESCO,II.1.1,Catamarca,AR-K,annual,2012,naphtha combustion consumption by to the public,31.60843455,TJ,N2O,0.6,kg/TJ,18.965060729999998,kg +f47e4918-6996-3c6b-bf76-0c257d6a9365,SESCO,II.1.1,Chaco,AR-H,annual,2012,naphtha combustion consumption by to the public,247.0177556,TJ,CO2,73300.0,kg/TJ,18106401.48548,kg +a38c3108-dd6f-315f-bb04-93b0bcf9f122,SESCO,II.1.1,Chaco,AR-H,annual,2012,naphtha combustion consumption by to the public,247.0177556,TJ,CH4,3.0,kg/TJ,741.0532668,kg +c15d2494-32dc-390a-8a63-07ecded87741,SESCO,II.1.1,Chaco,AR-H,annual,2012,naphtha combustion consumption by to the public,247.0177556,TJ,N2O,0.6,kg/TJ,148.21065335999998,kg +172e191a-df58-3728-b2e4-b5dcf692e820,SESCO,II.1.1,Chubut,AR-U,annual,2012,naphtha combustion consumption by to the public,31.3093011,TJ,CO2,73300.0,kg/TJ,2294971.77063,kg +fcbea22d-40be-379f-83c9-10d28ae19e90,SESCO,II.1.1,Chubut,AR-U,annual,2012,naphtha combustion consumption by to the public,31.3093011,TJ,CH4,3.0,kg/TJ,93.9279033,kg +3a75d49a-4afa-3044-a0a6-af58a5cabab6,SESCO,II.1.1,Chubut,AR-U,annual,2012,naphtha combustion consumption by to the public,31.3093011,TJ,N2O,0.6,kg/TJ,18.785580659999997,kg +96118414-56bc-3c74-9b99-da3d8a2ae6a2,SESCO,II.1.1,Corrientes,AR-W,annual,2012,naphtha combustion consumption by to the public,271.5466985,TJ,CO2,73300.0,kg/TJ,19904373.00005,kg +f2f7c888-5e2c-33cb-811c-4f876c10fe1a,SESCO,II.1.1,Corrientes,AR-W,annual,2012,naphtha combustion consumption by to the public,271.5466985,TJ,CH4,3.0,kg/TJ,814.6400954999999,kg +db49afb2-e4e5-38ea-a3dc-51ece02de267,SESCO,II.1.1,Corrientes,AR-W,annual,2012,naphtha combustion consumption by to the public,271.5466985,TJ,N2O,0.6,kg/TJ,162.9280191,kg +1df04e8a-371d-3c7f-aa04-65491910cdc9,SESCO,II.1.1,Córdoba,AR-X,annual,2012,naphtha combustion consumption by to the public,1037.8601233,TJ,CO2,73300.0,kg/TJ,76075147.03789,kg +4e7d3284-aa10-3353-b6e0-9855615bad36,SESCO,II.1.1,Córdoba,AR-X,annual,2012,naphtha combustion consumption by to the public,1037.8601233,TJ,CH4,3.0,kg/TJ,3113.5803699,kg +7f23afc3-ae0a-3e7b-9b39-1b0588a40ccb,SESCO,II.1.1,Córdoba,AR-X,annual,2012,naphtha combustion consumption by to the public,1037.8601233,TJ,N2O,0.6,kg/TJ,622.7160739799999,kg +53735f4a-08d0-3789-a972-39af9752291c,SESCO,II.1.1,Entre Rios,AR-E,annual,2012,naphtha combustion consumption by to the public,365.37489064999994,TJ,CO2,73300.0,kg/TJ,26781979.484644994,kg +568232e1-1ff8-3e8e-825b-ef05598c3450,SESCO,II.1.1,Entre Rios,AR-E,annual,2012,naphtha combustion consumption by to the public,365.37489064999994,TJ,CH4,3.0,kg/TJ,1096.1246719499998,kg +be43ebd1-00ea-312f-b016-8d04196d4bbd,SESCO,II.1.1,Entre Rios,AR-E,annual,2012,naphtha combustion consumption by to the public,365.37489064999994,TJ,N2O,0.6,kg/TJ,219.22493438999996,kg +0672b4af-6687-351e-9813-0833d123c1b2,SESCO,II.1.1,Formosa,AR-P,annual,2012,naphtha combustion consumption by to the public,139.59561,TJ,CO2,73300.0,kg/TJ,10232358.213,kg +38502aec-af45-3124-bfb7-77ae494770f5,SESCO,II.1.1,Formosa,AR-P,annual,2012,naphtha combustion consumption by to the public,139.59561,TJ,CH4,3.0,kg/TJ,418.78683,kg +e05c59a9-ea55-3357-b934-3b46afb24c58,SESCO,II.1.1,Formosa,AR-P,annual,2012,naphtha combustion consumption by to the public,139.59561,TJ,N2O,0.6,kg/TJ,83.75736599999999,kg +bf0688da-d285-3370-9344-f92388209542,SESCO,II.1.1,Jujuy,AR-Y,annual,2012,naphtha combustion consumption by to the public,60.19229755,TJ,CO2,73300.0,kg/TJ,4412095.410415,kg +5b016142-cfd2-323b-adf6-8c809e816c3a,SESCO,II.1.1,Jujuy,AR-Y,annual,2012,naphtha combustion consumption by to the public,60.19229755,TJ,CH4,3.0,kg/TJ,180.57689265,kg +603e50cd-b315-3886-8cf4-9a66924caed6,SESCO,II.1.1,Jujuy,AR-Y,annual,2012,naphtha combustion consumption by to the public,60.19229755,TJ,N2O,0.6,kg/TJ,36.11537853,kg +7ac13c90-684d-3f54-9447-8b070a44a321,SESCO,II.1.1,La Pampa,AR-L,annual,2012,naphtha combustion consumption by to the public,116.99441599999999,TJ,CO2,73300.0,kg/TJ,8575690.692799998,kg +be13961b-f640-3ce0-aa26-27b6e3a1463c,SESCO,II.1.1,La Pampa,AR-L,annual,2012,naphtha combustion consumption by to the public,116.99441599999999,TJ,CH4,3.0,kg/TJ,350.98324799999995,kg +8215bc97-7e3c-3eb2-aba7-07621cbeb8f3,SESCO,II.1.1,La Pampa,AR-L,annual,2012,naphtha combustion consumption by to the public,116.99441599999999,TJ,N2O,0.6,kg/TJ,70.19664959999999,kg +c5e88d4b-50a9-35a0-b0d3-a40761fa75dd,SESCO,II.1.1,La Rioja,AR-F,annual,2012,naphtha combustion consumption by to the public,71.3931834,TJ,CO2,73300.0,kg/TJ,5233120.34322,kg +9b0a69ff-2930-3c07-b1b4-51d5ad041d3f,SESCO,II.1.1,La Rioja,AR-F,annual,2012,naphtha combustion consumption by to the public,71.3931834,TJ,CH4,3.0,kg/TJ,214.1795502,kg +2fdabe2f-698e-337f-b8bd-38b9d00979a6,SESCO,II.1.1,La Rioja,AR-F,annual,2012,naphtha combustion consumption by to the public,71.3931834,TJ,N2O,0.6,kg/TJ,42.835910039999995,kg +dd8e00b1-881b-36db-b230-380840186c53,SESCO,II.1.1,Mendoza,AR-M,annual,2012,naphtha combustion consumption by to the public,273.24178804999997,TJ,CO2,73300.0,kg/TJ,20028623.064065,kg +93571391-9bd9-3c88-a066-5075531cfa1a,SESCO,II.1.1,Mendoza,AR-M,annual,2012,naphtha combustion consumption by to the public,273.24178804999997,TJ,CH4,3.0,kg/TJ,819.7253641499999,kg +e9386a8e-0bde-36e4-a816-683ef661ff51,SESCO,II.1.1,Mendoza,AR-M,annual,2012,naphtha combustion consumption by to the public,273.24178804999997,TJ,N2O,0.6,kg/TJ,163.94507283,kg +b232fd5e-4138-3a19-b819-556afe52d169,SESCO,II.1.1,Misiones,AR-N,annual,2012,naphtha combustion consumption by to the public,197.06246944999998,TJ,CO2,73300.0,kg/TJ,14444679.010684999,kg +9d45f814-ca80-3151-adb2-4df9ac4e7d95,SESCO,II.1.1,Misiones,AR-N,annual,2012,naphtha combustion consumption by to the public,197.06246944999998,TJ,CH4,3.0,kg/TJ,591.1874083499999,kg +c12abd90-8dae-340d-a241-bc1f0e69406d,SESCO,II.1.1,Misiones,AR-N,annual,2012,naphtha combustion consumption by to the public,197.06246944999998,TJ,N2O,0.6,kg/TJ,118.23748166999998,kg +63ecf0c8-ec9d-3ac9-ba1f-cde0caa157ae,SESCO,II.1.1,Neuquén,AR-Q,annual,2012,naphtha combustion consumption by to the public,62.81802449999999,TJ,CO2,73300.0,kg/TJ,4604561.19585,kg +55f4d01a-8e27-3dc1-86f8-5d4475833d96,SESCO,II.1.1,Neuquén,AR-Q,annual,2012,naphtha combustion consumption by to the public,62.81802449999999,TJ,CH4,3.0,kg/TJ,188.4540735,kg +0d212542-100f-3121-90fe-0895f23de222,SESCO,II.1.1,Neuquén,AR-Q,annual,2012,naphtha combustion consumption by to the public,62.81802449999999,TJ,N2O,0.6,kg/TJ,37.6908147,kg +2b78a96c-3d25-3dd1-bf39-ef35d8936fc0,SESCO,II.1.1,Rio Negro,AR-R,annual,2012,naphtha combustion consumption by to the public,75.31515529999999,TJ,CO2,73300.0,kg/TJ,5520600.883489999,kg +c9ff3211-56bc-32ed-8489-1421a6bff12e,SESCO,II.1.1,Rio Negro,AR-R,annual,2012,naphtha combustion consumption by to the public,75.31515529999999,TJ,CH4,3.0,kg/TJ,225.94546589999996,kg +ffafd7a0-ea80-394a-b396-4fa0aa4e41a8,SESCO,II.1.1,Rio Negro,AR-R,annual,2012,naphtha combustion consumption by to the public,75.31515529999999,TJ,N2O,0.6,kg/TJ,45.18909317999999,kg +1238f98f-4c45-3e2a-ac53-0369f0510c5c,SESCO,II.1.1,Salta,AR-A,annual,2012,naphtha combustion consumption by to the public,92.36576194999999,TJ,CO2,73300.0,kg/TJ,6770410.350934999,kg +eea17f5e-8365-3541-bb0d-5e088b751b95,SESCO,II.1.1,Salta,AR-A,annual,2012,naphtha combustion consumption by to the public,92.36576194999999,TJ,CH4,3.0,kg/TJ,277.09728585,kg +ac2462e5-b78c-3616-a559-4219b9961968,SESCO,II.1.1,Salta,AR-A,annual,2012,naphtha combustion consumption by to the public,92.36576194999999,TJ,N2O,0.6,kg/TJ,55.419457169999994,kg +7fa0f71e-b653-32cc-8459-bc77df3d30fa,SESCO,II.1.1,San Juan,AR-J,annual,2012,naphtha combustion consumption by to the public,36.261621549999994,TJ,CO2,73300.0,kg/TJ,2657976.8596149995,kg +f03bc841-b0fe-311d-a35d-42846fccb660,SESCO,II.1.1,San Juan,AR-J,annual,2012,naphtha combustion consumption by to the public,36.261621549999994,TJ,CH4,3.0,kg/TJ,108.78486464999997,kg +5186dd53-2894-34f2-91fa-62a08df9596a,SESCO,II.1.1,San Juan,AR-J,annual,2012,naphtha combustion consumption by to the public,36.261621549999994,TJ,N2O,0.6,kg/TJ,21.756972929999996,kg +38139050-b6b0-3128-8c29-fc5657e76fc7,SESCO,II.1.1,San Luis,AR-D,annual,2012,naphtha combustion consumption by to the public,14.4248797,TJ,CO2,73300.0,kg/TJ,1057343.68201,kg +a3b74fee-9d0a-329b-9260-2a356a7c22e6,SESCO,II.1.1,San Luis,AR-D,annual,2012,naphtha combustion consumption by to the public,14.4248797,TJ,CH4,3.0,kg/TJ,43.2746391,kg +9cadeaa1-79e1-3ed4-a7dc-5a975e110fa0,SESCO,II.1.1,San Luis,AR-D,annual,2012,naphtha combustion consumption by to the public,14.4248797,TJ,N2O,0.6,kg/TJ,8.65492782,kg +f6925641-f836-33c9-82db-f61d2a98c379,SESCO,II.1.1,Santa Fe,AR-S,annual,2012,naphtha combustion consumption by to the public,1317.8157954499998,TJ,CO2,73300.0,kg/TJ,96595897.80648498,kg +6368aa95-2e91-3173-a93f-9030fa09a5f7,SESCO,II.1.1,Santa Fe,AR-S,annual,2012,naphtha combustion consumption by to the public,1317.8157954499998,TJ,CH4,3.0,kg/TJ,3953.4473863499993,kg +9d879d6c-bdc5-3046-b2f3-ab41830d0244,SESCO,II.1.1,Santa Fe,AR-S,annual,2012,naphtha combustion consumption by to the public,1317.8157954499998,TJ,N2O,0.6,kg/TJ,790.6894772699999,kg +68675aca-131c-3921-a455-29657e069d66,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2012,naphtha combustion consumption by to the public,122.17939579999998,TJ,CO2,73300.0,kg/TJ,8955749.71214,kg +9e09661c-e3df-359e-b95a-277c2355b7d0,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2012,naphtha combustion consumption by to the public,122.17939579999998,TJ,CH4,3.0,kg/TJ,366.53818739999997,kg +e6424395-847f-3c51-ba78-5c819b0346d1,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2012,naphtha combustion consumption by to the public,122.17939579999998,TJ,N2O,0.6,kg/TJ,73.30763747999998,kg +1764875b-0ebe-325b-9b58-00767c10e438,SESCO,II.1.1,Tucuman,AR-T,annual,2012,naphtha combustion consumption by to the public,268.85449745,TJ,CO2,73300.0,kg/TJ,19707034.663085,kg +4839df0e-e2da-30de-a8cd-99cbd9cab2bf,SESCO,II.1.1,Tucuman,AR-T,annual,2012,naphtha combustion consumption by to the public,268.85449745,TJ,CH4,3.0,kg/TJ,806.5634923499999,kg +9f4079e8-b079-3040-ae7a-37f6c9acecdf,SESCO,II.1.1,Tucuman,AR-T,annual,2012,naphtha combustion consumption by to the public,268.85449745,TJ,N2O,0.6,kg/TJ,161.31269847,kg +90910472-cd30-3191-b971-a64c648520cb,SESCO,II.5.1,Buenos Aires,AR-B,annual,2012,naphtha combustion consumption by agriculture machines,4.8526093,TJ,CO2,73300.0,kg/TJ,355696.26169,kg +0cc835df-3157-34a0-9414-d145397733db,SESCO,II.5.1,Buenos Aires,AR-B,annual,2012,naphtha combustion consumption by agriculture machines,4.8526093,TJ,CH4,3.0,kg/TJ,14.5578279,kg +b1a631ad-2601-3120-a991-6b123b65a3b1,SESCO,II.5.1,Buenos Aires,AR-B,annual,2012,naphtha combustion consumption by agriculture machines,4.8526093,TJ,N2O,0.6,kg/TJ,2.91156558,kg +a737197f-d701-3e04-9375-1f266c54560d,SESCO,II.5.1,Chubut,AR-U,annual,2012,naphtha combustion consumption by agriculture machines,8.575158899999998,TJ,CO2,73300.0,kg/TJ,628559.1473699999,kg +c893d62f-3e96-348a-98f5-03cf55290a3f,SESCO,II.5.1,Chubut,AR-U,annual,2012,naphtha combustion consumption by agriculture machines,8.575158899999998,TJ,CH4,3.0,kg/TJ,25.725476699999994,kg +cd68e0db-27cb-34f1-ae79-08610f0e1d30,SESCO,II.5.1,Chubut,AR-U,annual,2012,naphtha combustion consumption by agriculture machines,8.575158899999998,TJ,N2O,0.6,kg/TJ,5.145095339999998,kg +3267956d-8bd9-3b52-a493-01f2f7bcd294,SESCO,II.5.1,Corrientes,AR-W,annual,2012,naphtha combustion consumption by agriculture machines,0.7312150999999999,TJ,CO2,73300.0,kg/TJ,53598.06682999999,kg +76a0bbe0-0c1a-3a30-98bd-d9bbf574b3a0,SESCO,II.5.1,Corrientes,AR-W,annual,2012,naphtha combustion consumption by agriculture machines,0.7312150999999999,TJ,CH4,3.0,kg/TJ,2.1936452999999996,kg +e6a69d65-c440-3e9e-a26c-d1c7d92bca97,SESCO,II.5.1,Corrientes,AR-W,annual,2012,naphtha combustion consumption by agriculture machines,0.7312150999999999,TJ,N2O,0.6,kg/TJ,0.43872905999999995,kg +4aee5abf-7773-3342-bc09-1a8cee37db29,SESCO,II.5.1,Entre Rios,AR-E,annual,2012,naphtha combustion consumption by agriculture machines,7.013017549999999,TJ,CO2,73300.0,kg/TJ,514054.18641499995,kg +24aa0e37-0bdc-3754-baeb-04b7c117ea93,SESCO,II.5.1,Entre Rios,AR-E,annual,2012,naphtha combustion consumption by agriculture machines,7.013017549999999,TJ,CH4,3.0,kg/TJ,21.039052649999995,kg +7443fe5e-c5ea-32ef-b46f-92f42f384038,SESCO,II.5.1,Entre Rios,AR-E,annual,2012,naphtha combustion consumption by agriculture machines,7.013017549999999,TJ,N2O,0.6,kg/TJ,4.207810529999999,kg +dfb006f5-ba19-3c7d-8ab8-f35cc1ec1805,SESCO,II.5.1,Jujuy,AR-Y,annual,2012,naphtha combustion consumption by agriculture machines,0.5317928,TJ,CO2,73300.0,kg/TJ,38980.41224,kg +fc42ec21-fb4d-3ac0-bdef-915860e25e7d,SESCO,II.5.1,Jujuy,AR-Y,annual,2012,naphtha combustion consumption by agriculture machines,0.5317928,TJ,CH4,3.0,kg/TJ,1.5953784,kg +5eaa908d-eb89-3133-bf03-8fbc6f64450c,SESCO,II.5.1,Jujuy,AR-Y,annual,2012,naphtha combustion consumption by agriculture machines,0.5317928,TJ,N2O,0.6,kg/TJ,0.31907568,kg +543da18e-e31c-3bff-9eed-f5f7cbb5f967,SESCO,II.5.1,Salta,AR-A,annual,2012,naphtha combustion consumption by agriculture machines,0.1994223,TJ,CO2,73300.0,kg/TJ,14617.65459,kg +875335e9-0df3-3507-8ee2-981658542634,SESCO,II.5.1,Salta,AR-A,annual,2012,naphtha combustion consumption by agriculture machines,0.1994223,TJ,CH4,3.0,kg/TJ,0.5982669,kg +c2f57e9e-4370-3fd5-ade7-54177c4797cf,SESCO,II.5.1,Salta,AR-A,annual,2012,naphtha combustion consumption by agriculture machines,0.1994223,TJ,N2O,0.6,kg/TJ,0.11965337999999999,kg +c39f5f14-ce19-37dc-8371-77b7b3dfbbc0,SESCO,II.5.1,Santa Fe,AR-S,annual,2012,naphtha combustion consumption by agriculture machines,86.25014474999999,TJ,CO2,73300.0,kg/TJ,6322135.610175,kg +621e3c8e-5f79-3cc4-b2b8-d902b2126611,SESCO,II.5.1,Santa Fe,AR-S,annual,2012,naphtha combustion consumption by agriculture machines,86.25014474999999,TJ,CH4,3.0,kg/TJ,258.75043424999996,kg +e5986bdf-42c3-3667-ad14-e2428f550716,SESCO,II.5.1,Santa Fe,AR-S,annual,2012,naphtha combustion consumption by agriculture machines,86.25014474999999,TJ,N2O,0.6,kg/TJ,51.750086849999995,kg +83ad0df6-3f73-32ab-b77f-25ae4c7046ab,SESCO,II.5.1,Santiago del Estero,AR-G,annual,2012,naphtha combustion consumption by agriculture machines,0.49855574999999996,TJ,CO2,73300.0,kg/TJ,36544.136475,kg +a80735f5-602f-312f-9bc1-46e114c0cf90,SESCO,II.5.1,Santiago del Estero,AR-G,annual,2012,naphtha combustion consumption by agriculture machines,0.49855574999999996,TJ,CH4,3.0,kg/TJ,1.49566725,kg +4c5d3ae8-432f-344c-84be-70a21f80cc61,SESCO,II.5.1,Santiago del Estero,AR-G,annual,2012,naphtha combustion consumption by agriculture machines,0.49855574999999996,TJ,N2O,0.6,kg/TJ,0.29913344999999997,kg +5df79895-186f-382b-a979-7017e27eedc4,SESCO,II.5.1,Buenos Aires,AR-B,annual,2012,naphtha combustion consumption by agriculture machines,0.9971114999999999,TJ,CO2,73300.0,kg/TJ,73088.27295,kg +62deba08-a67e-3876-8540-66ef44896069,SESCO,II.5.1,Buenos Aires,AR-B,annual,2012,naphtha combustion consumption by agriculture machines,0.9971114999999999,TJ,CH4,3.0,kg/TJ,2.9913345,kg +d9d73afa-d06a-3e77-a6a3-fb5fba7a9e2a,SESCO,II.5.1,Buenos Aires,AR-B,annual,2012,naphtha combustion consumption by agriculture machines,0.9971114999999999,TJ,N2O,0.6,kg/TJ,0.5982668999999999,kg +fa897ab7-d788-3907-95a3-c93abdec1bae,SESCO,II.5.1,Santa Fe,AR-S,annual,2012,naphtha combustion consumption by agriculture machines,1.22977085,TJ,CO2,73300.0,kg/TJ,90142.203305,kg +31886207-5323-3090-a514-1ad3b5bbb7c5,SESCO,II.5.1,Santa Fe,AR-S,annual,2012,naphtha combustion consumption by agriculture machines,1.22977085,TJ,CH4,3.0,kg/TJ,3.68931255,kg +9c23e885-cb29-3a11-af5f-179f317c2fa1,SESCO,II.5.1,Santa Fe,AR-S,annual,2012,naphtha combustion consumption by agriculture machines,1.22977085,TJ,N2O,0.6,kg/TJ,0.7378625099999999,kg +4247b9c1-4bf4-301e-b2da-72cd76ea43a5,SESCO,II.1.1,Buenos Aires,AR-B,annual,2012,naphtha combustion consumption by to the public,2.35983055,TJ,CO2,73300.0,kg/TJ,172975.57931499998,kg +8d6558a0-f480-391c-9d3a-18aff2cd293f,SESCO,II.1.1,Buenos Aires,AR-B,annual,2012,naphtha combustion consumption by to the public,2.35983055,TJ,CH4,3.0,kg/TJ,7.07949165,kg +8c2917fc-0cdb-303c-8a96-f4a96f02be70,SESCO,II.1.1,Buenos Aires,AR-B,annual,2012,naphtha combustion consumption by to the public,2.35983055,TJ,N2O,0.6,kg/TJ,1.4158983299999999,kg +fbc748c8-aad1-3464-89df-e895eb9aa5d9,SESCO,II.1.1,Capital Federal,AR-C,annual,2012,naphtha combustion consumption by to the public,1.5289042999999998,TJ,CO2,73300.0,kg/TJ,112068.68518999999,kg +6a16cc56-06e9-3c82-8c8c-1e3029cfe90f,SESCO,II.1.1,Capital Federal,AR-C,annual,2012,naphtha combustion consumption by to the public,1.5289042999999998,TJ,CH4,3.0,kg/TJ,4.586712899999999,kg +1800a71a-e23a-385d-bccc-ff19558673f8,SESCO,II.1.1,Capital Federal,AR-C,annual,2012,naphtha combustion consumption by to the public,1.5289042999999998,TJ,N2O,0.6,kg/TJ,0.9173425799999998,kg +f2bf32f3-f542-3399-8c41-8b06bfd7aabc,SESCO,II.1.1,Córdoba,AR-X,annual,2012,naphtha combustion consumption by to the public,0.6647409999999999,TJ,CO2,73300.0,kg/TJ,48725.51529999999,kg +7647a4a2-ca97-3a9d-a322-ddb5d7afbf6b,SESCO,II.1.1,Córdoba,AR-X,annual,2012,naphtha combustion consumption by to the public,0.6647409999999999,TJ,CH4,3.0,kg/TJ,1.9942229999999999,kg +883e56a1-4fb3-3988-aaa0-f931801d466f,SESCO,II.1.1,Córdoba,AR-X,annual,2012,naphtha combustion consumption by to the public,0.6647409999999999,TJ,N2O,0.6,kg/TJ,0.39884459999999994,kg +66684f8f-7f99-34ba-b077-10d054c7ce56,SESCO,II.1.1,Buenos Aires,AR-B,annual,2012,naphtha combustion consumption by to the public,35610.9730592,TJ,CO2,73300.0,kg/TJ,2610284325.23936,kg +7cf75b80-74d3-318c-a27a-9b55ed40a519,SESCO,II.1.1,Buenos Aires,AR-B,annual,2012,naphtha combustion consumption by to the public,35610.9730592,TJ,CH4,3.0,kg/TJ,106832.9191776,kg +eabfb4bc-ec26-310c-bba5-cf3de6726a82,SESCO,II.1.1,Buenos Aires,AR-B,annual,2012,naphtha combustion consumption by to the public,35610.9730592,TJ,N2O,0.6,kg/TJ,21366.58383552,kg +e64942c4-7c8d-3ed3-b441-5b5b19497885,SESCO,II.1.1,Capital Federal,AR-C,annual,2012,naphtha combustion consumption by to the public,7434.031262349999,TJ,CO2,73300.0,kg/TJ,544914491.530255,kg +4f66eea2-9191-3045-af9f-5cd92ea1f754,SESCO,II.1.1,Capital Federal,AR-C,annual,2012,naphtha combustion consumption by to the public,7434.031262349999,TJ,CH4,3.0,kg/TJ,22302.09378705,kg +41f3022b-3884-3a9e-a4ad-dbf2a2041028,SESCO,II.1.1,Capital Federal,AR-C,annual,2012,naphtha combustion consumption by to the public,7434.031262349999,TJ,N2O,0.6,kg/TJ,4460.41875741,kg +c820c39e-c9da-38ea-a1d4-18738dbaf934,SESCO,II.1.1,Catamarca,AR-K,annual,2012,naphtha combustion consumption by to the public,579.9865225,TJ,CO2,73300.0,kg/TJ,42513012.099249996,kg +a266ad9d-ef2a-3057-bcee-ec113c4c5c0a,SESCO,II.1.1,Catamarca,AR-K,annual,2012,naphtha combustion consumption by to the public,579.9865225,TJ,CH4,3.0,kg/TJ,1739.9595675,kg +de76c2e6-99b0-3271-86e1-1dbbbdb21ee9,SESCO,II.1.1,Catamarca,AR-K,annual,2012,naphtha combustion consumption by to the public,579.9865225,TJ,N2O,0.6,kg/TJ,347.99191349999995,kg +18826192-81c1-3a2c-b5ff-91e896b78c8e,SESCO,II.1.1,Chaco,AR-H,annual,2012,naphtha combustion consumption by to the public,1910.0335523499998,TJ,CO2,73300.0,kg/TJ,140005459.38725498,kg +c1156e88-4b67-34fa-bff4-70cf18bc7ccc,SESCO,II.1.1,Chaco,AR-H,annual,2012,naphtha combustion consumption by to the public,1910.0335523499998,TJ,CH4,3.0,kg/TJ,5730.100657049999,kg +4aead638-ee0d-3796-9cf7-66e7550932d9,SESCO,II.1.1,Chaco,AR-H,annual,2012,naphtha combustion consumption by to the public,1910.0335523499998,TJ,N2O,0.6,kg/TJ,1146.0201314099997,kg +9bce20e8-ca7a-34ec-8a65-fd7cb8135f0a,SESCO,II.1.1,Chubut,AR-U,annual,2012,naphtha combustion consumption by to the public,3497.6344826499994,TJ,CO2,73300.0,kg/TJ,256376607.57824495,kg +d5bc35b1-65c2-3ddd-b39b-80329f66866e,SESCO,II.1.1,Chubut,AR-U,annual,2012,naphtha combustion consumption by to the public,3497.6344826499994,TJ,CH4,3.0,kg/TJ,10492.903447949999,kg +5d924c7e-5b42-3f44-8989-1f071e461209,SESCO,II.1.1,Chubut,AR-U,annual,2012,naphtha combustion consumption by to the public,3497.6344826499994,TJ,N2O,0.6,kg/TJ,2098.5806895899996,kg +9088c86e-8963-3362-8cf4-51b700d36ea0,SESCO,II.1.1,Corrientes,AR-W,annual,2012,naphtha combustion consumption by to the public,2151.9660393,TJ,CO2,73300.0,kg/TJ,157739110.68069,kg +45f6f72e-700c-345d-8ce4-9bc92ef4b07b,SESCO,II.1.1,Corrientes,AR-W,annual,2012,naphtha combustion consumption by to the public,2151.9660393,TJ,CH4,3.0,kg/TJ,6455.8981179,kg +7a2438a6-b02a-3ca0-baa2-6b7372878935,SESCO,II.1.1,Corrientes,AR-W,annual,2012,naphtha combustion consumption by to the public,2151.9660393,TJ,N2O,0.6,kg/TJ,1291.17962358,kg +4bc9c23a-50c2-31ee-a7c3-5461de594626,SESCO,II.1.1,Córdoba,AR-X,annual,2012,naphtha combustion consumption by to the public,8874.4252982,TJ,CO2,73300.0,kg/TJ,650495374.35806,kg +3cc33014-f36f-38cc-8dc1-37ecc4515b23,SESCO,II.1.1,Córdoba,AR-X,annual,2012,naphtha combustion consumption by to the public,8874.4252982,TJ,CH4,3.0,kg/TJ,26623.2758946,kg +91e9305e-f109-367d-aa0e-3445267577d4,SESCO,II.1.1,Córdoba,AR-X,annual,2012,naphtha combustion consumption by to the public,8874.4252982,TJ,N2O,0.6,kg/TJ,5324.655178919999,kg +fac6adba-978a-38f1-aca7-2bbaa987a13d,SESCO,II.1.1,Entre Rios,AR-E,annual,2012,naphtha combustion consumption by to the public,2557.0924417499996,TJ,CO2,73300.0,kg/TJ,187434875.98027498,kg +ffb8a22e-d4e5-3e94-a7a5-2e87cdff0341,SESCO,II.1.1,Entre Rios,AR-E,annual,2012,naphtha combustion consumption by to the public,2557.0924417499996,TJ,CH4,3.0,kg/TJ,7671.277325249999,kg +0dc65a55-bb08-36c8-9f7c-e464ef184ff9,SESCO,II.1.1,Entre Rios,AR-E,annual,2012,naphtha combustion consumption by to the public,2557.0924417499996,TJ,N2O,0.6,kg/TJ,1534.2554650499997,kg +61ae8140-7477-3704-9312-979e8451cd81,SESCO,II.1.1,Formosa,AR-P,annual,2012,naphtha combustion consumption by to the public,775.4536135499999,TJ,CO2,73300.0,kg/TJ,56840749.87321499,kg +b759e67b-fc66-3c8d-8f6d-526d751c19ab,SESCO,II.1.1,Formosa,AR-P,annual,2012,naphtha combustion consumption by to the public,775.4536135499999,TJ,CH4,3.0,kg/TJ,2326.36084065,kg +73813934-7adf-315e-bcd3-b9b19786c44a,SESCO,II.1.1,Formosa,AR-P,annual,2012,naphtha combustion consumption by to the public,775.4536135499999,TJ,N2O,0.6,kg/TJ,465.2721681299999,kg +6166e336-1c49-3385-8ef7-12a0ebc29257,SESCO,II.1.1,Jujuy,AR-Y,annual,2012,naphtha combustion consumption by to the public,934.2934754999999,TJ,CO2,73300.0,kg/TJ,68483711.75414999,kg +b1ab8a15-d8a1-3d9e-904e-e3d66d4d1c75,SESCO,II.1.1,Jujuy,AR-Y,annual,2012,naphtha combustion consumption by to the public,934.2934754999999,TJ,CH4,3.0,kg/TJ,2802.8804265,kg +61860e2b-16d5-3e00-a41d-e1ed50748dc3,SESCO,II.1.1,Jujuy,AR-Y,annual,2012,naphtha combustion consumption by to the public,934.2934754999999,TJ,N2O,0.6,kg/TJ,560.5760852999999,kg +a6006c85-7322-3d7a-bfd5-5dad8a6b533c,SESCO,II.1.1,La Pampa,AR-L,annual,2012,naphtha combustion consumption by to the public,1535.4519988499997,TJ,CO2,73300.0,kg/TJ,112548631.51570497,kg +49fede42-576d-3c7a-a018-2185f6ec94f7,SESCO,II.1.1,La Pampa,AR-L,annual,2012,naphtha combustion consumption by to the public,1535.4519988499997,TJ,CH4,3.0,kg/TJ,4606.355996549999,kg +56898f5b-24d1-3fdf-9be9-fbe67583e298,SESCO,II.1.1,La Pampa,AR-L,annual,2012,naphtha combustion consumption by to the public,1535.4519988499997,TJ,N2O,0.6,kg/TJ,921.2711993099998,kg +1e017e12-909c-34ff-87c4-a35b75f6ce10,SESCO,II.1.1,La Rioja,AR-F,annual,2012,naphtha combustion consumption by to the public,794.46520615,TJ,CO2,73300.0,kg/TJ,58234299.610795,kg +db3ba4ae-e612-3475-84ce-5fcc0976847f,SESCO,II.1.1,La Rioja,AR-F,annual,2012,naphtha combustion consumption by to the public,794.46520615,TJ,CH4,3.0,kg/TJ,2383.39561845,kg +8aaa5437-9612-338d-91c1-3d81b05e09d5,SESCO,II.1.1,La Rioja,AR-F,annual,2012,naphtha combustion consumption by to the public,794.46520615,TJ,N2O,0.6,kg/TJ,476.67912369,kg +c574e5c2-3709-36a6-89ff-1d19f51abf6b,SESCO,II.1.1,Mendoza,AR-M,annual,2012,naphtha combustion consumption by to the public,4509.7358922,TJ,CO2,73300.0,kg/TJ,330563640.89826,kg +c1aaf9d5-de04-32ba-9623-ff696777f6ff,SESCO,II.1.1,Mendoza,AR-M,annual,2012,naphtha combustion consumption by to the public,4509.7358922,TJ,CH4,3.0,kg/TJ,13529.207676600001,kg +dd0a9d3e-e29d-3d98-8fab-bdd9717f1952,SESCO,II.1.1,Mendoza,AR-M,annual,2012,naphtha combustion consumption by to the public,4509.7358922,TJ,N2O,0.6,kg/TJ,2705.8415353200003,kg +40c96b9a-e27a-3a67-b88d-ff8d1fe50696,SESCO,II.1.1,Misiones,AR-N,annual,2012,naphtha combustion consumption by to the public,2672.8903239499996,TJ,CO2,73300.0,kg/TJ,195922860.74553496,kg +e85cbef6-113c-374d-bd2d-e8c72638d5a1,SESCO,II.1.1,Misiones,AR-N,annual,2012,naphtha combustion consumption by to the public,2672.8903239499996,TJ,CH4,3.0,kg/TJ,8018.670971849999,kg +67997c52-9968-3b95-9d4f-85d802355a9c,SESCO,II.1.1,Misiones,AR-N,annual,2012,naphtha combustion consumption by to the public,2672.8903239499996,TJ,N2O,0.6,kg/TJ,1603.7341943699996,kg +4265307d-36f8-3bc7-b90f-f3d2ad2cde67,SESCO,II.1.1,Neuquén,AR-Q,annual,2012,naphtha combustion consumption by to the public,2783.37027815,TJ,CO2,73300.0,kg/TJ,204021041.388395,kg +fcbc6f49-fe85-36f0-9ef6-3dcee1642299,SESCO,II.1.1,Neuquén,AR-Q,annual,2012,naphtha combustion consumption by to the public,2783.37027815,TJ,CH4,3.0,kg/TJ,8350.11083445,kg +8fb913b1-7f9c-3e94-967d-a6d11cc40820,SESCO,II.1.1,Neuquén,AR-Q,annual,2012,naphtha combustion consumption by to the public,2783.37027815,TJ,N2O,0.6,kg/TJ,1670.02216689,kg +79799942-7c6d-32c3-ac45-90a52a4156c5,SESCO,II.1.1,Rio Negro,AR-R,annual,2012,naphtha combustion consumption by to the public,2686.7834108499997,TJ,CO2,73300.0,kg/TJ,196941224.01530498,kg +7e90228c-89a6-3258-ba44-dffcb83a1091,SESCO,II.1.1,Rio Negro,AR-R,annual,2012,naphtha combustion consumption by to the public,2686.7834108499997,TJ,CH4,3.0,kg/TJ,8060.350232549999,kg +8e4a1ac2-e591-3a78-a187-add70082eff2,SESCO,II.1.1,Rio Negro,AR-R,annual,2012,naphtha combustion consumption by to the public,2686.7834108499997,TJ,N2O,0.6,kg/TJ,1612.0700465099997,kg +41fac4c3-cf11-3b40-b2a8-01c9a1eca9df,SESCO,II.1.1,Salta,AR-A,annual,2012,naphtha combustion consumption by to the public,2092.9370384999997,TJ,CO2,73300.0,kg/TJ,153412284.92204997,kg +f94a8e2a-63c9-3f2a-bd0a-d75fdf84d544,SESCO,II.1.1,Salta,AR-A,annual,2012,naphtha combustion consumption by to the public,2092.9370384999997,TJ,CH4,3.0,kg/TJ,6278.811115499999,kg +f12647c0-2ea2-3e3c-aef7-404ef8a18a3b,SESCO,II.1.1,Salta,AR-A,annual,2012,naphtha combustion consumption by to the public,2092.9370384999997,TJ,N2O,0.6,kg/TJ,1255.7622230999998,kg +46cac5f1-f619-33b2-93f0-64292e010aa8,SESCO,II.1.1,San Juan,AR-J,annual,2012,naphtha combustion consumption by to the public,1348.2609332499999,TJ,CO2,73300.0,kg/TJ,98827526.407225,kg +1b910c5a-51f1-3565-bb6e-4c420677d454,SESCO,II.1.1,San Juan,AR-J,annual,2012,naphtha combustion consumption by to the public,1348.2609332499999,TJ,CH4,3.0,kg/TJ,4044.78279975,kg +794661f2-12e0-395b-89ef-78340045976e,SESCO,II.1.1,San Juan,AR-J,annual,2012,naphtha combustion consumption by to the public,1348.2609332499999,TJ,N2O,0.6,kg/TJ,808.9565599499999,kg +f82628e9-90c6-399d-a9fe-d214641fbc0d,SESCO,II.1.1,San Luis,AR-D,annual,2012,naphtha combustion consumption by to the public,1115.0365534,TJ,CO2,73300.0,kg/TJ,81732179.36422,kg +b7a5713c-fb40-3ff4-b4c4-1407572678f3,SESCO,II.1.1,San Luis,AR-D,annual,2012,naphtha combustion consumption by to the public,1115.0365534,TJ,CH4,3.0,kg/TJ,3345.1096602,kg +ea6210a7-f0c6-3870-9e1b-51cafa285473,SESCO,II.1.1,San Luis,AR-D,annual,2012,naphtha combustion consumption by to the public,1115.0365534,TJ,N2O,0.6,kg/TJ,669.02193204,kg +a8403ddc-f163-3b3b-8134-358b54e2f7ea,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2012,naphtha combustion consumption by to the public,2493.27730575,TJ,CO2,73300.0,kg/TJ,182757226.511475,kg +ecd56a2d-919a-37ef-92d9-a50869e3cdfd,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2012,naphtha combustion consumption by to the public,2493.27730575,TJ,CH4,3.0,kg/TJ,7479.83191725,kg +d06e9484-4143-354e-b1a2-57c07fcd3d70,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2012,naphtha combustion consumption by to the public,2493.27730575,TJ,N2O,0.6,kg/TJ,1495.96638345,kg +3d0bf536-eece-32a9-b74b-936168feaad0,SESCO,II.1.1,Santa Fe,AR-S,annual,2012,naphtha combustion consumption by to the public,6459.1553488,TJ,CO2,73300.0,kg/TJ,473456087.06704,kg +8d4ce2a8-8160-30ee-b679-a5814fb24424,SESCO,II.1.1,Santa Fe,AR-S,annual,2012,naphtha combustion consumption by to the public,6459.1553488,TJ,CH4,3.0,kg/TJ,19377.4660464,kg +f5148bcc-70bf-3f41-a0c1-d6850ca52f28,SESCO,II.1.1,Santa Fe,AR-S,annual,2012,naphtha combustion consumption by to the public,6459.1553488,TJ,N2O,0.6,kg/TJ,3875.49320928,kg +840c6541-bca7-38e8-8809-6035937ff05b,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2012,naphtha combustion consumption by to the public,945.7934947999998,TJ,CO2,73300.0,kg/TJ,69326663.16883999,kg +7ba39b8f-40ee-35a5-9826-1716d5e7223f,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2012,naphtha combustion consumption by to the public,945.7934947999998,TJ,CH4,3.0,kg/TJ,2837.3804843999997,kg +e9e181ab-119f-3861-ac95-e3387771d395,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2012,naphtha combustion consumption by to the public,945.7934947999998,TJ,N2O,0.6,kg/TJ,567.4760968799999,kg +c41b5464-f9ca-35eb-ad72-8339989a2a38,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2012,naphtha combustion consumption by to the public,1831.3614549999998,TJ,CO2,73300.0,kg/TJ,134238794.6515,kg +0f706bd2-da61-3451-844b-e2e7b03b07e2,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2012,naphtha combustion consumption by to the public,1831.3614549999998,TJ,CH4,3.0,kg/TJ,5494.084364999999,kg +0fc3daec-0b7b-39e5-bdf3-ba76dd85f2cb,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2012,naphtha combustion consumption by to the public,1831.3614549999998,TJ,N2O,0.6,kg/TJ,1098.8168729999998,kg +13ef2805-64b9-3fb7-a3ca-9d1f8c98c735,SESCO,II.1.1,Tucuman,AR-T,annual,2012,naphtha combustion consumption by to the public,1777.4509599,TJ,CO2,73300.0,kg/TJ,130287155.36067,kg +511d189d-2790-39b0-9bd7-38d005840624,SESCO,II.1.1,Tucuman,AR-T,annual,2012,naphtha combustion consumption by to the public,1777.4509599,TJ,CH4,3.0,kg/TJ,5332.3528797,kg +f9849b3d-3b09-3df2-b3ac-51e73d035dde,SESCO,II.1.1,Tucuman,AR-T,annual,2012,naphtha combustion consumption by to the public,1777.4509599,TJ,N2O,0.6,kg/TJ,1066.47057594,kg +cec512e6-5e42-3038-9fdb-a6796565ff78,SESCO,II.1.1,Buenos Aires,AR-B,annual,2012,naphtha combustion consumption by to the public,13920.008910499999,TJ,CO2,73300.0,kg/TJ,1020336653.1396499,kg +304b868d-d465-3a00-9c6b-27501bb2f421,SESCO,II.1.1,Buenos Aires,AR-B,annual,2012,naphtha combustion consumption by to the public,13920.008910499999,TJ,CH4,3.0,kg/TJ,41760.026731499995,kg +6e31451a-e105-3ad3-a7cb-cf902b6283a6,SESCO,II.1.1,Buenos Aires,AR-B,annual,2012,naphtha combustion consumption by to the public,13920.008910499999,TJ,N2O,0.6,kg/TJ,8352.005346299999,kg +4a11ca94-4afd-3567-b214-8117e065b8fd,SESCO,II.1.1,Capital Federal,AR-C,annual,2012,naphtha combustion consumption by to the public,2957.4327089999997,TJ,CO2,73300.0,kg/TJ,216779817.56969997,kg +609b9dae-cc6c-3279-8cfa-996ce19c8617,SESCO,II.1.1,Capital Federal,AR-C,annual,2012,naphtha combustion consumption by to the public,2957.4327089999997,TJ,CH4,3.0,kg/TJ,8872.298126999998,kg +1e5d6108-9be9-36a7-9635-ba04b401062f,SESCO,II.1.1,Capital Federal,AR-C,annual,2012,naphtha combustion consumption by to the public,2957.4327089999997,TJ,N2O,0.6,kg/TJ,1774.4596253999998,kg +710b0efb-ea85-3eb5-9859-523f768bcebd,SESCO,II.1.1,Catamarca,AR-K,annual,2012,naphtha combustion consumption by to the public,209.99168189999997,TJ,CO2,73300.0,kg/TJ,15392390.283269998,kg +f839b8f9-e6cc-330a-9101-a11a43cd6cde,SESCO,II.1.1,Catamarca,AR-K,annual,2012,naphtha combustion consumption by to the public,209.99168189999997,TJ,CH4,3.0,kg/TJ,629.9750456999999,kg +a0c7b6d4-4e24-3440-b664-7821d9393b98,SESCO,II.1.1,Catamarca,AR-K,annual,2012,naphtha combustion consumption by to the public,209.99168189999997,TJ,N2O,0.6,kg/TJ,125.99500913999998,kg +8de14cbb-b049-3bb4-9b2f-3c068e60ab98,SESCO,II.1.1,Chaco,AR-H,annual,2012,naphtha combustion consumption by to the public,780.1732746499999,TJ,CO2,73300.0,kg/TJ,57186701.031844996,kg +05c10a50-8c53-3066-9bff-e26dde01d961,SESCO,II.1.1,Chaco,AR-H,annual,2012,naphtha combustion consumption by to the public,780.1732746499999,TJ,CH4,3.0,kg/TJ,2340.5198239499996,kg +1e63784a-b458-3643-b78d-6709ee625507,SESCO,II.1.1,Chaco,AR-H,annual,2012,naphtha combustion consumption by to the public,780.1732746499999,TJ,N2O,0.6,kg/TJ,468.10396478999996,kg +2a282e9e-d222-3020-9669-5a0205e6e702,SESCO,II.1.1,Chubut,AR-U,annual,2012,naphtha combustion consumption by to the public,1009.1433120999999,TJ,CO2,73300.0,kg/TJ,73970204.77692999,kg +05a30a85-ac59-34ef-8cd2-f5f5c42021b1,SESCO,II.1.1,Chubut,AR-U,annual,2012,naphtha combustion consumption by to the public,1009.1433120999999,TJ,CH4,3.0,kg/TJ,3027.4299362999996,kg +240b1d59-a420-3155-a7b8-a3616b6e7c7c,SESCO,II.1.1,Chubut,AR-U,annual,2012,naphtha combustion consumption by to the public,1009.1433120999999,TJ,N2O,0.6,kg/TJ,605.4859872599999,kg +bf452765-4702-3442-8283-41692551105b,SESCO,II.1.1,Corrientes,AR-W,annual,2012,naphtha combustion consumption by to the public,695.81764175,TJ,CO2,73300.0,kg/TJ,51003433.140275,kg +737a8a0b-c6a8-38f8-9516-997a0372ae0b,SESCO,II.1.1,Corrientes,AR-W,annual,2012,naphtha combustion consumption by to the public,695.81764175,TJ,CH4,3.0,kg/TJ,2087.45292525,kg +3b720467-1ab1-30f9-b528-ace58418c80d,SESCO,II.1.1,Corrientes,AR-W,annual,2012,naphtha combustion consumption by to the public,695.81764175,TJ,N2O,0.6,kg/TJ,417.49058505,kg +daf372d2-6430-390e-acac-60e0377427f8,SESCO,II.1.1,Córdoba,AR-X,annual,2012,naphtha combustion consumption by to the public,3547.9886133999994,TJ,CO2,73300.0,kg/TJ,260067565.36221996,kg +9ba067fc-9377-3189-8b9c-2346f95fd948,SESCO,II.1.1,Córdoba,AR-X,annual,2012,naphtha combustion consumption by to the public,3547.9886133999994,TJ,CH4,3.0,kg/TJ,10643.965840199999,kg +fcdf1e59-60d4-3547-ae1c-74f6a88e28a7,SESCO,II.1.1,Córdoba,AR-X,annual,2012,naphtha combustion consumption by to the public,3547.9886133999994,TJ,N2O,0.6,kg/TJ,2128.7931680399997,kg +32c4d68e-0a33-3f7c-8fad-005d95d5e687,SESCO,II.1.1,Entre Rios,AR-E,annual,2012,naphtha combustion consumption by to the public,1143.2880458999998,TJ,CO2,73300.0,kg/TJ,83803013.76446998,kg +2531e910-ae69-3e1c-b5bf-fee200ef63cc,SESCO,II.1.1,Entre Rios,AR-E,annual,2012,naphtha combustion consumption by to the public,1143.2880458999998,TJ,CH4,3.0,kg/TJ,3429.8641376999994,kg +1d8666d5-77ad-3268-93a1-6f0a9fbb723e,SESCO,II.1.1,Entre Rios,AR-E,annual,2012,naphtha combustion consumption by to the public,1143.2880458999998,TJ,N2O,0.6,kg/TJ,685.9728275399999,kg +e55682d3-e8e6-3439-8d5b-8fec2982fb5c,SESCO,II.1.1,Formosa,AR-P,annual,2012,naphtha combustion consumption by to the public,238.07698914999997,TJ,CO2,73300.0,kg/TJ,17451043.304695,kg +51d02708-bd4e-33ee-8235-5f50d58fd367,SESCO,II.1.1,Formosa,AR-P,annual,2012,naphtha combustion consumption by to the public,238.07698914999997,TJ,CH4,3.0,kg/TJ,714.23096745,kg +b1c4389e-4d6a-3895-86c1-cab312a969f2,SESCO,II.1.1,Formosa,AR-P,annual,2012,naphtha combustion consumption by to the public,238.07698914999997,TJ,N2O,0.6,kg/TJ,142.84619349,kg +5de859fc-d4ab-3911-a157-2df5bb7f3672,SESCO,II.1.1,Jujuy,AR-Y,annual,2012,naphtha combustion consumption by to the public,303.02218485,TJ,CO2,73300.0,kg/TJ,22211526.149504997,kg +59f43670-5bb1-3a15-92f9-5ef76126136e,SESCO,II.1.1,Jujuy,AR-Y,annual,2012,naphtha combustion consumption by to the public,303.02218485,TJ,CH4,3.0,kg/TJ,909.0665545499999,kg +d93a5c72-c459-32b8-96cc-c785fc927c18,SESCO,II.1.1,Jujuy,AR-Y,annual,2012,naphtha combustion consumption by to the public,303.02218485,TJ,N2O,0.6,kg/TJ,181.81331090999998,kg +85be9818-7ddc-3a57-b40f-c6b67eff18e4,SESCO,II.1.1,La Pampa,AR-L,annual,2012,naphtha combustion consumption by to the public,579.68738905,TJ,CO2,73300.0,kg/TJ,42491085.617364995,kg +25be45da-745e-34a0-9a1b-5b924bae72c3,SESCO,II.1.1,La Pampa,AR-L,annual,2012,naphtha combustion consumption by to the public,579.68738905,TJ,CH4,3.0,kg/TJ,1739.0621671499998,kg +73c20acf-2e8e-305a-87ae-7fb8379c0934,SESCO,II.1.1,La Pampa,AR-L,annual,2012,naphtha combustion consumption by to the public,579.68738905,TJ,N2O,0.6,kg/TJ,347.81243343,kg +1c58b7ff-16b9-3fb1-9ab6-089f6454bb47,SESCO,II.1.1,La Rioja,AR-F,annual,2012,naphtha combustion consumption by to the public,310.13491354999996,TJ,CO2,73300.0,kg/TJ,22732889.163214996,kg +ad68f062-f2a2-3072-9c1f-a4069ad19b69,SESCO,II.1.1,La Rioja,AR-F,annual,2012,naphtha combustion consumption by to the public,310.13491354999996,TJ,CH4,3.0,kg/TJ,930.4047406499999,kg +ad8c7349-babb-377b-b2a5-b4e789e5d52c,SESCO,II.1.1,La Rioja,AR-F,annual,2012,naphtha combustion consumption by to the public,310.13491354999996,TJ,N2O,0.6,kg/TJ,186.08094812999997,kg +b32f94b1-8fa0-3712-905d-0d4bf90ffe08,SESCO,II.1.1,Mendoza,AR-M,annual,2012,naphtha combustion consumption by to the public,1739.4277746999999,TJ,CO2,73300.0,kg/TJ,127500055.88551,kg +8f20abfe-2000-3a87-b48a-c7b1eee481dd,SESCO,II.1.1,Mendoza,AR-M,annual,2012,naphtha combustion consumption by to the public,1739.4277746999999,TJ,CH4,3.0,kg/TJ,5218.2833241,kg +05d60818-2883-3a96-b2c2-aeea870acf51,SESCO,II.1.1,Mendoza,AR-M,annual,2012,naphtha combustion consumption by to the public,1739.4277746999999,TJ,N2O,0.6,kg/TJ,1043.6566648199998,kg +260bd29a-fafa-32b0-89e8-c317fcf0a2cc,SESCO,II.1.1,Misiones,AR-N,annual,2012,naphtha combustion consumption by to the public,883.4407889999999,TJ,CO2,73300.0,kg/TJ,64756209.833699994,kg +b0bedea3-6236-3650-b9fb-eb250d269c6a,SESCO,II.1.1,Misiones,AR-N,annual,2012,naphtha combustion consumption by to the public,883.4407889999999,TJ,CH4,3.0,kg/TJ,2650.3223669999998,kg +5be4ffae-6cc4-3677-8e38-df0f1616d66d,SESCO,II.1.1,Misiones,AR-N,annual,2012,naphtha combustion consumption by to the public,883.4407889999999,TJ,N2O,0.6,kg/TJ,530.0644733999999,kg +8184e2de-1d35-3596-9f9f-beae14ab43ac,SESCO,II.1.1,Neuquén,AR-Q,annual,2012,naphtha combustion consumption by to the public,904.1474711499999,TJ,CO2,73300.0,kg/TJ,66274009.63529499,kg +d0bfcd57-45c2-3045-bd34-ba72524acb44,SESCO,II.1.1,Neuquén,AR-Q,annual,2012,naphtha combustion consumption by to the public,904.1474711499999,TJ,CH4,3.0,kg/TJ,2712.4424134499995,kg +698b3b7b-88c7-3372-9721-da3e268c5977,SESCO,II.1.1,Neuquén,AR-Q,annual,2012,naphtha combustion consumption by to the public,904.1474711499999,TJ,N2O,0.6,kg/TJ,542.48848269,kg +a942685d-44b6-3336-bc30-19cb8a791fd3,SESCO,II.1.1,Rio Negro,AR-R,annual,2012,naphtha combustion consumption by to the public,864.8612780499999,TJ,CO2,73300.0,kg/TJ,63394331.68106499,kg +46f4e1f0-6bd0-3461-8f85-d0a39af620f8,SESCO,II.1.1,Rio Negro,AR-R,annual,2012,naphtha combustion consumption by to the public,864.8612780499999,TJ,CH4,3.0,kg/TJ,2594.58383415,kg +675a6a82-d49e-3ac2-ba54-8d14be3605bb,SESCO,II.1.1,Rio Negro,AR-R,annual,2012,naphtha combustion consumption by to the public,864.8612780499999,TJ,N2O,0.6,kg/TJ,518.9167668299999,kg +62978633-eb19-3385-98a0-687674f0510d,SESCO,II.1.1,Salta,AR-A,annual,2012,naphtha combustion consumption by to the public,766.3798988999998,TJ,CO2,73300.0,kg/TJ,56175646.58936999,kg +0917caf4-b2c1-303d-8e94-97a2d82f6b1e,SESCO,II.1.1,Salta,AR-A,annual,2012,naphtha combustion consumption by to the public,766.3798988999998,TJ,CH4,3.0,kg/TJ,2299.1396966999996,kg +aca71d1f-71a6-3a2c-bba0-14e9f0727524,SESCO,II.1.1,Salta,AR-A,annual,2012,naphtha combustion consumption by to the public,766.3798988999998,TJ,N2O,0.6,kg/TJ,459.8279393399999,kg +c87978cd-e946-384e-a48a-9c7fb9ffe26e,SESCO,II.1.1,San Juan,AR-J,annual,2012,naphtha combustion consumption by to the public,555.1584461499999,TJ,CO2,73300.0,kg/TJ,40693114.102795,kg +2c16d117-a66a-32a5-97a7-b574d95d6509,SESCO,II.1.1,San Juan,AR-J,annual,2012,naphtha combustion consumption by to the public,555.1584461499999,TJ,CH4,3.0,kg/TJ,1665.4753384499998,kg +d33334a4-6e54-3985-ad6c-97e497e379fe,SESCO,II.1.1,San Juan,AR-J,annual,2012,naphtha combustion consumption by to the public,555.1584461499999,TJ,N2O,0.6,kg/TJ,333.09506768999995,kg +17dc1f37-ff3a-361a-b00c-3baf027ced9c,SESCO,II.1.1,San Luis,AR-D,annual,2012,naphtha combustion consumption by to the public,522.9517447,TJ,CO2,73300.0,kg/TJ,38332362.88651,kg +0f39f51f-d665-3082-9272-2dc7df7aa9ef,SESCO,II.1.1,San Luis,AR-D,annual,2012,naphtha combustion consumption by to the public,522.9517447,TJ,CH4,3.0,kg/TJ,1568.8552341,kg +ec9a6950-e41c-37c8-83d4-a53060e92996,SESCO,II.1.1,San Luis,AR-D,annual,2012,naphtha combustion consumption by to the public,522.9517447,TJ,N2O,0.6,kg/TJ,313.77104682,kg +7cacd442-dc1a-3944-9858-5da1b51a2ae0,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2012,naphtha combustion consumption by to the public,533.2552301999999,TJ,CO2,73300.0,kg/TJ,39087608.37365999,kg +a0c7b4ee-94ff-397d-9002-1b92f06be037,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2012,naphtha combustion consumption by to the public,533.2552301999999,TJ,CH4,3.0,kg/TJ,1599.7656905999997,kg +d5e56413-f684-33ab-8f71-bf1017ab5ed0,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2012,naphtha combustion consumption by to the public,533.2552301999999,TJ,N2O,0.6,kg/TJ,319.95313811999995,kg +4a39b670-da22-3e68-805a-5c459576c50d,SESCO,II.1.1,Santa Fe,AR-S,annual,2012,naphtha combustion consumption by to the public,2942.5425105999993,TJ,CO2,73300.0,kg/TJ,215688366.02697995,kg +f1e40f8c-57cc-3509-9e6a-4d10dae8cb23,SESCO,II.1.1,Santa Fe,AR-S,annual,2012,naphtha combustion consumption by to the public,2942.5425105999993,TJ,CH4,3.0,kg/TJ,8827.627531799997,kg +25aa9e5c-4cff-32d8-8c1a-c46ca0472f05,SESCO,II.1.1,Santa Fe,AR-S,annual,2012,naphtha combustion consumption by to the public,2942.5425105999993,TJ,N2O,0.6,kg/TJ,1765.5255063599996,kg +4ce6b53b-6a9f-33e5-a54d-6178dbcf93a0,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2012,naphtha combustion consumption by to the public,545.98502035,TJ,CO2,73300.0,kg/TJ,40020701.991655,kg +e536e24d-f2de-3aa5-a3d8-fb1cbf79832b,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2012,naphtha combustion consumption by to the public,545.98502035,TJ,CH4,3.0,kg/TJ,1637.95506105,kg +7477b70b-5fda-3a51-8f3e-1dcf9eae6178,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2012,naphtha combustion consumption by to the public,545.98502035,TJ,N2O,0.6,kg/TJ,327.59101221,kg +96e6dc5f-5cfd-39da-82c3-455cd5f6c916,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2012,naphtha combustion consumption by to the public,42.609898099999995,TJ,CO2,73300.0,kg/TJ,3123305.5307299998,kg +91861c96-d9d3-387e-bc6f-e86c3ecc12bb,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2012,naphtha combustion consumption by to the public,42.609898099999995,TJ,CH4,3.0,kg/TJ,127.82969429999999,kg +5ed15a04-6b7d-3cfb-93c5-4e82bf207017,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2012,naphtha combustion consumption by to the public,42.609898099999995,TJ,N2O,0.6,kg/TJ,25.565938859999996,kg +c48efe98-e656-3948-9a3f-9d807c9e35d3,SESCO,II.1.1,Tucuman,AR-T,annual,2012,naphtha combustion consumption by to the public,749.9607962,TJ,CO2,73300.0,kg/TJ,54972126.36146,kg +a9581e46-61aa-3e3d-8dda-acf5e0361f42,SESCO,II.1.1,Tucuman,AR-T,annual,2012,naphtha combustion consumption by to the public,749.9607962,TJ,CH4,3.0,kg/TJ,2249.8823886,kg +1b811242-a8e6-3475-8540-6119891a636f,SESCO,II.1.1,Tucuman,AR-T,annual,2012,naphtha combustion consumption by to the public,749.9607962,TJ,N2O,0.6,kg/TJ,449.97647772,kg +b131acfc-1a5e-3ab7-9573-f6f51bc31efe,SESCO,II.1.1,Buenos Aires,AR-B,annual,2012,naphtha combustion consumption by freight transport,10.53614485,TJ,CO2,73300.0,kg/TJ,772299.4175049999,kg +731bcf58-54f9-30e0-bf18-6514775a4484,SESCO,II.1.1,Buenos Aires,AR-B,annual,2012,naphtha combustion consumption by freight transport,10.53614485,TJ,CH4,3.0,kg/TJ,31.60843455,kg +d38fc8e4-a9d1-330e-949e-f42deb6cb637,SESCO,II.1.1,Buenos Aires,AR-B,annual,2012,naphtha combustion consumption by freight transport,10.53614485,TJ,N2O,0.6,kg/TJ,6.3216869099999995,kg +a356c05c-a89d-389b-abad-cfa549ed6060,SESCO,II.1.1,Capital Federal,AR-C,annual,2013,naphtha combustion consumption by to the public,35.4622191,TJ,CO2,73300.0,kg/TJ,2599380.66003,kg +cc123979-1c77-3eb4-8e73-7df856262c35,SESCO,II.1.1,Capital Federal,AR-C,annual,2013,naphtha combustion consumption by to the public,35.4622191,TJ,CH4,3.0,kg/TJ,106.3866573,kg +684cff33-4d27-3e3a-bc60-3830e24f2ff4,SESCO,II.1.1,Capital Federal,AR-C,annual,2013,naphtha combustion consumption by to the public,35.4622191,TJ,N2O,0.6,kg/TJ,21.27733146,kg +a713ea85-bb1e-3b61-af39-91ff079e243c,SESCO,II.1.1,Capital Federal,AR-C,annual,2013,naphtha combustion consumption by to the public,5.797637999999999,TJ,CO2,73300.0,kg/TJ,424966.86539999995,kg +65dd29f1-f8d0-3b98-8c22-b71f25e392cf,SESCO,II.1.1,Capital Federal,AR-C,annual,2013,naphtha combustion consumption by to the public,5.797637999999999,TJ,CH4,3.0,kg/TJ,17.392913999999998,kg +fd95fcaa-f9ba-3b2a-85bd-b38a970951b2,SESCO,II.1.1,Capital Federal,AR-C,annual,2013,naphtha combustion consumption by to the public,5.797637999999999,TJ,N2O,0.6,kg/TJ,3.4785827999999994,kg +5d54a3c6-89c8-3146-90d7-4ccc03a60bae,SESCO,II.5.1,Buenos Aires,AR-B,annual,2013,naphtha combustion consumption by agriculture machines,4.844892821999999,TJ,CO2,73300.0,kg/TJ,355130.64385259995,kg +461cb88c-504d-3af2-8552-5f1cf4f3be9b,SESCO,II.5.1,Buenos Aires,AR-B,annual,2013,naphtha combustion consumption by agriculture machines,4.844892821999999,TJ,CH4,3.0,kg/TJ,14.534678465999999,kg +61bbc6b0-2d56-35bc-b215-279c301ff366,SESCO,II.5.1,Buenos Aires,AR-B,annual,2013,naphtha combustion consumption by agriculture machines,4.844892821999999,TJ,N2O,0.6,kg/TJ,2.9069356931999994,kg +8504ccec-b341-37a4-8f1e-0a59b8fe89f4,SESCO,II.5.1,Córdoba,AR-X,annual,2013,naphtha combustion consumption by agriculture machines,5.385361519999999,TJ,CO2,73300.0,kg/TJ,394746.9994159999,kg +c3470097-1708-3fb0-95c9-f38acf11f49c,SESCO,II.5.1,Córdoba,AR-X,annual,2013,naphtha combustion consumption by agriculture machines,5.385361519999999,TJ,CH4,3.0,kg/TJ,16.156084559999996,kg +59bc4c72-b6d9-3f72-a304-f086e529e841,SESCO,II.5.1,Córdoba,AR-X,annual,2013,naphtha combustion consumption by agriculture machines,5.385361519999999,TJ,N2O,0.6,kg/TJ,3.2312169119999994,kg +61604b07-672f-3313-9dfc-3e117e426511,SESCO,II.5.1,Santa Fe,AR-S,annual,2013,naphtha combustion consumption by agriculture machines,16.51038466,TJ,CO2,73300.0,kg/TJ,1210211.195578,kg +13b922ca-2eb5-31f0-ba09-988829725ddf,SESCO,II.5.1,Santa Fe,AR-S,annual,2013,naphtha combustion consumption by agriculture machines,16.51038466,TJ,CH4,3.0,kg/TJ,49.53115398,kg +db564177-ac04-3f99-86a9-9f0de3ee3c85,SESCO,II.5.1,Santa Fe,AR-S,annual,2013,naphtha combustion consumption by agriculture machines,16.51038466,TJ,N2O,0.6,kg/TJ,9.906230796,kg +cb76ad15-66cc-3acb-aa2e-4aceeb436c51,SESCO,II.5.1,Buenos Aires,AR-B,annual,2013,naphtha combustion consumption by agriculture machines,0.2254637,TJ,CO2,73300.0,kg/TJ,16526.48921,kg +f1c8e074-71b3-3eb0-9a15-7cdadbb39864,SESCO,II.5.1,Buenos Aires,AR-B,annual,2013,naphtha combustion consumption by agriculture machines,0.2254637,TJ,CH4,3.0,kg/TJ,0.6763911,kg +c888f8be-a527-3182-8972-5e359df71d05,SESCO,II.5.1,Buenos Aires,AR-B,annual,2013,naphtha combustion consumption by agriculture machines,0.2254637,TJ,N2O,0.6,kg/TJ,0.13527821999999998,kg +4499752c-e884-3182-9f47-2ef8022e4b96,SESCO,II.5.1,Capital Federal,AR-C,annual,2013,naphtha combustion consumption by agriculture machines,0.027377734999999997,TJ,CO2,73300.0,kg/TJ,2006.7879754999997,kg +36a539f5-8df8-3e14-9a66-449a415f256b,SESCO,II.5.1,Capital Federal,AR-C,annual,2013,naphtha combustion consumption by agriculture machines,0.027377734999999997,TJ,CH4,3.0,kg/TJ,0.08213320499999999,kg +3a22a5af-5d35-391a-b57c-ec55312ca8c4,SESCO,II.5.1,Capital Federal,AR-C,annual,2013,naphtha combustion consumption by agriculture machines,0.027377734999999997,TJ,N2O,0.6,kg/TJ,0.016426641,kg +6a45ca9a-3acf-35a0-b92d-06a7e089c9ce,SESCO,II.5.1,Córdoba,AR-X,annual,2013,naphtha combustion consumption by agriculture machines,2.7893080599999998,TJ,CO2,73300.0,kg/TJ,204456.280798,kg +1575e8c4-1c76-3bfe-baf0-3b52eda07e7f,SESCO,II.5.1,Córdoba,AR-X,annual,2013,naphtha combustion consumption by agriculture machines,2.7893080599999998,TJ,CH4,3.0,kg/TJ,8.36792418,kg +60a50714-17b1-3b24-a78f-ec75313be26c,SESCO,II.5.1,Córdoba,AR-X,annual,2013,naphtha combustion consumption by agriculture machines,2.7893080599999998,TJ,N2O,0.6,kg/TJ,1.6735848359999999,kg +3e3e1529-e873-3732-95b9-987d3cb886ad,SESCO,II.5.1,Santa Fe,AR-S,annual,2013,naphtha combustion consumption by agriculture machines,1.2271667099999999,TJ,CO2,73300.0,kg/TJ,89951.31984299999,kg +38390408-34a6-3ea9-b037-bade7cd9fc40,SESCO,II.5.1,Santa Fe,AR-S,annual,2013,naphtha combustion consumption by agriculture machines,1.2271667099999999,TJ,CH4,3.0,kg/TJ,3.68150013,kg +a0a5e46c-45ed-3a24-ae7c-afcd48cbfa2a,SESCO,II.5.1,Santa Fe,AR-S,annual,2013,naphtha combustion consumption by agriculture machines,1.2271667099999999,TJ,N2O,0.6,kg/TJ,0.7363000259999999,kg +2d9b57e8-c481-3044-b387-b1046e034269,SESCO,II.1.1,Buenos Aires,AR-B,annual,2013,naphtha combustion consumption by to the public,1.9647550999999999,TJ,CO2,73300.0,kg/TJ,144016.54882999999,kg +78398fc5-6e40-33af-aa7f-50383362a4f9,SESCO,II.1.1,Buenos Aires,AR-B,annual,2013,naphtha combustion consumption by to the public,1.9647550999999999,TJ,CH4,3.0,kg/TJ,5.8942653,kg +90134449-a38a-3ee2-badd-d3f6444ee7f7,SESCO,II.1.1,Buenos Aires,AR-B,annual,2013,naphtha combustion consumption by to the public,1.9647550999999999,TJ,N2O,0.6,kg/TJ,1.1788530599999998,kg +fb24f6d9-5f3c-3ec5-b328-161e16311393,SESCO,II.1.1,Entre Rios,AR-E,annual,2013,naphtha combustion consumption by to the public,0.16104549999999998,TJ,CO2,73300.0,kg/TJ,11804.635149999998,kg +b1d709d5-cd94-3f2d-ba66-3e69bd1b2736,SESCO,II.1.1,Entre Rios,AR-E,annual,2013,naphtha combustion consumption by to the public,0.16104549999999998,TJ,CH4,3.0,kg/TJ,0.48313649999999997,kg +1233fb06-dc8b-3e29-bf98-de53911049fc,SESCO,II.1.1,Entre Rios,AR-E,annual,2013,naphtha combustion consumption by to the public,0.16104549999999998,TJ,N2O,0.6,kg/TJ,0.09662729999999999,kg +57b41271-cfbc-3b12-8b6d-bee95d426f1f,SESCO,II.1.1,Santa Fe,AR-S,annual,2013,naphtha combustion consumption by to the public,0.2254637,TJ,CO2,73300.0,kg/TJ,16526.48921,kg +cda1089c-f2d9-3771-bffc-325af7733b5d,SESCO,II.1.1,Santa Fe,AR-S,annual,2013,naphtha combustion consumption by to the public,0.2254637,TJ,CH4,3.0,kg/TJ,0.6763911,kg +63f1ac01-a987-3cfa-a6de-d0fdc35697c2,SESCO,II.1.1,Santa Fe,AR-S,annual,2013,naphtha combustion consumption by to the public,0.2254637,TJ,N2O,0.6,kg/TJ,0.13527821999999998,kg +039abd9c-d3ff-349a-904f-164c735348a5,SESCO,II.1.1,Buenos Aires,AR-B,annual,2013,naphtha combustion consumption by to the public,8433.088986937999,TJ,CO2,73300.0,kg/TJ,618145422.7425554,kg +da74f9c7-bbff-371c-8716-a90bc5fdb3dd,SESCO,II.1.1,Buenos Aires,AR-B,annual,2013,naphtha combustion consumption by to the public,8433.088986937999,TJ,CH4,3.0,kg/TJ,25299.266960814,kg +b6a9e30a-4929-3376-ae27-48e186fe4d62,SESCO,II.1.1,Buenos Aires,AR-B,annual,2013,naphtha combustion consumption by to the public,8433.088986937999,TJ,N2O,0.6,kg/TJ,5059.8533921627995,kg +bf79fc8b-d1f9-30bd-9753-f7d011e4f754,SESCO,II.1.1,Capital Federal,AR-C,annual,2013,naphtha combustion consumption by to the public,2887.0813597779998,TJ,CO2,73300.0,kg/TJ,211623063.6717274,kg +7f6ae6cf-3e52-32b4-b741-7016a4309f10,SESCO,II.1.1,Capital Federal,AR-C,annual,2013,naphtha combustion consumption by to the public,2887.0813597779998,TJ,CH4,3.0,kg/TJ,8661.244079334,kg +bf6d98ae-01b9-33d0-ad53-96803bc438a3,SESCO,II.1.1,Capital Federal,AR-C,annual,2013,naphtha combustion consumption by to the public,2887.0813597779998,TJ,N2O,0.6,kg/TJ,1732.2488158667998,kg +3b341f35-cfd4-3bdc-b656-8dd8c9d7a573,SESCO,II.1.1,Catamarca,AR-K,annual,2013,naphtha combustion consumption by to the public,393.898611722,TJ,CO2,73300.0,kg/TJ,28872768.2392226,kg +7cf09887-6492-3c75-ac11-c9bc885d9be7,SESCO,II.1.1,Catamarca,AR-K,annual,2013,naphtha combustion consumption by to the public,393.898611722,TJ,CH4,3.0,kg/TJ,1181.695835166,kg +e5f57424-b53f-3454-91a2-9ae12767d482,SESCO,II.1.1,Catamarca,AR-K,annual,2013,naphtha combustion consumption by to the public,393.898611722,TJ,N2O,0.6,kg/TJ,236.3391670332,kg +d8a7577f-7dfd-3f2a-a520-93c37538b922,SESCO,II.1.1,Chaco,AR-H,annual,2013,naphtha combustion consumption by to the public,457.81660439899997,TJ,CO2,73300.0,kg/TJ,33557957.1024467,kg +1862c2dd-3c88-3308-b746-e0b5a9e73caa,SESCO,II.1.1,Chaco,AR-H,annual,2013,naphtha combustion consumption by to the public,457.81660439899997,TJ,CH4,3.0,kg/TJ,1373.449813197,kg +7910970b-6033-345e-90f0-7fcc07fda7f0,SESCO,II.1.1,Chaco,AR-H,annual,2013,naphtha combustion consumption by to the public,457.81660439899997,TJ,N2O,0.6,kg/TJ,274.6899626394,kg +f6b12401-735b-3f91-ac18-af6fa64ef4ff,SESCO,II.1.1,Chubut,AR-U,annual,2013,naphtha combustion consumption by to the public,331.90382440599996,TJ,CO2,73300.0,kg/TJ,24328550.328959797,kg +0cffd71d-16aa-346b-a6ae-bd101f398ab4,SESCO,II.1.1,Chubut,AR-U,annual,2013,naphtha combustion consumption by to the public,331.90382440599996,TJ,CH4,3.0,kg/TJ,995.7114732179998,kg +b82d9daa-9d14-3ff2-854f-75f2d1b651e2,SESCO,II.1.1,Chubut,AR-U,annual,2013,naphtha combustion consumption by to the public,331.90382440599996,TJ,N2O,0.6,kg/TJ,199.14229464359997,kg +ca96be4d-9c71-3748-a195-a685e21a3f01,SESCO,II.1.1,Corrientes,AR-W,annual,2013,naphtha combustion consumption by to the public,276.767320753,TJ,CO2,73300.0,kg/TJ,20287044.611194897,kg +f26efcf3-1882-3bf8-980a-bbdcbecdf278,SESCO,II.1.1,Corrientes,AR-W,annual,2013,naphtha combustion consumption by to the public,276.767320753,TJ,CH4,3.0,kg/TJ,830.301962259,kg +774f8678-9928-36b3-92d3-17b08ba1aa61,SESCO,II.1.1,Corrientes,AR-W,annual,2013,naphtha combustion consumption by to the public,276.767320753,TJ,N2O,0.6,kg/TJ,166.06039245179997,kg +956bb401-c2de-3f26-8716-47263f917b7e,SESCO,II.1.1,Córdoba,AR-X,annual,2013,naphtha combustion consumption by to the public,2904.4752400509997,TJ,CO2,73300.0,kg/TJ,212898035.09573826,kg +f5e210ba-1960-32c8-95cd-91b0296c5bd1,SESCO,II.1.1,Córdoba,AR-X,annual,2013,naphtha combustion consumption by to the public,2904.4752400509997,TJ,CH4,3.0,kg/TJ,8713.425720152998,kg +d757854e-cded-3d84-ada3-1744817a8266,SESCO,II.1.1,Córdoba,AR-X,annual,2013,naphtha combustion consumption by to the public,2904.4752400509997,TJ,N2O,0.6,kg/TJ,1742.6851440305998,kg +bebe9d48-c40d-31d6-8503-92d9fbe6012d,SESCO,II.1.1,Entre Rios,AR-E,annual,2013,naphtha combustion consumption by to the public,941.0316946029999,TJ,CO2,73300.0,kg/TJ,68977623.21439989,kg +eb8eef7b-3043-3a2f-8e8f-1fd56281bde6,SESCO,II.1.1,Entre Rios,AR-E,annual,2013,naphtha combustion consumption by to the public,941.0316946029999,TJ,CH4,3.0,kg/TJ,2823.095083809,kg +e69f4ca9-4ec0-367d-8d51-c6b93ac2d36d,SESCO,II.1.1,Entre Rios,AR-E,annual,2013,naphtha combustion consumption by to the public,941.0316946029999,TJ,N2O,0.6,kg/TJ,564.6190167617999,kg +d8247f57-354c-3b30-96cf-c50a369a9f3f,SESCO,II.1.1,Formosa,AR-P,annual,2013,naphtha combustion consumption by to the public,461.94484474599994,TJ,CO2,73300.0,kg/TJ,33860557.119881794,kg +75a213e1-5dbe-3dba-bbed-2fa0072a0b2a,SESCO,II.1.1,Formosa,AR-P,annual,2013,naphtha combustion consumption by to the public,461.94484474599994,TJ,CH4,3.0,kg/TJ,1385.8345342379998,kg +6d06b8e8-c336-3382-8458-2b38035bec61,SESCO,II.1.1,Formosa,AR-P,annual,2013,naphtha combustion consumption by to the public,461.94484474599994,TJ,N2O,0.6,kg/TJ,277.16690684759993,kg +5416ed25-9768-3649-b14e-7e6cf662d75c,SESCO,II.1.1,Jujuy,AR-Y,annual,2013,naphtha combustion consumption by to the public,131.33904707,TJ,CO2,73300.0,kg/TJ,9627152.150231,kg +876b8ae4-c620-3687-8018-1e2c05e1e3ac,SESCO,II.1.1,Jujuy,AR-Y,annual,2013,naphtha combustion consumption by to the public,131.33904707,TJ,CH4,3.0,kg/TJ,394.01714121,kg +2e3b65a3-7220-3e2d-8ab2-2491a8c91186,SESCO,II.1.1,Jujuy,AR-Y,annual,2013,naphtha combustion consumption by to the public,131.33904707,TJ,N2O,0.6,kg/TJ,78.803428242,kg +49bf771e-9179-3976-86e7-8c2466ec6e09,SESCO,II.1.1,La Pampa,AR-L,annual,2013,naphtha combustion consumption by to the public,115.85613269999999,TJ,CO2,73300.0,kg/TJ,8492254.52691,kg +aaad6449-a16a-3e47-8dcd-db00617009f8,SESCO,II.1.1,La Pampa,AR-L,annual,2013,naphtha combustion consumption by to the public,115.85613269999999,TJ,CH4,3.0,kg/TJ,347.56839809999997,kg +6554203d-ed78-36b6-9b04-15410ba5608a,SESCO,II.1.1,La Pampa,AR-L,annual,2013,naphtha combustion consumption by to the public,115.85613269999999,TJ,N2O,0.6,kg/TJ,69.51367961999999,kg +a7de9a5b-72a0-361b-8b43-78f880b84030,SESCO,II.1.1,La Rioja,AR-F,annual,2013,naphtha combustion consumption by to the public,233.66671358799996,TJ,CO2,73300.0,kg/TJ,17127770.106000397,kg +cb00f41d-1849-37ea-9208-81c409b29569,SESCO,II.1.1,La Rioja,AR-F,annual,2013,naphtha combustion consumption by to the public,233.66671358799996,TJ,CH4,3.0,kg/TJ,701.0001407639999,kg +b31df5c8-ac92-3c1e-9e06-155eadb8006a,SESCO,II.1.1,La Rioja,AR-F,annual,2013,naphtha combustion consumption by to the public,233.66671358799996,TJ,N2O,0.6,kg/TJ,140.20002815279997,kg +116c0e19-24b5-327f-82f0-578ac5a3fa09,SESCO,II.1.1,Mendoza,AR-M,annual,2013,naphtha combustion consumption by to the public,488.6461886459999,TJ,CO2,73300.0,kg/TJ,35817765.6277518,kg +85e53f03-2d59-3138-964a-ab2399e6fe13,SESCO,II.1.1,Mendoza,AR-M,annual,2013,naphtha combustion consumption by to the public,488.6461886459999,TJ,CH4,3.0,kg/TJ,1465.9385659379998,kg +930e0bdf-b577-3240-800e-b6d839c511a6,SESCO,II.1.1,Mendoza,AR-M,annual,2013,naphtha combustion consumption by to the public,488.6461886459999,TJ,N2O,0.6,kg/TJ,293.18771318759997,kg +47a66194-f474-3cc6-ac01-dfddfd8cafc7,SESCO,II.1.1,Misiones,AR-N,annual,2013,naphtha combustion consumption by to the public,841.8640628859999,TJ,CO2,73300.0,kg/TJ,61708635.809543796,kg +368c8a5c-c277-3cf5-b657-37ead06e8647,SESCO,II.1.1,Misiones,AR-N,annual,2013,naphtha combustion consumption by to the public,841.8640628859999,TJ,CH4,3.0,kg/TJ,2525.592188658,kg +c378beea-87c1-3dc5-8465-601b2df50c6f,SESCO,II.1.1,Misiones,AR-N,annual,2013,naphtha combustion consumption by to the public,841.8640628859999,TJ,N2O,0.6,kg/TJ,505.11843773159995,kg +85cfaf8e-24cc-3ee9-b6fc-f864e53087d8,SESCO,II.1.1,Neuquén,AR-Q,annual,2013,naphtha combustion consumption by to the public,280.53063199699994,TJ,CO2,73300.0,kg/TJ,20562895.325380094,kg +eba7ec18-51ac-3883-9ab9-565a80548c83,SESCO,II.1.1,Neuquén,AR-Q,annual,2013,naphtha combustion consumption by to the public,280.53063199699994,TJ,CH4,3.0,kg/TJ,841.5918959909998,kg +2c7f7739-4dda-37a4-8e08-0f2763391ddc,SESCO,II.1.1,Neuquén,AR-Q,annual,2013,naphtha combustion consumption by to the public,280.53063199699994,TJ,N2O,0.6,kg/TJ,168.31837919819995,kg +200bfd2a-5c71-3436-8ea5-bed4c40fcd89,SESCO,II.1.1,Rio Negro,AR-R,annual,2013,naphtha combustion consumption by to the public,396.121039622,TJ,CO2,73300.0,kg/TJ,29035672.2042926,kg +66134e9d-189a-3005-84a9-fc740c223be4,SESCO,II.1.1,Rio Negro,AR-R,annual,2013,naphtha combustion consumption by to the public,396.121039622,TJ,CH4,3.0,kg/TJ,1188.3631188660001,kg +554743ee-b058-3b34-a1f0-4475df9e6620,SESCO,II.1.1,Rio Negro,AR-R,annual,2013,naphtha combustion consumption by to the public,396.121039622,TJ,N2O,0.6,kg/TJ,237.6726237732,kg +712ea690-db5e-3b86-b8b1-04d418c82bd8,SESCO,II.1.1,Salta,AR-A,annual,2013,naphtha combustion consumption by to the public,81.81433490999999,TJ,CO2,73300.0,kg/TJ,5996990.748902999,kg +a372e6a1-7271-327b-b0a2-f16e30358f38,SESCO,II.1.1,Salta,AR-A,annual,2013,naphtha combustion consumption by to the public,81.81433490999999,TJ,CH4,3.0,kg/TJ,245.44300472999996,kg +8e46f2a4-0241-38dd-907a-1194eb5f8b69,SESCO,II.1.1,Salta,AR-A,annual,2013,naphtha combustion consumption by to the public,81.81433490999999,TJ,N2O,0.6,kg/TJ,49.08860094599999,kg +e3397261-b9aa-3902-8e76-01a258e15329,SESCO,II.1.1,San Juan,AR-J,annual,2013,naphtha combustion consumption by to the public,321.27288885999997,TJ,CO2,73300.0,kg/TJ,23549302.753437996,kg +7e5df551-23b5-3fba-8829-9c3ae463b0f8,SESCO,II.1.1,San Juan,AR-J,annual,2013,naphtha combustion consumption by to the public,321.27288885999997,TJ,CH4,3.0,kg/TJ,963.8186665799999,kg +506a40d9-52aa-321d-bfd5-6e96a3e2f99d,SESCO,II.1.1,San Juan,AR-J,annual,2013,naphtha combustion consumption by to the public,321.27288885999997,TJ,N2O,0.6,kg/TJ,192.76373331599999,kg +c1065e0a-672c-3f06-a491-adb5a9dad7f3,SESCO,II.1.1,San Luis,AR-D,annual,2013,naphtha combustion consumption by to the public,557.618433295,TJ,CO2,73300.0,kg/TJ,40873431.160523504,kg +0b390d4b-e962-3fcb-9c2c-654b45f511a8,SESCO,II.1.1,San Luis,AR-D,annual,2013,naphtha combustion consumption by to the public,557.618433295,TJ,CH4,3.0,kg/TJ,1672.855299885,kg +a0211a83-66c6-364f-9f45-2687b7b6dcf6,SESCO,II.1.1,San Luis,AR-D,annual,2013,naphtha combustion consumption by to the public,557.618433295,TJ,N2O,0.6,kg/TJ,334.571059977,kg +fc353c3d-6b20-332a-a0a5-278e79dabd80,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2013,naphtha combustion consumption by to the public,55.982958801,TJ,CO2,73300.0,kg/TJ,4103550.8801133004,kg +62390581-9bca-3443-9bcc-f2f346851a55,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2013,naphtha combustion consumption by to the public,55.982958801,TJ,CH4,3.0,kg/TJ,167.948876403,kg +83bb1a31-29b8-3af9-aeb6-44317fe68d9f,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2013,naphtha combustion consumption by to the public,55.982958801,TJ,N2O,0.6,kg/TJ,33.5897752806,kg +5e6e4e4e-0a36-3bc9-a2d7-fa84910f471c,SESCO,II.1.1,Santa Fe,AR-S,annual,2013,naphtha combustion consumption by to the public,2640.3222912219994,TJ,CO2,73300.0,kg/TJ,193535623.94657257,kg +fd270408-a01b-3209-83f4-325246537cbd,SESCO,II.1.1,Santa Fe,AR-S,annual,2013,naphtha combustion consumption by to the public,2640.3222912219994,TJ,CH4,3.0,kg/TJ,7920.966873665999,kg +d277b87a-ec6d-37cb-aaf1-432d0953e835,SESCO,II.1.1,Santa Fe,AR-S,annual,2013,naphtha combustion consumption by to the public,2640.3222912219994,TJ,N2O,0.6,kg/TJ,1584.1933747331996,kg +0b60efdb-247b-3079-a03c-f39de94980fb,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2013,naphtha combustion consumption by to the public,317.954063196,TJ,CO2,73300.0,kg/TJ,23306032.8322668,kg +a4d5fd77-0277-3da7-bee5-0bfe3cd7f297,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2013,naphtha combustion consumption by to the public,317.954063196,TJ,CH4,3.0,kg/TJ,953.862189588,kg +05abc08b-9fbb-3724-a3bd-0f7e14c83ce5,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2013,naphtha combustion consumption by to the public,317.954063196,TJ,N2O,0.6,kg/TJ,190.7724379176,kg +ad82e230-264c-39f6-97d1-e3036a5aa8b1,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2013,naphtha combustion consumption by to the public,131.48656474799998,TJ,CO2,73300.0,kg/TJ,9637965.196028398,kg +8f79b885-08c4-3e6c-bbf2-ac6946c913b4,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2013,naphtha combustion consumption by to the public,131.48656474799998,TJ,CH4,3.0,kg/TJ,394.45969424399993,kg +e0f5c471-d947-3c9d-8813-b78ab6b4f2e3,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2013,naphtha combustion consumption by to the public,131.48656474799998,TJ,N2O,0.6,kg/TJ,78.89193884879998,kg +ff8bf128-2e21-3ee1-82de-164dd1610b4f,SESCO,II.1.1,Tucuman,AR-T,annual,2013,naphtha combustion consumption by to the public,108.16975307599999,TJ,CO2,73300.0,kg/TJ,7928842.9004708,kg +5f393e4d-859b-30aa-a260-383cc2575426,SESCO,II.1.1,Tucuman,AR-T,annual,2013,naphtha combustion consumption by to the public,108.16975307599999,TJ,CH4,3.0,kg/TJ,324.50925922799996,kg +11393edf-7426-3a14-9208-35721388c132,SESCO,II.1.1,Tucuman,AR-T,annual,2013,naphtha combustion consumption by to the public,108.16975307599999,TJ,N2O,0.6,kg/TJ,64.90185184559999,kg +84fae250-0194-3d88-9065-f89185327be0,SESCO,II.1.1,Buenos Aires,AR-B,annual,2013,naphtha combustion consumption by to the public,2261.319099886,TJ,CO2,73300.0,kg/TJ,165754690.0216438,kg +98c9a8bf-c0aa-36b0-8544-4d3b1e611864,SESCO,II.1.1,Buenos Aires,AR-B,annual,2013,naphtha combustion consumption by to the public,2261.319099886,TJ,CH4,3.0,kg/TJ,6783.957299658,kg +40eb183a-a430-36a2-8964-f381f13ff06f,SESCO,II.1.1,Buenos Aires,AR-B,annual,2013,naphtha combustion consumption by to the public,2261.319099886,TJ,N2O,0.6,kg/TJ,1356.7914599316,kg +d9360c8a-63b0-31d8-b0cd-1d1f5618a0cb,SESCO,II.1.1,Capital Federal,AR-C,annual,2013,naphtha combustion consumption by to the public,1077.88320674342,TJ,CO2,73300.0,kg/TJ,79008839.0542927,kg +10257cca-a24c-3121-86ac-6e3a076c1d8f,SESCO,II.1.1,Capital Federal,AR-C,annual,2013,naphtha combustion consumption by to the public,1077.88320674342,TJ,CH4,3.0,kg/TJ,3233.64962023026,kg +b04e8745-d13f-35b5-9a48-cc43a9bf3815,SESCO,II.1.1,Capital Federal,AR-C,annual,2013,naphtha combustion consumption by to the public,1077.88320674342,TJ,N2O,0.6,kg/TJ,646.729924046052,kg +895f72d4-bc34-3608-b2d7-f99833cb18f2,SESCO,II.1.1,Catamarca,AR-K,annual,2013,naphtha combustion consumption by to the public,91.86990963996998,TJ,CO2,73300.0,kg/TJ,6734064.376609799,kg +10ccb3c0-e944-3602-909d-02e724ffc8b2,SESCO,II.1.1,Catamarca,AR-K,annual,2013,naphtha combustion consumption by to the public,91.86990963996998,TJ,CH4,3.0,kg/TJ,275.6097289199099,kg +d23d1c71-7b5e-379c-a7d3-482fbf31b071,SESCO,II.1.1,Catamarca,AR-K,annual,2013,naphtha combustion consumption by to the public,91.86990963996998,TJ,N2O,0.6,kg/TJ,55.121945783981985,kg +45cd8a4b-52b4-39c6-bda7-3a90db996a26,SESCO,II.1.1,Chaco,AR-H,annual,2013,naphtha combustion consumption by to the public,91.80548499814999,TJ,CO2,73300.0,kg/TJ,6729342.050364395,kg +f2ccdc22-dc22-367e-9cbf-7deb8c5a140d,SESCO,II.1.1,Chaco,AR-H,annual,2013,naphtha combustion consumption by to the public,91.80548499814999,TJ,CH4,3.0,kg/TJ,275.41645499444996,kg +e82a3c4c-79fd-34fa-89cd-0b6700d9bd2d,SESCO,II.1.1,Chaco,AR-H,annual,2013,naphtha combustion consumption by to the public,91.80548499814999,TJ,N2O,0.6,kg/TJ,55.08329099888999,kg +8e69584c-2aa7-3baf-a1b1-abb6c655c1a5,SESCO,II.1.1,Chubut,AR-U,annual,2013,naphtha combustion consumption by to the public,48.139736964549996,TJ,CO2,73300.0,kg/TJ,3528642.719501515,kg +908e6cc9-071a-3ea7-bbfe-ba156a64d124,SESCO,II.1.1,Chubut,AR-U,annual,2013,naphtha combustion consumption by to the public,48.139736964549996,TJ,CH4,3.0,kg/TJ,144.41921089365,kg +99bba9d4-ea94-32f4-b01d-2c8651dfbbaf,SESCO,II.1.1,Chubut,AR-U,annual,2013,naphtha combustion consumption by to the public,48.139736964549996,TJ,N2O,0.6,kg/TJ,28.883842178729996,kg +5b7d22a3-30d2-37e6-aa82-001a0d4e6666,SESCO,II.1.1,Corrientes,AR-W,annual,2013,naphtha combustion consumption by to the public,77.19979835029,TJ,CO2,73300.0,kg/TJ,5658745.219076256,kg +cab357d2-f82a-3e2e-9e87-fdd531e54e8a,SESCO,II.1.1,Corrientes,AR-W,annual,2013,naphtha combustion consumption by to the public,77.19979835029,TJ,CH4,3.0,kg/TJ,231.59939505087,kg +d941e41f-fc03-3c28-bda2-a924feb9df46,SESCO,II.1.1,Corrientes,AR-W,annual,2013,naphtha combustion consumption by to the public,77.19979835029,TJ,N2O,0.6,kg/TJ,46.319879010174,kg +fe8c198f-0ba1-34c3-94ce-4b37e2c19c69,SESCO,II.1.1,Córdoba,AR-X,annual,2013,naphtha combustion consumption by to the public,621.56515004738,TJ,CO2,73300.0,kg/TJ,45560725.49847296,kg +3dec3ea2-9cca-300d-8534-50967f23f68e,SESCO,II.1.1,Córdoba,AR-X,annual,2013,naphtha combustion consumption by to the public,621.56515004738,TJ,CH4,3.0,kg/TJ,1864.69545014214,kg +cb79c33b-6ac1-3188-ade8-b2a0bc2ed958,SESCO,II.1.1,Córdoba,AR-X,annual,2013,naphtha combustion consumption by to the public,621.56515004738,TJ,N2O,0.6,kg/TJ,372.939090028428,kg +5a80ba6e-8aa2-365e-b305-9a867deae15f,SESCO,II.1.1,Entre Rios,AR-E,annual,2013,naphtha combustion consumption by to the public,229.72706718422998,TJ,CO2,73300.0,kg/TJ,16838994.024604056,kg +f06896f3-f05e-3f7b-a671-fcffab8ab14e,SESCO,II.1.1,Entre Rios,AR-E,annual,2013,naphtha combustion consumption by to the public,229.72706718422998,TJ,CH4,3.0,kg/TJ,689.1812015526899,kg +4681a49f-6e30-368e-a981-6e16ce80634d,SESCO,II.1.1,Entre Rios,AR-E,annual,2013,naphtha combustion consumption by to the public,229.72706718422998,TJ,N2O,0.6,kg/TJ,137.836240310538,kg +4473668d-1071-3a2f-9479-e0ae2bd03c94,SESCO,II.1.1,Formosa,AR-P,annual,2013,naphtha combustion consumption by to the public,103.53828741332998,TJ,CO2,73300.0,kg/TJ,7589356.467397087,kg +4ed5d30a-9c18-3725-91c4-875fb16f512c,SESCO,II.1.1,Formosa,AR-P,annual,2013,naphtha combustion consumption by to the public,103.53828741332998,TJ,CH4,3.0,kg/TJ,310.61486223999,kg +d1f54bff-80cb-33ca-be5e-7d5b9f1c1c5e,SESCO,II.1.1,Formosa,AR-P,annual,2013,naphtha combustion consumption by to the public,103.53828741332998,TJ,N2O,0.6,kg/TJ,62.12297244799799,kg +4259acf8-5829-3856-81cf-2a4221cd76a9,SESCO,II.1.1,Jujuy,AR-Y,annual,2013,naphtha combustion consumption by to the public,5.36982707107,TJ,CO2,73300.0,kg/TJ,393608.32430943096,kg +ecff2891-ec14-33e1-baca-050f5e890658,SESCO,II.1.1,Jujuy,AR-Y,annual,2013,naphtha combustion consumption by to the public,5.36982707107,TJ,CH4,3.0,kg/TJ,16.10948121321,kg +e42b2733-1502-3a7e-9f45-08a79d52b63a,SESCO,II.1.1,Jujuy,AR-Y,annual,2013,naphtha combustion consumption by to the public,5.36982707107,TJ,N2O,0.6,kg/TJ,3.2218962426419995,kg +d161bc87-f81d-3f1e-b360-6eb1346298bc,SESCO,II.1.1,La Pampa,AR-L,annual,2013,naphtha combustion consumption by to the public,29.662973865909997,TJ,CO2,73300.0,kg/TJ,2174295.984371203,kg +374bc8e9-2c6f-330b-ad6c-1e3a5dc59d59,SESCO,II.1.1,La Pampa,AR-L,annual,2013,naphtha combustion consumption by to the public,29.662973865909997,TJ,CH4,3.0,kg/TJ,88.98892159772998,kg +874c3e96-411c-3afc-9fb2-ebaed0a6bd63,SESCO,II.1.1,La Pampa,AR-L,annual,2013,naphtha combustion consumption by to the public,29.662973865909997,TJ,N2O,0.6,kg/TJ,17.797784319545997,kg +14ed0f04-0545-34c8-8628-a3fa373663b9,SESCO,II.1.1,La Rioja,AR-F,annual,2013,naphtha combustion consumption by to the public,47.948881942499995,TJ,CO2,73300.0,kg/TJ,3514653.0463852496,kg +e5b097af-b6a5-3d9e-bb25-09dd68c672f5,SESCO,II.1.1,La Rioja,AR-F,annual,2013,naphtha combustion consumption by to the public,47.948881942499995,TJ,CH4,3.0,kg/TJ,143.84664582749997,kg +f1758944-be6c-3c51-a4e0-4341ff39262e,SESCO,II.1.1,La Rioja,AR-F,annual,2013,naphtha combustion consumption by to the public,47.948881942499995,TJ,N2O,0.6,kg/TJ,28.769329165499997,kg +f6536793-b3bb-3a3f-b87a-145522d3d30e,SESCO,II.1.1,Mendoza,AR-M,annual,2013,naphtha combustion consumption by to the public,96.78615206029,TJ,CO2,73300.0,kg/TJ,7094424.9460192565,kg +facfbc4f-5a70-39f2-8acf-35585ae563c3,SESCO,II.1.1,Mendoza,AR-M,annual,2013,naphtha combustion consumption by to the public,96.78615206029,TJ,CH4,3.0,kg/TJ,290.35845618087,kg +76337b57-fcad-3354-a99b-adba191cc448,SESCO,II.1.1,Mendoza,AR-M,annual,2013,naphtha combustion consumption by to the public,96.78615206029,TJ,N2O,0.6,kg/TJ,58.07169123617399,kg +9e4847a1-d5a7-337a-a33c-f23207870fbb,SESCO,II.1.1,Misiones,AR-N,annual,2013,naphtha combustion consumption by to the public,128.15740318381,TJ,CO2,73300.0,kg/TJ,9393937.653373273,kg +0ff95659-ec11-3376-83e8-10ddfa408c27,SESCO,II.1.1,Misiones,AR-N,annual,2013,naphtha combustion consumption by to the public,128.15740318381,TJ,CH4,3.0,kg/TJ,384.47220955143,kg +1ff011e5-2ea5-3026-8367-885c864a1cd6,SESCO,II.1.1,Misiones,AR-N,annual,2013,naphtha combustion consumption by to the public,128.15740318381,TJ,N2O,0.6,kg/TJ,76.894441910286,kg +e7174501-2e4e-397c-8044-4e35aec3bc01,SESCO,II.1.1,Neuquén,AR-Q,annual,2013,naphtha combustion consumption by to the public,75.98808234555999,TJ,CO2,73300.0,kg/TJ,5569926.435929547,kg +72564799-7509-3321-8871-9c25dde102b3,SESCO,II.1.1,Neuquén,AR-Q,annual,2013,naphtha combustion consumption by to the public,75.98808234555999,TJ,CH4,3.0,kg/TJ,227.96424703667998,kg +c54e2245-acdd-3b8b-9044-2bfe9bb5d77b,SESCO,II.1.1,Neuquén,AR-Q,annual,2013,naphtha combustion consumption by to the public,75.98808234555999,TJ,N2O,0.6,kg/TJ,45.59284940733599,kg +adddaa15-66cb-304b-86d0-018f3720a36b,SESCO,II.1.1,Rio Negro,AR-R,annual,2013,naphtha combustion consumption by to the public,109.85042713490999,TJ,CO2,73300.0,kg/TJ,8052036.308988903,kg +684bbc36-86d4-3784-8850-1d12a32fa9f5,SESCO,II.1.1,Rio Negro,AR-R,annual,2013,naphtha combustion consumption by to the public,109.85042713490999,TJ,CH4,3.0,kg/TJ,329.55128140473,kg +a5348fe6-3333-3aa1-9e74-0724cfad5117,SESCO,II.1.1,Rio Negro,AR-R,annual,2013,naphtha combustion consumption by to the public,109.85042713490999,TJ,N2O,0.6,kg/TJ,65.91025628094599,kg +76d112d9-4cd6-3186-83b3-ad8829554bd0,SESCO,II.1.1,Salta,AR-A,annual,2013,naphtha combustion consumption by to the public,10.598893933319998,TJ,CO2,73300.0,kg/TJ,776898.9253123559,kg +72c99039-d7da-3317-9dbd-40e437e128bd,SESCO,II.1.1,Salta,AR-A,annual,2013,naphtha combustion consumption by to the public,10.598893933319998,TJ,CH4,3.0,kg/TJ,31.79668179995999,kg +8b7e5ff7-923b-329c-91c1-6fe05ffbfe7c,SESCO,II.1.1,Salta,AR-A,annual,2013,naphtha combustion consumption by to the public,10.598893933319998,TJ,N2O,0.6,kg/TJ,6.359336359991999,kg +9958fc3e-5108-35c5-a2c4-862e26a868e0,SESCO,II.1.1,San Juan,AR-J,annual,2013,naphtha combustion consumption by to the public,67.10196850202999,TJ,CO2,73300.0,kg/TJ,4918574.291198798,kg +07f545f9-6c5b-38df-ab78-44a2b9f3f5ee,SESCO,II.1.1,San Juan,AR-J,annual,2013,naphtha combustion consumption by to the public,67.10196850202999,TJ,CH4,3.0,kg/TJ,201.30590550608997,kg +b13bfc3d-5967-3d68-9919-726160c17388,SESCO,II.1.1,San Juan,AR-J,annual,2013,naphtha combustion consumption by to the public,67.10196850202999,TJ,N2O,0.6,kg/TJ,40.26118110121799,kg +d891f309-7a26-3da0-8f53-aa022eeed626,SESCO,II.1.1,San Luis,AR-D,annual,2013,naphtha combustion consumption by to the public,129.01590131429998,TJ,CO2,73300.0,kg/TJ,9456865.566338189,kg +a5943259-4100-3b34-b616-2bbb55853504,SESCO,II.1.1,San Luis,AR-D,annual,2013,naphtha combustion consumption by to the public,129.01590131429998,TJ,CH4,3.0,kg/TJ,387.04770394289994,kg +c0965fbb-8f16-335c-ac08-b31c08b1aa6c,SESCO,II.1.1,San Luis,AR-D,annual,2013,naphtha combustion consumption by to the public,129.01590131429998,TJ,N2O,0.6,kg/TJ,77.40954078857999,kg +20f455cf-f2a8-3c9d-86f2-a148d2c78b87,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2013,naphtha combustion consumption by to the public,27.620594834909998,TJ,CO2,73300.0,kg/TJ,2024589.601398903,kg +3745118f-8dc8-369c-b226-72c4016e2d67,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2013,naphtha combustion consumption by to the public,27.620594834909998,TJ,CH4,3.0,kg/TJ,82.86178450473,kg +08b516fc-4bf7-3e59-bd91-f2f44a417d2e,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2013,naphtha combustion consumption by to the public,27.620594834909998,TJ,N2O,0.6,kg/TJ,16.572356900945998,kg +b49aa15d-5249-38fa-9b64-cb6656ab2e42,SESCO,II.1.1,Santa Fe,AR-S,annual,2013,naphtha combustion consumption by to the public,603.9350256886099,TJ,CO2,73300.0,kg/TJ,44268437.38297511,kg +d537ff9b-8102-3eea-bf4f-5685f5daafda,SESCO,II.1.1,Santa Fe,AR-S,annual,2013,naphtha combustion consumption by to the public,603.9350256886099,TJ,CH4,3.0,kg/TJ,1811.8050770658297,kg +eb18d8c3-4f73-342b-af1a-0ee7fff9e2f8,SESCO,II.1.1,Santa Fe,AR-S,annual,2013,naphtha combustion consumption by to the public,603.9350256886099,TJ,N2O,0.6,kg/TJ,362.36101541316594,kg +98d7d237-5897-3c6e-956e-e3b94908cfc5,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2013,naphtha combustion consumption by to the public,80.98580734706,TJ,CO2,73300.0,kg/TJ,5936259.678539498,kg +7dfdbaf2-981f-35d2-9467-35175e311175,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2013,naphtha combustion consumption by to the public,80.98580734706,TJ,CH4,3.0,kg/TJ,242.95742204118,kg +cc871db4-2f09-3444-a428-46c8da618f8d,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2013,naphtha combustion consumption by to the public,80.98580734706,TJ,N2O,0.6,kg/TJ,48.591484408236,kg +6f04ffdb-4e09-3613-b434-6adf8927bb46,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2013,naphtha combustion consumption by to the public,62.24028185529,TJ,CO2,73300.0,kg/TJ,4562212.659992757,kg +7ec6aad0-9896-3e62-9206-1c4ff48ee731,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2013,naphtha combustion consumption by to the public,62.24028185529,TJ,CH4,3.0,kg/TJ,186.72084556587,kg +56676aab-78cd-336c-ad3a-2d650a64d3ac,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2013,naphtha combustion consumption by to the public,62.24028185529,TJ,N2O,0.6,kg/TJ,37.344169113174,kg +553e60ef-8b50-3311-b7eb-82e624b34451,SESCO,II.1.1,Tucuman,AR-T,annual,2013,naphtha combustion consumption by to the public,22.924746402249998,TJ,CO2,73300.0,kg/TJ,1680383.9112849247,kg +d8ed9cca-5bda-3392-a48d-dc633e7caa6f,SESCO,II.1.1,Tucuman,AR-T,annual,2013,naphtha combustion consumption by to the public,22.924746402249998,TJ,CH4,3.0,kg/TJ,68.77423920675,kg +2b8194d5-6108-3a2f-8ddb-a922e832028d,SESCO,II.1.1,Tucuman,AR-T,annual,2013,naphtha combustion consumption by to the public,22.924746402249998,TJ,N2O,0.6,kg/TJ,13.754847841349997,kg +aa3cd41c-c544-3b82-a3b0-f5818d5bfede,SESCO,I.3.1,Buenos Aires,AR-B,annual,2013,naphtha combustion consumption by petrochemical industries,18.0048869,TJ,CO2,73300.0,kg/TJ,1319758.2097699998,kg +ca6275e4-b591-3c46-80d9-5d284f655d59,SESCO,I.3.1,Buenos Aires,AR-B,annual,2013,naphtha combustion consumption by petrochemical industries,18.0048869,TJ,CH4,3.0,kg/TJ,54.01466069999999,kg +d7c384d8-fb72-31ee-831d-baf342fd95c8,SESCO,I.3.1,Buenos Aires,AR-B,annual,2013,naphtha combustion consumption by petrochemical industries,18.0048869,TJ,N2O,0.6,kg/TJ,10.80293214,kg +70bf6ccc-155b-3869-80fa-959fffcd2a38,SESCO,I.3.1,Buenos Aires,AR-B,annual,2013,naphtha combustion consumption by petrochemical industries,1.4494094999999998,TJ,CO2,73300.0,kg/TJ,106241.71634999999,kg +8212cd7b-457e-372d-81d9-4f4487bba361,SESCO,I.3.1,Buenos Aires,AR-B,annual,2013,naphtha combustion consumption by petrochemical industries,1.4494094999999998,TJ,CH4,3.0,kg/TJ,4.348228499999999,kg +48ce7849-5317-3581-80ed-51ac0ece46a2,SESCO,I.3.1,Buenos Aires,AR-B,annual,2013,naphtha combustion consumption by petrochemical industries,1.4494094999999998,TJ,N2O,0.6,kg/TJ,0.8696456999999999,kg +d0cb8848-28d0-342f-aa2a-64621a2e7785,SESCO,II.1.1,Buenos Aires,AR-B,annual,2013,naphtha combustion consumption by freight transport,5.039416460539999,TJ,CO2,73300.0,kg/TJ,369389.2265575819,kg +9d85d87a-c800-3663-b441-8095f45d0dda,SESCO,II.1.1,Buenos Aires,AR-B,annual,2013,naphtha combustion consumption by freight transport,5.039416460539999,TJ,CH4,3.0,kg/TJ,15.118249381619997,kg +c75e07e2-5276-3864-9e4e-5b675277cae6,SESCO,II.1.1,Buenos Aires,AR-B,annual,2013,naphtha combustion consumption by freight transport,5.039416460539999,TJ,N2O,0.6,kg/TJ,3.0236498763239994,kg +9045f7e7-d1d8-3d82-87b5-095861f78e3f,SESCO,II.1.1,Capital Federal,AR-C,annual,2013,naphtha combustion consumption by freight transport,12.722478547239998,TJ,CO2,73300.0,kg/TJ,932557.6775126918,kg +4fc63fb6-e6b3-3ddb-9530-7a6d4165cf7b,SESCO,II.1.1,Capital Federal,AR-C,annual,2013,naphtha combustion consumption by freight transport,12.722478547239998,TJ,CH4,3.0,kg/TJ,38.16743564171999,kg +3fa83326-101e-3ad5-acd2-7c1dcd5b30ca,SESCO,II.1.1,Capital Federal,AR-C,annual,2013,naphtha combustion consumption by freight transport,12.722478547239998,TJ,N2O,0.6,kg/TJ,7.633487128343998,kg +dff71774-d6a7-3798-a229-37cd99780ea4,SESCO,II.1.1,Chaco,AR-H,annual,2013,naphtha combustion consumption by freight transport,0.24236059385999997,TJ,CO2,73300.0,kg/TJ,17765.031529937998,kg +5c10251e-6eed-3287-babb-03735f29ac12,SESCO,II.1.1,Chaco,AR-H,annual,2013,naphtha combustion consumption by freight transport,0.24236059385999997,TJ,CH4,3.0,kg/TJ,0.7270817815799999,kg +8076229a-a0d8-3585-98cc-bb5f4ad61393,SESCO,II.1.1,Chaco,AR-H,annual,2013,naphtha combustion consumption by freight transport,0.24236059385999997,TJ,N2O,0.6,kg/TJ,0.14541635631599997,kg +1cdc4816-8af2-3d03-82c6-35e5d3dd90a3,SESCO,II.1.1,Corrientes,AR-W,annual,2013,naphtha combustion consumption by freight transport,0.01699674207,TJ,CO2,73300.0,kg/TJ,1245.8611937310002,kg +5865d8d9-127a-3363-838d-106da5b52547,SESCO,II.1.1,Corrientes,AR-W,annual,2013,naphtha combustion consumption by freight transport,0.01699674207,TJ,CH4,3.0,kg/TJ,0.05099022621,kg +89646373-1741-338d-8ce8-1674ddcf2631,SESCO,II.1.1,Corrientes,AR-W,annual,2013,naphtha combustion consumption by freight transport,0.01699674207,TJ,N2O,0.6,kg/TJ,0.010198045242000001,kg +6833a6b2-fcda-3573-b197-655bd22e4c1f,SESCO,II.1.1,Córdoba,AR-X,annual,2013,naphtha combustion consumption by freight transport,0.43827566551999997,TJ,CO2,73300.0,kg/TJ,32125.606282615998,kg +5f39abed-1120-3eb0-ba48-7e5b089bac97,SESCO,II.1.1,Córdoba,AR-X,annual,2013,naphtha combustion consumption by freight transport,0.43827566551999997,TJ,CH4,3.0,kg/TJ,1.31482699656,kg +320f487a-a75c-3b15-9e85-d6ddac7e3525,SESCO,II.1.1,Córdoba,AR-X,annual,2013,naphtha combustion consumption by freight transport,0.43827566551999997,TJ,N2O,0.6,kg/TJ,0.26296539931199997,kg +63904085-fea1-3573-9ef4-c8a28fb7ac90,SESCO,II.1.1,Entre Rios,AR-E,annual,2013,naphtha combustion consumption by freight transport,0.0016104549999999998,TJ,CO2,73300.0,kg/TJ,118.04635149999999,kg +f2c29478-e1a8-3e4e-ac41-4cbe5674a184,SESCO,II.1.1,Entre Rios,AR-E,annual,2013,naphtha combustion consumption by freight transport,0.0016104549999999998,TJ,CH4,3.0,kg/TJ,0.004831364999999999,kg +5d413b52-0db6-3c68-94a4-c98cd6a4e801,SESCO,II.1.1,Entre Rios,AR-E,annual,2013,naphtha combustion consumption by freight transport,0.0016104549999999998,TJ,N2O,0.6,kg/TJ,0.0009662729999999998,kg +ca8e1795-991d-3dbf-b5d3-7dc6c367b1b6,SESCO,II.1.1,Misiones,AR-N,annual,2013,naphtha combustion consumption by freight transport,0.006119729,TJ,CO2,73300.0,kg/TJ,448.5761357,kg +6e39fbd6-fd9c-3265-93b7-f254db8c6e97,SESCO,II.1.1,Misiones,AR-N,annual,2013,naphtha combustion consumption by freight transport,0.006119729,TJ,CH4,3.0,kg/TJ,0.018359187,kg +f90cb6d6-940b-31f6-9095-b747b511dfbe,SESCO,II.1.1,Misiones,AR-N,annual,2013,naphtha combustion consumption by freight transport,0.006119729,TJ,N2O,0.6,kg/TJ,0.0036718374,kg +0d9b1bd4-2961-3805-8fb2-563eecb1421a,SESCO,II.1.1,San Luis,AR-D,annual,2013,naphtha combustion consumption by freight transport,0.09921046982,TJ,CO2,73300.0,kg/TJ,7272.127437806,kg +c4d2fa55-c6d3-3cfb-a8ff-f071722c5af1,SESCO,II.1.1,San Luis,AR-D,annual,2013,naphtha combustion consumption by freight transport,0.09921046982,TJ,CH4,3.0,kg/TJ,0.29763140946,kg +b7febb2b-d08e-3e36-99cb-92e9bb0acb85,SESCO,II.1.1,San Luis,AR-D,annual,2013,naphtha combustion consumption by freight transport,0.09921046982,TJ,N2O,0.6,kg/TJ,0.059526281891999995,kg +017d4659-2caa-394b-907e-df346eb91137,SESCO,II.1.1,Santa Fe,AR-S,annual,2013,naphtha combustion consumption by freight transport,0.9399646071199999,TJ,CO2,73300.0,kg/TJ,68899.40570189599,kg +c9440c81-0fba-3039-839e-30c585106e36,SESCO,II.1.1,Santa Fe,AR-S,annual,2013,naphtha combustion consumption by freight transport,0.9399646071199999,TJ,CH4,3.0,kg/TJ,2.8198938213599996,kg +301dd87b-c804-3acd-b889-49c0a53847f0,SESCO,II.1.1,Santa Fe,AR-S,annual,2013,naphtha combustion consumption by freight transport,0.9399646071199999,TJ,N2O,0.6,kg/TJ,0.5639787642719999,kg +2685182a-b26c-3256-91df-6c387e7aa51e,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2013,naphtha combustion consumption by freight transport,0.02835689164,TJ,CO2,73300.0,kg/TJ,2078.560157212,kg +078b7aff-ec2c-35a6-8d8f-56942220f8e6,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2013,naphtha combustion consumption by freight transport,0.02835689164,TJ,CH4,3.0,kg/TJ,0.08507067492,kg +69311a95-2fdd-386f-a011-20b121820395,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2013,naphtha combustion consumption by freight transport,0.02835689164,TJ,N2O,0.6,kg/TJ,0.017014134984,kg +8fae3a06-0f93-3caa-a56e-35d322e96375,SESCO,II.1.1,Tucuman,AR-T,annual,2013,naphtha combustion consumption by freight transport,0.05120924809,TJ,CO2,73300.0,kg/TJ,3753.637884997,kg +ce135c39-4ee2-3a4a-b990-beac64e4f22d,SESCO,II.1.1,Tucuman,AR-T,annual,2013,naphtha combustion consumption by freight transport,0.05120924809,TJ,CH4,3.0,kg/TJ,0.15362774427,kg +6f539cf8-f15e-34bb-8738-7ea423de7ef6,SESCO,II.1.1,Tucuman,AR-T,annual,2013,naphtha combustion consumption by freight transport,0.05120924809,TJ,N2O,0.6,kg/TJ,0.030725548853999998,kg +27758781-8729-3d7c-a1a6-923c801a9791,SESCO,II.1.1,Buenos Aires,AR-B,annual,2013,naphtha combustion consumption by freight transport,24.671848509,TJ,CO2,73300.0,kg/TJ,1808446.4957097,kg +fc31ccf3-33ce-32aa-9ed8-07f79fd598a1,SESCO,II.1.1,Buenos Aires,AR-B,annual,2013,naphtha combustion consumption by freight transport,24.671848509,TJ,CH4,3.0,kg/TJ,74.015545527,kg +6dae9a06-55d8-305f-9aeb-6638ddd82400,SESCO,II.1.1,Buenos Aires,AR-B,annual,2013,naphtha combustion consumption by freight transport,24.671848509,TJ,N2O,0.6,kg/TJ,14.803109105399999,kg +d908673b-6778-3fa0-87c1-b63eccddd14a,SESCO,II.1.1,Capital Federal,AR-C,annual,2013,naphtha combustion consumption by freight transport,8.005893896,TJ,CO2,73300.0,kg/TJ,586832.0225768,kg +47c3f25b-46c6-3839-90a2-731c8f0e9010,SESCO,II.1.1,Capital Federal,AR-C,annual,2013,naphtha combustion consumption by freight transport,8.005893896,TJ,CH4,3.0,kg/TJ,24.017681688,kg +290a928c-013c-36c4-9440-4e572b2c8f12,SESCO,II.1.1,Capital Federal,AR-C,annual,2013,naphtha combustion consumption by freight transport,8.005893896,TJ,N2O,0.6,kg/TJ,4.8035363376,kg +d5ee6d8a-8b76-31b6-ba82-e90dbdd1093b,SESCO,II.1.1,Chaco,AR-H,annual,2013,naphtha combustion consumption by freight transport,0.05938713858,TJ,CO2,73300.0,kg/TJ,4353.077257914,kg +dcbb1d6e-cf28-30ed-a5c5-90a8c8c84c5e,SESCO,II.1.1,Chaco,AR-H,annual,2013,naphtha combustion consumption by freight transport,0.05938713858,TJ,CH4,3.0,kg/TJ,0.17816141574,kg +4dc9c71d-2139-3df6-aa57-76f449eb59a3,SESCO,II.1.1,Chaco,AR-H,annual,2013,naphtha combustion consumption by freight transport,0.05938713858,TJ,N2O,0.6,kg/TJ,0.035632283147999995,kg +7213b2bf-4867-394a-975b-cc0147082229,SESCO,II.1.1,Corrientes,AR-W,annual,2013,naphtha combustion consumption by freight transport,0.004509274000000001,TJ,CO2,73300.0,kg/TJ,330.52978420000005,kg +4ab14e7d-2d21-31ef-88d9-d20af94102bf,SESCO,II.1.1,Corrientes,AR-W,annual,2013,naphtha combustion consumption by freight transport,0.004509274000000001,TJ,CH4,3.0,kg/TJ,0.013527822000000002,kg +0a62b92a-7b5d-3cd9-b3b7-5c941a1b31af,SESCO,II.1.1,Corrientes,AR-W,annual,2013,naphtha combustion consumption by freight transport,0.004509274000000001,TJ,N2O,0.6,kg/TJ,0.0027055644000000003,kg +640ba093-6a78-3e80-ba6f-419fde4ac6e4,SESCO,II.1.1,Córdoba,AR-X,annual,2013,naphtha combustion consumption by freight transport,0.3239913369,TJ,CO2,73300.0,kg/TJ,23748.56499477,kg +8690a153-09fc-30be-8faf-4dc9a27de4f8,SESCO,II.1.1,Córdoba,AR-X,annual,2013,naphtha combustion consumption by freight transport,0.3239913369,TJ,CH4,3.0,kg/TJ,0.9719740106999999,kg +e5695930-6219-32ba-a534-ab979d39b03f,SESCO,II.1.1,Córdoba,AR-X,annual,2013,naphtha combustion consumption by freight transport,0.3239913369,TJ,N2O,0.6,kg/TJ,0.19439480214,kg +be0e933b-b517-3446-9fb5-fccba1f13035,SESCO,II.1.1,Entre Rios,AR-E,annual,2013,naphtha combustion consumption by freight transport,0.025767279999999997,TJ,CO2,73300.0,kg/TJ,1888.7416239999998,kg +6e16cc40-67c7-3cb6-8e9b-8eb8b378490c,SESCO,II.1.1,Entre Rios,AR-E,annual,2013,naphtha combustion consumption by freight transport,0.025767279999999997,TJ,CH4,3.0,kg/TJ,0.07730183999999998,kg +bfeb6c41-b169-3f24-a546-d4cbf9302eb2,SESCO,II.1.1,Entre Rios,AR-E,annual,2013,naphtha combustion consumption by freight transport,0.025767279999999997,TJ,N2O,0.6,kg/TJ,0.015460367999999997,kg +f33db89b-fbb1-3ffc-b258-4d2003e8c60f,SESCO,II.1.1,Mendoza,AR-M,annual,2013,naphtha combustion consumption by freight transport,0.0052951760399999985,TJ,CO2,73300.0,kg/TJ,388.1364037319999,kg +ff27d499-754c-3dfd-8cf8-a536d6e9ed1c,SESCO,II.1.1,Mendoza,AR-M,annual,2013,naphtha combustion consumption by freight transport,0.0052951760399999985,TJ,CH4,3.0,kg/TJ,0.015885528119999996,kg +40d0e5a9-8269-3af0-bb87-e44375bb61ac,SESCO,II.1.1,Mendoza,AR-M,annual,2013,naphtha combustion consumption by freight transport,0.0052951760399999985,TJ,N2O,0.6,kg/TJ,0.003177105623999999,kg +e889eeaa-0bbd-383c-90a3-5f2aa977f52f,SESCO,II.1.1,Misiones,AR-N,annual,2013,naphtha combustion consumption by freight transport,0.0038650919999999997,TJ,CO2,73300.0,kg/TJ,283.31124359999995,kg +144d3f7f-7472-362f-a65f-f39e37a67143,SESCO,II.1.1,Misiones,AR-N,annual,2013,naphtha combustion consumption by freight transport,0.0038650919999999997,TJ,CH4,3.0,kg/TJ,0.011595275999999998,kg +2993c10c-27e7-3c42-8c1e-9f5d36695aad,SESCO,II.1.1,Misiones,AR-N,annual,2013,naphtha combustion consumption by freight transport,0.0038650919999999997,TJ,N2O,0.6,kg/TJ,0.0023190551999999996,kg +45ecdd3b-05c7-36be-8471-83b86a1463cd,SESCO,II.1.1,San Luis,AR-D,annual,2013,naphtha combustion consumption by freight transport,0.009340639,TJ,CO2,73300.0,kg/TJ,684.6688386999999,kg +72edb4a4-a40f-38a5-a3fb-56c74ff35bf7,SESCO,II.1.1,San Luis,AR-D,annual,2013,naphtha combustion consumption by freight transport,0.009340639,TJ,CH4,3.0,kg/TJ,0.028021917,kg +562b5fdc-5ae6-36e5-a5a1-4c149c42f7c1,SESCO,II.1.1,San Luis,AR-D,annual,2013,naphtha combustion consumption by freight transport,0.009340639,TJ,N2O,0.6,kg/TJ,0.005604383399999999,kg +a2ae9035-9dc8-38d1-b7de-c46a50b4d8cd,SESCO,II.1.1,Santa Fe,AR-S,annual,2013,naphtha combustion consumption by freight transport,0.6796248936399999,TJ,CO2,73300.0,kg/TJ,49816.504703811996,kg +8620ff4b-b033-3d86-adef-1e7664bee8ad,SESCO,II.1.1,Santa Fe,AR-S,annual,2013,naphtha combustion consumption by freight transport,0.6796248936399999,TJ,CH4,3.0,kg/TJ,2.03887468092,kg +33ba075d-12e7-3828-a063-c8e0b1a5408a,SESCO,II.1.1,Santa Fe,AR-S,annual,2013,naphtha combustion consumption by freight transport,0.6796248936399999,TJ,N2O,0.6,kg/TJ,0.4077749361839999,kg +8cb13d59-f435-3407-aa7f-413b129be2e9,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2013,naphtha combustion consumption by freight transport,0.2487186702,TJ,CO2,73300.0,kg/TJ,18231.07852566,kg +b05e5ea3-10a1-3aaf-90cb-ca20fb3ea33d,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2013,naphtha combustion consumption by freight transport,0.2487186702,TJ,CH4,3.0,kg/TJ,0.7461560106,kg +e3c3951d-6e05-3d72-8719-96db4857ab7d,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2013,naphtha combustion consumption by freight transport,0.2487186702,TJ,N2O,0.6,kg/TJ,0.14923120212,kg +3dcfff3c-8938-39fb-9019-efc6f5507f8f,SESCO,II.1.1,Tucuman,AR-T,annual,2013,naphtha combustion consumption by freight transport,0.04764692162999999,TJ,CO2,73300.0,kg/TJ,3492.5193554789994,kg +d19c9913-f187-37f5-8365-cb48a4a39eb8,SESCO,II.1.1,Tucuman,AR-T,annual,2013,naphtha combustion consumption by freight transport,0.04764692162999999,TJ,CH4,3.0,kg/TJ,0.14294076488999996,kg +72bd501c-7082-3962-906c-43eb152858a7,SESCO,II.1.1,Tucuman,AR-T,annual,2013,naphtha combustion consumption by freight transport,0.04764692162999999,TJ,N2O,0.6,kg/TJ,0.028588152977999992,kg +13c22e9b-921e-3b2f-a316-c410ce4198ad,SESCO,II.1.1,Buenos Aires,AR-B,annual,2013,naphtha combustion consumption by public passenger transport,2.2227499909999997,TJ,CO2,73300.0,kg/TJ,162927.57434029997,kg +bf819787-6b8e-37d6-a725-003e26cb83be,SESCO,II.1.1,Buenos Aires,AR-B,annual,2013,naphtha combustion consumption by public passenger transport,2.2227499909999997,TJ,CH4,3.0,kg/TJ,6.668249972999999,kg +7f79efa4-c6a7-304a-a7dc-1422646adb0c,SESCO,II.1.1,Buenos Aires,AR-B,annual,2013,naphtha combustion consumption by public passenger transport,2.2227499909999997,TJ,N2O,0.6,kg/TJ,1.3336499945999998,kg +e4bc32ed-253b-3cd5-bd55-0d0ba7b78a76,SESCO,II.1.1,Capital Federal,AR-C,annual,2013,naphtha combustion consumption by public passenger transport,0.039939284,TJ,CO2,73300.0,kg/TJ,2927.5495172,kg +6b262adb-ef0c-36aa-84a1-9a65aea4832c,SESCO,II.1.1,Capital Federal,AR-C,annual,2013,naphtha combustion consumption by public passenger transport,0.039939284,TJ,CH4,3.0,kg/TJ,0.119817852,kg +ac54cfdb-c2ae-3575-87ef-b700c81ec1fa,SESCO,II.1.1,Capital Federal,AR-C,annual,2013,naphtha combustion consumption by public passenger transport,0.039939284,TJ,N2O,0.6,kg/TJ,0.0239635704,kg +e06d0f96-a39b-3eae-8f69-b3c525573653,SESCO,II.1.1,Córdoba,AR-X,annual,2013,naphtha combustion consumption by public passenger transport,0.001288364,TJ,CO2,73300.0,kg/TJ,94.4370812,kg +876e68db-a29b-36ec-8bb5-e76ea74dfa40,SESCO,II.1.1,Córdoba,AR-X,annual,2013,naphtha combustion consumption by public passenger transport,0.001288364,TJ,CH4,3.0,kg/TJ,0.0038650919999999997,kg +d9855b46-25ab-3692-badd-a432b514fc01,SESCO,II.1.1,Córdoba,AR-X,annual,2013,naphtha combustion consumption by public passenger transport,0.001288364,TJ,N2O,0.6,kg/TJ,0.0007730183999999999,kg +d6d972a4-ae10-3ab0-b55b-fe1bf242b9bd,SESCO,II.1.1,Entre Rios,AR-E,annual,2013,naphtha combustion consumption by public passenger transport,0.0009662729999999999,TJ,CO2,73300.0,kg/TJ,70.82781089999999,kg +af8e80cd-b2d1-3404-9847-a79c963931b8,SESCO,II.1.1,Entre Rios,AR-E,annual,2013,naphtha combustion consumption by public passenger transport,0.0009662729999999999,TJ,CH4,3.0,kg/TJ,0.0028988189999999995,kg +b0821d67-88a3-3b16-8d16-43cb1d0c3162,SESCO,II.1.1,Entre Rios,AR-E,annual,2013,naphtha combustion consumption by public passenger transport,0.0009662729999999999,TJ,N2O,0.6,kg/TJ,0.0005797637999999999,kg +551663cd-ba19-30b3-85e9-7ba3058b6c3b,SESCO,II.1.1,Santa Fe,AR-S,annual,2013,naphtha combustion consumption by public passenger transport,0.053099922259999995,TJ,CO2,73300.0,kg/TJ,3892.2243016579996,kg +41a8e84a-0a13-376f-80e3-8d9a19f07195,SESCO,II.1.1,Santa Fe,AR-S,annual,2013,naphtha combustion consumption by public passenger transport,0.053099922259999995,TJ,CH4,3.0,kg/TJ,0.15929976678,kg +3cafadc9-6199-3671-b3a2-c44589968ab7,SESCO,II.1.1,Santa Fe,AR-S,annual,2013,naphtha combustion consumption by public passenger transport,0.053099922259999995,TJ,N2O,0.6,kg/TJ,0.031859953356,kg +e2e7017d-805d-3a52-96d1-6cce072da6f4,SESCO,II.1.1,Buenos Aires,AR-B,annual,2013,naphtha combustion consumption by public passenger transport,0.4187183,TJ,CO2,73300.0,kg/TJ,30692.05139,kg +130294c4-2c98-3e28-b0b7-e307f83a632c,SESCO,II.1.1,Buenos Aires,AR-B,annual,2013,naphtha combustion consumption by public passenger transport,0.4187183,TJ,CH4,3.0,kg/TJ,1.2561548999999999,kg +c9153a32-d546-3ad1-a420-6eb38e5cc814,SESCO,II.1.1,Buenos Aires,AR-B,annual,2013,naphtha combustion consumption by public passenger transport,0.4187183,TJ,N2O,0.6,kg/TJ,0.25123098,kg +d7d67c14-1b99-3b5c-9d88-c0b0f741bb6a,SESCO,II.1.1,Capital Federal,AR-C,annual,2013,naphtha combustion consumption by public passenger transport,0.19228832699999998,TJ,CO2,73300.0,kg/TJ,14094.734369099999,kg +032615aa-230b-3a3d-8d37-c4ee758355d6,SESCO,II.1.1,Capital Federal,AR-C,annual,2013,naphtha combustion consumption by public passenger transport,0.19228832699999998,TJ,CH4,3.0,kg/TJ,0.5768649809999999,kg +8156ee8e-949f-3e06-b8e5-2fc8c9249848,SESCO,II.1.1,Capital Federal,AR-C,annual,2013,naphtha combustion consumption by public passenger transport,0.19228832699999998,TJ,N2O,0.6,kg/TJ,0.11537299619999998,kg +e163b765-3ae5-3af6-8df8-8c5c5f61053e,SESCO,II.1.1,Entre Rios,AR-E,annual,2013,naphtha combustion consumption by public passenger transport,0.001288364,TJ,CO2,73300.0,kg/TJ,94.4370812,kg +839dfb69-7ccd-38b4-a312-07b3562a57d9,SESCO,II.1.1,Entre Rios,AR-E,annual,2013,naphtha combustion consumption by public passenger transport,0.001288364,TJ,CH4,3.0,kg/TJ,0.0038650919999999997,kg +bdfcd56d-fc34-321f-8b02-b426c672db77,SESCO,II.1.1,Entre Rios,AR-E,annual,2013,naphtha combustion consumption by public passenger transport,0.001288364,TJ,N2O,0.6,kg/TJ,0.0007730183999999999,kg +ace0d2c1-e6e9-35f3-8ae0-26a83acf4fbe,SESCO,II.1.1,Santa Fe,AR-S,annual,2013,naphtha combustion consumption by public passenger transport,0.011273184999999998,TJ,CO2,73300.0,kg/TJ,826.3244604999999,kg +a7fcd63c-4309-3bec-bee8-d5df536b8e79,SESCO,II.1.1,Santa Fe,AR-S,annual,2013,naphtha combustion consumption by public passenger transport,0.011273184999999998,TJ,CH4,3.0,kg/TJ,0.033819554999999994,kg +f4e092f9-ab2d-37ec-bd5e-497995f2b4c2,SESCO,II.1.1,Santa Fe,AR-S,annual,2013,naphtha combustion consumption by public passenger transport,0.011273184999999998,TJ,N2O,0.6,kg/TJ,0.006763910999999998,kg +da06fcbb-6b87-34e7-941c-31899fce326d,SESCO,II.5.1,Córdoba,AR-X,annual,2013,naphtha combustion consumption by agriculture machines,6.34692232867,TJ,CO2,73300.0,kg/TJ,465229.406691511,kg +9c1270d9-1679-3360-a28b-d22633cfc7f6,SESCO,II.5.1,Córdoba,AR-X,annual,2013,naphtha combustion consumption by agriculture machines,6.34692232867,TJ,CH4,3.0,kg/TJ,19.04076698601,kg +afb0373b-c073-3d86-b9f4-52f0822bf9f6,SESCO,II.5.1,Córdoba,AR-X,annual,2013,naphtha combustion consumption by agriculture machines,6.34692232867,TJ,N2O,0.6,kg/TJ,3.8081533972019996,kg +84a3df06-67e5-30c3-9afe-da9cb87507d0,SESCO,II.5.1,Santa Fe,AR-S,annual,2013,naphtha combustion consumption by agriculture machines,1.4225020178599999,TJ,CO2,73300.0,kg/TJ,104269.39790913799,kg +a56244cf-aee0-3bd8-8753-e60ccfd2bd14,SESCO,II.5.1,Santa Fe,AR-S,annual,2013,naphtha combustion consumption by agriculture machines,1.4225020178599999,TJ,CH4,3.0,kg/TJ,4.26750605358,kg +6eb10722-e4ea-3db8-b91f-0351579e6a45,SESCO,II.5.1,Santa Fe,AR-S,annual,2013,naphtha combustion consumption by agriculture machines,1.4225020178599999,TJ,N2O,0.6,kg/TJ,0.8535012107159999,kg +d60197dc-2b46-3f76-9bae-77d965b8a43a,SESCO,II.1.1,Buenos Aires,AR-B,annual,2013,naphtha combustion consumption by to the public,2319.96940054803,TJ,CO2,73300.0,kg/TJ,170053757.0601706,kg +440795eb-62de-3822-8985-d6f2eb7d7736,SESCO,II.1.1,Buenos Aires,AR-B,annual,2013,naphtha combustion consumption by to the public,2319.96940054803,TJ,CH4,3.0,kg/TJ,6959.90820164409,kg +28c5f149-259d-38d3-8a88-01e95f83b2c0,SESCO,II.1.1,Buenos Aires,AR-B,annual,2013,naphtha combustion consumption by to the public,2319.96940054803,TJ,N2O,0.6,kg/TJ,1391.981640328818,kg +ee0c0647-9e0f-3639-92b3-3ffa215f619a,SESCO,II.1.1,Capital Federal,AR-C,annual,2013,naphtha combustion consumption by to the public,254.41007936728997,TJ,CO2,73300.0,kg/TJ,18648258.817622356,kg +9d36cf40-9900-3e7b-b9bb-7ec5b5bafd85,SESCO,II.1.1,Capital Federal,AR-C,annual,2013,naphtha combustion consumption by to the public,254.41007936728997,TJ,CH4,3.0,kg/TJ,763.2302381018699,kg +489f0135-1800-31bd-a3b8-bebaa8db756f,SESCO,II.1.1,Capital Federal,AR-C,annual,2013,naphtha combustion consumption by to the public,254.41007936728997,TJ,N2O,0.6,kg/TJ,152.64604762037396,kg +527ab64f-141e-3021-a8b1-7b31af772d1a,SESCO,II.1.1,Catamarca,AR-K,annual,2013,naphtha combustion consumption by to the public,182.18581394859996,TJ,CO2,73300.0,kg/TJ,13354220.162432376,kg +11c0dd88-91ac-3594-a9d0-02e25d2db5b2,SESCO,II.1.1,Catamarca,AR-K,annual,2013,naphtha combustion consumption by to the public,182.18581394859996,TJ,CH4,3.0,kg/TJ,546.5574418457999,kg +44fb6920-b2fb-31a7-b232-7649423a8034,SESCO,II.1.1,Catamarca,AR-K,annual,2013,naphtha combustion consumption by to the public,182.18581394859996,TJ,N2O,0.6,kg/TJ,109.31148836915997,kg +0d1a604a-1400-3b09-83b6-55592ad624ea,SESCO,II.1.1,Chaco,AR-H,annual,2013,naphtha combustion consumption by to the public,329.74686794356995,TJ,CO2,73300.0,kg/TJ,24170445.420263678,kg +7d2c6a0e-e690-3c2e-a890-182c93aef592,SESCO,II.1.1,Chaco,AR-H,annual,2013,naphtha combustion consumption by to the public,329.74686794356995,TJ,CH4,3.0,kg/TJ,989.2406038307099,kg +d58233f3-7e0f-3545-9d5f-64fd20890177,SESCO,II.1.1,Chaco,AR-H,annual,2013,naphtha combustion consumption by to the public,329.74686794356995,TJ,N2O,0.6,kg/TJ,197.84812076614196,kg +2b146e3d-ebe1-33ed-aaa1-62e3a4ce8373,SESCO,II.1.1,Corrientes,AR-W,annual,2013,naphtha combustion consumption by to the public,439.04743420691995,TJ,CO2,73300.0,kg/TJ,32182176.927367233,kg +ae1e66eb-fdfc-3397-b97a-db05059fe8fa,SESCO,II.1.1,Corrientes,AR-W,annual,2013,naphtha combustion consumption by to the public,439.04743420691995,TJ,CH4,3.0,kg/TJ,1317.14230262076,kg +eaf05da0-a6c8-3665-9443-0d4ddf21024e,SESCO,II.1.1,Corrientes,AR-W,annual,2013,naphtha combustion consumption by to the public,439.04743420691995,TJ,N2O,0.6,kg/TJ,263.42846052415194,kg +d3cbe16c-cb3f-3880-ae26-02fbb55e8bda,SESCO,II.1.1,Córdoba,AR-X,annual,2013,naphtha combustion consumption by to the public,869.7781405982898,TJ,CO2,73300.0,kg/TJ,63754737.70585465,kg +9314e55b-542f-35d8-b8d3-1344bef55caf,SESCO,II.1.1,Córdoba,AR-X,annual,2013,naphtha combustion consumption by to the public,869.7781405982898,TJ,CH4,3.0,kg/TJ,2609.3344217948697,kg +03efecaa-a7e3-3456-bea5-11c37ffc2702,SESCO,II.1.1,Córdoba,AR-X,annual,2013,naphtha combustion consumption by to the public,869.7781405982898,TJ,N2O,0.6,kg/TJ,521.8668843589738,kg +a6d4f3de-eea6-3f0c-bd25-a920a70bc3dc,SESCO,II.1.1,Entre Rios,AR-E,annual,2013,naphtha combustion consumption by to the public,559.79368452623,TJ,CO2,73300.0,kg/TJ,41032877.07577266,kg +97f9bc87-e761-3864-9de1-1db7728228a0,SESCO,II.1.1,Entre Rios,AR-E,annual,2013,naphtha combustion consumption by to the public,559.79368452623,TJ,CH4,3.0,kg/TJ,1679.38105357869,kg +7aec3598-aac6-3986-8a97-d915bb1dd0a4,SESCO,II.1.1,Entre Rios,AR-E,annual,2013,naphtha combustion consumption by to the public,559.79368452623,TJ,N2O,0.6,kg/TJ,335.87621071573795,kg +4df6caf2-f679-3449-aff6-adc9acc99744,SESCO,II.1.1,Formosa,AR-P,annual,2013,naphtha combustion consumption by to the public,18.922643332669995,TJ,CO2,73300.0,kg/TJ,1387029.7562847107,kg +458cbd98-23b6-31fd-b15e-5388ec78b8f8,SESCO,II.1.1,Formosa,AR-P,annual,2013,naphtha combustion consumption by to the public,18.922643332669995,TJ,CH4,3.0,kg/TJ,56.76792999800999,kg +17d005f4-da70-3b7c-85c6-42b8a1ae245a,SESCO,II.1.1,Formosa,AR-P,annual,2013,naphtha combustion consumption by to the public,18.922643332669995,TJ,N2O,0.6,kg/TJ,11.353585999601997,kg +15ffa2f0-e670-382d-904e-7e164a1c0080,SESCO,II.1.1,Jujuy,AR-Y,annual,2013,naphtha combustion consumption by to the public,34.61887857197,TJ,CO2,73300.0,kg/TJ,2537563.799325401,kg +d9639664-cbd8-3f17-b9d1-714f687d1935,SESCO,II.1.1,Jujuy,AR-Y,annual,2013,naphtha combustion consumption by to the public,34.61887857197,TJ,CH4,3.0,kg/TJ,103.85663571591,kg +d1d25015-4ebe-300e-82f4-07db5842d251,SESCO,II.1.1,Jujuy,AR-Y,annual,2013,naphtha combustion consumption by to the public,34.61887857197,TJ,N2O,0.6,kg/TJ,20.771327143182,kg +f21aa27b-3f66-3eb6-8cc6-b13396456830,SESCO,II.1.1,La Pampa,AR-L,annual,2013,naphtha combustion consumption by to the public,18.615899968819996,TJ,CO2,73300.0,kg/TJ,1364545.4677145057,kg +23854e19-9cd3-3264-9ac8-d847cb245a62,SESCO,II.1.1,La Pampa,AR-L,annual,2013,naphtha combustion consumption by to the public,18.615899968819996,TJ,CH4,3.0,kg/TJ,55.84769990645999,kg +25e014ee-9f2a-343d-937b-2622afe77591,SESCO,II.1.1,La Pampa,AR-L,annual,2013,naphtha combustion consumption by to the public,18.615899968819996,TJ,N2O,0.6,kg/TJ,11.169539981291997,kg +aa4cca80-f694-3ea0-aa42-57192fbbda29,SESCO,II.1.1,La Rioja,AR-F,annual,2013,naphtha combustion consumption by to the public,92.29998164771999,TJ,CO2,73300.0,kg/TJ,6765588.654777875,kg +bcdf9fd6-61d9-364d-9c24-db5869653cbb,SESCO,II.1.1,La Rioja,AR-F,annual,2013,naphtha combustion consumption by to the public,92.29998164771999,TJ,CH4,3.0,kg/TJ,276.89994494316,kg +4af5113a-73ff-3245-9198-c1cc828fa845,SESCO,II.1.1,La Rioja,AR-F,annual,2013,naphtha combustion consumption by to the public,92.29998164771999,TJ,N2O,0.6,kg/TJ,55.37998898863199,kg +b83b11f7-c2d7-3de1-9736-6df6e9e09e78,SESCO,II.1.1,Mendoza,AR-M,annual,2013,naphtha combustion consumption by to the public,396.62081534306,TJ,CO2,73300.0,kg/TJ,29072305.764646295,kg +3d12559b-6cba-3964-b6c1-43b86637e09f,SESCO,II.1.1,Mendoza,AR-M,annual,2013,naphtha combustion consumption by to the public,396.62081534306,TJ,CH4,3.0,kg/TJ,1189.8624460291799,kg +b332f547-68fe-312a-9e97-a184ccc3804d,SESCO,II.1.1,Mendoza,AR-M,annual,2013,naphtha combustion consumption by to the public,396.62081534306,TJ,N2O,0.6,kg/TJ,237.97248920583598,kg +c05a3236-6eee-3174-b537-61ca179825e7,SESCO,II.1.1,Misiones,AR-N,annual,2013,naphtha combustion consumption by to the public,265.17573591586,TJ,CO2,73300.0,kg/TJ,19437381.442632537,kg +13d1a868-abae-39cc-8359-da3d24710ebc,SESCO,II.1.1,Misiones,AR-N,annual,2013,naphtha combustion consumption by to the public,265.17573591586,TJ,CH4,3.0,kg/TJ,795.52720774758,kg +a59a8c77-c9d3-3f85-b164-ce70820443b0,SESCO,II.1.1,Misiones,AR-N,annual,2013,naphtha combustion consumption by to the public,265.17573591586,TJ,N2O,0.6,kg/TJ,159.105441549516,kg +27179abf-5119-3c39-b39d-4599bebd5e70,SESCO,II.1.1,Rio Negro,AR-R,annual,2013,naphtha combustion consumption by to the public,17.743584134429998,TJ,CO2,73300.0,kg/TJ,1300604.7170537189,kg +52db7ede-480e-3751-8194-6213e614b147,SESCO,II.1.1,Rio Negro,AR-R,annual,2013,naphtha combustion consumption by to the public,17.743584134429998,TJ,CH4,3.0,kg/TJ,53.23075240329,kg +61a995f5-3838-34b1-b053-43685779827b,SESCO,II.1.1,Rio Negro,AR-R,annual,2013,naphtha combustion consumption by to the public,17.743584134429998,TJ,N2O,0.6,kg/TJ,10.646150480658,kg +57ae8fea-9f10-3509-842c-75afb9e6055a,SESCO,II.1.1,San Juan,AR-J,annual,2013,naphtha combustion consumption by to the public,254.04614874638997,TJ,CO2,73300.0,kg/TJ,18621582.703110386,kg +c5f730f5-b3b0-3d72-bfb4-e2c524b54592,SESCO,II.1.1,San Juan,AR-J,annual,2013,naphtha combustion consumption by to the public,254.04614874638997,TJ,CH4,3.0,kg/TJ,762.13844623917,kg +10adb85c-bf0f-328b-87e5-502e525ebb29,SESCO,II.1.1,San Juan,AR-J,annual,2013,naphtha combustion consumption by to the public,254.04614874638997,TJ,N2O,0.6,kg/TJ,152.42768924783397,kg +5e58bc03-4f91-32d1-84f9-275ec30f26b7,SESCO,II.1.1,San Luis,AR-D,annual,2013,naphtha combustion consumption by to the public,168.97645298303,TJ,CO2,73300.0,kg/TJ,12385974.003656099,kg +649c84fc-c21d-3135-8d1d-83689d905c00,SESCO,II.1.1,San Luis,AR-D,annual,2013,naphtha combustion consumption by to the public,168.97645298303,TJ,CH4,3.0,kg/TJ,506.92935894909,kg +529d2c90-c655-3c33-a952-a526ab893941,SESCO,II.1.1,San Luis,AR-D,annual,2013,naphtha combustion consumption by to the public,168.97645298303,TJ,N2O,0.6,kg/TJ,101.38587178981798,kg +36709cf0-5fe1-3f55-9329-0ba228b3e8cc,SESCO,II.1.1,Santa Fe,AR-S,annual,2013,naphtha combustion consumption by to the public,1350.8699135238999,TJ,CO2,73300.0,kg/TJ,99018764.66130187,kg +a6efd4e2-54f0-35b4-a7d3-41c7f99e5fd7,SESCO,II.1.1,Santa Fe,AR-S,annual,2013,naphtha combustion consumption by to the public,1350.8699135238999,TJ,CH4,3.0,kg/TJ,4052.6097405716996,kg +0673dabd-6045-3967-a462-df10d5678612,SESCO,II.1.1,Santa Fe,AR-S,annual,2013,naphtha combustion consumption by to the public,1350.8699135238999,TJ,N2O,0.6,kg/TJ,810.5219481143399,kg +72eb03fa-ce76-3c9a-a20c-3652d7f6fd3f,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2013,naphtha combustion consumption by to the public,214.33715981138997,TJ,CO2,73300.0,kg/TJ,15710913.814174885,kg +fc81d96c-84e6-3252-bab2-41dce9e05cf2,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2013,naphtha combustion consumption by to the public,214.33715981138997,TJ,CH4,3.0,kg/TJ,643.0114794341699,kg +473560c3-95c9-3f10-8f07-6529fc0eeed3,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2013,naphtha combustion consumption by to the public,214.33715981138997,TJ,N2O,0.6,kg/TJ,128.60229588683399,kg +b066b840-29b6-3119-b2dd-4aede18d3bd8,SESCO,II.1.1,Tucuman,AR-T,annual,2013,naphtha combustion consumption by to the public,210.69139567783998,TJ,CO2,73300.0,kg/TJ,15443679.30318567,kg +c3b651ef-9024-36ac-905c-e16c13549773,SESCO,II.1.1,Tucuman,AR-T,annual,2013,naphtha combustion consumption by to the public,210.69139567783998,TJ,CH4,3.0,kg/TJ,632.0741870335199,kg +ba20cf0f-bf74-3db1-802e-87e37af1988a,SESCO,II.1.1,Tucuman,AR-T,annual,2013,naphtha combustion consumption by to the public,210.69139567783998,TJ,N2O,0.6,kg/TJ,126.41483740670398,kg +3c7ce6d9-8ed9-3aab-ab67-8d79dcbee588,SESCO,II.1.1,Buenos Aires,AR-B,annual,2013,naphtha combustion consumption by to the public,379.22455803848,TJ,CO2,73300.0,kg/TJ,27797160.104220584,kg +3f795218-2655-37a5-af5e-7bcefe34c0df,SESCO,II.1.1,Buenos Aires,AR-B,annual,2013,naphtha combustion consumption by to the public,379.22455803848,TJ,CH4,3.0,kg/TJ,1137.67367411544,kg +4e216c5a-0fda-34cd-bf23-233b5698d742,SESCO,II.1.1,Buenos Aires,AR-B,annual,2013,naphtha combustion consumption by to the public,379.22455803848,TJ,N2O,0.6,kg/TJ,227.53473482308797,kg +7b700e72-2e7e-3ca8-88fe-58d8e4e63992,SESCO,II.1.1,Capital Federal,AR-C,annual,2013,naphtha combustion consumption by to the public,69.14097846117,TJ,CO2,73300.0,kg/TJ,5068033.72120376,kg +ac865dfb-f1fd-3c6d-9b4e-78ecb366945f,SESCO,II.1.1,Capital Federal,AR-C,annual,2013,naphtha combustion consumption by to the public,69.14097846117,TJ,CH4,3.0,kg/TJ,207.42293538350998,kg +021a683e-0cd4-3263-87c8-89f39f5dd419,SESCO,II.1.1,Capital Federal,AR-C,annual,2013,naphtha combustion consumption by to the public,69.14097846117,TJ,N2O,0.6,kg/TJ,41.48458707670199,kg +c7f29313-6bb9-3737-b0b2-d2c8e671ce09,SESCO,II.1.1,Catamarca,AR-K,annual,2013,naphtha combustion consumption by to the public,16.414849248489997,TJ,CO2,73300.0,kg/TJ,1203208.4499143169,kg +7aa7553c-1541-32d5-bd39-0188149f788d,SESCO,II.1.1,Catamarca,AR-K,annual,2013,naphtha combustion consumption by to the public,16.414849248489997,TJ,CH4,3.0,kg/TJ,49.24454774546999,kg +d86a2ec4-02e4-3a5d-84c8-2afdd72a9c29,SESCO,II.1.1,Catamarca,AR-K,annual,2013,naphtha combustion consumption by to the public,16.414849248489997,TJ,N2O,0.6,kg/TJ,9.848909549093998,kg +ecec2e15-4642-3a1c-b2d9-d2cb96e927cd,SESCO,II.1.1,Chaco,AR-H,annual,2013,naphtha combustion consumption by to the public,28.121311061689998,TJ,CO2,73300.0,kg/TJ,2061292.100821877,kg +942b9e8d-0535-3b32-b0b0-c8b94c2de739,SESCO,II.1.1,Chaco,AR-H,annual,2013,naphtha combustion consumption by to the public,28.121311061689998,TJ,CH4,3.0,kg/TJ,84.36393318507,kg +84681bed-77fb-343c-8873-857ac3a8c4ba,SESCO,II.1.1,Chaco,AR-H,annual,2013,naphtha combustion consumption by to the public,28.121311061689998,TJ,N2O,0.6,kg/TJ,16.872786637014,kg +bf57b5d7-c2f6-37ed-be94-8b4f85ac58a2,SESCO,II.1.1,Corrientes,AR-W,annual,2013,naphtha combustion consumption by to the public,67.99324583359,TJ,CO2,73300.0,kg/TJ,4983904.919602146,kg +001901a9-1bdf-35b8-87ec-e18e73f0c7fe,SESCO,II.1.1,Corrientes,AR-W,annual,2013,naphtha combustion consumption by to the public,67.99324583359,TJ,CH4,3.0,kg/TJ,203.97973750077,kg +5582f5c0-784f-32c3-9484-afccd23e47bc,SESCO,II.1.1,Corrientes,AR-W,annual,2013,naphtha combustion consumption by to the public,67.99324583359,TJ,N2O,0.6,kg/TJ,40.79594750015399,kg +b7fd5d03-1853-3dd4-939e-d2c2510e77fc,SESCO,II.1.1,Córdoba,AR-X,annual,2013,naphtha combustion consumption by to the public,159.37531000314,TJ,CO2,73300.0,kg/TJ,11682210.22323016,kg +2e4eb262-bdf7-386a-b82a-59dd45e79c62,SESCO,II.1.1,Córdoba,AR-X,annual,2013,naphtha combustion consumption by to the public,159.37531000314,TJ,CH4,3.0,kg/TJ,478.12593000941996,kg +46a86732-7946-3bcc-aa20-e51a92d9a2e7,SESCO,II.1.1,Córdoba,AR-X,annual,2013,naphtha combustion consumption by to the public,159.37531000314,TJ,N2O,0.6,kg/TJ,95.62518600188399,kg +787bc443-1592-32ba-adf6-ccabf6b962cb,SESCO,II.1.1,Entre Rios,AR-E,annual,2013,naphtha combustion consumption by to the public,103.36460950431,TJ,CO2,73300.0,kg/TJ,7576625.876665923,kg +d6875bd4-a7c8-3808-b2a8-7ffe6a17b8a8,SESCO,II.1.1,Entre Rios,AR-E,annual,2013,naphtha combustion consumption by to the public,103.36460950431,TJ,CH4,3.0,kg/TJ,310.09382851293,kg +e8aec188-4989-3bb4-b6ad-f0e3e519114a,SESCO,II.1.1,Entre Rios,AR-E,annual,2013,naphtha combustion consumption by to the public,103.36460950431,TJ,N2O,0.6,kg/TJ,62.018765702585995,kg +4dd50c8e-16b1-3fa2-b387-f1953e340a5e,SESCO,II.1.1,Jujuy,AR-Y,annual,2013,naphtha combustion consumption by to the public,2.2427325166399994,TJ,CO2,73300.0,kg/TJ,164392.29346971196,kg +9d084528-a0a4-32be-9465-13e9becf50f4,SESCO,II.1.1,Jujuy,AR-Y,annual,2013,naphtha combustion consumption by to the public,2.2427325166399994,TJ,CH4,3.0,kg/TJ,6.728197549919998,kg +73aa4f23-77f2-3549-8790-e2745764bb99,SESCO,II.1.1,Jujuy,AR-Y,annual,2013,naphtha combustion consumption by to the public,2.2427325166399994,TJ,N2O,0.6,kg/TJ,1.3456395099839995,kg +60efd8a6-ab82-3ef9-9c89-1ce98ccca7b3,SESCO,II.1.1,La Pampa,AR-L,annual,2013,naphtha combustion consumption by to the public,3.58961078861,TJ,CO2,73300.0,kg/TJ,263118.470805113,kg +36565f29-6bdf-3944-91d1-7859284fd8fc,SESCO,II.1.1,La Pampa,AR-L,annual,2013,naphtha combustion consumption by to the public,3.58961078861,TJ,CH4,3.0,kg/TJ,10.76883236583,kg +0eea4e79-12b0-300d-8c2f-6b0c84e96bcb,SESCO,II.1.1,La Pampa,AR-L,annual,2013,naphtha combustion consumption by to the public,3.58961078861,TJ,N2O,0.6,kg/TJ,2.153766473166,kg +1179d870-9060-310f-b0fe-f3d40028f49c,SESCO,II.1.1,La Rioja,AR-F,annual,2013,naphtha combustion consumption by to the public,5.555535078939998,TJ,CO2,73300.0,kg/TJ,407220.7212863019,kg +cb3af812-0a82-31ce-8a81-9cfd9d2a06e5,SESCO,II.1.1,La Rioja,AR-F,annual,2013,naphtha combustion consumption by to the public,5.555535078939998,TJ,CH4,3.0,kg/TJ,16.666605236819997,kg +6276318d-7564-3015-b5a1-70722bffedde,SESCO,II.1.1,La Rioja,AR-F,annual,2013,naphtha combustion consumption by to the public,5.555535078939998,TJ,N2O,0.6,kg/TJ,3.333321047363999,kg +b646b9c2-cca5-35bc-842f-afc3d0418a60,SESCO,II.1.1,Mendoza,AR-M,annual,2013,naphtha combustion consumption by to the public,66.42757436622999,TJ,CO2,73300.0,kg/TJ,4869141.201044658,kg +c292b064-17a7-3f55-97da-1c6714688c3a,SESCO,II.1.1,Mendoza,AR-M,annual,2013,naphtha combustion consumption by to the public,66.42757436622999,TJ,CH4,3.0,kg/TJ,199.28272309868998,kg +d3e799fb-23e1-3991-aa15-5d311ecbc793,SESCO,II.1.1,Mendoza,AR-M,annual,2013,naphtha combustion consumption by to the public,66.42757436622999,TJ,N2O,0.6,kg/TJ,39.856544619737996,kg +09b6a1c6-12a9-36cf-a739-eb17b4251b84,SESCO,II.1.1,Misiones,AR-N,annual,2013,naphtha combustion consumption by to the public,31.92853297172,TJ,CO2,73300.0,kg/TJ,2340361.466827076,kg +f7c59c75-ac49-3de9-8b50-69b364e9707b,SESCO,II.1.1,Misiones,AR-N,annual,2013,naphtha combustion consumption by to the public,31.92853297172,TJ,CH4,3.0,kg/TJ,95.78559891516,kg +e4348b1e-9c05-3718-bcfa-861d825ed346,SESCO,II.1.1,Misiones,AR-N,annual,2013,naphtha combustion consumption by to the public,31.92853297172,TJ,N2O,0.6,kg/TJ,19.157119783031998,kg +0769d20c-5b62-32b5-bc43-0f8712bec75c,SESCO,II.1.1,Rio Negro,AR-R,annual,2013,naphtha combustion consumption by to the public,1.3955365593400002,TJ,CO2,73300.0,kg/TJ,102292.82979962202,kg +06fedcb5-6789-38ad-9a61-0cfc6c6a7b57,SESCO,II.1.1,Rio Negro,AR-R,annual,2013,naphtha combustion consumption by to the public,1.3955365593400002,TJ,CH4,3.0,kg/TJ,4.186609678020001,kg +13244d77-1006-30b8-984d-b6dbde230350,SESCO,II.1.1,Rio Negro,AR-R,annual,2013,naphtha combustion consumption by to the public,1.3955365593400002,TJ,N2O,0.6,kg/TJ,0.8373219356040001,kg +6eabc73b-ee29-302a-8a4b-9389048d274e,SESCO,II.1.1,San Juan,AR-J,annual,2013,naphtha combustion consumption by to the public,61.04368802300999,TJ,CO2,73300.0,kg/TJ,4474502.332086632,kg +52d97248-7c22-3293-9ba7-50809ac63f2a,SESCO,II.1.1,San Juan,AR-J,annual,2013,naphtha combustion consumption by to the public,61.04368802300999,TJ,CH4,3.0,kg/TJ,183.13106406902997,kg +7ef55a77-d39d-3c60-8950-1041e3d0d91d,SESCO,II.1.1,San Juan,AR-J,annual,2013,naphtha combustion consumption by to the public,61.04368802300999,TJ,N2O,0.6,kg/TJ,36.62621281380599,kg +3184b0ba-1f17-3f46-acc9-85769742a469,SESCO,II.1.1,San Luis,AR-D,annual,2013,naphtha combustion consumption by to the public,35.41363167265,TJ,CO2,73300.0,kg/TJ,2595819.201605245,kg +b6f41625-0835-3c45-b918-9520b1cd0d59,SESCO,II.1.1,San Luis,AR-D,annual,2013,naphtha combustion consumption by to the public,35.41363167265,TJ,CH4,3.0,kg/TJ,106.24089501795,kg +47eac5ff-4453-39f9-809f-146abefe8acb,SESCO,II.1.1,San Luis,AR-D,annual,2013,naphtha combustion consumption by to the public,35.41363167265,TJ,N2O,0.6,kg/TJ,21.24817900359,kg +b13a85df-49e3-3ac7-8a05-d05f8ac5964e,SESCO,II.1.1,Santa Fe,AR-S,annual,2013,naphtha combustion consumption by to the public,240.47756613033997,TJ,CO2,73300.0,kg/TJ,17627005.59735392,kg +e43ca2da-291c-31cc-a39e-75ac224036e6,SESCO,II.1.1,Santa Fe,AR-S,annual,2013,naphtha combustion consumption by to the public,240.47756613033997,TJ,CH4,3.0,kg/TJ,721.4326983910199,kg +963b79fc-8247-36b5-aa89-1ef6f9340560,SESCO,II.1.1,Santa Fe,AR-S,annual,2013,naphtha combustion consumption by to the public,240.47756613033997,TJ,N2O,0.6,kg/TJ,144.28653967820398,kg +59c584b7-cea2-3cb4-b919-44885aef21f0,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2013,naphtha combustion consumption by to the public,27.29202980581,TJ,CO2,73300.0,kg/TJ,2000505.7847658729,kg +616029be-92d6-3927-80bc-84edbdc234e7,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2013,naphtha combustion consumption by to the public,27.29202980581,TJ,CH4,3.0,kg/TJ,81.87608941743,kg +0581c7f4-2307-3cdc-af95-2b071727408c,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2013,naphtha combustion consumption by to the public,27.29202980581,TJ,N2O,0.6,kg/TJ,16.375217883486,kg +21bf8c9c-a992-3ecc-bd9b-e8aced300d94,SESCO,II.1.1,Tucuman,AR-T,annual,2013,naphtha combustion consumption by to the public,29.140210510179998,TJ,CO2,73300.0,kg/TJ,2135977.4303961936,kg +cb9c18eb-58e1-3e18-b715-9b8878df2829,SESCO,II.1.1,Tucuman,AR-T,annual,2013,naphtha combustion consumption by to the public,29.140210510179998,TJ,CH4,3.0,kg/TJ,87.42063153053999,kg +ec08fe25-4b28-387d-89df-873c15d1f9b1,SESCO,II.1.1,Tucuman,AR-T,annual,2013,naphtha combustion consumption by to the public,29.140210510179998,TJ,N2O,0.6,kg/TJ,17.484126306108,kg +819ccc68-3668-3912-835f-caacc98b0702,SESCO,II.5.1,Buenos Aires,AR-B,annual,2013,naphtha combustion consumption by agriculture machines,4.48672763,TJ,CO2,73300.0,kg/TJ,328877.135279,kg +84d3153a-57fa-3e6e-ae77-b9c7a6812286,SESCO,II.5.1,Buenos Aires,AR-B,annual,2013,naphtha combustion consumption by agriculture machines,4.48672763,TJ,CH4,3.0,kg/TJ,13.460182889999999,kg +5a0097f2-673b-307e-a367-5ff8a1fc3480,SESCO,II.5.1,Buenos Aires,AR-B,annual,2013,naphtha combustion consumption by agriculture machines,4.48672763,TJ,N2O,0.6,kg/TJ,2.6920365779999997,kg +8cfc1b1e-e683-3de0-ac97-14f35683b866,SESCO,II.1.1,Buenos Aires,AR-B,annual,2013,naphtha combustion consumption by to the public,5138.661555142499,TJ,CO2,73300.0,kg/TJ,376663891.9919452,kg +a98dddf5-c6ff-31a7-88f6-f34962377a09,SESCO,II.1.1,Buenos Aires,AR-B,annual,2013,naphtha combustion consumption by to the public,5138.661555142499,TJ,CH4,3.0,kg/TJ,15415.984665427499,kg +34d6b239-e9bf-3b1c-8e93-76eccdb555bc,SESCO,II.1.1,Buenos Aires,AR-B,annual,2013,naphtha combustion consumption by to the public,5138.661555142499,TJ,N2O,0.6,kg/TJ,3083.1969330854995,kg +582e853d-af71-3b6f-badd-0aefe2cb2d7c,SESCO,II.1.1,Capital Federal,AR-C,annual,2013,naphtha combustion consumption by to the public,656.7803317922,TJ,CO2,73300.0,kg/TJ,48141998.32036825,kg +93bf5375-2269-3611-bc7c-9847970f1853,SESCO,II.1.1,Capital Federal,AR-C,annual,2013,naphtha combustion consumption by to the public,656.7803317922,TJ,CH4,3.0,kg/TJ,1970.3409953766,kg +ddcae0ef-fe45-3fe2-89a4-550707be5c14,SESCO,II.1.1,Capital Federal,AR-C,annual,2013,naphtha combustion consumption by to the public,656.7803317922,TJ,N2O,0.6,kg/TJ,394.06819907531997,kg +67208cb9-59ed-32e8-929e-c4710d7995c3,SESCO,II.1.1,Chaco,AR-H,annual,2013,naphtha combustion consumption by to the public,5.6491218399,TJ,CO2,73300.0,kg/TJ,414080.63086467003,kg +5ff54b38-6bb2-37fb-bf52-e464d50a8d2e,SESCO,II.1.1,Chaco,AR-H,annual,2013,naphtha combustion consumption by to the public,5.6491218399,TJ,CH4,3.0,kg/TJ,16.9473655197,kg +c9397861-eb97-3d51-bf10-9a6e21d1c793,SESCO,II.1.1,Chaco,AR-H,annual,2013,naphtha combustion consumption by to the public,5.6491218399,TJ,N2O,0.6,kg/TJ,3.38947310394,kg +aff1fbcb-1438-3af3-8c63-c26b083435e9,SESCO,II.1.1,Chubut,AR-U,annual,2013,naphtha combustion consumption by to the public,1521.7293974574998,TJ,CO2,73300.0,kg/TJ,111542764.83363473,kg +5fec8fa1-b3d6-3b84-8196-b997a2332588,SESCO,II.1.1,Chubut,AR-U,annual,2013,naphtha combustion consumption by to the public,1521.7293974574998,TJ,CH4,3.0,kg/TJ,4565.1881923724995,kg +72c5b360-4292-3d57-8dc8-81943569065a,SESCO,II.1.1,Chubut,AR-U,annual,2013,naphtha combustion consumption by to the public,1521.7293974574998,TJ,N2O,0.6,kg/TJ,913.0376384744999,kg +163b668c-9d6b-3f9f-85b3-4d90176fb8c2,SESCO,II.1.1,Córdoba,AR-X,annual,2013,naphtha combustion consumption by to the public,644.5573004332,TJ,CO2,73300.0,kg/TJ,47246050.12175356,kg +195e22dc-b260-3ae4-994e-3cbb484cb881,SESCO,II.1.1,Córdoba,AR-X,annual,2013,naphtha combustion consumption by to the public,644.5573004332,TJ,CH4,3.0,kg/TJ,1933.6719012996,kg +1cbcc9c3-935f-3b8f-9873-9ac79d657274,SESCO,II.1.1,Córdoba,AR-X,annual,2013,naphtha combustion consumption by to the public,644.5573004332,TJ,N2O,0.6,kg/TJ,386.73438025992,kg +ce010818-107e-35c1-8408-e4782f3261ce,SESCO,II.1.1,Entre Rios,AR-E,annual,2013,naphtha combustion consumption by to the public,118.35159714069998,TJ,CO2,73300.0,kg/TJ,8675172.070413308,kg +db5fa0c9-b041-30d5-9052-e3698e9acfab,SESCO,II.1.1,Entre Rios,AR-E,annual,2013,naphtha combustion consumption by to the public,118.35159714069998,TJ,CH4,3.0,kg/TJ,355.0547914220999,kg +ed060c2e-f909-3b54-b085-3e011e055822,SESCO,II.1.1,Entre Rios,AR-E,annual,2013,naphtha combustion consumption by to the public,118.35159714069998,TJ,N2O,0.6,kg/TJ,71.01095828441998,kg +ebfccaa1-fdd4-3cf3-b523-c5903feeffdd,SESCO,II.1.1,La Pampa,AR-L,annual,2013,naphtha combustion consumption by to the public,234.215234561,TJ,CO2,73300.0,kg/TJ,17167976.6933213,kg +466b774e-8a02-3885-94a2-78aaded3df95,SESCO,II.1.1,La Pampa,AR-L,annual,2013,naphtha combustion consumption by to the public,234.215234561,TJ,CH4,3.0,kg/TJ,702.645703683,kg +cc4e8242-7de7-31b2-b178-84f27d846b1f,SESCO,II.1.1,La Pampa,AR-L,annual,2013,naphtha combustion consumption by to the public,234.215234561,TJ,N2O,0.6,kg/TJ,140.5291407366,kg +0a567a98-729a-36a7-9b00-b24a41372622,SESCO,II.1.1,Mendoza,AR-M,annual,2013,naphtha combustion consumption by to the public,34.0724930623,TJ,CO2,73300.0,kg/TJ,2497513.7414665897,kg +1bbb3369-c17e-3513-a2af-04c0754e2d6d,SESCO,II.1.1,Mendoza,AR-M,annual,2013,naphtha combustion consumption by to the public,34.0724930623,TJ,CH4,3.0,kg/TJ,102.2174791869,kg +5e65ae99-9386-3856-b771-9437e930520e,SESCO,II.1.1,Mendoza,AR-M,annual,2013,naphtha combustion consumption by to the public,34.0724930623,TJ,N2O,0.6,kg/TJ,20.44349583738,kg +26e7ecd7-e766-3d66-af8b-5f03a330f2c5,SESCO,II.1.1,Neuquén,AR-Q,annual,2013,naphtha combustion consumption by to the public,591.3928633459,TJ,CO2,73300.0,kg/TJ,43349096.88325447,kg +d980ce8d-50da-3b83-987a-9c16115716dd,SESCO,II.1.1,Neuquén,AR-Q,annual,2013,naphtha combustion consumption by to the public,591.3928633459,TJ,CH4,3.0,kg/TJ,1774.1785900377,kg +b834cbcd-a737-381e-853a-a8111344777b,SESCO,II.1.1,Neuquén,AR-Q,annual,2013,naphtha combustion consumption by to the public,591.3928633459,TJ,N2O,0.6,kg/TJ,354.83571800754,kg +6cc0e20d-051a-3a4f-8328-7736c1652577,SESCO,II.1.1,Rio Negro,AR-R,annual,2013,naphtha combustion consumption by to the public,1090.9907579647997,TJ,CO2,73300.0,kg/TJ,79969622.55881982,kg +0cd18306-a7c1-3f66-9cc7-d92851d375de,SESCO,II.1.1,Rio Negro,AR-R,annual,2013,naphtha combustion consumption by to the public,1090.9907579647997,TJ,CH4,3.0,kg/TJ,3272.972273894399,kg +91b203b5-a70a-3555-b4f6-3086396324b3,SESCO,II.1.1,Rio Negro,AR-R,annual,2013,naphtha combustion consumption by to the public,1090.9907579647997,TJ,N2O,0.6,kg/TJ,654.5944547788798,kg +425e9ee1-2a02-3f6f-959f-19609468391b,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2013,naphtha combustion consumption by to the public,960.5723436000999,TJ,CO2,73300.0,kg/TJ,70409952.78588732,kg +0e8dd43f-4768-33a6-88b7-056d859a7779,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2013,naphtha combustion consumption by to the public,960.5723436000999,TJ,CH4,3.0,kg/TJ,2881.7170308002997,kg +b16f6a19-323b-3b23-add7-b1692fcdc827,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2013,naphtha combustion consumption by to the public,960.5723436000999,TJ,N2O,0.6,kg/TJ,576.3434061600599,kg +ded24dc4-c365-3625-8574-5fee08edec18,SESCO,II.1.1,Santa Fe,AR-S,annual,2013,naphtha combustion consumption by to the public,627.8151390895999,TJ,CO2,73300.0,kg/TJ,46018849.69526768,kg +66070480-2f21-30f8-b77e-d5d3a25b1803,SESCO,II.1.1,Santa Fe,AR-S,annual,2013,naphtha combustion consumption by to the public,627.8151390895999,TJ,CH4,3.0,kg/TJ,1883.4454172687997,kg +8c2a855e-ef2c-3bb7-a789-09cb0250ecef,SESCO,II.1.1,Santa Fe,AR-S,annual,2013,naphtha combustion consumption by to the public,627.8151390895999,TJ,N2O,0.6,kg/TJ,376.68908345375996,kg +fd97de7f-78ae-349e-910a-51032eace2fe,SESCO,II.1.1,Buenos Aires,AR-B,annual,2013,naphtha combustion consumption by to the public,1439.6369691781,TJ,CO2,73300.0,kg/TJ,105525389.84075472,kg +ff524bae-d5fc-348b-92ca-2faee0d2f6ac,SESCO,II.1.1,Buenos Aires,AR-B,annual,2013,naphtha combustion consumption by to the public,1439.6369691781,TJ,CH4,3.0,kg/TJ,4318.910907534299,kg +f03fb9f7-25bc-3faa-8646-81dd68f093a7,SESCO,II.1.1,Buenos Aires,AR-B,annual,2013,naphtha combustion consumption by to the public,1439.6369691781,TJ,N2O,0.6,kg/TJ,863.78218150686,kg +c2bce913-2d33-3d5c-bfd7-6edb71455098,SESCO,II.1.1,Capital Federal,AR-C,annual,2013,naphtha combustion consumption by to the public,250.3072874302,TJ,CO2,73300.0,kg/TJ,18347524.168633662,kg +74f80d5c-1d6c-39d8-8fe0-b22cbb9c1884,SESCO,II.1.1,Capital Federal,AR-C,annual,2013,naphtha combustion consumption by to the public,250.3072874302,TJ,CH4,3.0,kg/TJ,750.9218622906001,kg +c677f1f4-a14e-3794-8ded-9b6d11f6b191,SESCO,II.1.1,Capital Federal,AR-C,annual,2013,naphtha combustion consumption by to the public,250.3072874302,TJ,N2O,0.6,kg/TJ,150.18437245812,kg +01dc991e-359b-39f8-b8e1-187506049785,SESCO,II.1.1,Chubut,AR-U,annual,2013,naphtha combustion consumption by to the public,252.53831515989998,TJ,CO2,73300.0,kg/TJ,18511058.50122067,kg +96547c61-9e88-3e81-bd71-656244bbfd6d,SESCO,II.1.1,Chubut,AR-U,annual,2013,naphtha combustion consumption by to the public,252.53831515989998,TJ,CH4,3.0,kg/TJ,757.6149454796999,kg +7d09fee3-8bb5-3ece-bbc5-58f77f072d54,SESCO,II.1.1,Chubut,AR-U,annual,2013,naphtha combustion consumption by to the public,252.53831515989998,TJ,N2O,0.6,kg/TJ,151.52298909593998,kg +76cc7fb3-37d4-3d0a-8082-3a212cf5a1de,SESCO,II.1.1,Córdoba,AR-X,annual,2013,naphtha combustion consumption by to the public,156.34989635649998,TJ,CO2,73300.0,kg/TJ,11460447.402931448,kg +643fee03-a909-3448-8d95-edefa00c8e98,SESCO,II.1.1,Córdoba,AR-X,annual,2013,naphtha combustion consumption by to the public,156.34989635649998,TJ,CH4,3.0,kg/TJ,469.04968906949995,kg +ac98a0b7-983c-3bab-b437-9e060e406f8a,SESCO,II.1.1,Córdoba,AR-X,annual,2013,naphtha combustion consumption by to the public,156.34989635649998,TJ,N2O,0.6,kg/TJ,93.80993781389999,kg +48ee69cf-156a-36f3-9bbb-beded440940c,SESCO,II.1.1,Entre Rios,AR-E,annual,2013,naphtha combustion consumption by to the public,30.0022290953,TJ,CO2,73300.0,kg/TJ,2199163.3926854897,kg +fb60eccf-5418-331b-a38e-7ab515bcf8a1,SESCO,II.1.1,Entre Rios,AR-E,annual,2013,naphtha combustion consumption by to the public,30.0022290953,TJ,CH4,3.0,kg/TJ,90.0066872859,kg +34576d80-e967-34fd-8a13-587276131eef,SESCO,II.1.1,Entre Rios,AR-E,annual,2013,naphtha combustion consumption by to the public,30.0022290953,TJ,N2O,0.6,kg/TJ,18.00133745718,kg +4458cd5b-bf2b-34cb-b23f-9fa15291e27d,SESCO,II.1.1,La Pampa,AR-L,annual,2013,naphtha combustion consumption by to the public,56.71877569049999,TJ,CO2,73300.0,kg/TJ,4157486.258113649,kg +280088b4-7e35-3ce9-a974-5fddd0308edc,SESCO,II.1.1,La Pampa,AR-L,annual,2013,naphtha combustion consumption by to the public,56.71877569049999,TJ,CH4,3.0,kg/TJ,170.15632707149996,kg +660cf72d-6379-3d88-90bc-6874fcfd1b60,SESCO,II.1.1,La Pampa,AR-L,annual,2013,naphtha combustion consumption by to the public,56.71877569049999,TJ,N2O,0.6,kg/TJ,34.031265414299995,kg +163a6241-b18d-3647-aec1-8cd8c86ba1f3,SESCO,II.1.1,Mendoza,AR-M,annual,2013,naphtha combustion consumption by to the public,3.2391403506,TJ,CO2,73300.0,kg/TJ,237428.98769898,kg +26b13680-a3c7-34a7-8933-c3b6a7ced321,SESCO,II.1.1,Mendoza,AR-M,annual,2013,naphtha combustion consumption by to the public,3.2391403506,TJ,CH4,3.0,kg/TJ,9.7174210518,kg +3ef45ca3-6203-3712-87dc-ab9fcea909a8,SESCO,II.1.1,Mendoza,AR-M,annual,2013,naphtha combustion consumption by to the public,3.2391403506,TJ,N2O,0.6,kg/TJ,1.9434842103599999,kg +c7c854a6-b3d3-3839-bcec-3344edd6fdda,SESCO,II.1.1,Neuquén,AR-Q,annual,2013,naphtha combustion consumption by to the public,168.7167735561,TJ,CO2,73300.0,kg/TJ,12366939.501662131,kg +9e0182c5-69a9-3971-8dbd-84ba15c79841,SESCO,II.1.1,Neuquén,AR-Q,annual,2013,naphtha combustion consumption by to the public,168.7167735561,TJ,CH4,3.0,kg/TJ,506.1503206683,kg +decfb3e3-2613-30cf-88c8-566c51398ff3,SESCO,II.1.1,Neuquén,AR-Q,annual,2013,naphtha combustion consumption by to the public,168.7167735561,TJ,N2O,0.6,kg/TJ,101.23006413366001,kg +b4dfc6ff-191a-3a85-b793-5aa6c552f063,SESCO,II.1.1,Rio Negro,AR-R,annual,2013,naphtha combustion consumption by to the public,204.0064807165,TJ,CO2,73300.0,kg/TJ,14953675.03651945,kg +0d0c7a77-2f46-314f-a813-c8ccbe27a5a8,SESCO,II.1.1,Rio Negro,AR-R,annual,2013,naphtha combustion consumption by to the public,204.0064807165,TJ,CH4,3.0,kg/TJ,612.0194421495,kg +0972723e-6fc4-3d66-ad70-0094bd3718eb,SESCO,II.1.1,Rio Negro,AR-R,annual,2013,naphtha combustion consumption by to the public,204.0064807165,TJ,N2O,0.6,kg/TJ,122.4038884299,kg +1e08c4a8-aa58-3ff9-a0a8-97d09edcbf28,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2013,naphtha combustion consumption by to the public,189.49721523039997,TJ,CO2,73300.0,kg/TJ,13890145.876388319,kg +9179ec15-e14b-38f5-babe-ddb556a68951,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2013,naphtha combustion consumption by to the public,189.49721523039997,TJ,CH4,3.0,kg/TJ,568.4916456911999,kg +aad2d62f-2b0a-3a3a-8d58-8647d5ce5ba4,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2013,naphtha combustion consumption by to the public,189.49721523039997,TJ,N2O,0.6,kg/TJ,113.69832913823998,kg +51fc9c64-186a-3ff4-9e31-8657e71cd4bd,SESCO,II.1.1,Santa Fe,AR-S,annual,2013,naphtha combustion consumption by to the public,216.43874238909996,TJ,CO2,73300.0,kg/TJ,15864959.817121027,kg +f190cca4-2729-32fb-9c4a-e690ce5905f9,SESCO,II.1.1,Santa Fe,AR-S,annual,2013,naphtha combustion consumption by to the public,216.43874238909996,TJ,CH4,3.0,kg/TJ,649.3162271672999,kg +2e0b24e3-7bff-304b-ba20-d844bc603e85,SESCO,II.1.1,Santa Fe,AR-S,annual,2013,naphtha combustion consumption by to the public,216.43874238909996,TJ,N2O,0.6,kg/TJ,129.86324543345998,kg +5ab3f4a4-1e54-3215-a588-bc0ce9881e82,SESCO,II.1.1,Buenos Aires,AR-B,annual,2013,naphtha combustion consumption by freight transport,0.1268394358,TJ,CO2,73300.0,kg/TJ,9297.33064414,kg +50b78d04-c21a-3305-bc29-67e1ff0efc9d,SESCO,II.1.1,Buenos Aires,AR-B,annual,2013,naphtha combustion consumption by freight transport,0.1268394358,TJ,CH4,3.0,kg/TJ,0.38051830740000003,kg +e8d43d38-1160-3603-866d-b01815726337,SESCO,II.1.1,Buenos Aires,AR-B,annual,2013,naphtha combustion consumption by freight transport,0.1268394358,TJ,N2O,0.6,kg/TJ,0.07610366148,kg +e7a4188b-84b2-351d-8364-b9cb8c4c27ea,SESCO,II.1.1,Buenos Aires,AR-B,annual,2013,naphtha combustion consumption by to the public,39.28866018,TJ,CO2,73300.0,kg/TJ,2879858.7911940003,kg +c5c75a92-2cdc-3f80-a1d8-82a17b6a76dd,SESCO,II.1.1,Buenos Aires,AR-B,annual,2013,naphtha combustion consumption by to the public,39.28866018,TJ,CH4,3.0,kg/TJ,117.86598054000001,kg +a084d6e4-0c41-330e-8135-a60023c19552,SESCO,II.1.1,Buenos Aires,AR-B,annual,2013,naphtha combustion consumption by to the public,39.28866018,TJ,N2O,0.6,kg/TJ,23.573196108,kg +713e2233-0c41-3167-9c24-ee63165a4f92,SESCO,II.1.1,Capital Federal,AR-C,annual,2013,naphtha combustion consumption by to the public,12.013994299999998,TJ,CO2,73300.0,kg/TJ,880625.7821899999,kg +82d568c6-979d-38b4-a209-ef787a639078,SESCO,II.1.1,Capital Federal,AR-C,annual,2013,naphtha combustion consumption by to the public,12.013994299999998,TJ,CH4,3.0,kg/TJ,36.041982899999994,kg +1c0c2aea-c257-30de-874f-bdb5907af555,SESCO,II.1.1,Capital Federal,AR-C,annual,2013,naphtha combustion consumption by to the public,12.013994299999998,TJ,N2O,0.6,kg/TJ,7.208396579999999,kg +61d80234-bf48-33d3-a417-032309b112cb,SESCO,II.1.1,Córdoba,AR-X,annual,2013,naphtha combustion consumption by to the public,2.3190552,TJ,CO2,73300.0,kg/TJ,169986.74616,kg +a65401e9-99b7-3588-a2b6-e5f266d03cce,SESCO,II.1.1,Córdoba,AR-X,annual,2013,naphtha combustion consumption by to the public,2.3190552,TJ,CH4,3.0,kg/TJ,6.957165600000001,kg +2ced1d5b-0f08-35c9-b926-11c5b4b0b1b3,SESCO,II.1.1,Córdoba,AR-X,annual,2013,naphtha combustion consumption by to the public,2.3190552,TJ,N2O,0.6,kg/TJ,1.39143312,kg +02cd56ca-238e-3075-804c-6a3173a336c4,SESCO,II.1.1,Entre Rios,AR-E,annual,2013,naphtha combustion consumption by to the public,2.254637,TJ,CO2,73300.0,kg/TJ,165264.8921,kg +84604f4d-e9c3-33b1-83f8-b5a1b523a364,SESCO,II.1.1,Entre Rios,AR-E,annual,2013,naphtha combustion consumption by to the public,2.254637,TJ,CH4,3.0,kg/TJ,6.763910999999999,kg +70b7e0b9-bd00-31f7-bec6-e6e8147779af,SESCO,II.1.1,Entre Rios,AR-E,annual,2013,naphtha combustion consumption by to the public,2.254637,TJ,N2O,0.6,kg/TJ,1.3527821999999998,kg +f064d459-bd05-3176-b165-584bc15ea14e,SESCO,II.1.1,Santa Fe,AR-S,annual,2013,naphtha combustion consumption by to the public,13.4956129,TJ,CO2,73300.0,kg/TJ,989228.42557,kg +729a8ab3-0bc2-39f3-8a73-d0723bb20b58,SESCO,II.1.1,Santa Fe,AR-S,annual,2013,naphtha combustion consumption by to the public,13.4956129,TJ,CH4,3.0,kg/TJ,40.4868387,kg +c3f3ec39-f183-386c-9678-625f5250490c,SESCO,II.1.1,Santa Fe,AR-S,annual,2013,naphtha combustion consumption by to the public,13.4956129,TJ,N2O,0.6,kg/TJ,8.09736774,kg +c9bea3b0-716c-337f-ba01-b6218fda2cbd,SESCO,II.1.1,Buenos Aires,AR-B,annual,2013,naphtha combustion consumption by to the public,1267.76950146,TJ,CO2,73300.0,kg/TJ,92927504.45701799,kg +4c6cfe9d-f623-3c4a-9030-127d7eff094b,SESCO,II.1.1,Buenos Aires,AR-B,annual,2013,naphtha combustion consumption by to the public,1267.76950146,TJ,CH4,3.0,kg/TJ,3803.3085043799997,kg +c0f7c677-7d7c-36e3-b76c-d89aca14777d,SESCO,II.1.1,Buenos Aires,AR-B,annual,2013,naphtha combustion consumption by to the public,1267.76950146,TJ,N2O,0.6,kg/TJ,760.6617008759999,kg +589a0067-bd5d-3237-9d83-fdbc5cd7a0d6,SESCO,II.1.1,Capital Federal,AR-C,annual,2013,naphtha combustion consumption by to the public,184.2682611,TJ,CO2,73300.0,kg/TJ,13506863.53863,kg +340df49c-a139-3bf0-a78e-478298ae0ea3,SESCO,II.1.1,Capital Federal,AR-C,annual,2013,naphtha combustion consumption by to the public,184.2682611,TJ,CH4,3.0,kg/TJ,552.8047832999999,kg +6b31e16a-5e8a-3e77-8737-14d1e6ee7a41,SESCO,II.1.1,Capital Federal,AR-C,annual,2013,naphtha combustion consumption by to the public,184.2682611,TJ,N2O,0.6,kg/TJ,110.56095665999999,kg +f1a5d366-bd20-341d-99fb-499e06c679b5,SESCO,II.1.1,Chaco,AR-H,annual,2013,naphtha combustion consumption by to the public,2.9310281,TJ,CO2,73300.0,kg/TJ,214844.35973,kg +bca58983-457d-3c41-ac34-f59fce2da90c,SESCO,II.1.1,Chaco,AR-H,annual,2013,naphtha combustion consumption by to the public,2.9310281,TJ,CH4,3.0,kg/TJ,8.7930843,kg +8bbe8370-2f69-3f37-a4f1-a63805874167,SESCO,II.1.1,Chaco,AR-H,annual,2013,naphtha combustion consumption by to the public,2.9310281,TJ,N2O,0.6,kg/TJ,1.7586168599999998,kg +33afeee2-e6a7-3b0f-aa43-a6d8bbc4e9d6,SESCO,II.1.1,Córdoba,AR-X,annual,2013,naphtha combustion consumption by to the public,262.8906742,TJ,CO2,73300.0,kg/TJ,19269886.41886,kg +ded7606a-69fc-3d4e-9d42-5c367bad432e,SESCO,II.1.1,Córdoba,AR-X,annual,2013,naphtha combustion consumption by to the public,262.8906742,TJ,CH4,3.0,kg/TJ,788.6720226,kg +d21ba7f1-6b7d-33f2-81ea-0a0d664316cc,SESCO,II.1.1,Córdoba,AR-X,annual,2013,naphtha combustion consumption by to the public,262.8906742,TJ,N2O,0.6,kg/TJ,157.73440451999997,kg +5b1cfcd7-6e44-3240-97c0-062ff5ad9dd8,SESCO,II.1.1,Entre Rios,AR-E,annual,2013,naphtha combustion consumption by to the public,182.88326979999997,TJ,CO2,73300.0,kg/TJ,13405343.676339997,kg +3e45783f-8aad-3b5c-9c22-073595efd063,SESCO,II.1.1,Entre Rios,AR-E,annual,2013,naphtha combustion consumption by to the public,182.88326979999997,TJ,CH4,3.0,kg/TJ,548.6498093999999,kg +9702960b-2297-38fa-9d52-8c96c0559f08,SESCO,II.1.1,Entre Rios,AR-E,annual,2013,naphtha combustion consumption by to the public,182.88326979999997,TJ,N2O,0.6,kg/TJ,109.72996187999998,kg +9001703f-e1af-37b0-8466-290008492598,SESCO,II.1.1,Rio Negro,AR-R,annual,2013,naphtha combustion consumption by to the public,0.4509274,TJ,CO2,73300.0,kg/TJ,33052.97842,kg +49e50000-4d59-3164-abc2-c6273159e461,SESCO,II.1.1,Rio Negro,AR-R,annual,2013,naphtha combustion consumption by to the public,0.4509274,TJ,CH4,3.0,kg/TJ,1.3527822,kg +b95ee241-3104-3356-9bd8-dd8d44705a21,SESCO,II.1.1,Rio Negro,AR-R,annual,2013,naphtha combustion consumption by to the public,0.4509274,TJ,N2O,0.6,kg/TJ,0.27055643999999995,kg +191e6139-28b7-386b-a3a6-4c09e86d67f6,SESCO,II.1.1,Santa Fe,AR-S,annual,2013,naphtha combustion consumption by to the public,140.15789865,TJ,CO2,73300.0,kg/TJ,10273573.971044999,kg +16f1afd7-46fc-399e-9c53-5b2bb6909cd2,SESCO,II.1.1,Santa Fe,AR-S,annual,2013,naphtha combustion consumption by to the public,140.15789865,TJ,CH4,3.0,kg/TJ,420.47369595,kg +7deee6f8-5444-36a1-8918-52ac0c82615a,SESCO,II.1.1,Santa Fe,AR-S,annual,2013,naphtha combustion consumption by to the public,140.15789865,TJ,N2O,0.6,kg/TJ,84.09473919,kg +816fa3f7-5970-316d-8510-72c288dca226,SESCO,II.1.1,Buenos Aires,AR-B,annual,2013,naphtha combustion consumption by to the public,139.23671839,TJ,CO2,73300.0,kg/TJ,10206051.457987,kg +63e1fb0d-bc31-3a20-8b57-0539fb0db396,SESCO,II.1.1,Buenos Aires,AR-B,annual,2013,naphtha combustion consumption by to the public,139.23671839,TJ,CH4,3.0,kg/TJ,417.71015517,kg +94704624-41ef-3585-a64f-a18ad5aac588,SESCO,II.1.1,Buenos Aires,AR-B,annual,2013,naphtha combustion consumption by to the public,139.23671839,TJ,N2O,0.6,kg/TJ,83.54203103399999,kg +375a26ba-015b-3d78-8b51-27536faf0ba8,SESCO,II.1.1,Capital Federal,AR-C,annual,2013,naphtha combustion consumption by to the public,13.205730999999998,TJ,CO2,73300.0,kg/TJ,967980.0822999999,kg +cbfbee96-c671-3249-af7a-aa37bddaac96,SESCO,II.1.1,Capital Federal,AR-C,annual,2013,naphtha combustion consumption by to the public,13.205730999999998,TJ,CH4,3.0,kg/TJ,39.61719299999999,kg +17e5ef48-15ca-3837-9859-6645be0292e7,SESCO,II.1.1,Capital Federal,AR-C,annual,2013,naphtha combustion consumption by to the public,13.205730999999998,TJ,N2O,0.6,kg/TJ,7.923438599999999,kg +ce398703-e87b-3153-9bad-3215c35d7cd5,SESCO,II.1.1,Chaco,AR-H,annual,2013,naphtha combustion consumption by to the public,0.16104549999999998,TJ,CO2,73300.0,kg/TJ,11804.635149999998,kg +942a029b-67f3-373f-862b-47932bf00e51,SESCO,II.1.1,Chaco,AR-H,annual,2013,naphtha combustion consumption by to the public,0.16104549999999998,TJ,CH4,3.0,kg/TJ,0.48313649999999997,kg +534aacb3-76dc-3b61-b8e1-fd36ff7a248f,SESCO,II.1.1,Chaco,AR-H,annual,2013,naphtha combustion consumption by to the public,0.16104549999999998,TJ,N2O,0.6,kg/TJ,0.09662729999999999,kg +2ce20c1a-85df-3ec6-8e89-a7f4d8de91d0,SESCO,II.1.1,Córdoba,AR-X,annual,2013,naphtha combustion consumption by to the public,17.070822999999997,TJ,CO2,73300.0,kg/TJ,1251291.3258999998,kg +116d2b54-a066-39cd-a5d2-a4faf635ad63,SESCO,II.1.1,Córdoba,AR-X,annual,2013,naphtha combustion consumption by to the public,17.070822999999997,TJ,CH4,3.0,kg/TJ,51.21246899999999,kg +f226a03a-0220-3334-aba2-aefdd50c2c7a,SESCO,II.1.1,Córdoba,AR-X,annual,2013,naphtha combustion consumption by to the public,17.070822999999997,TJ,N2O,0.6,kg/TJ,10.242493799999998,kg +1a73ffb0-5f7c-32c9-b450-a13da24b44e4,SESCO,II.1.1,Entre Rios,AR-E,annual,2013,naphtha combustion consumption by to the public,17.4573322,TJ,CO2,73300.0,kg/TJ,1279622.45026,kg +1c649a54-a36a-3a23-990b-1292992f9c15,SESCO,II.1.1,Entre Rios,AR-E,annual,2013,naphtha combustion consumption by to the public,17.4573322,TJ,CH4,3.0,kg/TJ,52.3719966,kg +588553b6-ea25-3436-b8f5-7f778506d59f,SESCO,II.1.1,Entre Rios,AR-E,annual,2013,naphtha combustion consumption by to the public,17.4573322,TJ,N2O,0.6,kg/TJ,10.47439932,kg +57cfa0c0-9e53-343a-ab14-1ebc3b15e619,SESCO,II.1.1,Santa Fe,AR-S,annual,2013,naphtha combustion consumption by to the public,20.259523899999998,TJ,CO2,73300.0,kg/TJ,1485023.10187,kg +48d7f1ca-0f2a-35a5-b759-298e79cde4c4,SESCO,II.1.1,Santa Fe,AR-S,annual,2013,naphtha combustion consumption by to the public,20.259523899999998,TJ,CH4,3.0,kg/TJ,60.77857169999999,kg +9ba8553e-ee39-35a3-8693-bf6252b43f3c,SESCO,II.1.1,Santa Fe,AR-S,annual,2013,naphtha combustion consumption by to the public,20.259523899999998,TJ,N2O,0.6,kg/TJ,12.155714339999998,kg +e58adda9-c275-3911-a072-bb388a2a4737,SESCO,II.1.1,Catamarca,AR-K,annual,2013,naphtha combustion consumption by to the public,29.352474920999995,TJ,CO2,73300.0,kg/TJ,2151536.4117093,kg +bcb64a1e-471d-3750-a324-714a676f858c,SESCO,II.1.1,Catamarca,AR-K,annual,2013,naphtha combustion consumption by to the public,29.352474920999995,TJ,CH4,3.0,kg/TJ,88.05742476299999,kg +28ae7eb9-c379-382c-8238-e07422098ee1,SESCO,II.1.1,Catamarca,AR-K,annual,2013,naphtha combustion consumption by to the public,29.352474920999995,TJ,N2O,0.6,kg/TJ,17.611484952599998,kg +e245ae8d-a6f4-30a2-8165-39abc1dd67d9,SESCO,II.1.1,Chaco,AR-H,annual,2013,naphtha combustion consumption by to the public,101.797182641,TJ,CO2,73300.0,kg/TJ,7461733.487585301,kg +5a6aa929-0d65-3f59-b2cd-b49ab02de55b,SESCO,II.1.1,Chaco,AR-H,annual,2013,naphtha combustion consumption by to the public,101.797182641,TJ,CH4,3.0,kg/TJ,305.391547923,kg +1cc170e1-5ff3-39e0-a403-d055a19af561,SESCO,II.1.1,Chaco,AR-H,annual,2013,naphtha combustion consumption by to the public,101.797182641,TJ,N2O,0.6,kg/TJ,61.0783095846,kg +ea9b8904-5166-3e3b-9d5d-4163256cd6df,SESCO,II.1.1,Córdoba,AR-X,annual,2013,naphtha combustion consumption by to the public,1.4706675059999996,TJ,CO2,73300.0,kg/TJ,107799.92818979998,kg +fa2a3d2a-1294-3b84-9551-2faa5053d164,SESCO,II.1.1,Córdoba,AR-X,annual,2013,naphtha combustion consumption by to the public,1.4706675059999996,TJ,CH4,3.0,kg/TJ,4.412002517999999,kg +bb683f9b-7c04-3b0f-8456-a73512463f4a,SESCO,II.1.1,Córdoba,AR-X,annual,2013,naphtha combustion consumption by to the public,1.4706675059999996,TJ,N2O,0.6,kg/TJ,0.8824005035999998,kg +7006d0c8-b8f8-36e6-a1ea-44a7efedebba,SESCO,II.1.1,Jujuy,AR-Y,annual,2013,naphtha combustion consumption by to the public,87.891869989,TJ,CO2,73300.0,kg/TJ,6442474.0701937,kg +4472cdc5-9ca5-35ca-b857-4e1497ae77b2,SESCO,II.1.1,Jujuy,AR-Y,annual,2013,naphtha combustion consumption by to the public,87.891869989,TJ,CH4,3.0,kg/TJ,263.675609967,kg +2feaee88-5a50-3e33-9875-cb9b19005750,SESCO,II.1.1,Jujuy,AR-Y,annual,2013,naphtha combustion consumption by to the public,87.891869989,TJ,N2O,0.6,kg/TJ,52.7351219934,kg +1c30fc5d-f578-38a1-9268-fd05e9df6dca,SESCO,II.1.1,La Rioja,AR-F,annual,2013,naphtha combustion consumption by to the public,28.043175005999995,TJ,CO2,73300.0,kg/TJ,2055564.7279397997,kg +184c30c4-71e1-306f-93ca-af5ef81fa772,SESCO,II.1.1,La Rioja,AR-F,annual,2013,naphtha combustion consumption by to the public,28.043175005999995,TJ,CH4,3.0,kg/TJ,84.12952501799998,kg +29dc53d7-e870-3a42-af6e-c538d466ae3f,SESCO,II.1.1,La Rioja,AR-F,annual,2013,naphtha combustion consumption by to the public,28.043175005999995,TJ,N2O,0.6,kg/TJ,16.825905003599996,kg +99ab3cc5-cf24-381d-af34-54e26be7818a,SESCO,II.1.1,Salta,AR-A,annual,2013,naphtha combustion consumption by to the public,152.34163490699999,TJ,CO2,73300.0,kg/TJ,11166641.838683099,kg +e457f477-dad3-3415-92c1-11e0336900c9,SESCO,II.1.1,Salta,AR-A,annual,2013,naphtha combustion consumption by to the public,152.34163490699999,TJ,CH4,3.0,kg/TJ,457.024904721,kg +c6c54f8f-a248-3462-a6f9-d5b231b7e019,SESCO,II.1.1,Salta,AR-A,annual,2013,naphtha combustion consumption by to the public,152.34163490699999,TJ,N2O,0.6,kg/TJ,91.40498094419999,kg +904b5a0b-bda2-393f-9209-bb8480ad6f54,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2013,naphtha combustion consumption by to the public,26.242686316,TJ,CO2,73300.0,kg/TJ,1923588.9069628,kg +69b84dff-00c7-38e1-85f0-21f35542dec5,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2013,naphtha combustion consumption by to the public,26.242686316,TJ,CH4,3.0,kg/TJ,78.728058948,kg +36ac3bac-e618-3c3d-be27-ab232d103041,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2013,naphtha combustion consumption by to the public,26.242686316,TJ,N2O,0.6,kg/TJ,15.7456117896,kg +484f918a-fa57-3058-8119-e4962e9f74fe,SESCO,II.1.1,Tucuman,AR-T,annual,2013,naphtha combustion consumption by to the public,97.86316316699998,TJ,CO2,73300.0,kg/TJ,7173369.8601410985,kg +e8476be8-d4f2-3715-9585-091a508d6000,SESCO,II.1.1,Tucuman,AR-T,annual,2013,naphtha combustion consumption by to the public,97.86316316699998,TJ,CH4,3.0,kg/TJ,293.58948950099995,kg +8409fa9c-c1f7-3533-a611-b0d1ced4e7ab,SESCO,II.1.1,Tucuman,AR-T,annual,2013,naphtha combustion consumption by to the public,97.86316316699998,TJ,N2O,0.6,kg/TJ,58.717897900199986,kg +6be0356e-e320-303c-b011-540dfb3758de,SESCO,II.1.1,Catamarca,AR-K,annual,2013,naphtha combustion consumption by to the public,241.539905992,TJ,CO2,73300.0,kg/TJ,17704875.1092136,kg +ae702332-0593-3d80-bc57-ae8344c2e558,SESCO,II.1.1,Catamarca,AR-K,annual,2013,naphtha combustion consumption by to the public,241.539905992,TJ,CH4,3.0,kg/TJ,724.619717976,kg +881fb781-573c-387f-95db-f74d7ef7008c,SESCO,II.1.1,Catamarca,AR-K,annual,2013,naphtha combustion consumption by to the public,241.539905992,TJ,N2O,0.6,kg/TJ,144.9239435952,kg +930e59fc-914d-3808-9aad-0b4336612873,SESCO,II.1.1,Chaco,AR-H,annual,2013,naphtha combustion consumption by to the public,93.29526860499999,TJ,CO2,73300.0,kg/TJ,6838543.188746499,kg +42bc0fcb-1919-3c8b-94d3-99a9b776a6b8,SESCO,II.1.1,Chaco,AR-H,annual,2013,naphtha combustion consumption by to the public,93.29526860499999,TJ,CH4,3.0,kg/TJ,279.88580581499997,kg +7d736afb-ef8c-3b2d-a564-96d8cf5c2004,SESCO,II.1.1,Chaco,AR-H,annual,2013,naphtha combustion consumption by to the public,93.29526860499999,TJ,N2O,0.6,kg/TJ,55.97716116299999,kg +40f2d94e-6edf-318b-9c91-203605335640,SESCO,II.1.1,Córdoba,AR-X,annual,2013,naphtha combustion consumption by to the public,23.152545261999997,TJ,CO2,73300.0,kg/TJ,1697081.5677045998,kg +573d7b08-6426-313c-9b6f-73e067f43943,SESCO,II.1.1,Córdoba,AR-X,annual,2013,naphtha combustion consumption by to the public,23.152545261999997,TJ,CH4,3.0,kg/TJ,69.457635786,kg +764a8bca-6da2-3d22-87eb-c50b3298b936,SESCO,II.1.1,Córdoba,AR-X,annual,2013,naphtha combustion consumption by to the public,23.152545261999997,TJ,N2O,0.6,kg/TJ,13.891527157199997,kg +5b372c21-2ec0-3218-85bf-f14434921a36,SESCO,II.1.1,Jujuy,AR-Y,annual,2013,naphtha combustion consumption by to the public,511.8834438409999,TJ,CO2,73300.0,kg/TJ,37521056.43354529,kg +bd797ec1-e8c4-3903-a3f6-a11e561e08d7,SESCO,II.1.1,Jujuy,AR-Y,annual,2013,naphtha combustion consumption by to the public,511.8834438409999,TJ,CH4,3.0,kg/TJ,1535.6503315229997,kg +a8f2c50c-e641-370c-8f81-631c04e8e8aa,SESCO,II.1.1,Jujuy,AR-Y,annual,2013,naphtha combustion consumption by to the public,511.8834438409999,TJ,N2O,0.6,kg/TJ,307.13006630459995,kg +61d44870-2c62-3b75-ba00-1679275a6a3b,SESCO,II.1.1,La Rioja,AR-F,annual,2013,naphtha combustion consumption by to the public,248.16660622599997,TJ,CO2,73300.0,kg/TJ,18190612.2363658,kg +1643a5fa-528f-3f83-b3d1-9d13fc1162ed,SESCO,II.1.1,La Rioja,AR-F,annual,2013,naphtha combustion consumption by to the public,248.16660622599997,TJ,CH4,3.0,kg/TJ,744.4998186779999,kg +df2c6837-0f78-3568-ad4f-fa0e65902c07,SESCO,II.1.1,La Rioja,AR-F,annual,2013,naphtha combustion consumption by to the public,248.16660622599997,TJ,N2O,0.6,kg/TJ,148.89996373559998,kg +285c0962-d5d4-3744-8654-360fbd6dc3b7,SESCO,II.1.1,Salta,AR-A,annual,2013,naphtha combustion consumption by to the public,1002.6551109959998,TJ,CO2,73300.0,kg/TJ,73494619.63600679,kg +259b11ab-c48d-37ba-9692-de0c2c52d5d7,SESCO,II.1.1,Salta,AR-A,annual,2013,naphtha combustion consumption by to the public,1002.6551109959998,TJ,CH4,3.0,kg/TJ,3007.9653329879993,kg +5904c5fb-8731-3286-9f28-45dc0e40f762,SESCO,II.1.1,Salta,AR-A,annual,2013,naphtha combustion consumption by to the public,1002.6551109959998,TJ,N2O,0.6,kg/TJ,601.5930665975999,kg +126cb610-aed7-3721-aaac-4f78e675d0f0,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2013,naphtha combustion consumption by to the public,283.47067864499996,TJ,CO2,73300.0,kg/TJ,20778400.744678497,kg +50436727-f4e6-381e-a192-3c154fab3e56,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2013,naphtha combustion consumption by to the public,283.47067864499996,TJ,CH4,3.0,kg/TJ,850.412035935,kg +b4a22161-201f-33cc-b953-d1b949f982d5,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2013,naphtha combustion consumption by to the public,283.47067864499996,TJ,N2O,0.6,kg/TJ,170.08240718699997,kg +c7afc458-7b42-3683-b106-d210dc9ff5d2,SESCO,II.1.1,Tucuman,AR-T,annual,2013,naphtha combustion consumption by to the public,1691.4099961219997,TJ,CO2,73300.0,kg/TJ,123980352.71574257,kg +c547b811-d667-3549-acd3-71e979564913,SESCO,II.1.1,Tucuman,AR-T,annual,2013,naphtha combustion consumption by to the public,1691.4099961219997,TJ,CH4,3.0,kg/TJ,5074.229988365999,kg +5d26c5c4-20cd-3cc3-848a-f743f5085982,SESCO,II.1.1,Tucuman,AR-T,annual,2013,naphtha combustion consumption by to the public,1691.4099961219997,TJ,N2O,0.6,kg/TJ,1014.8459976731998,kg +b8c3e2d9-fc9d-3a30-9962-40e7dbeb58bc,SESCO,II.1.1,Catamarca,AR-K,annual,2013,naphtha combustion consumption by to the public,15.566013847999999,TJ,CO2,73300.0,kg/TJ,1140988.8150584,kg +eb576f0c-b2fd-3533-892c-686b3079d74a,SESCO,II.1.1,Catamarca,AR-K,annual,2013,naphtha combustion consumption by to the public,15.566013847999999,TJ,CH4,3.0,kg/TJ,46.698041544,kg +a7cb52bc-8f45-343b-a654-a7ee419c8b19,SESCO,II.1.1,Catamarca,AR-K,annual,2013,naphtha combustion consumption by to the public,15.566013847999999,TJ,N2O,0.6,kg/TJ,9.339608308799999,kg +180e6e88-ad94-3ea8-865f-2a19cfb64bc4,SESCO,II.1.1,Chaco,AR-H,annual,2013,naphtha combustion consumption by to the public,1.4722779609999999,TJ,CO2,73300.0,kg/TJ,107917.97454129999,kg +5b5c127f-467e-3899-8685-2300134bc0b2,SESCO,II.1.1,Chaco,AR-H,annual,2013,naphtha combustion consumption by to the public,1.4722779609999999,TJ,CH4,3.0,kg/TJ,4.416833883,kg +ab132ba6-1ec3-3d54-ab4b-bc960e51e1ed,SESCO,II.1.1,Chaco,AR-H,annual,2013,naphtha combustion consumption by to the public,1.4722779609999999,TJ,N2O,0.6,kg/TJ,0.8833667765999998,kg +d4c208eb-eae2-3cf1-8357-330168b4109a,SESCO,II.1.1,Córdoba,AR-X,annual,2013,naphtha combustion consumption by to the public,3.77168561,TJ,CO2,73300.0,kg/TJ,276464.555213,kg +735a9768-e622-390a-8d30-97b319cdd71a,SESCO,II.1.1,Córdoba,AR-X,annual,2013,naphtha combustion consumption by to the public,3.77168561,TJ,CH4,3.0,kg/TJ,11.31505683,kg +d92192f4-0199-3f07-aa82-6ebff45406a4,SESCO,II.1.1,Córdoba,AR-X,annual,2013,naphtha combustion consumption by to the public,3.77168561,TJ,N2O,0.6,kg/TJ,2.2630113659999997,kg +0ebe98b9-4f95-3c82-815b-78c723e286f3,SESCO,II.1.1,Jujuy,AR-Y,annual,2013,naphtha combustion consumption by to the public,30.502661881999998,TJ,CO2,73300.0,kg/TJ,2235845.1159506,kg +ebaec136-0299-3d20-b749-d07252f5d8d0,SESCO,II.1.1,Jujuy,AR-Y,annual,2013,naphtha combustion consumption by to the public,30.502661881999998,TJ,CH4,3.0,kg/TJ,91.507985646,kg +d06cf595-ae58-3fd7-bf4e-926003ca98f8,SESCO,II.1.1,Jujuy,AR-Y,annual,2013,naphtha combustion consumption by to the public,30.502661881999998,TJ,N2O,0.6,kg/TJ,18.301597129199997,kg +8f60cae4-9d13-30c2-9150-02b554b0a836,SESCO,II.1.1,La Rioja,AR-F,annual,2013,naphtha combustion consumption by to the public,10.184195328999998,TJ,CO2,73300.0,kg/TJ,746501.5176156998,kg +fd625eba-dd3f-392c-8335-cddaae99b68f,SESCO,II.1.1,La Rioja,AR-F,annual,2013,naphtha combustion consumption by to the public,10.184195328999998,TJ,CH4,3.0,kg/TJ,30.552585986999993,kg +9e635973-3bd4-3de0-a8a5-698a77c30bb5,SESCO,II.1.1,La Rioja,AR-F,annual,2013,naphtha combustion consumption by to the public,10.184195328999998,TJ,N2O,0.6,kg/TJ,6.110517197399998,kg +5b022b4b-59a5-3631-ae14-bc4e6ebfc05b,SESCO,II.1.1,Salta,AR-A,annual,2013,naphtha combustion consumption by to the public,54.132546006,TJ,CO2,73300.0,kg/TJ,3967915.6222397997,kg +67a48033-6de2-361c-96ba-caa00029cfd5,SESCO,II.1.1,Salta,AR-A,annual,2013,naphtha combustion consumption by to the public,54.132546006,TJ,CH4,3.0,kg/TJ,162.397638018,kg +ed806f0a-b4af-3412-9698-e86085bba121,SESCO,II.1.1,Salta,AR-A,annual,2013,naphtha combustion consumption by to the public,54.132546006,TJ,N2O,0.6,kg/TJ,32.4795276036,kg +9665794e-dbe4-3818-878f-9ec2b976bc3b,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2013,naphtha combustion consumption by to the public,28.574303064999995,TJ,CO2,73300.0,kg/TJ,2094496.4146644997,kg +8f997d68-dd63-368d-926d-5285bf2c807b,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2013,naphtha combustion consumption by to the public,28.574303064999995,TJ,CH4,3.0,kg/TJ,85.72290919499999,kg +4fbf0781-5905-3fa8-bb9e-9a504291f700,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2013,naphtha combustion consumption by to the public,28.574303064999995,TJ,N2O,0.6,kg/TJ,17.144581838999997,kg +6d69aeb9-de41-3ca5-9c6a-2ed0b8e0a5d5,SESCO,II.1.1,Tucuman,AR-T,annual,2013,naphtha combustion consumption by to the public,105.43036912099998,TJ,CO2,73300.0,kg/TJ,7728046.056569299,kg +5e5a8d2a-9c90-35b9-824a-ea2b09a97a71,SESCO,II.1.1,Tucuman,AR-T,annual,2013,naphtha combustion consumption by to the public,105.43036912099998,TJ,CH4,3.0,kg/TJ,316.2911073629999,kg +6b3eb05d-ef4c-3ed3-892f-eb9f02401a85,SESCO,II.1.1,Tucuman,AR-T,annual,2013,naphtha combustion consumption by to the public,105.43036912099998,TJ,N2O,0.6,kg/TJ,63.258221472599985,kg +90c4aa92-0d5c-31a8-9fc7-fe598daf567f,SESCO,II.5.1,Capital Federal,AR-C,annual,2013,naphtha combustion consumption by agriculture machines,0.38650919999999994,TJ,CO2,73300.0,kg/TJ,28331.124359999994,kg +a65a661c-13f2-36f1-b8f0-d9fc18215ab1,SESCO,II.5.1,Capital Federal,AR-C,annual,2013,naphtha combustion consumption by agriculture machines,0.38650919999999994,TJ,CH4,3.0,kg/TJ,1.1595275999999999,kg +ba2e4e81-8dce-3814-905b-c7d1fd91be6b,SESCO,II.5.1,Capital Federal,AR-C,annual,2013,naphtha combustion consumption by agriculture machines,0.38650919999999994,TJ,N2O,0.6,kg/TJ,0.23190551999999995,kg +cf22b81f-2416-3858-82ec-21ecae671a69,SESCO,II.5.1,Santa Fe,AR-S,annual,2013,naphtha combustion consumption by agriculture machines,32.4345637,TJ,CO2,73300.0,kg/TJ,2377453.51921,kg +2859dd0b-e2b9-3e53-9c17-af6e2c90ad66,SESCO,II.5.1,Santa Fe,AR-S,annual,2013,naphtha combustion consumption by agriculture machines,32.4345637,TJ,CH4,3.0,kg/TJ,97.3036911,kg +8dd542d1-e6fb-35c8-bbf5-2488f37d46d4,SESCO,II.5.1,Santa Fe,AR-S,annual,2013,naphtha combustion consumption by agriculture machines,32.4345637,TJ,N2O,0.6,kg/TJ,19.46073822,kg +84741f64-e503-3b9a-a8bb-6ad1d6ca2538,SESCO,II.1.1,Buenos Aires,AR-B,annual,2013,naphtha combustion consumption by to the public,742.2909185999999,TJ,CO2,73300.0,kg/TJ,54409924.33338,kg +1ce76c1b-00e5-3108-9710-af2385e89725,SESCO,II.1.1,Buenos Aires,AR-B,annual,2013,naphtha combustion consumption by to the public,742.2909185999999,TJ,CH4,3.0,kg/TJ,2226.8727558,kg +449f1051-5d36-3405-83a3-cc0730bb85bc,SESCO,II.1.1,Buenos Aires,AR-B,annual,2013,naphtha combustion consumption by to the public,742.2909185999999,TJ,N2O,0.6,kg/TJ,445.37455115999995,kg +5329bd76-1c5c-3690-bc79-72cdb1e4b2ce,SESCO,II.1.1,Capital Federal,AR-C,annual,2013,naphtha combustion consumption by to the public,10.1458665,TJ,CO2,73300.0,kg/TJ,743692.01445,kg +28f4a8d8-056c-37fc-8f32-db0f5c1ad5d8,SESCO,II.1.1,Capital Federal,AR-C,annual,2013,naphtha combustion consumption by to the public,10.1458665,TJ,CH4,3.0,kg/TJ,30.4375995,kg +9b34e73e-578e-3295-ae04-ffa1f458a5bd,SESCO,II.1.1,Capital Federal,AR-C,annual,2013,naphtha combustion consumption by to the public,10.1458665,TJ,N2O,0.6,kg/TJ,6.0875199,kg +4ab0e667-0fd6-3fdd-8852-13608f952a86,SESCO,II.1.1,Chaco,AR-H,annual,2013,naphtha combustion consumption by to the public,20.6782422,TJ,CO2,73300.0,kg/TJ,1515715.15326,kg +0990389b-32aa-33ae-927c-ac0272eba6d1,SESCO,II.1.1,Chaco,AR-H,annual,2013,naphtha combustion consumption by to the public,20.6782422,TJ,CH4,3.0,kg/TJ,62.0347266,kg +046797d3-ad2d-3c5f-ab07-a614c89e2569,SESCO,II.1.1,Chaco,AR-H,annual,2013,naphtha combustion consumption by to the public,20.6782422,TJ,N2O,0.6,kg/TJ,12.40694532,kg +f33897b9-9245-35d4-987e-3e8c9f62afa8,SESCO,II.1.1,Entre Rios,AR-E,annual,2013,naphtha combustion consumption by to the public,22.288697199999998,TJ,CO2,73300.0,kg/TJ,1633761.50476,kg +4450e844-7b7a-3802-a7b2-bdd0ec8060d4,SESCO,II.1.1,Entre Rios,AR-E,annual,2013,naphtha combustion consumption by to the public,22.288697199999998,TJ,CH4,3.0,kg/TJ,66.86609159999999,kg +9a7aecb1-aded-3571-9c48-5f985f506081,SESCO,II.1.1,Entre Rios,AR-E,annual,2013,naphtha combustion consumption by to the public,22.288697199999998,TJ,N2O,0.6,kg/TJ,13.373218319999998,kg +7c6bd053-4ac1-3f59-8de6-4182adf4de09,SESCO,II.1.1,Mendoza,AR-M,annual,2013,naphtha combustion consumption by to the public,47.282958799999996,TJ,CO2,73300.0,kg/TJ,3465840.8800399997,kg +7ac79590-2dcd-36d6-9771-ad2e20e9b841,SESCO,II.1.1,Mendoza,AR-M,annual,2013,naphtha combustion consumption by to the public,47.282958799999996,TJ,CH4,3.0,kg/TJ,141.8488764,kg +93476964-8957-3923-9de4-716769453d3e,SESCO,II.1.1,Mendoza,AR-M,annual,2013,naphtha combustion consumption by to the public,47.282958799999996,TJ,N2O,0.6,kg/TJ,28.369775279999995,kg +38a83be4-2fc1-35f5-9ff5-d67e98bc4c8a,SESCO,II.1.1,Misiones,AR-N,annual,2013,naphtha combustion consumption by to the public,12.271667099999998,TJ,CO2,73300.0,kg/TJ,899513.1984299999,kg +d2cc9e4c-0f8f-3e44-bda1-d28467edefd1,SESCO,II.1.1,Misiones,AR-N,annual,2013,naphtha combustion consumption by to the public,12.271667099999998,TJ,CH4,3.0,kg/TJ,36.81500129999999,kg +9f672f43-1a8c-3999-9b3b-46ba3728294a,SESCO,II.1.1,Misiones,AR-N,annual,2013,naphtha combustion consumption by to the public,12.271667099999998,TJ,N2O,0.6,kg/TJ,7.363000259999999,kg +b1b5ca77-6fc1-3872-8655-e6aa94ddff7a,SESCO,II.1.1,Neuquén,AR-Q,annual,2013,naphtha combustion consumption by to the public,9.952611899999999,TJ,CO2,73300.0,kg/TJ,729526.4522699999,kg +25bf6449-573c-3d11-bdf1-29f06148fa1e,SESCO,II.1.1,Neuquén,AR-Q,annual,2013,naphtha combustion consumption by to the public,9.952611899999999,TJ,CH4,3.0,kg/TJ,29.857835699999995,kg +69c4f948-ced3-31b4-bef1-114b5f2e3a29,SESCO,II.1.1,Neuquén,AR-Q,annual,2013,naphtha combustion consumption by to the public,9.952611899999999,TJ,N2O,0.6,kg/TJ,5.971567139999999,kg +57b41271-cfbc-3b12-8b6d-bee95d426f1f,SESCO,II.1.1,Santa Fe,AR-S,annual,2013,naphtha combustion consumption by to the public,0.2254637,TJ,CO2,73300.0,kg/TJ,16526.48921,kg +cda1089c-f2d9-3771-bffc-325af7733b5d,SESCO,II.1.1,Santa Fe,AR-S,annual,2013,naphtha combustion consumption by to the public,0.2254637,TJ,CH4,3.0,kg/TJ,0.6763911,kg +63f1ac01-a987-3cfa-a6de-d0fdc35697c2,SESCO,II.1.1,Santa Fe,AR-S,annual,2013,naphtha combustion consumption by to the public,0.2254637,TJ,N2O,0.6,kg/TJ,0.13527821999999998,kg +dea9ff48-4f8b-3fcd-9f04-a2ac97c08062,SESCO,II.1.1,Tucuman,AR-T,annual,2013,naphtha combustion consumption by to the public,12.561549,TJ,CO2,73300.0,kg/TJ,920761.5417,kg +8c6ad803-d349-3b23-8534-ed6ab7153da7,SESCO,II.1.1,Tucuman,AR-T,annual,2013,naphtha combustion consumption by to the public,12.561549,TJ,CH4,3.0,kg/TJ,37.684647,kg +d6f0e3b6-73d4-32bb-8d7f-6f97fe7156fa,SESCO,II.1.1,Tucuman,AR-T,annual,2013,naphtha combustion consumption by to the public,12.561549,TJ,N2O,0.6,kg/TJ,7.536929399999999,kg +cddd1ecb-294a-3a4d-ae27-ee24cc75dfdd,SESCO,II.1.1,Buenos Aires,AR-B,annual,2013,naphtha combustion consumption by to the public,14850.649736999998,TJ,CO2,73300.0,kg/TJ,1088552625.7220998,kg +a4859235-0dd5-36e9-b51d-d8d1917df212,SESCO,II.1.1,Buenos Aires,AR-B,annual,2013,naphtha combustion consumption by to the public,14850.649736999998,TJ,CH4,3.0,kg/TJ,44551.94921099999,kg +aa370ff3-4f67-3429-bc2b-ac20fe72e114,SESCO,II.1.1,Buenos Aires,AR-B,annual,2013,naphtha combustion consumption by to the public,14850.649736999998,TJ,N2O,0.6,kg/TJ,8910.389842199998,kg +b642c05b-0780-3ed4-9185-53099cdbced2,SESCO,II.1.1,Capital Federal,AR-C,annual,2013,naphtha combustion consumption by to the public,4324.039465899999,TJ,CO2,73300.0,kg/TJ,316952092.85046995,kg +aa4b77c9-a8fe-3dde-a32e-097118d16f74,SESCO,II.1.1,Capital Federal,AR-C,annual,2013,naphtha combustion consumption by to the public,4324.039465899999,TJ,CH4,3.0,kg/TJ,12972.118397699998,kg +8708b0a8-b0ec-3d27-9ddc-c34925f0dc55,SESCO,II.1.1,Capital Federal,AR-C,annual,2013,naphtha combustion consumption by to the public,4324.039465899999,TJ,N2O,0.6,kg/TJ,2594.4236795399997,kg +b698b908-8dc4-3097-9b77-bdb1fa4afd5c,SESCO,II.1.1,Catamarca,AR-K,annual,2013,naphtha combustion consumption by to the public,57.65428899999999,TJ,CO2,73300.0,kg/TJ,4226059.383699999,kg +6e9d06c0-bf27-3aec-9f37-ad6f5e1a2d4d,SESCO,II.1.1,Catamarca,AR-K,annual,2013,naphtha combustion consumption by to the public,57.65428899999999,TJ,CH4,3.0,kg/TJ,172.96286699999996,kg +adafb885-68bf-3cc7-90cb-6b20234af942,SESCO,II.1.1,Catamarca,AR-K,annual,2013,naphtha combustion consumption by to the public,57.65428899999999,TJ,N2O,0.6,kg/TJ,34.59257339999999,kg +6707ba03-e0d6-32cb-879d-a0abf3ae5768,SESCO,II.1.1,Chaco,AR-H,annual,2013,naphtha combustion consumption by to the public,836.7279997999999,TJ,CO2,73300.0,kg/TJ,61332162.38533999,kg +818c789f-bf7e-3a85-bb9c-9cf9601ed146,SESCO,II.1.1,Chaco,AR-H,annual,2013,naphtha combustion consumption by to the public,836.7279997999999,TJ,CH4,3.0,kg/TJ,2510.1839993999997,kg +cba3dacf-1b0a-3e59-932f-8c7dd244c0eb,SESCO,II.1.1,Chaco,AR-H,annual,2013,naphtha combustion consumption by to the public,836.7279997999999,TJ,N2O,0.6,kg/TJ,502.03679987999993,kg +4ccef40b-163c-3234-b9c3-059e58164f06,SESCO,II.1.1,Chubut,AR-U,annual,2013,naphtha combustion consumption by to the public,43.450075899999995,TJ,CO2,73300.0,kg/TJ,3184890.5634699995,kg +0287297e-dd13-32c0-acda-bb760c4a4c10,SESCO,II.1.1,Chubut,AR-U,annual,2013,naphtha combustion consumption by to the public,43.450075899999995,TJ,CH4,3.0,kg/TJ,130.35022769999998,kg +dbff82dd-ecf6-3006-86e1-78661fab5661,SESCO,II.1.1,Chubut,AR-U,annual,2013,naphtha combustion consumption by to the public,43.450075899999995,TJ,N2O,0.6,kg/TJ,26.070045539999995,kg +fc8922b3-1738-31f1-8221-15753ea7e6bf,SESCO,II.1.1,Corrientes,AR-W,annual,2013,naphtha combustion consumption by to the public,856.4721781,TJ,CO2,73300.0,kg/TJ,62779410.65473,kg +6928350c-6019-372d-b95c-696d81d89427,SESCO,II.1.1,Corrientes,AR-W,annual,2013,naphtha combustion consumption by to the public,856.4721781,TJ,CH4,3.0,kg/TJ,2569.4165343,kg +7d928c77-6091-3c16-b104-9addf85b4270,SESCO,II.1.1,Corrientes,AR-W,annual,2013,naphtha combustion consumption by to the public,856.4721781,TJ,N2O,0.6,kg/TJ,513.88330686,kg +45397f87-3784-3569-a84d-5ab540b5bba5,SESCO,II.1.1,Córdoba,AR-X,annual,2013,naphtha combustion consumption by to the public,3089.4324537999996,TJ,CO2,73300.0,kg/TJ,226455398.86353996,kg +5ee87ab8-a7d6-3204-9193-1663c6db1f88,SESCO,II.1.1,Córdoba,AR-X,annual,2013,naphtha combustion consumption by to the public,3089.4324537999996,TJ,CH4,3.0,kg/TJ,9268.297361399998,kg +fc7afb63-3d8f-3de8-8595-9172a49deb4e,SESCO,II.1.1,Córdoba,AR-X,annual,2013,naphtha combustion consumption by to the public,3089.4324537999996,TJ,N2O,0.6,kg/TJ,1853.6594722799996,kg +5494eedb-6282-37fc-94ee-ca99e666eb6e,SESCO,II.1.1,Entre Rios,AR-E,annual,2013,naphtha combustion consumption by to the public,975.9035209,TJ,CO2,73300.0,kg/TJ,71533728.08197,kg +090d81dc-41cd-3fa5-83b0-633835092ef5,SESCO,II.1.1,Entre Rios,AR-E,annual,2013,naphtha combustion consumption by to the public,975.9035209,TJ,CH4,3.0,kg/TJ,2927.7105627,kg +04553660-a366-3818-a60c-d5b4c06929e8,SESCO,II.1.1,Entre Rios,AR-E,annual,2013,naphtha combustion consumption by to the public,975.9035209,TJ,N2O,0.6,kg/TJ,585.54211254,kg +7d6a9a2e-69e0-3151-bb20-b0e4f51fb626,SESCO,II.1.1,Formosa,AR-P,annual,2013,naphtha combustion consumption by to the public,444.7432528,TJ,CO2,73300.0,kg/TJ,32599680.430239998,kg +85cfe90d-ab5f-3458-be16-7716a54d3b79,SESCO,II.1.1,Formosa,AR-P,annual,2013,naphtha combustion consumption by to the public,444.7432528,TJ,CH4,3.0,kg/TJ,1334.2297584,kg +f8aea587-5d38-3824-a4f2-d6aefbc8e50c,SESCO,II.1.1,Formosa,AR-P,annual,2013,naphtha combustion consumption by to the public,444.7432528,TJ,N2O,0.6,kg/TJ,266.84595168,kg +7506fe9c-12af-30e0-bb47-ca3e45021a3f,SESCO,II.1.1,Jujuy,AR-Y,annual,2013,naphtha combustion consumption by to the public,212.8699419,TJ,CO2,73300.0,kg/TJ,15603366.741269998,kg +9b894911-2046-374a-8ea8-da4d2a93db7a,SESCO,II.1.1,Jujuy,AR-Y,annual,2013,naphtha combustion consumption by to the public,212.8699419,TJ,CH4,3.0,kg/TJ,638.6098257,kg +c315bc58-eb2f-3cae-b50e-62ebd9975a94,SESCO,II.1.1,Jujuy,AR-Y,annual,2013,naphtha combustion consumption by to the public,212.8699419,TJ,N2O,0.6,kg/TJ,127.72196513999998,kg +430c23b6-b3f5-3910-8a2d-a3ef1f1c388b,SESCO,II.1.1,La Pampa,AR-L,annual,2013,naphtha combustion consumption by to the public,286.4677354,TJ,CO2,73300.0,kg/TJ,20998085.00482,kg +dd4bbea0-d306-36a4-8cf2-e45da53d34b9,SESCO,II.1.1,La Pampa,AR-L,annual,2013,naphtha combustion consumption by to the public,286.4677354,TJ,CH4,3.0,kg/TJ,859.4032061999999,kg +75a2c2af-ac8b-3f2d-9c45-a4ddd933edd7,SESCO,II.1.1,La Pampa,AR-L,annual,2013,naphtha combustion consumption by to the public,286.4677354,TJ,N2O,0.6,kg/TJ,171.88064124,kg +dba8b7dd-4a96-3033-a33b-022155c30f1a,SESCO,II.1.1,La Rioja,AR-F,annual,2013,naphtha combustion consumption by to the public,282.5704343,TJ,CO2,73300.0,kg/TJ,20712412.83419,kg +0ac3cce0-34e3-3aec-8c46-43786de68a92,SESCO,II.1.1,La Rioja,AR-F,annual,2013,naphtha combustion consumption by to the public,282.5704343,TJ,CH4,3.0,kg/TJ,847.7113029,kg +0b097f53-ea7b-35cf-8f86-4a55ebe592a4,SESCO,II.1.1,La Rioja,AR-F,annual,2013,naphtha combustion consumption by to the public,282.5704343,TJ,N2O,0.6,kg/TJ,169.54226057999998,kg +8008cf3b-b11b-35aa-a9d7-a37e3d9610df,SESCO,II.1.1,Mendoza,AR-M,annual,2013,naphtha combustion consumption by to the public,727.3458962,TJ,CO2,73300.0,kg/TJ,53314454.19146,kg +1daecb79-1c1e-362b-80c2-ffa17dc010b2,SESCO,II.1.1,Mendoza,AR-M,annual,2013,naphtha combustion consumption by to the public,727.3458962,TJ,CH4,3.0,kg/TJ,2182.0376886,kg +229b0980-55d0-378f-9099-bf483f11ce32,SESCO,II.1.1,Mendoza,AR-M,annual,2013,naphtha combustion consumption by to the public,727.3458962,TJ,N2O,0.6,kg/TJ,436.40753772,kg +066d8dfd-e1ca-35d4-8e42-9c220d89b349,SESCO,II.1.1,Misiones,AR-N,annual,2013,naphtha combustion consumption by to the public,1238.439895,TJ,CO2,73300.0,kg/TJ,90777644.3035,kg +711209b3-a3b4-3388-aa33-721db1e5e604,SESCO,II.1.1,Misiones,AR-N,annual,2013,naphtha combustion consumption by to the public,1238.439895,TJ,CH4,3.0,kg/TJ,3715.319685,kg +da9bbc0c-2e27-3afa-86ea-4384234a869a,SESCO,II.1.1,Misiones,AR-N,annual,2013,naphtha combustion consumption by to the public,1238.439895,TJ,N2O,0.6,kg/TJ,743.063937,kg +4bfaf536-e190-39eb-854b-b97cdbac6595,SESCO,II.1.1,Neuquén,AR-Q,annual,2013,naphtha combustion consumption by to the public,338.4854318999999,TJ,CO2,73300.0,kg/TJ,24810982.158269994,kg +d64f555c-935c-30f6-8a3a-4076aacfd867,SESCO,II.1.1,Neuquén,AR-Q,annual,2013,naphtha combustion consumption by to the public,338.4854318999999,TJ,CH4,3.0,kg/TJ,1015.4562956999998,kg +3b17a822-3560-300b-add3-d4638b9ad81e,SESCO,II.1.1,Neuquén,AR-Q,annual,2013,naphtha combustion consumption by to the public,338.4854318999999,TJ,N2O,0.6,kg/TJ,203.09125913999995,kg +95c64b44-8573-3c07-ac4b-7b99bd38207c,SESCO,II.1.1,Rio Negro,AR-R,annual,2013,naphtha combustion consumption by to the public,172.41531229999998,TJ,CO2,73300.0,kg/TJ,12638042.39159,kg +064001f9-a30e-3530-819b-6d7cd8258ba8,SESCO,II.1.1,Rio Negro,AR-R,annual,2013,naphtha combustion consumption by to the public,172.41531229999998,TJ,CH4,3.0,kg/TJ,517.2459369,kg +cd740188-a227-3878-940c-af4dc4342b73,SESCO,II.1.1,Rio Negro,AR-R,annual,2013,naphtha combustion consumption by to the public,172.41531229999998,TJ,N2O,0.6,kg/TJ,103.44918737999998,kg +2161e300-f5fb-3299-b4b3-edd01a39f248,SESCO,II.1.1,Salta,AR-A,annual,2013,naphtha combustion consumption by to the public,301.155085,TJ,CO2,73300.0,kg/TJ,22074667.730499998,kg +44353d17-7401-343f-b286-25244768bfc3,SESCO,II.1.1,Salta,AR-A,annual,2013,naphtha combustion consumption by to the public,301.155085,TJ,CH4,3.0,kg/TJ,903.465255,kg +7e76dc7f-8d59-338c-8b84-ab9f42fc41fb,SESCO,II.1.1,Salta,AR-A,annual,2013,naphtha combustion consumption by to the public,301.155085,TJ,N2O,0.6,kg/TJ,180.693051,kg +6c4da51b-5a9a-39d6-9571-5fd14b626722,SESCO,II.1.1,San Juan,AR-J,annual,2013,naphtha combustion consumption by to the public,211.4849506,TJ,CO2,73300.0,kg/TJ,15501846.87898,kg +228c4fab-2c1d-36c7-8c5e-ded941690854,SESCO,II.1.1,San Juan,AR-J,annual,2013,naphtha combustion consumption by to the public,211.4849506,TJ,CH4,3.0,kg/TJ,634.4548517999999,kg +7fe1a74f-af8d-3556-b035-cac3132c2998,SESCO,II.1.1,San Juan,AR-J,annual,2013,naphtha combustion consumption by to the public,211.4849506,TJ,N2O,0.6,kg/TJ,126.89097035999998,kg +18694a38-3db6-344a-bce7-04b3ad9d7fd7,SESCO,II.1.1,San Luis,AR-D,annual,2013,naphtha combustion consumption by to the public,21.386842399999995,TJ,CO2,73300.0,kg/TJ,1567655.5479199996,kg +955dbf29-66c8-3b2c-be80-8dbfc3309123,SESCO,II.1.1,San Luis,AR-D,annual,2013,naphtha combustion consumption by to the public,21.386842399999995,TJ,CH4,3.0,kg/TJ,64.16052719999999,kg +46249eb0-48ea-30d9-a143-ad6e18a8c529,SESCO,II.1.1,San Luis,AR-D,annual,2013,naphtha combustion consumption by to the public,21.386842399999995,TJ,N2O,0.6,kg/TJ,12.832105439999998,kg +765e9f58-ea0e-3f1f-b521-8ac685c89a84,SESCO,II.1.1,Santa Fe,AR-S,annual,2013,naphtha combustion consumption by to the public,3454.5870204999997,TJ,CO2,73300.0,kg/TJ,253221228.60265,kg +1c3a2649-2293-3450-b403-fbd13f832af4,SESCO,II.1.1,Santa Fe,AR-S,annual,2013,naphtha combustion consumption by to the public,3454.5870204999997,TJ,CH4,3.0,kg/TJ,10363.7610615,kg +258ef690-b5b3-352b-933f-24c6b28bca61,SESCO,II.1.1,Santa Fe,AR-S,annual,2013,naphtha combustion consumption by to the public,3454.5870204999997,TJ,N2O,0.6,kg/TJ,2072.7522123,kg +14a61962-10dc-36ef-8644-ea16d954099b,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2013,naphtha combustion consumption by to the public,364.41375739999995,TJ,CO2,73300.0,kg/TJ,26711528.417419996,kg +b36d8e74-51c3-3466-ba73-4b0dae7efc78,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2013,naphtha combustion consumption by to the public,364.41375739999995,TJ,CH4,3.0,kg/TJ,1093.2412722,kg +102238c1-75ea-3b59-a26e-1c2d04caa4e4,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2013,naphtha combustion consumption by to the public,364.41375739999995,TJ,N2O,0.6,kg/TJ,218.64825443999996,kg +3c3c8b18-f6e9-3e80-9122-1f8dcf81d80b,SESCO,II.1.1,Tucuman,AR-T,annual,2013,naphtha combustion consumption by to the public,828.9978158,TJ,CO2,73300.0,kg/TJ,60765539.89814,kg +19e38f34-b49f-3b04-8c49-639d12ae8cf4,SESCO,II.1.1,Tucuman,AR-T,annual,2013,naphtha combustion consumption by to the public,828.9978158,TJ,CH4,3.0,kg/TJ,2486.9934474,kg +9d056192-d3fc-3a19-b9b1-60cdb09920ff,SESCO,II.1.1,Tucuman,AR-T,annual,2013,naphtha combustion consumption by to the public,828.9978158,TJ,N2O,0.6,kg/TJ,497.39868948,kg +6a80d3d2-b8c2-3204-a46e-21787f7f3d17,SESCO,II.1.1,Buenos Aires,AR-B,annual,2013,naphtha combustion consumption by to the public,6553.553367899999,TJ,CO2,73300.0,kg/TJ,480375461.86706996,kg +25abcec6-4554-38fd-a830-f0a3730d689d,SESCO,II.1.1,Buenos Aires,AR-B,annual,2013,naphtha combustion consumption by to the public,6553.553367899999,TJ,CH4,3.0,kg/TJ,19660.660103699996,kg +8e06cb37-d7da-3db3-bcf8-b143a7f8c226,SESCO,II.1.1,Buenos Aires,AR-B,annual,2013,naphtha combustion consumption by to the public,6553.553367899999,TJ,N2O,0.6,kg/TJ,3932.1320207399995,kg +4cb898e4-f344-3a29-a1a7-732f0d7cac01,SESCO,II.1.1,Capital Federal,AR-C,annual,2013,naphtha combustion consumption by to the public,2661.0836329,TJ,CO2,73300.0,kg/TJ,195057430.29156998,kg +249ab70a-dc5f-3e8b-922d-6e8763dc165e,SESCO,II.1.1,Capital Federal,AR-C,annual,2013,naphtha combustion consumption by to the public,2661.0836329,TJ,CH4,3.0,kg/TJ,7983.2508987,kg +f1b93982-1dd2-3dce-92c3-b5205cfab2cb,SESCO,II.1.1,Capital Federal,AR-C,annual,2013,naphtha combustion consumption by to the public,2661.0836329,TJ,N2O,0.6,kg/TJ,1596.6501797399999,kg +eca7b725-3b36-30e7-aaa3-297d4135520c,SESCO,II.1.1,Catamarca,AR-K,annual,2013,naphtha combustion consumption by to the public,32.9821184,TJ,CO2,73300.0,kg/TJ,2417589.27872,kg +442dddef-0998-3328-9c52-832146ffe5df,SESCO,II.1.1,Catamarca,AR-K,annual,2013,naphtha combustion consumption by to the public,32.9821184,TJ,CH4,3.0,kg/TJ,98.9463552,kg +331b63c2-7f2c-354b-ad95-f790456000ea,SESCO,II.1.1,Catamarca,AR-K,annual,2013,naphtha combustion consumption by to the public,32.9821184,TJ,N2O,0.6,kg/TJ,19.78927104,kg +82092458-e99c-3d52-96b3-489083a22100,SESCO,II.1.1,Chaco,AR-H,annual,2013,naphtha combustion consumption by to the public,242.11580469999996,TJ,CO2,73300.0,kg/TJ,17747088.484509997,kg +561ea4dd-31da-31fe-95eb-ca0eebbdca08,SESCO,II.1.1,Chaco,AR-H,annual,2013,naphtha combustion consumption by to the public,242.11580469999996,TJ,CH4,3.0,kg/TJ,726.3474140999999,kg +ca524060-605c-323b-996a-3c4ef18d2e24,SESCO,II.1.1,Chaco,AR-H,annual,2013,naphtha combustion consumption by to the public,242.11580469999996,TJ,N2O,0.6,kg/TJ,145.26948281999998,kg +69664fb0-48eb-32db-8b0a-c0ae88556cb4,SESCO,II.1.1,Chubut,AR-U,annual,2013,naphtha combustion consumption by to the public,20.774869499999998,TJ,CO2,73300.0,kg/TJ,1522797.9343499998,kg +23014ec9-399e-381d-bc2c-2df5b5a834aa,SESCO,II.1.1,Chubut,AR-U,annual,2013,naphtha combustion consumption by to the public,20.774869499999998,TJ,CH4,3.0,kg/TJ,62.3246085,kg +6df978e0-c120-38ea-8474-8f1434cd6f1a,SESCO,II.1.1,Chubut,AR-U,annual,2013,naphtha combustion consumption by to the public,20.774869499999998,TJ,N2O,0.6,kg/TJ,12.464921699999998,kg +4317f1de-86ad-3237-8d30-45791062299e,SESCO,II.1.1,Corrientes,AR-W,annual,2013,naphtha combustion consumption by to the public,277.3847692,TJ,CO2,73300.0,kg/TJ,20332303.58236,kg +777124c1-9405-35f5-be79-c11e4ce4b62f,SESCO,II.1.1,Corrientes,AR-W,annual,2013,naphtha combustion consumption by to the public,277.3847692,TJ,CH4,3.0,kg/TJ,832.1543076,kg +bcc7d8ab-1e90-391f-91d8-38a2cbb55ad4,SESCO,II.1.1,Corrientes,AR-W,annual,2013,naphtha combustion consumption by to the public,277.3847692,TJ,N2O,0.6,kg/TJ,166.43086151999998,kg +b7dac6d0-7355-34b2-a932-36dcebb39e27,SESCO,II.1.1,Córdoba,AR-X,annual,2013,naphtha combustion consumption by to the public,1100.1340195999999,TJ,CO2,73300.0,kg/TJ,80639823.63667999,kg +dce839ec-4e31-321d-979f-51b790e44162,SESCO,II.1.1,Córdoba,AR-X,annual,2013,naphtha combustion consumption by to the public,1100.1340195999999,TJ,CH4,3.0,kg/TJ,3300.4020587999994,kg +ce685e70-4d0a-36d2-ab8e-d2765741c89a,SESCO,II.1.1,Córdoba,AR-X,annual,2013,naphtha combustion consumption by to the public,1100.1340195999999,TJ,N2O,0.6,kg/TJ,660.08041176,kg +cdcc5df6-43dc-3d75-aa56-653523a51e38,SESCO,II.1.1,Entre Rios,AR-E,annual,2013,naphtha combustion consumption by to the public,377.1363518999999,TJ,CO2,73300.0,kg/TJ,27644094.594269995,kg +42979a01-1d95-372b-bf11-acc358c5951e,SESCO,II.1.1,Entre Rios,AR-E,annual,2013,naphtha combustion consumption by to the public,377.1363518999999,TJ,CH4,3.0,kg/TJ,1131.4090556999997,kg +933f1b14-733d-3ffe-acfb-5039bf2c1ef6,SESCO,II.1.1,Entre Rios,AR-E,annual,2013,naphtha combustion consumption by to the public,377.1363518999999,TJ,N2O,0.6,kg/TJ,226.28181113999995,kg +ac9cc59d-1665-360c-9ae9-7c0815d70b37,SESCO,II.1.1,Formosa,AR-P,annual,2013,naphtha combustion consumption by to the public,145.0697864,TJ,CO2,73300.0,kg/TJ,10633615.34312,kg +ca542951-c13e-3b4d-854c-4095ac5fbc6d,SESCO,II.1.1,Formosa,AR-P,annual,2013,naphtha combustion consumption by to the public,145.0697864,TJ,CH4,3.0,kg/TJ,435.2093592,kg +76c8bbb0-3494-3346-8508-bec3343df46d,SESCO,II.1.1,Formosa,AR-P,annual,2013,naphtha combustion consumption by to the public,145.0697864,TJ,N2O,0.6,kg/TJ,87.04187184,kg +6d19e60b-a52b-32ab-b795-f4f4ddc308f9,SESCO,II.1.1,Jujuy,AR-Y,annual,2013,naphtha combustion consumption by to the public,49.408759399999994,TJ,CO2,73300.0,kg/TJ,3621662.0640199995,kg +47a5a152-4ccb-3f0e-b75b-8d1dfb327a4e,SESCO,II.1.1,Jujuy,AR-Y,annual,2013,naphtha combustion consumption by to the public,49.408759399999994,TJ,CH4,3.0,kg/TJ,148.22627819999997,kg +09f185fd-9075-3dfc-903e-6fa4ddfe90d4,SESCO,II.1.1,Jujuy,AR-Y,annual,2013,naphtha combustion consumption by to the public,49.408759399999994,TJ,N2O,0.6,kg/TJ,29.645255639999995,kg +8c4164c4-89a0-36af-b70f-707343c8eae7,SESCO,II.1.1,La Pampa,AR-L,annual,2013,naphtha combustion consumption by to the public,129.9637185,TJ,CO2,73300.0,kg/TJ,9526340.56605,kg +fb30921b-cc77-343c-86cc-f7fd1c75ca6e,SESCO,II.1.1,La Pampa,AR-L,annual,2013,naphtha combustion consumption by to the public,129.9637185,TJ,CH4,3.0,kg/TJ,389.89115549999997,kg +431d4e33-aba4-3b69-b2e0-70759586b12a,SESCO,II.1.1,La Pampa,AR-L,annual,2013,naphtha combustion consumption by to the public,129.9637185,TJ,N2O,0.6,kg/TJ,77.9782311,kg +613e6c3d-d0a0-3df0-ad61-bab957640228,SESCO,II.1.1,La Rioja,AR-F,annual,2013,naphtha combustion consumption by to the public,73.21128429999999,TJ,CO2,73300.0,kg/TJ,5366387.13919,kg +a93ebccb-6f81-375c-a75c-f061ab72e33a,SESCO,II.1.1,La Rioja,AR-F,annual,2013,naphtha combustion consumption by to the public,73.21128429999999,TJ,CH4,3.0,kg/TJ,219.63385289999997,kg +3e4a3fe7-31b4-3cb0-8699-63880cb769d7,SESCO,II.1.1,La Rioja,AR-F,annual,2013,naphtha combustion consumption by to the public,73.21128429999999,TJ,N2O,0.6,kg/TJ,43.92677057999999,kg +e26dbef0-fcb3-33ef-bfff-50b3c19feeac,SESCO,II.1.1,Mendoza,AR-M,annual,2013,naphtha combustion consumption by to the public,288.2070268,TJ,CO2,73300.0,kg/TJ,21125575.06444,kg +6d3c0aa7-8604-3324-ae04-a29b71e1e7b5,SESCO,II.1.1,Mendoza,AR-M,annual,2013,naphtha combustion consumption by to the public,288.2070268,TJ,CH4,3.0,kg/TJ,864.6210804,kg +cc8df88f-bc8d-35c9-b239-4b4708ff9fc9,SESCO,II.1.1,Mendoza,AR-M,annual,2013,naphtha combustion consumption by to the public,288.2070268,TJ,N2O,0.6,kg/TJ,172.92421607999998,kg +beced9a9-a930-3040-bc28-30cdd04e85d2,SESCO,II.1.1,Misiones,AR-N,annual,2013,naphtha combustion consumption by to the public,238.73384919999998,TJ,CO2,73300.0,kg/TJ,17499191.14636,kg +be7d583f-12f5-3ba8-9d38-b25960d7ec9c,SESCO,II.1.1,Misiones,AR-N,annual,2013,naphtha combustion consumption by to the public,238.73384919999998,TJ,CH4,3.0,kg/TJ,716.2015475999999,kg +e3f7075c-d0f8-3d00-8882-afbac74e57cc,SESCO,II.1.1,Misiones,AR-N,annual,2013,naphtha combustion consumption by to the public,238.73384919999998,TJ,N2O,0.6,kg/TJ,143.24030951999998,kg +bb8ce9be-28f4-3d41-9aab-2bb526179bd1,SESCO,II.1.1,Neuquén,AR-Q,annual,2013,naphtha combustion consumption by to the public,126.87164489999998,TJ,CO2,73300.0,kg/TJ,9299691.571169998,kg +ee4cfd29-bc31-3aeb-9313-65ab5fd70bc9,SESCO,II.1.1,Neuquén,AR-Q,annual,2013,naphtha combustion consumption by to the public,126.87164489999998,TJ,CH4,3.0,kg/TJ,380.61493469999994,kg +89ee00e5-99a2-339a-83c2-d381e072af1b,SESCO,II.1.1,Neuquén,AR-Q,annual,2013,naphtha combustion consumption by to the public,126.87164489999998,TJ,N2O,0.6,kg/TJ,76.12298693999999,kg +8799e99d-81e0-324b-9781-3705acf5aaf3,SESCO,II.1.1,Rio Negro,AR-R,annual,2013,naphtha combustion consumption by to the public,76.7864944,TJ,CO2,73300.0,kg/TJ,5628450.03952,kg +b1bac0fe-329a-381c-9031-57cd69b9efca,SESCO,II.1.1,Rio Negro,AR-R,annual,2013,naphtha combustion consumption by to the public,76.7864944,TJ,CH4,3.0,kg/TJ,230.3594832,kg +4d7eeced-cdc7-3fea-80ff-3c3685cf4d8b,SESCO,II.1.1,Rio Negro,AR-R,annual,2013,naphtha combustion consumption by to the public,76.7864944,TJ,N2O,0.6,kg/TJ,46.07189664,kg +d89fa99f-ba05-31c1-9a6d-5d9a4ffeff3d,SESCO,II.1.1,Salta,AR-A,annual,2013,naphtha combustion consumption by to the public,86.35259709999998,TJ,CO2,73300.0,kg/TJ,6329645.367429999,kg +4f7e53a5-c4fb-311a-9e6d-accd737c5982,SESCO,II.1.1,Salta,AR-A,annual,2013,naphtha combustion consumption by to the public,86.35259709999998,TJ,CH4,3.0,kg/TJ,259.05779129999996,kg +b140c7c7-736b-3b46-b93d-e6892c3a25bc,SESCO,II.1.1,Salta,AR-A,annual,2013,naphtha combustion consumption by to the public,86.35259709999998,TJ,N2O,0.6,kg/TJ,51.81155825999999,kg +c76c3c27-f2b3-3e09-ad24-b5c4223f7687,SESCO,II.1.1,San Juan,AR-J,annual,2013,naphtha combustion consumption by to the public,32.8210729,TJ,CO2,73300.0,kg/TJ,2405784.64357,kg +a8da858b-e5e8-3cc3-9b7c-43dc8a3e9e82,SESCO,II.1.1,San Juan,AR-J,annual,2013,naphtha combustion consumption by to the public,32.8210729,TJ,CH4,3.0,kg/TJ,98.4632187,kg +5f0f15b3-1eb9-3b13-92f6-f69f721c6369,SESCO,II.1.1,San Juan,AR-J,annual,2013,naphtha combustion consumption by to the public,32.8210729,TJ,N2O,0.6,kg/TJ,19.692643739999998,kg +60a0f647-f34b-3b7c-b310-af1b27df02a4,SESCO,II.1.1,San Luis,AR-D,annual,2013,naphtha combustion consumption by to the public,33.658509499999994,TJ,CO2,73300.0,kg/TJ,2467168.7463499997,kg +e95cc4e4-47b9-3dec-83d3-3a81a3abbe4a,SESCO,II.1.1,San Luis,AR-D,annual,2013,naphtha combustion consumption by to the public,33.658509499999994,TJ,CH4,3.0,kg/TJ,100.97552849999998,kg +4b39b3d8-b759-3742-8392-d23ac3252614,SESCO,II.1.1,San Luis,AR-D,annual,2013,naphtha combustion consumption by to the public,33.658509499999994,TJ,N2O,0.6,kg/TJ,20.195105699999996,kg +efcdeba6-29a3-33c8-9a9e-fd52fbdf0e88,SESCO,II.1.1,Santa Fe,AR-S,annual,2013,naphtha combustion consumption by to the public,1442.8710526999998,TJ,CO2,73300.0,kg/TJ,105762448.16290998,kg +d3259cdf-9a67-3597-a7f8-c24ab025936a,SESCO,II.1.1,Santa Fe,AR-S,annual,2013,naphtha combustion consumption by to the public,1442.8710526999998,TJ,CH4,3.0,kg/TJ,4328.613158099999,kg +d96280ce-14b7-3a75-8fbe-8fcc532cec8a,SESCO,II.1.1,Santa Fe,AR-S,annual,2013,naphtha combustion consumption by to the public,1442.8710526999998,TJ,N2O,0.6,kg/TJ,865.7226316199999,kg +862581c9-bf12-3e48-ae95-5247b79d850f,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2013,naphtha combustion consumption by to the public,129.480582,TJ,CO2,73300.0,kg/TJ,9490926.6606,kg +07881a6a-88e0-3630-858c-19e4bc2f0842,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2013,naphtha combustion consumption by to the public,129.480582,TJ,CH4,3.0,kg/TJ,388.44174599999997,kg +9316c6b7-42ba-3611-aadb-aa436530dec3,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2013,naphtha combustion consumption by to the public,129.480582,TJ,N2O,0.6,kg/TJ,77.68834919999999,kg +88834532-7886-3e82-80c1-eb359ada6a1f,SESCO,II.1.1,Tucuman,AR-T,annual,2013,naphtha combustion consumption by to the public,258.316982,TJ,CO2,73300.0,kg/TJ,18934634.7806,kg +5bc6ee2e-7641-306a-8814-2f4f67597e33,SESCO,II.1.1,Tucuman,AR-T,annual,2013,naphtha combustion consumption by to the public,258.316982,TJ,CH4,3.0,kg/TJ,774.9509459999999,kg +faa2561e-0688-39b1-849f-2824025d53d3,SESCO,II.1.1,Tucuman,AR-T,annual,2013,naphtha combustion consumption by to the public,258.316982,TJ,N2O,0.6,kg/TJ,154.9901892,kg +5f2091c9-97ce-31f5-977d-9af1464e966f,SESCO,II.5.1,Buenos Aires,AR-B,annual,2013,naphtha combustion consumption by agriculture machines,4.1549739,TJ,CO2,73300.0,kg/TJ,304559.58687,kg +b70d7c33-7354-391b-be37-c2767cfe7cb5,SESCO,II.5.1,Buenos Aires,AR-B,annual,2013,naphtha combustion consumption by agriculture machines,4.1549739,TJ,CH4,3.0,kg/TJ,12.4649217,kg +c6ed47a1-120a-39f0-8590-b9c81c2fdd49,SESCO,II.5.1,Buenos Aires,AR-B,annual,2013,naphtha combustion consumption by agriculture machines,4.1549739,TJ,N2O,0.6,kg/TJ,2.49298434,kg +841e44bd-a41d-3358-927d-f68ddb4d78b2,SESCO,II.5.1,Chubut,AR-U,annual,2013,naphtha combustion consumption by agriculture machines,12.6581763,TJ,CO2,73300.0,kg/TJ,927844.3227899999,kg +727eacdd-be7f-3366-8fec-1f5a354d49c1,SESCO,II.5.1,Chubut,AR-U,annual,2013,naphtha combustion consumption by agriculture machines,12.6581763,TJ,CH4,3.0,kg/TJ,37.974528899999996,kg +0328e283-1096-3fe5-8412-0bb7414814cb,SESCO,II.5.1,Chubut,AR-U,annual,2013,naphtha combustion consumption by agriculture machines,12.6581763,TJ,N2O,0.6,kg/TJ,7.5949057799999995,kg +9da89179-8763-382e-85dc-5a5cee8e3bd9,SESCO,II.5.1,Entre Rios,AR-E,annual,2013,naphtha combustion consumption by agriculture machines,3.7362556,TJ,CO2,73300.0,kg/TJ,273867.53547999996,kg +9f9e6800-2176-3233-9452-5699609816f5,SESCO,II.5.1,Entre Rios,AR-E,annual,2013,naphtha combustion consumption by agriculture machines,3.7362556,TJ,CH4,3.0,kg/TJ,11.2087668,kg +f6bd7de5-fb2f-38a4-890d-e8dbe130351e,SESCO,II.5.1,Entre Rios,AR-E,annual,2013,naphtha combustion consumption by agriculture machines,3.7362556,TJ,N2O,0.6,kg/TJ,2.2417533599999997,kg +383ffc24-8a65-3742-a551-ffb829149fdc,SESCO,II.5.1,La Pampa,AR-L,annual,2013,naphtha combustion consumption by agriculture machines,0.8696456999999999,TJ,CO2,73300.0,kg/TJ,63745.02980999999,kg +690aecff-aa1c-3df7-8138-8fddb77ffdab,SESCO,II.5.1,La Pampa,AR-L,annual,2013,naphtha combustion consumption by agriculture machines,0.8696456999999999,TJ,CH4,3.0,kg/TJ,2.6089370999999995,kg +bd98fa72-dc78-3bf4-b04a-dfad35145b73,SESCO,II.5.1,La Pampa,AR-L,annual,2013,naphtha combustion consumption by agriculture machines,0.8696456999999999,TJ,N2O,0.6,kg/TJ,0.5217874199999999,kg +12a469a4-4c5f-3273-b35c-995ecee4e744,SESCO,II.5.1,Santa Fe,AR-S,annual,2013,naphtha combustion consumption by agriculture machines,29.471326499999996,TJ,CO2,73300.0,kg/TJ,2160248.2324499995,kg +48bf8e49-99d8-3fb1-a1c3-62a3569d1b70,SESCO,II.5.1,Santa Fe,AR-S,annual,2013,naphtha combustion consumption by agriculture machines,29.471326499999996,TJ,CH4,3.0,kg/TJ,88.41397949999998,kg +1c904729-d019-3103-b2a4-b5db3e08475c,SESCO,II.5.1,Santa Fe,AR-S,annual,2013,naphtha combustion consumption by agriculture machines,29.471326499999996,TJ,N2O,0.6,kg/TJ,17.6827959,kg +01683a27-818c-3d98-ae20-da488d07063f,SESCO,II.5.1,Santiago del Estero,AR-G,annual,2013,naphtha combustion consumption by agriculture machines,0.4187183,TJ,CO2,73300.0,kg/TJ,30692.05139,kg +ca75203c-2117-376b-87e9-0eab5537c002,SESCO,II.5.1,Santiago del Estero,AR-G,annual,2013,naphtha combustion consumption by agriculture machines,0.4187183,TJ,CH4,3.0,kg/TJ,1.2561548999999999,kg +05d69700-68e9-3059-bb63-81164d50dcb4,SESCO,II.5.1,Santiago del Estero,AR-G,annual,2013,naphtha combustion consumption by agriculture machines,0.4187183,TJ,N2O,0.6,kg/TJ,0.25123098,kg +3794966e-2b80-384b-b58d-668c5e2b578c,SESCO,II.5.1,Buenos Aires,AR-B,annual,2013,naphtha combustion consumption by agriculture machines,0.9018548,TJ,CO2,73300.0,kg/TJ,66105.95684,kg +2a21747e-0382-323f-b308-0b6fccae1ad2,SESCO,II.5.1,Buenos Aires,AR-B,annual,2013,naphtha combustion consumption by agriculture machines,0.9018548,TJ,CH4,3.0,kg/TJ,2.7055644,kg +51ea8292-b3da-3a88-8f53-d13b24360ba7,SESCO,II.5.1,Buenos Aires,AR-B,annual,2013,naphtha combustion consumption by agriculture machines,0.9018548,TJ,N2O,0.6,kg/TJ,0.5411128799999999,kg +4fe52e8b-4633-358b-9b37-33e529adfeaf,SESCO,II.5.1,Santa Fe,AR-S,annual,2013,naphtha combustion consumption by agriculture machines,2.1258006,TJ,CO2,73300.0,kg/TJ,155821.18397999997,kg +82f47be6-acc8-3a73-8285-f953502cded5,SESCO,II.5.1,Santa Fe,AR-S,annual,2013,naphtha combustion consumption by agriculture machines,2.1258006,TJ,CH4,3.0,kg/TJ,6.3774017999999995,kg +7267a9e0-922c-34ff-9b07-4b52438a6875,SESCO,II.5.1,Santa Fe,AR-S,annual,2013,naphtha combustion consumption by agriculture machines,2.1258006,TJ,N2O,0.6,kg/TJ,1.2754803599999998,kg +9ef4705c-df0b-38c8-aef4-3a996dfd7139,SESCO,II.1.1,Buenos Aires,AR-B,annual,2013,naphtha combustion consumption by to the public,38359.3632268,TJ,CO2,73300.0,kg/TJ,2811741324.52444,kg +9fd0b783-320c-3f56-a3e3-cbbba96ee402,SESCO,II.1.1,Buenos Aires,AR-B,annual,2013,naphtha combustion consumption by to the public,38359.3632268,TJ,CH4,3.0,kg/TJ,115078.08968040001,kg +0dcaa4f8-8fa7-3230-936c-a73f16184a6b,SESCO,II.1.1,Buenos Aires,AR-B,annual,2013,naphtha combustion consumption by to the public,38359.3632268,TJ,N2O,0.6,kg/TJ,23015.617936079998,kg +46eff68c-3bac-3ef2-9f34-2f4325fdaffd,SESCO,II.1.1,Capital Federal,AR-C,annual,2013,naphtha combustion consumption by to the public,7874.480767999999,TJ,CO2,73300.0,kg/TJ,577199440.2944,kg +6a489afd-9a5b-3181-bcb5-e96924188b0a,SESCO,II.1.1,Capital Federal,AR-C,annual,2013,naphtha combustion consumption by to the public,7874.480767999999,TJ,CH4,3.0,kg/TJ,23623.442303999997,kg +c54936d2-d49b-3d56-bc29-4b2fd943486a,SESCO,II.1.1,Capital Federal,AR-C,annual,2013,naphtha combustion consumption by to the public,7874.480767999999,TJ,N2O,0.6,kg/TJ,4724.688460799999,kg +d455bb10-e5ef-343e-906c-c6292b20d35a,SESCO,II.1.1,Catamarca,AR-K,annual,2013,naphtha combustion consumption by to the public,648.5624376,TJ,CO2,73300.0,kg/TJ,47539626.676079996,kg +a83511c6-0d34-3407-b428-30e94004da8a,SESCO,II.1.1,Catamarca,AR-K,annual,2013,naphtha combustion consumption by to the public,648.5624376,TJ,CH4,3.0,kg/TJ,1945.6873127999997,kg +d7bd4df9-7cd1-33d4-b71a-fd7bab11d037,SESCO,II.1.1,Catamarca,AR-K,annual,2013,naphtha combustion consumption by to the public,648.5624376,TJ,N2O,0.6,kg/TJ,389.13746255999996,kg +e3752f0b-34da-3605-8958-7c7514569504,SESCO,II.1.1,Chaco,AR-H,annual,2013,naphtha combustion consumption by to the public,2081.1587873999997,TJ,CO2,73300.0,kg/TJ,152548939.11641997,kg +be5eaece-e957-36ad-bf8b-2fe01fb86d24,SESCO,II.1.1,Chaco,AR-H,annual,2013,naphtha combustion consumption by to the public,2081.1587873999997,TJ,CH4,3.0,kg/TJ,6243.476362199999,kg +34edec11-bb11-313c-9b4d-1e07df8a4289,SESCO,II.1.1,Chaco,AR-H,annual,2013,naphtha combustion consumption by to the public,2081.1587873999997,TJ,N2O,0.6,kg/TJ,1248.6952724399998,kg +63f1d1ec-8ab2-3f7e-b287-c9f9f0bc9391,SESCO,II.1.1,Chubut,AR-U,annual,2013,naphtha combustion consumption by to the public,3747.3677395,TJ,CO2,73300.0,kg/TJ,274682055.30535,kg +c034be78-9347-3365-aa04-dfc2bf1f87be,SESCO,II.1.1,Chubut,AR-U,annual,2013,naphtha combustion consumption by to the public,3747.3677395,TJ,CH4,3.0,kg/TJ,11242.1032185,kg +163ec42b-1376-372c-8078-aa0188658c5f,SESCO,II.1.1,Chubut,AR-U,annual,2013,naphtha combustion consumption by to the public,3747.3677395,TJ,N2O,0.6,kg/TJ,2248.4206437,kg +60b004d9-998b-3286-8d68-5578e6bc8f39,SESCO,II.1.1,Corrientes,AR-W,annual,2013,naphtha combustion consumption by to the public,2295.1882569,TJ,CO2,73300.0,kg/TJ,168237299.23077,kg +a6531b04-ee3b-38dc-8936-e0c7139f4894,SESCO,II.1.1,Corrientes,AR-W,annual,2013,naphtha combustion consumption by to the public,2295.1882569,TJ,CH4,3.0,kg/TJ,6885.5647707,kg +7ba3edb1-1387-3371-88cd-b1d9f3fe70e2,SESCO,II.1.1,Corrientes,AR-W,annual,2013,naphtha combustion consumption by to the public,2295.1882569,TJ,N2O,0.6,kg/TJ,1377.1129541399998,kg +b6b6052d-abf4-32b9-85bf-37a900f028ec,SESCO,II.1.1,Córdoba,AR-X,annual,2013,naphtha combustion consumption by to the public,9504.4866917,TJ,CO2,73300.0,kg/TJ,696678874.50161,kg +6650a112-dfac-3ad5-aa44-c9b2b0a31af5,SESCO,II.1.1,Córdoba,AR-X,annual,2013,naphtha combustion consumption by to the public,9504.4866917,TJ,CH4,3.0,kg/TJ,28513.4600751,kg +17957da4-f760-3543-a731-d95f704e441d,SESCO,II.1.1,Córdoba,AR-X,annual,2013,naphtha combustion consumption by to the public,9504.4866917,TJ,N2O,0.6,kg/TJ,5702.692015019999,kg +36c2627f-cae1-347f-8b4f-a54d05d2dac5,SESCO,II.1.1,Entre Rios,AR-E,annual,2013,naphtha combustion consumption by to the public,2935.9560923,TJ,CO2,73300.0,kg/TJ,215205581.56559,kg +b80f4134-3c2f-3f6f-9280-beb1047a2dfb,SESCO,II.1.1,Entre Rios,AR-E,annual,2013,naphtha combustion consumption by to the public,2935.9560923,TJ,CH4,3.0,kg/TJ,8807.8682769,kg +2f9ddbaf-0eb6-33c0-902f-5f20eb9359b1,SESCO,II.1.1,Entre Rios,AR-E,annual,2013,naphtha combustion consumption by to the public,2935.9560923,TJ,N2O,0.6,kg/TJ,1761.57365538,kg +89e7409b-0c6d-3d75-a2eb-1edf8e16d3c0,SESCO,II.1.1,Formosa,AR-P,annual,2013,naphtha combustion consumption by to the public,792.5049055,TJ,CO2,73300.0,kg/TJ,58090609.573149994,kg +26af93cf-a5a2-32b0-98bf-8f29ff0dbe60,SESCO,II.1.1,Formosa,AR-P,annual,2013,naphtha combustion consumption by to the public,792.5049055,TJ,CH4,3.0,kg/TJ,2377.5147165,kg +c80ee30c-b4de-3740-a027-5cca9e07c7eb,SESCO,II.1.1,Formosa,AR-P,annual,2013,naphtha combustion consumption by to the public,792.5049055,TJ,N2O,0.6,kg/TJ,475.50294329999997,kg +820bf624-5ee0-3399-9278-015201a86938,SESCO,II.1.1,Jujuy,AR-Y,annual,2013,naphtha combustion consumption by to the public,1007.9515753999999,TJ,CO2,73300.0,kg/TJ,73882850.47681999,kg +708581bc-4e50-3f81-85d7-222703a05f9b,SESCO,II.1.1,Jujuy,AR-Y,annual,2013,naphtha combustion consumption by to the public,1007.9515753999999,TJ,CH4,3.0,kg/TJ,3023.8547261999997,kg +a5101f8a-61c4-3d14-aeb2-a86261ab4d64,SESCO,II.1.1,Jujuy,AR-Y,annual,2013,naphtha combustion consumption by to the public,1007.9515753999999,TJ,N2O,0.6,kg/TJ,604.77094524,kg +c813a4f9-744b-3a42-a7ca-2544f51796a2,SESCO,II.1.1,La Pampa,AR-L,annual,2013,naphtha combustion consumption by to the public,1635.4814706999998,TJ,CO2,73300.0,kg/TJ,119880791.80230999,kg +1d46df78-4e4c-32da-b75b-d5570a84f9bc,SESCO,II.1.1,La Pampa,AR-L,annual,2013,naphtha combustion consumption by to the public,1635.4814706999998,TJ,CH4,3.0,kg/TJ,4906.4444121,kg +1e411006-fd0a-385a-9208-46a00b1a95f9,SESCO,II.1.1,La Pampa,AR-L,annual,2013,naphtha combustion consumption by to the public,1635.4814706999998,TJ,N2O,0.6,kg/TJ,981.2888824199998,kg +ac2ff34a-1ed8-3125-8b1a-c4677a627384,SESCO,II.1.1,La Rioja,AR-F,annual,2013,naphtha combustion consumption by to the public,894.6399615999999,TJ,CO2,73300.0,kg/TJ,65577109.18527999,kg +9703109e-46de-3747-8229-90e7336d7e72,SESCO,II.1.1,La Rioja,AR-F,annual,2013,naphtha combustion consumption by to the public,894.6399615999999,TJ,CH4,3.0,kg/TJ,2683.9198847999996,kg +b3bb5318-772d-3fce-8a00-cda78a11da36,SESCO,II.1.1,La Rioja,AR-F,annual,2013,naphtha combustion consumption by to the public,894.6399615999999,TJ,N2O,0.6,kg/TJ,536.7839769599999,kg +29509798-d8f8-358a-a2f0-06ddaf5fc1bc,SESCO,II.1.1,Mendoza,AR-M,annual,2013,naphtha combustion consumption by to the public,5240.227315399999,TJ,CO2,73300.0,kg/TJ,384108662.2188199,kg +af604ce2-878c-397c-a2b9-621f82e6f850,SESCO,II.1.1,Mendoza,AR-M,annual,2013,naphtha combustion consumption by to the public,5240.227315399999,TJ,CH4,3.0,kg/TJ,15720.681946199995,kg +0275fe73-9018-3663-a929-ed513ed92f3d,SESCO,II.1.1,Mendoza,AR-M,annual,2013,naphtha combustion consumption by to the public,5240.227315399999,TJ,N2O,0.6,kg/TJ,3144.136389239999,kg +c84204d0-d50e-3cf7-b8fc-e7fbf563b6c7,SESCO,II.1.1,Misiones,AR-N,annual,2013,naphtha combustion consumption by to the public,3061.3139094999997,TJ,CO2,73300.0,kg/TJ,224394309.56634998,kg +28198087-9ad6-3e4c-95ef-b0203c5f9da7,SESCO,II.1.1,Misiones,AR-N,annual,2013,naphtha combustion consumption by to the public,3061.3139094999997,TJ,CH4,3.0,kg/TJ,9183.941728499998,kg +b576ad30-be66-3b88-9f9d-867732c6add2,SESCO,II.1.1,Misiones,AR-N,annual,2013,naphtha combustion consumption by to the public,3061.3139094999997,TJ,N2O,0.6,kg/TJ,1836.7883456999998,kg +398e6d65-3cc4-3766-993a-09d47ce6ce93,SESCO,II.1.1,Neuquén,AR-Q,annual,2013,naphtha combustion consumption by to the public,2977.9567586999997,TJ,CO2,73300.0,kg/TJ,218284230.41270998,kg +a3217cba-d364-3148-a4cc-959d21d31b01,SESCO,II.1.1,Neuquén,AR-Q,annual,2013,naphtha combustion consumption by to the public,2977.9567586999997,TJ,CH4,3.0,kg/TJ,8933.870276099999,kg +ee8baff8-5e6a-318b-af52-142f4609ffb4,SESCO,II.1.1,Neuquén,AR-Q,annual,2013,naphtha combustion consumption by to the public,2977.9567586999997,TJ,N2O,0.6,kg/TJ,1786.7740552199998,kg +95b6eb39-a46c-38d9-ae58-8008b7e2e6ff,SESCO,II.1.1,Rio Negro,AR-R,annual,2013,naphtha combustion consumption by to the public,3045.2093594999997,TJ,CO2,73300.0,kg/TJ,223213846.05134997,kg +17642d3c-c228-3756-a231-e104050b2723,SESCO,II.1.1,Rio Negro,AR-R,annual,2013,naphtha combustion consumption by to the public,3045.2093594999997,TJ,CH4,3.0,kg/TJ,9135.628078499998,kg +082cf6ef-f6d7-3c13-a40a-07612b167006,SESCO,II.1.1,Rio Negro,AR-R,annual,2013,naphtha combustion consumption by to the public,3045.2093594999997,TJ,N2O,0.6,kg/TJ,1827.1256156999998,kg +220570f4-c482-3095-8f68-20e557d2ccdc,SESCO,II.1.1,Salta,AR-A,annual,2013,naphtha combustion consumption by to the public,2344.5325980999996,TJ,CO2,73300.0,kg/TJ,171854239.44072998,kg +12b4628a-ddca-3c99-a144-9b78bd5a86fb,SESCO,II.1.1,Salta,AR-A,annual,2013,naphtha combustion consumption by to the public,2344.5325980999996,TJ,CH4,3.0,kg/TJ,7033.597794299999,kg +f35403c1-ce8b-3553-9326-998f0baea882,SESCO,II.1.1,Salta,AR-A,annual,2013,naphtha combustion consumption by to the public,2344.5325980999996,TJ,N2O,0.6,kg/TJ,1406.7195588599998,kg +308c4162-76a5-3f8e-8685-ab7c33dbf526,SESCO,II.1.1,San Juan,AR-J,annual,2013,naphtha combustion consumption by to the public,1536.6317427999998,TJ,CO2,73300.0,kg/TJ,112635106.74723998,kg +8c651fa1-a427-383b-a60e-9c4453c5b7d4,SESCO,II.1.1,San Juan,AR-J,annual,2013,naphtha combustion consumption by to the public,1536.6317427999998,TJ,CH4,3.0,kg/TJ,4609.895228399999,kg +a614a811-4413-37b1-8768-d2793491ef07,SESCO,II.1.1,San Juan,AR-J,annual,2013,naphtha combustion consumption by to the public,1536.6317427999998,TJ,N2O,0.6,kg/TJ,921.9790456799998,kg +f04814c5-0517-320b-90e2-e508736751a6,SESCO,II.1.1,San Luis,AR-D,annual,2013,naphtha combustion consumption by to the public,1249.3909889999998,TJ,CO2,73300.0,kg/TJ,91580359.49369998,kg +e182dec4-ff40-360a-90e0-5272187480d8,SESCO,II.1.1,San Luis,AR-D,annual,2013,naphtha combustion consumption by to the public,1249.3909889999998,TJ,CH4,3.0,kg/TJ,3748.1729669999995,kg +f087b1ca-f744-3b1c-bac4-e642abea737d,SESCO,II.1.1,San Luis,AR-D,annual,2013,naphtha combustion consumption by to the public,1249.3909889999998,TJ,N2O,0.6,kg/TJ,749.6345933999999,kg +1bb2557e-be59-3366-ae40-82f4ecdd0ebd,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2013,naphtha combustion consumption by to the public,2583.4274928,TJ,CO2,73300.0,kg/TJ,189365235.22224,kg +66ee3145-d842-3275-9168-d7036fe4ea4a,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2013,naphtha combustion consumption by to the public,2583.4274928,TJ,CH4,3.0,kg/TJ,7750.2824784,kg +d2701d70-28fa-32cb-b5b1-3f4161ce5c62,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2013,naphtha combustion consumption by to the public,2583.4274928,TJ,N2O,0.6,kg/TJ,1550.05649568,kg +cf7551cd-88bf-3027-89a1-fb1b965ef9b6,SESCO,II.1.1,Santa Fe,AR-S,annual,2013,naphtha combustion consumption by to the public,7192.581911899999,TJ,CO2,73300.0,kg/TJ,527216254.1422699,kg +a9844745-f3f3-3389-b1d2-ac3ecbf8a8f8,SESCO,II.1.1,Santa Fe,AR-S,annual,2013,naphtha combustion consumption by to the public,7192.581911899999,TJ,CH4,3.0,kg/TJ,21577.745735699995,kg +32f0190d-2e41-3f97-8fd2-70d913db66e5,SESCO,II.1.1,Santa Fe,AR-S,annual,2013,naphtha combustion consumption by to the public,7192.581911899999,TJ,N2O,0.6,kg/TJ,4315.549147139999,kg +212473c0-9c59-3c26-8770-53d22b3a13a0,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2013,naphtha combustion consumption by to the public,1055.9109253,TJ,CO2,73300.0,kg/TJ,77398270.82449,kg +50268a5a-f265-3ebb-85ad-4e839d2e8697,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2013,naphtha combustion consumption by to the public,1055.9109253,TJ,CH4,3.0,kg/TJ,3167.7327759,kg +a548005a-2f4c-3ff6-875c-10a7e6452450,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2013,naphtha combustion consumption by to the public,1055.9109253,TJ,N2O,0.6,kg/TJ,633.5465551799999,kg +5dd86792-60dc-3c06-a1ac-142dacf563fb,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2013,naphtha combustion consumption by to the public,1903.7188554999998,TJ,CO2,73300.0,kg/TJ,139542592.10814998,kg +0d1a5ff5-f0d2-390a-bcdb-b2a1ec051d87,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2013,naphtha combustion consumption by to the public,1903.7188554999998,TJ,CH4,3.0,kg/TJ,5711.1565665,kg +dc293328-eca3-33c6-aa3b-31bca32da82f,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2013,naphtha combustion consumption by to the public,1903.7188554999998,TJ,N2O,0.6,kg/TJ,1142.2313132999998,kg +8f5f237a-abad-33d1-aac7-c8805d19a476,SESCO,II.1.1,Tucuman,AR-T,annual,2013,naphtha combustion consumption by to the public,2010.6208583999996,TJ,CO2,73300.0,kg/TJ,147378508.92071998,kg +343acbe5-8869-3a81-b11c-f234e8cfeb06,SESCO,II.1.1,Tucuman,AR-T,annual,2013,naphtha combustion consumption by to the public,2010.6208583999996,TJ,CH4,3.0,kg/TJ,6031.862575199999,kg +c52a501c-90ff-3f6c-9886-d004b258457f,SESCO,II.1.1,Tucuman,AR-T,annual,2013,naphtha combustion consumption by to the public,2010.6208583999996,TJ,N2O,0.6,kg/TJ,1206.3725150399998,kg +696f116c-2978-3acd-b585-868c3c5d85f5,SESCO,II.1.1,Buenos Aires,AR-B,annual,2013,naphtha combustion consumption by to the public,13505.468884599999,TJ,CO2,73300.0,kg/TJ,989950869.24118,kg +91d541cf-84e0-3aea-9e34-5f8582442a89,SESCO,II.1.1,Buenos Aires,AR-B,annual,2013,naphtha combustion consumption by to the public,13505.468884599999,TJ,CH4,3.0,kg/TJ,40516.4066538,kg +fe514570-1632-3fcf-bd88-035e97727b21,SESCO,II.1.1,Buenos Aires,AR-B,annual,2013,naphtha combustion consumption by to the public,13505.468884599999,TJ,N2O,0.6,kg/TJ,8103.281330759999,kg +461d7436-af14-310c-b23e-c408facbf8a7,SESCO,II.1.1,Capital Federal,AR-C,annual,2013,naphtha combustion consumption by to the public,3136.0068124,TJ,CO2,73300.0,kg/TJ,229869299.34892,kg +e37f7b88-57c3-3f3d-8ba1-548c38766fe2,SESCO,II.1.1,Capital Federal,AR-C,annual,2013,naphtha combustion consumption by to the public,3136.0068124,TJ,CH4,3.0,kg/TJ,9408.0204372,kg +63474893-8db5-3c57-a4c2-12880485e1f6,SESCO,II.1.1,Capital Federal,AR-C,annual,2013,naphtha combustion consumption by to the public,3136.0068124,TJ,N2O,0.6,kg/TJ,1881.6040874399998,kg +a9fe51ac-c172-3c81-b536-630c1c9f3273,SESCO,II.1.1,Catamarca,AR-K,annual,2013,naphtha combustion consumption by to the public,208.2318315,TJ,CO2,73300.0,kg/TJ,15263393.248949999,kg +f7d5add8-bd8a-367d-a182-c08138a1d83a,SESCO,II.1.1,Catamarca,AR-K,annual,2013,naphtha combustion consumption by to the public,208.2318315,TJ,CH4,3.0,kg/TJ,624.6954945,kg +9b819912-44f9-39e3-9042-c7306b024cfa,SESCO,II.1.1,Catamarca,AR-K,annual,2013,naphtha combustion consumption by to the public,208.2318315,TJ,N2O,0.6,kg/TJ,124.93909889999999,kg +b280cb48-0727-3c1c-becc-46bc609227e3,SESCO,II.1.1,Chaco,AR-H,annual,2013,naphtha combustion consumption by to the public,772.2131724999999,TJ,CO2,73300.0,kg/TJ,56603225.54425,kg +959195f2-3fbb-35ce-b9ff-c11f97c39f33,SESCO,II.1.1,Chaco,AR-H,annual,2013,naphtha combustion consumption by to the public,772.2131724999999,TJ,CH4,3.0,kg/TJ,2316.6395175,kg +f6a2f478-a176-3742-936c-e2d48b4427f9,SESCO,II.1.1,Chaco,AR-H,annual,2013,naphtha combustion consumption by to the public,772.2131724999999,TJ,N2O,0.6,kg/TJ,463.32790349999993,kg +12f12c89-3535-36f5-809f-022376e8be18,SESCO,II.1.1,Chubut,AR-U,annual,2013,naphtha combustion consumption by to the public,1033.2035098,TJ,CO2,73300.0,kg/TJ,75733817.26833999,kg +9a8c65a7-7da4-36d2-8be6-6f05d8ddd67d,SESCO,II.1.1,Chubut,AR-U,annual,2013,naphtha combustion consumption by to the public,1033.2035098,TJ,CH4,3.0,kg/TJ,3099.6105294,kg +12470b6f-b681-3a62-9020-3f69f521d3f2,SESCO,II.1.1,Chubut,AR-U,annual,2013,naphtha combustion consumption by to the public,1033.2035098,TJ,N2O,0.6,kg/TJ,619.9221058799999,kg +c7b7c5f5-44a2-3b7e-aacb-270dde0148b0,SESCO,II.1.1,Corrientes,AR-W,annual,2013,naphtha combustion consumption by to the public,750.1177299,TJ,CO2,73300.0,kg/TJ,54983629.60167,kg +50139b28-9499-3f5f-9cfa-89c08c50abe1,SESCO,II.1.1,Corrientes,AR-W,annual,2013,naphtha combustion consumption by to the public,750.1177299,TJ,CH4,3.0,kg/TJ,2250.3531897,kg +5258582c-d4a1-3324-9d32-de9cc42919db,SESCO,II.1.1,Corrientes,AR-W,annual,2013,naphtha combustion consumption by to the public,750.1177299,TJ,N2O,0.6,kg/TJ,450.07063794,kg +d1ff3955-5052-3d3d-b441-7e8efa707a7e,SESCO,II.1.1,Córdoba,AR-X,annual,2013,naphtha combustion consumption by to the public,3249.4472625999997,TJ,CO2,73300.0,kg/TJ,238184484.34857997,kg +a610c2e8-375b-3e35-9640-a0105e459d5b,SESCO,II.1.1,Córdoba,AR-X,annual,2013,naphtha combustion consumption by to the public,3249.4472625999997,TJ,CH4,3.0,kg/TJ,9748.3417878,kg +3617742a-5e5b-32b7-a075-3781fce45772,SESCO,II.1.1,Córdoba,AR-X,annual,2013,naphtha combustion consumption by to the public,3249.4472625999997,TJ,N2O,0.6,kg/TJ,1949.6683575599998,kg +1be2ad2f-3dec-31ab-a091-ea05886619b7,SESCO,II.1.1,Entre Rios,AR-E,annual,2013,naphtha combustion consumption by to the public,1188.6446263999999,TJ,CO2,73300.0,kg/TJ,87127651.11512,kg +1505faff-c7ae-395d-99cf-047946d9c8b5,SESCO,II.1.1,Entre Rios,AR-E,annual,2013,naphtha combustion consumption by to the public,1188.6446263999999,TJ,CH4,3.0,kg/TJ,3565.9338792,kg +0141ff0f-86da-33cd-96ab-8b6a7015bd6f,SESCO,II.1.1,Entre Rios,AR-E,annual,2013,naphtha combustion consumption by to the public,1188.6446263999999,TJ,N2O,0.6,kg/TJ,713.1867758399999,kg +c61b2225-ea77-3b54-b558-aed76b730751,SESCO,II.1.1,Formosa,AR-P,annual,2013,naphtha combustion consumption by to the public,193.12576359999997,TJ,CO2,73300.0,kg/TJ,14156118.471879998,kg +03d4b23b-6e1a-33bb-afc9-86729346ef9f,SESCO,II.1.1,Formosa,AR-P,annual,2013,naphtha combustion consumption by to the public,193.12576359999997,TJ,CH4,3.0,kg/TJ,579.3772907999999,kg +07674a7f-0d08-36b0-8bfc-fabd2c6e2d3d,SESCO,II.1.1,Formosa,AR-P,annual,2013,naphtha combustion consumption by to the public,193.12576359999997,TJ,N2O,0.6,kg/TJ,115.87545815999998,kg +cedaf929-bea3-3e57-9c54-7d8ac713744d,SESCO,II.1.1,Jujuy,AR-Y,annual,2013,naphtha combustion consumption by to the public,291.170264,TJ,CO2,73300.0,kg/TJ,21342780.3512,kg +2801c294-ceb2-3a94-8c1a-e4ee80c06792,SESCO,II.1.1,Jujuy,AR-Y,annual,2013,naphtha combustion consumption by to the public,291.170264,TJ,CH4,3.0,kg/TJ,873.5107919999999,kg +167a7311-6672-3891-b196-c02a1add701f,SESCO,II.1.1,Jujuy,AR-Y,annual,2013,naphtha combustion consumption by to the public,291.170264,TJ,N2O,0.6,kg/TJ,174.70215839999997,kg +8bb0de76-e461-3862-859d-9dc43c79752e,SESCO,II.1.1,La Pampa,AR-L,annual,2013,naphtha combustion consumption by to the public,619.2843657,TJ,CO2,73300.0,kg/TJ,45393544.00581,kg +3071a60a-830a-3fe7-954c-18c543cc37a8,SESCO,II.1.1,La Pampa,AR-L,annual,2013,naphtha combustion consumption by to the public,619.2843657,TJ,CH4,3.0,kg/TJ,1857.8530971,kg +3c65080b-2576-39a5-aed0-2da2c2589274,SESCO,II.1.1,La Pampa,AR-L,annual,2013,naphtha combustion consumption by to the public,619.2843657,TJ,N2O,0.6,kg/TJ,371.57061941999996,kg +7ccb9a10-10a2-3f2d-a51d-513352c624b9,SESCO,II.1.1,La Rioja,AR-F,annual,2013,naphtha combustion consumption by to the public,298.256266,TJ,CO2,73300.0,kg/TJ,21862184.297799997,kg +87c8afde-e47a-3bcb-9cd4-6da89a668496,SESCO,II.1.1,La Rioja,AR-F,annual,2013,naphtha combustion consumption by to the public,298.256266,TJ,CH4,3.0,kg/TJ,894.768798,kg +2034a370-1c9c-3909-8c40-a0acdef4cf2d,SESCO,II.1.1,La Rioja,AR-F,annual,2013,naphtha combustion consumption by to the public,298.256266,TJ,N2O,0.6,kg/TJ,178.95375959999998,kg +5a36e0e0-d80f-3779-9da3-4f09b91272a1,SESCO,II.1.1,Mendoza,AR-M,annual,2013,naphtha combustion consumption by to the public,1881.3013218999997,TJ,CO2,73300.0,kg/TJ,137899386.89527,kg +6b7168aa-4191-39e8-94b0-ef711bc24f06,SESCO,II.1.1,Mendoza,AR-M,annual,2013,naphtha combustion consumption by to the public,1881.3013218999997,TJ,CH4,3.0,kg/TJ,5643.903965699999,kg +2ae259fb-b6e0-3f38-9cf7-6fbf3d9a6815,SESCO,II.1.1,Mendoza,AR-M,annual,2013,naphtha combustion consumption by to the public,1881.3013218999997,TJ,N2O,0.6,kg/TJ,1128.7807931399998,kg +0a98f458-c7d5-3818-a0f2-461c640e7b9d,SESCO,II.1.1,Misiones,AR-N,annual,2013,naphtha combustion consumption by to the public,887.5217504999999,TJ,CO2,73300.0,kg/TJ,65055344.31164999,kg +043002a1-9c8e-355d-817f-0873aa5deefa,SESCO,II.1.1,Misiones,AR-N,annual,2013,naphtha combustion consumption by to the public,887.5217504999999,TJ,CH4,3.0,kg/TJ,2662.5652514999997,kg +fdff61bb-5d08-314c-a0c7-f00587cdafe1,SESCO,II.1.1,Misiones,AR-N,annual,2013,naphtha combustion consumption by to the public,887.5217504999999,TJ,N2O,0.6,kg/TJ,532.5130502999999,kg +a830c8d1-a4dd-3038-87e1-45f06b1a8ad3,SESCO,II.1.1,Neuquén,AR-Q,annual,2013,naphtha combustion consumption by to the public,965.7254452999999,TJ,CO2,73300.0,kg/TJ,70787675.14049,kg +0c0b22cb-0839-35aa-8800-a5e67aa991de,SESCO,II.1.1,Neuquén,AR-Q,annual,2013,naphtha combustion consumption by to the public,965.7254452999999,TJ,CH4,3.0,kg/TJ,2897.1763358999997,kg +23bf8a6f-d0c6-3c82-8ba9-06b7a2651f39,SESCO,II.1.1,Neuquén,AR-Q,annual,2013,naphtha combustion consumption by to the public,965.7254452999999,TJ,N2O,0.6,kg/TJ,579.43526718,kg +07d10bf7-dc8d-3d26-a40c-3b2897c92b9e,SESCO,II.1.1,Rio Negro,AR-R,annual,2013,naphtha combustion consumption by to the public,977.6750213999999,TJ,CO2,73300.0,kg/TJ,71663579.06862,kg +fa561996-e01e-338c-a231-133be973c03f,SESCO,II.1.1,Rio Negro,AR-R,annual,2013,naphtha combustion consumption by to the public,977.6750213999999,TJ,CH4,3.0,kg/TJ,2933.0250641999996,kg +8bf89288-5166-3ec4-b602-9b5fd7fe7649,SESCO,II.1.1,Rio Negro,AR-R,annual,2013,naphtha combustion consumption by to the public,977.6750213999999,TJ,N2O,0.6,kg/TJ,586.6050128399999,kg +038c3f91-a597-3f7c-baa5-1bed1db70e7f,SESCO,II.1.1,Salta,AR-A,annual,2013,naphtha combustion consumption by to the public,719.6801303999999,TJ,CO2,73300.0,kg/TJ,52752553.55831999,kg +58cf613c-21e8-3fcb-9682-4fa39037f672,SESCO,II.1.1,Salta,AR-A,annual,2013,naphtha combustion consumption by to the public,719.6801303999999,TJ,CH4,3.0,kg/TJ,2159.0403911999997,kg +f3e7d79e-77ba-399a-adee-d8dec815283c,SESCO,II.1.1,Salta,AR-A,annual,2013,naphtha combustion consumption by to the public,719.6801303999999,TJ,N2O,0.6,kg/TJ,431.80807823999993,kg +1f564d1d-a4fb-3a3a-8675-4c183743e810,SESCO,II.1.1,San Juan,AR-J,annual,2013,naphtha combustion consumption by to the public,621.5390027,TJ,CO2,73300.0,kg/TJ,45558808.89791,kg +973d594e-9bd5-323a-a72d-874010ee5c4a,SESCO,II.1.1,San Juan,AR-J,annual,2013,naphtha combustion consumption by to the public,621.5390027,TJ,CH4,3.0,kg/TJ,1864.6170081,kg +8e3b860d-b0c7-3209-93bd-1a4d9d57c9bc,SESCO,II.1.1,San Juan,AR-J,annual,2013,naphtha combustion consumption by to the public,621.5390027,TJ,N2O,0.6,kg/TJ,372.92340162,kg +deaf38c9-20a8-398d-8f83-451099184dd7,SESCO,II.1.1,San Luis,AR-D,annual,2013,naphtha combustion consumption by to the public,560.7926401,TJ,CO2,73300.0,kg/TJ,41106100.519329995,kg +b85666d1-ead2-3e91-960e-b976a5dfe40d,SESCO,II.1.1,San Luis,AR-D,annual,2013,naphtha combustion consumption by to the public,560.7926401,TJ,CH4,3.0,kg/TJ,1682.3779203,kg +8ac386af-f622-3957-a0ca-3859151dea46,SESCO,II.1.1,San Luis,AR-D,annual,2013,naphtha combustion consumption by to the public,560.7926401,TJ,N2O,0.6,kg/TJ,336.47558405999996,kg +e0328e0e-9797-35b9-8083-2905ada47e4b,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2013,naphtha combustion consumption by to the public,522.0450928,TJ,CO2,73300.0,kg/TJ,38265905.30224,kg +804e167f-dfc7-3442-9937-508eb274a303,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2013,naphtha combustion consumption by to the public,522.0450928,TJ,CH4,3.0,kg/TJ,1566.1352784,kg +23521648-9aff-3f2b-bfc0-a70690100a62,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2013,naphtha combustion consumption by to the public,522.0450928,TJ,N2O,0.6,kg/TJ,313.22705568,kg +5dcc781f-b92e-34ad-80ad-098a15f73838,SESCO,II.1.1,Santa Fe,AR-S,annual,2013,naphtha combustion consumption by to the public,2947.6479955999994,TJ,CO2,73300.0,kg/TJ,216062598.07747996,kg +5ddd5e9f-66e1-3857-8630-1e9621587fa7,SESCO,II.1.1,Santa Fe,AR-S,annual,2013,naphtha combustion consumption by to the public,2947.6479955999994,TJ,CH4,3.0,kg/TJ,8842.943986799997,kg +ccd2647c-e277-3258-ada8-9f0ccab88396,SESCO,II.1.1,Santa Fe,AR-S,annual,2013,naphtha combustion consumption by to the public,2947.6479955999994,TJ,N2O,0.6,kg/TJ,1768.5887973599995,kg +8c5d7fec-3090-31d2-8d59-f5ba44ec6670,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2013,naphtha combustion consumption by to the public,556.7987117,TJ,CO2,73300.0,kg/TJ,40813345.56761,kg +f257d6d6-e0d7-3f80-846a-02f42445316b,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2013,naphtha combustion consumption by to the public,556.7987117,TJ,CH4,3.0,kg/TJ,1670.3961351,kg +8b5baae8-3c08-39d2-98cb-5dbac95cfb1a,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2013,naphtha combustion consumption by to the public,556.7987117,TJ,N2O,0.6,kg/TJ,334.07922702,kg +f5725181-0dd9-322f-b4f7-1a5a17619c56,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2013,naphtha combustion consumption by to the public,42.097293699999994,TJ,CO2,73300.0,kg/TJ,3085731.6282099998,kg +5b062c0f-fd73-34b7-a7ad-2e57ccd1f169,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2013,naphtha combustion consumption by to the public,42.097293699999994,TJ,CH4,3.0,kg/TJ,126.29188109999998,kg +235b588e-5e4a-3bcb-94d5-6b859c22be12,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2013,naphtha combustion consumption by to the public,42.097293699999994,TJ,N2O,0.6,kg/TJ,25.258376219999995,kg +6ca90749-fc9e-3239-b48a-0c476fe37ef6,SESCO,II.1.1,Tucuman,AR-T,annual,2013,naphtha combustion consumption by to the public,604.0816705,TJ,CO2,73300.0,kg/TJ,44279186.44765,kg +5679cd17-dd37-3173-ab44-f5eaba3df0b0,SESCO,II.1.1,Tucuman,AR-T,annual,2013,naphtha combustion consumption by to the public,604.0816705,TJ,CH4,3.0,kg/TJ,1812.2450115,kg +ec472839-db05-398e-8e2e-b0907458336f,SESCO,II.1.1,Tucuman,AR-T,annual,2013,naphtha combustion consumption by to the public,604.0816705,TJ,N2O,0.6,kg/TJ,362.44900229999996,kg +3b71db4c-f583-3b9e-8fcf-e0c8bb4eae53,SESCO,I.3.1,Neuquén,AR-Q,annual,2013,naphtha combustion consumption by petrochemical industries,0.32209099999999996,TJ,CO2,73300.0,kg/TJ,23609.270299999996,kg +76d6287f-759c-3325-85fc-eba536c01369,SESCO,I.3.1,Neuquén,AR-Q,annual,2013,naphtha combustion consumption by petrochemical industries,0.32209099999999996,TJ,CH4,3.0,kg/TJ,0.9662729999999999,kg +62e53599-c5ae-398d-82f6-e2d08b8a4daf,SESCO,I.3.1,Neuquén,AR-Q,annual,2013,naphtha combustion consumption by petrochemical industries,0.32209099999999996,TJ,N2O,0.6,kg/TJ,0.19325459999999997,kg +446d517a-2307-317d-ac49-2b8b304756e5,SESCO,II.1.1,Buenos Aires,AR-B,annual,2013,naphtha combustion consumption by freight transport,159.112954,TJ,CO2,73300.0,kg/TJ,11662979.5282,kg +fff1d268-244b-30f6-9748-ae7ce41cc481,SESCO,II.1.1,Buenos Aires,AR-B,annual,2013,naphtha combustion consumption by freight transport,159.112954,TJ,CH4,3.0,kg/TJ,477.338862,kg +8ada9be9-4d1c-3713-b693-0a668b8cc4d8,SESCO,II.1.1,Buenos Aires,AR-B,annual,2013,naphtha combustion consumption by freight transport,159.112954,TJ,N2O,0.6,kg/TJ,95.4677724,kg +7df6e31c-09f2-302e-b093-445123d52ea4,SESCO,II.1.1,Capital Federal,AR-C,annual,2013,naphtha combustion consumption by freight transport,156.7938988,TJ,CO2,73300.0,kg/TJ,11492992.78204,kg +c09ba2c1-3307-3075-a5ec-aa3d4ec381fe,SESCO,II.1.1,Capital Federal,AR-C,annual,2013,naphtha combustion consumption by freight transport,156.7938988,TJ,CH4,3.0,kg/TJ,470.3816964,kg +b321a483-fa70-358d-9983-ae77321d89a5,SESCO,II.1.1,Capital Federal,AR-C,annual,2013,naphtha combustion consumption by freight transport,156.7938988,TJ,N2O,0.6,kg/TJ,94.07633928,kg +58e80d2b-f986-377e-b032-f964afc2ac0b,SESCO,II.1.1,Chaco,AR-H,annual,2013,naphtha combustion consumption by freight transport,4.605901299999999,TJ,CO2,73300.0,kg/TJ,337612.56528999994,kg +89557aa0-d890-336f-a2ae-49d9f981fce5,SESCO,II.1.1,Chaco,AR-H,annual,2013,naphtha combustion consumption by freight transport,4.605901299999999,TJ,CH4,3.0,kg/TJ,13.817703899999998,kg +1962f524-e2f3-3458-a41e-eb8af5482536,SESCO,II.1.1,Chaco,AR-H,annual,2013,naphtha combustion consumption by freight transport,4.605901299999999,TJ,N2O,0.6,kg/TJ,2.7635407799999996,kg +273a22c0-c507-3941-9e63-81ae12ebd3b6,SESCO,II.1.1,Chubut,AR-U,annual,2013,naphtha combustion consumption by freight transport,0.8374366,TJ,CO2,73300.0,kg/TJ,61384.10278,kg +9eac39aa-33cf-31d1-95af-0a35a816c941,SESCO,II.1.1,Chubut,AR-U,annual,2013,naphtha combustion consumption by freight transport,0.8374366,TJ,CH4,3.0,kg/TJ,2.5123097999999997,kg +272db47e-b16e-3077-9f6b-8e469fe547b0,SESCO,II.1.1,Chubut,AR-U,annual,2013,naphtha combustion consumption by freight transport,0.8374366,TJ,N2O,0.6,kg/TJ,0.50246196,kg +7a5ebdc2-a0b0-3b2b-85ea-c56e31cc9a8c,SESCO,II.1.1,Corrientes,AR-W,annual,2013,naphtha combustion consumption by freight transport,1.3849913,TJ,CO2,73300.0,kg/TJ,101519.86229,kg +c84f38a2-e383-3b72-839b-d0a0b8e2a36d,SESCO,II.1.1,Corrientes,AR-W,annual,2013,naphtha combustion consumption by freight transport,1.3849913,TJ,CH4,3.0,kg/TJ,4.1549739,kg +bd0f4e75-ce7b-3cf7-9508-27eca05447e8,SESCO,II.1.1,Corrientes,AR-W,annual,2013,naphtha combustion consumption by freight transport,1.3849913,TJ,N2O,0.6,kg/TJ,0.83099478,kg +e0e5ef2f-6bc1-3a53-ad43-563460e93c6b,SESCO,II.1.1,Córdoba,AR-X,annual,2013,naphtha combustion consumption by freight transport,2.3834733999999997,TJ,CO2,73300.0,kg/TJ,174708.60022,kg +739e2ebe-782a-3534-a1fb-87b8d7084efc,SESCO,II.1.1,Córdoba,AR-X,annual,2013,naphtha combustion consumption by freight transport,2.3834733999999997,TJ,CH4,3.0,kg/TJ,7.150420199999999,kg +f999b734-54c4-37d4-ba1c-c6358744e374,SESCO,II.1.1,Córdoba,AR-X,annual,2013,naphtha combustion consumption by freight transport,2.3834733999999997,TJ,N2O,0.6,kg/TJ,1.43008404,kg +699c0590-ec62-3f1c-ad08-bfca71b8f549,SESCO,II.1.1,Entre Rios,AR-E,annual,2013,naphtha combustion consumption by freight transport,2.5123097999999997,TJ,CO2,73300.0,kg/TJ,184152.30834,kg +f943af78-2635-38fa-891e-15e6b8b72837,SESCO,II.1.1,Entre Rios,AR-E,annual,2013,naphtha combustion consumption by freight transport,2.5123097999999997,TJ,CH4,3.0,kg/TJ,7.536929399999999,kg +61ceaf91-8954-3478-b14b-e82ec327ce4c,SESCO,II.1.1,Entre Rios,AR-E,annual,2013,naphtha combustion consumption by freight transport,2.5123097999999997,TJ,N2O,0.6,kg/TJ,1.5073858799999997,kg +9dd57940-5c1c-3ad5-8f5e-daced77dcdd5,SESCO,II.1.1,Mendoza,AR-M,annual,2013,naphtha combustion consumption by freight transport,4.3804376,TJ,CO2,73300.0,kg/TJ,321086.07607999997,kg +b6e45622-e8b0-36ad-97ca-d460ec46a82d,SESCO,II.1.1,Mendoza,AR-M,annual,2013,naphtha combustion consumption by freight transport,4.3804376,TJ,CH4,3.0,kg/TJ,13.141312799999998,kg +c2bee99f-49f4-3ecf-a93d-02508bd235e0,SESCO,II.1.1,Mendoza,AR-M,annual,2013,naphtha combustion consumption by freight transport,4.3804376,TJ,N2O,0.6,kg/TJ,2.6282625599999996,kg +18977aa7-a2f3-3516-8aff-0c0edaafdb59,SESCO,II.1.1,Misiones,AR-N,annual,2013,naphtha combustion consumption by freight transport,0.48313649999999997,TJ,CO2,73300.0,kg/TJ,35413.90545,kg +418c97c7-0ecb-395d-8e61-f79c9d0d4acc,SESCO,II.1.1,Misiones,AR-N,annual,2013,naphtha combustion consumption by freight transport,0.48313649999999997,TJ,CH4,3.0,kg/TJ,1.4494094999999998,kg +455bf802-2abe-3b92-b5f3-aa0e65e345b0,SESCO,II.1.1,Misiones,AR-N,annual,2013,naphtha combustion consumption by freight transport,0.48313649999999997,TJ,N2O,0.6,kg/TJ,0.28988189999999997,kg +b8026665-51f7-3123-a69d-e179711ad3f3,SESCO,II.1.1,Neuquén,AR-Q,annual,2013,naphtha combustion consumption by freight transport,0.4509274,TJ,CO2,73300.0,kg/TJ,33052.97842,kg +0e04bf6b-f48b-310d-b57d-10042e54c267,SESCO,II.1.1,Neuquén,AR-Q,annual,2013,naphtha combustion consumption by freight transport,0.4509274,TJ,CH4,3.0,kg/TJ,1.3527822,kg +3949477b-ce33-3261-8cdb-c87522341810,SESCO,II.1.1,Neuquén,AR-Q,annual,2013,naphtha combustion consumption by freight transport,0.4509274,TJ,N2O,0.6,kg/TJ,0.27055643999999995,kg +c00d1fe4-9afc-3ccb-a3df-790c0005be28,SESCO,II.1.1,Rio Negro,AR-R,annual,2013,naphtha combustion consumption by freight transport,1.2883639999999998,TJ,CO2,73300.0,kg/TJ,94437.08119999999,kg +90f52023-b65e-33f1-9b71-b4702ab1c627,SESCO,II.1.1,Rio Negro,AR-R,annual,2013,naphtha combustion consumption by freight transport,1.2883639999999998,TJ,CH4,3.0,kg/TJ,3.8650919999999998,kg +254ce89e-8fd7-33c3-90c0-acb26cff72d2,SESCO,II.1.1,Rio Negro,AR-R,annual,2013,naphtha combustion consumption by freight transport,1.2883639999999998,TJ,N2O,0.6,kg/TJ,0.7730183999999999,kg +1c70968c-37bc-35b1-908f-c13b32a5f3b4,SESCO,II.1.1,Salta,AR-A,annual,2013,naphtha combustion consumption by freight transport,9.823775499999998,TJ,CO2,73300.0,kg/TJ,720082.7441499999,kg +fd88a84e-6d2f-3c07-85a2-73aaec6d7b0f,SESCO,II.1.1,Salta,AR-A,annual,2013,naphtha combustion consumption by freight transport,9.823775499999998,TJ,CH4,3.0,kg/TJ,29.471326499999996,kg +e965293b-1569-3423-8b5b-47bdd1f5764d,SESCO,II.1.1,Salta,AR-A,annual,2013,naphtha combustion consumption by freight transport,9.823775499999998,TJ,N2O,0.6,kg/TJ,5.894265299999999,kg +3d2db979-1e0e-3644-bbcb-3d7c6ee8778c,SESCO,II.1.1,Santa Fe,AR-S,annual,2013,naphtha combustion consumption by freight transport,15.234904299999998,TJ,CO2,73300.0,kg/TJ,1116718.48519,kg +71bbd743-a62f-38ab-a948-603eb3e13271,SESCO,II.1.1,Santa Fe,AR-S,annual,2013,naphtha combustion consumption by freight transport,15.234904299999998,TJ,CH4,3.0,kg/TJ,45.7047129,kg +de71a53e-51dc-3574-aeb0-5f3ebb2d8500,SESCO,II.1.1,Santa Fe,AR-S,annual,2013,naphtha combustion consumption by freight transport,15.234904299999998,TJ,N2O,0.6,kg/TJ,9.140942579999999,kg +535391d5-b000-37b1-8d57-6499c1c54b4e,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2013,naphtha combustion consumption by freight transport,0.0322091,TJ,CO2,73300.0,kg/TJ,2360.92703,kg +8e471670-ea16-3d91-b470-d5d3d726ffaf,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2013,naphtha combustion consumption by freight transport,0.0322091,TJ,CH4,3.0,kg/TJ,0.0966273,kg +09b6e2a1-f960-304a-a8db-4d0e8717e5cc,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2013,naphtha combustion consumption by freight transport,0.0322091,TJ,N2O,0.6,kg/TJ,0.01932546,kg +09daf76a-cb9d-346c-a46d-19af8fca2472,SESCO,II.1.1,Tucuman,AR-T,annual,2013,naphtha combustion consumption by freight transport,0.9340639,TJ,CO2,73300.0,kg/TJ,68466.88386999999,kg +b5b712cc-4190-317a-981c-33ca724a4448,SESCO,II.1.1,Tucuman,AR-T,annual,2013,naphtha combustion consumption by freight transport,0.9340639,TJ,CH4,3.0,kg/TJ,2.8021917,kg +b695a789-5041-3d19-8108-9570018bc1f3,SESCO,II.1.1,Tucuman,AR-T,annual,2013,naphtha combustion consumption by freight transport,0.9340639,TJ,N2O,0.6,kg/TJ,0.5604383399999999,kg +736c98ec-d66f-369e-9593-8bebd8083516,SESCO,II.1.1,Buenos Aires,AR-B,annual,2013,naphtha combustion consumption by freight transport,160.27248159999996,TJ,CO2,73300.0,kg/TJ,11747972.901279997,kg +f807c718-2b7d-3cc1-81e3-d7d622fc0335,SESCO,II.1.1,Buenos Aires,AR-B,annual,2013,naphtha combustion consumption by freight transport,160.27248159999996,TJ,CH4,3.0,kg/TJ,480.81744479999986,kg +91f2055e-7708-3343-b1e5-c0226a11dec1,SESCO,II.1.1,Buenos Aires,AR-B,annual,2013,naphtha combustion consumption by freight transport,160.27248159999996,TJ,N2O,0.6,kg/TJ,96.16348895999998,kg +021d7616-9387-3d67-b616-0c764fe85f75,SESCO,II.1.1,Capital Federal,AR-C,annual,2013,naphtha combustion consumption by freight transport,154.281589,TJ,CO2,73300.0,kg/TJ,11308840.4737,kg +13863acd-8a42-35e8-b13a-d74dc3f13270,SESCO,II.1.1,Capital Federal,AR-C,annual,2013,naphtha combustion consumption by freight transport,154.281589,TJ,CH4,3.0,kg/TJ,462.844767,kg +9e9f5ce0-ab30-3438-9043-17f62d478249,SESCO,II.1.1,Capital Federal,AR-C,annual,2013,naphtha combustion consumption by freight transport,154.281589,TJ,N2O,0.6,kg/TJ,92.5689534,kg +5aa8576c-2cff-3a29-af0a-556f60bb9c55,SESCO,II.1.1,Chaco,AR-H,annual,2013,naphtha combustion consumption by freight transport,5.7332198,TJ,CO2,73300.0,kg/TJ,420245.01133999997,kg +b7fd4df7-ba0a-3eed-89f8-4e2ec7158341,SESCO,II.1.1,Chaco,AR-H,annual,2013,naphtha combustion consumption by freight transport,5.7332198,TJ,CH4,3.0,kg/TJ,17.199659399999998,kg +75abfa02-e6c3-3e83-8acf-835057b006bc,SESCO,II.1.1,Chaco,AR-H,annual,2013,naphtha combustion consumption by freight transport,5.7332198,TJ,N2O,0.6,kg/TJ,3.4399318799999996,kg +8b3dbf6f-b9c5-30f0-b861-b0cd31bafcae,SESCO,II.1.1,Chubut,AR-U,annual,2013,naphtha combustion consumption by freight transport,0.6119728999999999,TJ,CO2,73300.0,kg/TJ,44857.613569999994,kg +1875cb1a-6e2e-34e6-8cf8-9e7984b9474a,SESCO,II.1.1,Chubut,AR-U,annual,2013,naphtha combustion consumption by freight transport,0.6119728999999999,TJ,CH4,3.0,kg/TJ,1.8359186999999997,kg +8826222c-34ac-35f7-8305-34287c1f0577,SESCO,II.1.1,Chubut,AR-U,annual,2013,naphtha combustion consumption by freight transport,0.6119728999999999,TJ,N2O,0.6,kg/TJ,0.3671837399999999,kg +561a7a41-5cb9-3c02-b185-3c75bef796b0,SESCO,II.1.1,Corrientes,AR-W,annual,2013,naphtha combustion consumption by freight transport,2.0291732999999996,TJ,CO2,73300.0,kg/TJ,148738.40288999997,kg +25f06bd7-7ad0-348c-a93f-3ffad64105ae,SESCO,II.1.1,Corrientes,AR-W,annual,2013,naphtha combustion consumption by freight transport,2.0291732999999996,TJ,CH4,3.0,kg/TJ,6.087519899999998,kg +79fb5599-1740-3bbf-a32a-fc078c77b8fd,SESCO,II.1.1,Corrientes,AR-W,annual,2013,naphtha combustion consumption by freight transport,2.0291732999999996,TJ,N2O,0.6,kg/TJ,1.2175039799999998,kg +7c3bdee8-a52c-3604-a57b-589604a73137,SESCO,II.1.1,Córdoba,AR-X,annual,2013,naphtha combustion consumption by freight transport,3.5752100999999996,TJ,CO2,73300.0,kg/TJ,262062.90032999997,kg +c3082eb3-14a1-36d1-8e62-cb13756c6b6a,SESCO,II.1.1,Córdoba,AR-X,annual,2013,naphtha combustion consumption by freight transport,3.5752100999999996,TJ,CH4,3.0,kg/TJ,10.725630299999999,kg +66412c09-c73b-3eba-a982-5b554e06308b,SESCO,II.1.1,Córdoba,AR-X,annual,2013,naphtha combustion consumption by freight transport,3.5752100999999996,TJ,N2O,0.6,kg/TJ,2.1451260599999995,kg +0f599a58-8e44-3d5d-ab3c-fecfce1f06ef,SESCO,II.1.1,Entre Rios,AR-E,annual,2013,naphtha combustion consumption by freight transport,2.8344007999999996,TJ,CO2,73300.0,kg/TJ,207761.57863999996,kg +633b7e14-5da0-37aa-b1d9-6b1f4282f6f0,SESCO,II.1.1,Entre Rios,AR-E,annual,2013,naphtha combustion consumption by freight transport,2.8344007999999996,TJ,CH4,3.0,kg/TJ,8.5032024,kg +380d3425-27e0-37f5-9384-d0dc59682a2a,SESCO,II.1.1,Entre Rios,AR-E,annual,2013,naphtha combustion consumption by freight transport,2.8344007999999996,TJ,N2O,0.6,kg/TJ,1.7006404799999997,kg +42967411-fa1b-32c1-b9c8-33178b11c4ea,SESCO,II.1.1,Jujuy,AR-Y,annual,2013,naphtha combustion consumption by freight transport,0.09662729999999999,TJ,CO2,73300.0,kg/TJ,7082.781089999999,kg +e1995120-83a8-3e7f-94f4-83b7e6a37bf4,SESCO,II.1.1,Jujuy,AR-Y,annual,2013,naphtha combustion consumption by freight transport,0.09662729999999999,TJ,CH4,3.0,kg/TJ,0.28988189999999997,kg +e2ef89f6-7031-3f9d-849c-78e75157391d,SESCO,II.1.1,Jujuy,AR-Y,annual,2013,naphtha combustion consumption by freight transport,0.09662729999999999,TJ,N2O,0.6,kg/TJ,0.05797637999999999,kg +bd3df6e7-c66d-38df-a6d0-0114b3fd2bb8,SESCO,II.1.1,La Pampa,AR-L,annual,2013,naphtha combustion consumption by freight transport,0.0322091,TJ,CO2,73300.0,kg/TJ,2360.92703,kg +b2c0e8de-2085-3893-9c5f-d0c1157b545d,SESCO,II.1.1,La Pampa,AR-L,annual,2013,naphtha combustion consumption by freight transport,0.0322091,TJ,CH4,3.0,kg/TJ,0.0966273,kg +108c7a13-25ea-3dcc-bb86-84bd6a549abc,SESCO,II.1.1,La Pampa,AR-L,annual,2013,naphtha combustion consumption by freight transport,0.0322091,TJ,N2O,0.6,kg/TJ,0.01932546,kg +5b8d64f4-a290-36cb-883b-142d0b786bce,SESCO,II.1.1,La Rioja,AR-F,annual,2013,naphtha combustion consumption by freight transport,0.35430009999999995,TJ,CO2,73300.0,kg/TJ,25970.197329999995,kg +5f817853-4e42-3515-b490-36924136bfa9,SESCO,II.1.1,La Rioja,AR-F,annual,2013,naphtha combustion consumption by freight transport,0.35430009999999995,TJ,CH4,3.0,kg/TJ,1.0629003,kg +f2fbee70-1fc4-3274-a294-3caf6d41db5a,SESCO,II.1.1,La Rioja,AR-F,annual,2013,naphtha combustion consumption by freight transport,0.35430009999999995,TJ,N2O,0.6,kg/TJ,0.21258005999999996,kg +b76674d5-52b4-3e58-bbbf-2bec21dcfe48,SESCO,II.1.1,Mendoza,AR-M,annual,2013,naphtha combustion consumption by freight transport,3.7040464999999996,TJ,CO2,73300.0,kg/TJ,271506.60844999994,kg +2c330069-b9a0-34db-940b-1a1fc764963a,SESCO,II.1.1,Mendoza,AR-M,annual,2013,naphtha combustion consumption by freight transport,3.7040464999999996,TJ,CH4,3.0,kg/TJ,11.112139499999998,kg +103430fa-357c-3569-9468-e15095d688ae,SESCO,II.1.1,Mendoza,AR-M,annual,2013,naphtha combustion consumption by freight transport,3.7040464999999996,TJ,N2O,0.6,kg/TJ,2.2224278999999996,kg +88dee853-08b6-3ed3-86d7-cb29e8cc543a,SESCO,II.1.1,Misiones,AR-N,annual,2013,naphtha combustion consumption by freight transport,0.7086001999999999,TJ,CO2,73300.0,kg/TJ,51940.39465999999,kg +49ad7f16-f790-33e9-a81b-48617216e686,SESCO,II.1.1,Misiones,AR-N,annual,2013,naphtha combustion consumption by freight transport,0.7086001999999999,TJ,CH4,3.0,kg/TJ,2.1258006,kg +b9549121-e83e-3962-ba0a-48a2136516f7,SESCO,II.1.1,Misiones,AR-N,annual,2013,naphtha combustion consumption by freight transport,0.7086001999999999,TJ,N2O,0.6,kg/TJ,0.4251601199999999,kg +a5f1a00f-c142-382e-a3fa-511db5f6d334,SESCO,II.1.1,Neuquén,AR-Q,annual,2013,naphtha combustion consumption by freight transport,0.32209099999999996,TJ,CO2,73300.0,kg/TJ,23609.270299999996,kg +c151b481-c2be-3efe-a485-19271a7c775b,SESCO,II.1.1,Neuquén,AR-Q,annual,2013,naphtha combustion consumption by freight transport,0.32209099999999996,TJ,CH4,3.0,kg/TJ,0.9662729999999999,kg +a3489bcf-5846-37e7-af02-8b02d53c227e,SESCO,II.1.1,Neuquén,AR-Q,annual,2013,naphtha combustion consumption by freight transport,0.32209099999999996,TJ,N2O,0.6,kg/TJ,0.19325459999999997,kg +5bfdb49d-a915-3254-a36e-1c51463ec0a6,SESCO,II.1.1,Rio Negro,AR-R,annual,2013,naphtha combustion consumption by freight transport,1.3527821999999998,TJ,CO2,73300.0,kg/TJ,99158.93525999998,kg +779428c1-6e71-34a8-9f62-d0481003b260,SESCO,II.1.1,Rio Negro,AR-R,annual,2013,naphtha combustion consumption by freight transport,1.3527821999999998,TJ,CH4,3.0,kg/TJ,4.058346599999999,kg +213849c7-91d6-3def-9766-b8d8ec2d917b,SESCO,II.1.1,Rio Negro,AR-R,annual,2013,naphtha combustion consumption by freight transport,1.3527821999999998,TJ,N2O,0.6,kg/TJ,0.8116693199999999,kg +42d5eaa0-24db-331b-8835-9b686ec664f2,SESCO,II.1.1,Salta,AR-A,annual,2013,naphtha combustion consumption by freight transport,1.4816186,TJ,CO2,73300.0,kg/TJ,108602.64338,kg +e3955581-268d-3962-8631-7876c05fb758,SESCO,II.1.1,Salta,AR-A,annual,2013,naphtha combustion consumption by freight transport,1.4816186,TJ,CH4,3.0,kg/TJ,4.4448558,kg +969522f5-ed94-3fcc-9b23-b19c5342e8b5,SESCO,II.1.1,Salta,AR-A,annual,2013,naphtha combustion consumption by freight transport,1.4816186,TJ,N2O,0.6,kg/TJ,0.88897116,kg +c12355e4-5b75-38dc-9e17-0c84d7883e15,SESCO,II.1.1,San Luis,AR-D,annual,2013,naphtha combustion consumption by freight transport,0.38650919999999994,TJ,CO2,73300.0,kg/TJ,28331.124359999994,kg +113646b6-9cc9-3bc4-8f75-05de8959b233,SESCO,II.1.1,San Luis,AR-D,annual,2013,naphtha combustion consumption by freight transport,0.38650919999999994,TJ,CH4,3.0,kg/TJ,1.1595275999999999,kg +d38aab98-110e-3333-a6cd-7950be5ecf5a,SESCO,II.1.1,San Luis,AR-D,annual,2013,naphtha combustion consumption by freight transport,0.38650919999999994,TJ,N2O,0.6,kg/TJ,0.23190551999999995,kg +9dd58c23-9f48-36fb-88fe-c8a484e50c60,SESCO,II.1.1,Santa Fe,AR-S,annual,2013,naphtha combustion consumption by freight transport,21.7411425,TJ,CO2,73300.0,kg/TJ,1593625.74525,kg +37f1dd17-5c4a-3ef2-848e-57b088a52f5b,SESCO,II.1.1,Santa Fe,AR-S,annual,2013,naphtha combustion consumption by freight transport,21.7411425,TJ,CH4,3.0,kg/TJ,65.2234275,kg +9862cddf-8302-3c83-b478-033c99987396,SESCO,II.1.1,Santa Fe,AR-S,annual,2013,naphtha combustion consumption by freight transport,21.7411425,TJ,N2O,0.6,kg/TJ,13.044685499999998,kg +2e821be0-b347-30df-9770-ed211d7ea8d3,SESCO,II.1.1,Tucuman,AR-T,annual,2013,naphtha combustion consumption by freight transport,0.8374366,TJ,CO2,73300.0,kg/TJ,61384.10278,kg +b60efca5-8bec-3329-8416-91fdd696036c,SESCO,II.1.1,Tucuman,AR-T,annual,2013,naphtha combustion consumption by freight transport,0.8374366,TJ,CH4,3.0,kg/TJ,2.5123097999999997,kg +ad3a624c-7a44-39a2-9399-695bcd7ef130,SESCO,II.1.1,Tucuman,AR-T,annual,2013,naphtha combustion consumption by freight transport,0.8374366,TJ,N2O,0.6,kg/TJ,0.50246196,kg +cc39f759-ec8b-332d-ac75-3193e9d3ee5f,SESCO,II.1.1,Capital Federal,AR-C,annual,2014,naphtha combustion consumption by to the public,33.6043708,TJ,CO2,73300.0,kg/TJ,2463200.37964,kg +1a65d7ec-6708-3362-8906-444546439667,SESCO,II.1.1,Capital Federal,AR-C,annual,2014,naphtha combustion consumption by to the public,33.6043708,TJ,CH4,3.0,kg/TJ,100.8131124,kg +41873c93-fe62-39e5-a9f5-58979278c9d8,SESCO,II.1.1,Capital Federal,AR-C,annual,2014,naphtha combustion consumption by to the public,33.6043708,TJ,N2O,0.6,kg/TJ,20.16262248,kg +a483baa2-c3d1-3efa-b47d-6d32b6a7f62b,SESCO,II.1.1,Capital Federal,AR-C,annual,2014,naphtha combustion consumption by to the public,4.823141399999999,TJ,CO2,73300.0,kg/TJ,353536.2646199999,kg +81ce7424-0fe6-32f9-b328-ea0d1b81d63d,SESCO,II.1.1,Capital Federal,AR-C,annual,2014,naphtha combustion consumption by to the public,4.823141399999999,TJ,CH4,3.0,kg/TJ,14.469424199999997,kg +09da86a5-01b2-36aa-9ede-1b38bbe12c78,SESCO,II.1.1,Capital Federal,AR-C,annual,2014,naphtha combustion consumption by to the public,4.823141399999999,TJ,N2O,0.6,kg/TJ,2.8938848399999992,kg +f83befd2-22e2-36dc-9283-5070cd7739bf,SESCO,II.5.1,Córdoba,AR-X,annual,2014,naphtha combustion consumption by agriculture machines,5.89810298,TJ,CO2,73300.0,kg/TJ,432330.948434,kg +ce5a3e65-4e49-36d0-ab37-f6ea34d4c5ae,SESCO,II.5.1,Córdoba,AR-X,annual,2014,naphtha combustion consumption by agriculture machines,5.89810298,TJ,CH4,3.0,kg/TJ,17.69430894,kg +a20348d5-a5ac-3819-80de-751e85cdec86,SESCO,II.5.1,Córdoba,AR-X,annual,2014,naphtha combustion consumption by agriculture machines,5.89810298,TJ,N2O,0.6,kg/TJ,3.5388617879999997,kg +8e9436ee-27d2-3417-8d87-b11e01026215,SESCO,II.5.1,Santa Fe,AR-S,annual,2014,naphtha combustion consumption by agriculture machines,17.697461319999995,TJ,CO2,73300.0,kg/TJ,1297223.9147559996,kg +bbe00a05-0117-3380-b940-817d53563d80,SESCO,II.5.1,Santa Fe,AR-S,annual,2014,naphtha combustion consumption by agriculture machines,17.697461319999995,TJ,CH4,3.0,kg/TJ,53.092383959999985,kg +6ec2ad6f-37d2-31f2-8ce0-3c39969200d1,SESCO,II.5.1,Santa Fe,AR-S,annual,2014,naphtha combustion consumption by agriculture machines,17.697461319999995,TJ,N2O,0.6,kg/TJ,10.618476791999997,kg +9b7ec86c-dc87-3985-a66f-eec8c2be54ec,SESCO,II.5.1,Buenos Aires,AR-B,annual,2014,naphtha combustion consumption by agriculture machines,0.2521904,TJ,CO2,73300.0,kg/TJ,18485.55632,kg +8b60d99c-80e1-387c-b189-17a8f4ac855b,SESCO,II.5.1,Buenos Aires,AR-B,annual,2014,naphtha combustion consumption by agriculture machines,0.2521904,TJ,CH4,3.0,kg/TJ,0.7565712,kg +544f0ba4-7084-322c-a7c0-14a204213694,SESCO,II.5.1,Buenos Aires,AR-B,annual,2014,naphtha combustion consumption by agriculture machines,0.2521904,TJ,N2O,0.6,kg/TJ,0.15131424,kg +757f1e01-bc00-3f19-b6d9-643e8f8194b9,SESCO,II.5.1,Córdoba,AR-X,annual,2014,naphtha combustion consumption by agriculture machines,2.51559924,TJ,CO2,73300.0,kg/TJ,184393.42429199998,kg +b2aedad2-4b12-3c44-80a7-2081acac4521,SESCO,II.5.1,Córdoba,AR-X,annual,2014,naphtha combustion consumption by agriculture machines,2.51559924,TJ,CH4,3.0,kg/TJ,7.546797719999999,kg +cad1e1cb-daea-3674-9a22-116e6d9ba227,SESCO,II.5.1,Córdoba,AR-X,annual,2014,naphtha combustion consumption by agriculture machines,2.51559924,TJ,N2O,0.6,kg/TJ,1.5093595439999998,kg +40cf23b8-c1a5-39ae-8e29-57791f76c0ca,SESCO,II.5.1,Santa Fe,AR-S,annual,2014,naphtha combustion consumption by agriculture machines,3.5306655999999994,TJ,CO2,73300.0,kg/TJ,258797.78847999996,kg +a7642d31-9765-33e7-a17d-cf8ae4b6bd8d,SESCO,II.5.1,Santa Fe,AR-S,annual,2014,naphtha combustion consumption by agriculture machines,3.5306655999999994,TJ,CH4,3.0,kg/TJ,10.591996799999999,kg +bceb6045-5588-36c8-95eb-3d70dd8e0a32,SESCO,II.5.1,Santa Fe,AR-S,annual,2014,naphtha combustion consumption by agriculture machines,3.5306655999999994,TJ,N2O,0.6,kg/TJ,2.1183993599999997,kg +5f586ef6-ef79-3043-b078-2618cb819bfc,SESCO,II.1.1,Buenos Aires,AR-B,annual,2014,naphtha combustion consumption by to the public,8402.569590029998,TJ,CO2,73300.0,kg/TJ,615908350.9491988,kg +94462cb7-89bd-33ac-a7f1-d924955a2638,SESCO,II.1.1,Buenos Aires,AR-B,annual,2014,naphtha combustion consumption by to the public,8402.569590029998,TJ,CH4,3.0,kg/TJ,25207.708770089994,kg +c847048f-beb1-33fd-8fd8-ff631063fb9d,SESCO,II.1.1,Buenos Aires,AR-B,annual,2014,naphtha combustion consumption by to the public,8402.569590029998,TJ,N2O,0.6,kg/TJ,5041.541754017999,kg +0bcb7a4f-a9db-332e-9979-6fcfeb465a69,SESCO,II.1.1,Capital Federal,AR-C,annual,2014,naphtha combustion consumption by to the public,2804.0309766699997,TJ,CO2,73300.0,kg/TJ,205535470.58991098,kg +ead483f1-052c-3392-87a9-b4e65a17ac58,SESCO,II.1.1,Capital Federal,AR-C,annual,2014,naphtha combustion consumption by to the public,2804.0309766699997,TJ,CH4,3.0,kg/TJ,8412.09293001,kg +cc97bb17-81c0-30c2-b092-0c599c10245a,SESCO,II.1.1,Capital Federal,AR-C,annual,2014,naphtha combustion consumption by to the public,2804.0309766699997,TJ,N2O,0.6,kg/TJ,1682.4185860019998,kg +b87aada6-931d-32d5-a8fb-fbed9fc1015c,SESCO,II.1.1,Catamarca,AR-K,annual,2014,naphtha combustion consumption by to the public,429.63787019999995,TJ,CO2,73300.0,kg/TJ,31492455.885659996,kg +9637d53f-d71f-3e9a-8d21-d43eefb3a3ec,SESCO,II.1.1,Catamarca,AR-K,annual,2014,naphtha combustion consumption by to the public,429.63787019999995,TJ,CH4,3.0,kg/TJ,1288.9136105999999,kg +e4f891db-cfc4-355b-a5b6-d637ac439818,SESCO,II.1.1,Catamarca,AR-K,annual,2014,naphtha combustion consumption by to the public,429.63787019999995,TJ,N2O,0.6,kg/TJ,257.78272211999996,kg +95f549cd-927b-3a8f-a09d-8cc1e2e04375,SESCO,II.1.1,Chaco,AR-H,annual,2014,naphtha combustion consumption by to the public,387.49054959999995,TJ,CO2,73300.0,kg/TJ,28403057.285679996,kg +11640921-e2e8-30a0-8a88-a0eacf29f5dd,SESCO,II.1.1,Chaco,AR-H,annual,2014,naphtha combustion consumption by to the public,387.49054959999995,TJ,CH4,3.0,kg/TJ,1162.4716488,kg +242b0ef5-36d4-3dbf-8f81-ca51bb9e6119,SESCO,II.1.1,Chaco,AR-H,annual,2014,naphtha combustion consumption by to the public,387.49054959999995,TJ,N2O,0.6,kg/TJ,232.49432975999997,kg +ea4a499f-5945-39b2-a5d2-c667df925be8,SESCO,II.1.1,Chubut,AR-U,annual,2014,naphtha combustion consumption by to the public,280.0259154,TJ,CO2,73300.0,kg/TJ,20525899.598819997,kg +ea15d612-1349-36d4-a616-6d2996e804f0,SESCO,II.1.1,Chubut,AR-U,annual,2014,naphtha combustion consumption by to the public,280.0259154,TJ,CH4,3.0,kg/TJ,840.0777461999999,kg +4c3eb5b2-7f3e-370f-8da3-be661972c0fb,SESCO,II.1.1,Chubut,AR-U,annual,2014,naphtha combustion consumption by to the public,280.0259154,TJ,N2O,0.6,kg/TJ,168.01554923999998,kg +02dc7fbe-a4bd-38df-ba24-530e2924d0d8,SESCO,II.1.1,Corrientes,AR-W,annual,2014,naphtha combustion consumption by to the public,287.5916274,TJ,CO2,73300.0,kg/TJ,21080466.28842,kg +25dffdf3-af2e-3503-b574-8e5e5490ed3a,SESCO,II.1.1,Corrientes,AR-W,annual,2014,naphtha combustion consumption by to the public,287.5916274,TJ,CH4,3.0,kg/TJ,862.7748822,kg +39061cbb-ef42-3cf6-bbed-73211ad5686a,SESCO,II.1.1,Corrientes,AR-W,annual,2014,naphtha combustion consumption by to the public,287.5916274,TJ,N2O,0.6,kg/TJ,172.55497644,kg +23132f56-a07d-36aa-8929-fe34dc5be13b,SESCO,II.1.1,Córdoba,AR-X,annual,2014,naphtha combustion consumption by to the public,2678.612907894,TJ,CO2,73300.0,kg/TJ,196342326.14863017,kg +34e24e34-56bf-38c0-a034-0551aa7d5e66,SESCO,II.1.1,Córdoba,AR-X,annual,2014,naphtha combustion consumption by to the public,2678.612907894,TJ,CH4,3.0,kg/TJ,8035.838723682,kg +d0b0eeca-0847-3164-b99a-45dd71eeb23d,SESCO,II.1.1,Córdoba,AR-X,annual,2014,naphtha combustion consumption by to the public,2678.612907894,TJ,N2O,0.6,kg/TJ,1607.1677447363998,kg +1d0dc0c8-1178-3441-9d47-94cb155b34ea,SESCO,II.1.1,Entre Rios,AR-E,annual,2014,naphtha combustion consumption by to the public,956.0222825999999,TJ,CO2,73300.0,kg/TJ,70076433.31458,kg +ddd99a73-05b2-30c7-aa44-f37384bf46b3,SESCO,II.1.1,Entre Rios,AR-E,annual,2014,naphtha combustion consumption by to the public,956.0222825999999,TJ,CH4,3.0,kg/TJ,2868.0668478,kg +736ff1f3-2175-338c-9b1e-6683933f5e39,SESCO,II.1.1,Entre Rios,AR-E,annual,2014,naphtha combustion consumption by to the public,956.0222825999999,TJ,N2O,0.6,kg/TJ,573.6133695599999,kg +59baa958-0f42-3bc1-96ba-01dd4b965ea2,SESCO,II.1.1,Formosa,AR-P,annual,2014,naphtha combustion consumption by to the public,477.93233179999993,TJ,CO2,73300.0,kg/TJ,35032439.92094,kg +56e57c65-9822-3fe7-8179-8f2700e71636,SESCO,II.1.1,Formosa,AR-P,annual,2014,naphtha combustion consumption by to the public,477.93233179999993,TJ,CH4,3.0,kg/TJ,1433.7969953999998,kg +70d1b059-82a2-3ea3-babc-79ef84e18a4f,SESCO,II.1.1,Formosa,AR-P,annual,2014,naphtha combustion consumption by to the public,477.93233179999993,TJ,N2O,0.6,kg/TJ,286.7593990799999,kg +49a478d1-fad5-3fd1-8c8d-ea44b142346b,SESCO,II.1.1,Jujuy,AR-Y,annual,2014,naphtha combustion consumption by to the public,129.4682466,TJ,CO2,73300.0,kg/TJ,9490022.475779999,kg +d891e665-2303-31a8-8986-51c3116c1dba,SESCO,II.1.1,Jujuy,AR-Y,annual,2014,naphtha combustion consumption by to the public,129.4682466,TJ,CH4,3.0,kg/TJ,388.40473979999996,kg +cbee6caf-d052-30eb-8f4d-9e62d04559b6,SESCO,II.1.1,Jujuy,AR-Y,annual,2014,naphtha combustion consumption by to the public,129.4682466,TJ,N2O,0.6,kg/TJ,77.68094795999998,kg +e979bc29-10f3-3f92-933a-a5f61fc096af,SESCO,II.1.1,La Pampa,AR-L,annual,2014,naphtha combustion consumption by to the public,110.45939519999999,TJ,CO2,73300.0,kg/TJ,8096673.668159999,kg +a462dec2-633a-32d4-8a3c-bdd0b46064c6,SESCO,II.1.1,La Pampa,AR-L,annual,2014,naphtha combustion consumption by to the public,110.45939519999999,TJ,CH4,3.0,kg/TJ,331.37818559999994,kg +9944853a-6817-3895-9a86-7894840c34f6,SESCO,II.1.1,La Pampa,AR-L,annual,2014,naphtha combustion consumption by to the public,110.45939519999999,TJ,N2O,0.6,kg/TJ,66.27563711999998,kg +35150ce8-ad22-309b-8b97-9af405e078ba,SESCO,II.1.1,La Rioja,AR-F,annual,2014,naphtha combustion consumption by to the public,112.9497754,TJ,CO2,73300.0,kg/TJ,8279218.536819999,kg +d57b77d7-3a28-3600-8177-cc58e44da0f1,SESCO,II.1.1,La Rioja,AR-F,annual,2014,naphtha combustion consumption by to the public,112.9497754,TJ,CH4,3.0,kg/TJ,338.84932619999995,kg +f6bb478d-a320-398e-adcd-e25e481f7957,SESCO,II.1.1,La Rioja,AR-F,annual,2014,naphtha combustion consumption by to the public,112.9497754,TJ,N2O,0.6,kg/TJ,67.76986523999999,kg +272bf035-bbef-3c42-9520-a9f18b29c274,SESCO,II.1.1,Mendoza,AR-M,annual,2014,naphtha combustion consumption by to the public,427.71491839999993,TJ,CO2,73300.0,kg/TJ,31351503.518719994,kg +a2fa71b6-ea48-3c5b-ac0f-66846b0e010c,SESCO,II.1.1,Mendoza,AR-M,annual,2014,naphtha combustion consumption by to the public,427.71491839999993,TJ,CH4,3.0,kg/TJ,1283.1447551999997,kg +e168f7c6-6527-301c-94e7-b15e5e88d839,SESCO,II.1.1,Mendoza,AR-M,annual,2014,naphtha combustion consumption by to the public,427.71491839999993,TJ,N2O,0.6,kg/TJ,256.62895103999995,kg +c43fedb6-35da-3ac3-96a5-d4b3d59505e6,SESCO,II.1.1,Misiones,AR-N,annual,2014,naphtha combustion consumption by to the public,778.2595743999999,TJ,CO2,73300.0,kg/TJ,57046426.803519994,kg +a73c144e-91c8-3afd-b7e3-3df103cad9b2,SESCO,II.1.1,Misiones,AR-N,annual,2014,naphtha combustion consumption by to the public,778.2595743999999,TJ,CH4,3.0,kg/TJ,2334.7787231999996,kg +7ee8aff3-5cad-33ef-acee-7ecdfdbef043,SESCO,II.1.1,Misiones,AR-N,annual,2014,naphtha combustion consumption by to the public,778.2595743999999,TJ,N2O,0.6,kg/TJ,466.9557446399999,kg +56cffd19-e76f-3b83-b4ba-fe1af93f2bff,SESCO,II.1.1,Neuquén,AR-Q,annual,2014,naphtha combustion consumption by to the public,267.79468099999997,TJ,CO2,73300.0,kg/TJ,19629350.117299996,kg +c71b86bd-8a07-3aa6-ab56-33a5c6f4956b,SESCO,II.1.1,Neuquén,AR-Q,annual,2014,naphtha combustion consumption by to the public,267.79468099999997,TJ,CH4,3.0,kg/TJ,803.3840429999999,kg +988c75a9-323f-3974-aa5d-f9184476b460,SESCO,II.1.1,Neuquén,AR-Q,annual,2014,naphtha combustion consumption by to the public,267.79468099999997,TJ,N2O,0.6,kg/TJ,160.6768086,kg +dbfa6ce1-90f0-3565-8b55-f3d36d622f12,SESCO,II.1.1,Rio Negro,AR-R,annual,2014,naphtha combustion consumption by to the public,351.5218938,TJ,CO2,73300.0,kg/TJ,25766554.81554,kg +bc8dbc03-9b46-3a08-a2c2-6a8da06968ef,SESCO,II.1.1,Rio Negro,AR-R,annual,2014,naphtha combustion consumption by to the public,351.5218938,TJ,CH4,3.0,kg/TJ,1054.5656814,kg +e6544d28-cc5d-3c0b-868b-9937b994e570,SESCO,II.1.1,Rio Negro,AR-R,annual,2014,naphtha combustion consumption by to the public,351.5218938,TJ,N2O,0.6,kg/TJ,210.91313627999997,kg +5a65463d-0745-3de8-a9d3-ef004b5002c1,SESCO,II.1.1,Salta,AR-A,annual,2014,naphtha combustion consumption by to the public,64.12571396,TJ,CO2,73300.0,kg/TJ,4700414.833268,kg +43379f07-48d7-3969-b83b-843204ec4b2c,SESCO,II.1.1,Salta,AR-A,annual,2014,naphtha combustion consumption by to the public,64.12571396,TJ,CH4,3.0,kg/TJ,192.37714188,kg +91d2132d-a591-3673-af76-fdc9adcf2a4c,SESCO,II.1.1,Salta,AR-A,annual,2014,naphtha combustion consumption by to the public,64.12571396,TJ,N2O,0.6,kg/TJ,38.475428375999996,kg +47b3fe5d-a595-388d-a124-57ff76f923ea,SESCO,II.1.1,San Juan,AR-J,annual,2014,naphtha combustion consumption by to the public,270.8209658,TJ,CO2,73300.0,kg/TJ,19851176.79314,kg +b7d48c56-f51e-3356-b8af-e7e3aac31682,SESCO,II.1.1,San Juan,AR-J,annual,2014,naphtha combustion consumption by to the public,270.8209658,TJ,CH4,3.0,kg/TJ,812.4628974,kg +67e7e079-48df-3bc9-bf12-163c49dd90df,SESCO,II.1.1,San Juan,AR-J,annual,2014,naphtha combustion consumption by to the public,270.8209658,TJ,N2O,0.6,kg/TJ,162.49257948,kg +2da5f303-131c-3076-9523-0719ff4775b6,SESCO,II.1.1,San Luis,AR-D,annual,2014,naphtha combustion consumption by to the public,538.8993609999999,TJ,CO2,73300.0,kg/TJ,39501323.16129999,kg +105f29d8-2a1c-3388-b5ab-9829fbafefde,SESCO,II.1.1,San Luis,AR-D,annual,2014,naphtha combustion consumption by to the public,538.8993609999999,TJ,CH4,3.0,kg/TJ,1616.6980829999998,kg +96f521fa-3a53-3f86-aacf-f0e82ebbf174,SESCO,II.1.1,San Luis,AR-D,annual,2014,naphtha combustion consumption by to the public,538.8993609999999,TJ,N2O,0.6,kg/TJ,323.33961659999994,kg +fd11f17b-cd77-3018-ac4b-48c42bb47768,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2014,naphtha combustion consumption by to the public,60.87245779999999,TJ,CO2,73300.0,kg/TJ,4461951.15674,kg +153c0567-5a5c-356b-89f7-8b8923b7c04d,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2014,naphtha combustion consumption by to the public,60.87245779999999,TJ,CH4,3.0,kg/TJ,182.61737339999996,kg +6502fb15-a114-343f-87d5-c8dfe6399473,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2014,naphtha combustion consumption by to the public,60.87245779999999,TJ,N2O,0.6,kg/TJ,36.52347467999999,kg +a125b166-c499-343f-b6e0-00f1afb4b14f,SESCO,II.1.1,Santa Fe,AR-S,annual,2014,naphtha combustion consumption by to the public,2532.0212483719997,TJ,CO2,73300.0,kg/TJ,185597157.50566757,kg +e5e16a9b-1f64-3e9c-b116-7188a5c2125b,SESCO,II.1.1,Santa Fe,AR-S,annual,2014,naphtha combustion consumption by to the public,2532.0212483719997,TJ,CH4,3.0,kg/TJ,7596.063745115999,kg +7891e0c1-f3d5-3dcd-8ea1-b31ccbd6924b,SESCO,II.1.1,Santa Fe,AR-S,annual,2014,naphtha combustion consumption by to the public,2532.0212483719997,TJ,N2O,0.6,kg/TJ,1519.2127490231999,kg +c3a1a456-ba75-3526-ae81-03996eb5ed11,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2014,naphtha combustion consumption by to the public,334.18380379999996,TJ,CO2,73300.0,kg/TJ,24495672.818539996,kg +368a7bef-0793-3653-821e-26a1bbd09cb5,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2014,naphtha combustion consumption by to the public,334.18380379999996,TJ,CH4,3.0,kg/TJ,1002.5514113999999,kg +47ced68f-c7ea-3b9b-b947-97ef2bc7a39c,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2014,naphtha combustion consumption by to the public,334.18380379999996,TJ,N2O,0.6,kg/TJ,200.51028227999998,kg +1f47565c-d641-3a68-872d-66dd25bfa47f,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2014,naphtha combustion consumption by to the public,117.80444059999999,TJ,CO2,73300.0,kg/TJ,8635065.49598,kg +829b62a1-68e7-3f90-a5d2-7f441f5fca97,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2014,naphtha combustion consumption by to the public,117.80444059999999,TJ,CH4,3.0,kg/TJ,353.41332179999995,kg +876514c4-3d4c-3adc-a8b1-b12fc96a5543,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2014,naphtha combustion consumption by to the public,117.80444059999999,TJ,N2O,0.6,kg/TJ,70.68266435999999,kg +17e41d60-0406-3b34-b0cf-263b2b31fda3,SESCO,II.1.1,Tucuman,AR-T,annual,2014,naphtha combustion consumption by to the public,95.86387579999999,TJ,CO2,73300.0,kg/TJ,7026822.096139999,kg +1d93cb42-1c1e-3840-a3a3-a388dbf5f1fc,SESCO,II.1.1,Tucuman,AR-T,annual,2014,naphtha combustion consumption by to the public,95.86387579999999,TJ,CH4,3.0,kg/TJ,287.5916274,kg +2371b6c2-9436-3b33-9784-7ca6bb146422,SESCO,II.1.1,Tucuman,AR-T,annual,2014,naphtha combustion consumption by to the public,95.86387579999999,TJ,N2O,0.6,kg/TJ,57.518325479999994,kg +2c7d25d2-e1fb-370c-a526-fa73de25f2fb,SESCO,II.1.1,Buenos Aires,AR-B,annual,2014,naphtha combustion consumption by to the public,2088.2137453099995,TJ,CO2,73300.0,kg/TJ,153066067.53122297,kg +d3541e25-9abd-3a6a-9787-0764141b44ce,SESCO,II.1.1,Buenos Aires,AR-B,annual,2014,naphtha combustion consumption by to the public,2088.2137453099995,TJ,CH4,3.0,kg/TJ,6264.641235929998,kg +9b12aa07-fd16-3f55-9494-015c1c515cbc,SESCO,II.1.1,Buenos Aires,AR-B,annual,2014,naphtha combustion consumption by to the public,2088.2137453099995,TJ,N2O,0.6,kg/TJ,1252.9282471859997,kg +a1fed806-e9f3-382a-8519-70a84e23a623,SESCO,II.1.1,Capital Federal,AR-C,annual,2014,naphtha combustion consumption by to the public,986.0051992559999,TJ,CO2,73300.0,kg/TJ,72274181.10546479,kg +18dcc1e1-d822-3db7-a229-fb37bec2e8b4,SESCO,II.1.1,Capital Federal,AR-C,annual,2014,naphtha combustion consumption by to the public,986.0051992559999,TJ,CH4,3.0,kg/TJ,2958.0155977679997,kg +46d6e45a-fb3f-3b02-b069-2dfda8191f3d,SESCO,II.1.1,Capital Federal,AR-C,annual,2014,naphtha combustion consumption by to the public,986.0051992559999,TJ,N2O,0.6,kg/TJ,591.6031195535999,kg +aa95ebf1-4c01-333e-9660-01aa6bdd7ab7,SESCO,II.1.1,Catamarca,AR-K,annual,2014,naphtha combustion consumption by to the public,93.90940019999998,TJ,CO2,73300.0,kg/TJ,6883559.0346599985,kg +11b584b7-fcf7-3854-9403-22288edf2198,SESCO,II.1.1,Catamarca,AR-K,annual,2014,naphtha combustion consumption by to the public,93.90940019999998,TJ,CH4,3.0,kg/TJ,281.7282005999999,kg +f93b0bd8-4a90-39f4-ad8d-69daee4b2d3d,SESCO,II.1.1,Catamarca,AR-K,annual,2014,naphtha combustion consumption by to the public,93.90940019999998,TJ,N2O,0.6,kg/TJ,56.345640119999985,kg +6651516f-4b24-333e-8e20-dc74707c591d,SESCO,II.1.1,Chaco,AR-H,annual,2014,naphtha combustion consumption by to the public,79.07698574775999,TJ,CO2,73300.0,kg/TJ,5796343.055310807,kg +6814a524-6274-3bf1-8575-380c22c93572,SESCO,II.1.1,Chaco,AR-H,annual,2014,naphtha combustion consumption by to the public,79.07698574775999,TJ,CH4,3.0,kg/TJ,237.23095724328,kg +94e1f1c3-70bb-31b2-a151-29140f59885a,SESCO,II.1.1,Chaco,AR-H,annual,2014,naphtha combustion consumption by to the public,79.07698574775999,TJ,N2O,0.6,kg/TJ,47.446191448655995,kg +48f40f0a-0b63-33e7-9d4a-2270dcaa485b,SESCO,II.1.1,Chubut,AR-U,annual,2014,naphtha combustion consumption by to the public,50.34096147696,TJ,CO2,73300.0,kg/TJ,3689992.476261168,kg +01d91d7d-2182-31de-8691-b8dbfde75a96,SESCO,II.1.1,Chubut,AR-U,annual,2014,naphtha combustion consumption by to the public,50.34096147696,TJ,CH4,3.0,kg/TJ,151.02288443088,kg +8ddc857b-f4f3-31a7-9a2a-82c832ffa751,SESCO,II.1.1,Chubut,AR-U,annual,2014,naphtha combustion consumption by to the public,50.34096147696,TJ,N2O,0.6,kg/TJ,30.204576886175996,kg +dd299bd4-48ce-322e-b627-eaa56dbebb4d,SESCO,II.1.1,Corrientes,AR-W,annual,2014,naphtha combustion consumption by to the public,81.42107660148,TJ,CO2,73300.0,kg/TJ,5968164.9148884835,kg +3229f70e-fb2a-3cf2-a4f1-8f10692808ec,SESCO,II.1.1,Corrientes,AR-W,annual,2014,naphtha combustion consumption by to the public,81.42107660148,TJ,CH4,3.0,kg/TJ,244.26322980444,kg +e96e9c7a-923c-365d-bf51-04f51fe9bfc4,SESCO,II.1.1,Corrientes,AR-W,annual,2014,naphtha combustion consumption by to the public,81.42107660148,TJ,N2O,0.6,kg/TJ,48.852645960888,kg +13827c83-483b-31f6-9819-42d4c3691867,SESCO,II.1.1,Córdoba,AR-X,annual,2014,naphtha combustion consumption by to the public,536.8883253980399,TJ,CO2,73300.0,kg/TJ,39353914.25167633,kg +cf48c917-9c24-34f6-b8a1-732d2944f5d3,SESCO,II.1.1,Córdoba,AR-X,annual,2014,naphtha combustion consumption by to the public,536.8883253980399,TJ,CH4,3.0,kg/TJ,1610.6649761941198,kg +009ab9c4-14a6-39bb-ada9-77d93a67d522,SESCO,II.1.1,Córdoba,AR-X,annual,2014,naphtha combustion consumption by to the public,536.8883253980399,TJ,N2O,0.6,kg/TJ,322.1329952388239,kg +1fb65a26-f43c-35e8-b0bb-22b79b450527,SESCO,II.1.1,Entre Rios,AR-E,annual,2014,naphtha combustion consumption by to the public,228.52376214051998,TJ,CO2,73300.0,kg/TJ,16750791.764900114,kg +ba594385-a62b-3d95-8cc7-f314192afbc8,SESCO,II.1.1,Entre Rios,AR-E,annual,2014,naphtha combustion consumption by to the public,228.52376214051998,TJ,CH4,3.0,kg/TJ,685.57128642156,kg +8f6cdb59-cd07-3d0f-946b-72848d9ba743,SESCO,II.1.1,Entre Rios,AR-E,annual,2014,naphtha combustion consumption by to the public,228.52376214051998,TJ,N2O,0.6,kg/TJ,137.11425728431198,kg +7b505b89-8aa5-30d1-8880-17cd94007ec5,SESCO,II.1.1,Formosa,AR-P,annual,2014,naphtha combustion consumption by to the public,92.41640466057999,TJ,CO2,73300.0,kg/TJ,6774122.461620513,kg +930a5162-d944-348f-98b3-52d06b3ef2b2,SESCO,II.1.1,Formosa,AR-P,annual,2014,naphtha combustion consumption by to the public,92.41640466057999,TJ,CH4,3.0,kg/TJ,277.24921398173996,kg +3a81f81a-6126-3a70-be0e-8e2a12a9aae6,SESCO,II.1.1,Formosa,AR-P,annual,2014,naphtha combustion consumption by to the public,92.41640466057999,TJ,N2O,0.6,kg/TJ,55.44984279634799,kg +a380da21-6fab-3045-a82d-78a876686bf1,SESCO,II.1.1,Jujuy,AR-Y,annual,2014,naphtha combustion consumption by to the public,4.75912601934,TJ,CO2,73300.0,kg/TJ,348843.937217622,kg +8d55ce21-c304-347e-be08-1c19d67ec930,SESCO,II.1.1,Jujuy,AR-Y,annual,2014,naphtha combustion consumption by to the public,4.75912601934,TJ,CH4,3.0,kg/TJ,14.27737805802,kg +ecfe7841-db83-319d-a1d5-44ecb3b15f66,SESCO,II.1.1,Jujuy,AR-Y,annual,2014,naphtha combustion consumption by to the public,4.75912601934,TJ,N2O,0.6,kg/TJ,2.855475611604,kg +62dbb886-b0be-3ef4-be1c-5d099421ce95,SESCO,II.1.1,La Pampa,AR-L,annual,2014,naphtha combustion consumption by to the public,28.974498665419997,TJ,CO2,73300.0,kg/TJ,2123830.752175286,kg +d8f8b61c-00fb-364b-bb2a-2305b45ea49d,SESCO,II.1.1,La Pampa,AR-L,annual,2014,naphtha combustion consumption by to the public,28.974498665419997,TJ,CH4,3.0,kg/TJ,86.92349599625999,kg +e70a1da7-f3eb-3e2a-b917-ac9ff4d0b320,SESCO,II.1.1,La Pampa,AR-L,annual,2014,naphtha combustion consumption by to the public,28.974498665419997,TJ,N2O,0.6,kg/TJ,17.384699199251997,kg +ac27bf1a-500e-338f-9279-c49975398852,SESCO,II.1.1,La Rioja,AR-F,annual,2014,naphtha combustion consumption by to the public,18.62260919288,TJ,CO2,73300.0,kg/TJ,1365037.253838104,kg +228d4301-8a7e-30bd-9d6b-ab782334c264,SESCO,II.1.1,La Rioja,AR-F,annual,2014,naphtha combustion consumption by to the public,18.62260919288,TJ,CH4,3.0,kg/TJ,55.86782757864,kg +edab0fa2-b988-38da-b3a9-c19694a5bc38,SESCO,II.1.1,La Rioja,AR-F,annual,2014,naphtha combustion consumption by to the public,18.62260919288,TJ,N2O,0.6,kg/TJ,11.173565515727999,kg +742c111a-56fe-3b9e-a306-06bc15e82692,SESCO,II.1.1,Mendoza,AR-M,annual,2014,naphtha combustion consumption by to the public,102.65145116842,TJ,CO2,73300.0,kg/TJ,7524351.370645186,kg +b102083c-ff99-38eb-9076-6489c5132ed9,SESCO,II.1.1,Mendoza,AR-M,annual,2014,naphtha combustion consumption by to the public,102.65145116842,TJ,CH4,3.0,kg/TJ,307.95435350526,kg +2d15cbd5-3bd7-3980-b24e-101022970e35,SESCO,II.1.1,Mendoza,AR-M,annual,2014,naphtha combustion consumption by to the public,102.65145116842,TJ,N2O,0.6,kg/TJ,61.590870701052,kg +1754107d-59cd-3a79-b5c9-fb178ed23492,SESCO,II.1.1,Misiones,AR-N,annual,2014,naphtha combustion consumption by to the public,119.73764393976,TJ,CO2,73300.0,kg/TJ,8776769.300784409,kg +9753a8d9-ba15-346c-8d46-a6808e430a90,SESCO,II.1.1,Misiones,AR-N,annual,2014,naphtha combustion consumption by to the public,119.73764393976,TJ,CH4,3.0,kg/TJ,359.21293181928,kg +5c2237a8-3363-3f5e-8867-6a110dc122c4,SESCO,II.1.1,Misiones,AR-N,annual,2014,naphtha combustion consumption by to the public,119.73764393976,TJ,N2O,0.6,kg/TJ,71.842586363856,kg +e729c30c-e439-3456-a0c6-a07f7b83f24e,SESCO,II.1.1,Neuquén,AR-Q,annual,2014,naphtha combustion consumption by to the public,76.23586229182,TJ,CO2,73300.0,kg/TJ,5588088.705990406,kg +e32f0f45-e601-3789-b0b5-bcd60245f78e,SESCO,II.1.1,Neuquén,AR-Q,annual,2014,naphtha combustion consumption by to the public,76.23586229182,TJ,CH4,3.0,kg/TJ,228.70758687545998,kg +69173c8e-6e6b-351b-8386-0055ada150d2,SESCO,II.1.1,Neuquén,AR-Q,annual,2014,naphtha combustion consumption by to the public,76.23586229182,TJ,N2O,0.6,kg/TJ,45.741517375091995,kg +8f47a4cf-a084-3858-a527-5171790c0f87,SESCO,II.1.1,Rio Negro,AR-R,annual,2014,naphtha combustion consumption by to the public,101.55053604387999,TJ,CO2,73300.0,kg/TJ,7443654.292016403,kg +eafa13ca-6f74-3b4b-afcc-b61fda9c2135,SESCO,II.1.1,Rio Negro,AR-R,annual,2014,naphtha combustion consumption by to the public,101.55053604387999,TJ,CH4,3.0,kg/TJ,304.65160813163993,kg +5e2fe383-2cd6-3236-aa28-0419517c9d94,SESCO,II.1.1,Rio Negro,AR-R,annual,2014,naphtha combustion consumption by to the public,101.55053604387999,TJ,N2O,0.6,kg/TJ,60.93032162632799,kg +19a0088e-9f8f-3c8c-89b8-29bccd6a23b1,SESCO,II.1.1,Salta,AR-A,annual,2014,naphtha combustion consumption by to the public,7.912473799999999,TJ,CO2,73300.0,kg/TJ,579984.32954,kg +1b65d4bd-08b6-3da0-b141-43706569ecf2,SESCO,II.1.1,Salta,AR-A,annual,2014,naphtha combustion consumption by to the public,7.912473799999999,TJ,CH4,3.0,kg/TJ,23.737421399999995,kg +01c9960a-b7ee-3611-aab1-fccb3f07dddd,SESCO,II.1.1,Salta,AR-A,annual,2014,naphtha combustion consumption by to the public,7.912473799999999,TJ,N2O,0.6,kg/TJ,4.747484279999999,kg +80e41fc6-30bc-3431-ad0a-f3a847893885,SESCO,II.1.1,San Juan,AR-J,annual,2014,naphtha combustion consumption by to the public,55.866717940879994,TJ,CO2,73300.0,kg/TJ,4095030.4250665037,kg +a9c332c5-7ffc-30b6-9c0f-9abb33b3f730,SESCO,II.1.1,San Juan,AR-J,annual,2014,naphtha combustion consumption by to the public,55.866717940879994,TJ,CH4,3.0,kg/TJ,167.60015382263998,kg +02728942-7e21-32fd-b0fd-7c4ebb75b911,SESCO,II.1.1,San Juan,AR-J,annual,2014,naphtha combustion consumption by to the public,55.866717940879994,TJ,N2O,0.6,kg/TJ,33.520030764527995,kg +2f2decd6-39f6-310d-90fd-c196afb2baa0,SESCO,II.1.1,San Luis,AR-D,annual,2014,naphtha combustion consumption by to the public,127.61306781761999,TJ,CO2,73300.0,kg/TJ,9354037.871031545,kg +a164beda-98b5-30fd-b578-de9a39eeeed2,SESCO,II.1.1,San Luis,AR-D,annual,2014,naphtha combustion consumption by to the public,127.61306781761999,TJ,CH4,3.0,kg/TJ,382.83920345286,kg +6ef5a98f-370e-31fa-b7a5-f1a20cff4dc1,SESCO,II.1.1,San Luis,AR-D,annual,2014,naphtha combustion consumption by to the public,127.61306781761999,TJ,N2O,0.6,kg/TJ,76.567840690572,kg +cc341a01-11c3-30e3-bd97-7323fe0d666d,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2014,naphtha combustion consumption by to the public,27.845234187539997,TJ,CO2,73300.0,kg/TJ,2041055.6659466818,kg +0eecbe83-e6cc-3ad5-afc1-906b495702a9,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2014,naphtha combustion consumption by to the public,27.845234187539997,TJ,CH4,3.0,kg/TJ,83.53570256261999,kg +93ab785c-8332-3ea2-916c-14f8cc684d93,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2014,naphtha combustion consumption by to the public,27.845234187539997,TJ,N2O,0.6,kg/TJ,16.707140512524,kg +67f781e7-df02-32bf-b360-f24aca526a9f,SESCO,II.1.1,Santa Fe,AR-S,annual,2014,naphtha combustion consumption by to the public,581.0751759628199,TJ,CO2,73300.0,kg/TJ,42592810.3980747,kg +1539845f-faea-3897-a468-7727be820d77,SESCO,II.1.1,Santa Fe,AR-S,annual,2014,naphtha combustion consumption by to the public,581.0751759628199,TJ,CH4,3.0,kg/TJ,1743.2255278884597,kg +1a9c6261-6568-36fb-acb5-ab1d721398f3,SESCO,II.1.1,Santa Fe,AR-S,annual,2014,naphtha combustion consumption by to the public,581.0751759628199,TJ,N2O,0.6,kg/TJ,348.64510557769194,kg +f3baee6c-0057-3d0d-af50-3e274dd02f56,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2014,naphtha combustion consumption by to the public,79.1497678972,TJ,CO2,73300.0,kg/TJ,5801677.98686476,kg +223a9757-1650-3792-9465-3fae709abb87,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2014,naphtha combustion consumption by to the public,79.1497678972,TJ,CH4,3.0,kg/TJ,237.4493036916,kg +2a4a3a3c-d025-397f-81f1-883766c23d7f,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2014,naphtha combustion consumption by to the public,79.1497678972,TJ,N2O,0.6,kg/TJ,47.48986073832,kg +a92c1d7b-7f50-363c-99d7-645202f2f0c8,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2014,naphtha combustion consumption by to the public,53.91823186288,TJ,CO2,73300.0,kg/TJ,3952206.395549104,kg +9bfe7fda-ed58-34e7-b572-73daa2f06c77,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2014,naphtha combustion consumption by to the public,53.91823186288,TJ,CH4,3.0,kg/TJ,161.75469558864,kg +4845afa9-a97b-3fd7-80c0-c189d467194e,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2014,naphtha combustion consumption by to the public,53.91823186288,TJ,N2O,0.6,kg/TJ,32.350939117728,kg +7a916aa3-e935-330a-98ce-480b4beced33,SESCO,II.1.1,Tucuman,AR-T,annual,2014,naphtha combustion consumption by to the public,19.83476865524,TJ,CO2,73300.0,kg/TJ,1453888.542429092,kg +767784c0-9ce1-3667-a1f5-a06deb3a6112,SESCO,II.1.1,Tucuman,AR-T,annual,2014,naphtha combustion consumption by to the public,19.83476865524,TJ,CH4,3.0,kg/TJ,59.50430596572001,kg +4a96363f-8351-3ba6-86f5-ca2174ff973a,SESCO,II.1.1,Tucuman,AR-T,annual,2014,naphtha combustion consumption by to the public,19.83476865524,TJ,N2O,0.6,kg/TJ,11.900861193144001,kg +66f0d6b0-4901-3f28-b50b-d89a99692554,SESCO,I.3.1,Buenos Aires,AR-B,annual,2014,naphtha combustion consumption by petrochemical industries,12.76083424,TJ,CO2,73300.0,kg/TJ,935369.149792,kg +f92a135f-d546-3048-8631-d830b95dc7d7,SESCO,I.3.1,Buenos Aires,AR-B,annual,2014,naphtha combustion consumption by petrochemical industries,12.76083424,TJ,CH4,3.0,kg/TJ,38.28250272,kg +095d6ec5-6426-3ba2-8d96-7c5b80968d9d,SESCO,I.3.1,Buenos Aires,AR-B,annual,2014,naphtha combustion consumption by petrochemical industries,12.76083424,TJ,N2O,0.6,kg/TJ,7.656500543999999,kg +632d58ce-9534-36f5-9a68-6b9dfd1b922a,SESCO,I.3.1,Córdoba,AR-X,annual,2014,naphtha combustion consumption by petrochemical industries,2.6164753999999997,TJ,CO2,73300.0,kg/TJ,191787.64681999997,kg +b0b23a9a-a342-39a1-b956-ddc3e32652fe,SESCO,I.3.1,Córdoba,AR-X,annual,2014,naphtha combustion consumption by petrochemical industries,2.6164753999999997,TJ,CH4,3.0,kg/TJ,7.849426199999999,kg +b13a454c-66cb-3685-a53c-f264f3d0f28f,SESCO,I.3.1,Córdoba,AR-X,annual,2014,naphtha combustion consumption by petrochemical industries,2.6164753999999997,TJ,N2O,0.6,kg/TJ,1.5698852399999998,kg +a976584b-a85d-3abb-80bd-c40e7b5d1e1b,SESCO,I.3.1,Buenos Aires,AR-B,annual,2014,naphtha combustion consumption by petrochemical industries,0.47285699999999997,TJ,CO2,73300.0,kg/TJ,34660.418099999995,kg +a5d16c57-72d4-3bf8-b89a-e3ee949080be,SESCO,I.3.1,Buenos Aires,AR-B,annual,2014,naphtha combustion consumption by petrochemical industries,0.47285699999999997,TJ,CH4,3.0,kg/TJ,1.418571,kg +2096722c-999d-3871-ac2c-4c95e1d6a68a,SESCO,I.3.1,Buenos Aires,AR-B,annual,2014,naphtha combustion consumption by petrochemical industries,0.47285699999999997,TJ,N2O,0.6,kg/TJ,0.28371419999999997,kg +2030e5cb-1de0-3d49-a58c-9b0fda8b3c8f,SESCO,II.1.1,Buenos Aires,AR-B,annual,2014,naphtha combustion consumption by freight transport,5.0337203839999995,TJ,CO2,73300.0,kg/TJ,368971.7041472,kg +cab3dd91-a30c-3413-b6fd-27620667c462,SESCO,II.1.1,Buenos Aires,AR-B,annual,2014,naphtha combustion consumption by freight transport,5.0337203839999995,TJ,CH4,3.0,kg/TJ,15.101161152,kg +70e07855-3f20-3fc0-88ab-8da68a9e3012,SESCO,II.1.1,Buenos Aires,AR-B,annual,2014,naphtha combustion consumption by freight transport,5.0337203839999995,TJ,N2O,0.6,kg/TJ,3.0202322303999996,kg +b28312bb-8de5-30b5-877d-46b8670b90cc,SESCO,II.1.1,Capital Federal,AR-C,annual,2014,naphtha combustion consumption by freight transport,9.461238093999999,TJ,CO2,73300.0,kg/TJ,693508.7522901999,kg +93253653-177e-39f9-a359-ac537ac28315,SESCO,II.1.1,Capital Federal,AR-C,annual,2014,naphtha combustion consumption by freight transport,9.461238093999999,TJ,CH4,3.0,kg/TJ,28.383714281999996,kg +6340fc22-713f-3bd6-8f06-991e9a9dca22,SESCO,II.1.1,Capital Federal,AR-C,annual,2014,naphtha combustion consumption by freight transport,9.461238093999999,TJ,N2O,0.6,kg/TJ,5.676742856399999,kg +a0924338-4f6f-34c3-a231-378f3d365a38,SESCO,II.1.1,Chaco,AR-H,annual,2014,naphtha combustion consumption by freight transport,0.08038569,TJ,CO2,73300.0,kg/TJ,5892.271076999999,kg +41bf64fe-e8b8-3847-b94b-a86529fb9abd,SESCO,II.1.1,Chaco,AR-H,annual,2014,naphtha combustion consumption by freight transport,0.08038569,TJ,CH4,3.0,kg/TJ,0.24115706999999997,kg +bae06977-4f2e-33df-b1df-6c15d957a8cc,SESCO,II.1.1,Chaco,AR-H,annual,2014,naphtha combustion consumption by freight transport,0.08038569,TJ,N2O,0.6,kg/TJ,0.04823141399999999,kg +94dce36c-d0d7-36e3-809c-398073cfe7b0,SESCO,II.1.1,Corrientes,AR-W,annual,2014,naphtha combustion consumption by freight transport,0.034676179999999994,TJ,CO2,73300.0,kg/TJ,2541.7639939999995,kg +b8eaf2cf-fbe9-3b21-b909-a3f1ecc28cd6,SESCO,II.1.1,Corrientes,AR-W,annual,2014,naphtha combustion consumption by freight transport,0.034676179999999994,TJ,CH4,3.0,kg/TJ,0.10402853999999997,kg +622cf18a-db8a-314c-be51-07b9da4b817b,SESCO,II.1.1,Corrientes,AR-W,annual,2014,naphtha combustion consumption by freight transport,0.034676179999999994,TJ,N2O,0.6,kg/TJ,0.020805707999999996,kg +c039cfed-eaf2-3158-be16-62739b248458,SESCO,II.1.1,Córdoba,AR-X,annual,2014,naphtha combustion consumption by freight transport,0.528654126,TJ,CO2,73300.0,kg/TJ,38750.347435799995,kg +260eb602-2539-372c-bdc8-5479b6d375ee,SESCO,II.1.1,Córdoba,AR-X,annual,2014,naphtha combustion consumption by freight transport,0.528654126,TJ,CH4,3.0,kg/TJ,1.5859623779999998,kg +86a4c197-09ce-30d2-82f8-a5c5986f6e5b,SESCO,II.1.1,Córdoba,AR-X,annual,2014,naphtha combustion consumption by freight transport,0.528654126,TJ,N2O,0.6,kg/TJ,0.31719247559999997,kg +b4ed6f2b-80f1-3272-8db6-d72d7b595f15,SESCO,II.1.1,Entre Rios,AR-E,annual,2014,naphtha combustion consumption by freight transport,0.0037828560000000002,TJ,CO2,73300.0,kg/TJ,277.2833448,kg +8bee616f-eab2-37f8-b890-f22b3231dbce,SESCO,II.1.1,Entre Rios,AR-E,annual,2014,naphtha combustion consumption by freight transport,0.0037828560000000002,TJ,CH4,3.0,kg/TJ,0.011348568,kg +639b17c2-8a46-3dba-aeec-7d9578d97ec4,SESCO,II.1.1,Entre Rios,AR-E,annual,2014,naphtha combustion consumption by freight transport,0.0037828560000000002,TJ,N2O,0.6,kg/TJ,0.0022697136000000002,kg +8370f98d-790d-3eb5-917c-2c42e86f93ff,SESCO,II.1.1,Mendoza,AR-M,annual,2014,naphtha combustion consumption by freight transport,0.0012609519999999999,TJ,CO2,73300.0,kg/TJ,92.42778159999999,kg +bc06c53f-3b86-34d8-9f3a-cd87270a1181,SESCO,II.1.1,Mendoza,AR-M,annual,2014,naphtha combustion consumption by freight transport,0.0012609519999999999,TJ,CH4,3.0,kg/TJ,0.0037828559999999994,kg +35c954e0-160c-36bc-aa1a-7459b3a61300,SESCO,II.1.1,Mendoza,AR-M,annual,2014,naphtha combustion consumption by freight transport,0.0012609519999999999,TJ,N2O,0.6,kg/TJ,0.0007565711999999999,kg +bc528653-d4bc-3ae6-891a-b00e90e97979,SESCO,II.1.1,San Luis,AR-D,annual,2014,naphtha combustion consumption by freight transport,0.070298074,TJ,CO2,73300.0,kg/TJ,5152.8488242,kg +0eae5d7d-a81d-3c60-9da5-c82048e594ea,SESCO,II.1.1,San Luis,AR-D,annual,2014,naphtha combustion consumption by freight transport,0.070298074,TJ,CH4,3.0,kg/TJ,0.21089422200000002,kg +5e5f21d5-e4af-3f01-b6c5-ff69fc0f9346,SESCO,II.1.1,San Luis,AR-D,annual,2014,naphtha combustion consumption by freight transport,0.070298074,TJ,N2O,0.6,kg/TJ,0.0421788444,kg +8be534ad-6ba5-3fd3-a4ad-b99f800c4beb,SESCO,II.1.1,Santa Fe,AR-S,annual,2014,naphtha combustion consumption by freight transport,4.139705415999999,TJ,CO2,73300.0,kg/TJ,303440.40699279995,kg +de65edd7-e35b-3657-b0c0-1ae4d0d0dc6d,SESCO,II.1.1,Santa Fe,AR-S,annual,2014,naphtha combustion consumption by freight transport,4.139705415999999,TJ,CH4,3.0,kg/TJ,12.419116247999998,kg +17f8ed3e-a127-3986-b3ac-6a3c32df6d52,SESCO,II.1.1,Santa Fe,AR-S,annual,2014,naphtha combustion consumption by freight transport,4.139705415999999,TJ,N2O,0.6,kg/TJ,2.4838232495999994,kg +6e35bcff-c396-3aa6-aa77-a3c2c41189ea,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2014,naphtha combustion consumption by freight transport,0.0031523799999999998,TJ,CO2,73300.0,kg/TJ,231.06945399999998,kg +ca08e985-2631-33d9-82b1-bf7b0f4f206c,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2014,naphtha combustion consumption by freight transport,0.0031523799999999998,TJ,CH4,3.0,kg/TJ,0.00945714,kg +29d5ceba-244b-3cce-ba35-fb24c90492fb,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2014,naphtha combustion consumption by freight transport,0.0031523799999999998,TJ,N2O,0.6,kg/TJ,0.0018914279999999997,kg +6d4268ec-c803-35ea-af0d-612c5dc92a6d,SESCO,II.1.1,Tucuman,AR-T,annual,2014,naphtha combustion consumption by freight transport,0.05674284,TJ,CO2,73300.0,kg/TJ,4159.250172,kg +3d78db23-9400-3067-adb0-b31b5edf52e6,SESCO,II.1.1,Tucuman,AR-T,annual,2014,naphtha combustion consumption by freight transport,0.05674284,TJ,CH4,3.0,kg/TJ,0.17022852,kg +4270a69b-9010-3968-9668-6cfd40ce4b10,SESCO,II.1.1,Tucuman,AR-T,annual,2014,naphtha combustion consumption by freight transport,0.05674284,TJ,N2O,0.6,kg/TJ,0.034045704,kg +e1ac4f03-2c4f-31ad-9466-065039e21603,SESCO,II.1.1,Buenos Aires,AR-B,annual,2014,naphtha combustion consumption by freight transport,5.959259152,TJ,CO2,73300.0,kg/TJ,436813.69584159995,kg +5c061d49-d35b-3787-be9b-629e7b964f70,SESCO,II.1.1,Buenos Aires,AR-B,annual,2014,naphtha combustion consumption by freight transport,5.959259152,TJ,CH4,3.0,kg/TJ,17.877777455999997,kg +f7fd336b-9e9f-3e9a-9c1e-22419c0b3df3,SESCO,II.1.1,Buenos Aires,AR-B,annual,2014,naphtha combustion consumption by freight transport,5.959259152,TJ,N2O,0.6,kg/TJ,3.5755554912,kg +66dca8fa-72ba-3d26-b0f6-aadfc49bc224,SESCO,II.1.1,Capital Federal,AR-C,annual,2014,naphtha combustion consumption by freight transport,8.099094696,TJ,CO2,73300.0,kg/TJ,593663.6412168,kg +fba03e62-a0c9-34cb-8902-22ad3cc79ccf,SESCO,II.1.1,Capital Federal,AR-C,annual,2014,naphtha combustion consumption by freight transport,8.099094696,TJ,CH4,3.0,kg/TJ,24.297284087999998,kg +ad48a798-ef70-391e-92f8-0e8b88ea3683,SESCO,II.1.1,Capital Federal,AR-C,annual,2014,naphtha combustion consumption by freight transport,8.099094696,TJ,N2O,0.6,kg/TJ,4.8594568176,kg +d1488a21-c93c-3cf0-bb50-79d256b7fce0,SESCO,II.1.1,Chaco,AR-H,annual,2014,naphtha combustion consumption by freight transport,0.052644746,TJ,CO2,73300.0,kg/TJ,3858.8598818,kg +ebdaf645-fe8c-3537-b8b3-ee0756b6ac6e,SESCO,II.1.1,Chaco,AR-H,annual,2014,naphtha combustion consumption by freight transport,0.052644746,TJ,CH4,3.0,kg/TJ,0.157934238,kg +349abb10-763a-3552-974b-5811b29dfa13,SESCO,II.1.1,Chaco,AR-H,annual,2014,naphtha combustion consumption by freight transport,0.052644746,TJ,N2O,0.6,kg/TJ,0.031586847599999995,kg +c4122ca7-3537-3142-ba03-17cb6e4edd98,SESCO,II.1.1,Corrientes,AR-W,annual,2014,naphtha combustion consumption by freight transport,0.09772377999999998,TJ,CO2,73300.0,kg/TJ,7163.153073999999,kg +1eeeb246-2691-35d1-8253-e10dda668bd9,SESCO,II.1.1,Corrientes,AR-W,annual,2014,naphtha combustion consumption by freight transport,0.09772377999999998,TJ,CH4,3.0,kg/TJ,0.29317133999999995,kg +68900e4a-faea-322a-a41c-c5ab6bc70ae7,SESCO,II.1.1,Corrientes,AR-W,annual,2014,naphtha combustion consumption by freight transport,0.09772377999999998,TJ,N2O,0.6,kg/TJ,0.05863426799999999,kg +e0c29878-cdf5-3313-950f-e642866a841d,SESCO,II.1.1,Córdoba,AR-X,annual,2014,naphtha combustion consumption by freight transport,0.52802365,TJ,CO2,73300.0,kg/TJ,38704.133545,kg +98aba04b-470b-3651-9d9c-8507c222c0b5,SESCO,II.1.1,Córdoba,AR-X,annual,2014,naphtha combustion consumption by freight transport,0.52802365,TJ,CH4,3.0,kg/TJ,1.5840709499999999,kg +38a3f435-f107-324f-b192-d0974a3c820a,SESCO,II.1.1,Córdoba,AR-X,annual,2014,naphtha combustion consumption by freight transport,0.52802365,TJ,N2O,0.6,kg/TJ,0.31681418999999994,kg +bb818e72-1a85-3c93-9261-30ea6969628c,SESCO,II.1.1,Entre Rios,AR-E,annual,2014,naphtha combustion consumption by freight transport,0.16234756999999997,TJ,CO2,73300.0,kg/TJ,11900.076880999997,kg +1bd8d8f5-fca0-342b-9542-2cbf3e8df402,SESCO,II.1.1,Entre Rios,AR-E,annual,2014,naphtha combustion consumption by freight transport,0.16234756999999997,TJ,CH4,3.0,kg/TJ,0.4870427099999999,kg +f333be85-ce93-3d7c-94d2-18372cfd805f,SESCO,II.1.1,Entre Rios,AR-E,annual,2014,naphtha combustion consumption by freight transport,0.16234756999999997,TJ,N2O,0.6,kg/TJ,0.09740854199999997,kg +094b5b9e-8680-3169-838c-fa5e09f6cba1,SESCO,II.1.1,Misiones,AR-N,annual,2014,naphtha combustion consumption by freight transport,0.0063047599999999995,TJ,CO2,73300.0,kg/TJ,462.13890799999996,kg +6d54452d-b19c-30d7-881f-84e196809cc2,SESCO,II.1.1,Misiones,AR-N,annual,2014,naphtha combustion consumption by freight transport,0.0063047599999999995,TJ,CH4,3.0,kg/TJ,0.01891428,kg +7fcc169a-1909-3f54-acbf-22916ebdb855,SESCO,II.1.1,Misiones,AR-N,annual,2014,naphtha combustion consumption by freight transport,0.0063047599999999995,TJ,N2O,0.6,kg/TJ,0.0037828559999999994,kg +c29233c9-16bf-3431-98ea-776fea98d3d9,SESCO,II.1.1,San Luis,AR-D,annual,2014,naphtha combustion consumption by freight transport,0.0028371419999999995,TJ,CO2,73300.0,kg/TJ,207.96250859999998,kg +4dbfc78e-a9d5-3243-bcb4-fab74f31a80d,SESCO,II.1.1,San Luis,AR-D,annual,2014,naphtha combustion consumption by freight transport,0.0028371419999999995,TJ,CH4,3.0,kg/TJ,0.008511425999999999,kg +dc2b66b7-1404-392e-975b-902be4ee079c,SESCO,II.1.1,San Luis,AR-D,annual,2014,naphtha combustion consumption by freight transport,0.0028371419999999995,TJ,N2O,0.6,kg/TJ,0.0017022851999999996,kg +2ace8a0c-999c-3982-96ca-79c4fecac065,SESCO,II.1.1,Santa Fe,AR-S,annual,2014,naphtha combustion consumption by freight transport,0.749005488,TJ,CO2,73300.0,kg/TJ,54902.1022704,kg +65336fd1-89bb-3537-b8d1-6e06c0bdebbf,SESCO,II.1.1,Santa Fe,AR-S,annual,2014,naphtha combustion consumption by freight transport,0.749005488,TJ,CH4,3.0,kg/TJ,2.247016464,kg +f6cba3e3-68f5-3cd3-bc58-36394f428ccf,SESCO,II.1.1,Santa Fe,AR-S,annual,2014,naphtha combustion consumption by freight transport,0.749005488,TJ,N2O,0.6,kg/TJ,0.44940329279999996,kg +69b27560-3bf4-380e-a863-c462683ba604,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2014,naphtha combustion consumption by freight transport,0.09457139999999999,TJ,CO2,73300.0,kg/TJ,6932.083619999999,kg +b4874558-9d77-3874-adf5-7ef034d8281f,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2014,naphtha combustion consumption by freight transport,0.09457139999999999,TJ,CH4,3.0,kg/TJ,0.28371419999999997,kg +2bb96b8f-da28-3248-8ad3-3e0bddfb1efd,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2014,naphtha combustion consumption by freight transport,0.09457139999999999,TJ,N2O,0.6,kg/TJ,0.05674283999999999,kg +28b546e5-97e6-3b56-b1c9-88ff56056044,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2014,naphtha combustion consumption by freight transport,0.05201426999999999,TJ,CO2,73300.0,kg/TJ,3812.645990999999,kg +ebbc56c0-61f5-32ad-9887-036c12351233,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2014,naphtha combustion consumption by freight transport,0.05201426999999999,TJ,CH4,3.0,kg/TJ,0.15604280999999998,kg +8afac765-3513-3b11-bf57-e375044b5ac7,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2014,naphtha combustion consumption by freight transport,0.05201426999999999,TJ,N2O,0.6,kg/TJ,0.031208561999999992,kg +7071c101-d081-3cf3-9dbc-3d835c1c6c18,SESCO,II.1.1,Tucuman,AR-T,annual,2014,naphtha combustion consumption by freight transport,0.14217233799999998,TJ,CO2,73300.0,kg/TJ,10421.232375399999,kg +77d8c3cf-4908-330c-a2c2-f04b93e8c7b6,SESCO,II.1.1,Tucuman,AR-T,annual,2014,naphtha combustion consumption by freight transport,0.14217233799999998,TJ,CH4,3.0,kg/TJ,0.42651701399999997,kg +0a830b03-ffcc-31ee-b3cd-ad8c1f0be251,SESCO,II.1.1,Tucuman,AR-T,annual,2014,naphtha combustion consumption by freight transport,0.14217233799999998,TJ,N2O,0.6,kg/TJ,0.08530340279999998,kg +51777799-763d-3ed2-9421-a99c9db5a438,SESCO,II.1.1,Capital Federal,AR-C,annual,2014,naphtha combustion consumption by public passenger transport,0.025849516,TJ,CO2,73300.0,kg/TJ,1894.7695228,kg +8c4117d1-749e-377c-aad8-e685b52db32f,SESCO,II.1.1,Capital Federal,AR-C,annual,2014,naphtha combustion consumption by public passenger transport,0.025849516,TJ,CH4,3.0,kg/TJ,0.077548548,kg +7567a4b5-2677-33cf-9013-3dde84f8228d,SESCO,II.1.1,Capital Federal,AR-C,annual,2014,naphtha combustion consumption by public passenger transport,0.025849516,TJ,N2O,0.6,kg/TJ,0.0155097096,kg +0c873747-f02c-343f-9e93-224b18ff1f37,SESCO,II.1.1,Entre Rios,AR-E,annual,2014,naphtha combustion consumption by public passenger transport,0.0012609519999999999,TJ,CO2,73300.0,kg/TJ,92.42778159999999,kg +0f6863d7-0879-380d-a4f9-37af80c8a2b0,SESCO,II.1.1,Entre Rios,AR-E,annual,2014,naphtha combustion consumption by public passenger transport,0.0012609519999999999,TJ,CH4,3.0,kg/TJ,0.0037828559999999994,kg +86c8b99f-a141-3cd3-96bd-cc8a460d79ba,SESCO,II.1.1,Entre Rios,AR-E,annual,2014,naphtha combustion consumption by public passenger transport,0.0012609519999999999,TJ,N2O,0.6,kg/TJ,0.0007565711999999999,kg +3e00b6c3-ee0c-345c-a003-507b720cc525,SESCO,II.1.1,Santa Fe,AR-S,annual,2014,naphtha combustion consumption by public passenger transport,1.2924757999999998,TJ,CO2,73300.0,kg/TJ,94738.47613999998,kg +c1951d35-efa9-3876-8b6e-2b0988de43d4,SESCO,II.1.1,Santa Fe,AR-S,annual,2014,naphtha combustion consumption by public passenger transport,1.2924757999999998,TJ,CH4,3.0,kg/TJ,3.8774273999999993,kg +36ef0f92-1bd2-3999-abd5-f91285910b38,SESCO,II.1.1,Santa Fe,AR-S,annual,2014,naphtha combustion consumption by public passenger transport,1.2924757999999998,TJ,N2O,0.6,kg/TJ,0.7754854799999998,kg +55dd885b-00b7-33c4-a7a2-79b9e43bdfa2,SESCO,II.1.1,Buenos Aires,AR-B,annual,2014,naphtha combustion consumption by public passenger transport,0.9299521,TJ,CO2,73300.0,kg/TJ,68165.48892999999,kg +80d9987b-0f8b-3e2b-931a-c5670ef63370,SESCO,II.1.1,Buenos Aires,AR-B,annual,2014,naphtha combustion consumption by public passenger transport,0.9299521,TJ,CH4,3.0,kg/TJ,2.7898563,kg +dac1b2e4-2631-30b8-83ab-e958c3a14d36,SESCO,II.1.1,Buenos Aires,AR-B,annual,2014,naphtha combustion consumption by public passenger transport,0.9299521,TJ,N2O,0.6,kg/TJ,0.55797126,kg +3e9cac1a-3a1a-380c-92f1-8c3f3af7d71c,SESCO,II.1.1,Capital Federal,AR-C,annual,2014,naphtha combustion consumption by public passenger transport,0.24588564,TJ,CO2,73300.0,kg/TJ,18023.417412,kg +f89442a2-2a57-30e2-9bb6-9621995dde94,SESCO,II.1.1,Capital Federal,AR-C,annual,2014,naphtha combustion consumption by public passenger transport,0.24588564,TJ,CH4,3.0,kg/TJ,0.7376569199999999,kg +f044d5f5-65ba-3e0d-856c-d5ec318ea98a,SESCO,II.1.1,Capital Federal,AR-C,annual,2014,naphtha combustion consumption by public passenger transport,0.24588564,TJ,N2O,0.6,kg/TJ,0.147531384,kg +cc51166c-01dc-3abd-ae02-1ac91dba03c4,SESCO,II.1.1,Chaco,AR-H,annual,2014,naphtha combustion consumption by public passenger transport,0.00945714,TJ,CO2,73300.0,kg/TJ,693.208362,kg +30aeb30b-47e7-3839-b125-ec3f915d9cc9,SESCO,II.1.1,Chaco,AR-H,annual,2014,naphtha combustion consumption by public passenger transport,0.00945714,TJ,CH4,3.0,kg/TJ,0.028371419999999998,kg +ad452479-72e4-3eb8-8930-02b5ed01bbb9,SESCO,II.1.1,Chaco,AR-H,annual,2014,naphtha combustion consumption by public passenger transport,0.00945714,TJ,N2O,0.6,kg/TJ,0.005674283999999999,kg +ffe02dc2-78cc-3f2d-a5b9-3ee416d7efc3,SESCO,II.1.1,Entre Rios,AR-E,annual,2014,naphtha combustion consumption by public passenger transport,0.063362838,TJ,CO2,73300.0,kg/TJ,4644.496025400001,kg +9b9ebd79-3fe7-3a39-9348-de2e8094f8c7,SESCO,II.1.1,Entre Rios,AR-E,annual,2014,naphtha combustion consumption by public passenger transport,0.063362838,TJ,CH4,3.0,kg/TJ,0.19008851400000001,kg +2c788d6a-e83f-3b52-bea9-50fffa9ba48f,SESCO,II.1.1,Entre Rios,AR-E,annual,2014,naphtha combustion consumption by public passenger transport,0.063362838,TJ,N2O,0.6,kg/TJ,0.038017702800000004,kg +f81c221b-cb79-3495-8b3b-bbe2e36620e2,SESCO,II.1.1,Rio Negro,AR-R,annual,2014,naphtha combustion consumption by public passenger transport,1.1663805999999999,TJ,CO2,73300.0,kg/TJ,85495.69798,kg +13cdf7b1-0b24-332a-b813-0c7063fdc327,SESCO,II.1.1,Rio Negro,AR-R,annual,2014,naphtha combustion consumption by public passenger transport,1.1663805999999999,TJ,CH4,3.0,kg/TJ,3.4991417999999994,kg +7498684e-f8f9-3809-8d62-a9c2e51c2d48,SESCO,II.1.1,Rio Negro,AR-R,annual,2014,naphtha combustion consumption by public passenger transport,1.1663805999999999,TJ,N2O,0.6,kg/TJ,0.6998283599999999,kg +1e452d7a-e59d-361e-91b0-282c36302b83,SESCO,II.5.1,Córdoba,AR-X,annual,2014,naphtha combustion consumption by agriculture machines,2.7829273687599994,TJ,CO2,73300.0,kg/TJ,203988.57613010795,kg +d0a10cd7-aeec-3826-8b2e-27367320574a,SESCO,II.5.1,Córdoba,AR-X,annual,2014,naphtha combustion consumption by agriculture machines,2.7829273687599994,TJ,CH4,3.0,kg/TJ,8.348782106279998,kg +cb0c6f53-c4fa-3183-9640-52d9c2f33727,SESCO,II.5.1,Córdoba,AR-X,annual,2014,naphtha combustion consumption by agriculture machines,2.7829273687599994,TJ,N2O,0.6,kg/TJ,1.6697564212559997,kg +dbd7d2f6-6239-34b1-bdb4-7f43ab24c04a,SESCO,II.5.1,Santa Fe,AR-S,annual,2014,naphtha combustion consumption by agriculture machines,4.433072203559999,TJ,CO2,73300.0,kg/TJ,324944.19252094795,kg +1061c42b-ae15-3276-b735-c2e3a493b5b7,SESCO,II.5.1,Santa Fe,AR-S,annual,2014,naphtha combustion consumption by agriculture machines,4.433072203559999,TJ,CH4,3.0,kg/TJ,13.299216610679998,kg +1d62aef2-9431-399b-9ee8-b3d97c323062,SESCO,II.5.1,Santa Fe,AR-S,annual,2014,naphtha combustion consumption by agriculture machines,4.433072203559999,TJ,N2O,0.6,kg/TJ,2.6598433221359996,kg +06849651-59d3-38f6-982b-d0b13cac4dd5,SESCO,II.5.1,Santiago del Estero,AR-G,annual,2014,naphtha combustion consumption by agriculture machines,2.28693189956,TJ,CO2,73300.0,kg/TJ,167632.10823774798,kg +0040cda7-7d90-342e-aebf-a817eda622da,SESCO,II.5.1,Santiago del Estero,AR-G,annual,2014,naphtha combustion consumption by agriculture machines,2.28693189956,TJ,CH4,3.0,kg/TJ,6.86079569868,kg +e46cd18f-aa53-30ba-a632-cd972b972981,SESCO,II.5.1,Santiago del Estero,AR-G,annual,2014,naphtha combustion consumption by agriculture machines,2.28693189956,TJ,N2O,0.6,kg/TJ,1.3721591397359998,kg +c894c262-369e-36a6-a82c-a10d1b7d6d90,SESCO,II.1.1,Buenos Aires,AR-B,annual,2014,naphtha combustion consumption by to the public,1964.1162747159797,TJ,CO2,73300.0,kg/TJ,143969722.9366813,kg +2cfe60d3-31ad-39c9-95d4-c3a95e7e3ba5,SESCO,II.1.1,Buenos Aires,AR-B,annual,2014,naphtha combustion consumption by to the public,1964.1162747159797,TJ,CH4,3.0,kg/TJ,5892.348824147939,kg +9abb8b16-9c53-3245-bcf2-f215666dbf89,SESCO,II.1.1,Buenos Aires,AR-B,annual,2014,naphtha combustion consumption by to the public,1964.1162747159797,TJ,N2O,0.6,kg/TJ,1178.4697648295878,kg +4d53ded7-701a-3f68-b536-c8e74ddb700f,SESCO,II.1.1,Capital Federal,AR-C,annual,2014,naphtha combustion consumption by to the public,240.27758435141996,TJ,CO2,73300.0,kg/TJ,17612346.932959083,kg +ea973fe1-5df7-388b-b0b1-683447593180,SESCO,II.1.1,Capital Federal,AR-C,annual,2014,naphtha combustion consumption by to the public,240.27758435141996,TJ,CH4,3.0,kg/TJ,720.8327530542599,kg +c1025b12-de2a-3900-8f46-fb0f21d2ebb8,SESCO,II.1.1,Capital Federal,AR-C,annual,2014,naphtha combustion consumption by to the public,240.27758435141996,TJ,N2O,0.6,kg/TJ,144.16655061085197,kg +e9ff8f0a-31ff-369e-bc1f-38ff289cdfa8,SESCO,II.1.1,Catamarca,AR-K,annual,2014,naphtha combustion consumption by to the public,173.64654475784,TJ,CO2,73300.0,kg/TJ,12728291.73074967,kg +5f0acda4-88bf-3e45-b464-91322d0e4399,SESCO,II.1.1,Catamarca,AR-K,annual,2014,naphtha combustion consumption by to the public,173.64654475784,TJ,CH4,3.0,kg/TJ,520.9396342735199,kg +66c57f4b-bcb2-3ebb-b1d0-363cfe6dc912,SESCO,II.1.1,Catamarca,AR-K,annual,2014,naphtha combustion consumption by to the public,173.64654475784,TJ,N2O,0.6,kg/TJ,104.18792685470399,kg +dc205423-8e8a-3a22-bf13-6689cd18b991,SESCO,II.1.1,Chaco,AR-H,annual,2014,naphtha combustion consumption by to the public,331.03420104678,TJ,CO2,73300.0,kg/TJ,24264806.936728977,kg +fb9988c2-a946-36bb-b1e1-90a1ba7e7501,SESCO,II.1.1,Chaco,AR-H,annual,2014,naphtha combustion consumption by to the public,331.03420104678,TJ,CH4,3.0,kg/TJ,993.1026031403401,kg +45de6a9b-4344-3ce4-b123-8fdefef5b153,SESCO,II.1.1,Chaco,AR-H,annual,2014,naphtha combustion consumption by to the public,331.03420104678,TJ,N2O,0.6,kg/TJ,198.62052062806802,kg +e069d8ea-c778-35a7-99eb-3d871a999aa7,SESCO,II.1.1,Corrientes,AR-W,annual,2014,naphtha combustion consumption by to the public,328.75072730807995,TJ,CO2,73300.0,kg/TJ,24097428.31168226,kg +cbe710c5-d053-315c-9670-fbf3fd134964,SESCO,II.1.1,Corrientes,AR-W,annual,2014,naphtha combustion consumption by to the public,328.75072730807995,TJ,CH4,3.0,kg/TJ,986.2521819242398,kg +ad09fcaf-f46f-360e-9045-5ef5fdd9e7bb,SESCO,II.1.1,Corrientes,AR-W,annual,2014,naphtha combustion consumption by to the public,328.75072730807995,TJ,N2O,0.6,kg/TJ,197.25043638484797,kg +c35cad95-f359-3499-9e2f-834c748f9689,SESCO,II.1.1,Córdoba,AR-X,annual,2014,naphtha combustion consumption by to the public,822.3066106070199,TJ,CO2,73300.0,kg/TJ,60275074.55749456,kg +37fb082d-60c8-3aba-97d6-0b8b9db4c4a2,SESCO,II.1.1,Córdoba,AR-X,annual,2014,naphtha combustion consumption by to the public,822.3066106070199,TJ,CH4,3.0,kg/TJ,2466.9198318210597,kg +d3d0fd72-c93b-3096-aac8-b098c51142c3,SESCO,II.1.1,Córdoba,AR-X,annual,2014,naphtha combustion consumption by to the public,822.3066106070199,TJ,N2O,0.6,kg/TJ,493.3839663642119,kg +4d2b0f52-9e7d-3984-a7a4-90da7ed503d3,SESCO,II.1.1,Entre Rios,AR-E,annual,2014,naphtha combustion consumption by to the public,480.45508694259996,TJ,CO2,73300.0,kg/TJ,35217357.87289258,kg +3ef3e53b-43c8-33f3-ab4b-6313e9000032,SESCO,II.1.1,Entre Rios,AR-E,annual,2014,naphtha combustion consumption by to the public,480.45508694259996,TJ,CH4,3.0,kg/TJ,1441.3652608277998,kg +c5aaf86d-eee1-3a0e-846a-e4fe2ddb72a7,SESCO,II.1.1,Entre Rios,AR-E,annual,2014,naphtha combustion consumption by to the public,480.45508694259996,TJ,N2O,0.6,kg/TJ,288.27305216556,kg +1defe901-e540-3d3f-91a1-2717ff2d80d0,SESCO,II.1.1,Jujuy,AR-Y,annual,2014,naphtha combustion consumption by to the public,46.401116952959995,TJ,CO2,73300.0,kg/TJ,3401201.8726519677,kg +ae3b6663-848a-32f7-8fde-d9f0e4437c5f,SESCO,II.1.1,Jujuy,AR-Y,annual,2014,naphtha combustion consumption by to the public,46.401116952959995,TJ,CH4,3.0,kg/TJ,139.20335085888,kg +472a17f1-4f0f-3295-9687-b2d01a16fcd5,SESCO,II.1.1,Jujuy,AR-Y,annual,2014,naphtha combustion consumption by to the public,46.401116952959995,TJ,N2O,0.6,kg/TJ,27.840670171775997,kg +f8ddf3b5-b343-3b55-b577-5a48755d41d3,SESCO,II.1.1,La Pampa,AR-L,annual,2014,naphtha combustion consumption by to the public,10.88627462538,TJ,CO2,73300.0,kg/TJ,797963.930040354,kg +f7d459cd-4b29-3424-88f9-01323b2f2211,SESCO,II.1.1,La Pampa,AR-L,annual,2014,naphtha combustion consumption by to the public,10.88627462538,TJ,CH4,3.0,kg/TJ,32.658823876140005,kg +9c572858-24ea-35a3-8af5-9c16589374a5,SESCO,II.1.1,La Pampa,AR-L,annual,2014,naphtha combustion consumption by to the public,10.88627462538,TJ,N2O,0.6,kg/TJ,6.531764775228,kg +efb58344-87a1-3712-8390-e6d890c08db3,SESCO,II.1.1,La Rioja,AR-F,annual,2014,naphtha combustion consumption by to the public,73.96768390088,TJ,CO2,73300.0,kg/TJ,5421831.229934504,kg +abb6664f-f826-3f61-bcfc-ab6f5b13b6af,SESCO,II.1.1,La Rioja,AR-F,annual,2014,naphtha combustion consumption by to the public,73.96768390088,TJ,CH4,3.0,kg/TJ,221.90305170264003,kg +6c04ccaf-d2d1-3c8b-8c37-70327119e6f4,SESCO,II.1.1,La Rioja,AR-F,annual,2014,naphtha combustion consumption by to the public,73.96768390088,TJ,N2O,0.6,kg/TJ,44.380610340528,kg +e3b712e5-755a-3e6d-b2e1-2c77ddd25c38,SESCO,II.1.1,Mendoza,AR-M,annual,2014,naphtha combustion consumption by to the public,321.940275118,TJ,CO2,73300.0,kg/TJ,23598222.1661494,kg +ddb08872-97b5-37a4-82d0-1fe764140ac2,SESCO,II.1.1,Mendoza,AR-M,annual,2014,naphtha combustion consumption by to the public,321.940275118,TJ,CH4,3.0,kg/TJ,965.8208253539999,kg +2cd98c29-354a-38c9-8367-d81746fdd7ac,SESCO,II.1.1,Mendoza,AR-M,annual,2014,naphtha combustion consumption by to the public,321.940275118,TJ,N2O,0.6,kg/TJ,193.16416507079998,kg +1c24cfb1-4467-39b0-a275-97c31be506b2,SESCO,II.1.1,Misiones,AR-N,annual,2014,naphtha combustion consumption by to the public,238.41842726547998,TJ,CO2,73300.0,kg/TJ,17476070.718559682,kg +5f5deb23-caa1-30c6-a9e9-5223ecec8bff,SESCO,II.1.1,Misiones,AR-N,annual,2014,naphtha combustion consumption by to the public,238.41842726547998,TJ,CH4,3.0,kg/TJ,715.2552817964399,kg +0597e0f6-0896-33cd-a038-ce53920a79b8,SESCO,II.1.1,Misiones,AR-N,annual,2014,naphtha combustion consumption by to the public,238.41842726547998,TJ,N2O,0.6,kg/TJ,143.05105635928797,kg +459246fa-c4b6-366d-8104-60ad232c938f,SESCO,II.1.1,Salta,AR-A,annual,2014,naphtha combustion consumption by to the public,7.508783169579999,TJ,CO2,73300.0,kg/TJ,550393.8063302139,kg +b5efcd7a-4340-3c88-9fd0-09dcb23af826,SESCO,II.1.1,Salta,AR-A,annual,2014,naphtha combustion consumption by to the public,7.508783169579999,TJ,CH4,3.0,kg/TJ,22.526349508739997,kg +b60777a6-83a7-3adb-b8ad-93dbb50deb32,SESCO,II.1.1,Salta,AR-A,annual,2014,naphtha combustion consumption by to the public,7.508783169579999,TJ,N2O,0.6,kg/TJ,4.505269901747999,kg +3a596476-e5a1-33bb-80b5-0a546b213aba,SESCO,II.1.1,San Juan,AR-J,annual,2014,naphtha combustion consumption by to the public,242.80230973151998,TJ,CO2,73300.0,kg/TJ,17797409.303320415,kg +4993b773-206b-3f7c-a89a-fb226fd3b41a,SESCO,II.1.1,San Juan,AR-J,annual,2014,naphtha combustion consumption by to the public,242.80230973151998,TJ,CH4,3.0,kg/TJ,728.40692919456,kg +dd10f8a3-0563-3d0d-b07f-4b6e9b59f963,SESCO,II.1.1,San Juan,AR-J,annual,2014,naphtha combustion consumption by to the public,242.80230973151998,TJ,N2O,0.6,kg/TJ,145.68138583891198,kg +2fbf434f-b7f4-3ff6-9b7d-2ee66f61b5ae,SESCO,II.1.1,San Luis,AR-D,annual,2014,naphtha combustion consumption by to the public,155.89835849125998,TJ,CO2,73300.0,kg/TJ,11427349.677409356,kg +a48cb0d2-01fe-3c93-9e4f-7ea4a0c2dff9,SESCO,II.1.1,San Luis,AR-D,annual,2014,naphtha combustion consumption by to the public,155.89835849125998,TJ,CH4,3.0,kg/TJ,467.69507547378,kg +9ffe6038-c5f8-3263-830a-87527dfdb391,SESCO,II.1.1,San Luis,AR-D,annual,2014,naphtha combustion consumption by to the public,155.89835849125998,TJ,N2O,0.6,kg/TJ,93.53901509475598,kg +7d15a670-53fa-3b1c-8586-7251719550c0,SESCO,II.1.1,Santa Fe,AR-S,annual,2014,naphtha combustion consumption by to the public,1183.0934154269999,TJ,CO2,73300.0,kg/TJ,86720747.35079908,kg +8880f4c9-f98d-30cc-b0f3-30c75af294c0,SESCO,II.1.1,Santa Fe,AR-S,annual,2014,naphtha combustion consumption by to the public,1183.0934154269999,TJ,CH4,3.0,kg/TJ,3549.2802462809996,kg +61ced04f-87a7-3c1d-93f2-f0beadc18286,SESCO,II.1.1,Santa Fe,AR-S,annual,2014,naphtha combustion consumption by to the public,1183.0934154269999,TJ,N2O,0.6,kg/TJ,709.8560492561999,kg +da82d11c-ed5c-33de-87f2-d0dad6fbafbf,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2014,naphtha combustion consumption by to the public,195.85592876234,TJ,CO2,73300.0,kg/TJ,14356239.578279521,kg +e478e419-efa9-3d8b-a389-a34ec8f8c7d3,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2014,naphtha combustion consumption by to the public,195.85592876234,TJ,CH4,3.0,kg/TJ,587.56778628702,kg +58e41a05-86ac-37ef-a684-a7a72cd18143,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2014,naphtha combustion consumption by to the public,195.85592876234,TJ,N2O,0.6,kg/TJ,117.51355725740399,kg +6db8a34c-63dd-39c7-858c-075f2a88bda0,SESCO,II.1.1,Tucuman,AR-T,annual,2014,naphtha combustion consumption by to the public,202.98530093225997,TJ,CO2,73300.0,kg/TJ,14878822.558334656,kg +46117473-569e-3a2f-9295-d7b657722b8f,SESCO,II.1.1,Tucuman,AR-T,annual,2014,naphtha combustion consumption by to the public,202.98530093225997,TJ,CH4,3.0,kg/TJ,608.9559027967799,kg +fecb11a6-0458-3756-a330-e7f6ca579d11,SESCO,II.1.1,Tucuman,AR-T,annual,2014,naphtha combustion consumption by to the public,202.98530093225997,TJ,N2O,0.6,kg/TJ,121.79118055935598,kg +513759c4-9b0b-358e-8a58-f036a8cb0d85,SESCO,II.1.1,Buenos Aires,AR-B,annual,2014,naphtha combustion consumption by to the public,316.50678881667994,TJ,CO2,73300.0,kg/TJ,23199947.62026264,kg +c84d84f6-5ba1-3511-ab0f-9e5887a33134,SESCO,II.1.1,Buenos Aires,AR-B,annual,2014,naphtha combustion consumption by to the public,316.50678881667994,TJ,CH4,3.0,kg/TJ,949.5203664500398,kg +06bdfcea-5892-3ac1-b5aa-d534661b4486,SESCO,II.1.1,Buenos Aires,AR-B,annual,2014,naphtha combustion consumption by to the public,316.50678881667994,TJ,N2O,0.6,kg/TJ,189.90407329000797,kg +d8c17f79-b5c8-349c-9892-377f64aefe2f,SESCO,II.1.1,Capital Federal,AR-C,annual,2014,naphtha combustion consumption by to the public,71.66556383448001,TJ,CO2,73300.0,kg/TJ,5253085.829067385,kg +cd065dd6-9ffb-381f-877e-22176bf5ce8d,SESCO,II.1.1,Capital Federal,AR-C,annual,2014,naphtha combustion consumption by to the public,71.66556383448001,TJ,CH4,3.0,kg/TJ,214.99669150344005,kg +61a0227f-cddc-3cf7-a7a8-f534bea0449a,SESCO,II.1.1,Capital Federal,AR-C,annual,2014,naphtha combustion consumption by to the public,71.66556383448001,TJ,N2O,0.6,kg/TJ,42.999338300688,kg +5c2708ab-8ba1-3016-8ca2-2de0b7c17594,SESCO,II.1.1,Catamarca,AR-K,annual,2014,naphtha combustion consumption by to the public,15.265942359359999,TJ,CO2,73300.0,kg/TJ,1118993.574941088,kg +1ceb571c-c9b6-3565-8b79-185b0930b2e3,SESCO,II.1.1,Catamarca,AR-K,annual,2014,naphtha combustion consumption by to the public,15.265942359359999,TJ,CH4,3.0,kg/TJ,45.79782707808,kg +8dd4b3d3-a4c1-34d0-8c6c-da6d8b0f9898,SESCO,II.1.1,Catamarca,AR-K,annual,2014,naphtha combustion consumption by to the public,15.265942359359999,TJ,N2O,0.6,kg/TJ,9.159565415616,kg +56226122-fcd4-308c-9aa4-38e9d9751693,SESCO,II.1.1,Chaco,AR-H,annual,2014,naphtha combustion consumption by to the public,28.117974952759997,TJ,CO2,73300.0,kg/TJ,2061047.5640373079,kg +3d9cc608-f8db-3b1b-a041-d7f7c079cfc3,SESCO,II.1.1,Chaco,AR-H,annual,2014,naphtha combustion consumption by to the public,28.117974952759997,TJ,CH4,3.0,kg/TJ,84.35392485828,kg +20d33bf4-a378-3cef-90cf-229574b440b3,SESCO,II.1.1,Chaco,AR-H,annual,2014,naphtha combustion consumption by to the public,28.117974952759997,TJ,N2O,0.6,kg/TJ,16.870784971655997,kg +8e2aef87-d7c0-3050-9a73-aa4535612649,SESCO,II.1.1,Corrientes,AR-W,annual,2014,naphtha combustion consumption by to the public,60.667417547659994,TJ,CO2,73300.0,kg/TJ,4446921.706243478,kg +e9a34547-fc96-3763-a8a0-dfd01655a811,SESCO,II.1.1,Corrientes,AR-W,annual,2014,naphtha combustion consumption by to the public,60.667417547659994,TJ,CH4,3.0,kg/TJ,182.00225264297998,kg +e68fc1f1-64e5-3a32-a6ad-f0431fd15434,SESCO,II.1.1,Corrientes,AR-W,annual,2014,naphtha combustion consumption by to the public,60.667417547659994,TJ,N2O,0.6,kg/TJ,36.400450528596,kg +bfa4c881-040d-3fce-890a-e44c03763362,SESCO,II.1.1,Córdoba,AR-X,annual,2014,naphtha combustion consumption by to the public,142.1529981487,TJ,CO2,73300.0,kg/TJ,10419814.76429971,kg +04ddf11b-ea12-3dee-8961-bea850dff391,SESCO,II.1.1,Córdoba,AR-X,annual,2014,naphtha combustion consumption by to the public,142.1529981487,TJ,CH4,3.0,kg/TJ,426.45899444609995,kg +c8049e13-a939-3655-b5c4-f54ef5b9dbea,SESCO,II.1.1,Córdoba,AR-X,annual,2014,naphtha combustion consumption by to the public,142.1529981487,TJ,N2O,0.6,kg/TJ,85.29179888921999,kg +7b313750-0dc8-3a08-8cce-c79b85fdd42d,SESCO,II.1.1,Entre Rios,AR-E,annual,2014,naphtha combustion consumption by to the public,90.28485357122,TJ,CO2,73300.0,kg/TJ,6617879.766770426,kg +24bfd968-73e2-371b-99b7-d49e45eae74a,SESCO,II.1.1,Entre Rios,AR-E,annual,2014,naphtha combustion consumption by to the public,90.28485357122,TJ,CH4,3.0,kg/TJ,270.85456071366,kg +14412548-7d83-32de-9f2d-0e262b9aa270,SESCO,II.1.1,Entre Rios,AR-E,annual,2014,naphtha combustion consumption by to the public,90.28485357122,TJ,N2O,0.6,kg/TJ,54.170912142732,kg +050a8e9a-ee83-3581-a10e-008f45845e27,SESCO,II.1.1,Jujuy,AR-Y,annual,2014,naphtha combustion consumption by to the public,2.1624916990600003,TJ,CO2,73300.0,kg/TJ,158510.641541098,kg +6d8f3d75-88d6-3b57-b792-38e89ba715f0,SESCO,II.1.1,Jujuy,AR-Y,annual,2014,naphtha combustion consumption by to the public,2.1624916990600003,TJ,CH4,3.0,kg/TJ,6.487475097180001,kg +68e31c9d-ac76-3279-8f55-9ef919c1e630,SESCO,II.1.1,Jujuy,AR-Y,annual,2014,naphtha combustion consumption by to the public,2.1624916990600003,TJ,N2O,0.6,kg/TJ,1.2974950194360002,kg +b01e4f8e-ac6e-355c-a28b-9026138bfff9,SESCO,II.1.1,La Pampa,AR-L,annual,2014,naphtha combustion consumption by to the public,2.8487963488599997,TJ,CO2,73300.0,kg/TJ,208816.77237143798,kg +f9f91722-6540-32e4-b179-dcb95831e954,SESCO,II.1.1,La Pampa,AR-L,annual,2014,naphtha combustion consumption by to the public,2.8487963488599997,TJ,CH4,3.0,kg/TJ,8.54638904658,kg +fa36d322-b8dc-31e8-a12e-db9bed71a116,SESCO,II.1.1,La Pampa,AR-L,annual,2014,naphtha combustion consumption by to the public,2.8487963488599997,TJ,N2O,0.6,kg/TJ,1.7092778093159997,kg +7a48488a-5b6a-3464-ad80-98951e2cec5e,SESCO,II.1.1,La Rioja,AR-F,annual,2014,naphtha combustion consumption by to the public,6.21692208368,TJ,CO2,73300.0,kg/TJ,455700.388733744,kg +a8c7baae-8a30-35e8-9f69-79ba993b93ac,SESCO,II.1.1,La Rioja,AR-F,annual,2014,naphtha combustion consumption by to the public,6.21692208368,TJ,CH4,3.0,kg/TJ,18.65076625104,kg +87d69f02-5bf8-35b7-922e-34e35f84e03c,SESCO,II.1.1,La Rioja,AR-F,annual,2014,naphtha combustion consumption by to the public,6.21692208368,TJ,N2O,0.6,kg/TJ,3.7301532502079997,kg +329e3e5c-c016-3c39-b29b-4d756228e4bc,SESCO,II.1.1,Mendoza,AR-M,annual,2014,naphtha combustion consumption by to the public,46.021400172439996,TJ,CO2,73300.0,kg/TJ,3373368.632639852,kg +70a21cce-d07d-3d01-b204-0adf40d37e01,SESCO,II.1.1,Mendoza,AR-M,annual,2014,naphtha combustion consumption by to the public,46.021400172439996,TJ,CH4,3.0,kg/TJ,138.06420051732,kg +6bf605e7-f52a-3544-9560-52c29135fb39,SESCO,II.1.1,Mendoza,AR-M,annual,2014,naphtha combustion consumption by to the public,46.021400172439996,TJ,N2O,0.6,kg/TJ,27.612840103464,kg +0b2350c2-9559-3328-96b9-93395f07a386,SESCO,II.1.1,Misiones,AR-N,annual,2014,naphtha combustion consumption by to the public,26.781050594759996,TJ,CO2,73300.0,kg/TJ,1963051.0085959078,kg +11d7f962-034d-33f4-a125-e9ac07fcd882,SESCO,II.1.1,Misiones,AR-N,annual,2014,naphtha combustion consumption by to the public,26.781050594759996,TJ,CH4,3.0,kg/TJ,80.34315178428,kg +37018745-b08e-3fb9-8c0f-c16b27e691b4,SESCO,II.1.1,Misiones,AR-N,annual,2014,naphtha combustion consumption by to the public,26.781050594759996,TJ,N2O,0.6,kg/TJ,16.068630356855998,kg +35ceb9e3-dd80-366b-9a02-9988659b957a,SESCO,II.1.1,San Juan,AR-J,annual,2014,naphtha combustion consumption by to the public,46.19645498621999,TJ,CO2,73300.0,kg/TJ,3386200.1504899254,kg +b3531751-aab7-3af1-8410-b2bfdb2a2fc8,SESCO,II.1.1,San Juan,AR-J,annual,2014,naphtha combustion consumption by to the public,46.19645498621999,TJ,CH4,3.0,kg/TJ,138.58936495865998,kg +b76aa660-d235-3d43-b1a9-de89d5758a36,SESCO,II.1.1,San Juan,AR-J,annual,2014,naphtha combustion consumption by to the public,46.19645498621999,TJ,N2O,0.6,kg/TJ,27.717872991731994,kg +20e16bdc-a53b-315e-b206-4e9a7a673bcb,SESCO,II.1.1,San Luis,AR-D,annual,2014,naphtha combustion consumption by to the public,37.39657675908,TJ,CO2,73300.0,kg/TJ,2741169.076440564,kg +cce0f8b6-98e9-35bb-956e-864c784ed159,SESCO,II.1.1,San Luis,AR-D,annual,2014,naphtha combustion consumption by to the public,37.39657675908,TJ,CH4,3.0,kg/TJ,112.18973027723999,kg +83e84b0b-685e-38ca-b4c0-749a3f6c9a56,SESCO,II.1.1,San Luis,AR-D,annual,2014,naphtha combustion consumption by to the public,37.39657675908,TJ,N2O,0.6,kg/TJ,22.437946055448,kg +22a5b83a-b0e0-3d7b-9825-fa9ba6358dfb,SESCO,II.1.1,Santa Fe,AR-S,annual,2014,naphtha combustion consumption by to the public,207.77881626501997,TJ,CO2,73300.0,kg/TJ,15230187.232225964,kg +387a91a9-287a-3eb9-bb11-1529fc0ca33c,SESCO,II.1.1,Santa Fe,AR-S,annual,2014,naphtha combustion consumption by to the public,207.77881626501997,TJ,CH4,3.0,kg/TJ,623.3364487950599,kg +6bf8fd05-d0a0-30b8-a0aa-db7df82c9a27,SESCO,II.1.1,Santa Fe,AR-S,annual,2014,naphtha combustion consumption by to the public,207.77881626501997,TJ,N2O,0.6,kg/TJ,124.66728975901198,kg +5252edc4-8046-3e1e-985b-ab9818c985e3,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2014,naphtha combustion consumption by to the public,24.608745536759994,TJ,CO2,73300.0,kg/TJ,1803821.0478445075,kg +e8031707-5c04-365a-a83d-cf3ce6095f58,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2014,naphtha combustion consumption by to the public,24.608745536759994,TJ,CH4,3.0,kg/TJ,73.82623661027998,kg +796a700e-2515-3274-abd0-e8cfc54d6942,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2014,naphtha combustion consumption by to the public,24.608745536759994,TJ,N2O,0.6,kg/TJ,14.765247322055995,kg +3440947f-1510-31d9-b7a5-4f14516488d0,SESCO,II.1.1,Tucuman,AR-T,annual,2014,naphtha combustion consumption by to the public,22.738514139879996,TJ,CO2,73300.0,kg/TJ,1666733.0864532038,kg +40822bb3-2ec1-3dab-92db-e071bc8f662b,SESCO,II.1.1,Tucuman,AR-T,annual,2014,naphtha combustion consumption by to the public,22.738514139879996,TJ,CH4,3.0,kg/TJ,68.21554241963999,kg +af880f17-a1d7-39aa-8839-6a3a9769fffd,SESCO,II.1.1,Tucuman,AR-T,annual,2014,naphtha combustion consumption by to the public,22.738514139879996,TJ,N2O,0.6,kg/TJ,13.643108483927998,kg +65746b1f-78a8-3662-a2f2-2c7a9123f877,SESCO,II.5.1,Buenos Aires,AR-B,annual,2014,naphtha combustion consumption by agriculture machines,6.0274451313999995,TJ,CO2,73300.0,kg/TJ,441811.72813162,kg +d61e6b59-f251-308d-a5e8-47582fb606fc,SESCO,II.5.1,Buenos Aires,AR-B,annual,2014,naphtha combustion consumption by agriculture machines,6.0274451313999995,TJ,CH4,3.0,kg/TJ,18.082335394199998,kg +28bc4ad8-9fba-3d66-a173-17ac3b0c009c,SESCO,II.5.1,Buenos Aires,AR-B,annual,2014,naphtha combustion consumption by agriculture machines,6.0274451313999995,TJ,N2O,0.6,kg/TJ,3.6164670788399995,kg +e492f95c-a774-3deb-99d9-0abf269e9470,SESCO,II.1.1,Buenos Aires,AR-B,annual,2014,naphtha combustion consumption by to the public,4390.6777048442,TJ,CO2,73300.0,kg/TJ,321836675.76507986,kg +9b33e015-c98f-3e4b-91b7-8338179b1006,SESCO,II.1.1,Buenos Aires,AR-B,annual,2014,naphtha combustion consumption by to the public,4390.6777048442,TJ,CH4,3.0,kg/TJ,13172.0331145326,kg +d3fc0de8-0491-3208-a593-83346bdedd84,SESCO,II.1.1,Buenos Aires,AR-B,annual,2014,naphtha combustion consumption by to the public,4390.6777048442,TJ,N2O,0.6,kg/TJ,2634.4066229065197,kg +c5f89e52-b6da-3cea-85b3-78d502a17180,SESCO,II.1.1,Capital Federal,AR-C,annual,2014,naphtha combustion consumption by to the public,502.7057513631999,TJ,CO2,73300.0,kg/TJ,36848331.574922554,kg +d4040dda-7cc9-3b16-9f46-e1b07e0ece3e,SESCO,II.1.1,Capital Federal,AR-C,annual,2014,naphtha combustion consumption by to the public,502.7057513631999,TJ,CH4,3.0,kg/TJ,1508.1172540895998,kg +d8c484b6-e35a-3e0b-9d91-1241a3a55b80,SESCO,II.1.1,Capital Federal,AR-C,annual,2014,naphtha combustion consumption by to the public,502.7057513631999,TJ,N2O,0.6,kg/TJ,301.62345081791995,kg +d92161de-fd17-3f51-a4fa-9ac04b5fbca9,SESCO,II.1.1,Chaco,AR-H,annual,2014,naphtha combustion consumption by to the public,3.1919738927999997,TJ,CO2,73300.0,kg/TJ,233971.68634223996,kg +98c0e852-67a4-3240-a5ee-137be8698ebc,SESCO,II.1.1,Chaco,AR-H,annual,2014,naphtha combustion consumption by to the public,3.1919738927999997,TJ,CH4,3.0,kg/TJ,9.575921678399999,kg +0e2a3600-9781-3f2f-8c33-8beb78330722,SESCO,II.1.1,Chaco,AR-H,annual,2014,naphtha combustion consumption by to the public,3.1919738927999997,TJ,N2O,0.6,kg/TJ,1.9151843356799998,kg +5e48312a-4877-33a2-be6d-f83248620eac,SESCO,II.1.1,Chubut,AR-U,annual,2014,naphtha combustion consumption by to the public,1420.4983966557998,TJ,CO2,73300.0,kg/TJ,104122532.47487012,kg +7c2347f1-27e3-35b5-84ea-1c0169d37ce4,SESCO,II.1.1,Chubut,AR-U,annual,2014,naphtha combustion consumption by to the public,1420.4983966557998,TJ,CH4,3.0,kg/TJ,4261.4951899674,kg +ddbcca09-ab61-3737-b511-4bb1948472fb,SESCO,II.1.1,Chubut,AR-U,annual,2014,naphtha combustion consumption by to the public,1420.4983966557998,TJ,N2O,0.6,kg/TJ,852.2990379934798,kg +b22fdd03-e3cd-3ef2-8b50-d29563494bf0,SESCO,II.1.1,Córdoba,AR-X,annual,2014,naphtha combustion consumption by to the public,488.4025206368,TJ,CO2,73300.0,kg/TJ,35799904.76267744,kg +00c43384-9d0a-3d8c-be2b-17ecb5b49c72,SESCO,II.1.1,Córdoba,AR-X,annual,2014,naphtha combustion consumption by to the public,488.4025206368,TJ,CH4,3.0,kg/TJ,1465.2075619103998,kg +e2a3f73b-b26a-32b0-9c5c-9647c5bf99e3,SESCO,II.1.1,Córdoba,AR-X,annual,2014,naphtha combustion consumption by to the public,488.4025206368,TJ,N2O,0.6,kg/TJ,293.04151238208,kg +2edad4df-44df-3404-8ee7-b7bd267ee4ec,SESCO,II.1.1,Entre Rios,AR-E,annual,2014,naphtha combustion consumption by to the public,101.2649115016,TJ,CO2,73300.0,kg/TJ,7422718.01306728,kg +c0a52da8-4e08-3f01-b0c5-130b87ebdc6a,SESCO,II.1.1,Entre Rios,AR-E,annual,2014,naphtha combustion consumption by to the public,101.2649115016,TJ,CH4,3.0,kg/TJ,303.7947345048,kg +c9ccaca6-9009-3a10-acaf-39462bb79a22,SESCO,II.1.1,Entre Rios,AR-E,annual,2014,naphtha combustion consumption by to the public,101.2649115016,TJ,N2O,0.6,kg/TJ,60.75894690096,kg +48844a14-a1fd-3e8a-ad66-361fc1d5cc37,SESCO,II.1.1,La Pampa,AR-L,annual,2014,naphtha combustion consumption by to the public,223.146892584,TJ,CO2,73300.0,kg/TJ,16356667.2264072,kg +13763762-5a5c-3029-97ce-665c6f530f21,SESCO,II.1.1,La Pampa,AR-L,annual,2014,naphtha combustion consumption by to the public,223.146892584,TJ,CH4,3.0,kg/TJ,669.440677752,kg +956c4318-97e6-3caf-91ad-d031fc8b2ad7,SESCO,II.1.1,La Pampa,AR-L,annual,2014,naphtha combustion consumption by to the public,223.146892584,TJ,N2O,0.6,kg/TJ,133.8881355504,kg +6b443796-7a07-3afb-a5c3-2f7080155781,SESCO,II.1.1,Mendoza,AR-M,annual,2014,naphtha combustion consumption by to the public,31.031114529799996,TJ,CO2,73300.0,kg/TJ,2274580.6950343396,kg +46a5fca6-b470-3934-bac0-8a229f1ff73d,SESCO,II.1.1,Mendoza,AR-M,annual,2014,naphtha combustion consumption by to the public,31.031114529799996,TJ,CH4,3.0,kg/TJ,93.09334358939999,kg +5814176e-daf2-3bd9-91ef-ec0c6aa41fdf,SESCO,II.1.1,Mendoza,AR-M,annual,2014,naphtha combustion consumption by to the public,31.031114529799996,TJ,N2O,0.6,kg/TJ,18.61866871788,kg +965a8cde-31bd-3fe4-a2a2-cbee24eb3169,SESCO,II.1.1,Neuquén,AR-Q,annual,2014,naphtha combustion consumption by to the public,550.2738415636,TJ,CO2,73300.0,kg/TJ,40335072.586611874,kg +a4c31646-8b5a-356e-9291-a105b0fed252,SESCO,II.1.1,Neuquén,AR-Q,annual,2014,naphtha combustion consumption by to the public,550.2738415636,TJ,CH4,3.0,kg/TJ,1650.8215246907998,kg +d9d32c93-6033-38d5-a241-c90c138d5fe0,SESCO,II.1.1,Neuquén,AR-Q,annual,2014,naphtha combustion consumption by to the public,550.2738415636,TJ,N2O,0.6,kg/TJ,330.16430493815994,kg +f942fe56-26db-3e43-af0f-e14ff3c08bdf,SESCO,II.1.1,Rio Negro,AR-R,annual,2014,naphtha combustion consumption by to the public,1103.3604257060001,TJ,CO2,73300.0,kg/TJ,80876319.20424981,kg +0204954a-82a2-30ae-ae27-678eefaca709,SESCO,II.1.1,Rio Negro,AR-R,annual,2014,naphtha combustion consumption by to the public,1103.3604257060001,TJ,CH4,3.0,kg/TJ,3310.0812771180003,kg +71ccc87e-72d1-3f4e-a36c-61297b9b4a46,SESCO,II.1.1,Rio Negro,AR-R,annual,2014,naphtha combustion consumption by to the public,1103.3604257060001,TJ,N2O,0.6,kg/TJ,662.0162554236,kg +58d6346a-6ca8-35a1-95e6-36d9195a8749,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2014,naphtha combustion consumption by to the public,897.4864949511999,TJ,CO2,73300.0,kg/TJ,65785760.07992295,kg +d9b166e8-9126-3905-9baa-d1647107b636,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2014,naphtha combustion consumption by to the public,897.4864949511999,TJ,CH4,3.0,kg/TJ,2692.4594848536,kg +bdb7a6ea-6216-3bfe-b80b-8b9f2b9b1b65,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2014,naphtha combustion consumption by to the public,897.4864949511999,TJ,N2O,0.6,kg/TJ,538.49189697072,kg +522fdff9-c8f8-33e8-af2a-3b9731b51c49,SESCO,II.1.1,Santa Fe,AR-S,annual,2014,naphtha combustion consumption by to the public,580.9394061086,TJ,CO2,73300.0,kg/TJ,42582858.46776038,kg +32d8d58b-8d01-38fd-870d-caf473749378,SESCO,II.1.1,Santa Fe,AR-S,annual,2014,naphtha combustion consumption by to the public,580.9394061086,TJ,CH4,3.0,kg/TJ,1742.8182183258,kg +a9c0d103-2fc8-3178-b5fd-3ed9b2fea5cc,SESCO,II.1.1,Santa Fe,AR-S,annual,2014,naphtha combustion consumption by to the public,580.9394061086,TJ,N2O,0.6,kg/TJ,348.56364366516,kg +a62355ac-03df-37e9-b886-694dac4cb703,SESCO,II.1.1,Buenos Aires,AR-B,annual,2014,naphtha combustion consumption by to the public,1160.1682993053996,TJ,CO2,73300.0,kg/TJ,85040336.33908579,kg +d9f189a0-9747-3e15-9df5-d1e4ab154b13,SESCO,II.1.1,Buenos Aires,AR-B,annual,2014,naphtha combustion consumption by to the public,1160.1682993053996,TJ,CH4,3.0,kg/TJ,3480.504897916199,kg +1bdf48b5-b194-36e8-be21-0be1e7eb6389,SESCO,II.1.1,Buenos Aires,AR-B,annual,2014,naphtha combustion consumption by to the public,1160.1682993053996,TJ,N2O,0.6,kg/TJ,696.1009795832398,kg +71edf619-98e3-35c9-b4c4-bdbf09f0930f,SESCO,II.1.1,Capital Federal,AR-C,annual,2014,naphtha combustion consumption by to the public,228.92334521979998,TJ,CO2,73300.0,kg/TJ,16780081.20461134,kg +633bf7b9-b6f3-3333-ac74-a534fb83c891,SESCO,II.1.1,Capital Federal,AR-C,annual,2014,naphtha combustion consumption by to the public,228.92334521979998,TJ,CH4,3.0,kg/TJ,686.7700356593999,kg +6a1d3623-bc9a-381c-b1e7-ffcdde9de610,SESCO,II.1.1,Capital Federal,AR-C,annual,2014,naphtha combustion consumption by to the public,228.92334521979998,TJ,N2O,0.6,kg/TJ,137.35400713188,kg +55c3548f-8177-36c4-8618-e41333b259bb,SESCO,II.1.1,Chubut,AR-U,annual,2014,naphtha combustion consumption by to the public,234.40703632499998,TJ,CO2,73300.0,kg/TJ,17182035.762622498,kg +9c4f893b-f182-310a-8890-d236c852da79,SESCO,II.1.1,Chubut,AR-U,annual,2014,naphtha combustion consumption by to the public,234.40703632499998,TJ,CH4,3.0,kg/TJ,703.2211089749999,kg +772cf80c-f4d8-3658-872d-74dde4331a76,SESCO,II.1.1,Chubut,AR-U,annual,2014,naphtha combustion consumption by to the public,234.40703632499998,TJ,N2O,0.6,kg/TJ,140.644221795,kg +2de3fe82-818e-3894-b7b7-41f08a3c69e1,SESCO,II.1.1,Córdoba,AR-X,annual,2014,naphtha combustion consumption by to the public,113.7316286876,TJ,CO2,73300.0,kg/TJ,8336528.382801079,kg +c3edc29b-a97a-34c7-ae69-b9061cd48c1e,SESCO,II.1.1,Córdoba,AR-X,annual,2014,naphtha combustion consumption by to the public,113.7316286876,TJ,CH4,3.0,kg/TJ,341.1948860628,kg +fa7ccf20-beef-3a95-8339-705b7a95de88,SESCO,II.1.1,Córdoba,AR-X,annual,2014,naphtha combustion consumption by to the public,113.7316286876,TJ,N2O,0.6,kg/TJ,68.23897721255999,kg +e889516b-cb3c-380a-b934-4fed42b49499,SESCO,II.1.1,Entre Rios,AR-E,annual,2014,naphtha combustion consumption by to the public,25.458715451399996,TJ,CO2,73300.0,kg/TJ,1866123.8425876198,kg +5553b1cc-9470-3a3f-9a5b-6ed1037674bb,SESCO,II.1.1,Entre Rios,AR-E,annual,2014,naphtha combustion consumption by to the public,25.458715451399996,TJ,CH4,3.0,kg/TJ,76.37614635419999,kg +571773f0-c16d-338a-a149-72f9942dbc34,SESCO,II.1.1,Entre Rios,AR-E,annual,2014,naphtha combustion consumption by to the public,25.458715451399996,TJ,N2O,0.6,kg/TJ,15.275229270839997,kg +21e446ab-2955-373b-9f48-956b7f3c9247,SESCO,II.1.1,La Pampa,AR-L,annual,2014,naphtha combustion consumption by to the public,52.225857745599995,TJ,CO2,73300.0,kg/TJ,3828155.3727524797,kg +408c8ccc-80ab-3cfd-b225-6b879c3bef8f,SESCO,II.1.1,La Pampa,AR-L,annual,2014,naphtha combustion consumption by to the public,52.225857745599995,TJ,CH4,3.0,kg/TJ,156.6775732368,kg +9905cba2-ce95-3410-92ca-5d8c07b6689d,SESCO,II.1.1,La Pampa,AR-L,annual,2014,naphtha combustion consumption by to the public,52.225857745599995,TJ,N2O,0.6,kg/TJ,31.335514647359997,kg +409c9558-c322-3197-8fb8-a46ff31b063e,SESCO,II.1.1,Mendoza,AR-M,annual,2014,naphtha combustion consumption by to the public,3.1070172518000003,TJ,CO2,73300.0,kg/TJ,227744.36455694,kg +0f861c72-f7e0-33ec-aae3-133cb382f4a8,SESCO,II.1.1,Mendoza,AR-M,annual,2014,naphtha combustion consumption by to the public,3.1070172518000003,TJ,CH4,3.0,kg/TJ,9.321051755400001,kg +91169aab-4a4d-3de1-a498-6e04f71f3f10,SESCO,II.1.1,Mendoza,AR-M,annual,2014,naphtha combustion consumption by to the public,3.1070172518000003,TJ,N2O,0.6,kg/TJ,1.86421035108,kg +6572658d-ab92-38ea-97d9-afd5181ef649,SESCO,II.1.1,Neuquén,AR-Q,annual,2014,naphtha combustion consumption by to the public,160.09721201319996,TJ,CO2,73300.0,kg/TJ,11735125.640567558,kg +cd24a7d8-7db1-3238-9274-766cc80cf091,SESCO,II.1.1,Neuquén,AR-Q,annual,2014,naphtha combustion consumption by to the public,160.09721201319996,TJ,CH4,3.0,kg/TJ,480.2916360395999,kg +e7c4f47a-00ba-39e3-b438-2714c3d50c0e,SESCO,II.1.1,Neuquén,AR-Q,annual,2014,naphtha combustion consumption by to the public,160.09721201319996,TJ,N2O,0.6,kg/TJ,96.05832720791997,kg +f14591bd-0eda-34e1-8b53-a632fc4cabc0,SESCO,II.1.1,Rio Negro,AR-R,annual,2014,naphtha combustion consumption by to the public,190.761862368,TJ,CO2,73300.0,kg/TJ,13982844.5115744,kg +1adf8559-dbcf-3635-8eb6-a2825a3edd28,SESCO,II.1.1,Rio Negro,AR-R,annual,2014,naphtha combustion consumption by to the public,190.761862368,TJ,CH4,3.0,kg/TJ,572.285587104,kg +81a63811-3314-3355-a197-09eb71445a92,SESCO,II.1.1,Rio Negro,AR-R,annual,2014,naphtha combustion consumption by to the public,190.761862368,TJ,N2O,0.6,kg/TJ,114.4571174208,kg +a8180225-b723-3785-ba6f-853ef8db97d7,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2014,naphtha combustion consumption by to the public,167.53052405319997,TJ,CO2,73300.0,kg/TJ,12279987.413099557,kg +2c7e28fe-f59e-357c-b35d-b3c6df92aaa9,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2014,naphtha combustion consumption by to the public,167.53052405319997,TJ,CH4,3.0,kg/TJ,502.5915721595999,kg +3853514e-c242-3a38-8be7-903f45cde725,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2014,naphtha combustion consumption by to the public,167.53052405319997,TJ,N2O,0.6,kg/TJ,100.51831443191998,kg +4f597e50-e092-3a2a-ace4-72ce6782edd4,SESCO,II.1.1,Santa Fe,AR-S,annual,2014,naphtha combustion consumption by to the public,186.0194849436,TJ,CO2,73300.0,kg/TJ,13635228.246365879,kg +66a84a74-980c-3cf7-8d9d-78482900bdab,SESCO,II.1.1,Santa Fe,AR-S,annual,2014,naphtha combustion consumption by to the public,186.0194849436,TJ,CH4,3.0,kg/TJ,558.0584548308,kg +7851e558-aeab-3df9-ae8e-bd20369ef818,SESCO,II.1.1,Santa Fe,AR-S,annual,2014,naphtha combustion consumption by to the public,186.0194849436,TJ,N2O,0.6,kg/TJ,111.61169096616,kg +b32349ee-b364-3820-857e-6087148bc246,SESCO,II.1.1,Buenos Aires,AR-B,annual,2014,naphtha combustion consumption by to the public,0.050438079999999996,TJ,CO2,73300.0,kg/TJ,3697.1112639999997,kg +215b73ae-6d1d-33f7-9822-fdfc20574a48,SESCO,II.1.1,Buenos Aires,AR-B,annual,2014,naphtha combustion consumption by to the public,0.050438079999999996,TJ,CH4,3.0,kg/TJ,0.15131424,kg +2a685ef8-af3a-3b8b-914e-5fd4d7772b2b,SESCO,II.1.1,Buenos Aires,AR-B,annual,2014,naphtha combustion consumption by to the public,0.050438079999999996,TJ,N2O,0.6,kg/TJ,0.030262847999999995,kg +46fd4c5f-5b05-33de-820d-21a5880fba9b,SESCO,II.1.1,Buenos Aires,AR-B,annual,2014,naphtha combustion consumption by to the public,721.3906391999999,TJ,CO2,73300.0,kg/TJ,52877933.85335999,kg +394d1fde-264d-3b66-9271-29c7519191c8,SESCO,II.1.1,Buenos Aires,AR-B,annual,2014,naphtha combustion consumption by to the public,721.3906391999999,TJ,CH4,3.0,kg/TJ,2164.1719175999997,kg +8fbff8ac-d652-36ed-ac37-136c0a569e7d,SESCO,II.1.1,Buenos Aires,AR-B,annual,2014,naphtha combustion consumption by to the public,721.3906391999999,TJ,N2O,0.6,kg/TJ,432.8343835199999,kg +3c0a689e-3447-367e-93df-ca9fac20855c,SESCO,II.1.1,Capital Federal,AR-C,annual,2014,naphtha combustion consumption by to the public,19.103422799999997,TJ,CO2,73300.0,kg/TJ,1400280.8912399998,kg +9058bcc4-7538-3749-b49d-2dce4d0db894,SESCO,II.1.1,Capital Federal,AR-C,annual,2014,naphtha combustion consumption by to the public,19.103422799999997,TJ,CH4,3.0,kg/TJ,57.31026839999999,kg +f5e40fa7-ea2f-3f01-8447-5051607b9fa4,SESCO,II.1.1,Capital Federal,AR-C,annual,2014,naphtha combustion consumption by to the public,19.103422799999997,TJ,N2O,0.6,kg/TJ,11.462053679999999,kg +a325db8b-1105-3666-9156-38d34d4eb3d9,SESCO,II.1.1,Córdoba,AR-X,annual,2014,naphtha combustion consumption by to the public,130.60310339999998,TJ,CO2,73300.0,kg/TJ,9573207.47922,kg +a847fda3-3e22-32a5-8060-55540d3f6ffc,SESCO,II.1.1,Córdoba,AR-X,annual,2014,naphtha combustion consumption by to the public,130.60310339999998,TJ,CH4,3.0,kg/TJ,391.8093101999999,kg +5bb22c0e-9c8a-3c67-a9fe-53e72fb91fea,SESCO,II.1.1,Córdoba,AR-X,annual,2014,naphtha combustion consumption by to the public,130.60310339999998,TJ,N2O,0.6,kg/TJ,78.36186203999999,kg +bb68b0f0-f917-3255-9f04-f2b4b499e3ca,SESCO,II.1.1,Entre Rios,AR-E,annual,2014,naphtha combustion consumption by to the public,98.0074942,TJ,CO2,73300.0,kg/TJ,7183949.32486,kg +63886abe-869b-3727-8a3a-8c0c4060e3ee,SESCO,II.1.1,Entre Rios,AR-E,annual,2014,naphtha combustion consumption by to the public,98.0074942,TJ,CH4,3.0,kg/TJ,294.0224826,kg +335b8a20-42f8-343a-9c9a-86be77c1f25b,SESCO,II.1.1,Entre Rios,AR-E,annual,2014,naphtha combustion consumption by to the public,98.0074942,TJ,N2O,0.6,kg/TJ,58.804496519999994,kg +92dcbd5c-e01f-398d-a582-cdb36c25a2f6,SESCO,II.1.1,Santa Fe,AR-S,annual,2014,naphtha combustion consumption by to the public,78.05292879999999,TJ,CO2,73300.0,kg/TJ,5721279.681039999,kg +b56dd672-f716-3e6a-923e-459f7a6865a0,SESCO,II.1.1,Santa Fe,AR-S,annual,2014,naphtha combustion consumption by to the public,78.05292879999999,TJ,CH4,3.0,kg/TJ,234.15878639999997,kg +8abb4e02-c509-3a58-9642-4f237bec8707,SESCO,II.1.1,Santa Fe,AR-S,annual,2014,naphtha combustion consumption by to the public,78.05292879999999,TJ,N2O,0.6,kg/TJ,46.83175727999999,kg +251c72cf-547e-3333-a3fa-ebd2d1f99fe2,SESCO,II.1.1,Buenos Aires,AR-B,annual,2014,naphtha combustion consumption by to the public,72.04134014,TJ,CO2,73300.0,kg/TJ,5280630.232262,kg +9a35c045-575a-3339-9f9a-069da04bf045,SESCO,II.1.1,Buenos Aires,AR-B,annual,2014,naphtha combustion consumption by to the public,72.04134014,TJ,CH4,3.0,kg/TJ,216.12402042000002,kg +915f5c50-6fc0-316c-98c2-f632c69446c1,SESCO,II.1.1,Buenos Aires,AR-B,annual,2014,naphtha combustion consumption by to the public,72.04134014,TJ,N2O,0.6,kg/TJ,43.224804084,kg +1e079b33-a758-3c75-99c7-4448d5a5d98a,SESCO,II.1.1,Capital Federal,AR-C,annual,2014,naphtha combustion consumption by to the public,1.1348567999999999,TJ,CO2,73300.0,kg/TJ,83185.00343999999,kg +d44529b9-9672-3cfb-acc1-0fb477cf9e81,SESCO,II.1.1,Capital Federal,AR-C,annual,2014,naphtha combustion consumption by to the public,1.1348567999999999,TJ,CH4,3.0,kg/TJ,3.4045704,kg +c45eb760-eab9-3ac8-8d6c-5795b6fc6a8a,SESCO,II.1.1,Capital Federal,AR-C,annual,2014,naphtha combustion consumption by to the public,1.1348567999999999,TJ,N2O,0.6,kg/TJ,0.6809140799999999,kg +29264966-cbb0-3a7b-a648-c8b1f34da009,SESCO,II.1.1,Córdoba,AR-X,annual,2014,naphtha combustion consumption by to the public,5.516665,TJ,CO2,73300.0,kg/TJ,404371.54449999996,kg +3bb1f837-a4fd-3666-a58b-d45fe7923c79,SESCO,II.1.1,Córdoba,AR-X,annual,2014,naphtha combustion consumption by to the public,5.516665,TJ,CH4,3.0,kg/TJ,16.549995,kg +b3801366-f25c-3182-9a85-c59be16e7d82,SESCO,II.1.1,Córdoba,AR-X,annual,2014,naphtha combustion consumption by to the public,5.516665,TJ,N2O,0.6,kg/TJ,3.309999,kg +bf672f0d-7ca2-3d4e-9749-f96ea4e81c60,SESCO,II.1.1,Entre Rios,AR-E,annual,2014,naphtha combustion consumption by to the public,7.943997599999999,TJ,CO2,73300.0,kg/TJ,582295.02408,kg +bbe078c9-d25e-3457-978c-bd921b8c7079,SESCO,II.1.1,Entre Rios,AR-E,annual,2014,naphtha combustion consumption by to the public,7.943997599999999,TJ,CH4,3.0,kg/TJ,23.8319928,kg +ad3774cf-7734-30a8-ac65-7533f59d3ff3,SESCO,II.1.1,Entre Rios,AR-E,annual,2014,naphtha combustion consumption by to the public,7.943997599999999,TJ,N2O,0.6,kg/TJ,4.76639856,kg +ff1fcd76-d5bc-3333-9045-d345f44e3dbf,SESCO,II.1.1,Santa Fe,AR-S,annual,2014,naphtha combustion consumption by to the public,9.299520999999999,TJ,CO2,73300.0,kg/TJ,681654.8892999999,kg +cf9a2d9f-79ca-3c52-8532-1246fc1eba51,SESCO,II.1.1,Santa Fe,AR-S,annual,2014,naphtha combustion consumption by to the public,9.299520999999999,TJ,CH4,3.0,kg/TJ,27.898562999999996,kg +022cb9f0-cfd0-3f19-8ad7-db7aea36ecaa,SESCO,II.1.1,Santa Fe,AR-S,annual,2014,naphtha combustion consumption by to the public,9.299520999999999,TJ,N2O,0.6,kg/TJ,5.579712599999999,kg +9597c6f4-dd5f-3f08-a1a6-9e433910f767,SESCO,II.1.1,Catamarca,AR-K,annual,2014,naphtha combustion consumption by to the public,0.0315238,TJ,CO2,73300.0,kg/TJ,2310.69454,kg +4c7a9be0-2a4e-3d91-a0de-39e5bb8167f3,SESCO,II.1.1,Catamarca,AR-K,annual,2014,naphtha combustion consumption by to the public,0.0315238,TJ,CH4,3.0,kg/TJ,0.0945714,kg +d47c48cd-db16-3d05-819f-4f6555bd1b59,SESCO,II.1.1,Catamarca,AR-K,annual,2014,naphtha combustion consumption by to the public,0.0315238,TJ,N2O,0.6,kg/TJ,0.01891428,kg +c8dc158c-72b2-3042-96e3-760d22b8a8a1,SESCO,II.1.1,Salta,AR-A,annual,2014,naphtha combustion consumption by to the public,0.5957998199999999,TJ,CO2,73300.0,kg/TJ,43672.12680599999,kg +4f9ab08d-962d-38bd-97ee-7d376eb01b5b,SESCO,II.1.1,Salta,AR-A,annual,2014,naphtha combustion consumption by to the public,0.5957998199999999,TJ,CH4,3.0,kg/TJ,1.7873994599999996,kg +2406bf17-2e6f-39a9-a930-cd1c011d66ef,SESCO,II.1.1,Salta,AR-A,annual,2014,naphtha combustion consumption by to the public,0.5957998199999999,TJ,N2O,0.6,kg/TJ,0.3574798919999999,kg +d07f6202-fcea-3cbc-be27-8c31fb5412c3,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2014,naphtha combustion consumption by to the public,0.027740943999999997,TJ,CO2,73300.0,kg/TJ,2033.4111951999998,kg +972d1777-c030-3be1-af1a-33e070ae442c,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2014,naphtha combustion consumption by to the public,0.027740943999999997,TJ,CH4,3.0,kg/TJ,0.083222832,kg +616ce68d-11ac-3c59-9f92-7932f4ec485f,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2014,naphtha combustion consumption by to the public,0.027740943999999997,TJ,N2O,0.6,kg/TJ,0.016644566399999998,kg +19f7e14d-acd7-3195-9b2a-6928c18ddfd6,SESCO,II.1.1,Tucuman,AR-T,annual,2014,naphtha combustion consumption by to the public,0.030262847999999995,TJ,CO2,73300.0,kg/TJ,2218.2667583999996,kg +ebe16401-4439-3985-bcb6-24ad2668e3fb,SESCO,II.1.1,Tucuman,AR-T,annual,2014,naphtha combustion consumption by to the public,0.030262847999999995,TJ,CH4,3.0,kg/TJ,0.09078854399999998,kg +5724ec92-3daf-36c4-81af-f93c907d7898,SESCO,II.1.1,Tucuman,AR-T,annual,2014,naphtha combustion consumption by to the public,0.030262847999999995,TJ,N2O,0.6,kg/TJ,0.018157708799999995,kg +7788073d-580a-3758-8762-a09736253e31,SESCO,II.1.1,Catamarca,AR-K,annual,2014,naphtha combustion consumption by to the public,242.852104726,TJ,CO2,73300.0,kg/TJ,17801059.2764158,kg +e0f6b094-9aed-3bae-affd-1d4a975aebd9,SESCO,II.1.1,Catamarca,AR-K,annual,2014,naphtha combustion consumption by to the public,242.852104726,TJ,CH4,3.0,kg/TJ,728.556314178,kg +cf1bb135-9082-3682-97a6-4e05b47a821c,SESCO,II.1.1,Catamarca,AR-K,annual,2014,naphtha combustion consumption by to the public,242.852104726,TJ,N2O,0.6,kg/TJ,145.7112628356,kg +9cc28e05-7df0-37c2-b1bb-ef9c98bb86ba,SESCO,II.1.1,Chaco,AR-H,annual,2014,naphtha combustion consumption by to the public,106.29100312599999,TJ,CO2,73300.0,kg/TJ,7791130.529135799,kg +76b7ad71-5965-3d56-8d3e-f585dd95be27,SESCO,II.1.1,Chaco,AR-H,annual,2014,naphtha combustion consumption by to the public,106.29100312599999,TJ,CH4,3.0,kg/TJ,318.873009378,kg +e944a364-f239-302b-962e-8b5220653254,SESCO,II.1.1,Chaco,AR-H,annual,2014,naphtha combustion consumption by to the public,106.29100312599999,TJ,N2O,0.6,kg/TJ,63.77460187559999,kg +118d4f34-0eb9-3175-ab65-fa3865e2ad7e,SESCO,II.1.1,Córdoba,AR-X,annual,2014,naphtha combustion consumption by to the public,35.21366078999999,TJ,CO2,73300.0,kg/TJ,2581161.335906999,kg +5a532dee-8f61-3ff5-85e9-ac02acb48838,SESCO,II.1.1,Córdoba,AR-X,annual,2014,naphtha combustion consumption by to the public,35.21366078999999,TJ,CH4,3.0,kg/TJ,105.64098236999997,kg +f0f985a4-9771-3d48-b676-f28112a7891c,SESCO,II.1.1,Córdoba,AR-X,annual,2014,naphtha combustion consumption by to the public,35.21366078999999,TJ,N2O,0.6,kg/TJ,21.128196473999996,kg +1784ffbf-2f45-3e93-9a4c-517dcf70a077,SESCO,II.1.1,Jujuy,AR-Y,annual,2014,naphtha combustion consumption by to the public,552.8703939219998,TJ,CO2,73300.0,kg/TJ,40525399.87448259,kg +2d65ad64-ee3d-3f70-aaad-3a82bd75ea27,SESCO,II.1.1,Jujuy,AR-Y,annual,2014,naphtha combustion consumption by to the public,552.8703939219998,TJ,CH4,3.0,kg/TJ,1658.6111817659994,kg +b6ba3afc-1664-3987-b9d8-7049719b1bf6,SESCO,II.1.1,Jujuy,AR-Y,annual,2014,naphtha combustion consumption by to the public,552.8703939219998,TJ,N2O,0.6,kg/TJ,331.7222363531999,kg +4b236c1a-57cb-3519-a825-baaf6007460a,SESCO,II.1.1,La Rioja,AR-F,annual,2014,naphtha combustion consumption by to the public,276.107822298,TJ,CO2,73300.0,kg/TJ,20238703.374443397,kg +02286317-10f2-3f72-aa76-33fa142c0846,SESCO,II.1.1,La Rioja,AR-F,annual,2014,naphtha combustion consumption by to the public,276.107822298,TJ,CH4,3.0,kg/TJ,828.3234668939999,kg +bf935dad-a06b-39cd-bdf1-3bc4f7ea8270,SESCO,II.1.1,La Rioja,AR-F,annual,2014,naphtha combustion consumption by to the public,276.107822298,TJ,N2O,0.6,kg/TJ,165.66469337879997,kg +b6c89252-b273-3f37-813f-8e500af978c5,SESCO,II.1.1,Salta,AR-A,annual,2014,naphtha combustion consumption by to the public,1048.6603279459998,TJ,CO2,73300.0,kg/TJ,76866802.03844179,kg +be733552-ab07-36a3-b3df-1e2f87f84905,SESCO,II.1.1,Salta,AR-A,annual,2014,naphtha combustion consumption by to the public,1048.6603279459998,TJ,CH4,3.0,kg/TJ,3145.9809838379997,kg +220243a4-c4aa-3753-8606-913fca7b1c98,SESCO,II.1.1,Salta,AR-A,annual,2014,naphtha combustion consumption by to the public,1048.6603279459998,TJ,N2O,0.6,kg/TJ,629.1961967675999,kg +52ab3989-6a99-3eff-892b-a6a0ccd7f3df,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2014,naphtha combustion consumption by to the public,311.03335555599995,TJ,CO2,73300.0,kg/TJ,22798744.962254796,kg +4573e38c-972e-3477-a5c7-c960aab9982d,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2014,naphtha combustion consumption by to the public,311.03335555599995,TJ,CH4,3.0,kg/TJ,933.1000666679998,kg +a1a616d0-f199-32a7-b448-5efc0f2eb688,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2014,naphtha combustion consumption by to the public,311.03335555599995,TJ,N2O,0.6,kg/TJ,186.62001333359996,kg +aff756e9-c146-3491-98ce-8c88b0a2346b,SESCO,II.1.1,Tucuman,AR-T,annual,2014,naphtha combustion consumption by to the public,1666.0520595179996,TJ,CO2,73300.0,kg/TJ,122121615.96266937,kg +c207b528-b928-32e6-afd4-0fc2e51e1af3,SESCO,II.1.1,Tucuman,AR-T,annual,2014,naphtha combustion consumption by to the public,1666.0520595179996,TJ,CH4,3.0,kg/TJ,4998.156178553999,kg +026f75df-ca4d-3ff1-a924-8a553afe6713,SESCO,II.1.1,Tucuman,AR-T,annual,2014,naphtha combustion consumption by to the public,1666.0520595179996,TJ,N2O,0.6,kg/TJ,999.6312357107997,kg +b058670d-9adc-313d-8606-76562ebfb7bc,SESCO,II.1.1,Catamarca,AR-K,annual,2014,naphtha combustion consumption by to the public,17.770596535999996,TJ,CO2,73300.0,kg/TJ,1302584.7260887998,kg +d5a23879-cb45-374e-9c8e-44b9aa8ebbfa,SESCO,II.1.1,Catamarca,AR-K,annual,2014,naphtha combustion consumption by to the public,17.770596535999996,TJ,CH4,3.0,kg/TJ,53.311789607999984,kg +cbbe578d-18c8-3995-89b4-d3261e4341e7,SESCO,II.1.1,Catamarca,AR-K,annual,2014,naphtha combustion consumption by to the public,17.770596535999996,TJ,N2O,0.6,kg/TJ,10.662357921599996,kg +da0a2a18-fad5-3c7b-9570-7e5640a3baca,SESCO,II.1.1,Chaco,AR-H,annual,2014,naphtha combustion consumption by to the public,1.250549146,TJ,CO2,73300.0,kg/TJ,91665.2524018,kg +22f991e4-b9c9-3c12-a408-e929194ee1f2,SESCO,II.1.1,Chaco,AR-H,annual,2014,naphtha combustion consumption by to the public,1.250549146,TJ,CH4,3.0,kg/TJ,3.751647438,kg +3ec802e6-9eca-3be5-a71d-edc6c98ab8d9,SESCO,II.1.1,Chaco,AR-H,annual,2014,naphtha combustion consumption by to the public,1.250549146,TJ,N2O,0.6,kg/TJ,0.7503294876,kg +becd1fb5-ac3d-3107-8dcb-80cf95cba713,SESCO,II.1.1,Córdoba,AR-X,annual,2014,naphtha combustion consumption by to the public,4.0315787819999995,TJ,CO2,73300.0,kg/TJ,295514.72472059994,kg +beda55e6-a0da-32fa-9448-8920b0030261,SESCO,II.1.1,Córdoba,AR-X,annual,2014,naphtha combustion consumption by to the public,4.0315787819999995,TJ,CH4,3.0,kg/TJ,12.094736345999998,kg +dedc329f-3a28-3363-9388-78034918a78d,SESCO,II.1.1,Córdoba,AR-X,annual,2014,naphtha combustion consumption by to the public,4.0315787819999995,TJ,N2O,0.6,kg/TJ,2.4189472692,kg +1231d1d7-7ab0-31f3-9d2c-850dbc41bffb,SESCO,II.1.1,Jujuy,AR-Y,annual,2014,naphtha combustion consumption by to the public,29.070617884,TJ,CO2,73300.0,kg/TJ,2130876.2908972,kg +ff980fe6-0688-3715-bcda-ed6986bd97a5,SESCO,II.1.1,Jujuy,AR-Y,annual,2014,naphtha combustion consumption by to the public,29.070617884,TJ,CH4,3.0,kg/TJ,87.211853652,kg +c72b8aa2-11a0-3c2b-a680-ea6eb9428e60,SESCO,II.1.1,Jujuy,AR-Y,annual,2014,naphtha combustion consumption by to the public,29.070617884,TJ,N2O,0.6,kg/TJ,17.4423707304,kg +6dd27228-0c16-3cc5-94e0-7d24f9c80b0a,SESCO,II.1.1,La Rioja,AR-F,annual,2014,naphtha combustion consumption by to the public,7.166935929999999,TJ,CO2,73300.0,kg/TJ,525336.4036689999,kg +5b205abd-053f-32f7-91b2-a753921b035d,SESCO,II.1.1,La Rioja,AR-F,annual,2014,naphtha combustion consumption by to the public,7.166935929999999,TJ,CH4,3.0,kg/TJ,21.500807789999996,kg +75e9e378-31cf-3b02-a36b-f28cfe6415c0,SESCO,II.1.1,La Rioja,AR-F,annual,2014,naphtha combustion consumption by to the public,7.166935929999999,TJ,N2O,0.6,kg/TJ,4.300161557999999,kg +53c28d1c-80ad-36be-83c5-a1bba89c101e,SESCO,II.1.1,Salta,AR-A,annual,2014,naphtha combustion consumption by to the public,55.629104145999996,TJ,CO2,73300.0,kg/TJ,4077613.3339017997,kg +475baf97-51a3-3cb8-a6cc-8c5336cbe518,SESCO,II.1.1,Salta,AR-A,annual,2014,naphtha combustion consumption by to the public,55.629104145999996,TJ,CH4,3.0,kg/TJ,166.88731243799998,kg +5dbf4057-a4d6-3137-87c8-c5e32388f656,SESCO,II.1.1,Salta,AR-A,annual,2014,naphtha combustion consumption by to the public,55.629104145999996,TJ,N2O,0.6,kg/TJ,33.3774624876,kg +a7e4eda4-a0f3-32d4-a5f5-6fcc903de75b,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2014,naphtha combustion consumption by to the public,30.160395649999998,TJ,CO2,73300.0,kg/TJ,2210757.0011449996,kg +4b23d87a-47a8-310b-b6ec-ea5a73430e11,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2014,naphtha combustion consumption by to the public,30.160395649999998,TJ,CH4,3.0,kg/TJ,90.48118695,kg +8f265a39-e5fb-300f-a8c0-110b6c6ff52a,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2014,naphtha combustion consumption by to the public,30.160395649999998,TJ,N2O,0.6,kg/TJ,18.09623739,kg +cd6967c7-90df-37fb-80e5-e1b3d95fea64,SESCO,II.1.1,Tucuman,AR-T,annual,2014,naphtha combustion consumption by to the public,97.91702089399999,TJ,CO2,73300.0,kg/TJ,7177317.631530199,kg +caa2fe29-13a4-3cb2-8d67-772b12e0781f,SESCO,II.1.1,Tucuman,AR-T,annual,2014,naphtha combustion consumption by to the public,97.91702089399999,TJ,CH4,3.0,kg/TJ,293.751062682,kg +99bcb879-ee69-3e5d-83d2-1c81a54fa109,SESCO,II.1.1,Tucuman,AR-T,annual,2014,naphtha combustion consumption by to the public,97.91702089399999,TJ,N2O,0.6,kg/TJ,58.75021253639999,kg +be3e224d-bf6f-3227-ad49-978d358e0755,SESCO,II.5.1,Santa Fe,AR-S,annual,2014,naphtha combustion consumption by agriculture machines,49.870651599999995,TJ,CO2,73300.0,kg/TJ,3655518.7622799994,kg +8286a2ba-94c2-3d5d-a6f8-c28828a06091,SESCO,II.5.1,Santa Fe,AR-S,annual,2014,naphtha combustion consumption by agriculture machines,49.870651599999995,TJ,CH4,3.0,kg/TJ,149.61195479999998,kg +47b5b30f-a318-3728-b7af-f62ec79bef1e,SESCO,II.5.1,Santa Fe,AR-S,annual,2014,naphtha combustion consumption by agriculture machines,49.870651599999995,TJ,N2O,0.6,kg/TJ,29.922390959999994,kg +2b1683ba-04eb-38db-80f9-63ebc0093983,SESCO,II.5.1,Santa Fe,AR-S,annual,2014,naphtha combustion consumption by agriculture machines,4.760093799999999,TJ,CO2,73300.0,kg/TJ,348914.8755399999,kg +f7e3ed0b-65ca-3dd4-a05a-4348673f6e13,SESCO,II.5.1,Santa Fe,AR-S,annual,2014,naphtha combustion consumption by agriculture machines,4.760093799999999,TJ,CH4,3.0,kg/TJ,14.280281399999996,kg +dc6940af-57fc-3090-b91e-9f7b94b51e77,SESCO,II.5.1,Santa Fe,AR-S,annual,2014,naphtha combustion consumption by agriculture machines,4.760093799999999,TJ,N2O,0.6,kg/TJ,2.8560562799999993,kg +f976b4ea-f279-3826-9a84-ede1c16bd929,SESCO,II.1.1,Buenos Aires,AR-B,annual,2014,naphtha combustion consumption by to the public,89.02321119999999,TJ,CO2,73300.0,kg/TJ,6525401.38096,kg +a84009c3-b6c6-33b2-abef-9968614138b4,SESCO,II.1.1,Buenos Aires,AR-B,annual,2014,naphtha combustion consumption by to the public,89.02321119999999,TJ,CH4,3.0,kg/TJ,267.0696336,kg +fe22891b-cd0b-37ab-b9be-9137eeb26237,SESCO,II.1.1,Buenos Aires,AR-B,annual,2014,naphtha combustion consumption by to the public,89.02321119999999,TJ,N2O,0.6,kg/TJ,53.41392671999999,kg +afc5d050-de15-3b2b-9c51-b60ee71a5f3b,SESCO,II.1.1,Entre Rios,AR-E,annual,2014,naphtha combustion consumption by to the public,19.450184599999996,TJ,CO2,73300.0,kg/TJ,1425698.5311799997,kg +b75b553e-5e8b-37cd-9775-c781425acd08,SESCO,II.1.1,Entre Rios,AR-E,annual,2014,naphtha combustion consumption by to the public,19.450184599999996,TJ,CH4,3.0,kg/TJ,58.350553799999986,kg +68016e55-e25e-31d9-9d54-1f9a8d818fca,SESCO,II.1.1,Entre Rios,AR-E,annual,2014,naphtha combustion consumption by to the public,19.450184599999996,TJ,N2O,0.6,kg/TJ,11.670110759999998,kg +d336667d-1de4-39f0-b1f1-f36d00c57267,SESCO,II.1.1,Misiones,AR-N,annual,2014,naphtha combustion consumption by to the public,0.9457139999999999,TJ,CO2,73300.0,kg/TJ,69320.83619999999,kg +0d6f78dd-9edf-3b65-b40f-61e7ea177bef,SESCO,II.1.1,Misiones,AR-N,annual,2014,naphtha combustion consumption by to the public,0.9457139999999999,TJ,CH4,3.0,kg/TJ,2.837142,kg +f92cdb6d-fbca-3730-b847-73c50e9d7496,SESCO,II.1.1,Misiones,AR-N,annual,2014,naphtha combustion consumption by to the public,0.9457139999999999,TJ,N2O,0.6,kg/TJ,0.5674283999999999,kg +ea113bdb-28e5-323d-8b52-637d5144fa9f,SESCO,II.1.1,Buenos Aires,AR-B,annual,2014,naphtha combustion consumption by to the public,13461.2300284,TJ,CO2,73300.0,kg/TJ,986708161.08172,kg +518b8c80-4d73-3efa-8cf0-e2403a1ee9c9,SESCO,II.1.1,Buenos Aires,AR-B,annual,2014,naphtha combustion consumption by to the public,13461.2300284,TJ,CH4,3.0,kg/TJ,40383.690085199996,kg +61ba27e9-618b-3973-a47b-6958d71b3810,SESCO,II.1.1,Buenos Aires,AR-B,annual,2014,naphtha combustion consumption by to the public,13461.2300284,TJ,N2O,0.6,kg/TJ,8076.738017039999,kg +1cbd3471-ce04-3aff-adf6-6da4192fde83,SESCO,II.1.1,Capital Federal,AR-C,annual,2014,naphtha combustion consumption by to the public,4222.234724399999,TJ,CO2,73300.0,kg/TJ,309489805.29851997,kg +c3b406c2-3c9f-3ff8-bbe0-6cd027f8a9a7,SESCO,II.1.1,Capital Federal,AR-C,annual,2014,naphtha combustion consumption by to the public,4222.234724399999,TJ,CH4,3.0,kg/TJ,12666.704173199998,kg +7d882115-fbed-3c6f-8dec-1666131b4e23,SESCO,II.1.1,Capital Federal,AR-C,annual,2014,naphtha combustion consumption by to the public,4222.234724399999,TJ,N2O,0.6,kg/TJ,2533.3408346399997,kg +47e95c83-bf43-3d2e-84ac-b3b9816e4e52,SESCO,II.1.1,Catamarca,AR-K,annual,2014,naphtha combustion consumption by to the public,54.3155074,TJ,CO2,73300.0,kg/TJ,3981326.69242,kg +87335392-7aeb-322b-9db5-89b7fb2a267a,SESCO,II.1.1,Catamarca,AR-K,annual,2014,naphtha combustion consumption by to the public,54.3155074,TJ,CH4,3.0,kg/TJ,162.9465222,kg +0175a912-6af0-350b-9e4d-480132148dfc,SESCO,II.1.1,Catamarca,AR-K,annual,2014,naphtha combustion consumption by to the public,54.3155074,TJ,N2O,0.6,kg/TJ,32.58930444,kg +e3243a03-fa1f-3795-879b-4147d62ca90f,SESCO,II.1.1,Chaco,AR-H,annual,2014,naphtha combustion consumption by to the public,819.2405143999999,TJ,CO2,73300.0,kg/TJ,60050329.70552,kg +6cc600dd-df83-3c29-9f47-8eb62faf76aa,SESCO,II.1.1,Chaco,AR-H,annual,2014,naphtha combustion consumption by to the public,819.2405143999999,TJ,CH4,3.0,kg/TJ,2457.7215432,kg +07990841-72f0-3d1e-b189-5ee0107ca885,SESCO,II.1.1,Chaco,AR-H,annual,2014,naphtha combustion consumption by to the public,819.2405143999999,TJ,N2O,0.6,kg/TJ,491.54430863999994,kg +25cfa453-ce19-3fc1-938f-f5843a341b85,SESCO,II.1.1,Corrientes,AR-W,annual,2014,naphtha combustion consumption by to the public,811.5487072,TJ,CO2,73300.0,kg/TJ,59486520.23776,kg +52520d45-ea86-3967-9d11-fec00c437486,SESCO,II.1.1,Corrientes,AR-W,annual,2014,naphtha combustion consumption by to the public,811.5487072,TJ,CH4,3.0,kg/TJ,2434.6461216,kg +2f3311aa-da88-3ef8-8516-ce3120d35326,SESCO,II.1.1,Corrientes,AR-W,annual,2014,naphtha combustion consumption by to the public,811.5487072,TJ,N2O,0.6,kg/TJ,486.92922431999995,kg +3cb275fb-3413-3f96-b853-3030dd0e7789,SESCO,II.1.1,Córdoba,AR-X,annual,2014,naphtha combustion consumption by to the public,2717.2569886,TJ,CO2,73300.0,kg/TJ,199174937.26438,kg +66006169-c2b4-316d-830b-b6d5fe2c34f2,SESCO,II.1.1,Córdoba,AR-X,annual,2014,naphtha combustion consumption by to the public,2717.2569886,TJ,CH4,3.0,kg/TJ,8151.7709658,kg +420d76c4-8897-37d9-9c1c-a8947fbca926,SESCO,II.1.1,Córdoba,AR-X,annual,2014,naphtha combustion consumption by to the public,2717.2569886,TJ,N2O,0.6,kg/TJ,1630.35419316,kg +11df9a25-d5eb-3456-a553-9a727ea593f4,SESCO,II.1.1,Entre Rios,AR-E,annual,2014,naphtha combustion consumption by to the public,830.2423206,TJ,CO2,73300.0,kg/TJ,60856762.09998,kg +50f24220-7b8c-3448-bb04-f6b8f3c28a64,SESCO,II.1.1,Entre Rios,AR-E,annual,2014,naphtha combustion consumption by to the public,830.2423206,TJ,CH4,3.0,kg/TJ,2490.7269618,kg +416e7ed8-330c-3460-88cb-190a1b25e452,SESCO,II.1.1,Entre Rios,AR-E,annual,2014,naphtha combustion consumption by to the public,830.2423206,TJ,N2O,0.6,kg/TJ,498.14539235999996,kg +af37575c-4442-3532-9af1-5720b15f388b,SESCO,II.1.1,Formosa,AR-P,annual,2014,naphtha combustion consumption by to the public,429.73244159999996,TJ,CO2,73300.0,kg/TJ,31499387.969279997,kg +b484ffab-bc5b-30e2-b580-c48bbfa9ec7e,SESCO,II.1.1,Formosa,AR-P,annual,2014,naphtha combustion consumption by to the public,429.73244159999996,TJ,CH4,3.0,kg/TJ,1289.1973248,kg +1123c424-4fdd-3429-8d27-735e117f38ac,SESCO,II.1.1,Formosa,AR-P,annual,2014,naphtha combustion consumption by to the public,429.73244159999996,TJ,N2O,0.6,kg/TJ,257.83946496,kg +9bab8ed9-1f18-376e-b4ee-a08afb02247e,SESCO,II.1.1,Jujuy,AR-Y,annual,2014,naphtha combustion consumption by to the public,199.86089199999998,TJ,CO2,73300.0,kg/TJ,14649803.383599998,kg +72000623-e98b-34c5-8c91-2004b903d06e,SESCO,II.1.1,Jujuy,AR-Y,annual,2014,naphtha combustion consumption by to the public,199.86089199999998,TJ,CH4,3.0,kg/TJ,599.582676,kg +9534407c-1e8c-320e-b181-85ac5fda92d8,SESCO,II.1.1,Jujuy,AR-Y,annual,2014,naphtha combustion consumption by to the public,199.86089199999998,TJ,N2O,0.6,kg/TJ,119.91653519999998,kg +00fbe968-6002-36f7-b30d-05e79509d519,SESCO,II.1.1,La Pampa,AR-L,annual,2014,naphtha combustion consumption by to the public,261.17468299999996,TJ,CO2,73300.0,kg/TJ,19144104.263899997,kg +4faa52a3-3344-32f0-b3ca-23d4413d6ca9,SESCO,II.1.1,La Pampa,AR-L,annual,2014,naphtha combustion consumption by to the public,261.17468299999996,TJ,CH4,3.0,kg/TJ,783.5240489999999,kg +3e34d566-13e8-38d6-8e90-a5bced4be969,SESCO,II.1.1,La Pampa,AR-L,annual,2014,naphtha combustion consumption by to the public,261.17468299999996,TJ,N2O,0.6,kg/TJ,156.70480979999996,kg +c5a64695-6ebd-3d6a-b968-8a243cb9d0fb,SESCO,II.1.1,La Rioja,AR-F,annual,2014,naphtha combustion consumption by to the public,246.61068739999996,TJ,CO2,73300.0,kg/TJ,18076563.386419997,kg +9ec8c8da-9cd4-3040-9646-a0ea9348675d,SESCO,II.1.1,La Rioja,AR-F,annual,2014,naphtha combustion consumption by to the public,246.61068739999996,TJ,CH4,3.0,kg/TJ,739.8320621999999,kg +036019a9-1e69-3700-bc5a-be16ef87e17c,SESCO,II.1.1,La Rioja,AR-F,annual,2014,naphtha combustion consumption by to the public,246.61068739999996,TJ,N2O,0.6,kg/TJ,147.96641243999997,kg +737c189e-9f7e-3f56-9cfa-885aa5d71cb2,SESCO,II.1.1,Mendoza,AR-M,annual,2014,naphtha combustion consumption by to the public,571.1797321999999,TJ,CO2,73300.0,kg/TJ,41867474.37025999,kg +e17a3234-19ec-3cc6-a8b0-c85ae8e1bdcf,SESCO,II.1.1,Mendoza,AR-M,annual,2014,naphtha combustion consumption by to the public,571.1797321999999,TJ,CH4,3.0,kg/TJ,1713.5391965999997,kg +41aa28f3-6821-3523-b514-4a77c4b2c946,SESCO,II.1.1,Mendoza,AR-M,annual,2014,naphtha combustion consumption by to the public,571.1797321999999,TJ,N2O,0.6,kg/TJ,342.7078393199999,kg +a3cd76ec-2609-3f01-be9a-31d325fd5b56,SESCO,II.1.1,Misiones,AR-N,annual,2014,naphtha combustion consumption by to the public,1218.3948699999999,TJ,CO2,73300.0,kg/TJ,89308343.97099999,kg +dc52b752-cc2f-3f87-b0d6-8d72ea551478,SESCO,II.1.1,Misiones,AR-N,annual,2014,naphtha combustion consumption by to the public,1218.3948699999999,TJ,CH4,3.0,kg/TJ,3655.1846099999993,kg +c3f4c1ca-db47-389f-bb00-25b15bb48531,SESCO,II.1.1,Misiones,AR-N,annual,2014,naphtha combustion consumption by to the public,1218.3948699999999,TJ,N2O,0.6,kg/TJ,731.0369219999999,kg +6d1df37b-7ba6-3774-9f2d-78e188cfd09f,SESCO,II.1.1,Neuquén,AR-Q,annual,2014,naphtha combustion consumption by to the public,407.3820674,TJ,CO2,73300.0,kg/TJ,29861105.54042,kg +ac32b538-0d14-36d5-8ef4-6c85f158da46,SESCO,II.1.1,Neuquén,AR-Q,annual,2014,naphtha combustion consumption by to the public,407.3820674,TJ,CH4,3.0,kg/TJ,1222.1462022,kg +245d54c5-bb15-316b-b989-a8596cfcde53,SESCO,II.1.1,Neuquén,AR-Q,annual,2014,naphtha combustion consumption by to the public,407.3820674,TJ,N2O,0.6,kg/TJ,244.42924043999997,kg +96bf838f-82a0-3f21-be77-91fa9df3ce0d,SESCO,II.1.1,Rio Negro,AR-R,annual,2014,naphtha combustion consumption by to the public,127.86053279999999,TJ,CO2,73300.0,kg/TJ,9372177.05424,kg +b32e2a1b-e7db-3599-9262-9217f541ddb5,SESCO,II.1.1,Rio Negro,AR-R,annual,2014,naphtha combustion consumption by to the public,127.86053279999999,TJ,CH4,3.0,kg/TJ,383.58159839999996,kg +5295772e-15a5-3ae9-94a0-4bae404a5fc3,SESCO,II.1.1,Rio Negro,AR-R,annual,2014,naphtha combustion consumption by to the public,127.86053279999999,TJ,N2O,0.6,kg/TJ,76.71631967999998,kg +b737b2da-86e2-379e-9784-12d963829e05,SESCO,II.1.1,Salta,AR-A,annual,2014,naphtha combustion consumption by to the public,255.31125619999997,TJ,CO2,73300.0,kg/TJ,18714315.07946,kg +32d8032b-c9ed-3c5b-bba3-4e7b8470362a,SESCO,II.1.1,Salta,AR-A,annual,2014,naphtha combustion consumption by to the public,255.31125619999997,TJ,CH4,3.0,kg/TJ,765.9337685999999,kg +fd1f794e-b9d0-31a1-a362-438ebb31dc74,SESCO,II.1.1,Salta,AR-A,annual,2014,naphtha combustion consumption by to the public,255.31125619999997,TJ,N2O,0.6,kg/TJ,153.18675371999998,kg +6e9b310f-cf01-35d2-8504-ffae667352eb,SESCO,II.1.1,San Juan,AR-J,annual,2014,naphtha combustion consumption by to the public,175.902804,TJ,CO2,73300.0,kg/TJ,12893675.5332,kg +385653dd-951d-3494-8ffa-ff64c2f3b4d6,SESCO,II.1.1,San Juan,AR-J,annual,2014,naphtha combustion consumption by to the public,175.902804,TJ,CH4,3.0,kg/TJ,527.708412,kg +91e09f21-df8c-3c09-a222-06f86d8d0f22,SESCO,II.1.1,San Juan,AR-J,annual,2014,naphtha combustion consumption by to the public,175.902804,TJ,N2O,0.6,kg/TJ,105.5416824,kg +bd39509d-bcdc-3d45-90b0-facad4c57d0b,SESCO,II.1.1,San Luis,AR-D,annual,2014,naphtha combustion consumption by to the public,18.8197086,TJ,CO2,73300.0,kg/TJ,1379484.64038,kg +8c261410-4d2e-3557-a474-bff44ff7b364,SESCO,II.1.1,San Luis,AR-D,annual,2014,naphtha combustion consumption by to the public,18.8197086,TJ,CH4,3.0,kg/TJ,56.459125799999995,kg +1d45a6d0-2da5-3822-abc9-70bc7e119c16,SESCO,II.1.1,San Luis,AR-D,annual,2014,naphtha combustion consumption by to the public,18.8197086,TJ,N2O,0.6,kg/TJ,11.291825159999998,kg +cc9c166b-1bb7-38d9-b800-30acdac0203d,SESCO,II.1.1,Santa Fe,AR-S,annual,2014,naphtha combustion consumption by to the public,3131.5427682,TJ,CO2,73300.0,kg/TJ,229542084.90906,kg +69162504-665a-3a5d-90b1-8c1fd61a4cb0,SESCO,II.1.1,Santa Fe,AR-S,annual,2014,naphtha combustion consumption by to the public,3131.5427682,TJ,CH4,3.0,kg/TJ,9394.628304599999,kg +ef063158-5299-31ed-8b1d-e2d4c1b60c86,SESCO,II.1.1,Santa Fe,AR-S,annual,2014,naphtha combustion consumption by to the public,3131.5427682,TJ,N2O,0.6,kg/TJ,1878.92566092,kg +ed7aa4df-f78f-3657-a323-61eed68a8ae1,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2014,naphtha combustion consumption by to the public,331.78799499999997,TJ,CO2,73300.0,kg/TJ,24320060.033499997,kg +28f7bb22-2be3-3475-a4c1-179f62cd207f,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2014,naphtha combustion consumption by to the public,331.78799499999997,TJ,CH4,3.0,kg/TJ,995.363985,kg +74a189f4-0cac-33ee-b78c-d66e11a4073d,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2014,naphtha combustion consumption by to the public,331.78799499999997,TJ,N2O,0.6,kg/TJ,199.07279699999998,kg +26b93ae0-94fb-3252-8b5f-d3443a4ef620,SESCO,II.1.1,Tucuman,AR-T,annual,2014,naphtha combustion consumption by to the public,817.0653722,TJ,CO2,73300.0,kg/TJ,59890891.78225999,kg +5299bfcd-b1e4-3b28-b855-0df2672ee492,SESCO,II.1.1,Tucuman,AR-T,annual,2014,naphtha combustion consumption by to the public,817.0653722,TJ,CH4,3.0,kg/TJ,2451.1961166,kg +b91d657f-4006-3230-b0ba-48385acf5b47,SESCO,II.1.1,Tucuman,AR-T,annual,2014,naphtha combustion consumption by to the public,817.0653722,TJ,N2O,0.6,kg/TJ,490.23922331999995,kg +acc4470f-c689-31ff-9d9f-e12b40b379f2,SESCO,II.1.1,Buenos Aires,AR-B,annual,2014,naphtha combustion consumption by to the public,5806.589388599999,TJ,CO2,73300.0,kg/TJ,425623002.18437994,kg +c2078ade-bbaf-3847-8986-992438fe68a4,SESCO,II.1.1,Buenos Aires,AR-B,annual,2014,naphtha combustion consumption by to the public,5806.589388599999,TJ,CH4,3.0,kg/TJ,17419.7681658,kg +c7cb534d-efa5-3345-8654-217bcd5b04da,SESCO,II.1.1,Buenos Aires,AR-B,annual,2014,naphtha combustion consumption by to the public,5806.589388599999,TJ,N2O,0.6,kg/TJ,3483.9536331599998,kg +ae329a0b-4ab7-3908-887a-77026be66c82,SESCO,II.1.1,Capital Federal,AR-C,annual,2014,naphtha combustion consumption by to the public,2558.5031317999997,TJ,CO2,73300.0,kg/TJ,187538279.56093997,kg +0c723755-dbe6-3db7-b2a3-a397711582fb,SESCO,II.1.1,Capital Federal,AR-C,annual,2014,naphtha combustion consumption by to the public,2558.5031317999997,TJ,CH4,3.0,kg/TJ,7675.5093953999985,kg +5761417d-ae1a-3846-902c-2ba8f4d986b5,SESCO,II.1.1,Capital Federal,AR-C,annual,2014,naphtha combustion consumption by to the public,2558.5031317999997,TJ,N2O,0.6,kg/TJ,1535.1018790799997,kg +da5217cd-722a-3da5-8ce1-ecf11bc4ff94,SESCO,II.1.1,Catamarca,AR-K,annual,2014,naphtha combustion consumption by to the public,31.775990399999998,TJ,CO2,73300.0,kg/TJ,2329180.09632,kg +c154d689-f1bf-384c-98cd-7712e8f607e9,SESCO,II.1.1,Catamarca,AR-K,annual,2014,naphtha combustion consumption by to the public,31.775990399999998,TJ,CH4,3.0,kg/TJ,95.3279712,kg +35e325d7-7e1a-3e46-afaa-2eb7259ed84a,SESCO,II.1.1,Catamarca,AR-K,annual,2014,naphtha combustion consumption by to the public,31.775990399999998,TJ,N2O,0.6,kg/TJ,19.06559424,kg +e592ebe3-5d63-396f-9eea-cd29bc92780c,SESCO,II.1.1,Chaco,AR-H,annual,2014,naphtha combustion consumption by to the public,226.75069339999996,TJ,CO2,73300.0,kg/TJ,16620825.826219996,kg +e2f74af2-548b-31be-bea9-9a6aa1180e02,SESCO,II.1.1,Chaco,AR-H,annual,2014,naphtha combustion consumption by to the public,226.75069339999996,TJ,CH4,3.0,kg/TJ,680.2520801999999,kg +7e64a8be-0ccc-334d-ad79-5161079e7bc5,SESCO,II.1.1,Chaco,AR-H,annual,2014,naphtha combustion consumption by to the public,226.75069339999996,TJ,N2O,0.6,kg/TJ,136.05041603999996,kg +33354bfe-0249-3846-be01-cc2cb71798b9,SESCO,II.1.1,Corrientes,AR-W,annual,2014,naphtha combustion consumption by to the public,275.2658216,TJ,CO2,73300.0,kg/TJ,20176984.723279998,kg +86e49055-4946-34b4-b302-d446dfc1d8ff,SESCO,II.1.1,Corrientes,AR-W,annual,2014,naphtha combustion consumption by to the public,275.2658216,TJ,CH4,3.0,kg/TJ,825.7974648,kg +a6b34459-2050-38f5-a4d3-e05c3f457d24,SESCO,II.1.1,Corrientes,AR-W,annual,2014,naphtha combustion consumption by to the public,275.2658216,TJ,N2O,0.6,kg/TJ,165.15949296,kg +e52f1120-2a22-3d01-89c3-678440be4db0,SESCO,II.1.1,Córdoba,AR-X,annual,2014,naphtha combustion consumption by to the public,976.3551335999998,TJ,CO2,73300.0,kg/TJ,71566831.29287998,kg +48771cbd-0a64-34a9-9c42-7e2e4b8342ba,SESCO,II.1.1,Córdoba,AR-X,annual,2014,naphtha combustion consumption by to the public,976.3551335999998,TJ,CH4,3.0,kg/TJ,2929.065400799999,kg +0410e8ec-ae41-317b-b1d0-c2428ce76f5f,SESCO,II.1.1,Córdoba,AR-X,annual,2014,naphtha combustion consumption by to the public,976.3551335999998,TJ,N2O,0.6,kg/TJ,585.8130801599999,kg +799dfb3c-412a-39be-ac09-dacec5427be1,SESCO,II.1.1,Entre Rios,AR-E,annual,2014,naphtha combustion consumption by to the public,326.83875839999996,TJ,CO2,73300.0,kg/TJ,23957280.990719996,kg +63003459-7823-3b40-81ea-934dd43a950e,SESCO,II.1.1,Entre Rios,AR-E,annual,2014,naphtha combustion consumption by to the public,326.83875839999996,TJ,CH4,3.0,kg/TJ,980.5162751999999,kg +10862009-4e5e-31e2-aaf3-a1bf389d5223,SESCO,II.1.1,Entre Rios,AR-E,annual,2014,naphtha combustion consumption by to the public,326.83875839999996,TJ,N2O,0.6,kg/TJ,196.10325503999996,kg +86f80673-4cc6-342a-a0e3-0da73184fd93,SESCO,II.1.1,Formosa,AR-P,annual,2014,naphtha combustion consumption by to the public,140.21786239999997,TJ,CO2,73300.0,kg/TJ,10277969.313919999,kg +0ad645c0-f370-3fe3-8f36-e600485db746,SESCO,II.1.1,Formosa,AR-P,annual,2014,naphtha combustion consumption by to the public,140.21786239999997,TJ,CH4,3.0,kg/TJ,420.65358719999995,kg +be44908b-5279-355f-a490-df7a46152b92,SESCO,II.1.1,Formosa,AR-P,annual,2014,naphtha combustion consumption by to the public,140.21786239999997,TJ,N2O,0.6,kg/TJ,84.13071743999998,kg +0d1867f4-e296-3212-b464-f40d238823c5,SESCO,II.1.1,Jujuy,AR-Y,annual,2014,naphtha combustion consumption by to the public,33.667418399999995,TJ,CO2,73300.0,kg/TJ,2467821.7687199996,kg +3ae4093a-4495-37cb-8a7f-479fd7580ec5,SESCO,II.1.1,Jujuy,AR-Y,annual,2014,naphtha combustion consumption by to the public,33.667418399999995,TJ,CH4,3.0,kg/TJ,101.00225519999998,kg +491084e3-8ecc-3420-aefc-7a0c371b6719,SESCO,II.1.1,Jujuy,AR-Y,annual,2014,naphtha combustion consumption by to the public,33.667418399999995,TJ,N2O,0.6,kg/TJ,20.200451039999997,kg +1e6b3ad3-9a6b-3eb3-afea-dace4a94b5c9,SESCO,II.1.1,La Pampa,AR-L,annual,2014,naphtha combustion consumption by to the public,103.6502544,TJ,CO2,73300.0,kg/TJ,7597563.647519999,kg +8bd759e2-c0d7-3246-9546-08d0f759b1c1,SESCO,II.1.1,La Pampa,AR-L,annual,2014,naphtha combustion consumption by to the public,103.6502544,TJ,CH4,3.0,kg/TJ,310.9507632,kg +be75304b-277d-3a42-94e8-dd39ef48f242,SESCO,II.1.1,La Pampa,AR-L,annual,2014,naphtha combustion consumption by to the public,103.6502544,TJ,N2O,0.6,kg/TJ,62.190152639999994,kg +f3a1343d-fe14-380d-b29f-4a81a991cc90,SESCO,II.1.1,La Rioja,AR-F,annual,2014,naphtha combustion consumption by to the public,65.569504,TJ,CO2,73300.0,kg/TJ,4806244.6432,kg +5bb255ab-b139-3025-93cd-4dc88ae9c5e1,SESCO,II.1.1,La Rioja,AR-F,annual,2014,naphtha combustion consumption by to the public,65.569504,TJ,CH4,3.0,kg/TJ,196.70851199999998,kg +b59d5d7d-1810-3bef-a6f5-f74438ff4668,SESCO,II.1.1,La Rioja,AR-F,annual,2014,naphtha combustion consumption by to the public,65.569504,TJ,N2O,0.6,kg/TJ,39.341702399999996,kg +9c601230-c69d-3044-a935-2fd8dd4ba356,SESCO,II.1.1,Mendoza,AR-M,annual,2014,naphtha combustion consumption by to the public,253.98725659999997,TJ,CO2,73300.0,kg/TJ,18617265.908779997,kg +7eb52b2a-3a7d-316c-92fd-65835455430b,SESCO,II.1.1,Mendoza,AR-M,annual,2014,naphtha combustion consumption by to the public,253.98725659999997,TJ,CH4,3.0,kg/TJ,761.9617698,kg +8fe602c9-3ced-35d3-877a-266f9a1dd3bb,SESCO,II.1.1,Mendoza,AR-M,annual,2014,naphtha combustion consumption by to the public,253.98725659999997,TJ,N2O,0.6,kg/TJ,152.39235395999998,kg +a00a4b8a-52bf-3775-b457-f16d8d39193e,SESCO,II.1.1,Misiones,AR-N,annual,2014,naphtha combustion consumption by to the public,231.85754899999998,TJ,CO2,73300.0,kg/TJ,16995158.3417,kg +9e49a60d-6b56-3bd9-ad39-761321eaca83,SESCO,II.1.1,Misiones,AR-N,annual,2014,naphtha combustion consumption by to the public,231.85754899999998,TJ,CH4,3.0,kg/TJ,695.572647,kg +5d00bbc2-9f0a-3caa-a1f9-645e39c5dd59,SESCO,II.1.1,Misiones,AR-N,annual,2014,naphtha combustion consumption by to the public,231.85754899999998,TJ,N2O,0.6,kg/TJ,139.11452939999998,kg +bf19167c-9323-399f-9fb6-3c0dcdd31768,SESCO,II.1.1,Neuquén,AR-Q,annual,2014,naphtha combustion consumption by to the public,164.8064264,TJ,CO2,73300.0,kg/TJ,12080311.055119999,kg +be6011e9-68fa-3479-ad8a-bacf0900c9b6,SESCO,II.1.1,Neuquén,AR-Q,annual,2014,naphtha combustion consumption by to the public,164.8064264,TJ,CH4,3.0,kg/TJ,494.4192792,kg +4e00ea00-fa8e-3e80-83f1-4931c3b5ba02,SESCO,II.1.1,Neuquén,AR-Q,annual,2014,naphtha combustion consumption by to the public,164.8064264,TJ,N2O,0.6,kg/TJ,98.88385584,kg +a27922ca-270c-3f73-9935-2dd1fb348767,SESCO,II.1.1,Rio Negro,AR-R,annual,2014,naphtha combustion consumption by to the public,53.212174399999995,TJ,CO2,73300.0,kg/TJ,3900452.3835199997,kg +49bc2d1b-fcad-3897-8f2b-809515121f2c,SESCO,II.1.1,Rio Negro,AR-R,annual,2014,naphtha combustion consumption by to the public,53.212174399999995,TJ,CH4,3.0,kg/TJ,159.6365232,kg +a731c4cc-2783-3c8d-be26-b01e2aaf88b4,SESCO,II.1.1,Rio Negro,AR-R,annual,2014,naphtha combustion consumption by to the public,53.212174399999995,TJ,N2O,0.6,kg/TJ,31.927304639999996,kg +368722e9-a5ef-3961-b254-4f359e0ea513,SESCO,II.1.1,Salta,AR-A,annual,2014,naphtha combustion consumption by to the public,70.26655019999998,TJ,CO2,73300.0,kg/TJ,5150538.129659999,kg +a8f52094-8984-3512-9829-c60ff7b5beb2,SESCO,II.1.1,Salta,AR-A,annual,2014,naphtha combustion consumption by to the public,70.26655019999998,TJ,CH4,3.0,kg/TJ,210.79965059999995,kg +e6dd5052-c237-3eeb-a065-df4fcb05e201,SESCO,II.1.1,Salta,AR-A,annual,2014,naphtha combustion consumption by to the public,70.26655019999998,TJ,N2O,0.6,kg/TJ,42.15993011999999,kg +b2166d72-7385-361e-9b77-20cbb7468cba,SESCO,II.1.1,San Juan,AR-J,annual,2014,naphtha combustion consumption by to the public,28.655134199999996,TJ,CO2,73300.0,kg/TJ,2100421.3368599997,kg +a04a8fbd-996f-3211-a19d-c27c50999f99,SESCO,II.1.1,San Juan,AR-J,annual,2014,naphtha combustion consumption by to the public,28.655134199999996,TJ,CH4,3.0,kg/TJ,85.96540259999999,kg +03d33ea5-dbfb-319e-aabf-afc7987ffd35,SESCO,II.1.1,San Juan,AR-J,annual,2014,naphtha combustion consumption by to the public,28.655134199999996,TJ,N2O,0.6,kg/TJ,17.193080519999995,kg +79abbd91-5e74-3b53-a81a-81356d6bc98b,SESCO,II.1.1,San Luis,AR-D,annual,2014,naphtha combustion consumption by to the public,23.64285,TJ,CO2,73300.0,kg/TJ,1733020.905,kg +ffdcacf5-a968-33b4-8334-c5ac5766c308,SESCO,II.1.1,San Luis,AR-D,annual,2014,naphtha combustion consumption by to the public,23.64285,TJ,CH4,3.0,kg/TJ,70.92855,kg +e163914e-6aa0-3271-9ac1-67510db54403,SESCO,II.1.1,San Luis,AR-D,annual,2014,naphtha combustion consumption by to the public,23.64285,TJ,N2O,0.6,kg/TJ,14.185709999999998,kg +a5de2937-e68b-39a2-b021-80b4566e2566,SESCO,II.1.1,Santa Fe,AR-S,annual,2014,naphtha combustion consumption by to the public,1210.986777,TJ,CO2,73300.0,kg/TJ,88765330.75410001,kg +273af5ce-edb6-3322-93a5-2640f708f690,SESCO,II.1.1,Santa Fe,AR-S,annual,2014,naphtha combustion consumption by to the public,1210.986777,TJ,CH4,3.0,kg/TJ,3632.960331,kg +ab40d961-d2f7-39d5-814a-d70c5d45d4fa,SESCO,II.1.1,Santa Fe,AR-S,annual,2014,naphtha combustion consumption by to the public,1210.986777,TJ,N2O,0.6,kg/TJ,726.5920662,kg +bc3864b4-960e-32d7-82ff-680cc69eb9b8,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2014,naphtha combustion consumption by to the public,121.77643939999999,TJ,CO2,73300.0,kg/TJ,8926213.008019999,kg +3645dafe-7591-3870-8879-463645defb3d,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2014,naphtha combustion consumption by to the public,121.77643939999999,TJ,CH4,3.0,kg/TJ,365.3293182,kg +e15fcd20-5d60-31a4-8bbd-eff6f1b45103,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2014,naphtha combustion consumption by to the public,121.77643939999999,TJ,N2O,0.6,kg/TJ,73.06586363999999,kg +01403344-a053-3609-a6d6-13567b741cb2,SESCO,II.1.1,Tucuman,AR-T,annual,2014,naphtha combustion consumption by to the public,194.94317919999997,TJ,CO2,73300.0,kg/TJ,14289335.035359997,kg +6a26bbcf-3fd6-33d0-9259-aa18194f3032,SESCO,II.1.1,Tucuman,AR-T,annual,2014,naphtha combustion consumption by to the public,194.94317919999997,TJ,CH4,3.0,kg/TJ,584.8295375999999,kg +2009b075-ec67-3623-914c-f3826fd6ddf4,SESCO,II.1.1,Tucuman,AR-T,annual,2014,naphtha combustion consumption by to the public,194.94317919999997,TJ,N2O,0.6,kg/TJ,116.96590751999997,kg +f45e59af-2b64-3a01-a67a-4e55ab9466f0,SESCO,II.5.1,Buenos Aires,AR-B,annual,2014,naphtha combustion consumption by agriculture machines,3.7198084,TJ,CO2,73300.0,kg/TJ,272661.95571999997,kg +8f997a9c-84d6-33be-a522-fc38f99e45f7,SESCO,II.5.1,Buenos Aires,AR-B,annual,2014,naphtha combustion consumption by agriculture machines,3.7198084,TJ,CH4,3.0,kg/TJ,11.1594252,kg +1c4609dc-4ee8-3b7c-9ded-b0871bb8179f,SESCO,II.5.1,Buenos Aires,AR-B,annual,2014,naphtha combustion consumption by agriculture machines,3.7198084,TJ,N2O,0.6,kg/TJ,2.23188504,kg +0edafafe-8702-360e-a147-5e3fa3473e02,SESCO,II.5.1,Chubut,AR-U,annual,2014,naphtha combustion consumption by agriculture machines,0.47285699999999997,TJ,CO2,73300.0,kg/TJ,34660.418099999995,kg +24fa30a7-9e89-37dd-9df7-f479f6c9e24e,SESCO,II.5.1,Chubut,AR-U,annual,2014,naphtha combustion consumption by agriculture machines,0.47285699999999997,TJ,CH4,3.0,kg/TJ,1.418571,kg +d27df038-7b0b-3d8e-8234-c8e35d7b30aa,SESCO,II.5.1,Chubut,AR-U,annual,2014,naphtha combustion consumption by agriculture machines,0.47285699999999997,TJ,N2O,0.6,kg/TJ,0.28371419999999997,kg +701925ba-a3af-3fed-90b0-ac037a0c44ce,SESCO,II.5.1,Entre Rios,AR-E,annual,2014,naphtha combustion consumption by agriculture machines,1.4185709999999998,TJ,CO2,73300.0,kg/TJ,103981.25429999999,kg +11a12412-cafc-3897-860e-02fe7c7f9b67,SESCO,II.5.1,Entre Rios,AR-E,annual,2014,naphtha combustion consumption by agriculture machines,1.4185709999999998,TJ,CH4,3.0,kg/TJ,4.255712999999999,kg +6c712e88-f902-3023-b0fb-3226b48297fd,SESCO,II.5.1,Entre Rios,AR-E,annual,2014,naphtha combustion consumption by agriculture machines,1.4185709999999998,TJ,N2O,0.6,kg/TJ,0.8511425999999999,kg +900646d3-2e0c-378a-bdc6-8ce272705a39,SESCO,II.5.1,Salta,AR-A,annual,2014,naphtha combustion consumption by agriculture machines,0.15761899999999998,TJ,CO2,73300.0,kg/TJ,11553.472699999998,kg +769eb2a4-09cf-3724-894f-9157ec7db8d4,SESCO,II.5.1,Salta,AR-A,annual,2014,naphtha combustion consumption by agriculture machines,0.15761899999999998,TJ,CH4,3.0,kg/TJ,0.47285699999999997,kg +c502b425-f5bb-3b73-8f23-df01d1a0895b,SESCO,II.5.1,Salta,AR-A,annual,2014,naphtha combustion consumption by agriculture machines,0.15761899999999998,TJ,N2O,0.6,kg/TJ,0.09457139999999999,kg +75435dec-51d8-3240-b961-5aac813e4632,SESCO,II.5.1,Santa Fe,AR-S,annual,2014,naphtha combustion consumption by agriculture machines,28.465991399999997,TJ,CO2,73300.0,kg/TJ,2086557.1696199998,kg +f8479a7f-5a4d-30c7-8548-e7feb3be329d,SESCO,II.5.1,Santa Fe,AR-S,annual,2014,naphtha combustion consumption by agriculture machines,28.465991399999997,TJ,CH4,3.0,kg/TJ,85.3979742,kg +71c4b59c-cb35-3f51-8937-88ddff2e3b02,SESCO,II.5.1,Santa Fe,AR-S,annual,2014,naphtha combustion consumption by agriculture machines,28.465991399999997,TJ,N2O,0.6,kg/TJ,17.07959484,kg +fd9669f8-0720-3d78-9824-69839658b708,SESCO,II.5.1,Buenos Aires,AR-B,annual,2014,naphtha combustion consumption by agriculture machines,0.6304759999999999,TJ,CO2,73300.0,kg/TJ,46213.890799999994,kg +e4cd36bf-ad05-398b-a526-7d198bad39b6,SESCO,II.5.1,Buenos Aires,AR-B,annual,2014,naphtha combustion consumption by agriculture machines,0.6304759999999999,TJ,CH4,3.0,kg/TJ,1.8914279999999999,kg +9e907de6-fd4c-3ec4-82ed-44de67ff93d5,SESCO,II.5.1,Buenos Aires,AR-B,annual,2014,naphtha combustion consumption by agriculture machines,0.6304759999999999,TJ,N2O,0.6,kg/TJ,0.37828559999999994,kg +9db0e24d-34d9-330a-9c80-9e5d416f0f8d,SESCO,II.5.1,Santa Fe,AR-S,annual,2014,naphtha combustion consumption by agriculture machines,0.8826663999999999,TJ,CO2,73300.0,kg/TJ,64699.44711999999,kg +57282bec-ac6f-37f1-8e0e-2c9427e3840e,SESCO,II.5.1,Santa Fe,AR-S,annual,2014,naphtha combustion consumption by agriculture machines,0.8826663999999999,TJ,CH4,3.0,kg/TJ,2.6479991999999997,kg +85dadb93-88b3-3af5-b0ed-f53ad3e2ea97,SESCO,II.5.1,Santa Fe,AR-S,annual,2014,naphtha combustion consumption by agriculture machines,0.8826663999999999,TJ,N2O,0.6,kg/TJ,0.5295998399999999,kg +a9769e22-867a-37d5-8d4f-10182b7bc1d0,SESCO,II.1.1,Buenos Aires,AR-B,annual,2014,naphtha combustion consumption by to the public,39291.579558,TJ,CO2,73300.0,kg/TJ,2880072781.6014,kg +c18d9897-84e4-356b-871e-36578a864a2a,SESCO,II.1.1,Buenos Aires,AR-B,annual,2014,naphtha combustion consumption by to the public,39291.579558,TJ,CH4,3.0,kg/TJ,117874.738674,kg +6377035d-f458-37d5-a3d1-9d8ab9b96327,SESCO,II.1.1,Buenos Aires,AR-B,annual,2014,naphtha combustion consumption by to the public,39291.579558,TJ,N2O,0.6,kg/TJ,23574.947734799996,kg +a6a60353-e08d-362e-895b-77d26fc67d49,SESCO,II.1.1,Capital Federal,AR-C,annual,2014,naphtha combustion consumption by to the public,8394.661844799999,TJ,CO2,73300.0,kg/TJ,615328713.2238399,kg +678dfdfd-5891-3079-9944-468f0a14a9fd,SESCO,II.1.1,Capital Federal,AR-C,annual,2014,naphtha combustion consumption by to the public,8394.661844799999,TJ,CH4,3.0,kg/TJ,25183.985534399995,kg +e3acc418-a0ca-344e-8c8c-90157c42458f,SESCO,II.1.1,Capital Federal,AR-C,annual,2014,naphtha combustion consumption by to the public,8394.661844799999,TJ,N2O,0.6,kg/TJ,5036.797106879999,kg +f60147cc-af15-3e33-9fc5-f02eea2793a8,SESCO,II.1.1,Catamarca,AR-K,annual,2014,naphtha combustion consumption by to the public,675.4289387999999,TJ,CO2,73300.0,kg/TJ,49508941.21403999,kg +b78ca5dc-b3eb-3229-bf60-1f0762079a89,SESCO,II.1.1,Catamarca,AR-K,annual,2014,naphtha combustion consumption by to the public,675.4289387999999,TJ,CH4,3.0,kg/TJ,2026.2868163999997,kg +c9962ad9-3231-337a-a58d-45241fc29eed,SESCO,II.1.1,Catamarca,AR-K,annual,2014,naphtha combustion consumption by to the public,675.4289387999999,TJ,N2O,0.6,kg/TJ,405.2573632799999,kg +85ab8801-8738-32ee-b390-b18a9b09fef9,SESCO,II.1.1,Chaco,AR-H,annual,2014,naphtha combustion consumption by to the public,2227.1249462,TJ,CO2,73300.0,kg/TJ,163248258.55646,kg +b8ebb0a9-e3f9-3784-ad08-ec5076b27dfc,SESCO,II.1.1,Chaco,AR-H,annual,2014,naphtha combustion consumption by to the public,2227.1249462,TJ,CH4,3.0,kg/TJ,6681.374838600001,kg +fb2cbf4c-2468-3bb5-97db-e778aea2969e,SESCO,II.1.1,Chaco,AR-H,annual,2014,naphtha combustion consumption by to the public,2227.1249462,TJ,N2O,0.6,kg/TJ,1336.27496772,kg +c9a803d7-43e4-3511-a602-dfa6d3fa26d7,SESCO,II.1.1,Chubut,AR-U,annual,2014,naphtha combustion consumption by to the public,3742.2533455999996,TJ,CO2,73300.0,kg/TJ,274307170.23248,kg +c4c21d38-4578-3581-bbfa-88b6bfa6653d,SESCO,II.1.1,Chubut,AR-U,annual,2014,naphtha combustion consumption by to the public,3742.2533455999996,TJ,CH4,3.0,kg/TJ,11226.760036799998,kg +a83b5113-be19-3f60-85fb-1c09c75c5846,SESCO,II.1.1,Chubut,AR-U,annual,2014,naphtha combustion consumption by to the public,3742.2533455999996,TJ,N2O,0.6,kg/TJ,2245.35200736,kg +632195b2-fa35-3274-9a9c-a52d68d9501b,SESCO,II.1.1,Corrientes,AR-W,annual,2014,naphtha combustion consumption by to the public,2439.5323105999996,TJ,CO2,73300.0,kg/TJ,178817718.36698,kg +56fa4c6c-906d-3279-8a7f-308b42d3ed12,SESCO,II.1.1,Corrientes,AR-W,annual,2014,naphtha combustion consumption by to the public,2439.5323105999996,TJ,CH4,3.0,kg/TJ,7318.596931799999,kg +0b3d1907-3252-3687-9bd5-aed984f1898f,SESCO,II.1.1,Corrientes,AR-W,annual,2014,naphtha combustion consumption by to the public,2439.5323105999996,TJ,N2O,0.6,kg/TJ,1463.7193863599998,kg +a5b72416-b45f-3ea8-99f0-c2c3ac9dd6d1,SESCO,II.1.1,Córdoba,AR-X,annual,2014,naphtha combustion consumption by to the public,9728.4338228,TJ,CO2,73300.0,kg/TJ,713094199.2112399,kg +566e9dd5-9bfd-36c3-b1ec-17c8466550bb,SESCO,II.1.1,Córdoba,AR-X,annual,2014,naphtha combustion consumption by to the public,9728.4338228,TJ,CH4,3.0,kg/TJ,29185.3014684,kg +36be34e8-6188-3f4f-a9f1-72b5562ab2fa,SESCO,II.1.1,Córdoba,AR-X,annual,2014,naphtha combustion consumption by to the public,9728.4338228,TJ,N2O,0.6,kg/TJ,5837.06029368,kg +27217339-325c-3cc2-bd9a-cbe76ca244ec,SESCO,II.1.1,Entre Rios,AR-E,annual,2014,naphtha combustion consumption by to the public,3305.1758586,TJ,CO2,73300.0,kg/TJ,242269390.43538,kg +cebfe6ad-57e9-3b10-a83c-6cd642cdb31d,SESCO,II.1.1,Entre Rios,AR-E,annual,2014,naphtha combustion consumption by to the public,3305.1758586,TJ,CH4,3.0,kg/TJ,9915.5275758,kg +46dfe2a8-68e3-3efa-b2e1-bc6e647a72ff,SESCO,II.1.1,Entre Rios,AR-E,annual,2014,naphtha combustion consumption by to the public,3305.1758586,TJ,N2O,0.6,kg/TJ,1983.1055151599999,kg +07b9f307-601b-3038-852a-29897fff9140,SESCO,II.1.1,Formosa,AR-P,annual,2014,naphtha combustion consumption by to the public,855.8711699999999,TJ,CO2,73300.0,kg/TJ,62735356.76099999,kg +2b3e5ec4-df06-3ce9-acb6-bf79e5f7f332,SESCO,II.1.1,Formosa,AR-P,annual,2014,naphtha combustion consumption by to the public,855.8711699999999,TJ,CH4,3.0,kg/TJ,2567.6135099999997,kg +99799022-175f-3957-b0c5-93076a2096b2,SESCO,II.1.1,Formosa,AR-P,annual,2014,naphtha combustion consumption by to the public,855.8711699999999,TJ,N2O,0.6,kg/TJ,513.5227019999999,kg +84680326-1df1-3855-85e9-2d941941f69b,SESCO,II.1.1,Jujuy,AR-Y,annual,2014,naphtha combustion consumption by to the public,1110.5519502,TJ,CO2,73300.0,kg/TJ,81403457.94966,kg +60d0261b-aa36-392a-be63-032c2af3dcfd,SESCO,II.1.1,Jujuy,AR-Y,annual,2014,naphtha combustion consumption by to the public,1110.5519502,TJ,CH4,3.0,kg/TJ,3331.6558506,kg +06ad292d-7f9e-34e8-b9d9-d76e2137a230,SESCO,II.1.1,Jujuy,AR-Y,annual,2014,naphtha combustion consumption by to the public,1110.5519502,TJ,N2O,0.6,kg/TJ,666.3311701199999,kg +f48f31a1-2120-3acd-a826-143b978d8587,SESCO,II.1.1,La Pampa,AR-L,annual,2014,naphtha combustion consumption by to the public,1605.3495149999999,TJ,CO2,73300.0,kg/TJ,117672119.4495,kg +72de36cc-95c0-3e2d-af7b-e886ce9eb0b0,SESCO,II.1.1,La Pampa,AR-L,annual,2014,naphtha combustion consumption by to the public,1605.3495149999999,TJ,CH4,3.0,kg/TJ,4816.048545,kg +7c935830-b99e-3e6c-a560-23f1ec9dc410,SESCO,II.1.1,La Pampa,AR-L,annual,2014,naphtha combustion consumption by to the public,1605.3495149999999,TJ,N2O,0.6,kg/TJ,963.2097089999999,kg +a5c6d936-16d1-3ca6-98c2-cdf0cb0b73d0,SESCO,II.1.1,La Rioja,AR-F,annual,2014,naphtha combustion consumption by to the public,994.7019852,TJ,CO2,73300.0,kg/TJ,72911655.51516,kg +4570f245-6d59-3f9c-bba7-045e1bcf90bc,SESCO,II.1.1,La Rioja,AR-F,annual,2014,naphtha combustion consumption by to the public,994.7019852,TJ,CH4,3.0,kg/TJ,2984.1059556,kg +01619417-0a86-345f-8b7b-7cfba206f0d7,SESCO,II.1.1,La Rioja,AR-F,annual,2014,naphtha combustion consumption by to the public,994.7019852,TJ,N2O,0.6,kg/TJ,596.82119112,kg +5c651971-7b70-3b64-bfca-8d1d97621643,SESCO,II.1.1,Mendoza,AR-M,annual,2014,naphtha combustion consumption by to the public,5360.243904399999,TJ,CO2,73300.0,kg/TJ,392905878.19251996,kg +d095b9b5-4745-382d-b849-c8c26599aa3d,SESCO,II.1.1,Mendoza,AR-M,annual,2014,naphtha combustion consumption by to the public,5360.243904399999,TJ,CH4,3.0,kg/TJ,16080.731713199999,kg +9500c83a-3e4a-3500-a2e4-9c28eaa7a4d3,SESCO,II.1.1,Mendoza,AR-M,annual,2014,naphtha combustion consumption by to the public,5360.243904399999,TJ,N2O,0.6,kg/TJ,3216.1463426399996,kg +2fcafa0f-3ab4-34fb-b79d-2c0a24a9c0bf,SESCO,II.1.1,Misiones,AR-N,annual,2014,naphtha combustion consumption by to the public,3202.9126513999995,TJ,CO2,73300.0,kg/TJ,234773497.34761995,kg +2fb91f2b-afbf-3848-b9fa-0d3cedb37cac,SESCO,II.1.1,Misiones,AR-N,annual,2014,naphtha combustion consumption by to the public,3202.9126513999995,TJ,CH4,3.0,kg/TJ,9608.737954199998,kg +4cf89f65-2d31-38fe-8b5b-bba6a3e14356,SESCO,II.1.1,Misiones,AR-N,annual,2014,naphtha combustion consumption by to the public,3202.9126513999995,TJ,N2O,0.6,kg/TJ,1921.7475908399997,kg +b866e399-f49e-3526-8a35-706a9f04f6d2,SESCO,II.1.1,Neuquén,AR-Q,annual,2014,naphtha combustion consumption by to the public,3024.2042291999996,TJ,CO2,73300.0,kg/TJ,221674170.00035998,kg +fa94c410-5454-3fb2-b6ee-353e5ef3471a,SESCO,II.1.1,Neuquén,AR-Q,annual,2014,naphtha combustion consumption by to the public,3024.2042291999996,TJ,CH4,3.0,kg/TJ,9072.612687599998,kg +d7ad439f-1795-37f0-83b9-f99009fd74a1,SESCO,II.1.1,Neuquén,AR-Q,annual,2014,naphtha combustion consumption by to the public,3024.2042291999996,TJ,N2O,0.6,kg/TJ,1814.5225375199998,kg +f0e5345a-da07-37bc-a8d8-45c38b682045,SESCO,II.1.1,Rio Negro,AR-R,annual,2014,naphtha combustion consumption by to the public,3001.7908073999997,TJ,CO2,73300.0,kg/TJ,220031266.18242,kg +eefc1c98-c84e-32eb-b781-5a5940988f2e,SESCO,II.1.1,Rio Negro,AR-R,annual,2014,naphtha combustion consumption by to the public,3001.7908073999997,TJ,CH4,3.0,kg/TJ,9005.372422199998,kg +84f8b607-a2a8-3b5f-ae60-20a9dd85d888,SESCO,II.1.1,Rio Negro,AR-R,annual,2014,naphtha combustion consumption by to the public,3001.7908073999997,TJ,N2O,0.6,kg/TJ,1801.0744844399999,kg +16fd73d7-e07b-3f53-a69e-e816d7bec36b,SESCO,II.1.1,Salta,AR-A,annual,2014,naphtha combustion consumption by to the public,2567.9917955999995,TJ,CO2,73300.0,kg/TJ,188233798.61747995,kg +ce758057-f2f4-3a5f-889b-199022d4b83c,SESCO,II.1.1,Salta,AR-A,annual,2014,naphtha combustion consumption by to the public,2567.9917955999995,TJ,CH4,3.0,kg/TJ,7703.975386799999,kg +ac6da6ad-9b70-38f9-a123-e0a6c7c9c4ff,SESCO,II.1.1,Salta,AR-A,annual,2014,naphtha combustion consumption by to the public,2567.9917955999995,TJ,N2O,0.6,kg/TJ,1540.7950773599996,kg +9871dca0-d90d-366b-b4e9-e60c00d6efc1,SESCO,II.1.1,San Juan,AR-J,annual,2014,naphtha combustion consumption by to the public,1677.1607313999998,TJ,CO2,73300.0,kg/TJ,122935881.61161998,kg +3f217f87-091b-348a-a806-92f9aa8dca5a,SESCO,II.1.1,San Juan,AR-J,annual,2014,naphtha combustion consumption by to the public,1677.1607313999998,TJ,CH4,3.0,kg/TJ,5031.4821942,kg +e969723a-092f-3515-aa99-e5b3ae7046f8,SESCO,II.1.1,San Juan,AR-J,annual,2014,naphtha combustion consumption by to the public,1677.1607313999998,TJ,N2O,0.6,kg/TJ,1006.2964388399998,kg +67a3a210-bc96-3977-bdc0-e2333dbd60e7,SESCO,II.1.1,San Luis,AR-D,annual,2014,naphtha combustion consumption by to the public,1290.3006577999997,TJ,CO2,73300.0,kg/TJ,94579038.21673998,kg +773aee20-07a9-3fb3-aac7-a3b4bd3849b2,SESCO,II.1.1,San Luis,AR-D,annual,2014,naphtha combustion consumption by to the public,1290.3006577999997,TJ,CH4,3.0,kg/TJ,3870.9019733999994,kg +d45bddb4-0397-36c8-8c1e-e1547bf27ece,SESCO,II.1.1,San Luis,AR-D,annual,2014,naphtha combustion consumption by to the public,1290.3006577999997,TJ,N2O,0.6,kg/TJ,774.1803946799998,kg +4ea677c1-f4f9-3222-96f8-92a2dd0d7734,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2014,naphtha combustion consumption by to the public,2568.7798905999994,TJ,CO2,73300.0,kg/TJ,188291565.98097995,kg +081d69a6-19c7-300d-819c-996cc760ce6d,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2014,naphtha combustion consumption by to the public,2568.7798905999994,TJ,CH4,3.0,kg/TJ,7706.3396717999985,kg +f8f52858-a3f9-3df2-b607-5e13cc2e9a66,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2014,naphtha combustion consumption by to the public,2568.7798905999994,TJ,N2O,0.6,kg/TJ,1541.2679343599996,kg +e8555226-3add-3b51-bfa5-4cab1a64dfe2,SESCO,II.1.1,Santa Fe,AR-S,annual,2014,naphtha combustion consumption by to the public,7631.060837399999,TJ,CO2,73300.0,kg/TJ,559356759.3814199,kg +025c9256-8276-3f8a-ae83-b698b780ecc5,SESCO,II.1.1,Santa Fe,AR-S,annual,2014,naphtha combustion consumption by to the public,7631.060837399999,TJ,CH4,3.0,kg/TJ,22893.182512199997,kg +61a5618a-0ff7-33b3-97c1-c7f74c4ddc21,SESCO,II.1.1,Santa Fe,AR-S,annual,2014,naphtha combustion consumption by to the public,7631.060837399999,TJ,N2O,0.6,kg/TJ,4578.636502439999,kg +cf9aa653-3325-32b3-a833-35eb6da5a288,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2014,naphtha combustion consumption by to the public,1191.0952591999999,TJ,CO2,73300.0,kg/TJ,87307282.49936,kg +55598a47-fc33-3f6f-9797-a2f6c22d5be6,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2014,naphtha combustion consumption by to the public,1191.0952591999999,TJ,CH4,3.0,kg/TJ,3573.2857775999996,kg +dc62c4d7-7dc7-3c83-8e04-6187bb3676f4,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2014,naphtha combustion consumption by to the public,1191.0952591999999,TJ,N2O,0.6,kg/TJ,714.65715552,kg +78034697-eb71-333b-9cf5-6db8137bc2d6,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2014,naphtha combustion consumption by to the public,1882.0023837999997,TJ,CO2,73300.0,kg/TJ,137950774.73253998,kg +4df36401-541b-3a0b-97eb-7f277f6bdf76,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2014,naphtha combustion consumption by to the public,1882.0023837999997,TJ,CH4,3.0,kg/TJ,5646.007151399999,kg +83febc2a-d642-34ca-b0ba-a8835d96baa4,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2014,naphtha combustion consumption by to the public,1882.0023837999997,TJ,N2O,0.6,kg/TJ,1129.2014302799998,kg +ff4664f2-9d8e-31ba-9933-f38052d3ce5a,SESCO,II.1.1,Tucuman,AR-T,annual,2014,naphtha combustion consumption by to the public,2182.4557216,TJ,CO2,73300.0,kg/TJ,159974004.39328,kg +063fd55c-715e-336b-abe1-39ef83cc0b59,SESCO,II.1.1,Tucuman,AR-T,annual,2014,naphtha combustion consumption by to the public,2182.4557216,TJ,CH4,3.0,kg/TJ,6547.3671648,kg +72dc3924-8419-3eaf-95c3-549cf284e6de,SESCO,II.1.1,Tucuman,AR-T,annual,2014,naphtha combustion consumption by to the public,2182.4557216,TJ,N2O,0.6,kg/TJ,1309.4734329599999,kg +e33f0001-4b89-3508-96e5-84a4b5a819c9,SESCO,II.1.1,Buenos Aires,AR-B,annual,2014,naphtha combustion consumption by to the public,13488.624210599997,TJ,CO2,73300.0,kg/TJ,988716154.6369798,kg +d95ddcf5-6d02-3c4d-9865-298d603f3fde,SESCO,II.1.1,Buenos Aires,AR-B,annual,2014,naphtha combustion consumption by to the public,13488.624210599997,TJ,CH4,3.0,kg/TJ,40465.87263179999,kg +e195ea64-82c0-39e8-8378-5c7b7b993f90,SESCO,II.1.1,Buenos Aires,AR-B,annual,2014,naphtha combustion consumption by to the public,13488.624210599997,TJ,N2O,0.6,kg/TJ,8093.174526359998,kg +a415fdfb-f3e2-3a82-b7e8-a9ce0d559e83,SESCO,II.1.1,Capital Federal,AR-C,annual,2014,naphtha combustion consumption by to the public,3274.9445343999996,TJ,CO2,73300.0,kg/TJ,240053434.37151998,kg +741aa12d-6245-36e4-b4e6-1e5f1e33058a,SESCO,II.1.1,Capital Federal,AR-C,annual,2014,naphtha combustion consumption by to the public,3274.9445343999996,TJ,CH4,3.0,kg/TJ,9824.833603199999,kg +86b72fe1-d395-3b5b-9d5c-31fd4630f023,SESCO,II.1.1,Capital Federal,AR-C,annual,2014,naphtha combustion consumption by to the public,3274.9445343999996,TJ,N2O,0.6,kg/TJ,1964.9667206399997,kg +a1089948-2cd8-3c49-bf41-cb5e974f11e4,SESCO,II.1.1,Catamarca,AR-K,annual,2014,naphtha combustion consumption by to the public,203.2969862,TJ,CO2,73300.0,kg/TJ,14901669.08846,kg +dacf714b-63f0-3410-9d2c-3d7c6e21533f,SESCO,II.1.1,Catamarca,AR-K,annual,2014,naphtha combustion consumption by to the public,203.2969862,TJ,CH4,3.0,kg/TJ,609.8909586,kg +2765c2fd-4048-36b8-bcb4-790e713a7bcd,SESCO,II.1.1,Catamarca,AR-K,annual,2014,naphtha combustion consumption by to the public,203.2969862,TJ,N2O,0.6,kg/TJ,121.97819171999998,kg +73ad731e-8a50-3288-8718-56fb3c229e68,SESCO,II.1.1,Chaco,AR-H,annual,2014,naphtha combustion consumption by to the public,810.6029932,TJ,CO2,73300.0,kg/TJ,59417199.40156,kg +991442df-a78f-39c7-8176-13d6a53b6447,SESCO,II.1.1,Chaco,AR-H,annual,2014,naphtha combustion consumption by to the public,810.6029932,TJ,CH4,3.0,kg/TJ,2431.8089796,kg +d14a7eef-c09c-3222-ad79-e826b6a56cff,SESCO,II.1.1,Chaco,AR-H,annual,2014,naphtha combustion consumption by to the public,810.6029932,TJ,N2O,0.6,kg/TJ,486.36179591999996,kg +f4f5aab5-258d-32b3-ae20-0efc420d0b8c,SESCO,II.1.1,Chubut,AR-U,annual,2014,naphtha combustion consumption by to the public,1088.832052,TJ,CO2,73300.0,kg/TJ,79811389.4116,kg +0779c5c3-a1d3-33d7-a8cc-850ba628ca45,SESCO,II.1.1,Chubut,AR-U,annual,2014,naphtha combustion consumption by to the public,1088.832052,TJ,CH4,3.0,kg/TJ,3266.496156,kg +dd118522-32da-3d28-9b22-f185079b2b89,SESCO,II.1.1,Chubut,AR-U,annual,2014,naphtha combustion consumption by to the public,1088.832052,TJ,N2O,0.6,kg/TJ,653.2992312,kg +f255b4bb-1873-3bb6-a8ef-4462006f6f9f,SESCO,II.1.1,Corrientes,AR-W,annual,2014,naphtha combustion consumption by to the public,816.8447056,TJ,CO2,73300.0,kg/TJ,59874716.92048,kg +a3f9e3eb-4d7b-3c15-bc61-28cefa2cf25c,SESCO,II.1.1,Corrientes,AR-W,annual,2014,naphtha combustion consumption by to the public,816.8447056,TJ,CH4,3.0,kg/TJ,2450.5341168,kg +c25b2f4f-ef39-311d-bf0f-9655865d0c3b,SESCO,II.1.1,Corrientes,AR-W,annual,2014,naphtha combustion consumption by to the public,816.8447056,TJ,N2O,0.6,kg/TJ,490.10682335999996,kg +3e692498-250c-3a6c-80a3-9ee0d7c51120,SESCO,II.1.1,Córdoba,AR-X,annual,2014,naphtha combustion consumption by to the public,2798.9036305999994,TJ,CO2,73300.0,kg/TJ,205159636.12297994,kg +8044548f-c12d-39fb-aada-b79bc45a17b7,SESCO,II.1.1,Córdoba,AR-X,annual,2014,naphtha combustion consumption by to the public,2798.9036305999994,TJ,CH4,3.0,kg/TJ,8396.710891799998,kg +ffbd6757-ae0a-322e-b545-2e9609cdce3f,SESCO,II.1.1,Córdoba,AR-X,annual,2014,naphtha combustion consumption by to the public,2798.9036305999994,TJ,N2O,0.6,kg/TJ,1679.3421783599995,kg +71f6744e-b660-3a71-9074-a4f5a6c5b2a8,SESCO,II.1.1,Entre Rios,AR-E,annual,2014,naphtha combustion consumption by to the public,1168.3350756,TJ,CO2,73300.0,kg/TJ,85638961.04148,kg +46cbdb18-18f8-3508-bffe-fa3777067b1e,SESCO,II.1.1,Entre Rios,AR-E,annual,2014,naphtha combustion consumption by to the public,1168.3350756,TJ,CH4,3.0,kg/TJ,3505.0052268,kg +afa4feb8-d3e4-33ea-ab95-d300af8b033b,SESCO,II.1.1,Entre Rios,AR-E,annual,2014,naphtha combustion consumption by to the public,1168.3350756,TJ,N2O,0.6,kg/TJ,701.0010453599999,kg +09c993c2-294c-3a3c-b4d3-cb130e557aa6,SESCO,II.1.1,Formosa,AR-P,annual,2014,naphtha combustion consumption by to the public,216.85222019999998,TJ,CO2,73300.0,kg/TJ,15895267.740659999,kg +4c2c3879-f2d6-3d1d-a0ee-784951e9d5b7,SESCO,II.1.1,Formosa,AR-P,annual,2014,naphtha combustion consumption by to the public,216.85222019999998,TJ,CH4,3.0,kg/TJ,650.5566606,kg +42336b52-3ac6-3394-a7c1-07c0cd09d783,SESCO,II.1.1,Formosa,AR-P,annual,2014,naphtha combustion consumption by to the public,216.85222019999998,TJ,N2O,0.6,kg/TJ,130.11133212,kg +4dc5aa54-dfeb-3488-9bdf-3228e8f3a293,SESCO,II.1.1,Jujuy,AR-Y,annual,2014,naphtha combustion consumption by to the public,260.1974452,TJ,CO2,73300.0,kg/TJ,19072472.73316,kg +1478251c-3b1b-3300-82c0-733714288a59,SESCO,II.1.1,Jujuy,AR-Y,annual,2014,naphtha combustion consumption by to the public,260.1974452,TJ,CH4,3.0,kg/TJ,780.5923356000001,kg +9cdf0de5-e4e6-3c94-87fd-c43999b60ce7,SESCO,II.1.1,Jujuy,AR-Y,annual,2014,naphtha combustion consumption by to the public,260.1974452,TJ,N2O,0.6,kg/TJ,156.11846712,kg +7709807d-a6ac-39b1-a7b2-fbaddc738b86,SESCO,II.1.1,La Pampa,AR-L,annual,2014,naphtha combustion consumption by to the public,649.8316132,TJ,CO2,73300.0,kg/TJ,47632657.24756,kg +dcdf0607-61a4-3a93-985f-685e9cb934c5,SESCO,II.1.1,La Pampa,AR-L,annual,2014,naphtha combustion consumption by to the public,649.8316132,TJ,CH4,3.0,kg/TJ,1949.4948396,kg +e3700db5-5a0c-3709-8a35-cf0d5b4cfbf6,SESCO,II.1.1,La Pampa,AR-L,annual,2014,naphtha combustion consumption by to the public,649.8316132,TJ,N2O,0.6,kg/TJ,389.89896791999996,kg +024ef589-e3ae-3cef-8219-6272f643fe0c,SESCO,II.1.1,La Rioja,AR-F,annual,2014,naphtha combustion consumption by to the public,286.2991516,TJ,CO2,73300.0,kg/TJ,20985727.812280003,kg +35764a3c-b6c3-3516-a674-2d7d199d97dc,SESCO,II.1.1,La Rioja,AR-F,annual,2014,naphtha combustion consumption by to the public,286.2991516,TJ,CH4,3.0,kg/TJ,858.8974548000001,kg +16242aee-ae4d-33a0-9ec8-48a8dbcb3658,SESCO,II.1.1,La Rioja,AR-F,annual,2014,naphtha combustion consumption by to the public,286.2991516,TJ,N2O,0.6,kg/TJ,171.77949096,kg +1aef03be-a18d-3808-b9f5-02a5bd9524f4,SESCO,II.1.1,Mendoza,AR-M,annual,2014,naphtha combustion consumption by to the public,1941.3932229999998,TJ,CO2,73300.0,kg/TJ,142304123.24589998,kg +41484bfa-eaac-3196-8248-c98999b37eb1,SESCO,II.1.1,Mendoza,AR-M,annual,2014,naphtha combustion consumption by to the public,1941.3932229999998,TJ,CH4,3.0,kg/TJ,5824.179668999999,kg +48f3ffb2-d854-3cbc-a88c-c2eb80984a82,SESCO,II.1.1,Mendoza,AR-M,annual,2014,naphtha combustion consumption by to the public,1941.3932229999998,TJ,N2O,0.6,kg/TJ,1164.8359337999998,kg +806897af-c54b-3b43-84f1-2efa98704ba4,SESCO,II.1.1,Misiones,AR-N,annual,2014,naphtha combustion consumption by to the public,836.799271,TJ,CO2,73300.0,kg/TJ,61337386.5643,kg +c85d4e05-bb48-34b2-b136-714bc85e2084,SESCO,II.1.1,Misiones,AR-N,annual,2014,naphtha combustion consumption by to the public,836.799271,TJ,CH4,3.0,kg/TJ,2510.397813,kg +ed9a9796-7654-31f8-b084-b00741221e4c,SESCO,II.1.1,Misiones,AR-N,annual,2014,naphtha combustion consumption by to the public,836.799271,TJ,N2O,0.6,kg/TJ,502.0795626,kg +b80edaa3-d9c2-38be-b4e1-9c426af3e95b,SESCO,II.1.1,Neuquén,AR-Q,annual,2014,naphtha combustion consumption by to the public,1062.8564408,TJ,CO2,73300.0,kg/TJ,77907377.11064,kg +12ef10c6-c57d-3457-94a2-63488fde6236,SESCO,II.1.1,Neuquén,AR-Q,annual,2014,naphtha combustion consumption by to the public,1062.8564408,TJ,CH4,3.0,kg/TJ,3188.5693223999997,kg +a52b0f9c-b8c1-3216-9d77-6d17746040e7,SESCO,II.1.1,Neuquén,AR-Q,annual,2014,naphtha combustion consumption by to the public,1062.8564408,TJ,N2O,0.6,kg/TJ,637.71386448,kg +67368fa6-f1cc-33a3-ac9d-7ee0d2c60bf2,SESCO,II.1.1,Rio Negro,AR-R,annual,2014,naphtha combustion consumption by to the public,1063.9912975999998,TJ,CO2,73300.0,kg/TJ,77990562.11407998,kg +c2b79a30-6f0b-3f71-be10-13f838aca68c,SESCO,II.1.1,Rio Negro,AR-R,annual,2014,naphtha combustion consumption by to the public,1063.9912975999998,TJ,CH4,3.0,kg/TJ,3191.9738927999997,kg +d1a45f1c-2d46-3a98-8b96-2152097bc383,SESCO,II.1.1,Rio Negro,AR-R,annual,2014,naphtha combustion consumption by to the public,1063.9912975999998,TJ,N2O,0.6,kg/TJ,638.3947785599998,kg +0a861704-af77-3f34-b32c-7acdd3e9f98a,SESCO,II.1.1,Salta,AR-A,annual,2014,naphtha combustion consumption by to the public,644.5356148,TJ,CO2,73300.0,kg/TJ,47244460.56484,kg +ac69e10f-bb78-33d2-a63d-d680b926e11e,SESCO,II.1.1,Salta,AR-A,annual,2014,naphtha combustion consumption by to the public,644.5356148,TJ,CH4,3.0,kg/TJ,1933.6068443999998,kg +8231d771-a711-3c00-841d-b1f9f257169c,SESCO,II.1.1,Salta,AR-A,annual,2014,naphtha combustion consumption by to the public,644.5356148,TJ,N2O,0.6,kg/TJ,386.72136887999994,kg +0b081133-42e8-38ca-b73e-d53bf1cc7bb8,SESCO,II.1.1,San Juan,AR-J,annual,2014,naphtha combustion consumption by to the public,555.9852606,TJ,CO2,73300.0,kg/TJ,40753719.60197999,kg +c5e9d0f3-3081-33da-a872-080515103b8b,SESCO,II.1.1,San Juan,AR-J,annual,2014,naphtha combustion consumption by to the public,555.9852606,TJ,CH4,3.0,kg/TJ,1667.9557817999998,kg +9973d1b4-0eda-3fc1-a76d-42ca43406bd8,SESCO,II.1.1,San Juan,AR-J,annual,2014,naphtha combustion consumption by to the public,555.9852606,TJ,N2O,0.6,kg/TJ,333.59115635999996,kg +a79d2bd2-8d34-3925-a7c2-e8320f44d76a,SESCO,II.1.1,San Luis,AR-D,annual,2014,naphtha combustion consumption by to the public,544.2899308,TJ,CO2,73300.0,kg/TJ,39896451.92764,kg +5d95ba9b-e549-35e2-9181-2a4cc948241b,SESCO,II.1.1,San Luis,AR-D,annual,2014,naphtha combustion consumption by to the public,544.2899308,TJ,CH4,3.0,kg/TJ,1632.8697923999998,kg +dee6c367-b9ab-3bbb-b4ff-6bb23623ac9c,SESCO,II.1.1,San Luis,AR-D,annual,2014,naphtha combustion consumption by to the public,544.2899308,TJ,N2O,0.6,kg/TJ,326.57395848,kg +ce1d0e32-0812-3139-bbc7-e6fa97f5ffd4,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2014,naphtha combustion consumption by to the public,538.0166945999999,TJ,CO2,73300.0,kg/TJ,39436623.71417999,kg +f6a79d28-7df8-3250-90bf-ac0a7f915b07,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2014,naphtha combustion consumption by to the public,538.0166945999999,TJ,CH4,3.0,kg/TJ,1614.0500837999998,kg +3ad35ec0-0759-31eb-828e-533de0f89a46,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2014,naphtha combustion consumption by to the public,538.0166945999999,TJ,N2O,0.6,kg/TJ,322.81001675999994,kg +7a91ab94-77f5-3c6a-bd1f-91c14c499f55,SESCO,II.1.1,Santa Fe,AR-S,annual,2014,naphtha combustion consumption by to the public,2824.5955275999995,TJ,CO2,73300.0,kg/TJ,207042852.17307997,kg +2a9394c8-9309-3235-939e-5c1f2b7e40a7,SESCO,II.1.1,Santa Fe,AR-S,annual,2014,naphtha combustion consumption by to the public,2824.5955275999995,TJ,CH4,3.0,kg/TJ,8473.7865828,kg +a94bef11-4783-386b-a390-2478d8ee655e,SESCO,II.1.1,Santa Fe,AR-S,annual,2014,naphtha combustion consumption by to the public,2824.5955275999995,TJ,N2O,0.6,kg/TJ,1694.7573165599997,kg +e5287b65-0afb-34a5-af41-59abe3ed0ede,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2014,naphtha combustion consumption by to the public,502.8991814,TJ,CO2,73300.0,kg/TJ,36862509.99662,kg +42f1c2b4-eca0-333e-81c6-3d8959b345a6,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2014,naphtha combustion consumption by to the public,502.8991814,TJ,CH4,3.0,kg/TJ,1508.6975441999998,kg +53198ed4-529c-3ed3-b924-94469e3e2f7c,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2014,naphtha combustion consumption by to the public,502.8991814,TJ,N2O,0.6,kg/TJ,301.73950884,kg +73be79ef-6576-389a-a94d-9e52747ba41e,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2014,naphtha combustion consumption by to the public,62.889981,TJ,CO2,73300.0,kg/TJ,4609835.6073,kg +3648a9de-f2df-335d-85d6-ff0f59164c2b,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2014,naphtha combustion consumption by to the public,62.889981,TJ,CH4,3.0,kg/TJ,188.669943,kg +18a75947-45d7-3588-b456-1a4948afbaae,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2014,naphtha combustion consumption by to the public,62.889981,TJ,N2O,0.6,kg/TJ,37.733988599999996,kg +6ad72a23-706b-31b5-bd64-fb5f4f30795e,SESCO,II.1.1,Tucuman,AR-T,annual,2014,naphtha combustion consumption by to the public,496.7520404,TJ,CO2,73300.0,kg/TJ,36411924.56132,kg +cc2233c1-ec3b-32cc-91b7-c07254ab87e3,SESCO,II.1.1,Tucuman,AR-T,annual,2014,naphtha combustion consumption by to the public,496.7520404,TJ,CH4,3.0,kg/TJ,1490.2561212,kg +a10d81bf-3ab6-312d-ac4d-ef9dfb408f8e,SESCO,II.1.1,Tucuman,AR-T,annual,2014,naphtha combustion consumption by to the public,496.7520404,TJ,N2O,0.6,kg/TJ,298.05122424,kg +786e2b23-1b96-367a-9800-39882c4d7fe7,SESCO,II.1.1,Buenos Aires,AR-B,annual,2014,naphtha combustion consumption by freight transport,181.8292784,TJ,CO2,73300.0,kg/TJ,13328086.106719999,kg +de377a62-a1e8-3e7f-b020-373a1e9b5f96,SESCO,II.1.1,Buenos Aires,AR-B,annual,2014,naphtha combustion consumption by freight transport,181.8292784,TJ,CH4,3.0,kg/TJ,545.4878352,kg +f3e2215b-b3a5-313f-92a4-757d0e68521d,SESCO,II.1.1,Buenos Aires,AR-B,annual,2014,naphtha combustion consumption by freight transport,181.8292784,TJ,N2O,0.6,kg/TJ,109.09756703999999,kg +f8b8d5aa-c3c4-3946-b73e-24f4300efd48,SESCO,II.1.1,Capital Federal,AR-C,annual,2014,naphtha combustion consumption by freight transport,197.49660699999998,TJ,CO2,73300.0,kg/TJ,14476501.2931,kg +8addc9e5-69e3-368b-a54d-813b104b12c1,SESCO,II.1.1,Capital Federal,AR-C,annual,2014,naphtha combustion consumption by freight transport,197.49660699999998,TJ,CH4,3.0,kg/TJ,592.4898209999999,kg +00176249-8377-3679-840b-261a4b03863d,SESCO,II.1.1,Capital Federal,AR-C,annual,2014,naphtha combustion consumption by freight transport,197.49660699999998,TJ,N2O,0.6,kg/TJ,118.49796419999998,kg +ff4ef875-5f4a-38a8-813d-862f774884bb,SESCO,II.1.1,Chaco,AR-H,annual,2014,naphtha combustion consumption by freight transport,5.0122842,TJ,CO2,73300.0,kg/TJ,367400.43186,kg +1f785e34-a44f-31bb-8870-40610e0b4735,SESCO,II.1.1,Chaco,AR-H,annual,2014,naphtha combustion consumption by freight transport,5.0122842,TJ,CH4,3.0,kg/TJ,15.0368526,kg +b2f2d43f-3c15-34fd-a805-f5e5675e4234,SESCO,II.1.1,Chaco,AR-H,annual,2014,naphtha combustion consumption by freight transport,5.0122842,TJ,N2O,0.6,kg/TJ,3.00737052,kg +61119b30-e7b5-3dd0-902d-ba17dce8fe4a,SESCO,II.1.1,Chubut,AR-U,annual,2014,naphtha combustion consumption by freight transport,0.5043808,TJ,CO2,73300.0,kg/TJ,36971.11264,kg +45b7d5f2-9c03-31ee-8c4f-cfef34f8fcb1,SESCO,II.1.1,Chubut,AR-U,annual,2014,naphtha combustion consumption by freight transport,0.5043808,TJ,CH4,3.0,kg/TJ,1.5131424,kg +c801d87c-ab19-3012-8e27-886730a30bed,SESCO,II.1.1,Chubut,AR-U,annual,2014,naphtha combustion consumption by freight transport,0.5043808,TJ,N2O,0.6,kg/TJ,0.30262848,kg +0ec84690-391c-3615-98f2-78196b28049f,SESCO,II.1.1,Corrientes,AR-W,annual,2014,naphtha combustion consumption by freight transport,1.6077138,TJ,CO2,73300.0,kg/TJ,117845.42154,kg +986406b5-a65f-37fa-a972-c9a8fbbcff64,SESCO,II.1.1,Corrientes,AR-W,annual,2014,naphtha combustion consumption by freight transport,1.6077138,TJ,CH4,3.0,kg/TJ,4.8231414,kg +634dc8df-1cb1-3d48-a796-0d44d66055bf,SESCO,II.1.1,Corrientes,AR-W,annual,2014,naphtha combustion consumption by freight transport,1.6077138,TJ,N2O,0.6,kg/TJ,0.9646282799999999,kg +a201234a-23e8-36e0-9208-83daebc0be90,SESCO,II.1.1,Córdoba,AR-X,annual,2014,naphtha combustion consumption by freight transport,4.9492366,TJ,CO2,73300.0,kg/TJ,362779.04278,kg +99f3e944-63a0-3273-b8be-bbe056a603d6,SESCO,II.1.1,Córdoba,AR-X,annual,2014,naphtha combustion consumption by freight transport,4.9492366,TJ,CH4,3.0,kg/TJ,14.8477098,kg +a464298b-ef1e-3f36-b5b9-2393deb49779,SESCO,II.1.1,Córdoba,AR-X,annual,2014,naphtha combustion consumption by freight transport,4.9492366,TJ,N2O,0.6,kg/TJ,2.96954196,kg +2756e267-190a-3ba0-b1f7-c9f7568b242b,SESCO,II.1.1,Entre Rios,AR-E,annual,2014,naphtha combustion consumption by freight transport,1.8283804,TJ,CO2,73300.0,kg/TJ,134020.28332,kg +74ca6039-3a97-3d46-a74f-f0fe7942609f,SESCO,II.1.1,Entre Rios,AR-E,annual,2014,naphtha combustion consumption by freight transport,1.8283804,TJ,CH4,3.0,kg/TJ,5.485141199999999,kg +a94d7aca-04a5-38e5-9e12-27f199195e97,SESCO,II.1.1,Entre Rios,AR-E,annual,2014,naphtha combustion consumption by freight transport,1.8283804,TJ,N2O,0.6,kg/TJ,1.09702824,kg +d127e758-d63d-3672-9b1f-4a7d7cb68a84,SESCO,II.1.1,Mendoza,AR-M,annual,2014,naphtha combustion consumption by freight transport,4.9492366,TJ,CO2,73300.0,kg/TJ,362779.04278,kg +32723ee2-69a4-3ed0-acf3-1efb01b90459,SESCO,II.1.1,Mendoza,AR-M,annual,2014,naphtha combustion consumption by freight transport,4.9492366,TJ,CH4,3.0,kg/TJ,14.8477098,kg +9b5a7be9-38a9-3d74-93eb-2ed993ae971c,SESCO,II.1.1,Mendoza,AR-M,annual,2014,naphtha combustion consumption by freight transport,4.9492366,TJ,N2O,0.6,kg/TJ,2.96954196,kg +506715ba-a4ac-3327-b4c9-aa0af8f21e95,SESCO,II.1.1,Misiones,AR-N,annual,2014,naphtha combustion consumption by freight transport,0.5674283999999999,TJ,CO2,73300.0,kg/TJ,41592.50171999999,kg +07c145f3-3fe3-337d-ba9e-a48075f4682c,SESCO,II.1.1,Misiones,AR-N,annual,2014,naphtha combustion consumption by freight transport,0.5674283999999999,TJ,CH4,3.0,kg/TJ,1.7022852,kg +f7d73caf-20bd-3fbb-b6b1-051e15ec40d4,SESCO,II.1.1,Misiones,AR-N,annual,2014,naphtha combustion consumption by freight transport,0.5674283999999999,TJ,N2O,0.6,kg/TJ,0.34045703999999993,kg +0c12b029-be25-342c-98b3-b6fe4260be2b,SESCO,II.1.1,Neuquén,AR-Q,annual,2014,naphtha combustion consumption by freight transport,0.2521904,TJ,CO2,73300.0,kg/TJ,18485.55632,kg +a9ad05cc-a9e8-314a-986e-7750e1cd8b28,SESCO,II.1.1,Neuquén,AR-Q,annual,2014,naphtha combustion consumption by freight transport,0.2521904,TJ,CH4,3.0,kg/TJ,0.7565712,kg +b5ee9f3d-41ed-38c9-ac94-2a83e24698d7,SESCO,II.1.1,Neuquén,AR-Q,annual,2014,naphtha combustion consumption by freight transport,0.2521904,TJ,N2O,0.6,kg/TJ,0.15131424,kg +89e4a9b0-60f3-3d2e-b100-e3b5f5a3b246,SESCO,II.1.1,Rio Negro,AR-R,annual,2014,naphtha combustion consumption by freight transport,1.6392376,TJ,CO2,73300.0,kg/TJ,120156.11607999999,kg +296f5f3c-43b0-309b-846e-8201f8078014,SESCO,II.1.1,Rio Negro,AR-R,annual,2014,naphtha combustion consumption by freight transport,1.6392376,TJ,CH4,3.0,kg/TJ,4.9177128,kg +ab567da6-12cc-33b2-bc30-531afcd436c4,SESCO,II.1.1,Rio Negro,AR-R,annual,2014,naphtha combustion consumption by freight transport,1.6392376,TJ,N2O,0.6,kg/TJ,0.98354256,kg +2b747ecb-a1b1-31f8-b698-e38ff30db097,SESCO,II.1.1,Salta,AR-A,annual,2014,naphtha combustion consumption by freight transport,10.245235,TJ,CO2,73300.0,kg/TJ,750975.7255,kg +aedb27a3-64ff-3937-a65c-d46fca8d3b41,SESCO,II.1.1,Salta,AR-A,annual,2014,naphtha combustion consumption by freight transport,10.245235,TJ,CH4,3.0,kg/TJ,30.735704999999996,kg +9c996e7a-7362-39f6-9ab7-220625d9f08e,SESCO,II.1.1,Salta,AR-A,annual,2014,naphtha combustion consumption by freight transport,10.245235,TJ,N2O,0.6,kg/TJ,6.1471409999999995,kg +9ec26297-599c-3c9e-af55-1da5257a775e,SESCO,II.1.1,San Juan,AR-J,annual,2014,naphtha combustion consumption by freight transport,0.0630476,TJ,CO2,73300.0,kg/TJ,4621.38908,kg +e76f0ef4-b74a-3b3f-a26e-cc28929a1037,SESCO,II.1.1,San Juan,AR-J,annual,2014,naphtha combustion consumption by freight transport,0.0630476,TJ,CH4,3.0,kg/TJ,0.1891428,kg +22d61689-21d6-32c6-aa77-1643dfa75c24,SESCO,II.1.1,San Juan,AR-J,annual,2014,naphtha combustion consumption by freight transport,0.0630476,TJ,N2O,0.6,kg/TJ,0.03782856,kg +e9474df3-f5ee-357c-8b8f-b088959ba38b,SESCO,II.1.1,San Luis,AR-D,annual,2014,naphtha combustion consumption by freight transport,0.2521904,TJ,CO2,73300.0,kg/TJ,18485.55632,kg +3c1299c6-b2ed-36a5-be61-20e25f83ca5f,SESCO,II.1.1,San Luis,AR-D,annual,2014,naphtha combustion consumption by freight transport,0.2521904,TJ,CH4,3.0,kg/TJ,0.7565712,kg +9862f300-1864-3b2d-9112-dc7561299936,SESCO,II.1.1,San Luis,AR-D,annual,2014,naphtha combustion consumption by freight transport,0.2521904,TJ,N2O,0.6,kg/TJ,0.15131424,kg +074e4cf3-6761-377b-820d-8682a238f045,SESCO,II.1.1,Santa Fe,AR-S,annual,2014,naphtha combustion consumption by freight transport,15.887995199999999,TJ,CO2,73300.0,kg/TJ,1164590.04816,kg +e2f71466-e462-3df8-ba18-64a98ce8a6cd,SESCO,II.1.1,Santa Fe,AR-S,annual,2014,naphtha combustion consumption by freight transport,15.887995199999999,TJ,CH4,3.0,kg/TJ,47.6639856,kg +d8d30076-711f-37bf-8110-e48b7ca83b89,SESCO,II.1.1,Santa Fe,AR-S,annual,2014,naphtha combustion consumption by freight transport,15.887995199999999,TJ,N2O,0.6,kg/TJ,9.53279712,kg +141eba78-27ed-3c9b-aba6-126c56592376,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2014,naphtha combustion consumption by freight transport,0.0315238,TJ,CO2,73300.0,kg/TJ,2310.69454,kg +3c361047-cfa2-3633-b5c4-6e6c488fefb8,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2014,naphtha combustion consumption by freight transport,0.0315238,TJ,CH4,3.0,kg/TJ,0.0945714,kg +144d1d16-8723-30f2-9df6-f2d1d4b118b1,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2014,naphtha combustion consumption by freight transport,0.0315238,TJ,N2O,0.6,kg/TJ,0.01891428,kg +27d1ac21-9cb6-349c-bc4c-def761a97b13,SESCO,II.1.1,Tucuman,AR-T,annual,2014,naphtha combustion consumption by freight transport,1.1979043999999999,TJ,CO2,73300.0,kg/TJ,87806.39252,kg +2afcd4a6-8685-3847-aba7-112e88835e10,SESCO,II.1.1,Tucuman,AR-T,annual,2014,naphtha combustion consumption by freight transport,1.1979043999999999,TJ,CH4,3.0,kg/TJ,3.5937132,kg +c001904c-705a-3b19-84ca-79a73c44978d,SESCO,II.1.1,Tucuman,AR-T,annual,2014,naphtha combustion consumption by freight transport,1.1979043999999999,TJ,N2O,0.6,kg/TJ,0.7187426399999999,kg +aa8a4796-5272-39fc-85e4-93a91b1aa8a3,SESCO,II.1.1,Buenos Aires,AR-B,annual,2014,naphtha combustion consumption by freight transport,182.83803999999998,TJ,CO2,73300.0,kg/TJ,13402028.331999999,kg +1bf356cf-bdef-31d6-8b9c-638fa5fd6e4f,SESCO,II.1.1,Buenos Aires,AR-B,annual,2014,naphtha combustion consumption by freight transport,182.83803999999998,TJ,CH4,3.0,kg/TJ,548.5141199999999,kg +8dcd0c0f-3031-3ccc-aebf-d3f59642e4bc,SESCO,II.1.1,Buenos Aires,AR-B,annual,2014,naphtha combustion consumption by freight transport,182.83803999999998,TJ,N2O,0.6,kg/TJ,109.70282399999998,kg +d55607e0-514d-3d14-bacd-e7c5f2179568,SESCO,II.1.1,Capital Federal,AR-C,annual,2014,naphtha combustion consumption by freight transport,178.9921364,TJ,CO2,73300.0,kg/TJ,13120123.59812,kg +8c20e3ab-a539-3977-bd9c-044c85d9acd3,SESCO,II.1.1,Capital Federal,AR-C,annual,2014,naphtha combustion consumption by freight transport,178.9921364,TJ,CH4,3.0,kg/TJ,536.9764092,kg +73d0b85b-c954-393c-a4fc-c318b3ef8ea6,SESCO,II.1.1,Capital Federal,AR-C,annual,2014,naphtha combustion consumption by freight transport,178.9921364,TJ,N2O,0.6,kg/TJ,107.39528184,kg +bcfded3b-445b-3ef9-995b-558e887d8561,SESCO,II.1.1,Chaco,AR-H,annual,2014,naphtha combustion consumption by freight transport,5.9264744,TJ,CO2,73300.0,kg/TJ,434410.57352,kg +f4ca5441-0bc3-3ae3-a255-82dc834ba3b8,SESCO,II.1.1,Chaco,AR-H,annual,2014,naphtha combustion consumption by freight transport,5.9264744,TJ,CH4,3.0,kg/TJ,17.7794232,kg +1daa1544-3750-3405-b19d-989d5a7d068d,SESCO,II.1.1,Chaco,AR-H,annual,2014,naphtha combustion consumption by freight transport,5.9264744,TJ,N2O,0.6,kg/TJ,3.55588464,kg +9e5236d0-7225-33eb-91d5-b39b1d04aad8,SESCO,II.1.1,Chubut,AR-U,annual,2014,naphtha combustion consumption by freight transport,0.4098094,TJ,CO2,73300.0,kg/TJ,30039.029019999998,kg +522fca75-a8bf-385e-8acb-410a6d8aeca4,SESCO,II.1.1,Chubut,AR-U,annual,2014,naphtha combustion consumption by freight transport,0.4098094,TJ,CH4,3.0,kg/TJ,1.2294282,kg +ded89e2c-11bb-301c-97b1-1371c27e6b53,SESCO,II.1.1,Chubut,AR-U,annual,2014,naphtha combustion consumption by freight transport,0.4098094,TJ,N2O,0.6,kg/TJ,0.24588564,kg +7ab15674-8056-33af-832f-d669208ad556,SESCO,II.1.1,Corrientes,AR-W,annual,2014,naphtha combustion consumption by freight transport,2.6479991999999997,TJ,CO2,73300.0,kg/TJ,194098.34135999996,kg +985a0cde-5710-3a04-b40e-cbe9541bd330,SESCO,II.1.1,Corrientes,AR-W,annual,2014,naphtha combustion consumption by freight transport,2.6479991999999997,TJ,CH4,3.0,kg/TJ,7.943997599999999,kg +82323341-c405-3ab0-a19c-2ee2a168fcc5,SESCO,II.1.1,Corrientes,AR-W,annual,2014,naphtha combustion consumption by freight transport,2.6479991999999997,TJ,N2O,0.6,kg/TJ,1.5887995199999998,kg +a90fc728-8727-3fa4-b484-ac23ab11a246,SESCO,II.1.1,Córdoba,AR-X,annual,2014,naphtha combustion consumption by freight transport,4.886188999999999,TJ,CO2,73300.0,kg/TJ,358157.6536999999,kg +1862ffae-9b4b-3536-a483-9d99afb4748c,SESCO,II.1.1,Córdoba,AR-X,annual,2014,naphtha combustion consumption by freight transport,4.886188999999999,TJ,CH4,3.0,kg/TJ,14.658566999999998,kg +5e28e3a5-7a1b-349c-82a9-fafa2c41fc7b,SESCO,II.1.1,Córdoba,AR-X,annual,2014,naphtha combustion consumption by freight transport,4.886188999999999,TJ,N2O,0.6,kg/TJ,2.931713399999999,kg +26e077c0-0c2b-3fe0-923f-91ef3ff59565,SESCO,II.1.1,Entre Rios,AR-E,annual,2014,naphtha combustion consumption by freight transport,2.049047,TJ,CO2,73300.0,kg/TJ,150195.1451,kg +57f655a1-75da-3832-94cc-08432e2d6367,SESCO,II.1.1,Entre Rios,AR-E,annual,2014,naphtha combustion consumption by freight transport,2.049047,TJ,CH4,3.0,kg/TJ,6.1471409999999995,kg +17bba64a-7067-3fe8-9161-591e07959ff4,SESCO,II.1.1,Entre Rios,AR-E,annual,2014,naphtha combustion consumption by freight transport,2.049047,TJ,N2O,0.6,kg/TJ,1.2294281999999999,kg +82ff8b04-448e-3ed4-bec7-f0dfd92c07ab,SESCO,II.1.1,Jujuy,AR-Y,annual,2014,naphtha combustion consumption by freight transport,0.09457139999999999,TJ,CO2,73300.0,kg/TJ,6932.083619999999,kg +ae4186e2-1ae7-3f4c-a318-15b8bf6218db,SESCO,II.1.1,Jujuy,AR-Y,annual,2014,naphtha combustion consumption by freight transport,0.09457139999999999,TJ,CH4,3.0,kg/TJ,0.28371419999999997,kg +6e9774a2-c9d1-3d6d-aa23-adef76ce937f,SESCO,II.1.1,Jujuy,AR-Y,annual,2014,naphtha combustion consumption by freight transport,0.09457139999999999,TJ,N2O,0.6,kg/TJ,0.05674283999999999,kg +8c7c8c30-26c1-33dd-9bbb-796035a66324,SESCO,II.1.1,La Rioja,AR-F,annual,2014,naphtha combustion consumption by freight transport,0.47285699999999997,TJ,CO2,73300.0,kg/TJ,34660.418099999995,kg +18a169ed-5a70-3ab1-a5e0-e0139db31381,SESCO,II.1.1,La Rioja,AR-F,annual,2014,naphtha combustion consumption by freight transport,0.47285699999999997,TJ,CH4,3.0,kg/TJ,1.418571,kg +70b47f85-a626-3748-91c0-a836b2b47d22,SESCO,II.1.1,La Rioja,AR-F,annual,2014,naphtha combustion consumption by freight transport,0.47285699999999997,TJ,N2O,0.6,kg/TJ,0.28371419999999997,kg +53c19eba-4571-3964-a89f-fc3b932a7e28,SESCO,II.1.1,Mendoza,AR-M,annual,2014,naphtha combustion consumption by freight transport,4.129617799999999,TJ,CO2,73300.0,kg/TJ,302700.9847399999,kg +290fa7e5-86e1-3c91-9b21-5e938a53ebd3,SESCO,II.1.1,Mendoza,AR-M,annual,2014,naphtha combustion consumption by freight transport,4.129617799999999,TJ,CH4,3.0,kg/TJ,12.388853399999999,kg +f85b3638-d3e0-3653-9cce-f0d40c5312e8,SESCO,II.1.1,Mendoza,AR-M,annual,2014,naphtha combustion consumption by freight transport,4.129617799999999,TJ,N2O,0.6,kg/TJ,2.4777706799999994,kg +a454ffe8-c236-36d0-b1ad-7337da6d98e2,SESCO,II.1.1,Misiones,AR-N,annual,2014,naphtha combustion consumption by freight transport,0.7565711999999999,TJ,CO2,73300.0,kg/TJ,55456.668959999995,kg +4e8ef685-7b0b-3c12-a024-01a0b0c6455e,SESCO,II.1.1,Misiones,AR-N,annual,2014,naphtha combustion consumption by freight transport,0.7565711999999999,TJ,CH4,3.0,kg/TJ,2.2697135999999998,kg +70cac9b0-f154-34fc-aa13-97f60205ad01,SESCO,II.1.1,Misiones,AR-N,annual,2014,naphtha combustion consumption by freight transport,0.7565711999999999,TJ,N2O,0.6,kg/TJ,0.4539427199999999,kg +0c12b029-be25-342c-98b3-b6fe4260be2b,SESCO,II.1.1,Neuquén,AR-Q,annual,2014,naphtha combustion consumption by freight transport,0.2521904,TJ,CO2,73300.0,kg/TJ,18485.55632,kg +a9ad05cc-a9e8-314a-986e-7750e1cd8b28,SESCO,II.1.1,Neuquén,AR-Q,annual,2014,naphtha combustion consumption by freight transport,0.2521904,TJ,CH4,3.0,kg/TJ,0.7565712,kg +b5ee9f3d-41ed-38c9-ac94-2a83e24698d7,SESCO,II.1.1,Neuquén,AR-Q,annual,2014,naphtha combustion consumption by freight transport,0.2521904,TJ,N2O,0.6,kg/TJ,0.15131424,kg +1ddbf8e7-df26-3bcf-b7c6-30898ce9f9e9,SESCO,II.1.1,Rio Negro,AR-R,annual,2014,naphtha combustion consumption by freight transport,1.8914279999999999,TJ,CO2,73300.0,kg/TJ,138641.67239999998,kg +824b43f4-1917-36c5-a5d4-089ac09c1293,SESCO,II.1.1,Rio Negro,AR-R,annual,2014,naphtha combustion consumption by freight transport,1.8914279999999999,TJ,CH4,3.0,kg/TJ,5.674284,kg +a9fd78f4-fd68-3263-80f4-180ba8ca20d5,SESCO,II.1.1,Rio Negro,AR-R,annual,2014,naphtha combustion consumption by freight transport,1.8914279999999999,TJ,N2O,0.6,kg/TJ,1.1348567999999999,kg +ce319457-6883-380e-b4c7-484b92fb65c9,SESCO,II.1.1,Salta,AR-A,annual,2014,naphtha combustion consumption by freight transport,1.0087616,TJ,CO2,73300.0,kg/TJ,73942.22528,kg +73c30594-57ed-34de-971f-88fbcb6dade2,SESCO,II.1.1,Salta,AR-A,annual,2014,naphtha combustion consumption by freight transport,1.0087616,TJ,CH4,3.0,kg/TJ,3.0262848,kg +076e25d1-a844-3ae8-95f1-ead5ffb87ddd,SESCO,II.1.1,Salta,AR-A,annual,2014,naphtha combustion consumption by freight transport,1.0087616,TJ,N2O,0.6,kg/TJ,0.60525696,kg +840427fb-ce14-3104-9c94-979e9b53d540,SESCO,II.1.1,San Luis,AR-D,annual,2014,naphtha combustion consumption by freight transport,0.34676179999999995,TJ,CO2,73300.0,kg/TJ,25417.639939999997,kg +f07de3e8-cbf3-3a04-b18a-398e380b880d,SESCO,II.1.1,San Luis,AR-D,annual,2014,naphtha combustion consumption by freight transport,0.34676179999999995,TJ,CH4,3.0,kg/TJ,1.0402854,kg +876f014d-08a7-3fe7-963b-379b8c2dd753,SESCO,II.1.1,San Luis,AR-D,annual,2014,naphtha combustion consumption by freight transport,0.34676179999999995,TJ,N2O,0.6,kg/TJ,0.20805707999999998,kg +37d2b3d1-1679-334e-9558-05f3a4185a7b,SESCO,II.1.1,Santa Fe,AR-S,annual,2014,naphtha combustion consumption by freight transport,21.6883744,TJ,CO2,73300.0,kg/TJ,1589757.84352,kg +bfe6a0aa-2246-3cba-8a60-819af46f4b44,SESCO,II.1.1,Santa Fe,AR-S,annual,2014,naphtha combustion consumption by freight transport,21.6883744,TJ,CH4,3.0,kg/TJ,65.0651232,kg +36db6474-a632-3f6b-bb32-0e4baad86af5,SESCO,II.1.1,Santa Fe,AR-S,annual,2014,naphtha combustion consumption by freight transport,21.6883744,TJ,N2O,0.6,kg/TJ,13.01302464,kg +58950076-65f1-3f2b-bbc5-3ca59a56bc93,SESCO,II.1.1,Tucuman,AR-T,annual,2014,naphtha combustion consumption by freight transport,0.7565711999999999,TJ,CO2,73300.0,kg/TJ,55456.668959999995,kg +d4509dbd-130a-39ea-8af4-e26e2fc10cb7,SESCO,II.1.1,Tucuman,AR-T,annual,2014,naphtha combustion consumption by freight transport,0.7565711999999999,TJ,CH4,3.0,kg/TJ,2.2697135999999998,kg +b055b2b7-8f64-3bd2-ba3c-18d959a6812b,SESCO,II.1.1,Tucuman,AR-T,annual,2014,naphtha combustion consumption by freight transport,0.7565711999999999,TJ,N2O,0.6,kg/TJ,0.4539427199999999,kg +74a1073d-af8d-3d3e-86d9-8278e2ebb3d8,SESCO,II.1.1,Buenos Aires,AR-B,annual,2014,naphtha combustion consumption by public passenger transport,0.18914279999999997,TJ,CO2,73300.0,kg/TJ,13864.167239999999,kg +6a1964c9-7312-3609-bfec-dd3d8eb9a7a3,SESCO,II.1.1,Buenos Aires,AR-B,annual,2014,naphtha combustion consumption by public passenger transport,0.18914279999999997,TJ,CH4,3.0,kg/TJ,0.5674283999999999,kg +aaf351f8-2d9a-3386-97da-05645abe230c,SESCO,II.1.1,Buenos Aires,AR-B,annual,2014,naphtha combustion consumption by public passenger transport,0.18914279999999997,TJ,N2O,0.6,kg/TJ,0.11348567999999998,kg +aecd8e8b-3a27-37da-8ed1-192d4e3eb51c,SESCO,II.1.1,Capital Federal,AR-C,annual,2015,naphtha combustion consumption by to the public,22.8869641,TJ,CO2,73300.0,kg/TJ,1677614.46853,kg +cbe8c701-d396-3133-8aac-f3d6f52550b8,SESCO,II.1.1,Capital Federal,AR-C,annual,2015,naphtha combustion consumption by to the public,22.8869641,TJ,CH4,3.0,kg/TJ,68.6608923,kg +2ba102df-4221-3a7e-9ae6-8b7b66ea241d,SESCO,II.1.1,Capital Federal,AR-C,annual,2015,naphtha combustion consumption by to the public,22.8869641,TJ,N2O,0.6,kg/TJ,13.73217846,kg +7a81716d-7813-3c97-a0e2-a51c075e0c8d,SESCO,II.1.1,Capital Federal,AR-C,annual,2015,naphtha combustion consumption by to the public,7.078121049999999,TJ,CO2,73300.0,kg/TJ,518826.27296499995,kg +9cdd8d0a-6b32-3ce2-8f8e-ca3317496901,SESCO,II.1.1,Capital Federal,AR-C,annual,2015,naphtha combustion consumption by to the public,7.078121049999999,TJ,CH4,3.0,kg/TJ,21.234363149999997,kg +e477856f-03d0-3c43-be77-2d25b34134fc,SESCO,II.1.1,Capital Federal,AR-C,annual,2015,naphtha combustion consumption by to the public,7.078121049999999,TJ,N2O,0.6,kg/TJ,4.2468726299999995,kg +7fe027bd-c329-35a1-93ab-fdf9c65f0245,SESCO,II.5.1,Córdoba,AR-X,annual,2015,naphtha combustion consumption by agriculture machines,6.766309549999999,TJ,CO2,73300.0,kg/TJ,495970.49001499993,kg +802e5077-a824-3c9a-9ed8-ad2986983e51,SESCO,II.5.1,Córdoba,AR-X,annual,2015,naphtha combustion consumption by agriculture machines,6.766309549999999,TJ,CH4,3.0,kg/TJ,20.298928649999997,kg +6deb7aaf-f9c9-384e-8486-6c374d76bc62,SESCO,II.5.1,Córdoba,AR-X,annual,2015,naphtha combustion consumption by agriculture machines,6.766309549999999,TJ,N2O,0.6,kg/TJ,4.059785729999999,kg +503146f2-890e-3976-a74a-9efc6364d4fe,SESCO,II.5.1,Santa Fe,AR-S,annual,2015,naphtha combustion consumption by agriculture machines,17.1496325,TJ,CO2,73300.0,kg/TJ,1257068.06225,kg +8362ca99-3b8e-36c0-bc82-6d66fd835537,SESCO,II.5.1,Santa Fe,AR-S,annual,2015,naphtha combustion consumption by agriculture machines,17.1496325,TJ,CH4,3.0,kg/TJ,51.4488975,kg +5c0c4695-f1e3-3122-ac58-6365ff281de3,SESCO,II.5.1,Santa Fe,AR-S,annual,2015,naphtha combustion consumption by agriculture machines,17.1496325,TJ,N2O,0.6,kg/TJ,10.2897795,kg +85120266-3fa9-3342-a9c9-abc017c7fbf6,SESCO,II.5.1,Córdoba,AR-X,annual,2015,naphtha combustion consumption by agriculture machines,3.3675642,TJ,CO2,73300.0,kg/TJ,246842.45586,kg +84962e06-2f67-3de2-9063-12a03f13427c,SESCO,II.5.1,Córdoba,AR-X,annual,2015,naphtha combustion consumption by agriculture machines,3.3675642,TJ,CH4,3.0,kg/TJ,10.1026926,kg +a26da804-2904-3282-bdb9-aebb7065ec7e,SESCO,II.5.1,Córdoba,AR-X,annual,2015,naphtha combustion consumption by agriculture machines,3.3675642,TJ,N2O,0.6,kg/TJ,2.0205385199999997,kg +601f49ac-0978-3f65-aa7d-a71bf83f13e4,SESCO,II.5.1,Santa Fe,AR-S,annual,2015,naphtha combustion consumption by agriculture machines,6.14268655,TJ,CO2,73300.0,kg/TJ,450258.924115,kg +9cddfdf6-f860-368a-acd8-7eb23aecbd0f,SESCO,II.5.1,Santa Fe,AR-S,annual,2015,naphtha combustion consumption by agriculture machines,6.14268655,TJ,CH4,3.0,kg/TJ,18.428059649999998,kg +f17987ed-3efc-3ab2-a567-b907266c3588,SESCO,II.5.1,Santa Fe,AR-S,annual,2015,naphtha combustion consumption by agriculture machines,6.14268655,TJ,N2O,0.6,kg/TJ,3.6856119299999994,kg +d6ad05f6-480c-32f1-9e9b-59f53017dc39,SESCO,II.1.1,Buenos Aires,AR-B,annual,2015,naphtha combustion consumption by to the public,8995.91821706578,TJ,CO2,73300.0,kg/TJ,659400805.3109217,kg +dc2df741-650c-37bb-a177-d65b74261952,SESCO,II.1.1,Buenos Aires,AR-B,annual,2015,naphtha combustion consumption by to the public,8995.91821706578,TJ,CH4,3.0,kg/TJ,26987.75465119734,kg +1aa2ab64-1125-3a01-8e6e-68f40084ddb7,SESCO,II.1.1,Buenos Aires,AR-B,annual,2015,naphtha combustion consumption by to the public,8995.91821706578,TJ,N2O,0.6,kg/TJ,5397.5509302394685,kg +c7c1b348-2eab-3699-9045-01347322bdcc,SESCO,II.1.1,Capital Federal,AR-C,annual,2015,naphtha combustion consumption by to the public,3220.3946037563296,TJ,CO2,73300.0,kg/TJ,236054924.45533895,kg +b25a9291-95d2-3095-80be-87c743dbe464,SESCO,II.1.1,Capital Federal,AR-C,annual,2015,naphtha combustion consumption by to the public,3220.3946037563296,TJ,CH4,3.0,kg/TJ,9661.18381126899,kg +877b383a-b98f-32a3-8458-a5abc1e3299f,SESCO,II.1.1,Capital Federal,AR-C,annual,2015,naphtha combustion consumption by to the public,3220.3946037563296,TJ,N2O,0.6,kg/TJ,1932.2367622537977,kg +dd365915-5f8e-3c28-bb33-e5beb65347a2,SESCO,II.1.1,Catamarca,AR-K,annual,2015,naphtha combustion consumption by to the public,416.24865848566,TJ,CO2,73300.0,kg/TJ,30511026.666998874,kg +e6e56da4-fba1-3cb5-9ca2-000527aded2c,SESCO,II.1.1,Catamarca,AR-K,annual,2015,naphtha combustion consumption by to the public,416.24865848566,TJ,CH4,3.0,kg/TJ,1248.74597545698,kg +2fb767d0-7e7a-357e-9c93-9bd3612b0944,SESCO,II.1.1,Catamarca,AR-K,annual,2015,naphtha combustion consumption by to the public,416.24865848566,TJ,N2O,0.6,kg/TJ,249.74919509139596,kg +53e3de70-6df9-3aa8-b747-64bebbebd78a,SESCO,II.1.1,Chaco,AR-H,annual,2015,naphtha combustion consumption by to the public,416.84742699099496,TJ,CO2,73300.0,kg/TJ,30554916.39843993,kg +1c8a24d4-6180-36a5-ac3f-0cd943313dc1,SESCO,II.1.1,Chaco,AR-H,annual,2015,naphtha combustion consumption by to the public,416.84742699099496,TJ,CH4,3.0,kg/TJ,1250.5422809729848,kg +ef10570b-03e8-3c74-96b2-c05b71bd4dd0,SESCO,II.1.1,Chaco,AR-H,annual,2015,naphtha combustion consumption by to the public,416.84742699099496,TJ,N2O,0.6,kg/TJ,250.10845619459695,kg +c95e1264-8c2f-3dec-9c5b-b94825bcbc86,SESCO,II.1.1,Chubut,AR-U,annual,2015,naphtha combustion consumption by to the public,303.50711786395,TJ,CO2,73300.0,kg/TJ,22247071.739427533,kg +29978be2-f135-391a-84f4-47cbf3fc443c,SESCO,II.1.1,Chubut,AR-U,annual,2015,naphtha combustion consumption by to the public,303.50711786395,TJ,CH4,3.0,kg/TJ,910.5213535918499,kg +65c5c7cb-9591-30f9-accf-f489ff9d67ec,SESCO,II.1.1,Chubut,AR-U,annual,2015,naphtha combustion consumption by to the public,303.50711786395,TJ,N2O,0.6,kg/TJ,182.10427071836997,kg +0c9c382b-a8a4-3bf8-8871-cba966945435,SESCO,II.1.1,Corrientes,AR-W,annual,2015,naphtha combustion consumption by to the public,360.48512236236496,TJ,CO2,73300.0,kg/TJ,26423559.46916135,kg +4b6f7f0d-05fc-3a21-b11a-5b94afbf12ee,SESCO,II.1.1,Corrientes,AR-W,annual,2015,naphtha combustion consumption by to the public,360.48512236236496,TJ,CH4,3.0,kg/TJ,1081.4553670870948,kg +2a2233a9-fd69-3324-81a5-584bdce85836,SESCO,II.1.1,Corrientes,AR-W,annual,2015,naphtha combustion consumption by to the public,360.48512236236496,TJ,N2O,0.6,kg/TJ,216.29107341741897,kg +6c8339c3-5eca-3f8a-8ba8-1ba829c8d38d,SESCO,II.1.1,Córdoba,AR-X,annual,2015,naphtha combustion consumption by to the public,2654.936063484705,TJ,CO2,73300.0,kg/TJ,194606813.45342886,kg +996f3133-0633-3026-b238-fd92d5eadd09,SESCO,II.1.1,Córdoba,AR-X,annual,2015,naphtha combustion consumption by to the public,2654.936063484705,TJ,CH4,3.0,kg/TJ,7964.808190454114,kg +087e9222-556f-325d-a549-e54339827398,SESCO,II.1.1,Córdoba,AR-X,annual,2015,naphtha combustion consumption by to the public,2654.936063484705,TJ,N2O,0.6,kg/TJ,1592.9616380908228,kg +ee9a760f-5bc6-3b15-b051-a0aecc07589f,SESCO,II.1.1,Entre Rios,AR-E,annual,2015,naphtha combustion consumption by to the public,1002.3633012443049,TJ,CO2,73300.0,kg/TJ,73473229.98120755,kg +306ad7fa-d0fa-33c4-adac-ed62bb7b664d,SESCO,II.1.1,Entre Rios,AR-E,annual,2015,naphtha combustion consumption by to the public,1002.3633012443049,TJ,CH4,3.0,kg/TJ,3007.0899037329145,kg +ecd16b8d-d8c3-3c72-8500-30c61dd6d4d7,SESCO,II.1.1,Entre Rios,AR-E,annual,2015,naphtha combustion consumption by to the public,1002.3633012443049,TJ,N2O,0.6,kg/TJ,601.4179807465829,kg +60ec819c-f276-3b25-9269-e9a3015dadba,SESCO,II.1.1,Formosa,AR-P,annual,2015,naphtha combustion consumption by to the public,515.711578537155,TJ,CO2,73300.0,kg/TJ,37801658.70677346,kg +a1753401-2b5b-326a-9ff4-a8fcb18ebc25,SESCO,II.1.1,Formosa,AR-P,annual,2015,naphtha combustion consumption by to the public,515.711578537155,TJ,CH4,3.0,kg/TJ,1547.134735611465,kg +65317dfa-0683-3fee-bedc-2d0c8e3cce8c,SESCO,II.1.1,Formosa,AR-P,annual,2015,naphtha combustion consumption by to the public,515.711578537155,TJ,N2O,0.6,kg/TJ,309.426947122293,kg +aa6ccd33-3f17-392c-b6f9-e50866486f13,SESCO,II.1.1,Jujuy,AR-Y,annual,2015,naphtha combustion consumption by to the public,95.63373451631999,TJ,CO2,73300.0,kg/TJ,7009952.740046255,kg +8ebda0df-eeaa-394a-9120-8f17fd5fcbb8,SESCO,II.1.1,Jujuy,AR-Y,annual,2015,naphtha combustion consumption by to the public,95.63373451631999,TJ,CH4,3.0,kg/TJ,286.90120354896,kg +4097f7d2-96a0-3d86-9f9b-87a9de02ad2e,SESCO,II.1.1,Jujuy,AR-Y,annual,2015,naphtha combustion consumption by to the public,95.63373451631999,TJ,N2O,0.6,kg/TJ,57.38024070979199,kg +dc3313ce-d611-31fd-98a0-7331abd29ca1,SESCO,II.1.1,La Pampa,AR-L,annual,2015,naphtha combustion consumption by to the public,110.12537665629497,TJ,CO2,73300.0,kg/TJ,8072190.108906422,kg +d5d9f4f8-e5fd-30a4-a13f-dbacb81dcdfd,SESCO,II.1.1,La Pampa,AR-L,annual,2015,naphtha combustion consumption by to the public,110.12537665629497,TJ,CH4,3.0,kg/TJ,330.3761299688849,kg +85f2ddbc-4e2a-3d25-a0be-de8d0c3ec7dc,SESCO,II.1.1,La Pampa,AR-L,annual,2015,naphtha combustion consumption by to the public,110.12537665629497,TJ,N2O,0.6,kg/TJ,66.07522599377698,kg +955038ab-4b01-3d1f-9450-919a9a13f081,SESCO,II.1.1,La Rioja,AR-F,annual,2015,naphtha combustion consumption by to the public,98.41452559938999,TJ,CO2,73300.0,kg/TJ,7213784.726435286,kg +099c7d4d-5382-30e0-a1b0-c3c6d88ca4e8,SESCO,II.1.1,La Rioja,AR-F,annual,2015,naphtha combustion consumption by to the public,98.41452559938999,TJ,CH4,3.0,kg/TJ,295.24357679816995,kg +15e0dafc-2798-3ee7-9f9d-cd3af07c02fd,SESCO,II.1.1,La Rioja,AR-F,annual,2015,naphtha combustion consumption by to the public,98.41452559938999,TJ,N2O,0.6,kg/TJ,59.04871535963399,kg +9ee1e923-d17c-3cf4-9b59-2cd2cf53230d,SESCO,II.1.1,Mendoza,AR-M,annual,2015,naphtha combustion consumption by to the public,456.716512216965,TJ,CO2,73300.0,kg/TJ,33477320.345503535,kg +18212472-2a9c-3bb6-b1b0-cae46656c400,SESCO,II.1.1,Mendoza,AR-M,annual,2015,naphtha combustion consumption by to the public,456.716512216965,TJ,CH4,3.0,kg/TJ,1370.149536650895,kg +4ae84307-9b9c-312b-b425-7f4c0b214109,SESCO,II.1.1,Mendoza,AR-M,annual,2015,naphtha combustion consumption by to the public,456.716512216965,TJ,N2O,0.6,kg/TJ,274.02990733017896,kg +524a80cd-9ede-37f1-a84c-37788b53d02e,SESCO,II.1.1,Misiones,AR-N,annual,2015,naphtha combustion consumption by to the public,754.4198171509998,TJ,CO2,73300.0,kg/TJ,55298972.59716829,kg +77ef8a8d-bbce-3247-997a-e1d18d8ff183,SESCO,II.1.1,Misiones,AR-N,annual,2015,naphtha combustion consumption by to the public,754.4198171509998,TJ,CH4,3.0,kg/TJ,2263.2594514529997,kg +6748bebe-9a14-3641-acdb-e45b5eebe7be,SESCO,II.1.1,Misiones,AR-N,annual,2015,naphtha combustion consumption by to the public,754.4198171509998,TJ,N2O,0.6,kg/TJ,452.6518902905999,kg +6ec74529-1424-306a-ae41-a0f005fd4d2c,SESCO,II.1.1,Neuquén,AR-Q,annual,2015,naphtha combustion consumption by to the public,272.1765727380699,TJ,CO2,73300.0,kg/TJ,19950542.781700525,kg +72cf60ce-e7bc-32c9-ae1e-a41953043f3d,SESCO,II.1.1,Neuquén,AR-Q,annual,2015,naphtha combustion consumption by to the public,272.1765727380699,TJ,CH4,3.0,kg/TJ,816.5297182142098,kg +c30ec982-249b-36fc-a841-3f223c839e06,SESCO,II.1.1,Neuquén,AR-Q,annual,2015,naphtha combustion consumption by to the public,272.1765727380699,TJ,N2O,0.6,kg/TJ,163.30594364284195,kg +0ac33652-fe1f-3b9e-ad1e-766118ce5e41,SESCO,II.1.1,Rio Negro,AR-R,annual,2015,naphtha combustion consumption by to the public,299.62354304882996,TJ,CO2,73300.0,kg/TJ,21962405.705479234,kg +0a4a3199-acfc-3df2-aa6e-f3cab9c72c5d,SESCO,II.1.1,Rio Negro,AR-R,annual,2015,naphtha combustion consumption by to the public,299.62354304882996,TJ,CH4,3.0,kg/TJ,898.8706291464898,kg +9c2cc717-df05-3651-bf88-128ccf9dde47,SESCO,II.1.1,Rio Negro,AR-R,annual,2015,naphtha combustion consumption by to the public,299.62354304882996,TJ,N2O,0.6,kg/TJ,179.77412582929796,kg +9e3b5e31-3c9e-306e-8e9e-91d03bbdd359,SESCO,II.1.1,Salta,AR-A,annual,2015,naphtha combustion consumption by to the public,52.960013981875,TJ,CO2,73300.0,kg/TJ,3881969.0248714373,kg +49d7c40b-8192-322a-9e24-194817e11992,SESCO,II.1.1,Salta,AR-A,annual,2015,naphtha combustion consumption by to the public,52.960013981875,TJ,CH4,3.0,kg/TJ,158.880041945625,kg +549d37aa-692c-3e2c-b71c-7c01491c12a8,SESCO,II.1.1,Salta,AR-A,annual,2015,naphtha combustion consumption by to the public,52.960013981875,TJ,N2O,0.6,kg/TJ,31.776008389125,kg +eb08876b-173e-34cb-bd91-d51d16639a55,SESCO,II.1.1,San Juan,AR-J,annual,2015,naphtha combustion consumption by to the public,276.75450187385,TJ,CO2,73300.0,kg/TJ,20286104.987353206,kg +307af693-2062-3b76-8849-2f2a2d586771,SESCO,II.1.1,San Juan,AR-J,annual,2015,naphtha combustion consumption by to the public,276.75450187385,TJ,CH4,3.0,kg/TJ,830.26350562155,kg +53f95e32-a1f4-3f43-8cb9-7560282d8222,SESCO,II.1.1,San Juan,AR-J,annual,2015,naphtha combustion consumption by to the public,276.75450187385,TJ,N2O,0.6,kg/TJ,166.05270112431,kg +94918c83-5b01-3954-a158-362e9ddab48e,SESCO,II.1.1,San Luis,AR-D,annual,2015,naphtha combustion consumption by to the public,556.038297029215,TJ,CO2,73300.0,kg/TJ,40757607.17224146,kg +92d405ac-e296-3745-ad83-252bd08d8f7d,SESCO,II.1.1,San Luis,AR-D,annual,2015,naphtha combustion consumption by to the public,556.038297029215,TJ,CH4,3.0,kg/TJ,1668.114891087645,kg +83b058dc-5f71-349c-9115-e475f41cc726,SESCO,II.1.1,San Luis,AR-D,annual,2015,naphtha combustion consumption by to the public,556.038297029215,TJ,N2O,0.6,kg/TJ,333.62297821752895,kg +10515cd0-c807-3e92-9580-3ceda73c38e6,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2015,naphtha combustion consumption by to the public,61.07099815316499,TJ,CO2,73300.0,kg/TJ,4476504.164626994,kg +e665636b-b034-325c-9d88-af35ef7b9d26,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2015,naphtha combustion consumption by to the public,61.07099815316499,TJ,CH4,3.0,kg/TJ,183.21299445949498,kg +314c77ee-0122-3e8d-b551-31e913fd2ab9,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2015,naphtha combustion consumption by to the public,61.07099815316499,TJ,N2O,0.6,kg/TJ,36.64259889189899,kg +10513dfa-55fc-33d4-8933-9c75303f04fc,SESCO,II.1.1,Santa Fe,AR-S,annual,2015,naphtha combustion consumption by to the public,2438.5916004550095,TJ,CO2,73300.0,kg/TJ,178748764.3133522,kg +6ca5761e-801f-3872-8c25-cf5428f2fc8b,SESCO,II.1.1,Santa Fe,AR-S,annual,2015,naphtha combustion consumption by to the public,2438.5916004550095,TJ,CH4,3.0,kg/TJ,7315.774801365029,kg +ab661389-c7ca-30cb-b36b-94686f748f2c,SESCO,II.1.1,Santa Fe,AR-S,annual,2015,naphtha combustion consumption by to the public,2438.5916004550095,TJ,N2O,0.6,kg/TJ,1463.1549602730056,kg +acccbb02-0acc-3d43-8131-a145fee3feb5,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2015,naphtha combustion consumption by to the public,322.93191103673496,TJ,CO2,73300.0,kg/TJ,23670909.078992672,kg +dfa7d791-4367-31c4-8c62-33482dde1f78,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2015,naphtha combustion consumption by to the public,322.93191103673496,TJ,CH4,3.0,kg/TJ,968.7957331102049,kg +03bc4cf9-20ce-3d8a-8b7e-bd7d69468407,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2015,naphtha combustion consumption by to the public,322.93191103673496,TJ,N2O,0.6,kg/TJ,193.75914662204096,kg +a2ba041c-371b-3512-90e2-e90b71866807,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2015,naphtha combustion consumption by to the public,119.04546489836,TJ,CO2,73300.0,kg/TJ,8726032.577049788,kg +3b94fadb-ae92-3e40-b046-15760b0db401,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2015,naphtha combustion consumption by to the public,119.04546489836,TJ,CH4,3.0,kg/TJ,357.13639469507996,kg +ba2b743a-9a5b-32e1-be62-0d340e200343,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2015,naphtha combustion consumption by to the public,119.04546489836,TJ,N2O,0.6,kg/TJ,71.42727893901599,kg +d43bb917-675c-305e-aacf-480a2361afee,SESCO,II.1.1,Tucuman,AR-T,annual,2015,naphtha combustion consumption by to the public,121.17390890604999,TJ,CO2,73300.0,kg/TJ,8882047.522813464,kg +bceed0ea-5baa-3c7b-a0c3-53e757d7a77a,SESCO,II.1.1,Tucuman,AR-T,annual,2015,naphtha combustion consumption by to the public,121.17390890604999,TJ,CH4,3.0,kg/TJ,363.52172671815,kg +1dd6fa16-22ff-3c04-855e-32c9a2e32727,SESCO,II.1.1,Tucuman,AR-T,annual,2015,naphtha combustion consumption by to the public,121.17390890604999,TJ,N2O,0.6,kg/TJ,72.70434534363,kg +9df00bba-5507-3e49-9daa-cc1e9843752b,SESCO,II.1.1,Buenos Aires,AR-B,annual,2015,naphtha combustion consumption by to the public,2514.69227772763,TJ,CO2,73300.0,kg/TJ,184326943.95743528,kg +1960c364-652f-3553-80f6-4fc63be7c95a,SESCO,II.1.1,Buenos Aires,AR-B,annual,2015,naphtha combustion consumption by to the public,2514.69227772763,TJ,CH4,3.0,kg/TJ,7544.0768331828895,kg +35beaf56-edd8-3d05-8f6f-27ad8d019b0d,SESCO,II.1.1,Buenos Aires,AR-B,annual,2015,naphtha combustion consumption by to the public,2514.69227772763,TJ,N2O,0.6,kg/TJ,1508.815366636578,kg +e4bb97aa-ff08-3ee1-a602-b3970ce372f0,SESCO,II.1.1,Capital Federal,AR-C,annual,2015,naphtha combustion consumption by to the public,1284.357009610675,TJ,CO2,73300.0,kg/TJ,94143368.80446248,kg +192a207a-2255-3625-8455-92b3f6185277,SESCO,II.1.1,Capital Federal,AR-C,annual,2015,naphtha combustion consumption by to the public,1284.357009610675,TJ,CH4,3.0,kg/TJ,3853.071028832025,kg +11a2e41b-7adb-3283-a68e-4479d3717fef,SESCO,II.1.1,Capital Federal,AR-C,annual,2015,naphtha combustion consumption by to the public,1284.357009610675,TJ,N2O,0.6,kg/TJ,770.614205766405,kg +4a0ce86d-9cf6-3580-9ea1-05020ed73aa1,SESCO,II.1.1,Catamarca,AR-K,annual,2015,naphtha combustion consumption by to the public,113.65317766803,TJ,CO2,73300.0,kg/TJ,8330777.923066598,kg +bc0463cc-4c08-333d-8fd0-5b881804e35a,SESCO,II.1.1,Catamarca,AR-K,annual,2015,naphtha combustion consumption by to the public,113.65317766803,TJ,CH4,3.0,kg/TJ,340.95953300408996,kg +ad98b643-bc0f-3938-951e-1ca163966472,SESCO,II.1.1,Catamarca,AR-K,annual,2015,naphtha combustion consumption by to the public,113.65317766803,TJ,N2O,0.6,kg/TJ,68.191906600818,kg +4af7deec-38e6-378a-b6b3-7f1b4b057e57,SESCO,II.1.1,Chaco,AR-H,annual,2015,naphtha combustion consumption by to the public,84.41923435945999,TJ,CO2,73300.0,kg/TJ,6187929.878548417,kg +62a7aa10-933b-324f-af8c-e0f3438c2e4d,SESCO,II.1.1,Chaco,AR-H,annual,2015,naphtha combustion consumption by to the public,84.41923435945999,TJ,CH4,3.0,kg/TJ,253.25770307837996,kg +aec339bf-2d96-33e3-a1ac-2eaebaf1abbe,SESCO,II.1.1,Chaco,AR-H,annual,2015,naphtha combustion consumption by to the public,84.41923435945999,TJ,N2O,0.6,kg/TJ,50.65154061567599,kg +fe7e1345-7055-33ce-9226-d37c8ee7aad0,SESCO,II.1.1,Chubut,AR-U,annual,2015,naphtha combustion consumption by to the public,69.060893446545,TJ,CO2,73300.0,kg/TJ,5062163.489631748,kg +2146b101-9125-3082-90cf-3114d1a93009,SESCO,II.1.1,Chubut,AR-U,annual,2015,naphtha combustion consumption by to the public,69.060893446545,TJ,CH4,3.0,kg/TJ,207.182680339635,kg +88e6eac9-01cb-37cd-aecd-2eb102cbb315,SESCO,II.1.1,Chubut,AR-U,annual,2015,naphtha combustion consumption by to the public,69.060893446545,TJ,N2O,0.6,kg/TJ,41.436536067926994,kg +1e60d037-e51e-3dc3-920d-c21252d9f694,SESCO,II.1.1,Corrientes,AR-W,annual,2015,naphtha combustion consumption by to the public,106.36721554459,TJ,CO2,73300.0,kg/TJ,7796716.899418447,kg +3c4bd47c-9b35-34a4-a5d8-0fbd618097ad,SESCO,II.1.1,Corrientes,AR-W,annual,2015,naphtha combustion consumption by to the public,106.36721554459,TJ,CH4,3.0,kg/TJ,319.10164663377,kg +5e76d97c-1c0e-3290-879d-e41939b93aac,SESCO,II.1.1,Corrientes,AR-W,annual,2015,naphtha combustion consumption by to the public,106.36721554459,TJ,N2O,0.6,kg/TJ,63.82032932675399,kg +146376eb-b775-3aea-b132-617712a3d8e6,SESCO,II.1.1,Córdoba,AR-X,annual,2015,naphtha combustion consumption by to the public,620.5114829313399,TJ,CO2,73300.0,kg/TJ,45483491.69886721,kg +96310aef-6624-325f-a5da-5fee6914ee9a,SESCO,II.1.1,Córdoba,AR-X,annual,2015,naphtha combustion consumption by to the public,620.5114829313399,TJ,CH4,3.0,kg/TJ,1861.5344487940197,kg +83b2857a-c1d4-3876-9bb7-ececd31bbe93,SESCO,II.1.1,Córdoba,AR-X,annual,2015,naphtha combustion consumption by to the public,620.5114829313399,TJ,N2O,0.6,kg/TJ,372.3068897588039,kg +e4e604ec-fc6b-3992-bb81-36fb5014d98c,SESCO,II.1.1,Entre Rios,AR-E,annual,2015,naphtha combustion consumption by to the public,266.58436756451493,TJ,CO2,73300.0,kg/TJ,19540634.142478943,kg +d99cdade-7182-398b-be6c-3ca0197e718c,SESCO,II.1.1,Entre Rios,AR-E,annual,2015,naphtha combustion consumption by to the public,266.58436756451493,TJ,CH4,3.0,kg/TJ,799.7531026935449,kg +90b2889a-653c-3800-b82e-68862c7bb0de,SESCO,II.1.1,Entre Rios,AR-E,annual,2015,naphtha combustion consumption by to the public,266.58436756451493,TJ,N2O,0.6,kg/TJ,159.95062053870896,kg +d8d2cdc0-d22a-3fb3-9ad5-2f7b23c62c21,SESCO,II.1.1,Formosa,AR-P,annual,2015,naphtha combustion consumption by to the public,124.29234819000999,TJ,CO2,73300.0,kg/TJ,9110629.122327732,kg +f7c8ef06-3db9-3340-bfb6-78df176a61e4,SESCO,II.1.1,Formosa,AR-P,annual,2015,naphtha combustion consumption by to the public,124.29234819000999,TJ,CH4,3.0,kg/TJ,372.87704457002997,kg +23b2af58-a33d-3bca-8b52-75bdd148d2ee,SESCO,II.1.1,Formosa,AR-P,annual,2015,naphtha combustion consumption by to the public,124.29234819000999,TJ,N2O,0.6,kg/TJ,74.57540891400599,kg +6d242c5c-7276-3c8b-81ec-8ffc7f19a8de,SESCO,II.1.1,Jujuy,AR-Y,annual,2015,naphtha combustion consumption by to the public,4.458564575464999,TJ,CO2,73300.0,kg/TJ,326812.78338158445,kg +8d6d6023-9d6c-3255-b9c6-597b49d401cc,SESCO,II.1.1,Jujuy,AR-Y,annual,2015,naphtha combustion consumption by to the public,4.458564575464999,TJ,CH4,3.0,kg/TJ,13.375693726394998,kg +eccaa349-8391-3218-bb7f-59563cb884ed,SESCO,II.1.1,Jujuy,AR-Y,annual,2015,naphtha combustion consumption by to the public,4.458564575464999,TJ,N2O,0.6,kg/TJ,2.6751387452789994,kg +653d1f90-ea91-36f7-8fb3-6c751dfe9ad9,SESCO,II.1.1,La Pampa,AR-L,annual,2015,naphtha combustion consumption by to the public,35.66287281557,TJ,CO2,73300.0,kg/TJ,2614088.5773812807,kg +fadd6698-6725-31ad-aabf-7fa435639159,SESCO,II.1.1,La Pampa,AR-L,annual,2015,naphtha combustion consumption by to the public,35.66287281557,TJ,CH4,3.0,kg/TJ,106.98861844670999,kg +8e8b19bb-6de4-356a-8a18-3ebe9813fa0a,SESCO,II.1.1,La Pampa,AR-L,annual,2015,naphtha combustion consumption by to the public,35.66287281557,TJ,N2O,0.6,kg/TJ,21.397723689341998,kg +3c5c4371-b2a1-3d68-a1bf-a5bff2d0eac8,SESCO,II.1.1,La Rioja,AR-F,annual,2015,naphtha combustion consumption by to the public,17.502020030494997,TJ,CO2,73300.0,kg/TJ,1282898.0682352833,kg +04ab5bd4-2ec2-32ce-8cf1-c7a7ec4212d2,SESCO,II.1.1,La Rioja,AR-F,annual,2015,naphtha combustion consumption by to the public,17.502020030494997,TJ,CH4,3.0,kg/TJ,52.50606009148499,kg +38c842e6-0d06-3117-a7ca-3ea99ccb08c5,SESCO,II.1.1,La Rioja,AR-F,annual,2015,naphtha combustion consumption by to the public,17.502020030494997,TJ,N2O,0.6,kg/TJ,10.501212018296998,kg +5978dcd5-d007-34ce-a7a5-46bdfe280d73,SESCO,II.1.1,Mendoza,AR-M,annual,2015,naphtha combustion consumption by to the public,125.89568604112499,TJ,CO2,73300.0,kg/TJ,9228153.786814462,kg +67957536-9c9d-3727-a8d5-3fcc6ebe847a,SESCO,II.1.1,Mendoza,AR-M,annual,2015,naphtha combustion consumption by to the public,125.89568604112499,TJ,CH4,3.0,kg/TJ,377.687058123375,kg +5a96776f-4e1c-361c-9f8b-66c99b6d8f10,SESCO,II.1.1,Mendoza,AR-M,annual,2015,naphtha combustion consumption by to the public,125.89568604112499,TJ,N2O,0.6,kg/TJ,75.53741162467499,kg +98c514f8-af7f-353e-a1f6-f7630399c58d,SESCO,II.1.1,Misiones,AR-N,annual,2015,naphtha combustion consumption by to the public,123.247246467345,TJ,CO2,73300.0,kg/TJ,9034023.166056387,kg +abf4f3f3-ff2c-357d-9954-87eadbc79bdc,SESCO,II.1.1,Misiones,AR-N,annual,2015,naphtha combustion consumption by to the public,123.247246467345,TJ,CH4,3.0,kg/TJ,369.74173940203497,kg +0483e8a9-1e4e-35fa-8163-571ef77e2aa3,SESCO,II.1.1,Misiones,AR-N,annual,2015,naphtha combustion consumption by to the public,123.247246467345,TJ,N2O,0.6,kg/TJ,73.948347880407,kg +1da937e5-aa38-3e01-9cb3-4c7872559136,SESCO,II.1.1,Neuquén,AR-Q,annual,2015,naphtha combustion consumption by to the public,99.462121814055,TJ,CO2,73300.0,kg/TJ,7290573.528970231,kg +dfcc43b1-0770-36fb-b4cc-246a547d1136,SESCO,II.1.1,Neuquén,AR-Q,annual,2015,naphtha combustion consumption by to the public,99.462121814055,TJ,CH4,3.0,kg/TJ,298.386365442165,kg +c52643d2-7809-360b-b7e4-f23eda34c9bc,SESCO,II.1.1,Neuquén,AR-Q,annual,2015,naphtha combustion consumption by to the public,99.462121814055,TJ,N2O,0.6,kg/TJ,59.677273088433,kg +8410cab3-0500-3a83-922b-59b01cf96de5,SESCO,II.1.1,Rio Negro,AR-R,annual,2015,naphtha combustion consumption by to the public,105.798892314115,TJ,CO2,73300.0,kg/TJ,7755058.806624629,kg +2c51b49e-6eb9-31c5-a8b0-544b8ca53c3f,SESCO,II.1.1,Rio Negro,AR-R,annual,2015,naphtha combustion consumption by to the public,105.798892314115,TJ,CH4,3.0,kg/TJ,317.396676942345,kg +c1ba223a-9657-3893-a2a0-63c359459f07,SESCO,II.1.1,Rio Negro,AR-R,annual,2015,naphtha combustion consumption by to the public,105.798892314115,TJ,N2O,0.6,kg/TJ,63.479335388468996,kg +9698fc35-26f9-3552-85ed-620e60b41f4c,SESCO,II.1.1,Salta,AR-A,annual,2015,naphtha combustion consumption by to the public,8.792095857545,TJ,CO2,73300.0,kg/TJ,644460.6263580485,kg +4168988c-a3b3-3bd5-b95e-9db7120f09f2,SESCO,II.1.1,Salta,AR-A,annual,2015,naphtha combustion consumption by to the public,8.792095857545,TJ,CH4,3.0,kg/TJ,26.376287572635,kg +f4e8f38b-f02d-3802-9112-102f4f94cfc5,SESCO,II.1.1,Salta,AR-A,annual,2015,naphtha combustion consumption by to the public,8.792095857545,TJ,N2O,0.6,kg/TJ,5.2752575145269995,kg +2a7c0069-0934-359c-acce-ed91f002f353,SESCO,II.1.1,San Juan,AR-J,annual,2015,naphtha combustion consumption by to the public,76.57753683579999,TJ,CO2,73300.0,kg/TJ,5613133.450064139,kg +e428cf1b-e49e-308a-8234-da5d52b99e82,SESCO,II.1.1,San Juan,AR-J,annual,2015,naphtha combustion consumption by to the public,76.57753683579999,TJ,CH4,3.0,kg/TJ,229.73261050739995,kg +afb3a06b-d851-3c1a-ba29-d3ecf5904e1d,SESCO,II.1.1,San Juan,AR-J,annual,2015,naphtha combustion consumption by to the public,76.57753683579999,TJ,N2O,0.6,kg/TJ,45.94652210147999,kg +f5829782-4dc4-33dc-82a1-3d75a728a551,SESCO,II.1.1,San Luis,AR-D,annual,2015,naphtha combustion consumption by to the public,139.811066229835,TJ,CO2,73300.0,kg/TJ,10248151.154646905,kg +5ac10642-1da3-3a00-a037-073600b63d04,SESCO,II.1.1,San Luis,AR-D,annual,2015,naphtha combustion consumption by to the public,139.811066229835,TJ,CH4,3.0,kg/TJ,419.43319868950505,kg +df4354da-ab31-3fd9-a60c-8f7f570eb7af,SESCO,II.1.1,San Luis,AR-D,annual,2015,naphtha combustion consumption by to the public,139.811066229835,TJ,N2O,0.6,kg/TJ,83.886639737901,kg +b4fede89-73b5-3412-8b76-9c539d01ebb5,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2015,naphtha combustion consumption by to the public,32.79575983684,TJ,CO2,73300.0,kg/TJ,2403929.196040372,kg +6844d1f9-ac4e-375a-af5e-bca5fa0c492c,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2015,naphtha combustion consumption by to the public,32.79575983684,TJ,CH4,3.0,kg/TJ,98.38727951051999,kg +934eeea1-39ee-3ca0-9547-d59e27167be2,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2015,naphtha combustion consumption by to the public,32.79575983684,TJ,N2O,0.6,kg/TJ,19.677455902103997,kg +c29e4ea7-2a60-3a64-86be-987570fcdd63,SESCO,II.1.1,Santa Fe,AR-S,annual,2015,naphtha combustion consumption by to the public,681.161529323275,TJ,CO2,73300.0,kg/TJ,49929140.09939606,kg +77169093-4692-3b2e-9aaf-5a0a455c0718,SESCO,II.1.1,Santa Fe,AR-S,annual,2015,naphtha combustion consumption by to the public,681.161529323275,TJ,CH4,3.0,kg/TJ,2043.484587969825,kg +6e5c267b-8c0a-35c2-93a9-d8876b2daba3,SESCO,II.1.1,Santa Fe,AR-S,annual,2015,naphtha combustion consumption by to the public,681.161529323275,TJ,N2O,0.6,kg/TJ,408.696917593965,kg +5c8b27da-1fe1-39f3-ad13-c9d1213f0d62,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2015,naphtha combustion consumption by to the public,88.83459121536998,TJ,CO2,73300.0,kg/TJ,6511575.53608662,kg +a4f0c050-63b3-30a0-8267-489f7de6f64d,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2015,naphtha combustion consumption by to the public,88.83459121536998,TJ,CH4,3.0,kg/TJ,266.50377364610995,kg +dacc7640-d2b9-32ac-b743-343af131f131,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2015,naphtha combustion consumption by to the public,88.83459121536998,TJ,N2O,0.6,kg/TJ,53.300754729221985,kg +3ea4d2c3-3e66-3bd8-9170-2bf1f73cbd27,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2015,naphtha combustion consumption by to the public,65.918949811715,TJ,CO2,73300.0,kg/TJ,4831859.0211987095,kg +1851db1e-44e4-37fb-ab71-2ec159c2f65d,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2015,naphtha combustion consumption by to the public,65.918949811715,TJ,CH4,3.0,kg/TJ,197.756849435145,kg +8142b6e4-3576-3ba5-a7b2-47bd3fd4c45a,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2015,naphtha combustion consumption by to the public,65.918949811715,TJ,N2O,0.6,kg/TJ,39.551369887029,kg +bac8748c-0c48-3cff-ae92-c563c0fa6b24,SESCO,II.1.1,Tucuman,AR-T,annual,2015,naphtha combustion consumption by to the public,21.941576576919996,TJ,CO2,73300.0,kg/TJ,1608317.5630882357,kg +1cc91a65-ffa7-338d-a3e1-53abab614359,SESCO,II.1.1,Tucuman,AR-T,annual,2015,naphtha combustion consumption by to the public,21.941576576919996,TJ,CH4,3.0,kg/TJ,65.82472973075998,kg +0c9327d4-bbcd-39d1-abe2-8c3f2522a34f,SESCO,II.1.1,Tucuman,AR-T,annual,2015,naphtha combustion consumption by to the public,21.941576576919996,TJ,N2O,0.6,kg/TJ,13.164945946151997,kg +4a4ec2cf-6f62-3734-9040-202f64a6f171,SESCO,I.3.1,Buenos Aires,AR-B,annual,2015,naphtha combustion consumption by petrochemical industries,512.0880264499999,TJ,CO2,73300.0,kg/TJ,37536052.33878499,kg +2c1a052b-229b-36e2-ba55-770d3e3607af,SESCO,I.3.1,Buenos Aires,AR-B,annual,2015,naphtha combustion consumption by petrochemical industries,512.0880264499999,TJ,CH4,3.0,kg/TJ,1536.2640793499997,kg +bae4d315-5935-335a-b2aa-66e3ba2aa9c6,SESCO,I.3.1,Buenos Aires,AR-B,annual,2015,naphtha combustion consumption by petrochemical industries,512.0880264499999,TJ,N2O,0.6,kg/TJ,307.25281586999995,kg +b6429835-47e6-306c-b457-ea4b698f72ad,SESCO,I.3.1,Buenos Aires,AR-B,annual,2015,naphtha combustion consumption by petrochemical industries,44.18368955,TJ,CO2,73300.0,kg/TJ,3238664.4440149995,kg +f61ab1ac-1767-3b31-a531-eea89a21f900,SESCO,I.3.1,Buenos Aires,AR-B,annual,2015,naphtha combustion consumption by petrochemical industries,44.18368955,TJ,CH4,3.0,kg/TJ,132.55106865,kg +2230ea48-496d-3c24-b666-a93885e3cd46,SESCO,I.3.1,Buenos Aires,AR-B,annual,2015,naphtha combustion consumption by petrochemical industries,44.18368955,TJ,N2O,0.6,kg/TJ,26.510213729999997,kg +315e8a99-93f9-31c7-8517-32a7774279d2,SESCO,II.1.1,Buenos Aires,AR-B,annual,2015,naphtha combustion consumption by freight transport,7.078121049999999,TJ,CO2,73300.0,kg/TJ,518826.27296499995,kg +b05cd9e2-d1cb-3b64-ad7c-a344f3f2a0a7,SESCO,II.1.1,Buenos Aires,AR-B,annual,2015,naphtha combustion consumption by freight transport,7.078121049999999,TJ,CH4,3.0,kg/TJ,21.234363149999997,kg +e09937fc-292e-37f3-81d8-40587f884c90,SESCO,II.1.1,Buenos Aires,AR-B,annual,2015,naphtha combustion consumption by freight transport,7.078121049999999,TJ,N2O,0.6,kg/TJ,4.2468726299999995,kg +ab3dce63-4db9-361e-8a5f-606551803667,SESCO,II.1.1,Capital Federal,AR-C,annual,2015,naphtha combustion consumption by freight transport,5.768512749999999,TJ,CO2,73300.0,kg/TJ,422831.98457499995,kg +0aa4052e-0137-34f6-becb-18c4cd7c3e6d,SESCO,II.1.1,Capital Federal,AR-C,annual,2015,naphtha combustion consumption by freight transport,5.768512749999999,TJ,CH4,3.0,kg/TJ,17.305538249999998,kg +d9962a30-d5df-315c-8672-2086529e92d7,SESCO,II.1.1,Capital Federal,AR-C,annual,2015,naphtha combustion consumption by freight transport,5.768512749999999,TJ,N2O,0.6,kg/TJ,3.4611076499999993,kg +dfca2f44-24cc-34f1-b57c-651b9ce6948b,SESCO,II.1.1,Córdoba,AR-X,annual,2015,naphtha combustion consumption by freight transport,0.6859852999999999,TJ,CO2,73300.0,kg/TJ,50282.72248999999,kg +e23436fc-86ef-3669-8eb5-a86c4c9dbe76,SESCO,II.1.1,Córdoba,AR-X,annual,2015,naphtha combustion consumption by freight transport,0.6859852999999999,TJ,CH4,3.0,kg/TJ,2.0579558999999996,kg +71e76f7a-3f55-3fbe-9dd2-52e65390a4e0,SESCO,II.1.1,Córdoba,AR-X,annual,2015,naphtha combustion consumption by freight transport,0.6859852999999999,TJ,N2O,0.6,kg/TJ,0.41159117999999995,kg +f3242e3d-4f5a-3b9c-b050-717c4436a54f,SESCO,II.1.1,Santa Fe,AR-S,annual,2015,naphtha combustion consumption by freight transport,14.966952,TJ,CO2,73300.0,kg/TJ,1097077.5816,kg +f2f4f594-9554-3650-bc4f-bd7695ebf09b,SESCO,II.1.1,Santa Fe,AR-S,annual,2015,naphtha combustion consumption by freight transport,14.966952,TJ,CH4,3.0,kg/TJ,44.900856,kg +e4df1d5e-c8c8-3cf2-a8ee-4357745a7595,SESCO,II.1.1,Santa Fe,AR-S,annual,2015,naphtha combustion consumption by freight transport,14.966952,TJ,N2O,0.6,kg/TJ,8.9801712,kg +93cd7ba1-6702-35b9-9d36-be7611902aad,SESCO,II.1.1,Tucuman,AR-T,annual,2015,naphtha combustion consumption by freight transport,0.062362299999999996,TJ,CO2,73300.0,kg/TJ,4571.15659,kg +f36103ff-366e-3735-a2de-3c47c5db6823,SESCO,II.1.1,Tucuman,AR-T,annual,2015,naphtha combustion consumption by freight transport,0.062362299999999996,TJ,CH4,3.0,kg/TJ,0.1870869,kg +97de2e61-dd6c-3b6c-a048-c8d548c301f4,SESCO,II.1.1,Tucuman,AR-T,annual,2015,naphtha combustion consumption by freight transport,0.062362299999999996,TJ,N2O,0.6,kg/TJ,0.03741737999999999,kg +b72b7c69-24e6-3ec1-861d-f85f75f2c367,SESCO,II.1.1,Buenos Aires,AR-B,annual,2015,naphtha combustion consumption by freight transport,5.051346299999999,TJ,CO2,73300.0,kg/TJ,370263.6837899999,kg +eb570a8b-65ea-309c-91e1-6c4889b6eeac,SESCO,II.1.1,Buenos Aires,AR-B,annual,2015,naphtha combustion consumption by freight transport,5.051346299999999,TJ,CH4,3.0,kg/TJ,15.154038899999996,kg +e4de9a40-adf1-33d7-9ff7-3158e44f17bd,SESCO,II.1.1,Buenos Aires,AR-B,annual,2015,naphtha combustion consumption by freight transport,5.051346299999999,TJ,N2O,0.6,kg/TJ,3.030807779999999,kg +6fd38983-97ca-3275-8b21-5f77d75bdb90,SESCO,II.1.1,Capital Federal,AR-C,annual,2015,naphtha combustion consumption by freight transport,5.519063549999999,TJ,CO2,73300.0,kg/TJ,404547.35821499996,kg +44f6d17b-9786-3746-9a14-970af5c46b25,SESCO,II.1.1,Capital Federal,AR-C,annual,2015,naphtha combustion consumption by freight transport,5.519063549999999,TJ,CH4,3.0,kg/TJ,16.55719065,kg +33825db9-18a9-3c1b-bb6c-0c834d8ea8e6,SESCO,II.1.1,Capital Federal,AR-C,annual,2015,naphtha combustion consumption by freight transport,5.519063549999999,TJ,N2O,0.6,kg/TJ,3.3114381299999995,kg +635a0d6b-ca40-35cb-a29b-521cdcfa30ec,SESCO,II.1.1,Córdoba,AR-X,annual,2015,naphtha combustion consumption by freight transport,0.8730722,TJ,CO2,73300.0,kg/TJ,63996.192259999996,kg +60de7b98-e8e1-3b0f-9fa1-3194cf26eb0c,SESCO,II.1.1,Córdoba,AR-X,annual,2015,naphtha combustion consumption by freight transport,0.8730722,TJ,CH4,3.0,kg/TJ,2.6192165999999997,kg +99ec01d7-004c-36e4-a549-85ecf97e7a62,SESCO,II.1.1,Córdoba,AR-X,annual,2015,naphtha combustion consumption by freight transport,0.8730722,TJ,N2O,0.6,kg/TJ,0.52384332,kg +04671bdc-4bb1-392e-b244-04407cf53e58,SESCO,II.1.1,Santa Fe,AR-S,annual,2015,naphtha combustion consumption by freight transport,0.84189105,TJ,CO2,73300.0,kg/TJ,61710.613965,kg +4088d627-a796-3552-b983-3f320a36963d,SESCO,II.1.1,Santa Fe,AR-S,annual,2015,naphtha combustion consumption by freight transport,0.84189105,TJ,CH4,3.0,kg/TJ,2.52567315,kg +9bc09164-692f-30cf-af6c-a7c389b55eb1,SESCO,II.1.1,Santa Fe,AR-S,annual,2015,naphtha combustion consumption by freight transport,0.84189105,TJ,N2O,0.6,kg/TJ,0.5051346299999999,kg +f1b4e1f2-8fc2-380b-99c7-619fe1c606fb,SESCO,II.1.1,Buenos Aires,AR-B,annual,2015,naphtha combustion consumption by public passenger transport,0.24944919999999998,TJ,CO2,73300.0,kg/TJ,18284.62636,kg +403e3db5-879a-316a-829c-6a6364f2b896,SESCO,II.1.1,Buenos Aires,AR-B,annual,2015,naphtha combustion consumption by public passenger transport,0.24944919999999998,TJ,CH4,3.0,kg/TJ,0.7483476,kg +4e96e27e-664f-3a92-91ff-3cecee1c81b7,SESCO,II.1.1,Buenos Aires,AR-B,annual,2015,naphtha combustion consumption by public passenger transport,0.24944919999999998,TJ,N2O,0.6,kg/TJ,0.14966951999999997,kg +8a2c8af6-b0b3-316f-81c7-6644307facb2,SESCO,II.1.1,Capital Federal,AR-C,annual,2015,naphtha combustion consumption by public passenger transport,0.09354344999999999,TJ,CO2,73300.0,kg/TJ,6856.734884999999,kg +7df0bdd2-d39a-340d-ab7c-8a62ecb04da3,SESCO,II.1.1,Capital Federal,AR-C,annual,2015,naphtha combustion consumption by public passenger transport,0.09354344999999999,TJ,CH4,3.0,kg/TJ,0.28063035,kg +8a45334b-42f7-3702-9e8e-f341eb68f7f2,SESCO,II.1.1,Capital Federal,AR-C,annual,2015,naphtha combustion consumption by public passenger transport,0.09354344999999999,TJ,N2O,0.6,kg/TJ,0.05612606999999999,kg +119683d4-4ae2-3392-abc7-d0546253b914,SESCO,II.5.1,Córdoba,AR-X,annual,2015,naphtha combustion consumption by agriculture machines,6.378216484639999,TJ,CO2,73300.0,kg/TJ,467523.26832411194,kg +28a914ca-2427-3f31-b6df-823fd16c2b7e,SESCO,II.5.1,Córdoba,AR-X,annual,2015,naphtha combustion consumption by agriculture machines,6.378216484639999,TJ,CH4,3.0,kg/TJ,19.134649453919998,kg +a9bae978-f598-3ec9-b097-a9c22b3c0234,SESCO,II.5.1,Córdoba,AR-X,annual,2015,naphtha combustion consumption by agriculture machines,6.378216484639999,TJ,N2O,0.6,kg/TJ,3.8269298907839993,kg +10f14bc5-2cdb-3528-add4-dce8dc2cf50d,SESCO,II.5.1,Santa Fe,AR-S,annual,2015,naphtha combustion consumption by agriculture machines,13.343876480935,TJ,CO2,73300.0,kg/TJ,978106.1460525355,kg +51e177a3-b74a-34a0-a9fe-c7b51bf19522,SESCO,II.5.1,Santa Fe,AR-S,annual,2015,naphtha combustion consumption by agriculture machines,13.343876480935,TJ,CH4,3.0,kg/TJ,40.031629442805,kg +c43c3b2a-e726-3bd4-aeec-2460a0761f94,SESCO,II.5.1,Santa Fe,AR-S,annual,2015,naphtha combustion consumption by agriculture machines,13.343876480935,TJ,N2O,0.6,kg/TJ,8.006325888561,kg +730e671b-dd9a-386f-9c8b-56a3561f11bb,SESCO,II.5.1,Santiago del Estero,AR-G,annual,2015,naphtha combustion consumption by agriculture machines,14.596816158924998,TJ,CO2,73300.0,kg/TJ,1069946.6244492023,kg +353c380e-53e5-3f51-a3d4-e923ee56e73e,SESCO,II.5.1,Santiago del Estero,AR-G,annual,2015,naphtha combustion consumption by agriculture machines,14.596816158924998,TJ,CH4,3.0,kg/TJ,43.790448476775,kg +35b039b5-84f0-362b-a8e2-3746b68926b3,SESCO,II.5.1,Santiago del Estero,AR-G,annual,2015,naphtha combustion consumption by agriculture machines,14.596816158924998,TJ,N2O,0.6,kg/TJ,8.758089695354998,kg +a394de23-0318-3132-84f3-7f71ccd6e672,SESCO,II.5.1,Santa Fe,AR-S,annual,2015,naphtha combustion consumption by agriculture machines,1.049149035935,TJ,CO2,73300.0,kg/TJ,76902.6243340355,kg +7171a8ba-90b3-348f-b371-a518d9024e53,SESCO,II.5.1,Santa Fe,AR-S,annual,2015,naphtha combustion consumption by agriculture machines,1.049149035935,TJ,CH4,3.0,kg/TJ,3.147447107805,kg +20ee3fff-cd66-3c30-985e-4511dfb0eb7c,SESCO,II.5.1,Santa Fe,AR-S,annual,2015,naphtha combustion consumption by agriculture machines,1.049149035935,TJ,N2O,0.6,kg/TJ,0.629489421561,kg +2c58685e-5952-313a-8967-a5c9a5fb9873,SESCO,II.1.1,Buenos Aires,AR-B,annual,2015,naphtha combustion consumption by to the public,1857.9887716289898,TJ,CO2,73300.0,kg/TJ,136190576.96040496,kg +2b0bec1b-03b2-3769-9267-37c6ced48cd9,SESCO,II.1.1,Buenos Aires,AR-B,annual,2015,naphtha combustion consumption by to the public,1857.9887716289898,TJ,CH4,3.0,kg/TJ,5573.9663148869695,kg +5f02248f-0aab-324c-ad3c-9d3923a34159,SESCO,II.1.1,Buenos Aires,AR-B,annual,2015,naphtha combustion consumption by to the public,1857.9887716289898,TJ,N2O,0.6,kg/TJ,1114.7932629773939,kg +8636453c-fa1f-3347-808a-83c85144abae,SESCO,II.1.1,Capital Federal,AR-C,annual,2015,naphtha combustion consumption by to the public,216.633025864255,TJ,CO2,73300.0,kg/TJ,15879200.795849891,kg +6db0845c-bc97-38dd-be53-edaa278cba98,SESCO,II.1.1,Capital Federal,AR-C,annual,2015,naphtha combustion consumption by to the public,216.633025864255,TJ,CH4,3.0,kg/TJ,649.899077592765,kg +4225c6b1-3702-3149-b276-dce14f05cf0a,SESCO,II.1.1,Capital Federal,AR-C,annual,2015,naphtha combustion consumption by to the public,216.633025864255,TJ,N2O,0.6,kg/TJ,129.97981551855298,kg +246fff0f-f6e3-3c19-a42f-3c738de1989d,SESCO,II.1.1,Catamarca,AR-K,annual,2015,naphtha combustion consumption by to the public,179.32607390697996,TJ,CO2,73300.0,kg/TJ,13144601.21738163,kg +d942c65d-36d7-34f7-9a60-f81bb1651f18,SESCO,II.1.1,Catamarca,AR-K,annual,2015,naphtha combustion consumption by to the public,179.32607390697996,TJ,CH4,3.0,kg/TJ,537.9782217209399,kg +c74e1324-3eab-3854-b5ce-4f8cb9cbd1a1,SESCO,II.1.1,Catamarca,AR-K,annual,2015,naphtha combustion consumption by to the public,179.32607390697996,TJ,N2O,0.6,kg/TJ,107.59564434418797,kg +a4510caf-7a39-30f3-8b78-09b02944178f,SESCO,II.1.1,Chaco,AR-H,annual,2015,naphtha combustion consumption by to the public,302.31133635202497,TJ,CO2,73300.0,kg/TJ,22159420.95460343,kg +24d65742-af41-304b-9964-d3b9373274ce,SESCO,II.1.1,Chaco,AR-H,annual,2015,naphtha combustion consumption by to the public,302.31133635202497,TJ,CH4,3.0,kg/TJ,906.934009056075,kg +94f9e30b-36d2-322d-a680-37e45b245054,SESCO,II.1.1,Chaco,AR-H,annual,2015,naphtha combustion consumption by to the public,302.31133635202497,TJ,N2O,0.6,kg/TJ,181.38680181121498,kg +4d55cea2-0e59-3154-ba9b-f646929ee7d3,SESCO,II.1.1,Corrientes,AR-W,annual,2015,naphtha combustion consumption by to the public,317.41435665439496,TJ,CO2,73300.0,kg/TJ,23266472.34276715,kg +9f2c5ad7-72c7-396d-bc3f-cd0746e11523,SESCO,II.1.1,Corrientes,AR-W,annual,2015,naphtha combustion consumption by to the public,317.41435665439496,TJ,CH4,3.0,kg/TJ,952.2430699631849,kg +ab5e56ae-b263-3212-8cf1-268c83b79b3a,SESCO,II.1.1,Corrientes,AR-W,annual,2015,naphtha combustion consumption by to the public,317.41435665439496,TJ,N2O,0.6,kg/TJ,190.44861399263698,kg +75aeddb7-9a1b-37c1-8169-1b19a212e780,SESCO,II.1.1,Córdoba,AR-X,annual,2015,naphtha combustion consumption by to the public,861.2006724771448,TJ,CO2,73300.0,kg/TJ,63126009.29257472,kg +49fcc7cf-a6a0-358c-aa8c-b177e1b60735,SESCO,II.1.1,Córdoba,AR-X,annual,2015,naphtha combustion consumption by to the public,861.2006724771448,TJ,CH4,3.0,kg/TJ,2583.6020174314344,kg +64c537bf-6387-35d1-8322-4fd3197be7f7,SESCO,II.1.1,Córdoba,AR-X,annual,2015,naphtha combustion consumption by to the public,861.2006724771448,TJ,N2O,0.6,kg/TJ,516.7204034862868,kg +db19481e-20cf-3d19-929b-eb909840627b,SESCO,II.1.1,Entre Rios,AR-E,annual,2015,naphtha combustion consumption by to the public,433.279606174415,TJ,CO2,73300.0,kg/TJ,31759395.13258462,kg +4597595b-b9a4-3671-9967-289a499e0804,SESCO,II.1.1,Entre Rios,AR-E,annual,2015,naphtha combustion consumption by to the public,433.279606174415,TJ,CH4,3.0,kg/TJ,1299.838818523245,kg +856fc775-3273-30a4-978c-7e0d26ebfedb,SESCO,II.1.1,Entre Rios,AR-E,annual,2015,naphtha combustion consumption by to the public,433.279606174415,TJ,N2O,0.6,kg/TJ,259.967763704649,kg +d6060fa6-9451-3b66-b9b3-41ffe172d707,SESCO,II.1.1,Jujuy,AR-Y,annual,2015,naphtha combustion consumption by to the public,58.836619306464996,TJ,CO2,73300.0,kg/TJ,4312724.195163884,kg +c19e77e4-e32e-3096-bac1-a1bdba3d1511,SESCO,II.1.1,Jujuy,AR-Y,annual,2015,naphtha combustion consumption by to the public,58.836619306464996,TJ,CH4,3.0,kg/TJ,176.509857919395,kg +2ee9e462-6e2d-35fc-b5fc-b02e119865c8,SESCO,II.1.1,Jujuy,AR-Y,annual,2015,naphtha combustion consumption by to the public,58.836619306464996,TJ,N2O,0.6,kg/TJ,35.301971583878995,kg +55effa4c-c8dc-31ee-a9a5-2c0a89c67864,SESCO,II.1.1,La Pampa,AR-L,annual,2015,naphtha combustion consumption by to the public,13.539781410154998,TJ,CO2,73300.0,kg/TJ,992465.9773643613,kg +b42eb4d7-8c24-37ad-9ab0-c0c33227c81b,SESCO,II.1.1,La Pampa,AR-L,annual,2015,naphtha combustion consumption by to the public,13.539781410154998,TJ,CH4,3.0,kg/TJ,40.61934423046499,kg +8232d938-37e1-355f-a3a1-721a4b9ceb22,SESCO,II.1.1,La Pampa,AR-L,annual,2015,naphtha combustion consumption by to the public,13.539781410154998,TJ,N2O,0.6,kg/TJ,8.123868846092998,kg +b595adaa-c8e0-3136-b463-f0c0632d78a4,SESCO,II.1.1,La Rioja,AR-F,annual,2015,naphtha combustion consumption by to the public,55.735204930405,TJ,CO2,73300.0,kg/TJ,4085390.5213986863,kg +ba498793-ade7-3788-8cd2-394b6599e2c5,SESCO,II.1.1,La Rioja,AR-F,annual,2015,naphtha combustion consumption by to the public,55.735204930405,TJ,CH4,3.0,kg/TJ,167.205614791215,kg +7496f38a-f34e-3b68-afe0-f986235b6a3e,SESCO,II.1.1,La Rioja,AR-F,annual,2015,naphtha combustion consumption by to the public,55.735204930405,TJ,N2O,0.6,kg/TJ,33.441122958243,kg +2512e748-dca2-3955-9d7f-defef92a9bb1,SESCO,II.1.1,Mendoza,AR-M,annual,2015,naphtha combustion consumption by to the public,300.277377465065,TJ,CO2,73300.0,kg/TJ,22010331.768189266,kg +a355ae87-1ab4-368d-976a-3dba767a7244,SESCO,II.1.1,Mendoza,AR-M,annual,2015,naphtha combustion consumption by to the public,300.277377465065,TJ,CH4,3.0,kg/TJ,900.832132395195,kg +5f6e7f45-e5da-3ba4-949f-398991963706,SESCO,II.1.1,Mendoza,AR-M,annual,2015,naphtha combustion consumption by to the public,300.277377465065,TJ,N2O,0.6,kg/TJ,180.166426479039,kg +922c8b71-39e3-3b81-846f-1ee85382959f,SESCO,II.1.1,Misiones,AR-N,annual,2015,naphtha combustion consumption by to the public,260.75817280513,TJ,CO2,73300.0,kg/TJ,19113574.06661603,kg +52236142-dd16-3b17-8bf2-38bf3ae53405,SESCO,II.1.1,Misiones,AR-N,annual,2015,naphtha combustion consumption by to the public,260.75817280513,TJ,CH4,3.0,kg/TJ,782.27451841539,kg +dcdfc63b-840b-3db9-82fc-80080cac0844,SESCO,II.1.1,Misiones,AR-N,annual,2015,naphtha combustion consumption by to the public,260.75817280513,TJ,N2O,0.6,kg/TJ,156.45490368307802,kg +7a38702b-20ac-3bf7-b9ff-ff947a2fd2d5,SESCO,II.1.1,Salta,AR-A,annual,2015,naphtha combustion consumption by to the public,51.114619981425,TJ,CO2,73300.0,kg/TJ,3746701.6446384527,kg +b6f4e0e0-de30-3a91-bef5-2bdc0b9efa62,SESCO,II.1.1,Salta,AR-A,annual,2015,naphtha combustion consumption by to the public,51.114619981425,TJ,CH4,3.0,kg/TJ,153.343859944275,kg +b451f5d5-0ce2-3a13-b5e4-32c585456a6c,SESCO,II.1.1,Salta,AR-A,annual,2015,naphtha combustion consumption by to the public,51.114619981425,TJ,N2O,0.6,kg/TJ,30.668771988855,kg +3c30ba8a-774d-365a-9e81-6a6332fe2a85,SESCO,II.1.1,San Juan,AR-J,annual,2015,naphtha combustion consumption by to the public,256.92128864401997,TJ,CO2,73300.0,kg/TJ,18832330.457606662,kg +2e5d33ca-df53-3648-9eb4-62a25d21c7d8,SESCO,II.1.1,San Juan,AR-J,annual,2015,naphtha combustion consumption by to the public,256.92128864401997,TJ,CH4,3.0,kg/TJ,770.7638659320598,kg +ae699ee8-cc14-3c94-a6a5-9ef17b204e2c,SESCO,II.1.1,San Juan,AR-J,annual,2015,naphtha combustion consumption by to the public,256.92128864401997,TJ,N2O,0.6,kg/TJ,154.15277318641196,kg +ddecb6fd-4e03-3b46-a820-b48ad7083143,SESCO,II.1.1,San Luis,AR-D,annual,2015,naphtha combustion consumption by to the public,145.214435240875,TJ,CO2,73300.0,kg/TJ,10644218.103156136,kg +bfe7c4d3-2463-390f-b308-0035d5cd9f2b,SESCO,II.1.1,San Luis,AR-D,annual,2015,naphtha combustion consumption by to the public,145.214435240875,TJ,CH4,3.0,kg/TJ,435.643305722625,kg +edd26d2e-42ce-3323-97fb-5f294adf6a21,SESCO,II.1.1,San Luis,AR-D,annual,2015,naphtha combustion consumption by to the public,145.214435240875,TJ,N2O,0.6,kg/TJ,87.128661144525,kg +18f6ecbd-aed4-3e81-9e7b-41ca4bf57464,SESCO,II.1.1,Santa Fe,AR-S,annual,2015,naphtha combustion consumption by to the public,1043.621537883925,TJ,CO2,73300.0,kg/TJ,76497458.7268917,kg +f6e95f55-30eb-3cb2-8000-084bc5a16d74,SESCO,II.1.1,Santa Fe,AR-S,annual,2015,naphtha combustion consumption by to the public,1043.621537883925,TJ,CH4,3.0,kg/TJ,3130.8646136517746,kg +f2b5cb7a-793b-3ab0-94c7-e904f417069a,SESCO,II.1.1,Santa Fe,AR-S,annual,2015,naphtha combustion consumption by to the public,1043.621537883925,TJ,N2O,0.6,kg/TJ,626.1729227303549,kg +56e94183-fd47-36c4-92ec-7c08e2c36df2,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2015,naphtha combustion consumption by to the public,191.45323073376497,TJ,CO2,73300.0,kg/TJ,14033521.812784972,kg +422c7bbd-6f5b-3ec6-8db8-e1dbee1b70de,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2015,naphtha combustion consumption by to the public,191.45323073376497,TJ,CH4,3.0,kg/TJ,574.3596922012949,kg +906e9145-04ae-31d4-aea9-4648b3bf4307,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2015,naphtha combustion consumption by to the public,191.45323073376497,TJ,N2O,0.6,kg/TJ,114.87193844025897,kg +a86b7a97-bd67-3941-971d-42778753da4b,SESCO,II.1.1,Tucuman,AR-T,annual,2015,naphtha combustion consumption by to the public,211.749072449915,TJ,CO2,73300.0,kg/TJ,15521207.010578768,kg +899898ed-b862-34c8-98ad-c602e5e194e8,SESCO,II.1.1,Tucuman,AR-T,annual,2015,naphtha combustion consumption by to the public,211.749072449915,TJ,CH4,3.0,kg/TJ,635.2472173497449,kg +59d7a813-77a4-3a35-aacc-51f1203bc731,SESCO,II.1.1,Tucuman,AR-T,annual,2015,naphtha combustion consumption by to the public,211.749072449915,TJ,N2O,0.6,kg/TJ,127.04944346994898,kg +3cd19cc7-995f-3835-ab6c-5f82c0b90cb1,SESCO,II.1.1,Buenos Aires,AR-B,annual,2015,naphtha combustion consumption by to the public,360.10446288316496,TJ,CO2,73300.0,kg/TJ,26395657.129335992,kg +1c4ccd6a-1dd1-3227-af25-9809517d6f3d,SESCO,II.1.1,Buenos Aires,AR-B,annual,2015,naphtha combustion consumption by to the public,360.10446288316496,TJ,CH4,3.0,kg/TJ,1080.3133886494948,kg +cfd170c8-65b1-3672-badc-3b0b9f1a7fbf,SESCO,II.1.1,Buenos Aires,AR-B,annual,2015,naphtha combustion consumption by to the public,360.10446288316496,TJ,N2O,0.6,kg/TJ,216.06267772989898,kg +23a33f32-6e5d-3e09-8642-075f42c03cf9,SESCO,II.1.1,Capital Federal,AR-C,annual,2015,naphtha combustion consumption by to the public,70.55237827637998,TJ,CO2,73300.0,kg/TJ,5171489.327658652,kg +c64fa9ee-ff2c-3a2e-8ab9-4229e5ba1600,SESCO,II.1.1,Capital Federal,AR-C,annual,2015,naphtha combustion consumption by to the public,70.55237827637998,TJ,CH4,3.0,kg/TJ,211.65713482913995,kg +5ea6fde5-7104-392d-b104-6f477a655c10,SESCO,II.1.1,Capital Federal,AR-C,annual,2015,naphtha combustion consumption by to the public,70.55237827637998,TJ,N2O,0.6,kg/TJ,42.33142696582799,kg +641f3f3f-40da-3950-932b-c28e29a5d451,SESCO,II.1.1,Catamarca,AR-K,annual,2015,naphtha combustion consumption by to the public,19.315924187559997,TJ,CO2,73300.0,kg/TJ,1415857.2429481477,kg +ff676e20-757e-332d-8636-951f10f058b1,SESCO,II.1.1,Catamarca,AR-K,annual,2015,naphtha combustion consumption by to the public,19.315924187559997,TJ,CH4,3.0,kg/TJ,57.94777256267999,kg +a287b24f-73cf-3c43-bdc1-98a5bd82534d,SESCO,II.1.1,Catamarca,AR-K,annual,2015,naphtha combustion consumption by to the public,19.315924187559997,TJ,N2O,0.6,kg/TJ,11.589554512535997,kg +782bfa66-f5df-3943-ab83-b34794c9d4d5,SESCO,II.1.1,Chaco,AR-H,annual,2015,naphtha combustion consumption by to the public,32.139555653204994,TJ,CO2,73300.0,kg/TJ,2355829.429379926,kg +6e1579cf-783d-35ec-9784-788f65f4e773,SESCO,II.1.1,Chaco,AR-H,annual,2015,naphtha combustion consumption by to the public,32.139555653204994,TJ,CH4,3.0,kg/TJ,96.41866695961498,kg +dddbe51b-07e6-39e1-92f1-1decbb667fd8,SESCO,II.1.1,Chaco,AR-H,annual,2015,naphtha combustion consumption by to the public,32.139555653204994,TJ,N2O,0.6,kg/TJ,19.283733391922997,kg +fcdee289-5cff-3f1b-9285-c58478d2416f,SESCO,II.1.1,Corrientes,AR-W,annual,2015,naphtha combustion consumption by to the public,77.155401498175,TJ,CO2,73300.0,kg/TJ,5655490.929816227,kg +d20df7c6-210b-3b53-aa38-d1bb319599d3,SESCO,II.1.1,Corrientes,AR-W,annual,2015,naphtha combustion consumption by to the public,77.155401498175,TJ,CH4,3.0,kg/TJ,231.466204494525,kg +c9068bc1-9f4a-3413-a5e0-fbfce186fac5,SESCO,II.1.1,Corrientes,AR-W,annual,2015,naphtha combustion consumption by to the public,77.155401498175,TJ,N2O,0.6,kg/TJ,46.293240898905,kg +3c7ff509-924b-3188-a6e1-528587397e39,SESCO,II.1.1,Córdoba,AR-X,annual,2015,naphtha combustion consumption by to the public,166.929125297935,TJ,CO2,73300.0,kg/TJ,12235904.884338636,kg +bea06b17-d6e6-3d66-b80b-d50b832ba817,SESCO,II.1.1,Córdoba,AR-X,annual,2015,naphtha combustion consumption by to the public,166.929125297935,TJ,CH4,3.0,kg/TJ,500.787375893805,kg +4bb911c7-5378-3088-af2e-727a2033704f,SESCO,II.1.1,Córdoba,AR-X,annual,2015,naphtha combustion consumption by to the public,166.929125297935,TJ,N2O,0.6,kg/TJ,100.157475178761,kg +42df0572-06f6-35d5-b04e-434d759fd878,SESCO,II.1.1,Entre Rios,AR-E,annual,2015,naphtha combustion consumption by to the public,94.58817754886499,TJ,CO2,73300.0,kg/TJ,6933313.414331804,kg +8bdf2a3c-5dd2-3566-af0a-5a8cacfea738,SESCO,II.1.1,Entre Rios,AR-E,annual,2015,naphtha combustion consumption by to the public,94.58817754886499,TJ,CH4,3.0,kg/TJ,283.76453264659494,kg +f3d0e188-fa37-3004-994e-f65444de02f8,SESCO,II.1.1,Entre Rios,AR-E,annual,2015,naphtha combustion consumption by to the public,94.58817754886499,TJ,N2O,0.6,kg/TJ,56.75290652931899,kg +64c4babe-216f-3c26-98c3-327c47c4514d,SESCO,II.1.1,Jujuy,AR-Y,annual,2015,naphtha combustion consumption by to the public,2.0453493610549995,TJ,CO2,73300.0,kg/TJ,149924.10816533148,kg +9860d87d-fa88-3281-ba98-f23f5e747c7b,SESCO,II.1.1,Jujuy,AR-Y,annual,2015,naphtha combustion consumption by to the public,2.0453493610549995,TJ,CH4,3.0,kg/TJ,6.136048083164999,kg +2e289e48-d34b-37f5-a484-c8900c5e202e,SESCO,II.1.1,Jujuy,AR-Y,annual,2015,naphtha combustion consumption by to the public,2.0453493610549995,TJ,N2O,0.6,kg/TJ,1.2272096166329998,kg +61508afb-2833-33cf-a1e9-0c4af735312d,SESCO,II.1.1,La Pampa,AR-L,annual,2015,naphtha combustion consumption by to the public,2.7586524665699996,TJ,CO2,73300.0,kg/TJ,202209.22579958098,kg +293a6a25-005e-357b-b4e7-c940c53177fc,SESCO,II.1.1,La Pampa,AR-L,annual,2015,naphtha combustion consumption by to the public,2.7586524665699996,TJ,CH4,3.0,kg/TJ,8.275957399709998,kg +d32773ee-466a-31d2-8712-6e2dd1032a2b,SESCO,II.1.1,La Pampa,AR-L,annual,2015,naphtha combustion consumption by to the public,2.7586524665699996,TJ,N2O,0.6,kg/TJ,1.6551914799419998,kg +bcea08ce-ec8d-3b29-a14f-2a16b21ebc4e,SESCO,II.1.1,La Rioja,AR-F,annual,2015,naphtha combustion consumption by to the public,6.701742742695,TJ,CO2,73300.0,kg/TJ,491237.7430395435,kg +b463e8e8-b7f8-3e34-afe1-2266ab3e37fe,SESCO,II.1.1,La Rioja,AR-F,annual,2015,naphtha combustion consumption by to the public,6.701742742695,TJ,CH4,3.0,kg/TJ,20.105228228085,kg +1ab26bac-7757-3199-85ef-44e656da5714,SESCO,II.1.1,La Rioja,AR-F,annual,2015,naphtha combustion consumption by to the public,6.701742742695,TJ,N2O,0.6,kg/TJ,4.021045645617,kg +0f036d19-6067-3483-8378-7d6bde882abb,SESCO,II.1.1,Mendoza,AR-M,annual,2015,naphtha combustion consumption by to the public,51.001070705585,TJ,CO2,73300.0,kg/TJ,3738378.4827193804,kg +50dd8721-a629-393a-84b8-2b2cdf5bb62f,SESCO,II.1.1,Mendoza,AR-M,annual,2015,naphtha combustion consumption by to the public,51.001070705585,TJ,CH4,3.0,kg/TJ,153.003212116755,kg +5d34f4d0-9cb6-3cd7-8198-1afaec6257ab,SESCO,II.1.1,Mendoza,AR-M,annual,2015,naphtha combustion consumption by to the public,51.001070705585,TJ,N2O,0.6,kg/TJ,30.600642423350997,kg +49b07d5a-b555-390b-a3f8-4a3aa125a65e,SESCO,II.1.1,Misiones,AR-N,annual,2015,naphtha combustion consumption by to the public,41.100388303974995,TJ,CO2,73300.0,kg/TJ,3012658.462681367,kg +36804aed-7e2a-342d-bfd0-e5b51b5c2e18,SESCO,II.1.1,Misiones,AR-N,annual,2015,naphtha combustion consumption by to the public,41.100388303974995,TJ,CH4,3.0,kg/TJ,123.30116491192499,kg +f7d69c81-6700-3a92-bf7d-4b5b43299a6b,SESCO,II.1.1,Misiones,AR-N,annual,2015,naphtha combustion consumption by to the public,41.100388303974995,TJ,N2O,0.6,kg/TJ,24.660232982384997,kg +76922c9e-2e42-3a75-ad9b-15af4892733d,SESCO,II.1.1,Salta,AR-A,annual,2015,naphtha combustion consumption by to the public,1.7342612637349997,TJ,CO2,73300.0,kg/TJ,127121.35063177548,kg +a48ea9c4-8ae2-39be-a833-d8eef2564ffe,SESCO,II.1.1,Salta,AR-A,annual,2015,naphtha combustion consumption by to the public,1.7342612637349997,TJ,CH4,3.0,kg/TJ,5.202783791204999,kg +850dc348-856d-3fe9-9a49-5070f1e7b7cd,SESCO,II.1.1,Salta,AR-A,annual,2015,naphtha combustion consumption by to the public,1.7342612637349997,TJ,N2O,0.6,kg/TJ,1.0405567582409998,kg +c34cebe9-df0b-3e19-ab9d-5abf56271a7a,SESCO,II.1.1,San Juan,AR-J,annual,2015,naphtha combustion consumption by to the public,53.775164077635,TJ,CO2,73300.0,kg/TJ,3941719.5268906453,kg +efe6c552-2eab-396d-9d8d-181f60fe4b2c,SESCO,II.1.1,San Juan,AR-J,annual,2015,naphtha combustion consumption by to the public,53.775164077635,TJ,CH4,3.0,kg/TJ,161.325492232905,kg +63f5ecd6-ae7f-3513-934b-3719259fe399,SESCO,II.1.1,San Juan,AR-J,annual,2015,naphtha combustion consumption by to the public,53.775164077635,TJ,N2O,0.6,kg/TJ,32.265098446581,kg +c2420f01-f9a4-3da5-891b-ff5a1fd706d7,SESCO,II.1.1,San Luis,AR-D,annual,2015,naphtha combustion consumption by to the public,40.76334189927999,TJ,CO2,73300.0,kg/TJ,2987952.9612172237,kg +6729171e-977d-398c-b9dd-b18dd425ce00,SESCO,II.1.1,San Luis,AR-D,annual,2015,naphtha combustion consumption by to the public,40.76334189927999,TJ,CH4,3.0,kg/TJ,122.29002569783998,kg +1308eaba-1f88-311b-9648-0b870a770d60,SESCO,II.1.1,San Luis,AR-D,annual,2015,naphtha combustion consumption by to the public,40.76334189927999,TJ,N2O,0.6,kg/TJ,24.458005139567994,kg +af60f673-f03e-3539-aacb-da85fa4347a5,SESCO,II.1.1,Santa Fe,AR-S,annual,2015,naphtha combustion consumption by to the public,224.30787929049498,TJ,CO2,73300.0,kg/TJ,16441767.551993283,kg +cb797409-0219-3c20-aa16-bd78a4198db6,SESCO,II.1.1,Santa Fe,AR-S,annual,2015,naphtha combustion consumption by to the public,224.30787929049498,TJ,CH4,3.0,kg/TJ,672.923637871485,kg +14f3b189-415b-3a7b-adae-446e84e4d8b5,SESCO,II.1.1,Santa Fe,AR-S,annual,2015,naphtha combustion consumption by to the public,224.30787929049498,TJ,N2O,0.6,kg/TJ,134.58472757429698,kg +4c531e1c-a23c-3c54-96eb-c45880b5ee39,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2015,naphtha combustion consumption by to the public,26.179334956774998,TJ,CO2,73300.0,kg/TJ,1918945.2523316073,kg +1d04eb91-b984-3ef1-9804-e6485603ad48,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2015,naphtha combustion consumption by to the public,26.179334956774998,TJ,CH4,3.0,kg/TJ,78.538004870325,kg +db728aa0-a6e5-3a2b-b579-f9256da151af,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2015,naphtha combustion consumption by to the public,26.179334956774998,TJ,N2O,0.6,kg/TJ,15.707600974064999,kg +7610a4cf-0a41-3056-b163-91b52a06137a,SESCO,II.1.1,Tucuman,AR-T,annual,2015,naphtha combustion consumption by to the public,25.052105203124995,TJ,CO2,73300.0,kg/TJ,1836319.311389062,kg +eea6a22c-7831-3a8b-8f94-83260d2c90b9,SESCO,II.1.1,Tucuman,AR-T,annual,2015,naphtha combustion consumption by to the public,25.052105203124995,TJ,CH4,3.0,kg/TJ,75.15631560937499,kg +f15667e0-bafa-35cb-895a-81859ce7b049,SESCO,II.1.1,Tucuman,AR-T,annual,2015,naphtha combustion consumption by to the public,25.052105203124995,TJ,N2O,0.6,kg/TJ,15.031263121874996,kg +6f4ea12f-8b72-3fea-bfbc-651cb195abfe,SESCO,II.5.1,Buenos Aires,AR-B,annual,2015,naphtha combustion consumption by agriculture machines,8.040496063600001,TJ,CO2,73300.0,kg/TJ,589368.36146188,kg +3c3e987b-d7dc-3a5b-9f5b-f9475fbd56dc,SESCO,II.5.1,Buenos Aires,AR-B,annual,2015,naphtha combustion consumption by agriculture machines,8.040496063600001,TJ,CH4,3.0,kg/TJ,24.1214881908,kg +d5b79998-d91c-371c-955a-778e7e5382b4,SESCO,II.5.1,Buenos Aires,AR-B,annual,2015,naphtha combustion consumption by agriculture machines,8.040496063600001,TJ,N2O,0.6,kg/TJ,4.82429763816,kg +b576071b-6bbc-3f5d-a186-de34d8ac7135,SESCO,II.5.1,Rio Negro,AR-R,annual,2015,naphtha combustion consumption by agriculture machines,0.21415213819999998,TJ,CO2,73300.0,kg/TJ,15697.351730059998,kg +c4480d99-2aed-3682-b0a9-b355e2c110ce,SESCO,II.5.1,Rio Negro,AR-R,annual,2015,naphtha combustion consumption by agriculture machines,0.21415213819999998,TJ,CH4,3.0,kg/TJ,0.6424564145999999,kg +1c1d43c0-cbc7-3264-bfb1-5e33ef22ed23,SESCO,II.5.1,Rio Negro,AR-R,annual,2015,naphtha combustion consumption by agriculture machines,0.21415213819999998,TJ,N2O,0.6,kg/TJ,0.12849128291999998,kg +d2f8cacf-12f8-3c6a-ab26-60cf222c86d0,SESCO,II.1.1,Buenos Aires,AR-B,annual,2015,naphtha combustion consumption by to the public,4265.75228624545,TJ,CO2,73300.0,kg/TJ,312679642.58179146,kg +b97a0390-d7d6-3677-a17f-ec343bef708d,SESCO,II.1.1,Buenos Aires,AR-B,annual,2015,naphtha combustion consumption by to the public,4265.75228624545,TJ,CH4,3.0,kg/TJ,12797.25685873635,kg +260a46f6-e065-3c6b-88e7-0465adead218,SESCO,II.1.1,Buenos Aires,AR-B,annual,2015,naphtha combustion consumption by to the public,4265.75228624545,TJ,N2O,0.6,kg/TJ,2559.4513717472696,kg +f1aa0eee-143c-39ff-a6e5-9b67aa0ddb15,SESCO,II.1.1,Capital Federal,AR-C,annual,2015,naphtha combustion consumption by to the public,452.20671701205,TJ,CO2,73300.0,kg/TJ,33146752.356983263,kg +c1cbe901-b97d-31ad-aaed-3ff231414880,SESCO,II.1.1,Capital Federal,AR-C,annual,2015,naphtha combustion consumption by to the public,452.20671701205,TJ,CH4,3.0,kg/TJ,1356.62015103615,kg +df8d611b-3a30-347c-9cf0-a5367c11f96b,SESCO,II.1.1,Capital Federal,AR-C,annual,2015,naphtha combustion consumption by to the public,452.20671701205,TJ,N2O,0.6,kg/TJ,271.32403020722995,kg +620587d6-d1d8-3a22-b01c-bad82f67cbfa,SESCO,II.1.1,Chaco,AR-H,annual,2015,naphtha combustion consumption by to the public,1.05439058725,TJ,CO2,73300.0,kg/TJ,77286.830045425,kg +59bf409d-a8b6-331c-a7c0-ab7b58fb6b4b,SESCO,II.1.1,Chaco,AR-H,annual,2015,naphtha combustion consumption by to the public,1.05439058725,TJ,CH4,3.0,kg/TJ,3.1631717617499997,kg +5a7b348d-817f-36eb-bbb2-9842f22e8f1f,SESCO,II.1.1,Chaco,AR-H,annual,2015,naphtha combustion consumption by to the public,1.05439058725,TJ,N2O,0.6,kg/TJ,0.6326343523499999,kg +7e10cbbf-db6a-3395-9d61-2555ed3f997d,SESCO,II.1.1,Chubut,AR-U,annual,2015,naphtha combustion consumption by to the public,1456.6798689442999,TJ,CO2,73300.0,kg/TJ,106774634.39361718,kg +6c9baabc-4b55-3671-8102-b6d3a50d8ba5,SESCO,II.1.1,Chubut,AR-U,annual,2015,naphtha combustion consumption by to the public,1456.6798689442999,TJ,CH4,3.0,kg/TJ,4370.039606832899,kg +80e6e7cc-171a-382e-b164-f1d9e6cfc104,SESCO,II.1.1,Chubut,AR-U,annual,2015,naphtha combustion consumption by to the public,1456.6798689442999,TJ,N2O,0.6,kg/TJ,874.0079213665799,kg +93aa97cb-0b06-3d5f-88a6-7c39b3901943,SESCO,II.1.1,Córdoba,AR-X,annual,2015,naphtha combustion consumption by to the public,507.7368216920999,TJ,CO2,73300.0,kg/TJ,37217109.03003092,kg +c48bc961-33c1-38a6-9826-a1ccfa987e0c,SESCO,II.1.1,Córdoba,AR-X,annual,2015,naphtha combustion consumption by to the public,507.7368216920999,TJ,CH4,3.0,kg/TJ,1523.2104650762997,kg +36ad3041-2083-329b-bd08-683d4559aefa,SESCO,II.1.1,Córdoba,AR-X,annual,2015,naphtha combustion consumption by to the public,507.7368216920999,TJ,N2O,0.6,kg/TJ,304.64209301525995,kg +220d0e17-0300-3b46-830d-97dca023b197,SESCO,II.1.1,Entre Rios,AR-E,annual,2015,naphtha combustion consumption by to the public,110.09156693534999,TJ,CO2,73300.0,kg/TJ,8069711.8563611545,kg +fc11d4a2-827c-3046-8b99-1286bf6c71fa,SESCO,II.1.1,Entre Rios,AR-E,annual,2015,naphtha combustion consumption by to the public,110.09156693534999,TJ,CH4,3.0,kg/TJ,330.27470080604996,kg +63a01242-8edc-382e-9f4d-33b41b55424b,SESCO,II.1.1,Entre Rios,AR-E,annual,2015,naphtha combustion consumption by to the public,110.09156693534999,TJ,N2O,0.6,kg/TJ,66.05494016120998,kg +754994c5-d61b-315b-987f-bbbb123bbd3d,SESCO,II.1.1,La Pampa,AR-L,annual,2015,naphtha combustion consumption by to the public,212.48694006539995,TJ,CO2,73300.0,kg/TJ,15575292.706793817,kg +c0619293-468e-37ef-84c6-2c564b2999be,SESCO,II.1.1,La Pampa,AR-L,annual,2015,naphtha combustion consumption by to the public,212.48694006539995,TJ,CH4,3.0,kg/TJ,637.4608201961998,kg +1d2cbc87-e69a-33c3-8397-cd8aa711b32d,SESCO,II.1.1,La Pampa,AR-L,annual,2015,naphtha combustion consumption by to the public,212.48694006539995,TJ,N2O,0.6,kg/TJ,127.49216403923997,kg +a29bb5a8-35c7-35d8-b55c-55ee415bcf55,SESCO,II.1.1,Mendoza,AR-M,annual,2015,naphtha combustion consumption by to the public,20.349286207249996,TJ,CO2,73300.0,kg/TJ,1491602.6789914246,kg +3034a1a3-e71f-31b4-9cb0-8ec1feb00cd2,SESCO,II.1.1,Mendoza,AR-M,annual,2015,naphtha combustion consumption by to the public,20.349286207249996,TJ,CH4,3.0,kg/TJ,61.04785862174999,kg +11404396-9862-30c4-9fa7-10b9422cc29d,SESCO,II.1.1,Mendoza,AR-M,annual,2015,naphtha combustion consumption by to the public,20.349286207249996,TJ,N2O,0.6,kg/TJ,12.209571724349997,kg +0076a605-3467-3bd4-89d3-c789f7cbde14,SESCO,II.1.1,Neuquén,AR-Q,annual,2015,naphtha combustion consumption by to the public,568.6506325499998,TJ,CO2,73300.0,kg/TJ,41682091.365914986,kg +2c9878d4-40d6-3d40-9bd8-792dea1fd967,SESCO,II.1.1,Neuquén,AR-Q,annual,2015,naphtha combustion consumption by to the public,568.6506325499998,TJ,CH4,3.0,kg/TJ,1705.9518976499994,kg +a47c1969-9233-3155-b4b2-e845f4ea8e07,SESCO,II.1.1,Neuquén,AR-Q,annual,2015,naphtha combustion consumption by to the public,568.6506325499998,TJ,N2O,0.6,kg/TJ,341.1903795299999,kg +05523f11-cc94-3683-ac68-535743d28e72,SESCO,II.1.1,Rio Negro,AR-R,annual,2015,naphtha combustion consumption by to the public,1196.5943421432,TJ,CO2,73300.0,kg/TJ,87710365.27909656,kg +0998ef52-41e4-3d7d-9123-6944842c50b4,SESCO,II.1.1,Rio Negro,AR-R,annual,2015,naphtha combustion consumption by to the public,1196.5943421432,TJ,CH4,3.0,kg/TJ,3589.7830264296,kg +c0e587f4-d7b6-39b2-99cc-924fe507282d,SESCO,II.1.1,Rio Negro,AR-R,annual,2015,naphtha combustion consumption by to the public,1196.5943421432,TJ,N2O,0.6,kg/TJ,717.95660528592,kg +0bfa0b62-7c69-3f87-8177-714102f83944,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2015,naphtha combustion consumption by to the public,842.2185144373,TJ,CO2,73300.0,kg/TJ,61734617.10825409,kg +9c9cd189-3edd-3017-b532-ffe28eaf91f2,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2015,naphtha combustion consumption by to the public,842.2185144373,TJ,CH4,3.0,kg/TJ,2526.6555433119,kg +a1b35d89-5c5f-3f4a-96be-a75d21256f70,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2015,naphtha combustion consumption by to the public,842.2185144373,TJ,N2O,0.6,kg/TJ,505.33110866237996,kg +d91ed15c-5669-3718-a45c-5bdfa3405af1,SESCO,II.1.1,Santa Fe,AR-S,annual,2015,naphtha combustion consumption by to the public,544.8735089798,TJ,CO2,73300.0,kg/TJ,39939228.20821934,kg +e4ea1302-1263-398f-a037-a49813c39276,SESCO,II.1.1,Santa Fe,AR-S,annual,2015,naphtha combustion consumption by to the public,544.8735089798,TJ,CH4,3.0,kg/TJ,1634.6205269394,kg +ce10a253-82c4-3f18-8a45-7f898258500e,SESCO,II.1.1,Santa Fe,AR-S,annual,2015,naphtha combustion consumption by to the public,544.8735089798,TJ,N2O,0.6,kg/TJ,326.92410538788,kg +3d29328c-aaba-3881-8b8e-00350c270088,SESCO,II.1.1,Buenos Aires,AR-B,annual,2015,naphtha combustion consumption by to the public,1204.79258364465,TJ,CO2,73300.0,kg/TJ,88311296.38115284,kg +c952cb92-074e-367d-98e3-bf11fbae9422,SESCO,II.1.1,Buenos Aires,AR-B,annual,2015,naphtha combustion consumption by to the public,1204.79258364465,TJ,CH4,3.0,kg/TJ,3614.3777509339498,kg +69eb5cbb-0d30-39b7-904b-006b82013164,SESCO,II.1.1,Buenos Aires,AR-B,annual,2015,naphtha combustion consumption by to the public,1204.79258364465,TJ,N2O,0.6,kg/TJ,722.87555018679,kg +8d70eabd-e61c-3520-8931-7a0900a96fc8,SESCO,II.1.1,Capital Federal,AR-C,annual,2015,naphtha combustion consumption by to the public,239.33194580295,TJ,CO2,73300.0,kg/TJ,17543031.627356235,kg +ddf77511-e1bb-3d73-bc4e-78fa8755acf3,SESCO,II.1.1,Capital Federal,AR-C,annual,2015,naphtha combustion consumption by to the public,239.33194580295,TJ,CH4,3.0,kg/TJ,717.99583740885,kg +2cbaeebb-42ba-3da2-aec3-a234f4ef1a6a,SESCO,II.1.1,Capital Federal,AR-C,annual,2015,naphtha combustion consumption by to the public,239.33194580295,TJ,N2O,0.6,kg/TJ,143.59916748177,kg +2dd260ce-6a9d-3860-a25d-271263057714,SESCO,II.1.1,Chubut,AR-U,annual,2015,naphtha combustion consumption by to the public,302.17007015195,TJ,CO2,73300.0,kg/TJ,22149066.142137934,kg +d34f7edc-54d7-341e-a68f-30e5731acfc4,SESCO,II.1.1,Chubut,AR-U,annual,2015,naphtha combustion consumption by to the public,302.17007015195,TJ,CH4,3.0,kg/TJ,906.5102104558499,kg +912e000b-701f-3bb0-be57-a4dd79c8041f,SESCO,II.1.1,Chubut,AR-U,annual,2015,naphtha combustion consumption by to the public,302.17007015195,TJ,N2O,0.6,kg/TJ,181.30204209116997,kg +598807d0-9d37-3f57-82fd-d49253b6dfbc,SESCO,II.1.1,Córdoba,AR-X,annual,2015,naphtha combustion consumption by to the public,124.72060881279998,TJ,CO2,73300.0,kg/TJ,9142020.625978239,kg +cfd1b326-93ca-31eb-a882-7dbac582a08b,SESCO,II.1.1,Córdoba,AR-X,annual,2015,naphtha combustion consumption by to the public,124.72060881279998,TJ,CH4,3.0,kg/TJ,374.16182643839994,kg +cd5a4e19-68a9-31a9-82f1-56dece1d7d27,SESCO,II.1.1,Córdoba,AR-X,annual,2015,naphtha combustion consumption by to the public,124.72060881279998,TJ,N2O,0.6,kg/TJ,74.83236528767999,kg +d83127de-00da-3a59-b212-884ba92b1e00,SESCO,II.1.1,Entre Rios,AR-E,annual,2015,naphtha combustion consumption by to the public,36.85452906134999,TJ,CO2,73300.0,kg/TJ,2701436.9801969547,kg +89da6634-bc86-3788-96aa-9e20913b8b23,SESCO,II.1.1,Entre Rios,AR-E,annual,2015,naphtha combustion consumption by to the public,36.85452906134999,TJ,CH4,3.0,kg/TJ,110.56358718404998,kg +0929efc0-609f-3a47-8f22-e56e31a079b5,SESCO,II.1.1,Entre Rios,AR-E,annual,2015,naphtha combustion consumption by to the public,36.85452906134999,TJ,N2O,0.6,kg/TJ,22.112717436809994,kg +60fa1c89-d9ce-3058-aaab-29537da7f1bf,SESCO,II.1.1,La Pampa,AR-L,annual,2015,naphtha combustion consumption by to the public,63.6896191932,TJ,CO2,73300.0,kg/TJ,4668449.08686156,kg +0f7e0230-7f9f-3d26-881e-3e36c562a383,SESCO,II.1.1,La Pampa,AR-L,annual,2015,naphtha combustion consumption by to the public,63.6896191932,TJ,CH4,3.0,kg/TJ,191.0688575796,kg +48ee9342-c04d-3eda-8ed8-457756090c69,SESCO,II.1.1,La Pampa,AR-L,annual,2015,naphtha combustion consumption by to the public,63.6896191932,TJ,N2O,0.6,kg/TJ,38.21377151592,kg +b573719a-92ef-3583-a188-22c515eb16e9,SESCO,II.1.1,Mendoza,AR-M,annual,2015,naphtha combustion consumption by to the public,3.79028705055,TJ,CO2,73300.0,kg/TJ,277828.040805315,kg +8b3333db-f8f4-3ad6-8a4a-0ae33cd6a4a2,SESCO,II.1.1,Mendoza,AR-M,annual,2015,naphtha combustion consumption by to the public,3.79028705055,TJ,CH4,3.0,kg/TJ,11.37086115165,kg +8854c183-bc75-35b0-9fc3-d31d18a05384,SESCO,II.1.1,Mendoza,AR-M,annual,2015,naphtha combustion consumption by to the public,3.79028705055,TJ,N2O,0.6,kg/TJ,2.27417223033,kg +8848f89c-1a9f-3fd9-a449-a62878fa4b2b,SESCO,II.1.1,Neuquén,AR-Q,annual,2015,naphtha combustion consumption by to the public,219.89461468974997,TJ,CO2,73300.0,kg/TJ,16118275.256758673,kg +5028a1e8-c1bf-35fb-8a75-6d8b5c5f7ff1,SESCO,II.1.1,Neuquén,AR-Q,annual,2015,naphtha combustion consumption by to the public,219.89461468974997,TJ,CH4,3.0,kg/TJ,659.68384406925,kg +fef87696-43f5-3fa8-bf22-18af13051015,SESCO,II.1.1,Neuquén,AR-Q,annual,2015,naphtha combustion consumption by to the public,219.89461468974997,TJ,N2O,0.6,kg/TJ,131.93676881384997,kg +befa5376-9316-3820-bf73-24654c93b909,SESCO,II.1.1,Rio Negro,AR-R,annual,2015,naphtha combustion consumption by to the public,229.25597544849998,TJ,CO2,73300.0,kg/TJ,16804463.000375047,kg +d2f5dc57-52b1-30f1-9318-979668e88f34,SESCO,II.1.1,Rio Negro,AR-R,annual,2015,naphtha combustion consumption by to the public,229.25597544849998,TJ,CH4,3.0,kg/TJ,687.7679263455,kg +15f23a6d-b688-3295-ac9f-a16c6e25ebae,SESCO,II.1.1,Rio Negro,AR-R,annual,2015,naphtha combustion consumption by to the public,229.25597544849998,TJ,N2O,0.6,kg/TJ,137.55358526909998,kg +fd1a8329-3c91-3e4e-abb3-ae0049f7d81b,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2015,naphtha combustion consumption by to the public,189.16181844559998,TJ,CO2,73300.0,kg/TJ,13865561.292062478,kg +6c69a103-774f-37c2-a89e-abf11eba2af9,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2015,naphtha combustion consumption by to the public,189.16181844559998,TJ,CH4,3.0,kg/TJ,567.4854553368,kg +2df8874d-363b-3c88-886c-37b01e2a38f0,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2015,naphtha combustion consumption by to the public,189.16181844559998,TJ,N2O,0.6,kg/TJ,113.49709106735999,kg +59b81a30-b9bf-37ac-8683-0bb39cae22cc,SESCO,II.1.1,Santa Fe,AR-S,annual,2015,naphtha combustion consumption by to the public,189.41472875325,TJ,CO2,73300.0,kg/TJ,13884099.617613224,kg +41bdfce1-b34b-3374-a493-608089c6f321,SESCO,II.1.1,Santa Fe,AR-S,annual,2015,naphtha combustion consumption by to the public,189.41472875325,TJ,CH4,3.0,kg/TJ,568.24418625975,kg +95505d63-4c75-314b-96c9-75e213719c25,SESCO,II.1.1,Santa Fe,AR-S,annual,2015,naphtha combustion consumption by to the public,189.41472875325,TJ,N2O,0.6,kg/TJ,113.64883725194998,kg +ce32d31c-86be-3a40-8509-71509a5355f7,SESCO,II.1.1,Buenos Aires,AR-B,annual,2015,naphtha combustion consumption by to the public,385.4863212199999,TJ,CO2,73300.0,kg/TJ,28256147.345425993,kg +cffec005-d44c-38d5-913e-b4353e5ee973,SESCO,II.1.1,Buenos Aires,AR-B,annual,2015,naphtha combustion consumption by to the public,385.4863212199999,TJ,CH4,3.0,kg/TJ,1156.4589636599999,kg +4fb25c81-ca9b-3f3e-bc1f-d48030059435,SESCO,II.1.1,Buenos Aires,AR-B,annual,2015,naphtha combustion consumption by to the public,385.4863212199999,TJ,N2O,0.6,kg/TJ,231.29179273199995,kg +55a75d0b-2874-35de-8b27-ee023c23fad8,SESCO,II.1.1,Capital Federal,AR-C,annual,2015,naphtha combustion consumption by to the public,15.55939385,TJ,CO2,73300.0,kg/TJ,1140503.569205,kg +8f7c6318-9463-306d-b485-5e734bb36745,SESCO,II.1.1,Capital Federal,AR-C,annual,2015,naphtha combustion consumption by to the public,15.55939385,TJ,CH4,3.0,kg/TJ,46.67818155,kg +3708e90c-e0e5-3155-b704-73cdc774c6c3,SESCO,II.1.1,Capital Federal,AR-C,annual,2015,naphtha combustion consumption by to the public,15.55939385,TJ,N2O,0.6,kg/TJ,9.33563631,kg +d00cfde7-c0e2-3425-b132-ceb2b30e81ba,SESCO,II.1.1,Córdoba,AR-X,annual,2015,naphtha combustion consumption by to the public,98.31416594999999,TJ,CO2,73300.0,kg/TJ,7206428.364134999,kg +4a50ee0c-2be2-3552-89d9-e94a7748cae5,SESCO,II.1.1,Córdoba,AR-X,annual,2015,naphtha combustion consumption by to the public,98.31416594999999,TJ,CH4,3.0,kg/TJ,294.94249785,kg +f53c706f-03ce-3783-ae66-f1d6352c2007,SESCO,II.1.1,Córdoba,AR-X,annual,2015,naphtha combustion consumption by to the public,98.31416594999999,TJ,N2O,0.6,kg/TJ,58.98849956999999,kg +1182062f-fff3-33e7-a7ef-20cacfb81534,SESCO,II.1.1,Entre Rios,AR-E,annual,2015,naphtha combustion consumption by to the public,25.194369199999997,TJ,CO2,73300.0,kg/TJ,1846747.2623599998,kg +ba462ab8-6cc4-3557-b2a1-21c522ae71c4,SESCO,II.1.1,Entre Rios,AR-E,annual,2015,naphtha combustion consumption by to the public,25.194369199999997,TJ,CH4,3.0,kg/TJ,75.58310759999999,kg +783f1116-027e-30b9-b0e0-0d14e213ef5a,SESCO,II.1.1,Entre Rios,AR-E,annual,2015,naphtha combustion consumption by to the public,25.194369199999997,TJ,N2O,0.6,kg/TJ,15.116621519999997,kg +e61fcdce-25ef-3095-82e4-f54465d18209,SESCO,II.1.1,Salta,AR-A,annual,2015,naphtha combustion consumption by to the public,4.02236835,TJ,CO2,73300.0,kg/TJ,294839.600055,kg +a6c7d628-deac-3319-9ae2-81397e39a683,SESCO,II.1.1,Salta,AR-A,annual,2015,naphtha combustion consumption by to the public,4.02236835,TJ,CH4,3.0,kg/TJ,12.067105049999999,kg +c0c37d62-969e-3f3e-b103-961116fd0437,SESCO,II.1.1,Salta,AR-A,annual,2015,naphtha combustion consumption by to the public,4.02236835,TJ,N2O,0.6,kg/TJ,2.41342101,kg +6316d123-162d-3593-ba52-4f350bdcf94d,SESCO,II.1.1,Santa Fe,AR-S,annual,2015,naphtha combustion consumption by to the public,16.80663985,TJ,CO2,73300.0,kg/TJ,1231926.701005,kg +619709bf-3065-300d-b634-50757791f787,SESCO,II.1.1,Santa Fe,AR-S,annual,2015,naphtha combustion consumption by to the public,16.80663985,TJ,CH4,3.0,kg/TJ,50.41991955,kg +80b7b1f3-9cf9-3658-a2fe-c7dbbc4631ee,SESCO,II.1.1,Santa Fe,AR-S,annual,2015,naphtha combustion consumption by to the public,16.80663985,TJ,N2O,0.6,kg/TJ,10.083983909999999,kg +b96850aa-275f-3f9b-b6ea-36e3a03319c5,SESCO,II.1.1,Buenos Aires,AR-B,annual,2015,naphtha combustion consumption by to the public,61.448692304999994,TJ,CO2,73300.0,kg/TJ,4504189.1459564995,kg +6d446e73-617b-3580-9bfc-68f01a2fbd9b,SESCO,II.1.1,Buenos Aires,AR-B,annual,2015,naphtha combustion consumption by to the public,61.448692304999994,TJ,CH4,3.0,kg/TJ,184.34607691499997,kg +c8ad6cd7-3ace-3c64-9390-6fef217e4f90,SESCO,II.1.1,Buenos Aires,AR-B,annual,2015,naphtha combustion consumption by to the public,61.448692304999994,TJ,N2O,0.6,kg/TJ,36.869215383,kg +50148584-0c62-30d6-ad7b-5498a1539420,SESCO,II.1.1,Capital Federal,AR-C,annual,2015,naphtha combustion consumption by to the public,1.5278763499999999,TJ,CO2,73300.0,kg/TJ,111993.336455,kg +b502ebc2-39e2-3a35-ab71-465612d0d792,SESCO,II.1.1,Capital Federal,AR-C,annual,2015,naphtha combustion consumption by to the public,1.5278763499999999,TJ,CH4,3.0,kg/TJ,4.58362905,kg +6d029e4b-1a80-387c-8d02-8eb289cf4441,SESCO,II.1.1,Capital Federal,AR-C,annual,2015,naphtha combustion consumption by to the public,1.5278763499999999,TJ,N2O,0.6,kg/TJ,0.9167258099999999,kg +037508e7-fe4a-369e-ae48-aab500fb3ee9,SESCO,II.1.1,Córdoba,AR-X,annual,2015,naphtha combustion consumption by to the public,6.267411149999999,TJ,CO2,73300.0,kg/TJ,459401.23729499994,kg +004206d3-9d15-3f6c-8608-f532f882f949,SESCO,II.1.1,Córdoba,AR-X,annual,2015,naphtha combustion consumption by to the public,6.267411149999999,TJ,CH4,3.0,kg/TJ,18.802233449999996,kg +27f4e24f-4d94-3110-917b-2069f6a6a810,SESCO,II.1.1,Córdoba,AR-X,annual,2015,naphtha combustion consumption by to the public,6.267411149999999,TJ,N2O,0.6,kg/TJ,3.7604466899999993,kg +8242658c-d5ea-3e9a-984f-44cd2444fefd,SESCO,II.1.1,Entre Rios,AR-E,annual,2015,naphtha combustion consumption by to the public,1.9955935999999999,TJ,CO2,73300.0,kg/TJ,146277.01088,kg +9c8405be-0359-381b-a7ee-adefd96cc82d,SESCO,II.1.1,Entre Rios,AR-E,annual,2015,naphtha combustion consumption by to the public,1.9955935999999999,TJ,CH4,3.0,kg/TJ,5.9867808,kg +e4054b05-57cf-3c93-ba9b-410e429af426,SESCO,II.1.1,Entre Rios,AR-E,annual,2015,naphtha combustion consumption by to the public,1.9955935999999999,TJ,N2O,0.6,kg/TJ,1.1973561599999998,kg +07d51ae9-1271-3e34-b876-a41fa86f1845,SESCO,II.1.1,Santa Fe,AR-S,annual,2015,naphtha combustion consumption by to the public,2.3385862499999996,TJ,CO2,73300.0,kg/TJ,171418.37212499997,kg +33cf63ce-8cbc-36df-ac56-3e0ce012d6fb,SESCO,II.1.1,Santa Fe,AR-S,annual,2015,naphtha combustion consumption by to the public,2.3385862499999996,TJ,CH4,3.0,kg/TJ,7.015758749999999,kg +7fa76f09-1526-313c-8d97-22d8d5712e47,SESCO,II.1.1,Santa Fe,AR-S,annual,2015,naphtha combustion consumption by to the public,2.3385862499999996,TJ,N2O,0.6,kg/TJ,1.4031517499999997,kg +77daa151-2c18-3379-a8d0-1a3e458c29a6,SESCO,II.1.1,Catamarca,AR-K,annual,2015,naphtha combustion consumption by to the public,0.24944919999999998,TJ,CO2,73300.0,kg/TJ,18284.62636,kg +850a17cb-0eee-3657-9ae6-253217018478,SESCO,II.1.1,Catamarca,AR-K,annual,2015,naphtha combustion consumption by to the public,0.24944919999999998,TJ,CH4,3.0,kg/TJ,0.7483476,kg +cb1c6e8a-77e1-3568-94db-11b85bf39bfb,SESCO,II.1.1,Catamarca,AR-K,annual,2015,naphtha combustion consumption by to the public,0.24944919999999998,TJ,N2O,0.6,kg/TJ,0.14966951999999997,kg +ca5aa7ad-6433-3c4d-b63c-92e45d9aaecc,SESCO,II.1.1,Jujuy,AR-Y,annual,2015,naphtha combustion consumption by to the public,2.1826805,TJ,CO2,73300.0,kg/TJ,159990.48065,kg +e1241ca3-ba4f-3554-a811-3d9f74761bd9,SESCO,II.1.1,Jujuy,AR-Y,annual,2015,naphtha combustion consumption by to the public,2.1826805,TJ,CH4,3.0,kg/TJ,6.5480415,kg +72cd2d21-2978-36b1-9e11-d919c66224d8,SESCO,II.1.1,Jujuy,AR-Y,annual,2015,naphtha combustion consumption by to the public,2.1826805,TJ,N2O,0.6,kg/TJ,1.3096083,kg +ec8f77c1-7e44-3529-8f54-2ee3dc9c7a90,SESCO,II.1.1,Salta,AR-A,annual,2015,naphtha combustion consumption by to the public,15.495160680999998,TJ,CO2,73300.0,kg/TJ,1135795.2779173,kg +05fd84ce-be2a-356c-9f9b-ebe04e1329c3,SESCO,II.1.1,Salta,AR-A,annual,2015,naphtha combustion consumption by to the public,15.495160680999998,TJ,CH4,3.0,kg/TJ,46.48548204299999,kg +da0e30d9-4d14-3cf3-8d91-1bd2b052911c,SESCO,II.1.1,Salta,AR-A,annual,2015,naphtha combustion consumption by to the public,15.495160680999998,TJ,N2O,0.6,kg/TJ,9.297096408599998,kg +74ed378e-fada-3cb3-9aef-ef8d9b66b838,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2015,naphtha combustion consumption by to the public,0.34299264999999995,TJ,CO2,73300.0,kg/TJ,25141.361244999996,kg +350e8076-eefd-3892-b5f2-476dafe0175d,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2015,naphtha combustion consumption by to the public,0.34299264999999995,TJ,CH4,3.0,kg/TJ,1.0289779499999998,kg +94952d45-c43e-35ff-b31f-b75c2c06c0b5,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2015,naphtha combustion consumption by to the public,0.34299264999999995,TJ,N2O,0.6,kg/TJ,0.20579558999999997,kg +e20ca998-d5dd-39c1-8358-a12d68dffbc1,SESCO,II.1.1,Tucuman,AR-T,annual,2015,naphtha combustion consumption by to the public,1.40315175,TJ,CO2,73300.0,kg/TJ,102851.023275,kg +f314e1dc-c6ee-37fe-88c1-e41e11c0a88b,SESCO,II.1.1,Tucuman,AR-T,annual,2015,naphtha combustion consumption by to the public,1.40315175,TJ,CH4,3.0,kg/TJ,4.2094552499999995,kg +f9c9ab67-c9bc-3c75-b249-b0ce6d403595,SESCO,II.1.1,Tucuman,AR-T,annual,2015,naphtha combustion consumption by to the public,1.40315175,TJ,N2O,0.6,kg/TJ,0.84189105,kg +edda6b1f-a08b-3701-af93-c47c7370eda5,SESCO,II.1.1,Catamarca,AR-K,annual,2015,naphtha combustion consumption by to the public,252.47813691099998,TJ,CO2,73300.0,kg/TJ,18506647.435576297,kg +45f7d97a-ef4e-3ed2-b142-369ddaced664,SESCO,II.1.1,Catamarca,AR-K,annual,2015,naphtha combustion consumption by to the public,252.47813691099998,TJ,CH4,3.0,kg/TJ,757.4344107329999,kg +545f5784-85ad-32c4-bc55-a1ba1a7777ed,SESCO,II.1.1,Catamarca,AR-K,annual,2015,naphtha combustion consumption by to the public,252.47813691099998,TJ,N2O,0.6,kg/TJ,151.48688214659998,kg +a87f5579-655b-3fcf-b40d-a749e2069360,SESCO,II.1.1,Chaco,AR-H,annual,2015,naphtha combustion consumption by to the public,98.795602906,TJ,CO2,73300.0,kg/TJ,7241717.6930098,kg +2bbf0008-c2a3-3890-8b93-280aa8ad3ff9,SESCO,II.1.1,Chaco,AR-H,annual,2015,naphtha combustion consumption by to the public,98.795602906,TJ,CH4,3.0,kg/TJ,296.386808718,kg +5a8f44ac-a0f9-31bc-904c-4f3c789d52fd,SESCO,II.1.1,Chaco,AR-H,annual,2015,naphtha combustion consumption by to the public,98.795602906,TJ,N2O,0.6,kg/TJ,59.2773617436,kg +125dba59-d0f3-3d61-a278-370ae89393a7,SESCO,II.1.1,Córdoba,AR-X,annual,2015,naphtha combustion consumption by to the public,0.8736958229999999,TJ,CO2,73300.0,kg/TJ,64041.90382589999,kg +e3a9cf53-2ec4-36d9-a79a-5c86414e723f,SESCO,II.1.1,Córdoba,AR-X,annual,2015,naphtha combustion consumption by to the public,0.8736958229999999,TJ,CH4,3.0,kg/TJ,2.621087469,kg +f7103961-f46e-3e12-81f2-6ad88792906a,SESCO,II.1.1,Córdoba,AR-X,annual,2015,naphtha combustion consumption by to the public,0.8736958229999999,TJ,N2O,0.6,kg/TJ,0.5242174937999999,kg +29fcb96d-5939-3571-82d1-28402dbf2fc7,SESCO,II.1.1,Jujuy,AR-Y,annual,2015,naphtha combustion consumption by to the public,578.8184937534999,TJ,CO2,73300.0,kg/TJ,42427395.59213154,kg +3507460c-84fe-3a7c-8579-7ac4ed83e967,SESCO,II.1.1,Jujuy,AR-Y,annual,2015,naphtha combustion consumption by to the public,578.8184937534999,TJ,CH4,3.0,kg/TJ,1736.4554812604997,kg +baeffc14-c284-3db8-a41e-c2e3a1f266ae,SESCO,II.1.1,Jujuy,AR-Y,annual,2015,naphtha combustion consumption by to the public,578.8184937534999,TJ,N2O,0.6,kg/TJ,347.2910962520999,kg +1e41780e-af47-352c-a589-847ea32a1f30,SESCO,II.1.1,La Rioja,AR-F,annual,2015,naphtha combustion consumption by to the public,295.72732739549997,TJ,CO2,73300.0,kg/TJ,21676813.09809015,kg +47088a5f-9c7b-3cf5-9a8c-d1d4eec2e6a7,SESCO,II.1.1,La Rioja,AR-F,annual,2015,naphtha combustion consumption by to the public,295.72732739549997,TJ,CH4,3.0,kg/TJ,887.1819821864999,kg +4ee80f97-6b57-3203-9a09-bf0d4102dbed,SESCO,II.1.1,La Rioja,AR-F,annual,2015,naphtha combustion consumption by to the public,295.72732739549997,TJ,N2O,0.6,kg/TJ,177.43639643729998,kg +545b24e4-dfcf-3923-b9de-d24c2eb18519,SESCO,II.1.1,Salta,AR-A,annual,2015,naphtha combustion consumption by to the public,1107.4836667895,TJ,CO2,73300.0,kg/TJ,81178552.77567035,kg +15f167b0-e6a4-305b-9a25-788156275960,SESCO,II.1.1,Salta,AR-A,annual,2015,naphtha combustion consumption by to the public,1107.4836667895,TJ,CH4,3.0,kg/TJ,3322.4510003685,kg +fd806adb-b9c1-356d-a2d2-51751e5580e0,SESCO,II.1.1,Salta,AR-A,annual,2015,naphtha combustion consumption by to the public,1107.4836667895,TJ,N2O,0.6,kg/TJ,664.4902000737,kg +9f43ca75-3d69-397b-a5ce-df0c2b81a8aa,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2015,naphtha combustion consumption by to the public,310.4067891925,TJ,CO2,73300.0,kg/TJ,22752817.64781025,kg +160d5062-c9f8-3fa4-8cda-63ff62646105,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2015,naphtha combustion consumption by to the public,310.4067891925,TJ,CH4,3.0,kg/TJ,931.2203675775,kg +5a35fba6-8f15-3b24-a415-4a33ce8cf673,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2015,naphtha combustion consumption by to the public,310.4067891925,TJ,N2O,0.6,kg/TJ,186.2440735155,kg +47b76390-6333-30ba-8c86-52a9d8262929,SESCO,II.1.1,Tucuman,AR-T,annual,2015,naphtha combustion consumption by to the public,1742.764986963,TJ,CO2,73300.0,kg/TJ,127744673.54438789,kg +38d4f551-ecc9-3634-a2ad-06c50a1bafd5,SESCO,II.1.1,Tucuman,AR-T,annual,2015,naphtha combustion consumption by to the public,1742.764986963,TJ,CH4,3.0,kg/TJ,5228.294960888999,kg +aca68d28-747e-322e-92fe-3716cd7a1998,SESCO,II.1.1,Tucuman,AR-T,annual,2015,naphtha combustion consumption by to the public,1742.764986963,TJ,N2O,0.6,kg/TJ,1045.6589921778,kg +7876bda2-1a4a-3977-ad70-b802955908fd,SESCO,II.1.1,Catamarca,AR-K,annual,2015,naphtha combustion consumption by to the public,20.527174668,TJ,CO2,73300.0,kg/TJ,1504641.9031644,kg +5527fd6f-58ca-31af-a437-a34a676a2018,SESCO,II.1.1,Catamarca,AR-K,annual,2015,naphtha combustion consumption by to the public,20.527174668,TJ,CH4,3.0,kg/TJ,61.581524004,kg +28e79936-75df-3bfd-9c0e-784f10705504,SESCO,II.1.1,Catamarca,AR-K,annual,2015,naphtha combustion consumption by to the public,20.527174668,TJ,N2O,0.6,kg/TJ,12.3163048008,kg +3e04d18e-a69a-37a3-800f-d4d4707e2418,SESCO,II.1.1,Chaco,AR-H,annual,2015,naphtha combustion consumption by to the public,1.3719705999999998,TJ,CO2,73300.0,kg/TJ,100565.44497999999,kg +22fb7e57-6608-38e0-95f7-1e6de4233502,SESCO,II.1.1,Chaco,AR-H,annual,2015,naphtha combustion consumption by to the public,1.3719705999999998,TJ,CH4,3.0,kg/TJ,4.115911799999999,kg +9420a750-6e8e-3fe8-b46c-870e396c3f4e,SESCO,II.1.1,Chaco,AR-H,annual,2015,naphtha combustion consumption by to the public,1.3719705999999998,TJ,N2O,0.6,kg/TJ,0.8231823599999999,kg +bcc37387-5d98-3964-ae9c-6ac260e98343,SESCO,II.1.1,Córdoba,AR-X,annual,2015,naphtha combustion consumption by to the public,0.369808439,TJ,CO2,73300.0,kg/TJ,27106.9585787,kg +829ebc34-8a44-3c43-9cf0-0be99eeaf213,SESCO,II.1.1,Córdoba,AR-X,annual,2015,naphtha combustion consumption by to the public,0.369808439,TJ,CH4,3.0,kg/TJ,1.109425317,kg +f8e9c1f8-7d49-3082-be07-8326bf05159e,SESCO,II.1.1,Córdoba,AR-X,annual,2015,naphtha combustion consumption by to the public,0.369808439,TJ,N2O,0.6,kg/TJ,0.2218850634,kg +bbd92e74-49cb-3fa7-b344-e3e8b5fe494a,SESCO,II.1.1,Jujuy,AR-Y,annual,2015,naphtha combustion consumption by to the public,31.823169878499993,TJ,CO2,73300.0,kg/TJ,2332638.3520940496,kg +4fe5308c-5a69-3aaa-b668-ee1c6c919293,SESCO,II.1.1,Jujuy,AR-Y,annual,2015,naphtha combustion consumption by to the public,31.823169878499993,TJ,CH4,3.0,kg/TJ,95.46950963549997,kg +33f6586d-fa47-35e1-b1a3-6c2cba0ba13f,SESCO,II.1.1,Jujuy,AR-Y,annual,2015,naphtha combustion consumption by to the public,31.823169878499993,TJ,N2O,0.6,kg/TJ,19.093901927099996,kg +af8b2b24-86da-3657-90f6-ce104d3ce8ab,SESCO,II.1.1,La Rioja,AR-F,annual,2015,naphtha combustion consumption by to the public,12.3773574925,TJ,CO2,73300.0,kg/TJ,907260.30420025,kg +a94f501c-2d69-3577-a227-ed742c9dde3c,SESCO,II.1.1,La Rioja,AR-F,annual,2015,naphtha combustion consumption by to the public,12.3773574925,TJ,CH4,3.0,kg/TJ,37.1320724775,kg +9ef403af-1351-3bea-9363-7e74fa6bd1d1,SESCO,II.1.1,La Rioja,AR-F,annual,2015,naphtha combustion consumption by to the public,12.3773574925,TJ,N2O,0.6,kg/TJ,7.4264144954999995,kg +6e015d37-5080-3686-bda1-5deafba61ebc,SESCO,II.1.1,Salta,AR-A,annual,2015,naphtha combustion consumption by to the public,61.6766265115,TJ,CO2,73300.0,kg/TJ,4520896.72329295,kg +78da8264-cdf7-3281-838c-a3d9cc66f308,SESCO,II.1.1,Salta,AR-A,annual,2015,naphtha combustion consumption by to the public,61.6766265115,TJ,CH4,3.0,kg/TJ,185.0298795345,kg +2ffac4ae-70e8-33e4-b029-17a6f2f5536d,SESCO,II.1.1,Salta,AR-A,annual,2015,naphtha combustion consumption by to the public,61.6766265115,TJ,N2O,0.6,kg/TJ,37.0059759069,kg +6b6f340c-ca5d-3483-8a8d-d339cf91f860,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2015,naphtha combustion consumption by to the public,30.041478967499998,TJ,CO2,73300.0,kg/TJ,2202040.40831775,kg +c5f9f8f6-c83f-365b-8f26-0f6b4d466ff8,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2015,naphtha combustion consumption by to the public,30.041478967499998,TJ,CH4,3.0,kg/TJ,90.1244369025,kg +a2e125c2-b5df-37ff-8a89-2d888655583a,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2015,naphtha combustion consumption by to the public,30.041478967499998,TJ,N2O,0.6,kg/TJ,18.024887380499997,kg +2bf6a4f0-b6f3-39de-9c1d-94ee9eba083a,SESCO,II.1.1,Tucuman,AR-T,annual,2015,naphtha combustion consumption by to the public,111.22908646849999,TJ,CO2,73300.0,kg/TJ,8153092.0381410485,kg +185d526e-55c5-3094-ba36-565ed416458f,SESCO,II.1.1,Tucuman,AR-T,annual,2015,naphtha combustion consumption by to the public,111.22908646849999,TJ,CH4,3.0,kg/TJ,333.68725940549996,kg +9343c37b-12b2-311e-b005-baab98ed7904,SESCO,II.1.1,Tucuman,AR-T,annual,2015,naphtha combustion consumption by to the public,111.22908646849999,TJ,N2O,0.6,kg/TJ,66.73745188109999,kg +678efc0f-7f1a-35fe-af7e-d6e0d592b0b3,SESCO,II.5.1,Santa Fe,AR-S,annual,2015,naphtha combustion consumption by agriculture machines,34.486351899999995,TJ,CO2,73300.0,kg/TJ,2527849.59427,kg +c6f8edc4-1a7e-32b6-bad1-a0c5b5b9e7bd,SESCO,II.5.1,Santa Fe,AR-S,annual,2015,naphtha combustion consumption by agriculture machines,34.486351899999995,TJ,CH4,3.0,kg/TJ,103.4590557,kg +70285abe-543b-3db3-9358-0af039d71c2c,SESCO,II.5.1,Santa Fe,AR-S,annual,2015,naphtha combustion consumption by agriculture machines,34.486351899999995,TJ,N2O,0.6,kg/TJ,20.691811139999995,kg +11c95496-715c-31df-9014-e7886f4bfb4e,SESCO,II.5.1,Santa Fe,AR-S,annual,2015,naphtha combustion consumption by agriculture machines,5.768512749999999,TJ,CO2,73300.0,kg/TJ,422831.98457499995,kg +4cb08f4e-531f-34a3-8e45-2967f36a7563,SESCO,II.5.1,Santa Fe,AR-S,annual,2015,naphtha combustion consumption by agriculture machines,5.768512749999999,TJ,CH4,3.0,kg/TJ,17.305538249999998,kg +4154db61-037a-3d7b-8075-06325196c4a5,SESCO,II.5.1,Santa Fe,AR-S,annual,2015,naphtha combustion consumption by agriculture machines,5.768512749999999,TJ,N2O,0.6,kg/TJ,3.4611076499999993,kg +594a731d-83d0-37de-af8d-9992c0f493bb,SESCO,II.1.1,Buenos Aires,AR-B,annual,2015,naphtha combustion consumption by to the public,27.47059315,TJ,CO2,73300.0,kg/TJ,2013594.477895,kg +9de75175-4e1a-3c62-8c94-c0b636668ef7,SESCO,II.1.1,Buenos Aires,AR-B,annual,2015,naphtha combustion consumption by to the public,27.47059315,TJ,CH4,3.0,kg/TJ,82.41177945,kg +61023a2e-ddfa-3db0-a6ea-b30826c7a4a1,SESCO,II.1.1,Buenos Aires,AR-B,annual,2015,naphtha combustion consumption by to the public,27.47059315,TJ,N2O,0.6,kg/TJ,16.482355889999997,kg +a155e7a1-f1f0-3498-b026-d9210b2224e4,SESCO,II.1.1,Entre Rios,AR-E,annual,2015,naphtha combustion consumption by to the public,23.0116887,TJ,CO2,73300.0,kg/TJ,1686756.78171,kg +713d58c9-bf98-3ab5-99f2-4aba40a619bc,SESCO,II.1.1,Entre Rios,AR-E,annual,2015,naphtha combustion consumption by to the public,23.0116887,TJ,CH4,3.0,kg/TJ,69.0350661,kg +0abd5dd5-9b1a-3012-94fa-b52cb5ab8950,SESCO,II.1.1,Entre Rios,AR-E,annual,2015,naphtha combustion consumption by to the public,23.0116887,TJ,N2O,0.6,kg/TJ,13.80701322,kg +faadc172-f338-3bf4-b1f6-999c151dd8c7,SESCO,II.1.1,Buenos Aires,AR-B,annual,2015,naphtha combustion consumption by to the public,12994.868987099999,TJ,CO2,73300.0,kg/TJ,952523896.7544299,kg +b3619895-5673-3213-92c8-90f39b71bfdd,SESCO,II.1.1,Buenos Aires,AR-B,annual,2015,naphtha combustion consumption by to the public,12994.868987099999,TJ,CH4,3.0,kg/TJ,38984.6069613,kg +8e43db7a-fb0c-3d69-9f9a-b057856f77f5,SESCO,II.1.1,Buenos Aires,AR-B,annual,2015,naphtha combustion consumption by to the public,12994.868987099999,TJ,N2O,0.6,kg/TJ,7796.921392259999,kg +115e9597-93b4-37cb-853d-ed2017838ddf,SESCO,II.1.1,Capital Federal,AR-C,annual,2015,naphtha combustion consumption by to the public,4110.57982335,TJ,CO2,73300.0,kg/TJ,301305501.051555,kg +043ae9a1-10c0-34a0-a603-ed612c296175,SESCO,II.1.1,Capital Federal,AR-C,annual,2015,naphtha combustion consumption by to the public,4110.57982335,TJ,CH4,3.0,kg/TJ,12331.73947005,kg +9204f4a4-4985-3818-9958-e397d0a28e9f,SESCO,II.1.1,Capital Federal,AR-C,annual,2015,naphtha combustion consumption by to the public,4110.57982335,TJ,N2O,0.6,kg/TJ,2466.34789401,kg +1292210e-c391-39cb-bea2-a67594d5360f,SESCO,II.1.1,Catamarca,AR-K,annual,2015,naphtha combustion consumption by to the public,51.2618106,TJ,CO2,73300.0,kg/TJ,3757490.7169799996,kg +0789a98c-8b4e-3e5b-8801-a8d56774797d,SESCO,II.1.1,Catamarca,AR-K,annual,2015,naphtha combustion consumption by to the public,51.2618106,TJ,CH4,3.0,kg/TJ,153.7854318,kg +67029039-cfcb-3ed8-922b-9869fb1b2254,SESCO,II.1.1,Catamarca,AR-K,annual,2015,naphtha combustion consumption by to the public,51.2618106,TJ,N2O,0.6,kg/TJ,30.757086359999995,kg +0a10c379-97d3-3fab-92dd-89686b8ddb55,SESCO,II.1.1,Chaco,AR-H,annual,2015,naphtha combustion consumption by to the public,765.4660513499999,TJ,CO2,73300.0,kg/TJ,56108661.563954994,kg +63e67e2b-ecb7-389a-9847-1e9c73d9af46,SESCO,II.1.1,Chaco,AR-H,annual,2015,naphtha combustion consumption by to the public,765.4660513499999,TJ,CH4,3.0,kg/TJ,2296.39815405,kg +d4bb5ebc-1cf6-382b-ac8f-7b1d902324ec,SESCO,II.1.1,Chaco,AR-H,annual,2015,naphtha combustion consumption by to the public,765.4660513499999,TJ,N2O,0.6,kg/TJ,459.27963080999996,kg +be251734-16e9-39b8-81db-dd58e784839b,SESCO,II.1.1,Corrientes,AR-W,annual,2015,naphtha combustion consumption by to the public,814.7634494999999,TJ,CO2,73300.0,kg/TJ,59722160.84834999,kg +1032948d-5961-32ed-886b-859a7dc5e76d,SESCO,II.1.1,Corrientes,AR-W,annual,2015,naphtha combustion consumption by to the public,814.7634494999999,TJ,CH4,3.0,kg/TJ,2444.2903484999997,kg +8d3d296f-7718-35fe-9dbc-50a01561fdb0,SESCO,II.1.1,Corrientes,AR-W,annual,2015,naphtha combustion consumption by to the public,814.7634494999999,TJ,N2O,0.6,kg/TJ,488.8580696999999,kg +81fde9b7-a9cf-3f0d-bcac-74951a4c858f,SESCO,II.1.1,Córdoba,AR-X,annual,2015,naphtha combustion consumption by to the public,2603.78193075,TJ,CO2,73300.0,kg/TJ,190857215.52397498,kg +d112c8b4-4d90-37c4-a576-040233abb0ec,SESCO,II.1.1,Córdoba,AR-X,annual,2015,naphtha combustion consumption by to the public,2603.78193075,TJ,CH4,3.0,kg/TJ,7811.34579225,kg +9218997c-f88a-3e08-9f70-04138de04170,SESCO,II.1.1,Córdoba,AR-X,annual,2015,naphtha combustion consumption by to the public,2603.78193075,TJ,N2O,0.6,kg/TJ,1562.2691584499998,kg +0485ca7d-742b-3636-929e-f73c72dea93f,SESCO,II.1.1,Entre Rios,AR-E,annual,2015,naphtha combustion consumption by to the public,801.3243738499999,TJ,CO2,73300.0,kg/TJ,58737076.603204995,kg +b1ca0673-84b3-3597-887d-3f2135ccfec3,SESCO,II.1.1,Entre Rios,AR-E,annual,2015,naphtha combustion consumption by to the public,801.3243738499999,TJ,CH4,3.0,kg/TJ,2403.9731215499996,kg +21967348-c4eb-3c30-a9d2-1a6209bee07c,SESCO,II.1.1,Entre Rios,AR-E,annual,2015,naphtha combustion consumption by to the public,801.3243738499999,TJ,N2O,0.6,kg/TJ,480.7946243099999,kg +f55f065c-3787-3900-8fb4-368f4f1be2af,SESCO,II.1.1,Formosa,AR-P,annual,2015,naphtha combustion consumption by to the public,406.94518865,TJ,CO2,73300.0,kg/TJ,29829082.328045,kg +499fe1e7-e185-3b48-aa58-23d159d96c1e,SESCO,II.1.1,Formosa,AR-P,annual,2015,naphtha combustion consumption by to the public,406.94518865,TJ,CH4,3.0,kg/TJ,1220.8355659499998,kg +4f7bd23d-db1a-3deb-97d6-cd4a3012291a,SESCO,II.1.1,Formosa,AR-P,annual,2015,naphtha combustion consumption by to the public,406.94518865,TJ,N2O,0.6,kg/TJ,244.16711318999998,kg +a4574d43-716c-3632-9e5b-08f5fa3df79d,SESCO,II.1.1,Jujuy,AR-Y,annual,2015,naphtha combustion consumption by to the public,180.63240194999997,TJ,CO2,73300.0,kg/TJ,13240355.062934998,kg +aa334b1c-a2bd-3990-879c-2a64309317b0,SESCO,II.1.1,Jujuy,AR-Y,annual,2015,naphtha combustion consumption by to the public,180.63240194999997,TJ,CH4,3.0,kg/TJ,541.8972058499999,kg +d60461c2-a3a4-3165-8e0f-a701859f2b76,SESCO,II.1.1,Jujuy,AR-Y,annual,2015,naphtha combustion consumption by to the public,180.63240194999997,TJ,N2O,0.6,kg/TJ,108.37944116999998,kg +29fed3e5-4d33-3e5f-b256-3750d7e140c3,SESCO,II.1.1,La Pampa,AR-L,annual,2015,naphtha combustion consumption by to the public,239.75186234999998,TJ,CO2,73300.0,kg/TJ,17573811.510254998,kg +9a930b41-01d5-3705-84b2-4d8755f8912f,SESCO,II.1.1,La Pampa,AR-L,annual,2015,naphtha combustion consumption by to the public,239.75186234999998,TJ,CH4,3.0,kg/TJ,719.2555870499999,kg +aa2ccc5b-4003-3831-a5bd-efbcbb038da3,SESCO,II.1.1,La Pampa,AR-L,annual,2015,naphtha combustion consumption by to the public,239.75186234999998,TJ,N2O,0.6,kg/TJ,143.85111740999997,kg +3737fee8-3bad-38a5-8738-a841b982c80d,SESCO,II.1.1,La Rioja,AR-F,annual,2015,naphtha combustion consumption by to the public,258.08637854999995,TJ,CO2,73300.0,kg/TJ,18917731.547714997,kg +7a28f5f4-c634-3e7b-9d0a-05f0800c1b68,SESCO,II.1.1,La Rioja,AR-F,annual,2015,naphtha combustion consumption by to the public,258.08637854999995,TJ,CH4,3.0,kg/TJ,774.2591356499998,kg +c93e8b14-018f-3e21-adc6-7e28b420a524,SESCO,II.1.1,La Rioja,AR-F,annual,2015,naphtha combustion consumption by to the public,258.08637854999995,TJ,N2O,0.6,kg/TJ,154.85182712999998,kg +20809c75-c20d-3b80-8e5d-f89ebbba0acd,SESCO,II.1.1,Mendoza,AR-M,annual,2015,naphtha combustion consumption by to the public,637.1868002499999,TJ,CO2,73300.0,kg/TJ,46705792.45832499,kg +0ea34ac5-adea-392c-ad4c-3edfbe1f63e6,SESCO,II.1.1,Mendoza,AR-M,annual,2015,naphtha combustion consumption by to the public,637.1868002499999,TJ,CH4,3.0,kg/TJ,1911.5604007499996,kg +f301e96b-9205-3941-b491-e480e3449b54,SESCO,II.1.1,Mendoza,AR-M,annual,2015,naphtha combustion consumption by to the public,637.1868002499999,TJ,N2O,0.6,kg/TJ,382.31208014999993,kg +7d945fac-25a6-33bf-8c14-cd386ce749db,SESCO,II.1.1,Misiones,AR-N,annual,2015,naphtha combustion consumption by to the public,1102.9396378,TJ,CO2,73300.0,kg/TJ,80845475.45074,kg +84983ed9-bbba-36cf-8cba-0cef8b86c2fa,SESCO,II.1.1,Misiones,AR-N,annual,2015,naphtha combustion consumption by to the public,1102.9396378,TJ,CH4,3.0,kg/TJ,3308.8189133999995,kg +8ccf9a2a-86b5-3374-8352-a5421aa65363,SESCO,II.1.1,Misiones,AR-N,annual,2015,naphtha combustion consumption by to the public,1102.9396378,TJ,N2O,0.6,kg/TJ,661.76378268,kg +6d5481c0-447f-3ac5-92bf-be1ff4a12723,SESCO,II.1.1,Neuquén,AR-Q,annual,2015,naphtha combustion consumption by to the public,401.92502349999995,TJ,CO2,73300.0,kg/TJ,29461104.222549997,kg +8aebeebc-41ff-3d10-baf6-6a1eed9f8964,SESCO,II.1.1,Neuquén,AR-Q,annual,2015,naphtha combustion consumption by to the public,401.92502349999995,TJ,CH4,3.0,kg/TJ,1205.7750704999999,kg +045313ff-13a5-3c01-a16f-c3741beb3689,SESCO,II.1.1,Neuquén,AR-Q,annual,2015,naphtha combustion consumption by to the public,401.92502349999995,TJ,N2O,0.6,kg/TJ,241.15501409999996,kg +12eae914-1829-3089-a67e-ab6a8073d567,SESCO,II.1.1,Rio Negro,AR-R,annual,2015,naphtha combustion consumption by to the public,132.05217025,TJ,CO2,73300.0,kg/TJ,9679424.079325,kg +59717330-9011-3118-8bc3-5aec3b4e9ca5,SESCO,II.1.1,Rio Negro,AR-R,annual,2015,naphtha combustion consumption by to the public,132.05217025,TJ,CH4,3.0,kg/TJ,396.15651074999994,kg +7657f70c-256c-32d0-a002-c9731ca011ab,SESCO,II.1.1,Rio Negro,AR-R,annual,2015,naphtha combustion consumption by to the public,132.05217025,TJ,N2O,0.6,kg/TJ,79.23130214999999,kg +70a1ef79-ea33-379c-8f07-9fcab41d4efc,SESCO,II.1.1,Salta,AR-A,annual,2015,naphtha combustion consumption by to the public,218.7669484,TJ,CO2,73300.0,kg/TJ,16035617.31772,kg +b305f5d3-ce71-3753-a3e8-9ab6f9c20e24,SESCO,II.1.1,Salta,AR-A,annual,2015,naphtha combustion consumption by to the public,218.7669484,TJ,CH4,3.0,kg/TJ,656.3008451999999,kg +929f261f-4151-3f1d-927c-f9e7785fa9a8,SESCO,II.1.1,Salta,AR-A,annual,2015,naphtha combustion consumption by to the public,218.7669484,TJ,N2O,0.6,kg/TJ,131.26016904,kg +9f344466-c5cf-342e-8ef5-c351a4fab21e,SESCO,II.1.1,San Juan,AR-J,annual,2015,naphtha combustion consumption by to the public,180.25822814999998,TJ,CO2,73300.0,kg/TJ,13212928.123394998,kg +06208913-e7e0-3df6-9b27-349202961f08,SESCO,II.1.1,San Juan,AR-J,annual,2015,naphtha combustion consumption by to the public,180.25822814999998,TJ,CH4,3.0,kg/TJ,540.77468445,kg +74848969-8764-34c1-a541-485bebfe924c,SESCO,II.1.1,San Juan,AR-J,annual,2015,naphtha combustion consumption by to the public,180.25822814999998,TJ,N2O,0.6,kg/TJ,108.15493688999999,kg +9b7afa1d-1fa8-3108-b9cf-5773490a2333,SESCO,II.1.1,San Luis,AR-D,annual,2015,naphtha combustion consumption by to the public,21.23436315,TJ,CO2,73300.0,kg/TJ,1556478.818895,kg +9b0d5936-5e38-3646-8b1c-92b276e184a6,SESCO,II.1.1,San Luis,AR-D,annual,2015,naphtha combustion consumption by to the public,21.23436315,TJ,CH4,3.0,kg/TJ,63.70308945,kg +91b28754-f91f-3ccc-a7c5-6335790040ca,SESCO,II.1.1,San Luis,AR-D,annual,2015,naphtha combustion consumption by to the public,21.23436315,TJ,N2O,0.6,kg/TJ,12.74061789,kg +7681c044-5e52-3b93-85ee-4b1760e4c115,SESCO,II.1.1,Santa Fe,AR-S,annual,2015,naphtha combustion consumption by to the public,3208.2908857999996,TJ,CO2,73300.0,kg/TJ,235167721.92913997,kg +5cca1c69-2dec-3a69-bfd2-34e41c5ed2ca,SESCO,II.1.1,Santa Fe,AR-S,annual,2015,naphtha combustion consumption by to the public,3208.2908857999996,TJ,CH4,3.0,kg/TJ,9624.8726574,kg +4d0e6b3a-72c5-3c69-a964-4d8de80c80e8,SESCO,II.1.1,Santa Fe,AR-S,annual,2015,naphtha combustion consumption by to the public,3208.2908857999996,TJ,N2O,0.6,kg/TJ,1924.9745314799998,kg +e2b31346-5e3f-35e6-adf7-fef0ffa536df,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2015,naphtha combustion consumption by to the public,321.4152942,TJ,CO2,73300.0,kg/TJ,23559741.06486,kg +138209da-0031-3ec2-8b3e-d4d81f59b7d3,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2015,naphtha combustion consumption by to the public,321.4152942,TJ,CH4,3.0,kg/TJ,964.2458826,kg +8ad96763-9a10-349f-8864-9bee6a1b762c,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2015,naphtha combustion consumption by to the public,321.4152942,TJ,N2O,0.6,kg/TJ,192.84917652,kg +973af00d-41d2-3c72-8b1e-8844a7dc444f,SESCO,II.1.1,Tucuman,AR-T,annual,2015,naphtha combustion consumption by to the public,762.6285666999999,TJ,CO2,73300.0,kg/TJ,55900673.93910999,kg +2f3f5f67-5b05-3d11-a357-928ea171115b,SESCO,II.1.1,Tucuman,AR-T,annual,2015,naphtha combustion consumption by to the public,762.6285666999999,TJ,CH4,3.0,kg/TJ,2287.8857000999997,kg +c6b06d8d-5da5-3a87-b81e-97554a66e559,SESCO,II.1.1,Tucuman,AR-T,annual,2015,naphtha combustion consumption by to the public,762.6285666999999,TJ,N2O,0.6,kg/TJ,457.5771400199999,kg +971a6b54-3d94-31dc-9325-37d758909d19,SESCO,II.1.1,Buenos Aires,AR-B,annual,2015,naphtha combustion consumption by to the public,7108.054953999999,TJ,CO2,73300.0,kg/TJ,521020428.12819993,kg +8f48a127-50ad-3378-b1f2-6c40a76e10ca,SESCO,II.1.1,Buenos Aires,AR-B,annual,2015,naphtha combustion consumption by to the public,7108.054953999999,TJ,CH4,3.0,kg/TJ,21324.164861999998,kg +9d798d91-3346-3e72-a267-a23dffae16b2,SESCO,II.1.1,Buenos Aires,AR-B,annual,2015,naphtha combustion consumption by to the public,7108.054953999999,TJ,N2O,0.6,kg/TJ,4264.8329724,kg +92a66134-2709-38e3-bb55-e3c085020e9e,SESCO,II.1.1,Capital Federal,AR-C,annual,2015,naphtha combustion consumption by to the public,2960.2136563999998,TJ,CO2,73300.0,kg/TJ,216983661.01411998,kg +f973e7a8-3e51-3ada-9262-d9620d4020d3,SESCO,II.1.1,Capital Federal,AR-C,annual,2015,naphtha combustion consumption by to the public,2960.2136563999998,TJ,CH4,3.0,kg/TJ,8880.6409692,kg +819f0e7e-f716-38ae-b6f4-03b9160674b8,SESCO,II.1.1,Capital Federal,AR-C,annual,2015,naphtha combustion consumption by to the public,2960.2136563999998,TJ,N2O,0.6,kg/TJ,1776.1281938399998,kg +a38a67de-21d7-34bf-bd44-6444cb5d7a6a,SESCO,II.1.1,Catamarca,AR-K,annual,2015,naphtha combustion consumption by to the public,38.5399014,TJ,CO2,73300.0,kg/TJ,2824974.77262,kg +b35bd273-a379-31cd-b563-d7edd526da13,SESCO,II.1.1,Catamarca,AR-K,annual,2015,naphtha combustion consumption by to the public,38.5399014,TJ,CH4,3.0,kg/TJ,115.6197042,kg +a657025f-a056-335a-a91e-0fd939d8f336,SESCO,II.1.1,Catamarca,AR-K,annual,2015,naphtha combustion consumption by to the public,38.5399014,TJ,N2O,0.6,kg/TJ,23.12394084,kg +00f388e1-13f3-3fc3-b59b-5e1072fe3b8d,SESCO,II.1.1,Chaco,AR-H,annual,2015,naphtha combustion consumption by to the public,300.74219175,TJ,CO2,73300.0,kg/TJ,22044402.655275002,kg +95a14aaf-8719-30f4-be69-636f6a041f66,SESCO,II.1.1,Chaco,AR-H,annual,2015,naphtha combustion consumption by to the public,300.74219175,TJ,CH4,3.0,kg/TJ,902.22657525,kg +694946ee-7594-3cd4-95a2-1ea7a6f2c72d,SESCO,II.1.1,Chaco,AR-H,annual,2015,naphtha combustion consumption by to the public,300.74219175,TJ,N2O,0.6,kg/TJ,180.44531505,kg +d85f70bf-3cfe-3f8a-9e8a-83baa5df33ac,SESCO,II.1.1,Corrientes,AR-W,annual,2015,naphtha combustion consumption by to the public,351.81691545,TJ,CO2,73300.0,kg/TJ,25788179.902485,kg +aba05e12-4bad-3639-8a96-dc8ba9d0da52,SESCO,II.1.1,Corrientes,AR-W,annual,2015,naphtha combustion consumption by to the public,351.81691545,TJ,CH4,3.0,kg/TJ,1055.45074635,kg +f81d2853-aa08-3488-8a95-fc47325a117f,SESCO,II.1.1,Corrientes,AR-W,annual,2015,naphtha combustion consumption by to the public,351.81691545,TJ,N2O,0.6,kg/TJ,211.09014927,kg +45a58de9-b29b-3013-9617-cf35361eda65,SESCO,II.1.1,Córdoba,AR-X,annual,2015,naphtha combustion consumption by to the public,1116.2539888499998,TJ,CO2,73300.0,kg/TJ,81821417.38270499,kg +f2eac7d2-e37a-3aa3-9790-49645a617790,SESCO,II.1.1,Córdoba,AR-X,annual,2015,naphtha combustion consumption by to the public,1116.2539888499998,TJ,CH4,3.0,kg/TJ,3348.7619665499997,kg +4ce36b6c-48b4-3cfa-8d57-4b7d9c8e2130,SESCO,II.1.1,Córdoba,AR-X,annual,2015,naphtha combustion consumption by to the public,1116.2539888499998,TJ,N2O,0.6,kg/TJ,669.7523933099999,kg +1d1e14f2-12c8-3f4c-ad21-8448a0c73706,SESCO,II.1.1,Entre Rios,AR-E,annual,2015,naphtha combustion consumption by to the public,379.8487693,TJ,CO2,73300.0,kg/TJ,27842914.789690003,kg +5079d306-d29c-3678-bd3d-a0de0e875db0,SESCO,II.1.1,Entre Rios,AR-E,annual,2015,naphtha combustion consumption by to the public,379.8487693,TJ,CH4,3.0,kg/TJ,1139.5463079,kg +eeb18277-d7f3-3c39-8aae-5104906361b4,SESCO,II.1.1,Entre Rios,AR-E,annual,2015,naphtha combustion consumption by to the public,379.8487693,TJ,N2O,0.6,kg/TJ,227.90926158,kg +67d6ae2f-1b21-3e5a-9681-df578f383ccd,SESCO,II.1.1,Formosa,AR-P,annual,2015,naphtha combustion consumption by to the public,176.42294669999998,TJ,CO2,73300.0,kg/TJ,12931801.99311,kg +6281e47b-dfe6-3ea1-a96b-f0d36203699b,SESCO,II.1.1,Formosa,AR-P,annual,2015,naphtha combustion consumption by to the public,176.42294669999998,TJ,CH4,3.0,kg/TJ,529.2688400999999,kg +c7f58333-e75c-35ae-a559-1b4bd2d59003,SESCO,II.1.1,Formosa,AR-P,annual,2015,naphtha combustion consumption by to the public,176.42294669999998,TJ,N2O,0.6,kg/TJ,105.85376801999999,kg +12392160-fe74-3afe-97e7-59b14d0ea832,SESCO,II.1.1,Jujuy,AR-Y,annual,2015,naphtha combustion consumption by to the public,37.88509725,TJ,CO2,73300.0,kg/TJ,2776977.6284250002,kg +e6b33d46-915c-360a-837e-8206fd5055ef,SESCO,II.1.1,Jujuy,AR-Y,annual,2015,naphtha combustion consumption by to the public,37.88509725,TJ,CH4,3.0,kg/TJ,113.65529175,kg +9fa1d218-7bab-3ecc-aee5-58fef988f91a,SESCO,II.1.1,Jujuy,AR-Y,annual,2015,naphtha combustion consumption by to the public,37.88509725,TJ,N2O,0.6,kg/TJ,22.73105835,kg +6a00a36c-1b74-3f4a-a609-23beb7cd53dd,SESCO,II.1.1,La Pampa,AR-L,annual,2015,naphtha combustion consumption by to the public,117.89592814999999,TJ,CO2,73300.0,kg/TJ,8641771.533395,kg +95ba66d2-99be-301a-a3f5-ccd2dba730aa,SESCO,II.1.1,La Pampa,AR-L,annual,2015,naphtha combustion consumption by to the public,117.89592814999999,TJ,CH4,3.0,kg/TJ,353.68778445,kg +4d52f7aa-5cd9-3a0c-9b5d-71afe252bf44,SESCO,II.1.1,La Pampa,AR-L,annual,2015,naphtha combustion consumption by to the public,117.89592814999999,TJ,N2O,0.6,kg/TJ,70.73755689,kg +4cb5f64b-8d27-3311-9911-b5add619df47,SESCO,II.1.1,La Rioja,AR-F,annual,2015,naphtha combustion consumption by to the public,80.91508424999999,TJ,CO2,73300.0,kg/TJ,5931075.675524999,kg +dda981c7-5d86-3642-a63a-54148eb5426b,SESCO,II.1.1,La Rioja,AR-F,annual,2015,naphtha combustion consumption by to the public,80.91508424999999,TJ,CH4,3.0,kg/TJ,242.74525274999996,kg +498de8c1-77b5-3c9a-8ddf-7f5ed3fc728b,SESCO,II.1.1,La Rioja,AR-F,annual,2015,naphtha combustion consumption by to the public,80.91508424999999,TJ,N2O,0.6,kg/TJ,48.54905055,kg +298ee64b-6b85-3c0d-9ecc-49adbfd2e12a,SESCO,II.1.1,Mendoza,AR-M,annual,2015,naphtha combustion consumption by to the public,355.37156654999995,TJ,CO2,73300.0,kg/TJ,26048735.828114998,kg +4c988abd-a049-3627-a81e-75672243a5b6,SESCO,II.1.1,Mendoza,AR-M,annual,2015,naphtha combustion consumption by to the public,355.37156654999995,TJ,CH4,3.0,kg/TJ,1066.11469965,kg +a96aca3d-ef56-3bfd-a48d-ecf2a998a56b,SESCO,II.1.1,Mendoza,AR-M,annual,2015,naphtha combustion consumption by to the public,355.37156654999995,TJ,N2O,0.6,kg/TJ,213.22293992999997,kg +19ba9511-f2eb-3489-a5cf-8b3a2130d034,SESCO,II.1.1,Misiones,AR-N,annual,2015,naphtha combustion consumption by to the public,316.39512905,TJ,CO2,73300.0,kg/TJ,23191762.959365,kg +2677ef30-2911-3f13-91e7-c1c1fbe211b2,SESCO,II.1.1,Misiones,AR-N,annual,2015,naphtha combustion consumption by to the public,316.39512905,TJ,CH4,3.0,kg/TJ,949.18538715,kg +16324dc4-e1a9-3295-a61c-43258647c6c0,SESCO,II.1.1,Misiones,AR-N,annual,2015,naphtha combustion consumption by to the public,316.39512905,TJ,N2O,0.6,kg/TJ,189.83707743,kg +24448200-3ef7-39ad-b31c-5015803b3e8d,SESCO,II.1.1,Neuquén,AR-Q,annual,2015,naphtha combustion consumption by to the public,252.47377154999998,TJ,CO2,73300.0,kg/TJ,18506327.454614997,kg +933b3d35-3b5b-3529-852a-10ad7cf3edf4,SESCO,II.1.1,Neuquén,AR-Q,annual,2015,naphtha combustion consumption by to the public,252.47377154999998,TJ,CH4,3.0,kg/TJ,757.4213146499999,kg +c0f751d1-bedc-3cd7-9ebc-8fa535b0d93f,SESCO,II.1.1,Neuquén,AR-Q,annual,2015,naphtha combustion consumption by to the public,252.47377154999998,TJ,N2O,0.6,kg/TJ,151.48426292999997,kg +67e5d7b6-345a-37f8-8bbc-f53351e2d198,SESCO,II.1.1,Rio Negro,AR-R,annual,2015,naphtha combustion consumption by to the public,68.59853,TJ,CO2,73300.0,kg/TJ,5028272.249,kg +9fd2fd54-156f-3f05-9bbf-253ddbb12e5f,SESCO,II.1.1,Rio Negro,AR-R,annual,2015,naphtha combustion consumption by to the public,68.59853,TJ,CH4,3.0,kg/TJ,205.79559,kg +2fe3b460-9c08-3458-bb80-881ecf99e6a5,SESCO,II.1.1,Rio Negro,AR-R,annual,2015,naphtha combustion consumption by to the public,68.59853,TJ,N2O,0.6,kg/TJ,41.159118,kg +6acf8bdd-bb4a-3e08-8717-35532f1ffa3f,SESCO,II.1.1,Salta,AR-A,annual,2015,naphtha combustion consumption by to the public,76.48736095,TJ,CO2,73300.0,kg/TJ,5606523.557635,kg +3d2b4eb4-411e-3f5d-b796-44efb0f50e31,SESCO,II.1.1,Salta,AR-A,annual,2015,naphtha combustion consumption by to the public,76.48736095,TJ,CH4,3.0,kg/TJ,229.46208285,kg +00d49c15-813d-3d28-91c3-46558846b1a5,SESCO,II.1.1,Salta,AR-A,annual,2015,naphtha combustion consumption by to the public,76.48736095,TJ,N2O,0.6,kg/TJ,45.892416569999995,kg +708895e0-a9df-3097-b70a-410c5613dd9d,SESCO,II.1.1,San Juan,AR-J,annual,2015,naphtha combustion consumption by to the public,34.112178099999994,TJ,CO2,73300.0,kg/TJ,2500422.6547299996,kg +0fed29e9-b4aa-3812-9959-6030a8c74c83,SESCO,II.1.1,San Juan,AR-J,annual,2015,naphtha combustion consumption by to the public,34.112178099999994,TJ,CH4,3.0,kg/TJ,102.33653429999998,kg +344105e9-a780-32f3-9d5e-04e8a17aab2f,SESCO,II.1.1,San Juan,AR-J,annual,2015,naphtha combustion consumption by to the public,34.112178099999994,TJ,N2O,0.6,kg/TJ,20.467306859999997,kg +51ced15e-d44c-366b-b00f-cff0357a72c7,SESCO,II.1.1,San Luis,AR-D,annual,2015,naphtha combustion consumption by to the public,23.292319049999996,TJ,CO2,73300.0,kg/TJ,1707326.9863649998,kg +fbeb2e9e-2446-3ab2-9e72-f5745739f37f,SESCO,II.1.1,San Luis,AR-D,annual,2015,naphtha combustion consumption by to the public,23.292319049999996,TJ,CH4,3.0,kg/TJ,69.87695714999998,kg +cf4e23e6-6c3b-36b6-8eb6-930e8cd07188,SESCO,II.1.1,San Luis,AR-D,annual,2015,naphtha combustion consumption by to the public,23.292319049999996,TJ,N2O,0.6,kg/TJ,13.975391429999997,kg +cff1d31b-2def-383b-939b-aa8b30cef3f8,SESCO,II.1.1,Santa Fe,AR-S,annual,2015,naphtha combustion consumption by to the public,1557.3737179,TJ,CO2,73300.0,kg/TJ,114155493.52207,kg +255d4ff1-e1f7-30b0-9a83-b1f25933d417,SESCO,II.1.1,Santa Fe,AR-S,annual,2015,naphtha combustion consumption by to the public,1557.3737179,TJ,CH4,3.0,kg/TJ,4672.1211537,kg +0341351a-1cca-3220-a058-ee50b27a4997,SESCO,II.1.1,Santa Fe,AR-S,annual,2015,naphtha combustion consumption by to the public,1557.3737179,TJ,N2O,0.6,kg/TJ,934.42423074,kg +b7433022-3c67-3f05-b50e-f9bb2f1f528f,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2015,naphtha combustion consumption by to the public,146.64494844999996,TJ,CO2,73300.0,kg/TJ,10749074.721384997,kg +12e02872-6614-3d43-929e-c3dd81e74f6f,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2015,naphtha combustion consumption by to the public,146.64494844999996,TJ,CH4,3.0,kg/TJ,439.9348453499999,kg +9c1a90a2-2c3c-300e-9a47-5c7dc1fc31b6,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2015,naphtha combustion consumption by to the public,146.64494844999996,TJ,N2O,0.6,kg/TJ,87.98696906999997,kg +33af53c1-d13c-3958-8bc1-1f622ea2a96b,SESCO,II.1.1,Tucuman,AR-T,annual,2015,naphtha combustion consumption by to the public,225.15908414999996,TJ,CO2,73300.0,kg/TJ,16504160.868194997,kg +b112b95d-4c78-3429-8013-59dd242f64de,SESCO,II.1.1,Tucuman,AR-T,annual,2015,naphtha combustion consumption by to the public,225.15908414999996,TJ,CH4,3.0,kg/TJ,675.4772524499999,kg +21e219c6-6792-3898-a5ab-bc93953d0c89,SESCO,II.1.1,Tucuman,AR-T,annual,2015,naphtha combustion consumption by to the public,225.15908414999996,TJ,N2O,0.6,kg/TJ,135.09545048999996,kg +0d4285e4-0d1e-3fb9-b955-ec9dc179c5d3,SESCO,II.5.1,Buenos Aires,AR-B,annual,2015,naphtha combustion consumption by agriculture machines,0.6859852999999999,TJ,CO2,73300.0,kg/TJ,50282.72248999999,kg +c8761d0c-db07-354e-8852-8c4c62ad393a,SESCO,II.5.1,Buenos Aires,AR-B,annual,2015,naphtha combustion consumption by agriculture machines,0.6859852999999999,TJ,CH4,3.0,kg/TJ,2.0579558999999996,kg +d6c78a40-00c0-3c95-b205-8bdb3da9b00a,SESCO,II.5.1,Buenos Aires,AR-B,annual,2015,naphtha combustion consumption by agriculture machines,0.6859852999999999,TJ,N2O,0.6,kg/TJ,0.41159117999999995,kg +cc46e53a-a831-363c-aee1-26c987742692,SESCO,II.5.1,Entre Rios,AR-E,annual,2015,naphtha combustion consumption by agriculture machines,1.2472459999999999,TJ,CO2,73300.0,kg/TJ,91423.13179999999,kg +dc8bf5f0-53ed-3b7f-9a31-561936325ae8,SESCO,II.5.1,Entre Rios,AR-E,annual,2015,naphtha combustion consumption by agriculture machines,1.2472459999999999,TJ,CH4,3.0,kg/TJ,3.741738,kg +008381a8-4173-3101-a6d9-8b984f64da62,SESCO,II.5.1,Entre Rios,AR-E,annual,2015,naphtha combustion consumption by agriculture machines,1.2472459999999999,TJ,N2O,0.6,kg/TJ,0.7483475999999999,kg +44f78de2-5a41-3860-b763-3633814fbfec,SESCO,II.5.1,Salta,AR-A,annual,2015,naphtha combustion consumption by agriculture machines,0.31181149999999996,TJ,CO2,73300.0,kg/TJ,22855.782949999997,kg +39c343bf-5248-3ef0-9370-9d3ff0e467bd,SESCO,II.5.1,Salta,AR-A,annual,2015,naphtha combustion consumption by agriculture machines,0.31181149999999996,TJ,CH4,3.0,kg/TJ,0.9354345,kg +13ba4c17-846a-31a9-bb3b-da43977e32a3,SESCO,II.5.1,Salta,AR-A,annual,2015,naphtha combustion consumption by agriculture machines,0.31181149999999996,TJ,N2O,0.6,kg/TJ,0.18708689999999997,kg +7917db78-ecd1-3165-b304-2eedf5e1c53c,SESCO,II.5.1,Santa Fe,AR-S,annual,2015,naphtha combustion consumption by agriculture machines,25.9427168,TJ,CO2,73300.0,kg/TJ,1901601.14144,kg +ef54e814-aa6a-3cfe-aa6f-5174db83cf6a,SESCO,II.5.1,Santa Fe,AR-S,annual,2015,naphtha combustion consumption by agriculture machines,25.9427168,TJ,CH4,3.0,kg/TJ,77.8281504,kg +45d7943e-4205-323c-b3fa-5019041e8336,SESCO,II.5.1,Santa Fe,AR-S,annual,2015,naphtha combustion consumption by agriculture machines,25.9427168,TJ,N2O,0.6,kg/TJ,15.565630079999998,kg +2cfb9910-7fed-32b4-98cf-69b1c80114b6,SESCO,II.5.1,Buenos Aires,AR-B,annual,2015,naphtha combustion consumption by agriculture machines,0.15590574999999998,TJ,CO2,73300.0,kg/TJ,11427.891474999999,kg +b7771dfc-a28f-3190-98f3-22210ef5de1c,SESCO,II.5.1,Buenos Aires,AR-B,annual,2015,naphtha combustion consumption by agriculture machines,0.15590574999999998,TJ,CH4,3.0,kg/TJ,0.46771725,kg +2b6b4a55-8a8a-369b-8de9-029a6e5c50e4,SESCO,II.5.1,Buenos Aires,AR-B,annual,2015,naphtha combustion consumption by agriculture machines,0.15590574999999998,TJ,N2O,0.6,kg/TJ,0.09354344999999999,kg +882c03b3-1fd9-35af-afe0-64a8cd0d8f2d,SESCO,II.5.1,Santa Fe,AR-S,annual,2015,naphtha combustion consumption by agriculture machines,0.40535495,TJ,CO2,73300.0,kg/TJ,29712.517835,kg +b3003afc-c4c7-3fd7-9fe0-53747f149a41,SESCO,II.5.1,Santa Fe,AR-S,annual,2015,naphtha combustion consumption by agriculture machines,0.40535495,TJ,CH4,3.0,kg/TJ,1.21606485,kg +87bba416-efdc-3f39-abb6-b1f08fca5678,SESCO,II.5.1,Santa Fe,AR-S,annual,2015,naphtha combustion consumption by agriculture machines,0.40535495,TJ,N2O,0.6,kg/TJ,0.24321296999999997,kg +182663a6-7e01-38c7-ba79-e83a7815b0d0,SESCO,II.1.1,Buenos Aires,AR-B,annual,2015,naphtha combustion consumption by to the public,36762.54466885,TJ,CO2,73300.0,kg/TJ,2694694524.226705,kg +50811657-6f00-36ab-bd66-0b6b756a2645,SESCO,II.1.1,Buenos Aires,AR-B,annual,2015,naphtha combustion consumption by to the public,36762.54466885,TJ,CH4,3.0,kg/TJ,110287.63400655001,kg +f84e1f5a-157d-3138-9458-a11ba94dca50,SESCO,II.1.1,Buenos Aires,AR-B,annual,2015,naphtha combustion consumption by to the public,36762.54466885,TJ,N2O,0.6,kg/TJ,22057.52680131,kg +78e3d9d7-5d7a-358a-80b4-8787475e16af,SESCO,II.1.1,Capital Federal,AR-C,annual,2015,naphtha combustion consumption by to the public,8075.76194425,TJ,CO2,73300.0,kg/TJ,591953350.513525,kg +cfcbc580-e57c-3026-b2bd-cbd92da79192,SESCO,II.1.1,Capital Federal,AR-C,annual,2015,naphtha combustion consumption by to the public,8075.76194425,TJ,CH4,3.0,kg/TJ,24227.28583275,kg +1d1b1d89-b70a-33c1-9e74-1da6ca664cba,SESCO,II.1.1,Capital Federal,AR-C,annual,2015,naphtha combustion consumption by to the public,8075.76194425,TJ,N2O,0.6,kg/TJ,4845.45716655,kg +841dd806-ec91-3ae8-af24-87ca74645b9c,SESCO,II.1.1,Catamarca,AR-K,annual,2015,naphtha combustion consumption by to the public,665.7799147999999,TJ,CO2,73300.0,kg/TJ,48801667.754839994,kg +a2055195-74fd-3063-aa15-3e3d792192b1,SESCO,II.1.1,Catamarca,AR-K,annual,2015,naphtha combustion consumption by to the public,665.7799147999999,TJ,CH4,3.0,kg/TJ,1997.3397443999997,kg +bf01466e-2ded-3e76-b24c-14ddd9bc1d12,SESCO,II.1.1,Catamarca,AR-K,annual,2015,naphtha combustion consumption by to the public,665.7799147999999,TJ,N2O,0.6,kg/TJ,399.46794887999994,kg +878da947-1ded-3a26-8e50-acb609c13148,SESCO,II.1.1,Chaco,AR-H,annual,2015,naphtha combustion consumption by to the public,2217.1044896,TJ,CO2,73300.0,kg/TJ,162513759.08767998,kg +06b4ea91-2bbb-34c1-8a87-791b8591900f,SESCO,II.1.1,Chaco,AR-H,annual,2015,naphtha combustion consumption by to the public,2217.1044896,TJ,CH4,3.0,kg/TJ,6651.313468799999,kg +2ef35db2-bca4-3b89-ba98-39979e04de2e,SESCO,II.1.1,Chaco,AR-H,annual,2015,naphtha combustion consumption by to the public,2217.1044896,TJ,N2O,0.6,kg/TJ,1330.2626937599998,kg +64bb4f11-f621-3098-a02b-eabbe40379de,SESCO,II.1.1,Chubut,AR-U,annual,2015,naphtha combustion consumption by to the public,3446.5460529499996,TJ,CO2,73300.0,kg/TJ,252631825.681235,kg +5fce7e07-df14-397f-8753-45d4d1aee546,SESCO,II.1.1,Chubut,AR-U,annual,2015,naphtha combustion consumption by to the public,3446.5460529499996,TJ,CH4,3.0,kg/TJ,10339.638158849999,kg +fb90ed9b-c1de-39cc-8031-ef0693f67a6a,SESCO,II.1.1,Chubut,AR-U,annual,2015,naphtha combustion consumption by to the public,3446.5460529499996,TJ,N2O,0.6,kg/TJ,2067.9276317699996,kg +679b3b2e-9229-3e89-b25c-3c4cf4d9e2f0,SESCO,II.1.1,Corrientes,AR-W,annual,2015,naphtha combustion consumption by to the public,2361.25494605,TJ,CO2,73300.0,kg/TJ,173079987.545465,kg +b4cda8a9-5160-3072-8d54-9998d6452fd7,SESCO,II.1.1,Corrientes,AR-W,annual,2015,naphtha combustion consumption by to the public,2361.25494605,TJ,CH4,3.0,kg/TJ,7083.76483815,kg +ac5dbb48-4e76-3b78-8231-91c37f4c7097,SESCO,II.1.1,Corrientes,AR-W,annual,2015,naphtha combustion consumption by to the public,2361.25494605,TJ,N2O,0.6,kg/TJ,1416.7529676299998,kg +bc67b8b0-24da-391d-93bf-f583148f353a,SESCO,II.1.1,Córdoba,AR-X,annual,2015,naphtha combustion consumption by to the public,9347.110973199999,TJ,CO2,73300.0,kg/TJ,685143234.3355598,kg +f0dbbb9e-b515-3a7b-aac9-2d88abd6fd18,SESCO,II.1.1,Córdoba,AR-X,annual,2015,naphtha combustion consumption by to the public,9347.110973199999,TJ,CH4,3.0,kg/TJ,28041.332919599998,kg +7c80f184-05db-311e-a01f-117dc4841741,SESCO,II.1.1,Córdoba,AR-X,annual,2015,naphtha combustion consumption by to the public,9347.110973199999,TJ,N2O,0.6,kg/TJ,5608.266583919999,kg +1741b2da-e040-3aa3-9ce3-7664d42e65b4,SESCO,II.1.1,Entre Rios,AR-E,annual,2015,naphtha combustion consumption by to the public,3280.1322554,TJ,CO2,73300.0,kg/TJ,240433694.32082,kg +2f66e8d7-04e1-351a-920b-358b98f0a2b5,SESCO,II.1.1,Entre Rios,AR-E,annual,2015,naphtha combustion consumption by to the public,3280.1322554,TJ,CH4,3.0,kg/TJ,9840.3967662,kg +52ada25b-7b04-3110-92dd-3c6d701ac74d,SESCO,II.1.1,Entre Rios,AR-E,annual,2015,naphtha combustion consumption by to the public,3280.1322554,TJ,N2O,0.6,kg/TJ,1968.0793532399998,kg +d304aca7-905e-30b4-81c6-cb9fbc56437b,SESCO,II.1.1,Formosa,AR-P,annual,2015,naphtha combustion consumption by to the public,773.5107880499999,TJ,CO2,73300.0,kg/TJ,56698340.76406499,kg +8106993d-545e-3e48-9e9e-6603170bb8a8,SESCO,II.1.1,Formosa,AR-P,annual,2015,naphtha combustion consumption by to the public,773.5107880499999,TJ,CH4,3.0,kg/TJ,2320.5323641499995,kg +cd68b131-7c46-3b03-b21e-2ede92163f17,SESCO,II.1.1,Formosa,AR-P,annual,2015,naphtha combustion consumption by to the public,773.5107880499999,TJ,N2O,0.6,kg/TJ,464.1064728299999,kg +027a4812-9c3b-3e7a-b3cc-73331511098b,SESCO,II.1.1,Jujuy,AR-Y,annual,2015,naphtha combustion consumption by to the public,1146.81151585,TJ,CO2,73300.0,kg/TJ,84061284.11180499,kg +e2871a30-9b32-30bc-8841-0d16eaaaa7fb,SESCO,II.1.1,Jujuy,AR-Y,annual,2015,naphtha combustion consumption by to the public,1146.81151585,TJ,CH4,3.0,kg/TJ,3440.43454755,kg +dd8504b1-ad37-33a0-bcb4-fa882fb9a74d,SESCO,II.1.1,Jujuy,AR-Y,annual,2015,naphtha combustion consumption by to the public,1146.81151585,TJ,N2O,0.6,kg/TJ,688.0869095099999,kg +a378545a-d0ea-3164-905a-710c081988e8,SESCO,II.1.1,La Pampa,AR-L,annual,2015,naphtha combustion consumption by to the public,1477.7994230999998,TJ,CO2,73300.0,kg/TJ,108322697.71322998,kg +f1e439dd-eb3f-3121-ab51-17778ce6786a,SESCO,II.1.1,La Pampa,AR-L,annual,2015,naphtha combustion consumption by to the public,1477.7994230999998,TJ,CH4,3.0,kg/TJ,4433.3982693,kg +3f95ae07-fbe9-372a-acee-ab6688a2a923,SESCO,II.1.1,La Pampa,AR-L,annual,2015,naphtha combustion consumption by to the public,1477.7994230999998,TJ,N2O,0.6,kg/TJ,886.6796538599998,kg +f59f6a8a-554c-30df-abb5-6568d2636eea,SESCO,II.1.1,La Rioja,AR-F,annual,2015,naphtha combustion consumption by to the public,1007.6500434,TJ,CO2,73300.0,kg/TJ,73860748.18122,kg +67ebac0a-7920-31d8-9f04-3343783a37fc,SESCO,II.1.1,La Rioja,AR-F,annual,2015,naphtha combustion consumption by to the public,1007.6500434,TJ,CH4,3.0,kg/TJ,3022.9501302,kg +0db139b9-5fe2-3020-82c1-cb2e57381dd9,SESCO,II.1.1,La Rioja,AR-F,annual,2015,naphtha combustion consumption by to the public,1007.6500434,TJ,N2O,0.6,kg/TJ,604.59002604,kg +4713a6df-9139-34ba-a0cf-984dbf6af01a,SESCO,II.1.1,Mendoza,AR-M,annual,2015,naphtha combustion consumption by to the public,5023.969250299999,TJ,CO2,73300.0,kg/TJ,368256946.0469899,kg +d0a99a67-d528-3086-88a4-519f9736a4d1,SESCO,II.1.1,Mendoza,AR-M,annual,2015,naphtha combustion consumption by to the public,5023.969250299999,TJ,CH4,3.0,kg/TJ,15071.907750899996,kg +e309c94c-1fee-3a4c-8361-f9332d69e26a,SESCO,II.1.1,Mendoza,AR-M,annual,2015,naphtha combustion consumption by to the public,5023.969250299999,TJ,N2O,0.6,kg/TJ,3014.381550179999,kg +b8b38bd5-9d44-34ea-a92b-c41376bf1840,SESCO,II.1.1,Misiones,AR-N,annual,2015,naphtha combustion consumption by to the public,3237.4140798999997,TJ,CO2,73300.0,kg/TJ,237302452.05666998,kg +3be86b12-b4ea-33a2-8880-8f819abd8b3a,SESCO,II.1.1,Misiones,AR-N,annual,2015,naphtha combustion consumption by to the public,3237.4140798999997,TJ,CH4,3.0,kg/TJ,9712.2422397,kg +6863e1d6-5219-3ac7-a41d-8351a58ef28e,SESCO,II.1.1,Misiones,AR-N,annual,2015,naphtha combustion consumption by to the public,3237.4140798999997,TJ,N2O,0.6,kg/TJ,1942.4484479399998,kg +bb541382-da94-3a9f-b812-a4d601aff455,SESCO,II.1.1,Neuquén,AR-Q,annual,2015,naphtha combustion consumption by to the public,2997.1321379999995,TJ,CO2,73300.0,kg/TJ,219689785.71539995,kg +fd4c28f2-44c3-35ea-81fe-d8a76a5189be,SESCO,II.1.1,Neuquén,AR-Q,annual,2015,naphtha combustion consumption by to the public,2997.1321379999995,TJ,CH4,3.0,kg/TJ,8991.396413999999,kg +fc4dd6e4-5631-3338-9d8c-56c98543a5db,SESCO,II.1.1,Neuquén,AR-Q,annual,2015,naphtha combustion consumption by to the public,2997.1321379999995,TJ,N2O,0.6,kg/TJ,1798.2792827999997,kg +00125c57-583d-35ab-98ae-b2516a3783b5,SESCO,II.1.1,Rio Negro,AR-R,annual,2015,naphtha combustion consumption by to the public,2936.4848012499997,TJ,CO2,73300.0,kg/TJ,215244335.93162498,kg +10e4719e-ecb1-3bdd-8542-be74b707d351,SESCO,II.1.1,Rio Negro,AR-R,annual,2015,naphtha combustion consumption by to the public,2936.4848012499997,TJ,CH4,3.0,kg/TJ,8809.454403749998,kg +c0d495fc-bda3-3b84-87fd-e34c27892e1f,SESCO,II.1.1,Rio Negro,AR-R,annual,2015,naphtha combustion consumption by to the public,2936.4848012499997,TJ,N2O,0.6,kg/TJ,1761.8908807499997,kg +9b01acdf-dfe6-320d-b29c-04c7006fe044,SESCO,II.1.1,Salta,AR-A,annual,2015,naphtha combustion consumption by to the public,2695.08033795,TJ,CO2,73300.0,kg/TJ,197549388.77173498,kg +5150a403-8313-3550-ba1a-bd683ffdfd96,SESCO,II.1.1,Salta,AR-A,annual,2015,naphtha combustion consumption by to the public,2695.08033795,TJ,CH4,3.0,kg/TJ,8085.24101385,kg +ec9eef80-bff5-301f-b703-6c30738e6591,SESCO,II.1.1,Salta,AR-A,annual,2015,naphtha combustion consumption by to the public,2695.08033795,TJ,N2O,0.6,kg/TJ,1617.0482027699998,kg +1be2e179-1e6e-36cf-a59f-5f1321382c7d,SESCO,II.1.1,San Juan,AR-J,annual,2015,naphtha combustion consumption by to the public,1636.3243897,TJ,CO2,73300.0,kg/TJ,119942577.76501,kg +64bae776-3f80-3ed8-95a9-c54e88ff6a53,SESCO,II.1.1,San Juan,AR-J,annual,2015,naphtha combustion consumption by to the public,1636.3243897,TJ,CH4,3.0,kg/TJ,4908.9731691,kg +cb73d02e-5a8d-3505-bc83-2687dbf8b89d,SESCO,II.1.1,San Juan,AR-J,annual,2015,naphtha combustion consumption by to the public,1636.3243897,TJ,N2O,0.6,kg/TJ,981.79463382,kg +fdec74c7-c27b-38da-bfc5-b0e0248b2790,SESCO,II.1.1,San Luis,AR-D,annual,2015,naphtha combustion consumption by to the public,1272.1909199999998,TJ,CO2,73300.0,kg/TJ,93251594.43599999,kg +e5836217-7ea9-302e-bb1e-fbdeb9e400e9,SESCO,II.1.1,San Luis,AR-D,annual,2015,naphtha combustion consumption by to the public,1272.1909199999998,TJ,CH4,3.0,kg/TJ,3816.572759999999,kg +c87ea062-9373-3bfd-a5c0-a4ae482b4c7f,SESCO,II.1.1,San Luis,AR-D,annual,2015,naphtha combustion consumption by to the public,1272.1909199999998,TJ,N2O,0.6,kg/TJ,763.3145519999998,kg +cb649a0a-331a-3a48-b0f5-a9c2366c9974,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2015,naphtha combustion consumption by to the public,2399.8260286,TJ,CO2,73300.0,kg/TJ,175907247.89638,kg +2054a3d1-8a11-35c2-8021-7215c6620b6f,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2015,naphtha combustion consumption by to the public,2399.8260286,TJ,CH4,3.0,kg/TJ,7199.4780857999995,kg +cfc25a25-1307-38bf-929a-458b8fa1a630,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2015,naphtha combustion consumption by to the public,2399.8260286,TJ,N2O,0.6,kg/TJ,1439.89561716,kg +4fe70eab-9bab-301e-a773-80c3875dbcac,SESCO,II.1.1,Santa Fe,AR-S,annual,2015,naphtha combustion consumption by to the public,7161.717713149999,TJ,CO2,73300.0,kg/TJ,524953908.37389493,kg +844ed04a-382e-38e7-8a0e-47af5dc84f72,SESCO,II.1.1,Santa Fe,AR-S,annual,2015,naphtha combustion consumption by to the public,7161.717713149999,TJ,CH4,3.0,kg/TJ,21485.153139449998,kg +6d241b0b-22d7-39c2-8847-d9b147641850,SESCO,II.1.1,Santa Fe,AR-S,annual,2015,naphtha combustion consumption by to the public,7161.717713149999,TJ,N2O,0.6,kg/TJ,4297.03062789,kg +d6eadc24-8280-3f77-837c-35fa7ded2e71,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2015,naphtha combustion consumption by to the public,1219.21414615,TJ,CO2,73300.0,kg/TJ,89368396.912795,kg +5164bf67-3249-3e70-be70-004f6d8c3fff,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2015,naphtha combustion consumption by to the public,1219.21414615,TJ,CH4,3.0,kg/TJ,3657.64243845,kg +7c726de5-0eb8-38a0-af4b-fef869063f4a,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2015,naphtha combustion consumption by to the public,1219.21414615,TJ,N2O,0.6,kg/TJ,731.52848769,kg +33b365d8-2457-34f0-a35c-b690182f7279,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2015,naphtha combustion consumption by to the public,1827.0283031,TJ,CO2,73300.0,kg/TJ,133921174.61723,kg +c509aa6a-3c5c-3777-8782-c567e477ed39,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2015,naphtha combustion consumption by to the public,1827.0283031,TJ,CH4,3.0,kg/TJ,5481.0849093,kg +8f6b53e4-b6a8-36de-8381-96a3ed28a1b6,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2015,naphtha combustion consumption by to the public,1827.0283031,TJ,N2O,0.6,kg/TJ,1096.2169818599998,kg +5d0dbd6c-f07c-38b2-8db5-308cc4951729,SESCO,II.1.1,Tucuman,AR-T,annual,2015,naphtha combustion consumption by to the public,2204.7879353499998,TJ,CO2,73300.0,kg/TJ,161610955.661155,kg +e4aa82ac-414b-3855-b606-bb722bb1b2a0,SESCO,II.1.1,Tucuman,AR-T,annual,2015,naphtha combustion consumption by to the public,2204.7879353499998,TJ,CH4,3.0,kg/TJ,6614.36380605,kg +fee884ca-7979-342b-bc4a-0217b7bbcf97,SESCO,II.1.1,Tucuman,AR-T,annual,2015,naphtha combustion consumption by to the public,2204.7879353499998,TJ,N2O,0.6,kg/TJ,1322.87276121,kg +589abb7b-a8a1-3b24-b223-b12e78efe140,SESCO,II.1.1,Buenos Aires,AR-B,annual,2015,naphtha combustion consumption by to the public,16140.672848299997,TJ,CO2,73300.0,kg/TJ,1183111319.7803898,kg +f9b46d83-465e-3447-a196-95f00faacdee,SESCO,II.1.1,Buenos Aires,AR-B,annual,2015,naphtha combustion consumption by to the public,16140.672848299997,TJ,CH4,3.0,kg/TJ,48422.01854489999,kg +c0cef832-3e49-3544-81aa-905a9ba73c9a,SESCO,II.1.1,Buenos Aires,AR-B,annual,2015,naphtha combustion consumption by to the public,16140.672848299997,TJ,N2O,0.6,kg/TJ,9684.403708979999,kg +b44bc4cf-6d72-3837-a2ca-42e45fe76bd2,SESCO,II.1.1,Capital Federal,AR-C,annual,2015,naphtha combustion consumption by to the public,3934.3751446999995,TJ,CO2,73300.0,kg/TJ,288389698.10651,kg +430b39bf-55ea-320f-9f5f-ebad451a25f9,SESCO,II.1.1,Capital Federal,AR-C,annual,2015,naphtha combustion consumption by to the public,3934.3751446999995,TJ,CH4,3.0,kg/TJ,11803.125434099999,kg +09bdd1eb-f255-3dfc-ae8e-b03ab8e35999,SESCO,II.1.1,Capital Federal,AR-C,annual,2015,naphtha combustion consumption by to the public,3934.3751446999995,TJ,N2O,0.6,kg/TJ,2360.6250868199995,kg +321bdac4-010f-385a-9b1e-38ff6ba78cfa,SESCO,II.1.1,Catamarca,AR-K,annual,2015,naphtha combustion consumption by to the public,272.3361641,TJ,CO2,73300.0,kg/TJ,19962240.828530002,kg +aa646e87-c0fa-3a27-a892-6df56724e983,SESCO,II.1.1,Catamarca,AR-K,annual,2015,naphtha combustion consumption by to the public,272.3361641,TJ,CH4,3.0,kg/TJ,817.0084923000001,kg +ef2d2f41-66d9-3338-8c8b-74e42b2cf2fe,SESCO,II.1.1,Catamarca,AR-K,annual,2015,naphtha combustion consumption by to the public,272.3361641,TJ,N2O,0.6,kg/TJ,163.40169846,kg +1ffd0a79-0836-3849-80c1-3add8c8a8779,SESCO,II.1.1,Chaco,AR-H,annual,2015,naphtha combustion consumption by to the public,1002.3492478999999,TJ,CO2,73300.0,kg/TJ,73472199.87107,kg +9c9803d5-9b23-3fa0-bf8f-00f1cac78ed0,SESCO,II.1.1,Chaco,AR-H,annual,2015,naphtha combustion consumption by to the public,1002.3492478999999,TJ,CH4,3.0,kg/TJ,3007.0477437,kg +11ede36b-adf5-313a-bc43-070c56cfbc31,SESCO,II.1.1,Chaco,AR-H,annual,2015,naphtha combustion consumption by to the public,1002.3492478999999,TJ,N2O,0.6,kg/TJ,601.4095487399999,kg +c74cd7de-47f5-3def-b78d-c89e84012475,SESCO,II.1.1,Chubut,AR-U,annual,2015,naphtha combustion consumption by to the public,1511.1944347499998,TJ,CO2,73300.0,kg/TJ,110770552.06717499,kg +31c494cf-f899-385f-9cca-89fb8007b6ce,SESCO,II.1.1,Chubut,AR-U,annual,2015,naphtha combustion consumption by to the public,1511.1944347499998,TJ,CH4,3.0,kg/TJ,4533.58330425,kg +2a3b7f00-734c-38ce-9854-a147759ff56f,SESCO,II.1.1,Chubut,AR-U,annual,2015,naphtha combustion consumption by to the public,1511.1944347499998,TJ,N2O,0.6,kg/TJ,906.7166608499998,kg +f80dbcaa-8040-3c61-998a-1879fef101f7,SESCO,II.1.1,Corrientes,AR-W,annual,2015,naphtha combustion consumption by to the public,1064.4309175499998,TJ,CO2,73300.0,kg/TJ,78022786.25641498,kg +0a4cc785-50cf-31e1-a16c-69bb31fe81c5,SESCO,II.1.1,Corrientes,AR-W,annual,2015,naphtha combustion consumption by to the public,1064.4309175499998,TJ,CH4,3.0,kg/TJ,3193.2927526499993,kg +a243d715-4463-3c4d-8086-cc2540921a71,SESCO,II.1.1,Corrientes,AR-W,annual,2015,naphtha combustion consumption by to the public,1064.4309175499998,TJ,N2O,0.6,kg/TJ,638.6585505299998,kg +333d3809-c880-3b19-8e8e-2e1b592cb472,SESCO,II.1.1,Córdoba,AR-X,annual,2015,naphtha combustion consumption by to the public,3308.22647155,TJ,CO2,73300.0,kg/TJ,242493000.364615,kg +0941245a-8ed8-371e-9415-3e942a85df1e,SESCO,II.1.1,Córdoba,AR-X,annual,2015,naphtha combustion consumption by to the public,3308.22647155,TJ,CH4,3.0,kg/TJ,9924.67941465,kg +e7721521-31b5-36af-89ad-d2267f925d1b,SESCO,II.1.1,Córdoba,AR-X,annual,2015,naphtha combustion consumption by to the public,3308.22647155,TJ,N2O,0.6,kg/TJ,1984.93588293,kg +07aeda72-0168-3029-ab32-82145b536f5b,SESCO,II.1.1,Entre Rios,AR-E,annual,2015,naphtha combustion consumption by to the public,1426.0698952499997,TJ,CO2,73300.0,kg/TJ,104530923.32182498,kg +d1f9a58c-472d-3d17-bac3-3e3883f64e2b,SESCO,II.1.1,Entre Rios,AR-E,annual,2015,naphtha combustion consumption by to the public,1426.0698952499997,TJ,CH4,3.0,kg/TJ,4278.209685749999,kg +ce6ecbb5-92fe-3ab1-9b5c-b65081040250,SESCO,II.1.1,Entre Rios,AR-E,annual,2015,naphtha combustion consumption by to the public,1426.0698952499997,TJ,N2O,0.6,kg/TJ,855.6419371499998,kg +45f91125-62e5-3fcb-bc3e-d8b2405ec0b2,SESCO,II.1.1,Formosa,AR-P,annual,2015,naphtha combustion consumption by to the public,282.59476244999996,TJ,CO2,73300.0,kg/TJ,20714196.087585,kg +0c27c028-d387-3397-bc39-5b93b8e31bc6,SESCO,II.1.1,Formosa,AR-P,annual,2015,naphtha combustion consumption by to the public,282.59476244999996,TJ,CH4,3.0,kg/TJ,847.7842873499999,kg +f79d0bb8-12d5-3566-a0e2-7ca91a006f33,SESCO,II.1.1,Formosa,AR-P,annual,2015,naphtha combustion consumption by to the public,282.59476244999996,TJ,N2O,0.6,kg/TJ,169.55685746999998,kg +a2ebfd7c-d4fa-30ed-ab39-5f3a1a42269c,SESCO,II.1.1,Jujuy,AR-Y,annual,2015,naphtha combustion consumption by to the public,366.1914256,TJ,CO2,73300.0,kg/TJ,26841831.49648,kg +cbfab2d2-7332-3f50-8c29-e65d93598758,SESCO,II.1.1,Jujuy,AR-Y,annual,2015,naphtha combustion consumption by to the public,366.1914256,TJ,CH4,3.0,kg/TJ,1098.5742768,kg +3de8e3b6-fe81-3501-b0f9-9a217272cc35,SESCO,II.1.1,Jujuy,AR-Y,annual,2015,naphtha combustion consumption by to the public,366.1914256,TJ,N2O,0.6,kg/TJ,219.71485536,kg +4d90debd-4da9-3f69-ab3e-39692a95a7b5,SESCO,II.1.1,La Pampa,AR-L,annual,2015,naphtha combustion consumption by to the public,860.5685588499999,TJ,CO2,73300.0,kg/TJ,63079675.363704994,kg +e7ba5638-c6e2-380e-a519-d3c3b07e4674,SESCO,II.1.1,La Pampa,AR-L,annual,2015,naphtha combustion consumption by to the public,860.5685588499999,TJ,CH4,3.0,kg/TJ,2581.7056765499997,kg +6998f57b-32c2-3431-abac-f8ca9fd90afc,SESCO,II.1.1,La Pampa,AR-L,annual,2015,naphtha combustion consumption by to the public,860.5685588499999,TJ,N2O,0.6,kg/TJ,516.3411353099999,kg +a0f3f38c-ddbe-33c6-afac-83cc083f0b32,SESCO,II.1.1,La Rioja,AR-F,annual,2015,naphtha combustion consumption by to the public,380.78420379999994,TJ,CO2,73300.0,kg/TJ,27911482.138539996,kg +9c249b6c-7fc0-34ec-a424-96d342342b87,SESCO,II.1.1,La Rioja,AR-F,annual,2015,naphtha combustion consumption by to the public,380.78420379999994,TJ,CH4,3.0,kg/TJ,1142.3526114,kg +50bc5e5e-b81e-3fc3-990d-0621bc3193ee,SESCO,II.1.1,La Rioja,AR-F,annual,2015,naphtha combustion consumption by to the public,380.78420379999994,TJ,N2O,0.6,kg/TJ,228.47052227999995,kg +7a8d3756-3dbe-3474-99d2-d0df999d8b2b,SESCO,II.1.1,Mendoza,AR-M,annual,2015,naphtha combustion consumption by to the public,2663.8056444999997,TJ,CO2,73300.0,kg/TJ,195256953.74185,kg +54283e1b-9424-3fe4-8e45-8b72f0d5d6fa,SESCO,II.1.1,Mendoza,AR-M,annual,2015,naphtha combustion consumption by to the public,2663.8056444999997,TJ,CH4,3.0,kg/TJ,7991.416933499999,kg +d6885ad9-c837-312c-974c-7403c7ecbce0,SESCO,II.1.1,Mendoza,AR-M,annual,2015,naphtha combustion consumption by to the public,2663.8056444999997,TJ,N2O,0.6,kg/TJ,1598.2833866999997,kg +8f9837fc-be27-3e0c-afb9-e8592fdc5d32,SESCO,II.1.1,Misiones,AR-N,annual,2015,naphtha combustion consumption by to the public,1022.02455355,TJ,CO2,73300.0,kg/TJ,74914399.775215,kg +8d676824-10de-3b28-b969-50555b7670bc,SESCO,II.1.1,Misiones,AR-N,annual,2015,naphtha combustion consumption by to the public,1022.02455355,TJ,CH4,3.0,kg/TJ,3066.07366065,kg +28b02ccc-692a-3041-8b2d-119f40ad56e2,SESCO,II.1.1,Misiones,AR-N,annual,2015,naphtha combustion consumption by to the public,1022.02455355,TJ,N2O,0.6,kg/TJ,613.2147321299999,kg +e4f4b062-ce76-3aa1-b936-63c4e05686dd,SESCO,II.1.1,Neuquén,AR-Q,annual,2015,naphtha combustion consumption by to the public,1489.18054285,TJ,CO2,73300.0,kg/TJ,109156933.790905,kg +2e496666-0968-30a6-a1a5-9152caec63cf,SESCO,II.1.1,Neuquén,AR-Q,annual,2015,naphtha combustion consumption by to the public,1489.18054285,TJ,CH4,3.0,kg/TJ,4467.54162855,kg +5195f060-ebdc-33f7-8737-028719d82e18,SESCO,II.1.1,Neuquén,AR-Q,annual,2015,naphtha combustion consumption by to the public,1489.18054285,TJ,N2O,0.6,kg/TJ,893.5083257099999,kg +da92383e-7fac-39eb-a8d6-96c8a27178bb,SESCO,II.1.1,Rio Negro,AR-R,annual,2015,naphtha combustion consumption by to the public,1383.28935745,TJ,CO2,73300.0,kg/TJ,101395109.90108499,kg +0ea9e785-58b9-3357-bf64-30e347b128cc,SESCO,II.1.1,Rio Negro,AR-R,annual,2015,naphtha combustion consumption by to the public,1383.28935745,TJ,CH4,3.0,kg/TJ,4149.86807235,kg +e4b307d4-732e-3453-b689-fd2f48eabc26,SESCO,II.1.1,Rio Negro,AR-R,annual,2015,naphtha combustion consumption by to the public,1383.28935745,TJ,N2O,0.6,kg/TJ,829.9736144699999,kg +67dd8762-0da9-3472-957e-4d7208121970,SESCO,II.1.1,Salta,AR-A,annual,2015,naphtha combustion consumption by to the public,882.7383564999999,TJ,CO2,73300.0,kg/TJ,64704721.531449996,kg +16432061-e6f5-37e7-a9c8-aa5c75770121,SESCO,II.1.1,Salta,AR-A,annual,2015,naphtha combustion consumption by to the public,882.7383564999999,TJ,CH4,3.0,kg/TJ,2648.2150694999996,kg +fc056566-7bec-3d71-b58c-9aed4f35ece2,SESCO,II.1.1,Salta,AR-A,annual,2015,naphtha combustion consumption by to the public,882.7383564999999,TJ,N2O,0.6,kg/TJ,529.6430138999999,kg +98fdf235-e3ad-36d5-94ee-838e7725bc92,SESCO,II.1.1,San Juan,AR-J,annual,2015,naphtha combustion consumption by to the public,684.6756916999999,TJ,CO2,73300.0,kg/TJ,50186728.20160999,kg +3fbe6d0e-cdfb-3550-9768-c1cf5937525e,SESCO,II.1.1,San Juan,AR-J,annual,2015,naphtha combustion consumption by to the public,684.6756916999999,TJ,CH4,3.0,kg/TJ,2054.0270751,kg +7171a25c-f9ce-36fe-a1a0-3328bff76437,SESCO,II.1.1,San Juan,AR-J,annual,2015,naphtha combustion consumption by to the public,684.6756916999999,TJ,N2O,0.6,kg/TJ,410.80541501999994,kg +f1612816-9a3f-3a2e-b473-320d39833d37,SESCO,II.1.1,San Luis,AR-D,annual,2015,naphtha combustion consumption by to the public,645.4186238499999,TJ,CO2,73300.0,kg/TJ,47309185.128204994,kg +5fd9889e-4208-36fc-89d2-4af0abf54174,SESCO,II.1.1,San Luis,AR-D,annual,2015,naphtha combustion consumption by to the public,645.4186238499999,TJ,CH4,3.0,kg/TJ,1936.2558715499997,kg +bbb23758-3f55-358c-be5f-78b05a253337,SESCO,II.1.1,San Luis,AR-D,annual,2015,naphtha combustion consumption by to the public,645.4186238499999,TJ,N2O,0.6,kg/TJ,387.25117430999995,kg +eb11b4d4-489e-334d-9529-4338b846fa60,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2015,naphtha combustion consumption by to the public,923.6792064499999,TJ,CO2,73300.0,kg/TJ,67705685.832785,kg +40ec3788-6286-3ea6-9b59-09a25e288ca0,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2015,naphtha combustion consumption by to the public,923.6792064499999,TJ,CH4,3.0,kg/TJ,2771.0376193499997,kg +ffbf1e8b-4a41-3b1d-a46a-a78a813e0419,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2015,naphtha combustion consumption by to the public,923.6792064499999,TJ,N2O,0.6,kg/TJ,554.2075238699999,kg +a30bfeaa-eac6-3c18-b32e-64b54727f795,SESCO,II.1.1,Santa Fe,AR-S,annual,2015,naphtha combustion consumption by to the public,3354.74874735,TJ,CO2,73300.0,kg/TJ,245903083.180755,kg +805a9bc8-5125-389c-ad4e-078ae7545c37,SESCO,II.1.1,Santa Fe,AR-S,annual,2015,naphtha combustion consumption by to the public,3354.74874735,TJ,CH4,3.0,kg/TJ,10064.24624205,kg +c7006c01-3284-3b38-8594-9da0b2473b2c,SESCO,II.1.1,Santa Fe,AR-S,annual,2015,naphtha combustion consumption by to the public,3354.74874735,TJ,N2O,0.6,kg/TJ,2012.84924841,kg +132892a8-ee0c-3c11-813e-73e797222a16,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2015,naphtha combustion consumption by to the public,634.5052213499999,TJ,CO2,73300.0,kg/TJ,46509232.72495499,kg +2123302e-ae5d-35d7-8586-02674de25314,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2015,naphtha combustion consumption by to the public,634.5052213499999,TJ,CH4,3.0,kg/TJ,1903.51566405,kg +64bf2609-1bff-35e7-95ec-bc1d5e3d2706,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2015,naphtha combustion consumption by to the public,634.5052213499999,TJ,N2O,0.6,kg/TJ,380.70313280999994,kg +daf6b7ec-96ea-3344-a314-1baf2da34735,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2015,naphtha combustion consumption by to the public,147.79865099999998,TJ,CO2,73300.0,kg/TJ,10833641.118299998,kg +8d66b53d-fa93-3778-b01d-67c6622fcf2c,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2015,naphtha combustion consumption by to the public,147.79865099999998,TJ,CH4,3.0,kg/TJ,443.39595299999996,kg +0f6e6165-d587-3365-b88f-b03f78f28984,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2015,naphtha combustion consumption by to the public,147.79865099999998,TJ,N2O,0.6,kg/TJ,88.67919059999998,kg +4f97df5f-36a5-3b69-91d1-be135ac41376,SESCO,II.1.1,Tucuman,AR-T,annual,2015,naphtha combustion consumption by to the public,651.4677669499999,TJ,CO2,73300.0,kg/TJ,47752587.317435,kg +fc97e548-f88c-38c5-bab7-8afd2f181c9e,SESCO,II.1.1,Tucuman,AR-T,annual,2015,naphtha combustion consumption by to the public,651.4677669499999,TJ,CH4,3.0,kg/TJ,1954.4033008499998,kg +08608ee2-f377-332a-b5dc-2f33b2526cf3,SESCO,II.1.1,Tucuman,AR-T,annual,2015,naphtha combustion consumption by to the public,651.4677669499999,TJ,N2O,0.6,kg/TJ,390.88066016999994,kg +f09a98ac-7bf3-3e5b-b1dd-e57933038207,SESCO,II.1.1,Buenos Aires,AR-B,annual,2015,naphtha combustion consumption by freight transport,198.84219354999996,TJ,CO2,73300.0,kg/TJ,14575132.787214996,kg +f672053a-af5c-3d7f-b173-cb15db9ad2f4,SESCO,II.1.1,Buenos Aires,AR-B,annual,2015,naphtha combustion consumption by freight transport,198.84219354999996,TJ,CH4,3.0,kg/TJ,596.5265806499999,kg +f79b0ad2-607f-3238-8728-7d16534235d3,SESCO,II.1.1,Buenos Aires,AR-B,annual,2015,naphtha combustion consumption by freight transport,198.84219354999996,TJ,N2O,0.6,kg/TJ,119.30531612999997,kg +26f666ab-ff29-3836-a55b-6162d1fb0504,SESCO,II.1.1,Capital Federal,AR-C,annual,2015,naphtha combustion consumption by freight transport,206.9181114,TJ,CO2,73300.0,kg/TJ,15167097.56562,kg +3b11fb42-4be8-3ce0-906c-e403a0da7b39,SESCO,II.1.1,Capital Federal,AR-C,annual,2015,naphtha combustion consumption by freight transport,206.9181114,TJ,CH4,3.0,kg/TJ,620.7543341999999,kg +446088ff-e17f-39a2-bd39-fa7787104ac6,SESCO,II.1.1,Capital Federal,AR-C,annual,2015,naphtha combustion consumption by freight transport,206.9181114,TJ,N2O,0.6,kg/TJ,124.15086683999999,kg +734b49d5-2426-3879-8801-7031f9787ae0,SESCO,II.1.1,Chaco,AR-H,annual,2015,naphtha combustion consumption by freight transport,5.95559965,TJ,CO2,73300.0,kg/TJ,436545.454345,kg +96481764-2157-3ab3-979d-109031c767d3,SESCO,II.1.1,Chaco,AR-H,annual,2015,naphtha combustion consumption by freight transport,5.95559965,TJ,CH4,3.0,kg/TJ,17.86679895,kg +25d59e64-ee34-374e-87ce-83081876593a,SESCO,II.1.1,Chaco,AR-H,annual,2015,naphtha combustion consumption by freight transport,5.95559965,TJ,N2O,0.6,kg/TJ,3.57335979,kg +97ac548e-3b6d-3abb-bd14-445a77a6921c,SESCO,II.1.1,Chubut,AR-U,annual,2015,naphtha combustion consumption by freight transport,1.02897795,TJ,CO2,73300.0,kg/TJ,75424.08373500001,kg +d6cea011-522d-3305-a2c5-9909c045cfda,SESCO,II.1.1,Chubut,AR-U,annual,2015,naphtha combustion consumption by freight transport,1.02897795,TJ,CH4,3.0,kg/TJ,3.0869338500000003,kg +8edd5844-6bee-3481-9ecb-90109932785f,SESCO,II.1.1,Chubut,AR-U,annual,2015,naphtha combustion consumption by freight transport,1.02897795,TJ,N2O,0.6,kg/TJ,0.61738677,kg +e8a7e6ef-e9d8-3aa1-ad10-46ba1ca6bcbb,SESCO,II.1.1,Corrientes,AR-W,annual,2015,naphtha combustion consumption by freight transport,1.1848836999999999,TJ,CO2,73300.0,kg/TJ,86851.97520999999,kg +ede68e28-f647-3b7b-b44e-c83f5e0e749a,SESCO,II.1.1,Corrientes,AR-W,annual,2015,naphtha combustion consumption by freight transport,1.1848836999999999,TJ,CH4,3.0,kg/TJ,3.5546510999999996,kg +1869ed7f-b968-31e6-9a6f-7adaabf884ca,SESCO,II.1.1,Corrientes,AR-W,annual,2015,naphtha combustion consumption by freight transport,1.1848836999999999,TJ,N2O,0.6,kg/TJ,0.71093022,kg +13d0ac29-d3d1-3d8f-a234-007be1fed6d8,SESCO,II.1.1,Córdoba,AR-X,annual,2015,naphtha combustion consumption by freight transport,4.147092949999999,TJ,CO2,73300.0,kg/TJ,303981.9132349999,kg +fc3dc1dc-4f56-3bfb-99b2-89329b7acddd,SESCO,II.1.1,Córdoba,AR-X,annual,2015,naphtha combustion consumption by freight transport,4.147092949999999,TJ,CH4,3.0,kg/TJ,12.441278849999998,kg +62a85c8e-c30e-374e-9af9-da117f14ff69,SESCO,II.1.1,Córdoba,AR-X,annual,2015,naphtha combustion consumption by freight transport,4.147092949999999,TJ,N2O,0.6,kg/TJ,2.4882557699999994,kg +27681296-d9e0-3028-85ea-3f4a20dfcfa4,SESCO,II.1.1,Entre Rios,AR-E,annual,2015,naphtha combustion consumption by freight transport,2.0891370499999997,TJ,CO2,73300.0,kg/TJ,153133.74576499997,kg +242c53a5-6b35-3c22-908b-643b064bc086,SESCO,II.1.1,Entre Rios,AR-E,annual,2015,naphtha combustion consumption by freight transport,2.0891370499999997,TJ,CH4,3.0,kg/TJ,6.267411149999999,kg +de6c6c56-708b-39c8-9e21-a0c1ca542b29,SESCO,II.1.1,Entre Rios,AR-E,annual,2015,naphtha combustion consumption by freight transport,2.0891370499999997,TJ,N2O,0.6,kg/TJ,1.2534822299999997,kg +111ac5d1-7593-3da4-9f08-62a3c0188326,SESCO,II.1.1,Mendoza,AR-M,annual,2015,naphtha combustion consumption by freight transport,6.1738677,TJ,CO2,73300.0,kg/TJ,452544.50240999996,kg +2e233c0e-1254-3703-b66f-77136b11f038,SESCO,II.1.1,Mendoza,AR-M,annual,2015,naphtha combustion consumption by freight transport,6.1738677,TJ,CH4,3.0,kg/TJ,18.5216031,kg +e54ee413-9ef9-3d1c-9245-0caa546b1ff6,SESCO,II.1.1,Mendoza,AR-M,annual,2015,naphtha combustion consumption by freight transport,6.1738677,TJ,N2O,0.6,kg/TJ,3.70432062,kg +ae30f169-fbcb-3b27-bafd-75b31b42937c,SESCO,II.1.1,Misiones,AR-N,annual,2015,naphtha combustion consumption by freight transport,0.4365361,TJ,CO2,73300.0,kg/TJ,31998.096129999998,kg +bb70b9aa-865c-33e4-b293-ed9c68f965bf,SESCO,II.1.1,Misiones,AR-N,annual,2015,naphtha combustion consumption by freight transport,0.4365361,TJ,CH4,3.0,kg/TJ,1.3096082999999998,kg +b6ed7f26-0651-3959-a8cc-aa851bcb5f37,SESCO,II.1.1,Misiones,AR-N,annual,2015,naphtha combustion consumption by freight transport,0.4365361,TJ,N2O,0.6,kg/TJ,0.26192166,kg +4cba6e98-d6af-3424-966c-8e3129a09d66,SESCO,II.1.1,Neuquén,AR-Q,annual,2015,naphtha combustion consumption by freight transport,0.9354345,TJ,CO2,73300.0,kg/TJ,68567.34885,kg +721ae151-3dd2-3c65-b458-25301c8b59e4,SESCO,II.1.1,Neuquén,AR-Q,annual,2015,naphtha combustion consumption by freight transport,0.9354345,TJ,CH4,3.0,kg/TJ,2.8063035,kg +64bc4e69-d9cf-3ffd-9c31-923688a49bdf,SESCO,II.1.1,Neuquén,AR-Q,annual,2015,naphtha combustion consumption by freight transport,0.9354345,TJ,N2O,0.6,kg/TJ,0.5612607,kg +5013bbb9-6128-3f46-99f0-964de643c5d1,SESCO,II.1.1,Rio Negro,AR-R,annual,2015,naphtha combustion consumption by freight transport,1.21606485,TJ,CO2,73300.0,kg/TJ,89137.553505,kg +09ee84f1-e060-3280-8f93-5281a2ccb968,SESCO,II.1.1,Rio Negro,AR-R,annual,2015,naphtha combustion consumption by freight transport,1.21606485,TJ,CH4,3.0,kg/TJ,3.64819455,kg +b89d7724-6084-32f5-a723-5226eaf18f4f,SESCO,II.1.1,Rio Negro,AR-R,annual,2015,naphtha combustion consumption by freight transport,1.21606485,TJ,N2O,0.6,kg/TJ,0.7296389099999999,kg +5e5893e0-8c6d-3267-8dc8-1acf25e90d34,SESCO,II.1.1,Salta,AR-A,annual,2015,naphtha combustion consumption by freight transport,10.69513445,TJ,CO2,73300.0,kg/TJ,783953.355185,kg +5e0157be-5890-39cb-b871-241704b22d10,SESCO,II.1.1,Salta,AR-A,annual,2015,naphtha combustion consumption by freight transport,10.69513445,TJ,CH4,3.0,kg/TJ,32.08540335,kg +a17784cc-7ddf-3942-a1b9-c7bf04dd6ac5,SESCO,II.1.1,Salta,AR-A,annual,2015,naphtha combustion consumption by freight transport,10.69513445,TJ,N2O,0.6,kg/TJ,6.41708067,kg +56838f25-a7c9-3014-adf3-4455a212da49,SESCO,II.1.1,San Juan,AR-J,annual,2015,naphtha combustion consumption by freight transport,0.031181149999999998,TJ,CO2,73300.0,kg/TJ,2285.578295,kg +8d528d5a-f4e8-3e5a-b5b5-a4be3e8d6e8b,SESCO,II.1.1,San Juan,AR-J,annual,2015,naphtha combustion consumption by freight transport,0.031181149999999998,TJ,CH4,3.0,kg/TJ,0.09354345,kg +f4e1fa6b-f40e-3d30-b109-1683d394e045,SESCO,II.1.1,San Juan,AR-J,annual,2015,naphtha combustion consumption by freight transport,0.031181149999999998,TJ,N2O,0.6,kg/TJ,0.018708689999999997,kg +0f0ea935-202a-32f6-b875-cb4a4d3e6a09,SESCO,II.1.1,San Luis,AR-D,annual,2015,naphtha combustion consumption by freight transport,0.15590574999999998,TJ,CO2,73300.0,kg/TJ,11427.891474999999,kg +b1d792e2-b330-326a-87ac-baf73710831e,SESCO,II.1.1,San Luis,AR-D,annual,2015,naphtha combustion consumption by freight transport,0.15590574999999998,TJ,CH4,3.0,kg/TJ,0.46771725,kg +2210eb06-8a65-3ec2-9e57-277b9ece5773,SESCO,II.1.1,San Luis,AR-D,annual,2015,naphtha combustion consumption by freight transport,0.15590574999999998,TJ,N2O,0.6,kg/TJ,0.09354344999999999,kg +ad690d76-d643-3c18-b425-aff32394ceba,SESCO,II.1.1,Santa Fe,AR-S,annual,2015,naphtha combustion consumption by freight transport,17.49262515,TJ,CO2,73300.0,kg/TJ,1282209.423495,kg +e9d876a6-bddb-3ea6-8396-ab8de2e5ed8d,SESCO,II.1.1,Santa Fe,AR-S,annual,2015,naphtha combustion consumption by freight transport,17.49262515,TJ,CH4,3.0,kg/TJ,52.47787545,kg +4509fc4b-cfe1-354f-9a97-f536761b14f3,SESCO,II.1.1,Santa Fe,AR-S,annual,2015,naphtha combustion consumption by freight transport,17.49262515,TJ,N2O,0.6,kg/TJ,10.495575089999999,kg +375498ea-65de-3b51-88e4-521cbab6c206,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2015,naphtha combustion consumption by freight transport,0.062362299999999996,TJ,CO2,73300.0,kg/TJ,4571.15659,kg +2a605596-d1d3-3459-929a-0e44e8a5ec75,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2015,naphtha combustion consumption by freight transport,0.062362299999999996,TJ,CH4,3.0,kg/TJ,0.1870869,kg +21354e44-5546-375b-9710-0eff6180dd54,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2015,naphtha combustion consumption by freight transport,0.062362299999999996,TJ,N2O,0.6,kg/TJ,0.03741737999999999,kg +3e006134-3d59-3da2-993c-14d381cdede8,SESCO,II.1.1,Tucuman,AR-T,annual,2015,naphtha combustion consumption by freight transport,1.46551405,TJ,CO2,73300.0,kg/TJ,107422.179865,kg +8a460f68-5683-3672-8370-ba7c7441ccde,SESCO,II.1.1,Tucuman,AR-T,annual,2015,naphtha combustion consumption by freight transport,1.46551405,TJ,CH4,3.0,kg/TJ,4.39654215,kg +6fcd5c37-e381-3eb2-97ba-62fd607abad9,SESCO,II.1.1,Tucuman,AR-T,annual,2015,naphtha combustion consumption by freight transport,1.46551405,TJ,N2O,0.6,kg/TJ,0.8793084299999999,kg +05d69e68-7d05-3af7-b872-12059dbf0bdb,SESCO,II.1.1,Buenos Aires,AR-B,annual,2015,naphtha combustion consumption by freight transport,196.44124499999998,TJ,CO2,73300.0,kg/TJ,14399143.258499999,kg +97c25a78-75bc-39ba-a759-9e849c8edf72,SESCO,II.1.1,Buenos Aires,AR-B,annual,2015,naphtha combustion consumption by freight transport,196.44124499999998,TJ,CH4,3.0,kg/TJ,589.3237349999999,kg +ea9ebbc4-f719-3417-901d-40c7d5b48e7d,SESCO,II.1.1,Buenos Aires,AR-B,annual,2015,naphtha combustion consumption by freight transport,196.44124499999998,TJ,N2O,0.6,kg/TJ,117.86474699999998,kg +60686d4b-7173-3358-9ce3-ff7ca1e7b226,SESCO,II.1.1,Capital Federal,AR-C,annual,2015,naphtha combustion consumption by freight transport,211.9694577,TJ,CO2,73300.0,kg/TJ,15537361.24941,kg +c955b5cb-d7e9-3367-bab8-b3e7bd79b06a,SESCO,II.1.1,Capital Federal,AR-C,annual,2015,naphtha combustion consumption by freight transport,211.9694577,TJ,CH4,3.0,kg/TJ,635.9083731,kg +889003fd-f49e-354c-a7ca-458703a68de4,SESCO,II.1.1,Capital Federal,AR-C,annual,2015,naphtha combustion consumption by freight transport,211.9694577,TJ,N2O,0.6,kg/TJ,127.18167462,kg +cc64db45-e115-33e6-8765-7bf173efdeec,SESCO,II.1.1,Chaco,AR-H,annual,2015,naphtha combustion consumption by freight transport,6.4233169,TJ,CO2,73300.0,kg/TJ,470829.12876999995,kg +a1aca994-e217-3ad2-b297-6a9ca439388b,SESCO,II.1.1,Chaco,AR-H,annual,2015,naphtha combustion consumption by freight transport,6.4233169,TJ,CH4,3.0,kg/TJ,19.2699507,kg +2013bb7d-1ab1-3030-9fda-f473398232f0,SESCO,II.1.1,Chaco,AR-H,annual,2015,naphtha combustion consumption by freight transport,6.4233169,TJ,N2O,0.6,kg/TJ,3.8539901399999996,kg +5c9c793e-3688-3ee2-95ae-dc2437e2c275,SESCO,II.1.1,Chubut,AR-U,annual,2015,naphtha combustion consumption by freight transport,0.5612607,TJ,CO2,73300.0,kg/TJ,41140.409309999995,kg +48f33449-6af3-39d8-91c7-caeca1779c7c,SESCO,II.1.1,Chubut,AR-U,annual,2015,naphtha combustion consumption by freight transport,0.5612607,TJ,CH4,3.0,kg/TJ,1.6837820999999997,kg +37d53cf3-c707-3511-974b-5e8a619512d3,SESCO,II.1.1,Chubut,AR-U,annual,2015,naphtha combustion consumption by freight transport,0.5612607,TJ,N2O,0.6,kg/TJ,0.33675641999999995,kg +5c2dc1af-81a9-3068-a305-2ca247aa7679,SESCO,II.1.1,Corrientes,AR-W,annual,2015,naphtha combustion consumption by freight transport,2.9310281,TJ,CO2,73300.0,kg/TJ,214844.35973,kg +a9e21995-44cf-338e-ab7c-d898cd11eddf,SESCO,II.1.1,Corrientes,AR-W,annual,2015,naphtha combustion consumption by freight transport,2.9310281,TJ,CH4,3.0,kg/TJ,8.7930843,kg +47170bf7-3f36-38af-8d1c-2505b7d4ee8e,SESCO,II.1.1,Corrientes,AR-W,annual,2015,naphtha combustion consumption by freight transport,2.9310281,TJ,N2O,0.6,kg/TJ,1.7586168599999998,kg +903c306d-7196-301b-9c8f-87089ce2442c,SESCO,II.1.1,Córdoba,AR-X,annual,2015,naphtha combustion consumption by freight transport,5.89323735,TJ,CO2,73300.0,kg/TJ,431974.297755,kg +91d1d53c-30c8-3efe-af6a-e2b6d657212c,SESCO,II.1.1,Córdoba,AR-X,annual,2015,naphtha combustion consumption by freight transport,5.89323735,TJ,CH4,3.0,kg/TJ,17.67971205,kg +aab65966-fd3b-390a-9562-0b26986e9224,SESCO,II.1.1,Córdoba,AR-X,annual,2015,naphtha combustion consumption by freight transport,5.89323735,TJ,N2O,0.6,kg/TJ,3.5359424099999996,kg +70e87260-4eb9-398a-ae66-b7666bfdca73,SESCO,II.1.1,Entre Rios,AR-E,annual,2015,naphtha combustion consumption by freight transport,2.3074051,TJ,CO2,73300.0,kg/TJ,169132.79383,kg +f4c7b345-5578-332f-96d2-2423330af175,SESCO,II.1.1,Entre Rios,AR-E,annual,2015,naphtha combustion consumption by freight transport,2.3074051,TJ,CH4,3.0,kg/TJ,6.9222152999999995,kg +36716b47-d32e-3d4f-b19f-dd5a3f63d2c9,SESCO,II.1.1,Entre Rios,AR-E,annual,2015,naphtha combustion consumption by freight transport,2.3074051,TJ,N2O,0.6,kg/TJ,1.38444306,kg +ef54276d-f531-3483-9c8b-c01fe6dd9c67,SESCO,II.1.1,Jujuy,AR-Y,annual,2015,naphtha combustion consumption by freight transport,0.062362299999999996,TJ,CO2,73300.0,kg/TJ,4571.15659,kg +023a0200-da63-3d68-8edc-32b9aacc1e3a,SESCO,II.1.1,Jujuy,AR-Y,annual,2015,naphtha combustion consumption by freight transport,0.062362299999999996,TJ,CH4,3.0,kg/TJ,0.1870869,kg +b2f10bb5-ceec-3338-a62b-ce701a184bda,SESCO,II.1.1,Jujuy,AR-Y,annual,2015,naphtha combustion consumption by freight transport,0.062362299999999996,TJ,N2O,0.6,kg/TJ,0.03741737999999999,kg +fb51e3a2-3335-3498-9920-4ff0f28b2eec,SESCO,II.1.1,La Pampa,AR-L,annual,2015,naphtha combustion consumption by freight transport,0.09354344999999999,TJ,CO2,73300.0,kg/TJ,6856.734884999999,kg +280f5c3e-28aa-3d1e-820e-c43b562a02b7,SESCO,II.1.1,La Pampa,AR-L,annual,2015,naphtha combustion consumption by freight transport,0.09354344999999999,TJ,CH4,3.0,kg/TJ,0.28063035,kg +36603072-33b3-37df-a607-ec70a2991d76,SESCO,II.1.1,La Pampa,AR-L,annual,2015,naphtha combustion consumption by freight transport,0.09354344999999999,TJ,N2O,0.6,kg/TJ,0.05612606999999999,kg +ca280b48-92a3-3b37-bbcc-e214518d409d,SESCO,II.1.1,La Rioja,AR-F,annual,2015,naphtha combustion consumption by freight transport,0.9666156499999999,TJ,CO2,73300.0,kg/TJ,70852.927145,kg +dfc9cabc-bfd3-3785-aaae-fcdd72e4655f,SESCO,II.1.1,La Rioja,AR-F,annual,2015,naphtha combustion consumption by freight transport,0.9666156499999999,TJ,CH4,3.0,kg/TJ,2.8998469499999997,kg +fd9129cd-9ef9-33bb-a152-ed4d0eb2e1d8,SESCO,II.1.1,La Rioja,AR-F,annual,2015,naphtha combustion consumption by freight transport,0.9666156499999999,TJ,N2O,0.6,kg/TJ,0.5799693899999999,kg +13ae1bdc-d20e-3ea7-aac0-050ebf5eb766,SESCO,II.1.1,Mendoza,AR-M,annual,2015,naphtha combustion consumption by freight transport,4.83307825,TJ,CO2,73300.0,kg/TJ,354264.635725,kg +bc8490ce-91db-3cc3-8a56-9ba9a1e8719c,SESCO,II.1.1,Mendoza,AR-M,annual,2015,naphtha combustion consumption by freight transport,4.83307825,TJ,CH4,3.0,kg/TJ,14.49923475,kg +3dab4c30-671a-31d4-b64f-6917d682339d,SESCO,II.1.1,Mendoza,AR-M,annual,2015,naphtha combustion consumption by freight transport,4.83307825,TJ,N2O,0.6,kg/TJ,2.8998469499999997,kg +4ab0b1fd-621b-3191-aa9a-d68b2062af39,SESCO,II.1.1,Misiones,AR-N,annual,2015,naphtha combustion consumption by freight transport,1.870869,TJ,CO2,73300.0,kg/TJ,137134.6977,kg +19e2a8eb-fcb7-3ac5-b4d5-d9d359559a94,SESCO,II.1.1,Misiones,AR-N,annual,2015,naphtha combustion consumption by freight transport,1.870869,TJ,CH4,3.0,kg/TJ,5.612607,kg +8760b67d-c364-312c-ab5f-63958dd3c2a0,SESCO,II.1.1,Misiones,AR-N,annual,2015,naphtha combustion consumption by freight transport,1.870869,TJ,N2O,0.6,kg/TJ,1.1225214,kg +64f14518-720a-35c6-aef9-dd4f68e769b6,SESCO,II.1.1,Neuquén,AR-Q,annual,2015,naphtha combustion consumption by freight transport,1.5278763499999999,TJ,CO2,73300.0,kg/TJ,111993.336455,kg +98d02195-d0fa-32c7-8651-0336145193de,SESCO,II.1.1,Neuquén,AR-Q,annual,2015,naphtha combustion consumption by freight transport,1.5278763499999999,TJ,CH4,3.0,kg/TJ,4.58362905,kg +97946a50-2459-38b1-8c1f-46d78fe831f7,SESCO,II.1.1,Neuquén,AR-Q,annual,2015,naphtha combustion consumption by freight transport,1.5278763499999999,TJ,N2O,0.6,kg/TJ,0.9167258099999999,kg +c65593ca-0028-37bc-8c5c-4154b4834fc2,SESCO,II.1.1,Rio Negro,AR-R,annual,2015,naphtha combustion consumption by freight transport,2.4633108499999996,TJ,CO2,73300.0,kg/TJ,180560.68530499996,kg +09b339df-6ca2-3377-92f9-9734bdc52d8b,SESCO,II.1.1,Rio Negro,AR-R,annual,2015,naphtha combustion consumption by freight transport,2.4633108499999996,TJ,CH4,3.0,kg/TJ,7.389932549999999,kg +701c52b5-2356-356b-8cd5-f50a9f79504e,SESCO,II.1.1,Rio Negro,AR-R,annual,2015,naphtha combustion consumption by freight transport,2.4633108499999996,TJ,N2O,0.6,kg/TJ,1.4779865099999998,kg +1f62fde3-bc24-3a8d-80d3-a3df5d133cb5,SESCO,II.1.1,Salta,AR-A,annual,2015,naphtha combustion consumption by freight transport,1.3096082999999998,TJ,CO2,73300.0,kg/TJ,95994.28838999999,kg +7fcdd5f6-baa6-3c46-8818-81929feab371,SESCO,II.1.1,Salta,AR-A,annual,2015,naphtha combustion consumption by freight transport,1.3096082999999998,TJ,CH4,3.0,kg/TJ,3.9288248999999995,kg +54607e9e-8e7c-3511-b9be-5f3cf0a2b4fc,SESCO,II.1.1,Salta,AR-A,annual,2015,naphtha combustion consumption by freight transport,1.3096082999999998,TJ,N2O,0.6,kg/TJ,0.7857649799999998,kg +e981aff9-253e-339c-9570-b7e7ebcd8cca,SESCO,II.1.1,San Luis,AR-D,annual,2015,naphtha combustion consumption by freight transport,0.37417379999999995,TJ,CO2,73300.0,kg/TJ,27426.939539999996,kg +245cf904-31bb-352f-a370-7e6e7cfbf216,SESCO,II.1.1,San Luis,AR-D,annual,2015,naphtha combustion consumption by freight transport,0.37417379999999995,TJ,CH4,3.0,kg/TJ,1.1225214,kg +6ad82ef2-d550-3a50-a426-6ba256eea8fb,SESCO,II.1.1,San Luis,AR-D,annual,2015,naphtha combustion consumption by freight transport,0.37417379999999995,TJ,N2O,0.6,kg/TJ,0.22450427999999997,kg +60de40e7-fcf6-320f-bbbe-20077f71b785,SESCO,II.1.1,Santa Fe,AR-S,annual,2015,naphtha combustion consumption by freight transport,23.978304349999995,TJ,CO2,73300.0,kg/TJ,1757609.7088549996,kg +01341164-c381-35ee-b8a7-dd792adbfd7f,SESCO,II.1.1,Santa Fe,AR-S,annual,2015,naphtha combustion consumption by freight transport,23.978304349999995,TJ,CH4,3.0,kg/TJ,71.93491304999998,kg +22425f19-1aed-3eb5-bf19-7e13b4c9dcc8,SESCO,II.1.1,Santa Fe,AR-S,annual,2015,naphtha combustion consumption by freight transport,23.978304349999995,TJ,N2O,0.6,kg/TJ,14.386982609999997,kg +375498ea-65de-3b51-88e4-521cbab6c206,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2015,naphtha combustion consumption by freight transport,0.062362299999999996,TJ,CO2,73300.0,kg/TJ,4571.15659,kg +2a605596-d1d3-3459-929a-0e44e8a5ec75,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2015,naphtha combustion consumption by freight transport,0.062362299999999996,TJ,CH4,3.0,kg/TJ,0.1870869,kg +21354e44-5546-375b-9710-0eff6180dd54,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2015,naphtha combustion consumption by freight transport,0.062362299999999996,TJ,N2O,0.6,kg/TJ,0.03741737999999999,kg +f4eebb2f-d0cd-3aa1-bcff-abb8fd0d9de2,SESCO,II.1.1,Tucuman,AR-T,annual,2015,naphtha combustion consumption by freight transport,1.21606485,TJ,CO2,73300.0,kg/TJ,89137.553505,kg +ef492bb1-4be3-3621-9fde-a50872e34756,SESCO,II.1.1,Tucuman,AR-T,annual,2015,naphtha combustion consumption by freight transport,1.21606485,TJ,CH4,3.0,kg/TJ,3.64819455,kg +b28693f4-d646-3587-b156-6a089ba17a11,SESCO,II.1.1,Tucuman,AR-T,annual,2015,naphtha combustion consumption by freight transport,1.21606485,TJ,N2O,0.6,kg/TJ,0.7296389099999999,kg +8daaf80d-9621-30b4-a1c8-eea97d01d60d,SESCO,II.1.1,Buenos Aires,AR-B,annual,2015,naphtha combustion consumption by public passenger transport,0.15590574999999998,TJ,CO2,73300.0,kg/TJ,11427.891474999999,kg +b0879815-65f9-3eed-9919-30c3ab291dbe,SESCO,II.1.1,Buenos Aires,AR-B,annual,2015,naphtha combustion consumption by public passenger transport,0.15590574999999998,TJ,CH4,3.0,kg/TJ,0.46771725,kg +42dd4645-2401-30e1-961f-d4773d80e0ff,SESCO,II.1.1,Buenos Aires,AR-B,annual,2015,naphtha combustion consumption by public passenger transport,0.15590574999999998,TJ,N2O,0.6,kg/TJ,0.09354344999999999,kg +da419dbf-8d0c-3d81-bc63-4f2cc99dae00,SESCO,II.1.1,Capital Federal,AR-C,annual,2016,naphtha combustion consumption by to the public,21.682549349999995,TJ,CO2,73300.0,kg/TJ,1589330.8673549995,kg +1b3ed01a-09e0-3e41-8c37-95c3dfc0bcaf,SESCO,II.1.1,Capital Federal,AR-C,annual,2016,naphtha combustion consumption by to the public,21.682549349999995,TJ,CH4,3.0,kg/TJ,65.04764804999999,kg +2f032ea4-ec0f-3b8f-b25f-11488e336ee7,SESCO,II.1.1,Capital Federal,AR-C,annual,2016,naphtha combustion consumption by to the public,21.682549349999995,TJ,N2O,0.6,kg/TJ,13.009529609999996,kg +6ba24911-7258-3b39-86ef-2cb6a59389fe,SESCO,II.1.1,Capital Federal,AR-C,annual,2016,naphtha combustion consumption by to the public,4.452394099999999,TJ,CO2,73300.0,kg/TJ,326360.4875299999,kg +a2de641a-8aba-30a8-97b9-14bff9c6c6eb,SESCO,II.1.1,Capital Federal,AR-C,annual,2016,naphtha combustion consumption by to the public,4.452394099999999,TJ,CH4,3.0,kg/TJ,13.357182299999998,kg +1d0f406b-1aa3-3c12-8075-fada8796fcb1,SESCO,II.1.1,Capital Federal,AR-C,annual,2016,naphtha combustion consumption by to the public,4.452394099999999,TJ,N2O,0.6,kg/TJ,2.6714364599999993,kg +75c056f1-91e2-3005-bc74-59153fd48b18,SESCO,II.5.1,Buenos Aires,AR-B,annual,2016,naphtha combustion consumption by agriculture machines,15.278420849999998,TJ,CO2,73300.0,kg/TJ,1119908.248305,kg +3b80805b-480b-33a7-8dc5-cbead476ff8d,SESCO,II.5.1,Buenos Aires,AR-B,annual,2016,naphtha combustion consumption by agriculture machines,15.278420849999998,TJ,CH4,3.0,kg/TJ,45.835262549999996,kg +70d23622-96d7-3eb7-b722-389a2fceb1a3,SESCO,II.5.1,Buenos Aires,AR-B,annual,2016,naphtha combustion consumption by agriculture machines,15.278420849999998,TJ,N2O,0.6,kg/TJ,9.167052509999998,kg +08b36b59-d2d6-373b-82e6-da7d12869c47,SESCO,II.5.1,Chaco,AR-H,annual,2016,naphtha combustion consumption by agriculture machines,8.965779899999998,TJ,CO2,73300.0,kg/TJ,657191.6666699998,kg +77c09eae-9b54-36af-8cd2-101e9b315933,SESCO,II.5.1,Chaco,AR-H,annual,2016,naphtha combustion consumption by agriculture machines,8.965779899999998,TJ,CH4,3.0,kg/TJ,26.897339699999993,kg +71f42f2d-380b-38f5-ba8d-ebb1a8a01500,SESCO,II.5.1,Chaco,AR-H,annual,2016,naphtha combustion consumption by agriculture machines,8.965779899999998,TJ,N2O,0.6,kg/TJ,5.379467939999999,kg +88c522e5-0d68-352e-adb0-680373de61c8,SESCO,II.5.1,Córdoba,AR-X,annual,2016,naphtha combustion consumption by agriculture machines,10.551564099999998,TJ,CO2,73300.0,kg/TJ,773429.6485299999,kg +06388eab-8435-3066-8c1a-c5441632bbca,SESCO,II.5.1,Córdoba,AR-X,annual,2016,naphtha combustion consumption by agriculture machines,10.551564099999998,TJ,CH4,3.0,kg/TJ,31.654692299999994,kg +6fd9dbc2-7a04-32f6-8daf-09df843dc542,SESCO,II.5.1,Córdoba,AR-X,annual,2016,naphtha combustion consumption by agriculture machines,10.551564099999998,TJ,N2O,0.6,kg/TJ,6.330938459999999,kg +11c9d764-3467-3dd2-9916-dabfda3a0319,SESCO,II.5.1,Santa Fe,AR-S,annual,2016,naphtha combustion consumption by agriculture machines,32.752542899999995,TJ,CO2,73300.0,kg/TJ,2400761.3945699995,kg +58b64bc1-afb8-39d7-9984-f1c8877dc258,SESCO,II.5.1,Santa Fe,AR-S,annual,2016,naphtha combustion consumption by agriculture machines,32.752542899999995,TJ,CH4,3.0,kg/TJ,98.25762869999998,kg +5db36d4a-8462-3fd8-88c1-3324c4c2dfb9,SESCO,II.5.1,Santa Fe,AR-S,annual,2016,naphtha combustion consumption by agriculture machines,32.752542899999995,TJ,N2O,0.6,kg/TJ,19.651525739999997,kg +ffccb861-19bc-344e-8268-344065e701d2,SESCO,II.5.1,Tucuman,AR-T,annual,2016,naphtha combustion consumption by agriculture machines,11.6494147,TJ,CO2,73300.0,kg/TJ,853902.09751,kg +0de40000-4ca3-3df7-8c1e-ebd0bc8779f3,SESCO,II.5.1,Tucuman,AR-T,annual,2016,naphtha combustion consumption by agriculture machines,11.6494147,TJ,CH4,3.0,kg/TJ,34.9482441,kg +63fc48d2-eb24-372a-bd68-9e3f38edb7c5,SESCO,II.5.1,Tucuman,AR-T,annual,2016,naphtha combustion consumption by agriculture machines,11.6494147,TJ,N2O,0.6,kg/TJ,6.989648819999999,kg +29d4a87d-741d-3934-83dd-4b8e22ef9407,SESCO,II.5.1,Buenos Aires,AR-B,annual,2016,naphtha combustion consumption by agriculture machines,3.5375185999999994,TJ,CO2,73300.0,kg/TJ,259300.11337999997,kg +d756a017-9c2f-3031-9cf0-3b849079aa33,SESCO,II.5.1,Buenos Aires,AR-B,annual,2016,naphtha combustion consumption by agriculture machines,3.5375185999999994,TJ,CH4,3.0,kg/TJ,10.612555799999999,kg +35b68d2d-6e4c-35da-92e4-1c5bbf055ea2,SESCO,II.5.1,Buenos Aires,AR-B,annual,2016,naphtha combustion consumption by agriculture machines,3.5375185999999994,TJ,N2O,0.6,kg/TJ,2.1225111599999997,kg +c6f5d8a4-39ff-3e5d-ac26-1aaa55513772,SESCO,II.5.1,Chaco,AR-H,annual,2016,naphtha combustion consumption by agriculture machines,1.2808257,TJ,CO2,73300.0,kg/TJ,93884.52381,kg +0c3504c5-d6c8-3012-b646-6126550fd69b,SESCO,II.5.1,Chaco,AR-H,annual,2016,naphtha combustion consumption by agriculture machines,1.2808257,TJ,CH4,3.0,kg/TJ,3.8424771,kg +0125a94c-42a3-3a6b-9be0-ddfb57e845e2,SESCO,II.5.1,Chaco,AR-H,annual,2016,naphtha combustion consumption by agriculture machines,1.2808257,TJ,N2O,0.6,kg/TJ,0.76849542,kg +f9ecafa4-e0ac-3801-808f-f88d650b9262,SESCO,II.5.1,Córdoba,AR-X,annual,2016,naphtha combustion consumption by agriculture machines,4.42189825,TJ,CO2,73300.0,kg/TJ,324125.141725,kg +43c6da89-3d4e-31e0-976c-8851dd21ac89,SESCO,II.5.1,Córdoba,AR-X,annual,2016,naphtha combustion consumption by agriculture machines,4.42189825,TJ,CH4,3.0,kg/TJ,13.26569475,kg +f5f27cc3-ba7b-3b91-8d71-e52e6639a581,SESCO,II.5.1,Córdoba,AR-X,annual,2016,naphtha combustion consumption by agriculture machines,4.42189825,TJ,N2O,0.6,kg/TJ,2.6531389499999998,kg +51887668-8143-38a1-b6f6-8df666057c9a,SESCO,II.5.1,Santa Fe,AR-S,annual,2016,naphtha combustion consumption by agriculture machines,11.618918849999998,TJ,CO2,73300.0,kg/TJ,851666.7517049998,kg +c20ceec3-e815-32f8-adce-f4d272639d09,SESCO,II.5.1,Santa Fe,AR-S,annual,2016,naphtha combustion consumption by agriculture machines,11.618918849999998,TJ,CH4,3.0,kg/TJ,34.85675654999999,kg +a03fd313-7c27-3018-a59a-a1ef37601ab6,SESCO,II.5.1,Santa Fe,AR-S,annual,2016,naphtha combustion consumption by agriculture machines,11.618918849999998,TJ,N2O,0.6,kg/TJ,6.971351309999998,kg +0ccefe1f-f3a9-3403-82da-6c7b12d34b20,SESCO,II.5.1,Tucuman,AR-T,annual,2016,naphtha combustion consumption by agriculture machines,3.2935518,TJ,CO2,73300.0,kg/TJ,241417.34694,kg +4e01d849-07d0-3d23-be31-b490ac580d42,SESCO,II.5.1,Tucuman,AR-T,annual,2016,naphtha combustion consumption by agriculture machines,3.2935518,TJ,CH4,3.0,kg/TJ,9.8806554,kg +f4038559-88e6-3a7f-8a92-57d394d0ff3d,SESCO,II.5.1,Tucuman,AR-T,annual,2016,naphtha combustion consumption by agriculture machines,3.2935518,TJ,N2O,0.6,kg/TJ,1.9761310799999998,kg +f7956105-24ba-361d-89ca-c1b65f05df4d,SESCO,II.1.1,Buenos Aires,AR-B,annual,2016,naphtha combustion consumption by to the public,6.73958285,TJ,CO2,73300.0,kg/TJ,494011.422905,kg +d8b63c96-0552-3e40-9083-09f47d68bd60,SESCO,II.1.1,Buenos Aires,AR-B,annual,2016,naphtha combustion consumption by to the public,6.73958285,TJ,CH4,3.0,kg/TJ,20.21874855,kg +60339cef-9537-38b9-8dc9-68c9c9dd1464,SESCO,II.1.1,Buenos Aires,AR-B,annual,2016,naphtha combustion consumption by to the public,6.73958285,TJ,N2O,0.6,kg/TJ,4.043749709999999,kg +efc734eb-cae5-3b28-9f0c-c11fba9d8402,SESCO,II.1.1,Santa Fe,AR-S,annual,2016,naphtha combustion consumption by to the public,11.1614811,TJ,CO2,73300.0,kg/TJ,818136.5646299999,kg +ed9467d1-9611-3ede-b7f1-34ea34333ac0,SESCO,II.1.1,Santa Fe,AR-S,annual,2016,naphtha combustion consumption by to the public,11.1614811,TJ,CH4,3.0,kg/TJ,33.484443299999995,kg +767d676b-d80d-3992-99aa-a7d4e78974ba,SESCO,II.1.1,Santa Fe,AR-S,annual,2016,naphtha combustion consumption by to the public,11.1614811,TJ,N2O,0.6,kg/TJ,6.69688866,kg +cc3e09dc-da52-3ded-8387-3137aa59813c,SESCO,II.1.1,Buenos Aires,AR-B,annual,2016,naphtha combustion consumption by to the public,9425.62682215,TJ,CO2,73300.0,kg/TJ,690898446.0635949,kg +25d0a585-ec6a-3646-ae70-92e4813e98b2,SESCO,II.1.1,Buenos Aires,AR-B,annual,2016,naphtha combustion consumption by to the public,9425.62682215,TJ,CH4,3.0,kg/TJ,28276.88046645,kg +b5ee2eac-e586-345a-abff-a6190c16c3d2,SESCO,II.1.1,Buenos Aires,AR-B,annual,2016,naphtha combustion consumption by to the public,9425.62682215,TJ,N2O,0.6,kg/TJ,5655.3760932899995,kg +4455ccd4-bc4c-3e34-9939-8c7fb439c1c0,SESCO,II.1.1,Capital Federal,AR-C,annual,2016,naphtha combustion consumption by to the public,3632.45218105,TJ,CO2,73300.0,kg/TJ,266258744.870965,kg +9956eb87-9873-3b04-8865-8fea4be04e14,SESCO,II.1.1,Capital Federal,AR-C,annual,2016,naphtha combustion consumption by to the public,3632.45218105,TJ,CH4,3.0,kg/TJ,10897.35654315,kg +f4ef9d34-f4d8-36fa-b6c2-e808ae521209,SESCO,II.1.1,Capital Federal,AR-C,annual,2016,naphtha combustion consumption by to the public,3632.45218105,TJ,N2O,0.6,kg/TJ,2179.47130863,kg +222a6631-acff-3a77-9755-94054751f94b,SESCO,II.1.1,Catamarca,AR-K,annual,2016,naphtha combustion consumption by to the public,360.91838475,TJ,CO2,73300.0,kg/TJ,26455317.602174997,kg +4f989f88-0dca-3566-932e-90ceb625d980,SESCO,II.1.1,Catamarca,AR-K,annual,2016,naphtha combustion consumption by to the public,360.91838475,TJ,CH4,3.0,kg/TJ,1082.75515425,kg +46e46259-b975-3ccf-a6f6-05adbd658066,SESCO,II.1.1,Catamarca,AR-K,annual,2016,naphtha combustion consumption by to the public,360.91838475,TJ,N2O,0.6,kg/TJ,216.55103085,kg +aa2c828f-d24e-31e5-b9d1-11ef94e8de5f,SESCO,II.1.1,Chaco,AR-H,annual,2016,naphtha combustion consumption by to the public,451.55205094999997,TJ,CO2,73300.0,kg/TJ,33098765.334634997,kg +eb646aed-40d8-32ff-9e68-db38747df3c4,SESCO,II.1.1,Chaco,AR-H,annual,2016,naphtha combustion consumption by to the public,451.55205094999997,TJ,CH4,3.0,kg/TJ,1354.65615285,kg +f8249a5d-5d45-3990-8b87-64808359986e,SESCO,II.1.1,Chaco,AR-H,annual,2016,naphtha combustion consumption by to the public,451.55205094999997,TJ,N2O,0.6,kg/TJ,270.93123056999997,kg +08d7f2f1-81b0-30a3-b6ea-1a9a09188285,SESCO,II.1.1,Chubut,AR-U,annual,2016,naphtha combustion consumption by to the public,307.7031265,TJ,CO2,73300.0,kg/TJ,22554639.17245,kg +027dcdb9-7b50-39f3-918a-d5d4a5ffc45a,SESCO,II.1.1,Chubut,AR-U,annual,2016,naphtha combustion consumption by to the public,307.7031265,TJ,CH4,3.0,kg/TJ,923.1093794999999,kg +e94ffdd6-eaae-392a-9df8-e7a4fbeb3b68,SESCO,II.1.1,Chubut,AR-U,annual,2016,naphtha combustion consumption by to the public,307.7031265,TJ,N2O,0.6,kg/TJ,184.6218759,kg +3522bc67-7990-3983-9f35-9dd31bd13625,SESCO,II.1.1,Corrientes,AR-W,annual,2016,naphtha combustion consumption by to the public,571.1872705,TJ,CO2,73300.0,kg/TJ,41868026.92765,kg +6aafabdd-ebf2-32c1-8839-949ac8a2038e,SESCO,II.1.1,Corrientes,AR-W,annual,2016,naphtha combustion consumption by to the public,571.1872705,TJ,CH4,3.0,kg/TJ,1713.5618114999997,kg +2eced1b2-dc66-3b98-804e-ed93da921ce0,SESCO,II.1.1,Corrientes,AR-W,annual,2016,naphtha combustion consumption by to the public,571.1872705,TJ,N2O,0.6,kg/TJ,342.71236229999994,kg +ea94405f-e2eb-313a-8b6e-4b8bdbd6e657,SESCO,II.1.1,Córdoba,AR-X,annual,2016,naphtha combustion consumption by to the public,2871.1842774999996,TJ,CO2,73300.0,kg/TJ,210457807.54074997,kg +4d132fe4-cb4d-3e73-ae81-3e84c20fc1e8,SESCO,II.1.1,Córdoba,AR-X,annual,2016,naphtha combustion consumption by to the public,2871.1842774999996,TJ,CH4,3.0,kg/TJ,8613.552832499998,kg +5e4cc60a-cbfc-34d5-bfff-962c2c039b38,SESCO,II.1.1,Córdoba,AR-X,annual,2016,naphtha combustion consumption by to the public,2871.1842774999996,TJ,N2O,0.6,kg/TJ,1722.7105664999997,kg +1ea72da5-4ebd-330d-adc0-cdd132e0f589,SESCO,II.1.1,Entre Rios,AR-E,annual,2016,naphtha combustion consumption by to the public,1016.5181680499999,TJ,CO2,73300.0,kg/TJ,74510781.718065,kg +7ca209af-3b3a-3f31-a7c3-facfdec2e2ec,SESCO,II.1.1,Entre Rios,AR-E,annual,2016,naphtha combustion consumption by to the public,1016.5181680499999,TJ,CH4,3.0,kg/TJ,3049.5545041499995,kg +d682ee44-d999-395e-8fe1-48b6899ae56e,SESCO,II.1.1,Entre Rios,AR-E,annual,2016,naphtha combustion consumption by to the public,1016.5181680499999,TJ,N2O,0.6,kg/TJ,609.91090083,kg +63d2c794-123d-3db8-9902-f16616efb8fe,SESCO,II.1.1,Formosa,AR-P,annual,2016,naphtha combustion consumption by to the public,590.61312695,TJ,CO2,73300.0,kg/TJ,43291942.205435,kg +8f0f2a9f-91af-39f6-afd5-f108ee24929a,SESCO,II.1.1,Formosa,AR-P,annual,2016,naphtha combustion consumption by to the public,590.61312695,TJ,CH4,3.0,kg/TJ,1771.83938085,kg +abd16242-afc2-3584-8681-ad53bab46dcc,SESCO,II.1.1,Formosa,AR-P,annual,2016,naphtha combustion consumption by to the public,590.61312695,TJ,N2O,0.6,kg/TJ,354.36787617,kg +b05c9c26-fc8d-32ac-abbb-2c26aa1f42ec,SESCO,II.1.1,Jujuy,AR-Y,annual,2016,naphtha combustion consumption by to the public,168.2761003,TJ,CO2,73300.0,kg/TJ,12334638.15199,kg +f98def6c-c882-3733-a510-77d2ef3a62fa,SESCO,II.1.1,Jujuy,AR-Y,annual,2016,naphtha combustion consumption by to the public,168.2761003,TJ,CH4,3.0,kg/TJ,504.8283009,kg +0df216cf-31b4-3c9f-b7b7-f14445e9ff6e,SESCO,II.1.1,Jujuy,AR-Y,annual,2016,naphtha combustion consumption by to the public,168.2761003,TJ,N2O,0.6,kg/TJ,100.96566018,kg +5a2a5e64-40e7-3871-b24c-c4d129eb789f,SESCO,II.1.1,La Pampa,AR-L,annual,2016,naphtha combustion consumption by to the public,142.93404895,TJ,CO2,73300.0,kg/TJ,10477065.788035,kg +610c0bce-5424-35de-8c30-d7df4c04b868,SESCO,II.1.1,La Pampa,AR-L,annual,2016,naphtha combustion consumption by to the public,142.93404895,TJ,CH4,3.0,kg/TJ,428.80214685,kg +1223f142-c7e8-33b8-b006-8b513f2af24e,SESCO,II.1.1,La Pampa,AR-L,annual,2016,naphtha combustion consumption by to the public,142.93404895,TJ,N2O,0.6,kg/TJ,85.76042937,kg +3cf777d3-7028-34b5-bbdd-bb601ac1c652,SESCO,II.1.1,La Rioja,AR-F,annual,2016,naphtha combustion consumption by to the public,98.28812454999998,TJ,CO2,73300.0,kg/TJ,7204519.529514998,kg +444deca4-550c-3271-bc12-e803b85a7548,SESCO,II.1.1,La Rioja,AR-F,annual,2016,naphtha combustion consumption by to the public,98.28812454999998,TJ,CH4,3.0,kg/TJ,294.86437364999995,kg +86642cb2-e49b-3080-8b32-5c8517f9545e,SESCO,II.1.1,La Rioja,AR-F,annual,2016,naphtha combustion consumption by to the public,98.28812454999998,TJ,N2O,0.6,kg/TJ,58.97287472999999,kg +903c7db6-7062-3a39-ad30-53ee7026b44c,SESCO,II.1.1,Mendoza,AR-M,annual,2016,naphtha combustion consumption by to the public,416.4818234499999,TJ,CO2,73300.0,kg/TJ,30528117.658884995,kg +0ad05bda-4b46-3504-a3b6-368b533110e9,SESCO,II.1.1,Mendoza,AR-M,annual,2016,naphtha combustion consumption by to the public,416.4818234499999,TJ,CH4,3.0,kg/TJ,1249.4454703499998,kg +8d66a56a-dac3-3cae-afc5-726ab7987f3f,SESCO,II.1.1,Mendoza,AR-M,annual,2016,naphtha combustion consumption by to the public,416.4818234499999,TJ,N2O,0.6,kg/TJ,249.88909406999994,kg +4a40a754-a6ee-3ffb-b29b-87a45bcdf949,SESCO,II.1.1,Misiones,AR-N,annual,2016,naphtha combustion consumption by to the public,668.8959738999998,TJ,CO2,73300.0,kg/TJ,49030074.88686999,kg +1954f187-b195-340a-8026-622ff7c512df,SESCO,II.1.1,Misiones,AR-N,annual,2016,naphtha combustion consumption by to the public,668.8959738999998,TJ,CH4,3.0,kg/TJ,2006.6879216999996,kg +caaabafb-e672-39e7-a254-0cfdfa79b86e,SESCO,II.1.1,Misiones,AR-N,annual,2016,naphtha combustion consumption by to the public,668.8959738999998,TJ,N2O,0.6,kg/TJ,401.33758433999986,kg +639e52a1-93e7-33fd-a904-2c0b19f74830,SESCO,II.1.1,Neuquén,AR-Q,annual,2016,naphtha combustion consumption by to the public,237.07473789999997,TJ,CO2,73300.0,kg/TJ,17377578.288069997,kg +4ef81c92-7466-39a8-b8e3-037b7d276db3,SESCO,II.1.1,Neuquén,AR-Q,annual,2016,naphtha combustion consumption by to the public,237.07473789999997,TJ,CH4,3.0,kg/TJ,711.2242137,kg +770a65f2-a10f-3ca5-8c40-eded26ef52a5,SESCO,II.1.1,Neuquén,AR-Q,annual,2016,naphtha combustion consumption by to the public,237.07473789999997,TJ,N2O,0.6,kg/TJ,142.24484273999997,kg +80021e77-869c-3092-b2e2-0b01b87f21cf,SESCO,II.1.1,Rio Negro,AR-R,annual,2016,naphtha combustion consumption by to the public,437.37148069999995,TJ,CO2,73300.0,kg/TJ,32059329.535309996,kg +b98f9862-4ce2-3603-ba41-9844ae0cdd41,SESCO,II.1.1,Rio Negro,AR-R,annual,2016,naphtha combustion consumption by to the public,437.37148069999995,TJ,CH4,3.0,kg/TJ,1312.1144421,kg +7b60baf5-ceae-3230-9392-76fda942d714,SESCO,II.1.1,Rio Negro,AR-R,annual,2016,naphtha combustion consumption by to the public,437.37148069999995,TJ,N2O,0.6,kg/TJ,262.42288841999994,kg +419feb49-846b-3ce1-8b47-dfcca6721d48,SESCO,II.1.1,Salta,AR-A,annual,2016,naphtha combustion consumption by to the public,88.22449404999999,TJ,CO2,73300.0,kg/TJ,6466855.413864999,kg +63ad8c7c-bf17-38f6-a6bd-15e7de831b2b,SESCO,II.1.1,Salta,AR-A,annual,2016,naphtha combustion consumption by to the public,88.22449404999999,TJ,CH4,3.0,kg/TJ,264.67348215,kg +37745630-158a-333d-aa6e-0a97f059b965,SESCO,II.1.1,Salta,AR-A,annual,2016,naphtha combustion consumption by to the public,88.22449404999999,TJ,N2O,0.6,kg/TJ,52.934696429999995,kg +20fd37c1-0e89-37d2-9fcf-85a651bcba59,SESCO,II.1.1,San Juan,AR-J,annual,2016,naphtha combustion consumption by to the public,226.43168624999998,TJ,CO2,73300.0,kg/TJ,16597442.602124998,kg +bd9414e1-f382-3304-b1d6-3391195f1e35,SESCO,II.1.1,San Juan,AR-J,annual,2016,naphtha combustion consumption by to the public,226.43168624999998,TJ,CH4,3.0,kg/TJ,679.29505875,kg +9cd24e59-dde0-3af5-beaf-ee2b63d5c774,SESCO,II.1.1,San Juan,AR-J,annual,2016,naphtha combustion consumption by to the public,226.43168624999998,TJ,N2O,0.6,kg/TJ,135.85901174999998,kg +88b7b8d8-aa0f-359c-97e7-a1b440104048,SESCO,II.1.1,San Luis,AR-D,annual,2016,naphtha combustion consumption by to the public,513.4281306,TJ,CO2,73300.0,kg/TJ,37634281.97298,kg +a88b370d-2722-3f22-9366-df122afac791,SESCO,II.1.1,San Luis,AR-D,annual,2016,naphtha combustion consumption by to the public,513.4281306,TJ,CH4,3.0,kg/TJ,1540.2843918,kg +1d8e6185-cb5f-3491-aa60-e4583de17880,SESCO,II.1.1,San Luis,AR-D,annual,2016,naphtha combustion consumption by to the public,513.4281306,TJ,N2O,0.6,kg/TJ,308.05687836,kg +8ad05d3e-3c60-3409-bded-b95ba7911862,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2016,naphtha combustion consumption by to the public,66.54194469999999,TJ,CO2,73300.0,kg/TJ,4877524.546509999,kg +ce32d7f3-bc1d-3484-82ba-e1549b6037fb,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2016,naphtha combustion consumption by to the public,66.54194469999999,TJ,CH4,3.0,kg/TJ,199.62583409999996,kg +b32049f5-9f91-3cd2-ac2a-0a0e2d05cbe7,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2016,naphtha combustion consumption by to the public,66.54194469999999,TJ,N2O,0.6,kg/TJ,39.925166819999994,kg +11d9f070-eea2-30ca-b541-dff150bf45cc,SESCO,II.1.1,Santa Fe,AR-S,annual,2016,naphtha combustion consumption by to the public,2497.0916855499995,TJ,CO2,73300.0,kg/TJ,183036820.55081496,kg +da9f532d-26ac-39e9-844e-1699051d6849,SESCO,II.1.1,Santa Fe,AR-S,annual,2016,naphtha combustion consumption by to the public,2497.0916855499995,TJ,CH4,3.0,kg/TJ,7491.275056649998,kg +de48edd2-41be-3d2d-95ba-f9a8a97c0cbc,SESCO,II.1.1,Santa Fe,AR-S,annual,2016,naphtha combustion consumption by to the public,2497.0916855499995,TJ,N2O,0.6,kg/TJ,1498.2550113299997,kg +6a03dd0a-1a52-38ac-a7a8-fb8fbb622872,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2016,naphtha combustion consumption by to the public,371.22598204999997,TJ,CO2,73300.0,kg/TJ,27210864.484265,kg +d1a348a6-7332-3f25-8d9e-0195c933801e,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2016,naphtha combustion consumption by to the public,371.22598204999997,TJ,CH4,3.0,kg/TJ,1113.67794615,kg +a1047ad4-5e35-39a1-83c5-60753659b871,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2016,naphtha combustion consumption by to the public,371.22598204999997,TJ,N2O,0.6,kg/TJ,222.73558923,kg +536d5dac-d74f-31fa-8af8-5d43a1b5454e,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2016,naphtha combustion consumption by to the public,124.39257214999999,TJ,CO2,73300.0,kg/TJ,9117975.538595,kg +bc89b549-6c62-366e-8d71-2566b9ff6aad,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2016,naphtha combustion consumption by to the public,124.39257214999999,TJ,CH4,3.0,kg/TJ,373.17771645,kg +ec51afba-7c6b-3d06-925a-94c9d9ea5a28,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2016,naphtha combustion consumption by to the public,124.39257214999999,TJ,N2O,0.6,kg/TJ,74.63554328999999,kg +fee1ca5d-bebe-3ec2-8f99-254f50cf4adb,SESCO,II.1.1,Tucuman,AR-T,annual,2016,naphtha combustion consumption by to the public,139.33553865,TJ,CO2,73300.0,kg/TJ,10213294.983044999,kg +dc432831-51c6-39bd-8bef-eca36e1be522,SESCO,II.1.1,Tucuman,AR-T,annual,2016,naphtha combustion consumption by to the public,139.33553865,TJ,CH4,3.0,kg/TJ,418.00661594999997,kg +9d07e726-4be6-301b-9eb9-2dd98583e9a6,SESCO,II.1.1,Tucuman,AR-T,annual,2016,naphtha combustion consumption by to the public,139.33553865,TJ,N2O,0.6,kg/TJ,83.60132318999999,kg +51a7166f-f999-3e6a-8d45-b9e3e29007e8,SESCO,II.1.1,Buenos Aires,AR-B,annual,2016,naphtha combustion consumption by to the public,2523.31811655,TJ,CO2,73300.0,kg/TJ,184959217.943115,kg +da176dd9-eabc-3494-a5ca-29b8bb5ec3f4,SESCO,II.1.1,Buenos Aires,AR-B,annual,2016,naphtha combustion consumption by to the public,2523.31811655,TJ,CH4,3.0,kg/TJ,7569.95434965,kg +22c08d01-8362-3546-bd40-ca4569f7117a,SESCO,II.1.1,Buenos Aires,AR-B,annual,2016,naphtha combustion consumption by to the public,2523.31811655,TJ,N2O,0.6,kg/TJ,1513.99086993,kg +b75800dc-12a1-3cf5-aa40-6276922cb10c,SESCO,II.1.1,Capital Federal,AR-C,annual,2016,naphtha combustion consumption by to the public,1255.6971196,TJ,CO2,73300.0,kg/TJ,92042598.86668,kg +48d5abea-72e3-32ec-ba93-5329ccae1c5c,SESCO,II.1.1,Capital Federal,AR-C,annual,2016,naphtha combustion consumption by to the public,1255.6971196,TJ,CH4,3.0,kg/TJ,3767.0913588,kg +8ac3fb79-4dfd-3cce-98e4-11054a1a43c5,SESCO,II.1.1,Capital Federal,AR-C,annual,2016,naphtha combustion consumption by to the public,1255.6971196,TJ,N2O,0.6,kg/TJ,753.4182717599999,kg +e76a0a49-9ba7-3111-b54d-89853f0aa867,SESCO,II.1.1,Catamarca,AR-K,annual,2016,naphtha combustion consumption by to the public,105.30217004999999,TJ,CO2,73300.0,kg/TJ,7718649.064664999,kg +a580e693-596f-3312-8a64-da0684b6378e,SESCO,II.1.1,Catamarca,AR-K,annual,2016,naphtha combustion consumption by to the public,105.30217004999999,TJ,CH4,3.0,kg/TJ,315.90651015,kg +e02064b3-4c68-3d73-ba22-6c94148725e0,SESCO,II.1.1,Catamarca,AR-K,annual,2016,naphtha combustion consumption by to the public,105.30217004999999,TJ,N2O,0.6,kg/TJ,63.18130202999999,kg +1871ce22-d2a2-3b99-a5e3-675f86c58f37,SESCO,II.1.1,Chaco,AR-H,annual,2016,naphtha combustion consumption by to the public,92.37192964999998,TJ,CO2,73300.0,kg/TJ,6770862.443344999,kg +bb3592f9-305d-3ddd-ae33-9f4e5b9b45d8,SESCO,II.1.1,Chaco,AR-H,annual,2016,naphtha combustion consumption by to the public,92.37192964999998,TJ,CH4,3.0,kg/TJ,277.11578894999997,kg +887b482c-6956-3144-9cd9-fcd44abaca2d,SESCO,II.1.1,Chaco,AR-H,annual,2016,naphtha combustion consumption by to the public,92.37192964999998,TJ,N2O,0.6,kg/TJ,55.42315778999999,kg +a36c5062-139f-331b-8481-eeadcbc573bd,SESCO,II.1.1,Chubut,AR-U,annual,2016,naphtha combustion consumption by to the public,61.4186419,TJ,CO2,73300.0,kg/TJ,4501986.45127,kg +4036a71e-9b29-3f59-aaa2-6f781ef89e3b,SESCO,II.1.1,Chubut,AR-U,annual,2016,naphtha combustion consumption by to the public,61.4186419,TJ,CH4,3.0,kg/TJ,184.25592569999998,kg +27a5de69-6c99-388b-a437-23c2c1b0dddf,SESCO,II.1.1,Chubut,AR-U,annual,2016,naphtha combustion consumption by to the public,61.4186419,TJ,N2O,0.6,kg/TJ,36.85118514,kg +a64686a5-7ee5-3ea7-b52a-56aff24157fc,SESCO,II.1.1,Corrientes,AR-W,annual,2016,naphtha combustion consumption by to the public,140.34190169999997,TJ,CO2,73300.0,kg/TJ,10287061.394609997,kg +70aa88f3-5c88-39f2-b6fe-509100f85914,SESCO,II.1.1,Corrientes,AR-W,annual,2016,naphtha combustion consumption by to the public,140.34190169999997,TJ,CH4,3.0,kg/TJ,421.02570509999987,kg +5eea0bbe-f27f-3cde-8455-4e39d3ffee86,SESCO,II.1.1,Corrientes,AR-W,annual,2016,naphtha combustion consumption by to the public,140.34190169999997,TJ,N2O,0.6,kg/TJ,84.20514101999997,kg +50e42c97-05f5-34c2-b330-f91a438136d3,SESCO,II.1.1,Córdoba,AR-X,annual,2016,naphtha combustion consumption by to the public,665.6329179499999,TJ,CO2,73300.0,kg/TJ,48790892.88573499,kg +d555fef4-9f52-30cf-b02f-a529bc5446ba,SESCO,II.1.1,Córdoba,AR-X,annual,2016,naphtha combustion consumption by to the public,665.6329179499999,TJ,CH4,3.0,kg/TJ,1996.8987538499996,kg +626ed5eb-a1c3-3156-b62e-a7af80121726,SESCO,II.1.1,Córdoba,AR-X,annual,2016,naphtha combustion consumption by to the public,665.6329179499999,TJ,N2O,0.6,kg/TJ,399.37975076999993,kg +4788fd33-0d27-344a-99f8-ccc0840947a1,SESCO,II.1.1,Entre Rios,AR-E,annual,2016,naphtha combustion consumption by to the public,265.55786179999996,TJ,CO2,73300.0,kg/TJ,19465391.269939996,kg +334a4137-add2-368f-bf8e-e438dbcbac8b,SESCO,II.1.1,Entre Rios,AR-E,annual,2016,naphtha combustion consumption by to the public,265.55786179999996,TJ,CH4,3.0,kg/TJ,796.6735853999999,kg +e9c53505-eb09-3497-bfad-4c561b6b64ba,SESCO,II.1.1,Entre Rios,AR-E,annual,2016,naphtha combustion consumption by to the public,265.55786179999996,TJ,N2O,0.6,kg/TJ,159.33471707999996,kg +c5507b21-c996-3420-95d0-ae4141a76b7c,SESCO,II.1.1,Formosa,AR-P,annual,2016,naphtha combustion consumption by to the public,145.58718789999998,TJ,CO2,73300.0,kg/TJ,10671540.873069998,kg +be7265c4-6bde-36be-b40a-5ae5370b55bf,SESCO,II.1.1,Formosa,AR-P,annual,2016,naphtha combustion consumption by to the public,145.58718789999998,TJ,CH4,3.0,kg/TJ,436.7615636999999,kg +f5b2ffaf-fddf-3742-ad2d-abd3d71b4414,SESCO,II.1.1,Formosa,AR-P,annual,2016,naphtha combustion consumption by to the public,145.58718789999998,TJ,N2O,0.6,kg/TJ,87.35231273999999,kg +81b5d89b-581f-326d-86ea-ce8f903cb558,SESCO,II.1.1,Jujuy,AR-Y,annual,2016,naphtha combustion consumption by to the public,19.639327399999996,TJ,CO2,73300.0,kg/TJ,1439562.6984199996,kg +8b6f191c-1dbc-3289-87ec-5c5f66d4259f,SESCO,II.1.1,Jujuy,AR-Y,annual,2016,naphtha combustion consumption by to the public,19.639327399999996,TJ,CH4,3.0,kg/TJ,58.91798219999998,kg +01ad8f3f-7135-3bb4-b62a-f94916c4f801,SESCO,II.1.1,Jujuy,AR-Y,annual,2016,naphtha combustion consumption by to the public,19.639327399999996,TJ,N2O,0.6,kg/TJ,11.783596439999997,kg +1dbdfd31-2025-3e72-98ce-ecb76c652a97,SESCO,II.1.1,La Pampa,AR-L,annual,2016,naphtha combustion consumption by to the public,47.390550899999994,TJ,CO2,73300.0,kg/TJ,3473727.3809699994,kg +a40cf4dc-08df-3f75-a3cf-433a0124139a,SESCO,II.1.1,La Pampa,AR-L,annual,2016,naphtha combustion consumption by to the public,47.390550899999994,TJ,CH4,3.0,kg/TJ,142.17165269999998,kg +3722f507-a1ec-3cd1-b619-9612781c9b4e,SESCO,II.1.1,La Pampa,AR-L,annual,2016,naphtha combustion consumption by to the public,47.390550899999994,TJ,N2O,0.6,kg/TJ,28.434330539999994,kg +6992d170-3562-3bb6-94ba-8d58111f820a,SESCO,II.1.1,La Rioja,AR-F,annual,2016,naphtha combustion consumption by to the public,17.809576399999997,TJ,CO2,73300.0,kg/TJ,1305441.9501199997,kg +af653195-aa25-3c4c-bc80-36c8a2537b88,SESCO,II.1.1,La Rioja,AR-F,annual,2016,naphtha combustion consumption by to the public,17.809576399999997,TJ,CH4,3.0,kg/TJ,53.42872919999999,kg +3d0ae382-7dbc-30d8-b0e8-7d1ab20e0991,SESCO,II.1.1,La Rioja,AR-F,annual,2016,naphtha combustion consumption by to the public,17.809576399999997,TJ,N2O,0.6,kg/TJ,10.685745839999997,kg +428df677-c7a8-3d29-91c5-8c6e11de16ee,SESCO,II.1.1,Mendoza,AR-M,annual,2016,naphtha combustion consumption by to the public,139.88446394999997,TJ,CO2,73300.0,kg/TJ,10253531.207534997,kg +cf2fdded-62e0-3677-b829-b3b785be0806,SESCO,II.1.1,Mendoza,AR-M,annual,2016,naphtha combustion consumption by to the public,139.88446394999997,TJ,CH4,3.0,kg/TJ,419.65339184999993,kg +3a07978e-7acd-3400-bc69-95473a6311e4,SESCO,II.1.1,Mendoza,AR-M,annual,2016,naphtha combustion consumption by to the public,139.88446394999997,TJ,N2O,0.6,kg/TJ,83.93067836999998,kg +d11fcbc9-dcc1-3a1f-8c97-6df789321d6d,SESCO,II.1.1,Misiones,AR-N,annual,2016,naphtha combustion consumption by to the public,94.87258934999998,TJ,CO2,73300.0,kg/TJ,6954160.799354998,kg +349fbfd2-bddb-3235-925f-782dc836d327,SESCO,II.1.1,Misiones,AR-N,annual,2016,naphtha combustion consumption by to the public,94.87258934999998,TJ,CH4,3.0,kg/TJ,284.61776804999994,kg +9eee9dfa-1ad3-3085-aceb-7940f6862d07,SESCO,II.1.1,Misiones,AR-N,annual,2016,naphtha combustion consumption by to the public,94.87258934999998,TJ,N2O,0.6,kg/TJ,56.92355360999999,kg +f70299a9-96d6-30b1-bb6a-8bce7ca0ac47,SESCO,II.1.1,Neuquén,AR-Q,annual,2016,naphtha combustion consumption by to the public,101.76465144999999,TJ,CO2,73300.0,kg/TJ,7459348.951284999,kg +89449589-0926-30ae-8ab6-aba14f6f4097,SESCO,II.1.1,Neuquén,AR-Q,annual,2016,naphtha combustion consumption by to the public,101.76465144999999,TJ,CH4,3.0,kg/TJ,305.29395435,kg +4b61d3ba-b342-3b4f-80db-932fcc513ff4,SESCO,II.1.1,Neuquén,AR-Q,annual,2016,naphtha combustion consumption by to the public,101.76465144999999,TJ,N2O,0.6,kg/TJ,61.05879086999999,kg +eeead1fb-9b72-35ac-91e8-13e57949457e,SESCO,II.1.1,Rio Negro,AR-R,annual,2016,naphtha combustion consumption by to the public,157.32809014999998,TJ,CO2,73300.0,kg/TJ,11532149.007994998,kg +2c548647-67f1-3854-ab40-ca85148f8d93,SESCO,II.1.1,Rio Negro,AR-R,annual,2016,naphtha combustion consumption by to the public,157.32809014999998,TJ,CH4,3.0,kg/TJ,471.98427044999994,kg +4d2d6dd6-6420-3465-a123-5a0d3c36cb5d,SESCO,II.1.1,Rio Negro,AR-R,annual,2016,naphtha combustion consumption by to the public,157.32809014999998,TJ,N2O,0.6,kg/TJ,94.39685408999999,kg +0d7414e5-6a89-376a-9b85-6fffe16a1708,SESCO,II.1.1,Salta,AR-A,annual,2016,naphtha combustion consumption by to the public,12.869248699999998,TJ,CO2,73300.0,kg/TJ,943315.9297099998,kg +fb2c14c8-7a1d-3e87-b420-661373f6a6c4,SESCO,II.1.1,Salta,AR-A,annual,2016,naphtha combustion consumption by to the public,12.869248699999998,TJ,CH4,3.0,kg/TJ,38.60774609999999,kg +b679bfdf-f498-350c-bcf9-5bfa5b4f6af8,SESCO,II.1.1,Salta,AR-A,annual,2016,naphtha combustion consumption by to the public,12.869248699999998,TJ,N2O,0.6,kg/TJ,7.721549219999998,kg +e70ce9af-d909-32e3-a6fb-1ea650dede41,SESCO,II.1.1,San Juan,AR-J,annual,2016,naphtha combustion consumption by to the public,59.8328577,TJ,CO2,73300.0,kg/TJ,4385748.469409999,kg +f0148657-9e83-3126-8cda-5fc757c6262f,SESCO,II.1.1,San Juan,AR-J,annual,2016,naphtha combustion consumption by to the public,59.8328577,TJ,CH4,3.0,kg/TJ,179.4985731,kg +87b8ced0-4a47-36d7-826a-afdeaf0acc72,SESCO,II.1.1,San Juan,AR-J,annual,2016,naphtha combustion consumption by to the public,59.8328577,TJ,N2O,0.6,kg/TJ,35.89971462,kg +ecebe372-c1f9-3984-97eb-413e036dc75f,SESCO,II.1.1,San Luis,AR-D,annual,2016,naphtha combustion consumption by to the public,121.7394332,TJ,CO2,73300.0,kg/TJ,8923500.45356,kg +a26281a0-8ac0-3677-b643-749876f4dd28,SESCO,II.1.1,San Luis,AR-D,annual,2016,naphtha combustion consumption by to the public,121.7394332,TJ,CH4,3.0,kg/TJ,365.21829959999997,kg +baf8f8e2-2363-3b20-9aa6-a604a467baf5,SESCO,II.1.1,San Luis,AR-D,annual,2016,naphtha combustion consumption by to the public,121.7394332,TJ,N2O,0.6,kg/TJ,73.04365992,kg +0a988488-10b0-38b4-8f0f-fb083a40b2f0,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2016,naphtha combustion consumption by to the public,33.0575014,TJ,CO2,73300.0,kg/TJ,2423114.85262,kg +a29d0324-1a99-3d9c-9d29-7f2e7090377b,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2016,naphtha combustion consumption by to the public,33.0575014,TJ,CH4,3.0,kg/TJ,99.17250419999999,kg +f9158194-0fe4-31ac-8a06-9d6f744f907b,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2016,naphtha combustion consumption by to the public,33.0575014,TJ,N2O,0.6,kg/TJ,19.83450084,kg +772eb836-7295-3a4f-b801-0bf8015d79e1,SESCO,II.1.1,Santa Fe,AR-S,annual,2016,naphtha combustion consumption by to the public,682.0701810999999,TJ,CO2,73300.0,kg/TJ,49995744.274629995,kg +f00e2191-2c6c-3830-b5ec-bc7853bec8a6,SESCO,II.1.1,Santa Fe,AR-S,annual,2016,naphtha combustion consumption by to the public,682.0701810999999,TJ,CH4,3.0,kg/TJ,2046.2105432999997,kg +a31bcc9a-96c3-39c2-8c65-0c206abce5a8,SESCO,II.1.1,Santa Fe,AR-S,annual,2016,naphtha combustion consumption by to the public,682.0701810999999,TJ,N2O,0.6,kg/TJ,409.24210865999993,kg +604902db-c5a6-3f52-ab67-7dcbcfec6d67,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2016,naphtha combustion consumption by to the public,99.2944876,TJ,CO2,73300.0,kg/TJ,7278285.941079999,kg +a7603528-dc41-32e5-9ffb-093269681f90,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2016,naphtha combustion consumption by to the public,99.2944876,TJ,CH4,3.0,kg/TJ,297.88346279999996,kg +a2722c94-c9e2-3e54-8c93-56fc1132575d,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2016,naphtha combustion consumption by to the public,99.2944876,TJ,N2O,0.6,kg/TJ,59.57669256,kg +98b2334a-2c90-347c-be6c-95195820fc5a,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2016,naphtha combustion consumption by to the public,57.36269384999999,TJ,CO2,73300.0,kg/TJ,4204685.459205,kg +ed135fbf-182e-3723-8750-a12736ff4932,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2016,naphtha combustion consumption by to the public,57.36269384999999,TJ,CH4,3.0,kg/TJ,172.08808154999997,kg +682aacfd-0fce-32bc-a3a3-ab85806e815c,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2016,naphtha combustion consumption by to the public,57.36269384999999,TJ,N2O,0.6,kg/TJ,34.41761630999999,kg +b68271bd-e7af-3fbc-a7b9-ee0003210b10,SESCO,II.1.1,Tucuman,AR-T,annual,2016,naphtha combustion consumption by to the public,20.88965725,TJ,CO2,73300.0,kg/TJ,1531211.876425,kg +4b6948a9-17ef-3fd5-811e-c98aed5836e9,SESCO,II.1.1,Tucuman,AR-T,annual,2016,naphtha combustion consumption by to the public,20.88965725,TJ,CH4,3.0,kg/TJ,62.66897175,kg +02a7f198-720b-3ece-87d2-926b442536ca,SESCO,II.1.1,Tucuman,AR-T,annual,2016,naphtha combustion consumption by to the public,20.88965725,TJ,N2O,0.6,kg/TJ,12.533794349999999,kg +1b5c3756-472a-3a45-81dd-98c22886b2ee,SESCO,II.1.1,Buenos Aires,AR-B,annual,2016,naphtha combustion consumption by freight transport,8.2338795,TJ,CO2,73300.0,kg/TJ,603543.3673500001,kg +5a871921-7f19-37ba-8344-b0d52fcbfc5b,SESCO,II.1.1,Buenos Aires,AR-B,annual,2016,naphtha combustion consumption by freight transport,8.2338795,TJ,CH4,3.0,kg/TJ,24.7016385,kg +3c5d14ba-51e4-3326-8323-8c75e080b540,SESCO,II.1.1,Buenos Aires,AR-B,annual,2016,naphtha combustion consumption by freight transport,8.2338795,TJ,N2O,0.6,kg/TJ,4.9403277,kg +3ee62f9b-f42a-3c0a-9adc-55ec52afb993,SESCO,II.1.1,Capital Federal,AR-C,annual,2016,naphtha combustion consumption by freight transport,5.5502446999999995,TJ,CO2,73300.0,kg/TJ,406832.93650999997,kg +e232892e-9194-366f-96a1-0cf8c0e59925,SESCO,II.1.1,Capital Federal,AR-C,annual,2016,naphtha combustion consumption by freight transport,5.5502446999999995,TJ,CH4,3.0,kg/TJ,16.650734099999998,kg +ff53c0b7-9e37-34aa-aa27-d8eb3c725957,SESCO,II.1.1,Capital Federal,AR-C,annual,2016,naphtha combustion consumption by freight transport,5.5502446999999995,TJ,N2O,0.6,kg/TJ,3.3301468199999995,kg +850a2aea-b2f7-337f-adb3-f9d1c27d876c,SESCO,II.1.1,Córdoba,AR-X,annual,2016,naphtha combustion consumption by freight transport,1.5247924999999998,TJ,CO2,73300.0,kg/TJ,111767.29024999998,kg +5db02c6e-da5f-3dea-b40d-8b79e6ec64f1,SESCO,II.1.1,Córdoba,AR-X,annual,2016,naphtha combustion consumption by freight transport,1.5247924999999998,TJ,CH4,3.0,kg/TJ,4.574377499999999,kg +3d031b75-0671-373c-a7d8-c03730810e2e,SESCO,II.1.1,Córdoba,AR-X,annual,2016,naphtha combustion consumption by freight transport,1.5247924999999998,TJ,N2O,0.6,kg/TJ,0.9148754999999998,kg +133b1b9c-fdd2-36d5-ac34-8ef7514f1fbc,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2016,naphtha combustion consumption by freight transport,2.40917215,TJ,CO2,73300.0,kg/TJ,176592.318595,kg +79a5f83e-dac0-3bc9-a2cf-479ae1f588a0,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2016,naphtha combustion consumption by freight transport,2.40917215,TJ,CH4,3.0,kg/TJ,7.2275164499999995,kg +65849e8f-a669-317a-a260-2f3e12eef619,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2016,naphtha combustion consumption by freight transport,2.40917215,TJ,N2O,0.6,kg/TJ,1.4455032899999998,kg +b1fe2260-1f4e-3ba8-abd0-3bdcc553a9d4,SESCO,II.1.1,Santa Fe,AR-S,annual,2016,naphtha combustion consumption by freight transport,6.495616049999999,TJ,CO2,73300.0,kg/TJ,476128.6564649999,kg +72411cb7-1ff4-34ec-9dd0-008204200b58,SESCO,II.1.1,Santa Fe,AR-S,annual,2016,naphtha combustion consumption by freight transport,6.495616049999999,TJ,CH4,3.0,kg/TJ,19.486848149999997,kg +7303feb1-3a8e-3ad9-b02d-2da0bcba0946,SESCO,II.1.1,Santa Fe,AR-S,annual,2016,naphtha combustion consumption by freight transport,6.495616049999999,TJ,N2O,0.6,kg/TJ,3.897369629999999,kg +a3c99869-bf3a-3a7d-bf3b-7ce7a1352592,SESCO,II.1.1,Buenos Aires,AR-B,annual,2016,naphtha combustion consumption by freight transport,5.489252999999999,TJ,CO2,73300.0,kg/TJ,402362.24489999993,kg +012c5c41-c60c-39c0-b489-14cdfdc94d83,SESCO,II.1.1,Buenos Aires,AR-B,annual,2016,naphtha combustion consumption by freight transport,5.489252999999999,TJ,CH4,3.0,kg/TJ,16.467758999999997,kg +dee881e7-d295-374e-9f6e-6ce6ab37529e,SESCO,II.1.1,Buenos Aires,AR-B,annual,2016,naphtha combustion consumption by freight transport,5.489252999999999,TJ,N2O,0.6,kg/TJ,3.293551799999999,kg +25fe2391-4f7f-3a63-8879-e391e139973e,SESCO,II.1.1,Capital Federal,AR-C,annual,2016,naphtha combustion consumption by freight transport,4.7573526,TJ,CO2,73300.0,kg/TJ,348713.94558,kg +7ea62b94-6d17-39fc-ad61-f0d263e71faf,SESCO,II.1.1,Capital Federal,AR-C,annual,2016,naphtha combustion consumption by freight transport,4.7573526,TJ,CH4,3.0,kg/TJ,14.272057799999999,kg +716bb79d-3a9d-35ee-83e5-a8a3eb06a408,SESCO,II.1.1,Capital Federal,AR-C,annual,2016,naphtha combustion consumption by freight transport,4.7573526,TJ,N2O,0.6,kg/TJ,2.85441156,kg +86b71a2b-7041-3f32-acaf-f370925c61c8,SESCO,II.1.1,Córdoba,AR-X,annual,2016,naphtha combustion consumption by freight transport,0.5489253,TJ,CO2,73300.0,kg/TJ,40236.22448999999,kg +9f85280f-7f0d-3694-9dba-fa48a67dd1d3,SESCO,II.1.1,Córdoba,AR-X,annual,2016,naphtha combustion consumption by freight transport,0.5489253,TJ,CH4,3.0,kg/TJ,1.6467758999999997,kg +1769f4ba-a52a-3467-9d40-a64cced1bd26,SESCO,II.1.1,Córdoba,AR-X,annual,2016,naphtha combustion consumption by freight transport,0.5489253,TJ,N2O,0.6,kg/TJ,0.32935517999999997,kg +8ad75766-5434-356d-9424-f0b1ec73fb33,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2016,naphtha combustion consumption by freight transport,0.30495849999999997,TJ,CO2,73300.0,kg/TJ,22353.458049999997,kg +641c846a-dd9e-38f7-a012-f089d0cd0336,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2016,naphtha combustion consumption by freight transport,0.30495849999999997,TJ,CH4,3.0,kg/TJ,0.9148755,kg +9cb3b713-87c0-3419-b10d-7e6d101e25f4,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2016,naphtha combustion consumption by freight transport,0.30495849999999997,TJ,N2O,0.6,kg/TJ,0.18297509999999997,kg +1a2185e8-7eee-3697-b668-ce9ac0f46496,SESCO,II.1.1,Santa Fe,AR-S,annual,2016,naphtha combustion consumption by freight transport,1.25032985,TJ,CO2,73300.0,kg/TJ,91649.178005,kg +74b5d93a-63cb-3f3c-989f-81048c0ca766,SESCO,II.1.1,Santa Fe,AR-S,annual,2016,naphtha combustion consumption by freight transport,1.25032985,TJ,CH4,3.0,kg/TJ,3.75098955,kg +ebaab00c-0418-3265-bea8-9e456e2b304b,SESCO,II.1.1,Santa Fe,AR-S,annual,2016,naphtha combustion consumption by freight transport,1.25032985,TJ,N2O,0.6,kg/TJ,0.7501979099999999,kg +a29201e3-66a9-34ef-8a23-4d240296cfa4,SESCO,II.1.1,Santa Fe,AR-S,annual,2016,naphtha combustion consumption by public passenger transport,0.6099169999999999,TJ,CO2,73300.0,kg/TJ,44706.916099999995,kg +47536d47-d4f7-3962-9da7-09c74c4fad38,SESCO,II.1.1,Santa Fe,AR-S,annual,2016,naphtha combustion consumption by public passenger transport,0.6099169999999999,TJ,CH4,3.0,kg/TJ,1.829751,kg +30ade8a5-5952-3452-b66f-ff5f41ba7621,SESCO,II.1.1,Santa Fe,AR-S,annual,2016,naphtha combustion consumption by public passenger transport,0.6099169999999999,TJ,N2O,0.6,kg/TJ,0.36595019999999995,kg +53fb16ff-cf1d-35bf-9c44-0a659ff9985e,SESCO,II.1.1,Buenos Aires,AR-B,annual,2016,naphtha combustion consumption by public passenger transport,0.30495849999999997,TJ,CO2,73300.0,kg/TJ,22353.458049999997,kg +808e37ea-f3a3-3f61-a930-177662b75223,SESCO,II.1.1,Buenos Aires,AR-B,annual,2016,naphtha combustion consumption by public passenger transport,0.30495849999999997,TJ,CH4,3.0,kg/TJ,0.9148755,kg +60d123a5-c0b8-356c-b9b5-f7c5de06091e,SESCO,II.1.1,Buenos Aires,AR-B,annual,2016,naphtha combustion consumption by public passenger transport,0.30495849999999997,TJ,N2O,0.6,kg/TJ,0.18297509999999997,kg +5c9e121e-0703-3d47-a737-96979e4d1218,SESCO,II.1.1,Capital Federal,AR-C,annual,2016,naphtha combustion consumption by public passenger transport,0.21347095,TJ,CO2,73300.0,kg/TJ,15647.420634999999,kg +58453588-a1ce-3435-933d-2fec092f090d,SESCO,II.1.1,Capital Federal,AR-C,annual,2016,naphtha combustion consumption by public passenger transport,0.21347095,TJ,CH4,3.0,kg/TJ,0.6404128499999999,kg +0d306eaf-3f45-32d3-bd23-26026a8083c0,SESCO,II.1.1,Capital Federal,AR-C,annual,2016,naphtha combustion consumption by public passenger transport,0.21347095,TJ,N2O,0.6,kg/TJ,0.12808256999999998,kg +e9fffc06-cba2-37bc-8e2d-b4d9bd251771,SESCO,II.1.1,Santa Fe,AR-S,annual,2016,naphtha combustion consumption by public passenger transport,0.48793359999999997,TJ,CO2,73300.0,kg/TJ,35765.53288,kg +c67e7b30-f20f-38ba-8cdc-909471753adf,SESCO,II.1.1,Santa Fe,AR-S,annual,2016,naphtha combustion consumption by public passenger transport,0.48793359999999997,TJ,CH4,3.0,kg/TJ,1.4638008,kg +f29cb214-aa3a-32e4-96b0-30458ec94e1c,SESCO,II.1.1,Santa Fe,AR-S,annual,2016,naphtha combustion consumption by public passenger transport,0.48793359999999997,TJ,N2O,0.6,kg/TJ,0.29276016,kg +bf820bfa-3fbe-3bca-a579-4660e8018fb1,SESCO,II.5.1,Santa Fe,AR-S,annual,2016,naphtha combustion consumption by agriculture machines,4.664035299,TJ,CO2,73300.0,kg/TJ,341873.7874167,kg +33e93c32-1240-3e15-8ab5-ac0667106aa5,SESCO,II.5.1,Santa Fe,AR-S,annual,2016,naphtha combustion consumption by agriculture machines,4.664035299,TJ,CH4,3.0,kg/TJ,13.992105897,kg +708bdc55-6b39-3570-8ce9-0a93b1352fb8,SESCO,II.5.1,Santa Fe,AR-S,annual,2016,naphtha combustion consumption by agriculture machines,4.664035299,TJ,N2O,0.6,kg/TJ,2.7984211794,kg +7bba12be-85a6-3353-b73c-cdf5fc3cd834,SESCO,II.5.1,Santiago del Estero,AR-G,annual,2016,naphtha combustion consumption by agriculture machines,4.185433429099999,TJ,CO2,73300.0,kg/TJ,306792.2703530299,kg +6888826b-edea-386b-bead-31246eb8d53b,SESCO,II.5.1,Santiago del Estero,AR-G,annual,2016,naphtha combustion consumption by agriculture machines,4.185433429099999,TJ,CH4,3.0,kg/TJ,12.556300287299997,kg +21af7cf5-1851-3b19-8ad5-bd5c3d2a64a4,SESCO,II.5.1,Santiago del Estero,AR-G,annual,2016,naphtha combustion consumption by agriculture machines,4.185433429099999,TJ,N2O,0.6,kg/TJ,2.511260057459999,kg +dd4546eb-1487-36ff-a23f-4398a6dd9cc7,SESCO,II.1.1,Buenos Aires,AR-B,annual,2016,naphtha combustion consumption by to the public,1726.9625327250449,TJ,CO2,73300.0,kg/TJ,126586353.64874579,kg +735a511f-8fb6-3f5b-ad85-148616b25def,SESCO,II.1.1,Buenos Aires,AR-B,annual,2016,naphtha combustion consumption by to the public,1726.9625327250449,TJ,CH4,3.0,kg/TJ,5180.887598175134,kg +2434794d-8368-3061-a193-0b756cacf9c4,SESCO,II.1.1,Buenos Aires,AR-B,annual,2016,naphtha combustion consumption by to the public,1726.9625327250449,TJ,N2O,0.6,kg/TJ,1036.1775196350268,kg +664e8430-4880-337e-ad6c-aef819987d27,SESCO,II.1.1,Capital Federal,AR-C,annual,2016,naphtha combustion consumption by to the public,195.92402520729496,TJ,CO2,73300.0,kg/TJ,14361231.04769472,kg +83383cba-55e2-3db2-9efa-22a6a12e9a8f,SESCO,II.1.1,Capital Federal,AR-C,annual,2016,naphtha combustion consumption by to the public,195.92402520729496,TJ,CH4,3.0,kg/TJ,587.7720756218848,kg +2d0e3b98-9792-301f-91e4-eb51595dbec0,SESCO,II.1.1,Capital Federal,AR-C,annual,2016,naphtha combustion consumption by to the public,195.92402520729496,TJ,N2O,0.6,kg/TJ,117.55441512437697,kg +83b5aa01-ad5f-3e60-921f-28ded2c68a0b,SESCO,II.1.1,Catamarca,AR-K,annual,2016,naphtha combustion consumption by to the public,166.07026227945997,TJ,CO2,73300.0,kg/TJ,12172950.225084415,kg +a18c8739-7dda-3263-a235-1d56dfc6834d,SESCO,II.1.1,Catamarca,AR-K,annual,2016,naphtha combustion consumption by to the public,166.07026227945997,TJ,CH4,3.0,kg/TJ,498.21078683837993,kg +0abc7b0d-435f-3cd4-885c-a64ab8274680,SESCO,II.1.1,Catamarca,AR-K,annual,2016,naphtha combustion consumption by to the public,166.07026227945997,TJ,N2O,0.6,kg/TJ,99.64215736767598,kg +87a9b4b6-d22d-3b52-aa86-76401875aa13,SESCO,II.1.1,Chaco,AR-H,annual,2016,naphtha combustion consumption by to the public,271.442673420765,TJ,CO2,73300.0,kg/TJ,19896747.961742073,kg +1e39d064-015a-3498-ac25-64da5e21a63a,SESCO,II.1.1,Chaco,AR-H,annual,2016,naphtha combustion consumption by to the public,271.442673420765,TJ,CH4,3.0,kg/TJ,814.328020262295,kg +d5a0af55-0256-386b-9f7e-0e86337863bb,SESCO,II.1.1,Chaco,AR-H,annual,2016,naphtha combustion consumption by to the public,271.442673420765,TJ,N2O,0.6,kg/TJ,162.865604052459,kg +67500ced-2564-334c-b960-416a2134d893,SESCO,II.1.1,Corrientes,AR-W,annual,2016,naphtha combustion consumption by to the public,263.82288580262997,TJ,CO2,73300.0,kg/TJ,19338217.529332776,kg +17b2effa-4e04-3206-bfe1-a225aa7d7953,SESCO,II.1.1,Corrientes,AR-W,annual,2016,naphtha combustion consumption by to the public,263.82288580262997,TJ,CH4,3.0,kg/TJ,791.4686574078899,kg +4c941e22-358e-3a63-a4fc-bf36cfa5a403,SESCO,II.1.1,Corrientes,AR-W,annual,2016,naphtha combustion consumption by to the public,263.82288580262997,TJ,N2O,0.6,kg/TJ,158.29373148157796,kg +307e82a7-ea40-33f2-abb9-a612df078f7b,SESCO,II.1.1,Córdoba,AR-X,annual,2016,naphtha combustion consumption by to the public,779.103678934735,TJ,CO2,73300.0,kg/TJ,57108299.66591607,kg +1bc82898-cccb-3010-a214-2ac029cd7d89,SESCO,II.1.1,Córdoba,AR-X,annual,2016,naphtha combustion consumption by to the public,779.103678934735,TJ,CH4,3.0,kg/TJ,2337.311036804205,kg +02f47059-1fc2-3040-8f74-7a2e898f6ba7,SESCO,II.1.1,Córdoba,AR-X,annual,2016,naphtha combustion consumption by to the public,779.103678934735,TJ,N2O,0.6,kg/TJ,467.4622073608409,kg +02d8b9eb-de0c-3b65-a336-2d9c20b52d10,SESCO,II.1.1,Entre Rios,AR-E,annual,2016,naphtha combustion consumption by to the public,365.75242831358,TJ,CO2,73300.0,kg/TJ,26809652.995385416,kg +f2f32d62-49c2-3520-80b7-dd1f0ad7a945,SESCO,II.1.1,Entre Rios,AR-E,annual,2016,naphtha combustion consumption by to the public,365.75242831358,TJ,CH4,3.0,kg/TJ,1097.2572849407402,kg +5f084cca-7250-3a3c-a848-f15bd8e5e9ee,SESCO,II.1.1,Entre Rios,AR-E,annual,2016,naphtha combustion consumption by to the public,365.75242831358,TJ,N2O,0.6,kg/TJ,219.451456988148,kg +162cf9be-2fa8-31fe-b4a4-42254f9cb816,SESCO,II.1.1,Jujuy,AR-Y,annual,2016,naphtha combustion consumption by to the public,65.50986754928,TJ,CO2,73300.0,kg/TJ,4801873.291362224,kg +a3dd0151-0039-3a5c-a233-b2dd9cfa6a93,SESCO,II.1.1,Jujuy,AR-Y,annual,2016,naphtha combustion consumption by to the public,65.50986754928,TJ,CH4,3.0,kg/TJ,196.52960264784002,kg +8b8573fe-be2c-3903-ad3d-bc609f8940f1,SESCO,II.1.1,Jujuy,AR-Y,annual,2016,naphtha combustion consumption by to the public,65.50986754928,TJ,N2O,0.6,kg/TJ,39.305920529568,kg +9bd80e68-9ae3-341c-a22a-4f7a0aaff610,SESCO,II.1.1,La Pampa,AR-L,annual,2016,naphtha combustion consumption by to the public,12.065121928859998,TJ,CO2,73300.0,kg/TJ,884373.4373854379,kg +698aebf5-15c8-31af-a12e-08168458e917,SESCO,II.1.1,La Pampa,AR-L,annual,2016,naphtha combustion consumption by to the public,12.065121928859998,TJ,CH4,3.0,kg/TJ,36.19536578658,kg +49544a7f-3ac3-3c2f-bc88-016c202321b5,SESCO,II.1.1,La Pampa,AR-L,annual,2016,naphtha combustion consumption by to the public,12.065121928859998,TJ,N2O,0.6,kg/TJ,7.239073157315999,kg +63702063-5a1e-374e-a7ac-dc1a35add9a3,SESCO,II.1.1,La Rioja,AR-F,annual,2016,naphtha combustion consumption by to the public,36.37560845842,TJ,CO2,73300.0,kg/TJ,2666332.100002186,kg +87709c63-d048-331c-9a87-17dd14a5544c,SESCO,II.1.1,La Rioja,AR-F,annual,2016,naphtha combustion consumption by to the public,36.37560845842,TJ,CH4,3.0,kg/TJ,109.12682537525998,kg +87a0326f-5f33-3237-b24b-2c6e84b26fcf,SESCO,II.1.1,La Rioja,AR-F,annual,2016,naphtha combustion consumption by to the public,36.37560845842,TJ,N2O,0.6,kg/TJ,21.825365075051998,kg +43bcab2c-8623-3092-b4cf-9cc528854486,SESCO,II.1.1,Mendoza,AR-M,annual,2016,naphtha combustion consumption by to the public,247.71580731974996,TJ,CO2,73300.0,kg/TJ,18157568.67653767,kg +d464988d-d23a-3f25-8d94-9f102f92b68e,SESCO,II.1.1,Mendoza,AR-M,annual,2016,naphtha combustion consumption by to the public,247.71580731974996,TJ,CH4,3.0,kg/TJ,743.1474219592499,kg +341ef813-8b7e-3f2d-8fc8-cbbe09372721,SESCO,II.1.1,Mendoza,AR-M,annual,2016,naphtha combustion consumption by to the public,247.71580731974996,TJ,N2O,0.6,kg/TJ,148.62948439184996,kg +322432b8-137d-37ce-8ec9-73578817cfea,SESCO,II.1.1,Misiones,AR-N,annual,2016,naphtha combustion consumption by to the public,250.09928366653998,TJ,CO2,73300.0,kg/TJ,18332277.49275738,kg +12912fa7-0e6c-3f07-bae1-2ba543f060dd,SESCO,II.1.1,Misiones,AR-N,annual,2016,naphtha combustion consumption by to the public,250.09928366653998,TJ,CH4,3.0,kg/TJ,750.2978509996199,kg +4fa76c20-4024-3cfc-81ef-2fe034481ea0,SESCO,II.1.1,Misiones,AR-N,annual,2016,naphtha combustion consumption by to the public,250.09928366653998,TJ,N2O,0.6,kg/TJ,150.05957019992397,kg +02992873-f10c-3c1f-94ce-3c1a937a3bab,SESCO,II.1.1,Salta,AR-A,annual,2016,naphtha combustion consumption by to the public,27.94989786358,TJ,CO2,73300.0,kg/TJ,2048727.5134004138,kg +5e29818c-8061-39cf-afb1-00e3aa3c64fb,SESCO,II.1.1,Salta,AR-A,annual,2016,naphtha combustion consumption by to the public,27.94989786358,TJ,CH4,3.0,kg/TJ,83.84969359074,kg +ed02ba3b-9141-3f97-a7e2-86ee89d8e6a2,SESCO,II.1.1,Salta,AR-A,annual,2016,naphtha combustion consumption by to the public,27.94989786358,TJ,N2O,0.6,kg/TJ,16.769938718147998,kg +1145957d-3fc5-3a72-b78a-5480af2ad2e8,SESCO,II.1.1,San Juan,AR-J,annual,2016,naphtha combustion consumption by to the public,255.635045887375,TJ,CO2,73300.0,kg/TJ,18738048.863544587,kg +c8bd6db4-b9ef-385a-8d9c-50330d25f6b9,SESCO,II.1.1,San Juan,AR-J,annual,2016,naphtha combustion consumption by to the public,255.635045887375,TJ,CH4,3.0,kg/TJ,766.905137662125,kg +5a7e5490-3f35-34ad-83f5-8fec81c7da06,SESCO,II.1.1,San Juan,AR-J,annual,2016,naphtha combustion consumption by to the public,255.635045887375,TJ,N2O,0.6,kg/TJ,153.38102753242498,kg +ba6ff81d-3b8f-3579-a89e-3b3bf2f433af,SESCO,II.1.1,San Luis,AR-D,annual,2016,naphtha combustion consumption by to the public,159.49693670448997,TJ,CO2,73300.0,kg/TJ,11691125.460439114,kg +6eb3a194-212f-3181-a893-cf046f6c6103,SESCO,II.1.1,San Luis,AR-D,annual,2016,naphtha combustion consumption by to the public,159.49693670448997,TJ,CH4,3.0,kg/TJ,478.49081011346993,kg +c7828900-c417-30e7-bfac-f1c2e2f78550,SESCO,II.1.1,San Luis,AR-D,annual,2016,naphtha combustion consumption by to the public,159.49693670448997,TJ,N2O,0.6,kg/TJ,95.69816202269398,kg +72923d12-74a8-3171-acc1-888f6ead14f1,SESCO,II.1.1,Santa Fe,AR-S,annual,2016,naphtha combustion consumption by to the public,972.84506736417,TJ,CO2,73300.0,kg/TJ,71309543.43779366,kg +2d52ad6e-c575-3b66-8653-3bceffd8f8de,SESCO,II.1.1,Santa Fe,AR-S,annual,2016,naphtha combustion consumption by to the public,972.84506736417,TJ,CH4,3.0,kg/TJ,2918.5352020925097,kg +d194373c-b746-321a-826f-3090b9c34c57,SESCO,II.1.1,Santa Fe,AR-S,annual,2016,naphtha combustion consumption by to the public,972.84506736417,TJ,N2O,0.6,kg/TJ,583.707040418502,kg +07935cb4-59a6-3100-9a8f-9d95fb6c1adc,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2016,naphtha combustion consumption by to the public,176.238520991225,TJ,CO2,73300.0,kg/TJ,12918283.588656792,kg +718eb6e8-9807-32d2-bbff-9b7bdee20055,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2016,naphtha combustion consumption by to the public,176.238520991225,TJ,CH4,3.0,kg/TJ,528.715562973675,kg +ea6b732f-c5cc-39ca-8ae8-ce4f3135b0e6,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2016,naphtha combustion consumption by to the public,176.238520991225,TJ,N2O,0.6,kg/TJ,105.743112594735,kg +ca78306d-3d20-3da5-9bea-11baad655033,SESCO,II.1.1,Tucuman,AR-T,annual,2016,naphtha combustion consumption by to the public,203.25932618953496,TJ,CO2,73300.0,kg/TJ,14898908.609692913,kg +2effb6cf-ebfd-326a-90ad-1e40e241fdcb,SESCO,II.1.1,Tucuman,AR-T,annual,2016,naphtha combustion consumption by to the public,203.25932618953496,TJ,CH4,3.0,kg/TJ,609.7779785686049,kg +8e5989f4-d196-3d8b-ae30-641a461f7b57,SESCO,II.1.1,Tucuman,AR-T,annual,2016,naphtha combustion consumption by to the public,203.25932618953496,TJ,N2O,0.6,kg/TJ,121.95559571372097,kg +1ec09db2-152a-3afd-88bb-e7a25b539936,SESCO,II.1.1,Buenos Aires,AR-B,annual,2016,naphtha combustion consumption by to the public,324.80965767327,TJ,CO2,73300.0,kg/TJ,23808547.90745069,kg +2f2a611f-f5ed-3b08-af3a-413f9248d88c,SESCO,II.1.1,Buenos Aires,AR-B,annual,2016,naphtha combustion consumption by to the public,324.80965767327,TJ,CH4,3.0,kg/TJ,974.42897301981,kg +924a66bb-df69-3083-9345-1b70ecc1ce2f,SESCO,II.1.1,Buenos Aires,AR-B,annual,2016,naphtha combustion consumption by to the public,324.80965767327,TJ,N2O,0.6,kg/TJ,194.885794603962,kg +a50f8f78-dd78-3dc7-8f17-10e7a318e4b7,SESCO,II.1.1,Capital Federal,AR-C,annual,2016,naphtha combustion consumption by to the public,62.98920257167999,TJ,CO2,73300.0,kg/TJ,4617108.548504143,kg +2ab467c3-fa0e-3ce5-91d0-7b67f00e9ecd,SESCO,II.1.1,Capital Federal,AR-C,annual,2016,naphtha combustion consumption by to the public,62.98920257167999,TJ,CH4,3.0,kg/TJ,188.96760771503997,kg +f110d406-efd3-3306-be92-0c30e6d5c687,SESCO,II.1.1,Capital Federal,AR-C,annual,2016,naphtha combustion consumption by to the public,62.98920257167999,TJ,N2O,0.6,kg/TJ,37.79352154300799,kg +64a1b47d-a92e-346c-986f-379c0e71f3a6,SESCO,II.1.1,Catamarca,AR-K,annual,2016,naphtha combustion consumption by to the public,19.600905678584997,TJ,CO2,73300.0,kg/TJ,1436746.3862402802,kg +cc54227d-6a62-3328-bbef-e488663f8a8a,SESCO,II.1.1,Catamarca,AR-K,annual,2016,naphtha combustion consumption by to the public,19.600905678584997,TJ,CH4,3.0,kg/TJ,58.802717035754995,kg +ef400971-9386-32c7-a43b-a156f6015335,SESCO,II.1.1,Catamarca,AR-K,annual,2016,naphtha combustion consumption by to the public,19.600905678584997,TJ,N2O,0.6,kg/TJ,11.760543407150998,kg +5f064b97-fdde-31ff-b8cb-5d3edd04c1bf,SESCO,II.1.1,Chaco,AR-H,annual,2016,naphtha combustion consumption by to the public,26.576944200729997,TJ,CO2,73300.0,kg/TJ,1948090.0099135088,kg +34ae1337-3ada-376f-98e7-6ddfb03554ac,SESCO,II.1.1,Chaco,AR-H,annual,2016,naphtha combustion consumption by to the public,26.576944200729997,TJ,CH4,3.0,kg/TJ,79.73083260218999,kg +3e485f31-5a81-360a-8d20-a756a5d358f3,SESCO,II.1.1,Chaco,AR-H,annual,2016,naphtha combustion consumption by to the public,26.576944200729997,TJ,N2O,0.6,kg/TJ,15.946166520437998,kg +26d5cd33-c260-3080-ad34-ba25ed1497db,SESCO,II.1.1,Corrientes,AR-W,annual,2016,naphtha combustion consumption by to the public,69.25412666518498,TJ,CO2,73300.0,kg/TJ,5076327.484558059,kg +22b84ec5-8ba7-3e87-9b4b-998d68b81566,SESCO,II.1.1,Corrientes,AR-W,annual,2016,naphtha combustion consumption by to the public,69.25412666518498,TJ,CH4,3.0,kg/TJ,207.76237999555497,kg +71079490-9c97-3f44-8daf-17b02a7595cd,SESCO,II.1.1,Corrientes,AR-W,annual,2016,naphtha combustion consumption by to the public,69.25412666518498,TJ,N2O,0.6,kg/TJ,41.55247599911099,kg +f684dbc3-b7b8-3e83-8ad9-dd131b0324f6,SESCO,II.1.1,Córdoba,AR-X,annual,2016,naphtha combustion consumption by to the public,150.36579610745,TJ,CO2,73300.0,kg/TJ,11021812.854676085,kg +203c5b44-6993-3727-b05c-52e78a0d0e5e,SESCO,II.1.1,Córdoba,AR-X,annual,2016,naphtha combustion consumption by to the public,150.36579610745,TJ,CH4,3.0,kg/TJ,451.09738832234996,kg +cdf73073-60a7-3fb9-b284-ffd0dfdaed97,SESCO,II.1.1,Córdoba,AR-X,annual,2016,naphtha combustion consumption by to the public,150.36579610745,TJ,N2O,0.6,kg/TJ,90.21947766446999,kg +7cf6a18b-8089-3cc3-8fe6-465aa2f53856,SESCO,II.1.1,Entre Rios,AR-E,annual,2016,naphtha combustion consumption by to the public,79.202653628945,TJ,CO2,73300.0,kg/TJ,5805554.511001669,kg +bac535b1-284b-3bca-99fc-7ac09ff0f8c2,SESCO,II.1.1,Entre Rios,AR-E,annual,2016,naphtha combustion consumption by to the public,79.202653628945,TJ,CH4,3.0,kg/TJ,237.607960886835,kg +97de9de6-9ff1-367d-ac1a-e92697a72975,SESCO,II.1.1,Entre Rios,AR-E,annual,2016,naphtha combustion consumption by to the public,79.202653628945,TJ,N2O,0.6,kg/TJ,47.521592177367,kg +8507391d-10e8-3b79-a0d2-8ce572d2c64f,SESCO,II.1.1,Jujuy,AR-Y,annual,2016,naphtha combustion consumption by to the public,1.6073081709299997,TJ,CO2,73300.0,kg/TJ,117815.68892916897,kg +14069b26-aebe-32af-9d22-568323a13d86,SESCO,II.1.1,Jujuy,AR-Y,annual,2016,naphtha combustion consumption by to the public,1.6073081709299997,TJ,CH4,3.0,kg/TJ,4.821924512789999,kg +abeaddbb-5ccd-3d33-a74b-e00f61dc66e6,SESCO,II.1.1,Jujuy,AR-Y,annual,2016,naphtha combustion consumption by to the public,1.6073081709299997,TJ,N2O,0.6,kg/TJ,0.9643849025579998,kg +ce17a61a-3e32-3072-98d9-3b7aac83736e,SESCO,II.1.1,La Pampa,AR-L,annual,2016,naphtha combustion consumption by to the public,3.8808134330349993,TJ,CO2,73300.0,kg/TJ,284463.62464146543,kg +225bad29-e695-3cf4-bf9e-bcb762d9474e,SESCO,II.1.1,La Pampa,AR-L,annual,2016,naphtha combustion consumption by to the public,3.8808134330349993,TJ,CH4,3.0,kg/TJ,11.642440299104997,kg +477027b9-d08a-393b-9bc7-9eeebe1f1696,SESCO,II.1.1,La Pampa,AR-L,annual,2016,naphtha combustion consumption by to the public,3.8808134330349993,TJ,N2O,0.6,kg/TJ,2.3284880598209994,kg +afa23a96-1cc2-3944-a25d-849ecc5fb6b5,SESCO,II.1.1,La Rioja,AR-F,annual,2016,naphtha combustion consumption by to the public,5.913483818935,TJ,CO2,73300.0,kg/TJ,433458.3639279355,kg +ef76db4e-05b9-30ab-94b8-b2b68f85ba12,SESCO,II.1.1,La Rioja,AR-F,annual,2016,naphtha combustion consumption by to the public,5.913483818935,TJ,CH4,3.0,kg/TJ,17.740451456805,kg +768cdd02-393d-339b-9ce8-45e5f3292952,SESCO,II.1.1,La Rioja,AR-F,annual,2016,naphtha combustion consumption by to the public,5.913483818935,TJ,N2O,0.6,kg/TJ,3.548090291361,kg +01c455bb-ff8d-3565-b792-d8b7233e6672,SESCO,II.1.1,Mendoza,AR-M,annual,2016,naphtha combustion consumption by to the public,46.00506954196999,TJ,CO2,73300.0,kg/TJ,3372171.5974264,kg +3d24d023-5267-3052-b8b1-0458c12a733c,SESCO,II.1.1,Mendoza,AR-M,annual,2016,naphtha combustion consumption by to the public,46.00506954196999,TJ,CH4,3.0,kg/TJ,138.01520862590996,kg +334f722c-f719-33c5-a28b-8db41467197a,SESCO,II.1.1,Mendoza,AR-M,annual,2016,naphtha combustion consumption by to the public,46.00506954196999,TJ,N2O,0.6,kg/TJ,27.603041725181992,kg +7fef4c61-4bf0-37bc-9e23-3bfd566b050b,SESCO,II.1.1,Misiones,AR-N,annual,2016,naphtha combustion consumption by to the public,38.875023927739996,TJ,CO2,73300.0,kg/TJ,2849539.2539033415,kg +613c00b0-b4df-3e0a-8034-a3a5a678e4b5,SESCO,II.1.1,Misiones,AR-N,annual,2016,naphtha combustion consumption by to the public,38.875023927739996,TJ,CH4,3.0,kg/TJ,116.62507178322,kg +0cbadd3c-71da-3405-be3e-7f7b134337e8,SESCO,II.1.1,Misiones,AR-N,annual,2016,naphtha combustion consumption by to the public,38.875023927739996,TJ,N2O,0.6,kg/TJ,23.325014356643997,kg +5543a1cf-2e53-3030-afe9-4a78788acb2b,SESCO,II.1.1,Salta,AR-A,annual,2016,naphtha combustion consumption by to the public,0.7278170056849999,TJ,CO2,73300.0,kg/TJ,53348.98651671049,kg +a7f016f3-78c9-3f41-8a69-9be0fe935524,SESCO,II.1.1,Salta,AR-A,annual,2016,naphtha combustion consumption by to the public,0.7278170056849999,TJ,CH4,3.0,kg/TJ,2.1834510170549994,kg +60938dd7-8af6-33c0-84b8-5ad8444b6b7f,SESCO,II.1.1,Salta,AR-A,annual,2016,naphtha combustion consumption by to the public,0.7278170056849999,TJ,N2O,0.6,kg/TJ,0.4366902034109999,kg +053bdfc4-7520-3eca-b83a-148009c159a1,SESCO,II.1.1,San Juan,AR-J,annual,2016,naphtha combustion consumption by to the public,61.01548066383,TJ,CO2,73300.0,kg/TJ,4472434.732658739,kg +7b28748c-4b03-375a-a294-b051460c61f0,SESCO,II.1.1,San Juan,AR-J,annual,2016,naphtha combustion consumption by to the public,61.01548066383,TJ,CH4,3.0,kg/TJ,183.04644199148998,kg +6b9bb90f-47d3-3863-9646-549d26c5cde5,SESCO,II.1.1,San Juan,AR-J,annual,2016,naphtha combustion consumption by to the public,61.01548066383,TJ,N2O,0.6,kg/TJ,36.609288398298,kg +d06a4829-ef27-3d95-b82b-4a44797c04ad,SESCO,II.1.1,San Luis,AR-D,annual,2016,naphtha combustion consumption by to the public,39.71989925365,TJ,CO2,73300.0,kg/TJ,2911468.615292545,kg +f2e37853-6b38-3234-9857-427808f85ede,SESCO,II.1.1,San Luis,AR-D,annual,2016,naphtha combustion consumption by to the public,39.71989925365,TJ,CH4,3.0,kg/TJ,119.15969776095,kg +6e152f39-31cf-385c-9460-59b018eb349e,SESCO,II.1.1,San Luis,AR-D,annual,2016,naphtha combustion consumption by to the public,39.71989925365,TJ,N2O,0.6,kg/TJ,23.831939552189997,kg +787d8d17-0be6-3841-ab0e-02df0c05e339,SESCO,II.1.1,Santa Fe,AR-S,annual,2016,naphtha combustion consumption by to the public,207.064659344235,TJ,CO2,73300.0,kg/TJ,15177839.529932424,kg +bc2f165f-2344-3d8a-a028-3d312ac741cd,SESCO,II.1.1,Santa Fe,AR-S,annual,2016,naphtha combustion consumption by to the public,207.064659344235,TJ,CH4,3.0,kg/TJ,621.193978032705,kg +fe66f1e0-c23b-3ddb-9433-79768e82e897,SESCO,II.1.1,Santa Fe,AR-S,annual,2016,naphtha combustion consumption by to the public,207.064659344235,TJ,N2O,0.6,kg/TJ,124.23879560654099,kg +b87f9da1-fadb-3ae2-b1d4-2c02d6617dfc,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2016,naphtha combustion consumption by to the public,25.980064176604998,TJ,CO2,73300.0,kg/TJ,1904338.7041451463,kg +d18f9661-1516-3f5f-8876-42463cf7c097,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2016,naphtha combustion consumption by to the public,25.980064176604998,TJ,CH4,3.0,kg/TJ,77.940192529815,kg +5b64bea7-c797-30a8-a03f-68e8951906cc,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2016,naphtha combustion consumption by to the public,25.980064176604998,TJ,N2O,0.6,kg/TJ,15.588038505962999,kg +6df6a305-d594-3c7a-b02a-a94e9210e8ac,SESCO,II.1.1,Tucuman,AR-T,annual,2016,naphtha combustion consumption by to the public,26.470522832984997,TJ,CO2,73300.0,kg/TJ,1940289.3236578002,kg +239b159b-3cb2-33e3-9399-b42d8464f6b2,SESCO,II.1.1,Tucuman,AR-T,annual,2016,naphtha combustion consumption by to the public,26.470522832984997,TJ,CH4,3.0,kg/TJ,79.41156849895499,kg +7be0f149-aabc-3304-bdf0-c57df523ab8f,SESCO,II.1.1,Tucuman,AR-T,annual,2016,naphtha combustion consumption by to the public,26.470522832984997,TJ,N2O,0.6,kg/TJ,15.882313699790998,kg +d68161fa-cf1e-3422-991a-270c413c13d0,SESCO,II.5.1,Buenos Aires,AR-B,annual,2016,naphtha combustion consumption by agriculture machines,6.624976396114999,TJ,CO2,73300.0,kg/TJ,485610.76983522944,kg +9feb0b5b-e362-3186-b9db-27eb92c796e5,SESCO,II.5.1,Buenos Aires,AR-B,annual,2016,naphtha combustion consumption by agriculture machines,6.624976396114999,TJ,CH4,3.0,kg/TJ,19.874929188344996,kg +a696e1d0-7a83-325c-a96d-9201f76ecb2f,SESCO,II.5.1,Buenos Aires,AR-B,annual,2016,naphtha combustion consumption by agriculture machines,6.624976396114999,TJ,N2O,0.6,kg/TJ,3.9749858376689993,kg +f666d387-878f-30bd-8df5-058a1dc6bad6,SESCO,II.5.1,Rio Negro,AR-R,annual,2016,naphtha combustion consumption by agriculture machines,1.9076374009,TJ,CO2,73300.0,kg/TJ,139829.82148597,kg +39da4433-f3e7-37de-9595-eb2320a31e7b,SESCO,II.5.1,Rio Negro,AR-R,annual,2016,naphtha combustion consumption by agriculture machines,1.9076374009,TJ,CH4,3.0,kg/TJ,5.7229122027,kg +f111c945-0dd2-3d4a-93ca-3373929a2684,SESCO,II.5.1,Rio Negro,AR-R,annual,2016,naphtha combustion consumption by agriculture machines,1.9076374009,TJ,N2O,0.6,kg/TJ,1.1445824405399998,kg +aeaf9f35-3812-39dc-ad14-d61055f842dd,SESCO,II.1.1,Buenos Aires,AR-B,annual,2016,naphtha combustion consumption by to the public,3858.07833162059,TJ,CO2,73300.0,kg/TJ,282797141.70778924,kg +02c76ad7-bf1e-3cff-bc09-5215d166f0bb,SESCO,II.1.1,Buenos Aires,AR-B,annual,2016,naphtha combustion consumption by to the public,3858.07833162059,TJ,CH4,3.0,kg/TJ,11574.23499486177,kg +cfa460bf-7687-336d-9fab-7f28ba56d2a9,SESCO,II.1.1,Buenos Aires,AR-B,annual,2016,naphtha combustion consumption by to the public,3858.07833162059,TJ,N2O,0.6,kg/TJ,2314.846998972354,kg +88b656c0-3c6a-3666-9122-0d9f21893846,SESCO,II.1.1,Capital Federal,AR-C,annual,2016,naphtha combustion consumption by to the public,707.3343338507599,TJ,CO2,73300.0,kg/TJ,51847606.6712607,kg +229bd3eb-696c-34ee-9bc8-f88f9c04d4fd,SESCO,II.1.1,Capital Federal,AR-C,annual,2016,naphtha combustion consumption by to the public,707.3343338507599,TJ,CH4,3.0,kg/TJ,2122.00300155228,kg +fe5c7351-e28c-3e2a-b853-40cd543f616a,SESCO,II.1.1,Capital Federal,AR-C,annual,2016,naphtha combustion consumption by to the public,707.3343338507599,TJ,N2O,0.6,kg/TJ,424.4006003104559,kg +51c8748d-965b-38ac-9ac2-eeb73c03c074,SESCO,II.1.1,Chubut,AR-U,annual,2016,naphtha combustion consumption by to the public,1349.3502469993698,TJ,CO2,73300.0,kg/TJ,98907373.10505381,kg +695fe131-8e90-3f1e-a8d3-2065d1f58b23,SESCO,II.1.1,Chubut,AR-U,annual,2016,naphtha combustion consumption by to the public,1349.3502469993698,TJ,CH4,3.0,kg/TJ,4048.050740998109,kg +6b9e0492-f5ab-3d39-834d-63e4b2539e49,SESCO,II.1.1,Chubut,AR-U,annual,2016,naphtha combustion consumption by to the public,1349.3502469993698,TJ,N2O,0.6,kg/TJ,809.6101481996219,kg +e4face9e-4f8c-3d36-b0ad-a904e143bc9c,SESCO,II.1.1,Córdoba,AR-X,annual,2016,naphtha combustion consumption by to the public,460.50471458491495,TJ,CO2,73300.0,kg/TJ,33754995.57907426,kg +4e9d34c8-2907-3367-ad6b-0a87b210c090,SESCO,II.1.1,Córdoba,AR-X,annual,2016,naphtha combustion consumption by to the public,460.50471458491495,TJ,CH4,3.0,kg/TJ,1381.514143754745,kg +fcd0928d-d1e1-377d-a080-87c800680ec4,SESCO,II.1.1,Córdoba,AR-X,annual,2016,naphtha combustion consumption by to the public,460.50471458491495,TJ,N2O,0.6,kg/TJ,276.30282875094895,kg +9f785a84-7ab9-3661-9cc5-e9c41c6da409,SESCO,II.1.1,Entre Rios,AR-E,annual,2016,naphtha combustion consumption by to the public,150.485605153345,TJ,CO2,73300.0,kg/TJ,11030594.857740188,kg +c1ae3df1-7347-396e-bcc9-24cf082ad5f0,SESCO,II.1.1,Entre Rios,AR-E,annual,2016,naphtha combustion consumption by to the public,150.485605153345,TJ,CH4,3.0,kg/TJ,451.45681546003505,kg +9234480c-85cf-32b9-ad1e-4f52cba09d73,SESCO,II.1.1,Entre Rios,AR-E,annual,2016,naphtha combustion consumption by to the public,150.485605153345,TJ,N2O,0.6,kg/TJ,90.291363092007,kg +05fdf4ff-09b7-34e3-b4d8-3157b4ea2f3c,SESCO,II.1.1,La Pampa,AR-L,annual,2016,naphtha combustion consumption by to the public,378.1771634048099,TJ,CO2,73300.0,kg/TJ,27720386.077572566,kg +80838132-08c2-3d99-ab32-9b00d0454875,SESCO,II.1.1,La Pampa,AR-L,annual,2016,naphtha combustion consumption by to the public,378.1771634048099,TJ,CH4,3.0,kg/TJ,1134.5314902144296,kg +3ed7e9e9-e68e-3690-8dea-1c4a7ea6ac20,SESCO,II.1.1,La Pampa,AR-L,annual,2016,naphtha combustion consumption by to the public,378.1771634048099,TJ,N2O,0.6,kg/TJ,226.90629804288594,kg +c4cf38dd-1380-3358-9d00-57574dd48b7d,SESCO,II.1.1,Mendoza,AR-M,annual,2016,naphtha combustion consumption by to the public,7.077729983554999,TJ,CO2,73300.0,kg/TJ,518797.60779458145,kg +3ca391bb-0dab-3973-af88-cafa2efc4866,SESCO,II.1.1,Mendoza,AR-M,annual,2016,naphtha combustion consumption by to the public,7.077729983554999,TJ,CH4,3.0,kg/TJ,21.233189950664997,kg +cab285eb-dde9-32b3-bccc-6d4f1b86d5d1,SESCO,II.1.1,Mendoza,AR-M,annual,2016,naphtha combustion consumption by to the public,7.077729983554999,TJ,N2O,0.6,kg/TJ,4.246637990132999,kg +98079c56-3080-3855-8452-df70ce9928cc,SESCO,II.1.1,Neuquén,AR-Q,annual,2016,naphtha combustion consumption by to the public,545.6502469826099,TJ,CO2,73300.0,kg/TJ,39996163.10382531,kg +e239fd05-883f-3b87-869f-be10ff14b802,SESCO,II.1.1,Neuquén,AR-Q,annual,2016,naphtha combustion consumption by to the public,545.6502469826099,TJ,CH4,3.0,kg/TJ,1636.9507409478297,kg +9ec88111-e746-346c-a5fe-d16f4c178ead,SESCO,II.1.1,Neuquén,AR-Q,annual,2016,naphtha combustion consumption by to the public,545.6502469826099,TJ,N2O,0.6,kg/TJ,327.39014818956593,kg +d29173f8-cc26-38f8-be84-28891389e42e,SESCO,II.1.1,Rio Negro,AR-R,annual,2016,naphtha combustion consumption by to the public,1154.644024768465,TJ,CO2,73300.0,kg/TJ,84635407.01552849,kg +74c1457e-3ac0-3382-8f56-1c331b911697,SESCO,II.1.1,Rio Negro,AR-R,annual,2016,naphtha combustion consumption by to the public,1154.644024768465,TJ,CH4,3.0,kg/TJ,3463.932074305395,kg +f5d610cf-8382-3625-8df8-ec757dbf6103,SESCO,II.1.1,Rio Negro,AR-R,annual,2016,naphtha combustion consumption by to the public,1154.644024768465,TJ,N2O,0.6,kg/TJ,692.7864148610789,kg +a16b6a41-0dd6-34b7-b971-ce8dc9dfcd9d,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2016,naphtha combustion consumption by to the public,781.1642164283649,TJ,CO2,73300.0,kg/TJ,57259337.06419914,kg +d607672a-b61a-3742-89a1-4dd12c6cd865,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2016,naphtha combustion consumption by to the public,781.1642164283649,TJ,CH4,3.0,kg/TJ,2343.4926492850946,kg +9129d278-d878-3cf2-8b82-e77e3585bcac,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2016,naphtha combustion consumption by to the public,781.1642164283649,TJ,N2O,0.6,kg/TJ,468.6985298570189,kg +cc97ae3a-2b78-39b3-8e57-cde2d2ddd0de,SESCO,II.1.1,Santa Fe,AR-S,annual,2016,naphtha combustion consumption by to the public,548.203569965975,TJ,CO2,73300.0,kg/TJ,40183321.67850597,kg +8f8650a3-151e-3981-91a2-153a44420961,SESCO,II.1.1,Santa Fe,AR-S,annual,2016,naphtha combustion consumption by to the public,548.203569965975,TJ,CH4,3.0,kg/TJ,1644.610709897925,kg +9c0dd4fe-87aa-3850-9d18-5e51b9d44a50,SESCO,II.1.1,Santa Fe,AR-S,annual,2016,naphtha combustion consumption by to the public,548.203569965975,TJ,N2O,0.6,kg/TJ,328.922141979585,kg +0e275928-51de-325a-b6f9-162cffa77a90,SESCO,II.1.1,Buenos Aires,AR-B,annual,2016,naphtha combustion consumption by to the public,1025.670170858025,TJ,CO2,73300.0,kg/TJ,75181623.52389322,kg +3a869fc9-7819-3880-a8b6-5eeb31f28ca5,SESCO,II.1.1,Buenos Aires,AR-B,annual,2016,naphtha combustion consumption by to the public,1025.670170858025,TJ,CH4,3.0,kg/TJ,3077.0105125740747,kg +e9420829-4bdb-3134-b6eb-241dbf452d50,SESCO,II.1.1,Buenos Aires,AR-B,annual,2016,naphtha combustion consumption by to the public,1025.670170858025,TJ,N2O,0.6,kg/TJ,615.4021025148149,kg +85274f9d-dc32-3905-ab33-c0f08811ab20,SESCO,II.1.1,Capital Federal,AR-C,annual,2016,naphtha combustion consumption by to the public,267.75578309788,TJ,CO2,73300.0,kg/TJ,19626498.901074603,kg +f85bff17-a307-3201-8cc5-6375cb443bda,SESCO,II.1.1,Capital Federal,AR-C,annual,2016,naphtha combustion consumption by to the public,267.75578309788,TJ,CH4,3.0,kg/TJ,803.26734929364,kg +b7fac903-77bb-3367-b124-b5763eddcad2,SESCO,II.1.1,Capital Federal,AR-C,annual,2016,naphtha combustion consumption by to the public,267.75578309788,TJ,N2O,0.6,kg/TJ,160.653469858728,kg +bb387bcf-a620-3824-a0cb-1cd9e6b48212,SESCO,II.1.1,Chubut,AR-U,annual,2016,naphtha combustion consumption by to the public,283.197536670895,TJ,CO2,73300.0,kg/TJ,20758379.437976602,kg +8225079b-f3ef-3bec-b8a8-23bbb936d491,SESCO,II.1.1,Chubut,AR-U,annual,2016,naphtha combustion consumption by to the public,283.197536670895,TJ,CH4,3.0,kg/TJ,849.5926100126849,kg +40181adc-b5af-35b8-8688-562c8075fac3,SESCO,II.1.1,Chubut,AR-U,annual,2016,naphtha combustion consumption by to the public,283.197536670895,TJ,N2O,0.6,kg/TJ,169.91852200253697,kg +1acd302f-0e5d-3c57-9e8d-f1c2b9d05700,SESCO,II.1.1,Córdoba,AR-X,annual,2016,naphtha combustion consumption by to the public,117.239968755525,TJ,CO2,73300.0,kg/TJ,8593689.709779982,kg +bcfb02a8-53c1-396b-8beb-8c5283ec6c3a,SESCO,II.1.1,Córdoba,AR-X,annual,2016,naphtha combustion consumption by to the public,117.239968755525,TJ,CH4,3.0,kg/TJ,351.719906266575,kg +989d3789-4dc3-3a1b-8915-8c6f0e7eea4f,SESCO,II.1.1,Córdoba,AR-X,annual,2016,naphtha combustion consumption by to the public,117.239968755525,TJ,N2O,0.6,kg/TJ,70.343981253315,kg +eb10f5a5-943a-36c2-8e00-c272a4ca52f0,SESCO,II.1.1,Entre Rios,AR-E,annual,2016,naphtha combustion consumption by to the public,46.33223207035499,TJ,CO2,73300.0,kg/TJ,3396152.610757021,kg +981d0e15-86a9-35d4-9134-d2960db88e09,SESCO,II.1.1,Entre Rios,AR-E,annual,2016,naphtha combustion consumption by to the public,46.33223207035499,TJ,CH4,3.0,kg/TJ,138.99669621106497,kg +504e77c0-1ea4-3d9e-97d8-fd594964d24b,SESCO,II.1.1,Entre Rios,AR-E,annual,2016,naphtha combustion consumption by to the public,46.33223207035499,TJ,N2O,0.6,kg/TJ,27.799339242212994,kg +85f00818-52d0-3b04-b16d-1e6dc1689af3,SESCO,II.1.1,La Pampa,AR-L,annual,2016,naphtha combustion consumption by to the public,130.26821976784,TJ,CO2,73300.0,kg/TJ,9548660.508982673,kg +c5168855-e47d-3b16-bec3-4b153c31dabf,SESCO,II.1.1,La Pampa,AR-L,annual,2016,naphtha combustion consumption by to the public,130.26821976784,TJ,CH4,3.0,kg/TJ,390.80465930352,kg +555bbe37-fefc-3b27-9f78-c0bf47c8d36b,SESCO,II.1.1,La Pampa,AR-L,annual,2016,naphtha combustion consumption by to the public,130.26821976784,TJ,N2O,0.6,kg/TJ,78.160931860704,kg +74f1e21e-033f-36a9-b955-4c608463a938,SESCO,II.1.1,Mendoza,AR-M,annual,2016,naphtha combustion consumption by to the public,2.0651118711299996,TJ,CO2,73300.0,kg/TJ,151372.70015382898,kg +8c3d6681-9e5e-3c6e-a2e2-ff66a92f9810,SESCO,II.1.1,Mendoza,AR-M,annual,2016,naphtha combustion consumption by to the public,2.0651118711299996,TJ,CH4,3.0,kg/TJ,6.195335613389998,kg +ee219e03-9d3e-3950-b8e1-90413a60fe8c,SESCO,II.1.1,Mendoza,AR-M,annual,2016,naphtha combustion consumption by to the public,2.0651118711299996,TJ,N2O,0.6,kg/TJ,1.2390671226779997,kg +6102fa6b-833f-3e1c-8cf7-0890263727b3,SESCO,II.1.1,Neuquén,AR-Q,annual,2016,naphtha combustion consumption by to the public,238.29184862059498,TJ,CO2,73300.0,kg/TJ,17466792.503889613,kg +a0cfbc7d-c297-3d6c-a495-f163e55dbb8f,SESCO,II.1.1,Neuquén,AR-Q,annual,2016,naphtha combustion consumption by to the public,238.29184862059498,TJ,CH4,3.0,kg/TJ,714.875545861785,kg +4c390408-99c7-3f29-8c4f-1d288b5c1960,SESCO,II.1.1,Neuquén,AR-Q,annual,2016,naphtha combustion consumption by to the public,238.29184862059498,TJ,N2O,0.6,kg/TJ,142.97510917235698,kg +375f1135-5f7a-370e-aa11-3b17c3700274,SESCO,II.1.1,Rio Negro,AR-R,annual,2016,naphtha combustion consumption by to the public,268.34276721867997,TJ,CO2,73300.0,kg/TJ,19669524.837129243,kg +d60a0a41-f1e3-39b8-aec3-ae3ebd38e0b0,SESCO,II.1.1,Rio Negro,AR-R,annual,2016,naphtha combustion consumption by to the public,268.34276721867997,TJ,CH4,3.0,kg/TJ,805.02830165604,kg +98f8b8aa-abef-32b4-8c6c-f524829ce83d,SESCO,II.1.1,Rio Negro,AR-R,annual,2016,naphtha combustion consumption by to the public,268.34276721867997,TJ,N2O,0.6,kg/TJ,161.00566033120796,kg +422e1bd6-7245-3c92-afbc-46d837cd451b,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2016,naphtha combustion consumption by to the public,174.15058907554,TJ,CO2,73300.0,kg/TJ,12765238.179237083,kg +936cfd93-fb0c-3111-a605-a4b5c1c61ebd,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2016,naphtha combustion consumption by to the public,174.15058907554,TJ,CH4,3.0,kg/TJ,522.4517672266201,kg +d48e8d8e-ebad-3624-abb4-faf997ecbb9c,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2016,naphtha combustion consumption by to the public,174.15058907554,TJ,N2O,0.6,kg/TJ,104.490353445324,kg +2e9ccd23-166a-3d13-be51-7e06e2ee2b27,SESCO,II.1.1,Santa Fe,AR-S,annual,2016,naphtha combustion consumption by to the public,190.17524947420998,TJ,CO2,73300.0,kg/TJ,13939845.786459591,kg +753996e5-01e5-3140-bfdd-977b44cf8ca6,SESCO,II.1.1,Santa Fe,AR-S,annual,2016,naphtha combustion consumption by to the public,190.17524947420998,TJ,CH4,3.0,kg/TJ,570.5257484226299,kg +01f11c88-f8f3-3afd-8289-48383365f851,SESCO,II.1.1,Santa Fe,AR-S,annual,2016,naphtha combustion consumption by to the public,190.17524947420998,TJ,N2O,0.6,kg/TJ,114.10514968452598,kg +8147c13d-9a44-3f7c-8d7f-34b6ad3fad39,SESCO,II.1.1,Buenos Aires,AR-B,annual,2016,naphtha combustion consumption by to the public,383.99154486000003,TJ,CO2,73300.0,kg/TJ,28146580.238238003,kg +632d7a7c-1f53-3632-a982-3ddc28b12bbf,SESCO,II.1.1,Buenos Aires,AR-B,annual,2016,naphtha combustion consumption by to the public,383.99154486000003,TJ,CH4,3.0,kg/TJ,1151.9746345800002,kg +0306d4fe-59b2-3567-a80c-81368c53b8ec,SESCO,II.1.1,Buenos Aires,AR-B,annual,2016,naphtha combustion consumption by to the public,383.99154486000003,TJ,N2O,0.6,kg/TJ,230.394926916,kg +3c32c38a-a22b-3088-8de6-a8a9387f4754,SESCO,II.1.1,Capital Federal,AR-C,annual,2016,naphtha combustion consumption by to the public,36.93047435,TJ,CO2,73300.0,kg/TJ,2707003.7698549996,kg +1279d7ab-96d8-3659-b052-9abf33a72b58,SESCO,II.1.1,Capital Federal,AR-C,annual,2016,naphtha combustion consumption by to the public,36.93047435,TJ,CH4,3.0,kg/TJ,110.79142304999999,kg +82853801-840f-3925-886c-3a4fdffacc36,SESCO,II.1.1,Capital Federal,AR-C,annual,2016,naphtha combustion consumption by to the public,36.93047435,TJ,N2O,0.6,kg/TJ,22.15828461,kg +624a1be1-4576-3614-b259-4421d2347140,SESCO,II.1.1,Corrientes,AR-W,annual,2016,naphtha combustion consumption by to the public,3.7814853999999998,TJ,CO2,73300.0,kg/TJ,277182.87982,kg +e6b7c982-f77f-3ef5-9ab4-f6b2379078b2,SESCO,II.1.1,Corrientes,AR-W,annual,2016,naphtha combustion consumption by to the public,3.7814853999999998,TJ,CH4,3.0,kg/TJ,11.3444562,kg +8b1dfc12-dda0-3723-8147-35a0fd1f7ca0,SESCO,II.1.1,Corrientes,AR-W,annual,2016,naphtha combustion consumption by to the public,3.7814853999999998,TJ,N2O,0.6,kg/TJ,2.26889124,kg +6756ccc6-5040-3e81-b505-bae1865f3e24,SESCO,II.1.1,Córdoba,AR-X,annual,2016,naphtha combustion consumption by to the public,120.51959919999997,TJ,CO2,73300.0,kg/TJ,8834086.621359998,kg +5659a670-f367-33ef-934b-7b9f130bb660,SESCO,II.1.1,Córdoba,AR-X,annual,2016,naphtha combustion consumption by to the public,120.51959919999997,TJ,CH4,3.0,kg/TJ,361.55879759999993,kg +bb87f36c-0686-375a-84c3-c4e9eda46464,SESCO,II.1.1,Córdoba,AR-X,annual,2016,naphtha combustion consumption by to the public,120.51959919999997,TJ,N2O,0.6,kg/TJ,72.31175951999998,kg +589e96d6-11ce-38f2-9500-fb2d5c23d67e,SESCO,II.1.1,Entre Rios,AR-E,annual,2016,naphtha combustion consumption by to the public,33.270972349999994,TJ,CO2,73300.0,kg/TJ,2438762.2732549994,kg +0aa32927-e093-3ad6-a305-3f1f53f4ea4d,SESCO,II.1.1,Entre Rios,AR-E,annual,2016,naphtha combustion consumption by to the public,33.270972349999994,TJ,CH4,3.0,kg/TJ,99.81291704999998,kg +48900a53-8778-333b-b045-6f26595b3dbf,SESCO,II.1.1,Entre Rios,AR-E,annual,2016,naphtha combustion consumption by to the public,33.270972349999994,TJ,N2O,0.6,kg/TJ,19.962583409999997,kg +95196042-7fd0-3154-996a-9ca1d589dc8c,SESCO,II.1.1,Santa Fe,AR-S,annual,2016,naphtha combustion consumption by to the public,20.5542029,TJ,CO2,73300.0,kg/TJ,1506623.07257,kg +ce1b36eb-35cb-32b4-a9d7-bc12b1217120,SESCO,II.1.1,Santa Fe,AR-S,annual,2016,naphtha combustion consumption by to the public,20.5542029,TJ,CH4,3.0,kg/TJ,61.6626087,kg +966164d9-77f9-3b50-afc4-3e643f07162f,SESCO,II.1.1,Santa Fe,AR-S,annual,2016,naphtha combustion consumption by to the public,20.5542029,TJ,N2O,0.6,kg/TJ,12.332521739999999,kg +ba00e66f-f8e1-34b7-85d6-85306fe7d059,SESCO,II.1.1,Buenos Aires,AR-B,annual,2016,naphtha combustion consumption by to the public,48.49145108499999,TJ,CO2,73300.0,kg/TJ,3554423.364530499,kg +6e6d44e5-1a15-3dda-88ef-8004affd361a,SESCO,II.1.1,Buenos Aires,AR-B,annual,2016,naphtha combustion consumption by to the public,48.49145108499999,TJ,CH4,3.0,kg/TJ,145.47435325499995,kg +9f271321-3e88-36ce-b82a-af58111b4e84,SESCO,II.1.1,Buenos Aires,AR-B,annual,2016,naphtha combustion consumption by to the public,48.49145108499999,TJ,N2O,0.6,kg/TJ,29.09487065099999,kg +78517e23-12da-3bc1-938e-94b2d6539b86,SESCO,II.1.1,Capital Federal,AR-C,annual,2016,naphtha combustion consumption by to the public,2.9885933,TJ,CO2,73300.0,kg/TJ,219063.88888999997,kg +dcdd8d6a-18db-3bfc-ae6c-90221cb98a80,SESCO,II.1.1,Capital Federal,AR-C,annual,2016,naphtha combustion consumption by to the public,2.9885933,TJ,CH4,3.0,kg/TJ,8.9657799,kg +869dfcc2-c329-30d6-a3e4-0931af0ec873,SESCO,II.1.1,Capital Federal,AR-C,annual,2016,naphtha combustion consumption by to the public,2.9885933,TJ,N2O,0.6,kg/TJ,1.7931559799999999,kg +a689ad80-3674-3b52-b9de-329cbb1294c7,SESCO,II.1.1,Córdoba,AR-X,annual,2016,naphtha combustion consumption by to the public,7.1360288999999995,TJ,CO2,73300.0,kg/TJ,523070.91836999997,kg +ff0dd5d0-c379-34c0-be57-98d64a98bffd,SESCO,II.1.1,Córdoba,AR-X,annual,2016,naphtha combustion consumption by to the public,7.1360288999999995,TJ,CH4,3.0,kg/TJ,21.4080867,kg +a504d4e7-c5e0-37b3-ba56-2bc74f6c0fa6,SESCO,II.1.1,Córdoba,AR-X,annual,2016,naphtha combustion consumption by to the public,7.1360288999999995,TJ,N2O,0.6,kg/TJ,4.2816173399999995,kg +fa6f6a4f-fe97-32f1-b96d-930bf52acd0b,SESCO,II.1.1,Entre Rios,AR-E,annual,2016,naphtha combustion consumption by to the public,2.833064465,TJ,CO2,73300.0,kg/TJ,207663.6252845,kg +6dc7574b-91be-3997-929a-586b5e2f2fdf,SESCO,II.1.1,Entre Rios,AR-E,annual,2016,naphtha combustion consumption by to the public,2.833064465,TJ,CH4,3.0,kg/TJ,8.499193395,kg +8a643e85-ebff-3074-89ba-4192d44ed55e,SESCO,II.1.1,Entre Rios,AR-E,annual,2016,naphtha combustion consumption by to the public,2.833064465,TJ,N2O,0.6,kg/TJ,1.699838679,kg +b3de75f4-cc86-3261-9cff-52c03ca828af,SESCO,II.1.1,Santa Fe,AR-S,annual,2016,naphtha combustion consumption by to the public,2.0127261,TJ,CO2,73300.0,kg/TJ,147532.82313,kg +37dc1568-74ff-3bce-bec2-425f17853cac,SESCO,II.1.1,Santa Fe,AR-S,annual,2016,naphtha combustion consumption by to the public,2.0127261,TJ,CH4,3.0,kg/TJ,6.0381783,kg +5ec9ef8f-5edd-3bc2-9c62-62d94279b8df,SESCO,II.1.1,Santa Fe,AR-S,annual,2016,naphtha combustion consumption by to the public,2.0127261,TJ,N2O,0.6,kg/TJ,1.20763566,kg +e109ac60-080a-30f3-9b5f-c4ec64f03714,SESCO,II.1.1,Catamarca,AR-K,annual,2016,naphtha combustion consumption by to the public,265.700582378,TJ,CO2,73300.0,kg/TJ,19475852.688307397,kg +2e76dd3d-7873-375a-a929-561e33523747,SESCO,II.1.1,Catamarca,AR-K,annual,2016,naphtha combustion consumption by to the public,265.700582378,TJ,CH4,3.0,kg/TJ,797.1017471339999,kg +e5407c91-5576-378d-99f7-c8a8ba00302c,SESCO,II.1.1,Catamarca,AR-K,annual,2016,naphtha combustion consumption by to the public,265.700582378,TJ,N2O,0.6,kg/TJ,159.4203494268,kg +80e6cf73-069d-360c-a25d-e5c6ceb8f56f,SESCO,II.1.1,Chaco,AR-H,annual,2016,naphtha combustion consumption by to the public,92.6491369265,TJ,CO2,73300.0,kg/TJ,6791181.73671245,kg +f795ac9f-351c-3439-970f-aa817c5ad4dc,SESCO,II.1.1,Chaco,AR-H,annual,2016,naphtha combustion consumption by to the public,92.6491369265,TJ,CH4,3.0,kg/TJ,277.94741077950005,kg +414d89b5-52d4-3172-b3c6-0e32afa34c8b,SESCO,II.1.1,Chaco,AR-H,annual,2016,naphtha combustion consumption by to the public,92.6491369265,TJ,N2O,0.6,kg/TJ,55.5894821559,kg +0c5be58b-5cd2-3081-aca5-4478f02eb063,SESCO,II.1.1,Jujuy,AR-Y,annual,2016,naphtha combustion consumption by to the public,534.8392668849999,TJ,CO2,73300.0,kg/TJ,39203718.262670495,kg +0f26bbaa-eb09-33b8-9893-5b891acbacd4,SESCO,II.1.1,Jujuy,AR-Y,annual,2016,naphtha combustion consumption by to the public,534.8392668849999,TJ,CH4,3.0,kg/TJ,1604.5178006549997,kg +f2ba2740-51ad-3d84-b8fa-684fe1bcf1b5,SESCO,II.1.1,Jujuy,AR-Y,annual,2016,naphtha combustion consumption by to the public,534.8392668849999,TJ,N2O,0.6,kg/TJ,320.90356013099995,kg +c283312c-97de-3ca7-9841-dcf688222180,SESCO,II.1.1,La Rioja,AR-F,annual,2016,naphtha combustion consumption by to the public,451.165973489,TJ,CO2,73300.0,kg/TJ,33070465.8567437,kg +1edcb609-1f71-3240-9202-598b104303e8,SESCO,II.1.1,La Rioja,AR-F,annual,2016,naphtha combustion consumption by to the public,451.165973489,TJ,CH4,3.0,kg/TJ,1353.497920467,kg +315a618f-5fbf-38d2-bd5e-7b760cb912cd,SESCO,II.1.1,La Rioja,AR-F,annual,2016,naphtha combustion consumption by to the public,451.165973489,TJ,N2O,0.6,kg/TJ,270.6995840934,kg +92b2c62e-811d-313e-8281-93f5912b4107,SESCO,II.1.1,Salta,AR-A,annual,2016,naphtha combustion consumption by to the public,1059.3602629225,TJ,CO2,73300.0,kg/TJ,77651107.27221924,kg +be5aa2da-62e6-33a1-b3e0-479139ceeadc,SESCO,II.1.1,Salta,AR-A,annual,2016,naphtha combustion consumption by to the public,1059.3602629225,TJ,CH4,3.0,kg/TJ,3178.0807887675,kg +bc11236f-1703-372a-8190-09586ad9aa9b,SESCO,II.1.1,Salta,AR-A,annual,2016,naphtha combustion consumption by to the public,1059.3602629225,TJ,N2O,0.6,kg/TJ,635.6161577534999,kg +26905620-3400-3936-97f2-9d2b72331c6c,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2016,naphtha combustion consumption by to the public,511.2028484254999,TJ,CO2,73300.0,kg/TJ,37471168.789589144,kg +54b6cbe4-101d-34c0-b2fb-02eefe77641f,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2016,naphtha combustion consumption by to the public,511.2028484254999,TJ,CH4,3.0,kg/TJ,1533.6085452764996,kg +14ab1b4d-43ab-3adc-be4d-e497f979043a,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2016,naphtha combustion consumption by to the public,511.2028484254999,TJ,N2O,0.6,kg/TJ,306.7217090552999,kg +0f0abb7b-09e4-357f-9c9d-1cc7f1f5554b,SESCO,II.1.1,Tucuman,AR-T,annual,2016,naphtha combustion consumption by to the public,1952.5885887584998,TJ,CO2,73300.0,kg/TJ,143124743.55599803,kg +554216a5-e51e-3e3b-b114-7fb0f6d12b9f,SESCO,II.1.1,Tucuman,AR-T,annual,2016,naphtha combustion consumption by to the public,1952.5885887584998,TJ,CH4,3.0,kg/TJ,5857.765766275499,kg +56242675-1d5c-32e9-993f-3817011fd1b2,SESCO,II.1.1,Tucuman,AR-T,annual,2016,naphtha combustion consumption by to the public,1952.5885887584998,TJ,N2O,0.6,kg/TJ,1171.5531532551,kg +3b63e711-b3b6-3beb-b129-1aadf2eee120,SESCO,II.1.1,Catamarca,AR-K,annual,2016,naphtha combustion consumption by to the public,21.939934324,TJ,CO2,73300.0,kg/TJ,1608197.1859492,kg +fcba3fb4-0539-37d5-8d10-ce74b4a894c0,SESCO,II.1.1,Catamarca,AR-K,annual,2016,naphtha combustion consumption by to the public,21.939934324,TJ,CH4,3.0,kg/TJ,65.81980297199999,kg +ae5ea7f3-a5e2-3541-81b9-b3d83a2d1b40,SESCO,II.1.1,Catamarca,AR-K,annual,2016,naphtha combustion consumption by to the public,21.939934324,TJ,N2O,0.6,kg/TJ,13.163960594399999,kg +dc71eb2d-c4d8-3d14-bec7-be1dd3073698,SESCO,II.1.1,Chaco,AR-H,annual,2016,naphtha combustion consumption by to the public,1.4952115255,TJ,CO2,73300.0,kg/TJ,109599.00481915,kg +30d92d82-6e71-3fe3-8025-c9dfe1be08b4,SESCO,II.1.1,Chaco,AR-H,annual,2016,naphtha combustion consumption by to the public,1.4952115255,TJ,CH4,3.0,kg/TJ,4.4856345765,kg +3000353d-1cf0-3f58-9eab-2529dfb5a852,SESCO,II.1.1,Chaco,AR-H,annual,2016,naphtha combustion consumption by to the public,1.4952115255,TJ,N2O,0.6,kg/TJ,0.8971269153,kg +afacb7c6-cc86-396d-ae88-c6f8b36dbd9f,SESCO,II.1.1,Jujuy,AR-Y,annual,2016,naphtha combustion consumption by to the public,25.478977716499998,TJ,CO2,73300.0,kg/TJ,1867609.0666194498,kg +7fdc686c-e611-3dbf-b9ce-7cc520fd5a16,SESCO,II.1.1,Jujuy,AR-Y,annual,2016,naphtha combustion consumption by to the public,25.478977716499998,TJ,CH4,3.0,kg/TJ,76.43693314949999,kg +4e9054a6-896f-3ef4-816d-d48a2d225dbb,SESCO,II.1.1,Jujuy,AR-Y,annual,2016,naphtha combustion consumption by to the public,25.478977716499998,TJ,N2O,0.6,kg/TJ,15.287386629899999,kg +f393b90e-6d7c-3d73-9366-f8859a96ab04,SESCO,II.1.1,La Rioja,AR-F,annual,2016,naphtha combustion consumption by to the public,29.962782542,TJ,CO2,73300.0,kg/TJ,2196271.9603286,kg +3cc2029e-d603-36d3-9b56-4ec9cb45cd03,SESCO,II.1.1,La Rioja,AR-F,annual,2016,naphtha combustion consumption by to the public,29.962782542,TJ,CH4,3.0,kg/TJ,89.888347626,kg +bc81c90e-e049-3d2a-abb2-b1dd5b2d9639,SESCO,II.1.1,La Rioja,AR-F,annual,2016,naphtha combustion consumption by to the public,29.962782542,TJ,N2O,0.6,kg/TJ,17.9776695252,kg +6b9ad408-47bd-3540-a498-03a6d1fffb05,SESCO,II.1.1,Salta,AR-A,annual,2016,naphtha combustion consumption by to the public,59.469042209499996,TJ,CO2,73300.0,kg/TJ,4359080.79395635,kg +078bbf45-44ca-3c29-a03f-ff5919cbbc20,SESCO,II.1.1,Salta,AR-A,annual,2016,naphtha combustion consumption by to the public,59.469042209499996,TJ,CH4,3.0,kg/TJ,178.40712662849998,kg +c2b1098c-7d20-32c1-9c83-1e0e204f8ece,SESCO,II.1.1,Salta,AR-A,annual,2016,naphtha combustion consumption by to the public,59.469042209499996,TJ,N2O,0.6,kg/TJ,35.6814253257,kg +a8c183da-cf76-3d08-ac51-44a74f576c43,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2016,naphtha combustion consumption by to the public,39.912053604499995,TJ,CO2,73300.0,kg/TJ,2925553.5292098494,kg +93a735dd-6237-3e90-bede-d7c672484a36,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2016,naphtha combustion consumption by to the public,39.912053604499995,TJ,CH4,3.0,kg/TJ,119.73616081349999,kg +7a3753b7-d0a2-3470-9c67-1b05dfd49644,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2016,naphtha combustion consumption by to the public,39.912053604499995,TJ,N2O,0.6,kg/TJ,23.947232162699997,kg +ec9c3a72-9d00-3125-b242-21d12f34e682,SESCO,II.1.1,Tucuman,AR-T,annual,2016,naphtha combustion consumption by to the public,125.5938036815,TJ,CO2,73300.0,kg/TJ,9206025.80985395,kg +c82a800f-aa7a-3ccc-936c-04125efa3113,SESCO,II.1.1,Tucuman,AR-T,annual,2016,naphtha combustion consumption by to the public,125.5938036815,TJ,CH4,3.0,kg/TJ,376.78141104450003,kg +622b3bf8-ec6f-3f68-b8b0-2d77235cf028,SESCO,II.1.1,Tucuman,AR-T,annual,2016,naphtha combustion consumption by to the public,125.5938036815,TJ,N2O,0.6,kg/TJ,75.3562822089,kg +dda740c9-1b54-399b-b939-eb0fb56b185b,SESCO,II.1.1,Buenos Aires,AR-B,annual,2016,naphtha combustion consumption by to the public,46.84162559999999,TJ,CO2,73300.0,kg/TJ,3433491.1564799994,kg +641ba089-8987-3da8-bf68-1ec87e65128b,SESCO,II.1.1,Buenos Aires,AR-B,annual,2016,naphtha combustion consumption by to the public,46.84162559999999,TJ,CH4,3.0,kg/TJ,140.5248768,kg +3538125a-5b34-3753-86ac-b792aba5b615,SESCO,II.1.1,Buenos Aires,AR-B,annual,2016,naphtha combustion consumption by to the public,46.84162559999999,TJ,N2O,0.6,kg/TJ,28.104975359999994,kg +6d103023-c6d6-37f1-b298-373ae9613b9f,SESCO,II.1.1,Entre Rios,AR-E,annual,2016,naphtha combustion consumption by to the public,23.634283749999998,TJ,CO2,73300.0,kg/TJ,1732392.9988749998,kg +36b901e2-eb22-3db7-8cc2-468a0c6d8fb0,SESCO,II.1.1,Entre Rios,AR-E,annual,2016,naphtha combustion consumption by to the public,23.634283749999998,TJ,CH4,3.0,kg/TJ,70.90285125,kg +78ce7a66-4c43-3489-a56b-9694934b2f67,SESCO,II.1.1,Entre Rios,AR-E,annual,2016,naphtha combustion consumption by to the public,23.634283749999998,TJ,N2O,0.6,kg/TJ,14.180570249999999,kg +4781c67a-f53a-315d-a1f1-879888aca2dc,SESCO,II.1.1,Buenos Aires,AR-B,annual,2016,naphtha combustion consumption by to the public,14119.97499605,TJ,CO2,73300.0,kg/TJ,1034994167.210465,kg +a7c86875-afef-32bd-bf06-ba3cb0f01b80,SESCO,II.1.1,Buenos Aires,AR-B,annual,2016,naphtha combustion consumption by to the public,14119.97499605,TJ,CH4,3.0,kg/TJ,42359.92498815,kg +d2fd5842-032e-3d0d-af03-3ac8fda2a9e2,SESCO,II.1.1,Buenos Aires,AR-B,annual,2016,naphtha combustion consumption by to the public,14119.97499605,TJ,N2O,0.6,kg/TJ,8471.98499763,kg +5becb604-f42f-3fe7-bc2a-9370fe700de1,SESCO,II.1.1,Capital Federal,AR-C,annual,2016,naphtha combustion consumption by to the public,4276.738004,TJ,CO2,73300.0,kg/TJ,313484895.6932,kg +f04f6264-f862-3dae-aeaf-ebf6ad3da0dd,SESCO,II.1.1,Capital Federal,AR-C,annual,2016,naphtha combustion consumption by to the public,4276.738004,TJ,CH4,3.0,kg/TJ,12830.214012,kg +7bd832bb-1b8c-3153-898c-142a2fdfb0f5,SESCO,II.1.1,Capital Federal,AR-C,annual,2016,naphtha combustion consumption by to the public,4276.738004,TJ,N2O,0.6,kg/TJ,2566.0428024,kg +3335b9a1-a3dd-3a34-b681-329dfaaaa570,SESCO,II.1.1,Catamarca,AR-K,annual,2016,naphtha combustion consumption by to the public,56.44781834999999,TJ,CO2,73300.0,kg/TJ,4137625.085054999,kg +75df5a7c-066b-3df8-be70-885de9acba3e,SESCO,II.1.1,Catamarca,AR-K,annual,2016,naphtha combustion consumption by to the public,56.44781834999999,TJ,CH4,3.0,kg/TJ,169.34345505,kg +812ad758-f53d-32f1-9fb1-294f7cc133ea,SESCO,II.1.1,Catamarca,AR-K,annual,2016,naphtha combustion consumption by to the public,56.44781834999999,TJ,N2O,0.6,kg/TJ,33.86869100999999,kg +ffd45504-db2e-3591-ae2b-5661c4751a36,SESCO,II.1.1,Chaco,AR-H,annual,2016,naphtha combustion consumption by to the public,824.5467922999999,TJ,CO2,73300.0,kg/TJ,60439279.87558999,kg +da27b3f1-5af8-3244-b167-45246a5156e5,SESCO,II.1.1,Chaco,AR-H,annual,2016,naphtha combustion consumption by to the public,824.5467922999999,TJ,CH4,3.0,kg/TJ,2473.6403769,kg +2db3d685-7cc7-3cd3-a0af-1d8c8128900f,SESCO,II.1.1,Chaco,AR-H,annual,2016,naphtha combustion consumption by to the public,824.5467922999999,TJ,N2O,0.6,kg/TJ,494.7280753799999,kg +e9acbbc3-58f2-3019-82cc-860e9150d372,SESCO,II.1.1,Corrientes,AR-W,annual,2016,naphtha combustion consumption by to the public,835.1593481,TJ,CO2,73300.0,kg/TJ,61217180.21573,kg +253dedf1-f4dd-329e-bf25-27b69b8643bf,SESCO,II.1.1,Corrientes,AR-W,annual,2016,naphtha combustion consumption by to the public,835.1593481,TJ,CH4,3.0,kg/TJ,2505.4780443,kg +e407a7d0-4fa9-3456-b841-7511b91d3599,SESCO,II.1.1,Corrientes,AR-W,annual,2016,naphtha combustion consumption by to the public,835.1593481,TJ,N2O,0.6,kg/TJ,501.09560885999997,kg +26e58ee9-b1ba-3cc5-892b-06eac2ceec11,SESCO,II.1.1,Córdoba,AR-X,annual,2016,naphtha combustion consumption by to the public,2921.89887605,TJ,CO2,73300.0,kg/TJ,214175187.614465,kg +7a4b57fc-441a-39f2-a838-785801e54fd5,SESCO,II.1.1,Córdoba,AR-X,annual,2016,naphtha combustion consumption by to the public,2921.89887605,TJ,CH4,3.0,kg/TJ,8765.69662815,kg +1969fdad-b9c8-37e4-a58f-8d9a5325e039,SESCO,II.1.1,Córdoba,AR-X,annual,2016,naphtha combustion consumption by to the public,2921.89887605,TJ,N2O,0.6,kg/TJ,1753.13932563,kg +4c9d7539-b311-37d8-b736-791a6d1f2461,SESCO,II.1.1,Entre Rios,AR-E,annual,2016,naphtha combustion consumption by to the public,836.3791820999999,TJ,CO2,73300.0,kg/TJ,61306594.04792999,kg +6bb7c0e0-535d-3b4a-92ec-71d4068ddf9f,SESCO,II.1.1,Entre Rios,AR-E,annual,2016,naphtha combustion consumption by to the public,836.3791820999999,TJ,CH4,3.0,kg/TJ,2509.1375462999995,kg +c98175b5-f6f6-3eaf-8537-244d237fa2d4,SESCO,II.1.1,Entre Rios,AR-E,annual,2016,naphtha combustion consumption by to the public,836.3791820999999,TJ,N2O,0.6,kg/TJ,501.8275092599999,kg +4d3d9a06-f1f6-341c-bb9b-6a6a4b40edbb,SESCO,II.1.1,Formosa,AR-P,annual,2016,naphtha combustion consumption by to the public,389.98092979999996,TJ,CO2,73300.0,kg/TJ,28585602.154339995,kg +fef95a91-6c4a-3796-a709-82293973299a,SESCO,II.1.1,Formosa,AR-P,annual,2016,naphtha combustion consumption by to the public,389.98092979999996,TJ,CH4,3.0,kg/TJ,1169.9427893999998,kg +061b881f-cb86-344e-9407-9e29bf63b6e6,SESCO,II.1.1,Formosa,AR-P,annual,2016,naphtha combustion consumption by to the public,389.98092979999996,TJ,N2O,0.6,kg/TJ,233.98855787999997,kg +7df6f4f5-9e16-3eba-807e-9d4dd30efea4,SESCO,II.1.1,Jujuy,AR-Y,annual,2016,naphtha combustion consumption by to the public,174.8632039,TJ,CO2,73300.0,kg/TJ,12817472.84587,kg +b0a2a781-a9d6-300b-9ec7-1d5ace91e066,SESCO,II.1.1,Jujuy,AR-Y,annual,2016,naphtha combustion consumption by to the public,174.8632039,TJ,CH4,3.0,kg/TJ,524.5896117,kg +7a7ec6d8-30d5-3d23-8240-c2bf04f7daeb,SESCO,II.1.1,Jujuy,AR-Y,annual,2016,naphtha combustion consumption by to the public,174.8632039,TJ,N2O,0.6,kg/TJ,104.91792234,kg +69a950bd-6e07-3cc2-8af1-f1289ca37b36,SESCO,II.1.1,La Pampa,AR-L,annual,2016,naphtha combustion consumption by to the public,292.18073884999995,TJ,CO2,73300.0,kg/TJ,21416848.157704998,kg +36cd83e8-3e06-36b5-861f-cb57fdf217ce,SESCO,II.1.1,La Pampa,AR-L,annual,2016,naphtha combustion consumption by to the public,292.18073884999995,TJ,CH4,3.0,kg/TJ,876.5422165499999,kg +51e27f9e-e715-3f4a-8c62-de562a035162,SESCO,II.1.1,La Pampa,AR-L,annual,2016,naphtha combustion consumption by to the public,292.18073884999995,TJ,N2O,0.6,kg/TJ,175.30844330999997,kg +d7a4fb6f-37de-3fae-9b92-003d6adc5068,SESCO,II.1.1,La Rioja,AR-F,annual,2016,naphtha combustion consumption by to the public,273.76124545,TJ,CO2,73300.0,kg/TJ,20066699.291485,kg +cf9ec597-d03c-3f23-91b9-d8a1a06e3e70,SESCO,II.1.1,La Rioja,AR-F,annual,2016,naphtha combustion consumption by to the public,273.76124545,TJ,CH4,3.0,kg/TJ,821.28373635,kg +79d9fd9f-103f-3ff4-8098-2c4bc8eba1e1,SESCO,II.1.1,La Rioja,AR-F,annual,2016,naphtha combustion consumption by to the public,273.76124545,TJ,N2O,0.6,kg/TJ,164.25674726999998,kg +19a36811-25a5-3ecd-9b38-5d0e7d8dec6e,SESCO,II.1.1,Mendoza,AR-M,annual,2016,naphtha combustion consumption by to the public,813.3853111999999,TJ,CO2,73300.0,kg/TJ,59621143.310959995,kg +6c6c024d-6233-3503-a491-f6d5557d25a1,SESCO,II.1.1,Mendoza,AR-M,annual,2016,naphtha combustion consumption by to the public,813.3853111999999,TJ,CH4,3.0,kg/TJ,2440.1559336,kg +666cf79f-c376-3743-9615-847cd9b48420,SESCO,II.1.1,Mendoza,AR-M,annual,2016,naphtha combustion consumption by to the public,813.3853111999999,TJ,N2O,0.6,kg/TJ,488.03118671999994,kg +7f46c118-0568-3c6a-a550-b0d8a4941045,SESCO,II.1.1,Misiones,AR-N,annual,2016,naphtha combustion consumption by to the public,1076.9914385999998,TJ,CO2,73300.0,kg/TJ,78943472.44937998,kg +8c88c68d-b9dc-3beb-84c7-4dacbd5cc1ea,SESCO,II.1.1,Misiones,AR-N,annual,2016,naphtha combustion consumption by to the public,1076.9914385999998,TJ,CH4,3.0,kg/TJ,3230.974315799999,kg +8477999c-6802-3b73-b382-2e477cd7cf6f,SESCO,II.1.1,Misiones,AR-N,annual,2016,naphtha combustion consumption by to the public,1076.9914385999998,TJ,N2O,0.6,kg/TJ,646.1948631599998,kg +be1fae81-9191-35b4-a1ba-1127558a0e27,SESCO,II.1.1,Neuquén,AR-Q,annual,2016,naphtha combustion consumption by to the public,430.63189785,TJ,CO2,73300.0,kg/TJ,31565318.112405,kg +36802708-7a30-382a-96fb-054cb377b3d7,SESCO,II.1.1,Neuquén,AR-Q,annual,2016,naphtha combustion consumption by to the public,430.63189785,TJ,CH4,3.0,kg/TJ,1291.89569355,kg +b2cf69c2-9abb-38f7-8572-64c7222a9a04,SESCO,II.1.1,Neuquén,AR-Q,annual,2016,naphtha combustion consumption by to the public,430.63189785,TJ,N2O,0.6,kg/TJ,258.37913870999995,kg +4771e8a4-3d53-39fd-8893-f309a668cdf0,SESCO,II.1.1,Rio Negro,AR-R,annual,2016,naphtha combustion consumption by to the public,139.9149598,TJ,CO2,73300.0,kg/TJ,10255766.55334,kg +6d3c0375-5c79-3f9a-a7d9-49b42c9001c9,SESCO,II.1.1,Rio Negro,AR-R,annual,2016,naphtha combustion consumption by to the public,139.9149598,TJ,CH4,3.0,kg/TJ,419.74487939999995,kg +835da01d-a1f4-36ff-8ac6-49325dede797,SESCO,II.1.1,Rio Negro,AR-R,annual,2016,naphtha combustion consumption by to the public,139.9149598,TJ,N2O,0.6,kg/TJ,83.94897587999999,kg +316121be-bb57-3323-8c1d-e3afd7be84cc,SESCO,II.1.1,Salta,AR-A,annual,2016,naphtha combustion consumption by to the public,228.71887499999997,TJ,CO2,73300.0,kg/TJ,16765093.537499998,kg +d0a7a704-f9fd-37d8-a44d-7cdfa0db2234,SESCO,II.1.1,Salta,AR-A,annual,2016,naphtha combustion consumption by to the public,228.71887499999997,TJ,CH4,3.0,kg/TJ,686.1566249999998,kg +5a139d43-fab2-3bf2-bbb0-2e0f1df5a919,SESCO,II.1.1,Salta,AR-A,annual,2016,naphtha combustion consumption by to the public,228.71887499999997,TJ,N2O,0.6,kg/TJ,137.23132499999997,kg +24a230bd-cd8f-339b-9689-3295731ada41,SESCO,II.1.1,San Juan,AR-J,annual,2016,naphtha combustion consumption by to the public,166.14139079999998,TJ,CO2,73300.0,kg/TJ,12178163.94564,kg +5f921e82-971b-36af-aab2-9027703efb49,SESCO,II.1.1,San Juan,AR-J,annual,2016,naphtha combustion consumption by to the public,166.14139079999998,TJ,CH4,3.0,kg/TJ,498.4241724,kg +7a0629ee-705d-3066-9f68-e991e7bd56ed,SESCO,II.1.1,San Juan,AR-J,annual,2016,naphtha combustion consumption by to the public,166.14139079999998,TJ,N2O,0.6,kg/TJ,99.68483447999999,kg +8dad52f4-3a98-3ff1-a811-5d096469c4a4,SESCO,II.1.1,San Luis,AR-D,annual,2016,naphtha combustion consumption by to the public,30.678825099999997,TJ,CO2,73300.0,kg/TJ,2248757.87983,kg +3f38f00a-5453-320b-96b1-4db9ff15bb9b,SESCO,II.1.1,San Luis,AR-D,annual,2016,naphtha combustion consumption by to the public,30.678825099999997,TJ,CH4,3.0,kg/TJ,92.03647529999999,kg +db697a72-6d47-3a1b-aaf3-b334468fef89,SESCO,II.1.1,San Luis,AR-D,annual,2016,naphtha combustion consumption by to the public,30.678825099999997,TJ,N2O,0.6,kg/TJ,18.40729506,kg +d255460c-d9cf-3956-83b2-44131e264600,SESCO,II.1.1,Santa Fe,AR-S,annual,2016,naphtha combustion consumption by to the public,3257.0482675499998,TJ,CO2,73300.0,kg/TJ,238741638.01141497,kg +f6075be7-132e-33ff-b718-85c0ef09ef51,SESCO,II.1.1,Santa Fe,AR-S,annual,2016,naphtha combustion consumption by to the public,3257.0482675499998,TJ,CH4,3.0,kg/TJ,9771.14480265,kg +0b3bba4e-a4e5-36c4-a936-eb515a75c46b,SESCO,II.1.1,Santa Fe,AR-S,annual,2016,naphtha combustion consumption by to the public,3257.0482675499998,TJ,N2O,0.6,kg/TJ,1954.2289605299998,kg +87b4cfdb-98e1-332e-87a7-fb12cf929dd9,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2016,naphtha combustion consumption by to the public,330.78848494999994,TJ,CO2,73300.0,kg/TJ,24246795.946834996,kg +ec75ccb0-31e5-3d22-aba1-ff2913cdf469,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2016,naphtha combustion consumption by to the public,330.78848494999994,TJ,CH4,3.0,kg/TJ,992.3654548499999,kg +06ee4506-d3f9-3472-8e7c-3d94f87cd616,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2016,naphtha combustion consumption by to the public,330.78848494999994,TJ,N2O,0.6,kg/TJ,198.47309096999996,kg +264e5cde-f924-32cc-80c0-ad4aca8991f4,SESCO,II.1.1,Tucuman,AR-T,annual,2016,naphtha combustion consumption by to the public,724.2154458,TJ,CO2,73300.0,kg/TJ,53084992.17714,kg +83be0bb7-122c-3b0b-aa4d-3a3433d9800e,SESCO,II.1.1,Tucuman,AR-T,annual,2016,naphtha combustion consumption by to the public,724.2154458,TJ,CH4,3.0,kg/TJ,2172.6463374,kg +7ff71c66-bf7b-3fb7-ba96-d7e81a9eee3c,SESCO,II.1.1,Tucuman,AR-T,annual,2016,naphtha combustion consumption by to the public,724.2154458,TJ,N2O,0.6,kg/TJ,434.52926748,kg +ff57b31e-da8c-3372-911e-569b24cabbed,SESCO,II.1.1,Buenos Aires,AR-B,annual,2016,naphtha combustion consumption by to the public,7480.78448425,TJ,CO2,73300.0,kg/TJ,548341502.695525,kg +5f1aaa93-3d33-3154-a1a4-0cc840bef448,SESCO,II.1.1,Buenos Aires,AR-B,annual,2016,naphtha combustion consumption by to the public,7480.78448425,TJ,CH4,3.0,kg/TJ,22442.35345275,kg +b949cfc1-0fc7-329a-84a0-e6e299903404,SESCO,II.1.1,Buenos Aires,AR-B,annual,2016,naphtha combustion consumption by to the public,7480.78448425,TJ,N2O,0.6,kg/TJ,4488.47069055,kg +2fa04eec-b308-3327-bef5-6217301f006b,SESCO,II.1.1,Capital Federal,AR-C,annual,2016,naphtha combustion consumption by to the public,3167.7564187499997,TJ,CO2,73300.0,kg/TJ,232196545.494375,kg +a5417ab3-10a5-3c27-8b21-aea437ca00f9,SESCO,II.1.1,Capital Federal,AR-C,annual,2016,naphtha combustion consumption by to the public,3167.7564187499997,TJ,CH4,3.0,kg/TJ,9503.26925625,kg +26256e9c-ed7b-3a27-bdd8-5daf2e25fe34,SESCO,II.1.1,Capital Federal,AR-C,annual,2016,naphtha combustion consumption by to the public,3167.7564187499997,TJ,N2O,0.6,kg/TJ,1900.6538512499997,kg +d9f8281e-1372-3ae6-92f0-01654f2d34c1,SESCO,II.1.1,Catamarca,AR-K,annual,2016,naphtha combustion consumption by to the public,40.52898464999999,TJ,CO2,73300.0,kg/TJ,2970774.5748449992,kg +4274b0ad-ea8a-3660-bd46-38b365eb77d2,SESCO,II.1.1,Catamarca,AR-K,annual,2016,naphtha combustion consumption by to the public,40.52898464999999,TJ,CH4,3.0,kg/TJ,121.58695394999998,kg +7e72cc72-ea76-344c-8eee-785a5a4e0fa6,SESCO,II.1.1,Catamarca,AR-K,annual,2016,naphtha combustion consumption by to the public,40.52898464999999,TJ,N2O,0.6,kg/TJ,24.317390789999994,kg +8612f9d2-6e23-3d20-94e1-85cb5088bf30,SESCO,II.1.1,Chaco,AR-H,annual,2016,naphtha combustion consumption by to the public,333.83806995,TJ,CO2,73300.0,kg/TJ,24470330.527335,kg +c1eb64db-22ba-305a-98ec-557cac669137,SESCO,II.1.1,Chaco,AR-H,annual,2016,naphtha combustion consumption by to the public,333.83806995,TJ,CH4,3.0,kg/TJ,1001.5142098499999,kg +9e0c57bd-c052-3948-8c32-4ed502d5eab5,SESCO,II.1.1,Chaco,AR-H,annual,2016,naphtha combustion consumption by to the public,333.83806995,TJ,N2O,0.6,kg/TJ,200.30284196999997,kg +d280f3f7-6b5e-3020-9e2b-830f71cc250e,SESCO,II.1.1,Corrientes,AR-W,annual,2016,naphtha combustion consumption by to the public,337.2231092999999,TJ,CO2,73300.0,kg/TJ,24718453.911689993,kg +3d130836-2fac-3de0-b7fa-7a2fb92db6f6,SESCO,II.1.1,Corrientes,AR-W,annual,2016,naphtha combustion consumption by to the public,337.2231092999999,TJ,CH4,3.0,kg/TJ,1011.6693278999998,kg +b3e919fd-b080-339a-9d3f-59e2cac4d254,SESCO,II.1.1,Corrientes,AR-W,annual,2016,naphtha combustion consumption by to the public,337.2231092999999,TJ,N2O,0.6,kg/TJ,202.33386557999995,kg +8926ea4a-53d2-36e3-b379-9ba7695a3316,SESCO,II.1.1,Córdoba,AR-X,annual,2016,naphtha combustion consumption by to the public,1344.7754974499999,TJ,CO2,73300.0,kg/TJ,98572043.963085,kg +46594356-97d9-3a32-a0e2-2d33a4e6af03,SESCO,II.1.1,Córdoba,AR-X,annual,2016,naphtha combustion consumption by to the public,1344.7754974499999,TJ,CH4,3.0,kg/TJ,4034.3264923499996,kg +d7694fe1-fbd9-3133-bf2f-724c560b28c1,SESCO,II.1.1,Córdoba,AR-X,annual,2016,naphtha combustion consumption by to the public,1344.7754974499999,TJ,N2O,0.6,kg/TJ,806.8652984699999,kg +76d4f4b0-8273-384b-8305-f371c62f41d5,SESCO,II.1.1,Entre Rios,AR-E,annual,2016,naphtha combustion consumption by to the public,378.51449019999995,TJ,CO2,73300.0,kg/TJ,27745112.131659996,kg +5b77b32d-9248-32f5-be14-3f601efb2c27,SESCO,II.1.1,Entre Rios,AR-E,annual,2016,naphtha combustion consumption by to the public,378.51449019999995,TJ,CH4,3.0,kg/TJ,1135.5434705999999,kg +f4ac4408-1ae8-35c5-b372-47e2b9025545,SESCO,II.1.1,Entre Rios,AR-E,annual,2016,naphtha combustion consumption by to the public,378.51449019999995,TJ,N2O,0.6,kg/TJ,227.10869411999997,kg +a9cf17ce-07d3-33c1-8fe7-47ec2b73eeea,SESCO,II.1.1,Formosa,AR-P,annual,2016,naphtha combustion consumption by to the public,182.79212489999998,TJ,CO2,73300.0,kg/TJ,13398662.755169999,kg +f78b3b9e-ebc2-3d88-bcca-3eae7afa9911,SESCO,II.1.1,Formosa,AR-P,annual,2016,naphtha combustion consumption by to the public,182.79212489999998,TJ,CH4,3.0,kg/TJ,548.3763746999999,kg +5d5b4107-c7f7-3f26-a935-e1268b94e1ce,SESCO,II.1.1,Formosa,AR-P,annual,2016,naphtha combustion consumption by to the public,182.79212489999998,TJ,N2O,0.6,kg/TJ,109.67527493999998,kg +aa56fcc1-de62-3144-a374-53c63d9dbb6b,SESCO,II.1.1,Jujuy,AR-Y,annual,2016,naphtha combustion consumption by to the public,38.485762699999995,TJ,CO2,73300.0,kg/TJ,2821006.4059099997,kg +f5bdef73-9737-3da0-bf3b-04dc2040be75,SESCO,II.1.1,Jujuy,AR-Y,annual,2016,naphtha combustion consumption by to the public,38.485762699999995,TJ,CH4,3.0,kg/TJ,115.45728809999999,kg +dfe85bbd-e8c5-38fb-90f8-afd3c24c8d36,SESCO,II.1.1,Jujuy,AR-Y,annual,2016,naphtha combustion consumption by to the public,38.485762699999995,TJ,N2O,0.6,kg/TJ,23.091457619999996,kg +f9efdb3f-3fb4-30dc-9c0a-bda5ebaac37b,SESCO,II.1.1,La Pampa,AR-L,annual,2016,naphtha combustion consumption by to the public,159.52379134999998,TJ,CO2,73300.0,kg/TJ,11693093.905954998,kg +b0fe2b7a-02b6-33c1-8993-95bd3e7cc5b3,SESCO,II.1.1,La Pampa,AR-L,annual,2016,naphtha combustion consumption by to the public,159.52379134999998,TJ,CH4,3.0,kg/TJ,478.5713740499999,kg +cc20c0ce-f206-32c4-9dd6-c09c65926671,SESCO,II.1.1,La Pampa,AR-L,annual,2016,naphtha combustion consumption by to the public,159.52379134999998,TJ,N2O,0.6,kg/TJ,95.71427480999999,kg +adc0a623-d457-3153-97e4-f6fae44437cf,SESCO,II.1.1,La Rioja,AR-F,annual,2016,naphtha combustion consumption by to the public,91.27407905,TJ,CO2,73300.0,kg/TJ,6690389.994365,kg +ea7901e6-004a-3476-bcfa-b283281d658a,SESCO,II.1.1,La Rioja,AR-F,annual,2016,naphtha combustion consumption by to the public,91.27407905,TJ,CH4,3.0,kg/TJ,273.82223715,kg +2143def4-8201-3b61-bdc2-b535a560d6f1,SESCO,II.1.1,La Rioja,AR-F,annual,2016,naphtha combustion consumption by to the public,91.27407905,TJ,N2O,0.6,kg/TJ,54.76444743,kg +f6ede424-4b46-3d04-9e1e-7219360e9253,SESCO,II.1.1,Mendoza,AR-M,annual,2016,naphtha combustion consumption by to the public,433.77297039999996,TJ,CO2,73300.0,kg/TJ,31795558.730319995,kg +3b416758-b9b2-30ce-bbbb-a3a3caa20fdd,SESCO,II.1.1,Mendoza,AR-M,annual,2016,naphtha combustion consumption by to the public,433.77297039999996,TJ,CH4,3.0,kg/TJ,1301.3189112,kg +b5b64c4a-de80-3c14-9f92-de821da8bec9,SESCO,II.1.1,Mendoza,AR-M,annual,2016,naphtha combustion consumption by to the public,433.77297039999996,TJ,N2O,0.6,kg/TJ,260.26378223999995,kg +1110d2eb-7caa-357c-b3d6-5377f6b2317d,SESCO,II.1.1,Misiones,AR-N,annual,2016,naphtha combustion consumption by to the public,317.33981509999995,TJ,CO2,73300.0,kg/TJ,23261008.446829997,kg +3fac36ba-1f95-34e3-bdd5-47f32de840cd,SESCO,II.1.1,Misiones,AR-N,annual,2016,naphtha combustion consumption by to the public,317.33981509999995,TJ,CH4,3.0,kg/TJ,952.0194452999999,kg +fe126e5c-fe70-3233-95e1-eb5df1347caf,SESCO,II.1.1,Misiones,AR-N,annual,2016,naphtha combustion consumption by to the public,317.33981509999995,TJ,N2O,0.6,kg/TJ,190.40388905999995,kg +300dd58d-ec1b-3c9d-a9a4-82954e21cb38,SESCO,II.1.1,Neuquén,AR-Q,annual,2016,naphtha combustion consumption by to the public,322.98154734999997,TJ,CO2,73300.0,kg/TJ,23674547.420755,kg +b0c285bf-47ae-3e70-a852-a17e9767fec1,SESCO,II.1.1,Neuquén,AR-Q,annual,2016,naphtha combustion consumption by to the public,322.98154734999997,TJ,CH4,3.0,kg/TJ,968.9446420499999,kg +d1ce5717-e99a-38ce-9a90-a537c17ffc37,SESCO,II.1.1,Neuquén,AR-Q,annual,2016,naphtha combustion consumption by to the public,322.98154734999997,TJ,N2O,0.6,kg/TJ,193.78892840999998,kg +202a6737-d79d-38ca-844d-25c4328368b3,SESCO,II.1.1,Rio Negro,AR-R,annual,2016,naphtha combustion consumption by to the public,79.68565604999999,TJ,CO2,73300.0,kg/TJ,5840958.588465,kg +ced2fdc9-99ea-3d63-abe6-63441a76cff1,SESCO,II.1.1,Rio Negro,AR-R,annual,2016,naphtha combustion consumption by to the public,79.68565604999999,TJ,CH4,3.0,kg/TJ,239.05696815,kg +9ccaa83a-bf47-3f35-af23-213107b8dabf,SESCO,II.1.1,Rio Negro,AR-R,annual,2016,naphtha combustion consumption by to the public,79.68565604999999,TJ,N2O,0.6,kg/TJ,47.81139362999999,kg +a9670605-5de9-3ed1-83fb-929d39794e96,SESCO,II.1.1,Salta,AR-A,annual,2016,naphtha combustion consumption by to the public,85.72383434999999,TJ,CO2,73300.0,kg/TJ,6283557.057854999,kg +19c63b2a-0ccb-350d-a016-71967e34c182,SESCO,II.1.1,Salta,AR-A,annual,2016,naphtha combustion consumption by to the public,85.72383434999999,TJ,CH4,3.0,kg/TJ,257.17150304999996,kg +37a69e9b-48a5-3aa2-802f-cdb86b774d56,SESCO,II.1.1,Salta,AR-A,annual,2016,naphtha combustion consumption by to the public,85.72383434999999,TJ,N2O,0.6,kg/TJ,51.434300609999994,kg +7a4facb6-496f-39fd-a0f7-bd6eab13ad9f,SESCO,II.1.1,San Juan,AR-J,annual,2016,naphtha combustion consumption by to the public,32.020642499999994,TJ,CO2,73300.0,kg/TJ,2347113.09525,kg +18fa3761-48a8-3e7d-a411-946d8cb17557,SESCO,II.1.1,San Juan,AR-J,annual,2016,naphtha combustion consumption by to the public,32.020642499999994,TJ,CH4,3.0,kg/TJ,96.06192749999998,kg +2f086a62-6905-3490-9192-7f1240c8c361,SESCO,II.1.1,San Juan,AR-J,annual,2016,naphtha combustion consumption by to the public,32.020642499999994,TJ,N2O,0.6,kg/TJ,19.212385499999996,kg +ae85c17d-8aa9-38f0-bd55-75d51cd02a3f,SESCO,II.1.1,San Luis,AR-D,annual,2016,naphtha combustion consumption by to the public,20.0662693,TJ,CO2,73300.0,kg/TJ,1470857.5396899998,kg +59f201ec-7185-3b60-aa52-ae4d4f2bb723,SESCO,II.1.1,San Luis,AR-D,annual,2016,naphtha combustion consumption by to the public,20.0662693,TJ,CH4,3.0,kg/TJ,60.19880789999999,kg +73aea26d-adc8-3ec5-9913-f405a3a02552,SESCO,II.1.1,San Luis,AR-D,annual,2016,naphtha combustion consumption by to the public,20.0662693,TJ,N2O,0.6,kg/TJ,12.039761579999999,kg +c0a548fd-669b-3eb1-9b72-2da4a51048e4,SESCO,II.1.1,Santa Fe,AR-S,annual,2016,naphtha combustion consumption by to the public,1653.0580450999996,TJ,CO2,73300.0,kg/TJ,121169154.70582998,kg +5d590b9a-9d20-30f5-aa70-3264d5646531,SESCO,II.1.1,Santa Fe,AR-S,annual,2016,naphtha combustion consumption by to the public,1653.0580450999996,TJ,CH4,3.0,kg/TJ,4959.174135299999,kg +666c82e1-4ae1-3dca-a542-0c9094275416,SESCO,II.1.1,Santa Fe,AR-S,annual,2016,naphtha combustion consumption by to the public,1653.0580450999996,TJ,N2O,0.6,kg/TJ,991.8348270599997,kg +dfbda9f6-971e-3854-a4af-5c5e5ca776ce,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2016,naphtha combustion consumption by to the public,159.24932869999998,TJ,CO2,73300.0,kg/TJ,11672975.793709999,kg +7d4e19b8-5404-3187-b41c-7683a745bbd3,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2016,naphtha combustion consumption by to the public,159.24932869999998,TJ,CH4,3.0,kg/TJ,477.74798609999993,kg +36a57edb-cf5f-3888-8220-8a0455e922b9,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2016,naphtha combustion consumption by to the public,159.24932869999998,TJ,N2O,0.6,kg/TJ,95.54959721999998,kg +862f740a-fdea-3e0e-a7f7-e1e68bf8f6b0,SESCO,II.1.1,Tucuman,AR-T,annual,2016,naphtha combustion consumption by to the public,229.20680859999996,TJ,CO2,73300.0,kg/TJ,16800859.07038,kg +4ffbf861-b752-3b3c-9924-734071e7313d,SESCO,II.1.1,Tucuman,AR-T,annual,2016,naphtha combustion consumption by to the public,229.20680859999996,TJ,CH4,3.0,kg/TJ,687.6204257999999,kg +f84da041-febd-3f19-bc6a-78e3ea1ddc50,SESCO,II.1.1,Tucuman,AR-T,annual,2016,naphtha combustion consumption by to the public,229.20680859999996,TJ,N2O,0.6,kg/TJ,137.52408515999997,kg +9df00c57-cb2d-37aa-87bf-d59acfc59075,SESCO,II.5.1,Buenos Aires,AR-B,annual,2016,naphtha combustion consumption by agriculture machines,135.98099514999998,TJ,CO2,73300.0,kg/TJ,9967406.944494998,kg +685fab11-32e2-330b-803f-af5070e20911,SESCO,II.5.1,Buenos Aires,AR-B,annual,2016,naphtha combustion consumption by agriculture machines,135.98099514999998,TJ,CH4,3.0,kg/TJ,407.9429854499999,kg +6f33731e-b501-30b1-8cc5-fbcae251d12f,SESCO,II.5.1,Buenos Aires,AR-B,annual,2016,naphtha combustion consumption by agriculture machines,135.98099514999998,TJ,N2O,0.6,kg/TJ,81.58859709,kg +ce16b8dd-ba86-3912-a1dd-52d06da1474e,SESCO,II.5.1,Entre Rios,AR-E,annual,2016,naphtha combustion consumption by agriculture machines,0.51842945,TJ,CO2,73300.0,kg/TJ,38000.878684999996,kg +6d6f328f-18f2-3887-bf01-f2b5e12ed720,SESCO,II.5.1,Entre Rios,AR-E,annual,2016,naphtha combustion consumption by agriculture machines,0.51842945,TJ,CH4,3.0,kg/TJ,1.5552883499999999,kg +d154ee89-ea80-3090-9485-f42714c4217e,SESCO,II.5.1,Entre Rios,AR-E,annual,2016,naphtha combustion consumption by agriculture machines,0.51842945,TJ,N2O,0.6,kg/TJ,0.31105766999999995,kg +1de0aa7c-b1d2-3787-b078-a664a6a21648,SESCO,II.5.1,Jujuy,AR-Y,annual,2016,naphtha combustion consumption by agriculture machines,1.00636305,TJ,CO2,73300.0,kg/TJ,73766.411565,kg +d357671f-e8fb-30c1-9fdb-2ee56daeff87,SESCO,II.5.1,Jujuy,AR-Y,annual,2016,naphtha combustion consumption by agriculture machines,1.00636305,TJ,CH4,3.0,kg/TJ,3.01908915,kg +bdafb358-4c7e-3fc4-bdae-06ab532ec29b,SESCO,II.5.1,Jujuy,AR-Y,annual,2016,naphtha combustion consumption by agriculture machines,1.00636305,TJ,N2O,0.6,kg/TJ,0.60381783,kg +7def8125-93f3-32dd-8b7b-b0c3ae4ae293,SESCO,II.5.1,Salta,AR-A,annual,2016,naphtha combustion consumption by agriculture machines,0.64041285,TJ,CO2,73300.0,kg/TJ,46942.261905,kg +d7ca8592-a669-3a4b-8cd1-9c8608820df6,SESCO,II.5.1,Salta,AR-A,annual,2016,naphtha combustion consumption by agriculture machines,0.64041285,TJ,CH4,3.0,kg/TJ,1.92123855,kg +656238d4-dc74-3fc2-837d-649dcb1e245c,SESCO,II.5.1,Salta,AR-A,annual,2016,naphtha combustion consumption by agriculture machines,0.64041285,TJ,N2O,0.6,kg/TJ,0.38424771,kg +23841019-45bb-388a-b88c-cfee485e2202,SESCO,II.5.1,Santa Fe,AR-S,annual,2016,naphtha combustion consumption by agriculture machines,42.968652649999996,TJ,CO2,73300.0,kg/TJ,3149602.239245,kg +75ff417a-6416-3a73-8123-f80ab12b8c28,SESCO,II.5.1,Santa Fe,AR-S,annual,2016,naphtha combustion consumption by agriculture machines,42.968652649999996,TJ,CH4,3.0,kg/TJ,128.90595795,kg +1c2959bb-427c-3a13-a2c6-ff007a56c029,SESCO,II.5.1,Santa Fe,AR-S,annual,2016,naphtha combustion consumption by agriculture machines,42.968652649999996,TJ,N2O,0.6,kg/TJ,25.781191589999995,kg +489ca91b-e276-3bcf-aa01-408cf472a946,SESCO,II.5.1,Santa Fe,AR-S,annual,2016,naphtha combustion consumption by agriculture machines,0.82338795,TJ,CO2,73300.0,kg/TJ,60354.336735,kg +d5210230-88ef-3b7a-b0be-df2a18a1c83d,SESCO,II.5.1,Santa Fe,AR-S,annual,2016,naphtha combustion consumption by agriculture machines,0.82338795,TJ,CH4,3.0,kg/TJ,2.47016385,kg +0b584a0b-ce92-3982-82e7-e402b262ac38,SESCO,II.5.1,Santa Fe,AR-S,annual,2016,naphtha combustion consumption by agriculture machines,0.82338795,TJ,N2O,0.6,kg/TJ,0.49403276999999995,kg +28eafbdc-787f-3a2d-8d5e-7011cb4994c4,SESCO,II.1.1,Buenos Aires,AR-B,annual,2016,naphtha combustion consumption by to the public,34034.25297965,TJ,CO2,73300.0,kg/TJ,2494710743.408345,kg +bffb3c27-ab60-3fee-bb56-9ed6687dd1ca,SESCO,II.1.1,Buenos Aires,AR-B,annual,2016,naphtha combustion consumption by to the public,34034.25297965,TJ,CH4,3.0,kg/TJ,102102.75893895,kg +786bae65-271b-3b42-aed0-41e073bbaddc,SESCO,II.1.1,Buenos Aires,AR-B,annual,2016,naphtha combustion consumption by to the public,34034.25297965,TJ,N2O,0.6,kg/TJ,20420.551787790002,kg +0cc168d0-47d2-3eef-8dc8-d7d9eda3f0a0,SESCO,II.1.1,Capital Federal,AR-C,annual,2016,naphtha combustion consumption by to the public,7852.223937249999,TJ,CO2,73300.0,kg/TJ,575568014.6004249,kg +49aac960-89cf-3929-a2a1-77c35ad88a2b,SESCO,II.1.1,Capital Federal,AR-C,annual,2016,naphtha combustion consumption by to the public,7852.223937249999,TJ,CH4,3.0,kg/TJ,23556.67181175,kg +c907f97d-5aba-3cbc-929b-c3b1b4bcd72f,SESCO,II.1.1,Capital Federal,AR-C,annual,2016,naphtha combustion consumption by to the public,7852.223937249999,TJ,N2O,0.6,kg/TJ,4711.3343623499995,kg +42de3215-f562-3e8c-99fb-561ebb4b4511,SESCO,II.1.1,Catamarca,AR-K,annual,2016,naphtha combustion consumption by to the public,638.7355782499999,TJ,CO2,73300.0,kg/TJ,46819317.88572499,kg +a78019bc-e7f5-3319-97f9-552758296cae,SESCO,II.1.1,Catamarca,AR-K,annual,2016,naphtha combustion consumption by to the public,638.7355782499999,TJ,CH4,3.0,kg/TJ,1916.2067347499997,kg +5be94df8-44dd-38c9-bf3c-2e934e9a7981,SESCO,II.1.1,Catamarca,AR-K,annual,2016,naphtha combustion consumption by to the public,638.7355782499999,TJ,N2O,0.6,kg/TJ,383.2413469499999,kg +34022118-3195-37e0-a7c2-ca1005d1055e,SESCO,II.1.1,Chaco,AR-H,annual,2016,naphtha combustion consumption by to the public,2156.2700659499997,TJ,CO2,73300.0,kg/TJ,158054595.83413497,kg +934584fa-4843-354e-9d77-4ddba4c4c3e3,SESCO,II.1.1,Chaco,AR-H,annual,2016,naphtha combustion consumption by to the public,2156.2700659499997,TJ,CH4,3.0,kg/TJ,6468.810197849999,kg +93f5dcb4-daa5-31d9-b844-f708b0ce3594,SESCO,II.1.1,Chaco,AR-H,annual,2016,naphtha combustion consumption by to the public,2156.2700659499997,TJ,N2O,0.6,kg/TJ,1293.7620395699998,kg +ee5e350a-0360-3a24-9ed0-f11c0fc8b694,SESCO,II.1.1,Chubut,AR-U,annual,2016,naphtha combustion consumption by to the public,3318.9243471999994,TJ,CO2,73300.0,kg/TJ,243277154.64975995,kg +890e267e-81e3-3d28-9e0b-cb98de481bca,SESCO,II.1.1,Chubut,AR-U,annual,2016,naphtha combustion consumption by to the public,3318.9243471999994,TJ,CH4,3.0,kg/TJ,9956.773041599998,kg +f7c7f08f-d459-3799-bae2-9b66c4861b39,SESCO,II.1.1,Chubut,AR-U,annual,2016,naphtha combustion consumption by to the public,3318.9243471999994,TJ,N2O,0.6,kg/TJ,1991.3546083199994,kg +7ecdd849-4d5c-3c69-b7f9-334d645cd658,SESCO,II.1.1,Corrientes,AR-W,annual,2016,naphtha combustion consumption by to the public,2236.71811825,TJ,CO2,73300.0,kg/TJ,163951438.067725,kg +a33f40ac-96a4-3e12-b767-feff97df37e0,SESCO,II.1.1,Corrientes,AR-W,annual,2016,naphtha combustion consumption by to the public,2236.71811825,TJ,CH4,3.0,kg/TJ,6710.15435475,kg +a6d325b7-cd7e-320b-909c-be96dc8a31fb,SESCO,II.1.1,Corrientes,AR-W,annual,2016,naphtha combustion consumption by to the public,2236.71811825,TJ,N2O,0.6,kg/TJ,1342.0308709499998,kg +59aaa494-9eff-33c1-9a9e-fef24a751d75,SESCO,II.1.1,Córdoba,AR-X,annual,2016,naphtha combustion consumption by to the public,8603.519697849999,TJ,CO2,73300.0,kg/TJ,630637993.852405,kg +7545c3a8-730f-3184-879a-6c4412b3d386,SESCO,II.1.1,Córdoba,AR-X,annual,2016,naphtha combustion consumption by to the public,8603.519697849999,TJ,CH4,3.0,kg/TJ,25810.559093549997,kg +ce2ba04e-bab4-37a5-bf15-137ac222fa50,SESCO,II.1.1,Córdoba,AR-X,annual,2016,naphtha combustion consumption by to the public,8603.519697849999,TJ,N2O,0.6,kg/TJ,5162.111818709999,kg +642f46a2-a941-3222-b880-816b85910fac,SESCO,II.1.1,Entre Rios,AR-E,annual,2016,naphtha combustion consumption by to the public,3026.80460005,TJ,CO2,73300.0,kg/TJ,221864777.18366498,kg +50f78d6b-a4c7-350a-9e5a-565e3d609807,SESCO,II.1.1,Entre Rios,AR-E,annual,2016,naphtha combustion consumption by to the public,3026.80460005,TJ,CH4,3.0,kg/TJ,9080.41380015,kg +2189ff68-8fb9-35a9-aa39-b354c4f41111,SESCO,II.1.1,Entre Rios,AR-E,annual,2016,naphtha combustion consumption by to the public,3026.80460005,TJ,N2O,0.6,kg/TJ,1816.08276003,kg +13bf9bd8-146a-3c11-9a8a-5fafaa866589,SESCO,II.1.1,Formosa,AR-P,annual,2016,naphtha combustion consumption by to the public,683.99141965,TJ,CO2,73300.0,kg/TJ,50136571.060345,kg +359e5e26-8de2-3131-8267-28f0457bac1d,SESCO,II.1.1,Formosa,AR-P,annual,2016,naphtha combustion consumption by to the public,683.99141965,TJ,CH4,3.0,kg/TJ,2051.97425895,kg +f9911fcb-eb5a-34d4-82fd-fb7e37064c5b,SESCO,II.1.1,Formosa,AR-P,annual,2016,naphtha combustion consumption by to the public,683.99141965,TJ,N2O,0.6,kg/TJ,410.39485179,kg +6f1ee2f5-8ee3-3b71-a59b-34e792d1f721,SESCO,II.1.1,Jujuy,AR-Y,annual,2016,naphtha combustion consumption by to the public,1178.3901398499997,TJ,CO2,73300.0,kg/TJ,86375997.25100498,kg +2f90cbc8-b00d-327d-9678-f1d149e38172,SESCO,II.1.1,Jujuy,AR-Y,annual,2016,naphtha combustion consumption by to the public,1178.3901398499997,TJ,CH4,3.0,kg/TJ,3535.170419549999,kg +d47680e0-dd73-301c-bfbe-72c0572cf6fe,SESCO,II.1.1,Jujuy,AR-Y,annual,2016,naphtha combustion consumption by to the public,1178.3901398499997,TJ,N2O,0.6,kg/TJ,707.0340839099998,kg +9073b72c-4fc6-3e14-8ab6-b27ab1d74802,SESCO,II.1.1,La Pampa,AR-L,annual,2016,naphtha combustion consumption by to the public,1467.0943518,TJ,CO2,73300.0,kg/TJ,107538015.98694,kg +618b3981-ce74-3f8d-bab5-c68faf7613a1,SESCO,II.1.1,La Pampa,AR-L,annual,2016,naphtha combustion consumption by to the public,1467.0943518,TJ,CH4,3.0,kg/TJ,4401.283055399999,kg +b0376b30-9443-3612-9c24-3d9ff0875769,SESCO,II.1.1,La Pampa,AR-L,annual,2016,naphtha combustion consumption by to the public,1467.0943518,TJ,N2O,0.6,kg/TJ,880.25661108,kg +f07f4d8a-a444-3d97-88af-b71a184e9f0d,SESCO,II.1.1,La Rioja,AR-F,annual,2016,naphtha combustion consumption by to the public,931.4347465499999,TJ,CO2,73300.0,kg/TJ,68274166.922115,kg +116cc4e3-6d90-30cb-94d4-92641369dda2,SESCO,II.1.1,La Rioja,AR-F,annual,2016,naphtha combustion consumption by to the public,931.4347465499999,TJ,CH4,3.0,kg/TJ,2794.3042396499995,kg +dff08b0a-d6bf-3794-824e-1bc38e3a5289,SESCO,II.1.1,La Rioja,AR-F,annual,2016,naphtha combustion consumption by to the public,931.4347465499999,TJ,N2O,0.6,kg/TJ,558.8608479299999,kg +1ba4947f-8eda-3046-a20c-1acc20c13d60,SESCO,II.1.1,Mendoza,AR-M,annual,2016,naphtha combustion consumption by to the public,4819.594629849999,TJ,CO2,73300.0,kg/TJ,353276286.368005,kg +002703cf-dbf2-3aa6-84c0-8345a9363ed0,SESCO,II.1.1,Mendoza,AR-M,annual,2016,naphtha combustion consumption by to the public,4819.594629849999,TJ,CH4,3.0,kg/TJ,14458.783889549999,kg +39bc86e3-0cbe-3865-9e94-40b64dbd2ea7,SESCO,II.1.1,Mendoza,AR-M,annual,2016,naphtha combustion consumption by to the public,4819.594629849999,TJ,N2O,0.6,kg/TJ,2891.7567779099995,kg +59b4718e-a733-3794-8dd8-775dd41a558e,SESCO,II.1.1,Misiones,AR-N,annual,2016,naphtha combustion consumption by to the public,2990.9414804499997,TJ,CO2,73300.0,kg/TJ,219236010.51698497,kg +d68103ee-996f-365d-a86e-881bfc726351,SESCO,II.1.1,Misiones,AR-N,annual,2016,naphtha combustion consumption by to the public,2990.9414804499997,TJ,CH4,3.0,kg/TJ,8972.82444135,kg +77f47022-0041-3e4c-9a63-c83bcac65cea,SESCO,II.1.1,Misiones,AR-N,annual,2016,naphtha combustion consumption by to the public,2990.9414804499997,TJ,N2O,0.6,kg/TJ,1794.5648882699998,kg +4d0faf93-a7b6-3061-945d-2019bffdff12,SESCO,II.1.1,Neuquén,AR-Q,annual,2016,naphtha combustion consumption by to the public,2933.8227534,TJ,CO2,73300.0,kg/TJ,215049207.82421997,kg +862afb0c-9e93-36fc-b5a0-a6a9381de075,SESCO,II.1.1,Neuquén,AR-Q,annual,2016,naphtha combustion consumption by to the public,2933.8227534,TJ,CH4,3.0,kg/TJ,8801.4682602,kg +ba1492a4-724f-3620-8ac4-877b3ed3cd0a,SESCO,II.1.1,Neuquén,AR-Q,annual,2016,naphtha combustion consumption by to the public,2933.8227534,TJ,N2O,0.6,kg/TJ,1760.2936520399999,kg +10a6eff9-4a7b-3e81-ae93-efae16dbef3d,SESCO,II.1.1,Rio Negro,AR-R,annual,2016,naphtha combustion consumption by to the public,2884.81592245,TJ,CO2,73300.0,kg/TJ,211457007.115585,kg +b64167ac-d846-36ee-9832-7bc5dc4dd25d,SESCO,II.1.1,Rio Negro,AR-R,annual,2016,naphtha combustion consumption by to the public,2884.81592245,TJ,CH4,3.0,kg/TJ,8654.44776735,kg +0c1bc9ed-5adc-33b7-aeb0-d37b4380c7fc,SESCO,II.1.1,Rio Negro,AR-R,annual,2016,naphtha combustion consumption by to the public,2884.81592245,TJ,N2O,0.6,kg/TJ,1730.88955347,kg +4a287721-657f-3ff0-84f8-419117671912,SESCO,II.1.1,Salta,AR-A,annual,2016,naphtha combustion consumption by to the public,2789.5163912,TJ,CO2,73300.0,kg/TJ,204471551.47496,kg +43ba5e8c-c4f3-3d7c-a595-ecb625249db1,SESCO,II.1.1,Salta,AR-A,annual,2016,naphtha combustion consumption by to the public,2789.5163912,TJ,CH4,3.0,kg/TJ,8368.5491736,kg +5cbd8505-5bac-3c7d-9ebf-765eaa7fc8f0,SESCO,II.1.1,Salta,AR-A,annual,2016,naphtha combustion consumption by to the public,2789.5163912,TJ,N2O,0.6,kg/TJ,1673.70983472,kg +a6f8cc97-cecf-3e2c-9865-6aa23b7136c0,SESCO,II.1.1,San Juan,AR-J,annual,2016,naphtha combustion consumption by to the public,1580.6608971999997,TJ,CO2,73300.0,kg/TJ,115862443.76475997,kg +895d9c4d-48a1-37e3-966e-413faf0c843d,SESCO,II.1.1,San Juan,AR-J,annual,2016,naphtha combustion consumption by to the public,1580.6608971999997,TJ,CH4,3.0,kg/TJ,4741.982691599999,kg +ddbdcf18-4d93-3310-86aa-4b9e53c7cca5,SESCO,II.1.1,San Juan,AR-J,annual,2016,naphtha combustion consumption by to the public,1580.6608971999997,TJ,N2O,0.6,kg/TJ,948.3965383199998,kg +402a3f2c-2892-3d36-8edf-51bc6fc0bad3,SESCO,II.1.1,San Luis,AR-D,annual,2016,naphtha combustion consumption by to the public,1236.2712631499999,TJ,CO2,73300.0,kg/TJ,90618683.588895,kg +2af5ea10-c00e-3be6-9709-aa57bb18db95,SESCO,II.1.1,San Luis,AR-D,annual,2016,naphtha combustion consumption by to the public,1236.2712631499999,TJ,CH4,3.0,kg/TJ,3708.8137894499996,kg +2b0e964a-f420-36d2-8366-d547e71349e3,SESCO,II.1.1,San Luis,AR-D,annual,2016,naphtha combustion consumption by to the public,1236.2712631499999,TJ,N2O,0.6,kg/TJ,741.7627578899999,kg +d4e91f85-a825-3a13-a80d-08855c040f29,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2016,naphtha combustion consumption by to the public,2232.2657241499996,TJ,CO2,73300.0,kg/TJ,163625077.58019498,kg +59c74a4e-d92d-35f7-a97d-9f00abf6c357,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2016,naphtha combustion consumption by to the public,2232.2657241499996,TJ,CH4,3.0,kg/TJ,6696.7971724499985,kg +82213fab-22c0-3c14-b515-38523b160dc6,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2016,naphtha combustion consumption by to the public,2232.2657241499996,TJ,N2O,0.6,kg/TJ,1339.3594344899998,kg +4976569b-a69b-3269-85cf-fd880dd66078,SESCO,II.1.1,Santa Fe,AR-S,annual,2016,naphtha combustion consumption by to the public,6456.55086615,TJ,CO2,73300.0,kg/TJ,473265178.488795,kg +f26e20a9-239b-396e-9229-fac2f415b25a,SESCO,II.1.1,Santa Fe,AR-S,annual,2016,naphtha combustion consumption by to the public,6456.55086615,TJ,CH4,3.0,kg/TJ,19369.65259845,kg +010c1a5f-898f-3882-a890-8df259187ddd,SESCO,II.1.1,Santa Fe,AR-S,annual,2016,naphtha combustion consumption by to the public,6456.55086615,TJ,N2O,0.6,kg/TJ,3873.9305196899995,kg +31b1de45-c036-3c2d-ab03-2b3abd0cdd94,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2016,naphtha combustion consumption by to the public,1189.8260835999997,TJ,CO2,73300.0,kg/TJ,87214251.92787997,kg +69ee95fe-514c-39d1-b113-7b0d2fb36563,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2016,naphtha combustion consumption by to the public,1189.8260835999997,TJ,CH4,3.0,kg/TJ,3569.478250799999,kg +9826dc57-8259-34eb-8a9d-e052d0ab7ec1,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2016,naphtha combustion consumption by to the public,1189.8260835999997,TJ,N2O,0.6,kg/TJ,713.8956501599998,kg +bf78a4b3-89cf-3947-832f-b7bae0d0fe3b,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2016,naphtha combustion consumption by to the public,1708.6214837999999,TJ,CO2,73300.0,kg/TJ,125241954.76253998,kg +cda7d27f-81bd-3cf4-9d6f-1063db26a7c9,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2016,naphtha combustion consumption by to the public,1708.6214837999999,TJ,CH4,3.0,kg/TJ,5125.8644514,kg +ef95f4ae-6988-36b8-9b5b-6831e95ad773,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2016,naphtha combustion consumption by to the public,1708.6214837999999,TJ,N2O,0.6,kg/TJ,1025.1728902799998,kg +ac59352b-d768-3b8b-853b-43b54ea1805d,SESCO,II.1.1,Tucuman,AR-T,annual,2016,naphtha combustion consumption by to the public,2098.4194385,TJ,CO2,73300.0,kg/TJ,153814144.84205002,kg +aa03815e-b195-33b4-a92d-a7128635a448,SESCO,II.1.1,Tucuman,AR-T,annual,2016,naphtha combustion consumption by to the public,2098.4194385,TJ,CH4,3.0,kg/TJ,6295.2583155,kg +7afb2316-64c5-3c86-9643-bcb983d8a128,SESCO,II.1.1,Tucuman,AR-T,annual,2016,naphtha combustion consumption by to the public,2098.4194385,TJ,N2O,0.6,kg/TJ,1259.0516631,kg +1fdec5ce-b31a-3656-9f95-44927f0f26ba,SESCO,II.1.1,Buenos Aires,AR-B,annual,2016,naphtha combustion consumption by to the public,15276.896057499998,TJ,CO2,73300.0,kg/TJ,1119796481.0147498,kg +41c7a0fa-e71e-3c1f-ab75-bbb0e210e2c5,SESCO,II.1.1,Buenos Aires,AR-B,annual,2016,naphtha combustion consumption by to the public,15276.896057499998,TJ,CH4,3.0,kg/TJ,45830.6881725,kg +e91012f2-0512-3f26-8406-eaa99cbca4bf,SESCO,II.1.1,Buenos Aires,AR-B,annual,2016,naphtha combustion consumption by to the public,15276.896057499998,TJ,N2O,0.6,kg/TJ,9166.137634499999,kg +8d47be94-f430-3f97-9ff9-c0e630341114,SESCO,II.1.1,Capital Federal,AR-C,annual,2016,naphtha combustion consumption by to the public,3995.7187462499996,TJ,CO2,73300.0,kg/TJ,292886184.10012496,kg +9650d00e-6041-3f99-a0a4-8368b961496e,SESCO,II.1.1,Capital Federal,AR-C,annual,2016,naphtha combustion consumption by to the public,3995.7187462499996,TJ,CH4,3.0,kg/TJ,11987.156238749998,kg +67c2f7da-2ac8-3091-8626-922901c31bba,SESCO,II.1.1,Capital Federal,AR-C,annual,2016,naphtha combustion consumption by to the public,3995.7187462499996,TJ,N2O,0.6,kg/TJ,2397.43124775,kg +f231cc5c-f175-37a8-89d6-08ad74d970c7,SESCO,II.1.1,Catamarca,AR-K,annual,2016,naphtha combustion consumption by to the public,278.73206899999997,TJ,CO2,73300.0,kg/TJ,20431060.6577,kg +e5aa14b1-c914-3031-a2e9-6d8bc9f60892,SESCO,II.1.1,Catamarca,AR-K,annual,2016,naphtha combustion consumption by to the public,278.73206899999997,TJ,CH4,3.0,kg/TJ,836.196207,kg +136262f6-fea3-366c-8a0c-570d49d80ff9,SESCO,II.1.1,Catamarca,AR-K,annual,2016,naphtha combustion consumption by to the public,278.73206899999997,TJ,N2O,0.6,kg/TJ,167.23924139999997,kg +5d50d2d0-2035-3c9b-88fc-a53d115c9f8f,SESCO,II.1.1,Chaco,AR-H,annual,2016,naphtha combustion consumption by to the public,955.8009307,TJ,CO2,73300.0,kg/TJ,70060208.22031,kg +99bc058d-580d-3269-a3bd-8083c9917743,SESCO,II.1.1,Chaco,AR-H,annual,2016,naphtha combustion consumption by to the public,955.8009307,TJ,CH4,3.0,kg/TJ,2867.4027920999997,kg +cb21e7a9-2504-3452-8880-c5bf36223eb4,SESCO,II.1.1,Chaco,AR-H,annual,2016,naphtha combustion consumption by to the public,955.8009307,TJ,N2O,0.6,kg/TJ,573.48055842,kg +af9be83a-8206-3200-a507-5ab6df715936,SESCO,II.1.1,Chubut,AR-U,annual,2016,naphtha combustion consumption by to the public,1496.09590515,TJ,CO2,73300.0,kg/TJ,109663829.84749499,kg +2f48ec50-e582-3fc9-b1d0-95bae208656c,SESCO,II.1.1,Chubut,AR-U,annual,2016,naphtha combustion consumption by to the public,1496.09590515,TJ,CH4,3.0,kg/TJ,4488.28771545,kg +babb7d13-bb16-3aff-98fe-1223f37c737f,SESCO,II.1.1,Chubut,AR-U,annual,2016,naphtha combustion consumption by to the public,1496.09590515,TJ,N2O,0.6,kg/TJ,897.6575430899999,kg +d698044b-d851-3f5b-9d9f-80cc24621769,SESCO,II.1.1,Corrientes,AR-W,annual,2016,naphtha combustion consumption by to the public,1043.7509621,TJ,CO2,73300.0,kg/TJ,76506945.52193,kg +efac99c2-1466-3d9c-a0d1-9f954d341583,SESCO,II.1.1,Corrientes,AR-W,annual,2016,naphtha combustion consumption by to the public,1043.7509621,TJ,CH4,3.0,kg/TJ,3131.2528863,kg +fa37ff06-2765-3e91-b4cc-c10a24e0c756,SESCO,II.1.1,Corrientes,AR-W,annual,2016,naphtha combustion consumption by to the public,1043.7509621,TJ,N2O,0.6,kg/TJ,626.2505772599999,kg +cf9e0270-e0a3-3154-aabe-e7f25ea3f82f,SESCO,II.1.1,Córdoba,AR-X,annual,2016,naphtha combustion consumption by to the public,3367.6567155,TJ,CO2,73300.0,kg/TJ,246849237.24615,kg +29e816a7-8319-31b8-a6c6-272e242b96fa,SESCO,II.1.1,Córdoba,AR-X,annual,2016,naphtha combustion consumption by to the public,3367.6567155,TJ,CH4,3.0,kg/TJ,10102.9701465,kg +60121334-e751-3921-8bfe-676ca7aed8f1,SESCO,II.1.1,Córdoba,AR-X,annual,2016,naphtha combustion consumption by to the public,3367.6567155,TJ,N2O,0.6,kg/TJ,2020.5940292999999,kg +7a68d0d1-ee27-3a87-85f4-d092adbacc55,SESCO,II.1.1,Entre Rios,AR-E,annual,2016,naphtha combustion consumption by to the public,1350.6611964999997,TJ,CO2,73300.0,kg/TJ,99003465.70344998,kg +3dc105c1-4bb4-37ba-b3da-76e34efe094e,SESCO,II.1.1,Entre Rios,AR-E,annual,2016,naphtha combustion consumption by to the public,1350.6611964999997,TJ,CH4,3.0,kg/TJ,4051.983589499999,kg +a8f60c9e-d228-3b2c-bddc-5b21da77ebb6,SESCO,II.1.1,Entre Rios,AR-E,annual,2016,naphtha combustion consumption by to the public,1350.6611964999997,TJ,N2O,0.6,kg/TJ,810.3967178999998,kg +83456250-f677-35ac-b34b-de4f1009808f,SESCO,II.1.1,Formosa,AR-P,annual,2016,naphtha combustion consumption by to the public,251.40778739999996,TJ,CO2,73300.0,kg/TJ,18428190.816419996,kg +13ebe9fc-d75d-34fa-a097-1327b41d601c,SESCO,II.1.1,Formosa,AR-P,annual,2016,naphtha combustion consumption by to the public,251.40778739999996,TJ,CH4,3.0,kg/TJ,754.2233621999999,kg +29005b2f-3cd0-3c53-97ed-3ce2b81171bd,SESCO,II.1.1,Formosa,AR-P,annual,2016,naphtha combustion consumption by to the public,251.40778739999996,TJ,N2O,0.6,kg/TJ,150.84467243999998,kg +36d3c8a8-4ade-353f-ab18-83ec8f4aace7,SESCO,II.1.1,Jujuy,AR-Y,annual,2016,naphtha combustion consumption by to the public,365.85871245,TJ,CO2,73300.0,kg/TJ,26817443.622585,kg +cf7641f8-c40b-3240-997e-dabf0d6073b4,SESCO,II.1.1,Jujuy,AR-Y,annual,2016,naphtha combustion consumption by to the public,365.85871245,TJ,CH4,3.0,kg/TJ,1097.57613735,kg +8e09cb5a-50cf-36b7-bcee-910c9152fcca,SESCO,II.1.1,Jujuy,AR-Y,annual,2016,naphtha combustion consumption by to the public,365.85871245,TJ,N2O,0.6,kg/TJ,219.51522746999999,kg +c740068f-734f-32fd-8238-c410e23b933e,SESCO,II.1.1,La Pampa,AR-L,annual,2016,naphtha combustion consumption by to the public,1042.13468205,TJ,CO2,73300.0,kg/TJ,76388472.19426501,kg +3b2c4e95-9406-37ae-b834-a1e9a1d3688b,SESCO,II.1.1,La Pampa,AR-L,annual,2016,naphtha combustion consumption by to the public,1042.13468205,TJ,CH4,3.0,kg/TJ,3126.40404615,kg +383f511b-1a96-3c3d-a5ae-90ad9d4f5d4a,SESCO,II.1.1,La Pampa,AR-L,annual,2016,naphtha combustion consumption by to the public,1042.13468205,TJ,N2O,0.6,kg/TJ,625.28080923,kg +ebc11cc4-3a1b-3dab-b896-d7c5bfe6361f,SESCO,II.1.1,La Rioja,AR-F,annual,2016,naphtha combustion consumption by to the public,377.4776313,TJ,CO2,73300.0,kg/TJ,27669110.37429,kg +0f99094c-60cc-3c4a-900f-e73647e58777,SESCO,II.1.1,La Rioja,AR-F,annual,2016,naphtha combustion consumption by to the public,377.4776313,TJ,CH4,3.0,kg/TJ,1132.4328939,kg +47b65c5f-3318-37de-a1e5-593a6bb7368d,SESCO,II.1.1,La Rioja,AR-F,annual,2016,naphtha combustion consumption by to the public,377.4776313,TJ,N2O,0.6,kg/TJ,226.48657877999997,kg +7c27d84d-c6c4-354b-8679-4e3f12503812,SESCO,II.1.1,Mendoza,AR-M,annual,2016,naphtha combustion consumption by to the public,2634.3230105499997,TJ,CO2,73300.0,kg/TJ,193095876.673315,kg +4189016a-dc41-31f6-8a69-89d3c78deabd,SESCO,II.1.1,Mendoza,AR-M,annual,2016,naphtha combustion consumption by to the public,2634.3230105499997,TJ,CH4,3.0,kg/TJ,7902.969031649999,kg +b936c432-6022-3745-830c-96c483e49b18,SESCO,II.1.1,Mendoza,AR-M,annual,2016,naphtha combustion consumption by to the public,2634.3230105499997,TJ,N2O,0.6,kg/TJ,1580.5938063299998,kg +4c6eeac9-3a52-3eda-a14f-ee9db18a8b6b,SESCO,II.1.1,Misiones,AR-N,annual,2016,naphtha combustion consumption by to the public,893.5893966999998,TJ,CO2,73300.0,kg/TJ,65500102.77810999,kg +386d0054-f449-3bac-833c-8c93c705eb54,SESCO,II.1.1,Misiones,AR-N,annual,2016,naphtha combustion consumption by to the public,893.5893966999998,TJ,CH4,3.0,kg/TJ,2680.7681900999996,kg +027957b6-92bd-3b60-9175-6b641b1f7672,SESCO,II.1.1,Misiones,AR-N,annual,2016,naphtha combustion consumption by to the public,893.5893966999998,TJ,N2O,0.6,kg/TJ,536.1536380199999,kg +d57434ba-fd4a-3f43-961d-bbb06d6fb80f,SESCO,II.1.1,Neuquén,AR-Q,annual,2016,naphtha combustion consumption by to the public,1774.5840073499999,TJ,CO2,73300.0,kg/TJ,130077007.73875499,kg +8a7fb51f-f756-37df-9817-bba7b272d5d2,SESCO,II.1.1,Neuquén,AR-Q,annual,2016,naphtha combustion consumption by to the public,1774.5840073499999,TJ,CH4,3.0,kg/TJ,5323.752022049999,kg +25303c7a-0c36-314c-834f-f480ddd077da,SESCO,II.1.1,Neuquén,AR-Q,annual,2016,naphtha combustion consumption by to the public,1774.5840073499999,TJ,N2O,0.6,kg/TJ,1064.7504044099999,kg +da0c4f44-280d-366e-af35-bcdce69098a8,SESCO,II.1.1,Rio Negro,AR-R,annual,2016,naphtha combustion consumption by to the public,1566.3583435499997,TJ,CO2,73300.0,kg/TJ,114814066.58221498,kg +8563ca50-cb1d-38aa-b866-1b4fee32b447,SESCO,II.1.1,Rio Negro,AR-R,annual,2016,naphtha combustion consumption by to the public,1566.3583435499997,TJ,CH4,3.0,kg/TJ,4699.0750306499995,kg +11d40538-a0c7-34da-8fed-a6345e8a7ca0,SESCO,II.1.1,Rio Negro,AR-R,annual,2016,naphtha combustion consumption by to the public,1566.3583435499997,TJ,N2O,0.6,kg/TJ,939.8150061299998,kg +9c0c35e9-cb92-33a1-8070-bb9b50c068e5,SESCO,II.1.1,Salta,AR-A,annual,2016,naphtha combustion consumption by to the public,926.31144375,TJ,CO2,73300.0,kg/TJ,67898628.826875,kg +54909e19-0de9-32e4-840f-0ce99a0b69ea,SESCO,II.1.1,Salta,AR-A,annual,2016,naphtha combustion consumption by to the public,926.31144375,TJ,CH4,3.0,kg/TJ,2778.93433125,kg +ef8342bc-4804-3021-b506-15630451743b,SESCO,II.1.1,Salta,AR-A,annual,2016,naphtha combustion consumption by to the public,926.31144375,TJ,N2O,0.6,kg/TJ,555.78686625,kg +f24e0f3c-d96a-3926-ba5b-7fd78a9016d2,SESCO,II.1.1,San Juan,AR-J,annual,2016,naphtha combustion consumption by to the public,690.21257305,TJ,CO2,73300.0,kg/TJ,50592581.604564995,kg +62ed67e5-dd28-325a-87ac-79ffcdac3ae2,SESCO,II.1.1,San Juan,AR-J,annual,2016,naphtha combustion consumption by to the public,690.21257305,TJ,CH4,3.0,kg/TJ,2070.6377191499996,kg +8ea65fd3-e679-3171-b3f9-7c665807f998,SESCO,II.1.1,San Juan,AR-J,annual,2016,naphtha combustion consumption by to the public,690.21257305,TJ,N2O,0.6,kg/TJ,414.12754383,kg +9dac04a8-f662-394c-b400-5c977e5373e1,SESCO,II.1.1,San Luis,AR-D,annual,2016,naphtha combustion consumption by to the public,649.0736713999999,TJ,CO2,73300.0,kg/TJ,47577100.11361999,kg +98eaaa77-9d71-3425-87df-3d9af2d7d276,SESCO,II.1.1,San Luis,AR-D,annual,2016,naphtha combustion consumption by to the public,649.0736713999999,TJ,CH4,3.0,kg/TJ,1947.2210141999994,kg +5e6f57b0-0b54-39dd-8ce9-3a3bad5f9516,SESCO,II.1.1,San Luis,AR-D,annual,2016,naphtha combustion consumption by to the public,649.0736713999999,TJ,N2O,0.6,kg/TJ,389.4442028399999,kg +95a9c231-cabc-39ba-92d4-4c78b4ff464b,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2016,naphtha combustion consumption by to the public,862.6056130999999,TJ,CO2,73300.0,kg/TJ,63228991.44023,kg +b08e713a-fdfc-333c-9034-75c8fbc7fdf0,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2016,naphtha combustion consumption by to the public,862.6056130999999,TJ,CH4,3.0,kg/TJ,2587.8168392999996,kg +ab518857-53ab-3d89-916a-e1dca7677874,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2016,naphtha combustion consumption by to the public,862.6056130999999,TJ,N2O,0.6,kg/TJ,517.56336786,kg +dda3b41d-5312-3186-8689-c31a0ee8ed67,SESCO,II.1.1,Santa Fe,AR-S,annual,2016,naphtha combustion consumption by to the public,3162.2366699,TJ,CO2,73300.0,kg/TJ,231791947.90366998,kg +bea3f8b2-4c85-371b-87ce-2163841415a1,SESCO,II.1.1,Santa Fe,AR-S,annual,2016,naphtha combustion consumption by to the public,3162.2366699,TJ,CH4,3.0,kg/TJ,9486.7100097,kg +14cc31f5-d904-3d08-889e-8eae5f41c447,SESCO,II.1.1,Santa Fe,AR-S,annual,2016,naphtha combustion consumption by to the public,3162.2366699,TJ,N2O,0.6,kg/TJ,1897.3420019399998,kg +3ba59875-d98f-33c5-a84a-16aa5ad9f3b2,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2016,naphtha combustion consumption by to the public,594.6995708499999,TJ,CO2,73300.0,kg/TJ,43591478.54330499,kg +7578f004-d220-31ac-99da-bf57807c77d6,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2016,naphtha combustion consumption by to the public,594.6995708499999,TJ,CH4,3.0,kg/TJ,1784.0987125499996,kg +e19d9e8b-b584-3700-a238-aa72dd8f77e1,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2016,naphtha combustion consumption by to the public,594.6995708499999,TJ,N2O,0.6,kg/TJ,356.8197425099999,kg +619a3f4e-4c89-3183-8871-42cecb22dba3,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2016,naphtha combustion consumption by to the public,223.93102654999998,TJ,CO2,73300.0,kg/TJ,16414144.246114999,kg +37ed0b70-4f54-31f0-8eb4-e09054cf3e03,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2016,naphtha combustion consumption by to the public,223.93102654999998,TJ,CH4,3.0,kg/TJ,671.79307965,kg +f5a8dd8d-beb7-3b93-ad60-46d84affe393,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2016,naphtha combustion consumption by to the public,223.93102654999998,TJ,N2O,0.6,kg/TJ,134.35861592999998,kg +8e1a6588-d424-31ef-80f6-4734b2f70c2b,SESCO,II.1.1,Tucuman,AR-T,annual,2016,naphtha combustion consumption by to the public,667.40167725,TJ,CO2,73300.0,kg/TJ,48920542.942425005,kg +973d9a65-f8bc-34d8-a9be-2eaebc72bc51,SESCO,II.1.1,Tucuman,AR-T,annual,2016,naphtha combustion consumption by to the public,667.40167725,TJ,CH4,3.0,kg/TJ,2002.2050317500002,kg +d7d86704-ca6f-3da8-9022-2ee129af214b,SESCO,II.1.1,Tucuman,AR-T,annual,2016,naphtha combustion consumption by to the public,667.40167725,TJ,N2O,0.6,kg/TJ,400.44100635,kg +5a268d56-c96e-3e1b-8be7-3224f072263b,SESCO,II.1.1,Buenos Aires,AR-B,annual,2016,naphtha combustion consumption by freight transport,213.44045414999997,TJ,CO2,73300.0,kg/TJ,15645185.289194997,kg +cee97fdf-2bdb-31ee-86b1-b6c28dbe4209,SESCO,II.1.1,Buenos Aires,AR-B,annual,2016,naphtha combustion consumption by freight transport,213.44045414999997,TJ,CH4,3.0,kg/TJ,640.3213624499999,kg +b13ad856-74f9-399c-97a8-85ded090b45d,SESCO,II.1.1,Buenos Aires,AR-B,annual,2016,naphtha combustion consumption by freight transport,213.44045414999997,TJ,N2O,0.6,kg/TJ,128.06427248999998,kg +0ef5cf64-bae7-3459-907d-27e87f65bd9e,SESCO,II.1.1,Capital Federal,AR-C,annual,2016,naphtha combustion consumption by freight transport,224.02251409999997,TJ,CO2,73300.0,kg/TJ,16420850.283529997,kg +95dd76ca-b2bd-3cb9-9318-c8c434c61ef6,SESCO,II.1.1,Capital Federal,AR-C,annual,2016,naphtha combustion consumption by freight transport,224.02251409999997,TJ,CH4,3.0,kg/TJ,672.0675422999999,kg +90fd6302-b142-30f3-863d-5b285ab3ef9e,SESCO,II.1.1,Capital Federal,AR-C,annual,2016,naphtha combustion consumption by freight transport,224.02251409999997,TJ,N2O,0.6,kg/TJ,134.41350845999997,kg +ddb9d103-45a8-319c-adfb-7042928c3e5e,SESCO,II.1.1,Chaco,AR-H,annual,2016,naphtha combustion consumption by freight transport,7.501979099999999,TJ,CO2,73300.0,kg/TJ,549895.06803,kg +570eedb8-7a7d-35c0-a1f5-5f2967ab9def,SESCO,II.1.1,Chaco,AR-H,annual,2016,naphtha combustion consumption by freight transport,7.501979099999999,TJ,CH4,3.0,kg/TJ,22.505937299999996,kg +215738e0-c805-3883-9b79-6056932598bb,SESCO,II.1.1,Chaco,AR-H,annual,2016,naphtha combustion consumption by freight transport,7.501979099999999,TJ,N2O,0.6,kg/TJ,4.501187459999999,kg +4804b1aa-bf49-36ce-a128-871296574067,SESCO,II.1.1,Chubut,AR-U,annual,2016,naphtha combustion consumption by freight transport,1.4638007999999998,TJ,CO2,73300.0,kg/TJ,107296.59863999998,kg +2d43a5d8-f6c5-316f-b1a5-1d383fa45517,SESCO,II.1.1,Chubut,AR-U,annual,2016,naphtha combustion consumption by freight transport,1.4638007999999998,TJ,CH4,3.0,kg/TJ,4.3914024,kg +3b38c15e-140e-34de-87be-12a7ab79bfe5,SESCO,II.1.1,Chubut,AR-U,annual,2016,naphtha combustion consumption by freight transport,1.4638007999999998,TJ,N2O,0.6,kg/TJ,0.8782804799999998,kg +a9ebe348-81f4-3146-8f08-634c622f3c59,SESCO,II.1.1,Corrientes,AR-W,annual,2016,naphtha combustion consumption by freight transport,1.1588422999999999,TJ,CO2,73300.0,kg/TJ,84943.14059,kg +e1c19fd7-a01e-3299-9d02-4a0d4c68ca99,SESCO,II.1.1,Corrientes,AR-W,annual,2016,naphtha combustion consumption by freight transport,1.1588422999999999,TJ,CH4,3.0,kg/TJ,3.4765268999999996,kg +d98cc5fc-2b1e-369a-9599-485bb896bc81,SESCO,II.1.1,Corrientes,AR-W,annual,2016,naphtha combustion consumption by freight transport,1.1588422999999999,TJ,N2O,0.6,kg/TJ,0.6953053799999999,kg +ef67fc6b-1973-327b-a136-c211743c3144,SESCO,II.1.1,Córdoba,AR-X,annual,2016,naphtha combustion consumption by freight transport,5.76371565,TJ,CO2,73300.0,kg/TJ,422480.357145,kg +7452cb25-6d23-367b-9aed-92de415bef56,SESCO,II.1.1,Córdoba,AR-X,annual,2016,naphtha combustion consumption by freight transport,5.76371565,TJ,CH4,3.0,kg/TJ,17.291146949999998,kg +e5b1de0c-7865-341f-9856-15bcb356e3ae,SESCO,II.1.1,Córdoba,AR-X,annual,2016,naphtha combustion consumption by freight transport,5.76371565,TJ,N2O,0.6,kg/TJ,3.45822939,kg +ca357043-7b09-31bb-897b-9187a1ee4dff,SESCO,II.1.1,Entre Rios,AR-E,annual,2016,naphtha combustion consumption by freight transport,1.8602468499999998,TJ,CO2,73300.0,kg/TJ,136356.094105,kg +dd4fb945-e1e6-3aca-bd61-e7ca7f7b52ac,SESCO,II.1.1,Entre Rios,AR-E,annual,2016,naphtha combustion consumption by freight transport,1.8602468499999998,TJ,CH4,3.0,kg/TJ,5.58074055,kg +13d16e6a-4128-3f82-a457-0d55af5fca06,SESCO,II.1.1,Entre Rios,AR-E,annual,2016,naphtha combustion consumption by freight transport,1.8602468499999998,TJ,N2O,0.6,kg/TJ,1.11614811,kg +df7f0b68-d436-32ad-b969-3000fa44828e,SESCO,II.1.1,Formosa,AR-P,annual,2016,naphtha combustion consumption by freight transport,0.12198339999999999,TJ,CO2,73300.0,kg/TJ,8941.38322,kg +5f465a18-8705-3cc8-b35d-607515437e40,SESCO,II.1.1,Formosa,AR-P,annual,2016,naphtha combustion consumption by freight transport,0.12198339999999999,TJ,CH4,3.0,kg/TJ,0.3659502,kg +1997caf0-7ba5-31db-9877-55f837609a23,SESCO,II.1.1,Formosa,AR-P,annual,2016,naphtha combustion consumption by freight transport,0.12198339999999999,TJ,N2O,0.6,kg/TJ,0.07319004,kg +5a31265f-1605-3555-833a-f7bc9504b42e,SESCO,II.1.1,Mendoza,AR-M,annual,2016,naphtha combustion consumption by freight transport,9.85015955,TJ,CO2,73300.0,kg/TJ,722016.6950150001,kg +eb83ff09-0354-3dcc-9318-bdc31da3b4d2,SESCO,II.1.1,Mendoza,AR-M,annual,2016,naphtha combustion consumption by freight transport,9.85015955,TJ,CH4,3.0,kg/TJ,29.550478650000002,kg +add4d7ea-2111-3413-832a-37bdb163152e,SESCO,II.1.1,Mendoza,AR-M,annual,2016,naphtha combustion consumption by freight transport,9.85015955,TJ,N2O,0.6,kg/TJ,5.91009573,kg +93f301d9-a24a-3bc6-97c1-12d1c59e5ec6,SESCO,II.1.1,Misiones,AR-N,annual,2016,naphtha combustion consumption by freight transport,0.64041285,TJ,CO2,73300.0,kg/TJ,46942.261905,kg +ab09f78e-fbf8-3cc5-bcb0-da4c2f5cb03e,SESCO,II.1.1,Misiones,AR-N,annual,2016,naphtha combustion consumption by freight transport,0.64041285,TJ,CH4,3.0,kg/TJ,1.92123855,kg +b336b34c-a2fa-3918-b2ca-1a64164d43f3,SESCO,II.1.1,Misiones,AR-N,annual,2016,naphtha combustion consumption by freight transport,0.64041285,TJ,N2O,0.6,kg/TJ,0.38424771,kg +ce5edc45-79f5-3001-9402-5d4c8387c321,SESCO,II.1.1,Neuquén,AR-Q,annual,2016,naphtha combustion consumption by freight transport,1.6162800499999999,TJ,CO2,73300.0,kg/TJ,118473.32766499999,kg +98bf00f5-8869-3737-9643-7feb902fa489,SESCO,II.1.1,Neuquén,AR-Q,annual,2016,naphtha combustion consumption by freight transport,1.6162800499999999,TJ,CH4,3.0,kg/TJ,4.848840149999999,kg +59fb8451-8318-32dc-b0f6-8ffe6a74b128,SESCO,II.1.1,Neuquén,AR-Q,annual,2016,naphtha combustion consumption by freight transport,1.6162800499999999,TJ,N2O,0.6,kg/TJ,0.9697680299999999,kg +acf5a64e-f24a-309d-bef6-b4c6f74b1fe7,SESCO,II.1.1,Rio Negro,AR-R,annual,2016,naphtha combustion consumption by freight transport,1.5247924999999998,TJ,CO2,73300.0,kg/TJ,111767.29024999998,kg +e70e2115-5ca0-3846-8d40-4869770a8d92,SESCO,II.1.1,Rio Negro,AR-R,annual,2016,naphtha combustion consumption by freight transport,1.5247924999999998,TJ,CH4,3.0,kg/TJ,4.574377499999999,kg +ce0220e0-ed89-3114-b102-db4fd6927819,SESCO,II.1.1,Rio Negro,AR-R,annual,2016,naphtha combustion consumption by freight transport,1.5247924999999998,TJ,N2O,0.6,kg/TJ,0.9148754999999998,kg +c56d93f8-05d0-3d96-9ee0-678560f10f51,SESCO,II.1.1,Salta,AR-A,annual,2016,naphtha combustion consumption by freight transport,9.758671999999999,TJ,CO2,73300.0,kg/TJ,715310.6575999999,kg +b15b24dd-4d65-3a61-95f8-487519b46190,SESCO,II.1.1,Salta,AR-A,annual,2016,naphtha combustion consumption by freight transport,9.758671999999999,TJ,CH4,3.0,kg/TJ,29.276016,kg +60b78482-1b03-35b2-9cb6-13a338047976,SESCO,II.1.1,Salta,AR-A,annual,2016,naphtha combustion consumption by freight transport,9.758671999999999,TJ,N2O,0.6,kg/TJ,5.855203199999999,kg +c4f2c08e-f4e7-3e67-a651-1faa9c4cbb50,SESCO,II.1.1,San Juan,AR-J,annual,2016,naphtha combustion consumption by freight transport,0.21347095,TJ,CO2,73300.0,kg/TJ,15647.420634999999,kg +241442d6-e563-36b3-859e-e926b4c1faad,SESCO,II.1.1,San Juan,AR-J,annual,2016,naphtha combustion consumption by freight transport,0.21347095,TJ,CH4,3.0,kg/TJ,0.6404128499999999,kg +8f61e6bc-648f-3ac8-812c-40a08d6c0acf,SESCO,II.1.1,San Juan,AR-J,annual,2016,naphtha combustion consumption by freight transport,0.21347095,TJ,N2O,0.6,kg/TJ,0.12808256999999998,kg +56ceccec-f883-3f1b-8a7d-d06c7e27bed9,SESCO,II.1.1,San Luis,AR-D,annual,2016,naphtha combustion consumption by freight transport,0.36595019999999995,TJ,CO2,73300.0,kg/TJ,26824.149659999995,kg +0dc500f8-2094-32b1-9983-ec97fd0356a5,SESCO,II.1.1,San Luis,AR-D,annual,2016,naphtha combustion consumption by freight transport,0.36595019999999995,TJ,CH4,3.0,kg/TJ,1.0978506,kg +cdc9bfcc-0444-32f3-9e3f-11f5b2a8b34f,SESCO,II.1.1,San Luis,AR-D,annual,2016,naphtha combustion consumption by freight transport,0.36595019999999995,TJ,N2O,0.6,kg/TJ,0.21957011999999995,kg +a991aa7a-c311-337c-bad1-5e3a1716c5dc,SESCO,II.1.1,Santa Fe,AR-S,annual,2016,naphtha combustion consumption by freight transport,16.010321249999997,TJ,CO2,73300.0,kg/TJ,1173556.547625,kg +fd3cd026-b9cd-3f76-8b1a-57c98c59443f,SESCO,II.1.1,Santa Fe,AR-S,annual,2016,naphtha combustion consumption by freight transport,16.010321249999997,TJ,CH4,3.0,kg/TJ,48.03096374999999,kg +fe39d34f-1224-33fa-b7b3-dbfd0570b10b,SESCO,II.1.1,Santa Fe,AR-S,annual,2016,naphtha combustion consumption by freight transport,16.010321249999997,TJ,N2O,0.6,kg/TJ,9.606192749999998,kg +1b7e0c36-b53e-3339-abb6-f3bf221fe25e,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2016,naphtha combustion consumption by freight transport,0.12198339999999999,TJ,CO2,73300.0,kg/TJ,8941.38322,kg +90245563-8e3c-3110-9b39-12294d11a5ff,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2016,naphtha combustion consumption by freight transport,0.12198339999999999,TJ,CH4,3.0,kg/TJ,0.3659502,kg +54bbb972-c30b-3f19-a8b2-db34f48a9de3,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2016,naphtha combustion consumption by freight transport,0.12198339999999999,TJ,N2O,0.6,kg/TJ,0.07319004,kg +4705480b-7d79-3592-b3bb-d36467bb9dd1,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2016,naphtha combustion consumption by freight transport,0.21347095,TJ,CO2,73300.0,kg/TJ,15647.420634999999,kg +b8b89a22-016e-3d56-a5e4-5afa7d323bb8,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2016,naphtha combustion consumption by freight transport,0.21347095,TJ,CH4,3.0,kg/TJ,0.6404128499999999,kg +7015c760-97b1-3c09-be51-4228ca10081b,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2016,naphtha combustion consumption by freight transport,0.21347095,TJ,N2O,0.6,kg/TJ,0.12808256999999998,kg +025c76bc-9027-37d9-95cb-3bd4ca31c161,SESCO,II.1.1,Tucuman,AR-T,annual,2016,naphtha combustion consumption by freight transport,2.04322195,TJ,CO2,73300.0,kg/TJ,149768.168935,kg +e554092e-a9bb-395e-bd16-a7bddbe6fb0b,SESCO,II.1.1,Tucuman,AR-T,annual,2016,naphtha combustion consumption by freight transport,2.04322195,TJ,CH4,3.0,kg/TJ,6.12966585,kg +685377e8-fae7-3267-af5a-db8258fd2885,SESCO,II.1.1,Tucuman,AR-T,annual,2016,naphtha combustion consumption by freight transport,2.04322195,TJ,N2O,0.6,kg/TJ,1.22593317,kg +1a736b1e-fc63-3d2c-a314-b796adbde14b,SESCO,II.1.1,Buenos Aires,AR-B,annual,2016,naphtha combustion consumption by freight transport,208.62210985,TJ,CO2,73300.0,kg/TJ,15292000.652004998,kg +29ef17cd-aa38-3c36-b859-016d59183192,SESCO,II.1.1,Buenos Aires,AR-B,annual,2016,naphtha combustion consumption by freight transport,208.62210985,TJ,CH4,3.0,kg/TJ,625.8663295499999,kg +29d912bb-5f74-3dff-aa97-1799d26ccd8c,SESCO,II.1.1,Buenos Aires,AR-B,annual,2016,naphtha combustion consumption by freight transport,208.62210985,TJ,N2O,0.6,kg/TJ,125.17326590999998,kg +350eedd1-7cd4-3410-83eb-83f94854b7af,SESCO,II.1.1,Capital Federal,AR-C,annual,2016,naphtha combustion consumption by freight transport,235.51944955,TJ,CO2,73300.0,kg/TJ,17263575.652015,kg +1399ea06-0e24-3156-a5ba-c6560dbd2898,SESCO,II.1.1,Capital Federal,AR-C,annual,2016,naphtha combustion consumption by freight transport,235.51944955,TJ,CH4,3.0,kg/TJ,706.55834865,kg +62d83552-d687-3a16-a1b3-9a2ef72f46ab,SESCO,II.1.1,Capital Federal,AR-C,annual,2016,naphtha combustion consumption by freight transport,235.51944955,TJ,N2O,0.6,kg/TJ,141.31166972999998,kg +38a617f1-c077-30eb-8c2b-b1b53df66601,SESCO,II.1.1,Chaco,AR-H,annual,2016,naphtha combustion consumption by freight transport,8.2948712,TJ,CO2,73300.0,kg/TJ,608014.0589599999,kg +233d831e-d64d-37a1-aedd-4392f34fa4fe,SESCO,II.1.1,Chaco,AR-H,annual,2016,naphtha combustion consumption by freight transport,8.2948712,TJ,CH4,3.0,kg/TJ,24.884613599999998,kg +61cecfa2-a05a-3480-aad6-bd9d21cc2f63,SESCO,II.1.1,Chaco,AR-H,annual,2016,naphtha combustion consumption by freight transport,8.2948712,TJ,N2O,0.6,kg/TJ,4.976922719999999,kg +9640dd7a-cbac-32ab-9333-37ae23e35bf6,SESCO,II.1.1,Chubut,AR-U,annual,2016,naphtha combustion consumption by freight transport,0.9758671999999999,TJ,CO2,73300.0,kg/TJ,71531.06576,kg +4de3b63c-142c-3ec7-b4eb-873e43c54b0d,SESCO,II.1.1,Chubut,AR-U,annual,2016,naphtha combustion consumption by freight transport,0.9758671999999999,TJ,CH4,3.0,kg/TJ,2.9276016,kg +39b0fa46-f234-36bc-b6a8-972c7c63c64f,SESCO,II.1.1,Chubut,AR-U,annual,2016,naphtha combustion consumption by freight transport,0.9758671999999999,TJ,N2O,0.6,kg/TJ,0.58552032,kg +3c44d3e1-8c4d-3ff6-a2be-86789fc8e3b1,SESCO,II.1.1,Corrientes,AR-W,annual,2016,naphtha combustion consumption by freight transport,3.1105766999999998,TJ,CO2,73300.0,kg/TJ,228005.27211,kg +2a37ee13-77e8-3d17-828d-1709a0fdcde6,SESCO,II.1.1,Corrientes,AR-W,annual,2016,naphtha combustion consumption by freight transport,3.1105766999999998,TJ,CH4,3.0,kg/TJ,9.3317301,kg +541e3093-bd9e-33cf-a8c2-793ce6bbb82f,SESCO,II.1.1,Corrientes,AR-W,annual,2016,naphtha combustion consumption by freight transport,3.1105766999999998,TJ,N2O,0.6,kg/TJ,1.8663460199999997,kg +bb5e9904-b367-3a22-b495-80909cb4af76,SESCO,II.1.1,Córdoba,AR-X,annual,2016,naphtha combustion consumption by freight transport,7.288508149999999,TJ,CO2,73300.0,kg/TJ,534247.647395,kg +6cedc262-1429-311d-918a-8650f3f292d4,SESCO,II.1.1,Córdoba,AR-X,annual,2016,naphtha combustion consumption by freight transport,7.288508149999999,TJ,CH4,3.0,kg/TJ,21.86552445,kg +fedd2d61-acb3-35eb-9efd-4edb5b2bbf59,SESCO,II.1.1,Córdoba,AR-X,annual,2016,naphtha combustion consumption by freight transport,7.288508149999999,TJ,N2O,0.6,kg/TJ,4.37310489,kg +3c926977-9d8f-3497-a963-61215e546e5c,SESCO,II.1.1,Entre Rios,AR-E,annual,2016,naphtha combustion consumption by freight transport,3.20206425,TJ,CO2,73300.0,kg/TJ,234711.309525,kg +e891e378-8138-3c4d-864f-4292d75e5cb4,SESCO,II.1.1,Entre Rios,AR-E,annual,2016,naphtha combustion consumption by freight transport,3.20206425,TJ,CH4,3.0,kg/TJ,9.60619275,kg +f92ceb3a-3b32-323d-bb24-04fdfdd7c7d9,SESCO,II.1.1,Entre Rios,AR-E,annual,2016,naphtha combustion consumption by freight transport,3.20206425,TJ,N2O,0.6,kg/TJ,1.9212385499999998,kg +66b4a2b4-0ad6-305d-84f9-33b70cfa2cf6,SESCO,II.1.1,Formosa,AR-P,annual,2016,naphtha combustion consumption by freight transport,0.060991699999999996,TJ,CO2,73300.0,kg/TJ,4470.69161,kg +2a102aa2-04bd-39f1-9b2a-f3e764a99790,SESCO,II.1.1,Formosa,AR-P,annual,2016,naphtha combustion consumption by freight transport,0.060991699999999996,TJ,CH4,3.0,kg/TJ,0.1829751,kg +1ed581af-e87b-37f9-9143-553c08782983,SESCO,II.1.1,Formosa,AR-P,annual,2016,naphtha combustion consumption by freight transport,0.060991699999999996,TJ,N2O,0.6,kg/TJ,0.03659502,kg +24d9cd3f-a60f-378c-a1cf-fa69829bff65,SESCO,II.1.1,Jujuy,AR-Y,annual,2016,naphtha combustion consumption by freight transport,0.030495849999999998,TJ,CO2,73300.0,kg/TJ,2235.345805,kg +a03871f8-083c-3afd-b4c0-0fba3ef4d022,SESCO,II.1.1,Jujuy,AR-Y,annual,2016,naphtha combustion consumption by freight transport,0.030495849999999998,TJ,CH4,3.0,kg/TJ,0.09148755,kg +c001fb4a-7dc0-3bba-9d9f-b00c7f1ba396,SESCO,II.1.1,Jujuy,AR-Y,annual,2016,naphtha combustion consumption by freight transport,0.030495849999999998,TJ,N2O,0.6,kg/TJ,0.01829751,kg +a18ee56c-dd72-3da3-8c30-842a8fb6bd2d,SESCO,II.1.1,La Pampa,AR-L,annual,2016,naphtha combustion consumption by freight transport,0.18297509999999997,TJ,CO2,73300.0,kg/TJ,13412.074829999998,kg +915fc8e9-3ed8-3203-8e9a-75006f00939b,SESCO,II.1.1,La Pampa,AR-L,annual,2016,naphtha combustion consumption by freight transport,0.18297509999999997,TJ,CH4,3.0,kg/TJ,0.5489253,kg +3c419261-aec1-3526-8dbe-69ad41efdecf,SESCO,II.1.1,La Pampa,AR-L,annual,2016,naphtha combustion consumption by freight transport,0.18297509999999997,TJ,N2O,0.6,kg/TJ,0.10978505999999998,kg +409b7edb-8d47-3d7a-82ee-cf571f0786bc,SESCO,II.1.1,La Rioja,AR-F,annual,2016,naphtha combustion consumption by freight transport,1.0673547499999998,TJ,CO2,73300.0,kg/TJ,78237.10317499998,kg +a1cef207-18c3-3c5b-b3f8-6c1ecb9f8937,SESCO,II.1.1,La Rioja,AR-F,annual,2016,naphtha combustion consumption by freight transport,1.0673547499999998,TJ,CH4,3.0,kg/TJ,3.2020642499999994,kg +7a5d5e59-33f3-3e3a-bdf4-3dc0c35cc9b8,SESCO,II.1.1,La Rioja,AR-F,annual,2016,naphtha combustion consumption by freight transport,1.0673547499999998,TJ,N2O,0.6,kg/TJ,0.6404128499999998,kg +c8134b33-756c-39e2-a5cc-de6c350172e9,SESCO,II.1.1,Mendoza,AR-M,annual,2016,naphtha combustion consumption by freight transport,7.014045499999999,TJ,CO2,73300.0,kg/TJ,514129.53514999995,kg +7adc24dc-61c4-3302-a8eb-8cda0c1d3a74,SESCO,II.1.1,Mendoza,AR-M,annual,2016,naphtha combustion consumption by freight transport,7.014045499999999,TJ,CH4,3.0,kg/TJ,21.042136499999998,kg +7b62361a-5162-3ff5-a95c-a75493854d69,SESCO,II.1.1,Mendoza,AR-M,annual,2016,naphtha combustion consumption by freight transport,7.014045499999999,TJ,N2O,0.6,kg/TJ,4.208427299999999,kg +3266ea30-e56c-3377-90e6-0e2036366508,SESCO,II.1.1,Misiones,AR-N,annual,2016,naphtha combustion consumption by freight transport,2.0127261,TJ,CO2,73300.0,kg/TJ,147532.82313,kg +4ca518cf-bb2d-3a84-bbc0-f5681573773f,SESCO,II.1.1,Misiones,AR-N,annual,2016,naphtha combustion consumption by freight transport,2.0127261,TJ,CH4,3.0,kg/TJ,6.0381783,kg +4388bbdb-af30-3032-9342-22f0b9e5b8c0,SESCO,II.1.1,Misiones,AR-N,annual,2016,naphtha combustion consumption by freight transport,2.0127261,TJ,N2O,0.6,kg/TJ,1.20763566,kg +29a6dee5-e55b-3d19-aab1-8d512bdba795,SESCO,II.1.1,Neuquén,AR-Q,annual,2016,naphtha combustion consumption by freight transport,2.53115555,TJ,CO2,73300.0,kg/TJ,185533.70181499998,kg +933d17f6-1a9e-3a02-8cf6-ebe4e5c8383c,SESCO,II.1.1,Neuquén,AR-Q,annual,2016,naphtha combustion consumption by freight transport,2.53115555,TJ,CH4,3.0,kg/TJ,7.59346665,kg +dacf398d-5a57-3e24-8bac-41e50cad70cc,SESCO,II.1.1,Neuquén,AR-Q,annual,2016,naphtha combustion consumption by freight transport,2.53115555,TJ,N2O,0.6,kg/TJ,1.5186933299999998,kg +c9566e5e-de34-34b5-91e0-e5f24f34844d,SESCO,II.1.1,Rio Negro,AR-R,annual,2016,naphtha combustion consumption by freight transport,5.367269599999999,TJ,CO2,73300.0,kg/TJ,393420.86168,kg +ea9c8069-ec7e-3e8e-8798-7eed3505d6ad,SESCO,II.1.1,Rio Negro,AR-R,annual,2016,naphtha combustion consumption by freight transport,5.367269599999999,TJ,CH4,3.0,kg/TJ,16.101808799999997,kg +6841c748-2a5a-38e0-824c-e73986e2f860,SESCO,II.1.1,Rio Negro,AR-R,annual,2016,naphtha combustion consumption by freight transport,5.367269599999999,TJ,N2O,0.6,kg/TJ,3.2203617599999994,kg +125c26f3-657f-3291-a754-d3013433495a,SESCO,II.1.1,Salta,AR-A,annual,2016,naphtha combustion consumption by freight transport,2.6226430999999994,TJ,CO2,73300.0,kg/TJ,192239.73922999995,kg +0b8a61a7-2be8-3fcb-bdd6-2b305795b93b,SESCO,II.1.1,Salta,AR-A,annual,2016,naphtha combustion consumption by freight transport,2.6226430999999994,TJ,CH4,3.0,kg/TJ,7.867929299999998,kg +eadd0e98-dfb8-38be-892c-d46892bf4f17,SESCO,II.1.1,Salta,AR-A,annual,2016,naphtha combustion consumption by freight transport,2.6226430999999994,TJ,N2O,0.6,kg/TJ,1.5735858599999997,kg +00eb8c20-1e13-366c-81b0-ab52804887bd,SESCO,II.1.1,San Juan,AR-J,annual,2016,naphtha combustion consumption by freight transport,0.09148754999999999,TJ,CO2,73300.0,kg/TJ,6706.037414999999,kg +dc6c72c7-183c-3f0a-80bf-c31d229ffc56,SESCO,II.1.1,San Juan,AR-J,annual,2016,naphtha combustion consumption by freight transport,0.09148754999999999,TJ,CH4,3.0,kg/TJ,0.27446265,kg +c422a870-6b79-33de-93df-dbd35dca219f,SESCO,II.1.1,San Juan,AR-J,annual,2016,naphtha combustion consumption by freight transport,0.09148754999999999,TJ,N2O,0.6,kg/TJ,0.05489252999999999,kg +03909507-598d-3ec8-b8d4-665693da83c4,SESCO,II.1.1,San Luis,AR-D,annual,2016,naphtha combustion consumption by freight transport,0.51842945,TJ,CO2,73300.0,kg/TJ,38000.878684999996,kg +b1264480-4077-3d28-8ddb-e126578f3ddb,SESCO,II.1.1,San Luis,AR-D,annual,2016,naphtha combustion consumption by freight transport,0.51842945,TJ,CH4,3.0,kg/TJ,1.5552883499999999,kg +0365b0ee-e481-3d4c-ac62-13305ada27fc,SESCO,II.1.1,San Luis,AR-D,annual,2016,naphtha combustion consumption by freight transport,0.51842945,TJ,N2O,0.6,kg/TJ,0.31105766999999995,kg +989c4eab-11e5-3c38-b313-7f529f67d3d5,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2016,naphtha combustion consumption by freight transport,0.09148754999999999,TJ,CO2,73300.0,kg/TJ,6706.037414999999,kg +cef3746d-b6c0-3e74-a264-e793386731ec,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2016,naphtha combustion consumption by freight transport,0.09148754999999999,TJ,CH4,3.0,kg/TJ,0.27446265,kg +9cfc3858-25b4-34c8-a2c6-ec034352ed48,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2016,naphtha combustion consumption by freight transport,0.09148754999999999,TJ,N2O,0.6,kg/TJ,0.05489252999999999,kg +7ec2cf18-fed8-3d1a-8b51-39717324b944,SESCO,II.1.1,Santa Fe,AR-S,annual,2016,naphtha combustion consumption by freight transport,24.701638499999998,TJ,CO2,73300.0,kg/TJ,1810630.1020499999,kg +44955277-444f-3b36-b5b5-ff3e0112f593,SESCO,II.1.1,Santa Fe,AR-S,annual,2016,naphtha combustion consumption by freight transport,24.701638499999998,TJ,CH4,3.0,kg/TJ,74.10491549999999,kg +9143472b-3c27-36db-8795-cfd659f0e6d6,SESCO,II.1.1,Santa Fe,AR-S,annual,2016,naphtha combustion consumption by freight transport,24.701638499999998,TJ,N2O,0.6,kg/TJ,14.820983099999998,kg +9ea3f3ce-dae8-3a9a-a441-f2af4d07c004,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2016,naphtha combustion consumption by freight transport,0.36595019999999995,TJ,CO2,73300.0,kg/TJ,26824.149659999995,kg +c9a64556-1008-3d19-9c32-badc19ce09ec,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2016,naphtha combustion consumption by freight transport,0.36595019999999995,TJ,CH4,3.0,kg/TJ,1.0978506,kg +347eabbf-905a-3743-81ef-dc9a90f416d3,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2016,naphtha combustion consumption by freight transport,0.36595019999999995,TJ,N2O,0.6,kg/TJ,0.21957011999999995,kg +9e8a23d5-fbf9-3ca7-a035-f71c8a9ed1a6,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2016,naphtha combustion consumption by freight transport,0.060991699999999996,TJ,CO2,73300.0,kg/TJ,4470.69161,kg +fb160075-d3c8-314f-bca0-67571c571f4e,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2016,naphtha combustion consumption by freight transport,0.060991699999999996,TJ,CH4,3.0,kg/TJ,0.1829751,kg +0e9b2473-fea2-326d-a4d5-e5ba2243c1fb,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2016,naphtha combustion consumption by freight transport,0.060991699999999996,TJ,N2O,0.6,kg/TJ,0.03659502,kg +67fc95d6-6e0f-3560-9e77-6e676ff81786,SESCO,II.1.1,Tucuman,AR-T,annual,2016,naphtha combustion consumption by freight transport,1.7687592999999997,TJ,CO2,73300.0,kg/TJ,129650.05668999998,kg +fc250f48-71b7-3706-81bd-2beccd021d5d,SESCO,II.1.1,Tucuman,AR-T,annual,2016,naphtha combustion consumption by freight transport,1.7687592999999997,TJ,CH4,3.0,kg/TJ,5.3062778999999995,kg +01defdea-d6ac-315a-a195-d9b345739ae9,SESCO,II.1.1,Tucuman,AR-T,annual,2016,naphtha combustion consumption by freight transport,1.7687592999999997,TJ,N2O,0.6,kg/TJ,1.0612555799999999,kg +3b67df44-80d1-39ae-96ef-d778c03db5b8,SESCO,II.1.1,Capital Federal,AR-C,annual,2017,naphtha combustion consumption by to the public,18.061766799999997,TJ,CO2,73300.0,kg/TJ,1323927.50644,kg +fb566717-6045-38e6-bb02-31bc659e573a,SESCO,II.1.1,Capital Federal,AR-C,annual,2017,naphtha combustion consumption by to the public,18.061766799999997,TJ,CH4,3.0,kg/TJ,54.18530039999999,kg +cac53262-d7fe-30d8-ba48-95cd2d193a7e,SESCO,II.1.1,Capital Federal,AR-C,annual,2017,naphtha combustion consumption by to the public,18.061766799999997,TJ,N2O,0.6,kg/TJ,10.837060079999999,kg +cc148f4d-4640-3416-92f7-ca2c22562961,SESCO,II.1.1,Capital Federal,AR-C,annual,2017,naphtha combustion consumption by to the public,4.1008352,TJ,CO2,73300.0,kg/TJ,300591.22015999997,kg +b7cec397-7130-3791-a252-de939abcf700,SESCO,II.1.1,Capital Federal,AR-C,annual,2017,naphtha combustion consumption by to the public,4.1008352,TJ,CH4,3.0,kg/TJ,12.3025056,kg +3eedd72a-3df9-31ad-96d3-5539577cfa7f,SESCO,II.1.1,Capital Federal,AR-C,annual,2017,naphtha combustion consumption by to the public,4.1008352,TJ,N2O,0.6,kg/TJ,2.4605011199999995,kg +3a9ec4f2-3396-3100-96d0-efd573582f9f,SESCO,II.5.1,Buenos Aires,AR-B,annual,2017,naphtha combustion consumption by agriculture machines,45.109187199999994,TJ,CO2,73300.0,kg/TJ,3306503.4217599994,kg +ac2ac784-aa0a-36fd-bb1e-2c46db6bb73b,SESCO,II.5.1,Buenos Aires,AR-B,annual,2017,naphtha combustion consumption by agriculture machines,45.109187199999994,TJ,CH4,3.0,kg/TJ,135.32756159999997,kg +60348c40-f536-3209-834b-2c5db0c913e5,SESCO,II.5.1,Buenos Aires,AR-B,annual,2017,naphtha combustion consumption by agriculture machines,45.109187199999994,TJ,N2O,0.6,kg/TJ,27.065512319999996,kg +537770ea-d885-30f2-bac4-2a281eca5306,SESCO,II.5.1,Chaco,AR-H,annual,2017,naphtha combustion consumption by agriculture machines,18.0316136,TJ,CO2,73300.0,kg/TJ,1321717.27688,kg +2d945d7d-b3cc-3625-8ad9-53bedfc14ace,SESCO,II.5.1,Chaco,AR-H,annual,2017,naphtha combustion consumption by agriculture machines,18.0316136,TJ,CH4,3.0,kg/TJ,54.0948408,kg +c9476f86-b15a-35b9-a6ad-8f1d2b356a7f,SESCO,II.5.1,Chaco,AR-H,annual,2017,naphtha combustion consumption by agriculture machines,18.0316136,TJ,N2O,0.6,kg/TJ,10.818968159999999,kg +24008298-014f-32ae-9c4c-60f47a424c25,SESCO,II.5.1,Córdoba,AR-X,annual,2017,naphtha combustion consumption by agriculture machines,8.8348876,TJ,CO2,73300.0,kg/TJ,647597.26108,kg +c588277a-8eb9-3b0a-839c-873ec3e20e34,SESCO,II.5.1,Córdoba,AR-X,annual,2017,naphtha combustion consumption by agriculture machines,8.8348876,TJ,CH4,3.0,kg/TJ,26.5046628,kg +1101c00d-7e38-32a9-a2cd-aa410095c265,SESCO,II.5.1,Córdoba,AR-X,annual,2017,naphtha combustion consumption by agriculture machines,8.8348876,TJ,N2O,0.6,kg/TJ,5.30093256,kg +8b83fb3b-8610-349c-905e-0c504845a369,SESCO,II.5.1,Santa Fe,AR-S,annual,2017,naphtha combustion consumption by agriculture machines,54.5471388,TJ,CO2,73300.0,kg/TJ,3998305.27404,kg +4f626f46-005c-3827-9037-2b03a5546572,SESCO,II.5.1,Santa Fe,AR-S,annual,2017,naphtha combustion consumption by agriculture machines,54.5471388,TJ,CH4,3.0,kg/TJ,163.6414164,kg +417af5e0-1db2-3efa-8a18-8db3ad58736a,SESCO,II.5.1,Santa Fe,AR-S,annual,2017,naphtha combustion consumption by agriculture machines,54.5471388,TJ,N2O,0.6,kg/TJ,32.72828328,kg +76b92e86-7be3-3abe-ae5e-c13bf3795d40,SESCO,II.5.1,Tucuman,AR-T,annual,2017,naphtha combustion consumption by agriculture machines,38.053338399999994,TJ,CO2,73300.0,kg/TJ,2789309.7047199993,kg +209fe868-8a8d-3da1-a671-4c396b2e3dce,SESCO,II.5.1,Tucuman,AR-T,annual,2017,naphtha combustion consumption by agriculture machines,38.053338399999994,TJ,CH4,3.0,kg/TJ,114.16001519999998,kg +c6882673-8b10-35c4-a66f-b1a247437398,SESCO,II.5.1,Tucuman,AR-T,annual,2017,naphtha combustion consumption by agriculture machines,38.053338399999994,TJ,N2O,0.6,kg/TJ,22.832003039999996,kg +e4ac92cf-1f52-3e77-bc75-dfd7234f1d3c,SESCO,II.5.1,Buenos Aires,AR-B,annual,2017,naphtha combustion consumption by agriculture machines,10.101322,TJ,CO2,73300.0,kg/TJ,740426.9026,kg +e666a57b-cfbb-33d1-bf55-827557c63086,SESCO,II.5.1,Buenos Aires,AR-B,annual,2017,naphtha combustion consumption by agriculture machines,10.101322,TJ,CH4,3.0,kg/TJ,30.303966,kg +24c0c06b-0191-35ce-91a3-5b2b57fc4a01,SESCO,II.5.1,Buenos Aires,AR-B,annual,2017,naphtha combustion consumption by agriculture machines,10.101322,TJ,N2O,0.6,kg/TJ,6.0607932,kg +ec1af56e-607d-3d13-bcfc-c952a0e76866,SESCO,II.5.1,Chaco,AR-H,annual,2017,naphtha combustion consumption by agriculture machines,2.8344007999999996,TJ,CO2,73300.0,kg/TJ,207761.57863999996,kg +404ef750-d2e1-3b18-99db-faf155323cdd,SESCO,II.5.1,Chaco,AR-H,annual,2017,naphtha combustion consumption by agriculture machines,2.8344007999999996,TJ,CH4,3.0,kg/TJ,8.5032024,kg +888074b9-a09a-3aad-80bd-ea53ce84b71f,SESCO,II.5.1,Chaco,AR-H,annual,2017,naphtha combustion consumption by agriculture machines,2.8344007999999996,TJ,N2O,0.6,kg/TJ,1.7006404799999997,kg +a48a2bce-b82f-323b-b9dc-e6324a86dd7c,SESCO,II.5.1,Córdoba,AR-X,annual,2017,naphtha combustion consumption by agriculture machines,4.6134395999999995,TJ,CO2,73300.0,kg/TJ,338165.12268,kg +f7788566-5602-398b-9e0d-a27a0307afc7,SESCO,II.5.1,Córdoba,AR-X,annual,2017,naphtha combustion consumption by agriculture machines,4.6134395999999995,TJ,CH4,3.0,kg/TJ,13.840318799999999,kg +c868b1c2-5a58-3404-ac4d-aeccdab09889,SESCO,II.5.1,Córdoba,AR-X,annual,2017,naphtha combustion consumption by agriculture machines,4.6134395999999995,TJ,N2O,0.6,kg/TJ,2.7680637599999995,kg +36dcb8e6-1ee4-37b1-ac1c-3a99cb666fa8,SESCO,II.5.1,Santa Fe,AR-S,annual,2017,naphtha combustion consumption by agriculture machines,17.941153999999997,TJ,CO2,73300.0,kg/TJ,1315086.5881999999,kg +5f081bfb-f610-3424-9086-ce23b1ea8c91,SESCO,II.5.1,Santa Fe,AR-S,annual,2017,naphtha combustion consumption by agriculture machines,17.941153999999997,TJ,CH4,3.0,kg/TJ,53.82346199999999,kg +162a0487-a5c9-3d41-91b7-b067a7cd7117,SESCO,II.5.1,Santa Fe,AR-S,annual,2017,naphtha combustion consumption by agriculture machines,17.941153999999997,TJ,N2O,0.6,kg/TJ,10.764692399999998,kg +38d18e0e-2ca3-39aa-9e93-1cdbc488c315,SESCO,II.5.1,Tucuman,AR-T,annual,2017,naphtha combustion consumption by agriculture machines,9.980709199999998,TJ,CO2,73300.0,kg/TJ,731585.9843599999,kg +5408f9aa-df2d-3bf8-90bd-087068f815a1,SESCO,II.5.1,Tucuman,AR-T,annual,2017,naphtha combustion consumption by agriculture machines,9.980709199999998,TJ,CH4,3.0,kg/TJ,29.942127599999992,kg +b062b95a-8379-3648-bf71-209e78051c35,SESCO,II.5.1,Tucuman,AR-T,annual,2017,naphtha combustion consumption by agriculture machines,9.980709199999998,TJ,N2O,0.6,kg/TJ,5.988425519999999,kg +ccf1825f-2f11-3e11-8fae-b55e3d7b3d09,SESCO,II.1.1,Buenos Aires,AR-B,annual,2017,naphtha combustion consumption by to the public,1.8393452,TJ,CO2,73300.0,kg/TJ,134824.00316,kg +bd8b3615-5682-3064-b26c-d6d311512bcc,SESCO,II.1.1,Buenos Aires,AR-B,annual,2017,naphtha combustion consumption by to the public,1.8393452,TJ,CH4,3.0,kg/TJ,5.518035599999999,kg +439ae19d-8c95-3987-9f8f-cc1957a18d3c,SESCO,II.1.1,Buenos Aires,AR-B,annual,2017,naphtha combustion consumption by to the public,1.8393452,TJ,N2O,0.6,kg/TJ,1.10360712,kg +e447802f-d4c0-375d-a9ef-62c08ad88ccf,SESCO,II.1.1,Santa Fe,AR-S,annual,2017,naphtha combustion consumption by to the public,0.9950555999999999,TJ,CO2,73300.0,kg/TJ,72937.57548,kg +605cacda-0735-3a2a-8e5f-fba96b37d021,SESCO,II.1.1,Santa Fe,AR-S,annual,2017,naphtha combustion consumption by to the public,0.9950555999999999,TJ,CH4,3.0,kg/TJ,2.9851668,kg +1b50fca8-f324-3983-a295-7c64126b65a7,SESCO,II.1.1,Santa Fe,AR-S,annual,2017,naphtha combustion consumption by to the public,0.9950555999999999,TJ,N2O,0.6,kg/TJ,0.59703336,kg +21d09130-9d01-38d4-942c-ba571fa6018b,SESCO,II.1.1,Tucuman,AR-T,annual,2017,naphtha combustion consumption by to the public,1.4172003999999998,TJ,CO2,73300.0,kg/TJ,103880.78931999998,kg +173c7c15-b45e-317b-967e-4daa5b1bbbfa,SESCO,II.1.1,Tucuman,AR-T,annual,2017,naphtha combustion consumption by to the public,1.4172003999999998,TJ,CH4,3.0,kg/TJ,4.2516012,kg +add479fd-3ffc-3a11-b60e-ac02e24ae34d,SESCO,II.1.1,Tucuman,AR-T,annual,2017,naphtha combustion consumption by to the public,1.4172003999999998,TJ,N2O,0.6,kg/TJ,0.8503202399999998,kg +27efbd21-2155-3e93-87c1-56acdcbf70d2,SESCO,II.1.1,Buenos Aires,AR-B,annual,2017,naphtha combustion consumption by to the public,9735.8953692,TJ,CO2,73300.0,kg/TJ,713641130.5623599,kg +5d1af1b9-d562-3a16-b96c-07684d31fbec,SESCO,II.1.1,Buenos Aires,AR-B,annual,2017,naphtha combustion consumption by to the public,9735.8953692,TJ,CH4,3.0,kg/TJ,29207.6861076,kg +00080a5e-5f80-3a1f-ad9a-17504eb8ab09,SESCO,II.1.1,Buenos Aires,AR-B,annual,2017,naphtha combustion consumption by to the public,9735.8953692,TJ,N2O,0.6,kg/TJ,5841.53722152,kg +89b4bdd4-9bd7-3e18-bd88-ca7b2cd93761,SESCO,II.1.1,Capital Federal,AR-C,annual,2017,naphtha combustion consumption by to the public,3249.1882192,TJ,CO2,73300.0,kg/TJ,238165496.46736,kg +c3779c2c-ad9d-3ebc-849a-5bf53975880c,SESCO,II.1.1,Capital Federal,AR-C,annual,2017,naphtha combustion consumption by to the public,3249.1882192,TJ,CH4,3.0,kg/TJ,9747.5646576,kg +9b285475-46db-3605-bf7d-f59aaf01fbd7,SESCO,II.1.1,Capital Federal,AR-C,annual,2017,naphtha combustion consumption by to the public,3249.1882192,TJ,N2O,0.6,kg/TJ,1949.5129315199997,kg +359cba13-29e0-3704-8d3a-e96f4a2eef1c,SESCO,II.1.1,Catamarca,AR-K,annual,2017,naphtha combustion consumption by to the public,416.05385359999997,TJ,CO2,73300.0,kg/TJ,30496747.468879998,kg +0ffd2883-3a44-317d-94ab-492c1d473b92,SESCO,II.1.1,Catamarca,AR-K,annual,2017,naphtha combustion consumption by to the public,416.05385359999997,TJ,CH4,3.0,kg/TJ,1248.1615608,kg +02e473ea-63ad-3e32-8c22-4ead7f1cda3d,SESCO,II.1.1,Catamarca,AR-K,annual,2017,naphtha combustion consumption by to the public,416.05385359999997,TJ,N2O,0.6,kg/TJ,249.63231215999997,kg +d9ba0f02-e590-3d97-907f-8950dd35a545,SESCO,II.1.1,Chaco,AR-H,annual,2017,naphtha combustion consumption by to the public,413.52098479999995,TJ,CO2,73300.0,kg/TJ,30311088.185839996,kg +2019d316-94c7-305b-8a63-bb71792a1010,SESCO,II.1.1,Chaco,AR-H,annual,2017,naphtha combustion consumption by to the public,413.52098479999995,TJ,CH4,3.0,kg/TJ,1240.5629543999999,kg +6ebe1feb-844a-3bae-9b71-7615860222cb,SESCO,II.1.1,Chaco,AR-H,annual,2017,naphtha combustion consumption by to the public,413.52098479999995,TJ,N2O,0.6,kg/TJ,248.11259087999997,kg +8a55a5b4-a299-3cf8-8e28-7ff7fd952a8a,SESCO,II.1.1,Chubut,AR-U,annual,2017,naphtha combustion consumption by to the public,307.77371239999997,TJ,CO2,73300.0,kg/TJ,22559813.11892,kg +1b60117e-5ba3-3107-8529-ae6b7eddfa1a,SESCO,II.1.1,Chubut,AR-U,annual,2017,naphtha combustion consumption by to the public,307.77371239999997,TJ,CH4,3.0,kg/TJ,923.3211371999998,kg +2522a85c-e4cc-3851-bd79-7ac3ef55a56c,SESCO,II.1.1,Chubut,AR-U,annual,2017,naphtha combustion consumption by to the public,307.77371239999997,TJ,N2O,0.6,kg/TJ,184.66422743999996,kg +8564aba9-8acf-31e8-8c12-c06b1433abc2,SESCO,II.1.1,Corrientes,AR-W,annual,2017,naphtha combustion consumption by to the public,582.5296708,TJ,CO2,73300.0,kg/TJ,42699424.86964,kg +19ceb00f-dd2f-30c7-8d3c-98b033b61d54,SESCO,II.1.1,Corrientes,AR-W,annual,2017,naphtha combustion consumption by to the public,582.5296708,TJ,CH4,3.0,kg/TJ,1747.5890123999998,kg +28090c40-aa72-3960-8f9d-23a763c87828,SESCO,II.1.1,Corrientes,AR-W,annual,2017,naphtha combustion consumption by to the public,582.5296708,TJ,N2O,0.6,kg/TJ,349.51780247999994,kg +f845917d-e1e4-309c-baea-4c108670a639,SESCO,II.1.1,Córdoba,AR-X,annual,2017,naphtha combustion consumption by to the public,3036.6081591999996,TJ,CO2,73300.0,kg/TJ,222583378.06935996,kg +ffc811fe-0bff-385c-bed0-59aaee674cc3,SESCO,II.1.1,Córdoba,AR-X,annual,2017,naphtha combustion consumption by to the public,3036.6081591999996,TJ,CH4,3.0,kg/TJ,9109.8244776,kg +8c0aa0bf-2dff-3d12-94c4-dd040e94a8a6,SESCO,II.1.1,Córdoba,AR-X,annual,2017,naphtha combustion consumption by to the public,3036.6081591999996,TJ,N2O,0.6,kg/TJ,1821.9648955199998,kg +d0dc942a-1a36-35e3-b7ad-d673b47ad2e5,SESCO,II.1.1,Entre Rios,AR-E,annual,2017,naphtha combustion consumption by to the public,1056.4776683999999,TJ,CO2,73300.0,kg/TJ,77439813.09371999,kg +0c71956d-3da0-3834-be9c-c92233cccfeb,SESCO,II.1.1,Entre Rios,AR-E,annual,2017,naphtha combustion consumption by to the public,1056.4776683999999,TJ,CH4,3.0,kg/TJ,3169.4330051999996,kg +7373863d-06fd-381a-883f-8b11522c06f9,SESCO,II.1.1,Entre Rios,AR-E,annual,2017,naphtha combustion consumption by to the public,1056.4776683999999,TJ,N2O,0.6,kg/TJ,633.8866010399998,kg +7f3ecfe1-8cc6-3927-a255-436fc0cbb797,SESCO,II.1.1,Formosa,AR-P,annual,2017,naphtha combustion consumption by to the public,644.2532712,TJ,CO2,73300.0,kg/TJ,47223764.77896,kg +1d1c297f-a50c-3250-9e7a-b2ed7ff88e0a,SESCO,II.1.1,Formosa,AR-P,annual,2017,naphtha combustion consumption by to the public,644.2532712,TJ,CH4,3.0,kg/TJ,1932.7598136,kg +8c5cc984-de87-3ef3-93f6-ee6dd3fa1557,SESCO,II.1.1,Formosa,AR-P,annual,2017,naphtha combustion consumption by to the public,644.2532712,TJ,N2O,0.6,kg/TJ,386.55196271999995,kg +e22eb363-f851-3712-9751-8189d2b0ac44,SESCO,II.1.1,Jujuy,AR-Y,annual,2017,naphtha combustion consumption by to the public,198.92066039999997,TJ,CO2,73300.0,kg/TJ,14580884.407319998,kg +2e17e746-1bfc-3485-8033-8d90b35f9ec4,SESCO,II.1.1,Jujuy,AR-Y,annual,2017,naphtha combustion consumption by to the public,198.92066039999997,TJ,CH4,3.0,kg/TJ,596.7619811999999,kg +1280f026-d5f9-3558-be9d-f662c737afc8,SESCO,II.1.1,Jujuy,AR-Y,annual,2017,naphtha combustion consumption by to the public,198.92066039999997,TJ,N2O,0.6,kg/TJ,119.35239623999998,kg +1094cb3f-424a-3a72-aed9-d87aa5bfda64,SESCO,II.1.1,La Pampa,AR-L,annual,2017,naphtha combustion consumption by to the public,164.96815719999998,TJ,CO2,73300.0,kg/TJ,12092165.922759999,kg +d953ba4d-996c-33b6-b17b-51e0c7553dab,SESCO,II.1.1,La Pampa,AR-L,annual,2017,naphtha combustion consumption by to the public,164.96815719999998,TJ,CH4,3.0,kg/TJ,494.90447159999997,kg +f129f6c2-e035-39e6-8517-81ea1b1a6bba,SESCO,II.1.1,La Pampa,AR-L,annual,2017,naphtha combustion consumption by to the public,164.96815719999998,TJ,N2O,0.6,kg/TJ,98.98089431999999,kg +931498b7-9675-3cc7-a1cd-e0c3cee836a2,SESCO,II.1.1,La Rioja,AR-F,annual,2017,naphtha combustion consumption by to the public,101.10367959999999,TJ,CO2,73300.0,kg/TJ,7410899.714679999,kg +73bd9872-5b8b-3326-8338-306b1efc058b,SESCO,II.1.1,La Rioja,AR-F,annual,2017,naphtha combustion consumption by to the public,101.10367959999999,TJ,CH4,3.0,kg/TJ,303.3110388,kg +a0e53744-fc41-35b5-a53e-37777c0c7710,SESCO,II.1.1,La Rioja,AR-F,annual,2017,naphtha combustion consumption by to the public,101.10367959999999,TJ,N2O,0.6,kg/TJ,60.662207759999994,kg +b86d2c97-b83b-3d51-a7e8-09808eb7d4b0,SESCO,II.1.1,Mendoza,AR-M,annual,2017,naphtha combustion consumption by to the public,388.37321599999996,TJ,CO2,73300.0,kg/TJ,28467756.732799996,kg +5ab54675-c771-3943-adb8-9f584804e1ea,SESCO,II.1.1,Mendoza,AR-M,annual,2017,naphtha combustion consumption by to the public,388.37321599999996,TJ,CH4,3.0,kg/TJ,1165.1196479999999,kg +47b9811a-b641-30c3-be59-519af5506bb4,SESCO,II.1.1,Mendoza,AR-M,annual,2017,naphtha combustion consumption by to the public,388.37321599999996,TJ,N2O,0.6,kg/TJ,233.02392959999997,kg +7ec628a4-dac1-3d5f-bb83-d0f0fba86da4,SESCO,II.1.1,Misiones,AR-N,annual,2017,naphtha combustion consumption by to the public,734.98425,TJ,CO2,73300.0,kg/TJ,53874345.525,kg +8978fad1-3ca2-3a4f-8bcb-544ad7cd6cb8,SESCO,II.1.1,Misiones,AR-N,annual,2017,naphtha combustion consumption by to the public,734.98425,TJ,CH4,3.0,kg/TJ,2204.95275,kg +9c3069da-e477-33fb-b792-46461be0dfdf,SESCO,II.1.1,Misiones,AR-N,annual,2017,naphtha combustion consumption by to the public,734.98425,TJ,N2O,0.6,kg/TJ,440.99055,kg +0441fb2f-7b36-396b-97bb-046665228130,SESCO,II.1.1,Neuquén,AR-Q,annual,2017,naphtha combustion consumption by to the public,267.94133519999997,TJ,CO2,73300.0,kg/TJ,19640099.87016,kg +03c925cc-d871-39d6-bf46-ff820d85e3cb,SESCO,II.1.1,Neuquén,AR-Q,annual,2017,naphtha combustion consumption by to the public,267.94133519999997,TJ,CH4,3.0,kg/TJ,803.8240056,kg +665f1a5b-29de-3c84-a548-accf4ed3feb2,SESCO,II.1.1,Neuquén,AR-Q,annual,2017,naphtha combustion consumption by to the public,267.94133519999997,TJ,N2O,0.6,kg/TJ,160.76480112,kg +0f552e58-ff6c-3f3a-af7a-7cabc0b839a3,SESCO,II.1.1,Rio Negro,AR-R,annual,2017,naphtha combustion consumption by to the public,552.5573899999999,TJ,CO2,73300.0,kg/TJ,40502456.687,kg +207875c3-33f0-339f-95a8-02d910cc44d3,SESCO,II.1.1,Rio Negro,AR-R,annual,2017,naphtha combustion consumption by to the public,552.5573899999999,TJ,CH4,3.0,kg/TJ,1657.6721699999998,kg +8568684e-350f-3287-ac9b-9ab0a0ab3d67,SESCO,II.1.1,Rio Negro,AR-R,annual,2017,naphtha combustion consumption by to the public,552.5573899999999,TJ,N2O,0.6,kg/TJ,331.534434,kg +41ca80d7-82e8-385f-a08f-7e428c757276,SESCO,II.1.1,Salta,AR-A,annual,2017,naphtha combustion consumption by to the public,134.6038848,TJ,CO2,73300.0,kg/TJ,9866464.75584,kg +39a97058-e5e2-3a1d-a026-c207283c69bd,SESCO,II.1.1,Salta,AR-A,annual,2017,naphtha combustion consumption by to the public,134.6038848,TJ,CH4,3.0,kg/TJ,403.8116544,kg +e2dbb493-2081-3f7b-ab00-8498364d55ea,SESCO,II.1.1,Salta,AR-A,annual,2017,naphtha combustion consumption by to the public,134.6038848,TJ,N2O,0.6,kg/TJ,80.76233088,kg +97dab49d-fb96-3b2e-88b0-176c854f10a2,SESCO,II.1.1,San Juan,AR-J,annual,2017,naphtha combustion consumption by to the public,224.7016464,TJ,CO2,73300.0,kg/TJ,16470630.681119999,kg +6b805906-864d-35ec-8908-7df23850b1a8,SESCO,II.1.1,San Juan,AR-J,annual,2017,naphtha combustion consumption by to the public,224.7016464,TJ,CH4,3.0,kg/TJ,674.1049392,kg +858058af-0904-3850-8fe9-ee10dbbc1439,SESCO,II.1.1,San Juan,AR-J,annual,2017,naphtha combustion consumption by to the public,224.7016464,TJ,N2O,0.6,kg/TJ,134.82098784,kg +c752ab0f-15a8-3c75-abb3-7a5b541f01db,SESCO,II.1.1,San Luis,AR-D,annual,2017,naphtha combustion consumption by to the public,514.9865027999999,TJ,CO2,73300.0,kg/TJ,37748510.65523999,kg +6a3dfd27-bf1d-33b4-bccb-5099a5c0bda7,SESCO,II.1.1,San Luis,AR-D,annual,2017,naphtha combustion consumption by to the public,514.9865027999999,TJ,CH4,3.0,kg/TJ,1544.9595083999998,kg +618ad435-738f-3ac4-a96e-6026910f6b7f,SESCO,II.1.1,San Luis,AR-D,annual,2017,naphtha combustion consumption by to the public,514.9865027999999,TJ,N2O,0.6,kg/TJ,308.99190167999996,kg +0e3c7f4b-3eb7-3234-8934-0b6ae193bf94,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2017,naphtha combustion consumption by to the public,59.8239488,TJ,CO2,73300.0,kg/TJ,4385095.44704,kg +c6d4ed0d-a602-3ab7-8f4a-2b1644de5bb3,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2017,naphtha combustion consumption by to the public,59.8239488,TJ,CH4,3.0,kg/TJ,179.4718464,kg +b26e68d2-de58-362b-8968-727d8cac9be5,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2017,naphtha combustion consumption by to the public,59.8239488,TJ,N2O,0.6,kg/TJ,35.89436928,kg +7c67de00-fe75-3654-86e5-614f1159d12d,SESCO,II.1.1,Santa Fe,AR-S,annual,2017,naphtha combustion consumption by to the public,2511.7012535999997,TJ,CO2,73300.0,kg/TJ,184107701.88887998,kg +ef8cd4a7-1552-3609-84d6-7b08809b1d47,SESCO,II.1.1,Santa Fe,AR-S,annual,2017,naphtha combustion consumption by to the public,2511.7012535999997,TJ,CH4,3.0,kg/TJ,7535.103760799999,kg +dd014a4f-74bd-31e0-abe4-a3882f87f504,SESCO,II.1.1,Santa Fe,AR-S,annual,2017,naphtha combustion consumption by to the public,2511.7012535999997,TJ,N2O,0.6,kg/TJ,1507.0207521599998,kg +d4b83dd4-40a5-34c1-9ba8-1a42bf2076d7,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2017,naphtha combustion consumption by to the public,337.565074,TJ,CO2,73300.0,kg/TJ,24743519.9242,kg +c58626a1-79b1-3d99-9623-5b3660a0b3e7,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2017,naphtha combustion consumption by to the public,337.565074,TJ,CH4,3.0,kg/TJ,1012.695222,kg +139ffd45-42f3-3ed2-9251-dc3051d3f6e2,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2017,naphtha combustion consumption by to the public,337.565074,TJ,N2O,0.6,kg/TJ,202.5390444,kg +a40ffb55-2424-37ce-87b2-bc2562d22d54,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2017,naphtha combustion consumption by to the public,154.98744799999997,TJ,CO2,73300.0,kg/TJ,11360579.938399998,kg +5197f74d-3295-3c94-97cb-391696724593,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2017,naphtha combustion consumption by to the public,154.98744799999997,TJ,CH4,3.0,kg/TJ,464.9623439999999,kg +c07efa28-b8ca-3fc3-87f4-c4da195091ec,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2017,naphtha combustion consumption by to the public,154.98744799999997,TJ,N2O,0.6,kg/TJ,92.99246879999998,kg +c09ea0b5-0866-3d8c-98e9-950945159c25,SESCO,II.1.1,Tucuman,AR-T,annual,2017,naphtha combustion consumption by to the public,87.83627159999999,TJ,CO2,73300.0,kg/TJ,6438398.708279999,kg +ab17db84-2d57-372e-b343-b011ca1461ac,SESCO,II.1.1,Tucuman,AR-T,annual,2017,naphtha combustion consumption by to the public,87.83627159999999,TJ,CH4,3.0,kg/TJ,263.5088148,kg +7fd54dc6-935e-3b48-9014-52dceb0694b9,SESCO,II.1.1,Tucuman,AR-T,annual,2017,naphtha combustion consumption by to the public,87.83627159999999,TJ,N2O,0.6,kg/TJ,52.70176295999999,kg +00d9fb40-801f-3bd6-b515-b3536d544cc4,SESCO,II.1.1,Buenos Aires,AR-B,annual,2017,naphtha combustion consumption by to the public,2885.962772,TJ,CO2,73300.0,kg/TJ,211541071.1876,kg +ac963d7c-7d1c-3a02-a15e-556fbfd9f01d,SESCO,II.1.1,Buenos Aires,AR-B,annual,2017,naphtha combustion consumption by to the public,2885.962772,TJ,CH4,3.0,kg/TJ,8657.888316,kg +f981ed74-d4f5-34fe-ab14-d043366b6c55,SESCO,II.1.1,Buenos Aires,AR-B,annual,2017,naphtha combustion consumption by to the public,2885.962772,TJ,N2O,0.6,kg/TJ,1731.5776632,kg +ecccf4cf-84d5-3e7d-abed-0ef0abd4f29d,SESCO,II.1.1,Capital Federal,AR-C,annual,2017,naphtha combustion consumption by to the public,1279.5811952,TJ,CO2,73300.0,kg/TJ,93793301.60815999,kg +0da8404f-7da9-3d43-8bfe-b9bfd3a30f16,SESCO,II.1.1,Capital Federal,AR-C,annual,2017,naphtha combustion consumption by to the public,1279.5811952,TJ,CH4,3.0,kg/TJ,3838.7435855999997,kg +1e1c3dd2-f3e2-3979-a0f2-08a71a9848b2,SESCO,II.1.1,Capital Federal,AR-C,annual,2017,naphtha combustion consumption by to the public,1279.5811952,TJ,N2O,0.6,kg/TJ,767.7487171199999,kg +adb39193-4944-3a0e-a718-b48b2065f3c5,SESCO,II.1.1,Catamarca,AR-K,annual,2017,naphtha combustion consumption by to the public,139.006252,TJ,CO2,73300.0,kg/TJ,10189158.271599999,kg +2300e902-258a-3e82-9cdb-7bca1be72f5c,SESCO,II.1.1,Catamarca,AR-K,annual,2017,naphtha combustion consumption by to the public,139.006252,TJ,CH4,3.0,kg/TJ,417.01875599999994,kg +52a4acdb-a317-3512-abc8-adba8c7f10f1,SESCO,II.1.1,Catamarca,AR-K,annual,2017,naphtha combustion consumption by to the public,139.006252,TJ,N2O,0.6,kg/TJ,83.40375119999999,kg +3fa5ea41-570a-3f4a-8171-2059338116fd,SESCO,II.1.1,Chaco,AR-H,annual,2017,naphtha combustion consumption by to the public,87.80611839999999,TJ,CO2,73300.0,kg/TJ,6436188.478719999,kg +1daf2f92-55c0-30b0-9404-8b34930cf636,SESCO,II.1.1,Chaco,AR-H,annual,2017,naphtha combustion consumption by to the public,87.80611839999999,TJ,CH4,3.0,kg/TJ,263.41835519999995,kg +59649734-3cc5-3dc8-bbf0-d58aeaac4978,SESCO,II.1.1,Chaco,AR-H,annual,2017,naphtha combustion consumption by to the public,87.80611839999999,TJ,N2O,0.6,kg/TJ,52.68367103999999,kg +241bfc50-58de-3b4f-b8df-9c0e63cc74da,SESCO,II.1.1,Chubut,AR-U,annual,2017,naphtha combustion consumption by to the public,74.8703956,TJ,CO2,73300.0,kg/TJ,5487999.997479999,kg +9ba9956a-2a4f-3805-a401-12da6e68e73e,SESCO,II.1.1,Chubut,AR-U,annual,2017,naphtha combustion consumption by to the public,74.8703956,TJ,CH4,3.0,kg/TJ,224.61118679999998,kg +4124c5c5-0faa-3732-aa2d-6b512402f4c0,SESCO,II.1.1,Chubut,AR-U,annual,2017,naphtha combustion consumption by to the public,74.8703956,TJ,N2O,0.6,kg/TJ,44.92223736,kg +754eadd6-9c03-3c6b-827e-6ac89d461ea7,SESCO,II.1.1,Corrientes,AR-W,annual,2017,naphtha combustion consumption by to the public,155.4095928,TJ,CO2,73300.0,kg/TJ,11391523.15224,kg +cb7f8ad7-636f-3014-acea-6f43d0db7daa,SESCO,II.1.1,Corrientes,AR-W,annual,2017,naphtha combustion consumption by to the public,155.4095928,TJ,CH4,3.0,kg/TJ,466.2287784,kg +6e9af893-6cc7-3bf8-a3b0-3b963bc1a99f,SESCO,II.1.1,Corrientes,AR-W,annual,2017,naphtha combustion consumption by to the public,155.4095928,TJ,N2O,0.6,kg/TJ,93.24575568,kg +b43163c0-dc55-35fe-a593-ddc0ca1b5d41,SESCO,II.1.1,Córdoba,AR-X,annual,2017,naphtha combustion consumption by to the public,753.8299999999999,TJ,CO2,73300.0,kg/TJ,55255738.99999999,kg +84973768-60f6-36a5-9607-f1645c5562b5,SESCO,II.1.1,Córdoba,AR-X,annual,2017,naphtha combustion consumption by to the public,753.8299999999999,TJ,CH4,3.0,kg/TJ,2261.49,kg +e29303fa-0827-3282-93f1-3c23a9c7ec1c,SESCO,II.1.1,Córdoba,AR-X,annual,2017,naphtha combustion consumption by to the public,753.8299999999999,TJ,N2O,0.6,kg/TJ,452.29799999999994,kg +9f2416dd-4a95-3657-85af-2e796c1daa59,SESCO,II.1.1,Entre Rios,AR-E,annual,2017,naphtha combustion consumption by to the public,314.4074164,TJ,CO2,73300.0,kg/TJ,23046063.62212,kg +aab543cc-09a1-3e2f-a221-50254aa8e11f,SESCO,II.1.1,Entre Rios,AR-E,annual,2017,naphtha combustion consumption by to the public,314.4074164,TJ,CH4,3.0,kg/TJ,943.2222492,kg +09193883-9c4f-3777-a013-eab688a91831,SESCO,II.1.1,Entre Rios,AR-E,annual,2017,naphtha combustion consumption by to the public,314.4074164,TJ,N2O,0.6,kg/TJ,188.64444984,kg +870c1a5d-fcd6-3ef6-93ea-c8c5a7ddcf21,SESCO,II.1.1,Formosa,AR-P,annual,2017,naphtha combustion consumption by to the public,171.722474,TJ,CO2,73300.0,kg/TJ,12587257.3442,kg +b0e40deb-5cb2-3a16-af6f-91209eaee041,SESCO,II.1.1,Formosa,AR-P,annual,2017,naphtha combustion consumption by to the public,171.722474,TJ,CH4,3.0,kg/TJ,515.167422,kg +4269ebb9-6089-3629-b76d-0760d504f04a,SESCO,II.1.1,Formosa,AR-P,annual,2017,naphtha combustion consumption by to the public,171.722474,TJ,N2O,0.6,kg/TJ,103.0334844,kg +928bd6b4-440b-3b7f-9bc8-3db8a0f49b4e,SESCO,II.1.1,Jujuy,AR-Y,annual,2017,naphtha combustion consumption by to the public,37.4502744,TJ,CO2,73300.0,kg/TJ,2745105.1135199997,kg +aef9960d-77ec-3b6c-a589-679d8127b735,SESCO,II.1.1,Jujuy,AR-Y,annual,2017,naphtha combustion consumption by to the public,37.4502744,TJ,CH4,3.0,kg/TJ,112.3508232,kg +d9e148a7-2a8f-39b9-9ed2-c16343bae5f2,SESCO,II.1.1,Jujuy,AR-Y,annual,2017,naphtha combustion consumption by to the public,37.4502744,TJ,N2O,0.6,kg/TJ,22.470164639999997,kg +8a4d5e5a-d498-3905-9585-b5e5b6420a04,SESCO,II.1.1,La Pampa,AR-L,annual,2017,naphtha combustion consumption by to the public,63.201107199999996,TJ,CO2,73300.0,kg/TJ,4632641.15776,kg +baf13098-f72c-3102-97a4-945b14e2c6e8,SESCO,II.1.1,La Pampa,AR-L,annual,2017,naphtha combustion consumption by to the public,63.201107199999996,TJ,CH4,3.0,kg/TJ,189.6033216,kg +df7d6a54-a48a-3666-a181-0d93c2cb78b6,SESCO,II.1.1,La Pampa,AR-L,annual,2017,naphtha combustion consumption by to the public,63.201107199999996,TJ,N2O,0.6,kg/TJ,37.92066431999999,kg +5575321c-e7b8-3cab-a647-ef65fffbc3fa,SESCO,II.1.1,La Rioja,AR-F,annual,2017,naphtha combustion consumption by to the public,23.0068916,TJ,CO2,73300.0,kg/TJ,1686405.15428,kg +08309bcc-1143-36ee-a1fe-083384c3e003,SESCO,II.1.1,La Rioja,AR-F,annual,2017,naphtha combustion consumption by to the public,23.0068916,TJ,CH4,3.0,kg/TJ,69.0206748,kg +8f9f806f-38c1-3978-be5e-b31169b69549,SESCO,II.1.1,La Rioja,AR-F,annual,2017,naphtha combustion consumption by to the public,23.0068916,TJ,N2O,0.6,kg/TJ,13.804134959999999,kg +fdc737b7-4702-3f44-81e8-bb01c7f7e226,SESCO,II.1.1,Mendoza,AR-M,annual,2017,naphtha combustion consumption by to the public,164.00325479999998,TJ,CO2,73300.0,kg/TJ,12021438.576839998,kg +014ad7b6-c77e-338c-87b9-6a42f5d655ea,SESCO,II.1.1,Mendoza,AR-M,annual,2017,naphtha combustion consumption by to the public,164.00325479999998,TJ,CH4,3.0,kg/TJ,492.00976439999994,kg +b9c250ba-d06f-3a0a-a86e-272cf3cdf1ec,SESCO,II.1.1,Mendoza,AR-M,annual,2017,naphtha combustion consumption by to the public,164.00325479999998,TJ,N2O,0.6,kg/TJ,98.40195287999998,kg +e93e422f-2014-393e-b74f-36a8c0fe5528,SESCO,II.1.1,Misiones,AR-N,annual,2017,naphtha combustion consumption by to the public,120.4318808,TJ,CO2,73300.0,kg/TJ,8827656.86264,kg +750d45fc-5f9f-3be8-aba6-eb5ce8f2d9aa,SESCO,II.1.1,Misiones,AR-N,annual,2017,naphtha combustion consumption by to the public,120.4318808,TJ,CH4,3.0,kg/TJ,361.2956424,kg +d1e8b510-d43f-350a-ba0e-0db587280f3e,SESCO,II.1.1,Misiones,AR-N,annual,2017,naphtha combustion consumption by to the public,120.4318808,TJ,N2O,0.6,kg/TJ,72.25912848,kg +bca510f7-9cd7-349c-a5ff-a07b4a224f4a,SESCO,II.1.1,Neuquén,AR-Q,annual,2017,naphtha combustion consumption by to the public,139.45854999999997,TJ,CO2,73300.0,kg/TJ,10222311.714999998,kg +5a6a8327-a06d-36fa-8623-eb9ea792a875,SESCO,II.1.1,Neuquén,AR-Q,annual,2017,naphtha combustion consumption by to the public,139.45854999999997,TJ,CH4,3.0,kg/TJ,418.37564999999995,kg +dc70939a-ac6c-31a0-aefd-f7012e99bbc6,SESCO,II.1.1,Neuquén,AR-Q,annual,2017,naphtha combustion consumption by to the public,139.45854999999997,TJ,N2O,0.6,kg/TJ,83.67512999999998,kg +9c5b891b-802c-3691-9091-c2bc9650780b,SESCO,II.1.1,Rio Negro,AR-R,annual,2017,naphtha combustion consumption by to the public,212.88159199999998,TJ,CO2,73300.0,kg/TJ,15604220.693599999,kg +054b9d4f-c42a-3559-9a62-ef0604b84d05,SESCO,II.1.1,Rio Negro,AR-R,annual,2017,naphtha combustion consumption by to the public,212.88159199999998,TJ,CH4,3.0,kg/TJ,638.644776,kg +8c0eaeb9-42c7-357b-b6b6-4f54b696ce30,SESCO,II.1.1,Rio Negro,AR-R,annual,2017,naphtha combustion consumption by to the public,212.88159199999998,TJ,N2O,0.6,kg/TJ,127.72895519999999,kg +e87ec0f4-81fb-360c-809c-2024d44c8d3a,SESCO,II.1.1,Salta,AR-A,annual,2017,naphtha combustion consumption by to the public,17.3682432,TJ,CO2,73300.0,kg/TJ,1273092.2265599999,kg +0416eba8-540f-394a-96dc-ac0db58cfc79,SESCO,II.1.1,Salta,AR-A,annual,2017,naphtha combustion consumption by to the public,17.3682432,TJ,CH4,3.0,kg/TJ,52.1047296,kg +38cba91c-21c0-3335-95c8-bf5754af9190,SESCO,II.1.1,Salta,AR-A,annual,2017,naphtha combustion consumption by to the public,17.3682432,TJ,N2O,0.6,kg/TJ,10.42094592,kg +40df4b16-2bd6-3bf7-9b6b-93b4d4ae23e2,SESCO,II.1.1,San Juan,AR-J,annual,2017,naphtha combustion consumption by to the public,64.79922679999999,TJ,CO2,73300.0,kg/TJ,4749783.324439999,kg +eb679cf1-1e89-3353-b69d-7036916bb9f3,SESCO,II.1.1,San Juan,AR-J,annual,2017,naphtha combustion consumption by to the public,64.79922679999999,TJ,CH4,3.0,kg/TJ,194.39768039999996,kg +27d95b31-89ee-3296-98b8-5b887a0a7fa5,SESCO,II.1.1,San Juan,AR-J,annual,2017,naphtha combustion consumption by to the public,64.79922679999999,TJ,N2O,0.6,kg/TJ,38.87953607999999,kg +446db239-911c-32cb-8b18-7ce2d33d9ef7,SESCO,II.1.1,San Luis,AR-D,annual,2017,naphtha combustion consumption by to the public,131.76948399999998,TJ,CO2,73300.0,kg/TJ,9658703.177199999,kg +29464f92-d39d-3c2d-b405-54804da73c4c,SESCO,II.1.1,San Luis,AR-D,annual,2017,naphtha combustion consumption by to the public,131.76948399999998,TJ,CH4,3.0,kg/TJ,395.30845199999993,kg +f8e4f8be-f28a-3bd7-8772-fd337d2cf23d,SESCO,II.1.1,San Luis,AR-D,annual,2017,naphtha combustion consumption by to the public,131.76948399999998,TJ,N2O,0.6,kg/TJ,79.06169039999999,kg +43a123da-bcf9-3d2a-b45a-5b7fd6ae1036,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2017,naphtha combustion consumption by to the public,28.886765599999997,TJ,CO2,73300.0,kg/TJ,2117399.91848,kg +e14826a4-409f-3a7c-930e-ec1dfc206e93,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2017,naphtha combustion consumption by to the public,28.886765599999997,TJ,CH4,3.0,kg/TJ,86.6602968,kg +84639715-7ed3-3afe-9046-d7d8d54c9d19,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2017,naphtha combustion consumption by to the public,28.886765599999997,TJ,N2O,0.6,kg/TJ,17.33205936,kg +96c353be-0018-3c14-be40-a570d145856a,SESCO,II.1.1,Santa Fe,AR-S,annual,2017,naphtha combustion consumption by to the public,766.1626587999999,TJ,CO2,73300.0,kg/TJ,56159722.890039995,kg +b86a6b0b-0a7e-3579-a3fe-d229d1827ead,SESCO,II.1.1,Santa Fe,AR-S,annual,2017,naphtha combustion consumption by to the public,766.1626587999999,TJ,CH4,3.0,kg/TJ,2298.4879763999998,kg +b27c8eb2-0e59-3f1a-9b6e-634524cd6ad8,SESCO,II.1.1,Santa Fe,AR-S,annual,2017,naphtha combustion consumption by to the public,766.1626587999999,TJ,N2O,0.6,kg/TJ,459.6975952799999,kg +d8fb3436-3751-35aa-b581-5e18855a2181,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2017,naphtha combustion consumption by to the public,115.3962964,TJ,CO2,73300.0,kg/TJ,8458548.52612,kg +64f9fa35-c2f5-3455-bc85-5f7b040a4f75,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2017,naphtha combustion consumption by to the public,115.3962964,TJ,CH4,3.0,kg/TJ,346.1888892,kg +fd4ff3a7-79c7-3eae-84f9-d069dd70e513,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2017,naphtha combustion consumption by to the public,115.3962964,TJ,N2O,0.6,kg/TJ,69.23777783999999,kg +3eb64c10-68fb-371a-b4c8-f5c9b96ae3b5,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2017,naphtha combustion consumption by to the public,59.251037999999994,TJ,CO2,73300.0,kg/TJ,4343101.085399999,kg +18c5e551-aaec-3b20-b76b-92fdfefb50ed,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2017,naphtha combustion consumption by to the public,59.251037999999994,TJ,CH4,3.0,kg/TJ,177.75311399999998,kg +0c332bb9-7857-3d78-9340-249df4fb573f,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2017,naphtha combustion consumption by to the public,59.251037999999994,TJ,N2O,0.6,kg/TJ,35.55062279999999,kg +a548d4b4-12c7-337b-9ad8-10784a480597,SESCO,II.1.1,Tucuman,AR-T,annual,2017,naphtha combustion consumption by to the public,25.268381599999998,TJ,CO2,73300.0,kg/TJ,1852172.3712799998,kg +4ae7ac61-7018-3e56-b4ce-b1ebc1fa9219,SESCO,II.1.1,Tucuman,AR-T,annual,2017,naphtha combustion consumption by to the public,25.268381599999998,TJ,CH4,3.0,kg/TJ,75.8051448,kg +c9e68fd9-e545-3d1e-ba3c-5ec24b1258ef,SESCO,II.1.1,Tucuman,AR-T,annual,2017,naphtha combustion consumption by to the public,25.268381599999998,TJ,N2O,0.6,kg/TJ,15.161028959999998,kg +ba615831-c8c4-31ee-962e-cf88a224e9c9,SESCO,II.1.1,Buenos Aires,AR-B,annual,2017,naphtha combustion consumption by freight transport,8.292129999999998,TJ,CO2,73300.0,kg/TJ,607813.1289999998,kg +c3bf8575-44f9-39e9-8165-1c4c2c8e5e46,SESCO,II.1.1,Buenos Aires,AR-B,annual,2017,naphtha combustion consumption by freight transport,8.292129999999998,TJ,CH4,3.0,kg/TJ,24.876389999999994,kg +150ebf16-f74e-3f57-ac15-f3a6293c2e7e,SESCO,II.1.1,Buenos Aires,AR-B,annual,2017,naphtha combustion consumption by freight transport,8.292129999999998,TJ,N2O,0.6,kg/TJ,4.9752779999999985,kg +36eb0c95-63f7-32f6-bc71-693f891a8170,SESCO,II.1.1,Capital Federal,AR-C,annual,2017,naphtha combustion consumption by freight transport,4.0103756,TJ,CO2,73300.0,kg/TJ,293960.53148,kg +0ea75969-f3bd-3392-a2e2-ce12f6d9d6d9,SESCO,II.1.1,Capital Federal,AR-C,annual,2017,naphtha combustion consumption by freight transport,4.0103756,TJ,CH4,3.0,kg/TJ,12.0311268,kg +4b136a5a-4638-30d9-967a-87891bff537a,SESCO,II.1.1,Capital Federal,AR-C,annual,2017,naphtha combustion consumption by freight transport,4.0103756,TJ,N2O,0.6,kg/TJ,2.4062253599999996,kg +9dae2ae0-6f6a-314a-9a04-341768aa823e,SESCO,II.1.1,Chubut,AR-U,annual,2017,naphtha combustion consumption by freight transport,0.030153199999999998,TJ,CO2,73300.0,kg/TJ,2210.2295599999998,kg +b2174810-99ed-39bf-8284-83807e98baa6,SESCO,II.1.1,Chubut,AR-U,annual,2017,naphtha combustion consumption by freight transport,0.030153199999999998,TJ,CH4,3.0,kg/TJ,0.0904596,kg +b79f7968-cddb-3090-9685-b34dc23e1445,SESCO,II.1.1,Chubut,AR-U,annual,2017,naphtha combustion consumption by freight transport,0.030153199999999998,TJ,N2O,0.6,kg/TJ,0.018091919999999997,kg +78c85ffa-0f31-3944-87dc-fdfe775eec02,SESCO,II.1.1,Córdoba,AR-X,annual,2017,naphtha combustion consumption by freight transport,1.4473536,TJ,CO2,73300.0,kg/TJ,106091.01888,kg +b261d6bc-1db9-3cce-93f8-0050d317e512,SESCO,II.1.1,Córdoba,AR-X,annual,2017,naphtha combustion consumption by freight transport,1.4473536,TJ,CH4,3.0,kg/TJ,4.3420608000000005,kg +31e4cd9e-8aab-3dcc-8966-637a3924e84f,SESCO,II.1.1,Córdoba,AR-X,annual,2017,naphtha combustion consumption by freight transport,1.4473536,TJ,N2O,0.6,kg/TJ,0.86841216,kg +b18a0809-8941-3b79-bfd7-20ffc805f464,SESCO,II.1.1,Santa Fe,AR-S,annual,2017,naphtha combustion consumption by freight transport,0.2713788,TJ,CO2,73300.0,kg/TJ,19892.066039999998,kg +25290fdc-307d-3f9e-920c-93f62d339159,SESCO,II.1.1,Santa Fe,AR-S,annual,2017,naphtha combustion consumption by freight transport,0.2713788,TJ,CH4,3.0,kg/TJ,0.8141364,kg +f0afb7e9-d9c2-3e0b-ad33-deaa002f130d,SESCO,II.1.1,Santa Fe,AR-S,annual,2017,naphtha combustion consumption by freight transport,0.2713788,TJ,N2O,0.6,kg/TJ,0.16282728,kg +0de19201-d87e-39dd-8111-070178346af1,SESCO,II.1.1,Buenos Aires,AR-B,annual,2017,naphtha combustion consumption by freight transport,7.025695599999999,TJ,CO2,73300.0,kg/TJ,514983.4874799999,kg +c527f3c7-9401-3a49-8180-cf2b3c21850f,SESCO,II.1.1,Buenos Aires,AR-B,annual,2017,naphtha combustion consumption by freight transport,7.025695599999999,TJ,CH4,3.0,kg/TJ,21.077086799999996,kg +40cd6979-fa33-3b42-bfb5-280ac31f9302,SESCO,II.1.1,Buenos Aires,AR-B,annual,2017,naphtha combustion consumption by freight transport,7.025695599999999,TJ,N2O,0.6,kg/TJ,4.215417359999999,kg +cb59ec41-cee1-3301-80e4-e9a6c17ae887,SESCO,II.1.1,Capital Federal,AR-C,annual,2017,naphtha combustion consumption by freight transport,4.0405288,TJ,CO2,73300.0,kg/TJ,296170.76103999995,kg +57cd4571-57c0-3229-842d-f51d91a78921,SESCO,II.1.1,Capital Federal,AR-C,annual,2017,naphtha combustion consumption by freight transport,4.0405288,TJ,CH4,3.0,kg/TJ,12.121586399999998,kg +7c6f2214-7865-3768-8227-cc0444837b35,SESCO,II.1.1,Capital Federal,AR-C,annual,2017,naphtha combustion consumption by freight transport,4.0405288,TJ,N2O,0.6,kg/TJ,2.42431728,kg +9dae2ae0-6f6a-314a-9a04-341768aa823e,SESCO,II.1.1,Chubut,AR-U,annual,2017,naphtha combustion consumption by freight transport,0.030153199999999998,TJ,CO2,73300.0,kg/TJ,2210.2295599999998,kg +b2174810-99ed-39bf-8284-83807e98baa6,SESCO,II.1.1,Chubut,AR-U,annual,2017,naphtha combustion consumption by freight transport,0.030153199999999998,TJ,CH4,3.0,kg/TJ,0.0904596,kg +b79f7968-cddb-3090-9685-b34dc23e1445,SESCO,II.1.1,Chubut,AR-U,annual,2017,naphtha combustion consumption by freight transport,0.030153199999999998,TJ,N2O,0.6,kg/TJ,0.018091919999999997,kg +514a50df-6edb-33ca-80ae-a47185bbc566,SESCO,II.1.1,Córdoba,AR-X,annual,2017,naphtha combustion consumption by freight transport,1.6282728,TJ,CO2,73300.0,kg/TJ,119352.39624,kg +0995adf6-f88b-3ff2-8208-12bdcb991028,SESCO,II.1.1,Córdoba,AR-X,annual,2017,naphtha combustion consumption by freight transport,1.6282728,TJ,CH4,3.0,kg/TJ,4.8848184,kg +8c37649f-bb1b-3427-926b-632043f156a9,SESCO,II.1.1,Córdoba,AR-X,annual,2017,naphtha combustion consumption by freight transport,1.6282728,TJ,N2O,0.6,kg/TJ,0.9769636799999999,kg +e447802f-d4c0-375d-a9ef-62c08ad88ccf,SESCO,II.1.1,Santa Fe,AR-S,annual,2017,naphtha combustion consumption by freight transport,0.9950555999999999,TJ,CO2,73300.0,kg/TJ,72937.57548,kg +605cacda-0735-3a2a-8e5f-fba96b37d021,SESCO,II.1.1,Santa Fe,AR-S,annual,2017,naphtha combustion consumption by freight transport,0.9950555999999999,TJ,CH4,3.0,kg/TJ,2.9851668,kg +1b50fca8-f324-3983-a295-7c64126b65a7,SESCO,II.1.1,Santa Fe,AR-S,annual,2017,naphtha combustion consumption by freight transport,0.9950555999999999,TJ,N2O,0.6,kg/TJ,0.59703336,kg +91e1c74f-c1f3-34e5-970f-66a609f8d576,SESCO,II.1.1,Buenos Aires,AR-B,annual,2017,naphtha combustion consumption by public passenger transport,0.030153199999999998,TJ,CO2,73300.0,kg/TJ,2210.2295599999998,kg +0f77e354-d408-3afe-b8dc-485b037f493d,SESCO,II.1.1,Buenos Aires,AR-B,annual,2017,naphtha combustion consumption by public passenger transport,0.030153199999999998,TJ,CH4,3.0,kg/TJ,0.0904596,kg +f14385c7-3c36-387b-b772-1152e2b12a65,SESCO,II.1.1,Buenos Aires,AR-B,annual,2017,naphtha combustion consumption by public passenger transport,0.030153199999999998,TJ,N2O,0.6,kg/TJ,0.018091919999999997,kg +db7945e7-5538-3460-8bf9-57fe538d2dc5,SESCO,II.1.1,Santa Fe,AR-S,annual,2017,naphtha combustion consumption by public passenger transport,1.6885792,TJ,CO2,73300.0,kg/TJ,123772.85536,kg +bd2217ef-5146-3423-956d-48bf5e7fbb1a,SESCO,II.1.1,Santa Fe,AR-S,annual,2017,naphtha combustion consumption by public passenger transport,1.6885792,TJ,CH4,3.0,kg/TJ,5.0657376,kg +9a6721f2-bffa-3ade-8be8-570a97ddded0,SESCO,II.1.1,Santa Fe,AR-S,annual,2017,naphtha combustion consumption by public passenger transport,1.6885792,TJ,N2O,0.6,kg/TJ,1.01314752,kg +2624d344-ffd6-3d89-b7b4-aebfe2656c6c,SESCO,II.1.1,Santa Fe,AR-S,annual,2017,naphtha combustion consumption by public passenger transport,0.5729107999999999,TJ,CO2,73300.0,kg/TJ,41994.361639999996,kg +0cb33cdf-6346-3e69-9f3d-a272e15f214e,SESCO,II.1.1,Santa Fe,AR-S,annual,2017,naphtha combustion consumption by public passenger transport,0.5729107999999999,TJ,CH4,3.0,kg/TJ,1.7187324,kg +145b0c9c-8a3b-3f83-900a-cd7d6d3be18e,SESCO,II.1.1,Santa Fe,AR-S,annual,2017,naphtha combustion consumption by public passenger transport,0.5729107999999999,TJ,N2O,0.6,kg/TJ,0.34374647999999997,kg +cf048e18-8da5-3048-8b58-363db471e3d2,SESCO,II.5.1,Santiago del Estero,AR-G,annual,2017,naphtha combustion consumption by agriculture machines,0.4468885159199999,TJ,CO2,73300.0,kg/TJ,32756.928216935994,kg +09870832-156b-3f5c-b355-d9b09e43d3c2,SESCO,II.5.1,Santiago del Estero,AR-G,annual,2017,naphtha combustion consumption by agriculture machines,0.4468885159199999,TJ,CH4,3.0,kg/TJ,1.3406655477599996,kg +b7e06ccb-784b-3df4-ae7b-eed8947c7c4e,SESCO,II.5.1,Santiago del Estero,AR-G,annual,2017,naphtha combustion consumption by agriculture machines,0.4468885159199999,TJ,N2O,0.6,kg/TJ,0.2681331095519999,kg +f3bcf601-3616-3e72-8caf-a3efcbb64519,SESCO,II.1.1,Buenos Aires,AR-B,annual,2017,naphtha combustion consumption by to the public,1861.3249379185997,TJ,CO2,73300.0,kg/TJ,136435117.94943336,kg +2f222687-4f55-37ef-8211-3b60ae319249,SESCO,II.1.1,Buenos Aires,AR-B,annual,2017,naphtha combustion consumption by to the public,1861.3249379185997,TJ,CH4,3.0,kg/TJ,5583.974813755799,kg +64801fb8-df7c-3a35-8352-3e0351aae4ad,SESCO,II.1.1,Buenos Aires,AR-B,annual,2017,naphtha combustion consumption by to the public,1861.3249379185997,TJ,N2O,0.6,kg/TJ,1116.7949627511598,kg +b074f77b-8522-382f-83a7-32501d3d3b55,SESCO,II.1.1,Capital Federal,AR-C,annual,2017,naphtha combustion consumption by to the public,187.60665509432002,TJ,CO2,73300.0,kg/TJ,13751567.818413658,kg +ceaea81b-9d8b-3937-965a-62e66061b565,SESCO,II.1.1,Capital Federal,AR-C,annual,2017,naphtha combustion consumption by to the public,187.60665509432002,TJ,CH4,3.0,kg/TJ,562.8199652829601,kg +f2bb4a56-d8eb-3596-b29b-3165f64d1c2c,SESCO,II.1.1,Capital Federal,AR-C,annual,2017,naphtha combustion consumption by to the public,187.60665509432002,TJ,N2O,0.6,kg/TJ,112.56399305659201,kg +9240cce7-4178-31be-b169-7c22fd57c83b,SESCO,II.1.1,Catamarca,AR-K,annual,2017,naphtha combustion consumption by to the public,175.75768377551998,TJ,CO2,73300.0,kg/TJ,12883038.220745614,kg +16bc13ff-9af3-3d34-b6e2-eb0aec755c9a,SESCO,II.1.1,Catamarca,AR-K,annual,2017,naphtha combustion consumption by to the public,175.75768377551998,TJ,CH4,3.0,kg/TJ,527.2730513265599,kg +ebf87ff7-62e6-3064-873a-a55d91081874,SESCO,II.1.1,Catamarca,AR-K,annual,2017,naphtha combustion consumption by to the public,175.75768377551998,TJ,N2O,0.6,kg/TJ,105.45461026531198,kg +c2981ca4-2e89-36be-b680-0038be12de29,SESCO,II.1.1,Chaco,AR-H,annual,2017,naphtha combustion consumption by to the public,250.78373622456,TJ,CO2,73300.0,kg/TJ,18382447.865260247,kg +037522c1-bc64-3f60-ab9c-63bf0722cef7,SESCO,II.1.1,Chaco,AR-H,annual,2017,naphtha combustion consumption by to the public,250.78373622456,TJ,CH4,3.0,kg/TJ,752.3512086736799,kg +5ec13900-7c95-3e97-b033-6c1bc6f04942,SESCO,II.1.1,Chaco,AR-H,annual,2017,naphtha combustion consumption by to the public,250.78373622456,TJ,N2O,0.6,kg/TJ,150.470241734736,kg +f20fff97-8076-3735-84ab-96629e5d9a4d,SESCO,II.1.1,Corrientes,AR-W,annual,2017,naphtha combustion consumption by to the public,241.11071932331998,TJ,CO2,73300.0,kg/TJ,17673415.726399355,kg +a992ba39-c519-36ca-94d2-1660ea28c644,SESCO,II.1.1,Corrientes,AR-W,annual,2017,naphtha combustion consumption by to the public,241.11071932331998,TJ,CH4,3.0,kg/TJ,723.33215796996,kg +e564c520-0067-3cad-9dfc-f3b445a5bd2a,SESCO,II.1.1,Corrientes,AR-W,annual,2017,naphtha combustion consumption by to the public,241.11071932331998,TJ,N2O,0.6,kg/TJ,144.66643159399197,kg +70242d98-d34b-3ab5-828c-83567a025944,SESCO,II.1.1,Córdoba,AR-X,annual,2017,naphtha combustion consumption by to the public,810.91909577448,TJ,CO2,73300.0,kg/TJ,59440369.72026938,kg +2161e2cc-a307-365c-b0ff-af09fd45a7f6,SESCO,II.1.1,Córdoba,AR-X,annual,2017,naphtha combustion consumption by to the public,810.91909577448,TJ,CH4,3.0,kg/TJ,2432.75728732344,kg +2f59112e-b6c7-33c8-9c03-7ca39147433f,SESCO,II.1.1,Córdoba,AR-X,annual,2017,naphtha combustion consumption by to the public,810.91909577448,TJ,N2O,0.6,kg/TJ,486.5514574646879,kg +cccbfd70-abe9-3161-8a5d-15e71922b98e,SESCO,II.1.1,Entre Rios,AR-E,annual,2017,naphtha combustion consumption by to the public,371.83890779112,TJ,CO2,73300.0,kg/TJ,27255791.941089094,kg +a5270402-9b43-3094-a048-70ca689c94af,SESCO,II.1.1,Entre Rios,AR-E,annual,2017,naphtha combustion consumption by to the public,371.83890779112,TJ,CH4,3.0,kg/TJ,1115.51672337336,kg +eec7c11d-6cf9-36bb-9837-e2294c52c700,SESCO,II.1.1,Entre Rios,AR-E,annual,2017,naphtha combustion consumption by to the public,371.83890779112,TJ,N2O,0.6,kg/TJ,223.103344674672,kg +86f11393-ca60-357a-b92f-2c4eb376c21a,SESCO,II.1.1,Jujuy,AR-Y,annual,2017,naphtha combustion consumption by to the public,71.87884536756,TJ,CO2,73300.0,kg/TJ,5268719.365442148,kg +60edacb6-c46a-3b6e-ad25-a2cbdf5eb7a1,SESCO,II.1.1,Jujuy,AR-Y,annual,2017,naphtha combustion consumption by to the public,71.87884536756,TJ,CH4,3.0,kg/TJ,215.63653610268,kg +b682b9a5-ea25-3f6e-b9a4-f4a547d5797e,SESCO,II.1.1,Jujuy,AR-Y,annual,2017,naphtha combustion consumption by to the public,71.87884536756,TJ,N2O,0.6,kg/TJ,43.127307220536004,kg +73067b35-227e-32ed-a65b-101798d677a1,SESCO,II.1.1,La Pampa,AR-L,annual,2017,naphtha combustion consumption by to the public,9.2742046474,TJ,CO2,73300.0,kg/TJ,679799.20065442,kg +ca8ef64e-1163-3936-a545-d45701233690,SESCO,II.1.1,La Pampa,AR-L,annual,2017,naphtha combustion consumption by to the public,9.2742046474,TJ,CH4,3.0,kg/TJ,27.8226139422,kg +3bb7868d-0c57-3fc1-9f88-734384764889,SESCO,II.1.1,La Pampa,AR-L,annual,2017,naphtha combustion consumption by to the public,9.2742046474,TJ,N2O,0.6,kg/TJ,5.56452278844,kg +523e57f7-826a-3afa-9373-237e7461c849,SESCO,II.1.1,La Rioja,AR-F,annual,2017,naphtha combustion consumption by to the public,44.077564814359995,TJ,CO2,73300.0,kg/TJ,3230885.5008925875,kg +1d55b80c-7f8f-3094-b51e-ef577e50c334,SESCO,II.1.1,La Rioja,AR-F,annual,2017,naphtha combustion consumption by to the public,44.077564814359995,TJ,CH4,3.0,kg/TJ,132.23269444308,kg +6a240e95-e090-3263-bf77-71aa57d30cbd,SESCO,II.1.1,La Rioja,AR-F,annual,2017,naphtha combustion consumption by to the public,44.077564814359995,TJ,N2O,0.6,kg/TJ,26.446538888615997,kg +2f45d1c2-fe82-3c96-a938-9e73e98acaf6,SESCO,II.1.1,Mendoza,AR-M,annual,2017,naphtha combustion consumption by to the public,247.04113611715997,TJ,CO2,73300.0,kg/TJ,18108115.277387824,kg +5ad47e00-9bfb-362a-acb8-084d77b801e1,SESCO,II.1.1,Mendoza,AR-M,annual,2017,naphtha combustion consumption by to the public,247.04113611715997,TJ,CH4,3.0,kg/TJ,741.1234083514798,kg +59eb1a46-434a-3ad4-a7d3-e77379ad673d,SESCO,II.1.1,Mendoza,AR-M,annual,2017,naphtha combustion consumption by to the public,247.04113611715997,TJ,N2O,0.6,kg/TJ,148.22468167029598,kg +f6d97419-0d6a-3386-af61-a7b6e5c0a10e,SESCO,II.1.1,Misiones,AR-N,annual,2017,naphtha combustion consumption by to the public,277.4340600878,TJ,CO2,73300.0,kg/TJ,20335916.60443574,kg +dddb1edb-0af5-36aa-88f5-d1cb20f233bd,SESCO,II.1.1,Misiones,AR-N,annual,2017,naphtha combustion consumption by to the public,277.4340600878,TJ,CH4,3.0,kg/TJ,832.3021802634,kg +bac1c144-4485-3c59-8368-a1b41247e68d,SESCO,II.1.1,Misiones,AR-N,annual,2017,naphtha combustion consumption by to the public,277.4340600878,TJ,N2O,0.6,kg/TJ,166.46043605268,kg +8fea493e-fb14-39bd-aaf6-c5ccf2e4e962,SESCO,II.1.1,San Juan,AR-J,annual,2017,naphtha combustion consumption by to the public,283.55160161019995,TJ,CO2,73300.0,kg/TJ,20784332.398027655,kg +88caeeb9-3b92-3db4-8c99-64c46db3cb42,SESCO,II.1.1,San Juan,AR-J,annual,2017,naphtha combustion consumption by to the public,283.55160161019995,TJ,CH4,3.0,kg/TJ,850.6548048305999,kg +a4e67916-acc5-39ae-a594-dedf392effb7,SESCO,II.1.1,San Juan,AR-J,annual,2017,naphtha combustion consumption by to the public,283.55160161019995,TJ,N2O,0.6,kg/TJ,170.13096096611997,kg +71345b28-5662-36a9-bfd8-b8458600d90d,SESCO,II.1.1,San Luis,AR-D,annual,2017,naphtha combustion consumption by to the public,190.86180761647998,TJ,CO2,73300.0,kg/TJ,13990170.498287983,kg +07e73d77-703d-3ec0-9946-3980bcfb6d36,SESCO,II.1.1,San Luis,AR-D,annual,2017,naphtha combustion consumption by to the public,190.86180761647998,TJ,CH4,3.0,kg/TJ,572.58542284944,kg +9d814d94-68cb-3502-8e68-628ecd0af04f,SESCO,II.1.1,San Luis,AR-D,annual,2017,naphtha combustion consumption by to the public,190.86180761647998,TJ,N2O,0.6,kg/TJ,114.51708456988798,kg +25eed408-1831-35ef-ac8b-7cb1a70140eb,SESCO,II.1.1,Santa Fe,AR-S,annual,2017,naphtha combustion consumption by to the public,997.4022938972399,TJ,CO2,73300.0,kg/TJ,73109588.14266768,kg +13fbdf38-8d62-3106-9fa3-b190df174186,SESCO,II.1.1,Santa Fe,AR-S,annual,2017,naphtha combustion consumption by to the public,997.4022938972399,TJ,CH4,3.0,kg/TJ,2992.20688169172,kg +3974118d-2d3c-3ffa-a0dc-aa245e8e81c1,SESCO,II.1.1,Santa Fe,AR-S,annual,2017,naphtha combustion consumption by to the public,997.4022938972399,TJ,N2O,0.6,kg/TJ,598.441376338344,kg +249914b8-e227-3a7d-93c0-da51d41269de,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2017,naphtha combustion consumption by to the public,202.76431292655997,TJ,CO2,73300.0,kg/TJ,14862624.137516845,kg +99a58730-b08d-3ec3-a2f1-da355d0114df,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2017,naphtha combustion consumption by to the public,202.76431292655997,TJ,CH4,3.0,kg/TJ,608.2929387796798,kg +37888093-a5c9-3209-a8fc-07ca6ff40712,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2017,naphtha combustion consumption by to the public,202.76431292655997,TJ,N2O,0.6,kg/TJ,121.65858775593597,kg +4dcfc158-e5b9-3150-b810-00b55fc1f37c,SESCO,II.1.1,Tucuman,AR-T,annual,2017,naphtha combustion consumption by to the public,194.06686662748,TJ,CO2,73300.0,kg/TJ,14225101.323794285,kg +260ff7c9-7025-3e2a-99dd-a6b5bae296c5,SESCO,II.1.1,Tucuman,AR-T,annual,2017,naphtha combustion consumption by to the public,194.06686662748,TJ,CH4,3.0,kg/TJ,582.20059988244,kg +ad9bdfe1-1c70-3468-b688-066dd90847cb,SESCO,II.1.1,Tucuman,AR-T,annual,2017,naphtha combustion consumption by to the public,194.06686662748,TJ,N2O,0.6,kg/TJ,116.440119976488,kg +7ed008ac-b49e-3f29-9346-bed2aac34262,SESCO,II.1.1,Buenos Aires,AR-B,annual,2017,naphtha combustion consumption by to the public,347.61457471048,TJ,CO2,73300.0,kg/TJ,25480148.326278184,kg +bae26f85-ef97-370b-af4c-c70d4a13e63e,SESCO,II.1.1,Buenos Aires,AR-B,annual,2017,naphtha combustion consumption by to the public,347.61457471048,TJ,CH4,3.0,kg/TJ,1042.84372413144,kg +a9dd13b9-6843-36b3-85a5-78dd17f5a590,SESCO,II.1.1,Buenos Aires,AR-B,annual,2017,naphtha combustion consumption by to the public,347.61457471048,TJ,N2O,0.6,kg/TJ,208.568744826288,kg +9e6d8a56-3077-305c-87b2-57bcb047726d,SESCO,II.1.1,Capital Federal,AR-C,annual,2017,naphtha combustion consumption by to the public,63.568762152279994,TJ,CO2,73300.0,kg/TJ,4659590.265762123,kg +e6ab1511-2244-3e1d-84dc-27ed85259a48,SESCO,II.1.1,Capital Federal,AR-C,annual,2017,naphtha combustion consumption by to the public,63.568762152279994,TJ,CH4,3.0,kg/TJ,190.70628645684,kg +47e0856a-09b6-35c7-b096-9c333c0b5eed,SESCO,II.1.1,Capital Federal,AR-C,annual,2017,naphtha combustion consumption by to the public,63.568762152279994,TJ,N2O,0.6,kg/TJ,38.14125729136799,kg +578e0da1-883f-31f3-95f5-78a6d26d608f,SESCO,II.1.1,Catamarca,AR-K,annual,2017,naphtha combustion consumption by to the public,23.0013584878,TJ,CO2,73300.0,kg/TJ,1685999.57715574,kg +84c89888-4c14-30a3-82aa-02395f168fe3,SESCO,II.1.1,Catamarca,AR-K,annual,2017,naphtha combustion consumption by to the public,23.0013584878,TJ,CH4,3.0,kg/TJ,69.0040754634,kg +5c37cec9-9293-30b2-9430-d1f85be1fcb1,SESCO,II.1.1,Catamarca,AR-K,annual,2017,naphtha combustion consumption by to the public,23.0013584878,TJ,N2O,0.6,kg/TJ,13.80081509268,kg +ce452435-0723-3c98-9521-12a8b924eb52,SESCO,II.1.1,Chaco,AR-H,annual,2017,naphtha combustion consumption by to the public,31.11458050624,TJ,CO2,73300.0,kg/TJ,2280698.751107392,kg +a7c9a03b-5567-3f3b-bc18-351a6392576b,SESCO,II.1.1,Chaco,AR-H,annual,2017,naphtha combustion consumption by to the public,31.11458050624,TJ,CH4,3.0,kg/TJ,93.34374151872,kg +b886db04-1b75-369b-ab95-41c5e7f95ccf,SESCO,II.1.1,Chaco,AR-H,annual,2017,naphtha combustion consumption by to the public,31.11458050624,TJ,N2O,0.6,kg/TJ,18.668748303744,kg +553fdf7a-1ced-3803-b88d-2514445c322e,SESCO,II.1.1,Corrientes,AR-W,annual,2017,naphtha combustion consumption by to the public,61.380405723559996,TJ,CO2,73300.0,kg/TJ,4499183.739536948,kg +f802e0a5-8e07-3f87-8f0f-afda26530377,SESCO,II.1.1,Corrientes,AR-W,annual,2017,naphtha combustion consumption by to the public,61.380405723559996,TJ,CH4,3.0,kg/TJ,184.14121717068,kg +131ee1bf-8acd-3226-b076-3cdd4cc0327d,SESCO,II.1.1,Corrientes,AR-W,annual,2017,naphtha combustion consumption by to the public,61.380405723559996,TJ,N2O,0.6,kg/TJ,36.828243434136,kg +f9fe6af2-473f-3e7b-b0d8-64ba18900b5d,SESCO,II.1.1,Córdoba,AR-X,annual,2017,naphtha combustion consumption by to the public,179.14433138756002,TJ,CO2,73300.0,kg/TJ,13131279.49070815,kg +4d1790f5-5dca-3c12-8145-0c6eb41c9d1c,SESCO,II.1.1,Córdoba,AR-X,annual,2017,naphtha combustion consumption by to the public,179.14433138756002,TJ,CH4,3.0,kg/TJ,537.4329941626801,kg +7bf5977d-f17c-3636-8b67-5b6198a83e45,SESCO,II.1.1,Córdoba,AR-X,annual,2017,naphtha combustion consumption by to the public,179.14433138756002,TJ,N2O,0.6,kg/TJ,107.486598832536,kg +b646c411-1196-3e77-b435-d6610a44cf91,SESCO,II.1.1,Entre Rios,AR-E,annual,2017,naphtha combustion consumption by to the public,75.36566794064,TJ,CO2,73300.0,kg/TJ,5524303.460048911,kg +979779d7-104d-3be2-97c7-aa2905508e82,SESCO,II.1.1,Entre Rios,AR-E,annual,2017,naphtha combustion consumption by to the public,75.36566794064,TJ,CH4,3.0,kg/TJ,226.09700382192,kg +47d9bcef-7427-3587-9bf9-6a7e1775f71b,SESCO,II.1.1,Entre Rios,AR-E,annual,2017,naphtha combustion consumption by to the public,75.36566794064,TJ,N2O,0.6,kg/TJ,45.219400764384,kg +6f7c7b81-a210-33d8-80b2-6a15542f1e33,SESCO,II.1.1,Jujuy,AR-Y,annual,2017,naphtha combustion consumption by to the public,1.7111910846799998,TJ,CO2,73300.0,kg/TJ,125430.30650704399,kg +40e48394-9d80-3167-b3b3-c00e3fb814da,SESCO,II.1.1,Jujuy,AR-Y,annual,2017,naphtha combustion consumption by to the public,1.7111910846799998,TJ,CH4,3.0,kg/TJ,5.13357325404,kg +2cb91b70-5e98-3d12-99c1-bd8cb5fa5625,SESCO,II.1.1,Jujuy,AR-Y,annual,2017,naphtha combustion consumption by to the public,1.7111910846799998,TJ,N2O,0.6,kg/TJ,1.0267146508079998,kg +e00442a6-ad5f-34ba-aedf-a091e2621048,SESCO,II.1.1,La Pampa,AR-L,annual,2017,naphtha combustion consumption by to the public,3.846342192,TJ,CO2,73300.0,kg/TJ,281936.8826736,kg +032f5aae-c163-3825-8987-15ae9de5c55d,SESCO,II.1.1,La Pampa,AR-L,annual,2017,naphtha combustion consumption by to the public,3.846342192,TJ,CH4,3.0,kg/TJ,11.539026576,kg +288ef6ed-ffdf-3ff9-baee-ade65b324c03,SESCO,II.1.1,La Pampa,AR-L,annual,2017,naphtha combustion consumption by to the public,3.846342192,TJ,N2O,0.6,kg/TJ,2.3078053152,kg +3bde428b-dba8-343a-8d24-da13f907817e,SESCO,II.1.1,La Rioja,AR-F,annual,2017,naphtha combustion consumption by to the public,9.38858176564,TJ,CO2,73300.0,kg/TJ,688183.043421412,kg +81255f68-b7a0-3fe1-9006-0849a2110cbc,SESCO,II.1.1,La Rioja,AR-F,annual,2017,naphtha combustion consumption by to the public,9.38858176564,TJ,CH4,3.0,kg/TJ,28.16574529692,kg +74710ca4-0600-352b-a8b6-84192627ed73,SESCO,II.1.1,La Rioja,AR-F,annual,2017,naphtha combustion consumption by to the public,9.38858176564,TJ,N2O,0.6,kg/TJ,5.6331490593839995,kg +4bcd172d-1f42-3426-acfe-408e893dd181,SESCO,II.1.1,Mendoza,AR-M,annual,2017,naphtha combustion consumption by to the public,51.126466317079995,TJ,CO2,73300.0,kg/TJ,3747569.9810419637,kg +ee449325-9fe2-3d40-af53-97dba56e6546,SESCO,II.1.1,Mendoza,AR-M,annual,2017,naphtha combustion consumption by to the public,51.126466317079995,TJ,CH4,3.0,kg/TJ,153.37939895123998,kg +4c8bfcb4-2c21-3544-bd81-41779697e0bb,SESCO,II.1.1,Mendoza,AR-M,annual,2017,naphtha combustion consumption by to the public,51.126466317079995,TJ,N2O,0.6,kg/TJ,30.675879790247997,kg +d7dea0be-aeed-30c6-9da0-0d891f0c2a24,SESCO,II.1.1,Misiones,AR-N,annual,2017,naphtha combustion consumption by to the public,39.21021717844,TJ,CO2,73300.0,kg/TJ,2874108.919179652,kg +3bb3a088-a312-3dd2-9bf2-5cd5494347b2,SESCO,II.1.1,Misiones,AR-N,annual,2017,naphtha combustion consumption by to the public,39.21021717844,TJ,CH4,3.0,kg/TJ,117.63065153532,kg +8f67464d-513d-3945-a837-24b2fd8a7ca9,SESCO,II.1.1,Misiones,AR-N,annual,2017,naphtha combustion consumption by to the public,39.21021717844,TJ,N2O,0.6,kg/TJ,23.526130307063998,kg +695c6f45-e1aa-38d8-b090-0883e6149150,SESCO,II.1.1,San Juan,AR-J,annual,2017,naphtha combustion consumption by to the public,70.34760556516,TJ,CO2,73300.0,kg/TJ,5156479.487926228,kg +e9915c90-a45d-3bd0-b066-f9ccff5d8c9a,SESCO,II.1.1,San Juan,AR-J,annual,2017,naphtha combustion consumption by to the public,70.34760556516,TJ,CH4,3.0,kg/TJ,211.04281669547998,kg +6bf02e93-4d41-39b1-b968-dd5ef933de99,SESCO,II.1.1,San Juan,AR-J,annual,2017,naphtha combustion consumption by to the public,70.34760556516,TJ,N2O,0.6,kg/TJ,42.208563339095996,kg +18d91a2c-a14e-30e2-ad27-a3ecfe387711,SESCO,II.1.1,San Luis,AR-D,annual,2017,naphtha combustion consumption by to the public,46.432972986399996,TJ,CO2,73300.0,kg/TJ,3403536.9199031196,kg +3943277c-1ec5-39a1-80f0-8c797fd31ce8,SESCO,II.1.1,San Luis,AR-D,annual,2017,naphtha combustion consumption by to the public,46.432972986399996,TJ,CH4,3.0,kg/TJ,139.2989189592,kg +7dad4826-7a5f-3d04-a462-2c0922c02bb9,SESCO,II.1.1,San Luis,AR-D,annual,2017,naphtha combustion consumption by to the public,46.432972986399996,TJ,N2O,0.6,kg/TJ,27.859783791839998,kg +97c00563-c3bd-362e-ae73-fc97df1cc1d7,SESCO,II.1.1,Santa Fe,AR-S,annual,2017,naphtha combustion consumption by to the public,226.79979953091998,TJ,CO2,73300.0,kg/TJ,16624425.305616435,kg +76294dce-b2c4-383b-8cc7-bfa63f014818,SESCO,II.1.1,Santa Fe,AR-S,annual,2017,naphtha combustion consumption by to the public,226.79979953091998,TJ,CH4,3.0,kg/TJ,680.39939859276,kg +1276c7ee-9b5b-31ae-b0c6-0761b038f780,SESCO,II.1.1,Santa Fe,AR-S,annual,2017,naphtha combustion consumption by to the public,226.79979953091998,TJ,N2O,0.6,kg/TJ,136.07987971855198,kg +c0be0008-92ba-32d0-b5f0-6e3677c377f3,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2017,naphtha combustion consumption by to the public,36.67879271672,TJ,CO2,73300.0,kg/TJ,2688555.506135576,kg +afd508e0-f26f-38f9-9571-1e89e7bd5eba,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2017,naphtha combustion consumption by to the public,36.67879271672,TJ,CH4,3.0,kg/TJ,110.03637815015999,kg +2194bfc9-333e-39a8-96fe-869694b0362c,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2017,naphtha combustion consumption by to the public,36.67879271672,TJ,N2O,0.6,kg/TJ,22.007275630031998,kg +aea55db3-f21c-3600-9fc6-3b89f8106daf,SESCO,II.1.1,Tucuman,AR-T,annual,2017,naphtha combustion consumption by to the public,26.496051046079995,TJ,CO2,73300.0,kg/TJ,1942160.5416776636,kg +be5d36c4-8b21-34dd-881a-7ed5c156a45f,SESCO,II.1.1,Tucuman,AR-T,annual,2017,naphtha combustion consumption by to the public,26.496051046079995,TJ,CH4,3.0,kg/TJ,79.48815313823998,kg +ca2c5bf0-2199-3dc5-951a-5557eed734f5,SESCO,II.1.1,Tucuman,AR-T,annual,2017,naphtha combustion consumption by to the public,26.496051046079995,TJ,N2O,0.6,kg/TJ,15.897630627647995,kg +62a65cf7-23c9-371b-8440-ab712df1418b,SESCO,II.5.1,Buenos Aires,AR-B,annual,2017,naphtha combustion consumption by agriculture machines,7.851109296800001,TJ,CO2,73300.0,kg/TJ,575486.31145544,kg +e8bedd23-c89b-31b0-9941-f61e88202caf,SESCO,II.5.1,Buenos Aires,AR-B,annual,2017,naphtha combustion consumption by agriculture machines,7.851109296800001,TJ,CH4,3.0,kg/TJ,23.553327890400002,kg +f3539ebe-d332-3ca4-8fa2-4748c5866975,SESCO,II.5.1,Buenos Aires,AR-B,annual,2017,naphtha combustion consumption by agriculture machines,7.851109296800001,TJ,N2O,0.6,kg/TJ,4.71066557808,kg +be3b7df4-2d53-34cf-b049-826b9ce911d2,SESCO,II.5.1,Neuquén,AR-Q,annual,2017,naphtha combustion consumption by agriculture machines,3.1429584956,TJ,CO2,73300.0,kg/TJ,230378.85772747998,kg +ed5b4ca3-5f32-3f66-a924-8493219e6bc0,SESCO,II.5.1,Neuquén,AR-Q,annual,2017,naphtha combustion consumption by agriculture machines,3.1429584956,TJ,CH4,3.0,kg/TJ,9.428875486799999,kg +105f8a06-66ee-3683-8682-33fdadd08142,SESCO,II.5.1,Neuquén,AR-Q,annual,2017,naphtha combustion consumption by agriculture machines,3.1429584956,TJ,N2O,0.6,kg/TJ,1.8857750973599998,kg +28bbeaf9-7f0c-3e66-91f1-81ebf2b3bba4,SESCO,II.5.1,Rio Negro,AR-R,annual,2017,naphtha combustion consumption by agriculture machines,1.2912806367999998,TJ,CO2,73300.0,kg/TJ,94650.87067743999,kg +a34ede69-aa44-3607-b53f-bb5d964e0304,SESCO,II.5.1,Rio Negro,AR-R,annual,2017,naphtha combustion consumption by agriculture machines,1.2912806367999998,TJ,CH4,3.0,kg/TJ,3.8738419103999995,kg +14341a0d-f0a7-3b73-8d5b-a9015b076cd5,SESCO,II.5.1,Rio Negro,AR-R,annual,2017,naphtha combustion consumption by agriculture machines,1.2912806367999998,TJ,N2O,0.6,kg/TJ,0.7747683820799999,kg +fd50bd7a-ca80-320f-aff5-76b884ab1d61,SESCO,II.5.1,Buenos Aires,AR-B,annual,2017,naphtha combustion consumption by agriculture machines,1.6286949447999999,TJ,CO2,73300.0,kg/TJ,119383.33945383999,kg +13c6878a-9a52-31b6-9c29-d10cd6339acb,SESCO,II.5.1,Buenos Aires,AR-B,annual,2017,naphtha combustion consumption by agriculture machines,1.6286949447999999,TJ,CH4,3.0,kg/TJ,4.8860848344,kg +b67f6829-dcfa-33cd-b607-670e0019eda0,SESCO,II.5.1,Buenos Aires,AR-B,annual,2017,naphtha combustion consumption by agriculture machines,1.6286949447999999,TJ,N2O,0.6,kg/TJ,0.9772169668799999,kg +96b6bd1e-46b7-3cb6-b2b7-25a1528e7150,SESCO,II.1.1,Buenos Aires,AR-B,annual,2017,naphtha combustion consumption by to the public,3978.4654031891996,TJ,CO2,73300.0,kg/TJ,291621514.05376834,kg +0ba91e92-aff2-3caa-9438-f42c3dac86a1,SESCO,II.1.1,Buenos Aires,AR-B,annual,2017,naphtha combustion consumption by to the public,3978.4654031891996,TJ,CH4,3.0,kg/TJ,11935.3962095676,kg +a41a4a6b-b25c-3238-88d1-aba22b2f5f24,SESCO,II.1.1,Buenos Aires,AR-B,annual,2017,naphtha combustion consumption by to the public,3978.4654031891996,TJ,N2O,0.6,kg/TJ,2387.0792419135196,kg +9944565b-ddef-370b-b625-0af4b9674425,SESCO,II.1.1,Capital Federal,AR-C,annual,2017,naphtha combustion consumption by to the public,462.70311549,TJ,CO2,73300.0,kg/TJ,33916138.365417,kg +3b4f2556-5811-30e0-88bb-076d6f3a4a85,SESCO,II.1.1,Capital Federal,AR-C,annual,2017,naphtha combustion consumption by to the public,462.70311549,TJ,CH4,3.0,kg/TJ,1388.10934647,kg +61bb8e0a-0ff6-354a-99b2-147f3ca43b45,SESCO,II.1.1,Capital Federal,AR-C,annual,2017,naphtha combustion consumption by to the public,462.70311549,TJ,N2O,0.6,kg/TJ,277.621869294,kg +04027823-8326-334a-8735-f9668beff522,SESCO,II.1.1,Chubut,AR-U,annual,2017,naphtha combustion consumption by to the public,1351.7248670771996,TJ,CO2,73300.0,kg/TJ,99081432.75675873,kg +936a9b61-96a0-32d4-a463-7db5edf27dd7,SESCO,II.1.1,Chubut,AR-U,annual,2017,naphtha combustion consumption by to the public,1351.7248670771996,TJ,CH4,3.0,kg/TJ,4055.174601231599,kg +2bba9481-52f7-3528-a17e-862801fb3097,SESCO,II.1.1,Chubut,AR-U,annual,2017,naphtha combustion consumption by to the public,1351.7248670771996,TJ,N2O,0.6,kg/TJ,811.0349202463198,kg +2c1709ab-ebed-3796-aa5a-6b9fd60acdc1,SESCO,II.1.1,Córdoba,AR-X,annual,2017,naphtha combustion consumption by to the public,443.9747518976,TJ,CO2,73300.0,kg/TJ,32543349.31409408,kg +0964b045-6eb4-37f0-bda2-580c77379d9f,SESCO,II.1.1,Córdoba,AR-X,annual,2017,naphtha combustion consumption by to the public,443.9747518976,TJ,CH4,3.0,kg/TJ,1331.9242556928,kg +007f664c-0f1c-3ba3-9d16-66ba630167b8,SESCO,II.1.1,Córdoba,AR-X,annual,2017,naphtha combustion consumption by to the public,443.9747518976,TJ,N2O,0.6,kg/TJ,266.38485113856,kg +bfdbc302-2c90-3100-ac6d-7ec375882e20,SESCO,II.1.1,Entre Rios,AR-E,annual,2017,naphtha combustion consumption by to the public,128.4608035172,TJ,CO2,73300.0,kg/TJ,9416176.897810759,kg +8317e25d-ac2f-3842-9f39-980116a9a888,SESCO,II.1.1,Entre Rios,AR-E,annual,2017,naphtha combustion consumption by to the public,128.4608035172,TJ,CH4,3.0,kg/TJ,385.38241055159995,kg +1ede61bc-402b-3f55-a5c6-939512eeb754,SESCO,II.1.1,Entre Rios,AR-E,annual,2017,naphtha combustion consumption by to the public,128.4608035172,TJ,N2O,0.6,kg/TJ,77.07648211031999,kg +ed8ea7bb-901e-3161-96e8-73b7105566c6,SESCO,II.1.1,La Pampa,AR-L,annual,2017,naphtha combustion consumption by to the public,387.999165554,TJ,CO2,73300.0,kg/TJ,28440338.8351082,kg +f97e2ec0-a902-3898-8847-a3eb3fcfd537,SESCO,II.1.1,La Pampa,AR-L,annual,2017,naphtha combustion consumption by to the public,387.999165554,TJ,CH4,3.0,kg/TJ,1163.997496662,kg +1397b00a-0abd-36bc-a76d-bc167572102f,SESCO,II.1.1,La Pampa,AR-L,annual,2017,naphtha combustion consumption by to the public,387.999165554,TJ,N2O,0.6,kg/TJ,232.7994993324,kg +c0d72020-7dae-3c8b-addb-f3fb8d02cff1,SESCO,II.1.1,Neuquén,AR-Q,annual,2017,naphtha combustion consumption by to the public,468.4222427808,TJ,CO2,73300.0,kg/TJ,34335350.39583264,kg +a16b018c-c15c-31c3-8eca-1975bf281b09,SESCO,II.1.1,Neuquén,AR-Q,annual,2017,naphtha combustion consumption by to the public,468.4222427808,TJ,CH4,3.0,kg/TJ,1405.2667283424,kg +7949ed3f-5507-3914-899d-806ad4a37228,SESCO,II.1.1,Neuquén,AR-Q,annual,2017,naphtha combustion consumption by to the public,468.4222427808,TJ,N2O,0.6,kg/TJ,281.05334566848,kg +2860f705-dbec-36f0-8258-684f169d2f5a,SESCO,II.1.1,Rio Negro,AR-R,annual,2017,naphtha combustion consumption by to the public,1209.2407449891998,TJ,CO2,73300.0,kg/TJ,88637346.60770835,kg +5004b7a1-ffbf-3247-89eb-f0b850150b79,SESCO,II.1.1,Rio Negro,AR-R,annual,2017,naphtha combustion consumption by to the public,1209.2407449891998,TJ,CH4,3.0,kg/TJ,3627.7222349675994,kg +b9e71499-7a3e-3fc3-bf13-a38ca1e941a1,SESCO,II.1.1,Rio Negro,AR-R,annual,2017,naphtha combustion consumption by to the public,1209.2407449891998,TJ,N2O,0.6,kg/TJ,725.5444469935198,kg +623f5a6a-da0f-3ad9-ba17-c789dffe159e,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2017,naphtha combustion consumption by to the public,786.3957575319998,TJ,CO2,73300.0,kg/TJ,57642809.027095586,kg +5f44e715-c0dc-3222-8bc9-2074677bbfbe,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2017,naphtha combustion consumption by to the public,786.3957575319998,TJ,CH4,3.0,kg/TJ,2359.1872725959993,kg +5916c357-0495-38c4-8f18-22d70ec6105d,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2017,naphtha combustion consumption by to the public,786.3957575319998,TJ,N2O,0.6,kg/TJ,471.83745451919987,kg +32403173-76c7-3f8d-828c-7de51458624a,SESCO,II.1.1,Santa Fe,AR-S,annual,2017,naphtha combustion consumption by to the public,543.3643426904,TJ,CO2,73300.0,kg/TJ,39828606.31920632,kg +8d851dd3-cf49-3fa6-bbe9-8cdbe48b863f,SESCO,II.1.1,Santa Fe,AR-S,annual,2017,naphtha combustion consumption by to the public,543.3643426904,TJ,CH4,3.0,kg/TJ,1630.0930280712,kg +b306cfc9-f590-3ae8-a85a-4dd4de1c2a46,SESCO,II.1.1,Santa Fe,AR-S,annual,2017,naphtha combustion consumption by to the public,543.3643426904,TJ,N2O,0.6,kg/TJ,326.01860561424,kg +62a1a131-6c60-3f7d-94ef-e35b370bb0df,SESCO,II.1.1,Buenos Aires,AR-B,annual,2017,naphtha combustion consumption by to the public,1104.6380880612,TJ,CO2,73300.0,kg/TJ,80969971.85488597,kg +a9c83974-9a06-31f2-92ed-fbf72865d6f0,SESCO,II.1.1,Buenos Aires,AR-B,annual,2017,naphtha combustion consumption by to the public,1104.6380880612,TJ,CH4,3.0,kg/TJ,3313.9142641836,kg +59835193-902c-31a0-b1a9-b659c4cca412,SESCO,II.1.1,Buenos Aires,AR-B,annual,2017,naphtha combustion consumption by to the public,1104.6380880612,TJ,N2O,0.6,kg/TJ,662.78285283672,kg +ebd4c858-01b6-3fba-acf3-d1bb7f21da7c,SESCO,II.1.1,Capital Federal,AR-C,annual,2017,naphtha combustion consumption by to the public,162.7329909436,TJ,CO2,73300.0,kg/TJ,11928328.23616588,kg +68d34a01-84f2-3c50-8640-be3bfac103a7,SESCO,II.1.1,Capital Federal,AR-C,annual,2017,naphtha combustion consumption by to the public,162.7329909436,TJ,CH4,3.0,kg/TJ,488.19897283079996,kg +d1ade175-a2c7-3bef-ba82-68c264a4f8bd,SESCO,II.1.1,Capital Federal,AR-C,annual,2017,naphtha combustion consumption by to the public,162.7329909436,TJ,N2O,0.6,kg/TJ,97.63979456615999,kg +36c3883a-aa13-31b6-8571-4e4b8c2125e9,SESCO,II.1.1,Chubut,AR-U,annual,2017,naphtha combustion consumption by to the public,297.869290796,TJ,CO2,73300.0,kg/TJ,21833819.0153468,kg +3b8157e1-2929-3312-8df2-b7f0e0cefede,SESCO,II.1.1,Chubut,AR-U,annual,2017,naphtha combustion consumption by to the public,297.869290796,TJ,CH4,3.0,kg/TJ,893.6078723879999,kg +9fc87771-c42f-35f4-99ca-18c3bb139b1e,SESCO,II.1.1,Chubut,AR-U,annual,2017,naphtha combustion consumption by to the public,297.869290796,TJ,N2O,0.6,kg/TJ,178.72157447759997,kg +75177490-795a-3cd5-b791-bc7bf35bb400,SESCO,II.1.1,Córdoba,AR-X,annual,2017,naphtha combustion consumption by to the public,126.02322485983998,TJ,CO2,73300.0,kg/TJ,9237502.382226272,kg +04b8a0dd-d3d2-377a-93fe-997924101968,SESCO,II.1.1,Córdoba,AR-X,annual,2017,naphtha combustion consumption by to the public,126.02322485983998,TJ,CH4,3.0,kg/TJ,378.06967457952,kg +9af496c9-0a06-3e17-bc59-92a911bc7177,SESCO,II.1.1,Córdoba,AR-X,annual,2017,naphtha combustion consumption by to the public,126.02322485983998,TJ,N2O,0.6,kg/TJ,75.61393491590398,kg +8c8ebcc6-1308-39d3-bd7a-31e88ceb776f,SESCO,II.1.1,Entre Rios,AR-E,annual,2017,naphtha combustion consumption by to the public,44.032627500400004,TJ,CO2,73300.0,kg/TJ,3227591.59577932,kg +97cf3e18-7b2d-3607-9cbd-1d5f1bad4d65,SESCO,II.1.1,Entre Rios,AR-E,annual,2017,naphtha combustion consumption by to the public,44.032627500400004,TJ,CH4,3.0,kg/TJ,132.09788250120002,kg +78cdc885-7842-36ce-83dd-d06e9a56e5d0,SESCO,II.1.1,Entre Rios,AR-E,annual,2017,naphtha combustion consumption by to the public,44.032627500400004,TJ,N2O,0.6,kg/TJ,26.41957650024,kg +e7d92781-936b-3a3c-99ff-c7a7dc57285b,SESCO,II.1.1,La Pampa,AR-L,annual,2017,naphtha combustion consumption by to the public,149.2714264888,TJ,CO2,73300.0,kg/TJ,10941595.561629038,kg +4ad425e3-89c1-3e1d-83fb-330aa8da56ae,SESCO,II.1.1,La Pampa,AR-L,annual,2017,naphtha combustion consumption by to the public,149.2714264888,TJ,CH4,3.0,kg/TJ,447.81427946639997,kg +0724fab4-5c8d-39bb-9cd5-93ab6e40bfeb,SESCO,II.1.1,La Pampa,AR-L,annual,2017,naphtha combustion consumption by to the public,149.2714264888,TJ,N2O,0.6,kg/TJ,89.56285589327999,kg +26609f8e-1cd2-33cf-ba18-b2cb9b7492d6,SESCO,II.1.1,Neuquén,AR-Q,annual,2017,naphtha combustion consumption by to the public,232.8302254432,TJ,CO2,73300.0,kg/TJ,17066455.524986558,kg +73eade5e-3636-3681-84f2-2bab724d1694,SESCO,II.1.1,Neuquén,AR-Q,annual,2017,naphtha combustion consumption by to the public,232.8302254432,TJ,CH4,3.0,kg/TJ,698.4906763296,kg +ece1b853-f64c-32bc-883d-022c09f9fa63,SESCO,II.1.1,Neuquén,AR-Q,annual,2017,naphtha combustion consumption by to the public,232.8302254432,TJ,N2O,0.6,kg/TJ,139.69813526592,kg +553e3e13-382f-3c50-98df-e62b8a7f5f3b,SESCO,II.1.1,Rio Negro,AR-R,annual,2017,naphtha combustion consumption by to the public,294.4159051064,TJ,CO2,73300.0,kg/TJ,21580685.84429912,kg +15c5db0a-d1f4-3567-bb75-8ab9a12aedc6,SESCO,II.1.1,Rio Negro,AR-R,annual,2017,naphtha combustion consumption by to the public,294.4159051064,TJ,CH4,3.0,kg/TJ,883.2477153191999,kg +adad4368-682d-36ef-833b-b3ac610cd9da,SESCO,II.1.1,Rio Negro,AR-R,annual,2017,naphtha combustion consumption by to the public,294.4159051064,TJ,N2O,0.6,kg/TJ,176.64954306383999,kg +1f8606e3-ef29-3e09-a6da-9ef81074eab8,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2017,naphtha combustion consumption by to the public,167.7422817532,TJ,CO2,73300.0,kg/TJ,12295509.252509559,kg +cf09d0c9-b535-3135-bd5a-84e0df105d86,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2017,naphtha combustion consumption by to the public,167.7422817532,TJ,CH4,3.0,kg/TJ,503.22684525959994,kg +ebbf7d43-86b7-306a-8bf6-02b9add1e2d0,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2017,naphtha combustion consumption by to the public,167.7422817532,TJ,N2O,0.6,kg/TJ,100.64536905191999,kg +8949d295-6667-3375-848f-9d541a960cff,SESCO,II.1.1,Santa Fe,AR-S,annual,2017,naphtha combustion consumption by to the public,214.0171313588,TJ,CO2,73300.0,kg/TJ,15687455.728600038,kg +6760af17-d33e-3fa7-8280-18ffb66134b9,SESCO,II.1.1,Santa Fe,AR-S,annual,2017,naphtha combustion consumption by to the public,214.0171313588,TJ,CH4,3.0,kg/TJ,642.0513940763999,kg +8096d426-d229-3a9d-8b75-a77d514740e7,SESCO,II.1.1,Santa Fe,AR-S,annual,2017,naphtha combustion consumption by to the public,214.0171313588,TJ,N2O,0.6,kg/TJ,128.41027881527998,kg +2b4db489-2a56-3435-bef4-473778b56481,SESCO,I.3.1,Santa Cruz,AR-Z,annual,2017,naphtha combustion consumption by petrochemical industries,0.3635872855999999,TJ,CO2,73300.0,kg/TJ,26650.948034479996,kg +01d391f1-7422-32d9-b175-578037815cd1,SESCO,I.3.1,Santa Cruz,AR-Z,annual,2017,naphtha combustion consumption by petrochemical industries,0.3635872855999999,TJ,CH4,3.0,kg/TJ,1.0907618567999997,kg +9401eac3-5921-3821-93b2-dad73cba7941,SESCO,I.3.1,Santa Cruz,AR-Z,annual,2017,naphtha combustion consumption by petrochemical industries,0.3635872855999999,TJ,N2O,0.6,kg/TJ,0.21815237135999996,kg +7bfa9e67-2447-3f27-8331-1862851bbedd,SESCO,II.1.1,Buenos Aires,AR-B,annual,2017,naphtha combustion consumption by to the public,297.3407052,TJ,CO2,73300.0,kg/TJ,21795073.69116,kg +7ca7a479-2333-3235-b0a0-f50dfb1809fc,SESCO,II.1.1,Buenos Aires,AR-B,annual,2017,naphtha combustion consumption by to the public,297.3407052,TJ,CH4,3.0,kg/TJ,892.0221156,kg +de63d59b-83ad-3cc4-9390-396c65c3882d,SESCO,II.1.1,Buenos Aires,AR-B,annual,2017,naphtha combustion consumption by to the public,297.3407052,TJ,N2O,0.6,kg/TJ,178.40442312,kg +cc1d55c3-964a-3f96-b0e2-83b347309f9c,SESCO,II.1.1,Capital Federal,AR-C,annual,2017,naphtha combustion consumption by to the public,30.334119199999996,TJ,CO2,73300.0,kg/TJ,2223490.93736,kg +d7383e39-c318-307f-a10a-26ac9db4d175,SESCO,II.1.1,Capital Federal,AR-C,annual,2017,naphtha combustion consumption by to the public,30.334119199999996,TJ,CH4,3.0,kg/TJ,91.00235759999998,kg +5e80fe24-fdbb-347d-9d65-5dc3c7e6e132,SESCO,II.1.1,Capital Federal,AR-C,annual,2017,naphtha combustion consumption by to the public,30.334119199999996,TJ,N2O,0.6,kg/TJ,18.200471519999997,kg +c728a7d3-b1aa-3b42-8c17-59545e37d013,SESCO,II.1.1,Corrientes,AR-W,annual,2017,naphtha combustion consumption by to the public,10.4330072,TJ,CO2,73300.0,kg/TJ,764739.42776,kg +198455b8-dc69-375c-a8f3-335c79b346e8,SESCO,II.1.1,Corrientes,AR-W,annual,2017,naphtha combustion consumption by to the public,10.4330072,TJ,CH4,3.0,kg/TJ,31.299021600000003,kg +303bea6b-4902-34d2-8a5f-826d804459e9,SESCO,II.1.1,Corrientes,AR-W,annual,2017,naphtha combustion consumption by to the public,10.4330072,TJ,N2O,0.6,kg/TJ,6.25980432,kg +fea2143e-cb10-39d4-b6eb-b1fec09baf5c,SESCO,II.1.1,Córdoba,AR-X,annual,2017,naphtha combustion consumption by to the public,108.9736648,TJ,CO2,73300.0,kg/TJ,7987769.62984,kg +fde17d41-3a1d-3676-9ae2-8df9260c800c,SESCO,II.1.1,Córdoba,AR-X,annual,2017,naphtha combustion consumption by to the public,108.9736648,TJ,CH4,3.0,kg/TJ,326.9209944,kg +86a51a40-fc39-380e-bd33-44acba155e44,SESCO,II.1.1,Córdoba,AR-X,annual,2017,naphtha combustion consumption by to the public,108.9736648,TJ,N2O,0.6,kg/TJ,65.38419888,kg +ef0fb7aa-8411-3f0f-beb6-b3a9abd662ec,SESCO,II.1.1,Entre Rios,AR-E,annual,2017,naphtha combustion consumption by to the public,52.31580199999999,TJ,CO2,73300.0,kg/TJ,3834748.2865999993,kg +983d0a1c-d646-3cb8-a782-59d66b195e63,SESCO,II.1.1,Entre Rios,AR-E,annual,2017,naphtha combustion consumption by to the public,52.31580199999999,TJ,CH4,3.0,kg/TJ,156.94740599999997,kg +8bac221f-4c2d-3fb3-8ac1-a9eda4e06b2e,SESCO,II.1.1,Entre Rios,AR-E,annual,2017,naphtha combustion consumption by to the public,52.31580199999999,TJ,N2O,0.6,kg/TJ,31.38948119999999,kg +8812fc78-44cc-3ae8-93e7-e24435327d17,SESCO,II.1.1,Salta,AR-A,annual,2017,naphtha combustion consumption by to the public,17.3983964,TJ,CO2,73300.0,kg/TJ,1275302.45612,kg +31c672d3-b525-3dc1-86ea-f240783ef74b,SESCO,II.1.1,Salta,AR-A,annual,2017,naphtha combustion consumption by to the public,17.3983964,TJ,CH4,3.0,kg/TJ,52.1951892,kg +e50a345a-439a-37fc-96e0-5e58e18fe4c5,SESCO,II.1.1,Salta,AR-A,annual,2017,naphtha combustion consumption by to the public,17.3983964,TJ,N2O,0.6,kg/TJ,10.43903784,kg +d89aa993-ad7d-3d18-a01d-6cab5508a162,SESCO,II.1.1,Santa Fe,AR-S,annual,2017,naphtha combustion consumption by to the public,14.624301999999998,TJ,CO2,73300.0,kg/TJ,1071961.3365999998,kg +4435ae3f-4ff6-35fd-b47a-3dea3475eacc,SESCO,II.1.1,Santa Fe,AR-S,annual,2017,naphtha combustion consumption by to the public,14.624301999999998,TJ,CH4,3.0,kg/TJ,43.87290599999999,kg +28caa6f0-d083-31df-978c-59075a0dc637,SESCO,II.1.1,Santa Fe,AR-S,annual,2017,naphtha combustion consumption by to the public,14.624301999999998,TJ,N2O,0.6,kg/TJ,8.774581199999998,kg +448a98bd-c215-33a6-9edc-f26956acedda,SESCO,II.1.1,Buenos Aires,AR-B,annual,2017,naphtha combustion consumption by to the public,22.910401359999998,TJ,CO2,73300.0,kg/TJ,1679332.4196879999,kg +65dffc10-6590-35dd-b298-6a31792a1b3e,SESCO,II.1.1,Buenos Aires,AR-B,annual,2017,naphtha combustion consumption by to the public,22.910401359999998,TJ,CH4,3.0,kg/TJ,68.73120408,kg +d6c5c306-056f-33d7-a2da-25902612f8ae,SESCO,II.1.1,Buenos Aires,AR-B,annual,2017,naphtha combustion consumption by to the public,22.910401359999998,TJ,N2O,0.6,kg/TJ,13.746240815999998,kg +458f2873-481f-35f9-9044-a59e5395dee5,SESCO,II.1.1,Capital Federal,AR-C,annual,2017,naphtha combustion consumption by to the public,2.0504176,TJ,CO2,73300.0,kg/TJ,150295.61007999998,kg +115e69af-7c43-373a-b8aa-21c5259fcf7c,SESCO,II.1.1,Capital Federal,AR-C,annual,2017,naphtha combustion consumption by to the public,2.0504176,TJ,CH4,3.0,kg/TJ,6.1512528,kg +9ac7f807-795d-3f68-b5a5-9b564bfb0d38,SESCO,II.1.1,Capital Federal,AR-C,annual,2017,naphtha combustion consumption by to the public,2.0504176,TJ,N2O,0.6,kg/TJ,1.2302505599999998,kg +f5cd6cfd-0d52-30a3-ac86-1369e1e87361,SESCO,II.1.1,Corrientes,AR-W,annual,2017,naphtha combustion consumption by to the public,0.1809192,TJ,CO2,73300.0,kg/TJ,13261.37736,kg +1e6e46db-7248-3a43-8f7b-74ff659decd9,SESCO,II.1.1,Corrientes,AR-W,annual,2017,naphtha combustion consumption by to the public,0.1809192,TJ,CH4,3.0,kg/TJ,0.5427576000000001,kg +714dfa33-9d97-3301-bb15-4d2e5d0552bd,SESCO,II.1.1,Corrientes,AR-W,annual,2017,naphtha combustion consumption by to the public,0.1809192,TJ,N2O,0.6,kg/TJ,0.10855152,kg +6141c7e4-fcee-355a-97ed-e6c7ac29a901,SESCO,II.1.1,Córdoba,AR-X,annual,2017,naphtha combustion consumption by to the public,8.865040800000001,TJ,CO2,73300.0,kg/TJ,649807.4906400001,kg +af8b9436-5924-3e46-b30b-ea52eeac8b7e,SESCO,II.1.1,Córdoba,AR-X,annual,2017,naphtha combustion consumption by to the public,8.865040800000001,TJ,CH4,3.0,kg/TJ,26.5951224,kg +5ecd6be0-7032-3d35-90fa-20a82ce180eb,SESCO,II.1.1,Córdoba,AR-X,annual,2017,naphtha combustion consumption by to the public,8.865040800000001,TJ,N2O,0.6,kg/TJ,5.31902448,kg +ceb444de-9e24-37a5-9418-53633c6b3345,SESCO,II.1.1,Entre Rios,AR-E,annual,2017,naphtha combustion consumption by to the public,2.9429523199999994,TJ,CO2,73300.0,kg/TJ,215718.40505599996,kg +2ce956ad-1dd7-3c12-a558-afd42159d5f4,SESCO,II.1.1,Entre Rios,AR-E,annual,2017,naphtha combustion consumption by to the public,2.9429523199999994,TJ,CH4,3.0,kg/TJ,8.828856959999998,kg +d1083fde-a890-3138-b71b-4ab2fc7ffd62,SESCO,II.1.1,Entre Rios,AR-E,annual,2017,naphtha combustion consumption by to the public,2.9429523199999994,TJ,N2O,0.6,kg/TJ,1.7657713919999996,kg +e548eaaf-2310-3ced-bfcf-4c8e2ee769be,SESCO,II.1.1,Santa Fe,AR-S,annual,2017,naphtha combustion consumption by to the public,1.1759747999999999,TJ,CO2,73300.0,kg/TJ,86198.95284,kg +b9f6d85a-da42-390e-9848-3190de3d2d4a,SESCO,II.1.1,Santa Fe,AR-S,annual,2017,naphtha combustion consumption by to the public,1.1759747999999999,TJ,CH4,3.0,kg/TJ,3.5279244,kg +bd1f3e05-27d0-36d6-b929-a651e24ca2c0,SESCO,II.1.1,Santa Fe,AR-S,annual,2017,naphtha combustion consumption by to the public,1.1759747999999999,TJ,N2O,0.6,kg/TJ,0.7055848799999999,kg +7f009481-a6e4-3a29-8032-c0096fa29eac,SESCO,II.1.1,Catamarca,AR-K,annual,2017,naphtha combustion consumption by to the public,246.53889537199998,TJ,CO2,73300.0,kg/TJ,18071301.030767597,kg +3c42e7bc-7041-3a0d-98eb-28159dc3cdfa,SESCO,II.1.1,Catamarca,AR-K,annual,2017,naphtha combustion consumption by to the public,246.53889537199998,TJ,CH4,3.0,kg/TJ,739.616686116,kg +e25d4fc5-49f4-3995-949e-1b5096dcc609,SESCO,II.1.1,Catamarca,AR-K,annual,2017,naphtha combustion consumption by to the public,246.53889537199998,TJ,N2O,0.6,kg/TJ,147.92333722319998,kg +40dc0c74-0382-3f2c-933e-005e7b0f2371,SESCO,II.1.1,Chaco,AR-H,annual,2017,naphtha combustion consumption by to the public,128.94412916,TJ,CO2,73300.0,kg/TJ,9451604.667428,kg +15434825-c4c5-3aa2-a100-e35b3781e50c,SESCO,II.1.1,Chaco,AR-H,annual,2017,naphtha combustion consumption by to the public,128.94412916,TJ,CH4,3.0,kg/TJ,386.83238747999997,kg +cadd1a62-cb6b-361c-bd07-e4aba7b9eb12,SESCO,II.1.1,Chaco,AR-H,annual,2017,naphtha combustion consumption by to the public,128.94412916,TJ,N2O,0.6,kg/TJ,77.36647749599999,kg +cb37209e-b3e1-3427-a0a6-d5d2775ccee8,SESCO,II.1.1,Jujuy,AR-Y,annual,2017,naphtha combustion consumption by to the public,524.265848568,TJ,CO2,73300.0,kg/TJ,38428686.7000344,kg +b2f7a82f-68cf-34fd-b584-1eb68e39b00a,SESCO,II.1.1,Jujuy,AR-Y,annual,2017,naphtha combustion consumption by to the public,524.265848568,TJ,CH4,3.0,kg/TJ,1572.7975457040002,kg +9f5d6e93-643c-3bbc-98e6-97d3abfbdd24,SESCO,II.1.1,Jujuy,AR-Y,annual,2017,naphtha combustion consumption by to the public,524.265848568,TJ,N2O,0.6,kg/TJ,314.5595091408,kg +f0c0a44e-2a9c-3cbb-8604-6e4ffaca0a50,SESCO,II.1.1,La Rioja,AR-F,annual,2017,naphtha combustion consumption by to the public,469.43768194399996,TJ,CO2,73300.0,kg/TJ,34409782.0864952,kg +d0b7bef0-4111-3cac-a2ee-b71a9b154531,SESCO,II.1.1,La Rioja,AR-F,annual,2017,naphtha combustion consumption by to the public,469.43768194399996,TJ,CH4,3.0,kg/TJ,1408.313045832,kg +e1e00d80-72f5-3b29-a210-6612f5faa3c0,SESCO,II.1.1,La Rioja,AR-F,annual,2017,naphtha combustion consumption by to the public,469.43768194399996,TJ,N2O,0.6,kg/TJ,281.6626091664,kg +ead8479f-bd1c-35d8-82ac-b6e649cc4186,SESCO,II.1.1,Salta,AR-A,annual,2017,naphtha combustion consumption by to the public,1108.699392416,TJ,CO2,73300.0,kg/TJ,81267665.46409279,kg +268a6d26-af5b-3713-8e7a-b58026fb5e7f,SESCO,II.1.1,Salta,AR-A,annual,2017,naphtha combustion consumption by to the public,1108.699392416,TJ,CH4,3.0,kg/TJ,3326.098177248,kg +58b45725-974f-3398-8b69-99c654d1d217,SESCO,II.1.1,Salta,AR-A,annual,2017,naphtha combustion consumption by to the public,1108.699392416,TJ,N2O,0.6,kg/TJ,665.2196354495999,kg +a28864e6-73bc-34ec-8a00-eacecc4476f2,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2017,naphtha combustion consumption by to the public,514.278505664,TJ,CO2,73300.0,kg/TJ,37696614.4651712,kg +156226e4-909b-3366-b62e-b6d43475698d,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2017,naphtha combustion consumption by to the public,514.278505664,TJ,CH4,3.0,kg/TJ,1542.835516992,kg +5c3fdc36-a4a2-3a2b-b1ad-b7d1617bf343,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2017,naphtha combustion consumption by to the public,514.278505664,TJ,N2O,0.6,kg/TJ,308.5671033984,kg +9a59115c-833f-36b1-a190-c97ec2c3e371,SESCO,II.1.1,Tucuman,AR-T,annual,2017,naphtha combustion consumption by to the public,2166.845437372,TJ,CO2,73300.0,kg/TJ,158829770.5593676,kg +8e5f6b5f-8f87-37f4-93dd-c02c9767bb77,SESCO,II.1.1,Tucuman,AR-T,annual,2017,naphtha combustion consumption by to the public,2166.845437372,TJ,CH4,3.0,kg/TJ,6500.536312116001,kg +fa841d0f-f5f2-31ee-846d-2fd367e84211,SESCO,II.1.1,Tucuman,AR-T,annual,2017,naphtha combustion consumption by to the public,2166.845437372,TJ,N2O,0.6,kg/TJ,1300.1072624232,kg +dbfdd2f2-8d0b-36e4-b1c4-a1d6a095cbf1,SESCO,II.1.1,Catamarca,AR-K,annual,2017,naphtha combustion consumption by to the public,22.92246264,TJ,CO2,73300.0,kg/TJ,1680216.5115119999,kg +0e1019c4-7afb-33f3-b9a3-bd269085a80b,SESCO,II.1.1,Catamarca,AR-K,annual,2017,naphtha combustion consumption by to the public,22.92246264,TJ,CH4,3.0,kg/TJ,68.76738792,kg +ce44b63d-45af-3a7c-9014-f6dbfe16c8dc,SESCO,II.1.1,Catamarca,AR-K,annual,2017,naphtha combustion consumption by to the public,22.92246264,TJ,N2O,0.6,kg/TJ,13.753477583999999,kg +2e16f52d-8ff5-338f-a272-f95c08de09a8,SESCO,II.1.1,Chaco,AR-H,annual,2017,naphtha combustion consumption by to the public,2.44391686,TJ,CO2,73300.0,kg/TJ,179139.105838,kg +85cdf810-b6e9-32ce-9a2b-68e9c456adab,SESCO,II.1.1,Chaco,AR-H,annual,2017,naphtha combustion consumption by to the public,2.44391686,TJ,CH4,3.0,kg/TJ,7.33175058,kg +32dce29b-d9cb-3dbf-964a-9a3df366bedc,SESCO,II.1.1,Chaco,AR-H,annual,2017,naphtha combustion consumption by to the public,2.44391686,TJ,N2O,0.6,kg/TJ,1.4663501159999999,kg +749f9a68-8155-3e0c-8268-4f694e6b9b92,SESCO,II.1.1,Jujuy,AR-Y,annual,2017,naphtha combustion consumption by to the public,27.778937031999998,TJ,CO2,73300.0,kg/TJ,2036196.0844456,kg +c65c4ffd-f07a-3507-b181-6b325c366287,SESCO,II.1.1,Jujuy,AR-Y,annual,2017,naphtha combustion consumption by to the public,27.778937031999998,TJ,CH4,3.0,kg/TJ,83.33681109599999,kg +555b17a1-2174-33cd-bd50-7607eaedb005,SESCO,II.1.1,Jujuy,AR-Y,annual,2017,naphtha combustion consumption by to the public,27.778937031999998,TJ,N2O,0.6,kg/TJ,16.667362219199997,kg +fef3d838-82c3-3626-b804-28973d606a87,SESCO,II.1.1,La Rioja,AR-F,annual,2017,naphtha combustion consumption by to the public,36.705188828,TJ,CO2,73300.0,kg/TJ,2690490.3410924,kg +b8488a03-3903-3563-b6a4-8a06e9eb0f58,SESCO,II.1.1,La Rioja,AR-F,annual,2017,naphtha combustion consumption by to the public,36.705188828,TJ,CH4,3.0,kg/TJ,110.115566484,kg +2a056bf0-867c-3279-9a96-5237e7e26819,SESCO,II.1.1,La Rioja,AR-F,annual,2017,naphtha combustion consumption by to the public,36.705188828,TJ,N2O,0.6,kg/TJ,22.0231132968,kg +bd7f6489-0e2d-3181-a52c-a699902b69c4,SESCO,II.1.1,Salta,AR-A,annual,2017,naphtha combustion consumption by to the public,71.37714738,TJ,CO2,73300.0,kg/TJ,5231944.902954,kg +b09026c2-0a0b-3884-a32d-cf093234c9da,SESCO,II.1.1,Salta,AR-A,annual,2017,naphtha combustion consumption by to the public,71.37714738,TJ,CH4,3.0,kg/TJ,214.13144214,kg +0836ed75-fb6d-3ef5-a6f5-7b242a167d06,SESCO,II.1.1,Salta,AR-A,annual,2017,naphtha combustion consumption by to the public,71.37714738,TJ,N2O,0.6,kg/TJ,42.826288428,kg +90fbac20-9ccc-3d86-ae40-35f410469430,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2017,naphtha combustion consumption by to the public,64.75369546799999,TJ,CO2,73300.0,kg/TJ,4746445.8778043995,kg +b480d65d-03d8-31e5-85df-debbdc4050ff,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2017,naphtha combustion consumption by to the public,64.75369546799999,TJ,CH4,3.0,kg/TJ,194.26108640399997,kg +9346ca90-9edf-3270-9274-7f0d88e16d58,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2017,naphtha combustion consumption by to the public,64.75369546799999,TJ,N2O,0.6,kg/TJ,38.85221728079999,kg +11698fd0-37ce-32ba-bcab-6ddd949c52a4,SESCO,II.1.1,Tucuman,AR-T,annual,2017,naphtha combustion consumption by to the public,166.768604772,TJ,CO2,73300.0,kg/TJ,12224138.729787601,kg +d0761316-0a1e-37e5-b2cf-4ff4a29fae8c,SESCO,II.1.1,Tucuman,AR-T,annual,2017,naphtha combustion consumption by to the public,166.768604772,TJ,CH4,3.0,kg/TJ,500.305814316,kg +05b4a3e7-561a-335c-bc34-1ce316e2bd82,SESCO,II.1.1,Tucuman,AR-T,annual,2017,naphtha combustion consumption by to the public,166.768604772,TJ,N2O,0.6,kg/TJ,100.0611628632,kg +18ade3e2-3dbe-3108-a356-d34e1fe89aa3,SESCO,II.1.1,Buenos Aires,AR-B,annual,2017,naphtha combustion consumption by to the public,30.303965999999996,TJ,CO2,73300.0,kg/TJ,2221280.7077999995,kg +9efcdafe-d9fc-30a8-955b-e842e8ca6b3e,SESCO,II.1.1,Buenos Aires,AR-B,annual,2017,naphtha combustion consumption by to the public,30.303965999999996,TJ,CH4,3.0,kg/TJ,90.91189799999998,kg +632960ce-d255-3f95-8389-b0f338224b35,SESCO,II.1.1,Buenos Aires,AR-B,annual,2017,naphtha combustion consumption by to the public,30.303965999999996,TJ,N2O,0.6,kg/TJ,18.182379599999997,kg +cb85f080-efbc-362f-80ef-34a3c3221bea,SESCO,II.1.1,Entre Rios,AR-E,annual,2017,naphtha combustion consumption by to the public,3.2565456,TJ,CO2,73300.0,kg/TJ,238704.79248,kg +f46d10da-457c-3856-8ae5-149c7ecc9f5f,SESCO,II.1.1,Entre Rios,AR-E,annual,2017,naphtha combustion consumption by to the public,3.2565456,TJ,CH4,3.0,kg/TJ,9.7696368,kg +2c997c1d-01a9-3a0d-b712-1d8a3c507418,SESCO,II.1.1,Entre Rios,AR-E,annual,2017,naphtha combustion consumption by to the public,3.2565456,TJ,N2O,0.6,kg/TJ,1.9539273599999998,kg +1fc679a5-2580-3117-a276-07e35c8c45a3,SESCO,II.1.1,Buenos Aires,AR-B,annual,2017,naphtha combustion consumption by to the public,15257.1272084,TJ,CO2,73300.0,kg/TJ,1118347424.37572,kg +766dfcef-660a-3ca7-b306-c7f1177ff792,SESCO,II.1.1,Buenos Aires,AR-B,annual,2017,naphtha combustion consumption by to the public,15257.1272084,TJ,CH4,3.0,kg/TJ,45771.381625199996,kg +9f995d16-7f37-37e6-8183-311ec29ac6db,SESCO,II.1.1,Buenos Aires,AR-B,annual,2017,naphtha combustion consumption by to the public,15257.1272084,TJ,N2O,0.6,kg/TJ,9154.276325039998,kg +923c0f77-7945-3530-8355-57ff44554603,SESCO,II.1.1,Capital Federal,AR-C,annual,2017,naphtha combustion consumption by to the public,4329.969366799999,TJ,CO2,73300.0,kg/TJ,317386754.5864399,kg +e8647f73-6fb9-3859-b184-4e079c30f7df,SESCO,II.1.1,Capital Federal,AR-C,annual,2017,naphtha combustion consumption by to the public,4329.969366799999,TJ,CH4,3.0,kg/TJ,12989.908100399996,kg +7851ad02-9891-3887-9236-c7ef0a7c7eb5,SESCO,II.1.1,Capital Federal,AR-C,annual,2017,naphtha combustion consumption by to the public,4329.969366799999,TJ,N2O,0.6,kg/TJ,2597.981620079999,kg +6b8c0c90-3ba1-3504-aa0c-98ca2daeb521,SESCO,II.1.1,Catamarca,AR-K,annual,2017,naphtha combustion consumption by to the public,42.8476972,TJ,CO2,73300.0,kg/TJ,3140736.20476,kg +6b19c7dd-0839-3bf9-9462-0c177dcd0f1c,SESCO,II.1.1,Catamarca,AR-K,annual,2017,naphtha combustion consumption by to the public,42.8476972,TJ,CH4,3.0,kg/TJ,128.5430916,kg +d29ccd98-f1d1-3e31-aca3-c51c95940c10,SESCO,II.1.1,Catamarca,AR-K,annual,2017,naphtha combustion consumption by to the public,42.8476972,TJ,N2O,0.6,kg/TJ,25.70861832,kg +9c226aaa-4cfe-3736-b54f-e04978e693df,SESCO,II.1.1,Chaco,AR-H,annual,2017,naphtha combustion consumption by to the public,882.1017128,TJ,CO2,73300.0,kg/TJ,64658055.54824,kg +d0b80fe1-7e34-38d8-9576-01c9c1ce527f,SESCO,II.1.1,Chaco,AR-H,annual,2017,naphtha combustion consumption by to the public,882.1017128,TJ,CH4,3.0,kg/TJ,2646.3051384,kg +98f5d411-773e-36ba-ad08-2786e06c1031,SESCO,II.1.1,Chaco,AR-H,annual,2017,naphtha combustion consumption by to the public,882.1017128,TJ,N2O,0.6,kg/TJ,529.26102768,kg +ac11705f-f234-3d13-bd14-d5071905a7ba,SESCO,II.1.1,Corrientes,AR-W,annual,2017,naphtha combustion consumption by to the public,874.1714211999999,TJ,CO2,73300.0,kg/TJ,64076765.17395999,kg +563ee4c1-7f4f-3c50-a040-d4b3b8d853b6,SESCO,II.1.1,Corrientes,AR-W,annual,2017,naphtha combustion consumption by to the public,874.1714211999999,TJ,CH4,3.0,kg/TJ,2622.5142636,kg +fbbb834d-0393-33a4-99f9-36008f365699,SESCO,II.1.1,Corrientes,AR-W,annual,2017,naphtha combustion consumption by to the public,874.1714211999999,TJ,N2O,0.6,kg/TJ,524.50285272,kg +1fe69d16-00b2-3b16-8c80-2e4248738c90,SESCO,II.1.1,Córdoba,AR-X,annual,2017,naphtha combustion consumption by to the public,3451.3654251999997,TJ,CO2,73300.0,kg/TJ,252985085.66715997,kg +2d6c44d3-a67a-387b-b778-8b5a6196c570,SESCO,II.1.1,Córdoba,AR-X,annual,2017,naphtha combustion consumption by to the public,3451.3654251999997,TJ,CH4,3.0,kg/TJ,10354.096275599999,kg +be04801a-dd38-3e20-ab81-d887178cc31b,SESCO,II.1.1,Córdoba,AR-X,annual,2017,naphtha combustion consumption by to the public,3451.3654251999997,TJ,N2O,0.6,kg/TJ,2070.8192551199995,kg +c1bcfb09-d1ee-3796-b654-deb18c40acfd,SESCO,II.1.1,Entre Rios,AR-E,annual,2017,naphtha combustion consumption by to the public,915.8431436,TJ,CO2,73300.0,kg/TJ,67131302.42588,kg +ec4c6cc3-4db6-3c39-9b3d-3007d70f9ba6,SESCO,II.1.1,Entre Rios,AR-E,annual,2017,naphtha combustion consumption by to the public,915.8431436,TJ,CH4,3.0,kg/TJ,2747.5294308,kg +29e11881-19bc-3305-9d9f-6c2f23c5d8e3,SESCO,II.1.1,Entre Rios,AR-E,annual,2017,naphtha combustion consumption by to the public,915.8431436,TJ,N2O,0.6,kg/TJ,549.5058861599999,kg +3560a574-a033-347c-8d5e-f7770e533a3e,SESCO,II.1.1,Formosa,AR-P,annual,2017,naphtha combustion consumption by to the public,402.15322839999993,TJ,CO2,73300.0,kg/TJ,29477831.641719993,kg +23337f34-6405-3de7-8663-7d415b288784,SESCO,II.1.1,Formosa,AR-P,annual,2017,naphtha combustion consumption by to the public,402.15322839999993,TJ,CH4,3.0,kg/TJ,1206.4596851999997,kg +2e529c60-605b-3738-b54f-bc663347afb0,SESCO,II.1.1,Formosa,AR-P,annual,2017,naphtha combustion consumption by to the public,402.15322839999993,TJ,N2O,0.6,kg/TJ,241.29193703999994,kg +eafa76d9-3ea4-3baf-a7c6-e6ff7b4c907a,SESCO,II.1.1,Jujuy,AR-Y,annual,2017,naphtha combustion consumption by to the public,157.73138919999997,TJ,CO2,73300.0,kg/TJ,11561710.828359997,kg +04570d89-655d-3ed8-810e-2295fa01ed90,SESCO,II.1.1,Jujuy,AR-Y,annual,2017,naphtha combustion consumption by to the public,157.73138919999997,TJ,CH4,3.0,kg/TJ,473.1941675999999,kg +9b8d0a96-efdb-3eb2-b275-6bb143175516,SESCO,II.1.1,Jujuy,AR-Y,annual,2017,naphtha combustion consumption by to the public,157.73138919999997,TJ,N2O,0.6,kg/TJ,94.63883351999998,kg +5eef9097-9393-3658-9df5-0d7d08cec5d4,SESCO,II.1.1,La Pampa,AR-L,annual,2017,naphtha combustion consumption by to the public,309.8542832,TJ,CO2,73300.0,kg/TJ,22712318.95856,kg +1ae40270-a3f9-39d6-bae5-fd606c491c9b,SESCO,II.1.1,La Pampa,AR-L,annual,2017,naphtha combustion consumption by to the public,309.8542832,TJ,CH4,3.0,kg/TJ,929.5628495999999,kg +3e557e22-2b0b-37fa-b7c6-87b2c38fb345,SESCO,II.1.1,La Pampa,AR-L,annual,2017,naphtha combustion consumption by to the public,309.8542832,TJ,N2O,0.6,kg/TJ,185.91256991999998,kg +d49f2069-f51c-3589-9076-2b5e753c6ef7,SESCO,II.1.1,La Rioja,AR-F,annual,2017,naphtha combustion consumption by to the public,301.07970199999994,TJ,CO2,73300.0,kg/TJ,22069142.156599995,kg +60e8ee57-c6e1-30b3-ab83-c914c0219874,SESCO,II.1.1,La Rioja,AR-F,annual,2017,naphtha combustion consumption by to the public,301.07970199999994,TJ,CH4,3.0,kg/TJ,903.2391059999998,kg +d22d8208-1b2e-337f-ae73-b480714427d0,SESCO,II.1.1,La Rioja,AR-F,annual,2017,naphtha combustion consumption by to the public,301.07970199999994,TJ,N2O,0.6,kg/TJ,180.64782119999995,kg +392651c2-89c1-3d62-9db7-71fa276ac731,SESCO,II.1.1,Mendoza,AR-M,annual,2017,naphtha combustion consumption by to the public,1020.7461264,TJ,CO2,73300.0,kg/TJ,74820691.06512,kg +1e60c949-fa5d-31d8-9c4d-45bfde1d6b96,SESCO,II.1.1,Mendoza,AR-M,annual,2017,naphtha combustion consumption by to the public,1020.7461264,TJ,CH4,3.0,kg/TJ,3062.2383792,kg +d08e20e2-d3f7-3f6f-b651-a04d8287e0e5,SESCO,II.1.1,Mendoza,AR-M,annual,2017,naphtha combustion consumption by to the public,1020.7461264,TJ,N2O,0.6,kg/TJ,612.44767584,kg +17561972-9aff-3df6-a573-cee577e21341,SESCO,II.1.1,Misiones,AR-N,annual,2017,naphtha combustion consumption by to the public,1137.4993168,TJ,CO2,73300.0,kg/TJ,83378699.92144,kg +d9c4fb68-44cd-3ed9-aa75-d8e8708bf132,SESCO,II.1.1,Misiones,AR-N,annual,2017,naphtha combustion consumption by to the public,1137.4993168,TJ,CH4,3.0,kg/TJ,3412.4979504000003,kg +da870cb9-9d64-3e0c-94f1-a4d952ccbb82,SESCO,II.1.1,Misiones,AR-N,annual,2017,naphtha combustion consumption by to the public,1137.4993168,TJ,N2O,0.6,kg/TJ,682.4995900800001,kg +6af228b6-c7cd-309e-8d48-59c34768042e,SESCO,II.1.1,Neuquén,AR-Q,annual,2017,naphtha combustion consumption by to the public,449.5239056,TJ,CO2,73300.0,kg/TJ,32950102.280479997,kg +1ad30d21-866a-3dc8-9287-dbb9b626a10a,SESCO,II.1.1,Neuquén,AR-Q,annual,2017,naphtha combustion consumption by to the public,449.5239056,TJ,CH4,3.0,kg/TJ,1348.5717167999999,kg +a620eece-41fb-38d8-bdee-4988ad53ef4f,SESCO,II.1.1,Neuquén,AR-Q,annual,2017,naphtha combustion consumption by to the public,449.5239056,TJ,N2O,0.6,kg/TJ,269.71434336,kg +eeafcf6e-3f87-3039-bb17-d4d66b692ffb,SESCO,II.1.1,Rio Negro,AR-R,annual,2017,naphtha combustion consumption by to the public,149.89155719999997,TJ,CO2,73300.0,kg/TJ,10987051.142759997,kg +4c481890-9fa2-34f0-a050-5d64cb24df06,SESCO,II.1.1,Rio Negro,AR-R,annual,2017,naphtha combustion consumption by to the public,149.89155719999997,TJ,CH4,3.0,kg/TJ,449.6746715999999,kg +b0bab2ab-2488-381c-95b5-bd2b15d6c8fe,SESCO,II.1.1,Rio Negro,AR-R,annual,2017,naphtha combustion consumption by to the public,149.89155719999997,TJ,N2O,0.6,kg/TJ,89.93493431999998,kg +99c50f11-7990-3d80-838d-4586186bb113,SESCO,II.1.1,Salta,AR-A,annual,2017,naphtha combustion consumption by to the public,245.2661288,TJ,CO2,73300.0,kg/TJ,17978007.24104,kg +7169b1cf-cb07-35a6-9bda-90b86bd185fb,SESCO,II.1.1,Salta,AR-A,annual,2017,naphtha combustion consumption by to the public,245.2661288,TJ,CH4,3.0,kg/TJ,735.7983864,kg +d593dded-6ac7-3e77-8ec4-e79e4505cc7f,SESCO,II.1.1,Salta,AR-A,annual,2017,naphtha combustion consumption by to the public,245.2661288,TJ,N2O,0.6,kg/TJ,147.15967727999998,kg +60a04c24-f20e-3d40-abbf-35f5ac03f653,SESCO,II.1.1,San Juan,AR-J,annual,2017,naphtha combustion consumption by to the public,161.621152,TJ,CO2,73300.0,kg/TJ,11846830.4416,kg +f1f384e6-be28-3b36-bc86-1fd0a8b33666,SESCO,II.1.1,San Juan,AR-J,annual,2017,naphtha combustion consumption by to the public,161.621152,TJ,CH4,3.0,kg/TJ,484.863456,kg +24053c38-6d33-3b65-bc52-e4341cd2046b,SESCO,II.1.1,San Juan,AR-J,annual,2017,naphtha combustion consumption by to the public,161.621152,TJ,N2O,0.6,kg/TJ,96.9726912,kg +bf163bc4-548d-3417-b72e-1f5ab0557b54,SESCO,II.1.1,San Luis,AR-D,annual,2017,naphtha combustion consumption by to the public,57.080007599999995,TJ,CO2,73300.0,kg/TJ,4183964.5570799997,kg +6c4bb732-5da8-345a-aef8-0411189c91f3,SESCO,II.1.1,San Luis,AR-D,annual,2017,naphtha combustion consumption by to the public,57.080007599999995,TJ,CH4,3.0,kg/TJ,171.2400228,kg +615f98c0-fdf5-3fcb-b7e7-848d4b112b2e,SESCO,II.1.1,San Luis,AR-D,annual,2017,naphtha combustion consumption by to the public,57.080007599999995,TJ,N2O,0.6,kg/TJ,34.24800456,kg +b2755c92-a5bf-35e7-b886-b8d869828e48,SESCO,II.1.1,Santa Fe,AR-S,annual,2017,naphtha combustion consumption by to the public,3407.1005275999996,TJ,CO2,73300.0,kg/TJ,249740468.67307997,kg +77ed1ffa-2043-3116-a822-01cefe9095b8,SESCO,II.1.1,Santa Fe,AR-S,annual,2017,naphtha combustion consumption by to the public,3407.1005275999996,TJ,CH4,3.0,kg/TJ,10221.301582799999,kg +bbf074eb-228f-3537-a555-e85fd2b8c4da,SESCO,II.1.1,Santa Fe,AR-S,annual,2017,naphtha combustion consumption by to the public,3407.1005275999996,TJ,N2O,0.6,kg/TJ,2044.2603165599996,kg +13a5175e-eab3-3a75-8f87-b00314bb9740,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2017,naphtha combustion consumption by to the public,351.34508639999996,TJ,CO2,73300.0,kg/TJ,25753594.833119996,kg +fe496ded-2784-3d24-ac53-8a81a8a3adbc,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2017,naphtha combustion consumption by to the public,351.34508639999996,TJ,CH4,3.0,kg/TJ,1054.0352592,kg +e5f146d0-4fde-3ce7-a6c3-b8981e9063fd,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2017,naphtha combustion consumption by to the public,351.34508639999996,TJ,N2O,0.6,kg/TJ,210.80705183999996,kg +adf6d5e2-b3a1-3997-b4e4-c2ed1bb57af8,SESCO,II.1.1,Tucuman,AR-T,annual,2017,naphtha combustion consumption by to the public,741.9797924,TJ,CO2,73300.0,kg/TJ,54387118.782919995,kg +a36c3a01-3c0e-3713-a382-fe1ecf2bd5a2,SESCO,II.1.1,Tucuman,AR-T,annual,2017,naphtha combustion consumption by to the public,741.9797924,TJ,CH4,3.0,kg/TJ,2225.9393772,kg +2be59656-b256-3cd1-b058-476017cc852c,SESCO,II.1.1,Tucuman,AR-T,annual,2017,naphtha combustion consumption by to the public,741.9797924,TJ,N2O,0.6,kg/TJ,445.18787543999997,kg +612080ac-cc65-3274-8899-7d75943542b5,SESCO,II.1.1,Buenos Aires,AR-B,annual,2017,naphtha combustion consumption by to the public,9143.113610399998,TJ,CO2,73300.0,kg/TJ,670190227.6423198,kg +ab115c9a-b4c0-345b-8f6e-157e379576f5,SESCO,II.1.1,Buenos Aires,AR-B,annual,2017,naphtha combustion consumption by to the public,9143.113610399998,TJ,CH4,3.0,kg/TJ,27429.340831199996,kg +0061253c-d61d-3dd3-81d5-1a894cdb8141,SESCO,II.1.1,Buenos Aires,AR-B,annual,2017,naphtha combustion consumption by to the public,9143.113610399998,TJ,N2O,0.6,kg/TJ,5485.868166239999,kg +99e70392-d5c0-3f06-83c0-0d9c13dd41cb,SESCO,II.1.1,Capital Federal,AR-C,annual,2017,naphtha combustion consumption by to the public,3584.9139479999994,TJ,CO2,73300.0,kg/TJ,262774192.38839996,kg +67798a06-d750-32a3-8cbb-66de36a804da,SESCO,II.1.1,Capital Federal,AR-C,annual,2017,naphtha combustion consumption by to the public,3584.9139479999994,TJ,CH4,3.0,kg/TJ,10754.741843999998,kg +a9b4f3c5-75d0-3a64-aef7-11d93c78ab53,SESCO,II.1.1,Capital Federal,AR-C,annual,2017,naphtha combustion consumption by to the public,3584.9139479999994,TJ,N2O,0.6,kg/TJ,2150.9483687999996,kg +81c18eaf-0379-31a2-8819-dab0bde4081d,SESCO,II.1.1,Catamarca,AR-K,annual,2017,naphtha combustion consumption by to the public,43.2999952,TJ,CO2,73300.0,kg/TJ,3173889.64816,kg +4cb7cd2f-6287-3262-af74-584ccec67f65,SESCO,II.1.1,Catamarca,AR-K,annual,2017,naphtha combustion consumption by to the public,43.2999952,TJ,CH4,3.0,kg/TJ,129.89998559999998,kg +17afa60b-03a5-3b3c-9f80-91a944efbd44,SESCO,II.1.1,Catamarca,AR-K,annual,2017,naphtha combustion consumption by to the public,43.2999952,TJ,N2O,0.6,kg/TJ,25.979997119999997,kg +c631b894-8145-3c9f-a23b-f53134aa80b6,SESCO,II.1.1,Chaco,AR-H,annual,2017,naphtha combustion consumption by to the public,382.82502719999997,TJ,CO2,73300.0,kg/TJ,28061074.493759997,kg +62466eda-e862-3d43-a277-09eee346e920,SESCO,II.1.1,Chaco,AR-H,annual,2017,naphtha combustion consumption by to the public,382.82502719999997,TJ,CH4,3.0,kg/TJ,1148.4750815999998,kg +376483ec-170e-35cf-adff-b80c50512c19,SESCO,II.1.1,Chaco,AR-H,annual,2017,naphtha combustion consumption by to the public,382.82502719999997,TJ,N2O,0.6,kg/TJ,229.69501631999998,kg +72fc3ce3-665b-33b3-aaae-995f83c0cb31,SESCO,II.1.1,Corrientes,AR-W,annual,2017,naphtha combustion consumption by to the public,383.548704,TJ,CO2,73300.0,kg/TJ,28114120.0032,kg +9eed72ee-1468-3fc4-b077-d87824419be4,SESCO,II.1.1,Corrientes,AR-W,annual,2017,naphtha combustion consumption by to the public,383.548704,TJ,CH4,3.0,kg/TJ,1150.646112,kg +f155b243-fe2a-3bb1-bd59-7858f918385d,SESCO,II.1.1,Corrientes,AR-W,annual,2017,naphtha combustion consumption by to the public,383.548704,TJ,N2O,0.6,kg/TJ,230.12922239999997,kg +37a5817e-ca85-3833-9e6b-e1293db3198a,SESCO,II.1.1,Córdoba,AR-X,annual,2017,naphtha combustion consumption by to the public,1814.9814143999997,TJ,CO2,73300.0,kg/TJ,133038137.67551997,kg +18cecfd1-3a60-3094-b847-a2379b3d42d4,SESCO,II.1.1,Córdoba,AR-X,annual,2017,naphtha combustion consumption by to the public,1814.9814143999997,TJ,CH4,3.0,kg/TJ,5444.9442432,kg +458451a5-661b-39b8-a759-836ba7e6763d,SESCO,II.1.1,Córdoba,AR-X,annual,2017,naphtha combustion consumption by to the public,1814.9814143999997,TJ,N2O,0.6,kg/TJ,1088.9888486399998,kg +2783e664-64e0-3303-a24d-ef85368629cc,SESCO,II.1.1,Entre Rios,AR-E,annual,2017,naphtha combustion consumption by to the public,425.09981359999995,TJ,CO2,73300.0,kg/TJ,31159816.336879995,kg +c2b88f88-29b6-398a-83a2-22023f019a3c,SESCO,II.1.1,Entre Rios,AR-E,annual,2017,naphtha combustion consumption by to the public,425.09981359999995,TJ,CH4,3.0,kg/TJ,1275.2994408,kg +9545fff5-d2f9-3f3c-afd4-d22e6531c1cc,SESCO,II.1.1,Entre Rios,AR-E,annual,2017,naphtha combustion consumption by to the public,425.09981359999995,TJ,N2O,0.6,kg/TJ,255.05988815999996,kg +8f228f00-8854-3aae-8c83-272fe5099f94,SESCO,II.1.1,Formosa,AR-P,annual,2017,naphtha combustion consumption by to the public,201.574142,TJ,CO2,73300.0,kg/TJ,14775384.6086,kg +1ab8f5c2-b02c-32b4-bbd7-090970b5eebe,SESCO,II.1.1,Formosa,AR-P,annual,2017,naphtha combustion consumption by to the public,201.574142,TJ,CH4,3.0,kg/TJ,604.722426,kg +0d6ef32c-090b-3c6d-873e-1c146d13874f,SESCO,II.1.1,Formosa,AR-P,annual,2017,naphtha combustion consumption by to the public,201.574142,TJ,N2O,0.6,kg/TJ,120.94448519999999,kg +3c5cca99-1186-360c-9813-c35cccacebe8,SESCO,II.1.1,Jujuy,AR-Y,annual,2017,naphtha combustion consumption by to the public,40.9178924,TJ,CO2,73300.0,kg/TJ,2999281.51292,kg +4c1fb7aa-e4a4-3429-bb67-27b77b230edb,SESCO,II.1.1,Jujuy,AR-Y,annual,2017,naphtha combustion consumption by to the public,40.9178924,TJ,CH4,3.0,kg/TJ,122.7536772,kg +c15c3dab-7d27-3da7-ad80-79718b052c8b,SESCO,II.1.1,Jujuy,AR-Y,annual,2017,naphtha combustion consumption by to the public,40.9178924,TJ,N2O,0.6,kg/TJ,24.55073544,kg +15b76211-c46e-3278-a0cf-17a96509edb1,SESCO,II.1.1,La Pampa,AR-L,annual,2017,naphtha combustion consumption by to the public,201.48368239999996,TJ,CO2,73300.0,kg/TJ,14768753.919919997,kg +42b87606-e0e7-3a10-8255-fa725f7ed337,SESCO,II.1.1,La Pampa,AR-L,annual,2017,naphtha combustion consumption by to the public,201.48368239999996,TJ,CH4,3.0,kg/TJ,604.4510472,kg +41128330-1749-37a7-980f-917bc45abadb,SESCO,II.1.1,La Pampa,AR-L,annual,2017,naphtha combustion consumption by to the public,201.48368239999996,TJ,N2O,0.6,kg/TJ,120.89020943999998,kg +fc20c1d8-37e4-385e-81e1-65bf6cb22d49,SESCO,II.1.1,La Rioja,AR-F,annual,2017,naphtha combustion consumption by to the public,111.9588316,TJ,CO2,73300.0,kg/TJ,8206582.35628,kg +43de384e-1707-3c79-b5ed-ced4083a1424,SESCO,II.1.1,La Rioja,AR-F,annual,2017,naphtha combustion consumption by to the public,111.9588316,TJ,CH4,3.0,kg/TJ,335.8764948,kg +1624e174-fb57-3bc8-8be4-ce765cca665f,SESCO,II.1.1,La Rioja,AR-F,annual,2017,naphtha combustion consumption by to the public,111.9588316,TJ,N2O,0.6,kg/TJ,67.17529895999999,kg +f3537cd8-6fb2-36c1-8caa-2d221f4ee05a,SESCO,II.1.1,Mendoza,AR-M,annual,2017,naphtha combustion consumption by to the public,561.6938095999999,TJ,CO2,73300.0,kg/TJ,41172156.24367999,kg +1ad5a6ed-f03d-3c0a-a2a6-e73e1347b54e,SESCO,II.1.1,Mendoza,AR-M,annual,2017,naphtha combustion consumption by to the public,561.6938095999999,TJ,CH4,3.0,kg/TJ,1685.0814287999997,kg +61181bc3-0cba-364f-b18c-bcd4ad837a0e,SESCO,II.1.1,Mendoza,AR-M,annual,2017,naphtha combustion consumption by to the public,561.6938095999999,TJ,N2O,0.6,kg/TJ,337.0162857599999,kg +f3cc9c5d-9e7f-3275-a5fd-03d5c24fcd7c,SESCO,II.1.1,Misiones,AR-N,annual,2017,naphtha combustion consumption by to the public,350.68171599999994,TJ,CO2,73300.0,kg/TJ,25704969.782799996,kg +6e2b17d0-9eb7-37df-b014-fabc4f800252,SESCO,II.1.1,Misiones,AR-N,annual,2017,naphtha combustion consumption by to the public,350.68171599999994,TJ,CH4,3.0,kg/TJ,1052.0451479999997,kg +e9f9fcb1-2b6a-3ffb-9a43-027bfd9728dc,SESCO,II.1.1,Misiones,AR-N,annual,2017,naphtha combustion consumption by to the public,350.68171599999994,TJ,N2O,0.6,kg/TJ,210.40902959999997,kg +007871d7-3f79-3ced-8d05-7ddac43f4b8e,SESCO,II.1.1,Neuquén,AR-Q,annual,2017,naphtha combustion consumption by to the public,376.16116999999997,TJ,CO2,73300.0,kg/TJ,27572613.760999996,kg +d0d147db-b485-39cd-b52a-b5e0b9cb9ef3,SESCO,II.1.1,Neuquén,AR-Q,annual,2017,naphtha combustion consumption by to the public,376.16116999999997,TJ,CH4,3.0,kg/TJ,1128.48351,kg +6fc25366-444a-3473-8a03-60642c0277ca,SESCO,II.1.1,Neuquén,AR-Q,annual,2017,naphtha combustion consumption by to the public,376.16116999999997,TJ,N2O,0.6,kg/TJ,225.696702,kg +87ee4dd6-3fb1-304b-ae01-38488702ccf0,SESCO,II.1.1,Rio Negro,AR-R,annual,2017,naphtha combustion consumption by to the public,92.1481792,TJ,CO2,73300.0,kg/TJ,6754461.53536,kg +52400725-2ad1-37b3-b4a3-06d523e9b88e,SESCO,II.1.1,Rio Negro,AR-R,annual,2017,naphtha combustion consumption by to the public,92.1481792,TJ,CH4,3.0,kg/TJ,276.4445376,kg +fa567ad4-75b5-3cbc-a39d-19be3c6b140e,SESCO,II.1.1,Rio Negro,AR-R,annual,2017,naphtha combustion consumption by to the public,92.1481792,TJ,N2O,0.6,kg/TJ,55.28890752,kg +092e23d6-fd7a-3473-a805-ef0781426212,SESCO,II.1.1,Salta,AR-A,annual,2017,naphtha combustion consumption by to the public,109.0942776,TJ,CO2,73300.0,kg/TJ,7996610.54808,kg +5494c9b8-8187-3689-9830-b10fef35b14e,SESCO,II.1.1,Salta,AR-A,annual,2017,naphtha combustion consumption by to the public,109.0942776,TJ,CH4,3.0,kg/TJ,327.2828328,kg +bf009ace-d9b0-3019-868a-66d3dfa7afc7,SESCO,II.1.1,Salta,AR-A,annual,2017,naphtha combustion consumption by to the public,109.0942776,TJ,N2O,0.6,kg/TJ,65.45656656,kg +8eba11c0-cde6-3610-89d8-f2e9623e959a,SESCO,II.1.1,San Juan,AR-J,annual,2017,naphtha combustion consumption by to the public,36.93767,TJ,CO2,73300.0,kg/TJ,2707531.2109999997,kg +14d52fe9-614d-3a75-bbf5-63b6abc95ee0,SESCO,II.1.1,San Juan,AR-J,annual,2017,naphtha combustion consumption by to the public,36.93767,TJ,CH4,3.0,kg/TJ,110.81300999999999,kg +8320ada3-6367-3862-b754-72c78dbddd55,SESCO,II.1.1,San Juan,AR-J,annual,2017,naphtha combustion consumption by to the public,36.93767,TJ,N2O,0.6,kg/TJ,22.162601999999996,kg +2352c41a-daf2-3035-a3a5-eadd0b43059c,SESCO,II.1.1,San Luis,AR-D,annual,2017,naphtha combustion consumption by to the public,44.32520399999999,TJ,CO2,73300.0,kg/TJ,3249037.4531999994,kg +e2c961f7-5c1c-3422-a02e-5f629c184e37,SESCO,II.1.1,San Luis,AR-D,annual,2017,naphtha combustion consumption by to the public,44.32520399999999,TJ,CH4,3.0,kg/TJ,132.97561199999998,kg +8df7c40a-3377-3175-8099-05f42925befd,SESCO,II.1.1,San Luis,AR-D,annual,2017,naphtha combustion consumption by to the public,44.32520399999999,TJ,N2O,0.6,kg/TJ,26.595122399999994,kg +3f1cae3b-e5e5-3505-914f-f3e90dbbac18,SESCO,II.1.1,Santa Fe,AR-S,annual,2017,naphtha combustion consumption by to the public,1892.0529935999998,TJ,CO2,73300.0,kg/TJ,138687484.43087998,kg +8afe85b2-17b0-354d-96e5-be078b30865c,SESCO,II.1.1,Santa Fe,AR-S,annual,2017,naphtha combustion consumption by to the public,1892.0529935999998,TJ,CH4,3.0,kg/TJ,5676.158980799999,kg +2863853d-df54-3cdb-8a8b-01dbb7e1a0c4,SESCO,II.1.1,Santa Fe,AR-S,annual,2017,naphtha combustion consumption by to the public,1892.0529935999998,TJ,N2O,0.6,kg/TJ,1135.23179616,kg +d9a9752a-f657-3383-bd44-62b7cf633d19,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2017,naphtha combustion consumption by to the public,193.16139919999998,TJ,CO2,73300.0,kg/TJ,14158730.561359998,kg +dc34fed9-e4ea-341a-90ba-1623be5490b9,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2017,naphtha combustion consumption by to the public,193.16139919999998,TJ,CH4,3.0,kg/TJ,579.4841975999999,kg +2c18a72b-475a-3e40-815e-f3b4a0cf7f6c,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2017,naphtha combustion consumption by to the public,193.16139919999998,TJ,N2O,0.6,kg/TJ,115.89683951999999,kg +ddf641e0-c89b-3519-af96-bc8850c40ce1,SESCO,II.1.1,Tucuman,AR-T,annual,2017,naphtha combustion consumption by to the public,279.4900108,TJ,CO2,73300.0,kg/TJ,20486617.79164,kg +48779b6a-3a9b-3c1a-94a5-a39a5fb1734f,SESCO,II.1.1,Tucuman,AR-T,annual,2017,naphtha combustion consumption by to the public,279.4900108,TJ,CH4,3.0,kg/TJ,838.4700324,kg +bca079d2-9d49-3913-ac66-6623b2d98e7f,SESCO,II.1.1,Tucuman,AR-T,annual,2017,naphtha combustion consumption by to the public,279.4900108,TJ,N2O,0.6,kg/TJ,167.69400647999998,kg +c8ba247f-0889-3cf5-8292-a5e6bf1cf7eb,SESCO,II.1.1,Buenos Aires,AR-B,annual,2017,naphtha combustion consumption by to the public,1018.3856735975999,TJ,CO2,73300.0,kg/TJ,74647669.87470406,kg +564399c2-4ab0-3a09-b6ad-7852580ec2ca,SESCO,II.1.1,Buenos Aires,AR-B,annual,2017,naphtha combustion consumption by to the public,1018.3856735975999,TJ,CH4,3.0,kg/TJ,3055.1570207928,kg +c2c6de3d-d8a5-3eec-91e6-43e49db5682e,SESCO,II.1.1,Buenos Aires,AR-B,annual,2017,naphtha combustion consumption by to the public,1018.3856735975999,TJ,N2O,0.6,kg/TJ,611.0314041585599,kg +6196abb7-d123-3867-a385-5ba49f1959a2,SESCO,II.1.1,Buenos Aires,AR-B,annual,2017,naphtha combustion consumption by to the public,59.2163919732,TJ,CO2,73300.0,kg/TJ,4340561.53163556,kg +a0648d8e-98c7-3a49-971d-81e59931f37e,SESCO,II.1.1,Buenos Aires,AR-B,annual,2017,naphtha combustion consumption by to the public,59.2163919732,TJ,CH4,3.0,kg/TJ,177.6491759196,kg +ebae68d0-23a1-3403-956d-e2c5f202b7ab,SESCO,II.1.1,Buenos Aires,AR-B,annual,2017,naphtha combustion consumption by to the public,59.2163919732,TJ,N2O,0.6,kg/TJ,35.52983518392,kg +64e680e3-434e-3ac1-89bc-ba2ff7a350f3,SESCO,II.5.1,Buenos Aires,AR-B,annual,2017,naphtha combustion consumption by agriculture machines,697.0515244,TJ,CO2,73300.0,kg/TJ,51093876.73852,kg +89372e76-0277-304c-8509-a0159a07b921,SESCO,II.5.1,Buenos Aires,AR-B,annual,2017,naphtha combustion consumption by agriculture machines,697.0515244,TJ,CH4,3.0,kg/TJ,2091.1545732,kg +75946b57-d58c-388a-8b56-3ef329af8143,SESCO,II.5.1,Buenos Aires,AR-B,annual,2017,naphtha combustion consumption by agriculture machines,697.0515244,TJ,N2O,0.6,kg/TJ,418.23091464,kg +33e58a14-7d2a-333f-ac5a-c47acd2fe00f,SESCO,II.5.1,Chubut,AR-U,annual,2017,naphtha combustion consumption by agriculture machines,1.5076599999999998,TJ,CO2,73300.0,kg/TJ,110511.47799999999,kg +f04ff973-5403-3647-b6b8-f39027ecc777,SESCO,II.5.1,Chubut,AR-U,annual,2017,naphtha combustion consumption by agriculture machines,1.5076599999999998,TJ,CH4,3.0,kg/TJ,4.52298,kg +14ef02af-8204-3eaa-8255-382606014610,SESCO,II.5.1,Chubut,AR-U,annual,2017,naphtha combustion consumption by agriculture machines,1.5076599999999998,TJ,N2O,0.6,kg/TJ,0.9045959999999998,kg +2ef6a55f-c89a-3742-9b94-f1915e3b799f,SESCO,II.5.1,Jujuy,AR-Y,annual,2017,naphtha combustion consumption by agriculture machines,0.301532,TJ,CO2,73300.0,kg/TJ,22102.2956,kg +975ff0e5-ebe3-34cd-97b5-3b95aea91870,SESCO,II.5.1,Jujuy,AR-Y,annual,2017,naphtha combustion consumption by agriculture machines,0.301532,TJ,CH4,3.0,kg/TJ,0.9045960000000001,kg +328b7d4b-10af-394f-95d9-ab6051bbc615,SESCO,II.5.1,Jujuy,AR-Y,annual,2017,naphtha combustion consumption by agriculture machines,0.301532,TJ,N2O,0.6,kg/TJ,0.1809192,kg +96847cfa-584d-3c03-a0e8-965c2502f4a8,SESCO,II.5.1,Mendoza,AR-M,annual,2017,naphtha combustion consumption by agriculture machines,21.469078399999997,TJ,CO2,73300.0,kg/TJ,1573683.44672,kg +f47c6c7a-9a70-39eb-9ee9-8ea0a0b3c59a,SESCO,II.5.1,Mendoza,AR-M,annual,2017,naphtha combustion consumption by agriculture machines,21.469078399999997,TJ,CH4,3.0,kg/TJ,64.40723519999999,kg +2a8a1276-0248-35c3-a4aa-f7cf4de8ae63,SESCO,II.5.1,Mendoza,AR-M,annual,2017,naphtha combustion consumption by agriculture machines,21.469078399999997,TJ,N2O,0.6,kg/TJ,12.881447039999998,kg +e5cee187-a129-3601-9ac3-46ba9d9a553c,SESCO,II.5.1,Salta,AR-A,annual,2017,naphtha combustion consumption by agriculture machines,0.4221448,TJ,CO2,73300.0,kg/TJ,30943.21384,kg +54564b09-0a91-34f5-ac66-f61dcc518aa7,SESCO,II.5.1,Salta,AR-A,annual,2017,naphtha combustion consumption by agriculture machines,0.4221448,TJ,CH4,3.0,kg/TJ,1.2664344,kg +5675f48c-3ac1-33b1-b2e4-1eabaf58b2e8,SESCO,II.5.1,Salta,AR-A,annual,2017,naphtha combustion consumption by agriculture machines,0.4221448,TJ,N2O,0.6,kg/TJ,0.25328688,kg +982361d8-8325-3f3e-b8ab-ef6981a3d5ac,SESCO,II.5.1,Santa Fe,AR-S,annual,2017,naphtha combustion consumption by agriculture machines,97.7566744,TJ,CO2,73300.0,kg/TJ,7165564.233519999,kg +af8ab097-1c22-3585-8cf6-584941cb9a4f,SESCO,II.5.1,Santa Fe,AR-S,annual,2017,naphtha combustion consumption by agriculture machines,97.7566744,TJ,CH4,3.0,kg/TJ,293.27002319999997,kg +a0282bc1-e048-31cc-ae2a-9439d4c9322f,SESCO,II.5.1,Santa Fe,AR-S,annual,2017,naphtha combustion consumption by agriculture machines,97.7566744,TJ,N2O,0.6,kg/TJ,58.65400464,kg +30a0112e-1abc-39a5-b1fa-9e333feba431,SESCO,II.5.1,Buenos Aires,AR-B,annual,2017,naphtha combustion consumption by agriculture machines,3.7993031999999993,TJ,CO2,73300.0,kg/TJ,278488.92455999996,kg +0897f8e3-80f6-36ba-aff3-5b0c6c1b7b30,SESCO,II.5.1,Buenos Aires,AR-B,annual,2017,naphtha combustion consumption by agriculture machines,3.7993031999999993,TJ,CH4,3.0,kg/TJ,11.397909599999998,kg +0215d3fa-0ddf-38cc-863a-49c858c27f9b,SESCO,II.5.1,Buenos Aires,AR-B,annual,2017,naphtha combustion consumption by agriculture machines,3.7993031999999993,TJ,N2O,0.6,kg/TJ,2.2795819199999996,kg +4bff18f5-d0a8-3762-b4ac-57685bd97faf,SESCO,II.5.1,Santa Fe,AR-S,annual,2017,naphtha combustion consumption by agriculture machines,0.5126044,TJ,CO2,73300.0,kg/TJ,37573.902519999996,kg +ef1e3f84-448b-3c94-9647-2a79a33ec1b8,SESCO,II.5.1,Santa Fe,AR-S,annual,2017,naphtha combustion consumption by agriculture machines,0.5126044,TJ,CH4,3.0,kg/TJ,1.5378132,kg +73742b9e-b094-3ac0-81a5-ad8d786d2726,SESCO,II.5.1,Santa Fe,AR-S,annual,2017,naphtha combustion consumption by agriculture machines,0.5126044,TJ,N2O,0.6,kg/TJ,0.30756263999999994,kg +c486f23c-558f-372e-a646-ea0017e06963,SESCO,II.1.1,Buenos Aires,AR-B,annual,2017,naphtha combustion consumption by to the public,33377.3610632,TJ,CO2,73300.0,kg/TJ,2446560565.93256,kg +1c637dd1-e051-3f4b-9b83-02c071c4bcf3,SESCO,II.1.1,Buenos Aires,AR-B,annual,2017,naphtha combustion consumption by to the public,33377.3610632,TJ,CH4,3.0,kg/TJ,100132.0831896,kg +9e352efa-7b5e-3c57-b2c2-8bbc1b47e274,SESCO,II.1.1,Buenos Aires,AR-B,annual,2017,naphtha combustion consumption by to the public,33377.3610632,TJ,N2O,0.6,kg/TJ,20026.41663792,kg +039ca95e-b6b2-3804-9cba-e95b552931e0,SESCO,II.1.1,Capital Federal,AR-C,annual,2017,naphtha combustion consumption by to the public,7249.160965199999,TJ,CO2,73300.0,kg/TJ,531363498.74915993,kg +670920ce-a9a5-3c8a-b1ed-4e50c6726b18,SESCO,II.1.1,Capital Federal,AR-C,annual,2017,naphtha combustion consumption by to the public,7249.160965199999,TJ,CH4,3.0,kg/TJ,21747.4828956,kg +be3422dd-12d1-35d8-af5f-12a5bdd69c1e,SESCO,II.1.1,Capital Federal,AR-C,annual,2017,naphtha combustion consumption by to the public,7249.160965199999,TJ,N2O,0.6,kg/TJ,4349.496579119999,kg +f8cf0c68-ca9e-37e2-be11-7a0c6365ce31,SESCO,II.1.1,Catamarca,AR-K,annual,2017,naphtha combustion consumption by to the public,650.7965156,TJ,CO2,73300.0,kg/TJ,47703384.59348,kg +6df9699c-6384-335a-8efc-f0d7721225f2,SESCO,II.1.1,Catamarca,AR-K,annual,2017,naphtha combustion consumption by to the public,650.7965156,TJ,CH4,3.0,kg/TJ,1952.3895468,kg +32034100-1264-33fb-8884-a589488f7357,SESCO,II.1.1,Catamarca,AR-K,annual,2017,naphtha combustion consumption by to the public,650.7965156,TJ,N2O,0.6,kg/TJ,390.47790936,kg +287f4c7a-b6fe-3ec0-ba28-3e159c4c6850,SESCO,II.1.1,Chaco,AR-H,annual,2017,naphtha combustion consumption by to the public,2184.3581144,TJ,CO2,73300.0,kg/TJ,160113449.78552,kg +4bb2330f-f2c8-3865-be47-e3406d3101ec,SESCO,II.1.1,Chaco,AR-H,annual,2017,naphtha combustion consumption by to the public,2184.3581144,TJ,CH4,3.0,kg/TJ,6553.0743432,kg +5801894c-80aa-3519-99a0-68641c780e4f,SESCO,II.1.1,Chaco,AR-H,annual,2017,naphtha combustion consumption by to the public,2184.3581144,TJ,N2O,0.6,kg/TJ,1310.61486864,kg +6f7d0a12-285c-3fdb-88dd-f1b28bcf1134,SESCO,II.1.1,Chubut,AR-U,annual,2017,naphtha combustion consumption by to the public,3064.1078775999995,TJ,CO2,73300.0,kg/TJ,224599107.42807996,kg +f7dafd95-ea2d-31f1-ab16-b87c5f7aabaa,SESCO,II.1.1,Chubut,AR-U,annual,2017,naphtha combustion consumption by to the public,3064.1078775999995,TJ,CH4,3.0,kg/TJ,9192.323632799998,kg +00226e91-4c57-3bc3-9b6e-92dded5a491b,SESCO,II.1.1,Chubut,AR-U,annual,2017,naphtha combustion consumption by to the public,3064.1078775999995,TJ,N2O,0.6,kg/TJ,1838.4647265599997,kg +045b4fd4-35df-3e21-b0ca-70066b9f9c79,SESCO,II.1.1,Corrientes,AR-W,annual,2017,naphtha combustion consumption by to the public,2219.2453668,TJ,CO2,73300.0,kg/TJ,162670685.38643998,kg +06353268-1e8c-3ef3-b21b-4ae708dc65f0,SESCO,II.1.1,Corrientes,AR-W,annual,2017,naphtha combustion consumption by to the public,2219.2453668,TJ,CH4,3.0,kg/TJ,6657.7361003999995,kg +006c5d69-72dd-3d52-8ac4-32db652e2060,SESCO,II.1.1,Corrientes,AR-W,annual,2017,naphtha combustion consumption by to the public,2219.2453668,TJ,N2O,0.6,kg/TJ,1331.5472200799998,kg +f9dec358-0dd9-30e0-892d-48d05cbbaf1b,SESCO,II.1.1,Córdoba,AR-X,annual,2017,naphtha combustion consumption by to the public,8215.8725572,TJ,CO2,73300.0,kg/TJ,602223458.44276,kg +4ef659f8-2024-31fe-9c56-f38283593af0,SESCO,II.1.1,Córdoba,AR-X,annual,2017,naphtha combustion consumption by to the public,8215.8725572,TJ,CH4,3.0,kg/TJ,24647.6176716,kg +e01b7ae6-c523-3063-9857-300053d15cdb,SESCO,II.1.1,Córdoba,AR-X,annual,2017,naphtha combustion consumption by to the public,8215.8725572,TJ,N2O,0.6,kg/TJ,4929.52353432,kg +50cc520f-807c-3e2b-8179-e9f61d242b91,SESCO,II.1.1,Entre Rios,AR-E,annual,2017,naphtha combustion consumption by to the public,2917.171334,TJ,CO2,73300.0,kg/TJ,213828658.7822,kg +60be47b9-6e24-390a-a774-367603589c18,SESCO,II.1.1,Entre Rios,AR-E,annual,2017,naphtha combustion consumption by to the public,2917.171334,TJ,CH4,3.0,kg/TJ,8751.514002,kg +507d1c7b-e3c8-3e8c-96f3-34af4539e59d,SESCO,II.1.1,Entre Rios,AR-E,annual,2017,naphtha combustion consumption by to the public,2917.171334,TJ,N2O,0.6,kg/TJ,1750.3028004,kg +2a35d6e7-6bd9-3da4-b439-d28a36887eaa,SESCO,II.1.1,Formosa,AR-P,annual,2017,naphtha combustion consumption by to the public,724.5512428,TJ,CO2,73300.0,kg/TJ,53109606.09723999,kg +38f66fc8-7986-3fbb-b335-623931c67dd6,SESCO,II.1.1,Formosa,AR-P,annual,2017,naphtha combustion consumption by to the public,724.5512428,TJ,CH4,3.0,kg/TJ,2173.6537283999996,kg +6ef5207c-7a46-362f-856a-46efb3a1c74c,SESCO,II.1.1,Formosa,AR-P,annual,2017,naphtha combustion consumption by to the public,724.5512428,TJ,N2O,0.6,kg/TJ,434.73074568,kg +0302f4a4-3b4b-30b3-9f66-630d65370766,SESCO,II.1.1,Jujuy,AR-Y,annual,2017,naphtha combustion consumption by to the public,1283.7121836,TJ,CO2,73300.0,kg/TJ,94096103.05788,kg +d6cc7086-b9ce-321f-a4ad-10d797a9acae,SESCO,II.1.1,Jujuy,AR-Y,annual,2017,naphtha combustion consumption by to the public,1283.7121836,TJ,CH4,3.0,kg/TJ,3851.1365508,kg +b97fab72-ed78-3215-b71d-56b2fc6b823b,SESCO,II.1.1,Jujuy,AR-Y,annual,2017,naphtha combustion consumption by to the public,1283.7121836,TJ,N2O,0.6,kg/TJ,770.2273101599999,kg +6acb5049-3d3a-3070-9ddf-95bac88eeae2,SESCO,II.1.1,La Pampa,AR-L,annual,2017,naphtha combustion consumption by to the public,1441.5340324,TJ,CO2,73300.0,kg/TJ,105664444.57492,kg +10c6da82-7602-3694-a391-500b8891de77,SESCO,II.1.1,La Pampa,AR-L,annual,2017,naphtha combustion consumption by to the public,1441.5340324,TJ,CH4,3.0,kg/TJ,4324.6020972,kg +c552b9f7-4797-3ef0-8c4b-84be07294926,SESCO,II.1.1,La Pampa,AR-L,annual,2017,naphtha combustion consumption by to the public,1441.5340324,TJ,N2O,0.6,kg/TJ,864.9204194399999,kg +dba4300a-6ddf-3d67-8f7a-4cbb8535c1cf,SESCO,II.1.1,La Rioja,AR-F,annual,2017,naphtha combustion consumption by to the public,907.5208604,TJ,CO2,73300.0,kg/TJ,66521279.06732,kg +cd44ba49-77e5-3c8a-86c9-1db0081cad72,SESCO,II.1.1,La Rioja,AR-F,annual,2017,naphtha combustion consumption by to the public,907.5208604,TJ,CH4,3.0,kg/TJ,2722.5625812,kg +3c783ca8-a7ca-320f-89c1-53bcebd441c4,SESCO,II.1.1,La Rioja,AR-F,annual,2017,naphtha combustion consumption by to the public,907.5208604,TJ,N2O,0.6,kg/TJ,544.51251624,kg +9432c58e-4a3f-35f7-be85-d0b28f348fa8,SESCO,II.1.1,Mendoza,AR-M,annual,2017,naphtha combustion consumption by to the public,4552.077838,TJ,CO2,73300.0,kg/TJ,333667305.5254,kg +6eccb5b4-a7a1-302d-91a9-f8d7c75b12a5,SESCO,II.1.1,Mendoza,AR-M,annual,2017,naphtha combustion consumption by to the public,4552.077838,TJ,CH4,3.0,kg/TJ,13656.233514,kg +db9534fc-a063-3cad-8276-c80186f9f9d8,SESCO,II.1.1,Mendoza,AR-M,annual,2017,naphtha combustion consumption by to the public,4552.077838,TJ,N2O,0.6,kg/TJ,2731.2467028,kg +75abb14f-8175-37d0-9c5d-43bfc0ab0276,SESCO,II.1.1,Misiones,AR-N,annual,2017,naphtha combustion consumption by to the public,2976.1509932,TJ,CO2,73300.0,kg/TJ,218151867.80155998,kg +62cb7d7f-c489-36de-9880-66439098b9d7,SESCO,II.1.1,Misiones,AR-N,annual,2017,naphtha combustion consumption by to the public,2976.1509932,TJ,CH4,3.0,kg/TJ,8928.452979599999,kg +656e3bd7-21f2-3ba0-ad86-4adc73b17f13,SESCO,II.1.1,Misiones,AR-N,annual,2017,naphtha combustion consumption by to the public,2976.1509932,TJ,N2O,0.6,kg/TJ,1785.6905959199999,kg +62cdbfa0-c16a-3685-96ca-486a1990feee,SESCO,II.1.1,Neuquén,AR-Q,annual,2017,naphtha combustion consumption by to the public,2915.8144399999996,TJ,CO2,73300.0,kg/TJ,213729198.45199996,kg +6213b074-839d-3367-b83a-7e29340242f3,SESCO,II.1.1,Neuquén,AR-Q,annual,2017,naphtha combustion consumption by to the public,2915.8144399999996,TJ,CH4,3.0,kg/TJ,8747.443319999998,kg +23914b09-dc5a-3d7f-8840-78a9b4d65a43,SESCO,II.1.1,Neuquén,AR-Q,annual,2017,naphtha combustion consumption by to the public,2915.8144399999996,TJ,N2O,0.6,kg/TJ,1749.4886639999997,kg +675a1ca8-ed80-33c3-8fd5-66e9cb97f8fe,SESCO,II.1.1,Rio Negro,AR-R,annual,2017,naphtha combustion consumption by to the public,2750.9065892,TJ,CO2,73300.0,kg/TJ,201641452.98836,kg +deb54e0c-3d79-38ed-b47e-2f1def46f2b0,SESCO,II.1.1,Rio Negro,AR-R,annual,2017,naphtha combustion consumption by to the public,2750.9065892,TJ,CH4,3.0,kg/TJ,8252.7197676,kg +769636b7-3c80-3d58-9da7-f98f641777b9,SESCO,II.1.1,Rio Negro,AR-R,annual,2017,naphtha combustion consumption by to the public,2750.9065892,TJ,N2O,0.6,kg/TJ,1650.5439535199998,kg +ed1eddd8-b9f8-36b1-b4a6-be4d35da6910,SESCO,II.1.1,Salta,AR-A,annual,2017,naphtha combustion consumption by to the public,2898.0843583999995,TJ,CO2,73300.0,kg/TJ,212429583.47071996,kg +ffe289d0-703d-3c3c-bbbc-65778d507077,SESCO,II.1.1,Salta,AR-A,annual,2017,naphtha combustion consumption by to the public,2898.0843583999995,TJ,CH4,3.0,kg/TJ,8694.253075199998,kg +00715c66-414f-33ca-a2c2-313f39d08728,SESCO,II.1.1,Salta,AR-A,annual,2017,naphtha combustion consumption by to the public,2898.0843583999995,TJ,N2O,0.6,kg/TJ,1738.8506150399996,kg +035e67cf-2a4c-33cb-bc69-efa489508631,SESCO,II.1.1,San Juan,AR-J,annual,2017,naphtha combustion consumption by to the public,1526.5359031999997,TJ,CO2,73300.0,kg/TJ,111895081.70455998,kg +c6ed2615-cfd1-3f0b-aa24-15c43f0633fb,SESCO,II.1.1,San Juan,AR-J,annual,2017,naphtha combustion consumption by to the public,1526.5359031999997,TJ,CH4,3.0,kg/TJ,4579.607709599999,kg +85afdcb8-b872-3133-898b-0db61f58216a,SESCO,II.1.1,San Juan,AR-J,annual,2017,naphtha combustion consumption by to the public,1526.5359031999997,TJ,N2O,0.6,kg/TJ,915.9215419199998,kg +81b04477-5715-3498-9f4e-67b83269b3d9,SESCO,II.1.1,San Luis,AR-D,annual,2017,naphtha combustion consumption by to the public,1182.2768187999998,TJ,CO2,73300.0,kg/TJ,86660890.81803998,kg +eb1a21a4-80a1-312a-a789-ed413853aceb,SESCO,II.1.1,San Luis,AR-D,annual,2017,naphtha combustion consumption by to the public,1182.2768187999998,TJ,CH4,3.0,kg/TJ,3546.830456399999,kg +eb709cd5-658a-325e-b4a5-23e12a945b60,SESCO,II.1.1,San Luis,AR-D,annual,2017,naphtha combustion consumption by to the public,1182.2768187999998,TJ,N2O,0.6,kg/TJ,709.3660912799999,kg +a4c7b576-f916-38fc-991e-4f1c65b9f220,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2017,naphtha combustion consumption by to the public,2097.8787368,TJ,CO2,73300.0,kg/TJ,153774511.40743998,kg +6b347cba-0238-3399-8bc8-3e8d38ba76db,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2017,naphtha combustion consumption by to the public,2097.8787368,TJ,CH4,3.0,kg/TJ,6293.6362104,kg +ecd3d723-3c2e-3052-aad4-1865dac28dfe,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2017,naphtha combustion consumption by to the public,2097.8787368,TJ,N2O,0.6,kg/TJ,1258.7272420799998,kg +1538e3d5-cf11-3b54-b440-cf46d610d7aa,SESCO,II.1.1,Santa Fe,AR-S,annual,2017,naphtha combustion consumption by to the public,6117.782748,TJ,CO2,73300.0,kg/TJ,448433475.4284,kg +91274a18-d31b-34b7-b64e-2b0393a030b4,SESCO,II.1.1,Santa Fe,AR-S,annual,2017,naphtha combustion consumption by to the public,6117.782748,TJ,CH4,3.0,kg/TJ,18353.348244,kg +7eccb241-eadc-3166-a315-ec293ad5ed2c,SESCO,II.1.1,Santa Fe,AR-S,annual,2017,naphtha combustion consumption by to the public,6117.782748,TJ,N2O,0.6,kg/TJ,3670.6696488,kg +baa7cfae-cc4b-33ae-b530-a72166b2eb22,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2017,naphtha combustion consumption by to the public,1209.1131668,TJ,CO2,73300.0,kg/TJ,88627995.12644,kg +2acee730-3613-37de-a18d-95381e23b698,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2017,naphtha combustion consumption by to the public,1209.1131668,TJ,CH4,3.0,kg/TJ,3627.3395004000004,kg +5abdea55-0a64-395f-b8c3-f8e9c7f1d884,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2017,naphtha combustion consumption by to the public,1209.1131668,TJ,N2O,0.6,kg/TJ,725.46790008,kg +d9b10b05-fbcb-383f-ac68-08d8abb82733,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2017,naphtha combustion consumption by to the public,1620.6440403999998,TJ,CO2,73300.0,kg/TJ,118793208.16131999,kg +c9421283-a505-3fd4-8305-87a5a7cddd57,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2017,naphtha combustion consumption by to the public,1620.6440403999998,TJ,CH4,3.0,kg/TJ,4861.9321211999995,kg +99fd1df5-4276-3e5a-a47a-272c51f343ae,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2017,naphtha combustion consumption by to the public,1620.6440403999998,TJ,N2O,0.6,kg/TJ,972.3864242399998,kg +87b4318d-e71c-3dbd-be68-3947aa7d091b,SESCO,II.1.1,Tucuman,AR-T,annual,2017,naphtha combustion consumption by to the public,2235.2868691999997,TJ,CO2,73300.0,kg/TJ,163846527.51235998,kg +89a501ba-2520-38a6-9583-6bb6b158ddd2,SESCO,II.1.1,Tucuman,AR-T,annual,2017,naphtha combustion consumption by to the public,2235.2868691999997,TJ,CH4,3.0,kg/TJ,6705.8606076,kg +fcceacce-0d94-389e-82e2-4e346b095864,SESCO,II.1.1,Tucuman,AR-T,annual,2017,naphtha combustion consumption by to the public,2235.2868691999997,TJ,N2O,0.6,kg/TJ,1341.1721215199998,kg +38d172cd-f71a-3598-93a6-20c4c74bb8d1,SESCO,II.1.1,Buenos Aires,AR-B,annual,2017,naphtha combustion consumption by to the public,18093.6387324,TJ,CO2,73300.0,kg/TJ,1326263719.08492,kg +902a5dc3-a840-3443-bac1-bdf7ca335437,SESCO,II.1.1,Buenos Aires,AR-B,annual,2017,naphtha combustion consumption by to the public,18093.6387324,TJ,CH4,3.0,kg/TJ,54280.9161972,kg +9785ff25-82c7-33d0-951c-1875dd62f23e,SESCO,II.1.1,Buenos Aires,AR-B,annual,2017,naphtha combustion consumption by to the public,18093.6387324,TJ,N2O,0.6,kg/TJ,10856.183239439999,kg +f93be288-b84b-3140-97e9-cd7c73f64aa9,SESCO,II.1.1,Capital Federal,AR-C,annual,2017,naphtha combustion consumption by to the public,4274.4874788,TJ,CO2,73300.0,kg/TJ,313319932.19604,kg +80748d6f-33d3-30ce-9139-aaea9077e3cb,SESCO,II.1.1,Capital Federal,AR-C,annual,2017,naphtha combustion consumption by to the public,4274.4874788,TJ,CH4,3.0,kg/TJ,12823.4624364,kg +90991b02-9148-3434-af07-41e1c68b8e51,SESCO,II.1.1,Capital Federal,AR-C,annual,2017,naphtha combustion consumption by to the public,4274.4874788,TJ,N2O,0.6,kg/TJ,2564.6924872799996,kg +20a54992-8a5f-3e19-846d-872c20194102,SESCO,II.1.1,Catamarca,AR-K,annual,2017,naphtha combustion consumption by to the public,359.42614399999997,TJ,CO2,73300.0,kg/TJ,26345936.355199996,kg +7aa52a67-44fd-346f-b310-2389cd4ae72c,SESCO,II.1.1,Catamarca,AR-K,annual,2017,naphtha combustion consumption by to the public,359.42614399999997,TJ,CH4,3.0,kg/TJ,1078.2784319999998,kg +f3e3cfd2-38e8-3009-a2a6-1006572080a6,SESCO,II.1.1,Catamarca,AR-K,annual,2017,naphtha combustion consumption by to the public,359.42614399999997,TJ,N2O,0.6,kg/TJ,215.65568639999998,kg +fa9da686-73c0-3e96-a89c-8e2d509b63da,SESCO,II.1.1,Chaco,AR-H,annual,2017,naphtha combustion consumption by to the public,1103.6372732,TJ,CO2,73300.0,kg/TJ,80896612.12556,kg +3ab8464b-900b-396a-ba84-ad47a5ebf3b9,SESCO,II.1.1,Chaco,AR-H,annual,2017,naphtha combustion consumption by to the public,1103.6372732,TJ,CH4,3.0,kg/TJ,3310.9118196,kg +0e613fba-c058-3e95-8ee3-24057b6df318,SESCO,II.1.1,Chaco,AR-H,annual,2017,naphtha combustion consumption by to the public,1103.6372732,TJ,N2O,0.6,kg/TJ,662.18236392,kg +adf4fb69-eb95-3b47-bb54-f7da1c1752ff,SESCO,II.1.1,Chubut,AR-U,annual,2017,naphtha combustion consumption by to the public,1586.5106179999998,TJ,CO2,73300.0,kg/TJ,116291228.29939999,kg +a535bbe3-3b9c-3fc6-b26f-cdd8fe3a8029,SESCO,II.1.1,Chubut,AR-U,annual,2017,naphtha combustion consumption by to the public,1586.5106179999998,TJ,CH4,3.0,kg/TJ,4759.531853999999,kg +f44c5d72-1da8-3c1d-a28c-7cace4fad66a,SESCO,II.1.1,Chubut,AR-U,annual,2017,naphtha combustion consumption by to the public,1586.5106179999998,TJ,N2O,0.6,kg/TJ,951.9063707999999,kg +ff9afc82-8a15-3bd9-b953-1ca08f0ca6fa,SESCO,II.1.1,Corrientes,AR-W,annual,2017,naphtha combustion consumption by to the public,1191.4433916,TJ,CO2,73300.0,kg/TJ,87332800.60428001,kg +8201d65f-a466-3b43-bbc8-686ddb8bdb67,SESCO,II.1.1,Corrientes,AR-W,annual,2017,naphtha combustion consumption by to the public,1191.4433916,TJ,CH4,3.0,kg/TJ,3574.3301748000003,kg +22710c52-466e-3a5d-9b3d-d6b1b46a7b09,SESCO,II.1.1,Corrientes,AR-W,annual,2017,naphtha combustion consumption by to the public,1191.4433916,TJ,N2O,0.6,kg/TJ,714.86603496,kg +86368173-e4f4-3679-b489-dd56126b7f67,SESCO,II.1.1,Córdoba,AR-X,annual,2017,naphtha combustion consumption by to the public,4181.5854696,TJ,CO2,73300.0,kg/TJ,306510214.92168,kg +b2919242-c962-3068-967a-8eb70ff1523b,SESCO,II.1.1,Córdoba,AR-X,annual,2017,naphtha combustion consumption by to the public,4181.5854696,TJ,CH4,3.0,kg/TJ,12544.7564088,kg +e157c571-e341-3ccd-96ff-235425ce0ad5,SESCO,II.1.1,Córdoba,AR-X,annual,2017,naphtha combustion consumption by to the public,4181.5854696,TJ,N2O,0.6,kg/TJ,2508.95128176,kg +61c6a0d0-a281-3ed3-b0fd-241b2c0c1a3a,SESCO,II.1.1,Entre Rios,AR-E,annual,2017,naphtha combustion consumption by to the public,1603.0044183999998,TJ,CO2,73300.0,kg/TJ,117500223.86872,kg +89a63d3f-84c2-3383-88a5-9ab67eb99b25,SESCO,II.1.1,Entre Rios,AR-E,annual,2017,naphtha combustion consumption by to the public,1603.0044183999998,TJ,CH4,3.0,kg/TJ,4809.0132552,kg +978f9933-d973-3d41-8ba9-7ef9d7381725,SESCO,II.1.1,Entre Rios,AR-E,annual,2017,naphtha combustion consumption by to the public,1603.0044183999998,TJ,N2O,0.6,kg/TJ,961.8026510399999,kg +639a4049-ff30-370c-adb9-55f061441761,SESCO,II.1.1,Formosa,AR-P,annual,2017,naphtha combustion consumption by to the public,293.8127807999999,TJ,CO2,73300.0,kg/TJ,21536476.832639996,kg +4eb3b057-77a5-3ed4-b1e1-03cb25f9db7d,SESCO,II.1.1,Formosa,AR-P,annual,2017,naphtha combustion consumption by to the public,293.8127807999999,TJ,CH4,3.0,kg/TJ,881.4383423999998,kg +a0e6edf3-23bc-365b-840a-1aeff68d7a29,SESCO,II.1.1,Formosa,AR-P,annual,2017,naphtha combustion consumption by to the public,293.8127807999999,TJ,N2O,0.6,kg/TJ,176.28766847999995,kg +e185b276-e472-3d0c-90c5-c2b04f6e0a4a,SESCO,II.1.1,Jujuy,AR-Y,annual,2017,naphtha combustion consumption by to the public,492.13037719999994,TJ,CO2,73300.0,kg/TJ,36073156.64876,kg +e1d3d1fb-1f76-361a-9a71-192bcd5304b2,SESCO,II.1.1,Jujuy,AR-Y,annual,2017,naphtha combustion consumption by to the public,492.13037719999994,TJ,CH4,3.0,kg/TJ,1476.3911315999999,kg +36fa5f6b-ba3c-3cf3-be29-48b751a0bb63,SESCO,II.1.1,Jujuy,AR-Y,annual,2017,naphtha combustion consumption by to the public,492.13037719999994,TJ,N2O,0.6,kg/TJ,295.27822631999993,kg +b31bb540-6ff7-3b10-80a7-b69b5f6717e5,SESCO,II.1.1,La Pampa,AR-L,annual,2017,naphtha combustion consumption by to the public,1211.9174143999999,TJ,CO2,73300.0,kg/TJ,88833546.47551998,kg +7133c42f-06bf-39b7-a9db-3fdd53da6dd3,SESCO,II.1.1,La Pampa,AR-L,annual,2017,naphtha combustion consumption by to the public,1211.9174143999999,TJ,CH4,3.0,kg/TJ,3635.7522431999996,kg +5e964978-0e3e-3eef-84d8-0ee671db385a,SESCO,II.1.1,La Pampa,AR-L,annual,2017,naphtha combustion consumption by to the public,1211.9174143999999,TJ,N2O,0.6,kg/TJ,727.1504486399999,kg +872a1092-8054-3f64-bca6-a7cd033e65dd,SESCO,II.1.1,La Rioja,AR-F,annual,2017,naphtha combustion consumption by to the public,497.1358083999999,TJ,CO2,73300.0,kg/TJ,36440054.75572,kg +0ab09359-a4e4-3bdd-a9e6-32a6921e77c4,SESCO,II.1.1,La Rioja,AR-F,annual,2017,naphtha combustion consumption by to the public,497.1358083999999,TJ,CH4,3.0,kg/TJ,1491.4074251999998,kg +b4b8fb27-6528-309e-9efe-d91e103e06fb,SESCO,II.1.1,La Rioja,AR-F,annual,2017,naphtha combustion consumption by to the public,497.1358083999999,TJ,N2O,0.6,kg/TJ,298.28148503999995,kg +57df157d-ccb6-3a3a-a480-b5dee45ddf0c,SESCO,II.1.1,Mendoza,AR-M,annual,2017,naphtha combustion consumption by to the public,3055.3936028,TJ,CO2,73300.0,kg/TJ,223960351.08523998,kg +1f27e838-1ab4-3981-8a6d-33add2bebf2f,SESCO,II.1.1,Mendoza,AR-M,annual,2017,naphtha combustion consumption by to the public,3055.3936028,TJ,CH4,3.0,kg/TJ,9166.1808084,kg +045717c8-98fc-3bf9-b2b8-e244951c1ce5,SESCO,II.1.1,Mendoza,AR-M,annual,2017,naphtha combustion consumption by to the public,3055.3936028,TJ,N2O,0.6,kg/TJ,1833.23616168,kg +20771380-9b5c-34b6-b5ec-1df47373d5f4,SESCO,II.1.1,Misiones,AR-N,annual,2017,naphtha combustion consumption by to the public,1078.73073,TJ,CO2,73300.0,kg/TJ,79070962.509,kg +883eee56-b4eb-3c51-9175-30299958d0f6,SESCO,II.1.1,Misiones,AR-N,annual,2017,naphtha combustion consumption by to the public,1078.73073,TJ,CH4,3.0,kg/TJ,3236.1921899999998,kg +53fd0be6-3923-3eda-9e11-b0f685137b2d,SESCO,II.1.1,Misiones,AR-N,annual,2017,naphtha combustion consumption by to the public,1078.73073,TJ,N2O,0.6,kg/TJ,647.238438,kg +62fbd30d-d49d-31ef-9a79-88c8721d546d,SESCO,II.1.1,Neuquén,AR-Q,annual,2017,naphtha combustion consumption by to the public,2075.4146028,TJ,CO2,73300.0,kg/TJ,152127890.38524,kg +8e3b3bfe-7acf-377f-a953-9c3a9e21b2e9,SESCO,II.1.1,Neuquén,AR-Q,annual,2017,naphtha combustion consumption by to the public,2075.4146028,TJ,CH4,3.0,kg/TJ,6226.2438084000005,kg +dc9c7c60-0c59-33eb-b23b-e84b56e1a874,SESCO,II.1.1,Neuquén,AR-Q,annual,2017,naphtha combustion consumption by to the public,2075.4146028,TJ,N2O,0.6,kg/TJ,1245.24876168,kg +865722ae-2b9b-3883-8492-8f281ee8389c,SESCO,II.1.1,Rio Negro,AR-R,annual,2017,naphtha combustion consumption by to the public,1772.9478535999997,TJ,CO2,73300.0,kg/TJ,129957077.66887997,kg +54cee8fa-da5c-394a-8f77-68d3b0bcb0b1,SESCO,II.1.1,Rio Negro,AR-R,annual,2017,naphtha combustion consumption by to the public,1772.9478535999997,TJ,CH4,3.0,kg/TJ,5318.843560799999,kg +c204bb33-081a-31a1-99c2-dbb048900fb1,SESCO,II.1.1,Rio Negro,AR-R,annual,2017,naphtha combustion consumption by to the public,1772.9478535999997,TJ,N2O,0.6,kg/TJ,1063.7687121599997,kg +268ed794-aa76-360e-acaf-8db5dedd1ce6,SESCO,II.1.1,Salta,AR-A,annual,2017,naphtha combustion consumption by to the public,1236.0701275999998,TJ,CO2,73300.0,kg/TJ,90603940.35307997,kg +d65fc390-4fb1-3b57-a7a2-cd91a60cb8fc,SESCO,II.1.1,Salta,AR-A,annual,2017,naphtha combustion consumption by to the public,1236.0701275999998,TJ,CH4,3.0,kg/TJ,3708.210382799999,kg +f9fe4f9b-7ecc-3f9a-a547-bb92185dda43,SESCO,II.1.1,Salta,AR-A,annual,2017,naphtha combustion consumption by to the public,1236.0701275999998,TJ,N2O,0.6,kg/TJ,741.6420765599999,kg +7ffb168f-c065-34ed-9907-2c3b7f771a81,SESCO,II.1.1,San Juan,AR-J,annual,2017,naphtha combustion consumption by to the public,855.8985819999999,TJ,CO2,73300.0,kg/TJ,62737366.0606,kg +5f0c0413-836a-3d77-8195-209dc1ff8804,SESCO,II.1.1,San Juan,AR-J,annual,2017,naphtha combustion consumption by to the public,855.8985819999999,TJ,CH4,3.0,kg/TJ,2567.695746,kg +aaa76fb1-35e4-3d67-a690-f8258e01bbad,SESCO,II.1.1,San Juan,AR-J,annual,2017,naphtha combustion consumption by to the public,855.8985819999999,TJ,N2O,0.6,kg/TJ,513.5391491999999,kg +0e48afb8-23aa-361a-afd3-312b291ccd50,SESCO,II.1.1,San Luis,AR-D,annual,2017,naphtha combustion consumption by to the public,780.7869608,TJ,CO2,73300.0,kg/TJ,57231684.22664,kg +db6c4e29-1d4e-39e6-9e0a-f7d2ca553b04,SESCO,II.1.1,San Luis,AR-D,annual,2017,naphtha combustion consumption by to the public,780.7869608,TJ,CH4,3.0,kg/TJ,2342.3608824,kg +f06e46b5-3716-3344-b859-ca2daa66db83,SESCO,II.1.1,San Luis,AR-D,annual,2017,naphtha combustion consumption by to the public,780.7869608,TJ,N2O,0.6,kg/TJ,468.47217648,kg +7c0f8f81-9eba-3b07-bb55-d11cb9674c09,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2017,naphtha combustion consumption by to the public,895.7309591999999,TJ,CO2,73300.0,kg/TJ,65657079.30936,kg +89331ffe-4528-3be7-bb3a-7e8806278aff,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2017,naphtha combustion consumption by to the public,895.7309591999999,TJ,CH4,3.0,kg/TJ,2687.1928775999995,kg +995eb1ec-5b67-394b-b753-bc28ca871294,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2017,naphtha combustion consumption by to the public,895.7309591999999,TJ,N2O,0.6,kg/TJ,537.43857552,kg +b6b2816f-7e0c-3c7f-8550-0c80aed9c967,SESCO,II.1.1,Santa Fe,AR-S,annual,2017,naphtha combustion consumption by to the public,3733.0264663999997,TJ,CO2,73300.0,kg/TJ,273630839.98712,kg +e2029ec6-f7ca-36ff-a028-4f34e1358fcb,SESCO,II.1.1,Santa Fe,AR-S,annual,2017,naphtha combustion consumption by to the public,3733.0264663999997,TJ,CH4,3.0,kg/TJ,11199.0793992,kg +2f523c21-8c8c-30e9-b21c-e075bb20e05d,SESCO,II.1.1,Santa Fe,AR-S,annual,2017,naphtha combustion consumption by to the public,3733.0264663999997,TJ,N2O,0.6,kg/TJ,2239.8158798399995,kg +2436581d-d8c1-3082-8c3c-9a20f5f9a972,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2017,naphtha combustion consumption by to the public,702.9012452,TJ,CO2,73300.0,kg/TJ,51522661.273159996,kg +1f9aac5f-df67-319f-aa3c-d20c23f777c1,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2017,naphtha combustion consumption by to the public,702.9012452,TJ,CH4,3.0,kg/TJ,2108.7037356,kg +c677a274-6bf2-3874-bc57-29bc215e3062,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2017,naphtha combustion consumption by to the public,702.9012452,TJ,N2O,0.6,kg/TJ,421.74074712,kg +3830e6aa-aecc-3a97-9aef-4f0f8cb33eac,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2017,naphtha combustion consumption by to the public,322.97092519999995,TJ,CO2,73300.0,kg/TJ,23673768.817159995,kg +2dd907b4-d687-3256-952e-be3b993d99ca,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2017,naphtha combustion consumption by to the public,322.97092519999995,TJ,CH4,3.0,kg/TJ,968.9127755999998,kg +4b53f3db-9d96-389a-a649-50a3c8c5bcee,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2017,naphtha combustion consumption by to the public,322.97092519999995,TJ,N2O,0.6,kg/TJ,193.78255511999996,kg +6dd331ae-2895-39ed-950b-176743b94c58,SESCO,II.1.1,Tucuman,AR-T,annual,2017,naphtha combustion consumption by to the public,920.577196,TJ,CO2,73300.0,kg/TJ,67478308.4668,kg +8d9418cf-cc05-3c6c-94c5-6b13d3887894,SESCO,II.1.1,Tucuman,AR-T,annual,2017,naphtha combustion consumption by to the public,920.577196,TJ,CH4,3.0,kg/TJ,2761.7315879999996,kg +52b521eb-81db-389a-9320-763769e2edf4,SESCO,II.1.1,Tucuman,AR-T,annual,2017,naphtha combustion consumption by to the public,920.577196,TJ,N2O,0.6,kg/TJ,552.3463175999999,kg +c75f64c8-0689-39b0-9ccb-a6566a46ca4c,SESCO,II.1.1,Buenos Aires,AR-B,annual,2017,naphtha combustion consumption by freight transport,251.89983279999998,TJ,CO2,73300.0,kg/TJ,18464257.744239997,kg +66648bc4-60e4-3b36-859c-2c501db75a5c,SESCO,II.1.1,Buenos Aires,AR-B,annual,2017,naphtha combustion consumption by freight transport,251.89983279999998,TJ,CH4,3.0,kg/TJ,755.6994983999999,kg +423c76c7-cc3d-37a8-82a5-117c708536e1,SESCO,II.1.1,Buenos Aires,AR-B,annual,2017,naphtha combustion consumption by freight transport,251.89983279999998,TJ,N2O,0.6,kg/TJ,151.13989967999998,kg +dc7cd93b-aa70-3ade-a49b-9df0047b93a3,SESCO,II.1.1,Capital Federal,AR-C,annual,2017,naphtha combustion consumption by freight transport,260.49349479999995,TJ,CO2,73300.0,kg/TJ,19094173.168839995,kg +c9201ca9-4ff2-3dbe-baa3-8b1f0a72f72a,SESCO,II.1.1,Capital Federal,AR-C,annual,2017,naphtha combustion consumption by freight transport,260.49349479999995,TJ,CH4,3.0,kg/TJ,781.4804843999998,kg +444c1350-b695-320b-a2c2-994a5e4008f7,SESCO,II.1.1,Capital Federal,AR-C,annual,2017,naphtha combustion consumption by freight transport,260.49349479999995,TJ,N2O,0.6,kg/TJ,156.29609687999996,kg +8aba5288-f6d2-3483-8bb5-209bd232f7dd,SESCO,II.1.1,Chaco,AR-H,annual,2017,naphtha combustion consumption by freight transport,10.0108624,TJ,CO2,73300.0,kg/TJ,733796.21392,kg +0f0123e3-43bc-3866-aece-624c04d6833b,SESCO,II.1.1,Chaco,AR-H,annual,2017,naphtha combustion consumption by freight transport,10.0108624,TJ,CH4,3.0,kg/TJ,30.032587200000002,kg +9904dd7f-adab-3f3f-8f61-5c3be8176574,SESCO,II.1.1,Chaco,AR-H,annual,2017,naphtha combustion consumption by freight transport,10.0108624,TJ,N2O,0.6,kg/TJ,6.0065174400000005,kg +c7844afe-9f33-391d-854a-9c2dd5dd3856,SESCO,II.1.1,Chubut,AR-U,annual,2017,naphtha combustion consumption by freight transport,3.3168519999999995,TJ,CO2,73300.0,kg/TJ,243125.25159999996,kg +b3aeed03-eb17-3163-9193-778835a65527,SESCO,II.1.1,Chubut,AR-U,annual,2017,naphtha combustion consumption by freight transport,3.3168519999999995,TJ,CH4,3.0,kg/TJ,9.950555999999999,kg +f76076d2-659e-3be0-a865-4ad5eff51c98,SESCO,II.1.1,Chubut,AR-U,annual,2017,naphtha combustion consumption by freight transport,3.3168519999999995,TJ,N2O,0.6,kg/TJ,1.9901111999999996,kg +35151cc4-dcf9-351a-850d-ebd6737de0e3,SESCO,II.1.1,Corrientes,AR-W,annual,2017,naphtha combustion consumption by freight transport,1.9298047999999999,TJ,CO2,73300.0,kg/TJ,141454.69183999998,kg +7b816fdd-f065-31cf-a38d-b1414ff3e983,SESCO,II.1.1,Corrientes,AR-W,annual,2017,naphtha combustion consumption by freight transport,1.9298047999999999,TJ,CH4,3.0,kg/TJ,5.7894144,kg +26550d0a-bb1b-325f-b19b-26ec3a014fca,SESCO,II.1.1,Corrientes,AR-W,annual,2017,naphtha combustion consumption by freight transport,1.9298047999999999,TJ,N2O,0.6,kg/TJ,1.1578828799999998,kg +5797f948-36c4-3665-bc28-dd9c910b2dab,SESCO,II.1.1,Córdoba,AR-X,annual,2017,naphtha combustion consumption by freight transport,17.338089999999998,TJ,CO2,73300.0,kg/TJ,1270881.9969999997,kg +97b30172-d88d-3160-b687-35c06e7a1550,SESCO,II.1.1,Córdoba,AR-X,annual,2017,naphtha combustion consumption by freight transport,17.338089999999998,TJ,CH4,3.0,kg/TJ,52.014269999999996,kg +dff8cc15-44d3-3896-b546-b483725e046d,SESCO,II.1.1,Córdoba,AR-X,annual,2017,naphtha combustion consumption by freight transport,17.338089999999998,TJ,N2O,0.6,kg/TJ,10.402853999999998,kg +9382399b-781d-358a-ade4-68122d5cc196,SESCO,II.1.1,Entre Rios,AR-E,annual,2017,naphtha combustion consumption by freight transport,9.4379516,TJ,CO2,73300.0,kg/TJ,691801.85228,kg +3b1cfb34-480a-3cf9-9a16-4d970c047193,SESCO,II.1.1,Entre Rios,AR-E,annual,2017,naphtha combustion consumption by freight transport,9.4379516,TJ,CH4,3.0,kg/TJ,28.3138548,kg +7d9b2981-0bc4-3ce0-bd09-64796dee637c,SESCO,II.1.1,Entre Rios,AR-E,annual,2017,naphtha combustion consumption by freight transport,9.4379516,TJ,N2O,0.6,kg/TJ,5.66277096,kg +141d540c-2825-39c8-9343-f3aa921d93e8,SESCO,II.1.1,Formosa,AR-P,annual,2017,naphtha combustion consumption by freight transport,0.39199159999999994,TJ,CO2,73300.0,kg/TJ,28732.984279999997,kg +b9a2a862-dd8b-3543-892b-e162d1f08b5e,SESCO,II.1.1,Formosa,AR-P,annual,2017,naphtha combustion consumption by freight transport,0.39199159999999994,TJ,CH4,3.0,kg/TJ,1.1759747999999999,kg +45239613-3734-3236-9221-d860dfaeb607,SESCO,II.1.1,Formosa,AR-P,annual,2017,naphtha combustion consumption by freight transport,0.39199159999999994,TJ,N2O,0.6,kg/TJ,0.23519495999999995,kg +19065dbb-ec54-350b-bd95-cb0bc4aae32b,SESCO,II.1.1,Jujuy,AR-Y,annual,2017,naphtha combustion consumption by freight transport,0.150766,TJ,CO2,73300.0,kg/TJ,11051.1478,kg +d64e4ada-7377-33f6-bb80-ccf57bddbe8e,SESCO,II.1.1,Jujuy,AR-Y,annual,2017,naphtha combustion consumption by freight transport,0.150766,TJ,CH4,3.0,kg/TJ,0.45229800000000003,kg +c1471586-7977-3b39-acb1-f5b0aa6ad5d3,SESCO,II.1.1,Jujuy,AR-Y,annual,2017,naphtha combustion consumption by freight transport,0.150766,TJ,N2O,0.6,kg/TJ,0.0904596,kg +69143167-53f2-307f-84f3-da372d18a797,SESCO,II.1.1,La Pampa,AR-L,annual,2017,naphtha combustion consumption by freight transport,1.1156684,TJ,CO2,73300.0,kg/TJ,81778.49372,kg +bce14174-1c0f-3ec7-b197-d7aef7f1035a,SESCO,II.1.1,La Pampa,AR-L,annual,2017,naphtha combustion consumption by freight transport,1.1156684,TJ,CH4,3.0,kg/TJ,3.3470052,kg +c38b2886-4a32-34ee-9129-422be82d55c2,SESCO,II.1.1,La Pampa,AR-L,annual,2017,naphtha combustion consumption by freight transport,1.1156684,TJ,N2O,0.6,kg/TJ,0.6694010399999999,kg +40cf2395-658d-323e-9009-1e01215a8a64,SESCO,II.1.1,La Rioja,AR-F,annual,2017,naphtha combustion consumption by freight transport,0.030153199999999998,TJ,CO2,73300.0,kg/TJ,2210.2295599999998,kg +33a6bbda-e349-3456-bfc4-96a156eb816f,SESCO,II.1.1,La Rioja,AR-F,annual,2017,naphtha combustion consumption by freight transport,0.030153199999999998,TJ,CH4,3.0,kg/TJ,0.0904596,kg +32bd2680-c796-3d62-82bd-7710bbe4bb84,SESCO,II.1.1,La Rioja,AR-F,annual,2017,naphtha combustion consumption by freight transport,0.030153199999999998,TJ,N2O,0.6,kg/TJ,0.018091919999999997,kg +77a02243-1134-3c82-b82b-a12e894b3d44,SESCO,II.1.1,Mendoza,AR-M,annual,2017,naphtha combustion consumption by freight transport,18.393451999999996,TJ,CO2,73300.0,kg/TJ,1348240.0315999996,kg +7e79aafa-9169-3a27-9c27-c534fe1b0cc8,SESCO,II.1.1,Mendoza,AR-M,annual,2017,naphtha combustion consumption by freight transport,18.393451999999996,TJ,CH4,3.0,kg/TJ,55.18035599999999,kg +ba1e4f48-5bba-30d8-8526-88b19da99011,SESCO,II.1.1,Mendoza,AR-M,annual,2017,naphtha combustion consumption by freight transport,18.393451999999996,TJ,N2O,0.6,kg/TJ,11.036071199999997,kg +fb2a5eb9-8e36-38a1-9c48-9a48dce92026,SESCO,II.1.1,Misiones,AR-N,annual,2017,naphtha combustion consumption by freight transport,1.7790388,TJ,CO2,73300.0,kg/TJ,130403.54404,kg +bbf6ee03-5fb7-383a-a25e-da1ee1de71e8,SESCO,II.1.1,Misiones,AR-N,annual,2017,naphtha combustion consumption by freight transport,1.7790388,TJ,CH4,3.0,kg/TJ,5.337116399999999,kg +04c9516b-a8a8-339f-896a-577817c881a1,SESCO,II.1.1,Misiones,AR-N,annual,2017,naphtha combustion consumption by freight transport,1.7790388,TJ,N2O,0.6,kg/TJ,1.0674232799999999,kg +902a68aa-5f74-3488-bbef-b5d917175dac,SESCO,II.1.1,Neuquén,AR-Q,annual,2017,naphtha combustion consumption by freight transport,4.1008352,TJ,CO2,73300.0,kg/TJ,300591.22015999997,kg +eef32ea4-75a7-3fce-a17f-02b0e3f4176b,SESCO,II.1.1,Neuquén,AR-Q,annual,2017,naphtha combustion consumption by freight transport,4.1008352,TJ,CH4,3.0,kg/TJ,12.3025056,kg +f10715d2-b57b-32d4-873c-69f9d82fa625,SESCO,II.1.1,Neuquén,AR-Q,annual,2017,naphtha combustion consumption by freight transport,4.1008352,TJ,N2O,0.6,kg/TJ,2.4605011199999995,kg +124472a3-4bb2-3721-a586-66215d4b430b,SESCO,II.1.1,Rio Negro,AR-R,annual,2017,naphtha combustion consumption by freight transport,7.628759599999999,TJ,CO2,73300.0,kg/TJ,559188.0786799999,kg +f5dc3715-d32a-3dc7-a5d1-453a5ea33c95,SESCO,II.1.1,Rio Negro,AR-R,annual,2017,naphtha combustion consumption by freight transport,7.628759599999999,TJ,CH4,3.0,kg/TJ,22.886278799999996,kg +a1bf4bd8-3453-3aef-8f97-945bbd52cae7,SESCO,II.1.1,Rio Negro,AR-R,annual,2017,naphtha combustion consumption by freight transport,7.628759599999999,TJ,N2O,0.6,kg/TJ,4.577255759999999,kg +46d54099-ae2b-301c-86b6-9ed748fbde2d,SESCO,II.1.1,Salta,AR-A,annual,2017,naphtha combustion consumption by freight transport,10.0410156,TJ,CO2,73300.0,kg/TJ,736006.44348,kg +e28c81cf-711a-3dc6-be30-f063979ae832,SESCO,II.1.1,Salta,AR-A,annual,2017,naphtha combustion consumption by freight transport,10.0410156,TJ,CH4,3.0,kg/TJ,30.123046799999997,kg +f35d7f7f-bf0a-3d2c-8591-454b9a29496a,SESCO,II.1.1,Salta,AR-A,annual,2017,naphtha combustion consumption by freight transport,10.0410156,TJ,N2O,0.6,kg/TJ,6.0246093599999995,kg +01ffee42-4110-373d-a700-89c5a668906f,SESCO,II.1.1,San Juan,AR-J,annual,2017,naphtha combustion consumption by freight transport,1.8694984,TJ,CO2,73300.0,kg/TJ,137034.23272,kg +33bd3c84-2ae7-33d2-aa62-dfcf67348bbb,SESCO,II.1.1,San Juan,AR-J,annual,2017,naphtha combustion consumption by freight transport,1.8694984,TJ,CH4,3.0,kg/TJ,5.6084952,kg +5cfaf4ab-254f-3d27-8e4f-72e9c3135bf1,SESCO,II.1.1,San Juan,AR-J,annual,2017,naphtha combustion consumption by freight transport,1.8694984,TJ,N2O,0.6,kg/TJ,1.12169904,kg +51eedda4-1de4-317b-8af2-de06966aa566,SESCO,II.1.1,San Luis,AR-D,annual,2017,naphtha combustion consumption by freight transport,2.7137879999999996,TJ,CO2,73300.0,kg/TJ,198920.66039999996,kg +03ca5939-77b0-3495-a2b0-af511c26b660,SESCO,II.1.1,San Luis,AR-D,annual,2017,naphtha combustion consumption by freight transport,2.7137879999999996,TJ,CH4,3.0,kg/TJ,8.141364,kg +5897e36a-d942-31ee-920a-1180fc0f1a8a,SESCO,II.1.1,San Luis,AR-D,annual,2017,naphtha combustion consumption by freight transport,2.7137879999999996,TJ,N2O,0.6,kg/TJ,1.6282727999999997,kg +abb95781-73c1-3154-9568-2ed0380f7140,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2017,naphtha combustion consumption by freight transport,0.33168519999999996,TJ,CO2,73300.0,kg/TJ,24312.525159999997,kg +153636bd-d545-3e82-b13d-7e23bb45b589,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2017,naphtha combustion consumption by freight transport,0.33168519999999996,TJ,CH4,3.0,kg/TJ,0.9950555999999999,kg +8e9d7bd4-d4ad-37f4-b11f-4cbdbeb26bc3,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2017,naphtha combustion consumption by freight transport,0.33168519999999996,TJ,N2O,0.6,kg/TJ,0.19901111999999996,kg +61ff5d3b-fb20-33f6-b721-4fd52241a0c6,SESCO,II.1.1,Santa Fe,AR-S,annual,2017,naphtha combustion consumption by freight transport,24.032100399999997,TJ,CO2,73300.0,kg/TJ,1761552.95932,kg +807004a4-3618-3e09-baaf-c9cf8c1f997c,SESCO,II.1.1,Santa Fe,AR-S,annual,2017,naphtha combustion consumption by freight transport,24.032100399999997,TJ,CH4,3.0,kg/TJ,72.0963012,kg +57bbe280-f7eb-3f41-b6f2-6a15cc3853d4,SESCO,II.1.1,Santa Fe,AR-S,annual,2017,naphtha combustion consumption by freight transport,24.032100399999997,TJ,N2O,0.6,kg/TJ,14.419260239999998,kg +b3013ab0-631e-34da-8be8-171e0be44d60,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2017,naphtha combustion consumption by freight transport,0.0904596,TJ,CO2,73300.0,kg/TJ,6630.68868,kg +f3310540-7f58-30d9-97fb-bf1441e36089,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2017,naphtha combustion consumption by freight transport,0.0904596,TJ,CH4,3.0,kg/TJ,0.27137880000000003,kg +29b82ec8-a070-3be4-aef8-0931bd1fc50f,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2017,naphtha combustion consumption by freight transport,0.0904596,TJ,N2O,0.6,kg/TJ,0.05427576,kg +f682568b-1376-3798-8a01-033eab69b6c9,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2017,naphtha combustion consumption by freight transport,4.0405288,TJ,CO2,73300.0,kg/TJ,296170.76103999995,kg +6f5d8c63-a73e-3782-a628-e3a2a6bc505e,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2017,naphtha combustion consumption by freight transport,4.0405288,TJ,CH4,3.0,kg/TJ,12.121586399999998,kg +12cc7b72-ddb1-345f-b043-aa71b8d980b4,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2017,naphtha combustion consumption by freight transport,4.0405288,TJ,N2O,0.6,kg/TJ,2.42431728,kg +135431b8-71fd-3426-ae4f-f8ac68a9be49,SESCO,II.1.1,Tucuman,AR-T,annual,2017,naphtha combustion consumption by freight transport,3.7993031999999993,TJ,CO2,73300.0,kg/TJ,278488.92455999996,kg +7df3d86c-e3a7-3ae4-b111-20daae3a1a96,SESCO,II.1.1,Tucuman,AR-T,annual,2017,naphtha combustion consumption by freight transport,3.7993031999999993,TJ,CH4,3.0,kg/TJ,11.397909599999998,kg +d81e501b-ee07-356a-8916-08fb555af399,SESCO,II.1.1,Tucuman,AR-T,annual,2017,naphtha combustion consumption by freight transport,3.7993031999999993,TJ,N2O,0.6,kg/TJ,2.2795819199999996,kg +2a3a4d01-2424-3e3f-b2e0-2114f246ec98,SESCO,II.1.1,Buenos Aires,AR-B,annual,2017,naphtha combustion consumption by freight transport,265.52907919999996,TJ,CO2,73300.0,kg/TJ,19463281.505359996,kg +1a12e615-6cb6-351d-9de0-e35bd834afaa,SESCO,II.1.1,Buenos Aires,AR-B,annual,2017,naphtha combustion consumption by freight transport,265.52907919999996,TJ,CH4,3.0,kg/TJ,796.5872375999999,kg +0c444e09-1722-3c28-ba75-4e4d6125ad1b,SESCO,II.1.1,Buenos Aires,AR-B,annual,2017,naphtha combustion consumption by freight transport,265.52907919999996,TJ,N2O,0.6,kg/TJ,159.31744751999997,kg +2e63c4b1-a6ab-3221-9f98-30d55b25024d,SESCO,II.1.1,Capital Federal,AR-C,annual,2017,naphtha combustion consumption by freight transport,313.0806756,TJ,CO2,73300.0,kg/TJ,22948813.52148,kg +7e041ce7-c5b9-34a1-a651-510eb215d332,SESCO,II.1.1,Capital Federal,AR-C,annual,2017,naphtha combustion consumption by freight transport,313.0806756,TJ,CH4,3.0,kg/TJ,939.2420268000001,kg +8244b796-f644-3fae-95e6-f5c57577a988,SESCO,II.1.1,Capital Federal,AR-C,annual,2017,naphtha combustion consumption by freight transport,313.0806756,TJ,N2O,0.6,kg/TJ,187.84840536,kg +046f564d-8d5c-30e6-8164-34e3ea5e1718,SESCO,II.1.1,Catamarca,AR-K,annual,2017,naphtha combustion consumption by freight transport,0.060306399999999996,TJ,CO2,73300.0,kg/TJ,4420.4591199999995,kg +c265ef54-3b55-3d50-a098-5eb7440b1705,SESCO,II.1.1,Catamarca,AR-K,annual,2017,naphtha combustion consumption by freight transport,0.060306399999999996,TJ,CH4,3.0,kg/TJ,0.1809192,kg +0d574dd2-33c4-3d0f-a81f-d84e94bc3b74,SESCO,II.1.1,Catamarca,AR-K,annual,2017,naphtha combustion consumption by freight transport,0.060306399999999996,TJ,N2O,0.6,kg/TJ,0.036183839999999995,kg +0e0887cc-ae29-3041-9021-65a2ab0c2e70,SESCO,II.1.1,Chaco,AR-H,annual,2017,naphtha combustion consumption by freight transport,9.980709199999998,TJ,CO2,73300.0,kg/TJ,731585.9843599999,kg +f24bf609-ea78-312d-9af3-121ccca8abd7,SESCO,II.1.1,Chaco,AR-H,annual,2017,naphtha combustion consumption by freight transport,9.980709199999998,TJ,CH4,3.0,kg/TJ,29.942127599999992,kg +10ce8fcb-d958-3925-99b1-990c01f81790,SESCO,II.1.1,Chaco,AR-H,annual,2017,naphtha combustion consumption by freight transport,9.980709199999998,TJ,N2O,0.6,kg/TJ,5.988425519999999,kg +27a2edc1-2333-37c7-8752-15d1792aa0f4,SESCO,II.1.1,Chubut,AR-U,annual,2017,naphtha combustion consumption by freight transport,2.2916431999999998,TJ,CO2,73300.0,kg/TJ,167977.44655999998,kg +c32a2af2-6df3-3801-8101-6be1192db9c1,SESCO,II.1.1,Chubut,AR-U,annual,2017,naphtha combustion consumption by freight transport,2.2916431999999998,TJ,CH4,3.0,kg/TJ,6.8749296,kg +ef8a7539-6c22-33eb-b5a4-a7820257b0aa,SESCO,II.1.1,Chubut,AR-U,annual,2017,naphtha combustion consumption by freight transport,2.2916431999999998,TJ,N2O,0.6,kg/TJ,1.3749859199999999,kg +dfc2c74a-2a02-3a8a-b3e6-c0bcf2397446,SESCO,II.1.1,Corrientes,AR-W,annual,2017,naphtha combustion consumption by freight transport,4.975277999999999,TJ,CO2,73300.0,kg/TJ,364687.87739999994,kg +3c2d7673-6c69-327e-b040-e0585fa1cc40,SESCO,II.1.1,Corrientes,AR-W,annual,2017,naphtha combustion consumption by freight transport,4.975277999999999,TJ,CH4,3.0,kg/TJ,14.925833999999998,kg +afc6d5c4-8881-3ba2-a0e9-10cc2b191c30,SESCO,II.1.1,Corrientes,AR-W,annual,2017,naphtha combustion consumption by freight transport,4.975277999999999,TJ,N2O,0.6,kg/TJ,2.9851667999999996,kg +52b4951a-2e0e-3523-baa2-6d06b20a82a1,SESCO,II.1.1,Córdoba,AR-X,annual,2017,naphtha combustion consumption by freight transport,18.7552904,TJ,CO2,73300.0,kg/TJ,1374762.78632,kg +2718dd4a-6087-3231-b6c5-83ca8eebed72,SESCO,II.1.1,Córdoba,AR-X,annual,2017,naphtha combustion consumption by freight transport,18.7552904,TJ,CH4,3.0,kg/TJ,56.2658712,kg +bb10a50b-ecea-397b-bafd-9881c5b469f7,SESCO,II.1.1,Córdoba,AR-X,annual,2017,naphtha combustion consumption by freight transport,18.7552904,TJ,N2O,0.6,kg/TJ,11.25317424,kg +5d67fa1a-4ec6-35d5-ab8e-aa686ee65736,SESCO,II.1.1,Entre Rios,AR-E,annual,2017,naphtha combustion consumption by freight transport,13.297561199999999,TJ,CO2,73300.0,kg/TJ,974711.23596,kg +b1009f15-b24b-3bc3-a89b-6902628d1ac7,SESCO,II.1.1,Entre Rios,AR-E,annual,2017,naphtha combustion consumption by freight transport,13.297561199999999,TJ,CH4,3.0,kg/TJ,39.8926836,kg +d6bfee35-6845-3ebe-854c-0ad7b0b94fa7,SESCO,II.1.1,Entre Rios,AR-E,annual,2017,naphtha combustion consumption by freight transport,13.297561199999999,TJ,N2O,0.6,kg/TJ,7.978536719999999,kg +2d3e6b72-145c-30cd-a539-e23ff6c34269,SESCO,II.1.1,Formosa,AR-P,annual,2017,naphtha combustion consumption by freight transport,0.4221448,TJ,CO2,73300.0,kg/TJ,30943.21384,kg +3a5227a3-7cd6-32ed-a7b9-bbedfdb44531,SESCO,II.1.1,Formosa,AR-P,annual,2017,naphtha combustion consumption by freight transport,0.4221448,TJ,CH4,3.0,kg/TJ,1.2664344,kg +37aa2096-0f26-315e-93bf-aa0b0e429f32,SESCO,II.1.1,Formosa,AR-P,annual,2017,naphtha combustion consumption by freight transport,0.4221448,TJ,N2O,0.6,kg/TJ,0.25328688,kg +b9caa134-2fe7-35e9-aef3-fb001cd366f6,SESCO,II.1.1,Jujuy,AR-Y,annual,2017,naphtha combustion consumption by freight transport,0.2110724,TJ,CO2,73300.0,kg/TJ,15471.60692,kg +9fe78ef5-c3c3-3b98-a2a6-fb8858899825,SESCO,II.1.1,Jujuy,AR-Y,annual,2017,naphtha combustion consumption by freight transport,0.2110724,TJ,CH4,3.0,kg/TJ,0.6332172,kg +b2489567-2767-3c8e-b83d-03be6a559fdc,SESCO,II.1.1,Jujuy,AR-Y,annual,2017,naphtha combustion consumption by freight transport,0.2110724,TJ,N2O,0.6,kg/TJ,0.12664344,kg +ef6e7faa-3bcb-39a9-bb4f-c9edbcf265b7,SESCO,II.1.1,La Pampa,AR-L,annual,2017,naphtha combustion consumption by freight transport,1.7488855999999997,TJ,CO2,73300.0,kg/TJ,128193.31447999997,kg +ad678c9f-e573-3f14-9f88-b28d1cb7365a,SESCO,II.1.1,La Pampa,AR-L,annual,2017,naphtha combustion consumption by freight transport,1.7488855999999997,TJ,CH4,3.0,kg/TJ,5.246656799999999,kg +e78886ed-02ca-32a0-8149-cce1513df029,SESCO,II.1.1,La Pampa,AR-L,annual,2017,naphtha combustion consumption by freight transport,1.7488855999999997,TJ,N2O,0.6,kg/TJ,1.0493313599999998,kg +0937bbac-497f-381e-87d8-f955cc5d9196,SESCO,II.1.1,La Rioja,AR-F,annual,2017,naphtha combustion consumption by freight transport,1.4775067999999998,TJ,CO2,73300.0,kg/TJ,108301.24843999998,kg +e52a2fe8-b56a-329e-8a57-323558affbfc,SESCO,II.1.1,La Rioja,AR-F,annual,2017,naphtha combustion consumption by freight transport,1.4775067999999998,TJ,CH4,3.0,kg/TJ,4.4325204,kg +fb726cc1-680e-3766-ade1-add73db73add,SESCO,II.1.1,La Rioja,AR-F,annual,2017,naphtha combustion consumption by freight transport,1.4775067999999998,TJ,N2O,0.6,kg/TJ,0.8865040799999998,kg +1e389e4e-6836-301c-a724-d4b6af51a583,SESCO,II.1.1,Mendoza,AR-M,annual,2017,naphtha combustion consumption by freight transport,16.584259999999997,TJ,CO2,73300.0,kg/TJ,1215626.2579999997,kg +90061f24-59b6-3b99-99b4-4fef4faf1bda,SESCO,II.1.1,Mendoza,AR-M,annual,2017,naphtha combustion consumption by freight transport,16.584259999999997,TJ,CH4,3.0,kg/TJ,49.75277999999999,kg +a866c503-aef0-37a7-aa45-982ade3a8d9f,SESCO,II.1.1,Mendoza,AR-M,annual,2017,naphtha combustion consumption by freight transport,16.584259999999997,TJ,N2O,0.6,kg/TJ,9.950555999999997,kg +fae939d7-5d46-3389-962d-412afb31cceb,SESCO,II.1.1,Misiones,AR-N,annual,2017,naphtha combustion consumption by freight transport,3.7088435999999994,TJ,CO2,73300.0,kg/TJ,271858.23587999993,kg +4b09f520-e7e8-31b2-8af7-ac18510c47f3,SESCO,II.1.1,Misiones,AR-N,annual,2017,naphtha combustion consumption by freight transport,3.7088435999999994,TJ,CH4,3.0,kg/TJ,11.126530799999998,kg +73dd4449-9e4d-3765-9d9d-fe192797f6b4,SESCO,II.1.1,Misiones,AR-N,annual,2017,naphtha combustion consumption by freight transport,3.7088435999999994,TJ,N2O,0.6,kg/TJ,2.2253061599999997,kg +0a16c9c8-c4c2-3b93-9c26-0749db750448,SESCO,II.1.1,Neuquén,AR-Q,annual,2017,naphtha combustion consumption by freight transport,8.352436399999998,TJ,CO2,73300.0,kg/TJ,612233.5881199999,kg +6d0dde1a-54a4-3084-a5a9-98a7e9040d1b,SESCO,II.1.1,Neuquén,AR-Q,annual,2017,naphtha combustion consumption by freight transport,8.352436399999998,TJ,CH4,3.0,kg/TJ,25.057309199999995,kg +6aa08a7a-4c3a-3d34-a939-837d619339f9,SESCO,II.1.1,Neuquén,AR-Q,annual,2017,naphtha combustion consumption by freight transport,8.352436399999998,TJ,N2O,0.6,kg/TJ,5.011461839999999,kg +1d2ddaf2-2b55-3a68-a0d8-f2588824cf84,SESCO,II.1.1,Rio Negro,AR-R,annual,2017,naphtha combustion consumption by freight transport,32.6860688,TJ,CO2,73300.0,kg/TJ,2395888.84304,kg +7d17ef51-6436-3472-988c-141fc059a5ac,SESCO,II.1.1,Rio Negro,AR-R,annual,2017,naphtha combustion consumption by freight transport,32.6860688,TJ,CH4,3.0,kg/TJ,98.0582064,kg +716f5549-0376-3fb5-aa75-7a0ffd1b491a,SESCO,II.1.1,Rio Negro,AR-R,annual,2017,naphtha combustion consumption by freight transport,32.6860688,TJ,N2O,0.6,kg/TJ,19.61164128,kg +3e88d4ad-9a04-3319-83da-ac176119c455,SESCO,II.1.1,Salta,AR-A,annual,2017,naphtha combustion consumption by freight transport,4.52298,TJ,CO2,73300.0,kg/TJ,331534.43399999995,kg +04386643-d818-3315-90fc-e01eae02076f,SESCO,II.1.1,Salta,AR-A,annual,2017,naphtha combustion consumption by freight transport,4.52298,TJ,CH4,3.0,kg/TJ,13.568939999999998,kg +4e68aa8b-8889-3dca-bef4-ed5282b68723,SESCO,II.1.1,Salta,AR-A,annual,2017,naphtha combustion consumption by freight transport,4.52298,TJ,N2O,0.6,kg/TJ,2.7137879999999996,kg +673a2d60-c8c7-383c-943d-4d2345ce1526,SESCO,II.1.1,San Juan,AR-J,annual,2017,naphtha combustion consumption by freight transport,0.7839831999999999,TJ,CO2,73300.0,kg/TJ,57465.968559999994,kg +db93da80-86e4-3023-a259-278dc2fbbbf6,SESCO,II.1.1,San Juan,AR-J,annual,2017,naphtha combustion consumption by freight transport,0.7839831999999999,TJ,CH4,3.0,kg/TJ,2.3519495999999998,kg +2894ec59-cd15-33c0-93ab-2b8f451fb1fe,SESCO,II.1.1,San Juan,AR-J,annual,2017,naphtha combustion consumption by freight transport,0.7839831999999999,TJ,N2O,0.6,kg/TJ,0.4703899199999999,kg +53a40099-968b-3d4c-bdf3-25d7fb9d4444,SESCO,II.1.1,San Luis,AR-D,annual,2017,naphtha combustion consumption by freight transport,2.6836347999999997,TJ,CO2,73300.0,kg/TJ,196710.43084,kg +27e3d31d-6b5b-343a-ab5f-1144d760420a,SESCO,II.1.1,San Luis,AR-D,annual,2017,naphtha combustion consumption by freight transport,2.6836347999999997,TJ,CH4,3.0,kg/TJ,8.050904399999999,kg +372f7936-cae8-3491-af2b-0b8f6876245c,SESCO,II.1.1,San Luis,AR-D,annual,2017,naphtha combustion consumption by freight transport,2.6836347999999997,TJ,N2O,0.6,kg/TJ,1.6101808799999997,kg +10f812be-64a5-3564-92d7-74ccb73fa983,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2017,naphtha combustion consumption by freight transport,0.8442896,TJ,CO2,73300.0,kg/TJ,61886.42768,kg +c8a8931a-583c-3567-9118-9d9051833d7f,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2017,naphtha combustion consumption by freight transport,0.8442896,TJ,CH4,3.0,kg/TJ,2.5328688,kg +4ae84d18-f89a-3c09-b297-a47ab15a91d1,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2017,naphtha combustion consumption by freight transport,0.8442896,TJ,N2O,0.6,kg/TJ,0.50657376,kg +6fb30415-b965-376e-bf2c-b6ffdb302b93,SESCO,II.1.1,Santa Fe,AR-S,annual,2017,naphtha combustion consumption by freight transport,44.415663599999995,TJ,CO2,73300.0,kg/TJ,3255668.1418799995,kg +5762b39f-9b88-36e1-9b68-79fd5422ad99,SESCO,II.1.1,Santa Fe,AR-S,annual,2017,naphtha combustion consumption by freight transport,44.415663599999995,TJ,CH4,3.0,kg/TJ,133.2469908,kg +b75b1814-2fc9-3579-9ef5-75f2e9afddb8,SESCO,II.1.1,Santa Fe,AR-S,annual,2017,naphtha combustion consumption by freight transport,44.415663599999995,TJ,N2O,0.6,kg/TJ,26.649398159999997,kg +4a2d777c-20a0-3980-af4f-66b61a02e2f4,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2017,naphtha combustion consumption by freight transport,0.4522979999999999,TJ,CO2,73300.0,kg/TJ,33153.4434,kg +d60110e8-9390-3491-9ec9-3c265d296083,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2017,naphtha combustion consumption by freight transport,0.4522979999999999,TJ,CH4,3.0,kg/TJ,1.3568939999999998,kg +2cc29c81-4a2a-3253-8bd6-dcedbadb9425,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2017,naphtha combustion consumption by freight transport,0.4522979999999999,TJ,N2O,0.6,kg/TJ,0.2713787999999999,kg +892bea0c-8a79-3183-ac16-ab73d1501cb7,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2017,naphtha combustion consumption by freight transport,0.6935236,TJ,CO2,73300.0,kg/TJ,50835.27988,kg +bbd81689-7f84-3c8f-9ed3-57ac24baac70,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2017,naphtha combustion consumption by freight transport,0.6935236,TJ,CH4,3.0,kg/TJ,2.0805708000000003,kg +9cbee66f-9ce5-3d89-808f-2cdd72f8e5a2,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2017,naphtha combustion consumption by freight transport,0.6935236,TJ,N2O,0.6,kg/TJ,0.41611416,kg +bdfa6407-dc73-3c00-af97-dd845406bae5,SESCO,II.1.1,Tucuman,AR-T,annual,2017,naphtha combustion consumption by freight transport,3.467618,TJ,CO2,73300.0,kg/TJ,254176.3994,kg +7179f370-778e-3016-a01a-b00c0c036a71,SESCO,II.1.1,Tucuman,AR-T,annual,2017,naphtha combustion consumption by freight transport,3.467618,TJ,CH4,3.0,kg/TJ,10.402854,kg +fbc5ac3a-f1d5-3200-a485-c52464925b19,SESCO,II.1.1,Tucuman,AR-T,annual,2017,naphtha combustion consumption by freight transport,3.467618,TJ,N2O,0.6,kg/TJ,2.0805708,kg +cb84772d-b391-3130-9d37-8581bb5453a3,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,naphtha combustion consumption by to the public,1257.8318291,TJ,CO2,73300.0,kg/TJ,92199073.07303001,kg +862d7b29-4dee-30ee-b4a7-507868902752,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,naphtha combustion consumption by to the public,1257.8318291,TJ,CH4,3.0,kg/TJ,3773.4954873,kg +c046853b-3e44-3063-b447-58bbb133e029,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,naphtha combustion consumption by to the public,1257.8318291,TJ,N2O,0.6,kg/TJ,754.69909746,kg +37882e41-2b8f-382b-a01c-b788e973fa59,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,naphtha combustion consumption by to the public,91.64002924999998,TJ,CO2,73300.0,kg/TJ,6717214.144024999,kg +a3c0252d-21b5-3a9e-9a55-a441f8b1e9a9,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,naphtha combustion consumption by to the public,91.64002924999998,TJ,CH4,3.0,kg/TJ,274.92008774999994,kg +5174908d-633b-35dd-b73c-cb128d9d9099,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,naphtha combustion consumption by to the public,91.64002924999998,TJ,N2O,0.6,kg/TJ,54.98401754999999,kg +5fda1f39-d22e-34ab-a065-0a5e4f20abb1,SESCO,II.1.1,Chaco,AR-H,annual,2018,naphtha combustion consumption by to the public,131.83355955,TJ,CO2,73300.0,kg/TJ,9663399.915014999,kg +75dac7cc-8df1-3df9-a0c6-cd80d52fc218,SESCO,II.1.1,Chaco,AR-H,annual,2018,naphtha combustion consumption by to the public,131.83355955,TJ,CH4,3.0,kg/TJ,395.50067864999994,kg +6db8999a-8bd0-3ab4-98e7-2378fb9d0ae2,SESCO,II.1.1,Chaco,AR-H,annual,2018,naphtha combustion consumption by to the public,131.83355955,TJ,N2O,0.6,kg/TJ,79.10013572999999,kg +48e21a04-b8f5-3814-ad83-b2e6b177a995,SESCO,II.1.1,Corrientes,AR-W,annual,2018,naphtha combustion consumption by to the public,2.28718875,TJ,CO2,73300.0,kg/TJ,167650.935375,kg +e0c5a085-32de-3bbe-9ba6-29f42c6a49bd,SESCO,II.1.1,Corrientes,AR-W,annual,2018,naphtha combustion consumption by to the public,2.28718875,TJ,CH4,3.0,kg/TJ,6.861566249999999,kg +103916d6-e7bb-3416-b444-0e15b7b3b752,SESCO,II.1.1,Corrientes,AR-W,annual,2018,naphtha combustion consumption by to the public,2.28718875,TJ,N2O,0.6,kg/TJ,1.37231325,kg +0fa2cfc1-5439-323e-9c6e-21e6cb6c5051,SESCO,II.1.1,Córdoba,AR-X,annual,2018,naphtha combustion consumption by to the public,546.0586900999999,TJ,CO2,73300.0,kg/TJ,40026101.98432999,kg +f266ecf3-5d77-325b-83d3-507cd0b59be9,SESCO,II.1.1,Córdoba,AR-X,annual,2018,naphtha combustion consumption by to the public,546.0586900999999,TJ,CH4,3.0,kg/TJ,1638.1760702999998,kg +39104602-918b-3542-9cf8-67a23aa2021c,SESCO,II.1.1,Córdoba,AR-X,annual,2018,naphtha combustion consumption by to the public,546.0586900999999,TJ,N2O,0.6,kg/TJ,327.63521405999995,kg +da7a16e6-735a-3dd7-b0d0-7d5f4c654b8b,SESCO,II.1.1,Mendoza,AR-M,annual,2018,naphtha combustion consumption by to the public,336.39972135,TJ,CO2,73300.0,kg/TJ,24658099.574954998,kg +b89f444f-7d4d-3cc8-82b3-147997902dac,SESCO,II.1.1,Mendoza,AR-M,annual,2018,naphtha combustion consumption by to the public,336.39972135,TJ,CH4,3.0,kg/TJ,1009.19916405,kg +2b15ad55-58ce-3633-ab3e-7a0606e28015,SESCO,II.1.1,Mendoza,AR-M,annual,2018,naphtha combustion consumption by to the public,336.39972135,TJ,N2O,0.6,kg/TJ,201.83983281,kg +dc7b5dd1-4702-3046-98b9-5cd681e9d3d1,SESCO,II.1.1,Misiones,AR-N,annual,2018,naphtha combustion consumption by to the public,0.36595019999999995,TJ,CO2,73300.0,kg/TJ,26824.149659999995,kg +b8e61c96-04bd-3a0e-8e76-2a2e10710d21,SESCO,II.1.1,Misiones,AR-N,annual,2018,naphtha combustion consumption by to the public,0.36595019999999995,TJ,CH4,3.0,kg/TJ,1.0978506,kg +ad3cc1be-1eb8-3659-a2da-d75a92dc5384,SESCO,II.1.1,Misiones,AR-N,annual,2018,naphtha combustion consumption by to the public,0.36595019999999995,TJ,N2O,0.6,kg/TJ,0.21957011999999995,kg +19ea4b1d-3cc2-3a8c-a79a-ed22abd5ec50,SESCO,II.1.1,San Juan,AR-J,annual,2018,naphtha combustion consumption by to the public,1.5857842,TJ,CO2,73300.0,kg/TJ,116237.98186,kg +3d14d20a-d37c-3127-ba42-444c2917eae5,SESCO,II.1.1,San Juan,AR-J,annual,2018,naphtha combustion consumption by to the public,1.5857842,TJ,CH4,3.0,kg/TJ,4.7573526,kg +08c9c443-4ef4-338d-8d3e-391282f95021,SESCO,II.1.1,San Juan,AR-J,annual,2018,naphtha combustion consumption by to the public,1.5857842,TJ,N2O,0.6,kg/TJ,0.95147052,kg +61f5f3f2-bfed-3d23-a5f1-2d0eca50f109,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,naphtha combustion consumption by to the public,456.40089109999997,TJ,CO2,73300.0,kg/TJ,33454185.317629997,kg +38779756-dff7-368b-bb1b-1126e57f83aa,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,naphtha combustion consumption by to the public,456.40089109999997,TJ,CH4,3.0,kg/TJ,1369.2026732999998,kg +4f3fc553-c0f1-38fa-a8c0-dc091394528b,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,naphtha combustion consumption by to the public,456.40089109999997,TJ,N2O,0.6,kg/TJ,273.84053465999995,kg +81de1e72-e46e-33b8-a650-4528675bf7c7,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2018,naphtha combustion consumption by to the public,0.48793359999999997,TJ,CO2,73300.0,kg/TJ,35765.53288,kg +23280704-bd36-30f8-b5a8-14247676f9ae,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2018,naphtha combustion consumption by to the public,0.48793359999999997,TJ,CH4,3.0,kg/TJ,1.4638008,kg +3db9c5a2-5cb6-370a-9bbb-8989afc08ca1,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2018,naphtha combustion consumption by to the public,0.48793359999999997,TJ,N2O,0.6,kg/TJ,0.29276016,kg +9315f778-305a-3e9f-b2dd-4229ae95606f,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,naphtha combustion consumption by to the public,141.25677719999996,TJ,CO2,73300.0,kg/TJ,10354121.768759998,kg +ccdd6335-84d7-32d9-8e13-0c4d93e60bb7,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,naphtha combustion consumption by to the public,141.25677719999996,TJ,CH4,3.0,kg/TJ,423.77033159999985,kg +1af613eb-d385-31bb-b1a7-6d54989b1a12,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,naphtha combustion consumption by to the public,141.25677719999996,TJ,N2O,0.6,kg/TJ,84.75406631999998,kg +52a9c662-e767-3392-97d2-a2aa2236964f,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,naphtha combustion consumption by to the public,16.68122995,TJ,CO2,73300.0,kg/TJ,1222734.155335,kg +f6db2077-0733-351d-9202-af3d65433069,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,naphtha combustion consumption by to the public,16.68122995,TJ,CH4,3.0,kg/TJ,50.04368984999999,kg +ae682490-a516-3672-a036-b37108a3b3f8,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,naphtha combustion consumption by to the public,16.68122995,TJ,N2O,0.6,kg/TJ,10.008737969999999,kg +50e92ebe-5e79-3747-b36b-60bfd5074234,SESCO,II.1.1,Chaco,AR-H,annual,2018,naphtha combustion consumption by to the public,9.575696899999999,TJ,CO2,73300.0,kg/TJ,701898.5827699999,kg +6d979c2b-8325-35dd-b069-1ac9f1e78ba4,SESCO,II.1.1,Chaco,AR-H,annual,2018,naphtha combustion consumption by to the public,9.575696899999999,TJ,CH4,3.0,kg/TJ,28.727090699999998,kg +8d7ec489-8ba7-377d-9370-f9e307e691e5,SESCO,II.1.1,Chaco,AR-H,annual,2018,naphtha combustion consumption by to the public,9.575696899999999,TJ,N2O,0.6,kg/TJ,5.745418139999999,kg +ce298aca-422d-3bb3-9809-f1b74822fbf1,SESCO,II.1.1,Corrientes,AR-W,annual,2018,naphtha combustion consumption by to the public,1.8602468499999998,TJ,CO2,73300.0,kg/TJ,136356.094105,kg +ad39a18a-1baa-368c-9e4e-79beaa335cf1,SESCO,II.1.1,Corrientes,AR-W,annual,2018,naphtha combustion consumption by to the public,1.8602468499999998,TJ,CH4,3.0,kg/TJ,5.58074055,kg +c4aebfaf-7809-360b-a672-425e9969ad46,SESCO,II.1.1,Corrientes,AR-W,annual,2018,naphtha combustion consumption by to the public,1.8602468499999998,TJ,N2O,0.6,kg/TJ,1.11614811,kg +27a80bea-ff14-3c7d-bd03-ee7d068fb8f6,SESCO,II.1.1,Córdoba,AR-X,annual,2018,naphtha combustion consumption by to the public,73.3730151,TJ,CO2,73300.0,kg/TJ,5378242.00683,kg +a8815048-d055-3edf-9ef6-4fe1b12c17f9,SESCO,II.1.1,Córdoba,AR-X,annual,2018,naphtha combustion consumption by to the public,73.3730151,TJ,CH4,3.0,kg/TJ,220.1190453,kg +c10493c2-9fe4-329a-9a1c-505642dc9b4a,SESCO,II.1.1,Córdoba,AR-X,annual,2018,naphtha combustion consumption by to the public,73.3730151,TJ,N2O,0.6,kg/TJ,44.02380906,kg +f64a48a8-2517-37cd-924b-c8bfff8b38bc,SESCO,II.1.1,Mendoza,AR-M,annual,2018,naphtha combustion consumption by to the public,33.60642669999999,TJ,CO2,73300.0,kg/TJ,2463351.0771099995,kg +a7602814-2deb-34c4-81b1-51fb16ac7b68,SESCO,II.1.1,Mendoza,AR-M,annual,2018,naphtha combustion consumption by to the public,33.60642669999999,TJ,CH4,3.0,kg/TJ,100.81928009999999,kg +af3253d6-8569-3e5b-ae4b-d90ac8b3628a,SESCO,II.1.1,Mendoza,AR-M,annual,2018,naphtha combustion consumption by to the public,33.60642669999999,TJ,N2O,0.6,kg/TJ,20.163856019999994,kg +a202ab0c-b3fc-3ef3-9b2e-e3006c4d43bd,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,naphtha combustion consumption by to the public,42.8161734,TJ,CO2,73300.0,kg/TJ,3138425.5102199996,kg +c46b4b97-dda6-3996-ba71-636f6f4022aa,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,naphtha combustion consumption by to the public,42.8161734,TJ,CH4,3.0,kg/TJ,128.4485202,kg +6aea5d62-694b-354f-b0e8-eb5cbbc94e0b,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,naphtha combustion consumption by to the public,42.8161734,TJ,N2O,0.6,kg/TJ,25.68970404,kg +9e05dc59-b95d-383f-bf95-f43f8933d208,SESCO,II.5.1,Buenos Aires,AR-B,annual,2018,naphtha combustion consumption by agriculture machines,11.9543732,TJ,CO2,73300.0,kg/TJ,876255.5555599999,kg +f85bd251-d443-3f30-9c23-7b1b8abc6eb5,SESCO,II.5.1,Buenos Aires,AR-B,annual,2018,naphtha combustion consumption by agriculture machines,11.9543732,TJ,CH4,3.0,kg/TJ,35.8631196,kg +30daec0b-aabd-32a9-94ab-72e5e94ce880,SESCO,II.5.1,Buenos Aires,AR-B,annual,2018,naphtha combustion consumption by agriculture machines,11.9543732,TJ,N2O,0.6,kg/TJ,7.1726239199999995,kg +3b0bf217-fbe7-367e-bbd1-085040314af2,SESCO,II.5.1,Córdoba,AR-X,annual,2018,naphtha combustion consumption by agriculture machines,1.7992551499999998,TJ,CO2,73300.0,kg/TJ,131885.402495,kg +d526766d-d343-37ec-8ffb-b65f307ec262,SESCO,II.5.1,Córdoba,AR-X,annual,2018,naphtha combustion consumption by agriculture machines,1.7992551499999998,TJ,CH4,3.0,kg/TJ,5.39776545,kg +d1154b6b-e55a-317b-bc5a-3f29d73cd613,SESCO,II.5.1,Córdoba,AR-X,annual,2018,naphtha combustion consumption by agriculture machines,1.7992551499999998,TJ,N2O,0.6,kg/TJ,1.0795530899999999,kg +91fe37b5-40e4-3f5e-8250-66c30b2fdba4,SESCO,II.5.1,Santa Fe,AR-S,annual,2018,naphtha combustion consumption by agriculture machines,13.87561175,TJ,CO2,73300.0,kg/TJ,1017082.3412749999,kg +1a5f7d46-1a2f-36e9-9685-b82e0b821c31,SESCO,II.5.1,Santa Fe,AR-S,annual,2018,naphtha combustion consumption by agriculture machines,13.87561175,TJ,CH4,3.0,kg/TJ,41.62683525,kg +39ff790b-3512-321a-bad7-6dce24652af1,SESCO,II.5.1,Santa Fe,AR-S,annual,2018,naphtha combustion consumption by agriculture machines,13.87561175,TJ,N2O,0.6,kg/TJ,8.325367049999999,kg +b0af51c6-2240-3f5f-a244-68741ff3941c,SESCO,II.5.1,Tucuman,AR-T,annual,2018,naphtha combustion consumption by agriculture machines,10.612555799999999,TJ,CO2,73300.0,kg/TJ,777900.34014,kg +6124dd91-8139-3e10-8da0-80e77369daac,SESCO,II.5.1,Tucuman,AR-T,annual,2018,naphtha combustion consumption by agriculture machines,10.612555799999999,TJ,CH4,3.0,kg/TJ,31.837667399999997,kg +4a0d2542-61eb-3555-bbe1-29ba86c2e60d,SESCO,II.5.1,Tucuman,AR-T,annual,2018,naphtha combustion consumption by agriculture machines,10.612555799999999,TJ,N2O,0.6,kg/TJ,6.36753348,kg +dfdc3d0a-8df4-3f69-ba63-a2e08ccaf9df,SESCO,II.5.1,Buenos Aires,AR-B,annual,2018,naphtha combustion consumption by agriculture machines,2.40917215,TJ,CO2,73300.0,kg/TJ,176592.318595,kg +b4c3338d-8945-30d7-aa6c-365b98323f1e,SESCO,II.5.1,Buenos Aires,AR-B,annual,2018,naphtha combustion consumption by agriculture machines,2.40917215,TJ,CH4,3.0,kg/TJ,7.2275164499999995,kg +37e7f574-6c26-3699-8eea-570d7283706c,SESCO,II.5.1,Buenos Aires,AR-B,annual,2018,naphtha combustion consumption by agriculture machines,2.40917215,TJ,N2O,0.6,kg/TJ,1.4455032899999998,kg +11efb2ad-21dd-3787-987a-7b2527a78e18,SESCO,II.5.1,Córdoba,AR-X,annual,2018,naphtha combustion consumption by agriculture machines,0.8538838,TJ,CO2,73300.0,kg/TJ,62589.682539999994,kg +99360053-acb0-30a4-aab7-c4fa8b2433dd,SESCO,II.5.1,Córdoba,AR-X,annual,2018,naphtha combustion consumption by agriculture machines,0.8538838,TJ,CH4,3.0,kg/TJ,2.5616513999999997,kg +fd457982-ebf2-3296-8c25-969e81442882,SESCO,II.5.1,Córdoba,AR-X,annual,2018,naphtha combustion consumption by agriculture machines,0.8538838,TJ,N2O,0.6,kg/TJ,0.5123302799999999,kg +d51bdeb1-c6ab-3772-8b18-4cbb8fd631c4,SESCO,II.5.1,Santa Fe,AR-S,annual,2018,naphtha combustion consumption by agriculture machines,4.513385799999999,TJ,CO2,73300.0,kg/TJ,330831.17913999996,kg +76e38219-cba4-370b-9821-ccf9ff8adfd1,SESCO,II.5.1,Santa Fe,AR-S,annual,2018,naphtha combustion consumption by agriculture machines,4.513385799999999,TJ,CH4,3.0,kg/TJ,13.540157399999998,kg +bdecdff5-ee66-3821-b377-283a1c874fd3,SESCO,II.5.1,Santa Fe,AR-S,annual,2018,naphtha combustion consumption by agriculture machines,4.513385799999999,TJ,N2O,0.6,kg/TJ,2.7080314799999994,kg +b93276cd-c4d3-30ac-8b38-9f6730fc0f37,SESCO,II.5.1,Tucuman,AR-T,annual,2018,naphtha combustion consumption by agriculture machines,2.2566928999999996,TJ,CO2,73300.0,kg/TJ,165415.58956999998,kg +eceec560-2adf-3342-b645-475b66708c12,SESCO,II.5.1,Tucuman,AR-T,annual,2018,naphtha combustion consumption by agriculture machines,2.2566928999999996,TJ,CH4,3.0,kg/TJ,6.770078699999999,kg +1502a146-121b-3678-89cb-99815cfafa70,SESCO,II.5.1,Tucuman,AR-T,annual,2018,naphtha combustion consumption by agriculture machines,2.2566928999999996,TJ,N2O,0.6,kg/TJ,1.3540157399999997,kg +aa2ac629-ce32-3d22-bfbc-3afd135253de,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,naphtha combustion consumption by to the public,2607.79162105,TJ,CO2,73300.0,kg/TJ,191151125.822965,kg +92507348-9df4-3185-8b3a-5b074fb05258,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,naphtha combustion consumption by to the public,2607.79162105,TJ,CH4,3.0,kg/TJ,7823.374863149999,kg +21684d9b-c331-3232-9fe1-e4d63b6bf662,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,naphtha combustion consumption by to the public,2607.79162105,TJ,N2O,0.6,kg/TJ,1564.6749726299997,kg +650a3966-87e7-324a-90a3-0b9d563bf4a1,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,naphtha combustion consumption by to the public,812.86688175,TJ,CO2,73300.0,kg/TJ,59583142.432275,kg +f012eae6-0bb4-3379-a392-8fde4033467d,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,naphtha combustion consumption by to the public,812.86688175,TJ,CH4,3.0,kg/TJ,2438.6006452499996,kg +a3a21802-0792-3ace-bfbe-4420de42e495,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,naphtha combustion consumption by to the public,812.86688175,TJ,N2O,0.6,kg/TJ,487.72012904999997,kg +c2fc4052-2bf9-39ff-9128-81c6445a32c8,SESCO,II.1.1,Catamarca,AR-K,annual,2018,naphtha combustion consumption by to the public,116.46365114999999,TJ,CO2,73300.0,kg/TJ,8536785.629294999,kg +15a0de82-fdff-3041-b740-fd84688c10c6,SESCO,II.1.1,Catamarca,AR-K,annual,2018,naphtha combustion consumption by to the public,116.46365114999999,TJ,CH4,3.0,kg/TJ,349.39095345,kg +8069d086-b588-311a-9ab9-4ef61a33131c,SESCO,II.1.1,Catamarca,AR-K,annual,2018,naphtha combustion consumption by to the public,116.46365114999999,TJ,N2O,0.6,kg/TJ,69.87819069,kg +d311bb03-6465-3247-a3af-05ba1ae8df4e,SESCO,II.1.1,Chaco,AR-H,annual,2018,naphtha combustion consumption by to the public,84.07705845,TJ,CO2,73300.0,kg/TJ,6162848.384385,kg +c165e18d-e400-327b-bb2c-2730f3a290af,SESCO,II.1.1,Chaco,AR-H,annual,2018,naphtha combustion consumption by to the public,84.07705845,TJ,CH4,3.0,kg/TJ,252.23117535,kg +74bba476-0799-3e3c-a6b7-7ecc09f9075a,SESCO,II.1.1,Chaco,AR-H,annual,2018,naphtha combustion consumption by to the public,84.07705845,TJ,N2O,0.6,kg/TJ,50.44623506999999,kg +083566f1-a710-3e58-913d-f0071669a214,SESCO,II.1.1,Chubut,AR-U,annual,2018,naphtha combustion consumption by to the public,80.66152325,TJ,CO2,73300.0,kg/TJ,5912489.654225,kg +5c476cd5-9eb8-395b-b268-bf148e002d75,SESCO,II.1.1,Chubut,AR-U,annual,2018,naphtha combustion consumption by to the public,80.66152325,TJ,CH4,3.0,kg/TJ,241.98456975,kg +e561ba0f-2630-32b1-9ddf-7ec2416a11a4,SESCO,II.1.1,Chubut,AR-U,annual,2018,naphtha combustion consumption by to the public,80.66152325,TJ,N2O,0.6,kg/TJ,48.39691395,kg +588c7350-a772-328f-a7cf-aa875d4423a5,SESCO,II.1.1,Corrientes,AR-W,annual,2018,naphtha combustion consumption by to the public,153.18065454999999,TJ,CO2,73300.0,kg/TJ,11228141.978515,kg +b56cd667-640f-3c78-808d-633616512b10,SESCO,II.1.1,Corrientes,AR-W,annual,2018,naphtha combustion consumption by to the public,153.18065454999999,TJ,CH4,3.0,kg/TJ,459.54196364999996,kg +3bfef6b7-7a4c-316a-9498-f4dfc9bf7b5c,SESCO,II.1.1,Corrientes,AR-W,annual,2018,naphtha combustion consumption by to the public,153.18065454999999,TJ,N2O,0.6,kg/TJ,91.90839272999999,kg +01e1a2a6-228f-3d1b-af3f-f07fd899faf2,SESCO,II.1.1,Córdoba,AR-X,annual,2018,naphtha combustion consumption by to the public,754.5893123999999,TJ,CO2,73300.0,kg/TJ,55311396.598919995,kg +bc85566e-e286-3388-aafd-a708936bc77c,SESCO,II.1.1,Córdoba,AR-X,annual,2018,naphtha combustion consumption by to the public,754.5893123999999,TJ,CH4,3.0,kg/TJ,2263.7679372,kg +7ab482f4-12f7-3e1d-a158-00b2627bc393,SESCO,II.1.1,Córdoba,AR-X,annual,2018,naphtha combustion consumption by to the public,754.5893123999999,TJ,N2O,0.6,kg/TJ,452.75358743999993,kg +f6d19576-315a-3dba-b3c9-6bd74c2edea5,SESCO,II.1.1,Entre Rios,AR-E,annual,2018,naphtha combustion consumption by to the public,316.0589893999999,TJ,CO2,73300.0,kg/TJ,23167123.923019994,kg +f1d60a20-dd35-3015-aa1d-324f0ddb1873,SESCO,II.1.1,Entre Rios,AR-E,annual,2018,naphtha combustion consumption by to the public,316.0589893999999,TJ,CH4,3.0,kg/TJ,948.1769681999997,kg +cf1616e2-053e-3da6-9639-0158f82a43b4,SESCO,II.1.1,Entre Rios,AR-E,annual,2018,naphtha combustion consumption by to the public,316.0589893999999,TJ,N2O,0.6,kg/TJ,189.63539363999993,kg +0369fce1-783b-3997-84b2-1aa9ed88a17c,SESCO,II.1.1,Formosa,AR-P,annual,2018,naphtha combustion consumption by to the public,167.14775385,TJ,CO2,73300.0,kg/TJ,12251930.357205,kg +0680a10b-0166-3ca3-943a-501cde40b272,SESCO,II.1.1,Formosa,AR-P,annual,2018,naphtha combustion consumption by to the public,167.14775385,TJ,CH4,3.0,kg/TJ,501.44326155,kg +89b2e853-223d-3549-a864-d2f813c8bc7e,SESCO,II.1.1,Formosa,AR-P,annual,2018,naphtha combustion consumption by to the public,167.14775385,TJ,N2O,0.6,kg/TJ,100.28865230999999,kg +bd2649a6-b23f-3484-b877-973f9cd2ce0b,SESCO,II.1.1,Jujuy,AR-Y,annual,2018,naphtha combustion consumption by to the public,45.89625425,TJ,CO2,73300.0,kg/TJ,3364195.436525,kg +827beb42-7ec1-32ff-a7d5-9d148236f879,SESCO,II.1.1,Jujuy,AR-Y,annual,2018,naphtha combustion consumption by to the public,45.89625425,TJ,CH4,3.0,kg/TJ,137.68876275,kg +cc0ec126-191c-35b5-993e-1e5908694884,SESCO,II.1.1,Jujuy,AR-Y,annual,2018,naphtha combustion consumption by to the public,45.89625425,TJ,N2O,0.6,kg/TJ,27.537752549999997,kg +c78839f7-5277-314b-a9df-0b21c6c3738c,SESCO,II.1.1,La Pampa,AR-L,annual,2018,naphtha combustion consumption by to the public,40.58997634999999,TJ,CO2,73300.0,kg/TJ,2975245.2664549993,kg +5fd7e36e-fec6-333a-85d7-562b0e74c4f8,SESCO,II.1.1,La Pampa,AR-L,annual,2018,naphtha combustion consumption by to the public,40.58997634999999,TJ,CH4,3.0,kg/TJ,121.76992904999997,kg +92232a02-29ca-342a-a0d5-5766f8a8be6d,SESCO,II.1.1,La Pampa,AR-L,annual,2018,naphtha combustion consumption by to the public,40.58997634999999,TJ,N2O,0.6,kg/TJ,24.353985809999994,kg +8e7c8248-6c50-3a1f-9660-9374a9158f4c,SESCO,II.1.1,La Rioja,AR-F,annual,2018,naphtha combustion consumption by to the public,32.53907195,TJ,CO2,73300.0,kg/TJ,2385113.973935,kg +a3086b8c-782f-30ef-b2f8-18823044a6cf,SESCO,II.1.1,La Rioja,AR-F,annual,2018,naphtha combustion consumption by to the public,32.53907195,TJ,CH4,3.0,kg/TJ,97.61721585000001,kg +00f77270-5eac-37c1-b0a8-770f9cc41918,SESCO,II.1.1,La Rioja,AR-F,annual,2018,naphtha combustion consumption by to the public,32.53907195,TJ,N2O,0.6,kg/TJ,19.52344317,kg +8582d335-16bd-3106-bf19-b09de11cf3b7,SESCO,II.1.1,Mendoza,AR-M,annual,2018,naphtha combustion consumption by to the public,105.11919495,TJ,CO2,73300.0,kg/TJ,7705236.989835,kg +5a9e60f9-5c4e-332e-abd5-6a36a973e38d,SESCO,II.1.1,Mendoza,AR-M,annual,2018,naphtha combustion consumption by to the public,105.11919495,TJ,CH4,3.0,kg/TJ,315.35758484999997,kg +c7c8445e-d643-384f-9471-fbae2e41e58b,SESCO,II.1.1,Mendoza,AR-M,annual,2018,naphtha combustion consumption by to the public,105.11919495,TJ,N2O,0.6,kg/TJ,63.07151696999999,kg +f81dedfc-175a-3ec2-8a8e-c64fa595ea1c,SESCO,II.1.1,Misiones,AR-N,annual,2018,naphtha combustion consumption by to the public,203.37682364999998,TJ,CO2,73300.0,kg/TJ,14907521.173545,kg +113d42d2-f2a2-3414-944e-c511243d2b40,SESCO,II.1.1,Misiones,AR-N,annual,2018,naphtha combustion consumption by to the public,203.37682364999998,TJ,CH4,3.0,kg/TJ,610.1304709499999,kg +6a84839b-6180-30bc-a2c2-daabf257b6bc,SESCO,II.1.1,Misiones,AR-N,annual,2018,naphtha combustion consumption by to the public,203.37682364999998,TJ,N2O,0.6,kg/TJ,122.02609418999998,kg +512ed5e3-dd8b-3990-9bbb-ab5865320bf8,SESCO,II.1.1,Neuquén,AR-Q,annual,2018,naphtha combustion consumption by to the public,93.83573044999999,TJ,CO2,73300.0,kg/TJ,6878159.041984999,kg +6ba7744d-25e0-38f6-9fd4-cb83fd1ee00a,SESCO,II.1.1,Neuquén,AR-Q,annual,2018,naphtha combustion consumption by to the public,93.83573044999999,TJ,CH4,3.0,kg/TJ,281.50719134999997,kg +56207da7-3396-3134-af1f-cfe8885bc3fe,SESCO,II.1.1,Neuquén,AR-Q,annual,2018,naphtha combustion consumption by to the public,93.83573044999999,TJ,N2O,0.6,kg/TJ,56.30143826999999,kg +972082bc-0dc9-35f0-b284-d6587e093739,SESCO,II.1.1,Rio Negro,AR-R,annual,2018,naphtha combustion consumption by to the public,168.00163765,TJ,CO2,73300.0,kg/TJ,12314520.039745,kg +60713f10-0ee0-3678-a673-7501ecb70959,SESCO,II.1.1,Rio Negro,AR-R,annual,2018,naphtha combustion consumption by to the public,168.00163765,TJ,CH4,3.0,kg/TJ,504.00491294999995,kg +866621fe-f274-35f6-b7c7-728e3f63ab02,SESCO,II.1.1,Rio Negro,AR-R,annual,2018,naphtha combustion consumption by to the public,168.00163765,TJ,N2O,0.6,kg/TJ,100.80098258999999,kg +60de019d-6031-3cac-9e38-27cb6824b782,SESCO,II.1.1,Salta,AR-A,annual,2018,naphtha combustion consumption by to the public,31.105766999999997,TJ,CO2,73300.0,kg/TJ,2280052.7210999997,kg +a1ecbf3f-f92d-30f7-af9a-8ebd4eeb49ce,SESCO,II.1.1,Salta,AR-A,annual,2018,naphtha combustion consumption by to the public,31.105766999999997,TJ,CH4,3.0,kg/TJ,93.31730099999999,kg +61b1dddc-94f6-3990-a7ad-c69da2b30652,SESCO,II.1.1,Salta,AR-A,annual,2018,naphtha combustion consumption by to the public,31.105766999999997,TJ,N2O,0.6,kg/TJ,18.663460199999996,kg +d848cd9a-8031-3397-b00a-278cdb557e86,SESCO,II.1.1,San Juan,AR-J,annual,2018,naphtha combustion consumption by to the public,63.94979744999999,TJ,CO2,73300.0,kg/TJ,4687520.153084999,kg +49d2fa48-c478-3971-bd1d-bd4365e93b8d,SESCO,II.1.1,San Juan,AR-J,annual,2018,naphtha combustion consumption by to the public,63.94979744999999,TJ,CH4,3.0,kg/TJ,191.84939234999996,kg +1cf0e7d7-9844-3c1a-a940-20e08a9a5e08,SESCO,II.1.1,San Juan,AR-J,annual,2018,naphtha combustion consumption by to the public,63.94979744999999,TJ,N2O,0.6,kg/TJ,38.369878469999996,kg +303d74d6-ac64-397f-8748-a4e406ccc526,SESCO,II.1.1,San Luis,AR-D,annual,2018,naphtha combustion consumption by to the public,155.31536405,TJ,CO2,73300.0,kg/TJ,11384616.184865,kg +e7813992-67eb-3491-b919-c3eaabdc1083,SESCO,II.1.1,San Luis,AR-D,annual,2018,naphtha combustion consumption by to the public,155.31536405,TJ,CH4,3.0,kg/TJ,465.94609215,kg +d0583891-763c-317e-b81e-2d4f1c2c79fc,SESCO,II.1.1,San Luis,AR-D,annual,2018,naphtha combustion consumption by to the public,155.31536405,TJ,N2O,0.6,kg/TJ,93.18921843,kg +cd91a4f3-ddf2-325f-8307-f7c1d6dad152,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,naphtha combustion consumption by to the public,632.2704580499999,TJ,CO2,73300.0,kg/TJ,46345424.575064994,kg +973fb355-0b7c-3ee9-9f1d-1a089d24387e,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,naphtha combustion consumption by to the public,632.2704580499999,TJ,CH4,3.0,kg/TJ,1896.8113741499997,kg +4e3ec269-2a9f-35f5-b718-7551ba9efde8,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,naphtha combustion consumption by to the public,632.2704580499999,TJ,N2O,0.6,kg/TJ,379.36227482999993,kg +308edcfa-7173-332b-aae1-fd860fab2a1c,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2018,naphtha combustion consumption by to the public,84.41251279999999,TJ,CO2,73300.0,kg/TJ,6187437.188239999,kg +ed8b7564-52e2-3d2d-a279-69046bd1bfb6,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2018,naphtha combustion consumption by to the public,84.41251279999999,TJ,CH4,3.0,kg/TJ,253.23753839999995,kg +006ba908-6979-3657-b73d-059028d26686,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2018,naphtha combustion consumption by to the public,84.41251279999999,TJ,N2O,0.6,kg/TJ,50.64750767999999,kg +fd05c91d-0b78-3922-843d-732f43a1153e,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2018,naphtha combustion consumption by to the public,39.004192149999994,TJ,CO2,73300.0,kg/TJ,2859007.2845949996,kg +ba5588c7-a5b0-3d32-bdc3-782d05ed2a31,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2018,naphtha combustion consumption by to the public,39.004192149999994,TJ,CH4,3.0,kg/TJ,117.01257644999998,kg +95e654bf-a340-3d75-b5be-4a1d4d931990,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2018,naphtha combustion consumption by to the public,39.004192149999994,TJ,N2O,0.6,kg/TJ,23.402515289999997,kg +7a8dbb75-c121-39b9-ab46-cf9a0b10f7fc,SESCO,II.1.1,Tucuman,AR-T,annual,2018,naphtha combustion consumption by to the public,11.252968649999998,TJ,CO2,73300.0,kg/TJ,824842.6020449998,kg +e5c3f240-6568-3ee7-ae4e-0f8dda025e10,SESCO,II.1.1,Tucuman,AR-T,annual,2018,naphtha combustion consumption by to the public,11.252968649999998,TJ,CH4,3.0,kg/TJ,33.75890594999999,kg +2e743b13-39d2-378a-9a97-5d1ac5467749,SESCO,II.1.1,Tucuman,AR-T,annual,2018,naphtha combustion consumption by to the public,11.252968649999998,TJ,N2O,0.6,kg/TJ,6.751781189999998,kg +97428e38-af82-3b04-af96-26eb58e407b4,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,naphtha combustion consumption by to the public,786.70144245,TJ,CO2,73300.0,kg/TJ,57665215.731584996,kg +2b84d47d-a17d-37ca-9ac9-69ef629a8ae3,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,naphtha combustion consumption by to the public,786.70144245,TJ,CH4,3.0,kg/TJ,2360.10432735,kg +88f327ff-b951-3b12-8223-27de73a5fead,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,naphtha combustion consumption by to the public,786.70144245,TJ,N2O,0.6,kg/TJ,472.02086546999993,kg +e9419f39-a416-367d-a9e8-02c3e2dee484,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,naphtha combustion consumption by to the public,338.25996819999995,TJ,CO2,73300.0,kg/TJ,24794455.669059996,kg +0cf93fb9-8456-3f61-8a7b-84f11838dfb7,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,naphtha combustion consumption by to the public,338.25996819999995,TJ,CH4,3.0,kg/TJ,1014.7799045999998,kg +5659f0c9-1447-3a41-bab2-3ffe9595f4b9,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,naphtha combustion consumption by to the public,338.25996819999995,TJ,N2O,0.6,kg/TJ,202.95598091999997,kg +f31f446b-753d-3583-bd76-6af4e8287ad0,SESCO,II.1.1,Catamarca,AR-K,annual,2018,naphtha combustion consumption by to the public,35.10072335,TJ,CO2,73300.0,kg/TJ,2572883.021555,kg +be2e6583-4bd1-3c53-bede-e9b47d15f33a,SESCO,II.1.1,Catamarca,AR-K,annual,2018,naphtha combustion consumption by to the public,35.10072335,TJ,CH4,3.0,kg/TJ,105.30217005,kg +b2b86af9-1a24-3ae4-a262-3b567ac5c0b6,SESCO,II.1.1,Catamarca,AR-K,annual,2018,naphtha combustion consumption by to the public,35.10072335,TJ,N2O,0.6,kg/TJ,21.06043401,kg +ca96c435-90dd-3a30-9f0b-88217b85f8f3,SESCO,II.1.1,Chaco,AR-H,annual,2018,naphtha combustion consumption by to the public,18.02304735,TJ,CO2,73300.0,kg/TJ,1321089.3707549998,kg +7900fd46-02c9-33cd-bf44-ea71b244f6f0,SESCO,II.1.1,Chaco,AR-H,annual,2018,naphtha combustion consumption by to the public,18.02304735,TJ,CH4,3.0,kg/TJ,54.069142049999996,kg +7b6b570c-8e21-3e3b-a77e-818f561d961e,SESCO,II.1.1,Chaco,AR-H,annual,2018,naphtha combustion consumption by to the public,18.02304735,TJ,N2O,0.6,kg/TJ,10.81382841,kg +0484cf60-0f9f-395e-a3d7-df313b68ce49,SESCO,II.1.1,Chubut,AR-U,annual,2018,naphtha combustion consumption by to the public,20.828665549999997,TJ,CO2,73300.0,kg/TJ,1526741.1848149998,kg +1ef33af9-c428-3a33-8369-3b4c357b30ac,SESCO,II.1.1,Chubut,AR-U,annual,2018,naphtha combustion consumption by to the public,20.828665549999997,TJ,CH4,3.0,kg/TJ,62.48599664999999,kg +62a67961-2ca6-3f54-8b8d-27fd1ef35c28,SESCO,II.1.1,Chubut,AR-U,annual,2018,naphtha combustion consumption by to the public,20.828665549999997,TJ,N2O,0.6,kg/TJ,12.497199329999997,kg +13a4da99-898f-3cef-80a2-cad99a223fba,SESCO,II.1.1,Corrientes,AR-W,annual,2018,naphtha combustion consumption by to the public,44.401957599999996,TJ,CO2,73300.0,kg/TJ,3254663.4920799998,kg +f9e5e360-f35a-36f9-957a-d79fabb7e5bf,SESCO,II.1.1,Corrientes,AR-W,annual,2018,naphtha combustion consumption by to the public,44.401957599999996,TJ,CH4,3.0,kg/TJ,133.20587279999998,kg +189473e1-e673-351c-a10d-fdbe33b052b0,SESCO,II.1.1,Corrientes,AR-W,annual,2018,naphtha combustion consumption by to the public,44.401957599999996,TJ,N2O,0.6,kg/TJ,26.641174559999996,kg +f025f846-1a54-3d82-aa8e-573392fc834b,SESCO,II.1.1,Córdoba,AR-X,annual,2018,naphtha combustion consumption by to the public,197.03368684999998,TJ,CO2,73300.0,kg/TJ,14442569.246104999,kg +7c73936d-4fe2-3017-9084-08d8d8b27d1d,SESCO,II.1.1,Córdoba,AR-X,annual,2018,naphtha combustion consumption by to the public,197.03368684999998,TJ,CH4,3.0,kg/TJ,591.1010605499999,kg +defb1058-a4c0-333c-ba21-73759ddd70e4,SESCO,II.1.1,Córdoba,AR-X,annual,2018,naphtha combustion consumption by to the public,197.03368684999998,TJ,N2O,0.6,kg/TJ,118.22021210999998,kg +80766efa-b3ed-334f-ae2b-3d2296bb335c,SESCO,II.1.1,Entre Rios,AR-E,annual,2018,naphtha combustion consumption by to the public,97.37324904999998,TJ,CO2,73300.0,kg/TJ,7137459.155364999,kg +eb45c424-c5a0-3f6c-a601-b15b5a3a12c7,SESCO,II.1.1,Entre Rios,AR-E,annual,2018,naphtha combustion consumption by to the public,97.37324904999998,TJ,CH4,3.0,kg/TJ,292.11974714999997,kg +1bc488f2-6e84-344a-bddd-d760e0104e2d,SESCO,II.1.1,Entre Rios,AR-E,annual,2018,naphtha combustion consumption by to the public,97.37324904999998,TJ,N2O,0.6,kg/TJ,58.423949429999986,kg +f97d5e98-124a-35b8-94dc-2183b3b6dc7e,SESCO,II.1.1,Formosa,AR-P,annual,2018,naphtha combustion consumption by to the public,41.62683524999999,TJ,CO2,73300.0,kg/TJ,3051247.0238249996,kg +41048405-2166-3c6b-a017-5503d6529155,SESCO,II.1.1,Formosa,AR-P,annual,2018,naphtha combustion consumption by to the public,41.62683524999999,TJ,CH4,3.0,kg/TJ,124.88050574999997,kg +9e641fa9-d961-341c-83c2-6e2473d06e63,SESCO,II.1.1,Formosa,AR-P,annual,2018,naphtha combustion consumption by to the public,41.62683524999999,TJ,N2O,0.6,kg/TJ,24.976101149999995,kg +5670f20a-68fd-3605-ba1a-cf8b74f33f8f,SESCO,II.1.1,Jujuy,AR-Y,annual,2018,naphtha combustion consumption by to the public,10.6735475,TJ,CO2,73300.0,kg/TJ,782371.03175,kg +938badc5-ad5f-3374-929f-bd09af5045ea,SESCO,II.1.1,Jujuy,AR-Y,annual,2018,naphtha combustion consumption by to the public,10.6735475,TJ,CH4,3.0,kg/TJ,32.0206425,kg +2f483c21-d425-35cc-9541-b6192b2e9c09,SESCO,II.1.1,Jujuy,AR-Y,annual,2018,naphtha combustion consumption by to the public,10.6735475,TJ,N2O,0.6,kg/TJ,6.4041285,kg +4abf71a4-c77b-3e58-a811-c9bec14a43ff,SESCO,II.1.1,La Pampa,AR-L,annual,2018,naphtha combustion consumption by to the public,17.535113749999997,TJ,CO2,73300.0,kg/TJ,1285323.8378749997,kg +76448d6b-f225-3787-96a9-8137a6e6010e,SESCO,II.1.1,La Pampa,AR-L,annual,2018,naphtha combustion consumption by to the public,17.535113749999997,TJ,CH4,3.0,kg/TJ,52.605341249999995,kg +8e58f83e-4649-3df1-96a8-31a6cc060aba,SESCO,II.1.1,La Pampa,AR-L,annual,2018,naphtha combustion consumption by to the public,17.535113749999997,TJ,N2O,0.6,kg/TJ,10.521068249999997,kg +4d4c4574-11ee-3649-9fc2-ffb375427269,SESCO,II.1.1,La Rioja,AR-F,annual,2018,naphtha combustion consumption by to the public,6.953053799999999,TJ,CO2,73300.0,kg/TJ,509658.84354,kg +203d97ee-37fa-3bcb-95db-784ca4d429d7,SESCO,II.1.1,La Rioja,AR-F,annual,2018,naphtha combustion consumption by to the public,6.953053799999999,TJ,CH4,3.0,kg/TJ,20.859161399999998,kg +c70af3b0-546b-388c-a43f-c5313fda93b4,SESCO,II.1.1,La Rioja,AR-F,annual,2018,naphtha combustion consumption by to the public,6.953053799999999,TJ,N2O,0.6,kg/TJ,4.171832279999999,kg +40305c43-72f2-3b12-8633-58e05fa508bd,SESCO,II.1.1,Mendoza,AR-M,annual,2018,naphtha combustion consumption by to the public,41.169397499999995,TJ,CO2,73300.0,kg/TJ,3017716.83675,kg +18071cff-d6e8-3b3b-909b-f7756ec53aad,SESCO,II.1.1,Mendoza,AR-M,annual,2018,naphtha combustion consumption by to the public,41.169397499999995,TJ,CH4,3.0,kg/TJ,123.50819249999998,kg +42536842-b2d8-3d0b-aada-7f42f8a092c4,SESCO,II.1.1,Mendoza,AR-M,annual,2018,naphtha combustion consumption by to the public,41.169397499999995,TJ,N2O,0.6,kg/TJ,24.701638499999998,kg +31931410-864a-3613-826a-11c8586c211c,SESCO,II.1.1,Misiones,AR-N,annual,2018,naphtha combustion consumption by to the public,30.556841699999996,TJ,CO2,73300.0,kg/TJ,2239816.49661,kg +6f5085e2-1800-3edd-ab46-0e9f6eb66fd0,SESCO,II.1.1,Misiones,AR-N,annual,2018,naphtha combustion consumption by to the public,30.556841699999996,TJ,CH4,3.0,kg/TJ,91.67052509999999,kg +d8f202d0-b581-3297-b4ab-513dd826aa7e,SESCO,II.1.1,Misiones,AR-N,annual,2018,naphtha combustion consumption by to the public,30.556841699999996,TJ,N2O,0.6,kg/TJ,18.334105019999996,kg +7a0bb3bb-8798-3915-8b64-76d733ce36c0,SESCO,II.1.1,Neuquén,AR-Q,annual,2018,naphtha combustion consumption by to the public,53.00178729999999,TJ,CO2,73300.0,kg/TJ,3885031.0090899994,kg +9e10bd6b-b88d-343f-b578-cd7235a20e8c,SESCO,II.1.1,Neuquén,AR-Q,annual,2018,naphtha combustion consumption by to the public,53.00178729999999,TJ,CH4,3.0,kg/TJ,159.00536189999997,kg +267b2b51-ab28-33d6-9a18-228f4ce2a996,SESCO,II.1.1,Neuquén,AR-Q,annual,2018,naphtha combustion consumption by to the public,53.00178729999999,TJ,N2O,0.6,kg/TJ,31.801072379999994,kg +edd1f420-24e0-3475-918c-691e3799f71a,SESCO,II.1.1,Rio Negro,AR-R,annual,2018,naphtha combustion consumption by to the public,69.77450479999999,TJ,CO2,73300.0,kg/TJ,5114471.201839999,kg +d3720161-52ce-3980-b8bb-1a74b16a993c,SESCO,II.1.1,Rio Negro,AR-R,annual,2018,naphtha combustion consumption by to the public,69.77450479999999,TJ,CH4,3.0,kg/TJ,209.32351439999997,kg +c6e581da-ed4d-392c-9e1a-2371f22ea51c,SESCO,II.1.1,Rio Negro,AR-R,annual,2018,naphtha combustion consumption by to the public,69.77450479999999,TJ,N2O,0.6,kg/TJ,41.86470287999999,kg +225024a8-9dc1-32f0-98d2-c4e8c84b75b4,SESCO,II.1.1,Salta,AR-A,annual,2018,naphtha combustion consumption by to the public,4.11693975,TJ,CO2,73300.0,kg/TJ,301771.68367500004,kg +028d07a4-b286-34ac-a622-d4820c191300,SESCO,II.1.1,Salta,AR-A,annual,2018,naphtha combustion consumption by to the public,4.11693975,TJ,CH4,3.0,kg/TJ,12.35081925,kg +f271877f-e099-3d65-8d55-c8ccc89a10aa,SESCO,II.1.1,Salta,AR-A,annual,2018,naphtha combustion consumption by to the public,4.11693975,TJ,N2O,0.6,kg/TJ,2.47016385,kg +f031eeee-2cdc-324d-ae06-0ce8d6a75c0a,SESCO,II.1.1,San Juan,AR-J,annual,2018,naphtha combustion consumption by to the public,18.267014149999998,TJ,CO2,73300.0,kg/TJ,1338972.1371949997,kg +6ea03634-74c7-3939-8674-0431c5cea561,SESCO,II.1.1,San Juan,AR-J,annual,2018,naphtha combustion consumption by to the public,18.267014149999998,TJ,CH4,3.0,kg/TJ,54.80104245,kg +64c2c218-5afb-3bca-a27a-1ef5a1576f72,SESCO,II.1.1,San Juan,AR-J,annual,2018,naphtha combustion consumption by to the public,18.267014149999998,TJ,N2O,0.6,kg/TJ,10.960208489999998,kg +fc81cb31-7f0d-3c9a-9e47-63846e5fa6aa,SESCO,II.1.1,San Luis,AR-D,annual,2018,naphtha combustion consumption by to the public,38.485762699999995,TJ,CO2,73300.0,kg/TJ,2821006.4059099997,kg +69c38e19-ba4f-39ef-8e48-6d181f870528,SESCO,II.1.1,San Luis,AR-D,annual,2018,naphtha combustion consumption by to the public,38.485762699999995,TJ,CH4,3.0,kg/TJ,115.45728809999999,kg +f4601121-4d0e-3eb6-a4b0-14ca5d48be22,SESCO,II.1.1,San Luis,AR-D,annual,2018,naphtha combustion consumption by to the public,38.485762699999995,TJ,N2O,0.6,kg/TJ,23.091457619999996,kg +135616a6-8e19-3f93-95a0-195caf262776,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,naphtha combustion consumption by to the public,185.26228874999998,TJ,CO2,73300.0,kg/TJ,13579725.765375,kg +f66639a0-8f19-35f0-aa80-3e5777619c90,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,naphtha combustion consumption by to the public,185.26228874999998,TJ,CH4,3.0,kg/TJ,555.78686625,kg +beb4618f-7c69-32f7-b8a6-498702e2c1a1,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,naphtha combustion consumption by to the public,185.26228874999998,TJ,N2O,0.6,kg/TJ,111.15737324999999,kg +37d06735-7610-3e4f-9661-183e2909e769,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2018,naphtha combustion consumption by to the public,29.093040899999995,TJ,CO2,73300.0,kg/TJ,2132519.89797,kg +be29337d-9f4f-3891-9cbf-daff6c50414e,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2018,naphtha combustion consumption by to the public,29.093040899999995,TJ,CH4,3.0,kg/TJ,87.27912269999999,kg +c95917db-79ce-3a3d-9daf-b95145560326,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2018,naphtha combustion consumption by to the public,29.093040899999995,TJ,N2O,0.6,kg/TJ,17.455824539999995,kg +2f7fb820-b811-36c6-b8fa-b66d3852abaf,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2018,naphtha combustion consumption by to the public,13.692636649999999,TJ,CO2,73300.0,kg/TJ,1003670.266445,kg +f3ba7be8-392a-3bb2-8506-965b23e6e990,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2018,naphtha combustion consumption by to the public,13.692636649999999,TJ,CH4,3.0,kg/TJ,41.07790995,kg +ccaceab0-31bb-3d73-b74a-e3231f7c9c50,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2018,naphtha combustion consumption by to the public,13.692636649999999,TJ,N2O,0.6,kg/TJ,8.215581989999999,kg +1c54ad99-a63c-3700-bf0c-38dc574348e4,SESCO,II.1.1,Tucuman,AR-T,annual,2018,naphtha combustion consumption by to the public,6.282145099999999,TJ,CO2,73300.0,kg/TJ,460481.23582999996,kg +05db074f-e9f3-3e89-a432-e951689b90f9,SESCO,II.1.1,Tucuman,AR-T,annual,2018,naphtha combustion consumption by to the public,6.282145099999999,TJ,CH4,3.0,kg/TJ,18.846435299999996,kg +052e3490-7569-3d2b-b1db-da92c83fe8b9,SESCO,II.1.1,Tucuman,AR-T,annual,2018,naphtha combustion consumption by to the public,6.282145099999999,TJ,N2O,0.6,kg/TJ,3.7692870599999995,kg +89c76aa8-7c73-3eca-a864-655106558edc,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,naphtha combustion consumption by freight transport,2.2566928999999996,TJ,CO2,73300.0,kg/TJ,165415.58956999998,kg +8980967e-7007-327b-abf1-3649c3e0936b,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,naphtha combustion consumption by freight transport,2.2566928999999996,TJ,CH4,3.0,kg/TJ,6.770078699999999,kg +c8d17e56-50cb-35a2-aca2-135032f96277,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,naphtha combustion consumption by freight transport,2.2566928999999996,TJ,N2O,0.6,kg/TJ,1.3540157399999997,kg +677a4174-11f9-3869-9b60-c9634245d405,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,naphtha combustion consumption by freight transport,0.9148754999999998,TJ,CO2,73300.0,kg/TJ,67060.37414999999,kg +d7959aa3-6374-3deb-9f9e-18f3c894c236,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,naphtha combustion consumption by freight transport,0.9148754999999998,TJ,CH4,3.0,kg/TJ,2.7446264999999994,kg +a9c41800-fa6c-317a-9ca4-4be80c658afd,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,naphtha combustion consumption by freight transport,0.9148754999999998,TJ,N2O,0.6,kg/TJ,0.5489252999999998,kg +3d40f8e8-6775-3808-a1c2-2493e180bd4b,SESCO,II.1.1,Córdoba,AR-X,annual,2018,naphtha combustion consumption by freight transport,0.4269419,TJ,CO2,73300.0,kg/TJ,31294.841269999997,kg +fcf81b6b-2b67-3feb-b00a-4a73d4d160b8,SESCO,II.1.1,Córdoba,AR-X,annual,2018,naphtha combustion consumption by freight transport,0.4269419,TJ,CH4,3.0,kg/TJ,1.2808256999999998,kg +76b0eb7f-c64d-354a-9b5d-f3075e8eba6e,SESCO,II.1.1,Córdoba,AR-X,annual,2018,naphtha combustion consumption by freight transport,0.4269419,TJ,N2O,0.6,kg/TJ,0.25616513999999996,kg +13544306-34ce-339c-b5d6-e106694fdcd0,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,naphtha combustion consumption by freight transport,0.12198339999999999,TJ,CO2,73300.0,kg/TJ,8941.38322,kg +b67abee9-fac9-3370-8862-b59e8ac37c1a,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,naphtha combustion consumption by freight transport,0.12198339999999999,TJ,CH4,3.0,kg/TJ,0.3659502,kg +ee4145c2-9c05-3994-a129-b6ce185d9133,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,naphtha combustion consumption by freight transport,0.12198339999999999,TJ,N2O,0.6,kg/TJ,0.07319004,kg +84352499-fe1e-372a-9876-497e2f9af48f,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,naphtha combustion consumption by freight transport,1.8907426999999999,TJ,CO2,73300.0,kg/TJ,138591.43991,kg +c71d4631-1e63-3f47-87dc-2b4c163d4952,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,naphtha combustion consumption by freight transport,1.8907426999999999,TJ,CH4,3.0,kg/TJ,5.6722281,kg +95e6b415-733c-3385-a5d4-3ede1663b2d8,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,naphtha combustion consumption by freight transport,1.8907426999999999,TJ,N2O,0.6,kg/TJ,1.13444562,kg +cdcfcb50-002d-3669-8def-58cb6dda20c0,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,naphtha combustion consumption by freight transport,0.9453713499999999,TJ,CO2,73300.0,kg/TJ,69295.719955,kg +6a1b4f96-2b5e-349e-9322-b2b030faa88b,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,naphtha combustion consumption by freight transport,0.9453713499999999,TJ,CH4,3.0,kg/TJ,2.83611405,kg +78c67310-28e6-3909-a76e-98fc7807dc76,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,naphtha combustion consumption by freight transport,0.9453713499999999,TJ,N2O,0.6,kg/TJ,0.56722281,kg +8626173e-4881-3421-9ca3-c85ee067b36a,SESCO,II.1.1,Córdoba,AR-X,annual,2018,naphtha combustion consumption by freight transport,0.4574377499999999,TJ,CO2,73300.0,kg/TJ,33530.187074999994,kg +980453c7-6587-3bc0-9cc5-9fb4d9db9c32,SESCO,II.1.1,Córdoba,AR-X,annual,2018,naphtha combustion consumption by freight transport,0.4574377499999999,TJ,CH4,3.0,kg/TJ,1.3723132499999997,kg +c0a51080-37e3-3c54-938f-34115647cfc5,SESCO,II.1.1,Córdoba,AR-X,annual,2018,naphtha combustion consumption by freight transport,0.4574377499999999,TJ,N2O,0.6,kg/TJ,0.2744626499999999,kg +d489d4a8-d733-30ef-bd1c-87c840025c29,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,naphtha combustion consumption by freight transport,0.30495849999999997,TJ,CO2,73300.0,kg/TJ,22353.458049999997,kg +690c6303-0656-3220-bdfe-de8188a8e502,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,naphtha combustion consumption by freight transport,0.30495849999999997,TJ,CH4,3.0,kg/TJ,0.9148755,kg +c2bf235d-ce74-3957-9314-c18ab743204d,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,naphtha combustion consumption by freight transport,0.30495849999999997,TJ,N2O,0.6,kg/TJ,0.18297509999999997,kg +62781837-2602-3a5f-8d92-d9e93bdb975f,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,naphtha combustion consumption by public passenger transport,1.8907426999999999,TJ,CO2,73300.0,kg/TJ,138591.43991,kg +ccb0cb36-4f27-34a2-b97e-a9860f89aa15,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,naphtha combustion consumption by public passenger transport,1.8907426999999999,TJ,CH4,3.0,kg/TJ,5.6722281,kg +f26a605d-f87a-3ab8-a1e7-c9a13e594b78,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,naphtha combustion consumption by public passenger transport,1.8907426999999999,TJ,N2O,0.6,kg/TJ,1.13444562,kg +210f8a58-4e29-30de-9846-823098245164,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,naphtha combustion consumption by public passenger transport,0.18297509999999997,TJ,CO2,73300.0,kg/TJ,13412.074829999998,kg +9a0ba2fa-60b5-3485-9739-1fc35e3afb17,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,naphtha combustion consumption by public passenger transport,0.18297509999999997,TJ,CH4,3.0,kg/TJ,0.5489253,kg +429de844-2f07-3659-bc66-2ce018464cd8,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,naphtha combustion consumption by public passenger transport,0.18297509999999997,TJ,N2O,0.6,kg/TJ,0.10978505999999998,kg +0487beb2-8a43-3855-bfbc-b202a39d9c82,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,naphtha combustion consumption by to the public,316.25458368273,TJ,CO2,73300.0,kg/TJ,23181460.98394411,kg +9b5b4337-f313-32af-99bc-3d08a5b86bbf,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,naphtha combustion consumption by to the public,316.25458368273,TJ,CH4,3.0,kg/TJ,948.76375104819,kg +1efde2c5-ce14-39d2-8fa2-45c2b205ae07,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,naphtha combustion consumption by to the public,316.25458368273,TJ,N2O,0.6,kg/TJ,189.752750209638,kg +c92395b6-c899-3885-acad-dfce8a607236,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,naphtha combustion consumption by to the public,28.384689395369996,TJ,CO2,73300.0,kg/TJ,2080597.7326806206,kg +6345db22-4c72-35e2-b97f-076a6018d573,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,naphtha combustion consumption by to the public,28.384689395369996,TJ,CH4,3.0,kg/TJ,85.15406818610998,kg +6d21e15a-4d32-310f-a6a5-4cc420e70e5c,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,naphtha combustion consumption by to the public,28.384689395369996,TJ,N2O,0.6,kg/TJ,17.030813637221996,kg +3e3f9ae7-6233-373f-a519-472c7409574e,SESCO,II.1.1,Catamarca,AR-K,annual,2018,naphtha combustion consumption by to the public,32.59331186880999,TJ,CO2,73300.0,kg/TJ,2389089.7599837724,kg +07d2c6af-d71e-3354-b323-b2d863642f6e,SESCO,II.1.1,Catamarca,AR-K,annual,2018,naphtha combustion consumption by to the public,32.59331186880999,TJ,CH4,3.0,kg/TJ,97.77993560642997,kg +c7427c10-8b99-3ecf-bfa7-d19373ec919c,SESCO,II.1.1,Catamarca,AR-K,annual,2018,naphtha combustion consumption by to the public,32.59331186880999,TJ,N2O,0.6,kg/TJ,19.555987121285995,kg +26fc8570-6772-3f44-a0e4-86130a8e02dd,SESCO,II.1.1,Chaco,AR-H,annual,2018,naphtha combustion consumption by to the public,36.04303596624499,TJ,CO2,73300.0,kg/TJ,2641954.536325758,kg +d5bbcd78-c8f1-3e32-8826-da0c0f376238,SESCO,II.1.1,Chaco,AR-H,annual,2018,naphtha combustion consumption by to the public,36.04303596624499,TJ,CH4,3.0,kg/TJ,108.12910789873499,kg +ac276ba2-d82c-33aa-99f0-d6f66eae0ff1,SESCO,II.1.1,Chaco,AR-H,annual,2018,naphtha combustion consumption by to the public,36.04303596624499,TJ,N2O,0.6,kg/TJ,21.625821579746994,kg +c4a130fc-25af-356d-9fc8-a9c8cc329dcf,SESCO,II.1.1,Corrientes,AR-W,annual,2018,naphtha combustion consumption by to the public,38.486400063264995,TJ,CO2,73300.0,kg/TJ,2821053.124637324,kg +4593aa84-b1f2-3b54-8297-83d67c99c352,SESCO,II.1.1,Corrientes,AR-W,annual,2018,naphtha combustion consumption by to the public,38.486400063264995,TJ,CH4,3.0,kg/TJ,115.45920018979498,kg +89b10b61-8302-31db-bf7b-89f0279eb1ad,SESCO,II.1.1,Corrientes,AR-W,annual,2018,naphtha combustion consumption by to the public,38.486400063264995,TJ,N2O,0.6,kg/TJ,23.091840037958995,kg +ed65c30a-3a70-306a-8f77-7ebe27753132,SESCO,II.1.1,Córdoba,AR-X,annual,2018,naphtha combustion consumption by to the public,155.50276409783496,TJ,CO2,73300.0,kg/TJ,11398352.608371302,kg +3cd4bfe9-cdff-3234-b0c9-59aeb3cf3182,SESCO,II.1.1,Córdoba,AR-X,annual,2018,naphtha combustion consumption by to the public,155.50276409783496,TJ,CH4,3.0,kg/TJ,466.50829229350484,kg +b2a3394a-aa3d-3de5-8883-5a12f71d0b89,SESCO,II.1.1,Córdoba,AR-X,annual,2018,naphtha combustion consumption by to the public,155.50276409783496,TJ,N2O,0.6,kg/TJ,93.30165845870097,kg +103ac369-4d08-3a53-ae61-8571b89ac083,SESCO,II.1.1,Entre Rios,AR-E,annual,2018,naphtha combustion consumption by to the public,48.524087743669995,TJ,CO2,73300.0,kg/TJ,3556815.6316110105,kg +1463875a-9291-37db-8dff-1a26853087b1,SESCO,II.1.1,Entre Rios,AR-E,annual,2018,naphtha combustion consumption by to the public,48.524087743669995,TJ,CH4,3.0,kg/TJ,145.57226323100997,kg +1400be18-f04c-3277-b0b9-23f5101ace3c,SESCO,II.1.1,Entre Rios,AR-E,annual,2018,naphtha combustion consumption by to the public,48.524087743669995,TJ,N2O,0.6,kg/TJ,29.114452646201997,kg +f95c6b97-85c0-334f-8cde-5654c681c548,SESCO,II.1.1,Jujuy,AR-Y,annual,2018,naphtha combustion consumption by to the public,12.095590332595,TJ,CO2,73300.0,kg/TJ,886606.7713792135,kg +6edd045b-4220-31b2-a4d5-02c8c7448385,SESCO,II.1.1,Jujuy,AR-Y,annual,2018,naphtha combustion consumption by to the public,12.095590332595,TJ,CH4,3.0,kg/TJ,36.286770997785,kg +b769ce38-1ffc-356f-9e4c-b7c76d0e753c,SESCO,II.1.1,Jujuy,AR-Y,annual,2018,naphtha combustion consumption by to the public,12.095590332595,TJ,N2O,0.6,kg/TJ,7.257354199557,kg +c2dab72f-55ee-33b2-ab16-7d1a952593fa,SESCO,II.1.1,La Rioja,AR-F,annual,2018,naphtha combustion consumption by to the public,6.9462837212999995,TJ,CO2,73300.0,kg/TJ,509162.59677128994,kg +eb3c78b8-12b5-3d8e-a110-867ed7178ade,SESCO,II.1.1,La Rioja,AR-F,annual,2018,naphtha combustion consumption by to the public,6.9462837212999995,TJ,CH4,3.0,kg/TJ,20.8388511639,kg +bfac2e19-08b7-3143-9484-c8ca63ecbb73,SESCO,II.1.1,La Rioja,AR-F,annual,2018,naphtha combustion consumption by to the public,6.9462837212999995,TJ,N2O,0.6,kg/TJ,4.16777023278,kg +a97849c7-6e21-3967-9168-38782ddefdaf,SESCO,II.1.1,Mendoza,AR-M,annual,2018,naphtha combustion consumption by to the public,37.499072522835,TJ,CO2,73300.0,kg/TJ,2748682.0159238055,kg +da5d99b0-4306-3e0b-a0f3-c1fe1e311907,SESCO,II.1.1,Mendoza,AR-M,annual,2018,naphtha combustion consumption by to the public,37.499072522835,TJ,CH4,3.0,kg/TJ,112.497217568505,kg +f9f57cb8-77c3-37e6-8de9-2867f00c46b1,SESCO,II.1.1,Mendoza,AR-M,annual,2018,naphtha combustion consumption by to the public,37.499072522835,TJ,N2O,0.6,kg/TJ,22.499443513701,kg +6b68666f-0f9c-37f7-9267-82b85ce89882,SESCO,II.1.1,Misiones,AR-N,annual,2018,naphtha combustion consumption by to the public,48.9050358027,TJ,CO2,73300.0,kg/TJ,3584739.1243379097,kg +8c185af0-9322-3935-a907-6e03fd9d783a,SESCO,II.1.1,Misiones,AR-N,annual,2018,naphtha combustion consumption by to the public,48.9050358027,TJ,CH4,3.0,kg/TJ,146.71510740809998,kg +48835e45-ccb0-3f70-8ac4-e97137dfc519,SESCO,II.1.1,Misiones,AR-N,annual,2018,naphtha combustion consumption by to the public,48.9050358027,TJ,N2O,0.6,kg/TJ,29.34302148162,kg +8862e033-403f-3233-8ac0-593e6781f7a8,SESCO,II.1.1,San Juan,AR-J,annual,2018,naphtha combustion consumption by to the public,44.19130446654,TJ,CO2,73300.0,kg/TJ,3239222.617397382,kg +84b89ff3-72f2-301a-b524-bf3a290b5a62,SESCO,II.1.1,San Juan,AR-J,annual,2018,naphtha combustion consumption by to the public,44.19130446654,TJ,CH4,3.0,kg/TJ,132.57391339961998,kg +69188ba7-7b61-3ead-9fac-e86a4b4ffd96,SESCO,II.1.1,San Juan,AR-J,annual,2018,naphtha combustion consumption by to the public,44.19130446654,TJ,N2O,0.6,kg/TJ,26.514782679923997,kg +d7c66ffc-7067-3e47-9e88-fc424fa341f8,SESCO,II.1.1,San Luis,AR-D,annual,2018,naphtha combustion consumption by to the public,34.20235525360499,TJ,CO2,73300.0,kg/TJ,2507032.640089246,kg +b4e6bdaf-c078-35e0-9651-ddde82a1ab17,SESCO,II.1.1,San Luis,AR-D,annual,2018,naphtha combustion consumption by to the public,34.20235525360499,TJ,CH4,3.0,kg/TJ,102.60706576081498,kg +fe37b3c6-250c-366d-b13a-cf6e169f2ac7,SESCO,II.1.1,San Luis,AR-D,annual,2018,naphtha combustion consumption by to the public,34.20235525360499,TJ,N2O,0.6,kg/TJ,20.521413152162996,kg +ac790731-1516-30f8-a3ec-6f0fa255fd73,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,naphtha combustion consumption by to the public,157.19237141916,TJ,CO2,73300.0,kg/TJ,11522200.825024428,kg +3262dcb2-912b-3feb-87ca-d90911a28e04,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,naphtha combustion consumption by to the public,157.19237141916,TJ,CH4,3.0,kg/TJ,471.57711425748,kg +c3ff0f93-6ad3-3cee-aaaa-4d723cb3418f,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,naphtha combustion consumption by to the public,157.19237141916,TJ,N2O,0.6,kg/TJ,94.315422851496,kg +8208266d-e58a-32d2-a0d7-000dd77397aa,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2018,naphtha combustion consumption by to the public,30.381655240089998,TJ,CO2,73300.0,kg/TJ,2226975.3290985967,kg +64b19ace-98f1-306a-84d3-c98d9d123055,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2018,naphtha combustion consumption by to the public,30.381655240089998,TJ,CH4,3.0,kg/TJ,91.14496572027,kg +ef1d201c-e1de-30d7-84d6-74d9e45a526e,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2018,naphtha combustion consumption by to the public,30.381655240089998,TJ,N2O,0.6,kg/TJ,18.228993144053998,kg +c8951b76-a45c-3eda-8bde-87e7f0936393,SESCO,II.1.1,Tucuman,AR-T,annual,2018,naphtha combustion consumption by to the public,32.32077045736,TJ,CO2,73300.0,kg/TJ,2369112.4745244877,kg +4f5241e7-fadd-39fb-9239-560b12381030,SESCO,II.1.1,Tucuman,AR-T,annual,2018,naphtha combustion consumption by to the public,32.32077045736,TJ,CH4,3.0,kg/TJ,96.96231137208,kg +50ac3610-3807-372c-87fd-d8a1334743a0,SESCO,II.1.1,Tucuman,AR-T,annual,2018,naphtha combustion consumption by to the public,32.32077045736,TJ,N2O,0.6,kg/TJ,19.392462274415998,kg +f48c668c-30b0-3c23-9446-f477602863ca,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,naphtha combustion consumption by to the public,65.061105868605,TJ,CO2,73300.0,kg/TJ,4768979.060168746,kg +dccb236e-271c-348a-b7dc-05a8dd2b44ec,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,naphtha combustion consumption by to the public,65.061105868605,TJ,CH4,3.0,kg/TJ,195.18331760581498,kg +54957d5a-e05c-3a29-974d-be2095079fb4,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,naphtha combustion consumption by to the public,65.061105868605,TJ,N2O,0.6,kg/TJ,39.036663521163,kg +c494a143-5d5f-311b-95c5-7627db4bdac3,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,naphtha combustion consumption by to the public,10.838487354309999,TJ,CO2,73300.0,kg/TJ,794461.1230709229,kg +4598d9ed-ad9a-379e-ab7d-a987da14495b,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,naphtha combustion consumption by to the public,10.838487354309999,TJ,CH4,3.0,kg/TJ,32.51546206293,kg +4bf224d5-9bfe-3ff8-bc2b-d2d9546e82a1,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,naphtha combustion consumption by to the public,10.838487354309999,TJ,N2O,0.6,kg/TJ,6.503092412585999,kg +9bf815bc-76f9-3d06-8e09-707077b8affa,SESCO,II.1.1,Catamarca,AR-K,annual,2018,naphtha combustion consumption by to the public,4.391875085675,TJ,CO2,73300.0,kg/TJ,321924.4437799775,kg +78991649-0750-335a-a028-1a2fe497748b,SESCO,II.1.1,Catamarca,AR-K,annual,2018,naphtha combustion consumption by to the public,4.391875085675,TJ,CH4,3.0,kg/TJ,13.175625257025,kg +cd936fbe-568b-38fe-8820-1c71741902c1,SESCO,II.1.1,Catamarca,AR-K,annual,2018,naphtha combustion consumption by to the public,4.391875085675,TJ,N2O,0.6,kg/TJ,2.635125051405,kg +257f6a36-24a1-32bb-b9b0-aa9ffd55ba83,SESCO,II.1.1,Chaco,AR-H,annual,2018,naphtha combustion consumption by to the public,4.39882508989,TJ,CO2,73300.0,kg/TJ,322433.879088937,kg +9b8da540-49b6-3688-b8a8-628ce3f3cd94,SESCO,II.1.1,Chaco,AR-H,annual,2018,naphtha combustion consumption by to the public,4.39882508989,TJ,CH4,3.0,kg/TJ,13.19647526967,kg +2c6d7bf7-b458-31c0-878a-789a397822bb,SESCO,II.1.1,Chaco,AR-H,annual,2018,naphtha combustion consumption by to the public,4.39882508989,TJ,N2O,0.6,kg/TJ,2.6392950539339997,kg +08c8bb35-eacc-3f1d-9401-dacb3966328d,SESCO,II.1.1,Corrientes,AR-W,annual,2018,naphtha combustion consumption by to the public,12.33066149315,TJ,CO2,73300.0,kg/TJ,903837.487447895,kg +39003ab3-305d-3c70-8a5d-05639d4dd327,SESCO,II.1.1,Corrientes,AR-W,annual,2018,naphtha combustion consumption by to the public,12.33066149315,TJ,CH4,3.0,kg/TJ,36.99198447945,kg +be99cb34-8112-381a-8076-25921d867c37,SESCO,II.1.1,Corrientes,AR-W,annual,2018,naphtha combustion consumption by to the public,12.33066149315,TJ,N2O,0.6,kg/TJ,7.3983968958899995,kg +ed5af47d-60f7-32d2-8394-480dd6a3b4b3,SESCO,II.1.1,Córdoba,AR-X,annual,2018,naphtha combustion consumption by to the public,36.19734801683,TJ,CO2,73300.0,kg/TJ,2653265.609633639,kg +96472b03-045c-3e1e-970a-40e9c252da78,SESCO,II.1.1,Córdoba,AR-X,annual,2018,naphtha combustion consumption by to the public,36.19734801683,TJ,CH4,3.0,kg/TJ,108.59204405048999,kg +39552e2f-a4a2-325b-8578-6a8ecf4d16f4,SESCO,II.1.1,Córdoba,AR-X,annual,2018,naphtha combustion consumption by to the public,36.19734801683,TJ,N2O,0.6,kg/TJ,21.718408810097998,kg +43264732-73b4-3815-b70c-4f951ef02b42,SESCO,II.1.1,Entre Rios,AR-E,annual,2018,naphtha combustion consumption by to the public,10.254250909595,TJ,CO2,73300.0,kg/TJ,751636.5916733134,kg +0eb893f1-63c7-3bc7-a5c4-e0a778dedfe3,SESCO,II.1.1,Entre Rios,AR-E,annual,2018,naphtha combustion consumption by to the public,10.254250909595,TJ,CH4,3.0,kg/TJ,30.762752728784996,kg +c54ae6ff-a726-343f-b0e0-f06b7f71bea8,SESCO,II.1.1,Entre Rios,AR-E,annual,2018,naphtha combustion consumption by to the public,10.254250909595,TJ,N2O,0.6,kg/TJ,6.152550545756999,kg +7152b957-1267-3913-a552-d2d59d1acd47,SESCO,II.1.1,Jujuy,AR-Y,annual,2018,naphtha combustion consumption by to the public,0.150768432815,TJ,CO2,73300.0,kg/TJ,11051.3261253395,kg +53b69799-e58a-3046-867a-0ad93cdfd766,SESCO,II.1.1,Jujuy,AR-Y,annual,2018,naphtha combustion consumption by to the public,0.150768432815,TJ,CH4,3.0,kg/TJ,0.452305298445,kg +299209a0-b2be-304c-b6c4-c1be38845001,SESCO,II.1.1,Jujuy,AR-Y,annual,2018,naphtha combustion consumption by to the public,0.150768432815,TJ,N2O,0.6,kg/TJ,0.09046105968899999,kg +85ee9ee2-0a81-3b5d-8f3e-21c869dbafd1,SESCO,II.1.1,La Rioja,AR-F,annual,2018,naphtha combustion consumption by to the public,2.4121241482799998,TJ,CO2,73300.0,kg/TJ,176808.700068924,kg +dfe4e0eb-7350-381c-a8a5-d4fdb1d44a2a,SESCO,II.1.1,La Rioja,AR-F,annual,2018,naphtha combustion consumption by to the public,2.4121241482799998,TJ,CH4,3.0,kg/TJ,7.236372444839999,kg +43543283-32f5-3b46-b9bd-8aac4094758a,SESCO,II.1.1,La Rioja,AR-F,annual,2018,naphtha combustion consumption by to the public,2.4121241482799998,TJ,N2O,0.6,kg/TJ,1.4472744889679998,kg +a9542a0d-56d8-3d6d-adad-10cf190d2ca7,SESCO,II.1.1,Mendoza,AR-M,annual,2018,naphtha combustion consumption by to the public,7.610181425385,TJ,CO2,73300.0,kg/TJ,557826.2984807205,kg +7a908da3-a12e-3e84-8dbb-411c5bed27f7,SESCO,II.1.1,Mendoza,AR-M,annual,2018,naphtha combustion consumption by to the public,7.610181425385,TJ,CH4,3.0,kg/TJ,22.830544276155,kg +cb75496d-5a3f-3874-b629-1ced74fad2a4,SESCO,II.1.1,Mendoza,AR-M,annual,2018,naphtha combustion consumption by to the public,7.610181425385,TJ,N2O,0.6,kg/TJ,4.566108855231,kg +b3d8383f-7085-34aa-a222-c6589e88c171,SESCO,II.1.1,Misiones,AR-N,annual,2018,naphtha combustion consumption by to the public,6.5559581883949996,TJ,CO2,73300.0,kg/TJ,480551.73520935344,kg +4c695c47-ac6d-3871-a079-33c0ff8f828c,SESCO,II.1.1,Misiones,AR-N,annual,2018,naphtha combustion consumption by to the public,6.5559581883949996,TJ,CH4,3.0,kg/TJ,19.667874565185,kg +2540136d-9736-3325-b01b-01e9d9b2dbcd,SESCO,II.1.1,Misiones,AR-N,annual,2018,naphtha combustion consumption by to the public,6.5559581883949996,TJ,N2O,0.6,kg/TJ,3.9335749130369995,kg +f2a92b33-65cb-3507-8e4a-c898af9933dd,SESCO,II.1.1,San Juan,AR-J,annual,2018,naphtha combustion consumption by to the public,10.529372269954997,TJ,CO2,73300.0,kg/TJ,771802.9873877013,kg +bced187c-ebf3-3051-b813-2e9b2a59713b,SESCO,II.1.1,San Juan,AR-J,annual,2018,naphtha combustion consumption by to the public,10.529372269954997,TJ,CH4,3.0,kg/TJ,31.588116809864992,kg +17c2977c-d66d-39d8-bbad-9f60e2edfe9b,SESCO,II.1.1,San Juan,AR-J,annual,2018,naphtha combustion consumption by to the public,10.529372269954997,TJ,N2O,0.6,kg/TJ,6.3176233619729985,kg +83b10341-c434-3571-a2e4-69752c7da05d,SESCO,II.1.1,San Luis,AR-D,annual,2018,naphtha combustion consumption by to the public,9.567167210754999,TJ,CO2,73300.0,kg/TJ,701273.3565483415,kg +7f7266d6-9ce2-3c49-85c2-68e164c17414,SESCO,II.1.1,San Luis,AR-D,annual,2018,naphtha combustion consumption by to the public,9.567167210754999,TJ,CH4,3.0,kg/TJ,28.701501632264996,kg +626b094e-1b03-315d-9a51-9afacb81a9d7,SESCO,II.1.1,San Luis,AR-D,annual,2018,naphtha combustion consumption by to the public,9.567167210754999,TJ,N2O,0.6,kg/TJ,5.740300326452999,kg +34a007bf-4d04-3413-a595-816fa8a66b7a,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,naphtha combustion consumption by to the public,37.886290528625,TJ,CO2,73300.0,kg/TJ,2777065.095748212,kg +b9feb252-ae26-3cd9-a3ad-867c777cf519,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,naphtha combustion consumption by to the public,37.886290528625,TJ,CH4,3.0,kg/TJ,113.65887158587499,kg +8f281362-8fac-3eb5-b335-6d2e8a16a261,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,naphtha combustion consumption by to the public,37.886290528625,TJ,N2O,0.6,kg/TJ,22.731774317175,kg +14bba72f-2fe4-35c7-a342-4227ca7a120e,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2018,naphtha combustion consumption by to the public,4.600991228294999,TJ,CO2,73300.0,kg/TJ,337252.65703402343,kg +b4873243-e8c8-3da8-9732-f8d82c546ced,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2018,naphtha combustion consumption by to the public,4.600991228294999,TJ,CH4,3.0,kg/TJ,13.802973684884998,kg +95cdcd09-0322-38d0-acf3-a5748924ed27,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2018,naphtha combustion consumption by to the public,4.600991228294999,TJ,N2O,0.6,kg/TJ,2.7605947369769996,kg +56bd3802-fef7-3536-aa55-9ec4b82c4ae3,SESCO,II.1.1,Tucuman,AR-T,annual,2018,naphtha combustion consumption by to the public,5.44314937397,TJ,CO2,73300.0,kg/TJ,398982.849112001,kg +905fe578-c003-316c-a5db-e10008da2de6,SESCO,II.1.1,Tucuman,AR-T,annual,2018,naphtha combustion consumption by to the public,5.44314937397,TJ,CH4,3.0,kg/TJ,16.329448121909998,kg +1c16b19b-c636-3dff-9707-f9e3072b0c76,SESCO,II.1.1,Tucuman,AR-T,annual,2018,naphtha combustion consumption by to the public,5.44314937397,TJ,N2O,0.6,kg/TJ,3.265889624382,kg +b9c5e9f5-9fa8-3a97-b51d-356dc1245b6c,SESCO,II.5.1,Buenos Aires,AR-B,annual,2018,naphtha combustion consumption by agriculture machines,12.503298499999998,TJ,CO2,73300.0,kg/TJ,916491.7800499998,kg +a380a04a-2b47-3b66-a9fb-3d3a981dbf94,SESCO,II.5.1,Buenos Aires,AR-B,annual,2018,naphtha combustion consumption by agriculture machines,12.503298499999998,TJ,CH4,3.0,kg/TJ,37.50989549999999,kg +27939ce7-c2cd-3aa5-b49e-6ff2cd30cecc,SESCO,II.5.1,Buenos Aires,AR-B,annual,2018,naphtha combustion consumption by agriculture machines,12.503298499999998,TJ,N2O,0.6,kg/TJ,7.501979099999998,kg +7402de68-7bea-3d84-924b-86edd0397142,SESCO,II.5.1,Córdoba,AR-X,annual,2018,naphtha combustion consumption by agriculture machines,5.0623111,TJ,CO2,73300.0,kg/TJ,371067.40362999996,kg +513898a4-6c4b-3870-a59f-9b36e3a3a953,SESCO,II.5.1,Córdoba,AR-X,annual,2018,naphtha combustion consumption by agriculture machines,5.0623111,TJ,CH4,3.0,kg/TJ,15.1869333,kg +21c066b2-8a55-34b5-ad11-5b516988c4af,SESCO,II.5.1,Córdoba,AR-X,annual,2018,naphtha combustion consumption by agriculture machines,5.0623111,TJ,N2O,0.6,kg/TJ,3.0373866599999997,kg +950ca5f5-9634-3a60-8b91-6bd9b1f5d0a4,SESCO,II.5.1,Santa Fe,AR-S,annual,2018,naphtha combustion consumption by agriculture machines,27.903702749999997,TJ,CO2,73300.0,kg/TJ,2045341.4115749998,kg +2ccbc734-c90f-3719-9b83-e5e08a519a3b,SESCO,II.5.1,Santa Fe,AR-S,annual,2018,naphtha combustion consumption by agriculture machines,27.903702749999997,TJ,CH4,3.0,kg/TJ,83.71110825,kg +64ec9548-3076-375e-b547-a0704d401834,SESCO,II.5.1,Santa Fe,AR-S,annual,2018,naphtha combustion consumption by agriculture machines,27.903702749999997,TJ,N2O,0.6,kg/TJ,16.742221649999998,kg +1e002312-d8a9-34a3-a0e8-305bde8063aa,SESCO,II.5.1,Tucuman,AR-T,annual,2018,naphtha combustion consumption by agriculture machines,11.984869049999999,TJ,CO2,73300.0,kg/TJ,878490.9013649999,kg +8120e4d6-4871-3949-8c57-c58a9a8cc816,SESCO,II.5.1,Tucuman,AR-T,annual,2018,naphtha combustion consumption by agriculture machines,11.984869049999999,TJ,CH4,3.0,kg/TJ,35.954607149999994,kg +03ee3703-5c0a-3afd-b01f-a1164fa0fd0e,SESCO,II.5.1,Tucuman,AR-T,annual,2018,naphtha combustion consumption by agriculture machines,11.984869049999999,TJ,N2O,0.6,kg/TJ,7.190921429999999,kg +a24ee9fb-b211-3f9a-ab66-d0425c36128b,SESCO,II.5.1,Buenos Aires,AR-B,annual,2018,naphtha combustion consumption by agriculture machines,2.3176845999999998,TJ,CO2,73300.0,kg/TJ,169886.28118,kg +c4848c19-5400-30ec-86b2-febec77321f0,SESCO,II.5.1,Buenos Aires,AR-B,annual,2018,naphtha combustion consumption by agriculture machines,2.3176845999999998,TJ,CH4,3.0,kg/TJ,6.953053799999999,kg +657881b5-1c00-331b-b9cd-a7e9f22631c6,SESCO,II.5.1,Buenos Aires,AR-B,annual,2018,naphtha combustion consumption by agriculture machines,2.3176845999999998,TJ,N2O,0.6,kg/TJ,1.3906107599999997,kg +f7b1edef-00e6-3f31-bd35-96c9caf01806,SESCO,II.5.1,Córdoba,AR-X,annual,2018,naphtha combustion consumption by agriculture machines,2.2261970499999997,TJ,CO2,73300.0,kg/TJ,163180.24376499996,kg +d5a27910-d40e-36ee-860a-735b2ddc43b8,SESCO,II.5.1,Córdoba,AR-X,annual,2018,naphtha combustion consumption by agriculture machines,2.2261970499999997,TJ,CH4,3.0,kg/TJ,6.678591149999999,kg +765288b4-0048-3741-a4ef-ba4f1d398f23,SESCO,II.5.1,Córdoba,AR-X,annual,2018,naphtha combustion consumption by agriculture machines,2.2261970499999997,TJ,N2O,0.6,kg/TJ,1.3357182299999997,kg +bfa91d54-4eb5-3a59-9242-768039648f6b,SESCO,II.5.1,Santa Fe,AR-S,annual,2018,naphtha combustion consumption by agriculture machines,8.904788199999999,TJ,CO2,73300.0,kg/TJ,652720.9750599999,kg +b9d9f497-c5be-3505-a826-3eeccd5d29b0,SESCO,II.5.1,Santa Fe,AR-S,annual,2018,naphtha combustion consumption by agriculture machines,8.904788199999999,TJ,CH4,3.0,kg/TJ,26.714364599999996,kg +b8acbf8b-6965-37d0-bd0c-df1b14997ecc,SESCO,II.5.1,Santa Fe,AR-S,annual,2018,naphtha combustion consumption by agriculture machines,8.904788199999999,TJ,N2O,0.6,kg/TJ,5.342872919999999,kg +0f32d79a-737b-319a-96d4-c3b6c260c0a4,SESCO,II.5.1,Tucuman,AR-T,annual,2018,naphtha combustion consumption by agriculture machines,2.3176845999999998,TJ,CO2,73300.0,kg/TJ,169886.28118,kg +46270489-a7a0-35cf-bb9e-54b05ce9a19a,SESCO,II.5.1,Tucuman,AR-T,annual,2018,naphtha combustion consumption by agriculture machines,2.3176845999999998,TJ,CH4,3.0,kg/TJ,6.953053799999999,kg +a71604f4-c05d-3190-974f-8f0fb3d2c9c7,SESCO,II.5.1,Tucuman,AR-T,annual,2018,naphtha combustion consumption by agriculture machines,2.3176845999999998,TJ,N2O,0.6,kg/TJ,1.3906107599999997,kg +d36288be-229d-3792-9e88-20b220332d3b,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,naphtha combustion consumption by to the public,8178.6210198,TJ,CO2,73300.0,kg/TJ,599492920.75134,kg +9cc881b7-d8f4-3b38-9e87-a2a9a2e8e8f7,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,naphtha combustion consumption by to the public,8178.6210198,TJ,CH4,3.0,kg/TJ,24535.8630594,kg +f9365fcc-17c8-311d-ad56-dd28db16618d,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,naphtha combustion consumption by to the public,8178.6210198,TJ,N2O,0.6,kg/TJ,4907.17261188,kg +9cd1c282-ebab-3355-a5cd-05b2c1aeda67,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,naphtha combustion consumption by to the public,2495.9633390999998,TJ,CO2,73300.0,kg/TJ,182954112.75603,kg +7658bbc9-f281-3c9c-ac85-845f7a85c8ef,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,naphtha combustion consumption by to the public,2495.9633390999998,TJ,CH4,3.0,kg/TJ,7487.890017299999,kg +da8b42a5-6690-3d07-be52-3e0d04e44fd1,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,naphtha combustion consumption by to the public,2495.9633390999998,TJ,N2O,0.6,kg/TJ,1497.5780034599998,kg +ba11e7f1-a3f5-3d09-bfd1-e4b0db142652,SESCO,II.1.1,Catamarca,AR-K,annual,2018,naphtha combustion consumption by to the public,333.47211974999993,TJ,CO2,73300.0,kg/TJ,24443506.377674997,kg +aacadb60-444f-3639-8873-771cdcdd91d4,SESCO,II.1.1,Catamarca,AR-K,annual,2018,naphtha combustion consumption by to the public,333.47211974999993,TJ,CH4,3.0,kg/TJ,1000.4163592499998,kg +62717870-341e-3d5c-a4b2-6cabc6e64299,SESCO,II.1.1,Catamarca,AR-K,annual,2018,naphtha combustion consumption by to the public,333.47211974999993,TJ,N2O,0.6,kg/TJ,200.08327184999996,kg +002b8fa2-45bd-39b4-814c-6667d944f9a5,SESCO,II.1.1,Chaco,AR-H,annual,2018,naphtha combustion consumption by to the public,293.09561435,TJ,CO2,73300.0,kg/TJ,21483908.531855002,kg +ff878706-176c-3d43-978d-589b1e4ac866,SESCO,II.1.1,Chaco,AR-H,annual,2018,naphtha combustion consumption by to the public,293.09561435,TJ,CH4,3.0,kg/TJ,879.28684305,kg +f66f3222-a6ba-3c3c-a42d-1a4be3461bfc,SESCO,II.1.1,Chaco,AR-H,annual,2018,naphtha combustion consumption by to the public,293.09561435,TJ,N2O,0.6,kg/TJ,175.85736861,kg +94dbe600-4648-3dd6-b29e-364b0f6ab01f,SESCO,II.1.1,Chubut,AR-U,annual,2018,naphtha combustion consumption by to the public,977.0565381499998,TJ,CO2,73300.0,kg/TJ,71618244.24639499,kg +ee16f246-3006-37d5-9531-1756dce3318d,SESCO,II.1.1,Chubut,AR-U,annual,2018,naphtha combustion consumption by to the public,977.0565381499998,TJ,CH4,3.0,kg/TJ,2931.1696144499992,kg +ca4400b2-6ca8-35ee-affc-e5b4978dcee5,SESCO,II.1.1,Chubut,AR-U,annual,2018,naphtha combustion consumption by to the public,977.0565381499998,TJ,N2O,0.6,kg/TJ,586.2339228899999,kg +6b0d9892-37c9-33c8-9fe3-a0afbfe1d8ed,SESCO,II.1.1,Corrientes,AR-W,annual,2018,naphtha combustion consumption by to the public,441.00048685,TJ,CO2,73300.0,kg/TJ,32325335.686105,kg +04f9d697-1e75-34e1-81af-ecd1566c87c3,SESCO,II.1.1,Corrientes,AR-W,annual,2018,naphtha combustion consumption by to the public,441.00048685,TJ,CH4,3.0,kg/TJ,1323.00146055,kg +766da68c-edfa-3f72-b739-38256be48e2f,SESCO,II.1.1,Corrientes,AR-W,annual,2018,naphtha combustion consumption by to the public,441.00048685,TJ,N2O,0.6,kg/TJ,264.60029211,kg +44a24eaa-e7e2-3e2d-ac96-87c403738d1b,SESCO,II.1.1,Córdoba,AR-X,annual,2018,naphtha combustion consumption by to the public,2286.7923039499997,TJ,CO2,73300.0,kg/TJ,167621875.879535,kg +4f7a36fe-d9de-3235-9b01-b89b71fd42b2,SESCO,II.1.1,Córdoba,AR-X,annual,2018,naphtha combustion consumption by to the public,2286.7923039499997,TJ,CH4,3.0,kg/TJ,6860.376911849999,kg +ddbf42ac-9f92-37eb-bd3c-6381b361cab6,SESCO,II.1.1,Córdoba,AR-X,annual,2018,naphtha combustion consumption by to the public,2286.7923039499997,TJ,N2O,0.6,kg/TJ,1372.0753823699997,kg +0c07a646-dcad-383e-8019-6b0b74219947,SESCO,II.1.1,Entre Rios,AR-E,annual,2018,naphtha combustion consumption by to the public,941.0409392999999,TJ,CO2,73300.0,kg/TJ,68978300.85068999,kg +0374c6d7-ebe7-3a7a-9a7a-def4590975d7,SESCO,II.1.1,Entre Rios,AR-E,annual,2018,naphtha combustion consumption by to the public,941.0409392999999,TJ,CH4,3.0,kg/TJ,2823.1228178999995,kg +4d33dff9-f93f-3462-81cd-fc0788fb37f6,SESCO,II.1.1,Entre Rios,AR-E,annual,2018,naphtha combustion consumption by to the public,941.0409392999999,TJ,N2O,0.6,kg/TJ,564.6245635799999,kg +978358c3-b588-3cbe-ab37-a46c80c09a9b,SESCO,II.1.1,Formosa,AR-P,annual,2018,naphtha combustion consumption by to the public,484.51806479999993,TJ,CO2,73300.0,kg/TJ,35515174.14984,kg +a2bbc8f1-7f28-3514-a993-faadbfd50832,SESCO,II.1.1,Formosa,AR-P,annual,2018,naphtha combustion consumption by to the public,484.51806479999993,TJ,CH4,3.0,kg/TJ,1453.5541943999997,kg +044af9e5-53b8-3480-b279-7f711da226a1,SESCO,II.1.1,Formosa,AR-P,annual,2018,naphtha combustion consumption by to the public,484.51806479999993,TJ,N2O,0.6,kg/TJ,290.7108388799999,kg +f902f56a-9462-368a-99e0-880986478a89,SESCO,II.1.1,Jujuy,AR-Y,annual,2018,naphtha combustion consumption by to the public,177.51634284999997,TJ,CO2,73300.0,kg/TJ,13011947.930904998,kg +2ae1c1f4-21bd-3b58-81ce-c3aae0a07690,SESCO,II.1.1,Jujuy,AR-Y,annual,2018,naphtha combustion consumption by to the public,177.51634284999997,TJ,CH4,3.0,kg/TJ,532.5490285499999,kg +30030a75-40ba-36da-93c1-b8814b23604c,SESCO,II.1.1,Jujuy,AR-Y,annual,2018,naphtha combustion consumption by to the public,177.51634284999997,TJ,N2O,0.6,kg/TJ,106.50980570999998,kg +fe3ff214-1020-32fb-8fb5-5abbc94c52cd,SESCO,II.1.1,La Pampa,AR-L,annual,2018,naphtha combustion consumption by to the public,148.0878476,TJ,CO2,73300.0,kg/TJ,10854839.22908,kg +7abbffc5-af62-3ac5-8380-99f89dbcdd28,SESCO,II.1.1,La Pampa,AR-L,annual,2018,naphtha combustion consumption by to the public,148.0878476,TJ,CH4,3.0,kg/TJ,444.2635428,kg +2c76a4ba-f6a5-32a5-a68f-cd59d9e6d10d,SESCO,II.1.1,La Pampa,AR-L,annual,2018,naphtha combustion consumption by to the public,148.0878476,TJ,N2O,0.6,kg/TJ,88.85270856,kg +784925ad-a497-3a16-a57b-f15508be2a2c,SESCO,II.1.1,La Rioja,AR-F,annual,2018,naphtha combustion consumption by to the public,105.57663269999999,TJ,CO2,73300.0,kg/TJ,7738767.176909999,kg +7c46d6be-01d3-38e8-abd4-29cf437aaf9d,SESCO,II.1.1,La Rioja,AR-F,annual,2018,naphtha combustion consumption by to the public,105.57663269999999,TJ,CH4,3.0,kg/TJ,316.72989809999996,kg +58ab7f3a-480c-37cb-b2e7-b39b8a1e7aa5,SESCO,II.1.1,La Rioja,AR-F,annual,2018,naphtha combustion consumption by to the public,105.57663269999999,TJ,N2O,0.6,kg/TJ,63.345979619999994,kg +eeb159ae-e7c4-3f4d-b610-2b966bd6f72d,SESCO,II.1.1,Mendoza,AR-M,annual,2018,naphtha combustion consumption by to the public,476.68063134999994,TJ,CO2,73300.0,kg/TJ,34940690.277954996,kg +9e330f40-d404-3352-a9c9-d70fcfc8eeb2,SESCO,II.1.1,Mendoza,AR-M,annual,2018,naphtha combustion consumption by to the public,476.68063134999994,TJ,CH4,3.0,kg/TJ,1430.0418940499999,kg +a52cecdb-cba9-351a-9f15-bc968127fa44,SESCO,II.1.1,Mendoza,AR-M,annual,2018,naphtha combustion consumption by to the public,476.68063134999994,TJ,N2O,0.6,kg/TJ,286.00837880999995,kg +f4c1ff59-7343-3297-af15-c5bb9e151fd8,SESCO,II.1.1,Misiones,AR-N,annual,2018,naphtha combustion consumption by to the public,654.440941,TJ,CO2,73300.0,kg/TJ,47970520.9753,kg +5e4674f8-b4d4-3854-9b27-f1d494dedf89,SESCO,II.1.1,Misiones,AR-N,annual,2018,naphtha combustion consumption by to the public,654.440941,TJ,CH4,3.0,kg/TJ,1963.322823,kg +db48f5b5-2cb5-35d2-9d95-dfb8113c50f4,SESCO,II.1.1,Misiones,AR-N,annual,2018,naphtha combustion consumption by to the public,654.440941,TJ,N2O,0.6,kg/TJ,392.66456459999995,kg +4ac25c41-a1ab-3464-99bb-e7c3e9337c4f,SESCO,II.1.1,Neuquén,AR-Q,annual,2018,naphtha combustion consumption by to the public,304.2875913,TJ,CO2,73300.0,kg/TJ,22304280.442289997,kg +0fbb596b-af80-3f27-b33e-971f0f8df00f,SESCO,II.1.1,Neuquén,AR-Q,annual,2018,naphtha combustion consumption by to the public,304.2875913,TJ,CH4,3.0,kg/TJ,912.8627738999999,kg +2fa04e65-e358-336c-bd9f-79a59e135e22,SESCO,II.1.1,Neuquén,AR-Q,annual,2018,naphtha combustion consumption by to the public,304.2875913,TJ,N2O,0.6,kg/TJ,182.57255478,kg +0a4292ae-c730-3af3-beb3-36bdb7364fa9,SESCO,II.1.1,Rio Negro,AR-R,annual,2018,naphtha combustion consumption by to the public,491.92855634999995,TJ,CO2,73300.0,kg/TJ,36058363.180455,kg +984e10bc-85a5-31b5-9704-319094bb4679,SESCO,II.1.1,Rio Negro,AR-R,annual,2018,naphtha combustion consumption by to the public,491.92855634999995,TJ,CH4,3.0,kg/TJ,1475.7856690499998,kg +91fa1096-6e95-33e0-8c68-52579bd3c98f,SESCO,II.1.1,Rio Negro,AR-R,annual,2018,naphtha combustion consumption by to the public,491.92855634999995,TJ,N2O,0.6,kg/TJ,295.15713380999995,kg +0c3b78b5-ddfb-3319-9ef2-98344e7f1a29,SESCO,II.1.1,Salta,AR-A,annual,2018,naphtha combustion consumption by to the public,119.6657154,TJ,CO2,73300.0,kg/TJ,8771496.938819999,kg +1f1fe5eb-1b24-307f-a15c-d3428e85360b,SESCO,II.1.1,Salta,AR-A,annual,2018,naphtha combustion consumption by to the public,119.6657154,TJ,CH4,3.0,kg/TJ,358.9971462,kg +f1425f1b-8fc1-3dc1-9e07-e4482a8677df,SESCO,II.1.1,Salta,AR-A,annual,2018,naphtha combustion consumption by to the public,119.6657154,TJ,N2O,0.6,kg/TJ,71.79942924,kg +2f606143-d322-3c3f-9e65-2fed755a277e,SESCO,II.1.1,San Juan,AR-J,annual,2018,naphtha combustion consumption by to the public,220.2410287,TJ,CO2,73300.0,kg/TJ,16143667.403709998,kg +47811e43-c354-338f-a517-101cbe8c5f00,SESCO,II.1.1,San Juan,AR-J,annual,2018,naphtha combustion consumption by to the public,220.2410287,TJ,CH4,3.0,kg/TJ,660.7230860999999,kg +581c64a1-010b-313c-890d-6f3326b8773d,SESCO,II.1.1,San Juan,AR-J,annual,2018,naphtha combustion consumption by to the public,220.2410287,TJ,N2O,0.6,kg/TJ,132.14461722,kg +a59f335c-1851-3684-8748-699bdafd911f,SESCO,II.1.1,San Luis,AR-D,annual,2018,naphtha combustion consumption by to the public,459.90791384999994,TJ,CO2,73300.0,kg/TJ,33711250.085204996,kg +60fa04bf-5de6-3642-8b18-c27210820983,SESCO,II.1.1,San Luis,AR-D,annual,2018,naphtha combustion consumption by to the public,459.90791384999994,TJ,CH4,3.0,kg/TJ,1379.7237415499999,kg +037b0765-0011-3a4c-9447-e0aeb4c2852c,SESCO,II.1.1,San Luis,AR-D,annual,2018,naphtha combustion consumption by to the public,459.90791384999994,TJ,N2O,0.6,kg/TJ,275.94474830999997,kg +1baa2b56-5930-34d9-bee8-0aa5f700fd59,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2018,naphtha combustion consumption by to the public,507.63391909999996,TJ,CO2,73300.0,kg/TJ,37209566.27003,kg +ccbb69c8-ee7e-36b3-960e-19c0073a659a,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2018,naphtha combustion consumption by to the public,507.63391909999996,TJ,CH4,3.0,kg/TJ,1522.9017572999999,kg +660d540b-943b-30e3-ab0c-fac90f3bf42b,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2018,naphtha combustion consumption by to the public,507.63391909999996,TJ,N2O,0.6,kg/TJ,304.58035146,kg +e847b995-e955-32f6-8937-14502774df0c,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,naphtha combustion consumption by to the public,2096.5896875,TJ,CO2,73300.0,kg/TJ,153680024.09375,kg +a50acb18-c5f6-3c2c-815e-b5c1b153aaa0,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,naphtha combustion consumption by to the public,2096.5896875,TJ,CH4,3.0,kg/TJ,6289.7690625,kg +b368e1d0-b443-3bba-a660-f42f599743e4,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,naphtha combustion consumption by to the public,2096.5896875,TJ,N2O,0.6,kg/TJ,1257.9538125,kg +8cf7f791-9793-3bc9-a48b-8935d64fb4f1,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2018,naphtha combustion consumption by to the public,264.4600112,TJ,CO2,73300.0,kg/TJ,19384918.82096,kg +2a62e246-c6fd-3b6e-a12e-252a94794e35,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2018,naphtha combustion consumption by to the public,264.4600112,TJ,CH4,3.0,kg/TJ,793.3800335999999,kg +cbefb207-7775-36ca-ba3c-5020094646c4,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2018,naphtha combustion consumption by to the public,264.4600112,TJ,N2O,0.6,kg/TJ,158.67600672,kg +479580a9-d1ad-3a26-8985-3880bc602270,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2018,naphtha combustion consumption by to the public,114.54241259999999,TJ,CO2,73300.0,kg/TJ,8395958.84358,kg +379c8188-9533-34b6-bfaa-39426e7e808b,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2018,naphtha combustion consumption by to the public,114.54241259999999,TJ,CH4,3.0,kg/TJ,343.6272378,kg +4ccac11d-8dcd-39bd-acbf-127b2ee1bdf4,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2018,naphtha combustion consumption by to the public,114.54241259999999,TJ,N2O,0.6,kg/TJ,68.72544755999999,kg +88c17d37-f2db-3863-a0a1-0028b825089f,SESCO,II.1.1,Tucuman,AR-T,annual,2018,naphtha combustion consumption by to the public,68.95111684999999,TJ,CO2,73300.0,kg/TJ,5054116.865104999,kg +150fb80b-cbf4-3310-b5c7-316483d1340d,SESCO,II.1.1,Tucuman,AR-T,annual,2018,naphtha combustion consumption by to the public,68.95111684999999,TJ,CH4,3.0,kg/TJ,206.85335054999996,kg +69eaa799-8b42-3826-947e-829828c4d1ba,SESCO,II.1.1,Tucuman,AR-T,annual,2018,naphtha combustion consumption by to the public,68.95111684999999,TJ,N2O,0.6,kg/TJ,41.37067010999999,kg +a99ed874-15bb-3b78-8b11-565734f2e91c,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,naphtha combustion consumption by to the public,1919.0733446499999,TJ,CO2,73300.0,kg/TJ,140668076.162845,kg +955b2bc5-7d56-3045-9fa7-3d958edf4744,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,naphtha combustion consumption by to the public,1919.0733446499999,TJ,CH4,3.0,kg/TJ,5757.22003395,kg +627948e3-9f1a-3664-a081-0bfea786ab3d,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,naphtha combustion consumption by to the public,1919.0733446499999,TJ,N2O,0.6,kg/TJ,1151.4440067899998,kg +a144b36a-794f-30fb-b9b8-5bf2d51ab9f0,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,naphtha combustion consumption by to the public,854.4632211499999,TJ,CO2,73300.0,kg/TJ,62632154.11029499,kg +deb826f7-1fec-39f7-9249-aaa0d0d6b6a6,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,naphtha combustion consumption by to the public,854.4632211499999,TJ,CH4,3.0,kg/TJ,2563.3896634499997,kg +56be4a60-cd53-3e2c-a1bd-a47f72937e56,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,naphtha combustion consumption by to the public,854.4632211499999,TJ,N2O,0.6,kg/TJ,512.6779326899999,kg +62501c13-794d-39aa-b957-3c581ab8f7da,SESCO,II.1.1,Catamarca,AR-K,annual,2018,naphtha combustion consumption by to the public,86.82168494999999,TJ,CO2,73300.0,kg/TJ,6364029.506835,kg +64b16bc8-cfdd-356d-98db-c60e519285fd,SESCO,II.1.1,Catamarca,AR-K,annual,2018,naphtha combustion consumption by to the public,86.82168494999999,TJ,CH4,3.0,kg/TJ,260.46505485,kg +824de2a6-4e88-3d21-b949-6bcc7f15bda8,SESCO,II.1.1,Catamarca,AR-K,annual,2018,naphtha combustion consumption by to the public,86.82168494999999,TJ,N2O,0.6,kg/TJ,52.093010969999995,kg +0a8cbc83-830a-3108-9487-3fa7d25caf5e,SESCO,II.1.1,Chaco,AR-H,annual,2018,naphtha combustion consumption by to the public,52.574845399999994,TJ,CO2,73300.0,kg/TJ,3853736.1678199996,kg +3ae2d4cc-4fad-377e-9939-4fc862dc07e4,SESCO,II.1.1,Chaco,AR-H,annual,2018,naphtha combustion consumption by to the public,52.574845399999994,TJ,CH4,3.0,kg/TJ,157.7245362,kg +e8fbb70a-21f5-3bb0-8e25-a57c22d8316b,SESCO,II.1.1,Chaco,AR-H,annual,2018,naphtha combustion consumption by to the public,52.574845399999994,TJ,N2O,0.6,kg/TJ,31.544907239999993,kg +e97eebe1-f45c-3313-91b6-905199d24d0f,SESCO,II.1.1,Chubut,AR-U,annual,2018,naphtha combustion consumption by to the public,170.3498181,TJ,CO2,73300.0,kg/TJ,12486641.66673,kg +a6047ba2-6fbd-3f73-854d-297da9dd0217,SESCO,II.1.1,Chubut,AR-U,annual,2018,naphtha combustion consumption by to the public,170.3498181,TJ,CH4,3.0,kg/TJ,511.0494543,kg +f5fdda7f-cd4e-3a2d-abeb-5281cad759fe,SESCO,II.1.1,Chubut,AR-U,annual,2018,naphtha combustion consumption by to the public,170.3498181,TJ,N2O,0.6,kg/TJ,102.20989085999999,kg +7069b0c6-f1d5-3a76-8a77-b9b6a7077e0a,SESCO,II.1.1,Corrientes,AR-W,annual,2018,naphtha combustion consumption by to the public,87.40110609999998,TJ,CO2,73300.0,kg/TJ,6406501.077129998,kg +dcd24eba-992d-3bf5-bd98-4695cb201717,SESCO,II.1.1,Corrientes,AR-W,annual,2018,naphtha combustion consumption by to the public,87.40110609999998,TJ,CH4,3.0,kg/TJ,262.2033182999999,kg +901cc8e9-8404-36c9-9fea-5249f90300d9,SESCO,II.1.1,Corrientes,AR-W,annual,2018,naphtha combustion consumption by to the public,87.40110609999998,TJ,N2O,0.6,kg/TJ,52.440663659999984,kg +274bf107-ed2b-3720-a09b-de62b53c645c,SESCO,II.1.1,Córdoba,AR-X,annual,2018,naphtha combustion consumption by to the public,488.14707094999994,TJ,CO2,73300.0,kg/TJ,35781180.300634995,kg +acd68b8e-054f-39d2-82ab-58ffaf67f9fc,SESCO,II.1.1,Córdoba,AR-X,annual,2018,naphtha combustion consumption by to the public,488.14707094999994,TJ,CH4,3.0,kg/TJ,1464.4412128499998,kg +24e8e18e-8c40-39ae-9fcc-5425becb57de,SESCO,II.1.1,Córdoba,AR-X,annual,2018,naphtha combustion consumption by to the public,488.14707094999994,TJ,N2O,0.6,kg/TJ,292.88824256999993,kg +15491ade-268c-3157-8a77-874a69468bae,SESCO,II.1.1,Entre Rios,AR-E,annual,2018,naphtha combustion consumption by to the public,205.99946674999998,TJ,CO2,73300.0,kg/TJ,15099760.912774999,kg +50b45292-9472-3392-9bc5-78eb13caac81,SESCO,II.1.1,Entre Rios,AR-E,annual,2018,naphtha combustion consumption by to the public,205.99946674999998,TJ,CH4,3.0,kg/TJ,617.9984002499999,kg +eaeb295c-bcea-34e5-9683-402c3d8c9a85,SESCO,II.1.1,Entre Rios,AR-E,annual,2018,naphtha combustion consumption by to the public,205.99946674999998,TJ,N2O,0.6,kg/TJ,123.59968004999999,kg +72b3efd3-fd43-3be6-a979-9a7f80621854,SESCO,II.1.1,Formosa,AR-P,annual,2018,naphtha combustion consumption by to the public,102.61853525,TJ,CO2,73300.0,kg/TJ,7521938.633824999,kg +215f384b-5e31-37d2-b61c-69356a2ab73f,SESCO,II.1.1,Formosa,AR-P,annual,2018,naphtha combustion consumption by to the public,102.61853525,TJ,CH4,3.0,kg/TJ,307.85560575,kg +b0490ae2-ea27-31a6-b505-8e1235375a6c,SESCO,II.1.1,Formosa,AR-P,annual,2018,naphtha combustion consumption by to the public,102.61853525,TJ,N2O,0.6,kg/TJ,61.571121149999996,kg +80dd7c5c-3107-3397-ae5e-90e5a21bb423,SESCO,II.1.1,Jujuy,AR-Y,annual,2018,naphtha combustion consumption by to the public,32.35609684999999,TJ,CO2,73300.0,kg/TJ,2371701.8991049994,kg +93fb0a6a-03e8-3f40-8d74-1fa793dc72af,SESCO,II.1.1,Jujuy,AR-Y,annual,2018,naphtha combustion consumption by to the public,32.35609684999999,TJ,CH4,3.0,kg/TJ,97.06829054999997,kg +aaeb326a-6ca1-3d8b-8da7-139d00c8a3cc,SESCO,II.1.1,Jujuy,AR-Y,annual,2018,naphtha combustion consumption by to the public,32.35609684999999,TJ,N2O,0.6,kg/TJ,19.413658109999997,kg +d4988068-2316-319e-8e19-110d8bd96b10,SESCO,II.1.1,La Pampa,AR-L,annual,2018,naphtha combustion consumption by to the public,48.3664181,TJ,CO2,73300.0,kg/TJ,3545258.44673,kg +1a9fad96-3c70-343c-9a5c-844ec29c6ca6,SESCO,II.1.1,La Pampa,AR-L,annual,2018,naphtha combustion consumption by to the public,48.3664181,TJ,CH4,3.0,kg/TJ,145.09925429999998,kg +b19b13a8-4f46-388a-a86c-b9c1beef1002,SESCO,II.1.1,La Pampa,AR-L,annual,2018,naphtha combustion consumption by to the public,48.3664181,TJ,N2O,0.6,kg/TJ,29.01985086,kg +c8f3753f-2295-31de-900c-8fbf3b761313,SESCO,II.1.1,La Rioja,AR-F,annual,2018,naphtha combustion consumption by to the public,16.4067673,TJ,CO2,73300.0,kg/TJ,1202616.0430899998,kg +f5eaac46-0a55-33cc-91be-bf458c9bba9a,SESCO,II.1.1,La Rioja,AR-F,annual,2018,naphtha combustion consumption by to the public,16.4067673,TJ,CH4,3.0,kg/TJ,49.220301899999995,kg +98b21de4-b1dc-393b-bb7c-820802f82441,SESCO,II.1.1,La Rioja,AR-F,annual,2018,naphtha combustion consumption by to the public,16.4067673,TJ,N2O,0.6,kg/TJ,9.844060379999998,kg +b5226131-eb31-34fa-a229-7b72737878d8,SESCO,II.1.1,Mendoza,AR-M,annual,2018,naphtha combustion consumption by to the public,122.68480454999998,TJ,CO2,73300.0,kg/TJ,8992796.173515,kg +68a0cbd0-226e-3d54-8760-314cf6c063ed,SESCO,II.1.1,Mendoza,AR-M,annual,2018,naphtha combustion consumption by to the public,122.68480454999998,TJ,CH4,3.0,kg/TJ,368.05441364999996,kg +5dc7ced3-add6-30de-9cab-96c9abf040b5,SESCO,II.1.1,Mendoza,AR-M,annual,2018,naphtha combustion consumption by to the public,122.68480454999998,TJ,N2O,0.6,kg/TJ,73.61088272999999,kg +97450773-abd7-3e58-b77d-9ceb6d388ac4,SESCO,II.1.1,Misiones,AR-N,annual,2018,naphtha combustion consumption by to the public,77.97788845,TJ,CO2,73300.0,kg/TJ,5715779.223385,kg +6d6db4e8-4cd9-3cde-8d28-22cbbc582bc6,SESCO,II.1.1,Misiones,AR-N,annual,2018,naphtha combustion consumption by to the public,77.97788845,TJ,CH4,3.0,kg/TJ,233.93366534999998,kg +2783f4c8-2f6d-3b9c-b6e0-aae7eed0a991,SESCO,II.1.1,Misiones,AR-N,annual,2018,naphtha combustion consumption by to the public,77.97788845,TJ,N2O,0.6,kg/TJ,46.78673307,kg +d8fb52ad-d67e-3759-9773-ff51a2a0cc2d,SESCO,II.1.1,Neuquén,AR-Q,annual,2018,naphtha combustion consumption by to the public,134.4866985,TJ,CO2,73300.0,kg/TJ,9857875.000049999,kg +cb00ea53-f450-321a-8652-f07b033f55ea,SESCO,II.1.1,Neuquén,AR-Q,annual,2018,naphtha combustion consumption by to the public,134.4866985,TJ,CH4,3.0,kg/TJ,403.46009549999997,kg +094d4e40-fbd4-337d-b3ef-dc581252b1b3,SESCO,II.1.1,Neuquén,AR-Q,annual,2018,naphtha combustion consumption by to the public,134.4866985,TJ,N2O,0.6,kg/TJ,80.6920191,kg +4ac9bbe0-a2c9-3205-abfd-ab423f407fec,SESCO,II.1.1,Rio Negro,AR-R,annual,2018,naphtha combustion consumption by to the public,152.38776245,TJ,CO2,73300.0,kg/TJ,11170022.987585,kg +2d356a65-7211-3f89-9b42-40868afdf19e,SESCO,II.1.1,Rio Negro,AR-R,annual,2018,naphtha combustion consumption by to the public,152.38776245,TJ,CH4,3.0,kg/TJ,457.16328735,kg +f7e0a629-5cf7-3d39-8159-e9caa2962091,SESCO,II.1.1,Rio Negro,AR-R,annual,2018,naphtha combustion consumption by to the public,152.38776245,TJ,N2O,0.6,kg/TJ,91.43265747,kg +c0dd72dc-58fb-37c9-8948-85c761f627e1,SESCO,II.1.1,Salta,AR-A,annual,2018,naphtha combustion consumption by to the public,13.784124199999997,TJ,CO2,73300.0,kg/TJ,1010376.3038599998,kg +97041062-1129-3e79-997e-149a93a2994b,SESCO,II.1.1,Salta,AR-A,annual,2018,naphtha combustion consumption by to the public,13.784124199999997,TJ,CH4,3.0,kg/TJ,41.352372599999995,kg +2d164395-3ec2-3a3d-83ae-c522cc50b7a1,SESCO,II.1.1,Salta,AR-A,annual,2018,naphtha combustion consumption by to the public,13.784124199999997,TJ,N2O,0.6,kg/TJ,8.270474519999999,kg +13250b75-6026-3653-a316-07f0dd22eef7,SESCO,II.1.1,San Juan,AR-J,annual,2018,naphtha combustion consumption by to the public,57.057735349999994,TJ,CO2,73300.0,kg/TJ,4182332.0011549997,kg +26e15f6c-e18a-3b28-b547-2449b513b374,SESCO,II.1.1,San Juan,AR-J,annual,2018,naphtha combustion consumption by to the public,57.057735349999994,TJ,CH4,3.0,kg/TJ,171.17320604999998,kg +680bc0e1-2908-35e1-b818-65f72317d8ab,SESCO,II.1.1,San Juan,AR-J,annual,2018,naphtha combustion consumption by to the public,57.057735349999994,TJ,N2O,0.6,kg/TJ,34.23464120999999,kg +b04a5f1f-3f48-37bf-b13c-c167a21de02e,SESCO,II.1.1,San Luis,AR-D,annual,2018,naphtha combustion consumption by to the public,81.118961,TJ,CO2,73300.0,kg/TJ,5946019.8412999995,kg +5e745a1e-61e3-33b3-a3b6-43f770374daa,SESCO,II.1.1,San Luis,AR-D,annual,2018,naphtha combustion consumption by to the public,81.118961,TJ,CH4,3.0,kg/TJ,243.35688299999998,kg +ec3e7fdf-a84d-3035-a8c4-74115be1a823,SESCO,II.1.1,San Luis,AR-D,annual,2018,naphtha combustion consumption by to the public,81.118961,TJ,N2O,0.6,kg/TJ,48.671376599999995,kg +9f0e46bd-d8c4-3b20-9758-de13a6dd2e21,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2018,naphtha combustion consumption by to the public,72.73260225,TJ,CO2,73300.0,kg/TJ,5331299.744925,kg +56ab3ee3-0952-324c-b1d4-2eb7b2731eec,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2018,naphtha combustion consumption by to the public,72.73260225,TJ,CH4,3.0,kg/TJ,218.19780674999998,kg +20e314bb-8a8e-3213-85d4-7965861210ba,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2018,naphtha combustion consumption by to the public,72.73260225,TJ,N2O,0.6,kg/TJ,43.63956135,kg +1fb87641-5351-3130-8aee-a9fcca4624e2,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,naphtha combustion consumption by to the public,514.1600309999999,TJ,CO2,73300.0,kg/TJ,37687930.27229999,kg +47edf13a-3bef-3dc7-8ae3-ee41414d7816,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,naphtha combustion consumption by to the public,514.1600309999999,TJ,CH4,3.0,kg/TJ,1542.4800929999997,kg +6176fd64-058f-3a8d-88f1-2bd17144a57e,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,naphtha combustion consumption by to the public,514.1600309999999,TJ,N2O,0.6,kg/TJ,308.4960185999999,kg +20a40f22-7e40-3fd6-8d8e-204f1470cfc2,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2018,naphtha combustion consumption by to the public,75.20276609999999,TJ,CO2,73300.0,kg/TJ,5512362.7551299995,kg +fc70c127-faa2-3358-a45d-12b9ed2a424e,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2018,naphtha combustion consumption by to the public,75.20276609999999,TJ,CH4,3.0,kg/TJ,225.60829829999997,kg +b962c6fc-5454-3815-8cba-de5b3dd818e2,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2018,naphtha combustion consumption by to the public,75.20276609999999,TJ,N2O,0.6,kg/TJ,45.12165965999999,kg +d859ee12-f912-37bf-983e-fccb31b8aa91,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2018,naphtha combustion consumption by to the public,27.568248399999995,TJ,CO2,73300.0,kg/TJ,2020752.6077199995,kg +efa599dd-e3f7-3d18-88e9-bc7ee5230868,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2018,naphtha combustion consumption by to the public,27.568248399999995,TJ,CH4,3.0,kg/TJ,82.70474519999999,kg +0b6c9a51-d491-37f1-9acf-0f5ef4b850de,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2018,naphtha combustion consumption by to the public,27.568248399999995,TJ,N2O,0.6,kg/TJ,16.540949039999997,kg +634b8f6e-7d09-3ad3-a958-3bfbb6ff08ee,SESCO,II.1.1,Tucuman,AR-T,annual,2018,naphtha combustion consumption by to the public,11.832389799999998,TJ,CO2,73300.0,kg/TJ,867314.1723399998,kg +d72c1c33-24a1-3cd9-9705-22610af47c91,SESCO,II.1.1,Tucuman,AR-T,annual,2018,naphtha combustion consumption by to the public,11.832389799999998,TJ,CH4,3.0,kg/TJ,35.49716939999999,kg +c430b9a4-9815-36d0-bb13-d72ed45f63e7,SESCO,II.1.1,Tucuman,AR-T,annual,2018,naphtha combustion consumption by to the public,11.832389799999998,TJ,N2O,0.6,kg/TJ,7.0994338799999985,kg +1b5c3756-472a-3a45-81dd-98c22886b2ee,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,naphtha combustion consumption by freight transport,8.2338795,TJ,CO2,73300.0,kg/TJ,603543.3673500001,kg +5a871921-7f19-37ba-8344-b0d52fcbfc5b,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,naphtha combustion consumption by freight transport,8.2338795,TJ,CH4,3.0,kg/TJ,24.7016385,kg +3c5d14ba-51e4-3326-8323-8c75e080b540,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,naphtha combustion consumption by freight transport,8.2338795,TJ,N2O,0.6,kg/TJ,4.9403277,kg +62b1aed0-96a1-376a-a1ec-983b4e1d5252,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,naphtha combustion consumption by freight transport,3.2935518,TJ,CO2,73300.0,kg/TJ,241417.34694,kg +b2a3b375-eefa-31be-9116-5452fbd6c67b,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,naphtha combustion consumption by freight transport,3.2935518,TJ,CH4,3.0,kg/TJ,9.8806554,kg +2f8cc5fb-5d35-37cb-bb66-d394c7a205d7,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,naphtha combustion consumption by freight transport,3.2935518,TJ,N2O,0.6,kg/TJ,1.9761310799999998,kg +ed8e99e6-eeab-3113-b07f-b2dc9c04fc6e,SESCO,II.1.1,Catamarca,AR-K,annual,2018,naphtha combustion consumption by freight transport,0.030495849999999998,TJ,CO2,73300.0,kg/TJ,2235.345805,kg +00c84bdf-4d62-35ef-a404-60da452e682b,SESCO,II.1.1,Catamarca,AR-K,annual,2018,naphtha combustion consumption by freight transport,0.030495849999999998,TJ,CH4,3.0,kg/TJ,0.09148755,kg +223ac398-8dab-3788-815c-c78fa0952fcd,SESCO,II.1.1,Catamarca,AR-K,annual,2018,naphtha combustion consumption by freight transport,0.030495849999999998,TJ,N2O,0.6,kg/TJ,0.01829751,kg +d7a73771-112f-3151-ad98-91528219f9f0,SESCO,II.1.1,Chubut,AR-U,annual,2018,naphtha combustion consumption by freight transport,0.030495849999999998,TJ,CO2,73300.0,kg/TJ,2235.345805,kg +c2c5abc6-4ead-3a35-8ac2-69de607b95a3,SESCO,II.1.1,Chubut,AR-U,annual,2018,naphtha combustion consumption by freight transport,0.030495849999999998,TJ,CH4,3.0,kg/TJ,0.09148755,kg +dcf92fc3-bd12-3619-9641-6f23a29096f3,SESCO,II.1.1,Chubut,AR-U,annual,2018,naphtha combustion consumption by freight transport,0.030495849999999998,TJ,N2O,0.6,kg/TJ,0.01829751,kg +753435d8-dd48-3aa8-b24b-5f9481cc3f53,SESCO,II.1.1,Córdoba,AR-X,annual,2018,naphtha combustion consumption by freight transport,1.8907426999999999,TJ,CO2,73300.0,kg/TJ,138591.43991,kg +6a96d9f4-0255-377d-b3cc-61972be00828,SESCO,II.1.1,Córdoba,AR-X,annual,2018,naphtha combustion consumption by freight transport,1.8907426999999999,TJ,CH4,3.0,kg/TJ,5.6722281,kg +5ed98810-0317-34d7-8d07-d60f89b13587,SESCO,II.1.1,Córdoba,AR-X,annual,2018,naphtha combustion consumption by freight transport,1.8907426999999999,TJ,N2O,0.6,kg/TJ,1.13444562,kg +0ea462ee-cbd9-3dbc-9490-eaf45957fdb4,SESCO,II.1.1,Entre Rios,AR-E,annual,2018,naphtha combustion consumption by freight transport,0.030495849999999998,TJ,CO2,73300.0,kg/TJ,2235.345805,kg +1b0ec1af-bbda-3cf1-89cc-f93c6bad6a44,SESCO,II.1.1,Entre Rios,AR-E,annual,2018,naphtha combustion consumption by freight transport,0.030495849999999998,TJ,CH4,3.0,kg/TJ,0.09148755,kg +6c240424-8751-3d86-94ea-40abee743aa2,SESCO,II.1.1,Entre Rios,AR-E,annual,2018,naphtha combustion consumption by freight transport,0.030495849999999998,TJ,N2O,0.6,kg/TJ,0.01829751,kg +fd10fb8b-1846-3bd0-ada7-2973437a6018,SESCO,II.1.1,La Rioja,AR-F,annual,2018,naphtha combustion consumption by freight transport,0.030495849999999998,TJ,CO2,73300.0,kg/TJ,2235.345805,kg +eb6cf159-ad07-307c-8188-ff2021f2a77e,SESCO,II.1.1,La Rioja,AR-F,annual,2018,naphtha combustion consumption by freight transport,0.030495849999999998,TJ,CH4,3.0,kg/TJ,0.09148755,kg +4011c74a-28de-396a-b483-94d11ea0d200,SESCO,II.1.1,La Rioja,AR-F,annual,2018,naphtha combustion consumption by freight transport,0.030495849999999998,TJ,N2O,0.6,kg/TJ,0.01829751,kg +71652672-2a57-3e58-9d64-b184393a7987,SESCO,II.1.1,Mendoza,AR-M,annual,2018,naphtha combustion consumption by freight transport,0.09148754999999999,TJ,CO2,73300.0,kg/TJ,6706.037414999999,kg +b77b38e5-a897-39cd-b9b6-069354d78de9,SESCO,II.1.1,Mendoza,AR-M,annual,2018,naphtha combustion consumption by freight transport,0.09148754999999999,TJ,CH4,3.0,kg/TJ,0.27446265,kg +52a92db3-399e-39fb-b3af-959c2af43d41,SESCO,II.1.1,Mendoza,AR-M,annual,2018,naphtha combustion consumption by freight transport,0.09148754999999999,TJ,N2O,0.6,kg/TJ,0.05489252999999999,kg +6575ce6d-c0c0-3e12-840c-0f1b43342008,SESCO,II.1.1,Misiones,AR-N,annual,2018,naphtha combustion consumption by freight transport,0.030495849999999998,TJ,CO2,73300.0,kg/TJ,2235.345805,kg +d9c34595-2463-36ce-8455-add9321c5aec,SESCO,II.1.1,Misiones,AR-N,annual,2018,naphtha combustion consumption by freight transport,0.030495849999999998,TJ,CH4,3.0,kg/TJ,0.09148755,kg +1332de71-24a9-3374-814f-4514531283ad,SESCO,II.1.1,Misiones,AR-N,annual,2018,naphtha combustion consumption by freight transport,0.030495849999999998,TJ,N2O,0.6,kg/TJ,0.01829751,kg +99223433-7852-3981-8bf1-d19686c3dd8e,SESCO,II.1.1,Salta,AR-A,annual,2018,naphtha combustion consumption by freight transport,0.12198339999999999,TJ,CO2,73300.0,kg/TJ,8941.38322,kg +cfbd9a18-19ce-3148-8572-3f327b3c275a,SESCO,II.1.1,Salta,AR-A,annual,2018,naphtha combustion consumption by freight transport,0.12198339999999999,TJ,CH4,3.0,kg/TJ,0.3659502,kg +f4b64718-5d11-351e-ba0e-2879c58b035c,SESCO,II.1.1,Salta,AR-A,annual,2018,naphtha combustion consumption by freight transport,0.12198339999999999,TJ,N2O,0.6,kg/TJ,0.07319004,kg +615197cc-915d-3872-afac-4784c756ffe4,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,naphtha combustion consumption by freight transport,1.1588422999999999,TJ,CO2,73300.0,kg/TJ,84943.14059,kg +3283a106-5f37-308a-a999-39eb5fbb3423,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,naphtha combustion consumption by freight transport,1.1588422999999999,TJ,CH4,3.0,kg/TJ,3.4765268999999996,kg +b091ad5e-a64c-3495-a75e-0404bd6287ee,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,naphtha combustion consumption by freight transport,1.1588422999999999,TJ,N2O,0.6,kg/TJ,0.6953053799999999,kg +ac1be5db-5b1e-353b-a461-a0d2f3eb9e65,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2018,naphtha combustion consumption by freight transport,0.030495849999999998,TJ,CO2,73300.0,kg/TJ,2235.345805,kg +166dc269-b1e6-3f43-a936-10685b9227dc,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2018,naphtha combustion consumption by freight transport,0.030495849999999998,TJ,CH4,3.0,kg/TJ,0.09148755,kg +2b005269-36b4-32da-9c86-3e39d0b916d1,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2018,naphtha combustion consumption by freight transport,0.030495849999999998,TJ,N2O,0.6,kg/TJ,0.01829751,kg +56c0c246-cccb-38c6-8c8a-3ad5b8924892,SESCO,II.1.1,Tucuman,AR-T,annual,2018,naphtha combustion consumption by freight transport,0.030495849999999998,TJ,CO2,73300.0,kg/TJ,2235.345805,kg +9650d977-dbab-3625-9201-9bfc3570a960,SESCO,II.1.1,Tucuman,AR-T,annual,2018,naphtha combustion consumption by freight transport,0.030495849999999998,TJ,CH4,3.0,kg/TJ,0.09148755,kg +03b46f69-4979-3c80-8535-ef65ea1050a7,SESCO,II.1.1,Tucuman,AR-T,annual,2018,naphtha combustion consumption by freight transport,0.030495849999999998,TJ,N2O,0.6,kg/TJ,0.01829751,kg +d3b7cb48-eda2-3f76-b1ea-27f25a7922a3,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,naphtha combustion consumption by freight transport,5.428261299999999,TJ,CO2,73300.0,kg/TJ,397891.55328999995,kg +ae830394-4888-3ff1-bfd9-cc746ed7b6bf,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,naphtha combustion consumption by freight transport,5.428261299999999,TJ,CH4,3.0,kg/TJ,16.284783899999997,kg +26d37c83-0f0d-3972-9986-e41e009f9060,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,naphtha combustion consumption by freight transport,5.428261299999999,TJ,N2O,0.6,kg/TJ,3.2569567799999994,kg +1fbcefd9-94b9-3e3e-a38e-00c2d10dd9c0,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,naphtha combustion consumption by freight transport,2.6836347999999997,TJ,CO2,73300.0,kg/TJ,196710.43084,kg +3ea60da9-a299-3a9c-a206-0174f7fd6fa2,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,naphtha combustion consumption by freight transport,2.6836347999999997,TJ,CH4,3.0,kg/TJ,8.050904399999999,kg +5ae144dc-7518-3efe-934a-2d65b6d7fae8,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,naphtha combustion consumption by freight transport,2.6836347999999997,TJ,N2O,0.6,kg/TJ,1.6101808799999997,kg +d7a73771-112f-3151-ad98-91528219f9f0,SESCO,II.1.1,Chubut,AR-U,annual,2018,naphtha combustion consumption by freight transport,0.030495849999999998,TJ,CO2,73300.0,kg/TJ,2235.345805,kg +c2c5abc6-4ead-3a35-8ac2-69de607b95a3,SESCO,II.1.1,Chubut,AR-U,annual,2018,naphtha combustion consumption by freight transport,0.030495849999999998,TJ,CH4,3.0,kg/TJ,0.09148755,kg +dcf92fc3-bd12-3619-9641-6f23a29096f3,SESCO,II.1.1,Chubut,AR-U,annual,2018,naphtha combustion consumption by freight transport,0.030495849999999998,TJ,N2O,0.6,kg/TJ,0.01829751,kg +604e8ea0-4110-3249-8915-5d283806131a,SESCO,II.1.1,Corrientes,AR-W,annual,2018,naphtha combustion consumption by freight transport,0.09148754999999999,TJ,CO2,73300.0,kg/TJ,6706.037414999999,kg +150f66a5-bd8b-330d-aead-5601e1594b87,SESCO,II.1.1,Corrientes,AR-W,annual,2018,naphtha combustion consumption by freight transport,0.09148754999999999,TJ,CH4,3.0,kg/TJ,0.27446265,kg +6575ed5a-d94e-3b8c-b0b0-ab24037543c2,SESCO,II.1.1,Corrientes,AR-W,annual,2018,naphtha combustion consumption by freight transport,0.09148754999999999,TJ,N2O,0.6,kg/TJ,0.05489252999999999,kg +dbc2c085-e9cf-361c-aebd-da29b1da8903,SESCO,II.1.1,Córdoba,AR-X,annual,2018,naphtha combustion consumption by freight transport,1.4028090999999998,TJ,CO2,73300.0,kg/TJ,102825.90702999999,kg +23326320-0fb1-3fe7-92af-b431ed94fc9b,SESCO,II.1.1,Córdoba,AR-X,annual,2018,naphtha combustion consumption by freight transport,1.4028090999999998,TJ,CH4,3.0,kg/TJ,4.208427299999999,kg +5012ff8f-2ab2-30f8-a27a-0376e642073a,SESCO,II.1.1,Córdoba,AR-X,annual,2018,naphtha combustion consumption by freight transport,1.4028090999999998,TJ,N2O,0.6,kg/TJ,0.8416854599999999,kg +0b97ce0c-f62d-34d4-9011-8dbbad3c4a64,SESCO,II.1.1,Entre Rios,AR-E,annual,2018,naphtha combustion consumption by freight transport,0.24396679999999998,TJ,CO2,73300.0,kg/TJ,17882.76644,kg +7056027e-3ddb-38af-9948-f6693e724bfe,SESCO,II.1.1,Entre Rios,AR-E,annual,2018,naphtha combustion consumption by freight transport,0.24396679999999998,TJ,CH4,3.0,kg/TJ,0.7319004,kg +ef76cf67-02d6-31b1-8901-01ead61a3406,SESCO,II.1.1,Entre Rios,AR-E,annual,2018,naphtha combustion consumption by freight transport,0.24396679999999998,TJ,N2O,0.6,kg/TJ,0.14638008,kg +24d9cd3f-a60f-378c-a1cf-fa69829bff65,SESCO,II.1.1,Jujuy,AR-Y,annual,2018,naphtha combustion consumption by freight transport,0.030495849999999998,TJ,CO2,73300.0,kg/TJ,2235.345805,kg +a03871f8-083c-3afd-b4c0-0fba3ef4d022,SESCO,II.1.1,Jujuy,AR-Y,annual,2018,naphtha combustion consumption by freight transport,0.030495849999999998,TJ,CH4,3.0,kg/TJ,0.09148755,kg +c001fb4a-7dc0-3bba-9d9f-b00c7f1ba396,SESCO,II.1.1,Jujuy,AR-Y,annual,2018,naphtha combustion consumption by freight transport,0.030495849999999998,TJ,N2O,0.6,kg/TJ,0.01829751,kg +a8de0df2-5c17-3d33-8846-563a1215de7a,SESCO,II.1.1,La Pampa,AR-L,annual,2018,naphtha combustion consumption by freight transport,0.030495849999999998,TJ,CO2,73300.0,kg/TJ,2235.345805,kg +e23c1f37-caf7-39f5-beb6-2534bbd3d4b0,SESCO,II.1.1,La Pampa,AR-L,annual,2018,naphtha combustion consumption by freight transport,0.030495849999999998,TJ,CH4,3.0,kg/TJ,0.09148755,kg +fad0ad73-6ff0-3045-bd97-447423d813ca,SESCO,II.1.1,La Pampa,AR-L,annual,2018,naphtha combustion consumption by freight transport,0.030495849999999998,TJ,N2O,0.6,kg/TJ,0.01829751,kg +3520831d-9626-3027-b3c5-f0c99fd19321,SESCO,II.1.1,Mendoza,AR-M,annual,2018,naphtha combustion consumption by freight transport,0.060991699999999996,TJ,CO2,73300.0,kg/TJ,4470.69161,kg +c41db821-b326-38a2-b945-196823a461d9,SESCO,II.1.1,Mendoza,AR-M,annual,2018,naphtha combustion consumption by freight transport,0.060991699999999996,TJ,CH4,3.0,kg/TJ,0.1829751,kg +a7e08bea-ea3d-3a0b-9ba3-764b9d1d84e8,SESCO,II.1.1,Mendoza,AR-M,annual,2018,naphtha combustion consumption by freight transport,0.060991699999999996,TJ,N2O,0.6,kg/TJ,0.03659502,kg +304bee09-beea-3f97-a131-1cbbdef9332a,SESCO,II.1.1,Neuquén,AR-Q,annual,2018,naphtha combustion consumption by freight transport,0.030495849999999998,TJ,CO2,73300.0,kg/TJ,2235.345805,kg +58beb00e-4d76-3c74-8cd1-803e82c46afd,SESCO,II.1.1,Neuquén,AR-Q,annual,2018,naphtha combustion consumption by freight transport,0.030495849999999998,TJ,CH4,3.0,kg/TJ,0.09148755,kg +c8a93f6c-dcab-33c7-ac2d-f77b9640d7ff,SESCO,II.1.1,Neuquén,AR-Q,annual,2018,naphtha combustion consumption by freight transport,0.030495849999999998,TJ,N2O,0.6,kg/TJ,0.01829751,kg +58369854-9765-3f52-a2ce-4ce8a37e6335,SESCO,II.1.1,Rio Negro,AR-R,annual,2018,naphtha combustion consumption by freight transport,0.030495849999999998,TJ,CO2,73300.0,kg/TJ,2235.345805,kg +2f364a32-00cf-3118-90cb-d0a7bacccd6d,SESCO,II.1.1,Rio Negro,AR-R,annual,2018,naphtha combustion consumption by freight transport,0.030495849999999998,TJ,CH4,3.0,kg/TJ,0.09148755,kg +7951d92a-9515-33f2-9755-99afd3671de9,SESCO,II.1.1,Rio Negro,AR-R,annual,2018,naphtha combustion consumption by freight transport,0.030495849999999998,TJ,N2O,0.6,kg/TJ,0.01829751,kg +ad11e77b-eb40-3569-b2f8-c5ae99877d2f,SESCO,II.1.1,San Luis,AR-D,annual,2018,naphtha combustion consumption by freight transport,0.030495849999999998,TJ,CO2,73300.0,kg/TJ,2235.345805,kg +5fb5973d-48e8-3cd2-a33e-67bde5afd5a6,SESCO,II.1.1,San Luis,AR-D,annual,2018,naphtha combustion consumption by freight transport,0.030495849999999998,TJ,CH4,3.0,kg/TJ,0.09148755,kg +fcd1c7af-5be7-3d7e-b993-8fa717f1a7f0,SESCO,II.1.1,San Luis,AR-D,annual,2018,naphtha combustion consumption by freight transport,0.030495849999999998,TJ,N2O,0.6,kg/TJ,0.01829751,kg +f7e0aa60-26d8-30ad-bb30-1f01c5f8f253,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,naphtha combustion consumption by freight transport,1.2808257,TJ,CO2,73300.0,kg/TJ,93884.52381,kg +6f2a9c4a-84e2-378d-9872-35cb8d0d3e7f,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,naphtha combustion consumption by freight transport,1.2808257,TJ,CH4,3.0,kg/TJ,3.8424771,kg +35585c1e-cc48-3caa-897d-5c5e9826e374,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,naphtha combustion consumption by freight transport,1.2808257,TJ,N2O,0.6,kg/TJ,0.76849542,kg +ac1be5db-5b1e-353b-a461-a0d2f3eb9e65,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2018,naphtha combustion consumption by freight transport,0.030495849999999998,TJ,CO2,73300.0,kg/TJ,2235.345805,kg +166dc269-b1e6-3f43-a936-10685b9227dc,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2018,naphtha combustion consumption by freight transport,0.030495849999999998,TJ,CH4,3.0,kg/TJ,0.09148755,kg +2b005269-36b4-32da-9c86-3e39d0b916d1,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2018,naphtha combustion consumption by freight transport,0.030495849999999998,TJ,N2O,0.6,kg/TJ,0.01829751,kg +56c0c246-cccb-38c6-8c8a-3ad5b8924892,SESCO,II.1.1,Tucuman,AR-T,annual,2018,naphtha combustion consumption by freight transport,0.030495849999999998,TJ,CO2,73300.0,kg/TJ,2235.345805,kg +9650d977-dbab-3625-9201-9bfc3570a960,SESCO,II.1.1,Tucuman,AR-T,annual,2018,naphtha combustion consumption by freight transport,0.030495849999999998,TJ,CH4,3.0,kg/TJ,0.09148755,kg +03b46f69-4979-3c80-8535-ef65ea1050a7,SESCO,II.1.1,Tucuman,AR-T,annual,2018,naphtha combustion consumption by freight transport,0.030495849999999998,TJ,N2O,0.6,kg/TJ,0.01829751,kg +9c0ebd6d-b37a-30e6-9875-438f290a0148,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,naphtha combustion consumption by public passenger transport,0.030495849999999998,TJ,CO2,73300.0,kg/TJ,2235.345805,kg +9bdf8fba-8bd3-3c17-a29d-92ad9c4b7fe1,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,naphtha combustion consumption by public passenger transport,0.030495849999999998,TJ,CH4,3.0,kg/TJ,0.09148755,kg +4eff4028-71a2-3307-84aa-950dcc1809bf,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,naphtha combustion consumption by public passenger transport,0.030495849999999998,TJ,N2O,0.6,kg/TJ,0.01829751,kg +e9085028-d3b4-310f-bddc-aa9c0bcb6a9d,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,naphtha combustion consumption by public passenger transport,0.030495849999999998,TJ,CO2,73300.0,kg/TJ,2235.345805,kg +dc03a3a0-ec7a-35f4-83c1-c1ae18dba2fc,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,naphtha combustion consumption by public passenger transport,0.030495849999999998,TJ,CH4,3.0,kg/TJ,0.09148755,kg +8e9fe83e-28a9-3396-9b90-cedc8aa4870a,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,naphtha combustion consumption by public passenger transport,0.030495849999999998,TJ,N2O,0.6,kg/TJ,0.01829751,kg +7410e376-5ca0-3759-81c6-bd254cda64bf,SESCO,II.1.1,Salta,AR-A,annual,2018,naphtha combustion consumption by public passenger transport,0.6709086999999999,TJ,CO2,73300.0,kg/TJ,49177.60771,kg +957dea3c-e922-304d-b935-cd53d0f6d1e5,SESCO,II.1.1,Salta,AR-A,annual,2018,naphtha combustion consumption by public passenger transport,0.6709086999999999,TJ,CH4,3.0,kg/TJ,2.0127260999999996,kg +95794053-d9a9-39fc-94c1-bca60aeecc0f,SESCO,II.1.1,Salta,AR-A,annual,2018,naphtha combustion consumption by public passenger transport,0.6709086999999999,TJ,N2O,0.6,kg/TJ,0.4025452199999999,kg +00cd765a-a237-3fc6-ae69-3551ba33f8b4,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,naphtha combustion consumption by public passenger transport,0.21347095,TJ,CO2,73300.0,kg/TJ,15647.420634999999,kg +b5a0725e-efee-3e88-8269-967a277db0cf,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,naphtha combustion consumption by public passenger transport,0.21347095,TJ,CH4,3.0,kg/TJ,0.6404128499999999,kg +aaf4b4bf-efaa-3e7a-9215-71b93cf1a1ad,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,naphtha combustion consumption by public passenger transport,0.21347095,TJ,N2O,0.6,kg/TJ,0.12808256999999998,kg +9c0ebd6d-b37a-30e6-9875-438f290a0148,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,naphtha combustion consumption by public passenger transport,0.030495849999999998,TJ,CO2,73300.0,kg/TJ,2235.345805,kg +9bdf8fba-8bd3-3c17-a29d-92ad9c4b7fe1,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,naphtha combustion consumption by public passenger transport,0.030495849999999998,TJ,CH4,3.0,kg/TJ,0.09148755,kg +4eff4028-71a2-3307-84aa-950dcc1809bf,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,naphtha combustion consumption by public passenger transport,0.030495849999999998,TJ,N2O,0.6,kg/TJ,0.01829751,kg +e9085028-d3b4-310f-bddc-aa9c0bcb6a9d,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,naphtha combustion consumption by public passenger transport,0.030495849999999998,TJ,CO2,73300.0,kg/TJ,2235.345805,kg +dc03a3a0-ec7a-35f4-83c1-c1ae18dba2fc,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,naphtha combustion consumption by public passenger transport,0.030495849999999998,TJ,CH4,3.0,kg/TJ,0.09148755,kg +8e9fe83e-28a9-3396-9b90-cedc8aa4870a,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,naphtha combustion consumption by public passenger transport,0.030495849999999998,TJ,N2O,0.6,kg/TJ,0.01829751,kg +c6675373-8b71-3717-aac5-0061a59e1ebc,SESCO,II.1.1,Córdoba,AR-X,annual,2018,naphtha combustion consumption by public passenger transport,0.030495849999999998,TJ,CO2,73300.0,kg/TJ,2235.345805,kg +c5fc2307-7d22-3ee6-aeef-e06556b157ed,SESCO,II.1.1,Córdoba,AR-X,annual,2018,naphtha combustion consumption by public passenger transport,0.030495849999999998,TJ,CH4,3.0,kg/TJ,0.09148755,kg +016009af-de36-383e-aebf-c33ed5a905af,SESCO,II.1.1,Córdoba,AR-X,annual,2018,naphtha combustion consumption by public passenger transport,0.030495849999999998,TJ,N2O,0.6,kg/TJ,0.01829751,kg +0c850a87-33b9-3303-8ec6-b672a3af62fb,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,naphtha combustion consumption by public passenger transport,0.09148754999999999,TJ,CO2,73300.0,kg/TJ,6706.037414999999,kg +4831fd76-8a18-3768-93e8-327618d2e671,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,naphtha combustion consumption by public passenger transport,0.09148754999999999,TJ,CH4,3.0,kg/TJ,0.27446265,kg +1ecfdfca-e882-3cd0-bbe1-27a1ce3f9d5e,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,naphtha combustion consumption by public passenger transport,0.09148754999999999,TJ,N2O,0.6,kg/TJ,0.05489252999999999,kg +dced9ead-8f7d-3c76-a2ac-574a25c5abdc,SESCO,II.5.1,Buenos Aires,AR-B,annual,2018,naphtha combustion consumption by agriculture machines,4.37618497085,TJ,CO2,73300.0,kg/TJ,320774.358363305,kg +e3730d2c-21f1-32b3-a693-62c3f6386aa8,SESCO,II.5.1,Buenos Aires,AR-B,annual,2018,naphtha combustion consumption by agriculture machines,4.37618497085,TJ,CH4,3.0,kg/TJ,13.12855491255,kg +fc5e4d4e-59c2-32e3-9391-c52eae72ccb2,SESCO,II.5.1,Buenos Aires,AR-B,annual,2018,naphtha combustion consumption by agriculture machines,4.37618497085,TJ,N2O,0.6,kg/TJ,2.62571098251,kg +1405f697-faca-3d8c-a8de-c14ffba2db64,SESCO,II.5.1,Rio Negro,AR-R,annual,2018,naphtha combustion consumption by agriculture machines,0.4211476884999999,TJ,CO2,73300.0,kg/TJ,30870.125567049992,kg +892afb38-e4b7-3c24-817f-e88e930158fb,SESCO,II.5.1,Rio Negro,AR-R,annual,2018,naphtha combustion consumption by agriculture machines,0.4211476884999999,TJ,CH4,3.0,kg/TJ,1.2634430654999997,kg +f8da6ceb-79ff-30fc-b0c1-2e184d6d66fa,SESCO,II.5.1,Rio Negro,AR-R,annual,2018,naphtha combustion consumption by agriculture machines,0.4211476884999999,TJ,N2O,0.6,kg/TJ,0.2526886130999999,kg +ac7591ae-1051-33ed-97e5-d26b0d5b84ae,SESCO,II.5.1,Buenos Aires,AR-B,annual,2018,naphtha combustion consumption by agriculture machines,0.6661513473999999,TJ,CO2,73300.0,kg/TJ,48828.89376442,kg +1e2e018a-71af-374a-a913-53bb332c508f,SESCO,II.5.1,Buenos Aires,AR-B,annual,2018,naphtha combustion consumption by agriculture machines,0.6661513473999999,TJ,CH4,3.0,kg/TJ,1.9984540421999997,kg +9baa07ca-ef93-3250-bb1c-158412c4e0fa,SESCO,II.5.1,Buenos Aires,AR-B,annual,2018,naphtha combustion consumption by agriculture machines,0.6661513473999999,TJ,N2O,0.6,kg/TJ,0.39969080843999993,kg +fc2cad07-6ca6-340e-8bd6-ed941d2015d0,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,naphtha combustion consumption by to the public,1410.2093449443998,TJ,CO2,73300.0,kg/TJ,103368344.9844245,kg +75fd9216-4f8b-32c4-9934-d8871d7efc98,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,naphtha combustion consumption by to the public,1410.2093449443998,TJ,CH4,3.0,kg/TJ,4230.628034833199,kg +c0475fb0-9246-3804-9c37-f0ea4ba043ba,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,naphtha combustion consumption by to the public,1410.2093449443998,TJ,N2O,0.6,kg/TJ,846.1256069666399,kg +4a834f41-b062-35ff-9794-197656a98879,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,naphtha combustion consumption by to the public,92.15672043654999,TJ,CO2,73300.0,kg/TJ,6755087.607999114,kg +21f6106b-6dd9-306e-b9a4-56ed10708f6f,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,naphtha combustion consumption by to the public,92.15672043654999,TJ,CH4,3.0,kg/TJ,276.47016130964994,kg +98877b52-448c-3886-9ed3-ee7ed9379531,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,naphtha combustion consumption by to the public,92.15672043654999,TJ,N2O,0.6,kg/TJ,55.29403226192999,kg +2d3d6afd-fd95-3976-a35b-3aaa72feb656,SESCO,II.1.1,Chubut,AR-U,annual,2018,naphtha combustion consumption by to the public,482.41031363139996,TJ,CO2,73300.0,kg/TJ,35360675.989181615,kg +d626bc3b-0541-32ae-99ce-e2f09cdb141a,SESCO,II.1.1,Chubut,AR-U,annual,2018,naphtha combustion consumption by to the public,482.41031363139996,TJ,CH4,3.0,kg/TJ,1447.2309408941999,kg +71d7bfba-38ac-3b0b-aff5-1469fa2c5655,SESCO,II.1.1,Chubut,AR-U,annual,2018,naphtha combustion consumption by to the public,482.41031363139996,TJ,N2O,0.6,kg/TJ,289.44618817884,kg +d2a28006-0bc0-3e8b-9383-e9c2d729150f,SESCO,II.1.1,Córdoba,AR-X,annual,2018,naphtha combustion consumption by to the public,143.10696041949998,TJ,CO2,73300.0,kg/TJ,10489740.198749349,kg +0d486f0c-2b4c-34d8-ba37-fbf9e03da9c7,SESCO,II.1.1,Córdoba,AR-X,annual,2018,naphtha combustion consumption by to the public,143.10696041949998,TJ,CH4,3.0,kg/TJ,429.3208812585,kg +94e54903-39f1-35f6-a08b-0aa8b27af5d9,SESCO,II.1.1,Córdoba,AR-X,annual,2018,naphtha combustion consumption by to the public,143.10696041949998,TJ,N2O,0.6,kg/TJ,85.86417625169999,kg +7e07dbaa-0f60-34c6-82ba-5d7d633c8947,SESCO,II.1.1,Entre Rios,AR-E,annual,2018,naphtha combustion consumption by to the public,51.44030829245,TJ,CO2,73300.0,kg/TJ,3770574.597836585,kg +f58e5903-7cee-3bb7-bb96-294d04396347,SESCO,II.1.1,Entre Rios,AR-E,annual,2018,naphtha combustion consumption by to the public,51.44030829245,TJ,CH4,3.0,kg/TJ,154.32092487735,kg +cbfda835-5004-3a7f-b391-d1a3cadb7ce9,SESCO,II.1.1,Entre Rios,AR-E,annual,2018,naphtha combustion consumption by to the public,51.44030829245,TJ,N2O,0.6,kg/TJ,30.864184975469996,kg +593fc727-3418-3a0f-a94e-32b822f8d96c,SESCO,II.1.1,La Pampa,AR-L,annual,2018,naphtha combustion consumption by to the public,155.61791337785,TJ,CO2,73300.0,kg/TJ,11406793.050596405,kg +5ad7e9f2-0e76-39e0-8c34-1640b25268a5,SESCO,II.1.1,La Pampa,AR-L,annual,2018,naphtha combustion consumption by to the public,155.61791337785,TJ,CH4,3.0,kg/TJ,466.85374013355,kg +0b739616-3102-38ce-8e04-8c24267ae5d3,SESCO,II.1.1,La Pampa,AR-L,annual,2018,naphtha combustion consumption by to the public,155.61791337785,TJ,N2O,0.6,kg/TJ,93.37074802670999,kg +660f05cd-fe97-309c-989c-0df82a96c7df,SESCO,II.1.1,Neuquén,AR-Q,annual,2018,naphtha combustion consumption by to the public,148.32727051834996,TJ,CO2,73300.0,kg/TJ,10872388.928995052,kg +e403be75-337d-3b90-b340-0107ad179371,SESCO,II.1.1,Neuquén,AR-Q,annual,2018,naphtha combustion consumption by to the public,148.32727051834996,TJ,CH4,3.0,kg/TJ,444.9818115550499,kg +faf41c47-6656-36c3-90fe-08fa33d5ae3f,SESCO,II.1.1,Neuquén,AR-Q,annual,2018,naphtha combustion consumption by to the public,148.32727051834996,TJ,N2O,0.6,kg/TJ,88.99636231100997,kg +a1748908-266a-3a2b-b0d6-360d41a820ac,SESCO,II.1.1,Rio Negro,AR-R,annual,2018,naphtha combustion consumption by to the public,444.65934843714996,TJ,CO2,73300.0,kg/TJ,32593530.24044309,kg +46f6f3e9-e9ab-3362-853a-4eea70c829fb,SESCO,II.1.1,Rio Negro,AR-R,annual,2018,naphtha combustion consumption by to the public,444.65934843714996,TJ,CH4,3.0,kg/TJ,1333.97804531145,kg +a9c5a7b5-c116-3325-b7d2-a4ca93bf0a3c,SESCO,II.1.1,Rio Negro,AR-R,annual,2018,naphtha combustion consumption by to the public,444.65934843714996,TJ,N2O,0.6,kg/TJ,266.79560906228994,kg +d77647e8-c63b-3afa-849f-ffa714f3f4b5,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2018,naphtha combustion consumption by to the public,299.24732869954994,TJ,CO2,73300.0,kg/TJ,21934829.193677012,kg +bb7664e2-7364-344d-81b1-26a704836230,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2018,naphtha combustion consumption by to the public,299.24732869954994,TJ,CH4,3.0,kg/TJ,897.7419860986498,kg +36ac661a-be58-3026-9463-79eb5788b988,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2018,naphtha combustion consumption by to the public,299.24732869954994,TJ,N2O,0.6,kg/TJ,179.54839721972996,kg +223e028f-36c4-394c-bbbb-edfe95227399,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,naphtha combustion consumption by to the public,190.02793622119998,TJ,CO2,73300.0,kg/TJ,13929047.725013958,kg +e2759564-9a89-3eb6-b5d5-5d57f84a2abd,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,naphtha combustion consumption by to the public,190.02793622119998,TJ,CH4,3.0,kg/TJ,570.0838086635999,kg +a18d2f92-fbda-37d6-8b0f-267f2f25bc0f,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,naphtha combustion consumption by to the public,190.02793622119998,TJ,N2O,0.6,kg/TJ,114.01676173271998,kg +31190466-5999-31d5-987f-1a0695ff1941,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,naphtha combustion consumption by to the public,381.64986002605,TJ,CO2,73300.0,kg/TJ,27974934.739909466,kg +532bc749-dbb0-3da2-a3a3-d14f2bae9307,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,naphtha combustion consumption by to the public,381.64986002605,TJ,CH4,3.0,kg/TJ,1144.9495800781501,kg +9bf1b525-9fee-3e92-a977-82f35e5d4ad2,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,naphtha combustion consumption by to the public,381.64986002605,TJ,N2O,0.6,kg/TJ,228.98991601563,kg +b4d11ecd-ce3a-3294-9df8-43b530445a0d,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,naphtha combustion consumption by to the public,26.92536538615,TJ,CO2,73300.0,kg/TJ,1973629.2828047948,kg +0e5dd33f-02e9-34bf-994d-c8e6a36c8033,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,naphtha combustion consumption by to the public,26.92536538615,TJ,CH4,3.0,kg/TJ,80.77609615845,kg +0c34c859-30d2-3806-838c-8562c6382f8e,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,naphtha combustion consumption by to the public,26.92536538615,TJ,N2O,0.6,kg/TJ,16.155219231689998,kg +299460b8-f89f-365a-821e-a307100bcf91,SESCO,II.1.1,Chubut,AR-U,annual,2018,naphtha combustion consumption by to the public,106.07142786624999,TJ,CO2,73300.0,kg/TJ,7775035.662596124,kg +20ed4b16-83d3-314f-8c11-3723f8a1513a,SESCO,II.1.1,Chubut,AR-U,annual,2018,naphtha combustion consumption by to the public,106.07142786624999,TJ,CH4,3.0,kg/TJ,318.21428359874994,kg +fea8c909-65b1-3b60-9fa9-7d2330b23ce0,SESCO,II.1.1,Chubut,AR-U,annual,2018,naphtha combustion consumption by to the public,106.07142786624999,TJ,N2O,0.6,kg/TJ,63.64285671974999,kg +fcbabdab-182d-38bc-8171-2063486b817c,SESCO,II.1.1,Córdoba,AR-X,annual,2018,naphtha combustion consumption by to the public,40.27419182324999,TJ,CO2,73300.0,kg/TJ,2952098.2606442245,kg +add2c64e-da2b-3c3b-b38a-168531abec47,SESCO,II.1.1,Córdoba,AR-X,annual,2018,naphtha combustion consumption by to the public,40.27419182324999,TJ,CH4,3.0,kg/TJ,120.82257546974998,kg +e19c5a16-f43f-3511-8859-61ad30f70afc,SESCO,II.1.1,Córdoba,AR-X,annual,2018,naphtha combustion consumption by to the public,40.27419182324999,TJ,N2O,0.6,kg/TJ,24.164515093949994,kg +6a6a2839-b6f3-37bf-9061-32e10fc48e36,SESCO,II.1.1,Entre Rios,AR-E,annual,2018,naphtha combustion consumption by to the public,16.833648208299998,TJ,CO2,73300.0,kg/TJ,1233906.41366839,kg +db004c3c-87e1-30c8-816f-a7d0399a0359,SESCO,II.1.1,Entre Rios,AR-E,annual,2018,naphtha combustion consumption by to the public,16.833648208299998,TJ,CH4,3.0,kg/TJ,50.500944624899994,kg +ae3d4e5f-2888-3d88-abd9-ac806b937b6b,SESCO,II.1.1,Entre Rios,AR-E,annual,2018,naphtha combustion consumption by to the public,16.833648208299998,TJ,N2O,0.6,kg/TJ,10.100188924979998,kg +8520a6aa-04a0-3d2d-8695-49b2de2ea28a,SESCO,II.1.1,La Pampa,AR-L,annual,2018,naphtha combustion consumption by to the public,64.93411200045,TJ,CO2,73300.0,kg/TJ,4759670.409632985,kg +2e67b411-3995-31bd-a352-d6690f3bc889,SESCO,II.1.1,La Pampa,AR-L,annual,2018,naphtha combustion consumption by to the public,64.93411200045,TJ,CH4,3.0,kg/TJ,194.80233600135,kg +582059d5-9627-32e8-b5eb-b61d11ad0d3d,SESCO,II.1.1,La Pampa,AR-L,annual,2018,naphtha combustion consumption by to the public,64.93411200045,TJ,N2O,0.6,kg/TJ,38.960467200269996,kg +db95de0c-7703-3c97-a45d-25e30b55fe9d,SESCO,II.1.1,Neuquén,AR-Q,annual,2018,naphtha combustion consumption by to the public,75.09929368094998,TJ,CO2,73300.0,kg/TJ,5504778.226813634,kg +71e4de8a-343c-3235-ae26-3505cc61553d,SESCO,II.1.1,Neuquén,AR-Q,annual,2018,naphtha combustion consumption by to the public,75.09929368094998,TJ,CH4,3.0,kg/TJ,225.29788104284995,kg +f58e016b-ad74-3a7f-ab90-ac0633c4fe1c,SESCO,II.1.1,Neuquén,AR-Q,annual,2018,naphtha combustion consumption by to the public,75.09929368094998,TJ,N2O,0.6,kg/TJ,45.059576208569986,kg +de9a5db0-122c-39a6-837a-21609e5206ea,SESCO,II.1.1,Rio Negro,AR-R,annual,2018,naphtha combustion consumption by to the public,115.16660165779999,TJ,CO2,73300.0,kg/TJ,8441711.90151674,kg +77228222-3300-3d87-ad93-faeed3fd64d8,SESCO,II.1.1,Rio Negro,AR-R,annual,2018,naphtha combustion consumption by to the public,115.16660165779999,TJ,CH4,3.0,kg/TJ,345.49980497339993,kg +641eb284-6735-3399-af6c-7e25d9b385ca,SESCO,II.1.1,Rio Negro,AR-R,annual,2018,naphtha combustion consumption by to the public,115.16660165779999,TJ,N2O,0.6,kg/TJ,69.09996099467999,kg +ed1685c0-cfe3-38bf-9384-212e56b016a2,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2018,naphtha combustion consumption by to the public,58.70335240769999,TJ,CO2,73300.0,kg/TJ,4302955.731484409,kg +ffb639ae-372d-3987-a59a-41a4d1070e01,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2018,naphtha combustion consumption by to the public,58.70335240769999,TJ,CH4,3.0,kg/TJ,176.11005722309997,kg +a856b5dd-9c0c-3328-a575-c0a4c05a03cf,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2018,naphtha combustion consumption by to the public,58.70335240769999,TJ,N2O,0.6,kg/TJ,35.222011444619994,kg +46f770d7-f5d5-3a09-981f-1939c9d37ed5,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,naphtha combustion consumption by to the public,80.66862878304998,TJ,CO2,73300.0,kg/TJ,5913010.489797563,kg +418ea6fe-69f3-305a-921c-01f4f4d33250,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,naphtha combustion consumption by to the public,80.66862878304998,TJ,CH4,3.0,kg/TJ,242.00588634914993,kg +b5f649ad-de04-3e10-b8e6-ed67af2c5b4f,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,naphtha combustion consumption by to the public,80.66862878304998,TJ,N2O,0.6,kg/TJ,48.40117726982999,kg +921a8972-8ad7-325a-8c9b-5cb1d47a9c30,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,naphtha combustion consumption by to the public,79.60026767000001,TJ,CO2,73300.0,kg/TJ,5834699.620211001,kg +541fb955-fc3b-39a7-8f38-74a07542fbaa,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,naphtha combustion consumption by to the public,79.60026767000001,TJ,CH4,3.0,kg/TJ,238.80080301000004,kg +4c79595e-73fb-3c5a-9b32-7ce05b04948c,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,naphtha combustion consumption by to the public,79.60026767000001,TJ,N2O,0.6,kg/TJ,47.760160602000006,kg +dec61c45-b840-3cb7-9512-f2141cf16b3f,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,naphtha combustion consumption by to the public,5.3062778999999995,TJ,CO2,73300.0,kg/TJ,388950.17007,kg +b1e1c5a1-fb09-3ec7-ba28-7ed12ec12b92,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,naphtha combustion consumption by to the public,5.3062778999999995,TJ,CH4,3.0,kg/TJ,15.918833699999999,kg +f014a068-1967-38bd-a770-37a116aebc50,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,naphtha combustion consumption by to the public,5.3062778999999995,TJ,N2O,0.6,kg/TJ,3.18376674,kg +d1fee8b3-38e6-3d76-95eb-3c7a877e1c7c,SESCO,II.1.1,Córdoba,AR-X,annual,2018,naphtha combustion consumption by to the public,16.376271449999997,TJ,CO2,73300.0,kg/TJ,1200380.6972849998,kg +2093a5db-668a-36fd-a7b5-e42bde8ce8b8,SESCO,II.1.1,Córdoba,AR-X,annual,2018,naphtha combustion consumption by to the public,16.376271449999997,TJ,CH4,3.0,kg/TJ,49.12881434999999,kg +d7253c73-85be-3034-b0cb-be8ce461ae5c,SESCO,II.1.1,Córdoba,AR-X,annual,2018,naphtha combustion consumption by to the public,16.376271449999997,TJ,N2O,0.6,kg/TJ,9.825762869999998,kg +dd1971ce-dfb3-3f83-81bf-9ae594143384,SESCO,II.1.1,Entre Rios,AR-E,annual,2018,naphtha combustion consumption by to the public,22.73770576,TJ,CO2,73300.0,kg/TJ,1666673.8322080001,kg +9a7674c6-e9a1-3fec-b09a-19bdfa7c5e6b,SESCO,II.1.1,Entre Rios,AR-E,annual,2018,naphtha combustion consumption by to the public,22.73770576,TJ,CH4,3.0,kg/TJ,68.21311728,kg +4cf3bfe1-477a-37f5-876d-b63bef596f24,SESCO,II.1.1,Entre Rios,AR-E,annual,2018,naphtha combustion consumption by to the public,22.73770576,TJ,N2O,0.6,kg/TJ,13.642623456,kg +c6b30006-2805-341c-97e4-c79079880ab5,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,naphtha combustion consumption by to the public,0.51842945,TJ,CO2,73300.0,kg/TJ,38000.878684999996,kg +03384c16-6b49-3588-b7df-8dd5e259dcff,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,naphtha combustion consumption by to the public,0.51842945,TJ,CH4,3.0,kg/TJ,1.5552883499999999,kg +d789f50c-7b8c-3dd0-a3bf-6ad907c04df3,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,naphtha combustion consumption by to the public,0.51842945,TJ,N2O,0.6,kg/TJ,0.31105766999999995,kg +bf1b1f70-c9a0-333e-944a-9d7651bd7d6e,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,naphtha combustion consumption by to the public,8.016444089499998,TJ,CO2,73300.0,kg/TJ,587605.3517603499,kg +92229769-66bd-3be9-8218-c03648ad984a,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,naphtha combustion consumption by to the public,8.016444089499998,TJ,CH4,3.0,kg/TJ,24.049332268499995,kg +08036a60-7845-3cd0-b318-7590d14e6ebc,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,naphtha combustion consumption by to the public,8.016444089499998,TJ,N2O,0.6,kg/TJ,4.809866453699999,kg +ba1c056c-0aad-35ba-b13f-a00cc10eff1b,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,naphtha combustion consumption by to the public,0.4269419,TJ,CO2,73300.0,kg/TJ,31294.841269999997,kg +5ef3db99-f20a-3686-a17f-1ef8c446dae6,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,naphtha combustion consumption by to the public,0.4269419,TJ,CH4,3.0,kg/TJ,1.2808256999999998,kg +4251bf0b-d750-3628-826e-181cc8c81f9e,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,naphtha combustion consumption by to the public,0.4269419,TJ,N2O,0.6,kg/TJ,0.25616513999999996,kg +80ba1d30-673b-32c0-b029-16137d8fbd00,SESCO,II.1.1,Córdoba,AR-X,annual,2018,naphtha combustion consumption by to the public,0.7319003999999999,TJ,CO2,73300.0,kg/TJ,53648.29931999999,kg +52c04323-4880-3174-afb6-eb95b437fa0a,SESCO,II.1.1,Córdoba,AR-X,annual,2018,naphtha combustion consumption by to the public,0.7319003999999999,TJ,CH4,3.0,kg/TJ,2.1957012,kg +2bc45857-082f-30b6-ad4a-fa357cb852af,SESCO,II.1.1,Córdoba,AR-X,annual,2018,naphtha combustion consumption by to the public,0.7319003999999999,TJ,N2O,0.6,kg/TJ,0.4391402399999999,kg +115da545-0728-38f9-b3f5-a6012805e901,SESCO,II.1.1,Entre Rios,AR-E,annual,2018,naphtha combustion consumption by to the public,1.5705362749999998,TJ,CO2,73300.0,kg/TJ,115120.30895749999,kg +a2b4dbab-9c73-3706-968a-18e4fb7c7d2e,SESCO,II.1.1,Entre Rios,AR-E,annual,2018,naphtha combustion consumption by to the public,1.5705362749999998,TJ,CH4,3.0,kg/TJ,4.711608824999999,kg +d866f951-32fd-3bd8-8915-4b11b5abd380,SESCO,II.1.1,Entre Rios,AR-E,annual,2018,naphtha combustion consumption by to the public,1.5705362749999998,TJ,N2O,0.6,kg/TJ,0.9423217649999999,kg +b3bc5286-2fc3-3b16-93c3-a0f3361def30,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,naphtha combustion consumption by to the public,1.0978506,TJ,CO2,73300.0,kg/TJ,80472.44897999999,kg +fcea5d83-9319-3090-bd9e-10c6a4918b8e,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,naphtha combustion consumption by to the public,1.0978506,TJ,CH4,3.0,kg/TJ,3.2935517999999995,kg +13ebb7fa-24ec-3678-8fc0-a63a9e9cef0b,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,naphtha combustion consumption by to the public,1.0978506,TJ,N2O,0.6,kg/TJ,0.6587103599999999,kg +280615f1-0d9e-39dd-acf0-e9727ad64945,SESCO,II.1.1,Catamarca,AR-K,annual,2018,naphtha combustion consumption by to the public,246.16738053599997,TJ,CO2,73300.0,kg/TJ,18044068.993288796,kg +5d05671f-706e-300c-8442-1e6ab3bebad0,SESCO,II.1.1,Catamarca,AR-K,annual,2018,naphtha combustion consumption by to the public,246.16738053599997,TJ,CH4,3.0,kg/TJ,738.5021416079999,kg +37fcbbc9-65c5-3ef9-a716-c25b6e64e07b,SESCO,II.1.1,Catamarca,AR-K,annual,2018,naphtha combustion consumption by to the public,246.16738053599997,TJ,N2O,0.6,kg/TJ,147.7004283216,kg +8a902070-c9ba-34dd-ab90-4b7fc8be8048,SESCO,II.1.1,Chaco,AR-H,annual,2018,naphtha combustion consumption by to the public,127.22868619999998,TJ,CO2,73300.0,kg/TJ,9325862.69846,kg +34b7df28-771d-3b62-85c6-6273453525a7,SESCO,II.1.1,Chaco,AR-H,annual,2018,naphtha combustion consumption by to the public,127.22868619999998,TJ,CH4,3.0,kg/TJ,381.68605859999997,kg +d727d5d8-2c48-3d43-a695-71704b1221e1,SESCO,II.1.1,Chaco,AR-H,annual,2018,naphtha combustion consumption by to the public,127.22868619999998,TJ,N2O,0.6,kg/TJ,76.33721171999998,kg +8f62b5a0-513d-3b0f-a82d-7be252d6d771,SESCO,II.1.1,Jujuy,AR-Y,annual,2018,naphtha combustion consumption by to the public,570.4553701,TJ,CO2,73300.0,kg/TJ,41814378.62833,kg +7ca8528f-2d7b-3332-970d-5a4b51156419,SESCO,II.1.1,Jujuy,AR-Y,annual,2018,naphtha combustion consumption by to the public,570.4553701,TJ,CH4,3.0,kg/TJ,1711.3661103,kg +1c7139a9-5bd3-317e-84b1-b55fe8fbcbd1,SESCO,II.1.1,Jujuy,AR-Y,annual,2018,naphtha combustion consumption by to the public,570.4553701,TJ,N2O,0.6,kg/TJ,342.27322205999997,kg +383b79ca-cba1-3d75-81ea-32a97ae24069,SESCO,II.1.1,La Rioja,AR-F,annual,2018,naphtha combustion consumption by to the public,446.93253959199996,TJ,CO2,73300.0,kg/TJ,32760155.152093597,kg +f4d99723-388b-3b5c-a9f5-1cd4bfab1561,SESCO,II.1.1,La Rioja,AR-F,annual,2018,naphtha combustion consumption by to the public,446.93253959199996,TJ,CH4,3.0,kg/TJ,1340.7976187759998,kg +0f9c5489-a228-3ddf-932e-5e0d007d20c2,SESCO,II.1.1,La Rioja,AR-F,annual,2018,naphtha combustion consumption by to the public,446.93253959199996,TJ,N2O,0.6,kg/TJ,268.1595237552,kg +02bec8bc-f91a-3c28-baa9-b0de73d85c38,SESCO,II.1.1,Salta,AR-A,annual,2018,naphtha combustion consumption by to the public,1060.124183965,TJ,CO2,73300.0,kg/TJ,77707102.68463449,kg +6fdcaa64-c2a5-32ce-a30a-74c077237a5b,SESCO,II.1.1,Salta,AR-A,annual,2018,naphtha combustion consumption by to the public,1060.124183965,TJ,CH4,3.0,kg/TJ,3180.3725518949996,kg +84aeb218-ff1d-347c-a260-40a7bcbbc567,SESCO,II.1.1,Salta,AR-A,annual,2018,naphtha combustion consumption by to the public,1060.124183965,TJ,N2O,0.6,kg/TJ,636.0745103789999,kg +722df192-7e7f-3bbc-90c3-92f76211a68d,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2018,naphtha combustion consumption by to the public,605.592078553,TJ,CO2,73300.0,kg/TJ,44389899.3579349,kg +2920a562-0004-3abd-867c-f3a9028c2d6f,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2018,naphtha combustion consumption by to the public,605.592078553,TJ,CH4,3.0,kg/TJ,1816.776235659,kg +acc208b3-bc4b-379c-853d-59d449343bcd,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2018,naphtha combustion consumption by to the public,605.592078553,TJ,N2O,0.6,kg/TJ,363.35524713179996,kg +8de9ce89-431d-3c92-9d68-3c267398ac8b,SESCO,II.1.1,Tucuman,AR-T,annual,2018,naphtha combustion consumption by to the public,2287.122269047,TJ,CO2,73300.0,kg/TJ,167646062.3211451,kg +ba4a8aef-5233-36a3-b5d9-dce541977bdb,SESCO,II.1.1,Tucuman,AR-T,annual,2018,naphtha combustion consumption by to the public,2287.122269047,TJ,CH4,3.0,kg/TJ,6861.366807140999,kg +b772e834-1e33-39a8-b47b-e6be19091e15,SESCO,II.1.1,Tucuman,AR-T,annual,2018,naphtha combustion consumption by to the public,2287.122269047,TJ,N2O,0.6,kg/TJ,1372.2733614282,kg +d4bdca1e-7d30-3892-ba00-83ad68957aba,SESCO,II.1.1,Catamarca,AR-K,annual,2018,naphtha combustion consumption by to the public,21.682549349999995,TJ,CO2,73300.0,kg/TJ,1589330.8673549995,kg +a38ef2d9-5e53-3ac9-8a3f-e4cd6254e96f,SESCO,II.1.1,Catamarca,AR-K,annual,2018,naphtha combustion consumption by to the public,21.682549349999995,TJ,CH4,3.0,kg/TJ,65.04764804999999,kg +1d75a5e3-a812-32a7-badb-099ee879b743,SESCO,II.1.1,Catamarca,AR-K,annual,2018,naphtha combustion consumption by to the public,21.682549349999995,TJ,N2O,0.6,kg/TJ,13.009529609999996,kg +73863abb-407c-3838-a3bb-97836b1de099,SESCO,II.1.1,Chaco,AR-H,annual,2018,naphtha combustion consumption by to the public,3.4155352,TJ,CO2,73300.0,kg/TJ,250358.73015999998,kg +ea3e774a-a09d-375c-a67e-b081558c503d,SESCO,II.1.1,Chaco,AR-H,annual,2018,naphtha combustion consumption by to the public,3.4155352,TJ,CH4,3.0,kg/TJ,10.246605599999999,kg +2814521d-20c9-309c-ad7d-3926f86b57d9,SESCO,II.1.1,Chaco,AR-H,annual,2018,naphtha combustion consumption by to the public,3.4155352,TJ,N2O,0.6,kg/TJ,2.0493211199999997,kg +680585bf-a54c-3b36-97ed-a9ccd5e0f071,SESCO,II.1.1,Jujuy,AR-Y,annual,2018,naphtha combustion consumption by to the public,26.317918549999995,TJ,CO2,73300.0,kg/TJ,1929103.4297149996,kg +b2806434-0417-3cbe-91cd-38e032a071bc,SESCO,II.1.1,Jujuy,AR-Y,annual,2018,naphtha combustion consumption by to the public,26.317918549999995,TJ,CH4,3.0,kg/TJ,78.95375564999998,kg +e86b64e3-4b2a-3ece-8a5f-c92f25c14715,SESCO,II.1.1,Jujuy,AR-Y,annual,2018,naphtha combustion consumption by to the public,26.317918549999995,TJ,N2O,0.6,kg/TJ,15.790751129999997,kg +b5882507-3d21-3a68-89a5-7053f951285d,SESCO,II.1.1,La Rioja,AR-F,annual,2018,naphtha combustion consumption by to the public,36.93047435,TJ,CO2,73300.0,kg/TJ,2707003.7698549996,kg +44fe27ef-7000-3740-8d65-f7b1a60c695a,SESCO,II.1.1,La Rioja,AR-F,annual,2018,naphtha combustion consumption by to the public,36.93047435,TJ,CH4,3.0,kg/TJ,110.79142304999999,kg +2c31d67b-4c1e-37fc-904c-6748e48a1b74,SESCO,II.1.1,La Rioja,AR-F,annual,2018,naphtha combustion consumption by to the public,36.93047435,TJ,N2O,0.6,kg/TJ,22.15828461,kg +4f7a437d-1cef-335c-b35c-8d1a12211485,SESCO,II.1.1,Salta,AR-A,annual,2018,naphtha combustion consumption by to the public,66.2708365935,TJ,CO2,73300.0,kg/TJ,4857652.322303549,kg +cec206b0-883a-3457-a26c-b7afef083cdf,SESCO,II.1.1,Salta,AR-A,annual,2018,naphtha combustion consumption by to the public,66.2708365935,TJ,CH4,3.0,kg/TJ,198.81250978049997,kg +a36a9779-11b7-3fed-a21d-81e0f37a8648,SESCO,II.1.1,Salta,AR-A,annual,2018,naphtha combustion consumption by to the public,66.2708365935,TJ,N2O,0.6,kg/TJ,39.762501956099996,kg +a876bac1-39cc-32b6-a0ad-f2086692a45b,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2018,naphtha combustion consumption by to the public,75.56993613399999,TJ,CO2,73300.0,kg/TJ,5539276.318622199,kg +f1cefee3-5a1c-324b-8ebf-10361e62d339,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2018,naphtha combustion consumption by to the public,75.56993613399999,TJ,CH4,3.0,kg/TJ,226.70980840199996,kg +f0986125-783d-350d-abe0-40aa5437731d,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2018,naphtha combustion consumption by to the public,75.56993613399999,TJ,N2O,0.6,kg/TJ,45.34196168039999,kg +58707a71-7bda-3f79-99a0-369ef6a18321,SESCO,II.1.1,Tucuman,AR-T,annual,2018,naphtha combustion consumption by to the public,164.89990474649997,TJ,CO2,73300.0,kg/TJ,12087163.017918447,kg +373cbefe-cbd8-3e43-975d-5f757b495f3f,SESCO,II.1.1,Tucuman,AR-T,annual,2018,naphtha combustion consumption by to the public,164.89990474649997,TJ,CH4,3.0,kg/TJ,494.69971423949994,kg +4b37570c-e138-3e3d-8e01-808e27220fe5,SESCO,II.1.1,Tucuman,AR-T,annual,2018,naphtha combustion consumption by to the public,164.89990474649997,TJ,N2O,0.6,kg/TJ,98.93994284789999,kg +46aa9e2a-2c1a-3a73-b961-c7daa01a8f59,SESCO,II.5.1,Buenos Aires,AR-B,annual,2018,naphtha combustion consumption by agriculture machines,0.39644605,TJ,CO2,73300.0,kg/TJ,29059.495465,kg +8c08bc1f-43a5-3cf4-a6ba-d7be48c6c729,SESCO,II.5.1,Buenos Aires,AR-B,annual,2018,naphtha combustion consumption by agriculture machines,0.39644605,TJ,CH4,3.0,kg/TJ,1.18933815,kg +128bb160-7bbb-3aa1-bfa0-586a7c67e14b,SESCO,II.5.1,Buenos Aires,AR-B,annual,2018,naphtha combustion consumption by agriculture machines,0.39644605,TJ,N2O,0.6,kg/TJ,0.23786763,kg +d485574e-769b-343e-b8cd-d201b4d15e8e,SESCO,II.5.1,Buenos Aires,AR-B,annual,2018,naphtha combustion consumption by agriculture machines,0.36595019999999995,TJ,CO2,73300.0,kg/TJ,26824.149659999995,kg +65bcfe1b-7a3b-38d1-9d55-97b9e9cf71f1,SESCO,II.5.1,Buenos Aires,AR-B,annual,2018,naphtha combustion consumption by agriculture machines,0.36595019999999995,TJ,CH4,3.0,kg/TJ,1.0978506,kg +d3d93b5d-b0cc-3163-b804-322809a3d14c,SESCO,II.5.1,Buenos Aires,AR-B,annual,2018,naphtha combustion consumption by agriculture machines,0.36595019999999995,TJ,N2O,0.6,kg/TJ,0.21957011999999995,kg +645186dd-f8a0-3bbe-80da-661afee9554b,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,naphtha combustion consumption by to the public,16358.187410949999,TJ,CO2,73300.0,kg/TJ,1199055137.2226348,kg +ef672c01-95e7-32ee-8742-13199a60bf81,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,naphtha combustion consumption by to the public,16358.187410949999,TJ,CH4,3.0,kg/TJ,49074.562232849996,kg +69df56e8-a89f-3f85-bf96-6640358d18a5,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,naphtha combustion consumption by to the public,16358.187410949999,TJ,N2O,0.6,kg/TJ,9814.912446569999,kg +7f13de32-cd7e-30dd-990d-308b068ecda5,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,naphtha combustion consumption by to the public,4699.56296425,TJ,CO2,73300.0,kg/TJ,344477965.279525,kg +12cc32d9-0fa1-3f0a-8a52-4b38dc55d6bb,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,naphtha combustion consumption by to the public,4699.56296425,TJ,CH4,3.0,kg/TJ,14098.68889275,kg +11bca2b4-06ea-3344-b25d-40f792dd053e,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,naphtha combustion consumption by to the public,4699.56296425,TJ,N2O,0.6,kg/TJ,2819.73777855,kg +2b2868ba-6307-3e39-9d15-0a026724b1eb,SESCO,II.1.1,Catamarca,AR-K,annual,2018,naphtha combustion consumption by to the public,40.22402615,TJ,CO2,73300.0,kg/TJ,2948421.116795,kg +018c2d65-87b6-3973-af45-78065ed00bba,SESCO,II.1.1,Catamarca,AR-K,annual,2018,naphtha combustion consumption by to the public,40.22402615,TJ,CH4,3.0,kg/TJ,120.67207845,kg +dc219630-b529-32f9-b16b-8c6049546374,SESCO,II.1.1,Catamarca,AR-K,annual,2018,naphtha combustion consumption by to the public,40.22402615,TJ,N2O,0.6,kg/TJ,24.13441569,kg +d6ae14a2-5d87-34fa-9fb9-af16948165bb,SESCO,II.1.1,Chaco,AR-H,annual,2018,naphtha combustion consumption by to the public,918.9314480499999,TJ,CO2,73300.0,kg/TJ,67357675.14206499,kg +7912bf1d-f424-35f4-a23a-3b6a7b7633dc,SESCO,II.1.1,Chaco,AR-H,annual,2018,naphtha combustion consumption by to the public,918.9314480499999,TJ,CH4,3.0,kg/TJ,2756.7943441499997,kg +dcd0b0db-4178-3cc4-a2a8-82541a01fbd7,SESCO,II.1.1,Chaco,AR-H,annual,2018,naphtha combustion consumption by to the public,918.9314480499999,TJ,N2O,0.6,kg/TJ,551.3588688299999,kg +36a1c0a5-4f4c-37bb-9675-00ecd0cfbc70,SESCO,II.1.1,Corrientes,AR-W,annual,2018,naphtha combustion consumption by to the public,837.9344704499999,TJ,CO2,73300.0,kg/TJ,61420596.683984995,kg +5f723f2b-32b8-3fe3-b0f8-a58c0579e603,SESCO,II.1.1,Corrientes,AR-W,annual,2018,naphtha combustion consumption by to the public,837.9344704499999,TJ,CH4,3.0,kg/TJ,2513.80341135,kg +95c3009c-ff9c-3c0d-8d52-e497339aacbd,SESCO,II.1.1,Corrientes,AR-W,annual,2018,naphtha combustion consumption by to the public,837.9344704499999,TJ,N2O,0.6,kg/TJ,502.76068226999996,kg +e4020223-9ddb-3ede-8f0a-6a1811c730cc,SESCO,II.1.1,Córdoba,AR-X,annual,2018,naphtha combustion consumption by to the public,3987.2713957999995,TJ,CO2,73300.0,kg/TJ,292266993.31214,kg +2a6e91f0-bf5c-3171-9d8b-03b78a06eadd,SESCO,II.1.1,Córdoba,AR-X,annual,2018,naphtha combustion consumption by to the public,3987.2713957999995,TJ,CH4,3.0,kg/TJ,11961.8141874,kg +81cd3bff-1a00-3367-892a-396dc0225d18,SESCO,II.1.1,Córdoba,AR-X,annual,2018,naphtha combustion consumption by to the public,3987.2713957999995,TJ,N2O,0.6,kg/TJ,2392.3628374799996,kg +0da45af2-409a-3450-b676-b8c430c58891,SESCO,II.1.1,Entre Rios,AR-E,annual,2018,naphtha combustion consumption by to the public,914.4485580999999,TJ,CO2,73300.0,kg/TJ,67029079.30872999,kg +f8781628-de43-3699-915a-85927ea0f8c3,SESCO,II.1.1,Entre Rios,AR-E,annual,2018,naphtha combustion consumption by to the public,914.4485580999999,TJ,CH4,3.0,kg/TJ,2743.3456742999997,kg +62d5345d-4f51-3ff0-a609-c3bdab231fb8,SESCO,II.1.1,Entre Rios,AR-E,annual,2018,naphtha combustion consumption by to the public,914.4485580999999,TJ,N2O,0.6,kg/TJ,548.6691348599999,kg +bf747678-c7bf-3a3b-a78d-604f1cc191f2,SESCO,II.1.1,Formosa,AR-P,annual,2018,naphtha combustion consumption by to the public,373.9401127,TJ,CO2,73300.0,kg/TJ,27409810.26091,kg +0b73ce26-0c78-3e38-b902-4008167abd68,SESCO,II.1.1,Formosa,AR-P,annual,2018,naphtha combustion consumption by to the public,373.9401127,TJ,CH4,3.0,kg/TJ,1121.8203380999998,kg +ef5ea1cc-0d5b-30da-aad0-a47712e7c69a,SESCO,II.1.1,Formosa,AR-P,annual,2018,naphtha combustion consumption by to the public,373.9401127,TJ,N2O,0.6,kg/TJ,224.36406762,kg +885b9c38-84b2-3199-bb28-b4f5302454ea,SESCO,II.1.1,Jujuy,AR-Y,annual,2018,naphtha combustion consumption by to the public,180.23047349999996,TJ,CO2,73300.0,kg/TJ,13210893.707549997,kg +95744fc9-d068-38d2-9c8c-ca050918b0b9,SESCO,II.1.1,Jujuy,AR-Y,annual,2018,naphtha combustion consumption by to the public,180.23047349999996,TJ,CH4,3.0,kg/TJ,540.6914204999998,kg +05eebf95-70e3-3843-ad27-d7db249725c6,SESCO,II.1.1,Jujuy,AR-Y,annual,2018,naphtha combustion consumption by to the public,180.23047349999996,TJ,N2O,0.6,kg/TJ,108.13828409999998,kg +f82d305e-2d42-3d1a-8088-b77c2457481b,SESCO,II.1.1,La Pampa,AR-L,annual,2018,naphtha combustion consumption by to the public,333.16716125,TJ,CO2,73300.0,kg/TJ,24421152.919625,kg +8d417b95-1408-3da7-9fcb-bc4ce4e3c8cc,SESCO,II.1.1,La Pampa,AR-L,annual,2018,naphtha combustion consumption by to the public,333.16716125,TJ,CH4,3.0,kg/TJ,999.50148375,kg +9d2d45c4-dd93-3ced-aae4-e7d4526968fe,SESCO,II.1.1,La Pampa,AR-L,annual,2018,naphtha combustion consumption by to the public,333.16716125,TJ,N2O,0.6,kg/TJ,199.90029675,kg +7276acfa-866d-32ec-99d2-196c6d358663,SESCO,II.1.1,La Rioja,AR-F,annual,2018,naphtha combustion consumption by to the public,277.90868105,TJ,CO2,73300.0,kg/TJ,20370706.320965,kg +39fca53f-1c80-3439-9f30-797c7e56e298,SESCO,II.1.1,La Rioja,AR-F,annual,2018,naphtha combustion consumption by to the public,277.90868105,TJ,CH4,3.0,kg/TJ,833.7260431499999,kg +67088e72-b670-39cc-bb5d-6a20bbce6e89,SESCO,II.1.1,La Rioja,AR-F,annual,2018,naphtha combustion consumption by to the public,277.90868105,TJ,N2O,0.6,kg/TJ,166.74520862999998,kg +d307c764-0adb-36f6-801f-d898eecfd4e5,SESCO,II.1.1,Mendoza,AR-M,annual,2018,naphtha combustion consumption by to the public,1271.95140765,TJ,CO2,73300.0,kg/TJ,93234038.18074499,kg +869d63a8-4dda-3568-be42-14fa1758ad1b,SESCO,II.1.1,Mendoza,AR-M,annual,2018,naphtha combustion consumption by to the public,1271.95140765,TJ,CH4,3.0,kg/TJ,3815.85422295,kg +af8cce02-3130-315b-92d6-a77bd0f707b2,SESCO,II.1.1,Mendoza,AR-M,annual,2018,naphtha combustion consumption by to the public,1271.95140765,TJ,N2O,0.6,kg/TJ,763.17084459,kg +f6cec8be-8885-3497-988e-5c973e7ffc40,SESCO,II.1.1,Misiones,AR-N,annual,2018,naphtha combustion consumption by to the public,1186.5325318,TJ,CO2,73300.0,kg/TJ,86972834.58094001,kg +41f4aa50-bf58-3c60-a9de-29ffb40a6ccb,SESCO,II.1.1,Misiones,AR-N,annual,2018,naphtha combustion consumption by to the public,1186.5325318,TJ,CH4,3.0,kg/TJ,3559.5975954,kg +5d13662a-70ee-3ac6-936e-e701a868f3ea,SESCO,II.1.1,Misiones,AR-N,annual,2018,naphtha combustion consumption by to the public,1186.5325318,TJ,N2O,0.6,kg/TJ,711.91951908,kg +774ab3c5-8580-3c77-a5f1-ea3c9d954116,SESCO,II.1.1,Neuquén,AR-Q,annual,2018,naphtha combustion consumption by to the public,507.2374730499999,TJ,CO2,73300.0,kg/TJ,37180506.77456499,kg +450a5303-2497-36a1-ac81-7cd498ad2e95,SESCO,II.1.1,Neuquén,AR-Q,annual,2018,naphtha combustion consumption by to the public,507.2374730499999,TJ,CH4,3.0,kg/TJ,1521.7124191499997,kg +14547548-9576-359e-808b-47fb77f02141,SESCO,II.1.1,Neuquén,AR-Q,annual,2018,naphtha combustion consumption by to the public,507.2374730499999,TJ,N2O,0.6,kg/TJ,304.34248382999994,kg +5298ea76-8b38-3c9f-88d3-0cd96acea75c,SESCO,II.1.1,Rio Negro,AR-R,annual,2018,naphtha combustion consumption by to the public,163.7627145,TJ,CO2,73300.0,kg/TJ,12003806.972849999,kg +85726a22-b263-3230-86de-4bc62f34e2f7,SESCO,II.1.1,Rio Negro,AR-R,annual,2018,naphtha combustion consumption by to the public,163.7627145,TJ,CH4,3.0,kg/TJ,491.28814349999993,kg +2c9abf44-86a3-3a66-b11a-b212a9127477,SESCO,II.1.1,Rio Negro,AR-R,annual,2018,naphtha combustion consumption by to the public,163.7627145,TJ,N2O,0.6,kg/TJ,98.25762869999998,kg +cef0d0a2-0022-3ea0-8569-31a3f6c5c19b,SESCO,II.1.1,Salta,AR-A,annual,2018,naphtha combustion consumption by to the public,226.18771944999997,TJ,CO2,73300.0,kg/TJ,16579559.835684998,kg +ce07051d-7dd4-3bff-8a80-69b09172b4e9,SESCO,II.1.1,Salta,AR-A,annual,2018,naphtha combustion consumption by to the public,226.18771944999997,TJ,CH4,3.0,kg/TJ,678.5631583499999,kg +1c1d3fbf-33b1-30be-a1b5-0d0b12fbfe17,SESCO,II.1.1,Salta,AR-A,annual,2018,naphtha combustion consumption by to the public,226.18771944999997,TJ,N2O,0.6,kg/TJ,135.71263166999998,kg +c21c9cee-edc5-3fce-9521-48efdd213e98,SESCO,II.1.1,San Juan,AR-J,annual,2018,naphtha combustion consumption by to the public,237.62366319999998,TJ,CO2,73300.0,kg/TJ,17417814.51256,kg +c6d908de-0f79-3a3f-951a-d7791c21418f,SESCO,II.1.1,San Juan,AR-J,annual,2018,naphtha combustion consumption by to the public,237.62366319999998,TJ,CH4,3.0,kg/TJ,712.8709895999999,kg +68582dc3-42c7-38f5-a8ac-c12d13ba8427,SESCO,II.1.1,San Juan,AR-J,annual,2018,naphtha combustion consumption by to the public,237.62366319999998,TJ,N2O,0.6,kg/TJ,142.57419792,kg +2315f554-4348-3823-ad74-fe228dee0c62,SESCO,II.1.1,San Luis,AR-D,annual,2018,naphtha combustion consumption by to the public,122.8372838,TJ,CO2,73300.0,kg/TJ,9003972.90254,kg +297116ad-3806-38b3-801c-582de05162bd,SESCO,II.1.1,San Luis,AR-D,annual,2018,naphtha combustion consumption by to the public,122.8372838,TJ,CH4,3.0,kg/TJ,368.51185139999995,kg +a5130908-9655-3560-bb99-0fcc04695f87,SESCO,II.1.1,San Luis,AR-D,annual,2018,naphtha combustion consumption by to the public,122.8372838,TJ,N2O,0.6,kg/TJ,73.70237028,kg +11ea5764-c336-3fbf-bfb0-7d17bf24e41e,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,naphtha combustion consumption by to the public,3569.9661843999993,TJ,CO2,73300.0,kg/TJ,261678521.31651995,kg +93e4b1e3-a382-37ca-b52f-e2ab892a049f,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,naphtha combustion consumption by to the public,3569.9661843999993,TJ,CH4,3.0,kg/TJ,10709.898553199997,kg +33f2787e-93a9-3bd3-8a1f-e91f1eb33a66,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,naphtha combustion consumption by to the public,3569.9661843999993,TJ,N2O,0.6,kg/TJ,2141.9797106399997,kg +07e75dae-c2b1-3224-aae1-ab389ecb6a33,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2018,naphtha combustion consumption by to the public,356.0085529,TJ,CO2,73300.0,kg/TJ,26095426.92757,kg +2ed4db29-f7a2-306b-8a61-ca7cbbd06924,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2018,naphtha combustion consumption by to the public,356.0085529,TJ,CH4,3.0,kg/TJ,1068.0256587,kg +6adabf07-b160-3d97-9c8b-6a4216c9cf03,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2018,naphtha combustion consumption by to the public,356.0085529,TJ,N2O,0.6,kg/TJ,213.60513174,kg +00be2480-2b67-3123-966e-a943dfffd93c,SESCO,II.1.1,Tucuman,AR-T,annual,2018,naphtha combustion consumption by to the public,872.5472602,TJ,CO2,73300.0,kg/TJ,63957714.17266,kg +bdf2b4ce-f595-389a-ae85-0f21cee7073f,SESCO,II.1.1,Tucuman,AR-T,annual,2018,naphtha combustion consumption by to the public,872.5472602,TJ,CH4,3.0,kg/TJ,2617.6417806,kg +b7b4edf0-dcda-31ae-ab75-3168fd9fb58c,SESCO,II.1.1,Tucuman,AR-T,annual,2018,naphtha combustion consumption by to the public,872.5472602,TJ,N2O,0.6,kg/TJ,523.52835612,kg +771464be-5087-3065-9682-02d6bd7a1709,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,naphtha combustion consumption by to the public,8662.041234,TJ,CO2,73300.0,kg/TJ,634927622.4522,kg +204cd415-bdb9-3a56-a485-95945c851dca,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,naphtha combustion consumption by to the public,8662.041234,TJ,CH4,3.0,kg/TJ,25986.123702,kg +1e9f0788-bc32-3393-beac-07d93b079885,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,naphtha combustion consumption by to the public,8662.041234,TJ,N2O,0.6,kg/TJ,5197.2247404,kg +be43df66-cce1-3d12-bc70-127675fd459f,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,naphtha combustion consumption by to the public,3458.3818692499995,TJ,CO2,73300.0,kg/TJ,253499391.01602495,kg +50561c21-1a5e-349a-a32e-acbc46de6bb6,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,naphtha combustion consumption by to the public,3458.3818692499995,TJ,CH4,3.0,kg/TJ,10375.145607749999,kg +3783e05c-08b0-3bab-bae5-f6f2ab384cfc,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,naphtha combustion consumption by to the public,3458.3818692499995,TJ,N2O,0.6,kg/TJ,2075.0291215499997,kg +e866c71b-cc3c-3822-b702-f8b1ab4a2379,SESCO,II.1.1,Catamarca,AR-K,annual,2018,naphtha combustion consumption by to the public,36.838986799999994,TJ,CO2,73300.0,kg/TJ,2700297.7324399995,kg +a02092b8-485f-3078-81a5-e29e6589f401,SESCO,II.1.1,Catamarca,AR-K,annual,2018,naphtha combustion consumption by to the public,36.838986799999994,TJ,CH4,3.0,kg/TJ,110.51696039999999,kg +28c623ad-5f58-3351-a927-dc9f58582257,SESCO,II.1.1,Catamarca,AR-K,annual,2018,naphtha combustion consumption by to the public,36.838986799999994,TJ,N2O,0.6,kg/TJ,22.103392079999995,kg +d66d08d1-c68a-3ca8-91f1-f1c85d616ab9,SESCO,II.1.1,Chaco,AR-H,annual,2018,naphtha combustion consumption by to the public,361.58929344999996,TJ,CO2,73300.0,kg/TJ,26504495.209884997,kg +aefc9e0b-3fbe-322a-89d0-eeffb2a6ea63,SESCO,II.1.1,Chaco,AR-H,annual,2018,naphtha combustion consumption by to the public,361.58929344999996,TJ,CH4,3.0,kg/TJ,1084.7678803499998,kg +f715e2ce-5070-3ab7-86c4-b1805e678481,SESCO,II.1.1,Chaco,AR-H,annual,2018,naphtha combustion consumption by to the public,361.58929344999996,TJ,N2O,0.6,kg/TJ,216.95357606999997,kg +ca0f29f2-25e5-36f3-b976-893216f1043b,SESCO,II.1.1,Corrientes,AR-W,annual,2018,naphtha combustion consumption by to the public,359.97301339999996,TJ,CO2,73300.0,kg/TJ,26386021.882219996,kg +2262d9be-1641-36f6-98db-917d3ed8608a,SESCO,II.1.1,Corrientes,AR-W,annual,2018,naphtha combustion consumption by to the public,359.97301339999996,TJ,CH4,3.0,kg/TJ,1079.9190402,kg +37e8df2b-065e-3c6b-b040-205381999fe8,SESCO,II.1.1,Corrientes,AR-W,annual,2018,naphtha combustion consumption by to the public,359.97301339999996,TJ,N2O,0.6,kg/TJ,215.98380803999996,kg +f1fecc1a-ef42-3b1c-a24e-758af9c9769e,SESCO,II.1.1,Córdoba,AR-X,annual,2018,naphtha combustion consumption by to the public,1929.2284627,TJ,CO2,73300.0,kg/TJ,141412446.31590998,kg +b14c2f15-7881-3a11-b836-95b81b9d1fbc,SESCO,II.1.1,Córdoba,AR-X,annual,2018,naphtha combustion consumption by to the public,1929.2284627,TJ,CH4,3.0,kg/TJ,5787.6853881,kg +5cd3bafd-57cc-3dfd-8c52-2c1595599720,SESCO,II.1.1,Córdoba,AR-X,annual,2018,naphtha combustion consumption by to the public,1929.2284627,TJ,N2O,0.6,kg/TJ,1157.53707762,kg +f99a6bb1-5d1f-3130-b1d0-ed111f298181,SESCO,II.1.1,Entre Rios,AR-E,annual,2018,naphtha combustion consumption by to the public,373.81812929999995,TJ,CO2,73300.0,kg/TJ,27400868.877689995,kg +ce5c0913-0420-3e08-9378-aa3d82a5b73c,SESCO,II.1.1,Entre Rios,AR-E,annual,2018,naphtha combustion consumption by to the public,373.81812929999995,TJ,CH4,3.0,kg/TJ,1121.4543878999998,kg +49a048fa-9705-31cf-90b4-ae2bf18f8969,SESCO,II.1.1,Entre Rios,AR-E,annual,2018,naphtha combustion consumption by to the public,373.81812929999995,TJ,N2O,0.6,kg/TJ,224.29087757999997,kg +0c2abe31-60df-3b99-93d1-9779b996d12e,SESCO,II.1.1,Formosa,AR-P,annual,2018,naphtha combustion consumption by to the public,175.046179,TJ,CO2,73300.0,kg/TJ,12830884.920699999,kg +3b0b97b2-0e4c-37a1-a068-e6922041f804,SESCO,II.1.1,Formosa,AR-P,annual,2018,naphtha combustion consumption by to the public,175.046179,TJ,CH4,3.0,kg/TJ,525.138537,kg +0d8deb73-cead-327f-a920-e4efcdf15b74,SESCO,II.1.1,Formosa,AR-P,annual,2018,naphtha combustion consumption by to the public,175.046179,TJ,N2O,0.6,kg/TJ,105.0277074,kg +fd456130-d693-343c-8fa7-205f04de2b6a,SESCO,II.1.1,Jujuy,AR-Y,annual,2018,naphtha combustion consumption by to the public,41.718322799999996,TJ,CO2,73300.0,kg/TJ,3057953.0612399997,kg +8db569bc-266f-3cb8-9cf3-fccc77377e7f,SESCO,II.1.1,Jujuy,AR-Y,annual,2018,naphtha combustion consumption by to the public,41.718322799999996,TJ,CH4,3.0,kg/TJ,125.15496839999999,kg +dc3f51e3-3a41-39e4-8900-fd00307c54ba,SESCO,II.1.1,Jujuy,AR-Y,annual,2018,naphtha combustion consumption by to the public,41.718322799999996,TJ,N2O,0.6,kg/TJ,25.030993679999998,kg +b90fb275-a73a-38e8-bb58-a8c44c974b69,SESCO,II.1.1,La Pampa,AR-L,annual,2018,naphtha combustion consumption by to the public,204.41368254999998,TJ,CO2,73300.0,kg/TJ,14983522.930914998,kg +7d2b4c4e-8bb0-37fa-94d6-55b87b53d1ed,SESCO,II.1.1,La Pampa,AR-L,annual,2018,naphtha combustion consumption by to the public,204.41368254999998,TJ,CH4,3.0,kg/TJ,613.2410476499999,kg +a3777ff2-848e-3aad-8442-520d77e41f3e,SESCO,II.1.1,La Pampa,AR-L,annual,2018,naphtha combustion consumption by to the public,204.41368254999998,TJ,N2O,0.6,kg/TJ,122.64820952999997,kg +66c916b8-4797-326f-93f2-63e386571f16,SESCO,II.1.1,La Rioja,AR-F,annual,2018,naphtha combustion consumption by to the public,98.83704984999999,TJ,CO2,73300.0,kg/TJ,7244755.754004999,kg +6cb308b0-7033-3673-88b8-354b39d91a15,SESCO,II.1.1,La Rioja,AR-F,annual,2018,naphtha combustion consumption by to the public,98.83704984999999,TJ,CH4,3.0,kg/TJ,296.51114954999997,kg +40b68f96-7f09-3523-a3ed-48b3f1410e3d,SESCO,II.1.1,La Rioja,AR-F,annual,2018,naphtha combustion consumption by to the public,98.83704984999999,TJ,N2O,0.6,kg/TJ,59.30222990999999,kg +64ff9531-b1c3-3623-9812-4718de62454d,SESCO,II.1.1,Mendoza,AR-M,annual,2018,naphtha combustion consumption by to the public,583.0196602999999,TJ,CO2,73300.0,kg/TJ,42735341.099989995,kg +77419740-7363-35e3-aa11-228b95a5087c,SESCO,II.1.1,Mendoza,AR-M,annual,2018,naphtha combustion consumption by to the public,583.0196602999999,TJ,CH4,3.0,kg/TJ,1749.0589808999998,kg +b4747fd8-1bc4-3920-acdd-35688a6bc3db,SESCO,II.1.1,Mendoza,AR-M,annual,2018,naphtha combustion consumption by to the public,583.0196602999999,TJ,N2O,0.6,kg/TJ,349.81179617999993,kg +21487143-0e3b-3477-b68a-a10ff1f020a9,SESCO,II.1.1,Misiones,AR-N,annual,2018,naphtha combustion consumption by to the public,294.80338194999996,TJ,CO2,73300.0,kg/TJ,21609087.896934997,kg +cd4cce4f-ae4d-3dc9-bb67-77e21f2c918e,SESCO,II.1.1,Misiones,AR-N,annual,2018,naphtha combustion consumption by to the public,294.80338194999996,TJ,CH4,3.0,kg/TJ,884.4101458499999,kg +2ce97f70-0fe7-39fa-9c6d-fa526f4c0fa1,SESCO,II.1.1,Misiones,AR-N,annual,2018,naphtha combustion consumption by to the public,294.80338194999996,TJ,N2O,0.6,kg/TJ,176.88202916999998,kg +3fd09f1e-d61b-318b-bbea-7bd663c6b318,SESCO,II.1.1,Neuquén,AR-Q,annual,2018,naphtha combustion consumption by to the public,369.88416464999995,TJ,CO2,73300.0,kg/TJ,27112509.268844996,kg +130399d1-c410-3a3f-b276-5eb167263c2b,SESCO,II.1.1,Neuquén,AR-Q,annual,2018,naphtha combustion consumption by to the public,369.88416464999995,TJ,CH4,3.0,kg/TJ,1109.6524939499998,kg +f60b0899-6917-377a-a5ac-32e74ea064b7,SESCO,II.1.1,Neuquén,AR-Q,annual,2018,naphtha combustion consumption by to the public,369.88416464999995,TJ,N2O,0.6,kg/TJ,221.93049878999997,kg +321fe703-c775-3358-8509-6b66703eb6db,SESCO,II.1.1,Rio Negro,AR-R,annual,2018,naphtha combustion consumption by to the public,88.49895669999998,TJ,CO2,73300.0,kg/TJ,6486973.526109998,kg +0ec185b9-5095-31e6-b5fb-379d3aa4f906,SESCO,II.1.1,Rio Negro,AR-R,annual,2018,naphtha combustion consumption by to the public,88.49895669999998,TJ,CH4,3.0,kg/TJ,265.4968700999999,kg +b1c9c6e9-3b90-3094-a015-e525ddb662d7,SESCO,II.1.1,Rio Negro,AR-R,annual,2018,naphtha combustion consumption by to the public,88.49895669999998,TJ,N2O,0.6,kg/TJ,53.099374019999985,kg +ae6131b5-343b-3051-9b01-0cc1ca7bdf3b,SESCO,II.1.1,Salta,AR-A,annual,2018,naphtha combustion consumption by to the public,117.8359644,TJ,CO2,73300.0,kg/TJ,8637376.19052,kg +2e5ed7f2-84dc-3c74-92d8-24dbfdee0ca3,SESCO,II.1.1,Salta,AR-A,annual,2018,naphtha combustion consumption by to the public,117.8359644,TJ,CH4,3.0,kg/TJ,353.5078932,kg +4b2ab426-c439-3b5f-b280-bed463a5bf57,SESCO,II.1.1,Salta,AR-A,annual,2018,naphtha combustion consumption by to the public,117.8359644,TJ,N2O,0.6,kg/TJ,70.70157864,kg +b684e27e-36ac-31d6-9949-896b0be12b3a,SESCO,II.1.1,San Juan,AR-J,annual,2018,naphtha combustion consumption by to the public,49.189806049999994,TJ,CO2,73300.0,kg/TJ,3605612.7834649994,kg +3f3dfb60-54b0-326e-8c51-cabf29807c4e,SESCO,II.1.1,San Juan,AR-J,annual,2018,naphtha combustion consumption by to the public,49.189806049999994,TJ,CH4,3.0,kg/TJ,147.56941815,kg +1484f514-c96d-3801-a4e1-460fc9312676,SESCO,II.1.1,San Juan,AR-J,annual,2018,naphtha combustion consumption by to the public,49.189806049999994,TJ,N2O,0.6,kg/TJ,29.513883629999995,kg +3c5a53f3-64bd-3ed5-a807-266a46e3e395,SESCO,II.1.1,San Luis,AR-D,annual,2018,naphtha combustion consumption by to the public,61.754096249999996,TJ,CO2,73300.0,kg/TJ,4526575.255125,kg +e3632dc2-a2d8-3534-801d-ab1a0200f829,SESCO,II.1.1,San Luis,AR-D,annual,2018,naphtha combustion consumption by to the public,61.754096249999996,TJ,CH4,3.0,kg/TJ,185.26228874999998,kg +3535e3c3-1ccd-3102-95e0-7e47f91b7ccc,SESCO,II.1.1,San Luis,AR-D,annual,2018,naphtha combustion consumption by to the public,61.754096249999996,TJ,N2O,0.6,kg/TJ,37.052457749999995,kg +a5d296b8-34f6-39ea-8aa2-58cbf80e72db,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,naphtha combustion consumption by to the public,1827.9822406999997,TJ,CO2,73300.0,kg/TJ,133991098.24330997,kg +8e8e0c91-aa64-36f7-bc93-7ad6ec9d7dd6,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,naphtha combustion consumption by to the public,1827.9822406999997,TJ,CH4,3.0,kg/TJ,5483.9467220999995,kg +aef95b1c-3286-39af-a3f8-1e86de9c4e30,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,naphtha combustion consumption by to the public,1827.9822406999997,TJ,N2O,0.6,kg/TJ,1096.7893444199997,kg +93eebb7c-258e-3541-84cb-9a8c5d568ff9,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2018,naphtha combustion consumption by to the public,169.55692599999998,TJ,CO2,73300.0,kg/TJ,12428522.675799998,kg +2ebbc3e0-e558-370a-8e06-877d4301c969,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2018,naphtha combustion consumption by to the public,169.55692599999998,TJ,CH4,3.0,kg/TJ,508.6707779999999,kg +60ce6cb8-022b-396a-a5ee-086c922fb071,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2018,naphtha combustion consumption by to the public,169.55692599999998,TJ,N2O,0.6,kg/TJ,101.73415559999998,kg +6f21a3f0-5174-30c8-a9b4-e0cb2c75725f,SESCO,II.1.1,Tucuman,AR-T,annual,2018,naphtha combustion consumption by to the public,291.54032599999994,TJ,CO2,73300.0,kg/TJ,21369905.895799994,kg +5c0cb7b0-8d17-34d2-ad74-607b53a31982,SESCO,II.1.1,Tucuman,AR-T,annual,2018,naphtha combustion consumption by to the public,291.54032599999994,TJ,CH4,3.0,kg/TJ,874.6209779999998,kg +b3194952-dacd-3828-9ec1-979479e79933,SESCO,II.1.1,Tucuman,AR-T,annual,2018,naphtha combustion consumption by to the public,291.54032599999994,TJ,N2O,0.6,kg/TJ,174.92419559999996,kg +4d7d8614-9f26-3477-ad49-e939c1c1253a,SESCO,II.5.1,Buenos Aires,AR-B,annual,2018,naphtha combustion consumption by agriculture machines,51.45470233365,TJ,CO2,73300.0,kg/TJ,3771629.6810565447,kg +e63a3a89-8c87-35a2-bcb8-7703711beffb,SESCO,II.5.1,Buenos Aires,AR-B,annual,2018,naphtha combustion consumption by agriculture machines,51.45470233365,TJ,CH4,3.0,kg/TJ,154.36410700094999,kg +9e11cc49-44f0-32f1-bf9c-bfbdaccc18fe,SESCO,II.5.1,Buenos Aires,AR-B,annual,2018,naphtha combustion consumption by agriculture machines,51.45470233365,TJ,N2O,0.6,kg/TJ,30.87282140019,kg +2abe2c58-e72a-3d0e-afdf-76e74a21a6f1,SESCO,II.5.1,Capital Federal,AR-C,annual,2018,naphtha combustion consumption by agriculture machines,9.4121171606,TJ,CO2,73300.0,kg/TJ,689908.1878719799,kg +0d737221-08d6-3038-a55f-c9b277cc4644,SESCO,II.5.1,Capital Federal,AR-C,annual,2018,naphtha combustion consumption by agriculture machines,9.4121171606,TJ,CH4,3.0,kg/TJ,28.2363514818,kg +632fa1c2-c108-35a5-8538-3ee2bd2d8806,SESCO,II.5.1,Capital Federal,AR-C,annual,2018,naphtha combustion consumption by agriculture machines,9.4121171606,TJ,N2O,0.6,kg/TJ,5.647270296359999,kg +ea25d914-1bbb-33a4-a956-0c59933e7535,SESCO,II.5.1,Entre Rios,AR-E,annual,2018,naphtha combustion consumption by agriculture machines,4.7212455135999996,TJ,CO2,73300.0,kg/TJ,346067.29614687996,kg +c3d99f75-33ac-3f8c-ba45-165de7769e11,SESCO,II.5.1,Entre Rios,AR-E,annual,2018,naphtha combustion consumption by agriculture machines,4.7212455135999996,TJ,CH4,3.0,kg/TJ,14.163736540799999,kg +43779b87-d629-3a10-8a97-dad353d7c80e,SESCO,II.5.1,Entre Rios,AR-E,annual,2018,naphtha combustion consumption by agriculture machines,4.7212455135999996,TJ,N2O,0.6,kg/TJ,2.8327473081599996,kg +6b435864-033e-358c-b90d-8abeef0bbd91,SESCO,II.5.1,Santa Fe,AR-S,annual,2018,naphtha combustion consumption by agriculture machines,21.096754567349997,TJ,CO2,73300.0,kg/TJ,1546392.1097867547,kg +ea6ffac7-0d80-30c1-9363-ad8f3fbbce02,SESCO,II.5.1,Santa Fe,AR-S,annual,2018,naphtha combustion consumption by agriculture machines,21.096754567349997,TJ,CH4,3.0,kg/TJ,63.29026370204999,kg +627d2f46-6cd3-3335-aee1-1863f02bd04b,SESCO,II.5.1,Santa Fe,AR-S,annual,2018,naphtha combustion consumption by agriculture machines,21.096754567349997,TJ,N2O,0.6,kg/TJ,12.658052740409998,kg +3e7aa0bc-75f9-31d8-894b-12ac71fc5062,SESCO,II.5.1,Tucuman,AR-T,annual,2018,naphtha combustion consumption by agriculture machines,5.01867153865,TJ,CO2,73300.0,kg/TJ,367868.623783045,kg +304494bf-4d58-35f0-a21f-44613db65f3f,SESCO,II.5.1,Tucuman,AR-T,annual,2018,naphtha combustion consumption by agriculture machines,5.01867153865,TJ,CH4,3.0,kg/TJ,15.056014615949998,kg +3f632ece-e696-353f-b21b-8b020a9bc9d8,SESCO,II.5.1,Tucuman,AR-T,annual,2018,naphtha combustion consumption by agriculture machines,5.01867153865,TJ,N2O,0.6,kg/TJ,3.0112029231899995,kg +2ea022be-deb0-32f8-811a-eac8cdd2b06c,SESCO,II.5.1,Buenos Aires,AR-B,annual,2018,naphtha combustion consumption by agriculture machines,4.917760770999999,TJ,CO2,73300.0,kg/TJ,360471.86451429996,kg +4e268303-ea99-3380-90e3-cd4f06416f6e,SESCO,II.5.1,Buenos Aires,AR-B,annual,2018,naphtha combustion consumption by agriculture machines,4.917760770999999,TJ,CH4,3.0,kg/TJ,14.753282312999998,kg +e6c60b79-d476-3c8d-99ca-03560fd079c0,SESCO,II.5.1,Buenos Aires,AR-B,annual,2018,naphtha combustion consumption by agriculture machines,4.917760770999999,TJ,N2O,0.6,kg/TJ,2.9506564625999996,kg +64791b10-1950-3272-92ba-ae53807e0662,SESCO,II.5.1,Capital Federal,AR-C,annual,2018,naphtha combustion consumption by agriculture machines,0.7318394083,TJ,CO2,73300.0,kg/TJ,53643.82862839,kg +5a73b057-4b5a-3885-9847-b503732f35c6,SESCO,II.5.1,Capital Federal,AR-C,annual,2018,naphtha combustion consumption by agriculture machines,0.7318394083,TJ,CH4,3.0,kg/TJ,2.1955182249000003,kg +00e7cebd-b2ee-389a-8502-3b07185e8751,SESCO,II.5.1,Capital Federal,AR-C,annual,2018,naphtha combustion consumption by agriculture machines,0.7318394083,TJ,N2O,0.6,kg/TJ,0.43910364498000004,kg +21d4aa3c-5790-3752-abf7-0e7d288f3d4f,SESCO,II.5.1,Entre Rios,AR-E,annual,2018,naphtha combustion consumption by agriculture machines,0.46131072295,TJ,CO2,73300.0,kg/TJ,33814.075992235,kg +d55b82a6-c1c8-37cf-a8c7-1cd8af6dd4a2,SESCO,II.5.1,Entre Rios,AR-E,annual,2018,naphtha combustion consumption by agriculture machines,0.46131072295,TJ,CH4,3.0,kg/TJ,1.38393216885,kg +f5386d8e-43c7-3782-879d-c97ed2c1ee3f,SESCO,II.5.1,Entre Rios,AR-E,annual,2018,naphtha combustion consumption by agriculture machines,0.46131072295,TJ,N2O,0.6,kg/TJ,0.27678643376999995,kg +ad5f766d-0d9b-32cc-8d60-5dddf8d01ab0,SESCO,II.5.1,Santa Fe,AR-S,annual,2018,naphtha combustion consumption by agriculture machines,1.2163574731,TJ,CO2,73300.0,kg/TJ,89159.00277823,kg +136d21e1-ea96-3399-9dff-857e77e51b45,SESCO,II.5.1,Santa Fe,AR-S,annual,2018,naphtha combustion consumption by agriculture machines,1.2163574731,TJ,CH4,3.0,kg/TJ,3.6490724193,kg +d312823e-08e2-3428-b454-179c702081a1,SESCO,II.5.1,Santa Fe,AR-S,annual,2018,naphtha combustion consumption by agriculture machines,1.2163574731,TJ,N2O,0.6,kg/TJ,0.7298144838599999,kg +2b6608dc-4c4f-3e24-8241-6faac096d57e,SESCO,II.5.1,Tucuman,AR-T,annual,2018,naphtha combustion consumption by agriculture machines,0.32316452244999994,TJ,CO2,73300.0,kg/TJ,23687.959495584997,kg +dcc613e6-5f2a-3121-8303-98e3f3cfa9e8,SESCO,II.5.1,Tucuman,AR-T,annual,2018,naphtha combustion consumption by agriculture machines,0.32316452244999994,TJ,CH4,3.0,kg/TJ,0.9694935673499998,kg +cbe0e4bf-fdea-382b-b247-d648e3b742fc,SESCO,II.5.1,Tucuman,AR-T,annual,2018,naphtha combustion consumption by agriculture machines,0.32316452244999994,TJ,N2O,0.6,kg/TJ,0.19389871346999996,kg +9c5037d7-ad6c-346d-824d-5df510568822,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,naphtha combustion consumption by to the public,3417.77698042935,TJ,CO2,73300.0,kg/TJ,250523052.66547135,kg +4cbf9f7f-8894-3b23-b7d9-df0718420ff8,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,naphtha combustion consumption by to the public,3417.77698042935,TJ,CH4,3.0,kg/TJ,10253.33094128805,kg +f03a7959-2528-3390-8cfd-c293a7a97553,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,naphtha combustion consumption by to the public,3417.77698042935,TJ,N2O,0.6,kg/TJ,2050.66618825761,kg +0989f06d-98e1-32ff-8fa1-7d4ed8591b36,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,naphtha combustion consumption by to the public,166.34970795135,TJ,CO2,73300.0,kg/TJ,12193433.592833957,kg +eb795566-3c2b-3320-8468-e4fc1a4c14e9,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,naphtha combustion consumption by to the public,166.34970795135,TJ,CH4,3.0,kg/TJ,499.04912385405004,kg +fac81a41-1911-3834-90c5-418aa13b4a6d,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,naphtha combustion consumption by to the public,166.34970795135,TJ,N2O,0.6,kg/TJ,99.80982477081001,kg +b2084fde-1bf6-302a-8369-fd1d15146a03,SESCO,II.1.1,Catamarca,AR-K,annual,2018,naphtha combustion consumption by to the public,12.37091601515,TJ,CO2,73300.0,kg/TJ,906788.143910495,kg +31ba2db6-0a9c-3b1f-bb16-b0c18a79dd13,SESCO,II.1.1,Catamarca,AR-K,annual,2018,naphtha combustion consumption by to the public,12.37091601515,TJ,CH4,3.0,kg/TJ,37.11274804545,kg +3a8b61cc-12b8-3b66-b96f-d91b14547353,SESCO,II.1.1,Catamarca,AR-K,annual,2018,naphtha combustion consumption by to the public,12.37091601515,TJ,N2O,0.6,kg/TJ,7.42254960909,kg +59a25a6c-740f-327f-93b9-4c82c6e551ae,SESCO,II.1.1,Chaco,AR-H,annual,2018,naphtha combustion consumption by to the public,17.715923644649997,TJ,CO2,73300.0,kg/TJ,1298577.203152845,kg +58bd572f-5e93-3a25-b35a-476d162e76f3,SESCO,II.1.1,Chaco,AR-H,annual,2018,naphtha combustion consumption by to the public,17.715923644649997,TJ,CH4,3.0,kg/TJ,53.14777093394999,kg +a889ed9f-33be-3c10-b272-004aa2d5ef22,SESCO,II.1.1,Chaco,AR-H,annual,2018,naphtha combustion consumption by to the public,17.715923644649997,TJ,N2O,0.6,kg/TJ,10.629554186789997,kg +c5872d4f-1cbc-324f-8bb7-58b18d86fcac,SESCO,II.1.1,Chubut,AR-U,annual,2018,naphtha combustion consumption by to the public,87.11749469499998,TJ,CO2,73300.0,kg/TJ,6385712.361143499,kg +3a2be5b2-fd40-3272-a07c-013ad504ea7f,SESCO,II.1.1,Chubut,AR-U,annual,2018,naphtha combustion consumption by to the public,87.11749469499998,TJ,CH4,3.0,kg/TJ,261.3524840849999,kg +fce08e2b-50a6-385d-ae5c-5e4245912727,SESCO,II.1.1,Chubut,AR-U,annual,2018,naphtha combustion consumption by to the public,87.11749469499998,TJ,N2O,0.6,kg/TJ,52.27049681699999,kg +634abe22-fe77-305a-a282-931bce55d43c,SESCO,II.1.1,Corrientes,AR-W,annual,2018,naphtha combustion consumption by to the public,125.5309212388,TJ,CO2,73300.0,kg/TJ,9201416.526804041,kg +836555de-5ea2-3a1b-a0f5-18b3fff1def3,SESCO,II.1.1,Corrientes,AR-W,annual,2018,naphtha combustion consumption by to the public,125.5309212388,TJ,CH4,3.0,kg/TJ,376.5927637164,kg +a19f9b73-9951-351b-9389-fb063ea2087b,SESCO,II.1.1,Corrientes,AR-W,annual,2018,naphtha combustion consumption by to the public,125.5309212388,TJ,N2O,0.6,kg/TJ,75.31855274328,kg +6a48da2c-be7a-301d-87ae-37b1b79b3f2a,SESCO,II.1.1,Córdoba,AR-X,annual,2018,naphtha combustion consumption by to the public,260.27265653234997,TJ,CO2,73300.0,kg/TJ,19077985.723821253,kg +61c4ec58-a095-350e-86a5-56a38313d63b,SESCO,II.1.1,Córdoba,AR-X,annual,2018,naphtha combustion consumption by to the public,260.27265653234997,TJ,CH4,3.0,kg/TJ,780.8179695970499,kg +6aa19ecc-277b-32cb-8c27-630b8f1ca4f3,SESCO,II.1.1,Córdoba,AR-X,annual,2018,naphtha combustion consumption by to the public,260.27265653234997,TJ,N2O,0.6,kg/TJ,156.16359391940998,kg +aecc464e-3419-3ec5-a30f-e9473901681e,SESCO,II.1.1,Entre Rios,AR-E,annual,2018,naphtha combustion consumption by to the public,233.10128112425,TJ,CO2,73300.0,kg/TJ,17086323.906407524,kg +94267b60-c303-3a3a-996d-4d3a685be3c9,SESCO,II.1.1,Entre Rios,AR-E,annual,2018,naphtha combustion consumption by to the public,233.10128112425,TJ,CH4,3.0,kg/TJ,699.30384337275,kg +1d529224-d02e-32f1-b36a-53ae14f1bf5e,SESCO,II.1.1,Entre Rios,AR-E,annual,2018,naphtha combustion consumption by to the public,233.10128112425,TJ,N2O,0.6,kg/TJ,139.86076867455,kg +6df17d7d-3361-3749-8494-c6527c037407,SESCO,II.1.1,Formosa,AR-P,annual,2018,naphtha combustion consumption by to the public,4.478346068349999,TJ,CO2,73300.0,kg/TJ,328262.7668100549,kg +2bdfbe63-b562-3035-8200-657b4437b8f1,SESCO,II.1.1,Formosa,AR-P,annual,2018,naphtha combustion consumption by to the public,4.478346068349999,TJ,CH4,3.0,kg/TJ,13.435038205049995,kg +b8694f25-ae34-3e34-bf46-5a516fae8b6a,SESCO,II.1.1,Formosa,AR-P,annual,2018,naphtha combustion consumption by to the public,4.478346068349999,TJ,N2O,0.6,kg/TJ,2.6870076410099992,kg +ca19364e-deed-30aa-9417-34cf41768c16,SESCO,II.1.1,Jujuy,AR-Y,annual,2018,naphtha combustion consumption by to the public,31.76804537445,TJ,CO2,73300.0,kg/TJ,2328597.725947185,kg +927f048c-737e-3a29-9860-07cf77057025,SESCO,II.1.1,Jujuy,AR-Y,annual,2018,naphtha combustion consumption by to the public,31.76804537445,TJ,CH4,3.0,kg/TJ,95.30413612335,kg +cabb8815-33ab-3fb1-839e-81592c142ba8,SESCO,II.1.1,Jujuy,AR-Y,annual,2018,naphtha combustion consumption by to the public,31.76804537445,TJ,N2O,0.6,kg/TJ,19.06082722467,kg +2e18fb82-9155-3669-8135-4daeafebc8a7,SESCO,II.1.1,La Pampa,AR-L,annual,2018,naphtha combustion consumption by to the public,197.82630448734997,TJ,CO2,73300.0,kg/TJ,14500668.118922753,kg +dcff4a02-7bde-3fe1-b0aa-3e149ca31150,SESCO,II.1.1,La Pampa,AR-L,annual,2018,naphtha combustion consumption by to the public,197.82630448734997,TJ,CH4,3.0,kg/TJ,593.47891346205,kg +dfd80f10-a964-3ade-b6db-a976dfd06b0e,SESCO,II.1.1,La Pampa,AR-L,annual,2018,naphtha combustion consumption by to the public,197.82630448734997,TJ,N2O,0.6,kg/TJ,118.69578269240998,kg +35efd157-2da8-3469-8944-1d4e30c1b2fc,SESCO,II.1.1,Mendoza,AR-M,annual,2018,naphtha combustion consumption by to the public,14.31514843605,TJ,CO2,73300.0,kg/TJ,1049300.380362465,kg +53bfb909-02f1-3b00-b1ed-5ab2a3550832,SESCO,II.1.1,Mendoza,AR-M,annual,2018,naphtha combustion consumption by to the public,14.31514843605,TJ,CH4,3.0,kg/TJ,42.94544530815,kg +cf4f7b46-d8aa-3227-9d15-9f867581f29c,SESCO,II.1.1,Mendoza,AR-M,annual,2018,naphtha combustion consumption by to the public,14.31514843605,TJ,N2O,0.6,kg/TJ,8.58908906163,kg +b72e67ca-7942-3b87-974e-4e32f0e9ad1b,SESCO,II.1.1,Misiones,AR-N,annual,2018,naphtha combustion consumption by to the public,55.134087627849986,TJ,CO2,73300.0,kg/TJ,4041328.623121404,kg +4541ef99-cdbb-3125-8866-f80e375634f9,SESCO,II.1.1,Misiones,AR-N,annual,2018,naphtha combustion consumption by to the public,55.134087627849986,TJ,CH4,3.0,kg/TJ,165.40226288354995,kg +74256098-68b5-36bb-a736-6f65ebe29fb5,SESCO,II.1.1,Misiones,AR-N,annual,2018,naphtha combustion consumption by to the public,55.134087627849986,TJ,N2O,0.6,kg/TJ,33.08045257670999,kg +eb8d5cf6-d8c1-3de1-9a61-4b5fa29e89b0,SESCO,II.1.1,Neuquén,AR-Q,annual,2018,naphtha combustion consumption by to the public,303.6320525084,TJ,CO2,73300.0,kg/TJ,22256229.448865723,kg +1e49f326-2b66-3424-a461-8c8cc74e0ec6,SESCO,II.1.1,Neuquén,AR-Q,annual,2018,naphtha combustion consumption by to the public,303.6320525084,TJ,CH4,3.0,kg/TJ,910.8961575252001,kg +9e80d44e-1552-3bf1-9234-d4e4227a6cc9,SESCO,II.1.1,Neuquén,AR-Q,annual,2018,naphtha combustion consumption by to the public,303.6320525084,TJ,N2O,0.6,kg/TJ,182.17923150504,kg +f15386c9-cdd2-3529-abbb-506161aadfdb,SESCO,II.1.1,Rio Negro,AR-R,annual,2018,naphtha combustion consumption by to the public,562.512421009,TJ,CO2,73300.0,kg/TJ,41232160.4599597,kg +9df47257-c630-336b-b5e9-2a8e674d1215,SESCO,II.1.1,Rio Negro,AR-R,annual,2018,naphtha combustion consumption by to the public,562.512421009,TJ,CH4,3.0,kg/TJ,1687.537263027,kg +20684655-4666-36e4-8c89-019e602a4182,SESCO,II.1.1,Rio Negro,AR-R,annual,2018,naphtha combustion consumption by to the public,562.512421009,TJ,N2O,0.6,kg/TJ,337.50745260540003,kg +a2414a6b-e095-3ab9-8734-c24869c1093c,SESCO,II.1.1,San Luis,AR-D,annual,2018,naphtha combustion consumption by to the public,28.93815247785,TJ,CO2,73300.0,kg/TJ,2121166.576626405,kg +fd370d46-89c1-3985-8168-979b0aac00cf,SESCO,II.1.1,San Luis,AR-D,annual,2018,naphtha combustion consumption by to the public,28.93815247785,TJ,CH4,3.0,kg/TJ,86.81445743355,kg +a66ab954-7238-3a5e-9633-0711100f01d9,SESCO,II.1.1,San Luis,AR-D,annual,2018,naphtha combustion consumption by to the public,28.93815247785,TJ,N2O,0.6,kg/TJ,17.362891486709998,kg +b8e64598-fda7-312a-a289-a97c0e99e40e,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,naphtha combustion consumption by to the public,455.91146320335,TJ,CO2,73300.0,kg/TJ,33418310.252805557,kg +3b39c815-6e6a-382b-842b-83b9bbc758b1,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,naphtha combustion consumption by to the public,455.91146320335,TJ,CH4,3.0,kg/TJ,1367.7343896100501,kg +e8e73e40-7180-321e-97eb-2eaafd28d4c1,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,naphtha combustion consumption by to the public,455.91146320335,TJ,N2O,0.6,kg/TJ,273.54687792201,kg +d43c42f9-37e0-3f58-b49c-57a9daa8b686,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2018,naphtha combustion consumption by to the public,144.78334778984998,TJ,CO2,73300.0,kg/TJ,10612619.392996004,kg +33af67c4-6f86-338b-ab8f-993ee00562cf,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2018,naphtha combustion consumption by to the public,144.78334778984998,TJ,CH4,3.0,kg/TJ,434.35004336954995,kg +98acb2e3-d5e3-3605-a4a8-3f8e0b42ac2e,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2018,naphtha combustion consumption by to the public,144.78334778984998,TJ,N2O,0.6,kg/TJ,86.87000867391,kg +54206aa8-c515-3c75-b426-fd97ea9f64e7,SESCO,II.1.1,Tucuman,AR-T,annual,2018,naphtha combustion consumption by to the public,24.090562657699998,TJ,CO2,73300.0,kg/TJ,1765838.2428094097,kg +ebd32d4c-0930-3101-a87f-5002b34b3f0b,SESCO,II.1.1,Tucuman,AR-T,annual,2018,naphtha combustion consumption by to the public,24.090562657699998,TJ,CH4,3.0,kg/TJ,72.2716879731,kg +39fcfc8e-1976-32ec-ba40-50325723c5b8,SESCO,II.1.1,Tucuman,AR-T,annual,2018,naphtha combustion consumption by to the public,24.090562657699998,TJ,N2O,0.6,kg/TJ,14.454337594619998,kg +63ff3f23-744b-360f-b991-6fbe430384a8,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,naphtha combustion consumption by to the public,575.4715714747999,TJ,CO2,73300.0,kg/TJ,42182066.189102836,kg +2a11f986-ec7b-3596-8820-989d902fca64,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,naphtha combustion consumption by to the public,575.4715714747999,TJ,CH4,3.0,kg/TJ,1726.4147144243998,kg +c81eb97c-89cd-3c92-abb4-1775fd944e0e,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,naphtha combustion consumption by to the public,575.4715714747999,TJ,N2O,0.6,kg/TJ,345.28294288487996,kg +a9656bc3-74be-3954-aacc-f99153c0eb36,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,naphtha combustion consumption by to the public,27.91513869375,TJ,CO2,73300.0,kg/TJ,2046179.666251875,kg +acdbbcbc-d4ae-3e26-93cf-7cdabc8eadaf,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,naphtha combustion consumption by to the public,27.91513869375,TJ,CH4,3.0,kg/TJ,83.74541608125,kg +31a67251-8a30-341f-8f18-1a1976aab046,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,naphtha combustion consumption by to the public,27.91513869375,TJ,N2O,0.6,kg/TJ,16.74908321625,kg +30eae141-d115-3bbc-9367-a85f5abc3a8b,SESCO,II.1.1,Catamarca,AR-K,annual,2018,naphtha combustion consumption by to the public,1.6836758784999997,TJ,CO2,73300.0,kg/TJ,123413.44189404997,kg +a4070eec-7e43-3e8a-abfe-a2d6dabd67ac,SESCO,II.1.1,Catamarca,AR-K,annual,2018,naphtha combustion consumption by to the public,1.6836758784999997,TJ,CH4,3.0,kg/TJ,5.051027635499999,kg +ad767687-8702-3973-8f7e-ae6f88632799,SESCO,II.1.1,Catamarca,AR-K,annual,2018,naphtha combustion consumption by to the public,1.6836758784999997,TJ,N2O,0.6,kg/TJ,1.0102055270999997,kg +0bd29e4c-3e60-387d-a2f7-68e22005dc47,SESCO,II.1.1,Chaco,AR-H,annual,2018,naphtha combustion consumption by to the public,2.9599576968499997,TJ,CO2,73300.0,kg/TJ,216964.89917910498,kg +f9941fcd-4faa-3493-9730-ed60f4a5c887,SESCO,II.1.1,Chaco,AR-H,annual,2018,naphtha combustion consumption by to the public,2.9599576968499997,TJ,CH4,3.0,kg/TJ,8.87987309055,kg +25b4aa8a-f533-39b5-a00e-95bb20e08f70,SESCO,II.1.1,Chaco,AR-H,annual,2018,naphtha combustion consumption by to the public,2.9599576968499997,TJ,N2O,0.6,kg/TJ,1.7759746181099998,kg +391eba22-d0ca-35c7-908a-d3ebf3986623,SESCO,II.1.1,Chubut,AR-U,annual,2018,naphtha combustion consumption by to the public,13.012914649349998,TJ,CO2,73300.0,kg/TJ,953846.6437973549,kg +c75feedb-6065-3596-9dde-8f0879f9a6e5,SESCO,II.1.1,Chubut,AR-U,annual,2018,naphtha combustion consumption by to the public,13.012914649349998,TJ,CH4,3.0,kg/TJ,39.03874394805,kg +48513364-9b28-3d52-9ec2-23fa10c02cd7,SESCO,II.1.1,Chubut,AR-U,annual,2018,naphtha combustion consumption by to the public,13.012914649349998,TJ,N2O,0.6,kg/TJ,7.807748789609999,kg +82a3798b-1687-3265-9fab-e286ebf9d837,SESCO,II.1.1,Corrientes,AR-W,annual,2018,naphtha combustion consumption by to the public,9.5449570832,TJ,CO2,73300.0,kg/TJ,699645.35419856,kg +d8059144-eeff-37da-a819-72b359281e1f,SESCO,II.1.1,Corrientes,AR-W,annual,2018,naphtha combustion consumption by to the public,9.5449570832,TJ,CH4,3.0,kg/TJ,28.6348712496,kg +997f0f8b-d45c-375b-a4be-c22314d56835,SESCO,II.1.1,Corrientes,AR-W,annual,2018,naphtha combustion consumption by to the public,9.5449570832,TJ,N2O,0.6,kg/TJ,5.72697424992,kg +cd38e2b5-b8de-305a-8c51-2bede540a614,SESCO,II.1.1,Córdoba,AR-X,annual,2018,naphtha combustion consumption by to the public,57.371781613299994,TJ,CO2,73300.0,kg/TJ,4205351.592254889,kg +be5ca9b1-1a8b-353d-a257-7a86b45eb144,SESCO,II.1.1,Córdoba,AR-X,annual,2018,naphtha combustion consumption by to the public,57.371781613299994,TJ,CH4,3.0,kg/TJ,172.1153448399,kg +4b7a020f-0850-3684-8e5a-6701774a61d5,SESCO,II.1.1,Córdoba,AR-X,annual,2018,naphtha combustion consumption by to the public,57.371781613299994,TJ,N2O,0.6,kg/TJ,34.423068967979994,kg +0f189a1b-810f-3671-94f7-7fe848d1497d,SESCO,II.1.1,Entre Rios,AR-E,annual,2018,naphtha combustion consumption by to the public,48.1188527897,TJ,CO2,73300.0,kg/TJ,3527111.90948501,kg +a841f5b6-182d-37d5-890a-4d60066bcec5,SESCO,II.1.1,Entre Rios,AR-E,annual,2018,naphtha combustion consumption by to the public,48.1188527897,TJ,CH4,3.0,kg/TJ,144.35655836910001,kg +df07d0c9-bd70-3215-a80f-4f8faf2e52e2,SESCO,II.1.1,Entre Rios,AR-E,annual,2018,naphtha combustion consumption by to the public,48.1188527897,TJ,N2O,0.6,kg/TJ,28.87131167382,kg +9a2a4f19-cbaf-3e31-a17a-5cf435f7142f,SESCO,II.1.1,Formosa,AR-P,annual,2018,naphtha combustion consumption by to the public,1.0982775418999997,TJ,CO2,73300.0,kg/TJ,80503.74382126998,kg +fb986630-54f3-3e4b-89fe-52c0e361ed61,SESCO,II.1.1,Formosa,AR-P,annual,2018,naphtha combustion consumption by to the public,1.0982775418999997,TJ,CH4,3.0,kg/TJ,3.294832625699999,kg +dbfd9983-9e16-3927-b250-cea1bc17210b,SESCO,II.1.1,Formosa,AR-P,annual,2018,naphtha combustion consumption by to the public,1.0982775418999997,TJ,N2O,0.6,kg/TJ,0.6589665251399998,kg +79592236-8193-3e0d-9ed2-14e705d5c8b1,SESCO,II.1.1,Jujuy,AR-Y,annual,2018,naphtha combustion consumption by to the public,0.3069102344,TJ,CO2,73300.0,kg/TJ,22496.520181519998,kg +f32da097-c823-32f4-9aca-ac500d803abc,SESCO,II.1.1,Jujuy,AR-Y,annual,2018,naphtha combustion consumption by to the public,0.3069102344,TJ,CH4,3.0,kg/TJ,0.9207307032,kg +b7ef7944-79ec-3a8e-9eb5-d359710c453a,SESCO,II.1.1,Jujuy,AR-Y,annual,2018,naphtha combustion consumption by to the public,0.3069102344,TJ,N2O,0.6,kg/TJ,0.18414614063999998,kg +d0cfbffd-7ba0-3038-a37b-14f033908eb4,SESCO,II.1.1,La Pampa,AR-L,annual,2018,naphtha combustion consumption by to the public,58.22593987595,TJ,CO2,73300.0,kg/TJ,4267961.392907135,kg +60c7a1ba-66c3-3d4f-bd44-117e7f27f95e,SESCO,II.1.1,La Pampa,AR-L,annual,2018,naphtha combustion consumption by to the public,58.22593987595,TJ,CH4,3.0,kg/TJ,174.67781962785,kg +94ed2f3b-4324-3559-bbea-6f61022659cd,SESCO,II.1.1,La Pampa,AR-L,annual,2018,naphtha combustion consumption by to the public,58.22593987595,TJ,N2O,0.6,kg/TJ,34.935563925569994,kg +7ca15f98-73d6-34eb-85f0-efbb58c31c3b,SESCO,II.1.1,Mendoza,AR-M,annual,2018,naphtha combustion consumption by to the public,1.1168190187,TJ,CO2,73300.0,kg/TJ,81862.83407071,kg +bd6024ad-b1c8-3d29-9462-6514005d7a0e,SESCO,II.1.1,Mendoza,AR-M,annual,2018,naphtha combustion consumption by to the public,1.1168190187,TJ,CH4,3.0,kg/TJ,3.3504570560999998,kg +5fa2c02e-45bd-357c-abb3-81fca65660ab,SESCO,II.1.1,Mendoza,AR-M,annual,2018,naphtha combustion consumption by to the public,1.1168190187,TJ,N2O,0.6,kg/TJ,0.6700914112199999,kg +b4627656-c569-3f46-b81c-b9faa47c2017,SESCO,II.1.1,Misiones,AR-N,annual,2018,naphtha combustion consumption by to the public,5.2072883709,TJ,CO2,73300.0,kg/TJ,381694.23758697,kg +04763922-8fb4-30e4-b777-4858e285ec7e,SESCO,II.1.1,Misiones,AR-N,annual,2018,naphtha combustion consumption by to the public,5.2072883709,TJ,CH4,3.0,kg/TJ,15.6218651127,kg +2155192f-579a-3adc-aff0-ba67af45d78f,SESCO,II.1.1,Misiones,AR-N,annual,2018,naphtha combustion consumption by to the public,5.2072883709,TJ,N2O,0.6,kg/TJ,3.12437302254,kg +96f97311-3cc2-38ad-bc11-c9cf0c31eb04,SESCO,II.1.1,Neuquén,AR-Q,annual,2018,naphtha combustion consumption by to the public,129.59049829494998,TJ,CO2,73300.0,kg/TJ,9498983.525019834,kg +1844af84-2ce8-380e-b25a-a0f83bb6255a,SESCO,II.1.1,Neuquén,AR-Q,annual,2018,naphtha combustion consumption by to the public,129.59049829494998,TJ,CH4,3.0,kg/TJ,388.77149488485,kg +72085324-c245-3019-89dd-2c2e35c7d858,SESCO,II.1.1,Neuquén,AR-Q,annual,2018,naphtha combustion consumption by to the public,129.59049829494998,TJ,N2O,0.6,kg/TJ,77.75429897696999,kg +e5b1ed3b-3232-3be5-86e6-4c82fa928d42,SESCO,II.1.1,Rio Negro,AR-R,annual,2018,naphtha combustion consumption by to the public,101.7010980986,TJ,CO2,73300.0,kg/TJ,7454690.49062738,kg +de96aa2e-2597-37de-8c6f-ce0bef36e442,SESCO,II.1.1,Rio Negro,AR-R,annual,2018,naphtha combustion consumption by to the public,101.7010980986,TJ,CH4,3.0,kg/TJ,305.10329429579997,kg +f148b84c-a35d-321d-ac74-969d9a57bf76,SESCO,II.1.1,Rio Negro,AR-R,annual,2018,naphtha combustion consumption by to the public,101.7010980986,TJ,N2O,0.6,kg/TJ,61.020658859159994,kg +190c9912-bd16-3b9b-a166-e5d86a89ffc0,SESCO,II.1.1,San Luis,AR-D,annual,2018,naphtha combustion consumption by to the public,10.2214770196,TJ,CO2,73300.0,kg/TJ,749234.26553668,kg +ccccba0e-1ba7-3a4b-b5c5-440592e5118a,SESCO,II.1.1,San Luis,AR-D,annual,2018,naphtha combustion consumption by to the public,10.2214770196,TJ,CH4,3.0,kg/TJ,30.664431058799998,kg +e928e3a6-1bbd-36d4-8115-ab4f3f34b873,SESCO,II.1.1,San Luis,AR-D,annual,2018,naphtha combustion consumption by to the public,10.2214770196,TJ,N2O,0.6,kg/TJ,6.13288621176,kg +87ffdee7-1695-3860-955c-48ee3880a7ef,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,naphtha combustion consumption by to the public,117.64304765289998,TJ,CO2,73300.0,kg/TJ,8623235.392957568,kg +040c5cb8-9091-3a5c-a5d3-3d480b61db75,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,naphtha combustion consumption by to the public,117.64304765289998,TJ,CH4,3.0,kg/TJ,352.9291429586999,kg +a789700a-bc7b-3bd7-b147-0c6b14023fcd,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,naphtha combustion consumption by to the public,117.64304765289998,TJ,N2O,0.6,kg/TJ,70.58582859173998,kg +09551a1b-857e-3231-99fa-1222070136b9,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2018,naphtha combustion consumption by to the public,27.998239884999993,TJ,CO2,73300.0,kg/TJ,2052270.9835704996,kg +8f2c2bf7-3ac3-3302-b9cb-c7cfd2a609d6,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2018,naphtha combustion consumption by to the public,27.998239884999993,TJ,CH4,3.0,kg/TJ,83.99471965499998,kg +8b60fc6c-1bc1-387c-9417-09a40c70d29b,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2018,naphtha combustion consumption by to the public,27.998239884999993,TJ,N2O,0.6,kg/TJ,16.798943930999997,kg +1c21486a-dc8b-3080-8f2f-a5729d1cffef,SESCO,II.1.1,Tucuman,AR-T,annual,2018,naphtha combustion consumption by to the public,0.9425047400999998,TJ,CO2,73300.0,kg/TJ,69085.59744932999,kg +d0acba95-bf8a-30be-937d-32dfedc84647,SESCO,II.1.1,Tucuman,AR-T,annual,2018,naphtha combustion consumption by to the public,0.9425047400999998,TJ,CH4,3.0,kg/TJ,2.8275142202999994,kg +9c4a8f26-cea9-3543-af3c-80940452cb91,SESCO,II.1.1,Tucuman,AR-T,annual,2018,naphtha combustion consumption by to the public,0.9425047400999998,TJ,N2O,0.6,kg/TJ,0.5655028440599998,kg +da494789-7b76-30d3-9e13-c41890c9807e,SESCO,II.5.1,Buenos Aires,AR-B,annual,2018,naphtha combustion consumption by agriculture machines,275.34702964999997,TJ,CO2,73300.0,kg/TJ,20182937.273344997,kg +3a7f43f1-9ea4-3936-9b65-00b102b2467a,SESCO,II.5.1,Buenos Aires,AR-B,annual,2018,naphtha combustion consumption by agriculture machines,275.34702964999997,TJ,CH4,3.0,kg/TJ,826.0410889499999,kg +cd379c2a-d9fa-33a7-bc9b-3cc1e884f9d4,SESCO,II.5.1,Buenos Aires,AR-B,annual,2018,naphtha combustion consumption by agriculture machines,275.34702964999997,TJ,N2O,0.6,kg/TJ,165.20821778999996,kg +70eb9c72-3c3c-364a-b65b-e19303ebce5c,SESCO,II.5.1,Mendoza,AR-M,annual,2018,naphtha combustion consumption by agriculture machines,19.944285899999997,TJ,CO2,73300.0,kg/TJ,1461916.1564699998,kg +72c51e0d-e438-38d8-8b83-7865b3239c79,SESCO,II.5.1,Mendoza,AR-M,annual,2018,naphtha combustion consumption by agriculture machines,19.944285899999997,TJ,CH4,3.0,kg/TJ,59.83285769999999,kg +5ac2976c-c262-33b2-bf3b-e87099819728,SESCO,II.5.1,Mendoza,AR-M,annual,2018,naphtha combustion consumption by agriculture machines,19.944285899999997,TJ,N2O,0.6,kg/TJ,11.966571539999999,kg +5dddb168-e339-3583-aadd-24dbe8af018e,SESCO,II.5.1,Misiones,AR-N,annual,2018,naphtha combustion consumption by agriculture machines,1.0978506,TJ,CO2,73300.0,kg/TJ,80472.44897999999,kg +acd46cb4-798e-3e73-8e93-24f26c45e01a,SESCO,II.5.1,Misiones,AR-N,annual,2018,naphtha combustion consumption by agriculture machines,1.0978506,TJ,CH4,3.0,kg/TJ,3.2935517999999995,kg +d0d5c14a-468e-3058-9259-f56134828fd2,SESCO,II.5.1,Misiones,AR-N,annual,2018,naphtha combustion consumption by agriculture machines,1.0978506,TJ,N2O,0.6,kg/TJ,0.6587103599999999,kg +57bd636f-4b59-39dc-8ae6-249e8e113400,SESCO,II.5.1,Salta,AR-A,annual,2018,naphtha combustion consumption by agriculture machines,0.6099169999999999,TJ,CO2,73300.0,kg/TJ,44706.916099999995,kg +245ff045-499a-32af-8c2b-f391dad45dcf,SESCO,II.5.1,Salta,AR-A,annual,2018,naphtha combustion consumption by agriculture machines,0.6099169999999999,TJ,CH4,3.0,kg/TJ,1.829751,kg +e4b4721f-f5a8-31d6-b552-85be0a97bcef,SESCO,II.5.1,Salta,AR-A,annual,2018,naphtha combustion consumption by agriculture machines,0.6099169999999999,TJ,N2O,0.6,kg/TJ,0.36595019999999995,kg +24cdc35a-1fe4-3e2d-a3b7-8f71288500ff,SESCO,II.5.1,Santa Fe,AR-S,annual,2018,naphtha combustion consumption by agriculture machines,122.80678794999999,TJ,CO2,73300.0,kg/TJ,9001737.556735,kg +a45a1c28-e601-30d0-9f5c-46037c1b299e,SESCO,II.5.1,Santa Fe,AR-S,annual,2018,naphtha combustion consumption by agriculture machines,122.80678794999999,TJ,CH4,3.0,kg/TJ,368.42036384999994,kg +03f37c22-3dd5-3efa-897c-50297e51bb10,SESCO,II.5.1,Santa Fe,AR-S,annual,2018,naphtha combustion consumption by agriculture machines,122.80678794999999,TJ,N2O,0.6,kg/TJ,73.68407276999999,kg +38685304-4f7f-3259-800a-ead74bb3ca36,SESCO,II.5.1,Buenos Aires,AR-B,annual,2018,naphtha combustion consumption by agriculture machines,1.25032985,TJ,CO2,73300.0,kg/TJ,91649.178005,kg +06ce28aa-5199-3154-9b2b-2d1db9c2c10d,SESCO,II.5.1,Buenos Aires,AR-B,annual,2018,naphtha combustion consumption by agriculture machines,1.25032985,TJ,CH4,3.0,kg/TJ,3.75098955,kg +59aa4017-7a3f-3702-99c7-bf273adb7836,SESCO,II.5.1,Buenos Aires,AR-B,annual,2018,naphtha combustion consumption by agriculture machines,1.25032985,TJ,N2O,0.6,kg/TJ,0.7501979099999999,kg +5a855879-1c80-3190-8817-a2ec3b8db2f1,SESCO,II.5.1,Santa Fe,AR-S,annual,2018,naphtha combustion consumption by agriculture machines,0.51842945,TJ,CO2,73300.0,kg/TJ,38000.878684999996,kg +fdfac3c0-673b-32cd-80fc-16f5601fb1f3,SESCO,II.5.1,Santa Fe,AR-S,annual,2018,naphtha combustion consumption by agriculture machines,0.51842945,TJ,CH4,3.0,kg/TJ,1.5552883499999999,kg +b89e4266-a0c1-3b85-a9db-2e723c3e5b0d,SESCO,II.5.1,Santa Fe,AR-S,annual,2018,naphtha combustion consumption by agriculture machines,0.51842945,TJ,N2O,0.6,kg/TJ,0.31105766999999995,kg +24c6535c-ddf6-3eec-9fc7-c98112d24141,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,naphtha combustion consumption by to the public,37038.3076756,TJ,CO2,73300.0,kg/TJ,2714907952.62148,kg +92d8a016-c18d-325e-be11-fafd1066669c,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,naphtha combustion consumption by to the public,37038.3076756,TJ,CH4,3.0,kg/TJ,111114.92302680001,kg +5f002fcf-6211-3965-b6cf-569e40b65f2c,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,naphtha combustion consumption by to the public,37038.3076756,TJ,N2O,0.6,kg/TJ,22222.98460536,kg +ece2527f-c90f-39d5-a18c-6627591bbebf,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,naphtha combustion consumption by to the public,7856.950793999999,TJ,CO2,73300.0,kg/TJ,575914493.2002,kg +9ae31e7f-25d4-3a6a-b14a-ab995b7de37d,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,naphtha combustion consumption by to the public,7856.950793999999,TJ,CH4,3.0,kg/TJ,23570.852381999997,kg +c9aa0d91-6e9f-34cc-bbf0-e83af466f232,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,naphtha combustion consumption by to the public,7856.950793999999,TJ,N2O,0.6,kg/TJ,4714.1704764,kg +dd4c1caf-7daf-3bc2-8ba4-a8210dae9501,SESCO,II.1.1,Catamarca,AR-K,annual,2018,naphtha combustion consumption by to the public,722.3551989499999,TJ,CO2,73300.0,kg/TJ,52948636.08303499,kg +c155cc3f-1e35-37df-8031-d95462f42098,SESCO,II.1.1,Catamarca,AR-K,annual,2018,naphtha combustion consumption by to the public,722.3551989499999,TJ,CH4,3.0,kg/TJ,2167.0655968499996,kg +d225b04b-6fb6-3f26-ada4-8ad477099310,SESCO,II.1.1,Catamarca,AR-K,annual,2018,naphtha combustion consumption by to the public,722.3551989499999,TJ,N2O,0.6,kg/TJ,433.41311936999995,kg +427d7998-248a-36b5-89ad-de5399e5fd5c,SESCO,II.1.1,Chaco,AR-H,annual,2018,naphtha combustion consumption by to the public,2330.7673196499995,TJ,CO2,73300.0,kg/TJ,170845244.53034496,kg +c5f38771-8c21-3ac5-9b97-fc457a4d022c,SESCO,II.1.1,Chaco,AR-H,annual,2018,naphtha combustion consumption by to the public,2330.7673196499995,TJ,CH4,3.0,kg/TJ,6992.301958949998,kg +f0a608b9-448a-3a16-89b2-ed42ba8169c8,SESCO,II.1.1,Chaco,AR-H,annual,2018,naphtha combustion consumption by to the public,2330.7673196499995,TJ,N2O,0.6,kg/TJ,1398.4603917899997,kg +a1adf081-5727-3df8-bef4-b821b28c7b97,SESCO,II.1.1,Chubut,AR-U,annual,2018,naphtha combustion consumption by to the public,3244.54496905,TJ,CO2,73300.0,kg/TJ,237825146.231365,kg +cc6dfab2-5946-36d8-89aa-6885da05c9c3,SESCO,II.1.1,Chubut,AR-U,annual,2018,naphtha combustion consumption by to the public,3244.54496905,TJ,CH4,3.0,kg/TJ,9733.63490715,kg +d8a7572e-37a4-3601-b5ea-06d7b94ef8c8,SESCO,II.1.1,Chubut,AR-U,annual,2018,naphtha combustion consumption by to the public,3244.54496905,TJ,N2O,0.6,kg/TJ,1946.7269814299998,kg +83cedc5a-28de-3273-87fb-83eae78eed78,SESCO,II.1.1,Corrientes,AR-W,annual,2018,naphtha combustion consumption by to the public,2358.2440804999997,TJ,CO2,73300.0,kg/TJ,172859291.10064998,kg +8a76c32b-e271-3751-89c5-83e4ec3b7924,SESCO,II.1.1,Corrientes,AR-W,annual,2018,naphtha combustion consumption by to the public,2358.2440804999997,TJ,CH4,3.0,kg/TJ,7074.732241499999,kg +cd043fb1-a32b-3c17-97ed-468186ee571c,SESCO,II.1.1,Corrientes,AR-W,annual,2018,naphtha combustion consumption by to the public,2358.2440804999997,TJ,N2O,0.6,kg/TJ,1414.9464482999997,kg +6dc5632f-0af8-35af-a63e-71bf2bf6acda,SESCO,II.1.1,Córdoba,AR-X,annual,2018,naphtha combustion consumption by to the public,8893.3827521,TJ,CO2,73300.0,kg/TJ,651884955.72893,kg +c3cd3808-4b95-3084-b216-d78289c505ff,SESCO,II.1.1,Córdoba,AR-X,annual,2018,naphtha combustion consumption by to the public,8893.3827521,TJ,CH4,3.0,kg/TJ,26680.148256300003,kg +467c3eed-b6fe-36eb-8f12-0b430341ddd0,SESCO,II.1.1,Córdoba,AR-X,annual,2018,naphtha combustion consumption by to the public,8893.3827521,TJ,N2O,0.6,kg/TJ,5336.02965126,kg +45b55948-217c-304a-abc9-964fcd6fee6e,SESCO,II.1.1,Entre Rios,AR-E,annual,2018,naphtha combustion consumption by to the public,3212.4938306999998,TJ,CO2,73300.0,kg/TJ,235475797.79031,kg +98eeb666-769f-358d-9bd6-9f1fba5f072d,SESCO,II.1.1,Entre Rios,AR-E,annual,2018,naphtha combustion consumption by to the public,3212.4938306999998,TJ,CH4,3.0,kg/TJ,9637.4814921,kg +b1298430-38e3-35c3-b0ff-eb01590f366d,SESCO,II.1.1,Entre Rios,AR-E,annual,2018,naphtha combustion consumption by to the public,3212.4938306999998,TJ,N2O,0.6,kg/TJ,1927.4962984199997,kg +ca04b294-fbf8-3e5a-88bc-7443a9b2f9db,SESCO,II.1.1,Formosa,AR-P,annual,2018,naphtha combustion consumption by to the public,876.2067622,TJ,CO2,73300.0,kg/TJ,64225955.669259995,kg +c65c281d-7c2f-325e-880c-e675093ec874,SESCO,II.1.1,Formosa,AR-P,annual,2018,naphtha combustion consumption by to the public,876.2067622,TJ,CH4,3.0,kg/TJ,2628.6202866,kg +c53ae7ae-5fee-3f30-a0bb-172e7fa80c74,SESCO,II.1.1,Formosa,AR-P,annual,2018,naphtha combustion consumption by to the public,876.2067622,TJ,N2O,0.6,kg/TJ,525.7240573199999,kg +88827673-f9d5-3be4-a67b-67d865e4ac34,SESCO,II.1.1,Jujuy,AR-Y,annual,2018,naphtha combustion consumption by to the public,1405.0048012,TJ,CO2,73300.0,kg/TJ,102986851.92796,kg +e36c6985-102e-322c-8e6c-9746300db6d9,SESCO,II.1.1,Jujuy,AR-Y,annual,2018,naphtha combustion consumption by to the public,1405.0048012,TJ,CH4,3.0,kg/TJ,4215.0144036,kg +5e12582e-7315-3c67-b696-8fdf80ca933f,SESCO,II.1.1,Jujuy,AR-Y,annual,2018,naphtha combustion consumption by to the public,1405.0048012,TJ,N2O,0.6,kg/TJ,843.00288072,kg +b91e67d3-2f26-3692-91d9-1e6c795dba74,SESCO,II.1.1,La Pampa,AR-L,annual,2018,naphtha combustion consumption by to the public,1609.3269962,TJ,CO2,73300.0,kg/TJ,117963668.82146,kg +e79a4ed1-0ff6-3dd7-ba90-dae5cf48f12b,SESCO,II.1.1,La Pampa,AR-L,annual,2018,naphtha combustion consumption by to the public,1609.3269962,TJ,CH4,3.0,kg/TJ,4827.9809886,kg +cc2afe57-e2da-34f8-9148-50e51d2738e2,SESCO,II.1.1,La Pampa,AR-L,annual,2018,naphtha combustion consumption by to the public,1609.3269962,TJ,N2O,0.6,kg/TJ,965.59619772,kg +439222bf-8b4a-3f10-b873-e436352cd43f,SESCO,II.1.1,La Rioja,AR-F,annual,2018,naphtha combustion consumption by to the public,967.1453868999998,TJ,CO2,73300.0,kg/TJ,70891756.85976999,kg +f08250e0-7a67-3d5e-b6d6-55708f807120,SESCO,II.1.1,La Rioja,AR-F,annual,2018,naphtha combustion consumption by to the public,967.1453868999998,TJ,CH4,3.0,kg/TJ,2901.4361606999996,kg +34afc1d1-e6d3-3d66-a148-28a28983cb94,SESCO,II.1.1,La Rioja,AR-F,annual,2018,naphtha combustion consumption by to the public,967.1453868999998,TJ,N2O,0.6,kg/TJ,580.2872321399999,kg +56822ea1-592c-38df-a435-b12f639c05ef,SESCO,II.1.1,Mendoza,AR-M,annual,2018,naphtha combustion consumption by to the public,4862.105844749999,TJ,CO2,73300.0,kg/TJ,356392358.42017496,kg +cec2f6a5-1164-3ae5-97f3-eda7ffe6b4c4,SESCO,II.1.1,Mendoza,AR-M,annual,2018,naphtha combustion consumption by to the public,4862.105844749999,TJ,CH4,3.0,kg/TJ,14586.317534249996,kg +ec5d26e8-1064-3e49-9949-e3e83bbe75c9,SESCO,II.1.1,Mendoza,AR-M,annual,2018,naphtha combustion consumption by to the public,4862.105844749999,TJ,N2O,0.6,kg/TJ,2917.2635068499994,kg +f46b2492-c12f-3d68-a2f9-a78ea5fc0355,SESCO,II.1.1,Misiones,AR-N,annual,2018,naphtha combustion consumption by to the public,3185.7184743999996,TJ,CO2,73300.0,kg/TJ,233513164.17351997,kg +701c579a-1d40-3910-8747-89c6545e20f7,SESCO,II.1.1,Misiones,AR-N,annual,2018,naphtha combustion consumption by to the public,3185.7184743999996,TJ,CH4,3.0,kg/TJ,9557.155423199998,kg +e654d5fc-768b-36de-8777-138020f9b50c,SESCO,II.1.1,Misiones,AR-N,annual,2018,naphtha combustion consumption by to the public,3185.7184743999996,TJ,N2O,0.6,kg/TJ,1911.4310846399997,kg +e408d7f8-c63e-3c6b-b07b-2b167f9a3c7f,SESCO,II.1.1,Neuquén,AR-Q,annual,2018,naphtha combustion consumption by to the public,3125.0622287499996,TJ,CO2,73300.0,kg/TJ,229067061.36737496,kg +a70fb3e3-7a1d-33ec-9178-db8b4058bd4c,SESCO,II.1.1,Neuquén,AR-Q,annual,2018,naphtha combustion consumption by to the public,3125.0622287499996,TJ,CH4,3.0,kg/TJ,9375.18668625,kg +97ef3ba1-bb79-3a77-97d3-79c01effc991,SESCO,II.1.1,Neuquén,AR-Q,annual,2018,naphtha combustion consumption by to the public,3125.0622287499996,TJ,N2O,0.6,kg/TJ,1875.0373372499996,kg +9dc607c6-56cd-3b4f-ac6c-59401438731d,SESCO,II.1.1,Rio Negro,AR-R,annual,2018,naphtha combustion consumption by to the public,3100.1776151499994,TJ,CO2,73300.0,kg/TJ,227243019.19049495,kg +2bda6069-8905-38c9-8cee-5b72e8598625,SESCO,II.1.1,Rio Negro,AR-R,annual,2018,naphtha combustion consumption by to the public,3100.1776151499994,TJ,CH4,3.0,kg/TJ,9300.532845449998,kg +33990648-d199-3456-999a-c58fc7fc3aaa,SESCO,II.1.1,Rio Negro,AR-R,annual,2018,naphtha combustion consumption by to the public,3100.1776151499994,TJ,N2O,0.6,kg/TJ,1860.1065690899995,kg +d30c4d33-49f3-3a55-861a-89da646e34a2,SESCO,II.1.1,Salta,AR-A,annual,2018,naphtha combustion consumption by to the public,3153.85031115,TJ,CO2,73300.0,kg/TJ,231177227.807295,kg +7172baf3-0dc0-39b1-bd05-731cc1c8ff5f,SESCO,II.1.1,Salta,AR-A,annual,2018,naphtha combustion consumption by to the public,3153.85031115,TJ,CH4,3.0,kg/TJ,9461.55093345,kg +cf042bb2-512b-33c2-bb06-563544e46d17,SESCO,II.1.1,Salta,AR-A,annual,2018,naphtha combustion consumption by to the public,3153.85031115,TJ,N2O,0.6,kg/TJ,1892.31018669,kg +81289821-d29b-3188-af22-1a29f0784654,SESCO,II.1.1,San Juan,AR-J,annual,2018,naphtha combustion consumption by to the public,1658.45581055,TJ,CO2,73300.0,kg/TJ,121564810.913315,kg +a48c3786-134e-3f4f-8c8a-120cf4268ac3,SESCO,II.1.1,San Juan,AR-J,annual,2018,naphtha combustion consumption by to the public,1658.45581055,TJ,CH4,3.0,kg/TJ,4975.36743165,kg +4aaa47e7-8dd4-31c0-bd39-7ec1368169e5,SESCO,II.1.1,San Juan,AR-J,annual,2018,naphtha combustion consumption by to the public,1658.45581055,TJ,N2O,0.6,kg/TJ,995.0734863299999,kg +24f39986-5fbc-31d6-93a5-21687741d10a,SESCO,II.1.1,San Luis,AR-D,annual,2018,naphtha combustion consumption by to the public,1370.5139948499998,TJ,CO2,73300.0,kg/TJ,100458675.82250498,kg +8e0e9377-469a-3eb9-adb0-090fb9ec2fb6,SESCO,II.1.1,San Luis,AR-D,annual,2018,naphtha combustion consumption by to the public,1370.5139948499998,TJ,CH4,3.0,kg/TJ,4111.541984549999,kg +f2a7d50c-6b9d-3c79-9464-943c451a2d6c,SESCO,II.1.1,San Luis,AR-D,annual,2018,naphtha combustion consumption by to the public,1370.5139948499998,TJ,N2O,0.6,kg/TJ,822.3083969099998,kg +cdd08fe4-63ff-329f-90eb-bdcccf8d16e6,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2018,naphtha combustion consumption by to the public,2203.6301209999997,TJ,CO2,73300.0,kg/TJ,161526087.86929998,kg +3c2b7461-56dc-3d00-a2fa-0f3559866a5b,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2018,naphtha combustion consumption by to the public,2203.6301209999997,TJ,CH4,3.0,kg/TJ,6610.890362999999,kg +10662446-55fc-337f-8ada-dbb570755be9,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2018,naphtha combustion consumption by to the public,2203.6301209999997,TJ,N2O,0.6,kg/TJ,1322.1780725999997,kg +1005c4e7-0679-343d-8480-486613991c5b,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,naphtha combustion consumption by to the public,6721.773273599999,TJ,CO2,73300.0,kg/TJ,492705980.95487994,kg +013c8824-15a5-3799-858e-a654f6fac2f6,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,naphtha combustion consumption by to the public,6721.773273599999,TJ,CH4,3.0,kg/TJ,20165.319820799996,kg +a6718937-6d02-36e9-8739-b6e00317fec2,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,naphtha combustion consumption by to the public,6721.773273599999,TJ,N2O,0.6,kg/TJ,4033.063964159999,kg +1d7a0d15-5722-301a-a2e5-6ca280e691b1,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2018,naphtha combustion consumption by to the public,1401.25381165,TJ,CO2,73300.0,kg/TJ,102711904.393945,kg +e195c749-18f7-3b6a-819b-a4d1b43735e1,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2018,naphtha combustion consumption by to the public,1401.25381165,TJ,CH4,3.0,kg/TJ,4203.76143495,kg +70a53d44-570e-3cb4-854d-4c49fc2843e4,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2018,naphtha combustion consumption by to the public,1401.25381165,TJ,N2O,0.6,kg/TJ,840.75228699,kg +9affa1bf-0d9e-3c45-9652-e110a11b033d,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2018,naphtha combustion consumption by to the public,1640.95119265,TJ,CO2,73300.0,kg/TJ,120281722.421245,kg +34faf48e-d6df-3c28-97a0-ed68673b412d,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2018,naphtha combustion consumption by to the public,1640.95119265,TJ,CH4,3.0,kg/TJ,4922.85357795,kg +72c73d42-a90f-3cc0-a82c-5b891bf61bbb,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2018,naphtha combustion consumption by to the public,1640.95119265,TJ,N2O,0.6,kg/TJ,984.57071559,kg +d7be0631-1384-307f-896d-bcd259bcb856,SESCO,II.1.1,Tucuman,AR-T,annual,2018,naphtha combustion consumption by to the public,2513.3459736,TJ,CO2,73300.0,kg/TJ,184228259.86488,kg +7107cad4-ebde-3c64-9ef8-2201b4b2cb85,SESCO,II.1.1,Tucuman,AR-T,annual,2018,naphtha combustion consumption by to the public,2513.3459736,TJ,CH4,3.0,kg/TJ,7540.0379207999995,kg +6a999e30-8c25-3075-b7bd-c1f506f02e30,SESCO,II.1.1,Tucuman,AR-T,annual,2018,naphtha combustion consumption by to the public,2513.3459736,TJ,N2O,0.6,kg/TJ,1508.0075841599999,kg +860daef5-52f8-3ab1-990b-3caf88a4f127,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,naphtha combustion consumption by to the public,16923.976916,TJ,CO2,73300.0,kg/TJ,1240527507.9428,kg +2586e63d-3a99-3434-a2ea-16b74ae11d74,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,naphtha combustion consumption by to the public,16923.976916,TJ,CH4,3.0,kg/TJ,50771.930748,kg +d3660306-d86f-3386-8f3b-cd94bb55c31c,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,naphtha combustion consumption by to the public,16923.976916,TJ,N2O,0.6,kg/TJ,10154.386149599999,kg +10c08fe4-24b6-3ca2-bb4e-c0c6b95a65b4,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,naphtha combustion consumption by to the public,3954.36637365,TJ,CO2,73300.0,kg/TJ,289855055.188545,kg +94fa21b4-507a-31ed-bca7-fd6989cfb26e,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,naphtha combustion consumption by to the public,3954.36637365,TJ,CH4,3.0,kg/TJ,11863.099120949999,kg +e2f5c5ba-77c7-3008-b4e0-02e3a23d9902,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,naphtha combustion consumption by to the public,3954.36637365,TJ,N2O,0.6,kg/TJ,2372.6198241899997,kg +63aa412b-7e5f-3fe6-93e2-dac51f20ac30,SESCO,II.1.1,Catamarca,AR-K,annual,2018,naphtha combustion consumption by to the public,332.67922765,TJ,CO2,73300.0,kg/TJ,24385387.386745,kg +2cdfb123-8a75-3173-aefa-a5ea57e01748,SESCO,II.1.1,Catamarca,AR-K,annual,2018,naphtha combustion consumption by to the public,332.67922765,TJ,CH4,3.0,kg/TJ,998.0376829499999,kg +4a77fd11-ee2e-3977-8ba9-b3dd0df3abfe,SESCO,II.1.1,Catamarca,AR-K,annual,2018,naphtha combustion consumption by to the public,332.67922765,TJ,N2O,0.6,kg/TJ,199.60753658999997,kg +bfcb88b6-a7ee-3d53-8c83-79807badb663,SESCO,II.1.1,Chaco,AR-H,annual,2018,naphtha combustion consumption by to the public,1003.2524732999999,TJ,CO2,73300.0,kg/TJ,73538406.29289,kg +fc53ec54-9926-3562-9e36-24baeb0d119b,SESCO,II.1.1,Chaco,AR-H,annual,2018,naphtha combustion consumption by to the public,1003.2524732999999,TJ,CH4,3.0,kg/TJ,3009.7574198999996,kg +084713b0-49b9-34a5-b43d-2bb5fbcfbc62,SESCO,II.1.1,Chaco,AR-H,annual,2018,naphtha combustion consumption by to the public,1003.2524732999999,TJ,N2O,0.6,kg/TJ,601.9514839799999,kg +20b1bfb0-8eb3-34ff-a709-837475749041,SESCO,II.1.1,Chubut,AR-U,annual,2018,naphtha combustion consumption by to the public,1438.0318067499998,TJ,CO2,73300.0,kg/TJ,105407731.43477498,kg +8b44e83e-a305-36d1-a745-42e00587a41d,SESCO,II.1.1,Chubut,AR-U,annual,2018,naphtha combustion consumption by to the public,1438.0318067499998,TJ,CH4,3.0,kg/TJ,4314.09542025,kg +2a24db03-5c33-3499-afd2-9b055a707305,SESCO,II.1.1,Chubut,AR-U,annual,2018,naphtha combustion consumption by to the public,1438.0318067499998,TJ,N2O,0.6,kg/TJ,862.8190840499998,kg +1a52c71a-e6f7-3255-bbad-a8e6cf9b3ea0,SESCO,II.1.1,Corrientes,AR-W,annual,2018,naphtha combustion consumption by to the public,1105.3220832499999,TJ,CO2,73300.0,kg/TJ,81020108.70222498,kg +b51af777-573b-3d4a-ac83-c36e425eda8b,SESCO,II.1.1,Corrientes,AR-W,annual,2018,naphtha combustion consumption by to the public,1105.3220832499999,TJ,CH4,3.0,kg/TJ,3315.9662497499994,kg +1e5ad43f-b215-36b7-8b3e-185d537d8a02,SESCO,II.1.1,Corrientes,AR-W,annual,2018,naphtha combustion consumption by to the public,1105.3220832499999,TJ,N2O,0.6,kg/TJ,663.1932499499999,kg +c080fd1a-6cc6-3755-b2dc-9a04429c4160,SESCO,II.1.1,Córdoba,AR-X,annual,2018,naphtha combustion consumption by to the public,3890.7825263999994,TJ,CO2,73300.0,kg/TJ,285194359.1851199,kg +6d20a1de-c2ad-38d9-9f2a-635e1a703ddc,SESCO,II.1.1,Córdoba,AR-X,annual,2018,naphtha combustion consumption by to the public,3890.7825263999994,TJ,CH4,3.0,kg/TJ,11672.347579199999,kg +0342ce4e-afd4-336d-9a64-b6befbefc652,SESCO,II.1.1,Córdoba,AR-X,annual,2018,naphtha combustion consumption by to the public,3890.7825263999994,TJ,N2O,0.6,kg/TJ,2334.4695158399995,kg +85d4b878-3d2a-35b4-bbb6-ed7f45a69b0c,SESCO,II.1.1,Entre Rios,AR-E,annual,2018,naphtha combustion consumption by to the public,1459.8363395,TJ,CO2,73300.0,kg/TJ,107006003.68534999,kg +04c762d2-8d7f-39da-90ad-1b6794fc7a90,SESCO,II.1.1,Entre Rios,AR-E,annual,2018,naphtha combustion consumption by to the public,1459.8363395,TJ,CH4,3.0,kg/TJ,4379.5090185,kg +ca0c38f8-de21-3188-9a42-79a588dba363,SESCO,II.1.1,Entre Rios,AR-E,annual,2018,naphtha combustion consumption by to the public,1459.8363395,TJ,N2O,0.6,kg/TJ,875.9018037,kg +546c4923-2d85-33b5-80f5-81e54ef8d939,SESCO,II.1.1,Formosa,AR-P,annual,2018,naphtha combustion consumption by to the public,282.78801704999995,TJ,CO2,73300.0,kg/TJ,20728361.649764996,kg +33dd19c4-90fc-3ad1-948b-785c7fe5768c,SESCO,II.1.1,Formosa,AR-P,annual,2018,naphtha combustion consumption by to the public,282.78801704999995,TJ,CH4,3.0,kg/TJ,848.3640511499998,kg +67f87189-2538-3918-936b-ca987e146a2b,SESCO,II.1.1,Formosa,AR-P,annual,2018,naphtha combustion consumption by to the public,282.78801704999995,TJ,N2O,0.6,kg/TJ,169.67281022999995,kg +226bd122-042a-3b30-b5bb-80f368cc4ca0,SESCO,II.1.1,Jujuy,AR-Y,annual,2018,naphtha combustion consumption by to the public,468.59923109999994,TJ,CO2,73300.0,kg/TJ,34348323.63963,kg +a212314e-2aa8-31f5-8e2b-1b8e0b551a43,SESCO,II.1.1,Jujuy,AR-Y,annual,2018,naphtha combustion consumption by to the public,468.59923109999994,TJ,CH4,3.0,kg/TJ,1405.7976932999998,kg +da909fd6-f44b-3b00-91a7-4d94ee1533bd,SESCO,II.1.1,Jujuy,AR-Y,annual,2018,naphtha combustion consumption by to the public,468.59923109999994,TJ,N2O,0.6,kg/TJ,281.15953865999995,kg +cb19d863-af44-3d39-9751-644d6bf68a9e,SESCO,II.1.1,La Pampa,AR-L,annual,2018,naphtha combustion consumption by to the public,1178.93906515,TJ,CO2,73300.0,kg/TJ,86416233.475495,kg +c8f65133-87c1-396c-9e98-9354852f927d,SESCO,II.1.1,La Pampa,AR-L,annual,2018,naphtha combustion consumption by to the public,1178.93906515,TJ,CH4,3.0,kg/TJ,3536.8171954500003,kg +5a7d50ca-0524-385a-a134-11fec6cd0a82,SESCO,II.1.1,La Pampa,AR-L,annual,2018,naphtha combustion consumption by to the public,1178.93906515,TJ,N2O,0.6,kg/TJ,707.36343909,kg +492b671f-254e-39e5-a614-a719b42d0f48,SESCO,II.1.1,La Rioja,AR-F,annual,2018,naphtha combustion consumption by to the public,452.77188494999996,TJ,CO2,73300.0,kg/TJ,33188179.166834995,kg +cbc3fdd6-21dd-3f6e-ab1a-17b46e9706fd,SESCO,II.1.1,La Rioja,AR-F,annual,2018,naphtha combustion consumption by to the public,452.77188494999996,TJ,CH4,3.0,kg/TJ,1358.3156548499999,kg +5d947e08-0abb-35c0-8779-c2cf0746f035,SESCO,II.1.1,La Rioja,AR-F,annual,2018,naphtha combustion consumption by to the public,452.77188494999996,TJ,N2O,0.6,kg/TJ,271.66313096999994,kg +1e2463af-d473-3f53-b034-92d7426282b1,SESCO,II.1.1,Mendoza,AR-M,annual,2018,naphtha combustion consumption by to the public,2826.38587385,TJ,CO2,73300.0,kg/TJ,207174084.55320498,kg +2222a922-26a3-35e6-ab30-2b6a7f3a3281,SESCO,II.1.1,Mendoza,AR-M,annual,2018,naphtha combustion consumption by to the public,2826.38587385,TJ,CH4,3.0,kg/TJ,8479.157621549999,kg +a5fe9b22-6f62-3bee-97cf-3fddf4dbd49f,SESCO,II.1.1,Mendoza,AR-M,annual,2018,naphtha combustion consumption by to the public,2826.38587385,TJ,N2O,0.6,kg/TJ,1695.8315243099998,kg +a2e1e0e0-c4cc-37a6-ad0f-78673af4e306,SESCO,II.1.1,Misiones,AR-N,annual,2018,naphtha combustion consumption by to the public,938.63176715,TJ,CO2,73300.0,kg/TJ,68801708.532095,kg +d78b15d3-539a-3708-bc73-96bfd3ac7da8,SESCO,II.1.1,Misiones,AR-N,annual,2018,naphtha combustion consumption by to the public,938.63176715,TJ,CH4,3.0,kg/TJ,2815.89530145,kg +4228addf-603b-3ea5-b402-91695af2a9db,SESCO,II.1.1,Misiones,AR-N,annual,2018,naphtha combustion consumption by to the public,938.63176715,TJ,N2O,0.6,kg/TJ,563.1790602899999,kg +bb92719f-f376-3a16-88d7-f8d95ef0319f,SESCO,II.1.1,Neuquén,AR-Q,annual,2018,naphtha combustion consumption by to the public,2016.5075854,TJ,CO2,73300.0,kg/TJ,147810006.00981998,kg +0e20df5b-de62-3858-a493-20fb4daad0c1,SESCO,II.1.1,Neuquén,AR-Q,annual,2018,naphtha combustion consumption by to the public,2016.5075854,TJ,CH4,3.0,kg/TJ,6049.5227562,kg +356d352e-d3de-329f-b4f0-cc8157840909,SESCO,II.1.1,Neuquén,AR-Q,annual,2018,naphtha combustion consumption by to the public,2016.5075854,TJ,N2O,0.6,kg/TJ,1209.9045512399998,kg +9cc70194-4bdd-3411-8fd1-4f748c5c3a02,SESCO,II.1.1,Rio Negro,AR-R,annual,2018,naphtha combustion consumption by to the public,1738.3549375499997,TJ,CO2,73300.0,kg/TJ,127421416.92241497,kg +724ae81f-cc9c-3926-a19e-b396f68a6458,SESCO,II.1.1,Rio Negro,AR-R,annual,2018,naphtha combustion consumption by to the public,1738.3549375499997,TJ,CH4,3.0,kg/TJ,5215.064812649999,kg +5d72faa3-20d8-32c9-a3ab-f8dd9a3d74a8,SESCO,II.1.1,Rio Negro,AR-R,annual,2018,naphtha combustion consumption by to the public,1738.3549375499997,TJ,N2O,0.6,kg/TJ,1043.0129625299999,kg +351d844e-5981-3be3-b97e-18ead2a07ecb,SESCO,II.1.1,Salta,AR-A,annual,2018,naphtha combustion consumption by to the public,1136.2448751499999,TJ,CO2,73300.0,kg/TJ,83286749.34849499,kg +38c90a7c-3b01-320a-861f-c92b292f54dc,SESCO,II.1.1,Salta,AR-A,annual,2018,naphtha combustion consumption by to the public,1136.2448751499999,TJ,CH4,3.0,kg/TJ,3408.73462545,kg +a15a2f6c-4277-342e-8033-9d4e658220a9,SESCO,II.1.1,Salta,AR-A,annual,2018,naphtha combustion consumption by to the public,1136.2448751499999,TJ,N2O,0.6,kg/TJ,681.7469250899999,kg +401308ee-849d-3b71-a046-16a8156a31aa,SESCO,II.1.1,San Juan,AR-J,annual,2018,naphtha combustion consumption by to the public,819.3624977999999,TJ,CO2,73300.0,kg/TJ,60059271.08873999,kg +829e85bc-06c9-3689-a78e-d16e36f4d4b9,SESCO,II.1.1,San Juan,AR-J,annual,2018,naphtha combustion consumption by to the public,819.3624977999999,TJ,CH4,3.0,kg/TJ,2458.0874934,kg +e3278d02-d905-328c-b294-db291bd5b5f9,SESCO,II.1.1,San Juan,AR-J,annual,2018,naphtha combustion consumption by to the public,819.3624977999999,TJ,N2O,0.6,kg/TJ,491.6174986799999,kg +754a2384-3351-357a-b2ee-94f828bf0fb1,SESCO,II.1.1,San Luis,AR-D,annual,2018,naphtha combustion consumption by to the public,739.8903127,TJ,CO2,73300.0,kg/TJ,54233959.92091,kg +6f7558b2-07eb-3704-bf67-f5c92716b9df,SESCO,II.1.1,San Luis,AR-D,annual,2018,naphtha combustion consumption by to the public,739.8903127,TJ,CH4,3.0,kg/TJ,2219.6709381,kg +8b949327-ca07-3f01-8af7-ff749bf0cab7,SESCO,II.1.1,San Luis,AR-D,annual,2018,naphtha combustion consumption by to the public,739.8903127,TJ,N2O,0.6,kg/TJ,443.93418762,kg +e0f081cf-4f18-37ce-b533-cac685d84dc2,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2018,naphtha combustion consumption by to the public,757.4864181499998,TJ,CO2,73300.0,kg/TJ,55523754.45039499,kg +c938f113-1665-382f-baf1-e0925ff6716a,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2018,naphtha combustion consumption by to the public,757.4864181499998,TJ,CH4,3.0,kg/TJ,2272.4592544499997,kg +0c1cfaa8-0a12-30fc-a64f-2a5e54ce7451,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2018,naphtha combustion consumption by to the public,757.4864181499998,TJ,N2O,0.6,kg/TJ,454.4918508899999,kg +4084f864-8271-3ff4-9990-806a8fb033f0,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,naphtha combustion consumption by to the public,3424.3789965,TJ,CO2,73300.0,kg/TJ,251006980.44345,kg +805d707d-e971-3042-b01f-3528f6f34c60,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,naphtha combustion consumption by to the public,3424.3789965,TJ,CH4,3.0,kg/TJ,10273.1369895,kg +916826f7-014f-3383-8cda-01736290c2a1,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,naphtha combustion consumption by to the public,3424.3789965,TJ,N2O,0.6,kg/TJ,2054.6273979,kg +4169b93b-a9ee-380e-86ba-e1e130684c41,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2018,naphtha combustion consumption by to the public,663.7116793999999,TJ,CO2,73300.0,kg/TJ,48650066.10001999,kg +bd3b2d6f-3ed2-3b3c-acd0-cdffafcd176c,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2018,naphtha combustion consumption by to the public,663.7116793999999,TJ,CH4,3.0,kg/TJ,1991.1350381999996,kg +dff771fc-b605-3bd6-b8ab-caaf0d85bbd4,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2018,naphtha combustion consumption by to the public,663.7116793999999,TJ,N2O,0.6,kg/TJ,398.2270076399999,kg +58b918a0-ea43-3044-97d5-ce37922622f2,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2018,naphtha combustion consumption by to the public,328.77575885,TJ,CO2,73300.0,kg/TJ,24099263.123705,kg +d65b3c50-5d51-3953-a6f1-daf142dba564,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2018,naphtha combustion consumption by to the public,328.77575885,TJ,CH4,3.0,kg/TJ,986.32727655,kg +f77acce6-7e86-3b80-9281-150af14396a4,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2018,naphtha combustion consumption by to the public,328.77575885,TJ,N2O,0.6,kg/TJ,197.26545531,kg +40cc16a8-cf1c-3dc5-b22a-9969279105c8,SESCO,II.1.1,Tucuman,AR-T,annual,2018,naphtha combustion consumption by to the public,845.25347445,TJ,CO2,73300.0,kg/TJ,61957079.677185,kg +c6ea85b4-253f-3474-a73c-32b1d000bb39,SESCO,II.1.1,Tucuman,AR-T,annual,2018,naphtha combustion consumption by to the public,845.25347445,TJ,CH4,3.0,kg/TJ,2535.76042335,kg +0a97b4fc-030c-3afb-9f03-a04317bf8f22,SESCO,II.1.1,Tucuman,AR-T,annual,2018,naphtha combustion consumption by to the public,845.25347445,TJ,N2O,0.6,kg/TJ,507.15208466999997,kg +3c0e8359-f5e0-3b02-b5b5-b92e8484ae1d,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,naphtha combustion consumption by freight transport,320.20642499999997,TJ,CO2,73300.0,kg/TJ,23471130.952499997,kg +0586dba9-31d1-3efd-b48e-6023d7f64725,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,naphtha combustion consumption by freight transport,320.20642499999997,TJ,CH4,3.0,kg/TJ,960.6192749999999,kg +b342ce8d-3936-3f6f-9ad0-ad25d3417fcf,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,naphtha combustion consumption by freight transport,320.20642499999997,TJ,N2O,0.6,kg/TJ,192.12385499999996,kg +f29c4dc5-15df-3249-89ed-9113caff5fb0,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,naphtha combustion consumption by freight transport,346.46335185,TJ,CO2,73300.0,kg/TJ,25395763.690605,kg +4fc27e3b-7678-3b0c-854e-e97144bb9cf8,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,naphtha combustion consumption by freight transport,346.46335185,TJ,CH4,3.0,kg/TJ,1039.39005555,kg +4740d859-fbfc-3681-ab20-a3cacf597392,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,naphtha combustion consumption by freight transport,346.46335185,TJ,N2O,0.6,kg/TJ,207.87801111,kg +b89bcc66-b2de-3087-ab8c-ecec2dc93e5c,SESCO,II.1.1,Chaco,AR-H,annual,2018,naphtha combustion consumption by freight transport,13.57065325,TJ,CO2,73300.0,kg/TJ,994728.883225,kg +296883ce-15cf-35ea-951d-b00d4b0eaada,SESCO,II.1.1,Chaco,AR-H,annual,2018,naphtha combustion consumption by freight transport,13.57065325,TJ,CH4,3.0,kg/TJ,40.71195975,kg +ba92afdb-0a58-30c3-a4cd-dd22545e6076,SESCO,II.1.1,Chaco,AR-H,annual,2018,naphtha combustion consumption by freight transport,13.57065325,TJ,N2O,0.6,kg/TJ,8.142391949999999,kg +9f8b93b3-38f4-3ba6-a7ba-e582f1bab645,SESCO,II.1.1,Chubut,AR-U,annual,2018,naphtha combustion consumption by freight transport,4.7573526,TJ,CO2,73300.0,kg/TJ,348713.94558,kg +c65bbde3-a8af-3266-bb4b-4511a03e77c7,SESCO,II.1.1,Chubut,AR-U,annual,2018,naphtha combustion consumption by freight transport,4.7573526,TJ,CH4,3.0,kg/TJ,14.272057799999999,kg +3c22588b-232f-30b3-9f9d-0aa0da3e96ba,SESCO,II.1.1,Chubut,AR-U,annual,2018,naphtha combustion consumption by freight transport,4.7573526,TJ,N2O,0.6,kg/TJ,2.85441156,kg +075032c5-f77a-3e6e-8a4b-ca7a188fe142,SESCO,II.1.1,Corrientes,AR-W,annual,2018,naphtha combustion consumption by freight transport,6.038178299999999,TJ,CO2,73300.0,kg/TJ,442598.4693899999,kg +ed616756-7387-376c-b1fc-c3880403d4b7,SESCO,II.1.1,Corrientes,AR-W,annual,2018,naphtha combustion consumption by freight transport,6.038178299999999,TJ,CH4,3.0,kg/TJ,18.1145349,kg +c7d6d20a-7012-3162-a28a-43f6b16ae904,SESCO,II.1.1,Corrientes,AR-W,annual,2018,naphtha combustion consumption by freight transport,6.038178299999999,TJ,N2O,0.6,kg/TJ,3.6229069799999993,kg +4b8bff93-2208-3311-9ace-14514bc286b8,SESCO,II.1.1,Córdoba,AR-X,annual,2018,naphtha combustion consumption by freight transport,36.4730366,TJ,CO2,73300.0,kg/TJ,2673473.58278,kg +68c03a27-c7b4-364b-8195-91907ad9e112,SESCO,II.1.1,Córdoba,AR-X,annual,2018,naphtha combustion consumption by freight transport,36.4730366,TJ,CH4,3.0,kg/TJ,109.4191098,kg +5dc19bbf-3ab0-343e-aa99-9ce6e7876d84,SESCO,II.1.1,Córdoba,AR-X,annual,2018,naphtha combustion consumption by freight transport,36.4730366,TJ,N2O,0.6,kg/TJ,21.88382196,kg +d5891b29-c45f-342c-83c2-9aa391cb63c4,SESCO,II.1.1,Entre Rios,AR-E,annual,2018,naphtha combustion consumption by freight transport,18.145030749999997,TJ,CO2,73300.0,kg/TJ,1330030.7539749998,kg +a5615fcd-8cee-3381-a977-b1f5f9126787,SESCO,II.1.1,Entre Rios,AR-E,annual,2018,naphtha combustion consumption by freight transport,18.145030749999997,TJ,CH4,3.0,kg/TJ,54.43509224999999,kg +cfbb3952-8db4-3a16-b964-bfbc06a28446,SESCO,II.1.1,Entre Rios,AR-E,annual,2018,naphtha combustion consumption by freight transport,18.145030749999997,TJ,N2O,0.6,kg/TJ,10.887018449999998,kg +9051e90a-2a70-34da-abff-689ca2c0140a,SESCO,II.1.1,Formosa,AR-P,annual,2018,naphtha combustion consumption by freight transport,0.4574377499999999,TJ,CO2,73300.0,kg/TJ,33530.187074999994,kg +ba159a32-c474-3287-87a8-cd4d0af5e741,SESCO,II.1.1,Formosa,AR-P,annual,2018,naphtha combustion consumption by freight transport,0.4574377499999999,TJ,CH4,3.0,kg/TJ,1.3723132499999997,kg +08352b1c-bfa2-3af4-9618-974bd1713750,SESCO,II.1.1,Formosa,AR-P,annual,2018,naphtha combustion consumption by freight transport,0.4574377499999999,TJ,N2O,0.6,kg/TJ,0.2744626499999999,kg +5544f29d-e0c4-3997-9a2b-ff2b2fb2af60,SESCO,II.1.1,Jujuy,AR-Y,annual,2018,naphtha combustion consumption by freight transport,0.9453713499999999,TJ,CO2,73300.0,kg/TJ,69295.719955,kg +a402ec1d-18b7-3ee9-91c5-21f81f72f334,SESCO,II.1.1,Jujuy,AR-Y,annual,2018,naphtha combustion consumption by freight transport,0.9453713499999999,TJ,CH4,3.0,kg/TJ,2.83611405,kg +4d168465-e582-3f68-881d-93cc1a0d8dfc,SESCO,II.1.1,Jujuy,AR-Y,annual,2018,naphtha combustion consumption by freight transport,0.9453713499999999,TJ,N2O,0.6,kg/TJ,0.56722281,kg +be1ddd89-6905-33e0-918c-0e4e1105df7d,SESCO,II.1.1,La Pampa,AR-L,annual,2018,naphtha combustion consumption by freight transport,3.3545434999999997,TJ,CO2,73300.0,kg/TJ,245888.03854999997,kg +955645cd-3d7b-3c63-b48a-6f5fb74407b4,SESCO,II.1.1,La Pampa,AR-L,annual,2018,naphtha combustion consumption by freight transport,3.3545434999999997,TJ,CH4,3.0,kg/TJ,10.063630499999999,kg +8c35853c-e874-3d0f-b072-56747f9d52c7,SESCO,II.1.1,La Pampa,AR-L,annual,2018,naphtha combustion consumption by freight transport,3.3545434999999997,TJ,N2O,0.6,kg/TJ,2.0127260999999996,kg +b4b60b5c-2b90-3985-bc6f-f56b951f9f01,SESCO,II.1.1,La Rioja,AR-F,annual,2018,naphtha combustion consumption by freight transport,0.27446265,TJ,CO2,73300.0,kg/TJ,20118.112244999997,kg +17460c23-d80c-308a-a023-ffb48d2980ed,SESCO,II.1.1,La Rioja,AR-F,annual,2018,naphtha combustion consumption by freight transport,0.27446265,TJ,CH4,3.0,kg/TJ,0.8233879499999999,kg +b8033cc7-bde4-3467-9c87-1898c0243fa6,SESCO,II.1.1,La Rioja,AR-F,annual,2018,naphtha combustion consumption by freight transport,0.27446265,TJ,N2O,0.6,kg/TJ,0.16467758999999998,kg +e264800f-3fd4-310d-96d4-efd07504d6a3,SESCO,II.1.1,Mendoza,AR-M,annual,2018,naphtha combustion consumption by freight transport,30.099403949999996,TJ,CO2,73300.0,kg/TJ,2206286.3095349995,kg +96d56c86-2fc9-30f8-b822-c88e7eacadbc,SESCO,II.1.1,Mendoza,AR-M,annual,2018,naphtha combustion consumption by freight transport,30.099403949999996,TJ,CH4,3.0,kg/TJ,90.29821184999999,kg +e23c0564-acc4-3783-85cb-1e9116917d12,SESCO,II.1.1,Mendoza,AR-M,annual,2018,naphtha combustion consumption by freight transport,30.099403949999996,TJ,N2O,0.6,kg/TJ,18.059642369999995,kg +142b54bb-5fc6-3960-8c88-ed6276aad0bc,SESCO,II.1.1,Misiones,AR-N,annual,2018,naphtha combustion consumption by freight transport,4.9403277,TJ,CO2,73300.0,kg/TJ,362126.02041,kg +b641d0f4-eb25-3d35-a364-5550d52d6b60,SESCO,II.1.1,Misiones,AR-N,annual,2018,naphtha combustion consumption by freight transport,4.9403277,TJ,CH4,3.0,kg/TJ,14.8209831,kg +2d1bccc5-f412-31ce-8ebc-c3f46334ace5,SESCO,II.1.1,Misiones,AR-N,annual,2018,naphtha combustion consumption by freight transport,4.9403277,TJ,N2O,0.6,kg/TJ,2.96419662,kg +4ca755fc-e83e-3e8f-a6e5-3a1a64fca942,SESCO,II.1.1,Neuquén,AR-Q,annual,2018,naphtha combustion consumption by freight transport,6.953053799999999,TJ,CO2,73300.0,kg/TJ,509658.84354,kg +b6059191-f172-3e33-9c97-c7504d149307,SESCO,II.1.1,Neuquén,AR-Q,annual,2018,naphtha combustion consumption by freight transport,6.953053799999999,TJ,CH4,3.0,kg/TJ,20.859161399999998,kg +e7239a40-6429-31d6-ae42-a763d34c9acd,SESCO,II.1.1,Neuquén,AR-Q,annual,2018,naphtha combustion consumption by freight transport,6.953053799999999,TJ,N2O,0.6,kg/TJ,4.171832279999999,kg +cc465217-5e00-3c83-acfd-ec1cbfb61628,SESCO,II.1.1,Rio Negro,AR-R,annual,2018,naphtha combustion consumption by freight transport,10.88701845,TJ,CO2,73300.0,kg/TJ,798018.452385,kg +55bcce52-d0b4-3445-8182-9d76ceda0f0c,SESCO,II.1.1,Rio Negro,AR-R,annual,2018,naphtha combustion consumption by freight transport,10.88701845,TJ,CH4,3.0,kg/TJ,32.66105535,kg +14b65eb4-287a-35a4-bb57-5a1a0b851e78,SESCO,II.1.1,Rio Negro,AR-R,annual,2018,naphtha combustion consumption by freight transport,10.88701845,TJ,N2O,0.6,kg/TJ,6.53221107,kg +2192626e-7860-38cd-a133-b4f30ec3b731,SESCO,II.1.1,Salta,AR-A,annual,2018,naphtha combustion consumption by freight transport,12.076356599999999,TJ,CO2,73300.0,kg/TJ,885196.9387799999,kg +943b9a68-4974-3ed7-a351-ed05b2ea4ee8,SESCO,II.1.1,Salta,AR-A,annual,2018,naphtha combustion consumption by freight transport,12.076356599999999,TJ,CH4,3.0,kg/TJ,36.2290698,kg +c4653660-fb95-3d6a-8c38-d32e6ff46a7a,SESCO,II.1.1,Salta,AR-A,annual,2018,naphtha combustion consumption by freight transport,12.076356599999999,TJ,N2O,0.6,kg/TJ,7.245813959999999,kg +2279bd90-1610-375b-9055-860b2d695a95,SESCO,II.1.1,San Juan,AR-J,annual,2018,naphtha combustion consumption by freight transport,2.5616514,TJ,CO2,73300.0,kg/TJ,187769.04762,kg +c1a0bb96-07eb-388a-89cb-3228ca1138d1,SESCO,II.1.1,San Juan,AR-J,annual,2018,naphtha combustion consumption by freight transport,2.5616514,TJ,CH4,3.0,kg/TJ,7.6849542,kg +3314db21-5e33-35d9-887d-5043bc540dad,SESCO,II.1.1,San Juan,AR-J,annual,2018,naphtha combustion consumption by freight transport,2.5616514,TJ,N2O,0.6,kg/TJ,1.53699084,kg +3c4360c2-6f20-34a1-979a-e880474956be,SESCO,II.1.1,San Luis,AR-D,annual,2018,naphtha combustion consumption by freight transport,3.99495635,TJ,CO2,73300.0,kg/TJ,292830.30045499996,kg +448ed535-a596-3901-a692-c3ade5c336c2,SESCO,II.1.1,San Luis,AR-D,annual,2018,naphtha combustion consumption by freight transport,3.99495635,TJ,CH4,3.0,kg/TJ,11.98486905,kg +4d7ec038-0860-31af-9d0b-10069c751c58,SESCO,II.1.1,San Luis,AR-D,annual,2018,naphtha combustion consumption by freight transport,3.99495635,TJ,N2O,0.6,kg/TJ,2.39697381,kg +3e74813a-5453-39bc-8271-47aec6fd2b23,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2018,naphtha combustion consumption by freight transport,1.49429665,TJ,CO2,73300.0,kg/TJ,109531.94444499999,kg +971cc9dc-fc2d-35cc-977f-a6de19a352d1,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2018,naphtha combustion consumption by freight transport,1.49429665,TJ,CH4,3.0,kg/TJ,4.48288995,kg +0a2fc524-ebbc-375d-b15c-b2793179572c,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2018,naphtha combustion consumption by freight transport,1.49429665,TJ,N2O,0.6,kg/TJ,0.8965779899999999,kg +ce394db3-2272-3284-b527-f7f9fcb2b1c6,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,naphtha combustion consumption by freight transport,41.62683524999999,TJ,CO2,73300.0,kg/TJ,3051247.0238249996,kg +018c6211-20e3-337c-a5de-5c00ba143437,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,naphtha combustion consumption by freight transport,41.62683524999999,TJ,CH4,3.0,kg/TJ,124.88050574999997,kg +14608e3d-bbf3-3d7b-b5b3-f9df746fbb75,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,naphtha combustion consumption by freight transport,41.62683524999999,TJ,N2O,0.6,kg/TJ,24.976101149999995,kg +0f186e9a-4eb9-3de4-aa1d-77c5481767a9,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2018,naphtha combustion consumption by freight transport,0.8843796499999999,TJ,CO2,73300.0,kg/TJ,64825.02834499999,kg +e004bb2c-cc53-33c4-a63a-663bb9b61c11,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2018,naphtha combustion consumption by freight transport,0.8843796499999999,TJ,CH4,3.0,kg/TJ,2.6531389499999998,kg +ef892a92-8222-31e8-8dac-8ad890db8cba,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2018,naphtha combustion consumption by freight transport,0.8843796499999999,TJ,N2O,0.6,kg/TJ,0.5306277899999999,kg +d3d4a14d-6e36-32fa-8c2a-f685aa900c59,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2018,naphtha combustion consumption by freight transport,6.8310704,TJ,CO2,73300.0,kg/TJ,500717.46031999995,kg +364dcef8-a20f-3b1b-abb4-dba369026b92,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2018,naphtha combustion consumption by freight transport,6.8310704,TJ,CH4,3.0,kg/TJ,20.493211199999998,kg +0f4b23b9-a280-3967-892a-d35e6048b487,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2018,naphtha combustion consumption by freight transport,6.8310704,TJ,N2O,0.6,kg/TJ,4.098642239999999,kg +41205804-4ee4-3857-8a1e-5b57ff05ad46,SESCO,II.1.1,Tucuman,AR-T,annual,2018,naphtha combustion consumption by freight transport,9.91115125,TJ,CO2,73300.0,kg/TJ,726487.3866249999,kg +5fd1ec9d-3977-3652-b504-873e5e01666d,SESCO,II.1.1,Tucuman,AR-T,annual,2018,naphtha combustion consumption by freight transport,9.91115125,TJ,CH4,3.0,kg/TJ,29.73345375,kg +8bb72bcf-25a8-326f-8eb7-cb35304ff3c4,SESCO,II.1.1,Tucuman,AR-T,annual,2018,naphtha combustion consumption by freight transport,9.91115125,TJ,N2O,0.6,kg/TJ,5.946690749999999,kg +e1bb4e4b-f000-31ff-86dd-ab28f6ece515,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,naphtha combustion consumption by freight transport,308.9839522,TJ,CO2,73300.0,kg/TJ,22648523.696259998,kg +8c7241d7-84e4-3f9c-a0a4-b06c54669802,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,naphtha combustion consumption by freight transport,308.9839522,TJ,CH4,3.0,kg/TJ,926.9518565999999,kg +8335a5f3-8222-3db0-88d7-416584814e99,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,naphtha combustion consumption by freight transport,308.9839522,TJ,N2O,0.6,kg/TJ,185.39037131999999,kg +f22e09cb-e2fe-3cd7-8f33-58652191fc3b,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,naphtha combustion consumption by freight transport,402.27075734999994,TJ,CO2,73300.0,kg/TJ,29486446.513754997,kg +3d677baa-a2f9-307f-8d59-bf95087ac8cf,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,naphtha combustion consumption by freight transport,402.27075734999994,TJ,CH4,3.0,kg/TJ,1206.8122720499998,kg +f7c15eb1-6777-34fc-9dcb-e85da21fe22d,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,naphtha combustion consumption by freight transport,402.27075734999994,TJ,N2O,0.6,kg/TJ,241.36245440999994,kg +495d3155-0031-344c-88ef-b9071e54ca06,SESCO,II.1.1,Catamarca,AR-K,annual,2018,naphtha combustion consumption by freight transport,0.27446265,TJ,CO2,73300.0,kg/TJ,20118.112244999997,kg +c9ef79b0-82a1-3d23-8060-1d6da95ed971,SESCO,II.1.1,Catamarca,AR-K,annual,2018,naphtha combustion consumption by freight transport,0.27446265,TJ,CH4,3.0,kg/TJ,0.8233879499999999,kg +98fd514a-2f75-38f6-8fab-3c3c09470107,SESCO,II.1.1,Catamarca,AR-K,annual,2018,naphtha combustion consumption by freight transport,0.27446265,TJ,N2O,0.6,kg/TJ,0.16467758999999998,kg +2897f612-9a2a-3cec-96c5-efb332ee16d5,SESCO,II.1.1,Chaco,AR-H,annual,2018,naphtha combustion consumption by freight transport,10.826026749999999,TJ,CO2,73300.0,kg/TJ,793547.7607749999,kg +328e546b-b19f-3ec2-8d6b-9272b6e97b0a,SESCO,II.1.1,Chaco,AR-H,annual,2018,naphtha combustion consumption by freight transport,10.826026749999999,TJ,CH4,3.0,kg/TJ,32.47808025,kg +649f9e8f-6215-3baa-b51c-c4159bd1b518,SESCO,II.1.1,Chaco,AR-H,annual,2018,naphtha combustion consumption by freight transport,10.826026749999999,TJ,N2O,0.6,kg/TJ,6.495616049999999,kg +13838367-bca0-3a75-aef7-de6bb3a31543,SESCO,II.1.1,Chubut,AR-U,annual,2018,naphtha combustion consumption by freight transport,4.05594805,TJ,CO2,73300.0,kg/TJ,297300.99206499994,kg +77fc351f-9c5c-33ac-8162-4d2d0b5e9497,SESCO,II.1.1,Chubut,AR-U,annual,2018,naphtha combustion consumption by freight transport,4.05594805,TJ,CH4,3.0,kg/TJ,12.167844149999999,kg +14b5bf64-b083-3a17-9f24-31cddd118d75,SESCO,II.1.1,Chubut,AR-U,annual,2018,naphtha combustion consumption by freight transport,4.05594805,TJ,N2O,0.6,kg/TJ,2.4335688299999996,kg +365a4642-13b6-3fdc-8aad-e5072b9bd5c2,SESCO,II.1.1,Corrientes,AR-W,annual,2018,naphtha combustion consumption by freight transport,7.440987399999999,TJ,CO2,73300.0,kg/TJ,545424.37642,kg +cff13ce5-7ef4-3f19-b302-782323dddf32,SESCO,II.1.1,Corrientes,AR-W,annual,2018,naphtha combustion consumption by freight transport,7.440987399999999,TJ,CH4,3.0,kg/TJ,22.3229622,kg +9843bdde-f91b-37ea-b083-cb0fef5fac58,SESCO,II.1.1,Corrientes,AR-W,annual,2018,naphtha combustion consumption by freight transport,7.440987399999999,TJ,N2O,0.6,kg/TJ,4.46459244,kg +d96ff3e2-b20c-36a4-b8df-6b44cab7fdcd,SESCO,II.1.1,Córdoba,AR-X,annual,2018,naphtha combustion consumption by freight transport,30.007916399999996,TJ,CO2,73300.0,kg/TJ,2199580.27212,kg +a7fad928-bd87-3c58-950f-d1c2f3f55812,SESCO,II.1.1,Córdoba,AR-X,annual,2018,naphtha combustion consumption by freight transport,30.007916399999996,TJ,CH4,3.0,kg/TJ,90.02374919999998,kg +22c4285e-3bf9-33c1-805f-20ecd84038ad,SESCO,II.1.1,Córdoba,AR-X,annual,2018,naphtha combustion consumption by freight transport,30.007916399999996,TJ,N2O,0.6,kg/TJ,18.004749839999995,kg +f77f31d7-3fc4-3af2-961a-129decadb91e,SESCO,II.1.1,Entre Rios,AR-E,annual,2018,naphtha combustion consumption by freight transport,23.451308649999998,TJ,CO2,73300.0,kg/TJ,1718980.9240449998,kg +8d5dc671-7d1e-37ed-b63c-424ddf379328,SESCO,II.1.1,Entre Rios,AR-E,annual,2018,naphtha combustion consumption by freight transport,23.451308649999998,TJ,CH4,3.0,kg/TJ,70.35392594999999,kg +c9cb146e-aadf-3083-9b26-7e8cb4fdb0be,SESCO,II.1.1,Entre Rios,AR-E,annual,2018,naphtha combustion consumption by freight transport,23.451308649999998,TJ,N2O,0.6,kg/TJ,14.070785189999999,kg +15010a74-b85d-3a36-878b-cd268f21d55d,SESCO,II.1.1,Formosa,AR-P,annual,2018,naphtha combustion consumption by freight transport,0.48793359999999997,TJ,CO2,73300.0,kg/TJ,35765.53288,kg +94d0488e-1112-3051-830e-a263d9fb1ad9,SESCO,II.1.1,Formosa,AR-P,annual,2018,naphtha combustion consumption by freight transport,0.48793359999999997,TJ,CH4,3.0,kg/TJ,1.4638008,kg +39e9ccee-3429-3ef0-a5b7-3cbffbb4e614,SESCO,II.1.1,Formosa,AR-P,annual,2018,naphtha combustion consumption by freight transport,0.48793359999999997,TJ,N2O,0.6,kg/TJ,0.29276016,kg +787dfd05-d56a-328c-bbc4-c1c1cdbd8a6c,SESCO,II.1.1,Jujuy,AR-Y,annual,2018,naphtha combustion consumption by freight transport,0.8538838,TJ,CO2,73300.0,kg/TJ,62589.682539999994,kg +d797f51e-5c64-3d5b-9884-eaf12bc361d5,SESCO,II.1.1,Jujuy,AR-Y,annual,2018,naphtha combustion consumption by freight transport,0.8538838,TJ,CH4,3.0,kg/TJ,2.5616513999999997,kg +0ce1b4d7-7476-3470-880e-a83163dc1fcd,SESCO,II.1.1,Jujuy,AR-Y,annual,2018,naphtha combustion consumption by freight transport,0.8538838,TJ,N2O,0.6,kg/TJ,0.5123302799999999,kg +3cd60a32-28dc-3e78-954c-608fa93beb45,SESCO,II.1.1,La Pampa,AR-L,annual,2018,naphtha combustion consumption by freight transport,3.4460310499999993,TJ,CO2,73300.0,kg/TJ,252594.07596499994,kg +fcafb57b-9134-3757-ba84-b500be8f317a,SESCO,II.1.1,La Pampa,AR-L,annual,2018,naphtha combustion consumption by freight transport,3.4460310499999993,TJ,CH4,3.0,kg/TJ,10.338093149999999,kg +e1f2e949-339e-30d2-bc95-94e0480593db,SESCO,II.1.1,La Pampa,AR-L,annual,2018,naphtha combustion consumption by freight transport,3.4460310499999993,TJ,N2O,0.6,kg/TJ,2.0676186299999997,kg +af344c83-169a-3ad9-bd5f-7e0979f12042,SESCO,II.1.1,La Rioja,AR-F,annual,2018,naphtha combustion consumption by freight transport,1.7687592999999997,TJ,CO2,73300.0,kg/TJ,129650.05668999998,kg +d3705426-0ef8-357c-b8fe-0999f956a269,SESCO,II.1.1,La Rioja,AR-F,annual,2018,naphtha combustion consumption by freight transport,1.7687592999999997,TJ,CH4,3.0,kg/TJ,5.3062778999999995,kg +1be20c0e-332c-3531-b537-1cbadfc420fa,SESCO,II.1.1,La Rioja,AR-F,annual,2018,naphtha combustion consumption by freight transport,1.7687592999999997,TJ,N2O,0.6,kg/TJ,1.0612555799999999,kg +5443b1f2-1d92-30e0-99df-10a352c0f0e5,SESCO,II.1.1,Mendoza,AR-M,annual,2018,naphtha combustion consumption by freight transport,52.269886899999996,TJ,CO2,73300.0,kg/TJ,3831382.7097699996,kg +284478f4-d29b-3e6e-9757-fb4bac0dfcde,SESCO,II.1.1,Mendoza,AR-M,annual,2018,naphtha combustion consumption by freight transport,52.269886899999996,TJ,CH4,3.0,kg/TJ,156.8096607,kg +46f35cf8-ee9f-3993-9eda-ddb176c7a678,SESCO,II.1.1,Mendoza,AR-M,annual,2018,naphtha combustion consumption by freight transport,52.269886899999996,TJ,N2O,0.6,kg/TJ,31.361932139999997,kg +d7da523d-db39-32ab-b4a4-cdca71b593b4,SESCO,II.1.1,Misiones,AR-N,annual,2018,naphtha combustion consumption by freight transport,5.39776545,TJ,CO2,73300.0,kg/TJ,395656.20748499996,kg +3b29d48f-66e9-36a4-b50e-2b0891657cd1,SESCO,II.1.1,Misiones,AR-N,annual,2018,naphtha combustion consumption by freight transport,5.39776545,TJ,CH4,3.0,kg/TJ,16.193296349999997,kg +ab6a5b76-d813-3c1b-b580-c40f78c08b71,SESCO,II.1.1,Misiones,AR-N,annual,2018,naphtha combustion consumption by freight transport,5.39776545,TJ,N2O,0.6,kg/TJ,3.23865927,kg +49a6d926-62fd-328c-88f0-9de38eb9b4e2,SESCO,II.1.1,Neuquén,AR-Q,annual,2018,naphtha combustion consumption by freight transport,16.7727175,TJ,CO2,73300.0,kg/TJ,1229440.19275,kg +b05463c6-eb72-3dda-af66-a2a30ee721f6,SESCO,II.1.1,Neuquén,AR-Q,annual,2018,naphtha combustion consumption by freight transport,16.7727175,TJ,CH4,3.0,kg/TJ,50.3181525,kg +d906f8ef-03fc-39d0-9c6d-2495ac226146,SESCO,II.1.1,Neuquén,AR-Q,annual,2018,naphtha combustion consumption by freight transport,16.7727175,TJ,N2O,0.6,kg/TJ,10.063630499999999,kg +75f6cda7-99b8-35ec-9803-91be851ce7f9,SESCO,II.1.1,Rio Negro,AR-R,annual,2018,naphtha combustion consumption by freight transport,46.2317086,TJ,CO2,73300.0,kg/TJ,3388784.24038,kg +58b89a73-95eb-39d5-a504-5af126588411,SESCO,II.1.1,Rio Negro,AR-R,annual,2018,naphtha combustion consumption by freight transport,46.2317086,TJ,CH4,3.0,kg/TJ,138.6951258,kg +1f44de43-cb27-3f42-a836-62a18c62e85b,SESCO,II.1.1,Rio Negro,AR-R,annual,2018,naphtha combustion consumption by freight transport,46.2317086,TJ,N2O,0.6,kg/TJ,27.739025159999997,kg +ea463d26-d293-373a-9ea7-c0052a7cd516,SESCO,II.1.1,Salta,AR-A,annual,2018,naphtha combustion consumption by freight transport,5.76371565,TJ,CO2,73300.0,kg/TJ,422480.357145,kg +ecf5af1a-78f4-3fad-83ee-645994478fc2,SESCO,II.1.1,Salta,AR-A,annual,2018,naphtha combustion consumption by freight transport,5.76371565,TJ,CH4,3.0,kg/TJ,17.291146949999998,kg +02741b66-889b-34f0-910c-fe91a310f94d,SESCO,II.1.1,Salta,AR-A,annual,2018,naphtha combustion consumption by freight transport,5.76371565,TJ,N2O,0.6,kg/TJ,3.45822939,kg +f78b592c-82c5-33c1-ac74-78e3ced6b826,SESCO,II.1.1,San Juan,AR-J,annual,2018,naphtha combustion consumption by freight transport,1.1283464499999998,TJ,CO2,73300.0,kg/TJ,82707.79478499999,kg +aaba9b69-6526-3415-9d67-d44a316d1398,SESCO,II.1.1,San Juan,AR-J,annual,2018,naphtha combustion consumption by freight transport,1.1283464499999998,TJ,CH4,3.0,kg/TJ,3.3850393499999996,kg +b708096d-9e2d-33ab-8051-3350bbb4acbc,SESCO,II.1.1,San Juan,AR-J,annual,2018,naphtha combustion consumption by freight transport,1.1283464499999998,TJ,N2O,0.6,kg/TJ,0.6770078699999998,kg +386d043d-78bb-36c5-80b7-2eec6b96c3de,SESCO,II.1.1,San Luis,AR-D,annual,2018,naphtha combustion consumption by freight transport,3.7509895499999995,TJ,CO2,73300.0,kg/TJ,274947.534015,kg +a5685db3-4d56-359e-802e-361bb705af35,SESCO,II.1.1,San Luis,AR-D,annual,2018,naphtha combustion consumption by freight transport,3.7509895499999995,TJ,CH4,3.0,kg/TJ,11.252968649999998,kg +69aed3fc-f374-33d9-80a3-f311be82a721,SESCO,II.1.1,San Luis,AR-D,annual,2018,naphtha combustion consumption by freight transport,3.7509895499999995,TJ,N2O,0.6,kg/TJ,2.2505937299999994,kg +8ed3eb32-93a9-3cd1-abd0-a1822d86e3c6,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2018,naphtha combustion consumption by freight transport,1.2808257,TJ,CO2,73300.0,kg/TJ,93884.52381,kg +07872109-ddd1-36af-b30d-d544c36f08bd,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2018,naphtha combustion consumption by freight transport,1.2808257,TJ,CH4,3.0,kg/TJ,3.8424771,kg +0c2ebc2d-c61b-34ef-b5d8-57f0c61f25d3,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2018,naphtha combustion consumption by freight transport,1.2808257,TJ,N2O,0.6,kg/TJ,0.76849542,kg +6e261245-2bff-32ab-a46a-e8959bcb6f43,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,naphtha combustion consumption by freight transport,68.73764589999999,TJ,CO2,73300.0,kg/TJ,5038469.4444699995,kg +ba3cfc64-4e8d-35a5-a3d2-3c52a593d6a0,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,naphtha combustion consumption by freight transport,68.73764589999999,TJ,CH4,3.0,kg/TJ,206.21293769999997,kg +68f6cfe9-fe03-3243-90f1-fbce4fd5bc93,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,naphtha combustion consumption by freight transport,68.73764589999999,TJ,N2O,0.6,kg/TJ,41.242587539999995,kg +198ff445-8379-3379-be29-9f4569bf08ff,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2018,naphtha combustion consumption by freight transport,0.7928921,TJ,CO2,73300.0,kg/TJ,58118.99093,kg +2ad5c6b8-1683-3281-a388-e0e57deb2e19,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2018,naphtha combustion consumption by freight transport,0.7928921,TJ,CH4,3.0,kg/TJ,2.3786763,kg +00d8655d-c581-3b23-9cd0-5cd02ea6d769,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2018,naphtha combustion consumption by freight transport,0.7928921,TJ,N2O,0.6,kg/TJ,0.47573526,kg +da7b50f7-36e4-3ea7-b2f3-5da4ca57f4c6,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2018,naphtha combustion consumption by freight transport,1.6162800499999999,TJ,CO2,73300.0,kg/TJ,118473.32766499999,kg +ac30d7a7-431b-39e2-8c6d-a70e135ca525,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2018,naphtha combustion consumption by freight transport,1.6162800499999999,TJ,CH4,3.0,kg/TJ,4.848840149999999,kg +130a61a6-fef3-328a-aac1-bcfb188cfbee,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2018,naphtha combustion consumption by freight transport,1.6162800499999999,TJ,N2O,0.6,kg/TJ,0.9697680299999999,kg +25408d46-5176-3d49-8a59-13a1edad90d5,SESCO,II.1.1,Tucuman,AR-T,annual,2018,naphtha combustion consumption by freight transport,5.51974885,TJ,CO2,73300.0,kg/TJ,404597.590705,kg +1befbc35-7fce-395a-8c04-d6f63c358d4a,SESCO,II.1.1,Tucuman,AR-T,annual,2018,naphtha combustion consumption by freight transport,5.51974885,TJ,CH4,3.0,kg/TJ,16.55924655,kg +20e20065-fdbd-3f94-b5ca-3955ba2ff043,SESCO,II.1.1,Tucuman,AR-T,annual,2018,naphtha combustion consumption by freight transport,5.51974885,TJ,N2O,0.6,kg/TJ,3.31184931,kg +44b0a48c-cb6a-392c-b791-f4b701cd2b9e,SESCO,II.5.1,Buenos Aires,AR-B,annual,2019,naphtha combustion consumption by agriculture machines,0.1809192,TJ,CO2,73300.0,kg/TJ,13261.37736,kg +07ecca10-a370-3fee-b4ee-3b2f1af33ecf,SESCO,II.5.1,Buenos Aires,AR-B,annual,2019,naphtha combustion consumption by agriculture machines,0.1809192,TJ,CH4,3.0,kg/TJ,0.5427576000000001,kg +40bf338b-853b-3851-8fa6-c76f97795ed3,SESCO,II.5.1,Buenos Aires,AR-B,annual,2019,naphtha combustion consumption by agriculture machines,0.1809192,TJ,N2O,0.6,kg/TJ,0.10855152,kg +f5a90ed2-9087-305a-93aa-71573b1e7ce8,SESCO,II.5.1,Córdoba,AR-X,annual,2019,naphtha combustion consumption by agriculture machines,1.1156684,TJ,CO2,73300.0,kg/TJ,81778.49372,kg +27ff8428-bc07-34f7-8288-51ac85f77a4c,SESCO,II.5.1,Córdoba,AR-X,annual,2019,naphtha combustion consumption by agriculture machines,1.1156684,TJ,CH4,3.0,kg/TJ,3.3470052,kg +521737b3-a692-35d7-9af9-b5769fe2f70b,SESCO,II.5.1,Córdoba,AR-X,annual,2019,naphtha combustion consumption by agriculture machines,1.1156684,TJ,N2O,0.6,kg/TJ,0.6694010399999999,kg +3145a5f3-8d7e-3a70-abfc-f57375e3af27,SESCO,II.5.1,Santa Fe,AR-S,annual,2019,naphtha combustion consumption by agriculture machines,10.644079599999998,TJ,CO2,73300.0,kg/TJ,780211.0346799998,kg +d5a63c23-a78f-3d59-89d7-2a46e61473e3,SESCO,II.5.1,Santa Fe,AR-S,annual,2019,naphtha combustion consumption by agriculture machines,10.644079599999998,TJ,CH4,3.0,kg/TJ,31.932238799999993,kg +4aa6f96c-26f3-3153-bcf2-fd8b93456d59,SESCO,II.5.1,Santa Fe,AR-S,annual,2019,naphtha combustion consumption by agriculture machines,10.644079599999998,TJ,N2O,0.6,kg/TJ,6.3864477599999985,kg +2460da74-fc3f-31e1-bc7a-ca4ce44e62c2,SESCO,II.5.1,Santa Fe,AR-S,annual,2019,naphtha combustion consumption by agriculture machines,1.2664343999999998,TJ,CO2,73300.0,kg/TJ,92829.64151999999,kg +e93f3812-9769-3001-828e-495823132e61,SESCO,II.5.1,Santa Fe,AR-S,annual,2019,naphtha combustion consumption by agriculture machines,1.2664343999999998,TJ,CH4,3.0,kg/TJ,3.7993031999999998,kg +7b48e2b8-00f4-329d-baa7-38478428b2e9,SESCO,II.5.1,Santa Fe,AR-S,annual,2019,naphtha combustion consumption by agriculture machines,1.2664343999999998,TJ,N2O,0.6,kg/TJ,0.7598606399999999,kg +1af3e197-d839-3933-954f-db1c86b4c746,SESCO,II.1.1,Buenos Aires,AR-B,annual,2019,naphtha combustion consumption by to the public,435.23128879999996,TJ,CO2,73300.0,kg/TJ,31902453.469039995,kg +21b79ebf-2b3d-3c4d-9fa2-07f202b86950,SESCO,II.1.1,Buenos Aires,AR-B,annual,2019,naphtha combustion consumption by to the public,435.23128879999996,TJ,CH4,3.0,kg/TJ,1305.6938664,kg +1638c145-73a4-3ce3-bd6f-5fc5de648e57,SESCO,II.1.1,Buenos Aires,AR-B,annual,2019,naphtha combustion consumption by to the public,435.23128879999996,TJ,N2O,0.6,kg/TJ,261.13877327999995,kg +692e116c-682a-376d-b2e0-c8aa775ad4b0,SESCO,II.1.1,Capital Federal,AR-C,annual,2019,naphtha combustion consumption by to the public,34.7666396,TJ,CO2,73300.0,kg/TJ,2548394.6826799996,kg +952d1604-0840-38e4-bcda-ccc7d7d2e414,SESCO,II.1.1,Capital Federal,AR-C,annual,2019,naphtha combustion consumption by to the public,34.7666396,TJ,CH4,3.0,kg/TJ,104.2999188,kg +de3a05e8-273c-30f9-ba28-975d0b974926,SESCO,II.1.1,Capital Federal,AR-C,annual,2019,naphtha combustion consumption by to the public,34.7666396,TJ,N2O,0.6,kg/TJ,20.85998376,kg +62601569-b6a9-3f52-95a1-142f54fb9fcb,SESCO,II.1.1,Catamarca,AR-K,annual,2019,naphtha combustion consumption by to the public,43.14922919999999,TJ,CO2,73300.0,kg/TJ,3162838.5003599995,kg +48374edf-c7a6-3cbf-a11f-bc41262bffb0,SESCO,II.1.1,Catamarca,AR-K,annual,2019,naphtha combustion consumption by to the public,43.14922919999999,TJ,CH4,3.0,kg/TJ,129.4476876,kg +4accca86-ab8a-3aac-837b-2cd5f031e05e,SESCO,II.1.1,Catamarca,AR-K,annual,2019,naphtha combustion consumption by to the public,43.14922919999999,TJ,N2O,0.6,kg/TJ,25.889537519999994,kg +062d94e3-dec0-3884-996b-0eaa52c45ba9,SESCO,II.1.1,Chaco,AR-H,annual,2019,naphtha combustion consumption by to the public,44.9584212,TJ,CO2,73300.0,kg/TJ,3295452.27396,kg +8be38f50-d8ac-3fd6-9ecd-2bdca242fcdb,SESCO,II.1.1,Chaco,AR-H,annual,2019,naphtha combustion consumption by to the public,44.9584212,TJ,CH4,3.0,kg/TJ,134.87526359999998,kg +8446056a-c613-3c19-86aa-92020bea2ce0,SESCO,II.1.1,Chaco,AR-H,annual,2019,naphtha combustion consumption by to the public,44.9584212,TJ,N2O,0.6,kg/TJ,26.975052719999997,kg +e93b7598-9ebf-304f-90b6-721d73bc56e5,SESCO,II.1.1,Corrientes,AR-W,annual,2019,naphtha combustion consumption by to the public,6.814623199999999,TJ,CO2,73300.0,kg/TJ,499511.8805599999,kg +ce3a0d97-a77e-362c-9ebc-fbe4d2fba181,SESCO,II.1.1,Corrientes,AR-W,annual,2019,naphtha combustion consumption by to the public,6.814623199999999,TJ,CH4,3.0,kg/TJ,20.443869599999996,kg +65f87ef3-f077-3acc-b7cb-a571b49e0286,SESCO,II.1.1,Corrientes,AR-W,annual,2019,naphtha combustion consumption by to the public,6.814623199999999,TJ,N2O,0.6,kg/TJ,4.0887739199999995,kg +9076f4bb-32bc-3f33-8c11-b5844a34cb2e,SESCO,II.1.1,Córdoba,AR-X,annual,2019,naphtha combustion consumption by to the public,234.5014364,TJ,CO2,73300.0,kg/TJ,17188955.288119998,kg +0cd496b5-f87d-3f7e-93be-d4477d6a18c3,SESCO,II.1.1,Córdoba,AR-X,annual,2019,naphtha combustion consumption by to the public,234.5014364,TJ,CH4,3.0,kg/TJ,703.5043092,kg +145c56bd-2c56-3ddc-b4ff-98e79c3c28b4,SESCO,II.1.1,Córdoba,AR-X,annual,2019,naphtha combustion consumption by to the public,234.5014364,TJ,N2O,0.6,kg/TJ,140.70086184,kg +e9c13e52-69bc-3cd5-afc6-0aa271a5a393,SESCO,II.1.1,Entre Rios,AR-E,annual,2019,naphtha combustion consumption by to the public,51.712737999999995,TJ,CO2,73300.0,kg/TJ,3790543.6953999996,kg +57088fda-16ef-3083-a2e7-445ec637a61f,SESCO,II.1.1,Entre Rios,AR-E,annual,2019,naphtha combustion consumption by to the public,51.712737999999995,TJ,CH4,3.0,kg/TJ,155.13821399999998,kg +37b9a0f4-5ec7-3ac0-aca9-52137eda1504,SESCO,II.1.1,Entre Rios,AR-E,annual,2019,naphtha combustion consumption by to the public,51.712737999999995,TJ,N2O,0.6,kg/TJ,31.027642799999995,kg +d1414bf1-7d98-3df8-9812-334f110c8ff6,SESCO,II.1.1,La Pampa,AR-L,annual,2019,naphtha combustion consumption by to the public,0.39199159999999994,TJ,CO2,73300.0,kg/TJ,28732.984279999997,kg +e8cedccd-6098-34f7-88ac-b5c94a00378c,SESCO,II.1.1,La Pampa,AR-L,annual,2019,naphtha combustion consumption by to the public,0.39199159999999994,TJ,CH4,3.0,kg/TJ,1.1759747999999999,kg +d6733d67-6663-3f80-9ccb-1ef29cd84e97,SESCO,II.1.1,La Pampa,AR-L,annual,2019,naphtha combustion consumption by to the public,0.39199159999999994,TJ,N2O,0.6,kg/TJ,0.23519495999999995,kg +63afd026-619d-38fc-a415-58496069b571,SESCO,II.1.1,La Rioja,AR-F,annual,2019,naphtha combustion consumption by to the public,0.33168519999999996,TJ,CO2,73300.0,kg/TJ,24312.525159999997,kg +594281e1-a6f5-3185-84fb-90297465168b,SESCO,II.1.1,La Rioja,AR-F,annual,2019,naphtha combustion consumption by to the public,0.33168519999999996,TJ,CH4,3.0,kg/TJ,0.9950555999999999,kg +f555df3c-1b41-3a51-8da8-97ba374caf17,SESCO,II.1.1,La Rioja,AR-F,annual,2019,naphtha combustion consumption by to the public,0.33168519999999996,TJ,N2O,0.6,kg/TJ,0.19901111999999996,kg +41f2c0df-3876-364f-82c1-d77458c10180,SESCO,II.1.1,Mendoza,AR-M,annual,2019,naphtha combustion consumption by to the public,64.37708199999999,TJ,CO2,73300.0,kg/TJ,4718840.110599999,kg +2e7aa3e7-ddad-3f35-8de0-4f7861db4940,SESCO,II.1.1,Mendoza,AR-M,annual,2019,naphtha combustion consumption by to the public,64.37708199999999,TJ,CH4,3.0,kg/TJ,193.13124599999998,kg +8c9d36de-e977-3fa7-b297-3413c7947785,SESCO,II.1.1,Mendoza,AR-M,annual,2019,naphtha combustion consumption by to the public,64.37708199999999,TJ,N2O,0.6,kg/TJ,38.62624919999999,kg +861b5a05-183e-323a-81c7-1c2f90dc0f4c,SESCO,II.1.1,Misiones,AR-N,annual,2019,naphtha combustion consumption by to the public,0.33168519999999996,TJ,CO2,73300.0,kg/TJ,24312.525159999997,kg +1419d14b-888d-3704-81f1-988c4416d0ed,SESCO,II.1.1,Misiones,AR-N,annual,2019,naphtha combustion consumption by to the public,0.33168519999999996,TJ,CH4,3.0,kg/TJ,0.9950555999999999,kg +3245bbb3-e279-387f-9899-722d92fc69a8,SESCO,II.1.1,Misiones,AR-N,annual,2019,naphtha combustion consumption by to the public,0.33168519999999996,TJ,N2O,0.6,kg/TJ,0.19901111999999996,kg +3ee0305e-0cb3-38a1-b35c-73c6da4af7f8,SESCO,II.1.1,San Juan,AR-J,annual,2019,naphtha combustion consumption by to the public,36.0029208,TJ,CO2,73300.0,kg/TJ,2639014.09464,kg +ea860661-7388-3d28-b4e2-d7483c002ca8,SESCO,II.1.1,San Juan,AR-J,annual,2019,naphtha combustion consumption by to the public,36.0029208,TJ,CH4,3.0,kg/TJ,108.0087624,kg +5ab48668-6ac4-3142-aa4e-1625219ebd66,SESCO,II.1.1,San Juan,AR-J,annual,2019,naphtha combustion consumption by to the public,36.0029208,TJ,N2O,0.6,kg/TJ,21.60175248,kg +09a942c9-5429-3440-a0ce-a8015c02f76d,SESCO,II.1.1,San Luis,AR-D,annual,2019,naphtha combustion consumption by to the public,37.66134679999999,TJ,CO2,73300.0,kg/TJ,2760576.7204399994,kg +71354c1a-8435-3910-9aca-3e87bd1fd874,SESCO,II.1.1,San Luis,AR-D,annual,2019,naphtha combustion consumption by to the public,37.66134679999999,TJ,CH4,3.0,kg/TJ,112.98404039999997,kg +701ddb2b-7f91-321d-9ab0-9a9bbfd27351,SESCO,II.1.1,San Luis,AR-D,annual,2019,naphtha combustion consumption by to the public,37.66134679999999,TJ,N2O,0.6,kg/TJ,22.59680807999999,kg +c4fe8c01-c122-33aa-95d3-92667a035585,SESCO,II.1.1,Santa Fe,AR-S,annual,2019,naphtha combustion consumption by to the public,135.56878719999997,TJ,CO2,73300.0,kg/TJ,9937192.101759998,kg +d6bdcc2e-b826-341c-a315-32b737955f32,SESCO,II.1.1,Santa Fe,AR-S,annual,2019,naphtha combustion consumption by to the public,135.56878719999997,TJ,CH4,3.0,kg/TJ,406.7063615999999,kg +2127839a-251c-34cc-9905-a60efc719223,SESCO,II.1.1,Santa Fe,AR-S,annual,2019,naphtha combustion consumption by to the public,135.56878719999997,TJ,N2O,0.6,kg/TJ,81.34127231999999,kg +99306d2b-e3c9-332e-933d-541e0b95efc5,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2019,naphtha combustion consumption by to the public,29.097838,TJ,CO2,73300.0,kg/TJ,2132871.5254,kg +d55f8f06-bcd4-3947-a1ae-95e6789e3585,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2019,naphtha combustion consumption by to the public,29.097838,TJ,CH4,3.0,kg/TJ,87.293514,kg +73320d57-4c0f-3c1d-9110-01f04c6e89b9,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2019,naphtha combustion consumption by to the public,29.097838,TJ,N2O,0.6,kg/TJ,17.458702799999998,kg +669c009b-a7b4-39d0-bdc9-136d02fe23dc,SESCO,II.1.1,Tucuman,AR-T,annual,2019,naphtha combustion consumption by to the public,1.7790388,TJ,CO2,73300.0,kg/TJ,130403.54404,kg +67ca6f9b-55a1-3cb9-85e9-9bae4f542020,SESCO,II.1.1,Tucuman,AR-T,annual,2019,naphtha combustion consumption by to the public,1.7790388,TJ,CH4,3.0,kg/TJ,5.337116399999999,kg +8ad10bed-5fd4-3e35-8516-3acd651db2bc,SESCO,II.1.1,Tucuman,AR-T,annual,2019,naphtha combustion consumption by to the public,1.7790388,TJ,N2O,0.6,kg/TJ,1.0674232799999999,kg +be2f7279-90aa-365a-8e15-89e0fb3d04ad,SESCO,II.1.1,Buenos Aires,AR-B,annual,2019,naphtha combustion consumption by to the public,32.3543836,TJ,CO2,73300.0,kg/TJ,2371576.31788,kg +f472ee13-16d9-3645-8743-fe247b02f8da,SESCO,II.1.1,Buenos Aires,AR-B,annual,2019,naphtha combustion consumption by to the public,32.3543836,TJ,CH4,3.0,kg/TJ,97.06315079999999,kg +ae8827f2-44ba-3c72-b3a3-871f40308e56,SESCO,II.1.1,Buenos Aires,AR-B,annual,2019,naphtha combustion consumption by to the public,32.3543836,TJ,N2O,0.6,kg/TJ,19.41263016,kg +724625b8-770f-310f-9ac8-40ed19f979c6,SESCO,II.1.1,Capital Federal,AR-C,annual,2019,naphtha combustion consumption by to the public,5.849720799999999,TJ,CO2,73300.0,kg/TJ,428784.5346399999,kg +f7db118d-fd80-3a35-bdf1-8ab6002ac8ea,SESCO,II.1.1,Capital Federal,AR-C,annual,2019,naphtha combustion consumption by to the public,5.849720799999999,TJ,CH4,3.0,kg/TJ,17.549162399999997,kg +6e9311b2-7a41-3c3b-9afa-d2a431818130,SESCO,II.1.1,Capital Federal,AR-C,annual,2019,naphtha combustion consumption by to the public,5.849720799999999,TJ,N2O,0.6,kg/TJ,3.5098324799999996,kg +2a0d1069-1333-3e66-b0f4-9d69263287c7,SESCO,II.1.1,Catamarca,AR-K,annual,2019,naphtha combustion consumption by to the public,3.6786904,TJ,CO2,73300.0,kg/TJ,269648.00632,kg +947e32bb-9630-364f-b8e5-84ca99b0a4a1,SESCO,II.1.1,Catamarca,AR-K,annual,2019,naphtha combustion consumption by to the public,3.6786904,TJ,CH4,3.0,kg/TJ,11.036071199999999,kg +8d65e8e2-906e-32ab-8f06-94fadd200a02,SESCO,II.1.1,Catamarca,AR-K,annual,2019,naphtha combustion consumption by to the public,3.6786904,TJ,N2O,0.6,kg/TJ,2.20721424,kg +d17765b2-906b-367d-b086-bb411881217a,SESCO,II.1.1,Chaco,AR-H,annual,2019,naphtha combustion consumption by to the public,3.3168519999999995,TJ,CO2,73300.0,kg/TJ,243125.25159999996,kg +e6b76b3b-8350-3a17-ad85-d902c047af59,SESCO,II.1.1,Chaco,AR-H,annual,2019,naphtha combustion consumption by to the public,3.3168519999999995,TJ,CH4,3.0,kg/TJ,9.950555999999999,kg +07050e0d-1a98-33b9-87fd-4a67aea7f4a9,SESCO,II.1.1,Chaco,AR-H,annual,2019,naphtha combustion consumption by to the public,3.3168519999999995,TJ,N2O,0.6,kg/TJ,1.9901111999999996,kg +06a7d956-cf54-3ce2-9f19-07d16a6ff070,SESCO,II.1.1,Corrientes,AR-W,annual,2019,naphtha combustion consumption by to the public,0.8141364,TJ,CO2,73300.0,kg/TJ,59676.19812,kg +8145caf1-ebc9-3071-96a6-df67c1cca016,SESCO,II.1.1,Corrientes,AR-W,annual,2019,naphtha combustion consumption by to the public,0.8141364,TJ,CH4,3.0,kg/TJ,2.4424092,kg +13bf69ae-9a9e-3540-95e4-fdbddbb80042,SESCO,II.1.1,Corrientes,AR-W,annual,2019,naphtha combustion consumption by to the public,0.8141364,TJ,N2O,0.6,kg/TJ,0.48848183999999994,kg +70abf4c1-bf03-31dc-b5ef-7114252e3a1d,SESCO,II.1.1,Córdoba,AR-X,annual,2019,naphtha combustion consumption by to the public,35.5204696,TJ,CO2,73300.0,kg/TJ,2603650.4216799997,kg +603e403c-6cc6-3d3b-bbe9-2a1dd40c3155,SESCO,II.1.1,Córdoba,AR-X,annual,2019,naphtha combustion consumption by to the public,35.5204696,TJ,CH4,3.0,kg/TJ,106.5614088,kg +ca2487c7-54a1-3fff-ac69-e4cd1388528f,SESCO,II.1.1,Córdoba,AR-X,annual,2019,naphtha combustion consumption by to the public,35.5204696,TJ,N2O,0.6,kg/TJ,21.312281759999998,kg +11b47dc5-d256-3479-9593-146f80da60cc,SESCO,II.1.1,Entre Rios,AR-E,annual,2019,naphtha combustion consumption by to the public,4.070682,TJ,CO2,73300.0,kg/TJ,298380.99059999996,kg +5a8fcbe5-e544-3576-8d7d-ee87f273aace,SESCO,II.1.1,Entre Rios,AR-E,annual,2019,naphtha combustion consumption by to the public,4.070682,TJ,CH4,3.0,kg/TJ,12.212045999999999,kg +56574520-78e2-3386-944e-9216059b1c72,SESCO,II.1.1,Entre Rios,AR-E,annual,2019,naphtha combustion consumption by to the public,4.070682,TJ,N2O,0.6,kg/TJ,2.4424091999999997,kg +ae868e7b-a846-3d92-94b5-c21dea5c4d54,SESCO,II.1.1,La Rioja,AR-F,annual,2019,naphtha combustion consumption by to the public,0.2713788,TJ,CO2,73300.0,kg/TJ,19892.066039999998,kg +44bc26e8-2ba2-30c1-872d-f625c777b68c,SESCO,II.1.1,La Rioja,AR-F,annual,2019,naphtha combustion consumption by to the public,0.2713788,TJ,CH4,3.0,kg/TJ,0.8141364,kg +fe02ec97-34a7-3534-bfce-f0d3372f55eb,SESCO,II.1.1,La Rioja,AR-F,annual,2019,naphtha combustion consumption by to the public,0.2713788,TJ,N2O,0.6,kg/TJ,0.16282728,kg +40d8be7f-8665-3828-a60f-40675a6764c7,SESCO,II.1.1,Mendoza,AR-M,annual,2019,naphtha combustion consumption by to the public,9.950555999999999,TJ,CO2,73300.0,kg/TJ,729375.7547999999,kg +e341b618-188d-3d47-8490-a1a3c50a08c7,SESCO,II.1.1,Mendoza,AR-M,annual,2019,naphtha combustion consumption by to the public,9.950555999999999,TJ,CH4,3.0,kg/TJ,29.851667999999997,kg +57aac8ce-ac2c-36a4-a4a1-90f79abd3899,SESCO,II.1.1,Mendoza,AR-M,annual,2019,naphtha combustion consumption by to the public,9.950555999999999,TJ,N2O,0.6,kg/TJ,5.970333599999999,kg +26ac0d7c-4921-3969-a7a5-854fc3d086a2,SESCO,II.1.1,San Juan,AR-J,annual,2019,naphtha combustion consumption by to the public,6.030639999999999,TJ,CO2,73300.0,kg/TJ,442045.91199999995,kg +331d6379-1277-32b6-a9fc-a6c67e583063,SESCO,II.1.1,San Juan,AR-J,annual,2019,naphtha combustion consumption by to the public,6.030639999999999,TJ,CH4,3.0,kg/TJ,18.09192,kg +e2820cae-cd3e-3cdc-aae0-51e3a49893ac,SESCO,II.1.1,San Juan,AR-J,annual,2019,naphtha combustion consumption by to the public,6.030639999999999,TJ,N2O,0.6,kg/TJ,3.6183839999999994,kg +a364d403-7579-3787-8434-0f27140836a7,SESCO,II.1.1,San Luis,AR-D,annual,2019,naphtha combustion consumption by to the public,1.206128,TJ,CO2,73300.0,kg/TJ,88409.1824,kg +b4eee3d1-5455-3d3d-835d-16798b18fa7f,SESCO,II.1.1,San Luis,AR-D,annual,2019,naphtha combustion consumption by to the public,1.206128,TJ,CH4,3.0,kg/TJ,3.6183840000000003,kg +df05a3e8-e196-3c2a-b49e-7c8ba7e1aa4d,SESCO,II.1.1,San Luis,AR-D,annual,2019,naphtha combustion consumption by to the public,1.206128,TJ,N2O,0.6,kg/TJ,0.7236768,kg +7dd07bbd-9dde-39c2-b1f6-f75b7e10e550,SESCO,II.1.1,Santa Fe,AR-S,annual,2019,naphtha combustion consumption by to the public,25.931751999999996,TJ,CO2,73300.0,kg/TJ,1900797.4215999998,kg +2e064f2b-4f7d-33af-bd29-a5c04775d249,SESCO,II.1.1,Santa Fe,AR-S,annual,2019,naphtha combustion consumption by to the public,25.931751999999996,TJ,CH4,3.0,kg/TJ,77.795256,kg +18ac7541-c2ba-35dc-9229-4148706d9557,SESCO,II.1.1,Santa Fe,AR-S,annual,2019,naphtha combustion consumption by to the public,25.931751999999996,TJ,N2O,0.6,kg/TJ,15.559051199999997,kg +2b837f50-e11a-389c-b71a-44246273bb25,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2019,naphtha combustion consumption by to the public,3.8596095999999998,TJ,CO2,73300.0,kg/TJ,282909.38367999997,kg +ed81b605-868e-35a6-a7e4-4fe0fe101aa6,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2019,naphtha combustion consumption by to the public,3.8596095999999998,TJ,CH4,3.0,kg/TJ,11.5788288,kg +984efd6f-2eab-3fbd-8dff-4445dc45f35e,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2019,naphtha combustion consumption by to the public,3.8596095999999998,TJ,N2O,0.6,kg/TJ,2.3157657599999997,kg +230b1f3b-df06-3bf2-a4ed-b4f250803ebe,SESCO,II.1.1,Tucuman,AR-T,annual,2019,naphtha combustion consumption by to the public,0.150766,TJ,CO2,73300.0,kg/TJ,11051.1478,kg +bc44472a-7740-3c92-9a6e-1e4fffa4063e,SESCO,II.1.1,Tucuman,AR-T,annual,2019,naphtha combustion consumption by to the public,0.150766,TJ,CH4,3.0,kg/TJ,0.45229800000000003,kg +047fbf6c-9120-3f32-8cf4-01f0ac5f9b2e,SESCO,II.1.1,Tucuman,AR-T,annual,2019,naphtha combustion consumption by to the public,0.150766,TJ,N2O,0.6,kg/TJ,0.0904596,kg +dbd5e67f-af3c-3c47-9bfa-e95d90ab8f61,SESCO,II.1.1,Buenos Aires,AR-B,annual,2019,naphtha combustion consumption by to the public,1172.1453436,TJ,CO2,73300.0,kg/TJ,85918253.68587999,kg +5c7ef913-a211-33f3-ba35-a77bf760fbd1,SESCO,II.1.1,Buenos Aires,AR-B,annual,2019,naphtha combustion consumption by to the public,1172.1453436,TJ,CH4,3.0,kg/TJ,3516.4360307999996,kg +399a792e-1ba7-392c-a68e-27e0b85fab42,SESCO,II.1.1,Buenos Aires,AR-B,annual,2019,naphtha combustion consumption by to the public,1172.1453436,TJ,N2O,0.6,kg/TJ,703.28720616,kg +f870e3cd-d267-334a-b8e8-e8559ea81e3d,SESCO,II.1.1,Capital Federal,AR-C,annual,2019,naphtha combustion consumption by to the public,68.35730439999999,TJ,CO2,73300.0,kg/TJ,5010590.412519999,kg +f779870f-f7eb-33cc-852e-e2f5715eefa8,SESCO,II.1.1,Capital Federal,AR-C,annual,2019,naphtha combustion consumption by to the public,68.35730439999999,TJ,CH4,3.0,kg/TJ,205.07191319999998,kg +8f85c2be-6c93-3cad-965b-f9fff61323e5,SESCO,II.1.1,Capital Federal,AR-C,annual,2019,naphtha combustion consumption by to the public,68.35730439999999,TJ,N2O,0.6,kg/TJ,41.014382639999994,kg +40e206df-b58b-314d-b2da-bca1388382e6,SESCO,II.1.1,Catamarca,AR-K,annual,2019,naphtha combustion consumption by to the public,0.3618384,TJ,CO2,73300.0,kg/TJ,26522.75472,kg +fa04013e-b3c8-33b0-a6f1-6292c3cba1ec,SESCO,II.1.1,Catamarca,AR-K,annual,2019,naphtha combustion consumption by to the public,0.3618384,TJ,CH4,3.0,kg/TJ,1.0855152000000001,kg +20616989-4366-3cb0-8e8e-5aeb82d8c4f9,SESCO,II.1.1,Catamarca,AR-K,annual,2019,naphtha combustion consumption by to the public,0.3618384,TJ,N2O,0.6,kg/TJ,0.21710304,kg +873fd983-3202-3234-be87-0dbd01fe3284,SESCO,II.1.1,Chaco,AR-H,annual,2019,naphtha combustion consumption by to the public,96.94253799999998,TJ,CO2,73300.0,kg/TJ,7105888.035399999,kg +f4260b5e-ee78-32aa-bed3-26a560905624,SESCO,II.1.1,Chaco,AR-H,annual,2019,naphtha combustion consumption by to the public,96.94253799999998,TJ,CH4,3.0,kg/TJ,290.8276139999999,kg +815f498a-98ba-39f1-b6ba-19fcf2c36a12,SESCO,II.1.1,Chaco,AR-H,annual,2019,naphtha combustion consumption by to the public,96.94253799999998,TJ,N2O,0.6,kg/TJ,58.16552279999999,kg +fe8f60f7-16b2-3e2a-9b23-1b0513b1f613,SESCO,II.1.1,Corrientes,AR-W,annual,2019,naphtha combustion consumption by to the public,38.9579344,TJ,CO2,73300.0,kg/TJ,2855616.59152,kg +2dfa0bc0-31ba-3067-af11-6d451371b1a2,SESCO,II.1.1,Corrientes,AR-W,annual,2019,naphtha combustion consumption by to the public,38.9579344,TJ,CH4,3.0,kg/TJ,116.8738032,kg +20558b92-127d-3dae-8084-7771a392626f,SESCO,II.1.1,Corrientes,AR-W,annual,2019,naphtha combustion consumption by to the public,38.9579344,TJ,N2O,0.6,kg/TJ,23.374760639999998,kg +bb0c9d8d-efca-3dcf-b4d4-86407d315e37,SESCO,II.1.1,Córdoba,AR-X,annual,2019,naphtha combustion consumption by to the public,655.4099551999999,TJ,CO2,73300.0,kg/TJ,48041549.71615999,kg +ce4e8d8f-0f8d-316e-9b3a-fcbde21eb51b,SESCO,II.1.1,Córdoba,AR-X,annual,2019,naphtha combustion consumption by to the public,655.4099551999999,TJ,CH4,3.0,kg/TJ,1966.2298655999998,kg +378704f3-0533-3d33-888b-fcc7a4ecab18,SESCO,II.1.1,Córdoba,AR-X,annual,2019,naphtha combustion consumption by to the public,655.4099551999999,TJ,N2O,0.6,kg/TJ,393.2459731199999,kg +47454bbe-06ae-359b-9b0b-7989a20b0995,SESCO,II.1.1,Entre Rios,AR-E,annual,2019,naphtha combustion consumption by to the public,7.960444799999999,TJ,CO2,73300.0,kg/TJ,583500.60384,kg +aff1653c-209e-302e-8688-4ebedd7872d6,SESCO,II.1.1,Entre Rios,AR-E,annual,2019,naphtha combustion consumption by to the public,7.960444799999999,TJ,CH4,3.0,kg/TJ,23.8813344,kg +550f9167-7ab6-3d13-88de-b3927827f127,SESCO,II.1.1,Entre Rios,AR-E,annual,2019,naphtha combustion consumption by to the public,7.960444799999999,TJ,N2O,0.6,kg/TJ,4.77626688,kg +71796994-b69f-38f8-a863-544a2e1da752,SESCO,II.1.1,Formosa,AR-P,annual,2019,naphtha combustion consumption by to the public,0.8141364,TJ,CO2,73300.0,kg/TJ,59676.19812,kg +5429a341-86a8-37a9-af76-78839e310b79,SESCO,II.1.1,Formosa,AR-P,annual,2019,naphtha combustion consumption by to the public,0.8141364,TJ,CH4,3.0,kg/TJ,2.4424092,kg +b1644875-1a4c-32bf-a496-564a7245de9f,SESCO,II.1.1,Formosa,AR-P,annual,2019,naphtha combustion consumption by to the public,0.8141364,TJ,N2O,0.6,kg/TJ,0.48848183999999994,kg +5b372581-6767-3584-a841-db53d08437b1,SESCO,II.1.1,La Rioja,AR-F,annual,2019,naphtha combustion consumption by to the public,0.5126044,TJ,CO2,73300.0,kg/TJ,37573.902519999996,kg +2356c859-27d5-31bf-8c40-c264879ea943,SESCO,II.1.1,La Rioja,AR-F,annual,2019,naphtha combustion consumption by to the public,0.5126044,TJ,CH4,3.0,kg/TJ,1.5378132,kg +ca727331-8132-3348-9682-8147275a4e87,SESCO,II.1.1,La Rioja,AR-F,annual,2019,naphtha combustion consumption by to the public,0.5126044,TJ,N2O,0.6,kg/TJ,0.30756263999999994,kg +800fa96a-a1b3-3afd-8ea9-837662acf7d6,SESCO,II.1.1,Mendoza,AR-M,annual,2019,naphtha combustion consumption by to the public,328.06681599999996,TJ,CO2,73300.0,kg/TJ,24047297.6128,kg +fb8f8c45-df5f-36e7-b2d2-6a8da0efb06b,SESCO,II.1.1,Mendoza,AR-M,annual,2019,naphtha combustion consumption by to the public,328.06681599999996,TJ,CH4,3.0,kg/TJ,984.2004479999998,kg +5da6de7c-73a7-304b-b49b-14ad482ef3d6,SESCO,II.1.1,Mendoza,AR-M,annual,2019,naphtha combustion consumption by to the public,328.06681599999996,TJ,N2O,0.6,kg/TJ,196.84008959999997,kg +996d3109-8f73-35e2-96c5-7ad5035a7f9c,SESCO,II.1.1,Misiones,AR-N,annual,2019,naphtha combustion consumption by to the public,75.3528468,TJ,CO2,73300.0,kg/TJ,5523363.67044,kg +923dcbc6-5c00-32d6-a657-11674d0f0d13,SESCO,II.1.1,Misiones,AR-N,annual,2019,naphtha combustion consumption by to the public,75.3528468,TJ,CH4,3.0,kg/TJ,226.05854039999997,kg +b12843e1-6164-32e0-aeac-3746b7e7f7bf,SESCO,II.1.1,Misiones,AR-N,annual,2019,naphtha combustion consumption by to the public,75.3528468,TJ,N2O,0.6,kg/TJ,45.211708079999994,kg +9bed58a9-3a4e-3565-b79d-96fa3d9efd23,SESCO,II.1.1,San Luis,AR-D,annual,2019,naphtha combustion consumption by to the public,6.422631599999999,TJ,CO2,73300.0,kg/TJ,470778.8962799999,kg +758eafdc-5b28-37b7-b14b-d5cf2540f43c,SESCO,II.1.1,San Luis,AR-D,annual,2019,naphtha combustion consumption by to the public,6.422631599999999,TJ,CH4,3.0,kg/TJ,19.267894799999997,kg +e9490f00-4bfb-3236-b55c-90e5fd97c1c2,SESCO,II.1.1,San Luis,AR-D,annual,2019,naphtha combustion consumption by to the public,6.422631599999999,TJ,N2O,0.6,kg/TJ,3.853578959999999,kg +52cc6fdd-2255-3a3f-a838-5efca15eee02,SESCO,II.1.1,Santa Fe,AR-S,annual,2019,naphtha combustion consumption by to the public,444.7898532,TJ,CO2,73300.0,kg/TJ,32603096.239559997,kg +c3b7bc37-b12e-3ae3-8bfe-214978f8630c,SESCO,II.1.1,Santa Fe,AR-S,annual,2019,naphtha combustion consumption by to the public,444.7898532,TJ,CH4,3.0,kg/TJ,1334.3695596,kg +b124fdb7-5ccd-3da0-9d85-1d765315a825,SESCO,II.1.1,Santa Fe,AR-S,annual,2019,naphtha combustion consumption by to the public,444.7898532,TJ,N2O,0.6,kg/TJ,266.87391191999995,kg +993dd3b4-5d18-399a-9240-e5255a6fc6b1,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2019,naphtha combustion consumption by to the public,3.9199159999999997,TJ,CO2,73300.0,kg/TJ,287329.8428,kg +9ad6c74b-89da-30ad-a039-b748e5f7079d,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2019,naphtha combustion consumption by to the public,3.9199159999999997,TJ,CH4,3.0,kg/TJ,11.759747999999998,kg +3d7c042b-a5dd-3040-8dc9-1ca59a5aa85b,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2019,naphtha combustion consumption by to the public,3.9199159999999997,TJ,N2O,0.6,kg/TJ,2.3519495999999998,kg +2cae0a8b-4612-39ad-8151-77c55dfee756,SESCO,II.1.1,Tucuman,AR-T,annual,2019,naphtha combustion consumption by to the public,0.24122559999999998,TJ,CO2,73300.0,kg/TJ,17681.836479999998,kg +ca0a013c-2024-3fba-8609-f30e777d9cfa,SESCO,II.1.1,Tucuman,AR-T,annual,2019,naphtha combustion consumption by to the public,0.24122559999999998,TJ,CH4,3.0,kg/TJ,0.7236768,kg +2c9942b8-a36c-3031-854b-0084e582b917,SESCO,II.1.1,Tucuman,AR-T,annual,2019,naphtha combustion consumption by to the public,0.24122559999999998,TJ,N2O,0.6,kg/TJ,0.14473535999999998,kg +f772f9b2-dcbd-38ea-bec6-c55d80c6578d,SESCO,II.1.1,Buenos Aires,AR-B,annual,2019,naphtha combustion consumption by to the public,116.63257759999999,TJ,CO2,73300.0,kg/TJ,8549167.93808,kg +2e847b41-fd7b-3b83-9531-efc221521de3,SESCO,II.1.1,Buenos Aires,AR-B,annual,2019,naphtha combustion consumption by to the public,116.63257759999999,TJ,CH4,3.0,kg/TJ,349.89773279999997,kg +42953178-9fb0-3e7c-b9f8-4bfa859a6cba,SESCO,II.1.1,Buenos Aires,AR-B,annual,2019,naphtha combustion consumption by to the public,116.63257759999999,TJ,N2O,0.6,kg/TJ,69.97954655999999,kg +281b0ac9-3fc8-321e-818d-2e91acafff7b,SESCO,II.1.1,Capital Federal,AR-C,annual,2019,naphtha combustion consumption by to the public,12.6040376,TJ,CO2,73300.0,kg/TJ,923875.95608,kg +392c27d0-70be-31cf-8da3-42faf030807f,SESCO,II.1.1,Capital Federal,AR-C,annual,2019,naphtha combustion consumption by to the public,12.6040376,TJ,CH4,3.0,kg/TJ,37.8121128,kg +2d3d7dd1-2af1-31a6-ac25-f0db9274d720,SESCO,II.1.1,Capital Federal,AR-C,annual,2019,naphtha combustion consumption by to the public,12.6040376,TJ,N2O,0.6,kg/TJ,7.56242256,kg +abb6e209-ae6b-3e6d-8d3b-808d04b6c964,SESCO,II.1.1,Chaco,AR-H,annual,2019,naphtha combustion consumption by to the public,5.668801599999999,TJ,CO2,73300.0,kg/TJ,415523.1572799999,kg +782f25d7-47e1-3d6d-a4fd-d9b1e81e7b24,SESCO,II.1.1,Chaco,AR-H,annual,2019,naphtha combustion consumption by to the public,5.668801599999999,TJ,CH4,3.0,kg/TJ,17.0064048,kg +2eef0adb-50ee-3e87-aac7-c716ef4ba8d8,SESCO,II.1.1,Chaco,AR-H,annual,2019,naphtha combustion consumption by to the public,5.668801599999999,TJ,N2O,0.6,kg/TJ,3.4012809599999994,kg +333f9fc7-a3e9-3fba-bf69-2f84fb463f89,SESCO,II.1.1,Corrientes,AR-W,annual,2019,naphtha combustion consumption by to the public,1.9901111999999999,TJ,CO2,73300.0,kg/TJ,145875.15096,kg +defa1a06-a334-3ffa-865d-c0b4cc439584,SESCO,II.1.1,Corrientes,AR-W,annual,2019,naphtha combustion consumption by to the public,1.9901111999999999,TJ,CH4,3.0,kg/TJ,5.9703336,kg +93e1d599-e12e-33ff-9732-dc4ef8f8c976,SESCO,II.1.1,Corrientes,AR-W,annual,2019,naphtha combustion consumption by to the public,1.9901111999999999,TJ,N2O,0.6,kg/TJ,1.19406672,kg +47b30d2e-094c-3efe-b960-0c29c5e81bf5,SESCO,II.1.1,Córdoba,AR-X,annual,2019,naphtha combustion consumption by to the public,78.85061799999998,TJ,CO2,73300.0,kg/TJ,5779750.299399999,kg +534dfb4e-fdb2-39cb-9297-86e66dafd0ef,SESCO,II.1.1,Córdoba,AR-X,annual,2019,naphtha combustion consumption by to the public,78.85061799999998,TJ,CH4,3.0,kg/TJ,236.55185399999993,kg +09debac9-b741-3463-838b-8982c2dc68df,SESCO,II.1.1,Córdoba,AR-X,annual,2019,naphtha combustion consumption by to the public,78.85061799999998,TJ,N2O,0.6,kg/TJ,47.31037079999999,kg +2fd987a1-9b20-3354-b17f-2efbe96ea64f,SESCO,II.1.1,Entre Rios,AR-E,annual,2019,naphtha combustion consumption by to the public,0.8744427999999999,TJ,CO2,73300.0,kg/TJ,64096.657239999986,kg +7e906db7-11f9-3716-88af-90c62e8c0b1c,SESCO,II.1.1,Entre Rios,AR-E,annual,2019,naphtha combustion consumption by to the public,0.8744427999999999,TJ,CH4,3.0,kg/TJ,2.6233283999999997,kg +00893aea-4f83-3b63-8881-9c46fef8e08f,SESCO,II.1.1,Entre Rios,AR-E,annual,2019,naphtha combustion consumption by to the public,0.8744427999999999,TJ,N2O,0.6,kg/TJ,0.5246656799999999,kg +53781914-22cc-3fff-a709-cd85243f3a85,SESCO,II.1.1,Mendoza,AR-M,annual,2019,naphtha combustion consumption by to the public,36.72659759999999,TJ,CO2,73300.0,kg/TJ,2692059.6040799995,kg +708c316d-fab8-3115-b6b5-7c1019d53ba0,SESCO,II.1.1,Mendoza,AR-M,annual,2019,naphtha combustion consumption by to the public,36.72659759999999,TJ,CH4,3.0,kg/TJ,110.17979279999997,kg +d5f50d9f-e861-3576-8610-918d1561d598,SESCO,II.1.1,Mendoza,AR-M,annual,2019,naphtha combustion consumption by to the public,36.72659759999999,TJ,N2O,0.6,kg/TJ,22.035958559999994,kg +682b678d-a196-3b0b-9cfc-f1e0784be6c1,SESCO,II.1.1,Misiones,AR-N,annual,2019,naphtha combustion consumption by to the public,5.819567599999999,TJ,CO2,73300.0,kg/TJ,426574.30507999996,kg +cb2a6bab-9398-3241-8002-f386d94c4db2,SESCO,II.1.1,Misiones,AR-N,annual,2019,naphtha combustion consumption by to the public,5.819567599999999,TJ,CH4,3.0,kg/TJ,17.458702799999998,kg +28803e65-cda3-384a-bab2-21163d9bbbbf,SESCO,II.1.1,Misiones,AR-N,annual,2019,naphtha combustion consumption by to the public,5.819567599999999,TJ,N2O,0.6,kg/TJ,3.4917405599999993,kg +d5836acc-ca47-3302-b23f-d1098265641e,SESCO,II.1.1,San Luis,AR-D,annual,2019,naphtha combustion consumption by to the public,0.6332171999999999,TJ,CO2,73300.0,kg/TJ,46414.820759999995,kg +0e1050c9-97e4-34bf-8540-f15e2b37731e,SESCO,II.1.1,San Luis,AR-D,annual,2019,naphtha combustion consumption by to the public,0.6332171999999999,TJ,CH4,3.0,kg/TJ,1.8996515999999999,kg +04957c3a-9e7c-308c-9d2c-eaf29770af85,SESCO,II.1.1,San Luis,AR-D,annual,2019,naphtha combustion consumption by to the public,0.6332171999999999,TJ,N2O,0.6,kg/TJ,0.37993031999999993,kg +4ae08bb4-fea3-3c45-8227-6e3fe1503300,SESCO,II.1.1,Santa Fe,AR-S,annual,2019,naphtha combustion consumption by to the public,45.8027108,TJ,CO2,73300.0,kg/TJ,3357338.70164,kg +21e39bd7-a659-3a59-9c4a-7fcbf18fdc62,SESCO,II.1.1,Santa Fe,AR-S,annual,2019,naphtha combustion consumption by to the public,45.8027108,TJ,CH4,3.0,kg/TJ,137.4081324,kg +5c404ceb-91cd-3b18-9ef9-606e9399091f,SESCO,II.1.1,Santa Fe,AR-S,annual,2019,naphtha combustion consumption by to the public,45.8027108,TJ,N2O,0.6,kg/TJ,27.48162648,kg +899560c0-e134-3fee-86ad-0564f9b3bfcf,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2019,naphtha combustion consumption by to the public,0.5427576,TJ,CO2,73300.0,kg/TJ,39784.132079999996,kg +b8624eed-8582-3b58-a884-c3efb7e983ee,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2019,naphtha combustion consumption by to the public,0.5427576,TJ,CH4,3.0,kg/TJ,1.6282728,kg +26ebf2d8-4424-3b97-9c73-70e371841bea,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2019,naphtha combustion consumption by to the public,0.5427576,TJ,N2O,0.6,kg/TJ,0.32565456,kg +ebcf330f-bf79-3d12-860e-75bc11d0b554,SESCO,I.3.1,Buenos Aires,AR-B,annual,2019,naphtha combustion consumption by petrochemical industries,4.6435927999999995,TJ,CO2,73300.0,kg/TJ,340375.35224,kg +e8fcdbf8-7bab-3260-a1cc-08a51c741cec,SESCO,I.3.1,Buenos Aires,AR-B,annual,2019,naphtha combustion consumption by petrochemical industries,4.6435927999999995,TJ,CH4,3.0,kg/TJ,13.930778399999998,kg +383fa760-956c-3a01-8625-0f75ec7693f7,SESCO,I.3.1,Buenos Aires,AR-B,annual,2019,naphtha combustion consumption by petrochemical industries,4.6435927999999995,TJ,N2O,0.6,kg/TJ,2.78615568,kg +06da6ed1-65fc-3a28-9bd5-a6ea477427c7,SESCO,II.5.1,Córdoba,AR-X,annual,2019,naphtha combustion consumption by agriculture machines,1.2664343999999998,TJ,CO2,73300.0,kg/TJ,92829.64151999999,kg +4c8c8fb8-0acb-3338-aec1-ad81f80731a4,SESCO,II.5.1,Córdoba,AR-X,annual,2019,naphtha combustion consumption by agriculture machines,1.2664343999999998,TJ,CH4,3.0,kg/TJ,3.7993031999999998,kg +1f266ca5-79c0-3154-82cc-045ba3b67eba,SESCO,II.5.1,Córdoba,AR-X,annual,2019,naphtha combustion consumption by agriculture machines,1.2664343999999998,TJ,N2O,0.6,kg/TJ,0.7598606399999999,kg +7853968a-c7b3-3700-9120-0b25a5536a70,SESCO,II.5.1,Santa Fe,AR-S,annual,2019,naphtha combustion consumption by agriculture machines,4.8848183999999994,TJ,CO2,73300.0,kg/TJ,358057.18872,kg +c107ce0f-9e00-3c93-a871-cf3542b25dc4,SESCO,II.5.1,Santa Fe,AR-S,annual,2019,naphtha combustion consumption by agriculture machines,4.8848183999999994,TJ,CH4,3.0,kg/TJ,14.654455199999997,kg +8b85fca6-f35f-3228-b7c9-5d50fe29ded6,SESCO,II.5.1,Santa Fe,AR-S,annual,2019,naphtha combustion consumption by agriculture machines,4.8848183999999994,TJ,N2O,0.6,kg/TJ,2.9308910399999997,kg +bbc36c2f-f1cb-337d-83fc-bc9ae36f0506,SESCO,II.5.1,Córdoba,AR-X,annual,2019,naphtha combustion consumption by agriculture machines,0.9045959999999998,TJ,CO2,73300.0,kg/TJ,66306.8868,kg +05aa6733-f8a4-3b3c-8fcd-502d6d75be3d,SESCO,II.5.1,Córdoba,AR-X,annual,2019,naphtha combustion consumption by agriculture machines,0.9045959999999998,TJ,CH4,3.0,kg/TJ,2.7137879999999996,kg +a26e47bb-9f6a-34df-ae81-5353a6bdd4e7,SESCO,II.5.1,Córdoba,AR-X,annual,2019,naphtha combustion consumption by agriculture machines,0.9045959999999998,TJ,N2O,0.6,kg/TJ,0.5427575999999998,kg +5f39dc93-bf15-3064-b64d-f5982cab4520,SESCO,II.5.1,Santa Fe,AR-S,annual,2019,naphtha combustion consumption by agriculture machines,1.5378132,TJ,CO2,73300.0,kg/TJ,112721.70756,kg +42b1c7ec-f845-3274-b21b-5de01f592c28,SESCO,II.5.1,Santa Fe,AR-S,annual,2019,naphtha combustion consumption by agriculture machines,1.5378132,TJ,CH4,3.0,kg/TJ,4.6134395999999995,kg +361352ba-e851-31ed-a8cf-7e94be4a4505,SESCO,II.5.1,Santa Fe,AR-S,annual,2019,naphtha combustion consumption by agriculture machines,1.5378132,TJ,N2O,0.6,kg/TJ,0.92268792,kg +df37ee57-a195-3d7c-a13d-55a797b4a644,SESCO,II.1.1,Buenos Aires,AR-B,annual,2019,naphtha combustion consumption by to the public,2667.2314592,TJ,CO2,73300.0,kg/TJ,195508065.95935997,kg +fbcd296e-4bd1-3611-9dc9-3ff1e816e353,SESCO,II.1.1,Buenos Aires,AR-B,annual,2019,naphtha combustion consumption by to the public,2667.2314592,TJ,CH4,3.0,kg/TJ,8001.694377599999,kg +0142220e-833e-3936-ab3e-b7c1e05d65fd,SESCO,II.1.1,Buenos Aires,AR-B,annual,2019,naphtha combustion consumption by to the public,2667.2314592,TJ,N2O,0.6,kg/TJ,1600.3388755199999,kg +19f85acb-5b5b-3194-ac9d-ea5118b2894a,SESCO,II.1.1,Capital Federal,AR-C,annual,2019,naphtha combustion consumption by to the public,717.1034023999999,TJ,CO2,73300.0,kg/TJ,52563679.39591999,kg +6bdfcc52-53aa-3d4b-a82c-6ce341ad22b4,SESCO,II.1.1,Capital Federal,AR-C,annual,2019,naphtha combustion consumption by to the public,717.1034023999999,TJ,CH4,3.0,kg/TJ,2151.3102071999997,kg +0a3eb702-40bf-30ab-b356-e950d37a7c0b,SESCO,II.1.1,Capital Federal,AR-C,annual,2019,naphtha combustion consumption by to the public,717.1034023999999,TJ,N2O,0.6,kg/TJ,430.26204143999996,kg +d0a5567a-e75f-3112-a3ef-79eba828cc55,SESCO,II.1.1,Catamarca,AR-K,annual,2019,naphtha combustion consumption by to the public,85.87631359999999,TJ,CO2,73300.0,kg/TJ,6294733.78688,kg +44e11199-8adf-3378-9834-be92ff9124af,SESCO,II.1.1,Catamarca,AR-K,annual,2019,naphtha combustion consumption by to the public,85.87631359999999,TJ,CH4,3.0,kg/TJ,257.62894079999995,kg +855c1b9e-d188-3ee4-8fff-915e8417e333,SESCO,II.1.1,Catamarca,AR-K,annual,2019,naphtha combustion consumption by to the public,85.87631359999999,TJ,N2O,0.6,kg/TJ,51.52578815999999,kg +5c087764-58b1-348b-94cf-b0c32be710d5,SESCO,II.1.1,Chaco,AR-H,annual,2019,naphtha combustion consumption by to the public,92.60047719999999,TJ,CO2,73300.0,kg/TJ,6787614.978759999,kg +234e17bd-4cdd-32a9-b602-90463c405c75,SESCO,II.1.1,Chaco,AR-H,annual,2019,naphtha combustion consumption by to the public,92.60047719999999,TJ,CH4,3.0,kg/TJ,277.80143159999994,kg +2e20d03b-0cc5-393f-979d-af649762f6d5,SESCO,II.1.1,Chaco,AR-H,annual,2019,naphtha combustion consumption by to the public,92.60047719999999,TJ,N2O,0.6,kg/TJ,55.56028631999999,kg +3c4adaf3-02b0-34dc-969b-63d7a87f41e9,SESCO,II.1.1,Chubut,AR-U,annual,2019,naphtha combustion consumption by to the public,363.61743879999995,TJ,CO2,73300.0,kg/TJ,26653158.264039997,kg +83b25601-ad4e-3e8e-9028-eb10fecb4a22,SESCO,II.1.1,Chubut,AR-U,annual,2019,naphtha combustion consumption by to the public,363.61743879999995,TJ,CH4,3.0,kg/TJ,1090.8523163999998,kg +7dff084b-9928-309e-a67e-b92f351a4e33,SESCO,II.1.1,Chubut,AR-U,annual,2019,naphtha combustion consumption by to the public,363.61743879999995,TJ,N2O,0.6,kg/TJ,218.17046327999995,kg +7e85fb04-4e39-322e-b530-9e27c462eecd,SESCO,II.1.1,Corrientes,AR-W,annual,2019,naphtha combustion consumption by to the public,166.3250512,TJ,CO2,73300.0,kg/TJ,12191626.25296,kg +cd9e2d58-8cb7-3c69-8610-b2b0ceced1b0,SESCO,II.1.1,Corrientes,AR-W,annual,2019,naphtha combustion consumption by to the public,166.3250512,TJ,CH4,3.0,kg/TJ,498.9751536,kg +3a057343-45a6-3d77-b911-e90eae428a39,SESCO,II.1.1,Corrientes,AR-W,annual,2019,naphtha combustion consumption by to the public,166.3250512,TJ,N2O,0.6,kg/TJ,99.79503071999999,kg +e9c4b510-7bb0-37ae-ad3f-3f6a3e851772,SESCO,II.1.1,Córdoba,AR-X,annual,2019,naphtha combustion consumption by to the public,688.2166368,TJ,CO2,73300.0,kg/TJ,50446279.47744,kg +137d8b81-9da2-3d7f-8d0c-3871016d816f,SESCO,II.1.1,Córdoba,AR-X,annual,2019,naphtha combustion consumption by to the public,688.2166368,TJ,CH4,3.0,kg/TJ,2064.6499104,kg +91348831-7231-3378-9490-e47a54c76b25,SESCO,II.1.1,Córdoba,AR-X,annual,2019,naphtha combustion consumption by to the public,688.2166368,TJ,N2O,0.6,kg/TJ,412.92998207999995,kg +4ff8fe54-8d9f-332b-af2d-0f187889f1ec,SESCO,II.1.1,Entre Rios,AR-E,annual,2019,naphtha combustion consumption by to the public,297.3708584,TJ,CO2,73300.0,kg/TJ,21797283.92072,kg +7235fae4-fd42-31b9-890e-e07a28a6ede4,SESCO,II.1.1,Entre Rios,AR-E,annual,2019,naphtha combustion consumption by to the public,297.3708584,TJ,CH4,3.0,kg/TJ,892.1125751999999,kg +d9f305a0-fee3-3fd4-a178-7aadf35edc28,SESCO,II.1.1,Entre Rios,AR-E,annual,2019,naphtha combustion consumption by to the public,297.3708584,TJ,N2O,0.6,kg/TJ,178.42251503999998,kg +1b07d06a-4975-30f2-b2da-1cf198bbe08a,SESCO,II.1.1,Formosa,AR-P,annual,2019,naphtha combustion consumption by to the public,136.0210852,TJ,CO2,73300.0,kg/TJ,9970345.54516,kg +b0e2a196-be50-3db3-b732-061aa65f22fe,SESCO,II.1.1,Formosa,AR-P,annual,2019,naphtha combustion consumption by to the public,136.0210852,TJ,CH4,3.0,kg/TJ,408.06325559999993,kg +75e5040c-8e78-3f34-ab62-c579512e8080,SESCO,II.1.1,Formosa,AR-P,annual,2019,naphtha combustion consumption by to the public,136.0210852,TJ,N2O,0.6,kg/TJ,81.61265112,kg +cda824fa-14d0-38cb-a383-6ddaef65fbaa,SESCO,II.1.1,Jujuy,AR-Y,annual,2019,naphtha combustion consumption by to the public,52.55702759999999,TJ,CO2,73300.0,kg/TJ,3852430.1230799994,kg +72d820eb-0eb6-3640-ae92-6db3e0d9e5e4,SESCO,II.1.1,Jujuy,AR-Y,annual,2019,naphtha combustion consumption by to the public,52.55702759999999,TJ,CH4,3.0,kg/TJ,157.67108279999997,kg +53103ec3-6488-3feb-8c6a-e08942d57783,SESCO,II.1.1,Jujuy,AR-Y,annual,2019,naphtha combustion consumption by to the public,52.55702759999999,TJ,N2O,0.6,kg/TJ,31.534216559999994,kg +b83d06ec-f640-324d-819b-807771c800b9,SESCO,II.1.1,La Pampa,AR-L,annual,2019,naphtha combustion consumption by to the public,51.411206,TJ,CO2,73300.0,kg/TJ,3768441.3998,kg +4b273463-403c-38d5-a312-c89f7a1f83b7,SESCO,II.1.1,La Pampa,AR-L,annual,2019,naphtha combustion consumption by to the public,51.411206,TJ,CH4,3.0,kg/TJ,154.233618,kg +960a70f4-7721-3efa-aaa9-0110499d80d5,SESCO,II.1.1,La Pampa,AR-L,annual,2019,naphtha combustion consumption by to the public,51.411206,TJ,N2O,0.6,kg/TJ,30.846723599999997,kg +09b1046a-27cb-3118-acdd-44970beebe26,SESCO,II.1.1,La Rioja,AR-F,annual,2019,naphtha combustion consumption by to the public,33.228826399999996,TJ,CO2,73300.0,kg/TJ,2435672.9751199996,kg +d5b0cb6d-0048-3682-9f02-bdb137707e07,SESCO,II.1.1,La Rioja,AR-F,annual,2019,naphtha combustion consumption by to the public,33.228826399999996,TJ,CH4,3.0,kg/TJ,99.68647919999998,kg +145bb6e6-eda9-3430-90f6-56100e0b026e,SESCO,II.1.1,La Rioja,AR-F,annual,2019,naphtha combustion consumption by to the public,33.228826399999996,TJ,N2O,0.6,kg/TJ,19.937295839999997,kg +505b2f27-da0d-3a2f-8727-4f8fd5539781,SESCO,II.1.1,Mendoza,AR-M,annual,2019,naphtha combustion consumption by to the public,161.47038599999996,TJ,CO2,73300.0,kg/TJ,11835779.293799996,kg +7f83692c-973b-314c-9a46-fdf6421d3234,SESCO,II.1.1,Mendoza,AR-M,annual,2019,naphtha combustion consumption by to the public,161.47038599999996,TJ,CH4,3.0,kg/TJ,484.4111579999999,kg +dcd81652-bb4c-3f96-b7e5-3bcc2c7fb041,SESCO,II.1.1,Mendoza,AR-M,annual,2019,naphtha combustion consumption by to the public,161.47038599999996,TJ,N2O,0.6,kg/TJ,96.88223159999997,kg +58b2e9f9-515e-3bd4-b236-b3abe3bcee55,SESCO,II.1.1,Misiones,AR-N,annual,2019,naphtha combustion consumption by to the public,228.9532476,TJ,CO2,73300.0,kg/TJ,16782273.04908,kg +2995491c-16c1-33e2-be2a-36a77bb65196,SESCO,II.1.1,Misiones,AR-N,annual,2019,naphtha combustion consumption by to the public,228.9532476,TJ,CH4,3.0,kg/TJ,686.8597428,kg +dcfb6739-51a4-37e9-93ca-4b2bdfbd0775,SESCO,II.1.1,Misiones,AR-N,annual,2019,naphtha combustion consumption by to the public,228.9532476,TJ,N2O,0.6,kg/TJ,137.37194856,kg +1271f8e4-6824-30bd-a589-46f2113003e3,SESCO,II.1.1,Neuquén,AR-Q,annual,2019,naphtha combustion consumption by to the public,99.20402799999998,TJ,CO2,73300.0,kg/TJ,7271655.252399999,kg +c2aa1eee-ee5a-3a40-9f3d-83cca020dbda,SESCO,II.1.1,Neuquén,AR-Q,annual,2019,naphtha combustion consumption by to the public,99.20402799999998,TJ,CH4,3.0,kg/TJ,297.6120839999999,kg +6846e317-d63a-3033-b793-f6f81b9aa109,SESCO,II.1.1,Neuquén,AR-Q,annual,2019,naphtha combustion consumption by to the public,99.20402799999998,TJ,N2O,0.6,kg/TJ,59.52241679999999,kg +2b073143-1a56-3b62-8cbd-8d7e9e073df2,SESCO,II.1.1,Rio Negro,AR-R,annual,2019,naphtha combustion consumption by to the public,186.91968679999997,TJ,CO2,73300.0,kg/TJ,13701213.042439997,kg +eabc7285-8bae-32be-91c5-93bed748c22e,SESCO,II.1.1,Rio Negro,AR-R,annual,2019,naphtha combustion consumption by to the public,186.91968679999997,TJ,CH4,3.0,kg/TJ,560.7590604,kg +1e1310a5-8732-3c06-a44c-b232d514c106,SESCO,II.1.1,Rio Negro,AR-R,annual,2019,naphtha combustion consumption by to the public,186.91968679999997,TJ,N2O,0.6,kg/TJ,112.15181207999997,kg +1f0287ef-9367-394c-8663-81eb9dfccf84,SESCO,II.1.1,Salta,AR-A,annual,2019,naphtha combustion consumption by to the public,40.8274328,TJ,CO2,73300.0,kg/TJ,2992650.82424,kg +c9c5e78b-de59-3a66-b690-5c48c5075730,SESCO,II.1.1,Salta,AR-A,annual,2019,naphtha combustion consumption by to the public,40.8274328,TJ,CH4,3.0,kg/TJ,122.48229839999999,kg +c838fca2-e1b9-349b-9987-76f8c982550a,SESCO,II.1.1,Salta,AR-A,annual,2019,naphtha combustion consumption by to the public,40.8274328,TJ,N2O,0.6,kg/TJ,24.496459679999997,kg +c99e8ae4-5b78-3e74-baa9-accaa5c39639,SESCO,II.1.1,San Juan,AR-J,annual,2019,naphtha combustion consumption by to the public,59.763642399999995,TJ,CO2,73300.0,kg/TJ,4380674.987919999,kg +67017e50-0dbe-3147-9203-16bd1e209c6d,SESCO,II.1.1,San Juan,AR-J,annual,2019,naphtha combustion consumption by to the public,59.763642399999995,TJ,CH4,3.0,kg/TJ,179.2909272,kg +d94f928e-767d-3689-92f0-6f2ee12c9dec,SESCO,II.1.1,San Juan,AR-J,annual,2019,naphtha combustion consumption by to the public,59.763642399999995,TJ,N2O,0.6,kg/TJ,35.85818543999999,kg +058b074d-99b8-3403-966a-10db940398ef,SESCO,II.1.1,San Luis,AR-D,annual,2019,naphtha combustion consumption by to the public,155.4095928,TJ,CO2,73300.0,kg/TJ,11391523.15224,kg +298510a1-9bbe-3495-9a8d-bcfa80f1527a,SESCO,II.1.1,San Luis,AR-D,annual,2019,naphtha combustion consumption by to the public,155.4095928,TJ,CH4,3.0,kg/TJ,466.2287784,kg +c7799f8c-37e8-3cf5-928b-da7c2a8c0153,SESCO,II.1.1,San Luis,AR-D,annual,2019,naphtha combustion consumption by to the public,155.4095928,TJ,N2O,0.6,kg/TJ,93.24575568,kg +9178ffcc-5ae2-3b42-90f4-dee0b832ea42,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2019,naphtha combustion consumption by to the public,183.39176239999998,TJ,CO2,73300.0,kg/TJ,13442616.183919998,kg +8be609cf-0c5d-327b-b70e-2db3cbd63fb8,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2019,naphtha combustion consumption by to the public,183.39176239999998,TJ,CH4,3.0,kg/TJ,550.1752872,kg +c348c4a8-2d25-346a-926c-ad020e2e5531,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2019,naphtha combustion consumption by to the public,183.39176239999998,TJ,N2O,0.6,kg/TJ,110.03505743999999,kg +901c6644-fb0e-3f79-9961-c72f54eb6cb2,SESCO,II.1.1,Santa Fe,AR-S,annual,2019,naphtha combustion consumption by to the public,634.0313364,TJ,CO2,73300.0,kg/TJ,46474496.958119996,kg +dcfc2224-94f8-3fc5-95f6-5ef17a768e70,SESCO,II.1.1,Santa Fe,AR-S,annual,2019,naphtha combustion consumption by to the public,634.0313364,TJ,CH4,3.0,kg/TJ,1902.0940092,kg +20a5e65b-e242-3dcb-b554-35c40cd148e9,SESCO,II.1.1,Santa Fe,AR-S,annual,2019,naphtha combustion consumption by to the public,634.0313364,TJ,N2O,0.6,kg/TJ,380.41880183999996,kg +817dfb2e-0a8d-3047-a757-7f4e3b0b73e6,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2019,naphtha combustion consumption by to the public,93.324154,TJ,CO2,73300.0,kg/TJ,6840660.4882,kg +a074e42d-851d-3670-90e9-1818a61fea6c,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2019,naphtha combustion consumption by to the public,93.324154,TJ,CH4,3.0,kg/TJ,279.97246199999995,kg +06856c2c-a2f9-3c36-a736-451fa35709cb,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2019,naphtha combustion consumption by to the public,93.324154,TJ,N2O,0.6,kg/TJ,55.99449239999999,kg +6a88106b-50cb-3ace-8316-9ce0777eb1b6,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2019,naphtha combustion consumption by to the public,32.3845368,TJ,CO2,73300.0,kg/TJ,2373786.54744,kg +f9b5e558-c757-3ad4-9609-7e1a8ca562fe,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2019,naphtha combustion consumption by to the public,32.3845368,TJ,CH4,3.0,kg/TJ,97.15361039999999,kg +d3a2d901-a5c1-31a6-aa15-821e95594c80,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2019,naphtha combustion consumption by to the public,32.3845368,TJ,N2O,0.6,kg/TJ,19.43072208,kg +f6a384b4-cb4f-3372-82c2-acecc0d80cd8,SESCO,II.1.1,Tucuman,AR-T,annual,2019,naphtha combustion consumption by to the public,21.348465599999997,TJ,CO2,73300.0,kg/TJ,1564842.5284799999,kg +c192a51e-e3da-3006-8282-ce1a022e18e8,SESCO,II.1.1,Tucuman,AR-T,annual,2019,naphtha combustion consumption by to the public,21.348465599999997,TJ,CH4,3.0,kg/TJ,64.04539679999999,kg +a70ea411-58e8-357b-a54c-b1ba12cadefe,SESCO,II.1.1,Tucuman,AR-T,annual,2019,naphtha combustion consumption by to the public,21.348465599999997,TJ,N2O,0.6,kg/TJ,12.809079359999998,kg +31abe556-bf4e-3178-9165-8b7996a52b9b,SESCO,II.1.1,Buenos Aires,AR-B,annual,2019,naphtha combustion consumption by to the public,581.1727768,TJ,CO2,73300.0,kg/TJ,42599964.53944,kg +a3907194-ed62-3c9d-990f-81893b1466fe,SESCO,II.1.1,Buenos Aires,AR-B,annual,2019,naphtha combustion consumption by to the public,581.1727768,TJ,CH4,3.0,kg/TJ,1743.5183303999997,kg +5429133b-f44a-3e62-a8a3-18b248181d0b,SESCO,II.1.1,Buenos Aires,AR-B,annual,2019,naphtha combustion consumption by to the public,581.1727768,TJ,N2O,0.6,kg/TJ,348.70366607999995,kg +d39a4ac9-420e-35ed-8fd0-4d53889458e4,SESCO,II.1.1,Capital Federal,AR-C,annual,2019,naphtha combustion consumption by to the public,234.5014364,TJ,CO2,73300.0,kg/TJ,17188955.288119998,kg +d883bfec-1714-3deb-bf12-82ddd1e31f8e,SESCO,II.1.1,Capital Federal,AR-C,annual,2019,naphtha combustion consumption by to the public,234.5014364,TJ,CH4,3.0,kg/TJ,703.5043092,kg +2f7840ed-c485-37b9-8f4a-e7cf82b7f568,SESCO,II.1.1,Capital Federal,AR-C,annual,2019,naphtha combustion consumption by to the public,234.5014364,TJ,N2O,0.6,kg/TJ,140.70086184,kg +6fd3cece-d9ab-3eb2-9d37-cf1b7f2db9f8,SESCO,II.1.1,Catamarca,AR-K,annual,2019,naphtha combustion consumption by to the public,22.6149,TJ,CO2,73300.0,kg/TJ,1657672.17,kg +d8992d84-e8bb-3fe0-9f7c-2932fce70d7c,SESCO,II.1.1,Catamarca,AR-K,annual,2019,naphtha combustion consumption by to the public,22.6149,TJ,CH4,3.0,kg/TJ,67.84469999999999,kg +677b7e47-7330-32af-81ad-a95f8f1c103f,SESCO,II.1.1,Catamarca,AR-K,annual,2019,naphtha combustion consumption by to the public,22.6149,TJ,N2O,0.6,kg/TJ,13.56894,kg +476ab512-e147-36a1-9646-c2392c7b2ebb,SESCO,II.1.1,Chaco,AR-H,annual,2019,naphtha combustion consumption by to the public,15.197212799999997,TJ,CO2,73300.0,kg/TJ,1113955.6982399998,kg +370c0ec5-fc82-367c-b65a-1fa2c81c58d4,SESCO,II.1.1,Chaco,AR-H,annual,2019,naphtha combustion consumption by to the public,15.197212799999997,TJ,CH4,3.0,kg/TJ,45.591638399999994,kg +1ee2541c-f8d5-3734-adc0-023cedd49988,SESCO,II.1.1,Chaco,AR-H,annual,2019,naphtha combustion consumption by to the public,15.197212799999997,TJ,N2O,0.6,kg/TJ,9.118327679999998,kg +1df3eaee-e11e-33e8-be9d-f329781bdb04,SESCO,II.1.1,Chubut,AR-U,annual,2019,naphtha combustion consumption by to the public,60.246093599999995,TJ,CO2,73300.0,kg/TJ,4416038.660879999,kg +796dcae1-194e-3747-8d24-dd70d58484b7,SESCO,II.1.1,Chubut,AR-U,annual,2019,naphtha combustion consumption by to the public,60.246093599999995,TJ,CH4,3.0,kg/TJ,180.73828079999998,kg +1fa5afad-edbb-33ee-bb76-555c31429628,SESCO,II.1.1,Chubut,AR-U,annual,2019,naphtha combustion consumption by to the public,60.246093599999995,TJ,N2O,0.6,kg/TJ,36.14765616,kg +e4380c35-f52e-31bc-b6e1-577e464a1945,SESCO,II.1.1,Corrientes,AR-W,annual,2019,naphtha combustion consumption by to the public,31.3291748,TJ,CO2,73300.0,kg/TJ,2296428.51284,kg +5fadc7d0-1945-3028-ba19-76675443b172,SESCO,II.1.1,Corrientes,AR-W,annual,2019,naphtha combustion consumption by to the public,31.3291748,TJ,CH4,3.0,kg/TJ,93.9875244,kg +44e59bd1-4002-3043-8d59-36780895b924,SESCO,II.1.1,Corrientes,AR-W,annual,2019,naphtha combustion consumption by to the public,31.3291748,TJ,N2O,0.6,kg/TJ,18.797504879999998,kg +e3fe95f8-f2e0-3ba1-a564-4c7cee99391a,SESCO,II.1.1,Córdoba,AR-X,annual,2019,naphtha combustion consumption by to the public,149.3487996,TJ,CO2,73300.0,kg/TJ,10947267.010680001,kg +36444333-93fa-3b56-8a6c-3e2c78eb81f1,SESCO,II.1.1,Córdoba,AR-X,annual,2019,naphtha combustion consumption by to the public,149.3487996,TJ,CH4,3.0,kg/TJ,448.0463988,kg +ebbf45d7-30ff-3bc5-8eab-1ab70a4a6151,SESCO,II.1.1,Córdoba,AR-X,annual,2019,naphtha combustion consumption by to the public,149.3487996,TJ,N2O,0.6,kg/TJ,89.60927976,kg +8c241e74-4bb3-31f9-994c-dadcf97da9d2,SESCO,II.1.1,Entre Rios,AR-E,annual,2019,naphtha combustion consumption by to the public,69.4729728,TJ,CO2,73300.0,kg/TJ,5092368.906239999,kg +76675f28-4546-3fb6-be94-5c42dd46d024,SESCO,II.1.1,Entre Rios,AR-E,annual,2019,naphtha combustion consumption by to the public,69.4729728,TJ,CH4,3.0,kg/TJ,208.4189184,kg +4ebfe174-c7c7-3151-a353-de8f69c2bd84,SESCO,II.1.1,Entre Rios,AR-E,annual,2019,naphtha combustion consumption by to the public,69.4729728,TJ,N2O,0.6,kg/TJ,41.68378368,kg +dd4971be-05f1-3ccb-8848-2e4d65ac7954,SESCO,II.1.1,Formosa,AR-P,annual,2019,naphtha combustion consumption by to the public,29.489829599999997,TJ,CO2,73300.0,kg/TJ,2161604.5096799997,kg +b87fd708-799f-376e-a1d8-d722ca70f2c5,SESCO,II.1.1,Formosa,AR-P,annual,2019,naphtha combustion consumption by to the public,29.489829599999997,TJ,CH4,3.0,kg/TJ,88.4694888,kg +5797b543-6615-303a-96ae-f59613e60f32,SESCO,II.1.1,Formosa,AR-P,annual,2019,naphtha combustion consumption by to the public,29.489829599999997,TJ,N2O,0.6,kg/TJ,17.69389776,kg +ce3349f9-33a3-3e5f-b1ad-06a4581343f0,SESCO,II.1.1,Jujuy,AR-Y,annual,2019,naphtha combustion consumption by to the public,9.950555999999999,TJ,CO2,73300.0,kg/TJ,729375.7547999999,kg +46e9a514-b867-3f15-9b80-ff849fbd046b,SESCO,II.1.1,Jujuy,AR-Y,annual,2019,naphtha combustion consumption by to the public,9.950555999999999,TJ,CH4,3.0,kg/TJ,29.851667999999997,kg +c459f0a1-ae61-3e09-a21f-0604cd4e8179,SESCO,II.1.1,Jujuy,AR-Y,annual,2019,naphtha combustion consumption by to the public,9.950555999999999,TJ,N2O,0.6,kg/TJ,5.970333599999999,kg +66d5297f-9e22-3051-9cd9-4c75fc129a61,SESCO,II.1.1,La Pampa,AR-L,annual,2019,naphtha combustion consumption by to the public,15.890736399999998,TJ,CO2,73300.0,kg/TJ,1164790.9781199999,kg +48d2c87e-e049-37db-8a8b-7c0cf69c487c,SESCO,II.1.1,La Pampa,AR-L,annual,2019,naphtha combustion consumption by to the public,15.890736399999998,TJ,CH4,3.0,kg/TJ,47.6722092,kg +88d0ce92-09f5-30de-a9bd-b25bce348747,SESCO,II.1.1,La Pampa,AR-L,annual,2019,naphtha combustion consumption by to the public,15.890736399999998,TJ,N2O,0.6,kg/TJ,9.534441839999998,kg +9782fe92-6e91-3f5d-ac2f-1a870d10316f,SESCO,II.1.1,La Rioja,AR-F,annual,2019,naphtha combustion consumption by to the public,5.276809999999999,TJ,CO2,73300.0,kg/TJ,386790.17299999995,kg +37826e9d-8595-3e77-aca3-3bfa2b2bb735,SESCO,II.1.1,La Rioja,AR-F,annual,2019,naphtha combustion consumption by to the public,5.276809999999999,TJ,CH4,3.0,kg/TJ,15.830429999999998,kg +d809ffc9-dd62-3460-bffa-3e12d006578e,SESCO,II.1.1,La Rioja,AR-F,annual,2019,naphtha combustion consumption by to the public,5.276809999999999,TJ,N2O,0.6,kg/TJ,3.1660859999999995,kg +f1d6da8a-2f33-3bcc-8be1-52b82fdff8ef,SESCO,II.1.1,Mendoza,AR-M,annual,2019,naphtha combustion consumption by to the public,38.4754832,TJ,CO2,73300.0,kg/TJ,2820252.91856,kg +94605c72-16fd-3a4e-b848-7dd491d741b4,SESCO,II.1.1,Mendoza,AR-M,annual,2019,naphtha combustion consumption by to the public,38.4754832,TJ,CH4,3.0,kg/TJ,115.4264496,kg +97ea413f-77bf-3d51-ae3f-4af8b30e9008,SESCO,II.1.1,Mendoza,AR-M,annual,2019,naphtha combustion consumption by to the public,38.4754832,TJ,N2O,0.6,kg/TJ,23.085289919999997,kg +59dd03de-bed2-3038-8d5a-cc22fe70c654,SESCO,II.1.1,Misiones,AR-N,annual,2019,naphtha combustion consumption by to the public,27.439411999999997,TJ,CO2,73300.0,kg/TJ,2011308.8996,kg +31ee8131-551e-360b-8c21-408212f7158f,SESCO,II.1.1,Misiones,AR-N,annual,2019,naphtha combustion consumption by to the public,27.439411999999997,TJ,CH4,3.0,kg/TJ,82.31823599999998,kg +3ac4a2d8-c6a7-3e84-a512-e11375f17e02,SESCO,II.1.1,Misiones,AR-N,annual,2019,naphtha combustion consumption by to the public,27.439411999999997,TJ,N2O,0.6,kg/TJ,16.463647199999997,kg +ba7d7741-13bc-31a3-b486-88df224d0db1,SESCO,II.1.1,Neuquén,AR-Q,annual,2019,naphtha combustion consumption by to the public,42.7873908,TJ,CO2,73300.0,kg/TJ,3136315.74564,kg +d1776b0c-4fac-39e0-af61-87e2c5827df7,SESCO,II.1.1,Neuquén,AR-Q,annual,2019,naphtha combustion consumption by to the public,42.7873908,TJ,CH4,3.0,kg/TJ,128.3621724,kg +a8e07b6b-195e-3a45-a585-eac8867f441b,SESCO,II.1.1,Neuquén,AR-Q,annual,2019,naphtha combustion consumption by to the public,42.7873908,TJ,N2O,0.6,kg/TJ,25.672434479999996,kg +313f725a-327d-3631-9ac3-a51d9c5c4feb,SESCO,II.1.1,Rio Negro,AR-R,annual,2019,naphtha combustion consumption by to the public,63.29156679999999,TJ,CO2,73300.0,kg/TJ,4639271.8464399995,kg +da627420-8df5-3f4b-923b-c233a9ca86ef,SESCO,II.1.1,Rio Negro,AR-R,annual,2019,naphtha combustion consumption by to the public,63.29156679999999,TJ,CH4,3.0,kg/TJ,189.87470039999997,kg +dc688daf-28b2-390a-9e28-6fb9333c517b,SESCO,II.1.1,Rio Negro,AR-R,annual,2019,naphtha combustion consumption by to the public,63.29156679999999,TJ,N2O,0.6,kg/TJ,37.974940079999996,kg +475e7153-79f0-3183-902d-bf66c83fdd79,SESCO,II.1.1,Salta,AR-A,annual,2019,naphtha combustion consumption by to the public,4.4325204000000005,TJ,CO2,73300.0,kg/TJ,324903.74532000005,kg +d0fdb61c-5e88-3ff3-88e4-9419f2e130ab,SESCO,II.1.1,Salta,AR-A,annual,2019,naphtha combustion consumption by to the public,4.4325204000000005,TJ,CH4,3.0,kg/TJ,13.2975612,kg +7081c1c7-c7ce-32e2-8aa9-d5981a9ce25c,SESCO,II.1.1,Salta,AR-A,annual,2019,naphtha combustion consumption by to the public,4.4325204000000005,TJ,N2O,0.6,kg/TJ,2.65951224,kg +e7431105-efaa-3d32-b0d0-2120875bdf26,SESCO,II.1.1,San Juan,AR-J,annual,2019,naphtha combustion consumption by to the public,15.830429999999998,TJ,CO2,73300.0,kg/TJ,1160370.5189999999,kg +94b50220-c536-3da6-99ab-6b1734e21c88,SESCO,II.1.1,San Juan,AR-J,annual,2019,naphtha combustion consumption by to the public,15.830429999999998,TJ,CH4,3.0,kg/TJ,47.49128999999999,kg +142d1671-2988-3f0b-9488-b87c3fda5d1f,SESCO,II.1.1,San Juan,AR-J,annual,2019,naphtha combustion consumption by to the public,15.830429999999998,TJ,N2O,0.6,kg/TJ,9.498257999999998,kg +ad53d81b-a7c9-3c29-9dc8-956a1624115b,SESCO,II.1.1,San Luis,AR-D,annual,2019,naphtha combustion consumption by to the public,28.494774,TJ,CO2,73300.0,kg/TJ,2088666.9342,kg +a0e76ad3-7e87-3d03-82bc-00e9abbd111c,SESCO,II.1.1,San Luis,AR-D,annual,2019,naphtha combustion consumption by to the public,28.494774,TJ,CH4,3.0,kg/TJ,85.48432199999999,kg +ff60001f-7e6e-3e1c-bb68-e1ed445d5bba,SESCO,II.1.1,San Luis,AR-D,annual,2019,naphtha combustion consumption by to the public,28.494774,TJ,N2O,0.6,kg/TJ,17.096864399999998,kg +a1011886-7a12-3f26-9c97-4cd115d74576,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2019,naphtha combustion consumption by to the public,25.509607199999998,TJ,CO2,73300.0,kg/TJ,1869854.20776,kg +77c12708-3d57-3075-9eba-6b8deef1826a,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2019,naphtha combustion consumption by to the public,25.509607199999998,TJ,CH4,3.0,kg/TJ,76.52882159999999,kg +c5138ec2-2383-3f71-878c-583b360aad4c,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2019,naphtha combustion consumption by to the public,25.509607199999998,TJ,N2O,0.6,kg/TJ,15.305764319999998,kg +cf3ca71f-d036-3261-a11c-012a01d7ec35,SESCO,II.1.1,Santa Fe,AR-S,annual,2019,naphtha combustion consumption by to the public,142.35325719999997,TJ,CO2,73300.0,kg/TJ,10434493.752759999,kg +2e0c590b-e94e-3f44-9930-63bb237a2629,SESCO,II.1.1,Santa Fe,AR-S,annual,2019,naphtha combustion consumption by to the public,142.35325719999997,TJ,CH4,3.0,kg/TJ,427.0597715999999,kg +e0c12d36-67b0-30be-bf38-b4d4cd0cd6f4,SESCO,II.1.1,Santa Fe,AR-S,annual,2019,naphtha combustion consumption by to the public,142.35325719999997,TJ,N2O,0.6,kg/TJ,85.41195431999998,kg +ccf6cabd-98a6-354a-b1b9-d57589ad0d0c,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2019,naphtha combustion consumption by to the public,21.830916799999997,TJ,CO2,73300.0,kg/TJ,1600206.2014399997,kg +b9816e4e-d02e-303e-b227-353170964b6c,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2019,naphtha combustion consumption by to the public,21.830916799999997,TJ,CH4,3.0,kg/TJ,65.49275039999999,kg +79faa785-236f-308e-8b9b-0e4623292211,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2019,naphtha combustion consumption by to the public,21.830916799999997,TJ,N2O,0.6,kg/TJ,13.098550079999997,kg +5127f16d-fa8d-3ca1-aae1-4d2414ff3d0d,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2019,naphtha combustion consumption by to the public,7.1463084,TJ,CO2,73300.0,kg/TJ,523824.40572,kg +661f16dd-47ba-326b-9517-8d22728b4c49,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2019,naphtha combustion consumption by to the public,7.1463084,TJ,CH4,3.0,kg/TJ,21.4389252,kg +fd24a927-efeb-31e4-87ff-c0cc615c53cd,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2019,naphtha combustion consumption by to the public,7.1463084,TJ,N2O,0.6,kg/TJ,4.287785039999999,kg +e161113c-17a4-3c53-aeb5-1f982142ed12,SESCO,II.1.1,Tucuman,AR-T,annual,2019,naphtha combustion consumption by to the public,1.5981196,TJ,CO2,73300.0,kg/TJ,117142.16668,kg +7063dc94-d75f-3866-9e0c-79ac6c355179,SESCO,II.1.1,Tucuman,AR-T,annual,2019,naphtha combustion consumption by to the public,1.5981196,TJ,CH4,3.0,kg/TJ,4.7943587999999995,kg +5df352ad-7bcb-3d10-ace9-7b0d98fdf63a,SESCO,II.1.1,Tucuman,AR-T,annual,2019,naphtha combustion consumption by to the public,1.5981196,TJ,N2O,0.6,kg/TJ,0.95887176,kg +40edfffd-7fef-39c0-a9d0-fe2e05a0633b,SESCO,II.1.1,Buenos Aires,AR-B,annual,2019,naphtha combustion consumption by freight transport,2.8344007999999996,TJ,CO2,73300.0,kg/TJ,207761.57863999996,kg +d256ff0e-d17a-3bc9-b011-5ca8cebce7c7,SESCO,II.1.1,Buenos Aires,AR-B,annual,2019,naphtha combustion consumption by freight transport,2.8344007999999996,TJ,CH4,3.0,kg/TJ,8.5032024,kg +288892ef-a359-36dd-bc33-203edd831f4c,SESCO,II.1.1,Buenos Aires,AR-B,annual,2019,naphtha combustion consumption by freight transport,2.8344007999999996,TJ,N2O,0.6,kg/TJ,1.7006404799999997,kg +b87e570d-a46e-3ef7-a9d5-bf215564a435,SESCO,II.1.1,Capital Federal,AR-C,annual,2019,naphtha combustion consumption by freight transport,1.3568939999999998,TJ,CO2,73300.0,kg/TJ,99460.33019999998,kg +29b8b016-8c61-335e-ae4f-9944614d6646,SESCO,II.1.1,Capital Federal,AR-C,annual,2019,naphtha combustion consumption by freight transport,1.3568939999999998,TJ,CH4,3.0,kg/TJ,4.070682,kg +a8109908-e60a-363c-a4a4-07bc2ec89a8c,SESCO,II.1.1,Capital Federal,AR-C,annual,2019,naphtha combustion consumption by freight transport,1.3568939999999998,TJ,N2O,0.6,kg/TJ,0.8141363999999999,kg +cd9f9730-0a11-3034-ab16-336b4dde7649,SESCO,II.1.1,Córdoba,AR-X,annual,2019,naphtha combustion consumption by freight transport,0.7538299999999999,TJ,CO2,73300.0,kg/TJ,55255.738999999994,kg +efecbe06-b718-3884-9f5f-b83f62f7d720,SESCO,II.1.1,Córdoba,AR-X,annual,2019,naphtha combustion consumption by freight transport,0.7538299999999999,TJ,CH4,3.0,kg/TJ,2.26149,kg +8f80e06e-c355-3655-b7c0-1bc49e3185c6,SESCO,II.1.1,Córdoba,AR-X,annual,2019,naphtha combustion consumption by freight transport,0.7538299999999999,TJ,N2O,0.6,kg/TJ,0.4522979999999999,kg +8dea8201-6bc5-3bf1-be91-0acc5af576e6,SESCO,II.1.1,Mendoza,AR-M,annual,2019,naphtha combustion consumption by freight transport,0.060306399999999996,TJ,CO2,73300.0,kg/TJ,4420.4591199999995,kg +8830b972-bc99-3257-b686-8a5da8077d97,SESCO,II.1.1,Mendoza,AR-M,annual,2019,naphtha combustion consumption by freight transport,0.060306399999999996,TJ,CH4,3.0,kg/TJ,0.1809192,kg +b61d4c60-f700-3f67-95c8-ae84d770a1fb,SESCO,II.1.1,Mendoza,AR-M,annual,2019,naphtha combustion consumption by freight transport,0.060306399999999996,TJ,N2O,0.6,kg/TJ,0.036183839999999995,kg +8a86f89e-eb30-3d35-9605-b328ac9b4f7b,SESCO,II.1.1,Salta,AR-A,annual,2019,naphtha combustion consumption by freight transport,0.0904596,TJ,CO2,73300.0,kg/TJ,6630.68868,kg +7e0c9a9f-6a2c-3d7c-8683-70d73e1a0924,SESCO,II.1.1,Salta,AR-A,annual,2019,naphtha combustion consumption by freight transport,0.0904596,TJ,CH4,3.0,kg/TJ,0.27137880000000003,kg +1951cbce-fa8d-336d-a20e-6fc7a73e8634,SESCO,II.1.1,Salta,AR-A,annual,2019,naphtha combustion consumption by freight transport,0.0904596,TJ,N2O,0.6,kg/TJ,0.05427576,kg +97de3918-eb5d-3ec5-9bc9-99e67350c361,SESCO,II.1.1,Santa Fe,AR-S,annual,2019,naphtha combustion consumption by freight transport,0.4221448,TJ,CO2,73300.0,kg/TJ,30943.21384,kg +7a09c034-4c11-3c8b-80a9-c01c15eb995f,SESCO,II.1.1,Santa Fe,AR-S,annual,2019,naphtha combustion consumption by freight transport,0.4221448,TJ,CH4,3.0,kg/TJ,1.2664344,kg +66b1f734-36a4-39e3-b7df-da5d0c4e1cfc,SESCO,II.1.1,Santa Fe,AR-S,annual,2019,naphtha combustion consumption by freight transport,0.4221448,TJ,N2O,0.6,kg/TJ,0.25328688,kg +c12be7f4-57bb-3d02-8c3a-1a857e4615a6,SESCO,II.1.1,Tucuman,AR-T,annual,2019,naphtha combustion consumption by freight transport,0.030153199999999998,TJ,CO2,73300.0,kg/TJ,2210.2295599999998,kg +047fbf6c-9120-3f32-8cf4-01f0ac5f9b2e,SESCO,II.1.1,Tucuman,AR-T,annual,2019,naphtha combustion consumption by freight transport,0.030153199999999998,TJ,CH4,3.0,kg/TJ,0.0904596,kg +ec38eecc-9e4a-31ca-837a-6ec5f3a3eb14,SESCO,II.1.1,Tucuman,AR-T,annual,2019,naphtha combustion consumption by freight transport,0.030153199999999998,TJ,N2O,0.6,kg/TJ,0.018091919999999997,kg +59197a31-f826-371d-9809-5b09efe1e4fe,SESCO,II.1.1,Buenos Aires,AR-B,annual,2019,naphtha combustion consumption by freight transport,1.7187323999999997,TJ,CO2,73300.0,kg/TJ,125983.08491999998,kg +26db78e0-4d47-3c1a-a4fd-14fcb397e3dc,SESCO,II.1.1,Buenos Aires,AR-B,annual,2019,naphtha combustion consumption by freight transport,1.7187323999999997,TJ,CH4,3.0,kg/TJ,5.156197199999999,kg +756a5427-0bcd-381c-bc6b-4c5eed1d4086,SESCO,II.1.1,Buenos Aires,AR-B,annual,2019,naphtha combustion consumption by freight transport,1.7187323999999997,TJ,N2O,0.6,kg/TJ,1.0312394399999998,kg +854c6b07-f559-31aa-abe4-b2a24b2674c1,SESCO,II.1.1,Capital Federal,AR-C,annual,2019,naphtha combustion consumption by freight transport,0.7538299999999999,TJ,CO2,73300.0,kg/TJ,55255.738999999994,kg +78dff9fe-fd9a-3d1d-9380-c3f28576e4fd,SESCO,II.1.1,Capital Federal,AR-C,annual,2019,naphtha combustion consumption by freight transport,0.7538299999999999,TJ,CH4,3.0,kg/TJ,2.26149,kg +9e4f126d-0afa-30f9-8fc8-7630859893f0,SESCO,II.1.1,Capital Federal,AR-C,annual,2019,naphtha combustion consumption by freight transport,0.7538299999999999,TJ,N2O,0.6,kg/TJ,0.4522979999999999,kg +f01dca86-c15e-3dc0-a05d-ce68d190e888,SESCO,II.1.1,Corrientes,AR-W,annual,2019,naphtha combustion consumption by freight transport,0.0904596,TJ,CO2,73300.0,kg/TJ,6630.68868,kg +0d0dd9d7-e913-30c9-a86a-9c92bab52fe1,SESCO,II.1.1,Corrientes,AR-W,annual,2019,naphtha combustion consumption by freight transport,0.0904596,TJ,CH4,3.0,kg/TJ,0.27137880000000003,kg +24af05b7-2a89-35d0-987c-3218088bae64,SESCO,II.1.1,Corrientes,AR-W,annual,2019,naphtha combustion consumption by freight transport,0.0904596,TJ,N2O,0.6,kg/TJ,0.05427576,kg +b24a8dcb-592a-3aa5-bd7f-e1fc88d82f06,SESCO,II.1.1,Córdoba,AR-X,annual,2019,naphtha combustion consumption by freight transport,0.48245119999999997,TJ,CO2,73300.0,kg/TJ,35363.672959999996,kg +eaa243fa-68be-3666-975c-55d4c818af08,SESCO,II.1.1,Córdoba,AR-X,annual,2019,naphtha combustion consumption by freight transport,0.48245119999999997,TJ,CH4,3.0,kg/TJ,1.4473536,kg +73b57739-2310-3226-b756-eeef75a64e32,SESCO,II.1.1,Córdoba,AR-X,annual,2019,naphtha combustion consumption by freight transport,0.48245119999999997,TJ,N2O,0.6,kg/TJ,0.28947071999999996,kg +4505ee4e-42b2-39bd-ba0d-fde78204d334,SESCO,II.1.1,Entre Rios,AR-E,annual,2019,naphtha combustion consumption by freight transport,0.12061279999999999,TJ,CO2,73300.0,kg/TJ,8840.918239999999,kg +ca3a465f-5dbf-3803-a5d9-c5dcd3e500a2,SESCO,II.1.1,Entre Rios,AR-E,annual,2019,naphtha combustion consumption by freight transport,0.12061279999999999,TJ,CH4,3.0,kg/TJ,0.3618384,kg +dd495c07-8d8a-3642-a7eb-3adb3344d750,SESCO,II.1.1,Entre Rios,AR-E,annual,2019,naphtha combustion consumption by freight transport,0.12061279999999999,TJ,N2O,0.6,kg/TJ,0.07236767999999999,kg +f9b953ff-3409-30fb-bd1c-bab2d4a861ab,SESCO,II.1.1,Santa Fe,AR-S,annual,2019,naphtha combustion consumption by freight transport,0.4522979999999999,TJ,CO2,73300.0,kg/TJ,33153.4434,kg +924a74a8-9e1b-39c8-a3cf-5c838b01eae1,SESCO,II.1.1,Santa Fe,AR-S,annual,2019,naphtha combustion consumption by freight transport,0.4522979999999999,TJ,CH4,3.0,kg/TJ,1.3568939999999998,kg +27cec95f-aa63-3c72-91f7-55a89760f359,SESCO,II.1.1,Santa Fe,AR-S,annual,2019,naphtha combustion consumption by freight transport,0.4522979999999999,TJ,N2O,0.6,kg/TJ,0.2713787999999999,kg +3d657dd3-61a0-3fd1-90ab-621dee230f22,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2019,naphtha combustion consumption by freight transport,0.030153199999999998,TJ,CO2,73300.0,kg/TJ,2210.2295599999998,kg +c37a6cd6-16cf-3dfa-9634-51555ff151ff,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2019,naphtha combustion consumption by freight transport,0.030153199999999998,TJ,CH4,3.0,kg/TJ,0.0904596,kg +dc14a0b3-83ad-38d8-a1e3-393ed073b71b,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2019,naphtha combustion consumption by freight transport,0.030153199999999998,TJ,N2O,0.6,kg/TJ,0.018091919999999997,kg +b6bf7f3b-0370-330d-91b9-5a93c32311bf,SESCO,II.1.1,Santa Fe,AR-S,annual,2019,naphtha combustion consumption by public passenger transport,0.0904596,TJ,CO2,73300.0,kg/TJ,6630.68868,kg +bc781855-b595-3f51-895b-c2047b61bf7e,SESCO,II.1.1,Santa Fe,AR-S,annual,2019,naphtha combustion consumption by public passenger transport,0.0904596,TJ,CH4,3.0,kg/TJ,0.27137880000000003,kg +7a946c66-6139-32b8-b5d0-b51a6eaa93c7,SESCO,II.1.1,Santa Fe,AR-S,annual,2019,naphtha combustion consumption by public passenger transport,0.0904596,TJ,N2O,0.6,kg/TJ,0.05427576,kg +88cead30-c01e-34f6-bbcc-2aafa783348c,SESCO,II.5.1,Córdoba,AR-X,annual,2019,naphtha combustion consumption by agriculture machines,2.5027156,TJ,CO2,73300.0,kg/TJ,183449.05348,kg +a371088e-8000-3fb6-8b6d-17d1c5bf5768,SESCO,II.5.1,Córdoba,AR-X,annual,2019,naphtha combustion consumption by agriculture machines,2.5027156,TJ,CH4,3.0,kg/TJ,7.5081468000000005,kg +1332b873-ba1c-363f-9e8d-14ab45e8c587,SESCO,II.5.1,Córdoba,AR-X,annual,2019,naphtha combustion consumption by agriculture machines,2.5027156,TJ,N2O,0.6,kg/TJ,1.5016293600000001,kg +a4f89d35-1be1-358d-b79e-f882a9e49bd2,SESCO,II.5.1,Santa Fe,AR-S,annual,2019,naphtha combustion consumption by agriculture machines,35.188784399999996,TJ,CO2,73300.0,kg/TJ,2579337.8965199995,kg +8ea09be1-b2aa-3f38-b152-377ec158e6d1,SESCO,II.5.1,Santa Fe,AR-S,annual,2019,naphtha combustion consumption by agriculture machines,35.188784399999996,TJ,CH4,3.0,kg/TJ,105.56635319999998,kg +9255e3f5-3589-39d6-996b-63125b9cffd6,SESCO,II.5.1,Santa Fe,AR-S,annual,2019,naphtha combustion consumption by agriculture machines,35.188784399999996,TJ,N2O,0.6,kg/TJ,21.113270639999996,kg +a8f661c7-61e2-36b3-9969-a86622923cf5,SESCO,II.5.1,Córdoba,AR-X,annual,2019,naphtha combustion consumption by agriculture machines,1.5076599999999998,TJ,CO2,73300.0,kg/TJ,110511.47799999999,kg +b6d8d7ad-cd29-386f-b9ea-af18f3732937,SESCO,II.5.1,Córdoba,AR-X,annual,2019,naphtha combustion consumption by agriculture machines,1.5076599999999998,TJ,CH4,3.0,kg/TJ,4.52298,kg +805569e5-4bec-34e5-99a3-6a3b1642dc21,SESCO,II.5.1,Córdoba,AR-X,annual,2019,naphtha combustion consumption by agriculture machines,1.5076599999999998,TJ,N2O,0.6,kg/TJ,0.9045959999999998,kg +eb847080-3550-30b6-977c-813fe4c64871,SESCO,II.5.1,Santa Fe,AR-S,annual,2019,naphtha combustion consumption by agriculture machines,5.367269599999999,TJ,CO2,73300.0,kg/TJ,393420.86168,kg +a4db188a-572f-3de5-aa14-65c211f2a260,SESCO,II.5.1,Santa Fe,AR-S,annual,2019,naphtha combustion consumption by agriculture machines,5.367269599999999,TJ,CH4,3.0,kg/TJ,16.101808799999997,kg +a0308fa4-7966-3c38-9cb6-d1b6e6900ee8,SESCO,II.5.1,Santa Fe,AR-S,annual,2019,naphtha combustion consumption by agriculture machines,5.367269599999999,TJ,N2O,0.6,kg/TJ,3.2203617599999994,kg +911aa67f-f8bb-3fc6-8ede-b65479207a73,SESCO,II.1.1,Buenos Aires,AR-B,annual,2019,naphtha combustion consumption by to the public,8127.252302399999,TJ,CO2,73300.0,kg/TJ,595727593.7659199,kg +74182409-6dd2-3fb7-aaf6-e8223031a32b,SESCO,II.1.1,Buenos Aires,AR-B,annual,2019,naphtha combustion consumption by to the public,8127.252302399999,TJ,CH4,3.0,kg/TJ,24381.756907199997,kg +700f1fb7-1928-3943-ac62-d66b31f58b73,SESCO,II.1.1,Buenos Aires,AR-B,annual,2019,naphtha combustion consumption by to the public,8127.252302399999,TJ,N2O,0.6,kg/TJ,4876.351381439999,kg +1cb93c5f-4cc1-31d0-9e04-fa1fe6297f3e,SESCO,II.1.1,Capital Federal,AR-C,annual,2019,naphtha combustion consumption by to the public,2395.8225059999995,TJ,CO2,73300.0,kg/TJ,175613789.68979996,kg +78025c26-bea9-3ee7-9e9e-293738933449,SESCO,II.1.1,Capital Federal,AR-C,annual,2019,naphtha combustion consumption by to the public,2395.8225059999995,TJ,CH4,3.0,kg/TJ,7187.467517999999,kg +a1acf916-c9ec-3ebd-ad20-ea7917093022,SESCO,II.1.1,Capital Federal,AR-C,annual,2019,naphtha combustion consumption by to the public,2395.8225059999995,TJ,N2O,0.6,kg/TJ,1437.4935035999997,kg +43fc61f7-b12f-38b2-ba3c-de7b6ac57ab2,SESCO,II.1.1,Catamarca,AR-K,annual,2019,naphtha combustion consumption by to the public,307.83401879999997,TJ,CO2,73300.0,kg/TJ,22564233.578039996,kg +fb5a08b6-2be0-3e02-b622-75cb873fcd58,SESCO,II.1.1,Catamarca,AR-K,annual,2019,naphtha combustion consumption by to the public,307.83401879999997,TJ,CH4,3.0,kg/TJ,923.5020563999999,kg +6b0eb613-6427-3231-8e8c-6b100eb2d8d0,SESCO,II.1.1,Catamarca,AR-K,annual,2019,naphtha combustion consumption by to the public,307.83401879999997,TJ,N2O,0.6,kg/TJ,184.70041127999997,kg +46dd14b5-ea46-367b-b998-ed861a39c72f,SESCO,II.1.1,Chaco,AR-H,annual,2019,naphtha combustion consumption by to the public,408.87739199999993,TJ,CO2,73300.0,kg/TJ,29970712.833599996,kg +428db19f-d32b-3418-8649-d6a39c8890c2,SESCO,II.1.1,Chaco,AR-H,annual,2019,naphtha combustion consumption by to the public,408.87739199999993,TJ,CH4,3.0,kg/TJ,1226.6321759999998,kg +af4cc9f4-7aee-3ade-8e78-4cbb82dd9286,SESCO,II.1.1,Chaco,AR-H,annual,2019,naphtha combustion consumption by to the public,408.87739199999993,TJ,N2O,0.6,kg/TJ,245.32643519999993,kg +7cae078c-e96e-32f8-a24f-aca9bbb3d0e7,SESCO,II.1.1,Chubut,AR-U,annual,2019,naphtha combustion consumption by to the public,1180.1359416,TJ,CO2,73300.0,kg/TJ,86503964.51928,kg +f43fedb5-2051-3f38-8a8f-988f416699fe,SESCO,II.1.1,Chubut,AR-U,annual,2019,naphtha combustion consumption by to the public,1180.1359416,TJ,CH4,3.0,kg/TJ,3540.4078248,kg +ed71b89c-783c-3eb3-82f3-54d42ca57b2c,SESCO,II.1.1,Chubut,AR-U,annual,2019,naphtha combustion consumption by to the public,1180.1359416,TJ,N2O,0.6,kg/TJ,708.08156496,kg +553c9f3a-9cc2-306e-97f8-13c789a17b5f,SESCO,II.1.1,Corrientes,AR-W,annual,2019,naphtha combustion consumption by to the public,527.6206936,TJ,CO2,73300.0,kg/TJ,38674596.84088,kg +94530c3d-7acb-39c3-a3ac-0ebba0345b75,SESCO,II.1.1,Corrientes,AR-W,annual,2019,naphtha combustion consumption by to the public,527.6206936,TJ,CH4,3.0,kg/TJ,1582.8620808,kg +ddb6a135-7c18-3cd6-8039-d6582fb50a8d,SESCO,II.1.1,Corrientes,AR-W,annual,2019,naphtha combustion consumption by to the public,527.6206936,TJ,N2O,0.6,kg/TJ,316.57241616,kg +14ac79aa-b555-336e-b36f-5c31cc9816c9,SESCO,II.1.1,Córdoba,AR-X,annual,2019,naphtha combustion consumption by to the public,2073.2134192,TJ,CO2,73300.0,kg/TJ,151966543.62736,kg +dfb0310c-ab5d-3094-bf11-8cc60aaa06eb,SESCO,II.1.1,Córdoba,AR-X,annual,2019,naphtha combustion consumption by to the public,2073.2134192,TJ,CH4,3.0,kg/TJ,6219.6402576,kg +d8565431-0099-3dc0-85cf-119acf10a3bd,SESCO,II.1.1,Córdoba,AR-X,annual,2019,naphtha combustion consumption by to the public,2073.2134192,TJ,N2O,0.6,kg/TJ,1243.9280515199998,kg +3af0f1fe-3779-3754-af9d-222e8922403a,SESCO,II.1.1,Entre Rios,AR-E,annual,2019,naphtha combustion consumption by to the public,798.9994935999999,TJ,CO2,73300.0,kg/TJ,58566662.88088,kg +b1b9a497-2139-33be-955c-60c262fa1e66,SESCO,II.1.1,Entre Rios,AR-E,annual,2019,naphtha combustion consumption by to the public,798.9994935999999,TJ,CH4,3.0,kg/TJ,2396.9984808,kg +aa5e9909-4bc2-39f8-89f6-ce72aad86fe2,SESCO,II.1.1,Entre Rios,AR-E,annual,2019,naphtha combustion consumption by to the public,798.9994935999999,TJ,N2O,0.6,kg/TJ,479.39969615999996,kg +41fd51bc-8888-3285-9046-9a30226179c3,SESCO,II.1.1,Formosa,AR-P,annual,2019,naphtha combustion consumption by to the public,465.05280359999995,TJ,CO2,73300.0,kg/TJ,34088370.503879994,kg +50e87214-c52b-3955-9fd7-45c0e98d11ed,SESCO,II.1.1,Formosa,AR-P,annual,2019,naphtha combustion consumption by to the public,465.05280359999995,TJ,CH4,3.0,kg/TJ,1395.1584107999997,kg +2e9530fb-7811-3131-b6dd-6b4dc0f8125b,SESCO,II.1.1,Formosa,AR-P,annual,2019,naphtha combustion consumption by to the public,465.05280359999995,TJ,N2O,0.6,kg/TJ,279.03168215999995,kg +da477387-e5ee-30bf-8d5b-44b38c559a0d,SESCO,II.1.1,Jujuy,AR-Y,annual,2019,naphtha combustion consumption by to the public,157.27909119999998,TJ,CO2,73300.0,kg/TJ,11528557.38496,kg +40addc7c-705e-3eb7-a2e6-0b4239a4bfb0,SESCO,II.1.1,Jujuy,AR-Y,annual,2019,naphtha combustion consumption by to the public,157.27909119999998,TJ,CH4,3.0,kg/TJ,471.83727359999995,kg +305961da-3e62-3e53-83fb-7041943c6541,SESCO,II.1.1,Jujuy,AR-Y,annual,2019,naphtha combustion consumption by to the public,157.27909119999998,TJ,N2O,0.6,kg/TJ,94.36745471999998,kg +24b94be8-eacd-3d72-b87f-4735c5ff300d,SESCO,II.1.1,La Pampa,AR-L,annual,2019,naphtha combustion consumption by to the public,137.70966439999998,TJ,CO2,73300.0,kg/TJ,10094118.400519999,kg +aa78acc7-3ecf-3fe9-9507-02eab710c33f,SESCO,II.1.1,La Pampa,AR-L,annual,2019,naphtha combustion consumption by to the public,137.70966439999998,TJ,CH4,3.0,kg/TJ,413.12899319999997,kg +76293211-a8e2-304e-95ad-68ecaee2dc69,SESCO,II.1.1,La Pampa,AR-L,annual,2019,naphtha combustion consumption by to the public,137.70966439999998,TJ,N2O,0.6,kg/TJ,82.62579863999999,kg +c021b6fd-dc3a-3a6e-9025-f830cb3681a7,SESCO,II.1.1,La Rioja,AR-F,annual,2019,naphtha combustion consumption by to the public,98.5406576,TJ,CO2,73300.0,kg/TJ,7223030.20208,kg +b5df5920-bcf3-39a8-ad42-cf7e550ba5dc,SESCO,II.1.1,La Rioja,AR-F,annual,2019,naphtha combustion consumption by to the public,98.5406576,TJ,CH4,3.0,kg/TJ,295.6219728,kg +c9176531-48a2-38c1-b533-6b3b0f5fd09d,SESCO,II.1.1,La Rioja,AR-F,annual,2019,naphtha combustion consumption by to the public,98.5406576,TJ,N2O,0.6,kg/TJ,59.12439456,kg +194c66ba-fdab-3f9f-8891-c48df45a801e,SESCO,II.1.1,Mendoza,AR-M,annual,2019,naphtha combustion consumption by to the public,503.25690799999995,TJ,CO2,73300.0,kg/TJ,36888731.3564,kg +44f50558-0214-3c69-8f23-3c94dda7f4fe,SESCO,II.1.1,Mendoza,AR-M,annual,2019,naphtha combustion consumption by to the public,503.25690799999995,TJ,CH4,3.0,kg/TJ,1509.770724,kg +04f220e6-a908-3f9d-bb28-4622243383d3,SESCO,II.1.1,Mendoza,AR-M,annual,2019,naphtha combustion consumption by to the public,503.25690799999995,TJ,N2O,0.6,kg/TJ,301.95414479999994,kg +fc4a68c1-7b41-3b7e-b86c-22d13746d35a,SESCO,II.1.1,Misiones,AR-N,annual,2019,naphtha combustion consumption by to the public,727.5062564,TJ,CO2,73300.0,kg/TJ,53326208.594119996,kg +f76b03eb-ca24-3138-8fd6-5fbd69cb91a0,SESCO,II.1.1,Misiones,AR-N,annual,2019,naphtha combustion consumption by to the public,727.5062564,TJ,CH4,3.0,kg/TJ,2182.5187692,kg +e25c3f8e-bf87-3607-9532-62b1c8b572e3,SESCO,II.1.1,Misiones,AR-N,annual,2019,naphtha combustion consumption by to the public,727.5062564,TJ,N2O,0.6,kg/TJ,436.50375384,kg +1e17c1d0-d880-34cd-a734-fc72ea693327,SESCO,II.1.1,Neuquén,AR-Q,annual,2019,naphtha combustion consumption by to the public,394.46416239999996,TJ,CO2,73300.0,kg/TJ,28914223.103919998,kg +0d9452c6-e4e7-3279-a3a9-3e63c5c32611,SESCO,II.1.1,Neuquén,AR-Q,annual,2019,naphtha combustion consumption by to the public,394.46416239999996,TJ,CH4,3.0,kg/TJ,1183.3924871999998,kg +03f428c4-9253-3dfe-a940-ee6674495763,SESCO,II.1.1,Neuquén,AR-Q,annual,2019,naphtha combustion consumption by to the public,394.46416239999996,TJ,N2O,0.6,kg/TJ,236.67849743999997,kg +88811c69-ccd1-310e-9fee-9f2b08762685,SESCO,II.1.1,Rio Negro,AR-R,annual,2019,naphtha combustion consumption by to the public,506.8149856,TJ,CO2,73300.0,kg/TJ,37149538.44448,kg +c21add17-05ee-3505-a358-43942913e6f8,SESCO,II.1.1,Rio Negro,AR-R,annual,2019,naphtha combustion consumption by to the public,506.8149856,TJ,CH4,3.0,kg/TJ,1520.4449568,kg +8fd2d0e4-7f74-3769-976b-c5318eb4fee6,SESCO,II.1.1,Rio Negro,AR-R,annual,2019,naphtha combustion consumption by to the public,506.8149856,TJ,N2O,0.6,kg/TJ,304.08899135999997,kg +58e93b9c-9740-3c88-adc6-772233cb7446,SESCO,II.1.1,Salta,AR-A,annual,2019,naphtha combustion consumption by to the public,133.126378,TJ,CO2,73300.0,kg/TJ,9758163.507399999,kg +d49137e3-1e69-3210-892f-8b42ee73bc4a,SESCO,II.1.1,Salta,AR-A,annual,2019,naphtha combustion consumption by to the public,133.126378,TJ,CH4,3.0,kg/TJ,399.37913399999996,kg +cd52a05d-9bb2-30da-9d86-db36f81f9860,SESCO,II.1.1,Salta,AR-A,annual,2019,naphtha combustion consumption by to the public,133.126378,TJ,N2O,0.6,kg/TJ,79.87582679999998,kg +490adb8b-aecf-3751-b06e-3b87713f3291,SESCO,II.1.1,San Juan,AR-J,annual,2019,naphtha combustion consumption by to the public,179.71307199999998,TJ,CO2,73300.0,kg/TJ,13172968.177599998,kg +74149cf4-4f34-3af4-82a7-c179e84450ec,SESCO,II.1.1,San Juan,AR-J,annual,2019,naphtha combustion consumption by to the public,179.71307199999998,TJ,CH4,3.0,kg/TJ,539.1392159999999,kg +5e6522b8-68cd-3420-bccd-c0e6c0b8e62c,SESCO,II.1.1,San Juan,AR-J,annual,2019,naphtha combustion consumption by to the public,179.71307199999998,TJ,N2O,0.6,kg/TJ,107.82784319999999,kg +7348c6a3-86e2-362f-8bf3-c71b513ee3c4,SESCO,II.1.1,San Luis,AR-D,annual,2019,naphtha combustion consumption by to the public,454.3182643999999,TJ,CO2,73300.0,kg/TJ,33301528.780519996,kg +38944230-b899-3026-b29b-16ad1d8a9bc6,SESCO,II.1.1,San Luis,AR-D,annual,2019,naphtha combustion consumption by to the public,454.3182643999999,TJ,CH4,3.0,kg/TJ,1362.9547931999998,kg +021d484f-385f-33d9-97f3-402419263c61,SESCO,II.1.1,San Luis,AR-D,annual,2019,naphtha combustion consumption by to the public,454.3182643999999,TJ,N2O,0.6,kg/TJ,272.59095863999994,kg +ebbcd6c6-629a-332a-838a-1cf51504df77,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2019,naphtha combustion consumption by to the public,610.7832191999998,TJ,CO2,73300.0,kg/TJ,44770409.96735999,kg +03f67059-65e3-35c7-a725-537afa420f0c,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2019,naphtha combustion consumption by to the public,610.7832191999998,TJ,CH4,3.0,kg/TJ,1832.3496575999995,kg +5d49f848-61d1-30a1-80a3-110b35d289d5,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2019,naphtha combustion consumption by to the public,610.7832191999998,TJ,N2O,0.6,kg/TJ,366.4699315199999,kg +d7202bea-8f3f-3647-a56a-4bcba2ad5e3c,SESCO,II.1.1,Santa Fe,AR-S,annual,2019,naphtha combustion consumption by to the public,2115.8198908,TJ,CO2,73300.0,kg/TJ,155089597.99564,kg +238636fc-f86a-37ff-83bc-733ef0723582,SESCO,II.1.1,Santa Fe,AR-S,annual,2019,naphtha combustion consumption by to the public,2115.8198908,TJ,CH4,3.0,kg/TJ,6347.4596724,kg +97f48dd6-4cf4-3f28-a1fb-257dd05c997a,SESCO,II.1.1,Santa Fe,AR-S,annual,2019,naphtha combustion consumption by to the public,2115.8198908,TJ,N2O,0.6,kg/TJ,1269.4919344799998,kg +795db49d-7c0a-347f-90a9-84a0df7d3819,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2019,naphtha combustion consumption by to the public,300.0544932,TJ,CO2,73300.0,kg/TJ,21993994.35156,kg +8e7d40f1-c008-3803-b8ab-b0791846e441,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2019,naphtha combustion consumption by to the public,300.0544932,TJ,CH4,3.0,kg/TJ,900.1634796000001,kg +fac43a91-a59d-375a-87cd-223be0b84666,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2019,naphtha combustion consumption by to the public,300.0544932,TJ,N2O,0.6,kg/TJ,180.03269592,kg +bb473c64-849e-3a37-bd50-db7a3a306323,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2019,naphtha combustion consumption by to the public,109.69734159999999,TJ,CO2,73300.0,kg/TJ,8040815.139279999,kg +c5098b4d-f1f3-3b67-956b-296a175d71a3,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2019,naphtha combustion consumption by to the public,109.69734159999999,TJ,CH4,3.0,kg/TJ,329.0920248,kg +f80ad656-3a1e-3649-ad4f-e032a9824f88,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2019,naphtha combustion consumption by to the public,109.69734159999999,TJ,N2O,0.6,kg/TJ,65.81840496,kg +495c5575-158c-3e90-a7f7-7a93cf3037c0,SESCO,II.1.1,Tucuman,AR-T,annual,2019,naphtha combustion consumption by to the public,91.93710679999998,TJ,CO2,73300.0,kg/TJ,6738989.928439999,kg +3558a97b-e3db-3b99-8f24-4dd07429743f,SESCO,II.1.1,Tucuman,AR-T,annual,2019,naphtha combustion consumption by to the public,91.93710679999998,TJ,CH4,3.0,kg/TJ,275.81132039999994,kg +88d590ca-54d4-37ac-ade1-69baccf9e5ee,SESCO,II.1.1,Tucuman,AR-T,annual,2019,naphtha combustion consumption by to the public,91.93710679999998,TJ,N2O,0.6,kg/TJ,55.162264079999986,kg +7191db50-6118-3e25-9362-ff2cc27f6813,SESCO,II.1.1,Buenos Aires,AR-B,annual,2019,naphtha combustion consumption by to the public,1674.3770428,TJ,CO2,73300.0,kg/TJ,122731837.23724,kg +ecf089cb-5212-3552-8959-2b88de7ac5bc,SESCO,II.1.1,Buenos Aires,AR-B,annual,2019,naphtha combustion consumption by to the public,1674.3770428,TJ,CH4,3.0,kg/TJ,5023.1311284,kg +cd05ebe8-eead-34a1-ac20-be1363038a93,SESCO,II.1.1,Buenos Aires,AR-B,annual,2019,naphtha combustion consumption by to the public,1674.3770428,TJ,N2O,0.6,kg/TJ,1004.62622568,kg +c20c0959-8ac8-35df-b389-0fc427206cc5,SESCO,II.1.1,Capital Federal,AR-C,annual,2019,naphtha combustion consumption by to the public,793.179926,TJ,CO2,73300.0,kg/TJ,58140088.5758,kg +b1de0af1-cded-3896-8234-c9c30fc9017a,SESCO,II.1.1,Capital Federal,AR-C,annual,2019,naphtha combustion consumption by to the public,793.179926,TJ,CH4,3.0,kg/TJ,2379.5397780000003,kg +fba16094-695c-30a4-9cfb-6a7b4fc355d7,SESCO,II.1.1,Capital Federal,AR-C,annual,2019,naphtha combustion consumption by to the public,793.179926,TJ,N2O,0.6,kg/TJ,475.9079556,kg +5441fc98-b23d-32a4-83e4-ba5929df3592,SESCO,II.1.1,Catamarca,AR-K,annual,2019,naphtha combustion consumption by to the public,73.81503359999999,TJ,CO2,73300.0,kg/TJ,5410641.96288,kg +03e528d2-6bb7-3f4b-bf29-cc85e27c9ae9,SESCO,II.1.1,Catamarca,AR-K,annual,2019,naphtha combustion consumption by to the public,73.81503359999999,TJ,CH4,3.0,kg/TJ,221.44510079999998,kg +fd635be7-921d-3706-8de4-360108ead1d7,SESCO,II.1.1,Catamarca,AR-K,annual,2019,naphtha combustion consumption by to the public,73.81503359999999,TJ,N2O,0.6,kg/TJ,44.28902015999999,kg +a5e36ac8-101a-3628-9f25-b6e40b0d4d46,SESCO,II.1.1,Chaco,AR-H,annual,2019,naphtha combustion consumption by to the public,62.175898399999994,TJ,CO2,73300.0,kg/TJ,4557493.35272,kg +d2331c42-59e6-39cf-a035-9336f4e0bf4f,SESCO,II.1.1,Chaco,AR-H,annual,2019,naphtha combustion consumption by to the public,62.175898399999994,TJ,CH4,3.0,kg/TJ,186.52769519999998,kg +f13cc3f1-1bab-3f79-9041-f2075ab25594,SESCO,II.1.1,Chaco,AR-H,annual,2019,naphtha combustion consumption by to the public,62.175898399999994,TJ,N2O,0.6,kg/TJ,37.30553903999999,kg +e3a35dbd-36f8-3d65-a200-553691b3b852,SESCO,II.1.1,Chubut,AR-U,annual,2019,naphtha combustion consumption by to the public,195.18166359999998,TJ,CO2,73300.0,kg/TJ,14306815.941879999,kg +0de47633-2ac2-3594-b748-e1f5339cbfbd,SESCO,II.1.1,Chubut,AR-U,annual,2019,naphtha combustion consumption by to the public,195.18166359999998,TJ,CH4,3.0,kg/TJ,585.5449907999999,kg +1e30e30c-468a-339f-94bf-ae9df33b3784,SESCO,II.1.1,Chubut,AR-U,annual,2019,naphtha combustion consumption by to the public,195.18166359999998,TJ,N2O,0.6,kg/TJ,117.10899815999998,kg +aa19cf70-c3fe-3090-9c86-2a68d304546c,SESCO,II.1.1,Corrientes,AR-W,annual,2019,naphtha combustion consumption by to the public,91.75618759999999,TJ,CO2,73300.0,kg/TJ,6725728.55108,kg +0235243c-a53f-3d82-81ff-636e790462e0,SESCO,II.1.1,Corrientes,AR-W,annual,2019,naphtha combustion consumption by to the public,91.75618759999999,TJ,CH4,3.0,kg/TJ,275.2685628,kg +e91e0047-9e77-39d3-bedc-b9c0706a54a0,SESCO,II.1.1,Corrientes,AR-W,annual,2019,naphtha combustion consumption by to the public,91.75618759999999,TJ,N2O,0.6,kg/TJ,55.053712559999994,kg +a39387cc-3c5f-38ee-a8c7-cdc8f95e5748,SESCO,II.1.1,Córdoba,AR-X,annual,2019,naphtha combustion consumption by to the public,425.64257119999996,TJ,CO2,73300.0,kg/TJ,31199600.46896,kg +e80b6e9d-0be1-30bf-aa19-11fb606566e3,SESCO,II.1.1,Córdoba,AR-X,annual,2019,naphtha combustion consumption by to the public,425.64257119999996,TJ,CH4,3.0,kg/TJ,1276.9277135999998,kg +6347c81a-1459-3007-b8b2-c16ecfdd969c,SESCO,II.1.1,Córdoba,AR-X,annual,2019,naphtha combustion consumption by to the public,425.64257119999996,TJ,N2O,0.6,kg/TJ,255.38554271999996,kg +080c2413-dba9-3c3f-b75a-5d76f4c3e437,SESCO,II.1.1,Entre Rios,AR-E,annual,2019,naphtha combustion consumption by to the public,167.50102599999997,TJ,CO2,73300.0,kg/TJ,12277825.205799997,kg +77db89e7-692b-395f-880d-2c7ae8b9a5dd,SESCO,II.1.1,Entre Rios,AR-E,annual,2019,naphtha combustion consumption by to the public,167.50102599999997,TJ,CH4,3.0,kg/TJ,502.5030779999999,kg +92433bb5-06f7-3b51-8736-7ba60421d287,SESCO,II.1.1,Entre Rios,AR-E,annual,2019,naphtha combustion consumption by to the public,167.50102599999997,TJ,N2O,0.6,kg/TJ,100.50061559999997,kg +7960965e-37be-3f43-a8d8-82aac68b9b62,SESCO,II.1.1,Formosa,AR-P,annual,2019,naphtha combustion consumption by to the public,108.18968159999999,TJ,CO2,73300.0,kg/TJ,7930303.661279999,kg +381a5368-5f91-3ff4-8ebd-1467ff41d910,SESCO,II.1.1,Formosa,AR-P,annual,2019,naphtha combustion consumption by to the public,108.18968159999999,TJ,CH4,3.0,kg/TJ,324.5690448,kg +5aebf0d0-aefb-3778-9d73-7833dad3c7d0,SESCO,II.1.1,Formosa,AR-P,annual,2019,naphtha combustion consumption by to the public,108.18968159999999,TJ,N2O,0.6,kg/TJ,64.91380895999998,kg +ae7a6841-6f0c-38a3-b260-13bfdcf671a7,SESCO,II.1.1,Jujuy,AR-Y,annual,2019,naphtha combustion consumption by to the public,29.550135999999995,TJ,CO2,73300.0,kg/TJ,2166024.9687999994,kg +1aca8c6f-fcf3-32a0-a33d-dab008579521,SESCO,II.1.1,Jujuy,AR-Y,annual,2019,naphtha combustion consumption by to the public,29.550135999999995,TJ,CH4,3.0,kg/TJ,88.65040799999998,kg +24da90de-97b3-3978-ba18-a5c1aaf0e219,SESCO,II.1.1,Jujuy,AR-Y,annual,2019,naphtha combustion consumption by to the public,29.550135999999995,TJ,N2O,0.6,kg/TJ,17.730081599999995,kg +cab7c38c-76e6-3771-b7c7-74beaea188f3,SESCO,II.1.1,La Pampa,AR-L,annual,2019,naphtha combustion consumption by to the public,38.50563639999999,TJ,CO2,73300.0,kg/TJ,2822463.1481199996,kg +8fca916f-2b37-3660-b220-951b693148d7,SESCO,II.1.1,La Pampa,AR-L,annual,2019,naphtha combustion consumption by to the public,38.50563639999999,TJ,CH4,3.0,kg/TJ,115.51690919999999,kg +e8219382-0e4c-3f8c-b221-159e1503c425,SESCO,II.1.1,La Pampa,AR-L,annual,2019,naphtha combustion consumption by to the public,38.50563639999999,TJ,N2O,0.6,kg/TJ,23.103381839999994,kg +fc6d1c75-0e41-38c5-9b5d-0d49ebb4be82,SESCO,II.1.1,La Rioja,AR-F,annual,2019,naphtha combustion consumption by to the public,16.5239536,TJ,CO2,73300.0,kg/TJ,1211205.79888,kg +0bae7953-e016-3e2d-8893-5e4a031edc06,SESCO,II.1.1,La Rioja,AR-F,annual,2019,naphtha combustion consumption by to the public,16.5239536,TJ,CH4,3.0,kg/TJ,49.571860799999996,kg +cc7077ef-923f-316e-86a0-b62ab75e64c8,SESCO,II.1.1,La Rioja,AR-F,annual,2019,naphtha combustion consumption by to the public,16.5239536,TJ,N2O,0.6,kg/TJ,9.91437216,kg +92837ff5-6a13-3413-ad1e-0665cf93e47e,SESCO,II.1.1,Mendoza,AR-M,annual,2019,naphtha combustion consumption by to the public,133.78974839999998,TJ,CO2,73300.0,kg/TJ,9806788.557719998,kg +83500af2-2fab-38cb-9a22-dcb968b4c501,SESCO,II.1.1,Mendoza,AR-M,annual,2019,naphtha combustion consumption by to the public,133.78974839999998,TJ,CH4,3.0,kg/TJ,401.3692451999999,kg +2bbdcb62-010e-31cf-98e5-6c7a57f42d32,SESCO,II.1.1,Mendoza,AR-M,annual,2019,naphtha combustion consumption by to the public,133.78974839999998,TJ,N2O,0.6,kg/TJ,80.27384903999999,kg +dfe48a5f-08ab-3816-89ce-bc8adfa73bb1,SESCO,II.1.1,Misiones,AR-N,annual,2019,naphtha combustion consumption by to the public,85.12248359999998,TJ,CO2,73300.0,kg/TJ,6239478.047879999,kg +7ab3b798-d205-3b02-924a-81a405a637cd,SESCO,II.1.1,Misiones,AR-N,annual,2019,naphtha combustion consumption by to the public,85.12248359999998,TJ,CH4,3.0,kg/TJ,255.36745079999994,kg +919f073b-60f1-38ca-af79-91c1c3826c7e,SESCO,II.1.1,Misiones,AR-N,annual,2019,naphtha combustion consumption by to the public,85.12248359999998,TJ,N2O,0.6,kg/TJ,51.073490159999984,kg +451b1f08-2e0c-32a1-a5b5-0c1312e8e658,SESCO,II.1.1,Neuquén,AR-Q,annual,2019,naphtha combustion consumption by to the public,141.9009592,TJ,CO2,73300.0,kg/TJ,10401340.30936,kg +08c05f40-d9ef-3dcf-8c8e-c712485d649c,SESCO,II.1.1,Neuquén,AR-Q,annual,2019,naphtha combustion consumption by to the public,141.9009592,TJ,CH4,3.0,kg/TJ,425.70287759999997,kg +d113b519-0dea-3e7a-99a8-05f16eccb0bb,SESCO,II.1.1,Neuquén,AR-Q,annual,2019,naphtha combustion consumption by to the public,141.9009592,TJ,N2O,0.6,kg/TJ,85.14057551999998,kg +6397c896-4d26-3b13-874a-1f592c58dda1,SESCO,II.1.1,Rio Negro,AR-R,annual,2019,naphtha combustion consumption by to the public,144.283062,TJ,CO2,73300.0,kg/TJ,10575948.444600001,kg +2d5f7ee6-d049-384e-8f46-0d9a18f6d92b,SESCO,II.1.1,Rio Negro,AR-R,annual,2019,naphtha combustion consumption by to the public,144.283062,TJ,CH4,3.0,kg/TJ,432.84918600000003,kg +7e7b0750-63fa-3edd-b217-54eb6e749c2f,SESCO,II.1.1,Rio Negro,AR-R,annual,2019,naphtha combustion consumption by to the public,144.283062,TJ,N2O,0.6,kg/TJ,86.5698372,kg +8a2e90d3-f483-332c-8138-ec1942c655e5,SESCO,II.1.1,Salta,AR-A,annual,2019,naphtha combustion consumption by to the public,16.4636472,TJ,CO2,73300.0,kg/TJ,1206785.3397600001,kg +92067699-a1bf-327f-af83-7f34b5551cdb,SESCO,II.1.1,Salta,AR-A,annual,2019,naphtha combustion consumption by to the public,16.4636472,TJ,CH4,3.0,kg/TJ,49.390941600000005,kg +df1f0898-b7a1-3a55-a46d-f894773267b3,SESCO,II.1.1,Salta,AR-A,annual,2019,naphtha combustion consumption by to the public,16.4636472,TJ,N2O,0.6,kg/TJ,9.87818832,kg +cc8f9bbb-7742-3750-b6b5-ba3b68f39383,SESCO,II.1.1,San Juan,AR-J,annual,2019,naphtha combustion consumption by to the public,31.660859999999996,TJ,CO2,73300.0,kg/TJ,2320741.0379999997,kg +02b34c90-d6e7-3656-b0e3-5f36eeb6c111,SESCO,II.1.1,San Juan,AR-J,annual,2019,naphtha combustion consumption by to the public,31.660859999999996,TJ,CH4,3.0,kg/TJ,94.98257999999998,kg +0dbf6e62-d12c-3735-9024-6640a2a82549,SESCO,II.1.1,San Juan,AR-J,annual,2019,naphtha combustion consumption by to the public,31.660859999999996,TJ,N2O,0.6,kg/TJ,18.996515999999996,kg +c930593b-163b-3547-8669-4cbfb714ba59,SESCO,II.1.1,San Luis,AR-D,annual,2019,naphtha combustion consumption by to the public,81.8056316,TJ,CO2,73300.0,kg/TJ,5996352.796279999,kg +8a8d2ea0-4ea4-302c-a86e-14c05796b0c3,SESCO,II.1.1,San Luis,AR-D,annual,2019,naphtha combustion consumption by to the public,81.8056316,TJ,CH4,3.0,kg/TJ,245.4168948,kg +aea684af-d343-31d3-b9ee-95dc07bb8946,SESCO,II.1.1,San Luis,AR-D,annual,2019,naphtha combustion consumption by to the public,81.8056316,TJ,N2O,0.6,kg/TJ,49.08337896,kg +64fbf9d6-e30f-3aa7-8ffe-cb0cfbd2776f,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2019,naphtha combustion consumption by to the public,73.9959528,TJ,CO2,73300.0,kg/TJ,5423903.34024,kg +ccced709-3215-32a0-845d-3d894b1114bc,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2019,naphtha combustion consumption by to the public,73.9959528,TJ,CH4,3.0,kg/TJ,221.9878584,kg +aa73536f-bcb9-3a7d-b036-1bdcddf00119,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2019,naphtha combustion consumption by to the public,73.9959528,TJ,N2O,0.6,kg/TJ,44.39757168,kg +b0a9e891-d4c4-304a-bf8b-edf3c28aef93,SESCO,II.1.1,Santa Fe,AR-S,annual,2019,naphtha combustion consumption by to the public,486.00927759999996,TJ,CO2,73300.0,kg/TJ,35624480.04808,kg +a4ae1f0c-72b6-33b5-bf7c-4918367b8e84,SESCO,II.1.1,Santa Fe,AR-S,annual,2019,naphtha combustion consumption by to the public,486.00927759999996,TJ,CH4,3.0,kg/TJ,1458.0278328,kg +37c4970a-09ce-3e52-9c7b-7ff51f60931b,SESCO,II.1.1,Santa Fe,AR-S,annual,2019,naphtha combustion consumption by to the public,486.00927759999996,TJ,N2O,0.6,kg/TJ,291.60556655999994,kg +77126774-85e8-3659-9aae-4ce8b8ce649f,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2019,naphtha combustion consumption by to the public,74.176872,TJ,CO2,73300.0,kg/TJ,5437164.7176,kg +9fbe6726-5fd4-30fa-9848-19f7b2cd1aaa,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2019,naphtha combustion consumption by to the public,74.176872,TJ,CH4,3.0,kg/TJ,222.530616,kg +ccb321aa-2e84-305c-adc7-a9547ae5fc06,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2019,naphtha combustion consumption by to the public,74.176872,TJ,N2O,0.6,kg/TJ,44.5061232,kg +0cb62387-2318-351e-88cc-75848b3d2180,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2019,naphtha combustion consumption by to the public,21.921376399999996,TJ,CO2,73300.0,kg/TJ,1606836.8901199996,kg +a89cd31e-4c2c-3ee9-a10b-d39d0dc8c0a9,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2019,naphtha combustion consumption by to the public,21.921376399999996,TJ,CH4,3.0,kg/TJ,65.76412919999999,kg +95ef44d5-f563-3a2d-a557-e7b8c9a383b7,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2019,naphtha combustion consumption by to the public,21.921376399999996,TJ,N2O,0.6,kg/TJ,13.152825839999997,kg +2a41cb46-286c-3667-83cc-eb7ce19ccc7f,SESCO,II.1.1,Tucuman,AR-T,annual,2019,naphtha combustion consumption by to the public,11.9708204,TJ,CO2,73300.0,kg/TJ,877461.1353199999,kg +dbe1eb8e-2d96-3ea3-b9d6-12f351baa35a,SESCO,II.1.1,Tucuman,AR-T,annual,2019,naphtha combustion consumption by to the public,11.9708204,TJ,CH4,3.0,kg/TJ,35.912461199999996,kg +650a7913-131b-3b3a-a26c-cf420f7cf4a6,SESCO,II.1.1,Tucuman,AR-T,annual,2019,naphtha combustion consumption by to the public,11.9708204,TJ,N2O,0.6,kg/TJ,7.182492239999999,kg +15d82659-141b-3260-843b-688ba8de0fce,SESCO,II.1.1,Buenos Aires,AR-B,annual,2019,naphtha combustion consumption by freight transport,9.7394836,TJ,CO2,73300.0,kg/TJ,713904.14788,kg +e3394ee1-4e2d-35cd-ae93-43de8848415f,SESCO,II.1.1,Buenos Aires,AR-B,annual,2019,naphtha combustion consumption by freight transport,9.7394836,TJ,CH4,3.0,kg/TJ,29.2184508,kg +4dfd6c66-eaa4-3db5-b1c9-d3d7a308ab75,SESCO,II.1.1,Buenos Aires,AR-B,annual,2019,naphtha combustion consumption by freight transport,9.7394836,TJ,N2O,0.6,kg/TJ,5.8436901599999995,kg +35a4c64f-1148-39eb-aab5-88b9406e9ffd,SESCO,II.1.1,Capital Federal,AR-C,annual,2019,naphtha combustion consumption by freight transport,4.4626736,TJ,CO2,73300.0,kg/TJ,327113.97488,kg +911bb426-16ed-36a7-b7ee-442076ba3cec,SESCO,II.1.1,Capital Federal,AR-C,annual,2019,naphtha combustion consumption by freight transport,4.4626736,TJ,CH4,3.0,kg/TJ,13.3880208,kg +6cb0fe14-8049-32b1-94c1-efc783b32eb1,SESCO,II.1.1,Capital Federal,AR-C,annual,2019,naphtha combustion consumption by freight transport,4.4626736,TJ,N2O,0.6,kg/TJ,2.6776041599999996,kg +dd684e87-5fe2-303a-86a7-214686f8371a,SESCO,II.1.1,Córdoba,AR-X,annual,2019,naphtha combustion consumption by freight transport,1.3870472,TJ,CO2,73300.0,kg/TJ,101670.55976,kg +e20b77e7-48b6-3240-be63-a3348684dccb,SESCO,II.1.1,Córdoba,AR-X,annual,2019,naphtha combustion consumption by freight transport,1.3870472,TJ,CH4,3.0,kg/TJ,4.1611416000000006,kg +dd7a37de-9345-3f43-8578-30d1ff61131e,SESCO,II.1.1,Córdoba,AR-X,annual,2019,naphtha combustion consumption by freight transport,1.3870472,TJ,N2O,0.6,kg/TJ,0.83222832,kg +cde4ffc9-988b-3f8e-b3a9-0f012c953627,SESCO,II.1.1,Entre Rios,AR-E,annual,2019,naphtha combustion consumption by freight transport,0.2713788,TJ,CO2,73300.0,kg/TJ,19892.066039999998,kg +36b4fa6a-3a72-3000-9318-a5715dcb7369,SESCO,II.1.1,Entre Rios,AR-E,annual,2019,naphtha combustion consumption by freight transport,0.2713788,TJ,CH4,3.0,kg/TJ,0.8141364,kg +d89bdfbe-3057-3be0-8f7b-613c7b8fcb0d,SESCO,II.1.1,Entre Rios,AR-E,annual,2019,naphtha combustion consumption by freight transport,0.2713788,TJ,N2O,0.6,kg/TJ,0.16282728,kg +76ebe90c-ce5e-3136-956f-403a88b3cf4e,SESCO,II.1.1,Mendoza,AR-M,annual,2019,naphtha combustion consumption by freight transport,0.1809192,TJ,CO2,73300.0,kg/TJ,13261.37736,kg +63415010-a225-361f-8d35-968747c89b9e,SESCO,II.1.1,Mendoza,AR-M,annual,2019,naphtha combustion consumption by freight transport,0.1809192,TJ,CH4,3.0,kg/TJ,0.5427576000000001,kg +19f3f508-1ca3-3ace-89f5-b3c28e41ba16,SESCO,II.1.1,Mendoza,AR-M,annual,2019,naphtha combustion consumption by freight transport,0.1809192,TJ,N2O,0.6,kg/TJ,0.10855152,kg +6b516668-5c85-3a51-bc30-7790d6ddaf85,SESCO,II.1.1,Santa Fe,AR-S,annual,2019,naphtha combustion consumption by freight transport,1.4775067999999998,TJ,CO2,73300.0,kg/TJ,108301.24843999998,kg +66bfef1f-72a8-30bb-bfd8-8ad700a53577,SESCO,II.1.1,Santa Fe,AR-S,annual,2019,naphtha combustion consumption by freight transport,1.4775067999999998,TJ,CH4,3.0,kg/TJ,4.4325204,kg +5a1ba79e-c962-3c44-810b-f51a96280055,SESCO,II.1.1,Santa Fe,AR-S,annual,2019,naphtha combustion consumption by freight transport,1.4775067999999998,TJ,N2O,0.6,kg/TJ,0.8865040799999998,kg +b8403223-f4a8-326a-b4dd-ec626923318c,SESCO,II.1.1,Buenos Aires,AR-B,annual,2019,naphtha combustion consumption by freight transport,5.879873999999999,TJ,CO2,73300.0,kg/TJ,430994.7641999999,kg +eb8dd8b3-1eb4-3365-a6df-f3378a4299cb,SESCO,II.1.1,Buenos Aires,AR-B,annual,2019,naphtha combustion consumption by freight transport,5.879873999999999,TJ,CH4,3.0,kg/TJ,17.639621999999996,kg +29b108ad-e472-3f23-bb84-752f42ea25e9,SESCO,II.1.1,Buenos Aires,AR-B,annual,2019,naphtha combustion consumption by freight transport,5.879873999999999,TJ,N2O,0.6,kg/TJ,3.5279243999999994,kg +82d70c00-1bc6-379b-97bd-a26355f588b7,SESCO,II.1.1,Capital Federal,AR-C,annual,2019,naphtha combustion consumption by freight transport,2.4725623999999997,TJ,CO2,73300.0,kg/TJ,181238.82391999997,kg +48b78a6b-dc5d-38cc-8d5c-36733e063cf4,SESCO,II.1.1,Capital Federal,AR-C,annual,2019,naphtha combustion consumption by freight transport,2.4725623999999997,TJ,CH4,3.0,kg/TJ,7.4176872,kg +53330795-d117-3b07-ba81-2ff61f5e55a8,SESCO,II.1.1,Capital Federal,AR-C,annual,2019,naphtha combustion consumption by freight transport,2.4725623999999997,TJ,N2O,0.6,kg/TJ,1.4835374399999999,kg +17d72963-b92a-3428-8a02-96ea590c86f4,SESCO,II.1.1,Chaco,AR-H,annual,2019,naphtha combustion consumption by freight transport,0.030153199999999998,TJ,CO2,73300.0,kg/TJ,2210.2295599999998,kg +2cbd8a1b-d5a3-3267-a6e5-3c50f16a0b79,SESCO,II.1.1,Chaco,AR-H,annual,2019,naphtha combustion consumption by freight transport,0.030153199999999998,TJ,CH4,3.0,kg/TJ,0.0904596,kg +155493ee-dbe8-3239-943c-deb2f4f0376b,SESCO,II.1.1,Chaco,AR-H,annual,2019,naphtha combustion consumption by freight transport,0.030153199999999998,TJ,N2O,0.6,kg/TJ,0.018091919999999997,kg +3007f718-5c3e-3320-a9e6-b0b57ecedf7a,SESCO,II.1.1,Corrientes,AR-W,annual,2019,naphtha combustion consumption by freight transport,0.301532,TJ,CO2,73300.0,kg/TJ,22102.2956,kg +279b2c13-ca19-3aea-bbd6-b707614da32f,SESCO,II.1.1,Corrientes,AR-W,annual,2019,naphtha combustion consumption by freight transport,0.301532,TJ,CH4,3.0,kg/TJ,0.9045960000000001,kg +5ed72c7e-6ce2-3c0c-ba65-78dd54986c9b,SESCO,II.1.1,Corrientes,AR-W,annual,2019,naphtha combustion consumption by freight transport,0.301532,TJ,N2O,0.6,kg/TJ,0.1809192,kg +0ba6e5aa-3e89-3505-8dde-7348c72560fe,SESCO,II.1.1,Córdoba,AR-X,annual,2019,naphtha combustion consumption by freight transport,0.8744427999999999,TJ,CO2,73300.0,kg/TJ,64096.657239999986,kg +22759c40-80da-3e27-9062-dc2cf7a73d52,SESCO,II.1.1,Córdoba,AR-X,annual,2019,naphtha combustion consumption by freight transport,0.8744427999999999,TJ,CH4,3.0,kg/TJ,2.6233283999999997,kg +236df009-7093-344e-a85e-d9f88b77c0a0,SESCO,II.1.1,Córdoba,AR-X,annual,2019,naphtha combustion consumption by freight transport,0.8744427999999999,TJ,N2O,0.6,kg/TJ,0.5246656799999999,kg +da08c851-2ef0-3c53-b090-bb7b7b9ee403,SESCO,II.1.1,Entre Rios,AR-E,annual,2019,naphtha combustion consumption by freight transport,1.0252088,TJ,CO2,73300.0,kg/TJ,75147.80503999999,kg +215050cf-ce55-3648-a917-cbaf15da1950,SESCO,II.1.1,Entre Rios,AR-E,annual,2019,naphtha combustion consumption by freight transport,1.0252088,TJ,CH4,3.0,kg/TJ,3.0756264,kg +ecbe1139-9448-37dc-8d9f-551e6ceb9db5,SESCO,II.1.1,Entre Rios,AR-E,annual,2019,naphtha combustion consumption by freight transport,1.0252088,TJ,N2O,0.6,kg/TJ,0.6151252799999999,kg +1e64852d-43d4-3f15-b148-c7dd1337e5c3,SESCO,II.1.1,Santa Fe,AR-S,annual,2019,naphtha combustion consumption by freight transport,1.2965876,TJ,CO2,73300.0,kg/TJ,95039.87108000001,kg +3af9e899-8f0f-367e-9dc7-c13679b05f09,SESCO,II.1.1,Santa Fe,AR-S,annual,2019,naphtha combustion consumption by freight transport,1.2965876,TJ,CH4,3.0,kg/TJ,3.8897628,kg +c90768d5-d8e9-3222-a149-d81d758bf4a4,SESCO,II.1.1,Santa Fe,AR-S,annual,2019,naphtha combustion consumption by freight transport,1.2965876,TJ,N2O,0.6,kg/TJ,0.77795256,kg +f9b953ff-3409-30fb-bd1c-bab2d4a861ab,SESCO,II.1.1,Santa Fe,AR-S,annual,2019,naphtha combustion consumption by public passenger transport,0.4522979999999999,TJ,CO2,73300.0,kg/TJ,33153.4434,kg +924a74a8-9e1b-39c8-a3cf-5c838b01eae1,SESCO,II.1.1,Santa Fe,AR-S,annual,2019,naphtha combustion consumption by public passenger transport,0.4522979999999999,TJ,CH4,3.0,kg/TJ,1.3568939999999998,kg +27cec95f-aa63-3c72-91f7-55a89760f359,SESCO,II.1.1,Santa Fe,AR-S,annual,2019,naphtha combustion consumption by public passenger transport,0.4522979999999999,TJ,N2O,0.6,kg/TJ,0.2713787999999999,kg +67517174-40a1-300f-9aa1-d9e8efd1e7ab,SESCO,II.1.1,Catamarca,AR-K,annual,2019,naphtha combustion consumption by to the public,208.63873522799997,TJ,CO2,73300.0,kg/TJ,15293219.292212399,kg +fc0e516a-91ae-3a44-917c-a09b29564203,SESCO,II.1.1,Catamarca,AR-K,annual,2019,naphtha combustion consumption by to the public,208.63873522799997,TJ,CH4,3.0,kg/TJ,625.9162056839999,kg +331b02a8-8d67-31d7-92ca-139a0e1569b9,SESCO,II.1.1,Catamarca,AR-K,annual,2019,naphtha combustion consumption by to the public,208.63873522799997,TJ,N2O,0.6,kg/TJ,125.18324113679998,kg +83bea6bd-f573-363f-9c29-65ac5768a75b,SESCO,II.1.1,Chaco,AR-H,annual,2019,naphtha combustion consumption by to the public,108.40075399999999,TJ,CO2,73300.0,kg/TJ,7945775.2682,kg +838fd935-608e-3f4b-83d2-382beffe7fcd,SESCO,II.1.1,Chaco,AR-H,annual,2019,naphtha combustion consumption by to the public,108.40075399999999,TJ,CH4,3.0,kg/TJ,325.20226199999996,kg +0fa208de-08d4-3063-8ecd-d8bfc77fa1c8,SESCO,II.1.1,Chaco,AR-H,annual,2019,naphtha combustion consumption by to the public,108.40075399999999,TJ,N2O,0.6,kg/TJ,65.04045239999999,kg +63ac2b44-aae5-39e3-91ef-310f53206dba,SESCO,II.1.1,Jujuy,AR-Y,annual,2019,naphtha combustion consumption by to the public,521.2282151999999,TJ,CO2,73300.0,kg/TJ,38206028.174159996,kg +4600ca25-d5a5-39a0-8d3d-c9fb0c45c29e,SESCO,II.1.1,Jujuy,AR-Y,annual,2019,naphtha combustion consumption by to the public,521.2282151999999,TJ,CH4,3.0,kg/TJ,1563.6846455999998,kg +562ed748-05b0-3d66-bc9a-d7aa6bf28db5,SESCO,II.1.1,Jujuy,AR-Y,annual,2019,naphtha combustion consumption by to the public,521.2282151999999,TJ,N2O,0.6,kg/TJ,312.73692911999996,kg +891907fb-b051-3b0c-9df8-06ab5c0eadd4,SESCO,II.1.1,La Rioja,AR-F,annual,2019,naphtha combustion consumption by to the public,418.4407809119999,TJ,CO2,73300.0,kg/TJ,30671709.240849596,kg +8d0a7ab8-1699-3d74-a17c-75cf1d26e0c6,SESCO,II.1.1,La Rioja,AR-F,annual,2019,naphtha combustion consumption by to the public,418.4407809119999,TJ,CH4,3.0,kg/TJ,1255.3223427359999,kg +3296c0c4-1d6d-3e37-8398-7a98fcc77650,SESCO,II.1.1,La Rioja,AR-F,annual,2019,naphtha combustion consumption by to the public,418.4407809119999,TJ,N2O,0.6,kg/TJ,251.06446854719994,kg +1f4c4aee-3ba7-3cba-9ca2-ba4d2e3f2c5a,SESCO,II.1.1,Salta,AR-A,annual,2019,naphtha combustion consumption by to the public,945.0899384079999,TJ,CO2,73300.0,kg/TJ,69275092.48530638,kg +8fa3b5fa-3bee-33f9-99b1-275aa914b9e6,SESCO,II.1.1,Salta,AR-A,annual,2019,naphtha combustion consumption by to the public,945.0899384079999,TJ,CH4,3.0,kg/TJ,2835.2698152239996,kg +630b57e4-eaf0-38b2-9974-7a09ea9b5d66,SESCO,II.1.1,Salta,AR-A,annual,2019,naphtha combustion consumption by to the public,945.0899384079999,TJ,N2O,0.6,kg/TJ,567.0539630447998,kg +fc86591e-7922-30d0-b2b7-c84d60facc4e,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2019,naphtha combustion consumption by to the public,552.0848893559998,TJ,CO2,73300.0,kg/TJ,40467822.38979479,kg +beaca17f-bf27-3c66-a9d3-20679f72de73,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2019,naphtha combustion consumption by to the public,552.0848893559998,TJ,CH4,3.0,kg/TJ,1656.2546680679995,kg +f6f62e79-2be0-3ed6-a647-ac88439d2718,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2019,naphtha combustion consumption by to the public,552.0848893559998,TJ,N2O,0.6,kg/TJ,331.2509336135999,kg +fc883968-d097-3289-91a3-55823eb9b548,SESCO,II.1.1,Tucuman,AR-T,annual,2019,naphtha combustion consumption by to the public,1946.7213482639997,TJ,CO2,73300.0,kg/TJ,142694674.8277512,kg +ebbb93b8-927b-3fe8-965a-98d3e767e5f3,SESCO,II.1.1,Tucuman,AR-T,annual,2019,naphtha combustion consumption by to the public,1946.7213482639997,TJ,CH4,3.0,kg/TJ,5840.164044791999,kg +71a1e521-74d5-3d42-9237-bea606034512,SESCO,II.1.1,Tucuman,AR-T,annual,2019,naphtha combustion consumption by to the public,1946.7213482639997,TJ,N2O,0.6,kg/TJ,1168.0328089583998,kg +629bcd47-a2d5-39c0-bc6a-5fae378f2234,SESCO,II.1.1,Catamarca,AR-K,annual,2019,naphtha combustion consumption by to the public,18.816199863999998,TJ,CO2,73300.0,kg/TJ,1379227.4500312,kg +3d137c01-a11b-3e08-a45d-2985236832d9,SESCO,II.1.1,Catamarca,AR-K,annual,2019,naphtha combustion consumption by to the public,18.816199863999998,TJ,CH4,3.0,kg/TJ,56.448599591999994,kg +4884bb49-fe4e-3d91-a21a-e50048b6c7f9,SESCO,II.1.1,Catamarca,AR-K,annual,2019,naphtha combustion consumption by to the public,18.816199863999998,TJ,N2O,0.6,kg/TJ,11.289719918399998,kg +1ad21f0a-c27d-3179-8431-26ee3b3764d3,SESCO,II.1.1,Chaco,AR-H,annual,2019,naphtha combustion consumption by to the public,3.5279244,TJ,CO2,73300.0,kg/TJ,258596.85851999998,kg +c91b7ec5-4a6e-3880-a28f-18cd50f0f0fb,SESCO,II.1.1,Chaco,AR-H,annual,2019,naphtha combustion consumption by to the public,3.5279244,TJ,CH4,3.0,kg/TJ,10.5837732,kg +b7e04e1b-b7d7-3842-b039-3c6b62dd2b00,SESCO,II.1.1,Chaco,AR-H,annual,2019,naphtha combustion consumption by to the public,3.5279244,TJ,N2O,0.6,kg/TJ,2.11675464,kg +58a77969-5885-3ec0-a204-99f3df4d73d3,SESCO,II.1.1,Jujuy,AR-Y,annual,2019,naphtha combustion consumption by to the public,23.308423599999998,TJ,CO2,73300.0,kg/TJ,1708507.4498799997,kg +4d2e9a03-5b0c-3934-b3c0-fd58230cae43,SESCO,II.1.1,Jujuy,AR-Y,annual,2019,naphtha combustion consumption by to the public,23.308423599999998,TJ,CH4,3.0,kg/TJ,69.92527079999999,kg +ec731d6c-ffec-3180-9963-2aade86cd05a,SESCO,II.1.1,Jujuy,AR-Y,annual,2019,naphtha combustion consumption by to the public,23.308423599999998,TJ,N2O,0.6,kg/TJ,13.985054159999999,kg +93b7ff23-8824-381b-ad82-c2688e001880,SESCO,II.1.1,La Rioja,AR-F,annual,2019,naphtha combustion consumption by to the public,45.01872759999999,TJ,CO2,73300.0,kg/TJ,3299872.733079999,kg +3b71d492-2a72-36f0-86da-da1602555bc2,SESCO,II.1.1,La Rioja,AR-F,annual,2019,naphtha combustion consumption by to the public,45.01872759999999,TJ,CH4,3.0,kg/TJ,135.0561828,kg +5f4a4042-f1e7-3de9-8f5a-f18bb595875b,SESCO,II.1.1,La Rioja,AR-F,annual,2019,naphtha combustion consumption by to the public,45.01872759999999,TJ,N2O,0.6,kg/TJ,27.011236559999993,kg +6d879c2d-282a-32c4-9d67-51e3be188d94,SESCO,II.1.1,Salta,AR-A,annual,2019,naphtha combustion consumption by to the public,58.82467175199999,TJ,CO2,73300.0,kg/TJ,4311848.4394216,kg +60a557f8-e9ef-39bf-ba0f-fe34f83576ea,SESCO,II.1.1,Salta,AR-A,annual,2019,naphtha combustion consumption by to the public,58.82467175199999,TJ,CH4,3.0,kg/TJ,176.47401525599997,kg +77187e30-0508-3819-b55e-d2be9797d244,SESCO,II.1.1,Salta,AR-A,annual,2019,naphtha combustion consumption by to the public,58.82467175199999,TJ,N2O,0.6,kg/TJ,35.29480305119999,kg +f8cd16e0-19e0-3ec0-ba47-ece4dba93e76,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2019,naphtha combustion consumption by to the public,47.06884366799999,TJ,CO2,73300.0,kg/TJ,3450146.2408643994,kg +11aebdd7-8259-3c81-aea4-5ba003e1ed3f,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2019,naphtha combustion consumption by to the public,47.06884366799999,TJ,CH4,3.0,kg/TJ,141.20653100399997,kg +2d3dc2a2-26e2-32da-ab73-5062359ef1fa,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2019,naphtha combustion consumption by to the public,47.06884366799999,TJ,N2O,0.6,kg/TJ,28.241306200799993,kg +ff96de22-6eeb-3d09-b998-5494808c34f3,SESCO,II.1.1,Tucuman,AR-T,annual,2019,naphtha combustion consumption by to the public,130.03597653199998,TJ,CO2,73300.0,kg/TJ,9531637.079795599,kg +68b65257-4bf7-33f3-bb3d-6048a9c25e8b,SESCO,II.1.1,Tucuman,AR-T,annual,2019,naphtha combustion consumption by to the public,130.03597653199998,TJ,CH4,3.0,kg/TJ,390.10792959599996,kg +5518df39-347c-3a6f-9d04-8db77b24c935,SESCO,II.1.1,Tucuman,AR-T,annual,2019,naphtha combustion consumption by to the public,130.03597653199998,TJ,N2O,0.6,kg/TJ,78.02158591919998,kg +016fc4d4-f911-3b43-9c95-bc58b726a192,SESCO,II.5.1,Buenos Aires,AR-B,annual,2019,naphtha combustion consumption by agriculture machines,0.9950555999999999,TJ,CO2,73300.0,kg/TJ,72937.57548,kg +12a009c8-4b9f-3d25-8820-f35f7726a8a5,SESCO,II.5.1,Buenos Aires,AR-B,annual,2019,naphtha combustion consumption by agriculture machines,0.9950555999999999,TJ,CH4,3.0,kg/TJ,2.9851668,kg +aa554e58-d1b6-3a94-98df-ba4e413f199d,SESCO,II.5.1,Buenos Aires,AR-B,annual,2019,naphtha combustion consumption by agriculture machines,0.9950555999999999,TJ,N2O,0.6,kg/TJ,0.59703336,kg +25987287-831c-3e79-b904-2a0a0b1dcf28,SESCO,II.5.1,Buenos Aires,AR-B,annual,2019,naphtha combustion consumption by agriculture machines,0.603064,TJ,CO2,73300.0,kg/TJ,44204.5912,kg +de3f612f-1e0d-3a28-9b51-ff75da60b179,SESCO,II.5.1,Buenos Aires,AR-B,annual,2019,naphtha combustion consumption by agriculture machines,0.603064,TJ,CH4,3.0,kg/TJ,1.8091920000000001,kg +273e2c81-d71d-3881-affe-47869b658329,SESCO,II.5.1,Buenos Aires,AR-B,annual,2019,naphtha combustion consumption by agriculture machines,0.603064,TJ,N2O,0.6,kg/TJ,0.3618384,kg +6b1fbc95-e01d-34d8-8e75-3b2279f77e05,SESCO,II.1.1,Buenos Aires,AR-B,annual,2019,naphtha combustion consumption by to the public,16958.973816399997,TJ,CO2,73300.0,kg/TJ,1243092780.7421198,kg +de7932d2-bcc8-3fd9-93de-51d7a0cb2808,SESCO,II.1.1,Buenos Aires,AR-B,annual,2019,naphtha combustion consumption by to the public,16958.973816399997,TJ,CH4,3.0,kg/TJ,50876.92144919999,kg +3aaec498-099e-334d-9785-f4b96420a2fc,SESCO,II.1.1,Buenos Aires,AR-B,annual,2019,naphtha combustion consumption by to the public,16958.973816399997,TJ,N2O,0.6,kg/TJ,10175.384289839998,kg +5cc85711-b6d9-3c5d-8b72-cb9dae7ef54d,SESCO,II.1.1,Capital Federal,AR-C,annual,2019,naphtha combustion consumption by to the public,4893.653287599999,TJ,CO2,73300.0,kg/TJ,358704785.98107994,kg +a088d250-8dfb-361f-ad25-40ac0f5f60ee,SESCO,II.1.1,Capital Federal,AR-C,annual,2019,naphtha combustion consumption by to the public,4893.653287599999,TJ,CH4,3.0,kg/TJ,14680.959862799999,kg +cd3f689e-32ca-3480-bfa6-17c2d09e0280,SESCO,II.1.1,Capital Federal,AR-C,annual,2019,naphtha combustion consumption by to the public,4893.653287599999,TJ,N2O,0.6,kg/TJ,2936.1919725599996,kg +bcc365ab-13e3-382c-be71-fb3239fb51d4,SESCO,II.1.1,Catamarca,AR-K,annual,2019,naphtha combustion consumption by to the public,42.3049396,TJ,CO2,73300.0,kg/TJ,3100952.0726799998,kg +5de33453-a05a-3d3a-9f52-cfd8fbd6d61d,SESCO,II.1.1,Catamarca,AR-K,annual,2019,naphtha combustion consumption by to the public,42.3049396,TJ,CH4,3.0,kg/TJ,126.91481879999999,kg +6b9492fe-e42a-387c-bcf0-10ffc9ddfe52,SESCO,II.1.1,Catamarca,AR-K,annual,2019,naphtha combustion consumption by to the public,42.3049396,TJ,N2O,0.6,kg/TJ,25.38296376,kg +3980dcb0-1b4d-3190-91ca-ca9ef67cde7d,SESCO,II.1.1,Chaco,AR-H,annual,2019,naphtha combustion consumption by to the public,989.7486367999999,TJ,CO2,73300.0,kg/TJ,72548575.07744,kg +6618b417-1684-3d46-95c3-bcfb9fe41029,SESCO,II.1.1,Chaco,AR-H,annual,2019,naphtha combustion consumption by to the public,989.7486367999999,TJ,CH4,3.0,kg/TJ,2969.2459103999995,kg +ab951901-7097-3ce8-94d2-b8bd42f91f41,SESCO,II.1.1,Chaco,AR-H,annual,2019,naphtha combustion consumption by to the public,989.7486367999999,TJ,N2O,0.6,kg/TJ,593.8491820799999,kg +f7c38f40-402f-314e-9204-5a9fc4455d46,SESCO,II.1.1,Corrientes,AR-W,annual,2019,naphtha combustion consumption by to the public,853.4260195999999,TJ,CO2,73300.0,kg/TJ,62556127.23667999,kg +601c4786-e72b-3935-9c7b-77c89a42bf04,SESCO,II.1.1,Corrientes,AR-W,annual,2019,naphtha combustion consumption by to the public,853.4260195999999,TJ,CH4,3.0,kg/TJ,2560.2780587999996,kg +a78bbd08-568f-36cd-a06f-c1b5cfcea1b6,SESCO,II.1.1,Corrientes,AR-W,annual,2019,naphtha combustion consumption by to the public,853.4260195999999,TJ,N2O,0.6,kg/TJ,512.0556117599999,kg +4727a697-032f-312a-82eb-88d6858321dd,SESCO,II.1.1,Córdoba,AR-X,annual,2019,naphtha combustion consumption by to the public,3913.2521428,TJ,CO2,73300.0,kg/TJ,286841382.06724,kg +38ce875e-dc50-377a-ac13-adc3d92f3e42,SESCO,II.1.1,Córdoba,AR-X,annual,2019,naphtha combustion consumption by to the public,3913.2521428,TJ,CH4,3.0,kg/TJ,11739.7564284,kg +2a354277-85d3-3aa2-b5cf-e81ea6b8c8a7,SESCO,II.1.1,Córdoba,AR-X,annual,2019,naphtha combustion consumption by to the public,3913.2521428,TJ,N2O,0.6,kg/TJ,2347.9512856799997,kg +0f55baea-7fa0-3a2c-9018-e1c9f5de45a8,SESCO,II.1.1,Entre Rios,AR-E,annual,2019,naphtha combustion consumption by to the public,1027.0179919999998,TJ,CO2,73300.0,kg/TJ,75280418.81359999,kg +08138503-7c78-3c57-9632-7fa88a6bd977,SESCO,II.1.1,Entre Rios,AR-E,annual,2019,naphtha combustion consumption by to the public,1027.0179919999998,TJ,CH4,3.0,kg/TJ,3081.0539759999992,kg +e20a35e4-d02f-33b9-9b54-e643a346aea4,SESCO,II.1.1,Entre Rios,AR-E,annual,2019,naphtha combustion consumption by to the public,1027.0179919999998,TJ,N2O,0.6,kg/TJ,616.2107951999999,kg +91a61900-68c8-3c30-a88e-3a45dcfce008,SESCO,II.1.1,Formosa,AR-P,annual,2019,naphtha combustion consumption by to the public,370.3717556,TJ,CO2,73300.0,kg/TJ,27148249.68548,kg +fecdfe23-d544-32b1-9eea-9496321bdd5e,SESCO,II.1.1,Formosa,AR-P,annual,2019,naphtha combustion consumption by to the public,370.3717556,TJ,CH4,3.0,kg/TJ,1111.1152668,kg +704fac6e-1555-3ab0-8496-3ca42b6223bf,SESCO,II.1.1,Formosa,AR-P,annual,2019,naphtha combustion consumption by to the public,370.3717556,TJ,N2O,0.6,kg/TJ,222.22305335999997,kg +76df7152-4682-306b-83d4-261a5b8779f0,SESCO,II.1.1,Jujuy,AR-Y,annual,2019,naphtha combustion consumption by to the public,178.56725039999998,TJ,CO2,73300.0,kg/TJ,13088979.454319999,kg +c4da90d7-72ab-3598-b054-4e96ff8f24ae,SESCO,II.1.1,Jujuy,AR-Y,annual,2019,naphtha combustion consumption by to the public,178.56725039999998,TJ,CH4,3.0,kg/TJ,535.7017512,kg +a1374630-4096-303e-8d77-840d0d7283e7,SESCO,II.1.1,Jujuy,AR-Y,annual,2019,naphtha combustion consumption by to the public,178.56725039999998,TJ,N2O,0.6,kg/TJ,107.14035023999999,kg +4fac76ac-5d73-361f-b933-6e516c720c91,SESCO,II.1.1,La Pampa,AR-L,annual,2019,naphtha combustion consumption by to the public,331.02182959999993,TJ,CO2,73300.0,kg/TJ,24263900.109679993,kg +c86f9819-3159-3ba5-b7f2-115c37ec6ca5,SESCO,II.1.1,La Pampa,AR-L,annual,2019,naphtha combustion consumption by to the public,331.02182959999993,TJ,CH4,3.0,kg/TJ,993.0654887999998,kg +56fc2915-c31e-3d29-99f3-5238e4feb385,SESCO,II.1.1,La Pampa,AR-L,annual,2019,naphtha combustion consumption by to the public,331.02182959999993,TJ,N2O,0.6,kg/TJ,198.61309775999996,kg +ac93445d-ac79-3916-b5b5-872287893d7d,SESCO,II.1.1,La Rioja,AR-F,annual,2019,naphtha combustion consumption by to the public,272.1929364,TJ,CO2,73300.0,kg/TJ,19951742.23812,kg +9d019da1-7929-3587-8d71-4dfe40b32763,SESCO,II.1.1,La Rioja,AR-F,annual,2019,naphtha combustion consumption by to the public,272.1929364,TJ,CH4,3.0,kg/TJ,816.5788092,kg +c9d6ceb9-adad-38ee-b882-51a6b1f6efdb,SESCO,II.1.1,La Rioja,AR-F,annual,2019,naphtha combustion consumption by to the public,272.1929364,TJ,N2O,0.6,kg/TJ,163.31576184,kg +2a046e1d-3b40-3514-a0b1-717b88b16383,SESCO,II.1.1,Mendoza,AR-M,annual,2019,naphtha combustion consumption by to the public,1313.8050772,TJ,CO2,73300.0,kg/TJ,96301912.15876,kg +e72bc342-2c4e-3b75-bf1f-8a6710c1386e,SESCO,II.1.1,Mendoza,AR-M,annual,2019,naphtha combustion consumption by to the public,1313.8050772,TJ,CH4,3.0,kg/TJ,3941.4152316,kg +e2d1c0f9-28f9-34e7-a57a-5b313140493b,SESCO,II.1.1,Mendoza,AR-M,annual,2019,naphtha combustion consumption by to the public,1313.8050772,TJ,N2O,0.6,kg/TJ,788.2830463199999,kg +58c8b885-68a3-3e55-a37d-b42ec5554993,SESCO,II.1.1,Misiones,AR-N,annual,2019,naphtha combustion consumption by to the public,1190.1166508,TJ,CO2,73300.0,kg/TJ,87235550.50364,kg +70936e55-48e7-3f6b-8dcb-ddbc51538005,SESCO,II.1.1,Misiones,AR-N,annual,2019,naphtha combustion consumption by to the public,1190.1166508,TJ,CH4,3.0,kg/TJ,3570.3499524,kg +9d4a12d8-f069-330a-94e1-644e1777c559,SESCO,II.1.1,Misiones,AR-N,annual,2019,naphtha combustion consumption by to the public,1190.1166508,TJ,N2O,0.6,kg/TJ,714.0699904799999,kg +09af9533-4d55-3491-970d-174f73d07323,SESCO,II.1.1,Neuquén,AR-Q,annual,2019,naphtha combustion consumption by to the public,575.1421367999999,TJ,CO2,73300.0,kg/TJ,42157918.62743999,kg +0185093c-4625-3f39-ad99-b046ab5435ac,SESCO,II.1.1,Neuquén,AR-Q,annual,2019,naphtha combustion consumption by to the public,575.1421367999999,TJ,CH4,3.0,kg/TJ,1725.4264103999997,kg +16aee42f-ee54-353f-938c-01fd0aa55013,SESCO,II.1.1,Neuquén,AR-Q,annual,2019,naphtha combustion consumption by to the public,575.1421367999999,TJ,N2O,0.6,kg/TJ,345.0852820799999,kg +86355cdf-eb28-36cd-beaa-705eda32903d,SESCO,II.1.1,Rio Negro,AR-R,annual,2019,naphtha combustion consumption by to the public,160.77686239999997,TJ,CO2,73300.0,kg/TJ,11784944.013919998,kg +79d5bff8-2c93-3be2-922c-4d30f4199a37,SESCO,II.1.1,Rio Negro,AR-R,annual,2019,naphtha combustion consumption by to the public,160.77686239999997,TJ,CH4,3.0,kg/TJ,482.3305871999999,kg +f522c386-8170-3483-b8ae-12b37b8827de,SESCO,II.1.1,Rio Negro,AR-R,annual,2019,naphtha combustion consumption by to the public,160.77686239999997,TJ,N2O,0.6,kg/TJ,96.46611743999998,kg +f403b068-292c-3a31-9fc1-b79c54757ab2,SESCO,II.1.1,Salta,AR-A,annual,2019,naphtha combustion consumption by to the public,243.42678359999996,TJ,CO2,73300.0,kg/TJ,17843183.23788,kg +01bf17f8-e3d4-30f2-b726-1aec356e737a,SESCO,II.1.1,Salta,AR-A,annual,2019,naphtha combustion consumption by to the public,243.42678359999996,TJ,CH4,3.0,kg/TJ,730.2803508,kg +dd08e524-6e5d-37ce-bf64-61bb52b6f573,SESCO,II.1.1,Salta,AR-A,annual,2019,naphtha combustion consumption by to the public,243.42678359999996,TJ,N2O,0.6,kg/TJ,146.05607015999996,kg +634bd1d6-884c-3050-a822-ab7732722a13,SESCO,II.1.1,San Juan,AR-J,annual,2019,naphtha combustion consumption by to the public,244.75352439999998,TJ,CO2,73300.0,kg/TJ,17940433.338519998,kg +3f7e4849-d9f9-38bd-8a74-8cf3cc05987d,SESCO,II.1.1,San Juan,AR-J,annual,2019,naphtha combustion consumption by to the public,244.75352439999998,TJ,CH4,3.0,kg/TJ,734.2605732,kg +1a0d3a43-31e4-39ef-a005-dcb8dce78b3d,SESCO,II.1.1,San Juan,AR-J,annual,2019,naphtha combustion consumption by to the public,244.75352439999998,TJ,N2O,0.6,kg/TJ,146.85211463999997,kg +176bdcb6-90e2-3258-a69e-7137c19ad9c6,SESCO,II.1.1,San Luis,AR-D,annual,2019,naphtha combustion consumption by to the public,210.1074976,TJ,CO2,73300.0,kg/TJ,15400879.57408,kg +4c9988de-28a3-3659-85b8-6f4e4778ed3b,SESCO,II.1.1,San Luis,AR-D,annual,2019,naphtha combustion consumption by to the public,210.1074976,TJ,CH4,3.0,kg/TJ,630.3224928,kg +05abcd31-49e5-3063-913f-cb4b85af00ef,SESCO,II.1.1,San Luis,AR-D,annual,2019,naphtha combustion consumption by to the public,210.1074976,TJ,N2O,0.6,kg/TJ,126.06449855999999,kg +dd645a3f-dc69-31b4-8c6f-2f6f6393c5cb,SESCO,II.1.1,Santa Fe,AR-S,annual,2019,naphtha combustion consumption by to the public,3360.3630676,TJ,CO2,73300.0,kg/TJ,246314612.85507998,kg +1bca8297-36f8-3445-98d2-7e4ecbec8f78,SESCO,II.1.1,Santa Fe,AR-S,annual,2019,naphtha combustion consumption by to the public,3360.3630676,TJ,CH4,3.0,kg/TJ,10081.0892028,kg +bc1df36b-1fd1-301d-8860-48daa91f834b,SESCO,II.1.1,Santa Fe,AR-S,annual,2019,naphtha combustion consumption by to the public,3360.3630676,TJ,N2O,0.6,kg/TJ,2016.2178405599998,kg +3678c3d0-a2d9-306b-b038-d216469c37c2,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2019,naphtha combustion consumption by to the public,421.6321956,TJ,CO2,73300.0,kg/TJ,30905639.93748,kg +fffcf42b-b5a0-37e5-8e0c-5ad7b9975aed,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2019,naphtha combustion consumption by to the public,421.6321956,TJ,CH4,3.0,kg/TJ,1264.8965868,kg +770afe0e-6005-3ed2-9c89-cefd523a68f4,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2019,naphtha combustion consumption by to the public,421.6321956,TJ,N2O,0.6,kg/TJ,252.97931735999998,kg +f7d250dc-8ba5-3c38-b21e-7ef386aa8502,SESCO,II.1.1,Tucuman,AR-T,annual,2019,naphtha combustion consumption by to the public,951.7254515999998,TJ,CO2,73300.0,kg/TJ,69761475.60227999,kg +6262194c-9b56-3cbd-8252-d95606aa4242,SESCO,II.1.1,Tucuman,AR-T,annual,2019,naphtha combustion consumption by to the public,951.7254515999998,TJ,CH4,3.0,kg/TJ,2855.1763547999994,kg +a167a408-9f90-3b15-8f67-7264d85054f2,SESCO,II.1.1,Tucuman,AR-T,annual,2019,naphtha combustion consumption by to the public,951.7254515999998,TJ,N2O,0.6,kg/TJ,571.0352709599998,kg +371cb76b-05b3-3e31-97eb-c5849e1d0a56,SESCO,II.1.1,Buenos Aires,AR-B,annual,2019,naphtha combustion consumption by to the public,7541.194707199999,TJ,CO2,73300.0,kg/TJ,552769572.0377599,kg +c80dd879-48f3-3e2d-ae83-e3986b188ac6,SESCO,II.1.1,Buenos Aires,AR-B,annual,2019,naphtha combustion consumption by to the public,7541.194707199999,TJ,CH4,3.0,kg/TJ,22623.584121599997,kg +0c1bbb16-12bb-3b25-8d54-229dcedfa4a6,SESCO,II.1.1,Buenos Aires,AR-B,annual,2019,naphtha combustion consumption by to the public,7541.194707199999,TJ,N2O,0.6,kg/TJ,4524.716824319999,kg +07c1fb84-b582-3e14-88b0-357f9acb6a4a,SESCO,II.1.1,Capital Federal,AR-C,annual,2019,naphtha combustion consumption by to the public,3160.1759727999997,TJ,CO2,73300.0,kg/TJ,231640898.80624,kg +dfc9f06d-426a-31c7-9b83-f4f69bf87db6,SESCO,II.1.1,Capital Federal,AR-C,annual,2019,naphtha combustion consumption by to the public,3160.1759727999997,TJ,CH4,3.0,kg/TJ,9480.5279184,kg +db52a7a7-f7cb-3f2b-a602-302d3c91e266,SESCO,II.1.1,Capital Federal,AR-C,annual,2019,naphtha combustion consumption by to the public,3160.1759727999997,TJ,N2O,0.6,kg/TJ,1896.1055836799997,kg +f758ca46-8519-3d93-8259-6cb91bf0f21a,SESCO,II.1.1,Catamarca,AR-K,annual,2019,naphtha combustion consumption by to the public,33.500205199999996,TJ,CO2,73300.0,kg/TJ,2455565.0411599996,kg +e05df187-bd9e-3257-8488-7589e94aa09c,SESCO,II.1.1,Catamarca,AR-K,annual,2019,naphtha combustion consumption by to the public,33.500205199999996,TJ,CH4,3.0,kg/TJ,100.50061559999999,kg +d86cf54f-140a-3936-acd4-05838bf1012b,SESCO,II.1.1,Catamarca,AR-K,annual,2019,naphtha combustion consumption by to the public,33.500205199999996,TJ,N2O,0.6,kg/TJ,20.100123119999996,kg +8b71a56c-21d6-3ce7-b8e0-0ce283f6b085,SESCO,II.1.1,Chaco,AR-H,annual,2019,naphtha combustion consumption by to the public,308.61800199999993,TJ,CO2,73300.0,kg/TJ,22621699.546599995,kg +1669f595-afc2-31eb-8dc4-b740700eedbb,SESCO,II.1.1,Chaco,AR-H,annual,2019,naphtha combustion consumption by to the public,308.61800199999993,TJ,CH4,3.0,kg/TJ,925.8540059999998,kg +e73042b5-65f9-38f1-97aa-858a1539b541,SESCO,II.1.1,Chaco,AR-H,annual,2019,naphtha combustion consumption by to the public,308.61800199999993,TJ,N2O,0.6,kg/TJ,185.17080119999994,kg +0c4f7dc4-c79e-33e8-8b66-4a5db3fec148,SESCO,II.1.1,Corrientes,AR-W,annual,2019,naphtha combustion consumption by to the public,315.7944636,TJ,CO2,73300.0,kg/TJ,23147734.181879997,kg +c12b2e0a-f909-3a67-b95c-26a50da8ac61,SESCO,II.1.1,Corrientes,AR-W,annual,2019,naphtha combustion consumption by to the public,315.7944636,TJ,CH4,3.0,kg/TJ,947.3833907999999,kg +bd5edd27-a1ac-3493-97b9-f7ef2e18833a,SESCO,II.1.1,Corrientes,AR-W,annual,2019,naphtha combustion consumption by to the public,315.7944636,TJ,N2O,0.6,kg/TJ,189.47667815999998,kg +b708951f-deb0-3c39-9e49-ddf6538f7bc0,SESCO,II.1.1,Córdoba,AR-X,annual,2019,naphtha combustion consumption by to the public,1700.0675691999998,TJ,CO2,73300.0,kg/TJ,124614952.82235998,kg +ca6c89ed-b754-399c-a813-4026e018237f,SESCO,II.1.1,Córdoba,AR-X,annual,2019,naphtha combustion consumption by to the public,1700.0675691999998,TJ,CH4,3.0,kg/TJ,5100.2027075999995,kg +b19326e2-ea19-3cf6-b5e5-e1e9863666f6,SESCO,II.1.1,Córdoba,AR-X,annual,2019,naphtha combustion consumption by to the public,1700.0675691999998,TJ,N2O,0.6,kg/TJ,1020.0405415199998,kg +34601876-823d-3de4-9bc1-68723bf27485,SESCO,II.1.1,Entre Rios,AR-E,annual,2019,naphtha combustion consumption by to the public,363.949124,TJ,CO2,73300.0,kg/TJ,26677470.7892,kg +7a2f8a62-96ff-3b29-9451-1ac824f343e7,SESCO,II.1.1,Entre Rios,AR-E,annual,2019,naphtha combustion consumption by to the public,363.949124,TJ,CH4,3.0,kg/TJ,1091.847372,kg +ecca63f9-3458-3536-bcbd-d3de1091c3e5,SESCO,II.1.1,Entre Rios,AR-E,annual,2019,naphtha combustion consumption by to the public,363.949124,TJ,N2O,0.6,kg/TJ,218.36947439999997,kg +5fbe6bce-1074-351b-a754-79899048f4d5,SESCO,II.1.1,Formosa,AR-P,annual,2019,naphtha combustion consumption by to the public,147.8109864,TJ,CO2,73300.0,kg/TJ,10834545.303119998,kg +05a1626b-3ba3-338a-8911-4658e4a75f4b,SESCO,II.1.1,Formosa,AR-P,annual,2019,naphtha combustion consumption by to the public,147.8109864,TJ,CH4,3.0,kg/TJ,443.43295919999997,kg +05d11ec7-ab95-38b9-9b55-5a02a062f6c5,SESCO,II.1.1,Formosa,AR-P,annual,2019,naphtha combustion consumption by to the public,147.8109864,TJ,N2O,0.6,kg/TJ,88.68659183999999,kg +8c18a1cc-8b62-33c4-bbf6-ad031543c3f3,SESCO,II.1.1,Jujuy,AR-Y,annual,2019,naphtha combustion consumption by to the public,38.7770152,TJ,CO2,73300.0,kg/TJ,2842355.21416,kg +87387d4a-6e0f-3c54-9c0c-567750d88ec3,SESCO,II.1.1,Jujuy,AR-Y,annual,2019,naphtha combustion consumption by to the public,38.7770152,TJ,CH4,3.0,kg/TJ,116.33104560000001,kg +89459fcb-d865-3d04-9d10-2680a6886c17,SESCO,II.1.1,Jujuy,AR-Y,annual,2019,naphtha combustion consumption by to the public,38.7770152,TJ,N2O,0.6,kg/TJ,23.26620912,kg +4ddfca7b-39f1-34ce-9961-10855944de33,SESCO,II.1.1,La Pampa,AR-L,annual,2019,naphtha combustion consumption by to the public,173.80304479999998,TJ,CO2,73300.0,kg/TJ,12739763.18384,kg +f2f9d274-9f9e-3f31-9d03-3a35b6ea765b,SESCO,II.1.1,La Pampa,AR-L,annual,2019,naphtha combustion consumption by to the public,173.80304479999998,TJ,CH4,3.0,kg/TJ,521.4091344,kg +25b2c543-874d-383a-b2e0-de79e70cec80,SESCO,II.1.1,La Pampa,AR-L,annual,2019,naphtha combustion consumption by to the public,173.80304479999998,TJ,N2O,0.6,kg/TJ,104.28182687999998,kg +beff5cce-b77f-3c43-9861-b03d8d0483b9,SESCO,II.1.1,La Rioja,AR-F,annual,2019,naphtha combustion consumption by to the public,83.976662,TJ,CO2,73300.0,kg/TJ,6155489.3246,kg +dbbf4824-e583-312d-831c-82caeaaaf2c9,SESCO,II.1.1,La Rioja,AR-F,annual,2019,naphtha combustion consumption by to the public,83.976662,TJ,CH4,3.0,kg/TJ,251.929986,kg +841cd168-75b5-3d58-8713-0edaa17b9b16,SESCO,II.1.1,La Rioja,AR-F,annual,2019,naphtha combustion consumption by to the public,83.976662,TJ,N2O,0.6,kg/TJ,50.3859972,kg +89182a3b-4c46-387a-82fc-c8da5703db87,SESCO,II.1.1,Mendoza,AR-M,annual,2019,naphtha combustion consumption by to the public,566.6087812,TJ,CO2,73300.0,kg/TJ,41532423.66196,kg +91ea377b-4661-3473-a291-ad1937343a7e,SESCO,II.1.1,Mendoza,AR-M,annual,2019,naphtha combustion consumption by to the public,566.6087812,TJ,CH4,3.0,kg/TJ,1699.8263435999997,kg +e553c1a6-e960-31e0-a24c-b7cb2c2d1f08,SESCO,II.1.1,Mendoza,AR-M,annual,2019,naphtha combustion consumption by to the public,566.6087812,TJ,N2O,0.6,kg/TJ,339.96526872,kg +d7082e34-af1c-3914-a811-96c823d57da6,SESCO,II.1.1,Misiones,AR-N,annual,2019,naphtha combustion consumption by to the public,263.9309596,TJ,CO2,73300.0,kg/TJ,19346139.33868,kg +a59d99f4-c8fd-3d26-a0b8-043d36d99115,SESCO,II.1.1,Misiones,AR-N,annual,2019,naphtha combustion consumption by to the public,263.9309596,TJ,CH4,3.0,kg/TJ,791.7928787999999,kg +eeae412c-2fb7-334c-9088-ec9927c7663a,SESCO,II.1.1,Misiones,AR-N,annual,2019,naphtha combustion consumption by to the public,263.9309596,TJ,N2O,0.6,kg/TJ,158.35857575999998,kg +0d4e14bc-2447-39c7-b2eb-634c24414543,SESCO,II.1.1,Neuquén,AR-Q,annual,2019,naphtha combustion consumption by to the public,360.3005868,TJ,CO2,73300.0,kg/TJ,26410033.01244,kg +29198d0f-6764-3ec3-9352-011a284d184f,SESCO,II.1.1,Neuquén,AR-Q,annual,2019,naphtha combustion consumption by to the public,360.3005868,TJ,CH4,3.0,kg/TJ,1080.9017604,kg +d074f391-e0ea-3d86-8d27-2f354adcc091,SESCO,II.1.1,Neuquén,AR-Q,annual,2019,naphtha combustion consumption by to the public,360.3005868,TJ,N2O,0.6,kg/TJ,216.18035208,kg +4a5965ea-5f7c-32c7-86db-55208d230228,SESCO,II.1.1,Rio Negro,AR-R,annual,2019,naphtha combustion consumption by to the public,80.0868992,TJ,CO2,73300.0,kg/TJ,5870369.71136,kg +374bc8f0-0dad-34eb-8bb5-6ebba059ab34,SESCO,II.1.1,Rio Negro,AR-R,annual,2019,naphtha combustion consumption by to the public,80.0868992,TJ,CH4,3.0,kg/TJ,240.26069760000001,kg +936bbe6e-dc20-396b-98cf-0b1d242f1feb,SESCO,II.1.1,Rio Negro,AR-R,annual,2019,naphtha combustion consumption by to the public,80.0868992,TJ,N2O,0.6,kg/TJ,48.052139520000004,kg +78625103-8a97-3a04-a1bc-0634bb3ce7b7,SESCO,II.1.1,Salta,AR-A,annual,2019,naphtha combustion consumption by to the public,108.49121359999998,TJ,CO2,73300.0,kg/TJ,7952405.956879999,kg +af7cf7a0-1cee-3bea-83dc-44203fc7dbdf,SESCO,II.1.1,Salta,AR-A,annual,2019,naphtha combustion consumption by to the public,108.49121359999998,TJ,CH4,3.0,kg/TJ,325.47364079999994,kg +64947249-5269-3f46-ab12-c51a7c2ea2f1,SESCO,II.1.1,Salta,AR-A,annual,2019,naphtha combustion consumption by to the public,108.49121359999998,TJ,N2O,0.6,kg/TJ,65.09472815999999,kg +9c25ce99-c7d9-3038-be0f-e308eb9024db,SESCO,II.1.1,San Juan,AR-J,annual,2019,naphtha combustion consumption by to the public,59.67318279999999,TJ,CO2,73300.0,kg/TJ,4374044.29924,kg +ea79d28d-f4e0-3e77-943a-83c2d690ce25,SESCO,II.1.1,San Juan,AR-J,annual,2019,naphtha combustion consumption by to the public,59.67318279999999,TJ,CH4,3.0,kg/TJ,179.01954839999996,kg +8dc3bf0f-af99-3865-b7cd-74589d40a510,SESCO,II.1.1,San Juan,AR-J,annual,2019,naphtha combustion consumption by to the public,59.67318279999999,TJ,N2O,0.6,kg/TJ,35.80390968,kg +da6b208c-6c2b-3e84-91cc-ed7e0ff9882f,SESCO,II.1.1,San Luis,AR-D,annual,2019,naphtha combustion consumption by to the public,89.64546359999999,TJ,CO2,73300.0,kg/TJ,6571012.481879999,kg +29a29eab-dfb7-3451-b7ce-fa0c5f65c24b,SESCO,II.1.1,San Luis,AR-D,annual,2019,naphtha combustion consumption by to the public,89.64546359999999,TJ,CH4,3.0,kg/TJ,268.93639079999997,kg +083d5630-7f8c-3359-9b2b-aa88f41cb4ef,SESCO,II.1.1,San Luis,AR-D,annual,2019,naphtha combustion consumption by to the public,89.64546359999999,TJ,N2O,0.6,kg/TJ,53.78727815999999,kg +a725f510-13d8-3f94-9c3f-cad52cd8557a,SESCO,II.1.1,Santa Fe,AR-S,annual,2019,naphtha combustion consumption by to the public,1545.7133383999999,TJ,CO2,73300.0,kg/TJ,113300787.70471999,kg +54fe145b-0924-3487-a6d5-dcba66b2ad3f,SESCO,II.1.1,Santa Fe,AR-S,annual,2019,naphtha combustion consumption by to the public,1545.7133383999999,TJ,CH4,3.0,kg/TJ,4637.1400152,kg +f700b868-df59-31f7-97fb-a8c909999727,SESCO,II.1.1,Santa Fe,AR-S,annual,2019,naphtha combustion consumption by to the public,1545.7133383999999,TJ,N2O,0.6,kg/TJ,927.4280030399999,kg +4106c70a-64de-3d11-94ef-277209bdbb54,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2019,naphtha combustion consumption by to the public,146.15256039999997,TJ,CO2,73300.0,kg/TJ,10712982.677319998,kg +2e827d19-55a5-38a1-b554-bb376fee04c5,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2019,naphtha combustion consumption by to the public,146.15256039999997,TJ,CH4,3.0,kg/TJ,438.4576811999999,kg +3ad886e1-034a-34c0-9fa7-0ed2bf596406,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2019,naphtha combustion consumption by to the public,146.15256039999997,TJ,N2O,0.6,kg/TJ,87.69153623999998,kg +fd923c65-95fb-376f-b5dc-b8c1cdfbf94c,SESCO,II.1.1,Tucuman,AR-T,annual,2019,naphtha combustion consumption by to the public,259.769818,TJ,CO2,73300.0,kg/TJ,19041127.659399997,kg +b0c8b610-4036-385c-8722-0f5c9e7850f6,SESCO,II.1.1,Tucuman,AR-T,annual,2019,naphtha combustion consumption by to the public,259.769818,TJ,CH4,3.0,kg/TJ,779.309454,kg +d83a91d4-085d-3350-8ab1-c2a02d9bd014,SESCO,II.1.1,Tucuman,AR-T,annual,2019,naphtha combustion consumption by to the public,259.769818,TJ,N2O,0.6,kg/TJ,155.8618908,kg +22e8644d-fb38-321a-8481-8f3e7a5c5a7d,SESCO,II.5.1,Buenos Aires,AR-B,annual,2019,naphtha combustion consumption by agriculture machines,14.4606002772,TJ,CO2,73300.0,kg/TJ,1059962.00031876,kg +997cd414-8229-3ebd-8ff4-5cd92cad3f5d,SESCO,II.5.1,Buenos Aires,AR-B,annual,2019,naphtha combustion consumption by agriculture machines,14.4606002772,TJ,CH4,3.0,kg/TJ,43.381800831599996,kg +618bbc8c-6a18-3dc2-88d3-4e6804cc34a8,SESCO,II.5.1,Buenos Aires,AR-B,annual,2019,naphtha combustion consumption by agriculture machines,14.4606002772,TJ,N2O,0.6,kg/TJ,8.676360166319999,kg +36f135b4-1883-35b2-90ce-7f8be58f704c,SESCO,II.5.1,Capital Federal,AR-C,annual,2019,naphtha combustion consumption by agriculture machines,10.116519212799998,TJ,CO2,73300.0,kg/TJ,741540.8582982399,kg +df676952-7e64-310c-997d-f6c74b864378,SESCO,II.5.1,Capital Federal,AR-C,annual,2019,naphtha combustion consumption by agriculture machines,10.116519212799998,TJ,CH4,3.0,kg/TJ,30.349557638399993,kg +ff0639a1-2dfe-3200-828d-30c66b9a204c,SESCO,II.5.1,Capital Federal,AR-C,annual,2019,naphtha combustion consumption by agriculture machines,10.116519212799998,TJ,N2O,0.6,kg/TJ,6.069911527679999,kg +09305a13-d2ea-3952-922b-e91f23673059,SESCO,II.5.1,Córdoba,AR-X,annual,2019,naphtha combustion consumption by agriculture machines,1.1030040559999998,TJ,CO2,73300.0,kg/TJ,80850.19730479999,kg +a5074ec8-7cc5-381f-b616-c16bb4ad96cf,SESCO,II.5.1,Córdoba,AR-X,annual,2019,naphtha combustion consumption by agriculture machines,1.1030040559999998,TJ,CH4,3.0,kg/TJ,3.3090121679999998,kg +d2736871-e7e7-376b-9f7a-760de89bddad,SESCO,II.5.1,Córdoba,AR-X,annual,2019,naphtha combustion consumption by agriculture machines,1.1030040559999998,TJ,N2O,0.6,kg/TJ,0.6618024335999999,kg +8171882a-0c09-3643-a4a3-6d8c67ba4a33,SESCO,II.5.1,Entre Rios,AR-E,annual,2019,naphtha combustion consumption by agriculture machines,0.8157948259999999,TJ,CO2,73300.0,kg/TJ,59797.76074579999,kg +39d22307-24c1-356e-b236-4ece90b7d3c8,SESCO,II.5.1,Entre Rios,AR-E,annual,2019,naphtha combustion consumption by agriculture machines,0.8157948259999999,TJ,CH4,3.0,kg/TJ,2.4473844779999996,kg +d7fda4a0-2b47-3596-947c-5596d93fc3c6,SESCO,II.5.1,Entre Rios,AR-E,annual,2019,naphtha combustion consumption by agriculture machines,0.8157948259999999,TJ,N2O,0.6,kg/TJ,0.4894768955999999,kg +dc3b46c3-e36d-331c-99b6-b785dec17d67,SESCO,II.5.1,Santa Fe,AR-S,annual,2019,naphtha combustion consumption by agriculture machines,155.83472276679998,TJ,CO2,73300.0,kg/TJ,11422685.178806439,kg +1c6f8607-131c-39c3-ab23-4620541b6068,SESCO,II.5.1,Santa Fe,AR-S,annual,2019,naphtha combustion consumption by agriculture machines,155.83472276679998,TJ,CH4,3.0,kg/TJ,467.50416830039995,kg +bd53bad7-b77f-331b-b943-8eefaa91503e,SESCO,II.5.1,Santa Fe,AR-S,annual,2019,naphtha combustion consumption by agriculture machines,155.83472276679998,TJ,N2O,0.6,kg/TJ,93.50083366007999,kg +e1dce376-436e-3b40-af60-6eef4dc1ff00,SESCO,II.5.1,Buenos Aires,AR-B,annual,2019,naphtha combustion consumption by agriculture machines,0.9691841543999998,TJ,CO2,73300.0,kg/TJ,71041.19851751998,kg +39ce0aa0-cc82-3b33-8c0b-edba6f52e626,SESCO,II.5.1,Buenos Aires,AR-B,annual,2019,naphtha combustion consumption by agriculture machines,0.9691841543999998,TJ,CH4,3.0,kg/TJ,2.9075524631999996,kg +1c38e664-ef03-3ced-be4e-58cabd3d26b4,SESCO,II.5.1,Buenos Aires,AR-B,annual,2019,naphtha combustion consumption by agriculture machines,0.9691841543999998,TJ,N2O,0.6,kg/TJ,0.5815104926399999,kg +08699d6e-1b3f-330c-94ea-d961b0ca4662,SESCO,II.5.1,Capital Federal,AR-C,annual,2019,naphtha combustion consumption by agriculture machines,2.7980058876,TJ,CO2,73300.0,kg/TJ,205093.83156108,kg +be7635da-c2dc-3efa-bb2b-15ed77797376,SESCO,II.5.1,Capital Federal,AR-C,annual,2019,naphtha combustion consumption by agriculture machines,2.7980058876,TJ,CH4,3.0,kg/TJ,8.3940176628,kg +dbf41085-e318-323e-819b-55148042ece1,SESCO,II.5.1,Capital Federal,AR-C,annual,2019,naphtha combustion consumption by agriculture machines,2.7980058876,TJ,N2O,0.6,kg/TJ,1.67880353256,kg +4f90c8d2-2c7e-3426-a2ef-d92c5fd4947c,SESCO,II.5.1,Córdoba,AR-X,annual,2019,naphtha combustion consumption by agriculture machines,0.7780430195999999,TJ,CO2,73300.0,kg/TJ,57030.553336679994,kg +95654b51-14c7-30c2-ba64-c6628c18e4c3,SESCO,II.5.1,Córdoba,AR-X,annual,2019,naphtha combustion consumption by agriculture machines,0.7780430195999999,TJ,CH4,3.0,kg/TJ,2.3341290587999994,kg +a6b320ab-16b0-340b-8a72-ac9695b9dd40,SESCO,II.5.1,Córdoba,AR-X,annual,2019,naphtha combustion consumption by agriculture machines,0.7780430195999999,TJ,N2O,0.6,kg/TJ,0.46682581175999993,kg +fae169dc-e49b-3da7-8c50-68adab756718,SESCO,II.5.1,Santa Fe,AR-S,annual,2019,naphtha combustion consumption by agriculture machines,8.310553605199999,TJ,CO2,73300.0,kg/TJ,609163.57926116,kg +db89acda-b786-339e-b4c5-3070f58ebaac,SESCO,II.5.1,Santa Fe,AR-S,annual,2019,naphtha combustion consumption by agriculture machines,8.310553605199999,TJ,CH4,3.0,kg/TJ,24.931660815599997,kg +092e5c32-9be6-3b0a-906e-642b5047b6a8,SESCO,II.5.1,Santa Fe,AR-S,annual,2019,naphtha combustion consumption by agriculture machines,8.310553605199999,TJ,N2O,0.6,kg/TJ,4.986332163119999,kg +67f8d37b-19b2-3633-89bf-93ae44ae4ed0,SESCO,II.1.1,Buenos Aires,AR-B,annual,2019,naphtha combustion consumption by to the public,6359.9360413511995,TJ,CO2,73300.0,kg/TJ,466183311.83104295,kg +52ef9534-6032-3725-868f-36df545c7e8c,SESCO,II.1.1,Buenos Aires,AR-B,annual,2019,naphtha combustion consumption by to the public,6359.9360413511995,TJ,CH4,3.0,kg/TJ,19079.808124053598,kg +b18f8491-87b8-32a3-a0fa-b4f8420d338f,SESCO,II.1.1,Buenos Aires,AR-B,annual,2019,naphtha combustion consumption by to the public,6359.9360413511995,TJ,N2O,0.6,kg/TJ,3815.9616248107195,kg +82ee5444-b006-3148-82af-68fd258a92f0,SESCO,II.1.1,Capital Federal,AR-C,annual,2019,naphtha combustion consumption by to the public,217.6071411976,TJ,CO2,73300.0,kg/TJ,15950603.44978408,kg +6ae397a3-afbe-3aff-ac67-2aa41f66ff81,SESCO,II.1.1,Capital Federal,AR-C,annual,2019,naphtha combustion consumption by to the public,217.6071411976,TJ,CH4,3.0,kg/TJ,652.8214235928,kg +9c68e8a3-b87e-32de-b725-7fb761a181fd,SESCO,II.1.1,Capital Federal,AR-C,annual,2019,naphtha combustion consumption by to the public,217.6071411976,TJ,N2O,0.6,kg/TJ,130.56428471855997,kg +708d150c-4f56-37fb-b5b9-abcd243b10ce,SESCO,II.1.1,Catamarca,AR-K,annual,2019,naphtha combustion consumption by to the public,18.383079299199995,TJ,CO2,73300.0,kg/TJ,1347479.7126313597,kg +b544899d-df11-3114-9ef8-204f0fef5047,SESCO,II.1.1,Catamarca,AR-K,annual,2019,naphtha combustion consumption by to the public,18.383079299199995,TJ,CH4,3.0,kg/TJ,55.14923789759999,kg +46a2fbb6-f715-360b-b630-840676a109dd,SESCO,II.1.1,Catamarca,AR-K,annual,2019,naphtha combustion consumption by to the public,18.383079299199995,TJ,N2O,0.6,kg/TJ,11.029847579519997,kg +d64675ac-6c40-3c56-9602-780d2a4ccf74,SESCO,II.1.1,Chaco,AR-H,annual,2019,naphtha combustion consumption by to the public,30.550679482399996,TJ,CO2,73300.0,kg/TJ,2239364.8060599198,kg +59b2511b-e202-3603-a2c6-835313c012b1,SESCO,II.1.1,Chaco,AR-H,annual,2019,naphtha combustion consumption by to the public,30.550679482399996,TJ,CH4,3.0,kg/TJ,91.65203844719998,kg +a44760f0-161d-3a38-9d2f-9f3cffcfcb5d,SESCO,II.1.1,Chaco,AR-H,annual,2019,naphtha combustion consumption by to the public,30.550679482399996,TJ,N2O,0.6,kg/TJ,18.330407689439998,kg +49c11518-afbc-3922-89b4-013e61772b07,SESCO,II.1.1,Chubut,AR-U,annual,2019,naphtha combustion consumption by to the public,100.38148030679999,TJ,CO2,73300.0,kg/TJ,7357962.506488439,kg +842c9e2c-b731-30ff-8a35-7f18b5b7cb87,SESCO,II.1.1,Chubut,AR-U,annual,2019,naphtha combustion consumption by to the public,100.38148030679999,TJ,CH4,3.0,kg/TJ,301.1444409204,kg +456532f6-dc9c-3c3b-8663-c9c408e23d9f,SESCO,II.1.1,Chubut,AR-U,annual,2019,naphtha combustion consumption by to the public,100.38148030679999,TJ,N2O,0.6,kg/TJ,60.22888818407999,kg +e6f97ade-ef98-3bef-95ae-37913c17576e,SESCO,II.1.1,Corrientes,AR-W,annual,2019,naphtha combustion consumption by to the public,179.13711572679998,TJ,CO2,73300.0,kg/TJ,13130750.582774438,kg +322065ad-abd4-3cf4-b2f2-41e3b54f5301,SESCO,II.1.1,Corrientes,AR-W,annual,2019,naphtha combustion consumption by to the public,179.13711572679998,TJ,CH4,3.0,kg/TJ,537.4113471804,kg +8fce9659-6c57-3575-8c5f-c8819c189545,SESCO,II.1.1,Corrientes,AR-W,annual,2019,naphtha combustion consumption by to the public,179.13711572679998,TJ,N2O,0.6,kg/TJ,107.48226943607999,kg +248e0475-68c6-3e85-9331-55596d9883c8,SESCO,II.1.1,Córdoba,AR-X,annual,2019,naphtha combustion consumption by to the public,327.2527399064,TJ,CO2,73300.0,kg/TJ,23987625.835139118,kg +d51826c3-aaa5-39fa-a639-0afb93ab1af7,SESCO,II.1.1,Córdoba,AR-X,annual,2019,naphtha combustion consumption by to the public,327.2527399064,TJ,CH4,3.0,kg/TJ,981.7582197192,kg +4f2b3969-98be-34c8-af9f-7da5ea114aee,SESCO,II.1.1,Córdoba,AR-X,annual,2019,naphtha combustion consumption by to the public,327.2527399064,TJ,N2O,0.6,kg/TJ,196.35164394384,kg +b89b5cb4-1c73-3393-a258-ef40c332ce94,SESCO,II.1.1,Entre Rios,AR-E,annual,2019,naphtha combustion consumption by to the public,317.80905919839995,TJ,CO2,73300.0,kg/TJ,23295404.039242715,kg +3d15e6f7-bbc4-342e-96a0-bf31750fe028,SESCO,II.1.1,Entre Rios,AR-E,annual,2019,naphtha combustion consumption by to the public,317.80905919839995,TJ,CH4,3.0,kg/TJ,953.4271775951999,kg +2629da13-fc07-37dd-b206-534eab7f549f,SESCO,II.1.1,Entre Rios,AR-E,annual,2019,naphtha combustion consumption by to the public,317.80905919839995,TJ,N2O,0.6,kg/TJ,190.68543551903997,kg +812a051f-1485-39a5-a7f7-9bc797ed8902,SESCO,II.1.1,Formosa,AR-P,annual,2019,naphtha combustion consumption by to the public,2.2822354016,TJ,CO2,73300.0,kg/TJ,167287.85493728,kg +f6b72ebe-9edb-3b55-9edf-8b2bdc840c4a,SESCO,II.1.1,Formosa,AR-P,annual,2019,naphtha combustion consumption by to the public,2.2822354016,TJ,CH4,3.0,kg/TJ,6.8467062048,kg +8e18043f-3cba-304b-b9a6-27b5c5d39bf8,SESCO,II.1.1,Formosa,AR-P,annual,2019,naphtha combustion consumption by to the public,2.2822354016,TJ,N2O,0.6,kg/TJ,1.3693412409599999,kg +668238ec-f62c-3a6b-8c69-184e64167488,SESCO,II.1.1,Jujuy,AR-Y,annual,2019,naphtha combustion consumption by to the public,35.763052094,TJ,CO2,73300.0,kg/TJ,2621431.7184902,kg +9c7e1233-d29f-3ebe-aae3-24d7120882f5,SESCO,II.1.1,Jujuy,AR-Y,annual,2019,naphtha combustion consumption by to the public,35.763052094,TJ,CH4,3.0,kg/TJ,107.28915628200001,kg +447abe60-611a-37f3-a719-78dae9f1c654,SESCO,II.1.1,Jujuy,AR-Y,annual,2019,naphtha combustion consumption by to the public,35.763052094,TJ,N2O,0.6,kg/TJ,21.457831256400002,kg +ebe94814-dbd5-3331-a010-a0e237dc7c73,SESCO,II.1.1,La Pampa,AR-L,annual,2019,naphtha combustion consumption by to the public,270.0400883796,TJ,CO2,73300.0,kg/TJ,19793938.47822468,kg +e6ba7dbf-90aa-36d7-922e-c5488b4427bb,SESCO,II.1.1,La Pampa,AR-L,annual,2019,naphtha combustion consumption by to the public,270.0400883796,TJ,CH4,3.0,kg/TJ,810.1202651387999,kg +4624552f-5eec-3e28-aebc-e18e8e4b1d1e,SESCO,II.1.1,La Pampa,AR-L,annual,2019,naphtha combustion consumption by to the public,270.0400883796,TJ,N2O,0.6,kg/TJ,162.02405302775998,kg +4c1ecf75-4fc8-3408-aa3b-6ba869ee5692,SESCO,II.1.1,Mendoza,AR-M,annual,2019,naphtha combustion consumption by to the public,45.71252257879999,TJ,CO2,73300.0,kg/TJ,3350727.905026039,kg +e07bcefa-592a-33ab-bac7-1c04102a323a,SESCO,II.1.1,Mendoza,AR-M,annual,2019,naphtha combustion consumption by to the public,45.71252257879999,TJ,CH4,3.0,kg/TJ,137.13756773639997,kg +cc74c0f2-4333-34f2-a79d-0101ccc76871,SESCO,II.1.1,Mendoza,AR-M,annual,2019,naphtha combustion consumption by to the public,45.71252257879999,TJ,N2O,0.6,kg/TJ,27.427513547279993,kg +ab69af60-9145-3415-a75c-402d595270c4,SESCO,II.1.1,Misiones,AR-N,annual,2019,naphtha combustion consumption by to the public,35.717520762,TJ,CO2,73300.0,kg/TJ,2618094.2718546,kg +2b7bce87-d9db-348c-a702-d2a3862e9cdc,SESCO,II.1.1,Misiones,AR-N,annual,2019,naphtha combustion consumption by to the public,35.717520762,TJ,CH4,3.0,kg/TJ,107.152562286,kg +0ae55a62-e0fb-30eb-8958-9325233c8169,SESCO,II.1.1,Misiones,AR-N,annual,2019,naphtha combustion consumption by to the public,35.717520762,TJ,N2O,0.6,kg/TJ,21.4305124572,kg +82d3db36-2e44-39e3-a424-3873202395c9,SESCO,II.1.1,Neuquén,AR-Q,annual,2019,naphtha combustion consumption by to the public,272.6439679655999,TJ,CO2,73300.0,kg/TJ,19984802.851878475,kg +1b5d6945-ae06-320d-ad2a-db7970048a5b,SESCO,II.1.1,Neuquén,AR-Q,annual,2019,naphtha combustion consumption by to the public,272.6439679655999,TJ,CH4,3.0,kg/TJ,817.9319038967998,kg +b8dd9321-a4e8-392d-a27f-9b38b8fc3f39,SESCO,II.1.1,Neuquén,AR-Q,annual,2019,naphtha combustion consumption by to the public,272.6439679655999,TJ,N2O,0.6,kg/TJ,163.58638077935996,kg +2680a6e3-5c7d-3e68-9684-560ef245c921,SESCO,II.1.1,Rio Negro,AR-R,annual,2019,naphtha combustion consumption by to the public,689.6531654011999,TJ,CO2,73300.0,kg/TJ,50551577.02390795,kg +d128902b-45de-3670-a22d-7ee691b15e0e,SESCO,II.1.1,Rio Negro,AR-R,annual,2019,naphtha combustion consumption by to the public,689.6531654011999,TJ,CH4,3.0,kg/TJ,2068.9594962036,kg +911e9f5e-e61c-366e-80da-520e8e9cff27,SESCO,II.1.1,Rio Negro,AR-R,annual,2019,naphtha combustion consumption by to the public,689.6531654011999,TJ,N2O,0.6,kg/TJ,413.79189924071994,kg +27dd6727-48f0-379d-848d-af40858e5f57,SESCO,II.1.1,San Juan,AR-J,annual,2019,naphtha combustion consumption by to the public,69.4472219672,TJ,CO2,73300.0,kg/TJ,5090481.370195759,kg +fb33f00d-6ba6-33fd-b18c-5d9b9d7ba26f,SESCO,II.1.1,San Juan,AR-J,annual,2019,naphtha combustion consumption by to the public,69.4472219672,TJ,CH4,3.0,kg/TJ,208.34166590159998,kg +0609847b-84ab-3a71-9bf8-4ea76e1456b5,SESCO,II.1.1,San Juan,AR-J,annual,2019,naphtha combustion consumption by to the public,69.4472219672,TJ,N2O,0.6,kg/TJ,41.66833318032,kg +47d99300-1b1d-3002-bf02-a37772b15148,SESCO,II.1.1,San Luis,AR-D,annual,2019,naphtha combustion consumption by to the public,47.73450571119999,TJ,CO2,73300.0,kg/TJ,3498939.2686309596,kg +cc687562-9f9e-3d27-807d-35c3800a39f1,SESCO,II.1.1,San Luis,AR-D,annual,2019,naphtha combustion consumption by to the public,47.73450571119999,TJ,CH4,3.0,kg/TJ,143.20351713359997,kg +5cbec14f-ef82-3ff7-ad10-31853ce7802e,SESCO,II.1.1,San Luis,AR-D,annual,2019,naphtha combustion consumption by to the public,47.73450571119999,TJ,N2O,0.6,kg/TJ,28.640703426719995,kg +3acad396-593e-3718-8714-a8ef42d684d5,SESCO,II.1.1,Santa Fe,AR-S,annual,2019,naphtha combustion consumption by to the public,623.5337410455999,TJ,CO2,73300.0,kg/TJ,45705023.21864247,kg +83c75fc9-3e1f-32f0-9ba8-c2e1458b8829,SESCO,II.1.1,Santa Fe,AR-S,annual,2019,naphtha combustion consumption by to the public,623.5337410455999,TJ,CH4,3.0,kg/TJ,1870.6012231367995,kg +f894ba78-7cee-3de4-ad1a-3864489fcd45,SESCO,II.1.1,Santa Fe,AR-S,annual,2019,naphtha combustion consumption by to the public,623.5337410455999,TJ,N2O,0.6,kg/TJ,374.1202446273599,kg +c3a46d4c-8ea0-34b4-b1a2-2cbe230de5fe,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2019,naphtha combustion consumption by to the public,219.3499660044,TJ,CO2,73300.0,kg/TJ,16078352.508122519,kg +314e1991-e53c-3521-8c55-59c706b7e3cc,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2019,naphtha combustion consumption by to the public,219.3499660044,TJ,CH4,3.0,kg/TJ,658.0498980131999,kg +d2d2d163-84fe-3b94-b97b-ef1d44979a61,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2019,naphtha combustion consumption by to the public,219.3499660044,TJ,N2O,0.6,kg/TJ,131.60997960263998,kg +d2113a33-4574-32a6-9702-4ee56cbacb9b,SESCO,II.1.1,Tucuman,AR-T,annual,2019,naphtha combustion consumption by to the public,42.0285553688,TJ,CO2,73300.0,kg/TJ,3080693.10853304,kg +b4b5a8e7-beca-3a01-b7d6-05b7481d7488,SESCO,II.1.1,Tucuman,AR-T,annual,2019,naphtha combustion consumption by to the public,42.0285553688,TJ,CH4,3.0,kg/TJ,126.0856661064,kg +b7fa0868-f3cb-3077-a6e0-a7477ed8496c,SESCO,II.1.1,Tucuman,AR-T,annual,2019,naphtha combustion consumption by to the public,42.0285553688,TJ,N2O,0.6,kg/TJ,25.217133221279997,kg +04453ddf-44c9-38ac-aae6-cf11be87ca83,SESCO,II.1.1,Buenos Aires,AR-B,annual,2019,naphtha combustion consumption by to the public,981.0380708435999,TJ,CO2,73300.0,kg/TJ,71910090.59283587,kg +af888717-0844-3a68-be54-25364243e245,SESCO,II.1.1,Buenos Aires,AR-B,annual,2019,naphtha combustion consumption by to the public,981.0380708435999,TJ,CH4,3.0,kg/TJ,2943.1142125307997,kg +eb52605b-66e1-3cc7-b186-08e3b0fbfc1e,SESCO,II.1.1,Buenos Aires,AR-B,annual,2019,naphtha combustion consumption by to the public,981.0380708435999,TJ,N2O,0.6,kg/TJ,588.6228425061599,kg +675980ae-c352-3b2c-bd46-d17d29c42a05,SESCO,II.1.1,Capital Federal,AR-C,annual,2019,naphtha combustion consumption by to the public,27.677622279999994,TJ,CO2,73300.0,kg/TJ,2028769.7131239995,kg +da137b67-000f-3baf-846a-1c9867aa10c7,SESCO,II.1.1,Capital Federal,AR-C,annual,2019,naphtha combustion consumption by to the public,27.677622279999994,TJ,CH4,3.0,kg/TJ,83.03286683999998,kg +3a05c235-58e7-3174-8c33-11b7e9f43dc3,SESCO,II.1.1,Capital Federal,AR-C,annual,2019,naphtha combustion consumption by to the public,27.677622279999994,TJ,N2O,0.6,kg/TJ,16.606573367999996,kg +91870f8b-9af1-38b0-abb3-37a2f74791b6,SESCO,II.1.1,Catamarca,AR-K,annual,2019,naphtha combustion consumption by to the public,0.8406712159999999,TJ,CO2,73300.0,kg/TJ,61621.2001328,kg +51f7c524-6f24-35a9-88a4-89ee5e2f4039,SESCO,II.1.1,Catamarca,AR-K,annual,2019,naphtha combustion consumption by to the public,0.8406712159999999,TJ,CH4,3.0,kg/TJ,2.5220136479999997,kg +56861390-8c7d-325a-bd1a-89e1eb2b07f2,SESCO,II.1.1,Catamarca,AR-K,annual,2019,naphtha combustion consumption by to the public,0.8406712159999999,TJ,N2O,0.6,kg/TJ,0.5044027296,kg +02151a16-783a-3644-af58-a0e9d1391b34,SESCO,II.1.1,Chaco,AR-H,annual,2019,naphtha combustion consumption by to the public,3.5804211211999997,TJ,CO2,73300.0,kg/TJ,262444.86818396,kg +068be0e7-57b0-397b-9fc4-f42013230488,SESCO,II.1.1,Chaco,AR-H,annual,2019,naphtha combustion consumption by to the public,3.5804211211999997,TJ,CH4,3.0,kg/TJ,10.741263363599998,kg +2109546a-2d55-3ef0-89c9-77ffe8f82490,SESCO,II.1.1,Chaco,AR-H,annual,2019,naphtha combustion consumption by to the public,3.5804211211999997,TJ,N2O,0.6,kg/TJ,2.1482526727199995,kg +57a95d79-c0d6-327b-ba45-606e07652b99,SESCO,II.1.1,Chubut,AR-U,annual,2019,naphtha combustion consumption by to the public,13.024252595199998,TJ,CO2,73300.0,kg/TJ,954677.7152281599,kg +21d6831a-40cc-3fdb-b545-df14e7db5eaf,SESCO,II.1.1,Chubut,AR-U,annual,2019,naphtha combustion consumption by to the public,13.024252595199998,TJ,CH4,3.0,kg/TJ,39.0727577856,kg +77885831-1ae4-3030-bcc1-f4f6ebc585e9,SESCO,II.1.1,Chubut,AR-U,annual,2019,naphtha combustion consumption by to the public,13.024252595199998,TJ,N2O,0.6,kg/TJ,7.814551557119999,kg +5cdba9f7-e05c-3cbd-bc0c-02368a071de4,SESCO,II.1.1,Corrientes,AR-W,annual,2019,naphtha combustion consumption by to the public,12.9210381916,TJ,CO2,73300.0,kg/TJ,947112.0994442799,kg +4dcba857-104a-3278-be3e-11ba8ecc1021,SESCO,II.1.1,Corrientes,AR-W,annual,2019,naphtha combustion consumption by to the public,12.9210381916,TJ,CH4,3.0,kg/TJ,38.7631145748,kg +2658483f-91c4-3d17-881a-042ed0a0d97e,SESCO,II.1.1,Corrientes,AR-W,annual,2019,naphtha combustion consumption by to the public,12.9210381916,TJ,N2O,0.6,kg/TJ,7.752622914959999,kg +81efa73c-daf9-3505-b872-3ef6ca8d5210,SESCO,II.1.1,Córdoba,AR-X,annual,2019,naphtha combustion consumption by to the public,57.72371811359999,TJ,CO2,73300.0,kg/TJ,4231148.537726879,kg +633d937f-65eb-3ecb-b5f1-3fa9f1b66161,SESCO,II.1.1,Córdoba,AR-X,annual,2019,naphtha combustion consumption by to the public,57.72371811359999,TJ,CH4,3.0,kg/TJ,173.17115434079997,kg +841f30d3-331e-34fd-ac92-7e0aa06dd906,SESCO,II.1.1,Córdoba,AR-X,annual,2019,naphtha combustion consumption by to the public,57.72371811359999,TJ,N2O,0.6,kg/TJ,34.634230868159996,kg +26a4bfa7-74a0-37a2-a6bb-e93ca33c154a,SESCO,II.1.1,Entre Rios,AR-E,annual,2019,naphtha combustion consumption by to the public,56.6006923328,TJ,CO2,73300.0,kg/TJ,4148830.74799424,kg +12faf807-c01c-3dbe-82ce-f52715285cac,SESCO,II.1.1,Entre Rios,AR-E,annual,2019,naphtha combustion consumption by to the public,56.6006923328,TJ,CH4,3.0,kg/TJ,169.8020769984,kg +fbe662fe-87a9-37d4-94f1-5d8ab5b118fc,SESCO,II.1.1,Entre Rios,AR-E,annual,2019,naphtha combustion consumption by to the public,56.6006923328,TJ,N2O,0.6,kg/TJ,33.96041539968,kg +6fdbf3e1-70d1-369f-84b8-69093aba2c15,SESCO,II.1.1,Formosa,AR-P,annual,2019,naphtha combustion consumption by to the public,0.4511823316,TJ,CO2,73300.0,kg/TJ,33071.66490628,kg +f6d76e57-743a-30c4-b47c-d0cec8553909,SESCO,II.1.1,Formosa,AR-P,annual,2019,naphtha combustion consumption by to the public,0.4511823316,TJ,CH4,3.0,kg/TJ,1.3535469947999998,kg +27fcc95d-6c08-33e9-a8a9-ea5644edbd4e,SESCO,II.1.1,Formosa,AR-P,annual,2019,naphtha combustion consumption by to the public,0.4511823316,TJ,N2O,0.6,kg/TJ,0.27070939895999996,kg +84d45643-021d-3197-b8e4-dca45eed71bc,SESCO,II.1.1,La Pampa,AR-L,annual,2019,naphtha combustion consumption by to the public,56.8592258696,TJ,CO2,73300.0,kg/TJ,4167781.25624168,kg +601f3c39-1d93-32b1-a7e3-c43ea984743e,SESCO,II.1.1,La Pampa,AR-L,annual,2019,naphtha combustion consumption by to the public,56.8592258696,TJ,CH4,3.0,kg/TJ,170.5776776088,kg +05af6d16-e84e-33bc-835f-565bfc8a9aaa,SESCO,II.1.1,La Pampa,AR-L,annual,2019,naphtha combustion consumption by to the public,56.8592258696,TJ,N2O,0.6,kg/TJ,34.11553552176,kg +4d40c959-566e-39a2-afad-da85da50fb45,SESCO,II.1.1,Mendoza,AR-M,annual,2019,naphtha combustion consumption by to the public,5.0696876692,TJ,CO2,73300.0,kg/TJ,371608.10615236004,kg +a82739f2-ffea-3551-a153-82bee4b5a401,SESCO,II.1.1,Mendoza,AR-M,annual,2019,naphtha combustion consumption by to the public,5.0696876692,TJ,CH4,3.0,kg/TJ,15.209063007600001,kg +427d2668-5ed8-33b8-aa32-c81997d6e3c9,SESCO,II.1.1,Mendoza,AR-M,annual,2019,naphtha combustion consumption by to the public,5.0696876692,TJ,N2O,0.6,kg/TJ,3.04181260152,kg +c1c6fca3-9d24-3a44-9eb3-5155ec90a897,SESCO,II.1.1,Misiones,AR-N,annual,2019,naphtha combustion consumption by to the public,2.4211210407999997,TJ,CO2,73300.0,kg/TJ,177468.17229063998,kg +22bb0d96-28a3-3a9e-8389-9060bb716d82,SESCO,II.1.1,Misiones,AR-N,annual,2019,naphtha combustion consumption by to the public,2.4211210407999997,TJ,CH4,3.0,kg/TJ,7.2633631223999995,kg +e9d57fd5-527c-322f-a4aa-73d53124b2e1,SESCO,II.1.1,Misiones,AR-N,annual,2019,naphtha combustion consumption by to the public,2.4211210407999997,TJ,N2O,0.6,kg/TJ,1.4526726244799997,kg +799b1888-b4b4-3c8f-bb56-79eb34597fd5,SESCO,II.1.1,Neuquén,AR-Q,annual,2019,naphtha combustion consumption by to the public,90.4052940868,TJ,CO2,73300.0,kg/TJ,6626708.05656244,kg +964d7d63-0576-369a-9f53-4552876ec751,SESCO,II.1.1,Neuquén,AR-Q,annual,2019,naphtha combustion consumption by to the public,90.4052940868,TJ,CH4,3.0,kg/TJ,271.2158822604,kg +3f393b69-16c1-314c-81d1-1a24937133a0,SESCO,II.1.1,Neuquén,AR-Q,annual,2019,naphtha combustion consumption by to the public,90.4052940868,TJ,N2O,0.6,kg/TJ,54.24317645208,kg +b7e2de82-54ac-3a3d-abd4-22a457e9adec,SESCO,II.1.1,Rio Negro,AR-R,annual,2019,naphtha combustion consumption by to the public,90.3810207608,TJ,CO2,73300.0,kg/TJ,6624928.82176664,kg +bf609635-7318-3299-b7bf-41a47885d7d0,SESCO,II.1.1,Rio Negro,AR-R,annual,2019,naphtha combustion consumption by to the public,90.3810207608,TJ,CH4,3.0,kg/TJ,271.1430622824,kg +3cb26f53-00a2-3262-8853-37f7cfa812c9,SESCO,II.1.1,Rio Negro,AR-R,annual,2019,naphtha combustion consumption by to the public,90.3810207608,TJ,N2O,0.6,kg/TJ,54.22861245648,kg +0baac219-69e3-3fa0-a3d0-a473288336dd,SESCO,II.1.1,San Juan,AR-J,annual,2019,naphtha combustion consumption by to the public,7.356385744399999,TJ,CO2,73300.0,kg/TJ,539223.0750645199,kg +27cb9827-d8f7-3724-b750-f54b0432a804,SESCO,II.1.1,San Juan,AR-J,annual,2019,naphtha combustion consumption by to the public,7.356385744399999,TJ,CH4,3.0,kg/TJ,22.069157233199995,kg +7fc68e2a-9920-3e7a-89cc-c0d15f4bc811,SESCO,II.1.1,San Juan,AR-J,annual,2019,naphtha combustion consumption by to the public,7.356385744399999,TJ,N2O,0.6,kg/TJ,4.413831446639999,kg +685d86af-6ca3-3350-bbc4-bcecfc6718e7,SESCO,II.1.1,San Luis,AR-D,annual,2019,naphtha combustion consumption by to the public,10.1144989484,TJ,CO2,73300.0,kg/TJ,741392.77291772,kg +96d0f633-80c1-39e4-9e83-b8b9862b089b,SESCO,II.1.1,San Luis,AR-D,annual,2019,naphtha combustion consumption by to the public,10.1144989484,TJ,CH4,3.0,kg/TJ,30.3434968452,kg +978c8093-2a04-30cb-b157-0d7bedc009ea,SESCO,II.1.1,San Luis,AR-D,annual,2019,naphtha combustion consumption by to the public,10.1144989484,TJ,N2O,0.6,kg/TJ,6.06869936904,kg +fd3c7c98-b52b-3894-b2ed-63219bacd2bd,SESCO,II.1.1,Santa Fe,AR-S,annual,2019,naphtha combustion consumption by to the public,117.79881291639998,TJ,CO2,73300.0,kg/TJ,8634652.986772118,kg +eb744f14-77b0-386a-b26d-e51eb23f3511,SESCO,II.1.1,Santa Fe,AR-S,annual,2019,naphtha combustion consumption by to the public,117.79881291639998,TJ,CH4,3.0,kg/TJ,353.39643874919994,kg +22c64339-e008-3fa8-ba79-175af487dafd,SESCO,II.1.1,Santa Fe,AR-S,annual,2019,naphtha combustion consumption by to the public,117.79881291639998,TJ,N2O,0.6,kg/TJ,70.67928774983999,kg +e42b004c-7850-3c9c-95f5-887e00349423,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2019,naphtha combustion consumption by to the public,35.315035848399994,TJ,CO2,73300.0,kg/TJ,2588592.1276877197,kg +6150ce3b-e1ab-3aac-aa70-854d5f3c4a2c,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2019,naphtha combustion consumption by to the public,35.315035848399994,TJ,CH4,3.0,kg/TJ,105.94510754519999,kg +4ed54bb0-48bd-344e-897b-67bc7aa8da53,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2019,naphtha combustion consumption by to the public,35.315035848399994,TJ,N2O,0.6,kg/TJ,21.189021509039996,kg +78acec79-18a9-387e-a45e-d70efe661fb5,SESCO,II.1.1,Tucuman,AR-T,annual,2019,naphtha combustion consumption by to the public,0.4860092775999999,TJ,CO2,73300.0,kg/TJ,35624.48004807999,kg +50153209-70b5-3cac-ab33-1bff3234ee66,SESCO,II.1.1,Tucuman,AR-T,annual,2019,naphtha combustion consumption by to the public,0.4860092775999999,TJ,CH4,3.0,kg/TJ,1.4580278327999996,kg +65457fb3-97a8-380b-ab8a-700e0707e015,SESCO,II.1.1,Tucuman,AR-T,annual,2019,naphtha combustion consumption by to the public,0.4860092775999999,TJ,N2O,0.6,kg/TJ,0.2916055665599999,kg +e3bb023c-cfd8-3a1f-aaa1-f5c2c63fab35,SESCO,I.3.1,Neuquén,AR-Q,annual,2019,naphtha combustion consumption by petrochemical industries,3.6591812795999994,TJ,CO2,73300.0,kg/TJ,268217.98779467994,kg +5f667b57-eadc-378c-94aa-e590712be5ea,SESCO,I.3.1,Neuquén,AR-Q,annual,2019,naphtha combustion consumption by petrochemical industries,3.6591812795999994,TJ,CH4,3.0,kg/TJ,10.977543838799999,kg +b7c20eca-4359-3054-adad-360c2536aa69,SESCO,I.3.1,Neuquén,AR-Q,annual,2019,naphtha combustion consumption by petrochemical industries,3.6591812795999994,TJ,N2O,0.6,kg/TJ,2.1955087677599994,kg +88e232a4-a5a3-3dae-8b6a-e684bbbeefaf,SESCO,I.3.1,Neuquén,AR-Q,annual,2019,naphtha combustion consumption by petrochemical industries,0.30270797479999995,TJ,CO2,73300.0,kg/TJ,22188.494552839995,kg +9167f7aa-0089-3bf8-a53e-efc6a3f67a5c,SESCO,I.3.1,Neuquén,AR-Q,annual,2019,naphtha combustion consumption by petrochemical industries,0.30270797479999995,TJ,CH4,3.0,kg/TJ,0.9081239243999999,kg +4c4d7e1b-eabf-328d-b7c6-d6d59d1cb16b,SESCO,I.3.1,Neuquén,AR-Q,annual,2019,naphtha combustion consumption by petrochemical industries,0.30270797479999995,TJ,N2O,0.6,kg/TJ,0.18162478487999997,kg +b481b39b-debc-32c2-8575-56845855a8ba,SESCO,II.1.1,Buenos Aires,AR-B,annual,2019,naphtha combustion consumption by public passenger transport,0.869618288,TJ,CO2,73300.0,kg/TJ,63743.0205104,kg +05a86630-5c69-313d-8c97-b91b711bab15,SESCO,II.1.1,Buenos Aires,AR-B,annual,2019,naphtha combustion consumption by public passenger transport,0.869618288,TJ,CH4,3.0,kg/TJ,2.608854864,kg +df2f3e77-4c96-3aba-91ce-80499c39bdfc,SESCO,II.1.1,Buenos Aires,AR-B,annual,2019,naphtha combustion consumption by public passenger transport,0.869618288,TJ,N2O,0.6,kg/TJ,0.5217709728,kg +0c85afbe-d1df-3344-bb4f-728f9c8c1172,SESCO,II.5.1,Buenos Aires,AR-B,annual,2019,naphtha combustion consumption by agriculture machines,55.1200496,TJ,CO2,73300.0,kg/TJ,4040299.6356800003,kg +f3836bc2-60ed-3c37-8f92-4e53eb6b3701,SESCO,II.5.1,Buenos Aires,AR-B,annual,2019,naphtha combustion consumption by agriculture machines,55.1200496,TJ,CH4,3.0,kg/TJ,165.3601488,kg +cc81c118-f84a-3f57-86ee-7adc1ae9964c,SESCO,II.5.1,Buenos Aires,AR-B,annual,2019,naphtha combustion consumption by agriculture machines,55.1200496,TJ,N2O,0.6,kg/TJ,33.07202976,kg +9e39dade-c5e1-3d7f-8f58-80e2c121faf3,SESCO,II.5.1,Mendoza,AR-M,annual,2019,naphtha combustion consumption by agriculture machines,1.1156684,TJ,CO2,73300.0,kg/TJ,81778.49372,kg +fd56cee9-7233-38b3-8009-7ae722584787,SESCO,II.5.1,Mendoza,AR-M,annual,2019,naphtha combustion consumption by agriculture machines,1.1156684,TJ,CH4,3.0,kg/TJ,3.3470052,kg +ada7389e-4a03-376b-9f66-a2d8e09eccb9,SESCO,II.5.1,Mendoza,AR-M,annual,2019,naphtha combustion consumption by agriculture machines,1.1156684,TJ,N2O,0.6,kg/TJ,0.6694010399999999,kg +b72e966c-e84e-34dc-9d38-e5c2f4940edd,SESCO,II.5.1,Salta,AR-A,annual,2019,naphtha combustion consumption by agriculture machines,0.4522979999999999,TJ,CO2,73300.0,kg/TJ,33153.4434,kg +e46b6887-f91c-3855-896a-b8a01263325e,SESCO,II.5.1,Salta,AR-A,annual,2019,naphtha combustion consumption by agriculture machines,0.4522979999999999,TJ,CH4,3.0,kg/TJ,1.3568939999999998,kg +b1d02c21-f93c-3a05-9848-a05b35f4dd7d,SESCO,II.5.1,Salta,AR-A,annual,2019,naphtha combustion consumption by agriculture machines,0.4522979999999999,TJ,N2O,0.6,kg/TJ,0.2713787999999999,kg +3396d3f8-85c6-3962-a215-48785ca8627f,SESCO,II.5.1,Santa Fe,AR-S,annual,2019,naphtha combustion consumption by agriculture machines,38.17395119999999,TJ,CO2,73300.0,kg/TJ,2798150.6229599994,kg +7c68b4ff-67f1-38f3-92cf-8a299f8f037f,SESCO,II.5.1,Santa Fe,AR-S,annual,2019,naphtha combustion consumption by agriculture machines,38.17395119999999,TJ,CH4,3.0,kg/TJ,114.52185359999997,kg +b2c2379d-38fb-338c-96bb-5d39ffbbea18,SESCO,II.5.1,Santa Fe,AR-S,annual,2019,naphtha combustion consumption by agriculture machines,38.17395119999999,TJ,N2O,0.6,kg/TJ,22.904370719999992,kg +6da880de-82bc-3b0c-acae-f66dbbf4f55a,SESCO,II.1.1,Buenos Aires,AR-B,annual,2019,naphtha combustion consumption by to the public,38738.1477252,TJ,CO2,73300.0,kg/TJ,2839506228.2571597,kg +d217ac6d-6fc2-38ee-bcdc-1070a51d5ddb,SESCO,II.1.1,Buenos Aires,AR-B,annual,2019,naphtha combustion consumption by to the public,38738.1477252,TJ,CH4,3.0,kg/TJ,116214.4431756,kg +760c4f0e-79a4-3796-9f0c-0ddda51c1459,SESCO,II.1.1,Buenos Aires,AR-B,annual,2019,naphtha combustion consumption by to the public,38738.1477252,TJ,N2O,0.6,kg/TJ,23242.888635119998,kg +62dbebe8-fd72-34b5-b299-28f158ae2b3f,SESCO,II.1.1,Capital Federal,AR-C,annual,2019,naphtha combustion consumption by to the public,7886.358387599999,TJ,CO2,73300.0,kg/TJ,578070069.81108,kg +f3f65295-115d-310c-a8a0-ae47637f0a87,SESCO,II.1.1,Capital Federal,AR-C,annual,2019,naphtha combustion consumption by to the public,7886.358387599999,TJ,CH4,3.0,kg/TJ,23659.0751628,kg +b00a3fdc-b6ff-3bb4-a479-337cfd3a9654,SESCO,II.1.1,Capital Federal,AR-C,annual,2019,naphtha combustion consumption by to the public,7886.358387599999,TJ,N2O,0.6,kg/TJ,4731.815032559999,kg +f81d170d-0041-3424-b3bf-2138d11d3eba,SESCO,II.1.1,Catamarca,AR-K,annual,2019,naphtha combustion consumption by to the public,757.6293032,TJ,CO2,73300.0,kg/TJ,55534227.924559996,kg +2cd17883-3d54-30fc-8ec2-34f1a2089473,SESCO,II.1.1,Catamarca,AR-K,annual,2019,naphtha combustion consumption by to the public,757.6293032,TJ,CH4,3.0,kg/TJ,2272.8879096,kg +57f306ca-15d5-3608-9eae-7ea8665a99f4,SESCO,II.1.1,Catamarca,AR-K,annual,2019,naphtha combustion consumption by to the public,757.6293032,TJ,N2O,0.6,kg/TJ,454.57758192,kg +5500de3f-4311-3b1a-af0e-35e99942cf37,SESCO,II.1.1,Chaco,AR-H,annual,2019,naphtha combustion consumption by to the public,2272.5562244,TJ,CO2,73300.0,kg/TJ,166578371.24852,kg +0f02790e-ea69-379a-84c8-d2545a8cac70,SESCO,II.1.1,Chaco,AR-H,annual,2019,naphtha combustion consumption by to the public,2272.5562244,TJ,CH4,3.0,kg/TJ,6817.6686732,kg +32c87720-41ec-3b91-8713-d8a4d4fcf363,SESCO,II.1.1,Chaco,AR-H,annual,2019,naphtha combustion consumption by to the public,2272.5562244,TJ,N2O,0.6,kg/TJ,1363.53373464,kg +18f79a73-c1f8-324e-a1a5-2586537a7d56,SESCO,II.1.1,Chubut,AR-U,annual,2019,naphtha combustion consumption by to the public,3263.3903763999997,TJ,CO2,73300.0,kg/TJ,239206514.59012,kg +f98ec2c3-56ff-3d42-b17b-80b4997801e3,SESCO,II.1.1,Chubut,AR-U,annual,2019,naphtha combustion consumption by to the public,3263.3903763999997,TJ,CH4,3.0,kg/TJ,9790.1711292,kg +3543414c-3ab1-30af-8030-ae522b46f8be,SESCO,II.1.1,Chubut,AR-U,annual,2019,naphtha combustion consumption by to the public,3263.3903763999997,TJ,N2O,0.6,kg/TJ,1958.0342258399996,kg +d74f61c5-720d-30ce-a6de-98e4151f81e6,SESCO,II.1.1,Corrientes,AR-W,annual,2019,naphtha combustion consumption by to the public,2343.8986956,TJ,CO2,73300.0,kg/TJ,171807774.38748,kg +0200a37e-16b9-35b0-be66-6f87d01a405a,SESCO,II.1.1,Corrientes,AR-W,annual,2019,naphtha combustion consumption by to the public,2343.8986956,TJ,CH4,3.0,kg/TJ,7031.6960868,kg +747952d6-12f5-3b33-a3d1-e0f8ea650bbf,SESCO,II.1.1,Corrientes,AR-W,annual,2019,naphtha combustion consumption by to the public,2343.8986956,TJ,N2O,0.6,kg/TJ,1406.3392173599998,kg +29222703-7f2f-3b8f-919a-0ec51a08d3c9,SESCO,II.1.1,Córdoba,AR-X,annual,2019,naphtha combustion consumption by to the public,9463.069215599999,TJ,CO2,73300.0,kg/TJ,693642973.50348,kg +2313be80-3f31-33ea-a02a-c16f26323eb9,SESCO,II.1.1,Córdoba,AR-X,annual,2019,naphtha combustion consumption by to the public,9463.069215599999,TJ,CH4,3.0,kg/TJ,28389.207646799994,kg +14e17907-f6cb-3af5-88ad-c57c68e71d18,SESCO,II.1.1,Córdoba,AR-X,annual,2019,naphtha combustion consumption by to the public,9463.069215599999,TJ,N2O,0.6,kg/TJ,5677.841529359999,kg +e77dd3b5-fa99-35e3-b4f7-00aa08ef33e7,SESCO,II.1.1,Entre Rios,AR-E,annual,2019,naphtha combustion consumption by to the public,3296.8001219999996,TJ,CO2,73300.0,kg/TJ,241655448.94259998,kg +05542a2e-b3c1-3847-af21-c8b577029b59,SESCO,II.1.1,Entre Rios,AR-E,annual,2019,naphtha combustion consumption by to the public,3296.8001219999996,TJ,CH4,3.0,kg/TJ,9890.400365999998,kg +da428c51-594c-3ddc-8806-5aed9b3ba9a6,SESCO,II.1.1,Entre Rios,AR-E,annual,2019,naphtha combustion consumption by to the public,3296.8001219999996,TJ,N2O,0.6,kg/TJ,1978.0800731999998,kg +6672dfdb-3eb4-39e2-9d07-adfb9001585e,SESCO,II.1.1,Formosa,AR-P,annual,2019,naphtha combustion consumption by to the public,1046.1049676,TJ,CO2,73300.0,kg/TJ,76679494.12508,kg +b2c6bb05-e76f-3989-9bd8-b139400b9d62,SESCO,II.1.1,Formosa,AR-P,annual,2019,naphtha combustion consumption by to the public,1046.1049676,TJ,CH4,3.0,kg/TJ,3138.3149028,kg +5e73ba74-40af-3557-bde7-8d45a3e5c746,SESCO,II.1.1,Formosa,AR-P,annual,2019,naphtha combustion consumption by to the public,1046.1049676,TJ,N2O,0.6,kg/TJ,627.6629805599999,kg +a2bd50e9-9f12-33cf-9163-bc07787ac56b,SESCO,II.1.1,Jujuy,AR-Y,annual,2019,naphtha combustion consumption by to the public,1424.5577807999998,TJ,CO2,73300.0,kg/TJ,104420085.33263999,kg +e652ec0b-435a-31a7-ab09-4a89dad62d51,SESCO,II.1.1,Jujuy,AR-Y,annual,2019,naphtha combustion consumption by to the public,1424.5577807999998,TJ,CH4,3.0,kg/TJ,4273.6733423999995,kg +6d58b18e-d5fe-3570-b1ef-e57ff01a021e,SESCO,II.1.1,Jujuy,AR-Y,annual,2019,naphtha combustion consumption by to the public,1424.5577807999998,TJ,N2O,0.6,kg/TJ,854.7346684799999,kg +9b96dc2f-8f20-30bf-9cc9-b74030cdb6d1,SESCO,II.1.1,La Pampa,AR-L,annual,2019,naphtha combustion consumption by to the public,1675.9148559999999,TJ,CO2,73300.0,kg/TJ,122844558.94479999,kg +2218b4a7-88c2-30dd-ba57-163478e17ce3,SESCO,II.1.1,La Pampa,AR-L,annual,2019,naphtha combustion consumption by to the public,1675.9148559999999,TJ,CH4,3.0,kg/TJ,5027.744568,kg +6b6b11de-51cc-300b-a04b-f281af63762f,SESCO,II.1.1,La Pampa,AR-L,annual,2019,naphtha combustion consumption by to the public,1675.9148559999999,TJ,N2O,0.6,kg/TJ,1005.5489135999999,kg +6cde9508-29aa-3368-81db-0a18c4126d80,SESCO,II.1.1,La Rioja,AR-F,annual,2019,naphtha combustion consumption by to the public,995.960196,TJ,CO2,73300.0,kg/TJ,73003882.3668,kg +56532cb7-bcae-35f5-b4a1-ab96d953be70,SESCO,II.1.1,La Rioja,AR-F,annual,2019,naphtha combustion consumption by to the public,995.960196,TJ,CH4,3.0,kg/TJ,2987.880588,kg +d1b2ca9b-96b6-38a3-bbbb-8c8279fcd1c8,SESCO,II.1.1,La Rioja,AR-F,annual,2019,naphtha combustion consumption by to the public,995.960196,TJ,N2O,0.6,kg/TJ,597.5761176,kg +f07eb63c-2eab-35a3-a595-f7bf5830b459,SESCO,II.1.1,Mendoza,AR-M,annual,2019,naphtha combustion consumption by to the public,4913.916238,TJ,CO2,73300.0,kg/TJ,360190060.2454,kg +c037acf4-a02c-3b8b-be95-00f28f78c3f7,SESCO,II.1.1,Mendoza,AR-M,annual,2019,naphtha combustion consumption by to the public,4913.916238,TJ,CH4,3.0,kg/TJ,14741.748714,kg +9d0df366-e0cc-3ef0-963f-8f6ad49c70f6,SESCO,II.1.1,Mendoza,AR-M,annual,2019,naphtha combustion consumption by to the public,4913.916238,TJ,N2O,0.6,kg/TJ,2948.3497427999996,kg +f95ded92-7380-361d-a393-044971385ece,SESCO,II.1.1,Misiones,AR-N,annual,2019,naphtha combustion consumption by to the public,3234.7749895999996,TJ,CO2,73300.0,kg/TJ,237109006.73767996,kg +2b08ba9f-8acd-3339-9af8-09e07f3d7fff,SESCO,II.1.1,Misiones,AR-N,annual,2019,naphtha combustion consumption by to the public,3234.7749895999996,TJ,CH4,3.0,kg/TJ,9704.3249688,kg +1fd1ef03-a7e4-302f-8a18-054e1accbcfa,SESCO,II.1.1,Misiones,AR-N,annual,2019,naphtha combustion consumption by to the public,3234.7749895999996,TJ,N2O,0.6,kg/TJ,1940.8649937599996,kg +ddc0e24f-5a95-317a-999c-1da86b1b4907,SESCO,II.1.1,Neuquén,AR-Q,annual,2019,naphtha combustion consumption by to the public,3277.9845251999996,TJ,CO2,73300.0,kg/TJ,240276265.69715998,kg +25774f51-3258-3368-88b1-580114b058b3,SESCO,II.1.1,Neuquén,AR-Q,annual,2019,naphtha combustion consumption by to the public,3277.9845251999996,TJ,CH4,3.0,kg/TJ,9833.953575599999,kg +d614f278-2c33-31a4-9da4-f9d1b50f1f36,SESCO,II.1.1,Neuquén,AR-Q,annual,2019,naphtha combustion consumption by to the public,3277.9845251999996,TJ,N2O,0.6,kg/TJ,1966.7907151199997,kg +8882a197-6c66-3d96-ba9c-15fa408bdbc4,SESCO,II.1.1,Rio Negro,AR-R,annual,2019,naphtha combustion consumption by to the public,3296.3176707999996,TJ,CO2,73300.0,kg/TJ,241620085.26963997,kg +8d88ba84-1a85-3c0f-b8d5-046ac790857e,SESCO,II.1.1,Rio Negro,AR-R,annual,2019,naphtha combustion consumption by to the public,3296.3176707999996,TJ,CH4,3.0,kg/TJ,9888.9530124,kg +28aa7ada-e043-3120-a50f-8b5580849f02,SESCO,II.1.1,Rio Negro,AR-R,annual,2019,naphtha combustion consumption by to the public,3296.3176707999996,TJ,N2O,0.6,kg/TJ,1977.7906024799997,kg +a2eb6216-a416-31e3-b908-ce5c8ea132f7,SESCO,II.1.1,Salta,AR-A,annual,2019,naphtha combustion consumption by to the public,3173.1418487999995,TJ,CO2,73300.0,kg/TJ,232591297.51703995,kg +8162cdcb-dcfd-36bf-8651-8f53fdfa7e77,SESCO,II.1.1,Salta,AR-A,annual,2019,naphtha combustion consumption by to the public,3173.1418487999995,TJ,CH4,3.0,kg/TJ,9519.425546399998,kg +9bd45cd3-a4da-3823-98b3-dbe836026849,SESCO,II.1.1,Salta,AR-A,annual,2019,naphtha combustion consumption by to the public,3173.1418487999995,TJ,N2O,0.6,kg/TJ,1903.8851092799996,kg +78ebf6e1-e439-34cc-bcec-85d6e5525dd9,SESCO,II.1.1,San Juan,AR-J,annual,2019,naphtha combustion consumption by to the public,1677.5129756,TJ,CO2,73300.0,kg/TJ,122961701.11148,kg +5f0c290e-09fe-30e1-bb9f-23efcdb29c86,SESCO,II.1.1,San Juan,AR-J,annual,2019,naphtha combustion consumption by to the public,1677.5129756,TJ,CH4,3.0,kg/TJ,5032.5389268,kg +a7235f9e-fff9-3f62-93a0-46ee00cc5381,SESCO,II.1.1,San Juan,AR-J,annual,2019,naphtha combustion consumption by to the public,1677.5129756,TJ,N2O,0.6,kg/TJ,1006.5077853599998,kg +ec927221-4534-3827-b30a-50140b0c816e,SESCO,II.1.1,San Luis,AR-D,annual,2019,naphtha combustion consumption by to the public,1419.763422,TJ,CO2,73300.0,kg/TJ,104068658.8326,kg +0f59323d-ae04-3f05-ae63-4cfd3a52b135,SESCO,II.1.1,San Luis,AR-D,annual,2019,naphtha combustion consumption by to the public,1419.763422,TJ,CH4,3.0,kg/TJ,4259.290266,kg +cb994e5c-1748-3b63-b7ec-b03b8db25256,SESCO,II.1.1,San Luis,AR-D,annual,2019,naphtha combustion consumption by to the public,1419.763422,TJ,N2O,0.6,kg/TJ,851.8580532,kg +cb585a11-c36d-32f1-be9b-132f4a1c39a4,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2019,naphtha combustion consumption by to the public,2295.1711244,TJ,CO2,73300.0,kg/TJ,168236043.41851997,kg +516ed6e5-3131-376f-9cd1-87d0f63a294d,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2019,naphtha combustion consumption by to the public,2295.1711244,TJ,CH4,3.0,kg/TJ,6885.5133731999995,kg +292aa4ef-d4a6-3bd2-adff-db98756c6310,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2019,naphtha combustion consumption by to the public,2295.1711244,TJ,N2O,0.6,kg/TJ,1377.1026746399998,kg +2a67392f-9c43-3ef1-aef8-5b57ebccca3d,SESCO,II.1.1,Santa Fe,AR-S,annual,2019,naphtha combustion consumption by to the public,7255.312218,TJ,CO2,73300.0,kg/TJ,531814385.5794,kg +a33cfb25-7b74-3a00-8cdf-11131b892d65,SESCO,II.1.1,Santa Fe,AR-S,annual,2019,naphtha combustion consumption by to the public,7255.312218,TJ,CH4,3.0,kg/TJ,21765.936654,kg +20de39a9-d019-3185-9605-92734b8d82df,SESCO,II.1.1,Santa Fe,AR-S,annual,2019,naphtha combustion consumption by to the public,7255.312218,TJ,N2O,0.6,kg/TJ,4353.1873307999995,kg +7d143d9e-4b89-3487-ae63-215966591b1a,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2019,naphtha combustion consumption by to the public,1456.7613983999997,TJ,CO2,73300.0,kg/TJ,106780610.50271998,kg +77a1b3c6-b97c-37ac-a4d0-2e8bd905d1ec,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2019,naphtha combustion consumption by to the public,1456.7613983999997,TJ,CH4,3.0,kg/TJ,4370.284195199999,kg +5666b3bf-2c0b-38b2-91fb-09d1d8cec1a8,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2019,naphtha combustion consumption by to the public,1456.7613983999997,TJ,N2O,0.6,kg/TJ,874.0568390399998,kg +0b90d764-caa8-3b6c-b875-49a673bd3300,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2019,naphtha combustion consumption by to the public,1589.7068572,TJ,CO2,73300.0,kg/TJ,116525512.63276,kg +ed9c6257-8fa7-39c4-8266-213a0dfa24f5,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2019,naphtha combustion consumption by to the public,1589.7068572,TJ,CH4,3.0,kg/TJ,4769.1205716,kg +b0c50c82-4e28-30a7-a93a-d4d038fa1509,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2019,naphtha combustion consumption by to the public,1589.7068572,TJ,N2O,0.6,kg/TJ,953.82411432,kg +4df47ab5-be8a-32f8-8ef1-1133aa589cc1,SESCO,II.1.1,Tucuman,AR-T,annual,2019,naphtha combustion consumption by to the public,2717.8285287999997,TJ,CO2,73300.0,kg/TJ,199216831.16103998,kg +b6a769e2-8382-3378-a74e-64ecbb010622,SESCO,II.1.1,Tucuman,AR-T,annual,2019,naphtha combustion consumption by to the public,2717.8285287999997,TJ,CH4,3.0,kg/TJ,8153.485586399999,kg +cc6a8e71-36eb-3360-82e6-c1f06d130428,SESCO,II.1.1,Tucuman,AR-T,annual,2019,naphtha combustion consumption by to the public,2717.8285287999997,TJ,N2O,0.6,kg/TJ,1630.6971172799997,kg +97498fff-65ea-3258-bed9-6bba0f0c64d2,SESCO,II.1.1,Buenos Aires,AR-B,annual,2019,naphtha combustion consumption by to the public,14059.834095999999,TJ,CO2,73300.0,kg/TJ,1030585839.2368,kg +51962899-e060-3a8c-99da-bbc53273b7a5,SESCO,II.1.1,Buenos Aires,AR-B,annual,2019,naphtha combustion consumption by to the public,14059.834095999999,TJ,CH4,3.0,kg/TJ,42179.502287999996,kg +c3f2e4fd-d541-311d-a95e-161d42e46d49,SESCO,II.1.1,Buenos Aires,AR-B,annual,2019,naphtha combustion consumption by to the public,14059.834095999999,TJ,N2O,0.6,kg/TJ,8435.900457599999,kg +c8193ec4-e887-368f-8899-4af36897e267,SESCO,II.1.1,Capital Federal,AR-C,annual,2019,naphtha combustion consumption by to the public,3317.6359832,TJ,CO2,73300.0,kg/TJ,243182717.56855997,kg +57eb6aad-55e3-38d3-b4a3-bd8aaff23210,SESCO,II.1.1,Capital Federal,AR-C,annual,2019,naphtha combustion consumption by to the public,3317.6359832,TJ,CH4,3.0,kg/TJ,9952.9079496,kg +04249cfe-59fb-3562-873d-5b5130755a40,SESCO,II.1.1,Capital Federal,AR-C,annual,2019,naphtha combustion consumption by to the public,3317.6359832,TJ,N2O,0.6,kg/TJ,1990.5815899199997,kg +371cdaaa-564f-3e89-98ee-60e5a36a5fd4,SESCO,II.1.1,Catamarca,AR-K,annual,2019,naphtha combustion consumption by to the public,270.08221239999995,TJ,CO2,73300.0,kg/TJ,19797026.168919995,kg +55a4f09f-d58e-3dc4-8425-503292344525,SESCO,II.1.1,Catamarca,AR-K,annual,2019,naphtha combustion consumption by to the public,270.08221239999995,TJ,CH4,3.0,kg/TJ,810.2466371999999,kg +b0f81532-9e91-3f90-a8ad-d05067477ace,SESCO,II.1.1,Catamarca,AR-K,annual,2019,naphtha combustion consumption by to the public,270.08221239999995,TJ,N2O,0.6,kg/TJ,162.04932743999996,kg +8a4b8ec3-afe5-3034-b8b7-ad8600564309,SESCO,II.1.1,Chaco,AR-H,annual,2019,naphtha combustion consumption by to the public,775.841836,TJ,CO2,73300.0,kg/TJ,56869206.57879999,kg +c7a0de36-1a39-314f-8c38-c6b54c98c8e3,SESCO,II.1.1,Chaco,AR-H,annual,2019,naphtha combustion consumption by to the public,775.841836,TJ,CH4,3.0,kg/TJ,2327.5255079999997,kg +d32b3df3-669f-3fa5-9e93-6832c9e44e15,SESCO,II.1.1,Chaco,AR-H,annual,2019,naphtha combustion consumption by to the public,775.841836,TJ,N2O,0.6,kg/TJ,465.50510159999993,kg +2cd7bb84-baa4-35e5-bc76-1fcb4b5d315c,SESCO,II.1.1,Chubut,AR-U,annual,2019,naphtha combustion consumption by to the public,1153.5408191999998,TJ,CO2,73300.0,kg/TJ,84554542.04735999,kg +d9f6a666-4fb5-3a5f-96ad-b214c267d660,SESCO,II.1.1,Chubut,AR-U,annual,2019,naphtha combustion consumption by to the public,1153.5408191999998,TJ,CH4,3.0,kg/TJ,3460.6224575999995,kg +fc2f8fb1-7dca-382a-8497-300dd9f09c86,SESCO,II.1.1,Chubut,AR-U,annual,2019,naphtha combustion consumption by to the public,1153.5408191999998,TJ,N2O,0.6,kg/TJ,692.1244915199999,kg +0b935da6-1fa6-3e19-89c4-336163de8400,SESCO,II.1.1,Corrientes,AR-W,annual,2019,naphtha combustion consumption by to the public,914.9687008,TJ,CO2,73300.0,kg/TJ,67067205.76864,kg +2689030e-20b1-3b9c-a58c-acaea109d121,SESCO,II.1.1,Corrientes,AR-W,annual,2019,naphtha combustion consumption by to the public,914.9687008,TJ,CH4,3.0,kg/TJ,2744.9061024,kg +c354e27b-ca4e-319f-b844-1fa127969b0d,SESCO,II.1.1,Corrientes,AR-W,annual,2019,naphtha combustion consumption by to the public,914.9687008,TJ,N2O,0.6,kg/TJ,548.9812204799999,kg +3e1bde54-31ab-358b-a0bc-8c3d1a7100b9,SESCO,II.1.1,Córdoba,AR-X,annual,2019,naphtha combustion consumption by to the public,3391.2700975999996,TJ,CO2,73300.0,kg/TJ,248580098.15407997,kg +7aba99d4-9765-355a-9c37-0041bde9528f,SESCO,II.1.1,Córdoba,AR-X,annual,2019,naphtha combustion consumption by to the public,3391.2700975999996,TJ,CH4,3.0,kg/TJ,10173.810292799999,kg +0a7a6235-da18-33b4-8004-6ed1f40a1e94,SESCO,II.1.1,Córdoba,AR-X,annual,2019,naphtha combustion consumption by to the public,3391.2700975999996,TJ,N2O,0.6,kg/TJ,2034.7620585599998,kg +22b6b205-926e-3dcd-b688-3654cfb4a504,SESCO,II.1.1,Entre Rios,AR-E,annual,2019,naphtha combustion consumption by to the public,1201.0019559999998,TJ,CO2,73300.0,kg/TJ,88033443.37479998,kg +d782c11c-c81b-3990-a45d-c41fe1b40c26,SESCO,II.1.1,Entre Rios,AR-E,annual,2019,naphtha combustion consumption by to the public,1201.0019559999998,TJ,CH4,3.0,kg/TJ,3603.0058679999993,kg +7be17cd1-c32b-3697-ae28-3633b30415ac,SESCO,II.1.1,Entre Rios,AR-E,annual,2019,naphtha combustion consumption by to the public,1201.0019559999998,TJ,N2O,0.6,kg/TJ,720.6011735999999,kg +669f385c-1d9d-3e02-8636-9f88386707c8,SESCO,II.1.1,Formosa,AR-P,annual,2019,naphtha combustion consumption by to the public,265.197394,TJ,CO2,73300.0,kg/TJ,19438968.980199996,kg +8cfece63-8016-39cc-b360-5d5053bdc0d5,SESCO,II.1.1,Formosa,AR-P,annual,2019,naphtha combustion consumption by to the public,265.197394,TJ,CH4,3.0,kg/TJ,795.5921819999999,kg +9cec7134-d672-351e-810b-067992a81998,SESCO,II.1.1,Formosa,AR-P,annual,2019,naphtha combustion consumption by to the public,265.197394,TJ,N2O,0.6,kg/TJ,159.11843639999998,kg +dc9bc689-3f9b-32d1-89c9-29e02f89c56f,SESCO,II.1.1,Jujuy,AR-Y,annual,2019,naphtha combustion consumption by to the public,398.7459168,TJ,CO2,73300.0,kg/TJ,29228075.70144,kg +e81d801f-1323-3e73-a96a-f5f6aea9408c,SESCO,II.1.1,Jujuy,AR-Y,annual,2019,naphtha combustion consumption by to the public,398.7459168,TJ,CH4,3.0,kg/TJ,1196.2377503999999,kg +3d853fcc-844e-37fa-bcee-a3d69070f548,SESCO,II.1.1,Jujuy,AR-Y,annual,2019,naphtha combustion consumption by to the public,398.7459168,TJ,N2O,0.6,kg/TJ,239.24755007999997,kg +162aefb0-6ce8-3cd8-a4a4-3e5e5c73c1ac,SESCO,II.1.1,La Pampa,AR-L,annual,2019,naphtha combustion consumption by to the public,993.6082464,TJ,CO2,73300.0,kg/TJ,72831484.46112,kg +17d8d19b-a933-3b44-8482-0ddcff4724d3,SESCO,II.1.1,La Pampa,AR-L,annual,2019,naphtha combustion consumption by to the public,993.6082464,TJ,CH4,3.0,kg/TJ,2980.8247392,kg +5e82af2a-9dd6-3d25-ac75-9b1c37aaf1d6,SESCO,II.1.1,La Pampa,AR-L,annual,2019,naphtha combustion consumption by to the public,993.6082464,TJ,N2O,0.6,kg/TJ,596.16494784,kg +ef8b5a54-ac0a-3134-8bd7-23e046e418a4,SESCO,II.1.1,La Rioja,AR-F,annual,2019,naphtha combustion consumption by to the public,387.7098456,TJ,CO2,73300.0,kg/TJ,28419131.68248,kg +82c259dd-a7ef-31a5-9c48-6f3d40506534,SESCO,II.1.1,La Rioja,AR-F,annual,2019,naphtha combustion consumption by to the public,387.7098456,TJ,CH4,3.0,kg/TJ,1163.1295368,kg +4ae08ea7-4ace-3bb3-a977-b2679e491c52,SESCO,II.1.1,La Rioja,AR-F,annual,2019,naphtha combustion consumption by to the public,387.7098456,TJ,N2O,0.6,kg/TJ,232.62590735999999,kg +a1e0809e-7721-3054-af3a-271a32c18696,SESCO,II.1.1,Mendoza,AR-M,annual,2019,naphtha combustion consumption by to the public,2357.8897804,TJ,CO2,73300.0,kg/TJ,172833320.90331998,kg +e49728c6-139a-3cc1-a3bf-0213da2e1cf7,SESCO,II.1.1,Mendoza,AR-M,annual,2019,naphtha combustion consumption by to the public,2357.8897804,TJ,CH4,3.0,kg/TJ,7073.6693411999995,kg +c1b7c241-7544-3dec-bf40-0ce6d210e085,SESCO,II.1.1,Mendoza,AR-M,annual,2019,naphtha combustion consumption by to the public,2357.8897804,TJ,N2O,0.6,kg/TJ,1414.7338682399998,kg +034030ef-3093-3fc6-805a-86ddb661c265,SESCO,II.1.1,Misiones,AR-N,annual,2019,naphtha combustion consumption by to the public,761.9110575999999,TJ,CO2,73300.0,kg/TJ,55848080.52208,kg +04fbf667-9cae-34eb-911c-6d7eb8b9b70e,SESCO,II.1.1,Misiones,AR-N,annual,2019,naphtha combustion consumption by to the public,761.9110575999999,TJ,CH4,3.0,kg/TJ,2285.7331728,kg +42e9ddd9-006f-3e5a-af26-704a8bb540d3,SESCO,II.1.1,Misiones,AR-N,annual,2019,naphtha combustion consumption by to the public,761.9110575999999,TJ,N2O,0.6,kg/TJ,457.14663455999994,kg +96165e07-1cbc-3713-bdbd-8b54ea3c22f5,SESCO,II.1.1,Neuquén,AR-Q,annual,2019,naphtha combustion consumption by to the public,1829.3343375999998,TJ,CO2,73300.0,kg/TJ,134090206.94607998,kg +16a0298b-6725-3bf4-a07c-b3d0f0013f90,SESCO,II.1.1,Neuquén,AR-Q,annual,2019,naphtha combustion consumption by to the public,1829.3343375999998,TJ,CH4,3.0,kg/TJ,5488.0030128,kg +e95eb175-f0e4-320e-a414-f575112ee611,SESCO,II.1.1,Neuquén,AR-Q,annual,2019,naphtha combustion consumption by to the public,1829.3343375999998,TJ,N2O,0.6,kg/TJ,1097.6006025599997,kg +b963a6f7-5313-3c4e-8669-8d83e90cdb79,SESCO,II.1.1,Rio Negro,AR-R,annual,2019,naphtha combustion consumption by to the public,1539.5017791999999,TJ,CO2,73300.0,kg/TJ,112845480.41535999,kg +31d63268-54b4-37ea-a245-5a85bedbf8e4,SESCO,II.1.1,Rio Negro,AR-R,annual,2019,naphtha combustion consumption by to the public,1539.5017791999999,TJ,CH4,3.0,kg/TJ,4618.5053376,kg +fea6df03-b1ce-3f00-b95f-be42d7f7d452,SESCO,II.1.1,Rio Negro,AR-R,annual,2019,naphtha combustion consumption by to the public,1539.5017791999999,TJ,N2O,0.6,kg/TJ,923.7010675199999,kg +33137183-0ad7-3ef5-807e-39ae800fefa6,SESCO,II.1.1,Salta,AR-A,annual,2019,naphtha combustion consumption by to the public,897.1481595999999,TJ,CO2,73300.0,kg/TJ,65760960.09867999,kg +040cbbed-995b-394a-9230-f8a1feccd74c,SESCO,II.1.1,Salta,AR-A,annual,2019,naphtha combustion consumption by to the public,897.1481595999999,TJ,CH4,3.0,kg/TJ,2691.4444787999996,kg +104b54e7-da08-32a6-ab86-91c311d699e5,SESCO,II.1.1,Salta,AR-A,annual,2019,naphtha combustion consumption by to the public,897.1481595999999,TJ,N2O,0.6,kg/TJ,538.28889576,kg +94123574-3cd4-38ab-8828-65b5090deecb,SESCO,II.1.1,San Juan,AR-J,annual,2019,naphtha combustion consumption by to the public,686.4074447999999,TJ,CO2,73300.0,kg/TJ,50313665.703839995,kg +45eea222-0099-3f32-8726-f37028c6dc99,SESCO,II.1.1,San Juan,AR-J,annual,2019,naphtha combustion consumption by to the public,686.4074447999999,TJ,CH4,3.0,kg/TJ,2059.2223343999995,kg +96435614-08b8-3dd4-97b4-112492cf899a,SESCO,II.1.1,San Juan,AR-J,annual,2019,naphtha combustion consumption by to the public,686.4074447999999,TJ,N2O,0.6,kg/TJ,411.8444668799999,kg +49834d1c-0739-3612-b4fc-c3554e355e54,SESCO,II.1.1,San Luis,AR-D,annual,2019,naphtha combustion consumption by to the public,578.7605208,TJ,CO2,73300.0,kg/TJ,42423146.17464,kg +d6de8d46-e0f2-3a41-8d5a-f1d943be359a,SESCO,II.1.1,San Luis,AR-D,annual,2019,naphtha combustion consumption by to the public,578.7605208,TJ,CH4,3.0,kg/TJ,1736.2815624,kg +7f11084b-af42-3bc5-ae14-9157c4733400,SESCO,II.1.1,San Luis,AR-D,annual,2019,naphtha combustion consumption by to the public,578.7605208,TJ,N2O,0.6,kg/TJ,347.25631247999996,kg +8ddd3a18-cb4b-3d04-8cf2-0d02cd8d001e,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2019,naphtha combustion consumption by to the public,557.5025148,TJ,CO2,73300.0,kg/TJ,40864934.33484,kg +45ddef2a-6e49-3867-9317-0f5739ac44c5,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2019,naphtha combustion consumption by to the public,557.5025148,TJ,CH4,3.0,kg/TJ,1672.5075444,kg +e2632cab-7c21-3416-9d1d-3716c16a4262,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2019,naphtha combustion consumption by to the public,557.5025148,TJ,N2O,0.6,kg/TJ,334.50150887999996,kg +534c107e-e983-35cb-936c-b6d069409452,SESCO,II.1.1,Santa Fe,AR-S,annual,2019,naphtha combustion consumption by to the public,2998.7055867999998,TJ,CO2,73300.0,kg/TJ,219805119.51244,kg +c468e37f-492f-3e99-b8b1-84f67794a075,SESCO,II.1.1,Santa Fe,AR-S,annual,2019,naphtha combustion consumption by to the public,2998.7055867999998,TJ,CH4,3.0,kg/TJ,8996.1167604,kg +2605bcd3-c2b1-3bdf-bbb9-bbbfd1d6f5d3,SESCO,II.1.1,Santa Fe,AR-S,annual,2019,naphtha combustion consumption by to the public,2998.7055867999998,TJ,N2O,0.6,kg/TJ,1799.2233520799998,kg +df02ee53-9fd5-3f42-acf9-3f98e1c0cf56,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2019,naphtha combustion consumption by to the public,528.2237576,TJ,CO2,73300.0,kg/TJ,38718801.43208,kg +913e1bf1-8aac-3613-8cda-07e9042be6a9,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2019,naphtha combustion consumption by to the public,528.2237576,TJ,CH4,3.0,kg/TJ,1584.6712728,kg +ed640bb1-bac6-37bb-9a54-be585586b5e2,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2019,naphtha combustion consumption by to the public,528.2237576,TJ,N2O,0.6,kg/TJ,316.93425456,kg +9b061262-702f-3e63-a4cb-0f374807bc12,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2019,naphtha combustion consumption by to the public,277.3792868,TJ,CO2,73300.0,kg/TJ,20331901.72244,kg +0431b876-a0da-30d2-a833-01dddb5327c5,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2019,naphtha combustion consumption by to the public,277.3792868,TJ,CH4,3.0,kg/TJ,832.1378603999999,kg +c06f18b9-e3a3-3ec4-831c-34064b9a30a7,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2019,naphtha combustion consumption by to the public,277.3792868,TJ,N2O,0.6,kg/TJ,166.42757207999998,kg +a7c3010a-7247-38ee-91fb-b24d5474d0af,SESCO,II.1.1,Tucuman,AR-T,annual,2019,naphtha combustion consumption by to the public,691.8350207999999,TJ,CO2,73300.0,kg/TJ,50711507.024639994,kg +4f880c10-de85-31bc-a44f-29c483ee89d9,SESCO,II.1.1,Tucuman,AR-T,annual,2019,naphtha combustion consumption by to the public,691.8350207999999,TJ,CH4,3.0,kg/TJ,2075.5050623999996,kg +1c0b9b9f-3cf7-3908-a978-09dcedc2e4a2,SESCO,II.1.1,Tucuman,AR-T,annual,2019,naphtha combustion consumption by to the public,691.8350207999999,TJ,N2O,0.6,kg/TJ,415.10101247999995,kg +f3eba6a0-1e1e-3197-8b52-46f0561de541,SESCO,II.1.1,Buenos Aires,AR-B,annual,2019,naphtha combustion consumption by freight transport,399.8012788,TJ,CO2,73300.0,kg/TJ,29305433.73604,kg +7fda656e-6108-39df-b98b-645986406800,SESCO,II.1.1,Buenos Aires,AR-B,annual,2019,naphtha combustion consumption by freight transport,399.8012788,TJ,CH4,3.0,kg/TJ,1199.4038363999998,kg +4406bb61-47d8-322a-accb-73204b3fedeb,SESCO,II.1.1,Buenos Aires,AR-B,annual,2019,naphtha combustion consumption by freight transport,399.8012788,TJ,N2O,0.6,kg/TJ,239.88076728,kg +879226d6-bd98-388c-b284-1d645e7f1713,SESCO,II.1.1,Capital Federal,AR-C,annual,2019,naphtha combustion consumption by freight transport,406.10329759999996,TJ,CO2,73300.0,kg/TJ,29767371.71408,kg +756e14c0-afa0-37cb-b386-b461dd5d4561,SESCO,II.1.1,Capital Federal,AR-C,annual,2019,naphtha combustion consumption by freight transport,406.10329759999996,TJ,CH4,3.0,kg/TJ,1218.3098928,kg +925c83b7-47cc-3e8a-a913-0d7a97dc1a4a,SESCO,II.1.1,Capital Federal,AR-C,annual,2019,naphtha combustion consumption by freight transport,406.10329759999996,TJ,N2O,0.6,kg/TJ,243.66197855999997,kg +b47e4e89-201d-34a3-bb85-4c7b620d1cc6,SESCO,II.1.1,Chaco,AR-H,annual,2019,naphtha combustion consumption by freight transport,16.3430344,TJ,CO2,73300.0,kg/TJ,1197944.42152,kg +e4d4dc7a-ed2d-3c56-b7e2-43da458e8c93,SESCO,II.1.1,Chaco,AR-H,annual,2019,naphtha combustion consumption by freight transport,16.3430344,TJ,CH4,3.0,kg/TJ,49.0291032,kg +ec750ae9-5d16-396d-8ec4-6ff2dc153f2b,SESCO,II.1.1,Chaco,AR-H,annual,2019,naphtha combustion consumption by freight transport,16.3430344,TJ,N2O,0.6,kg/TJ,9.80582064,kg +171f3b49-41ed-30a5-8818-511df177c2cc,SESCO,II.1.1,Chubut,AR-U,annual,2019,naphtha combustion consumption by freight transport,15.317825599999999,TJ,CO2,73300.0,kg/TJ,1122796.6164799999,kg +c148f96c-2e1a-32f2-903c-e80b80b7b63e,SESCO,II.1.1,Chubut,AR-U,annual,2019,naphtha combustion consumption by freight transport,15.317825599999999,TJ,CH4,3.0,kg/TJ,45.9534768,kg +3f1aeab8-bf29-3010-b42d-7562c209971a,SESCO,II.1.1,Chubut,AR-U,annual,2019,naphtha combustion consumption by freight transport,15.317825599999999,TJ,N2O,0.6,kg/TJ,9.19069536,kg +0ad0d21a-c4c4-3fa6-b144-bec83a358664,SESCO,II.1.1,Corrientes,AR-W,annual,2019,naphtha combustion consumption by freight transport,9.196725999999998,TJ,CO2,73300.0,kg/TJ,674120.0157999998,kg +83a74736-3be6-3683-b828-35dd8bad971d,SESCO,II.1.1,Corrientes,AR-W,annual,2019,naphtha combustion consumption by freight transport,9.196725999999998,TJ,CH4,3.0,kg/TJ,27.590177999999995,kg +116cf07f-f568-34c6-bc97-68b9db743f54,SESCO,II.1.1,Corrientes,AR-W,annual,2019,naphtha combustion consumption by freight transport,9.196725999999998,TJ,N2O,0.6,kg/TJ,5.518035599999998,kg +7fc07cbe-758e-3050-8803-7fddaabb204d,SESCO,II.1.1,Córdoba,AR-X,annual,2019,naphtha combustion consumption by freight transport,55.421581599999996,TJ,CO2,73300.0,kg/TJ,4062401.9312799997,kg +e584bed5-2c86-3fee-b48a-244b180d887a,SESCO,II.1.1,Córdoba,AR-X,annual,2019,naphtha combustion consumption by freight transport,55.421581599999996,TJ,CH4,3.0,kg/TJ,166.2647448,kg +6d6160fe-e5d9-392a-8f25-8650b9d2f9c7,SESCO,II.1.1,Córdoba,AR-X,annual,2019,naphtha combustion consumption by freight transport,55.421581599999996,TJ,N2O,0.6,kg/TJ,33.25294896,kg +52b0e6ae-f6fa-3ea6-9c0b-124b8fe457fe,SESCO,II.1.1,Entre Rios,AR-E,annual,2019,naphtha combustion consumption by freight transport,22.4038276,TJ,CO2,73300.0,kg/TJ,1642200.56308,kg +14a74c26-645d-30d9-b2dd-51745eb7f8ef,SESCO,II.1.1,Entre Rios,AR-E,annual,2019,naphtha combustion consumption by freight transport,22.4038276,TJ,CH4,3.0,kg/TJ,67.2114828,kg +d8bc5772-95a8-3dfc-a726-b3d6c618d925,SESCO,II.1.1,Entre Rios,AR-E,annual,2019,naphtha combustion consumption by freight transport,22.4038276,TJ,N2O,0.6,kg/TJ,13.442296559999999,kg +f1ecc34e-6993-3d6b-9ffd-459fc7be074e,SESCO,II.1.1,Formosa,AR-P,annual,2019,naphtha combustion consumption by freight transport,0.48245119999999997,TJ,CO2,73300.0,kg/TJ,35363.672959999996,kg +c1936796-a91f-3e3e-81e4-fcbe34556a52,SESCO,II.1.1,Formosa,AR-P,annual,2019,naphtha combustion consumption by freight transport,0.48245119999999997,TJ,CH4,3.0,kg/TJ,1.4473536,kg +a3f1c247-8fd4-3129-8e29-8d3631799dc4,SESCO,II.1.1,Formosa,AR-P,annual,2019,naphtha combustion consumption by freight transport,0.48245119999999997,TJ,N2O,0.6,kg/TJ,0.28947071999999996,kg +687c20c7-f087-3726-a96e-28432f602da9,SESCO,II.1.1,Jujuy,AR-Y,annual,2019,naphtha combustion consumption by freight transport,1.7488855999999997,TJ,CO2,73300.0,kg/TJ,128193.31447999997,kg +31569030-42b1-3bc2-b0dc-04d95f421b3d,SESCO,II.1.1,Jujuy,AR-Y,annual,2019,naphtha combustion consumption by freight transport,1.7488855999999997,TJ,CH4,3.0,kg/TJ,5.246656799999999,kg +fda3f718-9fdb-3bce-9d1c-0e93aee032cd,SESCO,II.1.1,Jujuy,AR-Y,annual,2019,naphtha combustion consumption by freight transport,1.7488855999999997,TJ,N2O,0.6,kg/TJ,1.0493313599999998,kg +f2dd88bc-c56b-36d8-9ba7-a81d790fccea,SESCO,II.1.1,La Pampa,AR-L,annual,2019,naphtha combustion consumption by freight transport,5.849720799999999,TJ,CO2,73300.0,kg/TJ,428784.5346399999,kg +4fb4806e-70ad-35c3-9263-89982646feaa,SESCO,II.1.1,La Pampa,AR-L,annual,2019,naphtha combustion consumption by freight transport,5.849720799999999,TJ,CH4,3.0,kg/TJ,17.549162399999997,kg +5366a057-a548-3c5f-98d5-50a452af4042,SESCO,II.1.1,La Pampa,AR-L,annual,2019,naphtha combustion consumption by freight transport,5.849720799999999,TJ,N2O,0.6,kg/TJ,3.5098324799999996,kg +1f4cae38-af4a-3257-b815-bcb5646f04ab,SESCO,II.1.1,La Rioja,AR-F,annual,2019,naphtha combustion consumption by freight transport,0.4221448,TJ,CO2,73300.0,kg/TJ,30943.21384,kg +4a11361c-300e-3f0e-992d-2c07532fad80,SESCO,II.1.1,La Rioja,AR-F,annual,2019,naphtha combustion consumption by freight transport,0.4221448,TJ,CH4,3.0,kg/TJ,1.2664344,kg +c1c8011c-d02c-372b-8831-89874bf2e03e,SESCO,II.1.1,La Rioja,AR-F,annual,2019,naphtha combustion consumption by freight transport,0.4221448,TJ,N2O,0.6,kg/TJ,0.25328688,kg +425e3292-0a94-30ac-b3d2-7050dedc924b,SESCO,II.1.1,Mendoza,AR-M,annual,2019,naphtha combustion consumption by freight transport,31.6307068,TJ,CO2,73300.0,kg/TJ,2318530.80844,kg +e45d11f3-807e-3250-ad0a-fd73625db34a,SESCO,II.1.1,Mendoza,AR-M,annual,2019,naphtha combustion consumption by freight transport,31.6307068,TJ,CH4,3.0,kg/TJ,94.8921204,kg +3ca664ca-926d-3950-8c90-5c922d3d8d2b,SESCO,II.1.1,Mendoza,AR-M,annual,2019,naphtha combustion consumption by freight transport,31.6307068,TJ,N2O,0.6,kg/TJ,18.97842408,kg +4ea373d6-a9de-3620-ac06-9cb9875360c3,SESCO,II.1.1,Misiones,AR-N,annual,2019,naphtha combustion consumption by freight transport,6.3623252,TJ,CO2,73300.0,kg/TJ,466358.43716,kg +11f9ceee-58ef-335a-a67a-ab421e67838b,SESCO,II.1.1,Misiones,AR-N,annual,2019,naphtha combustion consumption by freight transport,6.3623252,TJ,CH4,3.0,kg/TJ,19.0869756,kg +f49c2a9c-864c-3eac-8436-a3d64e70190a,SESCO,II.1.1,Misiones,AR-N,annual,2019,naphtha combustion consumption by freight transport,6.3623252,TJ,N2O,0.6,kg/TJ,3.8173951199999996,kg +f0ba17ac-e1ed-30dc-b726-411cfc2eb07b,SESCO,II.1.1,Neuquén,AR-Q,annual,2019,naphtha combustion consumption by freight transport,10.644079599999998,TJ,CO2,73300.0,kg/TJ,780211.0346799998,kg +458de515-886f-33f4-ad51-2d0ecb09941e,SESCO,II.1.1,Neuquén,AR-Q,annual,2019,naphtha combustion consumption by freight transport,10.644079599999998,TJ,CH4,3.0,kg/TJ,31.932238799999993,kg +230fb3e3-0f91-3000-83ea-927154bb36f3,SESCO,II.1.1,Neuquén,AR-Q,annual,2019,naphtha combustion consumption by freight transport,10.644079599999998,TJ,N2O,0.6,kg/TJ,6.3864477599999985,kg +5a0d43e5-8770-3e62-b50d-6029eabedeea,SESCO,II.1.1,Rio Negro,AR-R,annual,2019,naphtha combustion consumption by freight transport,16.946098399999997,TJ,CO2,73300.0,kg/TJ,1242149.0127199998,kg +1a6595e0-6eaa-3dd4-ac2f-19c753fc7864,SESCO,II.1.1,Rio Negro,AR-R,annual,2019,naphtha combustion consumption by freight transport,16.946098399999997,TJ,CH4,3.0,kg/TJ,50.83829519999999,kg +42e24861-9e04-3271-a994-11925021d190,SESCO,II.1.1,Rio Negro,AR-R,annual,2019,naphtha combustion consumption by freight transport,16.946098399999997,TJ,N2O,0.6,kg/TJ,10.167659039999998,kg +012af64c-b163-35b1-a1f3-454847f611a9,SESCO,II.1.1,Salta,AR-A,annual,2019,naphtha combustion consumption by freight transport,14.5639956,TJ,CO2,73300.0,kg/TJ,1067540.87748,kg +0c61c6f9-2f20-3929-9b6d-f457861b515b,SESCO,II.1.1,Salta,AR-A,annual,2019,naphtha combustion consumption by freight transport,14.5639956,TJ,CH4,3.0,kg/TJ,43.6919868,kg +e7f22e89-efff-350e-89b6-02029995d45e,SESCO,II.1.1,Salta,AR-A,annual,2019,naphtha combustion consumption by freight transport,14.5639956,TJ,N2O,0.6,kg/TJ,8.73839736,kg +43c54726-894a-3957-b7d2-c420dd783365,SESCO,II.1.1,San Juan,AR-J,annual,2019,naphtha combustion consumption by freight transport,3.5279244,TJ,CO2,73300.0,kg/TJ,258596.85851999998,kg +82aeed4e-cf17-333e-955f-682f4db34920,SESCO,II.1.1,San Juan,AR-J,annual,2019,naphtha combustion consumption by freight transport,3.5279244,TJ,CH4,3.0,kg/TJ,10.5837732,kg +a87bca66-a201-34f9-a058-51009ece1ded,SESCO,II.1.1,San Juan,AR-J,annual,2019,naphtha combustion consumption by freight transport,3.5279244,TJ,N2O,0.6,kg/TJ,2.11675464,kg +bdec0316-9ed4-3bfd-bdb6-039f9c041884,SESCO,II.1.1,San Luis,AR-D,annual,2019,naphtha combustion consumption by freight transport,5.0054312,TJ,CO2,73300.0,kg/TJ,366898.10696,kg +ee6d2e85-f168-3a4e-a920-f36628323a8a,SESCO,II.1.1,San Luis,AR-D,annual,2019,naphtha combustion consumption by freight transport,5.0054312,TJ,CH4,3.0,kg/TJ,15.016293600000001,kg +a36e58cc-b064-3187-8be8-f465178b657e,SESCO,II.1.1,San Luis,AR-D,annual,2019,naphtha combustion consumption by freight transport,5.0054312,TJ,N2O,0.6,kg/TJ,3.0032587200000003,kg +2b6b3e6b-a245-3595-bbae-282c0cc6ba74,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2019,naphtha combustion consumption by freight transport,1.9599579999999999,TJ,CO2,73300.0,kg/TJ,143664.9214,kg +356fa336-7ef4-3145-882d-3740b0b6b7c5,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2019,naphtha combustion consumption by freight transport,1.9599579999999999,TJ,CH4,3.0,kg/TJ,5.879873999999999,kg +5a56fe81-4e9c-3a53-95fc-642fab76cbda,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2019,naphtha combustion consumption by freight transport,1.9599579999999999,TJ,N2O,0.6,kg/TJ,1.1759747999999999,kg +9ce8ace1-0ca3-310f-b8ee-dcba77498d89,SESCO,II.1.1,Santa Fe,AR-S,annual,2019,naphtha combustion consumption by freight transport,57.4116928,TJ,CO2,73300.0,kg/TJ,4208277.082239999,kg +14fb2f6e-eaa8-3842-b839-6bb862c6ddde,SESCO,II.1.1,Santa Fe,AR-S,annual,2019,naphtha combustion consumption by freight transport,57.4116928,TJ,CH4,3.0,kg/TJ,172.2350784,kg +3d38ef9a-fbc7-3024-97f9-fe59161bf6c8,SESCO,II.1.1,Santa Fe,AR-S,annual,2019,naphtha combustion consumption by freight transport,57.4116928,TJ,N2O,0.6,kg/TJ,34.44701568,kg +179bb927-f210-326f-a28f-956e7dd8b523,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2019,naphtha combustion consumption by freight transport,0.9347492,TJ,CO2,73300.0,kg/TJ,68517.11636,kg +adab28dc-a8fa-303c-be11-4ab02ff0d76a,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2019,naphtha combustion consumption by freight transport,0.9347492,TJ,CH4,3.0,kg/TJ,2.8042476,kg +3e2e480f-1325-3606-bf6d-121731d0cccf,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2019,naphtha combustion consumption by freight transport,0.9347492,TJ,N2O,0.6,kg/TJ,0.56084952,kg +aba28de0-d333-3b63-b507-32cef12789aa,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2019,naphtha combustion consumption by freight transport,9.076113199999998,TJ,CO2,73300.0,kg/TJ,665279.0975599999,kg +7fc0be46-79e7-37e3-8122-2fa5242983a5,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2019,naphtha combustion consumption by freight transport,9.076113199999998,TJ,CH4,3.0,kg/TJ,27.228339599999995,kg +c40e16db-9b7f-3e27-bc07-c26c13eb0bd3,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2019,naphtha combustion consumption by freight transport,9.076113199999998,TJ,N2O,0.6,kg/TJ,5.445667919999999,kg +65edb57e-6869-3fed-b8d2-1c4c44a90ae6,SESCO,II.1.1,Tucuman,AR-T,annual,2019,naphtha combustion consumption by freight transport,13.0261824,TJ,CO2,73300.0,kg/TJ,954819.16992,kg +561ba686-2d5d-311a-8239-57927ae360ff,SESCO,II.1.1,Tucuman,AR-T,annual,2019,naphtha combustion consumption by freight transport,13.0261824,TJ,CH4,3.0,kg/TJ,39.0785472,kg +b7fd6ef3-cec4-3069-8dae-2e1bb8a9c1f4,SESCO,II.1.1,Tucuman,AR-T,annual,2019,naphtha combustion consumption by freight transport,13.0261824,TJ,N2O,0.6,kg/TJ,7.815709439999999,kg +d856f444-8265-3098-b181-837fe97caba1,SESCO,II.1.1,Buenos Aires,AR-B,annual,2019,naphtha combustion consumption by freight transport,308.7989212,TJ,CO2,73300.0,kg/TJ,22634960.92396,kg +09bfa19f-b1fe-3c45-823e-d4d9e4294b21,SESCO,II.1.1,Buenos Aires,AR-B,annual,2019,naphtha combustion consumption by freight transport,308.7989212,TJ,CH4,3.0,kg/TJ,926.3967636,kg +c60afde7-268a-3b4d-a601-268ff4e1b6c9,SESCO,II.1.1,Buenos Aires,AR-B,annual,2019,naphtha combustion consumption by freight transport,308.7989212,TJ,N2O,0.6,kg/TJ,185.27935272,kg +583e0bb3-4709-34f8-851f-8c6a986bf5cb,SESCO,II.1.1,Capital Federal,AR-C,annual,2019,naphtha combustion consumption by freight transport,511.549038,TJ,CO2,73300.0,kg/TJ,37496544.4854,kg +38953723-c5da-36f9-a110-14327b66ef14,SESCO,II.1.1,Capital Federal,AR-C,annual,2019,naphtha combustion consumption by freight transport,511.549038,TJ,CH4,3.0,kg/TJ,1534.6471139999999,kg +10f7ccb6-468d-389d-824f-dbf4eec60ca0,SESCO,II.1.1,Capital Federal,AR-C,annual,2019,naphtha combustion consumption by freight transport,511.549038,TJ,N2O,0.6,kg/TJ,306.9294228,kg +955af512-17d6-37b0-9697-64613e437e8f,SESCO,II.1.1,Catamarca,AR-K,annual,2019,naphtha combustion consumption by freight transport,0.030153199999999998,TJ,CO2,73300.0,kg/TJ,2210.2295599999998,kg +06d6c389-b8fb-3a8a-adb0-44df03828f72,SESCO,II.1.1,Catamarca,AR-K,annual,2019,naphtha combustion consumption by freight transport,0.030153199999999998,TJ,CH4,3.0,kg/TJ,0.0904596,kg +75215142-5170-3437-9ae4-3b513f5fdebe,SESCO,II.1.1,Catamarca,AR-K,annual,2019,naphtha combustion consumption by freight transport,0.030153199999999998,TJ,N2O,0.6,kg/TJ,0.018091919999999997,kg +9180893e-ef00-3c29-8102-3823d997aa89,SESCO,II.1.1,Chaco,AR-H,annual,2019,naphtha combustion consumption by freight transport,7.9905979999999985,TJ,CO2,73300.0,kg/TJ,585710.8333999999,kg +8889f6a6-e924-3a5c-b567-3e38d632427a,SESCO,II.1.1,Chaco,AR-H,annual,2019,naphtha combustion consumption by freight transport,7.9905979999999985,TJ,CH4,3.0,kg/TJ,23.971793999999996,kg +75c9e347-f79a-310f-8f56-0f1f78ce7d8f,SESCO,II.1.1,Chaco,AR-H,annual,2019,naphtha combustion consumption by freight transport,7.9905979999999985,TJ,N2O,0.6,kg/TJ,4.794358799999999,kg +62ca6b2b-f2ea-3960-9f5c-94c7b6b5e61a,SESCO,II.1.1,Chubut,AR-U,annual,2019,naphtha combustion consumption by freight transport,8.0207512,TJ,CO2,73300.0,kg/TJ,587921.06296,kg +76e29f31-a5a2-3493-a731-20b5384f666c,SESCO,II.1.1,Chubut,AR-U,annual,2019,naphtha combustion consumption by freight transport,8.0207512,TJ,CH4,3.0,kg/TJ,24.0622536,kg +f5fd8c1a-78e3-3ae3-8ba1-fee2b498fb97,SESCO,II.1.1,Chubut,AR-U,annual,2019,naphtha combustion consumption by freight transport,8.0207512,TJ,N2O,0.6,kg/TJ,4.812450719999999,kg +5d6213ba-3b4e-342b-b31d-38ad50f89902,SESCO,II.1.1,Corrientes,AR-W,annual,2019,naphtha combustion consumption by freight transport,10.8249988,TJ,CO2,73300.0,kg/TJ,793472.41204,kg +ccee80d6-ed0a-3011-99a9-2f35d04afd65,SESCO,II.1.1,Corrientes,AR-W,annual,2019,naphtha combustion consumption by freight transport,10.8249988,TJ,CH4,3.0,kg/TJ,32.474996399999995,kg +dedd38b5-8fc9-355e-a89c-2a2eec3403ef,SESCO,II.1.1,Corrientes,AR-W,annual,2019,naphtha combustion consumption by freight transport,10.8249988,TJ,N2O,0.6,kg/TJ,6.494999279999999,kg +9a8373d9-6c57-3d2f-b79a-41eab9a07da3,SESCO,II.1.1,Córdoba,AR-X,annual,2019,naphtha combustion consumption by freight transport,37.9025724,TJ,CO2,73300.0,kg/TJ,2778258.55692,kg +74e10240-b676-3632-bf88-70359cd1fa94,SESCO,II.1.1,Córdoba,AR-X,annual,2019,naphtha combustion consumption by freight transport,37.9025724,TJ,CH4,3.0,kg/TJ,113.70771719999999,kg +aa03418e-df5d-3ab1-a9d5-8a8c4a3b7f1e,SESCO,II.1.1,Córdoba,AR-X,annual,2019,naphtha combustion consumption by freight transport,37.9025724,TJ,N2O,0.6,kg/TJ,22.741543439999997,kg +588f6226-f85d-3af4-b5e1-cf30f4a34e79,SESCO,II.1.1,Entre Rios,AR-E,annual,2019,naphtha combustion consumption by freight transport,25.268381599999998,TJ,CO2,73300.0,kg/TJ,1852172.3712799998,kg +1ff81500-b1de-3b0b-b907-47e2b354b1e8,SESCO,II.1.1,Entre Rios,AR-E,annual,2019,naphtha combustion consumption by freight transport,25.268381599999998,TJ,CH4,3.0,kg/TJ,75.8051448,kg +1a2b96d8-dbbd-3185-81c7-48a0815a3116,SESCO,II.1.1,Entre Rios,AR-E,annual,2019,naphtha combustion consumption by freight transport,25.268381599999998,TJ,N2O,0.6,kg/TJ,15.161028959999998,kg +141d540c-2825-39c8-9343-f3aa921d93e8,SESCO,II.1.1,Formosa,AR-P,annual,2019,naphtha combustion consumption by freight transport,0.39199159999999994,TJ,CO2,73300.0,kg/TJ,28732.984279999997,kg +b9a2a862-dd8b-3543-892b-e162d1f08b5e,SESCO,II.1.1,Formosa,AR-P,annual,2019,naphtha combustion consumption by freight transport,0.39199159999999994,TJ,CH4,3.0,kg/TJ,1.1759747999999999,kg +45239613-3734-3236-9221-d860dfaeb607,SESCO,II.1.1,Formosa,AR-P,annual,2019,naphtha combustion consumption by freight transport,0.39199159999999994,TJ,N2O,0.6,kg/TJ,0.23519495999999995,kg +e0d2fd9b-1738-359b-b038-487163188b86,SESCO,II.1.1,Jujuy,AR-Y,annual,2019,naphtha combustion consumption by freight transport,1.6584259999999997,TJ,CO2,73300.0,kg/TJ,121562.62579999998,kg +b303c860-47bf-33a2-9358-35d10545024b,SESCO,II.1.1,Jujuy,AR-Y,annual,2019,naphtha combustion consumption by freight transport,1.6584259999999997,TJ,CH4,3.0,kg/TJ,4.975277999999999,kg +4e92b258-99d2-300c-8bb2-bd8f48dc9936,SESCO,II.1.1,Jujuy,AR-Y,annual,2019,naphtha combustion consumption by freight transport,1.6584259999999997,TJ,N2O,0.6,kg/TJ,0.9950555999999998,kg +9c60ce00-af85-3b3c-9de0-c28b92e42271,SESCO,II.1.1,La Pampa,AR-L,annual,2019,naphtha combustion consumption by freight transport,4.5832863999999995,TJ,CO2,73300.0,kg/TJ,335954.89311999996,kg +2472567f-de69-392e-8a23-6b8d4065728c,SESCO,II.1.1,La Pampa,AR-L,annual,2019,naphtha combustion consumption by freight transport,4.5832863999999995,TJ,CH4,3.0,kg/TJ,13.7498592,kg +1bba9db9-f3f6-30e8-a5a4-988643b6c9de,SESCO,II.1.1,La Pampa,AR-L,annual,2019,naphtha combustion consumption by freight transport,4.5832863999999995,TJ,N2O,0.6,kg/TJ,2.7499718399999997,kg +d02fe717-a6ee-35c2-9f8c-4589ea2ed232,SESCO,II.1.1,La Rioja,AR-F,annual,2019,naphtha combustion consumption by freight transport,2.7740944,TJ,CO2,73300.0,kg/TJ,203341.11952,kg +43894c84-abe9-3771-85f2-7643c99ae47b,SESCO,II.1.1,La Rioja,AR-F,annual,2019,naphtha combustion consumption by freight transport,2.7740944,TJ,CH4,3.0,kg/TJ,8.322283200000001,kg +f31624eb-890c-3fdd-b91e-d76df2e1e98e,SESCO,II.1.1,La Rioja,AR-F,annual,2019,naphtha combustion consumption by freight transport,2.7740944,TJ,N2O,0.6,kg/TJ,1.66445664,kg +65b11fc5-2c8e-3034-b579-e2908ba88009,SESCO,II.1.1,Mendoza,AR-M,annual,2019,naphtha combustion consumption by freight transport,77.64448999999999,TJ,CO2,73300.0,kg/TJ,5691341.117,kg +e88bb713-1ca8-3cdd-a875-a0e742b71f92,SESCO,II.1.1,Mendoza,AR-M,annual,2019,naphtha combustion consumption by freight transport,77.64448999999999,TJ,CH4,3.0,kg/TJ,232.93346999999997,kg +016a9d82-550a-3288-b486-a111c69f5638,SESCO,II.1.1,Mendoza,AR-M,annual,2019,naphtha combustion consumption by freight transport,77.64448999999999,TJ,N2O,0.6,kg/TJ,46.586693999999994,kg +8e33a9fc-ad3f-3c85-9ec5-6a9feb46b8d5,SESCO,II.1.1,Misiones,AR-N,annual,2019,naphtha combustion consumption by freight transport,8.111210799999998,TJ,CO2,73300.0,kg/TJ,594551.7516399999,kg +3b350cad-76eb-3b49-af2d-12783e30cb66,SESCO,II.1.1,Misiones,AR-N,annual,2019,naphtha combustion consumption by freight transport,8.111210799999998,TJ,CH4,3.0,kg/TJ,24.333632399999995,kg +239d5852-ed08-3092-8270-ade2c9ef325c,SESCO,II.1.1,Misiones,AR-N,annual,2019,naphtha combustion consumption by freight transport,8.111210799999998,TJ,N2O,0.6,kg/TJ,4.866726479999999,kg +b4f26f70-52c8-3880-8c93-7fee4d4cddd0,SESCO,II.1.1,Neuquén,AR-Q,annual,2019,naphtha combustion consumption by freight transport,27.198186399999997,TJ,CO2,73300.0,kg/TJ,1993627.0631199998,kg +2b4bf1dd-7e8d-346b-8e54-8ca71a6e40c1,SESCO,II.1.1,Neuquén,AR-Q,annual,2019,naphtha combustion consumption by freight transport,27.198186399999997,TJ,CH4,3.0,kg/TJ,81.59455919999999,kg +16e3a344-1fbe-3b23-ba09-5a76ceb286b9,SESCO,II.1.1,Neuquén,AR-Q,annual,2019,naphtha combustion consumption by freight transport,27.198186399999997,TJ,N2O,0.6,kg/TJ,16.31891184,kg +ed1ec55c-de2a-3f4b-a606-88f3c0fc8b92,SESCO,II.1.1,Rio Negro,AR-R,annual,2019,naphtha combustion consumption by freight transport,52.7982532,TJ,CO2,73300.0,kg/TJ,3870111.95956,kg +e5e04a1a-ee56-36fc-b938-fafa99720de3,SESCO,II.1.1,Rio Negro,AR-R,annual,2019,naphtha combustion consumption by freight transport,52.7982532,TJ,CH4,3.0,kg/TJ,158.3947596,kg +b0b191e2-e2a5-3b33-a1ea-8e50eea67b60,SESCO,II.1.1,Rio Negro,AR-R,annual,2019,naphtha combustion consumption by freight transport,52.7982532,TJ,N2O,0.6,kg/TJ,31.678951919999996,kg +ed41be0f-72f6-3374-962f-c48bbdc4d4f4,SESCO,II.1.1,Salta,AR-A,annual,2019,naphtha combustion consumption by freight transport,11.066224399999998,TJ,CO2,73300.0,kg/TJ,811154.2485199998,kg +22478907-6cbe-38b2-a947-86ff42678246,SESCO,II.1.1,Salta,AR-A,annual,2019,naphtha combustion consumption by freight transport,11.066224399999998,TJ,CH4,3.0,kg/TJ,33.198673199999995,kg +94bece0f-4879-3428-8208-26b1e9a454d2,SESCO,II.1.1,Salta,AR-A,annual,2019,naphtha combustion consumption by freight transport,11.066224399999998,TJ,N2O,0.6,kg/TJ,6.639734639999999,kg +108e5689-0ca3-3c8d-9dcb-1bf16053946d,SESCO,II.1.1,San Juan,AR-J,annual,2019,naphtha combustion consumption by freight transport,1.6584259999999997,TJ,CO2,73300.0,kg/TJ,121562.62579999998,kg +6a10d598-cd06-340e-977a-02b8925612b8,SESCO,II.1.1,San Juan,AR-J,annual,2019,naphtha combustion consumption by freight transport,1.6584259999999997,TJ,CH4,3.0,kg/TJ,4.975277999999999,kg +6de21e20-1cc6-3ee8-84c8-5f57f2fcae31,SESCO,II.1.1,San Juan,AR-J,annual,2019,naphtha combustion consumption by freight transport,1.6584259999999997,TJ,N2O,0.6,kg/TJ,0.9950555999999998,kg +20ccd393-0efa-3a66-8829-8cfe80ad3370,SESCO,II.1.1,San Luis,AR-D,annual,2019,naphtha combustion consumption by freight transport,4.2817544,TJ,CO2,73300.0,kg/TJ,313852.59751999995,kg +5bccc6cf-abc3-3c3e-bcf7-b975a41a92ec,SESCO,II.1.1,San Luis,AR-D,annual,2019,naphtha combustion consumption by freight transport,4.2817544,TJ,CH4,3.0,kg/TJ,12.845263199999998,kg +9b906334-ede4-3a99-847c-1493b99340e9,SESCO,II.1.1,San Luis,AR-D,annual,2019,naphtha combustion consumption by freight transport,4.2817544,TJ,N2O,0.6,kg/TJ,2.5690526399999998,kg +bd6c5e24-0599-3126-bf09-266b8c9d1ae6,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2019,naphtha combustion consumption by freight transport,1.8694984,TJ,CO2,73300.0,kg/TJ,137034.23272,kg +4674a63a-5fab-3063-8dea-407ecfaf1fbb,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2019,naphtha combustion consumption by freight transport,1.8694984,TJ,CH4,3.0,kg/TJ,5.6084952,kg +15ceed24-d9c7-3ffe-a71c-1e9d6b3579da,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2019,naphtha combustion consumption by freight transport,1.8694984,TJ,N2O,0.6,kg/TJ,1.12169904,kg +35ab2477-aa2b-3ff0-b5ea-6eb4d5a8fb12,SESCO,II.1.1,Santa Fe,AR-S,annual,2019,naphtha combustion consumption by freight transport,76.6795876,TJ,CO2,73300.0,kg/TJ,5620613.77108,kg +f83afb5d-4f5a-3a25-a64c-8cd4254c7988,SESCO,II.1.1,Santa Fe,AR-S,annual,2019,naphtha combustion consumption by freight transport,76.6795876,TJ,CH4,3.0,kg/TJ,230.03876280000003,kg +e7734771-b7a6-3075-8a0d-056bcf6f7b4d,SESCO,II.1.1,Santa Fe,AR-S,annual,2019,naphtha combustion consumption by freight transport,76.6795876,TJ,N2O,0.6,kg/TJ,46.00775256,kg +62e876c3-3c5b-3557-be3e-7e85be000b17,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2019,naphtha combustion consumption by freight transport,1.0855152,TJ,CO2,73300.0,kg/TJ,79568.26415999999,kg +534645d0-8d76-3b1c-9c11-3c863016a6aa,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2019,naphtha combustion consumption by freight transport,1.0855152,TJ,CH4,3.0,kg/TJ,3.2565456,kg +e265f6b2-40d9-3268-8c60-769c221b6d6b,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2019,naphtha combustion consumption by freight transport,1.0855152,TJ,N2O,0.6,kg/TJ,0.65130912,kg +cc2e934f-b7f4-338a-a18c-95059b827311,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2019,naphtha combustion consumption by freight transport,2.9851668,TJ,CO2,73300.0,kg/TJ,218812.72644,kg +0e19db0f-281a-3092-b3a8-859fe30ea97c,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2019,naphtha combustion consumption by freight transport,2.9851668,TJ,CH4,3.0,kg/TJ,8.9555004,kg +0d157e42-2ee5-38dc-9c73-542d76670c49,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2019,naphtha combustion consumption by freight transport,2.9851668,TJ,N2O,0.6,kg/TJ,1.7911000799999999,kg +97f6e12f-3398-3127-8752-eeee0a8af381,SESCO,II.1.1,Tucuman,AR-T,annual,2019,naphtha combustion consumption by freight transport,6.6940104,TJ,CO2,73300.0,kg/TJ,490670.96232,kg +36a83af9-427b-394f-a991-2a05c5466029,SESCO,II.1.1,Tucuman,AR-T,annual,2019,naphtha combustion consumption by freight transport,6.6940104,TJ,CH4,3.0,kg/TJ,20.0820312,kg +1e011ff9-b534-3b3c-981d-0c10b1641c81,SESCO,II.1.1,Tucuman,AR-T,annual,2019,naphtha combustion consumption by freight transport,6.6940104,TJ,N2O,0.6,kg/TJ,4.016406239999999,kg +edb16716-c2ab-3168-9cff-1f897066fe30,SESCO,II.5.1,Buenos Aires,AR-B,annual,2020,naphtha combustion consumption by agriculture machines,2.1347094999999996,TJ,CO2,73300.0,kg/TJ,156474.20634999996,kg +a210d481-fcc0-37b5-8798-9d39b32179ea,SESCO,II.5.1,Buenos Aires,AR-B,annual,2020,naphtha combustion consumption by agriculture machines,2.1347094999999996,TJ,CH4,3.0,kg/TJ,6.404128499999999,kg +f716ea4c-2a78-3ee8-a350-691b08e25251,SESCO,II.5.1,Buenos Aires,AR-B,annual,2020,naphtha combustion consumption by agriculture machines,2.1347094999999996,TJ,N2O,0.6,kg/TJ,1.2808256999999996,kg +496fa859-38d0-3e89-bdd2-dcdecc8e28ac,SESCO,II.5.1,Santa Fe,AR-S,annual,2020,naphtha combustion consumption by agriculture machines,0.9758671999999999,TJ,CO2,73300.0,kg/TJ,71531.06576,kg +310a2706-33a5-347b-aa38-e04fcd35d073,SESCO,II.5.1,Santa Fe,AR-S,annual,2020,naphtha combustion consumption by agriculture machines,0.9758671999999999,TJ,CH4,3.0,kg/TJ,2.9276016,kg +83877439-c79f-3f6e-b1f5-4262e464ae0e,SESCO,II.5.1,Santa Fe,AR-S,annual,2020,naphtha combustion consumption by agriculture machines,0.9758671999999999,TJ,N2O,0.6,kg/TJ,0.58552032,kg +0dc6c3e3-dc9b-3e27-9787-c32c89e3dfd1,SESCO,II.5.1,Buenos Aires,AR-B,annual,2020,naphtha combustion consumption by agriculture machines,0.4574377499999999,TJ,CO2,73300.0,kg/TJ,33530.187074999994,kg +506ccc40-6621-3aa6-bc26-022ac53ce8cf,SESCO,II.5.1,Buenos Aires,AR-B,annual,2020,naphtha combustion consumption by agriculture machines,0.4574377499999999,TJ,CH4,3.0,kg/TJ,1.3723132499999997,kg +7e301896-f868-33ae-bdb4-6a01a4f9a6ed,SESCO,II.5.1,Buenos Aires,AR-B,annual,2020,naphtha combustion consumption by agriculture machines,0.4574377499999999,TJ,N2O,0.6,kg/TJ,0.2744626499999999,kg +d6943575-bfac-3d12-9584-a81b82994f06,SESCO,II.1.1,Buenos Aires,AR-B,annual,2020,naphtha combustion consumption by to the public,507.72540664999997,TJ,CO2,73300.0,kg/TJ,37216272.307445,kg +ccad153a-36fb-3c0f-8f7d-50d165bd3fb3,SESCO,II.1.1,Buenos Aires,AR-B,annual,2020,naphtha combustion consumption by to the public,507.72540664999997,TJ,CH4,3.0,kg/TJ,1523.17621995,kg +7a062cfb-42eb-3b4b-bc4b-009c328341cb,SESCO,II.1.1,Buenos Aires,AR-B,annual,2020,naphtha combustion consumption by to the public,507.72540664999997,TJ,N2O,0.6,kg/TJ,304.63524399,kg +af357875-cc5f-36f7-a348-90a4f522d65e,SESCO,II.1.1,Capital Federal,AR-C,annual,2020,naphtha combustion consumption by to the public,34.682930205,TJ,CO2,73300.0,kg/TJ,2542258.7840265,kg +96097cf5-e764-3cee-95d7-c9d197d8dee8,SESCO,II.1.1,Capital Federal,AR-C,annual,2020,naphtha combustion consumption by to the public,34.682930205,TJ,CH4,3.0,kg/TJ,104.048790615,kg +a9c36747-7485-3469-b214-54af4f1c0c51,SESCO,II.1.1,Capital Federal,AR-C,annual,2020,naphtha combustion consumption by to the public,34.682930205,TJ,N2O,0.6,kg/TJ,20.809758122999998,kg +eda79922-a836-3736-b442-30459b8d0dbf,SESCO,II.1.1,Catamarca,AR-K,annual,2020,naphtha combustion consumption by to the public,54.43509225,TJ,CO2,73300.0,kg/TJ,3990092.2619249998,kg +31e0ea20-5d5e-37b7-94e8-d188f5366880,SESCO,II.1.1,Catamarca,AR-K,annual,2020,naphtha combustion consumption by to the public,54.43509225,TJ,CH4,3.0,kg/TJ,163.30527675,kg +061d7d6b-849a-33f0-9d29-ee49df09df68,SESCO,II.1.1,Catamarca,AR-K,annual,2020,naphtha combustion consumption by to the public,54.43509225,TJ,N2O,0.6,kg/TJ,32.66105535,kg +97dbbf23-7b2f-3368-aa91-ff0359343b99,SESCO,II.1.1,Chaco,AR-H,annual,2020,naphtha combustion consumption by to the public,34.67378144999999,TJ,CO2,73300.0,kg/TJ,2541588.1802849993,kg +8c382c45-872c-3bb1-baa7-577b6d388220,SESCO,II.1.1,Chaco,AR-H,annual,2020,naphtha combustion consumption by to the public,34.67378144999999,TJ,CH4,3.0,kg/TJ,104.02134434999998,kg +e6952d15-46e2-31d3-ad96-7b0e3a0a6521,SESCO,II.1.1,Chaco,AR-H,annual,2020,naphtha combustion consumption by to the public,34.67378144999999,TJ,N2O,0.6,kg/TJ,20.804268869999994,kg +a6cec094-eda9-32d5-8758-a7fea6e49b54,SESCO,II.1.1,Corrientes,AR-W,annual,2020,naphtha combustion consumption by to the public,14.607512149999998,TJ,CO2,73300.0,kg/TJ,1070730.6405949998,kg +b6b9d7a1-cc2c-3185-bfc6-7ad906d5d772,SESCO,II.1.1,Corrientes,AR-W,annual,2020,naphtha combustion consumption by to the public,14.607512149999998,TJ,CH4,3.0,kg/TJ,43.822536449999994,kg +a4fb65a8-ccec-3158-85db-7fe24d90ddf9,SESCO,II.1.1,Corrientes,AR-W,annual,2020,naphtha combustion consumption by to the public,14.607512149999998,TJ,N2O,0.6,kg/TJ,8.76450729,kg +06add737-f9a9-3a7a-a106-8f6be0305def,SESCO,II.1.1,Córdoba,AR-X,annual,2020,naphtha combustion consumption by to the public,217.00236943,TJ,CO2,73300.0,kg/TJ,15906273.679218998,kg +25d98aad-7ad3-314c-95f7-172178d8d2e8,SESCO,II.1.1,Córdoba,AR-X,annual,2020,naphtha combustion consumption by to the public,217.00236943,TJ,CH4,3.0,kg/TJ,651.0071082899999,kg +d5195b0e-21c3-32b1-8c5a-c175707190b7,SESCO,II.1.1,Córdoba,AR-X,annual,2020,naphtha combustion consumption by to the public,217.00236943,TJ,N2O,0.6,kg/TJ,130.201421658,kg +11491ed0-cfda-3a88-9e93-302a29015c0c,SESCO,II.1.1,Entre Rios,AR-E,annual,2020,naphtha combustion consumption by to the public,66.59073805999999,TJ,CO2,73300.0,kg/TJ,4881101.0997979995,kg +81afdeca-2143-3cc5-9137-cdc6a31bae60,SESCO,II.1.1,Entre Rios,AR-E,annual,2020,naphtha combustion consumption by to the public,66.59073805999999,TJ,CH4,3.0,kg/TJ,199.77221418,kg +9be1b4c3-4258-3e33-96a8-ddc154eed77c,SESCO,II.1.1,Entre Rios,AR-E,annual,2020,naphtha combustion consumption by to the public,66.59073805999999,TJ,N2O,0.6,kg/TJ,39.95444283599999,kg +3cae16a8-b523-3399-ba6d-783fa36af248,SESCO,II.1.1,Mendoza,AR-M,annual,2020,naphtha combustion consumption by to the public,174.652782535,TJ,CO2,73300.0,kg/TJ,12802048.9598155,kg +0395b739-1919-3815-957e-ee8afdd377ce,SESCO,II.1.1,Mendoza,AR-M,annual,2020,naphtha combustion consumption by to the public,174.652782535,TJ,CH4,3.0,kg/TJ,523.958347605,kg +2d853f3c-8f9f-3860-904a-13927fbd7390,SESCO,II.1.1,Mendoza,AR-M,annual,2020,naphtha combustion consumption by to the public,174.652782535,TJ,N2O,0.6,kg/TJ,104.791669521,kg +a27624bd-12ca-3dcc-a85a-a17c0967e9db,SESCO,II.1.1,San Juan,AR-J,annual,2020,naphtha combustion consumption by to the public,9.154854169999998,TJ,CO2,73300.0,kg/TJ,671050.8106609999,kg +a5aee5e4-73a3-3e65-96dd-634ea3d57358,SESCO,II.1.1,San Juan,AR-J,annual,2020,naphtha combustion consumption by to the public,9.154854169999998,TJ,CH4,3.0,kg/TJ,27.464562509999993,kg +1eb7a7fe-9499-34db-a11b-07fd7de767a6,SESCO,II.1.1,San Juan,AR-J,annual,2020,naphtha combustion consumption by to the public,9.154854169999998,TJ,N2O,0.6,kg/TJ,5.4929125019999985,kg +32e0d36f-fd84-3013-bc9b-6725e025caea,SESCO,II.1.1,San Luis,AR-D,annual,2020,naphtha combustion consumption by to the public,43.005247669999996,TJ,CO2,73300.0,kg/TJ,3152284.6542109996,kg +fc2bae83-7c9e-33bb-b7bc-13be9d864a44,SESCO,II.1.1,San Luis,AR-D,annual,2020,naphtha combustion consumption by to the public,43.005247669999996,TJ,CH4,3.0,kg/TJ,129.01574301,kg +cc375288-7ad2-3fbb-b078-08d8e6fd7968,SESCO,II.1.1,San Luis,AR-D,annual,2020,naphtha combustion consumption by to the public,43.005247669999996,TJ,N2O,0.6,kg/TJ,25.803148601999997,kg +ad1d3176-7b8c-3c99-92dd-3505987e7db8,SESCO,II.1.1,Santa Fe,AR-S,annual,2020,naphtha combustion consumption by to the public,166.851944105,TJ,CO2,73300.0,kg/TJ,12230247.5028965,kg +7a54f4f2-bef9-3ae5-96d1-834cd564d853,SESCO,II.1.1,Santa Fe,AR-S,annual,2020,naphtha combustion consumption by to the public,166.851944105,TJ,CH4,3.0,kg/TJ,500.555832315,kg +938b9d61-b70d-35b4-b70b-773e51bd0b6a,SESCO,II.1.1,Santa Fe,AR-S,annual,2020,naphtha combustion consumption by to the public,166.851944105,TJ,N2O,0.6,kg/TJ,100.111166463,kg +1813ddff-2dde-3c13-bd9c-f2375f2b5c5e,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2020,naphtha combustion consumption by to the public,42.977801405,TJ,CO2,73300.0,kg/TJ,3150272.8429865,kg +7f7b1654-743f-3b1c-8720-57b4ba9995fe,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2020,naphtha combustion consumption by to the public,42.977801405,TJ,CH4,3.0,kg/TJ,128.933404215,kg +e6a9cae8-d31d-3408-885d-e5b6300b7ee2,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2020,naphtha combustion consumption by to the public,42.977801405,TJ,N2O,0.6,kg/TJ,25.786680843,kg +ba31cdac-1a2d-3cfb-aa56-1443193eb344,SESCO,II.1.1,Tucuman,AR-T,annual,2020,naphtha combustion consumption by to the public,11.801893949999998,TJ,CO2,73300.0,kg/TJ,865078.8265349999,kg +8b48dbfa-a343-3524-94a8-43320d47cca0,SESCO,II.1.1,Tucuman,AR-T,annual,2020,naphtha combustion consumption by to the public,11.801893949999998,TJ,CH4,3.0,kg/TJ,35.40568184999999,kg +4a9b5218-b6e5-3e06-a05a-49cf46a81d65,SESCO,II.1.1,Tucuman,AR-T,annual,2020,naphtha combustion consumption by to the public,11.801893949999998,TJ,N2O,0.6,kg/TJ,7.0811363699999985,kg +ea9c7790-e2f8-3e73-aba5-9cdbe8f4b38f,SESCO,II.1.1,Buenos Aires,AR-B,annual,2020,naphtha combustion consumption by to the public,44.59713104,TJ,CO2,73300.0,kg/TJ,3268969.705232,kg +ad166495-ff04-3f7c-81d7-3c8e379855c1,SESCO,II.1.1,Buenos Aires,AR-B,annual,2020,naphtha combustion consumption by to the public,44.59713104,TJ,CH4,3.0,kg/TJ,133.79139312,kg +38ccee05-df2c-3421-8e85-df83574e70ac,SESCO,II.1.1,Buenos Aires,AR-B,annual,2020,naphtha combustion consumption by to the public,44.59713104,TJ,N2O,0.6,kg/TJ,26.758278624,kg +7fd95cdd-0e23-384e-be16-c91b0b751829,SESCO,II.1.1,Capital Federal,AR-C,annual,2020,naphtha combustion consumption by to the public,5.492302584999999,TJ,CO2,73300.0,kg/TJ,402585.7794804999,kg +8f5c704c-6584-3878-a159-b07823e065ea,SESCO,II.1.1,Capital Federal,AR-C,annual,2020,naphtha combustion consumption by to the public,5.492302584999999,TJ,CH4,3.0,kg/TJ,16.476907755,kg +32d84b8b-07a0-3d0a-b821-b47b69eec523,SESCO,II.1.1,Capital Federal,AR-C,annual,2020,naphtha combustion consumption by to the public,5.492302584999999,TJ,N2O,0.6,kg/TJ,3.2953815509999993,kg +0f9425ce-25c4-3127-aa46-dba4a32bff97,SESCO,II.1.1,Catamarca,AR-K,annual,2020,naphtha combustion consumption by to the public,5.8856990499999995,TJ,CO2,73300.0,kg/TJ,431421.740365,kg +4bf08c3c-5d4f-3382-b4e1-f3a14bfe0a19,SESCO,II.1.1,Catamarca,AR-K,annual,2020,naphtha combustion consumption by to the public,5.8856990499999995,TJ,CH4,3.0,kg/TJ,17.65709715,kg +ea660f9c-7f67-3da2-b84d-72fc434e074c,SESCO,II.1.1,Catamarca,AR-K,annual,2020,naphtha combustion consumption by to the public,5.8856990499999995,TJ,N2O,0.6,kg/TJ,3.5314194299999997,kg +8854ae4c-4755-361f-8ab0-858f9dac7d9b,SESCO,II.1.1,Chaco,AR-H,annual,2020,naphtha combustion consumption by to the public,1.7382634499999998,TJ,CO2,73300.0,kg/TJ,127414.710885,kg +7d84ecf2-218f-3ae9-8fe8-21b9f0fb64ae,SESCO,II.1.1,Chaco,AR-H,annual,2020,naphtha combustion consumption by to the public,1.7382634499999998,TJ,CH4,3.0,kg/TJ,5.2147903499999995,kg +4cfb90ac-a50d-3900-84ca-89a2ca7579d4,SESCO,II.1.1,Chaco,AR-H,annual,2020,naphtha combustion consumption by to the public,1.7382634499999998,TJ,N2O,0.6,kg/TJ,1.0429580699999998,kg +1c82f91a-ea9c-32c2-a9f4-17175bfc849f,SESCO,II.1.1,Corrientes,AR-W,annual,2020,naphtha combustion consumption by to the public,1.0368589,TJ,CO2,73300.0,kg/TJ,76001.75736999999,kg +8187e163-f8b9-3d9b-aec8-947ebcc51d59,SESCO,II.1.1,Corrientes,AR-W,annual,2020,naphtha combustion consumption by to the public,1.0368589,TJ,CH4,3.0,kg/TJ,3.1105766999999998,kg +9c509796-9a1d-3d86-850e-c7150a77a847,SESCO,II.1.1,Corrientes,AR-W,annual,2020,naphtha combustion consumption by to the public,1.0368589,TJ,N2O,0.6,kg/TJ,0.6221153399999999,kg +2f069c92-e754-3950-8261-2ef0206ea0e8,SESCO,II.1.1,Córdoba,AR-X,annual,2020,naphtha combustion consumption by to the public,25.558571884999996,TJ,CO2,73300.0,kg/TJ,1873443.3191704997,kg +974d2fb7-a233-3382-8566-55e4e3a1e8ed,SESCO,II.1.1,Córdoba,AR-X,annual,2020,naphtha combustion consumption by to the public,25.558571884999996,TJ,CH4,3.0,kg/TJ,76.67571565499999,kg +6c9cf30a-1b87-3694-a44c-d15d86637123,SESCO,II.1.1,Córdoba,AR-X,annual,2020,naphtha combustion consumption by to the public,25.558571884999996,TJ,N2O,0.6,kg/TJ,15.335143130999997,kg +fdbedade-5951-3d5d-b439-b7f1c305ea5a,SESCO,II.1.1,Entre Rios,AR-E,annual,2020,naphtha combustion consumption by to the public,5.8856990499999995,TJ,CO2,73300.0,kg/TJ,431421.740365,kg +2e665d50-506a-3598-a956-65e5b8e5d918,SESCO,II.1.1,Entre Rios,AR-E,annual,2020,naphtha combustion consumption by to the public,5.8856990499999995,TJ,CH4,3.0,kg/TJ,17.65709715,kg +a10743ff-0f45-37b0-a6e2-96e09c8dac67,SESCO,II.1.1,Entre Rios,AR-E,annual,2020,naphtha combustion consumption by to the public,5.8856990499999995,TJ,N2O,0.6,kg/TJ,3.5314194299999997,kg +99455c76-ea90-335c-bf28-7bc40357689f,SESCO,II.1.1,Mendoza,AR-M,annual,2020,naphtha combustion consumption by to the public,32.365245605,TJ,CO2,73300.0,kg/TJ,2372372.5028465,kg +39d85a39-3d4c-31b8-9efe-10da87d7f790,SESCO,II.1.1,Mendoza,AR-M,annual,2020,naphtha combustion consumption by to the public,32.365245605,TJ,CH4,3.0,kg/TJ,97.095736815,kg +db78b39d-0f11-3895-935e-3ae7d208a839,SESCO,II.1.1,Mendoza,AR-M,annual,2020,naphtha combustion consumption by to the public,32.365245605,TJ,N2O,0.6,kg/TJ,19.419147362999997,kg +f84c133f-207d-3c42-8e35-bb5ccef059f7,SESCO,II.1.1,San Juan,AR-J,annual,2020,naphtha combustion consumption by to the public,1.619329635,TJ,CO2,73300.0,kg/TJ,118696.8622455,kg +16589388-91bb-3682-82ff-3926fc9f8f69,SESCO,II.1.1,San Juan,AR-J,annual,2020,naphtha combustion consumption by to the public,1.619329635,TJ,CH4,3.0,kg/TJ,4.857988905,kg +027e40d5-949c-3026-815c-276269a520ba,SESCO,II.1.1,San Juan,AR-J,annual,2020,naphtha combustion consumption by to the public,1.619329635,TJ,N2O,0.6,kg/TJ,0.9715977809999999,kg +ddf1ccef-100d-3417-bb5e-e40c71fbfbd9,SESCO,II.1.1,San Luis,AR-D,annual,2020,naphtha combustion consumption by to the public,1.6162800499999999,TJ,CO2,73300.0,kg/TJ,118473.32766499999,kg +b73ecaea-a557-3d44-afca-da8ac07853e6,SESCO,II.1.1,San Luis,AR-D,annual,2020,naphtha combustion consumption by to the public,1.6162800499999999,TJ,CH4,3.0,kg/TJ,4.848840149999999,kg +be60919c-331c-35a0-9e51-3a139597d7e3,SESCO,II.1.1,San Luis,AR-D,annual,2020,naphtha combustion consumption by to the public,1.6162800499999999,TJ,N2O,0.6,kg/TJ,0.9697680299999999,kg +e15f87b9-dc31-36e7-8841-6854398ab768,SESCO,II.1.1,Santa Fe,AR-S,annual,2020,naphtha combustion consumption by to the public,30.102453535,TJ,CO2,73300.0,kg/TJ,2206509.8441155,kg +1602965b-c5ee-3af2-a3ae-6bf69a7a42b6,SESCO,II.1.1,Santa Fe,AR-S,annual,2020,naphtha combustion consumption by to the public,30.102453535,TJ,CH4,3.0,kg/TJ,90.307360605,kg +744525cb-bd64-3133-a596-450fdf45d27b,SESCO,II.1.1,Santa Fe,AR-S,annual,2020,naphtha combustion consumption by to the public,30.102453535,TJ,N2O,0.6,kg/TJ,18.061472120999998,kg +a61e34d8-ef75-3117-bbc9-2bd44b9f3dd1,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2020,naphtha combustion consumption by to the public,4.638418785,TJ,CO2,73300.0,kg/TJ,339996.09694049996,kg +5a9f2fb8-c868-3ced-b8dc-1602b1bcac5c,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2020,naphtha combustion consumption by to the public,4.638418785,TJ,CH4,3.0,kg/TJ,13.915256355,kg +c73ab721-c170-3f55-bb42-917580e7f005,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2020,naphtha combustion consumption by to the public,4.638418785,TJ,N2O,0.6,kg/TJ,2.7830512709999997,kg +e51ec0be-6d4e-3263-a9f1-e0d072c8aceb,SESCO,II.1.1,Tucuman,AR-T,annual,2020,naphtha combustion consumption by to the public,0.4269419,TJ,CO2,73300.0,kg/TJ,31294.841269999997,kg +fc1c3533-d310-3dbe-aaec-4e106e253d06,SESCO,II.1.1,Tucuman,AR-T,annual,2020,naphtha combustion consumption by to the public,0.4269419,TJ,CH4,3.0,kg/TJ,1.2808256999999998,kg +1c7e426a-d319-3bb1-97bd-d524c79b6b98,SESCO,II.1.1,Tucuman,AR-T,annual,2020,naphtha combustion consumption by to the public,0.4269419,TJ,N2O,0.6,kg/TJ,0.25616513999999996,kg +e2aaa73c-a333-3729-8561-08c82bb188f4,SESCO,II.5.1,Chaco,AR-H,annual,2020,naphtha combustion consumption by agriculture machines,13.601149099999999,TJ,CO2,73300.0,kg/TJ,996964.2290299999,kg +21753b3b-eea6-31d4-8527-b5c6aeda1573,SESCO,II.5.1,Chaco,AR-H,annual,2020,naphtha combustion consumption by agriculture machines,13.601149099999999,TJ,CH4,3.0,kg/TJ,40.803447299999995,kg +dbb59380-0806-3b5c-b4d8-e5d016257325,SESCO,II.5.1,Chaco,AR-H,annual,2020,naphtha combustion consumption by agriculture machines,13.601149099999999,TJ,N2O,0.6,kg/TJ,8.160689459999999,kg +7d379187-5727-3f1c-98ee-110eeb37104c,SESCO,II.5.1,Córdoba,AR-X,annual,2020,naphtha combustion consumption by agriculture machines,9.54520105,TJ,CO2,73300.0,kg/TJ,699663.2369649999,kg +e20099e3-fd4f-386c-b408-5098d474de73,SESCO,II.5.1,Córdoba,AR-X,annual,2020,naphtha combustion consumption by agriculture machines,9.54520105,TJ,CH4,3.0,kg/TJ,28.635603149999998,kg +80baf0f1-d30a-3114-9f87-34724d51bdf2,SESCO,II.5.1,Córdoba,AR-X,annual,2020,naphtha combustion consumption by agriculture machines,9.54520105,TJ,N2O,0.6,kg/TJ,5.727120629999999,kg +41776623-f885-3927-a530-7e1badf76fa1,SESCO,II.5.1,Mendoza,AR-M,annual,2020,naphtha combustion consumption by agriculture machines,3.1715684,TJ,CO2,73300.0,kg/TJ,232475.96372,kg +e129fa3b-94a9-3882-ad0d-1d855ba09776,SESCO,II.5.1,Mendoza,AR-M,annual,2020,naphtha combustion consumption by agriculture machines,3.1715684,TJ,CH4,3.0,kg/TJ,9.5147052,kg +da3dc3cc-2062-3743-a2ee-4a94ff4b5c00,SESCO,II.5.1,Mendoza,AR-M,annual,2020,naphtha combustion consumption by agriculture machines,3.1715684,TJ,N2O,0.6,kg/TJ,1.90294104,kg +01106775-4446-35a5-b4b6-f5582d879c59,SESCO,II.5.1,Santa Fe,AR-S,annual,2020,naphtha combustion consumption by agriculture machines,1.43330495,TJ,CO2,73300.0,kg/TJ,105061.25283499999,kg +173dc022-e903-3a01-b5af-e8fa1d20b633,SESCO,II.5.1,Santa Fe,AR-S,annual,2020,naphtha combustion consumption by agriculture machines,1.43330495,TJ,CH4,3.0,kg/TJ,4.2999148499999995,kg +398639e4-93db-3c1b-9085-2a282f919ddb,SESCO,II.5.1,Santa Fe,AR-S,annual,2020,naphtha combustion consumption by agriculture machines,1.43330495,TJ,N2O,0.6,kg/TJ,0.8599829699999999,kg +60ab90d8-7e81-3f7b-80a4-a892455e6480,SESCO,II.5.1,Buenos Aires,AR-B,annual,2020,naphtha combustion consumption by agriculture machines,0.18297509999999997,TJ,CO2,73300.0,kg/TJ,13412.074829999998,kg +9abc71a9-5dcf-35a1-a6ac-1f0015dbbf52,SESCO,II.5.1,Buenos Aires,AR-B,annual,2020,naphtha combustion consumption by agriculture machines,0.18297509999999997,TJ,CH4,3.0,kg/TJ,0.5489253,kg +80045a04-c236-3885-86ef-7b03f63ed9fb,SESCO,II.5.1,Buenos Aires,AR-B,annual,2020,naphtha combustion consumption by agriculture machines,0.18297509999999997,TJ,N2O,0.6,kg/TJ,0.10978505999999998,kg +bb9ad9d2-2d68-3d29-b482-fb129c47d596,SESCO,II.5.1,Chaco,AR-H,annual,2020,naphtha combustion consumption by agriculture machines,0.9758671999999999,TJ,CO2,73300.0,kg/TJ,71531.06576,kg +60217c42-49a0-37ec-91ac-092afd0944cc,SESCO,II.5.1,Chaco,AR-H,annual,2020,naphtha combustion consumption by agriculture machines,0.9758671999999999,TJ,CH4,3.0,kg/TJ,2.9276016,kg +d25cfce4-216f-39f8-b70d-24fac5eed34c,SESCO,II.5.1,Chaco,AR-H,annual,2020,naphtha combustion consumption by agriculture machines,0.9758671999999999,TJ,N2O,0.6,kg/TJ,0.58552032,kg +639764eb-0677-3eb2-aa68-7a60d2271aa4,SESCO,II.5.1,Córdoba,AR-X,annual,2020,naphtha combustion consumption by agriculture machines,0.7623962499999999,TJ,CO2,73300.0,kg/TJ,55883.64512499999,kg +6b599922-aa55-38c0-93d9-28e47bb27d96,SESCO,II.5.1,Córdoba,AR-X,annual,2020,naphtha combustion consumption by agriculture machines,0.7623962499999999,TJ,CH4,3.0,kg/TJ,2.2871887499999994,kg +3331d3a4-5479-3cc0-9690-967934bcdcfc,SESCO,II.5.1,Córdoba,AR-X,annual,2020,naphtha combustion consumption by agriculture machines,0.7623962499999999,TJ,N2O,0.6,kg/TJ,0.4574377499999999,kg +2c2883bf-3e61-357d-802d-caa4fc6a134e,SESCO,II.5.1,Mendoza,AR-M,annual,2020,naphtha combustion consumption by agriculture machines,0.12198339999999999,TJ,CO2,73300.0,kg/TJ,8941.38322,kg +00ffcc57-62b2-32de-b5ff-ee105dc9a78b,SESCO,II.5.1,Mendoza,AR-M,annual,2020,naphtha combustion consumption by agriculture machines,0.12198339999999999,TJ,CH4,3.0,kg/TJ,0.3659502,kg +647d99b2-410f-3c86-a85c-771c8bb1049c,SESCO,II.5.1,Mendoza,AR-M,annual,2020,naphtha combustion consumption by agriculture machines,0.12198339999999999,TJ,N2O,0.6,kg/TJ,0.07319004,kg +69c5d7f7-331d-3018-8215-e9775d06a22d,SESCO,II.1.1,Buenos Aires,AR-B,annual,2020,naphtha combustion consumption by to the public,743.9157648999999,TJ,CO2,73300.0,kg/TJ,54529025.567169994,kg +99ef237c-ab60-3283-8f6f-afd580cd9e1e,SESCO,II.1.1,Buenos Aires,AR-B,annual,2020,naphtha combustion consumption by to the public,743.9157648999999,TJ,CH4,3.0,kg/TJ,2231.7472946999997,kg +98d7f352-0eb9-31df-9640-c01ee4ea1794,SESCO,II.1.1,Buenos Aires,AR-B,annual,2020,naphtha combustion consumption by to the public,743.9157648999999,TJ,N2O,0.6,kg/TJ,446.3494589399999,kg +f08610d9-f753-37cf-8528-12baa1c48c1a,SESCO,II.1.1,Capital Federal,AR-C,annual,2020,naphtha combustion consumption by to the public,138.32917559999999,TJ,CO2,73300.0,kg/TJ,10139528.571479999,kg +f6ffc00e-81e7-3d26-aab3-fd37a8003532,SESCO,II.1.1,Capital Federal,AR-C,annual,2020,naphtha combustion consumption by to the public,138.32917559999999,TJ,CH4,3.0,kg/TJ,414.98752679999996,kg +e081f513-44f3-35e6-8fd8-c25ec914cff8,SESCO,II.1.1,Capital Federal,AR-C,annual,2020,naphtha combustion consumption by to the public,138.32917559999999,TJ,N2O,0.6,kg/TJ,82.99750535999999,kg +6db40a9c-07f6-345d-8f4c-1f48b50fbc7c,SESCO,II.1.1,Catamarca,AR-K,annual,2020,naphtha combustion consumption by to the public,80.6310274,TJ,CO2,73300.0,kg/TJ,5910254.30842,kg +e8d23f0f-ed0d-3d6e-bb8c-3f1767033441,SESCO,II.1.1,Catamarca,AR-K,annual,2020,naphtha combustion consumption by to the public,80.6310274,TJ,CH4,3.0,kg/TJ,241.89308219999998,kg +5cf335e0-47f3-3441-8f36-92b185982815,SESCO,II.1.1,Catamarca,AR-K,annual,2020,naphtha combustion consumption by to the public,80.6310274,TJ,N2O,0.6,kg/TJ,48.378616439999995,kg +860788e2-aee4-3b17-a6a9-12ba05cb52f8,SESCO,II.1.1,Chaco,AR-H,annual,2020,naphtha combustion consumption by to the public,86.27275964999998,TJ,CO2,73300.0,kg/TJ,6323793.282344999,kg +ef3fbc31-a721-3b78-a482-bd70c7f86df4,SESCO,II.1.1,Chaco,AR-H,annual,2020,naphtha combustion consumption by to the public,86.27275964999998,TJ,CH4,3.0,kg/TJ,258.8182789499999,kg +133068db-4e30-3173-be27-fa2a197a4246,SESCO,II.1.1,Chaco,AR-H,annual,2020,naphtha combustion consumption by to the public,86.27275964999998,TJ,N2O,0.6,kg/TJ,51.76365578999999,kg +d93c4791-95d7-30e3-aeb6-2c48070c46f6,SESCO,II.1.1,Corrientes,AR-W,annual,2020,naphtha combustion consumption by to the public,95.23853954999998,TJ,CO2,73300.0,kg/TJ,6980984.949014999,kg +a25d0fca-5abe-3b22-97f0-cb15e2d31a55,SESCO,II.1.1,Corrientes,AR-W,annual,2020,naphtha combustion consumption by to the public,95.23853954999998,TJ,CH4,3.0,kg/TJ,285.71561864999995,kg +2a0acc03-e6b7-3ed3-bfdd-3482514bcba2,SESCO,II.1.1,Corrientes,AR-W,annual,2020,naphtha combustion consumption by to the public,95.23853954999998,TJ,N2O,0.6,kg/TJ,57.14312372999999,kg +89121b8c-71f5-370a-94e1-43f56068d2c3,SESCO,II.1.1,Córdoba,AR-X,annual,2020,naphtha combustion consumption by to the public,348.3235987,TJ,CO2,73300.0,kg/TJ,25532119.784709997,kg +a198af53-f5a9-3d52-82e3-89aa06c45b66,SESCO,II.1.1,Córdoba,AR-X,annual,2020,naphtha combustion consumption by to the public,348.3235987,TJ,CH4,3.0,kg/TJ,1044.9707961,kg +43ab09d3-66da-392f-b173-b263d100d55c,SESCO,II.1.1,Córdoba,AR-X,annual,2020,naphtha combustion consumption by to the public,348.3235987,TJ,N2O,0.6,kg/TJ,208.99415922,kg +b27dd8dd-141d-3d22-ac97-3618f6990ce6,SESCO,II.1.1,Entre Rios,AR-E,annual,2020,naphtha combustion consumption by to the public,74.92830344999999,TJ,CO2,73300.0,kg/TJ,5492244.6428849995,kg +cd471ab8-b08a-3f95-bdce-c949cb6a3577,SESCO,II.1.1,Entre Rios,AR-E,annual,2020,naphtha combustion consumption by to the public,74.92830344999999,TJ,CH4,3.0,kg/TJ,224.78491034999996,kg +76c17f01-77ea-3847-8132-04d545cef938,SESCO,II.1.1,Entre Rios,AR-E,annual,2020,naphtha combustion consumption by to the public,74.92830344999999,TJ,N2O,0.6,kg/TJ,44.95698206999999,kg +16d252d6-c6ad-3cb2-a213-cc566878db0b,SESCO,II.1.1,Formosa,AR-P,annual,2020,naphtha combustion consumption by to the public,68.8596293,TJ,CO2,73300.0,kg/TJ,5047410.82769,kg +48ac599f-9c3f-3048-96e8-d6a33c277672,SESCO,II.1.1,Formosa,AR-P,annual,2020,naphtha combustion consumption by to the public,68.8596293,TJ,CH4,3.0,kg/TJ,206.57888789999998,kg +6492fb60-6a5f-31f4-9c52-cc22bd8c4016,SESCO,II.1.1,Formosa,AR-P,annual,2020,naphtha combustion consumption by to the public,68.8596293,TJ,N2O,0.6,kg/TJ,41.315777579999995,kg +33c8f2d9-59c6-3c60-9653-10a184eea9f7,SESCO,II.1.1,La Rioja,AR-F,annual,2020,naphtha combustion consumption by to the public,38.9736963,TJ,CO2,73300.0,kg/TJ,2856771.93879,kg +745a6b70-29b9-31c0-9304-32a0b3fb490b,SESCO,II.1.1,La Rioja,AR-F,annual,2020,naphtha combustion consumption by to the public,38.9736963,TJ,CH4,3.0,kg/TJ,116.9210889,kg +d505bb99-ee92-3032-82a0-c58303bf934c,SESCO,II.1.1,La Rioja,AR-F,annual,2020,naphtha combustion consumption by to the public,38.9736963,TJ,N2O,0.6,kg/TJ,23.38421778,kg +2c40081f-2e92-3c22-bc3a-5d5295dd16db,SESCO,II.1.1,Mendoza,AR-M,annual,2020,naphtha combustion consumption by to the public,274.55413754999995,TJ,CO2,73300.0,kg/TJ,20124818.282414995,kg +51ba4462-1ff0-3e00-b77f-77e7bc1b44db,SESCO,II.1.1,Mendoza,AR-M,annual,2020,naphtha combustion consumption by to the public,274.55413754999995,TJ,CH4,3.0,kg/TJ,823.6624126499999,kg +b73d31d3-5668-30f6-b5bf-0be5abbbb1eb,SESCO,II.1.1,Mendoza,AR-M,annual,2020,naphtha combustion consumption by to the public,274.55413754999995,TJ,N2O,0.6,kg/TJ,164.73248252999997,kg +1372c5c3-484e-3b81-a23f-6e21d4e29b81,SESCO,II.1.1,Misiones,AR-N,annual,2020,naphtha combustion consumption by to the public,81.21044855,TJ,CO2,73300.0,kg/TJ,5952725.878715,kg +51746e2e-b18d-3c1e-a2d0-fbd457aa56c7,SESCO,II.1.1,Misiones,AR-N,annual,2020,naphtha combustion consumption by to the public,81.21044855,TJ,CH4,3.0,kg/TJ,243.63134565,kg +3ba893e0-a845-39bf-b2fe-817e00c2dc3e,SESCO,II.1.1,Misiones,AR-N,annual,2020,naphtha combustion consumption by to the public,81.21044855,TJ,N2O,0.6,kg/TJ,48.72626913,kg +e4a3a62a-205e-38b7-96c0-4753e3185f77,SESCO,II.1.1,Salta,AR-A,annual,2020,naphtha combustion consumption by to the public,0.18297509999999997,TJ,CO2,73300.0,kg/TJ,13412.074829999998,kg +56b80068-5bba-3cd8-b315-d9010134fb5e,SESCO,II.1.1,Salta,AR-A,annual,2020,naphtha combustion consumption by to the public,0.18297509999999997,TJ,CH4,3.0,kg/TJ,0.5489253,kg +adee5898-ceaf-36df-966f-41100341b82f,SESCO,II.1.1,Salta,AR-A,annual,2020,naphtha combustion consumption by to the public,0.18297509999999997,TJ,N2O,0.6,kg/TJ,0.10978505999999998,kg +c4cec8a2-a825-3978-abd5-75c65e1c3c7e,SESCO,II.1.1,San Juan,AR-J,annual,2020,naphtha combustion consumption by to the public,72.12268524999999,TJ,CO2,73300.0,kg/TJ,5286592.828824999,kg +0e8d2e41-a284-3cad-bac1-967bd49aa4ff,SESCO,II.1.1,San Juan,AR-J,annual,2020,naphtha combustion consumption by to the public,72.12268524999999,TJ,CH4,3.0,kg/TJ,216.36805574999997,kg +2291f2e9-08a4-318b-97e4-0bf7fad86ef7,SESCO,II.1.1,San Juan,AR-J,annual,2020,naphtha combustion consumption by to the public,72.12268524999999,TJ,N2O,0.6,kg/TJ,43.273611149999994,kg +3dbd9401-5fdb-3dad-978d-0a9a45894235,SESCO,II.1.1,San Luis,AR-D,annual,2020,naphtha combustion consumption by to the public,33.88088935,TJ,CO2,73300.0,kg/TJ,2483469.189355,kg +c4e352be-a84c-3ce8-97f9-d485fb3e589e,SESCO,II.1.1,San Luis,AR-D,annual,2020,naphtha combustion consumption by to the public,33.88088935,TJ,CH4,3.0,kg/TJ,101.64266805,kg +f0082968-c2d1-3917-b57f-7f4088c63604,SESCO,II.1.1,San Luis,AR-D,annual,2020,naphtha combustion consumption by to the public,33.88088935,TJ,N2O,0.6,kg/TJ,20.328533609999997,kg +5f00f666-c0c4-3524-a008-3f22b0d16a74,SESCO,II.1.1,Santa Fe,AR-S,annual,2020,naphtha combustion consumption by to the public,239.66688514999998,TJ,CO2,73300.0,kg/TJ,17567582.681495,kg +c5c12a00-0b6e-3cb8-babc-8eaf131f620d,SESCO,II.1.1,Santa Fe,AR-S,annual,2020,naphtha combustion consumption by to the public,239.66688514999998,TJ,CH4,3.0,kg/TJ,719.00065545,kg +68254409-4717-3e56-90e6-3e539bb90339,SESCO,II.1.1,Santa Fe,AR-S,annual,2020,naphtha combustion consumption by to the public,239.66688514999998,TJ,N2O,0.6,kg/TJ,143.80013108999998,kg +28ac7f14-109f-33fe-b54f-1ab0d40168af,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2020,naphtha combustion consumption by to the public,65.0171522,TJ,CO2,73300.0,kg/TJ,4765757.25626,kg +144efe79-f2fa-32b8-82f0-f871cded85eb,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2020,naphtha combustion consumption by to the public,65.0171522,TJ,CH4,3.0,kg/TJ,195.0514566,kg +4f799f12-1b6e-39af-b9eb-131534737b39,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2020,naphtha combustion consumption by to the public,65.0171522,TJ,N2O,0.6,kg/TJ,39.01029132,kg +e4c528e6-9725-3524-a860-027a31f3105b,SESCO,II.1.1,Tucuman,AR-T,annual,2020,naphtha combustion consumption by to the public,27.263289899999997,TJ,CO2,73300.0,kg/TJ,1998399.1496699997,kg +07eb7b5a-78d5-363d-85b1-6d57ca3eece4,SESCO,II.1.1,Tucuman,AR-T,annual,2020,naphtha combustion consumption by to the public,27.263289899999997,TJ,CH4,3.0,kg/TJ,81.7898697,kg +6d1de452-a645-3566-98e6-ab89b6e4a0fe,SESCO,II.1.1,Tucuman,AR-T,annual,2020,naphtha combustion consumption by to the public,27.263289899999997,TJ,N2O,0.6,kg/TJ,16.357973939999997,kg +44573c1f-2697-35a2-be90-0d6b30066536,SESCO,II.1.1,Buenos Aires,AR-B,annual,2020,naphtha combustion consumption by to the public,79.0452432,TJ,CO2,73300.0,kg/TJ,5794016.32656,kg +4b9ba22e-9a45-3d1f-8a7a-e9cf5cf3f287,SESCO,II.1.1,Buenos Aires,AR-B,annual,2020,naphtha combustion consumption by to the public,79.0452432,TJ,CH4,3.0,kg/TJ,237.1357296,kg +98fcc85b-15ed-398e-ac73-51d7c38567cc,SESCO,II.1.1,Buenos Aires,AR-B,annual,2020,naphtha combustion consumption by to the public,79.0452432,TJ,N2O,0.6,kg/TJ,47.42714592,kg +4d684c6e-349b-3e43-a758-b07cbaa9cc81,SESCO,II.1.1,Capital Federal,AR-C,annual,2020,naphtha combustion consumption by to the public,18.7244519,TJ,CO2,73300.0,kg/TJ,1372502.32427,kg +38c0f935-281e-3db0-8c6b-3f14f95d3a27,SESCO,II.1.1,Capital Federal,AR-C,annual,2020,naphtha combustion consumption by to the public,18.7244519,TJ,CH4,3.0,kg/TJ,56.173355699999995,kg +877f3d09-19ac-3bf9-bc1d-c30e183e5640,SESCO,II.1.1,Capital Federal,AR-C,annual,2020,naphtha combustion consumption by to the public,18.7244519,TJ,N2O,0.6,kg/TJ,11.234671139999998,kg +a51c2b04-d703-33d4-b303-1ed727e9ae94,SESCO,II.1.1,Catamarca,AR-K,annual,2020,naphtha combustion consumption by to the public,6.73958285,TJ,CO2,73300.0,kg/TJ,494011.422905,kg +2c02cb38-125b-3d5e-9794-39c5d1aa4c7e,SESCO,II.1.1,Catamarca,AR-K,annual,2020,naphtha combustion consumption by to the public,6.73958285,TJ,CH4,3.0,kg/TJ,20.21874855,kg +fb1dbfcd-e8b4-39dc-8409-43900e40a40a,SESCO,II.1.1,Catamarca,AR-K,annual,2020,naphtha combustion consumption by to the public,6.73958285,TJ,N2O,0.6,kg/TJ,4.043749709999999,kg +93fcbe44-ebe3-37dd-a09d-a4a59f846103,SESCO,II.1.1,Chaco,AR-H,annual,2020,naphtha combustion consumption by to the public,4.1474356,TJ,CO2,73300.0,kg/TJ,304007.02947999997,kg +c1dbfbfe-2202-32bf-85b8-621893956c44,SESCO,II.1.1,Chaco,AR-H,annual,2020,naphtha combustion consumption by to the public,4.1474356,TJ,CH4,3.0,kg/TJ,12.442306799999999,kg +ef6953e2-2ae1-32ce-9492-757de2180201,SESCO,II.1.1,Chaco,AR-H,annual,2020,naphtha combustion consumption by to the public,4.1474356,TJ,N2O,0.6,kg/TJ,2.4884613599999996,kg +03e9e3bb-8462-3843-b618-b326fc01d5b6,SESCO,II.1.1,Corrientes,AR-W,annual,2020,naphtha combustion consumption by to the public,3.9644605,TJ,CO2,73300.0,kg/TJ,290594.95464999997,kg +767064dd-4306-3a1b-8647-a98ce97670bb,SESCO,II.1.1,Corrientes,AR-W,annual,2020,naphtha combustion consumption by to the public,3.9644605,TJ,CH4,3.0,kg/TJ,11.8933815,kg +7dac4cbc-9643-374b-b8ca-d2dbf1f51026,SESCO,II.1.1,Corrientes,AR-W,annual,2020,naphtha combustion consumption by to the public,3.9644605,TJ,N2O,0.6,kg/TJ,2.3786763,kg +0789d970-477a-3d94-802b-fde13424e5cf,SESCO,II.1.1,Córdoba,AR-X,annual,2020,naphtha combustion consumption by to the public,46.6586505,TJ,CO2,73300.0,kg/TJ,3420079.08165,kg +2a8da851-3065-3017-963a-ca721e0cf576,SESCO,II.1.1,Córdoba,AR-X,annual,2020,naphtha combustion consumption by to the public,46.6586505,TJ,CH4,3.0,kg/TJ,139.9759515,kg +65927bad-ab78-3869-bc8c-b01116a6ff76,SESCO,II.1.1,Córdoba,AR-X,annual,2020,naphtha combustion consumption by to the public,46.6586505,TJ,N2O,0.6,kg/TJ,27.9951903,kg +d281a71e-07f7-3d4a-8e5b-49256f045127,SESCO,II.1.1,Entre Rios,AR-E,annual,2020,naphtha combustion consumption by to the public,6.678591149999999,TJ,CO2,73300.0,kg/TJ,489540.73129499995,kg +3637b8ff-e581-3088-9086-7bd90e141346,SESCO,II.1.1,Entre Rios,AR-E,annual,2020,naphtha combustion consumption by to the public,6.678591149999999,TJ,CH4,3.0,kg/TJ,20.035773449999997,kg +e8b3c3c8-138a-346b-8ec1-8acfac647c8c,SESCO,II.1.1,Entre Rios,AR-E,annual,2020,naphtha combustion consumption by to the public,6.678591149999999,TJ,N2O,0.6,kg/TJ,4.007154689999999,kg +36247a3e-6785-3301-b45b-5a2a8a78869a,SESCO,II.1.1,Formosa,AR-P,annual,2020,naphtha combustion consumption by to the public,5.58074055,TJ,CO2,73300.0,kg/TJ,409068.28231499996,kg +4ecd2bb0-17ab-345e-ac4c-41e245492e29,SESCO,II.1.1,Formosa,AR-P,annual,2020,naphtha combustion consumption by to the public,5.58074055,TJ,CH4,3.0,kg/TJ,16.742221649999998,kg +3965f3c6-85b1-39b7-9e69-2f7c33266904,SESCO,II.1.1,Formosa,AR-P,annual,2020,naphtha combustion consumption by to the public,5.58074055,TJ,N2O,0.6,kg/TJ,3.34844433,kg +292bce63-5b02-3e30-8749-f0ee3eed86c4,SESCO,II.1.1,La Rioja,AR-F,annual,2020,naphtha combustion consumption by to the public,4.72685675,TJ,CO2,73300.0,kg/TJ,346478.59977499995,kg +c3684e23-075d-3415-823c-45c97c12612e,SESCO,II.1.1,La Rioja,AR-F,annual,2020,naphtha combustion consumption by to the public,4.72685675,TJ,CH4,3.0,kg/TJ,14.180570249999999,kg +4d22a2e8-4196-3602-b47c-5cd9959d2a44,SESCO,II.1.1,La Rioja,AR-F,annual,2020,naphtha combustion consumption by to the public,4.72685675,TJ,N2O,0.6,kg/TJ,2.8361140499999995,kg +33357609-a169-3465-8d56-3f983507a66e,SESCO,II.1.1,Mendoza,AR-M,annual,2020,naphtha combustion consumption by to the public,17.04718015,TJ,CO2,73300.0,kg/TJ,1249558.304995,kg +c1f6ddd3-82b5-3b26-b53c-048a0ee7a9fe,SESCO,II.1.1,Mendoza,AR-M,annual,2020,naphtha combustion consumption by to the public,17.04718015,TJ,CH4,3.0,kg/TJ,51.141540449999994,kg +e096e9de-0e80-3333-9ad9-94584615c13c,SESCO,II.1.1,Mendoza,AR-M,annual,2020,naphtha combustion consumption by to the public,17.04718015,TJ,N2O,0.6,kg/TJ,10.228308089999999,kg +5c1cb56b-29e4-34ec-8efe-49175a755234,SESCO,II.1.1,Misiones,AR-N,annual,2020,naphtha combustion consumption by to the public,4.2999148499999995,TJ,CO2,73300.0,kg/TJ,315183.758505,kg +679942fd-0a90-30ff-b7df-cdbb33fef334,SESCO,II.1.1,Misiones,AR-N,annual,2020,naphtha combustion consumption by to the public,4.2999148499999995,TJ,CH4,3.0,kg/TJ,12.899744549999998,kg +302c02ab-897a-365b-a73d-eb8aaa8eb98a,SESCO,II.1.1,Misiones,AR-N,annual,2020,naphtha combustion consumption by to the public,4.2999148499999995,TJ,N2O,0.6,kg/TJ,2.5799489099999997,kg +89536d84-5dc6-3abd-a8cf-b409b9d66f1f,SESCO,II.1.1,San Juan,AR-J,annual,2020,naphtha combustion consumption by to the public,8.142391949999999,TJ,CO2,73300.0,kg/TJ,596837.3299349999,kg +3fa05906-b7aa-386f-8bf3-c668059a5788,SESCO,II.1.1,San Juan,AR-J,annual,2020,naphtha combustion consumption by to the public,8.142391949999999,TJ,CH4,3.0,kg/TJ,24.427175849999998,kg +fa6f20cf-af96-37e1-9421-52314a400c65,SESCO,II.1.1,San Juan,AR-J,annual,2020,naphtha combustion consumption by to the public,8.142391949999999,TJ,N2O,0.6,kg/TJ,4.885435169999999,kg +a45bfe65-a832-3717-a325-aac0d52b613d,SESCO,II.1.1,San Luis,AR-D,annual,2020,naphtha combustion consumption by to the public,3.1410725499999996,TJ,CO2,73300.0,kg/TJ,230240.61791499998,kg +3a6a3e31-c360-325d-a005-144b91ae0dfa,SESCO,II.1.1,San Luis,AR-D,annual,2020,naphtha combustion consumption by to the public,3.1410725499999996,TJ,CH4,3.0,kg/TJ,9.423217649999998,kg +0835a42b-4594-36ac-a1b1-44acc8c69518,SESCO,II.1.1,San Luis,AR-D,annual,2020,naphtha combustion consumption by to the public,3.1410725499999996,TJ,N2O,0.6,kg/TJ,1.8846435299999997,kg +d8c03a30-bdb4-38c4-bc2c-f42f181d081c,SESCO,II.1.1,Santa Fe,AR-S,annual,2020,naphtha combustion consumption by to the public,29.519982799999998,TJ,CO2,73300.0,kg/TJ,2163814.73924,kg +1282b510-b039-3307-be14-319d26ba6d6b,SESCO,II.1.1,Santa Fe,AR-S,annual,2020,naphtha combustion consumption by to the public,29.519982799999998,TJ,CH4,3.0,kg/TJ,88.5599484,kg +e947a24a-b5e2-319e-8756-9c535493c2c3,SESCO,II.1.1,Santa Fe,AR-S,annual,2020,naphtha combustion consumption by to the public,29.519982799999998,TJ,N2O,0.6,kg/TJ,17.71198968,kg +38f2cba7-e7b0-3d2c-b26f-95c0a3ca5f60,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2020,naphtha combustion consumption by to the public,6.434624349999999,TJ,CO2,73300.0,kg/TJ,471657.9648549999,kg +faa9b81e-909c-3080-a023-a98651304d9e,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2020,naphtha combustion consumption by to the public,6.434624349999999,TJ,CH4,3.0,kg/TJ,19.303873049999996,kg +3fcc119b-9a18-3338-81eb-30ff2515215a,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2020,naphtha combustion consumption by to the public,6.434624349999999,TJ,N2O,0.6,kg/TJ,3.860774609999999,kg +10841615-b93a-38d7-a9f9-b458be37f28f,SESCO,II.1.1,Tucuman,AR-T,annual,2020,naphtha combustion consumption by to the public,2.8971057499999997,TJ,CO2,73300.0,kg/TJ,212357.85147499997,kg +083b23e8-0efa-38f4-824d-1a0ee765b65f,SESCO,II.1.1,Tucuman,AR-T,annual,2020,naphtha combustion consumption by to the public,2.8971057499999997,TJ,CH4,3.0,kg/TJ,8.691317249999999,kg +2a82136d-7d68-392f-b643-446bd1327309,SESCO,II.1.1,Tucuman,AR-T,annual,2020,naphtha combustion consumption by to the public,2.8971057499999997,TJ,N2O,0.6,kg/TJ,1.7382634499999998,kg +fbafc87e-679e-3409-a891-80a9a93f29d2,SESCO,I.3.1,Buenos Aires,AR-B,annual,2020,naphtha combustion consumption by petrochemical industries,1.2198339999999999,TJ,CO2,73300.0,kg/TJ,89413.83219999999,kg +828f450c-c0bd-367c-b353-a2970289d48b,SESCO,I.3.1,Buenos Aires,AR-B,annual,2020,naphtha combustion consumption by petrochemical industries,1.2198339999999999,TJ,CH4,3.0,kg/TJ,3.659502,kg +aa9c627a-b624-3479-95b0-736070f2c9d3,SESCO,I.3.1,Buenos Aires,AR-B,annual,2020,naphtha combustion consumption by petrochemical industries,1.2198339999999999,TJ,N2O,0.6,kg/TJ,0.7319003999999999,kg +88af06f5-d6d8-367c-a6b1-f87476bddd90,SESCO,II.5.1,Santa Fe,AR-S,annual,2020,naphtha combustion consumption by agriculture machines,31.1667587,TJ,CO2,73300.0,kg/TJ,2284523.41271,kg +e9b9892a-89c1-373f-94fa-f3237bb176e2,SESCO,II.5.1,Santa Fe,AR-S,annual,2020,naphtha combustion consumption by agriculture machines,31.1667587,TJ,CH4,3.0,kg/TJ,93.5002761,kg +3c14daaa-3262-3e91-9012-6c30fa199540,SESCO,II.5.1,Santa Fe,AR-S,annual,2020,naphtha combustion consumption by agriculture machines,31.1667587,TJ,N2O,0.6,kg/TJ,18.70005522,kg +cf8fa7b5-2ce3-3976-8aa5-9dd215db33b8,SESCO,II.5.1,Santa Fe,AR-S,annual,2020,naphtha combustion consumption by agriculture machines,5.94669075,TJ,CO2,73300.0,kg/TJ,435892.431975,kg +cf8737f3-fb05-3e64-9a17-8ad0de301610,SESCO,II.5.1,Santa Fe,AR-S,annual,2020,naphtha combustion consumption by agriculture machines,5.94669075,TJ,CH4,3.0,kg/TJ,17.84007225,kg +fba7a724-49db-3c19-b93b-19405301d300,SESCO,II.5.1,Santa Fe,AR-S,annual,2020,naphtha combustion consumption by agriculture machines,5.94669075,TJ,N2O,0.6,kg/TJ,3.56801445,kg +1fcd5be1-80a8-3d04-b939-8504bc243a8b,SESCO,II.1.1,Buenos Aires,AR-B,annual,2020,naphtha combustion consumption by to the public,8002.172031699999,TJ,CO2,73300.0,kg/TJ,586559209.92361,kg +a0278a63-81c8-30b9-b32f-c1e6f89e7365,SESCO,II.1.1,Buenos Aires,AR-B,annual,2020,naphtha combustion consumption by to the public,8002.172031699999,TJ,CH4,3.0,kg/TJ,24006.516095099996,kg +a809c2cd-960c-396b-826b-4715ffa17b1c,SESCO,II.1.1,Buenos Aires,AR-B,annual,2020,naphtha combustion consumption by to the public,8002.172031699999,TJ,N2O,0.6,kg/TJ,4801.303219019999,kg +23e46a09-1729-3322-8584-e02a6e803b53,SESCO,II.1.1,Capital Federal,AR-C,annual,2020,naphtha combustion consumption by to the public,1876.6536172999997,TJ,CO2,73300.0,kg/TJ,137558710.14808998,kg +4cc64f0d-a8eb-3cfc-9f82-589faa47b418,SESCO,II.1.1,Capital Federal,AR-C,annual,2020,naphtha combustion consumption by to the public,1876.6536172999997,TJ,CH4,3.0,kg/TJ,5629.960851899999,kg +2d5fd66c-b416-36a6-8ddf-a2403f69fc84,SESCO,II.1.1,Capital Federal,AR-C,annual,2020,naphtha combustion consumption by to the public,1876.6536172999997,TJ,N2O,0.6,kg/TJ,1125.9921703799998,kg +7ee8fa86-067f-3bca-a32f-60a08253abe5,SESCO,II.1.1,Catamarca,AR-K,annual,2020,naphtha combustion consumption by to the public,298.27990884999997,TJ,CO2,73300.0,kg/TJ,21863917.318704996,kg +53872a88-5efb-3b72-9d31-9ef04f0962c7,SESCO,II.1.1,Catamarca,AR-K,annual,2020,naphtha combustion consumption by to the public,298.27990884999997,TJ,CH4,3.0,kg/TJ,894.8397265499999,kg +c430d085-c33b-33fa-9a7c-4b4dd210f95d,SESCO,II.1.1,Catamarca,AR-K,annual,2020,naphtha combustion consumption by to the public,298.27990884999997,TJ,N2O,0.6,kg/TJ,178.96794530999998,kg +bfc8a5d4-21ca-3032-8103-52cc0b8e56fe,SESCO,II.1.1,Chaco,AR-H,annual,2020,naphtha combustion consumption by to the public,443.5621382499999,TJ,CO2,73300.0,kg/TJ,32513104.733724993,kg +f26430f8-9a83-35db-8c09-6a9e419083ce,SESCO,II.1.1,Chaco,AR-H,annual,2020,naphtha combustion consumption by to the public,443.5621382499999,TJ,CH4,3.0,kg/TJ,1330.6864147499998,kg +869beaf9-72f9-32cb-ba20-6c3712e31890,SESCO,II.1.1,Chaco,AR-H,annual,2020,naphtha combustion consumption by to the public,443.5621382499999,TJ,N2O,0.6,kg/TJ,266.1372829499999,kg +50585936-8a12-3c3b-8a68-51a5bc74c7d1,SESCO,II.1.1,Chubut,AR-U,annual,2020,naphtha combustion consumption by to the public,1145.6680927999998,TJ,CO2,73300.0,kg/TJ,83977471.20223999,kg +4b290c2d-c6b0-374d-8f59-85fbe2c6c64d,SESCO,II.1.1,Chubut,AR-U,annual,2020,naphtha combustion consumption by to the public,1145.6680927999998,TJ,CH4,3.0,kg/TJ,3437.0042783999997,kg +d1cdb667-3e32-3819-8999-efbbee1b07fa,SESCO,II.1.1,Chubut,AR-U,annual,2020,naphtha combustion consumption by to the public,1145.6680927999998,TJ,N2O,0.6,kg/TJ,687.4008556799998,kg +bfd196f4-6099-36bc-9271-8c2be729eff8,SESCO,II.1.1,Corrientes,AR-W,annual,2020,naphtha combustion consumption by to the public,563.0753743999999,TJ,CO2,73300.0,kg/TJ,41273424.94351999,kg +724f17b1-439a-3924-8d5b-7c550f58bac3,SESCO,II.1.1,Corrientes,AR-W,annual,2020,naphtha combustion consumption by to the public,563.0753743999999,TJ,CH4,3.0,kg/TJ,1689.2261231999996,kg +760f6dbd-5c91-33d6-9392-570209907f6d,SESCO,II.1.1,Corrientes,AR-W,annual,2020,naphtha combustion consumption by to the public,563.0753743999999,TJ,N2O,0.6,kg/TJ,337.8452246399999,kg +393c31d1-8084-3d78-b63c-21024b194977,SESCO,II.1.1,Córdoba,AR-X,annual,2020,naphtha combustion consumption by to the public,1967.4092668999997,TJ,CO2,73300.0,kg/TJ,144211099.26376998,kg +ee14bcba-74c4-3f98-ba0c-4f3f1a57fd44,SESCO,II.1.1,Córdoba,AR-X,annual,2020,naphtha combustion consumption by to the public,1967.4092668999997,TJ,CH4,3.0,kg/TJ,5902.227800699999,kg +c09183c0-9d31-320f-9f73-c5994798bf0f,SESCO,II.1.1,Córdoba,AR-X,annual,2020,naphtha combustion consumption by to the public,1967.4092668999997,TJ,N2O,0.6,kg/TJ,1180.4455601399998,kg +bfb669f1-873b-32b5-b59b-d42c52039993,SESCO,II.1.1,Entre Rios,AR-E,annual,2020,naphtha combustion consumption by to the public,807.8960582,TJ,CO2,73300.0,kg/TJ,59218781.06606,kg +95dd43bb-2aeb-3592-97f6-0dc0ff723400,SESCO,II.1.1,Entre Rios,AR-E,annual,2020,naphtha combustion consumption by to the public,807.8960582,TJ,CH4,3.0,kg/TJ,2423.6881746,kg +1b2df321-25a6-3d5a-bad8-b08597b10c14,SESCO,II.1.1,Entre Rios,AR-E,annual,2020,naphtha combustion consumption by to the public,807.8960582,TJ,N2O,0.6,kg/TJ,484.73763491999995,kg +198bf2c2-e6cb-39a3-b744-974713b6feb4,SESCO,II.1.1,Formosa,AR-P,annual,2020,naphtha combustion consumption by to the public,552.1578601,TJ,CO2,73300.0,kg/TJ,40473171.14533,kg +6b8bbcbd-063e-3f7d-b245-702955af8bf6,SESCO,II.1.1,Formosa,AR-P,annual,2020,naphtha combustion consumption by to the public,552.1578601,TJ,CH4,3.0,kg/TJ,1656.4735802999999,kg +29b3e180-ef5d-3847-857e-987d51018db5,SESCO,II.1.1,Formosa,AR-P,annual,2020,naphtha combustion consumption by to the public,552.1578601,TJ,N2O,0.6,kg/TJ,331.29471606,kg +e92c61a7-08ae-3787-a89f-9d102e5f7d2c,SESCO,II.1.1,Jujuy,AR-Y,annual,2020,naphtha combustion consumption by to the public,188.1593945,TJ,CO2,73300.0,kg/TJ,13792083.61685,kg +61e4185d-cf05-3a36-9e3b-8b44b362d143,SESCO,II.1.1,Jujuy,AR-Y,annual,2020,naphtha combustion consumption by to the public,188.1593945,TJ,CH4,3.0,kg/TJ,564.4781835,kg +7dd6574e-15f4-3800-89f6-3917d11cb490,SESCO,II.1.1,Jujuy,AR-Y,annual,2020,naphtha combustion consumption by to the public,188.1593945,TJ,N2O,0.6,kg/TJ,112.8956367,kg +23246078-fb40-3d74-a636-d6af79fa856d,SESCO,II.1.1,La Pampa,AR-L,annual,2020,naphtha combustion consumption by to the public,141.71421494999998,TJ,CO2,73300.0,kg/TJ,10387651.955835,kg +67d9b9e6-ec13-3aa3-82e9-99fe89c060e5,SESCO,II.1.1,La Pampa,AR-L,annual,2020,naphtha combustion consumption by to the public,141.71421494999998,TJ,CH4,3.0,kg/TJ,425.14264484999995,kg +8849755f-3244-3aba-b73a-9df20a4de0cd,SESCO,II.1.1,La Pampa,AR-L,annual,2020,naphtha combustion consumption by to the public,141.71421494999998,TJ,N2O,0.6,kg/TJ,85.02852896999998,kg +d661ce05-77be-3010-a80a-5d78759c602a,SESCO,II.1.1,La Rioja,AR-F,annual,2020,naphtha combustion consumption by to the public,85.41887584999999,TJ,CO2,73300.0,kg/TJ,6261203.599804999,kg +02fd6333-a043-3f62-82b1-75d96e51cb31,SESCO,II.1.1,La Rioja,AR-F,annual,2020,naphtha combustion consumption by to the public,85.41887584999999,TJ,CH4,3.0,kg/TJ,256.25662754999996,kg +fcd439bc-fa69-3e41-a849-32420599b0df,SESCO,II.1.1,La Rioja,AR-F,annual,2020,naphtha combustion consumption by to the public,85.41887584999999,TJ,N2O,0.6,kg/TJ,51.251325509999994,kg +14cceb36-707f-37b7-9f0b-a346267adadd,SESCO,II.1.1,Mendoza,AR-M,annual,2020,naphtha combustion consumption by to the public,395.28720769999995,TJ,CO2,73300.0,kg/TJ,28974552.324409995,kg +63eb2042-ddbc-3215-9df5-6f0e93016fdb,SESCO,II.1.1,Mendoza,AR-M,annual,2020,naphtha combustion consumption by to the public,395.28720769999995,TJ,CH4,3.0,kg/TJ,1185.8616230999999,kg +3fae47c6-aef1-394f-a098-6842286bee72,SESCO,II.1.1,Mendoza,AR-M,annual,2020,naphtha combustion consumption by to the public,395.28720769999995,TJ,N2O,0.6,kg/TJ,237.17232461999996,kg +8c76d9ff-f17e-3bd8-9411-eda99b2fa74f,SESCO,II.1.1,Misiones,AR-N,annual,2020,naphtha combustion consumption by to the public,793.22755435,TJ,CO2,73300.0,kg/TJ,58143579.733855,kg +30e426a2-eb5b-32a9-bdd3-3f65a3ddeefb,SESCO,II.1.1,Misiones,AR-N,annual,2020,naphtha combustion consumption by to the public,793.22755435,TJ,CH4,3.0,kg/TJ,2379.68266305,kg +cf565948-1cd2-3ff5-8e38-a4b5f3eca71c,SESCO,II.1.1,Misiones,AR-N,annual,2020,naphtha combustion consumption by to the public,793.22755435,TJ,N2O,0.6,kg/TJ,475.93653261,kg +28bbb177-42aa-3f74-97c8-7409a6fcad5e,SESCO,II.1.1,Neuquén,AR-Q,annual,2020,naphtha combustion consumption by to the public,390.98729284999996,TJ,CO2,73300.0,kg/TJ,28659368.565904997,kg +bdc090d0-b0a3-349c-bc3a-6db6d62c210f,SESCO,II.1.1,Neuquén,AR-Q,annual,2020,naphtha combustion consumption by to the public,390.98729284999996,TJ,CH4,3.0,kg/TJ,1172.96187855,kg +48f03f70-cd45-3ea7-a322-667b107ff177,SESCO,II.1.1,Neuquén,AR-Q,annual,2020,naphtha combustion consumption by to the public,390.98729284999996,TJ,N2O,0.6,kg/TJ,234.59237570999997,kg +b747cf84-a0f2-3ff2-b1c7-8f79475d293b,SESCO,II.1.1,Rio Negro,AR-R,annual,2020,naphtha combustion consumption by to the public,543.4360469999999,TJ,CO2,73300.0,kg/TJ,39833862.24509999,kg +c9bf1291-3c4e-34c7-8783-f5aa6cb09f46,SESCO,II.1.1,Rio Negro,AR-R,annual,2020,naphtha combustion consumption by to the public,543.4360469999999,TJ,CH4,3.0,kg/TJ,1630.3081409999998,kg +b2ce3306-d8f8-328a-9555-cafc23e51071,SESCO,II.1.1,Rio Negro,AR-R,annual,2020,naphtha combustion consumption by to the public,543.4360469999999,TJ,N2O,0.6,kg/TJ,326.0616281999999,kg +04a5b417-4e87-3fea-b93d-32e6e3d9b14f,SESCO,II.1.1,Salta,AR-A,annual,2020,naphtha combustion consumption by to the public,148.81974799999998,TJ,CO2,73300.0,kg/TJ,10908487.528399998,kg +dda35151-4b1d-3eef-9de1-e556bc9519eb,SESCO,II.1.1,Salta,AR-A,annual,2020,naphtha combustion consumption by to the public,148.81974799999998,TJ,CH4,3.0,kg/TJ,446.4592439999999,kg +3fce0783-7bb9-3a73-8c78-7087f18ca034,SESCO,II.1.1,Salta,AR-A,annual,2020,naphtha combustion consumption by to the public,148.81974799999998,TJ,N2O,0.6,kg/TJ,89.29184879999998,kg +c94528fe-06ff-3e8a-943f-5214d66f769f,SESCO,II.1.1,San Juan,AR-J,annual,2020,naphtha combustion consumption by to the public,172.63700684999998,TJ,CO2,73300.0,kg/TJ,12654292.602105,kg +386a6181-7faf-3cef-a161-174cdc2aadf3,SESCO,II.1.1,San Juan,AR-J,annual,2020,naphtha combustion consumption by to the public,172.63700684999998,TJ,CH4,3.0,kg/TJ,517.9110205499999,kg +66e4d406-b298-3247-997d-c417c3daeded,SESCO,II.1.1,San Juan,AR-J,annual,2020,naphtha combustion consumption by to the public,172.63700684999998,TJ,N2O,0.6,kg/TJ,103.58220410999998,kg +1938d500-1361-3644-bc60-350ce005a966,SESCO,II.1.1,San Luis,AR-D,annual,2020,naphtha combustion consumption by to the public,481.71244659999996,TJ,CO2,73300.0,kg/TJ,35309522.335779995,kg +ebd02cf8-7747-3332-9b25-f7a954046535,SESCO,II.1.1,San Luis,AR-D,annual,2020,naphtha combustion consumption by to the public,481.71244659999996,TJ,CH4,3.0,kg/TJ,1445.1373397999998,kg +72383d96-9ffa-3c87-93a1-d871a5d26ec4,SESCO,II.1.1,San Luis,AR-D,annual,2020,naphtha combustion consumption by to the public,481.71244659999996,TJ,N2O,0.6,kg/TJ,289.02746795999997,kg +9ad443c4-8db1-334a-b9d2-290474275b58,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2020,naphtha combustion consumption by to the public,693.8110833499999,TJ,CO2,73300.0,kg/TJ,50856352.40955499,kg +9cf3e9f6-2af1-3cd8-bfe6-5cb121171db5,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2020,naphtha combustion consumption by to the public,693.8110833499999,TJ,CH4,3.0,kg/TJ,2081.4332500499995,kg +1aae99b2-935b-373a-924e-afe883a14231,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2020,naphtha combustion consumption by to the public,693.8110833499999,TJ,N2O,0.6,kg/TJ,416.2866500099999,kg +903ad8eb-7eef-381d-9662-635616f55b3b,SESCO,II.1.1,Santa Fe,AR-S,annual,2020,naphtha combustion consumption by to the public,2137.9115642499996,TJ,CO2,73300.0,kg/TJ,156708917.65952498,kg +0e0dfd20-1e01-30a6-9909-e9135cc65cfa,SESCO,II.1.1,Santa Fe,AR-S,annual,2020,naphtha combustion consumption by to the public,2137.9115642499996,TJ,CH4,3.0,kg/TJ,6413.734692749998,kg +cf6a86d3-4684-3967-bb54-b4274be3bb82,SESCO,II.1.1,Santa Fe,AR-S,annual,2020,naphtha combustion consumption by to the public,2137.9115642499996,TJ,N2O,0.6,kg/TJ,1282.7469385499996,kg +c065ae09-c34d-3c9d-a262-06b0eb84bc3b,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2020,naphtha combustion consumption by to the public,277.42074744999996,TJ,CO2,73300.0,kg/TJ,20334940.788085,kg +7c6b3d07-4101-3e8b-9aec-1d5b9b452129,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2020,naphtha combustion consumption by to the public,277.42074744999996,TJ,CH4,3.0,kg/TJ,832.26224235,kg +574fce67-c7c6-373f-a07b-3655329cce03,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2020,naphtha combustion consumption by to the public,277.42074744999996,TJ,N2O,0.6,kg/TJ,166.45244846999998,kg +38cf6ad4-0785-37c6-9970-129ffdea5dab,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2020,naphtha combustion consumption by to the public,98.28812454999998,TJ,CO2,73300.0,kg/TJ,7204519.529514998,kg +a1055c79-ebfa-350b-9ea9-0d50ade6ce18,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2020,naphtha combustion consumption by to the public,98.28812454999998,TJ,CH4,3.0,kg/TJ,294.86437364999995,kg +1683a2be-06bc-3d94-a95a-6c4f05f6af27,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2020,naphtha combustion consumption by to the public,98.28812454999998,TJ,N2O,0.6,kg/TJ,58.97287472999999,kg +9afc63f8-c5e5-37d1-9adb-890a868ecf27,SESCO,II.1.1,Tucuman,AR-T,annual,2020,naphtha combustion consumption by to the public,136.34694535,TJ,CO2,73300.0,kg/TJ,9994231.094155,kg +fbc426f1-28e2-3b1e-9f2b-e86041cfbf9a,SESCO,II.1.1,Tucuman,AR-T,annual,2020,naphtha combustion consumption by to the public,136.34694535,TJ,CH4,3.0,kg/TJ,409.04083605,kg +82702b32-89ab-3724-8f43-37ee7a609fd3,SESCO,II.1.1,Tucuman,AR-T,annual,2020,naphtha combustion consumption by to the public,136.34694535,TJ,N2O,0.6,kg/TJ,81.80816721,kg +e0348597-3ef9-31be-8ffa-38743598d8ec,SESCO,II.1.1,Buenos Aires,AR-B,annual,2020,naphtha combustion consumption by to the public,1922.1839213499998,TJ,CO2,73300.0,kg/TJ,140896081.43495497,kg +80d92b37-8d47-3f06-8126-ef486655b445,SESCO,II.1.1,Buenos Aires,AR-B,annual,2020,naphtha combustion consumption by to the public,1922.1839213499998,TJ,CH4,3.0,kg/TJ,5766.551764049999,kg +a8cef744-206c-3039-8e29-c45a8d555d74,SESCO,II.1.1,Buenos Aires,AR-B,annual,2020,naphtha combustion consumption by to the public,1922.1839213499998,TJ,N2O,0.6,kg/TJ,1153.3103528099998,kg +ab2dc0a9-f1eb-374c-bd15-6f2997e28f37,SESCO,II.1.1,Capital Federal,AR-C,annual,2020,naphtha combustion consumption by to the public,782.55400685,TJ,CO2,73300.0,kg/TJ,57361208.70210499,kg +e8c0376c-6a09-31ed-9b76-c170e11dceba,SESCO,II.1.1,Capital Federal,AR-C,annual,2020,naphtha combustion consumption by to the public,782.55400685,TJ,CH4,3.0,kg/TJ,2347.66202055,kg +501a431c-a973-37a5-9b03-34f0042ad6d4,SESCO,II.1.1,Capital Federal,AR-C,annual,2020,naphtha combustion consumption by to the public,782.55400685,TJ,N2O,0.6,kg/TJ,469.53240410999996,kg +6b04add5-1d23-36a0-828f-34fdb1ff4556,SESCO,II.1.1,Catamarca,AR-K,annual,2020,naphtha combustion consumption by to the public,82.82672859999998,TJ,CO2,73300.0,kg/TJ,6071199.2063799985,kg +9295ce36-90bd-3b72-b2a6-8806c9aff90f,SESCO,II.1.1,Catamarca,AR-K,annual,2020,naphtha combustion consumption by to the public,82.82672859999998,TJ,CH4,3.0,kg/TJ,248.48018579999996,kg +be844f63-5e27-3f66-a334-f5831208ef32,SESCO,II.1.1,Catamarca,AR-K,annual,2020,naphtha combustion consumption by to the public,82.82672859999998,TJ,N2O,0.6,kg/TJ,49.69603715999999,kg +f2df78e6-7f1d-3768-9f1d-e1a125574e75,SESCO,II.1.1,Chaco,AR-H,annual,2020,naphtha combustion consumption by to the public,55.41095945,TJ,CO2,73300.0,kg/TJ,4061623.327685,kg +64a89231-738c-3167-8aae-3d32155658cd,SESCO,II.1.1,Chaco,AR-H,annual,2020,naphtha combustion consumption by to the public,55.41095945,TJ,CH4,3.0,kg/TJ,166.23287835,kg +d34cf5c4-75c2-3089-8942-512502df94cb,SESCO,II.1.1,Chaco,AR-H,annual,2020,naphtha combustion consumption by to the public,55.41095945,TJ,N2O,0.6,kg/TJ,33.24657567,kg +d927dc81-0d5f-39cb-a756-7385129535ad,SESCO,II.1.1,Chubut,AR-U,annual,2020,naphtha combustion consumption by to the public,185.07931365,TJ,CO2,73300.0,kg/TJ,13566313.690544998,kg +c828b5ac-6307-3c40-9c38-44da3b8f1f72,SESCO,II.1.1,Chubut,AR-U,annual,2020,naphtha combustion consumption by to the public,185.07931365,TJ,CH4,3.0,kg/TJ,555.2379409499999,kg +28ab2293-1e4c-328a-a961-b47487a24875,SESCO,II.1.1,Chubut,AR-U,annual,2020,naphtha combustion consumption by to the public,185.07931365,TJ,N2O,0.6,kg/TJ,111.04758818999998,kg +e974aa46-ce9b-3204-af88-b7f8356297b6,SESCO,II.1.1,Corrientes,AR-W,annual,2020,naphtha combustion consumption by to the public,101.76465144999999,TJ,CO2,73300.0,kg/TJ,7459348.951284999,kg +2fc3a4aa-1ad4-3d3a-8e62-c91d8911516e,SESCO,II.1.1,Corrientes,AR-W,annual,2020,naphtha combustion consumption by to the public,101.76465144999999,TJ,CH4,3.0,kg/TJ,305.29395435,kg +89580b59-edc3-39fc-bc4f-94da32ac1f24,SESCO,II.1.1,Corrientes,AR-W,annual,2020,naphtha combustion consumption by to the public,101.76465144999999,TJ,N2O,0.6,kg/TJ,61.05879086999999,kg +c5d6d99a-2e75-3103-a992-92046f21435b,SESCO,II.1.1,Córdoba,AR-X,annual,2020,naphtha combustion consumption by to the public,463.7198951,TJ,CO2,73300.0,kg/TJ,33990668.31083,kg +0a0cd8f9-60a7-38f1-acd5-600ae058f5a0,SESCO,II.1.1,Córdoba,AR-X,annual,2020,naphtha combustion consumption by to the public,463.7198951,TJ,CH4,3.0,kg/TJ,1391.1596852999999,kg +5197d861-898d-32c8-aa43-1d0bd58cf4fb,SESCO,II.1.1,Córdoba,AR-X,annual,2020,naphtha combustion consumption by to the public,463.7198951,TJ,N2O,0.6,kg/TJ,278.23193705999995,kg +7db6d286-94ea-39bf-8a8f-6bf984152e66,SESCO,II.1.1,Entre Rios,AR-E,annual,2020,naphtha combustion consumption by to the public,168.82502559999998,TJ,CO2,73300.0,kg/TJ,12374874.376479998,kg +8a9dbd75-1c63-3bc5-907d-38db96e87069,SESCO,II.1.1,Entre Rios,AR-E,annual,2020,naphtha combustion consumption by to the public,168.82502559999998,TJ,CH4,3.0,kg/TJ,506.4750767999999,kg +a8266d91-f18d-3397-bd08-c126a2324cdd,SESCO,II.1.1,Entre Rios,AR-E,annual,2020,naphtha combustion consumption by to the public,168.82502559999998,TJ,N2O,0.6,kg/TJ,101.29501535999998,kg +adc0354d-4266-3284-b973-5ad9efa521db,SESCO,II.1.1,Formosa,AR-P,annual,2020,naphtha combustion consumption by to the public,127.50314884999999,TJ,CO2,73300.0,kg/TJ,9345980.810704999,kg +9f2b801e-1885-3182-b9d5-a1b2db1c2491,SESCO,II.1.1,Formosa,AR-P,annual,2020,naphtha combustion consumption by to the public,127.50314884999999,TJ,CH4,3.0,kg/TJ,382.50944654999995,kg +79a4f14c-9e70-38c5-b115-71bb70be2dde,SESCO,II.1.1,Formosa,AR-P,annual,2020,naphtha combustion consumption by to the public,127.50314884999999,TJ,N2O,0.6,kg/TJ,76.50188931,kg +163ff492-787f-3477-8344-cdf6dfe15118,SESCO,II.1.1,Jujuy,AR-Y,annual,2020,naphtha combustion consumption by to the public,38.57725024999999,TJ,CO2,73300.0,kg/TJ,2827712.4433249994,kg +67e5da44-1851-341d-9ddb-e5e73f1ed57e,SESCO,II.1.1,Jujuy,AR-Y,annual,2020,naphtha combustion consumption by to the public,38.57725024999999,TJ,CH4,3.0,kg/TJ,115.73175074999997,kg +3f9ba786-3b2e-3857-a4f6-4d4d19c74a45,SESCO,II.1.1,Jujuy,AR-Y,annual,2020,naphtha combustion consumption by to the public,38.57725024999999,TJ,N2O,0.6,kg/TJ,23.146350149999993,kg +7c36538d-a16d-3275-a5dc-5e12d2ac51b2,SESCO,II.1.1,La Pampa,AR-L,annual,2020,naphtha combustion consumption by to the public,44.73741195,TJ,CO2,73300.0,kg/TJ,3279252.2959350003,kg +cd73a5ca-6a5d-3136-87ec-25aff6e91875,SESCO,II.1.1,La Pampa,AR-L,annual,2020,naphtha combustion consumption by to the public,44.73741195,TJ,CH4,3.0,kg/TJ,134.21223585,kg +13753836-b419-32bc-9786-b45dd29b4795,SESCO,II.1.1,La Pampa,AR-L,annual,2020,naphtha combustion consumption by to the public,44.73741195,TJ,N2O,0.6,kg/TJ,26.84244717,kg +c1378bfa-0e41-3158-b127-e28568f51846,SESCO,II.1.1,La Rioja,AR-F,annual,2020,naphtha combustion consumption by to the public,20.706682149999995,TJ,CO2,73300.0,kg/TJ,1517799.8015949996,kg +719bad9d-767f-3b43-a62e-999ada330bac,SESCO,II.1.1,La Rioja,AR-F,annual,2020,naphtha combustion consumption by to the public,20.706682149999995,TJ,CH4,3.0,kg/TJ,62.12004644999999,kg +b984c96c-d98b-3b24-a366-5a1833675a4b,SESCO,II.1.1,La Rioja,AR-F,annual,2020,naphtha combustion consumption by to the public,20.706682149999995,TJ,N2O,0.6,kg/TJ,12.424009289999997,kg +e77887c2-b635-35a4-bdc7-cd78a317120f,SESCO,II.1.1,Mendoza,AR-M,annual,2020,naphtha combustion consumption by to the public,136.59091214999998,TJ,CO2,73300.0,kg/TJ,10012113.860594999,kg +15908b16-7384-3a31-942b-2634ed2f95ad,SESCO,II.1.1,Mendoza,AR-M,annual,2020,naphtha combustion consumption by to the public,136.59091214999998,TJ,CH4,3.0,kg/TJ,409.7727364499999,kg +b799d7f2-8c58-3f2e-b852-84f26fa48745,SESCO,II.1.1,Mendoza,AR-M,annual,2020,naphtha combustion consumption by to the public,136.59091214999998,TJ,N2O,0.6,kg/TJ,81.95454728999998,kg +5cc795bd-7d88-389f-b5d4-708cae810db0,SESCO,II.1.1,Misiones,AR-N,annual,2020,naphtha combustion consumption by to the public,109.6630766,TJ,CO2,73300.0,kg/TJ,8038303.51478,kg +aa3fc7a9-0455-3c2f-8ca0-14848ebcc17e,SESCO,II.1.1,Misiones,AR-N,annual,2020,naphtha combustion consumption by to the public,109.6630766,TJ,CH4,3.0,kg/TJ,328.9892298,kg +494a1cac-9de1-3234-a6a8-6be4160307e7,SESCO,II.1.1,Misiones,AR-N,annual,2020,naphtha combustion consumption by to the public,109.6630766,TJ,N2O,0.6,kg/TJ,65.79784595999999,kg +15d4fd39-d20a-3f57-bad3-277bfeb648b9,SESCO,II.1.1,Neuquén,AR-Q,annual,2020,naphtha combustion consumption by to the public,134.94413624999999,TJ,CO2,73300.0,kg/TJ,9891405.187125,kg +becc9448-05c4-3f09-add0-e0f26d0f04e6,SESCO,II.1.1,Neuquén,AR-Q,annual,2020,naphtha combustion consumption by to the public,134.94413624999999,TJ,CH4,3.0,kg/TJ,404.83240874999996,kg +d451552e-f6b7-329c-9e5d-2e51acdc0406,SESCO,II.1.1,Neuquén,AR-Q,annual,2020,naphtha combustion consumption by to the public,134.94413624999999,TJ,N2O,0.6,kg/TJ,80.96648174999999,kg +d55b506c-c05e-3e24-bb1f-851eca50613a,SESCO,II.1.1,Rio Negro,AR-R,annual,2020,naphtha combustion consumption by to the public,171.93560229999997,TJ,CO2,73300.0,kg/TJ,12602879.648589998,kg +5b46d17f-3bbe-350a-b629-505eebbee3c6,SESCO,II.1.1,Rio Negro,AR-R,annual,2020,naphtha combustion consumption by to the public,171.93560229999997,TJ,CH4,3.0,kg/TJ,515.8068068999999,kg +612f2837-0dd9-3a5d-a3ba-7a6b9ef1d025,SESCO,II.1.1,Rio Negro,AR-R,annual,2020,naphtha combustion consumption by to the public,171.93560229999997,TJ,N2O,0.6,kg/TJ,103.16136137999997,kg +a9778032-1386-3f19-8cad-7a0e63c19b26,SESCO,II.1.1,Salta,AR-A,annual,2020,naphtha combustion consumption by to the public,19.669823249999997,TJ,CO2,73300.0,kg/TJ,1441798.0442249998,kg +35f2fea5-0ec9-310c-9ee0-4b4e6a81a759,SESCO,II.1.1,Salta,AR-A,annual,2020,naphtha combustion consumption by to the public,19.669823249999997,TJ,CH4,3.0,kg/TJ,59.009469749999994,kg +4f34c671-91a5-357c-9b8d-5e28fb950871,SESCO,II.1.1,Salta,AR-A,annual,2020,naphtha combustion consumption by to the public,19.669823249999997,TJ,N2O,0.6,kg/TJ,11.801893949999998,kg +dbb48a16-568e-3615-a316-e6697e130c73,SESCO,II.1.1,San Juan,AR-J,annual,2020,naphtha combustion consumption by to the public,30.9837836,TJ,CO2,73300.0,kg/TJ,2271111.33788,kg +cfa51e45-d031-31ff-84d1-b4584b6a5158,SESCO,II.1.1,San Juan,AR-J,annual,2020,naphtha combustion consumption by to the public,30.9837836,TJ,CH4,3.0,kg/TJ,92.9513508,kg +414c1176-5634-312f-9f23-2050d1bb711f,SESCO,II.1.1,San Juan,AR-J,annual,2020,naphtha combustion consumption by to the public,30.9837836,TJ,N2O,0.6,kg/TJ,18.59027016,kg +2d7fb519-8315-3fb0-ae7a-efbf8b892200,SESCO,II.1.1,San Luis,AR-D,annual,2020,naphtha combustion consumption by to the public,92.40242549999998,TJ,CO2,73300.0,kg/TJ,6773097.789149999,kg +9f7c857b-1760-3e75-b121-f91575e43313,SESCO,II.1.1,San Luis,AR-D,annual,2020,naphtha combustion consumption by to the public,92.40242549999998,TJ,CH4,3.0,kg/TJ,277.2072764999999,kg +062e1226-6f1e-33b7-af74-ce576a6a7f4d,SESCO,II.1.1,San Luis,AR-D,annual,2020,naphtha combustion consumption by to the public,92.40242549999998,TJ,N2O,0.6,kg/TJ,55.44145529999999,kg +d1b84d12-63ae-3f09-8c95-49b24d057d94,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2020,naphtha combustion consumption by to the public,76.33111255,TJ,CO2,73300.0,kg/TJ,5595070.549915,kg +9d2bc92c-32c4-3cdd-a3a7-e2181fac7f39,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2020,naphtha combustion consumption by to the public,76.33111255,TJ,CH4,3.0,kg/TJ,228.99333765,kg +03edabcf-1952-37da-b2f9-974eae3f9f3c,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2020,naphtha combustion consumption by to the public,76.33111255,TJ,N2O,0.6,kg/TJ,45.798667529999996,kg +ed58f81c-5b77-3d78-8e2b-6f5acc818f2e,SESCO,II.1.1,Santa Fe,AR-S,annual,2020,naphtha combustion consumption by to the public,552.7067854,TJ,CO2,73300.0,kg/TJ,40513407.36982,kg +86f4880a-e0be-3101-8328-1fa0d86f6f09,SESCO,II.1.1,Santa Fe,AR-S,annual,2020,naphtha combustion consumption by to the public,552.7067854,TJ,CH4,3.0,kg/TJ,1658.1203561999998,kg +d6d1165d-95c0-36f3-93b0-0cbe3325d876,SESCO,II.1.1,Santa Fe,AR-S,annual,2020,naphtha combustion consumption by to the public,552.7067854,TJ,N2O,0.6,kg/TJ,331.62407124,kg +43cc3096-8809-3b31-a320-e64cb2fae7a1,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2020,naphtha combustion consumption by to the public,73.12904829999998,TJ,CO2,73300.0,kg/TJ,5360359.240389998,kg +b38fb1f7-ddad-3bd7-84b3-85220360cda4,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2020,naphtha combustion consumption by to the public,73.12904829999998,TJ,CH4,3.0,kg/TJ,219.38714489999995,kg +be8a08b1-1bc1-332d-97e0-005601a8a060,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2020,naphtha combustion consumption by to the public,73.12904829999998,TJ,N2O,0.6,kg/TJ,43.87742897999998,kg +163bfa75-fc29-3810-bb13-13af07dbee9a,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2020,naphtha combustion consumption by to the public,23.0548626,TJ,CO2,73300.0,kg/TJ,1689921.42858,kg +685d6f2d-db32-3da3-8ae3-5103f00935e1,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2020,naphtha combustion consumption by to the public,23.0548626,TJ,CH4,3.0,kg/TJ,69.16458779999999,kg +c7ec7ea5-2c46-3219-9043-6deedf7c780a,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2020,naphtha combustion consumption by to the public,23.0548626,TJ,N2O,0.6,kg/TJ,13.83291756,kg +e497513a-aaef-31e6-912c-18e34f64d604,SESCO,II.1.1,Tucuman,AR-T,annual,2020,naphtha combustion consumption by to the public,23.237837699999996,TJ,CO2,73300.0,kg/TJ,1703333.5034099997,kg +ccdd1530-de16-325a-b4a7-2a09898e7e1c,SESCO,II.1.1,Tucuman,AR-T,annual,2020,naphtha combustion consumption by to the public,23.237837699999996,TJ,CH4,3.0,kg/TJ,69.71351309999999,kg +627c623e-c462-3556-bc91-69c268895519,SESCO,II.1.1,Tucuman,AR-T,annual,2020,naphtha combustion consumption by to the public,23.237837699999996,TJ,N2O,0.6,kg/TJ,13.942702619999997,kg +0d495663-e764-31c4-83d7-73f3e0fd1203,SESCO,II.1.1,Buenos Aires,AR-B,annual,2020,naphtha combustion consumption by freight transport,9.972142949999999,TJ,CO2,73300.0,kg/TJ,730958.0782349999,kg +5e19063a-d209-3daf-aa7d-c47264c38aed,SESCO,II.1.1,Buenos Aires,AR-B,annual,2020,naphtha combustion consumption by freight transport,9.972142949999999,TJ,CH4,3.0,kg/TJ,29.916428849999996,kg +1cd8f62f-b136-3c8e-9db4-75a21ef7dda1,SESCO,II.1.1,Buenos Aires,AR-B,annual,2020,naphtha combustion consumption by freight transport,9.972142949999999,TJ,N2O,0.6,kg/TJ,5.983285769999999,kg +c9b30c49-f505-3ffe-b56f-f7e13fdb9d3f,SESCO,II.1.1,Capital Federal,AR-C,annual,2020,naphtha combustion consumption by freight transport,3.4765268999999996,TJ,CO2,73300.0,kg/TJ,254829.42177,kg +4b26beeb-adfa-3e53-9fb8-2c1c8b612896,SESCO,II.1.1,Capital Federal,AR-C,annual,2020,naphtha combustion consumption by freight transport,3.4765268999999996,TJ,CH4,3.0,kg/TJ,10.429580699999999,kg +03c3f223-28c5-304e-abaa-1c532ec3738e,SESCO,II.1.1,Capital Federal,AR-C,annual,2020,naphtha combustion consumption by freight transport,3.4765268999999996,TJ,N2O,0.6,kg/TJ,2.0859161399999997,kg +4c5e4979-b368-39a2-b526-af76cb9b82e9,SESCO,II.1.1,Córdoba,AR-X,annual,2020,naphtha combustion consumption by freight transport,1.18933815,TJ,CO2,73300.0,kg/TJ,87178.486395,kg +6d6efe4d-dd89-324e-9128-113a0fd912c5,SESCO,II.1.1,Córdoba,AR-X,annual,2020,naphtha combustion consumption by freight transport,1.18933815,TJ,CH4,3.0,kg/TJ,3.5680144499999997,kg +83180483-64f5-321f-b916-e5f5889f8af9,SESCO,II.1.1,Córdoba,AR-X,annual,2020,naphtha combustion consumption by freight transport,1.18933815,TJ,N2O,0.6,kg/TJ,0.71360289,kg +895c44f0-edf7-322f-9cca-dcb3c0a45157,SESCO,II.1.1,Entre Rios,AR-E,annual,2020,naphtha combustion consumption by freight transport,0.33545434999999996,TJ,CO2,73300.0,kg/TJ,24588.803855,kg +aaa2edef-1865-3fee-a07c-d12769b4d6b4,SESCO,II.1.1,Entre Rios,AR-E,annual,2020,naphtha combustion consumption by freight transport,0.33545434999999996,TJ,CH4,3.0,kg/TJ,1.0063630499999998,kg +28be7187-a6f7-3abd-b056-ce6ba0aa0575,SESCO,II.1.1,Entre Rios,AR-E,annual,2020,naphtha combustion consumption by freight transport,0.33545434999999996,TJ,N2O,0.6,kg/TJ,0.20127260999999996,kg +24d9cd3f-a60f-378c-a1cf-fa69829bff65,SESCO,II.1.1,Jujuy,AR-Y,annual,2020,naphtha combustion consumption by freight transport,0.030495849999999998,TJ,CO2,73300.0,kg/TJ,2235.345805,kg +a03871f8-083c-3afd-b4c0-0fba3ef4d022,SESCO,II.1.1,Jujuy,AR-Y,annual,2020,naphtha combustion consumption by freight transport,0.030495849999999998,TJ,CH4,3.0,kg/TJ,0.09148755,kg +c001fb4a-7dc0-3bba-9d9f-b00c7f1ba396,SESCO,II.1.1,Jujuy,AR-Y,annual,2020,naphtha combustion consumption by freight transport,0.030495849999999998,TJ,N2O,0.6,kg/TJ,0.01829751,kg +07bf4c21-9d17-39a0-b1ed-2d64204299e7,SESCO,II.1.1,Mendoza,AR-M,annual,2020,naphtha combustion consumption by freight transport,0.15247924999999998,TJ,CO2,73300.0,kg/TJ,11176.729024999999,kg +8c8d3aed-a741-3cb5-8b9f-3721f304a69f,SESCO,II.1.1,Mendoza,AR-M,annual,2020,naphtha combustion consumption by freight transport,0.15247924999999998,TJ,CH4,3.0,kg/TJ,0.45743775,kg +439d25c9-a258-3613-83d7-53f465a7a472,SESCO,II.1.1,Mendoza,AR-M,annual,2020,naphtha combustion consumption by freight transport,0.15247924999999998,TJ,N2O,0.6,kg/TJ,0.09148754999999999,kg +1a2185e8-7eee-3697-b668-ce9ac0f46496,SESCO,II.1.1,Santa Fe,AR-S,annual,2020,naphtha combustion consumption by freight transport,1.25032985,TJ,CO2,73300.0,kg/TJ,91649.178005,kg +74b5d93a-63cb-3f3c-989f-81048c0ca766,SESCO,II.1.1,Santa Fe,AR-S,annual,2020,naphtha combustion consumption by freight transport,1.25032985,TJ,CH4,3.0,kg/TJ,3.75098955,kg +ebaab00c-0418-3265-bea8-9e456e2b304b,SESCO,II.1.1,Santa Fe,AR-S,annual,2020,naphtha combustion consumption by freight transport,1.25032985,TJ,N2O,0.6,kg/TJ,0.7501979099999999,kg +5e26a57e-780a-3fdd-a8f3-738690215b39,SESCO,II.1.1,Buenos Aires,AR-B,annual,2020,naphtha combustion consumption by freight transport,5.82470735,TJ,CO2,73300.0,kg/TJ,426951.048755,kg +c90cebdc-5f2d-3f7e-bf51-8ae5a5d41604,SESCO,II.1.1,Buenos Aires,AR-B,annual,2020,naphtha combustion consumption by freight transport,5.82470735,TJ,CH4,3.0,kg/TJ,17.47412205,kg +10ff6de4-d3b6-3a3c-8b4c-68d492739e10,SESCO,II.1.1,Buenos Aires,AR-B,annual,2020,naphtha combustion consumption by freight transport,5.82470735,TJ,N2O,0.6,kg/TJ,3.4948244099999997,kg +ce03238c-0ae6-342e-a746-117d899987b5,SESCO,II.1.1,Capital Federal,AR-C,annual,2020,naphtha combustion consumption by freight transport,2.5006597,TJ,CO2,73300.0,kg/TJ,183298.35601,kg +9fb5b976-35a3-3bb9-9fbe-15e760f65a93,SESCO,II.1.1,Capital Federal,AR-C,annual,2020,naphtha combustion consumption by freight transport,2.5006597,TJ,CH4,3.0,kg/TJ,7.5019791,kg +d139c820-2106-3e9b-b3b3-c33d0d9a9f5e,SESCO,II.1.1,Capital Federal,AR-C,annual,2020,naphtha combustion consumption by freight transport,2.5006597,TJ,N2O,0.6,kg/TJ,1.5003958199999998,kg +9eabbcf1-4071-3646-aa66-c10cbf1eea17,SESCO,II.1.1,Corrientes,AR-W,annual,2020,naphtha combustion consumption by freight transport,0.24396679999999998,TJ,CO2,73300.0,kg/TJ,17882.76644,kg +d9ff7fab-7c8c-35ba-b7dc-da6206551d8d,SESCO,II.1.1,Corrientes,AR-W,annual,2020,naphtha combustion consumption by freight transport,0.24396679999999998,TJ,CH4,3.0,kg/TJ,0.7319004,kg +a538552f-09cc-3a6c-8e5c-14d095ba38a2,SESCO,II.1.1,Corrientes,AR-W,annual,2020,naphtha combustion consumption by freight transport,0.24396679999999998,TJ,N2O,0.6,kg/TJ,0.14638008,kg +0b5ff98b-e979-3666-a472-2d985a9bf902,SESCO,II.1.1,Córdoba,AR-X,annual,2020,naphtha combustion consumption by freight transport,0.7014045499999999,TJ,CO2,73300.0,kg/TJ,51412.953514999994,kg +6a074983-d9ba-3052-bda8-d489591afa16,SESCO,II.1.1,Córdoba,AR-X,annual,2020,naphtha combustion consumption by freight transport,0.7014045499999999,TJ,CH4,3.0,kg/TJ,2.1042136499999997,kg +b66b9664-ceaf-3793-a546-1d456fba80c8,SESCO,II.1.1,Córdoba,AR-X,annual,2020,naphtha combustion consumption by freight transport,0.7014045499999999,TJ,N2O,0.6,kg/TJ,0.42084272999999994,kg +460207ca-b356-36d1-a81c-caa45f0815c5,SESCO,II.1.1,Entre Rios,AR-E,annual,2020,naphtha combustion consumption by freight transport,0.7928921,TJ,CO2,73300.0,kg/TJ,58118.99093,kg +17d55e14-999b-3bfb-adc0-16e1b34b00fe,SESCO,II.1.1,Entre Rios,AR-E,annual,2020,naphtha combustion consumption by freight transport,0.7928921,TJ,CH4,3.0,kg/TJ,2.3786763,kg +8062ad2e-c97d-38d6-b6e0-7834dc1fbe6a,SESCO,II.1.1,Entre Rios,AR-E,annual,2020,naphtha combustion consumption by freight transport,0.7928921,TJ,N2O,0.6,kg/TJ,0.47573526,kg +f7e0aa60-26d8-30ad-bb30-1f01c5f8f253,SESCO,II.1.1,Santa Fe,AR-S,annual,2020,naphtha combustion consumption by freight transport,1.2808257,TJ,CO2,73300.0,kg/TJ,93884.52381,kg +6f2a9c4a-84e2-378d-9872-35cb8d0d3e7f,SESCO,II.1.1,Santa Fe,AR-S,annual,2020,naphtha combustion consumption by freight transport,1.2808257,TJ,CH4,3.0,kg/TJ,3.8424771,kg +35585c1e-cc48-3caa-897d-5c5e9826e374,SESCO,II.1.1,Santa Fe,AR-S,annual,2020,naphtha combustion consumption by freight transport,1.2808257,TJ,N2O,0.6,kg/TJ,0.76849542,kg +0c850a87-33b9-3303-8ec6-b672a3af62fb,SESCO,II.1.1,Santa Fe,AR-S,annual,2020,naphtha combustion consumption by public passenger transport,0.09148754999999999,TJ,CO2,73300.0,kg/TJ,6706.037414999999,kg +4831fd76-8a18-3768-93e8-327618d2e671,SESCO,II.1.1,Santa Fe,AR-S,annual,2020,naphtha combustion consumption by public passenger transport,0.09148754999999999,TJ,CH4,3.0,kg/TJ,0.27446265,kg +1ecfdfca-e882-3cd0-bbe1-27a1ce3f9d5e,SESCO,II.1.1,Santa Fe,AR-S,annual,2020,naphtha combustion consumption by public passenger transport,0.09148754999999999,TJ,N2O,0.6,kg/TJ,0.05489252999999999,kg +c6675373-8b71-3717-aac5-0061a59e1ebc,SESCO,II.1.1,Córdoba,AR-X,annual,2020,naphtha combustion consumption by public passenger transport,0.030495849999999998,TJ,CO2,73300.0,kg/TJ,2235.345805,kg +c5fc2307-7d22-3ee6-aeef-e06556b157ed,SESCO,II.1.1,Córdoba,AR-X,annual,2020,naphtha combustion consumption by public passenger transport,0.030495849999999998,TJ,CH4,3.0,kg/TJ,0.09148755,kg +016009af-de36-383e-aebf-c33ed5a905af,SESCO,II.1.1,Córdoba,AR-X,annual,2020,naphtha combustion consumption by public passenger transport,0.030495849999999998,TJ,N2O,0.6,kg/TJ,0.01829751,kg +65a27237-3408-3aa2-a95f-34238f3924d8,SESCO,II.1.1,Catamarca,AR-K,annual,2020,naphtha combustion consumption by to the public,148.78925214999998,TJ,CO2,73300.0,kg/TJ,10906252.182594998,kg +320bd552-30ff-327c-9e19-f09de3515f79,SESCO,II.1.1,Catamarca,AR-K,annual,2020,naphtha combustion consumption by to the public,148.78925214999998,TJ,CH4,3.0,kg/TJ,446.36775644999994,kg +baaf8811-09a6-330c-813f-89577bb6e120,SESCO,II.1.1,Catamarca,AR-K,annual,2020,naphtha combustion consumption by to the public,148.78925214999998,TJ,N2O,0.6,kg/TJ,89.27355128999999,kg +e70f0b8f-1a59-384a-bb26-51050b03bbaf,SESCO,II.1.1,Chaco,AR-H,annual,2020,naphtha combustion consumption by to the public,102.1610975,TJ,CO2,73300.0,kg/TJ,7488408.44675,kg +a2d27910-d4df-343f-aa5c-d77a68445711,SESCO,II.1.1,Chaco,AR-H,annual,2020,naphtha combustion consumption by to the public,102.1610975,TJ,CH4,3.0,kg/TJ,306.4832925,kg +9e27358a-ff64-3673-a1c9-c5f6c50a8341,SESCO,II.1.1,Chaco,AR-H,annual,2020,naphtha combustion consumption by to the public,102.1610975,TJ,N2O,0.6,kg/TJ,61.29665849999999,kg +5cd0a7b5-f263-3907-849d-06425222d9ab,SESCO,II.1.1,Jujuy,AR-Y,annual,2020,naphtha combustion consumption by to the public,345.88393069999995,TJ,CO2,73300.0,kg/TJ,25353292.120309997,kg +511b2ca7-6ae8-3f0a-a713-5c5c0b5d49cb,SESCO,II.1.1,Jujuy,AR-Y,annual,2020,naphtha combustion consumption by to the public,345.88393069999995,TJ,CH4,3.0,kg/TJ,1037.6517921,kg +b1ee87f1-7589-3703-9f8d-16cd84d28c88,SESCO,II.1.1,Jujuy,AR-Y,annual,2020,naphtha combustion consumption by to the public,345.88393069999995,TJ,N2O,0.6,kg/TJ,207.53035841999997,kg +600553c8-2778-3853-b8d4-c2f73fd748f7,SESCO,II.1.1,La Rioja,AR-F,annual,2020,naphtha combustion consumption by to the public,331.48988949999995,TJ,CO2,73300.0,kg/TJ,24298208.900349997,kg +10995f1b-6ac2-3e24-aa6f-3d2a86913276,SESCO,II.1.1,La Rioja,AR-F,annual,2020,naphtha combustion consumption by to the public,331.48988949999995,TJ,CH4,3.0,kg/TJ,994.4696684999999,kg +9a521a28-5316-38bc-bc2b-e6718700e6ae,SESCO,II.1.1,La Rioja,AR-F,annual,2020,naphtha combustion consumption by to the public,331.48988949999995,TJ,N2O,0.6,kg/TJ,198.89393369999996,kg +caaeb323-ca53-3f04-9d2d-21dc94dceb96,SESCO,II.1.1,Salta,AR-A,annual,2020,naphtha combustion consumption by to the public,804.5305361939999,TJ,CO2,73300.0,kg/TJ,58972088.30302019,kg +4e2db3f3-24b4-3a1e-bce9-378e58054f49,SESCO,II.1.1,Salta,AR-A,annual,2020,naphtha combustion consumption by to the public,804.5305361939999,TJ,CH4,3.0,kg/TJ,2413.5916085819995,kg +39694b1f-b5dd-3f58-a6ab-aa2b952bdfe3,SESCO,II.1.1,Salta,AR-A,annual,2020,naphtha combustion consumption by to the public,804.5305361939999,TJ,N2O,0.6,kg/TJ,482.7183217163999,kg +55feace2-7182-3157-b99f-1612fed88592,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2020,naphtha combustion consumption by to the public,252.59712555,TJ,CO2,73300.0,kg/TJ,18515369.302814998,kg +81d7edc0-e127-38e4-8a2b-419d4cb8a56b,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2020,naphtha combustion consumption by to the public,252.59712555,TJ,CH4,3.0,kg/TJ,757.79137665,kg +adf0537f-6913-3013-912c-74d1c7a3bdb7,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2020,naphtha combustion consumption by to the public,252.59712555,TJ,N2O,0.6,kg/TJ,151.55827533,kg +c4779078-2ad4-3f26-9637-32462f03d609,SESCO,II.1.1,Tucuman,AR-T,annual,2020,naphtha combustion consumption by to the public,1674.0998766414998,TJ,CO2,73300.0,kg/TJ,122711520.95782194,kg +ade0de58-46c7-3f70-8566-cef839711994,SESCO,II.1.1,Tucuman,AR-T,annual,2020,naphtha combustion consumption by to the public,1674.0998766414998,TJ,CH4,3.0,kg/TJ,5022.2996299245,kg +a8d7e8d9-ad8b-3ffc-a119-e1f5a75420d6,SESCO,II.1.1,Tucuman,AR-T,annual,2020,naphtha combustion consumption by to the public,1674.0998766414998,TJ,N2O,0.6,kg/TJ,1004.4599259848999,kg +f5a02ffd-6ced-37f3-bb17-111c0a02c339,SESCO,II.1.1,Catamarca,AR-K,annual,2020,naphtha combustion consumption by to the public,13.997595149999999,TJ,CO2,73300.0,kg/TJ,1026023.7244949999,kg +668a4a0a-d28e-3192-8f1e-155c808799ec,SESCO,II.1.1,Catamarca,AR-K,annual,2020,naphtha combustion consumption by to the public,13.997595149999999,TJ,CH4,3.0,kg/TJ,41.99278545,kg +fde5e91e-270c-33e2-90e3-db425aa9db4a,SESCO,II.1.1,Catamarca,AR-K,annual,2020,naphtha combustion consumption by to the public,13.997595149999999,TJ,N2O,0.6,kg/TJ,8.398557089999999,kg +89f6677a-330b-3a5c-bb5f-23f990498d16,SESCO,II.1.1,Chaco,AR-H,annual,2020,naphtha combustion consumption by to the public,2.9580974499999995,TJ,CO2,73300.0,kg/TJ,216828.54308499995,kg +68d34671-1cd3-387b-a353-fb3af6451d39,SESCO,II.1.1,Chaco,AR-H,annual,2020,naphtha combustion consumption by to the public,2.9580974499999995,TJ,CH4,3.0,kg/TJ,8.874292349999997,kg +152bbab4-f623-3b03-92e9-0f6e6c5a5b4f,SESCO,II.1.1,Chaco,AR-H,annual,2020,naphtha combustion consumption by to the public,2.9580974499999995,TJ,N2O,0.6,kg/TJ,1.7748584699999996,kg +f64407bb-5fec-3d7e-9029-4fba486347fa,SESCO,II.1.1,Jujuy,AR-Y,annual,2020,naphtha combustion consumption by to the public,17.41313035,TJ,CO2,73300.0,kg/TJ,1276382.454655,kg +57722c69-b14d-3192-be65-14c67d388164,SESCO,II.1.1,Jujuy,AR-Y,annual,2020,naphtha combustion consumption by to the public,17.41313035,TJ,CH4,3.0,kg/TJ,52.239391049999995,kg +89119d67-54af-355f-822c-53ac336a4e7d,SESCO,II.1.1,Jujuy,AR-Y,annual,2020,naphtha combustion consumption by to the public,17.41313035,TJ,N2O,0.6,kg/TJ,10.447878209999999,kg +b62a3296-bc09-32c2-b023-b9f16d3f4a8d,SESCO,II.1.1,La Rioja,AR-F,annual,2020,naphtha combustion consumption by to the public,27.537752549999997,TJ,CO2,73300.0,kg/TJ,2018517.2619149997,kg +0f8e2d7c-dc83-3161-b0a8-7078404b25e4,SESCO,II.1.1,La Rioja,AR-F,annual,2020,naphtha combustion consumption by to the public,27.537752549999997,TJ,CH4,3.0,kg/TJ,82.61325765,kg +f462c0ab-90df-3252-b1f5-31a2d964c23c,SESCO,II.1.1,La Rioja,AR-F,annual,2020,naphtha combustion consumption by to the public,27.537752549999997,TJ,N2O,0.6,kg/TJ,16.522651529999997,kg +3c958530-335f-39e4-893f-0b10553724ea,SESCO,II.1.1,Salta,AR-A,annual,2020,naphtha combustion consumption by to the public,41.329195754,TJ,CO2,73300.0,kg/TJ,3029430.0487682,kg +ff6bb5cc-876d-3c61-9df4-090d015d1816,SESCO,II.1.1,Salta,AR-A,annual,2020,naphtha combustion consumption by to the public,41.329195754,TJ,CH4,3.0,kg/TJ,123.98758726199999,kg +9af2dce0-7b23-3dd8-b2e6-e304b66cf945,SESCO,II.1.1,Salta,AR-A,annual,2020,naphtha combustion consumption by to the public,41.329195754,TJ,N2O,0.6,kg/TJ,24.797517452399997,kg +890b7e31-db06-3651-bfdd-5e3b9ad93590,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2020,naphtha combustion consumption by to the public,24.488167549999996,TJ,CO2,73300.0,kg/TJ,1794982.6814149998,kg +7b94b54f-1020-372e-8101-74726b9254fa,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2020,naphtha combustion consumption by to the public,24.488167549999996,TJ,CH4,3.0,kg/TJ,73.46450264999999,kg +e1ff9f70-5bf4-3c6f-88ce-3f916459c23a,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2020,naphtha combustion consumption by to the public,24.488167549999996,TJ,N2O,0.6,kg/TJ,14.692900529999998,kg +052187c5-363b-3bae-98a3-2434aff64c55,SESCO,II.1.1,Tucuman,AR-T,annual,2020,naphtha combustion consumption by to the public,122.75159046149999,TJ,CO2,73300.0,kg/TJ,8997691.58082795,kg +70225cbd-eebb-3466-9469-f0b7b3aeb56e,SESCO,II.1.1,Tucuman,AR-T,annual,2020,naphtha combustion consumption by to the public,122.75159046149999,TJ,CH4,3.0,kg/TJ,368.2547713845,kg +1eacf7d0-62b8-37fd-975b-12f83de6b5c3,SESCO,II.1.1,Tucuman,AR-T,annual,2020,naphtha combustion consumption by to the public,122.75159046149999,TJ,N2O,0.6,kg/TJ,73.6509542769,kg +97c9785b-3207-3551-a974-ebb17c484a46,SESCO,I.3.1,Jujuy,AR-Y,annual,2020,naphtha combustion consumption by petrochemical industries,3.08008085,TJ,CO2,73300.0,kg/TJ,225769.926305,kg +c1fe0dc1-908b-3416-82b6-56dcac4cd5e4,SESCO,I.3.1,Jujuy,AR-Y,annual,2020,naphtha combustion consumption by petrochemical industries,3.08008085,TJ,CH4,3.0,kg/TJ,9.24024255,kg +94808c5b-71dc-377a-b42c-bdcad7cf6854,SESCO,I.3.1,Jujuy,AR-Y,annual,2020,naphtha combustion consumption by petrochemical industries,3.08008085,TJ,N2O,0.6,kg/TJ,1.84804851,kg +48fcdc59-1163-34f1-8586-ff5d934ba18e,SESCO,II.5.1,Buenos Aires,AR-B,annual,2020,naphtha combustion consumption by agriculture machines,1.1283464499999998,TJ,CO2,73300.0,kg/TJ,82707.79478499999,kg +2e13dead-9fe4-3e3e-aa3e-3f2a0ecb27e3,SESCO,II.5.1,Buenos Aires,AR-B,annual,2020,naphtha combustion consumption by agriculture machines,1.1283464499999998,TJ,CH4,3.0,kg/TJ,3.3850393499999996,kg +0736514d-76f9-3b32-8102-6d576ae7a03d,SESCO,II.5.1,Buenos Aires,AR-B,annual,2020,naphtha combustion consumption by agriculture machines,1.1283464499999998,TJ,N2O,0.6,kg/TJ,0.6770078699999998,kg +489ca91b-e276-3bcf-aa01-408cf472a946,SESCO,II.5.1,Santa Fe,AR-S,annual,2020,naphtha combustion consumption by agriculture machines,0.82338795,TJ,CO2,73300.0,kg/TJ,60354.336735,kg +d5210230-88ef-3b7a-b0be-df2a18a1c83d,SESCO,II.5.1,Santa Fe,AR-S,annual,2020,naphtha combustion consumption by agriculture machines,0.82338795,TJ,CH4,3.0,kg/TJ,2.47016385,kg +0b584a0b-ce92-3982-82e7-e402b262ac38,SESCO,II.5.1,Santa Fe,AR-S,annual,2020,naphtha combustion consumption by agriculture machines,0.82338795,TJ,N2O,0.6,kg/TJ,0.49403276999999995,kg +0dc6c3e3-dc9b-3e27-9787-c32c89e3dfd1,SESCO,II.5.1,Buenos Aires,AR-B,annual,2020,naphtha combustion consumption by agriculture machines,0.4574377499999999,TJ,CO2,73300.0,kg/TJ,33530.187074999994,kg +506ccc40-6621-3aa6-bc26-022ac53ce8cf,SESCO,II.5.1,Buenos Aires,AR-B,annual,2020,naphtha combustion consumption by agriculture machines,0.4574377499999999,TJ,CH4,3.0,kg/TJ,1.3723132499999997,kg +7e301896-f868-33ae-bdb4-6a01a4f9a6ed,SESCO,II.5.1,Buenos Aires,AR-B,annual,2020,naphtha combustion consumption by agriculture machines,0.4574377499999999,TJ,N2O,0.6,kg/TJ,0.2744626499999999,kg +e9944c4c-5aa1-3ab3-9571-daa29bc45a1f,SESCO,II.5.1,Santa Fe,AR-S,annual,2020,naphtha combustion consumption by agriculture machines,0.18297509999999997,TJ,CO2,73300.0,kg/TJ,13412.074829999998,kg +60a65c9a-ecad-314b-9a5e-3743ef020edd,SESCO,II.5.1,Santa Fe,AR-S,annual,2020,naphtha combustion consumption by agriculture machines,0.18297509999999997,TJ,CH4,3.0,kg/TJ,0.5489253,kg +ca458409-fc02-33a9-8cea-9abffe83f63d,SESCO,II.5.1,Santa Fe,AR-S,annual,2020,naphtha combustion consumption by agriculture machines,0.18297509999999997,TJ,N2O,0.6,kg/TJ,0.10978505999999998,kg +056814d7-efba-3675-873f-5dfd183800d2,SESCO,II.1.1,Buenos Aires,AR-B,annual,2020,naphtha combustion consumption by to the public,13252.276576,TJ,CO2,73300.0,kg/TJ,971391873.0208,kg +59f0c69b-1e2c-38a4-900a-1732fbe993b0,SESCO,II.1.1,Buenos Aires,AR-B,annual,2020,naphtha combustion consumption by to the public,13252.276576,TJ,CH4,3.0,kg/TJ,39756.829728,kg +b81728ec-388f-34e5-af53-a2245029ae28,SESCO,II.1.1,Buenos Aires,AR-B,annual,2020,naphtha combustion consumption by to the public,13252.276576,TJ,N2O,0.6,kg/TJ,7951.3659456,kg +f086a30f-e1e2-3c3f-afec-5e3cb5d40a09,SESCO,II.1.1,Capital Federal,AR-C,annual,2020,naphtha combustion consumption by to the public,3265.46512215,TJ,CO2,73300.0,kg/TJ,239358593.45359498,kg +8126bc1d-9d14-3bf1-82c0-d12099adf6b6,SESCO,II.1.1,Capital Federal,AR-C,annual,2020,naphtha combustion consumption by to the public,3265.46512215,TJ,CH4,3.0,kg/TJ,9796.39536645,kg +a1b8edb5-8953-347c-a606-4330956338b9,SESCO,II.1.1,Capital Federal,AR-C,annual,2020,naphtha combustion consumption by to the public,3265.46512215,TJ,N2O,0.6,kg/TJ,1959.2790732899998,kg +eb5d342d-6975-3705-b086-ad1da1b2a440,SESCO,II.1.1,Catamarca,AR-K,annual,2020,naphtha combustion consumption by to the public,39.705596699999994,TJ,CO2,73300.0,kg/TJ,2910420.2381099993,kg +183104a2-1af8-31b7-bf4e-cbf3a1be579d,SESCO,II.1.1,Catamarca,AR-K,annual,2020,naphtha combustion consumption by to the public,39.705596699999994,TJ,CH4,3.0,kg/TJ,119.11679009999997,kg +9386b4ce-5e58-354b-a685-5ffe1952add5,SESCO,II.1.1,Catamarca,AR-K,annual,2020,naphtha combustion consumption by to the public,39.705596699999994,TJ,N2O,0.6,kg/TJ,23.823358019999997,kg +3403150d-7c6e-3b51-8d44-2ce968a2e6d9,SESCO,II.1.1,Chaco,AR-H,annual,2020,naphtha combustion consumption by to the public,805.2734151,TJ,CO2,73300.0,kg/TJ,59026541.32683,kg +15875479-80c0-348e-a458-d118d2e165fb,SESCO,II.1.1,Chaco,AR-H,annual,2020,naphtha combustion consumption by to the public,805.2734151,TJ,CH4,3.0,kg/TJ,2415.8202453,kg +a55c0928-8173-3b7b-b1d7-77f4fa84d828,SESCO,II.1.1,Chaco,AR-H,annual,2020,naphtha combustion consumption by to the public,805.2734151,TJ,N2O,0.6,kg/TJ,483.16404905999997,kg +69a284b0-ebdf-3a83-a00c-f2964c976845,SESCO,II.1.1,Corrientes,AR-W,annual,2020,naphtha combustion consumption by to the public,825.4006760999998,TJ,CO2,73300.0,kg/TJ,60501869.55812999,kg +5bc98776-2145-3c47-bc7f-aeec942def5f,SESCO,II.1.1,Corrientes,AR-W,annual,2020,naphtha combustion consumption by to the public,825.4006760999998,TJ,CH4,3.0,kg/TJ,2476.2020282999993,kg +c5b9e9b3-31d8-3bcc-842d-5858c64c2d7e,SESCO,II.1.1,Corrientes,AR-W,annual,2020,naphtha combustion consumption by to the public,825.4006760999998,TJ,N2O,0.6,kg/TJ,495.24040565999985,kg +9717acdd-7d6c-3371-8991-e8fa328f88b6,SESCO,II.1.1,Córdoba,AR-X,annual,2020,naphtha combustion consumption by to the public,3035.5264131499994,TJ,CO2,73300.0,kg/TJ,222504086.08389497,kg +91850174-3e3c-39ab-8102-ab33da586c2f,SESCO,II.1.1,Córdoba,AR-X,annual,2020,naphtha combustion consumption by to the public,3035.5264131499994,TJ,CH4,3.0,kg/TJ,9106.579239449999,kg +57c475e7-02cb-3b86-b412-e03efc64573f,SESCO,II.1.1,Córdoba,AR-X,annual,2020,naphtha combustion consumption by to the public,3035.5264131499994,TJ,N2O,0.6,kg/TJ,1821.3158478899995,kg +f34a8298-5ec5-351e-b20e-4582933242d6,SESCO,II.1.1,Entre Rios,AR-E,annual,2020,naphtha combustion consumption by to the public,876.5422165499999,TJ,CO2,73300.0,kg/TJ,64250544.473115,kg +49087d1f-ae0c-3d2d-b67b-17c36cb69355,SESCO,II.1.1,Entre Rios,AR-E,annual,2020,naphtha combustion consumption by to the public,876.5422165499999,TJ,CH4,3.0,kg/TJ,2629.6266496499998,kg +fac509a7-7f18-3431-a0e9-e6f8ddf6e58b,SESCO,II.1.1,Entre Rios,AR-E,annual,2020,naphtha combustion consumption by to the public,876.5422165499999,TJ,N2O,0.6,kg/TJ,525.92532993,kg +0ce53ac2-75d4-39e6-bd38-1045e3975509,SESCO,II.1.1,Formosa,AR-P,annual,2020,naphtha combustion consumption by to the public,299.56073454999995,TJ,CO2,73300.0,kg/TJ,21957801.842514995,kg +efd8e498-72cb-3a4f-ba42-832064172a49,SESCO,II.1.1,Formosa,AR-P,annual,2020,naphtha combustion consumption by to the public,299.56073454999995,TJ,CH4,3.0,kg/TJ,898.6822036499998,kg +3b7ab662-daf0-3e5b-be31-cc8d64b3757e,SESCO,II.1.1,Formosa,AR-P,annual,2020,naphtha combustion consumption by to the public,299.56073454999995,TJ,N2O,0.6,kg/TJ,179.73644072999997,kg +c694642f-6981-3f5a-9e13-f37b915fb922,SESCO,II.1.1,Jujuy,AR-Y,annual,2020,naphtha combustion consumption by to the public,150.4665239,TJ,CO2,73300.0,kg/TJ,11029196.20187,kg +1b6fd95d-f1a3-318c-925a-87a9a036718a,SESCO,II.1.1,Jujuy,AR-Y,annual,2020,naphtha combustion consumption by to the public,150.4665239,TJ,CH4,3.0,kg/TJ,451.3995717,kg +8b17ab3b-6f68-3d6b-9aa7-d8dd6cfa5a1e,SESCO,II.1.1,Jujuy,AR-Y,annual,2020,naphtha combustion consumption by to the public,150.4665239,TJ,N2O,0.6,kg/TJ,90.27991433999999,kg +a27663c4-62a4-3868-a0e0-f6fef58e0f49,SESCO,II.1.1,La Pampa,AR-L,annual,2020,naphtha combustion consumption by to the public,230.12168409999995,TJ,CO2,73300.0,kg/TJ,16867919.444529995,kg +8cb3be39-a6b1-3074-9c90-d58ff1bd8c8b,SESCO,II.1.1,La Pampa,AR-L,annual,2020,naphtha combustion consumption by to the public,230.12168409999995,TJ,CH4,3.0,kg/TJ,690.3650522999999,kg +f9f7ddaf-ccff-33f3-868c-97c9757a5bd4,SESCO,II.1.1,La Pampa,AR-L,annual,2020,naphtha combustion consumption by to the public,230.12168409999995,TJ,N2O,0.6,kg/TJ,138.07301045999998,kg +1923046f-f005-3139-be51-3240078ad6bf,SESCO,II.1.1,La Rioja,AR-F,annual,2020,naphtha combustion consumption by to the public,195.75286114999997,TJ,CO2,73300.0,kg/TJ,14348684.722294997,kg +a5b153ac-61a8-3443-83fe-0ba642048810,SESCO,II.1.1,La Rioja,AR-F,annual,2020,naphtha combustion consumption by to the public,195.75286114999997,TJ,CH4,3.0,kg/TJ,587.25858345,kg +69f2005b-f85c-339a-b64b-160cdf609f05,SESCO,II.1.1,La Rioja,AR-F,annual,2020,naphtha combustion consumption by to the public,195.75286114999997,TJ,N2O,0.6,kg/TJ,117.45171668999998,kg +af2332b5-879f-3b3d-9512-9bf4ff0de4ee,SESCO,II.1.1,Mendoza,AR-M,annual,2020,naphtha combustion consumption by to the public,1129.90173835,TJ,CO2,73300.0,kg/TJ,82821797.421055,kg +c2d6f8da-ea4f-353a-a683-be4654ed62b7,SESCO,II.1.1,Mendoza,AR-M,annual,2020,naphtha combustion consumption by to the public,1129.90173835,TJ,CH4,3.0,kg/TJ,3389.70521505,kg +74f53b6a-2a48-36ad-975b-218fd13645c8,SESCO,II.1.1,Mendoza,AR-M,annual,2020,naphtha combustion consumption by to the public,1129.90173835,TJ,N2O,0.6,kg/TJ,677.9410430099999,kg +0af8d4fe-c56d-30ac-aa37-7720865dbd4a,SESCO,II.1.1,Misiones,AR-N,annual,2020,naphtha combustion consumption by to the public,987.6995897999999,TJ,CO2,73300.0,kg/TJ,72398379.93234,kg +37738c25-44b2-3982-bc38-8ddfedb3fee2,SESCO,II.1.1,Misiones,AR-N,annual,2020,naphtha combustion consumption by to the public,987.6995897999999,TJ,CH4,3.0,kg/TJ,2963.0987693999996,kg +9c5ab5d2-2b88-3fae-be11-b0ea40f30287,SESCO,II.1.1,Misiones,AR-N,annual,2020,naphtha combustion consumption by to the public,987.6995897999999,TJ,N2O,0.6,kg/TJ,592.61975388,kg +e08dd19d-d203-3e35-b201-128d2298377a,SESCO,II.1.1,Neuquén,AR-Q,annual,2020,naphtha combustion consumption by to the public,357.50284954999995,TJ,CO2,73300.0,kg/TJ,26204958.872014996,kg +c4b43d12-7438-3dbc-9591-1912ef50a58a,SESCO,II.1.1,Neuquén,AR-Q,annual,2020,naphtha combustion consumption by to the public,357.50284954999995,TJ,CH4,3.0,kg/TJ,1072.5085486499997,kg +a2270700-5e9e-3939-9518-07fcd73311ee,SESCO,II.1.1,Neuquén,AR-Q,annual,2020,naphtha combustion consumption by to the public,357.50284954999995,TJ,N2O,0.6,kg/TJ,214.50170972999996,kg +880c4cbc-a68c-3d96-a22b-8ca7fdf17e3f,SESCO,II.1.1,Rio Negro,AR-R,annual,2020,naphtha combustion consumption by to the public,204.59665765,TJ,CO2,73300.0,kg/TJ,14996935.005745,kg +ab6a70a8-9cec-32d2-bf76-05a4aa6270ac,SESCO,II.1.1,Rio Negro,AR-R,annual,2020,naphtha combustion consumption by to the public,204.59665765,TJ,CH4,3.0,kg/TJ,613.78997295,kg +4a165a63-5ce7-3ce6-979f-d805991f890f,SESCO,II.1.1,Rio Negro,AR-R,annual,2020,naphtha combustion consumption by to the public,204.59665765,TJ,N2O,0.6,kg/TJ,122.75799459,kg +3d4d878c-54e5-3156-b546-abe421dcbc38,SESCO,II.1.1,Salta,AR-A,annual,2020,naphtha combustion consumption by to the public,216.55103085,TJ,CO2,73300.0,kg/TJ,15873190.561305,kg +dc56f55c-9d74-38d8-beb3-7ac962dde32d,SESCO,II.1.1,Salta,AR-A,annual,2020,naphtha combustion consumption by to the public,216.55103085,TJ,CH4,3.0,kg/TJ,649.65309255,kg +a8321880-0e7a-39cd-904b-1b9def95a791,SESCO,II.1.1,Salta,AR-A,annual,2020,naphtha combustion consumption by to the public,216.55103085,TJ,N2O,0.6,kg/TJ,129.93061851,kg +ad481bd0-8e89-313f-822d-fee473600690,SESCO,II.1.1,San Juan,AR-J,annual,2020,naphtha combustion consumption by to the public,237.98961339999997,TJ,CO2,73300.0,kg/TJ,17444638.662219997,kg +8455871a-5aa0-386f-84b7-9fe171979201,SESCO,II.1.1,San Juan,AR-J,annual,2020,naphtha combustion consumption by to the public,237.98961339999997,TJ,CH4,3.0,kg/TJ,713.9688401999999,kg +21168f61-28b5-3866-8acf-e7e1e0b9b96d,SESCO,II.1.1,San Juan,AR-J,annual,2020,naphtha combustion consumption by to the public,237.98961339999997,TJ,N2O,0.6,kg/TJ,142.79376803999997,kg +0f2b9524-5321-367f-aa93-0f6eb535b70c,SESCO,II.1.1,San Luis,AR-D,annual,2020,naphtha combustion consumption by to the public,190.47707909999997,TJ,CO2,73300.0,kg/TJ,13961969.898029998,kg +c2c558f2-79a3-38ed-b628-5e54d009d1f5,SESCO,II.1.1,San Luis,AR-D,annual,2020,naphtha combustion consumption by to the public,190.47707909999997,TJ,CH4,3.0,kg/TJ,571.4312372999999,kg +5ee9acc2-4ffe-301b-b3e9-1ebcf87687df,SESCO,II.1.1,San Luis,AR-D,annual,2020,naphtha combustion consumption by to the public,190.47707909999997,TJ,N2O,0.6,kg/TJ,114.28624745999998,kg +1705b9a1-7d34-355f-976d-f95b48044316,SESCO,II.1.1,Santa Fe,AR-S,annual,2020,naphtha combustion consumption by to the public,2563.9690846,TJ,CO2,73300.0,kg/TJ,187938933.90118,kg +e087f016-33ea-333d-9675-64768ef70780,SESCO,II.1.1,Santa Fe,AR-S,annual,2020,naphtha combustion consumption by to the public,2563.9690846,TJ,CH4,3.0,kg/TJ,7691.9072538,kg +f01a0d52-66a6-3940-9a08-277f14cebf62,SESCO,II.1.1,Santa Fe,AR-S,annual,2020,naphtha combustion consumption by to the public,2563.9690846,TJ,N2O,0.6,kg/TJ,1538.3814507599998,kg +9cd54247-5a7b-3d26-bd3b-6360fd0006c8,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2020,naphtha combustion consumption by to the public,396.4765458499999,TJ,CO2,73300.0,kg/TJ,29061730.810804993,kg +8bb01e0e-ef50-35f1-9ddc-4654b6f52d11,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2020,naphtha combustion consumption by to the public,396.4765458499999,TJ,CH4,3.0,kg/TJ,1189.4296375499998,kg +93cacdc3-1fd3-3d38-ae0c-808813019ac9,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2020,naphtha combustion consumption by to the public,396.4765458499999,TJ,N2O,0.6,kg/TJ,237.88592750999993,kg +00695794-40f7-352c-83ea-31abe78320c2,SESCO,II.1.1,Tucuman,AR-T,annual,2020,naphtha combustion consumption by to the public,848.1810760499999,TJ,CO2,73300.0,kg/TJ,62171672.87446499,kg +45b14870-1279-32c6-b172-b301f4d54634,SESCO,II.1.1,Tucuman,AR-T,annual,2020,naphtha combustion consumption by to the public,848.1810760499999,TJ,CH4,3.0,kg/TJ,2544.54322815,kg +17d41413-3418-308c-9b10-28aa5895e120,SESCO,II.1.1,Tucuman,AR-T,annual,2020,naphtha combustion consumption by to the public,848.1810760499999,TJ,N2O,0.6,kg/TJ,508.9086456299999,kg +bb8ef1df-7309-3369-9415-c10e14556a7c,SESCO,II.1.1,Buenos Aires,AR-B,annual,2020,naphtha combustion consumption by to the public,5781.6472097999995,TJ,CO2,73300.0,kg/TJ,423794740.47833997,kg +ee349823-31c5-3a58-8019-14239926d47c,SESCO,II.1.1,Buenos Aires,AR-B,annual,2020,naphtha combustion consumption by to the public,5781.6472097999995,TJ,CH4,3.0,kg/TJ,17344.941629399997,kg +d5fe390b-95e8-3200-8ba2-77ecc8471380,SESCO,II.1.1,Buenos Aires,AR-B,annual,2020,naphtha combustion consumption by to the public,5781.6472097999995,TJ,N2O,0.6,kg/TJ,3468.9883258799996,kg +0dc6fe6b-aec5-3146-9271-30314027c5e3,SESCO,II.1.1,Capital Federal,AR-C,annual,2020,naphtha combustion consumption by to the public,2213.2363137499997,TJ,CO2,73300.0,kg/TJ,162230221.797875,kg +d7f9a41a-4701-3acf-83ca-b50a6b94fc78,SESCO,II.1.1,Capital Federal,AR-C,annual,2020,naphtha combustion consumption by to the public,2213.2363137499997,TJ,CH4,3.0,kg/TJ,6639.708941249999,kg +594809d7-c256-3234-8549-eaadf93e22da,SESCO,II.1.1,Capital Federal,AR-C,annual,2020,naphtha combustion consumption by to the public,2213.2363137499997,TJ,N2O,0.6,kg/TJ,1327.9417882499997,kg +54a8360d-158b-3a2e-81c5-cf2fa0a5167f,SESCO,II.1.1,Catamarca,AR-K,annual,2020,naphtha combustion consumption by to the public,27.385273299999998,TJ,CO2,73300.0,kg/TJ,2007340.53289,kg +34e22a38-238e-31b5-97d0-c542b6430722,SESCO,II.1.1,Catamarca,AR-K,annual,2020,naphtha combustion consumption by to the public,27.385273299999998,TJ,CH4,3.0,kg/TJ,82.1558199,kg +d5b76758-61ff-3e7f-b25c-ed98c4c5f602,SESCO,II.1.1,Catamarca,AR-K,annual,2020,naphtha combustion consumption by to the public,27.385273299999998,TJ,N2O,0.6,kg/TJ,16.431163979999997,kg +8f45e0a1-79d9-3bbf-b400-50fb0fc6d856,SESCO,II.1.1,Chaco,AR-H,annual,2020,naphtha combustion consumption by to the public,217.25243539999997,TJ,CO2,73300.0,kg/TJ,15924603.514819998,kg +b937ccd5-bc15-373a-ad79-2ccfcb451913,SESCO,II.1.1,Chaco,AR-H,annual,2020,naphtha combustion consumption by to the public,217.25243539999997,TJ,CH4,3.0,kg/TJ,651.7573061999999,kg +b4d175a6-c53c-377a-89d2-8e78c480e38c,SESCO,II.1.1,Chaco,AR-H,annual,2020,naphtha combustion consumption by to the public,217.25243539999997,TJ,N2O,0.6,kg/TJ,130.35146123999996,kg +dd4af8be-c197-3928-b581-aacd4a780f6f,SESCO,II.1.1,Corrientes,AR-W,annual,2020,naphtha combustion consumption by to the public,249.39506129999998,TJ,CO2,73300.0,kg/TJ,18280657.99329,kg +f2487444-6dbe-3ba5-87e9-0795fe94d189,SESCO,II.1.1,Corrientes,AR-W,annual,2020,naphtha combustion consumption by to the public,249.39506129999998,TJ,CH4,3.0,kg/TJ,748.1851839,kg +6bdbb876-9567-3dc6-9000-c98d6cf33fe1,SESCO,II.1.1,Corrientes,AR-W,annual,2020,naphtha combustion consumption by to the public,249.39506129999998,TJ,N2O,0.6,kg/TJ,149.63703678,kg +11bf4560-ed87-3e50-aa10-c6bbbf4e1e95,SESCO,II.1.1,Córdoba,AR-X,annual,2020,naphtha combustion consumption by to the public,1287.8702413499998,TJ,CO2,73300.0,kg/TJ,94400888.69095498,kg +5a301fb1-df9f-35e4-a546-96b8025f726f,SESCO,II.1.1,Córdoba,AR-X,annual,2020,naphtha combustion consumption by to the public,1287.8702413499998,TJ,CH4,3.0,kg/TJ,3863.6107240499996,kg +c5ec271e-9c42-3161-9440-54130d28ebfc,SESCO,II.1.1,Córdoba,AR-X,annual,2020,naphtha combustion consumption by to the public,1287.8702413499998,TJ,N2O,0.6,kg/TJ,772.7221448099998,kg +84bc6ba8-12d0-3fd8-abfe-8eba0efcf810,SESCO,II.1.1,Entre Rios,AR-E,annual,2020,naphtha combustion consumption by to the public,282.78801704999995,TJ,CO2,73300.0,kg/TJ,20728361.649764996,kg +814a8263-b306-3a15-ab2c-4c03ee679acd,SESCO,II.1.1,Entre Rios,AR-E,annual,2020,naphtha combustion consumption by to the public,282.78801704999995,TJ,CH4,3.0,kg/TJ,848.3640511499998,kg +293bff7a-3906-3dcb-bb4e-948b370d7704,SESCO,II.1.1,Entre Rios,AR-E,annual,2020,naphtha combustion consumption by to the public,282.78801704999995,TJ,N2O,0.6,kg/TJ,169.67281022999995,kg +c2e749e5-ebf3-3bac-bfcc-39d82baf4518,SESCO,II.1.1,Formosa,AR-P,annual,2020,naphtha combustion consumption by to the public,107.34539199999999,TJ,CO2,73300.0,kg/TJ,7868417.233599999,kg +7b570ec2-edc7-3ead-aabd-019d3b00e004,SESCO,II.1.1,Formosa,AR-P,annual,2020,naphtha combustion consumption by to the public,107.34539199999999,TJ,CH4,3.0,kg/TJ,322.03617599999995,kg +72ec0d67-40f4-30e6-a438-4ec907dfc79f,SESCO,II.1.1,Formosa,AR-P,annual,2020,naphtha combustion consumption by to the public,107.34539199999999,TJ,N2O,0.6,kg/TJ,64.40723519999999,kg +c933ec75-bc38-33b1-902e-43f24e60eaed,SESCO,II.1.1,Jujuy,AR-Y,annual,2020,naphtha combustion consumption by to the public,30.831304349999996,TJ,CO2,73300.0,kg/TJ,2259934.6088549998,kg +0e8b42b2-e8fa-3773-97bd-2d63823fe7af,SESCO,II.1.1,Jujuy,AR-Y,annual,2020,naphtha combustion consumption by to the public,30.831304349999996,TJ,CH4,3.0,kg/TJ,92.49391304999999,kg +908954d7-679b-35f9-a3f3-86812ba79811,SESCO,II.1.1,Jujuy,AR-Y,annual,2020,naphtha combustion consumption by to the public,30.831304349999996,TJ,N2O,0.6,kg/TJ,18.498782609999996,kg +a62a0165-5a6c-398f-affd-a4d73c7704b1,SESCO,II.1.1,La Pampa,AR-L,annual,2020,naphtha combustion consumption by to the public,111.76729024999999,TJ,CO2,73300.0,kg/TJ,8192542.375324999,kg +76be7564-f6e8-37e4-bab8-d7558fcd84c7,SESCO,II.1.1,La Pampa,AR-L,annual,2020,naphtha combustion consumption by to the public,111.76729024999999,TJ,CH4,3.0,kg/TJ,335.30187075,kg +4e3e25e9-960e-309c-a8b8-25e557f6e95d,SESCO,II.1.1,La Pampa,AR-L,annual,2020,naphtha combustion consumption by to the public,111.76729024999999,TJ,N2O,0.6,kg/TJ,67.06037414999999,kg +7606eafa-b22c-35ad-a50f-35329ea2d867,SESCO,II.1.1,La Rioja,AR-F,annual,2020,naphtha combustion consumption by to the public,50.04368984999999,TJ,CO2,73300.0,kg/TJ,3668202.4660049994,kg +7381566c-497d-3853-b2a5-c474f344ad87,SESCO,II.1.1,La Rioja,AR-F,annual,2020,naphtha combustion consumption by to the public,50.04368984999999,TJ,CH4,3.0,kg/TJ,150.13106954999998,kg +e486df8a-42e5-3f47-b6c1-f4358e202e48,SESCO,II.1.1,La Rioja,AR-F,annual,2020,naphtha combustion consumption by to the public,50.04368984999999,TJ,N2O,0.6,kg/TJ,30.026213909999996,kg +8e557540-b07c-39ea-978a-6f90ddc2f909,SESCO,II.1.1,Mendoza,AR-M,annual,2020,naphtha combustion consumption by to the public,509.25019914999996,TJ,CO2,73300.0,kg/TJ,37328039.597695,kg +78f08ca7-e86d-392d-a7aa-2cdc7c479327,SESCO,II.1.1,Mendoza,AR-M,annual,2020,naphtha combustion consumption by to the public,509.25019914999996,TJ,CH4,3.0,kg/TJ,1527.75059745,kg +959470bc-b30a-3bf4-8dac-98b239d9b971,SESCO,II.1.1,Mendoza,AR-M,annual,2020,naphtha combustion consumption by to the public,509.25019914999996,TJ,N2O,0.6,kg/TJ,305.55011949,kg +daa8c481-31bb-332f-9748-1dc6461772dc,SESCO,II.1.1,Misiones,AR-N,annual,2020,naphtha combustion consumption by to the public,213.37946244999998,TJ,CO2,73300.0,kg/TJ,15640714.597584998,kg +0c816e89-3da7-3832-8bf4-28298e017aeb,SESCO,II.1.1,Misiones,AR-N,annual,2020,naphtha combustion consumption by to the public,213.37946244999998,TJ,CH4,3.0,kg/TJ,640.1383873499999,kg +1964863c-647a-38ef-8344-d0d41596ad5d,SESCO,II.1.1,Misiones,AR-N,annual,2020,naphtha combustion consumption by to the public,213.37946244999998,TJ,N2O,0.6,kg/TJ,128.02767747,kg +41adc665-64f4-3682-9ce5-c1118f6f38d8,SESCO,II.1.1,Neuquén,AR-Q,annual,2020,naphtha combustion consumption by to the public,230.15217994999998,TJ,CO2,73300.0,kg/TJ,16870154.790335,kg +6ed68eb0-004e-380f-a039-da8bdc85f2a7,SESCO,II.1.1,Neuquén,AR-Q,annual,2020,naphtha combustion consumption by to the public,230.15217994999998,TJ,CH4,3.0,kg/TJ,690.4565398499999,kg +06fcd811-f34c-3271-af39-c56f7a15aee2,SESCO,II.1.1,Neuquén,AR-Q,annual,2020,naphtha combustion consumption by to the public,230.15217994999998,TJ,N2O,0.6,kg/TJ,138.09130796999997,kg +b37e1fba-8d2e-3cca-b9b1-87161d48da83,SESCO,II.1.1,Rio Negro,AR-R,annual,2020,naphtha combustion consumption by to the public,98.50159549999998,TJ,CO2,73300.0,kg/TJ,7220166.950149998,kg +8ea54b23-a02b-37bc-9385-9a15ccf14ff3,SESCO,II.1.1,Rio Negro,AR-R,annual,2020,naphtha combustion consumption by to the public,98.50159549999998,TJ,CH4,3.0,kg/TJ,295.5047864999999,kg +9e6c96d8-13c9-3c3e-8a10-71df2a2874d7,SESCO,II.1.1,Rio Negro,AR-R,annual,2020,naphtha combustion consumption by to the public,98.50159549999998,TJ,N2O,0.6,kg/TJ,59.10095729999998,kg +38655bfe-15f6-3c40-adfe-cd63a8fdeecc,SESCO,II.1.1,Salta,AR-A,annual,2020,naphtha combustion consumption by to the public,101.33770954999999,TJ,CO2,73300.0,kg/TJ,7428054.110014999,kg +e1b54ad7-f19a-319f-a3ce-bd2d19b31054,SESCO,II.1.1,Salta,AR-A,annual,2020,naphtha combustion consumption by to the public,101.33770954999999,TJ,CH4,3.0,kg/TJ,304.01312864999994,kg +d6c70e8f-2e41-300b-bc38-e653ded83a88,SESCO,II.1.1,Salta,AR-A,annual,2020,naphtha combustion consumption by to the public,101.33770954999999,TJ,N2O,0.6,kg/TJ,60.80262572999999,kg +6c49820c-42c0-3edd-a5f7-ab1c8e9fc67d,SESCO,II.1.1,San Juan,AR-J,annual,2020,naphtha combustion consumption by to the public,78.46582204999999,TJ,CO2,73300.0,kg/TJ,5751544.756264999,kg +837d4b64-ed8a-32ae-b935-81455105ecdd,SESCO,II.1.1,San Juan,AR-J,annual,2020,naphtha combustion consumption by to the public,78.46582204999999,TJ,CH4,3.0,kg/TJ,235.39746614999996,kg +b142f459-2447-3612-a7c8-e405f58d5274,SESCO,II.1.1,San Juan,AR-J,annual,2020,naphtha combustion consumption by to the public,78.46582204999999,TJ,N2O,0.6,kg/TJ,47.07949322999999,kg +f1f8b4d1-022b-3285-9f5b-faf9ddb2a6d8,SESCO,II.1.1,San Luis,AR-D,annual,2020,naphtha combustion consumption by to the public,79.19772244999999,TJ,CO2,73300.0,kg/TJ,5805193.055584999,kg +6e0392aa-60e1-37c8-a18f-699f736d878c,SESCO,II.1.1,San Luis,AR-D,annual,2020,naphtha combustion consumption by to the public,79.19772244999999,TJ,CH4,3.0,kg/TJ,237.59316734999996,kg +b6a3a8b2-dd80-3aef-99d3-122b7691af77,SESCO,II.1.1,San Luis,AR-D,annual,2020,naphtha combustion consumption by to the public,79.19772244999999,TJ,N2O,0.6,kg/TJ,47.51863346999999,kg +cea1c872-4c87-39da-9fba-6d522523ab42,SESCO,II.1.1,Santa Fe,AR-S,annual,2020,naphtha combustion consumption by to the public,1142.83197875,TJ,CO2,73300.0,kg/TJ,83769584.042375,kg +eab593d1-3534-303e-87cd-0855e0f08ca4,SESCO,II.1.1,Santa Fe,AR-S,annual,2020,naphtha combustion consumption by to the public,1142.83197875,TJ,CH4,3.0,kg/TJ,3428.49593625,kg +efebb1df-c90a-39fb-90dc-9c97537d5e39,SESCO,II.1.1,Santa Fe,AR-S,annual,2020,naphtha combustion consumption by to the public,1142.83197875,TJ,N2O,0.6,kg/TJ,685.6991872499999,kg +da9c4acf-231b-3409-9d76-d7f4efb85060,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2020,naphtha combustion consumption by to the public,112.62117405,TJ,CO2,73300.0,kg/TJ,8255132.057864999,kg +ee2b4b17-b15e-3107-b38a-78924bcc3d6f,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2020,naphtha combustion consumption by to the public,112.62117405,TJ,CH4,3.0,kg/TJ,337.86352215,kg +54ba69c4-404c-3d36-a074-9ab73eec2b6f,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2020,naphtha combustion consumption by to the public,112.62117405,TJ,N2O,0.6,kg/TJ,67.57270442999999,kg +2f91590e-33c2-36bc-b5d2-518400d9bd8b,SESCO,II.1.1,Tucuman,AR-T,annual,2020,naphtha combustion consumption by to the public,224.6934228,TJ,CO2,73300.0,kg/TJ,16470027.89124,kg +e03e6e29-0445-356b-956e-3d496643c035,SESCO,II.1.1,Tucuman,AR-T,annual,2020,naphtha combustion consumption by to the public,224.6934228,TJ,CH4,3.0,kg/TJ,674.0802684,kg +3fb1fa04-b8fb-34f7-989f-74c2d1ba8823,SESCO,II.1.1,Tucuman,AR-T,annual,2020,naphtha combustion consumption by to the public,224.6934228,TJ,N2O,0.6,kg/TJ,134.81605368,kg +4c83a86c-4fe8-333b-b93e-02c779aac7d6,SESCO,I.3.1,Buenos Aires,AR-B,annual,2020,naphtha combustion consumption by petrochemical industries,17.657097149999995,TJ,CO2,73300.0,kg/TJ,1294265.2210949997,kg +06c85f1e-68d4-321e-b9a8-df46f2c8bc98,SESCO,I.3.1,Buenos Aires,AR-B,annual,2020,naphtha combustion consumption by petrochemical industries,17.657097149999995,TJ,CH4,3.0,kg/TJ,52.97129144999998,kg +0798d6d7-52fa-32ac-b259-d4b4675a1e75,SESCO,I.3.1,Buenos Aires,AR-B,annual,2020,naphtha combustion consumption by petrochemical industries,17.657097149999995,TJ,N2O,0.6,kg/TJ,10.594258289999997,kg +69374796-f4cc-3b1c-ab41-cec159ddfb83,SESCO,I.3.1,Misiones,AR-N,annual,2020,naphtha combustion consumption by petrochemical industries,0.15247924999999998,TJ,CO2,73300.0,kg/TJ,11176.729024999999,kg +c1f2956a-6eac-3f6e-baeb-91c21736b4ee,SESCO,I.3.1,Misiones,AR-N,annual,2020,naphtha combustion consumption by petrochemical industries,0.15247924999999998,TJ,CH4,3.0,kg/TJ,0.45743775,kg +ffdd03e1-2b57-3f40-976b-dc056d651a43,SESCO,I.3.1,Misiones,AR-N,annual,2020,naphtha combustion consumption by petrochemical industries,0.15247924999999998,TJ,N2O,0.6,kg/TJ,0.09148754999999999,kg +c094dcfb-4a46-30ef-9090-c6c105b3c9f5,SESCO,I.3.1,Tucuman,AR-T,annual,2020,naphtha combustion consumption by petrochemical industries,0.18297509999999997,TJ,CO2,73300.0,kg/TJ,13412.074829999998,kg +78b949e3-7949-3da2-85a9-6cb9ad538bf0,SESCO,I.3.1,Tucuman,AR-T,annual,2020,naphtha combustion consumption by petrochemical industries,0.18297509999999997,TJ,CH4,3.0,kg/TJ,0.5489253,kg +aba393a7-d45f-34c0-b105-944ab9a7af11,SESCO,I.3.1,Tucuman,AR-T,annual,2020,naphtha combustion consumption by petrochemical industries,0.18297509999999997,TJ,N2O,0.6,kg/TJ,0.10978505999999998,kg +7bffeecf-4a7f-355c-a491-1e698f749abb,SESCO,I.3.1,Buenos Aires,AR-B,annual,2020,naphtha combustion consumption by petrochemical industries,5.33677375,TJ,CO2,73300.0,kg/TJ,391185.515875,kg +52a77070-b86d-3574-be1f-bf664b73978d,SESCO,I.3.1,Buenos Aires,AR-B,annual,2020,naphtha combustion consumption by petrochemical industries,5.33677375,TJ,CH4,3.0,kg/TJ,16.01032125,kg +b494d703-cec2-3fc5-ba67-5462a49b5e50,SESCO,I.3.1,Buenos Aires,AR-B,annual,2020,naphtha combustion consumption by petrochemical industries,5.33677375,TJ,N2O,0.6,kg/TJ,3.20206425,kg +11eb27f5-14f4-3282-9816-5a6b5064080c,SESCO,I.3.1,San Juan,AR-J,annual,2020,naphtha combustion consumption by petrochemical industries,0.8538838,TJ,CO2,73300.0,kg/TJ,62589.682539999994,kg +1f343938-483c-344c-9cdf-c27e229e1c7b,SESCO,I.3.1,San Juan,AR-J,annual,2020,naphtha combustion consumption by petrochemical industries,0.8538838,TJ,CH4,3.0,kg/TJ,2.5616513999999997,kg +90db0d24-b441-3b84-895e-ad575c0700ed,SESCO,I.3.1,San Juan,AR-J,annual,2020,naphtha combustion consumption by petrochemical industries,0.8538838,TJ,N2O,0.6,kg/TJ,0.5123302799999999,kg +69e3e880-34e3-3c61-a010-af084c94e1cc,SESCO,I.3.1,Tucuman,AR-T,annual,2020,naphtha combustion consumption by petrochemical industries,0.21347095,TJ,CO2,73300.0,kg/TJ,15647.420634999999,kg +eb8ff385-6e0c-3296-8e9c-9786d37828d1,SESCO,I.3.1,Tucuman,AR-T,annual,2020,naphtha combustion consumption by petrochemical industries,0.21347095,TJ,CH4,3.0,kg/TJ,0.6404128499999999,kg +9bf376c4-72bf-3c5b-bb00-739cbd0693ca,SESCO,I.3.1,Tucuman,AR-T,annual,2020,naphtha combustion consumption by petrochemical industries,0.21347095,TJ,N2O,0.6,kg/TJ,0.12808256999999998,kg +2c8874fd-d5e6-38af-84f7-524f34635f79,SESCO,II.5.1,Buenos Aires,AR-B,annual,2020,naphtha combustion consumption by agriculture machines,110.41184120504998,TJ,CO2,73300.0,kg/TJ,8093187.960330164,kg +2b5d1ad6-6d94-377c-87a4-d967e923165d,SESCO,II.5.1,Buenos Aires,AR-B,annual,2020,naphtha combustion consumption by agriculture machines,110.41184120504998,TJ,CH4,3.0,kg/TJ,331.23552361514993,kg +6d37d23b-3540-3bf5-afad-84f7e51da297,SESCO,II.5.1,Buenos Aires,AR-B,annual,2020,naphtha combustion consumption by agriculture machines,110.41184120504998,TJ,N2O,0.6,kg/TJ,66.24710472302999,kg +22cd69f0-9548-3ae2-bc24-454659251ef4,SESCO,II.5.1,Capital Federal,AR-C,annual,2020,naphtha combustion consumption by agriculture machines,23.186086242549997,TJ,CO2,73300.0,kg/TJ,1699540.1215789148,kg +b332e427-1b2d-363a-95e1-a3715bf70f94,SESCO,II.5.1,Capital Federal,AR-C,annual,2020,naphtha combustion consumption by agriculture machines,23.186086242549997,TJ,CH4,3.0,kg/TJ,69.55825872764999,kg +68a606fc-9359-38b6-8961-b052bc502809,SESCO,II.5.1,Capital Federal,AR-C,annual,2020,naphtha combustion consumption by agriculture machines,23.186086242549997,TJ,N2O,0.6,kg/TJ,13.911651745529998,kg +dc5d704a-2233-35c6-81c8-ef8033549ef2,SESCO,II.5.1,Chaco,AR-H,annual,2020,naphtha combustion consumption by agriculture machines,2.71159949445,TJ,CO2,73300.0,kg/TJ,198760.242943185,kg +9a2d85d8-d94f-3ba3-93f1-a9212ed924cd,SESCO,II.5.1,Chaco,AR-H,annual,2020,naphtha combustion consumption by agriculture machines,2.71159949445,TJ,CH4,3.0,kg/TJ,8.13479848335,kg +7918de8f-f60e-30a5-81a4-4ef46adc5519,SESCO,II.5.1,Chaco,AR-H,annual,2020,naphtha combustion consumption by agriculture machines,2.71159949445,TJ,N2O,0.6,kg/TJ,1.62695969667,kg +15a479fe-07b3-387e-b578-1b511cb3eca2,SESCO,II.5.1,Córdoba,AR-X,annual,2020,naphtha combustion consumption by agriculture machines,8.713945170699997,TJ,CO2,73300.0,kg/TJ,638732.1810123097,kg +20229385-fb95-34bf-9c51-ced0a9dc6ff6,SESCO,II.5.1,Córdoba,AR-X,annual,2020,naphtha combustion consumption by agriculture machines,8.713945170699997,TJ,CH4,3.0,kg/TJ,26.14183551209999,kg +efdf851e-763a-3da7-befa-95a35dfb2118,SESCO,II.5.1,Córdoba,AR-X,annual,2020,naphtha combustion consumption by agriculture machines,8.713945170699997,TJ,N2O,0.6,kg/TJ,5.228367102419998,kg +6dc1706c-38bc-31f2-b116-73872b30a911,SESCO,II.5.1,Rio Negro,AR-R,annual,2020,naphtha combustion consumption by agriculture machines,13.762289171399999,TJ,CO2,73300.0,kg/TJ,1008775.7962636199,kg +70c219ed-7a5a-3104-ab65-ae152231bea9,SESCO,II.5.1,Rio Negro,AR-R,annual,2020,naphtha combustion consumption by agriculture machines,13.762289171399999,TJ,CH4,3.0,kg/TJ,41.2868675142,kg +bb38f0ea-8a3c-39ed-9196-402e48919438,SESCO,II.5.1,Rio Negro,AR-R,annual,2020,naphtha combustion consumption by agriculture machines,13.762289171399999,TJ,N2O,0.6,kg/TJ,8.257373502839998,kg +d6355e48-82bf-3d97-b41a-020b01614710,SESCO,II.5.1,Santa Fe,AR-S,annual,2020,naphtha combustion consumption by agriculture machines,173.37839145934996,TJ,CO2,73300.0,kg/TJ,12708636.09397035,kg +96b02f98-44b5-3f54-b4d0-fbd0689ba4f1,SESCO,II.5.1,Santa Fe,AR-S,annual,2020,naphtha combustion consumption by agriculture machines,173.37839145934996,TJ,CH4,3.0,kg/TJ,520.1351743780499,kg +89eb827b-8ff8-336b-aad7-f20bd1044d2d,SESCO,II.5.1,Santa Fe,AR-S,annual,2020,naphtha combustion consumption by agriculture machines,173.37839145934996,TJ,N2O,0.6,kg/TJ,104.02703487560997,kg +d9ba0376-2ba0-3c2a-b6be-f832bbfa3bc7,SESCO,II.5.1,Buenos Aires,AR-B,annual,2020,naphtha combustion consumption by agriculture machines,9.501713967899999,TJ,CO2,73300.0,kg/TJ,696475.6338470699,kg +5e52e640-cb70-3217-83dd-4a9f5d5ffa2f,SESCO,II.5.1,Buenos Aires,AR-B,annual,2020,naphtha combustion consumption by agriculture machines,9.501713967899999,TJ,CH4,3.0,kg/TJ,28.505141903699997,kg +188efa0f-f763-3c6f-8373-75c527c3652c,SESCO,II.5.1,Buenos Aires,AR-B,annual,2020,naphtha combustion consumption by agriculture machines,9.501713967899999,TJ,N2O,0.6,kg/TJ,5.7010283807399995,kg +1cfab361-b85d-344c-93cf-0e4d2d0c04e7,SESCO,II.5.1,Capital Federal,AR-C,annual,2020,naphtha combustion consumption by agriculture machines,6.5369074308999995,TJ,CO2,73300.0,kg/TJ,479155.31468496996,kg +99fad41c-fc2b-386d-82d4-d543395a5e58,SESCO,II.5.1,Capital Federal,AR-C,annual,2020,naphtha combustion consumption by agriculture machines,6.5369074308999995,TJ,CH4,3.0,kg/TJ,19.610722292699997,kg +4d169bfb-198b-32ad-b73a-53e17a14c948,SESCO,II.5.1,Capital Federal,AR-C,annual,2020,naphtha combustion consumption by agriculture machines,6.5369074308999995,TJ,N2O,0.6,kg/TJ,3.9221444585399996,kg +90a12367-26fa-3f03-989a-82d828dbd064,SESCO,II.5.1,Córdoba,AR-X,annual,2020,naphtha combustion consumption by agriculture machines,0.9404310223,TJ,CO2,73300.0,kg/TJ,68933.59393459,kg +d797c2bb-4adb-3d75-b5c7-c6793f0535e3,SESCO,II.5.1,Córdoba,AR-X,annual,2020,naphtha combustion consumption by agriculture machines,0.9404310223,TJ,CH4,3.0,kg/TJ,2.8212930669,kg +30bd741a-b678-36fb-9ade-55ed3ca456bd,SESCO,II.5.1,Córdoba,AR-X,annual,2020,naphtha combustion consumption by agriculture machines,0.9404310223,TJ,N2O,0.6,kg/TJ,0.5642586133799999,kg +1e7b3bb0-16c0-324e-b285-942670c32494,SESCO,II.5.1,Rio Negro,AR-R,annual,2020,naphtha combustion consumption by agriculture machines,2.74612079665,TJ,CO2,73300.0,kg/TJ,201290.654394445,kg +c66e9b12-4cfa-3c7d-8ec0-f7f8e386ac84,SESCO,II.5.1,Rio Negro,AR-R,annual,2020,naphtha combustion consumption by agriculture machines,2.74612079665,TJ,CH4,3.0,kg/TJ,8.23836238995,kg +27a4274c-4d9d-3de0-99a9-0da593c62011,SESCO,II.5.1,Rio Negro,AR-R,annual,2020,naphtha combustion consumption by agriculture machines,2.74612079665,TJ,N2O,0.6,kg/TJ,1.64767247799,kg +00a6d922-ee9d-3058-afc3-f5a79eb3d044,SESCO,II.5.1,Santa Fe,AR-S,annual,2020,naphtha combustion consumption by agriculture machines,15.281043493099999,TJ,CO2,73300.0,kg/TJ,1120100.4880442298,kg +b86a80a0-b73f-35e8-8cbc-8ab77635f9da,SESCO,II.5.1,Santa Fe,AR-S,annual,2020,naphtha combustion consumption by agriculture machines,15.281043493099999,TJ,CH4,3.0,kg/TJ,45.843130479299994,kg +054d89a0-29cb-3fb2-9688-229145a71737,SESCO,II.5.1,Santa Fe,AR-S,annual,2020,naphtha combustion consumption by agriculture machines,15.281043493099999,TJ,N2O,0.6,kg/TJ,9.168626095859999,kg +94e1f94e-f70d-3dbe-8f15-e6058cdc6055,SESCO,II.1.1,Buenos Aires,AR-B,annual,2020,naphtha combustion consumption by to the public,3236.5160521578496,TJ,CO2,73300.0,kg/TJ,237236626.62317038,kg +8b170ce2-a4ff-36c0-ad48-8370e4738cee,SESCO,II.1.1,Buenos Aires,AR-B,annual,2020,naphtha combustion consumption by to the public,3236.5160521578496,TJ,CH4,3.0,kg/TJ,9709.54815647355,kg +fb4d3d65-2aeb-3f4c-a69d-362b5b58d102,SESCO,II.1.1,Buenos Aires,AR-B,annual,2020,naphtha combustion consumption by to the public,3236.5160521578496,TJ,N2O,0.6,kg/TJ,1941.9096312947097,kg +86fcb1ff-9ec9-3f68-961e-85ebfdedff1f,SESCO,II.1.1,Capital Federal,AR-C,annual,2020,naphtha combustion consumption by to the public,263.9954374211,TJ,CO2,73300.0,kg/TJ,19350865.56296663,kg +db432663-8470-300c-acad-d8dc23868591,SESCO,II.1.1,Capital Federal,AR-C,annual,2020,naphtha combustion consumption by to the public,263.9954374211,TJ,CH4,3.0,kg/TJ,791.9863122633001,kg +5671e15c-5ad1-3b53-afcf-18c7c34de3e0,SESCO,II.1.1,Capital Federal,AR-C,annual,2020,naphtha combustion consumption by to the public,263.9954374211,TJ,N2O,0.6,kg/TJ,158.39726245266,kg +d3ca7682-6c51-3526-bddd-724211babc99,SESCO,II.1.1,Catamarca,AR-K,annual,2020,naphtha combustion consumption by to the public,23.55148751725,TJ,CO2,73300.0,kg/TJ,1726324.035014425,kg +fa661375-aa8e-3efc-8209-dcb46a54f416,SESCO,II.1.1,Catamarca,AR-K,annual,2020,naphtha combustion consumption by to the public,23.55148751725,TJ,CH4,3.0,kg/TJ,70.65446255175,kg +fabf1afd-8ebd-361a-9f79-de1258617df5,SESCO,II.1.1,Catamarca,AR-K,annual,2020,naphtha combustion consumption by to the public,23.55148751725,TJ,N2O,0.6,kg/TJ,14.13089251035,kg +fa30666e-1b66-33f6-8645-a79bbf6cd8da,SESCO,II.1.1,Chaco,AR-H,annual,2020,naphtha combustion consumption by to the public,31.832452609649994,TJ,CO2,73300.0,kg/TJ,2333318.7762873448,kg +e750a7af-8fff-3052-86ef-6d1e0773c0b2,SESCO,II.1.1,Chaco,AR-H,annual,2020,naphtha combustion consumption by to the public,31.832452609649994,TJ,CH4,3.0,kg/TJ,95.49735782894999,kg +93eb5f32-0174-39f2-85fb-a4d3cf79090a,SESCO,II.1.1,Chaco,AR-H,annual,2020,naphtha combustion consumption by to the public,31.832452609649994,TJ,N2O,0.6,kg/TJ,19.099471565789997,kg +9234a174-2d4e-3567-b0e8-734a1c7c1822,SESCO,II.1.1,Chubut,AR-U,annual,2020,naphtha combustion consumption by to the public,190.55832004439998,TJ,CO2,73300.0,kg/TJ,13967924.859254519,kg +2c622365-1c37-39e4-97f6-19c94877ae0d,SESCO,II.1.1,Chubut,AR-U,annual,2020,naphtha combustion consumption by to the public,190.55832004439998,TJ,CH4,3.0,kg/TJ,571.6749601331999,kg +fa584a98-60a6-3ac1-8996-8a7b512b8ddf,SESCO,II.1.1,Chubut,AR-U,annual,2020,naphtha combustion consumption by to the public,190.55832004439998,TJ,N2O,0.6,kg/TJ,114.33499202663998,kg +821d97ef-3a26-30c3-9254-e180bea9c395,SESCO,II.1.1,Corrientes,AR-W,annual,2020,naphtha combustion consumption by to the public,230.65261684849997,TJ,CO2,73300.0,kg/TJ,16906836.814995047,kg +1b43132f-2fc6-310c-85f0-6a057f37402e,SESCO,II.1.1,Corrientes,AR-W,annual,2020,naphtha combustion consumption by to the public,230.65261684849997,TJ,CH4,3.0,kg/TJ,691.9578505454999,kg +51a39679-5189-3fd9-a94a-e066b1d7bfba,SESCO,II.1.1,Corrientes,AR-W,annual,2020,naphtha combustion consumption by to the public,230.65261684849997,TJ,N2O,0.6,kg/TJ,138.39157010909997,kg +d354e661-d444-3e53-b991-c7c69c5e9e12,SESCO,II.1.1,Córdoba,AR-X,annual,2020,naphtha combustion consumption by to the public,418.20578434634996,TJ,CO2,73300.0,kg/TJ,30654483.99258745,kg +708a93f7-6c2c-3125-964f-039f71f2b99c,SESCO,II.1.1,Córdoba,AR-X,annual,2020,naphtha combustion consumption by to the public,418.20578434634996,TJ,CH4,3.0,kg/TJ,1254.61735303905,kg +4a83653c-0633-3cfb-9ad2-8876787c5fe4,SESCO,II.1.1,Córdoba,AR-X,annual,2020,naphtha combustion consumption by to the public,418.20578434634996,TJ,N2O,0.6,kg/TJ,250.92347060780997,kg +730d749c-5098-3f6c-a527-37b05af53e44,SESCO,II.1.1,Entre Rios,AR-E,annual,2020,naphtha combustion consumption by to the public,395.8497951408,TJ,CO2,73300.0,kg/TJ,29015789.98382064,kg +7542d689-47a0-33a0-a81c-b56ce0a19dbc,SESCO,II.1.1,Entre Rios,AR-E,annual,2020,naphtha combustion consumption by to the public,395.8497951408,TJ,CH4,3.0,kg/TJ,1187.5493854224,kg +83077d2e-c75b-3655-81a0-41c34f467842,SESCO,II.1.1,Entre Rios,AR-E,annual,2020,naphtha combustion consumption by to the public,395.8497951408,TJ,N2O,0.6,kg/TJ,237.50987708447997,kg +cd6f9e08-f0d8-39c9-9fe0-28b958be00e2,SESCO,II.1.1,Formosa,AR-P,annual,2020,naphtha combustion consumption by to the public,1.4124762844499998,TJ,CO2,73300.0,kg/TJ,103534.51165018498,kg +9ce545e9-3c78-3487-aae6-ef87966c2021,SESCO,II.1.1,Formosa,AR-P,annual,2020,naphtha combustion consumption by to the public,1.4124762844499998,TJ,CH4,3.0,kg/TJ,4.23742885335,kg +e4fc69f0-ec80-3c66-bbd5-37ad6f75ab61,SESCO,II.1.1,Formosa,AR-P,annual,2020,naphtha combustion consumption by to the public,1.4124762844499998,TJ,N2O,0.6,kg/TJ,0.8474857706699999,kg +9859de94-7139-3087-8797-62608740bcdd,SESCO,II.1.1,Jujuy,AR-Y,annual,2020,naphtha combustion consumption by to the public,45.26861916114999,TJ,CO2,73300.0,kg/TJ,3318189.7845122945,kg +1e2e33a2-a7b8-3d25-bf2c-93ace779622f,SESCO,II.1.1,Jujuy,AR-Y,annual,2020,naphtha combustion consumption by to the public,45.26861916114999,TJ,CH4,3.0,kg/TJ,135.80585748344998,kg +65f396d0-9b43-3bec-b1f4-7c4391c80988,SESCO,II.1.1,Jujuy,AR-Y,annual,2020,naphtha combustion consumption by to the public,45.26861916114999,TJ,N2O,0.6,kg/TJ,27.161171496689995,kg +3b2f3fb2-7aca-3748-bb1a-9925cfab1908,SESCO,II.1.1,La Pampa,AR-L,annual,2020,naphtha combustion consumption by to the public,364.02484451025,TJ,CO2,73300.0,kg/TJ,26683021.102601323,kg +0c443e4d-0d1b-3e56-a03c-2aacd6b3f9e3,SESCO,II.1.1,La Pampa,AR-L,annual,2020,naphtha combustion consumption by to the public,364.02484451025,TJ,CH4,3.0,kg/TJ,1092.07453353075,kg +8e146f8f-1206-30d6-afb8-5cbd1bfd6356,SESCO,II.1.1,La Pampa,AR-L,annual,2020,naphtha combustion consumption by to the public,364.02484451025,TJ,N2O,0.6,kg/TJ,218.41490670615,kg +ed03c3bc-cace-31a2-8b2a-5b706225065a,SESCO,II.1.1,Mendoza,AR-M,annual,2020,naphtha combustion consumption by to the public,66.03126119589999,TJ,CO2,73300.0,kg/TJ,4840091.445659469,kg +bea8d0fd-a9df-3d65-b799-53ab2a7aa760,SESCO,II.1.1,Mendoza,AR-M,annual,2020,naphtha combustion consumption by to the public,66.03126119589999,TJ,CH4,3.0,kg/TJ,198.09378358769996,kg +18a01196-c6d8-3fdc-9030-54c16cddb962,SESCO,II.1.1,Mendoza,AR-M,annual,2020,naphtha combustion consumption by to the public,66.03126119589999,TJ,N2O,0.6,kg/TJ,39.61875671753999,kg +a867a50e-6c16-3823-b3c7-5dd039d6adb5,SESCO,II.1.1,Misiones,AR-N,annual,2020,naphtha combustion consumption by to the public,11.751789268449999,TJ,CO2,73300.0,kg/TJ,861406.1533773849,kg +52cc106f-7763-31e6-8a7f-ec9abb7c3fd0,SESCO,II.1.1,Misiones,AR-N,annual,2020,naphtha combustion consumption by to the public,11.751789268449999,TJ,CH4,3.0,kg/TJ,35.25536780535,kg +a5e744a8-b26e-3f24-b8ef-7d8080ba356c,SESCO,II.1.1,Misiones,AR-N,annual,2020,naphtha combustion consumption by to the public,11.751789268449999,TJ,N2O,0.6,kg/TJ,7.051073561069999,kg +b0f4faee-85c6-3863-a0cd-af91ad1a7db0,SESCO,II.1.1,Neuquén,AR-Q,annual,2020,naphtha combustion consumption by to the public,271.645443377,TJ,CO2,73300.0,kg/TJ,19911610.9995341,kg +a146230b-0e0c-3b3f-864b-fd0b3a9c6d84,SESCO,II.1.1,Neuquén,AR-Q,annual,2020,naphtha combustion consumption by to the public,271.645443377,TJ,CH4,3.0,kg/TJ,814.936330131,kg +094f0c60-e5ac-3a70-b68b-9debfbe272fe,SESCO,II.1.1,Neuquén,AR-Q,annual,2020,naphtha combustion consumption by to the public,271.645443377,TJ,N2O,0.6,kg/TJ,162.9872660262,kg +4849db95-7b69-3b5e-a64f-8f58af3cff22,SESCO,II.1.1,Rio Negro,AR-R,annual,2020,naphtha combustion consumption by to the public,933.9548626023,TJ,CO2,73300.0,kg/TJ,68458891.4287486,kg +412b2d96-9e9b-3e3b-a515-3579b5159b67,SESCO,II.1.1,Rio Negro,AR-R,annual,2020,naphtha combustion consumption by to the public,933.9548626023,TJ,CH4,3.0,kg/TJ,2801.8645878069,kg +70363aa3-46e3-3794-ac7c-16b9cbde8565,SESCO,II.1.1,Rio Negro,AR-R,annual,2020,naphtha combustion consumption by to the public,933.9548626023,TJ,N2O,0.6,kg/TJ,560.37291756138,kg +47cc8231-7180-3c1f-9c0f-e7081bfddc06,SESCO,II.1.1,San Juan,AR-J,annual,2020,naphtha combustion consumption by to the public,117.1385853022,TJ,CO2,73300.0,kg/TJ,8586258.30265126,kg +f5667e74-a86b-32b6-85ed-b1fc301d5495,SESCO,II.1.1,San Juan,AR-J,annual,2020,naphtha combustion consumption by to the public,117.1385853022,TJ,CH4,3.0,kg/TJ,351.4157559066,kg +df6aa38f-0db4-3849-8c79-699f3731205f,SESCO,II.1.1,San Juan,AR-J,annual,2020,naphtha combustion consumption by to the public,117.1385853022,TJ,N2O,0.6,kg/TJ,70.28315118132,kg +03ddbcab-4349-33a6-b59c-72b8ccd2bac4,SESCO,II.1.1,San Luis,AR-D,annual,2020,naphtha combustion consumption by to the public,46.28455790804999,TJ,CO2,73300.0,kg/TJ,3392658.094660064,kg +b84f9699-52f1-3376-8966-419dcef28517,SESCO,II.1.1,San Luis,AR-D,annual,2020,naphtha combustion consumption by to the public,46.28455790804999,TJ,CH4,3.0,kg/TJ,138.85367372414998,kg +4e191495-96c2-39e4-8d20-037709c9874c,SESCO,II.1.1,San Luis,AR-D,annual,2020,naphtha combustion consumption by to the public,46.28455790804999,TJ,N2O,0.6,kg/TJ,27.770734744829994,kg +bbc9299c-0c09-3ff1-aa90-0509b566b3fe,SESCO,II.1.1,Santa Fe,AR-S,annual,2020,naphtha combustion consumption by to the public,719.5995939439998,TJ,CO2,73300.0,kg/TJ,52746650.23609519,kg +00762b57-6400-33eb-abcd-88e577ab6592,SESCO,II.1.1,Santa Fe,AR-S,annual,2020,naphtha combustion consumption by to the public,719.5995939439998,TJ,CH4,3.0,kg/TJ,2158.7987818319993,kg +7e075d6d-2c06-3042-bac9-f881623c791d,SESCO,II.1.1,Santa Fe,AR-S,annual,2020,naphtha combustion consumption by to the public,719.5995939439998,TJ,N2O,0.6,kg/TJ,431.75975636639987,kg +d238d445-1fd9-3723-a88d-32ce1c168fe2,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2020,naphtha combustion consumption by to the public,152.98383433409998,TJ,CO2,73300.0,kg/TJ,11213715.056689529,kg +fc4bca3d-f800-37a1-966d-48e460739b2c,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2020,naphtha combustion consumption by to the public,152.98383433409998,TJ,CH4,3.0,kg/TJ,458.95150300229994,kg +9aca2745-6500-3689-95ca-84bf0b4c73c3,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2020,naphtha combustion consumption by to the public,152.98383433409998,TJ,N2O,0.6,kg/TJ,91.79030060045999,kg +1dd8f9e8-66a7-38be-870b-4f5b58dd6291,SESCO,II.1.1,Tucuman,AR-T,annual,2020,naphtha combustion consumption by to the public,10.970394103899999,TJ,CO2,73300.0,kg/TJ,804129.8878158699,kg +d555ddf7-1b9e-3c69-981c-0c98b1475b70,SESCO,II.1.1,Tucuman,AR-T,annual,2020,naphtha combustion consumption by to the public,10.970394103899999,TJ,CH4,3.0,kg/TJ,32.911182311699996,kg +fd993851-8b45-3065-96a6-f2927c0162e5,SESCO,II.1.1,Tucuman,AR-T,annual,2020,naphtha combustion consumption by to the public,10.970394103899999,TJ,N2O,0.6,kg/TJ,6.582236462339999,kg +2941c585-0011-3d51-878f-e9a55db252cf,SESCO,II.1.1,Buenos Aires,AR-B,annual,2020,naphtha combustion consumption by to the public,487.60839225559994,TJ,CO2,73300.0,kg/TJ,35741695.15233547,kg +5110dea2-b5da-3139-8b62-786c598c0f67,SESCO,II.1.1,Buenos Aires,AR-B,annual,2020,naphtha combustion consumption by to the public,487.60839225559994,TJ,CH4,3.0,kg/TJ,1462.8251767667998,kg +c08b91f4-f28d-372a-8d69-f7299ce1da60,SESCO,II.1.1,Buenos Aires,AR-B,annual,2020,naphtha combustion consumption by to the public,487.60839225559994,TJ,N2O,0.6,kg/TJ,292.56503535336,kg +4b38b6a4-9ac6-3462-b9d0-183b61b169a0,SESCO,II.1.1,Capital Federal,AR-C,annual,2020,naphtha combustion consumption by to the public,37.739132804449994,TJ,CO2,73300.0,kg/TJ,2766278.4345661844,kg +500adcf1-98a3-377c-b89b-15c9e591350b,SESCO,II.1.1,Capital Federal,AR-C,annual,2020,naphtha combustion consumption by to the public,37.739132804449994,TJ,CH4,3.0,kg/TJ,113.21739841334998,kg +b160bc6d-0c4d-3f58-b870-72d416eee957,SESCO,II.1.1,Capital Federal,AR-C,annual,2020,naphtha combustion consumption by to the public,37.739132804449994,TJ,N2O,0.6,kg/TJ,22.643479682669994,kg +5dff04b8-62c3-3002-b993-99d808d0bebb,SESCO,II.1.1,Catamarca,AR-K,annual,2020,naphtha combustion consumption by to the public,1.5233286991999997,TJ,CO2,73300.0,kg/TJ,111659.99365135998,kg +740d4836-2798-3c6b-b943-8dc6c39afc5d,SESCO,II.1.1,Catamarca,AR-K,annual,2020,naphtha combustion consumption by to the public,1.5233286991999997,TJ,CH4,3.0,kg/TJ,4.569986097599999,kg +221af884-21bf-3f8a-82b6-7d0232c4c995,SESCO,II.1.1,Catamarca,AR-K,annual,2020,naphtha combustion consumption by to the public,1.5233286991999997,TJ,N2O,0.6,kg/TJ,0.9139972195199998,kg +4a633d46-4734-38c2-9cf2-2bd356e5897e,SESCO,II.1.1,Chaco,AR-H,annual,2020,naphtha combustion consumption by to the public,3.0035972582,TJ,CO2,73300.0,kg/TJ,220163.67902606,kg +68d87b4b-c940-31d2-8a98-80badf58f997,SESCO,II.1.1,Chaco,AR-H,annual,2020,naphtha combustion consumption by to the public,3.0035972582,TJ,CH4,3.0,kg/TJ,9.010791774600001,kg +961315e4-a92d-392e-9db2-0d1129173c7c,SESCO,II.1.1,Chaco,AR-H,annual,2020,naphtha combustion consumption by to the public,3.0035972582,TJ,N2O,0.6,kg/TJ,1.80215835492,kg +a9750b25-cf0d-3f95-b827-ee5e0b434fca,SESCO,II.1.1,Chubut,AR-U,annual,2020,naphtha combustion consumption by to the public,25.67180297605,TJ,CO2,73300.0,kg/TJ,1881743.158144465,kg +36fbeee1-2ff9-3e25-9439-2797a0e0dbb4,SESCO,II.1.1,Chubut,AR-U,annual,2020,naphtha combustion consumption by to the public,25.67180297605,TJ,CH4,3.0,kg/TJ,77.01540892815,kg +9d7a8964-fc0b-37e5-b15c-e436403df6c2,SESCO,II.1.1,Chubut,AR-U,annual,2020,naphtha combustion consumption by to the public,25.67180297605,TJ,N2O,0.6,kg/TJ,15.403081785629999,kg +80c898ec-7831-32c3-9909-9e6a40cde02b,SESCO,II.1.1,Corrientes,AR-W,annual,2020,naphtha combustion consumption by to the public,19.641096159299998,TJ,CO2,73300.0,kg/TJ,1439692.3484766898,kg +5e5ee8af-9365-3f86-878b-b0f734ab988d,SESCO,II.1.1,Corrientes,AR-W,annual,2020,naphtha combustion consumption by to the public,19.641096159299998,TJ,CH4,3.0,kg/TJ,58.923288477899995,kg +fb0fe8fa-4c74-3034-808f-b68664e0173c,SESCO,II.1.1,Corrientes,AR-W,annual,2020,naphtha combustion consumption by to the public,19.641096159299998,TJ,N2O,0.6,kg/TJ,11.784657695579998,kg +b3f438b5-588f-360a-b54b-a2842b672076,SESCO,II.1.1,Córdoba,AR-X,annual,2020,naphtha combustion consumption by to the public,61.297908829849995,TJ,CO2,73300.0,kg/TJ,4493136.717228005,kg +6029df51-9216-381c-b7f1-97732b2bbe53,SESCO,II.1.1,Córdoba,AR-X,annual,2020,naphtha combustion consumption by to the public,61.297908829849995,TJ,CH4,3.0,kg/TJ,183.89372648954998,kg +9d08115c-01a4-3c8f-a19d-f99e09ee0273,SESCO,II.1.1,Córdoba,AR-X,annual,2020,naphtha combustion consumption by to the public,61.297908829849995,TJ,N2O,0.6,kg/TJ,36.77874529790999,kg +1d140848-4fb9-3bcc-a5ac-310ef2e728eb,SESCO,II.1.1,Entre Rios,AR-E,annual,2020,naphtha combustion consumption by to the public,71.49895362995,TJ,CO2,73300.0,kg/TJ,5240873.301075335,kg +aec3eb92-0d5f-39ec-b2e4-897912123679,SESCO,II.1.1,Entre Rios,AR-E,annual,2020,naphtha combustion consumption by to the public,71.49895362995,TJ,CH4,3.0,kg/TJ,214.49686088984998,kg +534bcda0-a508-3cd4-ad02-f9f81d15dfe2,SESCO,II.1.1,Entre Rios,AR-E,annual,2020,naphtha combustion consumption by to the public,71.49895362995,TJ,N2O,0.6,kg/TJ,42.899372177969994,kg +58dee142-f231-3975-8757-1e224cdb9b34,SESCO,II.1.1,Formosa,AR-P,annual,2020,naphtha combustion consumption by to the public,0.3314288978,TJ,CO2,73300.0,kg/TJ,24293.73820874,kg +000e83c6-3e7b-339f-9d4f-bb13b69310e3,SESCO,II.1.1,Formosa,AR-P,annual,2020,naphtha combustion consumption by to the public,0.3314288978,TJ,CH4,3.0,kg/TJ,0.9942866934000001,kg +6e3e6ae2-48ee-3782-ac97-5db8018b5e70,SESCO,II.1.1,Formosa,AR-P,annual,2020,naphtha combustion consumption by to the public,0.3314288978,TJ,N2O,0.6,kg/TJ,0.19885733868,kg +9ed4fca5-cc89-37a2-852e-7de9ee542225,SESCO,II.1.1,La Pampa,AR-L,annual,2020,naphtha combustion consumption by to the public,70.08333627294999,TJ,CO2,73300.0,kg/TJ,5137108.5488072345,kg +d9433a70-04b6-3c0c-a1ea-f1ba8999c3f5,SESCO,II.1.1,La Pampa,AR-L,annual,2020,naphtha combustion consumption by to the public,70.08333627294999,TJ,CH4,3.0,kg/TJ,210.25000881884998,kg +39a5d989-70f3-34ed-b27c-989f2d95234c,SESCO,II.1.1,La Pampa,AR-L,annual,2020,naphtha combustion consumption by to the public,70.08333627294999,TJ,N2O,0.6,kg/TJ,42.05000176376999,kg +8cd24c4f-c832-32f5-983f-b19fd6cda70d,SESCO,II.1.1,Mendoza,AR-M,annual,2020,naphtha combustion consumption by to the public,7.711363606099999,TJ,CO2,73300.0,kg/TJ,565242.9523271299,kg +1198f577-1c45-3af5-8922-7ae3b8a86a26,SESCO,II.1.1,Mendoza,AR-M,annual,2020,naphtha combustion consumption by to the public,7.711363606099999,TJ,CH4,3.0,kg/TJ,23.134090818299995,kg +fd23244a-9bd1-36d3-a503-71dd35a377e8,SESCO,II.1.1,Mendoza,AR-M,annual,2020,naphtha combustion consumption by to the public,7.711363606099999,TJ,N2O,0.6,kg/TJ,4.626818163659999,kg +2522534e-6ce2-3a9e-b30c-80db8574ca06,SESCO,II.1.1,Misiones,AR-N,annual,2020,naphtha combustion consumption by to the public,0.9655900985499998,TJ,CO2,73300.0,kg/TJ,70777.75422371499,kg +f6c2cc35-8f16-30d3-93e1-207bcab8328b,SESCO,II.1.1,Misiones,AR-N,annual,2020,naphtha combustion consumption by to the public,0.9655900985499998,TJ,CH4,3.0,kg/TJ,2.896770295649999,kg +881e0890-09ef-3036-8534-b2f1b06e43b9,SESCO,II.1.1,Misiones,AR-N,annual,2020,naphtha combustion consumption by to the public,0.9655900985499998,TJ,N2O,0.6,kg/TJ,0.5793540591299998,kg +f84c25f7-4cdf-34d3-b98d-51b715ef8370,SESCO,II.1.1,Neuquén,AR-Q,annual,2020,naphtha combustion consumption by to the public,83.45814517424999,TJ,CO2,73300.0,kg/TJ,6117482.041272525,kg +d2afa1cf-c5fa-358d-8d48-364c875de5e4,SESCO,II.1.1,Neuquén,AR-Q,annual,2020,naphtha combustion consumption by to the public,83.45814517424999,TJ,CH4,3.0,kg/TJ,250.37443552275,kg +66c824b1-a8fa-3b09-8a77-c8fd0007e21d,SESCO,II.1.1,Neuquén,AR-Q,annual,2020,naphtha combustion consumption by to the public,83.45814517424999,TJ,N2O,0.6,kg/TJ,50.074887104549994,kg +2abf7cfc-8894-3d80-b151-eeb1de1b90e1,SESCO,II.1.1,Rio Negro,AR-R,annual,2020,naphtha combustion consumption by to the public,126.96300635480002,TJ,CO2,73300.0,kg/TJ,9306388.36580684,kg +80bd9e8a-344b-38a3-8316-c19eb172266d,SESCO,II.1.1,Rio Negro,AR-R,annual,2020,naphtha combustion consumption by to the public,126.96300635480002,TJ,CH4,3.0,kg/TJ,380.88901906440003,kg +bb511789-9ab9-3ea4-ad52-f06b7a1209c3,SESCO,II.1.1,Rio Negro,AR-R,annual,2020,naphtha combustion consumption by to the public,126.96300635480002,TJ,N2O,0.6,kg/TJ,76.17780381288,kg +86b08bf3-282e-392f-b9d2-fc0226788b47,SESCO,II.1.1,San Juan,AR-J,annual,2020,naphtha combustion consumption by to the public,13.315555464749998,TJ,CO2,73300.0,kg/TJ,976030.2155661748,kg +acadd80a-fc63-37ca-b74d-fadc9c78434d,SESCO,II.1.1,San Juan,AR-J,annual,2020,naphtha combustion consumption by to the public,13.315555464749998,TJ,CH4,3.0,kg/TJ,39.946666394249995,kg +afbd9c83-eb06-3bc2-b3bb-8939d15c9289,SESCO,II.1.1,San Juan,AR-J,annual,2020,naphtha combustion consumption by to the public,13.315555464749998,TJ,N2O,0.6,kg/TJ,7.989333278849998,kg +9948a4ae-6f4b-3a16-bee1-66c790ae0091,SESCO,II.1.1,San Luis,AR-D,annual,2020,naphtha combustion consumption by to the public,9.8467440148,TJ,CO2,73300.0,kg/TJ,721766.33628484,kg +53a3ce20-a7a6-3468-ac50-3870e4cb46ad,SESCO,II.1.1,San Luis,AR-D,annual,2020,naphtha combustion consumption by to the public,9.8467440148,TJ,CH4,3.0,kg/TJ,29.5402320444,kg +265c60de-0a9e-361b-85dc-b3eb20fb9971,SESCO,II.1.1,San Luis,AR-D,annual,2020,naphtha combustion consumption by to the public,9.8467440148,TJ,N2O,0.6,kg/TJ,5.90804640888,kg +20500e23-1930-33e2-b67c-9201f32068ff,SESCO,II.1.1,Santa Fe,AR-S,annual,2020,naphtha combustion consumption by to the public,146.06530183629997,TJ,CO2,73300.0,kg/TJ,10706586.624600787,kg +fd16361f-688e-3f6f-bcbe-fdba5775eb6a,SESCO,II.1.1,Santa Fe,AR-S,annual,2020,naphtha combustion consumption by to the public,146.06530183629997,TJ,CH4,3.0,kg/TJ,438.1959055088999,kg +57e0feb2-91d0-31fb-9c37-c4cb34828ff1,SESCO,II.1.1,Santa Fe,AR-S,annual,2020,naphtha combustion consumption by to the public,146.06530183629997,TJ,N2O,0.6,kg/TJ,87.63918110177998,kg +07a01224-e8c2-3d3e-9381-20a9d2ef4384,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2020,naphtha combustion consumption by to the public,29.90029654535,TJ,CO2,73300.0,kg/TJ,2191691.736774155,kg +a2bd6f83-104c-36e8-9dbc-737e655920af,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2020,naphtha combustion consumption by to the public,29.90029654535,TJ,CH4,3.0,kg/TJ,89.70088963605,kg +3353fbe9-4c80-318e-b4ee-664cbeb68580,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2020,naphtha combustion consumption by to the public,29.90029654535,TJ,N2O,0.6,kg/TJ,17.940177927209998,kg +8540b975-9294-3b17-80a7-6303e2bc1d18,SESCO,II.1.1,Tucuman,AR-T,annual,2020,naphtha combustion consumption by to the public,0.2716570318,TJ,CO2,73300.0,kg/TJ,19912.460430940002,kg +9236c9e7-40e9-394d-a85e-25baf9741633,SESCO,II.1.1,Tucuman,AR-T,annual,2020,naphtha combustion consumption by to the public,0.2716570318,TJ,CH4,3.0,kg/TJ,0.8149710954,kg +ca7817e9-8dfe-3d73-9ef6-2b309e7a1a8a,SESCO,II.1.1,Tucuman,AR-T,annual,2020,naphtha combustion consumption by to the public,0.2716570318,TJ,N2O,0.6,kg/TJ,0.16299421908,kg +d496dc37-ab8e-383a-9b67-a6f38d9745d2,SESCO,I.3.1,Buenos Aires,AR-B,annual,2020,naphtha combustion consumption by petrochemical industries,49.975989063,TJ,CO2,73300.0,kg/TJ,3663239.9983179,kg +35081439-cf99-3fed-ae48-0a7888f0a8c2,SESCO,I.3.1,Buenos Aires,AR-B,annual,2020,naphtha combustion consumption by petrochemical industries,49.975989063,TJ,CH4,3.0,kg/TJ,149.92796718900001,kg +5adf5e19-1190-359f-8c7c-a7dd3a50b1ce,SESCO,I.3.1,Buenos Aires,AR-B,annual,2020,naphtha combustion consumption by petrochemical industries,49.975989063,TJ,N2O,0.6,kg/TJ,29.9855934378,kg +bdc096fc-b1a8-3e46-869c-2e55b1d04054,SESCO,I.3.1,Capital Federal,AR-C,annual,2020,naphtha combustion consumption by petrochemical industries,7.552998657049999,TJ,CO2,73300.0,kg/TJ,553634.8015617649,kg +978ce009-75ec-37f3-b7a8-befb7ca66593,SESCO,I.3.1,Capital Federal,AR-C,annual,2020,naphtha combustion consumption by petrochemical industries,7.552998657049999,TJ,CH4,3.0,kg/TJ,22.65899597115,kg +3a9b04ac-b010-3b01-9f61-7432208bd831,SESCO,I.3.1,Capital Federal,AR-C,annual,2020,naphtha combustion consumption by petrochemical industries,7.552998657049999,TJ,N2O,0.6,kg/TJ,4.5317991942299996,kg +e1057402-9c9b-3c93-9a10-6d1a2d9f29b6,SESCO,I.3.1,Catamarca,AR-K,annual,2020,naphtha combustion consumption by petrochemical industries,4.45571814765,TJ,CO2,73300.0,kg/TJ,326604.140222745,kg +bb837502-2977-38de-9208-53af11539d31,SESCO,I.3.1,Catamarca,AR-K,annual,2020,naphtha combustion consumption by petrochemical industries,4.45571814765,TJ,CH4,3.0,kg/TJ,13.36715444295,kg +d76339c4-e451-332c-aef8-e285e456eb4c,SESCO,I.3.1,Catamarca,AR-K,annual,2020,naphtha combustion consumption by petrochemical industries,4.45571814765,TJ,N2O,0.6,kg/TJ,2.67343088859,kg +c1d11546-9614-3965-8a27-882d12a9aec9,SESCO,I.3.1,Chaco,AR-H,annual,2020,naphtha combustion consumption by petrochemical industries,5.643318034199999,TJ,CO2,73300.0,kg/TJ,413655.21190685994,kg +4082f747-1667-399c-a064-0bd4fc976547,SESCO,I.3.1,Chaco,AR-H,annual,2020,naphtha combustion consumption by petrochemical industries,5.643318034199999,TJ,CH4,3.0,kg/TJ,16.929954102599996,kg +f2183248-6400-3d69-9f00-4729d5230167,SESCO,I.3.1,Chaco,AR-H,annual,2020,naphtha combustion consumption by petrochemical industries,5.643318034199999,TJ,N2O,0.6,kg/TJ,3.3859908205199996,kg +9f161ba9-756f-314e-a24e-5f22ecf498b3,SESCO,I.3.1,Chubut,AR-U,annual,2020,naphtha combustion consumption by petrochemical industries,0.94698763005,TJ,CO2,73300.0,kg/TJ,69414.193282665,kg +37bc84a9-4b9f-3ea6-9835-f594fad3b083,SESCO,I.3.1,Chubut,AR-U,annual,2020,naphtha combustion consumption by petrochemical industries,0.94698763005,TJ,CH4,3.0,kg/TJ,2.84096289015,kg +c0e79b8a-fe50-32f5-9fe2-542983745dce,SESCO,I.3.1,Chubut,AR-U,annual,2020,naphtha combustion consumption by petrochemical industries,0.94698763005,TJ,N2O,0.6,kg/TJ,0.56819257803,kg +0ca1b686-16d0-376c-b7d0-bb104c322b61,SESCO,I.3.1,Córdoba,AR-X,annual,2020,naphtha combustion consumption by petrochemical industries,17.9638244093,TJ,CO2,73300.0,kg/TJ,1316748.32920169,kg +a02b01fc-2e8d-32e5-b69a-8685d5f105bf,SESCO,I.3.1,Córdoba,AR-X,annual,2020,naphtha combustion consumption by petrochemical industries,17.9638244093,TJ,CH4,3.0,kg/TJ,53.89147322789999,kg +b9a7613e-3dc4-3881-8afe-6529606c8fe7,SESCO,I.3.1,Córdoba,AR-X,annual,2020,naphtha combustion consumption by petrochemical industries,17.9638244093,TJ,N2O,0.6,kg/TJ,10.778294645579999,kg +18dd0cf9-da4a-369e-9292-7f388482d91a,SESCO,I.3.1,Entre Rios,AR-E,annual,2020,naphtha combustion consumption by petrochemical industries,11.008635899799998,TJ,CO2,73300.0,kg/TJ,806933.0114553398,kg +ff932022-449d-38aa-a768-0d4edab920bf,SESCO,I.3.1,Entre Rios,AR-E,annual,2020,naphtha combustion consumption by petrochemical industries,11.008635899799998,TJ,CH4,3.0,kg/TJ,33.025907699399994,kg +9bdbdb45-cd65-339d-8e2e-611adbb212ad,SESCO,I.3.1,Entre Rios,AR-E,annual,2020,naphtha combustion consumption by petrochemical industries,11.008635899799998,TJ,N2O,0.6,kg/TJ,6.6051815398799985,kg +5845c12b-a6f3-34b6-8124-460988b70857,SESCO,I.3.1,La Pampa,AR-L,annual,2020,naphtha combustion consumption by petrochemical industries,13.235961296249998,TJ,CO2,73300.0,kg/TJ,970195.9630151249,kg +f66125a4-487d-32c3-bc53-88c19bc17589,SESCO,I.3.1,La Pampa,AR-L,annual,2020,naphtha combustion consumption by petrochemical industries,13.235961296249998,TJ,CH4,3.0,kg/TJ,39.70788388875,kg +816c2d4b-ff4b-35d8-a756-cc28dfe228b3,SESCO,I.3.1,La Pampa,AR-L,annual,2020,naphtha combustion consumption by petrochemical industries,13.235961296249998,TJ,N2O,0.6,kg/TJ,7.941576777749999,kg +fcec4f7d-9925-30f5-812d-18c5fae7367d,SESCO,I.3.1,Mendoza,AR-M,annual,2020,naphtha combustion consumption by petrochemical industries,2.3409834293999996,TJ,CO2,73300.0,kg/TJ,171594.08537501996,kg +b55d4c74-5720-357d-a10e-9c190430f80e,SESCO,I.3.1,Mendoza,AR-M,annual,2020,naphtha combustion consumption by petrochemical industries,2.3409834293999996,TJ,CH4,3.0,kg/TJ,7.022950288199999,kg +21a64993-4112-3e49-8b67-9af0969b324e,SESCO,I.3.1,Mendoza,AR-M,annual,2020,naphtha combustion consumption by petrochemical industries,2.3409834293999996,TJ,N2O,0.6,kg/TJ,1.4045900576399997,kg +b71af444-45d0-3860-8391-541e5e22ed3f,SESCO,I.3.1,Misiones,AR-N,annual,2020,naphtha combustion consumption by petrochemical industries,3.0426624420499992,TJ,CO2,73300.0,kg/TJ,223027.15700226495,kg +5c494b2f-e776-3810-a68d-3cdf1c29d365,SESCO,I.3.1,Misiones,AR-N,annual,2020,naphtha combustion consumption by petrochemical industries,3.0426624420499992,TJ,CH4,3.0,kg/TJ,9.127987326149999,kg +20640b78-6a28-3a4c-b951-013f2bc1f9a8,SESCO,I.3.1,Misiones,AR-N,annual,2020,naphtha combustion consumption by petrochemical industries,3.0426624420499992,TJ,N2O,0.6,kg/TJ,1.8255974652299995,kg +aba8e54c-be5a-360d-a721-1a27842ca352,SESCO,I.3.1,Neuquén,AR-Q,annual,2020,naphtha combustion consumption by petrochemical industries,3.966564713649999,TJ,CO2,73300.0,kg/TJ,290749.19351054495,kg +62823f79-eccb-3bf0-8988-6e960d4c75c2,SESCO,I.3.1,Neuquén,AR-Q,annual,2020,naphtha combustion consumption by petrochemical industries,3.966564713649999,TJ,CH4,3.0,kg/TJ,11.899694140949997,kg +13f93305-7954-3458-8c8f-38811f407800,SESCO,I.3.1,Neuquén,AR-Q,annual,2020,naphtha combustion consumption by petrochemical industries,3.966564713649999,TJ,N2O,0.6,kg/TJ,2.3799388281899994,kg +8151558b-7c58-3362-a524-bae2e005abbf,SESCO,I.3.1,Rio Negro,AR-R,annual,2020,naphtha combustion consumption by petrochemical industries,9.534100560599999,TJ,CO2,73300.0,kg/TJ,698849.57109198,kg +57b7b467-f593-3c15-9a57-05f66e9ff303,SESCO,I.3.1,Rio Negro,AR-R,annual,2020,naphtha combustion consumption by petrochemical industries,9.534100560599999,TJ,CH4,3.0,kg/TJ,28.602301681799997,kg +f191133d-e91e-35cb-8320-2ca0bb72fcd7,SESCO,I.3.1,Rio Negro,AR-R,annual,2020,naphtha combustion consumption by petrochemical industries,9.534100560599999,TJ,N2O,0.6,kg/TJ,5.7204603363599995,kg +7582393f-e857-39ae-9161-00fde4a697e0,SESCO,I.3.1,San Luis,AR-D,annual,2020,naphtha combustion consumption by petrochemical industries,1.95694919035,TJ,CO2,73300.0,kg/TJ,143444.375652655,kg +e0fa39a2-612f-3de2-8c59-bffca22599ee,SESCO,I.3.1,San Luis,AR-D,annual,2020,naphtha combustion consumption by petrochemical industries,1.95694919035,TJ,CH4,3.0,kg/TJ,5.87084757105,kg +72b2d825-b9d9-3fff-b263-976ad6ad3bf9,SESCO,I.3.1,San Luis,AR-D,annual,2020,naphtha combustion consumption by petrochemical industries,1.95694919035,TJ,N2O,0.6,kg/TJ,1.17416951421,kg +457b7bf2-3dc9-3977-beb5-264b4c8f46c9,SESCO,I.3.1,Santa Fe,AR-S,annual,2020,naphtha combustion consumption by petrochemical industries,50.567883015650004,TJ,CO2,73300.0,kg/TJ,3706625.825047145,kg +556c727a-3ea1-30b5-89bb-f4b94523aa18,SESCO,I.3.1,Santa Fe,AR-S,annual,2020,naphtha combustion consumption by petrochemical industries,50.567883015650004,TJ,CH4,3.0,kg/TJ,151.70364904695,kg +ac31e64d-42f0-3042-839d-44944e0ea11a,SESCO,I.3.1,Santa Fe,AR-S,annual,2020,naphtha combustion consumption by petrochemical industries,50.567883015650004,TJ,N2O,0.6,kg/TJ,30.34072980939,kg +7e13197e-1778-31c4-a2de-78bb45097e94,SESCO,I.3.1,Santiago del Estero,AR-G,annual,2020,naphtha combustion consumption by petrochemical industries,0.75986509445,TJ,CO2,73300.0,kg/TJ,55698.11142318499,kg +eeb9af90-0b27-3f93-86fd-b721a65438dd,SESCO,I.3.1,Santiago del Estero,AR-G,annual,2020,naphtha combustion consumption by petrochemical industries,0.75986509445,TJ,CH4,3.0,kg/TJ,2.27959528335,kg +96feb93b-beb4-337e-8817-af16a350bc94,SESCO,I.3.1,Santiago del Estero,AR-G,annual,2020,naphtha combustion consumption by petrochemical industries,0.75986509445,TJ,N2O,0.6,kg/TJ,0.45591905666999993,kg +bd6c2d87-a4a5-302a-915a-f553a1bcb9c3,SESCO,I.3.1,Tucuman,AR-T,annual,2020,naphtha combustion consumption by petrochemical industries,4.16667848135,TJ,CO2,73300.0,kg/TJ,305417.532682955,kg +a672e123-8dd1-36ae-9ca8-19087f97cb7d,SESCO,I.3.1,Tucuman,AR-T,annual,2020,naphtha combustion consumption by petrochemical industries,4.16667848135,TJ,CH4,3.0,kg/TJ,12.500035444049999,kg +9d7ad2fe-bbfc-3b21-94d8-b41e04ae0f9f,SESCO,I.3.1,Tucuman,AR-T,annual,2020,naphtha combustion consumption by petrochemical industries,4.16667848135,TJ,N2O,0.6,kg/TJ,2.50000708881,kg +60dde477-7303-3385-8157-45c445ded39d,SESCO,I.3.1,Buenos Aires,AR-B,annual,2020,naphtha combustion consumption by petrochemical industries,2.0431609583,TJ,CO2,73300.0,kg/TJ,149763.69824339,kg +4cc7b612-2168-39d3-bd1e-4655fb7aa487,SESCO,I.3.1,Buenos Aires,AR-B,annual,2020,naphtha combustion consumption by petrochemical industries,2.0431609583,TJ,CH4,3.0,kg/TJ,6.129482874900001,kg +55dd3cc4-6a33-372c-afcd-87e2ddb0bb0a,SESCO,I.3.1,Buenos Aires,AR-B,annual,2020,naphtha combustion consumption by petrochemical industries,2.0431609583,TJ,N2O,0.6,kg/TJ,1.22589657498,kg +68a79d48-ac9f-35f0-8257-526f20219343,SESCO,I.3.1,Capital Federal,AR-C,annual,2020,naphtha combustion consumption by petrochemical industries,0.8852640296499998,TJ,CO2,73300.0,kg/TJ,64889.85337334499,kg +41a37403-0cd2-3f18-a601-2236fac061f1,SESCO,I.3.1,Capital Federal,AR-C,annual,2020,naphtha combustion consumption by petrochemical industries,0.8852640296499998,TJ,CH4,3.0,kg/TJ,2.6557920889499993,kg +9e08a97d-0f6b-3d51-9753-440efb811640,SESCO,I.3.1,Capital Federal,AR-C,annual,2020,naphtha combustion consumption by petrochemical industries,0.8852640296499998,TJ,N2O,0.6,kg/TJ,0.5311584177899998,kg +b1af0f59-bf80-3406-9dd1-17850a3eccaa,SESCO,I.3.1,Chubut,AR-U,annual,2020,naphtha combustion consumption by petrochemical industries,0.1533331338,TJ,CO2,73300.0,kg/TJ,11239.31870754,kg +7444fbc6-4749-33e7-b250-2194a24873ee,SESCO,I.3.1,Chubut,AR-U,annual,2020,naphtha combustion consumption by petrochemical industries,0.1533331338,TJ,CH4,3.0,kg/TJ,0.45999940139999995,kg +f4680212-e05d-3122-a6af-60972ed23f6d,SESCO,I.3.1,Chubut,AR-U,annual,2020,naphtha combustion consumption by petrochemical industries,0.1533331338,TJ,N2O,0.6,kg/TJ,0.09199988027999999,kg +4261ec96-873f-3fa8-8a71-2bbc6c6de0f5,SESCO,I.3.1,Córdoba,AR-X,annual,2020,naphtha combustion consumption by petrochemical industries,1.12898686285,TJ,CO2,73300.0,kg/TJ,82754.737046905,kg +f84c4707-eaa5-3176-bd7f-26c752a65a5b,SESCO,I.3.1,Córdoba,AR-X,annual,2020,naphtha combustion consumption by petrochemical industries,1.12898686285,TJ,CH4,3.0,kg/TJ,3.38696058855,kg +cbffb8f2-ce07-3d1e-9887-57e54ad4b868,SESCO,I.3.1,Córdoba,AR-X,annual,2020,naphtha combustion consumption by petrochemical industries,1.12898686285,TJ,N2O,0.6,kg/TJ,0.67739211771,kg +25032ca3-f9e0-308f-947b-5a3387f5becf,SESCO,I.3.1,Entre Rios,AR-E,annual,2020,naphtha combustion consumption by petrochemical industries,0.8234489416999998,TJ,CO2,73300.0,kg/TJ,60358.80742660999,kg +fc6372bb-df50-334b-90b3-6724d4a0cd3c,SESCO,I.3.1,Entre Rios,AR-E,annual,2020,naphtha combustion consumption by petrochemical industries,0.8234489416999998,TJ,CH4,3.0,kg/TJ,2.4703468250999996,kg +ed33b3d5-56d7-3563-b273-c980ab95897c,SESCO,I.3.1,Entre Rios,AR-E,annual,2020,naphtha combustion consumption by petrochemical industries,0.8234489416999998,TJ,N2O,0.6,kg/TJ,0.4940693650199999,kg +43a75237-09ad-3253-85c7-2b7971fb7f7f,SESCO,I.3.1,La Pampa,AR-L,annual,2020,naphtha combustion consumption by petrochemical industries,3.12085380145,TJ,CO2,73300.0,kg/TJ,228758.583646285,kg +3f6797bf-c783-3f80-b620-3d87507d68f2,SESCO,I.3.1,La Pampa,AR-L,annual,2020,naphtha combustion consumption by petrochemical industries,3.12085380145,TJ,CH4,3.0,kg/TJ,9.36256140435,kg +ba083379-395d-34aa-bcf1-d1b24c520a9f,SESCO,I.3.1,La Pampa,AR-L,annual,2020,naphtha combustion consumption by petrochemical industries,3.12085380145,TJ,N2O,0.6,kg/TJ,1.8725122808699999,kg +d0ead301-8529-3d97-be34-0d393d24d4b4,SESCO,I.3.1,Santa Fe,AR-S,annual,2020,naphtha combustion consumption by petrochemical industries,2.3766635738999997,TJ,CO2,73300.0,kg/TJ,174209.43996686998,kg +a14f0cc7-17fd-392d-a9ab-63371098ca09,SESCO,I.3.1,Santa Fe,AR-S,annual,2020,naphtha combustion consumption by petrochemical industries,2.3766635738999997,TJ,CH4,3.0,kg/TJ,7.129990721699999,kg +f1e47498-66f5-33dd-9b23-97558e6763cd,SESCO,I.3.1,Santa Fe,AR-S,annual,2020,naphtha combustion consumption by petrochemical industries,2.3766635738999997,TJ,N2O,0.6,kg/TJ,1.4259981443399998,kg +44ed8f5c-dfb4-3c7c-add7-c1fa2ce5cb6c,SESCO,I.3.1,Santiago del Estero,AR-G,annual,2020,naphtha combustion consumption by petrochemical industries,0.12103802864999999,TJ,CO2,73300.0,kg/TJ,8872.087500045,kg +98c2741b-b61c-34dd-b165-b0d73be562d2,SESCO,I.3.1,Santiago del Estero,AR-G,annual,2020,naphtha combustion consumption by petrochemical industries,0.12103802864999999,TJ,CH4,3.0,kg/TJ,0.36311408594999994,kg +58b363bc-9ced-3bd4-94a4-ca89b3ccc105,SESCO,I.3.1,Santiago del Estero,AR-G,annual,2020,naphtha combustion consumption by petrochemical industries,0.12103802864999999,TJ,N2O,0.6,kg/TJ,0.07262281719,kg +ab8cde61-6718-3603-827e-851ca299b614,SESCO,I.3.1,Tucuman,AR-T,annual,2020,naphtha combustion consumption by petrochemical industries,0.12256282115,TJ,CO2,73300.0,kg/TJ,8983.854790295,kg +2bf385c4-3e8d-3ae8-8bcd-f469c0652325,SESCO,I.3.1,Tucuman,AR-T,annual,2020,naphtha combustion consumption by petrochemical industries,0.12256282115,TJ,CH4,3.0,kg/TJ,0.36768846345,kg +a6f8f714-4f6b-382c-8bbf-1847c240290f,SESCO,I.3.1,Tucuman,AR-T,annual,2020,naphtha combustion consumption by petrochemical industries,0.12256282115,TJ,N2O,0.6,kg/TJ,0.07353769269,kg +185e0873-e306-3a6e-a080-407eae5f1a01,SESCO,II.5.1,Buenos Aires,AR-B,annual,2020,naphtha combustion consumption by agriculture machines,0.24396679999999998,TJ,CO2,73300.0,kg/TJ,17882.76644,kg +d612a49e-38fa-3b5f-a462-30984969d70d,SESCO,II.5.1,Buenos Aires,AR-B,annual,2020,naphtha combustion consumption by agriculture machines,0.24396679999999998,TJ,CH4,3.0,kg/TJ,0.7319004,kg +59dbddd6-1c76-300c-8f73-ad3ef855af51,SESCO,II.5.1,Buenos Aires,AR-B,annual,2020,naphtha combustion consumption by agriculture machines,0.24396679999999998,TJ,N2O,0.6,kg/TJ,0.14638008,kg +783799ae-6f45-3481-b9eb-f9e5a0b8dc5b,SESCO,II.5.1,Salta,AR-A,annual,2020,naphtha combustion consumption by agriculture machines,0.6709086999999999,TJ,CO2,73300.0,kg/TJ,49177.60771,kg +10e893c3-0366-392f-851d-c646b3b37035,SESCO,II.5.1,Salta,AR-A,annual,2020,naphtha combustion consumption by agriculture machines,0.6709086999999999,TJ,CH4,3.0,kg/TJ,2.0127260999999996,kg +0fac6410-564a-3ac5-ad10-fe15f5a6de24,SESCO,II.5.1,Salta,AR-A,annual,2020,naphtha combustion consumption by agriculture machines,0.6709086999999999,TJ,N2O,0.6,kg/TJ,0.4025452199999999,kg +9a715bbf-2630-3239-a623-7d1f2e4aa868,SESCO,II.5.1,Santa Fe,AR-S,annual,2020,naphtha combustion consumption by agriculture machines,2.40917215,TJ,CO2,73300.0,kg/TJ,176592.318595,kg +dceb9b44-bcba-326a-82ac-84dbb5a34263,SESCO,II.5.1,Santa Fe,AR-S,annual,2020,naphtha combustion consumption by agriculture machines,2.40917215,TJ,CH4,3.0,kg/TJ,7.2275164499999995,kg +b9a77a7f-f1d6-38e0-8f37-453d785678c9,SESCO,II.5.1,Santa Fe,AR-S,annual,2020,naphtha combustion consumption by agriculture machines,2.40917215,TJ,N2O,0.6,kg/TJ,1.4455032899999998,kg +c2640919-d1f5-3164-ba65-887e552716ec,SESCO,II.1.1,Buenos Aires,AR-B,annual,2020,naphtha combustion consumption by to the public,27237.856361099995,TJ,CO2,73300.0,kg/TJ,1996534871.2686296,kg +23940917-ba5f-3344-9692-47f48535cafc,SESCO,II.1.1,Buenos Aires,AR-B,annual,2020,naphtha combustion consumption by to the public,27237.856361099995,TJ,CH4,3.0,kg/TJ,81713.56908329998,kg +72bf5268-8d33-3e3f-af84-e06feac7919b,SESCO,II.1.1,Buenos Aires,AR-B,annual,2020,naphtha combustion consumption by to the public,27237.856361099995,TJ,N2O,0.6,kg/TJ,16342.713816659996,kg +85d94097-0d2f-3330-904e-c784d1699dcd,SESCO,II.1.1,Capital Federal,AR-C,annual,2020,naphtha combustion consumption by to the public,4648.573903049999,TJ,CO2,73300.0,kg/TJ,340740467.0935649,kg +7129910d-4d3e-3369-ba06-bf0e3fade149,SESCO,II.1.1,Capital Federal,AR-C,annual,2020,naphtha combustion consumption by to the public,4648.573903049999,TJ,CH4,3.0,kg/TJ,13945.721709149997,kg +ee73888b-57d0-30c1-a710-a5016b0034da,SESCO,II.1.1,Capital Federal,AR-C,annual,2020,naphtha combustion consumption by to the public,4648.573903049999,TJ,N2O,0.6,kg/TJ,2789.144341829999,kg +2397df14-1cbf-3d2f-afe9-b7d3aa10c354,SESCO,II.1.1,Catamarca,AR-K,annual,2020,naphtha combustion consumption by to the public,592.0464318999999,TJ,CO2,73300.0,kg/TJ,43397003.45826999,kg +b0a9ab43-50c7-3d14-bfe2-145ddad45d63,SESCO,II.1.1,Catamarca,AR-K,annual,2020,naphtha combustion consumption by to the public,592.0464318999999,TJ,CH4,3.0,kg/TJ,1776.1392956999998,kg +21e18ed9-0eed-3edf-8181-6710075bdacd,SESCO,II.1.1,Catamarca,AR-K,annual,2020,naphtha combustion consumption by to the public,592.0464318999999,TJ,N2O,0.6,kg/TJ,355.2278591399999,kg +1a9b7277-1914-3675-94cc-cce3348e77ca,SESCO,II.1.1,Chaco,AR-H,annual,2020,naphtha combustion consumption by to the public,1656.50407615,TJ,CO2,73300.0,kg/TJ,121421748.781795,kg +64191ef4-0f1e-362a-af73-9f1d36e6a8d9,SESCO,II.1.1,Chaco,AR-H,annual,2020,naphtha combustion consumption by to the public,1656.50407615,TJ,CH4,3.0,kg/TJ,4969.512228449999,kg +61d05f80-18db-3a60-8888-ed1cb5f2f9c1,SESCO,II.1.1,Chaco,AR-H,annual,2020,naphtha combustion consumption by to the public,1656.50407615,TJ,N2O,0.6,kg/TJ,993.9024456899999,kg +f784ab46-0e9a-3f11-a39d-9fc9ad4ad662,SESCO,II.1.1,Chubut,AR-U,annual,2020,naphtha combustion consumption by to the public,2381.1464638499997,TJ,CO2,73300.0,kg/TJ,174538035.80020496,kg +c38b5312-1453-31b5-b164-6480ba1523f7,SESCO,II.1.1,Chubut,AR-U,annual,2020,naphtha combustion consumption by to the public,2381.1464638499997,TJ,CH4,3.0,kg/TJ,7143.439391549999,kg +6923ac73-49fd-3e42-a759-c50a1da5c2a5,SESCO,II.1.1,Chubut,AR-U,annual,2020,naphtha combustion consumption by to the public,2381.1464638499997,TJ,N2O,0.6,kg/TJ,1428.6878783099999,kg +659a3cc9-57be-3f9c-aa3f-e0d4335f9318,SESCO,II.1.1,Corrientes,AR-W,annual,2020,naphtha combustion consumption by to the public,1739.7882424999998,TJ,CO2,73300.0,kg/TJ,127526478.17524998,kg +930365da-4336-304a-aac9-3ec37ab37e10,SESCO,II.1.1,Corrientes,AR-W,annual,2020,naphtha combustion consumption by to the public,1739.7882424999998,TJ,CH4,3.0,kg/TJ,5219.364727499999,kg +505be64c-b793-3ec3-8632-55f61f3759f2,SESCO,II.1.1,Corrientes,AR-W,annual,2020,naphtha combustion consumption by to the public,1739.7882424999998,TJ,N2O,0.6,kg/TJ,1043.8729454999998,kg +db8eadda-a614-3e38-ab14-10645100981a,SESCO,II.1.1,Córdoba,AR-X,annual,2020,naphtha combustion consumption by to the public,6713.356419,TJ,CO2,73300.0,kg/TJ,492089025.51269996,kg +538524ae-fa59-35af-b274-d653ea8561aa,SESCO,II.1.1,Córdoba,AR-X,annual,2020,naphtha combustion consumption by to the public,6713.356419,TJ,CH4,3.0,kg/TJ,20140.069257,kg +62266b4c-b846-38de-8935-4bc60c569de9,SESCO,II.1.1,Córdoba,AR-X,annual,2020,naphtha combustion consumption by to the public,6713.356419,TJ,N2O,0.6,kg/TJ,4028.0138513999996,kg +c5a3a124-b085-3f58-9f5f-97597fd8c2dc,SESCO,II.1.1,Entre Rios,AR-E,annual,2020,naphtha combustion consumption by to the public,2281.60800945,TJ,CO2,73300.0,kg/TJ,167241867.09268498,kg +715a805f-a584-3071-9b4b-a9cd48b0ffb7,SESCO,II.1.1,Entre Rios,AR-E,annual,2020,naphtha combustion consumption by to the public,2281.60800945,TJ,CH4,3.0,kg/TJ,6844.82402835,kg +1b04da8d-446d-3588-a4f1-ed97233ce945,SESCO,II.1.1,Entre Rios,AR-E,annual,2020,naphtha combustion consumption by to the public,2281.60800945,TJ,N2O,0.6,kg/TJ,1368.9648056699998,kg +2667d754-c2ef-385c-8396-c6fd72476624,SESCO,II.1.1,Formosa,AR-P,annual,2020,naphtha combustion consumption by to the public,766.6351731499999,TJ,CO2,73300.0,kg/TJ,56194358.19189499,kg +3be26355-88b0-3679-a005-deacf63f8dbd,SESCO,II.1.1,Formosa,AR-P,annual,2020,naphtha combustion consumption by to the public,766.6351731499999,TJ,CH4,3.0,kg/TJ,2299.9055194499997,kg +1c4c9be9-a36e-3a0b-95ef-b44d5c7d6077,SESCO,II.1.1,Formosa,AR-P,annual,2020,naphtha combustion consumption by to the public,766.6351731499999,TJ,N2O,0.6,kg/TJ,459.98110388999993,kg +80ac84c9-07db-36bc-9d77-ece82a9235c6,SESCO,II.1.1,Jujuy,AR-Y,annual,2020,naphtha combustion consumption by to the public,1077.5403638999999,TJ,CO2,73300.0,kg/TJ,78983708.67387,kg +9cd65b60-6999-3d7c-9577-ea42bf89c152,SESCO,II.1.1,Jujuy,AR-Y,annual,2020,naphtha combustion consumption by to the public,1077.5403638999999,TJ,CH4,3.0,kg/TJ,3232.6210917,kg +dfacc8ff-7a18-3d7a-bd8e-0c1849eeba80,SESCO,II.1.1,Jujuy,AR-Y,annual,2020,naphtha combustion consumption by to the public,1077.5403638999999,TJ,N2O,0.6,kg/TJ,646.52421834,kg +158c90f3-afc7-35d2-b653-aa96498a5505,SESCO,II.1.1,La Pampa,AR-L,annual,2020,naphtha combustion consumption by to the public,1059.2428538999998,TJ,CO2,73300.0,kg/TJ,77642501.19086999,kg +e8e99820-d182-397f-ba02-86efede75096,SESCO,II.1.1,La Pampa,AR-L,annual,2020,naphtha combustion consumption by to the public,1059.2428538999998,TJ,CH4,3.0,kg/TJ,3177.7285616999993,kg +2fc861cf-595d-3e05-af9a-32a092ec1b70,SESCO,II.1.1,La Pampa,AR-L,annual,2020,naphtha combustion consumption by to the public,1059.2428538999998,TJ,N2O,0.6,kg/TJ,635.5457123399998,kg +b51bc79e-f795-3d30-b846-a02e0c6b12d0,SESCO,II.1.1,La Rioja,AR-F,annual,2020,naphtha combustion consumption by to the public,684.936791,TJ,CO2,73300.0,kg/TJ,50205866.7803,kg +945060c8-0d8f-3636-bc31-48e8f5c517d8,SESCO,II.1.1,La Rioja,AR-F,annual,2020,naphtha combustion consumption by to the public,684.936791,TJ,CH4,3.0,kg/TJ,2054.810373,kg +aa485381-35fe-36b0-9509-5675a5c70645,SESCO,II.1.1,La Rioja,AR-F,annual,2020,naphtha combustion consumption by to the public,684.936791,TJ,N2O,0.6,kg/TJ,410.9620746,kg +fe30f3e4-9260-3a04-be8c-9c6765c0ef14,SESCO,II.1.1,Mendoza,AR-M,annual,2020,naphtha combustion consumption by to the public,3546.9113217999993,TJ,CO2,73300.0,kg/TJ,259988599.88793996,kg +abaf5459-a655-3ac0-b785-89b07d907edb,SESCO,II.1.1,Mendoza,AR-M,annual,2020,naphtha combustion consumption by to the public,3546.9113217999993,TJ,CH4,3.0,kg/TJ,10640.733965399999,kg +66ee55b8-2429-31c8-a92c-45f57a136f37,SESCO,II.1.1,Mendoza,AR-M,annual,2020,naphtha combustion consumption by to the public,3546.9113217999993,TJ,N2O,0.6,kg/TJ,2128.1467930799995,kg +a4cf8504-e370-32cc-80dd-e5ac8b66584b,SESCO,II.1.1,Misiones,AR-N,annual,2020,naphtha combustion consumption by to the public,2698.73024575,TJ,CO2,73300.0,kg/TJ,197816927.013475,kg +335cc45b-1018-3bb6-b32d-0f0baa63d03a,SESCO,II.1.1,Misiones,AR-N,annual,2020,naphtha combustion consumption by to the public,2698.73024575,TJ,CH4,3.0,kg/TJ,8096.19073725,kg +1223d085-8ce2-3614-8617-aaa64246cf10,SESCO,II.1.1,Misiones,AR-N,annual,2020,naphtha combustion consumption by to the public,2698.73024575,TJ,N2O,0.6,kg/TJ,1619.23814745,kg +136f0b32-33c2-3745-b3db-359953291b71,SESCO,II.1.1,Neuquén,AR-Q,annual,2020,naphtha combustion consumption by to the public,2267.9153728,TJ,CO2,73300.0,kg/TJ,166238196.82624,kg +20c1f2a5-e70b-36d0-986a-8e5e1d77e251,SESCO,II.1.1,Neuquén,AR-Q,annual,2020,naphtha combustion consumption by to the public,2267.9153728,TJ,CH4,3.0,kg/TJ,6803.7461184,kg +bd9f68c2-254d-3d05-bea2-c9b1d037730c,SESCO,II.1.1,Neuquén,AR-Q,annual,2020,naphtha combustion consumption by to the public,2267.9153728,TJ,N2O,0.6,kg/TJ,1360.7492236800001,kg +71471db7-5b34-3d4c-92da-262ac95d5454,SESCO,II.1.1,Rio Negro,AR-R,annual,2020,naphtha combustion consumption by to the public,2193.65797805,TJ,CO2,73300.0,kg/TJ,160795129.791065,kg +276f7981-f9d5-3783-99b1-9744ebfbf083,SESCO,II.1.1,Rio Negro,AR-R,annual,2020,naphtha combustion consumption by to the public,2193.65797805,TJ,CH4,3.0,kg/TJ,6580.973934150001,kg +e58fe85e-65be-3365-ab18-77d16945d967,SESCO,II.1.1,Rio Negro,AR-R,annual,2020,naphtha combustion consumption by to the public,2193.65797805,TJ,N2O,0.6,kg/TJ,1316.19478683,kg +ecf6b6f8-ff6a-329c-9b50-a755c03bff94,SESCO,II.1.1,Salta,AR-A,annual,2020,naphtha combustion consumption by to the public,2534.3576142499996,TJ,CO2,73300.0,kg/TJ,185768413.12452498,kg +6a659398-5943-361b-b164-6d95bb432b5d,SESCO,II.1.1,Salta,AR-A,annual,2020,naphtha combustion consumption by to the public,2534.3576142499996,TJ,CH4,3.0,kg/TJ,7603.072842749999,kg +9cf8312b-6733-3b28-827b-cd362f0fc7bd,SESCO,II.1.1,Salta,AR-A,annual,2020,naphtha combustion consumption by to the public,2534.3576142499996,TJ,N2O,0.6,kg/TJ,1520.6145685499998,kg +0489e6d8-4ad3-300d-adad-eb4c9e251ffc,SESCO,II.1.1,San Juan,AR-J,annual,2020,naphtha combustion consumption by to the public,1220.0779668,TJ,CO2,73300.0,kg/TJ,89431714.96644,kg +f22dc746-20e8-3221-96ea-577f95b09a33,SESCO,II.1.1,San Juan,AR-J,annual,2020,naphtha combustion consumption by to the public,1220.0779668,TJ,CH4,3.0,kg/TJ,3660.2339004,kg +c14d00e6-b043-3ab8-8003-971893740e5a,SESCO,II.1.1,San Juan,AR-J,annual,2020,naphtha combustion consumption by to the public,1220.0779668,TJ,N2O,0.6,kg/TJ,732.04678008,kg +ae1455dc-12ea-3cb0-aefe-3318444aa5cd,SESCO,II.1.1,San Luis,AR-D,annual,2020,naphtha combustion consumption by to the public,977.91042195,TJ,CO2,73300.0,kg/TJ,71680833.928935,kg +2fe582e4-fb66-3554-9ce6-82320ec48420,SESCO,II.1.1,San Luis,AR-D,annual,2020,naphtha combustion consumption by to the public,977.91042195,TJ,CH4,3.0,kg/TJ,2933.73126585,kg +1ea9c19b-b8a6-34d8-ae09-90ba65bbf677,SESCO,II.1.1,San Luis,AR-D,annual,2020,naphtha combustion consumption by to the public,977.91042195,TJ,N2O,0.6,kg/TJ,586.7462531699999,kg +450dcde4-f276-3b90-9e72-de9e548365e9,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2020,naphtha combustion consumption by to the public,1414.8854566,TJ,CO2,73300.0,kg/TJ,103711103.96878,kg +04c6e9b5-95ee-39c6-93a3-43015ba9255e,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2020,naphtha combustion consumption by to the public,1414.8854566,TJ,CH4,3.0,kg/TJ,4244.6563698,kg +6930fbd0-142e-3282-b2e2-bd2de1165c53,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2020,naphtha combustion consumption by to the public,1414.8854566,TJ,N2O,0.6,kg/TJ,848.93127396,kg +56782cb4-e403-3909-a4b4-a9fbd0805c97,SESCO,II.1.1,Santa Fe,AR-S,annual,2020,naphtha combustion consumption by to the public,5145.137828599999,TJ,CO2,73300.0,kg/TJ,377138602.83637995,kg +11c21481-ed33-3e06-830b-b9b4211663f4,SESCO,II.1.1,Santa Fe,AR-S,annual,2020,naphtha combustion consumption by to the public,5145.137828599999,TJ,CH4,3.0,kg/TJ,15435.413485799996,kg +e4a8fe50-1e29-329e-aa2c-bbf5f384a7a1,SESCO,II.1.1,Santa Fe,AR-S,annual,2020,naphtha combustion consumption by to the public,5145.137828599999,TJ,N2O,0.6,kg/TJ,3087.0826971599995,kg +9a77b157-ffd8-32c8-93cd-a473961b90ef,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2020,naphtha combustion consumption by to the public,1045.9161674499999,TJ,CO2,73300.0,kg/TJ,76665655.074085,kg +6a56e962-7732-3d7f-80c1-643b9fd431c6,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2020,naphtha combustion consumption by to the public,1045.9161674499999,TJ,CH4,3.0,kg/TJ,3137.7485023499994,kg +e39a1b9a-cedf-3fef-af65-80b78620ffb0,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2020,naphtha combustion consumption by to the public,1045.9161674499999,TJ,N2O,0.6,kg/TJ,627.54970047,kg +6ed65c34-6ef8-3733-913c-61325bd81984,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2020,naphtha combustion consumption by to the public,1063.3902894999999,TJ,CO2,73300.0,kg/TJ,77946508.22035,kg +410a1dfb-b4fb-3c29-b6f6-b1c5de518d97,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2020,naphtha combustion consumption by to the public,1063.3902894999999,TJ,CH4,3.0,kg/TJ,3190.1708684999994,kg +569ca982-91ae-3d06-a57a-0ed458fba4b4,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2020,naphtha combustion consumption by to the public,1063.3902894999999,TJ,N2O,0.6,kg/TJ,638.0341736999999,kg +6e73ec1c-d1d5-305d-bb8a-cd0ef3947290,SESCO,II.1.1,Tucuman,AR-T,annual,2020,naphtha combustion consumption by to the public,2110.58728265,TJ,CO2,73300.0,kg/TJ,154706047.818245,kg +4991be53-9c71-390e-ba0d-799f9f832636,SESCO,II.1.1,Tucuman,AR-T,annual,2020,naphtha combustion consumption by to the public,2110.58728265,TJ,CH4,3.0,kg/TJ,6331.76184795,kg +635976ce-58f4-325c-8eda-f524801b851e,SESCO,II.1.1,Tucuman,AR-T,annual,2020,naphtha combustion consumption by to the public,2110.58728265,TJ,N2O,0.6,kg/TJ,1266.3523695899999,kg +ebeef971-f07b-3c3a-a77b-8a97eaf30316,SESCO,II.1.1,Buenos Aires,AR-B,annual,2020,naphtha combustion consumption by to the public,9850.312029249999,TJ,CO2,73300.0,kg/TJ,722027871.7440249,kg +bf68073e-7798-3bd0-a71a-00fa53530721,SESCO,II.1.1,Buenos Aires,AR-B,annual,2020,naphtha combustion consumption by to the public,9850.312029249999,TJ,CH4,3.0,kg/TJ,29550.936087749997,kg +241ae6d5-869d-314b-91b5-581a9a013fc0,SESCO,II.1.1,Buenos Aires,AR-B,annual,2020,naphtha combustion consumption by to the public,9850.312029249999,TJ,N2O,0.6,kg/TJ,5910.187217549999,kg +b25102ad-6bf0-3e81-8388-55eed303aa3a,SESCO,II.1.1,Capital Federal,AR-C,annual,2020,naphtha combustion consumption by to the public,2167.1570844,TJ,CO2,73300.0,kg/TJ,158852614.28651997,kg +023d859c-df96-370f-949f-48c6bba1e754,SESCO,II.1.1,Capital Federal,AR-C,annual,2020,naphtha combustion consumption by to the public,2167.1570844,TJ,CH4,3.0,kg/TJ,6501.471253199999,kg +d529df76-30f5-3f9a-864e-950bbba97678,SESCO,II.1.1,Capital Federal,AR-C,annual,2020,naphtha combustion consumption by to the public,2167.1570844,TJ,N2O,0.6,kg/TJ,1300.2942506399997,kg +bac29157-b400-3e8b-8248-f929e3ce5e2b,SESCO,II.1.1,Catamarca,AR-K,annual,2020,naphtha combustion consumption by to the public,202.52293984999997,TJ,CO2,73300.0,kg/TJ,14844931.491004998,kg +4f1fd6a7-a449-3b1e-9862-b6cead6e9421,SESCO,II.1.1,Catamarca,AR-K,annual,2020,naphtha combustion consumption by to the public,202.52293984999997,TJ,CH4,3.0,kg/TJ,607.56881955,kg +80f1824d-335c-345b-9036-88db22ddb4ff,SESCO,II.1.1,Catamarca,AR-K,annual,2020,naphtha combustion consumption by to the public,202.52293984999997,TJ,N2O,0.6,kg/TJ,121.51376390999998,kg +d6c51678-938e-3cba-86e0-60713db5783a,SESCO,II.1.1,Chaco,AR-H,annual,2020,naphtha combustion consumption by to the public,474.17997164999997,TJ,CO2,73300.0,kg/TJ,34757391.921945,kg +5e93d307-ad66-3255-8066-5d86de7c71b5,SESCO,II.1.1,Chaco,AR-H,annual,2020,naphtha combustion consumption by to the public,474.17997164999997,TJ,CH4,3.0,kg/TJ,1422.53991495,kg +c4883798-dc0e-3bb7-a49c-2cc02d047fee,SESCO,II.1.1,Chaco,AR-H,annual,2020,naphtha combustion consumption by to the public,474.17997164999997,TJ,N2O,0.6,kg/TJ,284.50798298999996,kg +286f7fb1-d582-3c78-a70e-b6c4e39ad30d,SESCO,II.1.1,Chubut,AR-U,annual,2020,naphtha combustion consumption by to the public,807.5301079999999,TJ,CO2,73300.0,kg/TJ,59191956.91639999,kg +b32178d5-b9d7-3dbf-a17f-2043f882f03c,SESCO,II.1.1,Chubut,AR-U,annual,2020,naphtha combustion consumption by to the public,807.5301079999999,TJ,CH4,3.0,kg/TJ,2422.590324,kg +932ed064-67ae-32b6-9ea6-3410e139ba2a,SESCO,II.1.1,Chubut,AR-U,annual,2020,naphtha combustion consumption by to the public,807.5301079999999,TJ,N2O,0.6,kg/TJ,484.51806479999993,kg +46c212bc-9b55-3811-ba03-715a36296fb4,SESCO,II.1.1,Corrientes,AR-W,annual,2020,naphtha combustion consumption by to the public,639.9859081,TJ,CO2,73300.0,kg/TJ,46910967.063729994,kg +802babd5-72ec-37f7-bb53-004fb9c08d62,SESCO,II.1.1,Corrientes,AR-W,annual,2020,naphtha combustion consumption by to the public,639.9859081,TJ,CH4,3.0,kg/TJ,1919.9577242999999,kg +5f82e939-4d81-35db-b8dd-3499e696b009,SESCO,II.1.1,Corrientes,AR-W,annual,2020,naphtha combustion consumption by to the public,639.9859081,TJ,N2O,0.6,kg/TJ,383.99154486,kg +5681031c-7bc1-3c89-bc73-3ef8d0955658,SESCO,II.1.1,Córdoba,AR-X,annual,2020,naphtha combustion consumption by to the public,2319.2093925,TJ,CO2,73300.0,kg/TJ,169998048.47024998,kg +80e0d08c-9cc5-3120-aff7-52474b786024,SESCO,II.1.1,Córdoba,AR-X,annual,2020,naphtha combustion consumption by to the public,2319.2093925,TJ,CH4,3.0,kg/TJ,6957.6281775,kg +f15aafcc-9b9a-3ba4-bdcf-c1cc2c4efa9e,SESCO,II.1.1,Córdoba,AR-X,annual,2020,naphtha combustion consumption by to the public,2319.2093925,TJ,N2O,0.6,kg/TJ,1391.5256355,kg +ee16f5f0-1a18-35c4-9b12-927ab6f46269,SESCO,II.1.1,Entre Rios,AR-E,annual,2020,naphtha combustion consumption by to the public,797.07003145,TJ,CO2,73300.0,kg/TJ,58425233.305285,kg +92457179-f57b-30cb-ab64-b69b31eb6c78,SESCO,II.1.1,Entre Rios,AR-E,annual,2020,naphtha combustion consumption by to the public,797.07003145,TJ,CH4,3.0,kg/TJ,2391.21009435,kg +597f0677-1888-3d84-bbec-8898f49eb6f0,SESCO,II.1.1,Entre Rios,AR-E,annual,2020,naphtha combustion consumption by to the public,797.07003145,TJ,N2O,0.6,kg/TJ,478.24201887,kg +1361c856-937c-33b2-8743-a3fc97a4549f,SESCO,II.1.1,Formosa,AR-P,annual,2020,naphtha combustion consumption by to the public,194.35005205,TJ,CO2,73300.0,kg/TJ,14245858.815265,kg +26463dd2-a077-3bf6-8b62-deef0fa5e950,SESCO,II.1.1,Formosa,AR-P,annual,2020,naphtha combustion consumption by to the public,194.35005205,TJ,CH4,3.0,kg/TJ,583.05015615,kg +d95ccedc-d002-3fa2-b618-11eda6c8a555,SESCO,II.1.1,Formosa,AR-P,annual,2020,naphtha combustion consumption by to the public,194.35005205,TJ,N2O,0.6,kg/TJ,116.61003122999999,kg +ca180090-e654-3538-9917-be0f77636590,SESCO,II.1.1,Jujuy,AR-Y,annual,2020,naphtha combustion consumption by to the public,294.8338778,TJ,CO2,73300.0,kg/TJ,21611323.242739998,kg +75259a4a-48ab-36cf-9d29-00fbefbefeed,SESCO,II.1.1,Jujuy,AR-Y,annual,2020,naphtha combustion consumption by to the public,294.8338778,TJ,CH4,3.0,kg/TJ,884.5016334,kg +8206f8a6-43ff-36bd-9cf1-1fa0efa9d79b,SESCO,II.1.1,Jujuy,AR-Y,annual,2020,naphtha combustion consumption by to the public,294.8338778,TJ,N2O,0.6,kg/TJ,176.90032667999998,kg +d5237345-cee7-3b56-88eb-6de181a09836,SESCO,II.1.1,La Pampa,AR-L,annual,2020,naphtha combustion consumption by to the public,634.7711177499999,TJ,CO2,73300.0,kg/TJ,46528722.93107499,kg +4bef1c49-5bfb-348d-a6fb-6e03f77a522e,SESCO,II.1.1,La Pampa,AR-L,annual,2020,naphtha combustion consumption by to the public,634.7711177499999,TJ,CH4,3.0,kg/TJ,1904.3133532499996,kg +5cb42777-f9a2-3579-97de-e8f31b981f96,SESCO,II.1.1,La Pampa,AR-L,annual,2020,naphtha combustion consumption by to the public,634.7711177499999,TJ,N2O,0.6,kg/TJ,380.8626706499999,kg +82442edd-fcdf-3cfe-b3fe-c7580780641c,SESCO,II.1.1,La Rioja,AR-F,annual,2020,naphtha combustion consumption by to the public,248.84613599999997,TJ,CO2,73300.0,kg/TJ,18240421.768799998,kg +54c2ce3f-bbde-36ab-8ca3-5028341e7991,SESCO,II.1.1,La Rioja,AR-F,annual,2020,naphtha combustion consumption by to the public,248.84613599999997,TJ,CH4,3.0,kg/TJ,746.5384079999999,kg +c09361ab-9f63-3588-a0a9-68eb0b620ecd,SESCO,II.1.1,La Rioja,AR-F,annual,2020,naphtha combustion consumption by to the public,248.84613599999997,TJ,N2O,0.6,kg/TJ,149.30768159999997,kg +1629993d-559c-3b0b-b6b6-19055abee61c,SESCO,II.1.1,Mendoza,AR-M,annual,2020,naphtha combustion consumption by to the public,1704.56553575,TJ,CO2,73300.0,kg/TJ,124944653.770475,kg +fd177c6c-c464-3af1-bb65-fd54e9cb3b6d,SESCO,II.1.1,Mendoza,AR-M,annual,2020,naphtha combustion consumption by to the public,1704.56553575,TJ,CH4,3.0,kg/TJ,5113.69660725,kg +4dde26cb-7891-3f58-9309-96b4bc633a0d,SESCO,II.1.1,Mendoza,AR-M,annual,2020,naphtha combustion consumption by to the public,1704.56553575,TJ,N2O,0.6,kg/TJ,1022.7393214499999,kg +392eb06c-518d-3259-9b6c-20275d5a086c,SESCO,II.1.1,Misiones,AR-N,annual,2020,naphtha combustion consumption by to the public,623.945091,TJ,CO2,73300.0,kg/TJ,45735175.17030001,kg +8d0ee16a-7886-35fc-b50d-46a7c1664389,SESCO,II.1.1,Misiones,AR-N,annual,2020,naphtha combustion consumption by to the public,623.945091,TJ,CH4,3.0,kg/TJ,1871.8352730000001,kg +919f11d4-c2bd-3e74-9d77-8ba640d9cf3e,SESCO,II.1.1,Misiones,AR-N,annual,2020,naphtha combustion consumption by to the public,623.945091,TJ,N2O,0.6,kg/TJ,374.3670546,kg +a65630ef-1646-3bf3-85d0-4cdff08b5e15,SESCO,II.1.1,Neuquén,AR-Q,annual,2020,naphtha combustion consumption by to the public,1189.8870752999999,TJ,CO2,73300.0,kg/TJ,87218722.61949,kg +f1e8e1d8-112f-3e29-99da-c1aba4fb4b90,SESCO,II.1.1,Neuquén,AR-Q,annual,2020,naphtha combustion consumption by to the public,1189.8870752999999,TJ,CH4,3.0,kg/TJ,3569.6612258999994,kg +d81c543a-f794-3da3-8ebf-915af808566f,SESCO,II.1.1,Neuquén,AR-Q,annual,2020,naphtha combustion consumption by to the public,1189.8870752999999,TJ,N2O,0.6,kg/TJ,713.9322451799999,kg +efc766d7-f5c4-37d3-ab63-0d6de6d9ee64,SESCO,II.1.1,Rio Negro,AR-R,annual,2020,naphtha combustion consumption by to the public,1004.3503238999998,TJ,CO2,73300.0,kg/TJ,73618878.74186999,kg +082ae428-24fe-31c5-a6ca-49de44e426ac,SESCO,II.1.1,Rio Negro,AR-R,annual,2020,naphtha combustion consumption by to the public,1004.3503238999998,TJ,CH4,3.0,kg/TJ,3013.0509716999995,kg +fcd7c187-de48-3d3a-9c03-9253d89093a5,SESCO,II.1.1,Rio Negro,AR-R,annual,2020,naphtha combustion consumption by to the public,1004.3503238999998,TJ,N2O,0.6,kg/TJ,602.6101943399999,kg +6b42f98f-a129-302a-bbf5-0b64e43607e6,SESCO,II.1.1,Salta,AR-A,annual,2020,naphtha combustion consumption by to the public,696.7691808,TJ,CO2,73300.0,kg/TJ,51073180.95264,kg +2744b79a-ee6e-3d1e-9afe-ac8a04821fdd,SESCO,II.1.1,Salta,AR-A,annual,2020,naphtha combustion consumption by to the public,696.7691808,TJ,CH4,3.0,kg/TJ,2090.3075424,kg +aa993824-88e4-3c71-a52d-2b0232671a2c,SESCO,II.1.1,Salta,AR-A,annual,2020,naphtha combustion consumption by to the public,696.7691808,TJ,N2O,0.6,kg/TJ,418.06150848,kg +91ddaae1-9221-3110-874c-0b063289a7c9,SESCO,II.1.1,San Juan,AR-J,annual,2020,naphtha combustion consumption by to the public,512.66573435,TJ,CO2,73300.0,kg/TJ,37578398.327855,kg +daa3f92e-db95-3f73-8958-6a46a6f8c60b,SESCO,II.1.1,San Juan,AR-J,annual,2020,naphtha combustion consumption by to the public,512.66573435,TJ,CH4,3.0,kg/TJ,1537.9972030499998,kg +6b69be81-e35d-3fdb-b1b7-11a0f049a0f2,SESCO,II.1.1,San Juan,AR-J,annual,2020,naphtha combustion consumption by to the public,512.66573435,TJ,N2O,0.6,kg/TJ,307.59944061,kg +09bf512e-b737-3188-93f0-e70acb3da252,SESCO,II.1.1,San Luis,AR-D,annual,2020,naphtha combustion consumption by to the public,376.86771429999993,TJ,CO2,73300.0,kg/TJ,27624403.458189994,kg +7f2adc3c-1e20-3a3f-8bf4-8775599076b2,SESCO,II.1.1,San Luis,AR-D,annual,2020,naphtha combustion consumption by to the public,376.86771429999993,TJ,CH4,3.0,kg/TJ,1130.6031428999997,kg +e1b4a4e8-eacf-3501-8d58-fd3c7873b50b,SESCO,II.1.1,San Luis,AR-D,annual,2020,naphtha combustion consumption by to the public,376.86771429999993,TJ,N2O,0.6,kg/TJ,226.12062857999996,kg +5fd119b8-5b23-310f-acbe-6a8e575bbd09,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2020,naphtha combustion consumption by to the public,347.7746733999999,TJ,CO2,73300.0,kg/TJ,25491883.560219996,kg +84d1a7ca-04b9-3518-87cf-085d250fda36,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2020,naphtha combustion consumption by to the public,347.7746733999999,TJ,CH4,3.0,kg/TJ,1043.3240201999997,kg +386cbde8-20b2-3546-ab19-6d450b676b00,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2020,naphtha combustion consumption by to the public,347.7746733999999,TJ,N2O,0.6,kg/TJ,208.66480403999995,kg +7f14525e-2ac4-3017-b274-0724c467f078,SESCO,II.1.1,Santa Fe,AR-S,annual,2020,naphtha combustion consumption by to the public,2109.42844035,TJ,CO2,73300.0,kg/TJ,154621104.677655,kg +cf1d9c70-840c-33f3-852a-ff0fca955caa,SESCO,II.1.1,Santa Fe,AR-S,annual,2020,naphtha combustion consumption by to the public,2109.42844035,TJ,CH4,3.0,kg/TJ,6328.28532105,kg +d43263be-2dba-34d6-a6e1-b54c2378d226,SESCO,II.1.1,Santa Fe,AR-S,annual,2020,naphtha combustion consumption by to the public,2109.42844035,TJ,N2O,0.6,kg/TJ,1265.65706421,kg +a845a2db-c3b9-3d03-9891-edfe04daa399,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2020,naphtha combustion consumption by to the public,351.67814219999997,TJ,CO2,73300.0,kg/TJ,25778007.823259998,kg +6f5d1182-d0c2-3d41-8c5c-dab5203e95de,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2020,naphtha combustion consumption by to the public,351.67814219999997,TJ,CH4,3.0,kg/TJ,1055.0344266,kg +9b18ec80-e1d7-3809-a269-e47a92f3b953,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2020,naphtha combustion consumption by to the public,351.67814219999997,TJ,N2O,0.6,kg/TJ,211.00688531999998,kg +83faf84e-d774-3738-bed2-a620611cb6e4,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2020,naphtha combustion consumption by to the public,232.19540189999998,TJ,CO2,73300.0,kg/TJ,17019922.959269997,kg +f423e81b-7f1c-30b9-abf5-143453b6d5b0,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2020,naphtha combustion consumption by to the public,232.19540189999998,TJ,CH4,3.0,kg/TJ,696.5862056999999,kg +11e46acd-2145-358e-95d1-d5204a8c119e,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2020,naphtha combustion consumption by to the public,232.19540189999998,TJ,N2O,0.6,kg/TJ,139.31724114,kg +e0a98f0b-13b8-3a5c-94ed-0fcd09999a50,SESCO,II.1.1,Tucuman,AR-T,annual,2020,naphtha combustion consumption by to the public,561.45909435,TJ,CO2,73300.0,kg/TJ,41154951.615855,kg +e9cef9e5-0abe-3acb-9a66-026b841ab831,SESCO,II.1.1,Tucuman,AR-T,annual,2020,naphtha combustion consumption by to the public,561.45909435,TJ,CH4,3.0,kg/TJ,1684.37728305,kg +782dfa98-beb6-302b-9485-4db422fbd4e5,SESCO,II.1.1,Tucuman,AR-T,annual,2020,naphtha combustion consumption by to the public,561.45909435,TJ,N2O,0.6,kg/TJ,336.87545660999996,kg +60d9da1b-bff7-32a2-b47a-7fb456137359,SESCO,II.1.1,Buenos Aires,AR-B,annual,2020,naphtha combustion consumption by freight transport,271.50455254999997,TJ,CO2,73300.0,kg/TJ,19901283.701915,kg +8af4b9b1-a504-3d52-942d-49f9abea9607,SESCO,II.1.1,Buenos Aires,AR-B,annual,2020,naphtha combustion consumption by freight transport,271.50455254999997,TJ,CH4,3.0,kg/TJ,814.5136576499999,kg +d8668916-8aca-3843-9546-3b5f1467eab2,SESCO,II.1.1,Buenos Aires,AR-B,annual,2020,naphtha combustion consumption by freight transport,271.50455254999997,TJ,N2O,0.6,kg/TJ,162.90273152999998,kg +25f1adb2-03f8-3a9a-a2a5-577d25cf5aa2,SESCO,II.1.1,Capital Federal,AR-C,annual,2020,naphtha combustion consumption by freight transport,305.11097925,TJ,CO2,73300.0,kg/TJ,22364634.779025,kg +78b10ccc-299c-3560-913f-a171fd6358ba,SESCO,II.1.1,Capital Federal,AR-C,annual,2020,naphtha combustion consumption by freight transport,305.11097925,TJ,CH4,3.0,kg/TJ,915.33293775,kg +f2da18d2-334e-3c72-bbc1-0f7aa9d8abee,SESCO,II.1.1,Capital Federal,AR-C,annual,2020,naphtha combustion consumption by freight transport,305.11097925,TJ,N2O,0.6,kg/TJ,183.06658755,kg +e0ebc8c8-faf9-3a40-ab6d-c30bf8faeada,SESCO,II.1.1,Catamarca,AR-K,annual,2020,naphtha combustion consumption by freight transport,0.21347095,TJ,CO2,73300.0,kg/TJ,15647.420634999999,kg +c7344862-13f7-3ff1-a6ff-cde680a3b52c,SESCO,II.1.1,Catamarca,AR-K,annual,2020,naphtha combustion consumption by freight transport,0.21347095,TJ,CH4,3.0,kg/TJ,0.6404128499999999,kg +e8f053fb-c2ca-3391-a560-1cf0a9468e56,SESCO,II.1.1,Catamarca,AR-K,annual,2020,naphtha combustion consumption by freight transport,0.21347095,TJ,N2O,0.6,kg/TJ,0.12808256999999998,kg +2954a486-dd7c-3c93-b89a-fb6059e8ada0,SESCO,II.1.1,Chaco,AR-H,annual,2020,naphtha combustion consumption by freight transport,12.625281899999997,TJ,CO2,73300.0,kg/TJ,925433.1632699998,kg +9b25aacf-f69e-329c-b03b-5caac5875119,SESCO,II.1.1,Chaco,AR-H,annual,2020,naphtha combustion consumption by freight transport,12.625281899999997,TJ,CH4,3.0,kg/TJ,37.87584569999999,kg +cde1f09d-e8d6-39b3-8ef6-cc5d2d23fcc3,SESCO,II.1.1,Chaco,AR-H,annual,2020,naphtha combustion consumption by freight transport,12.625281899999997,TJ,N2O,0.6,kg/TJ,7.575169139999998,kg +8e70f3be-ecb4-31cc-8954-ba6346c383f9,SESCO,II.1.1,Chubut,AR-U,annual,2020,naphtha combustion consumption by freight transport,19.425856449999998,TJ,CO2,73300.0,kg/TJ,1423915.277785,kg +6938e675-c56b-30ff-b3da-e1583d5c2fd2,SESCO,II.1.1,Chubut,AR-U,annual,2020,naphtha combustion consumption by freight transport,19.425856449999998,TJ,CH4,3.0,kg/TJ,58.27756934999999,kg +6eb66168-f82f-3c0b-937f-1500d69beaa1,SESCO,II.1.1,Chubut,AR-U,annual,2020,naphtha combustion consumption by freight transport,19.425856449999998,TJ,N2O,0.6,kg/TJ,11.655513869999998,kg +997a555f-e56d-39d7-9db6-ef3f3761b430,SESCO,II.1.1,Corrientes,AR-W,annual,2020,naphtha combustion consumption by freight transport,7.898425149999999,TJ,CO2,73300.0,kg/TJ,578954.5634949999,kg +1ebcc3c9-eb49-32f1-983d-fabfcc5a62e2,SESCO,II.1.1,Corrientes,AR-W,annual,2020,naphtha combustion consumption by freight transport,7.898425149999999,TJ,CH4,3.0,kg/TJ,23.695275449999997,kg +523bc0d7-54f6-3e4a-b4c2-52041ab3797f,SESCO,II.1.1,Corrientes,AR-W,annual,2020,naphtha combustion consumption by freight transport,7.898425149999999,TJ,N2O,0.6,kg/TJ,4.739055089999999,kg +546e8873-6103-3732-ba5e-6f277babf686,SESCO,II.1.1,Córdoba,AR-X,annual,2020,naphtha combustion consumption by freight transport,58.521536149999996,TJ,CO2,73300.0,kg/TJ,4289628.599795,kg +7b603533-998c-3c29-aa25-fc1e6c984819,SESCO,II.1.1,Córdoba,AR-X,annual,2020,naphtha combustion consumption by freight transport,58.521536149999996,TJ,CH4,3.0,kg/TJ,175.56460844999998,kg +fd6df49c-0627-338b-8b5b-4acc14499e57,SESCO,II.1.1,Córdoba,AR-X,annual,2020,naphtha combustion consumption by freight transport,58.521536149999996,TJ,N2O,0.6,kg/TJ,35.11292168999999,kg +321283ba-8d5b-3adf-99d5-54b1e5a8c866,SESCO,II.1.1,Entre Rios,AR-E,annual,2020,naphtha combustion consumption by freight transport,18.785443599999997,TJ,CO2,73300.0,kg/TJ,1376973.0158799998,kg +409d63b7-1989-31b8-ade5-6ce4a1d3a557,SESCO,II.1.1,Entre Rios,AR-E,annual,2020,naphtha combustion consumption by freight transport,18.785443599999997,TJ,CH4,3.0,kg/TJ,56.356330799999995,kg +58cce7a3-0b3a-34c2-b619-8f682a092d9e,SESCO,II.1.1,Entre Rios,AR-E,annual,2020,naphtha combustion consumption by freight transport,18.785443599999997,TJ,N2O,0.6,kg/TJ,11.271266159999998,kg +3e347239-ca94-3177-9fb9-a93aad7eb6f7,SESCO,II.1.1,Formosa,AR-P,annual,2020,naphtha combustion consumption by freight transport,0.51842945,TJ,CO2,73300.0,kg/TJ,38000.878684999996,kg +4a49d2aa-3859-3028-aadd-1907afdfeec5,SESCO,II.1.1,Formosa,AR-P,annual,2020,naphtha combustion consumption by freight transport,0.51842945,TJ,CH4,3.0,kg/TJ,1.5552883499999999,kg +625dc28c-fb9c-38b8-861e-f5d9cc67b448,SESCO,II.1.1,Formosa,AR-P,annual,2020,naphtha combustion consumption by freight transport,0.51842945,TJ,N2O,0.6,kg/TJ,0.31105766999999995,kg +f96e9c59-18d8-3f08-9a9a-3f52f5ad54d0,SESCO,II.1.1,Jujuy,AR-Y,annual,2020,naphtha combustion consumption by freight transport,2.1957012,TJ,CO2,73300.0,kg/TJ,160944.89795999997,kg +fa82255c-6a06-3d16-830a-5761291efd77,SESCO,II.1.1,Jujuy,AR-Y,annual,2020,naphtha combustion consumption by freight transport,2.1957012,TJ,CH4,3.0,kg/TJ,6.587103599999999,kg +9836fe12-ae82-33f2-a36f-6feb368181ac,SESCO,II.1.1,Jujuy,AR-Y,annual,2020,naphtha combustion consumption by freight transport,2.1957012,TJ,N2O,0.6,kg/TJ,1.3174207199999999,kg +3d8b53e1-653a-3e17-8271-c266b90950f1,SESCO,II.1.1,La Pampa,AR-L,annual,2020,naphtha combustion consumption by freight transport,6.617599449999999,TJ,CO2,73300.0,kg/TJ,485070.03968499997,kg +4ebce1c2-85b1-37cf-9ce6-b1754a3151c6,SESCO,II.1.1,La Pampa,AR-L,annual,2020,naphtha combustion consumption by freight transport,6.617599449999999,TJ,CH4,3.0,kg/TJ,19.852798349999997,kg +f924bf94-6318-3d53-ba17-759de2097780,SESCO,II.1.1,La Pampa,AR-L,annual,2020,naphtha combustion consumption by freight transport,6.617599449999999,TJ,N2O,0.6,kg/TJ,3.970559669999999,kg +a9bb35b1-b657-3a3a-bbc3-a86e6fac3ee6,SESCO,II.1.1,La Rioja,AR-F,annual,2020,naphtha combustion consumption by freight transport,0.64041285,TJ,CO2,73300.0,kg/TJ,46942.261905,kg +e579a539-a53d-34bb-83f5-a520f2d0a61d,SESCO,II.1.1,La Rioja,AR-F,annual,2020,naphtha combustion consumption by freight transport,0.64041285,TJ,CH4,3.0,kg/TJ,1.92123855,kg +b3856f7d-ecce-3d83-b6d1-609c9c4b0131,SESCO,II.1.1,La Rioja,AR-F,annual,2020,naphtha combustion consumption by freight transport,0.64041285,TJ,N2O,0.6,kg/TJ,0.38424771,kg +a008d541-c284-365f-9365-5985a19bf6f9,SESCO,II.1.1,Mendoza,AR-M,annual,2020,naphtha combustion consumption by freight transport,26.68386875,TJ,CO2,73300.0,kg/TJ,1955927.579375,kg +28254cd2-2493-33b0-8ad2-606b4802a8e5,SESCO,II.1.1,Mendoza,AR-M,annual,2020,naphtha combustion consumption by freight transport,26.68386875,TJ,CH4,3.0,kg/TJ,80.05160624999999,kg +9d84089b-62d9-366d-91ac-751d33cf8690,SESCO,II.1.1,Mendoza,AR-M,annual,2020,naphtha combustion consumption by freight transport,26.68386875,TJ,N2O,0.6,kg/TJ,16.010321249999997,kg +a679554e-35aa-37a1-9464-493ffe77e991,SESCO,II.1.1,Misiones,AR-N,annual,2020,naphtha combustion consumption by freight transport,6.1601617,TJ,CO2,73300.0,kg/TJ,451539.85261,kg +f2bf4bbd-07f1-3106-91c1-1a3911e761db,SESCO,II.1.1,Misiones,AR-N,annual,2020,naphtha combustion consumption by freight transport,6.1601617,TJ,CH4,3.0,kg/TJ,18.4804851,kg +380d8c6f-c0e1-3f25-ad7c-8789b1336c51,SESCO,II.1.1,Misiones,AR-N,annual,2020,naphtha combustion consumption by freight transport,6.1601617,TJ,N2O,0.6,kg/TJ,3.69609702,kg +c9bcc524-8c92-34a7-b4e7-1c6edd8ae745,SESCO,II.1.1,Neuquén,AR-Q,annual,2020,naphtha combustion consumption by freight transport,7.7459459,TJ,CO2,73300.0,kg/TJ,567777.83447,kg +a8a615e1-a561-3d3d-a4d3-4681d1925ff9,SESCO,II.1.1,Neuquén,AR-Q,annual,2020,naphtha combustion consumption by freight transport,7.7459459,TJ,CH4,3.0,kg/TJ,23.2378377,kg +27addad2-d9ff-39c4-8f97-5c0099d75f89,SESCO,II.1.1,Neuquén,AR-Q,annual,2020,naphtha combustion consumption by freight transport,7.7459459,TJ,N2O,0.6,kg/TJ,4.64756754,kg +e7b21129-4f92-3b69-b11e-8cc8c7473d74,SESCO,II.1.1,Rio Negro,AR-R,annual,2020,naphtha combustion consumption by freight transport,14.150074399999998,TJ,CO2,73300.0,kg/TJ,1037200.4535199999,kg +d778be6e-40ea-3241-ba54-d98d5c2bb14f,SESCO,II.1.1,Rio Negro,AR-R,annual,2020,naphtha combustion consumption by freight transport,14.150074399999998,TJ,CH4,3.0,kg/TJ,42.450223199999996,kg +d6c37acc-5f1c-3af1-b933-a44f77e58e28,SESCO,II.1.1,Rio Negro,AR-R,annual,2020,naphtha combustion consumption by freight transport,14.150074399999998,TJ,N2O,0.6,kg/TJ,8.490044639999999,kg +868a5108-41bf-354d-ae18-0bb6d54b9a81,SESCO,II.1.1,Salta,AR-A,annual,2020,naphtha combustion consumption by freight transport,15.369908399999998,TJ,CO2,73300.0,kg/TJ,1126614.2857199998,kg +2a5f1e9b-b474-358a-ac0a-f0515f3b5f4c,SESCO,II.1.1,Salta,AR-A,annual,2020,naphtha combustion consumption by freight transport,15.369908399999998,TJ,CH4,3.0,kg/TJ,46.10972519999999,kg +1b1980c8-ede4-3590-97a0-c2e5653e3a3e,SESCO,II.1.1,Salta,AR-A,annual,2020,naphtha combustion consumption by freight transport,15.369908399999998,TJ,N2O,0.6,kg/TJ,9.221945039999998,kg +87b01f60-d655-3f50-b218-6ec704241711,SESCO,II.1.1,San Juan,AR-J,annual,2020,naphtha combustion consumption by freight transport,3.9034687999999997,TJ,CO2,73300.0,kg/TJ,286124.26304,kg +af064400-3114-3079-b4ff-e4f3c1cefbd6,SESCO,II.1.1,San Juan,AR-J,annual,2020,naphtha combustion consumption by freight transport,3.9034687999999997,TJ,CH4,3.0,kg/TJ,11.7104064,kg +25041ac3-0ab7-3568-934c-7b85299a9ca3,SESCO,II.1.1,San Juan,AR-J,annual,2020,naphtha combustion consumption by freight transport,3.9034687999999997,TJ,N2O,0.6,kg/TJ,2.34208128,kg +184467cb-bc9d-3d3d-9944-4500d5c30f21,SESCO,II.1.1,San Luis,AR-D,annual,2020,naphtha combustion consumption by freight transport,4.17793145,TJ,CO2,73300.0,kg/TJ,306242.375285,kg +3cf83639-3a20-3172-988d-151fec4d61e2,SESCO,II.1.1,San Luis,AR-D,annual,2020,naphtha combustion consumption by freight transport,4.17793145,TJ,CH4,3.0,kg/TJ,12.53379435,kg +9ed0a4b2-cf93-3a46-8ce2-9d7f8f139f51,SESCO,II.1.1,San Luis,AR-D,annual,2020,naphtha combustion consumption by freight transport,4.17793145,TJ,N2O,0.6,kg/TJ,2.50675887,kg +a12dba46-8f2f-3060-8c54-8cd902a2e4d5,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2020,naphtha combustion consumption by freight transport,2.3176845999999998,TJ,CO2,73300.0,kg/TJ,169886.28118,kg +d0c21ca0-59b2-3eba-bd61-feea770919c0,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2020,naphtha combustion consumption by freight transport,2.3176845999999998,TJ,CH4,3.0,kg/TJ,6.953053799999999,kg +f653bea8-af79-3164-bfbf-6c3bd4f448c6,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2020,naphtha combustion consumption by freight transport,2.3176845999999998,TJ,N2O,0.6,kg/TJ,1.3906107599999997,kg +e4245683-86ce-3493-95aa-6a59a7ab50a7,SESCO,II.1.1,Santa Fe,AR-S,annual,2020,naphtha combustion consumption by freight transport,52.757820499999994,TJ,CO2,73300.0,kg/TJ,3867148.2426499994,kg +427f3125-bd60-334b-94e5-73a2af611cda,SESCO,II.1.1,Santa Fe,AR-S,annual,2020,naphtha combustion consumption by freight transport,52.757820499999994,TJ,CH4,3.0,kg/TJ,158.2734615,kg +09305e37-a57c-3fe9-beac-24eff30d0dc6,SESCO,II.1.1,Santa Fe,AR-S,annual,2020,naphtha combustion consumption by freight transport,52.757820499999994,TJ,N2O,0.6,kg/TJ,31.654692299999994,kg +238de9fb-0d6b-318e-9479-3b2a51820f51,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2020,naphtha combustion consumption by freight transport,1.00636305,TJ,CO2,73300.0,kg/TJ,73766.411565,kg +b27ff408-07fd-34c8-b6ea-e4910ba17d2e,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2020,naphtha combustion consumption by freight transport,1.00636305,TJ,CH4,3.0,kg/TJ,3.01908915,kg +75324581-d64c-3ed7-9a30-0716c65100d4,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2020,naphtha combustion consumption by freight transport,1.00636305,TJ,N2O,0.6,kg/TJ,0.60381783,kg +2b9abb9d-b849-31fe-8508-c5e486e0ce33,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2020,naphtha combustion consumption by freight transport,7.8069375999999995,TJ,CO2,73300.0,kg/TJ,572248.52608,kg +b75c4791-42b9-3f5c-ba2f-60e55ea873c0,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2020,naphtha combustion consumption by freight transport,7.8069375999999995,TJ,CH4,3.0,kg/TJ,23.4208128,kg +42885688-a800-3ef6-a343-310294a68432,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2020,naphtha combustion consumption by freight transport,7.8069375999999995,TJ,N2O,0.6,kg/TJ,4.68416256,kg +cccb9821-de2d-36b0-94eb-0c48e153dbc7,SESCO,II.1.1,Tucuman,AR-T,annual,2020,naphtha combustion consumption by freight transport,14.302553649999998,TJ,CO2,73300.0,kg/TJ,1048377.1825449999,kg +879c5c44-f4bc-3875-bcb3-c80be0bb35ff,SESCO,II.1.1,Tucuman,AR-T,annual,2020,naphtha combustion consumption by freight transport,14.302553649999998,TJ,CH4,3.0,kg/TJ,42.90766094999999,kg +ac4e799b-7aef-3179-890b-079d7b9e63ea,SESCO,II.1.1,Tucuman,AR-T,annual,2020,naphtha combustion consumption by freight transport,14.302553649999998,TJ,N2O,0.6,kg/TJ,8.581532189999999,kg +e8b308a3-8121-3573-ae52-1f8cb3bbb460,SESCO,II.1.1,Buenos Aires,AR-B,annual,2020,naphtha combustion consumption by freight transport,178.52270589999998,TJ,CO2,73300.0,kg/TJ,13085714.342469998,kg +ea06e85b-5cfe-37fc-a7f7-dd4e0e6475f0,SESCO,II.1.1,Buenos Aires,AR-B,annual,2020,naphtha combustion consumption by freight transport,178.52270589999998,TJ,CH4,3.0,kg/TJ,535.5681176999999,kg +848ebfb4-22fa-365b-8c1a-0663f7f0885e,SESCO,II.1.1,Buenos Aires,AR-B,annual,2020,naphtha combustion consumption by freight transport,178.52270589999998,TJ,N2O,0.6,kg/TJ,107.11362353999998,kg +55178609-4640-37db-8439-e5465747da79,SESCO,II.1.1,Capital Federal,AR-C,annual,2020,naphtha combustion consumption by freight transport,287.11842774999997,TJ,CO2,73300.0,kg/TJ,21045780.754075,kg +0f5290ae-381a-3926-9b16-b858f0763b7c,SESCO,II.1.1,Capital Federal,AR-C,annual,2020,naphtha combustion consumption by freight transport,287.11842774999997,TJ,CH4,3.0,kg/TJ,861.35528325,kg +23a5f63f-1d09-3fb5-9061-ea5661c5c8d5,SESCO,II.1.1,Capital Federal,AR-C,annual,2020,naphtha combustion consumption by freight transport,287.11842774999997,TJ,N2O,0.6,kg/TJ,172.27105664999996,kg +f3c27198-99af-34ee-bc9d-994181530b83,SESCO,II.1.1,Catamarca,AR-K,annual,2020,naphtha combustion consumption by freight transport,0.12198339999999999,TJ,CO2,73300.0,kg/TJ,8941.38322,kg +62331492-728e-3ac7-9958-550834a9618d,SESCO,II.1.1,Catamarca,AR-K,annual,2020,naphtha combustion consumption by freight transport,0.12198339999999999,TJ,CH4,3.0,kg/TJ,0.3659502,kg +8dbdf802-077e-376c-b0e1-70337edeb309,SESCO,II.1.1,Catamarca,AR-K,annual,2020,naphtha combustion consumption by freight transport,0.12198339999999999,TJ,N2O,0.6,kg/TJ,0.07319004,kg +7224b458-ac73-3a70-9bc3-508f2acb7889,SESCO,II.1.1,Chaco,AR-H,annual,2020,naphtha combustion consumption by freight transport,4.9403277,TJ,CO2,73300.0,kg/TJ,362126.02041,kg +1206429f-8a94-3809-8a75-90271d3563b4,SESCO,II.1.1,Chaco,AR-H,annual,2020,naphtha combustion consumption by freight transport,4.9403277,TJ,CH4,3.0,kg/TJ,14.8209831,kg +89ce9b34-e629-3b73-a832-cfa314eeae65,SESCO,II.1.1,Chaco,AR-H,annual,2020,naphtha combustion consumption by freight transport,4.9403277,TJ,N2O,0.6,kg/TJ,2.96419662,kg +daeb58b6-3f9a-3e3f-8898-7a539b1991e9,SESCO,II.1.1,Chubut,AR-U,annual,2020,naphtha combustion consumption by freight transport,8.0509044,TJ,CO2,73300.0,kg/TJ,590131.29252,kg +3aeaceeb-178e-37c2-8d45-d23dc83e184f,SESCO,II.1.1,Chubut,AR-U,annual,2020,naphtha combustion consumption by freight transport,8.0509044,TJ,CH4,3.0,kg/TJ,24.1527132,kg +cd5fc000-1f3c-34c5-a1ab-1cbd64216e12,SESCO,II.1.1,Chubut,AR-U,annual,2020,naphtha combustion consumption by freight transport,8.0509044,TJ,N2O,0.6,kg/TJ,4.83054264,kg +05448c7b-c274-39ba-966d-14a9a62488d0,SESCO,II.1.1,Corrientes,AR-W,annual,2020,naphtha combustion consumption by freight transport,9.972142949999999,TJ,CO2,73300.0,kg/TJ,730958.0782349999,kg +44889f20-489d-3a54-b34e-0e365d3aab23,SESCO,II.1.1,Corrientes,AR-W,annual,2020,naphtha combustion consumption by freight transport,9.972142949999999,TJ,CH4,3.0,kg/TJ,29.916428849999996,kg +79405b35-4c81-3384-98cd-96775f12c8ef,SESCO,II.1.1,Corrientes,AR-W,annual,2020,naphtha combustion consumption by freight transport,9.972142949999999,TJ,N2O,0.6,kg/TJ,5.983285769999999,kg +cf44b313-e244-30ec-bc73-23348077558d,SESCO,II.1.1,Córdoba,AR-X,annual,2020,naphtha combustion consumption by freight transport,122.1053834,TJ,CO2,73300.0,kg/TJ,8950324.603219999,kg +ba6f4dd3-05c3-3385-9b29-73722ae06416,SESCO,II.1.1,Córdoba,AR-X,annual,2020,naphtha combustion consumption by freight transport,122.1053834,TJ,CH4,3.0,kg/TJ,366.3161502,kg +6c2b71c4-3dd4-32bc-bd25-5baa4830b0e7,SESCO,II.1.1,Córdoba,AR-X,annual,2020,naphtha combustion consumption by freight transport,122.1053834,TJ,N2O,0.6,kg/TJ,73.26323004,kg +3b7b7a45-c59d-3dba-abf6-dc2b9137278d,SESCO,II.1.1,Entre Rios,AR-E,annual,2020,naphtha combustion consumption by freight transport,16.62023825,TJ,CO2,73300.0,kg/TJ,1218263.463725,kg +709ddfc1-395c-31ed-a3c9-03007fa28c2b,SESCO,II.1.1,Entre Rios,AR-E,annual,2020,naphtha combustion consumption by freight transport,16.62023825,TJ,CH4,3.0,kg/TJ,49.86071475,kg +7747376a-2d1c-375e-afa1-41fc1a19db57,SESCO,II.1.1,Entre Rios,AR-E,annual,2020,naphtha combustion consumption by freight transport,16.62023825,TJ,N2O,0.6,kg/TJ,9.97214295,kg +35652f86-846f-3db2-9e11-93933514ad32,SESCO,II.1.1,Formosa,AR-P,annual,2020,naphtha combustion consumption by freight transport,0.36595019999999995,TJ,CO2,73300.0,kg/TJ,26824.149659999995,kg +bf198523-697a-3efe-97ed-aa2bbf0be648,SESCO,II.1.1,Formosa,AR-P,annual,2020,naphtha combustion consumption by freight transport,0.36595019999999995,TJ,CH4,3.0,kg/TJ,1.0978506,kg +ce3cb4e1-1a62-3737-bc79-35e16445b207,SESCO,II.1.1,Formosa,AR-P,annual,2020,naphtha combustion consumption by freight transport,0.36595019999999995,TJ,N2O,0.6,kg/TJ,0.21957011999999995,kg +19d52d87-fc4e-303c-85e1-5de052cf1856,SESCO,II.1.1,Jujuy,AR-Y,annual,2020,naphtha combustion consumption by freight transport,1.6772717499999998,TJ,CO2,73300.0,kg/TJ,122944.01927499998,kg +df47024e-7439-3ea0-8ec9-80b608f351b2,SESCO,II.1.1,Jujuy,AR-Y,annual,2020,naphtha combustion consumption by freight transport,1.6772717499999998,TJ,CH4,3.0,kg/TJ,5.031815249999999,kg +71dd565b-e375-3956-b65c-c3f431bfc4d3,SESCO,II.1.1,Jujuy,AR-Y,annual,2020,naphtha combustion consumption by freight transport,1.6772717499999998,TJ,N2O,0.6,kg/TJ,1.0063630499999998,kg +96fed715-7f76-308e-a94c-632ca2dd7391,SESCO,II.1.1,La Pampa,AR-L,annual,2020,naphtha combustion consumption by freight transport,3.4765268999999996,TJ,CO2,73300.0,kg/TJ,254829.42177,kg +90d97b69-3d61-34f4-bdac-1b8238f39d06,SESCO,II.1.1,La Pampa,AR-L,annual,2020,naphtha combustion consumption by freight transport,3.4765268999999996,TJ,CH4,3.0,kg/TJ,10.429580699999999,kg +e0faeb2b-b2ee-38f1-b9f9-9a4b8f67c3a9,SESCO,II.1.1,La Pampa,AR-L,annual,2020,naphtha combustion consumption by freight transport,3.4765268999999996,TJ,N2O,0.6,kg/TJ,2.0859161399999997,kg +a0b6e437-35e8-3e1a-add4-1c155e68224a,SESCO,II.1.1,La Rioja,AR-F,annual,2020,naphtha combustion consumption by freight transport,2.1042136499999997,TJ,CO2,73300.0,kg/TJ,154238.86054499997,kg +a4d414ce-a269-34b8-97d0-a86226b038e0,SESCO,II.1.1,La Rioja,AR-F,annual,2020,naphtha combustion consumption by freight transport,2.1042136499999997,TJ,CH4,3.0,kg/TJ,6.312640949999999,kg +73897887-68f0-323b-b2b0-245d2720f5c0,SESCO,II.1.1,La Rioja,AR-F,annual,2020,naphtha combustion consumption by freight transport,2.1042136499999997,TJ,N2O,0.6,kg/TJ,1.2625281899999998,kg +679bcfbd-941a-327c-b424-8c3a68cdeda6,SESCO,II.1.1,Mendoza,AR-M,annual,2020,naphtha combustion consumption by freight transport,43.853032299999995,TJ,CO2,73300.0,kg/TJ,3214427.26759,kg +bf49852a-20cd-394d-97b3-b1407b146df1,SESCO,II.1.1,Mendoza,AR-M,annual,2020,naphtha combustion consumption by freight transport,43.853032299999995,TJ,CH4,3.0,kg/TJ,131.5590969,kg +2534548b-ac4e-3038-a333-8c8fe90ff40d,SESCO,II.1.1,Mendoza,AR-M,annual,2020,naphtha combustion consumption by freight transport,43.853032299999995,TJ,N2O,0.6,kg/TJ,26.311819379999996,kg +ff8e1fb2-fdd3-3013-ac5a-8f3a5382bd52,SESCO,II.1.1,Misiones,AR-N,annual,2020,naphtha combustion consumption by freight transport,7.440987399999999,TJ,CO2,73300.0,kg/TJ,545424.37642,kg +e2636cf7-fde1-34aa-82ac-156212babbf1,SESCO,II.1.1,Misiones,AR-N,annual,2020,naphtha combustion consumption by freight transport,7.440987399999999,TJ,CH4,3.0,kg/TJ,22.3229622,kg +7d20e818-17b4-3ef4-9f59-390d233a18d7,SESCO,II.1.1,Misiones,AR-N,annual,2020,naphtha combustion consumption by freight transport,7.440987399999999,TJ,N2O,0.6,kg/TJ,4.46459244,kg +dae77059-8349-3fe7-b0ef-29240610b8f7,SESCO,II.1.1,Neuquén,AR-Q,annual,2020,naphtha combustion consumption by freight transport,22.04849955,TJ,CO2,73300.0,kg/TJ,1616155.0170149999,kg +7db09578-dbdb-3a95-94a4-8b4fdc476442,SESCO,II.1.1,Neuquén,AR-Q,annual,2020,naphtha combustion consumption by freight transport,22.04849955,TJ,CH4,3.0,kg/TJ,66.14549865,kg +2b00ce97-8886-36ad-95b0-52be0e5a1706,SESCO,II.1.1,Neuquén,AR-Q,annual,2020,naphtha combustion consumption by freight transport,22.04849955,TJ,N2O,0.6,kg/TJ,13.22909973,kg +e08beebb-dc1e-36d6-81ee-cb9798f4ceba,SESCO,II.1.1,Rio Negro,AR-R,annual,2020,naphtha combustion consumption by freight transport,42.48071905,TJ,CO2,73300.0,kg/TJ,3113836.706365,kg +d550dc31-61d2-3044-8e42-31a69fa3666f,SESCO,II.1.1,Rio Negro,AR-R,annual,2020,naphtha combustion consumption by freight transport,42.48071905,TJ,CH4,3.0,kg/TJ,127.44215714999999,kg +ace60c8d-7bd9-35fd-8389-179a013fec93,SESCO,II.1.1,Rio Negro,AR-R,annual,2020,naphtha combustion consumption by freight transport,42.48071905,TJ,N2O,0.6,kg/TJ,25.48843143,kg +02f4a262-4a87-3e57-bbae-b94feb885c9d,SESCO,II.1.1,Salta,AR-A,annual,2020,naphtha combustion consumption by freight transport,12.594786049999998,TJ,CO2,73300.0,kg/TJ,923197.8174649999,kg +d81aaec6-703a-34e9-8360-8778dbd8ff8a,SESCO,II.1.1,Salta,AR-A,annual,2020,naphtha combustion consumption by freight transport,12.594786049999998,TJ,CH4,3.0,kg/TJ,37.784358149999996,kg +adc92049-78ec-3aaa-bf02-9a1892f47892,SESCO,II.1.1,Salta,AR-A,annual,2020,naphtha combustion consumption by freight transport,12.594786049999998,TJ,N2O,0.6,kg/TJ,7.556871629999998,kg +dfb46f43-2351-3b54-8b1a-44c823c2e570,SESCO,II.1.1,San Juan,AR-J,annual,2020,naphtha combustion consumption by freight transport,1.5552883499999999,TJ,CO2,73300.0,kg/TJ,114002.636055,kg +4e8b328c-3435-3041-9b14-da98d59f74e4,SESCO,II.1.1,San Juan,AR-J,annual,2020,naphtha combustion consumption by freight transport,1.5552883499999999,TJ,CH4,3.0,kg/TJ,4.66586505,kg +86dfa8be-583c-314f-a94f-9e8c6d019b1e,SESCO,II.1.1,San Juan,AR-J,annual,2020,naphtha combustion consumption by freight transport,1.5552883499999999,TJ,N2O,0.6,kg/TJ,0.9331730099999999,kg +b85473e8-931c-38ca-830e-9e9889e4305c,SESCO,II.1.1,San Luis,AR-D,annual,2020,naphtha combustion consumption by freight transport,3.7814853999999998,TJ,CO2,73300.0,kg/TJ,277182.87982,kg +220bd8fc-f758-3f92-9af8-1b4d78734435,SESCO,II.1.1,San Luis,AR-D,annual,2020,naphtha combustion consumption by freight transport,3.7814853999999998,TJ,CH4,3.0,kg/TJ,11.3444562,kg +2970e219-4d8d-3ec3-8ae2-4bb8fc9c0672,SESCO,II.1.1,San Luis,AR-D,annual,2020,naphtha combustion consumption by freight transport,3.7814853999999998,TJ,N2O,0.6,kg/TJ,2.26889124,kg +06dd44de-d50c-336d-a43e-2a2600f546ea,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2020,naphtha combustion consumption by freight transport,1.7687592999999997,TJ,CO2,73300.0,kg/TJ,129650.05668999998,kg +8b464c62-d390-30d6-a29e-1b6ad43e8431,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2020,naphtha combustion consumption by freight transport,1.7687592999999997,TJ,CH4,3.0,kg/TJ,5.3062778999999995,kg +deb4a892-7b9a-3dcb-ba8e-68b0bb36b1ac,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2020,naphtha combustion consumption by freight transport,1.7687592999999997,TJ,N2O,0.6,kg/TJ,1.0612555799999999,kg +7b33f8f0-4e26-3687-b3b2-35a9a81e8fe6,SESCO,II.1.1,Santa Fe,AR-S,annual,2020,naphtha combustion consumption by freight transport,58.03360255,TJ,CO2,73300.0,kg/TJ,4253863.066915,kg +2fc94b4d-8845-3d88-b291-195f3347ca29,SESCO,II.1.1,Santa Fe,AR-S,annual,2020,naphtha combustion consumption by freight transport,58.03360255,TJ,CH4,3.0,kg/TJ,174.10080764999998,kg +007677f8-e023-3ff9-94f7-1d824ec2af27,SESCO,II.1.1,Santa Fe,AR-S,annual,2020,naphtha combustion consumption by freight transport,58.03360255,TJ,N2O,0.6,kg/TJ,34.82016153,kg +93be1cbb-a12b-349e-aad6-2e4703172587,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2020,naphtha combustion consumption by freight transport,1.3418173999999998,TJ,CO2,73300.0,kg/TJ,98355.21542,kg +d099d949-ad67-3c84-87bc-3a70ccbd3684,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2020,naphtha combustion consumption by freight transport,1.3418173999999998,TJ,CH4,3.0,kg/TJ,4.025452199999999,kg +a2fa54c4-8ece-3389-a4f2-3d65438b06fd,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2020,naphtha combustion consumption by freight transport,1.3418173999999998,TJ,N2O,0.6,kg/TJ,0.8050904399999999,kg +28f3a6ed-605f-31d9-9d8d-cd5da686c6d6,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2020,naphtha combustion consumption by freight transport,2.3176845999999998,TJ,CO2,73300.0,kg/TJ,169886.28118,kg +1a6839c7-676c-3a1a-bbb5-8510a2af1c46,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2020,naphtha combustion consumption by freight transport,2.3176845999999998,TJ,CH4,3.0,kg/TJ,6.953053799999999,kg +d8b97ff6-6dfc-320a-95b4-c1537dc7a149,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2020,naphtha combustion consumption by freight transport,2.3176845999999998,TJ,N2O,0.6,kg/TJ,1.3906107599999997,kg +51a4888f-2cac-3205-bd98-258b028973bb,SESCO,II.1.1,Tucuman,AR-T,annual,2020,naphtha combustion consumption by freight transport,6.038178299999999,TJ,CO2,73300.0,kg/TJ,442598.4693899999,kg +86d4164c-80fc-3f18-8ed7-10e5dfe5fb23,SESCO,II.1.1,Tucuman,AR-T,annual,2020,naphtha combustion consumption by freight transport,6.038178299999999,TJ,CH4,3.0,kg/TJ,18.1145349,kg +efb76a2e-cff8-351a-924f-c773578031b1,SESCO,II.1.1,Tucuman,AR-T,annual,2020,naphtha combustion consumption by freight transport,6.038178299999999,TJ,N2O,0.6,kg/TJ,3.6229069799999993,kg +8c5608f2-e388-321a-af1a-d83eb1a923fb,SESCO,II.5.1,Buenos Aires,AR-B,annual,2021,naphtha combustion consumption by agriculture machines,7.049215096,TJ,CO2,73300.0,kg/TJ,516707.4665368,kg +8d7a7555-8fb3-3eb9-82c3-04d79f465ecb,SESCO,II.5.1,Buenos Aires,AR-B,annual,2021,naphtha combustion consumption by agriculture machines,7.049215096,TJ,CH4,3.0,kg/TJ,21.147645288,kg +4127d9a4-6f5e-390d-9539-204d61c1ea36,SESCO,II.5.1,Buenos Aires,AR-B,annual,2021,naphtha combustion consumption by agriculture machines,7.049215096,TJ,N2O,0.6,kg/TJ,4.2295290576,kg +59a64c9c-d550-3d66-84df-b0c3f35e5987,SESCO,II.5.1,Córdoba,AR-X,annual,2021,naphtha combustion consumption by agriculture machines,2.0504176,TJ,CO2,73300.0,kg/TJ,150295.61007999998,kg +f2269e2f-5d51-3789-b382-985e5b2746d2,SESCO,II.5.1,Córdoba,AR-X,annual,2021,naphtha combustion consumption by agriculture machines,2.0504176,TJ,CH4,3.0,kg/TJ,6.1512528,kg +0b452abe-a6f9-317e-b879-de4a95887411,SESCO,II.5.1,Córdoba,AR-X,annual,2021,naphtha combustion consumption by agriculture machines,2.0504176,TJ,N2O,0.6,kg/TJ,1.2302505599999998,kg +d9018b53-9a4b-334b-a9be-4b51e4da6f9a,SESCO,II.5.1,Santa Fe,AR-S,annual,2021,naphtha combustion consumption by agriculture machines,6.060793199999999,TJ,CO2,73300.0,kg/TJ,444256.14155999996,kg +99e095d9-f9ea-3ea8-b8d4-d28a436cb494,SESCO,II.5.1,Santa Fe,AR-S,annual,2021,naphtha combustion consumption by agriculture machines,6.060793199999999,TJ,CH4,3.0,kg/TJ,18.182379599999997,kg +d4f2c6bc-c59f-359e-9e26-6cddd94face2,SESCO,II.5.1,Santa Fe,AR-S,annual,2021,naphtha combustion consumption by agriculture machines,6.060793199999999,TJ,N2O,0.6,kg/TJ,3.636475919999999,kg +8f257b3d-4306-31fe-910f-8851c2bf1812,SESCO,II.5.1,Buenos Aires,AR-B,annual,2021,naphtha combustion consumption by agriculture machines,1.2362811999999999,TJ,CO2,73300.0,kg/TJ,90619.41195999998,kg +d2e71b8b-787a-3aba-90f9-b3a21fd90040,SESCO,II.5.1,Buenos Aires,AR-B,annual,2021,naphtha combustion consumption by agriculture machines,1.2362811999999999,TJ,CH4,3.0,kg/TJ,3.7088436,kg +7b6d17ba-3426-3772-b407-80ad99236a1f,SESCO,II.5.1,Buenos Aires,AR-B,annual,2021,naphtha combustion consumption by agriculture machines,1.2362811999999999,TJ,N2O,0.6,kg/TJ,0.7417687199999999,kg +2acb84ab-2c12-309f-bb28-864f58c16285,SESCO,II.5.1,Córdoba,AR-X,annual,2021,naphtha combustion consumption by agriculture machines,0.5126044,TJ,CO2,73300.0,kg/TJ,37573.902519999996,kg +854671e7-24fe-3878-a133-a56e7dc0317f,SESCO,II.5.1,Córdoba,AR-X,annual,2021,naphtha combustion consumption by agriculture machines,0.5126044,TJ,CH4,3.0,kg/TJ,1.5378132,kg +3ea6e18e-0b34-33c8-9496-d0e104dcee07,SESCO,II.5.1,Córdoba,AR-X,annual,2021,naphtha combustion consumption by agriculture machines,0.5126044,TJ,N2O,0.6,kg/TJ,0.30756263999999994,kg +d204aa6f-cad1-3cea-bd34-c4f6ede32b9b,SESCO,II.1.1,Buenos Aires,AR-B,annual,2021,naphtha combustion consumption by to the public,880.4432867999999,TJ,CO2,73300.0,kg/TJ,64536492.92243999,kg +657c57c7-9e1a-380f-92e2-403af3fc7424,SESCO,II.1.1,Buenos Aires,AR-B,annual,2021,naphtha combustion consumption by to the public,880.4432867999999,TJ,CH4,3.0,kg/TJ,2641.3298603999997,kg +7d60ed69-cd36-3040-a352-1a5e29b5a2bb,SESCO,II.1.1,Buenos Aires,AR-B,annual,2021,naphtha combustion consumption by to the public,880.4432867999999,TJ,N2O,0.6,kg/TJ,528.2659720799999,kg +f57889d6-d621-3855-9a4f-dfa40d702936,SESCO,II.1.1,Capital Federal,AR-C,annual,2021,naphtha combustion consumption by to the public,50.68752919999999,TJ,CO2,73300.0,kg/TJ,3715395.8903599996,kg +5194df95-e42d-3b5c-afc7-9af6f9898137,SESCO,II.1.1,Capital Federal,AR-C,annual,2021,naphtha combustion consumption by to the public,50.68752919999999,TJ,CH4,3.0,kg/TJ,152.06258759999997,kg +9f1b2b7a-f40a-3a27-963a-2a0a2be8adef,SESCO,II.1.1,Capital Federal,AR-C,annual,2021,naphtha combustion consumption by to the public,50.68752919999999,TJ,N2O,0.6,kg/TJ,30.412517519999994,kg +37e9f85b-c3f9-375d-a768-be7974e41b92,SESCO,II.1.1,Catamarca,AR-K,annual,2021,naphtha combustion consumption by to the public,32.113158,TJ,CO2,73300.0,kg/TJ,2353894.4814,kg +a7aed0e2-f83a-306d-8774-783384dad0b4,SESCO,II.1.1,Catamarca,AR-K,annual,2021,naphtha combustion consumption by to the public,32.113158,TJ,CH4,3.0,kg/TJ,96.339474,kg +ce61a255-98f8-331b-93b9-c0c46410b52f,SESCO,II.1.1,Catamarca,AR-K,annual,2021,naphtha combustion consumption by to the public,32.113158,TJ,N2O,0.6,kg/TJ,19.267894799999997,kg +77f365a7-2d3a-3d07-b594-95638af9745c,SESCO,II.1.1,Chaco,AR-H,annual,2021,naphtha combustion consumption by to the public,8.8348876,TJ,CO2,73300.0,kg/TJ,647597.26108,kg +62cb2c3d-b649-3d5d-be9d-608d5e1b0cc5,SESCO,II.1.1,Chaco,AR-H,annual,2021,naphtha combustion consumption by to the public,8.8348876,TJ,CH4,3.0,kg/TJ,26.5046628,kg +983fad4d-272f-3c76-ab08-0b9c4d24bbc4,SESCO,II.1.1,Chaco,AR-H,annual,2021,naphtha combustion consumption by to the public,8.8348876,TJ,N2O,0.6,kg/TJ,5.30093256,kg +7f398c0b-830c-356f-a615-bb9fa9f913ab,SESCO,II.1.1,Corrientes,AR-W,annual,2021,naphtha combustion consumption by to the public,13.1467952,TJ,CO2,73300.0,kg/TJ,963660.0881599999,kg +ed926b82-40dd-324e-9be3-db919b38f3cb,SESCO,II.1.1,Corrientes,AR-W,annual,2021,naphtha combustion consumption by to the public,13.1467952,TJ,CH4,3.0,kg/TJ,39.4403856,kg +00dbc171-8320-32bb-b3e4-3c3f79af0e1e,SESCO,II.1.1,Corrientes,AR-W,annual,2021,naphtha combustion consumption by to the public,13.1467952,TJ,N2O,0.6,kg/TJ,7.888077119999999,kg +e52867a6-93ac-372e-8cf5-f564a29977be,SESCO,II.1.1,Córdoba,AR-X,annual,2021,naphtha combustion consumption by to the public,416.38553879999995,TJ,CO2,73300.0,kg/TJ,30521059.994039997,kg +a78f8cdd-82dc-3226-b754-d721bcf9aaaf,SESCO,II.1.1,Córdoba,AR-X,annual,2021,naphtha combustion consumption by to the public,416.38553879999995,TJ,CH4,3.0,kg/TJ,1249.1566163999998,kg +4f381943-2748-3e76-9fb4-00d302cfbc7d,SESCO,II.1.1,Córdoba,AR-X,annual,2021,naphtha combustion consumption by to the public,416.38553879999995,TJ,N2O,0.6,kg/TJ,249.83132327999996,kg +c3089c10-c754-3ef7-830c-b351c0ecd5ac,SESCO,II.1.1,Entre Rios,AR-E,annual,2021,naphtha combustion consumption by to the public,113.79817679999998,TJ,CO2,73300.0,kg/TJ,8341406.359439999,kg +55a74aea-60a5-3f4b-b3f1-e84db6c05ce8,SESCO,II.1.1,Entre Rios,AR-E,annual,2021,naphtha combustion consumption by to the public,113.79817679999998,TJ,CH4,3.0,kg/TJ,341.39453039999995,kg +17b3e5ab-19cc-3411-844b-d23874676fc5,SESCO,II.1.1,Entre Rios,AR-E,annual,2021,naphtha combustion consumption by to the public,113.79817679999998,TJ,N2O,0.6,kg/TJ,68.27890607999998,kg +1a02c96c-85e7-33a5-a64e-d16a465d2a7a,SESCO,II.1.1,Mendoza,AR-M,annual,2021,naphtha combustion consumption by to the public,268.212714,TJ,CO2,73300.0,kg/TJ,19659991.9362,kg +77c5b9fa-6728-3bea-ae2d-bc753c746f02,SESCO,II.1.1,Mendoza,AR-M,annual,2021,naphtha combustion consumption by to the public,268.212714,TJ,CH4,3.0,kg/TJ,804.638142,kg +2017317c-7a2a-3e96-b971-f2cfd2ec824e,SESCO,II.1.1,Mendoza,AR-M,annual,2021,naphtha combustion consumption by to the public,268.212714,TJ,N2O,0.6,kg/TJ,160.9276284,kg +61e74217-25fc-3024-a477-e19bdd285131,SESCO,II.1.1,San Juan,AR-J,annual,2021,naphtha combustion consumption by to the public,3.4374647999999994,TJ,CO2,73300.0,kg/TJ,251966.16983999996,kg +65589e84-d39e-35a5-9118-02db8855c3f7,SESCO,II.1.1,San Juan,AR-J,annual,2021,naphtha combustion consumption by to the public,3.4374647999999994,TJ,CH4,3.0,kg/TJ,10.312394399999999,kg +d087aa00-5ea7-3587-a94f-45fc49d5f7d1,SESCO,II.1.1,San Juan,AR-J,annual,2021,naphtha combustion consumption by to the public,3.4374647999999994,TJ,N2O,0.6,kg/TJ,2.0624788799999996,kg +4ef820bc-4b3f-3b3f-88c9-b652bbfc3941,SESCO,II.1.1,San Luis,AR-D,annual,2021,naphtha combustion consumption by to the public,49.149716,TJ,CO2,73300.0,kg/TJ,3602674.1828,kg +2f6b0a6f-b699-3b2d-ac0f-60044db4918a,SESCO,II.1.1,San Luis,AR-D,annual,2021,naphtha combustion consumption by to the public,49.149716,TJ,CH4,3.0,kg/TJ,147.44914799999998,kg +d1ddfec6-b2e9-3592-be1f-7e79bb1df24a,SESCO,II.1.1,San Luis,AR-D,annual,2021,naphtha combustion consumption by to the public,49.149716,TJ,N2O,0.6,kg/TJ,29.489829599999997,kg +e17773ba-b3df-3732-86f9-d7e8db18cc9e,SESCO,II.1.1,Santa Fe,AR-S,annual,2021,naphtha combustion consumption by to the public,308.4973892,TJ,CO2,73300.0,kg/TJ,22612858.62836,kg +30734f78-69d4-3615-9b7b-bf9b4d629dbb,SESCO,II.1.1,Santa Fe,AR-S,annual,2021,naphtha combustion consumption by to the public,308.4973892,TJ,CH4,3.0,kg/TJ,925.4921675999999,kg +8e84c097-099b-328b-890f-30e4226ace0b,SESCO,II.1.1,Santa Fe,AR-S,annual,2021,naphtha combustion consumption by to the public,308.4973892,TJ,N2O,0.6,kg/TJ,185.09843352,kg +81347847-40d1-3f50-aa4a-bb294c5c419b,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2021,naphtha combustion consumption by to the public,48.84818399999999,TJ,CO2,73300.0,kg/TJ,3580571.8871999993,kg +9db05bd0-3ea0-3f0b-9dc1-f497baa7c2ab,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2021,naphtha combustion consumption by to the public,48.84818399999999,TJ,CH4,3.0,kg/TJ,146.54455199999995,kg +b35b02af-515a-3f5f-80ae-bf5518786d04,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2021,naphtha combustion consumption by to the public,48.84818399999999,TJ,N2O,0.6,kg/TJ,29.30891039999999,kg +b2499552-3044-304a-8ea9-b7784d5de6a4,SESCO,II.1.1,Tucuman,AR-T,annual,2021,naphtha combustion consumption by to the public,26.2634372,TJ,CO2,73300.0,kg/TJ,1925109.94676,kg +1cd3683a-a897-3775-8dec-141167e91442,SESCO,II.1.1,Tucuman,AR-T,annual,2021,naphtha combustion consumption by to the public,26.2634372,TJ,CH4,3.0,kg/TJ,78.7903116,kg +2c85ca18-5c8b-3c28-b8ce-00bdb29865eb,SESCO,II.1.1,Tucuman,AR-T,annual,2021,naphtha combustion consumption by to the public,26.2634372,TJ,N2O,0.6,kg/TJ,15.758062319999999,kg +66d61a53-c5c4-3875-9bce-db5191a3f095,SESCO,II.1.1,Buenos Aires,AR-B,annual,2021,naphtha combustion consumption by to the public,62.62819639999999,TJ,CO2,73300.0,kg/TJ,4590646.796119999,kg +e487b21f-e64d-3b23-bcad-210afa120351,SESCO,II.1.1,Buenos Aires,AR-B,annual,2021,naphtha combustion consumption by to the public,62.62819639999999,TJ,CH4,3.0,kg/TJ,187.8845892,kg +c924df42-59e9-3658-9c4d-fba3512c3f62,SESCO,II.1.1,Buenos Aires,AR-B,annual,2021,naphtha combustion consumption by to the public,62.62819639999999,TJ,N2O,0.6,kg/TJ,37.57691783999999,kg +6156b30b-97bf-3c3e-a07c-cb5301207d77,SESCO,II.1.1,Capital Federal,AR-C,annual,2021,naphtha combustion consumption by to the public,8.2619768,TJ,CO2,73300.0,kg/TJ,605602.89944,kg +7e2bf6c6-a139-3d97-b1c0-e4c6a0b3d2a3,SESCO,II.1.1,Capital Federal,AR-C,annual,2021,naphtha combustion consumption by to the public,8.2619768,TJ,CH4,3.0,kg/TJ,24.785930399999998,kg +921dbca4-dce7-3e2b-af76-96839efef2a1,SESCO,II.1.1,Capital Federal,AR-C,annual,2021,naphtha combustion consumption by to the public,8.2619768,TJ,N2O,0.6,kg/TJ,4.95718608,kg +51943e8d-a7ec-3c27-af4a-699ced4d6c2a,SESCO,II.1.1,Catamarca,AR-K,annual,2021,naphtha combustion consumption by to the public,3.6485372,TJ,CO2,73300.0,kg/TJ,267437.77676,kg +51e39c8d-96aa-3685-ac21-cbb813999c1f,SESCO,II.1.1,Catamarca,AR-K,annual,2021,naphtha combustion consumption by to the public,3.6485372,TJ,CH4,3.0,kg/TJ,10.9456116,kg +f1ff4091-933c-357c-ad17-3dd14162d5bf,SESCO,II.1.1,Catamarca,AR-K,annual,2021,naphtha combustion consumption by to the public,3.6485372,TJ,N2O,0.6,kg/TJ,2.1891223199999996,kg +81ffde43-2de9-3c01-a73f-2d7111b16ace,SESCO,II.1.1,Chaco,AR-H,annual,2021,naphtha combustion consumption by to the public,0.2110724,TJ,CO2,73300.0,kg/TJ,15471.60692,kg +63ace205-1b62-3407-9486-00efb297f2b7,SESCO,II.1.1,Chaco,AR-H,annual,2021,naphtha combustion consumption by to the public,0.2110724,TJ,CH4,3.0,kg/TJ,0.6332172,kg +5cdf9609-b9ea-36e9-9bda-9ea02a43b6e2,SESCO,II.1.1,Chaco,AR-H,annual,2021,naphtha combustion consumption by to the public,0.2110724,TJ,N2O,0.6,kg/TJ,0.12664344,kg +b8312bcc-fb65-32bf-90c5-27c4e8b660e9,SESCO,II.1.1,Corrientes,AR-W,annual,2021,naphtha combustion consumption by to the public,0.4221448,TJ,CO2,73300.0,kg/TJ,30943.21384,kg +f1e48d8d-e75c-3f3f-9dc8-1b7d161f48a6,SESCO,II.1.1,Corrientes,AR-W,annual,2021,naphtha combustion consumption by to the public,0.4221448,TJ,CH4,3.0,kg/TJ,1.2664344,kg +266056e2-6a4e-3315-9516-53eda4077a7b,SESCO,II.1.1,Corrientes,AR-W,annual,2021,naphtha combustion consumption by to the public,0.4221448,TJ,N2O,0.6,kg/TJ,0.25328688,kg +b4cf50f7-2ba1-3d6e-b453-a36fed315eeb,SESCO,II.1.1,Córdoba,AR-X,annual,2021,naphtha combustion consumption by to the public,42.06371399999999,TJ,CO2,73300.0,kg/TJ,3083270.236199999,kg +9e66cf3f-e1fe-3955-9f5d-9e2057f9bfa5,SESCO,II.1.1,Córdoba,AR-X,annual,2021,naphtha combustion consumption by to the public,42.06371399999999,TJ,CH4,3.0,kg/TJ,126.19114199999997,kg +6c8142bf-3d91-3466-af05-c229fea23d72,SESCO,II.1.1,Córdoba,AR-X,annual,2021,naphtha combustion consumption by to the public,42.06371399999999,TJ,N2O,0.6,kg/TJ,25.238228399999993,kg +ac6147c9-94e8-36da-8ba5-2a11da6e6d4e,SESCO,II.1.1,Entre Rios,AR-E,annual,2021,naphtha combustion consumption by to the public,9.106266399999999,TJ,CO2,73300.0,kg/TJ,667489.3271199999,kg +2e0f6daa-082e-3949-907f-f84e61cb02b8,SESCO,II.1.1,Entre Rios,AR-E,annual,2021,naphtha combustion consumption by to the public,9.106266399999999,TJ,CH4,3.0,kg/TJ,27.318799199999997,kg +8fe22364-72f9-3209-8c83-249168d4b1b6,SESCO,II.1.1,Entre Rios,AR-E,annual,2021,naphtha combustion consumption by to the public,9.106266399999999,TJ,N2O,0.6,kg/TJ,5.463759839999999,kg +6be8b22e-4d14-386c-ad66-eb192fc60ded,SESCO,II.1.1,Mendoza,AR-M,annual,2021,naphtha combustion consumption by to the public,39.8926836,TJ,CO2,73300.0,kg/TJ,2924133.7078799997,kg +88320b25-1834-3430-9911-7fabeea972fe,SESCO,II.1.1,Mendoza,AR-M,annual,2021,naphtha combustion consumption by to the public,39.8926836,TJ,CH4,3.0,kg/TJ,119.6780508,kg +f392dc67-019b-3684-8487-326fdb976af0,SESCO,II.1.1,Mendoza,AR-M,annual,2021,naphtha combustion consumption by to the public,39.8926836,TJ,N2O,0.6,kg/TJ,23.93561016,kg +15969dfb-7e95-378a-8699-bfc0ff3d016d,SESCO,II.1.1,San Juan,AR-J,annual,2021,naphtha combustion consumption by to the public,0.301532,TJ,CO2,73300.0,kg/TJ,22102.2956,kg +5ea99195-4f46-3ecf-8cb0-784f00492791,SESCO,II.1.1,San Juan,AR-J,annual,2021,naphtha combustion consumption by to the public,0.301532,TJ,CH4,3.0,kg/TJ,0.9045960000000001,kg +91581bf9-095e-3107-92b9-67289d566bcb,SESCO,II.1.1,San Juan,AR-J,annual,2021,naphtha combustion consumption by to the public,0.301532,TJ,N2O,0.6,kg/TJ,0.1809192,kg +ad507515-952c-376c-a09a-3ef6910a0093,SESCO,II.1.1,San Luis,AR-D,annual,2021,naphtha combustion consumption by to the public,1.8091919999999997,TJ,CO2,73300.0,kg/TJ,132613.7736,kg +76d6b3dc-957b-3a81-9c7d-6f633628533c,SESCO,II.1.1,San Luis,AR-D,annual,2021,naphtha combustion consumption by to the public,1.8091919999999997,TJ,CH4,3.0,kg/TJ,5.427575999999999,kg +8327d6c5-fc0c-346e-a7f2-3ca7e5bd303b,SESCO,II.1.1,San Luis,AR-D,annual,2021,naphtha combustion consumption by to the public,1.8091919999999997,TJ,N2O,0.6,kg/TJ,1.0855151999999997,kg +ee117ffa-c122-3515-8ee3-07aab0b01782,SESCO,II.1.1,Santa Fe,AR-S,annual,2021,naphtha combustion consumption by to the public,40.7369732,TJ,CO2,73300.0,kg/TJ,2986020.1355600003,kg +d9961a5f-4f3f-38d3-ba45-0e3e3200f640,SESCO,II.1.1,Santa Fe,AR-S,annual,2021,naphtha combustion consumption by to the public,40.7369732,TJ,CH4,3.0,kg/TJ,122.21091960000001,kg +8c0c8117-d65b-39d5-9c40-62e1bda82886,SESCO,II.1.1,Santa Fe,AR-S,annual,2021,naphtha combustion consumption by to the public,40.7369732,TJ,N2O,0.6,kg/TJ,24.44218392,kg +8b149434-15a8-3f3c-a2e7-457474ad1c2d,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2021,naphtha combustion consumption by to the public,5.910027199999999,TJ,CO2,73300.0,kg/TJ,433204.9937599999,kg +464667af-ec23-35d1-ab8b-ca4408533dbf,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2021,naphtha combustion consumption by to the public,5.910027199999999,TJ,CH4,3.0,kg/TJ,17.7300816,kg +fbc6bcf1-cb9a-3406-9ec7-f82457e0554f,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2021,naphtha combustion consumption by to the public,5.910027199999999,TJ,N2O,0.6,kg/TJ,3.5460163199999992,kg +81974d3a-b1b8-38e6-a70b-6d47abc655cf,SESCO,II.1.1,Tucuman,AR-T,annual,2021,naphtha combustion consumption by to the public,0.1809192,TJ,CO2,73300.0,kg/TJ,13261.37736,kg +40350207-30e9-3304-afa0-3897d73eb20a,SESCO,II.1.1,Tucuman,AR-T,annual,2021,naphtha combustion consumption by to the public,0.1809192,TJ,CH4,3.0,kg/TJ,0.5427576000000001,kg +775bbfe6-5bff-3905-b959-c2f6865d929a,SESCO,II.1.1,Tucuman,AR-T,annual,2021,naphtha combustion consumption by to the public,0.1809192,TJ,N2O,0.6,kg/TJ,0.10855152,kg +68ce5347-66da-3090-82ad-908b94d0220f,SESCO,II.5.1,Córdoba,AR-X,annual,2021,naphtha combustion consumption by agriculture machines,5.457729199999999,TJ,CO2,73300.0,kg/TJ,400051.55035999994,kg +e4b9e9bc-3584-3406-af85-78cf63b96e4f,SESCO,II.5.1,Córdoba,AR-X,annual,2021,naphtha combustion consumption by agriculture machines,5.457729199999999,TJ,CH4,3.0,kg/TJ,16.373187599999998,kg +02cd9202-81ff-3d0a-923a-5177fa0071f6,SESCO,II.5.1,Córdoba,AR-X,annual,2021,naphtha combustion consumption by agriculture machines,5.457729199999999,TJ,N2O,0.6,kg/TJ,3.2746375199999993,kg +e5212eba-158d-3d90-8f77-615cb4ebc819,SESCO,II.5.1,Mendoza,AR-M,annual,2021,naphtha combustion consumption by agriculture machines,1.4473536,TJ,CO2,73300.0,kg/TJ,106091.01888,kg +c6023b3c-cd75-318a-b198-3ef42d17c091,SESCO,II.5.1,Mendoza,AR-M,annual,2021,naphtha combustion consumption by agriculture machines,1.4473536,TJ,CH4,3.0,kg/TJ,4.3420608000000005,kg +9d87fd40-1788-39ca-bfd9-d15272d35178,SESCO,II.5.1,Mendoza,AR-M,annual,2021,naphtha combustion consumption by agriculture machines,1.4473536,TJ,N2O,0.6,kg/TJ,0.86841216,kg +f1ec03e2-0485-3ca2-b7c9-b51ae5233774,SESCO,II.5.1,Salta,AR-A,annual,2021,naphtha combustion consumption by agriculture machines,0.3618384,TJ,CO2,73300.0,kg/TJ,26522.75472,kg +68fe5cc1-58d1-3027-9df9-eb5e9a88c3e5,SESCO,II.5.1,Salta,AR-A,annual,2021,naphtha combustion consumption by agriculture machines,0.3618384,TJ,CH4,3.0,kg/TJ,1.0855152000000001,kg +eb85b14e-efe1-301a-95cd-f6d71dca6aad,SESCO,II.5.1,Salta,AR-A,annual,2021,naphtha combustion consumption by agriculture machines,0.3618384,TJ,N2O,0.6,kg/TJ,0.21710304,kg +d4a72167-5b68-3814-8c36-b5c5463d9f43,SESCO,II.5.1,Córdoba,AR-X,annual,2021,naphtha combustion consumption by agriculture machines,0.48245119999999997,TJ,CO2,73300.0,kg/TJ,35363.672959999996,kg +013b6ab2-06c3-33a3-9fd2-17a769ab6d6f,SESCO,II.5.1,Córdoba,AR-X,annual,2021,naphtha combustion consumption by agriculture machines,0.48245119999999997,TJ,CH4,3.0,kg/TJ,1.4473536,kg +3558e7e6-39b0-3c30-9a26-49bce4beb842,SESCO,II.5.1,Córdoba,AR-X,annual,2021,naphtha combustion consumption by agriculture machines,0.48245119999999997,TJ,N2O,0.6,kg/TJ,0.28947071999999996,kg +fe6b4463-0f22-341b-b460-8535deab3ee6,SESCO,II.1.1,Buenos Aires,AR-B,annual,2021,naphtha combustion consumption by to the public,885.0868795999999,TJ,CO2,73300.0,kg/TJ,64876868.27467999,kg +8bc105d2-4d3b-3775-b64e-84efba38e586,SESCO,II.1.1,Buenos Aires,AR-B,annual,2021,naphtha combustion consumption by to the public,885.0868795999999,TJ,CH4,3.0,kg/TJ,2655.2606387999995,kg +24941744-a271-3c24-971f-023f1f4cd915,SESCO,II.1.1,Buenos Aires,AR-B,annual,2021,naphtha combustion consumption by to the public,885.0868795999999,TJ,N2O,0.6,kg/TJ,531.0521277599998,kg +f5f1e53d-0e83-3763-a5d3-e72779bcd8f3,SESCO,II.1.1,Capital Federal,AR-C,annual,2021,naphtha combustion consumption by to the public,151.30875759999998,TJ,CO2,73300.0,kg/TJ,11090931.932079999,kg +5cf2c1bd-c88c-37d4-9817-a286a4d592bf,SESCO,II.1.1,Capital Federal,AR-C,annual,2021,naphtha combustion consumption by to the public,151.30875759999998,TJ,CH4,3.0,kg/TJ,453.92627279999994,kg +57ab497c-0cb9-311b-a1c2-5a95aee89820,SESCO,II.1.1,Capital Federal,AR-C,annual,2021,naphtha combustion consumption by to the public,151.30875759999998,TJ,N2O,0.6,kg/TJ,90.78525455999998,kg +c6e6ea45-ad58-37e4-bebb-f48191a28072,SESCO,II.1.1,Catamarca,AR-K,annual,2021,naphtha combustion consumption by to the public,73.3627356,TJ,CO2,73300.0,kg/TJ,5377488.519479999,kg +7f0639c3-447e-3f3b-a51f-775f7172ade2,SESCO,II.1.1,Catamarca,AR-K,annual,2021,naphtha combustion consumption by to the public,73.3627356,TJ,CH4,3.0,kg/TJ,220.08820679999997,kg +3996580b-3a9e-38cf-b1b7-3ff4e8dd8ab7,SESCO,II.1.1,Catamarca,AR-K,annual,2021,naphtha combustion consumption by to the public,73.3627356,TJ,N2O,0.6,kg/TJ,44.01764135999999,kg +59fe52f1-4522-36a7-9c64-417abfaebc99,SESCO,II.1.1,Chaco,AR-H,annual,2021,naphtha combustion consumption by to the public,169.79266919999998,TJ,CO2,73300.0,kg/TJ,12445802.652359998,kg +968e7d8c-8430-39ae-84ba-b981f8280322,SESCO,II.1.1,Chaco,AR-H,annual,2021,naphtha combustion consumption by to the public,169.79266919999998,TJ,CH4,3.0,kg/TJ,509.37800759999993,kg +520b5521-6991-3f94-877e-3eb9f558adda,SESCO,II.1.1,Chaco,AR-H,annual,2021,naphtha combustion consumption by to the public,169.79266919999998,TJ,N2O,0.6,kg/TJ,101.87560151999999,kg +d0ebc010-8cd0-3708-b998-ebd0b7654d75,SESCO,II.1.1,Corrientes,AR-W,annual,2021,naphtha combustion consumption by to the public,153.32902199999998,TJ,CO2,73300.0,kg/TJ,11239017.312599998,kg +9c6dc5a1-a52e-306b-b17e-f0d303d0c856,SESCO,II.1.1,Corrientes,AR-W,annual,2021,naphtha combustion consumption by to the public,153.32902199999998,TJ,CH4,3.0,kg/TJ,459.9870659999999,kg +f3b27dfb-5072-3823-8d34-dd659203386a,SESCO,II.1.1,Corrientes,AR-W,annual,2021,naphtha combustion consumption by to the public,153.32902199999998,TJ,N2O,0.6,kg/TJ,91.99741319999998,kg +3019bb1b-aadb-389e-8315-f86ae6cc6f60,SESCO,II.1.1,Córdoba,AR-X,annual,2021,naphtha combustion consumption by to the public,378.48296639999995,TJ,CO2,73300.0,kg/TJ,27742801.437119998,kg +100c82d6-2d97-37b6-ae11-af5a08538657,SESCO,II.1.1,Córdoba,AR-X,annual,2021,naphtha combustion consumption by to the public,378.48296639999995,TJ,CH4,3.0,kg/TJ,1135.4488992,kg +787930bf-807e-3b04-955b-a15425ff0b89,SESCO,II.1.1,Córdoba,AR-X,annual,2021,naphtha combustion consumption by to the public,378.48296639999995,TJ,N2O,0.6,kg/TJ,227.08977983999998,kg +682b5df9-ba1d-3db0-acb7-f0ed0f0c93ac,SESCO,II.1.1,Entre Rios,AR-E,annual,2021,naphtha combustion consumption by to the public,270.4138976,TJ,CO2,73300.0,kg/TJ,19821338.69408,kg +fa3a4656-3ba0-32e3-a864-a3223309b94d,SESCO,II.1.1,Entre Rios,AR-E,annual,2021,naphtha combustion consumption by to the public,270.4138976,TJ,CH4,3.0,kg/TJ,811.2416928,kg +fe3b1f7c-1264-3db9-b8bc-52fefaa43668,SESCO,II.1.1,Entre Rios,AR-E,annual,2021,naphtha combustion consumption by to the public,270.4138976,TJ,N2O,0.6,kg/TJ,162.24833855999998,kg +be4bf4bd-7ce1-31ed-956a-3d1dea265bc1,SESCO,II.1.1,Formosa,AR-P,annual,2021,naphtha combustion consumption by to the public,37.7518064,TJ,CO2,73300.0,kg/TJ,2767207.40912,kg +d02e8a53-dddc-395d-86e5-7858b83fdcf3,SESCO,II.1.1,Formosa,AR-P,annual,2021,naphtha combustion consumption by to the public,37.7518064,TJ,CH4,3.0,kg/TJ,113.2554192,kg +20817432-50a8-3325-867b-f35f8d7aaaf9,SESCO,II.1.1,Formosa,AR-P,annual,2021,naphtha combustion consumption by to the public,37.7518064,TJ,N2O,0.6,kg/TJ,22.65108384,kg +242e8c52-539d-37cb-82fd-64ad6f2ebbf7,SESCO,II.1.1,La Rioja,AR-F,annual,2021,naphtha combustion consumption by to the public,65.1912184,TJ,CO2,73300.0,kg/TJ,4778516.30872,kg +d99e6de5-3856-3ecb-93d2-7aee70dc8dfb,SESCO,II.1.1,La Rioja,AR-F,annual,2021,naphtha combustion consumption by to the public,65.1912184,TJ,CH4,3.0,kg/TJ,195.5736552,kg +f45eec0f-7962-346e-a0ad-2d06ab6399d0,SESCO,II.1.1,La Rioja,AR-F,annual,2021,naphtha combustion consumption by to the public,65.1912184,TJ,N2O,0.6,kg/TJ,39.114731039999995,kg +413873e7-98b3-34ae-9cf0-b5faef097619,SESCO,II.1.1,Mendoza,AR-M,annual,2021,naphtha combustion consumption by to the public,384.0914616,TJ,CO2,73300.0,kg/TJ,28153904.135280002,kg +7143fa62-1182-3e46-b3ff-246a2f46a0b1,SESCO,II.1.1,Mendoza,AR-M,annual,2021,naphtha combustion consumption by to the public,384.0914616,TJ,CH4,3.0,kg/TJ,1152.2743848,kg +5dbdba50-cd17-3eb6-bd74-e24f2ef9dde0,SESCO,II.1.1,Mendoza,AR-M,annual,2021,naphtha combustion consumption by to the public,384.0914616,TJ,N2O,0.6,kg/TJ,230.45487695999998,kg +0fa37233-ca03-3d83-a0db-ccc9af49d8a7,SESCO,II.1.1,Misiones,AR-N,annual,2021,naphtha combustion consumption by to the public,189.09071719999997,TJ,CO2,73300.0,kg/TJ,13860349.570759999,kg +22241a5d-35bc-3279-b3d8-8c0af6d6127a,SESCO,II.1.1,Misiones,AR-N,annual,2021,naphtha combustion consumption by to the public,189.09071719999997,TJ,CH4,3.0,kg/TJ,567.2721515999999,kg +043fb92c-1a01-38c7-81ab-1d96390d72ef,SESCO,II.1.1,Misiones,AR-N,annual,2021,naphtha combustion consumption by to the public,189.09071719999997,TJ,N2O,0.6,kg/TJ,113.45443031999999,kg +ad54e180-2f58-3756-9980-e9cbc935d4f9,SESCO,II.1.1,Salta,AR-A,annual,2021,naphtha combustion consumption by to the public,0.7538299999999999,TJ,CO2,73300.0,kg/TJ,55255.738999999994,kg +93614ca6-b717-32e9-843e-5a504649cb29,SESCO,II.1.1,Salta,AR-A,annual,2021,naphtha combustion consumption by to the public,0.7538299999999999,TJ,CH4,3.0,kg/TJ,2.26149,kg +4e10e865-16e3-3d28-9a5b-c8e175a4e9d5,SESCO,II.1.1,Salta,AR-A,annual,2021,naphtha combustion consumption by to the public,0.7538299999999999,TJ,N2O,0.6,kg/TJ,0.4522979999999999,kg +943ab801-5b51-3354-b06a-0a2d34accd3b,SESCO,II.1.1,San Juan,AR-J,annual,2021,naphtha combustion consumption by to the public,45.71225119999999,TJ,CO2,73300.0,kg/TJ,3350708.0129599995,kg +4a9ce4f8-6de2-37d2-bfe4-fac10a777242,SESCO,II.1.1,San Juan,AR-J,annual,2021,naphtha combustion consumption by to the public,45.71225119999999,TJ,CH4,3.0,kg/TJ,137.13675359999996,kg +0b35d5c4-d4e8-33fb-a621-e5fdedcc6a2b,SESCO,II.1.1,San Juan,AR-J,annual,2021,naphtha combustion consumption by to the public,45.71225119999999,TJ,N2O,0.6,kg/TJ,27.427350719999993,kg +77f9a16e-17a6-3997-badb-2f4966d9343b,SESCO,II.1.1,San Luis,AR-D,annual,2021,naphtha combustion consumption by to the public,15.951042799999998,TJ,CO2,73300.0,kg/TJ,1169211.4372399999,kg +8034f89b-59e9-3f49-83e9-35eda79f51fc,SESCO,II.1.1,San Luis,AR-D,annual,2021,naphtha combustion consumption by to the public,15.951042799999998,TJ,CH4,3.0,kg/TJ,47.853128399999996,kg +f0f60503-f604-3b82-90c1-445d1383964a,SESCO,II.1.1,San Luis,AR-D,annual,2021,naphtha combustion consumption by to the public,15.951042799999998,TJ,N2O,0.6,kg/TJ,9.57062568,kg +06457701-6fed-351c-9360-04c4ce60aa19,SESCO,II.1.1,Santa Fe,AR-S,annual,2021,naphtha combustion consumption by to the public,288.5962772,TJ,CO2,73300.0,kg/TJ,21154107.118759997,kg +8be8c15e-e987-3f1d-84df-4316bcc09f69,SESCO,II.1.1,Santa Fe,AR-S,annual,2021,naphtha combustion consumption by to the public,288.5962772,TJ,CH4,3.0,kg/TJ,865.7888315999999,kg +8b3bd3bd-086f-354e-a4fe-376393cbde53,SESCO,II.1.1,Santa Fe,AR-S,annual,2021,naphtha combustion consumption by to the public,288.5962772,TJ,N2O,0.6,kg/TJ,173.15776631999998,kg +0556bafb-d293-3cee-b048-048e0a18f893,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2021,naphtha combustion consumption by to the public,88.6202548,TJ,CO2,73300.0,kg/TJ,6495864.67684,kg +8609ebf4-9b00-324c-a80d-eb636d554bba,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2021,naphtha combustion consumption by to the public,88.6202548,TJ,CH4,3.0,kg/TJ,265.8607644,kg +3eeda532-7f49-3733-9e74-929fdee48ff0,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2021,naphtha combustion consumption by to the public,88.6202548,TJ,N2O,0.6,kg/TJ,53.17215288,kg +2926207d-f5db-3844-aba8-ca951288cda8,SESCO,II.1.1,Tucuman,AR-T,annual,2021,naphtha combustion consumption by to the public,40.19421559999999,TJ,CO2,73300.0,kg/TJ,2946236.0034799995,kg +77c0d259-8617-3406-a0c9-a2f59ca3d797,SESCO,II.1.1,Tucuman,AR-T,annual,2021,naphtha combustion consumption by to the public,40.19421559999999,TJ,CH4,3.0,kg/TJ,120.58264679999998,kg +2cdaa3da-f108-331f-993c-471d813f38cd,SESCO,II.1.1,Tucuman,AR-T,annual,2021,naphtha combustion consumption by to the public,40.19421559999999,TJ,N2O,0.6,kg/TJ,24.116529359999994,kg +926946b9-ac68-3b58-862e-ff8d18816e5f,SESCO,II.1.1,Buenos Aires,AR-B,annual,2021,naphtha combustion consumption by to the public,100.9227604,TJ,CO2,73300.0,kg/TJ,7397638.33732,kg +a566a96b-bc95-39f4-8f0b-885d7df39c4e,SESCO,II.1.1,Buenos Aires,AR-B,annual,2021,naphtha combustion consumption by to the public,100.9227604,TJ,CH4,3.0,kg/TJ,302.7682812,kg +659d229a-3563-3ab6-9c56-1cc9e4e8823e,SESCO,II.1.1,Buenos Aires,AR-B,annual,2021,naphtha combustion consumption by to the public,100.9227604,TJ,N2O,0.6,kg/TJ,60.553656239999995,kg +765c5842-4d8e-3f8d-a276-4a800650251c,SESCO,II.1.1,Capital Federal,AR-C,annual,2021,naphtha combustion consumption by to the public,21.861069999999998,TJ,CO2,73300.0,kg/TJ,1602416.4309999999,kg +ec04e1dd-e659-3901-a2b3-e98fda3c583f,SESCO,II.1.1,Capital Federal,AR-C,annual,2021,naphtha combustion consumption by to the public,21.861069999999998,TJ,CH4,3.0,kg/TJ,65.58321,kg +50910a48-f931-346f-bb1f-f3931d6239a3,SESCO,II.1.1,Capital Federal,AR-C,annual,2021,naphtha combustion consumption by to the public,21.861069999999998,TJ,N2O,0.6,kg/TJ,13.116641999999999,kg +99e50227-ad91-3d19-9318-33a8cc3fb3c5,SESCO,II.1.1,Catamarca,AR-K,annual,2021,naphtha combustion consumption by to the public,7.387533999999999,TJ,CO2,73300.0,kg/TJ,541506.2421999999,kg +15ec2f32-de66-34a2-8b5b-31077cb3bc0b,SESCO,II.1.1,Catamarca,AR-K,annual,2021,naphtha combustion consumption by to the public,7.387533999999999,TJ,CH4,3.0,kg/TJ,22.162601999999996,kg +1bb7064d-46a5-3d0e-b14d-e26febd08d40,SESCO,II.1.1,Catamarca,AR-K,annual,2021,naphtha combustion consumption by to the public,7.387533999999999,TJ,N2O,0.6,kg/TJ,4.432520399999999,kg +c948078d-3598-3f7d-84f8-02cceb658c31,SESCO,II.1.1,Chaco,AR-H,annual,2021,naphtha combustion consumption by to the public,11.8502076,TJ,CO2,73300.0,kg/TJ,868620.21708,kg +3526fe29-0839-309a-b1f5-2d6b769cdfff,SESCO,II.1.1,Chaco,AR-H,annual,2021,naphtha combustion consumption by to the public,11.8502076,TJ,CH4,3.0,kg/TJ,35.5506228,kg +2ae6f4f5-2d9b-307a-bf92-72efeeeb99d8,SESCO,II.1.1,Chaco,AR-H,annual,2021,naphtha combustion consumption by to the public,11.8502076,TJ,N2O,0.6,kg/TJ,7.110124559999999,kg +18a52b85-3029-3042-9812-c33b6508cfef,SESCO,II.1.1,Corrientes,AR-W,annual,2021,naphtha combustion consumption by to the public,9.3173388,TJ,CO2,73300.0,kg/TJ,682960.93404,kg +98e07369-73ea-34db-9564-b03cddedd60c,SESCO,II.1.1,Corrientes,AR-W,annual,2021,naphtha combustion consumption by to the public,9.3173388,TJ,CH4,3.0,kg/TJ,27.952016399999998,kg +0adce852-c3aa-3493-9b02-fda6fd5cd780,SESCO,II.1.1,Corrientes,AR-W,annual,2021,naphtha combustion consumption by to the public,9.3173388,TJ,N2O,0.6,kg/TJ,5.590403279999999,kg +086cc629-d91b-354f-ab16-3c5f55402e39,SESCO,II.1.1,Córdoba,AR-X,annual,2021,naphtha combustion consumption by to the public,54.637598399999995,TJ,CO2,73300.0,kg/TJ,4004935.9627199997,kg +ed9b9ee5-4fe8-32ca-ae9b-7c05841aae97,SESCO,II.1.1,Córdoba,AR-X,annual,2021,naphtha combustion consumption by to the public,54.637598399999995,TJ,CH4,3.0,kg/TJ,163.91279519999998,kg +b0c54046-3e48-38a5-985b-7f55462e087a,SESCO,II.1.1,Córdoba,AR-X,annual,2021,naphtha combustion consumption by to the public,54.637598399999995,TJ,N2O,0.6,kg/TJ,32.782559039999995,kg +0e349858-14b4-32c9-aca8-c0ab393923d5,SESCO,II.1.1,Entre Rios,AR-E,annual,2021,naphtha combustion consumption by to the public,19.3282012,TJ,CO2,73300.0,kg/TJ,1416757.14796,kg +61d45422-3c82-3053-96dd-3b320c22c05f,SESCO,II.1.1,Entre Rios,AR-E,annual,2021,naphtha combustion consumption by to the public,19.3282012,TJ,CH4,3.0,kg/TJ,57.9846036,kg +0d671129-ad21-3469-8a60-0da17c0f7cfd,SESCO,II.1.1,Entre Rios,AR-E,annual,2021,naphtha combustion consumption by to the public,19.3282012,TJ,N2O,0.6,kg/TJ,11.596920719999998,kg +7199c6d4-f14d-3ddd-b0b6-0ff8066659a8,SESCO,II.1.1,Formosa,AR-P,annual,2021,naphtha combustion consumption by to the public,3.7993031999999993,TJ,CO2,73300.0,kg/TJ,278488.92455999996,kg +28585504-32e7-3a23-a9a1-134ca5943dbe,SESCO,II.1.1,Formosa,AR-P,annual,2021,naphtha combustion consumption by to the public,3.7993031999999993,TJ,CH4,3.0,kg/TJ,11.397909599999998,kg +3496ac64-7f9f-3a33-8c38-b17420db8548,SESCO,II.1.1,Formosa,AR-P,annual,2021,naphtha combustion consumption by to the public,3.7993031999999993,TJ,N2O,0.6,kg/TJ,2.2795819199999996,kg +dc75e426-0b08-3f4c-a3e2-9c786267b0c3,SESCO,II.1.1,La Rioja,AR-F,annual,2021,naphtha combustion consumption by to the public,7.628759599999999,TJ,CO2,73300.0,kg/TJ,559188.0786799999,kg +0c19a345-a1db-36f9-b8e1-fee176474880,SESCO,II.1.1,La Rioja,AR-F,annual,2021,naphtha combustion consumption by to the public,7.628759599999999,TJ,CH4,3.0,kg/TJ,22.886278799999996,kg +951e8449-868d-3ae9-9492-abb9d7c89ab8,SESCO,II.1.1,La Rioja,AR-F,annual,2021,naphtha combustion consumption by to the public,7.628759599999999,TJ,N2O,0.6,kg/TJ,4.577255759999999,kg +fa9dcfb8-d5d8-3f8b-a72f-5816b8f4c539,SESCO,II.1.1,Mendoza,AR-M,annual,2021,naphtha combustion consumption by to the public,28.2837016,TJ,CO2,73300.0,kg/TJ,2073195.32728,kg +c0135830-3789-3519-a3fa-8969c50a4cca,SESCO,II.1.1,Mendoza,AR-M,annual,2021,naphtha combustion consumption by to the public,28.2837016,TJ,CH4,3.0,kg/TJ,84.8511048,kg +216f13cb-0ea9-3cfc-b7c5-41bb51ebf1ea,SESCO,II.1.1,Mendoza,AR-M,annual,2021,naphtha combustion consumption by to the public,28.2837016,TJ,N2O,0.6,kg/TJ,16.97022096,kg +ee8ea580-6856-3b94-9c2a-b0f6094be344,SESCO,II.1.1,Misiones,AR-N,annual,2021,naphtha combustion consumption by to the public,18.785443599999997,TJ,CO2,73300.0,kg/TJ,1376973.0158799998,kg +ad0385e0-91bc-3d8f-a5b9-022140d9e5fb,SESCO,II.1.1,Misiones,AR-N,annual,2021,naphtha combustion consumption by to the public,18.785443599999997,TJ,CH4,3.0,kg/TJ,56.356330799999995,kg +3aae2b62-e368-3985-8d4f-2f67168432d7,SESCO,II.1.1,Misiones,AR-N,annual,2021,naphtha combustion consumption by to the public,18.785443599999997,TJ,N2O,0.6,kg/TJ,11.271266159999998,kg +cf3ff590-2ef3-35c8-a81b-3954d475da55,SESCO,II.1.1,San Juan,AR-J,annual,2021,naphtha combustion consumption by to the public,5.487882399999999,TJ,CO2,73300.0,kg/TJ,402261.77991999994,kg +dd0c389f-e7d0-3d99-80ae-007971b98e96,SESCO,II.1.1,San Juan,AR-J,annual,2021,naphtha combustion consumption by to the public,5.487882399999999,TJ,CH4,3.0,kg/TJ,16.463647199999997,kg +64a6be1d-7219-3ee4-af77-972c9ebe585a,SESCO,II.1.1,San Juan,AR-J,annual,2021,naphtha combustion consumption by to the public,5.487882399999999,TJ,N2O,0.6,kg/TJ,3.2927294399999996,kg +fadf2789-5613-3016-90ea-d9dad32e105f,SESCO,II.1.1,San Luis,AR-D,annual,2021,naphtha combustion consumption by to the public,1.5981196,TJ,CO2,73300.0,kg/TJ,117142.16668,kg +84d79b83-fa53-3434-9da5-32f0440c57d3,SESCO,II.1.1,San Luis,AR-D,annual,2021,naphtha combustion consumption by to the public,1.5981196,TJ,CH4,3.0,kg/TJ,4.7943587999999995,kg +574cb0ad-6b10-3138-ad6c-7023d8d16fe7,SESCO,II.1.1,San Luis,AR-D,annual,2021,naphtha combustion consumption by to the public,1.5981196,TJ,N2O,0.6,kg/TJ,0.95887176,kg +d424bafa-e3d8-3583-8987-df4f75d99ba8,SESCO,II.1.1,Santa Fe,AR-S,annual,2021,naphtha combustion consumption by to the public,42.0938672,TJ,CO2,73300.0,kg/TJ,3085480.46576,kg +3db6988b-6ba9-3d67-b3a4-705181defbf1,SESCO,II.1.1,Santa Fe,AR-S,annual,2021,naphtha combustion consumption by to the public,42.0938672,TJ,CH4,3.0,kg/TJ,126.28160159999999,kg +fab31fea-2720-314a-9577-3fd08961700f,SESCO,II.1.1,Santa Fe,AR-S,annual,2021,naphtha combustion consumption by to the public,42.0938672,TJ,N2O,0.6,kg/TJ,25.256320319999997,kg +437c1001-b031-3b59-820f-8f74b0e76e33,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2021,naphtha combustion consumption by to the public,7.5081468,TJ,CO2,73300.0,kg/TJ,550347.16044,kg +03e27fe5-9418-3778-9525-15cdbf40d335,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2021,naphtha combustion consumption by to the public,7.5081468,TJ,CH4,3.0,kg/TJ,22.5244404,kg +5845bb75-8774-37bc-a321-c51c71d29594,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2021,naphtha combustion consumption by to the public,7.5081468,TJ,N2O,0.6,kg/TJ,4.50488808,kg +c5ceb6df-951c-3075-b0da-6c955bae066b,SESCO,II.1.1,Tucuman,AR-T,annual,2021,naphtha combustion consumption by to the public,3.3771584,TJ,CO2,73300.0,kg/TJ,247545.71072,kg +0bab4057-7c02-3738-a316-4431b1cd06e9,SESCO,II.1.1,Tucuman,AR-T,annual,2021,naphtha combustion consumption by to the public,3.3771584,TJ,CH4,3.0,kg/TJ,10.1314752,kg +bc9ede1f-536a-3dc8-997f-36d814cd5340,SESCO,II.1.1,Tucuman,AR-T,annual,2021,naphtha combustion consumption by to the public,3.3771584,TJ,N2O,0.6,kg/TJ,2.02629504,kg +3867a9ee-d7e0-3d46-ae98-c37039281e5e,SESCO,I.3.1,Buenos Aires,AR-B,annual,2021,naphtha combustion consumption by petrochemical industries,0.3618384,TJ,CO2,73300.0,kg/TJ,26522.75472,kg +1ecac216-f16f-310b-8cb6-5402e1727ebc,SESCO,I.3.1,Buenos Aires,AR-B,annual,2021,naphtha combustion consumption by petrochemical industries,0.3618384,TJ,CH4,3.0,kg/TJ,1.0855152000000001,kg +b457d089-9521-317c-b4ab-67e919175adc,SESCO,I.3.1,Buenos Aires,AR-B,annual,2021,naphtha combustion consumption by petrochemical industries,0.3618384,TJ,N2O,0.6,kg/TJ,0.21710304,kg +3cc45304-ec66-3425-9653-669a81baca98,SESCO,II.5.1,Santa Fe,AR-S,annual,2021,naphtha combustion consumption by agriculture machines,10.613926399999999,TJ,CO2,73300.0,kg/TJ,778000.8051199999,kg +13ebc5ce-492d-3649-b3df-b6a597cb2e6c,SESCO,II.5.1,Santa Fe,AR-S,annual,2021,naphtha combustion consumption by agriculture machines,10.613926399999999,TJ,CH4,3.0,kg/TJ,31.841779199999998,kg +adfe0a34-f316-3260-9671-d0d181634268,SESCO,II.5.1,Santa Fe,AR-S,annual,2021,naphtha combustion consumption by agriculture machines,10.613926399999999,TJ,N2O,0.6,kg/TJ,6.368355839999999,kg +27f69974-4187-3403-a22e-06ef7fb0012c,SESCO,II.5.1,Santa Fe,AR-S,annual,2021,naphtha combustion consumption by agriculture machines,3.8596095999999998,TJ,CO2,73300.0,kg/TJ,282909.38367999997,kg +d5b373e6-1ef7-34ea-8ed4-2b8bf350a7f4,SESCO,II.5.1,Santa Fe,AR-S,annual,2021,naphtha combustion consumption by agriculture machines,3.8596095999999998,TJ,CH4,3.0,kg/TJ,11.5788288,kg +dcca5bf1-673e-3707-9ecd-698f23310d8f,SESCO,II.5.1,Santa Fe,AR-S,annual,2021,naphtha combustion consumption by agriculture machines,3.8596095999999998,TJ,N2O,0.6,kg/TJ,2.3157657599999997,kg +e68c2ec1-32c4-35cb-a8ab-01aaff59b7bd,SESCO,II.1.1,Buenos Aires,AR-B,annual,2021,naphtha combustion consumption by to the public,9885.274322,TJ,CO2,73300.0,kg/TJ,724590607.8025999,kg +bf36e543-c8d3-3a4d-bef5-22065091230a,SESCO,II.1.1,Buenos Aires,AR-B,annual,2021,naphtha combustion consumption by to the public,9885.274322,TJ,CH4,3.0,kg/TJ,29655.822966,kg +4a034564-1a03-3629-9cba-f69fb9ef62b7,SESCO,II.1.1,Buenos Aires,AR-B,annual,2021,naphtha combustion consumption by to the public,9885.274322,TJ,N2O,0.6,kg/TJ,5931.164593199999,kg +94d1f6bf-ffaf-3e6e-b447-a6f2d1e4fcbe,SESCO,II.1.1,Capital Federal,AR-C,annual,2021,naphtha combustion consumption by to the public,2480.7942236,TJ,CO2,73300.0,kg/TJ,181842216.58988,kg +a69f14b9-2a7f-3d66-b31a-d2e0700eeb8a,SESCO,II.1.1,Capital Federal,AR-C,annual,2021,naphtha combustion consumption by to the public,2480.7942236,TJ,CH4,3.0,kg/TJ,7442.3826708,kg +dbbe6dba-a450-347d-8c73-ee406c39b4a4,SESCO,II.1.1,Capital Federal,AR-C,annual,2021,naphtha combustion consumption by to the public,2480.7942236,TJ,N2O,0.6,kg/TJ,1488.4765341599998,kg +c905b500-b6d1-39e7-b947-2161788517d7,SESCO,II.1.1,Catamarca,AR-K,annual,2021,naphtha combustion consumption by to the public,440.6287116,TJ,CO2,73300.0,kg/TJ,32298084.56028,kg +1ebf0789-2f03-3eaa-a64f-0fd8c27a5018,SESCO,II.1.1,Catamarca,AR-K,annual,2021,naphtha combustion consumption by to the public,440.6287116,TJ,CH4,3.0,kg/TJ,1321.8861348,kg +3670b667-8977-38ff-9ca7-35c2bd6d345a,SESCO,II.1.1,Catamarca,AR-K,annual,2021,naphtha combustion consumption by to the public,440.6287116,TJ,N2O,0.6,kg/TJ,264.37722696,kg +ae40fba7-854d-3901-a430-294d54972ede,SESCO,II.1.1,Chaco,AR-H,annual,2021,naphtha combustion consumption by to the public,613.6779264,TJ,CO2,73300.0,kg/TJ,44982592.00512,kg +3ea6fb03-11eb-314a-95c8-b8702bdb0cc4,SESCO,II.1.1,Chaco,AR-H,annual,2021,naphtha combustion consumption by to the public,613.6779264,TJ,CH4,3.0,kg/TJ,1841.0337792,kg +ae8f157b-488b-3598-ad4e-4c08e2de6eae,SESCO,II.1.1,Chaco,AR-H,annual,2021,naphtha combustion consumption by to the public,613.6779264,TJ,N2O,0.6,kg/TJ,368.20675584,kg +5aba8fc7-8573-3b5e-b2ff-360a9cede599,SESCO,II.1.1,Chubut,AR-U,annual,2021,naphtha combustion consumption by to the public,1467.7070099999999,TJ,CO2,73300.0,kg/TJ,107582923.83299999,kg +937732ba-2be2-3d11-8d3f-146eac935ce4,SESCO,II.1.1,Chubut,AR-U,annual,2021,naphtha combustion consumption by to the public,1467.7070099999999,TJ,CH4,3.0,kg/TJ,4403.121029999999,kg +55c5bd98-6178-356f-a539-1befd032a2f1,SESCO,II.1.1,Chubut,AR-U,annual,2021,naphtha combustion consumption by to the public,1467.7070099999999,TJ,N2O,0.6,kg/TJ,880.6242059999998,kg +4a5dabac-c77a-331f-834d-e02f5bc46a4f,SESCO,II.1.1,Corrientes,AR-W,annual,2021,naphtha combustion consumption by to the public,711.0124559999999,TJ,CO2,73300.0,kg/TJ,52117213.024799995,kg +76630aa6-6362-357a-9e5b-a1be86fef96a,SESCO,II.1.1,Corrientes,AR-W,annual,2021,naphtha combustion consumption by to the public,711.0124559999999,TJ,CH4,3.0,kg/TJ,2133.037368,kg +869c55e2-1037-30af-820e-d9cc37456f3f,SESCO,II.1.1,Corrientes,AR-W,annual,2021,naphtha combustion consumption by to the public,711.0124559999999,TJ,N2O,0.6,kg/TJ,426.60747359999993,kg +9cdbfbf1-9d33-3891-b4f8-49e4dd154182,SESCO,II.1.1,Córdoba,AR-X,annual,2021,naphtha combustion consumption by to the public,2422.6287008,TJ,CO2,73300.0,kg/TJ,177578683.76863998,kg +638fa7b7-0742-3df4-8a38-c67f950f3f52,SESCO,II.1.1,Córdoba,AR-X,annual,2021,naphtha combustion consumption by to the public,2422.6287008,TJ,CH4,3.0,kg/TJ,7267.8861024,kg +2a30d9e0-07cf-3ecf-a5b1-ab15c4c1491e,SESCO,II.1.1,Córdoba,AR-X,annual,2021,naphtha combustion consumption by to the public,2422.6287008,TJ,N2O,0.6,kg/TJ,1453.5772204799998,kg +c34f40ab-d549-3c51-be95-bfd5c7ae623b,SESCO,II.1.1,Entre Rios,AR-E,annual,2021,naphtha combustion consumption by to the public,948.4387528,TJ,CO2,73300.0,kg/TJ,69520560.58024,kg +eb61faea-3859-38d1-b3b8-889352bdc155,SESCO,II.1.1,Entre Rios,AR-E,annual,2021,naphtha combustion consumption by to the public,948.4387528,TJ,CH4,3.0,kg/TJ,2845.3162584,kg +86d66f28-146c-3256-b068-31dd60e86586,SESCO,II.1.1,Entre Rios,AR-E,annual,2021,naphtha combustion consumption by to the public,948.4387528,TJ,N2O,0.6,kg/TJ,569.06325168,kg +3c0806f3-051a-3cc8-a17c-5806de53502e,SESCO,II.1.1,Formosa,AR-P,annual,2021,naphtha combustion consumption by to the public,612.6828707999999,TJ,CO2,73300.0,kg/TJ,44909654.429639995,kg +7598a2f6-e230-38e3-9e8f-6bed53a571e6,SESCO,II.1.1,Formosa,AR-P,annual,2021,naphtha combustion consumption by to the public,612.6828707999999,TJ,CH4,3.0,kg/TJ,1838.0486124,kg +b4f33324-cb6e-3a29-9b95-0a50605a8914,SESCO,II.1.1,Formosa,AR-P,annual,2021,naphtha combustion consumption by to the public,612.6828707999999,TJ,N2O,0.6,kg/TJ,367.60972247999996,kg +8d652788-6ef5-3688-b520-1fa01f176a00,SESCO,II.1.1,Jujuy,AR-Y,annual,2021,naphtha combustion consumption by to the public,223.76689719999996,TJ,CO2,73300.0,kg/TJ,16402113.564759998,kg +9ddb7abd-cba3-345b-9643-ca4e5cd1f3d1,SESCO,II.1.1,Jujuy,AR-Y,annual,2021,naphtha combustion consumption by to the public,223.76689719999996,TJ,CH4,3.0,kg/TJ,671.3006915999999,kg +40a2763d-f2bb-3572-a5e9-e2b68531bf9d,SESCO,II.1.1,Jujuy,AR-Y,annual,2021,naphtha combustion consumption by to the public,223.76689719999996,TJ,N2O,0.6,kg/TJ,134.26013831999998,kg +b906ee09-ed89-31c9-9d50-9563d4169f6d,SESCO,II.1.1,La Pampa,AR-L,annual,2021,naphtha combustion consumption by to the public,196.598864,TJ,CO2,73300.0,kg/TJ,14410696.7312,kg +bdac622e-dee3-3a12-b16c-e055c5f8d522,SESCO,II.1.1,La Pampa,AR-L,annual,2021,naphtha combustion consumption by to the public,196.598864,TJ,CH4,3.0,kg/TJ,589.7965919999999,kg +2b07f2dd-19f4-3279-b15e-a06ce570276e,SESCO,II.1.1,La Pampa,AR-L,annual,2021,naphtha combustion consumption by to the public,196.598864,TJ,N2O,0.6,kg/TJ,117.95931839999999,kg +b281e191-7fbb-3153-b72d-d397149dc777,SESCO,II.1.1,La Rioja,AR-F,annual,2021,naphtha combustion consumption by to the public,108.34044759999999,TJ,CO2,73300.0,kg/TJ,7941354.809079999,kg +1f3a2987-7c1b-3e8d-89df-4f9c2c32b6af,SESCO,II.1.1,La Rioja,AR-F,annual,2021,naphtha combustion consumption by to the public,108.34044759999999,TJ,CH4,3.0,kg/TJ,325.02134279999996,kg +4af49763-5192-3963-94c3-898c2e385aca,SESCO,II.1.1,La Rioja,AR-F,annual,2021,naphtha combustion consumption by to the public,108.34044759999999,TJ,N2O,0.6,kg/TJ,65.00426855999999,kg +a967c993-efb3-3f77-99ea-1b92ff6c6918,SESCO,II.1.1,Mendoza,AR-M,annual,2021,naphtha combustion consumption by to the public,507.65927519999997,TJ,CO2,73300.0,kg/TJ,37211424.872159995,kg +26180a11-c409-30a7-a494-ee8a495601fa,SESCO,II.1.1,Mendoza,AR-M,annual,2021,naphtha combustion consumption by to the public,507.65927519999997,TJ,CH4,3.0,kg/TJ,1522.9778256,kg +94d3f53d-227f-3dfa-b56e-4d1ca0961c4b,SESCO,II.1.1,Mendoza,AR-M,annual,2021,naphtha combustion consumption by to the public,507.65927519999997,TJ,N2O,0.6,kg/TJ,304.59556511999995,kg +9c9e0b3a-1d4f-3dfa-8bb0-c18ef4fe4996,SESCO,II.1.1,Misiones,AR-N,annual,2021,naphtha combustion consumption by to the public,1124.2017555999998,TJ,CO2,73300.0,kg/TJ,82403988.68547998,kg +67c84497-9024-3b62-b5bb-79411123d245,SESCO,II.1.1,Misiones,AR-N,annual,2021,naphtha combustion consumption by to the public,1124.2017555999998,TJ,CH4,3.0,kg/TJ,3372.6052667999993,kg +50d4d9f1-c659-3ec5-bc98-061ece0f7ba2,SESCO,II.1.1,Misiones,AR-N,annual,2021,naphtha combustion consumption by to the public,1124.2017555999998,TJ,N2O,0.6,kg/TJ,674.5210533599999,kg +0e36ac40-e86a-3daf-a93b-e2d8f5b35810,SESCO,II.1.1,Neuquén,AR-Q,annual,2021,naphtha combustion consumption by to the public,523.3690924,TJ,CO2,73300.0,kg/TJ,38362954.47292,kg +3d179b1f-6b43-3359-a496-adb4617b673b,SESCO,II.1.1,Neuquén,AR-Q,annual,2021,naphtha combustion consumption by to the public,523.3690924,TJ,CH4,3.0,kg/TJ,1570.1072772,kg +28f94683-39ec-3a45-b8f5-54aef41754d3,SESCO,II.1.1,Neuquén,AR-Q,annual,2021,naphtha combustion consumption by to the public,523.3690924,TJ,N2O,0.6,kg/TJ,314.02145544,kg +a8ba94b6-4c72-36e3-b745-647e6ce3a147,SESCO,II.1.1,Rio Negro,AR-R,annual,2021,naphtha combustion consumption by to the public,756.6342476,TJ,CO2,73300.0,kg/TJ,55461290.34908,kg +ac88068c-4c1f-301f-8c8b-1a67de69ca3f,SESCO,II.1.1,Rio Negro,AR-R,annual,2021,naphtha combustion consumption by to the public,756.6342476,TJ,CH4,3.0,kg/TJ,2269.9027428,kg +2b5e8c13-aa0b-3530-bc45-886b5a104850,SESCO,II.1.1,Rio Negro,AR-R,annual,2021,naphtha combustion consumption by to the public,756.6342476,TJ,N2O,0.6,kg/TJ,453.98054856,kg +1bb981eb-026b-37e9-aa29-4bedc0bc186b,SESCO,II.1.1,Salta,AR-A,annual,2021,naphtha combustion consumption by to the public,204.6497684,TJ,CO2,73300.0,kg/TJ,15000828.02372,kg +a6c4e1b0-ef39-3435-92c0-24b3f005073c,SESCO,II.1.1,Salta,AR-A,annual,2021,naphtha combustion consumption by to the public,204.6497684,TJ,CH4,3.0,kg/TJ,613.9493052,kg +13749d4e-d89d-39bc-b99c-2c4ea1b2ae36,SESCO,II.1.1,Salta,AR-A,annual,2021,naphtha combustion consumption by to the public,204.6497684,TJ,N2O,0.6,kg/TJ,122.78986103999999,kg +76f41f8a-4fba-3a54-ab87-33e2a2a72427,SESCO,II.1.1,San Juan,AR-J,annual,2021,naphtha combustion consumption by to the public,193.67400359999996,TJ,CO2,73300.0,kg/TJ,14196304.463879997,kg +d49feb0b-c76f-3a02-8222-2f59e38bcd7f,SESCO,II.1.1,San Juan,AR-J,annual,2021,naphtha combustion consumption by to the public,193.67400359999996,TJ,CH4,3.0,kg/TJ,581.0220107999999,kg +b9128dc5-7b1c-385e-aec3-7dd8a9b976d2,SESCO,II.1.1,San Juan,AR-J,annual,2021,naphtha combustion consumption by to the public,193.67400359999996,TJ,N2O,0.6,kg/TJ,116.20440215999997,kg +bf7b5aac-9663-3f31-8281-6b716d26ee11,SESCO,II.1.1,San Luis,AR-D,annual,2021,naphtha combustion consumption by to the public,607.8583587999999,TJ,CO2,73300.0,kg/TJ,44556017.70003999,kg +d84d3a99-a0b5-3b70-ba35-7781c87e85c6,SESCO,II.1.1,San Luis,AR-D,annual,2021,naphtha combustion consumption by to the public,607.8583587999999,TJ,CH4,3.0,kg/TJ,1823.5750763999997,kg +3b58dd6d-cc2a-35e1-b869-cb68affed1ec,SESCO,II.1.1,San Luis,AR-D,annual,2021,naphtha combustion consumption by to the public,607.8583587999999,TJ,N2O,0.6,kg/TJ,364.71501527999993,kg +250e82fb-b8f4-31fd-b16b-2fcbec042989,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2021,naphtha combustion consumption by to the public,915.2702327999999,TJ,CO2,73300.0,kg/TJ,67089308.06423999,kg +ea6fab07-8e82-32b0-ac33-fe1f4bb816cd,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2021,naphtha combustion consumption by to the public,915.2702327999999,TJ,CH4,3.0,kg/TJ,2745.8106983999996,kg +552f805e-2fbd-3f60-aeaa-16c6be6c0e34,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2021,naphtha combustion consumption by to the public,915.2702327999999,TJ,N2O,0.6,kg/TJ,549.1621396799999,kg +6b2acc42-3a37-3f11-9b8a-f6a5ee32f853,SESCO,II.1.1,Santa Fe,AR-S,annual,2021,naphtha combustion consumption by to the public,2487.2771616,TJ,CO2,73300.0,kg/TJ,182317415.94528,kg +742e36f8-adbc-3862-b390-c5e2be5ecb97,SESCO,II.1.1,Santa Fe,AR-S,annual,2021,naphtha combustion consumption by to the public,2487.2771616,TJ,CH4,3.0,kg/TJ,7461.8314848,kg +84da20a8-71f7-31f9-824f-03a1c8a3cc09,SESCO,II.1.1,Santa Fe,AR-S,annual,2021,naphtha combustion consumption by to the public,2487.2771616,TJ,N2O,0.6,kg/TJ,1492.36629696,kg +8421856e-f70b-37cd-b718-d26c9e089113,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2021,naphtha combustion consumption by to the public,400.0425043999999,TJ,CO2,73300.0,kg/TJ,29323115.572519995,kg +e4e74158-55a0-3294-b6a4-dd3bdc21e212,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2021,naphtha combustion consumption by to the public,400.0425043999999,TJ,CH4,3.0,kg/TJ,1200.1275131999998,kg +140ff313-1fa1-3087-8241-0ae7d6082b68,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2021,naphtha combustion consumption by to the public,400.0425043999999,TJ,N2O,0.6,kg/TJ,240.02550263999996,kg +b849b2c0-6fb2-3b2f-bb31-a27248bf6859,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2021,naphtha combustion consumption by to the public,144.5544408,TJ,CO2,73300.0,kg/TJ,10595840.51064,kg +a46b9e4e-8cf7-3107-9db2-e4268f5dd615,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2021,naphtha combustion consumption by to the public,144.5544408,TJ,CH4,3.0,kg/TJ,433.6633224,kg +08ff2d77-5b61-36e2-9cab-994ae2e6c13e,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2021,naphtha combustion consumption by to the public,144.5544408,TJ,N2O,0.6,kg/TJ,86.73266448,kg +bec6653c-8920-3666-901f-d63050527c97,SESCO,II.1.1,Tucuman,AR-T,annual,2021,naphtha combustion consumption by to the public,173.4110532,TJ,CO2,73300.0,kg/TJ,12711030.19956,kg +5d3fc5d5-997a-3c0d-afeb-177078f31403,SESCO,II.1.1,Tucuman,AR-T,annual,2021,naphtha combustion consumption by to the public,173.4110532,TJ,CH4,3.0,kg/TJ,520.2331596,kg +b6660553-d4b0-3a8e-9a40-ec4195b5fe41,SESCO,II.1.1,Tucuman,AR-T,annual,2021,naphtha combustion consumption by to the public,173.4110532,TJ,N2O,0.6,kg/TJ,104.04663192,kg +0eb07224-9d92-31d4-8db7-9374dc1c2d5b,SESCO,II.1.1,Buenos Aires,AR-B,annual,2021,naphtha combustion consumption by to the public,2843.7181388,TJ,CO2,73300.0,kg/TJ,208444539.57404,kg +58bb17cc-9066-311c-b83c-90e9e75fd848,SESCO,II.1.1,Buenos Aires,AR-B,annual,2021,naphtha combustion consumption by to the public,2843.7181388,TJ,CH4,3.0,kg/TJ,8531.1544164,kg +17d6e6a6-2873-3fd4-b0a5-a14a8384006e,SESCO,II.1.1,Buenos Aires,AR-B,annual,2021,naphtha combustion consumption by to the public,2843.7181388,TJ,N2O,0.6,kg/TJ,1706.23088328,kg +651de8c0-0fb0-3020-a0de-f14841dbec1c,SESCO,II.1.1,Capital Federal,AR-C,annual,2021,naphtha combustion consumption by to the public,1120.9753632,TJ,CO2,73300.0,kg/TJ,82167494.12256,kg +4d44b967-11b0-3905-a7eb-5d4989a5642e,SESCO,II.1.1,Capital Federal,AR-C,annual,2021,naphtha combustion consumption by to the public,1120.9753632,TJ,CH4,3.0,kg/TJ,3362.9260895999996,kg +20d75929-5ca9-3859-9c94-eead9acda13f,SESCO,II.1.1,Capital Federal,AR-C,annual,2021,naphtha combustion consumption by to the public,1120.9753632,TJ,N2O,0.6,kg/TJ,672.58521792,kg +fe96c016-fef1-30ff-9846-57d2dc2b22d7,SESCO,II.1.1,Catamarca,AR-K,annual,2021,naphtha combustion consumption by to the public,129.08584919999998,TJ,CO2,73300.0,kg/TJ,9461992.746359998,kg +7b307f8b-bc90-326d-be8c-c5ac538d22c7,SESCO,II.1.1,Catamarca,AR-K,annual,2021,naphtha combustion consumption by to the public,129.08584919999998,TJ,CH4,3.0,kg/TJ,387.25754759999995,kg +dc6d4a69-2c53-3175-ae4a-8e7474abfdf2,SESCO,II.1.1,Catamarca,AR-K,annual,2021,naphtha combustion consumption by to the public,129.08584919999998,TJ,N2O,0.6,kg/TJ,77.45150951999999,kg +158219e0-82ed-3027-965a-281840f9d3e8,SESCO,II.1.1,Chaco,AR-H,annual,2021,naphtha combustion consumption by to the public,86.3587648,TJ,CO2,73300.0,kg/TJ,6330097.459840001,kg +f9f4f99c-0aaa-36be-aa7d-62246d1ef6c2,SESCO,II.1.1,Chaco,AR-H,annual,2021,naphtha combustion consumption by to the public,86.3587648,TJ,CH4,3.0,kg/TJ,259.0762944,kg +3004621a-e37a-3f9c-aa06-1021cc22ca2c,SESCO,II.1.1,Chaco,AR-H,annual,2021,naphtha combustion consumption by to the public,86.3587648,TJ,N2O,0.6,kg/TJ,51.81525888,kg +c9253fad-1563-3625-a0ff-82e1f35379c5,SESCO,II.1.1,Chubut,AR-U,annual,2021,naphtha combustion consumption by to the public,260.49349479999995,TJ,CO2,73300.0,kg/TJ,19094173.168839995,kg +ca12448f-0b9f-3d16-99c1-2161be0c3fe2,SESCO,II.1.1,Chubut,AR-U,annual,2021,naphtha combustion consumption by to the public,260.49349479999995,TJ,CH4,3.0,kg/TJ,781.4804843999998,kg +42292555-2bc7-3759-9714-99987bcab871,SESCO,II.1.1,Chubut,AR-U,annual,2021,naphtha combustion consumption by to the public,260.49349479999995,TJ,N2O,0.6,kg/TJ,156.29609687999996,kg +552cc7ea-c772-3210-adb3-613fd21ea5f0,SESCO,II.1.1,Corrientes,AR-W,annual,2021,naphtha combustion consumption by to the public,114.91384519999998,TJ,CO2,73300.0,kg/TJ,8423184.85316,kg +7d02af52-e5e4-3de9-8088-8d71870d98ca,SESCO,II.1.1,Corrientes,AR-W,annual,2021,naphtha combustion consumption by to the public,114.91384519999998,TJ,CH4,3.0,kg/TJ,344.74153559999996,kg +4d10ad2a-6b00-3b6b-9059-6b048fac3a17,SESCO,II.1.1,Corrientes,AR-W,annual,2021,naphtha combustion consumption by to the public,114.91384519999998,TJ,N2O,0.6,kg/TJ,68.94830711999998,kg +397dfef5-8392-37d4-84bb-1684c8f602a0,SESCO,II.1.1,Córdoba,AR-X,annual,2021,naphtha combustion consumption by to the public,635.6897624,TJ,CO2,73300.0,kg/TJ,46596059.583919995,kg +cff9f9e9-566d-3c7f-bfe5-13b1b18bd8ae,SESCO,II.1.1,Córdoba,AR-X,annual,2021,naphtha combustion consumption by to the public,635.6897624,TJ,CH4,3.0,kg/TJ,1907.0692872,kg +7607db08-2c38-3dcd-af0b-4a7a9dad73bc,SESCO,II.1.1,Córdoba,AR-X,annual,2021,naphtha combustion consumption by to the public,635.6897624,TJ,N2O,0.6,kg/TJ,381.41385743999996,kg +1a2648b3-3172-30de-bff7-89aed99d06b0,SESCO,II.1.1,Entre Rios,AR-E,annual,2021,naphtha combustion consumption by to the public,251.3570752,TJ,CO2,73300.0,kg/TJ,18424473.61216,kg +d6ccb9c6-c2a2-3c85-b27a-be115d2f42d4,SESCO,II.1.1,Entre Rios,AR-E,annual,2021,naphtha combustion consumption by to the public,251.3570752,TJ,CH4,3.0,kg/TJ,754.0712255999999,kg +bddac9f1-1ec7-326a-8985-0d222d9177a6,SESCO,II.1.1,Entre Rios,AR-E,annual,2021,naphtha combustion consumption by to the public,251.3570752,TJ,N2O,0.6,kg/TJ,150.81424511999998,kg +dbd8b7a0-b89c-373c-9815-622df5615bd0,SESCO,II.1.1,Formosa,AR-P,annual,2021,naphtha combustion consumption by to the public,160.44517719999996,TJ,CO2,73300.0,kg/TJ,11760631.488759996,kg +cb31bd16-68d7-3b02-ab69-cde4390570f6,SESCO,II.1.1,Formosa,AR-P,annual,2021,naphtha combustion consumption by to the public,160.44517719999996,TJ,CH4,3.0,kg/TJ,481.33553159999985,kg +5a02c569-6596-38f7-9192-dd67d740b96f,SESCO,II.1.1,Formosa,AR-P,annual,2021,naphtha combustion consumption by to the public,160.44517719999996,TJ,N2O,0.6,kg/TJ,96.26710631999997,kg +8f84ca7d-ba59-3a1e-a7fa-2cb4583c902e,SESCO,II.1.1,Jujuy,AR-Y,annual,2021,naphtha combustion consumption by to the public,54.3059132,TJ,CO2,73300.0,kg/TJ,3980623.43756,kg +529b0d66-aff8-314e-a4c5-060676ba800e,SESCO,II.1.1,Jujuy,AR-Y,annual,2021,naphtha combustion consumption by to the public,54.3059132,TJ,CH4,3.0,kg/TJ,162.9177396,kg +4305ed45-a448-3d7c-9bd6-148e9fa3cdde,SESCO,II.1.1,Jujuy,AR-Y,annual,2021,naphtha combustion consumption by to the public,54.3059132,TJ,N2O,0.6,kg/TJ,32.58354792,kg +780d589c-7a42-3412-95b7-5501912b06bf,SESCO,II.1.1,La Pampa,AR-L,annual,2021,naphtha combustion consumption by to the public,68.0256192,TJ,CO2,73300.0,kg/TJ,4986277.887359999,kg +7e398758-3b83-397a-a4b6-f4d5eb6e7846,SESCO,II.1.1,La Pampa,AR-L,annual,2021,naphtha combustion consumption by to the public,68.0256192,TJ,CH4,3.0,kg/TJ,204.07685759999998,kg +0081af81-a459-306c-bda5-a1e9cecf23da,SESCO,II.1.1,La Pampa,AR-L,annual,2021,naphtha combustion consumption by to the public,68.0256192,TJ,N2O,0.6,kg/TJ,40.81537151999999,kg +d91e7cd0-bd99-3ad6-9e5b-b9413ba66cf8,SESCO,II.1.1,La Rioja,AR-F,annual,2021,naphtha combustion consumption by to the public,36.8472104,TJ,CO2,73300.0,kg/TJ,2700900.52232,kg +98a6fb49-54d8-3a02-be0b-65df2a217961,SESCO,II.1.1,La Rioja,AR-F,annual,2021,naphtha combustion consumption by to the public,36.8472104,TJ,CH4,3.0,kg/TJ,110.54163120000001,kg +7b0e083b-dd4d-3661-a46d-7c5a1d94e46f,SESCO,II.1.1,La Rioja,AR-F,annual,2021,naphtha combustion consumption by to the public,36.8472104,TJ,N2O,0.6,kg/TJ,22.10832624,kg +b9a5a572-b053-3fe1-bf63-ebdedf621516,SESCO,II.1.1,Mendoza,AR-M,annual,2021,naphtha combustion consumption by to the public,207.06202439999998,TJ,CO2,73300.0,kg/TJ,15177646.388519999,kg +171ab8e9-3f9c-3421-a773-480c7af623dd,SESCO,II.1.1,Mendoza,AR-M,annual,2021,naphtha combustion consumption by to the public,207.06202439999998,TJ,CH4,3.0,kg/TJ,621.1860732,kg +2cdd58db-12ed-361e-a14e-733711d900ee,SESCO,II.1.1,Mendoza,AR-M,annual,2021,naphtha combustion consumption by to the public,207.06202439999998,TJ,N2O,0.6,kg/TJ,124.23721463999999,kg +c4405476-531b-334f-940c-bb2432224b15,SESCO,II.1.1,Misiones,AR-N,annual,2021,naphtha combustion consumption by to the public,168.61669439999997,TJ,CO2,73300.0,kg/TJ,12359603.699519997,kg +4280dd6d-2a7b-33ce-9dbe-7e38a6e131ee,SESCO,II.1.1,Misiones,AR-N,annual,2021,naphtha combustion consumption by to the public,168.61669439999997,TJ,CH4,3.0,kg/TJ,505.8500831999999,kg +f395b389-2c8f-32e2-bb9c-4c1cd35f4ff5,SESCO,II.1.1,Misiones,AR-N,annual,2021,naphtha combustion consumption by to the public,168.61669439999997,TJ,N2O,0.6,kg/TJ,101.17001663999999,kg +1e8f3f78-2c39-3e87-a55b-1f8c770c938f,SESCO,II.1.1,Neuquén,AR-Q,annual,2021,naphtha combustion consumption by to the public,221.71647959999999,TJ,CO2,73300.0,kg/TJ,16251817.95468,kg +861df249-629e-3223-b4a9-4da1f260c597,SESCO,II.1.1,Neuquén,AR-Q,annual,2021,naphtha combustion consumption by to the public,221.71647959999999,TJ,CH4,3.0,kg/TJ,665.1494388,kg +f45ed8c2-0f41-3bce-aa9f-eaa9ffdeca69,SESCO,II.1.1,Neuquén,AR-Q,annual,2021,naphtha combustion consumption by to the public,221.71647959999999,TJ,N2O,0.6,kg/TJ,133.02988775999998,kg +4a92fbff-3aad-3177-a68d-893bb21a2289,SESCO,II.1.1,Rio Negro,AR-R,annual,2021,naphtha combustion consumption by to the public,275.47963519999996,TJ,CO2,73300.0,kg/TJ,20192657.260159995,kg +9c8bb955-aa0b-31bb-809e-09930f42e770,SESCO,II.1.1,Rio Negro,AR-R,annual,2021,naphtha combustion consumption by to the public,275.47963519999996,TJ,CH4,3.0,kg/TJ,826.4389055999999,kg +b7fb22d6-a3b6-3d20-9d92-321815308832,SESCO,II.1.1,Rio Negro,AR-R,annual,2021,naphtha combustion consumption by to the public,275.47963519999996,TJ,N2O,0.6,kg/TJ,165.28778111999998,kg +60b5a89d-491e-3d11-9c4a-cd86ec1dc521,SESCO,II.1.1,Salta,AR-A,annual,2021,naphtha combustion consumption by to the public,34.4048012,TJ,CO2,73300.0,kg/TJ,2521871.92796,kg +9f8e4c1a-2431-342a-a074-f174900ee431,SESCO,II.1.1,Salta,AR-A,annual,2021,naphtha combustion consumption by to the public,34.4048012,TJ,CH4,3.0,kg/TJ,103.2144036,kg +962400ac-f347-383e-b698-70e32f99b609,SESCO,II.1.1,Salta,AR-A,annual,2021,naphtha combustion consumption by to the public,34.4048012,TJ,N2O,0.6,kg/TJ,20.64288072,kg +45b3391b-9e8a-3455-b748-12bba3378f71,SESCO,II.1.1,San Juan,AR-J,annual,2021,naphtha combustion consumption by to the public,40.67666679999999,TJ,CO2,73300.0,kg/TJ,2981599.6764399996,kg +195847b4-b175-36cb-aa70-d3e69abf1bc4,SESCO,II.1.1,San Juan,AR-J,annual,2021,naphtha combustion consumption by to the public,40.67666679999999,TJ,CH4,3.0,kg/TJ,122.03000039999998,kg +e64d494e-830b-352d-971f-c3344554ce39,SESCO,II.1.1,San Juan,AR-J,annual,2021,naphtha combustion consumption by to the public,40.67666679999999,TJ,N2O,0.6,kg/TJ,24.406000079999995,kg +c3270b62-0d44-3ad0-86fd-923f05174a9a,SESCO,II.1.1,San Luis,AR-D,annual,2021,naphtha combustion consumption by to the public,135.086336,TJ,CO2,73300.0,kg/TJ,9901828.4288,kg +026fef7a-ed47-3637-81fc-257fa9e8a6f7,SESCO,II.1.1,San Luis,AR-D,annual,2021,naphtha combustion consumption by to the public,135.086336,TJ,CH4,3.0,kg/TJ,405.259008,kg +5a7e4569-5342-37e0-9e87-bf2073c61934,SESCO,II.1.1,San Luis,AR-D,annual,2021,naphtha combustion consumption by to the public,135.086336,TJ,N2O,0.6,kg/TJ,81.05180159999999,kg +584f282c-e457-3f9a-a728-c74b3a829b3a,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2021,naphtha combustion consumption by to the public,107.43585159999999,TJ,CO2,73300.0,kg/TJ,7875047.92228,kg +b49129ea-4e45-31da-8894-2864b8cfa6aa,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2021,naphtha combustion consumption by to the public,107.43585159999999,TJ,CH4,3.0,kg/TJ,322.3075548,kg +08288e26-c530-3256-a7e6-e91fde7a0d2e,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2021,naphtha combustion consumption by to the public,107.43585159999999,TJ,N2O,0.6,kg/TJ,64.46151096,kg +0cd52e08-bba6-3fdf-a1c0-12951691c832,SESCO,II.1.1,Santa Fe,AR-S,annual,2021,naphtha combustion consumption by to the public,764.835918,TJ,CO2,73300.0,kg/TJ,56062472.7894,kg +54ce9979-7ca1-3e6c-bb5b-2413d91b68fb,SESCO,II.1.1,Santa Fe,AR-S,annual,2021,naphtha combustion consumption by to the public,764.835918,TJ,CH4,3.0,kg/TJ,2294.507754,kg +2f2a09b6-75a4-3768-9961-d9fee9b2ea48,SESCO,II.1.1,Santa Fe,AR-S,annual,2021,naphtha combustion consumption by to the public,764.835918,TJ,N2O,0.6,kg/TJ,458.9015508,kg +6cbad78c-aa8c-3404-ae0b-a784d4d642a0,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2021,naphtha combustion consumption by to the public,122.39183879999999,TJ,CO2,73300.0,kg/TJ,8971321.784039998,kg +90fa4801-86ee-3834-b0d3-0676bcc959c1,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2021,naphtha combustion consumption by to the public,122.39183879999999,TJ,CH4,3.0,kg/TJ,367.1755164,kg +7914f067-0266-305f-81d7-82c485fa2ba0,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2021,naphtha combustion consumption by to the public,122.39183879999999,TJ,N2O,0.6,kg/TJ,73.43510327999999,kg +b065bc70-e52e-354d-a31d-8eea78e78171,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2021,naphtha combustion consumption by to the public,36.78690399999999,TJ,CO2,73300.0,kg/TJ,2696480.0631999993,kg +a546bbb4-013a-3da6-8339-3e82ed904569,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2021,naphtha combustion consumption by to the public,36.78690399999999,TJ,CH4,3.0,kg/TJ,110.36071199999998,kg +7c6b8fa7-bea4-370b-af94-c57134dbdb5e,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2021,naphtha combustion consumption by to the public,36.78690399999999,TJ,N2O,0.6,kg/TJ,22.072142399999994,kg +3313b09f-c2aa-327c-af85-fd3f32432bdf,SESCO,II.1.1,Tucuman,AR-T,annual,2021,naphtha combustion consumption by to the public,35.7013888,TJ,CO2,73300.0,kg/TJ,2616911.79904,kg +7ef320a4-ff0d-3a6a-a79e-fb87f21dae1c,SESCO,II.1.1,Tucuman,AR-T,annual,2021,naphtha combustion consumption by to the public,35.7013888,TJ,CH4,3.0,kg/TJ,107.1041664,kg +fa65683b-d915-34d9-a00d-7242e03dfa48,SESCO,II.1.1,Tucuman,AR-T,annual,2021,naphtha combustion consumption by to the public,35.7013888,TJ,N2O,0.6,kg/TJ,21.420833279999997,kg +b53f0e79-444b-3d0b-a26a-65b9775b0fb2,SESCO,II.1.1,Buenos Aires,AR-B,annual,2021,naphtha combustion consumption by freight transport,11.1265308,TJ,CO2,73300.0,kg/TJ,815574.7076399999,kg +47f1ef6c-daf3-369a-8401-c8fcbf1477a0,SESCO,II.1.1,Buenos Aires,AR-B,annual,2021,naphtha combustion consumption by freight transport,11.1265308,TJ,CH4,3.0,kg/TJ,33.3795924,kg +d2e8a4df-e9d1-32fe-8231-e85b0e2b07fa,SESCO,II.1.1,Buenos Aires,AR-B,annual,2021,naphtha combustion consumption by freight transport,11.1265308,TJ,N2O,0.6,kg/TJ,6.675918479999999,kg +d197bc31-f789-36df-a8bf-16f82876c546,SESCO,II.1.1,Capital Federal,AR-C,annual,2021,naphtha combustion consumption by freight transport,3.76915,TJ,CO2,73300.0,kg/TJ,276278.695,kg +f1e518da-cfbf-303b-836e-e3fe8ef57343,SESCO,II.1.1,Capital Federal,AR-C,annual,2021,naphtha combustion consumption by freight transport,3.76915,TJ,CH4,3.0,kg/TJ,11.30745,kg +78dff9fe-fd9a-3d1d-9380-c3f28576e4fd,SESCO,II.1.1,Capital Federal,AR-C,annual,2021,naphtha combustion consumption by freight transport,3.76915,TJ,N2O,0.6,kg/TJ,2.26149,kg +42f9d2a0-b176-318f-92ec-838f54121029,SESCO,II.1.1,Córdoba,AR-X,annual,2021,naphtha combustion consumption by freight transport,1.055362,TJ,CO2,73300.0,kg/TJ,77358.0346,kg +90607073-e1bc-3a87-b8c7-33ba4f0eb093,SESCO,II.1.1,Córdoba,AR-X,annual,2021,naphtha combustion consumption by freight transport,1.055362,TJ,CH4,3.0,kg/TJ,3.166086,kg +e3afe063-417c-3f8d-8a38-210c25a96704,SESCO,II.1.1,Córdoba,AR-X,annual,2021,naphtha combustion consumption by freight transport,1.055362,TJ,N2O,0.6,kg/TJ,0.6332171999999999,kg +e7fde867-20ca-3e6a-8017-ef0915772b30,SESCO,II.1.1,Entre Rios,AR-E,annual,2021,naphtha combustion consumption by freight transport,0.48245119999999997,TJ,CO2,73300.0,kg/TJ,35363.672959999996,kg +66686fe8-045e-364c-8350-61d5de266e12,SESCO,II.1.1,Entre Rios,AR-E,annual,2021,naphtha combustion consumption by freight transport,0.48245119999999997,TJ,CH4,3.0,kg/TJ,1.4473536,kg +0a776743-ee49-3958-b7f8-606e7702cc91,SESCO,II.1.1,Entre Rios,AR-E,annual,2021,naphtha combustion consumption by freight transport,0.48245119999999997,TJ,N2O,0.6,kg/TJ,0.28947071999999996,kg +53f1a1f8-04b4-3462-8511-401762acb47b,SESCO,II.1.1,Mendoza,AR-M,annual,2021,naphtha combustion consumption by freight transport,0.0904596,TJ,CO2,73300.0,kg/TJ,6630.68868,kg +31d32054-d13b-3adf-a1bf-6b53b2172f7b,SESCO,II.1.1,Mendoza,AR-M,annual,2021,naphtha combustion consumption by freight transport,0.0904596,TJ,CH4,3.0,kg/TJ,0.27137880000000003,kg +629a6df6-438f-3204-8232-5c79cb082230,SESCO,II.1.1,Mendoza,AR-M,annual,2021,naphtha combustion consumption by freight transport,0.0904596,TJ,N2O,0.6,kg/TJ,0.05427576,kg +1b03d75c-c8e0-3757-83e3-80046688a246,SESCO,II.1.1,Santa Fe,AR-S,annual,2021,naphtha combustion consumption by freight transport,1.7187323999999997,TJ,CO2,73300.0,kg/TJ,125983.08491999998,kg +4aefbdc5-32f3-3674-9611-468e0eb06f22,SESCO,II.1.1,Santa Fe,AR-S,annual,2021,naphtha combustion consumption by freight transport,1.7187323999999997,TJ,CH4,3.0,kg/TJ,5.156197199999999,kg +8d9c24c8-00a4-3dcd-9aa6-521c8288a9f4,SESCO,II.1.1,Santa Fe,AR-S,annual,2021,naphtha combustion consumption by freight transport,1.7187323999999997,TJ,N2O,0.6,kg/TJ,1.0312394399999998,kg +40fa5b00-b42b-32cf-bef6-3142f883a22f,SESCO,II.1.1,Buenos Aires,AR-B,annual,2021,naphtha combustion consumption by freight transport,7.4779936,TJ,CO2,73300.0,kg/TJ,548136.93088,kg +27256f3e-23e7-33aa-bf2a-20da8b1f3e97,SESCO,II.1.1,Buenos Aires,AR-B,annual,2021,naphtha combustion consumption by freight transport,7.4779936,TJ,CH4,3.0,kg/TJ,22.4339808,kg +a8586551-cdaa-32d9-bacc-49f549f111e4,SESCO,II.1.1,Buenos Aires,AR-B,annual,2021,naphtha combustion consumption by freight transport,7.4779936,TJ,N2O,0.6,kg/TJ,4.48679616,kg +8eaf8dcc-c3b3-31e8-81e3-84d6fc223d98,SESCO,II.1.1,Capital Federal,AR-C,annual,2021,naphtha combustion consumption by freight transport,2.9248603999999996,TJ,CO2,73300.0,kg/TJ,214392.26731999996,kg +a3669f5e-79c7-31c5-a120-82947e77c62b,SESCO,II.1.1,Capital Federal,AR-C,annual,2021,naphtha combustion consumption by freight transport,2.9248603999999996,TJ,CH4,3.0,kg/TJ,8.774581199999998,kg +fb26a1ff-e396-37c2-bb79-2e5b175a5cd6,SESCO,II.1.1,Capital Federal,AR-C,annual,2021,naphtha combustion consumption by freight transport,2.9248603999999996,TJ,N2O,0.6,kg/TJ,1.7549162399999998,kg +c300c9b9-5724-3232-9b6e-5a4f12d42eb7,SESCO,II.1.1,Corrientes,AR-W,annual,2021,naphtha combustion consumption by freight transport,0.030153199999999998,TJ,CO2,73300.0,kg/TJ,2210.2295599999998,kg +70756428-9c9e-3955-87ac-74d1150801a9,SESCO,II.1.1,Corrientes,AR-W,annual,2021,naphtha combustion consumption by freight transport,0.030153199999999998,TJ,CH4,3.0,kg/TJ,0.0904596,kg +507a428f-0fcd-33ae-af72-2733185065e0,SESCO,II.1.1,Corrientes,AR-W,annual,2021,naphtha combustion consumption by freight transport,0.030153199999999998,TJ,N2O,0.6,kg/TJ,0.018091919999999997,kg +0dc1a7ae-df8c-33cd-8c19-5967ec6ba748,SESCO,II.1.1,Córdoba,AR-X,annual,2021,naphtha combustion consumption by freight transport,0.603064,TJ,CO2,73300.0,kg/TJ,44204.5912,kg +96a0f18a-6416-3863-94c8-d342fd926ccb,SESCO,II.1.1,Córdoba,AR-X,annual,2021,naphtha combustion consumption by freight transport,0.603064,TJ,CH4,3.0,kg/TJ,1.8091920000000001,kg +ead93018-66f8-33ba-b148-927efb6d1d8e,SESCO,II.1.1,Córdoba,AR-X,annual,2021,naphtha combustion consumption by freight transport,0.603064,TJ,N2O,0.6,kg/TJ,0.3618384,kg +4669687f-0508-35c4-8884-6cf0293ae453,SESCO,II.1.1,Entre Rios,AR-E,annual,2021,naphtha combustion consumption by freight transport,0.5126044,TJ,CO2,73300.0,kg/TJ,37573.902519999996,kg +06f4f46a-bc2d-3f71-ba93-7598f919817d,SESCO,II.1.1,Entre Rios,AR-E,annual,2021,naphtha combustion consumption by freight transport,0.5126044,TJ,CH4,3.0,kg/TJ,1.5378132,kg +187f1071-08c7-3b68-aeb7-0d1d88ebdab8,SESCO,II.1.1,Entre Rios,AR-E,annual,2021,naphtha combustion consumption by freight transport,0.5126044,TJ,N2O,0.6,kg/TJ,0.30756263999999994,kg +b55b7043-394e-3b7e-bd7b-7bf8d79acad1,SESCO,II.1.1,Rio Negro,AR-R,annual,2021,naphtha combustion consumption by freight transport,0.030153199999999998,TJ,CO2,73300.0,kg/TJ,2210.2295599999998,kg +9c9fba2d-6406-33dd-9d6d-7aff887ad1ad,SESCO,II.1.1,Rio Negro,AR-R,annual,2021,naphtha combustion consumption by freight transport,0.030153199999999998,TJ,CH4,3.0,kg/TJ,0.0904596,kg +032b6fc9-6e08-3fd4-a1cf-368b33e06039,SESCO,II.1.1,Rio Negro,AR-R,annual,2021,naphtha combustion consumption by freight transport,0.030153199999999998,TJ,N2O,0.6,kg/TJ,0.018091919999999997,kg +1e64852d-43d4-3f15-b148-c7dd1337e5c3,SESCO,II.1.1,Santa Fe,AR-S,annual,2021,naphtha combustion consumption by freight transport,1.2965876,TJ,CO2,73300.0,kg/TJ,95039.87108000001,kg +3af9e899-8f0f-367e-9dc7-c13679b05f09,SESCO,II.1.1,Santa Fe,AR-S,annual,2021,naphtha combustion consumption by freight transport,1.2965876,TJ,CH4,3.0,kg/TJ,3.8897628,kg +c90768d5-d8e9-3222-a149-d81d758bf4a4,SESCO,II.1.1,Santa Fe,AR-S,annual,2021,naphtha combustion consumption by freight transport,1.2965876,TJ,N2O,0.6,kg/TJ,0.77795256,kg +32b0cfb5-8b6e-3324-aa48-05f8e6c8db0a,SESCO,II.1.1,Buenos Aires,AR-B,annual,2021,naphtha combustion consumption by public passenger transport,0.1809192,TJ,CO2,73300.0,kg/TJ,13261.37736,kg +f8158fe3-bba6-35ed-a125-add5f1352755,SESCO,II.1.1,Buenos Aires,AR-B,annual,2021,naphtha combustion consumption by public passenger transport,0.1809192,TJ,CH4,3.0,kg/TJ,0.5427576000000001,kg +3807ff54-bd31-3115-8109-dc5a3aa4ccb4,SESCO,II.1.1,Buenos Aires,AR-B,annual,2021,naphtha combustion consumption by public passenger transport,0.1809192,TJ,N2O,0.6,kg/TJ,0.10855152,kg +6a336eee-d92d-3db7-bd82-96007d9514d5,SESCO,II.1.1,Santa Fe,AR-S,annual,2021,naphtha combustion consumption by public passenger transport,0.33168519999999996,TJ,CO2,73300.0,kg/TJ,24312.525159999997,kg +606e10ff-271a-339f-8ec7-4fc809f02185,SESCO,II.1.1,Santa Fe,AR-S,annual,2021,naphtha combustion consumption by public passenger transport,0.33168519999999996,TJ,CH4,3.0,kg/TJ,0.9950555999999999,kg +2bbba2db-0682-3ae5-8bc0-c1fc4cb6c026,SESCO,II.1.1,Santa Fe,AR-S,annual,2021,naphtha combustion consumption by public passenger transport,0.33168519999999996,TJ,N2O,0.6,kg/TJ,0.19901111999999996,kg +b3d254ae-5540-338b-ae57-dc7a95b6d17d,SESCO,II.1.1,Buenos Aires,AR-B,annual,2021,naphtha combustion consumption by public passenger transport,0.301532,TJ,CO2,73300.0,kg/TJ,22102.2956,kg +d1341d16-8447-3b6e-bd98-eb38f85b4608,SESCO,II.1.1,Buenos Aires,AR-B,annual,2021,naphtha combustion consumption by public passenger transport,0.301532,TJ,CH4,3.0,kg/TJ,0.9045960000000001,kg +c67e2a65-09e4-3c9e-9c8e-305093412dfe,SESCO,II.1.1,Buenos Aires,AR-B,annual,2021,naphtha combustion consumption by public passenger transport,0.301532,TJ,N2O,0.6,kg/TJ,0.1809192,kg +0326d5ee-11a7-3049-b1e5-692275393a1d,SESCO,II.1.1,Capital Federal,AR-C,annual,2021,naphtha combustion consumption by public passenger transport,0.060306399999999996,TJ,CO2,73300.0,kg/TJ,4420.4591199999995,kg +d32bc139-a03f-30a6-a495-0247e5a80566,SESCO,II.1.1,Capital Federal,AR-C,annual,2021,naphtha combustion consumption by public passenger transport,0.060306399999999996,TJ,CH4,3.0,kg/TJ,0.1809192,kg +ad76267c-2942-3f95-8a45-247830bc5e8d,SESCO,II.1.1,Capital Federal,AR-C,annual,2021,naphtha combustion consumption by public passenger transport,0.060306399999999996,TJ,N2O,0.6,kg/TJ,0.036183839999999995,kg +4e32c448-c956-39e8-bb6d-093b4582e435,SESCO,II.1.1,Córdoba,AR-X,annual,2021,naphtha combustion consumption by public passenger transport,0.3618384,TJ,CO2,73300.0,kg/TJ,26522.75472,kg +27e95695-a1e7-3c45-b587-63b4db02efd1,SESCO,II.1.1,Córdoba,AR-X,annual,2021,naphtha combustion consumption by public passenger transport,0.3618384,TJ,CH4,3.0,kg/TJ,1.0855152000000001,kg +fb2008dd-d773-3aae-bfaa-83bce581eda8,SESCO,II.1.1,Córdoba,AR-X,annual,2021,naphtha combustion consumption by public passenger transport,0.3618384,TJ,N2O,0.6,kg/TJ,0.21710304,kg +194bf9ee-2577-34c1-94c8-732d91fe3f37,SESCO,II.1.1,Santa Fe,AR-S,annual,2021,naphtha combustion consumption by public passenger transport,0.030153199999999998,TJ,CO2,73300.0,kg/TJ,2210.2295599999998,kg +b800ddca-97e5-38d1-b358-f38c56a9d5df,SESCO,II.1.1,Santa Fe,AR-S,annual,2021,naphtha combustion consumption by public passenger transport,0.030153199999999998,TJ,CH4,3.0,kg/TJ,0.0904596,kg +c2376dc2-cb8d-3a6a-9967-7bc579656b3d,SESCO,II.1.1,Santa Fe,AR-S,annual,2021,naphtha combustion consumption by public passenger transport,0.030153199999999998,TJ,N2O,0.6,kg/TJ,0.018091919999999997,kg +a159c90e-9e85-372f-8cd6-7ef3ff8ca62a,SESCO,II.1.1,Catamarca,AR-K,annual,2021,naphtha combustion consumption by to the public,147.17927686000002,TJ,CO2,73300.0,kg/TJ,10788240.993838001,kg +3e0ce02b-bd21-338c-a74c-e5cc60c0be90,SESCO,II.1.1,Catamarca,AR-K,annual,2021,naphtha combustion consumption by to the public,147.17927686000002,TJ,CH4,3.0,kg/TJ,441.53783058000005,kg +decd8003-a5a4-3fc1-b8fa-22e2aa29fdb8,SESCO,II.1.1,Catamarca,AR-K,annual,2021,naphtha combustion consumption by to the public,147.17927686000002,TJ,N2O,0.6,kg/TJ,88.307566116,kg +9003a68b-7f65-3c58-a046-4e11881b4705,SESCO,II.1.1,Chaco,AR-H,annual,2021,naphtha combustion consumption by to the public,109.35751503599998,TJ,CO2,73300.0,kg/TJ,8015905.852138799,kg +369cca82-b385-35f1-814e-44a4c7ef8e8b,SESCO,II.1.1,Chaco,AR-H,annual,2021,naphtha combustion consumption by to the public,109.35751503599998,TJ,CH4,3.0,kg/TJ,328.07254510799993,kg +a4fd168d-f4ec-353b-8079-eb065d593948,SESCO,II.1.1,Chaco,AR-H,annual,2021,naphtha combustion consumption by to the public,109.35751503599998,TJ,N2O,0.6,kg/TJ,65.61450902159999,kg +c22e3f45-dc81-3550-afea-b88256847532,SESCO,II.1.1,Jujuy,AR-Y,annual,2021,naphtha combustion consumption by to the public,407.914600324,TJ,CO2,73300.0,kg/TJ,29900140.2037492,kg +5bd159ff-f252-38e3-b41c-bd32518d90b4,SESCO,II.1.1,Jujuy,AR-Y,annual,2021,naphtha combustion consumption by to the public,407.914600324,TJ,CH4,3.0,kg/TJ,1223.743800972,kg +4f97b877-1611-3f7c-acad-a6e20d67bf78,SESCO,II.1.1,Jujuy,AR-Y,annual,2021,naphtha combustion consumption by to the public,407.914600324,TJ,N2O,0.6,kg/TJ,244.74876019439998,kg +c70db8b8-7f37-3d7d-a131-e7c14005aab2,SESCO,II.1.1,La Rioja,AR-F,annual,2021,naphtha combustion consumption by to the public,417.475275448,TJ,CO2,73300.0,kg/TJ,30600937.6903384,kg +d4c560fe-beba-3b3a-a6cf-a227916aacfb,SESCO,II.1.1,La Rioja,AR-F,annual,2021,naphtha combustion consumption by to the public,417.475275448,TJ,CH4,3.0,kg/TJ,1252.425826344,kg +cc69c315-e3cc-3e5e-a539-5afa52492d75,SESCO,II.1.1,La Rioja,AR-F,annual,2021,naphtha combustion consumption by to the public,417.475275448,TJ,N2O,0.6,kg/TJ,250.4851652688,kg +74d65577-e626-3e65-b919-c6aa93353649,SESCO,II.1.1,Salta,AR-A,annual,2021,naphtha combustion consumption by to the public,994.526712872,TJ,CO2,73300.0,kg/TJ,72898808.0535176,kg +abb11459-1e62-33c2-bdfb-17cf38927fd9,SESCO,II.1.1,Salta,AR-A,annual,2021,naphtha combustion consumption by to the public,994.526712872,TJ,CH4,3.0,kg/TJ,2983.580138616,kg +2d66e049-6909-39a8-97fa-04dce561dd78,SESCO,II.1.1,Salta,AR-A,annual,2021,naphtha combustion consumption by to the public,994.526712872,TJ,N2O,0.6,kg/TJ,596.7160277232,kg +db3dc778-0237-3a84-924d-25a0f0607d2d,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2021,naphtha combustion consumption by to the public,276.339905996,TJ,CO2,73300.0,kg/TJ,20255715.1095068,kg +5ba3e325-7ca7-353b-bba0-92df71356139,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2021,naphtha combustion consumption by to the public,276.339905996,TJ,CH4,3.0,kg/TJ,829.0197179880001,kg +60a7212d-9a84-3b3b-90b5-58835c4c0725,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2021,naphtha combustion consumption by to the public,276.339905996,TJ,N2O,0.6,kg/TJ,165.8039435976,kg +68dd609f-4dbf-3155-8ce3-e487acec39a6,SESCO,II.1.1,Tucuman,AR-T,annual,2021,naphtha combustion consumption by to the public,2024.7765248479998,TJ,CO2,73300.0,kg/TJ,148416119.27135837,kg +dbd781d9-7e68-30a7-8673-7b33ae830959,SESCO,II.1.1,Tucuman,AR-T,annual,2021,naphtha combustion consumption by to the public,2024.7765248479998,TJ,CH4,3.0,kg/TJ,6074.329574543999,kg +d60acd8a-5763-37c0-bceb-bd08782301d8,SESCO,II.1.1,Tucuman,AR-T,annual,2021,naphtha combustion consumption by to the public,2024.7765248479998,TJ,N2O,0.6,kg/TJ,1214.8659149087998,kg +7eb52d2e-0874-303e-a65b-5be416ce68ed,SESCO,II.1.1,Catamarca,AR-K,annual,2021,naphtha combustion consumption by to the public,18.242384468,TJ,CO2,73300.0,kg/TJ,1337166.7815044,kg +447064e6-057b-39c0-a066-35ec6abb99ab,SESCO,II.1.1,Catamarca,AR-K,annual,2021,naphtha combustion consumption by to the public,18.242384468,TJ,CH4,3.0,kg/TJ,54.727153404000006,kg +c84a590e-e007-355b-8a89-c5978d366ee0,SESCO,II.1.1,Catamarca,AR-K,annual,2021,naphtha combustion consumption by to the public,18.242384468,TJ,N2O,0.6,kg/TJ,10.9454306808,kg +23fa79ba-dd83-3828-b852-cc4f4b8f64b8,SESCO,II.1.1,Chaco,AR-H,annual,2021,naphtha combustion consumption by to the public,3.9500691999999997,TJ,CO2,73300.0,kg/TJ,289540.07236,kg +eda3bf41-17d8-365c-9e6c-f3c41da46061,SESCO,II.1.1,Chaco,AR-H,annual,2021,naphtha combustion consumption by to the public,3.9500691999999997,TJ,CH4,3.0,kg/TJ,11.8502076,kg +2831a3ac-720a-3c73-a725-d755bd1dbed2,SESCO,II.1.1,Chaco,AR-H,annual,2021,naphtha combustion consumption by to the public,3.9500691999999997,TJ,N2O,0.6,kg/TJ,2.3700415199999996,kg +b9cc8707-dda0-38bf-808b-aa9cbe62986d,SESCO,II.1.1,Jujuy,AR-Y,annual,2021,naphtha combustion consumption by to the public,25.148070332,TJ,CO2,73300.0,kg/TJ,1843353.5553356,kg +7f08ac55-d598-3837-ae9a-caad42f11286,SESCO,II.1.1,Jujuy,AR-Y,annual,2021,naphtha combustion consumption by to the public,25.148070332,TJ,CH4,3.0,kg/TJ,75.444210996,kg +a964222f-4a69-3b73-b9cc-1e81f063120a,SESCO,II.1.1,Jujuy,AR-Y,annual,2021,naphtha combustion consumption by to the public,25.148070332,TJ,N2O,0.6,kg/TJ,15.088842199199998,kg +7622403c-7ec7-3e98-bf3e-8dfbf5ee5b56,SESCO,II.1.1,La Rioja,AR-F,annual,2021,naphtha combustion consumption by to the public,50.95468655199999,TJ,CO2,73300.0,kg/TJ,3734978.5242615994,kg +332e6019-9fbe-3a05-a3ee-5513d03fadd1,SESCO,II.1.1,La Rioja,AR-F,annual,2021,naphtha combustion consumption by to the public,50.95468655199999,TJ,CH4,3.0,kg/TJ,152.86405965599997,kg +e2a7a0e6-9c7a-3852-9712-af1bdab62486,SESCO,II.1.1,La Rioja,AR-F,annual,2021,naphtha combustion consumption by to the public,50.95468655199999,TJ,N2O,0.6,kg/TJ,30.572811931199993,kg +46572cd4-385f-3944-bb52-d0cbe9d5c176,SESCO,II.1.1,Salta,AR-A,annual,2021,naphtha combustion consumption by to the public,68.84970615599998,TJ,CO2,73300.0,kg/TJ,5046683.461234799,kg +abb80fec-afdc-3d5f-b165-278d82818228,SESCO,II.1.1,Salta,AR-A,annual,2021,naphtha combustion consumption by to the public,68.84970615599998,TJ,CH4,3.0,kg/TJ,206.54911846799996,kg +4b4e0f21-63ab-38dd-9b0e-6dced73e4a4f,SESCO,II.1.1,Salta,AR-A,annual,2021,naphtha combustion consumption by to the public,68.84970615599998,TJ,N2O,0.6,kg/TJ,41.30982369359999,kg +ccc07617-21a9-3e06-a714-065e94ab59e3,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2021,naphtha combustion consumption by to the public,33.875311008,TJ,CO2,73300.0,kg/TJ,2483060.2968864,kg +20e0600c-f39b-3eed-bb6f-2a79991d65c4,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2021,naphtha combustion consumption by to the public,33.875311008,TJ,CH4,3.0,kg/TJ,101.62593302399999,kg +4f431f6b-5d91-37ed-9421-32c0040c73fc,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2021,naphtha combustion consumption by to the public,33.875311008,TJ,N2O,0.6,kg/TJ,20.3251866048,kg +b234b4ef-00c2-34d3-8f57-6ae8ebe1cdf3,SESCO,II.1.1,Tucuman,AR-T,annual,2021,naphtha combustion consumption by to the public,191.807218988,TJ,CO2,73300.0,kg/TJ,14059469.151820399,kg +fbb51037-739a-334e-830d-297aed6851f8,SESCO,II.1.1,Tucuman,AR-T,annual,2021,naphtha combustion consumption by to the public,191.807218988,TJ,CH4,3.0,kg/TJ,575.421656964,kg +721996ec-ecc6-31d2-930d-6db039485d67,SESCO,II.1.1,Tucuman,AR-T,annual,2021,naphtha combustion consumption by to the public,191.807218988,TJ,N2O,0.6,kg/TJ,115.0843313928,kg +223c8685-8a86-3044-95e6-b63368d89b9f,SESCO,I.3.1,La Pampa,AR-L,annual,2021,naphtha combustion consumption by petrochemical industries,14.925834,TJ,CO2,73300.0,kg/TJ,1094063.6322,kg +d47963a4-ffcf-3fec-abdf-05024319dc83,SESCO,I.3.1,La Pampa,AR-L,annual,2021,naphtha combustion consumption by petrochemical industries,14.925834,TJ,CH4,3.0,kg/TJ,44.777502,kg +14a51f48-a0d7-314e-8b09-0f05511f78d1,SESCO,I.3.1,La Pampa,AR-L,annual,2021,naphtha combustion consumption by petrochemical industries,14.925834,TJ,N2O,0.6,kg/TJ,8.9555004,kg +3b1a29fb-bf2f-329d-a20e-c7d95935d369,SESCO,I.3.1,La Pampa,AR-L,annual,2021,naphtha combustion consumption by petrochemical industries,3.9500691999999997,TJ,CO2,73300.0,kg/TJ,289540.07236,kg +bc85cb2b-82e4-3de8-be54-ce9f9a951172,SESCO,I.3.1,La Pampa,AR-L,annual,2021,naphtha combustion consumption by petrochemical industries,3.9500691999999997,TJ,CH4,3.0,kg/TJ,11.8502076,kg +b5ba905b-9b6f-3fac-a3d3-d75ed232d77d,SESCO,I.3.1,La Pampa,AR-L,annual,2021,naphtha combustion consumption by petrochemical industries,3.9500691999999997,TJ,N2O,0.6,kg/TJ,2.3700415199999996,kg +c0af6563-2534-31d8-8fc7-bcdba8e6bd60,SESCO,II.5.1,Santa Fe,AR-S,annual,2021,naphtha combustion consumption by agriculture machines,1.206128,TJ,CO2,73300.0,kg/TJ,88409.1824,kg +d195dd45-ec73-37ab-805e-70d37f8ee4c4,SESCO,II.5.1,Santa Fe,AR-S,annual,2021,naphtha combustion consumption by agriculture machines,1.206128,TJ,CH4,3.0,kg/TJ,3.6183840000000003,kg +4d4c4d79-129d-3487-8d75-1f6e17da88a1,SESCO,II.5.1,Santa Fe,AR-S,annual,2021,naphtha combustion consumption by agriculture machines,1.206128,TJ,N2O,0.6,kg/TJ,0.7236768,kg +60fa76e8-6c1a-3c15-9846-bafcd1dcaac6,SESCO,II.5.1,Santa Fe,AR-S,annual,2021,naphtha combustion consumption by agriculture machines,0.5427576,TJ,CO2,73300.0,kg/TJ,39784.132079999996,kg +1f73641f-042a-3f74-a5e5-a3382440da60,SESCO,II.5.1,Santa Fe,AR-S,annual,2021,naphtha combustion consumption by agriculture machines,0.5427576,TJ,CH4,3.0,kg/TJ,1.6282728,kg +93c0173d-c1be-3a6c-b7dc-c5e26eb99a3f,SESCO,II.5.1,Santa Fe,AR-S,annual,2021,naphtha combustion consumption by agriculture machines,0.5427576,TJ,N2O,0.6,kg/TJ,0.32565456,kg +29f7ffaf-1a2c-3ee1-b2ae-463701d5ee01,SESCO,II.1.1,Buenos Aires,AR-B,annual,2021,naphtha combustion consumption by to the public,16661.6632644,TJ,CO2,73300.0,kg/TJ,1221299917.28052,kg +135c70d4-5378-30fe-b200-d89ef0a15379,SESCO,II.1.1,Buenos Aires,AR-B,annual,2021,naphtha combustion consumption by to the public,16661.6632644,TJ,CH4,3.0,kg/TJ,49984.989793199995,kg +e8ecac9a-6fb0-3799-8c3b-455c3ef2dd8b,SESCO,II.1.1,Buenos Aires,AR-B,annual,2021,naphtha combustion consumption by to the public,16661.6632644,TJ,N2O,0.6,kg/TJ,9996.997958639999,kg +d6303788-a163-35fb-bb01-120a9f2f3257,SESCO,II.1.1,Capital Federal,AR-C,annual,2021,naphtha combustion consumption by to the public,4343.6589195999995,TJ,CO2,73300.0,kg/TJ,318390198.80667996,kg +453484b5-77f4-31f6-b1b1-ed28e3be96a0,SESCO,II.1.1,Capital Federal,AR-C,annual,2021,naphtha combustion consumption by to the public,4343.6589195999995,TJ,CH4,3.0,kg/TJ,13030.9767588,kg +811eabf5-e747-33d2-b577-f480ff03acdd,SESCO,II.1.1,Capital Federal,AR-C,annual,2021,naphtha combustion consumption by to the public,4343.6589195999995,TJ,N2O,0.6,kg/TJ,2606.1953517599995,kg +1350c4b0-a994-396f-adf3-be34079c6750,SESCO,II.1.1,Catamarca,AR-K,annual,2021,naphtha combustion consumption by to the public,65.88474199999999,TJ,CO2,73300.0,kg/TJ,4829351.588599999,kg +61b964d4-9bec-37ff-a6d9-b5b0bd828eb4,SESCO,II.1.1,Catamarca,AR-K,annual,2021,naphtha combustion consumption by to the public,65.88474199999999,TJ,CH4,3.0,kg/TJ,197.65422599999997,kg +f7eb6f61-3905-3f38-9dfc-a67bf74305db,SESCO,II.1.1,Catamarca,AR-K,annual,2021,naphtha combustion consumption by to the public,65.88474199999999,TJ,N2O,0.6,kg/TJ,39.530845199999995,kg +d8f1a4ce-fa5d-3a17-90de-404404299289,SESCO,II.1.1,Chaco,AR-H,annual,2021,naphtha combustion consumption by to the public,1032.2043423999999,TJ,CO2,73300.0,kg/TJ,75660578.29791999,kg +71577b5a-b416-3f46-a780-475e5100b70d,SESCO,II.1.1,Chaco,AR-H,annual,2021,naphtha combustion consumption by to the public,1032.2043423999999,TJ,CH4,3.0,kg/TJ,3096.6130271999996,kg +9cabaa5c-cc2a-3f6c-a786-dda31465639b,SESCO,II.1.1,Chaco,AR-H,annual,2021,naphtha combustion consumption by to the public,1032.2043423999999,TJ,N2O,0.6,kg/TJ,619.3226054399998,kg +33c6c508-7de3-3173-8669-ba69e373f86c,SESCO,II.1.1,Corrientes,AR-W,annual,2021,naphtha combustion consumption by to the public,1074.2982095999998,TJ,CO2,73300.0,kg/TJ,78746058.76367998,kg +db59e35e-f4fa-3d23-b434-5814c0fb9468,SESCO,II.1.1,Corrientes,AR-W,annual,2021,naphtha combustion consumption by to the public,1074.2982095999998,TJ,CH4,3.0,kg/TJ,3222.8946287999997,kg +44b6c76d-5c54-3e76-ad8a-12610e2ab03c,SESCO,II.1.1,Corrientes,AR-W,annual,2021,naphtha combustion consumption by to the public,1074.2982095999998,TJ,N2O,0.6,kg/TJ,644.5789257599998,kg +d2a1b0e3-8088-32bc-ad7e-ba745bafabac,SESCO,II.1.1,Córdoba,AR-X,annual,2021,naphtha combustion consumption by to the public,4092.3018444,TJ,CO2,73300.0,kg/TJ,299965725.19452,kg +430cf04c-7900-3877-b922-f44e80c4a190,SESCO,II.1.1,Córdoba,AR-X,annual,2021,naphtha combustion consumption by to the public,4092.3018444,TJ,CH4,3.0,kg/TJ,12276.905533199999,kg +331a1c22-c5cd-3a5a-ae26-53d84c067a13,SESCO,II.1.1,Córdoba,AR-X,annual,2021,naphtha combustion consumption by to the public,4092.3018444,TJ,N2O,0.6,kg/TJ,2455.38110664,kg +473875d5-4902-3cfc-bb25-5784d0ece20c,SESCO,II.1.1,Entre Rios,AR-E,annual,2021,naphtha combustion consumption by to the public,1239.598052,TJ,CO2,73300.0,kg/TJ,90862537.2116,kg +3d238d7a-508c-31d9-842a-3f1a5fe172f3,SESCO,II.1.1,Entre Rios,AR-E,annual,2021,naphtha combustion consumption by to the public,1239.598052,TJ,CH4,3.0,kg/TJ,3718.794156,kg +5b3c4ecd-4244-3936-8525-dd77d3d54a45,SESCO,II.1.1,Entre Rios,AR-E,annual,2021,naphtha combustion consumption by to the public,1239.598052,TJ,N2O,0.6,kg/TJ,743.7588312,kg +ce0a785e-a32d-3c74-9d00-a2753d5f3278,SESCO,II.1.1,Formosa,AR-P,annual,2021,naphtha combustion consumption by to the public,345.3445995999999,TJ,CO2,73300.0,kg/TJ,25313759.150679994,kg +8c3d14da-75cf-31de-9ec4-1017437fcfb0,SESCO,II.1.1,Formosa,AR-P,annual,2021,naphtha combustion consumption by to the public,345.3445995999999,TJ,CH4,3.0,kg/TJ,1036.0337987999997,kg +b0c8c795-726a-3eec-b03f-75cbf6d891bf,SESCO,II.1.1,Formosa,AR-P,annual,2021,naphtha combustion consumption by to the public,345.3445995999999,TJ,N2O,0.6,kg/TJ,207.20675975999995,kg +029c50d6-567d-3e58-950b-595e0af63eed,SESCO,II.1.1,Jujuy,AR-Y,annual,2021,naphtha combustion consumption by to the public,241.40651919999996,TJ,CO2,73300.0,kg/TJ,17695097.857359998,kg +e6253bd6-5a99-3b49-832b-f7461bab8501,SESCO,II.1.1,Jujuy,AR-Y,annual,2021,naphtha combustion consumption by to the public,241.40651919999996,TJ,CH4,3.0,kg/TJ,724.2195575999999,kg +1f4e0d3a-dcc9-30cb-ab9f-676b6aabdd79,SESCO,II.1.1,Jujuy,AR-Y,annual,2021,naphtha combustion consumption by to the public,241.40651919999996,TJ,N2O,0.6,kg/TJ,144.84391151999998,kg +36f70f42-6391-3147-84a5-e73488ec2bcc,SESCO,II.1.1,La Pampa,AR-L,annual,2021,naphtha combustion consumption by to the public,298.06438199999997,TJ,CO2,73300.0,kg/TJ,21848119.2006,kg +ffebabad-fbfa-30c5-8d97-76703612e182,SESCO,II.1.1,La Pampa,AR-L,annual,2021,naphtha combustion consumption by to the public,298.06438199999997,TJ,CH4,3.0,kg/TJ,894.1931459999998,kg +71c25c17-6dd7-3b9e-b654-e73ee4c20ebb,SESCO,II.1.1,La Pampa,AR-L,annual,2021,naphtha combustion consumption by to the public,298.06438199999997,TJ,N2O,0.6,kg/TJ,178.83862919999999,kg +44c7405e-4de7-3592-9424-245a8def337a,SESCO,II.1.1,La Rioja,AR-F,annual,2021,naphtha combustion consumption by to the public,237.45645,TJ,CO2,73300.0,kg/TJ,17405557.785,kg +f373e012-f767-38e7-8dd5-3523a79fe89b,SESCO,II.1.1,La Rioja,AR-F,annual,2021,naphtha combustion consumption by to the public,237.45645,TJ,CH4,3.0,kg/TJ,712.3693499999999,kg +e8ed7413-ce08-3cac-b59d-9833f4d308b6,SESCO,II.1.1,La Rioja,AR-F,annual,2021,naphtha combustion consumption by to the public,237.45645,TJ,N2O,0.6,kg/TJ,142.47386999999998,kg +f1d0b007-2855-3963-8189-589deaa99fdf,SESCO,II.1.1,Mendoza,AR-M,annual,2021,naphtha combustion consumption by to the public,1678.0557331999998,TJ,CO2,73300.0,kg/TJ,123001485.24355999,kg +6c1444a3-fac7-3adc-a9ef-40611a868004,SESCO,II.1.1,Mendoza,AR-M,annual,2021,naphtha combustion consumption by to the public,1678.0557331999998,TJ,CH4,3.0,kg/TJ,5034.1671996,kg +645ffc2b-8a83-3839-87ef-aff99ad57a2c,SESCO,II.1.1,Mendoza,AR-M,annual,2021,naphtha combustion consumption by to the public,1678.0557331999998,TJ,N2O,0.6,kg/TJ,1006.8334399199998,kg +193941c2-092e-36c7-a378-ebc38b73eea6,SESCO,II.1.1,Misiones,AR-N,annual,2021,naphtha combustion consumption by to the public,1238.3014643999998,TJ,CO2,73300.0,kg/TJ,90767497.34051998,kg +7b8a2e74-3f62-3327-b953-5d2d665867ae,SESCO,II.1.1,Misiones,AR-N,annual,2021,naphtha combustion consumption by to the public,1238.3014643999998,TJ,CH4,3.0,kg/TJ,3714.9043931999995,kg +34a07038-f767-394f-901e-bd393ef812fa,SESCO,II.1.1,Misiones,AR-N,annual,2021,naphtha combustion consumption by to the public,1238.3014643999998,TJ,N2O,0.6,kg/TJ,742.9808786399998,kg +5979d576-6702-3473-9038-69d88d2abe4e,SESCO,II.1.1,Neuquén,AR-Q,annual,2021,naphtha combustion consumption by to the public,480.00879079999993,TJ,CO2,73300.0,kg/TJ,35184644.36563999,kg +b3f63160-d7ac-3aae-b861-5771079a46c4,SESCO,II.1.1,Neuquén,AR-Q,annual,2021,naphtha combustion consumption by to the public,480.00879079999993,TJ,CH4,3.0,kg/TJ,1440.0263723999997,kg +824444ea-0d8d-3c70-8274-15eb9188e6e4,SESCO,II.1.1,Neuquén,AR-Q,annual,2021,naphtha combustion consumption by to the public,480.00879079999993,TJ,N2O,0.6,kg/TJ,288.00527447999997,kg +d009f7a9-47b6-3cee-8e07-9c1875cf9970,SESCO,II.1.1,Rio Negro,AR-R,annual,2021,naphtha combustion consumption by to the public,335.87649479999993,TJ,CO2,73300.0,kg/TJ,24619747.068839993,kg +756d9753-b7ea-3b3b-bce6-276db0c2c305,SESCO,II.1.1,Rio Negro,AR-R,annual,2021,naphtha combustion consumption by to the public,335.87649479999993,TJ,CH4,3.0,kg/TJ,1007.6294843999998,kg +9619bb23-4180-39b2-a12a-f3d96b055461,SESCO,II.1.1,Rio Negro,AR-R,annual,2021,naphtha combustion consumption by to the public,335.87649479999993,TJ,N2O,0.6,kg/TJ,201.52589687999995,kg +6e260202-e650-3c31-989f-d18406321b41,SESCO,II.1.1,Salta,AR-A,annual,2021,naphtha combustion consumption by to the public,304.2759412,TJ,CO2,73300.0,kg/TJ,22303426.48996,kg +42e32995-dbae-3f2b-bf69-3218d453bf61,SESCO,II.1.1,Salta,AR-A,annual,2021,naphtha combustion consumption by to the public,304.2759412,TJ,CH4,3.0,kg/TJ,912.8278235999999,kg +1588ec1f-8f97-3bfa-9508-bf51c5edc716,SESCO,II.1.1,Salta,AR-A,annual,2021,naphtha combustion consumption by to the public,304.2759412,TJ,N2O,0.6,kg/TJ,182.56556471999997,kg +101d52bb-9b18-3ba9-bcaf-79c71d701318,SESCO,II.1.1,San Juan,AR-J,annual,2021,naphtha combustion consumption by to the public,338.620436,TJ,CO2,73300.0,kg/TJ,24820877.9588,kg +29f33be9-74e3-329e-9b39-9b6512a23a7c,SESCO,II.1.1,San Juan,AR-J,annual,2021,naphtha combustion consumption by to the public,338.620436,TJ,CH4,3.0,kg/TJ,1015.861308,kg +5befb292-8151-33ee-b089-e73f723ff903,SESCO,II.1.1,San Juan,AR-J,annual,2021,naphtha combustion consumption by to the public,338.620436,TJ,N2O,0.6,kg/TJ,203.17226159999998,kg +b771d2c7-05e5-3803-9033-0ead80082833,SESCO,II.1.1,San Luis,AR-D,annual,2021,naphtha combustion consumption by to the public,276.41438439999996,TJ,CO2,73300.0,kg/TJ,20261174.376519997,kg +6399b2bb-4e34-3a56-aa1f-376b0e89d6bf,SESCO,II.1.1,San Luis,AR-D,annual,2021,naphtha combustion consumption by to the public,276.41438439999996,TJ,CH4,3.0,kg/TJ,829.2431531999998,kg +9e82436c-1bfd-3d58-8b8f-ef25375f70fe,SESCO,II.1.1,San Luis,AR-D,annual,2021,naphtha combustion consumption by to the public,276.41438439999996,TJ,N2O,0.6,kg/TJ,165.84863063999998,kg +79214773-da4c-34d0-aa1b-ad4bef376686,SESCO,II.1.1,Santa Fe,AR-S,annual,2021,naphtha combustion consumption by to the public,3340.6730279999997,TJ,CO2,73300.0,kg/TJ,244871332.95239997,kg +0c781d3f-40b9-331e-a326-3b614c784fcb,SESCO,II.1.1,Santa Fe,AR-S,annual,2021,naphtha combustion consumption by to the public,3340.6730279999997,TJ,CH4,3.0,kg/TJ,10022.019084,kg +d55416f9-ad53-3d1f-ba16-22debf6b2028,SESCO,II.1.1,Santa Fe,AR-S,annual,2021,naphtha combustion consumption by to the public,3340.6730279999997,TJ,N2O,0.6,kg/TJ,2004.4038167999997,kg +72417993-cc7b-37dc-99cc-b6d86e4415cb,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2021,naphtha combustion consumption by to the public,521.2282151999999,TJ,CO2,73300.0,kg/TJ,38206028.174159996,kg +1b50608b-47aa-399d-9ede-088bc431e7a3,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2021,naphtha combustion consumption by to the public,521.2282151999999,TJ,CH4,3.0,kg/TJ,1563.6846455999998,kg +965a1c44-6640-36c7-9c25-de921a87ad48,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2021,naphtha combustion consumption by to the public,521.2282151999999,TJ,N2O,0.6,kg/TJ,312.73692911999996,kg +c6ddcb84-aab8-3273-a482-131111763b2e,SESCO,II.1.1,Tucuman,AR-T,annual,2021,naphtha combustion consumption by to the public,1016.6754443999998,TJ,CO2,73300.0,kg/TJ,74522310.07451999,kg +8ba51505-cb74-324b-acf3-dcda51db8877,SESCO,II.1.1,Tucuman,AR-T,annual,2021,naphtha combustion consumption by to the public,1016.6754443999998,TJ,CH4,3.0,kg/TJ,3050.0263331999995,kg +d2098439-e8e3-3116-ac20-c9cf30f12c80,SESCO,II.1.1,Tucuman,AR-T,annual,2021,naphtha combustion consumption by to the public,1016.6754443999998,TJ,N2O,0.6,kg/TJ,610.0052666399998,kg +3165bd7f-3650-3c40-8194-3dc2d02171fd,SESCO,II.1.1,Buenos Aires,AR-B,annual,2021,naphtha combustion consumption by to the public,7904.058315999999,TJ,CO2,73300.0,kg/TJ,579367474.5627999,kg +74429688-7a0f-3b19-911b-3bd1c545d0c7,SESCO,II.1.1,Buenos Aires,AR-B,annual,2021,naphtha combustion consumption by to the public,7904.058315999999,TJ,CH4,3.0,kg/TJ,23712.174947999996,kg +147be1a3-18e1-37b1-ab1c-43e3ed5c108e,SESCO,II.1.1,Buenos Aires,AR-B,annual,2021,naphtha combustion consumption by to the public,7904.058315999999,TJ,N2O,0.6,kg/TJ,4742.434989599999,kg +4e22c423-6f88-3ecd-b465-3bcc102af137,SESCO,II.1.1,Capital Federal,AR-C,annual,2021,naphtha combustion consumption by to the public,3104.573472,TJ,CO2,73300.0,kg/TJ,227565235.4976,kg +d2acd254-1a02-31f8-ae68-b0d504cf100c,SESCO,II.1.1,Capital Federal,AR-C,annual,2021,naphtha combustion consumption by to the public,3104.573472,TJ,CH4,3.0,kg/TJ,9313.720416,kg +d5bf821a-4616-3523-afc7-8c272b4c5d1c,SESCO,II.1.1,Capital Federal,AR-C,annual,2021,naphtha combustion consumption by to the public,3104.573472,TJ,N2O,0.6,kg/TJ,1862.7440832,kg +64470a8f-54d1-356f-981d-c4e3fee39e25,SESCO,II.1.1,Catamarca,AR-K,annual,2021,naphtha combustion consumption by to the public,36.9979764,TJ,CO2,73300.0,kg/TJ,2711951.67012,kg +256b5500-b57e-3659-8905-e9f7b6d3d560,SESCO,II.1.1,Catamarca,AR-K,annual,2021,naphtha combustion consumption by to the public,36.9979764,TJ,CH4,3.0,kg/TJ,110.9939292,kg +c1a60e7c-1e48-3917-9ab7-3bfc041713bf,SESCO,II.1.1,Catamarca,AR-K,annual,2021,naphtha combustion consumption by to the public,36.9979764,TJ,N2O,0.6,kg/TJ,22.19878584,kg +9c1f5efc-0f18-310a-9d4e-8a51aae4e455,SESCO,II.1.1,Chaco,AR-H,annual,2021,naphtha combustion consumption by to the public,278.3743424,TJ,CO2,73300.0,kg/TJ,20404839.29792,kg +9ebee27a-0aea-33c4-8300-b8839cb307d6,SESCO,II.1.1,Chaco,AR-H,annual,2021,naphtha combustion consumption by to the public,278.3743424,TJ,CH4,3.0,kg/TJ,835.1230272,kg +10c43d77-5475-3921-8cce-13fab9990c9b,SESCO,II.1.1,Chaco,AR-H,annual,2021,naphtha combustion consumption by to the public,278.3743424,TJ,N2O,0.6,kg/TJ,167.02460544,kg +4ebbcc39-71eb-3ed9-bb33-b86c0322689e,SESCO,II.1.1,Corrientes,AR-W,annual,2021,naphtha combustion consumption by to the public,340.1582492,TJ,CO2,73300.0,kg/TJ,24933599.66636,kg +8921e07c-6d04-3898-8eff-83f14734a3ef,SESCO,II.1.1,Corrientes,AR-W,annual,2021,naphtha combustion consumption by to the public,340.1582492,TJ,CH4,3.0,kg/TJ,1020.4747476,kg +3320e8d4-f7ac-3431-9199-bf98f9d39eed,SESCO,II.1.1,Corrientes,AR-W,annual,2021,naphtha combustion consumption by to the public,340.1582492,TJ,N2O,0.6,kg/TJ,204.09494952,kg +332c883d-c280-3f99-aef5-76d65c324054,SESCO,II.1.1,Córdoba,AR-X,annual,2021,naphtha combustion consumption by to the public,1695.5747423999999,TJ,CO2,73300.0,kg/TJ,124285628.61792,kg +21777948-cd81-3a36-a026-5c6caef22496,SESCO,II.1.1,Córdoba,AR-X,annual,2021,naphtha combustion consumption by to the public,1695.5747423999999,TJ,CH4,3.0,kg/TJ,5086.724227199999,kg +149e3997-185a-3c21-88dd-22b1882e55f4,SESCO,II.1.1,Córdoba,AR-X,annual,2021,naphtha combustion consumption by to the public,1695.5747423999999,TJ,N2O,0.6,kg/TJ,1017.3448454399999,kg +246ce013-5b39-33ed-b668-545ee0ed70ab,SESCO,II.1.1,Entre Rios,AR-E,annual,2021,naphtha combustion consumption by to the public,411.07857559999997,TJ,CO2,73300.0,kg/TJ,30132059.591479998,kg +e3155329-057a-3674-aeab-d3abcedc1514,SESCO,II.1.1,Entre Rios,AR-E,annual,2021,naphtha combustion consumption by to the public,411.07857559999997,TJ,CH4,3.0,kg/TJ,1233.2357267999998,kg +4968f946-b3cb-3812-bebe-58ff2ba7beff,SESCO,II.1.1,Entre Rios,AR-E,annual,2021,naphtha combustion consumption by to the public,411.07857559999997,TJ,N2O,0.6,kg/TJ,246.64714535999997,kg +246212cf-2e9c-3955-87ed-38f7f3677cc2,SESCO,II.1.1,Formosa,AR-P,annual,2021,naphtha combustion consumption by to the public,117.68793959999998,TJ,CO2,73300.0,kg/TJ,8626525.972679999,kg +b4e4dcd8-0e59-3772-a168-7acfb141132d,SESCO,II.1.1,Formosa,AR-P,annual,2021,naphtha combustion consumption by to the public,117.68793959999998,TJ,CH4,3.0,kg/TJ,353.0638187999999,kg +19a61a19-3953-325e-ae8e-50e234d7e854,SESCO,II.1.1,Formosa,AR-P,annual,2021,naphtha combustion consumption by to the public,117.68793959999998,TJ,N2O,0.6,kg/TJ,70.61276375999998,kg +80fc560c-a6e0-34b5-99e5-9c6c5bf767e1,SESCO,II.1.1,Jujuy,AR-Y,annual,2021,naphtha combustion consumption by to the public,74.9005488,TJ,CO2,73300.0,kg/TJ,5490210.227039999,kg +9af30b2d-016d-3a0a-9e0a-5ca471401aa1,SESCO,II.1.1,Jujuy,AR-Y,annual,2021,naphtha combustion consumption by to the public,74.9005488,TJ,CH4,3.0,kg/TJ,224.7016464,kg +de415806-5c3e-37ce-bf19-d6324da81bd6,SESCO,II.1.1,Jujuy,AR-Y,annual,2021,naphtha combustion consumption by to the public,74.9005488,TJ,N2O,0.6,kg/TJ,44.94032927999999,kg +c3bffe07-a336-32d1-b577-2d979e50b473,SESCO,II.1.1,La Pampa,AR-L,annual,2021,naphtha combustion consumption by to the public,157.9424616,TJ,CO2,73300.0,kg/TJ,11577182.43528,kg +83c1ab31-8e62-335b-9c9b-6c93a403742c,SESCO,II.1.1,La Pampa,AR-L,annual,2021,naphtha combustion consumption by to the public,157.9424616,TJ,CH4,3.0,kg/TJ,473.8273848,kg +a7a6a1a3-2382-388e-8c63-bcc67594313c,SESCO,II.1.1,La Pampa,AR-L,annual,2021,naphtha combustion consumption by to the public,157.9424616,TJ,N2O,0.6,kg/TJ,94.76547696,kg +3bcd770f-adfa-3183-aa9e-a80b538e1543,SESCO,II.1.1,La Rioja,AR-F,annual,2021,naphtha combustion consumption by to the public,77.8254092,TJ,CO2,73300.0,kg/TJ,5704602.49436,kg +19e81eae-8733-3d59-95f5-10c4664a5c2e,SESCO,II.1.1,La Rioja,AR-F,annual,2021,naphtha combustion consumption by to the public,77.8254092,TJ,CH4,3.0,kg/TJ,233.4762276,kg +f3462996-56f5-307f-b75f-e50f6978cbb0,SESCO,II.1.1,La Rioja,AR-F,annual,2021,naphtha combustion consumption by to the public,77.8254092,TJ,N2O,0.6,kg/TJ,46.69524551999999,kg +e7d2e20a-37df-3528-bd77-b0613bb6d094,SESCO,II.1.1,Mendoza,AR-M,annual,2021,naphtha combustion consumption by to the public,701.1825127999999,TJ,CO2,73300.0,kg/TJ,51396678.18823999,kg +a99ed95c-e488-3bc8-8e9d-bdb685ee6467,SESCO,II.1.1,Mendoza,AR-M,annual,2021,naphtha combustion consumption by to the public,701.1825127999999,TJ,CH4,3.0,kg/TJ,2103.5475383999997,kg +4fa9a642-fe52-3f06-94a2-57c0eae6f1bc,SESCO,II.1.1,Mendoza,AR-M,annual,2021,naphtha combustion consumption by to the public,701.1825127999999,TJ,N2O,0.6,kg/TJ,420.70950767999994,kg +d5ff1958-7146-38fd-a766-b39add1edea2,SESCO,II.1.1,Misiones,AR-N,annual,2021,naphtha combustion consumption by to the public,288.29474519999997,TJ,CO2,73300.0,kg/TJ,21132004.823159996,kg +00cc6c28-29d9-36fa-9119-2a0e9d6333f1,SESCO,II.1.1,Misiones,AR-N,annual,2021,naphtha combustion consumption by to the public,288.29474519999997,TJ,CH4,3.0,kg/TJ,864.8842355999999,kg +95fabb60-c29f-3ccf-a374-0f51eb5116c5,SESCO,II.1.1,Misiones,AR-N,annual,2021,naphtha combustion consumption by to the public,288.29474519999997,TJ,N2O,0.6,kg/TJ,172.97684711999997,kg +461e0e79-b629-3b0b-8d64-8015a09bbbda,SESCO,II.1.1,Neuquén,AR-Q,annual,2021,naphtha combustion consumption by to the public,292.7272656,TJ,CO2,73300.0,kg/TJ,21456908.56848,kg +bea17ff5-fe9f-3530-af64-ff39f5b2dad1,SESCO,II.1.1,Neuquén,AR-Q,annual,2021,naphtha combustion consumption by to the public,292.7272656,TJ,CH4,3.0,kg/TJ,878.1817968,kg +acb6e50d-4ef6-3007-92be-b9ec615f828f,SESCO,II.1.1,Neuquén,AR-Q,annual,2021,naphtha combustion consumption by to the public,292.7272656,TJ,N2O,0.6,kg/TJ,175.63635936,kg +076f3dee-d8ef-32f3-9bf4-d43c6a96be2c,SESCO,II.1.1,Rio Negro,AR-R,annual,2021,naphtha combustion consumption by to the public,173.53166599999997,TJ,CO2,73300.0,kg/TJ,12719871.117799997,kg +ba8c995c-1bbe-3dd0-922f-e318005d2687,SESCO,II.1.1,Rio Negro,AR-R,annual,2021,naphtha combustion consumption by to the public,173.53166599999997,TJ,CH4,3.0,kg/TJ,520.5949979999999,kg +c5827444-4f25-3c47-87d5-516fb9907afa,SESCO,II.1.1,Rio Negro,AR-R,annual,2021,naphtha combustion consumption by to the public,173.53166599999997,TJ,N2O,0.6,kg/TJ,104.11899959999998,kg +1e57bba9-a7b3-3e41-bcba-45f4cc46f71a,SESCO,II.1.1,Salta,AR-A,annual,2021,naphtha combustion consumption by to the public,137.7699708,TJ,CO2,73300.0,kg/TJ,10098538.85964,kg +23635ace-0636-3333-a5e6-73b9cea95959,SESCO,II.1.1,Salta,AR-A,annual,2021,naphtha combustion consumption by to the public,137.7699708,TJ,CH4,3.0,kg/TJ,413.30991240000003,kg +c1192597-61cc-350f-80c3-f6350e6a39b0,SESCO,II.1.1,Salta,AR-A,annual,2021,naphtha combustion consumption by to the public,137.7699708,TJ,N2O,0.6,kg/TJ,82.66198248,kg +34b07ff6-8e99-3a04-981a-302e6a8c4cfb,SESCO,II.1.1,San Juan,AR-J,annual,2021,naphtha combustion consumption by to the public,107.0740132,TJ,CO2,73300.0,kg/TJ,7848525.16756,kg +755b521f-548d-34ec-98f2-3fb0463f8af5,SESCO,II.1.1,San Juan,AR-J,annual,2021,naphtha combustion consumption by to the public,107.0740132,TJ,CH4,3.0,kg/TJ,321.2220396,kg +28b20ba2-48ab-3a66-96b5-0ad3e41d27ba,SESCO,II.1.1,San Juan,AR-J,annual,2021,naphtha combustion consumption by to the public,107.0740132,TJ,N2O,0.6,kg/TJ,64.24440792,kg +88c62043-36ce-3941-9b8c-62aeb08c99c7,SESCO,II.1.1,San Luis,AR-D,annual,2021,naphtha combustion consumption by to the public,117.0245692,TJ,CO2,73300.0,kg/TJ,8577900.92236,kg +609a2762-58ad-37f0-812c-e8dedcc46e49,SESCO,II.1.1,San Luis,AR-D,annual,2021,naphtha combustion consumption by to the public,117.0245692,TJ,CH4,3.0,kg/TJ,351.07370760000003,kg +15e69d32-26c3-3d6a-ab3f-073cae686b35,SESCO,II.1.1,San Luis,AR-D,annual,2021,naphtha combustion consumption by to the public,117.0245692,TJ,N2O,0.6,kg/TJ,70.21474152,kg +fb334e10-e2bf-3dcc-8c92-3e766232701c,SESCO,II.1.1,Santa Fe,AR-S,annual,2021,naphtha combustion consumption by to the public,1556.6589499999998,TJ,CO2,73300.0,kg/TJ,114103101.03499998,kg +dfb49093-2cb4-3341-bbf6-45eee61d3e74,SESCO,II.1.1,Santa Fe,AR-S,annual,2021,naphtha combustion consumption by to the public,1556.6589499999998,TJ,CH4,3.0,kg/TJ,4669.976849999999,kg +855beea3-148b-34c4-8df0-291a81997402,SESCO,II.1.1,Santa Fe,AR-S,annual,2021,naphtha combustion consumption by to the public,1556.6589499999998,TJ,N2O,0.6,kg/TJ,933.9953699999999,kg +f0638cf9-baa1-3e27-b430-1db069b5f8bb,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2021,naphtha combustion consumption by to the public,167.651792,TJ,CO2,73300.0,kg/TJ,12288876.3536,kg +67b49d69-cb5c-3cd0-ac59-7eb64318e487,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2021,naphtha combustion consumption by to the public,167.651792,TJ,CH4,3.0,kg/TJ,502.955376,kg +86e72524-b1b5-3591-b3d4-101d926a394e,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2021,naphtha combustion consumption by to the public,167.651792,TJ,N2O,0.6,kg/TJ,100.59107519999999,kg +b23f7d6a-5f5d-3b9c-9f9a-20add5d8ec0d,SESCO,II.1.1,Tucuman,AR-T,annual,2021,naphtha combustion consumption by to the public,278.79648719999994,TJ,CO2,73300.0,kg/TJ,20435782.511759996,kg +9d613c0d-7b14-3dc4-9704-973f5c0a6915,SESCO,II.1.1,Tucuman,AR-T,annual,2021,naphtha combustion consumption by to the public,278.79648719999994,TJ,CH4,3.0,kg/TJ,836.3894615999998,kg +028f64b0-19e6-3d07-a6f0-08b72cabd11a,SESCO,II.1.1,Tucuman,AR-T,annual,2021,naphtha combustion consumption by to the public,278.79648719999994,TJ,N2O,0.6,kg/TJ,167.27789231999995,kg +85abdded-d752-3a11-98a9-358bfa22f2b3,SESCO,I.3.1,Buenos Aires,AR-B,annual,2021,naphtha combustion consumption by petrochemical industries,43.269842,TJ,CO2,73300.0,kg/TJ,3171679.4186,kg +d4448ec4-6182-3d11-a43b-ae10c47a579d,SESCO,I.3.1,Buenos Aires,AR-B,annual,2021,naphtha combustion consumption by petrochemical industries,43.269842,TJ,CH4,3.0,kg/TJ,129.809526,kg +dee93808-3e04-3d18-810b-1536f7af153c,SESCO,I.3.1,Buenos Aires,AR-B,annual,2021,naphtha combustion consumption by petrochemical industries,43.269842,TJ,N2O,0.6,kg/TJ,25.961905199999997,kg +2b6aceaf-fa67-3177-8eec-5a9623b3bfd1,SESCO,I.3.1,Misiones,AR-N,annual,2021,naphtha combustion consumption by petrochemical industries,1.5679663999999998,TJ,CO2,73300.0,kg/TJ,114931.93711999999,kg +db935951-4733-3b27-bba5-5ab4905e051b,SESCO,I.3.1,Misiones,AR-N,annual,2021,naphtha combustion consumption by petrochemical industries,1.5679663999999998,TJ,CH4,3.0,kg/TJ,4.7038991999999995,kg +c9d8110c-26ab-3c7d-82c5-2b3c0c540570,SESCO,I.3.1,Misiones,AR-N,annual,2021,naphtha combustion consumption by petrochemical industries,1.5679663999999998,TJ,N2O,0.6,kg/TJ,0.9407798399999998,kg +916f72d2-9242-3d3b-89dd-bbbcdc4a6563,SESCO,I.3.1,Buenos Aires,AR-B,annual,2021,naphtha combustion consumption by petrochemical industries,13.538786799999999,TJ,CO2,73300.0,kg/TJ,992393.0724399999,kg +5a421d91-9258-3788-b27d-7354c5f5ce6e,SESCO,I.3.1,Buenos Aires,AR-B,annual,2021,naphtha combustion consumption by petrochemical industries,13.538786799999999,TJ,CH4,3.0,kg/TJ,40.6163604,kg +1c9a6a89-f431-3586-8cc0-55ce05cff8c2,SESCO,I.3.1,Buenos Aires,AR-B,annual,2021,naphtha combustion consumption by petrochemical industries,13.538786799999999,TJ,N2O,0.6,kg/TJ,8.12327208,kg +71e8e884-a42b-3428-8c0b-c4b86c5f9526,SESCO,I.3.1,Capital Federal,AR-C,annual,2021,naphtha combustion consumption by petrochemical industries,0.4522979999999999,TJ,CO2,73300.0,kg/TJ,33153.4434,kg +f0d57f14-fa61-3e79-9c1b-94dbe4092821,SESCO,I.3.1,Capital Federal,AR-C,annual,2021,naphtha combustion consumption by petrochemical industries,0.4522979999999999,TJ,CH4,3.0,kg/TJ,1.3568939999999998,kg +39301f71-8e0a-32a0-8caf-40a9a73d40e4,SESCO,I.3.1,Capital Federal,AR-C,annual,2021,naphtha combustion consumption by petrochemical industries,0.4522979999999999,TJ,N2O,0.6,kg/TJ,0.2713787999999999,kg +4bb6147d-f654-3a57-b702-e4c3288e75fc,SESCO,I.3.1,Entre Rios,AR-E,annual,2021,naphtha combustion consumption by petrochemical industries,1.3568939999999998,TJ,CO2,73300.0,kg/TJ,99460.33019999998,kg +0dae010b-70f2-31a3-a0b0-2df1e6faac24,SESCO,I.3.1,Entre Rios,AR-E,annual,2021,naphtha combustion consumption by petrochemical industries,1.3568939999999998,TJ,CH4,3.0,kg/TJ,4.070682,kg +c6aa254c-810d-341c-9d76-81033ee90801,SESCO,I.3.1,Entre Rios,AR-E,annual,2021,naphtha combustion consumption by petrochemical industries,1.3568939999999998,TJ,N2O,0.6,kg/TJ,0.8141363999999999,kg +71d1a3b2-05b9-33e8-8936-f3c0015b1cce,SESCO,I.3.1,La Pampa,AR-L,annual,2021,naphtha combustion consumption by petrochemical industries,0.24122559999999998,TJ,CO2,73300.0,kg/TJ,17681.836479999998,kg +e86a9d71-6c57-3a39-8a7e-7b8ac7597a24,SESCO,I.3.1,La Pampa,AR-L,annual,2021,naphtha combustion consumption by petrochemical industries,0.24122559999999998,TJ,CH4,3.0,kg/TJ,0.7236768,kg +8544a506-7379-3226-b152-b24f43a03283,SESCO,I.3.1,La Pampa,AR-L,annual,2021,naphtha combustion consumption by petrochemical industries,0.24122559999999998,TJ,N2O,0.6,kg/TJ,0.14473535999999998,kg +92a933c5-a741-3d31-91a1-93e1225fd5ae,SESCO,I.3.1,Misiones,AR-N,annual,2021,naphtha combustion consumption by petrochemical industries,0.4221448,TJ,CO2,73300.0,kg/TJ,30943.21384,kg +3ad56d56-65bc-3060-9d70-13f3cfe048d2,SESCO,I.3.1,Misiones,AR-N,annual,2021,naphtha combustion consumption by petrochemical industries,0.4221448,TJ,CH4,3.0,kg/TJ,1.2664344,kg +641d7cf0-0ed5-3415-a239-3e4fbd28f382,SESCO,I.3.1,Misiones,AR-N,annual,2021,naphtha combustion consumption by petrochemical industries,0.4221448,TJ,N2O,0.6,kg/TJ,0.25328688,kg +0d4f0342-7889-3637-9fce-fc98ed67081d,SESCO,I.3.1,Rio Negro,AR-R,annual,2021,naphtha combustion consumption by petrochemical industries,1.1156684,TJ,CO2,73300.0,kg/TJ,81778.49372,kg +3bd1e48a-075c-3c44-be81-7a106200248c,SESCO,I.3.1,Rio Negro,AR-R,annual,2021,naphtha combustion consumption by petrochemical industries,1.1156684,TJ,CH4,3.0,kg/TJ,3.3470052,kg +67be1a7e-164f-399e-ba3f-e01103ed53cc,SESCO,I.3.1,Rio Negro,AR-R,annual,2021,naphtha combustion consumption by petrochemical industries,1.1156684,TJ,N2O,0.6,kg/TJ,0.6694010399999999,kg +fbefa9a4-0566-3e2d-b164-4bf5c105071a,SESCO,I.3.1,San Juan,AR-J,annual,2021,naphtha combustion consumption by petrochemical industries,3.3168519999999995,TJ,CO2,73300.0,kg/TJ,243125.25159999996,kg +28821e3e-427f-3451-ad2f-0997512fdc4f,SESCO,I.3.1,San Juan,AR-J,annual,2021,naphtha combustion consumption by petrochemical industries,3.3168519999999995,TJ,CH4,3.0,kg/TJ,9.950555999999999,kg +af6d599d-ef90-3cdc-be77-988ac89bbef1,SESCO,I.3.1,San Juan,AR-J,annual,2021,naphtha combustion consumption by petrochemical industries,3.3168519999999995,TJ,N2O,0.6,kg/TJ,1.9901111999999996,kg +8cf81375-9efe-3836-98e5-6ca6a0e13f49,SESCO,I.3.1,San Luis,AR-D,annual,2021,naphtha combustion consumption by petrochemical industries,0.7538299999999999,TJ,CO2,73300.0,kg/TJ,55255.738999999994,kg +04f8ebfd-c404-3860-9f4b-06f513642e87,SESCO,I.3.1,San Luis,AR-D,annual,2021,naphtha combustion consumption by petrochemical industries,0.7538299999999999,TJ,CH4,3.0,kg/TJ,2.26149,kg +ac76e3a5-3fd4-34bf-a48c-b2ef5573ab08,SESCO,I.3.1,San Luis,AR-D,annual,2021,naphtha combustion consumption by petrochemical industries,0.7538299999999999,TJ,N2O,0.6,kg/TJ,0.4522979999999999,kg +6a62b146-04b4-37ba-8a38-9ebd9b0f7e10,SESCO,I.3.1,Santa Fe,AR-S,annual,2021,naphtha combustion consumption by petrochemical industries,0.4522979999999999,TJ,CO2,73300.0,kg/TJ,33153.4434,kg +3aba18d1-be1c-33ec-9e87-9fa2300a836e,SESCO,I.3.1,Santa Fe,AR-S,annual,2021,naphtha combustion consumption by petrochemical industries,0.4522979999999999,TJ,CH4,3.0,kg/TJ,1.3568939999999998,kg +34aff987-a63c-31bd-8e8d-e180991edd0f,SESCO,I.3.1,Santa Fe,AR-S,annual,2021,naphtha combustion consumption by petrochemical industries,0.4522979999999999,TJ,N2O,0.6,kg/TJ,0.2713787999999999,kg +2d78174f-0594-325b-98c8-8a8f99f9250b,SESCO,I.3.1,Tucuman,AR-T,annual,2021,naphtha combustion consumption by petrochemical industries,0.8141364,TJ,CO2,73300.0,kg/TJ,59676.19812,kg +2f3f97c3-ce63-37a3-aa06-20eda39092c7,SESCO,I.3.1,Tucuman,AR-T,annual,2021,naphtha combustion consumption by petrochemical industries,0.8141364,TJ,CH4,3.0,kg/TJ,2.4424092,kg +2c4dc7ad-ce44-3e9c-b35f-d9179f43f5bc,SESCO,I.3.1,Tucuman,AR-T,annual,2021,naphtha combustion consumption by petrochemical industries,0.8141364,TJ,N2O,0.6,kg/TJ,0.48848183999999994,kg +97b2c48e-e5fb-3d9b-bf3d-b37a951040d2,SESCO,II.5.1,Buenos Aires,AR-B,annual,2021,naphtha combustion consumption by agriculture machines,62.09719854799999,TJ,CO2,73300.0,kg/TJ,4551724.653568399,kg +41b126aa-35ff-3cad-b78f-da9284303028,SESCO,II.5.1,Buenos Aires,AR-B,annual,2021,naphtha combustion consumption by agriculture machines,62.09719854799999,TJ,CH4,3.0,kg/TJ,186.29159564399995,kg +963b4adb-45c9-3aae-bf45-d6c89e180a29,SESCO,II.5.1,Buenos Aires,AR-B,annual,2021,naphtha combustion consumption by agriculture machines,62.09719854799999,TJ,N2O,0.6,kg/TJ,37.25831912879999,kg +4bea29f0-9e2d-3caa-b6d6-beb6528672af,SESCO,II.5.1,Capital Federal,AR-C,annual,2021,naphtha combustion consumption by agriculture machines,17.2699739212,TJ,CO2,73300.0,kg/TJ,1265889.08842396,kg +c17c88cb-5171-3aac-ada0-aabc3348b143,SESCO,II.5.1,Capital Federal,AR-C,annual,2021,naphtha combustion consumption by agriculture machines,17.2699739212,TJ,CH4,3.0,kg/TJ,51.809921763599995,kg +196d8da2-06b8-3035-b85c-018c55eb2e12,SESCO,II.5.1,Capital Federal,AR-C,annual,2021,naphtha combustion consumption by agriculture machines,17.2699739212,TJ,N2O,0.6,kg/TJ,10.361984352719999,kg +a9435e00-9e98-37d2-9730-54f6e20a4211,SESCO,II.5.1,Córdoba,AR-X,annual,2021,naphtha combustion consumption by agriculture machines,9.749343696399999,TJ,CO2,73300.0,kg/TJ,714626.8929461199,kg +da9f7fce-8b0b-3ac7-836f-661f044bfa74,SESCO,II.5.1,Córdoba,AR-X,annual,2021,naphtha combustion consumption by agriculture machines,9.749343696399999,TJ,CH4,3.0,kg/TJ,29.248031089199998,kg +15a3d49c-16ec-3451-baa5-92edc28c088e,SESCO,II.5.1,Córdoba,AR-X,annual,2021,naphtha combustion consumption by agriculture machines,9.749343696399999,TJ,N2O,0.6,kg/TJ,5.849606217839999,kg +1417b8f2-370f-3fc0-bcdc-3c67b9fb37e2,SESCO,II.5.1,Santa Fe,AR-S,annual,2021,naphtha combustion consumption by agriculture machines,245.9103217648,TJ,CO2,73300.0,kg/TJ,18025226.585359838,kg +6a3f4b0e-05fa-3bc9-b8c5-f4ee575ce700,SESCO,II.5.1,Santa Fe,AR-S,annual,2021,naphtha combustion consumption by agriculture machines,245.9103217648,TJ,CH4,3.0,kg/TJ,737.7309652944,kg +d37fbb58-d073-32bd-81a4-1395605e6fb8,SESCO,II.5.1,Santa Fe,AR-S,annual,2021,naphtha combustion consumption by agriculture machines,245.9103217648,TJ,N2O,0.6,kg/TJ,147.54619305888,kg +716f236e-4242-37a8-8376-d6b78497caf8,SESCO,II.5.1,Tucuman,AR-T,annual,2021,naphtha combustion consumption by agriculture machines,0.5397422799999999,TJ,CO2,73300.0,kg/TJ,39563.109123999995,kg +315b63b4-ca47-3194-90c8-f58dc018c830,SESCO,II.5.1,Tucuman,AR-T,annual,2021,naphtha combustion consumption by agriculture machines,0.5397422799999999,TJ,CH4,3.0,kg/TJ,1.6192268399999996,kg +9c3ef36e-5dab-32e5-ad0a-31575da6cc4c,SESCO,II.5.1,Tucuman,AR-T,annual,2021,naphtha combustion consumption by agriculture machines,0.5397422799999999,TJ,N2O,0.6,kg/TJ,0.3238453679999999,kg +ec014aa6-08b5-3422-b173-3d0488bcd51a,SESCO,II.5.1,Buenos Aires,AR-B,annual,2021,naphtha combustion consumption by agriculture machines,14.898726273199998,TJ,CO2,73300.0,kg/TJ,1092076.6358255597,kg +71900f75-d33f-38b4-8064-01623dd1866a,SESCO,II.5.1,Buenos Aires,AR-B,annual,2021,naphtha combustion consumption by agriculture machines,14.898726273199998,TJ,CH4,3.0,kg/TJ,44.69617881959999,kg +b0b35c89-9f79-3e6f-8509-a31fe2fc98a6,SESCO,II.5.1,Buenos Aires,AR-B,annual,2021,naphtha combustion consumption by agriculture machines,14.898726273199998,TJ,N2O,0.6,kg/TJ,8.939235763919998,kg +361eaedc-1861-3e7b-8aef-bc10666a736c,SESCO,II.5.1,Capital Federal,AR-C,annual,2021,naphtha combustion consumption by agriculture machines,3.7658633011999996,TJ,CO2,73300.0,kg/TJ,276037.77997796,kg +bfda4d48-70c4-3eda-bb84-2278f0e4b81f,SESCO,II.5.1,Capital Federal,AR-C,annual,2021,naphtha combustion consumption by agriculture machines,3.7658633011999996,TJ,CH4,3.0,kg/TJ,11.297589903599999,kg +e7a1985f-bc38-3d64-9fd0-a23862fc8400,SESCO,II.5.1,Capital Federal,AR-C,annual,2021,naphtha combustion consumption by agriculture machines,3.7658633011999996,TJ,N2O,0.6,kg/TJ,2.2595179807199997,kg +af6940bf-ac37-3646-8f55-93a69a2a0be4,SESCO,II.5.1,Córdoba,AR-X,annual,2021,naphtha combustion consumption by agriculture machines,2.2503634692,TJ,CO2,73300.0,kg/TJ,164951.64229236,kg +d1c8aa51-28b1-3113-85d1-5cd8c3da8422,SESCO,II.5.1,Córdoba,AR-X,annual,2021,naphtha combustion consumption by agriculture machines,2.2503634692,TJ,CH4,3.0,kg/TJ,6.7510904076,kg +a163ce0e-e008-36b9-a439-7956b310ecb8,SESCO,II.5.1,Córdoba,AR-X,annual,2021,naphtha combustion consumption by agriculture machines,2.2503634692,TJ,N2O,0.6,kg/TJ,1.3502180815199998,kg +b6b39469-8fff-393c-8acd-f5290555ad50,SESCO,II.5.1,Santa Fe,AR-S,annual,2021,naphtha combustion consumption by agriculture machines,25.65961937,TJ,CO2,73300.0,kg/TJ,1880850.0998210001,kg +fa68b291-58bd-3577-9d49-f84710a430de,SESCO,II.5.1,Santa Fe,AR-S,annual,2021,naphtha combustion consumption by agriculture machines,25.65961937,TJ,CH4,3.0,kg/TJ,76.97885811,kg +0b2e8c89-e9db-3e68-beec-0940a11ee0c6,SESCO,II.5.1,Santa Fe,AR-S,annual,2021,naphtha combustion consumption by agriculture machines,25.65961937,TJ,N2O,0.6,kg/TJ,15.395771622,kg +182bc227-b87a-3d67-8a3d-b148c52c8889,SESCO,II.1.1,Buenos Aires,AR-B,annual,2021,naphtha combustion consumption by to the public,4325.785218308399,TJ,CO2,73300.0,kg/TJ,317080056.50200564,kg +cfbdeab6-fe2e-302e-b5e6-376120dc305a,SESCO,II.1.1,Buenos Aires,AR-B,annual,2021,naphtha combustion consumption by to the public,4325.785218308399,TJ,CH4,3.0,kg/TJ,12977.355654925195,kg +1ac83422-63d8-394b-9e8d-8be3cdc042ab,SESCO,II.1.1,Buenos Aires,AR-B,annual,2021,naphtha combustion consumption by to the public,4325.785218308399,TJ,N2O,0.6,kg/TJ,2595.471130985039,kg +0314aa3b-997e-379a-a9c4-b863cb3ebc38,SESCO,II.1.1,Capital Federal,AR-C,annual,2021,naphtha combustion consumption by to the public,272.98928241199997,TJ,CO2,73300.0,kg/TJ,20010114.4007996,kg +4d990f82-90d9-3f8f-af34-774bad298e2b,SESCO,II.1.1,Capital Federal,AR-C,annual,2021,naphtha combustion consumption by to the public,272.98928241199997,TJ,CH4,3.0,kg/TJ,818.9678472359999,kg +b64f96b3-ebec-37b6-a6e3-bf285089a7aa,SESCO,II.1.1,Capital Federal,AR-C,annual,2021,naphtha combustion consumption by to the public,272.98928241199997,TJ,N2O,0.6,kg/TJ,163.79356944719999,kg +1587d9d5-1758-3ab4-81d8-5b48d66083de,SESCO,II.1.1,Catamarca,AR-K,annual,2021,naphtha combustion consumption by to the public,42.3767343692,TJ,CO2,73300.0,kg/TJ,3106214.6292623603,kg +56be1296-31b4-38b9-a589-0e69cd510b08,SESCO,II.1.1,Catamarca,AR-K,annual,2021,naphtha combustion consumption by to the public,42.3767343692,TJ,CH4,3.0,kg/TJ,127.13020310760001,kg +5e4a6536-b8cf-3dcd-8531-f9b1c071befb,SESCO,II.1.1,Catamarca,AR-K,annual,2021,naphtha combustion consumption by to the public,42.3767343692,TJ,N2O,0.6,kg/TJ,25.42604062152,kg +ec3ac94b-a2a9-3601-b002-671dcb5e83e2,SESCO,II.1.1,Chaco,AR-H,annual,2021,naphtha combustion consumption by to the public,45.405140858,TJ,CO2,73300.0,kg/TJ,3328196.8248914,kg +cfaf6d24-b3f0-35f0-87bd-1f63e164dc80,SESCO,II.1.1,Chaco,AR-H,annual,2021,naphtha combustion consumption by to the public,45.405140858,TJ,CH4,3.0,kg/TJ,136.215422574,kg +c82320b9-a97a-3ecc-8061-c8e8909de025,SESCO,II.1.1,Chaco,AR-H,annual,2021,naphtha combustion consumption by to the public,45.405140858,TJ,N2O,0.6,kg/TJ,27.2430845148,kg +f404d215-70e2-3139-b0f7-ffc5fa393c67,SESCO,II.1.1,Chubut,AR-U,annual,2021,naphtha combustion consumption by to the public,301.45004360239994,TJ,CO2,73300.0,kg/TJ,22096288.196055915,kg +f93e0ccc-f817-3512-bdd4-ce464c5bfa18,SESCO,II.1.1,Chubut,AR-U,annual,2021,naphtha combustion consumption by to the public,301.45004360239994,TJ,CH4,3.0,kg/TJ,904.3501308071998,kg +8a23d9a6-6f7c-392e-93b3-c6aa757fb523,SESCO,II.1.1,Chubut,AR-U,annual,2021,naphtha combustion consumption by to the public,301.45004360239994,TJ,N2O,0.6,kg/TJ,180.87002616143997,kg +bfe226b3-11b5-372c-b623-76d4a37686c4,SESCO,II.1.1,Corrientes,AR-W,annual,2021,naphtha combustion consumption by to the public,277.86427086879996,TJ,CO2,73300.0,kg/TJ,20367451.054683037,kg +ea7275e2-109c-3219-ba33-a4051cd4027e,SESCO,II.1.1,Corrientes,AR-W,annual,2021,naphtha combustion consumption by to the public,277.86427086879996,TJ,CH4,3.0,kg/TJ,833.5928126063999,kg +ac7d1e8e-a916-3f74-9b26-5de86e5dc3a0,SESCO,II.1.1,Corrientes,AR-W,annual,2021,naphtha combustion consumption by to the public,277.86427086879996,TJ,N2O,0.6,kg/TJ,166.71856252127998,kg +e53c8a11-287f-3e6b-9656-a866d06f5a6e,SESCO,II.1.1,Córdoba,AR-X,annual,2021,naphtha combustion consumption by to the public,669.5237333707998,TJ,CO2,73300.0,kg/TJ,49076089.65607963,kg +76c6af4e-9770-30e1-98de-0a018c1e88f8,SESCO,II.1.1,Córdoba,AR-X,annual,2021,naphtha combustion consumption by to the public,669.5237333707998,TJ,CH4,3.0,kg/TJ,2008.5712001123995,kg +cfe72f64-c044-310a-af94-1fd4fc1e0d17,SESCO,II.1.1,Córdoba,AR-X,annual,2021,naphtha combustion consumption by to the public,669.5237333707998,TJ,N2O,0.6,kg/TJ,401.7142400224799,kg +541722f7-5236-3a24-a578-75df00baecdf,SESCO,II.1.1,Entre Rios,AR-E,annual,2021,naphtha combustion consumption by to the public,548.0869067212,TJ,CO2,73300.0,kg/TJ,40174770.26266396,kg +402e4daf-0382-3650-b3bb-71ad5fc0c2e7,SESCO,II.1.1,Entre Rios,AR-E,annual,2021,naphtha combustion consumption by to the public,548.0869067212,TJ,CH4,3.0,kg/TJ,1644.2607201636,kg +d7e55f72-8a7d-3fdc-9666-4d41b438d44c,SESCO,II.1.1,Entre Rios,AR-E,annual,2021,naphtha combustion consumption by to the public,548.0869067212,TJ,N2O,0.6,kg/TJ,328.85214403272,kg +38985e5e-1f35-3f18-ae84-e6cf3d6c43ea,SESCO,II.1.1,Jujuy,AR-Y,annual,2021,naphtha combustion consumption by to the public,44.8724544268,TJ,CO2,73300.0,kg/TJ,3289150.90948444,kg +4da0248e-c3f8-3869-9243-2bb8419b2870,SESCO,II.1.1,Jujuy,AR-Y,annual,2021,naphtha combustion consumption by to the public,44.8724544268,TJ,CH4,3.0,kg/TJ,134.61736328039999,kg +9b371e7d-5862-39a3-b9c5-0d51d974704c,SESCO,II.1.1,Jujuy,AR-Y,annual,2021,naphtha combustion consumption by to the public,44.8724544268,TJ,N2O,0.6,kg/TJ,26.923472656079998,kg +8d86fc8d-55d3-3dc8-8526-4750f4dba02b,SESCO,II.1.1,La Pampa,AR-L,annual,2021,naphtha combustion consumption by to the public,348.4286085896,TJ,CO2,73300.0,kg/TJ,25539817.00961768,kg +26275ba5-8505-3c77-8987-7fecedea5745,SESCO,II.1.1,La Pampa,AR-L,annual,2021,naphtha combustion consumption by to the public,348.4286085896,TJ,CH4,3.0,kg/TJ,1045.2858257688,kg +45426c88-b675-3fa8-96d5-584260f2742b,SESCO,II.1.1,La Pampa,AR-L,annual,2021,naphtha combustion consumption by to the public,348.4286085896,TJ,N2O,0.6,kg/TJ,209.05716515376,kg +5613e417-7266-3b09-a7bb-f7bff50aa1bc,SESCO,II.1.1,Mendoza,AR-M,annual,2021,naphtha combustion consumption by to the public,82.83871038519999,TJ,CO2,73300.0,kg/TJ,6072077.471235159,kg +345c8302-0452-39f0-8fd6-8ac00e5238bb,SESCO,II.1.1,Mendoza,AR-M,annual,2021,naphtha combustion consumption by to the public,82.83871038519999,TJ,CH4,3.0,kg/TJ,248.51613115559996,kg +0febf3c6-05b0-3a08-a539-10f71ad1aa0b,SESCO,II.1.1,Mendoza,AR-M,annual,2021,naphtha combustion consumption by to the public,82.83871038519999,TJ,N2O,0.6,kg/TJ,49.70322623111999,kg +9e7b4dff-eb12-3bbf-bb58-8ce1ba006524,SESCO,II.1.1,Neuquén,AR-Q,annual,2021,naphtha combustion consumption by to the public,374.6623448876,TJ,CO2,73300.0,kg/TJ,27462749.88026108,kg +0123777f-d40e-3457-9531-9d7a4bba161d,SESCO,II.1.1,Neuquén,AR-Q,annual,2021,naphtha combustion consumption by to the public,374.6623448876,TJ,CH4,3.0,kg/TJ,1123.9870346628,kg +954cbae3-cdbb-3aa2-9641-329b5659f0fa,SESCO,II.1.1,Neuquén,AR-Q,annual,2021,naphtha combustion consumption by to the public,374.6623448876,TJ,N2O,0.6,kg/TJ,224.79740693256,kg +aec6aeb5-ee36-3292-91a2-64abb569c1f5,SESCO,II.1.1,Rio Negro,AR-R,annual,2021,naphtha combustion consumption by to the public,1252.1922596568,TJ,CO2,73300.0,kg/TJ,91785692.63284343,kg +0dbe6947-3291-317b-9f7a-21b74a145722,SESCO,II.1.1,Rio Negro,AR-R,annual,2021,naphtha combustion consumption by to the public,1252.1922596568,TJ,CH4,3.0,kg/TJ,3756.5767789703996,kg +176cd096-2a80-3c3c-9c14-dbdebabaf034,SESCO,II.1.1,Rio Negro,AR-R,annual,2021,naphtha combustion consumption by to the public,1252.1922596568,TJ,N2O,0.6,kg/TJ,751.3153557940799,kg +70e3f5d0-bec0-3f9d-a544-6cc6edf6ff02,SESCO,II.1.1,San Juan,AR-J,annual,2021,naphtha combustion consumption by to the public,210.1615019812,TJ,CO2,73300.0,kg/TJ,15404838.095221959,kg +a7db2472-9cb1-3def-bc9c-f6454cb4bf5e,SESCO,II.1.1,San Juan,AR-J,annual,2021,naphtha combustion consumption by to the public,210.1615019812,TJ,CH4,3.0,kg/TJ,630.4845059436,kg +5a231f14-b20c-32fd-8d5c-bafb2d3df4fa,SESCO,II.1.1,San Juan,AR-J,annual,2021,naphtha combustion consumption by to the public,210.1615019812,TJ,N2O,0.6,kg/TJ,126.09690118871998,kg +3fa0f74a-6b9d-341c-a83a-95fbb68b301d,SESCO,II.1.1,San Luis,AR-D,annual,2021,naphtha combustion consumption by to the public,76.149343578,TJ,CO2,73300.0,kg/TJ,5581746.8842674,kg +bf1d32d1-9a6c-3847-8082-9781d3f566f9,SESCO,II.1.1,San Luis,AR-D,annual,2021,naphtha combustion consumption by to the public,76.149343578,TJ,CH4,3.0,kg/TJ,228.44803073399999,kg +dd3e7f9f-27f3-341c-894a-5bc23c2675ee,SESCO,II.1.1,San Luis,AR-D,annual,2021,naphtha combustion consumption by to the public,76.149343578,TJ,N2O,0.6,kg/TJ,45.689606146799996,kg +5043689b-d5f7-31b8-8d8e-2cf9fa27da78,SESCO,II.1.1,Santa Fe,AR-S,annual,2021,naphtha combustion consumption by to the public,945.5553530499999,TJ,CO2,73300.0,kg/TJ,69309207.378565,kg +aa593915-9f47-3f82-9816-10b3c4630a39,SESCO,II.1.1,Santa Fe,AR-S,annual,2021,naphtha combustion consumption by to the public,945.5553530499999,TJ,CH4,3.0,kg/TJ,2836.6660591499995,kg +d28296a0-c8df-3d28-b2ea-1f10c9174cd2,SESCO,II.1.1,Santa Fe,AR-S,annual,2021,naphtha combustion consumption by to the public,945.5553530499999,TJ,N2O,0.6,kg/TJ,567.3332118299999,kg +531d9203-669a-3f7f-80e2-538dd9c40689,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2021,naphtha combustion consumption by to the public,62.79524512799999,TJ,CO2,73300.0,kg/TJ,4602891.467882399,kg +a030de0f-5f3b-3bb7-a9f6-2da3fe0a9424,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2021,naphtha combustion consumption by to the public,62.79524512799999,TJ,CH4,3.0,kg/TJ,188.385735384,kg +12ee221c-1198-3d99-b645-a6c97eb3a2ac,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2021,naphtha combustion consumption by to the public,62.79524512799999,TJ,N2O,0.6,kg/TJ,37.67714707679999,kg +dba2e948-93a1-3256-a6b0-c82e4d02eeaa,SESCO,II.1.1,Buenos Aires,AR-B,annual,2021,naphtha combustion consumption by to the public,687.3524762412,TJ,CO2,73300.0,kg/TJ,50382936.50847995,kg +3913eb27-e7f6-339c-8b44-0c51a1dfaacb,SESCO,II.1.1,Buenos Aires,AR-B,annual,2021,naphtha combustion consumption by to the public,687.3524762412,TJ,CH4,3.0,kg/TJ,2062.0574287236,kg +c879db8f-21c4-36ce-aa4a-b445f66500ae,SESCO,II.1.1,Buenos Aires,AR-B,annual,2021,naphtha combustion consumption by to the public,687.3524762412,TJ,N2O,0.6,kg/TJ,412.41148574472,kg +158e4e37-9502-326c-98a2-d9731049a154,SESCO,II.1.1,Capital Federal,AR-C,annual,2021,naphtha combustion consumption by to the public,43.889279187599996,TJ,CO2,73300.0,kg/TJ,3217084.16445108,kg +360d5c4b-4cb7-3c9b-80bb-f732b71e7272,SESCO,II.1.1,Capital Federal,AR-C,annual,2021,naphtha combustion consumption by to the public,43.889279187599996,TJ,CH4,3.0,kg/TJ,131.6678375628,kg +f9ee3ed0-c4c5-3550-840a-c7a1de77aabd,SESCO,II.1.1,Capital Federal,AR-C,annual,2021,naphtha combustion consumption by to the public,43.889279187599996,TJ,N2O,0.6,kg/TJ,26.33356751256,kg +579fbd92-5174-39e1-87ed-bdc3a0af6e86,SESCO,II.1.1,Catamarca,AR-K,annual,2021,naphtha combustion consumption by to the public,3.4409625711999996,TJ,CO2,73300.0,kg/TJ,252222.55646895999,kg +d22fe120-4dd2-37da-9a90-580d3c9e90ab,SESCO,II.1.1,Catamarca,AR-K,annual,2021,naphtha combustion consumption by to the public,3.4409625711999996,TJ,CH4,3.0,kg/TJ,10.322887713599998,kg +78e8316a-d13c-392d-84c0-02c3a37c8306,SESCO,II.1.1,Catamarca,AR-K,annual,2021,naphtha combustion consumption by to the public,3.4409625711999996,TJ,N2O,0.6,kg/TJ,2.0645775427199995,kg +ecb3675c-06b2-3048-a0b6-47afd12458fd,SESCO,II.1.1,Chaco,AR-H,annual,2021,naphtha combustion consumption by to the public,4.8163404827999985,TJ,CO2,73300.0,kg/TJ,353037.7573892399,kg +ce41f9ec-1643-3a9f-b552-0c5b8402866a,SESCO,II.1.1,Chaco,AR-H,annual,2021,naphtha combustion consumption by to the public,4.8163404827999985,TJ,CH4,3.0,kg/TJ,14.449021448399996,kg +e1f8f382-cec6-3c95-a8e6-76b4f233d212,SESCO,II.1.1,Chaco,AR-H,annual,2021,naphtha combustion consumption by to the public,4.8163404827999985,TJ,N2O,0.6,kg/TJ,2.889804289679999,kg +293e74e5-60c6-36dd-879c-3c3be7120cd1,SESCO,II.1.1,Chubut,AR-U,annual,2021,naphtha combustion consumption by to the public,45.0644398512,TJ,CO2,73300.0,kg/TJ,3303223.44109296,kg +88e6d596-de0d-31f0-a69c-f07e3a02df6a,SESCO,II.1.1,Chubut,AR-U,annual,2021,naphtha combustion consumption by to the public,45.0644398512,TJ,CH4,3.0,kg/TJ,135.1933195536,kg +f1770461-1c62-3ea1-871b-2196e62cc208,SESCO,II.1.1,Chubut,AR-U,annual,2021,naphtha combustion consumption by to the public,45.0644398512,TJ,N2O,0.6,kg/TJ,27.03866391072,kg +1465341a-4a2a-34fa-8d3f-b9bd555bae2f,SESCO,II.1.1,Corrientes,AR-W,annual,2021,naphtha combustion consumption by to the public,28.520162994399996,TJ,CO2,73300.0,kg/TJ,2090527.9474895196,kg +4f7d7cc2-b393-31bf-86d5-81ed631067ab,SESCO,II.1.1,Corrientes,AR-W,annual,2021,naphtha combustion consumption by to the public,28.520162994399996,TJ,CH4,3.0,kg/TJ,85.56048898319999,kg +85257494-7f62-354a-b5fa-944ac003442a,SESCO,II.1.1,Corrientes,AR-W,annual,2021,naphtha combustion consumption by to the public,28.520162994399996,TJ,N2O,0.6,kg/TJ,17.112097796639997,kg +7d5902d3-dd47-3cc0-822c-a2c119e3fe0a,SESCO,II.1.1,Córdoba,AR-X,annual,2021,naphtha combustion consumption by to the public,112.28807439079998,TJ,CO2,73300.0,kg/TJ,8230715.852845638,kg +2a593001-1f7e-3723-ac5b-494e03035558,SESCO,II.1.1,Córdoba,AR-X,annual,2021,naphtha combustion consumption by to the public,112.28807439079998,TJ,CH4,3.0,kg/TJ,336.86422317239993,kg +19c07112-c704-38ed-af0c-6f8926ab8d79,SESCO,II.1.1,Córdoba,AR-X,annual,2021,naphtha combustion consumption by to the public,112.28807439079998,TJ,N2O,0.6,kg/TJ,67.37284463447999,kg +eee70fa7-961d-3440-ba8a-6af10fc22ebb,SESCO,II.1.1,Entre Rios,AR-E,annual,2021,naphtha combustion consumption by to the public,103.9705855496,TJ,CO2,73300.0,kg/TJ,7621043.92078568,kg +95529424-9101-368a-9835-ea92a7bc8249,SESCO,II.1.1,Entre Rios,AR-E,annual,2021,naphtha combustion consumption by to the public,103.9705855496,TJ,CH4,3.0,kg/TJ,311.9117566488,kg +7fdbaa3d-7e31-34f3-b02f-9670d9de90a0,SESCO,II.1.1,Entre Rios,AR-E,annual,2021,naphtha combustion consumption by to the public,103.9705855496,TJ,N2O,0.6,kg/TJ,62.38235132976,kg +d0e73821-1e8a-33f4-b1af-9e9e72507fa1,SESCO,II.1.1,Jujuy,AR-Y,annual,2021,naphtha combustion consumption by to the public,1.0101322,TJ,CO2,73300.0,kg/TJ,74042.69025999999,kg +660a94a3-8bac-384f-b22f-eb4a9ba06691,SESCO,II.1.1,Jujuy,AR-Y,annual,2021,naphtha combustion consumption by to the public,1.0101322,TJ,CH4,3.0,kg/TJ,3.0303965999999996,kg +d64cc085-f464-3626-9c99-cc4ad19f0e8a,SESCO,II.1.1,Jujuy,AR-Y,annual,2021,naphtha combustion consumption by to the public,1.0101322,TJ,N2O,0.6,kg/TJ,0.60607932,kg +c4623f88-4696-39c8-b6f5-eea700e87c02,SESCO,II.1.1,La Pampa,AR-L,annual,2021,naphtha combustion consumption by to the public,80.8642185428,TJ,CO2,73300.0,kg/TJ,5927347.21918724,kg +4fb279d3-4cf2-3f6a-9ec2-00484e1a30fb,SESCO,II.1.1,La Pampa,AR-L,annual,2021,naphtha combustion consumption by to the public,80.8642185428,TJ,CH4,3.0,kg/TJ,242.5926556284,kg +0bdb413c-b439-3431-9581-2bedb12e349c,SESCO,II.1.1,La Pampa,AR-L,annual,2021,naphtha combustion consumption by to the public,80.8642185428,TJ,N2O,0.6,kg/TJ,48.51853112568,kg +867b370c-bde1-3d14-b93e-51e14f8cc186,SESCO,II.1.1,Mendoza,AR-M,annual,2021,naphtha combustion consumption by to the public,11.3109779244,TJ,CO2,73300.0,kg/TJ,829094.6818585199,kg +0c3fb5c7-0af3-3599-8247-844c9092d6aa,SESCO,II.1.1,Mendoza,AR-M,annual,2021,naphtha combustion consumption by to the public,11.3109779244,TJ,CH4,3.0,kg/TJ,33.9329337732,kg +d4662a36-3412-303e-bdee-294139786b9e,SESCO,II.1.1,Mendoza,AR-M,annual,2021,naphtha combustion consumption by to the public,11.3109779244,TJ,N2O,0.6,kg/TJ,6.786586754639999,kg +18b8ebbc-e1db-3059-aa71-1bc9a55587ba,SESCO,II.1.1,Neuquén,AR-Q,annual,2021,naphtha combustion consumption by to the public,114.36149888239999,TJ,CO2,73300.0,kg/TJ,8382697.868079919,kg +57d3b3cb-b7eb-3283-9198-98a588071704,SESCO,II.1.1,Neuquén,AR-Q,annual,2021,naphtha combustion consumption by to the public,114.36149888239999,TJ,CH4,3.0,kg/TJ,343.08449664719996,kg +c6936cf4-11b0-3dca-9599-e21d791d3d8c,SESCO,II.1.1,Neuquén,AR-Q,annual,2021,naphtha combustion consumption by to the public,114.36149888239999,TJ,N2O,0.6,kg/TJ,68.61689932943999,kg +c9d3350e-ffe1-3269-81ca-ff5a83e6986b,SESCO,II.1.1,Rio Negro,AR-R,annual,2021,naphtha combustion consumption by to the public,196.54947305839997,TJ,CO2,73300.0,kg/TJ,14407076.375180718,kg +47cdef4d-7577-371e-9784-3065cfb67150,SESCO,II.1.1,Rio Negro,AR-R,annual,2021,naphtha combustion consumption by to the public,196.54947305839997,TJ,CH4,3.0,kg/TJ,589.6484191751999,kg +aad3c454-0cc3-38eb-a813-18f56a1462b3,SESCO,II.1.1,Rio Negro,AR-R,annual,2021,naphtha combustion consumption by to the public,196.54947305839997,TJ,N2O,0.6,kg/TJ,117.92968383503998,kg +c2025ae3-606b-3617-b13c-2647ca77af1d,SESCO,II.1.1,San Juan,AR-J,annual,2021,naphtha combustion consumption by to the public,24.0393673212,TJ,CO2,73300.0,kg/TJ,1762085.62464396,kg +c66ed398-16d0-368a-ade5-d3232d8f795f,SESCO,II.1.1,San Juan,AR-J,annual,2021,naphtha combustion consumption by to the public,24.0393673212,TJ,CH4,3.0,kg/TJ,72.1181019636,kg +3676823b-c9d5-3713-8bf0-e82b91bf0df9,SESCO,II.1.1,San Juan,AR-J,annual,2021,naphtha combustion consumption by to the public,24.0393673212,TJ,N2O,0.6,kg/TJ,14.42362039272,kg +3be86fd5-4080-34da-aae2-9804c3dbdb5b,SESCO,II.1.1,San Luis,AR-D,annual,2021,naphtha combustion consumption by to the public,16.617458673199998,TJ,CO2,73300.0,kg/TJ,1218059.7207455598,kg +a232bc17-61fc-3e93-8d9c-5587e5d981da,SESCO,II.1.1,San Luis,AR-D,annual,2021,naphtha combustion consumption by to the public,16.617458673199998,TJ,CH4,3.0,kg/TJ,49.852376019599994,kg +a8fd8383-fe85-3fa5-909d-180b1b6a626d,SESCO,II.1.1,San Luis,AR-D,annual,2021,naphtha combustion consumption by to the public,16.617458673199998,TJ,N2O,0.6,kg/TJ,9.970475203919998,kg +569c56f7-cb0f-336c-8487-c64063b6d180,SESCO,II.1.1,Santa Fe,AR-S,annual,2021,naphtha combustion consumption by to the public,193.45011609,TJ,CO2,73300.0,kg/TJ,14179893.509397,kg +fd5460c8-26c3-3143-8f29-1c08676a55f3,SESCO,II.1.1,Santa Fe,AR-S,annual,2021,naphtha combustion consumption by to the public,193.45011609,TJ,CH4,3.0,kg/TJ,580.35034827,kg +24abe7b1-04a1-3e0b-b9ec-55b29a8add1d,SESCO,II.1.1,Santa Fe,AR-S,annual,2021,naphtha combustion consumption by to the public,193.45011609,TJ,N2O,0.6,kg/TJ,116.070069654,kg +4bca2c68-cc14-3dc4-b535-b5c84fc2ae1d,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2021,naphtha combustion consumption by to the public,6.945819773199999,TJ,CO2,73300.0,kg/TJ,509128.58937555994,kg +2233c308-b356-3431-b0ec-6e2e7683d638,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2021,naphtha combustion consumption by to the public,6.945819773199999,TJ,CH4,3.0,kg/TJ,20.837459319599997,kg +addd4caa-2dd5-3f6e-9770-3632b110b578,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2021,naphtha combustion consumption by to the public,6.945819773199999,TJ,N2O,0.6,kg/TJ,4.16749186392,kg +376e72fb-901a-36cd-9aa0-f3338c4e8ed4,SESCO,II.5.1,Buenos Aires,AR-B,annual,2021,naphtha combustion consumption by agriculture machines,4.8546651999999995,TJ,CO2,73300.0,kg/TJ,355846.95915999997,kg +9461cbdb-4aeb-3fac-bbfd-b01097a76112,SESCO,II.5.1,Buenos Aires,AR-B,annual,2021,naphtha combustion consumption by agriculture machines,4.8546651999999995,TJ,CH4,3.0,kg/TJ,14.563995599999998,kg +5bca2417-831f-3306-8275-14715e560caf,SESCO,II.5.1,Buenos Aires,AR-B,annual,2021,naphtha combustion consumption by agriculture machines,4.8546651999999995,TJ,N2O,0.6,kg/TJ,2.9127991199999994,kg +24881235-9ed2-388f-b316-e24e24a2787e,SESCO,II.5.1,Entre Rios,AR-E,annual,2021,naphtha combustion consumption by agriculture machines,0.33168519999999996,TJ,CO2,73300.0,kg/TJ,24312.525159999997,kg +3e17d31c-d808-3a03-bf57-54680aa7d359,SESCO,II.5.1,Entre Rios,AR-E,annual,2021,naphtha combustion consumption by agriculture machines,0.33168519999999996,TJ,CH4,3.0,kg/TJ,0.9950555999999999,kg +8d544e9c-b254-3fcc-a008-14da166831c9,SESCO,II.5.1,Entre Rios,AR-E,annual,2021,naphtha combustion consumption by agriculture machines,0.33168519999999996,TJ,N2O,0.6,kg/TJ,0.19901111999999996,kg +b77caf0b-64f5-3cee-b4f8-52d1a47a838c,SESCO,II.5.1,Salta,AR-A,annual,2021,naphtha combustion consumption by agriculture machines,0.6332171999999999,TJ,CO2,73300.0,kg/TJ,46414.820759999995,kg +bc50f79e-372d-3bd5-87c3-91cbd2166db0,SESCO,II.5.1,Salta,AR-A,annual,2021,naphtha combustion consumption by agriculture machines,0.6332171999999999,TJ,CH4,3.0,kg/TJ,1.8996515999999999,kg +1924dcd0-cbd4-333d-ba2f-df56ca4a82e2,SESCO,II.5.1,Salta,AR-A,annual,2021,naphtha combustion consumption by agriculture machines,0.6332171999999999,TJ,N2O,0.6,kg/TJ,0.37993031999999993,kg +bae2ae94-083e-31fd-b3f6-0660963bcee4,SESCO,II.5.1,Santa Fe,AR-S,annual,2021,naphtha combustion consumption by agriculture machines,10.5837732,TJ,CO2,73300.0,kg/TJ,775790.5755599999,kg +55a54330-a0c3-32bf-b95e-167c2926e2a4,SESCO,II.5.1,Santa Fe,AR-S,annual,2021,naphtha combustion consumption by agriculture machines,10.5837732,TJ,CH4,3.0,kg/TJ,31.7513196,kg +4f2752c0-873d-3e75-9e42-643e9d75918e,SESCO,II.5.1,Santa Fe,AR-S,annual,2021,naphtha combustion consumption by agriculture machines,10.5837732,TJ,N2O,0.6,kg/TJ,6.35026392,kg +b3d521b4-7521-3487-a9ea-c1a1dfc61e68,SESCO,II.5.1,Santa Fe,AR-S,annual,2021,naphtha combustion consumption by agriculture machines,0.7236768,TJ,CO2,73300.0,kg/TJ,53045.50944,kg +4ed1390a-4f35-3697-8799-dff33060eb69,SESCO,II.5.1,Santa Fe,AR-S,annual,2021,naphtha combustion consumption by agriculture machines,0.7236768,TJ,CH4,3.0,kg/TJ,2.1710304000000002,kg +6fcb93f9-3856-3f15-a2a7-dcdc50ccd391,SESCO,II.5.1,Santa Fe,AR-S,annual,2021,naphtha combustion consumption by agriculture machines,0.7236768,TJ,N2O,0.6,kg/TJ,0.43420608,kg +a69eeaf8-79ac-36a6-8c4a-f58e55ce5f0c,SESCO,II.1.1,Buenos Aires,AR-B,annual,2021,naphtha combustion consumption by to the public,33520.7395292,TJ,CO2,73300.0,kg/TJ,2457070207.49036,kg +7790084b-af6e-3bca-8688-cc9b73260e9f,SESCO,II.1.1,Buenos Aires,AR-B,annual,2021,naphtha combustion consumption by to the public,33520.7395292,TJ,CH4,3.0,kg/TJ,100562.2185876,kg +419b50c3-74c8-3f73-9ae6-099d08e1e0cc,SESCO,II.1.1,Buenos Aires,AR-B,annual,2021,naphtha combustion consumption by to the public,33520.7395292,TJ,N2O,0.6,kg/TJ,20112.44371752,kg +334e672a-c76e-3395-80b2-91f4d152fe08,SESCO,II.1.1,Capital Federal,AR-C,annual,2021,naphtha combustion consumption by to the public,6631.955114399999,TJ,CO2,73300.0,kg/TJ,486122309.8855199,kg +382db30c-1e52-313a-8462-f7ea5a205497,SESCO,II.1.1,Capital Federal,AR-C,annual,2021,naphtha combustion consumption by to the public,6631.955114399999,TJ,CH4,3.0,kg/TJ,19895.865343199996,kg +b019cfc0-2e12-3582-bb37-ca46f03636b0,SESCO,II.1.1,Capital Federal,AR-C,annual,2021,naphtha combustion consumption by to the public,6631.955114399999,TJ,N2O,0.6,kg/TJ,3979.173068639999,kg +9828d9da-a641-3462-8b8f-576876b0e382,SESCO,II.1.1,Catamarca,AR-K,annual,2021,naphtha combustion consumption by to the public,706.8814676,TJ,CO2,73300.0,kg/TJ,51814411.57508,kg +1858bac1-e7dd-3aad-8301-bcc5776eef54,SESCO,II.1.1,Catamarca,AR-K,annual,2021,naphtha combustion consumption by to the public,706.8814676,TJ,CH4,3.0,kg/TJ,2120.6444027999996,kg +26c9ef58-57ab-32f7-878e-1d5cbb1b398b,SESCO,II.1.1,Catamarca,AR-K,annual,2021,naphtha combustion consumption by to the public,706.8814676,TJ,N2O,0.6,kg/TJ,424.12888055999997,kg +c784d8ee-4fc9-3c5f-8f65-9009d4cc0283,SESCO,II.1.1,Chaco,AR-H,annual,2021,naphtha combustion consumption by to the public,2116.9958656,TJ,CO2,73300.0,kg/TJ,155175796.94847998,kg +3306f42f-3394-3339-8b7d-4a6ebeb9b042,SESCO,II.1.1,Chaco,AR-H,annual,2021,naphtha combustion consumption by to the public,2116.9958656,TJ,CH4,3.0,kg/TJ,6350.9875968,kg +327dc6f6-efde-35e9-ab8a-16ab02d7153b,SESCO,II.1.1,Chaco,AR-H,annual,2021,naphtha combustion consumption by to the public,2116.9958656,TJ,N2O,0.6,kg/TJ,1270.19751936,kg +102f2632-fa3e-3016-bb08-a89d3e68fca6,SESCO,II.1.1,Chubut,AR-U,annual,2021,naphtha combustion consumption by to the public,3044.71937,TJ,CO2,73300.0,kg/TJ,223177929.82099998,kg +82ea6809-c915-3c83-af13-3bb9c031ba3c,SESCO,II.1.1,Chubut,AR-U,annual,2021,naphtha combustion consumption by to the public,3044.71937,TJ,CH4,3.0,kg/TJ,9134.15811,kg +4902adbe-2776-3912-be6b-6871d7392526,SESCO,II.1.1,Chubut,AR-U,annual,2021,naphtha combustion consumption by to the public,3044.71937,TJ,N2O,0.6,kg/TJ,1826.831622,kg +aaee4da4-dd80-3b87-8e3c-0f30bda5e79b,SESCO,II.1.1,Corrientes,AR-W,annual,2021,naphtha combustion consumption by to the public,1994.1517287999998,TJ,CO2,73300.0,kg/TJ,146171321.72103998,kg +6493b96a-f078-33d6-bbd3-32583a4c97b8,SESCO,II.1.1,Corrientes,AR-W,annual,2021,naphtha combustion consumption by to the public,1994.1517287999998,TJ,CH4,3.0,kg/TJ,5982.4551864,kg +f1a964f0-f839-3c4b-86a8-2aa0631bb1c0,SESCO,II.1.1,Corrientes,AR-W,annual,2021,naphtha combustion consumption by to the public,1994.1517287999998,TJ,N2O,0.6,kg/TJ,1196.4910372799998,kg +fa818848-c16e-3d78-b504-a9dd0aa9de7e,SESCO,II.1.1,Córdoba,AR-X,annual,2021,naphtha combustion consumption by to the public,8738.487819599999,TJ,CO2,73300.0,kg/TJ,640531157.17668,kg +3a18a13c-20c1-34d0-a76d-f212a82bfe0e,SESCO,II.1.1,Córdoba,AR-X,annual,2021,naphtha combustion consumption by to the public,8738.487819599999,TJ,CH4,3.0,kg/TJ,26215.463458799997,kg +412eef76-69d1-39d7-b9b4-b9b4e54be61e,SESCO,II.1.1,Córdoba,AR-X,annual,2021,naphtha combustion consumption by to the public,8738.487819599999,TJ,N2O,0.6,kg/TJ,5243.092691759999,kg +b14a8076-02c9-33e6-80a4-fb145a317d34,SESCO,II.1.1,Entre Rios,AR-E,annual,2021,naphtha combustion consumption by to the public,2755.9421736,TJ,CO2,73300.0,kg/TJ,202010561.32488,kg +6f71151e-915c-3aa3-8059-751700889684,SESCO,II.1.1,Entre Rios,AR-E,annual,2021,naphtha combustion consumption by to the public,2755.9421736,TJ,CH4,3.0,kg/TJ,8267.8265208,kg +57a7cbfb-1834-36da-8fdf-0c51773e13ca,SESCO,II.1.1,Entre Rios,AR-E,annual,2021,naphtha combustion consumption by to the public,2755.9421736,TJ,N2O,0.6,kg/TJ,1653.5653041599999,kg +e79d66b0-b126-3b64-86c5-6c5e795c337d,SESCO,II.1.1,Formosa,AR-P,annual,2021,naphtha combustion consumption by to the public,834.3993503999999,TJ,CO2,73300.0,kg/TJ,61161472.38431999,kg +0b4845c1-6cce-3d01-87b6-d941f61be6ca,SESCO,II.1.1,Formosa,AR-P,annual,2021,naphtha combustion consumption by to the public,834.3993503999999,TJ,CH4,3.0,kg/TJ,2503.1980511999996,kg +34d994c4-ef7e-32b6-9ff7-d3683f636de7,SESCO,II.1.1,Formosa,AR-P,annual,2021,naphtha combustion consumption by to the public,834.3993503999999,TJ,N2O,0.6,kg/TJ,500.6396102399999,kg +60d42368-045e-3e4e-a30c-73b8f5b07063,SESCO,II.1.1,Jujuy,AR-Y,annual,2021,naphtha combustion consumption by to the public,1428.0857052,TJ,CO2,73300.0,kg/TJ,104678682.19116,kg +81c8ceaa-5966-30ab-9fde-92bf5fff9e8e,SESCO,II.1.1,Jujuy,AR-Y,annual,2021,naphtha combustion consumption by to the public,1428.0857052,TJ,CH4,3.0,kg/TJ,4284.257115599999,kg +35c6302b-4a61-32ae-bd04-f9f0a08e3822,SESCO,II.1.1,Jujuy,AR-Y,annual,2021,naphtha combustion consumption by to the public,1428.0857052,TJ,N2O,0.6,kg/TJ,856.8514231199999,kg +11ed7872-a6ea-3086-a9fe-6320df1c77cc,SESCO,II.1.1,La Pampa,AR-L,annual,2021,naphtha combustion consumption by to the public,1392.8064611999998,TJ,CO2,73300.0,kg/TJ,102092713.60595998,kg +0a451299-2bd6-360d-a950-a8b9d1af6245,SESCO,II.1.1,La Pampa,AR-L,annual,2021,naphtha combustion consumption by to the public,1392.8064611999998,TJ,CH4,3.0,kg/TJ,4178.4193835999995,kg +02ef44f4-7980-3e61-bd97-561e132b29b8,SESCO,II.1.1,La Pampa,AR-L,annual,2021,naphtha combustion consumption by to the public,1392.8064611999998,TJ,N2O,0.6,kg/TJ,835.6838767199998,kg +3fd1216e-a26c-36ae-90ac-cb5f5e8bb977,SESCO,II.1.1,La Rioja,AR-F,annual,2021,naphtha combustion consumption by to the public,878.8451671999999,TJ,CO2,73300.0,kg/TJ,64419350.75575999,kg +4a193043-9ce6-3a1f-8f74-9c0cb7e9b4d8,SESCO,II.1.1,La Rioja,AR-F,annual,2021,naphtha combustion consumption by to the public,878.8451671999999,TJ,CH4,3.0,kg/TJ,2636.5355015999994,kg +e21cbdc1-b274-3304-af1d-fd64aec782e0,SESCO,II.1.1,La Rioja,AR-F,annual,2021,naphtha combustion consumption by to the public,878.8451671999999,TJ,N2O,0.6,kg/TJ,527.3071003199999,kg +0905569e-64e3-3b12-beb9-0aa421999d11,SESCO,II.1.1,Mendoza,AR-M,annual,2021,naphtha combustion consumption by to the public,4440.2396192,TJ,CO2,73300.0,kg/TJ,325469564.08735996,kg +5b4c3669-8aa5-308f-98c5-83decff21de9,SESCO,II.1.1,Mendoza,AR-M,annual,2021,naphtha combustion consumption by to the public,4440.2396192,TJ,CH4,3.0,kg/TJ,13320.718857599999,kg +85ce99de-82aa-30fd-a5b6-5da2d5095fc0,SESCO,II.1.1,Mendoza,AR-M,annual,2021,naphtha combustion consumption by to the public,4440.2396192,TJ,N2O,0.6,kg/TJ,2664.1437715199995,kg +e7edcce9-8857-3ce8-ac27-097715a846db,SESCO,II.1.1,Misiones,AR-N,annual,2021,naphtha combustion consumption by to the public,3389.5815184,TJ,CO2,73300.0,kg/TJ,248456325.29871997,kg +03ff0900-db0e-378d-9b73-5fc710a70f05,SESCO,II.1.1,Misiones,AR-N,annual,2021,naphtha combustion consumption by to the public,3389.5815184,TJ,CH4,3.0,kg/TJ,10168.744555199999,kg +839c412d-7a2f-3703-9df5-199d311f153b,SESCO,II.1.1,Misiones,AR-N,annual,2021,naphtha combustion consumption by to the public,3389.5815184,TJ,N2O,0.6,kg/TJ,2033.7489110399997,kg +3c16f5a8-12a0-39c9-b5ce-dfaa12108d53,SESCO,II.1.1,Neuquén,AR-Q,annual,2021,naphtha combustion consumption by to the public,2977.8395723999997,TJ,CO2,73300.0,kg/TJ,218275640.65692,kg +f0f1191f-92fb-3798-b850-36655570fa15,SESCO,II.1.1,Neuquén,AR-Q,annual,2021,naphtha combustion consumption by to the public,2977.8395723999997,TJ,CH4,3.0,kg/TJ,8933.518717199999,kg +7f4c1f8b-dd5b-3546-9a0e-f1cfa10a1333,SESCO,II.1.1,Neuquén,AR-Q,annual,2021,naphtha combustion consumption by to the public,2977.8395723999997,TJ,N2O,0.6,kg/TJ,1786.7037434399997,kg +a5686558-7230-3c00-b302-eed4838eaa15,SESCO,II.1.1,Rio Negro,AR-R,annual,2021,naphtha combustion consumption by to the public,2876.4343608,TJ,CO2,73300.0,kg/TJ,210842638.64664,kg +4a91c1b9-0ca9-3ff7-9d4a-aa8f9b8a1eea,SESCO,II.1.1,Rio Negro,AR-R,annual,2021,naphtha combustion consumption by to the public,2876.4343608,TJ,CH4,3.0,kg/TJ,8629.3030824,kg +128687f1-16ea-3d84-b600-48e18c1c0d45,SESCO,II.1.1,Rio Negro,AR-R,annual,2021,naphtha combustion consumption by to the public,2876.4343608,TJ,N2O,0.6,kg/TJ,1725.8606164799999,kg +4f7f9e8f-39f6-3583-ae2d-5d2fdebdd4ec,SESCO,II.1.1,Salta,AR-A,annual,2021,naphtha combustion consumption by to the public,3062.0574599999995,TJ,CO2,73300.0,kg/TJ,224448811.81799996,kg +fcd671ce-3b4c-39ab-80d6-dd1ac1f04108,SESCO,II.1.1,Salta,AR-A,annual,2021,naphtha combustion consumption by to the public,3062.0574599999995,TJ,CH4,3.0,kg/TJ,9186.172379999998,kg +e48ae49d-ba0a-3f07-bf59-366306d202f2,SESCO,II.1.1,Salta,AR-A,annual,2021,naphtha combustion consumption by to the public,3062.0574599999995,TJ,N2O,0.6,kg/TJ,1837.2344759999996,kg +7b89bb60-ae0d-39f8-9c9b-6a45e459e2ab,SESCO,II.1.1,San Juan,AR-J,annual,2021,naphtha combustion consumption by to the public,1510.976852,TJ,CO2,73300.0,kg/TJ,110754603.2516,kg +301ac65c-88bb-33a3-b68c-f7aa15e15533,SESCO,II.1.1,San Juan,AR-J,annual,2021,naphtha combustion consumption by to the public,1510.976852,TJ,CH4,3.0,kg/TJ,4532.930556,kg +27f8e22e-6e85-346a-9361-2712441c865c,SESCO,II.1.1,San Juan,AR-J,annual,2021,naphtha combustion consumption by to the public,1510.976852,TJ,N2O,0.6,kg/TJ,906.5861112,kg +d5fb5747-98bf-34f1-9141-4306f6d9f70b,SESCO,II.1.1,San Luis,AR-D,annual,2021,naphtha combustion consumption by to the public,1205.4947828,TJ,CO2,73300.0,kg/TJ,88362767.57924,kg +3f7c6d12-f46f-3808-8584-d17da45c9f10,SESCO,II.1.1,San Luis,AR-D,annual,2021,naphtha combustion consumption by to the public,1205.4947828,TJ,CH4,3.0,kg/TJ,3616.4843484,kg +631fdecd-8663-3a8d-9a67-c8bc16a19bdb,SESCO,II.1.1,San Luis,AR-D,annual,2021,naphtha combustion consumption by to the public,1205.4947828,TJ,N2O,0.6,kg/TJ,723.29686968,kg +4dc65484-188b-35e4-bf8b-70e1873ed215,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2021,naphtha combustion consumption by to the public,1738.0907544,TJ,CO2,73300.0,kg/TJ,127402052.29752,kg +884d28a7-2792-3bd4-a10b-6731f302dad9,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2021,naphtha combustion consumption by to the public,1738.0907544,TJ,CH4,3.0,kg/TJ,5214.2722631999995,kg +4d550300-a89b-3546-932f-e768837f7127,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2021,naphtha combustion consumption by to the public,1738.0907544,TJ,N2O,0.6,kg/TJ,1042.8544526399999,kg +167d1895-04bc-36cb-bb22-d528a4640e0a,SESCO,II.1.1,Santa Fe,AR-S,annual,2021,naphtha combustion consumption by to the public,6299.5763908,TJ,CO2,73300.0,kg/TJ,461758949.44563997,kg +1813c59c-56a0-3f1f-b0a6-8345a0f13a48,SESCO,II.1.1,Santa Fe,AR-S,annual,2021,naphtha combustion consumption by to the public,6299.5763908,TJ,CH4,3.0,kg/TJ,18898.7291724,kg +b4dcd68b-5302-3684-8280-7c54416604d1,SESCO,II.1.1,Santa Fe,AR-S,annual,2021,naphtha combustion consumption by to the public,6299.5763908,TJ,N2O,0.6,kg/TJ,3779.7458344799998,kg +d75f97dd-51d6-3d27-b870-84c0f4ffef66,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2021,naphtha combustion consumption by to the public,1339.8272888,TJ,CO2,73300.0,kg/TJ,98209340.26903999,kg +45e7c851-2fdd-34f9-b952-650670eb700b,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2021,naphtha combustion consumption by to the public,1339.8272888,TJ,CH4,3.0,kg/TJ,4019.4818663999995,kg +49603685-0fa1-37b5-b8fa-ca0acfb1b718,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2021,naphtha combustion consumption by to the public,1339.8272888,TJ,N2O,0.6,kg/TJ,803.8963732799999,kg +24f4f02a-00c5-3d65-a7ab-4301a5ac1aab,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2021,naphtha combustion consumption by to the public,1405.6215711999998,TJ,CO2,73300.0,kg/TJ,103032061.16895999,kg +89e6e340-d2df-3039-b09f-7e46034cce51,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2021,naphtha combustion consumption by to the public,1405.6215711999998,TJ,CH4,3.0,kg/TJ,4216.8647136,kg +6186a3ae-9e5f-3e99-abc1-6844f2bb8c11,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2021,naphtha combustion consumption by to the public,1405.6215711999998,TJ,N2O,0.6,kg/TJ,843.3729427199999,kg +666367b0-8f50-3b6c-8082-49d5609e5589,SESCO,II.1.1,Tucuman,AR-T,annual,2021,naphtha combustion consumption by to the public,2583.5864824,TJ,CO2,73300.0,kg/TJ,189376889.15992,kg +6f7b4b2e-ffa1-357f-8ef3-9aeb14a49c96,SESCO,II.1.1,Tucuman,AR-T,annual,2021,naphtha combustion consumption by to the public,2583.5864824,TJ,CH4,3.0,kg/TJ,7750.7594472,kg +549d39d4-64cd-350c-9afd-ac56d2089ec3,SESCO,II.1.1,Tucuman,AR-T,annual,2021,naphtha combustion consumption by to the public,2583.5864824,TJ,N2O,0.6,kg/TJ,1550.1518894399999,kg +4fe43d49-cc45-3a60-aa00-7de035beab50,SESCO,II.1.1,Buenos Aires,AR-B,annual,2021,naphtha combustion consumption by to the public,13922.6973424,TJ,CO2,73300.0,kg/TJ,1020533715.1979201,kg +a037d9d9-2d82-3bd8-8d1b-e965826f9007,SESCO,II.1.1,Buenos Aires,AR-B,annual,2021,naphtha combustion consumption by to the public,13922.6973424,TJ,CH4,3.0,kg/TJ,41768.0920272,kg +ad3cf7c3-4782-3e88-a223-f94a98bcf267,SESCO,II.1.1,Buenos Aires,AR-B,annual,2021,naphtha combustion consumption by to the public,13922.6973424,TJ,N2O,0.6,kg/TJ,8353.61840544,kg +c6f6548f-b78c-3f6d-9c4a-b323d89f66b3,SESCO,II.1.1,Capital Federal,AR-C,annual,2021,naphtha combustion consumption by to the public,3471.7489883999997,TJ,CO2,73300.0,kg/TJ,254479200.84971997,kg +3c60f548-3f69-34fd-9501-357183077c63,SESCO,II.1.1,Capital Federal,AR-C,annual,2021,naphtha combustion consumption by to the public,3471.7489883999997,TJ,CH4,3.0,kg/TJ,10415.2469652,kg +0d1e357f-4ebe-3773-9309-8f07d9fe0687,SESCO,II.1.1,Capital Federal,AR-C,annual,2021,naphtha combustion consumption by to the public,3471.7489883999997,TJ,N2O,0.6,kg/TJ,2083.04939304,kg +1426d929-b14d-3011-9078-3dff84c52d30,SESCO,II.1.1,Catamarca,AR-K,annual,2021,naphtha combustion consumption by to the public,272.3437024,TJ,CO2,73300.0,kg/TJ,19962793.38592,kg +976d9846-a71b-3abd-9f68-598ff19640b5,SESCO,II.1.1,Catamarca,AR-K,annual,2021,naphtha combustion consumption by to the public,272.3437024,TJ,CH4,3.0,kg/TJ,817.0311072,kg +da34b59c-e73e-36c0-b5a5-e3a1023f9f8b,SESCO,II.1.1,Catamarca,AR-K,annual,2021,naphtha combustion consumption by to the public,272.3437024,TJ,N2O,0.6,kg/TJ,163.40622144,kg +8133883a-58b6-3831-8d0c-084776449cab,SESCO,II.1.1,Chaco,AR-H,annual,2021,naphtha combustion consumption by to the public,663.0085615999999,TJ,CO2,73300.0,kg/TJ,48598527.56527999,kg +d3159f4e-eeb6-3adb-a9ac-7b5e8896b577,SESCO,II.1.1,Chaco,AR-H,annual,2021,naphtha combustion consumption by to the public,663.0085615999999,TJ,CH4,3.0,kg/TJ,1989.0256847999997,kg +71af4474-20c4-3364-98a9-89dbea6cfda0,SESCO,II.1.1,Chaco,AR-H,annual,2021,naphtha combustion consumption by to the public,663.0085615999999,TJ,N2O,0.6,kg/TJ,397.8051369599999,kg +60a70990-e848-3c49-8ba7-47738c2287a1,SESCO,II.1.1,Chubut,AR-U,annual,2021,naphtha combustion consumption by to the public,1090.9729292,TJ,CO2,73300.0,kg/TJ,79968315.71035999,kg +a55276d9-229d-3ca6-9200-5505a19c5c66,SESCO,II.1.1,Chubut,AR-U,annual,2021,naphtha combustion consumption by to the public,1090.9729292,TJ,CH4,3.0,kg/TJ,3272.9187875999996,kg +b84fda9c-d00c-3d45-a8b8-3dcc849194b9,SESCO,II.1.1,Chubut,AR-U,annual,2021,naphtha combustion consumption by to the public,1090.9729292,TJ,N2O,0.6,kg/TJ,654.58375752,kg +48ebb5f2-ab8f-3802-b8c8-d7b1bf5239fc,SESCO,II.1.1,Corrientes,AR-W,annual,2021,naphtha combustion consumption by to the public,803.2209415999998,TJ,CO2,73300.0,kg/TJ,58876095.01927999,kg +4b38bd57-6d9d-3c30-ba2d-0bf5057db042,SESCO,II.1.1,Corrientes,AR-W,annual,2021,naphtha combustion consumption by to the public,803.2209415999998,TJ,CH4,3.0,kg/TJ,2409.6628247999997,kg +c7b0b411-61c5-3f8d-8a86-c89777dc65e1,SESCO,II.1.1,Corrientes,AR-W,annual,2021,naphtha combustion consumption by to the public,803.2209415999998,TJ,N2O,0.6,kg/TJ,481.93256495999987,kg +1dfe5a54-3083-36de-affd-8f59f7c75bd9,SESCO,II.1.1,Córdoba,AR-X,annual,2021,naphtha combustion consumption by to the public,3451.6669571999996,TJ,CO2,73300.0,kg/TJ,253007187.96275997,kg +85f2e496-634b-310b-b1a0-4b526e7da38e,SESCO,II.1.1,Córdoba,AR-X,annual,2021,naphtha combustion consumption by to the public,3451.6669571999996,TJ,CH4,3.0,kg/TJ,10355.0008716,kg +fda59016-974d-384b-b60a-372a6ed69cc1,SESCO,II.1.1,Córdoba,AR-X,annual,2021,naphtha combustion consumption by to the public,3451.6669571999996,TJ,N2O,0.6,kg/TJ,2071.0001743199996,kg +e6cbf0af-3059-3d42-a269-bb6a2361382c,SESCO,II.1.1,Entre Rios,AR-E,annual,2021,naphtha combustion consumption by to the public,1088.5606731999999,TJ,CO2,73300.0,kg/TJ,79791497.34555998,kg +6f83de77-d8cc-3bae-96a2-f61f8530c408,SESCO,II.1.1,Entre Rios,AR-E,annual,2021,naphtha combustion consumption by to the public,1088.5606731999999,TJ,CH4,3.0,kg/TJ,3265.6820196,kg +528b7649-bdb5-3139-b944-34e556e7419e,SESCO,II.1.1,Entre Rios,AR-E,annual,2021,naphtha combustion consumption by to the public,1088.5606731999999,TJ,N2O,0.6,kg/TJ,653.1364039199999,kg +8b091ae0-f21a-33f3-b5e4-3493d703ad83,SESCO,II.1.1,Formosa,AR-P,annual,2021,naphtha combustion consumption by to the public,218.52024039999998,TJ,CO2,73300.0,kg/TJ,16017533.621319998,kg +0f9498b4-1e27-3fac-88c9-079c3ee90639,SESCO,II.1.1,Formosa,AR-P,annual,2021,naphtha combustion consumption by to the public,218.52024039999998,TJ,CH4,3.0,kg/TJ,655.5607212,kg +fbe93ba4-8865-3854-b69c-b04a40c1c030,SESCO,II.1.1,Formosa,AR-P,annual,2021,naphtha combustion consumption by to the public,218.52024039999998,TJ,N2O,0.6,kg/TJ,131.11214424,kg +2a276733-3837-3b97-8147-74cc017832bf,SESCO,II.1.1,Jujuy,AR-Y,annual,2021,naphtha combustion consumption by to the public,411.47056719999995,TJ,CO2,73300.0,kg/TJ,30160792.575759996,kg +b564733f-9bbc-360d-96d8-6026585b8403,SESCO,II.1.1,Jujuy,AR-Y,annual,2021,naphtha combustion consumption by to the public,411.47056719999995,TJ,CH4,3.0,kg/TJ,1234.4117015999998,kg +9864ee62-ae40-3d2c-b7d4-e85547e833aa,SESCO,II.1.1,Jujuy,AR-Y,annual,2021,naphtha combustion consumption by to the public,411.47056719999995,TJ,N2O,0.6,kg/TJ,246.88234031999997,kg +af6db0cd-dc96-374f-9fa3-db25e43f3f0c,SESCO,II.1.1,La Pampa,AR-L,annual,2021,naphtha combustion consumption by to the public,909.3903587999998,TJ,CO2,73300.0,kg/TJ,66658313.300039984,kg +67393389-61c4-352e-b27b-d644c18c8634,SESCO,II.1.1,La Pampa,AR-L,annual,2021,naphtha combustion consumption by to the public,909.3903587999998,TJ,CH4,3.0,kg/TJ,2728.1710763999995,kg +df96eb5b-b3a5-3aec-b805-a0a7ab0fbe1d,SESCO,II.1.1,La Pampa,AR-L,annual,2021,naphtha combustion consumption by to the public,909.3903587999998,TJ,N2O,0.6,kg/TJ,545.6342152799999,kg +698e616c-2b29-311d-8677-5aa136fa7033,SESCO,II.1.1,La Rioja,AR-F,annual,2021,naphtha combustion consumption by to the public,376.4627019999999,TJ,CO2,73300.0,kg/TJ,27594716.056599993,kg +32baced7-c01c-3ac8-ad60-dff38019faba,SESCO,II.1.1,La Rioja,AR-F,annual,2021,naphtha combustion consumption by to the public,376.4627019999999,TJ,CH4,3.0,kg/TJ,1129.3881059999999,kg +2d4301c8-3fce-3831-a043-c615854c4350,SESCO,II.1.1,La Rioja,AR-F,annual,2021,naphtha combustion consumption by to the public,376.4627019999999,TJ,N2O,0.6,kg/TJ,225.87762119999994,kg +65d7950b-b4b0-3eaa-af1b-5dc48742243f,SESCO,II.1.1,Mendoza,AR-M,annual,2021,naphtha combustion consumption by to the public,2322.3693107999998,TJ,CO2,73300.0,kg/TJ,170229670.48163998,kg +09c34b30-3365-33f3-a0ef-7ec5f23c7fa2,SESCO,II.1.1,Mendoza,AR-M,annual,2021,naphtha combustion consumption by to the public,2322.3693107999998,TJ,CH4,3.0,kg/TJ,6967.107932399999,kg +e07f4313-ad4a-3207-ba5d-97993f3be0fd,SESCO,II.1.1,Mendoza,AR-M,annual,2021,naphtha combustion consumption by to the public,2322.3693107999998,TJ,N2O,0.6,kg/TJ,1393.4215864799999,kg +d0d26f40-9df4-37ea-a009-47f872cbfcf8,SESCO,II.1.1,Misiones,AR-N,annual,2021,naphtha combustion consumption by to the public,904.7769191999998,TJ,CO2,73300.0,kg/TJ,66320148.17735999,kg +0ff1530a-c2ea-3a8c-8da3-26515742f7a0,SESCO,II.1.1,Misiones,AR-N,annual,2021,naphtha combustion consumption by to the public,904.7769191999998,TJ,CH4,3.0,kg/TJ,2714.3307575999997,kg +c9366445-e60a-3c45-9faa-de0e5568bd98,SESCO,II.1.1,Misiones,AR-N,annual,2021,naphtha combustion consumption by to the public,904.7769191999998,TJ,N2O,0.6,kg/TJ,542.8661515199999,kg +bfc0df90-2232-3c1f-99a4-37ca4b1af4e8,SESCO,II.1.1,Neuquén,AR-Q,annual,2021,naphtha combustion consumption by to the public,1639.9119351999998,TJ,CO2,73300.0,kg/TJ,120205544.85015999,kg +884c5642-7875-3f7b-af5b-126c6ae72d43,SESCO,II.1.1,Neuquén,AR-Q,annual,2021,naphtha combustion consumption by to the public,1639.9119351999998,TJ,CH4,3.0,kg/TJ,4919.735805599999,kg +c4cfeeeb-dd49-331f-9776-62ad108d0044,SESCO,II.1.1,Neuquén,AR-Q,annual,2021,naphtha combustion consumption by to the public,1639.9119351999998,TJ,N2O,0.6,kg/TJ,983.9471611199998,kg +3efbeb7c-e108-3f70-95be-2c9bbc2a1a13,SESCO,II.1.1,Rio Negro,AR-R,annual,2021,naphtha combustion consumption by to the public,1441.8958708,TJ,CO2,73300.0,kg/TJ,105690967.32964,kg +099c4feb-ad6e-3e8f-875b-f330cec4225a,SESCO,II.1.1,Rio Negro,AR-R,annual,2021,naphtha combustion consumption by to the public,1441.8958708,TJ,CH4,3.0,kg/TJ,4325.6876124,kg +031e1716-0dea-37d7-a9fa-2b80668a1afd,SESCO,II.1.1,Rio Negro,AR-R,annual,2021,naphtha combustion consumption by to the public,1441.8958708,TJ,N2O,0.6,kg/TJ,865.13752248,kg +f0f42866-b29c-395f-8b13-5a5d6f28182f,SESCO,II.1.1,Salta,AR-A,annual,2021,naphtha combustion consumption by to the public,933.9350635999999,TJ,CO2,73300.0,kg/TJ,68457440.16188,kg +e06e1bf3-b8a6-3a18-84dc-15b62784763f,SESCO,II.1.1,Salta,AR-A,annual,2021,naphtha combustion consumption by to the public,933.9350635999999,TJ,CH4,3.0,kg/TJ,2801.8051907999998,kg +6c74ea85-1c56-3fc2-a91c-5647dc5e287f,SESCO,II.1.1,Salta,AR-A,annual,2021,naphtha combustion consumption by to the public,933.9350635999999,TJ,N2O,0.6,kg/TJ,560.3610381599999,kg +a8ae776c-dd71-3218-bed7-94bf995cca68,SESCO,II.1.1,San Juan,AR-J,annual,2021,naphtha combustion consumption by to the public,666.1143412,TJ,CO2,73300.0,kg/TJ,48826181.20996,kg +98e3451d-e3db-3e32-b390-1b1c5948ba52,SESCO,II.1.1,San Juan,AR-J,annual,2021,naphtha combustion consumption by to the public,666.1143412,TJ,CH4,3.0,kg/TJ,1998.3430236,kg +0cdb827a-de6b-3783-b81f-c780fa4f6cc1,SESCO,II.1.1,San Juan,AR-J,annual,2021,naphtha combustion consumption by to the public,666.1143412,TJ,N2O,0.6,kg/TJ,399.66860472,kg +c1a2cef7-d774-3a3b-b83f-15ebfc396b16,SESCO,II.1.1,San Luis,AR-D,annual,2021,naphtha combustion consumption by to the public,517.5495248,TJ,CO2,73300.0,kg/TJ,37936380.16784,kg +498cf466-5766-3350-b5a2-c9e060b9c3cb,SESCO,II.1.1,San Luis,AR-D,annual,2021,naphtha combustion consumption by to the public,517.5495248,TJ,CH4,3.0,kg/TJ,1552.6485744,kg +c0b55259-c2a1-3494-8a99-d604c85ce9b7,SESCO,II.1.1,San Luis,AR-D,annual,2021,naphtha combustion consumption by to the public,517.5495248,TJ,N2O,0.6,kg/TJ,310.52971488,kg +1a0228bd-6840-3ad4-acff-6d2cf2ffe595,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2021,naphtha combustion consumption by to the public,480.73246759999995,TJ,CO2,73300.0,kg/TJ,35237689.87508,kg +ef50d93a-2369-3e79-8146-5190b01aefe8,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2021,naphtha combustion consumption by to the public,480.73246759999995,TJ,CH4,3.0,kg/TJ,1442.1974028,kg +20f2c22e-bad6-39a5-ad4a-7f2c4bbd6cdc,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2021,naphtha combustion consumption by to the public,480.73246759999995,TJ,N2O,0.6,kg/TJ,288.43948055999994,kg +e01a4f4c-f95c-393d-918d-120e4df1c2b2,SESCO,II.1.1,Santa Fe,AR-S,annual,2021,naphtha combustion consumption by to the public,2948.2894363999994,TJ,CO2,73300.0,kg/TJ,216109615.68811995,kg +df3729ef-b17f-3ee5-8074-fde2a65f8fee,SESCO,II.1.1,Santa Fe,AR-S,annual,2021,naphtha combustion consumption by to the public,2948.2894363999994,TJ,CH4,3.0,kg/TJ,8844.8683092,kg +c14178ab-5e51-3894-8692-84e3e40c9b05,SESCO,II.1.1,Santa Fe,AR-S,annual,2021,naphtha combustion consumption by to the public,2948.2894363999994,TJ,N2O,0.6,kg/TJ,1768.9736618399995,kg +391fb57e-2e7f-3b79-8acb-ffe4240a7d75,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2021,naphtha combustion consumption by to the public,511.0062804,TJ,CO2,73300.0,kg/TJ,37456760.353319995,kg +e6398129-1681-3cdc-9bf3-91f5dc15d2e1,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2021,naphtha combustion consumption by to the public,511.0062804,TJ,CH4,3.0,kg/TJ,1533.0188412,kg +eea293a7-a594-3bc4-8e84-738e04fb59ee,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2021,naphtha combustion consumption by to the public,511.0062804,TJ,N2O,0.6,kg/TJ,306.60376823999997,kg +49ff3c6e-383d-3c9c-8b1b-9ccc638550a3,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2021,naphtha combustion consumption by to the public,345.01291439999994,TJ,CO2,73300.0,kg/TJ,25289446.625519995,kg +6894a285-017b-383c-9bb4-b71ea4f676b4,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2021,naphtha combustion consumption by to the public,345.01291439999994,TJ,CH4,3.0,kg/TJ,1035.0387431999998,kg +4bf8f6cd-7b4e-3884-80e0-36f652b8847a,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2021,naphtha combustion consumption by to the public,345.01291439999994,TJ,N2O,0.6,kg/TJ,207.00774863999996,kg +72016c28-19e9-3de9-afa4-8ce919be10aa,SESCO,II.1.1,Tucuman,AR-T,annual,2021,naphtha combustion consumption by to the public,749.3673264,TJ,CO2,73300.0,kg/TJ,54928625.025120005,kg +ec73c7c6-2766-32a3-bbbf-142cc22c7f3a,SESCO,II.1.1,Tucuman,AR-T,annual,2021,naphtha combustion consumption by to the public,749.3673264,TJ,CH4,3.0,kg/TJ,2248.1019792,kg +5954c4d2-6958-32e1-b489-bd7acb0a67b3,SESCO,II.1.1,Tucuman,AR-T,annual,2021,naphtha combustion consumption by to the public,749.3673264,TJ,N2O,0.6,kg/TJ,449.62039584,kg +8dbc0aa6-54a3-3258-96fd-308f3f514f37,SESCO,II.1.1,Buenos Aires,AR-B,annual,2021,naphtha combustion consumption by freight transport,586.4194336,TJ,CO2,73300.0,kg/TJ,42984544.482880004,kg +fb582175-bf04-3a4d-8884-ebccbb29ea30,SESCO,II.1.1,Buenos Aires,AR-B,annual,2021,naphtha combustion consumption by freight transport,586.4194336,TJ,CH4,3.0,kg/TJ,1759.2583008000001,kg +06fe366f-3798-3a3d-b80e-4ae56a2cbf3b,SESCO,II.1.1,Buenos Aires,AR-B,annual,2021,naphtha combustion consumption by freight transport,586.4194336,TJ,N2O,0.6,kg/TJ,351.85166016,kg +2cd1c8b4-5819-37dd-a904-b27d7ffc86f3,SESCO,II.1.1,Capital Federal,AR-C,annual,2021,naphtha combustion consumption by freight transport,90.85159159999999,TJ,CO2,73300.0,kg/TJ,6659421.664279999,kg +8e0c344b-a349-3a89-bf62-6e4eace71d85,SESCO,II.1.1,Capital Federal,AR-C,annual,2021,naphtha combustion consumption by freight transport,90.85159159999999,TJ,CH4,3.0,kg/TJ,272.55477479999996,kg +8cd0109c-2de5-3df5-aa4e-f470e830ed97,SESCO,II.1.1,Capital Federal,AR-C,annual,2021,naphtha combustion consumption by freight transport,90.85159159999999,TJ,N2O,0.6,kg/TJ,54.51095495999999,kg +cdcbbd97-adb7-3fa3-b4e7-527f34d964b7,SESCO,II.1.1,Catamarca,AR-K,annual,2021,naphtha combustion consumption by freight transport,3.1359327999999995,TJ,CO2,73300.0,kg/TJ,229863.87423999998,kg +e15bf666-f73d-3367-8130-6dfb0a77d97a,SESCO,II.1.1,Catamarca,AR-K,annual,2021,naphtha combustion consumption by freight transport,3.1359327999999995,TJ,CH4,3.0,kg/TJ,9.407798399999999,kg +8c69d923-c96d-39ef-894e-22b01c419b74,SESCO,II.1.1,Catamarca,AR-K,annual,2021,naphtha combustion consumption by freight transport,3.1359327999999995,TJ,N2O,0.6,kg/TJ,1.8815596799999996,kg +cc7408c2-cbae-32bf-9574-81df567a89d4,SESCO,II.1.1,Chaco,AR-H,annual,2021,naphtha combustion consumption by freight transport,13.840318799999999,TJ,CO2,73300.0,kg/TJ,1014495.3680399999,kg +bd0a0433-7c5c-3105-9a9f-b234f652e432,SESCO,II.1.1,Chaco,AR-H,annual,2021,naphtha combustion consumption by freight transport,13.840318799999999,TJ,CH4,3.0,kg/TJ,41.520956399999996,kg +0dfcded7-3798-3076-9084-0629f3980088,SESCO,II.1.1,Chaco,AR-H,annual,2021,naphtha combustion consumption by freight transport,13.840318799999999,TJ,N2O,0.6,kg/TJ,8.30419128,kg +2e0c976d-6eef-3e58-b116-8f621794dfd1,SESCO,II.1.1,Chubut,AR-U,annual,2021,naphtha combustion consumption by freight transport,19.3282012,TJ,CO2,73300.0,kg/TJ,1416757.14796,kg +30130e29-3850-36bb-ad25-6dc4df45c4d5,SESCO,II.1.1,Chubut,AR-U,annual,2021,naphtha combustion consumption by freight transport,19.3282012,TJ,CH4,3.0,kg/TJ,57.9846036,kg +14df90fc-d1bd-393b-ba4c-1145decbf2c1,SESCO,II.1.1,Chubut,AR-U,annual,2021,naphtha combustion consumption by freight transport,19.3282012,TJ,N2O,0.6,kg/TJ,11.596920719999998,kg +16bf33d6-fc1c-3b0f-ba49-075999f30d7b,SESCO,II.1.1,Corrientes,AR-W,annual,2021,naphtha combustion consumption by freight transport,14.775067999999997,TJ,CO2,73300.0,kg/TJ,1083012.4843999997,kg +4acba5b1-e563-3d67-a41d-5da123cd04fe,SESCO,II.1.1,Corrientes,AR-W,annual,2021,naphtha combustion consumption by freight transport,14.775067999999997,TJ,CH4,3.0,kg/TJ,44.32520399999999,kg +b87a68f0-fc09-3513-98ea-52ef690f0dc9,SESCO,II.1.1,Corrientes,AR-W,annual,2021,naphtha combustion consumption by freight transport,14.775067999999997,TJ,N2O,0.6,kg/TJ,8.865040799999997,kg +4cf313c3-e395-3a6a-8cec-ddb80c2b96dd,SESCO,II.1.1,Córdoba,AR-X,annual,2021,naphtha combustion consumption by freight transport,90.06760839999998,TJ,CO2,73300.0,kg/TJ,6601955.695719998,kg +7a164f48-bfaa-3928-a685-01dca6b78343,SESCO,II.1.1,Córdoba,AR-X,annual,2021,naphtha combustion consumption by freight transport,90.06760839999998,TJ,CH4,3.0,kg/TJ,270.20282519999995,kg +82a3036e-fff3-3779-b280-e583c1c67991,SESCO,II.1.1,Córdoba,AR-X,annual,2021,naphtha combustion consumption by freight transport,90.06760839999998,TJ,N2O,0.6,kg/TJ,54.04056503999999,kg +8fac689f-d61c-313c-a592-3cdf989d22ab,SESCO,II.1.1,Entre Rios,AR-E,annual,2021,naphtha combustion consumption by freight transport,31.268868399999995,TJ,CO2,73300.0,kg/TJ,2292008.0537199997,kg +fda5a6ae-fe30-36bf-a180-d1bb49f588fc,SESCO,II.1.1,Entre Rios,AR-E,annual,2021,naphtha combustion consumption by freight transport,31.268868399999995,TJ,CH4,3.0,kg/TJ,93.80660519999998,kg +7b135b3a-e6a9-36cf-b4e6-0b3ca9ed5e30,SESCO,II.1.1,Entre Rios,AR-E,annual,2021,naphtha combustion consumption by freight transport,31.268868399999995,TJ,N2O,0.6,kg/TJ,18.761321039999995,kg +7d449cb0-e02c-3eeb-bdad-3b532e6387aa,SESCO,II.1.1,Formosa,AR-P,annual,2021,naphtha combustion consumption by freight transport,3.7088435999999994,TJ,CO2,73300.0,kg/TJ,271858.23587999993,kg +8c6a1f4d-b731-3210-aae4-22691359f485,SESCO,II.1.1,Formosa,AR-P,annual,2021,naphtha combustion consumption by freight transport,3.7088435999999994,TJ,CH4,3.0,kg/TJ,11.126530799999998,kg +0cc39574-55e2-3fd7-b95e-378cc1d14bfe,SESCO,II.1.1,Formosa,AR-P,annual,2021,naphtha combustion consumption by freight transport,3.7088435999999994,TJ,N2O,0.6,kg/TJ,2.2253061599999997,kg +30d4ef7c-937d-30cf-8573-f94f23e6beea,SESCO,II.1.1,Jujuy,AR-Y,annual,2021,naphtha combustion consumption by freight transport,6.7241636,TJ,CO2,73300.0,kg/TJ,492881.19188,kg +e63d6f20-01e1-3583-9958-099e929063a0,SESCO,II.1.1,Jujuy,AR-Y,annual,2021,naphtha combustion consumption by freight transport,6.7241636,TJ,CH4,3.0,kg/TJ,20.1724908,kg +f82ffc0e-a21e-3cf9-a437-208f8169f94b,SESCO,II.1.1,Jujuy,AR-Y,annual,2021,naphtha combustion consumption by freight transport,6.7241636,TJ,N2O,0.6,kg/TJ,4.03449816,kg +12e10093-be02-353a-a182-8714e393df3e,SESCO,II.1.1,La Pampa,AR-L,annual,2021,naphtha combustion consumption by freight transport,9.468104799999999,TJ,CO2,73300.0,kg/TJ,694012.0818399999,kg +999665af-fbd2-30e4-afc2-dc9ab1ad4e58,SESCO,II.1.1,La Pampa,AR-L,annual,2021,naphtha combustion consumption by freight transport,9.468104799999999,TJ,CH4,3.0,kg/TJ,28.404314399999997,kg +35ed1775-372a-3518-9ec1-224ea54800b1,SESCO,II.1.1,La Pampa,AR-L,annual,2021,naphtha combustion consumption by freight transport,9.468104799999999,TJ,N2O,0.6,kg/TJ,5.680862879999999,kg +d13d679d-3457-3dbf-82bd-726d71ce0fec,SESCO,II.1.1,La Rioja,AR-F,annual,2021,naphtha combustion consumption by freight transport,4.914971599999999,TJ,CO2,73300.0,kg/TJ,360267.41828,kg +3d5aa7b9-80ec-3eb7-96be-dae4a8cf2df7,SESCO,II.1.1,La Rioja,AR-F,annual,2021,naphtha combustion consumption by freight transport,4.914971599999999,TJ,CH4,3.0,kg/TJ,14.744914799999998,kg +706e5906-6219-3ca6-b156-da8a8ae4ce1c,SESCO,II.1.1,La Rioja,AR-F,annual,2021,naphtha combustion consumption by freight transport,4.914971599999999,TJ,N2O,0.6,kg/TJ,2.9489829599999995,kg +993c841e-7b6e-323d-8da1-4537d0864abe,SESCO,II.1.1,Mendoza,AR-M,annual,2021,naphtha combustion consumption by freight transport,42.4255524,TJ,CO2,73300.0,kg/TJ,3109792.9909200002,kg +47253653-c301-3332-9b9f-60ce7d1c1f25,SESCO,II.1.1,Mendoza,AR-M,annual,2021,naphtha combustion consumption by freight transport,42.4255524,TJ,CH4,3.0,kg/TJ,127.2766572,kg +c65f7609-be1e-3b02-a437-d6d5f90d9e1e,SESCO,II.1.1,Mendoza,AR-M,annual,2021,naphtha combustion consumption by freight transport,42.4255524,TJ,N2O,0.6,kg/TJ,25.45533144,kg +0d71951e-8689-306a-a215-9417dc4bc2f8,SESCO,II.1.1,Misiones,AR-N,annual,2021,naphtha combustion consumption by freight transport,15.227365999999998,TJ,CO2,73300.0,kg/TJ,1116165.9278,kg +1dff9f28-d485-33f0-ba3b-d61e81802ae4,SESCO,II.1.1,Misiones,AR-N,annual,2021,naphtha combustion consumption by freight transport,15.227365999999998,TJ,CH4,3.0,kg/TJ,45.682097999999996,kg +b4290979-0db9-3e38-a946-27a7c0e885c6,SESCO,II.1.1,Misiones,AR-N,annual,2021,naphtha combustion consumption by freight transport,15.227365999999998,TJ,N2O,0.6,kg/TJ,9.136419599999998,kg +a5ed3782-b9c1-3c47-8669-98604f7aecbd,SESCO,II.1.1,Neuquén,AR-Q,annual,2021,naphtha combustion consumption by freight transport,15.7098172,TJ,CO2,73300.0,kg/TJ,1151529.60076,kg +053a87e8-a050-3b1b-9001-1ef486b7e7f5,SESCO,II.1.1,Neuquén,AR-Q,annual,2021,naphtha combustion consumption by freight transport,15.7098172,TJ,CH4,3.0,kg/TJ,47.129451599999996,kg +ea9796f1-fb3f-3788-a4d2-00dcb4a182a4,SESCO,II.1.1,Neuquén,AR-Q,annual,2021,naphtha combustion consumption by freight transport,15.7098172,TJ,N2O,0.6,kg/TJ,9.425890319999999,kg +a1557c8f-c1de-33c7-a962-b25d60f84165,SESCO,II.1.1,Rio Negro,AR-R,annual,2021,naphtha combustion consumption by freight transport,18.84575,TJ,CO2,73300.0,kg/TJ,1381393.4749999999,kg +2bbe9310-0451-33a1-b375-250fc3803266,SESCO,II.1.1,Rio Negro,AR-R,annual,2021,naphtha combustion consumption by freight transport,18.84575,TJ,CH4,3.0,kg/TJ,56.53725,kg +124a2660-5327-35a6-8e06-78ae69907fa9,SESCO,II.1.1,Rio Negro,AR-R,annual,2021,naphtha combustion consumption by freight transport,18.84575,TJ,N2O,0.6,kg/TJ,11.30745,kg +d1def1bc-ec29-3b30-9044-d540b3f12a46,SESCO,II.1.1,Salta,AR-A,annual,2021,naphtha combustion consumption by freight transport,24.8160836,TJ,CO2,73300.0,kg/TJ,1819018.9278799999,kg +c1b18d62-dd47-3ef5-b1c0-220fa188b2e2,SESCO,II.1.1,Salta,AR-A,annual,2021,naphtha combustion consumption by freight transport,24.8160836,TJ,CH4,3.0,kg/TJ,74.4482508,kg +0f45be7d-df45-3fd7-a7b1-6010bf6e53e3,SESCO,II.1.1,Salta,AR-A,annual,2021,naphtha combustion consumption by freight transport,24.8160836,TJ,N2O,0.6,kg/TJ,14.889650159999999,kg +a6d32267-6b4e-31d9-883e-6cdaf110022a,SESCO,II.1.1,San Juan,AR-J,annual,2021,naphtha combustion consumption by freight transport,10.131475199999999,TJ,CO2,73300.0,kg/TJ,742637.1321599999,kg +64039f1f-3185-3e61-9d17-02f2d22280ef,SESCO,II.1.1,San Juan,AR-J,annual,2021,naphtha combustion consumption by freight transport,10.131475199999999,TJ,CH4,3.0,kg/TJ,30.394425599999998,kg +dd0d06ae-c00f-3d1c-9871-826a0713ad77,SESCO,II.1.1,San Juan,AR-J,annual,2021,naphtha combustion consumption by freight transport,10.131475199999999,TJ,N2O,0.6,kg/TJ,6.078885119999999,kg +97752d32-99ec-3084-8417-bcd8bfe4fb69,SESCO,II.1.1,San Luis,AR-D,annual,2021,naphtha combustion consumption by freight transport,9.5887176,TJ,CO2,73300.0,kg/TJ,702853.00008,kg +ef0a0f15-2208-3f64-bbfa-618683ebb797,SESCO,II.1.1,San Luis,AR-D,annual,2021,naphtha combustion consumption by freight transport,9.5887176,TJ,CH4,3.0,kg/TJ,28.7661528,kg +0e3f9ce6-d72c-34df-9d95-534498adb983,SESCO,II.1.1,San Luis,AR-D,annual,2021,naphtha combustion consumption by freight transport,9.5887176,TJ,N2O,0.6,kg/TJ,5.75323056,kg +04c94a3e-c17d-36cf-ad3b-c14bda0d314d,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2021,naphtha combustion consumption by freight transport,10.553619999999999,TJ,CO2,73300.0,kg/TJ,773580.3459999999,kg +8023b367-bde6-3d0c-9200-56675caab45a,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2021,naphtha combustion consumption by freight transport,10.553619999999999,TJ,CH4,3.0,kg/TJ,31.660859999999996,kg +157e412b-44a1-33c8-a212-385b650748fb,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2021,naphtha combustion consumption by freight transport,10.553619999999999,TJ,N2O,0.6,kg/TJ,6.332171999999999,kg +adde5be6-1568-3ec7-a876-1ab261c8e210,SESCO,II.1.1,Santa Fe,AR-S,annual,2021,naphtha combustion consumption by freight transport,84.42895999999999,TJ,CO2,73300.0,kg/TJ,6188642.767999999,kg +05cdb0d4-c5be-3e41-8674-7222fb3207bb,SESCO,II.1.1,Santa Fe,AR-S,annual,2021,naphtha combustion consumption by freight transport,84.42895999999999,TJ,CH4,3.0,kg/TJ,253.28687999999997,kg +8e40cd92-aae5-3a65-90a7-cf461d4985fd,SESCO,II.1.1,Santa Fe,AR-S,annual,2021,naphtha combustion consumption by freight transport,84.42895999999999,TJ,N2O,0.6,kg/TJ,50.65737599999999,kg +5422827c-e478-3eab-bfa7-117cff15a581,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2021,naphtha combustion consumption by freight transport,6.6940104,TJ,CO2,73300.0,kg/TJ,490670.96232,kg +6c665883-e90b-371d-a3da-ce2851f4a8fc,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2021,naphtha combustion consumption by freight transport,6.6940104,TJ,CH4,3.0,kg/TJ,20.0820312,kg +afa19f21-acf5-347d-a46c-4d62d5854100,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2021,naphtha combustion consumption by freight transport,6.6940104,TJ,N2O,0.6,kg/TJ,4.016406239999999,kg +3ad096b5-f1b9-3a74-820e-2e2fbc1f82b1,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2021,naphtha combustion consumption by freight transport,14.081544399999999,TJ,CO2,73300.0,kg/TJ,1032177.2045199999,kg +0bbf28b3-659c-32dc-b824-78bb09f5d97c,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2021,naphtha combustion consumption by freight transport,14.081544399999999,TJ,CH4,3.0,kg/TJ,42.244633199999996,kg +b3257b9b-8379-3305-a318-0712126687b5,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2021,naphtha combustion consumption by freight transport,14.081544399999999,TJ,N2O,0.6,kg/TJ,8.448926639999998,kg +22c3bad8-7910-36f6-b41f-02e33d2c3a48,SESCO,II.1.1,Tucuman,AR-T,annual,2021,naphtha combustion consumption by freight transport,26.5046628,TJ,CO2,73300.0,kg/TJ,1942791.7832399998,kg +24b61bdd-b00a-3ad6-84ba-65cc59f8481c,SESCO,II.1.1,Tucuman,AR-T,annual,2021,naphtha combustion consumption by freight transport,26.5046628,TJ,CH4,3.0,kg/TJ,79.51398839999999,kg +1fa5c45f-a72b-39fc-a187-14373f483892,SESCO,II.1.1,Tucuman,AR-T,annual,2021,naphtha combustion consumption by freight transport,26.5046628,TJ,N2O,0.6,kg/TJ,15.902797679999999,kg +d220255f-aa9d-3760-891b-c6364b93295c,SESCO,II.1.1,Buenos Aires,AR-B,annual,2021,naphtha combustion consumption by freight transport,511.97118279999995,TJ,CO2,73300.0,kg/TJ,37527487.69924,kg +424fb534-5250-3a92-bd57-3628095922b6,SESCO,II.1.1,Buenos Aires,AR-B,annual,2021,naphtha combustion consumption by freight transport,511.97118279999995,TJ,CH4,3.0,kg/TJ,1535.9135483999999,kg +801ce4eb-2968-3157-bc44-211c99a075f7,SESCO,II.1.1,Buenos Aires,AR-B,annual,2021,naphtha combustion consumption by freight transport,511.97118279999995,TJ,N2O,0.6,kg/TJ,307.18270967999996,kg +23265455-dad0-3450-aff2-d667ac5f4bd0,SESCO,II.1.1,Capital Federal,AR-C,annual,2021,naphtha combustion consumption by freight transport,103.48578239999999,TJ,CO2,73300.0,kg/TJ,7585507.849919999,kg +5911a451-0636-3f3f-8a84-418a94c6ca93,SESCO,II.1.1,Capital Federal,AR-C,annual,2021,naphtha combustion consumption by freight transport,103.48578239999999,TJ,CH4,3.0,kg/TJ,310.45734719999996,kg +168e1dc6-6957-3921-a6ea-3a1d0a9872db,SESCO,II.1.1,Capital Federal,AR-C,annual,2021,naphtha combustion consumption by freight transport,103.48578239999999,TJ,N2O,0.6,kg/TJ,62.09146943999999,kg +dae97025-2d90-340c-903d-3ea4ade7ebc5,SESCO,II.1.1,Catamarca,AR-K,annual,2021,naphtha combustion consumption by freight transport,1.0252088,TJ,CO2,73300.0,kg/TJ,75147.80503999999,kg +9f3e6bd2-b888-3997-bcc7-25c6710f6c0b,SESCO,II.1.1,Catamarca,AR-K,annual,2021,naphtha combustion consumption by freight transport,1.0252088,TJ,CH4,3.0,kg/TJ,3.0756264,kg +cdbe5d2d-e9fd-30e4-b608-2d752b3b1d1d,SESCO,II.1.1,Catamarca,AR-K,annual,2021,naphtha combustion consumption by freight transport,1.0252088,TJ,N2O,0.6,kg/TJ,0.6151252799999999,kg +49298752-b324-3c44-8987-d192d29470e8,SESCO,II.1.1,Chaco,AR-H,annual,2021,naphtha combustion consumption by freight transport,11.066224399999998,TJ,CO2,73300.0,kg/TJ,811154.2485199998,kg +066965d4-96e7-38e7-ac9b-bfd3b27afc97,SESCO,II.1.1,Chaco,AR-H,annual,2021,naphtha combustion consumption by freight transport,11.066224399999998,TJ,CH4,3.0,kg/TJ,33.198673199999995,kg +1662b57a-fc34-3c20-a937-dd06ec33ec52,SESCO,II.1.1,Chaco,AR-H,annual,2021,naphtha combustion consumption by freight transport,11.066224399999998,TJ,N2O,0.6,kg/TJ,6.639734639999999,kg +98538291-5d50-3e52-a31d-f3c68a138062,SESCO,II.1.1,Chubut,AR-U,annual,2021,naphtha combustion consumption by freight transport,13.237254799999999,TJ,CO2,73300.0,kg/TJ,970290.77684,kg +a18418da-0415-3fb7-817b-36f6c664b4c3,SESCO,II.1.1,Chubut,AR-U,annual,2021,naphtha combustion consumption by freight transport,13.237254799999999,TJ,CH4,3.0,kg/TJ,39.71176439999999,kg +f2dcef32-c34a-3bda-8abb-3b0b489acfb7,SESCO,II.1.1,Chubut,AR-U,annual,2021,naphtha combustion consumption by freight transport,13.237254799999999,TJ,N2O,0.6,kg/TJ,7.942352879999999,kg +f1928987-6a6d-300a-982a-70bdddc3ead6,SESCO,II.1.1,Corrientes,AR-W,annual,2021,naphtha combustion consumption by freight transport,14.8956808,TJ,CO2,73300.0,kg/TJ,1091853.40264,kg +e1fff43d-8cd4-3323-99e1-bba8f40e4c95,SESCO,II.1.1,Corrientes,AR-W,annual,2021,naphtha combustion consumption by freight transport,14.8956808,TJ,CH4,3.0,kg/TJ,44.687042399999996,kg +9b593458-28c5-391b-aa67-52d12faa8635,SESCO,II.1.1,Corrientes,AR-W,annual,2021,naphtha combustion consumption by freight transport,14.8956808,TJ,N2O,0.6,kg/TJ,8.937408479999998,kg +38f33a01-3f79-315b-8ffd-693aa30b4a3c,SESCO,II.1.1,Córdoba,AR-X,annual,2021,naphtha combustion consumption by freight transport,187.6433636,TJ,CO2,73300.0,kg/TJ,13754258.551879998,kg +c0691519-d0c2-3686-aa48-308f6ca7a799,SESCO,II.1.1,Córdoba,AR-X,annual,2021,naphtha combustion consumption by freight transport,187.6433636,TJ,CH4,3.0,kg/TJ,562.9300908,kg +3b556478-c16d-37cf-a74c-d6ffca00e8b4,SESCO,II.1.1,Córdoba,AR-X,annual,2021,naphtha combustion consumption by freight transport,187.6433636,TJ,N2O,0.6,kg/TJ,112.58601816,kg +bc2572c3-5327-33e0-9cac-ccb887594a4e,SESCO,II.1.1,Entre Rios,AR-E,annual,2021,naphtha combustion consumption by freight transport,26.082518,TJ,CO2,73300.0,kg/TJ,1911848.5694,kg +7040bee1-9542-3214-bd88-a0be8ea3ba66,SESCO,II.1.1,Entre Rios,AR-E,annual,2021,naphtha combustion consumption by freight transport,26.082518,TJ,CH4,3.0,kg/TJ,78.24755400000001,kg +e92027c5-8df4-3d38-8760-d9f86605e25c,SESCO,II.1.1,Entre Rios,AR-E,annual,2021,naphtha combustion consumption by freight transport,26.082518,TJ,N2O,0.6,kg/TJ,15.6495108,kg +c970a7f8-965b-3b46-b3ac-13f49a8e1937,SESCO,II.1.1,Formosa,AR-P,annual,2021,naphtha combustion consumption by freight transport,1.6885792,TJ,CO2,73300.0,kg/TJ,123772.85536,kg +090f85c6-38f6-3f92-8730-f16294953954,SESCO,II.1.1,Formosa,AR-P,annual,2021,naphtha combustion consumption by freight transport,1.6885792,TJ,CH4,3.0,kg/TJ,5.0657376,kg +8d2cc0f3-7bf7-3156-a110-265bf5544f3d,SESCO,II.1.1,Formosa,AR-P,annual,2021,naphtha combustion consumption by freight transport,1.6885792,TJ,N2O,0.6,kg/TJ,1.01314752,kg +9bc7fa46-0c27-3962-bc16-0844ce885702,SESCO,II.1.1,Jujuy,AR-Y,annual,2021,naphtha combustion consumption by freight transport,3.2263923999999995,TJ,CO2,73300.0,kg/TJ,236494.56291999997,kg +2eb73c1d-57b5-3040-af40-bce32fa28920,SESCO,II.1.1,Jujuy,AR-Y,annual,2021,naphtha combustion consumption by freight transport,3.2263923999999995,TJ,CH4,3.0,kg/TJ,9.679177199999998,kg +f126beaf-0b60-3c55-ab5d-e3c57c3e6e5f,SESCO,II.1.1,Jujuy,AR-Y,annual,2021,naphtha combustion consumption by freight transport,3.2263923999999995,TJ,N2O,0.6,kg/TJ,1.9358354399999995,kg +9789cae5-3b89-3cbc-ade1-310762e12bb7,SESCO,II.1.1,La Pampa,AR-L,annual,2021,naphtha combustion consumption by freight transport,9.950555999999999,TJ,CO2,73300.0,kg/TJ,729375.7547999999,kg +e533b8a0-8b6d-33b1-808d-1802ad5a69c3,SESCO,II.1.1,La Pampa,AR-L,annual,2021,naphtha combustion consumption by freight transport,9.950555999999999,TJ,CH4,3.0,kg/TJ,29.851667999999997,kg +aa68dd35-a424-36e7-89d8-1ad58e5b1190,SESCO,II.1.1,La Pampa,AR-L,annual,2021,naphtha combustion consumption by freight transport,9.950555999999999,TJ,N2O,0.6,kg/TJ,5.970333599999999,kg +0c78f94c-8d34-3177-b5ea-00cfea84659a,SESCO,II.1.1,La Rioja,AR-F,annual,2021,naphtha combustion consumption by freight transport,3.0153199999999996,TJ,CO2,73300.0,kg/TJ,221022.95599999998,kg +33c55d73-11eb-391c-a8a3-9655edd0f24f,SESCO,II.1.1,La Rioja,AR-F,annual,2021,naphtha combustion consumption by freight transport,3.0153199999999996,TJ,CH4,3.0,kg/TJ,9.04596,kg +7d49f466-ad8c-3981-9b09-a48ecff4b3b2,SESCO,II.1.1,La Rioja,AR-F,annual,2021,naphtha combustion consumption by freight transport,3.0153199999999996,TJ,N2O,0.6,kg/TJ,1.8091919999999997,kg +9063892b-263f-3440-ab1b-9b658c0b52a8,SESCO,II.1.1,Mendoza,AR-M,annual,2021,naphtha combustion consumption by freight transport,69.5634324,TJ,CO2,73300.0,kg/TJ,5098999.59492,kg +b0046d2a-32a5-3047-a66d-ca2dfd6888ee,SESCO,II.1.1,Mendoza,AR-M,annual,2021,naphtha combustion consumption by freight transport,69.5634324,TJ,CH4,3.0,kg/TJ,208.69029719999997,kg +639f2f58-8455-3364-a4b8-8fc0b3b4fccd,SESCO,II.1.1,Mendoza,AR-M,annual,2021,naphtha combustion consumption by freight transport,69.5634324,TJ,N2O,0.6,kg/TJ,41.738059439999994,kg +07263d68-edda-3dfb-abbc-e803b450a12b,SESCO,II.1.1,Misiones,AR-N,annual,2021,naphtha combustion consumption by freight transport,12.3025056,TJ,CO2,73300.0,kg/TJ,901773.66048,kg +3f38e049-c82c-3155-ade2-6479bfa94914,SESCO,II.1.1,Misiones,AR-N,annual,2021,naphtha combustion consumption by freight transport,12.3025056,TJ,CH4,3.0,kg/TJ,36.907516799999996,kg +2adf76e0-4c77-3139-bf88-cbc5206ee20b,SESCO,II.1.1,Misiones,AR-N,annual,2021,naphtha combustion consumption by freight transport,12.3025056,TJ,N2O,0.6,kg/TJ,7.38150336,kg +8b1268a7-c370-3d70-b15f-d6f917887dbf,SESCO,II.1.1,Neuquén,AR-Q,annual,2021,naphtha combustion consumption by freight transport,33.1383668,TJ,CO2,73300.0,kg/TJ,2429042.28644,kg +da93173b-8cd3-3e81-a920-332d1e617e65,SESCO,II.1.1,Neuquén,AR-Q,annual,2021,naphtha combustion consumption by freight transport,33.1383668,TJ,CH4,3.0,kg/TJ,99.4151004,kg +7ca84df3-f57a-3356-837f-cafe98c6e1e0,SESCO,II.1.1,Neuquén,AR-Q,annual,2021,naphtha combustion consumption by freight transport,33.1383668,TJ,N2O,0.6,kg/TJ,19.883020079999998,kg +c53eeda4-41b0-37c5-94da-1c4520a8b3c2,SESCO,II.1.1,Rio Negro,AR-R,annual,2021,naphtha combustion consumption by freight transport,41.6717224,TJ,CO2,73300.0,kg/TJ,3054537.25192,kg +ff9248c6-a750-38d0-80bf-ecf766cb5600,SESCO,II.1.1,Rio Negro,AR-R,annual,2021,naphtha combustion consumption by freight transport,41.6717224,TJ,CH4,3.0,kg/TJ,125.01516720000001,kg +ae6b4945-1976-3931-8956-b96442c4a45b,SESCO,II.1.1,Rio Negro,AR-R,annual,2021,naphtha combustion consumption by freight transport,41.6717224,TJ,N2O,0.6,kg/TJ,25.00303344,kg +281896f6-dd1b-30fc-be8e-f590ca9009c2,SESCO,II.1.1,Salta,AR-A,annual,2021,naphtha combustion consumption by freight transport,18.7552904,TJ,CO2,73300.0,kg/TJ,1374762.78632,kg +467b1878-1557-3b4a-adb4-83d87664e85a,SESCO,II.1.1,Salta,AR-A,annual,2021,naphtha combustion consumption by freight transport,18.7552904,TJ,CH4,3.0,kg/TJ,56.2658712,kg +b8edc4cb-d194-3bdc-8cc4-afc581036deb,SESCO,II.1.1,Salta,AR-A,annual,2021,naphtha combustion consumption by freight transport,18.7552904,TJ,N2O,0.6,kg/TJ,11.25317424,kg +408b14ea-2e56-3dad-aa07-6ec85e6e5852,SESCO,II.1.1,San Juan,AR-J,annual,2021,naphtha combustion consumption by freight transport,5.6084952,TJ,CO2,73300.0,kg/TJ,411102.69816,kg +65611317-1342-323b-aaae-d61acbd2f5bd,SESCO,II.1.1,San Juan,AR-J,annual,2021,naphtha combustion consumption by freight transport,5.6084952,TJ,CH4,3.0,kg/TJ,16.8254856,kg +3a977a8d-57c0-31bf-bb4c-aa30d79ca13d,SESCO,II.1.1,San Juan,AR-J,annual,2021,naphtha combustion consumption by freight transport,5.6084952,TJ,N2O,0.6,kg/TJ,3.36509712,kg +68699cfc-e529-38f3-8c66-27e38d927d0f,SESCO,II.1.1,San Luis,AR-D,annual,2021,naphtha combustion consumption by freight transport,7.086002,TJ,CO2,73300.0,kg/TJ,519403.94659999997,kg +a7d159ab-dd9a-3c0e-90b0-60ef277af148,SESCO,II.1.1,San Luis,AR-D,annual,2021,naphtha combustion consumption by freight transport,7.086002,TJ,CH4,3.0,kg/TJ,21.258005999999998,kg +bb8113cf-c52d-3442-a067-faacdea20905,SESCO,II.1.1,San Luis,AR-D,annual,2021,naphtha combustion consumption by freight transport,7.086002,TJ,N2O,0.6,kg/TJ,4.2516012,kg +e0bd16ef-c175-3321-b0ab-a244ba749065,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2021,naphtha combustion consumption by freight transport,4.5832863999999995,TJ,CO2,73300.0,kg/TJ,335954.89311999996,kg +2ee9d98b-b917-39e0-906e-b8e65c190de8,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2021,naphtha combustion consumption by freight transport,4.5832863999999995,TJ,CH4,3.0,kg/TJ,13.7498592,kg +11dfe3b9-7657-30d2-bd6c-1702e7a81493,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2021,naphtha combustion consumption by freight transport,4.5832863999999995,TJ,N2O,0.6,kg/TJ,2.7499718399999997,kg +adde5be6-1568-3ec7-a876-1ab261c8e210,SESCO,II.1.1,Santa Fe,AR-S,annual,2021,naphtha combustion consumption by freight transport,84.42895999999999,TJ,CO2,73300.0,kg/TJ,6188642.767999999,kg +05cdb0d4-c5be-3e41-8674-7222fb3207bb,SESCO,II.1.1,Santa Fe,AR-S,annual,2021,naphtha combustion consumption by freight transport,84.42895999999999,TJ,CH4,3.0,kg/TJ,253.28687999999997,kg +8e40cd92-aae5-3a65-90a7-cf461d4985fd,SESCO,II.1.1,Santa Fe,AR-S,annual,2021,naphtha combustion consumption by freight transport,84.42895999999999,TJ,N2O,0.6,kg/TJ,50.65737599999999,kg +a80ada3b-bcaf-371d-9c50-73df788756fa,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2021,naphtha combustion consumption by freight transport,3.4374647999999994,TJ,CO2,73300.0,kg/TJ,251966.16983999996,kg +d0b49f95-55fd-3877-9456-11d65af3a138,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2021,naphtha combustion consumption by freight transport,3.4374647999999994,TJ,CH4,3.0,kg/TJ,10.312394399999999,kg +6acd9827-f317-3aa1-8f3b-a4bb4ec1c09a,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2021,naphtha combustion consumption by freight transport,3.4374647999999994,TJ,N2O,0.6,kg/TJ,2.0624788799999996,kg +76c373b2-fd40-313b-97a3-7f9019215038,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2021,naphtha combustion consumption by freight transport,6.9653892,TJ,CO2,73300.0,kg/TJ,510563.02836,kg +b09f7886-7307-3296-be7c-1acebb3b1d96,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2021,naphtha combustion consumption by freight transport,6.9653892,TJ,CH4,3.0,kg/TJ,20.8961676,kg +37cec855-98e6-35b2-b612-c6dde696b7af,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2021,naphtha combustion consumption by freight transport,6.9653892,TJ,N2O,0.6,kg/TJ,4.1792335199999995,kg +19b5e493-51ba-3fab-8998-bdc1b96232e5,SESCO,II.1.1,Tucuman,AR-T,annual,2021,naphtha combustion consumption by freight transport,12.7849568,TJ,CO2,73300.0,kg/TJ,937137.33344,kg +b999e88c-7be2-3fe2-b000-72c99a772ed9,SESCO,II.1.1,Tucuman,AR-T,annual,2021,naphtha combustion consumption by freight transport,12.7849568,TJ,CH4,3.0,kg/TJ,38.354870399999996,kg +0bddd55c-ac1a-33c8-af13-ce15d8b35e06,SESCO,II.1.1,Tucuman,AR-T,annual,2021,naphtha combustion consumption by freight transport,12.7849568,TJ,N2O,0.6,kg/TJ,7.67097408,kg +c69ba80a-eed7-350b-8028-98b90184a74e,SESCO,II.5.1,Buenos Aires,AR-B,annual,2022,naphtha combustion consumption by agriculture machines,29.037531599999998,TJ,CO2,73300.0,kg/TJ,2128451.06628,kg +eda8b206-a230-3e6b-b404-16cf5a8638b9,SESCO,II.5.1,Buenos Aires,AR-B,annual,2022,naphtha combustion consumption by agriculture machines,29.037531599999998,TJ,CH4,3.0,kg/TJ,87.1125948,kg +ea47eaff-55d3-3b16-8a0f-9f14beacb629,SESCO,II.5.1,Buenos Aires,AR-B,annual,2022,naphtha combustion consumption by agriculture machines,29.037531599999998,TJ,N2O,0.6,kg/TJ,17.422518959999998,kg +ac104f2d-9c7d-3dec-a68a-55a36aef3056,SESCO,II.5.1,Córdoba,AR-X,annual,2022,naphtha combustion consumption by agriculture machines,8.5635088,TJ,CO2,73300.0,kg/TJ,627705.1950399999,kg +e8e8040a-0894-3800-a999-dbd80f3e75c9,SESCO,II.5.1,Córdoba,AR-X,annual,2022,naphtha combustion consumption by agriculture machines,8.5635088,TJ,CH4,3.0,kg/TJ,25.690526399999996,kg +29374092-dcc4-39a9-a000-fc3ea6111339,SESCO,II.5.1,Córdoba,AR-X,annual,2022,naphtha combustion consumption by agriculture machines,8.5635088,TJ,N2O,0.6,kg/TJ,5.1381052799999996,kg +3efc1246-d4d1-385c-a1bf-b9808d4ca614,SESCO,II.5.1,Santa Fe,AR-S,annual,2022,naphtha combustion consumption by agriculture machines,5.2165036,TJ,CO2,73300.0,kg/TJ,382369.71388,kg +f9673314-042f-331b-989d-539733cf02e4,SESCO,II.5.1,Santa Fe,AR-S,annual,2022,naphtha combustion consumption by agriculture machines,5.2165036,TJ,CH4,3.0,kg/TJ,15.649510800000002,kg +0f17536b-4a02-39cb-84bf-45e2b7a50ffb,SESCO,II.5.1,Santa Fe,AR-S,annual,2022,naphtha combustion consumption by agriculture machines,5.2165036,TJ,N2O,0.6,kg/TJ,3.12990216,kg +6d001a11-a841-3e59-a0bd-7f9b7db18981,SESCO,II.5.1,Buenos Aires,AR-B,annual,2022,naphtha combustion consumption by agriculture machines,3.76915,TJ,CO2,73300.0,kg/TJ,276278.695,kg +308a5715-51ae-34fd-b01b-762c679c1dc7,SESCO,II.5.1,Buenos Aires,AR-B,annual,2022,naphtha combustion consumption by agriculture machines,3.76915,TJ,CH4,3.0,kg/TJ,11.30745,kg +cb05b7d1-33b4-3952-b06f-153e8bc61f5c,SESCO,II.5.1,Buenos Aires,AR-B,annual,2022,naphtha combustion consumption by agriculture machines,3.76915,TJ,N2O,0.6,kg/TJ,2.26149,kg +bb0bd3be-9911-3dee-bc19-79c65d2fbcec,SESCO,II.5.1,Córdoba,AR-X,annual,2022,naphtha combustion consumption by agriculture machines,2.2011836,TJ,CO2,73300.0,kg/TJ,161346.75788,kg +9b412fed-7a5b-381c-ad68-b2016818ed19,SESCO,II.5.1,Córdoba,AR-X,annual,2022,naphtha combustion consumption by agriculture machines,2.2011836,TJ,CH4,3.0,kg/TJ,6.603550799999999,kg +f2b65947-73e3-3104-b2f1-6e30421b8c16,SESCO,II.5.1,Córdoba,AR-X,annual,2022,naphtha combustion consumption by agriculture machines,2.2011836,TJ,N2O,0.6,kg/TJ,1.3207101599999997,kg +e54c903f-2835-3a73-94e1-dc5da194dea7,SESCO,II.1.1,Buenos Aires,AR-B,annual,2022,naphtha combustion consumption by to the public,1209.1131668,TJ,CO2,73300.0,kg/TJ,88627995.12644,kg +3db93078-c1c2-3226-8fee-27fee901be57,SESCO,II.1.1,Buenos Aires,AR-B,annual,2022,naphtha combustion consumption by to the public,1209.1131668,TJ,CH4,3.0,kg/TJ,3627.3395004000004,kg +1bd76a8c-dec3-3e49-849e-d6e54a8ca7f0,SESCO,II.1.1,Buenos Aires,AR-B,annual,2022,naphtha combustion consumption by to the public,1209.1131668,TJ,N2O,0.6,kg/TJ,725.46790008,kg +779db5f3-e953-3c88-adf3-d9cb365bb066,SESCO,II.1.1,Capital Federal,AR-C,annual,2022,naphtha combustion consumption by to the public,59.94456159999999,TJ,CO2,73300.0,kg/TJ,4393936.36528,kg +2ac928dd-dd8d-3852-bac0-a8ba64babb8a,SESCO,II.1.1,Capital Federal,AR-C,annual,2022,naphtha combustion consumption by to the public,59.94456159999999,TJ,CH4,3.0,kg/TJ,179.8336848,kg +db152b51-84b5-3747-8128-13c6e2248209,SESCO,II.1.1,Capital Federal,AR-C,annual,2022,naphtha combustion consumption by to the public,59.94456159999999,TJ,N2O,0.6,kg/TJ,35.96673695999999,kg +1d933e16-3b31-3687-91dc-dd9f8ee7b83f,SESCO,II.1.1,Catamarca,AR-K,annual,2022,naphtha combustion consumption by to the public,25.268381599999998,TJ,CO2,73300.0,kg/TJ,1852172.3712799998,kg +fb24147b-6088-3298-a755-40d32f767348,SESCO,II.1.1,Catamarca,AR-K,annual,2022,naphtha combustion consumption by to the public,25.268381599999998,TJ,CH4,3.0,kg/TJ,75.8051448,kg +3647040c-ac8b-36d0-99a4-5a466f176e14,SESCO,II.1.1,Catamarca,AR-K,annual,2022,naphtha combustion consumption by to the public,25.268381599999998,TJ,N2O,0.6,kg/TJ,15.161028959999998,kg +25b44114-3dd0-3e7c-8ee4-8cf367abd25d,SESCO,II.1.1,Chaco,AR-H,annual,2022,naphtha combustion consumption by to the public,4.1309884,TJ,CO2,73300.0,kg/TJ,302801.44972,kg +5978a130-f4fc-3281-86a5-e412d0199ade,SESCO,II.1.1,Chaco,AR-H,annual,2022,naphtha combustion consumption by to the public,4.1309884,TJ,CH4,3.0,kg/TJ,12.392965199999999,kg +f2252ae6-a446-3f1b-bd02-4248096cb24b,SESCO,II.1.1,Chaco,AR-H,annual,2022,naphtha combustion consumption by to the public,4.1309884,TJ,N2O,0.6,kg/TJ,2.47859304,kg +20a82d7e-0966-3b0e-b6e1-527e6dcaf458,SESCO,II.1.1,Corrientes,AR-W,annual,2022,naphtha combustion consumption by to the public,10.734539199999999,TJ,CO2,73300.0,kg/TJ,786841.72336,kg +6d403792-8618-3e22-8ca7-258b00a854a5,SESCO,II.1.1,Corrientes,AR-W,annual,2022,naphtha combustion consumption by to the public,10.734539199999999,TJ,CH4,3.0,kg/TJ,32.203617599999994,kg +a42a5243-b823-3b34-83f3-5ebeae3d50b3,SESCO,II.1.1,Corrientes,AR-W,annual,2022,naphtha combustion consumption by to the public,10.734539199999999,TJ,N2O,0.6,kg/TJ,6.440723519999999,kg +43b87586-8842-39f5-88c6-72308cd14f41,SESCO,II.1.1,Córdoba,AR-X,annual,2022,naphtha combustion consumption by to the public,491.76853879999993,TJ,CO2,73300.0,kg/TJ,36046633.894039996,kg +249bc35d-c09c-3345-b330-048857765c7c,SESCO,II.1.1,Córdoba,AR-X,annual,2022,naphtha combustion consumption by to the public,491.76853879999993,TJ,CH4,3.0,kg/TJ,1475.3056163999997,kg +ec0df5f9-9b06-32d6-9784-ae4f7e3f7dfa,SESCO,II.1.1,Córdoba,AR-X,annual,2022,naphtha combustion consumption by to the public,491.76853879999993,TJ,N2O,0.6,kg/TJ,295.06112327999995,kg +4cb11e0c-84af-353f-83fa-69227d0f1a71,SESCO,II.1.1,Entre Rios,AR-E,annual,2022,naphtha combustion consumption by to the public,129.4175344,TJ,CO2,73300.0,kg/TJ,9486305.27152,kg +330c1e19-b7b5-3011-8104-48482b26c466,SESCO,II.1.1,Entre Rios,AR-E,annual,2022,naphtha combustion consumption by to the public,129.4175344,TJ,CH4,3.0,kg/TJ,388.25260319999995,kg +86947e09-9466-3250-ba53-f305f1939c37,SESCO,II.1.1,Entre Rios,AR-E,annual,2022,naphtha combustion consumption by to the public,129.4175344,TJ,N2O,0.6,kg/TJ,77.65052064,kg +f409bab7-ce24-3928-b8e7-1ead94bd64b5,SESCO,II.1.1,Mendoza,AR-M,annual,2022,naphtha combustion consumption by to the public,304.8186988,TJ,CO2,73300.0,kg/TJ,22343210.62204,kg +51165945-3444-36e6-a955-c0134a54df9e,SESCO,II.1.1,Mendoza,AR-M,annual,2022,naphtha combustion consumption by to the public,304.8186988,TJ,CH4,3.0,kg/TJ,914.4560964,kg +aab9f657-8d8e-3d7e-9d9c-3a38b9149d7b,SESCO,II.1.1,Mendoza,AR-M,annual,2022,naphtha combustion consumption by to the public,304.8186988,TJ,N2O,0.6,kg/TJ,182.89121928,kg +35f0a423-b21b-36d3-b531-563fb8b3a8a9,SESCO,II.1.1,San Luis,AR-D,annual,2022,naphtha combustion consumption by to the public,54.0345344,TJ,CO2,73300.0,kg/TJ,3960731.37152,kg +108dd2da-ce0c-3e6e-8b00-3df12870943c,SESCO,II.1.1,San Luis,AR-D,annual,2022,naphtha combustion consumption by to the public,54.0345344,TJ,CH4,3.0,kg/TJ,162.1036032,kg +e6e8e7d4-ec5f-3392-bfa1-a073f0ab60be,SESCO,II.1.1,San Luis,AR-D,annual,2022,naphtha combustion consumption by to the public,54.0345344,TJ,N2O,0.6,kg/TJ,32.42072064,kg +15b5bd08-fc0b-31e5-a9f0-46354547f3bf,SESCO,II.1.1,Santa Fe,AR-S,annual,2022,naphtha combustion consumption by to the public,334.549754,TJ,CO2,73300.0,kg/TJ,24522496.968200002,kg +e1a75fff-17b4-3e7e-9de9-724714c4728c,SESCO,II.1.1,Santa Fe,AR-S,annual,2022,naphtha combustion consumption by to the public,334.549754,TJ,CH4,3.0,kg/TJ,1003.649262,kg +c7b5fab1-798d-39ff-9f66-3697dc17bb84,SESCO,II.1.1,Santa Fe,AR-S,annual,2022,naphtha combustion consumption by to the public,334.549754,TJ,N2O,0.6,kg/TJ,200.7298524,kg +27deb54d-f016-3c64-b9b9-52180ea8ccfe,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2022,naphtha combustion consumption by to the public,53.3410108,TJ,CO2,73300.0,kg/TJ,3909896.0916399998,kg +68faaae4-244b-3ac7-a8de-625f9da2e3c7,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2022,naphtha combustion consumption by to the public,53.3410108,TJ,CH4,3.0,kg/TJ,160.0230324,kg +674402ad-6f78-3fac-a065-ec6113dc6136,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2022,naphtha combustion consumption by to the public,53.3410108,TJ,N2O,0.6,kg/TJ,32.00460648,kg +dcd2ce1f-cd1a-32c2-ad9e-60c040e670fc,SESCO,II.1.1,Tucuman,AR-T,annual,2022,naphtha combustion consumption by to the public,28.524927199999997,TJ,CO2,73300.0,kg/TJ,2090877.1637599997,kg +c27ad381-2736-388c-abcf-60bf3724b915,SESCO,II.1.1,Tucuman,AR-T,annual,2022,naphtha combustion consumption by to the public,28.524927199999997,TJ,CH4,3.0,kg/TJ,85.5747816,kg +b9b8aad4-26a7-3213-88a6-df28be45c59c,SESCO,II.1.1,Tucuman,AR-T,annual,2022,naphtha combustion consumption by to the public,28.524927199999997,TJ,N2O,0.6,kg/TJ,17.114956319999997,kg +dd42c580-96ab-3125-b2d4-9f3fe83890a2,SESCO,II.1.1,Buenos Aires,AR-B,annual,2022,naphtha combustion consumption by to the public,96.15855479999999,TJ,CO2,73300.0,kg/TJ,7048422.0668399995,kg +39781b64-c8e8-399d-8706-3c34720ff812,SESCO,II.1.1,Buenos Aires,AR-B,annual,2022,naphtha combustion consumption by to the public,96.15855479999999,TJ,CH4,3.0,kg/TJ,288.47566439999997,kg +3715178d-6576-3f19-9413-70f88f5cf978,SESCO,II.1.1,Buenos Aires,AR-B,annual,2022,naphtha combustion consumption by to the public,96.15855479999999,TJ,N2O,0.6,kg/TJ,57.69513287999999,kg +ec10501a-7634-3872-9504-fe19b3e03fd7,SESCO,II.1.1,Capital Federal,AR-C,annual,2022,naphtha combustion consumption by to the public,9.04596,TJ,CO2,73300.0,kg/TJ,663068.8679999999,kg +566f1ae1-0d87-327d-b6b1-ff5c90bbfba0,SESCO,II.1.1,Capital Federal,AR-C,annual,2022,naphtha combustion consumption by to the public,9.04596,TJ,CH4,3.0,kg/TJ,27.137879999999996,kg +fb4d1d6e-8560-3f8a-8d33-d3f9fff5af31,SESCO,II.1.1,Capital Federal,AR-C,annual,2022,naphtha combustion consumption by to the public,9.04596,TJ,N2O,0.6,kg/TJ,5.427575999999999,kg +239e67ab-aec1-38ce-b8f5-1fafc745f99b,SESCO,II.1.1,Catamarca,AR-K,annual,2022,naphtha combustion consumption by to the public,2.6836347999999997,TJ,CO2,73300.0,kg/TJ,196710.43084,kg +7cf69994-f03e-3fb5-aa02-85e00aa730c3,SESCO,II.1.1,Catamarca,AR-K,annual,2022,naphtha combustion consumption by to the public,2.6836347999999997,TJ,CH4,3.0,kg/TJ,8.050904399999999,kg +9cc765cb-66a5-3d67-bb4a-fffe9540aba2,SESCO,II.1.1,Catamarca,AR-K,annual,2022,naphtha combustion consumption by to the public,2.6836347999999997,TJ,N2O,0.6,kg/TJ,1.6101808799999997,kg +c39666d3-1c93-3124-ace8-f1a47ec16784,SESCO,II.1.1,Chaco,AR-H,annual,2022,naphtha combustion consumption by to the public,0.4221448,TJ,CO2,73300.0,kg/TJ,30943.21384,kg +35954edd-f4ce-3bb0-ba9a-d2d396c89905,SESCO,II.1.1,Chaco,AR-H,annual,2022,naphtha combustion consumption by to the public,0.4221448,TJ,CH4,3.0,kg/TJ,1.2664344,kg +cd30202d-cd5c-3638-822a-97da489b2ec1,SESCO,II.1.1,Chaco,AR-H,annual,2022,naphtha combustion consumption by to the public,0.4221448,TJ,N2O,0.6,kg/TJ,0.25328688,kg +32630640-43e4-3b4a-bdc6-2406826478cc,SESCO,II.1.1,Corrientes,AR-W,annual,2022,naphtha combustion consumption by to the public,1.3870472,TJ,CO2,73300.0,kg/TJ,101670.55976,kg +43c40e76-2820-37dd-bf76-630878d63c49,SESCO,II.1.1,Corrientes,AR-W,annual,2022,naphtha combustion consumption by to the public,1.3870472,TJ,CH4,3.0,kg/TJ,4.1611416000000006,kg +15bfee34-b3fe-34b2-afbc-5f13f761f5cc,SESCO,II.1.1,Corrientes,AR-W,annual,2022,naphtha combustion consumption by to the public,1.3870472,TJ,N2O,0.6,kg/TJ,0.83222832,kg +4299d2bf-282f-335f-9e7e-b2384512ac10,SESCO,II.1.1,Córdoba,AR-X,annual,2022,naphtha combustion consumption by to the public,54.667751599999995,TJ,CO2,73300.0,kg/TJ,4007146.1922799996,kg +bb2aedb9-f690-35a1-80b2-28761c335506,SESCO,II.1.1,Córdoba,AR-X,annual,2022,naphtha combustion consumption by to the public,54.667751599999995,TJ,CH4,3.0,kg/TJ,164.00325479999998,kg +801bff57-f753-38d4-8bcb-506f101a66bb,SESCO,II.1.1,Córdoba,AR-X,annual,2022,naphtha combustion consumption by to the public,54.667751599999995,TJ,N2O,0.6,kg/TJ,32.80065096,kg +c4b3340f-b2ab-330d-84b7-0908c7efce10,SESCO,II.1.1,Entre Rios,AR-E,annual,2022,naphtha combustion consumption by to the public,16.614413199999998,TJ,CO2,73300.0,kg/TJ,1217836.4875599998,kg +319b84d0-10c5-3cfe-a10a-326da15dfcf2,SESCO,II.1.1,Entre Rios,AR-E,annual,2022,naphtha combustion consumption by to the public,16.614413199999998,TJ,CH4,3.0,kg/TJ,49.84323959999999,kg +f353966b-d871-3b6c-ace0-969695a27e5a,SESCO,II.1.1,Entre Rios,AR-E,annual,2022,naphtha combustion consumption by to the public,16.614413199999998,TJ,N2O,0.6,kg/TJ,9.968647919999999,kg +532a994d-04ad-3330-adfa-a3dd1a14c3a9,SESCO,II.1.1,Mendoza,AR-M,annual,2022,naphtha combustion consumption by to the public,48.034047599999994,TJ,CO2,73300.0,kg/TJ,3520895.6890799995,kg +b927c2fb-642a-3a85-91e6-4bf51b81dd4c,SESCO,II.1.1,Mendoza,AR-M,annual,2022,naphtha combustion consumption by to the public,48.034047599999994,TJ,CH4,3.0,kg/TJ,144.10214279999997,kg +ec14e404-30ec-398e-8dc3-a4f42da23720,SESCO,II.1.1,Mendoza,AR-M,annual,2022,naphtha combustion consumption by to the public,48.034047599999994,TJ,N2O,0.6,kg/TJ,28.820428559999996,kg +60990dde-8a08-3593-b861-e3d0a6bd8c27,SESCO,II.1.1,San Luis,AR-D,annual,2022,naphtha combustion consumption by to the public,2.2916431999999998,TJ,CO2,73300.0,kg/TJ,167977.44655999998,kg +c13751f4-da5f-3e5d-809b-c6d55f79104d,SESCO,II.1.1,San Luis,AR-D,annual,2022,naphtha combustion consumption by to the public,2.2916431999999998,TJ,CH4,3.0,kg/TJ,6.8749296,kg +8a437b0f-7291-39f5-9b75-92355b82296c,SESCO,II.1.1,San Luis,AR-D,annual,2022,naphtha combustion consumption by to the public,2.2916431999999998,TJ,N2O,0.6,kg/TJ,1.3749859199999999,kg +40ec2b42-bb8c-3ef7-8cb9-8464f13c0fd1,SESCO,II.1.1,Santa Fe,AR-S,annual,2022,naphtha combustion consumption by to the public,49.3909416,TJ,CO2,73300.0,kg/TJ,3620356.0192799997,kg +e0e6d2e0-da37-3eed-86b0-c41751c49b75,SESCO,II.1.1,Santa Fe,AR-S,annual,2022,naphtha combustion consumption by to the public,49.3909416,TJ,CH4,3.0,kg/TJ,148.1728248,kg +5fdaf69b-bded-34dd-996d-8b726638f5e2,SESCO,II.1.1,Santa Fe,AR-S,annual,2022,naphtha combustion consumption by to the public,49.3909416,TJ,N2O,0.6,kg/TJ,29.63456496,kg +47fe69f4-9fe1-3d6a-ada6-af20021aa191,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2022,naphtha combustion consumption by to the public,5.367269599999999,TJ,CO2,73300.0,kg/TJ,393420.86168,kg +47ea7cc1-6cb0-310d-92e8-e1f813dc8be1,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2022,naphtha combustion consumption by to the public,5.367269599999999,TJ,CH4,3.0,kg/TJ,16.101808799999997,kg +a5208da0-2f09-35d2-9b64-e4234486a116,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2022,naphtha combustion consumption by to the public,5.367269599999999,TJ,N2O,0.6,kg/TJ,3.2203617599999994,kg +81974d3a-b1b8-38e6-a70b-6d47abc655cf,SESCO,II.1.1,Tucuman,AR-T,annual,2022,naphtha combustion consumption by to the public,0.1809192,TJ,CO2,73300.0,kg/TJ,13261.37736,kg +40350207-30e9-3304-afa0-3897d73eb20a,SESCO,II.1.1,Tucuman,AR-T,annual,2022,naphtha combustion consumption by to the public,0.1809192,TJ,CH4,3.0,kg/TJ,0.5427576000000001,kg +775bbfe6-5bff-3905-b959-c2f6865d929a,SESCO,II.1.1,Tucuman,AR-T,annual,2022,naphtha combustion consumption by to the public,0.1809192,TJ,N2O,0.6,kg/TJ,0.10855152,kg +658080a1-c2e1-3020-9f09-53f5f0384212,SESCO,II.5.1,Buenos Aires,AR-B,annual,2022,naphtha combustion consumption by agriculture machines,7.2669212,TJ,CO2,73300.0,kg/TJ,532665.32396,kg +32e63111-09f6-3bee-8d57-eb4db6b9a57d,SESCO,II.5.1,Buenos Aires,AR-B,annual,2022,naphtha combustion consumption by agriculture machines,7.2669212,TJ,CH4,3.0,kg/TJ,21.8007636,kg +0baed11f-1f76-321b-871d-53bc6f78cd1b,SESCO,II.5.1,Buenos Aires,AR-B,annual,2022,naphtha combustion consumption by agriculture machines,7.2669212,TJ,N2O,0.6,kg/TJ,4.360152719999999,kg +226ae744-f3fb-3c51-bcb8-e23cb0ef185d,SESCO,II.5.1,Capital Federal,AR-C,annual,2022,naphtha combustion consumption by agriculture machines,0.8744427999999999,TJ,CO2,73300.0,kg/TJ,64096.657239999986,kg +3ddb6a24-66c3-37b5-91de-05b044bdcb8d,SESCO,II.5.1,Capital Federal,AR-C,annual,2022,naphtha combustion consumption by agriculture machines,0.8744427999999999,TJ,CH4,3.0,kg/TJ,2.6233283999999997,kg +d072def5-93c7-3056-8f25-1a9bb0fb909a,SESCO,II.5.1,Capital Federal,AR-C,annual,2022,naphtha combustion consumption by agriculture machines,0.8744427999999999,TJ,N2O,0.6,kg/TJ,0.5246656799999999,kg +8ec8fdb5-335a-3851-ae26-1d8b53c51f72,SESCO,II.5.1,Córdoba,AR-X,annual,2022,naphtha combustion consumption by agriculture machines,31.811625999999997,TJ,CO2,73300.0,kg/TJ,2331792.1857999996,kg +b3cb2d6e-b083-3087-b02f-1e15b0c7260e,SESCO,II.5.1,Córdoba,AR-X,annual,2022,naphtha combustion consumption by agriculture machines,31.811625999999997,TJ,CH4,3.0,kg/TJ,95.434878,kg +463d74d5-6dc3-39ab-9d2c-b9dc7b89e9c1,SESCO,II.5.1,Córdoba,AR-X,annual,2022,naphtha combustion consumption by agriculture machines,31.811625999999997,TJ,N2O,0.6,kg/TJ,19.0869756,kg +b391bf17-4c78-3bc0-8a7a-d6e9c5a5a8b6,SESCO,II.5.1,Santa Fe,AR-S,annual,2022,naphtha combustion consumption by agriculture machines,7.5383,TJ,CO2,73300.0,kg/TJ,552557.39,kg +a06519b3-f0e8-3ef1-a7f6-7e505c24ab99,SESCO,II.5.1,Santa Fe,AR-S,annual,2022,naphtha combustion consumption by agriculture machines,7.5383,TJ,CH4,3.0,kg/TJ,22.6149,kg +c0288695-de95-3afc-ba15-22e1efe7dcb0,SESCO,II.5.1,Santa Fe,AR-S,annual,2022,naphtha combustion consumption by agriculture machines,7.5383,TJ,N2O,0.6,kg/TJ,4.52298,kg +15543350-ef20-3840-b77a-f16b22b12f3a,SESCO,II.5.1,Buenos Aires,AR-B,annual,2022,naphtha combustion consumption by agriculture machines,1.6282728,TJ,CO2,73300.0,kg/TJ,119352.39624,kg +e40f651d-83b5-3b69-87bd-30611ca3879b,SESCO,II.5.1,Buenos Aires,AR-B,annual,2022,naphtha combustion consumption by agriculture machines,1.6282728,TJ,CH4,3.0,kg/TJ,4.8848184,kg +dc5de524-967d-3f05-b90d-a771614b224a,SESCO,II.5.1,Buenos Aires,AR-B,annual,2022,naphtha combustion consumption by agriculture machines,1.6282728,TJ,N2O,0.6,kg/TJ,0.9769636799999999,kg +6cf0e464-940d-3aca-85dd-c0c7e2021490,SESCO,II.5.1,Capital Federal,AR-C,annual,2022,naphtha combustion consumption by agriculture machines,0.0904596,TJ,CO2,73300.0,kg/TJ,6630.68868,kg +7c58e64c-22c7-3eb7-8372-67e25f333778,SESCO,II.5.1,Capital Federal,AR-C,annual,2022,naphtha combustion consumption by agriculture machines,0.0904596,TJ,CH4,3.0,kg/TJ,0.27137880000000003,kg +ddb76d58-5443-3618-9da9-956b7aa7e54e,SESCO,II.5.1,Capital Federal,AR-C,annual,2022,naphtha combustion consumption by agriculture machines,0.0904596,TJ,N2O,0.6,kg/TJ,0.05427576,kg +e3a2ec14-0f98-34b8-96bd-d5c44cb1aa15,SESCO,II.5.1,Córdoba,AR-X,annual,2022,naphtha combustion consumption by agriculture machines,2.6534815999999997,TJ,CO2,73300.0,kg/TJ,194500.20127999998,kg +21e19195-4a0e-340c-b0af-492362563bd5,SESCO,II.5.1,Córdoba,AR-X,annual,2022,naphtha combustion consumption by agriculture machines,2.6534815999999997,TJ,CH4,3.0,kg/TJ,7.960444799999999,kg +52127df7-b7ad-35f7-84f7-46889279f4e5,SESCO,II.5.1,Córdoba,AR-X,annual,2022,naphtha combustion consumption by agriculture machines,2.6534815999999997,TJ,N2O,0.6,kg/TJ,1.5920889599999997,kg +1eb10f66-8a10-30bb-b686-4eb7c5d337b9,SESCO,II.1.1,Buenos Aires,AR-B,annual,2022,naphtha combustion consumption by to the public,963.6661187999998,TJ,CO2,73300.0,kg/TJ,70636726.50803998,kg +47cdecbc-de9a-359a-ae59-4b8cb22f4c72,SESCO,II.1.1,Buenos Aires,AR-B,annual,2022,naphtha combustion consumption by to the public,963.6661187999998,TJ,CH4,3.0,kg/TJ,2890.9983563999995,kg +21ea4197-aa3c-3cdf-859a-1282154135c6,SESCO,II.1.1,Buenos Aires,AR-B,annual,2022,naphtha combustion consumption by to the public,963.6661187999998,TJ,N2O,0.6,kg/TJ,578.1996712799998,kg +b7a333b2-3066-3584-b606-388929371fdd,SESCO,II.1.1,Capital Federal,AR-C,annual,2022,naphtha combustion consumption by to the public,117.32610119999998,TJ,CO2,73300.0,kg/TJ,8600003.217959998,kg +aac583d6-d9ea-3508-80c8-45f1b18f1a69,SESCO,II.1.1,Capital Federal,AR-C,annual,2022,naphtha combustion consumption by to the public,117.32610119999998,TJ,CH4,3.0,kg/TJ,351.97830359999995,kg +a9182d8a-68d6-3ac2-b795-6c79f68c8b09,SESCO,II.1.1,Capital Federal,AR-C,annual,2022,naphtha combustion consumption by to the public,117.32610119999998,TJ,N2O,0.6,kg/TJ,70.39566071999998,kg +f3163b1a-ce8a-3f12-b16a-9a6f2d508ee4,SESCO,II.1.1,Catamarca,AR-K,annual,2022,naphtha combustion consumption by to the public,67.93515959999999,TJ,CO2,73300.0,kg/TJ,4979647.198679999,kg +1da685c4-8437-37bf-9e17-7774b7ab4f8a,SESCO,II.1.1,Catamarca,AR-K,annual,2022,naphtha combustion consumption by to the public,67.93515959999999,TJ,CH4,3.0,kg/TJ,203.80547879999997,kg +82672543-8fb5-3720-9fcd-aede9b8fd934,SESCO,II.1.1,Catamarca,AR-K,annual,2022,naphtha combustion consumption by to the public,67.93515959999999,TJ,N2O,0.6,kg/TJ,40.761095759999996,kg +1428ab9a-69ba-3abb-bec7-755ac0ff9bb4,SESCO,II.1.1,Chaco,AR-H,annual,2022,naphtha combustion consumption by to the public,261.2171716,TJ,CO2,73300.0,kg/TJ,19147218.67828,kg +1e2edd7d-f14d-399c-b1f0-3cabeb21fa13,SESCO,II.1.1,Chaco,AR-H,annual,2022,naphtha combustion consumption by to the public,261.2171716,TJ,CH4,3.0,kg/TJ,783.6515147999999,kg +73b73714-9805-3093-a404-5ec121945378,SESCO,II.1.1,Chaco,AR-H,annual,2022,naphtha combustion consumption by to the public,261.2171716,TJ,N2O,0.6,kg/TJ,156.73030296,kg +185c6855-18d7-36c1-8f8d-8fcece90d967,SESCO,II.1.1,Corrientes,AR-W,annual,2022,naphtha combustion consumption by to the public,210.0773444,TJ,CO2,73300.0,kg/TJ,15398669.344519999,kg +5f90a709-9c30-3c62-8c66-32564a36a247,SESCO,II.1.1,Corrientes,AR-W,annual,2022,naphtha combustion consumption by to the public,210.0773444,TJ,CH4,3.0,kg/TJ,630.2320331999999,kg +31c5c1f8-bbe3-36f1-93a5-e569e732c93d,SESCO,II.1.1,Corrientes,AR-W,annual,2022,naphtha combustion consumption by to the public,210.0773444,TJ,N2O,0.6,kg/TJ,126.04640663999999,kg +11ae5fe0-2b5b-3999-8ffc-540ee4782945,SESCO,II.1.1,Córdoba,AR-X,annual,2022,naphtha combustion consumption by to the public,384.93575119999997,TJ,CO2,73300.0,kg/TJ,28215790.56296,kg +492df281-6780-3b2b-b900-cc095b152d86,SESCO,II.1.1,Córdoba,AR-X,annual,2022,naphtha combustion consumption by to the public,384.93575119999997,TJ,CH4,3.0,kg/TJ,1154.8072536,kg +dabb99bc-8196-334c-b877-74c34d79806a,SESCO,II.1.1,Córdoba,AR-X,annual,2022,naphtha combustion consumption by to the public,384.93575119999997,TJ,N2O,0.6,kg/TJ,230.96145071999996,kg +aaa76564-a4d8-3940-8088-2434413b2647,SESCO,II.1.1,Entre Rios,AR-E,annual,2022,naphtha combustion consumption by to the public,234.89342799999997,TJ,CO2,73300.0,kg/TJ,17217688.2724,kg +bedb6df7-4aee-3fb7-945d-88dd10f8f7d7,SESCO,II.1.1,Entre Rios,AR-E,annual,2022,naphtha combustion consumption by to the public,234.89342799999997,TJ,CH4,3.0,kg/TJ,704.6802839999999,kg +061afa1d-da19-32ca-97e4-14161e41f740,SESCO,II.1.1,Entre Rios,AR-E,annual,2022,naphtha combustion consumption by to the public,234.89342799999997,TJ,N2O,0.6,kg/TJ,140.9360568,kg +47562cdc-54a1-323c-aa86-3eb2cc0c709c,SESCO,II.1.1,Formosa,AR-P,annual,2022,naphtha combustion consumption by to the public,39.802223999999995,TJ,CO2,73300.0,kg/TJ,2917503.0191999995,kg +630f69f4-25a0-3b49-a4b3-d2bc5d0323b0,SESCO,II.1.1,Formosa,AR-P,annual,2022,naphtha combustion consumption by to the public,39.802223999999995,TJ,CH4,3.0,kg/TJ,119.40667199999999,kg +08243b4b-e187-3ae1-83be-38e06b3c1f79,SESCO,II.1.1,Formosa,AR-P,annual,2022,naphtha combustion consumption by to the public,39.802223999999995,TJ,N2O,0.6,kg/TJ,23.881334399999997,kg +7a4cf242-556c-3ce8-b7b7-66515112c675,SESCO,II.1.1,La Rioja,AR-F,annual,2022,naphtha combustion consumption by to the public,86.78090959999999,TJ,CO2,73300.0,kg/TJ,6361040.673679999,kg +a96546be-952e-32c2-9202-49df01d9b6c0,SESCO,II.1.1,La Rioja,AR-F,annual,2022,naphtha combustion consumption by to the public,86.78090959999999,TJ,CH4,3.0,kg/TJ,260.3427288,kg +314c51d1-3b47-3943-a589-962c41afb704,SESCO,II.1.1,La Rioja,AR-F,annual,2022,naphtha combustion consumption by to the public,86.78090959999999,TJ,N2O,0.6,kg/TJ,52.06854575999999,kg +5b819d89-bc1c-3751-9008-c40e1cc38169,SESCO,II.1.1,Mendoza,AR-M,annual,2022,naphtha combustion consumption by to the public,370.88435999999996,TJ,CO2,73300.0,kg/TJ,27185823.587999996,kg +d22c7b65-1d7c-3f44-9ff0-fb43d05269f4,SESCO,II.1.1,Mendoza,AR-M,annual,2022,naphtha combustion consumption by to the public,370.88435999999996,TJ,CH4,3.0,kg/TJ,1112.6530799999998,kg +897cbb99-087c-398e-aa37-6a841b4a97ce,SESCO,II.1.1,Mendoza,AR-M,annual,2022,naphtha combustion consumption by to the public,370.88435999999996,TJ,N2O,0.6,kg/TJ,222.53061599999998,kg +f1527afb-bd6d-32a0-a4b3-948b03e3fa7a,SESCO,II.1.1,Misiones,AR-N,annual,2022,naphtha combustion consumption by to the public,301.4113872,TJ,CO2,73300.0,kg/TJ,22093454.68176,kg +0bbc3e2c-cff8-33a5-a3c6-97b2041a0758,SESCO,II.1.1,Misiones,AR-N,annual,2022,naphtha combustion consumption by to the public,301.4113872,TJ,CH4,3.0,kg/TJ,904.2341615999999,kg +3f5447ba-58d8-3ded-ae10-ae1fe1b49845,SESCO,II.1.1,Misiones,AR-N,annual,2022,naphtha combustion consumption by to the public,301.4113872,TJ,N2O,0.6,kg/TJ,180.84683231999998,kg +7cfeb52d-6adf-3c44-b183-29afdec065c7,SESCO,II.1.1,San Juan,AR-J,annual,2022,naphtha combustion consumption by to the public,75.8956044,TJ,CO2,73300.0,kg/TJ,5563147.802519999,kg +ec88ba95-f959-3c09-9430-07cf13949259,SESCO,II.1.1,San Juan,AR-J,annual,2022,naphtha combustion consumption by to the public,75.8956044,TJ,CH4,3.0,kg/TJ,227.6868132,kg +69fb1157-625b-3b9d-b2fa-ca0e2c0dcc92,SESCO,II.1.1,San Juan,AR-J,annual,2022,naphtha combustion consumption by to the public,75.8956044,TJ,N2O,0.6,kg/TJ,45.53736264,kg +8793e6d3-d5f4-38c0-9b0f-439c2aef25d0,SESCO,II.1.1,San Luis,AR-D,annual,2022,naphtha combustion consumption by to the public,23.911487599999997,TJ,CO2,73300.0,kg/TJ,1752712.0410799999,kg +7654903e-3fbf-3c7d-8ec5-ec94212c0405,SESCO,II.1.1,San Luis,AR-D,annual,2022,naphtha combustion consumption by to the public,23.911487599999997,TJ,CH4,3.0,kg/TJ,71.73446279999999,kg +a47ec14f-6a9f-3646-90cc-d2b5ab694e69,SESCO,II.1.1,San Luis,AR-D,annual,2022,naphtha combustion consumption by to the public,23.911487599999997,TJ,N2O,0.6,kg/TJ,14.346892559999999,kg +0ddf02c6-aaba-3bc6-8aa4-2887da464bb6,SESCO,II.1.1,Santa Fe,AR-S,annual,2022,naphtha combustion consumption by to the public,478.50113079999994,TJ,CO2,73300.0,kg/TJ,35074132.88764,kg +bfd9c283-6e5e-3577-a30b-c749955759d1,SESCO,II.1.1,Santa Fe,AR-S,annual,2022,naphtha combustion consumption by to the public,478.50113079999994,TJ,CH4,3.0,kg/TJ,1435.5033924,kg +92c844ee-837e-3996-9fbb-c85d34b847fa,SESCO,II.1.1,Santa Fe,AR-S,annual,2022,naphtha combustion consumption by to the public,478.50113079999994,TJ,N2O,0.6,kg/TJ,287.10067847999994,kg +2e3c280e-f4f5-3f6f-85c2-ef4c99431e93,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2022,naphtha combustion consumption by to the public,151.39921719999998,TJ,CO2,73300.0,kg/TJ,11097562.62076,kg +808f0a48-f0d2-3779-8841-146d69b17b05,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2022,naphtha combustion consumption by to the public,151.39921719999998,TJ,CH4,3.0,kg/TJ,454.1976516,kg +c1236f29-37e1-3073-8413-67f107ceb5bc,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2022,naphtha combustion consumption by to the public,151.39921719999998,TJ,N2O,0.6,kg/TJ,90.83953031999998,kg +e2cfcab3-c9b6-3f74-8550-54730cc78492,SESCO,II.1.1,Tucuman,AR-T,annual,2022,naphtha combustion consumption by to the public,33.771584,TJ,CO2,73300.0,kg/TJ,2475457.1072,kg +4a2e4759-1552-330b-9f0f-aba20c174fe3,SESCO,II.1.1,Tucuman,AR-T,annual,2022,naphtha combustion consumption by to the public,33.771584,TJ,CH4,3.0,kg/TJ,101.314752,kg +49cd369c-5df5-3f4e-916a-db4d3ce2b2a2,SESCO,II.1.1,Tucuman,AR-T,annual,2022,naphtha combustion consumption by to the public,33.771584,TJ,N2O,0.6,kg/TJ,20.262950399999998,kg +5223c930-780d-3fdc-bf2e-ee302c33ef70,SESCO,II.1.1,Buenos Aires,AR-B,annual,2022,naphtha combustion consumption by to the public,111.4763804,TJ,CO2,73300.0,kg/TJ,8171218.68332,kg +7c93a33e-534d-381d-af78-00812b04da1b,SESCO,II.1.1,Buenos Aires,AR-B,annual,2022,naphtha combustion consumption by to the public,111.4763804,TJ,CH4,3.0,kg/TJ,334.4291412,kg +834e619a-4d81-30c8-a0df-c7cc4b2588c8,SESCO,II.1.1,Buenos Aires,AR-B,annual,2022,naphtha combustion consumption by to the public,111.4763804,TJ,N2O,0.6,kg/TJ,66.88582824,kg +3aadcf27-76e6-3649-9a25-4dc179cdef15,SESCO,II.1.1,Capital Federal,AR-C,annual,2022,naphtha combustion consumption by to the public,20.564482399999996,TJ,CO2,73300.0,kg/TJ,1507376.5599199997,kg +6bfc05d0-763a-304b-a623-a4f4e2311be1,SESCO,II.1.1,Capital Federal,AR-C,annual,2022,naphtha combustion consumption by to the public,20.564482399999996,TJ,CH4,3.0,kg/TJ,61.69344719999999,kg +4d326fdb-19e8-3fec-98ee-c6f379b958db,SESCO,II.1.1,Capital Federal,AR-C,annual,2022,naphtha combustion consumption by to the public,20.564482399999996,TJ,N2O,0.6,kg/TJ,12.338689439999998,kg +fa639716-7f7c-3fe1-b1ae-6b88b734da6d,SESCO,II.1.1,Catamarca,AR-K,annual,2022,naphtha combustion consumption by to the public,8.9253472,TJ,CO2,73300.0,kg/TJ,654227.94976,kg +e53ddb7d-f51c-3b13-bf9b-d8081a41460a,SESCO,II.1.1,Catamarca,AR-K,annual,2022,naphtha combustion consumption by to the public,8.9253472,TJ,CH4,3.0,kg/TJ,26.7760416,kg +f85156d7-61b5-39f4-9ea7-37ae7edcecd2,SESCO,II.1.1,Catamarca,AR-K,annual,2022,naphtha combustion consumption by to the public,8.9253472,TJ,N2O,0.6,kg/TJ,5.355208319999999,kg +fbba3e00-97ff-3733-a6bb-455de2bd7cad,SESCO,II.1.1,Chaco,AR-H,annual,2022,naphtha combustion consumption by to the public,19.448814,TJ,CO2,73300.0,kg/TJ,1425598.0662,kg +7aaf211e-0e31-3215-8098-0014f5747bac,SESCO,II.1.1,Chaco,AR-H,annual,2022,naphtha combustion consumption by to the public,19.448814,TJ,CH4,3.0,kg/TJ,58.346441999999996,kg +45712485-c8f6-3b1b-9140-efdab508cc81,SESCO,II.1.1,Chaco,AR-H,annual,2022,naphtha combustion consumption by to the public,19.448814,TJ,N2O,0.6,kg/TJ,11.6692884,kg +6bb8da48-a959-373b-9cc1-f08640c7ec9f,SESCO,II.1.1,Corrientes,AR-W,annual,2022,naphtha combustion consumption by to the public,11.7899012,TJ,CO2,73300.0,kg/TJ,864199.75796,kg +545ce8cd-794c-3b23-aae4-ddd8cb6a0a1e,SESCO,II.1.1,Corrientes,AR-W,annual,2022,naphtha combustion consumption by to the public,11.7899012,TJ,CH4,3.0,kg/TJ,35.369703599999994,kg +709356c7-6945-39c2-8ba6-d07114c9c524,SESCO,II.1.1,Corrientes,AR-W,annual,2022,naphtha combustion consumption by to the public,11.7899012,TJ,N2O,0.6,kg/TJ,7.0739407199999995,kg +cef5870d-8838-3a06-901e-c5680df7b63a,SESCO,II.1.1,Córdoba,AR-X,annual,2022,naphtha combustion consumption by to the public,58.286135599999994,TJ,CO2,73300.0,kg/TJ,4272373.73948,kg +40fc0cde-dd10-3481-9fae-205f94143e04,SESCO,II.1.1,Córdoba,AR-X,annual,2022,naphtha combustion consumption by to the public,58.286135599999994,TJ,CH4,3.0,kg/TJ,174.85840679999998,kg +404f3d21-ce81-3d4b-893b-786b23ddae55,SESCO,II.1.1,Córdoba,AR-X,annual,2022,naphtha combustion consumption by to the public,58.286135599999994,TJ,N2O,0.6,kg/TJ,34.97168136,kg +a9e4a284-6d0d-39e6-a2f3-b48a905e724a,SESCO,II.1.1,Entre Rios,AR-E,annual,2022,naphtha combustion consumption by to the public,25.600066799999997,TJ,CO2,73300.0,kg/TJ,1876484.8964399998,kg +a500caf6-1261-340f-8b32-c5417d236328,SESCO,II.1.1,Entre Rios,AR-E,annual,2022,naphtha combustion consumption by to the public,25.600066799999997,TJ,CH4,3.0,kg/TJ,76.8002004,kg +457c5a50-f586-37c8-8365-909cdb4bab9d,SESCO,II.1.1,Entre Rios,AR-E,annual,2022,naphtha combustion consumption by to the public,25.600066799999997,TJ,N2O,0.6,kg/TJ,15.360040079999997,kg +1409b495-5e9b-385d-98c5-00539e4b7f85,SESCO,II.1.1,Formosa,AR-P,annual,2022,naphtha combustion consumption by to the public,3.6485372,TJ,CO2,73300.0,kg/TJ,267437.77676,kg +553e5170-257b-3731-95e9-2b3a3638d902,SESCO,II.1.1,Formosa,AR-P,annual,2022,naphtha combustion consumption by to the public,3.6485372,TJ,CH4,3.0,kg/TJ,10.9456116,kg +4bd1ac58-e6f9-387f-bc3c-8aa0978f32c5,SESCO,II.1.1,Formosa,AR-P,annual,2022,naphtha combustion consumption by to the public,3.6485372,TJ,N2O,0.6,kg/TJ,2.1891223199999996,kg +05a74031-a725-33a6-8f43-e1525b11db68,SESCO,II.1.1,La Rioja,AR-F,annual,2022,naphtha combustion consumption by to the public,8.593662,TJ,CO2,73300.0,kg/TJ,629915.4246,kg +91d02b97-523e-3f7f-9cd7-44b7c40e8b45,SESCO,II.1.1,La Rioja,AR-F,annual,2022,naphtha combustion consumption by to the public,8.593662,TJ,CH4,3.0,kg/TJ,25.780986,kg +b4d6095d-cd0a-3923-b926-042d6ccd736f,SESCO,II.1.1,La Rioja,AR-F,annual,2022,naphtha combustion consumption by to the public,8.593662,TJ,N2O,0.6,kg/TJ,5.1561972,kg +8bbb7cb5-c23e-36e7-93e7-ab661b6dfbf2,SESCO,II.1.1,Mendoza,AR-M,annual,2022,naphtha combustion consumption by to the public,26.2031308,TJ,CO2,73300.0,kg/TJ,1920689.48764,kg +61e21336-ae33-3aaf-b1bc-c96cbac794c1,SESCO,II.1.1,Mendoza,AR-M,annual,2022,naphtha combustion consumption by to the public,26.2031308,TJ,CH4,3.0,kg/TJ,78.6093924,kg +03362f79-0fb5-3bee-8302-650f5c7177d6,SESCO,II.1.1,Mendoza,AR-M,annual,2022,naphtha combustion consumption by to the public,26.2031308,TJ,N2O,0.6,kg/TJ,15.721878479999999,kg +c5aebf16-b39d-37d7-a497-d05972a6bcb4,SESCO,II.1.1,Misiones,AR-N,annual,2022,naphtha combustion consumption by to the public,20.2327972,TJ,CO2,73300.0,kg/TJ,1483064.03476,kg +fcf6477d-cf64-3e75-b362-57677208c51e,SESCO,II.1.1,Misiones,AR-N,annual,2022,naphtha combustion consumption by to the public,20.2327972,TJ,CH4,3.0,kg/TJ,60.6983916,kg +207cc4bb-f39f-32ba-ac6b-0bc22a1b3f1e,SESCO,II.1.1,Misiones,AR-N,annual,2022,naphtha combustion consumption by to the public,20.2327972,TJ,N2O,0.6,kg/TJ,12.13967832,kg +76c264cf-dce4-3297-832d-e6254ca0ed54,SESCO,II.1.1,San Juan,AR-J,annual,2022,naphtha combustion consumption by to the public,10.4631604,TJ,CO2,73300.0,kg/TJ,766949.65732,kg +5a30e5ce-6550-3aa1-98e7-5eaadcf89dd6,SESCO,II.1.1,San Juan,AR-J,annual,2022,naphtha combustion consumption by to the public,10.4631604,TJ,CH4,3.0,kg/TJ,31.3894812,kg +de7cc01e-2bd4-3126-bfb1-bad394911fbb,SESCO,II.1.1,San Juan,AR-J,annual,2022,naphtha combustion consumption by to the public,10.4631604,TJ,N2O,0.6,kg/TJ,6.27789624,kg +810f41be-5118-32ae-8d2b-08861d05708c,SESCO,II.1.1,San Luis,AR-D,annual,2022,naphtha combustion consumption by to the public,1.9599579999999999,TJ,CO2,73300.0,kg/TJ,143664.9214,kg +258c885b-b8ec-349f-a978-1667a9c26141,SESCO,II.1.1,San Luis,AR-D,annual,2022,naphtha combustion consumption by to the public,1.9599579999999999,TJ,CH4,3.0,kg/TJ,5.879873999999999,kg +f3b19662-4605-34c4-ac45-8748f4ea2d81,SESCO,II.1.1,San Luis,AR-D,annual,2022,naphtha combustion consumption by to the public,1.9599579999999999,TJ,N2O,0.6,kg/TJ,1.1759747999999999,kg +c1e8bdab-ec5a-3ecd-966d-ccaae08c4b5f,SESCO,II.1.1,Santa Fe,AR-S,annual,2022,naphtha combustion consumption by to the public,54.637598399999995,TJ,CO2,73300.0,kg/TJ,4004935.9627199997,kg +f87037b3-0668-33b8-afa6-1e84bfe8903b,SESCO,II.1.1,Santa Fe,AR-S,annual,2022,naphtha combustion consumption by to the public,54.637598399999995,TJ,CH4,3.0,kg/TJ,163.91279519999998,kg +4c397ebc-0d1e-3479-9a8a-74a6e3bad819,SESCO,II.1.1,Santa Fe,AR-S,annual,2022,naphtha combustion consumption by to the public,54.637598399999995,TJ,N2O,0.6,kg/TJ,32.782559039999995,kg +a13292ff-5b53-31fe-aa6a-af3e4fa50d73,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2022,naphtha combustion consumption by to the public,13.7800124,TJ,CO2,73300.0,kg/TJ,1010074.9089200001,kg +ced3233e-3fc3-3d9a-ab72-1997da97a21a,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2022,naphtha combustion consumption by to the public,13.7800124,TJ,CH4,3.0,kg/TJ,41.3400372,kg +96edd42a-2b1e-3dab-a1ef-b267c61de43f,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2022,naphtha combustion consumption by to the public,13.7800124,TJ,N2O,0.6,kg/TJ,8.26800744,kg +847327ac-fe79-372d-b193-e98460af6c58,SESCO,II.1.1,Tucuman,AR-T,annual,2022,naphtha combustion consumption by to the public,3.4977711999999994,TJ,CO2,73300.0,kg/TJ,256386.62895999994,kg +41dae791-408b-3bcf-b101-388ab24cb91f,SESCO,II.1.1,Tucuman,AR-T,annual,2022,naphtha combustion consumption by to the public,3.4977711999999994,TJ,CH4,3.0,kg/TJ,10.493313599999999,kg +db4d3adf-6b23-31f8-ac26-3a9a0ebb45ad,SESCO,II.1.1,Tucuman,AR-T,annual,2022,naphtha combustion consumption by to the public,3.4977711999999994,TJ,N2O,0.6,kg/TJ,2.0986627199999996,kg +7dbb7004-4972-3a87-a3fc-bf3d187183c0,SESCO,II.5.1,Santa Fe,AR-S,annual,2022,naphtha combustion consumption by agriculture machines,2.6233283999999997,TJ,CO2,73300.0,kg/TJ,192289.97171999997,kg +a28bce01-9646-3aaf-9adb-fe9bb3ce835c,SESCO,II.5.1,Santa Fe,AR-S,annual,2022,naphtha combustion consumption by agriculture machines,2.6233283999999997,TJ,CH4,3.0,kg/TJ,7.869985199999999,kg +713afb61-0dc2-3677-afef-3d8697214ba2,SESCO,II.5.1,Santa Fe,AR-S,annual,2022,naphtha combustion consumption by agriculture machines,2.6233283999999997,TJ,N2O,0.6,kg/TJ,1.5739970399999998,kg +b67e8486-1524-32ab-b807-48475e8dc652,SESCO,II.5.1,Santa Fe,AR-S,annual,2022,naphtha combustion consumption by agriculture machines,0.9649023999999999,TJ,CO2,73300.0,kg/TJ,70727.34591999999,kg +f60eac9b-7501-3fc9-9071-fa3c1c583de4,SESCO,II.5.1,Santa Fe,AR-S,annual,2022,naphtha combustion consumption by agriculture machines,0.9649023999999999,TJ,CH4,3.0,kg/TJ,2.8947072,kg +c2b690bd-f9b5-3de9-bd7d-035b9d9e86e7,SESCO,II.5.1,Santa Fe,AR-S,annual,2022,naphtha combustion consumption by agriculture machines,0.9649023999999999,TJ,N2O,0.6,kg/TJ,0.5789414399999999,kg +62ce5004-4f7b-31f6-81be-c248cedafdd5,SESCO,II.1.1,Buenos Aires,AR-B,annual,2022,naphtha combustion consumption by to the public,10475.462905599998,TJ,CO2,73300.0,kg/TJ,767851430.9804798,kg +1a1738f6-736b-3308-9c86-3e225b1e5fe1,SESCO,II.1.1,Buenos Aires,AR-B,annual,2022,naphtha combustion consumption by to the public,10475.462905599998,TJ,CH4,3.0,kg/TJ,31426.388716799993,kg +0fd030ba-c787-3c70-ad28-5071469ff134,SESCO,II.1.1,Buenos Aires,AR-B,annual,2022,naphtha combustion consumption by to the public,10475.462905599998,TJ,N2O,0.6,kg/TJ,6285.277743359999,kg +a047d552-a340-3aaf-977d-cce46b566104,SESCO,II.1.1,Capital Federal,AR-C,annual,2022,naphtha combustion consumption by to the public,2588.8632924,TJ,CO2,73300.0,kg/TJ,189763679.33291999,kg +cd13592b-c406-3909-bff5-961147410cba,SESCO,II.1.1,Capital Federal,AR-C,annual,2022,naphtha combustion consumption by to the public,2588.8632924,TJ,CH4,3.0,kg/TJ,7766.5898772,kg +e4e8e665-07d2-3c10-8574-8ef56f859490,SESCO,II.1.1,Capital Federal,AR-C,annual,2022,naphtha combustion consumption by to the public,2588.8632924,TJ,N2O,0.6,kg/TJ,1553.3179754399998,kg +1438c18e-f3b2-39f6-9419-e508f27a9462,SESCO,II.1.1,Catamarca,AR-K,annual,2022,naphtha combustion consumption by to the public,417.9535052,TJ,CO2,73300.0,kg/TJ,30635991.93116,kg +1f08e865-bde0-3f54-a252-468e9e30be6f,SESCO,II.1.1,Catamarca,AR-K,annual,2022,naphtha combustion consumption by to the public,417.9535052,TJ,CH4,3.0,kg/TJ,1253.8605155999999,kg +18946d87-d3c1-3ba1-83f8-d9c4277e1100,SESCO,II.1.1,Catamarca,AR-K,annual,2022,naphtha combustion consumption by to the public,417.9535052,TJ,N2O,0.6,kg/TJ,250.77210312,kg +2a41bfcc-7e2e-3cd5-a262-dbfe99feaec1,SESCO,II.1.1,Chaco,AR-H,annual,2022,naphtha combustion consumption by to the public,762.3935087999998,TJ,CO2,73300.0,kg/TJ,55883444.19503999,kg +f292d84d-8da1-34e7-90a3-63b6b729991b,SESCO,II.1.1,Chaco,AR-H,annual,2022,naphtha combustion consumption by to the public,762.3935087999998,TJ,CH4,3.0,kg/TJ,2287.1805263999995,kg +ddf2f102-be41-392b-8b8d-cc05ba040a87,SESCO,II.1.1,Chaco,AR-H,annual,2022,naphtha combustion consumption by to the public,762.3935087999998,TJ,N2O,0.6,kg/TJ,457.4361052799999,kg +ca64860e-6423-334e-b7cf-68919db57d70,SESCO,II.1.1,Chubut,AR-U,annual,2022,naphtha combustion consumption by to the public,1608.4018411999998,TJ,CO2,73300.0,kg/TJ,117895854.95995998,kg +656c16a4-c7d1-3d1d-94ec-546298e0a2fe,SESCO,II.1.1,Chubut,AR-U,annual,2022,naphtha combustion consumption by to the public,1608.4018411999998,TJ,CH4,3.0,kg/TJ,4825.2055236,kg +d87fa77f-8ef4-3c33-a6ba-bb2eb9eb9ad1,SESCO,II.1.1,Chubut,AR-U,annual,2022,naphtha combustion consumption by to the public,1608.4018411999998,TJ,N2O,0.6,kg/TJ,965.0411047199998,kg +11a9aeea-9365-3855-bd5f-caddaf2a2d41,SESCO,II.1.1,Corrientes,AR-W,annual,2022,naphtha combustion consumption by to the public,1091.1840015999999,TJ,CO2,73300.0,kg/TJ,79983787.31728,kg +a5ec78c3-1e22-3169-8972-0b6515d81c85,SESCO,II.1.1,Corrientes,AR-W,annual,2022,naphtha combustion consumption by to the public,1091.1840015999999,TJ,CH4,3.0,kg/TJ,3273.5520048,kg +ba08b7c0-0626-3709-80c4-be25bec55871,SESCO,II.1.1,Corrientes,AR-W,annual,2022,naphtha combustion consumption by to the public,1091.1840015999999,TJ,N2O,0.6,kg/TJ,654.7104009599999,kg +7ba44239-f805-39cd-89bc-0a0a1abcdd09,SESCO,II.1.1,Córdoba,AR-X,annual,2022,naphtha combustion consumption by to the public,2503.8011151999995,TJ,CO2,73300.0,kg/TJ,183528621.74415997,kg +214049a6-3a21-34ed-818c-57e933636927,SESCO,II.1.1,Córdoba,AR-X,annual,2022,naphtha combustion consumption by to the public,2503.8011151999995,TJ,CH4,3.0,kg/TJ,7511.403345599998,kg +fc58cca0-22d2-3e6c-b1fc-59d943b949ca,SESCO,II.1.1,Córdoba,AR-X,annual,2022,naphtha combustion consumption by to the public,2503.8011151999995,TJ,N2O,0.6,kg/TJ,1502.2806691199996,kg +06fc0e89-a0e3-3dd4-ad3b-f7df6e867a5d,SESCO,II.1.1,Entre Rios,AR-E,annual,2022,naphtha combustion consumption by to the public,1081.1731392,TJ,CO2,73300.0,kg/TJ,79249991.10336,kg +acebac0c-3a6e-3d28-9c07-60bd4fbd0c9d,SESCO,II.1.1,Entre Rios,AR-E,annual,2022,naphtha combustion consumption by to the public,1081.1731392,TJ,CH4,3.0,kg/TJ,3243.5194175999995,kg +3c933508-edfc-30b3-a9f1-43c5774f7c3e,SESCO,II.1.1,Entre Rios,AR-E,annual,2022,naphtha combustion consumption by to the public,1081.1731392,TJ,N2O,0.6,kg/TJ,648.70388352,kg +9dc32650-b142-3978-900b-3aaf00fa300c,SESCO,II.1.1,Formosa,AR-P,annual,2022,naphtha combustion consumption by to the public,926.2459975999999,TJ,CO2,73300.0,kg/TJ,67893831.62407999,kg +9fcf0ed3-416e-317d-85a5-b91c6b353f52,SESCO,II.1.1,Formosa,AR-P,annual,2022,naphtha combustion consumption by to the public,926.2459975999999,TJ,CH4,3.0,kg/TJ,2778.7379927999996,kg +0fc5d5f2-9481-3b96-9325-1c326825b4c0,SESCO,II.1.1,Formosa,AR-P,annual,2022,naphtha combustion consumption by to the public,926.2459975999999,TJ,N2O,0.6,kg/TJ,555.7475985599999,kg +dc618bba-6d03-3d70-8fb8-beb29281e321,SESCO,II.1.1,Jujuy,AR-Y,annual,2022,naphtha combustion consumption by to the public,251.20630919999996,TJ,CO2,73300.0,kg/TJ,18413422.46436,kg +35f80765-9534-3b3c-872d-743eb34336d1,SESCO,II.1.1,Jujuy,AR-Y,annual,2022,naphtha combustion consumption by to the public,251.20630919999996,TJ,CH4,3.0,kg/TJ,753.6189275999999,kg +db5e23bb-add1-35ba-949b-cd82d107b66c,SESCO,II.1.1,Jujuy,AR-Y,annual,2022,naphtha combustion consumption by to the public,251.20630919999996,TJ,N2O,0.6,kg/TJ,150.72378551999998,kg +a26932a5-af9f-34ff-8631-053ce0afafd4,SESCO,II.1.1,La Pampa,AR-L,annual,2022,naphtha combustion consumption by to the public,231.24489079999998,TJ,CO2,73300.0,kg/TJ,16950250.49564,kg +78f2dc59-5438-3f3b-b251-2c0b74641f90,SESCO,II.1.1,La Pampa,AR-L,annual,2022,naphtha combustion consumption by to the public,231.24489079999998,TJ,CH4,3.0,kg/TJ,693.7346723999999,kg +11986d50-2f52-39d6-9d24-4998b34e56f9,SESCO,II.1.1,La Pampa,AR-L,annual,2022,naphtha combustion consumption by to the public,231.24489079999998,TJ,N2O,0.6,kg/TJ,138.74693448,kg +3859b8fd-ab1b-323f-801c-f441a3ffb23b,SESCO,II.1.1,La Rioja,AR-F,annual,2022,naphtha combustion consumption by to the public,134.6038848,TJ,CO2,73300.0,kg/TJ,9866464.75584,kg +0d6aeb15-7c47-32ec-9ac1-5ec029a22fdd,SESCO,II.1.1,La Rioja,AR-F,annual,2022,naphtha combustion consumption by to the public,134.6038848,TJ,CH4,3.0,kg/TJ,403.8116544,kg +d21dfc08-01d2-3e0c-a9bd-8674d8cbfe90,SESCO,II.1.1,La Rioja,AR-F,annual,2022,naphtha combustion consumption by to the public,134.6038848,TJ,N2O,0.6,kg/TJ,80.76233088,kg +5e37e802-ce64-3307-b937-b1c3dec26867,SESCO,II.1.1,Mendoza,AR-M,annual,2022,naphtha combustion consumption by to the public,503.64889959999994,TJ,CO2,73300.0,kg/TJ,36917464.340679996,kg +3c3408bd-abd1-3190-bdc0-35dee609db4f,SESCO,II.1.1,Mendoza,AR-M,annual,2022,naphtha combustion consumption by to the public,503.64889959999994,TJ,CH4,3.0,kg/TJ,1510.9466988,kg +bb858e1d-ce39-37e4-a4f7-1d55be9da075,SESCO,II.1.1,Mendoza,AR-M,annual,2022,naphtha combustion consumption by to the public,503.64889959999994,TJ,N2O,0.6,kg/TJ,302.18933975999994,kg +886ff021-3fe6-389a-b276-dac920d2cead,SESCO,II.1.1,Misiones,AR-N,annual,2022,naphtha combustion consumption by to the public,1803.5835048,TJ,CO2,73300.0,kg/TJ,132202670.90183999,kg +b9eb1160-6433-3e92-b17f-c6947d87244d,SESCO,II.1.1,Misiones,AR-N,annual,2022,naphtha combustion consumption by to the public,1803.5835048,TJ,CH4,3.0,kg/TJ,5410.7505144,kg +d86e8d4a-1bcb-3b5d-b1ac-0880d72251e6,SESCO,II.1.1,Misiones,AR-N,annual,2022,naphtha combustion consumption by to the public,1803.5835048,TJ,N2O,0.6,kg/TJ,1082.1501028799998,kg +32f06480-d8ea-34c1-b8c9-fe1f1770bfca,SESCO,II.1.1,Neuquén,AR-Q,annual,2022,naphtha combustion consumption by to the public,487.51693759999995,TJ,CO2,73300.0,kg/TJ,35734991.52608,kg +d7a408c2-458f-3de0-91c9-fee4610f698f,SESCO,II.1.1,Neuquén,AR-Q,annual,2022,naphtha combustion consumption by to the public,487.51693759999995,TJ,CH4,3.0,kg/TJ,1462.5508128,kg +f41df249-6ee1-3cbd-b928-78804d011e2c,SESCO,II.1.1,Neuquén,AR-Q,annual,2022,naphtha combustion consumption by to the public,487.51693759999995,TJ,N2O,0.6,kg/TJ,292.51016255999997,kg +7f7d3a83-26c2-3ca1-b0f1-92c7c025d172,SESCO,II.1.1,Rio Negro,AR-R,annual,2022,naphtha combustion consumption by to the public,821.5239339999998,TJ,CO2,73300.0,kg/TJ,60217704.362199984,kg +dc526658-c9d1-3072-a8f1-2114ae93de28,SESCO,II.1.1,Rio Negro,AR-R,annual,2022,naphtha combustion consumption by to the public,821.5239339999998,TJ,CH4,3.0,kg/TJ,2464.5718019999995,kg +ec3e12bd-e93e-3648-a22b-4bc2d89ceda3,SESCO,II.1.1,Rio Negro,AR-R,annual,2022,naphtha combustion consumption by to the public,821.5239339999998,TJ,N2O,0.6,kg/TJ,492.91436039999985,kg +4df4b0d3-b3b7-3c6a-8b36-4b102e7e40d6,SESCO,II.1.1,Salta,AR-A,annual,2022,naphtha combustion consumption by to the public,228.07880479999997,TJ,CO2,73300.0,kg/TJ,16718176.391839998,kg +22578eb4-66b8-3c35-810a-8f952014e9a8,SESCO,II.1.1,Salta,AR-A,annual,2022,naphtha combustion consumption by to the public,228.07880479999997,TJ,CH4,3.0,kg/TJ,684.2364144,kg +42f904d3-772a-3cf6-93c8-8eaff1daf91e,SESCO,II.1.1,Salta,AR-A,annual,2022,naphtha combustion consumption by to the public,228.07880479999997,TJ,N2O,0.6,kg/TJ,136.84728287999997,kg +c78e7150-3401-3599-8d61-fedd56eaee69,SESCO,II.1.1,San Juan,AR-J,annual,2022,naphtha combustion consumption by to the public,220.81188359999996,TJ,CO2,73300.0,kg/TJ,16185511.067879997,kg +4fd34002-99bc-35a1-beba-11aa27aa572d,SESCO,II.1.1,San Juan,AR-J,annual,2022,naphtha combustion consumption by to the public,220.81188359999996,TJ,CH4,3.0,kg/TJ,662.4356507999998,kg +44fde29b-57c7-3ad3-bcdb-6a0785d9205a,SESCO,II.1.1,San Juan,AR-J,annual,2022,naphtha combustion consumption by to the public,220.81188359999996,TJ,N2O,0.6,kg/TJ,132.48713015999996,kg +55d589c5-d691-3a04-9f6c-65b5f104bae6,SESCO,II.1.1,San Luis,AR-D,annual,2022,naphtha combustion consumption by to the public,575.7150475999999,TJ,CO2,73300.0,kg/TJ,42199912.98908,kg +d039cb14-5fed-3f20-8d23-5b0e93930d3c,SESCO,II.1.1,San Luis,AR-D,annual,2022,naphtha combustion consumption by to the public,575.7150475999999,TJ,CH4,3.0,kg/TJ,1727.1451427999998,kg +6013eaef-086c-3147-9cd6-684e93456426,SESCO,II.1.1,San Luis,AR-D,annual,2022,naphtha combustion consumption by to the public,575.7150475999999,TJ,N2O,0.6,kg/TJ,345.42902855999995,kg +ec751792-14a7-3a7e-ba81-8bba85d60be3,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2022,naphtha combustion consumption by to the public,925.4318612,TJ,CO2,73300.0,kg/TJ,67834155.42596,kg +307244e4-203c-32b8-935b-f1ed08786571,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2022,naphtha combustion consumption by to the public,925.4318612,TJ,CH4,3.0,kg/TJ,2776.2955836,kg +2ff0e2f9-2666-3b5f-9aa8-ed7f62298110,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2022,naphtha combustion consumption by to the public,925.4318612,TJ,N2O,0.6,kg/TJ,555.25911672,kg +d08add7e-aea8-3f17-9741-d11505b94aa6,SESCO,II.1.1,Santa Fe,AR-S,annual,2022,naphtha combustion consumption by to the public,2586.5113428,TJ,CO2,73300.0,kg/TJ,189591281.42723998,kg +c514b580-9fc6-364c-b3a3-af411264cad1,SESCO,II.1.1,Santa Fe,AR-S,annual,2022,naphtha combustion consumption by to the public,2586.5113428,TJ,CH4,3.0,kg/TJ,7759.534028399999,kg +674fface-031d-3ead-a44e-94a6170b714e,SESCO,II.1.1,Santa Fe,AR-S,annual,2022,naphtha combustion consumption by to the public,2586.5113428,TJ,N2O,0.6,kg/TJ,1551.90680568,kg +c1946e76-bf0a-3bad-85a8-2722bc1fcefe,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2022,naphtha combustion consumption by to the public,458.2984868,TJ,CO2,73300.0,kg/TJ,33593279.08244,kg +24c81ede-6500-3c39-8829-512ad3eef33e,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2022,naphtha combustion consumption by to the public,458.2984868,TJ,CH4,3.0,kg/TJ,1374.8954604,kg +6d7ddbe2-fe96-30c6-939a-8c9f1d33f115,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2022,naphtha combustion consumption by to the public,458.2984868,TJ,N2O,0.6,kg/TJ,274.97909208,kg +633af1a4-0f29-388c-ae39-8d16eb970c32,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2022,naphtha combustion consumption by to the public,180.9192,TJ,CO2,73300.0,kg/TJ,13261377.36,kg +0d7f0f9a-c330-3d97-af5b-c40130e849a8,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2022,naphtha combustion consumption by to the public,180.9192,TJ,CH4,3.0,kg/TJ,542.7575999999999,kg +01fd9174-8bdd-310f-ba97-06904ebd8fb5,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2022,naphtha combustion consumption by to the public,180.9192,TJ,N2O,0.6,kg/TJ,108.55152,kg +338eee02-cff0-3f3b-8d67-56b31b06a1e1,SESCO,II.1.1,Tucuman,AR-T,annual,2022,naphtha combustion consumption by to the public,207.72539479999998,TJ,CO2,73300.0,kg/TJ,15226271.438839998,kg +a0b2d53b-0b21-352e-b625-0e4bff2d2149,SESCO,II.1.1,Tucuman,AR-T,annual,2022,naphtha combustion consumption by to the public,207.72539479999998,TJ,CH4,3.0,kg/TJ,623.1761843999999,kg +6d29fdad-0285-3201-9b61-4690e90c0c7b,SESCO,II.1.1,Tucuman,AR-T,annual,2022,naphtha combustion consumption by to the public,207.72539479999998,TJ,N2O,0.6,kg/TJ,124.63523687999998,kg +44b5aef2-a719-3851-8322-b52b8aea0f28,SESCO,II.1.1,Buenos Aires,AR-B,annual,2022,naphtha combustion consumption by to the public,3273.3107791999996,TJ,CO2,73300.0,kg/TJ,239933680.11535996,kg +76dbbd7b-157c-3796-80fa-8c9f771c3aab,SESCO,II.1.1,Buenos Aires,AR-B,annual,2022,naphtha combustion consumption by to the public,3273.3107791999996,TJ,CH4,3.0,kg/TJ,9819.9323376,kg +4a3757ba-f742-360c-8389-0c375954363d,SESCO,II.1.1,Buenos Aires,AR-B,annual,2022,naphtha combustion consumption by to the public,3273.3107791999996,TJ,N2O,0.6,kg/TJ,1963.9864675199997,kg +cc00916c-2abc-3f00-97fa-6ad61ae9f581,SESCO,II.1.1,Capital Federal,AR-C,annual,2022,naphtha combustion consumption by to the public,1237.2159491999998,TJ,CO2,73300.0,kg/TJ,90687929.07635999,kg +557b0cd0-d351-34e5-af3a-7014e7aa0cf2,SESCO,II.1.1,Capital Federal,AR-C,annual,2022,naphtha combustion consumption by to the public,1237.2159491999998,TJ,CH4,3.0,kg/TJ,3711.6478475999993,kg +80b4e316-cb8d-33d7-805d-cde91755440c,SESCO,II.1.1,Capital Federal,AR-C,annual,2022,naphtha combustion consumption by to the public,1237.2159491999998,TJ,N2O,0.6,kg/TJ,742.3295695199998,kg +350d73f8-2b04-3205-b646-8eb1b66491e4,SESCO,II.1.1,Catamarca,AR-K,annual,2022,naphtha combustion consumption by to the public,139.39824359999997,TJ,CO2,73300.0,kg/TJ,10217891.255879998,kg +97fd1b13-3c56-30f3-b1ba-dfc7b2e250a5,SESCO,II.1.1,Catamarca,AR-K,annual,2022,naphtha combustion consumption by to the public,139.39824359999997,TJ,CH4,3.0,kg/TJ,418.1947307999999,kg +79558732-9cd1-3b59-b527-da236ac2bc2a,SESCO,II.1.1,Catamarca,AR-K,annual,2022,naphtha combustion consumption by to the public,139.39824359999997,TJ,N2O,0.6,kg/TJ,83.63894615999997,kg +b10892c6-9652-313a-b43d-386e4cdfe25d,SESCO,II.1.1,Chaco,AR-H,annual,2022,naphtha combustion consumption by to the public,121.6380088,TJ,CO2,73300.0,kg/TJ,8916066.04504,kg +7724f796-18f3-3720-9a21-cdc5dd238c98,SESCO,II.1.1,Chaco,AR-H,annual,2022,naphtha combustion consumption by to the public,121.6380088,TJ,CH4,3.0,kg/TJ,364.9140264,kg +7469d18d-f3dc-3e8b-9dd0-52ee318d8f32,SESCO,II.1.1,Chaco,AR-H,annual,2022,naphtha combustion consumption by to the public,121.6380088,TJ,N2O,0.6,kg/TJ,72.98280528,kg +ac157661-ab46-36be-92e4-80aaf09e5361,SESCO,II.1.1,Chubut,AR-U,annual,2022,naphtha combustion consumption by to the public,285.43019119999997,TJ,CO2,73300.0,kg/TJ,20922033.01496,kg +45f0400a-1fb2-3af3-8f0d-2986211c7da7,SESCO,II.1.1,Chubut,AR-U,annual,2022,naphtha combustion consumption by to the public,285.43019119999997,TJ,CH4,3.0,kg/TJ,856.2905735999999,kg +a42b2166-127a-3c33-a697-0913dbb01bff,SESCO,II.1.1,Chubut,AR-U,annual,2022,naphtha combustion consumption by to the public,285.43019119999997,TJ,N2O,0.6,kg/TJ,171.25811471999998,kg +4485e397-c0a2-30d1-981a-59042d3631bd,SESCO,II.1.1,Corrientes,AR-W,annual,2022,naphtha combustion consumption by to the public,152.21335359999998,TJ,CO2,73300.0,kg/TJ,11157238.818879997,kg +3787b9d4-6ec9-3e3c-9228-9f0c97bb6210,SESCO,II.1.1,Corrientes,AR-W,annual,2022,naphtha combustion consumption by to the public,152.21335359999998,TJ,CH4,3.0,kg/TJ,456.6400607999999,kg +fb2c06fb-4b87-3e63-9529-153ff0e5f9b3,SESCO,II.1.1,Corrientes,AR-W,annual,2022,naphtha combustion consumption by to the public,152.21335359999998,TJ,N2O,0.6,kg/TJ,91.32801215999999,kg +66a996d2-2843-383a-b7e4-114e3f0e9433,SESCO,II.1.1,Córdoba,AR-X,annual,2022,naphtha combustion consumption by to the public,690.9002715999999,TJ,CO2,73300.0,kg/TJ,50642989.90827999,kg +f62fb215-8352-3832-a90b-c4112fa22ea7,SESCO,II.1.1,Córdoba,AR-X,annual,2022,naphtha combustion consumption by to the public,690.9002715999999,TJ,CH4,3.0,kg/TJ,2072.7008147999995,kg +6a76b1ed-5948-352e-8d78-609a7c9c7683,SESCO,II.1.1,Córdoba,AR-X,annual,2022,naphtha combustion consumption by to the public,690.9002715999999,TJ,N2O,0.6,kg/TJ,414.5401629599999,kg +f9dba47a-e00d-3381-a525-cdec6cfdabe3,SESCO,II.1.1,Entre Rios,AR-E,annual,2022,naphtha combustion consumption by to the public,334.70052,TJ,CO2,73300.0,kg/TJ,24533548.116,kg +c828c516-a6da-3336-b02f-9b78a2606fea,SESCO,II.1.1,Entre Rios,AR-E,annual,2022,naphtha combustion consumption by to the public,334.70052,TJ,CH4,3.0,kg/TJ,1004.10156,kg +9e673f26-adf5-3eab-8f44-e997478aa075,SESCO,II.1.1,Entre Rios,AR-E,annual,2022,naphtha combustion consumption by to the public,334.70052,TJ,N2O,0.6,kg/TJ,200.82031199999997,kg +0b2dc993-1495-3209-bfc3-df1c6846b0d3,SESCO,II.1.1,Formosa,AR-P,annual,2022,naphtha combustion consumption by to the public,264.443564,TJ,CO2,73300.0,kg/TJ,19383713.2412,kg +6f76254b-87d0-3ea0-9854-201321cfaaa8,SESCO,II.1.1,Formosa,AR-P,annual,2022,naphtha combustion consumption by to the public,264.443564,TJ,CH4,3.0,kg/TJ,793.330692,kg +1cdc425d-2c8e-39a0-a140-45af0a41b6c7,SESCO,II.1.1,Formosa,AR-P,annual,2022,naphtha combustion consumption by to the public,264.443564,TJ,N2O,0.6,kg/TJ,158.6661384,kg +d6394862-4fdd-35ea-8962-911e6e9aa71c,SESCO,II.1.1,Jujuy,AR-Y,annual,2022,naphtha combustion consumption by to the public,60.87931079999999,TJ,CO2,73300.0,kg/TJ,4462453.481639999,kg +c4ff79fd-8cf5-397b-8f06-f2d4e98909b7,SESCO,II.1.1,Jujuy,AR-Y,annual,2022,naphtha combustion consumption by to the public,60.87931079999999,TJ,CH4,3.0,kg/TJ,182.63793239999998,kg +6e577eb8-1560-3345-8351-a2e92ff5d053,SESCO,II.1.1,Jujuy,AR-Y,annual,2022,naphtha combustion consumption by to the public,60.87931079999999,TJ,N2O,0.6,kg/TJ,36.52758648,kg +1533709b-c447-3d37-922a-6ed9e3a9fdef,SESCO,II.1.1,La Pampa,AR-L,annual,2022,naphtha combustion consumption by to the public,80.02659279999999,TJ,CO2,73300.0,kg/TJ,5865949.252239999,kg +8cbca516-b129-3698-b5f6-64f523d5504d,SESCO,II.1.1,La Pampa,AR-L,annual,2022,naphtha combustion consumption by to the public,80.02659279999999,TJ,CH4,3.0,kg/TJ,240.07977839999995,kg +4ae95471-647b-303f-a63e-d3e19579dede,SESCO,II.1.1,La Pampa,AR-L,annual,2022,naphtha combustion consumption by to the public,80.02659279999999,TJ,N2O,0.6,kg/TJ,48.01595567999999,kg +ba09968c-46a2-37d2-8b51-816b771ccaa0,SESCO,II.1.1,La Rioja,AR-F,annual,2022,naphtha combustion consumption by to the public,44.47597,TJ,CO2,73300.0,kg/TJ,3260088.601,kg +6a33eeb8-c6c0-3454-befe-ff212c07b351,SESCO,II.1.1,La Rioja,AR-F,annual,2022,naphtha combustion consumption by to the public,44.47597,TJ,CH4,3.0,kg/TJ,133.42791,kg +366d685b-8b65-3387-9e13-b7619c7ad0fc,SESCO,II.1.1,La Rioja,AR-F,annual,2022,naphtha combustion consumption by to the public,44.47597,TJ,N2O,0.6,kg/TJ,26.685581999999997,kg +a1a8f479-d630-3e9b-8745-ba6e8fb6fc9d,SESCO,II.1.1,Mendoza,AR-M,annual,2022,naphtha combustion consumption by to the public,224.30965479999998,TJ,CO2,73300.0,kg/TJ,16441897.696839998,kg +fe4d594e-f35a-3d1d-bc85-8729dc2cd548,SESCO,II.1.1,Mendoza,AR-M,annual,2022,naphtha combustion consumption by to the public,224.30965479999998,TJ,CH4,3.0,kg/TJ,672.9289643999999,kg +7893678e-d9a2-3491-9581-df24a8609630,SESCO,II.1.1,Mendoza,AR-M,annual,2022,naphtha combustion consumption by to the public,224.30965479999998,TJ,N2O,0.6,kg/TJ,134.58579287999999,kg +8948216a-98ba-3b02-a322-fff9dbbd84d1,SESCO,II.1.1,Misiones,AR-N,annual,2022,naphtha combustion consumption by to the public,204.83068759999998,TJ,CO2,73300.0,kg/TJ,15014089.401079997,kg +9ca81620-523a-3273-8087-29078f0b5779,SESCO,II.1.1,Misiones,AR-N,annual,2022,naphtha combustion consumption by to the public,204.83068759999998,TJ,CH4,3.0,kg/TJ,614.4920628,kg +07529fb6-a394-3c2b-910b-ebe2531fab15,SESCO,II.1.1,Misiones,AR-N,annual,2022,naphtha combustion consumption by to the public,204.83068759999998,TJ,N2O,0.6,kg/TJ,122.89841255999998,kg +851646b2-45e6-319e-bc7a-b3bc9c6d1872,SESCO,II.1.1,Neuquén,AR-Q,annual,2022,naphtha combustion consumption by to the public,231.93841439999997,TJ,CO2,73300.0,kg/TJ,17001085.775519997,kg +12f461c2-054f-3934-a058-49c8924b1b2d,SESCO,II.1.1,Neuquén,AR-Q,annual,2022,naphtha combustion consumption by to the public,231.93841439999997,TJ,CH4,3.0,kg/TJ,695.8152431999999,kg +29987a69-a5a3-3409-843a-18df96c65645,SESCO,II.1.1,Neuquén,AR-Q,annual,2022,naphtha combustion consumption by to the public,231.93841439999997,TJ,N2O,0.6,kg/TJ,139.16304863999997,kg +8ce15148-92f1-3e20-aa49-372413acca6d,SESCO,II.1.1,Rio Negro,AR-R,annual,2022,naphtha combustion consumption by to the public,325.7751728,TJ,CO2,73300.0,kg/TJ,23879320.16624,kg +ab24dc56-b3c5-34d4-9c57-9a93cedc959c,SESCO,II.1.1,Rio Negro,AR-R,annual,2022,naphtha combustion consumption by to the public,325.7751728,TJ,CH4,3.0,kg/TJ,977.3255184,kg +42fb0688-c6ce-3fef-bcfd-02e6e5a02312,SESCO,II.1.1,Rio Negro,AR-R,annual,2022,naphtha combustion consumption by to the public,325.7751728,TJ,N2O,0.6,kg/TJ,195.46510368,kg +f85d024a-c78c-3a36-8dfd-91f1983fda8b,SESCO,II.1.1,Salta,AR-A,annual,2022,naphtha combustion consumption by to the public,42.485858799999995,TJ,CO2,73300.0,kg/TJ,3114213.4500399996,kg +d4e528f4-0fbb-3b3b-b84f-4441e8567f3f,SESCO,II.1.1,Salta,AR-A,annual,2022,naphtha combustion consumption by to the public,42.485858799999995,TJ,CH4,3.0,kg/TJ,127.4575764,kg +93b2d4fa-1748-34b7-9181-6656a075ff33,SESCO,II.1.1,Salta,AR-A,annual,2022,naphtha combustion consumption by to the public,42.485858799999995,TJ,N2O,0.6,kg/TJ,25.491515279999998,kg +4983a199-2257-3ccf-a45d-3b06a810b8f1,SESCO,II.1.1,San Juan,AR-J,annual,2022,naphtha combustion consumption by to the public,45.95347679999999,TJ,CO2,73300.0,kg/TJ,3368389.849439999,kg +5aac3ef2-053d-39b2-999f-bb1babfd7bf0,SESCO,II.1.1,San Juan,AR-J,annual,2022,naphtha combustion consumption by to the public,45.95347679999999,TJ,CH4,3.0,kg/TJ,137.86043039999998,kg +b3e93443-be59-32f5-b62e-4b86d835813a,SESCO,II.1.1,San Juan,AR-J,annual,2022,naphtha combustion consumption by to the public,45.95347679999999,TJ,N2O,0.6,kg/TJ,27.572086079999995,kg +48c34543-7b2f-3c6e-beeb-0e3e45fff197,SESCO,II.1.1,San Luis,AR-D,annual,2022,naphtha combustion consumption by to the public,131.7091776,TJ,CO2,73300.0,kg/TJ,9654282.718080001,kg +45ea2645-8fde-382c-a1fa-218417f09f12,SESCO,II.1.1,San Luis,AR-D,annual,2022,naphtha combustion consumption by to the public,131.7091776,TJ,CH4,3.0,kg/TJ,395.12753280000004,kg +7b4bdf88-81a1-3807-8f01-668ef7e67338,SESCO,II.1.1,San Luis,AR-D,annual,2022,naphtha combustion consumption by to the public,131.7091776,TJ,N2O,0.6,kg/TJ,79.02550656,kg +d00d0f48-9ad5-342c-8839-2bc54a98292a,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2022,naphtha combustion consumption by to the public,133.1565312,TJ,CO2,73300.0,kg/TJ,9760373.73696,kg +6b09f938-5899-3c43-8627-3de9275d4826,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2022,naphtha combustion consumption by to the public,133.1565312,TJ,CH4,3.0,kg/TJ,399.46959359999994,kg +539f85f9-d211-366e-89d9-953f562a0157,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2022,naphtha combustion consumption by to the public,133.1565312,TJ,N2O,0.6,kg/TJ,79.89391871999999,kg +0aaccc43-1198-323a-9399-557318826815,SESCO,II.1.1,Santa Fe,AR-S,annual,2022,naphtha combustion consumption by to the public,849.4457971999999,TJ,CO2,73300.0,kg/TJ,62264376.93475999,kg +8c2f982c-dbaf-31fa-b82c-3aa38e217aea,SESCO,II.1.1,Santa Fe,AR-S,annual,2022,naphtha combustion consumption by to the public,849.4457971999999,TJ,CH4,3.0,kg/TJ,2548.3373915999996,kg +7fb9eea8-8bcb-31d1-b3d5-1692be1ab3ed,SESCO,II.1.1,Santa Fe,AR-S,annual,2022,naphtha combustion consumption by to the public,849.4457971999999,TJ,N2O,0.6,kg/TJ,509.66747831999993,kg +dee4d720-2a11-32c6-9791-5b5648ba309d,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2022,naphtha combustion consumption by to the public,152.0625876,TJ,CO2,73300.0,kg/TJ,11146187.67108,kg +78eb5318-f584-376e-b762-56cc93205529,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2022,naphtha combustion consumption by to the public,152.0625876,TJ,CH4,3.0,kg/TJ,456.1877628,kg +a9bef161-233b-337e-b598-7e3f1242df2c,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2022,naphtha combustion consumption by to the public,152.0625876,TJ,N2O,0.6,kg/TJ,91.23755256,kg +6efa85d7-654c-35a3-99e4-36c21f00607d,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2022,naphtha combustion consumption by to the public,43.0587696,TJ,CO2,73300.0,kg/TJ,3156207.81168,kg +8aebec1c-23a1-3b9a-ac5e-d20ae1b6b86b,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2022,naphtha combustion consumption by to the public,43.0587696,TJ,CH4,3.0,kg/TJ,129.1763088,kg +a6198b5c-6c4e-344d-9181-98fe027a31b0,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2022,naphtha combustion consumption by to the public,43.0587696,TJ,N2O,0.6,kg/TJ,25.835261759999998,kg +080e716d-0fa3-309c-ac16-1aa673963748,SESCO,II.1.1,Tucuman,AR-T,annual,2022,naphtha combustion consumption by to the public,40.073602799999996,TJ,CO2,73300.0,kg/TJ,2937395.08524,kg +5f3ed282-3014-32d7-84b1-efa3478582ba,SESCO,II.1.1,Tucuman,AR-T,annual,2022,naphtha combustion consumption by to the public,40.073602799999996,TJ,CH4,3.0,kg/TJ,120.22080839999998,kg +99cc854b-a178-3a54-9201-b2de3c93397a,SESCO,II.1.1,Tucuman,AR-T,annual,2022,naphtha combustion consumption by to the public,40.073602799999996,TJ,N2O,0.6,kg/TJ,24.04416168,kg +4b4b2c3a-ab75-3908-b50c-b675df7ca32c,SESCO,II.1.1,Buenos Aires,AR-B,annual,2022,naphtha combustion consumption by freight transport,20.353409999999997,TJ,CO2,73300.0,kg/TJ,1491904.9529999997,kg +c0d04474-3997-372d-b6c1-58c3dca74ca0,SESCO,II.1.1,Buenos Aires,AR-B,annual,2022,naphtha combustion consumption by freight transport,20.353409999999997,TJ,CH4,3.0,kg/TJ,61.06022999999999,kg +c2025135-eba2-3f9d-b9f7-6e9907060d0f,SESCO,II.1.1,Buenos Aires,AR-B,annual,2022,naphtha combustion consumption by freight transport,20.353409999999997,TJ,N2O,0.6,kg/TJ,12.212045999999997,kg +905af594-ed91-39e3-b22c-dbd62eff72e8,SESCO,II.1.1,Capital Federal,AR-C,annual,2022,naphtha combustion consumption by freight transport,21.408771999999995,TJ,CO2,73300.0,kg/TJ,1569262.9875999996,kg +f7f62462-03d5-3373-b6fd-a01b5d085528,SESCO,II.1.1,Capital Federal,AR-C,annual,2022,naphtha combustion consumption by freight transport,21.408771999999995,TJ,CH4,3.0,kg/TJ,64.22631599999998,kg +5caf9666-eca4-3d5a-bae5-1bb924c39327,SESCO,II.1.1,Capital Federal,AR-C,annual,2022,naphtha combustion consumption by freight transport,21.408771999999995,TJ,N2O,0.6,kg/TJ,12.845263199999996,kg +0b7c57e8-e6c9-377d-87d8-703110adb4ee,SESCO,II.1.1,Chubut,AR-U,annual,2022,naphtha combustion consumption by freight transport,0.150766,TJ,CO2,73300.0,kg/TJ,11051.1478,kg +046923cb-b437-3c53-9921-7cd535a7b60b,SESCO,II.1.1,Chubut,AR-U,annual,2022,naphtha combustion consumption by freight transport,0.150766,TJ,CH4,3.0,kg/TJ,0.45229800000000003,kg +b2174810-99ed-39bf-8284-83807e98baa6,SESCO,II.1.1,Chubut,AR-U,annual,2022,naphtha combustion consumption by freight transport,0.150766,TJ,N2O,0.6,kg/TJ,0.0904596,kg +4689995b-b4e4-310d-b7d2-99a44e478028,SESCO,II.1.1,Corrientes,AR-W,annual,2022,naphtha combustion consumption by freight transport,0.060306399999999996,TJ,CO2,73300.0,kg/TJ,4420.4591199999995,kg +5ed72c7e-6ce2-3c0c-ba65-78dd54986c9b,SESCO,II.1.1,Corrientes,AR-W,annual,2022,naphtha combustion consumption by freight transport,0.060306399999999996,TJ,CH4,3.0,kg/TJ,0.1809192,kg +79a742ca-4d4d-3825-b3fb-536394689738,SESCO,II.1.1,Corrientes,AR-W,annual,2022,naphtha combustion consumption by freight transport,0.060306399999999996,TJ,N2O,0.6,kg/TJ,0.036183839999999995,kg +cfd7f9c8-d6b1-3ef7-abfa-04bb44216ff0,SESCO,II.1.1,Córdoba,AR-X,annual,2022,naphtha combustion consumption by freight transport,2.8042476,TJ,CO2,73300.0,kg/TJ,205551.34908,kg +642b1c29-2ceb-39cb-8dcd-1cf19896b874,SESCO,II.1.1,Córdoba,AR-X,annual,2022,naphtha combustion consumption by freight transport,2.8042476,TJ,CH4,3.0,kg/TJ,8.4127428,kg +511a92c8-39b4-3985-9ecb-9afddc6131d8,SESCO,II.1.1,Córdoba,AR-X,annual,2022,naphtha combustion consumption by freight transport,2.8042476,TJ,N2O,0.6,kg/TJ,1.68254856,kg +312353b8-b336-3598-8263-3f5d9a7e8491,SESCO,II.1.1,Entre Rios,AR-E,annual,2022,naphtha combustion consumption by freight transport,0.0904596,TJ,CO2,73300.0,kg/TJ,6630.68868,kg +04359fcb-e092-3327-a6ff-4d5e5169adf6,SESCO,II.1.1,Entre Rios,AR-E,annual,2022,naphtha combustion consumption by freight transport,0.0904596,TJ,CH4,3.0,kg/TJ,0.27137880000000003,kg +cb819f4d-f1db-3643-852e-d6967e489ef8,SESCO,II.1.1,Entre Rios,AR-E,annual,2022,naphtha combustion consumption by freight transport,0.0904596,TJ,N2O,0.6,kg/TJ,0.05427576,kg +b59a8b92-ab37-3823-a731-0e2b0dc373e2,SESCO,II.1.1,Mendoza,AR-M,annual,2022,naphtha combustion consumption by freight transport,0.150766,TJ,CO2,73300.0,kg/TJ,11051.1478,kg +1c971676-ab51-3410-8099-7028c2cc655b,SESCO,II.1.1,Mendoza,AR-M,annual,2022,naphtha combustion consumption by freight transport,0.150766,TJ,CH4,3.0,kg/TJ,0.45229800000000003,kg +6af7650a-897c-3aca-8646-b050ddb54272,SESCO,II.1.1,Mendoza,AR-M,annual,2022,naphtha combustion consumption by freight transport,0.150766,TJ,N2O,0.6,kg/TJ,0.0904596,kg +69c7bab5-2c09-3f46-a30f-9fbc61041e34,SESCO,II.1.1,Rio Negro,AR-R,annual,2022,naphtha combustion consumption by freight transport,0.24122559999999998,TJ,CO2,73300.0,kg/TJ,17681.836479999998,kg +1cb3a473-41d8-3d56-821e-168f37d8d91d,SESCO,II.1.1,Rio Negro,AR-R,annual,2022,naphtha combustion consumption by freight transport,0.24122559999999998,TJ,CH4,3.0,kg/TJ,0.7236768,kg +600f6aa4-b38b-3c25-9511-32cb96fa53e9,SESCO,II.1.1,Rio Negro,AR-R,annual,2022,naphtha combustion consumption by freight transport,0.24122559999999998,TJ,N2O,0.6,kg/TJ,0.14473535999999998,kg +5456cceb-26de-313e-ad8c-7b92ab287d8b,SESCO,II.1.1,Santa Fe,AR-S,annual,2022,naphtha combustion consumption by freight transport,7.0558488,TJ,CO2,73300.0,kg/TJ,517193.71703999996,kg +1686ae61-4870-3e51-a443-ed6ef91cd1ac,SESCO,II.1.1,Santa Fe,AR-S,annual,2022,naphtha combustion consumption by freight transport,7.0558488,TJ,CH4,3.0,kg/TJ,21.1675464,kg +328745fd-b2e5-3ddb-ae0c-1bf55d5890cb,SESCO,II.1.1,Santa Fe,AR-S,annual,2022,naphtha combustion consumption by freight transport,7.0558488,TJ,N2O,0.6,kg/TJ,4.23350928,kg +3d657dd3-61a0-3fd1-90ab-621dee230f22,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2022,naphtha combustion consumption by freight transport,0.030153199999999998,TJ,CO2,73300.0,kg/TJ,2210.2295599999998,kg +c37a6cd6-16cf-3dfa-9634-51555ff151ff,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2022,naphtha combustion consumption by freight transport,0.030153199999999998,TJ,CH4,3.0,kg/TJ,0.0904596,kg +dc14a0b3-83ad-38d8-a1e3-393ed073b71b,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2022,naphtha combustion consumption by freight transport,0.030153199999999998,TJ,N2O,0.6,kg/TJ,0.018091919999999997,kg +a6017048-250c-303a-8db7-b079c154deb7,SESCO,II.1.1,Buenos Aires,AR-B,annual,2022,naphtha combustion consumption by freight transport,15.257519199999997,TJ,CO2,73300.0,kg/TJ,1118376.1573599998,kg +9b86a2a2-70af-3e7d-be02-7eaac3cf169d,SESCO,II.1.1,Buenos Aires,AR-B,annual,2022,naphtha combustion consumption by freight transport,15.257519199999997,TJ,CH4,3.0,kg/TJ,45.77255759999999,kg +683836b6-b478-3089-846c-428b69c1cbce,SESCO,II.1.1,Buenos Aires,AR-B,annual,2022,naphtha combustion consumption by freight transport,15.257519199999997,TJ,N2O,0.6,kg/TJ,9.154511519999998,kg +d8cd30d6-d12d-31e7-a962-9d36db00603f,SESCO,II.1.1,Capital Federal,AR-C,annual,2022,naphtha combustion consumption by freight transport,15.378131999999999,TJ,CO2,73300.0,kg/TJ,1127217.0755999999,kg +d33020ce-215c-3272-81b6-65909c5a83e1,SESCO,II.1.1,Capital Federal,AR-C,annual,2022,naphtha combustion consumption by freight transport,15.378131999999999,TJ,CH4,3.0,kg/TJ,46.134395999999995,kg +52406b05-8839-3af0-8bc6-7c1ed60c85ca,SESCO,II.1.1,Capital Federal,AR-C,annual,2022,naphtha combustion consumption by freight transport,15.378131999999999,TJ,N2O,0.6,kg/TJ,9.226879199999999,kg +2b366b2e-a5d1-3605-9bcd-03cdb52b61d8,SESCO,II.1.1,Córdoba,AR-X,annual,2022,naphtha combustion consumption by freight transport,1.2965876,TJ,CO2,73300.0,kg/TJ,95039.87108000001,kg +5370cfdd-8553-385f-b2b7-d3d9118caf1f,SESCO,II.1.1,Córdoba,AR-X,annual,2022,naphtha combustion consumption by freight transport,1.2965876,TJ,CH4,3.0,kg/TJ,3.8897628,kg +38bf5fba-4ac6-308f-b157-07be8c232925,SESCO,II.1.1,Córdoba,AR-X,annual,2022,naphtha combustion consumption by freight transport,1.2965876,TJ,N2O,0.6,kg/TJ,0.77795256,kg +b83fb5ae-5fa9-3384-aa4d-f5bb36667651,SESCO,II.1.1,Entre Rios,AR-E,annual,2022,naphtha combustion consumption by freight transport,0.4221448,TJ,CO2,73300.0,kg/TJ,30943.21384,kg +ed9d3a89-fb95-3254-afc7-f5d4323db83f,SESCO,II.1.1,Entre Rios,AR-E,annual,2022,naphtha combustion consumption by freight transport,0.4221448,TJ,CH4,3.0,kg/TJ,1.2664344,kg +29e8f973-53fa-3dc6-9b58-2e10f45cfcaf,SESCO,II.1.1,Entre Rios,AR-E,annual,2022,naphtha combustion consumption by freight transport,0.4221448,TJ,N2O,0.6,kg/TJ,0.25328688,kg +abf36e37-833b-342c-8b9c-6bceb8f6a716,SESCO,II.1.1,La Rioja,AR-F,annual,2022,naphtha combustion consumption by freight transport,0.2110724,TJ,CO2,73300.0,kg/TJ,15471.60692,kg +ea6ba44b-f7d7-3070-9e5f-56159666bed8,SESCO,II.1.1,La Rioja,AR-F,annual,2022,naphtha combustion consumption by freight transport,0.2110724,TJ,CH4,3.0,kg/TJ,0.6332172,kg +c3dfc04e-0c65-3786-b502-94637053fba4,SESCO,II.1.1,La Rioja,AR-F,annual,2022,naphtha combustion consumption by freight transport,0.2110724,TJ,N2O,0.6,kg/TJ,0.12664344,kg +53f1a1f8-04b4-3462-8511-401762acb47b,SESCO,II.1.1,Mendoza,AR-M,annual,2022,naphtha combustion consumption by freight transport,0.0904596,TJ,CO2,73300.0,kg/TJ,6630.68868,kg +31d32054-d13b-3adf-a1bf-6b53b2172f7b,SESCO,II.1.1,Mendoza,AR-M,annual,2022,naphtha combustion consumption by freight transport,0.0904596,TJ,CH4,3.0,kg/TJ,0.27137880000000003,kg +629a6df6-438f-3204-8232-5c79cb082230,SESCO,II.1.1,Mendoza,AR-M,annual,2022,naphtha combustion consumption by freight transport,0.0904596,TJ,N2O,0.6,kg/TJ,0.05427576,kg +3eaca865-45d4-30ea-acf2-ca9a883ee772,SESCO,II.1.1,Rio Negro,AR-R,annual,2022,naphtha combustion consumption by freight transport,0.301532,TJ,CO2,73300.0,kg/TJ,22102.2956,kg +b887be5f-a3f1-3bff-8fbf-be254a5d3d73,SESCO,II.1.1,Rio Negro,AR-R,annual,2022,naphtha combustion consumption by freight transport,0.301532,TJ,CH4,3.0,kg/TJ,0.9045960000000001,kg +6dcdf4b6-43ea-3f3b-904d-2aec0e913a1e,SESCO,II.1.1,Rio Negro,AR-R,annual,2022,naphtha combustion consumption by freight transport,0.301532,TJ,N2O,0.6,kg/TJ,0.1809192,kg +34a57ffa-ea5e-3a34-b1e8-df4c3b43a2ab,SESCO,II.1.1,San Luis,AR-D,annual,2022,naphtha combustion consumption by freight transport,0.030153199999999998,TJ,CO2,73300.0,kg/TJ,2210.2295599999998,kg +f084ac29-84d9-3926-8b6d-d961b27e9e82,SESCO,II.1.1,San Luis,AR-D,annual,2022,naphtha combustion consumption by freight transport,0.030153199999999998,TJ,CH4,3.0,kg/TJ,0.0904596,kg +5904c5b4-fc61-39cf-b1cf-7f613e322ba3,SESCO,II.1.1,San Luis,AR-D,annual,2022,naphtha combustion consumption by freight transport,0.030153199999999998,TJ,N2O,0.6,kg/TJ,0.018091919999999997,kg +b7b3aa72-2404-3118-a3b9-f51ccf4560fc,SESCO,II.1.1,Santa Fe,AR-S,annual,2022,naphtha combustion consumption by freight transport,6.6940104,TJ,CO2,73300.0,kg/TJ,490670.96232,kg +03247daf-0ffd-36d8-98f6-b6307c0f77e2,SESCO,II.1.1,Santa Fe,AR-S,annual,2022,naphtha combustion consumption by freight transport,6.6940104,TJ,CH4,3.0,kg/TJ,20.0820312,kg +e432dcfa-bc41-3032-8d5f-f09acda9ddc7,SESCO,II.1.1,Santa Fe,AR-S,annual,2022,naphtha combustion consumption by freight transport,6.6940104,TJ,N2O,0.6,kg/TJ,4.016406239999999,kg +3d657dd3-61a0-3fd1-90ab-621dee230f22,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2022,naphtha combustion consumption by freight transport,0.030153199999999998,TJ,CO2,73300.0,kg/TJ,2210.2295599999998,kg +c37a6cd6-16cf-3dfa-9634-51555ff151ff,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2022,naphtha combustion consumption by freight transport,0.030153199999999998,TJ,CH4,3.0,kg/TJ,0.0904596,kg +dc14a0b3-83ad-38d8-a1e3-393ed073b71b,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2022,naphtha combustion consumption by freight transport,0.030153199999999998,TJ,N2O,0.6,kg/TJ,0.018091919999999997,kg +abc1c843-1370-302a-b465-a1dae82fd9bf,SESCO,II.1.1,Buenos Aires,AR-B,annual,2022,naphtha combustion consumption by public passenger transport,0.12061279999999999,TJ,CO2,73300.0,kg/TJ,8840.918239999999,kg +bb0f09c1-0533-366f-a0cc-bcf17f940a90,SESCO,II.1.1,Buenos Aires,AR-B,annual,2022,naphtha combustion consumption by public passenger transport,0.12061279999999999,TJ,CH4,3.0,kg/TJ,0.3618384,kg +a6038dab-bfb9-3e45-8218-d2bfec244925,SESCO,II.1.1,Buenos Aires,AR-B,annual,2022,naphtha combustion consumption by public passenger transport,0.12061279999999999,TJ,N2O,0.6,kg/TJ,0.07236767999999999,kg +8001233c-adbe-338e-af56-0b187f50336e,SESCO,II.1.1,Capital Federal,AR-C,annual,2022,naphtha combustion consumption by public passenger transport,0.0904596,TJ,CO2,73300.0,kg/TJ,6630.68868,kg +314566b2-0d5b-3c06-a238-3da0f4d9b457,SESCO,II.1.1,Capital Federal,AR-C,annual,2022,naphtha combustion consumption by public passenger transport,0.0904596,TJ,CH4,3.0,kg/TJ,0.27137880000000003,kg +719addba-476b-3132-9278-13ee3f422dde,SESCO,II.1.1,Capital Federal,AR-C,annual,2022,naphtha combustion consumption by public passenger transport,0.0904596,TJ,N2O,0.6,kg/TJ,0.05427576,kg +cde4ffc9-988b-3f8e-b3a9-0f012c953627,SESCO,II.1.1,Entre Rios,AR-E,annual,2022,naphtha combustion consumption by public passenger transport,0.2713788,TJ,CO2,73300.0,kg/TJ,19892.066039999998,kg +36b4fa6a-3a72-3000-9318-a5715dcb7369,SESCO,II.1.1,Entre Rios,AR-E,annual,2022,naphtha combustion consumption by public passenger transport,0.2713788,TJ,CH4,3.0,kg/TJ,0.8141364,kg +d89bdfbe-3057-3be0-8f7b-613c7b8fcb0d,SESCO,II.1.1,Entre Rios,AR-E,annual,2022,naphtha combustion consumption by public passenger transport,0.2713788,TJ,N2O,0.6,kg/TJ,0.16282728,kg +d6e32212-2b2c-3aeb-91b7-60b1e7341f3a,SESCO,II.1.1,Santa Fe,AR-S,annual,2022,naphtha combustion consumption by public passenger transport,0.301532,TJ,CO2,73300.0,kg/TJ,22102.2956,kg +05915c49-b952-3f33-b550-81e0aebe1768,SESCO,II.1.1,Santa Fe,AR-S,annual,2022,naphtha combustion consumption by public passenger transport,0.301532,TJ,CH4,3.0,kg/TJ,0.9045960000000001,kg +7707b8b9-e1af-3059-9d6a-155ff8347d11,SESCO,II.1.1,Santa Fe,AR-S,annual,2022,naphtha combustion consumption by public passenger transport,0.301532,TJ,N2O,0.6,kg/TJ,0.1809192,kg +abc1c843-1370-302a-b465-a1dae82fd9bf,SESCO,II.1.1,Buenos Aires,AR-B,annual,2022,naphtha combustion consumption by public passenger transport,0.12061279999999999,TJ,CO2,73300.0,kg/TJ,8840.918239999999,kg +bb0f09c1-0533-366f-a0cc-bcf17f940a90,SESCO,II.1.1,Buenos Aires,AR-B,annual,2022,naphtha combustion consumption by public passenger transport,0.12061279999999999,TJ,CH4,3.0,kg/TJ,0.3618384,kg +a6038dab-bfb9-3e45-8218-d2bfec244925,SESCO,II.1.1,Buenos Aires,AR-B,annual,2022,naphtha combustion consumption by public passenger transport,0.12061279999999999,TJ,N2O,0.6,kg/TJ,0.07236767999999999,kg +b3fec18a-36c2-3bf7-aa0d-eee2c6bbba13,SESCO,II.1.1,Capital Federal,AR-C,annual,2022,naphtha combustion consumption by public passenger transport,0.6935236,TJ,CO2,73300.0,kg/TJ,50835.27988,kg +e3984ad5-b216-399d-af82-ea74ad6546e1,SESCO,II.1.1,Capital Federal,AR-C,annual,2022,naphtha combustion consumption by public passenger transport,0.6935236,TJ,CH4,3.0,kg/TJ,2.0805708000000003,kg +35a55b69-c298-389f-b68a-f756c1a8f654,SESCO,II.1.1,Capital Federal,AR-C,annual,2022,naphtha combustion consumption by public passenger transport,0.6935236,TJ,N2O,0.6,kg/TJ,0.41611416,kg +02e00362-71f3-3035-b7ed-2bead696d314,SESCO,II.1.1,Córdoba,AR-X,annual,2022,naphtha combustion consumption by public passenger transport,0.060306399999999996,TJ,CO2,73300.0,kg/TJ,4420.4591199999995,kg +1005c945-17c4-3948-aa1f-54d0a13e8887,SESCO,II.1.1,Córdoba,AR-X,annual,2022,naphtha combustion consumption by public passenger transport,0.060306399999999996,TJ,CH4,3.0,kg/TJ,0.1809192,kg +eeb38ad3-4683-3da9-8af3-402a35b34146,SESCO,II.1.1,Córdoba,AR-X,annual,2022,naphtha combustion consumption by public passenger transport,0.060306399999999996,TJ,N2O,0.6,kg/TJ,0.036183839999999995,kg +4669687f-0508-35c4-8884-6cf0293ae453,SESCO,II.1.1,Entre Rios,AR-E,annual,2022,naphtha combustion consumption by public passenger transport,0.5126044,TJ,CO2,73300.0,kg/TJ,37573.902519999996,kg +06f4f46a-bc2d-3f71-ba93-7598f919817d,SESCO,II.1.1,Entre Rios,AR-E,annual,2022,naphtha combustion consumption by public passenger transport,0.5126044,TJ,CH4,3.0,kg/TJ,1.5378132,kg +187f1071-08c7-3b68-aeb7-0d1d88ebdab8,SESCO,II.1.1,Entre Rios,AR-E,annual,2022,naphtha combustion consumption by public passenger transport,0.5126044,TJ,N2O,0.6,kg/TJ,0.30756263999999994,kg +0d9ee603-f77e-33c0-9d2d-f7d2424659d8,SESCO,II.1.1,Catamarca,AR-K,annual,2022,naphtha combustion consumption by to the public,97.76119738,TJ,CO2,73300.0,kg/TJ,7165895.767954,kg +31d26241-c432-3b53-94fa-80e86df13cac,SESCO,II.1.1,Catamarca,AR-K,annual,2022,naphtha combustion consumption by to the public,97.76119738,TJ,CH4,3.0,kg/TJ,293.28359214,kg +b968ef8c-9abe-3129-a26e-26fa08e609a2,SESCO,II.1.1,Catamarca,AR-K,annual,2022,naphtha combustion consumption by to the public,97.76119738,TJ,N2O,0.6,kg/TJ,58.656718428,kg +c4c3b15d-59b3-3690-b1df-63b3d86249e1,SESCO,II.1.1,Chaco,AR-H,annual,2022,naphtha combustion consumption by to the public,77.09841554799999,TJ,CO2,73300.0,kg/TJ,5651313.859668399,kg +1533657d-3ef6-30a5-908b-b2d9fafd2d6c,SESCO,II.1.1,Chaco,AR-H,annual,2022,naphtha combustion consumption by to the public,77.09841554799999,TJ,CH4,3.0,kg/TJ,231.29524664399997,kg +5812ab1b-ae99-3019-bd51-64c770f422b7,SESCO,II.1.1,Chaco,AR-H,annual,2022,naphtha combustion consumption by to the public,77.09841554799999,TJ,N2O,0.6,kg/TJ,46.259049328799996,kg +8dca0f03-6e8f-3764-a89a-173c354203d7,SESCO,II.1.1,Jujuy,AR-Y,annual,2022,naphtha combustion consumption by to the public,341.865824916,TJ,CO2,73300.0,kg/TJ,25058764.9663428,kg +b14cc115-9318-3b18-9ad5-465d9d93c4a4,SESCO,II.1.1,Jujuy,AR-Y,annual,2022,naphtha combustion consumption by to the public,341.865824916,TJ,CH4,3.0,kg/TJ,1025.597474748,kg +9f5a027b-0ed7-3c2c-abff-04d436d6a259,SESCO,II.1.1,Jujuy,AR-Y,annual,2022,naphtha combustion consumption by to the public,341.865824916,TJ,N2O,0.6,kg/TJ,205.1194949496,kg +a5866e1b-4815-32ed-a6e5-a8104150dd45,SESCO,II.1.1,La Rioja,AR-F,annual,2022,naphtha combustion consumption by to the public,411.49499129199995,TJ,CO2,73300.0,kg/TJ,30162582.861703597,kg +15e5586e-d938-3a8e-9d12-d3704b9a1d30,SESCO,II.1.1,La Rioja,AR-F,annual,2022,naphtha combustion consumption by to the public,411.49499129199995,TJ,CH4,3.0,kg/TJ,1234.484973876,kg +8343f215-c956-30a3-a0cf-ee20dd450248,SESCO,II.1.1,La Rioja,AR-F,annual,2022,naphtha combustion consumption by to the public,411.49499129199995,TJ,N2O,0.6,kg/TJ,246.89699477519997,kg +79195769-3a8d-3526-a1b8-02464c38f229,SESCO,II.1.1,Salta,AR-A,annual,2022,naphtha combustion consumption by to the public,1052.365374984,TJ,CO2,73300.0,kg/TJ,77138381.9863272,kg +4f69951a-a964-37b3-a9ce-40c3ff5f47f8,SESCO,II.1.1,Salta,AR-A,annual,2022,naphtha combustion consumption by to the public,1052.365374984,TJ,CH4,3.0,kg/TJ,3157.096124952,kg +41ff51a8-dd35-3c0a-95d7-2cb21b35293a,SESCO,II.1.1,Salta,AR-A,annual,2022,naphtha combustion consumption by to the public,1052.365374984,TJ,N2O,0.6,kg/TJ,631.4192249904,kg +a51f57db-2884-3019-8cb2-68fa769db851,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2022,naphtha combustion consumption by to the public,281.798539792,TJ,CO2,73300.0,kg/TJ,20655832.9667536,kg +25fb78e7-92c7-3fb5-96b6-0bceae9d0400,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2022,naphtha combustion consumption by to the public,281.798539792,TJ,CH4,3.0,kg/TJ,845.395619376,kg +66fbbba0-d8c0-36b1-af82-65d0ad52b8c3,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2022,naphtha combustion consumption by to the public,281.798539792,TJ,N2O,0.6,kg/TJ,169.0791238752,kg +3d493986-aa0d-342c-8968-097688176e86,SESCO,II.1.1,Tucuman,AR-T,annual,2022,naphtha combustion consumption by to the public,1836.0455353239997,TJ,CO2,73300.0,kg/TJ,134582137.73924917,kg +75e58b81-82fd-3a9f-963c-70f3cb39516b,SESCO,II.1.1,Tucuman,AR-T,annual,2022,naphtha combustion consumption by to the public,1836.0455353239997,TJ,CH4,3.0,kg/TJ,5508.136605971999,kg +32f092ac-3bd2-3857-9da4-87b3af0105eb,SESCO,II.1.1,Tucuman,AR-T,annual,2022,naphtha combustion consumption by to the public,1836.0455353239997,TJ,N2O,0.6,kg/TJ,1101.6273211943999,kg +8d1be65f-ed93-38e5-b77a-311c3c239957,SESCO,II.1.1,Catamarca,AR-K,annual,2022,naphtha combustion consumption by to the public,13.417872467999999,TJ,CO2,73300.0,kg/TJ,983530.0519043999,kg +4644cd64-cfc8-3275-ae05-0cc071777987,SESCO,II.1.1,Catamarca,AR-K,annual,2022,naphtha combustion consumption by to the public,13.417872467999999,TJ,CH4,3.0,kg/TJ,40.253617403999996,kg +e4184c72-351f-367e-9aa5-dcd145f145f9,SESCO,II.1.1,Catamarca,AR-K,annual,2022,naphtha combustion consumption by to the public,13.417872467999999,TJ,N2O,0.6,kg/TJ,8.050723480799999,kg +2ff41070-5c1b-3a39-a29d-27fe1c8f8135,SESCO,II.1.1,Chaco,AR-H,annual,2022,naphtha combustion consumption by to the public,3.0153199999999996,TJ,CO2,73300.0,kg/TJ,221022.95599999998,kg +e6b2c767-683f-36c6-8101-7249fc439232,SESCO,II.1.1,Chaco,AR-H,annual,2022,naphtha combustion consumption by to the public,3.0153199999999996,TJ,CH4,3.0,kg/TJ,9.04596,kg +4fb7fbea-86eb-385e-b095-9ab8b1e5417e,SESCO,II.1.1,Chaco,AR-H,annual,2022,naphtha combustion consumption by to the public,3.0153199999999996,TJ,N2O,0.6,kg/TJ,1.8091919999999997,kg +f7fb0508-870d-34fa-b663-5c36029d2ef3,SESCO,II.1.1,Jujuy,AR-Y,annual,2022,naphtha combustion consumption by to the public,22.917035063999997,TJ,CO2,73300.0,kg/TJ,1679818.6701911998,kg +e4c15869-682c-307d-ad40-8fa1581851aa,SESCO,II.1.1,Jujuy,AR-Y,annual,2022,naphtha combustion consumption by to the public,22.917035063999997,TJ,CH4,3.0,kg/TJ,68.75110519199998,kg +83a331fd-f6ff-34f8-a0fe-101db701ffce,SESCO,II.1.1,Jujuy,AR-Y,annual,2022,naphtha combustion consumption by to the public,22.917035063999997,TJ,N2O,0.6,kg/TJ,13.750221038399998,kg +f32f759f-4ba0-3326-a539-66edd8b1974a,SESCO,II.1.1,La Rioja,AR-F,annual,2022,naphtha combustion consumption by to the public,73.089246076,TJ,CO2,73300.0,kg/TJ,5357441.737370799,kg +bf6ef3f0-64da-3900-9736-66497dae41c0,SESCO,II.1.1,La Rioja,AR-F,annual,2022,naphtha combustion consumption by to the public,73.089246076,TJ,CH4,3.0,kg/TJ,219.26773822799998,kg +002dca67-0493-39b9-8889-af9fa892e99c,SESCO,II.1.1,La Rioja,AR-F,annual,2022,naphtha combustion consumption by to the public,73.089246076,TJ,N2O,0.6,kg/TJ,43.853547645599996,kg +44ae3f5b-dec1-3572-8636-9f7c66be17cf,SESCO,II.1.1,Salta,AR-A,annual,2022,naphtha combustion consumption by to the public,93.11458926,TJ,CO2,73300.0,kg/TJ,6825299.392758001,kg +d4e3db5a-a585-35bb-b7da-f8db3f177942,SESCO,II.1.1,Salta,AR-A,annual,2022,naphtha combustion consumption by to the public,93.11458926,TJ,CH4,3.0,kg/TJ,279.34376778,kg +5d0b1445-79af-3474-8061-8063091f3690,SESCO,II.1.1,Salta,AR-A,annual,2022,naphtha combustion consumption by to the public,93.11458926,TJ,N2O,0.6,kg/TJ,55.868753556,kg +c2129eaa-f3bc-32e2-af4a-354079135a4a,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2022,naphtha combustion consumption by to the public,39.59265925999999,TJ,CO2,73300.0,kg/TJ,2902141.923757999,kg +4816eda7-1105-3125-8554-56919bd0bdcb,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2022,naphtha combustion consumption by to the public,39.59265925999999,TJ,CH4,3.0,kg/TJ,118.77797777999997,kg +85f62d1b-8349-3284-ace2-8acb486045f4,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2022,naphtha combustion consumption by to the public,39.59265925999999,TJ,N2O,0.6,kg/TJ,23.755595555999992,kg +d8a34494-b585-3550-9bae-83dd2cd01c1f,SESCO,II.1.1,Tucuman,AR-T,annual,2022,naphtha combustion consumption by to the public,198.307947376,TJ,CO2,73300.0,kg/TJ,14535972.542660799,kg +7b6811fd-c451-3010-b7db-52c50dc5a579,SESCO,II.1.1,Tucuman,AR-T,annual,2022,naphtha combustion consumption by to the public,198.307947376,TJ,CH4,3.0,kg/TJ,594.9238421279999,kg +7a48e08c-0828-3175-98b8-81c37304f5c3,SESCO,II.1.1,Tucuman,AR-T,annual,2022,naphtha combustion consumption by to the public,198.307947376,TJ,N2O,0.6,kg/TJ,118.98476842559998,kg +336665fd-3148-3be8-9721-7440adfcea08,SESCO,II.5.1,Entre Rios,AR-E,annual,2022,naphtha combustion consumption by agriculture machines,1.7488855999999997,TJ,CO2,73300.0,kg/TJ,128193.31447999997,kg +ee4e3168-66e4-3f68-b04e-fcd57fffe03d,SESCO,II.5.1,Entre Rios,AR-E,annual,2022,naphtha combustion consumption by agriculture machines,1.7488855999999997,TJ,CH4,3.0,kg/TJ,5.246656799999999,kg +200c4514-d36b-305d-91f9-15e5abcd357e,SESCO,II.5.1,Entre Rios,AR-E,annual,2022,naphtha combustion consumption by agriculture machines,1.7488855999999997,TJ,N2O,0.6,kg/TJ,1.0493313599999998,kg +1148cfe9-8b0a-3947-9775-bbdf4e388940,SESCO,II.5.1,Entre Rios,AR-E,annual,2022,naphtha combustion consumption by agriculture machines,0.150766,TJ,CO2,73300.0,kg/TJ,11051.1478,kg +c273563d-4628-36e6-a5aa-360ed509e252,SESCO,II.5.1,Entre Rios,AR-E,annual,2022,naphtha combustion consumption by agriculture machines,0.150766,TJ,CH4,3.0,kg/TJ,0.45229800000000003,kg +a7d57f57-3380-34f1-85b6-771a69aa0df1,SESCO,II.5.1,Entre Rios,AR-E,annual,2022,naphtha combustion consumption by agriculture machines,0.150766,TJ,N2O,0.6,kg/TJ,0.0904596,kg +e98aa4c8-4162-3d6f-9003-bfb17f69a332,SESCO,II.5.1,Santa Fe,AR-S,annual,2022,naphtha combustion consumption by agriculture machines,2.8645539999999996,TJ,CO2,73300.0,kg/TJ,209971.80819999997,kg +825550bf-5542-3a40-b017-903eca7ad96b,SESCO,II.5.1,Santa Fe,AR-S,annual,2022,naphtha combustion consumption by agriculture machines,2.8645539999999996,TJ,CH4,3.0,kg/TJ,8.593661999999998,kg +b0184273-06a4-3ab9-beb3-08ea80274a28,SESCO,II.5.1,Santa Fe,AR-S,annual,2022,naphtha combustion consumption by agriculture machines,2.8645539999999996,TJ,N2O,0.6,kg/TJ,1.7187323999999997,kg +789fa222-392b-3102-a5a2-d177679ee711,SESCO,II.5.1,Santa Fe,AR-S,annual,2022,naphtha combustion consumption by agriculture machines,1.2965876,TJ,CO2,73300.0,kg/TJ,95039.87108000001,kg +85302281-adcc-360e-81a5-8b4bfc6d8c65,SESCO,II.5.1,Santa Fe,AR-S,annual,2022,naphtha combustion consumption by agriculture machines,1.2965876,TJ,CH4,3.0,kg/TJ,3.8897628,kg +cc5c6987-a7f5-31d7-91c0-e0254084f4f8,SESCO,II.5.1,Santa Fe,AR-S,annual,2022,naphtha combustion consumption by agriculture machines,1.2965876,TJ,N2O,0.6,kg/TJ,0.77795256,kg +aa8037a1-33f5-3059-a5c2-cd9f4065ec67,SESCO,II.5.1,Tucuman,AR-T,annual,2022,naphtha combustion consumption by agriculture machines,0.3618384,TJ,CO2,73300.0,kg/TJ,26522.75472,kg +214a05c8-85f8-31d4-9ec3-6d24149cdecd,SESCO,II.5.1,Tucuman,AR-T,annual,2022,naphtha combustion consumption by agriculture machines,0.3618384,TJ,CH4,3.0,kg/TJ,1.0855152000000001,kg +458ce2d6-fc44-359f-89d9-7381e92a0ba8,SESCO,II.5.1,Tucuman,AR-T,annual,2022,naphtha combustion consumption by agriculture machines,0.3618384,TJ,N2O,0.6,kg/TJ,0.21710304,kg +7e807937-44fe-3e55-bc8e-38601689c823,SESCO,II.1.1,Buenos Aires,AR-B,annual,2022,naphtha combustion consumption by to the public,18694.742774399998,TJ,CO2,73300.0,kg/TJ,1370324645.36352,kg +113eef9b-3128-3bc8-97fa-970d81c567a5,SESCO,II.1.1,Buenos Aires,AR-B,annual,2022,naphtha combustion consumption by to the public,18694.742774399998,TJ,CH4,3.0,kg/TJ,56084.22832319999,kg +b5c5219f-35c8-3775-b10c-81c61227df56,SESCO,II.1.1,Buenos Aires,AR-B,annual,2022,naphtha combustion consumption by to the public,18694.742774399998,TJ,N2O,0.6,kg/TJ,11216.845664639999,kg +0900d97d-db0f-367a-8ed9-5428b781cb74,SESCO,II.1.1,Capital Federal,AR-C,annual,2022,naphtha combustion consumption by to the public,4928.661152799999,TJ,CO2,73300.0,kg/TJ,361270862.50023997,kg +f2cc2d1f-281a-36c2-836c-c2781faa57ad,SESCO,II.1.1,Capital Federal,AR-C,annual,2022,naphtha combustion consumption by to the public,4928.661152799999,TJ,CH4,3.0,kg/TJ,14785.983458399998,kg +0d09ace3-c448-35c5-80c1-6bfaa58e01e4,SESCO,II.1.1,Capital Federal,AR-C,annual,2022,naphtha combustion consumption by to the public,4928.661152799999,TJ,N2O,0.6,kg/TJ,2957.1966916799997,kg +831042cf-b918-3d2e-bdfc-1ada2313a9e2,SESCO,II.1.1,Catamarca,AR-K,annual,2022,naphtha combustion consumption by to the public,126.85451239999999,TJ,CO2,73300.0,kg/TJ,9298435.758919999,kg +c7c28080-a280-3491-9c43-bd8e826588b3,SESCO,II.1.1,Catamarca,AR-K,annual,2022,naphtha combustion consumption by to the public,126.85451239999999,TJ,CH4,3.0,kg/TJ,380.5635372,kg +2d8e2dc7-0217-3c5f-b522-3a3b1a8e37f6,SESCO,II.1.1,Catamarca,AR-K,annual,2022,naphtha combustion consumption by to the public,126.85451239999999,TJ,N2O,0.6,kg/TJ,76.11270744,kg +82b964a1-80f0-354b-b059-39ff36386a5f,SESCO,II.1.1,Chaco,AR-H,annual,2022,naphtha combustion consumption by to the public,1122.3624103999998,TJ,CO2,73300.0,kg/TJ,82269164.68231998,kg +b1524eb4-d8db-3c9e-9e2e-006e900b93bd,SESCO,II.1.1,Chaco,AR-H,annual,2022,naphtha combustion consumption by to the public,1122.3624103999998,TJ,CH4,3.0,kg/TJ,3367.087231199999,kg +a6de00be-541b-3a43-8e90-71b8b7555623,SESCO,II.1.1,Chaco,AR-H,annual,2022,naphtha combustion consumption by to the public,1122.3624103999998,TJ,N2O,0.6,kg/TJ,673.4174462399999,kg +43d847ff-66ce-3f39-b9a9-197380402883,SESCO,II.1.1,Corrientes,AR-W,annual,2022,naphtha combustion consumption by to the public,1240.4724947999998,TJ,CO2,73300.0,kg/TJ,90926633.86884,kg +d24a9f8e-3800-3c0a-9576-fcaeb3cbe079,SESCO,II.1.1,Corrientes,AR-W,annual,2022,naphtha combustion consumption by to the public,1240.4724947999998,TJ,CH4,3.0,kg/TJ,3721.4174843999995,kg +68791be5-15a4-3e82-99d8-05451b3abec6,SESCO,II.1.1,Corrientes,AR-W,annual,2022,naphtha combustion consumption by to the public,1240.4724947999998,TJ,N2O,0.6,kg/TJ,744.2834968799999,kg +324e327c-6f60-362e-86d0-c341d8fa5a9b,SESCO,II.1.1,Córdoba,AR-X,annual,2022,naphtha combustion consumption by to the public,5366.968068,TJ,CO2,73300.0,kg/TJ,393398759.3844,kg +484cfa18-e59d-320a-98e1-94c2b2c2a16e,SESCO,II.1.1,Córdoba,AR-X,annual,2022,naphtha combustion consumption by to the public,5366.968068,TJ,CH4,3.0,kg/TJ,16100.904204,kg +9c498ed9-9bc2-348d-9b31-c1321c9709d9,SESCO,II.1.1,Córdoba,AR-X,annual,2022,naphtha combustion consumption by to the public,5366.968068,TJ,N2O,0.6,kg/TJ,3220.1808408,kg +e97f52e9-4a0b-39af-99fc-716f1d94db54,SESCO,II.1.1,Entre Rios,AR-E,annual,2022,naphtha combustion consumption by to the public,1775.571182,TJ,CO2,73300.0,kg/TJ,130149367.6406,kg +c5ed9478-ae1f-34cf-9218-e79eca56748f,SESCO,II.1.1,Entre Rios,AR-E,annual,2022,naphtha combustion consumption by to the public,1775.571182,TJ,CH4,3.0,kg/TJ,5326.713546,kg +b6d80819-8e88-37e6-8a69-3ba820890d80,SESCO,II.1.1,Entre Rios,AR-E,annual,2022,naphtha combustion consumption by to the public,1775.571182,TJ,N2O,0.6,kg/TJ,1065.3427092,kg +e8b04c93-3e5e-385f-9bf8-57d809880e87,SESCO,II.1.1,Formosa,AR-P,annual,2022,naphtha combustion consumption by to the public,603.1243064,TJ,CO2,73300.0,kg/TJ,44209011.65912,kg +5ab49045-b693-3b4f-90a4-81d57cb78a90,SESCO,II.1.1,Formosa,AR-P,annual,2022,naphtha combustion consumption by to the public,603.1243064,TJ,CH4,3.0,kg/TJ,1809.3729192,kg +d93d78cc-d683-38dc-963a-b83e29167f08,SESCO,II.1.1,Formosa,AR-P,annual,2022,naphtha combustion consumption by to the public,603.1243064,TJ,N2O,0.6,kg/TJ,361.87458384,kg +654d20a1-a30b-3378-859b-1e95d89ba565,SESCO,II.1.1,Jujuy,AR-Y,annual,2022,naphtha combustion consumption by to the public,382.8551804,TJ,CO2,73300.0,kg/TJ,28063284.72332,kg +c7368ccd-e147-3f16-9696-a772e03f1c42,SESCO,II.1.1,Jujuy,AR-Y,annual,2022,naphtha combustion consumption by to the public,382.8551804,TJ,CH4,3.0,kg/TJ,1148.5655412,kg +154d83cd-2336-35f7-aa44-55215f6aaaef,SESCO,II.1.1,Jujuy,AR-Y,annual,2022,naphtha combustion consumption by to the public,382.8551804,TJ,N2O,0.6,kg/TJ,229.71310824,kg +876c2ce8-eaa4-3537-b3d1-51f2e5aae743,SESCO,II.1.1,La Pampa,AR-L,annual,2022,naphtha combustion consumption by to the public,423.74291959999994,TJ,CO2,73300.0,kg/TJ,31060356.006679997,kg +2ff24313-6d4f-3e1f-a86b-946436b65cef,SESCO,II.1.1,La Pampa,AR-L,annual,2022,naphtha combustion consumption by to the public,423.74291959999994,TJ,CH4,3.0,kg/TJ,1271.2287588,kg +f4d126f3-e55f-3330-9c47-4d962da611cd,SESCO,II.1.1,La Pampa,AR-L,annual,2022,naphtha combustion consumption by to the public,423.74291959999994,TJ,N2O,0.6,kg/TJ,254.24575175999996,kg +c094adbd-258c-340e-a36a-1e9ecaa624f5,SESCO,II.1.1,La Rioja,AR-F,annual,2022,naphtha combustion consumption by to the public,312.0554668,TJ,CO2,73300.0,kg/TJ,22873665.71644,kg +18d0e42d-b92d-3ff9-bfee-ad6562534260,SESCO,II.1.1,La Rioja,AR-F,annual,2022,naphtha combustion consumption by to the public,312.0554668,TJ,CH4,3.0,kg/TJ,936.1664003999999,kg +2a5a9186-d6a3-3b87-9dd8-9208e1b9fa0c,SESCO,II.1.1,La Rioja,AR-F,annual,2022,naphtha combustion consumption by to the public,312.0554668,TJ,N2O,0.6,kg/TJ,187.23328008,kg +5445cb88-1f47-35a4-b317-cff51d36f206,SESCO,II.1.1,Mendoza,AR-M,annual,2022,naphtha combustion consumption by to the public,1773.4604579999998,TJ,CO2,73300.0,kg/TJ,129994651.57139999,kg +57ab1412-efbc-3933-976c-a019040c6eaf,SESCO,II.1.1,Mendoza,AR-M,annual,2022,naphtha combustion consumption by to the public,1773.4604579999998,TJ,CH4,3.0,kg/TJ,5320.381374,kg +b213186d-93ed-387c-a148-f1bc92d9589f,SESCO,II.1.1,Mendoza,AR-M,annual,2022,naphtha combustion consumption by to the public,1773.4604579999998,TJ,N2O,0.6,kg/TJ,1064.0762747999997,kg +78362784-1dcd-3dee-8c7b-e97a60ba7f6b,SESCO,II.1.1,Misiones,AR-N,annual,2022,naphtha combustion consumption by to the public,2269.7519767999997,TJ,CO2,73300.0,kg/TJ,166372819.89944,kg +86589f63-e44f-3bfb-94e6-a7dabb657f71,SESCO,II.1.1,Misiones,AR-N,annual,2022,naphtha combustion consumption by to the public,2269.7519767999997,TJ,CH4,3.0,kg/TJ,6809.255930399999,kg +497ef604-4eb8-392c-9df8-190fff0779eb,SESCO,II.1.1,Misiones,AR-N,annual,2022,naphtha combustion consumption by to the public,2269.7519767999997,TJ,N2O,0.6,kg/TJ,1361.8511860799997,kg +f0c12169-9d97-3712-84e8-f129d420298a,SESCO,II.1.1,Neuquén,AR-Q,annual,2022,naphtha combustion consumption by to the public,693.6140595999999,TJ,CO2,73300.0,kg/TJ,50841910.568679996,kg +7d2c735b-889d-391a-987b-3aaa508f1886,SESCO,II.1.1,Neuquén,AR-Q,annual,2022,naphtha combustion consumption by to the public,693.6140595999999,TJ,CH4,3.0,kg/TJ,2080.8421787999996,kg +bb11f079-ab4f-3b3c-aeb8-2557664f4187,SESCO,II.1.1,Neuquén,AR-Q,annual,2022,naphtha combustion consumption by to the public,693.6140595999999,TJ,N2O,0.6,kg/TJ,416.1684357599999,kg +4a38fe79-0ffb-3fa6-bbd3-8f0aa4ea29ea,SESCO,II.1.1,Rio Negro,AR-R,annual,2022,naphtha combustion consumption by to the public,361.17502959999996,TJ,CO2,73300.0,kg/TJ,26474129.669679996,kg +aa7dba80-477b-325e-b6e5-c4453b12c0a1,SESCO,II.1.1,Rio Negro,AR-R,annual,2022,naphtha combustion consumption by to the public,361.17502959999996,TJ,CH4,3.0,kg/TJ,1083.5250887999998,kg +7a23d3c1-ba1a-30ed-aec7-6dc4c188aaf3,SESCO,II.1.1,Rio Negro,AR-R,annual,2022,naphtha combustion consumption by to the public,361.17502959999996,TJ,N2O,0.6,kg/TJ,216.70501775999998,kg +637e1a8a-85d2-36e7-8630-a03af5f97a37,SESCO,II.1.1,Salta,AR-A,annual,2022,naphtha combustion consumption by to the public,347.3950171999999,TJ,CO2,73300.0,kg/TJ,25464054.760759994,kg +bb2ec0c8-6ac3-3477-8e35-145dc7954eac,SESCO,II.1.1,Salta,AR-A,annual,2022,naphtha combustion consumption by to the public,347.3950171999999,TJ,CH4,3.0,kg/TJ,1042.1850515999997,kg +5d5271d6-b2d5-317d-8ad0-47bde37dec67,SESCO,II.1.1,Salta,AR-A,annual,2022,naphtha combustion consumption by to the public,347.3950171999999,TJ,N2O,0.6,kg/TJ,208.43701031999996,kg +7b297eda-3f83-3814-8ac6-a4e636836e60,SESCO,II.1.1,San Juan,AR-J,annual,2022,naphtha combustion consumption by to the public,384.0311552,TJ,CO2,73300.0,kg/TJ,28149483.67616,kg +86692ba5-0f04-34e1-b55e-8a8da57f0836,SESCO,II.1.1,San Juan,AR-J,annual,2022,naphtha combustion consumption by to the public,384.0311552,TJ,CH4,3.0,kg/TJ,1152.0934656,kg +9fb353f3-d6f1-36c8-9a22-7a9917772ad4,SESCO,II.1.1,San Juan,AR-J,annual,2022,naphtha combustion consumption by to the public,384.0311552,TJ,N2O,0.6,kg/TJ,230.41869312,kg +dc22d5b4-5e91-3c38-b05b-52330a5789e7,SESCO,II.1.1,San Luis,AR-D,annual,2022,naphtha combustion consumption by to the public,387.83045839999994,TJ,CO2,73300.0,kg/TJ,28427972.600719996,kg +c2f5f062-9652-38b9-8e43-7b655c60197e,SESCO,II.1.1,San Luis,AR-D,annual,2022,naphtha combustion consumption by to the public,387.83045839999994,TJ,CH4,3.0,kg/TJ,1163.4913751999998,kg +26b6f853-d5d8-3bd3-b04f-1844d417633d,SESCO,II.1.1,San Luis,AR-D,annual,2022,naphtha combustion consumption by to the public,387.83045839999994,TJ,N2O,0.6,kg/TJ,232.69827503999994,kg +cedd3735-5469-3bad-8862-c31c444b880a,SESCO,II.1.1,Santa Fe,AR-S,annual,2022,naphtha combustion consumption by to the public,3756.0635111999995,TJ,CO2,73300.0,kg/TJ,275319455.37095994,kg +d8d63113-7bfd-3770-914f-ae2e9aa9811e,SESCO,II.1.1,Santa Fe,AR-S,annual,2022,naphtha combustion consumption by to the public,3756.0635111999995,TJ,CH4,3.0,kg/TJ,11268.190533599998,kg +e61a779e-2e28-3db7-86b2-e3a1401590d5,SESCO,II.1.1,Santa Fe,AR-S,annual,2022,naphtha combustion consumption by to the public,3756.0635111999995,TJ,N2O,0.6,kg/TJ,2253.6381067199995,kg +42035116-bebd-38e5-a95b-5b665a2ef39d,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2022,naphtha combustion consumption by to the public,685.4123891999999,TJ,CO2,73300.0,kg/TJ,50240728.128359996,kg +17c01bff-f887-3a45-a2a0-43bcf51354a6,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2022,naphtha combustion consumption by to the public,685.4123891999999,TJ,CH4,3.0,kg/TJ,2056.2371676,kg +9eab14d7-d1b2-3cac-a48d-b92a8b0b955d,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2022,naphtha combustion consumption by to the public,685.4123891999999,TJ,N2O,0.6,kg/TJ,411.2474335199999,kg +8faa3f9b-d784-3f2e-831b-5997d47f9bfa,SESCO,II.1.1,Tucuman,AR-T,annual,2022,naphtha combustion consumption by to the public,1282.7472811999999,TJ,CO2,73300.0,kg/TJ,94025375.71195999,kg +3f16e0ca-9f27-354a-ae7d-5f178ec951f7,SESCO,II.1.1,Tucuman,AR-T,annual,2022,naphtha combustion consumption by to the public,1282.7472811999999,TJ,CH4,3.0,kg/TJ,3848.2418436,kg +2bd30b83-dfac-3b42-a9e8-83c61f8e1e7e,SESCO,II.1.1,Tucuman,AR-T,annual,2022,naphtha combustion consumption by to the public,1282.7472811999999,TJ,N2O,0.6,kg/TJ,769.6483687199999,kg +56351683-a277-359e-ab92-9352a23eb521,SESCO,II.1.1,Buenos Aires,AR-B,annual,2022,naphtha combustion consumption by to the public,9255.404127199998,TJ,CO2,73300.0,kg/TJ,678421122.5237598,kg +a1257e5f-1339-30d0-8d0c-47c9c05de5aa,SESCO,II.1.1,Buenos Aires,AR-B,annual,2022,naphtha combustion consumption by to the public,9255.404127199998,TJ,CH4,3.0,kg/TJ,27766.212381599995,kg +a0d46946-f0e7-3a75-8410-3378cc0cd3ff,SESCO,II.1.1,Buenos Aires,AR-B,annual,2022,naphtha combustion consumption by to the public,9255.404127199998,TJ,N2O,0.6,kg/TJ,5553.242476319999,kg +27a7b4e1-beb6-3c2c-a9cb-20f2e0666893,SESCO,II.1.1,Capital Federal,AR-C,annual,2022,naphtha combustion consumption by to the public,3623.2989715999997,TJ,CO2,73300.0,kg/TJ,265587814.61828,kg +f296938d-9ad5-38c3-b56a-3adf5620d75b,SESCO,II.1.1,Capital Federal,AR-C,annual,2022,naphtha combustion consumption by to the public,3623.2989715999997,TJ,CH4,3.0,kg/TJ,10869.8969148,kg +d3262dbb-764b-3d28-8079-9e69782d4429,SESCO,II.1.1,Capital Federal,AR-C,annual,2022,naphtha combustion consumption by to the public,3623.2989715999997,TJ,N2O,0.6,kg/TJ,2173.97938296,kg +23a02556-0c50-3b72-9015-829ffeca4fa6,SESCO,II.1.1,Catamarca,AR-K,annual,2022,naphtha combustion consumption by to the public,47.46113679999999,TJ,CO2,73300.0,kg/TJ,3478901.327439999,kg +0d8acdb7-1a3b-3109-b567-4baa32784d99,SESCO,II.1.1,Catamarca,AR-K,annual,2022,naphtha combustion consumption by to the public,47.46113679999999,TJ,CH4,3.0,kg/TJ,142.38341039999997,kg +1d450857-2ad6-3d4d-8bce-107fc46ffca3,SESCO,II.1.1,Catamarca,AR-K,annual,2022,naphtha combustion consumption by to the public,47.46113679999999,TJ,N2O,0.6,kg/TJ,28.476682079999993,kg +decb0a15-49c6-3647-a139-ac99ccd90ea6,SESCO,II.1.1,Chaco,AR-H,annual,2022,naphtha combustion consumption by to the public,333.5245452,TJ,CO2,73300.0,kg/TJ,24447349.16316,kg +3be182cc-3d99-37c1-a582-2405677adc1d,SESCO,II.1.1,Chaco,AR-H,annual,2022,naphtha combustion consumption by to the public,333.5245452,TJ,CH4,3.0,kg/TJ,1000.5736356,kg +743f921e-ae44-344c-8947-2846ecc7ca6a,SESCO,II.1.1,Chaco,AR-H,annual,2022,naphtha combustion consumption by to the public,333.5245452,TJ,N2O,0.6,kg/TJ,200.11472711999997,kg +3547dcdd-22be-33cf-9398-c7d36bd56674,SESCO,II.1.1,Corrientes,AR-W,annual,2022,naphtha combustion consumption by to the public,404.655944,TJ,CO2,73300.0,kg/TJ,29661280.6952,kg +ccee2658-a9f5-36c8-9169-1db1a1d0c4d5,SESCO,II.1.1,Corrientes,AR-W,annual,2022,naphtha combustion consumption by to the public,404.655944,TJ,CH4,3.0,kg/TJ,1213.9678319999998,kg +c75a6bfb-48d2-3a0f-bb9f-6b259288be8b,SESCO,II.1.1,Corrientes,AR-W,annual,2022,naphtha combustion consumption by to the public,404.655944,TJ,N2O,0.6,kg/TJ,242.79356639999997,kg +9d731054-67e7-32a2-a794-86f550ee0903,SESCO,II.1.1,Córdoba,AR-X,annual,2022,naphtha combustion consumption by to the public,2022.7972687999998,TJ,CO2,73300.0,kg/TJ,148271039.80303997,kg +72088d3a-982b-38c7-aee2-1a7a61944a10,SESCO,II.1.1,Córdoba,AR-X,annual,2022,naphtha combustion consumption by to the public,2022.7972687999998,TJ,CH4,3.0,kg/TJ,6068.391806399999,kg +d20b2543-aab9-30cb-8f89-829161b7e6ea,SESCO,II.1.1,Córdoba,AR-X,annual,2022,naphtha combustion consumption by to the public,2022.7972687999998,TJ,N2O,0.6,kg/TJ,1213.6783612799998,kg +152d0486-00b9-3679-9631-aaa81c959924,SESCO,II.1.1,Entre Rios,AR-E,annual,2022,naphtha combustion consumption by to the public,601.4658804,TJ,CO2,73300.0,kg/TJ,44087449.033319995,kg +ce3d33a1-4461-3305-bece-82c3a92366f6,SESCO,II.1.1,Entre Rios,AR-E,annual,2022,naphtha combustion consumption by to the public,601.4658804,TJ,CH4,3.0,kg/TJ,1804.3976411999997,kg +6a7098a0-21ea-3dca-8584-1c1c388ac1c2,SESCO,II.1.1,Entre Rios,AR-E,annual,2022,naphtha combustion consumption by to the public,601.4658804,TJ,N2O,0.6,kg/TJ,360.87952823999996,kg +77616e98-352e-3fb0-adec-efdd367d9fe0,SESCO,II.1.1,Formosa,AR-P,annual,2022,naphtha combustion consumption by to the public,174.82825359999998,TJ,CO2,73300.0,kg/TJ,12814910.98888,kg +54c11571-262b-34e1-95b2-163e830ca182,SESCO,II.1.1,Formosa,AR-P,annual,2022,naphtha combustion consumption by to the public,174.82825359999998,TJ,CH4,3.0,kg/TJ,524.4847608,kg +535eb65d-9be0-3884-aae2-145fc188e450,SESCO,II.1.1,Formosa,AR-P,annual,2022,naphtha combustion consumption by to the public,174.82825359999998,TJ,N2O,0.6,kg/TJ,104.89695215999998,kg +9d968d00-293a-354f-894a-331d217908ad,SESCO,II.1.1,Jujuy,AR-Y,annual,2022,naphtha combustion consumption by to the public,96.0077888,TJ,CO2,73300.0,kg/TJ,7037370.91904,kg +06c8cf6a-1bc1-3678-aad7-cf6d9be5f131,SESCO,II.1.1,Jujuy,AR-Y,annual,2022,naphtha combustion consumption by to the public,96.0077888,TJ,CH4,3.0,kg/TJ,288.0233664,kg +fa47df6e-c532-3927-b2c8-adf4819d44f6,SESCO,II.1.1,Jujuy,AR-Y,annual,2022,naphtha combustion consumption by to the public,96.0077888,TJ,N2O,0.6,kg/TJ,57.60467328,kg +26259584-4160-3279-917d-bc1d799b41c3,SESCO,II.1.1,La Pampa,AR-L,annual,2022,naphtha combustion consumption by to the public,207.99677359999998,TJ,CO2,73300.0,kg/TJ,15246163.504879998,kg +9bc56376-b294-32b0-a4c5-e314e4e66a97,SESCO,II.1.1,La Pampa,AR-L,annual,2022,naphtha combustion consumption by to the public,207.99677359999998,TJ,CH4,3.0,kg/TJ,623.9903208,kg +b45b0dee-ef0d-33b5-b31a-9df5c1d9c6f2,SESCO,II.1.1,La Pampa,AR-L,annual,2022,naphtha combustion consumption by to the public,207.99677359999998,TJ,N2O,0.6,kg/TJ,124.79806415999998,kg +8d41c9f0-cc1d-3dd3-99d2-c66512c3a845,SESCO,II.1.1,La Rioja,AR-F,annual,2022,naphtha combustion consumption by to the public,103.87777399999999,TJ,CO2,73300.0,kg/TJ,7614240.834199999,kg +dea38e3f-28de-3bea-b03c-c6158cbe81e0,SESCO,II.1.1,La Rioja,AR-F,annual,2022,naphtha combustion consumption by to the public,103.87777399999999,TJ,CH4,3.0,kg/TJ,311.63332199999996,kg +82cd4a93-0df8-3db6-a0d0-3e4481be1f22,SESCO,II.1.1,La Rioja,AR-F,annual,2022,naphtha combustion consumption by to the public,103.87777399999999,TJ,N2O,0.6,kg/TJ,62.32666439999999,kg +09d9ee67-f456-3689-85cd-ed7328d1cf36,SESCO,II.1.1,Mendoza,AR-M,annual,2022,naphtha combustion consumption by to the public,760.61447,TJ,CO2,73300.0,kg/TJ,55753040.651,kg +ebf9d07c-ea53-303c-ac65-f8730f326039,SESCO,II.1.1,Mendoza,AR-M,annual,2022,naphtha combustion consumption by to the public,760.61447,TJ,CH4,3.0,kg/TJ,2281.84341,kg +cafa9c00-b2aa-35bf-b648-64cde55eb380,SESCO,II.1.1,Mendoza,AR-M,annual,2022,naphtha combustion consumption by to the public,760.61447,TJ,N2O,0.6,kg/TJ,456.368682,kg +a86cd7ec-9954-35e6-a002-b514024db9e4,SESCO,II.1.1,Misiones,AR-N,annual,2022,naphtha combustion consumption by to the public,382.041044,TJ,CO2,73300.0,kg/TJ,28003608.5252,kg +6ccf5ddf-ac37-323c-8522-6e1f5749ae73,SESCO,II.1.1,Misiones,AR-N,annual,2022,naphtha combustion consumption by to the public,382.041044,TJ,CH4,3.0,kg/TJ,1146.123132,kg +0fd7b245-3626-3fa4-8561-af11d7d8bcc9,SESCO,II.1.1,Misiones,AR-N,annual,2022,naphtha combustion consumption by to the public,382.041044,TJ,N2O,0.6,kg/TJ,229.2246264,kg +73394e7e-e20f-3d14-b057-0ce4a0bebbf8,SESCO,II.1.1,Neuquén,AR-Q,annual,2022,naphtha combustion consumption by to the public,341.87698159999997,TJ,CO2,73300.0,kg/TJ,25059582.75128,kg +475f05cc-9ec3-3d17-8507-8c07c7b319f3,SESCO,II.1.1,Neuquén,AR-Q,annual,2022,naphtha combustion consumption by to the public,341.87698159999997,TJ,CH4,3.0,kg/TJ,1025.6309448,kg +d71a780e-0195-3aff-a1a1-06dfa6b2ca52,SESCO,II.1.1,Neuquén,AR-Q,annual,2022,naphtha combustion consumption by to the public,341.87698159999997,TJ,N2O,0.6,kg/TJ,205.12618895999998,kg +9d68f562-c497-3d98-9a65-f52b1219ab7c,SESCO,II.1.1,Rio Negro,AR-R,annual,2022,naphtha combustion consumption by to the public,193.70415679999996,TJ,CO2,73300.0,kg/TJ,14198514.693439998,kg +db75ed51-a1e5-375d-8b4e-7e68d1102a22,SESCO,II.1.1,Rio Negro,AR-R,annual,2022,naphtha combustion consumption by to the public,193.70415679999996,TJ,CH4,3.0,kg/TJ,581.1124703999999,kg +eb6c63e0-e1b4-3c79-b9de-d186589854b5,SESCO,II.1.1,Rio Negro,AR-R,annual,2022,naphtha combustion consumption by to the public,193.70415679999996,TJ,N2O,0.6,kg/TJ,116.22249407999998,kg +a6ebc422-cd76-3061-9bcb-0709070c19fe,SESCO,II.1.1,Salta,AR-A,annual,2022,naphtha combustion consumption by to the public,139.307784,TJ,CO2,73300.0,kg/TJ,10211260.5672,kg +bf4e1d58-cd79-35ce-a70f-f44c19708bfc,SESCO,II.1.1,Salta,AR-A,annual,2022,naphtha combustion consumption by to the public,139.307784,TJ,CH4,3.0,kg/TJ,417.923352,kg +b7564156-cb74-3b8a-8dbb-ccba7518dea4,SESCO,II.1.1,Salta,AR-A,annual,2022,naphtha combustion consumption by to the public,139.307784,TJ,N2O,0.6,kg/TJ,83.5846704,kg +8d9ea3d7-051e-3ec7-bf8e-91361d2c130b,SESCO,II.1.1,San Juan,AR-J,annual,2022,naphtha combustion consumption by to the public,122.06015359999998,TJ,CO2,73300.0,kg/TJ,8947009.258879999,kg +015cea22-1159-3f5c-9ca5-e062782dca12,SESCO,II.1.1,San Juan,AR-J,annual,2022,naphtha combustion consumption by to the public,122.06015359999998,TJ,CH4,3.0,kg/TJ,366.18046079999993,kg +0fb17fd1-a697-35a1-8237-821b3919dd8d,SESCO,II.1.1,San Juan,AR-J,annual,2022,naphtha combustion consumption by to the public,122.06015359999998,TJ,N2O,0.6,kg/TJ,73.23609215999998,kg +fa6bf220-9a07-3665-91c9-26e41361463c,SESCO,II.1.1,San Luis,AR-D,annual,2022,naphtha combustion consumption by to the public,159.359662,TJ,CO2,73300.0,kg/TJ,11681063.224599998,kg +59dfc6b3-a75d-341b-82ef-519efa2ea838,SESCO,II.1.1,San Luis,AR-D,annual,2022,naphtha combustion consumption by to the public,159.359662,TJ,CH4,3.0,kg/TJ,478.078986,kg +0e47ade1-fd57-3a57-9f40-dd01e856329e,SESCO,II.1.1,San Luis,AR-D,annual,2022,naphtha combustion consumption by to the public,159.359662,TJ,N2O,0.6,kg/TJ,95.61579719999999,kg +13d3d3ad-e76b-3d42-a645-81e54ffdecb2,SESCO,II.1.1,Santa Fe,AR-S,annual,2022,naphtha combustion consumption by to the public,1826.3190175999998,TJ,CO2,73300.0,kg/TJ,133869183.99007998,kg +62fd735e-562d-3b38-be57-0363bcdc65d0,SESCO,II.1.1,Santa Fe,AR-S,annual,2022,naphtha combustion consumption by to the public,1826.3190175999998,TJ,CH4,3.0,kg/TJ,5478.9570527999995,kg +a5ade8b1-12f1-324c-b0f8-9c898ee616c6,SESCO,II.1.1,Santa Fe,AR-S,annual,2022,naphtha combustion consumption by to the public,1826.3190175999998,TJ,N2O,0.6,kg/TJ,1095.7914105599998,kg +9e682dd2-57ba-30f8-920f-3010c34331d2,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2022,naphtha combustion consumption by to the public,218.06794239999996,TJ,CO2,73300.0,kg/TJ,15984380.177919997,kg +dd64e783-add7-3f28-8f62-efb43245e7d6,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2022,naphtha combustion consumption by to the public,218.06794239999996,TJ,CH4,3.0,kg/TJ,654.2038271999999,kg +e2e7bdde-4eca-39dc-8087-b75d8f534fda,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2022,naphtha combustion consumption by to the public,218.06794239999996,TJ,N2O,0.6,kg/TJ,130.84076543999998,kg +9b0adcac-5b77-3b6f-a82e-973bcbacfceb,SESCO,II.1.1,Tucuman,AR-T,annual,2022,naphtha combustion consumption by to the public,309.4924448,TJ,CO2,73300.0,kg/TJ,22685796.20384,kg +6202c30b-24bb-3a4a-b284-ee11527a3eeb,SESCO,II.1.1,Tucuman,AR-T,annual,2022,naphtha combustion consumption by to the public,309.4924448,TJ,CH4,3.0,kg/TJ,928.4773344,kg +8b315eee-070e-3e4d-94a6-f2a318126ad9,SESCO,II.1.1,Tucuman,AR-T,annual,2022,naphtha combustion consumption by to the public,309.4924448,TJ,N2O,0.6,kg/TJ,185.69546688,kg +135ad082-8dfd-32f7-89c0-557c764d5bf0,SESCO,I.3.1,Buenos Aires,AR-B,annual,2022,naphtha combustion consumption by petrochemical industries,37.9628788,TJ,CO2,73300.0,kg/TJ,2782679.0160399997,kg +c1823d87-bfa4-31d7-815f-9f6dc627fcd2,SESCO,I.3.1,Buenos Aires,AR-B,annual,2022,naphtha combustion consumption by petrochemical industries,37.9628788,TJ,CH4,3.0,kg/TJ,113.8886364,kg +e64cc5d8-43c5-32a8-8e8c-2fa309a28d5d,SESCO,I.3.1,Buenos Aires,AR-B,annual,2022,naphtha combustion consumption by petrochemical industries,37.9628788,TJ,N2O,0.6,kg/TJ,22.777727279999997,kg +7b849e21-8f74-36bf-aefa-177ee73b9815,SESCO,I.3.1,Misiones,AR-N,annual,2022,naphtha combustion consumption by petrochemical industries,0.603064,TJ,CO2,73300.0,kg/TJ,44204.5912,kg +d54491e0-6956-3f3d-974a-3c5d1e6fe419,SESCO,I.3.1,Misiones,AR-N,annual,2022,naphtha combustion consumption by petrochemical industries,0.603064,TJ,CH4,3.0,kg/TJ,1.8091920000000001,kg +dda31d18-01e3-32db-9e85-af8f332f1161,SESCO,I.3.1,Misiones,AR-N,annual,2022,naphtha combustion consumption by petrochemical industries,0.603064,TJ,N2O,0.6,kg/TJ,0.3618384,kg +c8e345ba-8615-3d8b-9fd6-efe4d1a12d15,SESCO,I.3.1,Buenos Aires,AR-B,annual,2022,naphtha combustion consumption by petrochemical industries,12.242199199999998,TJ,CO2,73300.0,kg/TJ,897353.2013599998,kg +1aab66b3-2e4d-3f10-83df-b96a26149877,SESCO,I.3.1,Buenos Aires,AR-B,annual,2022,naphtha combustion consumption by petrochemical industries,12.242199199999998,TJ,CH4,3.0,kg/TJ,36.72659759999999,kg +5eb0c0fc-fbbf-3cdf-bc27-ecc9519a84a3,SESCO,I.3.1,Buenos Aires,AR-B,annual,2022,naphtha combustion consumption by petrochemical industries,12.242199199999998,TJ,N2O,0.6,kg/TJ,7.3453195199999985,kg +375ff159-025e-3af2-a4a5-c6e242b240d3,SESCO,I.3.1,Chubut,AR-U,annual,2022,naphtha combustion consumption by petrochemical industries,0.48245119999999997,TJ,CO2,73300.0,kg/TJ,35363.672959999996,kg +e67abd61-2509-3a24-bb35-87403e449f45,SESCO,I.3.1,Chubut,AR-U,annual,2022,naphtha combustion consumption by petrochemical industries,0.48245119999999997,TJ,CH4,3.0,kg/TJ,1.4473536,kg +2eed757a-5eea-3b61-85e5-9d856fbfb415,SESCO,I.3.1,Chubut,AR-U,annual,2022,naphtha combustion consumption by petrochemical industries,0.48245119999999997,TJ,N2O,0.6,kg/TJ,0.28947071999999996,kg +ed165e5c-9257-3bdc-a9c4-ca4802530f7b,SESCO,I.3.1,Córdoba,AR-X,annual,2022,naphtha combustion consumption by petrochemical industries,1.8996515999999997,TJ,CO2,73300.0,kg/TJ,139244.46227999998,kg +0625e44d-8caa-3125-9375-a73216a940a8,SESCO,I.3.1,Córdoba,AR-X,annual,2022,naphtha combustion consumption by petrochemical industries,1.8996515999999997,TJ,CH4,3.0,kg/TJ,5.698954799999999,kg +afbc4e85-6ede-3222-8119-39497120ec9f,SESCO,I.3.1,Córdoba,AR-X,annual,2022,naphtha combustion consumption by petrochemical industries,1.8996515999999997,TJ,N2O,0.6,kg/TJ,1.1397909599999998,kg +2e813675-c154-3335-a2b7-09eddc0e08a0,SESCO,I.3.1,Entre Rios,AR-E,annual,2022,naphtha combustion consumption by petrochemical industries,1.8393452,TJ,CO2,73300.0,kg/TJ,134824.00316,kg +3aecce84-8f4e-3d6b-b278-232d2046082f,SESCO,I.3.1,Entre Rios,AR-E,annual,2022,naphtha combustion consumption by petrochemical industries,1.8393452,TJ,CH4,3.0,kg/TJ,5.518035599999999,kg +b0487f91-5e96-348d-8c80-d9830bb6f138,SESCO,I.3.1,Entre Rios,AR-E,annual,2022,naphtha combustion consumption by petrochemical industries,1.8393452,TJ,N2O,0.6,kg/TJ,1.10360712,kg +b088936f-9b2a-3f86-8daa-4b08965b467a,SESCO,I.3.1,La Pampa,AR-L,annual,2022,naphtha combustion consumption by petrochemical industries,1.1759747999999999,TJ,CO2,73300.0,kg/TJ,86198.95284,kg +e02ba7f0-9f5f-3f9b-83ae-4d3e436a69cc,SESCO,I.3.1,La Pampa,AR-L,annual,2022,naphtha combustion consumption by petrochemical industries,1.1759747999999999,TJ,CH4,3.0,kg/TJ,3.5279244,kg +89d747de-4f27-3338-9299-677894131101,SESCO,I.3.1,La Pampa,AR-L,annual,2022,naphtha combustion consumption by petrochemical industries,1.1759747999999999,TJ,N2O,0.6,kg/TJ,0.7055848799999999,kg +c6097fb8-ace2-32b3-a682-c588c505a7ed,SESCO,I.3.1,Misiones,AR-N,annual,2022,naphtha combustion consumption by petrochemical industries,1.0252088,TJ,CO2,73300.0,kg/TJ,75147.80503999999,kg +26be359f-3f8a-3e43-a5e2-ab53fc4ed1b0,SESCO,I.3.1,Misiones,AR-N,annual,2022,naphtha combustion consumption by petrochemical industries,1.0252088,TJ,CH4,3.0,kg/TJ,3.0756264,kg +14a3871a-a5fb-3807-a3bc-6347fde91429,SESCO,I.3.1,Misiones,AR-N,annual,2022,naphtha combustion consumption by petrochemical industries,1.0252088,TJ,N2O,0.6,kg/TJ,0.6151252799999999,kg +b8bc389c-9b40-3aab-9c52-e7fee5590d3e,SESCO,I.3.1,Neuquén,AR-Q,annual,2022,naphtha combustion consumption by petrochemical industries,1.2965876,TJ,CO2,73300.0,kg/TJ,95039.87108000001,kg +085ff64e-dd65-3fff-ab47-a2c554e9f7ef,SESCO,I.3.1,Neuquén,AR-Q,annual,2022,naphtha combustion consumption by petrochemical industries,1.2965876,TJ,CH4,3.0,kg/TJ,3.8897628,kg +1be9e810-0c84-3fbe-b402-a8a742d9d1bd,SESCO,I.3.1,Neuquén,AR-Q,annual,2022,naphtha combustion consumption by petrochemical industries,1.2965876,TJ,N2O,0.6,kg/TJ,0.77795256,kg +f5346396-6d4f-3c5d-a51c-a917f9799f65,SESCO,I.3.1,Rio Negro,AR-R,annual,2022,naphtha combustion consumption by petrochemical industries,0.5126044,TJ,CO2,73300.0,kg/TJ,37573.902519999996,kg +dd5c7362-b363-367a-8d24-2655dbe7a8ab,SESCO,I.3.1,Rio Negro,AR-R,annual,2022,naphtha combustion consumption by petrochemical industries,0.5126044,TJ,CH4,3.0,kg/TJ,1.5378132,kg +f506b8ba-3f18-3bec-8445-47d74ed1a991,SESCO,I.3.1,Rio Negro,AR-R,annual,2022,naphtha combustion consumption by petrochemical industries,0.5126044,TJ,N2O,0.6,kg/TJ,0.30756263999999994,kg +1060255c-17ef-39ea-8f77-688cd9d86a9b,SESCO,I.3.1,San Juan,AR-J,annual,2022,naphtha combustion consumption by petrochemical industries,1.2664343999999998,TJ,CO2,73300.0,kg/TJ,92829.64151999999,kg +2375f662-e9b2-325a-8a6c-3a1268becbd5,SESCO,I.3.1,San Juan,AR-J,annual,2022,naphtha combustion consumption by petrochemical industries,1.2664343999999998,TJ,CH4,3.0,kg/TJ,3.7993031999999998,kg +cf172429-0370-3175-9570-dbe13991e9ea,SESCO,I.3.1,San Juan,AR-J,annual,2022,naphtha combustion consumption by petrochemical industries,1.2664343999999998,TJ,N2O,0.6,kg/TJ,0.7598606399999999,kg +a69900f5-7473-3ca7-b3d6-846656c4b58c,SESCO,I.3.1,San Luis,AR-D,annual,2022,naphtha combustion consumption by petrochemical industries,0.5729107999999999,TJ,CO2,73300.0,kg/TJ,41994.361639999996,kg +85b9c716-dc0f-312b-85ae-92f5bcf7f811,SESCO,I.3.1,San Luis,AR-D,annual,2022,naphtha combustion consumption by petrochemical industries,0.5729107999999999,TJ,CH4,3.0,kg/TJ,1.7187324,kg +122ac62e-dba9-3de3-8e6c-0096b61ff62d,SESCO,I.3.1,San Luis,AR-D,annual,2022,naphtha combustion consumption by petrochemical industries,0.5729107999999999,TJ,N2O,0.6,kg/TJ,0.34374647999999997,kg +f94fea7d-ad83-321f-bc2a-8af7b7e9da1e,SESCO,I.3.1,Santa Fe,AR-S,annual,2022,naphtha combustion consumption by petrochemical industries,0.7538299999999999,TJ,CO2,73300.0,kg/TJ,55255.738999999994,kg +ea90688d-7ac0-3586-ba10-f95f5cf22579,SESCO,I.3.1,Santa Fe,AR-S,annual,2022,naphtha combustion consumption by petrochemical industries,0.7538299999999999,TJ,CH4,3.0,kg/TJ,2.26149,kg +0a417ebb-870e-30a1-b428-6faba773baff,SESCO,I.3.1,Santa Fe,AR-S,annual,2022,naphtha combustion consumption by petrochemical industries,0.7538299999999999,TJ,N2O,0.6,kg/TJ,0.4522979999999999,kg +fc0b7dbc-c175-30dd-84fa-83cb93691430,SESCO,I.3.1,Santiago del Estero,AR-G,annual,2022,naphtha combustion consumption by petrochemical industries,0.5427576,TJ,CO2,73300.0,kg/TJ,39784.132079999996,kg +6dbaf7d9-e5e2-3045-b89f-1820fb895ed2,SESCO,I.3.1,Santiago del Estero,AR-G,annual,2022,naphtha combustion consumption by petrochemical industries,0.5427576,TJ,CH4,3.0,kg/TJ,1.6282728,kg +3f6b5ada-f96b-369f-8985-12fabd1b39d3,SESCO,I.3.1,Santiago del Estero,AR-G,annual,2022,naphtha combustion consumption by petrochemical industries,0.5427576,TJ,N2O,0.6,kg/TJ,0.32565456,kg +e801f7cd-dbf1-3633-924c-1f68bde66fa3,SESCO,I.3.1,Tucuman,AR-T,annual,2022,naphtha combustion consumption by petrochemical industries,0.33168519999999996,TJ,CO2,73300.0,kg/TJ,24312.525159999997,kg +ab6ed717-95a8-3090-9414-d58af2bf6ff4,SESCO,I.3.1,Tucuman,AR-T,annual,2022,naphtha combustion consumption by petrochemical industries,0.33168519999999996,TJ,CH4,3.0,kg/TJ,0.9950555999999999,kg +3745a3cf-e00a-3bb3-8b6b-4b90d3ff6dcd,SESCO,I.3.1,Tucuman,AR-T,annual,2022,naphtha combustion consumption by petrochemical industries,0.33168519999999996,TJ,N2O,0.6,kg/TJ,0.19901111999999996,kg +d5a75696-2cc6-32c7-b573-3bc20505aac9,SESCO,II.5.1,Buenos Aires,AR-B,annual,2022,naphtha combustion consumption by agriculture machines,23.055016107199997,TJ,CO2,73300.0,kg/TJ,1689932.6806577598,kg +f39975e7-b71f-3617-8882-39dc5f3d3b85,SESCO,II.5.1,Buenos Aires,AR-B,annual,2022,naphtha combustion consumption by agriculture machines,23.055016107199997,TJ,CH4,3.0,kg/TJ,69.16504832159998,kg +eb6a1e34-566b-344e-b3d6-7c878fbb6e99,SESCO,II.5.1,Buenos Aires,AR-B,annual,2022,naphtha combustion consumption by agriculture machines,23.055016107199997,TJ,N2O,0.6,kg/TJ,13.833009664319997,kg +5d0fba4d-9034-3c1b-8406-47242f8d776f,SESCO,II.5.1,Capital Federal,AR-C,annual,2022,naphtha combustion consumption by agriculture machines,5.7276003399999995,TJ,CO2,73300.0,kg/TJ,419833.10492199997,kg +a2a434b6-67e9-36fe-b25f-a9ec589dd691,SESCO,II.5.1,Capital Federal,AR-C,annual,2022,naphtha combustion consumption by agriculture machines,5.7276003399999995,TJ,CH4,3.0,kg/TJ,17.18280102,kg +8742b60a-f7b5-3618-8516-84f98e88d80d,SESCO,II.5.1,Capital Federal,AR-C,annual,2022,naphtha combustion consumption by agriculture machines,5.7276003399999995,TJ,N2O,0.6,kg/TJ,3.4365602039999996,kg +ef71d07b-5697-3b06-8f30-d96222e2d9f5,SESCO,II.5.1,Córdoba,AR-X,annual,2022,naphtha combustion consumption by agriculture machines,14.1042196064,TJ,CO2,73300.0,kg/TJ,1033839.2971491199,kg +85326882-ca81-384d-905f-5b2e41f69061,SESCO,II.5.1,Córdoba,AR-X,annual,2022,naphtha combustion consumption by agriculture machines,14.1042196064,TJ,CH4,3.0,kg/TJ,42.312658819199996,kg +5899e938-c9f4-33d8-80de-207af2ccd57a,SESCO,II.5.1,Córdoba,AR-X,annual,2022,naphtha combustion consumption by agriculture machines,14.1042196064,TJ,N2O,0.6,kg/TJ,8.46253176384,kg +5124ae03-51c9-3a49-9bca-354bc40e6a31,SESCO,II.5.1,Santa Fe,AR-S,annual,2022,naphtha combustion consumption by agriculture machines,91.1280361376,TJ,CO2,73300.0,kg/TJ,6679685.04888608,kg +4b3b7faf-ed26-35fd-8824-8a74ef74cec5,SESCO,II.5.1,Santa Fe,AR-S,annual,2022,naphtha combustion consumption by agriculture machines,91.1280361376,TJ,CH4,3.0,kg/TJ,273.3841084128,kg +3e957964-210b-37f2-991a-30810ae87122,SESCO,II.5.1,Santa Fe,AR-S,annual,2022,naphtha combustion consumption by agriculture machines,91.1280361376,TJ,N2O,0.6,kg/TJ,54.67682168256,kg +f5d6f882-c3b8-3440-b976-8715e0e887cb,SESCO,II.5.1,Buenos Aires,AR-B,annual,2022,naphtha combustion consumption by agriculture machines,8.142962119599998,TJ,CO2,73300.0,kg/TJ,596879.1233666799,kg +8b6072c7-0289-351b-ae54-064cc2d170b4,SESCO,II.5.1,Buenos Aires,AR-B,annual,2022,naphtha combustion consumption by agriculture machines,8.142962119599998,TJ,CH4,3.0,kg/TJ,24.428886358799993,kg +aac2b4f7-7c6d-330b-ac00-f7eb8857e0d2,SESCO,II.5.1,Buenos Aires,AR-B,annual,2022,naphtha combustion consumption by agriculture machines,8.142962119599998,TJ,N2O,0.6,kg/TJ,4.8857772717599985,kg +a80c545d-298b-3754-aae2-2edb32d95c2b,SESCO,II.5.1,Capital Federal,AR-C,annual,2022,naphtha combustion consumption by agriculture machines,1.3810165599999997,TJ,CO2,73300.0,kg/TJ,101228.51384799997,kg +191937da-56c5-351d-81b1-3be7c299daaf,SESCO,II.5.1,Capital Federal,AR-C,annual,2022,naphtha combustion consumption by agriculture machines,1.3810165599999997,TJ,CH4,3.0,kg/TJ,4.143049679999999,kg +4133d577-80cf-3212-866c-85a4b1c35a22,SESCO,II.5.1,Capital Federal,AR-C,annual,2022,naphtha combustion consumption by agriculture machines,1.3810165599999997,TJ,N2O,0.6,kg/TJ,0.8286099359999998,kg +8e9a8f93-0d7d-331c-8d7b-682320a18a21,SESCO,II.5.1,Córdoba,AR-X,annual,2022,naphtha combustion consumption by agriculture machines,2.72735694,TJ,CO2,73300.0,kg/TJ,199915.263702,kg +733170cc-7bae-3be3-bd53-ef9975fece66,SESCO,II.5.1,Córdoba,AR-X,annual,2022,naphtha combustion consumption by agriculture machines,2.72735694,TJ,CH4,3.0,kg/TJ,8.18207082,kg +6ce76d0e-c441-3940-8943-49902c739262,SESCO,II.5.1,Córdoba,AR-X,annual,2022,naphtha combustion consumption by agriculture machines,2.72735694,TJ,N2O,0.6,kg/TJ,1.6364141639999998,kg +37b5cb25-c89c-351c-a681-0f014c26089b,SESCO,II.5.1,Santa Fe,AR-S,annual,2022,naphtha combustion consumption by agriculture machines,12.510442067199998,TJ,CO2,73300.0,kg/TJ,917015.4035257598,kg +e56a40fb-108e-3a7a-aa90-97015cd33956,SESCO,II.5.1,Santa Fe,AR-S,annual,2022,naphtha combustion consumption by agriculture machines,12.510442067199998,TJ,CH4,3.0,kg/TJ,37.531326201599995,kg +33731394-5d17-3dd3-bc52-01cea071e620,SESCO,II.5.1,Santa Fe,AR-S,annual,2022,naphtha combustion consumption by agriculture machines,12.510442067199998,TJ,N2O,0.6,kg/TJ,7.5062652403199985,kg +8aad86d6-2d7d-31a2-b8d2-2ab140aa10a0,SESCO,II.1.1,Buenos Aires,AR-B,annual,2022,naphtha combustion consumption by to the public,5138.162088628799,TJ,CO2,73300.0,kg/TJ,376627281.096491,kg +ef8977c6-f679-384e-a22f-7069c63743e4,SESCO,II.1.1,Buenos Aires,AR-B,annual,2022,naphtha combustion consumption by to the public,5138.162088628799,TJ,CH4,3.0,kg/TJ,15414.486265886397,kg +f0fb1d64-ef04-35ec-a45c-297562ca68c3,SESCO,II.1.1,Buenos Aires,AR-B,annual,2022,naphtha combustion consumption by to the public,5138.162088628799,TJ,N2O,0.6,kg/TJ,3082.8972531772793,kg +24895a5c-bec7-34aa-9e0d-97e73c7b27d5,SESCO,II.1.1,Capital Federal,AR-C,annual,2022,naphtha combustion consumption by to the public,306.7626152976,TJ,CO2,73300.0,kg/TJ,22485699.70131408,kg +9ff55724-8a71-3686-a2f1-fadfc856f673,SESCO,II.1.1,Capital Federal,AR-C,annual,2022,naphtha combustion consumption by to the public,306.7626152976,TJ,CH4,3.0,kg/TJ,920.2878458928001,kg +7a3df32d-7cb7-3b63-af1f-137c9099ee5f,SESCO,II.1.1,Capital Federal,AR-C,annual,2022,naphtha combustion consumption by to the public,306.7626152976,TJ,N2O,0.6,kg/TJ,184.05756917856,kg +8d2028f3-3032-38fd-ad65-abdc55815664,SESCO,II.1.1,Catamarca,AR-K,annual,2022,naphtha combustion consumption by to the public,10.060615179999997,TJ,CO2,73300.0,kg/TJ,737443.0926939998,kg +21d6890b-2d7b-39c4-b87e-2da55df1ff81,SESCO,II.1.1,Catamarca,AR-K,annual,2022,naphtha combustion consumption by to the public,10.060615179999997,TJ,CH4,3.0,kg/TJ,30.18184553999999,kg +c30f6c77-8117-3947-b91a-a2e50dcefec4,SESCO,II.1.1,Catamarca,AR-K,annual,2022,naphtha combustion consumption by to the public,10.060615179999997,TJ,N2O,0.6,kg/TJ,6.036369107999998,kg +65931950-d190-3afa-9a81-19053b23f2b4,SESCO,II.1.1,Chaco,AR-H,annual,2022,naphtha combustion consumption by to the public,76.91360658519999,TJ,CO2,73300.0,kg/TJ,5637767.362695159,kg +6906ad78-d223-3e93-88dd-4bae67a0e73f,SESCO,II.1.1,Chaco,AR-H,annual,2022,naphtha combustion consumption by to the public,76.91360658519999,TJ,CH4,3.0,kg/TJ,230.74081975559994,kg +ed67973e-55fd-3b2d-a01a-702f94eec4a8,SESCO,II.1.1,Chaco,AR-H,annual,2022,naphtha combustion consumption by to the public,76.91360658519999,TJ,N2O,0.6,kg/TJ,46.14816395111999,kg +259acb16-d8b9-36f2-81d1-9fbb0a99163d,SESCO,II.1.1,Chubut,AR-U,annual,2022,naphtha combustion consumption by to the public,316.8265774827999,TJ,CO2,73300.0,kg/TJ,23223388.12948923,kg +11bd0bf2-56f3-300f-b7b0-d197c66131a8,SESCO,II.1.1,Chubut,AR-U,annual,2022,naphtha combustion consumption by to the public,316.8265774827999,TJ,CH4,3.0,kg/TJ,950.4797324483998,kg +ce57c6ea-d5f7-30db-8d20-aff7be04cf9a,SESCO,II.1.1,Chubut,AR-U,annual,2022,naphtha combustion consumption by to the public,316.8265774827999,TJ,N2O,0.6,kg/TJ,190.09594648967993,kg +61f71e68-cea5-316d-9309-c9de33042516,SESCO,II.1.1,Corrientes,AR-W,annual,2022,naphtha combustion consumption by to the public,458.9986742571999,TJ,CO2,73300.0,kg/TJ,33644602.82305276,kg +c534b95e-e0df-3bab-bd48-339ea1e9765c,SESCO,II.1.1,Corrientes,AR-W,annual,2022,naphtha combustion consumption by to the public,458.9986742571999,TJ,CH4,3.0,kg/TJ,1376.9960227715997,kg +4de1d722-4ce9-37d1-8e23-f3094ded6436,SESCO,II.1.1,Corrientes,AR-W,annual,2022,naphtha combustion consumption by to the public,458.9986742571999,TJ,N2O,0.6,kg/TJ,275.39920455431997,kg +c9a2e92b-0043-3ab4-a110-b83093541f8c,SESCO,II.1.1,Córdoba,AR-X,annual,2022,naphtha combustion consumption by to the public,944.0455521728,TJ,CO2,73300.0,kg/TJ,69198538.97426623,kg +ad62e857-3c75-3155-a544-6f41148b7c8c,SESCO,II.1.1,Córdoba,AR-X,annual,2022,naphtha combustion consumption by to the public,944.0455521728,TJ,CH4,3.0,kg/TJ,2832.1366565184,kg +c77fc139-f131-30d9-9d5c-0698e1625cbd,SESCO,II.1.1,Córdoba,AR-X,annual,2022,naphtha combustion consumption by to the public,944.0455521728,TJ,N2O,0.6,kg/TJ,566.4273313036799,kg +dffbdd4e-6a10-345d-b4b8-4af21b28cda9,SESCO,II.1.1,Entre Rios,AR-E,annual,2022,naphtha combustion consumption by to the public,746.0756824752,TJ,CO2,73300.0,kg/TJ,54687347.52543216,kg +213c177e-e97e-373d-84e9-635ec0fa33e9,SESCO,II.1.1,Entre Rios,AR-E,annual,2022,naphtha combustion consumption by to the public,746.0756824752,TJ,CH4,3.0,kg/TJ,2238.2270474256,kg +17c2681f-6918-37a5-ba13-eb6cdca308e9,SESCO,II.1.1,Entre Rios,AR-E,annual,2022,naphtha combustion consumption by to the public,746.0756824752,TJ,N2O,0.6,kg/TJ,447.64540948511996,kg +b5be94fb-bc4e-313d-a829-05b85574d88e,SESCO,II.1.1,Jujuy,AR-Y,annual,2022,naphtha combustion consumption by to the public,49.196001161999995,TJ,CO2,73300.0,kg/TJ,3606066.8851745995,kg +a63c30fa-3100-3069-b197-27bd626d1dd1,SESCO,II.1.1,Jujuy,AR-Y,annual,2022,naphtha combustion consumption by to the public,49.196001161999995,TJ,CH4,3.0,kg/TJ,147.588003486,kg +fadea016-782e-3d76-ba69-2dafe4f044ef,SESCO,II.1.1,Jujuy,AR-Y,annual,2022,naphtha combustion consumption by to the public,49.196001161999995,TJ,N2O,0.6,kg/TJ,29.517600697199995,kg +7cfbad1a-d8cd-3bdc-814d-31d3cb625b05,SESCO,II.1.1,La Pampa,AR-L,annual,2022,naphtha combustion consumption by to the public,439.29217100999995,TJ,CO2,73300.0,kg/TJ,32200116.135032997,kg +fc13984b-af16-3b24-938a-5b5b20ddacd7,SESCO,II.1.1,La Pampa,AR-L,annual,2022,naphtha combustion consumption by to the public,439.29217100999995,TJ,CH4,3.0,kg/TJ,1317.8765130299998,kg +dfd5990f-11a4-3696-a018-9130f15426b0,SESCO,II.1.1,La Pampa,AR-L,annual,2022,naphtha combustion consumption by to the public,439.29217100999995,TJ,N2O,0.6,kg/TJ,263.575302606,kg +1010c248-46e4-3735-8c56-6a2a1dba2d12,SESCO,II.1.1,Mendoza,AR-M,annual,2022,naphtha combustion consumption by to the public,98.1351573664,TJ,CO2,73300.0,kg/TJ,7193307.034957119,kg +b20e0889-96f3-3e7f-b802-7f606faea781,SESCO,II.1.1,Mendoza,AR-M,annual,2022,naphtha combustion consumption by to the public,98.1351573664,TJ,CH4,3.0,kg/TJ,294.4054720992,kg +a51335cf-6e44-39e2-accd-8493ad2f63f7,SESCO,II.1.1,Mendoza,AR-M,annual,2022,naphtha combustion consumption by to the public,98.1351573664,TJ,N2O,0.6,kg/TJ,58.88109441984,kg +7993f895-8551-3026-bbfe-83a5ba2a8c61,SESCO,II.1.1,Neuquén,AR-Q,annual,2022,naphtha combustion consumption by to the public,430.66570232839996,TJ,CO2,73300.0,kg/TJ,31567795.98067172,kg +23959a61-76b1-3bad-9840-1e6a2a1e95af,SESCO,II.1.1,Neuquén,AR-Q,annual,2022,naphtha combustion consumption by to the public,430.66570232839996,TJ,CH4,3.0,kg/TJ,1291.9971069852,kg +fe88062c-be41-3c8c-ba3a-93a2467259ae,SESCO,II.1.1,Neuquén,AR-Q,annual,2022,naphtha combustion consumption by to the public,430.66570232839996,TJ,N2O,0.6,kg/TJ,258.39942139704,kg +ac053bb2-de74-3f30-97d4-7d3541026a42,SESCO,II.1.1,Rio Negro,AR-R,annual,2022,naphtha combustion consumption by to the public,1505.4183809588,TJ,CO2,73300.0,kg/TJ,110347167.32428004,kg +817a8d4c-4f1b-3fbf-b1b8-036854cfc696,SESCO,II.1.1,Rio Negro,AR-R,annual,2022,naphtha combustion consumption by to the public,1505.4183809588,TJ,CH4,3.0,kg/TJ,4516.2551428764,kg +74609b1a-0b8c-333e-9f1b-a77e31873c8c,SESCO,II.1.1,Rio Negro,AR-R,annual,2022,naphtha combustion consumption by to the public,1505.4183809588,TJ,N2O,0.6,kg/TJ,903.25102857528,kg +5f5038c8-eeb8-3b04-b9c6-10427c94cd5c,SESCO,II.1.1,San Juan,AR-J,annual,2022,naphtha combustion consumption by to the public,281.11900727679995,TJ,CO2,73300.0,kg/TJ,20606023.233389437,kg +e0e6754c-cbe5-33a2-bb26-728afb8ebbe0,SESCO,II.1.1,San Juan,AR-J,annual,2022,naphtha combustion consumption by to the public,281.11900727679995,TJ,CH4,3.0,kg/TJ,843.3570218303998,kg +50d6e370-f5df-3d49-bf1f-f0b4d627217c,SESCO,II.1.1,San Juan,AR-J,annual,2022,naphtha combustion consumption by to the public,281.11900727679995,TJ,N2O,0.6,kg/TJ,168.67140436607997,kg +244dc899-084f-37ee-9cfb-f65aad6d4f0d,SESCO,II.1.1,San Luis,AR-D,annual,2022,naphtha combustion consumption by to the public,90.48070723999999,TJ,CO2,73300.0,kg/TJ,6632235.840691999,kg +69dc3bcb-607f-3427-a54d-bffe04ae3eb7,SESCO,II.1.1,San Luis,AR-D,annual,2022,naphtha combustion consumption by to the public,90.48070723999999,TJ,CH4,3.0,kg/TJ,271.44212171999993,kg +37d88cad-b9e1-3b41-bdf7-74e3ac511119,SESCO,II.1.1,San Luis,AR-D,annual,2022,naphtha combustion consumption by to the public,90.48070723999999,TJ,N2O,0.6,kg/TJ,54.28842434399999,kg +a2335250-d5f3-360d-bd01-d5f19b91e0c6,SESCO,II.1.1,Santa Fe,AR-S,annual,2022,naphtha combustion consumption by to the public,1213.2051671124,TJ,CO2,73300.0,kg/TJ,88927938.74933892,kg +27f948c5-d06a-372b-96a8-8c7f276354ba,SESCO,II.1.1,Santa Fe,AR-S,annual,2022,naphtha combustion consumption by to the public,1213.2051671124,TJ,CH4,3.0,kg/TJ,3639.6155013372,kg +32839522-126a-394b-807e-ab4487399b37,SESCO,II.1.1,Santa Fe,AR-S,annual,2022,naphtha combustion consumption by to the public,1213.2051671124,TJ,N2O,0.6,kg/TJ,727.92310026744,kg +f6372b84-84d8-37cd-8983-90da349b7300,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2022,naphtha combustion consumption by to the public,91.5095947304,TJ,CO2,73300.0,kg/TJ,6707653.29373832,kg +6c812fc8-a0f3-3549-9521-28ebc98830cd,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2022,naphtha combustion consumption by to the public,91.5095947304,TJ,CH4,3.0,kg/TJ,274.5287841912,kg +f8a7d7ef-aea3-3c78-a3b5-68294bcd3969,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2022,naphtha combustion consumption by to the public,91.5095947304,TJ,N2O,0.6,kg/TJ,54.905756838239995,kg +a629526e-02ca-3d65-b331-1619aa571463,SESCO,II.1.1,Tucuman,AR-T,annual,2022,naphtha combustion consumption by to the public,4.8050330328,TJ,CO2,73300.0,kg/TJ,352208.92130424,kg +ceef7dff-5f23-3df4-a6fd-c545378adae9,SESCO,II.1.1,Tucuman,AR-T,annual,2022,naphtha combustion consumption by to the public,4.8050330328,TJ,CH4,3.0,kg/TJ,14.415099098399999,kg +d58f7c35-bcb2-3ba1-a7a7-b2740512c689,SESCO,II.1.1,Tucuman,AR-T,annual,2022,naphtha combustion consumption by to the public,4.8050330328,TJ,N2O,0.6,kg/TJ,2.88301981968,kg +82522689-7f74-3a34-a7b3-f8c45b1d33ea,SESCO,II.1.1,Buenos Aires,AR-B,annual,2022,naphtha combustion consumption by to the public,824.2045836332,TJ,CO2,73300.0,kg/TJ,60414195.980313554,kg +54c03569-ac6e-3e5b-8e11-1f4e5c6f8093,SESCO,II.1.1,Buenos Aires,AR-B,annual,2022,naphtha combustion consumption by to the public,824.2045836332,TJ,CH4,3.0,kg/TJ,2472.6137508996,kg +292a055d-5c7a-3dfd-894b-187ab238d024,SESCO,II.1.1,Buenos Aires,AR-B,annual,2022,naphtha combustion consumption by to the public,824.2045836332,TJ,N2O,0.6,kg/TJ,494.52275017991997,kg +98b90ff2-2b40-311b-9cc8-0cc66f9e478d,SESCO,II.1.1,Capital Federal,AR-C,annual,2022,naphtha combustion consumption by to the public,47.319567526,TJ,CO2,73300.0,kg/TJ,3468524.2996558,kg +aeb117c5-fe4d-3fc2-9ce3-3e6e431ee7f4,SESCO,II.1.1,Capital Federal,AR-C,annual,2022,naphtha combustion consumption by to the public,47.319567526,TJ,CH4,3.0,kg/TJ,141.958702578,kg +0686f322-7791-34c0-b8b1-85ac39265933,SESCO,II.1.1,Capital Federal,AR-C,annual,2022,naphtha combustion consumption by to the public,47.319567526,TJ,N2O,0.6,kg/TJ,28.3917405156,kg +432156d4-b32e-3cca-a57a-777091362283,SESCO,II.1.1,Catamarca,AR-K,annual,2022,naphtha combustion consumption by to the public,1.314377988,TJ,CO2,73300.0,kg/TJ,96343.90652039999,kg +c79f8dcf-480c-3402-b187-7f604164514f,SESCO,II.1.1,Catamarca,AR-K,annual,2022,naphtha combustion consumption by to the public,1.314377988,TJ,CH4,3.0,kg/TJ,3.943133964,kg +ca807434-2dd6-3c98-91b2-1b439be2605c,SESCO,II.1.1,Catamarca,AR-K,annual,2022,naphtha combustion consumption by to the public,1.314377988,TJ,N2O,0.6,kg/TJ,0.7886267927999999,kg +6279dfe9-e1d1-3636-b0c8-f042ec0b2f89,SESCO,II.1.1,Chaco,AR-H,annual,2022,naphtha combustion consumption by to the public,10.3379643136,TJ,CO2,73300.0,kg/TJ,757772.78418688,kg +c0cdea0e-f4ec-3885-aa92-9a9b04c08ffd,SESCO,II.1.1,Chaco,AR-H,annual,2022,naphtha combustion consumption by to the public,10.3379643136,TJ,CH4,3.0,kg/TJ,31.0138929408,kg +18f8d32a-e2f4-3c70-b9d8-1344e6f90857,SESCO,II.1.1,Chaco,AR-H,annual,2022,naphtha combustion consumption by to the public,10.3379643136,TJ,N2O,0.6,kg/TJ,6.20277858816,kg +f7f25af9-03e6-3c89-9217-7d46c550a469,SESCO,II.1.1,Chubut,AR-U,annual,2022,naphtha combustion consumption by to the public,53.872430796799996,TJ,CO2,73300.0,kg/TJ,3948849.17740544,kg +4d4e2465-6334-39fd-a5d7-5a81e6a3d911,SESCO,II.1.1,Chubut,AR-U,annual,2022,naphtha combustion consumption by to the public,53.872430796799996,TJ,CH4,3.0,kg/TJ,161.6172923904,kg +4eb0b661-4faf-3b10-89ab-13769fb229c6,SESCO,II.1.1,Chubut,AR-U,annual,2022,naphtha combustion consumption by to the public,53.872430796799996,TJ,N2O,0.6,kg/TJ,32.32345847808,kg +7e2fbd43-fe77-3c1a-ba7c-cbd78797e539,SESCO,II.1.1,Corrientes,AR-W,annual,2022,naphtha combustion consumption by to the public,62.2519146172,TJ,CO2,73300.0,kg/TJ,4563065.34144076,kg +9a4e6b6c-2834-3eae-865e-5e515af3cb53,SESCO,II.1.1,Corrientes,AR-W,annual,2022,naphtha combustion consumption by to the public,62.2519146172,TJ,CH4,3.0,kg/TJ,186.75574385160002,kg +82cfe426-0c4b-3d15-9fc0-f02d9a132af8,SESCO,II.1.1,Corrientes,AR-W,annual,2022,naphtha combustion consumption by to the public,62.2519146172,TJ,N2O,0.6,kg/TJ,37.35114877032,kg +bd8c91c6-2630-378f-b001-c13a7bd6459d,SESCO,II.1.1,Córdoba,AR-X,annual,2022,naphtha combustion consumption by to the public,157.6310091972,TJ,CO2,73300.0,kg/TJ,11554352.97415476,kg +d96c4de1-b029-324c-b036-375d4d5d9f34,SESCO,II.1.1,Córdoba,AR-X,annual,2022,naphtha combustion consumption by to the public,157.6310091972,TJ,CH4,3.0,kg/TJ,472.8930275916,kg +e56b053f-6e09-37c1-93dc-3fc93df6af4d,SESCO,II.1.1,Córdoba,AR-X,annual,2022,naphtha combustion consumption by to the public,157.6310091972,TJ,N2O,0.6,kg/TJ,94.57860551832,kg +904460ef-9c4d-3277-ac4f-189fc088c64d,SESCO,II.1.1,Entre Rios,AR-E,annual,2022,naphtha combustion consumption by to the public,164.93749139559998,TJ,CO2,73300.0,kg/TJ,12089918.119297478,kg +352d39e2-e90f-3a71-8eab-b64c5550040e,SESCO,II.1.1,Entre Rios,AR-E,annual,2022,naphtha combustion consumption by to the public,164.93749139559998,TJ,CH4,3.0,kg/TJ,494.81247418679993,kg +0a0c740e-a447-3be8-b514-3d6e480a40a2,SESCO,II.1.1,Entre Rios,AR-E,annual,2022,naphtha combustion consumption by to the public,164.93749139559998,TJ,N2O,0.6,kg/TJ,98.96249483735998,kg +c194d4a2-cf7a-3eaa-a5f4-683209f84c3e,SESCO,II.1.1,Jujuy,AR-Y,annual,2022,naphtha combustion consumption by to the public,1.8050308583999999,TJ,CO2,73300.0,kg/TJ,132308.76192072,kg +1293a6a9-7ed6-38ce-9b7e-e354d1a5d6cc,SESCO,II.1.1,Jujuy,AR-Y,annual,2022,naphtha combustion consumption by to the public,1.8050308583999999,TJ,CH4,3.0,kg/TJ,5.415092575199999,kg +6df9775c-2800-3829-bc46-a4044634033f,SESCO,II.1.1,Jujuy,AR-Y,annual,2022,naphtha combustion consumption by to the public,1.8050308583999999,TJ,N2O,0.6,kg/TJ,1.0830185150399998,kg +c2c26f10-0f9f-3f38-94bd-c59e11cce8ee,SESCO,II.1.1,La Pampa,AR-L,annual,2022,naphtha combustion consumption by to the public,105.18470414759997,TJ,CO2,73300.0,kg/TJ,7710038.814019078,kg +f23a9452-83d2-3e20-869f-17a78d0e090a,SESCO,II.1.1,La Pampa,AR-L,annual,2022,naphtha combustion consumption by to the public,105.18470414759997,TJ,CH4,3.0,kg/TJ,315.5541124427999,kg +dd331c4c-be1c-31bc-8622-4e7ec93dc67e,SESCO,II.1.1,La Pampa,AR-L,annual,2022,naphtha combustion consumption by to the public,105.18470414759997,TJ,N2O,0.6,kg/TJ,63.11082248855998,kg +7b89d599-47d3-3412-95f4-e2c3e37f38c5,SESCO,II.1.1,Mendoza,AR-M,annual,2022,naphtha combustion consumption by to the public,14.926165685199997,TJ,CO2,73300.0,kg/TJ,1094087.9447251598,kg +f5f19c6b-3476-3299-b3f8-2e3d3cdbf3dd,SESCO,II.1.1,Mendoza,AR-M,annual,2022,naphtha combustion consumption by to the public,14.926165685199997,TJ,CH4,3.0,kg/TJ,44.77849705559999,kg +65d8308b-9ec3-3fbb-8eb3-822e81ce6957,SESCO,II.1.1,Mendoza,AR-M,annual,2022,naphtha combustion consumption by to the public,14.926165685199997,TJ,N2O,0.6,kg/TJ,8.955699411119998,kg +6c769ce2-e483-3068-a8bd-2c682818577e,SESCO,II.1.1,Neuquén,AR-Q,annual,2022,naphtha combustion consumption by to the public,120.81027330679998,TJ,CO2,73300.0,kg/TJ,8855393.03338844,kg +453226c8-75e7-3784-b7b0-1a81191ba974,SESCO,II.1.1,Neuquén,AR-Q,annual,2022,naphtha combustion consumption by to the public,120.81027330679998,TJ,CH4,3.0,kg/TJ,362.4308199203999,kg +9c1a5074-62a7-3fc0-bc9f-ee1592790284,SESCO,II.1.1,Neuquén,AR-Q,annual,2022,naphtha combustion consumption by to the public,120.81027330679998,TJ,N2O,0.6,kg/TJ,72.48616398408,kg +0ecc39e2-f06a-342b-9104-7ab582f34181,SESCO,II.1.1,Rio Negro,AR-R,annual,2022,naphtha combustion consumption by to the public,235.6490370388,TJ,CO2,73300.0,kg/TJ,17273074.41494404,kg +ee4d0c17-b2d6-32c4-832b-9f85ea9e3e57,SESCO,II.1.1,Rio Negro,AR-R,annual,2022,naphtha combustion consumption by to the public,235.6490370388,TJ,CH4,3.0,kg/TJ,706.9471111164,kg +c6a64b60-b274-3785-8787-45d3d9be7f70,SESCO,II.1.1,Rio Negro,AR-R,annual,2022,naphtha combustion consumption by to the public,235.6490370388,TJ,N2O,0.6,kg/TJ,141.38942222328,kg +1e962fd8-1f68-38c1-9583-b6f0c905dd9b,SESCO,II.1.1,San Juan,AR-J,annual,2022,naphtha combustion consumption by to the public,30.6603165176,TJ,CO2,73300.0,kg/TJ,2247401.20074008,kg +b0f09f43-4f56-376c-b783-4838806fcda8,SESCO,II.1.1,San Juan,AR-J,annual,2022,naphtha combustion consumption by to the public,30.6603165176,TJ,CH4,3.0,kg/TJ,91.9809495528,kg +fd97fc13-f0de-3f84-aae8-55aad86eba86,SESCO,II.1.1,San Juan,AR-J,annual,2022,naphtha combustion consumption by to the public,30.6603165176,TJ,N2O,0.6,kg/TJ,18.396189910559997,kg +fe7c9c84-ebb2-3e6b-b4d8-bfbccf6afdce,SESCO,II.1.1,San Luis,AR-D,annual,2022,naphtha combustion consumption by to the public,19.0719894596,TJ,CO2,73300.0,kg/TJ,1397976.82738868,kg +89a53130-0619-3f31-9879-939b2b7fa916,SESCO,II.1.1,San Luis,AR-D,annual,2022,naphtha combustion consumption by to the public,19.0719894596,TJ,CH4,3.0,kg/TJ,57.2159683788,kg +7d5e150c-3afb-332d-953b-e4476bc47f28,SESCO,II.1.1,San Luis,AR-D,annual,2022,naphtha combustion consumption by to the public,19.0719894596,TJ,N2O,0.6,kg/TJ,11.44319367576,kg +d609705c-b446-3e3f-92e7-1c2a508f057a,SESCO,II.1.1,Santa Fe,AR-S,annual,2022,naphtha combustion consumption by to the public,242.94258351439996,TJ,CO2,73300.0,kg/TJ,17807691.371605515,kg +564bf045-f994-315e-b774-d101c7c3c4b0,SESCO,II.1.1,Santa Fe,AR-S,annual,2022,naphtha combustion consumption by to the public,242.94258351439996,TJ,CH4,3.0,kg/TJ,728.8277505431998,kg +ad4d02d6-97c7-3d6b-91db-8d199970d5e9,SESCO,II.1.1,Santa Fe,AR-S,annual,2022,naphtha combustion consumption by to the public,242.94258351439996,TJ,N2O,0.6,kg/TJ,145.76555010863996,kg +eac147df-3dfc-37a3-86f7-8ae09be4d688,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2022,naphtha combustion consumption by to the public,9.546503119999999,TJ,CO2,73300.0,kg/TJ,699758.6786959999,kg +5dafeeba-fa3d-3f35-b317-04f0ca45e954,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2022,naphtha combustion consumption by to the public,9.546503119999999,TJ,CH4,3.0,kg/TJ,28.639509359999998,kg +b3657206-095f-35e5-88c2-0c363754234a,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2022,naphtha combustion consumption by to the public,9.546503119999999,TJ,N2O,0.6,kg/TJ,5.7279018719999995,kg +41e18134-bca0-38ea-8adb-609493fb6bc1,SESCO,II.1.1,Tucuman,AR-T,annual,2022,naphtha combustion consumption by to the public,0.7355270075999999,TJ,CO2,73300.0,kg/TJ,53914.12965707999,kg +6361781c-2bf9-3a36-9619-921789263d8c,SESCO,II.1.1,Tucuman,AR-T,annual,2022,naphtha combustion consumption by to the public,0.7355270075999999,TJ,CH4,3.0,kg/TJ,2.2065810227999996,kg +abdb5da5-69a0-3af7-ab17-be058f150969,SESCO,II.1.1,Tucuman,AR-T,annual,2022,naphtha combustion consumption by to the public,0.7355270075999999,TJ,N2O,0.6,kg/TJ,0.4413162045599999,kg +61ace81a-f848-3186-98f4-6f5ca851578f,SESCO,II.5.1,Buenos Aires,AR-B,annual,2022,naphtha combustion consumption by agriculture machines,37.9327256,TJ,CO2,73300.0,kg/TJ,2780468.78648,kg +4c768416-5b0d-3e30-9b34-8672298acd03,SESCO,II.5.1,Buenos Aires,AR-B,annual,2022,naphtha combustion consumption by agriculture machines,37.9327256,TJ,CH4,3.0,kg/TJ,113.7981768,kg +42952864-a49f-357f-a22e-945da4d36fe7,SESCO,II.5.1,Buenos Aires,AR-B,annual,2022,naphtha combustion consumption by agriculture machines,37.9327256,TJ,N2O,0.6,kg/TJ,22.759635359999997,kg +3975945c-e364-36c6-a1df-69d599ce56d1,SESCO,II.5.1,Salta,AR-A,annual,2022,naphtha combustion consumption by agriculture machines,0.301532,TJ,CO2,73300.0,kg/TJ,22102.2956,kg +969f8201-1a85-3dbc-863b-e8cdc1b8b606,SESCO,II.5.1,Salta,AR-A,annual,2022,naphtha combustion consumption by agriculture machines,0.301532,TJ,CH4,3.0,kg/TJ,0.9045960000000001,kg +22ab3dc2-c5da-394d-97b8-cb685165cda9,SESCO,II.5.1,Salta,AR-A,annual,2022,naphtha combustion consumption by agriculture machines,0.301532,TJ,N2O,0.6,kg/TJ,0.1809192,kg +aa019f2f-757f-3c6b-bf0b-8ca17a0c7d6f,SESCO,II.5.1,Santa Fe,AR-S,annual,2022,naphtha combustion consumption by agriculture machines,23.7607216,TJ,CO2,73300.0,kg/TJ,1741660.89328,kg +98ce9fda-d77b-3171-9e13-9b3f40760a3c,SESCO,II.5.1,Santa Fe,AR-S,annual,2022,naphtha combustion consumption by agriculture machines,23.7607216,TJ,CH4,3.0,kg/TJ,71.2821648,kg +bd812e56-e040-36ce-a4cc-b5032ba12384,SESCO,II.5.1,Santa Fe,AR-S,annual,2022,naphtha combustion consumption by agriculture machines,23.7607216,TJ,N2O,0.6,kg/TJ,14.25643296,kg +921b09bb-d184-37cf-baaa-3cffbb54bc86,SESCO,II.5.1,Buenos Aires,AR-B,annual,2022,naphtha combustion consumption by agriculture machines,1.1759747999999999,TJ,CO2,73300.0,kg/TJ,86198.95284,kg +95ebfa23-62d4-3793-8c08-89f918adc1cd,SESCO,II.5.1,Buenos Aires,AR-B,annual,2022,naphtha combustion consumption by agriculture machines,1.1759747999999999,TJ,CH4,3.0,kg/TJ,3.5279244,kg +4f39fc09-a568-3510-9731-089c7248e338,SESCO,II.5.1,Buenos Aires,AR-B,annual,2022,naphtha combustion consumption by agriculture machines,1.1759747999999999,TJ,N2O,0.6,kg/TJ,0.7055848799999999,kg +b5bb21a3-2660-3901-af05-4386605022a5,SESCO,II.5.1,Santa Fe,AR-S,annual,2022,naphtha combustion consumption by agriculture machines,1.5679663999999998,TJ,CO2,73300.0,kg/TJ,114931.93711999999,kg +c02556ec-81c0-3dde-8a85-d8762e859689,SESCO,II.5.1,Santa Fe,AR-S,annual,2022,naphtha combustion consumption by agriculture machines,1.5679663999999998,TJ,CH4,3.0,kg/TJ,4.7038991999999995,kg +407bc388-ddbc-36e5-84e1-e273ca20bc4a,SESCO,II.5.1,Santa Fe,AR-S,annual,2022,naphtha combustion consumption by agriculture machines,1.5679663999999998,TJ,N2O,0.6,kg/TJ,0.9407798399999998,kg +191b0d82-0d0a-3354-994f-6d12d4611478,SESCO,II.1.1,Buenos Aires,AR-B,annual,2022,naphtha combustion consumption by to the public,35936.794832399995,TJ,CO2,73300.0,kg/TJ,2634167061.2149196,kg +03279b72-69e0-3ece-a702-3e103b5e15d9,SESCO,II.1.1,Buenos Aires,AR-B,annual,2022,naphtha combustion consumption by to the public,35936.794832399995,TJ,CH4,3.0,kg/TJ,107810.3844972,kg +dfea66a0-e103-3cd8-98de-3e70b10178e6,SESCO,II.1.1,Buenos Aires,AR-B,annual,2022,naphtha combustion consumption by to the public,35936.794832399995,TJ,N2O,0.6,kg/TJ,21562.076899439995,kg +9aa82d59-ab5d-38cc-a1cb-23379e254a43,SESCO,II.1.1,Capital Federal,AR-C,annual,2022,naphtha combustion consumption by to the public,6804.069579999999,TJ,CO2,73300.0,kg/TJ,498738300.2139999,kg +48c42e9b-c92f-3a4e-be12-bf00aac028d6,SESCO,II.1.1,Capital Federal,AR-C,annual,2022,naphtha combustion consumption by to the public,6804.069579999999,TJ,CH4,3.0,kg/TJ,20412.20874,kg +d785df2b-1576-3803-93c5-17bf3e26da8f,SESCO,II.1.1,Capital Federal,AR-C,annual,2022,naphtha combustion consumption by to the public,6804.069579999999,TJ,N2O,0.6,kg/TJ,4082.4417479999993,kg +b8158176-2c3a-3198-b898-3fb4c495c705,SESCO,II.1.1,Catamarca,AR-K,annual,2022,naphtha combustion consumption by to the public,956.8816487999999,TJ,CO2,73300.0,kg/TJ,70139424.85703999,kg +ce3ac663-433c-37ae-bfce-d6fce5abcf37,SESCO,II.1.1,Catamarca,AR-K,annual,2022,naphtha combustion consumption by to the public,956.8816487999999,TJ,CH4,3.0,kg/TJ,2870.6449463999998,kg +51a91f7f-1c92-3366-8540-ed28bded4a0a,SESCO,II.1.1,Catamarca,AR-K,annual,2022,naphtha combustion consumption by to the public,956.8816487999999,TJ,N2O,0.6,kg/TJ,574.1289892799999,kg +38008e07-130a-3b94-a20c-beea005e51a0,SESCO,II.1.1,Chaco,AR-H,annual,2022,naphtha combustion consumption by to the public,2635.7515184,TJ,CO2,73300.0,kg/TJ,193200586.29872,kg +b9379dfa-9054-36e3-b9ce-5ca8bc5db31c,SESCO,II.1.1,Chaco,AR-H,annual,2022,naphtha combustion consumption by to the public,2635.7515184,TJ,CH4,3.0,kg/TJ,7907.254555199999,kg +0a46874a-ba68-315e-a1a6-b8d03f9c2b3d,SESCO,II.1.1,Chaco,AR-H,annual,2022,naphtha combustion consumption by to the public,2635.7515184,TJ,N2O,0.6,kg/TJ,1581.45091104,kg +2f105c24-875b-3385-9a79-5ab9cae77a6d,SESCO,II.1.1,Chubut,AR-U,annual,2022,naphtha combustion consumption by to the public,3195.5758296,TJ,CO2,73300.0,kg/TJ,234235708.30967999,kg +738144d3-6fd8-3004-bcf6-e559f6dae8ab,SESCO,II.1.1,Chubut,AR-U,annual,2022,naphtha combustion consumption by to the public,3195.5758296,TJ,CH4,3.0,kg/TJ,9586.7274888,kg +beb261ca-81f9-34c9-b25e-92c37732a363,SESCO,II.1.1,Chubut,AR-U,annual,2022,naphtha combustion consumption by to the public,3195.5758296,TJ,N2O,0.6,kg/TJ,1917.34549776,kg +14ab1878-7b93-3e4b-b6db-aa623d783bf9,SESCO,II.1.1,Corrientes,AR-W,annual,2022,naphtha combustion consumption by to the public,2620.2527735999997,TJ,CO2,73300.0,kg/TJ,192064528.30488,kg +6c06305f-46d8-3782-8fe2-61843d640b98,SESCO,II.1.1,Corrientes,AR-W,annual,2022,naphtha combustion consumption by to the public,2620.2527735999997,TJ,CH4,3.0,kg/TJ,7860.7583208,kg +fcdd0b40-dcfb-3af5-aa4c-5cc1e9496e54,SESCO,II.1.1,Corrientes,AR-W,annual,2022,naphtha combustion consumption by to the public,2620.2527735999997,TJ,N2O,0.6,kg/TJ,1572.1516641599999,kg +a533ea5b-8011-3ec7-813b-c287f817ab77,SESCO,II.1.1,Córdoba,AR-X,annual,2022,naphtha combustion consumption by to the public,10063.509887199998,TJ,CO2,73300.0,kg/TJ,737655274.7317599,kg +37a883d7-d368-3988-b3e5-350ea2956cef,SESCO,II.1.1,Córdoba,AR-X,annual,2022,naphtha combustion consumption by to the public,10063.509887199998,TJ,CH4,3.0,kg/TJ,30190.529661599994,kg +0dfa7d8d-f5d2-3efe-b181-9a068f53af1a,SESCO,II.1.1,Córdoba,AR-X,annual,2022,naphtha combustion consumption by to the public,10063.509887199998,TJ,N2O,0.6,kg/TJ,6038.105932319999,kg +132dfb9a-12d8-3d3b-adc7-5160a7f9fda3,SESCO,II.1.1,Entre Rios,AR-E,annual,2022,naphtha combustion consumption by to the public,3393.6220471999995,TJ,CO2,73300.0,kg/TJ,248752496.05975997,kg +e75d467e-afc5-37d9-9c41-0e9b1e3b27fb,SESCO,II.1.1,Entre Rios,AR-E,annual,2022,naphtha combustion consumption by to the public,3393.6220471999995,TJ,CH4,3.0,kg/TJ,10180.8661416,kg +17ac15a1-7304-3201-b674-ff05befd9968,SESCO,II.1.1,Entre Rios,AR-E,annual,2022,naphtha combustion consumption by to the public,3393.6220471999995,TJ,N2O,0.6,kg/TJ,2036.1732283199997,kg +39d477bf-55e2-362a-90fe-2ae534266eb3,SESCO,II.1.1,Formosa,AR-P,annual,2022,naphtha combustion consumption by to the public,1196.6900483999998,TJ,CO2,73300.0,kg/TJ,87717380.54771999,kg +970c87bd-5e33-30e9-83b5-c18d69064490,SESCO,II.1.1,Formosa,AR-P,annual,2022,naphtha combustion consumption by to the public,1196.6900483999998,TJ,CH4,3.0,kg/TJ,3590.0701451999994,kg +2c9b65f5-450c-31ab-babb-364a78bf83b8,SESCO,II.1.1,Formosa,AR-P,annual,2022,naphtha combustion consumption by to the public,1196.6900483999998,TJ,N2O,0.6,kg/TJ,718.0140290399999,kg +dc178339-f54c-362c-b24a-d063c83031a0,SESCO,II.1.1,Jujuy,AR-Y,annual,2022,naphtha combustion consumption by to the public,1613.045434,TJ,CO2,73300.0,kg/TJ,118236230.3122,kg +1eb9461f-7d17-341d-b696-5bdca254a2bc,SESCO,II.1.1,Jujuy,AR-Y,annual,2022,naphtha combustion consumption by to the public,1613.045434,TJ,CH4,3.0,kg/TJ,4839.136302,kg +4fa8e0d9-6b22-3f7b-b9f6-bef1cfb879ec,SESCO,II.1.1,Jujuy,AR-Y,annual,2022,naphtha combustion consumption by to the public,1613.045434,TJ,N2O,0.6,kg/TJ,967.8272603999999,kg +45d4fab7-285a-39db-b825-c0942a345e3e,SESCO,II.1.1,La Pampa,AR-L,annual,2022,naphtha combustion consumption by to the public,1699.434352,TJ,CO2,73300.0,kg/TJ,124568538.0016,kg +a980d4ca-358d-30ea-b54d-e611dc04dcff,SESCO,II.1.1,La Pampa,AR-L,annual,2022,naphtha combustion consumption by to the public,1699.434352,TJ,CH4,3.0,kg/TJ,5098.303056,kg +9f6eb304-bec3-3000-998a-c97622352541,SESCO,II.1.1,La Pampa,AR-L,annual,2022,naphtha combustion consumption by to the public,1699.434352,TJ,N2O,0.6,kg/TJ,1019.6606112,kg +22c1b37b-1013-374e-98f7-70e5e5981b82,SESCO,II.1.1,La Rioja,AR-F,annual,2022,naphtha combustion consumption by to the public,1056.8093536,TJ,CO2,73300.0,kg/TJ,77464125.61887999,kg +ab8d9d6e-871d-3614-ab2d-d2d5971a8d34,SESCO,II.1.1,La Rioja,AR-F,annual,2022,naphtha combustion consumption by to the public,1056.8093536,TJ,CH4,3.0,kg/TJ,3170.4280608,kg +daa72b12-05d7-3560-8cbc-1d5f9b83568d,SESCO,II.1.1,La Rioja,AR-F,annual,2022,naphtha combustion consumption by to the public,1056.8093536,TJ,N2O,0.6,kg/TJ,634.0856121599999,kg +6e971a39-2cfe-3473-8e21-c694d3b9f0ec,SESCO,II.1.1,Mendoza,AR-M,annual,2022,naphtha combustion consumption by to the public,4827.5574732,TJ,CO2,73300.0,kg/TJ,353859962.78555995,kg +3c313426-0377-3b0d-b36a-ac814b60ec2b,SESCO,II.1.1,Mendoza,AR-M,annual,2022,naphtha combustion consumption by to the public,4827.5574732,TJ,CH4,3.0,kg/TJ,14482.6724196,kg +e4ed07a7-eef6-3e12-8dd5-2144ae0a7a14,SESCO,II.1.1,Mendoza,AR-M,annual,2022,naphtha combustion consumption by to the public,4827.5574732,TJ,N2O,0.6,kg/TJ,2896.5344839199997,kg +df21fc4a-e453-3d56-abe6-96d3bc260f6a,SESCO,II.1.1,Misiones,AR-N,annual,2022,naphtha combustion consumption by to the public,3900.5274923999996,TJ,CO2,73300.0,kg/TJ,285908665.19291997,kg +4f7a0be0-6c63-381b-a528-5413f55dfee8,SESCO,II.1.1,Misiones,AR-N,annual,2022,naphtha combustion consumption by to the public,3900.5274923999996,TJ,CH4,3.0,kg/TJ,11701.582477199998,kg +c747d788-bfc3-3c2c-8390-d57e79dab387,SESCO,II.1.1,Misiones,AR-N,annual,2022,naphtha combustion consumption by to the public,3900.5274923999996,TJ,N2O,0.6,kg/TJ,2340.3164954399995,kg +c7beb294-b597-3138-87d6-1fca19369576,SESCO,II.1.1,Neuquén,AR-Q,annual,2022,naphtha combustion consumption by to the public,3292.3676016,TJ,CO2,73300.0,kg/TJ,241330545.19728,kg +94b6329a-f8d4-3888-812d-86c76b4772ee,SESCO,II.1.1,Neuquén,AR-Q,annual,2022,naphtha combustion consumption by to the public,3292.3676016,TJ,CH4,3.0,kg/TJ,9877.1028048,kg +fd580114-a6e4-3b24-bd7c-f4e7e1c9df86,SESCO,II.1.1,Neuquén,AR-Q,annual,2022,naphtha combustion consumption by to the public,3292.3676016,TJ,N2O,0.6,kg/TJ,1975.4205609599999,kg +94640df4-f559-3e90-a110-b2a0a5ee1c38,SESCO,II.1.1,Rio Negro,AR-R,annual,2022,naphtha combustion consumption by to the public,3186.7107887999996,TJ,CO2,73300.0,kg/TJ,233585900.81903997,kg +f3099c7e-1957-3048-b787-f41b26f94eb1,SESCO,II.1.1,Rio Negro,AR-R,annual,2022,naphtha combustion consumption by to the public,3186.7107887999996,TJ,CH4,3.0,kg/TJ,9560.1323664,kg +cb4a5268-3470-3adf-99d6-00492e42597a,SESCO,II.1.1,Rio Negro,AR-R,annual,2022,naphtha combustion consumption by to the public,3186.7107887999996,TJ,N2O,0.6,kg/TJ,1912.0264732799997,kg +2c882bcd-0809-3341-8673-ed95b6c37669,SESCO,II.1.1,Salta,AR-A,annual,2022,naphtha combustion consumption by to the public,3476.6941131999997,TJ,CO2,73300.0,kg/TJ,254841678.49755996,kg +13191df4-f396-3813-9148-4e115564c21d,SESCO,II.1.1,Salta,AR-A,annual,2022,naphtha combustion consumption by to the public,3476.6941131999997,TJ,CH4,3.0,kg/TJ,10430.0823396,kg +4933a884-c952-3360-b045-874475adf94c,SESCO,II.1.1,Salta,AR-A,annual,2022,naphtha combustion consumption by to the public,3476.6941131999997,TJ,N2O,0.6,kg/TJ,2086.0164679199997,kg +8c1c9d4f-a022-34f9-8abd-d63a3fdc9268,SESCO,II.1.1,San Juan,AR-J,annual,2022,naphtha combustion consumption by to the public,1677.5431287999997,TJ,CO2,73300.0,kg/TJ,122963911.34103999,kg +89a78f34-1336-3d2c-8e6b-003011a0e73f,SESCO,II.1.1,San Juan,AR-J,annual,2022,naphtha combustion consumption by to the public,1677.5431287999997,TJ,CH4,3.0,kg/TJ,5032.629386399999,kg +3fb12cd0-144e-3ec9-9b06-7ad76f524dee,SESCO,II.1.1,San Juan,AR-J,annual,2022,naphtha combustion consumption by to the public,1677.5431287999997,TJ,N2O,0.6,kg/TJ,1006.5258772799998,kg +2998678d-79b4-36d3-92af-b20b3db100ac,SESCO,II.1.1,San Luis,AR-D,annual,2022,naphtha combustion consumption by to the public,1464.9630687999997,TJ,CO2,73300.0,kg/TJ,107381792.94303998,kg +6e5f4951-bc8b-3b28-8a1b-ffaa8fef539b,SESCO,II.1.1,San Luis,AR-D,annual,2022,naphtha combustion consumption by to the public,1464.9630687999997,TJ,CH4,3.0,kg/TJ,4394.889206399999,kg +304d67d2-8d9f-3eef-aea0-e6ca865c2d66,SESCO,II.1.1,San Luis,AR-D,annual,2022,naphtha combustion consumption by to the public,1464.9630687999997,TJ,N2O,0.6,kg/TJ,878.9778412799998,kg +e88a96ef-b90e-3844-a9b2-d33f1b4e3c85,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2022,naphtha combustion consumption by to the public,2097.6375112,TJ,CO2,73300.0,kg/TJ,153756829.57096002,kg +a046fcf6-2c65-331e-a55f-5d2f2542d06c,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2022,naphtha combustion consumption by to the public,2097.6375112,TJ,CH4,3.0,kg/TJ,6292.9125336,kg +d81bc17b-8eca-34ef-9348-d7a7704289f0,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2022,naphtha combustion consumption by to the public,2097.6375112,TJ,N2O,0.6,kg/TJ,1258.58250672,kg +5058ce13-0cd4-3fcf-871e-e78445d0d2a9,SESCO,II.1.1,Santa Fe,AR-S,annual,2022,naphtha combustion consumption by to the public,7231.943488,TJ,CO2,73300.0,kg/TJ,530101457.67039996,kg +6ae0a275-e2fb-3c1e-86a7-a9e7195cbeff,SESCO,II.1.1,Santa Fe,AR-S,annual,2022,naphtha combustion consumption by to the public,7231.943488,TJ,CH4,3.0,kg/TJ,21695.830464,kg +b0097f7a-2090-3c26-b97a-0f9a13068155,SESCO,II.1.1,Santa Fe,AR-S,annual,2022,naphtha combustion consumption by to the public,7231.943488,TJ,N2O,0.6,kg/TJ,4339.1660928,kg +8fe6eda3-b258-382f-9298-75eaa1798c21,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2022,naphtha combustion consumption by to the public,1681.0107467999999,TJ,CO2,73300.0,kg/TJ,123218087.74044,kg +d193a3fd-82a5-3810-9e40-afd547b80d6f,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2022,naphtha combustion consumption by to the public,1681.0107467999999,TJ,CH4,3.0,kg/TJ,5043.0322404,kg +78c80871-6aad-3004-a435-ff11fba62d64,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2022,naphtha combustion consumption by to the public,1681.0107467999999,TJ,N2O,0.6,kg/TJ,1008.6064480799998,kg +eb3ce8b6-a093-3887-a9d3-63eaa6fd299d,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2022,naphtha combustion consumption by to the public,1378.6043039999997,TJ,CO2,73300.0,kg/TJ,101051695.48319998,kg +d75e1ebe-64df-3f34-aa77-941a79c5e532,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2022,naphtha combustion consumption by to the public,1378.6043039999997,TJ,CH4,3.0,kg/TJ,4135.812911999999,kg +46cc2162-85ea-36e1-8a35-b1df004ba39d,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2022,naphtha combustion consumption by to the public,1378.6043039999997,TJ,N2O,0.6,kg/TJ,827.1625823999998,kg +361dc3c5-1628-3a2b-bd15-588ec10bcc2b,SESCO,II.1.1,Tucuman,AR-T,annual,2022,naphtha combustion consumption by to the public,3136.1137191999997,TJ,CO2,73300.0,kg/TJ,229877135.61735997,kg +767189d7-eb14-35be-af66-f88b6a7fee5e,SESCO,II.1.1,Tucuman,AR-T,annual,2022,naphtha combustion consumption by to the public,3136.1137191999997,TJ,CH4,3.0,kg/TJ,9408.3411576,kg +70614ac0-7d23-33db-8a14-cb86a1ad2812,SESCO,II.1.1,Tucuman,AR-T,annual,2022,naphtha combustion consumption by to the public,3136.1137191999997,TJ,N2O,0.6,kg/TJ,1881.6682315199996,kg +662b87b5-7bee-3f93-86f5-a332464cd983,SESCO,II.1.1,Buenos Aires,AR-B,annual,2022,naphtha combustion consumption by to the public,16466.511754,TJ,CO2,73300.0,kg/TJ,1206995311.5681999,kg +11479d9f-82b2-3a04-95bc-2faaf7b4ac4c,SESCO,II.1.1,Buenos Aires,AR-B,annual,2022,naphtha combustion consumption by to the public,16466.511754,TJ,CH4,3.0,kg/TJ,49399.535262,kg +6089fb71-ab27-3ae2-8ca4-e7f3fba66e8d,SESCO,II.1.1,Buenos Aires,AR-B,annual,2022,naphtha combustion consumption by to the public,16466.511754,TJ,N2O,0.6,kg/TJ,9879.9070524,kg +baf826ba-5c40-3e4e-8f79-e54e0df84161,SESCO,II.1.1,Capital Federal,AR-C,annual,2022,naphtha combustion consumption by to the public,4155.141113199999,TJ,CO2,73300.0,kg/TJ,304571843.5975599,kg +98262756-1ede-34b7-b286-a8746b812e37,SESCO,II.1.1,Capital Federal,AR-C,annual,2022,naphtha combustion consumption by to the public,4155.141113199999,TJ,CH4,3.0,kg/TJ,12465.423339599998,kg +e24144ac-7db6-3df0-a577-2acf8674af9f,SESCO,II.1.1,Capital Federal,AR-C,annual,2022,naphtha combustion consumption by to the public,4155.141113199999,TJ,N2O,0.6,kg/TJ,2493.0846679199994,kg +1b7d1646-a352-3b04-8492-ca0046da86ff,SESCO,II.1.1,Catamarca,AR-K,annual,2022,naphtha combustion consumption by to the public,382.9757932,TJ,CO2,73300.0,kg/TJ,28072125.64156,kg +88f88a56-3191-3b27-aee2-84884df22e4d,SESCO,II.1.1,Catamarca,AR-K,annual,2022,naphtha combustion consumption by to the public,382.9757932,TJ,CH4,3.0,kg/TJ,1148.9273796,kg +3f64a009-9794-310e-aebb-23643a289d42,SESCO,II.1.1,Catamarca,AR-K,annual,2022,naphtha combustion consumption by to the public,382.9757932,TJ,N2O,0.6,kg/TJ,229.78547591999998,kg +835c3a2a-ea01-352c-9ffb-b20b537cd660,SESCO,II.1.1,Chaco,AR-H,annual,2022,naphtha combustion consumption by to the public,816.2772772,TJ,CO2,73300.0,kg/TJ,59833124.418759994,kg +efab51af-1017-3ce7-bf60-4bcc9a775fcd,SESCO,II.1.1,Chaco,AR-H,annual,2022,naphtha combustion consumption by to the public,816.2772772,TJ,CH4,3.0,kg/TJ,2448.8318316,kg +8161a388-b5c0-3f0c-9f54-52aa5583495c,SESCO,II.1.1,Chaco,AR-H,annual,2022,naphtha combustion consumption by to the public,816.2772772,TJ,N2O,0.6,kg/TJ,489.76636632,kg +3c1c8693-ccc3-3154-bfc0-2011baec89a1,SESCO,II.1.1,Chubut,AR-U,annual,2022,naphtha combustion consumption by to the public,1154.8072535999997,TJ,CO2,73300.0,kg/TJ,84647371.68887998,kg +13b218a1-c826-3e34-82f7-766068953703,SESCO,II.1.1,Chubut,AR-U,annual,2022,naphtha combustion consumption by to the public,1154.8072535999997,TJ,CH4,3.0,kg/TJ,3464.421760799999,kg +ec98da9d-9a53-375b-9aee-78092006475c,SESCO,II.1.1,Chubut,AR-U,annual,2022,naphtha combustion consumption by to the public,1154.8072535999997,TJ,N2O,0.6,kg/TJ,692.8843521599998,kg +a3088540-1080-30a7-92f2-d00f5a1de7ed,SESCO,II.1.1,Corrientes,AR-W,annual,2022,naphtha combustion consumption by to the public,1050.5073347999999,TJ,CO2,73300.0,kg/TJ,77002187.64084,kg +a83dfd1c-3102-3c9b-a111-9b703bd45ad9,SESCO,II.1.1,Corrientes,AR-W,annual,2022,naphtha combustion consumption by to the public,1050.5073347999999,TJ,CH4,3.0,kg/TJ,3151.5220044,kg +7bc0d8a5-fb3d-38df-b313-baa3aa4e0954,SESCO,II.1.1,Corrientes,AR-W,annual,2022,naphtha combustion consumption by to the public,1050.5073347999999,TJ,N2O,0.6,kg/TJ,630.3044008799999,kg +8a9a9e13-0466-34d0-80b2-7716aed44239,SESCO,II.1.1,Córdoba,AR-X,annual,2022,naphtha combustion consumption by to the public,4284.920485999999,TJ,CO2,73300.0,kg/TJ,314084671.6237999,kg +48072e85-c1fa-3173-ad39-044b28c4f17c,SESCO,II.1.1,Córdoba,AR-X,annual,2022,naphtha combustion consumption by to the public,4284.920485999999,TJ,CH4,3.0,kg/TJ,12854.761457999997,kg +3c7735b6-c1be-3db8-bfc4-2b90d5c4c6d7,SESCO,II.1.1,Córdoba,AR-X,annual,2022,naphtha combustion consumption by to the public,4284.920485999999,TJ,N2O,0.6,kg/TJ,2570.952291599999,kg +1e5a0eb5-d654-3d30-82c6-ebd79264bfe9,SESCO,II.1.1,Entre Rios,AR-E,annual,2022,naphtha combustion consumption by to the public,1477.5067999999999,TJ,CO2,73300.0,kg/TJ,108301248.44,kg +88ab178d-101e-3d6e-b631-308ca29169eb,SESCO,II.1.1,Entre Rios,AR-E,annual,2022,naphtha combustion consumption by to the public,1477.5067999999999,TJ,CH4,3.0,kg/TJ,4432.520399999999,kg +1c9f1e7e-430b-3062-98a0-6bcc71432f15,SESCO,II.1.1,Entre Rios,AR-E,annual,2022,naphtha combustion consumption by to the public,1477.5067999999999,TJ,N2O,0.6,kg/TJ,886.5040799999999,kg +0f50d04d-05f7-3029-a1d5-76b031d4e5a2,SESCO,II.1.1,Formosa,AR-P,annual,2022,naphtha combustion consumption by to the public,345.73659119999996,TJ,CO2,73300.0,kg/TJ,25342492.134959996,kg +d8130f31-0cdd-3bf2-bb7b-9f2ec9938e9b,SESCO,II.1.1,Formosa,AR-P,annual,2022,naphtha combustion consumption by to the public,345.73659119999996,TJ,CH4,3.0,kg/TJ,1037.2097735999998,kg +7186e979-f02a-370b-8ce8-1de71b713b7c,SESCO,II.1.1,Formosa,AR-P,annual,2022,naphtha combustion consumption by to the public,345.73659119999996,TJ,N2O,0.6,kg/TJ,207.44195471999998,kg +c6db6733-6d6e-3089-957f-4153205b171d,SESCO,II.1.1,Jujuy,AR-Y,annual,2022,naphtha combustion consumption by to the public,507.53866239999996,TJ,CO2,73300.0,kg/TJ,37202583.95392,kg +2b5c2a07-d912-3390-836e-9429340156c8,SESCO,II.1.1,Jujuy,AR-Y,annual,2022,naphtha combustion consumption by to the public,507.53866239999996,TJ,CH4,3.0,kg/TJ,1522.6159871999998,kg +3064456b-cc64-3e6a-ae9e-26c35ce4b8d8,SESCO,II.1.1,Jujuy,AR-Y,annual,2022,naphtha combustion consumption by to the public,507.53866239999996,TJ,N2O,0.6,kg/TJ,304.52319744,kg +166f3979-76ba-3ee6-8a71-53630c845bf1,SESCO,II.1.1,La Pampa,AR-L,annual,2022,naphtha combustion consumption by to the public,1088.3797539999998,TJ,CO2,73300.0,kg/TJ,79778235.96819998,kg +e9065362-3d49-3951-a053-cacba2ecb731,SESCO,II.1.1,La Pampa,AR-L,annual,2022,naphtha combustion consumption by to the public,1088.3797539999998,TJ,CH4,3.0,kg/TJ,3265.1392619999997,kg +516ea498-4c75-35a1-a02d-4e9fe8ef7754,SESCO,II.1.1,La Pampa,AR-L,annual,2022,naphtha combustion consumption by to the public,1088.3797539999998,TJ,N2O,0.6,kg/TJ,653.0278523999999,kg +cadab9a1-6e40-3278-8757-4e1f66e9546f,SESCO,II.1.1,La Rioja,AR-F,annual,2022,naphtha combustion consumption by to the public,481.4561443999999,TJ,CO2,73300.0,kg/TJ,35290735.384519994,kg +4fdb9380-964a-32c3-b8f3-504345758553,SESCO,II.1.1,La Rioja,AR-F,annual,2022,naphtha combustion consumption by to the public,481.4561443999999,TJ,CH4,3.0,kg/TJ,1444.3684331999998,kg +6d0baddc-1404-39dd-b82a-e40a2e0d9dfd,SESCO,II.1.1,La Rioja,AR-F,annual,2022,naphtha combustion consumption by to the public,481.4561443999999,TJ,N2O,0.6,kg/TJ,288.87368663999996,kg +7740acf2-057d-31c7-b872-235d713f5c0a,SESCO,II.1.1,Mendoza,AR-M,annual,2022,naphtha combustion consumption by to the public,2713.5166212,TJ,CO2,73300.0,kg/TJ,198900768.33396,kg +d5515947-9034-3dd6-9dd9-644f53284ad6,SESCO,II.1.1,Mendoza,AR-M,annual,2022,naphtha combustion consumption by to the public,2713.5166212,TJ,CH4,3.0,kg/TJ,8140.549863599999,kg +9bace119-7c00-314d-87c5-0c81610f0571,SESCO,II.1.1,Mendoza,AR-M,annual,2022,naphtha combustion consumption by to the public,2713.5166212,TJ,N2O,0.6,kg/TJ,1628.1099727199999,kg +afb33b4e-9fe8-3bd9-b4f7-9b0722b701ef,SESCO,II.1.1,Misiones,AR-N,annual,2022,naphtha combustion consumption by to the public,1302.1056356,TJ,CO2,73300.0,kg/TJ,95444343.08948,kg +5f257405-856d-3240-839e-9915691795ce,SESCO,II.1.1,Misiones,AR-N,annual,2022,naphtha combustion consumption by to the public,1302.1056356,TJ,CH4,3.0,kg/TJ,3906.3169067999997,kg +3d5dc90e-963b-3611-a3b2-0cc41e664541,SESCO,II.1.1,Misiones,AR-N,annual,2022,naphtha combustion consumption by to the public,1302.1056356,TJ,N2O,0.6,kg/TJ,781.2633813599999,kg +dc04ebe8-0872-335e-ab7a-35e9b24de672,SESCO,II.1.1,Neuquén,AR-Q,annual,2022,naphtha combustion consumption by to the public,1823.1830847999997,TJ,CO2,73300.0,kg/TJ,133639320.11583997,kg +e1f25b5e-a1b0-3359-aa2f-42213f9a4067,SESCO,II.1.1,Neuquén,AR-Q,annual,2022,naphtha combustion consumption by to the public,1823.1830847999997,TJ,CH4,3.0,kg/TJ,5469.549254399999,kg +15e3b212-05f2-306d-a03a-a1958ec8d8df,SESCO,II.1.1,Neuquén,AR-Q,annual,2022,naphtha combustion consumption by to the public,1823.1830847999997,TJ,N2O,0.6,kg/TJ,1093.9098508799998,kg +8730a183-66d7-32f3-a350-abb46511fc31,SESCO,II.1.1,Rio Negro,AR-R,annual,2022,naphtha combustion consumption by to the public,1659.1798299999998,TJ,CO2,73300.0,kg/TJ,121617881.53899999,kg +27d9690e-38e6-324b-9845-9adab6ebd512,SESCO,II.1.1,Rio Negro,AR-R,annual,2022,naphtha combustion consumption by to the public,1659.1798299999998,TJ,CH4,3.0,kg/TJ,4977.539489999999,kg +3042fe5a-b304-389d-9f2b-02ea9728448c,SESCO,II.1.1,Rio Negro,AR-R,annual,2022,naphtha combustion consumption by to the public,1659.1798299999998,TJ,N2O,0.6,kg/TJ,995.5078979999998,kg +cbf682f5-66d0-34f1-bf55-8c1e0a9d0c80,SESCO,II.1.1,Salta,AR-A,annual,2022,naphtha combustion consumption by to the public,1141.4192328000001,TJ,CO2,73300.0,kg/TJ,83666029.76424001,kg +3a789fa9-61e9-3556-a1e2-225786f40260,SESCO,II.1.1,Salta,AR-A,annual,2022,naphtha combustion consumption by to the public,1141.4192328000001,TJ,CH4,3.0,kg/TJ,3424.2576984000007,kg +2887433c-fcb8-3f13-82d3-ab6e053b9de5,SESCO,II.1.1,Salta,AR-A,annual,2022,naphtha combustion consumption by to the public,1141.4192328000001,TJ,N2O,0.6,kg/TJ,684.8515396800001,kg +4ca8fe32-41c2-3973-89e5-a1bb4f10282d,SESCO,II.1.1,San Juan,AR-J,annual,2022,naphtha combustion consumption by to the public,757.749916,TJ,CO2,73300.0,kg/TJ,55543068.8428,kg +20fceaee-f1b2-3949-8e8a-e0227e544f00,SESCO,II.1.1,San Juan,AR-J,annual,2022,naphtha combustion consumption by to the public,757.749916,TJ,CH4,3.0,kg/TJ,2273.249748,kg +1c393b5a-7c63-3daf-a0a3-2aa79ec8a375,SESCO,II.1.1,San Juan,AR-J,annual,2022,naphtha combustion consumption by to the public,757.749916,TJ,N2O,0.6,kg/TJ,454.64994959999996,kg +201ff3a5-a393-3b42-9735-7ff1db44949d,SESCO,II.1.1,San Luis,AR-D,annual,2022,naphtha combustion consumption by to the public,650.4648304,TJ,CO2,73300.0,kg/TJ,47679072.06832,kg +5fe211e1-2e77-3c70-b92c-ce5d54e55bc5,SESCO,II.1.1,San Luis,AR-D,annual,2022,naphtha combustion consumption by to the public,650.4648304,TJ,CH4,3.0,kg/TJ,1951.3944912,kg +d0a070f7-872b-3c4b-b9c0-c4d6b326fc0c,SESCO,II.1.1,San Luis,AR-D,annual,2022,naphtha combustion consumption by to the public,650.4648304,TJ,N2O,0.6,kg/TJ,390.27889824,kg +47c3adae-6ee5-3394-8bdb-e6c875b199b7,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2022,naphtha combustion consumption by to the public,611.8988876,TJ,CO2,73300.0,kg/TJ,44852188.46108,kg +fe5efdd3-5493-376b-aaaf-42493a303a1c,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2022,naphtha combustion consumption by to the public,611.8988876,TJ,CH4,3.0,kg/TJ,1835.6966628,kg +660a4fe1-adde-3a7e-bd4e-27dc15af4d3f,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2022,naphtha combustion consumption by to the public,611.8988876,TJ,N2O,0.6,kg/TJ,367.13933255999996,kg +e4b6231c-cb40-3c7b-b84c-871fe530e236,SESCO,II.1.1,Santa Fe,AR-S,annual,2022,naphtha combustion consumption by to the public,3643.4714624,TJ,CO2,73300.0,kg/TJ,267066458.19392,kg +51eeabfa-5809-38f8-9df7-5107a3a6b68a,SESCO,II.1.1,Santa Fe,AR-S,annual,2022,naphtha combustion consumption by to the public,3643.4714624,TJ,CH4,3.0,kg/TJ,10930.414387199999,kg +73f1e015-ac78-330b-bc68-af65ddf2fe18,SESCO,II.1.1,Santa Fe,AR-S,annual,2022,naphtha combustion consumption by to the public,3643.4714624,TJ,N2O,0.6,kg/TJ,2186.0828774399997,kg +5d0172a3-5fe0-3fab-a70f-247b01b24e61,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2022,naphtha combustion consumption by to the public,648.6254852,TJ,CO2,73300.0,kg/TJ,47544248.06516,kg +55eea761-85ca-3e51-b33f-b93d7985f8a0,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2022,naphtha combustion consumption by to the public,648.6254852,TJ,CH4,3.0,kg/TJ,1945.8764555999999,kg +a69e8f4f-5dd2-350e-a902-dbb2b7684ed0,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2022,naphtha combustion consumption by to the public,648.6254852,TJ,N2O,0.6,kg/TJ,389.17529111999994,kg +c02f7b1f-5bce-35fd-9301-21de7bf07160,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2022,naphtha combustion consumption by to the public,398.9268359999999,TJ,CO2,73300.0,kg/TJ,29241337.078799993,kg +4509d01e-88b3-3f9c-9fe6-d464fc06f052,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2022,naphtha combustion consumption by to the public,398.9268359999999,TJ,CH4,3.0,kg/TJ,1196.7805079999998,kg +8ed98c53-485b-35fd-b3e5-bd62fdc27e52,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2022,naphtha combustion consumption by to the public,398.9268359999999,TJ,N2O,0.6,kg/TJ,239.35610159999993,kg +51b9b114-3cf9-3413-8b3e-717912dcde12,SESCO,II.1.1,Tucuman,AR-T,annual,2022,naphtha combustion consumption by to the public,950.7605491999999,TJ,CO2,73300.0,kg/TJ,69690748.25636,kg +26987373-d00b-36ad-8f4a-755e984a7f90,SESCO,II.1.1,Tucuman,AR-T,annual,2022,naphtha combustion consumption by to the public,950.7605491999999,TJ,CH4,3.0,kg/TJ,2852.2816476,kg +beb364be-4002-3fe7-8e91-9a875ad72a04,SESCO,II.1.1,Tucuman,AR-T,annual,2022,naphtha combustion consumption by to the public,950.7605491999999,TJ,N2O,0.6,kg/TJ,570.4563295199999,kg +3ac4eabd-e065-3556-b370-c94582519eb3,SESCO,II.1.1,Buenos Aires,AR-B,annual,2022,naphtha combustion consumption by freight transport,642.5043856,TJ,CO2,73300.0,kg/TJ,47095571.46448,kg +866d1425-ccb3-3cf2-902e-755439bffdcb,SESCO,II.1.1,Buenos Aires,AR-B,annual,2022,naphtha combustion consumption by freight transport,642.5043856,TJ,CH4,3.0,kg/TJ,1927.5131568,kg +cb0393ea-b297-3456-ae49-7ac33a71a5c7,SESCO,II.1.1,Buenos Aires,AR-B,annual,2022,naphtha combustion consumption by freight transport,642.5043856,TJ,N2O,0.6,kg/TJ,385.50263135999995,kg +28df7405-68aa-3b57-9b1a-97b31121bcec,SESCO,II.1.1,Capital Federal,AR-C,annual,2022,naphtha combustion consumption by freight transport,86.087386,TJ,CO2,73300.0,kg/TJ,6310205.3938,kg +b9fa0302-daee-3f3d-931b-40bf570b65cd,SESCO,II.1.1,Capital Federal,AR-C,annual,2022,naphtha combustion consumption by freight transport,86.087386,TJ,CH4,3.0,kg/TJ,258.262158,kg +ca068c3b-2c95-3e07-a77a-45674c55307d,SESCO,II.1.1,Capital Federal,AR-C,annual,2022,naphtha combustion consumption by freight transport,86.087386,TJ,N2O,0.6,kg/TJ,51.65243159999999,kg +84379ba2-1388-358c-bad5-88e8accbb555,SESCO,II.1.1,Catamarca,AR-K,annual,2022,naphtha combustion consumption by freight transport,4.6737459999999995,TJ,CO2,73300.0,kg/TJ,342585.5818,kg +6bdbb857-efab-38c3-9e14-55dec2ff8a4b,SESCO,II.1.1,Catamarca,AR-K,annual,2022,naphtha combustion consumption by freight transport,4.6737459999999995,TJ,CH4,3.0,kg/TJ,14.021237999999999,kg +b6db65b4-e344-3017-b133-658fbf6b8f13,SESCO,II.1.1,Catamarca,AR-K,annual,2022,naphtha combustion consumption by freight transport,4.6737459999999995,TJ,N2O,0.6,kg/TJ,2.8042475999999996,kg +4938d841-a484-3cbe-acdc-7ce52c1d70d5,SESCO,II.1.1,Chaco,AR-H,annual,2022,naphtha combustion consumption by freight transport,17.6697752,TJ,CO2,73300.0,kg/TJ,1295194.52216,kg +c4191af5-0250-387a-9ff8-a873604720a8,SESCO,II.1.1,Chaco,AR-H,annual,2022,naphtha combustion consumption by freight transport,17.6697752,TJ,CH4,3.0,kg/TJ,53.0093256,kg +3df9b4cf-bf48-33e8-be69-3918ef32e79f,SESCO,II.1.1,Chaco,AR-H,annual,2022,naphtha combustion consumption by freight transport,17.6697752,TJ,N2O,0.6,kg/TJ,10.60186512,kg +a2484bce-8af4-36d2-a7dd-809e3082e21a,SESCO,II.1.1,Chubut,AR-U,annual,2022,naphtha combustion consumption by freight transport,21.5293848,TJ,CO2,73300.0,kg/TJ,1578103.90584,kg +84a61855-716c-32df-83d4-7f84ebc4b150,SESCO,II.1.1,Chubut,AR-U,annual,2022,naphtha combustion consumption by freight transport,21.5293848,TJ,CH4,3.0,kg/TJ,64.5881544,kg +0e28bfb5-d22f-3e6d-8938-5c7d1b588763,SESCO,II.1.1,Chubut,AR-U,annual,2022,naphtha combustion consumption by freight transport,21.5293848,TJ,N2O,0.6,kg/TJ,12.917630879999999,kg +19f7a3ee-bcd9-3f6f-848e-98df096f1c3a,SESCO,II.1.1,Corrientes,AR-W,annual,2022,naphtha combustion consumption by freight transport,17.8808476,TJ,CO2,73300.0,kg/TJ,1310666.1290799999,kg +1d35d833-7173-3650-b160-1099b70f4d3a,SESCO,II.1.1,Corrientes,AR-W,annual,2022,naphtha combustion consumption by freight transport,17.8808476,TJ,CH4,3.0,kg/TJ,53.6425428,kg +a9f1ba10-c35d-3843-a0a5-ef8559c3bf83,SESCO,II.1.1,Corrientes,AR-W,annual,2022,naphtha combustion consumption by freight transport,17.8808476,TJ,N2O,0.6,kg/TJ,10.72850856,kg +6306324c-2e9b-3fb3-af32-dbaacb2d09e1,SESCO,II.1.1,Córdoba,AR-X,annual,2022,naphtha combustion consumption by freight transport,106.13926399999998,TJ,CO2,73300.0,kg/TJ,7780008.051199999,kg +bc5f0378-4200-3944-b675-f5e652986f97,SESCO,II.1.1,Córdoba,AR-X,annual,2022,naphtha combustion consumption by freight transport,106.13926399999998,TJ,CH4,3.0,kg/TJ,318.41779199999996,kg +6e270c81-cbd9-35d4-8f20-566f574cbc77,SESCO,II.1.1,Córdoba,AR-X,annual,2022,naphtha combustion consumption by freight transport,106.13926399999998,TJ,N2O,0.6,kg/TJ,63.68355839999999,kg +23963357-0517-3a8d-8de7-90c1d0034b75,SESCO,II.1.1,Entre Rios,AR-E,annual,2022,naphtha combustion consumption by freight transport,38.2041044,TJ,CO2,73300.0,kg/TJ,2800360.8525199997,kg +7c49c119-dc41-3133-92eb-dd00217e0124,SESCO,II.1.1,Entre Rios,AR-E,annual,2022,naphtha combustion consumption by freight transport,38.2041044,TJ,CH4,3.0,kg/TJ,114.61231319999999,kg +93e399c2-f1dd-37db-b3c9-c1325edb6726,SESCO,II.1.1,Entre Rios,AR-E,annual,2022,naphtha combustion consumption by freight transport,38.2041044,TJ,N2O,0.6,kg/TJ,22.92246264,kg +999c2ae6-7a25-34df-ae5c-69a77c5758d5,SESCO,II.1.1,Formosa,AR-P,annual,2022,naphtha combustion consumption by freight transport,5.698954799999999,TJ,CO2,73300.0,kg/TJ,417733.38683999993,kg +4d030bd3-0d86-3fe6-bcee-768e4860b5a4,SESCO,II.1.1,Formosa,AR-P,annual,2022,naphtha combustion consumption by freight transport,5.698954799999999,TJ,CH4,3.0,kg/TJ,17.096864399999998,kg +7d608770-1d0d-311d-8a6b-dbe62d6d29d6,SESCO,II.1.1,Formosa,AR-P,annual,2022,naphtha combustion consumption by freight transport,5.698954799999999,TJ,N2O,0.6,kg/TJ,3.4193728799999996,kg +7be6421e-4191-3b3e-b390-c1552ab417b8,SESCO,II.1.1,Jujuy,AR-Y,annual,2022,naphtha combustion consumption by freight transport,8.6841216,TJ,CO2,73300.0,kg/TJ,636546.1132799999,kg +ca1e0891-be4e-33b9-bb2c-c792100664b3,SESCO,II.1.1,Jujuy,AR-Y,annual,2022,naphtha combustion consumption by freight transport,8.6841216,TJ,CH4,3.0,kg/TJ,26.0523648,kg +4c78550f-ef34-3d88-a2cd-cdb85e778f6d,SESCO,II.1.1,Jujuy,AR-Y,annual,2022,naphtha combustion consumption by freight transport,8.6841216,TJ,N2O,0.6,kg/TJ,5.21047296,kg +828e4ca7-1bd4-34e3-b390-737f25062a69,SESCO,II.1.1,La Pampa,AR-L,annual,2022,naphtha combustion consumption by freight transport,10.8249988,TJ,CO2,73300.0,kg/TJ,793472.41204,kg +687cf47d-6dd1-3165-9e6c-8c9b0e3491c7,SESCO,II.1.1,La Pampa,AR-L,annual,2022,naphtha combustion consumption by freight transport,10.8249988,TJ,CH4,3.0,kg/TJ,32.474996399999995,kg +11a56c39-7db4-38f9-9d5a-d3fd19d18e9e,SESCO,II.1.1,La Pampa,AR-L,annual,2022,naphtha combustion consumption by freight transport,10.8249988,TJ,N2O,0.6,kg/TJ,6.494999279999999,kg +dd9ff4c7-a497-3a6a-8f34-dd6fa9426c40,SESCO,II.1.1,La Rioja,AR-F,annual,2022,naphtha combustion consumption by freight transport,8.0509044,TJ,CO2,73300.0,kg/TJ,590131.29252,kg +97dd748f-934e-357a-8afa-7d6aef892cbc,SESCO,II.1.1,La Rioja,AR-F,annual,2022,naphtha combustion consumption by freight transport,8.0509044,TJ,CH4,3.0,kg/TJ,24.1527132,kg +b930d892-7450-3c1f-b7c5-e587e06f875d,SESCO,II.1.1,La Rioja,AR-F,annual,2022,naphtha combustion consumption by freight transport,8.0509044,TJ,N2O,0.6,kg/TJ,4.83054264,kg +a1672399-c032-36df-a530-40416ba86f6f,SESCO,II.1.1,Mendoza,AR-M,annual,2022,naphtha combustion consumption by freight transport,48.84818399999999,TJ,CO2,73300.0,kg/TJ,3580571.8871999993,kg +c7f4c99c-4b7b-30eb-b3b1-eb55c6af6895,SESCO,II.1.1,Mendoza,AR-M,annual,2022,naphtha combustion consumption by freight transport,48.84818399999999,TJ,CH4,3.0,kg/TJ,146.54455199999995,kg +1801b9db-6fb5-3dc0-b069-84f1f1b188db,SESCO,II.1.1,Mendoza,AR-M,annual,2022,naphtha combustion consumption by freight transport,48.84818399999999,TJ,N2O,0.6,kg/TJ,29.30891039999999,kg +a800ae16-3e1b-3413-8ccb-540e9d7f4417,SESCO,II.1.1,Misiones,AR-N,annual,2022,naphtha combustion consumption by freight transport,16.433494,TJ,CO2,73300.0,kg/TJ,1204575.1102,kg +6eda53fe-df98-3375-9353-45943fd9548a,SESCO,II.1.1,Misiones,AR-N,annual,2022,naphtha combustion consumption by freight transport,16.433494,TJ,CH4,3.0,kg/TJ,49.300482,kg +6bad1493-dc62-3489-84c4-ff3dd6a03f0a,SESCO,II.1.1,Misiones,AR-N,annual,2022,naphtha combustion consumption by freight transport,16.433494,TJ,N2O,0.6,kg/TJ,9.8600964,kg +6013cd0e-b8ab-34d4-9894-f74d7cffdae9,SESCO,II.1.1,Neuquén,AR-Q,annual,2022,naphtha combustion consumption by freight transport,19.780499199999998,TJ,CO2,73300.0,kg/TJ,1449910.5913599997,kg +b0d2f57d-43da-323d-8617-ab50ebe5ebf6,SESCO,II.1.1,Neuquén,AR-Q,annual,2022,naphtha combustion consumption by freight transport,19.780499199999998,TJ,CH4,3.0,kg/TJ,59.3414976,kg +5f2af37c-0a94-3554-bb98-3757fde068de,SESCO,II.1.1,Neuquén,AR-Q,annual,2022,naphtha combustion consumption by freight transport,19.780499199999998,TJ,N2O,0.6,kg/TJ,11.868299519999999,kg +7cc3b09f-8716-35ea-9a46-5c5bc0355749,SESCO,II.1.1,Rio Negro,AR-R,annual,2022,naphtha combustion consumption by freight transport,22.4942872,TJ,CO2,73300.0,kg/TJ,1648831.25176,kg +5b1b2e68-d445-317a-b8f1-23e5cb3bfccb,SESCO,II.1.1,Rio Negro,AR-R,annual,2022,naphtha combustion consumption by freight transport,22.4942872,TJ,CH4,3.0,kg/TJ,67.48286159999999,kg +1f5c943a-49d5-33e6-9f44-8e125aa234b6,SESCO,II.1.1,Rio Negro,AR-R,annual,2022,naphtha combustion consumption by freight transport,22.4942872,TJ,N2O,0.6,kg/TJ,13.496572319999999,kg +cf49503d-d738-3e5d-b89a-3c3c37485f08,SESCO,II.1.1,Salta,AR-A,annual,2022,naphtha combustion consumption by freight transport,29.1882976,TJ,CO2,73300.0,kg/TJ,2139502.21408,kg +455e0ec9-6a2d-3653-8aad-1341d7c226b1,SESCO,II.1.1,Salta,AR-A,annual,2022,naphtha combustion consumption by freight transport,29.1882976,TJ,CH4,3.0,kg/TJ,87.5648928,kg +d9d29a57-6a14-3893-9d39-7d78463dcfa2,SESCO,II.1.1,Salta,AR-A,annual,2022,naphtha combustion consumption by freight transport,29.1882976,TJ,N2O,0.6,kg/TJ,17.512978559999997,kg +ae7e3d33-61a5-3e46-a043-5639a132052f,SESCO,II.1.1,San Juan,AR-J,annual,2022,naphtha combustion consumption by freight transport,12.935722799999999,TJ,CO2,73300.0,kg/TJ,948188.4812399999,kg +72392856-6c9f-3955-b3f4-e781077fcde9,SESCO,II.1.1,San Juan,AR-J,annual,2022,naphtha combustion consumption by freight transport,12.935722799999999,TJ,CH4,3.0,kg/TJ,38.807168399999995,kg +b398a015-ce1e-314d-9964-8f0443c86a63,SESCO,II.1.1,San Juan,AR-J,annual,2022,naphtha combustion consumption by freight transport,12.935722799999999,TJ,N2O,0.6,kg/TJ,7.761433679999999,kg +46786aea-ea9c-3889-b803-ac9e82f2e35a,SESCO,II.1.1,San Luis,AR-D,annual,2022,naphtha combustion consumption by freight transport,11.1868372,TJ,CO2,73300.0,kg/TJ,819995.1667599999,kg +5234136f-7093-3e55-926f-4cd66a9d6b72,SESCO,II.1.1,San Luis,AR-D,annual,2022,naphtha combustion consumption by freight transport,11.1868372,TJ,CH4,3.0,kg/TJ,33.5605116,kg +2c509990-0417-3a48-bb6d-51e3ba19c41a,SESCO,II.1.1,San Luis,AR-D,annual,2022,naphtha combustion consumption by freight transport,11.1868372,TJ,N2O,0.6,kg/TJ,6.71210232,kg +6b3900e4-b5fe-3481-bf53-28ec8d5107e3,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2022,naphtha combustion consumption by freight transport,11.910514,TJ,CO2,73300.0,kg/TJ,873040.6762,kg +f1134dae-446a-33d1-8659-9230a94b3455,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2022,naphtha combustion consumption by freight transport,11.910514,TJ,CH4,3.0,kg/TJ,35.731542,kg +6cfb5eaa-a89c-311d-aec7-8e6d70ddf7d3,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2022,naphtha combustion consumption by freight transport,11.910514,TJ,N2O,0.6,kg/TJ,7.1463084,kg +1ca801e6-1e1c-3bc0-a85a-50813602c2fe,SESCO,II.1.1,Santa Fe,AR-S,annual,2022,naphtha combustion consumption by freight transport,98.48035119999999,TJ,CO2,73300.0,kg/TJ,7218609.7429599995,kg +cc11da38-1431-3c2a-9bab-eb7a21cd62b0,SESCO,II.1.1,Santa Fe,AR-S,annual,2022,naphtha combustion consumption by freight transport,98.48035119999999,TJ,CH4,3.0,kg/TJ,295.4410536,kg +6a19b2ea-2ee3-3938-8e3d-77a13adbe956,SESCO,II.1.1,Santa Fe,AR-S,annual,2022,naphtha combustion consumption by freight transport,98.48035119999999,TJ,N2O,0.6,kg/TJ,59.08821071999999,kg +75b87125-ef50-3a32-997b-c58a56d86b37,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2022,naphtha combustion consumption by freight transport,9.2570324,TJ,CO2,73300.0,kg/TJ,678540.47492,kg +09e585c1-cbd6-3783-ad66-31a7313a21ac,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2022,naphtha combustion consumption by freight transport,9.2570324,TJ,CH4,3.0,kg/TJ,27.7710972,kg +9bd7a2cf-8279-3c3f-90c4-6303e3d64dd7,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2022,naphtha combustion consumption by freight transport,9.2570324,TJ,N2O,0.6,kg/TJ,5.55421944,kg +e7d791b6-8529-35be-b9fb-a1dfdf0d0653,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2022,naphtha combustion consumption by freight transport,11.337603199999998,TJ,CO2,73300.0,kg/TJ,831046.3145599999,kg +c9036dda-04a0-3e83-8a47-2127b5aef4dd,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2022,naphtha combustion consumption by freight transport,11.337603199999998,TJ,CH4,3.0,kg/TJ,34.0128096,kg +5a580da5-0854-3f18-b748-310603a9e0d0,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2022,naphtha combustion consumption by freight transport,11.337603199999998,TJ,N2O,0.6,kg/TJ,6.802561919999999,kg +14263890-332d-315c-80f2-832bc4a2f3dd,SESCO,II.1.1,Tucuman,AR-T,annual,2022,naphtha combustion consumption by freight transport,32.0830048,TJ,CO2,73300.0,kg/TJ,2351684.25184,kg +4005494b-7a6a-3233-b61e-7876bb9e6a23,SESCO,II.1.1,Tucuman,AR-T,annual,2022,naphtha combustion consumption by freight transport,32.0830048,TJ,CH4,3.0,kg/TJ,96.2490144,kg +b560cb41-5758-3118-a124-5683b1b38679,SESCO,II.1.1,Tucuman,AR-T,annual,2022,naphtha combustion consumption by freight transport,32.0830048,TJ,N2O,0.6,kg/TJ,19.249802879999997,kg +013398b2-86a8-3552-8e60-adccd1dbf5eb,SESCO,II.1.1,Buenos Aires,AR-B,annual,2022,naphtha combustion consumption by freight transport,670.6976275999999,TJ,CO2,73300.0,kg/TJ,49162136.10308,kg +43358711-3b81-3e40-854c-4856f19e0348,SESCO,II.1.1,Buenos Aires,AR-B,annual,2022,naphtha combustion consumption by freight transport,670.6976275999999,TJ,CH4,3.0,kg/TJ,2012.0928827999996,kg +443617b5-5648-3287-9964-93897c7dcb4b,SESCO,II.1.1,Buenos Aires,AR-B,annual,2022,naphtha combustion consumption by freight transport,670.6976275999999,TJ,N2O,0.6,kg/TJ,402.41857655999996,kg +2f890107-678c-3218-af56-304bed36c4ed,SESCO,II.1.1,Capital Federal,AR-C,annual,2022,naphtha combustion consumption by freight transport,118.86391439999998,TJ,CO2,73300.0,kg/TJ,8712724.92552,kg +75930206-af72-397c-a73f-e5d42cc5c386,SESCO,II.1.1,Capital Federal,AR-C,annual,2022,naphtha combustion consumption by freight transport,118.86391439999998,TJ,CH4,3.0,kg/TJ,356.59174319999994,kg +d8ca2a11-4696-3056-a320-ae2488bf914f,SESCO,II.1.1,Capital Federal,AR-C,annual,2022,naphtha combustion consumption by freight transport,118.86391439999998,TJ,N2O,0.6,kg/TJ,71.31834863999998,kg +0b7f826e-b3b7-30c0-9123-24b23896d803,SESCO,II.1.1,Catamarca,AR-K,annual,2022,naphtha combustion consumption by freight transport,1.9599579999999999,TJ,CO2,73300.0,kg/TJ,143664.9214,kg +4fe95c3e-80d3-3c98-b48d-d97452812b32,SESCO,II.1.1,Catamarca,AR-K,annual,2022,naphtha combustion consumption by freight transport,1.9599579999999999,TJ,CH4,3.0,kg/TJ,5.879873999999999,kg +43ffd3db-1dcb-3fab-87cd-7149ee3879a3,SESCO,II.1.1,Catamarca,AR-K,annual,2022,naphtha combustion consumption by freight transport,1.9599579999999999,TJ,N2O,0.6,kg/TJ,1.1759747999999999,kg +a6fa6b0e-7574-3555-a7bc-e3eee1d4849d,SESCO,II.1.1,Chaco,AR-H,annual,2022,naphtha combustion consumption by freight transport,16.493800399999998,TJ,CO2,73300.0,kg/TJ,1208995.5693199998,kg +0dd17256-e578-30d6-a62a-4f2682e72fe8,SESCO,II.1.1,Chaco,AR-H,annual,2022,naphtha combustion consumption by freight transport,16.493800399999998,TJ,CH4,3.0,kg/TJ,49.48140119999999,kg +0e19f9f9-8c60-3e07-9e8c-47bc395c6f7b,SESCO,II.1.1,Chaco,AR-H,annual,2022,naphtha combustion consumption by freight transport,16.493800399999998,TJ,N2O,0.6,kg/TJ,9.896280239999998,kg +bd47a62f-a668-3c2c-82d8-11a99bbac028,SESCO,II.1.1,Chubut,AR-U,annual,2022,naphtha combustion consumption by freight transport,15.438438399999999,TJ,CO2,73300.0,kg/TJ,1131637.5347199999,kg +234d8707-d7da-3f31-ae02-7aee54acedbe,SESCO,II.1.1,Chubut,AR-U,annual,2022,naphtha combustion consumption by freight transport,15.438438399999999,TJ,CH4,3.0,kg/TJ,46.3153152,kg +3c2aff0d-a8e0-3dad-82ea-184e211c43d0,SESCO,II.1.1,Chubut,AR-U,annual,2022,naphtha combustion consumption by freight transport,15.438438399999999,TJ,N2O,0.6,kg/TJ,9.263063039999999,kg +5889b97a-b594-35f7-b96f-043f1fd6c250,SESCO,II.1.1,Corrientes,AR-W,annual,2022,naphtha combustion consumption by freight transport,21.348465599999997,TJ,CO2,73300.0,kg/TJ,1564842.5284799999,kg +4c328bbe-47b9-36da-a24e-4778afa13fff,SESCO,II.1.1,Corrientes,AR-W,annual,2022,naphtha combustion consumption by freight transport,21.348465599999997,TJ,CH4,3.0,kg/TJ,64.04539679999999,kg +12d3a180-98d3-3649-9daa-5d979f236754,SESCO,II.1.1,Corrientes,AR-W,annual,2022,naphtha combustion consumption by freight transport,21.348465599999997,TJ,N2O,0.6,kg/TJ,12.809079359999998,kg +2f86ba81-9531-3289-a855-be8a917d497c,SESCO,II.1.1,Córdoba,AR-X,annual,2022,naphtha combustion consumption by freight transport,130.714122,TJ,CO2,73300.0,kg/TJ,9581345.1426,kg +6e29355b-5ff5-3784-b379-a3d75317f7f1,SESCO,II.1.1,Córdoba,AR-X,annual,2022,naphtha combustion consumption by freight transport,130.714122,TJ,CH4,3.0,kg/TJ,392.14236600000004,kg +9da0815b-f8d0-3cac-aa75-31378efa9738,SESCO,II.1.1,Córdoba,AR-X,annual,2022,naphtha combustion consumption by freight transport,130.714122,TJ,N2O,0.6,kg/TJ,78.4284732,kg +ceb8bacf-e82a-36ca-b984-e7b4f54c7188,SESCO,II.1.1,Entre Rios,AR-E,annual,2022,naphtha combustion consumption by freight transport,35.27924399999999,TJ,CO2,73300.0,kg/TJ,2585968.585199999,kg +7c8d85c4-d6ee-3769-8ba3-e5c3f353d682,SESCO,II.1.1,Entre Rios,AR-E,annual,2022,naphtha combustion consumption by freight transport,35.27924399999999,TJ,CH4,3.0,kg/TJ,105.83773199999997,kg +9f0fe9b3-6abb-302a-ae94-cb1ba44dc016,SESCO,II.1.1,Entre Rios,AR-E,annual,2022,naphtha combustion consumption by freight transport,35.27924399999999,TJ,N2O,0.6,kg/TJ,21.167546399999996,kg +b0216afc-fad3-32aa-9f84-8cca374d9132,SESCO,II.1.1,Formosa,AR-P,annual,2022,naphtha combustion consumption by freight transport,3.6786904,TJ,CO2,73300.0,kg/TJ,269648.00632,kg +953b0675-a514-3f44-acc9-208d21b68c29,SESCO,II.1.1,Formosa,AR-P,annual,2022,naphtha combustion consumption by freight transport,3.6786904,TJ,CH4,3.0,kg/TJ,11.036071199999999,kg +02987a31-812e-34cf-b4a0-2d8cdea958fc,SESCO,II.1.1,Formosa,AR-P,annual,2022,naphtha combustion consumption by freight transport,3.6786904,TJ,N2O,0.6,kg/TJ,2.20721424,kg +b4ab27f4-2908-36ca-9cce-ae0a956e9c4c,SESCO,II.1.1,Jujuy,AR-Y,annual,2022,naphtha combustion consumption by freight transport,4.7642055999999995,TJ,CO2,73300.0,kg/TJ,349216.27047999995,kg +d4cf704c-a578-3a9d-9dd7-261c92d2aed8,SESCO,II.1.1,Jujuy,AR-Y,annual,2022,naphtha combustion consumption by freight transport,4.7642055999999995,TJ,CH4,3.0,kg/TJ,14.292616799999998,kg +2795e491-a94f-355a-bd16-1c86303ee076,SESCO,II.1.1,Jujuy,AR-Y,annual,2022,naphtha combustion consumption by freight transport,4.7642055999999995,TJ,N2O,0.6,kg/TJ,2.8585233599999995,kg +eaee5c7e-6889-3c94-b59f-8dedc9328fc2,SESCO,II.1.1,La Pampa,AR-L,annual,2022,naphtha combustion consumption by freight transport,13.418173999999999,TJ,CO2,73300.0,kg/TJ,983552.1541999999,kg +dcf5716b-a911-33ca-9670-84e0d0bb713e,SESCO,II.1.1,La Pampa,AR-L,annual,2022,naphtha combustion consumption by freight transport,13.418173999999999,TJ,CH4,3.0,kg/TJ,40.254521999999994,kg +924ba423-ec62-38fe-8a34-fc560eb0e269,SESCO,II.1.1,La Pampa,AR-L,annual,2022,naphtha combustion consumption by freight transport,13.418173999999999,TJ,N2O,0.6,kg/TJ,8.050904399999999,kg +1de89e8c-6d45-30f5-b86e-24de754d51e4,SESCO,II.1.1,La Rioja,AR-F,annual,2022,naphtha combustion consumption by freight transport,6.935236,TJ,CO2,73300.0,kg/TJ,508352.7988,kg +d2870812-ac7f-38e9-a5e4-9e0f206c28e9,SESCO,II.1.1,La Rioja,AR-F,annual,2022,naphtha combustion consumption by freight transport,6.935236,TJ,CH4,3.0,kg/TJ,20.805708,kg +fef112db-b27c-3664-a67f-be99c16e04a0,SESCO,II.1.1,La Rioja,AR-F,annual,2022,naphtha combustion consumption by freight transport,6.935236,TJ,N2O,0.6,kg/TJ,4.1611416,kg +b962aa4e-9ce4-3b23-8094-14f1ab8a21fe,SESCO,II.1.1,Mendoza,AR-M,annual,2022,naphtha combustion consumption by freight transport,68.146232,TJ,CO2,73300.0,kg/TJ,4995118.8056,kg +1dd1a7cf-b3bb-3ca3-8fd2-2c08d0de0d47,SESCO,II.1.1,Mendoza,AR-M,annual,2022,naphtha combustion consumption by freight transport,68.146232,TJ,CH4,3.0,kg/TJ,204.438696,kg +3f46da7f-c18f-3082-9b0d-156bad9fdcf8,SESCO,II.1.1,Mendoza,AR-M,annual,2022,naphtha combustion consumption by freight transport,68.146232,TJ,N2O,0.6,kg/TJ,40.8877392,kg +d922f58e-4b8d-3438-82cd-99ef17d967de,SESCO,II.1.1,Misiones,AR-N,annual,2022,naphtha combustion consumption by freight transport,17.0968644,TJ,CO2,73300.0,kg/TJ,1253200.1605200002,kg +d750eeb7-3294-3120-abb0-6e8089e10405,SESCO,II.1.1,Misiones,AR-N,annual,2022,naphtha combustion consumption by freight transport,17.0968644,TJ,CH4,3.0,kg/TJ,51.2905932,kg +4d3f1205-0a72-3d98-9c06-eeaf49388191,SESCO,II.1.1,Misiones,AR-N,annual,2022,naphtha combustion consumption by freight transport,17.0968644,TJ,N2O,0.6,kg/TJ,10.258118640000001,kg +9654378d-495c-3d98-a563-a51c4fa552e0,SESCO,II.1.1,Neuquén,AR-Q,annual,2022,naphtha combustion consumption by freight transport,42.0335608,TJ,CO2,73300.0,kg/TJ,3081060.00664,kg +5787629f-7238-3480-aaf6-77b9e3857393,SESCO,II.1.1,Neuquén,AR-Q,annual,2022,naphtha combustion consumption by freight transport,42.0335608,TJ,CH4,3.0,kg/TJ,126.10068239999998,kg +10608793-ce5b-38ed-8949-18c751d16c3b,SESCO,II.1.1,Neuquén,AR-Q,annual,2022,naphtha combustion consumption by freight transport,42.0335608,TJ,N2O,0.6,kg/TJ,25.220136479999997,kg +7762573b-24cc-3929-a54e-953a839ab38c,SESCO,II.1.1,Rio Negro,AR-R,annual,2022,naphtha combustion consumption by freight transport,38.143798,TJ,CO2,73300.0,kg/TJ,2795940.3934,kg +fd80ad8e-a69b-3471-9e1f-6f7405a936de,SESCO,II.1.1,Rio Negro,AR-R,annual,2022,naphtha combustion consumption by freight transport,38.143798,TJ,CH4,3.0,kg/TJ,114.43139399999998,kg +f5dc3715-d32a-3dc7-a5d1-453a5ea33c95,SESCO,II.1.1,Rio Negro,AR-R,annual,2022,naphtha combustion consumption by freight transport,38.143798,TJ,N2O,0.6,kg/TJ,22.886278799999996,kg +78a0fb3a-af77-3048-b8ca-88af6fa13c96,SESCO,II.1.1,Salta,AR-A,annual,2022,naphtha combustion consumption by freight transport,22.675206399999997,TJ,CO2,73300.0,kg/TJ,1662092.6291199997,kg +3eed95e9-8cea-357e-a1fe-74ba2375388c,SESCO,II.1.1,Salta,AR-A,annual,2022,naphtha combustion consumption by freight transport,22.675206399999997,TJ,CH4,3.0,kg/TJ,68.0256192,kg +77e47ac4-1515-30cf-b0f3-481e86029fb6,SESCO,II.1.1,Salta,AR-A,annual,2022,naphtha combustion consumption by freight transport,22.675206399999997,TJ,N2O,0.6,kg/TJ,13.605123839999997,kg +2226736a-48d6-31f2-ab0c-37c6d8edebf0,SESCO,II.1.1,San Juan,AR-J,annual,2022,naphtha combustion consumption by freight transport,8.8348876,TJ,CO2,73300.0,kg/TJ,647597.26108,kg +0b574552-30cf-3c11-89f1-5aa01a585eb9,SESCO,II.1.1,San Juan,AR-J,annual,2022,naphtha combustion consumption by freight transport,8.8348876,TJ,CH4,3.0,kg/TJ,26.5046628,kg +27cd3fb1-810b-3512-a5c6-c10e4c8eb6c5,SESCO,II.1.1,San Juan,AR-J,annual,2022,naphtha combustion consumption by freight transport,8.8348876,TJ,N2O,0.6,kg/TJ,5.30093256,kg +52e2fa4b-ad95-3baa-b5c7-47981a5247ec,SESCO,II.1.1,San Luis,AR-D,annual,2022,naphtha combustion consumption by freight transport,9.468104799999999,TJ,CO2,73300.0,kg/TJ,694012.0818399999,kg +4b04dadc-59b1-37f3-a734-8c83e4795a09,SESCO,II.1.1,San Luis,AR-D,annual,2022,naphtha combustion consumption by freight transport,9.468104799999999,TJ,CH4,3.0,kg/TJ,28.404314399999997,kg +489d149d-915e-3b97-869e-89800fcdf723,SESCO,II.1.1,San Luis,AR-D,annual,2022,naphtha combustion consumption by freight transport,9.468104799999999,TJ,N2O,0.6,kg/TJ,5.680862879999999,kg +5b3f65f7-fc5e-3d21-8d22-652ab73b2fc5,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2022,naphtha combustion consumption by freight transport,6.422631599999999,TJ,CO2,73300.0,kg/TJ,470778.8962799999,kg +0bd92f12-da45-39b0-93f3-cc69cf3ef3ad,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2022,naphtha combustion consumption by freight transport,6.422631599999999,TJ,CH4,3.0,kg/TJ,19.267894799999997,kg +8ed8cf9f-742e-33ab-94d6-93c155e78db3,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2022,naphtha combustion consumption by freight transport,6.422631599999999,TJ,N2O,0.6,kg/TJ,3.853578959999999,kg +135206b0-1882-335d-bd01-f07f306d224d,SESCO,II.1.1,Santa Fe,AR-S,annual,2022,naphtha combustion consumption by freight transport,110.05917999999998,TJ,CO2,73300.0,kg/TJ,8067337.893999998,kg +ea8d6596-22c8-310b-8eb1-a978798c8db6,SESCO,II.1.1,Santa Fe,AR-S,annual,2022,naphtha combustion consumption by freight transport,110.05917999999998,TJ,CH4,3.0,kg/TJ,330.17753999999996,kg +243fdb32-9b1c-3000-85bc-30c204f26de8,SESCO,II.1.1,Santa Fe,AR-S,annual,2022,naphtha combustion consumption by freight transport,110.05917999999998,TJ,N2O,0.6,kg/TJ,66.035508,kg +1d22e4be-3b2c-31a0-b899-d4a73ecfe367,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2022,naphtha combustion consumption by freight transport,6.0004868,TJ,CO2,73300.0,kg/TJ,439835.68244,kg +5f823e81-cecd-3d19-9340-afa597aeb1fa,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2022,naphtha combustion consumption by freight transport,6.0004868,TJ,CH4,3.0,kg/TJ,18.0014604,kg +688cb3eb-e803-3654-a6fa-d7dba2589f5f,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2022,naphtha combustion consumption by freight transport,6.0004868,TJ,N2O,0.6,kg/TJ,3.60029208,kg +962b2a3a-1714-3e63-abb0-a715d9b6ecd3,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2022,naphtha combustion consumption by freight transport,7.236767999999999,TJ,CO2,73300.0,kg/TJ,530455.0944,kg +787a67b4-18fb-3796-a97a-e6bc7ea4d92b,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2022,naphtha combustion consumption by freight transport,7.236767999999999,TJ,CH4,3.0,kg/TJ,21.710303999999997,kg +8e2712d7-a941-3ffe-a74e-495e1f66964d,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2022,naphtha combustion consumption by freight transport,7.236767999999999,TJ,N2O,0.6,kg/TJ,4.342060799999999,kg +f5afcdba-fbb2-3252-9136-46603aa45419,SESCO,II.1.1,Tucuman,AR-T,annual,2022,naphtha combustion consumption by freight transport,16.1922684,TJ,CO2,73300.0,kg/TJ,1186893.27372,kg +6f7605a6-b0fa-3567-a3aa-992342c6d499,SESCO,II.1.1,Tucuman,AR-T,annual,2022,naphtha combustion consumption by freight transport,16.1922684,TJ,CH4,3.0,kg/TJ,48.576805199999995,kg +48376be9-1954-3caa-bd1e-a372e9151779,SESCO,II.1.1,Tucuman,AR-T,annual,2022,naphtha combustion consumption by freight transport,16.1922684,TJ,N2O,0.6,kg/TJ,9.71536104,kg +89a5af34-4732-3846-bc22-2a60882ad741,SESCO,II.5.1,Buenos Aires,AR-B,annual,2023,naphtha combustion consumption by agriculture machines,33.4398988,TJ,CO2,73300.0,kg/TJ,2451144.5820400002,kg +1641b01b-8adb-3bc7-9890-a24c20198505,SESCO,II.5.1,Buenos Aires,AR-B,annual,2023,naphtha combustion consumption by agriculture machines,33.4398988,TJ,CH4,3.0,kg/TJ,100.3196964,kg +9b601e83-5f0c-3c68-83ff-4b68429dce33,SESCO,II.5.1,Buenos Aires,AR-B,annual,2023,naphtha combustion consumption by agriculture machines,33.4398988,TJ,N2O,0.6,kg/TJ,20.06393928,kg +5c67c103-af04-3588-9662-8615690a3669,SESCO,II.5.1,Córdoba,AR-X,annual,2023,naphtha combustion consumption by agriculture machines,13.538786799999999,TJ,CO2,73300.0,kg/TJ,992393.0724399999,kg +53a139d5-5868-3f19-9b35-e50eb814e57d,SESCO,II.5.1,Córdoba,AR-X,annual,2023,naphtha combustion consumption by agriculture machines,13.538786799999999,TJ,CH4,3.0,kg/TJ,40.6163604,kg +89779cba-420a-3add-a011-8c15656fbf0a,SESCO,II.5.1,Córdoba,AR-X,annual,2023,naphtha combustion consumption by agriculture machines,13.538786799999999,TJ,N2O,0.6,kg/TJ,8.12327208,kg +e9e5003b-2c42-3b46-9d08-ca0e1e74857e,SESCO,II.5.1,Tucuman,AR-T,annual,2023,naphtha combustion consumption by agriculture machines,7.3573808,TJ,CO2,73300.0,kg/TJ,539296.01264,kg +0b326cd7-d6fe-3f62-b9ea-ba59c8ca9eba,SESCO,II.5.1,Tucuman,AR-T,annual,2023,naphtha combustion consumption by agriculture machines,7.3573808,TJ,CH4,3.0,kg/TJ,22.072142399999997,kg +00acb6cf-4d60-3462-8eab-f781624cb593,SESCO,II.5.1,Tucuman,AR-T,annual,2023,naphtha combustion consumption by agriculture machines,7.3573808,TJ,N2O,0.6,kg/TJ,4.41442848,kg +02ffc203-d72f-3da0-b4a6-946448c21a50,SESCO,II.5.1,Buenos Aires,AR-B,annual,2023,naphtha combustion consumption by agriculture machines,4.3119076,TJ,CO2,73300.0,kg/TJ,316062.82707999996,kg +b9195f7b-5052-3412-bebd-9225d07212cf,SESCO,II.5.1,Buenos Aires,AR-B,annual,2023,naphtha combustion consumption by agriculture machines,4.3119076,TJ,CH4,3.0,kg/TJ,12.935722799999999,kg +627136b1-4e2a-359e-88d1-aaeb2c4ef866,SESCO,II.5.1,Buenos Aires,AR-B,annual,2023,naphtha combustion consumption by agriculture machines,4.3119076,TJ,N2O,0.6,kg/TJ,2.5871445599999996,kg +c167a884-bfce-3357-852f-f48022de4c67,SESCO,II.5.1,Córdoba,AR-X,annual,2023,naphtha combustion consumption by agriculture machines,1.4172003999999998,TJ,CO2,73300.0,kg/TJ,103880.78931999998,kg +a2aa25ff-969f-3e04-96b1-dd0b4d4c4208,SESCO,II.5.1,Córdoba,AR-X,annual,2023,naphtha combustion consumption by agriculture machines,1.4172003999999998,TJ,CH4,3.0,kg/TJ,4.2516012,kg +32665cf4-ce35-3bdc-b052-804902c271bc,SESCO,II.5.1,Córdoba,AR-X,annual,2023,naphtha combustion consumption by agriculture machines,1.4172003999999998,TJ,N2O,0.6,kg/TJ,0.8503202399999998,kg +69cac33e-df65-3cb1-87a7-5ef9b38b1d4a,SESCO,II.5.1,Tucuman,AR-T,annual,2023,naphtha combustion consumption by agriculture machines,0.1809192,TJ,CO2,73300.0,kg/TJ,13261.37736,kg +89a45a66-c43f-3c29-8b92-9e04c2e5e9c5,SESCO,II.5.1,Tucuman,AR-T,annual,2023,naphtha combustion consumption by agriculture machines,0.1809192,TJ,CH4,3.0,kg/TJ,0.5427576000000001,kg +0a90643a-fa7c-36c8-acf5-0488d60bbfee,SESCO,II.5.1,Tucuman,AR-T,annual,2023,naphtha combustion consumption by agriculture machines,0.1809192,TJ,N2O,0.6,kg/TJ,0.10855152,kg +d5ee69f5-89dc-3760-a02c-5ed0b863f549,SESCO,II.1.1,Buenos Aires,AR-B,annual,2023,naphtha combustion consumption by to the public,1415.4816675999998,TJ,CO2,73300.0,kg/TJ,103754806.23507999,kg +5d10af09-7b9a-32ab-9ad3-e3ec850543e5,SESCO,II.1.1,Buenos Aires,AR-B,annual,2023,naphtha combustion consumption by to the public,1415.4816675999998,TJ,CH4,3.0,kg/TJ,4246.445002799999,kg +9a7b1889-78a1-3db4-a7f5-25325852192e,SESCO,II.1.1,Buenos Aires,AR-B,annual,2023,naphtha combustion consumption by to the public,1415.4816675999998,TJ,N2O,0.6,kg/TJ,849.2890005599999,kg +b6c3f1e3-c2e3-336c-a091-05893995c0b2,SESCO,II.1.1,Capital Federal,AR-C,annual,2023,naphtha combustion consumption by to the public,80.62965679999999,TJ,CO2,73300.0,kg/TJ,5910153.843439999,kg +9be4d9d4-5a6d-3ba4-8a7d-98d0e5fd34f8,SESCO,II.1.1,Capital Federal,AR-C,annual,2023,naphtha combustion consumption by to the public,80.62965679999999,TJ,CH4,3.0,kg/TJ,241.88897039999998,kg +2b94871c-601f-3cbf-b6fe-dc66b667c8c6,SESCO,II.1.1,Capital Federal,AR-C,annual,2023,naphtha combustion consumption by to the public,80.62965679999999,TJ,N2O,0.6,kg/TJ,48.377794079999994,kg +75ea6268-e177-3054-a41a-bef6b4ffd012,SESCO,II.1.1,Catamarca,AR-K,annual,2023,naphtha combustion consumption by to the public,30.6959576,TJ,CO2,73300.0,kg/TJ,2250013.69208,kg +bc5ac8ed-2fd2-3e93-8d41-4453e0a91654,SESCO,II.1.1,Catamarca,AR-K,annual,2023,naphtha combustion consumption by to the public,30.6959576,TJ,CH4,3.0,kg/TJ,92.0878728,kg +c4fbf1d0-76a1-33cb-9c14-06125cdd3f36,SESCO,II.1.1,Catamarca,AR-K,annual,2023,naphtha combustion consumption by to the public,30.6959576,TJ,N2O,0.6,kg/TJ,18.41757456,kg +0d4fd181-5afc-396a-80fe-076edb8de234,SESCO,II.1.1,Corrientes,AR-W,annual,2023,naphtha combustion consumption by to the public,0.6332171999999999,TJ,CO2,73300.0,kg/TJ,46414.820759999995,kg +06f24c45-86d4-3112-a9a9-49b0596ced2b,SESCO,II.1.1,Corrientes,AR-W,annual,2023,naphtha combustion consumption by to the public,0.6332171999999999,TJ,CH4,3.0,kg/TJ,1.8996515999999999,kg +6668270a-ca64-35b5-8d2f-b68b0681759f,SESCO,II.1.1,Corrientes,AR-W,annual,2023,naphtha combustion consumption by to the public,0.6332171999999999,TJ,N2O,0.6,kg/TJ,0.37993031999999993,kg +82bad848-366e-3d0c-8639-ca1da1e0c217,SESCO,II.1.1,Córdoba,AR-X,annual,2023,naphtha combustion consumption by to the public,511.91087639999995,TJ,CO2,73300.0,kg/TJ,37523067.24011999,kg +15e00eed-4a36-38a8-bf29-c35edc2bd9f0,SESCO,II.1.1,Córdoba,AR-X,annual,2023,naphtha combustion consumption by to the public,511.91087639999995,TJ,CH4,3.0,kg/TJ,1535.7326291999998,kg +5aa33224-a57f-36c7-b920-93649da75839,SESCO,II.1.1,Córdoba,AR-X,annual,2023,naphtha combustion consumption by to the public,511.91087639999995,TJ,N2O,0.6,kg/TJ,307.14652584,kg +3d0ade95-d700-3cf1-99db-ae3c2434879a,SESCO,II.1.1,Entre Rios,AR-E,annual,2023,naphtha combustion consumption by to the public,149.7709444,TJ,CO2,73300.0,kg/TJ,10978210.22452,kg +6c5df7fb-da43-36bc-9ca4-1c53b4358e5e,SESCO,II.1.1,Entre Rios,AR-E,annual,2023,naphtha combustion consumption by to the public,149.7709444,TJ,CH4,3.0,kg/TJ,449.3128332,kg +06708351-e0d5-3cfb-876d-1e8bebd9c16c,SESCO,II.1.1,Entre Rios,AR-E,annual,2023,naphtha combustion consumption by to the public,149.7709444,TJ,N2O,0.6,kg/TJ,89.86256664,kg +558027c3-cb85-3a6b-9820-0e36f9bce0c4,SESCO,II.1.1,La Rioja,AR-F,annual,2023,naphtha combustion consumption by to the public,1.3568939999999998,TJ,CO2,73300.0,kg/TJ,99460.33019999998,kg +309b50bd-5c8c-3dcc-ab7c-7a6641856206,SESCO,II.1.1,La Rioja,AR-F,annual,2023,naphtha combustion consumption by to the public,1.3568939999999998,TJ,CH4,3.0,kg/TJ,4.070682,kg +8b0147c4-7c88-3e08-8848-4f9e85666e04,SESCO,II.1.1,La Rioja,AR-F,annual,2023,naphtha combustion consumption by to the public,1.3568939999999998,TJ,N2O,0.6,kg/TJ,0.8141363999999999,kg +24689555-4a3c-3808-afee-55feb616c964,SESCO,II.1.1,Mendoza,AR-M,annual,2023,naphtha combustion consumption by to the public,374.86458239999996,TJ,CO2,73300.0,kg/TJ,27477573.889919996,kg +ae681646-38f5-300c-9263-28411a85f434,SESCO,II.1.1,Mendoza,AR-M,annual,2023,naphtha combustion consumption by to the public,374.86458239999996,TJ,CH4,3.0,kg/TJ,1124.5937471999998,kg +a7973388-a2b5-3b75-9461-e8d8a17087fc,SESCO,II.1.1,Mendoza,AR-M,annual,2023,naphtha combustion consumption by to the public,374.86458239999996,TJ,N2O,0.6,kg/TJ,224.91874943999997,kg +47b3e9b1-83ff-3aff-bd54-839e78e8fc05,SESCO,II.1.1,San Luis,AR-D,annual,2023,naphtha combustion consumption by to the public,61.18084279999999,TJ,CO2,73300.0,kg/TJ,4484555.77724,kg +2bceb590-7a03-3632-abdb-f31adb0ec1e1,SESCO,II.1.1,San Luis,AR-D,annual,2023,naphtha combustion consumption by to the public,61.18084279999999,TJ,CH4,3.0,kg/TJ,183.54252839999998,kg +57f8ed7b-92e4-37bb-84f8-9dc1cbb379e1,SESCO,II.1.1,San Luis,AR-D,annual,2023,naphtha combustion consumption by to the public,61.18084279999999,TJ,N2O,0.6,kg/TJ,36.708505679999995,kg +6f4a3ae6-8304-304e-babe-88511043782a,SESCO,II.1.1,Santa Fe,AR-S,annual,2023,naphtha combustion consumption by to the public,439.33212399999996,TJ,CO2,73300.0,kg/TJ,32203044.6892,kg +1e3fc1b5-5982-31cb-971b-a4b724dfd50d,SESCO,II.1.1,Santa Fe,AR-S,annual,2023,naphtha combustion consumption by to the public,439.33212399999996,TJ,CH4,3.0,kg/TJ,1317.9963719999998,kg +e03ad541-d6ec-39a9-82fa-fdbf9d8d7244,SESCO,II.1.1,Santa Fe,AR-S,annual,2023,naphtha combustion consumption by to the public,439.33212399999996,TJ,N2O,0.6,kg/TJ,263.59927439999996,kg +ec95cefb-7c4f-3ad1-9036-191934c6a687,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2023,naphtha combustion consumption by to the public,56.4467904,TJ,CO2,73300.0,kg/TJ,4137549.7363199997,kg +91a37247-eda4-3a83-a721-26388c057415,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2023,naphtha combustion consumption by to the public,56.4467904,TJ,CH4,3.0,kg/TJ,169.3403712,kg +64031593-e18d-3ea9-97e2-3ed13a182098,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2023,naphtha combustion consumption by to the public,56.4467904,TJ,N2O,0.6,kg/TJ,33.86807424,kg +0f7bdba5-eb04-3a4f-9196-bdb937c0e63e,SESCO,II.1.1,Tucuman,AR-T,annual,2023,naphtha combustion consumption by to the public,20.564482399999996,TJ,CO2,73300.0,kg/TJ,1507376.5599199997,kg +b48cda2e-750a-31d1-a211-40fb9ce63e34,SESCO,II.1.1,Tucuman,AR-T,annual,2023,naphtha combustion consumption by to the public,20.564482399999996,TJ,CH4,3.0,kg/TJ,61.69344719999999,kg +c0d0c47a-cb84-3e1e-bd8d-7db1ddbffb9c,SESCO,II.1.1,Tucuman,AR-T,annual,2023,naphtha combustion consumption by to the public,20.564482399999996,TJ,N2O,0.6,kg/TJ,12.338689439999998,kg +1efc6f2e-0edb-32e8-a8dc-caca593ca05c,SESCO,II.1.1,Buenos Aires,AR-B,annual,2023,naphtha combustion consumption by to the public,106.1091108,TJ,CO2,73300.0,kg/TJ,7777797.82164,kg +dcf924af-a855-3321-a02e-4803216b2e3f,SESCO,II.1.1,Buenos Aires,AR-B,annual,2023,naphtha combustion consumption by to the public,106.1091108,TJ,CH4,3.0,kg/TJ,318.3273324,kg +316b4352-9151-39d8-a53d-ed5fc71fcd4d,SESCO,II.1.1,Buenos Aires,AR-B,annual,2023,naphtha combustion consumption by to the public,106.1091108,TJ,N2O,0.6,kg/TJ,63.66546647999999,kg +21e05058-38fa-3669-a6e5-22fc214a27a0,SESCO,II.1.1,Capital Federal,AR-C,annual,2023,naphtha combustion consumption by to the public,10.2219348,TJ,CO2,73300.0,kg/TJ,749267.82084,kg +5562a772-6696-34c1-9615-d2d9abbff925,SESCO,II.1.1,Capital Federal,AR-C,annual,2023,naphtha combustion consumption by to the public,10.2219348,TJ,CH4,3.0,kg/TJ,30.6658044,kg +ec3b5877-4d96-35ac-bd90-df19bc63b516,SESCO,II.1.1,Capital Federal,AR-C,annual,2023,naphtha combustion consumption by to the public,10.2219348,TJ,N2O,0.6,kg/TJ,6.133160879999999,kg +0cfb9503-2e3c-3b57-8c56-4395eb2907a6,SESCO,II.1.1,Catamarca,AR-K,annual,2023,naphtha combustion consumption by to the public,3.7088435999999994,TJ,CO2,73300.0,kg/TJ,271858.23587999993,kg +c9a3fc79-59a6-3abb-9f17-e32fdc59efb1,SESCO,II.1.1,Catamarca,AR-K,annual,2023,naphtha combustion consumption by to the public,3.7088435999999994,TJ,CH4,3.0,kg/TJ,11.126530799999998,kg +db14139a-ee97-3895-bd8c-87395cff377c,SESCO,II.1.1,Catamarca,AR-K,annual,2023,naphtha combustion consumption by to the public,3.7088435999999994,TJ,N2O,0.6,kg/TJ,2.2253061599999997,kg +19eb519a-1550-3bf0-a67c-323564c28b84,SESCO,II.1.1,Córdoba,AR-X,annual,2023,naphtha combustion consumption by to the public,54.7883644,TJ,CO2,73300.0,kg/TJ,4015987.11052,kg +2d2f50c2-ec91-3b4d-b2bd-93c316f53f6d,SESCO,II.1.1,Córdoba,AR-X,annual,2023,naphtha combustion consumption by to the public,54.7883644,TJ,CH4,3.0,kg/TJ,164.3650932,kg +c3844674-70e1-3ccc-9cf8-a4fb76df61c4,SESCO,II.1.1,Córdoba,AR-X,annual,2023,naphtha combustion consumption by to the public,54.7883644,TJ,N2O,0.6,kg/TJ,32.87301864,kg +a25eb0b5-e6dd-3284-9fc7-e0e86c4c7e18,SESCO,II.1.1,Entre Rios,AR-E,annual,2023,naphtha combustion consumption by to the public,19.5694268,TJ,CO2,73300.0,kg/TJ,1434438.9844399998,kg +26b1e8b2-1b40-34b0-a36d-b7eceb120edf,SESCO,II.1.1,Entre Rios,AR-E,annual,2023,naphtha combustion consumption by to the public,19.5694268,TJ,CH4,3.0,kg/TJ,58.70828039999999,kg +f6fdc8f9-9559-3a79-ba32-51e732530a57,SESCO,II.1.1,Entre Rios,AR-E,annual,2023,naphtha combustion consumption by to the public,19.5694268,TJ,N2O,0.6,kg/TJ,11.741656079999998,kg +5b372581-6767-3584-a841-db53d08437b1,SESCO,II.1.1,La Rioja,AR-F,annual,2023,naphtha combustion consumption by to the public,0.5126044,TJ,CO2,73300.0,kg/TJ,37573.902519999996,kg +2356c859-27d5-31bf-8c40-c264879ea943,SESCO,II.1.1,La Rioja,AR-F,annual,2023,naphtha combustion consumption by to the public,0.5126044,TJ,CH4,3.0,kg/TJ,1.5378132,kg +ca727331-8132-3348-9682-8147275a4e87,SESCO,II.1.1,La Rioja,AR-F,annual,2023,naphtha combustion consumption by to the public,0.5126044,TJ,N2O,0.6,kg/TJ,0.30756263999999994,kg +fcd3007b-ec5a-3c97-aa44-f6a4e3d5d20f,SESCO,II.1.1,Mendoza,AR-M,annual,2023,naphtha combustion consumption by to the public,53.7330024,TJ,CO2,73300.0,kg/TJ,3938629.0759199997,kg +15b2573b-6e9d-3439-8a84-7375a192e422,SESCO,II.1.1,Mendoza,AR-M,annual,2023,naphtha combustion consumption by to the public,53.7330024,TJ,CH4,3.0,kg/TJ,161.19900719999998,kg +c5caa873-59f4-3af5-8864-98164e31b0d6,SESCO,II.1.1,Mendoza,AR-M,annual,2023,naphtha combustion consumption by to the public,53.7330024,TJ,N2O,0.6,kg/TJ,32.239801439999994,kg +2fd3ed02-b349-3d06-9d54-c70c65c40d15,SESCO,II.1.1,San Luis,AR-D,annual,2023,naphtha combustion consumption by to the public,2.5931752,TJ,CO2,73300.0,kg/TJ,190079.74216000002,kg +9667a49a-e510-39e8-962a-c8cf5921b237,SESCO,II.1.1,San Luis,AR-D,annual,2023,naphtha combustion consumption by to the public,2.5931752,TJ,CH4,3.0,kg/TJ,7.7795256,kg +65b63a54-4157-3909-9477-3d42abc1cdab,SESCO,II.1.1,San Luis,AR-D,annual,2023,naphtha combustion consumption by to the public,2.5931752,TJ,N2O,0.6,kg/TJ,1.55590512,kg +0d58a651-1b24-3747-9c54-c19cf1cb080a,SESCO,II.1.1,Santa Fe,AR-S,annual,2023,naphtha combustion consumption by to the public,60.87931079999999,TJ,CO2,73300.0,kg/TJ,4462453.481639999,kg +38efd9af-e1b7-3656-ab90-f524bb16ef21,SESCO,II.1.1,Santa Fe,AR-S,annual,2023,naphtha combustion consumption by to the public,60.87931079999999,TJ,CH4,3.0,kg/TJ,182.63793239999998,kg +cb3ff7ea-2003-3385-8688-e0be14a2ed8c,SESCO,II.1.1,Santa Fe,AR-S,annual,2023,naphtha combustion consumption by to the public,60.87931079999999,TJ,N2O,0.6,kg/TJ,36.52758648,kg +53990c96-ad63-359f-9efe-28de635b1876,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2023,naphtha combustion consumption by to the public,4.824512,TJ,CO2,73300.0,kg/TJ,353636.7296,kg +66d6a24f-486b-3984-851c-ba61fea7ad03,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2023,naphtha combustion consumption by to the public,4.824512,TJ,CH4,3.0,kg/TJ,14.473536000000001,kg +b084ae31-6e75-3af0-8a04-1cb283311c49,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2023,naphtha combustion consumption by to the public,4.824512,TJ,N2O,0.6,kg/TJ,2.8947072,kg +6ca29d30-4f97-30b5-b3f0-4b18914c4f68,SESCO,II.1.1,Tucuman,AR-T,annual,2023,naphtha combustion consumption by to the public,0.5126044,TJ,CO2,73300.0,kg/TJ,37573.902519999996,kg +9fa63828-1d6c-3060-a038-401b507bc466,SESCO,II.1.1,Tucuman,AR-T,annual,2023,naphtha combustion consumption by to the public,0.5126044,TJ,CH4,3.0,kg/TJ,1.5378132,kg +fbc28079-63b1-31cb-adbc-f55d494e9af5,SESCO,II.1.1,Tucuman,AR-T,annual,2023,naphtha combustion consumption by to the public,0.5126044,TJ,N2O,0.6,kg/TJ,0.30756263999999994,kg +68e1172e-d3b0-3a21-8a87-a9fe5ce84ebf,SESCO,II.5.1,Buenos Aires,AR-B,annual,2023,naphtha combustion consumption by agriculture machines,6.121099599999999,TJ,CO2,73300.0,kg/TJ,448676.6006799999,kg +e7deddb6-d6e1-3080-9db0-eb557b307ca3,SESCO,II.5.1,Buenos Aires,AR-B,annual,2023,naphtha combustion consumption by agriculture machines,6.121099599999999,TJ,CH4,3.0,kg/TJ,18.363298799999995,kg +402c55d5-75ee-3188-abc1-cd89ac96be8c,SESCO,II.5.1,Buenos Aires,AR-B,annual,2023,naphtha combustion consumption by agriculture machines,6.121099599999999,TJ,N2O,0.6,kg/TJ,3.6726597599999993,kg +50af359b-e46d-34d3-9365-b323eafd7782,SESCO,II.5.1,Capital Federal,AR-C,annual,2023,naphtha combustion consumption by agriculture machines,2.3519495999999998,TJ,CO2,73300.0,kg/TJ,172397.90568,kg +3eb9da88-9736-3d81-b68f-2cf25d7ea845,SESCO,II.5.1,Capital Federal,AR-C,annual,2023,naphtha combustion consumption by agriculture machines,2.3519495999999998,TJ,CH4,3.0,kg/TJ,7.0558488,kg +131da6ba-d8f4-3a0f-9d2b-dd47aa454b88,SESCO,II.5.1,Capital Federal,AR-C,annual,2023,naphtha combustion consumption by agriculture machines,2.3519495999999998,TJ,N2O,0.6,kg/TJ,1.4111697599999997,kg +4df57aec-4a6e-3816-b5cf-49bb5eb0c197,SESCO,II.5.1,Córdoba,AR-X,annual,2023,naphtha combustion consumption by agriculture machines,40.314828399999996,TJ,CO2,73300.0,kg/TJ,2955076.9217199995,kg +b7c67c57-3c81-3f9f-bfce-1cee2662dd0c,SESCO,II.5.1,Córdoba,AR-X,annual,2023,naphtha combustion consumption by agriculture machines,40.314828399999996,TJ,CH4,3.0,kg/TJ,120.94448519999999,kg +63b0f445-c2fb-361a-a328-d4032cdf787d,SESCO,II.5.1,Córdoba,AR-X,annual,2023,naphtha combustion consumption by agriculture machines,40.314828399999996,TJ,N2O,0.6,kg/TJ,24.188897039999997,kg +5173c5d1-5f55-3a04-a2f4-49a7c26aedfc,SESCO,II.5.1,Santa Fe,AR-S,annual,2023,naphtha combustion consumption by agriculture machines,20.9263208,TJ,CO2,73300.0,kg/TJ,1533899.31464,kg +bbffdc4c-6a32-3669-b744-cf019f2f20ff,SESCO,II.5.1,Santa Fe,AR-S,annual,2023,naphtha combustion consumption by agriculture machines,20.9263208,TJ,CH4,3.0,kg/TJ,62.7789624,kg +d1dc0314-af63-3278-a791-ef2277fc670d,SESCO,II.5.1,Santa Fe,AR-S,annual,2023,naphtha combustion consumption by agriculture machines,20.9263208,TJ,N2O,0.6,kg/TJ,12.55579248,kg +90ef2425-6b5d-31c2-8011-d55877df0f64,SESCO,II.5.1,Buenos Aires,AR-B,annual,2023,naphtha combustion consumption by agriculture machines,0.8141364,TJ,CO2,73300.0,kg/TJ,59676.19812,kg +bf0068b0-530e-3b13-b3aa-8fbc537f07b5,SESCO,II.5.1,Buenos Aires,AR-B,annual,2023,naphtha combustion consumption by agriculture machines,0.8141364,TJ,CH4,3.0,kg/TJ,2.4424092,kg +4b587d32-8f4c-38a8-b3d9-8bdf3a74f3ed,SESCO,II.5.1,Buenos Aires,AR-B,annual,2023,naphtha combustion consumption by agriculture machines,0.8141364,TJ,N2O,0.6,kg/TJ,0.48848183999999994,kg +71ec5746-15bc-326a-8200-b13e1f31af6a,SESCO,II.5.1,Córdoba,AR-X,annual,2023,naphtha combustion consumption by agriculture machines,2.110724,TJ,CO2,73300.0,kg/TJ,154716.0692,kg +047b8cfa-a2db-3147-a4ac-2a32feaa4cd7,SESCO,II.5.1,Córdoba,AR-X,annual,2023,naphtha combustion consumption by agriculture machines,2.110724,TJ,CH4,3.0,kg/TJ,6.332172,kg +01898603-064c-3c5c-b5a7-0688017d2ae9,SESCO,II.5.1,Córdoba,AR-X,annual,2023,naphtha combustion consumption by agriculture machines,2.110724,TJ,N2O,0.6,kg/TJ,1.2664343999999998,kg +705759ea-44e4-3692-80a7-9807ce6e9346,SESCO,II.5.1,Santa Fe,AR-S,annual,2023,naphtha combustion consumption by agriculture machines,1.2362811999999999,TJ,CO2,73300.0,kg/TJ,90619.41195999998,kg +fd92edff-2b9d-3c29-a5f4-0acec4290f82,SESCO,II.5.1,Santa Fe,AR-S,annual,2023,naphtha combustion consumption by agriculture machines,1.2362811999999999,TJ,CH4,3.0,kg/TJ,3.7088436,kg +50852136-6ba6-303c-a461-d82fc8d51c97,SESCO,II.5.1,Santa Fe,AR-S,annual,2023,naphtha combustion consumption by agriculture machines,1.2362811999999999,TJ,N2O,0.6,kg/TJ,0.7417687199999999,kg +6f00389f-ed46-31fe-a08f-544157acf377,SESCO,II.1.1,Buenos Aires,AR-B,annual,2023,naphtha combustion consumption by to the public,914.6973219999999,TJ,CO2,73300.0,kg/TJ,67047313.70259999,kg +e0865742-00a3-30ca-9cad-9504ff525d0c,SESCO,II.1.1,Buenos Aires,AR-B,annual,2023,naphtha combustion consumption by to the public,914.6973219999999,TJ,CH4,3.0,kg/TJ,2744.0919659999995,kg +aa666e0f-9760-33b9-85ad-4f3129732d09,SESCO,II.1.1,Buenos Aires,AR-B,annual,2023,naphtha combustion consumption by to the public,914.6973219999999,TJ,N2O,0.6,kg/TJ,548.8183932,kg +58564afe-a84e-370f-bd44-a4eefc2f3b26,SESCO,II.1.1,Capital Federal,AR-C,annual,2023,naphtha combustion consumption by to the public,104.51099119999999,TJ,CO2,73300.0,kg/TJ,7660655.654959999,kg +7e10cf2c-3ef5-39cf-915f-40bde3fe547b,SESCO,II.1.1,Capital Federal,AR-C,annual,2023,naphtha combustion consumption by to the public,104.51099119999999,TJ,CH4,3.0,kg/TJ,313.5329736,kg +c91bb660-9eab-3ad3-80af-80a763956ace,SESCO,II.1.1,Capital Federal,AR-C,annual,2023,naphtha combustion consumption by to the public,104.51099119999999,TJ,N2O,0.6,kg/TJ,62.70659471999999,kg +b4afe5e8-8b2a-3957-bbad-5aaaa5092bdc,SESCO,II.1.1,Catamarca,AR-K,annual,2023,naphtha combustion consumption by to the public,76.8605068,TJ,CO2,73300.0,kg/TJ,5633875.14844,kg +a5bf22ec-baaa-36c6-a57a-6c020e681358,SESCO,II.1.1,Catamarca,AR-K,annual,2023,naphtha combustion consumption by to the public,76.8605068,TJ,CH4,3.0,kg/TJ,230.5815204,kg +dae096f6-276f-32fc-a059-978c67a77db6,SESCO,II.1.1,Catamarca,AR-K,annual,2023,naphtha combustion consumption by to the public,76.8605068,TJ,N2O,0.6,kg/TJ,46.11630408,kg +4bcd0357-755b-3d3f-9566-eed6bec83cf3,SESCO,II.1.1,Chaco,AR-H,annual,2023,naphtha combustion consumption by to the public,265.9210708,TJ,CO2,73300.0,kg/TJ,19492014.48964,kg +6808a869-db19-3374-8e0e-0df556ff1321,SESCO,II.1.1,Chaco,AR-H,annual,2023,naphtha combustion consumption by to the public,265.9210708,TJ,CH4,3.0,kg/TJ,797.7632123999999,kg +c2d1f281-1ebf-3bf1-b7d4-731760938d16,SESCO,II.1.1,Chaco,AR-H,annual,2023,naphtha combustion consumption by to the public,265.9210708,TJ,N2O,0.6,kg/TJ,159.55264248,kg +59fc7234-d50f-38aa-aa4b-6da728cbd0e0,SESCO,II.1.1,Corrientes,AR-W,annual,2023,naphtha combustion consumption by to the public,247.85930399999998,TJ,CO2,73300.0,kg/TJ,18168086.9832,kg +cda4b9c6-3d94-39a2-bb5f-e915f6421a45,SESCO,II.1.1,Corrientes,AR-W,annual,2023,naphtha combustion consumption by to the public,247.85930399999998,TJ,CH4,3.0,kg/TJ,743.577912,kg +f6510163-3d82-3215-9a82-bfe65d904288,SESCO,II.1.1,Corrientes,AR-W,annual,2023,naphtha combustion consumption by to the public,247.85930399999998,TJ,N2O,0.6,kg/TJ,148.7155824,kg +612061fe-bc01-362e-9d14-f62200798c11,SESCO,II.1.1,Córdoba,AR-X,annual,2023,naphtha combustion consumption by to the public,397.84132079999995,TJ,CO2,73300.0,kg/TJ,29161768.814639997,kg +bce56012-f03f-3cfc-aa16-2023157ce684,SESCO,II.1.1,Córdoba,AR-X,annual,2023,naphtha combustion consumption by to the public,397.84132079999995,TJ,CH4,3.0,kg/TJ,1193.5239623999998,kg +36af5010-c105-3a4d-88d1-982150fc198d,SESCO,II.1.1,Córdoba,AR-X,annual,2023,naphtha combustion consumption by to the public,397.84132079999995,TJ,N2O,0.6,kg/TJ,238.70479247999995,kg +5f6e7670-a96f-3f58-9aa0-746afa17ee4f,SESCO,II.1.1,Entre Rios,AR-E,annual,2023,naphtha combustion consumption by to the public,264.2626448,TJ,CO2,73300.0,kg/TJ,19370451.86384,kg +e9c2d188-858a-3ecb-a515-46e7a0a9d684,SESCO,II.1.1,Entre Rios,AR-E,annual,2023,naphtha combustion consumption by to the public,264.2626448,TJ,CH4,3.0,kg/TJ,792.7879343999999,kg +735c83ac-d976-365a-9b31-e8d7ad45755f,SESCO,II.1.1,Entre Rios,AR-E,annual,2023,naphtha combustion consumption by to the public,264.2626448,TJ,N2O,0.6,kg/TJ,158.55758687999997,kg +9c81752e-a481-3ab1-b81f-91bf8e9c55c6,SESCO,II.1.1,Formosa,AR-P,annual,2023,naphtha combustion consumption by to the public,33.982656399999996,TJ,CO2,73300.0,kg/TJ,2490928.7141199997,kg +2a58cc93-0f06-31b9-ae28-37bdd3a03151,SESCO,II.1.1,Formosa,AR-P,annual,2023,naphtha combustion consumption by to the public,33.982656399999996,TJ,CH4,3.0,kg/TJ,101.94796919999999,kg +d5d80a37-2212-313a-8c48-415341f71edc,SESCO,II.1.1,Formosa,AR-P,annual,2023,naphtha combustion consumption by to the public,33.982656399999996,TJ,N2O,0.6,kg/TJ,20.389593839999996,kg +8bb928b5-28aa-3cb8-a387-482ebf1fce91,SESCO,II.1.1,La Rioja,AR-F,annual,2023,naphtha combustion consumption by to the public,96.97269119999999,TJ,CO2,73300.0,kg/TJ,7108098.264959999,kg +ad1f530c-31aa-3963-b476-13905bc578bf,SESCO,II.1.1,La Rioja,AR-F,annual,2023,naphtha combustion consumption by to the public,96.97269119999999,TJ,CH4,3.0,kg/TJ,290.91807359999996,kg +801636b8-a26e-3e23-b93e-0d90719bc082,SESCO,II.1.1,La Rioja,AR-F,annual,2023,naphtha combustion consumption by to the public,96.97269119999999,TJ,N2O,0.6,kg/TJ,58.18361471999999,kg +10f3b61e-8437-3306-b186-90a6c16ed9c5,SESCO,II.1.1,Mendoza,AR-M,annual,2023,naphtha combustion consumption by to the public,389.0064332,TJ,CO2,73300.0,kg/TJ,28514171.55356,kg +64d86617-759c-3983-baa4-7b8dcb3fbaa1,SESCO,II.1.1,Mendoza,AR-M,annual,2023,naphtha combustion consumption by to the public,389.0064332,TJ,CH4,3.0,kg/TJ,1167.0192996,kg +9ead3c5a-7d5a-3a9b-b302-c56b5bd88e70,SESCO,II.1.1,Mendoza,AR-M,annual,2023,naphtha combustion consumption by to the public,389.0064332,TJ,N2O,0.6,kg/TJ,233.40385992,kg +b0e7e5a9-8015-3f17-aa22-0282707f8886,SESCO,II.1.1,Misiones,AR-N,annual,2023,naphtha combustion consumption by to the public,267.3684244,TJ,CO2,73300.0,kg/TJ,19598105.50852,kg +c860b5c1-4398-3682-9107-511d4a61d881,SESCO,II.1.1,Misiones,AR-N,annual,2023,naphtha combustion consumption by to the public,267.3684244,TJ,CH4,3.0,kg/TJ,802.1052731999999,kg +f9d9f14c-fab3-373f-93d9-00b245bec3fa,SESCO,II.1.1,Misiones,AR-N,annual,2023,naphtha combustion consumption by to the public,267.3684244,TJ,N2O,0.6,kg/TJ,160.42105464,kg +98e59870-cd6b-3a46-83da-0bc72fee2d06,SESCO,II.1.1,San Juan,AR-J,annual,2023,naphtha combustion consumption by to the public,103.8476208,TJ,CO2,73300.0,kg/TJ,7612030.6046400005,kg +77f8d946-52ba-32eb-9d24-c18d9e5e8576,SESCO,II.1.1,San Juan,AR-J,annual,2023,naphtha combustion consumption by to the public,103.8476208,TJ,CH4,3.0,kg/TJ,311.5428624,kg +466e32af-7ca8-34a6-8bcc-e648a17fe6a4,SESCO,II.1.1,San Juan,AR-J,annual,2023,naphtha combustion consumption by to the public,103.8476208,TJ,N2O,0.6,kg/TJ,62.308572479999995,kg +bedfb09b-adfd-391d-ae1c-d488e1404285,SESCO,II.1.1,San Luis,AR-D,annual,2023,naphtha combustion consumption by to the public,33.0780604,TJ,CO2,73300.0,kg/TJ,2424621.8273199997,kg +3880c3a4-bc77-3899-8dca-b19f9c6e2167,SESCO,II.1.1,San Luis,AR-D,annual,2023,naphtha combustion consumption by to the public,33.0780604,TJ,CH4,3.0,kg/TJ,99.2341812,kg +17d6289e-d9bc-3a10-9aa1-1cda69b53ce2,SESCO,II.1.1,San Luis,AR-D,annual,2023,naphtha combustion consumption by to the public,33.0780604,TJ,N2O,0.6,kg/TJ,19.84683624,kg +6de667d0-95e6-3221-8e84-9ccb2259cce1,SESCO,II.1.1,Santa Fe,AR-S,annual,2023,naphtha combustion consumption by to the public,554.3062755999999,TJ,CO2,73300.0,kg/TJ,40630650.00148,kg +ad7cc84e-a876-3f43-85ab-24587bd2c1ec,SESCO,II.1.1,Santa Fe,AR-S,annual,2023,naphtha combustion consumption by to the public,554.3062755999999,TJ,CH4,3.0,kg/TJ,1662.9188267999998,kg +6d5ff05f-ceb5-3e8c-89af-06b8972f0dca,SESCO,II.1.1,Santa Fe,AR-S,annual,2023,naphtha combustion consumption by to the public,554.3062755999999,TJ,N2O,0.6,kg/TJ,332.58376536,kg +6425bc18-7c42-32bf-875b-9026c22cca6e,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2023,naphtha combustion consumption by to the public,158.24399359999998,TJ,CO2,73300.0,kg/TJ,11599284.730879998,kg +f40362bb-274b-36f6-a925-fada894210e9,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2023,naphtha combustion consumption by to the public,158.24399359999998,TJ,CH4,3.0,kg/TJ,474.7319808,kg +7452d23b-859b-3ed1-9af8-912714aa94a6,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2023,naphtha combustion consumption by to the public,158.24399359999998,TJ,N2O,0.6,kg/TJ,94.94639615999999,kg +5e219c9c-a081-3f99-88b3-e0db1e3776e8,SESCO,II.1.1,Tucuman,AR-T,annual,2023,naphtha combustion consumption by to the public,46.8279196,TJ,CO2,73300.0,kg/TJ,3432486.50668,kg +288e8d4c-c8d7-3f03-af2d-a17be97f1fa7,SESCO,II.1.1,Tucuman,AR-T,annual,2023,naphtha combustion consumption by to the public,46.8279196,TJ,CH4,3.0,kg/TJ,140.4837588,kg +811b1ffb-02da-3077-85de-e712c1750479,SESCO,II.1.1,Tucuman,AR-T,annual,2023,naphtha combustion consumption by to the public,46.8279196,TJ,N2O,0.6,kg/TJ,28.09675176,kg +07263296-5913-392f-a836-469c508a4c6f,SESCO,II.1.1,Buenos Aires,AR-B,annual,2023,naphtha combustion consumption by to the public,112.59204879999999,TJ,CO2,73300.0,kg/TJ,8252997.177039999,kg +409543e1-3950-3c8f-add2-16df93e2438e,SESCO,II.1.1,Buenos Aires,AR-B,annual,2023,naphtha combustion consumption by to the public,112.59204879999999,TJ,CH4,3.0,kg/TJ,337.77614639999996,kg +195e44d8-3f64-37e2-a042-e1a1e013bb9d,SESCO,II.1.1,Buenos Aires,AR-B,annual,2023,naphtha combustion consumption by to the public,112.59204879999999,TJ,N2O,0.6,kg/TJ,67.55522927999999,kg +53f4ab90-844d-3d6c-b894-e895d1840900,SESCO,II.1.1,Capital Federal,AR-C,annual,2023,naphtha combustion consumption by to the public,15.800276799999999,TJ,CO2,73300.0,kg/TJ,1158160.28944,kg +bb67af9a-7164-3669-984b-f57cacf8b29d,SESCO,II.1.1,Capital Federal,AR-C,annual,2023,naphtha combustion consumption by to the public,15.800276799999999,TJ,CH4,3.0,kg/TJ,47.4008304,kg +a3ad51e3-ac35-3d5f-b050-610c25afd50d,SESCO,II.1.1,Capital Federal,AR-C,annual,2023,naphtha combustion consumption by to the public,15.800276799999999,TJ,N2O,0.6,kg/TJ,9.480166079999998,kg +60bca854-1c57-3e69-83e5-44042ad7c877,SESCO,II.1.1,Catamarca,AR-K,annual,2023,naphtha combustion consumption by to the public,10.9456116,TJ,CO2,73300.0,kg/TJ,802313.33028,kg +8b4efca7-8941-3d5d-8d6e-3b83a6edd8e9,SESCO,II.1.1,Catamarca,AR-K,annual,2023,naphtha combustion consumption by to the public,10.9456116,TJ,CH4,3.0,kg/TJ,32.8368348,kg +040158c0-2d56-3704-866a-1e7515834718,SESCO,II.1.1,Catamarca,AR-K,annual,2023,naphtha combustion consumption by to the public,10.9456116,TJ,N2O,0.6,kg/TJ,6.567366959999999,kg +ea6a6661-447e-336f-af44-e48607030107,SESCO,II.1.1,Chaco,AR-H,annual,2023,naphtha combustion consumption by to the public,21.408771999999995,TJ,CO2,73300.0,kg/TJ,1569262.9875999996,kg +515e18c6-7e8c-33ad-9930-969a4604710c,SESCO,II.1.1,Chaco,AR-H,annual,2023,naphtha combustion consumption by to the public,21.408771999999995,TJ,CH4,3.0,kg/TJ,64.22631599999998,kg +23445ecc-fe6d-35a0-b01b-c4c95ce15d03,SESCO,II.1.1,Chaco,AR-H,annual,2023,naphtha combustion consumption by to the public,21.408771999999995,TJ,N2O,0.6,kg/TJ,12.845263199999996,kg +d85e4f0f-c955-365a-88ee-436b8a559311,SESCO,II.1.1,Corrientes,AR-W,annual,2023,naphtha combustion consumption by to the public,12.3025056,TJ,CO2,73300.0,kg/TJ,901773.66048,kg +8ebf5180-0eca-399f-bc7d-436e03233389,SESCO,II.1.1,Corrientes,AR-W,annual,2023,naphtha combustion consumption by to the public,12.3025056,TJ,CH4,3.0,kg/TJ,36.907516799999996,kg +e2f47d1d-edd3-3641-aef2-e48b43a5c011,SESCO,II.1.1,Corrientes,AR-W,annual,2023,naphtha combustion consumption by to the public,12.3025056,TJ,N2O,0.6,kg/TJ,7.38150336,kg +39aee428-032c-3463-b2e7-969d604caad2,SESCO,II.1.1,Córdoba,AR-X,annual,2023,naphtha combustion consumption by to the public,50.265384399999995,TJ,CO2,73300.0,kg/TJ,3684452.6765199997,kg +bc99aa27-de08-333e-ba99-0555d43e12df,SESCO,II.1.1,Córdoba,AR-X,annual,2023,naphtha combustion consumption by to the public,50.265384399999995,TJ,CH4,3.0,kg/TJ,150.7961532,kg +0e79d15d-ac4e-35c3-b5b1-9bc2c87ccfb9,SESCO,II.1.1,Córdoba,AR-X,annual,2023,naphtha combustion consumption by to the public,50.265384399999995,TJ,N2O,0.6,kg/TJ,30.159230639999997,kg +958c11b9-753f-32ad-97cd-e329182eef2e,SESCO,II.1.1,Entre Rios,AR-E,annual,2023,naphtha combustion consumption by to the public,33.6509712,TJ,CO2,73300.0,kg/TJ,2466616.18896,kg +ae218947-36a2-35af-a15b-79daadb06609,SESCO,II.1.1,Entre Rios,AR-E,annual,2023,naphtha combustion consumption by to the public,33.6509712,TJ,CH4,3.0,kg/TJ,100.9529136,kg +d2c49185-6142-3a45-8ce3-0d45e52bd132,SESCO,II.1.1,Entre Rios,AR-E,annual,2023,naphtha combustion consumption by to the public,33.6509712,TJ,N2O,0.6,kg/TJ,20.19058272,kg +dc287865-77c4-3ebb-aa2f-82339ad3b318,SESCO,II.1.1,Formosa,AR-P,annual,2023,naphtha combustion consumption by to the public,2.1408772,TJ,CO2,73300.0,kg/TJ,156926.29875999998,kg +f7cac573-651f-3705-9bfb-95162614c01f,SESCO,II.1.1,Formosa,AR-P,annual,2023,naphtha combustion consumption by to the public,2.1408772,TJ,CH4,3.0,kg/TJ,6.422631599999999,kg +6f528f31-8e0c-3c85-b013-8642633e7ccb,SESCO,II.1.1,Formosa,AR-P,annual,2023,naphtha combustion consumption by to the public,2.1408772,TJ,N2O,0.6,kg/TJ,1.2845263199999999,kg +2dc60456-8e67-3bcc-bf17-cd6ccadb5eab,SESCO,II.1.1,La Rioja,AR-F,annual,2023,naphtha combustion consumption by to the public,9.0158068,TJ,CO2,73300.0,kg/TJ,660858.63844,kg +9b7a2868-7f89-3360-a03b-4add64c072b4,SESCO,II.1.1,La Rioja,AR-F,annual,2023,naphtha combustion consumption by to the public,9.0158068,TJ,CH4,3.0,kg/TJ,27.0474204,kg +0aa1b6ae-b4ac-39a7-aa53-8e3f4108c4ea,SESCO,II.1.1,La Rioja,AR-F,annual,2023,naphtha combustion consumption by to the public,9.0158068,TJ,N2O,0.6,kg/TJ,5.4094840799999995,kg +4669f3b7-06ba-3265-960a-a64dd41a0a64,SESCO,II.1.1,Mendoza,AR-M,annual,2023,naphtha combustion consumption by to the public,20.2327972,TJ,CO2,73300.0,kg/TJ,1483064.03476,kg +060b9920-c2c7-33d2-b73c-bdb34ca40685,SESCO,II.1.1,Mendoza,AR-M,annual,2023,naphtha combustion consumption by to the public,20.2327972,TJ,CH4,3.0,kg/TJ,60.6983916,kg +4b38601b-7153-38bf-8fbc-ea5f01ff0699,SESCO,II.1.1,Mendoza,AR-M,annual,2023,naphtha combustion consumption by to the public,20.2327972,TJ,N2O,0.6,kg/TJ,12.13967832,kg +b4d540f9-bbe0-3829-9e19-df3937461829,SESCO,II.1.1,Misiones,AR-N,annual,2023,naphtha combustion consumption by to the public,16.4033408,TJ,CO2,73300.0,kg/TJ,1202364.8806399999,kg +6f95bfd5-e907-3c60-a3d6-0fb1df61fc99,SESCO,II.1.1,Misiones,AR-N,annual,2023,naphtha combustion consumption by to the public,16.4033408,TJ,CH4,3.0,kg/TJ,49.2100224,kg +c9754415-caeb-3532-a88a-c918fff33ef9,SESCO,II.1.1,Misiones,AR-N,annual,2023,naphtha combustion consumption by to the public,16.4033408,TJ,N2O,0.6,kg/TJ,9.842004479999998,kg +b9fdc127-6be7-39a7-838b-9adcfc50808f,SESCO,II.1.1,San Juan,AR-J,annual,2023,naphtha combustion consumption by to the public,14.322769999999998,TJ,CO2,73300.0,kg/TJ,1049859.041,kg +97c89ae6-4e3a-39b2-97f6-09abbd75f782,SESCO,II.1.1,San Juan,AR-J,annual,2023,naphtha combustion consumption by to the public,14.322769999999998,TJ,CH4,3.0,kg/TJ,42.968309999999995,kg +ade08e45-6c49-386e-b58e-de2f56ac8dd0,SESCO,II.1.1,San Juan,AR-J,annual,2023,naphtha combustion consumption by to the public,14.322769999999998,TJ,N2O,0.6,kg/TJ,8.593661999999998,kg +b3f203b2-e6a2-32f6-a0c9-2f497dd4f0dc,SESCO,II.1.1,San Luis,AR-D,annual,2023,naphtha combustion consumption by to the public,2.7740944,TJ,CO2,73300.0,kg/TJ,203341.11952,kg +4ae53f4e-cd29-3974-8518-2e71ea7d7273,SESCO,II.1.1,San Luis,AR-D,annual,2023,naphtha combustion consumption by to the public,2.7740944,TJ,CH4,3.0,kg/TJ,8.322283200000001,kg +cd1e4df5-f002-3dd6-9852-5d634a43d215,SESCO,II.1.1,San Luis,AR-D,annual,2023,naphtha combustion consumption by to the public,2.7740944,TJ,N2O,0.6,kg/TJ,1.66445664,kg +5c0fc693-5c68-384b-8891-257f3af8232d,SESCO,II.1.1,Santa Fe,AR-S,annual,2023,naphtha combustion consumption by to the public,57.773531199999994,TJ,CO2,73300.0,kg/TJ,4234799.83696,kg +4c4ea92b-b7c3-3cbd-9e9f-ca582a5a9216,SESCO,II.1.1,Santa Fe,AR-S,annual,2023,naphtha combustion consumption by to the public,57.773531199999994,TJ,CH4,3.0,kg/TJ,173.3205936,kg +6fed4906-718f-395f-9afa-b36274ea8ed1,SESCO,II.1.1,Santa Fe,AR-S,annual,2023,naphtha combustion consumption by to the public,57.773531199999994,TJ,N2O,0.6,kg/TJ,34.66411872,kg +3b39c715-e511-32aa-978b-d41b444f65ae,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2023,naphtha combustion consumption by to the public,17.036558,TJ,CO2,73300.0,kg/TJ,1248779.7014,kg +e24368dc-acb9-311f-bd53-0030864187a9,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2023,naphtha combustion consumption by to the public,17.036558,TJ,CH4,3.0,kg/TJ,51.109674,kg +788a78d1-dbd9-3968-a841-abfd8a7e7d61,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2023,naphtha combustion consumption by to the public,17.036558,TJ,N2O,0.6,kg/TJ,10.2219348,kg +586325a4-2703-3cae-a1e7-ee8f56843350,SESCO,II.1.1,Tucuman,AR-T,annual,2023,naphtha combustion consumption by to the public,4.221448,TJ,CO2,73300.0,kg/TJ,309432.1384,kg +8c4494f2-0a29-3910-b47d-57901c3de9e3,SESCO,II.1.1,Tucuman,AR-T,annual,2023,naphtha combustion consumption by to the public,4.221448,TJ,CH4,3.0,kg/TJ,12.664344,kg +1a97c66b-88e5-3cea-87e1-b3eb660a706e,SESCO,II.1.1,Tucuman,AR-T,annual,2023,naphtha combustion consumption by to the public,4.221448,TJ,N2O,0.6,kg/TJ,2.5328687999999997,kg +2ab6b68b-6df9-3b3f-8473-18fbbccd382e,SESCO,II.5.1,Santa Fe,AR-S,annual,2023,naphtha combustion consumption by agriculture machines,1.5981196,TJ,CO2,73300.0,kg/TJ,117142.16668,kg +b6dc9147-49f7-366d-8edc-cdc4209b92f0,SESCO,II.5.1,Santa Fe,AR-S,annual,2023,naphtha combustion consumption by agriculture machines,1.5981196,TJ,CH4,3.0,kg/TJ,4.7943587999999995,kg +2fd2f83e-b217-3e0e-be3e-334396e3faf0,SESCO,II.5.1,Santa Fe,AR-S,annual,2023,naphtha combustion consumption by agriculture machines,1.5981196,TJ,N2O,0.6,kg/TJ,0.95887176,kg +d2889239-2285-3414-a0aa-e8edb71430be,SESCO,II.5.1,Santa Fe,AR-S,annual,2023,naphtha combustion consumption by agriculture machines,1.0252088,TJ,CO2,73300.0,kg/TJ,75147.80503999999,kg +ed62bd2c-ca7e-355a-a420-62ff6ed90e1d,SESCO,II.5.1,Santa Fe,AR-S,annual,2023,naphtha combustion consumption by agriculture machines,1.0252088,TJ,CH4,3.0,kg/TJ,3.0756264,kg +939fafe9-e1f2-3d1f-bcdc-f728214ce79a,SESCO,II.5.1,Santa Fe,AR-S,annual,2023,naphtha combustion consumption by agriculture machines,1.0252088,TJ,N2O,0.6,kg/TJ,0.6151252799999999,kg +256872e7-605d-3d5d-85b1-3b64c39cb307,SESCO,II.1.1,Buenos Aires,AR-B,annual,2023,naphtha combustion consumption by to the public,10388.5915364,TJ,CO2,73300.0,kg/TJ,761483759.61812,kg +f376035a-db58-323e-861f-bcc3ddcee44b,SESCO,II.1.1,Buenos Aires,AR-B,annual,2023,naphtha combustion consumption by to the public,10388.5915364,TJ,CH4,3.0,kg/TJ,31165.774609199998,kg +fd5b3942-2047-34e7-b6cc-e591bf6dd675,SESCO,II.1.1,Buenos Aires,AR-B,annual,2023,naphtha combustion consumption by to the public,10388.5915364,TJ,N2O,0.6,kg/TJ,6233.15492184,kg +656ba187-b982-3d7a-8161-155ad0cc7706,SESCO,II.1.1,Capital Federal,AR-C,annual,2023,naphtha combustion consumption by to the public,2740.2022032,TJ,CO2,73300.0,kg/TJ,200856821.49456,kg +39d8587d-2066-3945-b323-46387ef00235,SESCO,II.1.1,Capital Federal,AR-C,annual,2023,naphtha combustion consumption by to the public,2740.2022032,TJ,CH4,3.0,kg/TJ,8220.6066096,kg +ea9933e2-485a-3136-9624-4e69e2aa9b87,SESCO,II.1.1,Capital Federal,AR-C,annual,2023,naphtha combustion consumption by to the public,2740.2022032,TJ,N2O,0.6,kg/TJ,1644.12132192,kg +242a7534-749e-3aab-b586-0745fd809982,SESCO,II.1.1,Catamarca,AR-K,annual,2023,naphtha combustion consumption by to the public,370.40190879999994,TJ,CO2,73300.0,kg/TJ,27150459.915039998,kg +c4c84e28-b7d2-3f54-8222-a1c25f7704d8,SESCO,II.1.1,Catamarca,AR-K,annual,2023,naphtha combustion consumption by to the public,370.40190879999994,TJ,CH4,3.0,kg/TJ,1111.2057263999998,kg +85f0db44-e372-3fcc-89c9-0eb037655a48,SESCO,II.1.1,Catamarca,AR-K,annual,2023,naphtha combustion consumption by to the public,370.40190879999994,TJ,N2O,0.6,kg/TJ,222.24114527999996,kg +ac06327b-a0e1-3883-8f5b-c003b0ec5059,SESCO,II.1.1,Chaco,AR-H,annual,2023,naphtha combustion consumption by to the public,750.0005436,TJ,CO2,73300.0,kg/TJ,54975039.84588,kg +641a9eb9-32dc-30fd-9a74-deb885b6f740,SESCO,II.1.1,Chaco,AR-H,annual,2023,naphtha combustion consumption by to the public,750.0005436,TJ,CH4,3.0,kg/TJ,2250.0016308,kg +c80f53cd-b2fa-38ac-9e7a-7467dabdd55f,SESCO,II.1.1,Chaco,AR-H,annual,2023,naphtha combustion consumption by to the public,750.0005436,TJ,N2O,0.6,kg/TJ,450.00032616,kg +bbb13cdd-6c7e-3961-8360-2e10004f6ffd,SESCO,II.1.1,Chubut,AR-U,annual,2023,naphtha combustion consumption by to the public,1552.286736,TJ,CO2,73300.0,kg/TJ,113782617.7488,kg +27136094-c603-3a6d-ad16-64b37b43ef96,SESCO,II.1.1,Chubut,AR-U,annual,2023,naphtha combustion consumption by to the public,1552.286736,TJ,CH4,3.0,kg/TJ,4656.860208,kg +4a34eab0-55c0-3150-b88a-1e6232304adf,SESCO,II.1.1,Chubut,AR-U,annual,2023,naphtha combustion consumption by to the public,1552.286736,TJ,N2O,0.6,kg/TJ,931.3720416,kg +ed0a421c-ece2-3e4c-bf8e-ccfa3bade901,SESCO,II.1.1,Corrientes,AR-W,annual,2023,naphtha combustion consumption by to the public,972.9231512,TJ,CO2,73300.0,kg/TJ,71315266.98296,kg +0b6199e4-a724-3e06-b721-603594db05ab,SESCO,II.1.1,Corrientes,AR-W,annual,2023,naphtha combustion consumption by to the public,972.9231512,TJ,CH4,3.0,kg/TJ,2918.7694536,kg +e19e39f0-a796-3969-87d7-33e4a9caece3,SESCO,II.1.1,Corrientes,AR-W,annual,2023,naphtha combustion consumption by to the public,972.9231512,TJ,N2O,0.6,kg/TJ,583.75389072,kg +2ddf5030-d52c-311c-88c2-a513524d2611,SESCO,II.1.1,Córdoba,AR-X,annual,2023,naphtha combustion consumption by to the public,2446.3894224,TJ,CO2,73300.0,kg/TJ,179320344.66192,kg +2f5cc21e-02be-3ad8-bc01-5bf0d506f5a8,SESCO,II.1.1,Córdoba,AR-X,annual,2023,naphtha combustion consumption by to the public,2446.3894224,TJ,CH4,3.0,kg/TJ,7339.168267200001,kg +1b817dcb-eee4-3bb5-afef-7c7b109ead66,SESCO,II.1.1,Córdoba,AR-X,annual,2023,naphtha combustion consumption by to the public,2446.3894224,TJ,N2O,0.6,kg/TJ,1467.83365344,kg +c35ed9cc-6db0-3000-959e-cbaae79f94cd,SESCO,II.1.1,Entre Rios,AR-E,annual,2023,naphtha combustion consumption by to the public,1101.5265491999999,TJ,CO2,73300.0,kg/TJ,80741896.05635999,kg +dd1ac37e-4863-3df4-839a-2bb43163ba2f,SESCO,II.1.1,Entre Rios,AR-E,annual,2023,naphtha combustion consumption by to the public,1101.5265491999999,TJ,CH4,3.0,kg/TJ,3304.5796475999996,kg +1a16641f-b5a2-35b3-8365-9a7f8b9a4389,SESCO,II.1.1,Entre Rios,AR-E,annual,2023,naphtha combustion consumption by to the public,1101.5265491999999,TJ,N2O,0.6,kg/TJ,660.9159295199998,kg +96beb9db-3ff4-3999-a27d-1207443a218f,SESCO,II.1.1,Formosa,AR-P,annual,2023,naphtha combustion consumption by to the public,810.7290884,TJ,CO2,73300.0,kg/TJ,59426442.17972,kg +36030df9-0bbf-30ad-8d23-08249e497e5f,SESCO,II.1.1,Formosa,AR-P,annual,2023,naphtha combustion consumption by to the public,810.7290884,TJ,CH4,3.0,kg/TJ,2432.1872652,kg +7957a41d-5ffa-3f62-a9e7-994e117d4933,SESCO,II.1.1,Formosa,AR-P,annual,2023,naphtha combustion consumption by to the public,810.7290884,TJ,N2O,0.6,kg/TJ,486.43745304,kg +eaf35e9a-c90c-34ee-9bfa-20cf293a961d,SESCO,II.1.1,Jujuy,AR-Y,annual,2023,naphtha combustion consumption by to the public,323.996134,TJ,CO2,73300.0,kg/TJ,23748916.622199997,kg +90a9a03e-422f-322a-9ec1-b5e80799f93f,SESCO,II.1.1,Jujuy,AR-Y,annual,2023,naphtha combustion consumption by to the public,323.996134,TJ,CH4,3.0,kg/TJ,971.988402,kg +c98fdb0e-8871-3d50-8b1d-f2caefd385e1,SESCO,II.1.1,Jujuy,AR-Y,annual,2023,naphtha combustion consumption by to the public,323.996134,TJ,N2O,0.6,kg/TJ,194.39768039999998,kg +893a1d3e-7d43-3c8e-90fb-6cf131a06579,SESCO,II.1.1,La Pampa,AR-L,annual,2023,naphtha combustion consumption by to the public,246.2913376,TJ,CO2,73300.0,kg/TJ,18053155.04608,kg +0f1c38bf-9fb3-32ec-a1b7-42a8eb4a4f2c,SESCO,II.1.1,La Pampa,AR-L,annual,2023,naphtha combustion consumption by to the public,246.2913376,TJ,CH4,3.0,kg/TJ,738.8740128,kg +089c06eb-7ebe-3568-bb3a-c306e0720eb7,SESCO,II.1.1,La Pampa,AR-L,annual,2023,naphtha combustion consumption by to the public,246.2913376,TJ,N2O,0.6,kg/TJ,147.77480255999998,kg +86fbf5e2-e09c-3ad0-a13c-2925fe3923ca,SESCO,II.1.1,La Rioja,AR-F,annual,2023,naphtha combustion consumption by to the public,181.4921108,TJ,CO2,73300.0,kg/TJ,13303371.72164,kg +d9e8281d-1e61-366e-a635-c8df2fa573c6,SESCO,II.1.1,La Rioja,AR-F,annual,2023,naphtha combustion consumption by to the public,181.4921108,TJ,CH4,3.0,kg/TJ,544.4763324,kg +9d4e9a8a-a0e3-3cf7-8e7a-c0a79a78715c,SESCO,II.1.1,La Rioja,AR-F,annual,2023,naphtha combustion consumption by to the public,181.4921108,TJ,N2O,0.6,kg/TJ,108.89526648,kg +94613093-d4f8-3320-a8b2-178e94de4e68,SESCO,II.1.1,Mendoza,AR-M,annual,2023,naphtha combustion consumption by to the public,479.6167992,TJ,CO2,73300.0,kg/TJ,35155911.38136,kg +37ead68c-28b8-3fc6-91f2-4bac473ddfcc,SESCO,II.1.1,Mendoza,AR-M,annual,2023,naphtha combustion consumption by to the public,479.6167992,TJ,CH4,3.0,kg/TJ,1438.8503976,kg +6a211a4f-e310-3624-a22a-7a2f7fc5b4be,SESCO,II.1.1,Mendoza,AR-M,annual,2023,naphtha combustion consumption by to the public,479.6167992,TJ,N2O,0.6,kg/TJ,287.77007951999997,kg +3f7919be-9da8-372a-b976-a500b14831cb,SESCO,II.1.1,Misiones,AR-N,annual,2023,naphtha combustion consumption by to the public,1847.6674831999997,TJ,CO2,73300.0,kg/TJ,135434026.51855996,kg +0b8f04fd-321e-3c7b-b033-c789f9c0f63b,SESCO,II.1.1,Misiones,AR-N,annual,2023,naphtha combustion consumption by to the public,1847.6674831999997,TJ,CH4,3.0,kg/TJ,5543.002449599999,kg +ddd4a71c-6cf3-3d29-80d7-c0c3cd2ea265,SESCO,II.1.1,Misiones,AR-N,annual,2023,naphtha combustion consumption by to the public,1847.6674831999997,TJ,N2O,0.6,kg/TJ,1108.6004899199997,kg +bcd11286-8cd0-383d-8c61-5e883cb56c80,SESCO,II.1.1,Neuquén,AR-Q,annual,2023,naphtha combustion consumption by to the public,473.34493359999993,TJ,CO2,73300.0,kg/TJ,34696183.632879995,kg +6856cd44-1caf-3d4b-9b19-ed216388e50d,SESCO,II.1.1,Neuquén,AR-Q,annual,2023,naphtha combustion consumption by to the public,473.34493359999993,TJ,CH4,3.0,kg/TJ,1420.0348007999999,kg +2e3dbcc7-8832-39db-bf1a-3d8c8e3c57f1,SESCO,II.1.1,Neuquén,AR-Q,annual,2023,naphtha combustion consumption by to the public,473.34493359999993,TJ,N2O,0.6,kg/TJ,284.00696015999995,kg +287e0514-ac75-3990-a4c4-d5d0d3737b13,SESCO,II.1.1,Rio Negro,AR-R,annual,2023,naphtha combustion consumption by to the public,811.7844504,TJ,CO2,73300.0,kg/TJ,59503800.21432,kg +0b7a8a93-be87-39d9-9a12-8d8a09f513db,SESCO,II.1.1,Rio Negro,AR-R,annual,2023,naphtha combustion consumption by to the public,811.7844504,TJ,CH4,3.0,kg/TJ,2435.3533512,kg +f157793e-f236-3174-b1c9-de627504963c,SESCO,II.1.1,Rio Negro,AR-R,annual,2023,naphtha combustion consumption by to the public,811.7844504,TJ,N2O,0.6,kg/TJ,487.07067023999997,kg +51001869-8790-380c-a556-2440fa034abb,SESCO,II.1.1,Salta,AR-A,annual,2023,naphtha combustion consumption by to the public,277.1983676,TJ,CO2,73300.0,kg/TJ,20318640.34508,kg +a8d9ebb8-5e70-334e-9068-3e373804a96b,SESCO,II.1.1,Salta,AR-A,annual,2023,naphtha combustion consumption by to the public,277.1983676,TJ,CH4,3.0,kg/TJ,831.5951028,kg +e720bb4f-2d9b-3277-9170-bfc1ec673c53,SESCO,II.1.1,Salta,AR-A,annual,2023,naphtha combustion consumption by to the public,277.1983676,TJ,N2O,0.6,kg/TJ,166.31902055999998,kg +c60a3784-069f-38b4-9607-6566cd8dd640,SESCO,II.1.1,San Juan,AR-J,annual,2023,naphtha combustion consumption by to the public,248.311602,TJ,CO2,73300.0,kg/TJ,18201240.426599998,kg +aa14c774-6b16-3a27-8b53-8ab33017c34e,SESCO,II.1.1,San Juan,AR-J,annual,2023,naphtha combustion consumption by to the public,248.311602,TJ,CH4,3.0,kg/TJ,744.934806,kg +08ea97f6-5c9b-3d0d-bec3-463f1f0278b3,SESCO,II.1.1,San Juan,AR-J,annual,2023,naphtha combustion consumption by to the public,248.311602,TJ,N2O,0.6,kg/TJ,148.9869612,kg +e87f4247-b53e-3f3c-a20a-368c204d435e,SESCO,II.1.1,San Luis,AR-D,annual,2023,naphtha combustion consumption by to the public,553.914284,TJ,CO2,73300.0,kg/TJ,40601917.01719999,kg +407abf9e-fb73-3857-8260-970ae862f9d6,SESCO,II.1.1,San Luis,AR-D,annual,2023,naphtha combustion consumption by to the public,553.914284,TJ,CH4,3.0,kg/TJ,1661.7428519999999,kg +f5e20e3f-71b9-394c-852c-eb2da405af31,SESCO,II.1.1,San Luis,AR-D,annual,2023,naphtha combustion consumption by to the public,553.914284,TJ,N2O,0.6,kg/TJ,332.34857039999997,kg +d56c89fe-006f-353d-8696-f98aef922daf,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2023,naphtha combustion consumption by to the public,900.4951647999999,TJ,CO2,73300.0,kg/TJ,66006295.57983999,kg +bda5ee0d-bb8c-3e07-b5af-19b6deeff3be,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2023,naphtha combustion consumption by to the public,900.4951647999999,TJ,CH4,3.0,kg/TJ,2701.4854944,kg +a565b41f-bef7-38c6-8516-65c2d78a748a,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2023,naphtha combustion consumption by to the public,900.4951647999999,TJ,N2O,0.6,kg/TJ,540.2970988799999,kg +b67ecb26-7fb1-3530-bfac-a3d887da96b0,SESCO,II.1.1,Santa Fe,AR-S,annual,2023,naphtha combustion consumption by to the public,2431.6445075999995,TJ,CO2,73300.0,kg/TJ,178239542.40707996,kg +ad2881a8-c2ef-35d2-8a4e-b455218d29f3,SESCO,II.1.1,Santa Fe,AR-S,annual,2023,naphtha combustion consumption by to the public,2431.6445075999995,TJ,CH4,3.0,kg/TJ,7294.933522799998,kg +28e73208-3807-3402-bc99-85cd3911a099,SESCO,II.1.1,Santa Fe,AR-S,annual,2023,naphtha combustion consumption by to the public,2431.6445075999995,TJ,N2O,0.6,kg/TJ,1458.9867045599997,kg +2524b803-50bd-318d-9895-9c03553ffa02,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2023,naphtha combustion consumption by to the public,490.0196532,TJ,CO2,73300.0,kg/TJ,35918440.57956,kg +19e9de2d-a822-3f5f-aa1e-f06adbdcb416,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2023,naphtha combustion consumption by to the public,490.0196532,TJ,CH4,3.0,kg/TJ,1470.0589596,kg +701b500b-2a20-3a20-a7af-8cf7ec3922fc,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2023,naphtha combustion consumption by to the public,490.0196532,TJ,N2O,0.6,kg/TJ,294.01179192,kg +ba01f2b3-bdb9-3dbf-8a86-dfed814a693b,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2023,naphtha combustion consumption by to the public,178.2355652,TJ,CO2,73300.0,kg/TJ,13064666.929159999,kg +9c623018-6b4a-3574-be37-8a248faa1234,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2023,naphtha combustion consumption by to the public,178.2355652,TJ,CH4,3.0,kg/TJ,534.7066956,kg +9ef95640-d8be-3166-91fc-0d705d69e508,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2023,naphtha combustion consumption by to the public,178.2355652,TJ,N2O,0.6,kg/TJ,106.94133912,kg +f0f88d70-d7e6-378c-80c7-3e762ab936db,SESCO,II.1.1,Tucuman,AR-T,annual,2023,naphtha combustion consumption by to the public,199.07142639999998,TJ,CO2,73300.0,kg/TJ,14591935.555119999,kg +7ff022cd-aa74-31bd-bf6f-875f7dcadfc1,SESCO,II.1.1,Tucuman,AR-T,annual,2023,naphtha combustion consumption by to the public,199.07142639999998,TJ,CH4,3.0,kg/TJ,597.2142792,kg +45e357df-577d-3000-b651-a290a0677630,SESCO,II.1.1,Tucuman,AR-T,annual,2023,naphtha combustion consumption by to the public,199.07142639999998,TJ,N2O,0.6,kg/TJ,119.44285583999998,kg +e76a2097-89a7-3e81-a906-80b388507060,SESCO,II.1.1,Buenos Aires,AR-B,annual,2023,naphtha combustion consumption by to the public,3331.627068,TJ,CO2,73300.0,kg/TJ,244208264.0844,kg +c05cc9ec-ea90-384f-94eb-df94ebae5078,SESCO,II.1.1,Buenos Aires,AR-B,annual,2023,naphtha combustion consumption by to the public,3331.627068,TJ,CH4,3.0,kg/TJ,9994.881204,kg +5b5fa324-cbfa-3426-8fb9-6628082ef9e0,SESCO,II.1.1,Buenos Aires,AR-B,annual,2023,naphtha combustion consumption by to the public,3331.627068,TJ,N2O,0.6,kg/TJ,1998.9762407999997,kg +f4c8ee2c-f671-3537-80b1-70d05ca0f45d,SESCO,II.1.1,Capital Federal,AR-C,annual,2023,naphtha combustion consumption by to the public,1345.134252,TJ,CO2,73300.0,kg/TJ,98598340.6716,kg +b6f02273-674e-358f-8be3-0207168e1189,SESCO,II.1.1,Capital Federal,AR-C,annual,2023,naphtha combustion consumption by to the public,1345.134252,TJ,CH4,3.0,kg/TJ,4035.4027560000004,kg +eb157ae8-5042-32d7-9024-03d1fd2f1a63,SESCO,II.1.1,Capital Federal,AR-C,annual,2023,naphtha combustion consumption by to the public,1345.134252,TJ,N2O,0.6,kg/TJ,807.0805512000001,kg +073044f1-9bd4-3bab-87b0-63b2386866a0,SESCO,II.1.1,Catamarca,AR-K,annual,2023,naphtha combustion consumption by to the public,130.41259,TJ,CO2,73300.0,kg/TJ,9559242.847,kg +422e86f5-5f50-396d-b8e9-7c5addc87127,SESCO,II.1.1,Catamarca,AR-K,annual,2023,naphtha combustion consumption by to the public,130.41259,TJ,CH4,3.0,kg/TJ,391.23776999999995,kg +b7030bbb-339e-3394-8f68-11afb3a562c3,SESCO,II.1.1,Catamarca,AR-K,annual,2023,naphtha combustion consumption by to the public,130.41259,TJ,N2O,0.6,kg/TJ,78.247554,kg +f51cf89e-a787-3288-863e-648a18bcc54f,SESCO,II.1.1,Chaco,AR-H,annual,2023,naphtha combustion consumption by to the public,104.42053159999999,TJ,CO2,73300.0,kg/TJ,7654024.966279999,kg +606eb35e-996f-302e-8fc7-f476fbf24e13,SESCO,II.1.1,Chaco,AR-H,annual,2023,naphtha combustion consumption by to the public,104.42053159999999,TJ,CH4,3.0,kg/TJ,313.26159479999995,kg +f5464790-923c-314a-a748-d26a822bac2f,SESCO,II.1.1,Chaco,AR-H,annual,2023,naphtha combustion consumption by to the public,104.42053159999999,TJ,N2O,0.6,kg/TJ,62.65231895999999,kg +7fce49a9-13e0-37d9-8cff-21687923cb9b,SESCO,II.1.1,Chubut,AR-U,annual,2023,naphtha combustion consumption by to the public,274.695652,TJ,CO2,73300.0,kg/TJ,20135191.2916,kg +527f02e4-b980-3b8e-b934-dd34d74e4b4f,SESCO,II.1.1,Chubut,AR-U,annual,2023,naphtha combustion consumption by to the public,274.695652,TJ,CH4,3.0,kg/TJ,824.086956,kg +be895789-2ec0-3ce6-8fb6-f882218762db,SESCO,II.1.1,Chubut,AR-U,annual,2023,naphtha combustion consumption by to the public,274.695652,TJ,N2O,0.6,kg/TJ,164.8173912,kg +b0c4c219-6300-3437-9ef0-b05c3672a24d,SESCO,II.1.1,Corrientes,AR-W,annual,2023,naphtha combustion consumption by to the public,145.8510284,TJ,CO2,73300.0,kg/TJ,10690880.381719999,kg +b5a02d35-71e8-3dd5-a535-da681e36b9b4,SESCO,II.1.1,Corrientes,AR-W,annual,2023,naphtha combustion consumption by to the public,145.8510284,TJ,CH4,3.0,kg/TJ,437.55308519999994,kg +3aba43ef-3c6b-32e4-822d-fadc0e3c17ff,SESCO,II.1.1,Corrientes,AR-W,annual,2023,naphtha combustion consumption by to the public,145.8510284,TJ,N2O,0.6,kg/TJ,87.51061703999999,kg +137ab29f-0801-3827-b621-631a3ea97f0c,SESCO,II.1.1,Córdoba,AR-X,annual,2023,naphtha combustion consumption by to the public,659.1187987999999,TJ,CO2,73300.0,kg/TJ,48313407.952039994,kg +d1b0745b-c98c-340b-9f97-76562a6fa2b5,SESCO,II.1.1,Córdoba,AR-X,annual,2023,naphtha combustion consumption by to the public,659.1187987999999,TJ,CH4,3.0,kg/TJ,1977.3563963999998,kg +d1abd776-df06-3aee-9fd5-7394d8aba14d,SESCO,II.1.1,Córdoba,AR-X,annual,2023,naphtha combustion consumption by to the public,659.1187987999999,TJ,N2O,0.6,kg/TJ,395.4712792799999,kg +15db56cd-e7a8-3097-9695-963c7a71705a,SESCO,II.1.1,Entre Rios,AR-E,annual,2023,naphtha combustion consumption by to the public,337.6253804,TJ,CO2,73300.0,kg/TJ,24747940.38332,kg +17d561e7-594c-3757-8345-8164946f9044,SESCO,II.1.1,Entre Rios,AR-E,annual,2023,naphtha combustion consumption by to the public,337.6253804,TJ,CH4,3.0,kg/TJ,1012.8761411999999,kg +cc3069f3-b320-36b4-b239-a702c7dc4314,SESCO,II.1.1,Entre Rios,AR-E,annual,2023,naphtha combustion consumption by to the public,337.6253804,TJ,N2O,0.6,kg/TJ,202.57522823999997,kg +f97ad3d1-2f59-3a71-9b21-46162cbf0f5b,SESCO,II.1.1,Formosa,AR-P,annual,2023,naphtha combustion consumption by to the public,237.03430519999998,TJ,CO2,73300.0,kg/TJ,17374614.57116,kg +67bc3dc7-06b4-31e6-a924-919649dba4b7,SESCO,II.1.1,Formosa,AR-P,annual,2023,naphtha combustion consumption by to the public,237.03430519999998,TJ,CH4,3.0,kg/TJ,711.1029156,kg +292df19c-aa17-3889-9d1d-c69d11296abb,SESCO,II.1.1,Formosa,AR-P,annual,2023,naphtha combustion consumption by to the public,237.03430519999998,TJ,N2O,0.6,kg/TJ,142.22058312,kg +45afa119-81a5-357f-bddf-4801e6d718bf,SESCO,II.1.1,Jujuy,AR-Y,annual,2023,naphtha combustion consumption by to the public,75.1719276,TJ,CO2,73300.0,kg/TJ,5510102.29308,kg +90648dc7-0f31-3691-8e7c-5c021708601b,SESCO,II.1.1,Jujuy,AR-Y,annual,2023,naphtha combustion consumption by to the public,75.1719276,TJ,CH4,3.0,kg/TJ,225.5157828,kg +70c9f0da-5ffe-3c47-8034-eb7f15c19e60,SESCO,II.1.1,Jujuy,AR-Y,annual,2023,naphtha combustion consumption by to the public,75.1719276,TJ,N2O,0.6,kg/TJ,45.10315656,kg +bdf1ae93-64ea-361e-9a52-77c330c529a1,SESCO,II.1.1,La Pampa,AR-L,annual,2023,naphtha combustion consumption by to the public,77.9158688,TJ,CO2,73300.0,kg/TJ,5711233.18304,kg +e1c8706a-4409-3e79-80ea-d3ca237a7746,SESCO,II.1.1,La Pampa,AR-L,annual,2023,naphtha combustion consumption by to the public,77.9158688,TJ,CH4,3.0,kg/TJ,233.7476064,kg +5b08c4c8-c765-35fa-ae23-76d330238b68,SESCO,II.1.1,La Pampa,AR-L,annual,2023,naphtha combustion consumption by to the public,77.9158688,TJ,N2O,0.6,kg/TJ,46.749521279999996,kg +4f045ad8-f396-318e-a1fb-0c1358dbaf1a,SESCO,II.1.1,La Rioja,AR-F,annual,2023,naphtha combustion consumption by to the public,50.44630359999999,TJ,CO2,73300.0,kg/TJ,3697714.0538799996,kg +b75e53c9-b9c3-36eb-8c9b-50b10e890fde,SESCO,II.1.1,La Rioja,AR-F,annual,2023,naphtha combustion consumption by to the public,50.44630359999999,TJ,CH4,3.0,kg/TJ,151.33891079999998,kg +787a9054-a7b4-38d6-8f77-a9ce82e2c520,SESCO,II.1.1,La Rioja,AR-F,annual,2023,naphtha combustion consumption by to the public,50.44630359999999,TJ,N2O,0.6,kg/TJ,30.267782159999996,kg +75dbe946-c982-3112-9ad0-b09b65bb9160,SESCO,II.1.1,Mendoza,AR-M,annual,2023,naphtha combustion consumption by to the public,204.3783896,TJ,CO2,73300.0,kg/TJ,14980935.95768,kg +f2b0d36d-10f8-3cc6-928c-29aabd04cd9a,SESCO,II.1.1,Mendoza,AR-M,annual,2023,naphtha combustion consumption by to the public,204.3783896,TJ,CH4,3.0,kg/TJ,613.1351688,kg +3134bd5f-94a5-3dc4-8329-f21e7b1bd112,SESCO,II.1.1,Mendoza,AR-M,annual,2023,naphtha combustion consumption by to the public,204.3783896,TJ,N2O,0.6,kg/TJ,122.62703375999999,kg +7f34191e-5710-36c3-bf23-3d95f771c8b3,SESCO,II.1.1,Misiones,AR-N,annual,2023,naphtha combustion consumption by to the public,166.08382559999998,TJ,CO2,73300.0,kg/TJ,12173944.41648,kg +b038951d-5cee-363b-9896-fab7c08092b1,SESCO,II.1.1,Misiones,AR-N,annual,2023,naphtha combustion consumption by to the public,166.08382559999998,TJ,CH4,3.0,kg/TJ,498.2514768,kg +3c692b44-9847-375e-9b7c-c3374bdb3b24,SESCO,II.1.1,Misiones,AR-N,annual,2023,naphtha combustion consumption by to the public,166.08382559999998,TJ,N2O,0.6,kg/TJ,99.65029535999999,kg +2c888e71-3ff5-33d4-82eb-87cacbaa1b8a,SESCO,II.1.1,Neuquén,AR-Q,annual,2023,naphtha combustion consumption by to the public,226.54099159999998,TJ,CO2,73300.0,kg/TJ,16605454.684279999,kg +e834a687-fc93-31c1-894d-22e4b78a75f2,SESCO,II.1.1,Neuquén,AR-Q,annual,2023,naphtha combustion consumption by to the public,226.54099159999998,TJ,CH4,3.0,kg/TJ,679.6229748,kg +c9066639-b420-39a7-91df-864b4ff6e699,SESCO,II.1.1,Neuquén,AR-Q,annual,2023,naphtha combustion consumption by to the public,226.54099159999998,TJ,N2O,0.6,kg/TJ,135.92459495999998,kg +98833ee3-8586-39bc-8b58-82a4cf5bb986,SESCO,II.1.1,Rio Negro,AR-R,annual,2023,naphtha combustion consumption by to the public,320.8903543999999,TJ,CO2,73300.0,kg/TJ,23521262.977519993,kg +c40e3756-740a-357d-afa4-76553643e687,SESCO,II.1.1,Rio Negro,AR-R,annual,2023,naphtha combustion consumption by to the public,320.8903543999999,TJ,CH4,3.0,kg/TJ,962.6710631999997,kg +b01d5fa4-e42e-3896-9889-9d16e93fbc36,SESCO,II.1.1,Rio Negro,AR-R,annual,2023,naphtha combustion consumption by to the public,320.8903543999999,TJ,N2O,0.6,kg/TJ,192.53421263999994,kg +70f88e22-5e6f-310a-a136-1eb9df0897fc,SESCO,II.1.1,Salta,AR-A,annual,2023,naphtha combustion consumption by to the public,53.58223639999999,TJ,CO2,73300.0,kg/TJ,3927577.9281199994,kg +68364c4d-774a-3c5f-b4f1-a482bf52246c,SESCO,II.1.1,Salta,AR-A,annual,2023,naphtha combustion consumption by to the public,53.58223639999999,TJ,CH4,3.0,kg/TJ,160.74670919999997,kg +751afb7e-05ef-326e-8047-0a4923c5e165,SESCO,II.1.1,Salta,AR-A,annual,2023,naphtha combustion consumption by to the public,53.58223639999999,TJ,N2O,0.6,kg/TJ,32.14934183999999,kg +ae574f6e-535c-34d8-9586-2450657ed264,SESCO,II.1.1,San Juan,AR-J,annual,2023,naphtha combustion consumption by to the public,48.42603919999999,TJ,CO2,73300.0,kg/TJ,3549628.6733599994,kg +d2190e2f-749e-3991-af84-e0172fbd12cb,SESCO,II.1.1,San Juan,AR-J,annual,2023,naphtha combustion consumption by to the public,48.42603919999999,TJ,CH4,3.0,kg/TJ,145.27811759999997,kg +03014dd8-ba04-3861-b015-2f63c28d5318,SESCO,II.1.1,San Juan,AR-J,annual,2023,naphtha combustion consumption by to the public,48.42603919999999,TJ,N2O,0.6,kg/TJ,29.055623519999994,kg +d5ee8b33-1279-3c69-aa5e-0583b73fb4c0,SESCO,II.1.1,San Luis,AR-D,annual,2023,naphtha combustion consumption by to the public,110.51147799999998,TJ,CO2,73300.0,kg/TJ,8100491.337399999,kg +47ead391-86b2-3862-9c4c-411a89f96dad,SESCO,II.1.1,San Luis,AR-D,annual,2023,naphtha combustion consumption by to the public,110.51147799999998,TJ,CH4,3.0,kg/TJ,331.5344339999999,kg +d34f166d-2640-3aa5-a3c2-7f938adf1d75,SESCO,II.1.1,San Luis,AR-D,annual,2023,naphtha combustion consumption by to the public,110.51147799999998,TJ,N2O,0.6,kg/TJ,66.30688679999999,kg +343496c5-6ad4-3dee-91e0-c49555a1b672,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2023,naphtha combustion consumption by to the public,147.0873096,TJ,CO2,73300.0,kg/TJ,10781499.79368,kg +08068f53-d6af-3ecc-8ac5-344fdc522a6e,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2023,naphtha combustion consumption by to the public,147.0873096,TJ,CH4,3.0,kg/TJ,441.26192879999996,kg +88a063d1-4acf-3d22-b4bf-92755a9ad5a1,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2023,naphtha combustion consumption by to the public,147.0873096,TJ,N2O,0.6,kg/TJ,88.25238576,kg +e7f19fae-81e3-3d59-ab7b-4a1d1a627a2d,SESCO,II.1.1,Santa Fe,AR-S,annual,2023,naphtha combustion consumption by to the public,784.9179491999998,TJ,CO2,73300.0,kg/TJ,57534485.67635999,kg +e43c32af-f4ab-3fc1-8148-68122ead7df1,SESCO,II.1.1,Santa Fe,AR-S,annual,2023,naphtha combustion consumption by to the public,784.9179491999998,TJ,CH4,3.0,kg/TJ,2354.7538475999995,kg +f78f0769-ade5-3942-86b8-ef7879256748,SESCO,II.1.1,Santa Fe,AR-S,annual,2023,naphtha combustion consumption by to the public,784.9179491999998,TJ,N2O,0.6,kg/TJ,470.9507695199999,kg +06ac9ce4-9cf2-35a0-884d-42cac424f5ab,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2023,naphtha combustion consumption by to the public,159.78180679999997,TJ,CO2,73300.0,kg/TJ,11712006.438439997,kg +2b7b3c43-6f48-32b0-bc13-f7a6b80f4156,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2023,naphtha combustion consumption by to the public,159.78180679999997,TJ,CH4,3.0,kg/TJ,479.3454203999999,kg +7f400ec1-dec7-389c-844d-c12543804d62,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2023,naphtha combustion consumption by to the public,159.78180679999997,TJ,N2O,0.6,kg/TJ,95.86908407999998,kg +6efa85d7-654c-35a3-99e4-36c21f00607d,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2023,naphtha combustion consumption by to the public,43.0587696,TJ,CO2,73300.0,kg/TJ,3156207.81168,kg +8aebec1c-23a1-3b9a-ac5e-d20ae1b6b86b,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2023,naphtha combustion consumption by to the public,43.0587696,TJ,CH4,3.0,kg/TJ,129.1763088,kg +a6198b5c-6c4e-344d-9181-98fe027a31b0,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2023,naphtha combustion consumption by to the public,43.0587696,TJ,N2O,0.6,kg/TJ,25.835261759999998,kg +e22ce133-3dc5-3519-a61d-27ba1aa9dcba,SESCO,II.1.1,Tucuman,AR-T,annual,2023,naphtha combustion consumption by to the public,39.68161119999999,TJ,CO2,73300.0,kg/TJ,2908662.1009599995,kg +e22d74a9-2850-3adf-b28f-d10305334eb1,SESCO,II.1.1,Tucuman,AR-T,annual,2023,naphtha combustion consumption by to the public,39.68161119999999,TJ,CH4,3.0,kg/TJ,119.04483359999998,kg +2c8ec126-296d-3aee-8fdf-651fa7d4f15b,SESCO,II.1.1,Tucuman,AR-T,annual,2023,naphtha combustion consumption by to the public,39.68161119999999,TJ,N2O,0.6,kg/TJ,23.808966719999994,kg +e231b901-ed2d-3332-a5c7-b1e2bfa932f1,SESCO,II.1.1,Buenos Aires,AR-B,annual,2023,naphtha combustion consumption by freight transport,19.59958,TJ,CO2,73300.0,kg/TJ,1436649.214,kg +eb240d32-4366-34a3-8c24-3e40b8e8e1d4,SESCO,II.1.1,Buenos Aires,AR-B,annual,2023,naphtha combustion consumption by freight transport,19.59958,TJ,CH4,3.0,kg/TJ,58.798739999999995,kg +27a0b299-8a71-3fc9-9bdd-eaf96477a47f,SESCO,II.1.1,Buenos Aires,AR-B,annual,2023,naphtha combustion consumption by freight transport,19.59958,TJ,N2O,0.6,kg/TJ,11.759748,kg +2df7f0e2-a793-394d-997c-492794eb4502,SESCO,II.1.1,Capital Federal,AR-C,annual,2023,naphtha combustion consumption by freight transport,25.388994399999998,TJ,CO2,73300.0,kg/TJ,1861013.2895199999,kg +fad370c2-a40b-348f-9d7d-f2396be1ed2b,SESCO,II.1.1,Capital Federal,AR-C,annual,2023,naphtha combustion consumption by freight transport,25.388994399999998,TJ,CH4,3.0,kg/TJ,76.16698319999999,kg +17504033-42a8-3c74-a1e0-d97210e5944a,SESCO,II.1.1,Capital Federal,AR-C,annual,2023,naphtha combustion consumption by freight transport,25.388994399999998,TJ,N2O,0.6,kg/TJ,15.233396639999999,kg +17d72963-b92a-3428-8a02-96ea590c86f4,SESCO,II.1.1,Chaco,AR-H,annual,2023,naphtha combustion consumption by freight transport,0.030153199999999998,TJ,CO2,73300.0,kg/TJ,2210.2295599999998,kg +2cbd8a1b-d5a3-3267-a6e5-3c50f16a0b79,SESCO,II.1.1,Chaco,AR-H,annual,2023,naphtha combustion consumption by freight transport,0.030153199999999998,TJ,CH4,3.0,kg/TJ,0.0904596,kg +155493ee-dbe8-3239-943c-deb2f4f0376b,SESCO,II.1.1,Chaco,AR-H,annual,2023,naphtha combustion consumption by freight transport,0.030153199999999998,TJ,N2O,0.6,kg/TJ,0.018091919999999997,kg +c300c9b9-5724-3232-9b6e-5a4f12d42eb7,SESCO,II.1.1,Corrientes,AR-W,annual,2023,naphtha combustion consumption by freight transport,0.030153199999999998,TJ,CO2,73300.0,kg/TJ,2210.2295599999998,kg +70756428-9c9e-3955-87ac-74d1150801a9,SESCO,II.1.1,Corrientes,AR-W,annual,2023,naphtha combustion consumption by freight transport,0.030153199999999998,TJ,CH4,3.0,kg/TJ,0.0904596,kg +507a428f-0fcd-33ae-af72-2733185065e0,SESCO,II.1.1,Corrientes,AR-W,annual,2023,naphtha combustion consumption by freight transport,0.030153199999999998,TJ,N2O,0.6,kg/TJ,0.018091919999999997,kg +4ec9b774-baaf-3cdc-9e46-50ec88dfe839,SESCO,II.1.1,Córdoba,AR-X,annual,2023,naphtha combustion consumption by freight transport,3.3470052,TJ,CO2,73300.0,kg/TJ,245335.48116,kg +aeee371a-58d6-3488-b6e6-b05ff35623e6,SESCO,II.1.1,Córdoba,AR-X,annual,2023,naphtha combustion consumption by freight transport,3.3470052,TJ,CH4,3.0,kg/TJ,10.0410156,kg +3d5db1fd-4891-3262-b1fa-aab14af48617,SESCO,II.1.1,Córdoba,AR-X,annual,2023,naphtha combustion consumption by freight transport,3.3470052,TJ,N2O,0.6,kg/TJ,2.0082031199999997,kg +76ebe90c-ce5e-3136-956f-403a88b3cf4e,SESCO,II.1.1,Mendoza,AR-M,annual,2023,naphtha combustion consumption by freight transport,0.1809192,TJ,CO2,73300.0,kg/TJ,13261.37736,kg +63415010-a225-361f-8d35-968747c89b9e,SESCO,II.1.1,Mendoza,AR-M,annual,2023,naphtha combustion consumption by freight transport,0.1809192,TJ,CH4,3.0,kg/TJ,0.5427576000000001,kg +19f3f508-1ca3-3ace-89f5-b3c28e41ba16,SESCO,II.1.1,Mendoza,AR-M,annual,2023,naphtha combustion consumption by freight transport,0.1809192,TJ,N2O,0.6,kg/TJ,0.10855152,kg +b834c12b-2457-3e54-9156-7c4f556d5420,SESCO,II.1.1,Rio Negro,AR-R,annual,2023,naphtha combustion consumption by freight transport,0.39199159999999994,TJ,CO2,73300.0,kg/TJ,28732.984279999997,kg +76d61c25-ef96-3bb1-a835-d9cad97f2594,SESCO,II.1.1,Rio Negro,AR-R,annual,2023,naphtha combustion consumption by freight transport,0.39199159999999994,TJ,CH4,3.0,kg/TJ,1.1759747999999999,kg +7a67bfe9-ec1c-33f4-9912-32448d94da68,SESCO,II.1.1,Rio Negro,AR-R,annual,2023,naphtha combustion consumption by freight transport,0.39199159999999994,TJ,N2O,0.6,kg/TJ,0.23519495999999995,kg +ee695023-6000-3bd4-977a-ff0219bfc901,SESCO,II.1.1,Santa Fe,AR-S,annual,2023,naphtha combustion consumption by freight transport,10.0410156,TJ,CO2,73300.0,kg/TJ,736006.44348,kg +f0291abf-b3ad-3b0f-85cc-8a4074504e1b,SESCO,II.1.1,Santa Fe,AR-S,annual,2023,naphtha combustion consumption by freight transport,10.0410156,TJ,CH4,3.0,kg/TJ,30.123046799999997,kg +149b6b17-542d-34ce-becc-b50f8cb96596,SESCO,II.1.1,Santa Fe,AR-S,annual,2023,naphtha combustion consumption by freight transport,10.0410156,TJ,N2O,0.6,kg/TJ,6.0246093599999995,kg +eadabfef-8c4e-3a59-af2f-e9c1252c4c10,SESCO,II.1.1,Buenos Aires,AR-B,annual,2023,naphtha combustion consumption by freight transport,11.608982,TJ,CO2,73300.0,kg/TJ,850938.3805999999,kg +a2a70d21-7189-3c35-aa01-17ca4036abc8,SESCO,II.1.1,Buenos Aires,AR-B,annual,2023,naphtha combustion consumption by freight transport,11.608982,TJ,CH4,3.0,kg/TJ,34.826946,kg +350e7ca9-2286-31cc-966a-3b87f46ba285,SESCO,II.1.1,Buenos Aires,AR-B,annual,2023,naphtha combustion consumption by freight transport,11.608982,TJ,N2O,0.6,kg/TJ,6.9653892,kg +ddcfa4d4-fc0a-3bf2-b37f-4075472e7f64,SESCO,II.1.1,Capital Federal,AR-C,annual,2023,naphtha combustion consumption by freight transport,19.117128799999996,TJ,CO2,73300.0,kg/TJ,1401285.5410399998,kg +bbee0e45-1ad2-37f5-94ad-b9d69e20efe6,SESCO,II.1.1,Capital Federal,AR-C,annual,2023,naphtha combustion consumption by freight transport,19.117128799999996,TJ,CH4,3.0,kg/TJ,57.35138639999999,kg +7b645820-ab46-3a9a-926e-39e66a46438d,SESCO,II.1.1,Capital Federal,AR-C,annual,2023,naphtha combustion consumption by freight transport,19.117128799999996,TJ,N2O,0.6,kg/TJ,11.470277279999998,kg +b01f7882-920c-3ffb-886a-963c0b52225a,SESCO,II.1.1,Chubut,AR-U,annual,2023,naphtha combustion consumption by freight transport,0.060306399999999996,TJ,CO2,73300.0,kg/TJ,4420.4591199999995,kg +14ab8417-6b2a-32c5-b87a-57049afa18ac,SESCO,II.1.1,Chubut,AR-U,annual,2023,naphtha combustion consumption by freight transport,0.060306399999999996,TJ,CH4,3.0,kg/TJ,0.1809192,kg +ec48b238-ba28-3d95-9eb3-29ba2711908e,SESCO,II.1.1,Chubut,AR-U,annual,2023,naphtha combustion consumption by freight transport,0.060306399999999996,TJ,N2O,0.6,kg/TJ,0.036183839999999995,kg +2b366b2e-a5d1-3605-9bcd-03cdb52b61d8,SESCO,II.1.1,Córdoba,AR-X,annual,2023,naphtha combustion consumption by freight transport,1.2965876,TJ,CO2,73300.0,kg/TJ,95039.87108000001,kg +5370cfdd-8553-385f-b2b7-d3d9118caf1f,SESCO,II.1.1,Córdoba,AR-X,annual,2023,naphtha combustion consumption by freight transport,1.2965876,TJ,CH4,3.0,kg/TJ,3.8897628,kg +38bf5fba-4ac6-308f-b157-07be8c232925,SESCO,II.1.1,Córdoba,AR-X,annual,2023,naphtha combustion consumption by freight transport,1.2965876,TJ,N2O,0.6,kg/TJ,0.77795256,kg +312353b8-b336-3598-8263-3f5d9a7e8491,SESCO,II.1.1,Entre Rios,AR-E,annual,2023,naphtha combustion consumption by freight transport,0.0904596,TJ,CO2,73300.0,kg/TJ,6630.68868,kg +04359fcb-e092-3327-a6ff-4d5e5169adf6,SESCO,II.1.1,Entre Rios,AR-E,annual,2023,naphtha combustion consumption by freight transport,0.0904596,TJ,CH4,3.0,kg/TJ,0.27137880000000003,kg +cb819f4d-f1db-3643-852e-d6967e489ef8,SESCO,II.1.1,Entre Rios,AR-E,annual,2023,naphtha combustion consumption by freight transport,0.0904596,TJ,N2O,0.6,kg/TJ,0.05427576,kg +e893da2b-104f-319f-9dbe-966bc1345561,SESCO,II.1.1,La Rioja,AR-F,annual,2023,naphtha combustion consumption by freight transport,0.3618384,TJ,CO2,73300.0,kg/TJ,26522.75472,kg +1ac9d339-bb9d-3dcf-aeea-eee37277816a,SESCO,II.1.1,La Rioja,AR-F,annual,2023,naphtha combustion consumption by freight transport,0.3618384,TJ,CH4,3.0,kg/TJ,1.0855152000000001,kg +8da50a9e-082a-3b6e-8f01-855561b8d44c,SESCO,II.1.1,La Rioja,AR-F,annual,2023,naphtha combustion consumption by freight transport,0.3618384,TJ,N2O,0.6,kg/TJ,0.21710304,kg +3fe5a495-a091-3fe9-b964-eced95cd7409,SESCO,II.1.1,Neuquén,AR-Q,annual,2023,naphtha combustion consumption by freight transport,0.030153199999999998,TJ,CO2,73300.0,kg/TJ,2210.2295599999998,kg +1862f7c8-cf43-3c82-bf39-4485faba67ce,SESCO,II.1.1,Neuquén,AR-Q,annual,2023,naphtha combustion consumption by freight transport,0.030153199999999998,TJ,CH4,3.0,kg/TJ,0.0904596,kg +ec4aaa6d-f505-33d5-a150-c6b440f72dba,SESCO,II.1.1,Neuquén,AR-Q,annual,2023,naphtha combustion consumption by freight transport,0.030153199999999998,TJ,N2O,0.6,kg/TJ,0.018091919999999997,kg +47fa8cce-b1d6-3d62-8e2b-5287a43b9d4f,SESCO,II.1.1,Rio Negro,AR-R,annual,2023,naphtha combustion consumption by freight transport,0.5126044,TJ,CO2,73300.0,kg/TJ,37573.902519999996,kg +03217f83-f776-32e7-9342-1ddae716e63a,SESCO,II.1.1,Rio Negro,AR-R,annual,2023,naphtha combustion consumption by freight transport,0.5126044,TJ,CH4,3.0,kg/TJ,1.5378132,kg +467dce75-5539-313d-bd40-0ca285d121b7,SESCO,II.1.1,Rio Negro,AR-R,annual,2023,naphtha combustion consumption by freight transport,0.5126044,TJ,N2O,0.6,kg/TJ,0.30756263999999994,kg +ba004c94-bc25-328d-9217-fc80c9ff8989,SESCO,II.1.1,San Luis,AR-D,annual,2023,naphtha combustion consumption by freight transport,0.8744427999999999,TJ,CO2,73300.0,kg/TJ,64096.657239999986,kg +c3ca0bf6-4516-30df-a16e-eef1bae99c33,SESCO,II.1.1,San Luis,AR-D,annual,2023,naphtha combustion consumption by freight transport,0.8744427999999999,TJ,CH4,3.0,kg/TJ,2.6233283999999997,kg +65f09145-c369-3bd3-8efa-fef10b6832cb,SESCO,II.1.1,San Luis,AR-D,annual,2023,naphtha combustion consumption by freight transport,0.8744427999999999,TJ,N2O,0.6,kg/TJ,0.5246656799999999,kg +42847b75-32b6-3db2-ba61-32b3edb053f1,SESCO,II.1.1,Santa Fe,AR-S,annual,2023,naphtha combustion consumption by freight transport,7.628759599999999,TJ,CO2,73300.0,kg/TJ,559188.0786799999,kg +215c2a9b-50ee-36e8-b0af-700e95bc791c,SESCO,II.1.1,Santa Fe,AR-S,annual,2023,naphtha combustion consumption by freight transport,7.628759599999999,TJ,CH4,3.0,kg/TJ,22.886278799999996,kg +68ec58e6-1686-3ef6-b821-ab5e4663b736,SESCO,II.1.1,Santa Fe,AR-S,annual,2023,naphtha combustion consumption by freight transport,7.628759599999999,TJ,N2O,0.6,kg/TJ,4.577255759999999,kg +e1fae405-208e-3c87-be51-e60fff112708,SESCO,II.1.1,Buenos Aires,AR-B,annual,2023,naphtha combustion consumption by public passenger transport,0.060306399999999996,TJ,CO2,73300.0,kg/TJ,4420.4591199999995,kg +c67e2a65-09e4-3c9e-9c8e-305093412dfe,SESCO,II.1.1,Buenos Aires,AR-B,annual,2023,naphtha combustion consumption by public passenger transport,0.060306399999999996,TJ,CH4,3.0,kg/TJ,0.1809192,kg +787e7af1-d5e7-3cd7-8cbe-1745491e18fd,SESCO,II.1.1,Buenos Aires,AR-B,annual,2023,naphtha combustion consumption by public passenger transport,0.060306399999999996,TJ,N2O,0.6,kg/TJ,0.036183839999999995,kg +cde4ffc9-988b-3f8e-b3a9-0f012c953627,SESCO,II.1.1,Entre Rios,AR-E,annual,2023,naphtha combustion consumption by public passenger transport,0.2713788,TJ,CO2,73300.0,kg/TJ,19892.066039999998,kg +36b4fa6a-3a72-3000-9318-a5715dcb7369,SESCO,II.1.1,Entre Rios,AR-E,annual,2023,naphtha combustion consumption by public passenger transport,0.2713788,TJ,CH4,3.0,kg/TJ,0.8141364,kg +d89bdfbe-3057-3be0-8f7b-613c7b8fcb0d,SESCO,II.1.1,Entre Rios,AR-E,annual,2023,naphtha combustion consumption by public passenger transport,0.2713788,TJ,N2O,0.6,kg/TJ,0.16282728,kg +91e1c74f-c1f3-34e5-970f-66a609f8d576,SESCO,II.1.1,Buenos Aires,AR-B,annual,2023,naphtha combustion consumption by public passenger transport,0.030153199999999998,TJ,CO2,73300.0,kg/TJ,2210.2295599999998,kg +0f77e354-d408-3afe-b8dc-485b037f493d,SESCO,II.1.1,Buenos Aires,AR-B,annual,2023,naphtha combustion consumption by public passenger transport,0.030153199999999998,TJ,CH4,3.0,kg/TJ,0.0904596,kg +f14385c7-3c36-387b-b772-1152e2b12a65,SESCO,II.1.1,Buenos Aires,AR-B,annual,2023,naphtha combustion consumption by public passenger transport,0.030153199999999998,TJ,N2O,0.6,kg/TJ,0.018091919999999997,kg +d4101d19-4553-3c9f-a7fe-c5f885d9da73,SESCO,II.1.1,Capital Federal,AR-C,annual,2023,naphtha combustion consumption by public passenger transport,0.6633703999999999,TJ,CO2,73300.0,kg/TJ,48625.050319999995,kg +751b371a-9ab8-3c47-909a-4aa5e1ee708a,SESCO,II.1.1,Capital Federal,AR-C,annual,2023,naphtha combustion consumption by public passenger transport,0.6633703999999999,TJ,CH4,3.0,kg/TJ,1.9901111999999999,kg +adc5d22d-1f7a-3083-aa09-292442c973bc,SESCO,II.1.1,Capital Federal,AR-C,annual,2023,naphtha combustion consumption by public passenger transport,0.6633703999999999,TJ,N2O,0.6,kg/TJ,0.3980222399999999,kg +656c8d5e-8caa-3378-82be-c8082d1142c9,SESCO,II.1.1,Entre Rios,AR-E,annual,2023,naphtha combustion consumption by public passenger transport,0.6935236,TJ,CO2,73300.0,kg/TJ,50835.27988,kg +bf888c88-0aab-341c-8772-8479a502f4a7,SESCO,II.1.1,Entre Rios,AR-E,annual,2023,naphtha combustion consumption by public passenger transport,0.6935236,TJ,CH4,3.0,kg/TJ,2.0805708000000003,kg +f03c1a8c-bb84-3177-b334-20960f4dda14,SESCO,II.1.1,Entre Rios,AR-E,annual,2023,naphtha combustion consumption by public passenger transport,0.6935236,TJ,N2O,0.6,kg/TJ,0.41611416,kg +6b7b063d-ad79-36fd-8f88-f8ac69b9c3ec,SESCO,II.1.1,Catamarca,AR-K,annual,2023,naphtha combustion consumption by to the public,59.27666821999999,TJ,CO2,73300.0,kg/TJ,4344979.780525999,kg +a8f21933-6098-3637-b004-a2f81b51b599,SESCO,II.1.1,Catamarca,AR-K,annual,2023,naphtha combustion consumption by to the public,59.27666821999999,TJ,CH4,3.0,kg/TJ,177.83000466,kg +feeadb28-da39-3735-a698-236050efcf16,SESCO,II.1.1,Catamarca,AR-K,annual,2023,naphtha combustion consumption by to the public,59.27666821999999,TJ,N2O,0.6,kg/TJ,35.566000931999994,kg +ba155835-0136-38f8-8ad8-0d3919cd9e5e,SESCO,II.1.1,Chaco,AR-H,annual,2023,naphtha combustion consumption by to the public,62.86218523199999,TJ,CO2,73300.0,kg/TJ,4607798.177505599,kg +2cd028d4-1f24-31d2-91d5-af9fef927b3c,SESCO,II.1.1,Chaco,AR-H,annual,2023,naphtha combustion consumption by to the public,62.86218523199999,TJ,CH4,3.0,kg/TJ,188.58655569599995,kg +d888e0ad-7e08-3d4b-9c13-9b3351ead33f,SESCO,II.1.1,Chaco,AR-H,annual,2023,naphtha combustion consumption by to the public,62.86218523199999,TJ,N2O,0.6,kg/TJ,37.71731113919999,kg +ef392be7-876e-3970-8f62-b3c135d7cf0c,SESCO,II.1.1,Córdoba,AR-X,annual,2023,naphtha combustion consumption by to the public,8.080454536,TJ,CO2,73300.0,kg/TJ,592297.3174887999,kg +479a1912-0870-3c22-946b-bfa97d878cf8,SESCO,II.1.1,Córdoba,AR-X,annual,2023,naphtha combustion consumption by to the public,8.080454536,TJ,CH4,3.0,kg/TJ,24.241363608,kg +e9b319d2-6a03-3b18-ae08-32383367abe3,SESCO,II.1.1,Córdoba,AR-X,annual,2023,naphtha combustion consumption by to the public,8.080454536,TJ,N2O,0.6,kg/TJ,4.8482727216,kg +4beddbb1-f3ab-310c-8ff5-d335f8f41005,SESCO,II.1.1,Jujuy,AR-Y,annual,2023,naphtha combustion consumption by to the public,315.87195732399994,TJ,CO2,73300.0,kg/TJ,23153414.471849196,kg +15ba843d-ff85-3013-81bf-d12197f74476,SESCO,II.1.1,Jujuy,AR-Y,annual,2023,naphtha combustion consumption by to the public,315.87195732399994,TJ,CH4,3.0,kg/TJ,947.6158719719998,kg +474322b5-460b-3c2e-b21e-13921efbc0d1,SESCO,II.1.1,Jujuy,AR-Y,annual,2023,naphtha combustion consumption by to the public,315.87195732399994,TJ,N2O,0.6,kg/TJ,189.52317439439994,kg +ff76d951-e1d5-35ef-97fd-e389e5658cc7,SESCO,II.1.1,La Rioja,AR-F,annual,2023,naphtha combustion consumption by to the public,319.66824520399996,TJ,CO2,73300.0,kg/TJ,23431682.373453196,kg +25c273a1-ff14-32c2-aac5-37f89807529f,SESCO,II.1.1,La Rioja,AR-F,annual,2023,naphtha combustion consumption by to the public,319.66824520399996,TJ,CH4,3.0,kg/TJ,959.0047356119999,kg +abdddd1d-6828-30ee-898b-d8bbca8736aa,SESCO,II.1.1,La Rioja,AR-F,annual,2023,naphtha combustion consumption by to the public,319.66824520399996,TJ,N2O,0.6,kg/TJ,191.80094712239998,kg +cf5aca1d-45b9-3a85-afe1-80e9964a4b44,SESCO,II.1.1,Salta,AR-A,annual,2023,naphtha combustion consumption by to the public,855.53222062,TJ,CO2,73300.0,kg/TJ,62710511.771446,kg +ceb10e80-58e0-3ce4-b8b2-b6c6b83e5ed4,SESCO,II.1.1,Salta,AR-A,annual,2023,naphtha combustion consumption by to the public,855.53222062,TJ,CH4,3.0,kg/TJ,2566.59666186,kg +8b92538b-3020-3019-863a-9b537a19834d,SESCO,II.1.1,Salta,AR-A,annual,2023,naphtha combustion consumption by to the public,855.53222062,TJ,N2O,0.6,kg/TJ,513.319332372,kg +cc804ad9-6871-310f-a788-94f8d3f8fdc5,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2023,naphtha combustion consumption by to the public,292.970903456,TJ,CO2,73300.0,kg/TJ,21474767.223324798,kg +dd67e768-d44b-3c23-9afe-30439956e7f8,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2023,naphtha combustion consumption by to the public,292.970903456,TJ,CH4,3.0,kg/TJ,878.9127103679999,kg +31f18203-4d3d-35fc-a190-754fb234b1e6,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2023,naphtha combustion consumption by to the public,292.970903456,TJ,N2O,0.6,kg/TJ,175.78254207359998,kg +289b8b9a-3fd2-3699-8189-0e50d0bf99c0,SESCO,II.1.1,Tucuman,AR-T,annual,2023,naphtha combustion consumption by to the public,1583.5420354599999,TJ,CO2,73300.0,kg/TJ,116073631.19921799,kg +9776373f-d00a-3ef3-a7e3-213390eb9519,SESCO,II.1.1,Tucuman,AR-T,annual,2023,naphtha combustion consumption by to the public,1583.5420354599999,TJ,CH4,3.0,kg/TJ,4750.626106379999,kg +45d828d9-eb3b-3f5b-97fd-aed07a4ca435,SESCO,II.1.1,Tucuman,AR-T,annual,2023,naphtha combustion consumption by to the public,1583.5420354599999,TJ,N2O,0.6,kg/TJ,950.1252212759998,kg +57f70012-82a5-338f-be03-900c31cbe8ba,SESCO,II.1.1,Catamarca,AR-K,annual,2023,naphtha combustion consumption by to the public,5.3063601359999995,TJ,CO2,73300.0,kg/TJ,388956.19796879997,kg +6cc58f84-2cb4-3309-965e-2b78ebde4bbc,SESCO,II.1.1,Catamarca,AR-K,annual,2023,naphtha combustion consumption by to the public,5.3063601359999995,TJ,CH4,3.0,kg/TJ,15.919080408,kg +005b4ca6-16c2-3027-945f-aabf4c10b1ed,SESCO,II.1.1,Catamarca,AR-K,annual,2023,naphtha combustion consumption by to the public,5.3063601359999995,TJ,N2O,0.6,kg/TJ,3.1838160815999994,kg +3736293a-c04a-3e79-b20c-5cd330b43fe1,SESCO,II.1.1,Chaco,AR-H,annual,2023,naphtha combustion consumption by to the public,2.4119544680000002,TJ,CO2,73300.0,kg/TJ,176796.26250440002,kg +9253fba8-0954-3447-ba59-70f6abccd921,SESCO,II.1.1,Chaco,AR-H,annual,2023,naphtha combustion consumption by to the public,2.4119544680000002,TJ,CH4,3.0,kg/TJ,7.235863404000001,kg +0e416dd2-d1d6-3da8-a239-14c251f08137,SESCO,II.1.1,Chaco,AR-H,annual,2023,naphtha combustion consumption by to the public,2.4119544680000002,TJ,N2O,0.6,kg/TJ,1.4471726808,kg +a936facd-7344-3642-8e89-44d0c024ceea,SESCO,II.1.1,Córdoba,AR-X,annual,2023,naphtha combustion consumption by to the public,1.175673268,TJ,CO2,73300.0,kg/TJ,86176.85054439999,kg +a825c763-fed6-3700-8eda-968d46c6cda9,SESCO,II.1.1,Córdoba,AR-X,annual,2023,naphtha combustion consumption by to the public,1.175673268,TJ,CH4,3.0,kg/TJ,3.527019804,kg +78f322eb-e6bd-3778-96bd-f8f6e53d70fb,SESCO,II.1.1,Córdoba,AR-X,annual,2023,naphtha combustion consumption by to the public,1.175673268,TJ,N2O,0.6,kg/TJ,0.7054039607999999,kg +c54921d1-48b1-3fd0-b365-00604d093357,SESCO,II.1.1,Jujuy,AR-Y,annual,2023,naphtha combustion consumption by to the public,23.911186067999996,TJ,CO2,73300.0,kg/TJ,1752689.9387843998,kg +c7bbed01-a539-3419-80b1-dd8d3e6ca603,SESCO,II.1.1,Jujuy,AR-Y,annual,2023,naphtha combustion consumption by to the public,23.911186067999996,TJ,CH4,3.0,kg/TJ,71.73355820399999,kg +caebbc38-a39a-3d55-a51f-05d13a8b89cf,SESCO,II.1.1,Jujuy,AR-Y,annual,2023,naphtha combustion consumption by to the public,23.911186067999996,TJ,N2O,0.6,kg/TJ,14.346711640799997,kg +efe7be48-c29a-306a-8333-c25ff879faf2,SESCO,II.1.1,La Rioja,AR-F,annual,2023,naphtha combustion consumption by to the public,44.017038295999996,TJ,CO2,73300.0,kg/TJ,3226448.9070967995,kg +65959f1c-a95a-3803-8384-76a1f26a91ce,SESCO,II.1.1,La Rioja,AR-F,annual,2023,naphtha combustion consumption by to the public,44.017038295999996,TJ,CH4,3.0,kg/TJ,132.05111488799997,kg +c186ca30-89e1-3f31-981b-adf5ef68685f,SESCO,II.1.1,La Rioja,AR-F,annual,2023,naphtha combustion consumption by to the public,44.017038295999996,TJ,N2O,0.6,kg/TJ,26.410222977599997,kg +4d5328aa-a796-3865-8184-cb183ac0a79e,SESCO,II.1.1,Salta,AR-A,annual,2023,naphtha combustion consumption by to the public,68.66999308399998,TJ,CO2,73300.0,kg/TJ,5033510.493057199,kg +1e2b9ad1-e3b6-3664-9606-d83137141c5e,SESCO,II.1.1,Salta,AR-A,annual,2023,naphtha combustion consumption by to the public,68.66999308399998,TJ,CH4,3.0,kg/TJ,206.00997925199994,kg +a315b13a-a2d5-303f-902c-82c9b88b6792,SESCO,II.1.1,Salta,AR-A,annual,2023,naphtha combustion consumption by to the public,68.66999308399998,TJ,N2O,0.6,kg/TJ,41.20199585039999,kg +e9f427e8-1734-3e86-8f2e-6f4c65e7251d,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2023,naphtha combustion consumption by to the public,36.784793276,TJ,CO2,73300.0,kg/TJ,2696325.3471308,kg +3700cf85-d978-309e-85ed-bb918f070f2d,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2023,naphtha combustion consumption by to the public,36.784793276,TJ,CH4,3.0,kg/TJ,110.354379828,kg +0b307b1b-6f6a-34d7-8206-17e343b8247f,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2023,naphtha combustion consumption by to the public,36.784793276,TJ,N2O,0.6,kg/TJ,22.0708759656,kg +d33366ec-0584-39e2-b4f2-f601d32a036f,SESCO,II.1.1,Tucuman,AR-T,annual,2023,naphtha combustion consumption by to the public,140.15026440799997,TJ,CO2,73300.0,kg/TJ,10273014.381106397,kg +03c45597-f9c8-3f9f-95d4-21feae4ba878,SESCO,II.1.1,Tucuman,AR-T,annual,2023,naphtha combustion consumption by to the public,140.15026440799997,TJ,CH4,3.0,kg/TJ,420.4507932239999,kg +1dcab421-0f0e-322f-9044-b6665b1ac2ed,SESCO,II.1.1,Tucuman,AR-T,annual,2023,naphtha combustion consumption by to the public,140.15026440799997,TJ,N2O,0.6,kg/TJ,84.09015864479998,kg +77e99fb5-5719-364c-be88-c2d810903732,SESCO,II.5.1,Corrientes,AR-W,annual,2023,naphtha combustion consumption by agriculture machines,1.0855152,TJ,CO2,73300.0,kg/TJ,79568.26415999999,kg +b8cd3c45-99a4-3315-a21f-3a33a08f9f81,SESCO,II.5.1,Corrientes,AR-W,annual,2023,naphtha combustion consumption by agriculture machines,1.0855152,TJ,CH4,3.0,kg/TJ,3.2565456,kg +aa50358f-7f40-3635-8992-68296cf525d2,SESCO,II.5.1,Corrientes,AR-W,annual,2023,naphtha combustion consumption by agriculture machines,1.0855152,TJ,N2O,0.6,kg/TJ,0.65130912,kg +e88f1656-d246-3b05-8c9a-5220a49f1673,SESCO,II.5.1,Córdoba,AR-X,annual,2023,naphtha combustion consumption by agriculture machines,11.458215999999998,TJ,CO2,73300.0,kg/TJ,839887.2327999999,kg +5c4a78e1-3f51-33ca-a170-74846b4f77ca,SESCO,II.5.1,Córdoba,AR-X,annual,2023,naphtha combustion consumption by agriculture machines,11.458215999999998,TJ,CH4,3.0,kg/TJ,34.37464799999999,kg +4d7a4bdb-184d-3eb1-9305-9261159be420,SESCO,II.5.1,Córdoba,AR-X,annual,2023,naphtha combustion consumption by agriculture machines,11.458215999999998,TJ,N2O,0.6,kg/TJ,6.874929599999999,kg +be0f2d44-7cf0-3039-8052-8f8bc9bfec74,SESCO,II.5.1,Salta,AR-A,annual,2023,naphtha combustion consumption by agriculture machines,0.2110724,TJ,CO2,73300.0,kg/TJ,15471.60692,kg +f515962c-c30b-38b2-a23e-276ceb80a14e,SESCO,II.5.1,Salta,AR-A,annual,2023,naphtha combustion consumption by agriculture machines,0.2110724,TJ,CH4,3.0,kg/TJ,0.6332172,kg +60cdca34-b162-3b63-b335-3bc458734f1d,SESCO,II.5.1,Salta,AR-A,annual,2023,naphtha combustion consumption by agriculture machines,0.2110724,TJ,N2O,0.6,kg/TJ,0.12664344,kg +3afc16ca-0d9d-3b84-b979-cc2664d9ce65,SESCO,II.5.1,Santa Fe,AR-S,annual,2023,naphtha combustion consumption by agriculture machines,97.93759359999999,TJ,CO2,73300.0,kg/TJ,7178825.610879999,kg +3b035f0e-921f-34eb-911f-683987729695,SESCO,II.5.1,Santa Fe,AR-S,annual,2023,naphtha combustion consumption by agriculture machines,97.93759359999999,TJ,CH4,3.0,kg/TJ,293.8127807999999,kg +e90b1cda-20ae-339b-8280-c02116f78846,SESCO,II.5.1,Santa Fe,AR-S,annual,2023,naphtha combustion consumption by agriculture machines,97.93759359999999,TJ,N2O,0.6,kg/TJ,58.76255615999999,kg +59a64c9c-d550-3d66-84df-b0c3f35e5987,SESCO,II.5.1,Córdoba,AR-X,annual,2023,naphtha combustion consumption by agriculture machines,2.0504176,TJ,CO2,73300.0,kg/TJ,150295.61007999998,kg +f2269e2f-5d51-3789-b382-985e5b2746d2,SESCO,II.5.1,Córdoba,AR-X,annual,2023,naphtha combustion consumption by agriculture machines,2.0504176,TJ,CH4,3.0,kg/TJ,6.1512528,kg +0b452abe-a6f9-317e-b879-de4a95887411,SESCO,II.5.1,Córdoba,AR-X,annual,2023,naphtha combustion consumption by agriculture machines,2.0504176,TJ,N2O,0.6,kg/TJ,1.2302505599999998,kg +d828328e-aa2c-3ee1-879e-ab106b29fb39,SESCO,II.5.1,Santa Fe,AR-S,annual,2023,naphtha combustion consumption by agriculture machines,19.840805599999996,TJ,CO2,73300.0,kg/TJ,1454331.0504799997,kg +b8e4f789-3786-3911-bfcd-74851c8889b6,SESCO,II.5.1,Santa Fe,AR-S,annual,2023,naphtha combustion consumption by agriculture machines,19.840805599999996,TJ,CH4,3.0,kg/TJ,59.52241679999999,kg +5d005f0a-45ae-32f0-b0e5-35c1504afe06,SESCO,II.5.1,Santa Fe,AR-S,annual,2023,naphtha combustion consumption by agriculture machines,19.840805599999996,TJ,N2O,0.6,kg/TJ,11.904483359999997,kg +050de398-0189-3f94-9e72-c0ef3482698b,SESCO,II.5.1,Tucuman,AR-T,annual,2023,naphtha combustion consumption by agriculture machines,1.055362,TJ,CO2,73300.0,kg/TJ,77358.0346,kg +2e208925-7aa3-3962-9ced-daeceb2e0603,SESCO,II.5.1,Tucuman,AR-T,annual,2023,naphtha combustion consumption by agriculture machines,1.055362,TJ,CH4,3.0,kg/TJ,3.166086,kg +d55bf0cb-c237-35c6-8adf-c3c08e273fff,SESCO,II.5.1,Tucuman,AR-T,annual,2023,naphtha combustion consumption by agriculture machines,1.055362,TJ,N2O,0.6,kg/TJ,0.6332171999999999,kg +fe7d0096-b1be-31d2-9356-bed6a76de399,SESCO,II.1.1,Buenos Aires,AR-B,annual,2023,naphtha combustion consumption by to the public,19028.8703836,TJ,CO2,73300.0,kg/TJ,1394816199.1178799,kg +7183c7bf-06d0-3daf-8e16-3684f8e87a65,SESCO,II.1.1,Buenos Aires,AR-B,annual,2023,naphtha combustion consumption by to the public,19028.8703836,TJ,CH4,3.0,kg/TJ,57086.611150799996,kg +393c381b-f3e0-3375-9dce-363a4d3cebfc,SESCO,II.1.1,Buenos Aires,AR-B,annual,2023,naphtha combustion consumption by to the public,19028.8703836,TJ,N2O,0.6,kg/TJ,11417.322230159998,kg +deb253c0-d7c7-38c8-87fc-fbee0c88f9e8,SESCO,II.1.1,Capital Federal,AR-C,annual,2023,naphtha combustion consumption by to the public,5334.3121524,TJ,CO2,73300.0,kg/TJ,391005080.77092,kg +3cb205e3-b34c-3a50-80fe-6eb80329cf51,SESCO,II.1.1,Capital Federal,AR-C,annual,2023,naphtha combustion consumption by to the public,5334.3121524,TJ,CH4,3.0,kg/TJ,16002.9364572,kg +dfddd54b-2f47-35ae-b621-7d28e652f49e,SESCO,II.1.1,Capital Federal,AR-C,annual,2023,naphtha combustion consumption by to the public,5334.3121524,TJ,N2O,0.6,kg/TJ,3200.5872914399997,kg +e1dfa98a-6a0c-3525-8746-6b6c52074063,SESCO,II.1.1,Catamarca,AR-K,annual,2023,naphtha combustion consumption by to the public,123.41704759999999,TJ,CO2,73300.0,kg/TJ,9046469.589079998,kg +7ede949c-a802-3338-964b-e1e3f96d9f95,SESCO,II.1.1,Catamarca,AR-K,annual,2023,naphtha combustion consumption by to the public,123.41704759999999,TJ,CH4,3.0,kg/TJ,370.25114279999997,kg +c4915bb6-b64e-33d7-9383-44674fc677fc,SESCO,II.1.1,Catamarca,AR-K,annual,2023,naphtha combustion consumption by to the public,123.41704759999999,TJ,N2O,0.6,kg/TJ,74.05022856,kg +4713eb26-7b79-399e-8956-0506e12b2fb6,SESCO,II.1.1,Chaco,AR-H,annual,2023,naphtha combustion consumption by to the public,1082.952178,TJ,CO2,73300.0,kg/TJ,79380394.6474,kg +21347d5e-26f8-3744-9f28-a3313d967994,SESCO,II.1.1,Chaco,AR-H,annual,2023,naphtha combustion consumption by to the public,1082.952178,TJ,CH4,3.0,kg/TJ,3248.856534,kg +4eecb643-38b8-30e7-8522-0e080353be18,SESCO,II.1.1,Chaco,AR-H,annual,2023,naphtha combustion consumption by to the public,1082.952178,TJ,N2O,0.6,kg/TJ,649.7713067999999,kg +f9bdb1ec-e6f5-32cc-8fe2-a7f1af91e74b,SESCO,II.1.1,Corrientes,AR-W,annual,2023,naphtha combustion consumption by to the public,1284.3152475999998,TJ,CO2,73300.0,kg/TJ,94140307.64907998,kg +4c13ecd6-9dbc-3f1c-8643-2e5d44666538,SESCO,II.1.1,Corrientes,AR-W,annual,2023,naphtha combustion consumption by to the public,1284.3152475999998,TJ,CH4,3.0,kg/TJ,3852.9457427999996,kg +55decd0f-b86b-3daa-8f36-a7e6b84afe49,SESCO,II.1.1,Corrientes,AR-W,annual,2023,naphtha combustion consumption by to the public,1284.3152475999998,TJ,N2O,0.6,kg/TJ,770.5891485599999,kg +395b80ea-52e7-34ca-9756-155ec10f53d4,SESCO,II.1.1,Córdoba,AR-X,annual,2023,naphtha combustion consumption by to the public,5707.4881556,TJ,CO2,73300.0,kg/TJ,418358881.80548,kg +5541a64b-9135-326a-a00f-b185000ccb16,SESCO,II.1.1,Córdoba,AR-X,annual,2023,naphtha combustion consumption by to the public,5707.4881556,TJ,CH4,3.0,kg/TJ,17122.4644668,kg +163e8d9f-e603-32e6-a52a-15a7d40b01dd,SESCO,II.1.1,Córdoba,AR-X,annual,2023,naphtha combustion consumption by to the public,5707.4881556,TJ,N2O,0.6,kg/TJ,3424.49289336,kg +dfab71a4-4765-3c92-be09-7075c0a2ff5f,SESCO,II.1.1,Entre Rios,AR-E,annual,2023,naphtha combustion consumption by to the public,1895.7316839999999,TJ,CO2,73300.0,kg/TJ,138957132.43719998,kg +15147c63-ba87-3987-b320-20d8119a7273,SESCO,II.1.1,Entre Rios,AR-E,annual,2023,naphtha combustion consumption by to the public,1895.7316839999999,TJ,CH4,3.0,kg/TJ,5687.195051999999,kg +70bee9c1-72cd-34eb-8457-af180db27b6c,SESCO,II.1.1,Entre Rios,AR-E,annual,2023,naphtha combustion consumption by to the public,1895.7316839999999,TJ,N2O,0.6,kg/TJ,1137.4390104,kg +9662b553-e8e3-3ec8-8028-c8362f34b560,SESCO,II.1.1,Formosa,AR-P,annual,2023,naphtha combustion consumption by to the public,531.8119883999999,TJ,CO2,73300.0,kg/TJ,38981818.74971999,kg +b9d1090c-1daa-3a20-8372-b7f27d6d8401,SESCO,II.1.1,Formosa,AR-P,annual,2023,naphtha combustion consumption by to the public,531.8119883999999,TJ,CH4,3.0,kg/TJ,1595.4359651999998,kg +07c1e40c-e82e-3abf-a4e9-84e00bc3ad30,SESCO,II.1.1,Formosa,AR-P,annual,2023,naphtha combustion consumption by to the public,531.8119883999999,TJ,N2O,0.6,kg/TJ,319.08719303999993,kg +ab25c340-d8c9-375b-88e3-342e5795f7f2,SESCO,II.1.1,Jujuy,AR-Y,annual,2023,naphtha combustion consumption by to the public,405.259008,TJ,CO2,73300.0,kg/TJ,29705485.286399998,kg +aed6601c-8229-3e02-9d47-95ea6bad3444,SESCO,II.1.1,Jujuy,AR-Y,annual,2023,naphtha combustion consumption by to the public,405.259008,TJ,CH4,3.0,kg/TJ,1215.777024,kg +aa93dc68-ba58-3580-a3f8-ac0cd035325a,SESCO,II.1.1,Jujuy,AR-Y,annual,2023,naphtha combustion consumption by to the public,405.259008,TJ,N2O,0.6,kg/TJ,243.15540479999999,kg +ce9cb97a-6e14-3efd-b88e-9e50c86a3ce8,SESCO,II.1.1,La Pampa,AR-L,annual,2023,naphtha combustion consumption by to the public,486.00927759999996,TJ,CO2,73300.0,kg/TJ,35624480.04808,kg +ca2023d5-dd6b-3f56-9ab4-f97e610207b8,SESCO,II.1.1,La Pampa,AR-L,annual,2023,naphtha combustion consumption by to the public,486.00927759999996,TJ,CH4,3.0,kg/TJ,1458.0278328,kg +6ea17d7f-3172-369d-b617-fbb22d002d12,SESCO,II.1.1,La Pampa,AR-L,annual,2023,naphtha combustion consumption by to the public,486.00927759999996,TJ,N2O,0.6,kg/TJ,291.60556655999994,kg +abc832e4-1f4e-383d-9b64-f046546bfd8b,SESCO,II.1.1,La Rioja,AR-F,annual,2023,naphtha combustion consumption by to the public,332.891328,TJ,CO2,73300.0,kg/TJ,24400934.3424,kg +e19d3161-f40d-33ee-953d-26dd1189e870,SESCO,II.1.1,La Rioja,AR-F,annual,2023,naphtha combustion consumption by to the public,332.891328,TJ,CH4,3.0,kg/TJ,998.673984,kg +6137780d-9416-3735-b7ab-ee5475908476,SESCO,II.1.1,La Rioja,AR-F,annual,2023,naphtha combustion consumption by to the public,332.891328,TJ,N2O,0.6,kg/TJ,199.7347968,kg +b1f43197-5ac7-3cfd-ac8c-6a8a1f68ff37,SESCO,II.1.1,Mendoza,AR-M,annual,2023,naphtha combustion consumption by to the public,1736.5830943999997,TJ,CO2,73300.0,kg/TJ,127291540.81951998,kg +6943e670-3450-3cc4-9484-1f8fc11961cb,SESCO,II.1.1,Mendoza,AR-M,annual,2023,naphtha combustion consumption by to the public,1736.5830943999997,TJ,CH4,3.0,kg/TJ,5209.749283199999,kg +87783211-e1b1-383a-943b-c77ea588d0d9,SESCO,II.1.1,Mendoza,AR-M,annual,2023,naphtha combustion consumption by to the public,1736.5830943999997,TJ,N2O,0.6,kg/TJ,1041.9498566399998,kg +36b0ef1d-6a2a-31d5-8852-43d78bb172b8,SESCO,II.1.1,Misiones,AR-N,annual,2023,naphtha combustion consumption by to the public,2121.1268539999996,TJ,CO2,73300.0,kg/TJ,155478598.39819998,kg +f2f0ba2e-2766-3093-947d-713316b8d311,SESCO,II.1.1,Misiones,AR-N,annual,2023,naphtha combustion consumption by to the public,2121.1268539999996,TJ,CH4,3.0,kg/TJ,6363.3805619999985,kg +6d08900f-bed3-3339-92e3-222ce7f5e56b,SESCO,II.1.1,Misiones,AR-N,annual,2023,naphtha combustion consumption by to the public,2121.1268539999996,TJ,N2O,0.6,kg/TJ,1272.6761123999997,kg +bd08f700-4f06-3205-8f8f-e27e8e77e4f5,SESCO,II.1.1,Neuquén,AR-Q,annual,2023,naphtha combustion consumption by to the public,566.6389343999999,TJ,CO2,73300.0,kg/TJ,41534633.89151999,kg +c50957a8-5882-3ce1-ab82-31718c396889,SESCO,II.1.1,Neuquén,AR-Q,annual,2023,naphtha combustion consumption by to the public,566.6389343999999,TJ,CH4,3.0,kg/TJ,1699.9168031999998,kg +baef6e3e-4e0d-3f5f-ba98-157f9ec35618,SESCO,II.1.1,Neuquén,AR-Q,annual,2023,naphtha combustion consumption by to the public,566.6389343999999,TJ,N2O,0.6,kg/TJ,339.98336063999994,kg +9f86ee99-61ff-3c74-a147-7768a6c54884,SESCO,II.1.1,Rio Negro,AR-R,annual,2023,naphtha combustion consumption by to the public,352.34014199999996,TJ,CO2,73300.0,kg/TJ,25826532.408599995,kg +e8d1e2f6-e1de-39b1-b791-99f761a266e2,SESCO,II.1.1,Rio Negro,AR-R,annual,2023,naphtha combustion consumption by to the public,352.34014199999996,TJ,CH4,3.0,kg/TJ,1057.0204259999998,kg +e87a830b-bb17-3c96-8d71-650ae34b1aa0,SESCO,II.1.1,Rio Negro,AR-R,annual,2023,naphtha combustion consumption by to the public,352.34014199999996,TJ,N2O,0.6,kg/TJ,211.40408519999997,kg +7345f2cf-e85d-30ac-ac39-0a457a0f7045,SESCO,II.1.1,Salta,AR-A,annual,2023,naphtha combustion consumption by to the public,329.876008,TJ,CO2,73300.0,kg/TJ,24179911.3864,kg +9c4f7876-509a-3cd0-b076-9c23e42b2d0d,SESCO,II.1.1,Salta,AR-A,annual,2023,naphtha combustion consumption by to the public,329.876008,TJ,CH4,3.0,kg/TJ,989.6280240000001,kg +9408a0cd-5be6-3bf9-b34f-95875d82517d,SESCO,II.1.1,Salta,AR-A,annual,2023,naphtha combustion consumption by to the public,329.876008,TJ,N2O,0.6,kg/TJ,197.9256048,kg +470ed594-f096-309b-8964-c164ccda030b,SESCO,II.1.1,San Juan,AR-J,annual,2023,naphtha combustion consumption by to the public,396.0622819999999,TJ,CO2,73300.0,kg/TJ,29031365.270599995,kg +3d1fc2f3-0e51-3e42-95f1-b6e4e36226d8,SESCO,II.1.1,San Juan,AR-J,annual,2023,naphtha combustion consumption by to the public,396.0622819999999,TJ,CH4,3.0,kg/TJ,1188.1868459999998,kg +97fde843-f057-3607-ba54-3505056bebaf,SESCO,II.1.1,San Juan,AR-J,annual,2023,naphtha combustion consumption by to the public,396.0622819999999,TJ,N2O,0.6,kg/TJ,237.63736919999994,kg +1c1e76d5-18aa-31d1-8353-bb6ed8a9d32d,SESCO,II.1.1,San Luis,AR-D,annual,2023,naphtha combustion consumption by to the public,414.93818519999996,TJ,CO2,73300.0,kg/TJ,30414968.97516,kg +413be77b-76af-3f91-b382-e7b1d6911294,SESCO,II.1.1,San Luis,AR-D,annual,2023,naphtha combustion consumption by to the public,414.93818519999996,TJ,CH4,3.0,kg/TJ,1244.8145556,kg +c5fe117f-ebfd-35f4-8fe5-2193762daa2c,SESCO,II.1.1,San Luis,AR-D,annual,2023,naphtha combustion consumption by to the public,414.93818519999996,TJ,N2O,0.6,kg/TJ,248.96291111999997,kg +4b58f1c8-9a41-3b25-851c-bb51a9e0fd1b,SESCO,II.1.1,Santa Fe,AR-S,annual,2023,naphtha combustion consumption by to the public,3781.7841907999996,TJ,CO2,73300.0,kg/TJ,277204781.18564,kg +39e1f808-78aa-3253-86fd-84ca27fdeec3,SESCO,II.1.1,Santa Fe,AR-S,annual,2023,naphtha combustion consumption by to the public,3781.7841907999996,TJ,CH4,3.0,kg/TJ,11345.3525724,kg +c744a9c8-6896-3028-8db2-d03ce9a06d35,SESCO,II.1.1,Santa Fe,AR-S,annual,2023,naphtha combustion consumption by to the public,3781.7841907999996,TJ,N2O,0.6,kg/TJ,2269.0705144799995,kg +1cd42547-e572-3927-8b08-0f5e49ef8e9b,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2023,naphtha combustion consumption by to the public,740.7736643999999,TJ,CO2,73300.0,kg/TJ,54298709.60051999,kg +c3af364b-4755-372e-b929-716e919c1ee9,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2023,naphtha combustion consumption by to the public,740.7736643999999,TJ,CH4,3.0,kg/TJ,2222.3209932,kg +d218a747-224b-36be-9d9b-eec7065f7617,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2023,naphtha combustion consumption by to the public,740.7736643999999,TJ,N2O,0.6,kg/TJ,444.46419863999995,kg +7126723c-c78a-3b96-a640-be1b7d6c8ee9,SESCO,II.1.1,Tucuman,AR-T,annual,2023,naphtha combustion consumption by to the public,1325.6552848,TJ,CO2,73300.0,kg/TJ,97170532.37584,kg +c2cf0e43-f767-3c91-8d86-3e1cb460282c,SESCO,II.1.1,Tucuman,AR-T,annual,2023,naphtha combustion consumption by to the public,1325.6552848,TJ,CH4,3.0,kg/TJ,3976.9658543999994,kg +5019aa56-9374-307f-857a-34fef3ad8f61,SESCO,II.1.1,Tucuman,AR-T,annual,2023,naphtha combustion consumption by to the public,1325.6552848,TJ,N2O,0.6,kg/TJ,795.39317088,kg +95ca0275-ddc0-3a54-90e6-ec2a7272a221,SESCO,II.1.1,Buenos Aires,AR-B,annual,2023,naphtha combustion consumption by to the public,9487.191775599998,TJ,CO2,73300.0,kg/TJ,695411157.1514798,kg +25408658-66e4-38e6-b8d2-c38c21aa3d5c,SESCO,II.1.1,Buenos Aires,AR-B,annual,2023,naphtha combustion consumption by to the public,9487.191775599998,TJ,CH4,3.0,kg/TJ,28461.575326799997,kg +11c115da-b201-32af-b905-a31a0c62bb2b,SESCO,II.1.1,Buenos Aires,AR-B,annual,2023,naphtha combustion consumption by to the public,9487.191775599998,TJ,N2O,0.6,kg/TJ,5692.315065359999,kg +46fbe222-335d-3f31-b54f-29c6ac106805,SESCO,II.1.1,Capital Federal,AR-C,annual,2023,naphtha combustion consumption by to the public,3832.2606475999996,TJ,CO2,73300.0,kg/TJ,280904705.46908,kg +ca940ae2-ba14-3bec-81b3-4097a8c18f18,SESCO,II.1.1,Capital Federal,AR-C,annual,2023,naphtha combustion consumption by to the public,3832.2606475999996,TJ,CH4,3.0,kg/TJ,11496.781942799998,kg +001855d6-4071-3cc3-9c50-52b6195cfeed,SESCO,II.1.1,Capital Federal,AR-C,annual,2023,naphtha combustion consumption by to the public,3832.2606475999996,TJ,N2O,0.6,kg/TJ,2299.3563885599997,kg +3ca5444a-caca-304f-8d06-c07cf6acb3fd,SESCO,II.1.1,Catamarca,AR-K,annual,2023,naphtha combustion consumption by to the public,56.20556479999999,TJ,CO2,73300.0,kg/TJ,4119867.899839999,kg +f2f83416-b328-38fd-8142-c1e4831d9290,SESCO,II.1.1,Catamarca,AR-K,annual,2023,naphtha combustion consumption by to the public,56.20556479999999,TJ,CH4,3.0,kg/TJ,168.61669439999997,kg +b7cb30f6-ca5d-3695-805d-555435cab87c,SESCO,II.1.1,Catamarca,AR-K,annual,2023,naphtha combustion consumption by to the public,56.20556479999999,TJ,N2O,0.6,kg/TJ,33.72333887999999,kg +44ea51c2-4824-37aa-8c7b-0f037133a2fd,SESCO,II.1.1,Chaco,AR-H,annual,2023,naphtha combustion consumption by to the public,318.0861068,TJ,CO2,73300.0,kg/TJ,23315711.62844,kg +c902926c-5503-3827-8224-ba63c43e3bfd,SESCO,II.1.1,Chaco,AR-H,annual,2023,naphtha combustion consumption by to the public,318.0861068,TJ,CH4,3.0,kg/TJ,954.2583204,kg +a49c90ae-32a1-3ea3-9502-0778484665af,SESCO,II.1.1,Chaco,AR-H,annual,2023,naphtha combustion consumption by to the public,318.0861068,TJ,N2O,0.6,kg/TJ,190.85166407999998,kg +9b8b47a5-0977-3bb6-afed-881e30294a1b,SESCO,II.1.1,Corrientes,AR-W,annual,2023,naphtha combustion consumption by to the public,412.16409079999994,TJ,CO2,73300.0,kg/TJ,30211627.855639994,kg +5db8353b-8f4e-3bd1-aaa0-867be1dcc037,SESCO,II.1.1,Corrientes,AR-W,annual,2023,naphtha combustion consumption by to the public,412.16409079999994,TJ,CH4,3.0,kg/TJ,1236.4922723999998,kg +8c88cddc-7621-3227-b0ff-55afa67903e8,SESCO,II.1.1,Corrientes,AR-W,annual,2023,naphtha combustion consumption by to the public,412.16409079999994,TJ,N2O,0.6,kg/TJ,247.29845447999995,kg +a09ec869-7165-3b84-977d-64aacde8ccf2,SESCO,II.1.1,Córdoba,AR-X,annual,2023,naphtha combustion consumption by to the public,2053.5535328,TJ,CO2,73300.0,kg/TJ,150525473.95424,kg +26137746-deaf-339c-b7a9-4f9f1d1679de,SESCO,II.1.1,Córdoba,AR-X,annual,2023,naphtha combustion consumption by to the public,2053.5535328,TJ,CH4,3.0,kg/TJ,6160.6605984,kg +c124d1ee-7230-37af-bcf1-5b4d32d379eb,SESCO,II.1.1,Córdoba,AR-X,annual,2023,naphtha combustion consumption by to the public,2053.5535328,TJ,N2O,0.6,kg/TJ,1232.13211968,kg +b69d8d36-1b8e-3a65-bdbd-1dc942410d79,SESCO,II.1.1,Entre Rios,AR-E,annual,2023,naphtha combustion consumption by to the public,766.042046,TJ,CO2,73300.0,kg/TJ,56150881.9718,kg +af66393c-e233-3eb6-9859-7ec0cfd48e37,SESCO,II.1.1,Entre Rios,AR-E,annual,2023,naphtha combustion consumption by to the public,766.042046,TJ,CH4,3.0,kg/TJ,2298.126138,kg +6f407373-ee63-3bb0-9da4-562b68afce66,SESCO,II.1.1,Entre Rios,AR-E,annual,2023,naphtha combustion consumption by to the public,766.042046,TJ,N2O,0.6,kg/TJ,459.6252276,kg +020ab2c1-5541-3c9a-8914-a88b8b43304f,SESCO,II.1.1,Formosa,AR-P,annual,2023,naphtha combustion consumption by to the public,195.66411479999996,TJ,CO2,73300.0,kg/TJ,14342179.614839997,kg +c1289285-10c7-3a59-b132-4b04a2b04b0a,SESCO,II.1.1,Formosa,AR-P,annual,2023,naphtha combustion consumption by to the public,195.66411479999996,TJ,CH4,3.0,kg/TJ,586.9923443999999,kg +ef309146-a867-3ac8-acd1-5fb996600eb1,SESCO,II.1.1,Formosa,AR-P,annual,2023,naphtha combustion consumption by to the public,195.66411479999996,TJ,N2O,0.6,kg/TJ,117.39846887999997,kg +f24f8284-a212-31a5-8cb2-ee5fca7f588a,SESCO,II.1.1,Jujuy,AR-Y,annual,2023,naphtha combustion consumption by to the public,99.9277048,TJ,CO2,73300.0,kg/TJ,7324700.76184,kg +b10810c0-ffaf-3578-bb23-d310ed0110c2,SESCO,II.1.1,Jujuy,AR-Y,annual,2023,naphtha combustion consumption by to the public,99.9277048,TJ,CH4,3.0,kg/TJ,299.7831144,kg +5a60eed0-d379-3e55-930a-e2e9fe45fb0a,SESCO,II.1.1,Jujuy,AR-Y,annual,2023,naphtha combustion consumption by to the public,99.9277048,TJ,N2O,0.6,kg/TJ,59.95662288,kg +6fc90fed-ecf8-3eb8-a2c6-29f47fde517d,SESCO,II.1.1,La Pampa,AR-L,annual,2023,naphtha combustion consumption by to the public,230.7021332,TJ,CO2,73300.0,kg/TJ,16910466.36356,kg +89c2ab24-69e8-3ec8-97db-390814ee878a,SESCO,II.1.1,La Pampa,AR-L,annual,2023,naphtha combustion consumption by to the public,230.7021332,TJ,CH4,3.0,kg/TJ,692.1063996,kg +5bcd4b0a-dea7-385c-bd8e-5dc9c747c1cc,SESCO,II.1.1,La Pampa,AR-L,annual,2023,naphtha combustion consumption by to the public,230.7021332,TJ,N2O,0.6,kg/TJ,138.42127992,kg +5b11973a-c97d-3aad-9a19-6c84e113b21b,SESCO,II.1.1,La Rioja,AR-F,annual,2023,naphtha combustion consumption by to the public,116.81349679999998,TJ,CO2,73300.0,kg/TJ,8562429.31544,kg +d5ab9f5a-72ca-3ddf-8a2b-19826d8eeccc,SESCO,II.1.1,La Rioja,AR-F,annual,2023,naphtha combustion consumption by to the public,116.81349679999998,TJ,CH4,3.0,kg/TJ,350.44049039999993,kg +357436c7-1dd5-3340-aa53-d918b88b1cb6,SESCO,II.1.1,La Rioja,AR-F,annual,2023,naphtha combustion consumption by to the public,116.81349679999998,TJ,N2O,0.6,kg/TJ,70.08809807999998,kg +0298e828-9dd2-30ea-97e5-9c5b98ceb6fc,SESCO,II.1.1,Mendoza,AR-M,annual,2023,naphtha combustion consumption by to the public,812.4176676,TJ,CO2,73300.0,kg/TJ,59550215.03507999,kg +1665cc35-1630-30c6-8ac7-313f87ee2f4c,SESCO,II.1.1,Mendoza,AR-M,annual,2023,naphtha combustion consumption by to the public,812.4176676,TJ,CH4,3.0,kg/TJ,2437.2530028,kg +4727c27e-31dd-3c1f-a585-86342d36f715,SESCO,II.1.1,Mendoza,AR-M,annual,2023,naphtha combustion consumption by to the public,812.4176676,TJ,N2O,0.6,kg/TJ,487.45060055999994,kg +d5c0cb99-5eba-3891-8137-e1827719c613,SESCO,II.1.1,Misiones,AR-N,annual,2023,naphtha combustion consumption by to the public,542.8782127999999,TJ,CO2,73300.0,kg/TJ,39792972.998239994,kg +328d41ae-b5cf-3293-a7a5-7824d723207d,SESCO,II.1.1,Misiones,AR-N,annual,2023,naphtha combustion consumption by to the public,542.8782127999999,TJ,CH4,3.0,kg/TJ,1628.6346383999999,kg +13ce14f3-b7c4-3cf3-beaf-9d2a3bd6dbb8,SESCO,II.1.1,Misiones,AR-N,annual,2023,naphtha combustion consumption by to the public,542.8782127999999,TJ,N2O,0.6,kg/TJ,325.72692767999996,kg +45bfbc2a-94f1-30d3-a301-29105618e337,SESCO,II.1.1,Neuquén,AR-Q,annual,2023,naphtha combustion consumption by to the public,342.66096479999993,TJ,CO2,73300.0,kg/TJ,25117048.719839994,kg +2b549698-a33f-34b3-b6e7-5ad3eb715e15,SESCO,II.1.1,Neuquén,AR-Q,annual,2023,naphtha combustion consumption by to the public,342.66096479999993,TJ,CH4,3.0,kg/TJ,1027.9828943999999,kg +1403430f-011f-36ca-92ad-4648f4fa4768,SESCO,II.1.1,Neuquén,AR-Q,annual,2023,naphtha combustion consumption by to the public,342.66096479999993,TJ,N2O,0.6,kg/TJ,205.59657887999995,kg +74fcb5eb-4cd9-3897-86eb-e71a6b733cdb,SESCO,II.1.1,Rio Negro,AR-R,annual,2023,naphtha combustion consumption by to the public,182.72839199999999,TJ,CO2,73300.0,kg/TJ,13393991.133599998,kg +7009ac40-c0f8-3fa9-9e4c-a62c4b24537a,SESCO,II.1.1,Rio Negro,AR-R,annual,2023,naphtha combustion consumption by to the public,182.72839199999999,TJ,CH4,3.0,kg/TJ,548.185176,kg +56afbc0f-3564-3ae1-a676-f8e002a705e0,SESCO,II.1.1,Rio Negro,AR-R,annual,2023,naphtha combustion consumption by to the public,182.72839199999999,TJ,N2O,0.6,kg/TJ,109.63703519999999,kg +261ee0ae-b1e3-384a-9b6e-c05636313610,SESCO,II.1.1,Salta,AR-A,annual,2023,naphtha combustion consumption by to the public,150.97707239999997,TJ,CO2,73300.0,kg/TJ,11066619.406919997,kg +05521e85-301a-359d-9b07-b68fa1c04afa,SESCO,II.1.1,Salta,AR-A,annual,2023,naphtha combustion consumption by to the public,150.97707239999997,TJ,CH4,3.0,kg/TJ,452.9312171999999,kg +56cfacec-e406-3688-96a6-82d79f8a4ad0,SESCO,II.1.1,Salta,AR-A,annual,2023,naphtha combustion consumption by to the public,150.97707239999997,TJ,N2O,0.6,kg/TJ,90.58624343999998,kg +9b682d9c-033d-3daf-9458-216f1e9b9101,SESCO,II.1.1,San Juan,AR-J,annual,2023,naphtha combustion consumption by to the public,129.357228,TJ,CO2,73300.0,kg/TJ,9481884.8124,kg +d49393d8-7ce3-3476-8163-9311a88e4f40,SESCO,II.1.1,San Juan,AR-J,annual,2023,naphtha combustion consumption by to the public,129.357228,TJ,CH4,3.0,kg/TJ,388.071684,kg +b623b7c9-ecc0-3826-a195-4df24aae400d,SESCO,II.1.1,San Juan,AR-J,annual,2023,naphtha combustion consumption by to the public,129.357228,TJ,N2O,0.6,kg/TJ,77.61433679999999,kg +4027f017-2eed-3c11-96a9-b5cd332398b3,SESCO,II.1.1,San Luis,AR-D,annual,2023,naphtha combustion consumption by to the public,161.10854759999998,TJ,CO2,73300.0,kg/TJ,11809256.539079998,kg +7230ffad-3cf4-340a-8b2c-07e283f0ddff,SESCO,II.1.1,San Luis,AR-D,annual,2023,naphtha combustion consumption by to the public,161.10854759999998,TJ,CH4,3.0,kg/TJ,483.32564279999997,kg +2d9464eb-fd27-3eee-b151-2320c699f50c,SESCO,II.1.1,San Luis,AR-D,annual,2023,naphtha combustion consumption by to the public,161.10854759999998,TJ,N2O,0.6,kg/TJ,96.66512855999999,kg +e9ce82a5-f626-3b2e-9387-a36f2a76b2f8,SESCO,II.1.1,Santa Fe,AR-S,annual,2023,naphtha combustion consumption by to the public,1796.0452047999997,TJ,CO2,73300.0,kg/TJ,131650113.51183999,kg +c73c636d-09ff-3e8c-98aa-2d3f967642c6,SESCO,II.1.1,Santa Fe,AR-S,annual,2023,naphtha combustion consumption by to the public,1796.0452047999997,TJ,CH4,3.0,kg/TJ,5388.135614399999,kg +85789472-ae8a-388d-a5ca-a769597d9ce2,SESCO,II.1.1,Santa Fe,AR-S,annual,2023,naphtha combustion consumption by to the public,1796.0452047999997,TJ,N2O,0.6,kg/TJ,1077.62712288,kg +69fa84b1-6a7c-360b-bdf6-4e3622488ab2,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2023,naphtha combustion consumption by to the public,254.04071,TJ,CO2,73300.0,kg/TJ,18621184.042999998,kg +0b4f6852-7da0-3e36-a68e-98adbbdc4460,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2023,naphtha combustion consumption by to the public,254.04071,TJ,CH4,3.0,kg/TJ,762.12213,kg +f4fc256e-67e7-34ab-88c6-3c90a414d94d,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2023,naphtha combustion consumption by to the public,254.04071,TJ,N2O,0.6,kg/TJ,152.42442599999998,kg +0a2532e6-4565-3339-ba3e-1eb57bb2c33b,SESCO,II.1.1,Tucuman,AR-T,annual,2023,naphtha combustion consumption by to the public,322.79000599999995,TJ,CO2,73300.0,kg/TJ,23660507.439799998,kg +28f46ca0-98f8-323e-9ca2-b4bc817229f6,SESCO,II.1.1,Tucuman,AR-T,annual,2023,naphtha combustion consumption by to the public,322.79000599999995,TJ,CH4,3.0,kg/TJ,968.3700179999998,kg +fae2ba71-e6a0-3f82-b27e-84089987fdd7,SESCO,II.1.1,Tucuman,AR-T,annual,2023,naphtha combustion consumption by to the public,322.79000599999995,TJ,N2O,0.6,kg/TJ,193.67400359999996,kg +6472ecb6-f5bd-34d6-b567-c766f16d80e7,SESCO,I.3.1,Buenos Aires,AR-B,annual,2023,naphtha combustion consumption by petrochemical industries,9.226879199999999,TJ,CO2,73300.0,kg/TJ,676330.24536,kg +1fb36057-3cd9-3fd4-b555-aa1db66fc906,SESCO,I.3.1,Buenos Aires,AR-B,annual,2023,naphtha combustion consumption by petrochemical industries,9.226879199999999,TJ,CH4,3.0,kg/TJ,27.680637599999997,kg +f846d315-bc01-39b8-97e1-de576249a02b,SESCO,I.3.1,Buenos Aires,AR-B,annual,2023,naphtha combustion consumption by petrochemical industries,9.226879199999999,TJ,N2O,0.6,kg/TJ,5.536127519999999,kg +8bff4e56-db94-30f6-91b2-14a703c8c68c,SESCO,I.3.1,Misiones,AR-N,annual,2023,naphtha combustion consumption by petrochemical industries,0.1809192,TJ,CO2,73300.0,kg/TJ,13261.37736,kg +66028856-268c-31ff-b018-ea69f3b9f664,SESCO,I.3.1,Misiones,AR-N,annual,2023,naphtha combustion consumption by petrochemical industries,0.1809192,TJ,CH4,3.0,kg/TJ,0.5427576000000001,kg +b8e4adb0-7860-36ee-8ef8-183e7a49e9d8,SESCO,I.3.1,Misiones,AR-N,annual,2023,naphtha combustion consumption by petrochemical industries,0.1809192,TJ,N2O,0.6,kg/TJ,0.10855152,kg +c16fb4a3-b5ce-3ddb-ad9a-7fe749224fe5,SESCO,I.3.1,Buenos Aires,AR-B,annual,2023,naphtha combustion consumption by petrochemical industries,4.1611416,TJ,CO2,73300.0,kg/TJ,305011.67928,kg +d79da9ab-bc1e-3a39-ad84-c5a47cecea44,SESCO,I.3.1,Buenos Aires,AR-B,annual,2023,naphtha combustion consumption by petrochemical industries,4.1611416,TJ,CH4,3.0,kg/TJ,12.483424799999998,kg +3061e1ee-b7b1-3df8-a1d2-9e94a2ba9f88,SESCO,I.3.1,Buenos Aires,AR-B,annual,2023,naphtha combustion consumption by petrochemical industries,4.1611416,TJ,N2O,0.6,kg/TJ,2.4966849599999996,kg +faa33f68-cee5-3b50-a4a8-6f92346b72f1,SESCO,I.3.1,Entre Rios,AR-E,annual,2023,naphtha combustion consumption by petrochemical industries,0.301532,TJ,CO2,73300.0,kg/TJ,22102.2956,kg +da85817c-f307-31a2-8ffa-fa3288200ab5,SESCO,I.3.1,Entre Rios,AR-E,annual,2023,naphtha combustion consumption by petrochemical industries,0.301532,TJ,CH4,3.0,kg/TJ,0.9045960000000001,kg +d7922e64-e43f-3607-a31e-1fbf41b1ee1f,SESCO,I.3.1,Entre Rios,AR-E,annual,2023,naphtha combustion consumption by petrochemical industries,0.301532,TJ,N2O,0.6,kg/TJ,0.1809192,kg +6e9bf3f1-2ca5-3713-af15-82447bac4122,SESCO,I.3.1,La Pampa,AR-L,annual,2023,naphtha combustion consumption by petrochemical industries,0.8744427999999999,TJ,CO2,73300.0,kg/TJ,64096.657239999986,kg +954a97a2-69a7-36c7-91f6-02eda369265d,SESCO,I.3.1,La Pampa,AR-L,annual,2023,naphtha combustion consumption by petrochemical industries,0.8744427999999999,TJ,CH4,3.0,kg/TJ,2.6233283999999997,kg +ea91d3a4-4eb0-35d7-af26-4a631464b7e5,SESCO,I.3.1,La Pampa,AR-L,annual,2023,naphtha combustion consumption by petrochemical industries,0.8744427999999999,TJ,N2O,0.6,kg/TJ,0.5246656799999999,kg +d3d5e95b-6728-3912-8d81-6e62649cd8a3,SESCO,I.3.1,Neuquén,AR-Q,annual,2023,naphtha combustion consumption by petrochemical industries,0.5729107999999999,TJ,CO2,73300.0,kg/TJ,41994.361639999996,kg +07bfd542-28b7-35a7-9227-76695f8970f0,SESCO,I.3.1,Neuquén,AR-Q,annual,2023,naphtha combustion consumption by petrochemical industries,0.5729107999999999,TJ,CH4,3.0,kg/TJ,1.7187324,kg +397101bb-9403-3939-b0e4-bb1381f22465,SESCO,I.3.1,Neuquén,AR-Q,annual,2023,naphtha combustion consumption by petrochemical industries,0.5729107999999999,TJ,N2O,0.6,kg/TJ,0.34374647999999997,kg +464be738-e753-38b4-81d1-be7c825668ee,SESCO,I.3.1,Rio Negro,AR-R,annual,2023,naphtha combustion consumption by petrochemical industries,0.6332171999999999,TJ,CO2,73300.0,kg/TJ,46414.820759999995,kg +e173495c-7d22-307f-a04d-b8591c08c577,SESCO,I.3.1,Rio Negro,AR-R,annual,2023,naphtha combustion consumption by petrochemical industries,0.6332171999999999,TJ,CH4,3.0,kg/TJ,1.8996515999999999,kg +e6fe4792-3f22-3152-9e84-8f2a2689afb4,SESCO,I.3.1,Rio Negro,AR-R,annual,2023,naphtha combustion consumption by petrochemical industries,0.6332171999999999,TJ,N2O,0.6,kg/TJ,0.37993031999999993,kg +7a113046-e5d2-34c1-974e-a114b1298cc7,SESCO,II.5.1,Buenos Aires,AR-B,annual,2023,naphtha combustion consumption by agriculture machines,6.1613239688,TJ,CO2,73300.0,kg/TJ,451625.04691304,kg +f747a02f-8fcf-32f7-8447-d3a48c2316cc,SESCO,II.5.1,Buenos Aires,AR-B,annual,2023,naphtha combustion consumption by agriculture machines,6.1613239688,TJ,CH4,3.0,kg/TJ,18.4839719064,kg +10de4e7c-03a8-37bf-be0e-0539e9c78b94,SESCO,II.5.1,Buenos Aires,AR-B,annual,2023,naphtha combustion consumption by agriculture machines,6.1613239688,TJ,N2O,0.6,kg/TJ,3.6967943812799997,kg +2da6e29f-f539-3111-afee-c1705db672e0,SESCO,II.5.1,Capital Federal,AR-C,annual,2023,naphtha combustion consumption by agriculture machines,5.3002993428,TJ,CO2,73300.0,kg/TJ,388511.94182724,kg +08d62458-e090-3736-bc49-cd5fd86a9831,SESCO,II.5.1,Capital Federal,AR-C,annual,2023,naphtha combustion consumption by agriculture machines,5.3002993428,TJ,CH4,3.0,kg/TJ,15.9008980284,kg +60354338-1e53-31d8-b858-de4474018020,SESCO,II.5.1,Capital Federal,AR-C,annual,2023,naphtha combustion consumption by agriculture machines,5.3002993428,TJ,N2O,0.6,kg/TJ,3.18017960568,kg +bf684b40-c862-32c3-9670-655427dce71c,SESCO,II.5.1,Córdoba,AR-X,annual,2023,naphtha combustion consumption by agriculture machines,7.161234233999999,TJ,CO2,73300.0,kg/TJ,524918.4693521999,kg +8031943c-00db-3650-b176-27f90f980cfa,SESCO,II.5.1,Córdoba,AR-X,annual,2023,naphtha combustion consumption by agriculture machines,7.161234233999999,TJ,CH4,3.0,kg/TJ,21.483702702,kg +cca41196-0361-32f6-809a-32c7370ad788,SESCO,II.5.1,Córdoba,AR-X,annual,2023,naphtha combustion consumption by agriculture machines,7.161234233999999,TJ,N2O,0.6,kg/TJ,4.296740540399999,kg +e738e0ff-6836-3e34-ba0b-10f0cc7c1383,SESCO,II.5.1,Santa Fe,AR-S,annual,2023,naphtha combustion consumption by agriculture machines,14.240421610799999,TJ,CO2,73300.0,kg/TJ,1043822.9040716399,kg +3e5fe84d-afca-3b0a-bf77-fa173e7bba63,SESCO,II.5.1,Santa Fe,AR-S,annual,2023,naphtha combustion consumption by agriculture machines,14.240421610799999,TJ,CH4,3.0,kg/TJ,42.721264832399996,kg +1d16da43-5c48-3e97-bab2-85567d3c819c,SESCO,II.5.1,Santa Fe,AR-S,annual,2023,naphtha combustion consumption by agriculture machines,14.240421610799999,TJ,N2O,0.6,kg/TJ,8.544252966479998,kg +787916d4-247e-301b-b6d8-1237da659d72,SESCO,II.5.1,Buenos Aires,AR-B,annual,2023,naphtha combustion consumption by agriculture machines,4.1705795515999995,TJ,CO2,73300.0,kg/TJ,305703.48113227997,kg +a137ccf6-cb47-3cf7-8c22-e32234fefbb1,SESCO,II.5.1,Buenos Aires,AR-B,annual,2023,naphtha combustion consumption by agriculture machines,4.1705795515999995,TJ,CH4,3.0,kg/TJ,12.511738654799998,kg +80a7d878-b9eb-3e0f-9a03-fcd30ae12263,SESCO,II.5.1,Buenos Aires,AR-B,annual,2023,naphtha combustion consumption by agriculture machines,4.1705795515999995,TJ,N2O,0.6,kg/TJ,2.5023477309599995,kg +4082babb-3f00-3c11-aa10-cc2318150cc0,SESCO,II.5.1,Capital Federal,AR-C,annual,2023,naphtha combustion consumption by agriculture machines,1.2578708912,TJ,CO2,73300.0,kg/TJ,92201.93632496,kg +554c6e52-6943-3baa-a6df-040609279a23,SESCO,II.5.1,Capital Federal,AR-C,annual,2023,naphtha combustion consumption by agriculture machines,1.2578708912,TJ,CH4,3.0,kg/TJ,3.7736126736,kg +813b0cb0-5b80-39d7-b215-544a52f07f58,SESCO,II.5.1,Capital Federal,AR-C,annual,2023,naphtha combustion consumption by agriculture machines,1.2578708912,TJ,N2O,0.6,kg/TJ,0.7547225347200001,kg +61171998-2a7f-30c9-8f1d-2e9333bfeb95,SESCO,II.5.1,Córdoba,AR-X,annual,2023,naphtha combustion consumption by agriculture machines,2.7005808983999997,TJ,CO2,73300.0,kg/TJ,197952.57985271997,kg +49ad54c2-7252-393b-97e2-6ad121b4b5db,SESCO,II.5.1,Córdoba,AR-X,annual,2023,naphtha combustion consumption by agriculture machines,2.7005808983999997,TJ,CH4,3.0,kg/TJ,8.101742695199999,kg +761b6143-b110-3bce-8912-d4434b31e87d,SESCO,II.5.1,Córdoba,AR-X,annual,2023,naphtha combustion consumption by agriculture machines,2.7005808983999997,TJ,N2O,0.6,kg/TJ,1.6203485390399999,kg +c33f1594-f4ce-3531-a416-ef69d318e8bf,SESCO,II.5.1,Santa Fe,AR-S,annual,2023,naphtha combustion consumption by agriculture machines,3.6939479191999993,TJ,CO2,73300.0,kg/TJ,270766.38247735996,kg +0fb841c8-657f-3817-9c63-70ad43c2892f,SESCO,II.5.1,Santa Fe,AR-S,annual,2023,naphtha combustion consumption by agriculture machines,3.6939479191999993,TJ,CH4,3.0,kg/TJ,11.081843757599998,kg +061c6975-c20c-35e0-9b61-6154bad58e14,SESCO,II.5.1,Santa Fe,AR-S,annual,2023,naphtha combustion consumption by agriculture machines,3.6939479191999993,TJ,N2O,0.6,kg/TJ,2.2163687515199997,kg +50edafd9-528c-3517-9cbb-70a3fad4e3b6,SESCO,II.1.1,Buenos Aires,AR-B,annual,2023,naphtha combustion consumption by to the public,5268.7190219972,TJ,CO2,73300.0,kg/TJ,386197104.31239474,kg +7cad6bc9-cf97-36b3-a176-bcf30cdf1a2f,SESCO,II.1.1,Buenos Aires,AR-B,annual,2023,naphtha combustion consumption by to the public,5268.7190219972,TJ,CH4,3.0,kg/TJ,15806.1570659916,kg +1630ccbb-4dad-3da2-bda4-52eaca655bd1,SESCO,II.1.1,Buenos Aires,AR-B,annual,2023,naphtha combustion consumption by to the public,5268.7190219972,TJ,N2O,0.6,kg/TJ,3161.23141319832,kg +c764e245-2b2e-3718-b0dd-498c4b30bc0c,SESCO,II.1.1,Capital Federal,AR-C,annual,2023,naphtha combustion consumption by to the public,400.14577911,TJ,CO2,73300.0,kg/TJ,29330685.608762998,kg +166a4de1-3e0e-3129-885b-dfdfa86f0fc6,SESCO,II.1.1,Capital Federal,AR-C,annual,2023,naphtha combustion consumption by to the public,400.14577911,TJ,CH4,3.0,kg/TJ,1200.43733733,kg +89021b77-426b-3dae-97b8-0f3adbc233aa,SESCO,II.1.1,Capital Federal,AR-C,annual,2023,naphtha combustion consumption by to the public,400.14577911,TJ,N2O,0.6,kg/TJ,240.08746746599996,kg +5871870e-2258-3437-964a-deb73ed6855c,SESCO,II.1.1,Chaco,AR-H,annual,2023,naphtha combustion consumption by to the public,59.32446104199999,TJ,CO2,73300.0,kg/TJ,4348482.994378599,kg +c1e20ddf-3016-3102-a81a-0c4e90fa7b32,SESCO,II.1.1,Chaco,AR-H,annual,2023,naphtha combustion consumption by to the public,59.32446104199999,TJ,CH4,3.0,kg/TJ,177.97338312599996,kg +fc61a279-a381-3dca-8bbe-ff6174abc5c8,SESCO,II.1.1,Chaco,AR-H,annual,2023,naphtha combustion consumption by to the public,59.32446104199999,TJ,N2O,0.6,kg/TJ,35.594676625199995,kg +5e539064-d20c-30fa-a6a0-d891ca0bb62e,SESCO,II.1.1,Chubut,AR-U,annual,2023,naphtha combustion consumption by to the public,317.95267889,TJ,CO2,73300.0,kg/TJ,23305931.362637002,kg +31893350-f7b2-36b3-9d7b-8c196ac2982a,SESCO,II.1.1,Chubut,AR-U,annual,2023,naphtha combustion consumption by to the public,317.95267889,TJ,CH4,3.0,kg/TJ,953.85803667,kg +ff3efdc9-773d-3215-95ba-c6a5ea5b2cbc,SESCO,II.1.1,Chubut,AR-U,annual,2023,naphtha combustion consumption by to the public,317.95267889,TJ,N2O,0.6,kg/TJ,190.771607334,kg +62e1d1e0-caf2-3243-83fd-07273cd0cbd0,SESCO,II.1.1,Corrientes,AR-W,annual,2023,naphtha combustion consumption by to the public,468.13617937239997,TJ,CO2,73300.0,kg/TJ,34314381.947996914,kg +3e9672ef-0bcd-35aa-9c5d-20c91b15005d,SESCO,II.1.1,Corrientes,AR-W,annual,2023,naphtha combustion consumption by to the public,468.13617937239997,TJ,CH4,3.0,kg/TJ,1404.4085381172,kg +ea8e5137-dc32-392f-99d8-494d9df5dfb7,SESCO,II.1.1,Corrientes,AR-W,annual,2023,naphtha combustion consumption by to the public,468.13617937239997,TJ,N2O,0.6,kg/TJ,280.88170762344,kg +de5182c2-7f9b-3a80-9c63-32793b76a25c,SESCO,II.1.1,Córdoba,AR-X,annual,2023,naphtha combustion consumption by to the public,1101.5292629879998,TJ,CO2,73300.0,kg/TJ,80742094.97702038,kg +3251ba19-bfb8-34b2-9685-ce5d49dc5b55,SESCO,II.1.1,Córdoba,AR-X,annual,2023,naphtha combustion consumption by to the public,1101.5292629879998,TJ,CH4,3.0,kg/TJ,3304.5877889639996,kg +2b25137e-d3d2-3c86-b6a2-4590d38382e8,SESCO,II.1.1,Córdoba,AR-X,annual,2023,naphtha combustion consumption by to the public,1101.5292629879998,TJ,N2O,0.6,kg/TJ,660.9175577927998,kg +dd60d9f4-ee7e-3dad-b232-3ccf05df4cc4,SESCO,II.1.1,Entre Rios,AR-E,annual,2023,naphtha combustion consumption by to the public,875.7265121836,TJ,CO2,73300.0,kg/TJ,64190753.34305788,kg +0aab8f51-5585-3323-858c-9368a51ffad6,SESCO,II.1.1,Entre Rios,AR-E,annual,2023,naphtha combustion consumption by to the public,875.7265121836,TJ,CH4,3.0,kg/TJ,2627.1795365508,kg +e9205511-c3cd-3d6b-81b0-14e95b35f037,SESCO,II.1.1,Entre Rios,AR-E,annual,2023,naphtha combustion consumption by to the public,875.7265121836,TJ,N2O,0.6,kg/TJ,525.43590731016,kg +ff1e4f98-11d4-3f98-ae3a-60b6807842b9,SESCO,II.1.1,Jujuy,AR-Y,annual,2023,naphtha combustion consumption by to the public,43.7273263504,TJ,CO2,73300.0,kg/TJ,3205213.02148432,kg +8b900670-4e7f-37ad-a4e0-2b11b3ab0f57,SESCO,II.1.1,Jujuy,AR-Y,annual,2023,naphtha combustion consumption by to the public,43.7273263504,TJ,CH4,3.0,kg/TJ,131.1819790512,kg +15eeaea5-b224-30ff-ac94-d4468efd1aa5,SESCO,II.1.1,Jujuy,AR-Y,annual,2023,naphtha combustion consumption by to the public,43.7273263504,TJ,N2O,0.6,kg/TJ,26.236395810239998,kg +c789dfb8-5e95-3202-a127-aa18a451b81f,SESCO,II.1.1,La Pampa,AR-L,annual,2023,naphtha combustion consumption by to the public,421.14697030559995,TJ,CO2,73300.0,kg/TJ,30870072.923400477,kg +fa163853-9c49-30ec-acd2-d3c36070bd0e,SESCO,II.1.1,La Pampa,AR-L,annual,2023,naphtha combustion consumption by to the public,421.14697030559995,TJ,CH4,3.0,kg/TJ,1263.4409109167998,kg +dc13b04b-e0d9-3a2e-b1b0-301932584f4b,SESCO,II.1.1,La Pampa,AR-L,annual,2023,naphtha combustion consumption by to the public,421.14697030559995,TJ,N2O,0.6,kg/TJ,252.68818218335997,kg +672ac177-a121-3c61-9570-34182ce5e0c9,SESCO,II.1.1,Mendoza,AR-M,annual,2023,naphtha combustion consumption by to the public,93.34149208999999,TJ,CO2,73300.0,kg/TJ,6841931.370196999,kg +277f56f4-ef24-3646-b9ae-102d729c5164,SESCO,II.1.1,Mendoza,AR-M,annual,2023,naphtha combustion consumption by to the public,93.34149208999999,TJ,CH4,3.0,kg/TJ,280.02447627,kg +e1ce25c5-a34c-3889-a19a-24bcecd44efe,SESCO,II.1.1,Mendoza,AR-M,annual,2023,naphtha combustion consumption by to the public,93.34149208999999,TJ,N2O,0.6,kg/TJ,56.00489525399999,kg +1effff1c-6cc9-3c02-9fc9-a860476fcca0,SESCO,II.1.1,Neuquén,AR-Q,annual,2023,naphtha combustion consumption by to the public,433.833838746,TJ,CO2,73300.0,kg/TJ,31800020.380081803,kg +00a97821-9eb2-3afc-87b3-e53627622f60,SESCO,II.1.1,Neuquén,AR-Q,annual,2023,naphtha combustion consumption by to the public,433.833838746,TJ,CH4,3.0,kg/TJ,1301.501516238,kg +eae80e3a-7510-37ff-ac8b-bba59c6ccd3e,SESCO,II.1.1,Neuquén,AR-Q,annual,2023,naphtha combustion consumption by to the public,433.833838746,TJ,N2O,0.6,kg/TJ,260.3003032476,kg +cd0b0a9a-eed2-356d-9146-4061f1a135ae,SESCO,II.1.1,Rio Negro,AR-R,annual,2023,naphtha combustion consumption by to the public,1381.0335060983998,TJ,CO2,73300.0,kg/TJ,101229755.9970127,kg +b6d9d330-5704-34fe-933f-d9e197191800,SESCO,II.1.1,Rio Negro,AR-R,annual,2023,naphtha combustion consumption by to the public,1381.0335060983998,TJ,CH4,3.0,kg/TJ,4143.100518295199,kg +3ee1bb49-8ca5-38d9-b0ab-ddad93a41d4f,SESCO,II.1.1,Rio Negro,AR-R,annual,2023,naphtha combustion consumption by to the public,1381.0335060983998,TJ,N2O,0.6,kg/TJ,828.6201036590398,kg +956b043b-8689-3ddb-90e2-19555447bede,SESCO,II.1.1,San Juan,AR-J,annual,2023,naphtha combustion consumption by to the public,290.7550654008,TJ,CO2,73300.0,kg/TJ,21312346.29387864,kg +6bac1aea-2dfa-3445-8e22-9cf71b48a9ae,SESCO,II.1.1,San Juan,AR-J,annual,2023,naphtha combustion consumption by to the public,290.7550654008,TJ,CH4,3.0,kg/TJ,872.2651962023999,kg +070ca390-0885-3b86-a358-a212e2be3b94,SESCO,II.1.1,San Juan,AR-J,annual,2023,naphtha combustion consumption by to the public,290.7550654008,TJ,N2O,0.6,kg/TJ,174.45303924048,kg +e9735035-3a08-306e-86a1-e0b19ae9390f,SESCO,II.1.1,San Luis,AR-D,annual,2023,naphtha combustion consumption by to the public,100.2600835236,TJ,CO2,73300.0,kg/TJ,7349064.122279881,kg +dee99334-a9fa-3ebd-a700-dadfb8bc80d8,SESCO,II.1.1,San Luis,AR-D,annual,2023,naphtha combustion consumption by to the public,100.2600835236,TJ,CH4,3.0,kg/TJ,300.78025057080004,kg +4635bed6-bd42-3f9b-9661-662a93ab8694,SESCO,II.1.1,San Luis,AR-D,annual,2023,naphtha combustion consumption by to the public,100.2600835236,TJ,N2O,0.6,kg/TJ,60.156050114159996,kg +8e9fe416-4c23-35b0-bf81-e9d1c15928bb,SESCO,II.1.1,Santa Fe,AR-S,annual,2023,naphtha combustion consumption by to the public,1299.8738766551999,TJ,CO2,73300.0,kg/TJ,95280755.15882616,kg +4747d16b-a3d0-3611-a663-2cc14934a04b,SESCO,II.1.1,Santa Fe,AR-S,annual,2023,naphtha combustion consumption by to the public,1299.8738766551999,TJ,CH4,3.0,kg/TJ,3899.6216299656,kg +d4cb644d-a5f1-3464-942d-0a7eb50dab5e,SESCO,II.1.1,Santa Fe,AR-S,annual,2023,naphtha combustion consumption by to the public,1299.8738766551999,TJ,N2O,0.6,kg/TJ,779.9243259931199,kg +c1dea622-0051-30b9-9eab-d646b31c56aa,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2023,naphtha combustion consumption by to the public,88.61998342119999,TJ,CO2,73300.0,kg/TJ,6495844.784773959,kg +5b99df30-e167-384b-988a-3121fdc2c35e,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2023,naphtha combustion consumption by to the public,88.61998342119999,TJ,CH4,3.0,kg/TJ,265.85995026359996,kg +623b5493-23a1-32ea-b2c7-f0c23e585ada,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2023,naphtha combustion consumption by to the public,88.61998342119999,TJ,N2O,0.6,kg/TJ,53.17199005271999,kg +2ed2d9a2-e04d-373e-96c3-0a6e23b335dd,SESCO,II.1.1,Tucuman,AR-T,annual,2023,naphtha combustion consumption by to the public,3.5802100487999993,TJ,CO2,73300.0,kg/TJ,262429.39657703997,kg +a93b9a3d-4de9-3216-a1a0-9fb4b41dd8c1,SESCO,II.1.1,Tucuman,AR-T,annual,2023,naphtha combustion consumption by to the public,3.5802100487999993,TJ,CH4,3.0,kg/TJ,10.740630146399997,kg +1feb8840-d99c-3d71-b89e-42065103c570,SESCO,II.1.1,Tucuman,AR-T,annual,2023,naphtha combustion consumption by to the public,3.5802100487999993,TJ,N2O,0.6,kg/TJ,2.1481260292799993,kg +f264fa9c-5df5-3c95-bd70-829cb5a86a6b,SESCO,II.1.1,Buenos Aires,AR-B,annual,2023,naphtha combustion consumption by to the public,818.5243238172,TJ,CO2,73300.0,kg/TJ,59997832.93580075,kg +8662825c-6afa-3c5e-a3ba-57b038479473,SESCO,II.1.1,Buenos Aires,AR-B,annual,2023,naphtha combustion consumption by to the public,818.5243238172,TJ,CH4,3.0,kg/TJ,2455.5729714516,kg +6ab7c8b0-77fb-30ca-8f35-39603caad825,SESCO,II.1.1,Buenos Aires,AR-B,annual,2023,naphtha combustion consumption by to the public,818.5243238172,TJ,N2O,0.6,kg/TJ,491.1145942903199,kg +9cbe26f3-610e-3516-babb-9b95fdb97c94,SESCO,II.1.1,Capital Federal,AR-C,annual,2023,naphtha combustion consumption by to the public,55.330006331599996,TJ,CO2,73300.0,kg/TJ,4055689.46410628,kg +ea6ef163-ad56-3558-a0eb-5a2715d00648,SESCO,II.1.1,Capital Federal,AR-C,annual,2023,naphtha combustion consumption by to the public,55.330006331599996,TJ,CH4,3.0,kg/TJ,165.99001899479998,kg +e2798bee-b753-3664-9069-a5149a8fda7b,SESCO,II.1.1,Capital Federal,AR-C,annual,2023,naphtha combustion consumption by to the public,55.330006331599996,TJ,N2O,0.6,kg/TJ,33.198003798959995,kg +9a7a0f00-4c56-35ae-b496-2d1057fb7fd9,SESCO,II.1.1,Chaco,AR-H,annual,2023,naphtha combustion consumption by to the public,7.132769613199999,TJ,CO2,73300.0,kg/TJ,522832.0126475599,kg +b341fe74-3baa-3cfb-8b4f-f9fb0513d011,SESCO,II.1.1,Chaco,AR-H,annual,2023,naphtha combustion consumption by to the public,7.132769613199999,TJ,CH4,3.0,kg/TJ,21.3983088396,kg +b927858b-5d22-33da-9f37-63df33aeb64e,SESCO,II.1.1,Chaco,AR-H,annual,2023,naphtha combustion consumption by to the public,7.132769613199999,TJ,N2O,0.6,kg/TJ,4.2796617679199995,kg +14ef92f8-a24b-390e-8f4b-4780909c5d26,SESCO,II.1.1,Chubut,AR-U,annual,2023,naphtha combustion consumption by to the public,47.480465001199995,TJ,CO2,73300.0,kg/TJ,3480318.0845879596,kg +9948c28c-bc2b-394a-b7ee-7def9bd22c4d,SESCO,II.1.1,Chubut,AR-U,annual,2023,naphtha combustion consumption by to the public,47.480465001199995,TJ,CH4,3.0,kg/TJ,142.44139500359998,kg +137094f4-1cef-3018-b27d-1229405be323,SESCO,II.1.1,Chubut,AR-U,annual,2023,naphtha combustion consumption by to the public,47.480465001199995,TJ,N2O,0.6,kg/TJ,28.488279000719995,kg +60895609-7a15-32ce-b22c-a198c3c9036f,SESCO,II.1.1,Corrientes,AR-W,annual,2023,naphtha combustion consumption by to the public,64.73530201599999,TJ,CO2,73300.0,kg/TJ,4745097.6377727995,kg +cb86384e-8b47-3eac-9d87-1da8e6fdd109,SESCO,II.1.1,Corrientes,AR-W,annual,2023,naphtha combustion consumption by to the public,64.73530201599999,TJ,CH4,3.0,kg/TJ,194.20590604799997,kg +66997d08-41f2-30de-b9cb-4b6eba19f65a,SESCO,II.1.1,Corrientes,AR-W,annual,2023,naphtha combustion consumption by to the public,64.73530201599999,TJ,N2O,0.6,kg/TJ,38.841181209599995,kg +1c262117-4f18-3248-9c28-6ccad1cd00b9,SESCO,II.1.1,Córdoba,AR-X,annual,2023,naphtha combustion consumption by to the public,187.9172149624,TJ,CO2,73300.0,kg/TJ,13774331.85674392,kg +dc905a0e-3901-3a63-bdd5-b83ff29f7161,SESCO,II.1.1,Córdoba,AR-X,annual,2023,naphtha combustion consumption by to the public,187.9172149624,TJ,CH4,3.0,kg/TJ,563.7516448872,kg +8598bdb2-7380-37aa-9b5e-4725222fad34,SESCO,II.1.1,Córdoba,AR-X,annual,2023,naphtha combustion consumption by to the public,187.9172149624,TJ,N2O,0.6,kg/TJ,112.75032897744,kg +0b0d8993-a4a5-307d-95c3-bfa5169b60ca,SESCO,II.1.1,Entre Rios,AR-E,annual,2023,naphtha combustion consumption by to the public,207.3664511072,TJ,CO2,73300.0,kg/TJ,15199960.866157759,kg +d2cf8c82-e235-3e4e-a77c-46071d461470,SESCO,II.1.1,Entre Rios,AR-E,annual,2023,naphtha combustion consumption by to the public,207.3664511072,TJ,CH4,3.0,kg/TJ,622.0993533216,kg +d1c14b0b-acca-3be1-92cc-cf806d849c62,SESCO,II.1.1,Entre Rios,AR-E,annual,2023,naphtha combustion consumption by to the public,207.3664511072,TJ,N2O,0.6,kg/TJ,124.41987066431999,kg +4be82da5-7ba2-3b97-b2ce-f8287fe4e2b2,SESCO,II.1.1,Jujuy,AR-Y,annual,2023,naphtha combustion consumption by to the public,3.1285754191999997,TJ,CO2,73300.0,kg/TJ,229324.57822735998,kg +e5dce377-71b6-309f-bcfc-4f42d5cdfe43,SESCO,II.1.1,Jujuy,AR-Y,annual,2023,naphtha combustion consumption by to the public,3.1285754191999997,TJ,CH4,3.0,kg/TJ,9.385726257599998,kg +2bf2c336-d014-34c6-9768-c43fed6bf019,SESCO,II.1.1,Jujuy,AR-Y,annual,2023,naphtha combustion consumption by to the public,3.1285754191999997,TJ,N2O,0.6,kg/TJ,1.8771452515199998,kg +73888eff-0683-3cff-9a34-d6f34116a879,SESCO,II.1.1,La Pampa,AR-L,annual,2023,naphtha combustion consumption by to the public,85.6989223244,TJ,CO2,73300.0,kg/TJ,6281731.00637852,kg +8f0bc6b5-65aa-3032-b451-1deda36964ed,SESCO,II.1.1,La Pampa,AR-L,annual,2023,naphtha combustion consumption by to the public,85.6989223244,TJ,CH4,3.0,kg/TJ,257.09676697320003,kg +cefd955f-d10d-3015-9fcd-471cb7e93dc6,SESCO,II.1.1,La Pampa,AR-L,annual,2023,naphtha combustion consumption by to the public,85.6989223244,TJ,N2O,0.6,kg/TJ,51.41935339464,kg +a233c553-ea68-3d61-a6d6-508f0b50c657,SESCO,II.1.1,Mendoza,AR-M,annual,2023,naphtha combustion consumption by to the public,15.672487538399997,TJ,CO2,73300.0,kg/TJ,1148793.3365647197,kg +a6a12c6d-2890-3785-8eb0-bc8d15a12c26,SESCO,II.1.1,Mendoza,AR-M,annual,2023,naphtha combustion consumption by to the public,15.672487538399997,TJ,CH4,3.0,kg/TJ,47.01746261519999,kg +4d0bc965-554e-36da-bdac-9100e182767c,SESCO,II.1.1,Mendoza,AR-M,annual,2023,naphtha combustion consumption by to the public,15.672487538399997,TJ,N2O,0.6,kg/TJ,9.403492523039997,kg +9566231c-db89-3321-897f-3d87be3ac750,SESCO,II.1.1,Neuquén,AR-Q,annual,2023,naphtha combustion consumption by to the public,119.16309445039998,TJ,CO2,73300.0,kg/TJ,8734654.823214319,kg +65f2163f-4f4e-3ad4-83cc-4938779cc5f4,SESCO,II.1.1,Neuquén,AR-Q,annual,2023,naphtha combustion consumption by to the public,119.16309445039998,TJ,CH4,3.0,kg/TJ,357.48928335119996,kg +95cceea6-1971-39c9-b1f0-482ab03f6dac,SESCO,II.1.1,Neuquén,AR-Q,annual,2023,naphtha combustion consumption by to the public,119.16309445039998,TJ,N2O,0.6,kg/TJ,71.49785667023998,kg +e8f2cc96-3e26-308f-838b-d446572612f3,SESCO,II.1.1,Rio Negro,AR-R,annual,2023,naphtha combustion consumption by to the public,214.7304053048,TJ,CO2,73300.0,kg/TJ,15739738.70884184,kg +956d5cb2-bdd0-3b2f-8310-ab092f4bdcea,SESCO,II.1.1,Rio Negro,AR-R,annual,2023,naphtha combustion consumption by to the public,214.7304053048,TJ,CH4,3.0,kg/TJ,644.1912159144,kg +f41290e6-f77e-34eb-8f0c-c4baacbc126f,SESCO,II.1.1,Rio Negro,AR-R,annual,2023,naphtha combustion consumption by to the public,214.7304053048,TJ,N2O,0.6,kg/TJ,128.83824318288,kg +f8fed961-830e-34e1-8a35-54f87ad38a63,SESCO,II.1.1,San Juan,AR-J,annual,2023,naphtha combustion consumption by to the public,28.7064193108,TJ,CO2,73300.0,kg/TJ,2104180.53548164,kg +f7b08ffa-e581-3b05-902b-157a743dce04,SESCO,II.1.1,San Juan,AR-J,annual,2023,naphtha combustion consumption by to the public,28.7064193108,TJ,CH4,3.0,kg/TJ,86.1192579324,kg +0983eaa9-869f-387a-a472-88774935b6dc,SESCO,II.1.1,San Juan,AR-J,annual,2023,naphtha combustion consumption by to the public,28.7064193108,TJ,N2O,0.6,kg/TJ,17.22385158648,kg +61606ab4-31d2-3f06-ba93-e80900502e10,SESCO,II.1.1,San Luis,AR-D,annual,2023,naphtha combustion consumption by to the public,14.277871885199998,TJ,CO2,73300.0,kg/TJ,1046568.0091851598,kg +56da6e61-a679-34c6-a834-2b097ab40a34,SESCO,II.1.1,San Luis,AR-D,annual,2023,naphtha combustion consumption by to the public,14.277871885199998,TJ,CH4,3.0,kg/TJ,42.83361565559999,kg +8677c0d3-af7e-341b-959b-1f86ef148290,SESCO,II.1.1,San Luis,AR-D,annual,2023,naphtha combustion consumption by to the public,14.277871885199998,TJ,N2O,0.6,kg/TJ,8.566723131119998,kg +42f196fb-99ed-3dc3-a1db-173a3ee1f090,SESCO,II.1.1,Santa Fe,AR-S,annual,2023,naphtha combustion consumption by to the public,250.75171955679997,TJ,CO2,73300.0,kg/TJ,18380101.04351344,kg +12a9b719-907b-3609-85e5-39b4ae22ebea,SESCO,II.1.1,Santa Fe,AR-S,annual,2023,naphtha combustion consumption by to the public,250.75171955679997,TJ,CH4,3.0,kg/TJ,752.2551586703999,kg +00341615-4327-3139-9941-0881fd9f4baf,SESCO,II.1.1,Santa Fe,AR-S,annual,2023,naphtha combustion consumption by to the public,250.75171955679997,TJ,N2O,0.6,kg/TJ,150.45103173407998,kg +519bac0e-5509-3fe1-8ff8-56da67b67606,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2023,naphtha combustion consumption by to the public,13.019699462,TJ,CO2,73300.0,kg/TJ,954343.9705646,kg +09cc1f73-2ece-321e-bd03-3b4821e939ce,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2023,naphtha combustion consumption by to the public,13.019699462,TJ,CH4,3.0,kg/TJ,39.059098386,kg +4da2c0bc-798e-389b-81a4-1d9b2b2ef2a0,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2023,naphtha combustion consumption by to the public,13.019699462,TJ,N2O,0.6,kg/TJ,7.8118196772,kg +0e74bdb1-bff0-395a-af61-02de15821541,SESCO,II.1.1,Tucuman,AR-T,annual,2023,naphtha combustion consumption by to the public,0.5965207556,TJ,CO2,73300.0,kg/TJ,43724.97138548,kg +d0499d35-b8fa-3b42-89f6-41d26dd72035,SESCO,II.1.1,Tucuman,AR-T,annual,2023,naphtha combustion consumption by to the public,0.5965207556,TJ,CH4,3.0,kg/TJ,1.7895622668,kg +b7f8c5b9-ef5d-3dc9-9d36-02ae77e294db,SESCO,II.1.1,Tucuman,AR-T,annual,2023,naphtha combustion consumption by to the public,0.5965207556,TJ,N2O,0.6,kg/TJ,0.35791245335999994,kg +2c8dea36-4712-31bf-bb64-06ad302f6ac3,SESCO,II.5.1,Buenos Aires,AR-B,annual,2023,naphtha combustion consumption by agriculture machines,95.1634992,TJ,CO2,73300.0,kg/TJ,6975484.49136,kg +b085e6c0-01a5-370a-898f-b5fd7df7b630,SESCO,II.5.1,Buenos Aires,AR-B,annual,2023,naphtha combustion consumption by agriculture machines,95.1634992,TJ,CH4,3.0,kg/TJ,285.4904976,kg +6b76dd23-c3f3-3bdd-8010-d297b68658b5,SESCO,II.5.1,Buenos Aires,AR-B,annual,2023,naphtha combustion consumption by agriculture machines,95.1634992,TJ,N2O,0.6,kg/TJ,57.09809952,kg +e2364298-87c0-3c30-ad2c-bd6ac5da7591,SESCO,II.5.1,Salta,AR-A,annual,2023,naphtha combustion consumption by agriculture machines,0.8442896,TJ,CO2,73300.0,kg/TJ,61886.42768,kg +018a52e6-f137-359d-b317-d61449b16fff,SESCO,II.5.1,Salta,AR-A,annual,2023,naphtha combustion consumption by agriculture machines,0.8442896,TJ,CH4,3.0,kg/TJ,2.5328688,kg +e39ba6f4-f8b6-343a-bbbb-5a94a6ef536e,SESCO,II.5.1,Salta,AR-A,annual,2023,naphtha combustion consumption by agriculture machines,0.8442896,TJ,N2O,0.6,kg/TJ,0.50657376,kg +253277db-ec5d-3a16-9cf2-ac70646aa7c8,SESCO,II.5.1,Santa Fe,AR-S,annual,2023,naphtha combustion consumption by agriculture machines,37.4502744,TJ,CO2,73300.0,kg/TJ,2745105.1135199997,kg +039682dc-2d29-363f-ab70-0cd043ac9dcf,SESCO,II.5.1,Santa Fe,AR-S,annual,2023,naphtha combustion consumption by agriculture machines,37.4502744,TJ,CH4,3.0,kg/TJ,112.3508232,kg +3ef812b5-3a18-3dae-8b73-5bb5b8fb4da2,SESCO,II.5.1,Santa Fe,AR-S,annual,2023,naphtha combustion consumption by agriculture machines,37.4502744,TJ,N2O,0.6,kg/TJ,22.470164639999997,kg +a801b36c-da5b-38f6-8f77-38cb3b484f83,SESCO,II.5.1,Buenos Aires,AR-B,annual,2023,naphtha combustion consumption by agriculture machines,7.5684531999999995,TJ,CO2,73300.0,kg/TJ,554767.61956,kg +1b6d78e2-6760-3254-aa65-e9e2eb6bcb5a,SESCO,II.5.1,Buenos Aires,AR-B,annual,2023,naphtha combustion consumption by agriculture machines,7.5684531999999995,TJ,CH4,3.0,kg/TJ,22.705359599999998,kg +91160af8-2b37-38c1-9ec1-24fb9c5b6e9c,SESCO,II.5.1,Buenos Aires,AR-B,annual,2023,naphtha combustion consumption by agriculture machines,7.5684531999999995,TJ,N2O,0.6,kg/TJ,4.541071919999999,kg +beda8d42-29b9-36bf-ae28-e07619839712,SESCO,II.5.1,Santa Fe,AR-S,annual,2023,naphtha combustion consumption by agriculture machines,4.0405288,TJ,CO2,73300.0,kg/TJ,296170.76103999995,kg +2aed6c6e-3fab-30f8-8ecf-5a92a6821035,SESCO,II.5.1,Santa Fe,AR-S,annual,2023,naphtha combustion consumption by agriculture machines,4.0405288,TJ,CH4,3.0,kg/TJ,12.121586399999998,kg +f68e2529-65ac-34a7-94c2-97bc6061b863,SESCO,II.5.1,Santa Fe,AR-S,annual,2023,naphtha combustion consumption by agriculture machines,4.0405288,TJ,N2O,0.6,kg/TJ,2.42431728,kg +755d4c45-2737-3995-aa98-ed723c8da324,SESCO,II.1.1,Buenos Aires,AR-B,annual,2023,naphtha combustion consumption by to the public,38264.1394212,TJ,CO2,73300.0,kg/TJ,2804761419.5739603,kg +4d474a8d-e3b8-3232-ba4d-054adfc4a5c0,SESCO,II.1.1,Buenos Aires,AR-B,annual,2023,naphtha combustion consumption by to the public,38264.1394212,TJ,CH4,3.0,kg/TJ,114792.4182636,kg +965bebf0-156e-317e-8936-c9ceb329425d,SESCO,II.1.1,Buenos Aires,AR-B,annual,2023,naphtha combustion consumption by to the public,38264.1394212,TJ,N2O,0.6,kg/TJ,22958.48365272,kg +be14b5f9-4a25-33ed-9163-d735b073250d,SESCO,II.1.1,Capital Federal,AR-C,annual,2023,naphtha combustion consumption by to the public,8330.9371684,TJ,CO2,73300.0,kg/TJ,610657694.44372,kg +4c4bf887-bc14-32e8-9ccf-5a69f835b171,SESCO,II.1.1,Capital Federal,AR-C,annual,2023,naphtha combustion consumption by to the public,8330.9371684,TJ,CH4,3.0,kg/TJ,24992.8115052,kg +7f1a1cae-c4e2-3916-87c8-9037a9fcd9aa,SESCO,II.1.1,Capital Federal,AR-C,annual,2023,naphtha combustion consumption by to the public,8330.9371684,TJ,N2O,0.6,kg/TJ,4998.5623010399995,kg +e7a42d80-59d5-3638-a11f-6cec74651c85,SESCO,II.1.1,Catamarca,AR-K,annual,2023,naphtha combustion consumption by to the public,1130.9259192,TJ,CO2,73300.0,kg/TJ,82896869.87736,kg +fb356230-fc46-3a48-a33b-a00dea91de13,SESCO,II.1.1,Catamarca,AR-K,annual,2023,naphtha combustion consumption by to the public,1130.9259192,TJ,CH4,3.0,kg/TJ,3392.7777576,kg +b3e3b587-57a8-3d82-b4e8-5298fc01dbd8,SESCO,II.1.1,Catamarca,AR-K,annual,2023,naphtha combustion consumption by to the public,1130.9259192,TJ,N2O,0.6,kg/TJ,678.55555152,kg +710296ce-42ef-366d-bece-a525dc65cf64,SESCO,II.1.1,Chaco,AR-H,annual,2023,naphtha combustion consumption by to the public,2992.1321891999996,TJ,CO2,73300.0,kg/TJ,219323289.46835998,kg +9bf36195-4932-336e-88a7-6055d3861611,SESCO,II.1.1,Chaco,AR-H,annual,2023,naphtha combustion consumption by to the public,2992.1321891999996,TJ,CH4,3.0,kg/TJ,8976.396567599999,kg +1a278498-aaeb-3055-98d1-8255e5335e6f,SESCO,II.1.1,Chaco,AR-H,annual,2023,naphtha combustion consumption by to the public,2992.1321891999996,TJ,N2O,0.6,kg/TJ,1795.2793135199997,kg +3b383998-8dcb-3b76-b85f-96d090db2bee,SESCO,II.1.1,Chubut,AR-U,annual,2023,naphtha combustion consumption by to the public,3302.6498428,TJ,CO2,73300.0,kg/TJ,242084233.47724,kg +d51bcbdc-e3af-33ee-a128-1635e83fbc52,SESCO,II.1.1,Chubut,AR-U,annual,2023,naphtha combustion consumption by to the public,3302.6498428,TJ,CH4,3.0,kg/TJ,9907.9495284,kg +be7b0740-7e19-32b4-9311-b5a57429ccc7,SESCO,II.1.1,Chubut,AR-U,annual,2023,naphtha combustion consumption by to the public,3302.6498428,TJ,N2O,0.6,kg/TJ,1981.58990568,kg +04d873d5-2d1a-3473-8469-833aa417cea2,SESCO,II.1.1,Corrientes,AR-W,annual,2023,naphtha combustion consumption by to the public,3060.7608723999997,TJ,CO2,73300.0,kg/TJ,224353771.94691998,kg +99860266-4fce-3d1c-9727-7828c811bc5e,SESCO,II.1.1,Corrientes,AR-W,annual,2023,naphtha combustion consumption by to the public,3060.7608723999997,TJ,CH4,3.0,kg/TJ,9182.282617199999,kg +8510f4e1-d987-3ed9-bdbf-189d932261b8,SESCO,II.1.1,Corrientes,AR-W,annual,2023,naphtha combustion consumption by to the public,3060.7608723999997,TJ,N2O,0.6,kg/TJ,1836.4565234399997,kg +7165459c-2cfb-3f10-a140-fab09707498f,SESCO,II.1.1,Córdoba,AR-X,annual,2023,naphtha combustion consumption by to the public,11533.0562424,TJ,CO2,73300.0,kg/TJ,845373022.56792,kg +24514189-682f-302b-92a4-6e8a91ce6584,SESCO,II.1.1,Córdoba,AR-X,annual,2023,naphtha combustion consumption by to the public,11533.0562424,TJ,CH4,3.0,kg/TJ,34599.1687272,kg +dd75f4d4-16c2-3c5a-962c-85b19eb6f5a6,SESCO,II.1.1,Córdoba,AR-X,annual,2023,naphtha combustion consumption by to the public,11533.0562424,TJ,N2O,0.6,kg/TJ,6919.83374544,kg +a6b63371-2347-3822-b955-67451152316a,SESCO,II.1.1,Entre Rios,AR-E,annual,2023,naphtha combustion consumption by to the public,3827.0742971999994,TJ,CO2,73300.0,kg/TJ,280524545.9847599,kg +39e17ddb-587f-39ae-a43d-d7787a1819f3,SESCO,II.1.1,Entre Rios,AR-E,annual,2023,naphtha combustion consumption by to the public,3827.0742971999994,TJ,CH4,3.0,kg/TJ,11481.222891599999,kg +96dbde35-d191-3149-af64-e69cb0ddbea7,SESCO,II.1.1,Entre Rios,AR-E,annual,2023,naphtha combustion consumption by to the public,3827.0742971999994,TJ,N2O,0.6,kg/TJ,2296.2445783199996,kg +5c11732f-abbb-331f-9ccf-6a9ab177e028,SESCO,II.1.1,Formosa,AR-P,annual,2023,naphtha combustion consumption by to the public,1473.6773435999999,TJ,CO2,73300.0,kg/TJ,108020549.28587998,kg +38264d4a-819e-3b19-9e1e-1f80ddc446cd,SESCO,II.1.1,Formosa,AR-P,annual,2023,naphtha combustion consumption by to the public,1473.6773435999999,TJ,CH4,3.0,kg/TJ,4421.032030799999,kg +c8ecc8bc-2d6a-375d-bd71-d32791103a6f,SESCO,II.1.1,Formosa,AR-P,annual,2023,naphtha combustion consumption by to the public,1473.6773435999999,TJ,N2O,0.6,kg/TJ,884.2064061599999,kg +f47800e1-f5e4-3664-9624-1873ca3731f7,SESCO,II.1.1,Jujuy,AR-Y,annual,2023,naphtha combustion consumption by to the public,1735.5880387999998,TJ,CO2,73300.0,kg/TJ,127218603.24403998,kg +2c7d4e18-baf6-34da-a931-8bd40f85ccde,SESCO,II.1.1,Jujuy,AR-Y,annual,2023,naphtha combustion consumption by to the public,1735.5880387999998,TJ,CH4,3.0,kg/TJ,5206.7641164,kg +057fe117-bf6b-334f-a869-b24e5e0fbb54,SESCO,II.1.1,Jujuy,AR-Y,annual,2023,naphtha combustion consumption by to the public,1735.5880387999998,TJ,N2O,0.6,kg/TJ,1041.35282328,kg +fb64c3e7-a670-3f03-b33c-39afa0f0d1b6,SESCO,II.1.1,La Pampa,AR-L,annual,2023,naphtha combustion consumption by to the public,1841.8780687999997,TJ,CO2,73300.0,kg/TJ,135009662.44303998,kg +61ad5071-6957-36a7-b482-762a810989be,SESCO,II.1.1,La Pampa,AR-L,annual,2023,naphtha combustion consumption by to the public,1841.8780687999997,TJ,CH4,3.0,kg/TJ,5525.634206399999,kg +5b5da23f-a459-3262-8df8-a3efbe42dce2,SESCO,II.1.1,La Pampa,AR-L,annual,2023,naphtha combustion consumption by to the public,1841.8780687999997,TJ,N2O,0.6,kg/TJ,1105.1268412799998,kg +b247b7d1-e3c9-3b04-ae73-3dcd8beb5e87,SESCO,II.1.1,La Rioja,AR-F,annual,2023,naphtha combustion consumption by to the public,1212.2189464,TJ,CO2,73300.0,kg/TJ,88855648.77112,kg +d4ddaa14-7165-3801-a16b-add27a91c051,SESCO,II.1.1,La Rioja,AR-F,annual,2023,naphtha combustion consumption by to the public,1212.2189464,TJ,CH4,3.0,kg/TJ,3636.6568392,kg +51451744-40c5-3bb0-a54d-fcbbe33e5579,SESCO,II.1.1,La Rioja,AR-F,annual,2023,naphtha combustion consumption by to the public,1212.2189464,TJ,N2O,0.6,kg/TJ,727.33136784,kg +b6224302-74bb-359a-8711-f3956ec63a99,SESCO,II.1.1,Mendoza,AR-M,annual,2023,naphtha combustion consumption by to the public,5345.378376799999,TJ,CO2,73300.0,kg/TJ,391816235.01943994,kg +1050f9c8-1b09-39fc-abc8-e96d526540fb,SESCO,II.1.1,Mendoza,AR-M,annual,2023,naphtha combustion consumption by to the public,5345.378376799999,TJ,CH4,3.0,kg/TJ,16036.135130399998,kg +b97034be-8abc-35eb-b387-d802962ed003,SESCO,II.1.1,Mendoza,AR-M,annual,2023,naphtha combustion consumption by to the public,5345.378376799999,TJ,N2O,0.6,kg/TJ,3207.2270260799996,kg +f399ffb7-0c3f-3188-9a68-924733ff260b,SESCO,II.1.1,Misiones,AR-N,annual,2023,naphtha combustion consumption by to the public,4450.3710943999995,TJ,CO2,73300.0,kg/TJ,326212201.21952,kg +6cc6a537-d480-3b96-87ed-827087943f49,SESCO,II.1.1,Misiones,AR-N,annual,2023,naphtha combustion consumption by to the public,4450.3710943999995,TJ,CH4,3.0,kg/TJ,13351.113283199998,kg +c23ab4d3-27b5-3d29-a185-7de5ee8cbf00,SESCO,II.1.1,Misiones,AR-N,annual,2023,naphtha combustion consumption by to the public,4450.3710943999995,TJ,N2O,0.6,kg/TJ,2670.2226566399995,kg +e54f7170-1a9a-3c8c-9171-277c33c58ee5,SESCO,II.1.1,Neuquén,AR-Q,annual,2023,naphtha combustion consumption by to the public,3643.5317687999996,TJ,CO2,73300.0,kg/TJ,267070878.65303996,kg +4f015509-6e94-3168-b423-a9010d809505,SESCO,II.1.1,Neuquén,AR-Q,annual,2023,naphtha combustion consumption by to the public,3643.5317687999996,TJ,CH4,3.0,kg/TJ,10930.595306399999,kg +8ac5f2d6-6d25-36f3-98f4-306115c03994,SESCO,II.1.1,Neuquén,AR-Q,annual,2023,naphtha combustion consumption by to the public,3643.5317687999996,TJ,N2O,0.6,kg/TJ,2186.1190612799996,kg +c93a1596-d0ef-3bcf-b3da-7a658ba55580,SESCO,II.1.1,Rio Negro,AR-R,annual,2023,naphtha combustion consumption by to the public,3593.5679163999994,TJ,CO2,73300.0,kg/TJ,263408528.27211997,kg +cdf2c591-b2ad-356c-a45e-cefb825c8e6d,SESCO,II.1.1,Rio Negro,AR-R,annual,2023,naphtha combustion consumption by to the public,3593.5679163999994,TJ,CH4,3.0,kg/TJ,10780.703749199998,kg +97149e01-a599-3abb-b0e5-2aa1013a124c,SESCO,II.1.1,Rio Negro,AR-R,annual,2023,naphtha combustion consumption by to the public,3593.5679163999994,TJ,N2O,0.6,kg/TJ,2156.1407498399994,kg +f7391683-f759-34ad-87c4-88df4ef50b00,SESCO,II.1.1,Salta,AR-A,annual,2023,naphtha combustion consumption by to the public,3804.3086311999996,TJ,CO2,73300.0,kg/TJ,278855822.66695994,kg +1b16de46-fd40-3ff0-9066-fdc999c800a5,SESCO,II.1.1,Salta,AR-A,annual,2023,naphtha combustion consumption by to the public,3804.3086311999996,TJ,CH4,3.0,kg/TJ,11412.925893599999,kg +6036de04-2744-3cf5-b956-7a0ded004650,SESCO,II.1.1,Salta,AR-A,annual,2023,naphtha combustion consumption by to the public,3804.3086311999996,TJ,N2O,0.6,kg/TJ,2282.5851787199995,kg +7a8d5634-fd2c-338d-8942-1f9826e24ba9,SESCO,II.1.1,San Juan,AR-J,annual,2023,naphtha combustion consumption by to the public,1798.3066947999998,TJ,CO2,73300.0,kg/TJ,131815880.72884,kg +147efddb-d861-397d-b6ad-85603a7fff69,SESCO,II.1.1,San Juan,AR-J,annual,2023,naphtha combustion consumption by to the public,1798.3066947999998,TJ,CH4,3.0,kg/TJ,5394.9200844,kg +0ba93c4e-3f6d-3597-b66d-237cd85e2fac,SESCO,II.1.1,San Juan,AR-J,annual,2023,naphtha combustion consumption by to the public,1798.3066947999998,TJ,N2O,0.6,kg/TJ,1078.98401688,kg +59c6f6ce-22bb-38ff-b276-1e87841dc4f1,SESCO,II.1.1,San Luis,AR-D,annual,2023,naphtha combustion consumption by to the public,1639.9722416,TJ,CO2,73300.0,kg/TJ,120209965.30928,kg +aec12ca4-65bd-3106-9488-9e302cb8d5e0,SESCO,II.1.1,San Luis,AR-D,annual,2023,naphtha combustion consumption by to the public,1639.9722416,TJ,CH4,3.0,kg/TJ,4919.916724799999,kg +af17f9e3-9740-31d3-bb83-4ecdc32b2299,SESCO,II.1.1,San Luis,AR-D,annual,2023,naphtha combustion consumption by to the public,1639.9722416,TJ,N2O,0.6,kg/TJ,983.98334496,kg +04039f1b-ead9-34b9-8eec-82e7c3bdb60f,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2023,naphtha combustion consumption by to the public,2242.3125647999996,TJ,CO2,73300.0,kg/TJ,164361510.99983996,kg +9128e105-85b4-3a2e-b274-78d7263ca81e,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2023,naphtha combustion consumption by to the public,2242.3125647999996,TJ,CH4,3.0,kg/TJ,6726.937694399999,kg +ed44c94a-b535-3628-a725-6d53bd003a86,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2023,naphtha combustion consumption by to the public,2242.3125647999996,TJ,N2O,0.6,kg/TJ,1345.3875388799997,kg +d320c201-2204-3e17-b631-03f59f162328,SESCO,II.1.1,Santa Fe,AR-S,annual,2023,naphtha combustion consumption by to the public,7992.467498399999,TJ,CO2,73300.0,kg/TJ,585847867.63272,kg +61bdb124-f8ad-3a40-b496-3690726917ba,SESCO,II.1.1,Santa Fe,AR-S,annual,2023,naphtha combustion consumption by to the public,7992.467498399999,TJ,CH4,3.0,kg/TJ,23977.402495199996,kg +b75af5bf-a5f6-38f2-b03c-16d7b8136382,SESCO,II.1.1,Santa Fe,AR-S,annual,2023,naphtha combustion consumption by to the public,7992.467498399999,TJ,N2O,0.6,kg/TJ,4795.48049904,kg +3e1da5ec-909f-3804-8af4-b4f2dbe0d937,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2023,naphtha combustion consumption by to the public,1904.0238139999997,TJ,CO2,73300.0,kg/TJ,139564945.5662,kg +3e1e8bc7-e576-327a-b34a-d98afb2ae4f7,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2023,naphtha combustion consumption by to the public,1904.0238139999997,TJ,CH4,3.0,kg/TJ,5712.071441999999,kg +307a5bf2-3a4d-3a5d-a2b6-a58baabfbcbb,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2023,naphtha combustion consumption by to the public,1904.0238139999997,TJ,N2O,0.6,kg/TJ,1142.4142883999998,kg +d42d10dc-273a-3d72-89fa-d83f4a91a0fe,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2023,naphtha combustion consumption by to the public,1385.6601528,TJ,CO2,73300.0,kg/TJ,101568889.20024,kg +3b87761d-d443-3d5a-8fc7-aacbd89e6209,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2023,naphtha combustion consumption by to the public,1385.6601528,TJ,CH4,3.0,kg/TJ,4156.9804584,kg +1d7848d8-ca89-39d9-b17e-12495a13c67f,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2023,naphtha combustion consumption by to the public,1385.6601528,TJ,N2O,0.6,kg/TJ,831.39609168,kg +2902612a-4450-3d9b-8493-e9a1a872d564,SESCO,II.1.1,Tucuman,AR-T,annual,2023,naphtha combustion consumption by to the public,3809.2839091999995,TJ,CO2,73300.0,kg/TJ,279220510.54436,kg +de6fdf04-3f8a-3855-b2e5-87973a241d83,SESCO,II.1.1,Tucuman,AR-T,annual,2023,naphtha combustion consumption by to the public,3809.2839091999995,TJ,CH4,3.0,kg/TJ,11427.851727599998,kg +532b7ba0-1be6-3b13-86e3-20f4a389490f,SESCO,II.1.1,Tucuman,AR-T,annual,2023,naphtha combustion consumption by to the public,3809.2839091999995,TJ,N2O,0.6,kg/TJ,2285.5703455199996,kg +2569544e-65be-311b-927e-dd862279c3a2,SESCO,II.1.1,Buenos Aires,AR-B,annual,2023,naphtha combustion consumption by to the public,15849.456669199999,TJ,CO2,73300.0,kg/TJ,1161765173.85236,kg +fba92c13-a392-3f82-a893-4f9c01188c70,SESCO,II.1.1,Buenos Aires,AR-B,annual,2023,naphtha combustion consumption by to the public,15849.456669199999,TJ,CH4,3.0,kg/TJ,47548.370007599995,kg +7ef7e3b2-0279-306e-ad35-8d722dd9f614,SESCO,II.1.1,Buenos Aires,AR-B,annual,2023,naphtha combustion consumption by to the public,15849.456669199999,TJ,N2O,0.6,kg/TJ,9509.67400152,kg +26c380b0-e84a-3da0-892a-25db842c7578,SESCO,II.1.1,Capital Federal,AR-C,annual,2023,naphtha combustion consumption by to the public,4229.2576788,TJ,CO2,73300.0,kg/TJ,310004587.85604,kg +d71eb821-67d6-308a-a92b-a85dc64e3977,SESCO,II.1.1,Capital Federal,AR-C,annual,2023,naphtha combustion consumption by to the public,4229.2576788,TJ,CH4,3.0,kg/TJ,12687.773036399998,kg +8824285d-68bd-3493-b6d3-bad5793e6145,SESCO,II.1.1,Capital Federal,AR-C,annual,2023,naphtha combustion consumption by to the public,4229.2576788,TJ,N2O,0.6,kg/TJ,2537.55460728,kg +fd44bc7e-0c56-36c7-8bee-e784325abb75,SESCO,II.1.1,Catamarca,AR-K,annual,2023,naphtha combustion consumption by to the public,415.51109599999995,TJ,CO2,73300.0,kg/TJ,30456963.336799998,kg +950edc04-00dd-3172-8e50-327f8e2bd36c,SESCO,II.1.1,Catamarca,AR-K,annual,2023,naphtha combustion consumption by to the public,415.51109599999995,TJ,CH4,3.0,kg/TJ,1246.5332879999999,kg +8ee7b1e4-62cd-3cd4-bb49-e055b446b949,SESCO,II.1.1,Catamarca,AR-K,annual,2023,naphtha combustion consumption by to the public,415.51109599999995,TJ,N2O,0.6,kg/TJ,249.30665759999997,kg +c08c01a9-d7fc-3d85-83a1-d8f0323eab1b,SESCO,II.1.1,Chaco,AR-H,annual,2023,naphtha combustion consumption by to the public,770.6253323999999,TJ,CO2,73300.0,kg/TJ,56486836.86492,kg +06cc09ea-fad2-3721-be36-07c0a4e77e18,SESCO,II.1.1,Chaco,AR-H,annual,2023,naphtha combustion consumption by to the public,770.6253323999999,TJ,CH4,3.0,kg/TJ,2311.8759972,kg +e55d7ac2-ad5a-3459-9dea-1ac2ee99172d,SESCO,II.1.1,Chaco,AR-H,annual,2023,naphtha combustion consumption by to the public,770.6253323999999,TJ,N2O,0.6,kg/TJ,462.37519943999996,kg +460d1541-8ed4-37bf-bb85-468a7af460ba,SESCO,II.1.1,Chubut,AR-U,annual,2023,naphtha combustion consumption by to the public,1062.8399935999998,TJ,CO2,73300.0,kg/TJ,77906171.53087999,kg +836cfadf-e501-32fc-bd50-6fb9bc869d54,SESCO,II.1.1,Chubut,AR-U,annual,2023,naphtha combustion consumption by to the public,1062.8399935999998,TJ,CH4,3.0,kg/TJ,3188.5199807999998,kg +22825a65-364e-39c1-9991-a4c9ca66ffb0,SESCO,II.1.1,Chubut,AR-U,annual,2023,naphtha combustion consumption by to the public,1062.8399935999998,TJ,N2O,0.6,kg/TJ,637.7039961599999,kg +b57658bf-6698-3bbd-aed9-5fce97d07751,SESCO,II.1.1,Corrientes,AR-W,annual,2023,naphtha combustion consumption by to the public,1020.9571987999999,TJ,CO2,73300.0,kg/TJ,74836162.67203999,kg +c0c50c50-fa73-3b9c-bfc0-36d2bf691957,SESCO,II.1.1,Corrientes,AR-W,annual,2023,naphtha combustion consumption by to the public,1020.9571987999999,TJ,CH4,3.0,kg/TJ,3062.8715964,kg +2bda9f86-0c2e-3ee2-a4ab-4999c6bf5753,SESCO,II.1.1,Corrientes,AR-W,annual,2023,naphtha combustion consumption by to the public,1020.9571987999999,TJ,N2O,0.6,kg/TJ,612.5743192799999,kg +343fc494-a9d7-3506-984a-c3459d8909d6,SESCO,II.1.1,Córdoba,AR-X,annual,2023,naphtha combustion consumption by to the public,4277.3520327999995,TJ,CO2,73300.0,kg/TJ,313529904.00424,kg +171692d6-453d-3a7a-af6b-ffed63845eb6,SESCO,II.1.1,Córdoba,AR-X,annual,2023,naphtha combustion consumption by to the public,4277.3520327999995,TJ,CH4,3.0,kg/TJ,12832.056098399999,kg +2ad6ab8d-8a10-3b3d-9f81-392863d24fb9,SESCO,II.1.1,Córdoba,AR-X,annual,2023,naphtha combustion consumption by to the public,4277.3520327999995,TJ,N2O,0.6,kg/TJ,2566.4112196799997,kg +8983fc0f-af64-3471-8675-8b7998d05f19,SESCO,II.1.1,Entre Rios,AR-E,annual,2023,naphtha combustion consumption by to the public,1604.2708528,TJ,CO2,73300.0,kg/TJ,117593053.51024,kg +3d74cf81-5494-34bd-bcf5-07b8e4352764,SESCO,II.1.1,Entre Rios,AR-E,annual,2023,naphtha combustion consumption by to the public,1604.2708528,TJ,CH4,3.0,kg/TJ,4812.8125584,kg +16d4d432-b026-3d4e-916c-4300fb86a078,SESCO,II.1.1,Entre Rios,AR-E,annual,2023,naphtha combustion consumption by to the public,1604.2708528,TJ,N2O,0.6,kg/TJ,962.56251168,kg +2f520b3a-43c1-346c-aa22-f28fd72ec40d,SESCO,II.1.1,Formosa,AR-P,annual,2023,naphtha combustion consumption by to the public,403.0879776,TJ,CO2,73300.0,kg/TJ,29546348.75808,kg +178e8ef8-f230-35ca-871f-3caa3969916a,SESCO,II.1.1,Formosa,AR-P,annual,2023,naphtha combustion consumption by to the public,403.0879776,TJ,CH4,3.0,kg/TJ,1209.2639328,kg +27ba48dc-cf98-3490-99fc-d4f76dad5a93,SESCO,II.1.1,Formosa,AR-P,annual,2023,naphtha combustion consumption by to the public,403.0879776,TJ,N2O,0.6,kg/TJ,241.85278655999997,kg +3584e86d-7064-3ed3-baf7-a244c4521639,SESCO,II.1.1,Jujuy,AR-Y,annual,2023,naphtha combustion consumption by to the public,517.3384523999999,TJ,CO2,73300.0,kg/TJ,37920908.56091999,kg +487dad2a-f59b-38e8-89c1-b44e1f2fe0b0,SESCO,II.1.1,Jujuy,AR-Y,annual,2023,naphtha combustion consumption by to the public,517.3384523999999,TJ,CH4,3.0,kg/TJ,1552.0153572,kg +f7b7d4e0-048e-3b8e-9453-4360ef88dd8d,SESCO,II.1.1,Jujuy,AR-Y,annual,2023,naphtha combustion consumption by to the public,517.3384523999999,TJ,N2O,0.6,kg/TJ,310.40307143999996,kg +4a54a717-df61-35a4-bc76-16894cc03ebb,SESCO,II.1.1,La Pampa,AR-L,annual,2023,naphtha combustion consumption by to the public,1013.7807371999999,TJ,CO2,73300.0,kg/TJ,74310128.03675999,kg +895e0d6f-60bf-3fe4-97fd-9de458c60408,SESCO,II.1.1,La Pampa,AR-L,annual,2023,naphtha combustion consumption by to the public,1013.7807371999999,TJ,CH4,3.0,kg/TJ,3041.3422115999997,kg +50424e9f-777f-3219-81f4-8d02f2c98fbe,SESCO,II.1.1,La Pampa,AR-L,annual,2023,naphtha combustion consumption by to the public,1013.7807371999999,TJ,N2O,0.6,kg/TJ,608.2684423199998,kg +fe2600c3-3af1-3ed7-9263-b4c6aeec2ba2,SESCO,II.1.1,La Rioja,AR-F,annual,2023,naphtha combustion consumption by to the public,493.9998756,TJ,CO2,73300.0,kg/TJ,36210190.88148,kg +9208bd26-6bcb-37ea-8c6f-fa3bc5add22f,SESCO,II.1.1,La Rioja,AR-F,annual,2023,naphtha combustion consumption by to the public,493.9998756,TJ,CH4,3.0,kg/TJ,1481.9996268,kg +ca4f0e6b-4481-3233-aec0-d2c0bfbfa9fd,SESCO,II.1.1,La Rioja,AR-F,annual,2023,naphtha combustion consumption by to the public,493.9998756,TJ,N2O,0.6,kg/TJ,296.39992536,kg +cf9cd3cf-2f7f-387b-a9aa-3f2be19995c5,SESCO,II.1.1,Mendoza,AR-M,annual,2023,naphtha combustion consumption by to the public,2635.7816715999998,TJ,CO2,73300.0,kg/TJ,193202796.52828,kg +9c19cffc-9fbe-3fd0-8f63-990c9b63c74b,SESCO,II.1.1,Mendoza,AR-M,annual,2023,naphtha combustion consumption by to the public,2635.7816715999998,TJ,CH4,3.0,kg/TJ,7907.345014799999,kg +2b4e4570-b6ec-38a6-966e-c0377e2cf9f5,SESCO,II.1.1,Mendoza,AR-M,annual,2023,naphtha combustion consumption by to the public,2635.7816715999998,TJ,N2O,0.6,kg/TJ,1581.46900296,kg +f763dcd4-46ed-3df9-ad9b-7681a0b1a07a,SESCO,II.1.1,Misiones,AR-N,annual,2023,naphtha combustion consumption by to the public,1323.6350203999998,TJ,CO2,73300.0,kg/TJ,97022446.99531999,kg +b68e8795-d303-39f6-be91-d00225887114,SESCO,II.1.1,Misiones,AR-N,annual,2023,naphtha combustion consumption by to the public,1323.6350203999998,TJ,CH4,3.0,kg/TJ,3970.905061199999,kg +2fd135f3-5c47-3b81-ad56-60e3ec8851c8,SESCO,II.1.1,Misiones,AR-N,annual,2023,naphtha combustion consumption by to the public,1323.6350203999998,TJ,N2O,0.6,kg/TJ,794.1810122399999,kg +da4a3695-17b8-3182-adce-f847208e5f5e,SESCO,II.1.1,Neuquén,AR-Q,annual,2023,naphtha combustion consumption by to the public,1873.1469372,TJ,CO2,73300.0,kg/TJ,137301670.49675998,kg +1d519aff-d352-3506-a292-07148efe1657,SESCO,II.1.1,Neuquén,AR-Q,annual,2023,naphtha combustion consumption by to the public,1873.1469372,TJ,CH4,3.0,kg/TJ,5619.4408115999995,kg +7260f087-3d88-3297-8f8b-b17c5cc94aa5,SESCO,II.1.1,Neuquén,AR-Q,annual,2023,naphtha combustion consumption by to the public,1873.1469372,TJ,N2O,0.6,kg/TJ,1123.88816232,kg +23a4617c-3aab-3216-9af4-a3f8279924ab,SESCO,II.1.1,Rio Negro,AR-R,annual,2023,naphtha combustion consumption by to the public,1698.3186835999998,TJ,CO2,73300.0,kg/TJ,124486759.50787999,kg +46b04a2a-4250-327c-9896-4a795635bf77,SESCO,II.1.1,Rio Negro,AR-R,annual,2023,naphtha combustion consumption by to the public,1698.3186835999998,TJ,CH4,3.0,kg/TJ,5094.9560507999995,kg +6c8b94af-7339-3d6c-94ce-4a94497ae6a9,SESCO,II.1.1,Rio Negro,AR-R,annual,2023,naphtha combustion consumption by to the public,1698.3186835999998,TJ,N2O,0.6,kg/TJ,1018.9912101599998,kg +8798c14a-6592-3ff4-8aae-a6e80c3605a2,SESCO,II.1.1,Salta,AR-A,annual,2023,naphtha combustion consumption by to the public,1206.7009108,TJ,CO2,73300.0,kg/TJ,88451176.76164,kg +a2df2882-d587-3a48-9f7e-0cb6df65ba32,SESCO,II.1.1,Salta,AR-A,annual,2023,naphtha combustion consumption by to the public,1206.7009108,TJ,CH4,3.0,kg/TJ,3620.1027323999997,kg +cba67394-8b6a-3834-8846-326be5e02753,SESCO,II.1.1,Salta,AR-A,annual,2023,naphtha combustion consumption by to the public,1206.7009108,TJ,N2O,0.6,kg/TJ,724.02054648,kg +1d76a733-f9fc-34e4-b745-9f2f76f04f62,SESCO,II.1.1,San Juan,AR-J,annual,2023,naphtha combustion consumption by to the public,716.7717171999999,TJ,CO2,73300.0,kg/TJ,52539366.870759994,kg +5124539d-b135-3970-9b79-dd4e724d61ad,SESCO,II.1.1,San Juan,AR-J,annual,2023,naphtha combustion consumption by to the public,716.7717171999999,TJ,CH4,3.0,kg/TJ,2150.3151516,kg +7b0dab5a-4fd2-3117-be37-943524d8b84c,SESCO,II.1.1,San Juan,AR-J,annual,2023,naphtha combustion consumption by to the public,716.7717171999999,TJ,N2O,0.6,kg/TJ,430.06303031999994,kg +d6f416e8-6dbe-33c0-a610-11268a298bd7,SESCO,II.1.1,San Luis,AR-D,annual,2023,naphtha combustion consumption by to the public,606.1094732,TJ,CO2,73300.0,kg/TJ,44427824.38556,kg +8890fe2e-f619-3682-84b9-ae0d1a02b361,SESCO,II.1.1,San Luis,AR-D,annual,2023,naphtha combustion consumption by to the public,606.1094732,TJ,CH4,3.0,kg/TJ,1818.3284196,kg +86ffc0b8-f0f3-37da-bec5-d5ed396ae396,SESCO,II.1.1,San Luis,AR-D,annual,2023,naphtha combustion consumption by to the public,606.1094732,TJ,N2O,0.6,kg/TJ,363.66568392,kg +b2248e79-62b8-3f5c-8b1f-b32ff2ddfb25,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2023,naphtha combustion consumption by to the public,611.1752108,TJ,CO2,73300.0,kg/TJ,44799142.951639995,kg +8239dc0a-b926-36ba-ad8c-b01bd780e740,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2023,naphtha combustion consumption by to the public,611.1752108,TJ,CH4,3.0,kg/TJ,1833.5256323999997,kg +a45455d7-cd31-3ada-b61f-23e98a571743,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2023,naphtha combustion consumption by to the public,611.1752108,TJ,N2O,0.6,kg/TJ,366.70512647999993,kg +19376726-c10b-376c-b9b5-f546f8371636,SESCO,II.1.1,Santa Fe,AR-S,annual,2023,naphtha combustion consumption by to the public,3510.9783015999997,TJ,CO2,73300.0,kg/TJ,257354709.50727996,kg +fb99a158-1451-3924-a8a2-7b884dcd79c1,SESCO,II.1.1,Santa Fe,AR-S,annual,2023,naphtha combustion consumption by to the public,3510.9783015999997,TJ,CH4,3.0,kg/TJ,10532.934904799999,kg +b8c624a6-19ff-3ea2-8535-c771904e11db,SESCO,II.1.1,Santa Fe,AR-S,annual,2023,naphtha combustion consumption by to the public,3510.9783015999997,TJ,N2O,0.6,kg/TJ,2106.58698096,kg +32bd6085-6984-3852-9db1-b8fddde5bbd0,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2023,naphtha combustion consumption by to the public,643.9215859999999,TJ,CO2,73300.0,kg/TJ,47199452.2538,kg +5c74ca02-9c88-3400-9ce6-7c512953187c,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2023,naphtha combustion consumption by to the public,643.9215859999999,TJ,CH4,3.0,kg/TJ,1931.7647579999998,kg +7dad00dc-a72c-36ff-983e-219645a4dc14,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2023,naphtha combustion consumption by to the public,643.9215859999999,TJ,N2O,0.6,kg/TJ,386.3529515999999,kg +fa48212e-2054-3187-9288-6d1abd91cd00,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2023,naphtha combustion consumption by to the public,394.2832432,TJ,CO2,73300.0,kg/TJ,28900961.72656,kg +6ab977d2-83f6-36e9-97f4-a367b599a525,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2023,naphtha combustion consumption by to the public,394.2832432,TJ,CH4,3.0,kg/TJ,1182.8497296,kg +0e1ce6b3-3b1c-3796-b240-d63867b1d562,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2023,naphtha combustion consumption by to the public,394.2832432,TJ,N2O,0.6,kg/TJ,236.56994592,kg +cfc5f73f-184c-3996-85b4-4ec9add88ac1,SESCO,II.1.1,Tucuman,AR-T,annual,2023,naphtha combustion consumption by to the public,985.3764227999999,TJ,CO2,73300.0,kg/TJ,72228091.79123999,kg +fd251095-6004-30fa-9830-e27162465feb,SESCO,II.1.1,Tucuman,AR-T,annual,2023,naphtha combustion consumption by to the public,985.3764227999999,TJ,CH4,3.0,kg/TJ,2956.1292683999995,kg +c544d656-2218-347f-afd2-95efcbec428a,SESCO,II.1.1,Tucuman,AR-T,annual,2023,naphtha combustion consumption by to the public,985.3764227999999,TJ,N2O,0.6,kg/TJ,591.2258536799999,kg +45f870da-176a-3dc2-9a2a-8e3ec5874935,SESCO,II.1.1,Buenos Aires,AR-B,annual,2023,naphtha combustion consumption by freight transport,711.3441412,TJ,CO2,73300.0,kg/TJ,52141525.549959995,kg +3011f839-4ad4-3637-b4e6-6faba888a993,SESCO,II.1.1,Buenos Aires,AR-B,annual,2023,naphtha combustion consumption by freight transport,711.3441412,TJ,CH4,3.0,kg/TJ,2134.0324235999997,kg +c38f656d-1c1e-39ef-a12d-767a699825ce,SESCO,II.1.1,Buenos Aires,AR-B,annual,2023,naphtha combustion consumption by freight transport,711.3441412,TJ,N2O,0.6,kg/TJ,426.80648471999996,kg +69ac7db0-a938-3843-87d0-c767ace57a21,SESCO,II.1.1,Capital Federal,AR-C,annual,2023,naphtha combustion consumption by freight transport,108.64197959999998,TJ,CO2,73300.0,kg/TJ,7963457.104679999,kg +efa4bd8b-b705-3689-8263-88c73d2757f0,SESCO,II.1.1,Capital Federal,AR-C,annual,2023,naphtha combustion consumption by freight transport,108.64197959999998,TJ,CH4,3.0,kg/TJ,325.9259387999999,kg +fd639a7b-b3cc-32e6-9ce0-60a0e21d569f,SESCO,II.1.1,Capital Federal,AR-C,annual,2023,naphtha combustion consumption by freight transport,108.64197959999998,TJ,N2O,0.6,kg/TJ,65.18518775999999,kg +c7f217a5-e75d-382a-af62-3b560a936d70,SESCO,II.1.1,Catamarca,AR-K,annual,2023,naphtha combustion consumption by freight transport,4.824512,TJ,CO2,73300.0,kg/TJ,353636.7296,kg +1a95010a-79d7-38db-8daf-508121f4e761,SESCO,II.1.1,Catamarca,AR-K,annual,2023,naphtha combustion consumption by freight transport,4.824512,TJ,CH4,3.0,kg/TJ,14.473536000000001,kg +fe2f9e9c-47e4-3dd4-aecc-0b483316c024,SESCO,II.1.1,Catamarca,AR-K,annual,2023,naphtha combustion consumption by freight transport,4.824512,TJ,N2O,0.6,kg/TJ,2.8947072,kg +13841b70-d67a-33c9-9cee-d8c11810d9c0,SESCO,II.1.1,Chaco,AR-H,annual,2023,naphtha combustion consumption by freight transport,19.539273599999998,TJ,CO2,73300.0,kg/TJ,1432228.75488,kg +b312a8d2-c120-39b9-ac83-a13b31cd8809,SESCO,II.1.1,Chaco,AR-H,annual,2023,naphtha combustion consumption by freight transport,19.539273599999998,TJ,CH4,3.0,kg/TJ,58.61782079999999,kg +759da22d-f56b-3209-a237-ff65521fca34,SESCO,II.1.1,Chaco,AR-H,annual,2023,naphtha combustion consumption by freight transport,19.539273599999998,TJ,N2O,0.6,kg/TJ,11.723564159999999,kg +c31b03cc-e7e6-3797-a5bf-6243eb1e8238,SESCO,II.1.1,Chubut,AR-U,annual,2023,naphtha combustion consumption by freight transport,20.8961676,TJ,CO2,73300.0,kg/TJ,1531689.0850799999,kg +e3478145-f023-3e00-b773-957c0f1fd691,SESCO,II.1.1,Chubut,AR-U,annual,2023,naphtha combustion consumption by freight transport,20.8961676,TJ,CH4,3.0,kg/TJ,62.688502799999995,kg +30a5ffd8-30f6-3053-823d-5b0305573b09,SESCO,II.1.1,Chubut,AR-U,annual,2023,naphtha combustion consumption by freight transport,20.8961676,TJ,N2O,0.6,kg/TJ,12.53770056,kg +0d4d35eb-477d-38d1-b6db-69f6b232c9e5,SESCO,II.1.1,Corrientes,AR-W,annual,2023,naphtha combustion consumption by freight transport,18.84575,TJ,CO2,73300.0,kg/TJ,1381393.4749999999,kg +2b907e00-ece8-388e-b748-66a571dbf995,SESCO,II.1.1,Corrientes,AR-W,annual,2023,naphtha combustion consumption by freight transport,18.84575,TJ,CH4,3.0,kg/TJ,56.53725,kg +f70d0fc9-7b4e-34a9-8083-ad92a07c92f2,SESCO,II.1.1,Corrientes,AR-W,annual,2023,naphtha combustion consumption by freight transport,18.84575,TJ,N2O,0.6,kg/TJ,11.30745,kg +a4823a9d-4de4-3cac-97d9-eb320e8ef7d3,SESCO,II.1.1,Córdoba,AR-X,annual,2023,naphtha combustion consumption by freight transport,120.6128,TJ,CO2,73300.0,kg/TJ,8840918.24,kg +5e86e01e-1eec-3663-a7cb-1cfa30aad0ce,SESCO,II.1.1,Córdoba,AR-X,annual,2023,naphtha combustion consumption by freight transport,120.6128,TJ,CH4,3.0,kg/TJ,361.8384,kg +7239fce8-c8cf-3ed8-abc5-98104150e3e7,SESCO,II.1.1,Córdoba,AR-X,annual,2023,naphtha combustion consumption by freight transport,120.6128,TJ,N2O,0.6,kg/TJ,72.36768,kg +9ba08655-98e0-3038-b099-76efe3ea7bdd,SESCO,II.1.1,Entre Rios,AR-E,annual,2023,naphtha combustion consumption by freight transport,39.319772799999996,TJ,CO2,73300.0,kg/TJ,2882139.34624,kg +ff47ad5b-dcee-36c5-b125-5247d1b9d47e,SESCO,II.1.1,Entre Rios,AR-E,annual,2023,naphtha combustion consumption by freight transport,39.319772799999996,TJ,CH4,3.0,kg/TJ,117.95931839999999,kg +dba35c43-4f2b-3223-b9a5-4e28c96ee337,SESCO,II.1.1,Entre Rios,AR-E,annual,2023,naphtha combustion consumption by freight transport,39.319772799999996,TJ,N2O,0.6,kg/TJ,23.591863679999996,kg +89a56d5b-d214-381b-89d6-183292f77c00,SESCO,II.1.1,Formosa,AR-P,annual,2023,naphtha combustion consumption by freight transport,6.7241636,TJ,CO2,73300.0,kg/TJ,492881.19188,kg +0febafdb-11fa-341c-a94f-3b17cb896155,SESCO,II.1.1,Formosa,AR-P,annual,2023,naphtha combustion consumption by freight transport,6.7241636,TJ,CH4,3.0,kg/TJ,20.1724908,kg +690ffa42-5ede-33a2-a6c2-cb1f56d97e67,SESCO,II.1.1,Formosa,AR-P,annual,2023,naphtha combustion consumption by freight transport,6.7241636,TJ,N2O,0.6,kg/TJ,4.03449816,kg +8e6831a5-3509-3ca8-9eac-8049f58c7abb,SESCO,II.1.1,Jujuy,AR-Y,annual,2023,naphtha combustion consumption by freight transport,8.865040800000001,TJ,CO2,73300.0,kg/TJ,649807.4906400001,kg +015e2181-e16a-3834-8ae0-3d43e0678f5f,SESCO,II.1.1,Jujuy,AR-Y,annual,2023,naphtha combustion consumption by freight transport,8.865040800000001,TJ,CH4,3.0,kg/TJ,26.5951224,kg +c4c41dae-df6c-36b8-bf2f-bcc6c41618ab,SESCO,II.1.1,Jujuy,AR-Y,annual,2023,naphtha combustion consumption by freight transport,8.865040800000001,TJ,N2O,0.6,kg/TJ,5.31902448,kg +faff3ec5-f5fe-3d0b-95d4-45f32c15ab0e,SESCO,II.1.1,La Pampa,AR-L,annual,2023,naphtha combustion consumption by freight transport,12.573884399999999,TJ,CO2,73300.0,kg/TJ,921665.7265199999,kg +cff5d3f9-a661-3d39-95d8-db19e4e4b7db,SESCO,II.1.1,La Pampa,AR-L,annual,2023,naphtha combustion consumption by freight transport,12.573884399999999,TJ,CH4,3.0,kg/TJ,37.7216532,kg +d832459a-719c-3552-b1bc-4c53215fdd9e,SESCO,II.1.1,La Pampa,AR-L,annual,2023,naphtha combustion consumption by freight transport,12.573884399999999,TJ,N2O,0.6,kg/TJ,7.544330639999999,kg +c460e67a-f8ef-3415-8f9f-cf28bda62b4c,SESCO,II.1.1,La Rioja,AR-F,annual,2023,naphtha combustion consumption by freight transport,7.6890659999999995,TJ,CO2,73300.0,kg/TJ,563608.5377999999,kg +6ef498c6-a462-3286-9011-4ce1bab7cf8c,SESCO,II.1.1,La Rioja,AR-F,annual,2023,naphtha combustion consumption by freight transport,7.6890659999999995,TJ,CH4,3.0,kg/TJ,23.067197999999998,kg +055960e7-01ee-364f-8f08-cba603040e9a,SESCO,II.1.1,La Rioja,AR-F,annual,2023,naphtha combustion consumption by freight transport,7.6890659999999995,TJ,N2O,0.6,kg/TJ,4.6134395999999995,kg +bd86e7dc-3055-3aac-bda2-6ddf51e2a8e0,SESCO,II.1.1,Mendoza,AR-M,annual,2023,naphtha combustion consumption by freight transport,52.3459552,TJ,CO2,73300.0,kg/TJ,3836958.51616,kg +a3511178-22a3-3b85-ac9a-b39e8afb234b,SESCO,II.1.1,Mendoza,AR-M,annual,2023,naphtha combustion consumption by freight transport,52.3459552,TJ,CH4,3.0,kg/TJ,157.0378656,kg +7f06e634-316a-30cb-8eff-d59b09bdaa5f,SESCO,II.1.1,Mendoza,AR-M,annual,2023,naphtha combustion consumption by freight transport,52.3459552,TJ,N2O,0.6,kg/TJ,31.40757312,kg +680080a7-a068-3d77-a85d-e3df26dd6e4f,SESCO,II.1.1,Misiones,AR-N,annual,2023,naphtha combustion consumption by freight transport,15.679663999999999,TJ,CO2,73300.0,kg/TJ,1149319.3712,kg +1a75e820-4812-32fd-b49b-31d4d6fdf890,SESCO,II.1.1,Misiones,AR-N,annual,2023,naphtha combustion consumption by freight transport,15.679663999999999,TJ,CH4,3.0,kg/TJ,47.03899199999999,kg +a64caabe-fcc7-384f-9c7f-5e529040abff,SESCO,II.1.1,Misiones,AR-N,annual,2023,naphtha combustion consumption by freight transport,15.679663999999999,TJ,N2O,0.6,kg/TJ,9.407798399999999,kg +c6cc53ac-9799-35bb-a6c5-8f5cbcb43ca6,SESCO,II.1.1,Neuquén,AR-Q,annual,2023,naphtha combustion consumption by freight transport,21.227852799999997,TJ,CO2,73300.0,kg/TJ,1556001.6102399998,kg +0d86524d-7fa2-36fa-b00f-6f0e5e917fd8,SESCO,II.1.1,Neuquén,AR-Q,annual,2023,naphtha combustion consumption by freight transport,21.227852799999997,TJ,CH4,3.0,kg/TJ,63.683558399999995,kg +759c50aa-4689-318a-ada4-61e88de1aa32,SESCO,II.1.1,Neuquén,AR-Q,annual,2023,naphtha combustion consumption by freight transport,21.227852799999997,TJ,N2O,0.6,kg/TJ,12.736711679999997,kg +33a492d5-e5fc-3040-aba8-581fba19cdcb,SESCO,II.1.1,Rio Negro,AR-R,annual,2023,naphtha combustion consumption by freight transport,23.7908748,TJ,CO2,73300.0,kg/TJ,1743871.12284,kg +a80de323-d8de-3d73-b47c-9afe6fc93bd7,SESCO,II.1.1,Rio Negro,AR-R,annual,2023,naphtha combustion consumption by freight transport,23.7908748,TJ,CH4,3.0,kg/TJ,71.3726244,kg +3045d535-966c-3a93-96bd-f6ecfc8bdd87,SESCO,II.1.1,Rio Negro,AR-R,annual,2023,naphtha combustion consumption by freight transport,23.7908748,TJ,N2O,0.6,kg/TJ,14.27452488,kg +d53157d2-0c42-3fbf-88cb-29e25f4d0da9,SESCO,II.1.1,Salta,AR-A,annual,2023,naphtha combustion consumption by freight transport,26.534815999999996,TJ,CO2,73300.0,kg/TJ,1945002.0127999997,kg +840e0ad4-0292-36ab-b084-5bbbad34cee0,SESCO,II.1.1,Salta,AR-A,annual,2023,naphtha combustion consumption by freight transport,26.534815999999996,TJ,CH4,3.0,kg/TJ,79.60444799999999,kg +d89a0198-a96a-32e9-acd0-b7beba44102c,SESCO,II.1.1,Salta,AR-A,annual,2023,naphtha combustion consumption by freight transport,26.534815999999996,TJ,N2O,0.6,kg/TJ,15.920889599999997,kg +64dce1a9-1914-3bd3-883e-9e646588aec8,SESCO,II.1.1,San Juan,AR-J,annual,2023,naphtha combustion consumption by freight transport,14.172004,TJ,CO2,73300.0,kg/TJ,1038807.8931999999,kg +c9f47b49-4432-341c-b910-f7edf2d031fd,SESCO,II.1.1,San Juan,AR-J,annual,2023,naphtha combustion consumption by freight transport,14.172004,TJ,CH4,3.0,kg/TJ,42.516011999999996,kg +7c66b596-3c7f-34f7-8790-d93b327717b8,SESCO,II.1.1,San Juan,AR-J,annual,2023,naphtha combustion consumption by freight transport,14.172004,TJ,N2O,0.6,kg/TJ,8.5032024,kg +1dc49518-087f-398a-aff5-fe9da6f09a1c,SESCO,II.1.1,San Luis,AR-D,annual,2023,naphtha combustion consumption by freight transport,11.458215999999998,TJ,CO2,73300.0,kg/TJ,839887.2327999999,kg +40267387-0a51-364b-8b19-ab02bf3ca63d,SESCO,II.1.1,San Luis,AR-D,annual,2023,naphtha combustion consumption by freight transport,11.458215999999998,TJ,CH4,3.0,kg/TJ,34.37464799999999,kg +6e72a982-338a-34fb-a6c6-72299357855a,SESCO,II.1.1,San Luis,AR-D,annual,2023,naphtha combustion consumption by freight transport,11.458215999999998,TJ,N2O,0.6,kg/TJ,6.874929599999999,kg +ac9f94cc-3325-305e-9565-ad4dc1dbd404,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2023,naphtha combustion consumption by freight transport,11.820054399999998,TJ,CO2,73300.0,kg/TJ,866409.9875199998,kg +860c81e0-baa6-3d73-8e9a-09ffe63cf06c,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2023,naphtha combustion consumption by freight transport,11.820054399999998,TJ,CH4,3.0,kg/TJ,35.4601632,kg +9ed7e360-392a-346a-be0b-d4051aa6c81f,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2023,naphtha combustion consumption by freight transport,11.820054399999998,TJ,N2O,0.6,kg/TJ,7.0920326399999984,kg +6c3c1f3b-9631-3ec5-a542-69ea93909bfa,SESCO,II.1.1,Santa Fe,AR-S,annual,2023,naphtha combustion consumption by freight transport,110.51147799999998,TJ,CO2,73300.0,kg/TJ,8100491.337399999,kg +c40637a6-94e1-39d6-a4f7-5358d872550d,SESCO,II.1.1,Santa Fe,AR-S,annual,2023,naphtha combustion consumption by freight transport,110.51147799999998,TJ,CH4,3.0,kg/TJ,331.5344339999999,kg +a3c7ccb8-3a25-373c-9b16-291151929fdf,SESCO,II.1.1,Santa Fe,AR-S,annual,2023,naphtha combustion consumption by freight transport,110.51147799999998,TJ,N2O,0.6,kg/TJ,66.30688679999999,kg +a7a06214-2e49-3461-b7ea-b079efdcfad9,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2023,naphtha combustion consumption by freight transport,9.287185599999999,TJ,CO2,73300.0,kg/TJ,680750.70448,kg +b38a0ce7-8074-349b-8ccb-1f4d7112fd50,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2023,naphtha combustion consumption by freight transport,9.287185599999999,TJ,CH4,3.0,kg/TJ,27.861556799999995,kg +e5151861-1ce5-3f2e-a7fb-0e430e0a6e3b,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2023,naphtha combustion consumption by freight transport,9.287185599999999,TJ,N2O,0.6,kg/TJ,5.57231136,kg +edc9851f-b9ae-384e-a19f-45b1dcae6d9e,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2023,naphtha combustion consumption by freight transport,9.407798399999999,TJ,CO2,73300.0,kg/TJ,689591.62272,kg +9656e327-9272-3827-8302-1f639826f599,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2023,naphtha combustion consumption by freight transport,9.407798399999999,TJ,CH4,3.0,kg/TJ,28.2233952,kg +fc085fbc-0759-3143-a350-7c4532fde242,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2023,naphtha combustion consumption by freight transport,9.407798399999999,TJ,N2O,0.6,kg/TJ,5.644679039999999,kg +f94249f2-cf16-3fcb-9e97-731065071615,SESCO,II.1.1,Tucuman,AR-T,annual,2023,naphtha combustion consumption by freight transport,33.2891328,TJ,CO2,73300.0,kg/TJ,2440093.43424,kg +cd00025d-9d12-3e3c-84a5-908ed090d5f4,SESCO,II.1.1,Tucuman,AR-T,annual,2023,naphtha combustion consumption by freight transport,33.2891328,TJ,CH4,3.0,kg/TJ,99.86739839999998,kg +fe6d215c-b3e9-3265-9b8c-c54546cdf153,SESCO,II.1.1,Tucuman,AR-T,annual,2023,naphtha combustion consumption by freight transport,33.2891328,TJ,N2O,0.6,kg/TJ,19.973479679999997,kg +16da67ea-b1d9-347c-80b8-d290dc570bba,SESCO,II.1.1,Buenos Aires,AR-B,annual,2023,naphtha combustion consumption by freight transport,707.6051443999999,TJ,CO2,73300.0,kg/TJ,51867457.08451999,kg +7ebdf8b5-8acf-3b0d-8399-8a29155366ab,SESCO,II.1.1,Buenos Aires,AR-B,annual,2023,naphtha combustion consumption by freight transport,707.6051443999999,TJ,CH4,3.0,kg/TJ,2122.8154331999995,kg +75a96f8b-b1f9-3168-8be0-4a217d474f66,SESCO,II.1.1,Buenos Aires,AR-B,annual,2023,naphtha combustion consumption by freight transport,707.6051443999999,TJ,N2O,0.6,kg/TJ,424.5630866399999,kg +f83e31c5-9473-3ad9-9e7d-3705be25fd1d,SESCO,II.1.1,Capital Federal,AR-C,annual,2023,naphtha combustion consumption by freight transport,113.43633839999998,TJ,CO2,73300.0,kg/TJ,8314883.604719998,kg +9991dd3b-21a4-3a87-abbc-95204970d487,SESCO,II.1.1,Capital Federal,AR-C,annual,2023,naphtha combustion consumption by freight transport,113.43633839999998,TJ,CH4,3.0,kg/TJ,340.3090152,kg +71ab1e50-9144-3c39-9d18-3861d8ac162c,SESCO,II.1.1,Capital Federal,AR-C,annual,2023,naphtha combustion consumption by freight transport,113.43633839999998,TJ,N2O,0.6,kg/TJ,68.06180303999999,kg +e5d97061-b5e4-36ad-91b9-5d43de16ec66,SESCO,II.1.1,Catamarca,AR-K,annual,2023,naphtha combustion consumption by freight transport,2.2011836,TJ,CO2,73300.0,kg/TJ,161346.75788,kg +cbb245d6-0efa-3305-ab0f-13c6e5a79923,SESCO,II.1.1,Catamarca,AR-K,annual,2023,naphtha combustion consumption by freight transport,2.2011836,TJ,CH4,3.0,kg/TJ,6.603550799999999,kg +e485756d-bc4f-3cdf-bd27-d0072fbec9af,SESCO,II.1.1,Catamarca,AR-K,annual,2023,naphtha combustion consumption by freight transport,2.2011836,TJ,N2O,0.6,kg/TJ,1.3207101599999997,kg +19b75961-0fbe-3865-bee8-ee10eb0ddc1b,SESCO,II.1.1,Chaco,AR-H,annual,2023,naphtha combustion consumption by freight transport,15.770123599999998,TJ,CO2,73300.0,kg/TJ,1155950.0598799998,kg +76b737ec-56d8-3937-b276-6a77b5e3f595,SESCO,II.1.1,Chaco,AR-H,annual,2023,naphtha combustion consumption by freight transport,15.770123599999998,TJ,CH4,3.0,kg/TJ,47.310370799999994,kg +0cc76e91-e3af-35ad-bbdf-a81ddf31325e,SESCO,II.1.1,Chaco,AR-H,annual,2023,naphtha combustion consumption by freight transport,15.770123599999998,TJ,N2O,0.6,kg/TJ,9.462074159999998,kg +ffe341bd-90e3-3eed-af28-b090671f0733,SESCO,II.1.1,Chubut,AR-U,annual,2023,naphtha combustion consumption by freight transport,15.3479788,TJ,CO2,73300.0,kg/TJ,1125006.84604,kg +b0313132-fce7-3866-8cbf-1a34e50f3cb9,SESCO,II.1.1,Chubut,AR-U,annual,2023,naphtha combustion consumption by freight transport,15.3479788,TJ,CH4,3.0,kg/TJ,46.0439364,kg +6d4753dd-7676-3934-ada8-c8ff2ea08549,SESCO,II.1.1,Chubut,AR-U,annual,2023,naphtha combustion consumption by freight transport,15.3479788,TJ,N2O,0.6,kg/TJ,9.20878728,kg +1bb9f944-2942-359d-b26c-304a2136f145,SESCO,II.1.1,Corrientes,AR-W,annual,2023,naphtha combustion consumption by freight transport,20.3232568,TJ,CO2,73300.0,kg/TJ,1489694.7234399999,kg +ac76104d-f29f-3c94-a3be-e9acaa67da00,SESCO,II.1.1,Corrientes,AR-W,annual,2023,naphtha combustion consumption by freight transport,20.3232568,TJ,CH4,3.0,kg/TJ,60.9697704,kg +70c41da0-a919-378d-b2b4-297dc7fac1e8,SESCO,II.1.1,Corrientes,AR-W,annual,2023,naphtha combustion consumption by freight transport,20.3232568,TJ,N2O,0.6,kg/TJ,12.19395408,kg +404ef70e-1bdc-3280-8ed1-80f288c462b1,SESCO,II.1.1,Córdoba,AR-X,annual,2023,naphtha combustion consumption by freight transport,104.48083799999998,TJ,CO2,73300.0,kg/TJ,7658445.425399998,kg +292ede7a-c81f-3073-8dca-b587f317e0de,SESCO,II.1.1,Córdoba,AR-X,annual,2023,naphtha combustion consumption by freight transport,104.48083799999998,TJ,CH4,3.0,kg/TJ,313.44251399999996,kg +be0b2188-692b-3b9d-b49c-042c41b40f03,SESCO,II.1.1,Córdoba,AR-X,annual,2023,naphtha combustion consumption by freight transport,104.48083799999998,TJ,N2O,0.6,kg/TJ,62.68850279999998,kg +29511949-545d-3be2-bacb-33b9e634fd51,SESCO,II.1.1,Entre Rios,AR-E,annual,2023,naphtha combustion consumption by freight transport,38.41517679999999,TJ,CO2,73300.0,kg/TJ,2815832.4594399994,kg +51bf50a1-ab4f-3953-b179-464438bcd9fe,SESCO,II.1.1,Entre Rios,AR-E,annual,2023,naphtha combustion consumption by freight transport,38.41517679999999,TJ,CH4,3.0,kg/TJ,115.24553039999998,kg +e963e652-de43-3dfc-8c0d-7c4db5820531,SESCO,II.1.1,Entre Rios,AR-E,annual,2023,naphtha combustion consumption by freight transport,38.41517679999999,TJ,N2O,0.6,kg/TJ,23.049106079999994,kg +fec118a3-234f-3189-aa3a-14c13407a97d,SESCO,II.1.1,Formosa,AR-P,annual,2023,naphtha combustion consumption by freight transport,3.3470052,TJ,CO2,73300.0,kg/TJ,245335.48116,kg +516b94a0-3956-3862-9eac-fc18eb7cacbd,SESCO,II.1.1,Formosa,AR-P,annual,2023,naphtha combustion consumption by freight transport,3.3470052,TJ,CH4,3.0,kg/TJ,10.0410156,kg +66489951-63d3-369e-98bd-48e37c648568,SESCO,II.1.1,Formosa,AR-P,annual,2023,naphtha combustion consumption by freight transport,3.3470052,TJ,N2O,0.6,kg/TJ,2.0082031199999997,kg +626a1ad3-7486-332a-8fb1-e1d299c4ceb0,SESCO,II.1.1,Jujuy,AR-Y,annual,2023,naphtha combustion consumption by freight transport,4.0405288,TJ,CO2,73300.0,kg/TJ,296170.76103999995,kg +dca67440-66e8-3f09-82e4-a71a2d11499a,SESCO,II.1.1,Jujuy,AR-Y,annual,2023,naphtha combustion consumption by freight transport,4.0405288,TJ,CH4,3.0,kg/TJ,12.121586399999998,kg +f808169d-07be-36d4-8a28-7afb2a9fbc97,SESCO,II.1.1,Jujuy,AR-Y,annual,2023,naphtha combustion consumption by freight transport,4.0405288,TJ,N2O,0.6,kg/TJ,2.42431728,kg +eb650586-2831-3f8b-8add-b2bef202c8d4,SESCO,II.1.1,La Pampa,AR-L,annual,2023,naphtha combustion consumption by freight transport,13.840318799999999,TJ,CO2,73300.0,kg/TJ,1014495.3680399999,kg +aeb7a51e-fa99-332d-8000-d77fdbd7b37b,SESCO,II.1.1,La Pampa,AR-L,annual,2023,naphtha combustion consumption by freight transport,13.840318799999999,TJ,CH4,3.0,kg/TJ,41.520956399999996,kg +b62ca777-8e3a-3af4-9d6f-2f4f57af27b2,SESCO,II.1.1,La Pampa,AR-L,annual,2023,naphtha combustion consumption by freight transport,13.840318799999999,TJ,N2O,0.6,kg/TJ,8.30419128,kg +3f03de4f-c1cc-3d27-88df-21dc212a502a,SESCO,II.1.1,La Rioja,AR-F,annual,2023,naphtha combustion consumption by freight transport,5.879873999999999,TJ,CO2,73300.0,kg/TJ,430994.7641999999,kg +6e347d4a-a2ca-36bb-9730-0fdffe77c065,SESCO,II.1.1,La Rioja,AR-F,annual,2023,naphtha combustion consumption by freight transport,5.879873999999999,TJ,CH4,3.0,kg/TJ,17.639621999999996,kg +2454c4fe-3a81-38bf-a24e-9459c4aa3c0e,SESCO,II.1.1,La Rioja,AR-F,annual,2023,naphtha combustion consumption by freight transport,5.879873999999999,TJ,N2O,0.6,kg/TJ,3.5279243999999994,kg +ea87bd23-8a7d-371e-a3ca-f96f99922fc0,SESCO,II.1.1,Mendoza,AR-M,annual,2023,naphtha combustion consumption by freight transport,61.241149199999995,TJ,CO2,73300.0,kg/TJ,4488976.2363599995,kg +c8707e38-d078-3f7c-baea-14f720a2d341,SESCO,II.1.1,Mendoza,AR-M,annual,2023,naphtha combustion consumption by freight transport,61.241149199999995,TJ,CH4,3.0,kg/TJ,183.7234476,kg +c7959154-ac92-3153-8863-72db6f97421a,SESCO,II.1.1,Mendoza,AR-M,annual,2023,naphtha combustion consumption by freight transport,61.241149199999995,TJ,N2O,0.6,kg/TJ,36.744689519999994,kg +fc689f79-1044-344e-b466-8ac59c64158f,SESCO,II.1.1,Misiones,AR-N,annual,2023,naphtha combustion consumption by freight transport,16.493800399999998,TJ,CO2,73300.0,kg/TJ,1208995.5693199998,kg +6b33533e-dc4d-3b9e-8c22-035148f43880,SESCO,II.1.1,Misiones,AR-N,annual,2023,naphtha combustion consumption by freight transport,16.493800399999998,TJ,CH4,3.0,kg/TJ,49.48140119999999,kg +ac3494b4-61e5-3ed4-aa0d-3ac861ab3428,SESCO,II.1.1,Misiones,AR-N,annual,2023,naphtha combustion consumption by freight transport,16.493800399999998,TJ,N2O,0.6,kg/TJ,9.896280239999998,kg +32857f6c-6a57-309b-b6f6-78fe6e805e22,SESCO,II.1.1,Neuquén,AR-Q,annual,2023,naphtha combustion consumption by freight transport,41.279730799999996,TJ,CO2,73300.0,kg/TJ,3025804.2676399997,kg +0758c5cb-64a3-34f1-b106-a93df58c88c1,SESCO,II.1.1,Neuquén,AR-Q,annual,2023,naphtha combustion consumption by freight transport,41.279730799999996,TJ,CH4,3.0,kg/TJ,123.83919239999999,kg +a0f5f0de-d698-33be-aec7-03f9e1914943,SESCO,II.1.1,Neuquén,AR-Q,annual,2023,naphtha combustion consumption by freight transport,41.279730799999996,TJ,N2O,0.6,kg/TJ,24.767838479999998,kg +5267e32a-061d-365d-bbc8-decd0ace0ec2,SESCO,II.1.1,Rio Negro,AR-R,annual,2023,naphtha combustion consumption by freight transport,30.5753448,TJ,CO2,73300.0,kg/TJ,2241172.77384,kg +805b9873-669f-3255-97ab-a98d3c5c3e65,SESCO,II.1.1,Rio Negro,AR-R,annual,2023,naphtha combustion consumption by freight transport,30.5753448,TJ,CH4,3.0,kg/TJ,91.7260344,kg +37005eda-5c44-303c-8a6f-6f55fc8774fe,SESCO,II.1.1,Rio Negro,AR-R,annual,2023,naphtha combustion consumption by freight transport,30.5753448,TJ,N2O,0.6,kg/TJ,18.34520688,kg +46269e2b-8592-3af8-8626-8d63de7dd4eb,SESCO,II.1.1,Salta,AR-A,annual,2023,naphtha combustion consumption by freight transport,22.464133999999998,TJ,CO2,73300.0,kg/TJ,1646621.0221999998,kg +7eedb236-f85a-365f-8b80-6e59ee761b8e,SESCO,II.1.1,Salta,AR-A,annual,2023,naphtha combustion consumption by freight transport,22.464133999999998,TJ,CH4,3.0,kg/TJ,67.39240199999999,kg +cf223dee-3b40-3560-936a-ad2cd23e5b15,SESCO,II.1.1,Salta,AR-A,annual,2023,naphtha combustion consumption by freight transport,22.464133999999998,TJ,N2O,0.6,kg/TJ,13.478480399999999,kg +cc33b998-c9e9-38f3-b7fa-790ae8a77694,SESCO,II.1.1,San Juan,AR-J,annual,2023,naphtha combustion consumption by freight transport,8.5635088,TJ,CO2,73300.0,kg/TJ,627705.1950399999,kg +f6bf61be-45e3-30c0-9a10-3d23ab551694,SESCO,II.1.1,San Juan,AR-J,annual,2023,naphtha combustion consumption by freight transport,8.5635088,TJ,CH4,3.0,kg/TJ,25.690526399999996,kg +940684e4-de1b-32a6-b4d6-e96b6eee4820,SESCO,II.1.1,San Juan,AR-J,annual,2023,naphtha combustion consumption by freight transport,8.5635088,TJ,N2O,0.6,kg/TJ,5.1381052799999996,kg +f223e262-ab85-3dcd-904b-26ffc006ccb9,SESCO,II.1.1,San Luis,AR-D,annual,2023,naphtha combustion consumption by freight transport,9.0158068,TJ,CO2,73300.0,kg/TJ,660858.63844,kg +7ad76924-1b08-3332-ba73-77bf9cd90645,SESCO,II.1.1,San Luis,AR-D,annual,2023,naphtha combustion consumption by freight transport,9.0158068,TJ,CH4,3.0,kg/TJ,27.0474204,kg +2fca8a9b-06a1-3e4d-9cd1-8da40115ea13,SESCO,II.1.1,San Luis,AR-D,annual,2023,naphtha combustion consumption by freight transport,9.0158068,TJ,N2O,0.6,kg/TJ,5.4094840799999995,kg +fa0fc280-7836-3276-82f7-830db463f880,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2023,naphtha combustion consumption by freight transport,5.6084952,TJ,CO2,73300.0,kg/TJ,411102.69816,kg +b1f82ecc-c965-3bb6-9471-6ca68c3b1c1e,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2023,naphtha combustion consumption by freight transport,5.6084952,TJ,CH4,3.0,kg/TJ,16.8254856,kg +32793668-ae2b-3b75-aca4-19004e24949a,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2023,naphtha combustion consumption by freight transport,5.6084952,TJ,N2O,0.6,kg/TJ,3.36509712,kg +6f64ea8e-79eb-3034-bb9e-09d7f004da93,SESCO,II.1.1,Santa Fe,AR-S,annual,2023,naphtha combustion consumption by freight transport,109.18473719999999,TJ,CO2,73300.0,kg/TJ,8003241.236759999,kg +a61b926b-66bc-357a-8b96-0cf785a5594a,SESCO,II.1.1,Santa Fe,AR-S,annual,2023,naphtha combustion consumption by freight transport,109.18473719999999,TJ,CH4,3.0,kg/TJ,327.5542116,kg +75c6d3ad-35da-3296-9f06-4ce4edc3c2ed,SESCO,II.1.1,Santa Fe,AR-S,annual,2023,naphtha combustion consumption by freight transport,109.18473719999999,TJ,N2O,0.6,kg/TJ,65.51084232,kg +1d22e4be-3b2c-31a0-b899-d4a73ecfe367,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2023,naphtha combustion consumption by freight transport,6.0004868,TJ,CO2,73300.0,kg/TJ,439835.68244,kg +5f823e81-cecd-3d19-9340-afa597aeb1fa,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2023,naphtha combustion consumption by freight transport,6.0004868,TJ,CH4,3.0,kg/TJ,18.0014604,kg +688cb3eb-e803-3654-a6fa-d7dba2589f5f,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2023,naphtha combustion consumption by freight transport,6.0004868,TJ,N2O,0.6,kg/TJ,3.60029208,kg +860a2993-980d-3f28-a532-fc79ce4147ea,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2023,naphtha combustion consumption by freight transport,3.8897627999999993,TJ,CO2,73300.0,kg/TJ,285119.61324,kg +e584db3c-5fe8-35d1-b3b7-ccadd68e0a77,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2023,naphtha combustion consumption by freight transport,3.8897627999999993,TJ,CH4,3.0,kg/TJ,11.669288399999997,kg +c000f088-1a79-3a12-b821-27ff084e07c5,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2023,naphtha combustion consumption by freight transport,3.8897627999999993,TJ,N2O,0.6,kg/TJ,2.3338576799999995,kg +f03b2817-da55-3ed7-a839-9b7465d15fb1,SESCO,II.1.1,Tucuman,AR-T,annual,2023,naphtha combustion consumption by freight transport,18.4839116,TJ,CO2,73300.0,kg/TJ,1354870.72028,kg +51d7f58f-51d9-321c-9f51-870d022a39f2,SESCO,II.1.1,Tucuman,AR-T,annual,2023,naphtha combustion consumption by freight transport,18.4839116,TJ,CH4,3.0,kg/TJ,55.4517348,kg +b13c1c7a-9814-3281-b267-9a13e9ad7c6d,SESCO,II.1.1,Tucuman,AR-T,annual,2023,naphtha combustion consumption by freight transport,18.4839116,TJ,N2O,0.6,kg/TJ,11.09034696,kg diff --git a/global-api/importer/argentinian_datasets/SESCO/transformation_SESCO_AR.py b/global-api/importer/argentinian_datasets/SESCO/transformation_SESCO_AR.py index eacfa1a8a..ba5f16788 100644 --- a/global-api/importer/argentinian_datasets/SESCO/transformation_SESCO_AR.py +++ b/global-api/importer/argentinian_datasets/SESCO/transformation_SESCO_AR.py @@ -25,28 +25,165 @@ def uuid_generate_v3(name, namespace=uuid.NAMESPACE_OID): # clean the dataset df = df.drop(columns=['pais', 'indice_tiempo', 'tipodecomercializacion']) - # list of "province" values to delete + # change column names (Spanish to English) + df.columns = ['year', 'company', 'marketing_subtype', 'fuel_type', 'region_name', 'activity_value'] + + # list of "region_name" values to delete filter_values = ['S/D', 'no aplica', 'Provincia', 'Estado Nacional'] df = df[~df['provincia'].isin(filter_values)] + + # delete empty amounts of fuel + df = df[df['activity_value'] != 0] + df = df.reset_index(drop=True) + + # calculate annual values + df = df.groupby(['year', 'company', 'marketing_subtype', 'fuel_type', 'region_name'])['activity_value'].sum().reset_index() + + # calculation only for complete years + df = df[df['year'] != 2024] + + #------------------------------------------------------------------------ + ### Emission Calculation for Biofuels + #------------------------------------------------------------------------ + # biofuel percentage + # values for 2021,2022,2023 are estimations + percentage_df = pd.DataFrame() + percentage_df['year'] = [2010,2011,2012,2013,2014,2015,2016,2017,2018,2019,2020,2021,2022,2023] + percentage_df['bioetanol'] = [0.02,0.02,0.03,0.06,0.08,0.09,0.11,0.12,0.11,0.12,0.11,0.12,0.12,0.12] + percentage_df['biodiesel'] = [0.04,0.06,0.07,0.08,0.09,0.09,0.09,0.10,0.10,0.09,0.05,0.10,0.10,0.10] + + # list of naphthas to consider + naphthas = ['Nafta Grado 1 (Común)(m3)', 'Nafta Grado 2 (Súper)(m3)', 'Nafta Grado 3 (Ultra)(m3)'] + # Filter the DataFrame + bioetanol_df = df[df['fuel_type'].isin(naphthas)] + + # assign to each year the corresponding percentage value of biofuel + bioetanol_df = pd.merge(bioetanol_df, percentage_df.loc[:, ['year','bioetanol']], left_on='year', right_on='year') + + # calculate biofuel amount + bioetanol_df.loc[:, 'bioetanol'] = bioetanol_df['activity_value']*bioetanol_df['bioetanol'] + + # calculate portion of fossil fuel amount + bioetanol_df.loc[:, 'naphtha'] = bioetanol_df['activity_value'] - bioetanol_df['bioetanol'] + + # this column is unnecesary here + bioetanol_df = bioetanol_df.drop(columns='activity_value') + + # df re-estructure + bioetanol_df = pd.melt(bioetanol_df, id_vars=['year', 'company', 'marketing_subtype', 'region_name'], + value_vars=['bioetanol', 'naphtha'], + var_name='fuel_type', + value_name='activity_value') - # matching the 'suptipo' from SESCO to the GPC subsectors - suptipo_to_gpc = { - 'Industrias Petroquímicas':'I.3.1', - 'transporte Público de Pasajeros':'II.1.1', - 'Transporte de Carga':'II.1.1', - 'Agro':'II.5.1', - 'Transporte Ferroviario':'II.2.1' + # Filter the DataFrame for diesel + biodiesel_df = df[df['fuel_type'].isin(['Diesel Oil(m3)'])] + + # assign to each year the corresponding percentage value of biofuel + biodiesel_df = pd.merge(biodiesel_df, percentage_df.loc[:, ['year','biodiesel']], left_on='year', right_on='year') + + # calculate biofuel amount + biodiesel_df.loc[:, 'biodiesel'] = biodiesel_df['activity_value']*biodiesel_df['biodiesel'] + + # calculate portion of fossil fuel amount + biodiesel_df.loc[:, 'diesel'] = biodiesel_df['activity_value'] - biodiesel_df['biodiesel'] + + biodiesel_df = biodiesel_df.drop(columns='activity_value') + + # df re-estructure + biodiesel_df = pd.melt(biodiesel_df, id_vars=['year', 'company', 'marketing_subtype', 'region_name'], + value_vars=['biodiesel', 'diesel'], + var_name='fuel_type', + value_name='activity_value') + + # join these two dfs + result_df1 = pd.concat([biodiesel_df, bioetanol_df], ignore_index=True) + + # change m3 to energy + fuel_dic1 = { + 'diesel': { + 'units': 'm3', + 'fuel_density': 840, + 'fuel_density_units': 'kg/m3', + 'NCV_value': 43, + 'NCV_units': 'TJ/Gg' + }, + 'naphtha': { + 'units': 'm3', + 'fuel_density': 770, + 'fuel_density_units': 'kg/m3', + 'NCV_value': 44.5, + 'NCV_units': 'TJ/Gg' + }, + 'biodiesel': { + 'units': 'm3', + 'fuel_density': 880, + 'fuel_density_units': 'kg/m3', + 'NCV_value': 27, + 'NCV_units': 'TJ/Gg' + }, + 'bioetanol': { + 'units': 'm3', + 'fuel_density': 789, + 'fuel_density_units': 'kg/m3', + 'NCV_value': 27, + 'NCV_units': 'TJ/Gg' + } } - df['GPC_refno'] = df['subtipodecomercializacion'].map(suptipo_to_gpc) + # apply density to change m3 to kg and then, kg to TJ using the Net Calorific value + result_df1.loc[:, 'factor'] = result_df1['fuel_type'].apply(lambda x: (fuel_dic1[x]['fuel_density'] * fuel_dic1[x]['NCV_value'] * 1e-6) + if x in fuel_dic1 else None) + result_df1.loc[:, 'activity_value'] *= result_df1['factor'] - # delete rows without a GPC reference number - df = df.dropna(subset=['GPC_refno']) + # units after transformation + result_df1.loc[:, 'activity_units'] = 'TJ' - # calculate annual values - df = df.groupby(['anio', 'empresa', 'subtipodecomercializacion', 'producto', 'provincia', 'GPC_refno'])['cantidad'].sum().reset_index() + # delete the "factor" column + result_df1 = result_df1.drop(columns='factor') + # diccionary with the EF for these type of fuels + # units = kg/TJ + ef_bio = { + 'diesel' : { + 'CO2': 74100, + 'CH4': 3, + 'N2O': 0.6 + }, + 'naphtha' : { + 'CO2': 73300, + 'CH4': 3, + 'N2O': 0.6 + }, + 'biodiesel' : { + 'CH4': 10, + 'N2O': 0.6 + }, + 'bioetanol' : { + 'CH4': 10, + 'N2O': 0.6 + } + } + # Function to map fuel types to emission factors + def map_emission_factors(row): + fuel_type = row['fuel_type'] + if fuel_type in ef_bio: + return [(gas, value) for gas, value in ef_bio[fuel_type].items()] + else: + return [] + + # Apply the function to each row and explode the result into new rows + result_df1['emission_factors'] = result_df1.apply(map_emission_factors, axis=1) + result_df1 = result_df1.explode('emission_factors') + result_df1['gas_name'] = result_df1['emission_factors'].apply(lambda x: x[0] if x else None) + result_df1['emission_factor_value'] = result_df1['emission_factors'].apply(lambda x: x[1] if x else None) + result_df1 = result_df1.drop('emission_factors', axis=1) + + # add new columns based on the Global API schema + result_df1['emission_factor_units'] = 'kg/TJ' + result_df1.loc[:, 'emissions_value'] = result_df1['activity_value'] * result_df1['emission_factor_value'] + result_df1.loc[:, 'emissions_units'] = 'kg' + #------------------------------------------------------------------------ - ### Emission Calculation + ### Emission Calculation for the rest of fuels #------------------------------------------------------------------------ # diccionary with the data needed to convert the raw units (volume) into energy content by fuel type fuel_dic = { @@ -66,14 +203,6 @@ def uuid_generate_v3(name, namespace=uuid.NAMESPACE_OID): 'NCV_value': 44.3, 'NCV_units': 'TJ/Gg' }, - 'Diesel Oil(m3)': { - 'units': 'm3', - 'ef_fuel_name': 'Diesel Oil', - 'fuel_density': 840, - 'fuel_density_units': 'kg/m3', - 'NCV_value': 43, - 'NCV_units': 'TJ/Gg' - }, 'Fueloil(Ton)': { 'units': 'tonne', 'ef_fuel_name': 'Motor Gasoline', @@ -121,206 +250,111 @@ def uuid_generate_v3(name, namespace=uuid.NAMESPACE_OID): 'fuel_density_units': 'kg/m3', 'NCV_value': 44.3, 'NCV_units': 'TJ/Gg' - }, - 'Nafta Grado 1 (Común)(m3)': { - 'units': 'm3', - 'ef_fuel_name': 'Naphtha', - 'fuel_density': 770, - 'fuel_density_units': 'kg/m3', - 'NCV_value': 44.5, - 'NCV_units': 'TJ/Gg' - }, - 'Nafta Grado 2 (Súper)(m3)': { - 'units': 'm3', - 'ef_fuel_name': 'Naphtha', - 'fuel_density': 770, - 'fuel_density_units': 'kg/m3', - 'NCV_value': 44.5, - 'NCV_units': 'TJ/Gg' - }, - 'Nafta Grado 3 (Ultra)(m3)': { - 'units': 'm3', - 'ef_fuel_name': 'Naphtha', - 'fuel_density': 770, - 'fuel_density_units': 'kg/m3', - 'NCV_value': 44.5, - 'NCV_units': 'TJ/Gg' - }, - 'Nafta Virgen(m3)': { - 'units': 'm3', - 'ef_fuel_name': 'Naphtha', - 'fuel_density': 770, - 'fuel_density_units': 'kg/m3', - 'NCV_value': 44.5, - 'NCV_units': 'TJ/Gg' } } + # apply density to change m3 to kg and then, kg to TJ using the Net Calorific value + df.loc[:, 'factor'] = df['fuel_type'].apply(lambda x: (fuel_dic[x]['fuel_density'] * fuel_dic[x]['NCV_value'] * 1e-6) + if x in fuel_dic else None) + df.loc[:, 'activity_value'] *= df['factor'] - # apply a filter to select specific fuels - df = df[df['producto'].isin(fuel_dic.keys())] - - # assigning needed values to each row based on the fuel type - for index, row in df.iterrows(): - producto = row['producto'] - if producto in fuel_dic.keys(): - #print(fuel_dic[producto]['units']) - df.loc[index, 'units'] = fuel_dic[producto]['units'] - df.loc[index, 'fuel_ipcc'] = fuel_dic[producto]['ef_fuel_name'] - df.loc[index, 'fuel_density'] = fuel_dic[producto]['fuel_density'] - df.loc[index, 'fuel_density_units'] = fuel_dic[producto]['fuel_density_units'] - df.loc[index, 'NCV_value'] = fuel_dic[producto]['NCV_value'] - df.loc[index, 'NCV_units'] = fuel_dic[producto]['NCV_units'] - - # to calculate TJ for activity_values - # volume to mass, mass to energy content - df.loc[:, 'activity_value'] = df['cantidad'] * df['fuel_density'] * df['NCV_value'] * 1e-6 # changing Gg to kg + # units after transformation df.loc[:, 'activity_units'] = 'TJ' - #------------------------------------------------------------------------ - ### Subsector I.3.1 - #------------------------------------------------------------------------ - I31 = df[df['subtipodecomercializacion'] == 'Industrias Petroquímicas'] + df = df[df['activity_value'].notna()] - # diccionary to assign the emission factor values to each row based on the sector and fuel type - dic_ef_I31 = { - 'Jet Kerosene' : { - 'CO2': 71500, - 'CH4': 3, - 'N2O': 0.6 - }, - 'Aviation Gasoline' : { - 'CO2': 70000, - 'CH4': 3, - 'N2O': 0.6 - }, - 'Diesel Oil' : { - 'CO2': 74100, - 'CH4': 3, - 'N2O': 0.6 - }, - 'Motor Gasoline': { - 'CO2': 69300, - 'CH4': 3, - 'N2O': 0.6 - }, - 'Gas Oil' : { - 'CO2': 74100, - 'CH4': 3, - 'N2O': 0.6 - }, - 'Naphtha' : { - 'CO2': 73300, - 'CH4': 3, - 'N2O': 0.6 - } - } - new_rows = [] - - for index, row in I31.iterrows(): - fuel = row['fuel_ipcc'] - if fuel in dic_ef_I31.keys(): - ef_gas = dic_ef_I31[fuel] - for gas, ef_value in ef_gas.items(): - # Create a new row with gas name and emission factor value - new_row = row.copy() # Copy the original row - new_row['gas_name'] = gas - new_row['emission_factor_value'] = ef_value - new_row['emission_factor_units'] = 'kg/TJ' - # Append the new row to the list - new_rows.append(new_row) - - # Create a new DataFrame from the list of new rows - I31 = pd.DataFrame(new_rows) - I31 = I31.reset_index(drop=True) - - # calculating the emission values for this subsector - I31.loc[:, 'emissions_value'] = I31['activity_value'] * I31['emission_factor_value'] + # delete "factor" column + df = df.drop(columns='factor') - #------------------------------------------------------------------------ - ### Sector II - #------------------------------------------------------------------------ - II = df[df['subtipodecomercializacion'] != 'Industrias Petroquímicas'] - # diccionary to assign the emission factor values to each row based on the sector and fuel type - dic_ef_II21 = { - 'Jet Kerosene' : { + # change fuel names (Spanish to English) + replacement_fuels = {'Gasolina Natural(m3)': 'gasoline', 'Gasoil Grado 2 (Común)(m3)': 'gas oil', 'Kerosene(m3)': 'jet kerosene', + 'Fueloil(Ton)': 'gasoline', 'Aerokerosene (Jet)(m3)': 'jet kerosene', 'Gasoil Grado 3 (Ultra) (m3)': 'gas oil', + 'Aeronaftas(m3)': 'Aviation Gasoline', 'Gasoil Grado 1 (Agrogasoil)(m3)': 'gas oil'} + df['fuel_type'] = df['fuel_type'].replace(replacement_fuels, regex=False) + + # diccionary with the EF for these type of fuels + # units = 'kg/TJ' + dic_ef = { + 'jet kerosene' : { 'CO2': 71500, 'CH4': 0.5, 'N2O': 2 }, - 'Aviation Gasoline' : { + 'aviation gasoline' : { 'CO2': 72000, 'CH4': 0.5, 'N2O': 2 }, - 'Diesel Oil' : { - 'CO2': 74100, - 'CH4': 5, - 'N2O': 0.6 - }, - 'Motor Gasoline': { + 'gasoline': { 'CO2': 69300, 'CH4': 33, 'N2O': 3.2 }, - 'Gas Oil' : { + 'gas oil' : { 'CO2': 74100, 'CH4': 3.9, 'N2O': 3.9 - }, - 'Naphtha' : { - 'CO2': 73300, - 'CH4': 0.5, - 'N2O': 2 } } - new_rows = [] - - for index, row in II.iterrows(): - fuel = row['fuel_ipcc'] - if fuel in dic_ef_II21.keys(): - ef_gas = dic_ef_II21[fuel] - for gas, ef_value in ef_gas.items(): - # Create a new row with gas name and emission factor value - new_row = row.copy() # Copy the original row - new_row['gas_name'] = gas - new_row['emission_factor_value'] = ef_value - new_row['emission_factor_units'] = 'kg/TJ' - # Append the new row to the list - new_rows.append(new_row) - - # Create a new DataFrame from the list of new rows - II = pd.DataFrame(new_rows) - II = II.reset_index(drop=True) - - # calculating the emission values for this subsector - II.loc[:, 'emissions_value'] = II['activity_value'] * II['emission_factor_value'] + + # Function to map fuel types to emission factors + def map_emission_factors(row): + fuel_type = row['fuel_type'] + if fuel_type in dic_ef: + return [(gas, value) for gas, value in dic_ef[fuel_type].items()] + else: + return [] + + # Apply the function to each row and explode the result into new rows + df['emission_factors'] = df.apply(map_emission_factors, axis=1) + df = df.explode('emission_factors') + df['gas_name'] = df['emission_factors'].apply(lambda x: x[0] if isinstance(x, tuple) else None) + df['emission_factor_value'] = df['emission_factors'].apply(lambda x: x[1] if isinstance(x, tuple) else None) + + # delete "emission_factors" column + df = df.drop('emission_factors', axis=1) + + # add new columns based on the Global API schema + df['emission_factor_units'] = 'kg/TJ' + df.loc[:, 'emissions_value'] = df['activity_value'] * df['emission_factor_value'] + df.loc[:, 'emissions_units'] = 'kg' #------------------------------------------------------------------------ ### Final Details #------------------------------------------------------------------------ - # concatenate both dataframes - final_df = pd.concat([I31, II], ignore_index=True) - - # add the activity name based on the subtype of commercialization - translate_dic = { - 'Industrias Petroquímicas': 'petrochemical industries', - 'Agro': 'agriculture machines', - 'Transporte de Carga': 'freight transport', - 'transporte Público de Pasajeros': 'public passenger transport', - 'Transporte Ferroviario': 'railway transport' + # join the final dataframes df and result_df1 + final_df = pd.concat([df, result_df1], ignore_index=True) + + # assign GPC_refno based on the marketing subtype + suptipo_to_gpc = { + 'Al Público': 'II.1.1', + 'Industrias Petroquímicas':'I.3.1', + 'transporte Público de Pasajeros':'II.1.1', + 'Transporte de Carga':'II.1.1', + 'Agro':'II.5.1', + 'Transporte Ferroviario':'II.2.1', + } + final_df.loc[:, 'GPC_refno'] = final_df['marketing_subtype'].map(suptipo_to_gpc) + + # change marketing subtype names (Spanish to English) + replacement_subtype = { + 'Al Público': 'to the public', + 'Industrias Petroquímicas':'petrochemical industries', + 'transporte Público de Pasajeros':'public passenger transport', + 'Transporte de Carga':'freight transport', + 'Agro':'agriculture machines', + 'Transporte Ferroviario':'railway transport', } - for index, row in final_df.iterrows(): - subsector = row['subtipodecomercializacion'] - fuel = row['fuel_ipcc'] - if subsector in translate_dic.keys(): - final_df.loc[index, 'activity_name'] = f'{fuel} combustion consumption by {translate_dic[subsector]}' - - # delete extra columns - columns_to_drop = ['empresa', 'subtipodecomercializacion', 'producto', 'cantidad', 'units', 'fuel_ipcc', 'fuel_density', 'fuel_density_units', 'NCV_value', 'NCV_units'] + final_df.loc[:, 'marketing_subtype'] = final_df['marketing_subtype'].replace(replacement_subtype, regex=False) + + # add activity_name using marketing subtype and type of fuel + final_df['activity_name'] = final_df.apply(lambda row: f"{row['fuel_type']} combustion consumption by {row['marketing_subtype']}", axis=1) + + # delete columns + columns_to_drop = ['company', 'marketing_subtype', 'fuel_type'] final_df = final_df.drop(columns=columns_to_drop) # assigning province CODE based on the province name - region_code_dic = { + province_code_dic = { 'Buenos Aires':'AR-B', 'Capital Federal':'AR-C', 'Catamarca':'AR-K', @@ -346,34 +380,23 @@ def uuid_generate_v3(name, namespace=uuid.NAMESPACE_OID): 'Misiones':'AR-N', 'Formosa':'AR-P' } - for index, row in final_df.iterrows(): - region_name = row['provincia'] - if region_name in region_code_dic.keys(): - final_df.at[index, 'region_code'] = region_code_dic[region_name] - - # this year is not complete ( we're in 2024 :) ) - final_df = final_df[final_df['anio'] != 2024] - # rename columns - columns_to_rename = { - 'anio': 'year', - 'provincia': 'region_name' - } - final_df.rename(columns=columns_to_rename, inplace=True) - # adding extra columns + final_df.loc[:, 'region_code'] = final_df['region_name'].map(province_code_dic) + + # add new columns based on the Global API schema final_df.loc[:, 'source_name'] = 'SESCO' final_df.loc[:, 'temporal_granularity'] = 'annual' - final_df.loc[:, 'emissions_units'] = 'kg' - # Define a function to generate UUID for each row + # define a function to generate UUID for each row def generate_uuid(row): id_string = str(row['region_code']) + str(row['emissions_value']) + str(row['GPC_refno']) return uuid_generate_v3(id_string) - # Apply the function to each row and assign the result to a new column 'id' + + # apply the function to each row and assign the result to a new column 'id' final_df['id'] = final_df.apply(generate_uuid, axis=1) - + col_order = ['id', 'source_name', 'GPC_refno', 'region_name', 'region_code', 'temporal_granularity', 'year', 'activity_name', 'activity_value', 'activity_units', 'gas_name', 'emission_factor_value', 'emission_factor_units', 'emissions_value', 'emissions_units'] final_df = final_df.reindex(columns=col_order) - # Save the file + # save the file final_df.to_csv(f'{absolute_path}/processed_SESCO_AR.csv', sep=",", decimal=".", index=False) \ No newline at end of file From e724368274a2bba814d3a111100b09bbd3ab091d Mon Sep 17 00:00:00 2001 From: Amanda Eames Date: Tue, 30 Apr 2024 08:16:21 +1000 Subject: [PATCH 25/45] updated route and pk on import --- global-api/import_argentiniandatasets.sh | 13 +- .../BEN/loading_BEN_AR.sql | 57 +- .../BEN/transformation_BEN_AR.py | 14 +- .../ENARGAS/load_ENERGAS.sql | 55 +- .../ENARGAS/transformation_ENARGAS.py | 14 +- .../argentinian_datasets/SESCO/load_SESCO.sql | 61 +- .../SESCO/processed_SESCO_AR.csv | 50079 ---------------- .../SESCO/transformation_SESCO_AR.py | 22 +- global-api/routes/country_code_endpoint.py | 6 +- global-api/routes/region_code_endpoint.py | 18 +- 10 files changed, 148 insertions(+), 50191 deletions(-) delete mode 100644 global-api/importer/argentinian_datasets/SESCO/processed_SESCO_AR.csv diff --git a/global-api/import_argentiniandatasets.sh b/global-api/import_argentiniandatasets.sh index ba8591e16..2d78c214c 100755 --- a/global-api/import_argentiniandatasets.sh +++ b/global-api/import_argentiniandatasets.sh @@ -9,11 +9,16 @@ fi export PGPASSWORD=$CC_GLOBAL_API_DB_PASSWORD export DB_URI="postgresql://$CC_GLOBAL_API_DB_USER:$CC_GLOBAL_API_DB_PASSWORD@$CC_GLOBAL_API_DB_HOST/$CC_GLOBAL_API_DB_NAME" +# export DB_URI="postgresql://ccglobal:@localhost/ccglobal" +# export CC_GLOBAL_API_DB_HOST="localhost" +# export CC_GLOBAL_API_DB_USER="ccglobal" +# export CC_GLOBAL_API_DB_NAME="ccglobal" + # Argentinian pushd importer/argentinian_datasets/BEN/ -$python_cmd ./extraction_BEN_AR.py --filepath ./ +$python_cmd ./extraction_BEN_AR.py --filepath ./ -$python_cmd ./transformation_BEN_AR.py --filepath ./ +$python_cmd ./transformation_BEN_AR.py --filepath ./ --database_uri $DB_URI psql -h $CC_GLOBAL_API_DB_HOST \ -U $CC_GLOBAL_API_DB_USER \ @@ -23,7 +28,7 @@ psql -h $CC_GLOBAL_API_DB_HOST \ popd pushd importer/argentinian_datasets/ENARGAS/ -$python_cmd ./transformation_ENARGAS.py --filepath ./ +$python_cmd ./transformation_ENARGAS.py --filepath ./ --database_uri $DB_URI psql -h $CC_GLOBAL_API_DB_HOST \ -U $CC_GLOBAL_API_DB_USER \ @@ -35,7 +40,7 @@ popd pushd importer/argentinian_datasets/SESCO/ $python_cmd ./extraction_SESCO_AR.py --filepath ./ -$python_cmd ./transformation_SESCO_AR.py --filepath ./ +$python_cmd ./transformation_SESCO_AR.py --filepath ./ --database_uri $DB_URI psql -h $CC_GLOBAL_API_DB_HOST \ -U $CC_GLOBAL_API_DB_USER \ diff --git a/global-api/importer/argentinian_datasets/BEN/loading_BEN_AR.sql b/global-api/importer/argentinian_datasets/BEN/loading_BEN_AR.sql index a58f53895..60f5a31e8 100644 --- a/global-api/importer/argentinian_datasets/BEN/loading_BEN_AR.sql +++ b/global-api/importer/argentinian_datasets/BEN/loading_BEN_AR.sql @@ -1,35 +1,30 @@ -DROP TABLE IF EXISTS country_code_staging; - --- Create a staging table -CREATE TABLE country_code_staging (LIKE country_code INCLUDING ALL); - --- Clear the staging table -TRUNCATE country_code_staging; - --- Load the staging table from the downloaded file -\copy country_code_staging (id,source_name,"GPC_refno",country_name,country_code,temporal_granularity,year,activity_name,activity_value,activity_units,gas_name,emission_factor_value,emission_factor_units,emissions_value,emissions_units) FROM 'processed_BEN_AR.csv' WITH (FORMAT CSV, HEADER); +-- The ID column is not unique based on the processed records, +-- we have multiple acitivty records for single region_code, year, gas_name, GPC_refno +-- rather than upsert we will just delete existing source data and insert fresh with egenerated id to make record unique +-- the route for regions will need to be aggregated over region_code, year, gas_name, GPC_refno +DELETE FROM country_code WHERE source_name = 'BEN'; -- Update the main table with the staging table -INSERT INTO country_code (id,source_name,"GPC_refno",country_name,country_code,temporal_granularity,year,activity_name,activity_value,activity_units,gas_name,emission_factor_value,emission_factor_units,emissions_value,emissions_units) - SELECT id,source_name,"GPC_refno",country_name,country_code,temporal_granularity,year,activity_name,activity_value,activity_units,gas_name,emission_factor_value,emission_factor_units,emissions_value,emissions_units - FROM country_code_staging - ON CONFLICT ON CONSTRAINT country_code_pkey - DO UPDATE SET - id = excluded.id, - source_name = excluded.source_name, - "GPC_refno" = excluded."GPC_refno", - country_name = excluded.country_name, - country_code = excluded.country_code, - temporal_granularity = excluded.temporal_granularity, - year = excluded.year, - activity_name = excluded.activity_name, - activity_value = excluded.activity_value, - activity_units = excluded.activity_units, - gas_name = excluded.gas_name, - emission_factor_value = excluded.emission_factor_value, - emission_factor_units = excluded.emission_factor_units, - emissions_value = excluded.emissions_value, - emissions_units = excluded.emissions_units; +INSERT INTO country_code ( + id,source_name,"GPC_refno",country_name,country_code,temporal_granularity,year,activity_name,activity_value, + activity_units,gas_name,emission_factor_value,emission_factor_units,emissions_value,emissions_units + ) +SELECT gen_random_uuid() as id, + source_name, + "GPC_refno", + country_name, + country_code, + temporal_granularity, + cast(year as int) as year, + activity_name, + activity_value, + activity_units, + gas_name, + emission_factor_value, + emission_factor_units, + emissions_value, + emissions_units +FROM ben_country_emissions_staging; -- Drop the staging table -DROP TABLE country_code_staging; \ No newline at end of file +DROP TABLE ben_country_emissions_staging; \ No newline at end of file diff --git a/global-api/importer/argentinian_datasets/BEN/transformation_BEN_AR.py b/global-api/importer/argentinian_datasets/BEN/transformation_BEN_AR.py index cdc4fffd3..03dd8d682 100644 --- a/global-api/importer/argentinian_datasets/BEN/transformation_BEN_AR.py +++ b/global-api/importer/argentinian_datasets/BEN/transformation_BEN_AR.py @@ -3,6 +3,7 @@ import glob import uuid import os +from sqlalchemy import create_engine def uuid_generate_v3(name, namespace=uuid.NAMESPACE_OID): """generate a version 3 UUID from namespace and name""" @@ -13,6 +14,11 @@ def uuid_generate_v3(name, namespace=uuid.NAMESPACE_OID): if __name__ == "__main__": parser = argparse.ArgumentParser(description='Transform files with a specified location.') parser.add_argument("--filepath", help="path to the files location", required=True) + parser.add_argument( + "--database_uri", + help="database URI (e.g. postgresql://ccglobal:@localhost/ccglobal)", + default=os.environ.get("DB_URI"), + ) args = parser.parse_args() absolute_path = os.path.abspath(args.filepath) @@ -212,4 +218,10 @@ def uuid_generate_v3(name, namespace=uuid.NAMESPACE_OID): 'activity_units', 'gas_name', 'emission_factor_value', 'emission_factor_units', 'emissions_value', 'emissions_units'] result_df = result_df.reindex(columns=col_order) - result_df.to_csv(f'{absolute_path}/processed_BEN_AR.csv', sep=",", decimal=".", index=False) \ No newline at end of file + #result_df.to_csv(f'{absolute_path}/processed_BEN_AR.csv', sep=",", decimal=".", index=False) + + # Create a SQLAlchemy engine + engine = create_engine(args.database_uri) + + # Write the DataFrame to the database table + result_df.to_sql('ben_country_emissions_staging', engine, if_exists='replace', index=False) \ No newline at end of file diff --git a/global-api/importer/argentinian_datasets/ENARGAS/load_ENERGAS.sql b/global-api/importer/argentinian_datasets/ENARGAS/load_ENERGAS.sql index 120fb425e..1a075d558 100644 --- a/global-api/importer/argentinian_datasets/ENARGAS/load_ENERGAS.sql +++ b/global-api/importer/argentinian_datasets/ENARGAS/load_ENERGAS.sql @@ -1,34 +1,31 @@ --- Create a staging table -CREATE TEMP TABLE IF NOT EXISTS ENARGAS_staging (LIKE regionwide_emissions INCLUDING ALL); - --- Clear the staging table -TRUNCATE ENARGAS_staging; - --- Load the staging table from the downloaded file -\copy ENARGAS_staging ("GPC_refno",activity_name,activity_units,activity_value,emission_factor_units,emission_factor_value,emissions_units,emissions_value,gas_name,id,region_name,region_code,source_name,temporal_granularity,year) FROM 'processed_enargas_gas_consumption_AR.csv' WITH (FORMAT CSV, HEADER); +-- The ID column is not unique based on the processed records, +-- we have multiple acitivty records for single region_code, year, gas_name, GPC_refno +-- rather than upsert we will just delete existing source data and insert fresh with egenerated id to make record unique +-- the route for regions will need to be aggregated over region_code, year, gas_name, GPC_refno +DELETE FROM regionwide_emissions WHERE source_name = 'ENARGAS'; -- Update the main table with the staging table -INSERT INTO regionwide_emissions ("GPC_refno",activity_name,activity_units,activity_value,emission_factor_units,emission_factor_value,emissions_units,emissions_value,gas_name,id,region_name,region_code,source_name,temporal_granularity,year) - SELECT "GPC_refno",activity_name,activity_units,activity_value,emission_factor_units,emission_factor_value,emissions_units,emissions_value,gas_name,id,region_name,region_code,source_name,temporal_granularity,year - FROM ENARGAS_staging - ON CONFLICT ON CONSTRAINT regionwide_emissions_pkey - DO UPDATE SET - id = excluded.id, - source_name = excluded.source_name, - "GPC_refno" = excluded."GPC_refno", - region_name = excluded.region_name, - region_code = excluded.region_code, - temporal_granularity = excluded.temporal_granularity, - year = excluded.year, - activity_name = excluded.activity_name, - activity_value = excluded.activity_value, - activity_units = excluded.activity_units, - gas_name = excluded.gas_name, - emission_factor_value = excluded.emission_factor_value, - emission_factor_units = excluded.emission_factor_units, - emissions_value = excluded.emissions_value, - emissions_units = excluded.emissions_units; +INSERT INTO regionwide_emissions ( + id,source_name,"GPC_refno",region_name,region_code,temporal_granularity,year,activity_name,activity_value, + activity_units,gas_name,emission_factor_value,emission_factor_units,emissions_value,emissions_units + ) +SELECT gen_random_uuid() as id, + source_name, + "GPC_refno", + region_name, + region_code, + temporal_granularity, + year, + activity_name, + activity_value, + activity_units, + gas_name, + emission_factor_value, + emission_factor_units, + emissions_value, + emissions_units +FROM enargas_region_emissions_staging; -- Drop the staging table -DROP TABLE ENARGAS_staging; +DROP TABLE enargas_region_emissions_staging; diff --git a/global-api/importer/argentinian_datasets/ENARGAS/transformation_ENARGAS.py b/global-api/importer/argentinian_datasets/ENARGAS/transformation_ENARGAS.py index 72e95b388..c796b3afe 100644 --- a/global-api/importer/argentinian_datasets/ENARGAS/transformation_ENARGAS.py +++ b/global-api/importer/argentinian_datasets/ENARGAS/transformation_ENARGAS.py @@ -2,6 +2,7 @@ import argparse import uuid import os +from sqlalchemy import create_engine def uuid_generate_v3(name, namespace=uuid.NAMESPACE_OID): """generate a version 3 UUID from namespace and name""" @@ -12,6 +13,11 @@ def uuid_generate_v3(name, namespace=uuid.NAMESPACE_OID): if __name__ == "__main__": parser = argparse.ArgumentParser() parser.add_argument("--filepath", help="path to the files location", required=True) + parser.add_argument( + "--database_uri", + help="database URI (e.g. postgresql://ccglobal:@localhost/ccglobal)", + default=os.environ.get("DB_URI"), + ) args = parser.parse_args() absolute_path = os.path.abspath(args.filepath) @@ -200,4 +206,10 @@ def uuid_generate_v3(name, namespace=uuid.NAMESPACE_OID): result_df = result_df[sorted(result_df.columns)] - result_df.to_csv(f'{absolute_path}/processed_enargas_gas_consumption_AR.csv', sep=",", decimal=".", index=False) \ No newline at end of file + #result_df.to_csv(f'{absolute_path}/processed_enargas_gas_consumption_AR.csv', sep=",", decimal=".", index=False) + + # Create a SQLAlchemy engine + engine = create_engine(args.database_uri) + + # Write the DataFrame to the database table + result_df.to_sql('enargas_region_emissions_staging', engine, if_exists='replace', index=False) \ No newline at end of file diff --git a/global-api/importer/argentinian_datasets/SESCO/load_SESCO.sql b/global-api/importer/argentinian_datasets/SESCO/load_SESCO.sql index 569d96563..3aad60322 100644 --- a/global-api/importer/argentinian_datasets/SESCO/load_SESCO.sql +++ b/global-api/importer/argentinian_datasets/SESCO/load_SESCO.sql @@ -1,33 +1,32 @@ --- Create a staging table -CREATE TEMP TABLE IF NOT EXISTS region_code_staging (LIKE regionwide_emissions INCLUDING ALL); +-- The ID column is not unique based on the processed records, +-- we have multiple acitivty records for single region_code, year, gas_name, GPC_refno +-- rather than upsert we will just delete existing source data and insert fresh with egenerated id to make record unique +-- the route for regions will need to be aggregated over region_code, year, gas_name, GPC_refno +DELETE FROM regionwide_emissions WHERE source_name = 'SESCO'; --- Clear the staging table -TRUNCATE region_code_staging; +-- Update the main table with the staging table +INSERT INTO regionwide_emissions ( + id,source_name,"GPC_refno",region_name,region_code,temporal_granularity,year,activity_name,activity_value, + activity_units,gas_name,emission_factor_value,emission_factor_units,emissions_value,emissions_units + ) +SELECT gen_random_uuid() as id, + source_name, + "GPC_refno", + region_name, + region_code, + temporal_granularity, + year, + activity_name, + activity_value, + activity_units, + gas_name, + emission_factor_value, + emission_factor_units, + emissions_value, + emissions_units +FROM sesco_region_emissions_staging +WHERE "GPC_refno" IS NOT NULL +AND gas_name IS NOT NULL; --- Load the staging table from the downloaded file -\copy region_code_staging (id,source_name,"GPC_refno",region_name,region_code,temporal_granularity,year,activity_name,activity_value,activity_units,gas_name,emission_factor_value,emission_factor_units,emissions_value,emissions_units) FROM 'processed_SESCO_AR.csv' WITH (FORMAT CSV, HEADER); - --- -- Update the main table with the staging table -INSERT INTO regionwide_emissions (id,source_name,"GPC_refno",region_name,region_code,temporal_granularity,year,activity_name,activity_value,activity_units,gas_name,emission_factor_value,emission_factor_units,emissions_value,emissions_units) - SELECT id,source_name,"GPC_refno",region_name,region_code,temporal_granularity,year,activity_name,activity_value,activity_units,gas_name,emission_factor_value,emission_factor_units,emissions_value,emissions_units - FROM region_code_staging - ON CONFLICT ON CONSTRAINT regionwide_emissions_pkey - DO UPDATE SET - id = excluded.id, - source_name = excluded.source_name, - "GPC_refno" = excluded."GPC_refno", - region_name = excluded.region_name, - region_code = excluded.region_code, - temporal_granularity = excluded.temporal_granularity, - year = excluded.year, - activity_name = excluded.activity_name, - activity_value = excluded.activity_value, - activity_units = excluded.activity_units, - gas_name = excluded.gas_name, - emission_factor_value = excluded.emission_factor_value, - emission_factor_units = excluded.emission_factor_units, - emissions_value = excluded.emissions_value, - emissions_units = excluded.emissions_units; - --- -- Drop the staging table -DROP TABLE region_code_staging; \ No newline at end of file +-- Drop the staging table +DROP TABLE sesco_region_emissions_staging; \ No newline at end of file diff --git a/global-api/importer/argentinian_datasets/SESCO/processed_SESCO_AR.csv b/global-api/importer/argentinian_datasets/SESCO/processed_SESCO_AR.csv deleted file mode 100644 index 35a566957..000000000 --- a/global-api/importer/argentinian_datasets/SESCO/processed_SESCO_AR.csv +++ /dev/null @@ -1,50079 +0,0 @@ -id,source_name,GPC_refno,region_name,region_code,temporal_granularity,year,activity_name,activity_value,activity_units,gas_name,emission_factor_value,emission_factor_units,emissions_value,emissions_units -82b75e42-a452-3483-8fbf-4360a5dd1d0b,SESCO,II.5.1,Buenos Aires,AR-B,annual,2010,gas oil combustion consumption by agriculture machines,1.19196,TJ,CO2,74100.0,kg/TJ,88324.23599999999,kg -21294e22-d2e0-3633-8026-6a6e1d459f91,SESCO,II.5.1,Buenos Aires,AR-B,annual,2010,gas oil combustion consumption by agriculture machines,1.19196,TJ,CH4,3.9,kg/TJ,4.648643999999999,kg -21294e22-d2e0-3633-8026-6a6e1d459f91,SESCO,II.5.1,Buenos Aires,AR-B,annual,2010,gas oil combustion consumption by agriculture machines,1.19196,TJ,N2O,3.9,kg/TJ,4.648643999999999,kg -835c6e17-ca0e-3169-9665-1094bbb28481,SESCO,II.5.1,Córdoba,AR-X,annual,2010,gas oil combustion consumption by agriculture machines,1.22808,TJ,CO2,74100.0,kg/TJ,91000.728,kg -3802d37b-22d8-3b23-8545-bc1d77209c4a,SESCO,II.5.1,Córdoba,AR-X,annual,2010,gas oil combustion consumption by agriculture machines,1.22808,TJ,CH4,3.9,kg/TJ,4.789512,kg -3802d37b-22d8-3b23-8545-bc1d77209c4a,SESCO,II.5.1,Córdoba,AR-X,annual,2010,gas oil combustion consumption by agriculture machines,1.22808,TJ,N2O,3.9,kg/TJ,4.789512,kg -4d63310c-3389-3067-a7d2-35295662198c,SESCO,II.5.1,Entre Rios,AR-E,annual,2010,gas oil combustion consumption by agriculture machines,14.95368,TJ,CO2,74100.0,kg/TJ,1108067.688,kg -c4ae6821-a134-3946-8247-e791b243d577,SESCO,II.5.1,Entre Rios,AR-E,annual,2010,gas oil combustion consumption by agriculture machines,14.95368,TJ,CH4,3.9,kg/TJ,58.319352,kg -c4ae6821-a134-3946-8247-e791b243d577,SESCO,II.5.1,Entre Rios,AR-E,annual,2010,gas oil combustion consumption by agriculture machines,14.95368,TJ,N2O,3.9,kg/TJ,58.319352,kg -87f23981-cd13-382f-8e21-1961efb35cf8,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,gas oil combustion consumption by to the public,904.5531599999999,TJ,CO2,74100.0,kg/TJ,67027389.155999996,kg -77114109-c746-3473-bbaf-7307f0d13603,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,gas oil combustion consumption by to the public,904.5531599999999,TJ,CH4,3.9,kg/TJ,3527.7573239999997,kg -77114109-c746-3473-bbaf-7307f0d13603,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,gas oil combustion consumption by to the public,904.5531599999999,TJ,N2O,3.9,kg/TJ,3527.7573239999997,kg -1aa0e782-b578-396d-af92-254200a328ef,SESCO,II.1.1,Capital Federal,AR-C,annual,2010,gas oil combustion consumption by to the public,353.4342,TJ,CO2,74100.0,kg/TJ,26189474.22,kg -7d225fcf-7b53-3fa0-ac69-c2892d3739aa,SESCO,II.1.1,Capital Federal,AR-C,annual,2010,gas oil combustion consumption by to the public,353.4342,TJ,CH4,3.9,kg/TJ,1378.39338,kg -7d225fcf-7b53-3fa0-ac69-c2892d3739aa,SESCO,II.1.1,Capital Federal,AR-C,annual,2010,gas oil combustion consumption by to the public,353.4342,TJ,N2O,3.9,kg/TJ,1378.39338,kg -50ca1069-12b8-34a6-9989-4fb4fd92fc0a,SESCO,II.1.1,Chaco,AR-H,annual,2010,gas oil combustion consumption by to the public,55.37196,TJ,CO2,74100.0,kg/TJ,4103062.236,kg -17a4de01-d7bc-34e1-bb0d-ca1c33370d05,SESCO,II.1.1,Chaco,AR-H,annual,2010,gas oil combustion consumption by to the public,55.37196,TJ,CH4,3.9,kg/TJ,215.950644,kg -17a4de01-d7bc-34e1-bb0d-ca1c33370d05,SESCO,II.1.1,Chaco,AR-H,annual,2010,gas oil combustion consumption by to the public,55.37196,TJ,N2O,3.9,kg/TJ,215.950644,kg -76ff1dbf-3f09-3160-ad08-2dd94a63ed7a,SESCO,II.1.1,Corrientes,AR-W,annual,2010,gas oil combustion consumption by to the public,192.73632,TJ,CO2,74100.0,kg/TJ,14281761.312,kg -862b9c15-4ea8-3cfb-9538-d5c5c96b4fd2,SESCO,II.1.1,Corrientes,AR-W,annual,2010,gas oil combustion consumption by to the public,192.73632,TJ,CH4,3.9,kg/TJ,751.671648,kg -862b9c15-4ea8-3cfb-9538-d5c5c96b4fd2,SESCO,II.1.1,Corrientes,AR-W,annual,2010,gas oil combustion consumption by to the public,192.73632,TJ,N2O,3.9,kg/TJ,751.671648,kg -bee54ee3-ada6-32fb-bffc-5578be83e874,SESCO,II.1.1,Córdoba,AR-X,annual,2010,gas oil combustion consumption by to the public,309.29555999999997,TJ,CO2,74100.0,kg/TJ,22918800.996,kg -89322da0-78cb-379e-b32f-22118bc732ef,SESCO,II.1.1,Córdoba,AR-X,annual,2010,gas oil combustion consumption by to the public,309.29555999999997,TJ,CH4,3.9,kg/TJ,1206.2526839999998,kg -89322da0-78cb-379e-b32f-22118bc732ef,SESCO,II.1.1,Córdoba,AR-X,annual,2010,gas oil combustion consumption by to the public,309.29555999999997,TJ,N2O,3.9,kg/TJ,1206.2526839999998,kg -c2085c3b-e75f-33c5-9a62-cdbe1988f1a2,SESCO,II.1.1,Entre Rios,AR-E,annual,2010,gas oil combustion consumption by to the public,82.10076,TJ,CO2,74100.0,kg/TJ,6083666.316,kg -8396befd-be27-3934-8d11-f6c1ff00c492,SESCO,II.1.1,Entre Rios,AR-E,annual,2010,gas oil combustion consumption by to the public,82.10076,TJ,CH4,3.9,kg/TJ,320.19296399999996,kg -8396befd-be27-3934-8d11-f6c1ff00c492,SESCO,II.1.1,Entre Rios,AR-E,annual,2010,gas oil combustion consumption by to the public,82.10076,TJ,N2O,3.9,kg/TJ,320.19296399999996,kg -888690c3-eda1-317c-a404-4c1eca547d26,SESCO,II.1.1,Jujuy,AR-Y,annual,2010,gas oil combustion consumption by to the public,12.425279999999999,TJ,CO2,74100.0,kg/TJ,920713.2479999999,kg -2285ad24-7b0a-35e0-8142-ca994e7d5c0c,SESCO,II.1.1,Jujuy,AR-Y,annual,2010,gas oil combustion consumption by to the public,12.425279999999999,TJ,CH4,3.9,kg/TJ,48.458591999999996,kg -2285ad24-7b0a-35e0-8142-ca994e7d5c0c,SESCO,II.1.1,Jujuy,AR-Y,annual,2010,gas oil combustion consumption by to the public,12.425279999999999,TJ,N2O,3.9,kg/TJ,48.458591999999996,kg -655455ba-2fa2-313f-9c14-ce039d863f02,SESCO,II.1.1,La Pampa,AR-L,annual,2010,gas oil combustion consumption by to the public,40.52664,TJ,CO2,74100.0,kg/TJ,3003024.024,kg -e9c3ce1b-4f61-3a3b-8028-89ff7ef4f226,SESCO,II.1.1,La Pampa,AR-L,annual,2010,gas oil combustion consumption by to the public,40.52664,TJ,CH4,3.9,kg/TJ,158.053896,kg -e9c3ce1b-4f61-3a3b-8028-89ff7ef4f226,SESCO,II.1.1,La Pampa,AR-L,annual,2010,gas oil combustion consumption by to the public,40.52664,TJ,N2O,3.9,kg/TJ,158.053896,kg -b6e0c1b2-27c7-341f-b20a-3f9df1dffaa8,SESCO,II.1.1,Mendoza,AR-M,annual,2010,gas oil combustion consumption by to the public,38.829,TJ,CO2,74100.0,kg/TJ,2877228.9,kg -dc2b7433-b8fe-329b-90ec-f7cb638f96ce,SESCO,II.1.1,Mendoza,AR-M,annual,2010,gas oil combustion consumption by to the public,38.829,TJ,CH4,3.9,kg/TJ,151.4331,kg -dc2b7433-b8fe-329b-90ec-f7cb638f96ce,SESCO,II.1.1,Mendoza,AR-M,annual,2010,gas oil combustion consumption by to the public,38.829,TJ,N2O,3.9,kg/TJ,151.4331,kg -146c992c-2fdf-3dc2-8a33-af00eb162723,SESCO,II.1.1,Misiones,AR-N,annual,2010,gas oil combustion consumption by to the public,9.31896,TJ,CO2,74100.0,kg/TJ,690534.936,kg -27de1cb2-1c18-3341-b8df-8db3f042836d,SESCO,II.1.1,Misiones,AR-N,annual,2010,gas oil combustion consumption by to the public,9.31896,TJ,CH4,3.9,kg/TJ,36.343944,kg -27de1cb2-1c18-3341-b8df-8db3f042836d,SESCO,II.1.1,Misiones,AR-N,annual,2010,gas oil combustion consumption by to the public,9.31896,TJ,N2O,3.9,kg/TJ,36.343944,kg -0c4d68bf-d6ba-38ce-9fed-871ee9efbbf5,SESCO,II.1.1,San Juan,AR-J,annual,2010,gas oil combustion consumption by to the public,2.20332,TJ,CO2,74100.0,kg/TJ,163266.01200000002,kg -b591d657-f216-3272-8b33-66a645399b0a,SESCO,II.1.1,San Juan,AR-J,annual,2010,gas oil combustion consumption by to the public,2.20332,TJ,CH4,3.9,kg/TJ,8.592948,kg -b591d657-f216-3272-8b33-66a645399b0a,SESCO,II.1.1,San Juan,AR-J,annual,2010,gas oil combustion consumption by to the public,2.20332,TJ,N2O,3.9,kg/TJ,8.592948,kg -b6349cc9-3434-3653-9a6a-bded9c3da7e8,SESCO,II.1.1,San Luis,AR-D,annual,2010,gas oil combustion consumption by to the public,6.2126399999999995,TJ,CO2,74100.0,kg/TJ,460356.62399999995,kg -ae8d2fbd-7ffb-336f-a146-73ceb08b68a4,SESCO,II.1.1,San Luis,AR-D,annual,2010,gas oil combustion consumption by to the public,6.2126399999999995,TJ,CH4,3.9,kg/TJ,24.229295999999998,kg -ae8d2fbd-7ffb-336f-a146-73ceb08b68a4,SESCO,II.1.1,San Luis,AR-D,annual,2010,gas oil combustion consumption by to the public,6.2126399999999995,TJ,N2O,3.9,kg/TJ,24.229295999999998,kg -d8f0b1d5-e828-3c6a-905b-62e74e549bd8,SESCO,II.1.1,Santa Fe,AR-S,annual,2010,gas oil combustion consumption by to the public,324.03252,TJ,CO2,74100.0,kg/TJ,24010809.731999997,kg -971162ba-4c1e-39be-b6d8-4cfe496db36a,SESCO,II.1.1,Santa Fe,AR-S,annual,2010,gas oil combustion consumption by to the public,324.03252,TJ,CH4,3.9,kg/TJ,1263.7268279999998,kg -971162ba-4c1e-39be-b6d8-4cfe496db36a,SESCO,II.1.1,Santa Fe,AR-S,annual,2010,gas oil combustion consumption by to the public,324.03252,TJ,N2O,3.9,kg/TJ,1263.7268279999998,kg -a201e8d1-a948-3ceb-b0ec-4daea3913f15,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2010,gas oil combustion consumption by to the public,137.256,TJ,CO2,74100.0,kg/TJ,10170669.6,kg -d28113f0-8588-3332-ab0e-b344ffbacc4d,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2010,gas oil combustion consumption by to the public,137.256,TJ,CH4,3.9,kg/TJ,535.2984,kg -d28113f0-8588-3332-ab0e-b344ffbacc4d,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2010,gas oil combustion consumption by to the public,137.256,TJ,N2O,3.9,kg/TJ,535.2984,kg -ecd2bfb7-6bd2-3dfd-945b-92be4b6b987c,SESCO,II.1.1,Tucuman,AR-T,annual,2010,gas oil combustion consumption by to the public,2.45616,TJ,CO2,74100.0,kg/TJ,182001.456,kg -d908724b-f283-3919-bad6-4f088b05839b,SESCO,II.1.1,Tucuman,AR-T,annual,2010,gas oil combustion consumption by to the public,2.45616,TJ,CH4,3.9,kg/TJ,9.579024,kg -d908724b-f283-3919-bad6-4f088b05839b,SESCO,II.1.1,Tucuman,AR-T,annual,2010,gas oil combustion consumption by to the public,2.45616,TJ,N2O,3.9,kg/TJ,9.579024,kg -d3d58ef3-7905-3e42-b372-326aa97b823f,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,jet kerosene combustion consumption by to the public,2.0758979999999996,TJ,CO2,71500.0,kg/TJ,148426.70699999997,kg -bf80a0a6-36d0-3962-82e6-a08615f3097f,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,jet kerosene combustion consumption by to the public,2.0758979999999996,TJ,CH4,0.5,kg/TJ,1.0379489999999998,kg -21d078ff-0aa9-3ef5-8511-4929eca2108c,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,jet kerosene combustion consumption by to the public,2.0758979999999996,TJ,N2O,2.0,kg/TJ,4.151795999999999,kg -6e9c71a3-0612-34a2-8609-f6f2b466fc3e,SESCO,II.1.1,Córdoba,AR-X,annual,2010,jet kerosene combustion consumption by to the public,0.28307699999999997,TJ,CO2,71500.0,kg/TJ,20240.0055,kg -48a4d047-2cb3-3478-8455-853ef006a1ea,SESCO,II.1.1,Córdoba,AR-X,annual,2010,jet kerosene combustion consumption by to the public,0.28307699999999997,TJ,CH4,0.5,kg/TJ,0.14153849999999998,kg -16f9ce73-1f85-338c-9107-97b4a0a7c22d,SESCO,II.1.1,Córdoba,AR-X,annual,2010,jet kerosene combustion consumption by to the public,0.28307699999999997,TJ,N2O,2.0,kg/TJ,0.5661539999999999,kg -c37e0b43-e48b-3e32-9bd2-bf32d3a1f4d5,SESCO,II.1.1,Entre Rios,AR-E,annual,2010,jet kerosene combustion consumption by to the public,1.0379489999999998,TJ,CO2,71500.0,kg/TJ,74213.35349999998,kg -321721ef-42b1-303c-a944-720bd1d97ee2,SESCO,II.1.1,Entre Rios,AR-E,annual,2010,jet kerosene combustion consumption by to the public,1.0379489999999998,TJ,CH4,0.5,kg/TJ,0.5189744999999999,kg -3b3b0677-a6ac-31e1-a0a4-117fec1a1415,SESCO,II.1.1,Entre Rios,AR-E,annual,2010,jet kerosene combustion consumption by to the public,1.0379489999999998,TJ,N2O,2.0,kg/TJ,2.0758979999999996,kg -0edb81ad-ff7d-31dd-a9d2-ef4ba9a41728,SESCO,II.1.1,Santa Fe,AR-S,annual,2010,jet kerosene combustion consumption by to the public,1.1637609999999998,TJ,CO2,71500.0,kg/TJ,83208.91149999999,kg -febc9db9-f558-3561-a374-0e5cabecb423,SESCO,II.1.1,Santa Fe,AR-S,annual,2010,jet kerosene combustion consumption by to the public,1.1637609999999998,TJ,CH4,0.5,kg/TJ,0.5818804999999999,kg -3c9720ea-6b76-3f2d-9783-8444a28a0a0b,SESCO,II.1.1,Santa Fe,AR-S,annual,2010,jet kerosene combustion consumption by to the public,1.1637609999999998,TJ,N2O,2.0,kg/TJ,2.3275219999999996,kg -307e8111-cc48-3b1e-9826-ba331db99535,SESCO,I.3.1,Buenos Aires,AR-B,annual,2010,gas oil combustion consumption by petrochemical industries,12.85872,TJ,CO2,74100.0,kg/TJ,952831.152,kg -25e6c702-f978-3ee7-ba1a-8db697dfd369,SESCO,I.3.1,Buenos Aires,AR-B,annual,2010,gas oil combustion consumption by petrochemical industries,12.85872,TJ,CH4,3.9,kg/TJ,50.149008,kg -25e6c702-f978-3ee7-ba1a-8db697dfd369,SESCO,I.3.1,Buenos Aires,AR-B,annual,2010,gas oil combustion consumption by petrochemical industries,12.85872,TJ,N2O,3.9,kg/TJ,50.149008,kg -de8d2d98-5f79-3cfc-ad8f-9e7942fa1aa7,SESCO,I.3.1,Capital Federal,AR-C,annual,2010,gas oil combustion consumption by petrochemical industries,3.28692,TJ,CO2,74100.0,kg/TJ,243560.772,kg -2da7fd6d-44fc-32ed-ab75-9d1d43885eeb,SESCO,I.3.1,Capital Federal,AR-C,annual,2010,gas oil combustion consumption by petrochemical industries,3.28692,TJ,CH4,3.9,kg/TJ,12.818988,kg -2da7fd6d-44fc-32ed-ab75-9d1d43885eeb,SESCO,I.3.1,Capital Federal,AR-C,annual,2010,gas oil combustion consumption by petrochemical industries,3.28692,TJ,N2O,3.9,kg/TJ,12.818988,kg -ab94e4a9-8c3a-3701-b9e6-a1508d6e80fd,SESCO,II.1.1,Capital Federal,AR-C,annual,2010,gas oil combustion consumption by freight transport,1.2642,TJ,CO2,74100.0,kg/TJ,93677.22,kg -711c8d47-8b0c-336d-a927-486b6975cf5e,SESCO,II.1.1,Capital Federal,AR-C,annual,2010,gas oil combustion consumption by freight transport,1.2642,TJ,CH4,3.9,kg/TJ,4.9303799999999995,kg -711c8d47-8b0c-336d-a927-486b6975cf5e,SESCO,II.1.1,Capital Federal,AR-C,annual,2010,gas oil combustion consumption by freight transport,1.2642,TJ,N2O,3.9,kg/TJ,4.9303799999999995,kg -06c09900-d71a-3df3-84c7-57614862480c,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,gas oil combustion consumption by public passenger transport,3652.02096,TJ,CO2,74100.0,kg/TJ,270614753.136,kg -df2a449c-b403-3d1e-9022-5632945450e8,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,gas oil combustion consumption by public passenger transport,3652.02096,TJ,CH4,3.9,kg/TJ,14242.881743999998,kg -df2a449c-b403-3d1e-9022-5632945450e8,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,gas oil combustion consumption by public passenger transport,3652.02096,TJ,N2O,3.9,kg/TJ,14242.881743999998,kg -d3965184-4b80-3387-82a4-f1afcf7da5ee,SESCO,II.1.1,Capital Federal,AR-C,annual,2010,gas oil combustion consumption by public passenger transport,1197.12516,TJ,CO2,74100.0,kg/TJ,88706974.356,kg -1aa4cc80-779e-323f-8ebd-b209b05546f6,SESCO,II.1.1,Capital Federal,AR-C,annual,2010,gas oil combustion consumption by public passenger transport,1197.12516,TJ,CH4,3.9,kg/TJ,4668.788124,kg -1aa4cc80-779e-323f-8ebd-b209b05546f6,SESCO,II.1.1,Capital Federal,AR-C,annual,2010,gas oil combustion consumption by public passenger transport,1197.12516,TJ,N2O,3.9,kg/TJ,4668.788124,kg -e1b493b2-5753-3da7-9de5-5decdc9b3922,SESCO,II.1.1,Córdoba,AR-X,annual,2010,gas oil combustion consumption by public passenger transport,95.03171999999999,TJ,CO2,74100.0,kg/TJ,7041850.452,kg -9343f9b1-353b-3649-af90-e7cd96e99ff9,SESCO,II.1.1,Córdoba,AR-X,annual,2010,gas oil combustion consumption by public passenger transport,95.03171999999999,TJ,CH4,3.9,kg/TJ,370.62370799999997,kg -9343f9b1-353b-3649-af90-e7cd96e99ff9,SESCO,II.1.1,Córdoba,AR-X,annual,2010,gas oil combustion consumption by public passenger transport,95.03171999999999,TJ,N2O,3.9,kg/TJ,370.62370799999997,kg -f1b1ea8d-94f5-3258-8b26-5a5e57bd470e,SESCO,II.1.1,Entre Rios,AR-E,annual,2010,gas oil combustion consumption by public passenger transport,389.08464,TJ,CO2,74100.0,kg/TJ,28831171.823999997,kg -8241ab46-c6a8-3342-bb3a-35901a0f108f,SESCO,II.1.1,Entre Rios,AR-E,annual,2010,gas oil combustion consumption by public passenger transport,389.08464,TJ,CH4,3.9,kg/TJ,1517.4300959999998,kg -8241ab46-c6a8-3342-bb3a-35901a0f108f,SESCO,II.1.1,Entre Rios,AR-E,annual,2010,gas oil combustion consumption by public passenger transport,389.08464,TJ,N2O,3.9,kg/TJ,1517.4300959999998,kg -41b46fa5-435e-328e-b218-c94aeee8eb01,SESCO,II.1.1,Mendoza,AR-M,annual,2010,gas oil combustion consumption by public passenger transport,192.66407999999998,TJ,CO2,74100.0,kg/TJ,14276408.328,kg -95f90a60-daa9-3a57-9bf5-f62beeada642,SESCO,II.1.1,Mendoza,AR-M,annual,2010,gas oil combustion consumption by public passenger transport,192.66407999999998,TJ,CH4,3.9,kg/TJ,751.3899119999999,kg -95f90a60-daa9-3a57-9bf5-f62beeada642,SESCO,II.1.1,Mendoza,AR-M,annual,2010,gas oil combustion consumption by public passenger transport,192.66407999999998,TJ,N2O,3.9,kg/TJ,751.3899119999999,kg -6982e42a-dd8b-3437-add8-77a512c4cfbe,SESCO,II.1.1,Misiones,AR-N,annual,2010,gas oil combustion consumption by public passenger transport,206.06459999999998,TJ,CO2,74100.0,kg/TJ,15269386.86,kg -437f138f-fa16-3f47-8805-9a7eb7e4d7ac,SESCO,II.1.1,Misiones,AR-N,annual,2010,gas oil combustion consumption by public passenger transport,206.06459999999998,TJ,CH4,3.9,kg/TJ,803.65194,kg -437f138f-fa16-3f47-8805-9a7eb7e4d7ac,SESCO,II.1.1,Misiones,AR-N,annual,2010,gas oil combustion consumption by public passenger transport,206.06459999999998,TJ,N2O,3.9,kg/TJ,803.65194,kg -935beb1e-2ddf-3796-9814-5857ef5fc129,SESCO,II.1.1,Salta,AR-A,annual,2010,gas oil combustion consumption by public passenger transport,70.14504,TJ,CO2,74100.0,kg/TJ,5197747.464,kg -686e09b8-c871-3fd9-a9fd-a1fac7e12730,SESCO,II.1.1,Salta,AR-A,annual,2010,gas oil combustion consumption by public passenger transport,70.14504,TJ,CH4,3.9,kg/TJ,273.565656,kg -686e09b8-c871-3fd9-a9fd-a1fac7e12730,SESCO,II.1.1,Salta,AR-A,annual,2010,gas oil combustion consumption by public passenger transport,70.14504,TJ,N2O,3.9,kg/TJ,273.565656,kg -ec41350c-adf3-3382-8281-8df1080f026e,SESCO,II.1.1,San Juan,AR-J,annual,2010,gas oil combustion consumption by public passenger transport,70.7952,TJ,CO2,74100.0,kg/TJ,5245924.319999999,kg -132f1e98-c0e8-3535-9950-e2757f0292ab,SESCO,II.1.1,San Juan,AR-J,annual,2010,gas oil combustion consumption by public passenger transport,70.7952,TJ,CH4,3.9,kg/TJ,276.10128,kg -132f1e98-c0e8-3535-9950-e2757f0292ab,SESCO,II.1.1,San Juan,AR-J,annual,2010,gas oil combustion consumption by public passenger transport,70.7952,TJ,N2O,3.9,kg/TJ,276.10128,kg -53435db9-7ed3-3ee9-8c9e-eb1ae5d8a279,SESCO,II.1.1,San Luis,AR-D,annual,2010,gas oil combustion consumption by public passenger transport,5.56248,TJ,CO2,74100.0,kg/TJ,412179.768,kg -05367247-4faa-3909-b82e-277584e68487,SESCO,II.1.1,San Luis,AR-D,annual,2010,gas oil combustion consumption by public passenger transport,5.56248,TJ,CH4,3.9,kg/TJ,21.693672,kg -05367247-4faa-3909-b82e-277584e68487,SESCO,II.1.1,San Luis,AR-D,annual,2010,gas oil combustion consumption by public passenger transport,5.56248,TJ,N2O,3.9,kg/TJ,21.693672,kg -3b2cb5f7-909e-3b31-b5e8-783a0ed0fae1,SESCO,II.1.1,Santa Fe,AR-S,annual,2010,gas oil combustion consumption by public passenger transport,235.03284,TJ,CO2,74100.0,kg/TJ,17415933.444,kg -9fddf7ad-f83e-35b4-8a97-dbcdf05b7af7,SESCO,II.1.1,Santa Fe,AR-S,annual,2010,gas oil combustion consumption by public passenger transport,235.03284,TJ,CH4,3.9,kg/TJ,916.628076,kg -9fddf7ad-f83e-35b4-8a97-dbcdf05b7af7,SESCO,II.1.1,Santa Fe,AR-S,annual,2010,gas oil combustion consumption by public passenger transport,235.03284,TJ,N2O,3.9,kg/TJ,916.628076,kg -40aae9a5-e7c2-3eac-8ca9-b95ba59c9ae2,SESCO,II.5.1,Córdoba,AR-X,annual,2010,gasoline combustion consumption by agriculture machines,5.9681846,TJ,CO2,69300.0,kg/TJ,413595.19278,kg -a8888648-9e2d-30ba-8e64-e323e917c62b,SESCO,II.5.1,Córdoba,AR-X,annual,2010,gasoline combustion consumption by agriculture machines,5.9681846,TJ,CH4,33.0,kg/TJ,196.9500918,kg -946f18d8-5744-3bb8-923a-76594042ba36,SESCO,II.5.1,Córdoba,AR-X,annual,2010,gasoline combustion consumption by agriculture machines,5.9681846,TJ,N2O,3.2,kg/TJ,19.09819072,kg -6c0a036e-bdf7-3c27-bc29-90a7fdb327b7,SESCO,II.5.1,Santa Fe,AR-S,annual,2010,gasoline combustion consumption by agriculture machines,205.476247,TJ,CO2,69300.0,kg/TJ,14239503.9171,kg -0c667dc1-9604-3089-b7f9-0b4ec2ddfd3b,SESCO,II.5.1,Santa Fe,AR-S,annual,2010,gasoline combustion consumption by agriculture machines,205.476247,TJ,CH4,33.0,kg/TJ,6780.716151,kg -5c9cc714-43f6-33e0-b9cf-90f5bffa11c3,SESCO,II.5.1,Santa Fe,AR-S,annual,2010,gasoline combustion consumption by agriculture machines,205.476247,TJ,N2O,3.2,kg/TJ,657.5239904,kg -fc1d6e11-1690-3194-baa2-e79efd8856d6,SESCO,II.5.1,Buenos Aires,AR-B,annual,2010,gas oil combustion consumption by agriculture machines,204.1235112,TJ,CO2,74100.0,kg/TJ,15125552.17992,kg -1dee880f-e138-3a4d-9781-54625f26504d,SESCO,II.5.1,Buenos Aires,AR-B,annual,2010,gas oil combustion consumption by agriculture machines,204.1235112,TJ,CH4,3.9,kg/TJ,796.08169368,kg -1dee880f-e138-3a4d-9781-54625f26504d,SESCO,II.5.1,Buenos Aires,AR-B,annual,2010,gas oil combustion consumption by agriculture machines,204.1235112,TJ,N2O,3.9,kg/TJ,796.08169368,kg -d703468c-4235-31c3-8a6d-ab446408765d,SESCO,II.5.1,Capital Federal,AR-C,annual,2010,gas oil combustion consumption by agriculture machines,6.03204,TJ,CO2,74100.0,kg/TJ,446974.16400000005,kg -538bf297-8d03-3643-b7b0-d02bd03e4a49,SESCO,II.5.1,Capital Federal,AR-C,annual,2010,gas oil combustion consumption by agriculture machines,6.03204,TJ,CH4,3.9,kg/TJ,23.524956,kg -538bf297-8d03-3643-b7b0-d02bd03e4a49,SESCO,II.5.1,Capital Federal,AR-C,annual,2010,gas oil combustion consumption by agriculture machines,6.03204,TJ,N2O,3.9,kg/TJ,23.524956,kg -2c1b42ff-b58d-3674-9b6f-34f984713855,SESCO,II.5.1,Chaco,AR-H,annual,2010,gas oil combustion consumption by agriculture machines,25.533227999999998,TJ,CO2,74100.0,kg/TJ,1892012.1947999997,kg -b332a4a8-568d-3b94-8c8c-894388318b23,SESCO,II.5.1,Chaco,AR-H,annual,2010,gas oil combustion consumption by agriculture machines,25.533227999999998,TJ,CH4,3.9,kg/TJ,99.57958919999999,kg -b332a4a8-568d-3b94-8c8c-894388318b23,SESCO,II.5.1,Chaco,AR-H,annual,2010,gas oil combustion consumption by agriculture machines,25.533227999999998,TJ,N2O,3.9,kg/TJ,99.57958919999999,kg -92a3424e-7310-3b37-8216-46ce449a2cd7,SESCO,II.5.1,Córdoba,AR-X,annual,2010,gas oil combustion consumption by agriculture machines,51.60283799999999,TJ,CO2,74100.0,kg/TJ,3823770.2957999995,kg -12788acf-2cb2-335b-b33f-f48e3d0d4574,SESCO,II.5.1,Córdoba,AR-X,annual,2010,gas oil combustion consumption by agriculture machines,51.60283799999999,TJ,CH4,3.9,kg/TJ,201.25106819999996,kg -12788acf-2cb2-335b-b33f-f48e3d0d4574,SESCO,II.5.1,Córdoba,AR-X,annual,2010,gas oil combustion consumption by agriculture machines,51.60283799999999,TJ,N2O,3.9,kg/TJ,201.25106819999996,kg -7a4f9a66-a5fb-391d-9e13-3a25ff7b5bbc,SESCO,II.5.1,La Pampa,AR-L,annual,2010,gas oil combustion consumption by agriculture machines,18.3142848,TJ,CO2,74100.0,kg/TJ,1357088.5036799998,kg -3159597d-9596-3350-813a-9e78777c526c,SESCO,II.5.1,La Pampa,AR-L,annual,2010,gas oil combustion consumption by agriculture machines,18.3142848,TJ,CH4,3.9,kg/TJ,71.42571072,kg -3159597d-9596-3350-813a-9e78777c526c,SESCO,II.5.1,La Pampa,AR-L,annual,2010,gas oil combustion consumption by agriculture machines,18.3142848,TJ,N2O,3.9,kg/TJ,71.42571072,kg -82ef3e92-522f-39c3-849b-9eb7c3f1efe8,SESCO,II.5.1,Santa Fe,AR-S,annual,2010,gas oil combustion consumption by agriculture machines,375.100782,TJ,CO2,74100.0,kg/TJ,27794967.9462,kg -4fd28983-1257-39cf-b9ca-164a64bed012,SESCO,II.5.1,Santa Fe,AR-S,annual,2010,gas oil combustion consumption by agriculture machines,375.100782,TJ,CH4,3.9,kg/TJ,1462.8930498,kg -4fd28983-1257-39cf-b9ca-164a64bed012,SESCO,II.5.1,Santa Fe,AR-S,annual,2010,gas oil combustion consumption by agriculture machines,375.100782,TJ,N2O,3.9,kg/TJ,1462.8930498,kg -76eb5cec-aec1-3bdb-bff8-f837ae949281,SESCO,II.1.1,Capital Federal,AR-C,annual,2010,jet kerosene combustion consumption by to the public,0.0062905999999999995,TJ,CO2,71500.0,kg/TJ,449.7779,kg -77270457-0704-3472-93c3-7d628307c512,SESCO,II.1.1,Capital Federal,AR-C,annual,2010,jet kerosene combustion consumption by to the public,0.0062905999999999995,TJ,CH4,0.5,kg/TJ,0.0031452999999999997,kg -fa34b6c0-cb28-3017-a4f6-a4dc4eed0d34,SESCO,II.1.1,Capital Federal,AR-C,annual,2010,jet kerosene combustion consumption by to the public,0.0062905999999999995,TJ,N2O,2.0,kg/TJ,0.012581199999999999,kg -c086a665-9be1-370d-960c-1ecfcae69d30,SESCO,II.1.1,Capital Federal,AR-C,annual,2010,gasoline combustion consumption by to the public,0.077968,TJ,CO2,69300.0,kg/TJ,5403.1824,kg -e606d4c6-5fb5-3a56-95d4-90e99b8cdd82,SESCO,II.1.1,Capital Federal,AR-C,annual,2010,gasoline combustion consumption by to the public,0.077968,TJ,CH4,33.0,kg/TJ,2.5729439999999997,kg -be0656f2-b50e-38c4-b89f-8cc14fe8fd92,SESCO,II.1.1,Capital Federal,AR-C,annual,2010,gasoline combustion consumption by to the public,0.077968,TJ,N2O,3.2,kg/TJ,0.24949759999999999,kg -8f8a3643-17b4-3bd5-b21f-0d205336788e,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,gas oil combustion consumption by to the public,14348.79085752,TJ,CO2,74100.0,kg/TJ,1063245402.542232,kg -b10c6f4b-2b67-381b-be47-1fabdc5a815e,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,gas oil combustion consumption by to the public,14348.79085752,TJ,CH4,3.9,kg/TJ,55960.284344328,kg -b10c6f4b-2b67-381b-be47-1fabdc5a815e,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,gas oil combustion consumption by to the public,14348.79085752,TJ,N2O,3.9,kg/TJ,55960.284344328,kg -b857deac-8a86-3e63-ab49-b97fa9519752,SESCO,II.1.1,Capital Federal,AR-C,annual,2010,gas oil combustion consumption by to the public,1724.6397,TJ,CO2,74100.0,kg/TJ,127795801.77,kg -934243b6-ca71-3176-af96-a384e739737d,SESCO,II.1.1,Capital Federal,AR-C,annual,2010,gas oil combustion consumption by to the public,1724.6397,TJ,CH4,3.9,kg/TJ,6726.09483,kg -934243b6-ca71-3176-af96-a384e739737d,SESCO,II.1.1,Capital Federal,AR-C,annual,2010,gas oil combustion consumption by to the public,1724.6397,TJ,N2O,3.9,kg/TJ,6726.09483,kg -ac04dd54-d4c0-3734-9a28-72bc9f1e448f,SESCO,II.1.1,Catamarca,AR-K,annual,2010,gas oil combustion consumption by to the public,391.4400252,TJ,CO2,74100.0,kg/TJ,29005705.867319997,kg -f8067d2a-a006-39fd-8891-618514a29414,SESCO,II.1.1,Catamarca,AR-K,annual,2010,gas oil combustion consumption by to the public,391.4400252,TJ,CH4,3.9,kg/TJ,1526.61609828,kg -f8067d2a-a006-39fd-8891-618514a29414,SESCO,II.1.1,Catamarca,AR-K,annual,2010,gas oil combustion consumption by to the public,391.4400252,TJ,N2O,3.9,kg/TJ,1526.61609828,kg -15f68a04-140d-35c5-94eb-985bb006204b,SESCO,II.1.1,Chaco,AR-H,annual,2010,gas oil combustion consumption by to the public,619.6230684,TJ,CO2,74100.0,kg/TJ,45914069.368439995,kg -f298d1c5-0db9-30c2-9fe8-0c5be36e3535,SESCO,II.1.1,Chaco,AR-H,annual,2010,gas oil combustion consumption by to the public,619.6230684,TJ,CH4,3.9,kg/TJ,2416.5299667599998,kg -f298d1c5-0db9-30c2-9fe8-0c5be36e3535,SESCO,II.1.1,Chaco,AR-H,annual,2010,gas oil combustion consumption by to the public,619.6230684,TJ,N2O,3.9,kg/TJ,2416.5299667599998,kg -7a1def04-2ad8-354a-a044-3e9b5a2dd434,SESCO,II.1.1,Chubut,AR-U,annual,2010,gas oil combustion consumption by to the public,527.8836864,TJ,CO2,74100.0,kg/TJ,39116181.16224,kg -3716c432-86ba-3ac8-a386-b3c274b5918a,SESCO,II.1.1,Chubut,AR-U,annual,2010,gas oil combustion consumption by to the public,527.8836864,TJ,CH4,3.9,kg/TJ,2058.74637696,kg -3716c432-86ba-3ac8-a386-b3c274b5918a,SESCO,II.1.1,Chubut,AR-U,annual,2010,gas oil combustion consumption by to the public,527.8836864,TJ,N2O,3.9,kg/TJ,2058.74637696,kg -a3b20ea0-6cb5-36b3-86ce-c243a634f637,SESCO,II.1.1,Corrientes,AR-W,annual,2010,gas oil combustion consumption by to the public,1291.3373172,TJ,CO2,74100.0,kg/TJ,95688095.20451999,kg -e69f3b22-4780-3965-b199-149720b1e560,SESCO,II.1.1,Corrientes,AR-W,annual,2010,gas oil combustion consumption by to the public,1291.3373172,TJ,CH4,3.9,kg/TJ,5036.215537079999,kg -e69f3b22-4780-3965-b199-149720b1e560,SESCO,II.1.1,Corrientes,AR-W,annual,2010,gas oil combustion consumption by to the public,1291.3373172,TJ,N2O,3.9,kg/TJ,5036.215537079999,kg -6aa15661-b726-32e8-9b07-ae44740440ea,SESCO,II.1.1,Córdoba,AR-X,annual,2010,gas oil combustion consumption by to the public,7432.72924464,TJ,CO2,74100.0,kg/TJ,550765237.0278239,kg -cbbde85c-77cb-3bfd-9bce-2ed938d80f68,SESCO,II.1.1,Córdoba,AR-X,annual,2010,gas oil combustion consumption by to the public,7432.72924464,TJ,CH4,3.9,kg/TJ,28987.644054096,kg -cbbde85c-77cb-3bfd-9bce-2ed938d80f68,SESCO,II.1.1,Córdoba,AR-X,annual,2010,gas oil combustion consumption by to the public,7432.72924464,TJ,N2O,3.9,kg/TJ,28987.644054096,kg -aeb2197a-2e64-34db-9a2d-3106c4368004,SESCO,II.1.1,Entre Rios,AR-E,annual,2010,gas oil combustion consumption by to the public,2661.5524068,TJ,CO2,74100.0,kg/TJ,197221033.34388,kg -317016bb-96ea-322e-8186-00d4d146b103,SESCO,II.1.1,Entre Rios,AR-E,annual,2010,gas oil combustion consumption by to the public,2661.5524068,TJ,CH4,3.9,kg/TJ,10380.05438652,kg -317016bb-96ea-322e-8186-00d4d146b103,SESCO,II.1.1,Entre Rios,AR-E,annual,2010,gas oil combustion consumption by to the public,2661.5524068,TJ,N2O,3.9,kg/TJ,10380.05438652,kg -6703fd54-de4d-3938-ace5-324dcf9849de,SESCO,II.1.1,Formosa,AR-P,annual,2010,gas oil combustion consumption by to the public,442.9861548,TJ,CO2,74100.0,kg/TJ,32825274.07068,kg -ae01f5b2-0279-35d7-b3a5-9d32dab19142,SESCO,II.1.1,Formosa,AR-P,annual,2010,gas oil combustion consumption by to the public,442.9861548,TJ,CH4,3.9,kg/TJ,1727.64600372,kg -ae01f5b2-0279-35d7-b3a5-9d32dab19142,SESCO,II.1.1,Formosa,AR-P,annual,2010,gas oil combustion consumption by to the public,442.9861548,TJ,N2O,3.9,kg/TJ,1727.64600372,kg -edc00294-533f-3e57-947c-7e8ec68f86e0,SESCO,II.1.1,Jujuy,AR-Y,annual,2010,gas oil combustion consumption by to the public,91.64510879999999,TJ,CO2,74100.0,kg/TJ,6790902.56208,kg -d8cfea10-3d2f-33e5-9296-50180fdd3b12,SESCO,II.1.1,Jujuy,AR-Y,annual,2010,gas oil combustion consumption by to the public,91.64510879999999,TJ,CH4,3.9,kg/TJ,357.41592431999993,kg -d8cfea10-3d2f-33e5-9296-50180fdd3b12,SESCO,II.1.1,Jujuy,AR-Y,annual,2010,gas oil combustion consumption by to the public,91.64510879999999,TJ,N2O,3.9,kg/TJ,357.41592431999993,kg -ece7ba1c-97f1-3ce9-bbba-c0e761b49c34,SESCO,II.1.1,La Pampa,AR-L,annual,2010,gas oil combustion consumption by to the public,419.9730192,TJ,CO2,74100.0,kg/TJ,31120000.72272,kg -264b89db-aa42-3fc4-a72f-d9b52cef0032,SESCO,II.1.1,La Pampa,AR-L,annual,2010,gas oil combustion consumption by to the public,419.9730192,TJ,CH4,3.9,kg/TJ,1637.89477488,kg -264b89db-aa42-3fc4-a72f-d9b52cef0032,SESCO,II.1.1,La Pampa,AR-L,annual,2010,gas oil combustion consumption by to the public,419.9730192,TJ,N2O,3.9,kg/TJ,1637.89477488,kg -c2b70944-deda-377f-80a6-d7a638ac2974,SESCO,II.1.1,La Rioja,AR-F,annual,2010,gas oil combustion consumption by to the public,99.6359364,TJ,CO2,74100.0,kg/TJ,7383022.88724,kg -ed6347ca-c2fc-3dd1-a00a-6a43ebef9dbc,SESCO,II.1.1,La Rioja,AR-F,annual,2010,gas oil combustion consumption by to the public,99.6359364,TJ,CH4,3.9,kg/TJ,388.58015196,kg -ed6347ca-c2fc-3dd1-a00a-6a43ebef9dbc,SESCO,II.1.1,La Rioja,AR-F,annual,2010,gas oil combustion consumption by to the public,99.6359364,TJ,N2O,3.9,kg/TJ,388.58015196,kg -53e15f56-9e0d-3f49-be21-b9ce8e0eb805,SESCO,II.1.1,Mendoza,AR-M,annual,2010,gas oil combustion consumption by to the public,826.5252912000001,TJ,CO2,74100.0,kg/TJ,61245524.077920005,kg -dd3014f7-1052-399f-887a-b898eeb547a9,SESCO,II.1.1,Mendoza,AR-M,annual,2010,gas oil combustion consumption by to the public,826.5252912000001,TJ,CH4,3.9,kg/TJ,3223.4486356800003,kg -dd3014f7-1052-399f-887a-b898eeb547a9,SESCO,II.1.1,Mendoza,AR-M,annual,2010,gas oil combustion consumption by to the public,826.5252912000001,TJ,N2O,3.9,kg/TJ,3223.4486356800003,kg -5fb3cc98-86b1-30bd-b108-d9e8f13fb4ef,SESCO,II.1.1,Misiones,AR-N,annual,2010,gas oil combustion consumption by to the public,1162.9505832,TJ,CO2,74100.0,kg/TJ,86174638.21512,kg -adf80ffa-c6b2-3f88-b0e6-598e06a57bd3,SESCO,II.1.1,Misiones,AR-N,annual,2010,gas oil combustion consumption by to the public,1162.9505832,TJ,CH4,3.9,kg/TJ,4535.50727448,kg -adf80ffa-c6b2-3f88-b0e6-598e06a57bd3,SESCO,II.1.1,Misiones,AR-N,annual,2010,gas oil combustion consumption by to the public,1162.9505832,TJ,N2O,3.9,kg/TJ,4535.50727448,kg -7a02342a-de54-3bdd-9966-99fdf7a3e92a,SESCO,II.1.1,Neuquén,AR-Q,annual,2010,gas oil combustion consumption by to the public,219.566256,TJ,CO2,74100.0,kg/TJ,16269859.569600001,kg -f25de1db-c675-3920-935e-6911750dfdcf,SESCO,II.1.1,Neuquén,AR-Q,annual,2010,gas oil combustion consumption by to the public,219.566256,TJ,CH4,3.9,kg/TJ,856.3083984,kg -f25de1db-c675-3920-935e-6911750dfdcf,SESCO,II.1.1,Neuquén,AR-Q,annual,2010,gas oil combustion consumption by to the public,219.566256,TJ,N2O,3.9,kg/TJ,856.3083984,kg -09371202-c957-39de-8053-bc307ad375c5,SESCO,II.1.1,Rio Negro,AR-R,annual,2010,gas oil combustion consumption by to the public,1017.9750167999999,TJ,CO2,74100.0,kg/TJ,75431948.74487999,kg -77292b2a-cb21-35ff-9cf0-ab3bfda24269,SESCO,II.1.1,Rio Negro,AR-R,annual,2010,gas oil combustion consumption by to the public,1017.9750167999999,TJ,CH4,3.9,kg/TJ,3970.1025655199996,kg -77292b2a-cb21-35ff-9cf0-ab3bfda24269,SESCO,II.1.1,Rio Negro,AR-R,annual,2010,gas oil combustion consumption by to the public,1017.9750167999999,TJ,N2O,3.9,kg/TJ,3970.1025655199996,kg -9f086e36-2e39-350d-ab72-d97b1efb85ad,SESCO,II.1.1,Salta,AR-A,annual,2010,gas oil combustion consumption by to the public,141.98772,TJ,CO2,74100.0,kg/TJ,10521290.052,kg -9de9c5f0-5782-3b92-9a4e-30a6c26f74e1,SESCO,II.1.1,Salta,AR-A,annual,2010,gas oil combustion consumption by to the public,141.98772,TJ,CH4,3.9,kg/TJ,553.752108,kg -9de9c5f0-5782-3b92-9a4e-30a6c26f74e1,SESCO,II.1.1,Salta,AR-A,annual,2010,gas oil combustion consumption by to the public,141.98772,TJ,N2O,3.9,kg/TJ,553.752108,kg -77284aa3-85bc-3839-b82b-894b2dd21b52,SESCO,II.1.1,San Juan,AR-J,annual,2010,gas oil combustion consumption by to the public,580.6972668,TJ,CO2,74100.0,kg/TJ,43029667.46988,kg -5ca8ca56-9b03-3cdf-b85c-8325bd7302fc,SESCO,II.1.1,San Juan,AR-J,annual,2010,gas oil combustion consumption by to the public,580.6972668,TJ,CH4,3.9,kg/TJ,2264.7193405199996,kg -5ca8ca56-9b03-3cdf-b85c-8325bd7302fc,SESCO,II.1.1,San Juan,AR-J,annual,2010,gas oil combustion consumption by to the public,580.6972668,TJ,N2O,3.9,kg/TJ,2264.7193405199996,kg -02c13a8c-5892-3254-b318-06dbdb6c96f1,SESCO,II.1.1,San Luis,AR-D,annual,2010,gas oil combustion consumption by to the public,820.0099656,TJ,CO2,74100.0,kg/TJ,60762738.450959995,kg -8efdb788-7e49-3074-a225-7ceb6dc7b047,SESCO,II.1.1,San Luis,AR-D,annual,2010,gas oil combustion consumption by to the public,820.0099656,TJ,CH4,3.9,kg/TJ,3198.0388658399997,kg -8efdb788-7e49-3074-a225-7ceb6dc7b047,SESCO,II.1.1,San Luis,AR-D,annual,2010,gas oil combustion consumption by to the public,820.0099656,TJ,N2O,3.9,kg/TJ,3198.0388658399997,kg -3d672b1a-ebea-385b-af99-ceebfb164c10,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2010,gas oil combustion consumption by to the public,425.14323599999994,TJ,CO2,74100.0,kg/TJ,31503113.787599996,kg -31177e65-2694-3345-8753-f4dc4df2f3c7,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2010,gas oil combustion consumption by to the public,425.14323599999994,TJ,CH4,3.9,kg/TJ,1658.0586203999997,kg -31177e65-2694-3345-8753-f4dc4df2f3c7,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2010,gas oil combustion consumption by to the public,425.14323599999994,TJ,N2O,3.9,kg/TJ,1658.0586203999997,kg -10d919d8-0fce-30b0-ae6f-75a7d6dc0144,SESCO,II.1.1,Santa Fe,AR-S,annual,2010,gas oil combustion consumption by to the public,4994.36015064,TJ,CO2,74100.0,kg/TJ,370082087.162424,kg -a7f27696-85f3-3d35-b54a-fb5e2b7ad02f,SESCO,II.1.1,Santa Fe,AR-S,annual,2010,gas oil combustion consumption by to the public,4994.36015064,TJ,CH4,3.9,kg/TJ,19478.004587496,kg -a7f27696-85f3-3d35-b54a-fb5e2b7ad02f,SESCO,II.1.1,Santa Fe,AR-S,annual,2010,gas oil combustion consumption by to the public,4994.36015064,TJ,N2O,3.9,kg/TJ,19478.004587496,kg -5cb4585e-dab3-3614-a276-e108feb6cd99,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2010,gas oil combustion consumption by to the public,462.41040719999995,TJ,CO2,74100.0,kg/TJ,34264611.17352,kg -b1438e88-b8c6-35aa-a27f-a66d8f1610a7,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2010,gas oil combustion consumption by to the public,462.41040719999995,TJ,CH4,3.9,kg/TJ,1803.4005880799998,kg -b1438e88-b8c6-35aa-a27f-a66d8f1610a7,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2010,gas oil combustion consumption by to the public,462.41040719999995,TJ,N2O,3.9,kg/TJ,1803.4005880799998,kg -69ce6ef8-867e-3328-9009-da6f33ad879d,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2010,gas oil combustion consumption by to the public,131.38722239999998,TJ,CO2,74100.0,kg/TJ,9735793.179839998,kg -26a45aec-8d1a-39a4-ba7f-c5403d2f5225,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2010,gas oil combustion consumption by to the public,131.38722239999998,TJ,CH4,3.9,kg/TJ,512.41016736,kg -26a45aec-8d1a-39a4-ba7f-c5403d2f5225,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2010,gas oil combustion consumption by to the public,131.38722239999998,TJ,N2O,3.9,kg/TJ,512.41016736,kg -3a7cc347-6ab5-3b8c-86b3-295863284a94,SESCO,II.1.1,Tucuman,AR-T,annual,2010,gas oil combustion consumption by to the public,131.272722,TJ,CO2,74100.0,kg/TJ,9727308.700199999,kg -b77ba828-9577-376e-8545-a829a1042dd5,SESCO,II.1.1,Tucuman,AR-T,annual,2010,gas oil combustion consumption by to the public,131.272722,TJ,CH4,3.9,kg/TJ,511.96361579999996,kg -b77ba828-9577-376e-8545-a829a1042dd5,SESCO,II.1.1,Tucuman,AR-T,annual,2010,gas oil combustion consumption by to the public,131.272722,TJ,N2O,3.9,kg/TJ,511.96361579999996,kg -481c0434-5ed8-3d4d-9a72-61e63d4b06ac,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,gas oil combustion consumption by to the public,873.8450196,TJ,CO2,74100.0,kg/TJ,64751915.95236,kg -c1ee4ebb-c6d3-3d4c-91ca-6545c5edba13,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,gas oil combustion consumption by to the public,873.8450196,TJ,CH4,3.9,kg/TJ,3407.99557644,kg -c1ee4ebb-c6d3-3d4c-91ca-6545c5edba13,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,gas oil combustion consumption by to the public,873.8450196,TJ,N2O,3.9,kg/TJ,3407.99557644,kg -cb703512-8bcd-35da-b50e-cf4b92b36193,SESCO,II.1.1,Capital Federal,AR-C,annual,2010,gas oil combustion consumption by to the public,119.36222423999999,TJ,CO2,74100.0,kg/TJ,8844740.816184,kg -571f2e5b-6e1c-3a95-8e81-e29e81710708,SESCO,II.1.1,Capital Federal,AR-C,annual,2010,gas oil combustion consumption by to the public,119.36222423999999,TJ,CH4,3.9,kg/TJ,465.51267453599996,kg -571f2e5b-6e1c-3a95-8e81-e29e81710708,SESCO,II.1.1,Capital Federal,AR-C,annual,2010,gas oil combustion consumption by to the public,119.36222423999999,TJ,N2O,3.9,kg/TJ,465.51267453599996,kg -a0611401-36a8-3cbb-adea-7c690214d3ca,SESCO,II.1.1,Catamarca,AR-K,annual,2010,gas oil combustion consumption by to the public,31.1903424,TJ,CO2,74100.0,kg/TJ,2311204.3718399997,kg -dcc1de16-91e3-37f7-85a6-55489c68545d,SESCO,II.1.1,Catamarca,AR-K,annual,2010,gas oil combustion consumption by to the public,31.1903424,TJ,CH4,3.9,kg/TJ,121.64233535999999,kg -dcc1de16-91e3-37f7-85a6-55489c68545d,SESCO,II.1.1,Catamarca,AR-K,annual,2010,gas oil combustion consumption by to the public,31.1903424,TJ,N2O,3.9,kg/TJ,121.64233535999999,kg -5e41260c-a9ce-3036-948c-1c63cbf7bf78,SESCO,II.1.1,Chaco,AR-H,annual,2010,gas oil combustion consumption by to the public,54.4602912,TJ,CO2,74100.0,kg/TJ,4035507.57792,kg -d7b6ad42-6baf-3e00-a73c-912e30a0ff6b,SESCO,II.1.1,Chaco,AR-H,annual,2010,gas oil combustion consumption by to the public,54.4602912,TJ,CH4,3.9,kg/TJ,212.39513568,kg -d7b6ad42-6baf-3e00-a73c-912e30a0ff6b,SESCO,II.1.1,Chaco,AR-H,annual,2010,gas oil combustion consumption by to the public,54.4602912,TJ,N2O,3.9,kg/TJ,212.39513568,kg -dd0b761f-4da3-3727-91cc-aa1160f5d2b4,SESCO,II.1.1,Chubut,AR-U,annual,2010,gas oil combustion consumption by to the public,30.259529999999998,TJ,CO2,74100.0,kg/TJ,2242231.173,kg -7311b52e-46e0-3037-985d-8c2685a9b0a6,SESCO,II.1.1,Chubut,AR-U,annual,2010,gas oil combustion consumption by to the public,30.259529999999998,TJ,CH4,3.9,kg/TJ,118.01216699999999,kg -7311b52e-46e0-3037-985d-8c2685a9b0a6,SESCO,II.1.1,Chubut,AR-U,annual,2010,gas oil combustion consumption by to the public,30.259529999999998,TJ,N2O,3.9,kg/TJ,118.01216699999999,kg -6b0f1d65-3431-3c03-ba87-5b34d2e09ba4,SESCO,II.1.1,Corrientes,AR-W,annual,2010,gas oil combustion consumption by to the public,55.0970868,TJ,CO2,74100.0,kg/TJ,4082694.13188,kg -05c5174a-4d4d-370a-8df4-44fe78ae6abc,SESCO,II.1.1,Corrientes,AR-W,annual,2010,gas oil combustion consumption by to the public,55.0970868,TJ,CH4,3.9,kg/TJ,214.87863851999998,kg -05c5174a-4d4d-370a-8df4-44fe78ae6abc,SESCO,II.1.1,Corrientes,AR-W,annual,2010,gas oil combustion consumption by to the public,55.0970868,TJ,N2O,3.9,kg/TJ,214.87863851999998,kg -bef64de6-f493-388a-8dc6-508386c57060,SESCO,II.1.1,Córdoba,AR-X,annual,2010,gas oil combustion consumption by to the public,526.8697618799999,TJ,CO2,74100.0,kg/TJ,39041049.355307996,kg -8b8e5278-0777-3e23-bb57-6381bbecffba,SESCO,II.1.1,Córdoba,AR-X,annual,2010,gas oil combustion consumption by to the public,526.8697618799999,TJ,CH4,3.9,kg/TJ,2054.7920713319995,kg -8b8e5278-0777-3e23-bb57-6381bbecffba,SESCO,II.1.1,Córdoba,AR-X,annual,2010,gas oil combustion consumption by to the public,526.8697618799999,TJ,N2O,3.9,kg/TJ,2054.7920713319995,kg -ccf24f0f-faa6-3cd8-a8cd-db7c61c52f1c,SESCO,II.1.1,Entre Rios,AR-E,annual,2010,gas oil combustion consumption by to the public,187.9460856,TJ,CO2,74100.0,kg/TJ,13926804.94296,kg -ed350f76-bf3e-3074-ae4e-90af838331a5,SESCO,II.1.1,Entre Rios,AR-E,annual,2010,gas oil combustion consumption by to the public,187.9460856,TJ,CH4,3.9,kg/TJ,732.98973384,kg -ed350f76-bf3e-3074-ae4e-90af838331a5,SESCO,II.1.1,Entre Rios,AR-E,annual,2010,gas oil combustion consumption by to the public,187.9460856,TJ,N2O,3.9,kg/TJ,732.98973384,kg -e2d26ffc-a0ba-36df-8afa-459a6274bb9f,SESCO,II.1.1,Formosa,AR-P,annual,2010,gas oil combustion consumption by to the public,49.5931212,TJ,CO2,74100.0,kg/TJ,3674850.28092,kg -48fbef3e-ff9c-39c9-941a-3fe9c9b5226a,SESCO,II.1.1,Formosa,AR-P,annual,2010,gas oil combustion consumption by to the public,49.5931212,TJ,CH4,3.9,kg/TJ,193.41317268,kg -48fbef3e-ff9c-39c9-941a-3fe9c9b5226a,SESCO,II.1.1,Formosa,AR-P,annual,2010,gas oil combustion consumption by to the public,49.5931212,TJ,N2O,3.9,kg/TJ,193.41317268,kg -0e203fa3-2bf6-3af9-bfa8-c861bcaf5c50,SESCO,II.1.1,Jujuy,AR-Y,annual,2010,gas oil combustion consumption by to the public,2.4536316,TJ,CO2,74100.0,kg/TJ,181814.10156,kg -8dad0ac4-ef2e-3071-80ca-7cc7b6052d58,SESCO,II.1.1,Jujuy,AR-Y,annual,2010,gas oil combustion consumption by to the public,2.4536316,TJ,CH4,3.9,kg/TJ,9.56916324,kg -8dad0ac4-ef2e-3071-80ca-7cc7b6052d58,SESCO,II.1.1,Jujuy,AR-Y,annual,2010,gas oil combustion consumption by to the public,2.4536316,TJ,N2O,3.9,kg/TJ,9.56916324,kg -7075036e-239c-3551-891b-5a81dbf218e1,SESCO,II.1.1,La Pampa,AR-L,annual,2010,gas oil combustion consumption by to the public,32.762646,TJ,CO2,74100.0,kg/TJ,2427712.0686,kg -2d516138-44ee-3c02-9333-2566328326c0,SESCO,II.1.1,La Pampa,AR-L,annual,2010,gas oil combustion consumption by to the public,32.762646,TJ,CH4,3.9,kg/TJ,127.77431939999998,kg -2d516138-44ee-3c02-9333-2566328326c0,SESCO,II.1.1,La Pampa,AR-L,annual,2010,gas oil combustion consumption by to the public,32.762646,TJ,N2O,3.9,kg/TJ,127.77431939999998,kg -80b68e09-e4e8-3ffe-aa8d-65eee1161764,SESCO,II.1.1,La Rioja,AR-F,annual,2010,gas oil combustion consumption by to the public,8.0002188,TJ,CO2,74100.0,kg/TJ,592816.21308,kg -3baf5db9-57b3-36f9-990e-923939fd3f99,SESCO,II.1.1,La Rioja,AR-F,annual,2010,gas oil combustion consumption by to the public,8.0002188,TJ,CH4,3.9,kg/TJ,31.200853320000004,kg -3baf5db9-57b3-36f9-990e-923939fd3f99,SESCO,II.1.1,La Rioja,AR-F,annual,2010,gas oil combustion consumption by to the public,8.0002188,TJ,N2O,3.9,kg/TJ,31.200853320000004,kg -b82e719f-2a40-3b9f-ba5c-ad39fd8f8292,SESCO,II.1.1,Mendoza,AR-M,annual,2010,gas oil combustion consumption by to the public,56.027538,TJ,CO2,74100.0,kg/TJ,4151640.5658,kg -3f06f4fb-1c88-3746-802f-1532ae7a8901,SESCO,II.1.1,Mendoza,AR-M,annual,2010,gas oil combustion consumption by to the public,56.027538,TJ,CH4,3.9,kg/TJ,218.50739819999998,kg -3f06f4fb-1c88-3746-802f-1532ae7a8901,SESCO,II.1.1,Mendoza,AR-M,annual,2010,gas oil combustion consumption by to the public,56.027538,TJ,N2O,3.9,kg/TJ,218.50739819999998,kg -ad0372cf-0bfa-3e62-bd46-151b21d79cab,SESCO,II.1.1,Misiones,AR-N,annual,2010,gas oil combustion consumption by to the public,78.85176600000001,TJ,CO2,74100.0,kg/TJ,5842915.860600001,kg -55b850a6-cd8f-32fa-ba26-375f6764178f,SESCO,II.1.1,Misiones,AR-N,annual,2010,gas oil combustion consumption by to the public,78.85176600000001,TJ,CH4,3.9,kg/TJ,307.5218874,kg -55b850a6-cd8f-32fa-ba26-375f6764178f,SESCO,II.1.1,Misiones,AR-N,annual,2010,gas oil combustion consumption by to the public,78.85176600000001,TJ,N2O,3.9,kg/TJ,307.5218874,kg -619940e5-408f-3de3-9d1d-5c869615b187,SESCO,II.1.1,Neuquén,AR-Q,annual,2010,gas oil combustion consumption by to the public,26.037824399999998,TJ,CO2,74100.0,kg/TJ,1929402.7880399998,kg -9cc41a9a-9795-366d-b724-d3bfaa995507,SESCO,II.1.1,Neuquén,AR-Q,annual,2010,gas oil combustion consumption by to the public,26.037824399999998,TJ,CH4,3.9,kg/TJ,101.54751515999999,kg -9cc41a9a-9795-366d-b724-d3bfaa995507,SESCO,II.1.1,Neuquén,AR-Q,annual,2010,gas oil combustion consumption by to the public,26.037824399999998,TJ,N2O,3.9,kg/TJ,101.54751515999999,kg -4bf00b9f-51e5-33c2-b4e6-f9497968d49c,SESCO,II.1.1,Rio Negro,AR-R,annual,2010,gas oil combustion consumption by to the public,54.71999399999999,TJ,CO2,74100.0,kg/TJ,4054751.5553999995,kg -a56336c9-4347-38d6-82c4-ad1741686872,SESCO,II.1.1,Rio Negro,AR-R,annual,2010,gas oil combustion consumption by to the public,54.71999399999999,TJ,CH4,3.9,kg/TJ,213.40797659999996,kg -a56336c9-4347-38d6-82c4-ad1741686872,SESCO,II.1.1,Rio Negro,AR-R,annual,2010,gas oil combustion consumption by to the public,54.71999399999999,TJ,N2O,3.9,kg/TJ,213.40797659999996,kg -c246c531-257b-3ad2-8d89-bf26f5f2c9d0,SESCO,II.1.1,Salta,AR-A,annual,2010,gas oil combustion consumption by to the public,5.2262028,TJ,CO2,74100.0,kg/TJ,387261.62748,kg -e2570d59-fd36-391e-a271-43afe51996cd,SESCO,II.1.1,Salta,AR-A,annual,2010,gas oil combustion consumption by to the public,5.2262028,TJ,CH4,3.9,kg/TJ,20.38219092,kg -e2570d59-fd36-391e-a271-43afe51996cd,SESCO,II.1.1,Salta,AR-A,annual,2010,gas oil combustion consumption by to the public,5.2262028,TJ,N2O,3.9,kg/TJ,20.38219092,kg -f8e482c4-1553-3a8d-a716-138607211035,SESCO,II.1.1,San Juan,AR-J,annual,2010,gas oil combustion consumption by to the public,28.92309,TJ,CO2,74100.0,kg/TJ,2143200.969,kg -83583fa4-1108-398e-b838-ed468d87ea9a,SESCO,II.1.1,San Juan,AR-J,annual,2010,gas oil combustion consumption by to the public,28.92309,TJ,CH4,3.9,kg/TJ,112.800051,kg -83583fa4-1108-398e-b838-ed468d87ea9a,SESCO,II.1.1,San Juan,AR-J,annual,2010,gas oil combustion consumption by to the public,28.92309,TJ,N2O,3.9,kg/TJ,112.800051,kg -c21751f5-2f0a-369c-b34d-f44ba5796910,SESCO,II.1.1,San Luis,AR-D,annual,2010,gas oil combustion consumption by to the public,52.484527199999995,TJ,CO2,74100.0,kg/TJ,3889103.4655199996,kg -35db7b48-013c-3eb6-aeee-b721e53367cd,SESCO,II.1.1,San Luis,AR-D,annual,2010,gas oil combustion consumption by to the public,52.484527199999995,TJ,CH4,3.9,kg/TJ,204.68965607999996,kg -35db7b48-013c-3eb6-aeee-b721e53367cd,SESCO,II.1.1,San Luis,AR-D,annual,2010,gas oil combustion consumption by to the public,52.484527199999995,TJ,N2O,3.9,kg/TJ,204.68965607999996,kg -563dcfc9-3a41-38d9-a29d-e329f126eb92,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2010,gas oil combustion consumption by to the public,17.2277952,TJ,CO2,74100.0,kg/TJ,1276579.62432,kg -fe5a177a-6a2c-3f8f-b0bc-934985c3ae5f,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2010,gas oil combustion consumption by to the public,17.2277952,TJ,CH4,3.9,kg/TJ,67.18840128,kg -fe5a177a-6a2c-3f8f-b0bc-934985c3ae5f,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2010,gas oil combustion consumption by to the public,17.2277952,TJ,N2O,3.9,kg/TJ,67.18840128,kg -25106b1d-3b63-388c-b7b4-6ba47f155aff,SESCO,II.1.1,Santa Fe,AR-S,annual,2010,gas oil combustion consumption by to the public,307.06962888,TJ,CO2,74100.0,kg/TJ,22753859.500008,kg -25166700-5d81-3b73-b2ac-5020f886e93f,SESCO,II.1.1,Santa Fe,AR-S,annual,2010,gas oil combustion consumption by to the public,307.06962888,TJ,CH4,3.9,kg/TJ,1197.5715526319998,kg -25166700-5d81-3b73-b2ac-5020f886e93f,SESCO,II.1.1,Santa Fe,AR-S,annual,2010,gas oil combustion consumption by to the public,307.06962888,TJ,N2O,3.9,kg/TJ,1197.5715526319998,kg -daa6a90a-a9b2-3c42-adff-5c27a91ffa71,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2010,gas oil combustion consumption by to the public,24.9361644,TJ,CO2,74100.0,kg/TJ,1847769.78204,kg -ae2f36fb-a6c9-3cfd-abf1-e043080c2426,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2010,gas oil combustion consumption by to the public,24.9361644,TJ,CH4,3.9,kg/TJ,97.25104116,kg -ae2f36fb-a6c9-3cfd-abf1-e043080c2426,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2010,gas oil combustion consumption by to the public,24.9361644,TJ,N2O,3.9,kg/TJ,97.25104116,kg -6dbacce7-09ff-3887-909d-37e77cd2a062,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2010,gas oil combustion consumption by to the public,15.300432,TJ,CO2,74100.0,kg/TJ,1133762.0112,kg -edf9dd84-e790-3461-ae55-0a6189577c56,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2010,gas oil combustion consumption by to the public,15.300432,TJ,CH4,3.9,kg/TJ,59.6716848,kg -edf9dd84-e790-3461-ae55-0a6189577c56,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2010,gas oil combustion consumption by to the public,15.300432,TJ,N2O,3.9,kg/TJ,59.6716848,kg -e9110e68-1e88-3dda-bcf6-190251451cd0,SESCO,II.1.1,Tucuman,AR-T,annual,2010,gas oil combustion consumption by to the public,6.5229108,TJ,CO2,74100.0,kg/TJ,483347.69028,kg -84a973f6-afd4-3b44-a7f6-9453a2b893c6,SESCO,II.1.1,Tucuman,AR-T,annual,2010,gas oil combustion consumption by to the public,6.5229108,TJ,CH4,3.9,kg/TJ,25.43935212,kg -84a973f6-afd4-3b44-a7f6-9453a2b893c6,SESCO,II.1.1,Tucuman,AR-T,annual,2010,gas oil combustion consumption by to the public,6.5229108,TJ,N2O,3.9,kg/TJ,25.43935212,kg -6fb26f69-eb72-30e8-9fa7-66364b6d57f7,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,jet kerosene combustion consumption by to the public,41.05748808,TJ,CO2,71500.0,kg/TJ,2935610.39772,kg -1d797fb6-15da-3913-98ab-f407200a1fce,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,jet kerosene combustion consumption by to the public,41.05748808,TJ,CH4,0.5,kg/TJ,20.52874404,kg -59249f7f-b487-3fc7-8a54-08069d145213,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,jet kerosene combustion consumption by to the public,41.05748808,TJ,N2O,2.0,kg/TJ,82.11497616,kg -cefb8d1c-a78e-3639-a4f2-ece4e88fa781,SESCO,II.1.1,Córdoba,AR-X,annual,2010,jet kerosene combustion consumption by to the public,22.368430009999994,TJ,CO2,71500.0,kg/TJ,1599342.7457149995,kg -1447b56b-ecae-3bfa-be7d-2a1c97ddd365,SESCO,II.1.1,Córdoba,AR-X,annual,2010,jet kerosene combustion consumption by to the public,22.368430009999994,TJ,CH4,0.5,kg/TJ,11.184215004999997,kg -b5b4a7d8-d6cf-3a33-aca1-c86c35851ed6,SESCO,II.1.1,Córdoba,AR-X,annual,2010,jet kerosene combustion consumption by to the public,22.368430009999994,TJ,N2O,2.0,kg/TJ,44.73686001999999,kg -0936ec29-03ee-3ef8-ba74-db3d446880fc,SESCO,II.1.1,Entre Rios,AR-E,annual,2010,jet kerosene combustion consumption by to the public,4.810736349999999,TJ,CO2,71500.0,kg/TJ,343967.64902499993,kg -9643947e-1f2a-3311-93e6-2189b5499db8,SESCO,II.1.1,Entre Rios,AR-E,annual,2010,jet kerosene combustion consumption by to the public,4.810736349999999,TJ,CH4,0.5,kg/TJ,2.4053681749999996,kg -d41bc0f7-5f3d-331e-8c45-4435723bf707,SESCO,II.1.1,Entre Rios,AR-E,annual,2010,jet kerosene combustion consumption by to the public,4.810736349999999,TJ,N2O,2.0,kg/TJ,9.621472699999998,kg -db19db5a-c9bc-393c-933c-eb7bd01ceefe,SESCO,II.1.1,La Pampa,AR-L,annual,2010,jet kerosene combustion consumption by to the public,0.15663594,TJ,CO2,71500.0,kg/TJ,11199.46971,kg -0f022fde-384b-31ad-8ff7-334c3244062e,SESCO,II.1.1,La Pampa,AR-L,annual,2010,jet kerosene combustion consumption by to the public,0.15663594,TJ,CH4,0.5,kg/TJ,0.07831797,kg -dc686097-fb24-36bb-94f2-12d58b344363,SESCO,II.1.1,La Pampa,AR-L,annual,2010,jet kerosene combustion consumption by to the public,0.15663594,TJ,N2O,2.0,kg/TJ,0.31327188,kg -d836f567-b623-3c7f-aaf7-9368c0b1b3c0,SESCO,II.1.1,Mendoza,AR-M,annual,2010,jet kerosene combustion consumption by to the public,3.0921444299999994,TJ,CO2,71500.0,kg/TJ,221088.32674499997,kg -be7e14ce-d2a7-37ee-ad96-ee5395d23cdc,SESCO,II.1.1,Mendoza,AR-M,annual,2010,jet kerosene combustion consumption by to the public,3.0921444299999994,TJ,CH4,0.5,kg/TJ,1.5460722149999997,kg -3dbff8a5-84e6-3701-bbbb-f38ebfa7a857,SESCO,II.1.1,Mendoza,AR-M,annual,2010,jet kerosene combustion consumption by to the public,3.0921444299999994,TJ,N2O,2.0,kg/TJ,6.184288859999999,kg -582cb3b3-94db-31c8-b7fd-fc7737a71cbd,SESCO,II.1.1,Misiones,AR-N,annual,2010,jet kerosene combustion consumption by to the public,0.7510976399999999,TJ,CO2,71500.0,kg/TJ,53703.48125999999,kg -1f24dfdf-defd-3ec6-8fb2-6e2dcb483015,SESCO,II.1.1,Misiones,AR-N,annual,2010,jet kerosene combustion consumption by to the public,0.7510976399999999,TJ,CH4,0.5,kg/TJ,0.37554881999999995,kg -950f8fae-bea8-3680-9c82-67461450328c,SESCO,II.1.1,Misiones,AR-N,annual,2010,jet kerosene combustion consumption by to the public,0.7510976399999999,TJ,N2O,2.0,kg/TJ,1.5021952799999998,kg -d40b312c-da46-3c44-aa9d-748ac1e5331f,SESCO,II.1.1,San Luis,AR-D,annual,2010,jet kerosene combustion consumption by to the public,0.28150434999999996,TJ,CO2,71500.0,kg/TJ,20127.561024999995,kg -765407bf-3779-3cfd-b64d-baacc623699b,SESCO,II.1.1,San Luis,AR-D,annual,2010,jet kerosene combustion consumption by to the public,0.28150434999999996,TJ,CH4,0.5,kg/TJ,0.14075217499999998,kg -a1e5f6b8-f549-3890-a56c-353cfcdacbae,SESCO,II.1.1,San Luis,AR-D,annual,2010,jet kerosene combustion consumption by to the public,0.28150434999999996,TJ,N2O,2.0,kg/TJ,0.5630086999999999,kg -3d7364e0-e843-3720-848b-4dbc4cfa15de,SESCO,II.1.1,Santa Fe,AR-S,annual,2010,jet kerosene combustion consumption by to the public,15.32799049,TJ,CO2,71500.0,kg/TJ,1095951.3200349999,kg -ee0183fd-af78-3d07-ab62-aa2b02d45770,SESCO,II.1.1,Santa Fe,AR-S,annual,2010,jet kerosene combustion consumption by to the public,15.32799049,TJ,CH4,0.5,kg/TJ,7.663995245,kg -9305eac6-e45a-39e0-9bf4-baba12a95c79,SESCO,II.1.1,Santa Fe,AR-S,annual,2010,jet kerosene combustion consumption by to the public,15.32799049,TJ,N2O,2.0,kg/TJ,30.65598098,kg -378c40bf-b65a-357c-b6a5-021b763c708a,SESCO,I.3.1,Buenos Aires,AR-B,annual,2010,gasoline combustion consumption by petrochemical industries,2.660215,TJ,CO2,69300.0,kg/TJ,184352.8995,kg -c85f6d99-6c20-3de0-a42b-44a8f11f74b9,SESCO,I.3.1,Buenos Aires,AR-B,annual,2010,gasoline combustion consumption by petrochemical industries,2.660215,TJ,CH4,33.0,kg/TJ,87.787095,kg -8a4de54c-5f6a-3fac-bc49-2216bb4db7ba,SESCO,I.3.1,Buenos Aires,AR-B,annual,2010,gasoline combustion consumption by petrochemical industries,2.660215,TJ,N2O,3.2,kg/TJ,8.512688,kg -b6a7f5fa-a802-30b5-9d43-2d1f93c47eaf,SESCO,I.3.1,Buenos Aires,AR-B,annual,2010,jet kerosene combustion consumption by petrochemical industries,6.291229059999999,TJ,CO2,71500.0,kg/TJ,449822.87778999994,kg -a6bd50ec-ad41-3563-8d50-00e7c3e34288,SESCO,I.3.1,Buenos Aires,AR-B,annual,2010,jet kerosene combustion consumption by petrochemical industries,6.291229059999999,TJ,CH4,0.5,kg/TJ,3.1456145299999996,kg -a60a4232-2b2b-3785-ad41-bb9b611b6c26,SESCO,I.3.1,Buenos Aires,AR-B,annual,2010,jet kerosene combustion consumption by petrochemical industries,6.291229059999999,TJ,N2O,2.0,kg/TJ,12.582458119999998,kg -75e68619-2560-3f48-91e3-3597d691e521,SESCO,II.2.1,Capital Federal,AR-C,annual,2010,gas oil combustion consumption by railway transport,115.95170159999999,TJ,CO2,74100.0,kg/TJ,8592021.08856,kg -dbe39aa9-daad-3100-aec0-ec493782b805,SESCO,II.2.1,Capital Federal,AR-C,annual,2010,gas oil combustion consumption by railway transport,115.95170159999999,TJ,CH4,3.9,kg/TJ,452.21163623999996,kg -dbe39aa9-daad-3100-aec0-ec493782b805,SESCO,II.2.1,Capital Federal,AR-C,annual,2010,gas oil combustion consumption by railway transport,115.95170159999999,TJ,N2O,3.9,kg/TJ,452.21163623999996,kg -4f3b4bfc-dfd3-32b3-80fa-bf608bd58a49,SESCO,II.2.1,Mendoza,AR-M,annual,2010,gas oil combustion consumption by railway transport,17.9530848,TJ,CO2,74100.0,kg/TJ,1330323.58368,kg -d1c3b8aa-7287-3f90-a19c-9f0344105910,SESCO,II.2.1,Mendoza,AR-M,annual,2010,gas oil combustion consumption by railway transport,17.9530848,TJ,CH4,3.9,kg/TJ,70.01703072,kg -d1c3b8aa-7287-3f90-a19c-9f0344105910,SESCO,II.2.1,Mendoza,AR-M,annual,2010,gas oil combustion consumption by railway transport,17.9530848,TJ,N2O,3.9,kg/TJ,70.01703072,kg -a1eecf3c-4287-3369-9691-a16b0a60d421,SESCO,II.2.1,Tucuman,AR-T,annual,2010,gas oil combustion consumption by railway transport,0.3048528,TJ,CO2,74100.0,kg/TJ,22589.59248,kg -aa88f922-8577-369a-95fb-0c5ca6d06690,SESCO,II.2.1,Tucuman,AR-T,annual,2010,gas oil combustion consumption by railway transport,0.3048528,TJ,CH4,3.9,kg/TJ,1.18892592,kg -aa88f922-8577-369a-95fb-0c5ca6d06690,SESCO,II.2.1,Tucuman,AR-T,annual,2010,gas oil combustion consumption by railway transport,0.3048528,TJ,N2O,3.9,kg/TJ,1.18892592,kg -6027e3da-b9be-3adf-8f2f-2c5e3a73b560,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,gas oil combustion consumption by freight transport,1540.98727104,TJ,CO2,74100.0,kg/TJ,114187156.784064,kg -00cf7205-92da-3ce3-903d-11aca2a1d664,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,gas oil combustion consumption by freight transport,1540.98727104,TJ,CH4,3.9,kg/TJ,6009.850357056,kg -00cf7205-92da-3ce3-903d-11aca2a1d664,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,gas oil combustion consumption by freight transport,1540.98727104,TJ,N2O,3.9,kg/TJ,6009.850357056,kg -50cc17c9-44fe-3327-a2e9-9a5669d9d377,SESCO,II.1.1,Capital Federal,AR-C,annual,2010,gas oil combustion consumption by freight transport,1331.66435808,TJ,CO2,74100.0,kg/TJ,98676328.93372801,kg -6392611b-e4a2-3a0b-a72a-fb7e59fb474c,SESCO,II.1.1,Capital Federal,AR-C,annual,2010,gas oil combustion consumption by freight transport,1331.66435808,TJ,CH4,3.9,kg/TJ,5193.4909965120005,kg -6392611b-e4a2-3a0b-a72a-fb7e59fb474c,SESCO,II.1.1,Capital Federal,AR-C,annual,2010,gas oil combustion consumption by freight transport,1331.66435808,TJ,N2O,3.9,kg/TJ,5193.4909965120005,kg -96fa843c-2f92-3fde-9810-216364b021ea,SESCO,II.1.1,Chaco,AR-H,annual,2010,gas oil combustion consumption by freight transport,55.8743892,TJ,CO2,74100.0,kg/TJ,4140292.2397200004,kg -50dba2ae-8ce2-315a-9813-4b2a77ed72a6,SESCO,II.1.1,Chaco,AR-H,annual,2010,gas oil combustion consumption by freight transport,55.8743892,TJ,CH4,3.9,kg/TJ,217.91011788,kg -50dba2ae-8ce2-315a-9813-4b2a77ed72a6,SESCO,II.1.1,Chaco,AR-H,annual,2010,gas oil combustion consumption by freight transport,55.8743892,TJ,N2O,3.9,kg/TJ,217.91011788,kg -268aa20b-e31f-3404-ba53-4962da55fb05,SESCO,II.1.1,Chubut,AR-U,annual,2010,gas oil combustion consumption by freight transport,3.5787695999999998,TJ,CO2,74100.0,kg/TJ,265186.82736,kg -a0d51934-1920-3195-836c-834e4aa07025,SESCO,II.1.1,Chubut,AR-U,annual,2010,gas oil combustion consumption by freight transport,3.5787695999999998,TJ,CH4,3.9,kg/TJ,13.957201439999999,kg -a0d51934-1920-3195-836c-834e4aa07025,SESCO,II.1.1,Chubut,AR-U,annual,2010,gas oil combustion consumption by freight transport,3.5787695999999998,TJ,N2O,3.9,kg/TJ,13.957201439999999,kg -c4a850e6-088e-359b-9996-9ab394b8bc25,SESCO,II.1.1,Corrientes,AR-W,annual,2010,gas oil combustion consumption by freight transport,137.25202679999998,TJ,CO2,74100.0,kg/TJ,10170375.185879998,kg -21d8086d-578a-3f6b-9038-1cd2584976a1,SESCO,II.1.1,Corrientes,AR-W,annual,2010,gas oil combustion consumption by freight transport,137.25202679999998,TJ,CH4,3.9,kg/TJ,535.2829045199999,kg -21d8086d-578a-3f6b-9038-1cd2584976a1,SESCO,II.1.1,Corrientes,AR-W,annual,2010,gas oil combustion consumption by freight transport,137.25202679999998,TJ,N2O,3.9,kg/TJ,535.2829045199999,kg -f323359b-ae34-398b-a7c0-6259ff718696,SESCO,II.1.1,Córdoba,AR-X,annual,2010,gas oil combustion consumption by freight transport,265.40795399999996,TJ,CO2,74100.0,kg/TJ,19666729.3914,kg -893874df-3519-3be0-a684-a9c4f53e5820,SESCO,II.1.1,Córdoba,AR-X,annual,2010,gas oil combustion consumption by freight transport,265.40795399999996,TJ,CH4,3.9,kg/TJ,1035.0910205999999,kg -893874df-3519-3be0-a684-a9c4f53e5820,SESCO,II.1.1,Córdoba,AR-X,annual,2010,gas oil combustion consumption by freight transport,265.40795399999996,TJ,N2O,3.9,kg/TJ,1035.0910205999999,kg -f9d497fe-af54-3c90-9328-733e83f3cfa2,SESCO,II.1.1,Entre Rios,AR-E,annual,2010,gas oil combustion consumption by freight transport,238.068726,TJ,CO2,74100.0,kg/TJ,17640892.5966,kg -60abf862-a20d-348a-b6b6-edbbe11de407,SESCO,II.1.1,Entre Rios,AR-E,annual,2010,gas oil combustion consumption by freight transport,238.068726,TJ,CH4,3.9,kg/TJ,928.4680314,kg -60abf862-a20d-348a-b6b6-edbbe11de407,SESCO,II.1.1,Entre Rios,AR-E,annual,2010,gas oil combustion consumption by freight transport,238.068726,TJ,N2O,3.9,kg/TJ,928.4680314,kg -c8ddfcc2-0abf-3deb-b992-e2d4f45fc8ae,SESCO,II.1.1,La Pampa,AR-L,annual,2010,gas oil combustion consumption by freight transport,0.039370800000000004,TJ,CO2,74100.0,kg/TJ,2917.3762800000004,kg -8e618e43-4cc5-3a2b-a729-08cf12199947,SESCO,II.1.1,La Pampa,AR-L,annual,2010,gas oil combustion consumption by freight transport,0.039370800000000004,TJ,CH4,3.9,kg/TJ,0.15354612,kg -8e618e43-4cc5-3a2b-a729-08cf12199947,SESCO,II.1.1,La Pampa,AR-L,annual,2010,gas oil combustion consumption by freight transport,0.039370800000000004,TJ,N2O,3.9,kg/TJ,0.15354612,kg -6c7a3f71-3c27-349e-97b9-369495f0a66e,SESCO,II.1.1,Mendoza,AR-M,annual,2010,gas oil combustion consumption by freight transport,345.2436288,TJ,CO2,74100.0,kg/TJ,25582552.89408,kg -046d6032-a900-3b22-8139-410efbe950f4,SESCO,II.1.1,Mendoza,AR-M,annual,2010,gas oil combustion consumption by freight transport,345.2436288,TJ,CH4,3.9,kg/TJ,1346.45015232,kg -046d6032-a900-3b22-8139-410efbe950f4,SESCO,II.1.1,Mendoza,AR-M,annual,2010,gas oil combustion consumption by freight transport,345.2436288,TJ,N2O,3.9,kg/TJ,1346.45015232,kg -0c7df5f2-4cfa-39a2-8dee-bf0374fb9241,SESCO,II.1.1,Misiones,AR-N,annual,2010,gas oil combustion consumption by freight transport,120.2897136,TJ,CO2,74100.0,kg/TJ,8913467.777759999,kg -6d4a5f81-4949-3099-8999-c6ca64723d27,SESCO,II.1.1,Misiones,AR-N,annual,2010,gas oil combustion consumption by freight transport,120.2897136,TJ,CH4,3.9,kg/TJ,469.12988304,kg -6d4a5f81-4949-3099-8999-c6ca64723d27,SESCO,II.1.1,Misiones,AR-N,annual,2010,gas oil combustion consumption by freight transport,120.2897136,TJ,N2O,3.9,kg/TJ,469.12988304,kg -22a8362d-edda-3c67-8717-1a0ecf82a9ed,SESCO,II.1.1,Rio Negro,AR-R,annual,2010,gas oil combustion consumption by freight transport,14.3577,TJ,CO2,74100.0,kg/TJ,1063905.57,kg -0980d985-f46d-311a-8fd4-4656ba0e4af8,SESCO,II.1.1,Rio Negro,AR-R,annual,2010,gas oil combustion consumption by freight transport,14.3577,TJ,CH4,3.9,kg/TJ,55.99503,kg -0980d985-f46d-311a-8fd4-4656ba0e4af8,SESCO,II.1.1,Rio Negro,AR-R,annual,2010,gas oil combustion consumption by freight transport,14.3577,TJ,N2O,3.9,kg/TJ,55.99503,kg -796a70fb-c3ed-3871-9cdf-3be3b6fd1e7a,SESCO,II.1.1,Salta,AR-A,annual,2010,gas oil combustion consumption by freight transport,6.451032,TJ,CO2,74100.0,kg/TJ,478021.47119999997,kg -fa3c8ea2-6bfc-36a7-a670-3c8262a7fa22,SESCO,II.1.1,Salta,AR-A,annual,2010,gas oil combustion consumption by freight transport,6.451032,TJ,CH4,3.9,kg/TJ,25.159024799999997,kg -fa3c8ea2-6bfc-36a7-a670-3c8262a7fa22,SESCO,II.1.1,Salta,AR-A,annual,2010,gas oil combustion consumption by freight transport,6.451032,TJ,N2O,3.9,kg/TJ,25.159024799999997,kg -83ad76bb-c184-3fc1-9408-031d8d9290d6,SESCO,II.1.1,San Juan,AR-J,annual,2010,gas oil combustion consumption by freight transport,18.420477599999998,TJ,CO2,74100.0,kg/TJ,1364957.39016,kg -05a51916-4e36-32e5-bae1-c4d1a1c1f38f,SESCO,II.1.1,San Juan,AR-J,annual,2010,gas oil combustion consumption by freight transport,18.420477599999998,TJ,CH4,3.9,kg/TJ,71.83986263999999,kg -05a51916-4e36-32e5-bae1-c4d1a1c1f38f,SESCO,II.1.1,San Juan,AR-J,annual,2010,gas oil combustion consumption by freight transport,18.420477599999998,TJ,N2O,3.9,kg/TJ,71.83986263999999,kg -e9c91708-c13c-3d29-9c6a-940e3c99ba21,SESCO,II.1.1,San Luis,AR-D,annual,2010,gas oil combustion consumption by freight transport,147.2085048,TJ,CO2,74100.0,kg/TJ,10908150.20568,kg -0a066901-0c2e-34e6-8f6c-34ed82cb0602,SESCO,II.1.1,San Luis,AR-D,annual,2010,gas oil combustion consumption by freight transport,147.2085048,TJ,CH4,3.9,kg/TJ,574.11316872,kg -0a066901-0c2e-34e6-8f6c-34ed82cb0602,SESCO,II.1.1,San Luis,AR-D,annual,2010,gas oil combustion consumption by freight transport,147.2085048,TJ,N2O,3.9,kg/TJ,574.11316872,kg -170e3f79-d5a8-3344-b36c-0c3f76ffb865,SESCO,II.1.1,Santa Fe,AR-S,annual,2010,gas oil combustion consumption by freight transport,1080.7400184,TJ,CO2,74100.0,kg/TJ,80082835.36344,kg -7218e98c-5146-307d-96bb-f17430bb20c3,SESCO,II.1.1,Santa Fe,AR-S,annual,2010,gas oil combustion consumption by freight transport,1080.7400184,TJ,CH4,3.9,kg/TJ,4214.88607176,kg -7218e98c-5146-307d-96bb-f17430bb20c3,SESCO,II.1.1,Santa Fe,AR-S,annual,2010,gas oil combustion consumption by freight transport,1080.7400184,TJ,N2O,3.9,kg/TJ,4214.88607176,kg -4df94e83-e21a-3d6d-becd-3f4e7fda2dba,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2010,gas oil combustion consumption by freight transport,0.429828,TJ,CO2,74100.0,kg/TJ,31850.2548,kg -03f53f40-00c9-3832-9943-3356b95a5898,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2010,gas oil combustion consumption by freight transport,0.429828,TJ,CH4,3.9,kg/TJ,1.6763291999999999,kg -03f53f40-00c9-3832-9943-3356b95a5898,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2010,gas oil combustion consumption by freight transport,0.429828,TJ,N2O,3.9,kg/TJ,1.6763291999999999,kg -82179f9f-9e0b-33c9-b85f-e1756d5bff17,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2010,gas oil combustion consumption by freight transport,39.2378784,TJ,CO2,74100.0,kg/TJ,2907526.78944,kg -d7fa711c-6130-3579-868a-075a061db305,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2010,gas oil combustion consumption by freight transport,39.2378784,TJ,CH4,3.9,kg/TJ,153.02772575999998,kg -d7fa711c-6130-3579-868a-075a061db305,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2010,gas oil combustion consumption by freight transport,39.2378784,TJ,N2O,3.9,kg/TJ,153.02772575999998,kg -7ef65946-4b1a-3cb3-959a-947a2ebfc2ac,SESCO,II.1.1,Tucuman,AR-T,annual,2010,gas oil combustion consumption by freight transport,220.194744,TJ,CO2,74100.0,kg/TJ,16316430.530399999,kg -a737b73b-b9a3-3657-8df5-269f21dc1888,SESCO,II.1.1,Tucuman,AR-T,annual,2010,gas oil combustion consumption by freight transport,220.194744,TJ,CH4,3.9,kg/TJ,858.7595015999999,kg -a737b73b-b9a3-3657-8df5-269f21dc1888,SESCO,II.1.1,Tucuman,AR-T,annual,2010,gas oil combustion consumption by freight transport,220.194744,TJ,N2O,3.9,kg/TJ,858.7595015999999,kg -df4f5eb5-5f19-30bb-b9c5-1b8d8f4d8f1e,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,gas oil combustion consumption by freight transport,25.457375999999996,TJ,CO2,74100.0,kg/TJ,1886391.5615999997,kg -a27f7fa4-34fa-3e16-a539-b8691708271b,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,gas oil combustion consumption by freight transport,25.457375999999996,TJ,CH4,3.9,kg/TJ,99.28376639999999,kg -a27f7fa4-34fa-3e16-a539-b8691708271b,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,gas oil combustion consumption by freight transport,25.457375999999996,TJ,N2O,3.9,kg/TJ,99.28376639999999,kg -0be3211b-bf98-35a0-b02a-3a7d2a378b10,SESCO,II.1.1,Capital Federal,AR-C,annual,2010,gas oil combustion consumption by freight transport,35.4413052,TJ,CO2,74100.0,kg/TJ,2626200.71532,kg -ff7b877d-5dd6-3f02-9707-82923b823674,SESCO,II.1.1,Capital Federal,AR-C,annual,2010,gas oil combustion consumption by freight transport,35.4413052,TJ,CH4,3.9,kg/TJ,138.22109028,kg -ff7b877d-5dd6-3f02-9707-82923b823674,SESCO,II.1.1,Capital Federal,AR-C,annual,2010,gas oil combustion consumption by freight transport,35.4413052,TJ,N2O,3.9,kg/TJ,138.22109028,kg -150956d0-5fae-3f2e-9dfb-85a653f98cd7,SESCO,II.1.1,Chaco,AR-H,annual,2010,gas oil combustion consumption by freight transport,0.47570039999999997,TJ,CO2,74100.0,kg/TJ,35249.399639999996,kg -65eb001c-1dcb-3891-8ce3-5e1fba418ba7,SESCO,II.1.1,Chaco,AR-H,annual,2010,gas oil combustion consumption by freight transport,0.47570039999999997,TJ,CH4,3.9,kg/TJ,1.8552315599999998,kg -65eb001c-1dcb-3891-8ce3-5e1fba418ba7,SESCO,II.1.1,Chaco,AR-H,annual,2010,gas oil combustion consumption by freight transport,0.47570039999999997,TJ,N2O,3.9,kg/TJ,1.8552315599999998,kg -2f1daed0-fd06-34bc-b799-398f2f42fc83,SESCO,II.1.1,Chubut,AR-U,annual,2010,gas oil combustion consumption by freight transport,0.07187879999999999,TJ,CO2,74100.0,kg/TJ,5326.21908,kg -8f884638-d28d-3888-b453-97e62bd198cc,SESCO,II.1.1,Chubut,AR-U,annual,2010,gas oil combustion consumption by freight transport,0.07187879999999999,TJ,CH4,3.9,kg/TJ,0.28032732,kg -8f884638-d28d-3888-b453-97e62bd198cc,SESCO,II.1.1,Chubut,AR-U,annual,2010,gas oil combustion consumption by freight transport,0.07187879999999999,TJ,N2O,3.9,kg/TJ,0.28032732,kg -a6c2c93d-0178-3683-9a3d-5eb1f7ee7c6c,SESCO,II.1.1,Corrientes,AR-W,annual,2010,gas oil combustion consumption by freight transport,2.318904,TJ,CO2,74100.0,kg/TJ,171830.78639999998,kg -cf49962d-8909-352d-9464-b16ee428c704,SESCO,II.1.1,Corrientes,AR-W,annual,2010,gas oil combustion consumption by freight transport,2.318904,TJ,CH4,3.9,kg/TJ,9.043725599999998,kg -cf49962d-8909-352d-9464-b16ee428c704,SESCO,II.1.1,Corrientes,AR-W,annual,2010,gas oil combustion consumption by freight transport,2.318904,TJ,N2O,3.9,kg/TJ,9.043725599999998,kg -6cae47d2-ca8e-3b2d-82b7-d3fd87ef6769,SESCO,II.1.1,Córdoba,AR-X,annual,2010,gas oil combustion consumption by freight transport,2.8675668,TJ,CO2,74100.0,kg/TJ,212486.69988,kg -351de90b-4efb-3eac-a9c6-d0175590edea,SESCO,II.1.1,Córdoba,AR-X,annual,2010,gas oil combustion consumption by freight transport,2.8675668,TJ,CH4,3.9,kg/TJ,11.18351052,kg -351de90b-4efb-3eac-a9c6-d0175590edea,SESCO,II.1.1,Córdoba,AR-X,annual,2010,gas oil combustion consumption by freight transport,2.8675668,TJ,N2O,3.9,kg/TJ,11.18351052,kg -53a0dc4a-1b1d-3fad-bf8e-c9db7a84c430,SESCO,II.1.1,Entre Rios,AR-E,annual,2010,gas oil combustion consumption by freight transport,7.6942824,TJ,CO2,74100.0,kg/TJ,570146.32584,kg -baf4034c-2262-31e6-a202-5694d436b92f,SESCO,II.1.1,Entre Rios,AR-E,annual,2010,gas oil combustion consumption by freight transport,7.6942824,TJ,CH4,3.9,kg/TJ,30.00770136,kg -baf4034c-2262-31e6-a202-5694d436b92f,SESCO,II.1.1,Entre Rios,AR-E,annual,2010,gas oil combustion consumption by freight transport,7.6942824,TJ,N2O,3.9,kg/TJ,30.00770136,kg -0e460e00-d5b5-3dd2-86f5-0bd6b6832600,SESCO,II.1.1,Mendoza,AR-M,annual,2010,gas oil combustion consumption by freight transport,1.3151292,TJ,CO2,74100.0,kg/TJ,97451.07372000001,kg -40c9a18b-f3c2-3392-bc3c-dbff7d0cd0a5,SESCO,II.1.1,Mendoza,AR-M,annual,2010,gas oil combustion consumption by freight transport,1.3151292,TJ,CH4,3.9,kg/TJ,5.12900388,kg -40c9a18b-f3c2-3392-bc3c-dbff7d0cd0a5,SESCO,II.1.1,Mendoza,AR-M,annual,2010,gas oil combustion consumption by freight transport,1.3151292,TJ,N2O,3.9,kg/TJ,5.12900388,kg -61278244-a35b-314f-9d36-16ba04efed55,SESCO,II.1.1,Misiones,AR-N,annual,2010,gas oil combustion consumption by freight transport,1.6821084,TJ,CO2,74100.0,kg/TJ,124644.23243999999,kg -81d8e281-e786-3b99-944f-a895a7686da8,SESCO,II.1.1,Misiones,AR-N,annual,2010,gas oil combustion consumption by freight transport,1.6821084,TJ,CH4,3.9,kg/TJ,6.560222759999999,kg -81d8e281-e786-3b99-944f-a895a7686da8,SESCO,II.1.1,Misiones,AR-N,annual,2010,gas oil combustion consumption by freight transport,1.6821084,TJ,N2O,3.9,kg/TJ,6.560222759999999,kg -3cdc43ab-ce2d-3113-bf34-90c96d953856,SESCO,II.1.1,Rio Negro,AR-R,annual,2010,gas oil combustion consumption by freight transport,0.3734808,TJ,CO2,74100.0,kg/TJ,27674.92728,kg -72ea5e8c-4552-3e11-8460-5950689c7c08,SESCO,II.1.1,Rio Negro,AR-R,annual,2010,gas oil combustion consumption by freight transport,0.3734808,TJ,CH4,3.9,kg/TJ,1.45657512,kg -72ea5e8c-4552-3e11-8460-5950689c7c08,SESCO,II.1.1,Rio Negro,AR-R,annual,2010,gas oil combustion consumption by freight transport,0.3734808,TJ,N2O,3.9,kg/TJ,1.45657512,kg -3dc7ce06-a35b-3bad-9481-9410078d6a33,SESCO,II.1.1,Salta,AR-A,annual,2010,gas oil combustion consumption by freight transport,0.016253999999999998,TJ,CO2,74100.0,kg/TJ,1204.4213999999997,kg -11b174e1-94b6-3283-a480-d4d7ab174fce,SESCO,II.1.1,Salta,AR-A,annual,2010,gas oil combustion consumption by freight transport,0.016253999999999998,TJ,CH4,3.9,kg/TJ,0.06339059999999999,kg -11b174e1-94b6-3283-a480-d4d7ab174fce,SESCO,II.1.1,Salta,AR-A,annual,2010,gas oil combustion consumption by freight transport,0.016253999999999998,TJ,N2O,3.9,kg/TJ,0.06339059999999999,kg -cfa44bbc-8f01-3c24-a8d7-a96719cd1a7e,SESCO,II.1.1,San Juan,AR-J,annual,2010,gas oil combustion consumption by freight transport,0.0989688,TJ,CO2,74100.0,kg/TJ,7333.5880799999995,kg -09233483-0b94-3f43-a6a8-2552581bc768,SESCO,II.1.1,San Juan,AR-J,annual,2010,gas oil combustion consumption by freight transport,0.0989688,TJ,CH4,3.9,kg/TJ,0.38597832,kg -09233483-0b94-3f43-a6a8-2552581bc768,SESCO,II.1.1,San Juan,AR-J,annual,2010,gas oil combustion consumption by freight transport,0.0989688,TJ,N2O,3.9,kg/TJ,0.38597832,kg -5e3effd7-e345-3900-963b-fb14835861f4,SESCO,II.1.1,San Luis,AR-D,annual,2010,gas oil combustion consumption by freight transport,0.6913368,TJ,CO2,74100.0,kg/TJ,51228.05688,kg -e22337c7-4df9-38c3-a202-d50db0368c67,SESCO,II.1.1,San Luis,AR-D,annual,2010,gas oil combustion consumption by freight transport,0.6913368,TJ,CH4,3.9,kg/TJ,2.6962135199999997,kg -e22337c7-4df9-38c3-a202-d50db0368c67,SESCO,II.1.1,San Luis,AR-D,annual,2010,gas oil combustion consumption by freight transport,0.6913368,TJ,N2O,3.9,kg/TJ,2.6962135199999997,kg -053d56a7-6d71-3c75-920d-84e19dd17fa7,SESCO,II.1.1,Santa Fe,AR-S,annual,2010,gas oil combustion consumption by freight transport,4.2083412,TJ,CO2,74100.0,kg/TJ,311838.08291999996,kg -a6fe05e6-0e74-33c8-bcc0-095ec572d454,SESCO,II.1.1,Santa Fe,AR-S,annual,2010,gas oil combustion consumption by freight transport,4.2083412,TJ,CH4,3.9,kg/TJ,16.412530679999996,kg -a6fe05e6-0e74-33c8-bcc0-095ec572d454,SESCO,II.1.1,Santa Fe,AR-S,annual,2010,gas oil combustion consumption by freight transport,4.2083412,TJ,N2O,3.9,kg/TJ,16.412530679999996,kg -c2a5c162-ce1c-3507-9915-707cf21b44fb,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2010,gas oil combustion consumption by freight transport,0.0278124,TJ,CO2,74100.0,kg/TJ,2060.8988400000003,kg -f443b69e-e7ce-3cff-9323-f202a25a8b7b,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2010,gas oil combustion consumption by freight transport,0.0278124,TJ,CH4,3.9,kg/TJ,0.10846836,kg -f443b69e-e7ce-3cff-9323-f202a25a8b7b,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2010,gas oil combustion consumption by freight transport,0.0278124,TJ,N2O,3.9,kg/TJ,0.10846836,kg -7ad1c363-e0aa-3ce1-9c87-e3e4f37e0b22,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2010,gas oil combustion consumption by freight transport,0.8080043999999998,TJ,CO2,74100.0,kg/TJ,59873.12603999999,kg -241d4499-f5ab-3edf-9f62-4b313f927015,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2010,gas oil combustion consumption by freight transport,0.8080043999999998,TJ,CH4,3.9,kg/TJ,3.1512171599999994,kg -241d4499-f5ab-3edf-9f62-4b313f927015,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2010,gas oil combustion consumption by freight transport,0.8080043999999998,TJ,N2O,3.9,kg/TJ,3.1512171599999994,kg -0b7d48d3-2807-3bc5-bfa7-956d2bb0fb3f,SESCO,II.1.1,Tucuman,AR-T,annual,2010,gas oil combustion consumption by freight transport,0.6053711999999999,TJ,CO2,74100.0,kg/TJ,44858.00591999999,kg -5714fd42-3be8-30e6-b54f-15d3e4aac801,SESCO,II.1.1,Tucuman,AR-T,annual,2010,gas oil combustion consumption by freight transport,0.6053711999999999,TJ,CH4,3.9,kg/TJ,2.3609476799999993,kg -5714fd42-3be8-30e6-b54f-15d3e4aac801,SESCO,II.1.1,Tucuman,AR-T,annual,2010,gas oil combustion consumption by freight transport,0.6053711999999999,TJ,N2O,3.9,kg/TJ,2.3609476799999993,kg -5db89216-cc97-37c9-b69b-a31176295ad3,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,jet kerosene combustion consumption by public passenger transport,682.1652452,TJ,CO2,71500.0,kg/TJ,48774815.031799994,kg -03303326-f2db-368d-95e2-7133c8bada46,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,jet kerosene combustion consumption by public passenger transport,682.1652452,TJ,CH4,0.5,kg/TJ,341.0826226,kg -14548e30-1b1d-3d0a-ae7e-5b5e2e3b2dde,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,jet kerosene combustion consumption by public passenger transport,682.1652452,TJ,N2O,2.0,kg/TJ,1364.3304904,kg -6aa3a134-e7cc-33e6-be7f-9e657a09f2a4,SESCO,II.1.1,Capital Federal,AR-C,annual,2010,jet kerosene combustion consumption by public passenger transport,119.32324609999998,TJ,CO2,71500.0,kg/TJ,8531612.096149998,kg -83508d9c-162e-389a-939c-e2684efe9e1f,SESCO,II.1.1,Capital Federal,AR-C,annual,2010,jet kerosene combustion consumption by public passenger transport,119.32324609999998,TJ,CH4,0.5,kg/TJ,59.66162304999999,kg -da131592-c364-3e9c-bbc6-7dbb1515f4b0,SESCO,II.1.1,Capital Federal,AR-C,annual,2010,jet kerosene combustion consumption by public passenger transport,119.32324609999998,TJ,N2O,2.0,kg/TJ,238.64649219999995,kg -0b265d5e-836f-33b5-96df-ec47fae027d5,SESCO,II.1.1,Córdoba,AR-X,annual,2010,jet kerosene combustion consumption by public passenger transport,21.3282793,TJ,CO2,71500.0,kg/TJ,1524971.9699499998,kg -6b9886d1-aa4b-3bd2-8d59-f74b0184ca44,SESCO,II.1.1,Córdoba,AR-X,annual,2010,jet kerosene combustion consumption by public passenger transport,21.3282793,TJ,CH4,0.5,kg/TJ,10.66413965,kg -8e466c14-e9c0-369a-8740-6cb425aa93ce,SESCO,II.1.1,Córdoba,AR-X,annual,2010,jet kerosene combustion consumption by public passenger transport,21.3282793,TJ,N2O,2.0,kg/TJ,42.6565586,kg -5a0f37ca-3522-32e4-971d-8b599c7cb0a2,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,gas oil combustion consumption by public passenger transport,1015.5936251999999,TJ,CO2,74100.0,kg/TJ,75255487.62731999,kg -d04b0b00-5689-3532-98ce-6527c497a7c1,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,gas oil combustion consumption by public passenger transport,1015.5936251999999,TJ,CH4,3.9,kg/TJ,3960.8151382799997,kg -d04b0b00-5689-3532-98ce-6527c497a7c1,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,gas oil combustion consumption by public passenger transport,1015.5936251999999,TJ,N2O,3.9,kg/TJ,3960.8151382799997,kg -d6788c03-79f2-382b-b2db-0c8f475fa918,SESCO,II.1.1,Capital Federal,AR-C,annual,2010,gas oil combustion consumption by public passenger transport,823.6680186,TJ,CO2,74100.0,kg/TJ,61033800.17826,kg -d8fc04ea-d950-3a5a-a573-58420c63802a,SESCO,II.1.1,Capital Federal,AR-C,annual,2010,gas oil combustion consumption by public passenger transport,823.6680186,TJ,CH4,3.9,kg/TJ,3212.30527254,kg -d8fc04ea-d950-3a5a-a573-58420c63802a,SESCO,II.1.1,Capital Federal,AR-C,annual,2010,gas oil combustion consumption by public passenger transport,823.6680186,TJ,N2O,3.9,kg/TJ,3212.30527254,kg -bb1a299e-fb35-3075-9e14-94cd8925557f,SESCO,II.1.1,Catamarca,AR-K,annual,2010,gas oil combustion consumption by public passenger transport,7.245672,TJ,CO2,74100.0,kg/TJ,536904.2951999999,kg -01cfeb2e-0fbe-399b-bca6-1dd641d46a4a,SESCO,II.1.1,Catamarca,AR-K,annual,2010,gas oil combustion consumption by public passenger transport,7.245672,TJ,CH4,3.9,kg/TJ,28.2581208,kg -01cfeb2e-0fbe-399b-bca6-1dd641d46a4a,SESCO,II.1.1,Catamarca,AR-K,annual,2010,gas oil combustion consumption by public passenger transport,7.245672,TJ,N2O,3.9,kg/TJ,28.2581208,kg -a0d6a0b0-9032-3b3a-8315-96cbb4af1371,SESCO,II.1.1,Chubut,AR-U,annual,2010,gas oil combustion consumption by public passenger transport,252.12157319999997,TJ,CO2,74100.0,kg/TJ,18682208.574119996,kg -5b9a19e8-6ae3-36ee-a914-e92464e742f9,SESCO,II.1.1,Chubut,AR-U,annual,2010,gas oil combustion consumption by public passenger transport,252.12157319999997,TJ,CH4,3.9,kg/TJ,983.2741354799998,kg -5b9a19e8-6ae3-36ee-a914-e92464e742f9,SESCO,II.1.1,Chubut,AR-U,annual,2010,gas oil combustion consumption by public passenger transport,252.12157319999997,TJ,N2O,3.9,kg/TJ,983.2741354799998,kg -592b9061-6745-330d-9708-afe692c06be3,SESCO,II.1.1,Córdoba,AR-X,annual,2010,gas oil combustion consumption by public passenger transport,21.5405232,TJ,CO2,74100.0,kg/TJ,1596152.7691199998,kg -5c0392e5-4bad-38a2-bb9c-4f12cb713b2e,SESCO,II.1.1,Córdoba,AR-X,annual,2010,gas oil combustion consumption by public passenger transport,21.5405232,TJ,CH4,3.9,kg/TJ,84.00804047999999,kg -5c0392e5-4bad-38a2-bb9c-4f12cb713b2e,SESCO,II.1.1,Córdoba,AR-X,annual,2010,gas oil combustion consumption by public passenger transport,21.5405232,TJ,N2O,3.9,kg/TJ,84.00804047999999,kg -78a001f0-edfb-316d-8c22-f442aa295630,SESCO,II.1.1,Entre Rios,AR-E,annual,2010,gas oil combustion consumption by public passenger transport,204.067164,TJ,CO2,74100.0,kg/TJ,15121376.8524,kg -eba6b6ee-9102-30ad-985f-9f1ea6516e3f,SESCO,II.1.1,Entre Rios,AR-E,annual,2010,gas oil combustion consumption by public passenger transport,204.067164,TJ,CH4,3.9,kg/TJ,795.8619395999999,kg -eba6b6ee-9102-30ad-985f-9f1ea6516e3f,SESCO,II.1.1,Entre Rios,AR-E,annual,2010,gas oil combustion consumption by public passenger transport,204.067164,TJ,N2O,3.9,kg/TJ,795.8619395999999,kg -64403689-251a-3405-af52-924b06434f0b,SESCO,II.1.1,La Pampa,AR-L,annual,2010,gas oil combustion consumption by public passenger transport,69.980694,TJ,CO2,74100.0,kg/TJ,5185569.4254,kg -db4df392-23b1-3c5e-a710-088f87b17782,SESCO,II.1.1,La Pampa,AR-L,annual,2010,gas oil combustion consumption by public passenger transport,69.980694,TJ,CH4,3.9,kg/TJ,272.9247066,kg -db4df392-23b1-3c5e-a710-088f87b17782,SESCO,II.1.1,La Pampa,AR-L,annual,2010,gas oil combustion consumption by public passenger transport,69.980694,TJ,N2O,3.9,kg/TJ,272.9247066,kg -4d2f6404-af03-3ae1-9d68-5f6ca0c684af,SESCO,II.1.1,Mendoza,AR-M,annual,2010,gas oil combustion consumption by public passenger transport,91.46884320000001,TJ,CO2,74100.0,kg/TJ,6777841.28112,kg -7e3222de-c157-3847-a093-9a2f0e5d2d4a,SESCO,II.1.1,Mendoza,AR-M,annual,2010,gas oil combustion consumption by public passenger transport,91.46884320000001,TJ,CH4,3.9,kg/TJ,356.72848848,kg -7e3222de-c157-3847-a093-9a2f0e5d2d4a,SESCO,II.1.1,Mendoza,AR-M,annual,2010,gas oil combustion consumption by public passenger transport,91.46884320000001,TJ,N2O,3.9,kg/TJ,356.72848848,kg -0d158071-baf3-3642-ba3e-82dd6ad938a9,SESCO,II.1.1,Misiones,AR-N,annual,2010,gas oil combustion consumption by public passenger transport,474.0583848,TJ,CO2,74100.0,kg/TJ,35127726.31368,kg -6e80d24b-d25c-3d0b-854d-9e6d95d803d1,SESCO,II.1.1,Misiones,AR-N,annual,2010,gas oil combustion consumption by public passenger transport,474.0583848,TJ,CH4,3.9,kg/TJ,1848.82770072,kg -6e80d24b-d25c-3d0b-854d-9e6d95d803d1,SESCO,II.1.1,Misiones,AR-N,annual,2010,gas oil combustion consumption by public passenger transport,474.0583848,TJ,N2O,3.9,kg/TJ,1848.82770072,kg -df010449-abc5-3a30-b860-ebde6123acfb,SESCO,II.1.1,Neuquén,AR-Q,annual,2010,gas oil combustion consumption by public passenger transport,38.2832268,TJ,CO2,74100.0,kg/TJ,2836787.10588,kg -27b8d4d8-e58c-359c-8efe-c7e6a6fe37d4,SESCO,II.1.1,Neuquén,AR-Q,annual,2010,gas oil combustion consumption by public passenger transport,38.2832268,TJ,CH4,3.9,kg/TJ,149.30458452,kg -27b8d4d8-e58c-359c-8efe-c7e6a6fe37d4,SESCO,II.1.1,Neuquén,AR-Q,annual,2010,gas oil combustion consumption by public passenger transport,38.2832268,TJ,N2O,3.9,kg/TJ,149.30458452,kg -ca602253-38dd-341d-ac2b-6cc6d0a7c439,SESCO,II.1.1,Rio Negro,AR-R,annual,2010,gas oil combustion consumption by public passenger transport,165.220104,TJ,CO2,74100.0,kg/TJ,12242809.7064,kg -b3bf2a01-836c-3614-b37c-b2a492f11f85,SESCO,II.1.1,Rio Negro,AR-R,annual,2010,gas oil combustion consumption by public passenger transport,165.220104,TJ,CH4,3.9,kg/TJ,644.3584056,kg -b3bf2a01-836c-3614-b37c-b2a492f11f85,SESCO,II.1.1,Rio Negro,AR-R,annual,2010,gas oil combustion consumption by public passenger transport,165.220104,TJ,N2O,3.9,kg/TJ,644.3584056,kg -3cd035f9-6b9d-3068-841e-6a85e4aa4aef,SESCO,II.1.1,Salta,AR-A,annual,2010,gas oil combustion consumption by public passenger transport,8.26245,TJ,CO2,74100.0,kg/TJ,612247.5449999999,kg -a9781d2d-c1a6-3aeb-adf3-06076c79bbd3,SESCO,II.1.1,Salta,AR-A,annual,2010,gas oil combustion consumption by public passenger transport,8.26245,TJ,CH4,3.9,kg/TJ,32.223555,kg -a9781d2d-c1a6-3aeb-adf3-06076c79bbd3,SESCO,II.1.1,Salta,AR-A,annual,2010,gas oil combustion consumption by public passenger transport,8.26245,TJ,N2O,3.9,kg/TJ,32.223555,kg -5b9807be-1223-3618-a5d9-d6fa223d48ff,SESCO,II.1.1,San Juan,AR-J,annual,2010,gas oil combustion consumption by public passenger transport,5.1918888,TJ,CO2,74100.0,kg/TJ,384718.96008,kg -fa087c42-5b35-3ef2-8823-6ef4bfb58446,SESCO,II.1.1,San Juan,AR-J,annual,2010,gas oil combustion consumption by public passenger transport,5.1918888,TJ,CH4,3.9,kg/TJ,20.24836632,kg -fa087c42-5b35-3ef2-8823-6ef4bfb58446,SESCO,II.1.1,San Juan,AR-J,annual,2010,gas oil combustion consumption by public passenger transport,5.1918888,TJ,N2O,3.9,kg/TJ,20.24836632,kg -8c75e835-d07d-3356-9366-a82bb23d5144,SESCO,II.1.1,San Luis,AR-D,annual,2010,gas oil combustion consumption by public passenger transport,21.702702000000002,TJ,CO2,74100.0,kg/TJ,1608170.2182000002,kg -df32b444-58d1-3abc-8747-9607e3cd9e90,SESCO,II.1.1,San Luis,AR-D,annual,2010,gas oil combustion consumption by public passenger transport,21.702702000000002,TJ,CH4,3.9,kg/TJ,84.6405378,kg -df32b444-58d1-3abc-8747-9607e3cd9e90,SESCO,II.1.1,San Luis,AR-D,annual,2010,gas oil combustion consumption by public passenger transport,21.702702000000002,TJ,N2O,3.9,kg/TJ,84.6405378,kg -3d9c2e86-302e-31ed-95ae-e96006ae46ca,SESCO,II.1.1,Santa Fe,AR-S,annual,2010,gas oil combustion consumption by public passenger transport,107.4006528,TJ,CO2,74100.0,kg/TJ,7958388.37248,kg -cc790e98-d9c2-33a0-99a8-3c9413a519fe,SESCO,II.1.1,Santa Fe,AR-S,annual,2010,gas oil combustion consumption by public passenger transport,107.4006528,TJ,CH4,3.9,kg/TJ,418.86254592,kg -cc790e98-d9c2-33a0-99a8-3c9413a519fe,SESCO,II.1.1,Santa Fe,AR-S,annual,2010,gas oil combustion consumption by public passenger transport,107.4006528,TJ,N2O,3.9,kg/TJ,418.86254592,kg -026b8ee1-5b76-380a-adae-60abc0566ccd,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2010,gas oil combustion consumption by public passenger transport,7.192936799999999,TJ,CO2,74100.0,kg/TJ,532996.61688,kg -fd401a08-6b98-3833-aaf9-ec18d14f67c8,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2010,gas oil combustion consumption by public passenger transport,7.192936799999999,TJ,CH4,3.9,kg/TJ,28.052453519999997,kg -fd401a08-6b98-3833-aaf9-ec18d14f67c8,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2010,gas oil combustion consumption by public passenger transport,7.192936799999999,TJ,N2O,3.9,kg/TJ,28.052453519999997,kg -6b0893bc-9cb0-317f-9003-61f15f70a26b,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,gas oil combustion consumption by public passenger transport,12.9822504,TJ,CO2,74100.0,kg/TJ,961984.7546399999,kg -a06cbcdf-5ed4-3b5d-86cd-d0f01d33a0f7,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,gas oil combustion consumption by public passenger transport,12.9822504,TJ,CH4,3.9,kg/TJ,50.63077656,kg -a06cbcdf-5ed4-3b5d-86cd-d0f01d33a0f7,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,gas oil combustion consumption by public passenger transport,12.9822504,TJ,N2O,3.9,kg/TJ,50.63077656,kg -bdf5097e-a1b9-3aac-b623-3453602b1182,SESCO,II.1.1,Capital Federal,AR-C,annual,2010,gas oil combustion consumption by public passenger transport,16.2167964,TJ,CO2,74100.0,kg/TJ,1201664.61324,kg -1ac768a1-23ec-3c7b-bc9e-ed82e6efa1fb,SESCO,II.1.1,Capital Federal,AR-C,annual,2010,gas oil combustion consumption by public passenger transport,16.2167964,TJ,CH4,3.9,kg/TJ,63.245505959999996,kg -1ac768a1-23ec-3c7b-bc9e-ed82e6efa1fb,SESCO,II.1.1,Capital Federal,AR-C,annual,2010,gas oil combustion consumption by public passenger transport,16.2167964,TJ,N2O,3.9,kg/TJ,63.245505959999996,kg -971323dd-9b0f-3715-a209-049ab56965cb,SESCO,II.1.1,Córdoba,AR-X,annual,2010,gas oil combustion consumption by public passenger transport,0.049484400000000005,TJ,CO2,74100.0,kg/TJ,3666.79404,kg -99282454-b725-39d2-80a6-423ba6c1fcea,SESCO,II.1.1,Córdoba,AR-X,annual,2010,gas oil combustion consumption by public passenger transport,0.049484400000000005,TJ,CH4,3.9,kg/TJ,0.19298916000000002,kg -99282454-b725-39d2-80a6-423ba6c1fcea,SESCO,II.1.1,Córdoba,AR-X,annual,2010,gas oil combustion consumption by public passenger transport,0.049484400000000005,TJ,N2O,3.9,kg/TJ,0.19298916000000002,kg -e6b52afe-3188-3b24-afcb-ea3dade12d70,SESCO,II.1.1,Entre Rios,AR-E,annual,2010,gas oil combustion consumption by public passenger transport,7.971684,TJ,CO2,74100.0,kg/TJ,590701.7844,kg -73d8843a-2fc6-3f99-92b6-3226ef300731,SESCO,II.1.1,Entre Rios,AR-E,annual,2010,gas oil combustion consumption by public passenger transport,7.971684,TJ,CH4,3.9,kg/TJ,31.0895676,kg -73d8843a-2fc6-3f99-92b6-3226ef300731,SESCO,II.1.1,Entre Rios,AR-E,annual,2010,gas oil combustion consumption by public passenger transport,7.971684,TJ,N2O,3.9,kg/TJ,31.0895676,kg -6663f9fd-5f50-327a-a843-088076ae48e4,SESCO,II.1.1,Misiones,AR-N,annual,2010,gas oil combustion consumption by public passenger transport,8.0128608,TJ,CO2,74100.0,kg/TJ,593752.98528,kg -b35c31cc-54e1-34de-ab28-904870238599,SESCO,II.1.1,Misiones,AR-N,annual,2010,gas oil combustion consumption by public passenger transport,8.0128608,TJ,CH4,3.9,kg/TJ,31.25015712,kg -b35c31cc-54e1-34de-ab28-904870238599,SESCO,II.1.1,Misiones,AR-N,annual,2010,gas oil combustion consumption by public passenger transport,8.0128608,TJ,N2O,3.9,kg/TJ,31.25015712,kg -05191746-72a9-3d9c-9e3c-7de4638aea2d,SESCO,II.1.1,Neuquén,AR-Q,annual,2010,gas oil combustion consumption by public passenger transport,0.36156119999999997,TJ,CO2,74100.0,kg/TJ,26791.68492,kg -210a406e-dd46-35c5-8f76-378949f715c4,SESCO,II.1.1,Neuquén,AR-Q,annual,2010,gas oil combustion consumption by public passenger transport,0.36156119999999997,TJ,CH4,3.9,kg/TJ,1.4100886799999999,kg -210a406e-dd46-35c5-8f76-378949f715c4,SESCO,II.1.1,Neuquén,AR-Q,annual,2010,gas oil combustion consumption by public passenger transport,0.36156119999999997,TJ,N2O,3.9,kg/TJ,1.4100886799999999,kg -f23e4162-c420-312b-b8d7-995d25a9787e,SESCO,II.1.1,Salta,AR-A,annual,2010,gas oil combustion consumption by public passenger transport,0.0140868,TJ,CO2,74100.0,kg/TJ,1043.83188,kg -abfd8d0d-095e-3077-aa05-a17df3ce9a90,SESCO,II.1.1,Salta,AR-A,annual,2010,gas oil combustion consumption by public passenger transport,0.0140868,TJ,CH4,3.9,kg/TJ,0.05493852,kg -abfd8d0d-095e-3077-aa05-a17df3ce9a90,SESCO,II.1.1,Salta,AR-A,annual,2010,gas oil combustion consumption by public passenger transport,0.0140868,TJ,N2O,3.9,kg/TJ,0.05493852,kg -264a8aca-545d-39df-99c4-523c64639823,SESCO,II.1.1,San Luis,AR-D,annual,2010,gas oil combustion consumption by public passenger transport,0.006140400000000001,TJ,CO2,74100.0,kg/TJ,455.0036400000001,kg -1aa73750-6eaa-325c-b62f-1650302e8479,SESCO,II.1.1,San Luis,AR-D,annual,2010,gas oil combustion consumption by public passenger transport,0.006140400000000001,TJ,CH4,3.9,kg/TJ,0.023947560000000003,kg -1aa73750-6eaa-325c-b62f-1650302e8479,SESCO,II.1.1,San Luis,AR-D,annual,2010,gas oil combustion consumption by public passenger transport,0.006140400000000001,TJ,N2O,3.9,kg/TJ,0.023947560000000003,kg -74836ac1-c239-3eff-a5be-faf50f7a7d53,SESCO,II.1.1,Santa Fe,AR-S,annual,2010,gas oil combustion consumption by public passenger transport,0.0155316,TJ,CO2,74100.0,kg/TJ,1150.89156,kg -6b097977-468a-3115-bdbf-c6db6692abb8,SESCO,II.1.1,Santa Fe,AR-S,annual,2010,gas oil combustion consumption by public passenger transport,0.0155316,TJ,CH4,3.9,kg/TJ,0.06057324,kg -6b097977-468a-3115-bdbf-c6db6692abb8,SESCO,II.1.1,Santa Fe,AR-S,annual,2010,gas oil combustion consumption by public passenger transport,0.0155316,TJ,N2O,3.9,kg/TJ,0.06057324,kg -82efda5c-76bd-3d49-8630-1a698b6aa470,SESCO,II.5.1,Buenos Aires,AR-B,annual,2010,gasoline combustion consumption by agriculture machines,1.16952,TJ,CO2,69300.0,kg/TJ,81047.73599999999,kg -f77c4cb3-2acc-3846-8997-7ebf1cbdfb03,SESCO,II.5.1,Buenos Aires,AR-B,annual,2010,gasoline combustion consumption by agriculture machines,1.16952,TJ,CH4,33.0,kg/TJ,38.594159999999995,kg -23f87942-d89a-3577-a26b-70a32db95f4e,SESCO,II.5.1,Buenos Aires,AR-B,annual,2010,gasoline combustion consumption by agriculture machines,1.16952,TJ,N2O,3.2,kg/TJ,3.742464,kg -15785e0b-18df-3d99-a486-eb18c6a810ae,SESCO,II.5.1,Buenos Aires,AR-B,annual,2010,gas oil combustion consumption by agriculture machines,1281.23877924,TJ,CO2,74100.0,kg/TJ,94939793.541684,kg -0e19ac30-1f5d-330f-b5e1-5ef0b907c215,SESCO,II.5.1,Buenos Aires,AR-B,annual,2010,gas oil combustion consumption by agriculture machines,1281.23877924,TJ,CH4,3.9,kg/TJ,4996.831239036,kg -0e19ac30-1f5d-330f-b5e1-5ef0b907c215,SESCO,II.5.1,Buenos Aires,AR-B,annual,2010,gas oil combustion consumption by agriculture machines,1281.23877924,TJ,N2O,3.9,kg/TJ,4996.831239036,kg -11591787-cc71-3c9e-aab1-64a9964f5856,SESCO,II.5.1,Corrientes,AR-W,annual,2010,gas oil combustion consumption by agriculture machines,37.18322832,TJ,CO2,74100.0,kg/TJ,2755277.218512,kg -103bd715-328a-33a2-8e88-513edfe77101,SESCO,II.5.1,Corrientes,AR-W,annual,2010,gas oil combustion consumption by agriculture machines,37.18322832,TJ,CH4,3.9,kg/TJ,145.01459044799998,kg -103bd715-328a-33a2-8e88-513edfe77101,SESCO,II.5.1,Corrientes,AR-W,annual,2010,gas oil combustion consumption by agriculture machines,37.18322832,TJ,N2O,3.9,kg/TJ,145.01459044799998,kg -aa49b5c0-6a18-3962-991f-1a8dbe3994fe,SESCO,II.5.1,Córdoba,AR-X,annual,2010,gas oil combustion consumption by agriculture machines,669.1155954,TJ,CO2,74100.0,kg/TJ,49581465.61914,kg -f0709788-56b6-302b-957c-d1a642ae62b2,SESCO,II.5.1,Córdoba,AR-X,annual,2010,gas oil combustion consumption by agriculture machines,669.1155954,TJ,CH4,3.9,kg/TJ,2609.55082206,kg -f0709788-56b6-302b-957c-d1a642ae62b2,SESCO,II.5.1,Córdoba,AR-X,annual,2010,gas oil combustion consumption by agriculture machines,669.1155954,TJ,N2O,3.9,kg/TJ,2609.55082206,kg -7bc09a47-3a08-37b5-952d-645acb6767cd,SESCO,II.5.1,Entre Rios,AR-E,annual,2010,gas oil combustion consumption by agriculture machines,573.03599808,TJ,CO2,74100.0,kg/TJ,42461967.457728,kg -d7b0b12f-f127-3761-9993-61669b65ebfd,SESCO,II.5.1,Entre Rios,AR-E,annual,2010,gas oil combustion consumption by agriculture machines,573.03599808,TJ,CH4,3.9,kg/TJ,2234.840392512,kg -d7b0b12f-f127-3761-9993-61669b65ebfd,SESCO,II.5.1,Entre Rios,AR-E,annual,2010,gas oil combustion consumption by agriculture machines,573.03599808,TJ,N2O,3.9,kg/TJ,2234.840392512,kg -a36505e0-1274-3e9a-b0ba-0619fc62d905,SESCO,II.5.1,La Pampa,AR-L,annual,2010,gas oil combustion consumption by agriculture machines,56.799530759999996,TJ,CO2,74100.0,kg/TJ,4208845.229316,kg -22e356da-b1d7-35f4-b40a-3390d3710aa7,SESCO,II.5.1,La Pampa,AR-L,annual,2010,gas oil combustion consumption by agriculture machines,56.799530759999996,TJ,CH4,3.9,kg/TJ,221.51816996399998,kg -22e356da-b1d7-35f4-b40a-3390d3710aa7,SESCO,II.5.1,La Pampa,AR-L,annual,2010,gas oil combustion consumption by agriculture machines,56.799530759999996,TJ,N2O,3.9,kg/TJ,221.51816996399998,kg -8e788e5e-eb76-38c0-a0cf-88212c0c6ce2,SESCO,II.5.1,Neuquén,AR-Q,annual,2010,gas oil combustion consumption by agriculture machines,13.5516822,TJ,CO2,74100.0,kg/TJ,1004179.65102,kg -5d259937-c866-3da7-b8b2-ec0cdd8e2ea7,SESCO,II.5.1,Neuquén,AR-Q,annual,2010,gas oil combustion consumption by agriculture machines,13.5516822,TJ,CH4,3.9,kg/TJ,52.85156058,kg -5d259937-c866-3da7-b8b2-ec0cdd8e2ea7,SESCO,II.5.1,Neuquén,AR-Q,annual,2010,gas oil combustion consumption by agriculture machines,13.5516822,TJ,N2O,3.9,kg/TJ,52.85156058,kg -be23264a-dcd3-3ef2-b62f-5bdc92deb96d,SESCO,II.5.1,Rio Negro,AR-R,annual,2010,gas oil combustion consumption by agriculture machines,3.7399731600000004,TJ,CO2,74100.0,kg/TJ,277132.011156,kg -1e54aed5-a91c-3d8e-ad60-9fc5e5130242,SESCO,II.5.1,Rio Negro,AR-R,annual,2010,gas oil combustion consumption by agriculture machines,3.7399731600000004,TJ,CH4,3.9,kg/TJ,14.585895324,kg -1e54aed5-a91c-3d8e-ad60-9fc5e5130242,SESCO,II.5.1,Rio Negro,AR-R,annual,2010,gas oil combustion consumption by agriculture machines,3.7399731600000004,TJ,N2O,3.9,kg/TJ,14.585895324,kg -81874b0e-54ee-36ac-9c23-3d62b1356c5e,SESCO,II.5.1,Salta,AR-A,annual,2010,gas oil combustion consumption by agriculture machines,294.13209503999997,TJ,CO2,74100.0,kg/TJ,21795188.242464,kg -1a889c96-f58e-37a4-a6d4-f5b99119e58e,SESCO,II.5.1,Salta,AR-A,annual,2010,gas oil combustion consumption by agriculture machines,294.13209503999997,TJ,CH4,3.9,kg/TJ,1147.115170656,kg -1a889c96-f58e-37a4-a6d4-f5b99119e58e,SESCO,II.5.1,Salta,AR-A,annual,2010,gas oil combustion consumption by agriculture machines,294.13209503999997,TJ,N2O,3.9,kg/TJ,1147.115170656,kg -8d57e6b3-50c3-38fb-b28d-542517d3d784,SESCO,II.5.1,San Luis,AR-D,annual,2010,gas oil combustion consumption by agriculture machines,3.65631924,TJ,CO2,74100.0,kg/TJ,270933.25568400003,kg -c239e335-d04a-3eca-b2aa-ea131d710d70,SESCO,II.5.1,San Luis,AR-D,annual,2010,gas oil combustion consumption by agriculture machines,3.65631924,TJ,CH4,3.9,kg/TJ,14.259645036,kg -c239e335-d04a-3eca-b2aa-ea131d710d70,SESCO,II.5.1,San Luis,AR-D,annual,2010,gas oil combustion consumption by agriculture machines,3.65631924,TJ,N2O,3.9,kg/TJ,14.259645036,kg -48d1e07d-cf6f-395e-b236-eabee075d9c9,SESCO,II.5.1,Santa Cruz,AR-Z,annual,2010,gas oil combustion consumption by agriculture machines,1.2311502,TJ,CO2,74100.0,kg/TJ,91228.22982000001,kg -0c7a9023-20f6-3c8c-beb0-333358ef44ea,SESCO,II.5.1,Santa Cruz,AR-Z,annual,2010,gas oil combustion consumption by agriculture machines,1.2311502,TJ,CH4,3.9,kg/TJ,4.80148578,kg -0c7a9023-20f6-3c8c-beb0-333358ef44ea,SESCO,II.5.1,Santa Cruz,AR-Z,annual,2010,gas oil combustion consumption by agriculture machines,1.2311502,TJ,N2O,3.9,kg/TJ,4.80148578,kg -d8adf129-8670-3b37-971b-1d6168270d62,SESCO,II.5.1,Santa Fe,AR-S,annual,2010,gas oil combustion consumption by agriculture machines,340.30208772000003,TJ,CO2,74100.0,kg/TJ,25216384.700052,kg -a575ee17-a4e2-3d66-8524-9ba5c41d9d73,SESCO,II.5.1,Santa Fe,AR-S,annual,2010,gas oil combustion consumption by agriculture machines,340.30208772000003,TJ,CH4,3.9,kg/TJ,1327.1781421080002,kg -a575ee17-a4e2-3d66-8524-9ba5c41d9d73,SESCO,II.5.1,Santa Fe,AR-S,annual,2010,gas oil combustion consumption by agriculture machines,340.30208772000003,TJ,N2O,3.9,kg/TJ,1327.1781421080002,kg -37c7399c-90bf-33c7-8780-cc8205a1ae8c,SESCO,II.5.1,Santiago del Estero,AR-G,annual,2010,gas oil combustion consumption by agriculture machines,549.08916048,TJ,CO2,74100.0,kg/TJ,40687506.791568,kg -0b2aee6f-80ae-3e37-b431-a6641fa5aaa0,SESCO,II.5.1,Santiago del Estero,AR-G,annual,2010,gas oil combustion consumption by agriculture machines,549.08916048,TJ,CH4,3.9,kg/TJ,2141.447725872,kg -0b2aee6f-80ae-3e37-b431-a6641fa5aaa0,SESCO,II.5.1,Santiago del Estero,AR-G,annual,2010,gas oil combustion consumption by agriculture machines,549.08916048,TJ,N2O,3.9,kg/TJ,2141.447725872,kg -cd9b4738-1d55-3393-9be2-b44bd2e3e445,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,gas oil combustion consumption by to the public,15897.257171879999,TJ,CO2,74100.0,kg/TJ,1177986756.436308,kg -a7e981d1-b938-362b-978d-4d66887fc538,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,gas oil combustion consumption by to the public,15897.257171879999,TJ,CH4,3.9,kg/TJ,61999.30297033199,kg -a7e981d1-b938-362b-978d-4d66887fc538,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,gas oil combustion consumption by to the public,15897.257171879999,TJ,N2O,3.9,kg/TJ,61999.30297033199,kg -a294eccb-37a0-3cd6-b60b-b7ba7f007a31,SESCO,II.1.1,Capital Federal,AR-C,annual,2010,gas oil combustion consumption by to the public,1116.22470372,TJ,CO2,74100.0,kg/TJ,82712250.545652,kg -25d0b03b-1b13-3d7f-ab42-9823b9d7b5bb,SESCO,II.1.1,Capital Federal,AR-C,annual,2010,gas oil combustion consumption by to the public,1116.22470372,TJ,CH4,3.9,kg/TJ,4353.276344508,kg -25d0b03b-1b13-3d7f-ab42-9823b9d7b5bb,SESCO,II.1.1,Capital Federal,AR-C,annual,2010,gas oil combustion consumption by to the public,1116.22470372,TJ,N2O,3.9,kg/TJ,4353.276344508,kg -8f17c3f5-d08b-3e14-8080-a65042104b1c,SESCO,II.1.1,Catamarca,AR-K,annual,2010,gas oil combustion consumption by to the public,154.6851642,TJ,CO2,74100.0,kg/TJ,11462170.66722,kg -01990b31-f688-3ebd-801c-8a2e8c3b3825,SESCO,II.1.1,Catamarca,AR-K,annual,2010,gas oil combustion consumption by to the public,154.6851642,TJ,CH4,3.9,kg/TJ,603.27214038,kg -01990b31-f688-3ebd-801c-8a2e8c3b3825,SESCO,II.1.1,Catamarca,AR-K,annual,2010,gas oil combustion consumption by to the public,154.6851642,TJ,N2O,3.9,kg/TJ,603.27214038,kg -e975b0fe-f754-30db-8aa5-78f70d2e763d,SESCO,II.1.1,Chaco,AR-H,annual,2010,gas oil combustion consumption by to the public,640.93354332,TJ,CO2,74100.0,kg/TJ,47493175.560012,kg -e9809e45-7c9e-32d7-88ea-447513bd56b6,SESCO,II.1.1,Chaco,AR-H,annual,2010,gas oil combustion consumption by to the public,640.93354332,TJ,CH4,3.9,kg/TJ,2499.640818948,kg -e9809e45-7c9e-32d7-88ea-447513bd56b6,SESCO,II.1.1,Chaco,AR-H,annual,2010,gas oil combustion consumption by to the public,640.93354332,TJ,N2O,3.9,kg/TJ,2499.640818948,kg -2e6ee8d5-f262-354d-a844-d2a63bbeec34,SESCO,II.1.1,Chubut,AR-U,annual,2010,gas oil combustion consumption by to the public,1622.6415878399998,TJ,CO2,74100.0,kg/TJ,120237741.65894398,kg -7154bf5b-3357-36a1-b14f-484408aa8625,SESCO,II.1.1,Chubut,AR-U,annual,2010,gas oil combustion consumption by to the public,1622.6415878399998,TJ,CH4,3.9,kg/TJ,6328.3021925759995,kg -7154bf5b-3357-36a1-b14f-484408aa8625,SESCO,II.1.1,Chubut,AR-U,annual,2010,gas oil combustion consumption by to the public,1622.6415878399998,TJ,N2O,3.9,kg/TJ,6328.3021925759995,kg -c91b8a3e-acfa-3e8a-a3bf-cd530b435352,SESCO,II.1.1,Corrientes,AR-W,annual,2010,gas oil combustion consumption by to the public,1243.53116076,TJ,CO2,74100.0,kg/TJ,92145659.01231599,kg -827e43ee-35c6-3bf6-b475-d33e233d50ac,SESCO,II.1.1,Corrientes,AR-W,annual,2010,gas oil combustion consumption by to the public,1243.53116076,TJ,CH4,3.9,kg/TJ,4849.771526963999,kg -827e43ee-35c6-3bf6-b475-d33e233d50ac,SESCO,II.1.1,Corrientes,AR-W,annual,2010,gas oil combustion consumption by to the public,1243.53116076,TJ,N2O,3.9,kg/TJ,4849.771526963999,kg -2f5057ce-caa7-3b73-8fe1-1b0f6f008321,SESCO,II.1.1,Córdoba,AR-X,annual,2010,gas oil combustion consumption by to the public,3902.444532,TJ,CO2,74100.0,kg/TJ,289171139.8212,kg -4cc81132-ec18-370c-b8eb-f3cd0f382d9d,SESCO,II.1.1,Córdoba,AR-X,annual,2010,gas oil combustion consumption by to the public,3902.444532,TJ,CH4,3.9,kg/TJ,15219.533674799999,kg -4cc81132-ec18-370c-b8eb-f3cd0f382d9d,SESCO,II.1.1,Córdoba,AR-X,annual,2010,gas oil combustion consumption by to the public,3902.444532,TJ,N2O,3.9,kg/TJ,15219.533674799999,kg -7e29df02-8695-3d9e-9aaf-7e038c0e2a1b,SESCO,II.1.1,Entre Rios,AR-E,annual,2010,gas oil combustion consumption by to the public,1919.4809491199999,TJ,CO2,74100.0,kg/TJ,142233538.329792,kg -39856afd-c641-3cb5-a898-c8500ec58ec1,SESCO,II.1.1,Entre Rios,AR-E,annual,2010,gas oil combustion consumption by to the public,1919.4809491199999,TJ,CH4,3.9,kg/TJ,7485.975701568,kg -39856afd-c641-3cb5-a898-c8500ec58ec1,SESCO,II.1.1,Entre Rios,AR-E,annual,2010,gas oil combustion consumption by to the public,1919.4809491199999,TJ,N2O,3.9,kg/TJ,7485.975701568,kg -b86f6861-05e0-30da-9195-fbc3831763ad,SESCO,II.1.1,Formosa,AR-P,annual,2010,gas oil combustion consumption by to the public,77.29448832,TJ,CO2,74100.0,kg/TJ,5727521.584512,kg -ecd7e186-aa11-3e21-8f4a-f354f278de5b,SESCO,II.1.1,Formosa,AR-P,annual,2010,gas oil combustion consumption by to the public,77.29448832,TJ,CH4,3.9,kg/TJ,301.448504448,kg -ecd7e186-aa11-3e21-8f4a-f354f278de5b,SESCO,II.1.1,Formosa,AR-P,annual,2010,gas oil combustion consumption by to the public,77.29448832,TJ,N2O,3.9,kg/TJ,301.448504448,kg -095defe4-4290-3572-97b5-2f0d34546c71,SESCO,II.1.1,Jujuy,AR-Y,annual,2010,gas oil combustion consumption by to the public,32.1074292,TJ,CO2,74100.0,kg/TJ,2379160.50372,kg -cea302aa-8e6b-3bad-8168-d1371b83535b,SESCO,II.1.1,Jujuy,AR-Y,annual,2010,gas oil combustion consumption by to the public,32.1074292,TJ,CH4,3.9,kg/TJ,125.21897388,kg -cea302aa-8e6b-3bad-8168-d1371b83535b,SESCO,II.1.1,Jujuy,AR-Y,annual,2010,gas oil combustion consumption by to the public,32.1074292,TJ,N2O,3.9,kg/TJ,125.21897388,kg -0b09a439-72a6-3223-9b97-48199d249273,SESCO,II.1.1,La Pampa,AR-L,annual,2010,gas oil combustion consumption by to the public,686.70697452,TJ,CO2,74100.0,kg/TJ,50884986.811932,kg -894c416e-f301-3684-a299-f2000d8da217,SESCO,II.1.1,La Pampa,AR-L,annual,2010,gas oil combustion consumption by to the public,686.70697452,TJ,CH4,3.9,kg/TJ,2678.157200628,kg -894c416e-f301-3684-a299-f2000d8da217,SESCO,II.1.1,La Pampa,AR-L,annual,2010,gas oil combustion consumption by to the public,686.70697452,TJ,N2O,3.9,kg/TJ,2678.157200628,kg -d4349e28-2eb4-341d-931a-d96ba8844651,SESCO,II.1.1,La Rioja,AR-F,annual,2010,gas oil combustion consumption by to the public,71.48682576,TJ,CO2,74100.0,kg/TJ,5297173.788816,kg -7608a69f-3f67-393e-90f9-5d02ae59c497,SESCO,II.1.1,La Rioja,AR-F,annual,2010,gas oil combustion consumption by to the public,71.48682576,TJ,CH4,3.9,kg/TJ,278.798620464,kg -7608a69f-3f67-393e-90f9-5d02ae59c497,SESCO,II.1.1,La Rioja,AR-F,annual,2010,gas oil combustion consumption by to the public,71.48682576,TJ,N2O,3.9,kg/TJ,278.798620464,kg -57646432-9ecb-334e-b396-65b9a712d485,SESCO,II.1.1,Mendoza,AR-M,annual,2010,gas oil combustion consumption by to the public,695.83569048,TJ,CO2,74100.0,kg/TJ,51561424.664568,kg -01aaaa5c-d100-3869-841f-ad668bb0d010,SESCO,II.1.1,Mendoza,AR-M,annual,2010,gas oil combustion consumption by to the public,695.83569048,TJ,CH4,3.9,kg/TJ,2713.7591928720003,kg -01aaaa5c-d100-3869-841f-ad668bb0d010,SESCO,II.1.1,Mendoza,AR-M,annual,2010,gas oil combustion consumption by to the public,695.83569048,TJ,N2O,3.9,kg/TJ,2713.7591928720003,kg -c6c64318-91d8-3c56-a92c-76e071ea527c,SESCO,II.1.1,Misiones,AR-N,annual,2010,gas oil combustion consumption by to the public,307.32228828,TJ,CO2,74100.0,kg/TJ,22772581.561548002,kg -767519f8-43f8-3082-a37c-7e2600810a65,SESCO,II.1.1,Misiones,AR-N,annual,2010,gas oil combustion consumption by to the public,307.32228828,TJ,CH4,3.9,kg/TJ,1198.556924292,kg -767519f8-43f8-3082-a37c-7e2600810a65,SESCO,II.1.1,Misiones,AR-N,annual,2010,gas oil combustion consumption by to the public,307.32228828,TJ,N2O,3.9,kg/TJ,1198.556924292,kg -ff47f7c1-e05d-380d-909e-18f83e8fcaa0,SESCO,II.1.1,Neuquén,AR-Q,annual,2010,gas oil combustion consumption by to the public,1064.12387928,TJ,CO2,74100.0,kg/TJ,78851579.454648,kg -20a94f73-7f59-36f2-8cd8-7a30d257b658,SESCO,II.1.1,Neuquén,AR-Q,annual,2010,gas oil combustion consumption by to the public,1064.12387928,TJ,CH4,3.9,kg/TJ,4150.083129191999,kg -20a94f73-7f59-36f2-8cd8-7a30d257b658,SESCO,II.1.1,Neuquén,AR-Q,annual,2010,gas oil combustion consumption by to the public,1064.12387928,TJ,N2O,3.9,kg/TJ,4150.083129191999,kg -6c1e1baf-7d95-36b5-ac6d-0c61ad48d4ba,SESCO,II.1.1,Rio Negro,AR-R,annual,2010,gas oil combustion consumption by to the public,1564.78818384,TJ,CO2,74100.0,kg/TJ,115950804.422544,kg -87812f9e-0d74-3c2d-9934-887979cb9a8c,SESCO,II.1.1,Rio Negro,AR-R,annual,2010,gas oil combustion consumption by to the public,1564.78818384,TJ,CH4,3.9,kg/TJ,6102.673916976,kg -87812f9e-0d74-3c2d-9934-887979cb9a8c,SESCO,II.1.1,Rio Negro,AR-R,annual,2010,gas oil combustion consumption by to the public,1564.78818384,TJ,N2O,3.9,kg/TJ,6102.673916976,kg -64e4d479-1e33-3a8d-a5b8-68b271fbe91d,SESCO,II.1.1,Salta,AR-A,annual,2010,gas oil combustion consumption by to the public,44.06148768,TJ,CO2,74100.0,kg/TJ,3264956.237088,kg -d9b2eb8c-5a6f-352c-bb1e-b1d1941c6314,SESCO,II.1.1,Salta,AR-A,annual,2010,gas oil combustion consumption by to the public,44.06148768,TJ,CH4,3.9,kg/TJ,171.839801952,kg -d9b2eb8c-5a6f-352c-bb1e-b1d1941c6314,SESCO,II.1.1,Salta,AR-A,annual,2010,gas oil combustion consumption by to the public,44.06148768,TJ,N2O,3.9,kg/TJ,171.839801952,kg -053d8200-4792-36c5-bb4e-2bf6b6c09acf,SESCO,II.1.1,San Juan,AR-J,annual,2010,gas oil combustion consumption by to the public,454.39740192,TJ,CO2,74100.0,kg/TJ,33670847.482272,kg -1f365aec-d4ac-38b1-bda6-ab5e6ec1313b,SESCO,II.1.1,San Juan,AR-J,annual,2010,gas oil combustion consumption by to the public,454.39740192,TJ,CH4,3.9,kg/TJ,1772.149867488,kg -1f365aec-d4ac-38b1-bda6-ab5e6ec1313b,SESCO,II.1.1,San Juan,AR-J,annual,2010,gas oil combustion consumption by to the public,454.39740192,TJ,N2O,3.9,kg/TJ,1772.149867488,kg -43e3e853-9b5e-3e4e-95cf-dfb5f57a42f6,SESCO,II.1.1,San Luis,AR-D,annual,2010,gas oil combustion consumption by to the public,332.52617412,TJ,CO2,74100.0,kg/TJ,24640189.502292,kg -f2937748-7073-3fbc-ae96-99955eb11182,SESCO,II.1.1,San Luis,AR-D,annual,2010,gas oil combustion consumption by to the public,332.52617412,TJ,CH4,3.9,kg/TJ,1296.852079068,kg -f2937748-7073-3fbc-ae96-99955eb11182,SESCO,II.1.1,San Luis,AR-D,annual,2010,gas oil combustion consumption by to the public,332.52617412,TJ,N2O,3.9,kg/TJ,1296.852079068,kg -082a526e-6b03-37d7-b7de-7a958f267eab,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2010,gas oil combustion consumption by to the public,1145.99722776,TJ,CO2,74100.0,kg/TJ,84918394.577016,kg -00efda49-4ab4-32f6-b93d-80ed2c319e5b,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2010,gas oil combustion consumption by to the public,1145.99722776,TJ,CH4,3.9,kg/TJ,4469.389188264,kg -00efda49-4ab4-32f6-b93d-80ed2c319e5b,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2010,gas oil combustion consumption by to the public,1145.99722776,TJ,N2O,3.9,kg/TJ,4469.389188264,kg -4878c113-175f-33f1-9fdf-99093dc99e05,SESCO,II.1.1,Santa Fe,AR-S,annual,2010,gas oil combustion consumption by to the public,5367.71312196,TJ,CO2,74100.0,kg/TJ,397747542.337236,kg -7d04654b-6a48-3dfb-806f-20a0ab944c55,SESCO,II.1.1,Santa Fe,AR-S,annual,2010,gas oil combustion consumption by to the public,5367.71312196,TJ,CH4,3.9,kg/TJ,20934.081175643998,kg -7d04654b-6a48-3dfb-806f-20a0ab944c55,SESCO,II.1.1,Santa Fe,AR-S,annual,2010,gas oil combustion consumption by to the public,5367.71312196,TJ,N2O,3.9,kg/TJ,20934.081175643998,kg -6993e55b-59ed-341e-b48e-033daa7d2747,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2010,gas oil combustion consumption by to the public,260.91863532,TJ,CO2,74100.0,kg/TJ,19334070.877212003,kg -4a9852d9-b721-35f3-8658-092f4a897238,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2010,gas oil combustion consumption by to the public,260.91863532,TJ,CH4,3.9,kg/TJ,1017.582677748,kg -4a9852d9-b721-35f3-8658-092f4a897238,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2010,gas oil combustion consumption by to the public,260.91863532,TJ,N2O,3.9,kg/TJ,1017.582677748,kg -b90f5b36-7097-3668-89e5-f6538e83382b,SESCO,II.1.1,Tucuman,AR-T,annual,2010,gas oil combustion consumption by to the public,633.5000473199999,TJ,CO2,74100.0,kg/TJ,46942353.50641199,kg -3fd146ba-b710-387e-bda4-d249f27e238b,SESCO,II.1.1,Tucuman,AR-T,annual,2010,gas oil combustion consumption by to the public,633.5000473199999,TJ,CH4,3.9,kg/TJ,2470.6501845479997,kg -3fd146ba-b710-387e-bda4-d249f27e238b,SESCO,II.1.1,Tucuman,AR-T,annual,2010,gas oil combustion consumption by to the public,633.5000473199999,TJ,N2O,3.9,kg/TJ,2470.6501845479997,kg -a8726898-d486-395a-885a-0c6d7b636047,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,gas oil combustion consumption by to the public,187.98896004,TJ,CO2,74100.0,kg/TJ,13929981.938964,kg -b1077eee-41ca-342a-a4e2-a25b5b77afae,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,gas oil combustion consumption by to the public,187.98896004,TJ,CH4,3.9,kg/TJ,733.156944156,kg -b1077eee-41ca-342a-a4e2-a25b5b77afae,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,gas oil combustion consumption by to the public,187.98896004,TJ,N2O,3.9,kg/TJ,733.156944156,kg -a3251518-2716-3640-b065-76d9f9f0d163,SESCO,II.1.1,Capital Federal,AR-C,annual,2010,gas oil combustion consumption by to the public,24.0580872,TJ,CO2,74100.0,kg/TJ,1782704.26152,kg -96d80998-f540-301f-b93f-10cf66bf78b3,SESCO,II.1.1,Capital Federal,AR-C,annual,2010,gas oil combustion consumption by to the public,24.0580872,TJ,CH4,3.9,kg/TJ,93.82654008,kg -96d80998-f540-301f-b93f-10cf66bf78b3,SESCO,II.1.1,Capital Federal,AR-C,annual,2010,gas oil combustion consumption by to the public,24.0580872,TJ,N2O,3.9,kg/TJ,93.82654008,kg -9ce4ec6e-6e22-39e5-9059-d89826bc9203,SESCO,II.1.1,Córdoba,AR-X,annual,2010,gas oil combustion consumption by to the public,25.03321884,TJ,CO2,74100.0,kg/TJ,1854961.516044,kg -ab589121-8ac5-3638-abf2-a426c5c8f3f0,SESCO,II.1.1,Córdoba,AR-X,annual,2010,gas oil combustion consumption by to the public,25.03321884,TJ,CH4,3.9,kg/TJ,97.629553476,kg -ab589121-8ac5-3638-abf2-a426c5c8f3f0,SESCO,II.1.1,Córdoba,AR-X,annual,2010,gas oil combustion consumption by to the public,25.03321884,TJ,N2O,3.9,kg/TJ,97.629553476,kg -63dadbee-89f5-343f-8ba2-f078a9f5012f,SESCO,II.1.1,Entre Rios,AR-E,annual,2010,gas oil combustion consumption by to the public,12.272131199999999,TJ,CO2,74100.0,kg/TJ,909364.9219199999,kg -a5561104-0046-3ab1-afbf-15d984b06b10,SESCO,II.1.1,Entre Rios,AR-E,annual,2010,gas oil combustion consumption by to the public,12.272131199999999,TJ,CH4,3.9,kg/TJ,47.86131167999999,kg -a5561104-0046-3ab1-afbf-15d984b06b10,SESCO,II.1.1,Entre Rios,AR-E,annual,2010,gas oil combustion consumption by to the public,12.272131199999999,TJ,N2O,3.9,kg/TJ,47.86131167999999,kg -3e30ef3f-200f-3ef7-981f-aeeb2cfdcc6b,SESCO,II.1.1,Santa Fe,AR-S,annual,2010,gas oil combustion consumption by to the public,27.72538692,TJ,CO2,74100.0,kg/TJ,2054451.170772,kg -cc57a673-6314-33dd-8fda-0a0aa391512e,SESCO,II.1.1,Santa Fe,AR-S,annual,2010,gas oil combustion consumption by to the public,27.72538692,TJ,CH4,3.9,kg/TJ,108.129008988,kg -cc57a673-6314-33dd-8fda-0a0aa391512e,SESCO,II.1.1,Santa Fe,AR-S,annual,2010,gas oil combustion consumption by to the public,27.72538692,TJ,N2O,3.9,kg/TJ,108.129008988,kg -266c852d-6476-306c-835f-40866ebec28a,SESCO,I.3.1,Tucuman,AR-T,annual,2010,gas oil combustion consumption by petrochemical industries,2.58341076,TJ,CO2,74100.0,kg/TJ,191430.737316,kg -74ed24b0-8f24-3e3c-ab6d-c0d6256f2db9,SESCO,I.3.1,Tucuman,AR-T,annual,2010,gas oil combustion consumption by petrochemical industries,2.58341076,TJ,CH4,3.9,kg/TJ,10.075301964,kg -74ed24b0-8f24-3e3c-ab6d-c0d6256f2db9,SESCO,I.3.1,Tucuman,AR-T,annual,2010,gas oil combustion consumption by petrochemical industries,2.58341076,TJ,N2O,3.9,kg/TJ,10.075301964,kg -b2cd757c-778a-37dc-8604-0856a739ee2e,SESCO,II.2.1,Rio Negro,AR-R,annual,2010,gas oil combustion consumption by railway transport,21.56931084,TJ,CO2,74100.0,kg/TJ,1598285.933244,kg -55c10729-c76b-3c4b-ad94-6e5c9c323aba,SESCO,II.2.1,Rio Negro,AR-R,annual,2010,gas oil combustion consumption by railway transport,21.56931084,TJ,CH4,3.9,kg/TJ,84.12031227599999,kg -55c10729-c76b-3c4b-ad94-6e5c9c323aba,SESCO,II.2.1,Rio Negro,AR-R,annual,2010,gas oil combustion consumption by railway transport,21.56931084,TJ,N2O,3.9,kg/TJ,84.12031227599999,kg -47947c61-e447-34fc-8e8c-065455c32524,SESCO,II.1.1,Capital Federal,AR-C,annual,2010,gasoline combustion consumption by freight transport,10.8168639,TJ,CO2,69300.0,kg/TJ,749608.66827,kg -c5c1486c-d7b2-3c05-a518-c80156bf704f,SESCO,II.1.1,Capital Federal,AR-C,annual,2010,gasoline combustion consumption by freight transport,10.8168639,TJ,CH4,33.0,kg/TJ,356.9565087,kg -20edffa5-2ea6-3e26-94b5-429365e33cde,SESCO,II.1.1,Capital Federal,AR-C,annual,2010,gasoline combustion consumption by freight transport,10.8168639,TJ,N2O,3.2,kg/TJ,34.61396448,kg -714da5b3-c7c1-36a6-9d3c-1de56e419c8d,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,gas oil combustion consumption by freight transport,441.81514439999995,TJ,CO2,74100.0,kg/TJ,32738502.200039998,kg -be256157-741b-3873-9562-990f1f5e86db,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,gas oil combustion consumption by freight transport,441.81514439999995,TJ,CH4,3.9,kg/TJ,1723.0790631599998,kg -be256157-741b-3873-9562-990f1f5e86db,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,gas oil combustion consumption by freight transport,441.81514439999995,TJ,N2O,3.9,kg/TJ,1723.0790631599998,kg -5f34f61a-edc2-3859-880d-00a84c9fab07,SESCO,II.1.1,Capital Federal,AR-C,annual,2010,gas oil combustion consumption by freight transport,2.75115204,TJ,CO2,74100.0,kg/TJ,203860.366164,kg -0fa2c04c-53eb-37f7-ba3c-f757a55a39d9,SESCO,II.1.1,Capital Federal,AR-C,annual,2010,gas oil combustion consumption by freight transport,2.75115204,TJ,CH4,3.9,kg/TJ,10.729492956,kg -0fa2c04c-53eb-37f7-ba3c-f757a55a39d9,SESCO,II.1.1,Capital Federal,AR-C,annual,2010,gas oil combustion consumption by freight transport,2.75115204,TJ,N2O,3.9,kg/TJ,10.729492956,kg -f0743c80-56b0-37ea-8afb-6f7dffe2dfb8,SESCO,II.1.1,Chubut,AR-U,annual,2010,gas oil combustion consumption by freight transport,11.89893936,TJ,CO2,74100.0,kg/TJ,881711.406576,kg -f75e4424-34c4-3413-ad1f-5636f51ade94,SESCO,II.1.1,Chubut,AR-U,annual,2010,gas oil combustion consumption by freight transport,11.89893936,TJ,CH4,3.9,kg/TJ,46.405863503999996,kg -f75e4424-34c4-3413-ad1f-5636f51ade94,SESCO,II.1.1,Chubut,AR-U,annual,2010,gas oil combustion consumption by freight transport,11.89893936,TJ,N2O,3.9,kg/TJ,46.405863503999996,kg -5bafaa80-2f3c-3cf8-99a7-c773ae9d1509,SESCO,II.1.1,Córdoba,AR-X,annual,2010,gas oil combustion consumption by freight transport,82.29324348,TJ,CO2,74100.0,kg/TJ,6097929.341868,kg -a5530255-87d3-3e05-ab43-53d22c07a4ce,SESCO,II.1.1,Córdoba,AR-X,annual,2010,gas oil combustion consumption by freight transport,82.29324348,TJ,CH4,3.9,kg/TJ,320.94364957199997,kg -a5530255-87d3-3e05-ab43-53d22c07a4ce,SESCO,II.1.1,Córdoba,AR-X,annual,2010,gas oil combustion consumption by freight transport,82.29324348,TJ,N2O,3.9,kg/TJ,320.94364957199997,kg -e0d63a60-54dd-319c-acea-02eb49d2b5f7,SESCO,II.1.1,San Luis,AR-D,annual,2010,gas oil combustion consumption by freight transport,28.236629399999998,TJ,CO2,74100.0,kg/TJ,2092334.2385399998,kg -5fc7f6e3-253e-340d-9fb0-7b9d4d80f5ae,SESCO,II.1.1,San Luis,AR-D,annual,2010,gas oil combustion consumption by freight transport,28.236629399999998,TJ,CH4,3.9,kg/TJ,110.12285465999999,kg -5fc7f6e3-253e-340d-9fb0-7b9d4d80f5ae,SESCO,II.1.1,San Luis,AR-D,annual,2010,gas oil combustion consumption by freight transport,28.236629399999998,TJ,N2O,3.9,kg/TJ,110.12285465999999,kg -902850c4-f70c-3ff0-a9ce-44fdcdb272bf,SESCO,II.1.1,Santa Fe,AR-S,annual,2010,gas oil combustion consumption by freight transport,6.103088039999999,TJ,CO2,74100.0,kg/TJ,452238.823764,kg -da8e052a-ca83-325d-86fa-7dd9f6a6a2fb,SESCO,II.1.1,Santa Fe,AR-S,annual,2010,gas oil combustion consumption by freight transport,6.103088039999999,TJ,CH4,3.9,kg/TJ,23.802043356,kg -da8e052a-ca83-325d-86fa-7dd9f6a6a2fb,SESCO,II.1.1,Santa Fe,AR-S,annual,2010,gas oil combustion consumption by freight transport,6.103088039999999,TJ,N2O,3.9,kg/TJ,23.802043356,kg -da8fe3e5-6e1f-37ec-a21b-10b48f9b7c5e,SESCO,II.1.1,Rio Negro,AR-R,annual,2010,gasoline combustion consumption by public passenger transport,2.341698,TJ,CO2,69300.0,kg/TJ,162279.6714,kg -67a954a1-5758-3d6c-92f8-c673c5dcf09c,SESCO,II.1.1,Rio Negro,AR-R,annual,2010,gasoline combustion consumption by public passenger transport,2.341698,TJ,CH4,33.0,kg/TJ,77.276034,kg -b4e2ea4a-0e2a-3c63-8a28-ec9fe1f0d19c,SESCO,II.1.1,Rio Negro,AR-R,annual,2010,gasoline combustion consumption by public passenger transport,2.341698,TJ,N2O,3.2,kg/TJ,7.4934336,kg -6c3a4578-e756-3484-9bb2-5112e4354d77,SESCO,II.1.1,Santa Fe,AR-S,annual,2010,gasoline combustion consumption by public passenger transport,52.4434032,TJ,CO2,69300.0,kg/TJ,3634327.8417599997,kg -39c5027f-6fe5-3ac8-8321-49415a84b7aa,SESCO,II.1.1,Santa Fe,AR-S,annual,2010,gasoline combustion consumption by public passenger transport,52.4434032,TJ,CH4,33.0,kg/TJ,1730.6323055999999,kg -2721b202-5eb8-3248-a351-6e40e4e6f444,SESCO,II.1.1,Santa Fe,AR-S,annual,2010,gasoline combustion consumption by public passenger transport,52.4434032,TJ,N2O,3.2,kg/TJ,167.81889024,kg -85cf5fd8-779e-3c93-925f-11b6a3fe227c,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,gas oil combustion consumption by public passenger transport,728.02330608,TJ,CO2,74100.0,kg/TJ,53946526.980528,kg -16e31b7f-f08e-39d6-ba97-214fd5124904,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,gas oil combustion consumption by public passenger transport,728.02330608,TJ,CH4,3.9,kg/TJ,2839.290893712,kg -16e31b7f-f08e-39d6-ba97-214fd5124904,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,gas oil combustion consumption by public passenger transport,728.02330608,TJ,N2O,3.9,kg/TJ,2839.290893712,kg -24140101-1366-31d8-a002-35a8adfb7718,SESCO,II.1.1,Capital Federal,AR-C,annual,2010,gas oil combustion consumption by public passenger transport,198.36226283999997,TJ,CO2,74100.0,kg/TJ,14698643.676443998,kg -c9aaf31c-9df0-31af-9cb0-273c81435c33,SESCO,II.1.1,Capital Federal,AR-C,annual,2010,gas oil combustion consumption by public passenger transport,198.36226283999997,TJ,CH4,3.9,kg/TJ,773.6128250759999,kg -c9aaf31c-9df0-31af-9cb0-273c81435c33,SESCO,II.1.1,Capital Federal,AR-C,annual,2010,gas oil combustion consumption by public passenger transport,198.36226283999997,TJ,N2O,3.9,kg/TJ,773.6128250759999,kg -c9a8358c-18d6-31c4-809c-962fbe244156,SESCO,II.1.1,Corrientes,AR-W,annual,2010,gas oil combustion consumption by public passenger transport,0.35484287999999997,TJ,CO2,74100.0,kg/TJ,26293.857407999996,kg -94b784e2-fc82-3190-ad30-091cedc4274d,SESCO,II.1.1,Corrientes,AR-W,annual,2010,gas oil combustion consumption by public passenger transport,0.35484287999999997,TJ,CH4,3.9,kg/TJ,1.383887232,kg -94b784e2-fc82-3190-ad30-091cedc4274d,SESCO,II.1.1,Corrientes,AR-W,annual,2010,gas oil combustion consumption by public passenger transport,0.35484287999999997,TJ,N2O,3.9,kg/TJ,1.383887232,kg -c486efd8-d16a-30b7-a727-5e950c4e5aed,SESCO,II.1.1,Córdoba,AR-X,annual,2010,gas oil combustion consumption by public passenger transport,62.506599120000004,TJ,CO2,74100.0,kg/TJ,4631738.994792,kg -d06611f5-6936-3aff-832d-2a60a247da0b,SESCO,II.1.1,Córdoba,AR-X,annual,2010,gas oil combustion consumption by public passenger transport,62.506599120000004,TJ,CH4,3.9,kg/TJ,243.775736568,kg -d06611f5-6936-3aff-832d-2a60a247da0b,SESCO,II.1.1,Córdoba,AR-X,annual,2010,gas oil combustion consumption by public passenger transport,62.506599120000004,TJ,N2O,3.9,kg/TJ,243.775736568,kg -140474bb-45de-380d-b659-cb276d24a3f4,SESCO,II.1.1,Entre Rios,AR-E,annual,2010,gas oil combustion consumption by public passenger transport,65.70935951999999,TJ,CO2,74100.0,kg/TJ,4869063.540432,kg -0c1de430-4c69-3280-afd4-4f019a032417,SESCO,II.1.1,Entre Rios,AR-E,annual,2010,gas oil combustion consumption by public passenger transport,65.70935951999999,TJ,CH4,3.9,kg/TJ,256.26650212799996,kg -0c1de430-4c69-3280-afd4-4f019a032417,SESCO,II.1.1,Entre Rios,AR-E,annual,2010,gas oil combustion consumption by public passenger transport,65.70935951999999,TJ,N2O,3.9,kg/TJ,256.26650212799996,kg -88d65b23-4843-3ddd-8046-e1d29aeefdf2,SESCO,II.1.1,Formosa,AR-P,annual,2010,gas oil combustion consumption by public passenger transport,6.57640452,TJ,CO2,74100.0,kg/TJ,487311.57493199996,kg -a4ceec25-6669-363b-a2c9-0c2be5ea346a,SESCO,II.1.1,Formosa,AR-P,annual,2010,gas oil combustion consumption by public passenger transport,6.57640452,TJ,CH4,3.9,kg/TJ,25.647977628,kg -a4ceec25-6669-363b-a2c9-0c2be5ea346a,SESCO,II.1.1,Formosa,AR-P,annual,2010,gas oil combustion consumption by public passenger transport,6.57640452,TJ,N2O,3.9,kg/TJ,25.647977628,kg -4c34caf3-c33c-3e64-97ae-0115be8eb89f,SESCO,II.1.1,Neuquén,AR-Q,annual,2010,gas oil combustion consumption by public passenger transport,18.79785936,TJ,CO2,74100.0,kg/TJ,1392921.378576,kg -f6b70e16-11c1-3759-a8f3-5e017e4ba352,SESCO,II.1.1,Neuquén,AR-Q,annual,2010,gas oil combustion consumption by public passenger transport,18.79785936,TJ,CH4,3.9,kg/TJ,73.311651504,kg -f6b70e16-11c1-3759-a8f3-5e017e4ba352,SESCO,II.1.1,Neuquén,AR-Q,annual,2010,gas oil combustion consumption by public passenger transport,18.79785936,TJ,N2O,3.9,kg/TJ,73.311651504,kg -6022dfa0-ce5e-3e4c-a412-805851a9d377,SESCO,II.1.1,Rio Negro,AR-R,annual,2010,gas oil combustion consumption by public passenger transport,81.22651151999999,TJ,CO2,74100.0,kg/TJ,6018884.503631999,kg -9d56e398-d38a-37f3-8bf9-0e0f4d349278,SESCO,II.1.1,Rio Negro,AR-R,annual,2010,gas oil combustion consumption by public passenger transport,81.22651151999999,TJ,CH4,3.9,kg/TJ,316.78339492799995,kg -9d56e398-d38a-37f3-8bf9-0e0f4d349278,SESCO,II.1.1,Rio Negro,AR-R,annual,2010,gas oil combustion consumption by public passenger transport,81.22651151999999,TJ,N2O,3.9,kg/TJ,316.78339492799995,kg -d94607e1-ed2d-3059-9a12-b8e3af997c2c,SESCO,II.1.1,San Juan,AR-J,annual,2010,gas oil combustion consumption by public passenger transport,13.24639596,TJ,CO2,74100.0,kg/TJ,981557.9406359999,kg -13f3b31e-2343-3d36-9bbb-cac14a7d7efc,SESCO,II.1.1,San Juan,AR-J,annual,2010,gas oil combustion consumption by public passenger transport,13.24639596,TJ,CH4,3.9,kg/TJ,51.66094424399999,kg -13f3b31e-2343-3d36-9bbb-cac14a7d7efc,SESCO,II.1.1,San Juan,AR-J,annual,2010,gas oil combustion consumption by public passenger transport,13.24639596,TJ,N2O,3.9,kg/TJ,51.66094424399999,kg -9dc92a60-daa5-3696-8567-441082f8b037,SESCO,II.1.1,San Luis,AR-D,annual,2010,gas oil combustion consumption by public passenger transport,48.64630764,TJ,CO2,74100.0,kg/TJ,3604691.396124,kg -d1391aa3-5c41-3f63-ac5a-b8802a874e3d,SESCO,II.1.1,San Luis,AR-D,annual,2010,gas oil combustion consumption by public passenger transport,48.64630764,TJ,CH4,3.9,kg/TJ,189.72059979600002,kg -d1391aa3-5c41-3f63-ac5a-b8802a874e3d,SESCO,II.1.1,San Luis,AR-D,annual,2010,gas oil combustion consumption by public passenger transport,48.64630764,TJ,N2O,3.9,kg/TJ,189.72059979600002,kg -5d5e0a7e-d16c-3eb4-8a86-0a311fa3ff41,SESCO,II.1.1,Santa Fe,AR-S,annual,2010,gas oil combustion consumption by public passenger transport,681.706305,TJ,CO2,74100.0,kg/TJ,50514437.200500004,kg -cad27706-d2df-3906-bb0e-e70fd063d417,SESCO,II.1.1,Santa Fe,AR-S,annual,2010,gas oil combustion consumption by public passenger transport,681.706305,TJ,CH4,3.9,kg/TJ,2658.6545895,kg -cad27706-d2df-3906-bb0e-e70fd063d417,SESCO,II.1.1,Santa Fe,AR-S,annual,2010,gas oil combustion consumption by public passenger transport,681.706305,TJ,N2O,3.9,kg/TJ,2658.6545895,kg -4b1ca251-8ed2-3d4a-a252-40fc40f53c9d,SESCO,I.3.1,Córdoba,AR-X,annual,2010,gas oil combustion consumption by petrochemical industries,0.0299796,TJ,CO2,74100.0,kg/TJ,2221.48836,kg -20410739-04b8-3949-962e-5331cc1e0a8a,SESCO,I.3.1,Córdoba,AR-X,annual,2010,gas oil combustion consumption by petrochemical industries,0.0299796,TJ,CH4,3.9,kg/TJ,0.11692043999999999,kg -20410739-04b8-3949-962e-5331cc1e0a8a,SESCO,I.3.1,Córdoba,AR-X,annual,2010,gas oil combustion consumption by petrochemical industries,0.0299796,TJ,N2O,3.9,kg/TJ,0.11692043999999999,kg -08b744dd-ad66-339e-b209-0dd365ed0140,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,gas oil combustion consumption by to the public,2346.8810349600003,TJ,CO2,74100.0,kg/TJ,173903884.69053602,kg -9fe029f4-f63c-3464-9a00-745c4c4f6ac5,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,gas oil combustion consumption by to the public,2346.8810349600003,TJ,CH4,3.9,kg/TJ,9152.836036344,kg -9fe029f4-f63c-3464-9a00-745c4c4f6ac5,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,gas oil combustion consumption by to the public,2346.8810349600003,TJ,N2O,3.9,kg/TJ,9152.836036344,kg -3ecddea6-8751-368a-b137-8052f57e02fe,SESCO,II.1.1,Capital Federal,AR-C,annual,2010,gas oil combustion consumption by to the public,23.599002,TJ,CO2,74100.0,kg/TJ,1748686.0481999998,kg -20178c2b-feca-3b52-bd40-97de685a317f,SESCO,II.1.1,Capital Federal,AR-C,annual,2010,gas oil combustion consumption by to the public,23.599002,TJ,CH4,3.9,kg/TJ,92.0361078,kg -20178c2b-feca-3b52-bd40-97de685a317f,SESCO,II.1.1,Capital Federal,AR-C,annual,2010,gas oil combustion consumption by to the public,23.599002,TJ,N2O,3.9,kg/TJ,92.0361078,kg -8ff07cc2-ad9d-3344-a3b3-5b79ebff389d,SESCO,II.1.1,Corrientes,AR-W,annual,2010,gas oil combustion consumption by to the public,16.57908,TJ,CO2,74100.0,kg/TJ,1228509.828,kg -dc5c7294-9a04-3e83-b36f-0cbe6dd01b83,SESCO,II.1.1,Corrientes,AR-W,annual,2010,gas oil combustion consumption by to the public,16.57908,TJ,CH4,3.9,kg/TJ,64.658412,kg -dc5c7294-9a04-3e83-b36f-0cbe6dd01b83,SESCO,II.1.1,Corrientes,AR-W,annual,2010,gas oil combustion consumption by to the public,16.57908,TJ,N2O,3.9,kg/TJ,64.658412,kg -66c87f88-c8f8-3b7e-9d52-82c00f6bb15a,SESCO,II.1.1,Córdoba,AR-X,annual,2010,gas oil combustion consumption by to the public,1464.666,TJ,CO2,74100.0,kg/TJ,108531750.6,kg -44ab9863-7368-3f5a-9679-061463bae2c6,SESCO,II.1.1,Córdoba,AR-X,annual,2010,gas oil combustion consumption by to the public,1464.666,TJ,CH4,3.9,kg/TJ,5712.1974,kg -44ab9863-7368-3f5a-9679-061463bae2c6,SESCO,II.1.1,Córdoba,AR-X,annual,2010,gas oil combustion consumption by to the public,1464.666,TJ,N2O,3.9,kg/TJ,5712.1974,kg -640130f2-2f40-3b65-b2e6-1b23dff2680a,SESCO,II.1.1,Entre Rios,AR-E,annual,2010,gas oil combustion consumption by to the public,397.153848,TJ,CO2,74100.0,kg/TJ,29429100.1368,kg -cd701967-8e7e-3154-ac9d-a14bd65793bc,SESCO,II.1.1,Entre Rios,AR-E,annual,2010,gas oil combustion consumption by to the public,397.153848,TJ,CH4,3.9,kg/TJ,1548.9000072,kg -cd701967-8e7e-3154-ac9d-a14bd65793bc,SESCO,II.1.1,Entre Rios,AR-E,annual,2010,gas oil combustion consumption by to the public,397.153848,TJ,N2O,3.9,kg/TJ,1548.9000072,kg -e70f2751-b3a2-3c51-8389-9af761b45570,SESCO,II.1.1,Santa Fe,AR-S,annual,2010,gas oil combustion consumption by to the public,719.07696,TJ,CO2,74100.0,kg/TJ,53283602.736,kg -a3588049-8ab3-3daf-897d-2c9d976d2a99,SESCO,II.1.1,Santa Fe,AR-S,annual,2010,gas oil combustion consumption by to the public,719.07696,TJ,CH4,3.9,kg/TJ,2804.4001439999997,kg -a3588049-8ab3-3daf-897d-2c9d976d2a99,SESCO,II.1.1,Santa Fe,AR-S,annual,2010,gas oil combustion consumption by to the public,719.07696,TJ,N2O,3.9,kg/TJ,2804.4001439999997,kg -d0ccd2ba-3220-305c-a472-4ccc4edcf5be,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,gas oil combustion consumption by to the public,12.131407679999999,TJ,CO2,74100.0,kg/TJ,898937.3090879999,kg -ea094207-58bf-3eaa-a88d-0b47a0f8b290,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,gas oil combustion consumption by to the public,12.131407679999999,TJ,CH4,3.9,kg/TJ,47.31248995199999,kg -ea094207-58bf-3eaa-a88d-0b47a0f8b290,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,gas oil combustion consumption by to the public,12.131407679999999,TJ,N2O,3.9,kg/TJ,47.31248995199999,kg -6cf11c2f-6917-327e-bac2-565fb388cc69,SESCO,II.1.1,Corrientes,AR-W,annual,2010,gas oil combustion consumption by to the public,3.17856,TJ,CO2,74100.0,kg/TJ,235531.296,kg -ad9d49ef-596c-39a5-8c29-5b551683d86d,SESCO,II.1.1,Corrientes,AR-W,annual,2010,gas oil combustion consumption by to the public,3.17856,TJ,CH4,3.9,kg/TJ,12.396384,kg -ad9d49ef-596c-39a5-8c29-5b551683d86d,SESCO,II.1.1,Corrientes,AR-W,annual,2010,gas oil combustion consumption by to the public,3.17856,TJ,N2O,3.9,kg/TJ,12.396384,kg -4d7ce50e-be74-36eb-aa02-5dc8acb62dfe,SESCO,II.1.1,Córdoba,AR-X,annual,2010,gas oil combustion consumption by to the public,10.58316,TJ,CO2,74100.0,kg/TJ,784212.156,kg -5b757aca-5537-34b4-ab82-9b214fb2814b,SESCO,II.1.1,Córdoba,AR-X,annual,2010,gas oil combustion consumption by to the public,10.58316,TJ,CH4,3.9,kg/TJ,41.274324,kg -5b757aca-5537-34b4-ab82-9b214fb2814b,SESCO,II.1.1,Córdoba,AR-X,annual,2010,gas oil combustion consumption by to the public,10.58316,TJ,N2O,3.9,kg/TJ,41.274324,kg -c74c70b1-f013-38d5-bd65-5ab644947e1c,SESCO,II.1.1,Entre Rios,AR-E,annual,2010,gas oil combustion consumption by to the public,3.2977559999999997,TJ,CO2,74100.0,kg/TJ,244363.71959999998,kg -c77f2443-4d27-3cb5-97be-4215e9bdfd3a,SESCO,II.1.1,Entre Rios,AR-E,annual,2010,gas oil combustion consumption by to the public,3.2977559999999997,TJ,CH4,3.9,kg/TJ,12.8612484,kg -c77f2443-4d27-3cb5-97be-4215e9bdfd3a,SESCO,II.1.1,Entre Rios,AR-E,annual,2010,gas oil combustion consumption by to the public,3.2977559999999997,TJ,N2O,3.9,kg/TJ,12.8612484,kg -e9cf7dc9-0745-331f-9935-436d0af77ea7,SESCO,II.1.1,Santa Fe,AR-S,annual,2010,gas oil combustion consumption by to the public,5.92368,TJ,CO2,74100.0,kg/TJ,438944.688,kg -f3fe4f16-0f97-3063-961e-9216d7199f1a,SESCO,II.1.1,Santa Fe,AR-S,annual,2010,gas oil combustion consumption by to the public,5.92368,TJ,CH4,3.9,kg/TJ,23.102352,kg -f3fe4f16-0f97-3063-961e-9216d7199f1a,SESCO,II.1.1,Santa Fe,AR-S,annual,2010,gas oil combustion consumption by to the public,5.92368,TJ,N2O,3.9,kg/TJ,23.102352,kg -10645637-dac5-3866-9d8a-43798cfb70ed,SESCO,II.1.1,Catamarca,AR-K,annual,2010,gas oil combustion consumption by to the public,343.6550712,TJ,CO2,74100.0,kg/TJ,25464840.77592,kg -32f877a4-0869-3ffa-bfd2-f632ebc3cbd4,SESCO,II.1.1,Catamarca,AR-K,annual,2010,gas oil combustion consumption by to the public,343.6550712,TJ,CH4,3.9,kg/TJ,1340.25477768,kg -32f877a4-0869-3ffa-bfd2-f632ebc3cbd4,SESCO,II.1.1,Catamarca,AR-K,annual,2010,gas oil combustion consumption by to the public,343.6550712,TJ,N2O,3.9,kg/TJ,1340.25477768,kg -833c7f3c-5d69-3fd8-916a-ccad14966cfe,SESCO,II.1.1,Chaco,AR-H,annual,2010,gas oil combustion consumption by to the public,286.3012068,TJ,CO2,74100.0,kg/TJ,21214919.42388,kg -715b579e-344e-36fa-bea7-6308ebbaa90c,SESCO,II.1.1,Chaco,AR-H,annual,2010,gas oil combustion consumption by to the public,286.3012068,TJ,CH4,3.9,kg/TJ,1116.5747065199998,kg -715b579e-344e-36fa-bea7-6308ebbaa90c,SESCO,II.1.1,Chaco,AR-H,annual,2010,gas oil combustion consumption by to the public,286.3012068,TJ,N2O,3.9,kg/TJ,1116.5747065199998,kg -40da4348-d68e-3275-840d-55b4a52b6c93,SESCO,II.1.1,Córdoba,AR-X,annual,2010,gas oil combustion consumption by to the public,192.9562908,TJ,CO2,74100.0,kg/TJ,14298061.14828,kg -1df5b50f-12c7-32a0-a8aa-44139458fe33,SESCO,II.1.1,Córdoba,AR-X,annual,2010,gas oil combustion consumption by to the public,192.9562908,TJ,CH4,3.9,kg/TJ,752.52953412,kg -1df5b50f-12c7-32a0-a8aa-44139458fe33,SESCO,II.1.1,Córdoba,AR-X,annual,2010,gas oil combustion consumption by to the public,192.9562908,TJ,N2O,3.9,kg/TJ,752.52953412,kg -6cf105b7-30f3-3eff-ba67-742c51f83bc4,SESCO,II.1.1,Jujuy,AR-Y,annual,2010,gas oil combustion consumption by to the public,1050.887922,TJ,CO2,74100.0,kg/TJ,77870795.0202,kg -7e91581e-b71a-3a8e-9f10-058475a23b56,SESCO,II.1.1,Jujuy,AR-Y,annual,2010,gas oil combustion consumption by to the public,1050.887922,TJ,CH4,3.9,kg/TJ,4098.462895799999,kg -7e91581e-b71a-3a8e-9f10-058475a23b56,SESCO,II.1.1,Jujuy,AR-Y,annual,2010,gas oil combustion consumption by to the public,1050.887922,TJ,N2O,3.9,kg/TJ,4098.462895799999,kg -b55ba5a5-2a50-3fbe-984f-6b2b8d94a0ec,SESCO,II.1.1,La Rioja,AR-F,annual,2010,gas oil combustion consumption by to the public,207.4349928,TJ,CO2,74100.0,kg/TJ,15370932.96648,kg -ee564c29-b560-3add-8d3c-2d405877a007,SESCO,II.1.1,La Rioja,AR-F,annual,2010,gas oil combustion consumption by to the public,207.4349928,TJ,CH4,3.9,kg/TJ,808.99647192,kg -ee564c29-b560-3add-8d3c-2d405877a007,SESCO,II.1.1,La Rioja,AR-F,annual,2010,gas oil combustion consumption by to the public,207.4349928,TJ,N2O,3.9,kg/TJ,808.99647192,kg -55ed64f2-5ff9-322a-8158-f7c219d4ffc0,SESCO,II.1.1,Salta,AR-A,annual,2010,gas oil combustion consumption by to the public,2628.528252,TJ,CO2,74100.0,kg/TJ,194773943.4732,kg -c3ba3a8d-8ed0-3841-a902-27b02f6dc806,SESCO,II.1.1,Salta,AR-A,annual,2010,gas oil combustion consumption by to the public,2628.528252,TJ,CH4,3.9,kg/TJ,10251.2601828,kg -c3ba3a8d-8ed0-3841-a902-27b02f6dc806,SESCO,II.1.1,Salta,AR-A,annual,2010,gas oil combustion consumption by to the public,2628.528252,TJ,N2O,3.9,kg/TJ,10251.2601828,kg -b5f53158-f9b5-3587-8294-f5ad30fe8a4d,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2010,gas oil combustion consumption by to the public,768.1051643999999,TJ,CO2,74100.0,kg/TJ,56916592.68203999,kg -ec82376b-6431-3ce9-9f53-29cd0d27c109,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2010,gas oil combustion consumption by to the public,768.1051643999999,TJ,CH4,3.9,kg/TJ,2995.61014116,kg -ec82376b-6431-3ce9-9f53-29cd0d27c109,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2010,gas oil combustion consumption by to the public,768.1051643999999,TJ,N2O,3.9,kg/TJ,2995.61014116,kg -1781d6bc-3e48-3ea1-9acc-845a783277dc,SESCO,II.1.1,Tucuman,AR-T,annual,2010,gas oil combustion consumption by to the public,3635.0106072,TJ,CO2,74100.0,kg/TJ,269354285.99351996,kg -c6b1f948-7643-35f9-936e-83a3889c3905,SESCO,II.1.1,Tucuman,AR-T,annual,2010,gas oil combustion consumption by to the public,3635.0106072,TJ,CH4,3.9,kg/TJ,14176.54136808,kg -c6b1f948-7643-35f9-936e-83a3889c3905,SESCO,II.1.1,Tucuman,AR-T,annual,2010,gas oil combustion consumption by to the public,3635.0106072,TJ,N2O,3.9,kg/TJ,14176.54136808,kg -85e7ea3c-ddd1-357e-875f-d006d7750cab,SESCO,II.1.1,Catamarca,AR-K,annual,2010,gas oil combustion consumption by to the public,2.0133288,TJ,CO2,74100.0,kg/TJ,149187.66408,kg -2ac0655d-5e90-3816-becb-3c5b5e5cbc04,SESCO,II.1.1,Catamarca,AR-K,annual,2010,gas oil combustion consumption by to the public,2.0133288,TJ,CH4,3.9,kg/TJ,7.85198232,kg -2ac0655d-5e90-3816-becb-3c5b5e5cbc04,SESCO,II.1.1,Catamarca,AR-K,annual,2010,gas oil combustion consumption by to the public,2.0133288,TJ,N2O,3.9,kg/TJ,7.85198232,kg -8be93dfa-5268-330d-8378-f315c7f6f05b,SESCO,II.1.1,Chaco,AR-H,annual,2010,gas oil combustion consumption by to the public,6.6240467999999995,TJ,CO2,74100.0,kg/TJ,490841.86788,kg -c8ddc99a-e288-3ae0-89ba-a5bbf3f2a763,SESCO,II.1.1,Chaco,AR-H,annual,2010,gas oil combustion consumption by to the public,6.6240467999999995,TJ,CH4,3.9,kg/TJ,25.833782519999996,kg -c8ddc99a-e288-3ae0-89ba-a5bbf3f2a763,SESCO,II.1.1,Chaco,AR-H,annual,2010,gas oil combustion consumption by to the public,6.6240467999999995,TJ,N2O,3.9,kg/TJ,25.833782519999996,kg -40b82b43-65d9-3051-8974-a618bdd9d449,SESCO,II.1.1,Córdoba,AR-X,annual,2010,gas oil combustion consumption by to the public,0.251034,TJ,CO2,74100.0,kg/TJ,18601.6194,kg -d17ff401-77c3-3825-b80c-d1ce61b577d1,SESCO,II.1.1,Córdoba,AR-X,annual,2010,gas oil combustion consumption by to the public,0.251034,TJ,CH4,3.9,kg/TJ,0.9790325999999999,kg -d17ff401-77c3-3825-b80c-d1ce61b577d1,SESCO,II.1.1,Córdoba,AR-X,annual,2010,gas oil combustion consumption by to the public,0.251034,TJ,N2O,3.9,kg/TJ,0.9790325999999999,kg -d3a6c20d-b7c8-321a-bb4c-42eb67e90ab3,SESCO,II.1.1,Jujuy,AR-Y,annual,2010,gas oil combustion consumption by to the public,25.4512356,TJ,CO2,74100.0,kg/TJ,1885936.5579600001,kg -b1024bc9-2613-3164-a801-0b681843621f,SESCO,II.1.1,Jujuy,AR-Y,annual,2010,gas oil combustion consumption by to the public,25.4512356,TJ,CH4,3.9,kg/TJ,99.25981884,kg -b1024bc9-2613-3164-a801-0b681843621f,SESCO,II.1.1,Jujuy,AR-Y,annual,2010,gas oil combustion consumption by to the public,25.4512356,TJ,N2O,3.9,kg/TJ,99.25981884,kg -2b2c9a84-cc93-3f3c-99a4-9d629c8b8107,SESCO,II.1.1,La Rioja,AR-F,annual,2010,gas oil combustion consumption by to the public,3.75648,TJ,CO2,74100.0,kg/TJ,278355.168,kg -085829fe-c70b-3fe4-9005-292f748bc657,SESCO,II.1.1,La Rioja,AR-F,annual,2010,gas oil combustion consumption by to the public,3.75648,TJ,CH4,3.9,kg/TJ,14.650272,kg -085829fe-c70b-3fe4-9005-292f748bc657,SESCO,II.1.1,La Rioja,AR-F,annual,2010,gas oil combustion consumption by to the public,3.75648,TJ,N2O,3.9,kg/TJ,14.650272,kg -e0af1e4b-81bf-3396-9b1e-35f6d29273d7,SESCO,II.1.1,Salta,AR-A,annual,2010,gas oil combustion consumption by to the public,77.83065359999999,TJ,CO2,74100.0,kg/TJ,5767251.431759999,kg -501d0abe-0808-3543-957d-e72bf63ce052,SESCO,II.1.1,Salta,AR-A,annual,2010,gas oil combustion consumption by to the public,77.83065359999999,TJ,CH4,3.9,kg/TJ,303.53954903999994,kg -501d0abe-0808-3543-957d-e72bf63ce052,SESCO,II.1.1,Salta,AR-A,annual,2010,gas oil combustion consumption by to the public,77.83065359999999,TJ,N2O,3.9,kg/TJ,303.53954903999994,kg -ac652f42-44bf-33cd-8a1d-6bd463639b5a,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2010,gas oil combustion consumption by to the public,20.8423236,TJ,CO2,74100.0,kg/TJ,1544416.17876,kg -9a0bea70-e263-3115-b349-be828ae9e21c,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2010,gas oil combustion consumption by to the public,20.8423236,TJ,CH4,3.9,kg/TJ,81.28506204,kg -9a0bea70-e263-3115-b349-be828ae9e21c,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2010,gas oil combustion consumption by to the public,20.8423236,TJ,N2O,3.9,kg/TJ,81.28506204,kg -b9df2996-2e46-3372-9145-0fe01ce2b1c1,SESCO,II.1.1,Tucuman,AR-T,annual,2010,gas oil combustion consumption by to the public,110.85950399999999,TJ,CO2,74100.0,kg/TJ,8214689.246399999,kg -6b5e880a-3747-323b-9b81-b3c41f024182,SESCO,II.1.1,Tucuman,AR-T,annual,2010,gas oil combustion consumption by to the public,110.85950399999999,TJ,CH4,3.9,kg/TJ,432.35206559999995,kg -6b5e880a-3747-323b-9b81-b3c41f024182,SESCO,II.1.1,Tucuman,AR-T,annual,2010,gas oil combustion consumption by to the public,110.85950399999999,TJ,N2O,3.9,kg/TJ,432.35206559999995,kg -2a5b7f6f-f66a-34e1-bed4-f01a09e1761f,SESCO,I.3.1,Buenos Aires,AR-B,annual,2010,gasoline combustion consumption by petrochemical industries,410.735424,TJ,CO2,69300.0,kg/TJ,28463964.8832,kg -6cf87083-eec4-3fa5-bfb5-f914ea491073,SESCO,I.3.1,Buenos Aires,AR-B,annual,2010,gasoline combustion consumption by petrochemical industries,410.735424,TJ,CH4,33.0,kg/TJ,13554.268992000001,kg -6299b38b-5e52-3839-b9a9-fe30ab753bb5,SESCO,I.3.1,Buenos Aires,AR-B,annual,2010,gasoline combustion consumption by petrochemical industries,410.735424,TJ,N2O,3.2,kg/TJ,1314.3533568000003,kg -5bb412ca-ffff-3f67-a1f4-ae751ab86442,SESCO,I.3.1,Chaco,AR-H,annual,2010,gasoline combustion consumption by petrochemical industries,16.930574,TJ,CO2,69300.0,kg/TJ,1173288.7782,kg -17cb3035-c769-3b42-af0b-5f21118517a5,SESCO,I.3.1,Chaco,AR-H,annual,2010,gasoline combustion consumption by petrochemical industries,16.930574,TJ,CH4,33.0,kg/TJ,558.708942,kg -cd02062e-3505-3507-be05-4e09e7dd2da8,SESCO,I.3.1,Chaco,AR-H,annual,2010,gasoline combustion consumption by petrochemical industries,16.930574,TJ,N2O,3.2,kg/TJ,54.1778368,kg -c1a8ff75-8c82-386a-9c37-bfd410897334,SESCO,I.3.1,Córdoba,AR-X,annual,2010,gasoline combustion consumption by petrochemical industries,44.023125,TJ,CO2,69300.0,kg/TJ,3050802.5625,kg -cd31867e-144a-380c-a9ef-4dbb99bb47e2,SESCO,I.3.1,Córdoba,AR-X,annual,2010,gasoline combustion consumption by petrochemical industries,44.023125,TJ,CH4,33.0,kg/TJ,1452.763125,kg -6521f2e7-682f-3a03-906d-a25787df69d9,SESCO,I.3.1,Córdoba,AR-X,annual,2010,gasoline combustion consumption by petrochemical industries,44.023125,TJ,N2O,3.2,kg/TJ,140.874,kg -2f4972bf-c7b9-3b76-9887-1dd2f430017f,SESCO,I.3.1,Santa Fe,AR-S,annual,2010,gasoline combustion consumption by petrochemical industries,26.752326999999998,TJ,CO2,69300.0,kg/TJ,1853936.2610999998,kg -da45b984-ab19-3d90-a443-031fbe6417ed,SESCO,I.3.1,Santa Fe,AR-S,annual,2010,gasoline combustion consumption by petrochemical industries,26.752326999999998,TJ,CH4,33.0,kg/TJ,882.826791,kg -a2c37784-b392-3f02-b99b-d6a5028ac471,SESCO,I.3.1,Santa Fe,AR-S,annual,2010,gasoline combustion consumption by petrochemical industries,26.752326999999998,TJ,N2O,3.2,kg/TJ,85.6074464,kg -73da8713-cc6c-3d48-8b24-1e4e2001faa8,SESCO,II.5.1,Buenos Aires,AR-B,annual,2010,gas oil combustion consumption by agriculture machines,349.31651999999997,TJ,CO2,74100.0,kg/TJ,25884354.132,kg -79328e29-152c-3e6b-8306-b80eef164173,SESCO,II.5.1,Buenos Aires,AR-B,annual,2010,gas oil combustion consumption by agriculture machines,349.31651999999997,TJ,CH4,3.9,kg/TJ,1362.334428,kg -79328e29-152c-3e6b-8306-b80eef164173,SESCO,II.5.1,Buenos Aires,AR-B,annual,2010,gas oil combustion consumption by agriculture machines,349.31651999999997,TJ,N2O,3.9,kg/TJ,1362.334428,kg -8b190951-d07f-36b3-ae05-a257f14c32e4,SESCO,II.5.1,Capital Federal,AR-C,annual,2010,gas oil combustion consumption by agriculture machines,95.60964,TJ,CO2,74100.0,kg/TJ,7084674.324,kg -b63c8ad7-8c41-3b37-b108-1033d94f0c29,SESCO,II.5.1,Capital Federal,AR-C,annual,2010,gas oil combustion consumption by agriculture machines,95.60964,TJ,CH4,3.9,kg/TJ,372.877596,kg -b63c8ad7-8c41-3b37-b108-1033d94f0c29,SESCO,II.5.1,Capital Federal,AR-C,annual,2010,gas oil combustion consumption by agriculture machines,95.60964,TJ,N2O,3.9,kg/TJ,372.877596,kg -01dd232f-3f68-3ca9-970d-b8e9e5999474,SESCO,II.5.1,Corrientes,AR-W,annual,2010,gas oil combustion consumption by agriculture machines,12.67812,TJ,CO2,74100.0,kg/TJ,939448.692,kg -bdbd8008-3afc-32c2-83db-59cf22cbba3a,SESCO,II.5.1,Corrientes,AR-W,annual,2010,gas oil combustion consumption by agriculture machines,12.67812,TJ,CH4,3.9,kg/TJ,49.444668,kg -bdbd8008-3afc-32c2-83db-59cf22cbba3a,SESCO,II.5.1,Corrientes,AR-W,annual,2010,gas oil combustion consumption by agriculture machines,12.67812,TJ,N2O,3.9,kg/TJ,49.444668,kg -dad278e1-67dd-3f40-a3d2-e406bdec79c2,SESCO,II.5.1,Córdoba,AR-X,annual,2010,gas oil combustion consumption by agriculture machines,72.31224,TJ,CO2,74100.0,kg/TJ,5358336.984,kg -0d479e44-4d41-3c69-b2d7-bcc10cc028e2,SESCO,II.5.1,Córdoba,AR-X,annual,2010,gas oil combustion consumption by agriculture machines,72.31224,TJ,CH4,3.9,kg/TJ,282.017736,kg -0d479e44-4d41-3c69-b2d7-bcc10cc028e2,SESCO,II.5.1,Córdoba,AR-X,annual,2010,gas oil combustion consumption by agriculture machines,72.31224,TJ,N2O,3.9,kg/TJ,282.017736,kg -981c45c9-bb98-39ca-a73d-513468410ec9,SESCO,II.5.1,Entre Rios,AR-E,annual,2010,gas oil combustion consumption by agriculture machines,32.65248,TJ,CO2,74100.0,kg/TJ,2419548.7679999997,kg -bc5f3170-367f-342c-8825-eeea975f1572,SESCO,II.5.1,Entre Rios,AR-E,annual,2010,gas oil combustion consumption by agriculture machines,32.65248,TJ,CH4,3.9,kg/TJ,127.34467199999999,kg -bc5f3170-367f-342c-8825-eeea975f1572,SESCO,II.5.1,Entre Rios,AR-E,annual,2010,gas oil combustion consumption by agriculture machines,32.65248,TJ,N2O,3.9,kg/TJ,127.34467199999999,kg -ac15516b-8d35-3f9a-8ba0-94e22cc32a0d,SESCO,II.5.1,Formosa,AR-P,annual,2010,gas oil combustion consumption by agriculture machines,12.85872,TJ,CO2,74100.0,kg/TJ,952831.152,kg -66501b0d-ef7a-3574-9a30-708fc6f3f0aa,SESCO,II.5.1,Formosa,AR-P,annual,2010,gas oil combustion consumption by agriculture machines,12.85872,TJ,CH4,3.9,kg/TJ,50.149008,kg -66501b0d-ef7a-3574-9a30-708fc6f3f0aa,SESCO,II.5.1,Formosa,AR-P,annual,2010,gas oil combustion consumption by agriculture machines,12.85872,TJ,N2O,3.9,kg/TJ,50.149008,kg -11a6edb5-1352-3b5f-97e5-118280cc7431,SESCO,II.5.1,La Pampa,AR-L,annual,2010,gas oil combustion consumption by agriculture machines,17.91552,TJ,CO2,74100.0,kg/TJ,1327540.0320000001,kg -d15f3bf5-effa-3872-ad7a-d884bacdc565,SESCO,II.5.1,La Pampa,AR-L,annual,2010,gas oil combustion consumption by agriculture machines,17.91552,TJ,CH4,3.9,kg/TJ,69.87052800000001,kg -d15f3bf5-effa-3872-ad7a-d884bacdc565,SESCO,II.5.1,La Pampa,AR-L,annual,2010,gas oil combustion consumption by agriculture machines,17.91552,TJ,N2O,3.9,kg/TJ,69.87052800000001,kg -383f98ad-e753-39b7-b712-4337996a6480,SESCO,II.5.1,Salta,AR-A,annual,2010,gas oil combustion consumption by agriculture machines,11.48616,TJ,CO2,74100.0,kg/TJ,851124.456,kg -85103960-4aa8-382d-9bdd-413ac97841d9,SESCO,II.5.1,Salta,AR-A,annual,2010,gas oil combustion consumption by agriculture machines,11.48616,TJ,CH4,3.9,kg/TJ,44.796023999999996,kg -85103960-4aa8-382d-9bdd-413ac97841d9,SESCO,II.5.1,Salta,AR-A,annual,2010,gas oil combustion consumption by agriculture machines,11.48616,TJ,N2O,3.9,kg/TJ,44.796023999999996,kg -5b2cfc6d-c969-35a1-af34-8f6121df090e,SESCO,II.5.1,Santa Fe,AR-S,annual,2010,gas oil combustion consumption by agriculture machines,465.44232,TJ,CO2,74100.0,kg/TJ,34489275.912,kg -b55beb54-e30a-31a0-a973-402661cdceed,SESCO,II.5.1,Santa Fe,AR-S,annual,2010,gas oil combustion consumption by agriculture machines,465.44232,TJ,CH4,3.9,kg/TJ,1815.225048,kg -b55beb54-e30a-31a0-a973-402661cdceed,SESCO,II.5.1,Santa Fe,AR-S,annual,2010,gas oil combustion consumption by agriculture machines,465.44232,TJ,N2O,3.9,kg/TJ,1815.225048,kg -32903e43-3ecb-308c-90e5-ed601bad5526,SESCO,II.5.1,Buenos Aires,AR-B,annual,2010,gas oil combustion consumption by agriculture machines,5.02068,TJ,CO2,74100.0,kg/TJ,372032.388,kg -7a064fe6-89cd-38db-b3e4-99884d32db11,SESCO,II.5.1,Buenos Aires,AR-B,annual,2010,gas oil combustion consumption by agriculture machines,5.02068,TJ,CH4,3.9,kg/TJ,19.580651999999997,kg -7a064fe6-89cd-38db-b3e4-99884d32db11,SESCO,II.5.1,Buenos Aires,AR-B,annual,2010,gas oil combustion consumption by agriculture machines,5.02068,TJ,N2O,3.9,kg/TJ,19.580651999999997,kg -c639eeec-a750-32b7-98fd-7835a75905a7,SESCO,II.5.1,Buenos Aires,AR-B,annual,2010,jet kerosene combustion consumption by agriculture machines,0.31453,TJ,CO2,71500.0,kg/TJ,22488.894999999997,kg -a9a2a44c-3501-33bc-9d51-3b6d602712ec,SESCO,II.5.1,Buenos Aires,AR-B,annual,2010,jet kerosene combustion consumption by agriculture machines,0.31453,TJ,CH4,0.5,kg/TJ,0.157265,kg -2bd2b710-ce07-33fb-9593-758c52165496,SESCO,II.5.1,Buenos Aires,AR-B,annual,2010,jet kerosene combustion consumption by agriculture machines,0.31453,TJ,N2O,2.0,kg/TJ,0.62906,kg -174d9969-61e8-3803-b97b-236690585ac2,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,jet kerosene combustion consumption by to the public,705.4907899999998,TJ,CO2,71500.0,kg/TJ,50442591.484999985,kg -0292ae87-9827-3fa8-b513-9f1e1334a387,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,jet kerosene combustion consumption by to the public,705.4907899999998,TJ,CH4,0.5,kg/TJ,352.7453949999999,kg -9c3f3fb9-fc95-3245-aa73-2243dd240403,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,jet kerosene combustion consumption by to the public,705.4907899999998,TJ,N2O,2.0,kg/TJ,1410.9815799999997,kg -e27d71c1-b479-3d11-bd4d-b81f94819717,SESCO,II.1.1,Capital Federal,AR-C,annual,2010,jet kerosene combustion consumption by to the public,339.2206049999999,TJ,CO2,71500.0,kg/TJ,24254273.257499993,kg -b4fff1a1-4270-34ab-ab75-393aa30b2314,SESCO,II.1.1,Capital Federal,AR-C,annual,2010,jet kerosene combustion consumption by to the public,339.2206049999999,TJ,CH4,0.5,kg/TJ,169.61030249999996,kg -302a0452-20c7-3d7e-a847-ba1a9943d48e,SESCO,II.1.1,Capital Federal,AR-C,annual,2010,jet kerosene combustion consumption by to the public,339.2206049999999,TJ,N2O,2.0,kg/TJ,678.4412099999998,kg -e862262b-5c33-3845-bddd-d1c1fa38de10,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,gasoline combustion consumption by to the public,1220.3763999999999,TJ,CO2,69300.0,kg/TJ,84572084.52,kg -2d393270-e47c-3490-8c5b-c4f1171d4746,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,gasoline combustion consumption by to the public,1220.3763999999999,TJ,CH4,33.0,kg/TJ,40272.4212,kg -6820719f-7679-35f7-b72a-15bed2f76800,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,gasoline combustion consumption by to the public,1220.3763999999999,TJ,N2O,3.2,kg/TJ,3905.20448,kg -c876ca4e-f7a4-3ddd-b305-a0f7b56dacaa,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,gas oil combustion consumption by to the public,14197.54392,TJ,CO2,74100.0,kg/TJ,1052038004.472,kg -fb1067ff-0767-396d-b56a-348b7c9cbc49,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,gas oil combustion consumption by to the public,14197.54392,TJ,CH4,3.9,kg/TJ,55370.421288,kg -fb1067ff-0767-396d-b56a-348b7c9cbc49,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,gas oil combustion consumption by to the public,14197.54392,TJ,N2O,3.9,kg/TJ,55370.421288,kg -965e0383-efa8-3ba8-bbeb-1fe8bc71d483,SESCO,II.1.1,Capital Federal,AR-C,annual,2010,gas oil combustion consumption by to the public,1595.81772,TJ,CO2,74100.0,kg/TJ,118250093.052,kg -b0c7aebf-8836-3c87-abde-203f2a62a35b,SESCO,II.1.1,Capital Federal,AR-C,annual,2010,gas oil combustion consumption by to the public,1595.81772,TJ,CH4,3.9,kg/TJ,6223.689108,kg -b0c7aebf-8836-3c87-abde-203f2a62a35b,SESCO,II.1.1,Capital Federal,AR-C,annual,2010,gas oil combustion consumption by to the public,1595.81772,TJ,N2O,3.9,kg/TJ,6223.689108,kg -78d92899-bcb8-3041-ba26-0790437c3551,SESCO,II.1.1,Catamarca,AR-K,annual,2010,gas oil combustion consumption by to the public,39.94872,TJ,CO2,74100.0,kg/TJ,2960200.1520000002,kg -856d4929-7449-366e-bdc5-080d43115118,SESCO,II.1.1,Catamarca,AR-K,annual,2010,gas oil combustion consumption by to the public,39.94872,TJ,CH4,3.9,kg/TJ,155.800008,kg -856d4929-7449-366e-bdc5-080d43115118,SESCO,II.1.1,Catamarca,AR-K,annual,2010,gas oil combustion consumption by to the public,39.94872,TJ,N2O,3.9,kg/TJ,155.800008,kg -5b6d5615-3147-361f-a741-110f20e231be,SESCO,II.1.1,Chaco,AR-H,annual,2010,gas oil combustion consumption by to the public,1576.52964,TJ,CO2,74100.0,kg/TJ,116820846.324,kg -9516ab22-5b70-3146-890a-bd852b896426,SESCO,II.1.1,Chaco,AR-H,annual,2010,gas oil combustion consumption by to the public,1576.52964,TJ,CH4,3.9,kg/TJ,6148.465596,kg -9516ab22-5b70-3146-890a-bd852b896426,SESCO,II.1.1,Chaco,AR-H,annual,2010,gas oil combustion consumption by to the public,1576.52964,TJ,N2O,3.9,kg/TJ,6148.465596,kg -f4629f53-f31a-3b70-a789-1430aa0dbc05,SESCO,II.1.1,Chubut,AR-U,annual,2010,gas oil combustion consumption by to the public,19.54092,TJ,CO2,74100.0,kg/TJ,1447982.172,kg -467453c9-7887-33a6-97b4-847fba88beea,SESCO,II.1.1,Chubut,AR-U,annual,2010,gas oil combustion consumption by to the public,19.54092,TJ,CH4,3.9,kg/TJ,76.209588,kg -467453c9-7887-33a6-97b4-847fba88beea,SESCO,II.1.1,Chubut,AR-U,annual,2010,gas oil combustion consumption by to the public,19.54092,TJ,N2O,3.9,kg/TJ,76.209588,kg -23212cb2-02b5-3af2-bdf3-d98a21557d30,SESCO,II.1.1,Corrientes,AR-W,annual,2010,gas oil combustion consumption by to the public,777.33852,TJ,CO2,74100.0,kg/TJ,57600784.332,kg -5e41801a-27ed-3f0b-a227-edcbca2fcdf9,SESCO,II.1.1,Corrientes,AR-W,annual,2010,gas oil combustion consumption by to the public,777.33852,TJ,CH4,3.9,kg/TJ,3031.6202279999998,kg -5e41801a-27ed-3f0b-a227-edcbca2fcdf9,SESCO,II.1.1,Corrientes,AR-W,annual,2010,gas oil combustion consumption by to the public,777.33852,TJ,N2O,3.9,kg/TJ,3031.6202279999998,kg -51bc435f-bcfc-3be7-a3a6-17d76011942d,SESCO,II.1.1,Córdoba,AR-X,annual,2010,gas oil combustion consumption by to the public,4366.43844,TJ,CO2,74100.0,kg/TJ,323553088.404,kg -9ee39a4e-22ec-3f08-a550-af2fab31532d,SESCO,II.1.1,Córdoba,AR-X,annual,2010,gas oil combustion consumption by to the public,4366.43844,TJ,CH4,3.9,kg/TJ,17029.109915999998,kg -9ee39a4e-22ec-3f08-a550-af2fab31532d,SESCO,II.1.1,Córdoba,AR-X,annual,2010,gas oil combustion consumption by to the public,4366.43844,TJ,N2O,3.9,kg/TJ,17029.109915999998,kg -1a5480ae-b278-356f-9500-6b6ca1557096,SESCO,II.1.1,Entre Rios,AR-E,annual,2010,gas oil combustion consumption by to the public,1536.47256,TJ,CO2,74100.0,kg/TJ,113852616.696,kg -49e50885-c473-325d-841b-51d2851a5c11,SESCO,II.1.1,Entre Rios,AR-E,annual,2010,gas oil combustion consumption by to the public,1536.47256,TJ,CH4,3.9,kg/TJ,5992.2429839999995,kg -49e50885-c473-325d-841b-51d2851a5c11,SESCO,II.1.1,Entre Rios,AR-E,annual,2010,gas oil combustion consumption by to the public,1536.47256,TJ,N2O,3.9,kg/TJ,5992.2429839999995,kg -660a9c57-b149-364d-8dd8-3c3acb4d408a,SESCO,II.1.1,Formosa,AR-P,annual,2010,gas oil combustion consumption by to the public,185.18724,TJ,CO2,74100.0,kg/TJ,13722374.484000001,kg -b5e1512c-a6bf-3467-a522-b61ebad107d9,SESCO,II.1.1,Formosa,AR-P,annual,2010,gas oil combustion consumption by to the public,185.18724,TJ,CH4,3.9,kg/TJ,722.230236,kg -b5e1512c-a6bf-3467-a522-b61ebad107d9,SESCO,II.1.1,Formosa,AR-P,annual,2010,gas oil combustion consumption by to the public,185.18724,TJ,N2O,3.9,kg/TJ,722.230236,kg -076a91d4-fa12-3b5f-819e-56e8ba58a2f9,SESCO,II.1.1,Jujuy,AR-Y,annual,2010,gas oil combustion consumption by to the public,383.30544,TJ,CO2,74100.0,kg/TJ,28402933.104,kg -c8f91506-5bd4-3f7f-8ec1-1306625add10,SESCO,II.1.1,Jujuy,AR-Y,annual,2010,gas oil combustion consumption by to the public,383.30544,TJ,CH4,3.9,kg/TJ,1494.891216,kg -c8f91506-5bd4-3f7f-8ec1-1306625add10,SESCO,II.1.1,Jujuy,AR-Y,annual,2010,gas oil combustion consumption by to the public,383.30544,TJ,N2O,3.9,kg/TJ,1494.891216,kg -209c78c2-1e3b-300f-a26a-54b484039b7a,SESCO,II.1.1,La Pampa,AR-L,annual,2010,gas oil combustion consumption by to the public,511.35084,TJ,CO2,74100.0,kg/TJ,37891097.244,kg -937892c3-7c86-3ecc-afec-ea743bc7ab4f,SESCO,II.1.1,La Pampa,AR-L,annual,2010,gas oil combustion consumption by to the public,511.35084,TJ,CH4,3.9,kg/TJ,1994.268276,kg -937892c3-7c86-3ecc-afec-ea743bc7ab4f,SESCO,II.1.1,La Pampa,AR-L,annual,2010,gas oil combustion consumption by to the public,511.35084,TJ,N2O,3.9,kg/TJ,1994.268276,kg -860c1d6d-4a33-3d6a-a3e9-d8b2ef0943ce,SESCO,II.1.1,La Rioja,AR-F,annual,2010,gas oil combustion consumption by to the public,302.57724,TJ,CO2,74100.0,kg/TJ,22420973.484,kg -31fb2b1c-0128-3a0a-8da0-421cdad8d375,SESCO,II.1.1,La Rioja,AR-F,annual,2010,gas oil combustion consumption by to the public,302.57724,TJ,CH4,3.9,kg/TJ,1180.051236,kg -31fb2b1c-0128-3a0a-8da0-421cdad8d375,SESCO,II.1.1,La Rioja,AR-F,annual,2010,gas oil combustion consumption by to the public,302.57724,TJ,N2O,3.9,kg/TJ,1180.051236,kg -48fd8240-e3a2-3126-92c4-2000a2e6dbf9,SESCO,II.1.1,Mendoza,AR-M,annual,2010,gas oil combustion consumption by to the public,729.40728,TJ,CO2,74100.0,kg/TJ,54049079.448,kg -d4dc9f62-74ac-3a7f-9a53-e6dbc6d976fd,SESCO,II.1.1,Mendoza,AR-M,annual,2010,gas oil combustion consumption by to the public,729.40728,TJ,CH4,3.9,kg/TJ,2844.688392,kg -d4dc9f62-74ac-3a7f-9a53-e6dbc6d976fd,SESCO,II.1.1,Mendoza,AR-M,annual,2010,gas oil combustion consumption by to the public,729.40728,TJ,N2O,3.9,kg/TJ,2844.688392,kg -587e1900-4659-3e16-9cc0-aab7f7c2e2c7,SESCO,II.1.1,Misiones,AR-N,annual,2010,gas oil combustion consumption by to the public,942.5514,TJ,CO2,74100.0,kg/TJ,69843058.74,kg -3abda299-d53a-3787-b34b-99c970a2d378,SESCO,II.1.1,Misiones,AR-N,annual,2010,gas oil combustion consumption by to the public,942.5514,TJ,CH4,3.9,kg/TJ,3675.9504599999996,kg -3abda299-d53a-3787-b34b-99c970a2d378,SESCO,II.1.1,Misiones,AR-N,annual,2010,gas oil combustion consumption by to the public,942.5514,TJ,N2O,3.9,kg/TJ,3675.9504599999996,kg -25eafae4-a7c9-31fe-9e1a-3d85d5b925f0,SESCO,II.1.1,Neuquén,AR-Q,annual,2010,gas oil combustion consumption by to the public,181.503,TJ,CO2,74100.0,kg/TJ,13449372.299999999,kg -bb547c76-015c-3b53-883e-f3df4f96e5a2,SESCO,II.1.1,Neuquén,AR-Q,annual,2010,gas oil combustion consumption by to the public,181.503,TJ,CH4,3.9,kg/TJ,707.8616999999999,kg -bb547c76-015c-3b53-883e-f3df4f96e5a2,SESCO,II.1.1,Neuquén,AR-Q,annual,2010,gas oil combustion consumption by to the public,181.503,TJ,N2O,3.9,kg/TJ,707.8616999999999,kg -35205f2b-075c-3e66-a817-0be66c535b80,SESCO,II.1.1,Rio Negro,AR-R,annual,2010,gas oil combustion consumption by to the public,372.57779999999997,TJ,CO2,74100.0,kg/TJ,27608014.979999997,kg -f0c51173-dff1-3dd6-911d-5a408ffc1ca9,SESCO,II.1.1,Rio Negro,AR-R,annual,2010,gas oil combustion consumption by to the public,372.57779999999997,TJ,CH4,3.9,kg/TJ,1453.0534199999997,kg -f0c51173-dff1-3dd6-911d-5a408ffc1ca9,SESCO,II.1.1,Rio Negro,AR-R,annual,2010,gas oil combustion consumption by to the public,372.57779999999997,TJ,N2O,3.9,kg/TJ,1453.0534199999997,kg -a5f0c6ed-3bfc-3038-a565-7dbf8ba0d2ec,SESCO,II.1.1,Salta,AR-A,annual,2010,gas oil combustion consumption by to the public,335.48256,TJ,CO2,74100.0,kg/TJ,24859257.696,kg -76c8a2ea-2fd8-310e-90da-7fe00273342e,SESCO,II.1.1,Salta,AR-A,annual,2010,gas oil combustion consumption by to the public,335.48256,TJ,CH4,3.9,kg/TJ,1308.3819839999999,kg -76c8a2ea-2fd8-310e-90da-7fe00273342e,SESCO,II.1.1,Salta,AR-A,annual,2010,gas oil combustion consumption by to the public,335.48256,TJ,N2O,3.9,kg/TJ,1308.3819839999999,kg -bbece368-785a-3ee9-a144-5a6d56abda0d,SESCO,II.1.1,San Juan,AR-J,annual,2010,gas oil combustion consumption by to the public,210.11004,TJ,CO2,74100.0,kg/TJ,15569153.964,kg -ba01c47f-04f7-3369-a166-7b3f52fffe3d,SESCO,II.1.1,San Juan,AR-J,annual,2010,gas oil combustion consumption by to the public,210.11004,TJ,CH4,3.9,kg/TJ,819.4291559999999,kg -ba01c47f-04f7-3369-a166-7b3f52fffe3d,SESCO,II.1.1,San Juan,AR-J,annual,2010,gas oil combustion consumption by to the public,210.11004,TJ,N2O,3.9,kg/TJ,819.4291559999999,kg -485da1b6-8574-32e0-a691-d585685681ed,SESCO,II.1.1,San Luis,AR-D,annual,2010,gas oil combustion consumption by to the public,40.34604,TJ,CO2,74100.0,kg/TJ,2989641.5640000002,kg -53d4a45b-443d-3ca6-bff8-d3e30baadc00,SESCO,II.1.1,San Luis,AR-D,annual,2010,gas oil combustion consumption by to the public,40.34604,TJ,CH4,3.9,kg/TJ,157.349556,kg -53d4a45b-443d-3ca6-bff8-d3e30baadc00,SESCO,II.1.1,San Luis,AR-D,annual,2010,gas oil combustion consumption by to the public,40.34604,TJ,N2O,3.9,kg/TJ,157.349556,kg -530270ba-4a80-3837-9078-b9bcffe3b162,SESCO,II.1.1,Santa Fe,AR-S,annual,2010,gas oil combustion consumption by to the public,5345.10984,TJ,CO2,74100.0,kg/TJ,396072639.144,kg -28fe6914-5855-3f0c-98fa-6d9eb9076672,SESCO,II.1.1,Santa Fe,AR-S,annual,2010,gas oil combustion consumption by to the public,5345.10984,TJ,CH4,3.9,kg/TJ,20845.928376,kg -28fe6914-5855-3f0c-98fa-6d9eb9076672,SESCO,II.1.1,Santa Fe,AR-S,annual,2010,gas oil combustion consumption by to the public,5345.10984,TJ,N2O,3.9,kg/TJ,20845.928376,kg -fbe69c50-232f-3db2-af3d-19ca0a8dca59,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2010,gas oil combustion consumption by to the public,445.03452,TJ,CO2,74100.0,kg/TJ,32977057.932,kg -8b9ec636-efef-3c03-a8b8-079f793ec79d,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2010,gas oil combustion consumption by to the public,445.03452,TJ,CH4,3.9,kg/TJ,1735.634628,kg -8b9ec636-efef-3c03-a8b8-079f793ec79d,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2010,gas oil combustion consumption by to the public,445.03452,TJ,N2O,3.9,kg/TJ,1735.634628,kg -d177b8c4-af8e-35bc-a056-33929adc2ee3,SESCO,II.1.1,Tucuman,AR-T,annual,2010,gas oil combustion consumption by to the public,687.25524,TJ,CO2,74100.0,kg/TJ,50925613.283999994,kg -e1e59687-6562-313e-bae7-e55788999c22,SESCO,II.1.1,Tucuman,AR-T,annual,2010,gas oil combustion consumption by to the public,687.25524,TJ,CH4,3.9,kg/TJ,2680.295436,kg -e1e59687-6562-313e-bae7-e55788999c22,SESCO,II.1.1,Tucuman,AR-T,annual,2010,gas oil combustion consumption by to the public,687.25524,TJ,N2O,3.9,kg/TJ,2680.295436,kg -d747ba55-5066-3004-9844-c85ee5f94f4c,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,gas oil combustion consumption by to the public,5409.54792,TJ,CO2,74100.0,kg/TJ,400847500.872,kg -8c502cc9-7dc8-31c5-86fe-b137afb9d877,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,gas oil combustion consumption by to the public,5409.54792,TJ,CH4,3.9,kg/TJ,21097.236888,kg -8c502cc9-7dc8-31c5-86fe-b137afb9d877,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,gas oil combustion consumption by to the public,5409.54792,TJ,N2O,3.9,kg/TJ,21097.236888,kg -41d6d677-3768-3ec4-ad7d-b89b67c4a978,SESCO,II.1.1,Capital Federal,AR-C,annual,2010,gas oil combustion consumption by to the public,1312.88976,TJ,CO2,74100.0,kg/TJ,97285131.216,kg -5f51b9d0-3553-3605-99b2-549e0848ee2c,SESCO,II.1.1,Capital Federal,AR-C,annual,2010,gas oil combustion consumption by to the public,1312.88976,TJ,CH4,3.9,kg/TJ,5120.270064,kg -5f51b9d0-3553-3605-99b2-549e0848ee2c,SESCO,II.1.1,Capital Federal,AR-C,annual,2010,gas oil combustion consumption by to the public,1312.88976,TJ,N2O,3.9,kg/TJ,5120.270064,kg -6162b075-148b-3eaf-9251-06b8cbf99bc0,SESCO,II.1.1,Catamarca,AR-K,annual,2010,gas oil combustion consumption by to the public,18.16836,TJ,CO2,74100.0,kg/TJ,1346275.476,kg -2d8a6950-cb04-3c16-8b57-e748bec56294,SESCO,II.1.1,Catamarca,AR-K,annual,2010,gas oil combustion consumption by to the public,18.16836,TJ,CH4,3.9,kg/TJ,70.856604,kg -2d8a6950-cb04-3c16-8b57-e748bec56294,SESCO,II.1.1,Catamarca,AR-K,annual,2010,gas oil combustion consumption by to the public,18.16836,TJ,N2O,3.9,kg/TJ,70.856604,kg -42d2bb4a-64d5-3a92-857e-0dd1e710ff27,SESCO,II.1.1,Chaco,AR-H,annual,2010,gas oil combustion consumption by to the public,258.14964,TJ,CO2,74100.0,kg/TJ,19128888.323999997,kg -8e098d54-c40e-3df4-8d21-c02f920f1999,SESCO,II.1.1,Chaco,AR-H,annual,2010,gas oil combustion consumption by to the public,258.14964,TJ,CH4,3.9,kg/TJ,1006.7835959999999,kg -8e098d54-c40e-3df4-8d21-c02f920f1999,SESCO,II.1.1,Chaco,AR-H,annual,2010,gas oil combustion consumption by to the public,258.14964,TJ,N2O,3.9,kg/TJ,1006.7835959999999,kg -6eedc141-2ab6-3bcb-8572-4ff2b533dca0,SESCO,II.1.1,Chubut,AR-U,annual,2010,gas oil combustion consumption by to the public,34.92804,TJ,CO2,74100.0,kg/TJ,2588167.7640000004,kg -51a5d1c4-f550-38f6-a57f-c852abcf6e3b,SESCO,II.1.1,Chubut,AR-U,annual,2010,gas oil combustion consumption by to the public,34.92804,TJ,CH4,3.9,kg/TJ,136.219356,kg -51a5d1c4-f550-38f6-a57f-c852abcf6e3b,SESCO,II.1.1,Chubut,AR-U,annual,2010,gas oil combustion consumption by to the public,34.92804,TJ,N2O,3.9,kg/TJ,136.219356,kg -07b9129a-bf0e-38fe-9e50-a81c642dcd07,SESCO,II.1.1,Corrientes,AR-W,annual,2010,gas oil combustion consumption by to the public,185.94576,TJ,CO2,74100.0,kg/TJ,13778580.816,kg -4d3f0176-c37f-384b-8a72-232b3ff9fe60,SESCO,II.1.1,Corrientes,AR-W,annual,2010,gas oil combustion consumption by to the public,185.94576,TJ,CH4,3.9,kg/TJ,725.1884640000001,kg -4d3f0176-c37f-384b-8a72-232b3ff9fe60,SESCO,II.1.1,Corrientes,AR-W,annual,2010,gas oil combustion consumption by to the public,185.94576,TJ,N2O,3.9,kg/TJ,725.1884640000001,kg -86c07beb-e400-3bb9-9a76-a1b27e57826a,SESCO,II.1.1,Córdoba,AR-X,annual,2010,gas oil combustion consumption by to the public,1205.75784,TJ,CO2,74100.0,kg/TJ,89346655.944,kg -1d1b744e-0471-3c31-bb74-796189f93176,SESCO,II.1.1,Córdoba,AR-X,annual,2010,gas oil combustion consumption by to the public,1205.75784,TJ,CH4,3.9,kg/TJ,4702.455576,kg -1d1b744e-0471-3c31-bb74-796189f93176,SESCO,II.1.1,Córdoba,AR-X,annual,2010,gas oil combustion consumption by to the public,1205.75784,TJ,N2O,3.9,kg/TJ,4702.455576,kg -3da8b27b-296d-3c3a-be5c-d019cf0a8919,SESCO,II.1.1,Entre Rios,AR-E,annual,2010,gas oil combustion consumption by to the public,568.63716,TJ,CO2,74100.0,kg/TJ,42136013.556,kg -0ace8959-dd16-30c1-9e16-f67b7702786c,SESCO,II.1.1,Entre Rios,AR-E,annual,2010,gas oil combustion consumption by to the public,568.63716,TJ,CH4,3.9,kg/TJ,2217.684924,kg -0ace8959-dd16-30c1-9e16-f67b7702786c,SESCO,II.1.1,Entre Rios,AR-E,annual,2010,gas oil combustion consumption by to the public,568.63716,TJ,N2O,3.9,kg/TJ,2217.684924,kg -3010f888-c008-308a-ae2d-62d607d8da65,SESCO,II.1.1,Formosa,AR-P,annual,2010,gas oil combustion consumption by to the public,64.2936,TJ,CO2,74100.0,kg/TJ,4764155.76,kg -c1013f78-87a7-36b7-8d04-f6af76e74c4e,SESCO,II.1.1,Formosa,AR-P,annual,2010,gas oil combustion consumption by to the public,64.2936,TJ,CH4,3.9,kg/TJ,250.74504,kg -c1013f78-87a7-36b7-8d04-f6af76e74c4e,SESCO,II.1.1,Formosa,AR-P,annual,2010,gas oil combustion consumption by to the public,64.2936,TJ,N2O,3.9,kg/TJ,250.74504,kg -991b66d7-56f0-3e7b-923a-115b47a0f469,SESCO,II.1.1,Jujuy,AR-Y,annual,2010,gas oil combustion consumption by to the public,76.3938,TJ,CO2,74100.0,kg/TJ,5660780.58,kg -60e2b78a-b954-3d4e-bed0-7302667b3acd,SESCO,II.1.1,Jujuy,AR-Y,annual,2010,gas oil combustion consumption by to the public,76.3938,TJ,CH4,3.9,kg/TJ,297.93582,kg -60e2b78a-b954-3d4e-bed0-7302667b3acd,SESCO,II.1.1,Jujuy,AR-Y,annual,2010,gas oil combustion consumption by to the public,76.3938,TJ,N2O,3.9,kg/TJ,297.93582,kg -e126b246-2664-35cd-8cbf-1a0105e768fc,SESCO,II.1.1,La Pampa,AR-L,annual,2010,gas oil combustion consumption by to the public,181.46688,TJ,CO2,74100.0,kg/TJ,13446695.808,kg -5e4a0d29-e826-3585-abd5-84424b867d0e,SESCO,II.1.1,La Pampa,AR-L,annual,2010,gas oil combustion consumption by to the public,181.46688,TJ,CH4,3.9,kg/TJ,707.720832,kg -5e4a0d29-e826-3585-abd5-84424b867d0e,SESCO,II.1.1,La Pampa,AR-L,annual,2010,gas oil combustion consumption by to the public,181.46688,TJ,N2O,3.9,kg/TJ,707.720832,kg -db55275b-caac-3ad3-be23-5e0014a40248,SESCO,II.1.1,La Rioja,AR-F,annual,2010,gas oil combustion consumption by to the public,60.356519999999996,TJ,CO2,74100.0,kg/TJ,4472418.131999999,kg -6d7aabd2-1cf6-3db2-99cd-27a1313eb917,SESCO,II.1.1,La Rioja,AR-F,annual,2010,gas oil combustion consumption by to the public,60.356519999999996,TJ,CH4,3.9,kg/TJ,235.39042799999999,kg -6d7aabd2-1cf6-3db2-99cd-27a1313eb917,SESCO,II.1.1,La Rioja,AR-F,annual,2010,gas oil combustion consumption by to the public,60.356519999999996,TJ,N2O,3.9,kg/TJ,235.39042799999999,kg -8df4d556-56b0-30f6-a118-621f76525d0d,SESCO,II.1.1,Mendoza,AR-M,annual,2010,gas oil combustion consumption by to the public,286.57608,TJ,CO2,74100.0,kg/TJ,21235287.528,kg -6bde85df-718c-358c-b8c9-452217970724,SESCO,II.1.1,Mendoza,AR-M,annual,2010,gas oil combustion consumption by to the public,286.57608,TJ,CH4,3.9,kg/TJ,1117.646712,kg -6bde85df-718c-358c-b8c9-452217970724,SESCO,II.1.1,Mendoza,AR-M,annual,2010,gas oil combustion consumption by to the public,286.57608,TJ,N2O,3.9,kg/TJ,1117.646712,kg -0740b244-823e-3ef3-8447-91e1e0323b79,SESCO,II.1.1,Misiones,AR-N,annual,2010,gas oil combustion consumption by to the public,213.18024,TJ,CO2,74100.0,kg/TJ,15796655.784,kg -d291dd8c-c4e3-3d72-9b39-c289bd528232,SESCO,II.1.1,Misiones,AR-N,annual,2010,gas oil combustion consumption by to the public,213.18024,TJ,CH4,3.9,kg/TJ,831.402936,kg -d291dd8c-c4e3-3d72-9b39-c289bd528232,SESCO,II.1.1,Misiones,AR-N,annual,2010,gas oil combustion consumption by to the public,213.18024,TJ,N2O,3.9,kg/TJ,831.402936,kg -fb95f879-3edb-3b42-8bc8-ba9d9aba0d62,SESCO,II.1.1,Neuquén,AR-Q,annual,2010,gas oil combustion consumption by to the public,49.8456,TJ,CO2,74100.0,kg/TJ,3693558.96,kg -160edf25-7ee7-3edf-898a-817628f2762c,SESCO,II.1.1,Neuquén,AR-Q,annual,2010,gas oil combustion consumption by to the public,49.8456,TJ,CH4,3.9,kg/TJ,194.39783999999997,kg -160edf25-7ee7-3edf-898a-817628f2762c,SESCO,II.1.1,Neuquén,AR-Q,annual,2010,gas oil combustion consumption by to the public,49.8456,TJ,N2O,3.9,kg/TJ,194.39783999999997,kg -c3ad9b21-9c17-3ee4-82fe-ca9f6cdd44fb,SESCO,II.1.1,Rio Negro,AR-R,annual,2010,gas oil combustion consumption by to the public,134.0052,TJ,CO2,74100.0,kg/TJ,9929785.32,kg -5e0894f8-ae70-36ff-92b8-66f1690d22cf,SESCO,II.1.1,Rio Negro,AR-R,annual,2010,gas oil combustion consumption by to the public,134.0052,TJ,CH4,3.9,kg/TJ,522.62028,kg -5e0894f8-ae70-36ff-92b8-66f1690d22cf,SESCO,II.1.1,Rio Negro,AR-R,annual,2010,gas oil combustion consumption by to the public,134.0052,TJ,N2O,3.9,kg/TJ,522.62028,kg -e72abfa6-e15d-35ef-b4ab-c088c431d65d,SESCO,II.1.1,Salta,AR-A,annual,2010,gas oil combustion consumption by to the public,109.4436,TJ,CO2,74100.0,kg/TJ,8109770.760000001,kg -ba0b1e8c-a5e0-3baa-8f4b-05c0b07d3c19,SESCO,II.1.1,Salta,AR-A,annual,2010,gas oil combustion consumption by to the public,109.4436,TJ,CH4,3.9,kg/TJ,426.83004,kg -ba0b1e8c-a5e0-3baa-8f4b-05c0b07d3c19,SESCO,II.1.1,Salta,AR-A,annual,2010,gas oil combustion consumption by to the public,109.4436,TJ,N2O,3.9,kg/TJ,426.83004,kg -be3cefbf-59eb-3c97-8197-eeec5540a5ea,SESCO,II.1.1,San Juan,AR-J,annual,2010,gas oil combustion consumption by to the public,45.00552,TJ,CO2,74100.0,kg/TJ,3334909.0319999997,kg -d5230cbe-2c78-3107-9643-2b5a60a2feea,SESCO,II.1.1,San Juan,AR-J,annual,2010,gas oil combustion consumption by to the public,45.00552,TJ,CH4,3.9,kg/TJ,175.521528,kg -d5230cbe-2c78-3107-9643-2b5a60a2feea,SESCO,II.1.1,San Juan,AR-J,annual,2010,gas oil combustion consumption by to the public,45.00552,TJ,N2O,3.9,kg/TJ,175.521528,kg -dae9d2d0-fabe-3597-bf00-65949ad35eae,SESCO,II.1.1,San Luis,AR-D,annual,2010,gas oil combustion consumption by to the public,13.94232,TJ,CO2,74100.0,kg/TJ,1033125.912,kg -a678e33f-9253-3bb2-801d-e12923a11f8e,SESCO,II.1.1,San Luis,AR-D,annual,2010,gas oil combustion consumption by to the public,13.94232,TJ,CH4,3.9,kg/TJ,54.375048,kg -a678e33f-9253-3bb2-801d-e12923a11f8e,SESCO,II.1.1,San Luis,AR-D,annual,2010,gas oil combustion consumption by to the public,13.94232,TJ,N2O,3.9,kg/TJ,54.375048,kg -130173ed-8f3b-3a1f-9ba1-c5201e629d57,SESCO,II.1.1,Santa Fe,AR-S,annual,2010,gas oil combustion consumption by to the public,1521.69948,TJ,CO2,74100.0,kg/TJ,112757931.468,kg -5185f248-45a6-3a5b-9302-170431b23dcb,SESCO,II.1.1,Santa Fe,AR-S,annual,2010,gas oil combustion consumption by to the public,1521.69948,TJ,CH4,3.9,kg/TJ,5934.627972,kg -5185f248-45a6-3a5b-9302-170431b23dcb,SESCO,II.1.1,Santa Fe,AR-S,annual,2010,gas oil combustion consumption by to the public,1521.69948,TJ,N2O,3.9,kg/TJ,5934.627972,kg -4a4f986a-bcb5-3478-bb4f-850ed65da734,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2010,gas oil combustion consumption by to the public,106.9152,TJ,CO2,74100.0,kg/TJ,7922416.32,kg -27454f95-1aba-3186-a40f-2af8bb9dfb8c,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2010,gas oil combustion consumption by to the public,106.9152,TJ,CH4,3.9,kg/TJ,416.96927999999997,kg -27454f95-1aba-3186-a40f-2af8bb9dfb8c,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2010,gas oil combustion consumption by to the public,106.9152,TJ,N2O,3.9,kg/TJ,416.96927999999997,kg -5d231ccf-89d1-395c-a012-9fbe5931068c,SESCO,II.1.1,Tucuman,AR-T,annual,2010,gas oil combustion consumption by to the public,150.69263999999998,TJ,CO2,74100.0,kg/TJ,11166324.623999998,kg -9755b57e-2b2d-3be7-ab6d-a976343a320f,SESCO,II.1.1,Tucuman,AR-T,annual,2010,gas oil combustion consumption by to the public,150.69263999999998,TJ,CH4,3.9,kg/TJ,587.701296,kg -9755b57e-2b2d-3be7-ab6d-a976343a320f,SESCO,II.1.1,Tucuman,AR-T,annual,2010,gas oil combustion consumption by to the public,150.69263999999998,TJ,N2O,3.9,kg/TJ,587.701296,kg -877b7e3f-cc56-3558-a035-4c647b39dcf5,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,jet kerosene combustion consumption by to the public,119.80447699999998,TJ,CO2,71500.0,kg/TJ,8566020.105499998,kg -c47d00dd-cf10-3936-a2b6-a05ea0e763f8,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,jet kerosene combustion consumption by to the public,119.80447699999998,TJ,CH4,0.5,kg/TJ,59.90223849999999,kg -9e11c2c0-c3bc-3857-a38f-7f76ab97c3c8,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,jet kerosene combustion consumption by to the public,119.80447699999998,TJ,N2O,2.0,kg/TJ,239.60895399999995,kg -56e386ef-1302-3cd1-b6f5-fdab9364bcb6,SESCO,II.1.1,Chaco,AR-H,annual,2010,jet kerosene combustion consumption by to the public,4.371967,TJ,CO2,71500.0,kg/TJ,312595.6405,kg -0d613e05-1a48-34bc-aba6-08460965a0a4,SESCO,II.1.1,Chaco,AR-H,annual,2010,jet kerosene combustion consumption by to the public,4.371967,TJ,CH4,0.5,kg/TJ,2.1859835,kg -24cf961b-3167-3cd9-949f-eeacc254dff5,SESCO,II.1.1,Chaco,AR-H,annual,2010,jet kerosene combustion consumption by to the public,4.371967,TJ,N2O,2.0,kg/TJ,8.743934,kg -84ca22c3-90e8-3e82-8df4-950ed92f8f9f,SESCO,II.1.1,Córdoba,AR-X,annual,2010,jet kerosene combustion consumption by to the public,35.44753099999999,TJ,CO2,71500.0,kg/TJ,2534498.466499999,kg -bceb5df3-4345-3ea9-bfb2-589b98db4999,SESCO,II.1.1,Córdoba,AR-X,annual,2010,jet kerosene combustion consumption by to the public,35.44753099999999,TJ,CH4,0.5,kg/TJ,17.723765499999995,kg -af3c8684-e7f2-3b0e-99e6-bc0b427b0525,SESCO,II.1.1,Córdoba,AR-X,annual,2010,jet kerosene combustion consumption by to the public,35.44753099999999,TJ,N2O,2.0,kg/TJ,70.89506199999998,kg -1f92e4e0-2fe5-3bbf-89ea-c10318cf73ea,SESCO,II.1.1,Entre Rios,AR-E,annual,2010,jet kerosene combustion consumption by to the public,22.897783999999998,TJ,CO2,71500.0,kg/TJ,1637191.5559999999,kg -b06539dd-08e0-30bc-8b5b-338f1ad0d5a1,SESCO,II.1.1,Entre Rios,AR-E,annual,2010,jet kerosene combustion consumption by to the public,22.897783999999998,TJ,CH4,0.5,kg/TJ,11.448891999999999,kg -b9da4139-484e-3fd8-9a65-2a41d3e5ba25,SESCO,II.1.1,Entre Rios,AR-E,annual,2010,jet kerosene combustion consumption by to the public,22.897783999999998,TJ,N2O,2.0,kg/TJ,45.795567999999996,kg -c234d106-6f0d-3539-bda9-62e9053681f6,SESCO,II.1.1,La Pampa,AR-L,annual,2010,jet kerosene combustion consumption by to the public,2.9251289999999996,TJ,CO2,71500.0,kg/TJ,209146.72349999996,kg -cb8a70c3-b95c-3087-ada6-a8591740cef9,SESCO,II.1.1,La Pampa,AR-L,annual,2010,jet kerosene combustion consumption by to the public,2.9251289999999996,TJ,CH4,0.5,kg/TJ,1.4625644999999998,kg -433657b5-068d-39b0-a617-3a4602210db6,SESCO,II.1.1,La Pampa,AR-L,annual,2010,jet kerosene combustion consumption by to the public,2.9251289999999996,TJ,N2O,2.0,kg/TJ,5.850257999999999,kg -b6a84fa7-c222-37e5-bb8b-2aaac06bc99c,SESCO,II.1.1,Mendoza,AR-M,annual,2010,jet kerosene combustion consumption by to the public,5.001026999999999,TJ,CO2,71500.0,kg/TJ,357573.4304999999,kg -2af91551-30a8-3305-be3d-0782bb535afd,SESCO,II.1.1,Mendoza,AR-M,annual,2010,jet kerosene combustion consumption by to the public,5.001026999999999,TJ,CH4,0.5,kg/TJ,2.5005134999999994,kg -991cafc6-b6e5-3524-8fc1-6f7091c269b9,SESCO,II.1.1,Mendoza,AR-M,annual,2010,jet kerosene combustion consumption by to the public,5.001026999999999,TJ,N2O,2.0,kg/TJ,10.002053999999998,kg -ad27df66-b81c-30de-a5ac-8aedb6fa78e9,SESCO,II.1.1,Santa Fe,AR-S,annual,2010,jet kerosene combustion consumption by to the public,25.414023999999994,TJ,CO2,71500.0,kg/TJ,1817102.7159999995,kg -6103999e-9e67-322c-bbbc-165dc22c884c,SESCO,II.1.1,Santa Fe,AR-S,annual,2010,jet kerosene combustion consumption by to the public,25.414023999999994,TJ,CH4,0.5,kg/TJ,12.707011999999997,kg -c2e3d12f-9d73-3091-89c5-dd8b7005f017,SESCO,II.1.1,Santa Fe,AR-S,annual,2010,jet kerosene combustion consumption by to the public,25.414023999999994,TJ,N2O,2.0,kg/TJ,50.82804799999999,kg -5d545b4e-2a72-3c1e-95f8-740e904cc13d,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2010,jet kerosene combustion consumption by to the public,0.62906,TJ,CO2,71500.0,kg/TJ,44977.78999999999,kg -098b6c1b-32d6-3fbc-8f5c-db870d3a4df4,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2010,jet kerosene combustion consumption by to the public,0.62906,TJ,CH4,0.5,kg/TJ,0.31453,kg -61da2c75-40bc-346f-b02c-b436c3df0d7d,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2010,jet kerosene combustion consumption by to the public,0.62906,TJ,N2O,2.0,kg/TJ,1.25812,kg -fccbff91-77d2-3d8a-863d-228e27cb5f68,SESCO,I.3.1,Buenos Aires,AR-B,annual,2010,gas oil combustion consumption by petrochemical industries,0.18059999999999998,TJ,CO2,74100.0,kg/TJ,13382.46,kg -f200095e-cce8-3c31-9252-d5f4f4554070,SESCO,I.3.1,Buenos Aires,AR-B,annual,2010,gas oil combustion consumption by petrochemical industries,0.18059999999999998,TJ,CH4,3.9,kg/TJ,0.70434,kg -f200095e-cce8-3c31-9252-d5f4f4554070,SESCO,I.3.1,Buenos Aires,AR-B,annual,2010,gas oil combustion consumption by petrochemical industries,0.18059999999999998,TJ,N2O,3.9,kg/TJ,0.70434,kg -3de08342-2466-3a68-ba16-d7420fb24112,SESCO,I.3.1,Capital Federal,AR-C,annual,2010,gas oil combustion consumption by petrochemical industries,1.37256,TJ,CO2,74100.0,kg/TJ,101706.696,kg -d9b3805d-362c-3c41-b311-d6e7bead1f63,SESCO,I.3.1,Capital Federal,AR-C,annual,2010,gas oil combustion consumption by petrochemical industries,1.37256,TJ,CH4,3.9,kg/TJ,5.352984,kg -d9b3805d-362c-3c41-b311-d6e7bead1f63,SESCO,I.3.1,Capital Federal,AR-C,annual,2010,gas oil combustion consumption by petrochemical industries,1.37256,TJ,N2O,3.9,kg/TJ,5.352984,kg -9f325c73-2b72-3859-b004-63b6b18ea35b,SESCO,I.3.1,Capital Federal,AR-C,annual,2010,gas oil combustion consumption by petrochemical industries,0.18059999999999998,TJ,CO2,74100.0,kg/TJ,13382.46,kg -25d89e0f-6ef1-371c-b41c-1eb07c9e8346,SESCO,I.3.1,Capital Federal,AR-C,annual,2010,gas oil combustion consumption by petrochemical industries,0.18059999999999998,TJ,CH4,3.9,kg/TJ,0.70434,kg -25d89e0f-6ef1-371c-b41c-1eb07c9e8346,SESCO,I.3.1,Capital Federal,AR-C,annual,2010,gas oil combustion consumption by petrochemical industries,0.18059999999999998,TJ,N2O,3.9,kg/TJ,0.70434,kg -4ef98a12-fa50-3473-abb9-2dce62e25df0,SESCO,II.2.1,Buenos Aires,AR-B,annual,2010,gas oil combustion consumption by railway transport,875.44044,TJ,CO2,74100.0,kg/TJ,64870136.603999995,kg -aec0e1d7-7b90-3520-8b84-3a98dc63053f,SESCO,II.2.1,Buenos Aires,AR-B,annual,2010,gas oil combustion consumption by railway transport,875.44044,TJ,CH4,3.9,kg/TJ,3414.2177159999997,kg -aec0e1d7-7b90-3520-8b84-3a98dc63053f,SESCO,II.2.1,Buenos Aires,AR-B,annual,2010,gas oil combustion consumption by railway transport,875.44044,TJ,N2O,3.9,kg/TJ,3414.2177159999997,kg -bb44e1a5-b071-3dd4-be1a-f0367b4b0bdf,SESCO,II.2.1,Capital Federal,AR-C,annual,2010,gas oil combustion consumption by railway transport,1494.8262,TJ,CO2,74100.0,kg/TJ,110766621.42,kg -e00226de-805d-3713-b10e-074c8007e0e7,SESCO,II.2.1,Capital Federal,AR-C,annual,2010,gas oil combustion consumption by railway transport,1494.8262,TJ,CH4,3.9,kg/TJ,5829.82218,kg -e00226de-805d-3713-b10e-074c8007e0e7,SESCO,II.2.1,Capital Federal,AR-C,annual,2010,gas oil combustion consumption by railway transport,1494.8262,TJ,N2O,3.9,kg/TJ,5829.82218,kg -8a05f4a3-1498-3532-9f11-2192c16cb780,SESCO,II.2.1,Córdoba,AR-X,annual,2010,gas oil combustion consumption by railway transport,17.157,TJ,CO2,74100.0,kg/TJ,1271333.7,kg -c4f37b6a-01f8-3556-9e9d-7d2e2560083b,SESCO,II.2.1,Córdoba,AR-X,annual,2010,gas oil combustion consumption by railway transport,17.157,TJ,CH4,3.9,kg/TJ,66.9123,kg -c4f37b6a-01f8-3556-9e9d-7d2e2560083b,SESCO,II.2.1,Córdoba,AR-X,annual,2010,gas oil combustion consumption by railway transport,17.157,TJ,N2O,3.9,kg/TJ,66.9123,kg -3bbdb347-9fc5-3b86-99d5-ae4969188fda,SESCO,II.2.1,Santa Fe,AR-S,annual,2010,gas oil combustion consumption by railway transport,256.27139999999997,TJ,CO2,74100.0,kg/TJ,18989710.74,kg -664d2e87-e4df-3485-934f-566c4d2b7886,SESCO,II.2.1,Santa Fe,AR-S,annual,2010,gas oil combustion consumption by railway transport,256.27139999999997,TJ,CH4,3.9,kg/TJ,999.4584599999998,kg -664d2e87-e4df-3485-934f-566c4d2b7886,SESCO,II.2.1,Santa Fe,AR-S,annual,2010,gas oil combustion consumption by railway transport,256.27139999999997,TJ,N2O,3.9,kg/TJ,999.4584599999998,kg -aee0e807-fe14-3f2e-8466-7c9e65037c94,SESCO,II.2.1,Santiago del Estero,AR-G,annual,2010,gas oil combustion consumption by railway transport,7.36848,TJ,CO2,74100.0,kg/TJ,546004.368,kg -13aa7f93-ad76-3868-ad03-d7d0d6dc9c0d,SESCO,II.2.1,Santiago del Estero,AR-G,annual,2010,gas oil combustion consumption by railway transport,7.36848,TJ,CH4,3.9,kg/TJ,28.737071999999998,kg -13aa7f93-ad76-3868-ad03-d7d0d6dc9c0d,SESCO,II.2.1,Santiago del Estero,AR-G,annual,2010,gas oil combustion consumption by railway transport,7.36848,TJ,N2O,3.9,kg/TJ,28.737071999999998,kg -46b9a657-5683-30de-b2da-384f14a55001,SESCO,II.2.1,Tucuman,AR-T,annual,2010,gas oil combustion consumption by railway transport,7.62132,TJ,CO2,74100.0,kg/TJ,564739.812,kg -ffcc70f3-01e0-357f-a17c-441bc9de9267,SESCO,II.2.1,Tucuman,AR-T,annual,2010,gas oil combustion consumption by railway transport,7.62132,TJ,CH4,3.9,kg/TJ,29.723148,kg -ffcc70f3-01e0-357f-a17c-441bc9de9267,SESCO,II.2.1,Tucuman,AR-T,annual,2010,gas oil combustion consumption by railway transport,7.62132,TJ,N2O,3.9,kg/TJ,29.723148,kg -f522c101-adf4-39db-ba79-fbbc8e1b01ff,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,gasoline combustion consumption by freight transport,4.7844,TJ,CO2,69300.0,kg/TJ,331558.92,kg -754108c6-5882-3a57-8b36-7ae3361392c2,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,gasoline combustion consumption by freight transport,4.7844,TJ,CH4,33.0,kg/TJ,157.8852,kg -0e4c3d01-9519-3df8-bc82-69c19e5803e2,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,gasoline combustion consumption by freight transport,4.7844,TJ,N2O,3.2,kg/TJ,15.31008,kg -908ec396-06af-309b-943f-22822d61158a,SESCO,II.1.1,Capital Federal,AR-C,annual,2010,gasoline combustion consumption by freight transport,2.215,TJ,CO2,69300.0,kg/TJ,153499.5,kg -f9ae3f64-b722-3e03-99c9-bcc21c824381,SESCO,II.1.1,Capital Federal,AR-C,annual,2010,gasoline combustion consumption by freight transport,2.215,TJ,CH4,33.0,kg/TJ,73.095,kg -b2454f96-300c-3f0c-a6fd-c5a21595705a,SESCO,II.1.1,Capital Federal,AR-C,annual,2010,gasoline combustion consumption by freight transport,2.215,TJ,N2O,3.2,kg/TJ,7.088,kg -8be79666-4252-3420-99c5-d1e0b4262190,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,gas oil combustion consumption by freight transport,953.2067999999999,TJ,CO2,74100.0,kg/TJ,70632623.88,kg -2378a78f-5048-3f31-b7e0-1bb5d1afdd61,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,gas oil combustion consumption by freight transport,953.2067999999999,TJ,CH4,3.9,kg/TJ,3717.5065199999995,kg -2378a78f-5048-3f31-b7e0-1bb5d1afdd61,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,gas oil combustion consumption by freight transport,953.2067999999999,TJ,N2O,3.9,kg/TJ,3717.5065199999995,kg -70b807f4-cdd5-351f-9647-13d23d00e475,SESCO,II.1.1,Capital Federal,AR-C,annual,2010,gas oil combustion consumption by freight transport,201.29676,TJ,CO2,74100.0,kg/TJ,14916089.916000001,kg -5a64871b-271c-37dd-b3da-a50f13d663fc,SESCO,II.1.1,Capital Federal,AR-C,annual,2010,gas oil combustion consumption by freight transport,201.29676,TJ,CH4,3.9,kg/TJ,785.057364,kg -5a64871b-271c-37dd-b3da-a50f13d663fc,SESCO,II.1.1,Capital Federal,AR-C,annual,2010,gas oil combustion consumption by freight transport,201.29676,TJ,N2O,3.9,kg/TJ,785.057364,kg -2b3ca24f-b438-33aa-bc7f-c8f87f9882e3,SESCO,II.1.1,Córdoba,AR-X,annual,2010,gas oil combustion consumption by freight transport,148.23648,TJ,CO2,74100.0,kg/TJ,10984323.168,kg -e238a20a-68f2-36e1-baad-3e5eaeb20c4d,SESCO,II.1.1,Córdoba,AR-X,annual,2010,gas oil combustion consumption by freight transport,148.23648,TJ,CH4,3.9,kg/TJ,578.122272,kg -e238a20a-68f2-36e1-baad-3e5eaeb20c4d,SESCO,II.1.1,Córdoba,AR-X,annual,2010,gas oil combustion consumption by freight transport,148.23648,TJ,N2O,3.9,kg/TJ,578.122272,kg -827963a8-fb6e-35e0-91c5-5a914d0cb404,SESCO,II.1.1,Entre Rios,AR-E,annual,2010,gas oil combustion consumption by freight transport,29.0766,TJ,CO2,74100.0,kg/TJ,2154576.06,kg -3a09208c-3f0f-3f12-bec6-7fdccb0ef77a,SESCO,II.1.1,Entre Rios,AR-E,annual,2010,gas oil combustion consumption by freight transport,29.0766,TJ,CH4,3.9,kg/TJ,113.39873999999999,kg -3a09208c-3f0f-3f12-bec6-7fdccb0ef77a,SESCO,II.1.1,Entre Rios,AR-E,annual,2010,gas oil combustion consumption by freight transport,29.0766,TJ,N2O,3.9,kg/TJ,113.39873999999999,kg -45f6fda5-1fb9-349f-9e26-f91348c7f71c,SESCO,II.1.1,Jujuy,AR-Y,annual,2010,gas oil combustion consumption by freight transport,6.28488,TJ,CO2,74100.0,kg/TJ,465709.608,kg -9356b3e6-b53c-3656-988e-5e1f378f64d3,SESCO,II.1.1,Jujuy,AR-Y,annual,2010,gas oil combustion consumption by freight transport,6.28488,TJ,CH4,3.9,kg/TJ,24.511032,kg -9356b3e6-b53c-3656-988e-5e1f378f64d3,SESCO,II.1.1,Jujuy,AR-Y,annual,2010,gas oil combustion consumption by freight transport,6.28488,TJ,N2O,3.9,kg/TJ,24.511032,kg -2af8742e-b53d-3ccc-9916-d404ddeec640,SESCO,II.1.1,La Pampa,AR-L,annual,2010,gas oil combustion consumption by freight transport,12.71424,TJ,CO2,74100.0,kg/TJ,942125.184,kg -99113fd5-ee2b-3646-877f-741a9bf63640,SESCO,II.1.1,La Pampa,AR-L,annual,2010,gas oil combustion consumption by freight transport,12.71424,TJ,CH4,3.9,kg/TJ,49.585536,kg -99113fd5-ee2b-3646-877f-741a9bf63640,SESCO,II.1.1,La Pampa,AR-L,annual,2010,gas oil combustion consumption by freight transport,12.71424,TJ,N2O,3.9,kg/TJ,49.585536,kg -bd88b844-c355-3a23-88ca-f3b0da3fd15e,SESCO,II.1.1,Mendoza,AR-M,annual,2010,gas oil combustion consumption by freight transport,9.10224,TJ,CO2,74100.0,kg/TJ,674475.984,kg -6c84c0b9-fec1-34d2-8bbc-3d86d6ffc516,SESCO,II.1.1,Mendoza,AR-M,annual,2010,gas oil combustion consumption by freight transport,9.10224,TJ,CH4,3.9,kg/TJ,35.498736,kg -6c84c0b9-fec1-34d2-8bbc-3d86d6ffc516,SESCO,II.1.1,Mendoza,AR-M,annual,2010,gas oil combustion consumption by freight transport,9.10224,TJ,N2O,3.9,kg/TJ,35.498736,kg -9541f626-e86e-38e8-adc1-0ad06c404fed,SESCO,II.1.1,Salta,AR-A,annual,2010,gas oil combustion consumption by freight transport,40.635,TJ,CO2,74100.0,kg/TJ,3011053.5,kg -70f0aebe-208c-3d78-87a3-80476f8a8d90,SESCO,II.1.1,Salta,AR-A,annual,2010,gas oil combustion consumption by freight transport,40.635,TJ,CH4,3.9,kg/TJ,158.4765,kg -70f0aebe-208c-3d78-87a3-80476f8a8d90,SESCO,II.1.1,Salta,AR-A,annual,2010,gas oil combustion consumption by freight transport,40.635,TJ,N2O,3.9,kg/TJ,158.4765,kg -c76e817b-4a23-3760-9b24-286292b9b42e,SESCO,II.1.1,San Luis,AR-D,annual,2010,gas oil combustion consumption by freight transport,14.19516,TJ,CO2,74100.0,kg/TJ,1051861.356,kg -e2c3240a-0ff9-324b-bae3-4fbd92d9da44,SESCO,II.1.1,San Luis,AR-D,annual,2010,gas oil combustion consumption by freight transport,14.19516,TJ,CH4,3.9,kg/TJ,55.361124,kg -e2c3240a-0ff9-324b-bae3-4fbd92d9da44,SESCO,II.1.1,San Luis,AR-D,annual,2010,gas oil combustion consumption by freight transport,14.19516,TJ,N2O,3.9,kg/TJ,55.361124,kg -de4dd313-0def-3220-b260-f6493c62ef74,SESCO,II.1.1,Santa Fe,AR-S,annual,2010,gas oil combustion consumption by freight transport,85.6044,TJ,CO2,74100.0,kg/TJ,6343286.04,kg -65de742c-f87e-3e37-9051-b3d2ef255cbd,SESCO,II.1.1,Santa Fe,AR-S,annual,2010,gas oil combustion consumption by freight transport,85.6044,TJ,CH4,3.9,kg/TJ,333.85715999999996,kg -65de742c-f87e-3e37-9051-b3d2ef255cbd,SESCO,II.1.1,Santa Fe,AR-S,annual,2010,gas oil combustion consumption by freight transport,85.6044,TJ,N2O,3.9,kg/TJ,333.85715999999996,kg -67d7a300-9399-3667-94db-b484da112b40,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2010,gas oil combustion consumption by freight transport,4.22604,TJ,CO2,74100.0,kg/TJ,313149.564,kg -f79a8b39-7b68-34cd-a663-063d8eacce5c,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2010,gas oil combustion consumption by freight transport,4.22604,TJ,CH4,3.9,kg/TJ,16.481556,kg -f79a8b39-7b68-34cd-a663-063d8eacce5c,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2010,gas oil combustion consumption by freight transport,4.22604,TJ,N2O,3.9,kg/TJ,16.481556,kg -ad3a2614-0df2-32bc-8732-46d9de8f15f7,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,jet kerosene combustion consumption by public passenger transport,2128.707587,TJ,CO2,71500.0,kg/TJ,152202592.4705,kg -d09f4f09-ac04-32d7-a017-cb033ff64221,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,jet kerosene combustion consumption by public passenger transport,2128.707587,TJ,CH4,0.5,kg/TJ,1064.3537935,kg -4a248f36-7c3b-3b6b-baf0-41c421be1533,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,jet kerosene combustion consumption by public passenger transport,2128.707587,TJ,N2O,2.0,kg/TJ,4257.415174,kg -c357f40a-0b72-39a3-a445-26ffdf619086,SESCO,II.1.1,Capital Federal,AR-C,annual,2010,jet kerosene combustion consumption by public passenger transport,368.25172399999997,TJ,CO2,71500.0,kg/TJ,26329998.266,kg -4f65834d-645f-3742-84f7-6757c9f938a1,SESCO,II.1.1,Capital Federal,AR-C,annual,2010,jet kerosene combustion consumption by public passenger transport,368.25172399999997,TJ,CH4,0.5,kg/TJ,184.12586199999998,kg -5d98fef8-b244-3fb8-a11d-1cadfefe64a3,SESCO,II.1.1,Capital Federal,AR-C,annual,2010,jet kerosene combustion consumption by public passenger transport,368.25172399999997,TJ,N2O,2.0,kg/TJ,736.5034479999999,kg -b748ee08-660d-379a-ac45-a5aa6f8b1665,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,gas oil combustion consumption by public passenger transport,4252.47984,TJ,CO2,74100.0,kg/TJ,315108756.144,kg -1e2ebfbf-5d5e-331c-942a-478abf70d76a,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,gas oil combustion consumption by public passenger transport,4252.47984,TJ,CH4,3.9,kg/TJ,16584.671376,kg -1e2ebfbf-5d5e-331c-942a-478abf70d76a,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,gas oil combustion consumption by public passenger transport,4252.47984,TJ,N2O,3.9,kg/TJ,16584.671376,kg -f36a24e9-a578-3e19-880c-b98b5502e67b,SESCO,II.1.1,Capital Federal,AR-C,annual,2010,gas oil combustion consumption by public passenger transport,381.68004,TJ,CO2,74100.0,kg/TJ,28282490.964,kg -4d78fb18-1819-394d-8fd8-849a5d0df668,SESCO,II.1.1,Capital Federal,AR-C,annual,2010,gas oil combustion consumption by public passenger transport,381.68004,TJ,CH4,3.9,kg/TJ,1488.552156,kg -4d78fb18-1819-394d-8fd8-849a5d0df668,SESCO,II.1.1,Capital Federal,AR-C,annual,2010,gas oil combustion consumption by public passenger transport,381.68004,TJ,N2O,3.9,kg/TJ,1488.552156,kg -1c62990e-3c1b-39b7-b564-6d39402d26ff,SESCO,II.1.1,Córdoba,AR-X,annual,2010,gas oil combustion consumption by public passenger transport,12.71424,TJ,CO2,74100.0,kg/TJ,942125.184,kg -28f5d0b4-74bc-3b22-947a-45cf832eb3b0,SESCO,II.1.1,Córdoba,AR-X,annual,2010,gas oil combustion consumption by public passenger transport,12.71424,TJ,CH4,3.9,kg/TJ,49.585536,kg -28f5d0b4-74bc-3b22-947a-45cf832eb3b0,SESCO,II.1.1,Córdoba,AR-X,annual,2010,gas oil combustion consumption by public passenger transport,12.71424,TJ,N2O,3.9,kg/TJ,49.585536,kg -732767db-c57d-3c5e-b1c4-1da8918d1577,SESCO,II.1.1,Entre Rios,AR-E,annual,2010,gas oil combustion consumption by public passenger transport,9.96912,TJ,CO2,74100.0,kg/TJ,738711.792,kg -af18329c-9681-3293-9363-8a52c4a1dcfd,SESCO,II.1.1,Entre Rios,AR-E,annual,2010,gas oil combustion consumption by public passenger transport,9.96912,TJ,CH4,3.9,kg/TJ,38.879568,kg -af18329c-9681-3293-9363-8a52c4a1dcfd,SESCO,II.1.1,Entre Rios,AR-E,annual,2010,gas oil combustion consumption by public passenger transport,9.96912,TJ,N2O,3.9,kg/TJ,38.879568,kg -66b872b5-e3a1-3a56-8469-a6d2b618a40c,SESCO,II.1.1,Misiones,AR-N,annual,2010,gas oil combustion consumption by public passenger transport,15.350999999999999,TJ,CO2,74100.0,kg/TJ,1137509.0999999999,kg -2a04c13d-46d8-30e6-bd5b-c53fdd92711b,SESCO,II.1.1,Misiones,AR-N,annual,2010,gas oil combustion consumption by public passenger transport,15.350999999999999,TJ,CH4,3.9,kg/TJ,59.8689,kg -2a04c13d-46d8-30e6-bd5b-c53fdd92711b,SESCO,II.1.1,Misiones,AR-N,annual,2010,gas oil combustion consumption by public passenger transport,15.350999999999999,TJ,N2O,3.9,kg/TJ,59.8689,kg -238e11b1-e874-3167-8990-c5b9c406caa4,SESCO,II.1.1,Tucuman,AR-T,annual,2010,gas oil combustion consumption by public passenger transport,11.59452,TJ,CO2,74100.0,kg/TJ,859153.9319999999,kg -6b9244f1-56eb-3812-bb78-9c7dae655fe9,SESCO,II.1.1,Tucuman,AR-T,annual,2010,gas oil combustion consumption by public passenger transport,11.59452,TJ,CH4,3.9,kg/TJ,45.218627999999995,kg -6b9244f1-56eb-3812-bb78-9c7dae655fe9,SESCO,II.1.1,Tucuman,AR-T,annual,2010,gas oil combustion consumption by public passenger transport,11.59452,TJ,N2O,3.9,kg/TJ,45.218627999999995,kg -cada7c32-637b-398e-87b4-e509ffcc1cff,SESCO,I.3.1,Buenos Aires,AR-B,annual,2010,gasoline combustion consumption by petrochemical industries,22.107607199999997,TJ,CO2,69300.0,kg/TJ,1532057.1789599997,kg -99a0cb2c-e982-302c-a134-fadad2f5ca0b,SESCO,I.3.1,Buenos Aires,AR-B,annual,2010,gasoline combustion consumption by petrochemical industries,22.107607199999997,TJ,CH4,33.0,kg/TJ,729.5510375999999,kg -32aaacfa-de3c-3bbf-a3e6-62d644ad2dac,SESCO,I.3.1,Buenos Aires,AR-B,annual,2010,gasoline combustion consumption by petrochemical industries,22.107607199999997,TJ,N2O,3.2,kg/TJ,70.74434303999999,kg -f7444b8b-e738-31f2-80f5-37b9df0354d9,SESCO,II.5.1,Buenos Aires,AR-B,annual,2010,gasoline combustion consumption by agriculture machines,126.4322,TJ,CO2,69300.0,kg/TJ,8761751.459999999,kg -f38099eb-14b4-399d-af7e-a04a8578b3be,SESCO,II.5.1,Buenos Aires,AR-B,annual,2010,gasoline combustion consumption by agriculture machines,126.4322,TJ,CH4,33.0,kg/TJ,4172.2626,kg -3d9b535b-bd75-308b-ba63-0b57e1945b0c,SESCO,II.5.1,Buenos Aires,AR-B,annual,2010,gasoline combustion consumption by agriculture machines,126.4322,TJ,N2O,3.2,kg/TJ,404.58304,kg -a0c545bb-6a9d-3241-bd7c-19ba2a61dfc1,SESCO,II.5.1,La Pampa,AR-L,annual,2010,gasoline combustion consumption by agriculture machines,1.1518,TJ,CO2,69300.0,kg/TJ,79819.73999999999,kg -1d9771a7-bc96-3308-a489-6c0159f30e60,SESCO,II.5.1,La Pampa,AR-L,annual,2010,gasoline combustion consumption by agriculture machines,1.1518,TJ,CH4,33.0,kg/TJ,38.0094,kg -80d93d03-4d5b-3f88-a303-35b2eec299da,SESCO,II.5.1,La Pampa,AR-L,annual,2010,gasoline combustion consumption by agriculture machines,1.1518,TJ,N2O,3.2,kg/TJ,3.68576,kg -8e50bde7-ff78-349b-94f1-021db20ea052,SESCO,II.5.1,Salta,AR-A,annual,2010,gasoline combustion consumption by agriculture machines,1.5505,TJ,CO2,69300.0,kg/TJ,107449.65,kg -06e7fe2a-80f3-304e-bc04-85ae4849779e,SESCO,II.5.1,Salta,AR-A,annual,2010,gasoline combustion consumption by agriculture machines,1.5505,TJ,CH4,33.0,kg/TJ,51.1665,kg -d2c6f7ec-dba4-30b2-ac89-d048809312cf,SESCO,II.5.1,Salta,AR-A,annual,2010,gasoline combustion consumption by agriculture machines,1.5505,TJ,N2O,3.2,kg/TJ,4.961600000000001,kg -3a396b8a-50fa-38d4-943a-135d39ed71bc,SESCO,II.5.1,Buenos Aires,AR-B,annual,2010,gas oil combustion consumption by agriculture machines,3637.1034,TJ,CO2,74100.0,kg/TJ,269509361.94,kg -1907341e-1ae1-3c1c-9352-f6a02c72bcfe,SESCO,II.5.1,Buenos Aires,AR-B,annual,2010,gas oil combustion consumption by agriculture machines,3637.1034,TJ,CH4,3.9,kg/TJ,14184.70326,kg -1907341e-1ae1-3c1c-9352-f6a02c72bcfe,SESCO,II.5.1,Buenos Aires,AR-B,annual,2010,gas oil combustion consumption by agriculture machines,3637.1034,TJ,N2O,3.9,kg/TJ,14184.70326,kg -d2ac4149-efed-344b-8181-208e311c26d3,SESCO,II.5.1,Capital Federal,AR-C,annual,2010,gas oil combustion consumption by agriculture machines,26.07864,TJ,CO2,74100.0,kg/TJ,1932427.224,kg -a44317ca-5ad7-3db6-9ff0-55c5215fce90,SESCO,II.5.1,Capital Federal,AR-C,annual,2010,gas oil combustion consumption by agriculture machines,26.07864,TJ,CH4,3.9,kg/TJ,101.706696,kg -a44317ca-5ad7-3db6-9ff0-55c5215fce90,SESCO,II.5.1,Capital Federal,AR-C,annual,2010,gas oil combustion consumption by agriculture machines,26.07864,TJ,N2O,3.9,kg/TJ,101.706696,kg -885c1aa9-c1c8-3144-ab6d-e5d40b3ee0ac,SESCO,II.5.1,Chaco,AR-H,annual,2010,gas oil combustion consumption by agriculture machines,90.5174424,TJ,CO2,74100.0,kg/TJ,6707342.48184,kg -1cdf3724-4cb3-320f-922a-81fe81ea820e,SESCO,II.5.1,Chaco,AR-H,annual,2010,gas oil combustion consumption by agriculture machines,90.5174424,TJ,CH4,3.9,kg/TJ,353.01802535999997,kg -1cdf3724-4cb3-320f-922a-81fe81ea820e,SESCO,II.5.1,Chaco,AR-H,annual,2010,gas oil combustion consumption by agriculture machines,90.5174424,TJ,N2O,3.9,kg/TJ,353.01802535999997,kg -98182d83-6225-31c8-957d-378693409005,SESCO,II.5.1,Corrientes,AR-W,annual,2010,gas oil combustion consumption by agriculture machines,52.471524,TJ,CO2,74100.0,kg/TJ,3888139.9284,kg -f535f951-695d-3bfa-b124-71334a15c5bb,SESCO,II.5.1,Corrientes,AR-W,annual,2010,gas oil combustion consumption by agriculture machines,52.471524,TJ,CH4,3.9,kg/TJ,204.6389436,kg -f535f951-695d-3bfa-b124-71334a15c5bb,SESCO,II.5.1,Corrientes,AR-W,annual,2010,gas oil combustion consumption by agriculture machines,52.471524,TJ,N2O,3.9,kg/TJ,204.6389436,kg -bd5514dd-0291-3332-930b-6f0e046b6514,SESCO,II.5.1,Córdoba,AR-X,annual,2010,gas oil combustion consumption by agriculture machines,1267.34244,TJ,CO2,74100.0,kg/TJ,93910074.80399999,kg -d2e1239c-1f84-32c5-8b56-1f2cd9e1f951,SESCO,II.5.1,Córdoba,AR-X,annual,2010,gas oil combustion consumption by agriculture machines,1267.34244,TJ,CH4,3.9,kg/TJ,4942.635515999999,kg -d2e1239c-1f84-32c5-8b56-1f2cd9e1f951,SESCO,II.5.1,Córdoba,AR-X,annual,2010,gas oil combustion consumption by agriculture machines,1267.34244,TJ,N2O,3.9,kg/TJ,4942.635515999999,kg -861383f7-eb63-3bd0-8e91-1a742d5ff347,SESCO,II.5.1,Entre Rios,AR-E,annual,2010,gas oil combustion consumption by agriculture machines,1100.1790799999999,TJ,CO2,74100.0,kg/TJ,81523269.828,kg -e676b899-f276-34fc-9a14-c2b37d026321,SESCO,II.5.1,Entre Rios,AR-E,annual,2010,gas oil combustion consumption by agriculture machines,1100.1790799999999,TJ,CH4,3.9,kg/TJ,4290.698412,kg -e676b899-f276-34fc-9a14-c2b37d026321,SESCO,II.5.1,Entre Rios,AR-E,annual,2010,gas oil combustion consumption by agriculture machines,1100.1790799999999,TJ,N2O,3.9,kg/TJ,4290.698412,kg -7fcb18b0-f730-3440-bb55-e7b608b14566,SESCO,II.5.1,Formosa,AR-P,annual,2010,gas oil combustion consumption by agriculture machines,10.04136,TJ,CO2,74100.0,kg/TJ,744064.776,kg -555cd33a-2efd-38e6-bd0d-e07e6df05a9b,SESCO,II.5.1,Formosa,AR-P,annual,2010,gas oil combustion consumption by agriculture machines,10.04136,TJ,CH4,3.9,kg/TJ,39.161303999999994,kg -555cd33a-2efd-38e6-bd0d-e07e6df05a9b,SESCO,II.5.1,Formosa,AR-P,annual,2010,gas oil combustion consumption by agriculture machines,10.04136,TJ,N2O,3.9,kg/TJ,39.161303999999994,kg -7a5a51f1-5122-3a2a-8666-333e9944eaa9,SESCO,II.5.1,Jujuy,AR-Y,annual,2010,gas oil combustion consumption by agriculture machines,573.33276,TJ,CO2,74100.0,kg/TJ,42483957.516,kg -c6cbf47a-8771-399b-b4e1-52824c382f1a,SESCO,II.5.1,Jujuy,AR-Y,annual,2010,gas oil combustion consumption by agriculture machines,573.33276,TJ,CH4,3.9,kg/TJ,2235.997764,kg -c6cbf47a-8771-399b-b4e1-52824c382f1a,SESCO,II.5.1,Jujuy,AR-Y,annual,2010,gas oil combustion consumption by agriculture machines,573.33276,TJ,N2O,3.9,kg/TJ,2235.997764,kg -8e9fd3c2-cea9-3bba-afe6-01770a661676,SESCO,II.5.1,La Pampa,AR-L,annual,2010,gas oil combustion consumption by agriculture machines,178.9746,TJ,CO2,74100.0,kg/TJ,13262017.860000001,kg -1e6f53ae-ae5d-3f2b-804c-c2365027becb,SESCO,II.5.1,La Pampa,AR-L,annual,2010,gas oil combustion consumption by agriculture machines,178.9746,TJ,CH4,3.9,kg/TJ,698.00094,kg -1e6f53ae-ae5d-3f2b-804c-c2365027becb,SESCO,II.5.1,La Pampa,AR-L,annual,2010,gas oil combustion consumption by agriculture machines,178.9746,TJ,N2O,3.9,kg/TJ,698.00094,kg -874f009e-e949-33a7-b072-9c32e27af659,SESCO,II.5.1,Mendoza,AR-M,annual,2010,gas oil combustion consumption by agriculture machines,19.5149136,TJ,CO2,74100.0,kg/TJ,1446055.09776,kg -a5335a6d-2fe7-33f1-a8fe-4948c3c68cbe,SESCO,II.5.1,Mendoza,AR-M,annual,2010,gas oil combustion consumption by agriculture machines,19.5149136,TJ,CH4,3.9,kg/TJ,76.10816304,kg -a5335a6d-2fe7-33f1-a8fe-4948c3c68cbe,SESCO,II.5.1,Mendoza,AR-M,annual,2010,gas oil combustion consumption by agriculture machines,19.5149136,TJ,N2O,3.9,kg/TJ,76.10816304,kg -7fee873a-b5ac-34d1-951a-8402b07cc640,SESCO,II.5.1,Misiones,AR-N,annual,2010,gas oil combustion consumption by agriculture machines,13.40052,TJ,CO2,74100.0,kg/TJ,992978.532,kg -07d4be11-b728-3af5-a949-6ae76f1e2351,SESCO,II.5.1,Misiones,AR-N,annual,2010,gas oil combustion consumption by agriculture machines,13.40052,TJ,CH4,3.9,kg/TJ,52.262028,kg -07d4be11-b728-3af5-a949-6ae76f1e2351,SESCO,II.5.1,Misiones,AR-N,annual,2010,gas oil combustion consumption by agriculture machines,13.40052,TJ,N2O,3.9,kg/TJ,52.262028,kg -01fe12b8-4461-3135-9ae4-25cbfd1fb0cc,SESCO,II.5.1,Neuquén,AR-Q,annual,2010,gas oil combustion consumption by agriculture machines,5.34576,TJ,CO2,74100.0,kg/TJ,396120.81600000005,kg -f27ae4fc-2c06-38ba-b210-730d9a7bcd1d,SESCO,II.5.1,Neuquén,AR-Q,annual,2010,gas oil combustion consumption by agriculture machines,5.34576,TJ,CH4,3.9,kg/TJ,20.848464,kg -f27ae4fc-2c06-38ba-b210-730d9a7bcd1d,SESCO,II.5.1,Neuquén,AR-Q,annual,2010,gas oil combustion consumption by agriculture machines,5.34576,TJ,N2O,3.9,kg/TJ,20.848464,kg -e6e2b45a-2a8e-3b54-9f36-a1b2f3ca8052,SESCO,II.5.1,Rio Negro,AR-R,annual,2010,gas oil combustion consumption by agriculture machines,21.094079999999998,TJ,CO2,74100.0,kg/TJ,1563071.328,kg -37a78e89-7e18-3f58-8002-18659fcd831f,SESCO,II.5.1,Rio Negro,AR-R,annual,2010,gas oil combustion consumption by agriculture machines,21.094079999999998,TJ,CH4,3.9,kg/TJ,82.26691199999999,kg -37a78e89-7e18-3f58-8002-18659fcd831f,SESCO,II.5.1,Rio Negro,AR-R,annual,2010,gas oil combustion consumption by agriculture machines,21.094079999999998,TJ,N2O,3.9,kg/TJ,82.26691199999999,kg -4f6f459c-6fba-36e0-b92d-eaf00a8c9ad4,SESCO,II.5.1,Salta,AR-A,annual,2010,gas oil combustion consumption by agriculture machines,303.80532,TJ,CO2,74100.0,kg/TJ,22511974.212,kg -55ec696e-a0b8-3907-8c56-f6fe1c63efe4,SESCO,II.5.1,Salta,AR-A,annual,2010,gas oil combustion consumption by agriculture machines,303.80532,TJ,CH4,3.9,kg/TJ,1184.8407479999998,kg -55ec696e-a0b8-3907-8c56-f6fe1c63efe4,SESCO,II.5.1,Salta,AR-A,annual,2010,gas oil combustion consumption by agriculture machines,303.80532,TJ,N2O,3.9,kg/TJ,1184.8407479999998,kg -e9694837-862a-3ee2-bf6b-265d21d34834,SESCO,II.5.1,San Juan,AR-J,annual,2010,gas oil combustion consumption by agriculture machines,9.860759999999999,TJ,CO2,74100.0,kg/TJ,730682.3159999999,kg -1d14f153-ba52-3379-934b-003e152d6455,SESCO,II.5.1,San Juan,AR-J,annual,2010,gas oil combustion consumption by agriculture machines,9.860759999999999,TJ,CH4,3.9,kg/TJ,38.45696399999999,kg -1d14f153-ba52-3379-934b-003e152d6455,SESCO,II.5.1,San Juan,AR-J,annual,2010,gas oil combustion consumption by agriculture machines,9.860759999999999,TJ,N2O,3.9,kg/TJ,38.45696399999999,kg -4a0d4e98-a4f5-3455-92b2-78d65752a30e,SESCO,II.5.1,San Luis,AR-D,annual,2010,gas oil combustion consumption by agriculture machines,19.360319999999998,TJ,CO2,74100.0,kg/TJ,1434599.7119999998,kg -8f7e85b7-b9b3-3d17-ae9f-cb3f9e0f6a9c,SESCO,II.5.1,San Luis,AR-D,annual,2010,gas oil combustion consumption by agriculture machines,19.360319999999998,TJ,CH4,3.9,kg/TJ,75.505248,kg -8f7e85b7-b9b3-3d17-ae9f-cb3f9e0f6a9c,SESCO,II.5.1,San Luis,AR-D,annual,2010,gas oil combustion consumption by agriculture machines,19.360319999999998,TJ,N2O,3.9,kg/TJ,75.505248,kg -8055fab0-fcfc-31af-95bd-9fb4d6789b5c,SESCO,II.5.1,Santa Fe,AR-S,annual,2010,gas oil combustion consumption by agriculture machines,1769.04924,TJ,CO2,74100.0,kg/TJ,131086548.684,kg -a0d5f3d5-e980-375a-bbed-5ad97e4d2cf2,SESCO,II.5.1,Santa Fe,AR-S,annual,2010,gas oil combustion consumption by agriculture machines,1769.04924,TJ,CH4,3.9,kg/TJ,6899.292036,kg -a0d5f3d5-e980-375a-bbed-5ad97e4d2cf2,SESCO,II.5.1,Santa Fe,AR-S,annual,2010,gas oil combustion consumption by agriculture machines,1769.04924,TJ,N2O,3.9,kg/TJ,6899.292036,kg -99257d5f-5be2-3dd7-bc68-8d0db4462160,SESCO,II.5.1,Santiago del Estero,AR-G,annual,2010,gas oil combustion consumption by agriculture machines,106.554,TJ,CO2,74100.0,kg/TJ,7895651.4,kg -621060b9-1e5e-30d3-939d-f2d268432108,SESCO,II.5.1,Santiago del Estero,AR-G,annual,2010,gas oil combustion consumption by agriculture machines,106.554,TJ,CH4,3.9,kg/TJ,415.5606,kg -621060b9-1e5e-30d3-939d-f2d268432108,SESCO,II.5.1,Santiago del Estero,AR-G,annual,2010,gas oil combustion consumption by agriculture machines,106.554,TJ,N2O,3.9,kg/TJ,415.5606,kg -2fe21338-fb7a-3211-aaf6-e151029ac6d2,SESCO,II.5.1,Tierra del Fuego,AR-V,annual,2010,gas oil combustion consumption by agriculture machines,26.94552,TJ,CO2,74100.0,kg/TJ,1996663.032,kg -ed82dd21-1e75-3e3d-a444-01160705c869,SESCO,II.5.1,Tierra del Fuego,AR-V,annual,2010,gas oil combustion consumption by agriculture machines,26.94552,TJ,CH4,3.9,kg/TJ,105.08752799999999,kg -ed82dd21-1e75-3e3d-a444-01160705c869,SESCO,II.5.1,Tierra del Fuego,AR-V,annual,2010,gas oil combustion consumption by agriculture machines,26.94552,TJ,N2O,3.9,kg/TJ,105.08752799999999,kg -9518847e-61d9-36ca-97a8-bf1f56dae699,SESCO,II.5.1,Tucuman,AR-T,annual,2010,gas oil combustion consumption by agriculture machines,171.46164,TJ,CO2,74100.0,kg/TJ,12705307.523999998,kg -a47be1ca-2b1f-3cb2-8cad-bb6c4d18bec1,SESCO,II.5.1,Tucuman,AR-T,annual,2010,gas oil combustion consumption by agriculture machines,171.46164,TJ,CH4,3.9,kg/TJ,668.700396,kg -a47be1ca-2b1f-3cb2-8cad-bb6c4d18bec1,SESCO,II.5.1,Tucuman,AR-T,annual,2010,gas oil combustion consumption by agriculture machines,171.46164,TJ,N2O,3.9,kg/TJ,668.700396,kg -0606044e-b345-31e6-9582-d5cbfc0a34c0,SESCO,II.5.1,Buenos Aires,AR-B,annual,2010,gas oil combustion consumption by agriculture machines,0.5418,TJ,CO2,74100.0,kg/TJ,40147.38,kg -8c22cee4-1a1f-312c-82c6-21032fdd7e86,SESCO,II.5.1,Buenos Aires,AR-B,annual,2010,gas oil combustion consumption by agriculture machines,0.5418,TJ,CH4,3.9,kg/TJ,2.1130199999999997,kg -8c22cee4-1a1f-312c-82c6-21032fdd7e86,SESCO,II.5.1,Buenos Aires,AR-B,annual,2010,gas oil combustion consumption by agriculture machines,0.5418,TJ,N2O,3.9,kg/TJ,2.1130199999999997,kg -cdeae499-7d51-3011-beee-012daa1032dc,SESCO,II.5.1,Santiago del Estero,AR-G,annual,2010,gas oil combustion consumption by agriculture machines,1.37256,TJ,CO2,74100.0,kg/TJ,101706.696,kg -13c2d3bd-081b-37ce-88ac-60a1745599ca,SESCO,II.5.1,Santiago del Estero,AR-G,annual,2010,gas oil combustion consumption by agriculture machines,1.37256,TJ,CH4,3.9,kg/TJ,5.352984,kg -13c2d3bd-081b-37ce-88ac-60a1745599ca,SESCO,II.5.1,Santiago del Estero,AR-G,annual,2010,gas oil combustion consumption by agriculture machines,1.37256,TJ,N2O,3.9,kg/TJ,5.352984,kg -3e51841f-b89e-35db-a1c6-0555118ff560,SESCO,II.5.1,Buenos Aires,AR-B,annual,2010,jet kerosene combustion consumption by agriculture machines,16.921713999999998,TJ,CO2,71500.0,kg/TJ,1209902.5509999997,kg -d170dcda-7a61-3662-bdf3-608cca1dba36,SESCO,II.5.1,Buenos Aires,AR-B,annual,2010,jet kerosene combustion consumption by agriculture machines,16.921713999999998,TJ,CH4,0.5,kg/TJ,8.460856999999999,kg -e54079ea-c75c-364f-b425-578a64473519,SESCO,II.5.1,Buenos Aires,AR-B,annual,2010,jet kerosene combustion consumption by agriculture machines,16.921713999999998,TJ,N2O,2.0,kg/TJ,33.843427999999996,kg -a8463086-0191-3923-a161-ef690f18e95c,SESCO,II.5.1,Chubut,AR-U,annual,2010,jet kerosene combustion consumption by agriculture machines,0.31453,TJ,CO2,71500.0,kg/TJ,22488.894999999997,kg -da91a37c-277a-3b98-a7d7-9e8dfee68afa,SESCO,II.5.1,Chubut,AR-U,annual,2010,jet kerosene combustion consumption by agriculture machines,0.31453,TJ,CH4,0.5,kg/TJ,0.157265,kg -a3bab00b-4093-3f29-9cfe-6949391cbac4,SESCO,II.5.1,Chubut,AR-U,annual,2010,jet kerosene combustion consumption by agriculture machines,0.31453,TJ,N2O,2.0,kg/TJ,0.62906,kg -b1fdfe89-3a5f-30d1-830c-a23346655eec,SESCO,II.5.1,Córdoba,AR-X,annual,2010,jet kerosene combustion consumption by agriculture machines,1.0064959999999998,TJ,CO2,71500.0,kg/TJ,71964.46399999999,kg -4a505f02-abd5-35d4-a751-9d58fbb05ebd,SESCO,II.5.1,Córdoba,AR-X,annual,2010,jet kerosene combustion consumption by agriculture machines,1.0064959999999998,TJ,CH4,0.5,kg/TJ,0.5032479999999999,kg -73ab0400-df58-3843-aa7f-44a8cecc4cc3,SESCO,II.5.1,Córdoba,AR-X,annual,2010,jet kerosene combustion consumption by agriculture machines,1.0064959999999998,TJ,N2O,2.0,kg/TJ,2.0129919999999997,kg -c247d568-d08f-34e4-a0ba-d36c112f6006,SESCO,II.5.1,Entre Rios,AR-E,annual,2010,jet kerosene combustion consumption by agriculture machines,0.25162399999999996,TJ,CO2,71500.0,kg/TJ,17991.115999999998,kg -aac76367-1829-3b9f-993d-5226ea127951,SESCO,II.5.1,Entre Rios,AR-E,annual,2010,jet kerosene combustion consumption by agriculture machines,0.25162399999999996,TJ,CH4,0.5,kg/TJ,0.12581199999999998,kg -0fc0f7c0-95fb-373d-a5e2-370892b16287,SESCO,II.5.1,Entre Rios,AR-E,annual,2010,jet kerosene combustion consumption by agriculture machines,0.25162399999999996,TJ,N2O,2.0,kg/TJ,0.5032479999999999,kg -1d111386-22b0-372c-8867-90aab9d0ff05,SESCO,II.5.1,La Pampa,AR-L,annual,2010,jet kerosene combustion consumption by agriculture machines,1.5411969999999997,TJ,CO2,71500.0,kg/TJ,110195.58549999997,kg -9c138e9b-0a91-3e52-b160-cc9e492de70f,SESCO,II.5.1,La Pampa,AR-L,annual,2010,jet kerosene combustion consumption by agriculture machines,1.5411969999999997,TJ,CH4,0.5,kg/TJ,0.7705984999999999,kg -86727eef-d6ac-3315-a6a3-dd90e816010f,SESCO,II.5.1,La Pampa,AR-L,annual,2010,jet kerosene combustion consumption by agriculture machines,1.5411969999999997,TJ,N2O,2.0,kg/TJ,3.0823939999999994,kg -f32220b6-4553-3cbc-bc8a-d77346d4d5b4,SESCO,II.5.1,Santa Fe,AR-S,annual,2010,jet kerosene combustion consumption by agriculture machines,4.780855999999999,TJ,CO2,71500.0,kg/TJ,341831.2039999999,kg -162aaa73-b914-39b2-bbe8-7f7c24770164,SESCO,II.5.1,Santa Fe,AR-S,annual,2010,jet kerosene combustion consumption by agriculture machines,4.780855999999999,TJ,CH4,0.5,kg/TJ,2.3904279999999996,kg -854428bd-6e4c-3955-a09b-3f04eb944c2a,SESCO,II.5.1,Santa Fe,AR-S,annual,2010,jet kerosene combustion consumption by agriculture machines,4.780855999999999,TJ,N2O,2.0,kg/TJ,9.561711999999998,kg -aeef9154-9f5d-36f1-898a-7f29ae7aa852,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,gas oil combustion consumption by to the public,50181.1548,TJ,CO2,74100.0,kg/TJ,3718423570.68,kg -6c3030e4-8dec-3c4b-9ef3-9657182c70fd,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,gas oil combustion consumption by to the public,50181.1548,TJ,CH4,3.9,kg/TJ,195706.50371999998,kg -6c3030e4-8dec-3c4b-9ef3-9657182c70fd,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,gas oil combustion consumption by to the public,50181.1548,TJ,N2O,3.9,kg/TJ,195706.50371999998,kg -409e3b9d-b215-3fa0-ba8c-408efe46a286,SESCO,II.1.1,Capital Federal,AR-C,annual,2010,gas oil combustion consumption by to the public,6288.96156,TJ,CO2,74100.0,kg/TJ,466012051.59599996,kg -397a3781-5599-30f6-a273-ec6dcfd3d9c3,SESCO,II.1.1,Capital Federal,AR-C,annual,2010,gas oil combustion consumption by to the public,6288.96156,TJ,CH4,3.9,kg/TJ,24526.950084,kg -397a3781-5599-30f6-a273-ec6dcfd3d9c3,SESCO,II.1.1,Capital Federal,AR-C,annual,2010,gas oil combustion consumption by to the public,6288.96156,TJ,N2O,3.9,kg/TJ,24526.950084,kg -972c462a-0389-3208-83a3-7feaf2472627,SESCO,II.1.1,Catamarca,AR-K,annual,2010,gas oil combustion consumption by to the public,599.51976,TJ,CO2,74100.0,kg/TJ,44424414.216,kg -4bd17d72-1abb-3cc2-a64a-0dc8c93b41c3,SESCO,II.1.1,Catamarca,AR-K,annual,2010,gas oil combustion consumption by to the public,599.51976,TJ,CH4,3.9,kg/TJ,2338.1270640000002,kg -4bd17d72-1abb-3cc2-a64a-0dc8c93b41c3,SESCO,II.1.1,Catamarca,AR-K,annual,2010,gas oil combustion consumption by to the public,599.51976,TJ,N2O,3.9,kg/TJ,2338.1270640000002,kg -2521cfa5-a4e5-3c75-9e57-b1aee752499b,SESCO,II.1.1,Chaco,AR-H,annual,2010,gas oil combustion consumption by to the public,3126.87228,TJ,CO2,74100.0,kg/TJ,231701235.948,kg -f5ff291e-1165-3137-bb08-363127264129,SESCO,II.1.1,Chaco,AR-H,annual,2010,gas oil combustion consumption by to the public,3126.87228,TJ,CH4,3.9,kg/TJ,12194.801892,kg -f5ff291e-1165-3137-bb08-363127264129,SESCO,II.1.1,Chaco,AR-H,annual,2010,gas oil combustion consumption by to the public,3126.87228,TJ,N2O,3.9,kg/TJ,12194.801892,kg -f2bdc336-586e-3d83-8698-03e05197bb03,SESCO,II.1.1,Chubut,AR-U,annual,2010,gas oil combustion consumption by to the public,4563.68976,TJ,CO2,74100.0,kg/TJ,338169411.216,kg -6590e11d-7f09-3141-9e30-77da1d6b459b,SESCO,II.1.1,Chubut,AR-U,annual,2010,gas oil combustion consumption by to the public,4563.68976,TJ,CH4,3.9,kg/TJ,17798.390064,kg -6590e11d-7f09-3141-9e30-77da1d6b459b,SESCO,II.1.1,Chubut,AR-U,annual,2010,gas oil combustion consumption by to the public,4563.68976,TJ,N2O,3.9,kg/TJ,17798.390064,kg -d929b744-59a9-3ae6-8226-7c4faf92324f,SESCO,II.1.1,Corrientes,AR-W,annual,2010,gas oil combustion consumption by to the public,2656.0842,TJ,CO2,74100.0,kg/TJ,196815839.21999997,kg -570a976d-c45a-34da-a22a-cdfb1994cc54,SESCO,II.1.1,Corrientes,AR-W,annual,2010,gas oil combustion consumption by to the public,2656.0842,TJ,CH4,3.9,kg/TJ,10358.728379999999,kg -570a976d-c45a-34da-a22a-cdfb1994cc54,SESCO,II.1.1,Corrientes,AR-W,annual,2010,gas oil combustion consumption by to the public,2656.0842,TJ,N2O,3.9,kg/TJ,10358.728379999999,kg -0ccbf72b-b2cb-39fa-8d97-ef1bb95ebed2,SESCO,II.1.1,Córdoba,AR-X,annual,2010,gas oil combustion consumption by to the public,15734.88336,TJ,CO2,74100.0,kg/TJ,1165954856.976,kg -12eb3dc0-0cc5-3769-babd-9bbd863a2e6e,SESCO,II.1.1,Córdoba,AR-X,annual,2010,gas oil combustion consumption by to the public,15734.88336,TJ,CH4,3.9,kg/TJ,61366.045104,kg -12eb3dc0-0cc5-3769-babd-9bbd863a2e6e,SESCO,II.1.1,Córdoba,AR-X,annual,2010,gas oil combustion consumption by to the public,15734.88336,TJ,N2O,3.9,kg/TJ,61366.045104,kg -049af3a7-7fa8-3fe0-9d23-b888972b0fb6,SESCO,II.1.1,Entre Rios,AR-E,annual,2010,gas oil combustion consumption by to the public,5355.90972,TJ,CO2,74100.0,kg/TJ,396872910.252,kg -d96fd0eb-6e6b-332d-8b70-77eebb57ca6d,SESCO,II.1.1,Entre Rios,AR-E,annual,2010,gas oil combustion consumption by to the public,5355.90972,TJ,CH4,3.9,kg/TJ,20888.047907999997,kg -d96fd0eb-6e6b-332d-8b70-77eebb57ca6d,SESCO,II.1.1,Entre Rios,AR-E,annual,2010,gas oil combustion consumption by to the public,5355.90972,TJ,N2O,3.9,kg/TJ,20888.047907999997,kg -f71252ce-c64c-329b-a7a8-2c2e9a3a08d3,SESCO,II.1.1,Formosa,AR-P,annual,2010,gas oil combustion consumption by to the public,1048.383,TJ,CO2,74100.0,kg/TJ,77685180.3,kg -13478897-554c-3c1e-945f-ead4f72a6031,SESCO,II.1.1,Formosa,AR-P,annual,2010,gas oil combustion consumption by to the public,1048.383,TJ,CH4,3.9,kg/TJ,4088.6937000000003,kg -13478897-554c-3c1e-945f-ead4f72a6031,SESCO,II.1.1,Formosa,AR-P,annual,2010,gas oil combustion consumption by to the public,1048.383,TJ,N2O,3.9,kg/TJ,4088.6937000000003,kg -ab714a3a-7097-3a70-b099-ee28fd41941b,SESCO,II.1.1,Jujuy,AR-Y,annual,2010,gas oil combustion consumption by to the public,2045.54784,TJ,CO2,74100.0,kg/TJ,151575094.944,kg -df1a9e5a-5db2-32c4-9498-4ea2a705528b,SESCO,II.1.1,Jujuy,AR-Y,annual,2010,gas oil combustion consumption by to the public,2045.54784,TJ,CH4,3.9,kg/TJ,7977.636576,kg -df1a9e5a-5db2-32c4-9498-4ea2a705528b,SESCO,II.1.1,Jujuy,AR-Y,annual,2010,gas oil combustion consumption by to the public,2045.54784,TJ,N2O,3.9,kg/TJ,7977.636576,kg -81fbde1c-2784-3587-bba7-6576ebdb45e7,SESCO,II.1.1,La Pampa,AR-L,annual,2010,gas oil combustion consumption by to the public,3043.8324,TJ,CO2,74100.0,kg/TJ,225547980.83999997,kg -668a8922-6097-3a33-82c9-53d570621a89,SESCO,II.1.1,La Pampa,AR-L,annual,2010,gas oil combustion consumption by to the public,3043.8324,TJ,CH4,3.9,kg/TJ,11870.946359999998,kg -668a8922-6097-3a33-82c9-53d570621a89,SESCO,II.1.1,La Pampa,AR-L,annual,2010,gas oil combustion consumption by to the public,3043.8324,TJ,N2O,3.9,kg/TJ,11870.946359999998,kg -efe05937-8a40-36c0-b3dc-f864c669966d,SESCO,II.1.1,La Rioja,AR-F,annual,2010,gas oil combustion consumption by to the public,1028.30028,TJ,CO2,74100.0,kg/TJ,76197050.748,kg -b49b723d-ca49-3a31-886b-387622e79bae,SESCO,II.1.1,La Rioja,AR-F,annual,2010,gas oil combustion consumption by to the public,1028.30028,TJ,CH4,3.9,kg/TJ,4010.3710919999994,kg -b49b723d-ca49-3a31-886b-387622e79bae,SESCO,II.1.1,La Rioja,AR-F,annual,2010,gas oil combustion consumption by to the public,1028.30028,TJ,N2O,3.9,kg/TJ,4010.3710919999994,kg -58a09b87-968c-3b24-8077-4c5352b228af,SESCO,II.1.1,Mendoza,AR-M,annual,2010,gas oil combustion consumption by to the public,11448.559079999999,TJ,CO2,74100.0,kg/TJ,848338227.828,kg -fac52334-3cab-3f1e-a725-ac083973447e,SESCO,II.1.1,Mendoza,AR-M,annual,2010,gas oil combustion consumption by to the public,11448.559079999999,TJ,CH4,3.9,kg/TJ,44649.380412,kg -fac52334-3cab-3f1e-a725-ac083973447e,SESCO,II.1.1,Mendoza,AR-M,annual,2010,gas oil combustion consumption by to the public,11448.559079999999,TJ,N2O,3.9,kg/TJ,44649.380412,kg -5712f481-c3e9-3136-82ce-2b334c2060d6,SESCO,II.1.1,Misiones,AR-N,annual,2010,gas oil combustion consumption by to the public,5401.34868,TJ,CO2,74100.0,kg/TJ,400239937.188,kg -93df3672-9223-3870-a252-25788c78e3b6,SESCO,II.1.1,Misiones,AR-N,annual,2010,gas oil combustion consumption by to the public,5401.34868,TJ,CH4,3.9,kg/TJ,21065.259852,kg -93df3672-9223-3870-a252-25788c78e3b6,SESCO,II.1.1,Misiones,AR-N,annual,2010,gas oil combustion consumption by to the public,5401.34868,TJ,N2O,3.9,kg/TJ,21065.259852,kg -656ed365-d47d-3945-9c30-182c997356db,SESCO,II.1.1,Neuquén,AR-Q,annual,2010,gas oil combustion consumption by to the public,3590.54472,TJ,CO2,74100.0,kg/TJ,266059363.752,kg -a89e706d-e0fa-3e44-8ef9-e1ba921634aa,SESCO,II.1.1,Neuquén,AR-Q,annual,2010,gas oil combustion consumption by to the public,3590.54472,TJ,CH4,3.9,kg/TJ,14003.124408,kg -a89e706d-e0fa-3e44-8ef9-e1ba921634aa,SESCO,II.1.1,Neuquén,AR-Q,annual,2010,gas oil combustion consumption by to the public,3590.54472,TJ,N2O,3.9,kg/TJ,14003.124408,kg -451a3478-a66e-3036-879f-db7e5423b4bc,SESCO,II.1.1,Rio Negro,AR-R,annual,2010,gas oil combustion consumption by to the public,4847.44848,TJ,CO2,74100.0,kg/TJ,359195932.36800003,kg -09ce228b-e936-3813-a981-f1402899e43c,SESCO,II.1.1,Rio Negro,AR-R,annual,2010,gas oil combustion consumption by to the public,4847.44848,TJ,CH4,3.9,kg/TJ,18905.049071999998,kg -09ce228b-e936-3813-a981-f1402899e43c,SESCO,II.1.1,Rio Negro,AR-R,annual,2010,gas oil combustion consumption by to the public,4847.44848,TJ,N2O,3.9,kg/TJ,18905.049071999998,kg -84f74f41-5de8-3717-be41-cd89cf4f9de1,SESCO,II.1.1,Salta,AR-A,annual,2010,gas oil combustion consumption by to the public,4248.14544,TJ,CO2,74100.0,kg/TJ,314787577.10400003,kg -3f88b922-1921-36c5-ad69-dd1dde4db1e6,SESCO,II.1.1,Salta,AR-A,annual,2010,gas oil combustion consumption by to the public,4248.14544,TJ,CH4,3.9,kg/TJ,16567.767216,kg -3f88b922-1921-36c5-ad69-dd1dde4db1e6,SESCO,II.1.1,Salta,AR-A,annual,2010,gas oil combustion consumption by to the public,4248.14544,TJ,N2O,3.9,kg/TJ,16567.767216,kg -88df7be4-816e-3aa1-ba87-b4052f1d473e,SESCO,II.1.1,San Juan,AR-J,annual,2010,gas oil combustion consumption by to the public,2306.04528,TJ,CO2,74100.0,kg/TJ,170877955.248,kg -36849753-5d4d-308d-a417-f3067e06c380,SESCO,II.1.1,San Juan,AR-J,annual,2010,gas oil combustion consumption by to the public,2306.04528,TJ,CH4,3.9,kg/TJ,8993.576592,kg -36849753-5d4d-308d-a417-f3067e06c380,SESCO,II.1.1,San Juan,AR-J,annual,2010,gas oil combustion consumption by to the public,2306.04528,TJ,N2O,3.9,kg/TJ,8993.576592,kg -8a33ed13-f099-3e20-a84d-e0954433011d,SESCO,II.1.1,San Luis,AR-D,annual,2010,gas oil combustion consumption by to the public,1998.1584,TJ,CO2,74100.0,kg/TJ,148063537.44,kg -31276df5-10aa-33bb-8a3f-04fdb2f52861,SESCO,II.1.1,San Luis,AR-D,annual,2010,gas oil combustion consumption by to the public,1998.1584,TJ,CH4,3.9,kg/TJ,7792.81776,kg -31276df5-10aa-33bb-8a3f-04fdb2f52861,SESCO,II.1.1,San Luis,AR-D,annual,2010,gas oil combustion consumption by to the public,1998.1584,TJ,N2O,3.9,kg/TJ,7792.81776,kg -50102609-08bf-3951-9b33-1f13d78350fd,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2010,gas oil combustion consumption by to the public,3608.06292,TJ,CO2,74100.0,kg/TJ,267357462.37199998,kg -d723b24a-ec40-39a4-a5aa-b582a01635ec,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2010,gas oil combustion consumption by to the public,3608.06292,TJ,CH4,3.9,kg/TJ,14071.445387999998,kg -d723b24a-ec40-39a4-a5aa-b582a01635ec,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2010,gas oil combustion consumption by to the public,3608.06292,TJ,N2O,3.9,kg/TJ,14071.445387999998,kg -930e7320-b6c2-3ba6-8030-f4060016e377,SESCO,II.1.1,Santa Fe,AR-S,annual,2010,gas oil combustion consumption by to the public,12111.43332,TJ,CO2,74100.0,kg/TJ,897457209.012,kg -4a0d0303-fd52-368a-b143-1981c9724bd4,SESCO,II.1.1,Santa Fe,AR-S,annual,2010,gas oil combustion consumption by to the public,12111.43332,TJ,CH4,3.9,kg/TJ,47234.589948,kg -4a0d0303-fd52-368a-b143-1981c9724bd4,SESCO,II.1.1,Santa Fe,AR-S,annual,2010,gas oil combustion consumption by to the public,12111.43332,TJ,N2O,3.9,kg/TJ,47234.589948,kg -6ed01123-6e8b-3ad2-8cd4-8e934ccb0378,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2010,gas oil combustion consumption by to the public,2374.60104,TJ,CO2,74100.0,kg/TJ,175957937.064,kg -bb8fac4a-17d7-3b8d-a0d3-e8f87fbf06b2,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2010,gas oil combustion consumption by to the public,2374.60104,TJ,CH4,3.9,kg/TJ,9260.944056,kg -bb8fac4a-17d7-3b8d-a0d3-e8f87fbf06b2,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2010,gas oil combustion consumption by to the public,2374.60104,TJ,N2O,3.9,kg/TJ,9260.944056,kg -9777898d-53e7-3ab5-888a-7b80253f974f,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2010,gas oil combustion consumption by to the public,992.50536,TJ,CO2,74100.0,kg/TJ,73544647.176,kg -b38e5283-321e-3046-9ddd-a5b875507d5b,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2010,gas oil combustion consumption by to the public,992.50536,TJ,CH4,3.9,kg/TJ,3870.770904,kg -b38e5283-321e-3046-9ddd-a5b875507d5b,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2010,gas oil combustion consumption by to the public,992.50536,TJ,N2O,3.9,kg/TJ,3870.770904,kg -2caab9bf-1e14-3f43-bf3e-7aec01eae859,SESCO,II.1.1,Tucuman,AR-T,annual,2010,gas oil combustion consumption by to the public,2970.87,TJ,CO2,74100.0,kg/TJ,220141467.0,kg -5e29eb59-3cc4-3e9a-b958-56c4ca85554d,SESCO,II.1.1,Tucuman,AR-T,annual,2010,gas oil combustion consumption by to the public,2970.87,TJ,CH4,3.9,kg/TJ,11586.393,kg -5e29eb59-3cc4-3e9a-b958-56c4ca85554d,SESCO,II.1.1,Tucuman,AR-T,annual,2010,gas oil combustion consumption by to the public,2970.87,TJ,N2O,3.9,kg/TJ,11586.393,kg -154dfe58-b49b-3201-ae7f-fa1d8bc26e1a,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,gas oil combustion consumption by to the public,6555.021479999999,TJ,CO2,74100.0,kg/TJ,485727091.668,kg -13f3e3a4-5542-3346-8028-e631578a2a1d,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,gas oil combustion consumption by to the public,6555.021479999999,TJ,CH4,3.9,kg/TJ,25564.583771999998,kg -13f3e3a4-5542-3346-8028-e631578a2a1d,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,gas oil combustion consumption by to the public,6555.021479999999,TJ,N2O,3.9,kg/TJ,25564.583771999998,kg -d378568e-063d-3d33-83eb-6a6f049dba5f,SESCO,II.1.1,Capital Federal,AR-C,annual,2010,gas oil combustion consumption by to the public,927.7060799999999,TJ,CO2,74100.0,kg/TJ,68743020.528,kg -827a7726-5d79-37e3-ab4e-098d4ded9ca9,SESCO,II.1.1,Capital Federal,AR-C,annual,2010,gas oil combustion consumption by to the public,927.7060799999999,TJ,CH4,3.9,kg/TJ,3618.0537119999995,kg -827a7726-5d79-37e3-ab4e-098d4ded9ca9,SESCO,II.1.1,Capital Federal,AR-C,annual,2010,gas oil combustion consumption by to the public,927.7060799999999,TJ,N2O,3.9,kg/TJ,3618.0537119999995,kg -cf024841-9567-3c53-a6f3-14afe6e097cc,SESCO,II.1.1,Catamarca,AR-K,annual,2010,gas oil combustion consumption by to the public,48.54528,TJ,CO2,74100.0,kg/TJ,3597205.2479999997,kg -1af44b36-5838-31d7-908c-15a738915029,SESCO,II.1.1,Catamarca,AR-K,annual,2010,gas oil combustion consumption by to the public,48.54528,TJ,CH4,3.9,kg/TJ,189.32659199999998,kg -1af44b36-5838-31d7-908c-15a738915029,SESCO,II.1.1,Catamarca,AR-K,annual,2010,gas oil combustion consumption by to the public,48.54528,TJ,N2O,3.9,kg/TJ,189.32659199999998,kg -36bf6567-fc04-383c-8439-3364861378b8,SESCO,II.1.1,Chaco,AR-H,annual,2010,gas oil combustion consumption by to the public,371.24136,TJ,CO2,74100.0,kg/TJ,27508984.776,kg -570c8a2a-7012-3e07-9a05-690de20a4cf6,SESCO,II.1.1,Chaco,AR-H,annual,2010,gas oil combustion consumption by to the public,371.24136,TJ,CH4,3.9,kg/TJ,1447.8413039999998,kg -570c8a2a-7012-3e07-9a05-690de20a4cf6,SESCO,II.1.1,Chaco,AR-H,annual,2010,gas oil combustion consumption by to the public,371.24136,TJ,N2O,3.9,kg/TJ,1447.8413039999998,kg -1b27a66b-df90-3156-af25-58f5310ea0c8,SESCO,II.1.1,Chubut,AR-U,annual,2010,gas oil combustion consumption by to the public,362.03076,TJ,CO2,74100.0,kg/TJ,26826479.316,kg -e842c74f-7c88-39cc-a980-5e0262a05cf8,SESCO,II.1.1,Chubut,AR-U,annual,2010,gas oil combustion consumption by to the public,362.03076,TJ,CH4,3.9,kg/TJ,1411.919964,kg -e842c74f-7c88-39cc-a980-5e0262a05cf8,SESCO,II.1.1,Chubut,AR-U,annual,2010,gas oil combustion consumption by to the public,362.03076,TJ,N2O,3.9,kg/TJ,1411.919964,kg -b1037e2d-9369-327f-b21c-9de4552f66a4,SESCO,II.1.1,Corrientes,AR-W,annual,2010,gas oil combustion consumption by to the public,278.26848,TJ,CO2,74100.0,kg/TJ,20619694.368,kg -e8e4bf8c-8b49-3c64-ba2c-fac54b9f18a3,SESCO,II.1.1,Corrientes,AR-W,annual,2010,gas oil combustion consumption by to the public,278.26848,TJ,CH4,3.9,kg/TJ,1085.2470720000001,kg -e8e4bf8c-8b49-3c64-ba2c-fac54b9f18a3,SESCO,II.1.1,Corrientes,AR-W,annual,2010,gas oil combustion consumption by to the public,278.26848,TJ,N2O,3.9,kg/TJ,1085.2470720000001,kg -f3e258cd-fbbe-3007-8539-119ebf236508,SESCO,II.1.1,Córdoba,AR-X,annual,2010,gas oil combustion consumption by to the public,1683.9505199999999,TJ,CO2,74100.0,kg/TJ,124780733.53199999,kg -9c542190-c108-31b3-a7ef-88a182cddcab,SESCO,II.1.1,Córdoba,AR-X,annual,2010,gas oil combustion consumption by to the public,1683.9505199999999,TJ,CH4,3.9,kg/TJ,6567.407028,kg -9c542190-c108-31b3-a7ef-88a182cddcab,SESCO,II.1.1,Córdoba,AR-X,annual,2010,gas oil combustion consumption by to the public,1683.9505199999999,TJ,N2O,3.9,kg/TJ,6567.407028,kg -4b08035e-b9e3-3e54-8c61-4f828d70dc77,SESCO,II.1.1,Entre Rios,AR-E,annual,2010,gas oil combustion consumption by to the public,593.16264,TJ,CO2,74100.0,kg/TJ,43953351.624,kg -b3ed9c8e-03bc-339e-9219-1bce62c6edc9,SESCO,II.1.1,Entre Rios,AR-E,annual,2010,gas oil combustion consumption by to the public,593.16264,TJ,CH4,3.9,kg/TJ,2313.334296,kg -b3ed9c8e-03bc-339e-9219-1bce62c6edc9,SESCO,II.1.1,Entre Rios,AR-E,annual,2010,gas oil combustion consumption by to the public,593.16264,TJ,N2O,3.9,kg/TJ,2313.334296,kg -f0fba9d9-43ae-3d8e-aaea-6241195a8382,SESCO,II.1.1,Formosa,AR-P,annual,2010,gas oil combustion consumption by to the public,96.83772,TJ,CO2,74100.0,kg/TJ,7175675.052,kg -7e07505d-406f-3d27-a0b8-9ed5677d2382,SESCO,II.1.1,Formosa,AR-P,annual,2010,gas oil combustion consumption by to the public,96.83772,TJ,CH4,3.9,kg/TJ,377.667108,kg -7e07505d-406f-3d27-a0b8-9ed5677d2382,SESCO,II.1.1,Formosa,AR-P,annual,2010,gas oil combustion consumption by to the public,96.83772,TJ,N2O,3.9,kg/TJ,377.667108,kg -c9a3c0d9-1201-30df-bb72-729733373198,SESCO,II.1.1,Jujuy,AR-Y,annual,2010,gas oil combustion consumption by to the public,117.2094,TJ,CO2,74100.0,kg/TJ,8685216.540000001,kg -673845d4-614b-33f4-9561-f0b92a683443,SESCO,II.1.1,Jujuy,AR-Y,annual,2010,gas oil combustion consumption by to the public,117.2094,TJ,CH4,3.9,kg/TJ,457.11666,kg -673845d4-614b-33f4-9561-f0b92a683443,SESCO,II.1.1,Jujuy,AR-Y,annual,2010,gas oil combustion consumption by to the public,117.2094,TJ,N2O,3.9,kg/TJ,457.11666,kg -357a58b2-c265-3b4d-8517-5a4bbf5fa9e1,SESCO,II.1.1,La Pampa,AR-L,annual,2010,gas oil combustion consumption by to the public,411.26232,TJ,CO2,74100.0,kg/TJ,30474537.912,kg -ab958ff5-0b5d-3855-a123-6f6b9c9309f1,SESCO,II.1.1,La Pampa,AR-L,annual,2010,gas oil combustion consumption by to the public,411.26232,TJ,CH4,3.9,kg/TJ,1603.9230479999999,kg -ab958ff5-0b5d-3855-a123-6f6b9c9309f1,SESCO,II.1.1,La Pampa,AR-L,annual,2010,gas oil combustion consumption by to the public,411.26232,TJ,N2O,3.9,kg/TJ,1603.9230479999999,kg -8ff4e7a9-27c9-3d6f-b8b3-ca7bc9a53f33,SESCO,II.1.1,La Rioja,AR-F,annual,2010,gas oil combustion consumption by to the public,74.51556,TJ,CO2,74100.0,kg/TJ,5521602.995999999,kg -2c7f78a6-c6c0-3333-9950-eeaaffcc9507,SESCO,II.1.1,La Rioja,AR-F,annual,2010,gas oil combustion consumption by to the public,74.51556,TJ,CH4,3.9,kg/TJ,290.610684,kg -2c7f78a6-c6c0-3333-9950-eeaaffcc9507,SESCO,II.1.1,La Rioja,AR-F,annual,2010,gas oil combustion consumption by to the public,74.51556,TJ,N2O,3.9,kg/TJ,290.610684,kg -33d86d99-6758-3d40-ac60-c0e147af0d92,SESCO,II.1.1,Mendoza,AR-M,annual,2010,gas oil combustion consumption by to the public,776.00208,TJ,CO2,74100.0,kg/TJ,57501754.128,kg -45ef6986-aebf-3154-81c0-23ac15cba33e,SESCO,II.1.1,Mendoza,AR-M,annual,2010,gas oil combustion consumption by to the public,776.00208,TJ,CH4,3.9,kg/TJ,3026.4081119999996,kg -45ef6986-aebf-3154-81c0-23ac15cba33e,SESCO,II.1.1,Mendoza,AR-M,annual,2010,gas oil combustion consumption by to the public,776.00208,TJ,N2O,3.9,kg/TJ,3026.4081119999996,kg -900fbc8c-447f-396f-93c2-e3af3f96dc37,SESCO,II.1.1,Misiones,AR-N,annual,2010,gas oil combustion consumption by to the public,280.21896,TJ,CO2,74100.0,kg/TJ,20764224.935999997,kg -54ad2ec2-0b71-3eea-881e-33e12af212aa,SESCO,II.1.1,Misiones,AR-N,annual,2010,gas oil combustion consumption by to the public,280.21896,TJ,CH4,3.9,kg/TJ,1092.853944,kg -54ad2ec2-0b71-3eea-881e-33e12af212aa,SESCO,II.1.1,Misiones,AR-N,annual,2010,gas oil combustion consumption by to the public,280.21896,TJ,N2O,3.9,kg/TJ,1092.853944,kg -1d1711c7-ba07-324c-a0d9-e72721f63b1b,SESCO,II.1.1,Neuquén,AR-Q,annual,2010,gas oil combustion consumption by to the public,357.7686,TJ,CO2,74100.0,kg/TJ,26510653.259999998,kg -09747c2d-8422-39b3-83c2-fb0e2ad49b1f,SESCO,II.1.1,Neuquén,AR-Q,annual,2010,gas oil combustion consumption by to the public,357.7686,TJ,CH4,3.9,kg/TJ,1395.29754,kg -09747c2d-8422-39b3-83c2-fb0e2ad49b1f,SESCO,II.1.1,Neuquén,AR-Q,annual,2010,gas oil combustion consumption by to the public,357.7686,TJ,N2O,3.9,kg/TJ,1395.29754,kg -cb46cc07-e0f7-3f35-aeec-e64b553d64d3,SESCO,II.1.1,Rio Negro,AR-R,annual,2010,gas oil combustion consumption by to the public,420.87023999999997,TJ,CO2,74100.0,kg/TJ,31186484.783999998,kg -7ef7e3cf-e36c-3175-99a7-185dfb586c7b,SESCO,II.1.1,Rio Negro,AR-R,annual,2010,gas oil combustion consumption by to the public,420.87023999999997,TJ,CH4,3.9,kg/TJ,1641.393936,kg -7ef7e3cf-e36c-3175-99a7-185dfb586c7b,SESCO,II.1.1,Rio Negro,AR-R,annual,2010,gas oil combustion consumption by to the public,420.87023999999997,TJ,N2O,3.9,kg/TJ,1641.393936,kg -c1a40de8-e1d7-30bb-951f-bbcf82c0c5ec,SESCO,II.1.1,Salta,AR-A,annual,2010,gas oil combustion consumption by to the public,361.7418,TJ,CO2,74100.0,kg/TJ,26805067.380000003,kg -e4f7616e-4f4a-3ba8-85a2-9054bac03d01,SESCO,II.1.1,Salta,AR-A,annual,2010,gas oil combustion consumption by to the public,361.7418,TJ,CH4,3.9,kg/TJ,1410.79302,kg -e4f7616e-4f4a-3ba8-85a2-9054bac03d01,SESCO,II.1.1,Salta,AR-A,annual,2010,gas oil combustion consumption by to the public,361.7418,TJ,N2O,3.9,kg/TJ,1410.79302,kg -4168da9d-937c-33b9-a3c7-1f9196775d41,SESCO,II.1.1,San Juan,AR-J,annual,2010,gas oil combustion consumption by to the public,170.667,TJ,CO2,74100.0,kg/TJ,12646424.7,kg -73110cd0-5708-3249-99a2-5c200db855f4,SESCO,II.1.1,San Juan,AR-J,annual,2010,gas oil combustion consumption by to the public,170.667,TJ,CH4,3.9,kg/TJ,665.6013,kg -73110cd0-5708-3249-99a2-5c200db855f4,SESCO,II.1.1,San Juan,AR-J,annual,2010,gas oil combustion consumption by to the public,170.667,TJ,N2O,3.9,kg/TJ,665.6013,kg -84005b7c-de6a-35d1-9fec-a201a2b721cd,SESCO,II.1.1,San Luis,AR-D,annual,2010,gas oil combustion consumption by to the public,257.28276,TJ,CO2,74100.0,kg/TJ,19064652.516,kg -4104e60a-d9e0-3579-8d26-c6ea0cf52b4e,SESCO,II.1.1,San Luis,AR-D,annual,2010,gas oil combustion consumption by to the public,257.28276,TJ,CH4,3.9,kg/TJ,1003.4027639999999,kg -4104e60a-d9e0-3579-8d26-c6ea0cf52b4e,SESCO,II.1.1,San Luis,AR-D,annual,2010,gas oil combustion consumption by to the public,257.28276,TJ,N2O,3.9,kg/TJ,1003.4027639999999,kg -6170a896-90fe-3ecb-a3ed-4a519a5f02cb,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2010,gas oil combustion consumption by to the public,107.63759999999999,TJ,CO2,74100.0,kg/TJ,7975946.159999999,kg -25ebee67-e34e-32b3-9a4a-22cae796948a,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2010,gas oil combustion consumption by to the public,107.63759999999999,TJ,CH4,3.9,kg/TJ,419.78664,kg -25ebee67-e34e-32b3-9a4a-22cae796948a,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2010,gas oil combustion consumption by to the public,107.63759999999999,TJ,N2O,3.9,kg/TJ,419.78664,kg -920adee3-7b20-3aa3-9177-906343142944,SESCO,II.1.1,Santa Fe,AR-S,annual,2010,gas oil combustion consumption by to the public,1612.1439599999999,TJ,CO2,74100.0,kg/TJ,119459867.43599999,kg -185e249d-242a-36c3-b444-aaef751b194c,SESCO,II.1.1,Santa Fe,AR-S,annual,2010,gas oil combustion consumption by to the public,1612.1439599999999,TJ,CH4,3.9,kg/TJ,6287.361443999999,kg -185e249d-242a-36c3-b444-aaef751b194c,SESCO,II.1.1,Santa Fe,AR-S,annual,2010,gas oil combustion consumption by to the public,1612.1439599999999,TJ,N2O,3.9,kg/TJ,6287.361443999999,kg -334fabbb-42e3-3369-bb0a-4ad930bd4170,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2010,gas oil combustion consumption by to the public,232.46832,TJ,CO2,74100.0,kg/TJ,17225902.512000002,kg -56fe05c8-2374-367a-9892-94f044562ca0,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2010,gas oil combustion consumption by to the public,232.46832,TJ,CH4,3.9,kg/TJ,906.626448,kg -56fe05c8-2374-367a-9892-94f044562ca0,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2010,gas oil combustion consumption by to the public,232.46832,TJ,N2O,3.9,kg/TJ,906.626448,kg -24fcc238-9378-34fa-86e4-82319849c89e,SESCO,II.1.1,Tucuman,AR-T,annual,2010,gas oil combustion consumption by to the public,213.108,TJ,CO2,74100.0,kg/TJ,15791302.8,kg -23e96e65-fd21-3d8a-b974-a9ddc40b39b7,SESCO,II.1.1,Tucuman,AR-T,annual,2010,gas oil combustion consumption by to the public,213.108,TJ,CH4,3.9,kg/TJ,831.1212,kg -23e96e65-fd21-3d8a-b974-a9ddc40b39b7,SESCO,II.1.1,Tucuman,AR-T,annual,2010,gas oil combustion consumption by to the public,213.108,TJ,N2O,3.9,kg/TJ,831.1212,kg -9c3b0c6c-bf26-3e9d-a90e-bd8f374d1940,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,jet kerosene combustion consumption by to the public,407.37925599999994,TJ,CO2,71500.0,kg/TJ,29127616.803999994,kg -00429d5e-418d-32da-95b2-6236bb9e619f,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,jet kerosene combustion consumption by to the public,407.37925599999994,TJ,CH4,0.5,kg/TJ,203.68962799999997,kg -5663be5e-d294-33f6-a58f-10a1ed0c498a,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,jet kerosene combustion consumption by to the public,407.37925599999994,TJ,N2O,2.0,kg/TJ,814.7585119999999,kg -78606da2-84ae-3d88-8093-a9a67ff8bc00,SESCO,II.1.1,Capital Federal,AR-C,annual,2010,jet kerosene combustion consumption by to the public,18.588722999999998,TJ,CO2,71500.0,kg/TJ,1329093.6944999998,kg -7e9adcb0-311c-3e1a-9bbd-5a949274b42d,SESCO,II.1.1,Capital Federal,AR-C,annual,2010,jet kerosene combustion consumption by to the public,18.588722999999998,TJ,CH4,0.5,kg/TJ,9.294361499999999,kg -73c42028-fec1-3ad7-a71f-39e765bec69c,SESCO,II.1.1,Capital Federal,AR-C,annual,2010,jet kerosene combustion consumption by to the public,18.588722999999998,TJ,N2O,2.0,kg/TJ,37.177445999999996,kg -abdb8ffc-a6ad-3aa4-ab72-b5f71fcc2104,SESCO,II.1.1,Catamarca,AR-K,annual,2010,jet kerosene combustion consumption by to the public,6.384958999999999,TJ,CO2,71500.0,kg/TJ,456524.56849999994,kg -dfbcd048-f26f-32c6-9b4d-ad1201f9d815,SESCO,II.1.1,Catamarca,AR-K,annual,2010,jet kerosene combustion consumption by to the public,6.384958999999999,TJ,CH4,0.5,kg/TJ,3.1924794999999997,kg -6a460f80-4f18-3135-a342-cfb7a5106337,SESCO,II.1.1,Catamarca,AR-K,annual,2010,jet kerosene combustion consumption by to the public,6.384958999999999,TJ,N2O,2.0,kg/TJ,12.769917999999999,kg -10338493-464a-33dc-9aed-12645a67fc03,SESCO,II.1.1,Chaco,AR-H,annual,2010,jet kerosene combustion consumption by to the public,5.001026999999999,TJ,CO2,71500.0,kg/TJ,357573.4304999999,kg -9ed4ade5-0c18-34e5-a86c-1fee0a792d9f,SESCO,II.1.1,Chaco,AR-H,annual,2010,jet kerosene combustion consumption by to the public,5.001026999999999,TJ,CH4,0.5,kg/TJ,2.5005134999999994,kg -8a5c7f16-b8aa-3589-960f-7ba6bc5e8378,SESCO,II.1.1,Chaco,AR-H,annual,2010,jet kerosene combustion consumption by to the public,5.001026999999999,TJ,N2O,2.0,kg/TJ,10.002053999999998,kg -28aad92d-1fd2-371c-9579-0891d28261ba,SESCO,II.1.1,Chubut,AR-U,annual,2010,jet kerosene combustion consumption by to the public,30.446503999999994,TJ,CO2,71500.0,kg/TJ,2176925.0359999994,kg -71cd4219-7084-30f0-84b5-7d09ce1a5804,SESCO,II.1.1,Chubut,AR-U,annual,2010,jet kerosene combustion consumption by to the public,30.446503999999994,TJ,CH4,0.5,kg/TJ,15.223251999999997,kg -599f7a5c-1db3-332e-a872-661e44a264da,SESCO,II.1.1,Chubut,AR-U,annual,2010,jet kerosene combustion consumption by to the public,30.446503999999994,TJ,N2O,2.0,kg/TJ,60.89300799999999,kg -404aaf0f-cf61-35f3-bb57-998f3f78dd4c,SESCO,II.1.1,Corrientes,AR-W,annual,2010,jet kerosene combustion consumption by to the public,10.977096999999999,TJ,CO2,71500.0,kg/TJ,784862.4354999999,kg -8e0ef41f-b6f2-3eee-9987-45dbc3eaaf19,SESCO,II.1.1,Corrientes,AR-W,annual,2010,jet kerosene combustion consumption by to the public,10.977096999999999,TJ,CH4,0.5,kg/TJ,5.488548499999999,kg -c70b4c36-4564-3bbd-a32b-23f69862f0b0,SESCO,II.1.1,Corrientes,AR-W,annual,2010,jet kerosene combustion consumption by to the public,10.977096999999999,TJ,N2O,2.0,kg/TJ,21.954193999999998,kg -facf9509-91f1-3d25-90ac-1f4c3353caf2,SESCO,II.1.1,Córdoba,AR-X,annual,2010,jet kerosene combustion consumption by to the public,222.30980399999996,TJ,CO2,71500.0,kg/TJ,15895150.985999998,kg -78c2b4d2-a90a-328d-980e-a6cee617cf63,SESCO,II.1.1,Córdoba,AR-X,annual,2010,jet kerosene combustion consumption by to the public,222.30980399999996,TJ,CH4,0.5,kg/TJ,111.15490199999998,kg -0833ac72-8a4e-3912-80ad-ea36f0be63d2,SESCO,II.1.1,Córdoba,AR-X,annual,2010,jet kerosene combustion consumption by to the public,222.30980399999996,TJ,N2O,2.0,kg/TJ,444.6196079999999,kg -553a0cd1-404b-3f16-be5c-1d98efe81275,SESCO,II.1.1,Entre Rios,AR-E,annual,2010,jet kerosene combustion consumption by to the public,26.357613999999995,TJ,CO2,71500.0,kg/TJ,1884569.4009999996,kg -ae79a97b-eef5-3fe7-9425-216590d91854,SESCO,II.1.1,Entre Rios,AR-E,annual,2010,jet kerosene combustion consumption by to the public,26.357613999999995,TJ,CH4,0.5,kg/TJ,13.178806999999997,kg -78c0174c-5368-3d0a-ae6a-6d211b9edd10,SESCO,II.1.1,Entre Rios,AR-E,annual,2010,jet kerosene combustion consumption by to the public,26.357613999999995,TJ,N2O,2.0,kg/TJ,52.71522799999999,kg -c054583c-314f-3a37-a766-00a1a8bf2a93,SESCO,II.1.1,Formosa,AR-P,annual,2010,jet kerosene combustion consumption by to the public,0.22017099999999995,TJ,CO2,71500.0,kg/TJ,15742.226499999997,kg -7cefbdee-c13b-3dc9-84c4-c59871d7f649,SESCO,II.1.1,Formosa,AR-P,annual,2010,jet kerosene combustion consumption by to the public,0.22017099999999995,TJ,CH4,0.5,kg/TJ,0.11008549999999998,kg -4c50e37f-6796-3049-87c1-30b2e9c2b16d,SESCO,II.1.1,Formosa,AR-P,annual,2010,jet kerosene combustion consumption by to the public,0.22017099999999995,TJ,N2O,2.0,kg/TJ,0.4403419999999999,kg -16495adb-eade-3cd3-95dd-6416da1c3eca,SESCO,II.1.1,Jujuy,AR-Y,annual,2010,jet kerosene combustion consumption by to the public,5.189744999999999,TJ,CO2,71500.0,kg/TJ,371066.76749999996,kg -4dcd9c10-cb21-39b0-a4c1-132af95cb534,SESCO,II.1.1,Jujuy,AR-Y,annual,2010,jet kerosene combustion consumption by to the public,5.189744999999999,TJ,CH4,0.5,kg/TJ,2.5948724999999997,kg -ed180bbc-1466-3908-9433-7db2224349ca,SESCO,II.1.1,Jujuy,AR-Y,annual,2010,jet kerosene combustion consumption by to the public,5.189744999999999,TJ,N2O,2.0,kg/TJ,10.379489999999999,kg -d597363a-38fc-3fbf-b59a-dd92a8e51224,SESCO,II.1.1,La Pampa,AR-L,annual,2010,jet kerosene combustion consumption by to the public,23.589749999999995,TJ,CO2,71500.0,kg/TJ,1686667.1249999995,kg -a2398d2b-86ae-3a7f-93bf-78d44c62f81a,SESCO,II.1.1,La Pampa,AR-L,annual,2010,jet kerosene combustion consumption by to the public,23.589749999999995,TJ,CH4,0.5,kg/TJ,11.794874999999998,kg -67be3417-b617-3517-ac19-f2c4ba7513ce,SESCO,II.1.1,La Pampa,AR-L,annual,2010,jet kerosene combustion consumption by to the public,23.589749999999995,TJ,N2O,2.0,kg/TJ,47.17949999999999,kg -5b6505e1-525c-3f73-873c-59e3930168c7,SESCO,II.1.1,La Rioja,AR-F,annual,2010,jet kerosene combustion consumption by to the public,5.001026999999999,TJ,CO2,71500.0,kg/TJ,357573.4304999999,kg -deb4db7c-8123-3a7f-855c-0a8d1921a4ee,SESCO,II.1.1,La Rioja,AR-F,annual,2010,jet kerosene combustion consumption by to the public,5.001026999999999,TJ,CH4,0.5,kg/TJ,2.5005134999999994,kg -154c02f2-7624-3498-9982-6f47a9443310,SESCO,II.1.1,La Rioja,AR-F,annual,2010,jet kerosene combustion consumption by to the public,5.001026999999999,TJ,N2O,2.0,kg/TJ,10.002053999999998,kg -b1fdfe62-f257-3902-9edd-c91fcbc1bbef,SESCO,II.1.1,Mendoza,AR-M,annual,2010,jet kerosene combustion consumption by to the public,76.36788399999999,TJ,CO2,71500.0,kg/TJ,5460303.705999999,kg -d0e3ef80-d8a3-3d3b-b96f-d3050cde7678,SESCO,II.1.1,Mendoza,AR-M,annual,2010,jet kerosene combustion consumption by to the public,76.36788399999999,TJ,CH4,0.5,kg/TJ,38.183941999999995,kg -cad3a9d8-8982-3bc7-ab09-8493eaf584e5,SESCO,II.1.1,Mendoza,AR-M,annual,2010,jet kerosene combustion consumption by to the public,76.36788399999999,TJ,N2O,2.0,kg/TJ,152.73576799999998,kg -a423a524-4bc1-305e-87de-a5e4ff3f2f8e,SESCO,II.1.1,Misiones,AR-N,annual,2010,jet kerosene combustion consumption by to the public,10.348036999999998,TJ,CO2,71500.0,kg/TJ,739884.6454999999,kg -ff3ae9c0-030c-38b6-b748-030a155635f2,SESCO,II.1.1,Misiones,AR-N,annual,2010,jet kerosene combustion consumption by to the public,10.348036999999998,TJ,CH4,0.5,kg/TJ,5.174018499999999,kg -be292712-0b31-3ad9-9826-c83bdfcb9427,SESCO,II.1.1,Misiones,AR-N,annual,2010,jet kerosene combustion consumption by to the public,10.348036999999998,TJ,N2O,2.0,kg/TJ,20.696073999999996,kg -613ae80f-095a-3a2a-bba6-2869509bd3c9,SESCO,II.1.1,Neuquén,AR-Q,annual,2010,jet kerosene combustion consumption by to the public,25.539835999999998,TJ,CO2,71500.0,kg/TJ,1826098.2739999997,kg -b74fb063-8a2e-364a-a216-f52f8d3d4993,SESCO,II.1.1,Neuquén,AR-Q,annual,2010,jet kerosene combustion consumption by to the public,25.539835999999998,TJ,CH4,0.5,kg/TJ,12.769917999999999,kg -bc63756d-fa55-3cf6-babe-7fa6345b56ac,SESCO,II.1.1,Neuquén,AR-Q,annual,2010,jet kerosene combustion consumption by to the public,25.539835999999998,TJ,N2O,2.0,kg/TJ,51.079671999999995,kg -b54d2d42-843f-37b0-89ba-6e8972916278,SESCO,II.1.1,Rio Negro,AR-R,annual,2010,jet kerosene combustion consumption by to the public,10.505301999999999,TJ,CO2,71500.0,kg/TJ,751129.0929999999,kg -aee5ac16-7244-38f8-bb4a-efcc242794bb,SESCO,II.1.1,Rio Negro,AR-R,annual,2010,jet kerosene combustion consumption by to the public,10.505301999999999,TJ,CH4,0.5,kg/TJ,5.252650999999999,kg -9bd75740-8bc1-3862-8477-29993f9b690a,SESCO,II.1.1,Rio Negro,AR-R,annual,2010,jet kerosene combustion consumption by to the public,10.505301999999999,TJ,N2O,2.0,kg/TJ,21.010603999999997,kg -f900f4f0-f014-37c4-abdf-85ce5a321aa5,SESCO,II.1.1,Salta,AR-A,annual,2010,jet kerosene combustion consumption by to the public,16.418466,TJ,CO2,71500.0,kg/TJ,1173920.319,kg -9d143cf2-292e-37c7-b4a4-935cef787c56,SESCO,II.1.1,Salta,AR-A,annual,2010,jet kerosene combustion consumption by to the public,16.418466,TJ,CH4,0.5,kg/TJ,8.209233,kg -ba371409-44d1-3afa-9c1b-04a900b7615e,SESCO,II.1.1,Salta,AR-A,annual,2010,jet kerosene combustion consumption by to the public,16.418466,TJ,N2O,2.0,kg/TJ,32.836932,kg -29950a6e-bf6c-3677-9862-476a60861605,SESCO,II.1.1,San Juan,AR-J,annual,2010,jet kerosene combustion consumption by to the public,9.750429999999998,TJ,CO2,71500.0,kg/TJ,697155.7449999999,kg -94199d76-b27f-3858-851e-a723ec902ca4,SESCO,II.1.1,San Juan,AR-J,annual,2010,jet kerosene combustion consumption by to the public,9.750429999999998,TJ,CH4,0.5,kg/TJ,4.875214999999999,kg -106c4a33-2200-3c3b-9a05-adf1b2ea7bc7,SESCO,II.1.1,San Juan,AR-J,annual,2010,jet kerosene combustion consumption by to the public,9.750429999999998,TJ,N2O,2.0,kg/TJ,19.500859999999996,kg -b9fd25d5-cfc2-36b7-9529-9f66f45e0352,SESCO,II.1.1,San Luis,AR-D,annual,2010,jet kerosene combustion consumption by to the public,22.992142999999995,TJ,CO2,71500.0,kg/TJ,1643938.2244999995,kg -8579af88-abdc-3d0d-8d9a-9e57a646849f,SESCO,II.1.1,San Luis,AR-D,annual,2010,jet kerosene combustion consumption by to the public,22.992142999999995,TJ,CH4,0.5,kg/TJ,11.496071499999998,kg -cab0182e-9d2b-3d9d-a4f9-6239a50c5c53,SESCO,II.1.1,San Luis,AR-D,annual,2010,jet kerosene combustion consumption by to the public,22.992142999999995,TJ,N2O,2.0,kg/TJ,45.98428599999999,kg -b08ed48e-caba-3665-b260-085a376fe885,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2010,jet kerosene combustion consumption by to the public,24.659151999999995,TJ,CO2,71500.0,kg/TJ,1763129.3679999996,kg -7821a5c9-a6a9-3342-825a-9156b6c6e27c,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2010,jet kerosene combustion consumption by to the public,24.659151999999995,TJ,CH4,0.5,kg/TJ,12.329575999999998,kg -76c0101a-99d8-35af-92ba-31f3672eba36,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2010,jet kerosene combustion consumption by to the public,24.659151999999995,TJ,N2O,2.0,kg/TJ,49.31830399999999,kg -7a823fcd-2e6a-34d1-84d7-0ae86dca8678,SESCO,II.1.1,Santa Fe,AR-S,annual,2010,jet kerosene combustion consumption by to the public,83.25609099999998,TJ,CO2,71500.0,kg/TJ,5952810.506499999,kg -0b64ddbe-751b-3a2b-8b7a-d470399176f1,SESCO,II.1.1,Santa Fe,AR-S,annual,2010,jet kerosene combustion consumption by to the public,83.25609099999998,TJ,CH4,0.5,kg/TJ,41.62804549999999,kg -5b8044da-395a-349d-9c0a-90f6d6a4fe21,SESCO,II.1.1,Santa Fe,AR-S,annual,2010,jet kerosene combustion consumption by to the public,83.25609099999998,TJ,N2O,2.0,kg/TJ,166.51218199999997,kg -6f94a281-1ee0-3caa-a5f3-e0cec2022fcd,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2010,jet kerosene combustion consumption by to the public,15.065986999999998,TJ,CO2,71500.0,kg/TJ,1077218.0705,kg -0e70d273-ca2b-361c-be68-26839bb7ab43,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2010,jet kerosene combustion consumption by to the public,15.065986999999998,TJ,CH4,0.5,kg/TJ,7.532993499999999,kg -c7c89c35-9355-38a1-96be-f503da996330,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2010,jet kerosene combustion consumption by to the public,15.065986999999998,TJ,N2O,2.0,kg/TJ,30.131973999999996,kg -c1e95c6b-23ab-31c8-b35c-bd4d9c09adfa,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2010,jet kerosene combustion consumption by to the public,4.623590999999999,TJ,CO2,71500.0,kg/TJ,330586.75649999996,kg -f8b3e92c-ac0c-3450-93c0-284247fe034a,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2010,jet kerosene combustion consumption by to the public,4.623590999999999,TJ,CH4,0.5,kg/TJ,2.3117954999999997,kg -51107832-1378-369e-a531-a53f1c5ad9ad,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2010,jet kerosene combustion consumption by to the public,4.623590999999999,TJ,N2O,2.0,kg/TJ,9.247181999999999,kg -73728a6d-0aa7-3a8e-95ab-9e7ed2108e89,SESCO,II.1.1,Tucuman,AR-T,annual,2010,jet kerosene combustion consumption by to the public,15.695046999999997,TJ,CO2,71500.0,kg/TJ,1122195.8604999997,kg -2397fa0b-9504-3d26-8386-529580f4eed8,SESCO,II.1.1,Tucuman,AR-T,annual,2010,jet kerosene combustion consumption by to the public,15.695046999999997,TJ,CH4,0.5,kg/TJ,7.8475234999999985,kg -a0788e67-2fee-39a5-b3da-74136ac2d3e5,SESCO,II.1.1,Tucuman,AR-T,annual,2010,jet kerosene combustion consumption by to the public,15.695046999999997,TJ,N2O,2.0,kg/TJ,31.390093999999994,kg -596a50b4-b363-3acc-ae8e-a612d99779ed,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,gasoline combustion consumption by freight transport,10.9421,TJ,CO2,69300.0,kg/TJ,758287.53,kg -910db66d-5283-3733-87bf-bfe08ab618ba,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,gasoline combustion consumption by freight transport,10.9421,TJ,CH4,33.0,kg/TJ,361.0893,kg -8ce0b643-d7ad-379f-9f9d-d18ceb948323,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,gasoline combustion consumption by freight transport,10.9421,TJ,N2O,3.2,kg/TJ,35.014720000000004,kg -e638da2c-0ad2-30e6-b865-daac95c6165a,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,gas oil combustion consumption by freight transport,9295.26528,TJ,CO2,74100.0,kg/TJ,688779157.248,kg -e347bcc3-ea6b-3496-a0e7-829c39d49638,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,gas oil combustion consumption by freight transport,9295.26528,TJ,CH4,3.9,kg/TJ,36251.534591999996,kg -e347bcc3-ea6b-3496-a0e7-829c39d49638,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,gas oil combustion consumption by freight transport,9295.26528,TJ,N2O,3.9,kg/TJ,36251.534591999996,kg -33ba07fe-10e6-3118-b90b-f5b146e4c84a,SESCO,II.1.1,Capital Federal,AR-C,annual,2010,gas oil combustion consumption by freight transport,770.00616,TJ,CO2,74100.0,kg/TJ,57057456.456,kg -3c810132-9d06-3db0-a073-6ac2f3175176,SESCO,II.1.1,Capital Federal,AR-C,annual,2010,gas oil combustion consumption by freight transport,770.00616,TJ,CH4,3.9,kg/TJ,3003.024024,kg -3c810132-9d06-3db0-a073-6ac2f3175176,SESCO,II.1.1,Capital Federal,AR-C,annual,2010,gas oil combustion consumption by freight transport,770.00616,TJ,N2O,3.9,kg/TJ,3003.024024,kg -f2bf0ecb-adb6-311c-8e94-20e1531ec732,SESCO,II.1.1,Catamarca,AR-K,annual,2010,gas oil combustion consumption by freight transport,33.30264,TJ,CO2,74100.0,kg/TJ,2467725.624,kg -362cd3b9-dd7b-3535-87fc-b868522d7371,SESCO,II.1.1,Catamarca,AR-K,annual,2010,gas oil combustion consumption by freight transport,33.30264,TJ,CH4,3.9,kg/TJ,129.880296,kg -362cd3b9-dd7b-3535-87fc-b868522d7371,SESCO,II.1.1,Catamarca,AR-K,annual,2010,gas oil combustion consumption by freight transport,33.30264,TJ,N2O,3.9,kg/TJ,129.880296,kg -8dcf0e13-7a3f-3a1f-886c-130e35a6c975,SESCO,II.1.1,Chaco,AR-H,annual,2010,gas oil combustion consumption by freight transport,265.01243999999997,TJ,CO2,74100.0,kg/TJ,19637421.803999998,kg -400b2d62-e482-3271-b033-51dec5ebf4e8,SESCO,II.1.1,Chaco,AR-H,annual,2010,gas oil combustion consumption by freight transport,265.01243999999997,TJ,CH4,3.9,kg/TJ,1033.5485159999998,kg -400b2d62-e482-3271-b033-51dec5ebf4e8,SESCO,II.1.1,Chaco,AR-H,annual,2010,gas oil combustion consumption by freight transport,265.01243999999997,TJ,N2O,3.9,kg/TJ,1033.5485159999998,kg -4e8e6352-133b-36b3-8183-848f4a8a1e58,SESCO,II.1.1,Chubut,AR-U,annual,2010,gas oil combustion consumption by freight transport,371.8554,TJ,CO2,74100.0,kg/TJ,27554485.139999997,kg -7889a208-0379-392b-8d94-b0da352ba204,SESCO,II.1.1,Chubut,AR-U,annual,2010,gas oil combustion consumption by freight transport,371.8554,TJ,CH4,3.9,kg/TJ,1450.23606,kg -7889a208-0379-392b-8d94-b0da352ba204,SESCO,II.1.1,Chubut,AR-U,annual,2010,gas oil combustion consumption by freight transport,371.8554,TJ,N2O,3.9,kg/TJ,1450.23606,kg -6fd4d2f1-84a2-358e-a7d1-51a1d641fa5e,SESCO,II.1.1,Corrientes,AR-W,annual,2010,gas oil combustion consumption by freight transport,392.40767999999997,TJ,CO2,74100.0,kg/TJ,29077409.088,kg -ef4a3df0-bb0c-35ec-ae90-ae17196b1165,SESCO,II.1.1,Corrientes,AR-W,annual,2010,gas oil combustion consumption by freight transport,392.40767999999997,TJ,CH4,3.9,kg/TJ,1530.3899519999998,kg -ef4a3df0-bb0c-35ec-ae90-ae17196b1165,SESCO,II.1.1,Corrientes,AR-W,annual,2010,gas oil combustion consumption by freight transport,392.40767999999997,TJ,N2O,3.9,kg/TJ,1530.3899519999998,kg -abe03600-779a-371f-a8d3-83ebcdbfbac7,SESCO,II.1.1,Córdoba,AR-X,annual,2010,gas oil combustion consumption by freight transport,2138.8458,TJ,CO2,74100.0,kg/TJ,158488473.78,kg -b5506e9c-e379-3ed6-a016-0ffe2be6f10f,SESCO,II.1.1,Córdoba,AR-X,annual,2010,gas oil combustion consumption by freight transport,2138.8458,TJ,CH4,3.9,kg/TJ,8341.49862,kg -b5506e9c-e379-3ed6-a016-0ffe2be6f10f,SESCO,II.1.1,Córdoba,AR-X,annual,2010,gas oil combustion consumption by freight transport,2138.8458,TJ,N2O,3.9,kg/TJ,8341.49862,kg -6fe92f62-98e7-3a58-8976-b377e8fa0c85,SESCO,II.1.1,Entre Rios,AR-E,annual,2010,gas oil combustion consumption by freight transport,307.30896,TJ,CO2,74100.0,kg/TJ,22771593.936,kg -5075ae2b-a979-3555-9b16-3d558ee03402,SESCO,II.1.1,Entre Rios,AR-E,annual,2010,gas oil combustion consumption by freight transport,307.30896,TJ,CH4,3.9,kg/TJ,1198.504944,kg -5075ae2b-a979-3555-9b16-3d558ee03402,SESCO,II.1.1,Entre Rios,AR-E,annual,2010,gas oil combustion consumption by freight transport,307.30896,TJ,N2O,3.9,kg/TJ,1198.504944,kg -d616d053-4f25-332c-955c-83e24774dc4f,SESCO,II.1.1,Formosa,AR-P,annual,2010,gas oil combustion consumption by freight transport,38.90124,TJ,CO2,74100.0,kg/TJ,2882581.884,kg -1a4127e3-cc4a-3363-bbfd-72c0d6f76765,SESCO,II.1.1,Formosa,AR-P,annual,2010,gas oil combustion consumption by freight transport,38.90124,TJ,CH4,3.9,kg/TJ,151.714836,kg -1a4127e3-cc4a-3363-bbfd-72c0d6f76765,SESCO,II.1.1,Formosa,AR-P,annual,2010,gas oil combustion consumption by freight transport,38.90124,TJ,N2O,3.9,kg/TJ,151.714836,kg -db73513f-3c06-3f14-abfa-ef9d2fda7738,SESCO,II.1.1,Jujuy,AR-Y,annual,2010,gas oil combustion consumption by freight transport,101.56944,TJ,CO2,74100.0,kg/TJ,7526295.504,kg -fa9d81db-e737-314d-81dc-3601fcb47df9,SESCO,II.1.1,Jujuy,AR-Y,annual,2010,gas oil combustion consumption by freight transport,101.56944,TJ,CH4,3.9,kg/TJ,396.120816,kg -fa9d81db-e737-314d-81dc-3601fcb47df9,SESCO,II.1.1,Jujuy,AR-Y,annual,2010,gas oil combustion consumption by freight transport,101.56944,TJ,N2O,3.9,kg/TJ,396.120816,kg -99040028-52d5-3b9f-897e-83910512435d,SESCO,II.1.1,La Pampa,AR-L,annual,2010,gas oil combustion consumption by freight transport,281.77212,TJ,CO2,74100.0,kg/TJ,20879314.091999996,kg -75ee3031-2575-36d7-be6f-a1c51b47cde7,SESCO,II.1.1,La Pampa,AR-L,annual,2010,gas oil combustion consumption by freight transport,281.77212,TJ,CH4,3.9,kg/TJ,1098.9112679999998,kg -75ee3031-2575-36d7-be6f-a1c51b47cde7,SESCO,II.1.1,La Pampa,AR-L,annual,2010,gas oil combustion consumption by freight transport,281.77212,TJ,N2O,3.9,kg/TJ,1098.9112679999998,kg -34727a41-76d3-3a75-a5e1-9e044c0cd979,SESCO,II.1.1,La Rioja,AR-F,annual,2010,gas oil combustion consumption by freight transport,53.92716,TJ,CO2,74100.0,kg/TJ,3996002.556,kg -be32681f-8586-33ac-b412-7f14e79060a5,SESCO,II.1.1,La Rioja,AR-F,annual,2010,gas oil combustion consumption by freight transport,53.92716,TJ,CH4,3.9,kg/TJ,210.315924,kg -be32681f-8586-33ac-b412-7f14e79060a5,SESCO,II.1.1,La Rioja,AR-F,annual,2010,gas oil combustion consumption by freight transport,53.92716,TJ,N2O,3.9,kg/TJ,210.315924,kg -85051099-6506-3134-8dc4-8b13bcbda9fa,SESCO,II.1.1,Mendoza,AR-M,annual,2010,gas oil combustion consumption by freight transport,1168.2291599999999,TJ,CO2,74100.0,kg/TJ,86565780.756,kg -7e7488e6-7172-32d5-846b-99fca5b4cb97,SESCO,II.1.1,Mendoza,AR-M,annual,2010,gas oil combustion consumption by freight transport,1168.2291599999999,TJ,CH4,3.9,kg/TJ,4556.093723999999,kg -7e7488e6-7172-32d5-846b-99fca5b4cb97,SESCO,II.1.1,Mendoza,AR-M,annual,2010,gas oil combustion consumption by freight transport,1168.2291599999999,TJ,N2O,3.9,kg/TJ,4556.093723999999,kg -daa6ec98-9ff0-36b8-803b-02bda25599e4,SESCO,II.1.1,Misiones,AR-N,annual,2010,gas oil combustion consumption by freight transport,229.21752,TJ,CO2,74100.0,kg/TJ,16985018.232,kg -54ab0eeb-8dd8-31c8-a950-8c04c12e5b1e,SESCO,II.1.1,Misiones,AR-N,annual,2010,gas oil combustion consumption by freight transport,229.21752,TJ,CH4,3.9,kg/TJ,893.9483280000001,kg -54ab0eeb-8dd8-31c8-a950-8c04c12e5b1e,SESCO,II.1.1,Misiones,AR-N,annual,2010,gas oil combustion consumption by freight transport,229.21752,TJ,N2O,3.9,kg/TJ,893.9483280000001,kg -b6ac07a9-c65a-3f29-b672-5f770db9897a,SESCO,II.1.1,Neuquén,AR-Q,annual,2010,gas oil combustion consumption by freight transport,488.66748,TJ,CO2,74100.0,kg/TJ,36210260.268,kg -0b3d7611-abb3-3bdc-9135-89c085af8b81,SESCO,II.1.1,Neuquén,AR-Q,annual,2010,gas oil combustion consumption by freight transport,488.66748,TJ,CH4,3.9,kg/TJ,1905.803172,kg -0b3d7611-abb3-3bdc-9135-89c085af8b81,SESCO,II.1.1,Neuquén,AR-Q,annual,2010,gas oil combustion consumption by freight transport,488.66748,TJ,N2O,3.9,kg/TJ,1905.803172,kg -a7ee44c8-c7fb-3a01-b4ff-ebbb33150166,SESCO,II.1.1,Rio Negro,AR-R,annual,2010,gas oil combustion consumption by freight transport,207.90672,TJ,CO2,74100.0,kg/TJ,15405887.952000001,kg -6d975f46-31e1-3698-8db7-fff4ee27eec5,SESCO,II.1.1,Rio Negro,AR-R,annual,2010,gas oil combustion consumption by freight transport,207.90672,TJ,CH4,3.9,kg/TJ,810.836208,kg -6d975f46-31e1-3698-8db7-fff4ee27eec5,SESCO,II.1.1,Rio Negro,AR-R,annual,2010,gas oil combustion consumption by freight transport,207.90672,TJ,N2O,3.9,kg/TJ,810.836208,kg -88a36a28-0450-316a-b6a2-de6763472ec6,SESCO,II.1.1,Salta,AR-A,annual,2010,gas oil combustion consumption by freight transport,395.18892,TJ,CO2,74100.0,kg/TJ,29283498.972,kg -4cb754af-7003-358c-908d-c2329cac2540,SESCO,II.1.1,Salta,AR-A,annual,2010,gas oil combustion consumption by freight transport,395.18892,TJ,CH4,3.9,kg/TJ,1541.236788,kg -4cb754af-7003-358c-908d-c2329cac2540,SESCO,II.1.1,Salta,AR-A,annual,2010,gas oil combustion consumption by freight transport,395.18892,TJ,N2O,3.9,kg/TJ,1541.236788,kg -5b2ed6a4-fc1c-3741-a533-ae6814131696,SESCO,II.1.1,San Juan,AR-J,annual,2010,gas oil combustion consumption by freight transport,80.07804,TJ,CO2,74100.0,kg/TJ,5933782.764,kg -b3607e36-5224-30b7-8f38-9af8f594b444,SESCO,II.1.1,San Juan,AR-J,annual,2010,gas oil combustion consumption by freight transport,80.07804,TJ,CH4,3.9,kg/TJ,312.304356,kg -b3607e36-5224-30b7-8f38-9af8f594b444,SESCO,II.1.1,San Juan,AR-J,annual,2010,gas oil combustion consumption by freight transport,80.07804,TJ,N2O,3.9,kg/TJ,312.304356,kg -b8d3caeb-3f31-3ebb-93d7-43b0eed82dce,SESCO,II.1.1,San Luis,AR-D,annual,2010,gas oil combustion consumption by freight transport,473.38872,TJ,CO2,74100.0,kg/TJ,35078104.151999995,kg -4dcd12f9-b83b-3ceb-8a32-ecde4e0b3883,SESCO,II.1.1,San Luis,AR-D,annual,2010,gas oil combustion consumption by freight transport,473.38872,TJ,CH4,3.9,kg/TJ,1846.2160079999999,kg -4dcd12f9-b83b-3ceb-8a32-ecde4e0b3883,SESCO,II.1.1,San Luis,AR-D,annual,2010,gas oil combustion consumption by freight transport,473.38872,TJ,N2O,3.9,kg/TJ,1846.2160079999999,kg -10501a53-6e93-369c-a0b3-f3822e5ee9f9,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2010,gas oil combustion consumption by freight transport,207.58164,TJ,CO2,74100.0,kg/TJ,15381799.524,kg -b7970ad8-f53e-3c87-8ea4-05e9aca49ba9,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2010,gas oil combustion consumption by freight transport,207.58164,TJ,CH4,3.9,kg/TJ,809.568396,kg -b7970ad8-f53e-3c87-8ea4-05e9aca49ba9,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2010,gas oil combustion consumption by freight transport,207.58164,TJ,N2O,3.9,kg/TJ,809.568396,kg -7d263919-1f72-3169-a2f5-85f184391052,SESCO,II.1.1,Santa Fe,AR-S,annual,2010,gas oil combustion consumption by freight transport,2097.95796,TJ,CO2,74100.0,kg/TJ,155458684.83600003,kg -85162eb6-d2e4-3d7c-9140-6b6dd32d51e1,SESCO,II.1.1,Santa Fe,AR-S,annual,2010,gas oil combustion consumption by freight transport,2097.95796,TJ,CH4,3.9,kg/TJ,8182.036044,kg -85162eb6-d2e4-3d7c-9140-6b6dd32d51e1,SESCO,II.1.1,Santa Fe,AR-S,annual,2010,gas oil combustion consumption by freight transport,2097.95796,TJ,N2O,3.9,kg/TJ,8182.036044,kg -117945c0-5960-3f22-b762-c251a92c8225,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2010,gas oil combustion consumption by freight transport,338.95008,TJ,CO2,74100.0,kg/TJ,25116200.928,kg -96715972-b5f7-335e-bf15-eda8cf39cbd7,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2010,gas oil combustion consumption by freight transport,338.95008,TJ,CH4,3.9,kg/TJ,1321.905312,kg -96715972-b5f7-335e-bf15-eda8cf39cbd7,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2010,gas oil combustion consumption by freight transport,338.95008,TJ,N2O,3.9,kg/TJ,1321.905312,kg -463e662e-9ec1-3299-8ddf-2f701db5a970,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2010,gas oil combustion consumption by freight transport,39.3708,TJ,CO2,74100.0,kg/TJ,2917376.2800000003,kg -a1bbd5b1-59b1-357b-b126-80d4a4a1ed7c,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2010,gas oil combustion consumption by freight transport,39.3708,TJ,CH4,3.9,kg/TJ,153.54612,kg -a1bbd5b1-59b1-357b-b126-80d4a4a1ed7c,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2010,gas oil combustion consumption by freight transport,39.3708,TJ,N2O,3.9,kg/TJ,153.54612,kg -01b7621c-1427-3135-bf95-2df7a11de085,SESCO,II.1.1,Tucuman,AR-T,annual,2010,gas oil combustion consumption by freight transport,373.98648,TJ,CO2,74100.0,kg/TJ,27712398.167999998,kg -0431cdb8-7771-358a-b46d-646f8346811d,SESCO,II.1.1,Tucuman,AR-T,annual,2010,gas oil combustion consumption by freight transport,373.98648,TJ,CH4,3.9,kg/TJ,1458.5472719999998,kg -0431cdb8-7771-358a-b46d-646f8346811d,SESCO,II.1.1,Tucuman,AR-T,annual,2010,gas oil combustion consumption by freight transport,373.98648,TJ,N2O,3.9,kg/TJ,1458.5472719999998,kg -716719b7-d790-3227-b481-229e336fa8be,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,gas oil combustion consumption by freight transport,63.96852,TJ,CO2,74100.0,kg/TJ,4740067.3319999995,kg -b0f7fd76-5eb8-330b-ba7b-e78e329fd561,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,gas oil combustion consumption by freight transport,63.96852,TJ,CH4,3.9,kg/TJ,249.477228,kg -b0f7fd76-5eb8-330b-ba7b-e78e329fd561,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,gas oil combustion consumption by freight transport,63.96852,TJ,N2O,3.9,kg/TJ,249.477228,kg -23f8f4c1-5e5b-3af0-9b96-43e3e3fa158a,SESCO,II.1.1,Capital Federal,AR-C,annual,2010,gas oil combustion consumption by freight transport,18.52956,TJ,CO2,74100.0,kg/TJ,1373040.396,kg -1d960f5a-cbd0-35a1-b165-d106a5e9efdd,SESCO,II.1.1,Capital Federal,AR-C,annual,2010,gas oil combustion consumption by freight transport,18.52956,TJ,CH4,3.9,kg/TJ,72.265284,kg -1d960f5a-cbd0-35a1-b165-d106a5e9efdd,SESCO,II.1.1,Capital Federal,AR-C,annual,2010,gas oil combustion consumption by freight transport,18.52956,TJ,N2O,3.9,kg/TJ,72.265284,kg -cb361035-83e1-3a31-8b75-c5b2268cb3be,SESCO,II.1.1,Chaco,AR-H,annual,2010,gas oil combustion consumption by freight transport,5.63472,TJ,CO2,74100.0,kg/TJ,417532.752,kg -7f2c88aa-691e-31db-b8ca-8a48273e2a92,SESCO,II.1.1,Chaco,AR-H,annual,2010,gas oil combustion consumption by freight transport,5.63472,TJ,CH4,3.9,kg/TJ,21.975407999999998,kg -7f2c88aa-691e-31db-b8ca-8a48273e2a92,SESCO,II.1.1,Chaco,AR-H,annual,2010,gas oil combustion consumption by freight transport,5.63472,TJ,N2O,3.9,kg/TJ,21.975407999999998,kg -bc5d501f-b80a-3253-b4d3-46dca5be1ae4,SESCO,II.1.1,Chubut,AR-U,annual,2010,gas oil combustion consumption by freight transport,2.81736,TJ,CO2,74100.0,kg/TJ,208766.376,kg -5a4d17be-6849-3d1c-aa7d-66e886f178b3,SESCO,II.1.1,Chubut,AR-U,annual,2010,gas oil combustion consumption by freight transport,2.81736,TJ,CH4,3.9,kg/TJ,10.987703999999999,kg -5a4d17be-6849-3d1c-aa7d-66e886f178b3,SESCO,II.1.1,Chubut,AR-U,annual,2010,gas oil combustion consumption by freight transport,2.81736,TJ,N2O,3.9,kg/TJ,10.987703999999999,kg -26a967ca-ce7a-39ef-8193-cb04f8ff6f6f,SESCO,II.1.1,Corrientes,AR-W,annual,2010,gas oil combustion consumption by freight transport,1.37256,TJ,CO2,74100.0,kg/TJ,101706.696,kg -976f7a0d-e830-33fb-80d3-201c5da4b636,SESCO,II.1.1,Corrientes,AR-W,annual,2010,gas oil combustion consumption by freight transport,1.37256,TJ,CH4,3.9,kg/TJ,5.352984,kg -976f7a0d-e830-33fb-80d3-201c5da4b636,SESCO,II.1.1,Corrientes,AR-W,annual,2010,gas oil combustion consumption by freight transport,1.37256,TJ,N2O,3.9,kg/TJ,5.352984,kg -a7bb97fa-e8b4-3805-973b-1a7e09741a59,SESCO,II.1.1,Córdoba,AR-X,annual,2010,gas oil combustion consumption by freight transport,9.42732,TJ,CO2,74100.0,kg/TJ,698564.412,kg -12155fe1-c3a4-305f-bcdf-ec7f422a0402,SESCO,II.1.1,Córdoba,AR-X,annual,2010,gas oil combustion consumption by freight transport,9.42732,TJ,CH4,3.9,kg/TJ,36.766548,kg -12155fe1-c3a4-305f-bcdf-ec7f422a0402,SESCO,II.1.1,Córdoba,AR-X,annual,2010,gas oil combustion consumption by freight transport,9.42732,TJ,N2O,3.9,kg/TJ,36.766548,kg -f42d650d-5409-376d-8afe-0be282119419,SESCO,II.1.1,Entre Rios,AR-E,annual,2010,gas oil combustion consumption by freight transport,7.07952,TJ,CO2,74100.0,kg/TJ,524592.4319999999,kg -0d53db6a-c166-327e-ba34-5655bcef0496,SESCO,II.1.1,Entre Rios,AR-E,annual,2010,gas oil combustion consumption by freight transport,7.07952,TJ,CH4,3.9,kg/TJ,27.610127999999996,kg -0d53db6a-c166-327e-ba34-5655bcef0496,SESCO,II.1.1,Entre Rios,AR-E,annual,2010,gas oil combustion consumption by freight transport,7.07952,TJ,N2O,3.9,kg/TJ,27.610127999999996,kg -f7d0fc73-b46e-346d-8f12-8fa3fec0c5ac,SESCO,II.1.1,Formosa,AR-P,annual,2010,gas oil combustion consumption by freight transport,0.39732,TJ,CO2,74100.0,kg/TJ,29441.412,kg -83498105-6c41-36ad-b581-bb69b5c8d561,SESCO,II.1.1,Formosa,AR-P,annual,2010,gas oil combustion consumption by freight transport,0.39732,TJ,CH4,3.9,kg/TJ,1.549548,kg -83498105-6c41-36ad-b581-bb69b5c8d561,SESCO,II.1.1,Formosa,AR-P,annual,2010,gas oil combustion consumption by freight transport,0.39732,TJ,N2O,3.9,kg/TJ,1.549548,kg -af3a1ef4-ef4e-3cd1-9367-655b29438884,SESCO,II.1.1,Jujuy,AR-Y,annual,2010,gas oil combustion consumption by freight transport,0.28896,TJ,CO2,74100.0,kg/TJ,21411.935999999998,kg -6cb174f1-6558-3ef0-abfc-e5b1e4e229c6,SESCO,II.1.1,Jujuy,AR-Y,annual,2010,gas oil combustion consumption by freight transport,0.28896,TJ,CH4,3.9,kg/TJ,1.126944,kg -6cb174f1-6558-3ef0-abfc-e5b1e4e229c6,SESCO,II.1.1,Jujuy,AR-Y,annual,2010,gas oil combustion consumption by freight transport,0.28896,TJ,N2O,3.9,kg/TJ,1.126944,kg -0d0f3400-0d0a-3d9f-8fe6-55f9d0171cb6,SESCO,II.1.1,La Pampa,AR-L,annual,2010,gas oil combustion consumption by freight transport,1.37256,TJ,CO2,74100.0,kg/TJ,101706.696,kg -0988c533-39ec-38e2-8e1c-74ae436b913f,SESCO,II.1.1,La Pampa,AR-L,annual,2010,gas oil combustion consumption by freight transport,1.37256,TJ,CH4,3.9,kg/TJ,5.352984,kg -0988c533-39ec-38e2-8e1c-74ae436b913f,SESCO,II.1.1,La Pampa,AR-L,annual,2010,gas oil combustion consumption by freight transport,1.37256,TJ,N2O,3.9,kg/TJ,5.352984,kg -0104c4c5-27f8-3182-a942-51ffd83fdbe3,SESCO,II.1.1,La Rioja,AR-F,annual,2010,gas oil combustion consumption by freight transport,0.5418,TJ,CO2,74100.0,kg/TJ,40147.38,kg -d3a3ea1f-316c-37e0-b863-59b76f8421a3,SESCO,II.1.1,La Rioja,AR-F,annual,2010,gas oil combustion consumption by freight transport,0.5418,TJ,CH4,3.9,kg/TJ,2.1130199999999997,kg -d3a3ea1f-316c-37e0-b863-59b76f8421a3,SESCO,II.1.1,La Rioja,AR-F,annual,2010,gas oil combustion consumption by freight transport,0.5418,TJ,N2O,3.9,kg/TJ,2.1130199999999997,kg -86c55a1d-a33f-3362-85cc-8bf78381d6bf,SESCO,II.1.1,Mendoza,AR-M,annual,2010,gas oil combustion consumption by freight transport,7.0434,TJ,CO2,74100.0,kg/TJ,521915.94,kg -eb78a874-6c73-3c4f-8b66-a5c2aa656ef5,SESCO,II.1.1,Mendoza,AR-M,annual,2010,gas oil combustion consumption by freight transport,7.0434,TJ,CH4,3.9,kg/TJ,27.46926,kg -eb78a874-6c73-3c4f-8b66-a5c2aa656ef5,SESCO,II.1.1,Mendoza,AR-M,annual,2010,gas oil combustion consumption by freight transport,7.0434,TJ,N2O,3.9,kg/TJ,27.46926,kg -84dee5fa-056a-37fe-8b95-4ce2cd9c2738,SESCO,II.1.1,Misiones,AR-N,annual,2010,gas oil combustion consumption by freight transport,0.68628,TJ,CO2,74100.0,kg/TJ,50853.348,kg -9dcdd8b7-4f24-3db8-954a-386b0e69ccde,SESCO,II.1.1,Misiones,AR-N,annual,2010,gas oil combustion consumption by freight transport,0.68628,TJ,CH4,3.9,kg/TJ,2.676492,kg -9dcdd8b7-4f24-3db8-954a-386b0e69ccde,SESCO,II.1.1,Misiones,AR-N,annual,2010,gas oil combustion consumption by freight transport,0.68628,TJ,N2O,3.9,kg/TJ,2.676492,kg -30678c7e-e8b9-3284-852c-acd7d8a20a4d,SESCO,II.1.1,Neuquén,AR-Q,annual,2010,gas oil combustion consumption by freight transport,3.72036,TJ,CO2,74100.0,kg/TJ,275678.676,kg -2e1af95c-9e58-364a-bf9b-b17a305f9cc3,SESCO,II.1.1,Neuquén,AR-Q,annual,2010,gas oil combustion consumption by freight transport,3.72036,TJ,CH4,3.9,kg/TJ,14.509404,kg -2e1af95c-9e58-364a-bf9b-b17a305f9cc3,SESCO,II.1.1,Neuquén,AR-Q,annual,2010,gas oil combustion consumption by freight transport,3.72036,TJ,N2O,3.9,kg/TJ,14.509404,kg -46457e9e-2000-3a82-895e-ddd757c38ea7,SESCO,II.1.1,Rio Negro,AR-R,annual,2010,gas oil combustion consumption by freight transport,1.84212,TJ,CO2,74100.0,kg/TJ,136501.092,kg -8e025840-4fa4-3520-a3fb-106dad4458e4,SESCO,II.1.1,Rio Negro,AR-R,annual,2010,gas oil combustion consumption by freight transport,1.84212,TJ,CH4,3.9,kg/TJ,7.184267999999999,kg -8e025840-4fa4-3520-a3fb-106dad4458e4,SESCO,II.1.1,Rio Negro,AR-R,annual,2010,gas oil combustion consumption by freight transport,1.84212,TJ,N2O,3.9,kg/TJ,7.184267999999999,kg -f19d56fc-14b5-3c84-8640-1b00653bd5ea,SESCO,II.1.1,Salta,AR-A,annual,2010,gas oil combustion consumption by freight transport,3.17856,TJ,CO2,74100.0,kg/TJ,235531.296,kg -62b3fdf2-5fdd-30b3-a57a-5da5a1793d89,SESCO,II.1.1,Salta,AR-A,annual,2010,gas oil combustion consumption by freight transport,3.17856,TJ,CH4,3.9,kg/TJ,12.396384,kg -62b3fdf2-5fdd-30b3-a57a-5da5a1793d89,SESCO,II.1.1,Salta,AR-A,annual,2010,gas oil combustion consumption by freight transport,3.17856,TJ,N2O,3.9,kg/TJ,12.396384,kg -b2e6cbf0-6c42-3a71-a4e6-b9690683f59b,SESCO,II.1.1,San Juan,AR-J,annual,2010,gas oil combustion consumption by freight transport,0.93912,TJ,CO2,74100.0,kg/TJ,69588.792,kg -38b45504-0529-318a-91e1-889bcbd5ecd8,SESCO,II.1.1,San Juan,AR-J,annual,2010,gas oil combustion consumption by freight transport,0.93912,TJ,CH4,3.9,kg/TJ,3.662568,kg -38b45504-0529-318a-91e1-889bcbd5ecd8,SESCO,II.1.1,San Juan,AR-J,annual,2010,gas oil combustion consumption by freight transport,0.93912,TJ,N2O,3.9,kg/TJ,3.662568,kg -bb2c759c-61d0-39f3-b514-310c2328e749,SESCO,II.1.1,San Luis,AR-D,annual,2010,gas oil combustion consumption by freight transport,1.19196,TJ,CO2,74100.0,kg/TJ,88324.23599999999,kg -993547b1-b733-3d55-937b-c1ae654e5a5c,SESCO,II.1.1,San Luis,AR-D,annual,2010,gas oil combustion consumption by freight transport,1.19196,TJ,CH4,3.9,kg/TJ,4.648643999999999,kg -993547b1-b733-3d55-937b-c1ae654e5a5c,SESCO,II.1.1,San Luis,AR-D,annual,2010,gas oil combustion consumption by freight transport,1.19196,TJ,N2O,3.9,kg/TJ,4.648643999999999,kg -f6405d10-10ce-3ba4-9536-44e8606ef4f2,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2010,gas oil combustion consumption by freight transport,0.7223999999999999,TJ,CO2,74100.0,kg/TJ,53529.84,kg -256100b3-07ab-3776-9029-c1bdaeecd2e9,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2010,gas oil combustion consumption by freight transport,0.7223999999999999,TJ,CH4,3.9,kg/TJ,2.81736,kg -256100b3-07ab-3776-9029-c1bdaeecd2e9,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2010,gas oil combustion consumption by freight transport,0.7223999999999999,TJ,N2O,3.9,kg/TJ,2.81736,kg -5d801c16-627d-3587-bf46-18b2008b2800,SESCO,II.1.1,Santa Fe,AR-S,annual,2010,gas oil combustion consumption by freight transport,20.98572,TJ,CO2,74100.0,kg/TJ,1555041.852,kg -5a435e98-dc67-316d-ae66-5ad0e217323f,SESCO,II.1.1,Santa Fe,AR-S,annual,2010,gas oil combustion consumption by freight transport,20.98572,TJ,CH4,3.9,kg/TJ,81.844308,kg -5a435e98-dc67-316d-ae66-5ad0e217323f,SESCO,II.1.1,Santa Fe,AR-S,annual,2010,gas oil combustion consumption by freight transport,20.98572,TJ,N2O,3.9,kg/TJ,81.844308,kg -b1fc00f1-33b0-3715-8698-8dce4188247a,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2010,gas oil combustion consumption by freight transport,1.33644,TJ,CO2,74100.0,kg/TJ,99030.20400000001,kg -31efbfc1-c180-3ab5-8688-dcc070c9aa9e,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2010,gas oil combustion consumption by freight transport,1.33644,TJ,CH4,3.9,kg/TJ,5.212116,kg -31efbfc1-c180-3ab5-8688-dcc070c9aa9e,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2010,gas oil combustion consumption by freight transport,1.33644,TJ,N2O,3.9,kg/TJ,5.212116,kg -90482549-7bba-304d-8207-5715fc912b3a,SESCO,II.1.1,Tucuman,AR-T,annual,2010,gas oil combustion consumption by freight transport,1.6254,TJ,CO2,74100.0,kg/TJ,120442.14,kg -055abed5-5f2a-35cd-bb88-711d97a9daa3,SESCO,II.1.1,Tucuman,AR-T,annual,2010,gas oil combustion consumption by freight transport,1.6254,TJ,CH4,3.9,kg/TJ,6.33906,kg -055abed5-5f2a-35cd-bb88-711d97a9daa3,SESCO,II.1.1,Tucuman,AR-T,annual,2010,gas oil combustion consumption by freight transport,1.6254,TJ,N2O,3.9,kg/TJ,6.33906,kg -91f9c7cd-5773-3730-abc7-6d535027698f,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,jet kerosene combustion consumption by freight transport,0.62906,TJ,CO2,71500.0,kg/TJ,44977.78999999999,kg -a166714a-d954-3d9e-87f2-6ca9ac8a9f35,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,jet kerosene combustion consumption by freight transport,0.62906,TJ,CH4,0.5,kg/TJ,0.31453,kg -c51bb30d-95d8-34fd-9f32-a368c69b6bd9,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,jet kerosene combustion consumption by freight transport,0.62906,TJ,N2O,2.0,kg/TJ,1.25812,kg -706b3455-dc4d-3e10-b83e-06ef54db7ff0,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,gas oil combustion consumption by public passenger transport,12384.60888,TJ,CO2,74100.0,kg/TJ,917699518.008,kg -51c5f5be-d21e-3854-a82d-cb85e0afb95d,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,gas oil combustion consumption by public passenger transport,12384.60888,TJ,CH4,3.9,kg/TJ,48299.974632,kg -51c5f5be-d21e-3854-a82d-cb85e0afb95d,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,gas oil combustion consumption by public passenger transport,12384.60888,TJ,N2O,3.9,kg/TJ,48299.974632,kg -34c45bff-1a1a-36ba-b9d6-379b5a8b0e8b,SESCO,II.1.1,Capital Federal,AR-C,annual,2010,gas oil combustion consumption by public passenger transport,3183.50844,TJ,CO2,74100.0,kg/TJ,235897975.404,kg -8b40346c-1030-32b3-be9e-7840316b53b9,SESCO,II.1.1,Capital Federal,AR-C,annual,2010,gas oil combustion consumption by public passenger transport,3183.50844,TJ,CH4,3.9,kg/TJ,12415.682916,kg -8b40346c-1030-32b3-be9e-7840316b53b9,SESCO,II.1.1,Capital Federal,AR-C,annual,2010,gas oil combustion consumption by public passenger transport,3183.50844,TJ,N2O,3.9,kg/TJ,12415.682916,kg -d2f939f5-8f44-3465-94c8-10fd7e3d65b2,SESCO,II.1.1,Catamarca,AR-K,annual,2010,gas oil combustion consumption by public passenger transport,151.5234,TJ,CO2,74100.0,kg/TJ,11227883.940000001,kg -3e73f96a-d0c8-3e5a-8ed7-21df4defc32d,SESCO,II.1.1,Catamarca,AR-K,annual,2010,gas oil combustion consumption by public passenger transport,151.5234,TJ,CH4,3.9,kg/TJ,590.94126,kg -3e73f96a-d0c8-3e5a-8ed7-21df4defc32d,SESCO,II.1.1,Catamarca,AR-K,annual,2010,gas oil combustion consumption by public passenger transport,151.5234,TJ,N2O,3.9,kg/TJ,590.94126,kg -38464fee-c857-3f61-8c65-a37bd9051892,SESCO,II.1.1,Chaco,AR-H,annual,2010,gas oil combustion consumption by public passenger transport,582.2182799999999,TJ,CO2,74100.0,kg/TJ,43142374.54799999,kg -505905e1-223c-3882-8a1a-f807a23cd593,SESCO,II.1.1,Chaco,AR-H,annual,2010,gas oil combustion consumption by public passenger transport,582.2182799999999,TJ,CH4,3.9,kg/TJ,2270.6512919999996,kg -505905e1-223c-3882-8a1a-f807a23cd593,SESCO,II.1.1,Chaco,AR-H,annual,2010,gas oil combustion consumption by public passenger transport,582.2182799999999,TJ,N2O,3.9,kg/TJ,2270.6512919999996,kg -d9acd73b-12d3-30fa-8763-005fe7df913a,SESCO,II.1.1,Chubut,AR-U,annual,2010,gas oil combustion consumption by public passenger transport,265.3014,TJ,CO2,74100.0,kg/TJ,19658833.74,kg -d7252140-7f27-3c12-94ad-9d3502dcf084,SESCO,II.1.1,Chubut,AR-U,annual,2010,gas oil combustion consumption by public passenger transport,265.3014,TJ,CH4,3.9,kg/TJ,1034.67546,kg -d7252140-7f27-3c12-94ad-9d3502dcf084,SESCO,II.1.1,Chubut,AR-U,annual,2010,gas oil combustion consumption by public passenger transport,265.3014,TJ,N2O,3.9,kg/TJ,1034.67546,kg -7d743c41-ae3e-3a0e-adfb-51bfccf49bee,SESCO,II.1.1,Corrientes,AR-W,annual,2010,gas oil combustion consumption by public passenger transport,573.36888,TJ,CO2,74100.0,kg/TJ,42486634.008,kg -4d11dd15-8138-3d7f-9acd-4c0f3b06235a,SESCO,II.1.1,Corrientes,AR-W,annual,2010,gas oil combustion consumption by public passenger transport,573.36888,TJ,CH4,3.9,kg/TJ,2236.1386319999997,kg -4d11dd15-8138-3d7f-9acd-4c0f3b06235a,SESCO,II.1.1,Corrientes,AR-W,annual,2010,gas oil combustion consumption by public passenger transport,573.36888,TJ,N2O,3.9,kg/TJ,2236.1386319999997,kg -747bfd7a-e1fe-3c69-96c2-d06a1c7459be,SESCO,II.1.1,Córdoba,AR-X,annual,2010,gas oil combustion consumption by public passenger transport,2941.50444,TJ,CO2,74100.0,kg/TJ,217965479.004,kg -4206b7ff-df79-366e-8515-3b5dcd7146bb,SESCO,II.1.1,Córdoba,AR-X,annual,2010,gas oil combustion consumption by public passenger transport,2941.50444,TJ,CH4,3.9,kg/TJ,11471.867316,kg -4206b7ff-df79-366e-8515-3b5dcd7146bb,SESCO,II.1.1,Córdoba,AR-X,annual,2010,gas oil combustion consumption by public passenger transport,2941.50444,TJ,N2O,3.9,kg/TJ,11471.867316,kg -6498974c-6e83-358c-9015-f3cf30522f22,SESCO,II.1.1,Entre Rios,AR-E,annual,2010,gas oil combustion consumption by public passenger transport,465.08112,TJ,CO2,74100.0,kg/TJ,34462510.992,kg -33e19798-3ba8-32bf-9f92-f6e0bb8f0b35,SESCO,II.1.1,Entre Rios,AR-E,annual,2010,gas oil combustion consumption by public passenger transport,465.08112,TJ,CH4,3.9,kg/TJ,1813.816368,kg -33e19798-3ba8-32bf-9f92-f6e0bb8f0b35,SESCO,II.1.1,Entre Rios,AR-E,annual,2010,gas oil combustion consumption by public passenger transport,465.08112,TJ,N2O,3.9,kg/TJ,1813.816368,kg -ff085f77-7713-3862-89b6-e17efa9b7c73,SESCO,II.1.1,Formosa,AR-P,annual,2010,gas oil combustion consumption by public passenger transport,83.03988,TJ,CO2,74100.0,kg/TJ,6153255.108,kg -34f2d5e2-a692-3732-8ec8-6128363a519b,SESCO,II.1.1,Formosa,AR-P,annual,2010,gas oil combustion consumption by public passenger transport,83.03988,TJ,CH4,3.9,kg/TJ,323.855532,kg -34f2d5e2-a692-3732-8ec8-6128363a519b,SESCO,II.1.1,Formosa,AR-P,annual,2010,gas oil combustion consumption by public passenger transport,83.03988,TJ,N2O,3.9,kg/TJ,323.855532,kg -a8e196a7-079b-3070-8576-34dd1e440994,SESCO,II.1.1,Jujuy,AR-Y,annual,2010,gas oil combustion consumption by public passenger transport,696.53808,TJ,CO2,74100.0,kg/TJ,51613471.728,kg -cbe7c8c0-aa74-3738-a0cf-49efd5a34c08,SESCO,II.1.1,Jujuy,AR-Y,annual,2010,gas oil combustion consumption by public passenger transport,696.53808,TJ,CH4,3.9,kg/TJ,2716.498512,kg -cbe7c8c0-aa74-3738-a0cf-49efd5a34c08,SESCO,II.1.1,Jujuy,AR-Y,annual,2010,gas oil combustion consumption by public passenger transport,696.53808,TJ,N2O,3.9,kg/TJ,2716.498512,kg -c8bad5c9-da5f-35f4-8855-7e3d99a3bfa4,SESCO,II.1.1,La Pampa,AR-L,annual,2010,gas oil combustion consumption by public passenger transport,148.85052,TJ,CO2,74100.0,kg/TJ,11029823.532,kg -c62da93c-3b11-3466-ab28-5050a2f63444,SESCO,II.1.1,La Pampa,AR-L,annual,2010,gas oil combustion consumption by public passenger transport,148.85052,TJ,CH4,3.9,kg/TJ,580.517028,kg -c62da93c-3b11-3466-ab28-5050a2f63444,SESCO,II.1.1,La Pampa,AR-L,annual,2010,gas oil combustion consumption by public passenger transport,148.85052,TJ,N2O,3.9,kg/TJ,580.517028,kg -4501e272-159f-301b-aa31-641960a2051d,SESCO,II.1.1,La Rioja,AR-F,annual,2010,gas oil combustion consumption by public passenger transport,162.32328,TJ,CO2,74100.0,kg/TJ,12028155.048,kg -8a244898-1014-3e5f-8936-0ffd6840ced6,SESCO,II.1.1,La Rioja,AR-F,annual,2010,gas oil combustion consumption by public passenger transport,162.32328,TJ,CH4,3.9,kg/TJ,633.060792,kg -8a244898-1014-3e5f-8936-0ffd6840ced6,SESCO,II.1.1,La Rioja,AR-F,annual,2010,gas oil combustion consumption by public passenger transport,162.32328,TJ,N2O,3.9,kg/TJ,633.060792,kg -ec5b3511-a55a-343a-acbc-d7c24f28daa9,SESCO,II.1.1,Mendoza,AR-M,annual,2010,gas oil combustion consumption by public passenger transport,2112.87552,TJ,CO2,74100.0,kg/TJ,156564076.032,kg -7597e62a-2083-32a2-ab8c-447f0fd4ac0a,SESCO,II.1.1,Mendoza,AR-M,annual,2010,gas oil combustion consumption by public passenger transport,2112.87552,TJ,CH4,3.9,kg/TJ,8240.214528,kg -7597e62a-2083-32a2-ab8c-447f0fd4ac0a,SESCO,II.1.1,Mendoza,AR-M,annual,2010,gas oil combustion consumption by public passenger transport,2112.87552,TJ,N2O,3.9,kg/TJ,8240.214528,kg -cd881edc-f507-3b05-a0c4-2b2cf086c39b,SESCO,II.1.1,Misiones,AR-N,annual,2010,gas oil combustion consumption by public passenger transport,828.88176,TJ,CO2,74100.0,kg/TJ,61420138.416,kg -ed584f40-ee99-3080-ab98-42edaaad38e3,SESCO,II.1.1,Misiones,AR-N,annual,2010,gas oil combustion consumption by public passenger transport,828.88176,TJ,CH4,3.9,kg/TJ,3232.638864,kg -ed584f40-ee99-3080-ab98-42edaaad38e3,SESCO,II.1.1,Misiones,AR-N,annual,2010,gas oil combustion consumption by public passenger transport,828.88176,TJ,N2O,3.9,kg/TJ,3232.638864,kg -c78c47a0-5b66-3ecb-b49f-d66b47abcfce,SESCO,II.1.1,Neuquén,AR-Q,annual,2010,gas oil combustion consumption by public passenger transport,472.88304,TJ,CO2,74100.0,kg/TJ,35040633.264,kg -3d5a2b7c-cdc0-352c-9511-43fceb25b784,SESCO,II.1.1,Neuquén,AR-Q,annual,2010,gas oil combustion consumption by public passenger transport,472.88304,TJ,CH4,3.9,kg/TJ,1844.2438559999998,kg -3d5a2b7c-cdc0-352c-9511-43fceb25b784,SESCO,II.1.1,Neuquén,AR-Q,annual,2010,gas oil combustion consumption by public passenger transport,472.88304,TJ,N2O,3.9,kg/TJ,1844.2438559999998,kg -66bb1808-e4b5-38f4-98ed-1e1c1efd7093,SESCO,II.1.1,Rio Negro,AR-R,annual,2010,gas oil combustion consumption by public passenger transport,354.44556,TJ,CO2,74100.0,kg/TJ,26264415.996,kg -c7f002a9-1605-3cdf-89e9-f01e71c04676,SESCO,II.1.1,Rio Negro,AR-R,annual,2010,gas oil combustion consumption by public passenger transport,354.44556,TJ,CH4,3.9,kg/TJ,1382.337684,kg -c7f002a9-1605-3cdf-89e9-f01e71c04676,SESCO,II.1.1,Rio Negro,AR-R,annual,2010,gas oil combustion consumption by public passenger transport,354.44556,TJ,N2O,3.9,kg/TJ,1382.337684,kg -90fcb19a-958c-3609-a540-be10eb7b3681,SESCO,II.1.1,Salta,AR-A,annual,2010,gas oil combustion consumption by public passenger transport,1047.62448,TJ,CO2,74100.0,kg/TJ,77628973.968,kg -b3055f31-5fc1-3661-987c-835d93751aa8,SESCO,II.1.1,Salta,AR-A,annual,2010,gas oil combustion consumption by public passenger transport,1047.62448,TJ,CH4,3.9,kg/TJ,4085.735472,kg -b3055f31-5fc1-3661-987c-835d93751aa8,SESCO,II.1.1,Salta,AR-A,annual,2010,gas oil combustion consumption by public passenger transport,1047.62448,TJ,N2O,3.9,kg/TJ,4085.735472,kg -b6d130fd-18cc-3aa4-832f-5a9d1521c950,SESCO,II.1.1,San Juan,AR-J,annual,2010,gas oil combustion consumption by public passenger transport,558.63192,TJ,CO2,74100.0,kg/TJ,41394625.272,kg -4a6d0c7a-9272-3986-b624-ae6b595ca135,SESCO,II.1.1,San Juan,AR-J,annual,2010,gas oil combustion consumption by public passenger transport,558.63192,TJ,CH4,3.9,kg/TJ,2178.664488,kg -4a6d0c7a-9272-3986-b624-ae6b595ca135,SESCO,II.1.1,San Juan,AR-J,annual,2010,gas oil combustion consumption by public passenger transport,558.63192,TJ,N2O,3.9,kg/TJ,2178.664488,kg -0b161e61-ffb3-3326-a11d-e2f9bc0013f4,SESCO,II.1.1,San Luis,AR-D,annual,2010,gas oil combustion consumption by public passenger transport,184.60932,TJ,CO2,74100.0,kg/TJ,13679550.612,kg -34509a13-1d88-3ee6-a056-e23604f1ef93,SESCO,II.1.1,San Luis,AR-D,annual,2010,gas oil combustion consumption by public passenger transport,184.60932,TJ,CH4,3.9,kg/TJ,719.9763479999999,kg -34509a13-1d88-3ee6-a056-e23604f1ef93,SESCO,II.1.1,San Luis,AR-D,annual,2010,gas oil combustion consumption by public passenger transport,184.60932,TJ,N2O,3.9,kg/TJ,719.9763479999999,kg -5388d8c2-53b5-3b02-8e37-9853a88e018b,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2010,gas oil combustion consumption by public passenger transport,143.7576,TJ,CO2,74100.0,kg/TJ,10652438.16,kg -bba13126-64dc-368e-a7ca-ba13b1b08163,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2010,gas oil combustion consumption by public passenger transport,143.7576,TJ,CH4,3.9,kg/TJ,560.65464,kg -bba13126-64dc-368e-a7ca-ba13b1b08163,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2010,gas oil combustion consumption by public passenger transport,143.7576,TJ,N2O,3.9,kg/TJ,560.65464,kg -5e5353ae-b292-3728-88c2-f6ac1f011377,SESCO,II.1.1,Santa Fe,AR-S,annual,2010,gas oil combustion consumption by public passenger transport,1572.80928,TJ,CO2,74100.0,kg/TJ,116545167.648,kg -d0685512-8017-3349-9adf-ae9fcaa77a45,SESCO,II.1.1,Santa Fe,AR-S,annual,2010,gas oil combustion consumption by public passenger transport,1572.80928,TJ,CH4,3.9,kg/TJ,6133.956192,kg -d0685512-8017-3349-9adf-ae9fcaa77a45,SESCO,II.1.1,Santa Fe,AR-S,annual,2010,gas oil combustion consumption by public passenger transport,1572.80928,TJ,N2O,3.9,kg/TJ,6133.956192,kg -d6bc1cb2-e143-393d-9b81-f91ed66a5960,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2010,gas oil combustion consumption by public passenger transport,430.11696,TJ,CO2,74100.0,kg/TJ,31871666.736,kg -69a96136-9245-37a7-a890-7fcc72ee1ede,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2010,gas oil combustion consumption by public passenger transport,430.11696,TJ,CH4,3.9,kg/TJ,1677.456144,kg -69a96136-9245-37a7-a890-7fcc72ee1ede,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2010,gas oil combustion consumption by public passenger transport,430.11696,TJ,N2O,3.9,kg/TJ,1677.456144,kg -a3757712-3e00-314b-9a18-6bf591454581,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2010,gas oil combustion consumption by public passenger transport,31.53276,TJ,CO2,74100.0,kg/TJ,2336577.516,kg -61c44f4f-cf1d-363e-bc18-fc76f82036b4,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2010,gas oil combustion consumption by public passenger transport,31.53276,TJ,CH4,3.9,kg/TJ,122.977764,kg -61c44f4f-cf1d-363e-bc18-fc76f82036b4,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2010,gas oil combustion consumption by public passenger transport,31.53276,TJ,N2O,3.9,kg/TJ,122.977764,kg -bb504b83-4673-3cd6-a928-e90c32082741,SESCO,II.1.1,Tucuman,AR-T,annual,2010,gas oil combustion consumption by public passenger transport,1267.9926,TJ,CO2,74100.0,kg/TJ,93958251.66,kg -9bb0ef38-fe48-33e8-a854-58c202a4729c,SESCO,II.1.1,Tucuman,AR-T,annual,2010,gas oil combustion consumption by public passenger transport,1267.9926,TJ,CH4,3.9,kg/TJ,4945.17114,kg -9bb0ef38-fe48-33e8-a854-58c202a4729c,SESCO,II.1.1,Tucuman,AR-T,annual,2010,gas oil combustion consumption by public passenger transport,1267.9926,TJ,N2O,3.9,kg/TJ,4945.17114,kg -d0c90f39-cbcc-3e6d-9ba9-24d4410f9d33,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,gas oil combustion consumption by public passenger transport,3.53976,TJ,CO2,74100.0,kg/TJ,262296.21599999996,kg -02e6781a-926c-3534-a05c-0b82cff0ac1c,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,gas oil combustion consumption by public passenger transport,3.53976,TJ,CH4,3.9,kg/TJ,13.805063999999998,kg -02e6781a-926c-3534-a05c-0b82cff0ac1c,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,gas oil combustion consumption by public passenger transport,3.53976,TJ,N2O,3.9,kg/TJ,13.805063999999998,kg -6d9e1a49-7714-3976-bba5-11e784f584e1,SESCO,II.1.1,Capital Federal,AR-C,annual,2010,gas oil combustion consumption by public passenger transport,0.303408,TJ,CO2,74100.0,kg/TJ,22482.5328,kg -b8275c77-01fa-3a3d-9958-db772566c335,SESCO,II.1.1,Capital Federal,AR-C,annual,2010,gas oil combustion consumption by public passenger transport,0.303408,TJ,CH4,3.9,kg/TJ,1.1832912,kg -b8275c77-01fa-3a3d-9958-db772566c335,SESCO,II.1.1,Capital Federal,AR-C,annual,2010,gas oil combustion consumption by public passenger transport,0.303408,TJ,N2O,3.9,kg/TJ,1.1832912,kg -b557c76b-2785-36c8-a9b7-4ccc375dc013,SESCO,II.1.1,Chubut,AR-U,annual,2010,gas oil combustion consumption by public passenger transport,0.335916,TJ,CO2,74100.0,kg/TJ,24891.3756,kg -cf4673cf-9110-3586-9722-77e50d7887e1,SESCO,II.1.1,Chubut,AR-U,annual,2010,gas oil combustion consumption by public passenger transport,0.335916,TJ,CH4,3.9,kg/TJ,1.3100724,kg -cf4673cf-9110-3586-9722-77e50d7887e1,SESCO,II.1.1,Chubut,AR-U,annual,2010,gas oil combustion consumption by public passenger transport,0.335916,TJ,N2O,3.9,kg/TJ,1.3100724,kg -c5e118e1-115a-3af4-b7e8-aeef6af1e466,SESCO,II.1.1,Corrientes,AR-W,annual,2010,gas oil combustion consumption by public passenger transport,0.03612,TJ,CO2,74100.0,kg/TJ,2676.4919999999997,kg -fe070851-74ff-31b5-8b70-6122da117dd5,SESCO,II.1.1,Corrientes,AR-W,annual,2010,gas oil combustion consumption by public passenger transport,0.03612,TJ,CH4,3.9,kg/TJ,0.140868,kg -fe070851-74ff-31b5-8b70-6122da117dd5,SESCO,II.1.1,Corrientes,AR-W,annual,2010,gas oil combustion consumption by public passenger transport,0.03612,TJ,N2O,3.9,kg/TJ,0.140868,kg -ccd5f9db-8161-346d-9201-c6059cc7752e,SESCO,II.1.1,Córdoba,AR-X,annual,2010,gas oil combustion consumption by public passenger transport,0.43344,TJ,CO2,74100.0,kg/TJ,32117.904,kg -554ea7f7-14ed-35d7-b80d-798498353c6f,SESCO,II.1.1,Córdoba,AR-X,annual,2010,gas oil combustion consumption by public passenger transport,0.43344,TJ,CH4,3.9,kg/TJ,1.690416,kg -554ea7f7-14ed-35d7-b80d-798498353c6f,SESCO,II.1.1,Córdoba,AR-X,annual,2010,gas oil combustion consumption by public passenger transport,0.43344,TJ,N2O,3.9,kg/TJ,1.690416,kg -8a2ab565-8480-33cc-94b5-deeec94bbeed,SESCO,II.1.1,Entre Rios,AR-E,annual,2010,gas oil combustion consumption by public passenger transport,0.03612,TJ,CO2,74100.0,kg/TJ,2676.4919999999997,kg -30287ab8-554a-3903-93ab-b6be9fc95809,SESCO,II.1.1,Entre Rios,AR-E,annual,2010,gas oil combustion consumption by public passenger transport,0.03612,TJ,CH4,3.9,kg/TJ,0.140868,kg -30287ab8-554a-3903-93ab-b6be9fc95809,SESCO,II.1.1,Entre Rios,AR-E,annual,2010,gas oil combustion consumption by public passenger transport,0.03612,TJ,N2O,3.9,kg/TJ,0.140868,kg -f3419e1c-f85d-38f1-a9c1-a6ef04a2cdda,SESCO,II.1.1,Jujuy,AR-Y,annual,2010,gas oil combustion consumption by public passenger transport,0.014448,TJ,CO2,74100.0,kg/TJ,1070.5968,kg -4807e9e3-685e-3ced-89a3-4dc5a8ad2790,SESCO,II.1.1,Jujuy,AR-Y,annual,2010,gas oil combustion consumption by public passenger transport,0.014448,TJ,CH4,3.9,kg/TJ,0.0563472,kg -4807e9e3-685e-3ced-89a3-4dc5a8ad2790,SESCO,II.1.1,Jujuy,AR-Y,annual,2010,gas oil combustion consumption by public passenger transport,0.014448,TJ,N2O,3.9,kg/TJ,0.0563472,kg -ec818dca-537f-32ae-9de1-93a24811edbd,SESCO,II.1.1,La Pampa,AR-L,annual,2010,gas oil combustion consumption by public passenger transport,0.122808,TJ,CO2,74100.0,kg/TJ,9100.0728,kg -c621e44a-5f70-3196-8d8a-94d1a32a1476,SESCO,II.1.1,La Pampa,AR-L,annual,2010,gas oil combustion consumption by public passenger transport,0.122808,TJ,CH4,3.9,kg/TJ,0.47895119999999997,kg -c621e44a-5f70-3196-8d8a-94d1a32a1476,SESCO,II.1.1,La Pampa,AR-L,annual,2010,gas oil combustion consumption by public passenger transport,0.122808,TJ,N2O,3.9,kg/TJ,0.47895119999999997,kg -4aaee44c-7ca3-3f0b-af59-988d3c8d95ba,SESCO,II.1.1,Mendoza,AR-M,annual,2010,gas oil combustion consumption by public passenger transport,0.34314,TJ,CO2,74100.0,kg/TJ,25426.674,kg -f8084e86-983e-3396-ae22-f989e06ffcdf,SESCO,II.1.1,Mendoza,AR-M,annual,2010,gas oil combustion consumption by public passenger transport,0.34314,TJ,CH4,3.9,kg/TJ,1.338246,kg -f8084e86-983e-3396-ae22-f989e06ffcdf,SESCO,II.1.1,Mendoza,AR-M,annual,2010,gas oil combustion consumption by public passenger transport,0.34314,TJ,N2O,3.9,kg/TJ,1.338246,kg -b6be1176-369f-37e3-ba74-545b16711859,SESCO,II.1.1,Neuquén,AR-Q,annual,2010,gas oil combustion consumption by public passenger transport,0.07224,TJ,CO2,74100.0,kg/TJ,5352.9839999999995,kg -70557f9e-bcad-3fd5-86fd-f132e3468700,SESCO,II.1.1,Neuquén,AR-Q,annual,2010,gas oil combustion consumption by public passenger transport,0.07224,TJ,CH4,3.9,kg/TJ,0.281736,kg -70557f9e-bcad-3fd5-86fd-f132e3468700,SESCO,II.1.1,Neuquén,AR-Q,annual,2010,gas oil combustion consumption by public passenger transport,0.07224,TJ,N2O,3.9,kg/TJ,0.281736,kg -7e26b0ad-292a-3571-86d4-2e0e6b249243,SESCO,II.1.1,Rio Negro,AR-R,annual,2010,gas oil combustion consumption by public passenger transport,0.375648,TJ,CO2,74100.0,kg/TJ,27835.516799999998,kg -2d1e8184-4b4c-3234-bdaf-143549826526,SESCO,II.1.1,Rio Negro,AR-R,annual,2010,gas oil combustion consumption by public passenger transport,0.375648,TJ,CH4,3.9,kg/TJ,1.4650272,kg -2d1e8184-4b4c-3234-bdaf-143549826526,SESCO,II.1.1,Rio Negro,AR-R,annual,2010,gas oil combustion consumption by public passenger transport,0.375648,TJ,N2O,3.9,kg/TJ,1.4650272,kg -3600f67b-a0b2-345b-972d-249534285155,SESCO,II.1.1,San Luis,AR-D,annual,2010,gas oil combustion consumption by public passenger transport,0.10836,TJ,CO2,74100.0,kg/TJ,8029.476,kg -f86ab7df-63aa-30ba-b5cf-0c1359d6935a,SESCO,II.1.1,San Luis,AR-D,annual,2010,gas oil combustion consumption by public passenger transport,0.10836,TJ,CH4,3.9,kg/TJ,0.422604,kg -f86ab7df-63aa-30ba-b5cf-0c1359d6935a,SESCO,II.1.1,San Luis,AR-D,annual,2010,gas oil combustion consumption by public passenger transport,0.10836,TJ,N2O,3.9,kg/TJ,0.422604,kg -3517372f-6831-3776-b725-c80bf84d945f,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2010,gas oil combustion consumption by public passenger transport,0.050567999999999995,TJ,CO2,74100.0,kg/TJ,3747.0887999999995,kg -596a3d53-1414-34de-a1f8-58e148e99f0e,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2010,gas oil combustion consumption by public passenger transport,0.050567999999999995,TJ,CH4,3.9,kg/TJ,0.19721519999999998,kg -596a3d53-1414-34de-a1f8-58e148e99f0e,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2010,gas oil combustion consumption by public passenger transport,0.050567999999999995,TJ,N2O,3.9,kg/TJ,0.19721519999999998,kg -944e2c7d-6f33-37c3-a03a-635baccfc51d,SESCO,II.1.1,Santa Fe,AR-S,annual,2010,gas oil combustion consumption by public passenger transport,1.19196,TJ,CO2,74100.0,kg/TJ,88324.23599999999,kg -7faa324a-5f81-3c03-94e6-64335edd3c9d,SESCO,II.1.1,Santa Fe,AR-S,annual,2010,gas oil combustion consumption by public passenger transport,1.19196,TJ,CH4,3.9,kg/TJ,4.648643999999999,kg -7faa324a-5f81-3c03-94e6-64335edd3c9d,SESCO,II.1.1,Santa Fe,AR-S,annual,2010,gas oil combustion consumption by public passenger transport,1.19196,TJ,N2O,3.9,kg/TJ,4.648643999999999,kg -41b1152d-d09c-36b8-8bce-5e1bf854b324,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2010,gas oil combustion consumption by public passenger transport,0.010836,TJ,CO2,74100.0,kg/TJ,802.9476,kg -8d2530fc-20ef-3749-a9d9-4e76a2ef4433,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2010,gas oil combustion consumption by public passenger transport,0.010836,TJ,CH4,3.9,kg/TJ,0.0422604,kg -8d2530fc-20ef-3749-a9d9-4e76a2ef4433,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2010,gas oil combustion consumption by public passenger transport,0.010836,TJ,N2O,3.9,kg/TJ,0.0422604,kg -e7ce0cee-5563-370d-859b-b302157397c4,SESCO,II.1.1,Capital Federal,AR-C,annual,2011,gas oil combustion consumption by to the public,47.3172,TJ,CO2,74100.0,kg/TJ,3506204.52,kg -f1ce401f-0f32-34c4-b552-28829a83bdac,SESCO,II.1.1,Capital Federal,AR-C,annual,2011,gas oil combustion consumption by to the public,47.3172,TJ,CH4,3.9,kg/TJ,184.53708,kg -f1ce401f-0f32-34c4-b552-28829a83bdac,SESCO,II.1.1,Capital Federal,AR-C,annual,2011,gas oil combustion consumption by to the public,47.3172,TJ,N2O,3.9,kg/TJ,184.53708,kg -a2571ea6-1dff-3643-91d1-9538995a1111,SESCO,II.1.1,Buenos Aires,AR-B,annual,2011,gas oil combustion consumption by public passenger transport,2677.97292,TJ,CO2,74100.0,kg/TJ,198437793.372,kg -f3eb7562-439d-34f7-b0b9-609a05235829,SESCO,II.1.1,Buenos Aires,AR-B,annual,2011,gas oil combustion consumption by public passenger transport,2677.97292,TJ,CH4,3.9,kg/TJ,10444.094388,kg -f3eb7562-439d-34f7-b0b9-609a05235829,SESCO,II.1.1,Buenos Aires,AR-B,annual,2011,gas oil combustion consumption by public passenger transport,2677.97292,TJ,N2O,3.9,kg/TJ,10444.094388,kg -37b23eb6-c11a-3fff-9101-38b52a1ec563,SESCO,II.1.1,Capital Federal,AR-C,annual,2011,gas oil combustion consumption by public passenger transport,1084.10568,TJ,CO2,74100.0,kg/TJ,80332230.888,kg -5b8fb719-9b0c-3001-9598-f6b0c119b75d,SESCO,II.1.1,Capital Federal,AR-C,annual,2011,gas oil combustion consumption by public passenger transport,1084.10568,TJ,CH4,3.9,kg/TJ,4228.012151999999,kg -5b8fb719-9b0c-3001-9598-f6b0c119b75d,SESCO,II.1.1,Capital Federal,AR-C,annual,2011,gas oil combustion consumption by public passenger transport,1084.10568,TJ,N2O,3.9,kg/TJ,4228.012151999999,kg -52703ed0-6421-34c2-9e49-945f79c51148,SESCO,II.1.1,Córdoba,AR-X,annual,2011,gas oil combustion consumption by public passenger transport,96.36816,TJ,CO2,74100.0,kg/TJ,7140880.656,kg -07829049-8730-3447-a4eb-14f1b4d45717,SESCO,II.1.1,Córdoba,AR-X,annual,2011,gas oil combustion consumption by public passenger transport,96.36816,TJ,CH4,3.9,kg/TJ,375.835824,kg -07829049-8730-3447-a4eb-14f1b4d45717,SESCO,II.1.1,Córdoba,AR-X,annual,2011,gas oil combustion consumption by public passenger transport,96.36816,TJ,N2O,3.9,kg/TJ,375.835824,kg -a05716c3-6cfa-31e7-bd6c-c5d682fedb0a,SESCO,II.1.1,Entre Rios,AR-E,annual,2011,gas oil combustion consumption by public passenger transport,453.37824,TJ,CO2,74100.0,kg/TJ,33595327.584,kg -4d809033-74a5-3ad7-84d3-9455a387b184,SESCO,II.1.1,Entre Rios,AR-E,annual,2011,gas oil combustion consumption by public passenger transport,453.37824,TJ,CH4,3.9,kg/TJ,1768.175136,kg -4d809033-74a5-3ad7-84d3-9455a387b184,SESCO,II.1.1,Entre Rios,AR-E,annual,2011,gas oil combustion consumption by public passenger transport,453.37824,TJ,N2O,3.9,kg/TJ,1768.175136,kg -33905345-05f0-32df-a2eb-7230d0a06e65,SESCO,II.1.1,Mendoza,AR-M,annual,2011,gas oil combustion consumption by public passenger transport,177.27696,TJ,CO2,74100.0,kg/TJ,13136222.736,kg -33dd560d-174f-37c5-b9d3-7060cd543b0e,SESCO,II.1.1,Mendoza,AR-M,annual,2011,gas oil combustion consumption by public passenger transport,177.27696,TJ,CH4,3.9,kg/TJ,691.380144,kg -33dd560d-174f-37c5-b9d3-7060cd543b0e,SESCO,II.1.1,Mendoza,AR-M,annual,2011,gas oil combustion consumption by public passenger transport,177.27696,TJ,N2O,3.9,kg/TJ,691.380144,kg -60cd84ed-718e-35da-9d41-6a32b5bc42b0,SESCO,II.1.1,Misiones,AR-N,annual,2011,gas oil combustion consumption by public passenger transport,227.15868,TJ,CO2,74100.0,kg/TJ,16832458.188,kg -9ddacf94-bb2c-311b-9347-1127356a66d8,SESCO,II.1.1,Misiones,AR-N,annual,2011,gas oil combustion consumption by public passenger transport,227.15868,TJ,CH4,3.9,kg/TJ,885.918852,kg -9ddacf94-bb2c-311b-9347-1127356a66d8,SESCO,II.1.1,Misiones,AR-N,annual,2011,gas oil combustion consumption by public passenger transport,227.15868,TJ,N2O,3.9,kg/TJ,885.918852,kg -0033862a-97b9-37e0-ba77-c27d4658e352,SESCO,II.1.1,Salta,AR-A,annual,2011,gas oil combustion consumption by public passenger transport,71.8788,TJ,CO2,74100.0,kg/TJ,5326219.08,kg -2022963f-eced-3c7b-ab7a-b47f17babab1,SESCO,II.1.1,Salta,AR-A,annual,2011,gas oil combustion consumption by public passenger transport,71.8788,TJ,CH4,3.9,kg/TJ,280.32732,kg -2022963f-eced-3c7b-ab7a-b47f17babab1,SESCO,II.1.1,Salta,AR-A,annual,2011,gas oil combustion consumption by public passenger transport,71.8788,TJ,N2O,3.9,kg/TJ,280.32732,kg -6769c758-d30b-36ff-bd32-7fb879debbfb,SESCO,II.1.1,San Juan,AR-J,annual,2011,gas oil combustion consumption by public passenger transport,88.16892,TJ,CO2,74100.0,kg/TJ,6533316.972,kg -22d34b8f-1e08-3aca-a407-412942ca13df,SESCO,II.1.1,San Juan,AR-J,annual,2011,gas oil combustion consumption by public passenger transport,88.16892,TJ,CH4,3.9,kg/TJ,343.858788,kg -22d34b8f-1e08-3aca-a407-412942ca13df,SESCO,II.1.1,San Juan,AR-J,annual,2011,gas oil combustion consumption by public passenger transport,88.16892,TJ,N2O,3.9,kg/TJ,343.858788,kg -d7b1c3c7-b947-3665-a969-02abee9e429d,SESCO,II.1.1,Santa Fe,AR-S,annual,2011,gas oil combustion consumption by public passenger transport,254.4654,TJ,CO2,74100.0,kg/TJ,18855886.14,kg -9ef0e37e-8973-3803-9eca-8019d6274524,SESCO,II.1.1,Santa Fe,AR-S,annual,2011,gas oil combustion consumption by public passenger transport,254.4654,TJ,CH4,3.9,kg/TJ,992.4150599999999,kg -9ef0e37e-8973-3803-9eca-8019d6274524,SESCO,II.1.1,Santa Fe,AR-S,annual,2011,gas oil combustion consumption by public passenger transport,254.4654,TJ,N2O,3.9,kg/TJ,992.4150599999999,kg -5324cf59-b4b7-36f8-becc-42df3a731a55,SESCO,II.5.1,Santa Fe,AR-S,annual,2011,gasoline combustion consumption by agriculture machines,185.3512,TJ,CO2,69300.0,kg/TJ,12844838.16,kg -eb259dd3-70c0-313a-bda5-2abf46fcee6e,SESCO,II.5.1,Santa Fe,AR-S,annual,2011,gasoline combustion consumption by agriculture machines,185.3512,TJ,CH4,33.0,kg/TJ,6116.5896,kg -92d7cc2a-5987-3778-bde1-abb360252fa5,SESCO,II.5.1,Santa Fe,AR-S,annual,2011,gasoline combustion consumption by agriculture machines,185.3512,TJ,N2O,3.2,kg/TJ,593.1238400000001,kg -1277cc69-543a-3eb3-8977-d1385ee7e3cf,SESCO,II.5.1,Buenos Aires,AR-B,annual,2011,gas oil combustion consumption by agriculture machines,128.40840599999999,TJ,CO2,74100.0,kg/TJ,9515062.884599999,kg -f0e27281-26b8-3aed-b2df-0aee35923150,SESCO,II.5.1,Buenos Aires,AR-B,annual,2011,gas oil combustion consumption by agriculture machines,128.40840599999999,TJ,CH4,3.9,kg/TJ,500.7927833999999,kg -f0e27281-26b8-3aed-b2df-0aee35923150,SESCO,II.5.1,Buenos Aires,AR-B,annual,2011,gas oil combustion consumption by agriculture machines,128.40840599999999,TJ,N2O,3.9,kg/TJ,500.7927833999999,kg -509ffea3-7f2e-3a56-bd03-196fcbb7ed8f,SESCO,II.5.1,Chaco,AR-H,annual,2011,gas oil combustion consumption by agriculture machines,90.9180132,TJ,CO2,74100.0,kg/TJ,6737024.77812,kg -60c6e69e-9053-3a49-a752-7036a8850775,SESCO,II.5.1,Chaco,AR-H,annual,2011,gas oil combustion consumption by agriculture machines,90.9180132,TJ,CH4,3.9,kg/TJ,354.58025148,kg -60c6e69e-9053-3a49-a752-7036a8850775,SESCO,II.5.1,Chaco,AR-H,annual,2011,gas oil combustion consumption by agriculture machines,90.9180132,TJ,N2O,3.9,kg/TJ,354.58025148,kg -26f976f5-35b8-3a49-b9f0-cd886a0d1cda,SESCO,II.5.1,Córdoba,AR-X,annual,2011,gas oil combustion consumption by agriculture machines,57.6561888,TJ,CO2,74100.0,kg/TJ,4272323.59008,kg -a6965113-db55-3789-8e68-5b06ea088f00,SESCO,II.5.1,Córdoba,AR-X,annual,2011,gas oil combustion consumption by agriculture machines,57.6561888,TJ,CH4,3.9,kg/TJ,224.85913632,kg -a6965113-db55-3789-8e68-5b06ea088f00,SESCO,II.5.1,Córdoba,AR-X,annual,2011,gas oil combustion consumption by agriculture machines,57.6561888,TJ,N2O,3.9,kg/TJ,224.85913632,kg -8557b262-101d-3b1c-8ece-1430bd94497f,SESCO,II.5.1,Santa Fe,AR-S,annual,2011,gas oil combustion consumption by agriculture machines,374.66842560000003,TJ,CO2,74100.0,kg/TJ,27762930.336960003,kg -cee69c90-aecc-3afd-ac42-a6fc4544262a,SESCO,II.5.1,Santa Fe,AR-S,annual,2011,gas oil combustion consumption by agriculture machines,374.66842560000003,TJ,CH4,3.9,kg/TJ,1461.20685984,kg -cee69c90-aecc-3afd-ac42-a6fc4544262a,SESCO,II.5.1,Santa Fe,AR-S,annual,2011,gas oil combustion consumption by agriculture machines,374.66842560000003,TJ,N2O,3.9,kg/TJ,1461.20685984,kg -b2e6e280-de84-3050-9378-9302611f1b24,SESCO,II.1.1,Buenos Aires,AR-B,annual,2011,gas oil combustion consumption by to the public,14609.52835104,TJ,CO2,74100.0,kg/TJ,1082566050.812064,kg -c865847d-4ec1-362e-83ea-e219bb400ed9,SESCO,II.1.1,Buenos Aires,AR-B,annual,2011,gas oil combustion consumption by to the public,14609.52835104,TJ,CH4,3.9,kg/TJ,56977.160569056,kg -c865847d-4ec1-362e-83ea-e219bb400ed9,SESCO,II.1.1,Buenos Aires,AR-B,annual,2011,gas oil combustion consumption by to the public,14609.52835104,TJ,N2O,3.9,kg/TJ,56977.160569056,kg -f486590d-a928-37f9-94cd-6b5bc105d048,SESCO,II.1.1,Capital Federal,AR-C,annual,2011,gas oil combustion consumption by to the public,1717.61519076,TJ,CO2,74100.0,kg/TJ,127275285.635316,kg -2b6f344c-f319-3a99-8342-0b40292c976e,SESCO,II.1.1,Capital Federal,AR-C,annual,2011,gas oil combustion consumption by to the public,1717.61519076,TJ,CH4,3.9,kg/TJ,6698.699243964,kg -2b6f344c-f319-3a99-8342-0b40292c976e,SESCO,II.1.1,Capital Federal,AR-C,annual,2011,gas oil combustion consumption by to the public,1717.61519076,TJ,N2O,3.9,kg/TJ,6698.699243964,kg -d80ea2e5-fdc1-34d4-b826-ab407b0e6fc8,SESCO,II.1.1,Catamarca,AR-K,annual,2011,gas oil combustion consumption by to the public,414.0565632,TJ,CO2,74100.0,kg/TJ,30681591.333120003,kg -2c4f105c-7ee6-372f-8952-4a08b648ac78,SESCO,II.1.1,Catamarca,AR-K,annual,2011,gas oil combustion consumption by to the public,414.0565632,TJ,CH4,3.9,kg/TJ,1614.8205964800002,kg -2c4f105c-7ee6-372f-8952-4a08b648ac78,SESCO,II.1.1,Catamarca,AR-K,annual,2011,gas oil combustion consumption by to the public,414.0565632,TJ,N2O,3.9,kg/TJ,1614.8205964800002,kg -762438cd-ae9c-3fe5-81ff-d5a388ecbb23,SESCO,II.1.1,Chaco,AR-H,annual,2011,gas oil combustion consumption by to the public,705.6327348,TJ,CO2,74100.0,kg/TJ,52287385.64868,kg -1e780690-ff16-3cd1-a971-7ddb326f098d,SESCO,II.1.1,Chaco,AR-H,annual,2011,gas oil combustion consumption by to the public,705.6327348,TJ,CH4,3.9,kg/TJ,2751.96766572,kg -1e780690-ff16-3cd1-a971-7ddb326f098d,SESCO,II.1.1,Chaco,AR-H,annual,2011,gas oil combustion consumption by to the public,705.6327348,TJ,N2O,3.9,kg/TJ,2751.96766572,kg -f6cb5fb3-216c-39f3-9a02-0a1dff7c396d,SESCO,II.1.1,Chubut,AR-U,annual,2011,gas oil combustion consumption by to the public,507.75003719999995,TJ,CO2,74100.0,kg/TJ,37624277.756519996,kg -802cc2fd-07bd-3b07-8e56-2b595ab79c83,SESCO,II.1.1,Chubut,AR-U,annual,2011,gas oil combustion consumption by to the public,507.75003719999995,TJ,CH4,3.9,kg/TJ,1980.2251450799997,kg -802cc2fd-07bd-3b07-8e56-2b595ab79c83,SESCO,II.1.1,Chubut,AR-U,annual,2011,gas oil combustion consumption by to the public,507.75003719999995,TJ,N2O,3.9,kg/TJ,1980.2251450799997,kg -8753d6cb-e21b-336d-9460-57df81c70b60,SESCO,II.1.1,Corrientes,AR-W,annual,2011,gas oil combustion consumption by to the public,1198.1935896,TJ,CO2,74100.0,kg/TJ,88786144.98936,kg -721edea7-6d4d-36eb-8148-0c0b97011844,SESCO,II.1.1,Corrientes,AR-W,annual,2011,gas oil combustion consumption by to the public,1198.1935896,TJ,CH4,3.9,kg/TJ,4672.9549994399995,kg -721edea7-6d4d-36eb-8148-0c0b97011844,SESCO,II.1.1,Corrientes,AR-W,annual,2011,gas oil combustion consumption by to the public,1198.1935896,TJ,N2O,3.9,kg/TJ,4672.9549994399995,kg -5ed5b251-634f-3550-b144-fbd7b9211b50,SESCO,II.1.1,Córdoba,AR-X,annual,2011,gas oil combustion consumption by to the public,7823.03658276,TJ,CO2,74100.0,kg/TJ,579687010.782516,kg -e999c36b-bae6-3dcf-a441-3f3c26afc47b,SESCO,II.1.1,Córdoba,AR-X,annual,2011,gas oil combustion consumption by to the public,7823.03658276,TJ,CH4,3.9,kg/TJ,30509.842672764,kg -e999c36b-bae6-3dcf-a441-3f3c26afc47b,SESCO,II.1.1,Córdoba,AR-X,annual,2011,gas oil combustion consumption by to the public,7823.03658276,TJ,N2O,3.9,kg/TJ,30509.842672764,kg -ed2a20d8-938d-3276-9419-e13db432082d,SESCO,II.1.1,Entre Rios,AR-E,annual,2011,gas oil combustion consumption by to the public,2158.5734604,TJ,CO2,74100.0,kg/TJ,159950293.41564,kg -b718e552-670a-3450-a6c4-7d2270718a69,SESCO,II.1.1,Entre Rios,AR-E,annual,2011,gas oil combustion consumption by to the public,2158.5734604,TJ,CH4,3.9,kg/TJ,8418.43649556,kg -b718e552-670a-3450-a6c4-7d2270718a69,SESCO,II.1.1,Entre Rios,AR-E,annual,2011,gas oil combustion consumption by to the public,2158.5734604,TJ,N2O,3.9,kg/TJ,8418.43649556,kg -53106a5b-c524-364d-958b-b6169218dd74,SESCO,II.1.1,Formosa,AR-P,annual,2011,gas oil combustion consumption by to the public,468.3134988,TJ,CO2,74100.0,kg/TJ,34702030.26108,kg -9fd6fed2-dcc4-3f3d-b143-58aae5f73feb,SESCO,II.1.1,Formosa,AR-P,annual,2011,gas oil combustion consumption by to the public,468.3134988,TJ,CH4,3.9,kg/TJ,1826.42264532,kg -9fd6fed2-dcc4-3f3d-b143-58aae5f73feb,SESCO,II.1.1,Formosa,AR-P,annual,2011,gas oil combustion consumption by to the public,468.3134988,TJ,N2O,3.9,kg/TJ,1826.42264532,kg -c2774f91-7d6f-350e-b394-980ca36a2fa5,SESCO,II.1.1,Jujuy,AR-Y,annual,2011,gas oil combustion consumption by to the public,122.8921596,TJ,CO2,74100.0,kg/TJ,9106309.02636,kg -779667eb-4a3a-3874-ac32-d8f2d41dea11,SESCO,II.1.1,Jujuy,AR-Y,annual,2011,gas oil combustion consumption by to the public,122.8921596,TJ,CH4,3.9,kg/TJ,479.27942243999996,kg -779667eb-4a3a-3874-ac32-d8f2d41dea11,SESCO,II.1.1,Jujuy,AR-Y,annual,2011,gas oil combustion consumption by to the public,122.8921596,TJ,N2O,3.9,kg/TJ,479.27942243999996,kg -77997a5e-03cc-30d0-9cb6-31c4bfef1ed8,SESCO,II.1.1,La Pampa,AR-L,annual,2011,gas oil combustion consumption by to the public,440.7124008,TJ,CO2,74100.0,kg/TJ,32656788.89928,kg -a66135a1-7924-35a2-a5a1-fdea484a3cd6,SESCO,II.1.1,La Pampa,AR-L,annual,2011,gas oil combustion consumption by to the public,440.7124008,TJ,CH4,3.9,kg/TJ,1718.77836312,kg -a66135a1-7924-35a2-a5a1-fdea484a3cd6,SESCO,II.1.1,La Pampa,AR-L,annual,2011,gas oil combustion consumption by to the public,440.7124008,TJ,N2O,3.9,kg/TJ,1718.77836312,kg -c612c372-ee6a-36ad-86ca-d6641ef5a50b,SESCO,II.1.1,La Rioja,AR-F,annual,2011,gas oil combustion consumption by to the public,131.5385652,TJ,CO2,74100.0,kg/TJ,9747007.68132,kg -238b964a-e3e1-3b49-88a1-32edf5c95eb8,SESCO,II.1.1,La Rioja,AR-F,annual,2011,gas oil combustion consumption by to the public,131.5385652,TJ,CH4,3.9,kg/TJ,513.00040428,kg -238b964a-e3e1-3b49-88a1-32edf5c95eb8,SESCO,II.1.1,La Rioja,AR-F,annual,2011,gas oil combustion consumption by to the public,131.5385652,TJ,N2O,3.9,kg/TJ,513.00040428,kg -b91f68af-4922-3f1e-aa42-b11aa0c696c3,SESCO,II.1.1,Mendoza,AR-M,annual,2011,gas oil combustion consumption by to the public,854.5746384,TJ,CO2,74100.0,kg/TJ,63323980.70544,kg -3b1c970c-ae82-3a8c-ba41-863a870326d6,SESCO,II.1.1,Mendoza,AR-M,annual,2011,gas oil combustion consumption by to the public,854.5746384,TJ,CH4,3.9,kg/TJ,3332.84108976,kg -3b1c970c-ae82-3a8c-ba41-863a870326d6,SESCO,II.1.1,Mendoza,AR-M,annual,2011,gas oil combustion consumption by to the public,854.5746384,TJ,N2O,3.9,kg/TJ,3332.84108976,kg -cacb3839-85ef-34e9-b254-9c3bc9ff0732,SESCO,II.1.1,Misiones,AR-N,annual,2011,gas oil combustion consumption by to the public,1229.5977624,TJ,CO2,74100.0,kg/TJ,91113194.19384,kg -7499cf75-8165-39e6-b107-07a62953cc5d,SESCO,II.1.1,Misiones,AR-N,annual,2011,gas oil combustion consumption by to the public,1229.5977624,TJ,CH4,3.9,kg/TJ,4795.43127336,kg -7499cf75-8165-39e6-b107-07a62953cc5d,SESCO,II.1.1,Misiones,AR-N,annual,2011,gas oil combustion consumption by to the public,1229.5977624,TJ,N2O,3.9,kg/TJ,4795.43127336,kg -2434ca88-a317-35f9-98fa-744bb9dc9859,SESCO,II.1.1,Neuquén,AR-Q,annual,2011,gas oil combustion consumption by to the public,231.4797156,TJ,CO2,74100.0,kg/TJ,17152646.92596,kg -fee18577-541c-3814-866b-36ba0301a61e,SESCO,II.1.1,Neuquén,AR-Q,annual,2011,gas oil combustion consumption by to the public,231.4797156,TJ,CH4,3.9,kg/TJ,902.77089084,kg -fee18577-541c-3814-866b-36ba0301a61e,SESCO,II.1.1,Neuquén,AR-Q,annual,2011,gas oil combustion consumption by to the public,231.4797156,TJ,N2O,3.9,kg/TJ,902.77089084,kg -698b660a-8bc6-3e29-96cd-f808f5d9a51c,SESCO,II.1.1,Rio Negro,AR-R,annual,2011,gas oil combustion consumption by to the public,962.7330888,TJ,CO2,74100.0,kg/TJ,71338521.88008,kg -ae373a01-0416-34f4-9037-d36cafd810d3,SESCO,II.1.1,Rio Negro,AR-R,annual,2011,gas oil combustion consumption by to the public,962.7330888,TJ,CH4,3.9,kg/TJ,3754.65904632,kg -ae373a01-0416-34f4-9037-d36cafd810d3,SESCO,II.1.1,Rio Negro,AR-R,annual,2011,gas oil combustion consumption by to the public,962.7330888,TJ,N2O,3.9,kg/TJ,3754.65904632,kg -4e232b1f-5a8c-3dbc-b0eb-fc9c3628662a,SESCO,II.1.1,Salta,AR-A,annual,2011,gas oil combustion consumption by to the public,147.28833,TJ,CO2,74100.0,kg/TJ,10914065.253,kg -2f7e6a5a-c927-3848-a037-3a425d5724ce,SESCO,II.1.1,Salta,AR-A,annual,2011,gas oil combustion consumption by to the public,147.28833,TJ,CH4,3.9,kg/TJ,574.424487,kg -2f7e6a5a-c927-3848-a037-3a425d5724ce,SESCO,II.1.1,Salta,AR-A,annual,2011,gas oil combustion consumption by to the public,147.28833,TJ,N2O,3.9,kg/TJ,574.424487,kg -77fe457e-9ec0-35d0-836f-06ee08a98f99,SESCO,II.1.1,San Juan,AR-J,annual,2011,gas oil combustion consumption by to the public,609.2147292,TJ,CO2,74100.0,kg/TJ,45142811.43372,kg -3cdfce64-00b4-3390-b3d0-06e8ea8597eb,SESCO,II.1.1,San Juan,AR-J,annual,2011,gas oil combustion consumption by to the public,609.2147292,TJ,CH4,3.9,kg/TJ,2375.9374438799996,kg -3cdfce64-00b4-3390-b3d0-06e8ea8597eb,SESCO,II.1.1,San Juan,AR-J,annual,2011,gas oil combustion consumption by to the public,609.2147292,TJ,N2O,3.9,kg/TJ,2375.9374438799996,kg -be737691-6686-384f-8eed-cdab59d39b4c,SESCO,II.1.1,San Luis,AR-D,annual,2011,gas oil combustion consumption by to the public,814.0389683999999,TJ,CO2,74100.0,kg/TJ,60320287.55843999,kg -dc951bda-eee2-3b14-971b-2b242ee471c7,SESCO,II.1.1,San Luis,AR-D,annual,2011,gas oil combustion consumption by to the public,814.0389683999999,TJ,CH4,3.9,kg/TJ,3174.7519767599997,kg -dc951bda-eee2-3b14-971b-2b242ee471c7,SESCO,II.1.1,San Luis,AR-D,annual,2011,gas oil combustion consumption by to the public,814.0389683999999,TJ,N2O,3.9,kg/TJ,3174.7519767599997,kg -d13ee147-41f8-3807-8571-4f47f3dd2370,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2011,gas oil combustion consumption by to the public,331.17777839999997,TJ,CO2,74100.0,kg/TJ,24540273.37944,kg -8295f73a-80dd-3a05-a47c-bec750a57d2a,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2011,gas oil combustion consumption by to the public,331.17777839999997,TJ,CH4,3.9,kg/TJ,1291.59333576,kg -8295f73a-80dd-3a05-a47c-bec750a57d2a,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2011,gas oil combustion consumption by to the public,331.17777839999997,TJ,N2O,3.9,kg/TJ,1291.59333576,kg -995f73f9-811b-3cd9-ada7-4d3a6b9e561f,SESCO,II.1.1,Santa Fe,AR-S,annual,2011,gas oil combustion consumption by to the public,5535.196577399999,TJ,CO2,74100.0,kg/TJ,410158066.3853399,kg -54bf4aa9-043a-3320-8246-c656b21ec88c,SESCO,II.1.1,Santa Fe,AR-S,annual,2011,gas oil combustion consumption by to the public,5535.196577399999,TJ,CH4,3.9,kg/TJ,21587.266651859994,kg -54bf4aa9-043a-3320-8246-c656b21ec88c,SESCO,II.1.1,Santa Fe,AR-S,annual,2011,gas oil combustion consumption by to the public,5535.196577399999,TJ,N2O,3.9,kg/TJ,21587.266651859994,kg -dd36ce85-9615-3925-bd73-153f9ea2ad81,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2011,gas oil combustion consumption by to the public,480.2746368,TJ,CO2,74100.0,kg/TJ,35588350.58688,kg -e6ef7540-0a36-3ddc-8e35-248d4d3079fb,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2011,gas oil combustion consumption by to the public,480.2746368,TJ,CH4,3.9,kg/TJ,1873.07108352,kg -e6ef7540-0a36-3ddc-8e35-248d4d3079fb,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2011,gas oil combustion consumption by to the public,480.2746368,TJ,N2O,3.9,kg/TJ,1873.07108352,kg -4da4a302-569c-3cb3-a95e-021a2ab1e2bc,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2011,gas oil combustion consumption by to the public,106.9180896,TJ,CO2,74100.0,kg/TJ,7922630.43936,kg -84dd0dce-3314-36a1-b3a4-d3bdd57e29a8,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2011,gas oil combustion consumption by to the public,106.9180896,TJ,CH4,3.9,kg/TJ,416.98054944,kg -84dd0dce-3314-36a1-b3a4-d3bdd57e29a8,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2011,gas oil combustion consumption by to the public,106.9180896,TJ,N2O,3.9,kg/TJ,416.98054944,kg -41f94d85-b71f-3cbc-8909-df8138bda531,SESCO,II.1.1,Tucuman,AR-T,annual,2011,gas oil combustion consumption by to the public,141.0735228,TJ,CO2,74100.0,kg/TJ,10453548.03948,kg -733d85f0-14a1-3668-b2f0-dce63fe05889,SESCO,II.1.1,Tucuman,AR-T,annual,2011,gas oil combustion consumption by to the public,141.0735228,TJ,CH4,3.9,kg/TJ,550.18673892,kg -733d85f0-14a1-3668-b2f0-dce63fe05889,SESCO,II.1.1,Tucuman,AR-T,annual,2011,gas oil combustion consumption by to the public,141.0735228,TJ,N2O,3.9,kg/TJ,550.18673892,kg -38fd9178-14c9-368e-bf98-93b3f7cc0236,SESCO,II.1.1,Buenos Aires,AR-B,annual,2011,gas oil combustion consumption by to the public,1465.56748296,TJ,CO2,74100.0,kg/TJ,108598550.487336,kg -465d8df8-f302-3915-baec-0069ab935cfa,SESCO,II.1.1,Buenos Aires,AR-B,annual,2011,gas oil combustion consumption by to the public,1465.56748296,TJ,CH4,3.9,kg/TJ,5715.713183544,kg -465d8df8-f302-3915-baec-0069ab935cfa,SESCO,II.1.1,Buenos Aires,AR-B,annual,2011,gas oil combustion consumption by to the public,1465.56748296,TJ,N2O,3.9,kg/TJ,5715.713183544,kg -7f0f4f3a-245b-313d-b377-472ca86d9ca2,SESCO,II.1.1,Capital Federal,AR-C,annual,2011,gas oil combustion consumption by to the public,188.01785604,TJ,CO2,74100.0,kg/TJ,13932123.132564,kg -ceab0226-01a5-38d4-a75b-9f18179e66bb,SESCO,II.1.1,Capital Federal,AR-C,annual,2011,gas oil combustion consumption by to the public,188.01785604,TJ,CH4,3.9,kg/TJ,733.269638556,kg -ceab0226-01a5-38d4-a75b-9f18179e66bb,SESCO,II.1.1,Capital Federal,AR-C,annual,2011,gas oil combustion consumption by to the public,188.01785604,TJ,N2O,3.9,kg/TJ,733.269638556,kg -89e8828e-b7b6-3e39-b8fa-6d1faaa54f61,SESCO,II.1.1,Catamarca,AR-K,annual,2011,gas oil combustion consumption by to the public,52.090458000000005,TJ,CO2,74100.0,kg/TJ,3859902.9378000004,kg -62dfb87f-2a19-333e-9fbe-d3f2ba7de7d3,SESCO,II.1.1,Catamarca,AR-K,annual,2011,gas oil combustion consumption by to the public,52.090458000000005,TJ,CH4,3.9,kg/TJ,203.1527862,kg -62dfb87f-2a19-333e-9fbe-d3f2ba7de7d3,SESCO,II.1.1,Catamarca,AR-K,annual,2011,gas oil combustion consumption by to the public,52.090458000000005,TJ,N2O,3.9,kg/TJ,203.1527862,kg -ae9d6dd6-848a-3597-9adb-2c328e64b90c,SESCO,II.1.1,Chaco,AR-H,annual,2011,gas oil combustion consumption by to the public,82.5038592,TJ,CO2,74100.0,kg/TJ,6113535.96672,kg -ab4750a0-ec5d-3435-a8b0-be41c768c7de,SESCO,II.1.1,Chaco,AR-H,annual,2011,gas oil combustion consumption by to the public,82.5038592,TJ,CH4,3.9,kg/TJ,321.76505088,kg -ab4750a0-ec5d-3435-a8b0-be41c768c7de,SESCO,II.1.1,Chaco,AR-H,annual,2011,gas oil combustion consumption by to the public,82.5038592,TJ,N2O,3.9,kg/TJ,321.76505088,kg -f57799bc-622d-399c-8c81-f22eaa8ad1ac,SESCO,II.1.1,Chubut,AR-U,annual,2011,gas oil combustion consumption by to the public,33.5070792,TJ,CO2,74100.0,kg/TJ,2482874.56872,kg -9e38e086-95f5-33d3-a640-b6fc0c95e3b8,SESCO,II.1.1,Chubut,AR-U,annual,2011,gas oil combustion consumption by to the public,33.5070792,TJ,CH4,3.9,kg/TJ,130.67760888,kg -9e38e086-95f5-33d3-a640-b6fc0c95e3b8,SESCO,II.1.1,Chubut,AR-U,annual,2011,gas oil combustion consumption by to the public,33.5070792,TJ,N2O,3.9,kg/TJ,130.67760888,kg -0af28a42-a158-36d2-a946-7cf89ba7c9a5,SESCO,II.1.1,Corrientes,AR-W,annual,2011,gas oil combustion consumption by to the public,70.4282208,TJ,CO2,74100.0,kg/TJ,5218731.161280001,kg -d86150fe-3abd-33c1-9ad1-e6f77136c909,SESCO,II.1.1,Corrientes,AR-W,annual,2011,gas oil combustion consumption by to the public,70.4282208,TJ,CH4,3.9,kg/TJ,274.67006112,kg -d86150fe-3abd-33c1-9ad1-e6f77136c909,SESCO,II.1.1,Corrientes,AR-W,annual,2011,gas oil combustion consumption by to the public,70.4282208,TJ,N2O,3.9,kg/TJ,274.67006112,kg -778f9a35-e37f-36c0-9b0d-de2e8c031f72,SESCO,II.1.1,Córdoba,AR-X,annual,2011,gas oil combustion consumption by to the public,733.15787244,TJ,CO2,74100.0,kg/TJ,54326998.347804,kg -2b721585-b822-319d-9029-de7e4f29b2fd,SESCO,II.1.1,Córdoba,AR-X,annual,2011,gas oil combustion consumption by to the public,733.15787244,TJ,CH4,3.9,kg/TJ,2859.315702516,kg -2b721585-b822-319d-9029-de7e4f29b2fd,SESCO,II.1.1,Córdoba,AR-X,annual,2011,gas oil combustion consumption by to the public,733.15787244,TJ,N2O,3.9,kg/TJ,2859.315702516,kg -747e3475-d8f9-3886-b250-d690fbd6db8a,SESCO,II.1.1,Entre Rios,AR-E,annual,2011,gas oil combustion consumption by to the public,237.77723759999998,TJ,CO2,74100.0,kg/TJ,17619293.30616,kg -89cf6deb-d4b9-3746-a27f-462879e78e85,SESCO,II.1.1,Entre Rios,AR-E,annual,2011,gas oil combustion consumption by to the public,237.77723759999998,TJ,CH4,3.9,kg/TJ,927.3312266399998,kg -89cf6deb-d4b9-3746-a27f-462879e78e85,SESCO,II.1.1,Entre Rios,AR-E,annual,2011,gas oil combustion consumption by to the public,237.77723759999998,TJ,N2O,3.9,kg/TJ,927.3312266399998,kg -78d713ae-9724-3de7-ac11-6ed7b9401efb,SESCO,II.1.1,Formosa,AR-P,annual,2011,gas oil combustion consumption by to the public,69.9564936,TJ,CO2,74100.0,kg/TJ,5183776.17576,kg -dc4bd448-8e25-3949-9e28-8e9df7b5b9fb,SESCO,II.1.1,Formosa,AR-P,annual,2011,gas oil combustion consumption by to the public,69.9564936,TJ,CH4,3.9,kg/TJ,272.83032504,kg -dc4bd448-8e25-3949-9e28-8e9df7b5b9fb,SESCO,II.1.1,Formosa,AR-P,annual,2011,gas oil combustion consumption by to the public,69.9564936,TJ,N2O,3.9,kg/TJ,272.83032504,kg -a8a1ddd9-2cf7-3207-9094-b025e9431714,SESCO,II.1.1,Jujuy,AR-Y,annual,2011,gas oil combustion consumption by to the public,9.2893416,TJ,CO2,74100.0,kg/TJ,688340.21256,kg -db5e6d95-dde9-3655-8e54-fba127845676,SESCO,II.1.1,Jujuy,AR-Y,annual,2011,gas oil combustion consumption by to the public,9.2893416,TJ,CH4,3.9,kg/TJ,36.22843224,kg -db5e6d95-dde9-3655-8e54-fba127845676,SESCO,II.1.1,Jujuy,AR-Y,annual,2011,gas oil combustion consumption by to the public,9.2893416,TJ,N2O,3.9,kg/TJ,36.22843224,kg -fcb9c85e-bc3a-334b-bb47-5d08e3c51667,SESCO,II.1.1,La Pampa,AR-L,annual,2011,gas oil combustion consumption by to the public,44.438435999999996,TJ,CO2,74100.0,kg/TJ,3292888.1075999998,kg -410c42a4-30ba-34f0-8eef-c8b5ab66a0a1,SESCO,II.1.1,La Pampa,AR-L,annual,2011,gas oil combustion consumption by to the public,44.438435999999996,TJ,CH4,3.9,kg/TJ,173.30990039999998,kg -410c42a4-30ba-34f0-8eef-c8b5ab66a0a1,SESCO,II.1.1,La Pampa,AR-L,annual,2011,gas oil combustion consumption by to the public,44.438435999999996,TJ,N2O,3.9,kg/TJ,173.30990039999998,kg -0b2d0bce-0710-3041-bfc6-3ffd3769c1a4,SESCO,II.1.1,La Rioja,AR-F,annual,2011,gas oil combustion consumption by to the public,13.973022,TJ,CO2,74100.0,kg/TJ,1035400.9302000001,kg -c4db8ce5-4a58-37ce-a8e1-7b2882c7a8dc,SESCO,II.1.1,La Rioja,AR-F,annual,2011,gas oil combustion consumption by to the public,13.973022,TJ,CH4,3.9,kg/TJ,54.4947858,kg -c4db8ce5-4a58-37ce-a8e1-7b2882c7a8dc,SESCO,II.1.1,La Rioja,AR-F,annual,2011,gas oil combustion consumption by to the public,13.973022,TJ,N2O,3.9,kg/TJ,54.4947858,kg -7cb0c271-98e1-3de9-b630-d63a96d39985,SESCO,II.1.1,Mendoza,AR-M,annual,2011,gas oil combustion consumption by to the public,92.3364456,TJ,CO2,74100.0,kg/TJ,6842130.618960001,kg -55728a7f-d311-3c30-98f1-387048ba2cfc,SESCO,II.1.1,Mendoza,AR-M,annual,2011,gas oil combustion consumption by to the public,92.3364456,TJ,CH4,3.9,kg/TJ,360.11213784,kg -55728a7f-d311-3c30-98f1-387048ba2cfc,SESCO,II.1.1,Mendoza,AR-M,annual,2011,gas oil combustion consumption by to the public,92.3364456,TJ,N2O,3.9,kg/TJ,360.11213784,kg -37f44c6f-0d68-33df-9037-ece255fb5ff7,SESCO,II.1.1,Misiones,AR-N,annual,2011,gas oil combustion consumption by to the public,130.4047584,TJ,CO2,74100.0,kg/TJ,9662992.597439999,kg -6a1d616c-cfe3-3d74-80e1-f6c368d511e3,SESCO,II.1.1,Misiones,AR-N,annual,2011,gas oil combustion consumption by to the public,130.4047584,TJ,CH4,3.9,kg/TJ,508.57855775999997,kg -6a1d616c-cfe3-3d74-80e1-f6c368d511e3,SESCO,II.1.1,Misiones,AR-N,annual,2011,gas oil combustion consumption by to the public,130.4047584,TJ,N2O,3.9,kg/TJ,508.57855775999997,kg -53b147ff-edc9-3dc7-a13c-b4c60c06f313,SESCO,II.1.1,Neuquén,AR-Q,annual,2011,gas oil combustion consumption by to the public,52.8244164,TJ,CO2,74100.0,kg/TJ,3914289.25524,kg -10752ed2-fa6d-3c08-96d6-465f29dbf78f,SESCO,II.1.1,Neuquén,AR-Q,annual,2011,gas oil combustion consumption by to the public,52.8244164,TJ,CH4,3.9,kg/TJ,206.01522396,kg -10752ed2-fa6d-3c08-96d6-465f29dbf78f,SESCO,II.1.1,Neuquén,AR-Q,annual,2011,gas oil combustion consumption by to the public,52.8244164,TJ,N2O,3.9,kg/TJ,206.01522396,kg -5fa17f6b-24db-32d6-8a27-c4e0b54d56eb,SESCO,II.1.1,Rio Negro,AR-R,annual,2011,gas oil combustion consumption by to the public,93.94775879999999,TJ,CO2,74100.0,kg/TJ,6961528.927079999,kg -412dfa4b-d5fc-3e74-924b-654f74e3440a,SESCO,II.1.1,Rio Negro,AR-R,annual,2011,gas oil combustion consumption by to the public,93.94775879999999,TJ,CH4,3.9,kg/TJ,366.39625931999996,kg -412dfa4b-d5fc-3e74-924b-654f74e3440a,SESCO,II.1.1,Rio Negro,AR-R,annual,2011,gas oil combustion consumption by to the public,93.94775879999999,TJ,N2O,3.9,kg/TJ,366.39625931999996,kg -1197322e-b9e8-33eb-920d-1ad7dfb723ba,SESCO,II.1.1,Salta,AR-A,annual,2011,gas oil combustion consumption by to the public,7.572558,TJ,CO2,74100.0,kg/TJ,561126.5478,kg -a2a4de8a-5fa5-3f33-a14a-e7c795595f21,SESCO,II.1.1,Salta,AR-A,annual,2011,gas oil combustion consumption by to the public,7.572558,TJ,CH4,3.9,kg/TJ,29.5329762,kg -a2a4de8a-5fa5-3f33-a14a-e7c795595f21,SESCO,II.1.1,Salta,AR-A,annual,2011,gas oil combustion consumption by to the public,7.572558,TJ,N2O,3.9,kg/TJ,29.5329762,kg -42138220-10ac-3a27-8f4d-22a2a02df0dd,SESCO,II.1.1,San Juan,AR-J,annual,2011,gas oil combustion consumption by to the public,59.0847348,TJ,CO2,74100.0,kg/TJ,4378178.84868,kg -f317cb59-655d-3252-94a9-5b6e650da59d,SESCO,II.1.1,San Juan,AR-J,annual,2011,gas oil combustion consumption by to the public,59.0847348,TJ,CH4,3.9,kg/TJ,230.43046572,kg -f317cb59-655d-3252-94a9-5b6e650da59d,SESCO,II.1.1,San Juan,AR-J,annual,2011,gas oil combustion consumption by to the public,59.0847348,TJ,N2O,3.9,kg/TJ,230.43046572,kg -07792195-a2e7-3e0a-90f4-716f3c5808c1,SESCO,II.1.1,San Luis,AR-D,annual,2011,gas oil combustion consumption by to the public,73.9878468,TJ,CO2,74100.0,kg/TJ,5482499.44788,kg -d3b0b1a1-bb23-3769-8f74-6f59af8b8d1c,SESCO,II.1.1,San Luis,AR-D,annual,2011,gas oil combustion consumption by to the public,73.9878468,TJ,CH4,3.9,kg/TJ,288.55260252,kg -d3b0b1a1-bb23-3769-8f74-6f59af8b8d1c,SESCO,II.1.1,San Luis,AR-D,annual,2011,gas oil combustion consumption by to the public,73.9878468,TJ,N2O,3.9,kg/TJ,288.55260252,kg -1723bb81-29b2-3fb5-ba09-84765f405db2,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2011,gas oil combustion consumption by to the public,53.1382992,TJ,CO2,74100.0,kg/TJ,3937547.97072,kg -0da547a1-a2f0-3d32-ab9e-2722a37ccd39,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2011,gas oil combustion consumption by to the public,53.1382992,TJ,CH4,3.9,kg/TJ,207.23936687999998,kg -0da547a1-a2f0-3d32-ab9e-2722a37ccd39,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2011,gas oil combustion consumption by to the public,53.1382992,TJ,N2O,3.9,kg/TJ,207.23936687999998,kg -259d36e4-6472-375d-8bd1-04fbda47b900,SESCO,II.1.1,Santa Fe,AR-S,annual,2011,gas oil combustion consumption by to the public,495.04323791999997,TJ,CO2,74100.0,kg/TJ,36682703.929872,kg -363328ad-b302-34bd-871e-a9eed09ea8c5,SESCO,II.1.1,Santa Fe,AR-S,annual,2011,gas oil combustion consumption by to the public,495.04323791999997,TJ,CH4,3.9,kg/TJ,1930.6686278879997,kg -363328ad-b302-34bd-871e-a9eed09ea8c5,SESCO,II.1.1,Santa Fe,AR-S,annual,2011,gas oil combustion consumption by to the public,495.04323791999997,TJ,N2O,3.9,kg/TJ,1930.6686278879997,kg -d643d7ee-50cd-338f-823d-434329acc6c9,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2011,gas oil combustion consumption by to the public,54.274273199999996,TJ,CO2,74100.0,kg/TJ,4021723.64412,kg -f15e5a93-f2db-3ab3-926d-2c8c7be01a32,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2011,gas oil combustion consumption by to the public,54.274273199999996,TJ,CH4,3.9,kg/TJ,211.66966548,kg -f15e5a93-f2db-3ab3-926d-2c8c7be01a32,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2011,gas oil combustion consumption by to the public,54.274273199999996,TJ,N2O,3.9,kg/TJ,211.66966548,kg -14b979ab-2a0c-3345-80af-b12194973e6d,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2011,gas oil combustion consumption by to the public,15.110802000000001,TJ,CO2,74100.0,kg/TJ,1119710.4282000002,kg -0a55ce18-2112-3d3c-8576-bbf9c7b4d886,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2011,gas oil combustion consumption by to the public,15.110802000000001,TJ,CH4,3.9,kg/TJ,58.9321278,kg -0a55ce18-2112-3d3c-8576-bbf9c7b4d886,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2011,gas oil combustion consumption by to the public,15.110802000000001,TJ,N2O,3.9,kg/TJ,58.9321278,kg -5bf7c75b-a12d-367d-b802-9c3e2c965764,SESCO,II.1.1,Tucuman,AR-T,annual,2011,gas oil combustion consumption by to the public,7.969516799999999,TJ,CO2,74100.0,kg/TJ,590541.19488,kg -226dc907-c419-3d07-a6f9-da149eb0a04f,SESCO,II.1.1,Tucuman,AR-T,annual,2011,gas oil combustion consumption by to the public,7.969516799999999,TJ,CH4,3.9,kg/TJ,31.081115519999997,kg -226dc907-c419-3d07-a6f9-da149eb0a04f,SESCO,II.1.1,Tucuman,AR-T,annual,2011,gas oil combustion consumption by to the public,7.969516799999999,TJ,N2O,3.9,kg/TJ,31.081115519999997,kg -8567a340-978e-35cf-a9f6-6a8f13ff5df7,SESCO,II.1.1,Buenos Aires,AR-B,annual,2011,jet kerosene combustion consumption by to the public,11.260803059999997,TJ,CO2,71500.0,kg/TJ,805147.4187899998,kg -1cbfa969-7945-309e-8d8e-59823e05c68e,SESCO,II.1.1,Buenos Aires,AR-B,annual,2011,jet kerosene combustion consumption by to the public,11.260803059999997,TJ,CH4,0.5,kg/TJ,5.6304015299999985,kg -f0e6823c-262a-3a47-bf2e-796669297138,SESCO,II.1.1,Buenos Aires,AR-B,annual,2011,jet kerosene combustion consumption by to the public,11.260803059999997,TJ,N2O,2.0,kg/TJ,22.521606119999994,kg -fcf6ad09-0bc8-392d-8948-cc37a1b32de6,SESCO,II.1.1,Córdoba,AR-X,annual,2011,jet kerosene combustion consumption by to the public,5.294168959999999,TJ,CO2,71500.0,kg/TJ,378533.0806399999,kg -9caa5682-3254-33e7-afd7-3a41acb1c39b,SESCO,II.1.1,Córdoba,AR-X,annual,2011,jet kerosene combustion consumption by to the public,5.294168959999999,TJ,CH4,0.5,kg/TJ,2.6470844799999993,kg -31ff903c-cc28-32c2-be5a-9fb9240c3612,SESCO,II.1.1,Córdoba,AR-X,annual,2011,jet kerosene combustion consumption by to the public,5.294168959999999,TJ,N2O,2.0,kg/TJ,10.588337919999997,kg -40886a3c-6b0b-3112-ae03-fab60e1d25eb,SESCO,II.1.1,Entre Rios,AR-E,annual,2011,jet kerosene combustion consumption by to the public,4.815454299999999,TJ,CO2,71500.0,kg/TJ,344304.98244999995,kg -25ff17de-3f08-3760-b2af-37f61b92e339,SESCO,II.1.1,Entre Rios,AR-E,annual,2011,jet kerosene combustion consumption by to the public,4.815454299999999,TJ,CH4,0.5,kg/TJ,2.4077271499999995,kg -cb63cb65-8240-3732-b49a-5e5d184a7030,SESCO,II.1.1,Entre Rios,AR-E,annual,2011,jet kerosene combustion consumption by to the public,4.815454299999999,TJ,N2O,2.0,kg/TJ,9.630908599999998,kg -ca4b7f0a-b94c-35ac-83d4-b47cf713abe8,SESCO,II.1.1,Misiones,AR-N,annual,2011,jet kerosene combustion consumption by to the public,1.0363763499999998,TJ,CO2,71500.0,kg/TJ,74100.90902499999,kg -230ccd65-40ca-33d1-aa14-2e674440be07,SESCO,II.1.1,Misiones,AR-N,annual,2011,jet kerosene combustion consumption by to the public,1.0363763499999998,TJ,CH4,0.5,kg/TJ,0.5181881749999999,kg -95690dd4-8c75-3ad3-8d5c-2e85fe050b0c,SESCO,II.1.1,Misiones,AR-N,annual,2011,jet kerosene combustion consumption by to the public,1.0363763499999998,TJ,N2O,2.0,kg/TJ,2.0727526999999997,kg -452aa01f-72df-34cc-9ab9-e8f02505ec90,SESCO,II.1.1,Santa Fe,AR-S,annual,2011,jet kerosene combustion consumption by to the public,10.001739469999999,TJ,CO2,71500.0,kg/TJ,715124.372105,kg -68607483-9a4f-35ae-a5df-3f7f7d99af70,SESCO,II.1.1,Santa Fe,AR-S,annual,2011,jet kerosene combustion consumption by to the public,10.001739469999999,TJ,CH4,0.5,kg/TJ,5.000869734999999,kg -bb531269-fc5a-364c-869c-60df792ca809,SESCO,II.1.1,Santa Fe,AR-S,annual,2011,jet kerosene combustion consumption by to the public,10.001739469999999,TJ,N2O,2.0,kg/TJ,20.003478939999997,kg -7d7eb761-c7aa-3e2b-be0c-e85211ab6e23,SESCO,I.3.1,Buenos Aires,AR-B,annual,2011,gasoline combustion consumption by petrochemical industries,127.427178,TJ,CO2,69300.0,kg/TJ,8830703.4354,kg -df184640-edaa-360a-8d10-03910eddacc9,SESCO,I.3.1,Buenos Aires,AR-B,annual,2011,gasoline combustion consumption by petrochemical industries,127.427178,TJ,CH4,33.0,kg/TJ,4205.096874,kg -d7a3c01e-c617-3a08-b5b8-74c005f83df5,SESCO,I.3.1,Buenos Aires,AR-B,annual,2011,gasoline combustion consumption by petrochemical industries,127.427178,TJ,N2O,3.2,kg/TJ,407.76696960000004,kg -9528bff5-486a-317c-958b-f269474b9476,SESCO,II.2.1,Capital Federal,AR-C,annual,2011,gas oil combustion consumption by railway transport,68.234292,TJ,CO2,74100.0,kg/TJ,5056161.0372,kg -ec52cde9-a5bb-37bc-8592-dedc5517e830,SESCO,II.2.1,Capital Federal,AR-C,annual,2011,gas oil combustion consumption by railway transport,68.234292,TJ,CH4,3.9,kg/TJ,266.11373879999996,kg -ec52cde9-a5bb-37bc-8592-dedc5517e830,SESCO,II.2.1,Capital Federal,AR-C,annual,2011,gas oil combustion consumption by railway transport,68.234292,TJ,N2O,3.9,kg/TJ,266.11373879999996,kg -6dc60b34-317f-35de-9b12-6083aeee7d51,SESCO,II.2.1,Chaco,AR-H,annual,2011,gas oil combustion consumption by railway transport,6.1776036,TJ,CO2,74100.0,kg/TJ,457760.42676,kg -92e881d7-d3b7-3670-9644-959983ffef69,SESCO,II.2.1,Chaco,AR-H,annual,2011,gas oil combustion consumption by railway transport,6.1776036,TJ,CH4,3.9,kg/TJ,24.09265404,kg -92e881d7-d3b7-3670-9644-959983ffef69,SESCO,II.2.1,Chaco,AR-H,annual,2011,gas oil combustion consumption by railway transport,6.1776036,TJ,N2O,3.9,kg/TJ,24.09265404,kg -2a87d4bb-e63b-3a6c-b703-a885e7100c0d,SESCO,II.2.1,Mendoza,AR-M,annual,2011,gas oil combustion consumption by railway transport,42.081606,TJ,CO2,74100.0,kg/TJ,3118247.0046,kg -64af9bb7-2deb-3d2f-b7b3-802cb35d71b9,SESCO,II.2.1,Mendoza,AR-M,annual,2011,gas oil combustion consumption by railway transport,42.081606,TJ,CH4,3.9,kg/TJ,164.1182634,kg -64af9bb7-2deb-3d2f-b7b3-802cb35d71b9,SESCO,II.2.1,Mendoza,AR-M,annual,2011,gas oil combustion consumption by railway transport,42.081606,TJ,N2O,3.9,kg/TJ,164.1182634,kg -a81c6525-9111-3efd-a7a9-a86fb5245975,SESCO,II.1.1,Buenos Aires,AR-B,annual,2011,gas oil combustion consumption by freight transport,1452.7088351999998,TJ,CO2,74100.0,kg/TJ,107645724.68831998,kg -d4426a97-a4f8-3054-89dd-b60e82290237,SESCO,II.1.1,Buenos Aires,AR-B,annual,2011,gas oil combustion consumption by freight transport,1452.7088351999998,TJ,CH4,3.9,kg/TJ,5665.564457279999,kg -d4426a97-a4f8-3054-89dd-b60e82290237,SESCO,II.1.1,Buenos Aires,AR-B,annual,2011,gas oil combustion consumption by freight transport,1452.7088351999998,TJ,N2O,3.9,kg/TJ,5665.564457279999,kg -0b987eb5-749e-3e47-ab61-3f00e022f129,SESCO,II.1.1,Capital Federal,AR-C,annual,2011,gas oil combustion consumption by freight transport,1286.1988860000001,TJ,CO2,74100.0,kg/TJ,95307337.4526,kg -87b87c64-ef96-3f45-8a2b-d03e158725b6,SESCO,II.1.1,Capital Federal,AR-C,annual,2011,gas oil combustion consumption by freight transport,1286.1988860000001,TJ,CH4,3.9,kg/TJ,5016.1756554,kg -87b87c64-ef96-3f45-8a2b-d03e158725b6,SESCO,II.1.1,Capital Federal,AR-C,annual,2011,gas oil combustion consumption by freight transport,1286.1988860000001,TJ,N2O,3.9,kg/TJ,5016.1756554,kg -357483d9-df3d-3be9-8058-08f699dcc571,SESCO,II.1.1,Chaco,AR-H,annual,2011,gas oil combustion consumption by freight transport,121.4379684,TJ,CO2,74100.0,kg/TJ,8998553.45844,kg -9418e234-2a99-39b7-8691-b1aa0f98ce41,SESCO,II.1.1,Chaco,AR-H,annual,2011,gas oil combustion consumption by freight transport,121.4379684,TJ,CH4,3.9,kg/TJ,473.60807676,kg -9418e234-2a99-39b7-8691-b1aa0f98ce41,SESCO,II.1.1,Chaco,AR-H,annual,2011,gas oil combustion consumption by freight transport,121.4379684,TJ,N2O,3.9,kg/TJ,473.60807676,kg -8abe9dda-1583-3780-8041-add5704fe2ab,SESCO,II.1.1,Chubut,AR-U,annual,2011,gas oil combustion consumption by freight transport,19.1880276,TJ,CO2,74100.0,kg/TJ,1421832.84516,kg -787ccf47-e5eb-3258-b634-94483188a1a0,SESCO,II.1.1,Chubut,AR-U,annual,2011,gas oil combustion consumption by freight transport,19.1880276,TJ,CH4,3.9,kg/TJ,74.83330764,kg -787ccf47-e5eb-3258-b634-94483188a1a0,SESCO,II.1.1,Chubut,AR-U,annual,2011,gas oil combustion consumption by freight transport,19.1880276,TJ,N2O,3.9,kg/TJ,74.83330764,kg -40bc651a-ef41-3c66-9326-8d3c89517e94,SESCO,II.1.1,Corrientes,AR-W,annual,2011,gas oil combustion consumption by freight transport,90.7663092,TJ,CO2,74100.0,kg/TJ,6725783.51172,kg -a2b2a90c-92aa-3627-91bc-9466a7d7045c,SESCO,II.1.1,Corrientes,AR-W,annual,2011,gas oil combustion consumption by freight transport,90.7663092,TJ,CH4,3.9,kg/TJ,353.98860587999997,kg -a2b2a90c-92aa-3627-91bc-9466a7d7045c,SESCO,II.1.1,Corrientes,AR-W,annual,2011,gas oil combustion consumption by freight transport,90.7663092,TJ,N2O,3.9,kg/TJ,353.98860587999997,kg -a869d0f6-594c-3051-9959-0c5a528584a2,SESCO,II.1.1,Córdoba,AR-X,annual,2011,gas oil combustion consumption by freight transport,179.2411656,TJ,CO2,74100.0,kg/TJ,13281770.370959999,kg -7eee9ece-ded9-349a-8c18-6a32d77fee59,SESCO,II.1.1,Córdoba,AR-X,annual,2011,gas oil combustion consumption by freight transport,179.2411656,TJ,CH4,3.9,kg/TJ,699.0405458399999,kg -7eee9ece-ded9-349a-8c18-6a32d77fee59,SESCO,II.1.1,Córdoba,AR-X,annual,2011,gas oil combustion consumption by freight transport,179.2411656,TJ,N2O,3.9,kg/TJ,699.0405458399999,kg -ceaebe35-b605-3c6a-9a5e-0922b8db03cf,SESCO,II.1.1,Entre Rios,AR-E,annual,2011,gas oil combustion consumption by freight transport,244.96186679999997,TJ,CO2,74100.0,kg/TJ,18151674.32988,kg -250fe80d-da6a-39e7-8d39-a8b6964c6f90,SESCO,II.1.1,Entre Rios,AR-E,annual,2011,gas oil combustion consumption by freight transport,244.96186679999997,TJ,CH4,3.9,kg/TJ,955.3512805199998,kg -250fe80d-da6a-39e7-8d39-a8b6964c6f90,SESCO,II.1.1,Entre Rios,AR-E,annual,2011,gas oil combustion consumption by freight transport,244.96186679999997,TJ,N2O,3.9,kg/TJ,955.3512805199998,kg -24590e63-e20f-3c2d-8f90-5b81f74ee1ae,SESCO,II.1.1,Mendoza,AR-M,annual,2011,gas oil combustion consumption by freight transport,409.28583359999993,TJ,CO2,74100.0,kg/TJ,30328080.269759994,kg -e8bb547e-5502-3e8b-93bc-e78a9dcf4743,SESCO,II.1.1,Mendoza,AR-M,annual,2011,gas oil combustion consumption by freight transport,409.28583359999993,TJ,CH4,3.9,kg/TJ,1596.2147510399998,kg -e8bb547e-5502-3e8b-93bc-e78a9dcf4743,SESCO,II.1.1,Mendoza,AR-M,annual,2011,gas oil combustion consumption by freight transport,409.28583359999993,TJ,N2O,3.9,kg/TJ,1596.2147510399998,kg -bc413545-76c8-33fe-a70a-06bb516a7da8,SESCO,II.1.1,Misiones,AR-N,annual,2011,gas oil combustion consumption by freight transport,85.8557952,TJ,CO2,74100.0,kg/TJ,6361914.42432,kg -3f79d32c-8285-3663-bb3d-1f2e8efb5751,SESCO,II.1.1,Misiones,AR-N,annual,2011,gas oil combustion consumption by freight transport,85.8557952,TJ,CH4,3.9,kg/TJ,334.83760128,kg -3f79d32c-8285-3663-bb3d-1f2e8efb5751,SESCO,II.1.1,Misiones,AR-N,annual,2011,gas oil combustion consumption by freight transport,85.8557952,TJ,N2O,3.9,kg/TJ,334.83760128,kg -7cbfea1b-5a2d-3675-926a-f01dea4a38f9,SESCO,II.1.1,Rio Negro,AR-R,annual,2011,gas oil combustion consumption by freight transport,11.5645404,TJ,CO2,74100.0,kg/TJ,856932.4436400001,kg -0db96a17-eab3-38ee-ae7e-845d9b2e6659,SESCO,II.1.1,Rio Negro,AR-R,annual,2011,gas oil combustion consumption by freight transport,11.5645404,TJ,CH4,3.9,kg/TJ,45.10170756,kg -0db96a17-eab3-38ee-ae7e-845d9b2e6659,SESCO,II.1.1,Rio Negro,AR-R,annual,2011,gas oil combustion consumption by freight transport,11.5645404,TJ,N2O,3.9,kg/TJ,45.10170756,kg -bcc21a9c-bdf3-38c8-bfc1-95868e51d894,SESCO,II.1.1,Salta,AR-A,annual,2011,gas oil combustion consumption by freight transport,5.160103199999999,TJ,CO2,74100.0,kg/TJ,382363.6471199999,kg -0c1a6993-f599-3f5a-87c5-26fa6d15d80f,SESCO,II.1.1,Salta,AR-A,annual,2011,gas oil combustion consumption by freight transport,5.160103199999999,TJ,CH4,3.9,kg/TJ,20.124402479999997,kg -0c1a6993-f599-3f5a-87c5-26fa6d15d80f,SESCO,II.1.1,Salta,AR-A,annual,2011,gas oil combustion consumption by freight transport,5.160103199999999,TJ,N2O,3.9,kg/TJ,20.124402479999997,kg -d50c18a7-a5bc-36c9-86ad-31b8ba596b57,SESCO,II.1.1,San Juan,AR-J,annual,2011,gas oil combustion consumption by freight transport,7.316106,TJ,CO2,74100.0,kg/TJ,542123.4546,kg -437006b9-113d-3a23-b871-677082a83d65,SESCO,II.1.1,San Juan,AR-J,annual,2011,gas oil combustion consumption by freight transport,7.316106,TJ,CH4,3.9,kg/TJ,28.532813400000002,kg -437006b9-113d-3a23-b871-677082a83d65,SESCO,II.1.1,San Juan,AR-J,annual,2011,gas oil combustion consumption by freight transport,7.316106,TJ,N2O,3.9,kg/TJ,28.532813400000002,kg -eb34fd46-ae3d-323b-a5df-c7e0ea03cb0a,SESCO,II.1.1,San Luis,AR-D,annual,2011,gas oil combustion consumption by freight transport,126.611436,TJ,CO2,74100.0,kg/TJ,9381907.4076,kg -c8a11355-4e10-3f90-84c0-41b33f418b78,SESCO,II.1.1,San Luis,AR-D,annual,2011,gas oil combustion consumption by freight transport,126.611436,TJ,CH4,3.9,kg/TJ,493.7846004,kg -c8a11355-4e10-3f90-84c0-41b33f418b78,SESCO,II.1.1,San Luis,AR-D,annual,2011,gas oil combustion consumption by freight transport,126.611436,TJ,N2O,3.9,kg/TJ,493.7846004,kg -a4ce9bd9-7820-39b9-8912-9134451d1c61,SESCO,II.1.1,Santa Fe,AR-S,annual,2011,gas oil combustion consumption by freight transport,847.2039912,TJ,CO2,74100.0,kg/TJ,62777815.74792,kg -988cb440-a0cc-389b-b019-3871b8b2d349,SESCO,II.1.1,Santa Fe,AR-S,annual,2011,gas oil combustion consumption by freight transport,847.2039912,TJ,CH4,3.9,kg/TJ,3304.09556568,kg -988cb440-a0cc-389b-b019-3871b8b2d349,SESCO,II.1.1,Santa Fe,AR-S,annual,2011,gas oil combustion consumption by freight transport,847.2039912,TJ,N2O,3.9,kg/TJ,3304.09556568,kg -8b7d3334-c562-30a1-aa1d-01dffe55e225,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2011,gas oil combustion consumption by freight transport,0.2828196,TJ,CO2,74100.0,kg/TJ,20956.93236,kg -b09b6926-ebed-331f-9b91-89039adfbf4e,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2011,gas oil combustion consumption by freight transport,0.2828196,TJ,CH4,3.9,kg/TJ,1.10299644,kg -b09b6926-ebed-331f-9b91-89039adfbf4e,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2011,gas oil combustion consumption by freight transport,0.2828196,TJ,N2O,3.9,kg/TJ,1.10299644,kg -f6c57e3d-2e12-35b5-9447-58c1fc0c32ce,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2011,gas oil combustion consumption by freight transport,34.257652799999995,TJ,CO2,74100.0,kg/TJ,2538492.0724799996,kg -708bbf39-213d-3ade-8660-1659a4838d0a,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2011,gas oil combustion consumption by freight transport,34.257652799999995,TJ,CH4,3.9,kg/TJ,133.60484591999997,kg -708bbf39-213d-3ade-8660-1659a4838d0a,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2011,gas oil combustion consumption by freight transport,34.257652799999995,TJ,N2O,3.9,kg/TJ,133.60484591999997,kg -c94f1d58-9d8e-3f66-aeaf-0056ea074bd6,SESCO,II.1.1,Tucuman,AR-T,annual,2011,gas oil combustion consumption by freight transport,76.9384896,TJ,CO2,74100.0,kg/TJ,5701142.07936,kg -440efd4c-d39f-3047-babc-bd738d0ba36c,SESCO,II.1.1,Tucuman,AR-T,annual,2011,gas oil combustion consumption by freight transport,76.9384896,TJ,CH4,3.9,kg/TJ,300.06010943999996,kg -440efd4c-d39f-3047-babc-bd738d0ba36c,SESCO,II.1.1,Tucuman,AR-T,annual,2011,gas oil combustion consumption by freight transport,76.9384896,TJ,N2O,3.9,kg/TJ,300.06010943999996,kg -d6778ecc-03b6-3c8f-a977-8a05e120e476,SESCO,II.1.1,Buenos Aires,AR-B,annual,2011,gas oil combustion consumption by freight transport,89.3904984,TJ,CO2,74100.0,kg/TJ,6623835.9314399995,kg -ba96a283-29d2-3625-9fc2-6f256e672dd2,SESCO,II.1.1,Buenos Aires,AR-B,annual,2011,gas oil combustion consumption by freight transport,89.3904984,TJ,CH4,3.9,kg/TJ,348.62294376,kg -ba96a283-29d2-3625-9fc2-6f256e672dd2,SESCO,II.1.1,Buenos Aires,AR-B,annual,2011,gas oil combustion consumption by freight transport,89.3904984,TJ,N2O,3.9,kg/TJ,348.62294376,kg -f3613124-2703-370c-a322-d19e4a22290f,SESCO,II.1.1,Capital Federal,AR-C,annual,2011,gas oil combustion consumption by freight transport,79.3617804,TJ,CO2,74100.0,kg/TJ,5880707.92764,kg -9f54cfae-c715-3934-9d82-659228eb7225,SESCO,II.1.1,Capital Federal,AR-C,annual,2011,gas oil combustion consumption by freight transport,79.3617804,TJ,CH4,3.9,kg/TJ,309.51094356,kg -9f54cfae-c715-3934-9d82-659228eb7225,SESCO,II.1.1,Capital Federal,AR-C,annual,2011,gas oil combustion consumption by freight transport,79.3617804,TJ,N2O,3.9,kg/TJ,309.51094356,kg -5b94b423-17b2-3da5-bd1a-65f62b44e6d7,SESCO,II.1.1,Chaco,AR-H,annual,2011,gas oil combustion consumption by freight transport,0.2264724,TJ,CO2,74100.0,kg/TJ,16781.60484,kg -7931aec4-eaf1-3bba-be29-82d5896c0924,SESCO,II.1.1,Chaco,AR-H,annual,2011,gas oil combustion consumption by freight transport,0.2264724,TJ,CH4,3.9,kg/TJ,0.8832423599999999,kg -7931aec4-eaf1-3bba-be29-82d5896c0924,SESCO,II.1.1,Chaco,AR-H,annual,2011,gas oil combustion consumption by freight transport,0.2264724,TJ,N2O,3.9,kg/TJ,0.8832423599999999,kg -f8d3cbeb-8ac2-3dd7-a81e-dd5d611b0657,SESCO,II.1.1,Chubut,AR-U,annual,2011,gas oil combustion consumption by freight transport,0.5551644,TJ,CO2,74100.0,kg/TJ,41137.68204,kg -1d41e956-6306-3614-a101-95dbfdb85bc2,SESCO,II.1.1,Chubut,AR-U,annual,2011,gas oil combustion consumption by freight transport,0.5551644,TJ,CH4,3.9,kg/TJ,2.16514116,kg -1d41e956-6306-3614-a101-95dbfdb85bc2,SESCO,II.1.1,Chubut,AR-U,annual,2011,gas oil combustion consumption by freight transport,0.5551644,TJ,N2O,3.9,kg/TJ,2.16514116,kg -7f5f65f8-7a06-358c-a693-29dbc3b2fe15,SESCO,II.1.1,Corrientes,AR-W,annual,2011,gas oil combustion consumption by freight transport,3.8384723999999997,TJ,CO2,74100.0,kg/TJ,284430.80484,kg -4362353f-518a-39bf-bfbb-b62a7b243d4c,SESCO,II.1.1,Corrientes,AR-W,annual,2011,gas oil combustion consumption by freight transport,3.8384723999999997,TJ,CH4,3.9,kg/TJ,14.970042359999999,kg -4362353f-518a-39bf-bfbb-b62a7b243d4c,SESCO,II.1.1,Corrientes,AR-W,annual,2011,gas oil combustion consumption by freight transport,3.8384723999999997,TJ,N2O,3.9,kg/TJ,14.970042359999999,kg -107b511d-760b-3e33-8bf6-403312baf46f,SESCO,II.1.1,Córdoba,AR-X,annual,2011,gas oil combustion consumption by freight transport,6.1599048,TJ,CO2,74100.0,kg/TJ,456448.94567999995,kg -ca8cab6b-639a-3592-a38b-d453f3e3019f,SESCO,II.1.1,Córdoba,AR-X,annual,2011,gas oil combustion consumption by freight transport,6.1599048,TJ,CH4,3.9,kg/TJ,24.023628719999998,kg -ca8cab6b-639a-3592-a38b-d453f3e3019f,SESCO,II.1.1,Córdoba,AR-X,annual,2011,gas oil combustion consumption by freight transport,6.1599048,TJ,N2O,3.9,kg/TJ,24.023628719999998,kg -f322056a-dfcd-3b24-8c53-3ecc7a4c4f6d,SESCO,II.1.1,Entre Rios,AR-E,annual,2011,gas oil combustion consumption by freight transport,3.0008496,TJ,CO2,74100.0,kg/TJ,222362.95536,kg -47826bf7-7b2c-3b54-9b76-cd9e44ffc1ac,SESCO,II.1.1,Entre Rios,AR-E,annual,2011,gas oil combustion consumption by freight transport,3.0008496,TJ,CH4,3.9,kg/TJ,11.70331344,kg -47826bf7-7b2c-3b54-9b76-cd9e44ffc1ac,SESCO,II.1.1,Entre Rios,AR-E,annual,2011,gas oil combustion consumption by freight transport,3.0008496,TJ,N2O,3.9,kg/TJ,11.70331344,kg -6caf5df5-9547-3a0f-b049-22a9b9cfc13f,SESCO,II.1.1,Mendoza,AR-M,annual,2011,gas oil combustion consumption by freight transport,3.1796436,TJ,CO2,74100.0,kg/TJ,235611.59076,kg -79eb4633-e8cf-3843-869e-49c495daa119,SESCO,II.1.1,Mendoza,AR-M,annual,2011,gas oil combustion consumption by freight transport,3.1796436,TJ,CH4,3.9,kg/TJ,12.40061004,kg -79eb4633-e8cf-3843-869e-49c495daa119,SESCO,II.1.1,Mendoza,AR-M,annual,2011,gas oil combustion consumption by freight transport,3.1796436,TJ,N2O,3.9,kg/TJ,12.40061004,kg -8fca8d71-a4f9-3462-bc20-dff02cda3dbf,SESCO,II.1.1,Misiones,AR-N,annual,2011,gas oil combustion consumption by freight transport,3.1579716,TJ,CO2,74100.0,kg/TJ,234005.69556000002,kg -a557dc39-97a3-3ef8-9e22-dcb1cbae3267,SESCO,II.1.1,Misiones,AR-N,annual,2011,gas oil combustion consumption by freight transport,3.1579716,TJ,CH4,3.9,kg/TJ,12.31608924,kg -a557dc39-97a3-3ef8-9e22-dcb1cbae3267,SESCO,II.1.1,Misiones,AR-N,annual,2011,gas oil combustion consumption by freight transport,3.1579716,TJ,N2O,3.9,kg/TJ,12.31608924,kg -da5642a5-7fc4-35d2-8345-e4c954760c98,SESCO,II.1.1,Rio Negro,AR-R,annual,2011,gas oil combustion consumption by freight transport,0.59598,TJ,CO2,74100.0,kg/TJ,44162.117999999995,kg -67e03775-841c-3dc7-ae7e-7030031bfa0f,SESCO,II.1.1,Rio Negro,AR-R,annual,2011,gas oil combustion consumption by freight transport,0.59598,TJ,CH4,3.9,kg/TJ,2.3243219999999996,kg -67e03775-841c-3dc7-ae7e-7030031bfa0f,SESCO,II.1.1,Rio Negro,AR-R,annual,2011,gas oil combustion consumption by freight transport,0.59598,TJ,N2O,3.9,kg/TJ,2.3243219999999996,kg -53792ecd-291e-37b9-84a9-060a915c5c0e,SESCO,II.1.1,Salta,AR-A,annual,2011,gas oil combustion consumption by freight transport,0.0964404,TJ,CO2,74100.0,kg/TJ,7146.2336399999995,kg -941d3148-684a-3a5b-b92f-77a9f44e3378,SESCO,II.1.1,Salta,AR-A,annual,2011,gas oil combustion consumption by freight transport,0.0964404,TJ,CH4,3.9,kg/TJ,0.37611755999999996,kg -941d3148-684a-3a5b-b92f-77a9f44e3378,SESCO,II.1.1,Salta,AR-A,annual,2011,gas oil combustion consumption by freight transport,0.0964404,TJ,N2O,3.9,kg/TJ,0.37611755999999996,kg -d47c4621-a9ff-3224-a584-f61b68e4a17b,SESCO,II.1.1,San Juan,AR-J,annual,2011,gas oil combustion consumption by freight transport,0.8105327999999999,TJ,CO2,74100.0,kg/TJ,60060.48048,kg -d4fb4b2c-380c-3b38-b8e6-ae6f3ef19930,SESCO,II.1.1,San Juan,AR-J,annual,2011,gas oil combustion consumption by freight transport,0.8105327999999999,TJ,CH4,3.9,kg/TJ,3.16107792,kg -d4fb4b2c-380c-3b38-b8e6-ae6f3ef19930,SESCO,II.1.1,San Juan,AR-J,annual,2011,gas oil combustion consumption by freight transport,0.8105327999999999,TJ,N2O,3.9,kg/TJ,3.16107792,kg -74dfc718-f93b-3044-b20b-9272f51f617b,SESCO,II.1.1,San Luis,AR-D,annual,2011,gas oil combustion consumption by freight transport,1.2645612,TJ,CO2,74100.0,kg/TJ,93703.98492,kg -b98ed6a9-4a8f-37f8-b978-56d741124230,SESCO,II.1.1,San Luis,AR-D,annual,2011,gas oil combustion consumption by freight transport,1.2645612,TJ,CH4,3.9,kg/TJ,4.9317886799999995,kg -b98ed6a9-4a8f-37f8-b978-56d741124230,SESCO,II.1.1,San Luis,AR-D,annual,2011,gas oil combustion consumption by freight transport,1.2645612,TJ,N2O,3.9,kg/TJ,4.9317886799999995,kg -3e7e9b22-9054-33cc-9220-aa658472fc10,SESCO,II.1.1,Santa Fe,AR-S,annual,2011,gas oil combustion consumption by freight transport,7.8998052,TJ,CO2,74100.0,kg/TJ,585375.56532,kg -3c89ce46-9680-3847-a21d-1214799196e7,SESCO,II.1.1,Santa Fe,AR-S,annual,2011,gas oil combustion consumption by freight transport,7.8998052,TJ,CH4,3.9,kg/TJ,30.80924028,kg -3c89ce46-9680-3847-a21d-1214799196e7,SESCO,II.1.1,Santa Fe,AR-S,annual,2011,gas oil combustion consumption by freight transport,7.8998052,TJ,N2O,3.9,kg/TJ,30.80924028,kg -d9067a38-1d95-33d4-8a79-832c7a4406ad,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2011,gas oil combustion consumption by freight transport,0.08921639999999999,TJ,CO2,74100.0,kg/TJ,6610.935239999999,kg -98572289-d68d-3c9f-bfec-d79388c08a3f,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2011,gas oil combustion consumption by freight transport,0.08921639999999999,TJ,CH4,3.9,kg/TJ,0.34794395999999994,kg -98572289-d68d-3c9f-bfec-d79388c08a3f,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2011,gas oil combustion consumption by freight transport,0.08921639999999999,TJ,N2O,3.9,kg/TJ,0.34794395999999994,kg -7ce5c12c-daf3-3b3b-af67-705db783b871,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2011,gas oil combustion consumption by freight transport,2.9770104,TJ,CO2,74100.0,kg/TJ,220596.47064,kg -40dfcfb8-79fa-33a7-b221-9d4740e3633a,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2011,gas oil combustion consumption by freight transport,2.9770104,TJ,CH4,3.9,kg/TJ,11.610340560000001,kg -40dfcfb8-79fa-33a7-b221-9d4740e3633a,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2011,gas oil combustion consumption by freight transport,2.9770104,TJ,N2O,3.9,kg/TJ,11.610340560000001,kg -8aa0100a-bc1b-3bc9-b419-41446ea57896,SESCO,II.1.1,Tucuman,AR-T,annual,2011,gas oil combustion consumption by freight transport,1.7691575999999998,TJ,CO2,74100.0,kg/TJ,131094.57815999998,kg -ef8b1d9c-9225-37fe-be7b-c70f020e2356,SESCO,II.1.1,Tucuman,AR-T,annual,2011,gas oil combustion consumption by freight transport,1.7691575999999998,TJ,CH4,3.9,kg/TJ,6.899714639999999,kg -ef8b1d9c-9225-37fe-be7b-c70f020e2356,SESCO,II.1.1,Tucuman,AR-T,annual,2011,gas oil combustion consumption by freight transport,1.7691575999999998,TJ,N2O,3.9,kg/TJ,6.899714639999999,kg -fabafc30-4bc5-3da1-b9d4-88fd6cc9fd45,SESCO,II.1.1,Buenos Aires,AR-B,annual,2011,gas oil combustion consumption by public passenger transport,1340.8408607999997,TJ,CO2,74100.0,kg/TJ,99356307.78527997,kg -65887ac0-02fc-36f8-8cb2-c787d7023f89,SESCO,II.1.1,Buenos Aires,AR-B,annual,2011,gas oil combustion consumption by public passenger transport,1340.8408607999997,TJ,CH4,3.9,kg/TJ,5229.279357119999,kg -65887ac0-02fc-36f8-8cb2-c787d7023f89,SESCO,II.1.1,Buenos Aires,AR-B,annual,2011,gas oil combustion consumption by public passenger transport,1340.8408607999997,TJ,N2O,3.9,kg/TJ,5229.279357119999,kg -6680858e-9f24-3ec5-90f2-d436bd9f9c5d,SESCO,II.1.1,Capital Federal,AR-C,annual,2011,gas oil combustion consumption by public passenger transport,826.4609975999999,TJ,CO2,74100.0,kg/TJ,61240759.92215999,kg -05f1cbd4-3d23-365f-8766-f92bd9c60ac6,SESCO,II.1.1,Capital Federal,AR-C,annual,2011,gas oil combustion consumption by public passenger transport,826.4609975999999,TJ,CH4,3.9,kg/TJ,3223.1978906399995,kg -05f1cbd4-3d23-365f-8766-f92bd9c60ac6,SESCO,II.1.1,Capital Federal,AR-C,annual,2011,gas oil combustion consumption by public passenger transport,826.4609975999999,TJ,N2O,3.9,kg/TJ,3223.1978906399995,kg -ac5de0c4-caf8-396d-a0f0-32a1b67c138e,SESCO,II.1.1,Chubut,AR-U,annual,2011,gas oil combustion consumption by public passenger transport,235.36080959999998,TJ,CO2,74100.0,kg/TJ,17440235.991359998,kg -7139fb7e-3d8a-35ac-8afc-bf06a455759c,SESCO,II.1.1,Chubut,AR-U,annual,2011,gas oil combustion consumption by public passenger transport,235.36080959999998,TJ,CH4,3.9,kg/TJ,917.9071574399999,kg -7139fb7e-3d8a-35ac-8afc-bf06a455759c,SESCO,II.1.1,Chubut,AR-U,annual,2011,gas oil combustion consumption by public passenger transport,235.36080959999998,TJ,N2O,3.9,kg/TJ,917.9071574399999,kg -428889fa-684f-39f0-9576-01fb3be82b74,SESCO,II.1.1,Córdoba,AR-X,annual,2011,gas oil combustion consumption by public passenger transport,13.96941,TJ,CO2,74100.0,kg/TJ,1035133.281,kg -dd0aef25-7d14-3003-b9dd-788824b46131,SESCO,II.1.1,Córdoba,AR-X,annual,2011,gas oil combustion consumption by public passenger transport,13.96941,TJ,CH4,3.9,kg/TJ,54.480699,kg -dd0aef25-7d14-3003-b9dd-788824b46131,SESCO,II.1.1,Córdoba,AR-X,annual,2011,gas oil combustion consumption by public passenger transport,13.96941,TJ,N2O,3.9,kg/TJ,54.480699,kg -47596a0d-35fc-3584-8e3b-82948bab8fa5,SESCO,II.1.1,Entre Rios,AR-E,annual,2011,gas oil combustion consumption by public passenger transport,234.65791439999998,TJ,CO2,74100.0,kg/TJ,17388151.457039997,kg -2437ffbd-6ce3-3f12-9708-f3027bac61c9,SESCO,II.1.1,Entre Rios,AR-E,annual,2011,gas oil combustion consumption by public passenger transport,234.65791439999998,TJ,CH4,3.9,kg/TJ,915.16586616,kg -2437ffbd-6ce3-3f12-9708-f3027bac61c9,SESCO,II.1.1,Entre Rios,AR-E,annual,2011,gas oil combustion consumption by public passenger transport,234.65791439999998,TJ,N2O,3.9,kg/TJ,915.16586616,kg -146f4ebb-b478-3957-8d7e-d46eabefd045,SESCO,II.1.1,La Pampa,AR-L,annual,2011,gas oil combustion consumption by public passenger transport,68.714688,TJ,CO2,74100.0,kg/TJ,5091758.380799999,kg -d3587fef-235e-3887-8baf-d8e0b6b511bd,SESCO,II.1.1,La Pampa,AR-L,annual,2011,gas oil combustion consumption by public passenger transport,68.714688,TJ,CH4,3.9,kg/TJ,267.9872832,kg -d3587fef-235e-3887-8baf-d8e0b6b511bd,SESCO,II.1.1,La Pampa,AR-L,annual,2011,gas oil combustion consumption by public passenger transport,68.714688,TJ,N2O,3.9,kg/TJ,267.9872832,kg -0f19e6b4-4a6d-3eb7-898f-194c33b93c28,SESCO,II.1.1,Mendoza,AR-M,annual,2011,gas oil combustion consumption by public passenger transport,97.9354068,TJ,CO2,74100.0,kg/TJ,7257013.643879999,kg -094fb7e6-4f2d-34f2-8511-35490a769939,SESCO,II.1.1,Mendoza,AR-M,annual,2011,gas oil combustion consumption by public passenger transport,97.9354068,TJ,CH4,3.9,kg/TJ,381.94808651999995,kg -094fb7e6-4f2d-34f2-8511-35490a769939,SESCO,II.1.1,Mendoza,AR-M,annual,2011,gas oil combustion consumption by public passenger transport,97.9354068,TJ,N2O,3.9,kg/TJ,381.94808651999995,kg -c9320f26-14a5-394a-95b0-99d6a8f078e4,SESCO,II.1.1,Misiones,AR-N,annual,2011,gas oil combustion consumption by public passenger transport,470.6566032,TJ,CO2,74100.0,kg/TJ,34875654.29712,kg -e8f1e052-84ad-32a1-9aaf-b609627b3f3f,SESCO,II.1.1,Misiones,AR-N,annual,2011,gas oil combustion consumption by public passenger transport,470.6566032,TJ,CH4,3.9,kg/TJ,1835.56075248,kg -e8f1e052-84ad-32a1-9aaf-b609627b3f3f,SESCO,II.1.1,Misiones,AR-N,annual,2011,gas oil combustion consumption by public passenger transport,470.6566032,TJ,N2O,3.9,kg/TJ,1835.56075248,kg -548e8357-a7c3-39bf-b521-c1bbebdf31bd,SESCO,II.1.1,Neuquén,AR-Q,annual,2011,gas oil combustion consumption by public passenger transport,25.0625844,TJ,CO2,74100.0,kg/TJ,1857137.5040399998,kg -01462fbc-268d-3a9e-96d2-e57ef81edbfc,SESCO,II.1.1,Neuquén,AR-Q,annual,2011,gas oil combustion consumption by public passenger transport,25.0625844,TJ,CH4,3.9,kg/TJ,97.74407916,kg -01462fbc-268d-3a9e-96d2-e57ef81edbfc,SESCO,II.1.1,Neuquén,AR-Q,annual,2011,gas oil combustion consumption by public passenger transport,25.0625844,TJ,N2O,3.9,kg/TJ,97.74407916,kg -7db80599-f60e-3bdf-b62f-7b289e8ece4d,SESCO,II.1.1,Rio Negro,AR-R,annual,2011,gas oil combustion consumption by public passenger transport,168.5384484,TJ,CO2,74100.0,kg/TJ,12488699.02644,kg -50a50c52-369a-3520-a6a8-35a9dac563cb,SESCO,II.1.1,Rio Negro,AR-R,annual,2011,gas oil combustion consumption by public passenger transport,168.5384484,TJ,CH4,3.9,kg/TJ,657.29994876,kg -50a50c52-369a-3520-a6a8-35a9dac563cb,SESCO,II.1.1,Rio Negro,AR-R,annual,2011,gas oil combustion consumption by public passenger transport,168.5384484,TJ,N2O,3.9,kg/TJ,657.29994876,kg -4e491e4a-13fe-39c5-ae28-8f7f35d63669,SESCO,II.1.1,Salta,AR-A,annual,2011,gas oil combustion consumption by public passenger transport,20.057436,TJ,CO2,74100.0,kg/TJ,1486256.0076,kg -567aad91-bab6-37dc-98d9-9b457cb3e401,SESCO,II.1.1,Salta,AR-A,annual,2011,gas oil combustion consumption by public passenger transport,20.057436,TJ,CH4,3.9,kg/TJ,78.2240004,kg -567aad91-bab6-37dc-98d9-9b457cb3e401,SESCO,II.1.1,Salta,AR-A,annual,2011,gas oil combustion consumption by public passenger transport,20.057436,TJ,N2O,3.9,kg/TJ,78.2240004,kg -1a6bcf2e-9006-367a-8656-79b6bf93f0c0,SESCO,II.1.1,San Juan,AR-J,annual,2011,gas oil combustion consumption by public passenger transport,5.3020548,TJ,CO2,74100.0,kg/TJ,392882.26067999995,kg -1d9ded26-1d21-3382-8145-78bafc10ab9a,SESCO,II.1.1,San Juan,AR-J,annual,2011,gas oil combustion consumption by public passenger transport,5.3020548,TJ,CH4,3.9,kg/TJ,20.67801372,kg -1d9ded26-1d21-3382-8145-78bafc10ab9a,SESCO,II.1.1,San Juan,AR-J,annual,2011,gas oil combustion consumption by public passenger transport,5.3020548,TJ,N2O,3.9,kg/TJ,20.67801372,kg -274529bc-f234-3c49-99e2-85f205c5abbd,SESCO,II.1.1,San Luis,AR-D,annual,2011,gas oil combustion consumption by public passenger transport,14.354087999999999,TJ,CO2,74100.0,kg/TJ,1063637.9208,kg -a81363a2-36a8-3cb4-9492-3b25fe85500d,SESCO,II.1.1,San Luis,AR-D,annual,2011,gas oil combustion consumption by public passenger transport,14.354087999999999,TJ,CH4,3.9,kg/TJ,55.98094319999999,kg -a81363a2-36a8-3cb4-9492-3b25fe85500d,SESCO,II.1.1,San Luis,AR-D,annual,2011,gas oil combustion consumption by public passenger transport,14.354087999999999,TJ,N2O,3.9,kg/TJ,55.98094319999999,kg -f61cb9ac-a430-30eb-b85c-9895a8216455,SESCO,II.1.1,Santa Fe,AR-S,annual,2011,gas oil combustion consumption by public passenger transport,86.35641840000001,TJ,CO2,74100.0,kg/TJ,6399010.603440001,kg -91990363-bc60-3ddf-81be-e27f4ceff6c2,SESCO,II.1.1,Santa Fe,AR-S,annual,2011,gas oil combustion consumption by public passenger transport,86.35641840000001,TJ,CH4,3.9,kg/TJ,336.79003176000003,kg -91990363-bc60-3ddf-81be-e27f4ceff6c2,SESCO,II.1.1,Santa Fe,AR-S,annual,2011,gas oil combustion consumption by public passenger transport,86.35641840000001,TJ,N2O,3.9,kg/TJ,336.79003176000003,kg -65f41eb3-aba6-3e09-9200-0a1681684c32,SESCO,II.1.1,Tucuman,AR-T,annual,2011,gas oil combustion consumption by public passenger transport,4.786261199999999,TJ,CO2,74100.0,kg/TJ,354661.95491999993,kg -fa0f4c51-e2c6-329d-a8d2-18b13bb541bb,SESCO,II.1.1,Tucuman,AR-T,annual,2011,gas oil combustion consumption by public passenger transport,4.786261199999999,TJ,CH4,3.9,kg/TJ,18.666418679999996,kg -fa0f4c51-e2c6-329d-a8d2-18b13bb541bb,SESCO,II.1.1,Tucuman,AR-T,annual,2011,gas oil combustion consumption by public passenger transport,4.786261199999999,TJ,N2O,3.9,kg/TJ,18.666418679999996,kg -80309bcd-f882-3dfa-9b93-e69f812ad620,SESCO,II.1.1,Buenos Aires,AR-B,annual,2011,gas oil combustion consumption by public passenger transport,1.2725076000000002,TJ,CO2,74100.0,kg/TJ,94292.81316000002,kg -8ff655b0-1cea-31f1-b86b-66db754dda5d,SESCO,II.1.1,Buenos Aires,AR-B,annual,2011,gas oil combustion consumption by public passenger transport,1.2725076000000002,TJ,CH4,3.9,kg/TJ,4.962779640000001,kg -8ff655b0-1cea-31f1-b86b-66db754dda5d,SESCO,II.1.1,Buenos Aires,AR-B,annual,2011,gas oil combustion consumption by public passenger transport,1.2725076000000002,TJ,N2O,3.9,kg/TJ,4.962779640000001,kg -d2aff0be-ecc0-3d38-8a7d-b1e3ae62aaa0,SESCO,II.1.1,Capital Federal,AR-C,annual,2011,gas oil combustion consumption by public passenger transport,26.1949464,TJ,CO2,74100.0,kg/TJ,1941045.52824,kg -c2b691a1-d6c2-3f16-abb5-8ff29cf02a3b,SESCO,II.1.1,Capital Federal,AR-C,annual,2011,gas oil combustion consumption by public passenger transport,26.1949464,TJ,CH4,3.9,kg/TJ,102.16029096,kg -c2b691a1-d6c2-3f16-abb5-8ff29cf02a3b,SESCO,II.1.1,Capital Federal,AR-C,annual,2011,gas oil combustion consumption by public passenger transport,26.1949464,TJ,N2O,3.9,kg/TJ,102.16029096,kg -e5b9154b-6259-3ffd-9a15-e9c43a9601a8,SESCO,II.1.1,Chubut,AR-U,annual,2011,gas oil combustion consumption by public passenger transport,2.5576572,TJ,CO2,74100.0,kg/TJ,189522.39852,kg -21e6ce2b-3edc-3894-b380-7f2b345aa5c3,SESCO,II.1.1,Chubut,AR-U,annual,2011,gas oil combustion consumption by public passenger transport,2.5576572,TJ,CH4,3.9,kg/TJ,9.97486308,kg -21e6ce2b-3edc-3894-b380-7f2b345aa5c3,SESCO,II.1.1,Chubut,AR-U,annual,2011,gas oil combustion consumption by public passenger transport,2.5576572,TJ,N2O,3.9,kg/TJ,9.97486308,kg -4469763d-4ad8-3774-8888-cca0c5a15bae,SESCO,II.1.1,Córdoba,AR-X,annual,2011,gas oil combustion consumption by public passenger transport,0.1650684,TJ,CO2,74100.0,kg/TJ,12231.568440000001,kg -f6e72fd8-8d14-3e8d-b3e0-1ac1efb786aa,SESCO,II.1.1,Córdoba,AR-X,annual,2011,gas oil combustion consumption by public passenger transport,0.1650684,TJ,CH4,3.9,kg/TJ,0.64376676,kg -f6e72fd8-8d14-3e8d-b3e0-1ac1efb786aa,SESCO,II.1.1,Córdoba,AR-X,annual,2011,gas oil combustion consumption by public passenger transport,0.1650684,TJ,N2O,3.9,kg/TJ,0.64376676,kg -8d653517-8355-342f-8323-7cc7e0640380,SESCO,II.1.1,Entre Rios,AR-E,annual,2011,gas oil combustion consumption by public passenger transport,19.0392132,TJ,CO2,74100.0,kg/TJ,1410805.6981199998,kg -652cf498-300a-3ec4-b6f1-44514cfc08a6,SESCO,II.1.1,Entre Rios,AR-E,annual,2011,gas oil combustion consumption by public passenger transport,19.0392132,TJ,CH4,3.9,kg/TJ,74.25293148,kg -652cf498-300a-3ec4-b6f1-44514cfc08a6,SESCO,II.1.1,Entre Rios,AR-E,annual,2011,gas oil combustion consumption by public passenger transport,19.0392132,TJ,N2O,3.9,kg/TJ,74.25293148,kg -5e9e4fe5-4809-3347-ab03-3e1377446c81,SESCO,II.1.1,Mendoza,AR-M,annual,2011,gas oil combustion consumption by public passenger transport,0.1874628,TJ,CO2,74100.0,kg/TJ,13890.993480000001,kg -3fe5eb41-4765-36ab-8358-1c152ac36428,SESCO,II.1.1,Mendoza,AR-M,annual,2011,gas oil combustion consumption by public passenger transport,0.1874628,TJ,CH4,3.9,kg/TJ,0.73110492,kg -3fe5eb41-4765-36ab-8358-1c152ac36428,SESCO,II.1.1,Mendoza,AR-M,annual,2011,gas oil combustion consumption by public passenger transport,0.1874628,TJ,N2O,3.9,kg/TJ,0.73110492,kg -03a637d0-8589-3391-9590-d8dc25864ee7,SESCO,II.1.1,Misiones,AR-N,annual,2011,gas oil combustion consumption by public passenger transport,1.6329852,TJ,CO2,74100.0,kg/TJ,121004.20332,kg -43620ede-dc83-359f-bd4e-f15ac1f24b42,SESCO,II.1.1,Misiones,AR-N,annual,2011,gas oil combustion consumption by public passenger transport,1.6329852,TJ,CH4,3.9,kg/TJ,6.3686422799999995,kg -43620ede-dc83-359f-bd4e-f15ac1f24b42,SESCO,II.1.1,Misiones,AR-N,annual,2011,gas oil combustion consumption by public passenger transport,1.6329852,TJ,N2O,3.9,kg/TJ,6.3686422799999995,kg -165e5d07-ccea-306e-abcb-a91f9903a1b5,SESCO,II.1.1,Neuquén,AR-Q,annual,2011,gas oil combustion consumption by public passenger transport,0.3525312,TJ,CO2,74100.0,kg/TJ,26122.56192,kg -58cc3032-9f95-3d8f-8717-434826e537c2,SESCO,II.1.1,Neuquén,AR-Q,annual,2011,gas oil combustion consumption by public passenger transport,0.3525312,TJ,CH4,3.9,kg/TJ,1.3748716799999998,kg -58cc3032-9f95-3d8f-8717-434826e537c2,SESCO,II.1.1,Neuquén,AR-Q,annual,2011,gas oil combustion consumption by public passenger transport,0.3525312,TJ,N2O,3.9,kg/TJ,1.3748716799999998,kg -350e51ef-c633-3ec6-8dc7-2fd0ee719afd,SESCO,II.1.1,Rio Negro,AR-R,annual,2011,gas oil combustion consumption by public passenger transport,0.0476784,TJ,CO2,74100.0,kg/TJ,3532.9694400000003,kg -e159ca78-cbd2-3c02-a579-d6002338fe96,SESCO,II.1.1,Rio Negro,AR-R,annual,2011,gas oil combustion consumption by public passenger transport,0.0476784,TJ,CH4,3.9,kg/TJ,0.18594576000000002,kg -e159ca78-cbd2-3c02-a579-d6002338fe96,SESCO,II.1.1,Rio Negro,AR-R,annual,2011,gas oil combustion consumption by public passenger transport,0.0476784,TJ,N2O,3.9,kg/TJ,0.18594576000000002,kg -69559ae2-5659-392b-bc25-5132b47ead70,SESCO,II.1.1,Salta,AR-A,annual,2011,gas oil combustion consumption by public passenger transport,0.15459359999999997,TJ,CO2,74100.0,kg/TJ,11455.385759999997,kg -d9b3052e-10b7-3e5c-b142-687d70a0c85c,SESCO,II.1.1,Salta,AR-A,annual,2011,gas oil combustion consumption by public passenger transport,0.15459359999999997,TJ,CH4,3.9,kg/TJ,0.6029150399999998,kg -d9b3052e-10b7-3e5c-b142-687d70a0c85c,SESCO,II.1.1,Salta,AR-A,annual,2011,gas oil combustion consumption by public passenger transport,0.15459359999999997,TJ,N2O,3.9,kg/TJ,0.6029150399999998,kg -93c0d158-4bd0-3b11-9c6a-1f14f41c3601,SESCO,II.1.1,San Juan,AR-J,annual,2011,gas oil combustion consumption by public passenger transport,0.03864839999999999,TJ,CO2,74100.0,kg/TJ,2863.8464399999993,kg -1604c40e-7ba5-3b88-9aac-9667645158e4,SESCO,II.1.1,San Juan,AR-J,annual,2011,gas oil combustion consumption by public passenger transport,0.03864839999999999,TJ,CH4,3.9,kg/TJ,0.15072875999999996,kg -1604c40e-7ba5-3b88-9aac-9667645158e4,SESCO,II.1.1,San Juan,AR-J,annual,2011,gas oil combustion consumption by public passenger transport,0.03864839999999999,TJ,N2O,3.9,kg/TJ,0.15072875999999996,kg -ab591f3d-2958-3f74-bece-c0232a32154c,SESCO,II.1.1,San Luis,AR-D,annual,2011,gas oil combustion consumption by public passenger transport,0.0242004,TJ,CO2,74100.0,kg/TJ,1793.24964,kg -84c07d94-9177-37bb-b996-5c3e0c9dd32b,SESCO,II.1.1,San Luis,AR-D,annual,2011,gas oil combustion consumption by public passenger transport,0.0242004,TJ,CH4,3.9,kg/TJ,0.09438156,kg -84c07d94-9177-37bb-b996-5c3e0c9dd32b,SESCO,II.1.1,San Luis,AR-D,annual,2011,gas oil combustion consumption by public passenger transport,0.0242004,TJ,N2O,3.9,kg/TJ,0.09438156,kg -f7043895-6ca0-392a-94d9-61801f8fc039,SESCO,II.1.1,Santa Fe,AR-S,annual,2011,gas oil combustion consumption by public passenger transport,0.012280800000000001,TJ,CO2,74100.0,kg/TJ,910.0072800000002,kg -7cbb93d5-69db-3b69-b279-07bd8a28ebfb,SESCO,II.1.1,Santa Fe,AR-S,annual,2011,gas oil combustion consumption by public passenger transport,0.012280800000000001,TJ,CH4,3.9,kg/TJ,0.047895120000000006,kg -7cbb93d5-69db-3b69-b279-07bd8a28ebfb,SESCO,II.1.1,Santa Fe,AR-S,annual,2011,gas oil combustion consumption by public passenger transport,0.012280800000000001,TJ,N2O,3.9,kg/TJ,0.047895120000000006,kg -b4439a41-5faf-350a-af19-68284f1fe06c,SESCO,II.1.1,Tucuman,AR-T,annual,2011,gas oil combustion consumption by public passenger transport,0.059598,TJ,CO2,74100.0,kg/TJ,4416.2118,kg -3fefd840-1a91-3a4b-8ab4-ad8ee951833e,SESCO,II.1.1,Tucuman,AR-T,annual,2011,gas oil combustion consumption by public passenger transport,0.059598,TJ,CH4,3.9,kg/TJ,0.23243219999999998,kg -3fefd840-1a91-3a4b-8ab4-ad8ee951833e,SESCO,II.1.1,Tucuman,AR-T,annual,2011,gas oil combustion consumption by public passenger transport,0.059598,TJ,N2O,3.9,kg/TJ,0.23243219999999998,kg -f3768abf-ed74-33a1-9aa5-98fbc1bd52e4,SESCO,I.3.1,Santa Fe,AR-S,annual,2011,gasoline combustion consumption by petrochemical industries,1.1420540000000001,TJ,CO2,69300.0,kg/TJ,79144.34220000001,kg -23dea50b-8586-3e07-8ffb-e95d737145e3,SESCO,I.3.1,Santa Fe,AR-S,annual,2011,gasoline combustion consumption by petrochemical industries,1.1420540000000001,TJ,CH4,33.0,kg/TJ,37.687782000000006,kg -2a80504d-ba10-3571-814b-8229ae7caef0,SESCO,I.3.1,Santa Fe,AR-S,annual,2011,gasoline combustion consumption by petrochemical industries,1.1420540000000001,TJ,N2O,3.2,kg/TJ,3.6545728000000004,kg -1cd3080a-8f4f-3c26-b801-295ecc049c4f,SESCO,I.3.1,Santa Fe,AR-S,annual,2011,jet kerosene combustion consumption by petrochemical industries,6.119967474999998,TJ,CO2,71500.0,kg/TJ,437577.6744624999,kg -034d681d-c5ec-366d-9f86-b6cd1b6f15df,SESCO,I.3.1,Santa Fe,AR-S,annual,2011,jet kerosene combustion consumption by petrochemical industries,6.119967474999998,TJ,CH4,0.5,kg/TJ,3.059983737499999,kg -712df558-744c-3b94-ad98-27c5e2f2b33d,SESCO,I.3.1,Santa Fe,AR-S,annual,2011,jet kerosene combustion consumption by petrochemical industries,6.119967474999998,TJ,N2O,2.0,kg/TJ,12.239934949999997,kg -d72380e2-9c34-3f09-b53b-2c4c63e252a7,SESCO,II.1.1,Mendoza,AR-M,annual,2011,gasoline combustion consumption by public passenger transport,70.66027199999999,TJ,CO2,69300.0,kg/TJ,4896756.849599999,kg -e8de0528-d641-336a-85c5-49411e43d232,SESCO,II.1.1,Mendoza,AR-M,annual,2011,gasoline combustion consumption by public passenger transport,70.66027199999999,TJ,CH4,33.0,kg/TJ,2331.788976,kg -8e3ac6c2-15a1-3b92-95d5-b1541529abf2,SESCO,II.1.1,Mendoza,AR-M,annual,2011,gasoline combustion consumption by public passenger transport,70.66027199999999,TJ,N2O,3.2,kg/TJ,226.1128704,kg -b393ec0d-af8b-3d13-9afb-7f9cf4d7161f,SESCO,II.5.1,Buenos Aires,AR-B,annual,2011,gas oil combustion consumption by agriculture machines,191.10635082,TJ,CO2,74100.0,kg/TJ,14160980.595762,kg -15c609d7-2a73-375e-b2ca-cf94c24217ca,SESCO,II.5.1,Buenos Aires,AR-B,annual,2011,gas oil combustion consumption by agriculture machines,191.10635082,TJ,CH4,3.9,kg/TJ,745.3147681979999,kg -15c609d7-2a73-375e-b2ca-cf94c24217ca,SESCO,II.5.1,Buenos Aires,AR-B,annual,2011,gas oil combustion consumption by agriculture machines,191.10635082,TJ,N2O,3.9,kg/TJ,745.3147681979999,kg -ee9716c0-2cbb-3404-85a4-4bb13ba3bd93,SESCO,II.5.1,Córdoba,AR-X,annual,2011,gas oil combustion consumption by agriculture machines,321.05828361600004,TJ,CO2,74100.0,kg/TJ,23790418.815945603,kg -585ead09-2266-3bba-81f2-cd0483fd4e88,SESCO,II.5.1,Córdoba,AR-X,annual,2011,gas oil combustion consumption by agriculture machines,321.05828361600004,TJ,CH4,3.9,kg/TJ,1252.1273061024,kg -585ead09-2266-3bba-81f2-cd0483fd4e88,SESCO,II.5.1,Córdoba,AR-X,annual,2011,gas oil combustion consumption by agriculture machines,321.05828361600004,TJ,N2O,3.9,kg/TJ,1252.1273061024,kg -4748b2cf-0a3a-3d10-b102-7a0677ba6841,SESCO,II.5.1,Entre Rios,AR-E,annual,2011,gas oil combustion consumption by agriculture machines,277.385425464,TJ,CO2,74100.0,kg/TJ,20554260.0268824,kg -97a14368-95fd-3046-a746-d3266152509f,SESCO,II.5.1,Entre Rios,AR-E,annual,2011,gas oil combustion consumption by agriculture machines,277.385425464,TJ,CH4,3.9,kg/TJ,1081.8031593096,kg -97a14368-95fd-3046-a746-d3266152509f,SESCO,II.5.1,Entre Rios,AR-E,annual,2011,gas oil combustion consumption by agriculture machines,277.385425464,TJ,N2O,3.9,kg/TJ,1081.8031593096,kg -9bdc48ba-06d7-3207-a1de-e15b9b0b1c2f,SESCO,II.5.1,La Pampa,AR-L,annual,2011,gas oil combustion consumption by agriculture machines,14.617149959999999,TJ,CO2,74100.0,kg/TJ,1083130.812036,kg -c0efd6bd-f22d-3791-9dde-405bfabfbeda,SESCO,II.5.1,La Pampa,AR-L,annual,2011,gas oil combustion consumption by agriculture machines,14.617149959999999,TJ,CH4,3.9,kg/TJ,57.006884844,kg -c0efd6bd-f22d-3791-9dde-405bfabfbeda,SESCO,II.5.1,La Pampa,AR-L,annual,2011,gas oil combustion consumption by agriculture machines,14.617149959999999,TJ,N2O,3.9,kg/TJ,57.006884844,kg -3de0ab25-31e1-3a98-8f3f-d3bd84c582af,SESCO,II.5.1,Salta,AR-A,annual,2011,gas oil combustion consumption by agriculture machines,56.501331264,TJ,CO2,74100.0,kg/TJ,4186748.6466624,kg -4abe56c9-94ca-3821-b5b0-5be5e920121f,SESCO,II.5.1,Salta,AR-A,annual,2011,gas oil combustion consumption by agriculture machines,56.501331264,TJ,CH4,3.9,kg/TJ,220.3551919296,kg -4abe56c9-94ca-3821-b5b0-5be5e920121f,SESCO,II.5.1,Salta,AR-A,annual,2011,gas oil combustion consumption by agriculture machines,56.501331264,TJ,N2O,3.9,kg/TJ,220.3551919296,kg -59b5db2d-bb77-3d3e-957d-009756edba55,SESCO,II.5.1,Santa Fe,AR-S,annual,2011,gas oil combustion consumption by agriculture machines,248.768069592,TJ,CO2,74100.0,kg/TJ,18433713.956767198,kg -85360e45-8e33-321e-8bbb-acf3849955db,SESCO,II.5.1,Santa Fe,AR-S,annual,2011,gas oil combustion consumption by agriculture machines,248.768069592,TJ,CH4,3.9,kg/TJ,970.1954714087999,kg -85360e45-8e33-321e-8bbb-acf3849955db,SESCO,II.5.1,Santa Fe,AR-S,annual,2011,gas oil combustion consumption by agriculture machines,248.768069592,TJ,N2O,3.9,kg/TJ,970.1954714087999,kg -c638f968-e0af-3592-8093-29068e69a023,SESCO,II.5.1,Santiago del Estero,AR-G,annual,2011,gas oil combustion consumption by agriculture machines,104.99442147599999,TJ,CO2,74100.0,kg/TJ,7780086.631371599,kg -83c2d3a3-dd3b-307e-b867-0dbb1ff6b205,SESCO,II.5.1,Santiago del Estero,AR-G,annual,2011,gas oil combustion consumption by agriculture machines,104.99442147599999,TJ,CH4,3.9,kg/TJ,409.47824375639993,kg -83c2d3a3-dd3b-307e-b867-0dbb1ff6b205,SESCO,II.5.1,Santiago del Estero,AR-G,annual,2011,gas oil combustion consumption by agriculture machines,104.99442147599999,TJ,N2O,3.9,kg/TJ,409.47824375639993,kg -12caae67-a2d2-3397-b423-c610efab064a,SESCO,II.1.1,Buenos Aires,AR-B,annual,2011,gas oil combustion consumption by to the public,3343.6922023679995,TJ,CO2,74100.0,kg/TJ,247767592.19546875,kg -02ddcde0-1873-3623-ba8d-616582529c12,SESCO,II.1.1,Buenos Aires,AR-B,annual,2011,gas oil combustion consumption by to the public,3343.6922023679995,TJ,CH4,3.9,kg/TJ,13040.399589235198,kg -02ddcde0-1873-3623-ba8d-616582529c12,SESCO,II.1.1,Buenos Aires,AR-B,annual,2011,gas oil combustion consumption by to the public,3343.6922023679995,TJ,N2O,3.9,kg/TJ,13040.399589235198,kg -29abdf27-86c9-3e9b-834f-858e3699aef0,SESCO,II.1.1,Capital Federal,AR-C,annual,2011,gas oil combustion consumption by to the public,369.96233635199997,TJ,CO2,74100.0,kg/TJ,27414209.1236832,kg -33827833-5aab-381d-98c7-5824cd04a598,SESCO,II.1.1,Capital Federal,AR-C,annual,2011,gas oil combustion consumption by to the public,369.96233635199997,TJ,CH4,3.9,kg/TJ,1442.8531117727998,kg -33827833-5aab-381d-98c7-5824cd04a598,SESCO,II.1.1,Capital Federal,AR-C,annual,2011,gas oil combustion consumption by to the public,369.96233635199997,TJ,N2O,3.9,kg/TJ,1442.8531117727998,kg -5b5e9cd1-5545-3bee-a1de-cb252ac76fff,SESCO,II.1.1,Catamarca,AR-K,annual,2011,gas oil combustion consumption by to the public,95.235295932,TJ,CO2,74100.0,kg/TJ,7056935.4285612,kg -23ee218a-f349-339c-9f34-8bfb1168552f,SESCO,II.1.1,Catamarca,AR-K,annual,2011,gas oil combustion consumption by to the public,95.235295932,TJ,CH4,3.9,kg/TJ,371.4176541348,kg -23ee218a-f349-339c-9f34-8bfb1168552f,SESCO,II.1.1,Catamarca,AR-K,annual,2011,gas oil combustion consumption by to the public,95.235295932,TJ,N2O,3.9,kg/TJ,371.4176541348,kg -82110412-4789-3f30-960f-4fd333dfe9d0,SESCO,II.1.1,Chaco,AR-H,annual,2011,gas oil combustion consumption by to the public,432.213426204,TJ,CO2,74100.0,kg/TJ,32027014.881716397,kg -b63cf728-3138-3a4b-815e-8838f74013ab,SESCO,II.1.1,Chaco,AR-H,annual,2011,gas oil combustion consumption by to the public,432.213426204,TJ,CH4,3.9,kg/TJ,1685.6323621955999,kg -b63cf728-3138-3a4b-815e-8838f74013ab,SESCO,II.1.1,Chaco,AR-H,annual,2011,gas oil combustion consumption by to the public,432.213426204,TJ,N2O,3.9,kg/TJ,1685.6323621955999,kg -e1dc4603-852b-30b5-a378-614dcc113f6b,SESCO,II.1.1,Corrientes,AR-W,annual,2011,gas oil combustion consumption by to the public,691.9724433719999,TJ,CO2,74100.0,kg/TJ,51275158.053865194,kg -d18f216f-c735-3a7c-94eb-6c079646b089,SESCO,II.1.1,Corrientes,AR-W,annual,2011,gas oil combustion consumption by to the public,691.9724433719999,TJ,CH4,3.9,kg/TJ,2698.6925291507996,kg -d18f216f-c735-3a7c-94eb-6c079646b089,SESCO,II.1.1,Corrientes,AR-W,annual,2011,gas oil combustion consumption by to the public,691.9724433719999,TJ,N2O,3.9,kg/TJ,2698.6925291507996,kg -146104bb-e236-348e-aeb2-7db0d5d19e96,SESCO,II.1.1,Córdoba,AR-X,annual,2011,gas oil combustion consumption by to the public,1527.788495688,TJ,CO2,74100.0,kg/TJ,113209127.5304808,kg -3ef76f61-3873-304f-b8b1-b2bbec928cbc,SESCO,II.1.1,Córdoba,AR-X,annual,2011,gas oil combustion consumption by to the public,1527.788495688,TJ,CH4,3.9,kg/TJ,5958.3751331832,kg -3ef76f61-3873-304f-b8b1-b2bbec928cbc,SESCO,II.1.1,Córdoba,AR-X,annual,2011,gas oil combustion consumption by to the public,1527.788495688,TJ,N2O,3.9,kg/TJ,5958.3751331832,kg -2c2546b3-7f71-384e-8fea-a1c449d7bde7,SESCO,II.1.1,Entre Rios,AR-E,annual,2011,gas oil combustion consumption by to the public,834.5217571320001,TJ,CO2,74100.0,kg/TJ,61838062.203481205,kg -05f1004c-61a4-3be8-b935-244f4297f896,SESCO,II.1.1,Entre Rios,AR-E,annual,2011,gas oil combustion consumption by to the public,834.5217571320001,TJ,CH4,3.9,kg/TJ,3254.6348528148,kg -05f1004c-61a4-3be8-b935-244f4297f896,SESCO,II.1.1,Entre Rios,AR-E,annual,2011,gas oil combustion consumption by to the public,834.5217571320001,TJ,N2O,3.9,kg/TJ,3254.6348528148,kg -49612d7f-e6c5-3c34-9d96-1e5eade3b456,SESCO,II.1.1,Formosa,AR-P,annual,2011,gas oil combustion consumption by to the public,47.058461603999994,TJ,CO2,74100.0,kg/TJ,3487032.0048563997,kg -9c4a3c2e-5d05-3498-b52c-a1e21914d99e,SESCO,II.1.1,Formosa,AR-P,annual,2011,gas oil combustion consumption by to the public,47.058461603999994,TJ,CH4,3.9,kg/TJ,183.52800025559998,kg -9c4a3c2e-5d05-3498-b52c-a1e21914d99e,SESCO,II.1.1,Formosa,AR-P,annual,2011,gas oil combustion consumption by to the public,47.058461603999994,TJ,N2O,3.9,kg/TJ,183.52800025559998,kg -5aaf0d37-dc2d-3c7a-a440-75edce1bd137,SESCO,II.1.1,Jujuy,AR-Y,annual,2011,gas oil combustion consumption by to the public,22.397961432000002,TJ,CO2,74100.0,kg/TJ,1659688.9421112002,kg -67c63319-9c7e-37e6-a108-41146479b3f9,SESCO,II.1.1,Jujuy,AR-Y,annual,2011,gas oil combustion consumption by to the public,22.397961432000002,TJ,CH4,3.9,kg/TJ,87.35204958480001,kg -67c63319-9c7e-37e6-a108-41146479b3f9,SESCO,II.1.1,Jujuy,AR-Y,annual,2011,gas oil combustion consumption by to the public,22.397961432000002,TJ,N2O,3.9,kg/TJ,87.35204958480001,kg -dcd8791a-72dd-3a0f-9782-ae5e762b975e,SESCO,II.1.1,La Pampa,AR-L,annual,2011,gas oil combustion consumption by to the public,47.52839364,TJ,CO2,74100.0,kg/TJ,3521853.968724,kg -4eea89c2-ea28-366b-833e-d7630ff1550f,SESCO,II.1.1,La Pampa,AR-L,annual,2011,gas oil combustion consumption by to the public,47.52839364,TJ,CH4,3.9,kg/TJ,185.36073519599998,kg -4eea89c2-ea28-366b-833e-d7630ff1550f,SESCO,II.1.1,La Pampa,AR-L,annual,2011,gas oil combustion consumption by to the public,47.52839364,TJ,N2O,3.9,kg/TJ,185.36073519599998,kg -ae2926bf-79a5-3203-8feb-748c44b9407f,SESCO,II.1.1,La Rioja,AR-F,annual,2011,gas oil combustion consumption by to the public,43.830088511999996,TJ,CO2,74100.0,kg/TJ,3247809.5587392,kg -4fa8a308-19d8-3a0e-b651-1f3add292396,SESCO,II.1.1,La Rioja,AR-F,annual,2011,gas oil combustion consumption by to the public,43.830088511999996,TJ,CH4,3.9,kg/TJ,170.93734519679998,kg -4fa8a308-19d8-3a0e-b651-1f3add292396,SESCO,II.1.1,La Rioja,AR-F,annual,2011,gas oil combustion consumption by to the public,43.830088511999996,TJ,N2O,3.9,kg/TJ,170.93734519679998,kg -e813ffcf-9367-3698-8433-dac956a3d7c1,SESCO,II.1.1,Mendoza,AR-M,annual,2011,gas oil combustion consumption by to the public,429.168835284,TJ,CO2,74100.0,kg/TJ,31801410.6945444,kg -3fe92c51-53fa-3b2f-aae3-38122bef95d1,SESCO,II.1.1,Mendoza,AR-M,annual,2011,gas oil combustion consumption by to the public,429.168835284,TJ,CH4,3.9,kg/TJ,1673.7584576076,kg -3fe92c51-53fa-3b2f-aae3-38122bef95d1,SESCO,II.1.1,Mendoza,AR-M,annual,2011,gas oil combustion consumption by to the public,429.168835284,TJ,N2O,3.9,kg/TJ,1673.7584576076,kg -b1c1baf3-8991-3ebf-8560-4226536a2145,SESCO,II.1.1,Misiones,AR-N,annual,2011,gas oil combustion consumption by to the public,192.71460104399998,TJ,CO2,74100.0,kg/TJ,14280151.937360398,kg -28a2881e-8ee6-3ad5-abac-fd57f8a059bb,SESCO,II.1.1,Misiones,AR-N,annual,2011,gas oil combustion consumption by to the public,192.71460104399998,TJ,CH4,3.9,kg/TJ,751.5869440715999,kg -28a2881e-8ee6-3ad5-abac-fd57f8a059bb,SESCO,II.1.1,Misiones,AR-N,annual,2011,gas oil combustion consumption by to the public,192.71460104399998,TJ,N2O,3.9,kg/TJ,751.5869440715999,kg -a8d86c94-33f6-30c9-8792-8e815a009f0e,SESCO,II.1.1,Salta,AR-A,annual,2011,gas oil combustion consumption by to the public,6.529589388,TJ,CO2,74100.0,kg/TJ,483842.5736508,kg -7982a888-ea03-3ecb-ae08-a3747b5f8620,SESCO,II.1.1,Salta,AR-A,annual,2011,gas oil combustion consumption by to the public,6.529589388,TJ,CH4,3.9,kg/TJ,25.465398613199998,kg -7982a888-ea03-3ecb-ae08-a3747b5f8620,SESCO,II.1.1,Salta,AR-A,annual,2011,gas oil combustion consumption by to the public,6.529589388,TJ,N2O,3.9,kg/TJ,25.465398613199998,kg -785152b5-d18f-3034-9cd6-310666f6ebec,SESCO,II.1.1,San Juan,AR-J,annual,2011,gas oil combustion consumption by to the public,298.811271276,TJ,CO2,74100.0,kg/TJ,22141915.2015516,kg -b0ab55f6-215f-303b-9d6c-8744de174be4,SESCO,II.1.1,San Juan,AR-J,annual,2011,gas oil combustion consumption by to the public,298.811271276,TJ,CH4,3.9,kg/TJ,1165.3639579764001,kg -b0ab55f6-215f-303b-9d6c-8744de174be4,SESCO,II.1.1,San Juan,AR-J,annual,2011,gas oil combustion consumption by to the public,298.811271276,TJ,N2O,3.9,kg/TJ,1165.3639579764001,kg -06c86422-128d-3a5b-9e34-1ce6ff2a842a,SESCO,II.1.1,San Luis,AR-D,annual,2011,gas oil combustion consumption by to the public,180.195701616,TJ,CO2,74100.0,kg/TJ,13352501.4897456,kg -f18604c7-fcc2-3046-9c0f-c5bb925fd965,SESCO,II.1.1,San Luis,AR-D,annual,2011,gas oil combustion consumption by to the public,180.195701616,TJ,CH4,3.9,kg/TJ,702.7632363024001,kg -f18604c7-fcc2-3046-9c0f-c5bb925fd965,SESCO,II.1.1,San Luis,AR-D,annual,2011,gas oil combustion consumption by to the public,180.195701616,TJ,N2O,3.9,kg/TJ,702.7632363024001,kg -db7e5156-f4ef-36b1-800f-cc56ec622788,SESCO,II.1.1,Santa Fe,AR-S,annual,2011,gas oil combustion consumption by to the public,2646.431548992,TJ,CO2,74100.0,kg/TJ,196100577.7803072,kg -be10e383-9ced-3b45-b1a0-f2e85e978aba,SESCO,II.1.1,Santa Fe,AR-S,annual,2011,gas oil combustion consumption by to the public,2646.431548992,TJ,CH4,3.9,kg/TJ,10321.0830410688,kg -be10e383-9ced-3b45-b1a0-f2e85e978aba,SESCO,II.1.1,Santa Fe,AR-S,annual,2011,gas oil combustion consumption by to the public,2646.431548992,TJ,N2O,3.9,kg/TJ,10321.0830410688,kg -b1a6f662-e64d-3602-a1b0-5f2536b3b3c1,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2011,gas oil combustion consumption by to the public,163.371113976,TJ,CO2,74100.0,kg/TJ,12105799.5456216,kg -7e372657-9719-3cfc-8e82-d358ace6196f,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2011,gas oil combustion consumption by to the public,163.371113976,TJ,CH4,3.9,kg/TJ,637.1473445064,kg -7e372657-9719-3cfc-8e82-d358ace6196f,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2011,gas oil combustion consumption by to the public,163.371113976,TJ,N2O,3.9,kg/TJ,637.1473445064,kg -8355acae-c9d9-31c3-800e-50609b5c909f,SESCO,II.1.1,Tucuman,AR-T,annual,2011,gas oil combustion consumption by to the public,388.434711168,TJ,CO2,74100.0,kg/TJ,28783012.097548798,kg -b797bdfb-abce-3bf0-b79b-bd6b95f16dc2,SESCO,II.1.1,Tucuman,AR-T,annual,2011,gas oil combustion consumption by to the public,388.434711168,TJ,CH4,3.9,kg/TJ,1514.8953735552,kg -b797bdfb-abce-3bf0-b79b-bd6b95f16dc2,SESCO,II.1.1,Tucuman,AR-T,annual,2011,gas oil combustion consumption by to the public,388.434711168,TJ,N2O,3.9,kg/TJ,1514.8953735552,kg -5f637b04-321a-39ef-91aa-ffc9e6b856c9,SESCO,II.1.1,Buenos Aires,AR-B,annual,2011,gas oil combustion consumption by public passenger transport,160.13929503600002,TJ,CO2,74100.0,kg/TJ,11866321.7621676,kg -a64d310d-4c90-3924-9d4b-4ac3481dc002,SESCO,II.1.1,Buenos Aires,AR-B,annual,2011,gas oil combustion consumption by public passenger transport,160.13929503600002,TJ,CH4,3.9,kg/TJ,624.5432506404001,kg -a64d310d-4c90-3924-9d4b-4ac3481dc002,SESCO,II.1.1,Buenos Aires,AR-B,annual,2011,gas oil combustion consumption by public passenger transport,160.13929503600002,TJ,N2O,3.9,kg/TJ,624.5432506404001,kg -b9ea86fd-ac8a-3a93-b3f7-2242f657c4f4,SESCO,II.1.1,Capital Federal,AR-C,annual,2011,gas oil combustion consumption by public passenger transport,54.605540556,TJ,CO2,74100.0,kg/TJ,4046270.5551996003,kg -bd6e1822-544b-33b6-aa07-d816a53c4afd,SESCO,II.1.1,Capital Federal,AR-C,annual,2011,gas oil combustion consumption by public passenger transport,54.605540556,TJ,CH4,3.9,kg/TJ,212.9616081684,kg -bd6e1822-544b-33b6-aa07-d816a53c4afd,SESCO,II.1.1,Capital Federal,AR-C,annual,2011,gas oil combustion consumption by public passenger transport,54.605540556,TJ,N2O,3.9,kg/TJ,212.9616081684,kg -b80f4174-0b26-31d4-a18c-25d37edca007,SESCO,II.1.1,Córdoba,AR-X,annual,2011,gas oil combustion consumption by public passenger transport,16.585162608,TJ,CO2,74100.0,kg/TJ,1228960.5492528002,kg -50a3dffb-3377-31a5-a8b3-fc725925b549,SESCO,II.1.1,Córdoba,AR-X,annual,2011,gas oil combustion consumption by public passenger transport,16.585162608,TJ,CH4,3.9,kg/TJ,64.6821341712,kg -50a3dffb-3377-31a5-a8b3-fc725925b549,SESCO,II.1.1,Córdoba,AR-X,annual,2011,gas oil combustion consumption by public passenger transport,16.585162608,TJ,N2O,3.9,kg/TJ,64.6821341712,kg -aa453193-38c4-3e74-a399-c6a331ab5541,SESCO,II.1.1,Entre Rios,AR-E,annual,2011,gas oil combustion consumption by public passenger transport,47.282864328,TJ,CO2,74100.0,kg/TJ,3503660.2467048,kg -b5bdd0f9-89c6-3efc-ad52-0a2876b88df6,SESCO,II.1.1,Entre Rios,AR-E,annual,2011,gas oil combustion consumption by public passenger transport,47.282864328,TJ,CH4,3.9,kg/TJ,184.40317087920002,kg -b5bdd0f9-89c6-3efc-ad52-0a2876b88df6,SESCO,II.1.1,Entre Rios,AR-E,annual,2011,gas oil combustion consumption by public passenger transport,47.282864328,TJ,N2O,3.9,kg/TJ,184.40317087920002,kg -07b1fe91-61f2-3468-8577-b288ce939b44,SESCO,II.1.1,San Juan,AR-J,annual,2011,gas oil combustion consumption by public passenger transport,2.9883340200000004,TJ,CO2,74100.0,kg/TJ,221435.55088200004,kg -35af190f-6d05-3916-975b-791ed96e3af4,SESCO,II.1.1,San Juan,AR-J,annual,2011,gas oil combustion consumption by public passenger transport,2.9883340200000004,TJ,CH4,3.9,kg/TJ,11.654502678000002,kg -35af190f-6d05-3916-975b-791ed96e3af4,SESCO,II.1.1,San Juan,AR-J,annual,2011,gas oil combustion consumption by public passenger transport,2.9883340200000004,TJ,N2O,3.9,kg/TJ,11.654502678000002,kg -aaa0d03c-db10-3606-b601-07bb446aba78,SESCO,II.1.1,Santa Fe,AR-S,annual,2011,gas oil combustion consumption by public passenger transport,306.30896696400004,TJ,CO2,74100.0,kg/TJ,22697494.452032402,kg -c7ca8fd1-8161-3327-9608-7df700b6c02b,SESCO,II.1.1,Santa Fe,AR-S,annual,2011,gas oil combustion consumption by public passenger transport,306.30896696400004,TJ,CH4,3.9,kg/TJ,1194.6049711596002,kg -c7ca8fd1-8161-3327-9608-7df700b6c02b,SESCO,II.1.1,Santa Fe,AR-S,annual,2011,gas oil combustion consumption by public passenger transport,306.30896696400004,TJ,N2O,3.9,kg/TJ,1194.6049711596002,kg -6a9bba89-4036-3204-9ccb-179845b2ca6f,SESCO,II.5.1,Buenos Aires,AR-B,annual,2011,gasoline combustion consumption by agriculture machines,1.122562,TJ,CO2,69300.0,kg/TJ,77793.5466,kg -a1eea6b2-dde1-3975-b432-7eaf2ef6602e,SESCO,II.5.1,Buenos Aires,AR-B,annual,2011,gasoline combustion consumption by agriculture machines,1.122562,TJ,CH4,33.0,kg/TJ,37.044546000000004,kg -e8ede0b6-45f9-30e1-9c53-0b4f4c5a5a5d,SESCO,II.5.1,Buenos Aires,AR-B,annual,2011,gasoline combustion consumption by agriculture machines,1.122562,TJ,N2O,3.2,kg/TJ,3.5921984000000005,kg -371a3675-217f-3b38-ae98-17b3708cf09b,SESCO,II.5.1,Buenos Aires,AR-B,annual,2011,gas oil combustion consumption by agriculture machines,790.515999,TJ,CO2,74100.0,kg/TJ,58577235.5259,kg -7e6de7c3-b32e-3b7a-84bb-c09d3259a032,SESCO,II.5.1,Buenos Aires,AR-B,annual,2011,gas oil combustion consumption by agriculture machines,790.515999,TJ,CH4,3.9,kg/TJ,3083.0123961,kg -7e6de7c3-b32e-3b7a-84bb-c09d3259a032,SESCO,II.5.1,Buenos Aires,AR-B,annual,2011,gas oil combustion consumption by agriculture machines,790.515999,TJ,N2O,3.9,kg/TJ,3083.0123961,kg -4f8765ad-5df9-395e-b049-bd5d44012482,SESCO,II.5.1,Corrientes,AR-W,annual,2011,gas oil combustion consumption by agriculture machines,26.23019952,TJ,CO2,74100.0,kg/TJ,1943657.784432,kg -068f33c2-031b-3681-8a37-5058cefe687d,SESCO,II.5.1,Corrientes,AR-W,annual,2011,gas oil combustion consumption by agriculture machines,26.23019952,TJ,CH4,3.9,kg/TJ,102.29777812799999,kg -068f33c2-031b-3681-8a37-5058cefe687d,SESCO,II.5.1,Corrientes,AR-W,annual,2011,gas oil combustion consumption by agriculture machines,26.23019952,TJ,N2O,3.9,kg/TJ,102.29777812799999,kg -3ea6fbc7-bb6d-31ea-8608-206f1caad863,SESCO,II.5.1,Córdoba,AR-X,annual,2011,gas oil combustion consumption by agriculture machines,277.35363264,TJ,CO2,74100.0,kg/TJ,20551904.178624,kg -4160e508-d3af-33d4-8328-22c980bf8db8,SESCO,II.5.1,Córdoba,AR-X,annual,2011,gas oil combustion consumption by agriculture machines,277.35363264,TJ,CH4,3.9,kg/TJ,1081.679167296,kg -4160e508-d3af-33d4-8328-22c980bf8db8,SESCO,II.5.1,Córdoba,AR-X,annual,2011,gas oil combustion consumption by agriculture machines,277.35363264,TJ,N2O,3.9,kg/TJ,1081.679167296,kg -5597e492-9758-3d61-9b53-75ae24f11641,SESCO,II.5.1,Entre Rios,AR-E,annual,2011,gas oil combustion consumption by agriculture machines,180.15514608,TJ,CO2,74100.0,kg/TJ,13349496.324528001,kg -de6d916e-f383-3567-9537-5f03cc3c8a18,SESCO,II.5.1,Entre Rios,AR-E,annual,2011,gas oil combustion consumption by agriculture machines,180.15514608,TJ,CH4,3.9,kg/TJ,702.605069712,kg -de6d916e-f383-3567-9537-5f03cc3c8a18,SESCO,II.5.1,Entre Rios,AR-E,annual,2011,gas oil combustion consumption by agriculture machines,180.15514608,TJ,N2O,3.9,kg/TJ,702.605069712,kg -28d9e286-581f-3bd1-8197-0e47450819a4,SESCO,II.5.1,La Pampa,AR-L,annual,2011,gas oil combustion consumption by agriculture machines,17.00869128,TJ,CO2,74100.0,kg/TJ,1260344.023848,kg -eee427d5-8892-3d3f-8e5d-c1da1e00b1b8,SESCO,II.5.1,La Pampa,AR-L,annual,2011,gas oil combustion consumption by agriculture machines,17.00869128,TJ,CH4,3.9,kg/TJ,66.333895992,kg -eee427d5-8892-3d3f-8e5d-c1da1e00b1b8,SESCO,II.5.1,La Pampa,AR-L,annual,2011,gas oil combustion consumption by agriculture machines,17.00869128,TJ,N2O,3.9,kg/TJ,66.333895992,kg -7509f8f5-03e5-387c-a062-0c9ce60c6a81,SESCO,II.5.1,Rio Negro,AR-R,annual,2011,gas oil combustion consumption by agriculture machines,1.88651148,TJ,CO2,74100.0,kg/TJ,139790.500668,kg -f61a2415-ccc3-3a92-ba05-27f5c6f613b1,SESCO,II.5.1,Rio Negro,AR-R,annual,2011,gas oil combustion consumption by agriculture machines,1.88651148,TJ,CH4,3.9,kg/TJ,7.357394772,kg -f61a2415-ccc3-3a92-ba05-27f5c6f613b1,SESCO,II.5.1,Rio Negro,AR-R,annual,2011,gas oil combustion consumption by agriculture machines,1.88651148,TJ,N2O,3.9,kg/TJ,7.357394772,kg -08e0dfad-e75b-3eb1-a6a3-83d33eec5e5c,SESCO,II.5.1,Salta,AR-A,annual,2011,gas oil combustion consumption by agriculture machines,136.04919468,TJ,CO2,74100.0,kg/TJ,10081245.325788,kg -44e7acdb-ac0a-3549-9d38-36ce2d874c39,SESCO,II.5.1,Salta,AR-A,annual,2011,gas oil combustion consumption by agriculture machines,136.04919468,TJ,CH4,3.9,kg/TJ,530.591859252,kg -44e7acdb-ac0a-3549-9d38-36ce2d874c39,SESCO,II.5.1,Salta,AR-A,annual,2011,gas oil combustion consumption by agriculture machines,136.04919468,TJ,N2O,3.9,kg/TJ,530.591859252,kg -2a644335-4386-3737-8135-13150bc8b050,SESCO,II.5.1,Santa Cruz,AR-Z,annual,2011,gas oil combustion consumption by agriculture machines,14.32262748,TJ,CO2,74100.0,kg/TJ,1061306.696268,kg -b704bb02-89ef-31a4-a944-a56ef95ea2dc,SESCO,II.5.1,Santa Cruz,AR-Z,annual,2011,gas oil combustion consumption by agriculture machines,14.32262748,TJ,CH4,3.9,kg/TJ,55.858247172,kg -b704bb02-89ef-31a4-a944-a56ef95ea2dc,SESCO,II.5.1,Santa Cruz,AR-Z,annual,2011,gas oil combustion consumption by agriculture machines,14.32262748,TJ,N2O,3.9,kg/TJ,55.858247172,kg -03dfe5bc-c55d-3ffd-a0f7-76eace1c4c5d,SESCO,II.5.1,Santa Fe,AR-S,annual,2011,gas oil combustion consumption by agriculture machines,103.9188654,TJ,CO2,74100.0,kg/TJ,7700387.92614,kg -86d39460-83a8-3540-ab52-cd47f92ac59b,SESCO,II.5.1,Santa Fe,AR-S,annual,2011,gas oil combustion consumption by agriculture machines,103.9188654,TJ,CH4,3.9,kg/TJ,405.28357506,kg -86d39460-83a8-3540-ab52-cd47f92ac59b,SESCO,II.5.1,Santa Fe,AR-S,annual,2011,gas oil combustion consumption by agriculture machines,103.9188654,TJ,N2O,3.9,kg/TJ,405.28357506,kg -b3e0684f-fe62-3a72-ad9d-4fcfded4de82,SESCO,II.5.1,Santiago del Estero,AR-G,annual,2011,gas oil combustion consumption by agriculture machines,31.13341728,TJ,CO2,74100.0,kg/TJ,2306986.220448,kg -14d8f719-0c9e-33b5-87cc-30bb368e7036,SESCO,II.5.1,Santiago del Estero,AR-G,annual,2011,gas oil combustion consumption by agriculture machines,31.13341728,TJ,CH4,3.9,kg/TJ,121.42032739199999,kg -14d8f719-0c9e-33b5-87cc-30bb368e7036,SESCO,II.5.1,Santiago del Estero,AR-G,annual,2011,gas oil combustion consumption by agriculture machines,31.13341728,TJ,N2O,3.9,kg/TJ,121.42032739199999,kg -3c727b35-b86a-3214-8c31-c5f72d1ee4be,SESCO,II.1.1,Buenos Aires,AR-B,annual,2011,gas oil combustion consumption by to the public,13114.747662239999,TJ,CO2,74100.0,kg/TJ,971802801.771984,kg -28188b37-bcf8-3d76-8cb4-23f2b2a48502,SESCO,II.1.1,Buenos Aires,AR-B,annual,2011,gas oil combustion consumption by to the public,13114.747662239999,TJ,CH4,3.9,kg/TJ,51147.51588273599,kg -28188b37-bcf8-3d76-8cb4-23f2b2a48502,SESCO,II.1.1,Buenos Aires,AR-B,annual,2011,gas oil combustion consumption by to the public,13114.747662239999,TJ,N2O,3.9,kg/TJ,51147.51588273599,kg -b78838d2-c41a-3be5-a633-823434c88679,SESCO,II.1.1,Capital Federal,AR-C,annual,2011,gas oil combustion consumption by to the public,897.7778787599999,TJ,CO2,74100.0,kg/TJ,66525340.81611599,kg -6d7a1603-b142-3d86-8be3-57b35ae24568,SESCO,II.1.1,Capital Federal,AR-C,annual,2011,gas oil combustion consumption by to the public,897.7778787599999,TJ,CH4,3.9,kg/TJ,3501.3337271639994,kg -6d7a1603-b142-3d86-8be3-57b35ae24568,SESCO,II.1.1,Capital Federal,AR-C,annual,2011,gas oil combustion consumption by to the public,897.7778787599999,TJ,N2O,3.9,kg/TJ,3501.3337271639994,kg -e331f28a-ca35-35db-a905-55f427cc5b27,SESCO,II.1.1,Catamarca,AR-K,annual,2011,gas oil combustion consumption by to the public,51.65658456,TJ,CO2,74100.0,kg/TJ,3827752.915896,kg -e712c617-9c27-3841-981b-c26da01c6d80,SESCO,II.1.1,Catamarca,AR-K,annual,2011,gas oil combustion consumption by to the public,51.65658456,TJ,CH4,3.9,kg/TJ,201.46067978399998,kg -e712c617-9c27-3841-981b-c26da01c6d80,SESCO,II.1.1,Catamarca,AR-K,annual,2011,gas oil combustion consumption by to the public,51.65658456,TJ,N2O,3.9,kg/TJ,201.46067978399998,kg -5fe89b6e-4d1f-3866-bf1f-7293ed368f2d,SESCO,II.1.1,Chaco,AR-H,annual,2011,gas oil combustion consumption by to the public,193.32153624,TJ,CO2,74100.0,kg/TJ,14325125.835384,kg -35a74168-ed7f-37a5-bc65-b094d5302c9c,SESCO,II.1.1,Chaco,AR-H,annual,2011,gas oil combustion consumption by to the public,193.32153624,TJ,CH4,3.9,kg/TJ,753.953991336,kg -35a74168-ed7f-37a5-bc65-b094d5302c9c,SESCO,II.1.1,Chaco,AR-H,annual,2011,gas oil combustion consumption by to the public,193.32153624,TJ,N2O,3.9,kg/TJ,753.953991336,kg -8ffc0af2-b152-3ea1-8631-dd37bd719e56,SESCO,II.1.1,Chubut,AR-U,annual,2011,gas oil combustion consumption by to the public,1593.6278366400002,TJ,CO2,74100.0,kg/TJ,118087822.69502401,kg -917cfa85-a0eb-391a-8852-3efece2852bf,SESCO,II.1.1,Chubut,AR-U,annual,2011,gas oil combustion consumption by to the public,1593.6278366400002,TJ,CH4,3.9,kg/TJ,6215.148562896001,kg -917cfa85-a0eb-391a-8852-3efece2852bf,SESCO,II.1.1,Chubut,AR-U,annual,2011,gas oil combustion consumption by to the public,1593.6278366400002,TJ,N2O,3.9,kg/TJ,6215.148562896001,kg -878b95c5-9209-3ca8-897d-04df6e8337bb,SESCO,II.1.1,Corrientes,AR-W,annual,2011,gas oil combustion consumption by to the public,359.19844631999996,TJ,CO2,74100.0,kg/TJ,26616604.872312,kg -91ed2a4e-3515-3947-9c66-33350d140586,SESCO,II.1.1,Corrientes,AR-W,annual,2011,gas oil combustion consumption by to the public,359.19844631999996,TJ,CH4,3.9,kg/TJ,1400.873940648,kg -91ed2a4e-3515-3947-9c66-33350d140586,SESCO,II.1.1,Corrientes,AR-W,annual,2011,gas oil combustion consumption by to the public,359.19844631999996,TJ,N2O,3.9,kg/TJ,1400.873940648,kg -c9fa8ea6-00f7-37bc-8e54-0e9dfde149d1,SESCO,II.1.1,Córdoba,AR-X,annual,2011,gas oil combustion consumption by to the public,1840.79280672,TJ,CO2,74100.0,kg/TJ,136402746.977952,kg -8643ce6c-288b-33f8-813d-feb132ac82c8,SESCO,II.1.1,Córdoba,AR-X,annual,2011,gas oil combustion consumption by to the public,1840.79280672,TJ,CH4,3.9,kg/TJ,7179.091946208,kg -8643ce6c-288b-33f8-813d-feb132ac82c8,SESCO,II.1.1,Córdoba,AR-X,annual,2011,gas oil combustion consumption by to the public,1840.79280672,TJ,N2O,3.9,kg/TJ,7179.091946208,kg -d2e18e0f-4d4f-36f2-81d3-927c28dcbe3d,SESCO,II.1.1,Entre Rios,AR-E,annual,2011,gas oil combustion consumption by to the public,934.39102512,TJ,CO2,74100.0,kg/TJ,69238374.961392,kg -dcc16373-9278-3f62-ae23-1bbe8bc827a2,SESCO,II.1.1,Entre Rios,AR-E,annual,2011,gas oil combustion consumption by to the public,934.39102512,TJ,CH4,3.9,kg/TJ,3644.124997968,kg -dcc16373-9278-3f62-ae23-1bbe8bc827a2,SESCO,II.1.1,Entre Rios,AR-E,annual,2011,gas oil combustion consumption by to the public,934.39102512,TJ,N2O,3.9,kg/TJ,3644.124997968,kg -2557d4d8-dd15-3cf7-89ba-8d73cfede6dc,SESCO,II.1.1,Formosa,AR-P,annual,2011,gas oil combustion consumption by to the public,17.658887399999998,TJ,CO2,74100.0,kg/TJ,1308523.55634,kg -e22e0689-d15a-3dae-91f7-8c676af9e715,SESCO,II.1.1,Formosa,AR-P,annual,2011,gas oil combustion consumption by to the public,17.658887399999998,TJ,CH4,3.9,kg/TJ,68.86966085999998,kg -e22e0689-d15a-3dae-91f7-8c676af9e715,SESCO,II.1.1,Formosa,AR-P,annual,2011,gas oil combustion consumption by to the public,17.658887399999998,TJ,N2O,3.9,kg/TJ,68.86966085999998,kg -d214e70b-0401-3934-b48d-900406003775,SESCO,II.1.1,Jujuy,AR-Y,annual,2011,gas oil combustion consumption by to the public,9.79978944,TJ,CO2,74100.0,kg/TJ,726164.397504,kg -f294cb2b-1cc7-3155-b9bf-45c548944e2d,SESCO,II.1.1,Jujuy,AR-Y,annual,2011,gas oil combustion consumption by to the public,9.79978944,TJ,CH4,3.9,kg/TJ,38.219178815999996,kg -f294cb2b-1cc7-3155-b9bf-45c548944e2d,SESCO,II.1.1,Jujuy,AR-Y,annual,2011,gas oil combustion consumption by to the public,9.79978944,TJ,N2O,3.9,kg/TJ,38.219178815999996,kg -65b66f75-e297-381e-a6e7-11693cb0802c,SESCO,II.1.1,La Pampa,AR-L,annual,2011,gas oil combustion consumption by to the public,692.13996432,TJ,CO2,74100.0,kg/TJ,51287571.356111996,kg -825064ca-0f0d-32c4-a59d-1ac686278d75,SESCO,II.1.1,La Pampa,AR-L,annual,2011,gas oil combustion consumption by to the public,692.13996432,TJ,CH4,3.9,kg/TJ,2699.345860848,kg -825064ca-0f0d-32c4-a59d-1ac686278d75,SESCO,II.1.1,La Pampa,AR-L,annual,2011,gas oil combustion consumption by to the public,692.13996432,TJ,N2O,3.9,kg/TJ,2699.345860848,kg -28bdc2a8-f21a-3e76-a614-d59eb26c33ca,SESCO,II.1.1,La Rioja,AR-F,annual,2011,gas oil combustion consumption by to the public,26.5814304,TJ,CO2,74100.0,kg/TJ,1969683.9926399998,kg -5987f333-93ce-3020-95c3-44484c259712,SESCO,II.1.1,La Rioja,AR-F,annual,2011,gas oil combustion consumption by to the public,26.5814304,TJ,CH4,3.9,kg/TJ,103.66757856,kg -5987f333-93ce-3020-95c3-44484c259712,SESCO,II.1.1,La Rioja,AR-F,annual,2011,gas oil combustion consumption by to the public,26.5814304,TJ,N2O,3.9,kg/TJ,103.66757856,kg -462a7e18-dea8-3f60-a968-eb4d3d7be7be,SESCO,II.1.1,Mendoza,AR-M,annual,2011,gas oil combustion consumption by to the public,249.68141436,TJ,CO2,74100.0,kg/TJ,18501392.804076,kg -385d2deb-d79e-3567-ac6a-b500a96c99eb,SESCO,II.1.1,Mendoza,AR-M,annual,2011,gas oil combustion consumption by to the public,249.68141436,TJ,CH4,3.9,kg/TJ,973.757516004,kg -385d2deb-d79e-3567-ac6a-b500a96c99eb,SESCO,II.1.1,Mendoza,AR-M,annual,2011,gas oil combustion consumption by to the public,249.68141436,TJ,N2O,3.9,kg/TJ,973.757516004,kg -28a7abdf-dcb2-3306-8675-d713614d01ef,SESCO,II.1.1,Misiones,AR-N,annual,2011,gas oil combustion consumption by to the public,97.78406400000001,TJ,CO2,74100.0,kg/TJ,7245799.142400001,kg -3668d2b2-90b0-39ff-bee7-f19dfe15902c,SESCO,II.1.1,Misiones,AR-N,annual,2011,gas oil combustion consumption by to the public,97.78406400000001,TJ,CH4,3.9,kg/TJ,381.35784960000007,kg -3668d2b2-90b0-39ff-bee7-f19dfe15902c,SESCO,II.1.1,Misiones,AR-N,annual,2011,gas oil combustion consumption by to the public,97.78406400000001,TJ,N2O,3.9,kg/TJ,381.35784960000007,kg -0cae9434-0e59-3803-b9e7-3d60bd0fc18f,SESCO,II.1.1,Neuquén,AR-Q,annual,2011,gas oil combustion consumption by to the public,987.95109756,TJ,CO2,74100.0,kg/TJ,73207176.329196,kg -3127675f-4493-3442-9457-9946d434c217,SESCO,II.1.1,Neuquén,AR-Q,annual,2011,gas oil combustion consumption by to the public,987.95109756,TJ,CH4,3.9,kg/TJ,3853.009280484,kg -3127675f-4493-3442-9457-9946d434c217,SESCO,II.1.1,Neuquén,AR-Q,annual,2011,gas oil combustion consumption by to the public,987.95109756,TJ,N2O,3.9,kg/TJ,3853.009280484,kg -50251468-bdfe-307a-afea-78771d248c0a,SESCO,II.1.1,Rio Negro,AR-R,annual,2011,gas oil combustion consumption by to the public,1588.01970096,TJ,CO2,74100.0,kg/TJ,117672259.841136,kg -0750aeff-2690-354d-b19c-b3034327c6b2,SESCO,II.1.1,Rio Negro,AR-R,annual,2011,gas oil combustion consumption by to the public,1588.01970096,TJ,CH4,3.9,kg/TJ,6193.276833743999,kg -0750aeff-2690-354d-b19c-b3034327c6b2,SESCO,II.1.1,Rio Negro,AR-R,annual,2011,gas oil combustion consumption by to the public,1588.01970096,TJ,N2O,3.9,kg/TJ,6193.276833743999,kg -78d45079-c0aa-375f-8544-c2b7f4c82840,SESCO,II.1.1,Salta,AR-A,annual,2011,gas oil combustion consumption by to the public,13.04968644,TJ,CO2,74100.0,kg/TJ,966981.765204,kg -1163fe5c-1466-3227-8116-17fc163c4cd9,SESCO,II.1.1,Salta,AR-A,annual,2011,gas oil combustion consumption by to the public,13.04968644,TJ,CH4,3.9,kg/TJ,50.893777116,kg -1163fe5c-1466-3227-8116-17fc163c4cd9,SESCO,II.1.1,Salta,AR-A,annual,2011,gas oil combustion consumption by to the public,13.04968644,TJ,N2O,3.9,kg/TJ,50.893777116,kg -55fa5133-f68a-394e-a035-722f71893858,SESCO,II.1.1,San Juan,AR-J,annual,2011,gas oil combustion consumption by to the public,165.87597096,TJ,CO2,74100.0,kg/TJ,12291409.448136,kg -2ebc7434-e787-353e-8a05-865cc7696504,SESCO,II.1.1,San Juan,AR-J,annual,2011,gas oil combustion consumption by to the public,165.87597096,TJ,CH4,3.9,kg/TJ,646.916286744,kg -2ebc7434-e787-353e-8a05-865cc7696504,SESCO,II.1.1,San Juan,AR-J,annual,2011,gas oil combustion consumption by to the public,165.87597096,TJ,N2O,3.9,kg/TJ,646.916286744,kg -f93e07ed-bb1a-39ad-9dc2-dd76040d67d0,SESCO,II.1.1,San Luis,AR-D,annual,2011,gas oil combustion consumption by to the public,115.04884608,TJ,CO2,74100.0,kg/TJ,8525119.494528001,kg -f0891456-ff3c-3d59-ad22-fd3e0144da1e,SESCO,II.1.1,San Luis,AR-D,annual,2011,gas oil combustion consumption by to the public,115.04884608,TJ,CH4,3.9,kg/TJ,448.690499712,kg -f0891456-ff3c-3d59-ad22-fd3e0144da1e,SESCO,II.1.1,San Luis,AR-D,annual,2011,gas oil combustion consumption by to the public,115.04884608,TJ,N2O,3.9,kg/TJ,448.690499712,kg -0b874a0b-0740-31c2-bfe1-8509df9fcd0d,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2011,gas oil combustion consumption by to the public,1173.3341802,TJ,CO2,74100.0,kg/TJ,86944062.75282,kg -5d9a5397-c26f-3355-b448-f1bfe2bbdf85,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2011,gas oil combustion consumption by to the public,1173.3341802,TJ,CH4,3.9,kg/TJ,4576.00330278,kg -5d9a5397-c26f-3355-b448-f1bfe2bbdf85,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2011,gas oil combustion consumption by to the public,1173.3341802,TJ,N2O,3.9,kg/TJ,4576.00330278,kg -9f9ae66b-b925-3d61-a22a-ece228c0bac2,SESCO,II.1.1,Santa Fe,AR-S,annual,2011,gas oil combustion consumption by to the public,2229.72068592,TJ,CO2,74100.0,kg/TJ,165222302.82667202,kg -044956d0-8818-3f03-b63f-d2a35043bdd0,SESCO,II.1.1,Santa Fe,AR-S,annual,2011,gas oil combustion consumption by to the public,2229.72068592,TJ,CH4,3.9,kg/TJ,8695.910675088,kg -044956d0-8818-3f03-b63f-d2a35043bdd0,SESCO,II.1.1,Santa Fe,AR-S,annual,2011,gas oil combustion consumption by to the public,2229.72068592,TJ,N2O,3.9,kg/TJ,8695.910675088,kg -c5603420-7790-3ee3-b9c6-f4cce6c1f971,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2011,gas oil combustion consumption by to the public,83.42748372000001,TJ,CO2,74100.0,kg/TJ,6181976.543652001,kg -02b58bc2-0706-3594-a2b8-c742fe6af482,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2011,gas oil combustion consumption by to the public,83.42748372000001,TJ,CH4,3.9,kg/TJ,325.36718650800003,kg -02b58bc2-0706-3594-a2b8-c742fe6af482,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2011,gas oil combustion consumption by to the public,83.42748372000001,TJ,N2O,3.9,kg/TJ,325.36718650800003,kg -3bd501c6-bb7a-38c8-9ecf-c1c437548070,SESCO,II.1.1,Tucuman,AR-T,annual,2011,gas oil combustion consumption by to the public,197.20606163999997,TJ,CO2,74100.0,kg/TJ,14612969.167523999,kg -bd5a4390-c7f9-368c-96bb-bba5b3effe26,SESCO,II.1.1,Tucuman,AR-T,annual,2011,gas oil combustion consumption by to the public,197.20606163999997,TJ,CH4,3.9,kg/TJ,769.1036403959998,kg -bd5a4390-c7f9-368c-96bb-bba5b3effe26,SESCO,II.1.1,Tucuman,AR-T,annual,2011,gas oil combustion consumption by to the public,197.20606163999997,TJ,N2O,3.9,kg/TJ,769.1036403959998,kg -d7273bed-3e8a-3b07-ad42-38d0c223e986,SESCO,II.1.1,Buenos Aires,AR-B,annual,2011,gas oil combustion consumption by to the public,640.2771345599999,TJ,CO2,74100.0,kg/TJ,47444535.67089599,kg -d2120ab6-b59a-3d28-aa39-d6b0bab605e3,SESCO,II.1.1,Buenos Aires,AR-B,annual,2011,gas oil combustion consumption by to the public,640.2771345599999,TJ,CH4,3.9,kg/TJ,2497.0808247839996,kg -d2120ab6-b59a-3d28-aa39-d6b0bab605e3,SESCO,II.1.1,Buenos Aires,AR-B,annual,2011,gas oil combustion consumption by to the public,640.2771345599999,TJ,N2O,3.9,kg/TJ,2497.0808247839996,kg -d2c98e83-9f2e-3898-8e60-91bb886a6c20,SESCO,II.1.1,Capital Federal,AR-C,annual,2011,gas oil combustion consumption by to the public,55.10954819999999,TJ,CO2,74100.0,kg/TJ,4083617.5216199993,kg -82afd083-10b8-363c-bc9b-25010d38c921,SESCO,II.1.1,Capital Federal,AR-C,annual,2011,gas oil combustion consumption by to the public,55.10954819999999,TJ,CH4,3.9,kg/TJ,214.92723797999997,kg -82afd083-10b8-363c-bc9b-25010d38c921,SESCO,II.1.1,Capital Federal,AR-C,annual,2011,gas oil combustion consumption by to the public,55.10954819999999,TJ,N2O,3.9,kg/TJ,214.92723797999997,kg -1d750806-e492-3546-988d-337ddafcd3e6,SESCO,II.1.1,Córdoba,AR-X,annual,2011,gas oil combustion consumption by to the public,72.21319896,TJ,CO2,74100.0,kg/TJ,5350998.042936,kg -2a168983-ebfc-3599-9826-17ff2340e8c7,SESCO,II.1.1,Córdoba,AR-X,annual,2011,gas oil combustion consumption by to the public,72.21319896,TJ,CH4,3.9,kg/TJ,281.631475944,kg -2a168983-ebfc-3599-9826-17ff2340e8c7,SESCO,II.1.1,Córdoba,AR-X,annual,2011,gas oil combustion consumption by to the public,72.21319896,TJ,N2O,3.9,kg/TJ,281.631475944,kg -ebb2aee6-fefe-368c-a3d6-4f48afd108c4,SESCO,II.1.1,Entre Rios,AR-E,annual,2011,gas oil combustion consumption by to the public,48.1730634,TJ,CO2,74100.0,kg/TJ,3569623.9979399997,kg -2f1a9200-29cb-314d-8c77-11c61f272d1b,SESCO,II.1.1,Entre Rios,AR-E,annual,2011,gas oil combustion consumption by to the public,48.1730634,TJ,CH4,3.9,kg/TJ,187.87494725999997,kg -2f1a9200-29cb-314d-8c77-11c61f272d1b,SESCO,II.1.1,Entre Rios,AR-E,annual,2011,gas oil combustion consumption by to the public,48.1730634,TJ,N2O,3.9,kg/TJ,187.87494725999997,kg -310f4fc1-d5f6-30e5-80cb-623e141f26ff,SESCO,II.1.1,Santa Fe,AR-S,annual,2011,gas oil combustion consumption by to the public,95.88324899999999,TJ,CO2,74100.0,kg/TJ,7104948.750899999,kg -e7d35028-60d1-3a8c-bcba-b42323655970,SESCO,II.1.1,Santa Fe,AR-S,annual,2011,gas oil combustion consumption by to the public,95.88324899999999,TJ,CH4,3.9,kg/TJ,373.94467109999994,kg -e7d35028-60d1-3a8c-bcba-b42323655970,SESCO,II.1.1,Santa Fe,AR-S,annual,2011,gas oil combustion consumption by to the public,95.88324899999999,TJ,N2O,3.9,kg/TJ,373.94467109999994,kg -903ab533-28ab-33e7-b698-e9b792e01dc8,SESCO,I.3.1,La Pampa,AR-L,annual,2011,gas oil combustion consumption by petrochemical industries,12.89018052,TJ,CO2,74100.0,kg/TJ,955162.3765319999,kg -4776273d-e4a2-3ca7-b1e2-73448d81ddeb,SESCO,I.3.1,La Pampa,AR-L,annual,2011,gas oil combustion consumption by petrochemical industries,12.89018052,TJ,CH4,3.9,kg/TJ,50.271704027999995,kg -4776273d-e4a2-3ca7-b1e2-73448d81ddeb,SESCO,I.3.1,La Pampa,AR-L,annual,2011,gas oil combustion consumption by petrochemical industries,12.89018052,TJ,N2O,3.9,kg/TJ,50.271704027999995,kg -00f71a62-e943-3bde-82c6-e57acaca770f,SESCO,II.2.1,Rio Negro,AR-R,annual,2011,gas oil combustion consumption by railway transport,15.248057999999999,TJ,CO2,74100.0,kg/TJ,1129881.0977999999,kg -a38c5d5d-7ea5-3d1c-8f24-ab1061f52ce8,SESCO,II.2.1,Rio Negro,AR-R,annual,2011,gas oil combustion consumption by railway transport,15.248057999999999,TJ,CH4,3.9,kg/TJ,59.46742619999999,kg -a38c5d5d-7ea5-3d1c-8f24-ab1061f52ce8,SESCO,II.2.1,Rio Negro,AR-R,annual,2011,gas oil combustion consumption by railway transport,15.248057999999999,TJ,N2O,3.9,kg/TJ,59.46742619999999,kg -e1548273-a3a4-355b-abbc-de8863abf4a5,SESCO,II.1.1,Buenos Aires,AR-B,annual,2011,gasoline combustion consumption by freight transport,2.048432,TJ,CO2,69300.0,kg/TJ,141956.3376,kg -59c5f8c8-d382-3555-a5e1-5a7381b296b1,SESCO,II.1.1,Buenos Aires,AR-B,annual,2011,gasoline combustion consumption by freight transport,2.048432,TJ,CH4,33.0,kg/TJ,67.598256,kg -b13c0a64-b05f-3750-b009-8084d6d5e92d,SESCO,II.1.1,Buenos Aires,AR-B,annual,2011,gasoline combustion consumption by freight transport,2.048432,TJ,N2O,3.2,kg/TJ,6.5549824,kg -05cb1f8a-8db0-30fb-9c9f-8b2bcdb68724,SESCO,II.1.1,Buenos Aires,AR-B,annual,2011,gas oil combustion consumption by freight transport,439.54074024,TJ,CO2,74100.0,kg/TJ,32569968.851784,kg -45f16c9e-8b64-31ab-9df2-ca87c0f4d60a,SESCO,II.1.1,Buenos Aires,AR-B,annual,2011,gas oil combustion consumption by freight transport,439.54074024,TJ,CH4,3.9,kg/TJ,1714.208886936,kg -45f16c9e-8b64-31ab-9df2-ca87c0f4d60a,SESCO,II.1.1,Buenos Aires,AR-B,annual,2011,gas oil combustion consumption by freight transport,439.54074024,TJ,N2O,3.9,kg/TJ,1714.208886936,kg -18e6601d-103b-3fd0-87b8-11780540482e,SESCO,II.1.1,Chubut,AR-U,annual,2011,gas oil combustion consumption by freight transport,10.1152254,TJ,CO2,74100.0,kg/TJ,749538.20214,kg -a7244136-0496-350f-a5a5-e1d786b9f693,SESCO,II.1.1,Chubut,AR-U,annual,2011,gas oil combustion consumption by freight transport,10.1152254,TJ,CH4,3.9,kg/TJ,39.44937906,kg -a7244136-0496-350f-a5a5-e1d786b9f693,SESCO,II.1.1,Chubut,AR-U,annual,2011,gas oil combustion consumption by freight transport,10.1152254,TJ,N2O,3.9,kg/TJ,39.44937906,kg -d424c807-1fa8-36f4-ba5c-e8193e8ad4e8,SESCO,II.1.1,Córdoba,AR-X,annual,2011,gas oil combustion consumption by freight transport,67.4591568,TJ,CO2,74100.0,kg/TJ,4998723.51888,kg -d45909f3-bbc3-3e24-8322-cec91c7670aa,SESCO,II.1.1,Córdoba,AR-X,annual,2011,gas oil combustion consumption by freight transport,67.4591568,TJ,CH4,3.9,kg/TJ,263.09071152,kg -d45909f3-bbc3-3e24-8322-cec91c7670aa,SESCO,II.1.1,Córdoba,AR-X,annual,2011,gas oil combustion consumption by freight transport,67.4591568,TJ,N2O,3.9,kg/TJ,263.09071152,kg -fafe7a81-94b4-3eed-a5ff-91c9cf15421d,SESCO,II.1.1,San Luis,AR-D,annual,2011,gas oil combustion consumption by freight transport,29.720077800000002,TJ,CO2,74100.0,kg/TJ,2202257.76498,kg -da5c02bb-cc5b-3a31-a967-385b4cb60503,SESCO,II.1.1,San Luis,AR-D,annual,2011,gas oil combustion consumption by freight transport,29.720077800000002,TJ,CH4,3.9,kg/TJ,115.90830342000001,kg -da5c02bb-cc5b-3a31-a967-385b4cb60503,SESCO,II.1.1,San Luis,AR-D,annual,2011,gas oil combustion consumption by freight transport,29.720077800000002,TJ,N2O,3.9,kg/TJ,115.90830342000001,kg -6b4360ff-72e8-3a32-8cbc-b7d9a3fa70e9,SESCO,II.1.1,Santa Fe,AR-S,annual,2011,gas oil combustion consumption by freight transport,1.78779552,TJ,CO2,74100.0,kg/TJ,132475.648032,kg -b6595520-2ec0-3277-9bde-e1309b90a140,SESCO,II.1.1,Santa Fe,AR-S,annual,2011,gas oil combustion consumption by freight transport,1.78779552,TJ,CH4,3.9,kg/TJ,6.972402528,kg -b6595520-2ec0-3277-9bde-e1309b90a140,SESCO,II.1.1,Santa Fe,AR-S,annual,2011,gas oil combustion consumption by freight transport,1.78779552,TJ,N2O,3.9,kg/TJ,6.972402528,kg -b80949d7-672b-3518-9bfc-4f275b670b2f,SESCO,II.1.1,Buenos Aires,AR-B,annual,2011,gas oil combustion consumption by public passenger transport,343.15090824,TJ,CO2,74100.0,kg/TJ,25427482.300584,kg -a3f8e50f-2a8c-3b92-aa24-d8d4a80f652b,SESCO,II.1.1,Buenos Aires,AR-B,annual,2011,gas oil combustion consumption by public passenger transport,343.15090824,TJ,CH4,3.9,kg/TJ,1338.288542136,kg -a3f8e50f-2a8c-3b92-aa24-d8d4a80f652b,SESCO,II.1.1,Buenos Aires,AR-B,annual,2011,gas oil combustion consumption by public passenger transport,343.15090824,TJ,N2O,3.9,kg/TJ,1338.288542136,kg -1cc46c9c-f7bc-33e6-a1fe-fb0b2ab6dd37,SESCO,II.1.1,Capital Federal,AR-C,annual,2011,gas oil combustion consumption by public passenger transport,112.68948768,TJ,CO2,74100.0,kg/TJ,8350291.037088,kg -b6508c13-6e74-3833-8d83-48eb0a418d46,SESCO,II.1.1,Capital Federal,AR-C,annual,2011,gas oil combustion consumption by public passenger transport,112.68948768,TJ,CH4,3.9,kg/TJ,439.48900195199997,kg -b6508c13-6e74-3833-8d83-48eb0a418d46,SESCO,II.1.1,Capital Federal,AR-C,annual,2011,gas oil combustion consumption by public passenger transport,112.68948768,TJ,N2O,3.9,kg/TJ,439.48900195199997,kg -f40a483d-ee55-307a-a68e-7109339c8e3e,SESCO,II.1.1,Córdoba,AR-X,annual,2011,gas oil combustion consumption by public passenger transport,19.426166759999997,TJ,CO2,74100.0,kg/TJ,1439478.9569159998,kg -b1552fa9-0a6c-3a7b-bda6-08f84887089b,SESCO,II.1.1,Córdoba,AR-X,annual,2011,gas oil combustion consumption by public passenger transport,19.426166759999997,TJ,CH4,3.9,kg/TJ,75.76205036399999,kg -b1552fa9-0a6c-3a7b-bda6-08f84887089b,SESCO,II.1.1,Córdoba,AR-X,annual,2011,gas oil combustion consumption by public passenger transport,19.426166759999997,TJ,N2O,3.9,kg/TJ,75.76205036399999,kg -436250d3-ed39-311f-97e6-1e6b4a1215dd,SESCO,II.1.1,Entre Rios,AR-E,annual,2011,gas oil combustion consumption by public passenger transport,26.12657124,TJ,CO2,74100.0,kg/TJ,1935978.928884,kg -cb1d7c1d-06e6-3dfe-b72f-a56a98bba884,SESCO,II.1.1,Entre Rios,AR-E,annual,2011,gas oil combustion consumption by public passenger transport,26.12657124,TJ,CH4,3.9,kg/TJ,101.893627836,kg -cb1d7c1d-06e6-3dfe-b72f-a56a98bba884,SESCO,II.1.1,Entre Rios,AR-E,annual,2011,gas oil combustion consumption by public passenger transport,26.12657124,TJ,N2O,3.9,kg/TJ,101.893627836,kg -05a07f34-e109-3825-89c1-5698a65f6c59,SESCO,II.1.1,Formosa,AR-P,annual,2011,gas oil combustion consumption by public passenger transport,14.387499,TJ,CO2,74100.0,kg/TJ,1066113.6759,kg -37d90070-69b1-30ad-95ea-f99fa130d0b3,SESCO,II.1.1,Formosa,AR-P,annual,2011,gas oil combustion consumption by public passenger transport,14.387499,TJ,CH4,3.9,kg/TJ,56.111246099999995,kg -37d90070-69b1-30ad-95ea-f99fa130d0b3,SESCO,II.1.1,Formosa,AR-P,annual,2011,gas oil combustion consumption by public passenger transport,14.387499,TJ,N2O,3.9,kg/TJ,56.111246099999995,kg -832d7ef2-1f9c-3997-9490-774777429e0a,SESCO,II.1.1,Neuquén,AR-Q,annual,2011,gas oil combustion consumption by public passenger transport,9.39546216,TJ,CO2,74100.0,kg/TJ,696203.7460559999,kg -e542813d-059b-3bef-8e33-6d697c7fe66d,SESCO,II.1.1,Neuquén,AR-Q,annual,2011,gas oil combustion consumption by public passenger transport,9.39546216,TJ,CH4,3.9,kg/TJ,36.64230242399999,kg -e542813d-059b-3bef-8e33-6d697c7fe66d,SESCO,II.1.1,Neuquén,AR-Q,annual,2011,gas oil combustion consumption by public passenger transport,9.39546216,TJ,N2O,3.9,kg/TJ,36.64230242399999,kg -cb3dbdf8-5345-37e9-8b5e-fda580346d22,SESCO,II.1.1,Rio Negro,AR-R,annual,2011,gas oil combustion consumption by public passenger transport,91.746606,TJ,CO2,74100.0,kg/TJ,6798423.5046,kg -cbf0a217-6bb1-3944-b336-c1bf12bb284d,SESCO,II.1.1,Rio Negro,AR-R,annual,2011,gas oil combustion consumption by public passenger transport,91.746606,TJ,CH4,3.9,kg/TJ,357.8117634,kg -cbf0a217-6bb1-3944-b336-c1bf12bb284d,SESCO,II.1.1,Rio Negro,AR-R,annual,2011,gas oil combustion consumption by public passenger transport,91.746606,TJ,N2O,3.9,kg/TJ,357.8117634,kg -d50e64e8-4e9b-323d-aacc-adca09a44d0d,SESCO,II.1.1,San Juan,AR-J,annual,2011,gas oil combustion consumption by public passenger transport,4.18060104,TJ,CO2,74100.0,kg/TJ,309782.537064,kg -44abf9da-c694-3936-b9d5-ba57437e3c0c,SESCO,II.1.1,San Juan,AR-J,annual,2011,gas oil combustion consumption by public passenger transport,4.18060104,TJ,CH4,3.9,kg/TJ,16.304344055999998,kg -44abf9da-c694-3936-b9d5-ba57437e3c0c,SESCO,II.1.1,San Juan,AR-J,annual,2011,gas oil combustion consumption by public passenger transport,4.18060104,TJ,N2O,3.9,kg/TJ,16.304344055999998,kg -ebd44eef-704a-3576-bd12-9603bb873733,SESCO,II.1.1,San Luis,AR-D,annual,2011,gas oil combustion consumption by public passenger transport,25.85101176,TJ,CO2,74100.0,kg/TJ,1915559.9714159998,kg -d69bd707-31e6-30b1-952e-aa6e6aaa0772,SESCO,II.1.1,San Luis,AR-D,annual,2011,gas oil combustion consumption by public passenger transport,25.85101176,TJ,CH4,3.9,kg/TJ,100.81894586399999,kg -d69bd707-31e6-30b1-952e-aa6e6aaa0772,SESCO,II.1.1,San Luis,AR-D,annual,2011,gas oil combustion consumption by public passenger transport,25.85101176,TJ,N2O,3.9,kg/TJ,100.81894586399999,kg -ccb9b890-3ebd-3b3f-9707-27a880c178a2,SESCO,II.1.1,Santa Fe,AR-S,annual,2011,gas oil combustion consumption by public passenger transport,209.14950084,TJ,CO2,74100.0,kg/TJ,15497978.012244001,kg -be54f64e-39b0-345f-a494-0d0b48dac748,SESCO,II.1.1,Santa Fe,AR-S,annual,2011,gas oil combustion consumption by public passenger transport,209.14950084,TJ,CH4,3.9,kg/TJ,815.683053276,kg -be54f64e-39b0-345f-a494-0d0b48dac748,SESCO,II.1.1,Santa Fe,AR-S,annual,2011,gas oil combustion consumption by public passenger transport,209.14950084,TJ,N2O,3.9,kg/TJ,815.683053276,kg -6817d77b-6395-3665-999c-c424cd7c8860,SESCO,II.1.1,Buenos Aires,AR-B,annual,2011,gas oil combustion consumption by to the public,2316.028848,TJ,CO2,74100.0,kg/TJ,171617737.6368,kg -de2b5311-37e4-3222-bdcb-b98e9a675e81,SESCO,II.1.1,Buenos Aires,AR-B,annual,2011,gas oil combustion consumption by to the public,2316.028848,TJ,CH4,3.9,kg/TJ,9032.5125072,kg -de2b5311-37e4-3222-bdcb-b98e9a675e81,SESCO,II.1.1,Buenos Aires,AR-B,annual,2011,gas oil combustion consumption by to the public,2316.028848,TJ,N2O,3.9,kg/TJ,9032.5125072,kg -6b57652e-3640-3fce-a7ba-f57852222c0f,SESCO,II.1.1,Capital Federal,AR-C,annual,2011,gas oil combustion consumption by to the public,104.56739999999999,TJ,CO2,74100.0,kg/TJ,7748444.34,kg -bf0126f4-774b-3385-8539-27dc965cd234,SESCO,II.1.1,Capital Federal,AR-C,annual,2011,gas oil combustion consumption by to the public,104.56739999999999,TJ,CH4,3.9,kg/TJ,407.81285999999994,kg -bf0126f4-774b-3385-8539-27dc965cd234,SESCO,II.1.1,Capital Federal,AR-C,annual,2011,gas oil combustion consumption by to the public,104.56739999999999,TJ,N2O,3.9,kg/TJ,407.81285999999994,kg -01f3c2e1-2ae3-3c96-b4b6-2ade12362cba,SESCO,II.1.1,Chaco,AR-H,annual,2011,gas oil combustion consumption by to the public,4.55112,TJ,CO2,74100.0,kg/TJ,337237.992,kg -db5733e3-eb1f-36d2-86e3-0d6d1af9ac28,SESCO,II.1.1,Chaco,AR-H,annual,2011,gas oil combustion consumption by to the public,4.55112,TJ,CH4,3.9,kg/TJ,17.749368,kg -db5733e3-eb1f-36d2-86e3-0d6d1af9ac28,SESCO,II.1.1,Chaco,AR-H,annual,2011,gas oil combustion consumption by to the public,4.55112,TJ,N2O,3.9,kg/TJ,17.749368,kg -95181b30-9143-362a-a65b-2443fbcd1adf,SESCO,II.1.1,Corrientes,AR-W,annual,2011,gas oil combustion consumption by to the public,3.612,TJ,CO2,74100.0,kg/TJ,267649.2,kg -daa7a51e-d5a1-324e-b9bb-fd90223a6288,SESCO,II.1.1,Corrientes,AR-W,annual,2011,gas oil combustion consumption by to the public,3.612,TJ,CH4,3.9,kg/TJ,14.0868,kg -daa7a51e-d5a1-324e-b9bb-fd90223a6288,SESCO,II.1.1,Corrientes,AR-W,annual,2011,gas oil combustion consumption by to the public,3.612,TJ,N2O,3.9,kg/TJ,14.0868,kg -ef109b94-3a7b-3bbb-bf5b-77d6c4e50400,SESCO,II.1.1,Córdoba,AR-X,annual,2011,gas oil combustion consumption by to the public,1357.44378,TJ,CO2,74100.0,kg/TJ,100586584.098,kg -9e541e95-e5a7-3025-a96c-14c6e276672f,SESCO,II.1.1,Córdoba,AR-X,annual,2011,gas oil combustion consumption by to the public,1357.44378,TJ,CH4,3.9,kg/TJ,5294.030742,kg -9e541e95-e5a7-3025-a96c-14c6e276672f,SESCO,II.1.1,Córdoba,AR-X,annual,2011,gas oil combustion consumption by to the public,1357.44378,TJ,N2O,3.9,kg/TJ,5294.030742,kg -6301beb3-d134-331e-8d23-8520b981eead,SESCO,II.1.1,Entre Rios,AR-E,annual,2011,gas oil combustion consumption by to the public,441.65729999999996,TJ,CO2,74100.0,kg/TJ,32726805.929999996,kg -6f4b8613-440a-3bbc-acae-87ce81f2b6df,SESCO,II.1.1,Entre Rios,AR-E,annual,2011,gas oil combustion consumption by to the public,441.65729999999996,TJ,CH4,3.9,kg/TJ,1722.46347,kg -6f4b8613-440a-3bbc-acae-87ce81f2b6df,SESCO,II.1.1,Entre Rios,AR-E,annual,2011,gas oil combustion consumption by to the public,441.65729999999996,TJ,N2O,3.9,kg/TJ,1722.46347,kg -ad0281fe-041c-3b4b-9922-0b93ba485ab6,SESCO,II.1.1,Santa Fe,AR-S,annual,2011,gas oil combustion consumption by to the public,771.01752,TJ,CO2,74100.0,kg/TJ,57132398.232,kg -d98ba8ae-85ff-3a9b-9f6b-eb75b705647e,SESCO,II.1.1,Santa Fe,AR-S,annual,2011,gas oil combustion consumption by to the public,771.01752,TJ,CH4,3.9,kg/TJ,3006.968328,kg -d98ba8ae-85ff-3a9b-9f6b-eb75b705647e,SESCO,II.1.1,Santa Fe,AR-S,annual,2011,gas oil combustion consumption by to the public,771.01752,TJ,N2O,3.9,kg/TJ,3006.968328,kg -31d661af-53fb-3a3c-9f53-b532382c9fef,SESCO,II.1.1,Buenos Aires,AR-B,annual,2011,gas oil combustion consumption by to the public,64.138284,TJ,CO2,74100.0,kg/TJ,4752646.8444,kg -54060bd9-c4c2-3947-9c9a-e93ba6216e99,SESCO,II.1.1,Buenos Aires,AR-B,annual,2011,gas oil combustion consumption by to the public,64.138284,TJ,CH4,3.9,kg/TJ,250.1393076,kg -54060bd9-c4c2-3947-9c9a-e93ba6216e99,SESCO,II.1.1,Buenos Aires,AR-B,annual,2011,gas oil combustion consumption by to the public,64.138284,TJ,N2O,3.9,kg/TJ,250.1393076,kg -c725638b-be8d-3041-aa6d-55032a157bc3,SESCO,II.1.1,Capital Federal,AR-C,annual,2011,gas oil combustion consumption by to the public,0.14448,TJ,CO2,74100.0,kg/TJ,10705.967999999999,kg -0094bd51-af35-31e9-8115-6719da240397,SESCO,II.1.1,Capital Federal,AR-C,annual,2011,gas oil combustion consumption by to the public,0.14448,TJ,CH4,3.9,kg/TJ,0.563472,kg -0094bd51-af35-31e9-8115-6719da240397,SESCO,II.1.1,Capital Federal,AR-C,annual,2011,gas oil combustion consumption by to the public,0.14448,TJ,N2O,3.9,kg/TJ,0.563472,kg -babba44d-6c34-393c-84db-5b024262fea6,SESCO,II.1.1,Chaco,AR-H,annual,2011,gas oil combustion consumption by to the public,0.18059999999999998,TJ,CO2,74100.0,kg/TJ,13382.46,kg -3a16cf02-7560-3a48-ab1c-56dc678592d7,SESCO,II.1.1,Chaco,AR-H,annual,2011,gas oil combustion consumption by to the public,0.18059999999999998,TJ,CH4,3.9,kg/TJ,0.70434,kg -3a16cf02-7560-3a48-ab1c-56dc678592d7,SESCO,II.1.1,Chaco,AR-H,annual,2011,gas oil combustion consumption by to the public,0.18059999999999998,TJ,N2O,3.9,kg/TJ,0.70434,kg -2d8d11f1-d4c7-3d0b-9c81-717dad7f153d,SESCO,II.1.1,Corrientes,AR-W,annual,2011,gas oil combustion consumption by to the public,1.9866,TJ,CO2,74100.0,kg/TJ,147207.06,kg -b3af7864-31a3-30d9-9e21-20bad3237444,SESCO,II.1.1,Corrientes,AR-W,annual,2011,gas oil combustion consumption by to the public,1.9866,TJ,CH4,3.9,kg/TJ,7.747739999999999,kg -b3af7864-31a3-30d9-9e21-20bad3237444,SESCO,II.1.1,Corrientes,AR-W,annual,2011,gas oil combustion consumption by to the public,1.9866,TJ,N2O,3.9,kg/TJ,7.747739999999999,kg -54b29a4e-5557-3b20-861f-fbcde3e2baea,SESCO,II.1.1,Córdoba,AR-X,annual,2011,gas oil combustion consumption by to the public,64.58256,TJ,CO2,74100.0,kg/TJ,4785567.696,kg -21df7c8f-53ca-3aa5-9d2f-33e6bb584de5,SESCO,II.1.1,Córdoba,AR-X,annual,2011,gas oil combustion consumption by to the public,64.58256,TJ,CH4,3.9,kg/TJ,251.871984,kg -21df7c8f-53ca-3aa5-9d2f-33e6bb584de5,SESCO,II.1.1,Córdoba,AR-X,annual,2011,gas oil combustion consumption by to the public,64.58256,TJ,N2O,3.9,kg/TJ,251.871984,kg -d6595917-cec2-33f0-a74e-c4dedea1cdfa,SESCO,II.1.1,Entre Rios,AR-E,annual,2011,gas oil combustion consumption by to the public,18.56568,TJ,CO2,74100.0,kg/TJ,1375716.888,kg -85989edc-e1be-33c4-8c1f-185566e2c45b,SESCO,II.1.1,Entre Rios,AR-E,annual,2011,gas oil combustion consumption by to the public,18.56568,TJ,CH4,3.9,kg/TJ,72.406152,kg -85989edc-e1be-33c4-8c1f-185566e2c45b,SESCO,II.1.1,Entre Rios,AR-E,annual,2011,gas oil combustion consumption by to the public,18.56568,TJ,N2O,3.9,kg/TJ,72.406152,kg -578ec365-eeca-3350-ac44-c8f4a8a8151f,SESCO,II.1.1,Santa Fe,AR-S,annual,2011,gas oil combustion consumption by to the public,33.1401,TJ,CO2,74100.0,kg/TJ,2455681.4099999997,kg -1cc42503-6b46-3209-81ff-b97e6a8d6da4,SESCO,II.1.1,Santa Fe,AR-S,annual,2011,gas oil combustion consumption by to the public,33.1401,TJ,CH4,3.9,kg/TJ,129.24639,kg -1cc42503-6b46-3209-81ff-b97e6a8d6da4,SESCO,II.1.1,Santa Fe,AR-S,annual,2011,gas oil combustion consumption by to the public,33.1401,TJ,N2O,3.9,kg/TJ,129.24639,kg -dbb40400-bdb3-3b06-b6b1-c10b884e4014,SESCO,II.1.1,Tucuman,AR-T,annual,2011,gasoline combustion consumption by to the public,17.645133,TJ,CO2,69300.0,kg/TJ,1222807.7169,kg -fd217886-2409-3b44-8b4c-edab3b322d09,SESCO,II.1.1,Tucuman,AR-T,annual,2011,gasoline combustion consumption by to the public,17.645133,TJ,CH4,33.0,kg/TJ,582.289389,kg -9faf35a0-ab8a-3d8e-82f6-fce433557959,SESCO,II.1.1,Tucuman,AR-T,annual,2011,gasoline combustion consumption by to the public,17.645133,TJ,N2O,3.2,kg/TJ,56.464425600000006,kg -f3eca8bd-cb40-3997-b8b2-05056506631f,SESCO,II.1.1,Catamarca,AR-K,annual,2011,gas oil combustion consumption by to the public,335.7093936,TJ,CO2,74100.0,kg/TJ,24876066.06576,kg -0f899e57-0c17-3a89-926d-1f99a293f42f,SESCO,II.1.1,Catamarca,AR-K,annual,2011,gas oil combustion consumption by to the public,335.7093936,TJ,CH4,3.9,kg/TJ,1309.26663504,kg -0f899e57-0c17-3a89-926d-1f99a293f42f,SESCO,II.1.1,Catamarca,AR-K,annual,2011,gas oil combustion consumption by to the public,335.7093936,TJ,N2O,3.9,kg/TJ,1309.26663504,kg -0f6160b1-33a3-36e3-bf90-532623560d22,SESCO,II.1.1,Chaco,AR-H,annual,2011,gas oil combustion consumption by to the public,261.6926508,TJ,CO2,74100.0,kg/TJ,19391425.424280003,kg -4ab2f6d4-82b9-311e-806b-948db4d37a8f,SESCO,II.1.1,Chaco,AR-H,annual,2011,gas oil combustion consumption by to the public,261.6926508,TJ,CH4,3.9,kg/TJ,1020.60133812,kg -4ab2f6d4-82b9-311e-806b-948db4d37a8f,SESCO,II.1.1,Chaco,AR-H,annual,2011,gas oil combustion consumption by to the public,261.6926508,TJ,N2O,3.9,kg/TJ,1020.60133812,kg -3a24045b-0471-35b2-a402-af4fd336a427,SESCO,II.1.1,Córdoba,AR-X,annual,2011,gas oil combustion consumption by to the public,133.9918356,TJ,CO2,74100.0,kg/TJ,9928795.01796,kg -b52f35d1-a4b3-32ad-88f1-221b53f763d1,SESCO,II.1.1,Córdoba,AR-X,annual,2011,gas oil combustion consumption by to the public,133.9918356,TJ,CH4,3.9,kg/TJ,522.56815884,kg -b52f35d1-a4b3-32ad-88f1-221b53f763d1,SESCO,II.1.1,Córdoba,AR-X,annual,2011,gas oil combustion consumption by to the public,133.9918356,TJ,N2O,3.9,kg/TJ,522.56815884,kg -36325634-06f1-3226-877e-187b9a35f193,SESCO,II.1.1,Jujuy,AR-Y,annual,2011,gas oil combustion consumption by to the public,977.8301651999999,TJ,CO2,74100.0,kg/TJ,72457215.24132,kg -743c464b-cbbc-3d6c-8a47-affd5d53b697,SESCO,II.1.1,Jujuy,AR-Y,annual,2011,gas oil combustion consumption by to the public,977.8301651999999,TJ,CH4,3.9,kg/TJ,3813.5376442799993,kg -743c464b-cbbc-3d6c-8a47-affd5d53b697,SESCO,II.1.1,Jujuy,AR-Y,annual,2011,gas oil combustion consumption by to the public,977.8301651999999,TJ,N2O,3.9,kg/TJ,3813.5376442799993,kg -0da2599d-0fb2-3dd2-b5d7-94d61f5698f7,SESCO,II.1.1,La Rioja,AR-F,annual,2011,gas oil combustion consumption by to the public,193.7884956,TJ,CO2,74100.0,kg/TJ,14359727.52396,kg -e8cd9a83-264a-374e-bd3c-9f8c2892a469,SESCO,II.1.1,La Rioja,AR-F,annual,2011,gas oil combustion consumption by to the public,193.7884956,TJ,CH4,3.9,kg/TJ,755.77513284,kg -e8cd9a83-264a-374e-bd3c-9f8c2892a469,SESCO,II.1.1,La Rioja,AR-F,annual,2011,gas oil combustion consumption by to the public,193.7884956,TJ,N2O,3.9,kg/TJ,755.77513284,kg -c702dead-4877-3618-9b51-9aa7d3240670,SESCO,II.1.1,Salta,AR-A,annual,2011,gas oil combustion consumption by to the public,2519.1077688,TJ,CO2,74100.0,kg/TJ,186665885.66808,kg -3e4a1733-96c2-30cb-a138-c43d24508ef3,SESCO,II.1.1,Salta,AR-A,annual,2011,gas oil combustion consumption by to the public,2519.1077688,TJ,CH4,3.9,kg/TJ,9824.52029832,kg -3e4a1733-96c2-30cb-a138-c43d24508ef3,SESCO,II.1.1,Salta,AR-A,annual,2011,gas oil combustion consumption by to the public,2519.1077688,TJ,N2O,3.9,kg/TJ,9824.52029832,kg -796f1a20-56ea-38b6-afcd-4322df3d4f6c,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2011,gas oil combustion consumption by to the public,725.8581288,TJ,CO2,74100.0,kg/TJ,53786087.34408,kg -44264fa2-b519-3e40-8d7a-ae591502fe82,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2011,gas oil combustion consumption by to the public,725.8581288,TJ,CH4,3.9,kg/TJ,2830.84670232,kg -44264fa2-b519-3e40-8d7a-ae591502fe82,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2011,gas oil combustion consumption by to the public,725.8581288,TJ,N2O,3.9,kg/TJ,2830.84670232,kg -40221298-c613-3748-a48a-73de69d3d51b,SESCO,II.1.1,Tucuman,AR-T,annual,2011,gas oil combustion consumption by to the public,3489.2440128,TJ,CO2,74100.0,kg/TJ,258552981.34848,kg -b9ba2d9f-5669-3e7e-b2e0-17dd8e19fe66,SESCO,II.1.1,Tucuman,AR-T,annual,2011,gas oil combustion consumption by to the public,3489.2440128,TJ,CH4,3.9,kg/TJ,13608.051649919998,kg -b9ba2d9f-5669-3e7e-b2e0-17dd8e19fe66,SESCO,II.1.1,Tucuman,AR-T,annual,2011,gas oil combustion consumption by to the public,3489.2440128,TJ,N2O,3.9,kg/TJ,13608.051649919998,kg -0ae64cfd-b180-3cda-af36-31304bea46a7,SESCO,II.1.1,Catamarca,AR-K,annual,2011,gas oil combustion consumption by to the public,9.8470344,TJ,CO2,74100.0,kg/TJ,729665.24904,kg -df3d7be6-01d7-32e5-b5d5-e990d6ac228e,SESCO,II.1.1,Catamarca,AR-K,annual,2011,gas oil combustion consumption by to the public,9.8470344,TJ,CH4,3.9,kg/TJ,38.403434159999996,kg -df3d7be6-01d7-32e5-b5d5-e990d6ac228e,SESCO,II.1.1,Catamarca,AR-K,annual,2011,gas oil combustion consumption by to the public,9.8470344,TJ,N2O,3.9,kg/TJ,38.403434159999996,kg -7351971e-8d4f-3df3-b7e5-fcf968229e9f,SESCO,II.1.1,Chaco,AR-H,annual,2011,gas oil combustion consumption by to the public,20.4623412,TJ,CO2,74100.0,kg/TJ,1516259.48292,kg -f3abfc0b-0b49-3f7c-a8a5-5abea3caea98,SESCO,II.1.1,Chaco,AR-H,annual,2011,gas oil combustion consumption by to the public,20.4623412,TJ,CH4,3.9,kg/TJ,79.80313068,kg -f3abfc0b-0b49-3f7c-a8a5-5abea3caea98,SESCO,II.1.1,Chaco,AR-H,annual,2011,gas oil combustion consumption by to the public,20.4623412,TJ,N2O,3.9,kg/TJ,79.80313068,kg -bbd1b08b-767d-3cf5-ba2d-8c7eb71508b4,SESCO,II.1.1,Córdoba,AR-X,annual,2011,gas oil combustion consumption by to the public,8.091241199999999,TJ,CO2,74100.0,kg/TJ,599560.97292,kg -dce2533b-3022-33b0-8ad0-c29ad03f522a,SESCO,II.1.1,Córdoba,AR-X,annual,2011,gas oil combustion consumption by to the public,8.091241199999999,TJ,CH4,3.9,kg/TJ,31.555840679999996,kg -dce2533b-3022-33b0-8ad0-c29ad03f522a,SESCO,II.1.1,Córdoba,AR-X,annual,2011,gas oil combustion consumption by to the public,8.091241199999999,TJ,N2O,3.9,kg/TJ,31.555840679999996,kg -511e9f34-4dd4-30b6-8e0d-3521042be754,SESCO,II.1.1,Jujuy,AR-Y,annual,2011,gas oil combustion consumption by to the public,52.4563536,TJ,CO2,74100.0,kg/TJ,3887015.80176,kg -3f605b60-d085-3033-b8fd-2f5d4c0cbd6e,SESCO,II.1.1,Jujuy,AR-Y,annual,2011,gas oil combustion consumption by to the public,52.4563536,TJ,CH4,3.9,kg/TJ,204.57977904,kg -3f605b60-d085-3033-b8fd-2f5d4c0cbd6e,SESCO,II.1.1,Jujuy,AR-Y,annual,2011,gas oil combustion consumption by to the public,52.4563536,TJ,N2O,3.9,kg/TJ,204.57977904,kg -38041bb9-6978-3f52-be09-94a6733ee251,SESCO,II.1.1,La Rioja,AR-F,annual,2011,gas oil combustion consumption by to the public,14.0391216,TJ,CO2,74100.0,kg/TJ,1040298.91056,kg -ee052494-3e86-3b9d-a716-75752422d317,SESCO,II.1.1,La Rioja,AR-F,annual,2011,gas oil combustion consumption by to the public,14.0391216,TJ,CH4,3.9,kg/TJ,54.752574239999994,kg -ee052494-3e86-3b9d-a716-75752422d317,SESCO,II.1.1,La Rioja,AR-F,annual,2011,gas oil combustion consumption by to the public,14.0391216,TJ,N2O,3.9,kg/TJ,54.752574239999994,kg -3006d4c8-9f94-3dd8-aee8-9a1d3b7bb260,SESCO,II.1.1,Salta,AR-A,annual,2011,gas oil combustion consumption by to the public,141.5170764,TJ,CO2,74100.0,kg/TJ,10486415.361240001,kg -9eec7944-ebb7-3b30-bf84-1b6c6d23ae86,SESCO,II.1.1,Salta,AR-A,annual,2011,gas oil combustion consumption by to the public,141.5170764,TJ,CH4,3.9,kg/TJ,551.91659796,kg -9eec7944-ebb7-3b30-bf84-1b6c6d23ae86,SESCO,II.1.1,Salta,AR-A,annual,2011,gas oil combustion consumption by to the public,141.5170764,TJ,N2O,3.9,kg/TJ,551.91659796,kg -d5c4264a-95be-33b0-b3dc-36a1940a1236,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2011,gas oil combustion consumption by to the public,36.2850684,TJ,CO2,74100.0,kg/TJ,2688723.56844,kg -733b7123-c4a6-39a7-a306-f74ea30f1d10,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2011,gas oil combustion consumption by to the public,36.2850684,TJ,CH4,3.9,kg/TJ,141.51176676,kg -733b7123-c4a6-39a7-a306-f74ea30f1d10,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2011,gas oil combustion consumption by to the public,36.2850684,TJ,N2O,3.9,kg/TJ,141.51176676,kg -377ae6c3-3a80-3260-832e-c1711bba5f7f,SESCO,II.1.1,Tucuman,AR-T,annual,2011,gas oil combustion consumption by to the public,216.58996799999997,TJ,CO2,74100.0,kg/TJ,16049316.628799997,kg -b56aec6a-1c63-36b4-bab9-de9e911f3086,SESCO,II.1.1,Tucuman,AR-T,annual,2011,gas oil combustion consumption by to the public,216.58996799999997,TJ,CH4,3.9,kg/TJ,844.7008751999998,kg -b56aec6a-1c63-36b4-bab9-de9e911f3086,SESCO,II.1.1,Tucuman,AR-T,annual,2011,gas oil combustion consumption by to the public,216.58996799999997,TJ,N2O,3.9,kg/TJ,844.7008751999998,kg -3affc3de-a8a9-38d9-973c-fef252324aa3,SESCO,I.3.1,Buenos Aires,AR-B,annual,2011,gasoline combustion consumption by petrochemical industries,143.27816099999998,TJ,CO2,69300.0,kg/TJ,9929176.5573,kg -af56d8ee-5d84-3c1a-810d-7514c8cbc6bc,SESCO,I.3.1,Buenos Aires,AR-B,annual,2011,gasoline combustion consumption by petrochemical industries,143.27816099999998,TJ,CH4,33.0,kg/TJ,4728.179313,kg -28d62d7c-4d83-3c32-b56c-a04dc0a01aa3,SESCO,I.3.1,Buenos Aires,AR-B,annual,2011,gasoline combustion consumption by petrochemical industries,143.27816099999998,TJ,N2O,3.2,kg/TJ,458.4901152,kg -197a70a4-3497-3639-bcea-9f9bdc41817c,SESCO,I.3.1,Chaco,AR-H,annual,2011,gasoline combustion consumption by petrochemical industries,1.1907839999999998,TJ,CO2,69300.0,kg/TJ,82521.33119999999,kg -8fccdb34-ba23-33b6-b976-71ce56241da2,SESCO,I.3.1,Chaco,AR-H,annual,2011,gasoline combustion consumption by petrochemical industries,1.1907839999999998,TJ,CH4,33.0,kg/TJ,39.295871999999996,kg -54208466-4a07-3cb9-83e9-02218e4b6890,SESCO,I.3.1,Chaco,AR-H,annual,2011,gasoline combustion consumption by petrochemical industries,1.1907839999999998,TJ,N2O,3.2,kg/TJ,3.8105087999999996,kg -4f6f4fe9-afe1-3954-8ad1-34a5fa080527,SESCO,I.3.1,Santa Fe,AR-S,annual,2011,gasoline combustion consumption by petrochemical industries,14.936187999999998,TJ,CO2,69300.0,kg/TJ,1035077.8283999999,kg -7303bbfd-2d4c-357d-ab24-8b92beb4c1db,SESCO,I.3.1,Santa Fe,AR-S,annual,2011,gasoline combustion consumption by petrochemical industries,14.936187999999998,TJ,CH4,33.0,kg/TJ,492.89420399999995,kg -87f0825d-44bd-3899-9c1d-7209ffb0ea21,SESCO,I.3.1,Santa Fe,AR-S,annual,2011,gasoline combustion consumption by petrochemical industries,14.936187999999998,TJ,N2O,3.2,kg/TJ,47.7958016,kg -4d485571-d6db-3298-8b30-c71cdea924d8,SESCO,II.5.1,Buenos Aires,AR-B,annual,2011,gas oil combustion consumption by agriculture machines,399.23436,TJ,CO2,74100.0,kg/TJ,29583266.075999998,kg -4108a433-41f1-3b77-b0e3-19eab9a5dd61,SESCO,II.5.1,Buenos Aires,AR-B,annual,2011,gas oil combustion consumption by agriculture machines,399.23436,TJ,CH4,3.9,kg/TJ,1557.0140039999999,kg -4108a433-41f1-3b77-b0e3-19eab9a5dd61,SESCO,II.5.1,Buenos Aires,AR-B,annual,2011,gas oil combustion consumption by agriculture machines,399.23436,TJ,N2O,3.9,kg/TJ,1557.0140039999999,kg -7d05e871-2293-313f-9f2f-41264e90f01c,SESCO,II.5.1,Capital Federal,AR-C,annual,2011,gas oil combustion consumption by agriculture machines,96.36816,TJ,CO2,74100.0,kg/TJ,7140880.656,kg -eb845470-175c-322f-835f-2c8b10eaf3c7,SESCO,II.5.1,Capital Federal,AR-C,annual,2011,gas oil combustion consumption by agriculture machines,96.36816,TJ,CH4,3.9,kg/TJ,375.835824,kg -eb845470-175c-322f-835f-2c8b10eaf3c7,SESCO,II.5.1,Capital Federal,AR-C,annual,2011,gas oil combustion consumption by agriculture machines,96.36816,TJ,N2O,3.9,kg/TJ,375.835824,kg -3ffdd473-2270-34e9-aca9-adc1fb24a36b,SESCO,II.5.1,Córdoba,AR-X,annual,2011,gas oil combustion consumption by agriculture machines,149.82576,TJ,CO2,74100.0,kg/TJ,11102088.816,kg -e3a89eb3-82a7-369f-8dd3-4b40b03d29e2,SESCO,II.5.1,Córdoba,AR-X,annual,2011,gas oil combustion consumption by agriculture machines,149.82576,TJ,CH4,3.9,kg/TJ,584.320464,kg -e3a89eb3-82a7-369f-8dd3-4b40b03d29e2,SESCO,II.5.1,Córdoba,AR-X,annual,2011,gas oil combustion consumption by agriculture machines,149.82576,TJ,N2O,3.9,kg/TJ,584.320464,kg -75905586-909a-3191-a161-0c69da72568b,SESCO,II.5.1,La Pampa,AR-L,annual,2011,gas oil combustion consumption by agriculture machines,10.90824,TJ,CO2,74100.0,kg/TJ,808300.5839999999,kg -60af8a50-eac6-394b-b1eb-4426b887bbb5,SESCO,II.5.1,La Pampa,AR-L,annual,2011,gas oil combustion consumption by agriculture machines,10.90824,TJ,CH4,3.9,kg/TJ,42.542136,kg -60af8a50-eac6-394b-b1eb-4426b887bbb5,SESCO,II.5.1,La Pampa,AR-L,annual,2011,gas oil combustion consumption by agriculture machines,10.90824,TJ,N2O,3.9,kg/TJ,42.542136,kg -ebf7c8be-4cce-3d18-92b5-b24f64e3d723,SESCO,II.5.1,Santa Fe,AR-S,annual,2011,gas oil combustion consumption by agriculture machines,437.26872,TJ,CO2,74100.0,kg/TJ,32401612.152,kg -69f2b4a1-7f9d-3417-8f71-b9b8c84d348a,SESCO,II.5.1,Santa Fe,AR-S,annual,2011,gas oil combustion consumption by agriculture machines,437.26872,TJ,CH4,3.9,kg/TJ,1705.348008,kg -69f2b4a1-7f9d-3417-8f71-b9b8c84d348a,SESCO,II.5.1,Santa Fe,AR-S,annual,2011,gas oil combustion consumption by agriculture machines,437.26872,TJ,N2O,3.9,kg/TJ,1705.348008,kg -904321a0-c766-3c8b-9c09-08ee7561f927,SESCO,II.5.1,Buenos Aires,AR-B,annual,2011,gas oil combustion consumption by agriculture machines,5.45412,TJ,CO2,74100.0,kg/TJ,404150.29199999996,kg -30c615d9-7731-312b-b38f-83cdfa9ec271,SESCO,II.5.1,Buenos Aires,AR-B,annual,2011,gas oil combustion consumption by agriculture machines,5.45412,TJ,CH4,3.9,kg/TJ,21.271068,kg -30c615d9-7731-312b-b38f-83cdfa9ec271,SESCO,II.5.1,Buenos Aires,AR-B,annual,2011,gas oil combustion consumption by agriculture machines,5.45412,TJ,N2O,3.9,kg/TJ,21.271068,kg -708da319-be1e-3403-b838-bc7a6de10154,SESCO,II.5.1,Buenos Aires,AR-B,annual,2011,jet kerosene combustion consumption by agriculture machines,0.22017099999999995,TJ,CO2,71500.0,kg/TJ,15742.226499999997,kg -db84a83d-3dc7-37a5-802b-70c078d9aed4,SESCO,II.5.1,Buenos Aires,AR-B,annual,2011,jet kerosene combustion consumption by agriculture machines,0.22017099999999995,TJ,CH4,0.5,kg/TJ,0.11008549999999998,kg -121d6e2a-f4d7-3faa-bba7-4bea9e0d0149,SESCO,II.5.1,Buenos Aires,AR-B,annual,2011,jet kerosene combustion consumption by agriculture machines,0.22017099999999995,TJ,N2O,2.0,kg/TJ,0.4403419999999999,kg -64f2829f-dc94-3e21-af97-cf3dbc8a7fe7,SESCO,II.1.1,Buenos Aires,AR-B,annual,2011,gas oil combustion consumption by to the public,14017.269,TJ,CO2,74100.0,kg/TJ,1038679632.9,kg -1b07e73e-a215-3ac5-a65d-dd3dbd946c73,SESCO,II.1.1,Buenos Aires,AR-B,annual,2011,gas oil combustion consumption by to the public,14017.269,TJ,CH4,3.9,kg/TJ,54667.3491,kg -1b07e73e-a215-3ac5-a65d-dd3dbd946c73,SESCO,II.1.1,Buenos Aires,AR-B,annual,2011,gas oil combustion consumption by to the public,14017.269,TJ,N2O,3.9,kg/TJ,54667.3491,kg -ed9103c6-c21b-3915-9388-5cbc6c164e48,SESCO,II.1.1,Capital Federal,AR-C,annual,2011,gas oil combustion consumption by to the public,1421.61096,TJ,CO2,74100.0,kg/TJ,105341372.13599999,kg -96912676-3814-3962-bf06-ba69f167c0d3,SESCO,II.1.1,Capital Federal,AR-C,annual,2011,gas oil combustion consumption by to the public,1421.61096,TJ,CH4,3.9,kg/TJ,5544.282744,kg -96912676-3814-3962-bf06-ba69f167c0d3,SESCO,II.1.1,Capital Federal,AR-C,annual,2011,gas oil combustion consumption by to the public,1421.61096,TJ,N2O,3.9,kg/TJ,5544.282744,kg -08e81d74-86d0-3c1e-80ce-18668654ad95,SESCO,II.1.1,Catamarca,AR-K,annual,2011,gas oil combustion consumption by to the public,33.37488,TJ,CO2,74100.0,kg/TJ,2473078.608,kg -71aa8511-8b1b-3ed8-9212-db743ffd8c73,SESCO,II.1.1,Catamarca,AR-K,annual,2011,gas oil combustion consumption by to the public,33.37488,TJ,CH4,3.9,kg/TJ,130.16203199999998,kg -71aa8511-8b1b-3ed8-9212-db743ffd8c73,SESCO,II.1.1,Catamarca,AR-K,annual,2011,gas oil combustion consumption by to the public,33.37488,TJ,N2O,3.9,kg/TJ,130.16203199999998,kg -bd61c414-0348-3ee1-8944-7c310d3a7f67,SESCO,II.1.1,Chaco,AR-H,annual,2011,gas oil combustion consumption by to the public,1534.5582,TJ,CO2,74100.0,kg/TJ,113710762.61999999,kg -086f6d2a-a5d9-3049-b52c-8b4b547a8e15,SESCO,II.1.1,Chaco,AR-H,annual,2011,gas oil combustion consumption by to the public,1534.5582,TJ,CH4,3.9,kg/TJ,5984.77698,kg -086f6d2a-a5d9-3049-b52c-8b4b547a8e15,SESCO,II.1.1,Chaco,AR-H,annual,2011,gas oil combustion consumption by to the public,1534.5582,TJ,N2O,3.9,kg/TJ,5984.77698,kg -b5209c67-ac24-3e24-b76c-c27740319de2,SESCO,II.1.1,Chubut,AR-U,annual,2011,gas oil combustion consumption by to the public,49.88172,TJ,CO2,74100.0,kg/TJ,3696235.452,kg -61f5fdd4-79a8-3547-9346-984d60251596,SESCO,II.1.1,Chubut,AR-U,annual,2011,gas oil combustion consumption by to the public,49.88172,TJ,CH4,3.9,kg/TJ,194.538708,kg -61f5fdd4-79a8-3547-9346-984d60251596,SESCO,II.1.1,Chubut,AR-U,annual,2011,gas oil combustion consumption by to the public,49.88172,TJ,N2O,3.9,kg/TJ,194.538708,kg -472f7155-b711-3706-bd6d-2fb0d10e7332,SESCO,II.1.1,Corrientes,AR-W,annual,2011,gas oil combustion consumption by to the public,755.41368,TJ,CO2,74100.0,kg/TJ,55976153.688,kg -aab4b29a-465d-375a-a29d-9a407c5428c7,SESCO,II.1.1,Corrientes,AR-W,annual,2011,gas oil combustion consumption by to the public,755.41368,TJ,CH4,3.9,kg/TJ,2946.113352,kg -aab4b29a-465d-375a-a29d-9a407c5428c7,SESCO,II.1.1,Corrientes,AR-W,annual,2011,gas oil combustion consumption by to the public,755.41368,TJ,N2O,3.9,kg/TJ,2946.113352,kg -75dffe7e-e4ea-376e-8f91-2882dbee07b0,SESCO,II.1.1,Córdoba,AR-X,annual,2011,gas oil combustion consumption by to the public,4956.49476,TJ,CO2,74100.0,kg/TJ,367276261.71599996,kg -2b721683-3887-3dce-9f19-24afea28f593,SESCO,II.1.1,Córdoba,AR-X,annual,2011,gas oil combustion consumption by to the public,4956.49476,TJ,CH4,3.9,kg/TJ,19330.329564,kg -2b721683-3887-3dce-9f19-24afea28f593,SESCO,II.1.1,Córdoba,AR-X,annual,2011,gas oil combustion consumption by to the public,4956.49476,TJ,N2O,3.9,kg/TJ,19330.329564,kg -6f658641-1968-3083-9a47-02af0a5faccd,SESCO,II.1.1,Entre Rios,AR-E,annual,2011,gas oil combustion consumption by to the public,1643.46,TJ,CO2,74100.0,kg/TJ,121780386.0,kg -fb8f622f-8d7b-3c43-b26f-bd4ff07acae0,SESCO,II.1.1,Entre Rios,AR-E,annual,2011,gas oil combustion consumption by to the public,1643.46,TJ,CH4,3.9,kg/TJ,6409.494,kg -fb8f622f-8d7b-3c43-b26f-bd4ff07acae0,SESCO,II.1.1,Entre Rios,AR-E,annual,2011,gas oil combustion consumption by to the public,1643.46,TJ,N2O,3.9,kg/TJ,6409.494,kg -528681d5-5d92-3c07-a257-ebcf29c97b8f,SESCO,II.1.1,Formosa,AR-P,annual,2011,gas oil combustion consumption by to the public,209.02644,TJ,CO2,74100.0,kg/TJ,15488859.204,kg -9b16f5f5-2795-3911-bf3c-ad1913e2bcf4,SESCO,II.1.1,Formosa,AR-P,annual,2011,gas oil combustion consumption by to the public,209.02644,TJ,CH4,3.9,kg/TJ,815.203116,kg -9b16f5f5-2795-3911-bf3c-ad1913e2bcf4,SESCO,II.1.1,Formosa,AR-P,annual,2011,gas oil combustion consumption by to the public,209.02644,TJ,N2O,3.9,kg/TJ,815.203116,kg -e1e8e713-6865-35ad-8c44-3cf9a862fa5e,SESCO,II.1.1,Jujuy,AR-Y,annual,2011,gas oil combustion consumption by to the public,324.42984,TJ,CO2,74100.0,kg/TJ,24040251.144,kg -04c5a6a0-c713-3cea-ac05-eb9a103edb5d,SESCO,II.1.1,Jujuy,AR-Y,annual,2011,gas oil combustion consumption by to the public,324.42984,TJ,CH4,3.9,kg/TJ,1265.276376,kg -04c5a6a0-c713-3cea-ac05-eb9a103edb5d,SESCO,II.1.1,Jujuy,AR-Y,annual,2011,gas oil combustion consumption by to the public,324.42984,TJ,N2O,3.9,kg/TJ,1265.276376,kg -42b17131-8150-36b4-92b2-02e07b49cecc,SESCO,II.1.1,La Pampa,AR-L,annual,2011,gas oil combustion consumption by to the public,499.57572,TJ,CO2,74100.0,kg/TJ,37018560.852,kg -cf25d509-dad0-37c9-80da-593232858bba,SESCO,II.1.1,La Pampa,AR-L,annual,2011,gas oil combustion consumption by to the public,499.57572,TJ,CH4,3.9,kg/TJ,1948.345308,kg -cf25d509-dad0-37c9-80da-593232858bba,SESCO,II.1.1,La Pampa,AR-L,annual,2011,gas oil combustion consumption by to the public,499.57572,TJ,N2O,3.9,kg/TJ,1948.345308,kg -50395ad7-f66a-38b8-80f4-9ad9c2f182c4,SESCO,II.1.1,La Rioja,AR-F,annual,2011,gas oil combustion consumption by to the public,335.26583999999997,TJ,CO2,74100.0,kg/TJ,24843198.744,kg -b55ac629-d2e8-34f9-b8fa-945a2291ef2e,SESCO,II.1.1,La Rioja,AR-F,annual,2011,gas oil combustion consumption by to the public,335.26583999999997,TJ,CH4,3.9,kg/TJ,1307.536776,kg -b55ac629-d2e8-34f9-b8fa-945a2291ef2e,SESCO,II.1.1,La Rioja,AR-F,annual,2011,gas oil combustion consumption by to the public,335.26583999999997,TJ,N2O,3.9,kg/TJ,1307.536776,kg -d6642f80-3688-316d-a1d0-00115b459388,SESCO,II.1.1,Mendoza,AR-M,annual,2011,gas oil combustion consumption by to the public,888.29916,TJ,CO2,74100.0,kg/TJ,65822967.756000005,kg -6a5ce21b-ac08-3fc7-8ae0-42000a372787,SESCO,II.1.1,Mendoza,AR-M,annual,2011,gas oil combustion consumption by to the public,888.29916,TJ,CH4,3.9,kg/TJ,3464.366724,kg -6a5ce21b-ac08-3fc7-8ae0-42000a372787,SESCO,II.1.1,Mendoza,AR-M,annual,2011,gas oil combustion consumption by to the public,888.29916,TJ,N2O,3.9,kg/TJ,3464.366724,kg -3cc0e609-d690-381c-ad43-4ce5a65178cc,SESCO,II.1.1,Misiones,AR-N,annual,2011,gas oil combustion consumption by to the public,1145.40132,TJ,CO2,74100.0,kg/TJ,84874237.81199999,kg -0b9984dd-91f5-3d7d-9f7a-2d7bc9b76896,SESCO,II.1.1,Misiones,AR-N,annual,2011,gas oil combustion consumption by to the public,1145.40132,TJ,CH4,3.9,kg/TJ,4467.065148,kg -0b9984dd-91f5-3d7d-9f7a-2d7bc9b76896,SESCO,II.1.1,Misiones,AR-N,annual,2011,gas oil combustion consumption by to the public,1145.40132,TJ,N2O,3.9,kg/TJ,4467.065148,kg -26e21818-027b-3809-9d09-e5e92cbd0831,SESCO,II.1.1,Neuquén,AR-Q,annual,2011,gas oil combustion consumption by to the public,299.68764,TJ,CO2,74100.0,kg/TJ,22206854.123999998,kg -4353762e-4a18-3565-b827-5e2df5de1260,SESCO,II.1.1,Neuquén,AR-Q,annual,2011,gas oil combustion consumption by to the public,299.68764,TJ,CH4,3.9,kg/TJ,1168.781796,kg -4353762e-4a18-3565-b827-5e2df5de1260,SESCO,II.1.1,Neuquén,AR-Q,annual,2011,gas oil combustion consumption by to the public,299.68764,TJ,N2O,3.9,kg/TJ,1168.781796,kg -6fa1e30b-fbca-301b-b9f5-4fa48c50ae41,SESCO,II.1.1,Rio Negro,AR-R,annual,2011,gas oil combustion consumption by to the public,372.65004,TJ,CO2,74100.0,kg/TJ,27613367.963999998,kg -fd6edc88-90ae-379d-ba47-f23fc1ff75d1,SESCO,II.1.1,Rio Negro,AR-R,annual,2011,gas oil combustion consumption by to the public,372.65004,TJ,CH4,3.9,kg/TJ,1453.3351559999999,kg -fd6edc88-90ae-379d-ba47-f23fc1ff75d1,SESCO,II.1.1,Rio Negro,AR-R,annual,2011,gas oil combustion consumption by to the public,372.65004,TJ,N2O,3.9,kg/TJ,1453.3351559999999,kg -6e537c68-8583-3170-be56-8ed0fd3e5fd2,SESCO,II.1.1,Salta,AR-A,annual,2011,gas oil combustion consumption by to the public,339.3474,TJ,CO2,74100.0,kg/TJ,25145642.34,kg -3b54330b-c4c1-3880-882c-c57a2b34acb8,SESCO,II.1.1,Salta,AR-A,annual,2011,gas oil combustion consumption by to the public,339.3474,TJ,CH4,3.9,kg/TJ,1323.45486,kg -3b54330b-c4c1-3880-882c-c57a2b34acb8,SESCO,II.1.1,Salta,AR-A,annual,2011,gas oil combustion consumption by to the public,339.3474,TJ,N2O,3.9,kg/TJ,1323.45486,kg -d6c6c6e2-817a-3631-9fa8-22b71e90b31d,SESCO,II.1.1,San Juan,AR-J,annual,2011,gas oil combustion consumption by to the public,254.82659999999998,TJ,CO2,74100.0,kg/TJ,18882651.06,kg -20ba0a13-98dd-3732-86e8-0198b8d18dc4,SESCO,II.1.1,San Juan,AR-J,annual,2011,gas oil combustion consumption by to the public,254.82659999999998,TJ,CH4,3.9,kg/TJ,993.8237399999999,kg -20ba0a13-98dd-3732-86e8-0198b8d18dc4,SESCO,II.1.1,San Juan,AR-J,annual,2011,gas oil combustion consumption by to the public,254.82659999999998,TJ,N2O,3.9,kg/TJ,993.8237399999999,kg -e26646a0-2efc-35d6-8179-06f0d4716f55,SESCO,II.1.1,San Luis,AR-D,annual,2011,gas oil combustion consumption by to the public,23.22516,TJ,CO2,74100.0,kg/TJ,1720984.356,kg -e716070e-2d30-3647-a518-e43f2a5bbd4f,SESCO,II.1.1,San Luis,AR-D,annual,2011,gas oil combustion consumption by to the public,23.22516,TJ,CH4,3.9,kg/TJ,90.57812399999999,kg -e716070e-2d30-3647-a518-e43f2a5bbd4f,SESCO,II.1.1,San Luis,AR-D,annual,2011,gas oil combustion consumption by to the public,23.22516,TJ,N2O,3.9,kg/TJ,90.57812399999999,kg -3d248a3a-a0ca-396e-bbaf-e695d53f2c13,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2011,gas oil combustion consumption by to the public,0.18059999999999998,TJ,CO2,74100.0,kg/TJ,13382.46,kg -306a3ed5-391a-3f84-b349-fda58778f506,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2011,gas oil combustion consumption by to the public,0.18059999999999998,TJ,CH4,3.9,kg/TJ,0.70434,kg -306a3ed5-391a-3f84-b349-fda58778f506,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2011,gas oil combustion consumption by to the public,0.18059999999999998,TJ,N2O,3.9,kg/TJ,0.70434,kg -f8a8a558-fe0e-3006-9e56-29b66eb27cee,SESCO,II.1.1,Santa Fe,AR-S,annual,2011,gas oil combustion consumption by to the public,5044.44696,TJ,CO2,74100.0,kg/TJ,373793519.736,kg -aeb1de14-f6aa-3b12-89fc-af352e4c7be8,SESCO,II.1.1,Santa Fe,AR-S,annual,2011,gas oil combustion consumption by to the public,5044.44696,TJ,CH4,3.9,kg/TJ,19673.343144000002,kg -aeb1de14-f6aa-3b12-89fc-af352e4c7be8,SESCO,II.1.1,Santa Fe,AR-S,annual,2011,gas oil combustion consumption by to the public,5044.44696,TJ,N2O,3.9,kg/TJ,19673.343144000002,kg -a20db8d0-735d-348f-afff-9185e26d5a70,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2011,gas oil combustion consumption by to the public,505.02984,TJ,CO2,74100.0,kg/TJ,37422711.144,kg -93113219-3033-305b-99d2-07c4136174b8,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2011,gas oil combustion consumption by to the public,505.02984,TJ,CH4,3.9,kg/TJ,1969.616376,kg -93113219-3033-305b-99d2-07c4136174b8,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2011,gas oil combustion consumption by to the public,505.02984,TJ,N2O,3.9,kg/TJ,1969.616376,kg -e267b218-21f0-3955-93e5-aac85f43e171,SESCO,II.1.1,Tucuman,AR-T,annual,2011,gas oil combustion consumption by to the public,860.27004,TJ,CO2,74100.0,kg/TJ,63746009.964,kg -7eec23fd-1f81-3a5b-bba1-5170ebf607d7,SESCO,II.1.1,Tucuman,AR-T,annual,2011,gas oil combustion consumption by to the public,860.27004,TJ,CH4,3.9,kg/TJ,3355.053156,kg -7eec23fd-1f81-3a5b-bba1-5170ebf607d7,SESCO,II.1.1,Tucuman,AR-T,annual,2011,gas oil combustion consumption by to the public,860.27004,TJ,N2O,3.9,kg/TJ,3355.053156,kg -54ee38c3-7eb2-350c-bf77-30df30c90b5f,SESCO,II.1.1,Buenos Aires,AR-B,annual,2011,gas oil combustion consumption by to the public,6034.85736,TJ,CO2,74100.0,kg/TJ,447182930.376,kg -ca53898f-33bf-3464-bf09-f2f1038eee0f,SESCO,II.1.1,Buenos Aires,AR-B,annual,2011,gas oil combustion consumption by to the public,6034.85736,TJ,CH4,3.9,kg/TJ,23535.943704,kg -ca53898f-33bf-3464-bf09-f2f1038eee0f,SESCO,II.1.1,Buenos Aires,AR-B,annual,2011,gas oil combustion consumption by to the public,6034.85736,TJ,N2O,3.9,kg/TJ,23535.943704,kg -d0a0d0fa-c840-383a-b93b-2127ff824bb7,SESCO,II.1.1,Capital Federal,AR-C,annual,2011,gas oil combustion consumption by to the public,1103.5021199999999,TJ,CO2,74100.0,kg/TJ,81769507.092,kg -7de08b4c-f7a3-3292-88ac-1464b3c085f8,SESCO,II.1.1,Capital Federal,AR-C,annual,2011,gas oil combustion consumption by to the public,1103.5021199999999,TJ,CH4,3.9,kg/TJ,4303.658267999999,kg -7de08b4c-f7a3-3292-88ac-1464b3c085f8,SESCO,II.1.1,Capital Federal,AR-C,annual,2011,gas oil combustion consumption by to the public,1103.5021199999999,TJ,N2O,3.9,kg/TJ,4303.658267999999,kg -3204175a-6911-34a5-b161-2851068f0b5c,SESCO,II.1.1,Catamarca,AR-K,annual,2011,gas oil combustion consumption by to the public,18.674039999999998,TJ,CO2,74100.0,kg/TJ,1383746.3639999998,kg -de1c8506-9836-3360-b41e-8fc329b601f8,SESCO,II.1.1,Catamarca,AR-K,annual,2011,gas oil combustion consumption by to the public,18.674039999999998,TJ,CH4,3.9,kg/TJ,72.82875599999998,kg -de1c8506-9836-3360-b41e-8fc329b601f8,SESCO,II.1.1,Catamarca,AR-K,annual,2011,gas oil combustion consumption by to the public,18.674039999999998,TJ,N2O,3.9,kg/TJ,72.82875599999998,kg -fdb528f5-d2fa-3412-aedd-fd76700a3ffc,SESCO,II.1.1,Chaco,AR-H,annual,2011,gas oil combustion consumption by to the public,263.89272,TJ,CO2,74100.0,kg/TJ,19554450.552,kg -534f197a-3a8c-3de1-a1e5-daaef1669e3c,SESCO,II.1.1,Chaco,AR-H,annual,2011,gas oil combustion consumption by to the public,263.89272,TJ,CH4,3.9,kg/TJ,1029.1816079999999,kg -534f197a-3a8c-3de1-a1e5-daaef1669e3c,SESCO,II.1.1,Chaco,AR-H,annual,2011,gas oil combustion consumption by to the public,263.89272,TJ,N2O,3.9,kg/TJ,1029.1816079999999,kg -f6028edd-4008-3eb5-96c6-6eb1d3984e79,SESCO,II.1.1,Chubut,AR-U,annual,2011,gas oil combustion consumption by to the public,45.22224,TJ,CO2,74100.0,kg/TJ,3350967.984,kg -f38edeef-f225-36bf-b867-42a76258464f,SESCO,II.1.1,Chubut,AR-U,annual,2011,gas oil combustion consumption by to the public,45.22224,TJ,CH4,3.9,kg/TJ,176.366736,kg -f38edeef-f225-36bf-b867-42a76258464f,SESCO,II.1.1,Chubut,AR-U,annual,2011,gas oil combustion consumption by to the public,45.22224,TJ,N2O,3.9,kg/TJ,176.366736,kg -fa93c880-6b04-3ad2-98d2-c34b1b7a6c3a,SESCO,II.1.1,Corrientes,AR-W,annual,2011,gas oil combustion consumption by to the public,194.47008,TJ,CO2,74100.0,kg/TJ,14410232.928,kg -96e5f8d0-d6cc-3d0b-9899-cf07ad95f5e6,SESCO,II.1.1,Corrientes,AR-W,annual,2011,gas oil combustion consumption by to the public,194.47008,TJ,CH4,3.9,kg/TJ,758.433312,kg -96e5f8d0-d6cc-3d0b-9899-cf07ad95f5e6,SESCO,II.1.1,Corrientes,AR-W,annual,2011,gas oil combustion consumption by to the public,194.47008,TJ,N2O,3.9,kg/TJ,758.433312,kg -7e4c9a79-acf9-328b-b778-f14e0641191d,SESCO,II.1.1,Córdoba,AR-X,annual,2011,gas oil combustion consumption by to the public,1213.19856,TJ,CO2,74100.0,kg/TJ,89898013.296,kg -1395691b-3f12-35e8-a4d6-a5961ea82c56,SESCO,II.1.1,Córdoba,AR-X,annual,2011,gas oil combustion consumption by to the public,1213.19856,TJ,CH4,3.9,kg/TJ,4731.474384,kg -1395691b-3f12-35e8-a4d6-a5961ea82c56,SESCO,II.1.1,Córdoba,AR-X,annual,2011,gas oil combustion consumption by to the public,1213.19856,TJ,N2O,3.9,kg/TJ,4731.474384,kg -6d616513-9b91-3604-8fb2-286389824a1d,SESCO,II.1.1,Entre Rios,AR-E,annual,2011,gas oil combustion consumption by to the public,658.1064,TJ,CO2,74100.0,kg/TJ,48765684.24,kg -c9c2ad9c-c898-333e-9f68-20f67411b332,SESCO,II.1.1,Entre Rios,AR-E,annual,2011,gas oil combustion consumption by to the public,658.1064,TJ,CH4,3.9,kg/TJ,2566.61496,kg -c9c2ad9c-c898-333e-9f68-20f67411b332,SESCO,II.1.1,Entre Rios,AR-E,annual,2011,gas oil combustion consumption by to the public,658.1064,TJ,N2O,3.9,kg/TJ,2566.61496,kg -72c21aa9-2e02-3021-89de-e38c0f0e941b,SESCO,II.1.1,Formosa,AR-P,annual,2011,gas oil combustion consumption by to the public,73.97376,TJ,CO2,74100.0,kg/TJ,5481455.615999999,kg -e5b8b5f3-808a-3b32-b817-c6f3116d6be1,SESCO,II.1.1,Formosa,AR-P,annual,2011,gas oil combustion consumption by to the public,73.97376,TJ,CH4,3.9,kg/TJ,288.497664,kg -e5b8b5f3-808a-3b32-b817-c6f3116d6be1,SESCO,II.1.1,Formosa,AR-P,annual,2011,gas oil combustion consumption by to the public,73.97376,TJ,N2O,3.9,kg/TJ,288.497664,kg -0dd01e95-96de-3f83-9ba5-f1b66a3f0398,SESCO,II.1.1,Jujuy,AR-Y,annual,2011,gas oil combustion consumption by to the public,62.307,TJ,CO2,74100.0,kg/TJ,4616948.7,kg -6ec9a4de-f8fc-3406-88ae-6d3d81591a7d,SESCO,II.1.1,Jujuy,AR-Y,annual,2011,gas oil combustion consumption by to the public,62.307,TJ,CH4,3.9,kg/TJ,242.9973,kg -6ec9a4de-f8fc-3406-88ae-6d3d81591a7d,SESCO,II.1.1,Jujuy,AR-Y,annual,2011,gas oil combustion consumption by to the public,62.307,TJ,N2O,3.9,kg/TJ,242.9973,kg -ae93fd10-9960-3088-9ad8-2b40be73a909,SESCO,II.1.1,La Pampa,AR-L,annual,2011,gas oil combustion consumption by to the public,180.2388,TJ,CO2,74100.0,kg/TJ,13355695.08,kg -399dfaf4-7469-378d-980a-fe0419de0d1b,SESCO,II.1.1,La Pampa,AR-L,annual,2011,gas oil combustion consumption by to the public,180.2388,TJ,CH4,3.9,kg/TJ,702.93132,kg -399dfaf4-7469-378d-980a-fe0419de0d1b,SESCO,II.1.1,La Pampa,AR-L,annual,2011,gas oil combustion consumption by to the public,180.2388,TJ,N2O,3.9,kg/TJ,702.93132,kg -a00b8ed4-5e92-33a1-b5c5-ca8bef66b05c,SESCO,II.1.1,La Rioja,AR-F,annual,2011,gas oil combustion consumption by to the public,82.3536,TJ,CO2,74100.0,kg/TJ,6102401.76,kg -2f0f4946-e7d4-3a81-bb88-22a1aaca2407,SESCO,II.1.1,La Rioja,AR-F,annual,2011,gas oil combustion consumption by to the public,82.3536,TJ,CH4,3.9,kg/TJ,321.17904,kg -2f0f4946-e7d4-3a81-bb88-22a1aaca2407,SESCO,II.1.1,La Rioja,AR-F,annual,2011,gas oil combustion consumption by to the public,82.3536,TJ,N2O,3.9,kg/TJ,321.17904,kg -4c9e06e4-d552-34c9-af3b-b7053c308078,SESCO,II.1.1,Mendoza,AR-M,annual,2011,gas oil combustion consumption by to the public,336.9996,TJ,CO2,74100.0,kg/TJ,24971670.36,kg -e1e32b32-d187-36b8-8f49-995b7609e05a,SESCO,II.1.1,Mendoza,AR-M,annual,2011,gas oil combustion consumption by to the public,336.9996,TJ,CH4,3.9,kg/TJ,1314.29844,kg -e1e32b32-d187-36b8-8f49-995b7609e05a,SESCO,II.1.1,Mendoza,AR-M,annual,2011,gas oil combustion consumption by to the public,336.9996,TJ,N2O,3.9,kg/TJ,1314.29844,kg -2e8e54ef-8871-322a-90bc-ec645f3d8483,SESCO,II.1.1,Misiones,AR-N,annual,2011,gas oil combustion consumption by to the public,236.33316,TJ,CO2,74100.0,kg/TJ,17512287.156,kg -84314516-3644-3496-a999-1b2ce1e00340,SESCO,II.1.1,Misiones,AR-N,annual,2011,gas oil combustion consumption by to the public,236.33316,TJ,CH4,3.9,kg/TJ,921.6993239999999,kg -84314516-3644-3496-a999-1b2ce1e00340,SESCO,II.1.1,Misiones,AR-N,annual,2011,gas oil combustion consumption by to the public,236.33316,TJ,N2O,3.9,kg/TJ,921.6993239999999,kg -13365b84-c085-35ef-ae2b-30cfa29e7bf6,SESCO,II.1.1,Neuquén,AR-Q,annual,2011,gas oil combustion consumption by to the public,80.25864,TJ,CO2,74100.0,kg/TJ,5947165.224,kg -f950dce1-7fd0-3c84-8a1e-5a8336c08514,SESCO,II.1.1,Neuquén,AR-Q,annual,2011,gas oil combustion consumption by to the public,80.25864,TJ,CH4,3.9,kg/TJ,313.008696,kg -f950dce1-7fd0-3c84-8a1e-5a8336c08514,SESCO,II.1.1,Neuquén,AR-Q,annual,2011,gas oil combustion consumption by to the public,80.25864,TJ,N2O,3.9,kg/TJ,313.008696,kg -711961d7-c1aa-33e7-b2ea-24f332a0e1a2,SESCO,II.1.1,Rio Negro,AR-R,annual,2011,gas oil combustion consumption by to the public,111.7914,TJ,CO2,74100.0,kg/TJ,8283742.739999999,kg -9b4a6d8a-135d-3d73-bd7e-146b92f01759,SESCO,II.1.1,Rio Negro,AR-R,annual,2011,gas oil combustion consumption by to the public,111.7914,TJ,CH4,3.9,kg/TJ,435.98645999999997,kg -9b4a6d8a-135d-3d73-bd7e-146b92f01759,SESCO,II.1.1,Rio Negro,AR-R,annual,2011,gas oil combustion consumption by to the public,111.7914,TJ,N2O,3.9,kg/TJ,435.98645999999997,kg -63e2041c-71e7-3a3f-9094-f9dc0c57bf4d,SESCO,II.1.1,Salta,AR-A,annual,2011,gas oil combustion consumption by to the public,93.26183999999999,TJ,CO2,74100.0,kg/TJ,6910702.344,kg -a6dfb5af-eaf5-35e5-8ff0-0a6be5bccdd4,SESCO,II.1.1,Salta,AR-A,annual,2011,gas oil combustion consumption by to the public,93.26183999999999,TJ,CH4,3.9,kg/TJ,363.72117599999996,kg -a6dfb5af-eaf5-35e5-8ff0-0a6be5bccdd4,SESCO,II.1.1,Salta,AR-A,annual,2011,gas oil combustion consumption by to the public,93.26183999999999,TJ,N2O,3.9,kg/TJ,363.72117599999996,kg -19324488-54ad-3a9a-91c1-0e724cc342ad,SESCO,II.1.1,San Juan,AR-J,annual,2011,gas oil combustion consumption by to the public,56.74452,TJ,CO2,74100.0,kg/TJ,4204768.932,kg -721a37f3-9d67-3dc7-950d-3cf3308fc3db,SESCO,II.1.1,San Juan,AR-J,annual,2011,gas oil combustion consumption by to the public,56.74452,TJ,CH4,3.9,kg/TJ,221.303628,kg -721a37f3-9d67-3dc7-950d-3cf3308fc3db,SESCO,II.1.1,San Juan,AR-J,annual,2011,gas oil combustion consumption by to the public,56.74452,TJ,N2O,3.9,kg/TJ,221.303628,kg -dc0cb924-32bd-3e5e-9e7d-32c630e59894,SESCO,II.1.1,San Luis,AR-D,annual,2011,gas oil combustion consumption by to the public,8.488199999999999,TJ,CO2,74100.0,kg/TJ,628975.6199999999,kg -54882168-5256-358c-bb33-0ee17d97711c,SESCO,II.1.1,San Luis,AR-D,annual,2011,gas oil combustion consumption by to the public,8.488199999999999,TJ,CH4,3.9,kg/TJ,33.10397999999999,kg -54882168-5256-358c-bb33-0ee17d97711c,SESCO,II.1.1,San Luis,AR-D,annual,2011,gas oil combustion consumption by to the public,8.488199999999999,TJ,N2O,3.9,kg/TJ,33.10397999999999,kg -f960dd20-c449-3b11-a7ca-f9dc06f55995,SESCO,II.1.1,Santa Fe,AR-S,annual,2011,gas oil combustion consumption by to the public,1496.34324,TJ,CO2,74100.0,kg/TJ,110879034.08399999,kg -c71948db-7afe-3d8a-82b5-8e95be359298,SESCO,II.1.1,Santa Fe,AR-S,annual,2011,gas oil combustion consumption by to the public,1496.34324,TJ,CH4,3.9,kg/TJ,5835.738635999999,kg -c71948db-7afe-3d8a-82b5-8e95be359298,SESCO,II.1.1,Santa Fe,AR-S,annual,2011,gas oil combustion consumption by to the public,1496.34324,TJ,N2O,3.9,kg/TJ,5835.738635999999,kg -bfca9ca7-3ac3-3673-942d-71796cf1a0aa,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2011,gas oil combustion consumption by to the public,122.59128,TJ,CO2,74100.0,kg/TJ,9084013.848,kg -41cb25ac-bd1e-34f4-b1f4-2421cf09d6ec,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2011,gas oil combustion consumption by to the public,122.59128,TJ,CH4,3.9,kg/TJ,478.10599199999996,kg -41cb25ac-bd1e-34f4-b1f4-2421cf09d6ec,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2011,gas oil combustion consumption by to the public,122.59128,TJ,N2O,3.9,kg/TJ,478.10599199999996,kg -c951cef6-9e65-3b38-8e42-d1fda0a3e4be,SESCO,II.1.1,Tucuman,AR-T,annual,2011,gas oil combustion consumption by to the public,200.71884,TJ,CO2,74100.0,kg/TJ,14873266.044,kg -15d362fa-7789-3164-8aa2-e4ae96a0f910,SESCO,II.1.1,Tucuman,AR-T,annual,2011,gas oil combustion consumption by to the public,200.71884,TJ,CH4,3.9,kg/TJ,782.8034759999999,kg -15d362fa-7789-3164-8aa2-e4ae96a0f910,SESCO,II.1.1,Tucuman,AR-T,annual,2011,gas oil combustion consumption by to the public,200.71884,TJ,N2O,3.9,kg/TJ,782.8034759999999,kg -ba209ed9-6276-3e56-bab3-7f9b1d9b47bc,SESCO,II.1.1,Buenos Aires,AR-B,annual,2011,jet kerosene combustion consumption by to the public,21.010603999999997,TJ,CO2,71500.0,kg/TJ,1502258.1859999998,kg -950a38cf-52c6-3189-8913-3775899adfc8,SESCO,II.1.1,Buenos Aires,AR-B,annual,2011,jet kerosene combustion consumption by to the public,21.010603999999997,TJ,CH4,0.5,kg/TJ,10.505301999999999,kg -e1c4174c-4443-381b-88bc-36990157247a,SESCO,II.1.1,Buenos Aires,AR-B,annual,2011,jet kerosene combustion consumption by to the public,21.010603999999997,TJ,N2O,2.0,kg/TJ,42.021207999999994,kg -e5b67e02-7507-3c2d-be14-cb39e5bd273d,SESCO,II.1.1,Chaco,AR-H,annual,2011,jet kerosene combustion consumption by to the public,0.9750429999999999,TJ,CO2,71500.0,kg/TJ,69715.57449999999,kg -d7c14ffe-92d9-3ea4-b623-9668e4864928,SESCO,II.1.1,Chaco,AR-H,annual,2011,jet kerosene combustion consumption by to the public,0.9750429999999999,TJ,CH4,0.5,kg/TJ,0.48752149999999994,kg -0abdc28e-beec-3697-8b42-13d5d839ec93,SESCO,II.1.1,Chaco,AR-H,annual,2011,jet kerosene combustion consumption by to the public,0.9750429999999999,TJ,N2O,2.0,kg/TJ,1.9500859999999998,kg -73539096-aa59-3a28-ac14-fa5ea3bb9e1d,SESCO,II.1.1,Córdoba,AR-X,annual,2011,jet kerosene combustion consumption by to the public,5.850257999999999,TJ,CO2,71500.0,kg/TJ,418293.4469999999,kg -0c84cd31-4614-37e6-baf2-bf3a91ef8287,SESCO,II.1.1,Córdoba,AR-X,annual,2011,jet kerosene combustion consumption by to the public,5.850257999999999,TJ,CH4,0.5,kg/TJ,2.9251289999999996,kg -9a2c1a03-4aa1-37e3-8896-e08fe568c7fb,SESCO,II.1.1,Córdoba,AR-X,annual,2011,jet kerosene combustion consumption by to the public,5.850257999999999,TJ,N2O,2.0,kg/TJ,11.700515999999999,kg -0887a69a-ebfd-3618-bbd0-cebaff61e041,SESCO,II.1.1,Entre Rios,AR-E,annual,2011,jet kerosene combustion consumption by to the public,2.9565819999999996,TJ,CO2,71500.0,kg/TJ,211395.61299999998,kg -dd2700f7-7c16-3988-af23-8701293991cf,SESCO,II.1.1,Entre Rios,AR-E,annual,2011,jet kerosene combustion consumption by to the public,2.9565819999999996,TJ,CH4,0.5,kg/TJ,1.4782909999999998,kg -5eb40e3e-c027-3871-a2dc-29e051854b07,SESCO,II.1.1,Entre Rios,AR-E,annual,2011,jet kerosene combustion consumption by to the public,2.9565819999999996,TJ,N2O,2.0,kg/TJ,5.913163999999999,kg -7400d741-6575-3208-a7b2-448c970e44c0,SESCO,II.1.1,La Pampa,AR-L,annual,2011,jet kerosene combustion consumption by to the public,0.31453,TJ,CO2,71500.0,kg/TJ,22488.894999999997,kg -16138a70-d97f-3afc-8e85-635807023d2d,SESCO,II.1.1,La Pampa,AR-L,annual,2011,jet kerosene combustion consumption by to the public,0.31453,TJ,CH4,0.5,kg/TJ,0.157265,kg -7eaa4603-0185-318f-81cd-6f5bffb49759,SESCO,II.1.1,La Pampa,AR-L,annual,2011,jet kerosene combustion consumption by to the public,0.31453,TJ,N2O,2.0,kg/TJ,0.62906,kg -28f2945b-c4fa-3b87-b77c-92a7f6e1c9b2,SESCO,II.1.1,Mendoza,AR-M,annual,2011,jet kerosene combustion consumption by to the public,1.8242739999999997,TJ,CO2,71500.0,kg/TJ,130435.59099999999,kg -f51eddd4-eea6-37da-ba7b-00031d66eeae,SESCO,II.1.1,Mendoza,AR-M,annual,2011,jet kerosene combustion consumption by to the public,1.8242739999999997,TJ,CH4,0.5,kg/TJ,0.9121369999999999,kg -a36edcf7-c69d-346c-a581-1869cb00ced7,SESCO,II.1.1,Mendoza,AR-M,annual,2011,jet kerosene combustion consumption by to the public,1.8242739999999997,TJ,N2O,2.0,kg/TJ,3.6485479999999995,kg -e5e9467b-b30a-3575-9036-9f27ad69245b,SESCO,II.1.1,Santa Fe,AR-S,annual,2011,jet kerosene combustion consumption by to the public,2.0758979999999996,TJ,CO2,71500.0,kg/TJ,148426.70699999997,kg -70dac4f1-5206-3c84-8861-75b6fdc84691,SESCO,II.1.1,Santa Fe,AR-S,annual,2011,jet kerosene combustion consumption by to the public,2.0758979999999996,TJ,CH4,0.5,kg/TJ,1.0379489999999998,kg -c2bb96a8-649e-3752-9e6d-804bbdce99fb,SESCO,II.1.1,Santa Fe,AR-S,annual,2011,jet kerosene combustion consumption by to the public,2.0758979999999996,TJ,N2O,2.0,kg/TJ,4.151795999999999,kg -c2a75594-d16f-38b8-bc01-588c20324ede,SESCO,I.3.1,Buenos Aires,AR-B,annual,2011,gasoline combustion consumption by petrochemical industries,74.9113,TJ,CO2,69300.0,kg/TJ,5191353.09,kg -0560ef28-52c5-3a8a-b1cc-bf3885c9afa1,SESCO,I.3.1,Buenos Aires,AR-B,annual,2011,gasoline combustion consumption by petrochemical industries,74.9113,TJ,CH4,33.0,kg/TJ,2472.0729,kg -2d15e347-a05d-317b-af81-14357cba3d06,SESCO,I.3.1,Buenos Aires,AR-B,annual,2011,gasoline combustion consumption by petrochemical industries,74.9113,TJ,N2O,3.2,kg/TJ,239.71616,kg -46f5160d-9457-38c3-87d8-ec2203319c46,SESCO,I.3.1,Capital Federal,AR-C,annual,2011,gas oil combustion consumption by petrochemical industries,2.3478,TJ,CO2,74100.0,kg/TJ,173971.97999999998,kg -2e321b8f-16a9-35a3-9dd6-fb915fb3974f,SESCO,I.3.1,Capital Federal,AR-C,annual,2011,gas oil combustion consumption by petrochemical industries,2.3478,TJ,CH4,3.9,kg/TJ,9.156419999999999,kg -2e321b8f-16a9-35a3-9dd6-fb915fb3974f,SESCO,I.3.1,Capital Federal,AR-C,annual,2011,gas oil combustion consumption by petrochemical industries,2.3478,TJ,N2O,3.9,kg/TJ,9.156419999999999,kg -690a0056-e364-362f-a5bb-0b49fb76889f,SESCO,II.2.1,Buenos Aires,AR-B,annual,2011,gas oil combustion consumption by railway transport,387.24252,TJ,CO2,74100.0,kg/TJ,28694670.732,kg -8213aeca-14fb-3682-a754-27ebfe96aae1,SESCO,II.2.1,Buenos Aires,AR-B,annual,2011,gas oil combustion consumption by railway transport,387.24252,TJ,CH4,3.9,kg/TJ,1510.245828,kg -8213aeca-14fb-3682-a754-27ebfe96aae1,SESCO,II.2.1,Buenos Aires,AR-B,annual,2011,gas oil combustion consumption by railway transport,387.24252,TJ,N2O,3.9,kg/TJ,1510.245828,kg -e5fff69d-79ac-3961-bb3c-b59f3ed37b3f,SESCO,II.2.1,Capital Federal,AR-C,annual,2011,gas oil combustion consumption by railway transport,2252.15424,TJ,CO2,74100.0,kg/TJ,166884629.184,kg -29528a8e-74a4-3d21-89d9-bd9910b7b8d6,SESCO,II.2.1,Capital Federal,AR-C,annual,2011,gas oil combustion consumption by railway transport,2252.15424,TJ,CH4,3.9,kg/TJ,8783.401536,kg -29528a8e-74a4-3d21-89d9-bd9910b7b8d6,SESCO,II.2.1,Capital Federal,AR-C,annual,2011,gas oil combustion consumption by railway transport,2252.15424,TJ,N2O,3.9,kg/TJ,8783.401536,kg -85633c98-a905-3c3f-b9a4-73c8c84ea327,SESCO,II.2.1,Santa Fe,AR-S,annual,2011,gas oil combustion consumption by railway transport,317.71152,TJ,CO2,74100.0,kg/TJ,23542423.632,kg -f1638e3f-3898-38ed-9135-024886821f03,SESCO,II.2.1,Santa Fe,AR-S,annual,2011,gas oil combustion consumption by railway transport,317.71152,TJ,CH4,3.9,kg/TJ,1239.074928,kg -f1638e3f-3898-38ed-9135-024886821f03,SESCO,II.2.1,Santa Fe,AR-S,annual,2011,gas oil combustion consumption by railway transport,317.71152,TJ,N2O,3.9,kg/TJ,1239.074928,kg -9d20fe4c-e425-3dbd-8077-7c29f00ce4c3,SESCO,II.2.1,Capital Federal,AR-C,annual,2011,gas oil combustion consumption by railway transport,0.5418,TJ,CO2,74100.0,kg/TJ,40147.38,kg -0458878e-61ca-3248-af7b-f874e8e1fe8a,SESCO,II.2.1,Capital Federal,AR-C,annual,2011,gas oil combustion consumption by railway transport,0.5418,TJ,CH4,3.9,kg/TJ,2.1130199999999997,kg -0458878e-61ca-3248-af7b-f874e8e1fe8a,SESCO,II.2.1,Capital Federal,AR-C,annual,2011,gas oil combustion consumption by railway transport,0.5418,TJ,N2O,3.9,kg/TJ,2.1130199999999997,kg -e9ecf68e-bafd-3eaa-92dc-c185f502e256,SESCO,II.1.1,Buenos Aires,AR-B,annual,2011,gasoline combustion consumption by freight transport,5.6704,TJ,CO2,69300.0,kg/TJ,392958.72,kg -d36cb0c4-2d13-3562-9987-52e7bcb90641,SESCO,II.1.1,Buenos Aires,AR-B,annual,2011,gasoline combustion consumption by freight transport,5.6704,TJ,CH4,33.0,kg/TJ,187.1232,kg -5d82299b-7bc6-3f9d-99bb-abc35f05b2e9,SESCO,II.1.1,Buenos Aires,AR-B,annual,2011,gasoline combustion consumption by freight transport,5.6704,TJ,N2O,3.2,kg/TJ,18.14528,kg -ce425ff8-ad91-3169-bba9-2f469cfbecf0,SESCO,II.1.1,Capital Federal,AR-C,annual,2011,gasoline combustion consumption by freight transport,5.8476,TJ,CO2,69300.0,kg/TJ,405238.68,kg -197f1b6f-e53b-307c-a74d-f02a9a849ebe,SESCO,II.1.1,Capital Federal,AR-C,annual,2011,gasoline combustion consumption by freight transport,5.8476,TJ,CH4,33.0,kg/TJ,192.9708,kg -ea2706e7-f02c-31fb-9c2c-c35e5b94fbe3,SESCO,II.1.1,Capital Federal,AR-C,annual,2011,gasoline combustion consumption by freight transport,5.8476,TJ,N2O,3.2,kg/TJ,18.712320000000002,kg -5c5cf758-2567-36f4-b36e-3adf7d5bcbb4,SESCO,II.1.1,Buenos Aires,AR-B,annual,2011,gas oil combustion consumption by freight transport,1015.40544,TJ,CO2,74100.0,kg/TJ,75241543.104,kg -afa6669b-4a47-3310-af80-1a2db5522187,SESCO,II.1.1,Buenos Aires,AR-B,annual,2011,gas oil combustion consumption by freight transport,1015.40544,TJ,CH4,3.9,kg/TJ,3960.081216,kg -afa6669b-4a47-3310-af80-1a2db5522187,SESCO,II.1.1,Buenos Aires,AR-B,annual,2011,gas oil combustion consumption by freight transport,1015.40544,TJ,N2O,3.9,kg/TJ,3960.081216,kg -22ba7e17-7555-30cb-b3e4-bd9c2ce1ebfd,SESCO,II.1.1,Capital Federal,AR-C,annual,2011,gas oil combustion consumption by freight transport,362.78928,TJ,CO2,74100.0,kg/TJ,26882685.648000002,kg -c7cbe9a7-2b18-3797-98c0-8b4dce3a698b,SESCO,II.1.1,Capital Federal,AR-C,annual,2011,gas oil combustion consumption by freight transport,362.78928,TJ,CH4,3.9,kg/TJ,1414.8781920000001,kg -c7cbe9a7-2b18-3797-98c0-8b4dce3a698b,SESCO,II.1.1,Capital Federal,AR-C,annual,2011,gas oil combustion consumption by freight transport,362.78928,TJ,N2O,3.9,kg/TJ,1414.8781920000001,kg -cb5f3107-29ae-345a-87c8-ead06de6f3a1,SESCO,II.1.1,Corrientes,AR-W,annual,2011,gas oil combustion consumption by freight transport,0.39732,TJ,CO2,74100.0,kg/TJ,29441.412,kg -ce536de0-e32d-3279-afe4-6a9a9bff6bf3,SESCO,II.1.1,Corrientes,AR-W,annual,2011,gas oil combustion consumption by freight transport,0.39732,TJ,CH4,3.9,kg/TJ,1.549548,kg -ce536de0-e32d-3279-afe4-6a9a9bff6bf3,SESCO,II.1.1,Corrientes,AR-W,annual,2011,gas oil combustion consumption by freight transport,0.39732,TJ,N2O,3.9,kg/TJ,1.549548,kg -970d4d9f-806b-3e64-98c3-e5bd48ec0a1c,SESCO,II.1.1,Córdoba,AR-X,annual,2011,gas oil combustion consumption by freight transport,200.8272,TJ,CO2,74100.0,kg/TJ,14881295.52,kg -0856219d-7a5c-35c5-bcf1-5b4e2c0466bb,SESCO,II.1.1,Córdoba,AR-X,annual,2011,gas oil combustion consumption by freight transport,200.8272,TJ,CH4,3.9,kg/TJ,783.22608,kg -0856219d-7a5c-35c5-bcf1-5b4e2c0466bb,SESCO,II.1.1,Córdoba,AR-X,annual,2011,gas oil combustion consumption by freight transport,200.8272,TJ,N2O,3.9,kg/TJ,783.22608,kg -a54cee9d-f2e5-3d91-9130-467b0d192a5b,SESCO,II.1.1,Entre Rios,AR-E,annual,2011,gas oil combustion consumption by freight transport,9.82464,TJ,CO2,74100.0,kg/TJ,728005.824,kg -7647d4dc-d744-3a53-a27c-5c5c3d190c27,SESCO,II.1.1,Entre Rios,AR-E,annual,2011,gas oil combustion consumption by freight transport,9.82464,TJ,CH4,3.9,kg/TJ,38.316096,kg -7647d4dc-d744-3a53-a27c-5c5c3d190c27,SESCO,II.1.1,Entre Rios,AR-E,annual,2011,gas oil combustion consumption by freight transport,9.82464,TJ,N2O,3.9,kg/TJ,38.316096,kg -162b8986-906a-3d52-8c73-916e6ba90789,SESCO,II.1.1,Santa Fe,AR-S,annual,2011,gas oil combustion consumption by freight transport,25.93416,TJ,CO2,74100.0,kg/TJ,1921721.2559999998,kg -f1729af7-dc75-38af-8802-302d7d99fc36,SESCO,II.1.1,Santa Fe,AR-S,annual,2011,gas oil combustion consumption by freight transport,25.93416,TJ,CH4,3.9,kg/TJ,101.14322399999999,kg -f1729af7-dc75-38af-8802-302d7d99fc36,SESCO,II.1.1,Santa Fe,AR-S,annual,2011,gas oil combustion consumption by freight transport,25.93416,TJ,N2O,3.9,kg/TJ,101.14322399999999,kg -a5d45857-5023-3f59-9e69-a22beb353e63,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2011,gas oil combustion consumption by freight transport,6.1404,TJ,CO2,74100.0,kg/TJ,455003.63999999996,kg -1464dfd3-3e6c-30a2-b54f-7524a0541d96,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2011,gas oil combustion consumption by freight transport,6.1404,TJ,CH4,3.9,kg/TJ,23.94756,kg -1464dfd3-3e6c-30a2-b54f-7524a0541d96,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2011,gas oil combustion consumption by freight transport,6.1404,TJ,N2O,3.9,kg/TJ,23.94756,kg -62252673-914d-3820-beb4-736c6074fa95,SESCO,II.1.1,Buenos Aires,AR-B,annual,2011,gas oil combustion consumption by public passenger transport,4982.9346,TJ,CO2,74100.0,kg/TJ,369235453.85999995,kg -2e3234ce-5c11-3176-8d52-9c7240479ea9,SESCO,II.1.1,Buenos Aires,AR-B,annual,2011,gas oil combustion consumption by public passenger transport,4982.9346,TJ,CH4,3.9,kg/TJ,19433.444939999998,kg -2e3234ce-5c11-3176-8d52-9c7240479ea9,SESCO,II.1.1,Buenos Aires,AR-B,annual,2011,gas oil combustion consumption by public passenger transport,4982.9346,TJ,N2O,3.9,kg/TJ,19433.444939999998,kg -87806fa5-d98e-3887-a189-ecd9374d3239,SESCO,II.1.1,Capital Federal,AR-C,annual,2011,gas oil combustion consumption by public passenger transport,654.92784,TJ,CO2,74100.0,kg/TJ,48530152.944,kg -67cf2e69-f8a8-3b76-9aaf-263a1c671726,SESCO,II.1.1,Capital Federal,AR-C,annual,2011,gas oil combustion consumption by public passenger transport,654.92784,TJ,CH4,3.9,kg/TJ,2554.2185759999998,kg -67cf2e69-f8a8-3b76-9aaf-263a1c671726,SESCO,II.1.1,Capital Federal,AR-C,annual,2011,gas oil combustion consumption by public passenger transport,654.92784,TJ,N2O,3.9,kg/TJ,2554.2185759999998,kg -4adeaeb6-79d6-34fe-834d-a8881d563594,SESCO,II.1.1,Córdoba,AR-X,annual,2011,gas oil combustion consumption by public passenger transport,12.930959999999999,TJ,CO2,74100.0,kg/TJ,958184.1359999999,kg -bb471230-168a-3e80-9e06-7cabc91f73c4,SESCO,II.1.1,Córdoba,AR-X,annual,2011,gas oil combustion consumption by public passenger transport,12.930959999999999,TJ,CH4,3.9,kg/TJ,50.430744,kg -bb471230-168a-3e80-9e06-7cabc91f73c4,SESCO,II.1.1,Córdoba,AR-X,annual,2011,gas oil combustion consumption by public passenger transport,12.930959999999999,TJ,N2O,3.9,kg/TJ,50.430744,kg -4e88f941-3174-3892-ac5d-c1b22f32635d,SESCO,II.1.1,Misiones,AR-N,annual,2011,gas oil combustion consumption by public passenger transport,18.63792,TJ,CO2,74100.0,kg/TJ,1381069.872,kg -11433101-f0b6-36ec-b730-5f0ea490bc8a,SESCO,II.1.1,Misiones,AR-N,annual,2011,gas oil combustion consumption by public passenger transport,18.63792,TJ,CH4,3.9,kg/TJ,72.687888,kg -11433101-f0b6-36ec-b730-5f0ea490bc8a,SESCO,II.1.1,Misiones,AR-N,annual,2011,gas oil combustion consumption by public passenger transport,18.63792,TJ,N2O,3.9,kg/TJ,72.687888,kg -7b76be45-4207-31b9-86ab-421ea7773348,SESCO,II.5.1,Buenos Aires,AR-B,annual,2011,gasoline combustion consumption by agriculture machines,27.333099999999998,TJ,CO2,69300.0,kg/TJ,1894183.8299999998,kg -2c675b5c-8a82-3ff7-8798-4f442fd1eac4,SESCO,II.5.1,Buenos Aires,AR-B,annual,2011,gasoline combustion consumption by agriculture machines,27.333099999999998,TJ,CH4,33.0,kg/TJ,901.9922999999999,kg -add48363-0a8a-357a-a367-33276dbd5bf7,SESCO,II.5.1,Buenos Aires,AR-B,annual,2011,gasoline combustion consumption by agriculture machines,27.333099999999998,TJ,N2O,3.2,kg/TJ,87.46592,kg -a0c545bb-6a9d-3241-bd7c-19ba2a61dfc1,SESCO,II.5.1,La Pampa,AR-L,annual,2011,gasoline combustion consumption by agriculture machines,1.1518,TJ,CO2,69300.0,kg/TJ,79819.73999999999,kg -1d9771a7-bc96-3308-a489-6c0159f30e60,SESCO,II.5.1,La Pampa,AR-L,annual,2011,gasoline combustion consumption by agriculture machines,1.1518,TJ,CH4,33.0,kg/TJ,38.0094,kg -80d93d03-4d5b-3f88-a303-35b2eec299da,SESCO,II.5.1,La Pampa,AR-L,annual,2011,gasoline combustion consumption by agriculture machines,1.1518,TJ,N2O,3.2,kg/TJ,3.68576,kg -4d809d0b-00a3-35c8-977b-89f2c3986d86,SESCO,II.5.1,Salta,AR-A,annual,2011,gasoline combustion consumption by agriculture machines,9.0372,TJ,CO2,69300.0,kg/TJ,626277.9600000001,kg -ccb10a74-9b3e-33a1-ba29-8cfcf9dab886,SESCO,II.5.1,Salta,AR-A,annual,2011,gasoline combustion consumption by agriculture machines,9.0372,TJ,CH4,33.0,kg/TJ,298.2276,kg -f867804f-9921-3a51-a661-bdf25f818f40,SESCO,II.5.1,Salta,AR-A,annual,2011,gasoline combustion consumption by agriculture machines,9.0372,TJ,N2O,3.2,kg/TJ,28.919040000000003,kg -f22272f8-9ac9-3bcf-9b41-ccc8e3478ab9,SESCO,II.5.1,Buenos Aires,AR-B,annual,2011,gas oil combustion consumption by agriculture machines,10858.17768,TJ,CO2,74100.0,kg/TJ,804590966.088,kg -397846b1-932a-3a66-b2e6-f7e0dfaa484e,SESCO,II.5.1,Buenos Aires,AR-B,annual,2011,gas oil combustion consumption by agriculture machines,10858.17768,TJ,CH4,3.9,kg/TJ,42346.892952,kg -397846b1-932a-3a66-b2e6-f7e0dfaa484e,SESCO,II.5.1,Buenos Aires,AR-B,annual,2011,gas oil combustion consumption by agriculture machines,10858.17768,TJ,N2O,3.9,kg/TJ,42346.892952,kg -57a6f1f4-cf18-351d-8db6-f2b000f8d4d8,SESCO,II.5.1,Capital Federal,AR-C,annual,2011,gas oil combustion consumption by agriculture machines,44.57208,TJ,CO2,74100.0,kg/TJ,3302791.128,kg -0f4b578c-f36c-3d4d-88dd-16d6268731fd,SESCO,II.5.1,Capital Federal,AR-C,annual,2011,gas oil combustion consumption by agriculture machines,44.57208,TJ,CH4,3.9,kg/TJ,173.831112,kg -0f4b578c-f36c-3d4d-88dd-16d6268731fd,SESCO,II.5.1,Capital Federal,AR-C,annual,2011,gas oil combustion consumption by agriculture machines,44.57208,TJ,N2O,3.9,kg/TJ,173.831112,kg -a34c5134-0be8-3440-a349-4779744d684c,SESCO,II.5.1,Catamarca,AR-K,annual,2011,gas oil combustion consumption by agriculture machines,143.46864,TJ,CO2,74100.0,kg/TJ,10631026.224,kg -e4a83d71-e36f-3f58-a348-d0ca7cf7a96a,SESCO,II.5.1,Catamarca,AR-K,annual,2011,gas oil combustion consumption by agriculture machines,143.46864,TJ,CH4,3.9,kg/TJ,559.527696,kg -e4a83d71-e36f-3f58-a348-d0ca7cf7a96a,SESCO,II.5.1,Catamarca,AR-K,annual,2011,gas oil combustion consumption by agriculture machines,143.46864,TJ,N2O,3.9,kg/TJ,559.527696,kg -dd9184bd-678d-34fc-8449-8fb18e6b2364,SESCO,II.5.1,Chaco,AR-H,annual,2011,gas oil combustion consumption by agriculture machines,1360.8932399999999,TJ,CO2,74100.0,kg/TJ,100842189.08399999,kg -e6996bda-79dd-3e0e-a051-b187aec4f1fe,SESCO,II.5.1,Chaco,AR-H,annual,2011,gas oil combustion consumption by agriculture machines,1360.8932399999999,TJ,CH4,3.9,kg/TJ,5307.483635999999,kg -e6996bda-79dd-3e0e-a051-b187aec4f1fe,SESCO,II.5.1,Chaco,AR-H,annual,2011,gas oil combustion consumption by agriculture machines,1360.8932399999999,TJ,N2O,3.9,kg/TJ,5307.483635999999,kg -58583bcb-ce84-3f41-bb2b-b6ca4910df0e,SESCO,II.5.1,Corrientes,AR-W,annual,2011,gas oil combustion consumption by agriculture machines,418.66692,TJ,CO2,74100.0,kg/TJ,31023218.772,kg -4dd42e11-22e9-3c35-9d43-af95a2979e14,SESCO,II.5.1,Corrientes,AR-W,annual,2011,gas oil combustion consumption by agriculture machines,418.66692,TJ,CH4,3.9,kg/TJ,1632.800988,kg -4dd42e11-22e9-3c35-9d43-af95a2979e14,SESCO,II.5.1,Corrientes,AR-W,annual,2011,gas oil combustion consumption by agriculture machines,418.66692,TJ,N2O,3.9,kg/TJ,1632.800988,kg -08925eda-d7a3-39f2-b240-4f6bdd164bf5,SESCO,II.5.1,Córdoba,AR-X,annual,2011,gas oil combustion consumption by agriculture machines,8535.40884,TJ,CO2,74100.0,kg/TJ,632473795.044,kg -ba19581b-dae5-39b6-8752-a88d6bfa19a5,SESCO,II.5.1,Córdoba,AR-X,annual,2011,gas oil combustion consumption by agriculture machines,8535.40884,TJ,CH4,3.9,kg/TJ,33288.094476,kg -ba19581b-dae5-39b6-8752-a88d6bfa19a5,SESCO,II.5.1,Córdoba,AR-X,annual,2011,gas oil combustion consumption by agriculture machines,8535.40884,TJ,N2O,3.9,kg/TJ,33288.094476,kg -6053c758-7202-3617-aad5-f61301a4d638,SESCO,II.5.1,Entre Rios,AR-E,annual,2011,gas oil combustion consumption by agriculture machines,2520.70644,TJ,CO2,74100.0,kg/TJ,186784347.204,kg -25858783-a31f-3fc0-9553-7f11737ef3f1,SESCO,II.5.1,Entre Rios,AR-E,annual,2011,gas oil combustion consumption by agriculture machines,2520.70644,TJ,CH4,3.9,kg/TJ,9830.755116,kg -25858783-a31f-3fc0-9553-7f11737ef3f1,SESCO,II.5.1,Entre Rios,AR-E,annual,2011,gas oil combustion consumption by agriculture machines,2520.70644,TJ,N2O,3.9,kg/TJ,9830.755116,kg -9539952f-7b36-3cfb-8ce5-3d649d95b8b9,SESCO,II.5.1,Formosa,AR-P,annual,2011,gas oil combustion consumption by agriculture machines,333.42372,TJ,CO2,74100.0,kg/TJ,24706697.652,kg -f9c3f3b2-9747-3003-819e-5576e4bd7580,SESCO,II.5.1,Formosa,AR-P,annual,2011,gas oil combustion consumption by agriculture machines,333.42372,TJ,CH4,3.9,kg/TJ,1300.352508,kg -f9c3f3b2-9747-3003-819e-5576e4bd7580,SESCO,II.5.1,Formosa,AR-P,annual,2011,gas oil combustion consumption by agriculture machines,333.42372,TJ,N2O,3.9,kg/TJ,1300.352508,kg -a23a97a1-d558-3c52-8d0a-44e131795286,SESCO,II.5.1,Jujuy,AR-Y,annual,2011,gas oil combustion consumption by agriculture machines,944.10456,TJ,CO2,74100.0,kg/TJ,69958147.896,kg -cdfc0206-30e5-31d1-a0f4-a515d353c2ba,SESCO,II.5.1,Jujuy,AR-Y,annual,2011,gas oil combustion consumption by agriculture machines,944.10456,TJ,CH4,3.9,kg/TJ,3682.007784,kg -cdfc0206-30e5-31d1-a0f4-a515d353c2ba,SESCO,II.5.1,Jujuy,AR-Y,annual,2011,gas oil combustion consumption by agriculture machines,944.10456,TJ,N2O,3.9,kg/TJ,3682.007784,kg -06831ad6-582c-3599-9d6b-1916ae6d4ce7,SESCO,II.5.1,La Pampa,AR-L,annual,2011,gas oil combustion consumption by agriculture machines,2846.21988,TJ,CO2,74100.0,kg/TJ,210904893.108,kg -129451c5-5fb1-3025-8e2f-15ee6c7929c9,SESCO,II.5.1,La Pampa,AR-L,annual,2011,gas oil combustion consumption by agriculture machines,2846.21988,TJ,CH4,3.9,kg/TJ,11100.257532,kg -129451c5-5fb1-3025-8e2f-15ee6c7929c9,SESCO,II.5.1,La Pampa,AR-L,annual,2011,gas oil combustion consumption by agriculture machines,2846.21988,TJ,N2O,3.9,kg/TJ,11100.257532,kg -f59c58ea-34fb-301f-b037-e99f185aa9eb,SESCO,II.5.1,Mendoza,AR-M,annual,2011,gas oil combustion consumption by agriculture machines,477.79536,TJ,CO2,74100.0,kg/TJ,35404636.176,kg -0ea1df0f-a18d-338b-ab58-2c4418c2c77d,SESCO,II.5.1,Mendoza,AR-M,annual,2011,gas oil combustion consumption by agriculture machines,477.79536,TJ,CH4,3.9,kg/TJ,1863.401904,kg -0ea1df0f-a18d-338b-ab58-2c4418c2c77d,SESCO,II.5.1,Mendoza,AR-M,annual,2011,gas oil combustion consumption by agriculture machines,477.79536,TJ,N2O,3.9,kg/TJ,1863.401904,kg -663ea7a1-9824-3f2f-ab4c-2e9931d0ac3f,SESCO,II.5.1,Misiones,AR-N,annual,2011,gas oil combustion consumption by agriculture machines,845.46084,TJ,CO2,74100.0,kg/TJ,62648648.243999995,kg -7a556bfa-b68f-3fb5-aa32-9dd268df7e47,SESCO,II.5.1,Misiones,AR-N,annual,2011,gas oil combustion consumption by agriculture machines,845.46084,TJ,CH4,3.9,kg/TJ,3297.297276,kg -7a556bfa-b68f-3fb5-aa32-9dd268df7e47,SESCO,II.5.1,Misiones,AR-N,annual,2011,gas oil combustion consumption by agriculture machines,845.46084,TJ,N2O,3.9,kg/TJ,3297.297276,kg -0006136a-e871-3eca-a30b-6e313a9d8e6c,SESCO,II.5.1,Rio Negro,AR-R,annual,2011,gas oil combustion consumption by agriculture machines,199.88808,TJ,CO2,74100.0,kg/TJ,14811706.728,kg -22ba5aa0-34ed-3570-8ae7-8f1f63f693a0,SESCO,II.5.1,Rio Negro,AR-R,annual,2011,gas oil combustion consumption by agriculture machines,199.88808,TJ,CH4,3.9,kg/TJ,779.563512,kg -22ba5aa0-34ed-3570-8ae7-8f1f63f693a0,SESCO,II.5.1,Rio Negro,AR-R,annual,2011,gas oil combustion consumption by agriculture machines,199.88808,TJ,N2O,3.9,kg/TJ,779.563512,kg -0c9f04f8-f66a-3681-ae98-931e22332dc2,SESCO,II.5.1,Salta,AR-A,annual,2011,gas oil combustion consumption by agriculture machines,2341.479,TJ,CO2,74100.0,kg/TJ,173503593.89999998,kg -633e2f51-8d6d-32c2-a421-c9572bb25fa7,SESCO,II.5.1,Salta,AR-A,annual,2011,gas oil combustion consumption by agriculture machines,2341.479,TJ,CH4,3.9,kg/TJ,9131.7681,kg -633e2f51-8d6d-32c2-a421-c9572bb25fa7,SESCO,II.5.1,Salta,AR-A,annual,2011,gas oil combustion consumption by agriculture machines,2341.479,TJ,N2O,3.9,kg/TJ,9131.7681,kg -381890a2-cb41-36ed-92d5-cd8241cb10ec,SESCO,II.5.1,San Juan,AR-J,annual,2011,gas oil combustion consumption by agriculture machines,40.56276,TJ,CO2,74100.0,kg/TJ,3005700.516,kg -0aafefc2-d568-3f16-9e74-7b69bcbc0dac,SESCO,II.5.1,San Juan,AR-J,annual,2011,gas oil combustion consumption by agriculture machines,40.56276,TJ,CH4,3.9,kg/TJ,158.194764,kg -0aafefc2-d568-3f16-9e74-7b69bcbc0dac,SESCO,II.5.1,San Juan,AR-J,annual,2011,gas oil combustion consumption by agriculture machines,40.56276,TJ,N2O,3.9,kg/TJ,158.194764,kg -5c8e210b-1c1e-3ce2-a9f1-b142700bd156,SESCO,II.5.1,San Luis,AR-D,annual,2011,gas oil combustion consumption by agriculture machines,640.70580672,TJ,CO2,74100.0,kg/TJ,47476300.277952,kg -8bdc4459-f047-3cc0-9f95-26dc5ed1d672,SESCO,II.5.1,San Luis,AR-D,annual,2011,gas oil combustion consumption by agriculture machines,640.70580672,TJ,CH4,3.9,kg/TJ,2498.752646208,kg -8bdc4459-f047-3cc0-9f95-26dc5ed1d672,SESCO,II.5.1,San Luis,AR-D,annual,2011,gas oil combustion consumption by agriculture machines,640.70580672,TJ,N2O,3.9,kg/TJ,2498.752646208,kg -e167721a-740c-31d5-ae44-e3e0082af734,SESCO,II.5.1,Santa Fe,AR-S,annual,2011,gas oil combustion consumption by agriculture machines,7754.964,TJ,CO2,74100.0,kg/TJ,574642832.4,kg -d7bac018-c169-38ae-982a-6c1aca59cdbc,SESCO,II.5.1,Santa Fe,AR-S,annual,2011,gas oil combustion consumption by agriculture machines,7754.964,TJ,CH4,3.9,kg/TJ,30244.3596,kg -d7bac018-c169-38ae-982a-6c1aca59cdbc,SESCO,II.5.1,Santa Fe,AR-S,annual,2011,gas oil combustion consumption by agriculture machines,7754.964,TJ,N2O,3.9,kg/TJ,30244.3596,kg -f6cc134d-0f2e-3167-a428-9053aa146797,SESCO,II.5.1,Santiago del Estero,AR-G,annual,2011,gas oil combustion consumption by agriculture machines,1885.8252,TJ,CO2,74100.0,kg/TJ,139739647.32,kg -7bbd9d52-7695-3a41-8e5f-99c064f0b485,SESCO,II.5.1,Santiago del Estero,AR-G,annual,2011,gas oil combustion consumption by agriculture machines,1885.8252,TJ,CH4,3.9,kg/TJ,7354.71828,kg -7bbd9d52-7695-3a41-8e5f-99c064f0b485,SESCO,II.5.1,Santiago del Estero,AR-G,annual,2011,gas oil combustion consumption by agriculture machines,1885.8252,TJ,N2O,3.9,kg/TJ,7354.71828,kg -8bbe4f56-3c23-3367-81c0-7cebd9e8c5e3,SESCO,II.5.1,Tucuman,AR-T,annual,2011,gas oil combustion consumption by agriculture machines,1664.48184,TJ,CO2,74100.0,kg/TJ,123338104.344,kg -24cb669b-d4be-3fe4-8a0d-494820c98917,SESCO,II.5.1,Tucuman,AR-T,annual,2011,gas oil combustion consumption by agriculture machines,1664.48184,TJ,CH4,3.9,kg/TJ,6491.479176,kg -24cb669b-d4be-3fe4-8a0d-494820c98917,SESCO,II.5.1,Tucuman,AR-T,annual,2011,gas oil combustion consumption by agriculture machines,1664.48184,TJ,N2O,3.9,kg/TJ,6491.479176,kg -76d5af0e-67a7-3723-bb88-90f2e30ff2cd,SESCO,II.5.1,Buenos Aires,AR-B,annual,2011,gas oil combustion consumption by agriculture machines,39.9126,TJ,CO2,74100.0,kg/TJ,2957523.6599999997,kg -02de41da-bd36-3f6c-af98-de29c9952de7,SESCO,II.5.1,Buenos Aires,AR-B,annual,2011,gas oil combustion consumption by agriculture machines,39.9126,TJ,CH4,3.9,kg/TJ,155.65913999999998,kg -02de41da-bd36-3f6c-af98-de29c9952de7,SESCO,II.5.1,Buenos Aires,AR-B,annual,2011,gas oil combustion consumption by agriculture machines,39.9126,TJ,N2O,3.9,kg/TJ,155.65913999999998,kg -ed5efba0-778f-3b26-af2d-22efe0265797,SESCO,II.5.1,Chaco,AR-H,annual,2011,gas oil combustion consumption by agriculture machines,0.7223999999999999,TJ,CO2,74100.0,kg/TJ,53529.84,kg -ca12e847-7bd4-3d12-901f-712b448f3a97,SESCO,II.5.1,Chaco,AR-H,annual,2011,gas oil combustion consumption by agriculture machines,0.7223999999999999,TJ,CH4,3.9,kg/TJ,2.81736,kg -ca12e847-7bd4-3d12-901f-712b448f3a97,SESCO,II.5.1,Chaco,AR-H,annual,2011,gas oil combustion consumption by agriculture machines,0.7223999999999999,TJ,N2O,3.9,kg/TJ,2.81736,kg -7eeb371c-ca7a-3ca8-836c-26db52975e85,SESCO,II.5.1,Corrientes,AR-W,annual,2011,gas oil combustion consumption by agriculture machines,12.244679999999999,TJ,CO2,74100.0,kg/TJ,907330.788,kg -0df161fc-2881-3da3-b935-e00a007a0ecb,SESCO,II.5.1,Corrientes,AR-W,annual,2011,gas oil combustion consumption by agriculture machines,12.244679999999999,TJ,CH4,3.9,kg/TJ,47.754251999999994,kg -0df161fc-2881-3da3-b935-e00a007a0ecb,SESCO,II.5.1,Corrientes,AR-W,annual,2011,gas oil combustion consumption by agriculture machines,12.244679999999999,TJ,N2O,3.9,kg/TJ,47.754251999999994,kg -510f5af4-a7e4-37c3-a377-472ba4e7e9b0,SESCO,II.5.1,Córdoba,AR-X,annual,2011,gas oil combustion consumption by agriculture machines,6.53772,TJ,CO2,74100.0,kg/TJ,484445.052,kg -be60e047-7435-3dc8-8126-717e76390908,SESCO,II.5.1,Córdoba,AR-X,annual,2011,gas oil combustion consumption by agriculture machines,6.53772,TJ,CH4,3.9,kg/TJ,25.497108,kg -be60e047-7435-3dc8-8126-717e76390908,SESCO,II.5.1,Córdoba,AR-X,annual,2011,gas oil combustion consumption by agriculture machines,6.53772,TJ,N2O,3.9,kg/TJ,25.497108,kg -54766041-8b43-3d06-a614-4b96e3939867,SESCO,II.5.1,La Pampa,AR-L,annual,2011,gas oil combustion consumption by agriculture machines,19.10748,TJ,CO2,74100.0,kg/TJ,1415864.268,kg -7b5e8cf0-3c12-3110-9f97-33373c92ef88,SESCO,II.5.1,La Pampa,AR-L,annual,2011,gas oil combustion consumption by agriculture machines,19.10748,TJ,CH4,3.9,kg/TJ,74.519172,kg -7b5e8cf0-3c12-3110-9f97-33373c92ef88,SESCO,II.5.1,La Pampa,AR-L,annual,2011,gas oil combustion consumption by agriculture machines,19.10748,TJ,N2O,3.9,kg/TJ,74.519172,kg -1d76f53c-8ce4-3d8d-abe6-6458d43704d9,SESCO,II.5.1,Misiones,AR-N,annual,2011,gas oil combustion consumption by agriculture machines,26.40372,TJ,CO2,74100.0,kg/TJ,1956515.652,kg -c2be4756-73cf-3037-9b71-da9c22020d46,SESCO,II.5.1,Misiones,AR-N,annual,2011,gas oil combustion consumption by agriculture machines,26.40372,TJ,CH4,3.9,kg/TJ,102.974508,kg -c2be4756-73cf-3037-9b71-da9c22020d46,SESCO,II.5.1,Misiones,AR-N,annual,2011,gas oil combustion consumption by agriculture machines,26.40372,TJ,N2O,3.9,kg/TJ,102.974508,kg -36866b47-2b06-323a-9de5-357e6c42302a,SESCO,II.5.1,Salta,AR-A,annual,2011,gas oil combustion consumption by agriculture machines,30.701999999999998,TJ,CO2,74100.0,kg/TJ,2275018.1999999997,kg -41784343-d070-3bc0-982c-3d0dae85aa80,SESCO,II.5.1,Salta,AR-A,annual,2011,gas oil combustion consumption by agriculture machines,30.701999999999998,TJ,CH4,3.9,kg/TJ,119.7378,kg -41784343-d070-3bc0-982c-3d0dae85aa80,SESCO,II.5.1,Salta,AR-A,annual,2011,gas oil combustion consumption by agriculture machines,30.701999999999998,TJ,N2O,3.9,kg/TJ,119.7378,kg -1e764e4b-5a61-319a-8645-73a9456a6621,SESCO,II.5.1,Santa Fe,AR-S,annual,2011,gas oil combustion consumption by agriculture machines,23.62248,TJ,CO2,74100.0,kg/TJ,1750425.768,kg -d7419c36-4d26-3137-94c2-0c5fcf797251,SESCO,II.5.1,Santa Fe,AR-S,annual,2011,gas oil combustion consumption by agriculture machines,23.62248,TJ,CH4,3.9,kg/TJ,92.12767199999999,kg -d7419c36-4d26-3137-94c2-0c5fcf797251,SESCO,II.5.1,Santa Fe,AR-S,annual,2011,gas oil combustion consumption by agriculture machines,23.62248,TJ,N2O,3.9,kg/TJ,92.12767199999999,kg -70f5d293-7238-3d21-9038-68961cda019c,SESCO,II.5.1,Santiago del Estero,AR-G,annual,2011,gas oil combustion consumption by agriculture machines,41.06844,TJ,CO2,74100.0,kg/TJ,3043171.404,kg -352843f8-6538-351a-8e44-1ca1556f65ba,SESCO,II.5.1,Santiago del Estero,AR-G,annual,2011,gas oil combustion consumption by agriculture machines,41.06844,TJ,CH4,3.9,kg/TJ,160.16691600000001,kg -352843f8-6538-351a-8e44-1ca1556f65ba,SESCO,II.5.1,Santiago del Estero,AR-G,annual,2011,gas oil combustion consumption by agriculture machines,41.06844,TJ,N2O,3.9,kg/TJ,160.16691600000001,kg -0c15f9f1-172c-32c4-8edd-eb188fb8bbad,SESCO,II.5.1,Tucuman,AR-T,annual,2011,gas oil combustion consumption by agriculture machines,27.70404,TJ,CO2,74100.0,kg/TJ,2052869.3639999998,kg -62059cdb-290b-3620-b82a-81898eea36d1,SESCO,II.5.1,Tucuman,AR-T,annual,2011,gas oil combustion consumption by agriculture machines,27.70404,TJ,CH4,3.9,kg/TJ,108.045756,kg -62059cdb-290b-3620-b82a-81898eea36d1,SESCO,II.5.1,Tucuman,AR-T,annual,2011,gas oil combustion consumption by agriculture machines,27.70404,TJ,N2O,3.9,kg/TJ,108.045756,kg -c6bfefb2-f574-30b7-a05a-cd80839ec7ed,SESCO,II.5.1,Buenos Aires,AR-B,annual,2011,jet kerosene combustion consumption by agriculture machines,25.068040999999997,TJ,CO2,71500.0,kg/TJ,1792364.9314999997,kg -93c7a2f0-958f-3a0e-a9bd-425bdb38f33f,SESCO,II.5.1,Buenos Aires,AR-B,annual,2011,jet kerosene combustion consumption by agriculture machines,25.068040999999997,TJ,CH4,0.5,kg/TJ,12.534020499999999,kg -1000a6c6-fc39-3a09-a495-d5d94d61d8c7,SESCO,II.5.1,Buenos Aires,AR-B,annual,2011,jet kerosene combustion consumption by agriculture machines,25.068040999999997,TJ,N2O,2.0,kg/TJ,50.136081999999995,kg -b1fdfe89-3a5f-30d1-830c-a23346655eec,SESCO,II.5.1,Córdoba,AR-X,annual,2011,jet kerosene combustion consumption by agriculture machines,1.0064959999999998,TJ,CO2,71500.0,kg/TJ,71964.46399999999,kg -4a505f02-abd5-35d4-a751-9d58fbb05ebd,SESCO,II.5.1,Córdoba,AR-X,annual,2011,jet kerosene combustion consumption by agriculture machines,1.0064959999999998,TJ,CH4,0.5,kg/TJ,0.5032479999999999,kg -73ab0400-df58-3843-aa7f-44a8cecc4cc3,SESCO,II.5.1,Córdoba,AR-X,annual,2011,jet kerosene combustion consumption by agriculture machines,1.0064959999999998,TJ,N2O,2.0,kg/TJ,2.0129919999999997,kg -c247d568-d08f-34e4-a0ba-d36c112f6006,SESCO,II.5.1,Entre Rios,AR-E,annual,2011,jet kerosene combustion consumption by agriculture machines,0.25162399999999996,TJ,CO2,71500.0,kg/TJ,17991.115999999998,kg -aac76367-1829-3b9f-993d-5226ea127951,SESCO,II.5.1,Entre Rios,AR-E,annual,2011,jet kerosene combustion consumption by agriculture machines,0.25162399999999996,TJ,CH4,0.5,kg/TJ,0.12581199999999998,kg -0fc0f7c0-95fb-373d-a5e2-370892b16287,SESCO,II.5.1,Entre Rios,AR-E,annual,2011,jet kerosene combustion consumption by agriculture machines,0.25162399999999996,TJ,N2O,2.0,kg/TJ,0.5032479999999999,kg -ccd0555a-12e1-3535-8fea-5295f68c9d4d,SESCO,II.5.1,La Pampa,AR-L,annual,2011,jet kerosene combustion consumption by agriculture machines,6.730941999999999,TJ,CO2,71500.0,kg/TJ,481262.35299999994,kg -9f2e55cb-79b9-3d4e-bd37-1bb7614ea448,SESCO,II.5.1,La Pampa,AR-L,annual,2011,jet kerosene combustion consumption by agriculture machines,6.730941999999999,TJ,CH4,0.5,kg/TJ,3.3654709999999994,kg -d3e9ec48-061c-3436-808a-6f89cdb9b493,SESCO,II.5.1,La Pampa,AR-L,annual,2011,jet kerosene combustion consumption by agriculture machines,6.730941999999999,TJ,N2O,2.0,kg/TJ,13.461883999999998,kg -4ee446b5-5a2e-3c84-a3a6-0d0cf00e70d5,SESCO,II.5.1,Misiones,AR-N,annual,2011,jet kerosene combustion consumption by agriculture machines,2.3904279999999996,TJ,CO2,71500.0,kg/TJ,170915.60199999996,kg -c8d2729f-2f5a-3961-8d26-c5941bb66166,SESCO,II.5.1,Misiones,AR-N,annual,2011,jet kerosene combustion consumption by agriculture machines,2.3904279999999996,TJ,CH4,0.5,kg/TJ,1.1952139999999998,kg -66af93f9-01d7-37f1-9888-a98e0020c9ca,SESCO,II.5.1,Misiones,AR-N,annual,2011,jet kerosene combustion consumption by agriculture machines,2.3904279999999996,TJ,N2O,2.0,kg/TJ,4.780855999999999,kg -1e25bc62-5365-36b6-899d-175f3c967028,SESCO,II.5.1,Santa Cruz,AR-Z,annual,2011,jet kerosene combustion consumption by agriculture machines,0.157265,TJ,CO2,71500.0,kg/TJ,11244.447499999998,kg -59873547-cef1-3082-b4e9-8e9023e909df,SESCO,II.5.1,Santa Cruz,AR-Z,annual,2011,jet kerosene combustion consumption by agriculture machines,0.157265,TJ,CH4,0.5,kg/TJ,0.0786325,kg -e1e096a1-7290-3eff-a80d-3413938a9738,SESCO,II.5.1,Santa Cruz,AR-Z,annual,2011,jet kerosene combustion consumption by agriculture machines,0.157265,TJ,N2O,2.0,kg/TJ,0.31453,kg -84375df9-ce2a-3b95-8eda-c9f9b4118aff,SESCO,II.5.1,Santa Fe,AR-S,annual,2011,jet kerosene combustion consumption by agriculture machines,16.890261,TJ,CO2,71500.0,kg/TJ,1207653.6615,kg -a45a9b56-5e41-33e4-9288-09b16186f171,SESCO,II.5.1,Santa Fe,AR-S,annual,2011,jet kerosene combustion consumption by agriculture machines,16.890261,TJ,CH4,0.5,kg/TJ,8.4451305,kg -16bcab40-d5f2-3450-a966-026d8409c946,SESCO,II.5.1,Santa Fe,AR-S,annual,2011,jet kerosene combustion consumption by agriculture machines,16.890261,TJ,N2O,2.0,kg/TJ,33.780522,kg -40139612-f761-3dab-b508-a3f98a7f2cf4,SESCO,II.1.1,Buenos Aires,AR-B,annual,2011,gas oil combustion consumption by to the public,45201.50712,TJ,CO2,74100.0,kg/TJ,3349431677.592,kg -e0a2851d-6663-36a2-8a7c-df432dd773d1,SESCO,II.1.1,Buenos Aires,AR-B,annual,2011,gas oil combustion consumption by to the public,45201.50712,TJ,CH4,3.9,kg/TJ,176285.877768,kg -e0a2851d-6663-36a2-8a7c-df432dd773d1,SESCO,II.1.1,Buenos Aires,AR-B,annual,2011,gas oil combustion consumption by to the public,45201.50712,TJ,N2O,3.9,kg/TJ,176285.877768,kg -e740c2ba-e4f2-3c26-9400-4cdf7dfd0144,SESCO,II.1.1,Capital Federal,AR-C,annual,2011,gas oil combustion consumption by to the public,5222.44632,TJ,CO2,74100.0,kg/TJ,386983272.312,kg -43dbafac-f2a8-36cb-86e3-e288f2832cff,SESCO,II.1.1,Capital Federal,AR-C,annual,2011,gas oil combustion consumption by to the public,5222.44632,TJ,CH4,3.9,kg/TJ,20367.540648,kg -43dbafac-f2a8-36cb-86e3-e288f2832cff,SESCO,II.1.1,Capital Federal,AR-C,annual,2011,gas oil combustion consumption by to the public,5222.44632,TJ,N2O,3.9,kg/TJ,20367.540648,kg -7c6f3f98-8a03-346f-98db-113fa3dbda54,SESCO,II.1.1,Catamarca,AR-K,annual,2011,gas oil combustion consumption by to the public,595.7994,TJ,CO2,74100.0,kg/TJ,44148735.54,kg -f481e117-1eb3-3f1f-8022-118895c73afd,SESCO,II.1.1,Catamarca,AR-K,annual,2011,gas oil combustion consumption by to the public,595.7994,TJ,CH4,3.9,kg/TJ,2323.61766,kg -f481e117-1eb3-3f1f-8022-118895c73afd,SESCO,II.1.1,Catamarca,AR-K,annual,2011,gas oil combustion consumption by to the public,595.7994,TJ,N2O,3.9,kg/TJ,2323.61766,kg -3ca28019-9c76-33d2-825b-713fe29b7640,SESCO,II.1.1,Chaco,AR-H,annual,2011,gas oil combustion consumption by to the public,2905.89012,TJ,CO2,74100.0,kg/TJ,215326457.892,kg -b5b59939-b18b-3f14-8fcf-7f9a052055e8,SESCO,II.1.1,Chaco,AR-H,annual,2011,gas oil combustion consumption by to the public,2905.89012,TJ,CH4,3.9,kg/TJ,11332.971468,kg -b5b59939-b18b-3f14-8fcf-7f9a052055e8,SESCO,II.1.1,Chaco,AR-H,annual,2011,gas oil combustion consumption by to the public,2905.89012,TJ,N2O,3.9,kg/TJ,11332.971468,kg -a429225b-3355-3c98-9d6e-2c19f9abd108,SESCO,II.1.1,Chubut,AR-U,annual,2011,gas oil combustion consumption by to the public,4616.38884,TJ,CO2,74100.0,kg/TJ,342074413.04399997,kg -68ecb1a0-144a-363e-8157-007c5491cfeb,SESCO,II.1.1,Chubut,AR-U,annual,2011,gas oil combustion consumption by to the public,4616.38884,TJ,CH4,3.9,kg/TJ,18003.916476,kg -68ecb1a0-144a-363e-8157-007c5491cfeb,SESCO,II.1.1,Chubut,AR-U,annual,2011,gas oil combustion consumption by to the public,4616.38884,TJ,N2O,3.9,kg/TJ,18003.916476,kg -bf259599-9908-32fe-86e8-6c0cf311fe05,SESCO,II.1.1,Corrientes,AR-W,annual,2011,gas oil combustion consumption by to the public,2421.26808,TJ,CO2,74100.0,kg/TJ,179415964.728,kg -fabf516a-3155-3356-83c6-1ecfd7de4694,SESCO,II.1.1,Corrientes,AR-W,annual,2011,gas oil combustion consumption by to the public,2421.26808,TJ,CH4,3.9,kg/TJ,9442.945511999998,kg -fabf516a-3155-3356-83c6-1ecfd7de4694,SESCO,II.1.1,Corrientes,AR-W,annual,2011,gas oil combustion consumption by to the public,2421.26808,TJ,N2O,3.9,kg/TJ,9442.945511999998,kg -b51d753f-a336-3ba6-85f9-e874047653f2,SESCO,II.1.1,Córdoba,AR-X,annual,2011,gas oil combustion consumption by to the public,14958.23112,TJ,CO2,74100.0,kg/TJ,1108404925.992,kg -0e0a4ee4-ed85-3304-b634-27a2d009a70e,SESCO,II.1.1,Córdoba,AR-X,annual,2011,gas oil combustion consumption by to the public,14958.23112,TJ,CH4,3.9,kg/TJ,58337.101368,kg -0e0a4ee4-ed85-3304-b634-27a2d009a70e,SESCO,II.1.1,Córdoba,AR-X,annual,2011,gas oil combustion consumption by to the public,14958.23112,TJ,N2O,3.9,kg/TJ,58337.101368,kg -51a04fa8-d00b-311c-8e5e-856f63e7dedc,SESCO,II.1.1,Entre Rios,AR-E,annual,2011,gas oil combustion consumption by to the public,4946.34504,TJ,CO2,74100.0,kg/TJ,366524167.464,kg -ac61c975-aad3-331a-9d30-5e2b3e5e22ef,SESCO,II.1.1,Entre Rios,AR-E,annual,2011,gas oil combustion consumption by to the public,4946.34504,TJ,CH4,3.9,kg/TJ,19290.745656,kg -ac61c975-aad3-331a-9d30-5e2b3e5e22ef,SESCO,II.1.1,Entre Rios,AR-E,annual,2011,gas oil combustion consumption by to the public,4946.34504,TJ,N2O,3.9,kg/TJ,19290.745656,kg -6db01be1-d2ad-3562-bb72-9da32b10730d,SESCO,II.1.1,Formosa,AR-P,annual,2011,gas oil combustion consumption by to the public,977.55168,TJ,CO2,74100.0,kg/TJ,72436579.488,kg -34db7ddd-138d-390b-8e36-efbb2e4dadcc,SESCO,II.1.1,Formosa,AR-P,annual,2011,gas oil combustion consumption by to the public,977.55168,TJ,CH4,3.9,kg/TJ,3812.451552,kg -34db7ddd-138d-390b-8e36-efbb2e4dadcc,SESCO,II.1.1,Formosa,AR-P,annual,2011,gas oil combustion consumption by to the public,977.55168,TJ,N2O,3.9,kg/TJ,3812.451552,kg -b2334571-83e2-39b3-ac24-e4ea0cf53177,SESCO,II.1.1,Jujuy,AR-Y,annual,2011,gas oil combustion consumption by to the public,2205.1259999999997,TJ,CO2,74100.0,kg/TJ,163399836.6,kg -63959933-be38-36e8-8d2c-63877297bd6e,SESCO,II.1.1,Jujuy,AR-Y,annual,2011,gas oil combustion consumption by to the public,2205.1259999999997,TJ,CH4,3.9,kg/TJ,8599.991399999999,kg -63959933-be38-36e8-8d2c-63877297bd6e,SESCO,II.1.1,Jujuy,AR-Y,annual,2011,gas oil combustion consumption by to the public,2205.1259999999997,TJ,N2O,3.9,kg/TJ,8599.991399999999,kg -fcc54fdd-517a-37b4-b95d-e7dfb4b43843,SESCO,II.1.1,La Pampa,AR-L,annual,2011,gas oil combustion consumption by to the public,2851.3128,TJ,CO2,74100.0,kg/TJ,211282278.48000002,kg -5f1da4f4-d980-3535-8aad-d40166903cef,SESCO,II.1.1,La Pampa,AR-L,annual,2011,gas oil combustion consumption by to the public,2851.3128,TJ,CH4,3.9,kg/TJ,11120.119920000001,kg -5f1da4f4-d980-3535-8aad-d40166903cef,SESCO,II.1.1,La Pampa,AR-L,annual,2011,gas oil combustion consumption by to the public,2851.3128,TJ,N2O,3.9,kg/TJ,11120.119920000001,kg -dc7c5139-87ec-3987-b262-ae78178fe845,SESCO,II.1.1,La Rioja,AR-F,annual,2011,gas oil combustion consumption by to the public,1031.18988,TJ,CO2,74100.0,kg/TJ,76411170.108,kg -3fbddc15-bcaf-3556-b5b7-59379c6a212a,SESCO,II.1.1,La Rioja,AR-F,annual,2011,gas oil combustion consumption by to the public,1031.18988,TJ,CH4,3.9,kg/TJ,4021.6405319999994,kg -3fbddc15-bcaf-3556-b5b7-59379c6a212a,SESCO,II.1.1,La Rioja,AR-F,annual,2011,gas oil combustion consumption by to the public,1031.18988,TJ,N2O,3.9,kg/TJ,4021.6405319999994,kg -434101c3-b127-31ef-93fa-93a7bb5b8247,SESCO,II.1.1,Mendoza,AR-M,annual,2011,gas oil combustion consumption by to the public,11123.73192,TJ,CO2,74100.0,kg/TJ,824268535.272,kg -d92896bf-c364-3d48-a26d-16f6b21c9987,SESCO,II.1.1,Mendoza,AR-M,annual,2011,gas oil combustion consumption by to the public,11123.73192,TJ,CH4,3.9,kg/TJ,43382.554488,kg -d92896bf-c364-3d48-a26d-16f6b21c9987,SESCO,II.1.1,Mendoza,AR-M,annual,2011,gas oil combustion consumption by to the public,11123.73192,TJ,N2O,3.9,kg/TJ,43382.554488,kg -815e80a7-ac4f-3b13-a112-6c92d2d087d4,SESCO,II.1.1,Misiones,AR-N,annual,2011,gas oil combustion consumption by to the public,4975.99956,TJ,CO2,74100.0,kg/TJ,368721567.396,kg -509d26f4-7791-370a-a3a0-2cc1f2dad821,SESCO,II.1.1,Misiones,AR-N,annual,2011,gas oil combustion consumption by to the public,4975.99956,TJ,CH4,3.9,kg/TJ,19406.398284,kg -509d26f4-7791-370a-a3a0-2cc1f2dad821,SESCO,II.1.1,Misiones,AR-N,annual,2011,gas oil combustion consumption by to the public,4975.99956,TJ,N2O,3.9,kg/TJ,19406.398284,kg -1ec93c14-4e6a-3877-8bde-2b79928a6abd,SESCO,II.1.1,Neuquén,AR-Q,annual,2011,gas oil combustion consumption by to the public,3543.1191599999997,TJ,CO2,74100.0,kg/TJ,262545129.75599998,kg -5e4b697b-6b41-3c79-ae87-88c9872392d3,SESCO,II.1.1,Neuquén,AR-Q,annual,2011,gas oil combustion consumption by to the public,3543.1191599999997,TJ,CH4,3.9,kg/TJ,13818.164723999998,kg -5e4b697b-6b41-3c79-ae87-88c9872392d3,SESCO,II.1.1,Neuquén,AR-Q,annual,2011,gas oil combustion consumption by to the public,3543.1191599999997,TJ,N2O,3.9,kg/TJ,13818.164723999998,kg -416c8e29-1faa-30ac-9d66-d43c4aed802b,SESCO,II.1.1,Rio Negro,AR-R,annual,2011,gas oil combustion consumption by to the public,4755.23412,TJ,CO2,74100.0,kg/TJ,352362848.292,kg -f9e076d0-39e6-3465-8b7c-f99bc6879aa0,SESCO,II.1.1,Rio Negro,AR-R,annual,2011,gas oil combustion consumption by to the public,4755.23412,TJ,CH4,3.9,kg/TJ,18545.413068,kg -f9e076d0-39e6-3465-8b7c-f99bc6879aa0,SESCO,II.1.1,Rio Negro,AR-R,annual,2011,gas oil combustion consumption by to the public,4755.23412,TJ,N2O,3.9,kg/TJ,18545.413068,kg -39139627-7835-3047-b41a-20658c9985ff,SESCO,II.1.1,Salta,AR-A,annual,2011,gas oil combustion consumption by to the public,4078.59816,TJ,CO2,74100.0,kg/TJ,302224123.656,kg -26234de9-cec9-3721-9255-4a3abe1d615c,SESCO,II.1.1,Salta,AR-A,annual,2011,gas oil combustion consumption by to the public,4078.59816,TJ,CH4,3.9,kg/TJ,15906.532824,kg -26234de9-cec9-3721-9255-4a3abe1d615c,SESCO,II.1.1,Salta,AR-A,annual,2011,gas oil combustion consumption by to the public,4078.59816,TJ,N2O,3.9,kg/TJ,15906.532824,kg -588fe06b-a429-315b-b582-e40cc5c8a3f1,SESCO,II.1.1,San Juan,AR-J,annual,2011,gas oil combustion consumption by to the public,2178.50556,TJ,CO2,74100.0,kg/TJ,161427261.996,kg -ef2f5ce8-b454-3695-994e-38cfcf3278ca,SESCO,II.1.1,San Juan,AR-J,annual,2011,gas oil combustion consumption by to the public,2178.50556,TJ,CH4,3.9,kg/TJ,8496.171684,kg -ef2f5ce8-b454-3695-994e-38cfcf3278ca,SESCO,II.1.1,San Juan,AR-J,annual,2011,gas oil combustion consumption by to the public,2178.50556,TJ,N2O,3.9,kg/TJ,8496.171684,kg -c01895a8-9340-33bf-b44b-4f9023464884,SESCO,II.1.1,San Luis,AR-D,annual,2011,gas oil combustion consumption by to the public,1951.31076,TJ,CO2,74100.0,kg/TJ,144592127.316,kg -7bab7f99-e3e2-3316-89de-70b5097a5539,SESCO,II.1.1,San Luis,AR-D,annual,2011,gas oil combustion consumption by to the public,1951.31076,TJ,CH4,3.9,kg/TJ,7610.111964,kg -7bab7f99-e3e2-3316-89de-70b5097a5539,SESCO,II.1.1,San Luis,AR-D,annual,2011,gas oil combustion consumption by to the public,1951.31076,TJ,N2O,3.9,kg/TJ,7610.111964,kg -ca9141af-d97a-3df7-b153-e06411fcb5ec,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2011,gas oil combustion consumption by to the public,3539.3988,TJ,CO2,74100.0,kg/TJ,262269451.07999998,kg -d633c783-4d30-3627-bb4a-07a4876d201e,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2011,gas oil combustion consumption by to the public,3539.3988,TJ,CH4,3.9,kg/TJ,13803.65532,kg -d633c783-4d30-3627-bb4a-07a4876d201e,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2011,gas oil combustion consumption by to the public,3539.3988,TJ,N2O,3.9,kg/TJ,13803.65532,kg -42bf34cd-64ce-3c35-88a9-5044c2bff8ba,SESCO,II.1.1,Santa Fe,AR-S,annual,2011,gas oil combustion consumption by to the public,11298.80556,TJ,CO2,74100.0,kg/TJ,837241491.996,kg -6702e09b-378f-3732-9942-de3392331544,SESCO,II.1.1,Santa Fe,AR-S,annual,2011,gas oil combustion consumption by to the public,11298.80556,TJ,CH4,3.9,kg/TJ,44065.341684,kg -6702e09b-378f-3732-9942-de3392331544,SESCO,II.1.1,Santa Fe,AR-S,annual,2011,gas oil combustion consumption by to the public,11298.80556,TJ,N2O,3.9,kg/TJ,44065.341684,kg -a54ac57d-d431-3402-87de-907895e2b876,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2011,gas oil combustion consumption by to the public,2227.66488,TJ,CO2,74100.0,kg/TJ,165069967.60799998,kg -548e7c9d-47ae-3cb0-918e-990e260a8344,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2011,gas oil combustion consumption by to the public,2227.66488,TJ,CH4,3.9,kg/TJ,8687.893032,kg -548e7c9d-47ae-3cb0-918e-990e260a8344,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2011,gas oil combustion consumption by to the public,2227.66488,TJ,N2O,3.9,kg/TJ,8687.893032,kg -3d6efc5c-c824-38b9-83bd-f4d532e08a4f,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2011,gas oil combustion consumption by to the public,1001.3908799999999,TJ,CO2,74100.0,kg/TJ,74203064.20799999,kg -616edd75-d11e-32bb-9bfe-aa48a5e39f35,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2011,gas oil combustion consumption by to the public,1001.3908799999999,TJ,CH4,3.9,kg/TJ,3905.424432,kg -616edd75-d11e-32bb-9bfe-aa48a5e39f35,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2011,gas oil combustion consumption by to the public,1001.3908799999999,TJ,N2O,3.9,kg/TJ,3905.424432,kg -e655ca63-4763-33e8-9a4e-32623dd66c8e,SESCO,II.1.1,Tucuman,AR-T,annual,2011,gas oil combustion consumption by to the public,2849.90412,TJ,CO2,74100.0,kg/TJ,211177895.29200003,kg -53b75650-bba4-341a-9750-89fde75f860b,SESCO,II.1.1,Tucuman,AR-T,annual,2011,gas oil combustion consumption by to the public,2849.90412,TJ,CH4,3.9,kg/TJ,11114.626068,kg -53b75650-bba4-341a-9750-89fde75f860b,SESCO,II.1.1,Tucuman,AR-T,annual,2011,gas oil combustion consumption by to the public,2849.90412,TJ,N2O,3.9,kg/TJ,11114.626068,kg -bae96e58-30c7-34c9-9283-aeede0062151,SESCO,II.1.1,Buenos Aires,AR-B,annual,2011,gas oil combustion consumption by to the public,12567.33996,TJ,CO2,74100.0,kg/TJ,931239891.0359999,kg -3d71d473-9cad-34e6-81dc-0dc47b87bbbd,SESCO,II.1.1,Buenos Aires,AR-B,annual,2011,gas oil combustion consumption by to the public,12567.33996,TJ,CH4,3.9,kg/TJ,49012.625843999995,kg -3d71d473-9cad-34e6-81dc-0dc47b87bbbd,SESCO,II.1.1,Buenos Aires,AR-B,annual,2011,gas oil combustion consumption by to the public,12567.33996,TJ,N2O,3.9,kg/TJ,49012.625843999995,kg -41989135-009a-35ce-a044-fb3e2f4a0a81,SESCO,II.1.1,Capital Federal,AR-C,annual,2011,gas oil combustion consumption by to the public,1394.01528,TJ,CO2,74100.0,kg/TJ,103296532.24800001,kg -c407301c-0c3c-3648-a16c-3681885ffa81,SESCO,II.1.1,Capital Federal,AR-C,annual,2011,gas oil combustion consumption by to the public,1394.01528,TJ,CH4,3.9,kg/TJ,5436.659592,kg -c407301c-0c3c-3648-a16c-3681885ffa81,SESCO,II.1.1,Capital Federal,AR-C,annual,2011,gas oil combustion consumption by to the public,1394.01528,TJ,N2O,3.9,kg/TJ,5436.659592,kg -fdb71e26-7e47-36bc-a989-793f69ad0cb5,SESCO,II.1.1,Catamarca,AR-K,annual,2011,gas oil combustion consumption by to the public,114.96996,TJ,CO2,74100.0,kg/TJ,8519274.036,kg -cda3ec59-6742-3ef5-9b90-a9233f2564d4,SESCO,II.1.1,Catamarca,AR-K,annual,2011,gas oil combustion consumption by to the public,114.96996,TJ,CH4,3.9,kg/TJ,448.382844,kg -cda3ec59-6742-3ef5-9b90-a9233f2564d4,SESCO,II.1.1,Catamarca,AR-K,annual,2011,gas oil combustion consumption by to the public,114.96996,TJ,N2O,3.9,kg/TJ,448.382844,kg -5ef9eb90-34fe-347e-ab45-c5dba95d52aa,SESCO,II.1.1,Chaco,AR-H,annual,2011,gas oil combustion consumption by to the public,789.222,TJ,CO2,74100.0,kg/TJ,58481350.199999996,kg -d6aa4a95-4bbd-36fc-b95d-55c616154012,SESCO,II.1.1,Chaco,AR-H,annual,2011,gas oil combustion consumption by to the public,789.222,TJ,CH4,3.9,kg/TJ,3077.9658,kg -d6aa4a95-4bbd-36fc-b95d-55c616154012,SESCO,II.1.1,Chaco,AR-H,annual,2011,gas oil combustion consumption by to the public,789.222,TJ,N2O,3.9,kg/TJ,3077.9658,kg -705aee40-ee31-371b-84e1-129019e2ed7d,SESCO,II.1.1,Chubut,AR-U,annual,2011,gas oil combustion consumption by to the public,639.03504,TJ,CO2,74100.0,kg/TJ,47352496.464,kg -0bff42c6-2356-37cc-9d69-3ff042039470,SESCO,II.1.1,Chubut,AR-U,annual,2011,gas oil combustion consumption by to the public,639.03504,TJ,CH4,3.9,kg/TJ,2492.236656,kg -0bff42c6-2356-37cc-9d69-3ff042039470,SESCO,II.1.1,Chubut,AR-U,annual,2011,gas oil combustion consumption by to the public,639.03504,TJ,N2O,3.9,kg/TJ,2492.236656,kg -ae407e99-a988-38e5-b6ac-a88bc1a2dbc1,SESCO,II.1.1,Corrientes,AR-W,annual,2011,gas oil combustion consumption by to the public,651.67704,TJ,CO2,74100.0,kg/TJ,48289268.664000005,kg -569d0846-5ddc-3710-9394-2c83bdf52680,SESCO,II.1.1,Corrientes,AR-W,annual,2011,gas oil combustion consumption by to the public,651.67704,TJ,CH4,3.9,kg/TJ,2541.540456,kg -569d0846-5ddc-3710-9394-2c83bdf52680,SESCO,II.1.1,Corrientes,AR-W,annual,2011,gas oil combustion consumption by to the public,651.67704,TJ,N2O,3.9,kg/TJ,2541.540456,kg -bcece979-1cda-3e12-9421-572aa36926df,SESCO,II.1.1,Córdoba,AR-X,annual,2011,gas oil combustion consumption by to the public,3281.71872,TJ,CO2,74100.0,kg/TJ,243175357.15199998,kg -ce1f06cf-870f-3b92-95f8-c3a94481ba43,SESCO,II.1.1,Córdoba,AR-X,annual,2011,gas oil combustion consumption by to the public,3281.71872,TJ,CH4,3.9,kg/TJ,12798.703007999999,kg -ce1f06cf-870f-3b92-95f8-c3a94481ba43,SESCO,II.1.1,Córdoba,AR-X,annual,2011,gas oil combustion consumption by to the public,3281.71872,TJ,N2O,3.9,kg/TJ,12798.703007999999,kg -747b4cbf-7393-3bf6-b939-463c29a3e8d6,SESCO,II.1.1,Entre Rios,AR-E,annual,2011,gas oil combustion consumption by to the public,1285.43856,TJ,CO2,74100.0,kg/TJ,95250997.296,kg -2b2bf585-34dd-3e3a-8a2a-5758b0c1754b,SESCO,II.1.1,Entre Rios,AR-E,annual,2011,gas oil combustion consumption by to the public,1285.43856,TJ,CH4,3.9,kg/TJ,5013.210384,kg -2b2bf585-34dd-3e3a-8a2a-5758b0c1754b,SESCO,II.1.1,Entre Rios,AR-E,annual,2011,gas oil combustion consumption by to the public,1285.43856,TJ,N2O,3.9,kg/TJ,5013.210384,kg -27a3a09a-56fc-36fd-95b3-ab9bf03a19b5,SESCO,II.1.1,Formosa,AR-P,annual,2011,gas oil combustion consumption by to the public,224.34132,TJ,CO2,74100.0,kg/TJ,16623691.811999999,kg -51eda8c0-aa12-3406-bfd8-28a3cc3272a0,SESCO,II.1.1,Formosa,AR-P,annual,2011,gas oil combustion consumption by to the public,224.34132,TJ,CH4,3.9,kg/TJ,874.931148,kg -51eda8c0-aa12-3406-bfd8-28a3cc3272a0,SESCO,II.1.1,Formosa,AR-P,annual,2011,gas oil combustion consumption by to the public,224.34132,TJ,N2O,3.9,kg/TJ,874.931148,kg -542f23bb-6e8f-351b-affe-5fc5894fb5cc,SESCO,II.1.1,Jujuy,AR-Y,annual,2011,gas oil combustion consumption by to the public,291.23556,TJ,CO2,74100.0,kg/TJ,21580554.996000003,kg -741e0617-41f4-3f4a-9ba3-8ebf489ff46b,SESCO,II.1.1,Jujuy,AR-Y,annual,2011,gas oil combustion consumption by to the public,291.23556,TJ,CH4,3.9,kg/TJ,1135.818684,kg -741e0617-41f4-3f4a-9ba3-8ebf489ff46b,SESCO,II.1.1,Jujuy,AR-Y,annual,2011,gas oil combustion consumption by to the public,291.23556,TJ,N2O,3.9,kg/TJ,1135.818684,kg -81da818e-3cee-3628-bccc-9c765d2651c0,SESCO,II.1.1,La Pampa,AR-L,annual,2011,gas oil combustion consumption by to the public,717.23484,TJ,CO2,74100.0,kg/TJ,53147101.643999994,kg -05f3ce38-310a-3a7c-b5ff-66461de79a62,SESCO,II.1.1,La Pampa,AR-L,annual,2011,gas oil combustion consumption by to the public,717.23484,TJ,CH4,3.9,kg/TJ,2797.2158759999998,kg -05f3ce38-310a-3a7c-b5ff-66461de79a62,SESCO,II.1.1,La Pampa,AR-L,annual,2011,gas oil combustion consumption by to the public,717.23484,TJ,N2O,3.9,kg/TJ,2797.2158759999998,kg -74aa2d56-644d-39ba-9bcb-19ba43797b37,SESCO,II.1.1,La Rioja,AR-F,annual,2011,gas oil combustion consumption by to the public,185.76516,TJ,CO2,74100.0,kg/TJ,13765198.356,kg -fd166f4b-3123-38da-b2a1-2ee480dd1b86,SESCO,II.1.1,La Rioja,AR-F,annual,2011,gas oil combustion consumption by to the public,185.76516,TJ,CH4,3.9,kg/TJ,724.4841240000001,kg -fd166f4b-3123-38da-b2a1-2ee480dd1b86,SESCO,II.1.1,La Rioja,AR-F,annual,2011,gas oil combustion consumption by to the public,185.76516,TJ,N2O,3.9,kg/TJ,724.4841240000001,kg -a3ce0ba0-8aab-3b05-b023-5a228ea8dd4d,SESCO,II.1.1,Mendoza,AR-M,annual,2011,gas oil combustion consumption by to the public,1626.26688,TJ,CO2,74100.0,kg/TJ,120506375.808,kg -be1760a3-aa48-3f28-bfba-44b001e492fe,SESCO,II.1.1,Mendoza,AR-M,annual,2011,gas oil combustion consumption by to the public,1626.26688,TJ,CH4,3.9,kg/TJ,6342.440831999999,kg -be1760a3-aa48-3f28-bfba-44b001e492fe,SESCO,II.1.1,Mendoza,AR-M,annual,2011,gas oil combustion consumption by to the public,1626.26688,TJ,N2O,3.9,kg/TJ,6342.440831999999,kg -229cee29-1162-37cd-93a0-69f35057aca3,SESCO,II.1.1,Misiones,AR-N,annual,2011,gas oil combustion consumption by to the public,933.08796,TJ,CO2,74100.0,kg/TJ,69141817.836,kg -62448faa-9bde-315d-a896-59104215957d,SESCO,II.1.1,Misiones,AR-N,annual,2011,gas oil combustion consumption by to the public,933.08796,TJ,CH4,3.9,kg/TJ,3639.0430439999996,kg -62448faa-9bde-315d-a896-59104215957d,SESCO,II.1.1,Misiones,AR-N,annual,2011,gas oil combustion consumption by to the public,933.08796,TJ,N2O,3.9,kg/TJ,3639.0430439999996,kg -7574ee51-3ef5-3042-81a9-22f2ed164d11,SESCO,II.1.1,Neuquén,AR-Q,annual,2011,gas oil combustion consumption by to the public,736.37844,TJ,CO2,74100.0,kg/TJ,54565642.404,kg -9a6a304c-2b5b-3321-9ced-b4b7fc2a55eb,SESCO,II.1.1,Neuquén,AR-Q,annual,2011,gas oil combustion consumption by to the public,736.37844,TJ,CH4,3.9,kg/TJ,2871.875916,kg -9a6a304c-2b5b-3321-9ced-b4b7fc2a55eb,SESCO,II.1.1,Neuquén,AR-Q,annual,2011,gas oil combustion consumption by to the public,736.37844,TJ,N2O,3.9,kg/TJ,2871.875916,kg -47de5b1b-4e5c-38da-8098-c501f95e91f0,SESCO,II.1.1,Rio Negro,AR-R,annual,2011,gas oil combustion consumption by to the public,752.16288,TJ,CO2,74100.0,kg/TJ,55735269.408,kg -e17c8c8d-9301-3bd4-b080-d2e47e4c1fe1,SESCO,II.1.1,Rio Negro,AR-R,annual,2011,gas oil combustion consumption by to the public,752.16288,TJ,CH4,3.9,kg/TJ,2933.435232,kg -e17c8c8d-9301-3bd4-b080-d2e47e4c1fe1,SESCO,II.1.1,Rio Negro,AR-R,annual,2011,gas oil combustion consumption by to the public,752.16288,TJ,N2O,3.9,kg/TJ,2933.435232,kg -52f6ffd2-5bbd-3bc1-9b8d-9e77b226a2f8,SESCO,II.1.1,Salta,AR-A,annual,2011,gas oil combustion consumption by to the public,719.22144,TJ,CO2,74100.0,kg/TJ,53294308.704,kg -8c5d2e30-83ff-38af-86c9-54f8a7b0eb41,SESCO,II.1.1,Salta,AR-A,annual,2011,gas oil combustion consumption by to the public,719.22144,TJ,CH4,3.9,kg/TJ,2804.963616,kg -8c5d2e30-83ff-38af-86c9-54f8a7b0eb41,SESCO,II.1.1,Salta,AR-A,annual,2011,gas oil combustion consumption by to the public,719.22144,TJ,N2O,3.9,kg/TJ,2804.963616,kg -4d6016c7-3c4a-31e6-8cd4-02b28527ad15,SESCO,II.1.1,San Juan,AR-J,annual,2011,gas oil combustion consumption by to the public,430.04472,TJ,CO2,74100.0,kg/TJ,31866313.752,kg -e56406da-c09b-3237-8d0d-e0de9713d083,SESCO,II.1.1,San Juan,AR-J,annual,2011,gas oil combustion consumption by to the public,430.04472,TJ,CH4,3.9,kg/TJ,1677.1744079999999,kg -e56406da-c09b-3237-8d0d-e0de9713d083,SESCO,II.1.1,San Juan,AR-J,annual,2011,gas oil combustion consumption by to the public,430.04472,TJ,N2O,3.9,kg/TJ,1677.1744079999999,kg -aef69465-594e-384a-8d7d-f91a6b769ef8,SESCO,II.1.1,San Luis,AR-D,annual,2011,gas oil combustion consumption by to the public,443.7342,TJ,CO2,74100.0,kg/TJ,32880704.22,kg -c3510549-f5db-3ad1-a84b-d8411a631738,SESCO,II.1.1,San Luis,AR-D,annual,2011,gas oil combustion consumption by to the public,443.7342,TJ,CH4,3.9,kg/TJ,1730.5633799999998,kg -c3510549-f5db-3ad1-a84b-d8411a631738,SESCO,II.1.1,San Luis,AR-D,annual,2011,gas oil combustion consumption by to the public,443.7342,TJ,N2O,3.9,kg/TJ,1730.5633799999998,kg -c58b41b1-9d2b-389f-af70-0f04a0963ed5,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2011,gas oil combustion consumption by to the public,341.55072,TJ,CO2,74100.0,kg/TJ,25308908.352,kg -459521c4-a34b-3c92-a5dd-4cc99d60c575,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2011,gas oil combustion consumption by to the public,341.55072,TJ,CH4,3.9,kg/TJ,1332.047808,kg -459521c4-a34b-3c92-a5dd-4cc99d60c575,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2011,gas oil combustion consumption by to the public,341.55072,TJ,N2O,3.9,kg/TJ,1332.047808,kg -9031639a-9191-3ff3-9deb-0714ab7cd052,SESCO,II.1.1,Santa Fe,AR-S,annual,2011,gas oil combustion consumption by to the public,3035.27196,TJ,CO2,74100.0,kg/TJ,224913652.236,kg -5f67f1d9-c1b8-32d7-b8a3-c13e3b510667,SESCO,II.1.1,Santa Fe,AR-S,annual,2011,gas oil combustion consumption by to the public,3035.27196,TJ,CH4,3.9,kg/TJ,11837.560644,kg -5f67f1d9-c1b8-32d7-b8a3-c13e3b510667,SESCO,II.1.1,Santa Fe,AR-S,annual,2011,gas oil combustion consumption by to the public,3035.27196,TJ,N2O,3.9,kg/TJ,11837.560644,kg -42efc8a6-3eb3-39a4-98ca-77d141f311f0,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2011,gas oil combustion consumption by to the public,437.99111999999997,TJ,CO2,74100.0,kg/TJ,32455141.992,kg -cb76c9fd-c8eb-30ed-97c0-03a8176bc678,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2011,gas oil combustion consumption by to the public,437.99111999999997,TJ,CH4,3.9,kg/TJ,1708.165368,kg -cb76c9fd-c8eb-30ed-97c0-03a8176bc678,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2011,gas oil combustion consumption by to the public,437.99111999999997,TJ,N2O,3.9,kg/TJ,1708.165368,kg -df2cf87a-f61b-3499-995f-963e8d7b7d9c,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2011,gas oil combustion consumption by to the public,59.88696,TJ,CO2,74100.0,kg/TJ,4437623.7360000005,kg -a8963ad9-b7a7-3684-82bb-f5e95e492f61,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2011,gas oil combustion consumption by to the public,59.88696,TJ,CH4,3.9,kg/TJ,233.559144,kg -a8963ad9-b7a7-3684-82bb-f5e95e492f61,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2011,gas oil combustion consumption by to the public,59.88696,TJ,N2O,3.9,kg/TJ,233.559144,kg -51bec7da-918a-3806-81b4-60b2bdd18b13,SESCO,II.1.1,Tucuman,AR-T,annual,2011,gas oil combustion consumption by to the public,492.8574,TJ,CO2,74100.0,kg/TJ,36520733.339999996,kg -6cca633c-7959-3bf5-a87d-597acb1af882,SESCO,II.1.1,Tucuman,AR-T,annual,2011,gas oil combustion consumption by to the public,492.8574,TJ,CH4,3.9,kg/TJ,1922.14386,kg -6cca633c-7959-3bf5-a87d-597acb1af882,SESCO,II.1.1,Tucuman,AR-T,annual,2011,gas oil combustion consumption by to the public,492.8574,TJ,N2O,3.9,kg/TJ,1922.14386,kg -83ebe5bb-2eb6-30e2-bc1f-4ac24f5b76db,SESCO,II.1.1,Buenos Aires,AR-B,annual,2011,jet kerosene combustion consumption by to the public,425.1816539999999,TJ,CO2,71500.0,kg/TJ,30400488.260999996,kg -3b4c2169-7bfe-304f-b8de-ffe8b55edda9,SESCO,II.1.1,Buenos Aires,AR-B,annual,2011,jet kerosene combustion consumption by to the public,425.1816539999999,TJ,CH4,0.5,kg/TJ,212.59082699999996,kg -c003bcff-475d-33a5-a28a-ff6b6375c2c1,SESCO,II.1.1,Buenos Aires,AR-B,annual,2011,jet kerosene combustion consumption by to the public,425.1816539999999,TJ,N2O,2.0,kg/TJ,850.3633079999998,kg -95eeab8a-5da1-37db-9d0c-893f031b6021,SESCO,II.1.1,Capital Federal,AR-C,annual,2011,jet kerosene combustion consumption by to the public,21.922740999999995,TJ,CO2,71500.0,kg/TJ,1567475.9814999995,kg -fe2b29b0-bddd-3057-b2a4-5971d2c489a7,SESCO,II.1.1,Capital Federal,AR-C,annual,2011,jet kerosene combustion consumption by to the public,21.922740999999995,TJ,CH4,0.5,kg/TJ,10.961370499999997,kg -5c9e2a97-5c58-33d1-b70d-9031ec02645a,SESCO,II.1.1,Capital Federal,AR-C,annual,2011,jet kerosene combustion consumption by to the public,21.922740999999995,TJ,N2O,2.0,kg/TJ,43.84548199999999,kg -b619b595-c0ee-3f84-915f-4fb296945315,SESCO,II.1.1,Catamarca,AR-K,annual,2011,jet kerosene combustion consumption by to the public,5.755898999999999,TJ,CO2,71500.0,kg/TJ,411546.77849999996,kg -31c546dd-ba1e-30dd-981c-31f2c91462ca,SESCO,II.1.1,Catamarca,AR-K,annual,2011,jet kerosene combustion consumption by to the public,5.755898999999999,TJ,CH4,0.5,kg/TJ,2.8779494999999997,kg -d66c0296-37dc-3bbd-9a77-dc4a85e491c9,SESCO,II.1.1,Catamarca,AR-K,annual,2011,jet kerosene combustion consumption by to the public,5.755898999999999,TJ,N2O,2.0,kg/TJ,11.511797999999999,kg -01a0e36d-968b-3797-873c-1065d18bf88e,SESCO,II.1.1,Chaco,AR-H,annual,2011,jet kerosene combustion consumption by to the public,3.0823939999999994,TJ,CO2,71500.0,kg/TJ,220391.17099999994,kg -d1797454-28ef-3924-bb38-ecaf636fbac1,SESCO,II.1.1,Chaco,AR-H,annual,2011,jet kerosene combustion consumption by to the public,3.0823939999999994,TJ,CH4,0.5,kg/TJ,1.5411969999999997,kg -c2d48bec-6576-3ecc-ae39-e90c11e4e467,SESCO,II.1.1,Chaco,AR-H,annual,2011,jet kerosene combustion consumption by to the public,3.0823939999999994,TJ,N2O,2.0,kg/TJ,6.164787999999999,kg -dd0f1c03-4c99-302e-89a3-95778e17ce13,SESCO,II.1.1,Chubut,AR-U,annual,2011,jet kerosene combustion consumption by to the public,15.978123999999998,TJ,CO2,71500.0,kg/TJ,1142435.866,kg -46b37263-ff7a-3e4b-a069-f5d8fbb9d60d,SESCO,II.1.1,Chubut,AR-U,annual,2011,jet kerosene combustion consumption by to the public,15.978123999999998,TJ,CH4,0.5,kg/TJ,7.989061999999999,kg -fca7a037-9695-3978-a800-d951b5e8dc37,SESCO,II.1.1,Chubut,AR-U,annual,2011,jet kerosene combustion consumption by to the public,15.978123999999998,TJ,N2O,2.0,kg/TJ,31.956247999999995,kg -008f0b71-b60a-3cf7-afc8-f37b8a28f1fc,SESCO,II.1.1,Corrientes,AR-W,annual,2011,jet kerosene combustion consumption by to the public,9.907694999999999,TJ,CO2,71500.0,kg/TJ,708400.1924999999,kg -8438c722-7627-3477-9df7-3f05de11d59b,SESCO,II.1.1,Corrientes,AR-W,annual,2011,jet kerosene combustion consumption by to the public,9.907694999999999,TJ,CH4,0.5,kg/TJ,4.953847499999999,kg -36b47a4c-048d-3591-94d7-72c88878999e,SESCO,II.1.1,Corrientes,AR-W,annual,2011,jet kerosene combustion consumption by to the public,9.907694999999999,TJ,N2O,2.0,kg/TJ,19.815389999999997,kg -64ec650d-897e-316d-b5c2-2c33e54fd922,SESCO,II.1.1,Córdoba,AR-X,annual,2011,jet kerosene combustion consumption by to the public,216.55390499999996,TJ,CO2,71500.0,kg/TJ,15483604.207499998,kg -11c7ca18-98d8-3783-81fe-c79d54723134,SESCO,II.1.1,Córdoba,AR-X,annual,2011,jet kerosene combustion consumption by to the public,216.55390499999996,TJ,CH4,0.5,kg/TJ,108.27695249999998,kg -817b31e9-a11b-3bd0-995a-ed6443366ab6,SESCO,II.1.1,Córdoba,AR-X,annual,2011,jet kerosene combustion consumption by to the public,216.55390499999996,TJ,N2O,2.0,kg/TJ,433.1078099999999,kg -86e05dad-2dd6-3f3e-912c-a160dd85c008,SESCO,II.1.1,Entre Rios,AR-E,annual,2011,jet kerosene combustion consumption by to the public,27.364109999999997,TJ,CO2,71500.0,kg/TJ,1956533.8649999998,kg -cb8e717c-7998-3b39-8342-5d96aac6ee9e,SESCO,II.1.1,Entre Rios,AR-E,annual,2011,jet kerosene combustion consumption by to the public,27.364109999999997,TJ,CH4,0.5,kg/TJ,13.682054999999998,kg -395d2da0-fffc-3cdf-8e20-894ca2e83e35,SESCO,II.1.1,Entre Rios,AR-E,annual,2011,jet kerosene combustion consumption by to the public,27.364109999999997,TJ,N2O,2.0,kg/TJ,54.72821999999999,kg -ec1bb05d-f2f2-3fa4-803b-41fcc277d819,SESCO,II.1.1,Jujuy,AR-Y,annual,2011,jet kerosene combustion consumption by to the public,3.9945309999999994,TJ,CO2,71500.0,kg/TJ,285608.9665,kg -2c0af33a-ce12-3500-98e1-a1ba5e1a9c43,SESCO,II.1.1,Jujuy,AR-Y,annual,2011,jet kerosene combustion consumption by to the public,3.9945309999999994,TJ,CH4,0.5,kg/TJ,1.9972654999999997,kg -7c8cba02-eaac-38f8-a61b-be2b4ff8bb9d,SESCO,II.1.1,Jujuy,AR-Y,annual,2011,jet kerosene combustion consumption by to the public,3.9945309999999994,TJ,N2O,2.0,kg/TJ,7.989061999999999,kg -c41f4fad-062b-307d-9b43-364f5d45b24a,SESCO,II.1.1,La Pampa,AR-L,annual,2011,jet kerosene combustion consumption by to the public,18.022568999999997,TJ,CO2,71500.0,kg/TJ,1288613.6834999998,kg -ec73afe4-377e-3f6a-8080-069147ec0dcb,SESCO,II.1.1,La Pampa,AR-L,annual,2011,jet kerosene combustion consumption by to the public,18.022568999999997,TJ,CH4,0.5,kg/TJ,9.011284499999999,kg -47c29c86-c4a2-38ba-a8d6-d1dd9f034b0d,SESCO,II.1.1,La Pampa,AR-L,annual,2011,jet kerosene combustion consumption by to the public,18.022568999999997,TJ,N2O,2.0,kg/TJ,36.045137999999994,kg -4fbf5640-523e-377b-8896-008f49f6c487,SESCO,II.1.1,La Rioja,AR-F,annual,2011,jet kerosene combustion consumption by to the public,3.5856419999999996,TJ,CO2,71500.0,kg/TJ,256373.40299999996,kg -9f693ecd-945d-32e3-954f-0584aacd41a8,SESCO,II.1.1,La Rioja,AR-F,annual,2011,jet kerosene combustion consumption by to the public,3.5856419999999996,TJ,CH4,0.5,kg/TJ,1.7928209999999998,kg -dfde0dd2-0cf7-3f50-a5f6-b805aa0118ac,SESCO,II.1.1,La Rioja,AR-F,annual,2011,jet kerosene combustion consumption by to the public,3.5856419999999996,TJ,N2O,2.0,kg/TJ,7.171283999999999,kg -0b762990-1dba-3d34-b152-b668488ebeb3,SESCO,II.1.1,Mendoza,AR-M,annual,2011,jet kerosene combustion consumption by to the public,60.35830699999999,TJ,CO2,71500.0,kg/TJ,4315618.950499999,kg -f8ba1dea-f015-3b2d-8e77-88a7ef97aa45,SESCO,II.1.1,Mendoza,AR-M,annual,2011,jet kerosene combustion consumption by to the public,60.35830699999999,TJ,CH4,0.5,kg/TJ,30.179153499999995,kg -9c606ba7-b9d1-38c2-8f04-fc3c3c70e8de,SESCO,II.1.1,Mendoza,AR-M,annual,2011,jet kerosene combustion consumption by to the public,60.35830699999999,TJ,N2O,2.0,kg/TJ,120.71661399999998,kg -9e9cfa46-74df-3b83-9345-29817414f20f,SESCO,II.1.1,Misiones,AR-N,annual,2011,jet kerosene combustion consumption by to the public,6.510770999999999,TJ,CO2,71500.0,kg/TJ,465520.12649999995,kg -35b128f4-d9bc-3ea5-ae90-ba6a099e3750,SESCO,II.1.1,Misiones,AR-N,annual,2011,jet kerosene combustion consumption by to the public,6.510770999999999,TJ,CH4,0.5,kg/TJ,3.2553854999999996,kg -55cc5461-84ae-3d41-a7cf-f77de7e87b69,SESCO,II.1.1,Misiones,AR-N,annual,2011,jet kerosene combustion consumption by to the public,6.510770999999999,TJ,N2O,2.0,kg/TJ,13.021541999999998,kg -cd76dd5d-4e64-3684-bf5e-7fc235e28d18,SESCO,II.1.1,Neuquén,AR-Q,annual,2011,jet kerosene combustion consumption by to the public,9.593164999999999,TJ,CO2,71500.0,kg/TJ,685911.2975,kg -7565b5db-04b9-3856-bce3-d4eb9ee90f70,SESCO,II.1.1,Neuquén,AR-Q,annual,2011,jet kerosene combustion consumption by to the public,9.593164999999999,TJ,CH4,0.5,kg/TJ,4.7965824999999995,kg -53205bb5-957b-3220-b959-150db9e4ecbf,SESCO,II.1.1,Neuquén,AR-Q,annual,2011,jet kerosene combustion consumption by to the public,9.593164999999999,TJ,N2O,2.0,kg/TJ,19.186329999999998,kg -e8be1d7b-6f33-3525-afd2-e18ec8ebab3a,SESCO,II.1.1,Rio Negro,AR-R,annual,2011,jet kerosene combustion consumption by to the public,6.038975999999999,TJ,CO2,71500.0,kg/TJ,431786.7839999999,kg -40376edc-6841-3bfc-b629-4c3f287e7a5b,SESCO,II.1.1,Rio Negro,AR-R,annual,2011,jet kerosene combustion consumption by to the public,6.038975999999999,TJ,CH4,0.5,kg/TJ,3.0194879999999995,kg -90189749-806c-31f7-b369-9d7c01e5c91b,SESCO,II.1.1,Rio Negro,AR-R,annual,2011,jet kerosene combustion consumption by to the public,6.038975999999999,TJ,N2O,2.0,kg/TJ,12.077951999999998,kg -bc76e89a-4bab-34c8-ae4d-e1638c74423b,SESCO,II.1.1,Salta,AR-A,annual,2011,jet kerosene combustion consumption by to the public,13.807866999999998,TJ,CO2,71500.0,kg/TJ,987262.4904999998,kg -3d6769fe-49e1-332f-81dd-396111f2d4da,SESCO,II.1.1,Salta,AR-A,annual,2011,jet kerosene combustion consumption by to the public,13.807866999999998,TJ,CH4,0.5,kg/TJ,6.903933499999999,kg -54d2c11d-b89b-3661-9e8b-ab9d87363a9d,SESCO,II.1.1,Salta,AR-A,annual,2011,jet kerosene combustion consumption by to the public,13.807866999999998,TJ,N2O,2.0,kg/TJ,27.615733999999996,kg -7e305467-bb28-3b71-af1f-6b8b0b7f933f,SESCO,II.1.1,San Juan,AR-J,annual,2011,jet kerosene combustion consumption by to the public,5.189744999999999,TJ,CO2,71500.0,kg/TJ,371066.76749999996,kg -63692fd9-aa2b-32e8-aaee-30ff2064f097,SESCO,II.1.1,San Juan,AR-J,annual,2011,jet kerosene combustion consumption by to the public,5.189744999999999,TJ,CH4,0.5,kg/TJ,2.5948724999999997,kg -e7bf666e-458a-3fec-96ae-481672087f0e,SESCO,II.1.1,San Juan,AR-J,annual,2011,jet kerosene combustion consumption by to the public,5.189744999999999,TJ,N2O,2.0,kg/TJ,10.379489999999999,kg -0ded5ca2-0855-3386-962a-a3bcc0678893,SESCO,II.1.1,San Luis,AR-D,annual,2011,jet kerosene combustion consumption by to the public,17.802397999999997,TJ,CO2,71500.0,kg/TJ,1272871.4569999997,kg -67333fff-629b-3d58-b4ae-b24f7dbafabb,SESCO,II.1.1,San Luis,AR-D,annual,2011,jet kerosene combustion consumption by to the public,17.802397999999997,TJ,CH4,0.5,kg/TJ,8.901198999999998,kg -ee1d25c5-e412-3942-b0c5-2a4199194cde,SESCO,II.1.1,San Luis,AR-D,annual,2011,jet kerosene combustion consumption by to the public,17.802397999999997,TJ,N2O,2.0,kg/TJ,35.60479599999999,kg -faa8a71e-c18d-3b9a-bee7-1a521cf8b47a,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2011,jet kerosene combustion consumption by to the public,18.966158999999998,TJ,CO2,71500.0,kg/TJ,1356080.3684999999,kg -0d6921f9-6379-3546-b9a7-f6a0d461250d,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2011,jet kerosene combustion consumption by to the public,18.966158999999998,TJ,CH4,0.5,kg/TJ,9.483079499999999,kg -d56592cb-7d4f-355f-bd59-1ce40fe6aacc,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2011,jet kerosene combustion consumption by to the public,18.966158999999998,TJ,N2O,2.0,kg/TJ,37.932317999999995,kg -d7007805-975d-367f-95b5-bd68ed3b6daa,SESCO,II.1.1,Santa Fe,AR-S,annual,2011,jet kerosene combustion consumption by to the public,80.70839799999999,TJ,CO2,71500.0,kg/TJ,5770650.4569999995,kg -77c00f7b-9b7f-3aa2-b0d6-ed9d5710f173,SESCO,II.1.1,Santa Fe,AR-S,annual,2011,jet kerosene combustion consumption by to the public,80.70839799999999,TJ,CH4,0.5,kg/TJ,40.354198999999994,kg -e3000f71-b445-3d13-bbdd-16e98986666b,SESCO,II.1.1,Santa Fe,AR-S,annual,2011,jet kerosene combustion consumption by to the public,80.70839799999999,TJ,N2O,2.0,kg/TJ,161.41679599999998,kg -a6427612-5795-34a4-a363-04b0a15a09f9,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2011,jet kerosene combustion consumption by to the public,12.392481999999998,TJ,CO2,71500.0,kg/TJ,886062.4629999999,kg -5cc13467-3c54-3906-9dbe-938358a92e31,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2011,jet kerosene combustion consumption by to the public,12.392481999999998,TJ,CH4,0.5,kg/TJ,6.196240999999999,kg -4ff29c86-1968-378a-a6ee-d9037d8be0be,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2011,jet kerosene combustion consumption by to the public,12.392481999999998,TJ,N2O,2.0,kg/TJ,24.784963999999995,kg -24af7e96-e4a4-3b3b-947f-cea652d1dd53,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2011,jet kerosene combustion consumption by to the public,2.3589749999999996,TJ,CO2,71500.0,kg/TJ,168666.71249999997,kg -312bc8d6-6d32-3fcc-a334-e1eb92aacb47,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2011,jet kerosene combustion consumption by to the public,2.3589749999999996,TJ,CH4,0.5,kg/TJ,1.1794874999999998,kg -d30fd764-452f-3053-85ae-b5bb5e50bcf3,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2011,jet kerosene combustion consumption by to the public,2.3589749999999996,TJ,N2O,2.0,kg/TJ,4.717949999999999,kg -8d1781ec-f9be-3f66-9364-f3c9064e3afe,SESCO,II.1.1,Tucuman,AR-T,annual,2011,jet kerosene combustion consumption by to the public,15.097439999999997,TJ,CO2,71500.0,kg/TJ,1079466.9599999997,kg -c66dd281-d60b-35b1-a862-903d8e9da505,SESCO,II.1.1,Tucuman,AR-T,annual,2011,jet kerosene combustion consumption by to the public,15.097439999999997,TJ,CH4,0.5,kg/TJ,7.5487199999999985,kg -3f4a74b9-a394-3c2b-9470-ab40043299fa,SESCO,II.1.1,Tucuman,AR-T,annual,2011,jet kerosene combustion consumption by to the public,15.097439999999997,TJ,N2O,2.0,kg/TJ,30.194879999999994,kg -c76812d3-9a5b-36b3-84d4-c4611cee0c62,SESCO,II.1.1,Buenos Aires,AR-B,annual,2011,gasoline combustion consumption by freight transport,34.111,TJ,CO2,69300.0,kg/TJ,2363892.3,kg -9f58ed59-2d24-370e-abc0-10341b78ab3c,SESCO,II.1.1,Buenos Aires,AR-B,annual,2011,gasoline combustion consumption by freight transport,34.111,TJ,CH4,33.0,kg/TJ,1125.663,kg -e90c69b9-4c15-379f-9553-dbd51f31f9cd,SESCO,II.1.1,Buenos Aires,AR-B,annual,2011,gasoline combustion consumption by freight transport,34.111,TJ,N2O,3.2,kg/TJ,109.1552,kg -2e5732e8-de59-3006-adbf-b551d2f36d89,SESCO,II.1.1,Capital Federal,AR-C,annual,2011,gasoline combustion consumption by freight transport,3.4997,TJ,CO2,69300.0,kg/TJ,242529.21,kg -1253dbcd-491a-3769-a8a1-eb20eccc6867,SESCO,II.1.1,Capital Federal,AR-C,annual,2011,gasoline combustion consumption by freight transport,3.4997,TJ,CH4,33.0,kg/TJ,115.4901,kg -333c7b5a-bcce-38e0-9d3c-2cedcee5c9fd,SESCO,II.1.1,Capital Federal,AR-C,annual,2011,gasoline combustion consumption by freight transport,3.4997,TJ,N2O,3.2,kg/TJ,11.19904,kg -c69c1eea-9e49-32de-9b85-c77f9620eda6,SESCO,II.1.1,Buenos Aires,AR-B,annual,2011,gas oil combustion consumption by freight transport,6696.53964,TJ,CO2,74100.0,kg/TJ,496213587.324,kg -a8daac81-7338-34cd-bc2f-eeed5c0aea3e,SESCO,II.1.1,Buenos Aires,AR-B,annual,2011,gas oil combustion consumption by freight transport,6696.53964,TJ,CH4,3.9,kg/TJ,26116.504596,kg -a8daac81-7338-34cd-bc2f-eeed5c0aea3e,SESCO,II.1.1,Buenos Aires,AR-B,annual,2011,gas oil combustion consumption by freight transport,6696.53964,TJ,N2O,3.9,kg/TJ,26116.504596,kg -26076bf3-a4df-3244-b355-b7bbf1f211a7,SESCO,II.1.1,Capital Federal,AR-C,annual,2011,gas oil combustion consumption by freight transport,713.29776,TJ,CO2,74100.0,kg/TJ,52855364.016,kg -1d846f3e-4f2c-3006-b1f8-7da946d9b3c9,SESCO,II.1.1,Capital Federal,AR-C,annual,2011,gas oil combustion consumption by freight transport,713.29776,TJ,CH4,3.9,kg/TJ,2781.861264,kg -1d846f3e-4f2c-3006-b1f8-7da946d9b3c9,SESCO,II.1.1,Capital Federal,AR-C,annual,2011,gas oil combustion consumption by freight transport,713.29776,TJ,N2O,3.9,kg/TJ,2781.861264,kg -2bb42240-35bd-3c08-97bc-c37afcac0ddd,SESCO,II.1.1,Catamarca,AR-K,annual,2011,gas oil combustion consumption by freight transport,26.07864,TJ,CO2,74100.0,kg/TJ,1932427.224,kg -2e522ac1-b46b-30c6-a2f2-1ee717bd9912,SESCO,II.1.1,Catamarca,AR-K,annual,2011,gas oil combustion consumption by freight transport,26.07864,TJ,CH4,3.9,kg/TJ,101.706696,kg -2e522ac1-b46b-30c6-a2f2-1ee717bd9912,SESCO,II.1.1,Catamarca,AR-K,annual,2011,gas oil combustion consumption by freight transport,26.07864,TJ,N2O,3.9,kg/TJ,101.706696,kg -9a40a1f0-9fa6-33a5-9517-34471b964860,SESCO,II.1.1,Chaco,AR-H,annual,2011,gas oil combustion consumption by freight transport,111.89976,TJ,CO2,74100.0,kg/TJ,8291772.216,kg -da2a6807-a087-347b-9e05-755616151460,SESCO,II.1.1,Chaco,AR-H,annual,2011,gas oil combustion consumption by freight transport,111.89976,TJ,CH4,3.9,kg/TJ,436.409064,kg -da2a6807-a087-347b-9e05-755616151460,SESCO,II.1.1,Chaco,AR-H,annual,2011,gas oil combustion consumption by freight transport,111.89976,TJ,N2O,3.9,kg/TJ,436.409064,kg -e3219bf5-f1ad-32bb-8cc4-b4abe3fa3b9a,SESCO,II.1.1,Chubut,AR-U,annual,2011,gas oil combustion consumption by freight transport,230.30112,TJ,CO2,74100.0,kg/TJ,17065312.992,kg -25adaacc-78b3-3db4-8147-6af5c37b44b0,SESCO,II.1.1,Chubut,AR-U,annual,2011,gas oil combustion consumption by freight transport,230.30112,TJ,CH4,3.9,kg/TJ,898.174368,kg -25adaacc-78b3-3db4-8147-6af5c37b44b0,SESCO,II.1.1,Chubut,AR-U,annual,2011,gas oil combustion consumption by freight transport,230.30112,TJ,N2O,3.9,kg/TJ,898.174368,kg -2d45eeec-d6d9-380b-b2ee-fae3cae5a4f0,SESCO,II.1.1,Corrientes,AR-W,annual,2011,gas oil combustion consumption by freight transport,458.76012,TJ,CO2,74100.0,kg/TJ,33994124.892,kg -06416850-46f4-38f1-8e50-b2dbdab9b23b,SESCO,II.1.1,Corrientes,AR-W,annual,2011,gas oil combustion consumption by freight transport,458.76012,TJ,CH4,3.9,kg/TJ,1789.164468,kg -06416850-46f4-38f1-8e50-b2dbdab9b23b,SESCO,II.1.1,Corrientes,AR-W,annual,2011,gas oil combustion consumption by freight transport,458.76012,TJ,N2O,3.9,kg/TJ,1789.164468,kg -eb2f7b61-b2a2-348e-b861-f690e05d073a,SESCO,II.1.1,Córdoba,AR-X,annual,2011,gas oil combustion consumption by freight transport,1535.6779199999999,TJ,CO2,74100.0,kg/TJ,113793733.872,kg -e01e62b9-da78-3ebe-becf-3d5fc4db26b5,SESCO,II.1.1,Córdoba,AR-X,annual,2011,gas oil combustion consumption by freight transport,1535.6779199999999,TJ,CH4,3.9,kg/TJ,5989.143888,kg -e01e62b9-da78-3ebe-becf-3d5fc4db26b5,SESCO,II.1.1,Córdoba,AR-X,annual,2011,gas oil combustion consumption by freight transport,1535.6779199999999,TJ,N2O,3.9,kg/TJ,5989.143888,kg -603814e3-ede6-306c-a1ce-aeb24332771a,SESCO,II.1.1,Entre Rios,AR-E,annual,2011,gas oil combustion consumption by freight transport,171.0282,TJ,CO2,74100.0,kg/TJ,12673189.62,kg -4c4f0730-0bd1-3af2-b4f7-a6f8311d0a98,SESCO,II.1.1,Entre Rios,AR-E,annual,2011,gas oil combustion consumption by freight transport,171.0282,TJ,CH4,3.9,kg/TJ,667.0099799999999,kg -4c4f0730-0bd1-3af2-b4f7-a6f8311d0a98,SESCO,II.1.1,Entre Rios,AR-E,annual,2011,gas oil combustion consumption by freight transport,171.0282,TJ,N2O,3.9,kg/TJ,667.0099799999999,kg -b2396f77-23e6-30f3-b01e-671320d39669,SESCO,II.1.1,Formosa,AR-P,annual,2011,gas oil combustion consumption by freight transport,5.56248,TJ,CO2,74100.0,kg/TJ,412179.768,kg -2e1858f4-834d-3f7c-9554-193012ed8010,SESCO,II.1.1,Formosa,AR-P,annual,2011,gas oil combustion consumption by freight transport,5.56248,TJ,CH4,3.9,kg/TJ,21.693672,kg -2e1858f4-834d-3f7c-9554-193012ed8010,SESCO,II.1.1,Formosa,AR-P,annual,2011,gas oil combustion consumption by freight transport,5.56248,TJ,N2O,3.9,kg/TJ,21.693672,kg -4f73da51-99d2-33fd-935f-fd8862dee7f6,SESCO,II.1.1,Jujuy,AR-Y,annual,2011,gas oil combustion consumption by freight transport,30.701999999999998,TJ,CO2,74100.0,kg/TJ,2275018.1999999997,kg -35c15289-7658-3731-8c20-b85c9af13c26,SESCO,II.1.1,Jujuy,AR-Y,annual,2011,gas oil combustion consumption by freight transport,30.701999999999998,TJ,CH4,3.9,kg/TJ,119.7378,kg -35c15289-7658-3731-8c20-b85c9af13c26,SESCO,II.1.1,Jujuy,AR-Y,annual,2011,gas oil combustion consumption by freight transport,30.701999999999998,TJ,N2O,3.9,kg/TJ,119.7378,kg -e6d5e221-8f0e-359e-ad01-865cd126a03c,SESCO,II.1.1,La Pampa,AR-L,annual,2011,gas oil combustion consumption by freight transport,143.90207999999998,TJ,CO2,74100.0,kg/TJ,10663144.127999999,kg -1e7c9103-2918-35d8-858f-0cbcf72536f9,SESCO,II.1.1,La Pampa,AR-L,annual,2011,gas oil combustion consumption by freight transport,143.90207999999998,TJ,CH4,3.9,kg/TJ,561.2181119999999,kg -1e7c9103-2918-35d8-858f-0cbcf72536f9,SESCO,II.1.1,La Pampa,AR-L,annual,2011,gas oil combustion consumption by freight transport,143.90207999999998,TJ,N2O,3.9,kg/TJ,561.2181119999999,kg -512aff53-cbe0-3415-8927-df5099455ace,SESCO,II.1.1,La Rioja,AR-F,annual,2011,gas oil combustion consumption by freight transport,11.41392,TJ,CO2,74100.0,kg/TJ,845771.472,kg -9934bc0d-53b2-3bbd-9530-6012220c0c52,SESCO,II.1.1,La Rioja,AR-F,annual,2011,gas oil combustion consumption by freight transport,11.41392,TJ,CH4,3.9,kg/TJ,44.51428799999999,kg -9934bc0d-53b2-3bbd-9530-6012220c0c52,SESCO,II.1.1,La Rioja,AR-F,annual,2011,gas oil combustion consumption by freight transport,11.41392,TJ,N2O,3.9,kg/TJ,44.51428799999999,kg -40414cac-b3de-38cc-9376-6cf7d0d4d453,SESCO,II.1.1,Mendoza,AR-M,annual,2011,gas oil combustion consumption by freight transport,805.1148,TJ,CO2,74100.0,kg/TJ,59659006.67999999,kg -bd0e8352-492b-35e6-8a5e-885293d7a9db,SESCO,II.1.1,Mendoza,AR-M,annual,2011,gas oil combustion consumption by freight transport,805.1148,TJ,CH4,3.9,kg/TJ,3139.9477199999997,kg -bd0e8352-492b-35e6-8a5e-885293d7a9db,SESCO,II.1.1,Mendoza,AR-M,annual,2011,gas oil combustion consumption by freight transport,805.1148,TJ,N2O,3.9,kg/TJ,3139.9477199999997,kg -9dba301c-9954-39ed-9287-d68b575f34bc,SESCO,II.1.1,Misiones,AR-N,annual,2011,gas oil combustion consumption by freight transport,121.36319999999999,TJ,CO2,74100.0,kg/TJ,8993013.12,kg -34986d83-d729-3aae-be1f-d7dae92e513b,SESCO,II.1.1,Misiones,AR-N,annual,2011,gas oil combustion consumption by freight transport,121.36319999999999,TJ,CH4,3.9,kg/TJ,473.31647999999996,kg -34986d83-d729-3aae-be1f-d7dae92e513b,SESCO,II.1.1,Misiones,AR-N,annual,2011,gas oil combustion consumption by freight transport,121.36319999999999,TJ,N2O,3.9,kg/TJ,473.31647999999996,kg -4831b9b8-4d4f-398e-8951-c58f63fb6fad,SESCO,II.1.1,Neuquén,AR-Q,annual,2011,gas oil combustion consumption by freight transport,416.49971999999997,TJ,CO2,74100.0,kg/TJ,30862629.251999997,kg -7553f31e-ee5e-3878-a73c-29a0814f315e,SESCO,II.1.1,Neuquén,AR-Q,annual,2011,gas oil combustion consumption by freight transport,416.49971999999997,TJ,CH4,3.9,kg/TJ,1624.348908,kg -7553f31e-ee5e-3878-a73c-29a0814f315e,SESCO,II.1.1,Neuquén,AR-Q,annual,2011,gas oil combustion consumption by freight transport,416.49971999999997,TJ,N2O,3.9,kg/TJ,1624.348908,kg -28a377d5-94b3-3539-9715-a631ee8ff227,SESCO,II.1.1,Rio Negro,AR-R,annual,2011,gas oil combustion consumption by freight transport,55.841519999999996,TJ,CO2,74100.0,kg/TJ,4137856.6319999998,kg -78249f5d-93fc-387a-8890-e679dcc25625,SESCO,II.1.1,Rio Negro,AR-R,annual,2011,gas oil combustion consumption by freight transport,55.841519999999996,TJ,CH4,3.9,kg/TJ,217.78192799999997,kg -78249f5d-93fc-387a-8890-e679dcc25625,SESCO,II.1.1,Rio Negro,AR-R,annual,2011,gas oil combustion consumption by freight transport,55.841519999999996,TJ,N2O,3.9,kg/TJ,217.78192799999997,kg -1a157bab-e866-3e81-935d-f13902aca82e,SESCO,II.1.1,Salta,AR-A,annual,2011,gas oil combustion consumption by freight transport,166.54932,TJ,CO2,74100.0,kg/TJ,12341304.612,kg -f329140b-f9e7-36a4-935a-967634fc90a1,SESCO,II.1.1,Salta,AR-A,annual,2011,gas oil combustion consumption by freight transport,166.54932,TJ,CH4,3.9,kg/TJ,649.542348,kg -f329140b-f9e7-36a4-935a-967634fc90a1,SESCO,II.1.1,Salta,AR-A,annual,2011,gas oil combustion consumption by freight transport,166.54932,TJ,N2O,3.9,kg/TJ,649.542348,kg -36936686-095f-30fe-8728-2f2ee7f846cf,SESCO,II.1.1,San Juan,AR-J,annual,2011,gas oil combustion consumption by freight transport,67.83336,TJ,CO2,74100.0,kg/TJ,5026451.976,kg -4b040d41-bc05-3949-b205-2a54f17ac537,SESCO,II.1.1,San Juan,AR-J,annual,2011,gas oil combustion consumption by freight transport,67.83336,TJ,CH4,3.9,kg/TJ,264.550104,kg -4b040d41-bc05-3949-b205-2a54f17ac537,SESCO,II.1.1,San Juan,AR-J,annual,2011,gas oil combustion consumption by freight transport,67.83336,TJ,N2O,3.9,kg/TJ,264.550104,kg -4216ba21-16b1-34ec-b050-638fc992e086,SESCO,II.1.1,San Luis,AR-D,annual,2011,gas oil combustion consumption by freight transport,162.9012,TJ,CO2,74100.0,kg/TJ,12070978.92,kg -0f129a7b-d483-3358-b45f-276dc3875784,SESCO,II.1.1,San Luis,AR-D,annual,2011,gas oil combustion consumption by freight transport,162.9012,TJ,CH4,3.9,kg/TJ,635.31468,kg -0f129a7b-d483-3358-b45f-276dc3875784,SESCO,II.1.1,San Luis,AR-D,annual,2011,gas oil combustion consumption by freight transport,162.9012,TJ,N2O,3.9,kg/TJ,635.31468,kg -eacb6c31-0dc3-3a56-ab2c-cdf928aab3ff,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2011,gas oil combustion consumption by freight transport,91.05852,TJ,CO2,74100.0,kg/TJ,6747436.332,kg -d70799a8-c357-3ff0-97f8-98e2acc07548,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2011,gas oil combustion consumption by freight transport,91.05852,TJ,CH4,3.9,kg/TJ,355.128228,kg -d70799a8-c357-3ff0-97f8-98e2acc07548,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2011,gas oil combustion consumption by freight transport,91.05852,TJ,N2O,3.9,kg/TJ,355.128228,kg -cc612f44-fb18-3477-a71a-2c21f8ae77ef,SESCO,II.1.1,Santa Fe,AR-S,annual,2011,gas oil combustion consumption by freight transport,1220.20584,TJ,CO2,74100.0,kg/TJ,90417252.744,kg -72009aaa-ef09-3dd4-aa76-2c80fd3a042a,SESCO,II.1.1,Santa Fe,AR-S,annual,2011,gas oil combustion consumption by freight transport,1220.20584,TJ,CH4,3.9,kg/TJ,4758.802776,kg -72009aaa-ef09-3dd4-aa76-2c80fd3a042a,SESCO,II.1.1,Santa Fe,AR-S,annual,2011,gas oil combustion consumption by freight transport,1220.20584,TJ,N2O,3.9,kg/TJ,4758.802776,kg -88f03754-2e8b-3403-8203-8edb0ece890b,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2011,gas oil combustion consumption by freight transport,140.03724,TJ,CO2,74100.0,kg/TJ,10376759.484,kg -5aee66f6-9968-31bc-9c77-9a35919e6819,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2011,gas oil combustion consumption by freight transport,140.03724,TJ,CH4,3.9,kg/TJ,546.145236,kg -5aee66f6-9968-31bc-9c77-9a35919e6819,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2011,gas oil combustion consumption by freight transport,140.03724,TJ,N2O,3.9,kg/TJ,546.145236,kg -caab15c0-d86e-354c-bf90-917fe6eb4712,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2011,gas oil combustion consumption by freight transport,5.2374,TJ,CO2,74100.0,kg/TJ,388091.34,kg -efeb422d-e8ad-3212-a529-248281eedc17,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2011,gas oil combustion consumption by freight transport,5.2374,TJ,CH4,3.9,kg/TJ,20.42586,kg -efeb422d-e8ad-3212-a529-248281eedc17,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2011,gas oil combustion consumption by freight transport,5.2374,TJ,N2O,3.9,kg/TJ,20.42586,kg -770b5122-e4a5-3291-852a-99c7ea735f05,SESCO,II.1.1,Tucuman,AR-T,annual,2011,gas oil combustion consumption by freight transport,150.6204,TJ,CO2,74100.0,kg/TJ,11160971.639999999,kg -725478be-c678-30b6-a74f-f73f339fe333,SESCO,II.1.1,Tucuman,AR-T,annual,2011,gas oil combustion consumption by freight transport,150.6204,TJ,CH4,3.9,kg/TJ,587.4195599999999,kg -725478be-c678-30b6-a74f-f73f339fe333,SESCO,II.1.1,Tucuman,AR-T,annual,2011,gas oil combustion consumption by freight transport,150.6204,TJ,N2O,3.9,kg/TJ,587.4195599999999,kg -003bdc22-6238-3139-88fc-b752471c6def,SESCO,II.1.1,Buenos Aires,AR-B,annual,2011,gas oil combustion consumption by freight transport,20.9496,TJ,CO2,74100.0,kg/TJ,1552365.36,kg -788104ba-7ad0-36dd-a1d9-9b31795a216a,SESCO,II.1.1,Buenos Aires,AR-B,annual,2011,gas oil combustion consumption by freight transport,20.9496,TJ,CH4,3.9,kg/TJ,81.70344,kg -788104ba-7ad0-36dd-a1d9-9b31795a216a,SESCO,II.1.1,Buenos Aires,AR-B,annual,2011,gas oil combustion consumption by freight transport,20.9496,TJ,N2O,3.9,kg/TJ,81.70344,kg -f8ce9994-8c28-392d-b869-39ba77ba9fe4,SESCO,II.1.1,Capital Federal,AR-C,annual,2011,gas oil combustion consumption by freight transport,29.90736,TJ,CO2,74100.0,kg/TJ,2216135.376,kg -969f46ae-8e16-39bf-9727-afeb2fb79dda,SESCO,II.1.1,Capital Federal,AR-C,annual,2011,gas oil combustion consumption by freight transport,29.90736,TJ,CH4,3.9,kg/TJ,116.638704,kg -969f46ae-8e16-39bf-9727-afeb2fb79dda,SESCO,II.1.1,Capital Federal,AR-C,annual,2011,gas oil combustion consumption by freight transport,29.90736,TJ,N2O,3.9,kg/TJ,116.638704,kg -ca4b26c1-3201-3021-be28-1a083987c666,SESCO,II.1.1,Chaco,AR-H,annual,2011,gas oil combustion consumption by freight transport,2.02272,TJ,CO2,74100.0,kg/TJ,149883.552,kg -a78a7b4e-ddda-3369-9f2e-5e6d45726575,SESCO,II.1.1,Chaco,AR-H,annual,2011,gas oil combustion consumption by freight transport,2.02272,TJ,CH4,3.9,kg/TJ,7.8886080000000005,kg -a78a7b4e-ddda-3369-9f2e-5e6d45726575,SESCO,II.1.1,Chaco,AR-H,annual,2011,gas oil combustion consumption by freight transport,2.02272,TJ,N2O,3.9,kg/TJ,7.8886080000000005,kg -76efd5a8-b86c-3606-90e0-5e7ddce2a446,SESCO,II.1.1,Chubut,AR-U,annual,2011,gas oil combustion consumption by freight transport,1.11972,TJ,CO2,74100.0,kg/TJ,82971.25200000001,kg -53964884-3fe5-3988-93cd-9b0fcccd26c7,SESCO,II.1.1,Chubut,AR-U,annual,2011,gas oil combustion consumption by freight transport,1.11972,TJ,CH4,3.9,kg/TJ,4.3669080000000005,kg -53964884-3fe5-3988-93cd-9b0fcccd26c7,SESCO,II.1.1,Chubut,AR-U,annual,2011,gas oil combustion consumption by freight transport,1.11972,TJ,N2O,3.9,kg/TJ,4.3669080000000005,kg -882ff5ab-57f8-3b4a-bf4b-dfef3901bdb1,SESCO,II.1.1,Corrientes,AR-W,annual,2011,gas oil combustion consumption by freight transport,0.46956,TJ,CO2,74100.0,kg/TJ,34794.396,kg -78b7d7e6-4d08-3f17-ae8f-870329136b14,SESCO,II.1.1,Corrientes,AR-W,annual,2011,gas oil combustion consumption by freight transport,0.46956,TJ,CH4,3.9,kg/TJ,1.831284,kg -78b7d7e6-4d08-3f17-ae8f-870329136b14,SESCO,II.1.1,Corrientes,AR-W,annual,2011,gas oil combustion consumption by freight transport,0.46956,TJ,N2O,3.9,kg/TJ,1.831284,kg -6c8b044f-3c3b-3032-94e5-b93dae4fb485,SESCO,II.1.1,Córdoba,AR-X,annual,2011,gas oil combustion consumption by freight transport,3.28692,TJ,CO2,74100.0,kg/TJ,243560.772,kg -540a0142-92cd-3370-9dc9-20e4bf9b045e,SESCO,II.1.1,Córdoba,AR-X,annual,2011,gas oil combustion consumption by freight transport,3.28692,TJ,CH4,3.9,kg/TJ,12.818988,kg -540a0142-92cd-3370-9dc9-20e4bf9b045e,SESCO,II.1.1,Córdoba,AR-X,annual,2011,gas oil combustion consumption by freight transport,3.28692,TJ,N2O,3.9,kg/TJ,12.818988,kg -4aa8535e-5d51-3fe4-884a-8db05afee8e9,SESCO,II.1.1,Entre Rios,AR-E,annual,2011,gas oil combustion consumption by freight transport,1.69764,TJ,CO2,74100.0,kg/TJ,125795.124,kg -ed3f967e-dad6-3130-b2c1-df80617cbd8e,SESCO,II.1.1,Entre Rios,AR-E,annual,2011,gas oil combustion consumption by freight transport,1.69764,TJ,CH4,3.9,kg/TJ,6.620796,kg -ed3f967e-dad6-3130-b2c1-df80617cbd8e,SESCO,II.1.1,Entre Rios,AR-E,annual,2011,gas oil combustion consumption by freight transport,1.69764,TJ,N2O,3.9,kg/TJ,6.620796,kg -3266a5f0-7e94-35e3-a244-85b6bdee65bf,SESCO,II.1.1,Formosa,AR-P,annual,2011,gas oil combustion consumption by freight transport,0.14448,TJ,CO2,74100.0,kg/TJ,10705.967999999999,kg -b850ec85-6d63-361b-a71b-bd582ee6fb00,SESCO,II.1.1,Formosa,AR-P,annual,2011,gas oil combustion consumption by freight transport,0.14448,TJ,CH4,3.9,kg/TJ,0.563472,kg -b850ec85-6d63-361b-a71b-bd582ee6fb00,SESCO,II.1.1,Formosa,AR-P,annual,2011,gas oil combustion consumption by freight transport,0.14448,TJ,N2O,3.9,kg/TJ,0.563472,kg -2f2bef49-8cda-3d75-b58f-b70bb7287f1c,SESCO,II.1.1,Jujuy,AR-Y,annual,2011,gas oil combustion consumption by freight transport,0.10836,TJ,CO2,74100.0,kg/TJ,8029.476,kg -425adcec-7882-367e-94d7-8815ba9d4ba0,SESCO,II.1.1,Jujuy,AR-Y,annual,2011,gas oil combustion consumption by freight transport,0.10836,TJ,CH4,3.9,kg/TJ,0.422604,kg -425adcec-7882-367e-94d7-8815ba9d4ba0,SESCO,II.1.1,Jujuy,AR-Y,annual,2011,gas oil combustion consumption by freight transport,0.10836,TJ,N2O,3.9,kg/TJ,0.422604,kg -c7274959-0671-3111-9342-6b90ae4e5586,SESCO,II.1.1,La Pampa,AR-L,annual,2011,gas oil combustion consumption by freight transport,0.43344,TJ,CO2,74100.0,kg/TJ,32117.904,kg -db47159f-9f3f-3a6c-a080-5ba571848ee9,SESCO,II.1.1,La Pampa,AR-L,annual,2011,gas oil combustion consumption by freight transport,0.43344,TJ,CH4,3.9,kg/TJ,1.690416,kg -db47159f-9f3f-3a6c-a080-5ba571848ee9,SESCO,II.1.1,La Pampa,AR-L,annual,2011,gas oil combustion consumption by freight transport,0.43344,TJ,N2O,3.9,kg/TJ,1.690416,kg -2b86252a-aa17-3524-af2d-d11552b7975e,SESCO,II.1.1,La Rioja,AR-F,annual,2011,gas oil combustion consumption by freight transport,0.07224,TJ,CO2,74100.0,kg/TJ,5352.9839999999995,kg -3a77a225-7610-3b5b-9287-3a8a6a499a15,SESCO,II.1.1,La Rioja,AR-F,annual,2011,gas oil combustion consumption by freight transport,0.07224,TJ,CH4,3.9,kg/TJ,0.281736,kg -3a77a225-7610-3b5b-9287-3a8a6a499a15,SESCO,II.1.1,La Rioja,AR-F,annual,2011,gas oil combustion consumption by freight transport,0.07224,TJ,N2O,3.9,kg/TJ,0.281736,kg -dc128501-b7d0-3119-9776-1dd72524cc8a,SESCO,II.1.1,Mendoza,AR-M,annual,2011,gas oil combustion consumption by freight transport,2.13108,TJ,CO2,74100.0,kg/TJ,157913.028,kg -b3e120b2-7c18-311b-af75-5283a53fc8ad,SESCO,II.1.1,Mendoza,AR-M,annual,2011,gas oil combustion consumption by freight transport,2.13108,TJ,CH4,3.9,kg/TJ,8.311212,kg -b3e120b2-7c18-311b-af75-5283a53fc8ad,SESCO,II.1.1,Mendoza,AR-M,annual,2011,gas oil combustion consumption by freight transport,2.13108,TJ,N2O,3.9,kg/TJ,8.311212,kg -179d168f-321a-38e9-a771-65c7884ee55c,SESCO,II.1.1,Misiones,AR-N,annual,2011,gas oil combustion consumption by freight transport,0.36119999999999997,TJ,CO2,74100.0,kg/TJ,26764.92,kg -26e5e1e2-9348-3821-9b8d-d4412b028f6a,SESCO,II.1.1,Misiones,AR-N,annual,2011,gas oil combustion consumption by freight transport,0.36119999999999997,TJ,CH4,3.9,kg/TJ,1.40868,kg -26e5e1e2-9348-3821-9b8d-d4412b028f6a,SESCO,II.1.1,Misiones,AR-N,annual,2011,gas oil combustion consumption by freight transport,0.36119999999999997,TJ,N2O,3.9,kg/TJ,1.40868,kg -a828ec74-074f-330c-992f-c4fc2e507200,SESCO,II.1.1,Neuquén,AR-Q,annual,2011,gas oil combustion consumption by freight transport,1.15584,TJ,CO2,74100.0,kg/TJ,85647.74399999999,kg -38097382-31fd-3b6c-998c-0f1b61652d93,SESCO,II.1.1,Neuquén,AR-Q,annual,2011,gas oil combustion consumption by freight transport,1.15584,TJ,CH4,3.9,kg/TJ,4.507776,kg -38097382-31fd-3b6c-998c-0f1b61652d93,SESCO,II.1.1,Neuquén,AR-Q,annual,2011,gas oil combustion consumption by freight transport,1.15584,TJ,N2O,3.9,kg/TJ,4.507776,kg -5216dbcd-5fe7-388e-a706-ae560f6a92b4,SESCO,II.1.1,Rio Negro,AR-R,annual,2011,gas oil combustion consumption by freight transport,0.50568,TJ,CO2,74100.0,kg/TJ,37470.888,kg -6fc81f89-141d-3277-819a-5016a2ebac5d,SESCO,II.1.1,Rio Negro,AR-R,annual,2011,gas oil combustion consumption by freight transport,0.50568,TJ,CH4,3.9,kg/TJ,1.9721520000000001,kg -6fc81f89-141d-3277-819a-5016a2ebac5d,SESCO,II.1.1,Rio Negro,AR-R,annual,2011,gas oil combustion consumption by freight transport,0.50568,TJ,N2O,3.9,kg/TJ,1.9721520000000001,kg -8ac1c000-9866-327e-97f4-54cb28750c29,SESCO,II.1.1,Salta,AR-A,annual,2011,gas oil combustion consumption by freight transport,1.04748,TJ,CO2,74100.0,kg/TJ,77618.268,kg -a762e3fa-2f03-33d9-8443-135af5aca062,SESCO,II.1.1,Salta,AR-A,annual,2011,gas oil combustion consumption by freight transport,1.04748,TJ,CH4,3.9,kg/TJ,4.085172,kg -a762e3fa-2f03-33d9-8443-135af5aca062,SESCO,II.1.1,Salta,AR-A,annual,2011,gas oil combustion consumption by freight transport,1.04748,TJ,N2O,3.9,kg/TJ,4.085172,kg -fcd1acb9-004f-3a44-bc57-e0ea3fa984f4,SESCO,II.1.1,San Juan,AR-J,annual,2011,gas oil combustion consumption by freight transport,0.18059999999999998,TJ,CO2,74100.0,kg/TJ,13382.46,kg -915fe689-ba13-3c17-95cb-6c71a83471b5,SESCO,II.1.1,San Juan,AR-J,annual,2011,gas oil combustion consumption by freight transport,0.18059999999999998,TJ,CH4,3.9,kg/TJ,0.70434,kg -915fe689-ba13-3c17-95cb-6c71a83471b5,SESCO,II.1.1,San Juan,AR-J,annual,2011,gas oil combustion consumption by freight transport,0.18059999999999998,TJ,N2O,3.9,kg/TJ,0.70434,kg -3e15c984-2e8f-3f8d-94e0-6e21824cb623,SESCO,II.1.1,San Luis,AR-D,annual,2011,gas oil combustion consumption by freight transport,0.36119999999999997,TJ,CO2,74100.0,kg/TJ,26764.92,kg -166bcf8f-cfca-3d06-a441-bf9b914fed2a,SESCO,II.1.1,San Luis,AR-D,annual,2011,gas oil combustion consumption by freight transport,0.36119999999999997,TJ,CH4,3.9,kg/TJ,1.40868,kg -166bcf8f-cfca-3d06-a441-bf9b914fed2a,SESCO,II.1.1,San Luis,AR-D,annual,2011,gas oil combustion consumption by freight transport,0.36119999999999997,TJ,N2O,3.9,kg/TJ,1.40868,kg -242475b1-39c7-3f77-8def-a06fd3e4cad9,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2011,gas oil combustion consumption by freight transport,0.28896,TJ,CO2,74100.0,kg/TJ,21411.935999999998,kg -c063cf8a-f210-3de5-8334-89b44a5e068c,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2011,gas oil combustion consumption by freight transport,0.28896,TJ,CH4,3.9,kg/TJ,1.126944,kg -c063cf8a-f210-3de5-8334-89b44a5e068c,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2011,gas oil combustion consumption by freight transport,0.28896,TJ,N2O,3.9,kg/TJ,1.126944,kg -e9cf7dc9-0745-331f-9935-436d0af77ea7,SESCO,II.1.1,Santa Fe,AR-S,annual,2011,gas oil combustion consumption by freight transport,5.92368,TJ,CO2,74100.0,kg/TJ,438944.688,kg -f3fe4f16-0f97-3063-961e-9216d7199f1a,SESCO,II.1.1,Santa Fe,AR-S,annual,2011,gas oil combustion consumption by freight transport,5.92368,TJ,CH4,3.9,kg/TJ,23.102352,kg -f3fe4f16-0f97-3063-961e-9216d7199f1a,SESCO,II.1.1,Santa Fe,AR-S,annual,2011,gas oil combustion consumption by freight transport,5.92368,TJ,N2O,3.9,kg/TJ,23.102352,kg -30214e35-51c6-34fe-b4ed-f3140282a42c,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2011,gas oil combustion consumption by freight transport,0.36119999999999997,TJ,CO2,74100.0,kg/TJ,26764.92,kg -6773ee25-a1e6-3f80-ab5d-27ea533b7ef9,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2011,gas oil combustion consumption by freight transport,0.36119999999999997,TJ,CH4,3.9,kg/TJ,1.40868,kg -6773ee25-a1e6-3f80-ab5d-27ea533b7ef9,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2011,gas oil combustion consumption by freight transport,0.36119999999999997,TJ,N2O,3.9,kg/TJ,1.40868,kg -fa048901-ed20-33c4-8418-9efab2e3f084,SESCO,II.1.1,Tucuman,AR-T,annual,2011,gas oil combustion consumption by freight transport,0.61404,TJ,CO2,74100.0,kg/TJ,45500.364,kg -34ab5da4-60f9-3342-8789-3bb3edd461d7,SESCO,II.1.1,Tucuman,AR-T,annual,2011,gas oil combustion consumption by freight transport,0.61404,TJ,CH4,3.9,kg/TJ,2.394756,kg -34ab5da4-60f9-3342-8789-3bb3edd461d7,SESCO,II.1.1,Tucuman,AR-T,annual,2011,gas oil combustion consumption by freight transport,0.61404,TJ,N2O,3.9,kg/TJ,2.394756,kg -8812585f-aa4f-33ad-aade-32a79a17ca4e,SESCO,II.1.1,Buenos Aires,AR-B,annual,2011,jet kerosene combustion consumption by freight transport,1.8871799999999996,TJ,CO2,71500.0,kg/TJ,134933.36999999997,kg -8df51a08-c2c4-34f6-ab32-e2f6d1f44958,SESCO,II.1.1,Buenos Aires,AR-B,annual,2011,jet kerosene combustion consumption by freight transport,1.8871799999999996,TJ,CH4,0.5,kg/TJ,0.9435899999999998,kg -327f8496-d160-33f4-b559-80f5779b4a69,SESCO,II.1.1,Buenos Aires,AR-B,annual,2011,jet kerosene combustion consumption by freight transport,1.8871799999999996,TJ,N2O,2.0,kg/TJ,3.7743599999999993,kg -a801966e-179f-370c-9de2-e6f47542a42c,SESCO,II.1.1,Buenos Aires,AR-B,annual,2011,gas oil combustion consumption by public passenger transport,11361.25704,TJ,CO2,74100.0,kg/TJ,841869146.664,kg -bb54e185-b1a2-3d7c-acd9-2b3ab4a1cc35,SESCO,II.1.1,Buenos Aires,AR-B,annual,2011,gas oil combustion consumption by public passenger transport,11361.25704,TJ,CH4,3.9,kg/TJ,44308.902456,kg -bb54e185-b1a2-3d7c-acd9-2b3ab4a1cc35,SESCO,II.1.1,Buenos Aires,AR-B,annual,2011,gas oil combustion consumption by public passenger transport,11361.25704,TJ,N2O,3.9,kg/TJ,44308.902456,kg -80ac7d7e-59a5-3f0c-8349-136888053096,SESCO,II.1.1,Capital Federal,AR-C,annual,2011,gas oil combustion consumption by public passenger transport,2923.011,TJ,CO2,74100.0,kg/TJ,216595115.1,kg -df2ae4b8-cfed-33cc-af2b-0d91f43326ac,SESCO,II.1.1,Capital Federal,AR-C,annual,2011,gas oil combustion consumption by public passenger transport,2923.011,TJ,CH4,3.9,kg/TJ,11399.7429,kg -df2ae4b8-cfed-33cc-af2b-0d91f43326ac,SESCO,II.1.1,Capital Federal,AR-C,annual,2011,gas oil combustion consumption by public passenger transport,2923.011,TJ,N2O,3.9,kg/TJ,11399.7429,kg -2f22b2e1-22ef-35cf-a99c-dc3d1a0a249f,SESCO,II.1.1,Catamarca,AR-K,annual,2011,gas oil combustion consumption by public passenger transport,169.87236,TJ,CO2,74100.0,kg/TJ,12587541.875999998,kg -f8e7e788-d90f-301c-b7d2-fedcab68ff09,SESCO,II.1.1,Catamarca,AR-K,annual,2011,gas oil combustion consumption by public passenger transport,169.87236,TJ,CH4,3.9,kg/TJ,662.5022039999999,kg -f8e7e788-d90f-301c-b7d2-fedcab68ff09,SESCO,II.1.1,Catamarca,AR-K,annual,2011,gas oil combustion consumption by public passenger transport,169.87236,TJ,N2O,3.9,kg/TJ,662.5022039999999,kg -4d059f8c-cc2d-3478-a328-102f0e03ddf5,SESCO,II.1.1,Chaco,AR-H,annual,2011,gas oil combustion consumption by public passenger transport,504.19908,TJ,CO2,74100.0,kg/TJ,37361151.828,kg -b31ada9c-c0f0-36da-8d22-36e7d45a19bd,SESCO,II.1.1,Chaco,AR-H,annual,2011,gas oil combustion consumption by public passenger transport,504.19908,TJ,CH4,3.9,kg/TJ,1966.3764119999998,kg -b31ada9c-c0f0-36da-8d22-36e7d45a19bd,SESCO,II.1.1,Chaco,AR-H,annual,2011,gas oil combustion consumption by public passenger transport,504.19908,TJ,N2O,3.9,kg/TJ,1966.3764119999998,kg -6227ec8f-666d-336f-8b6d-bf2215a75406,SESCO,II.1.1,Chubut,AR-U,annual,2011,gas oil combustion consumption by public passenger transport,176.59068,TJ,CO2,74100.0,kg/TJ,13085369.388,kg -d5735e30-2076-390d-9b47-f9970a58936d,SESCO,II.1.1,Chubut,AR-U,annual,2011,gas oil combustion consumption by public passenger transport,176.59068,TJ,CH4,3.9,kg/TJ,688.7036519999999,kg -d5735e30-2076-390d-9b47-f9970a58936d,SESCO,II.1.1,Chubut,AR-U,annual,2011,gas oil combustion consumption by public passenger transport,176.59068,TJ,N2O,3.9,kg/TJ,688.7036519999999,kg -6736d244-efe3-3269-9115-1c65b381d645,SESCO,II.1.1,Corrientes,AR-W,annual,2011,gas oil combustion consumption by public passenger transport,483.71904,TJ,CO2,74100.0,kg/TJ,35843580.864,kg -bd39c8b6-78c1-3aab-a80d-59776451cae7,SESCO,II.1.1,Corrientes,AR-W,annual,2011,gas oil combustion consumption by public passenger transport,483.71904,TJ,CH4,3.9,kg/TJ,1886.504256,kg -bd39c8b6-78c1-3aab-a80d-59776451cae7,SESCO,II.1.1,Corrientes,AR-W,annual,2011,gas oil combustion consumption by public passenger transport,483.71904,TJ,N2O,3.9,kg/TJ,1886.504256,kg -e1982034-b344-3229-907d-74cb8d2db195,SESCO,II.1.1,Córdoba,AR-X,annual,2011,gas oil combustion consumption by public passenger transport,2434.34352,TJ,CO2,74100.0,kg/TJ,180384854.832,kg -d0d488c1-98f0-3b34-8ff0-9a6476d0a0bc,SESCO,II.1.1,Córdoba,AR-X,annual,2011,gas oil combustion consumption by public passenger transport,2434.34352,TJ,CH4,3.9,kg/TJ,9493.939728,kg -d0d488c1-98f0-3b34-8ff0-9a6476d0a0bc,SESCO,II.1.1,Córdoba,AR-X,annual,2011,gas oil combustion consumption by public passenger transport,2434.34352,TJ,N2O,3.9,kg/TJ,9493.939728,kg -286022d7-72b3-31d5-b08e-b3cb269f78e8,SESCO,II.1.1,Entre Rios,AR-E,annual,2011,gas oil combustion consumption by public passenger transport,419.20871999999997,TJ,CO2,74100.0,kg/TJ,31063366.152,kg -05db1d2d-0610-3f9e-ba83-dc6c3716c4fc,SESCO,II.1.1,Entre Rios,AR-E,annual,2011,gas oil combustion consumption by public passenger transport,419.20871999999997,TJ,CH4,3.9,kg/TJ,1634.9140079999997,kg -05db1d2d-0610-3f9e-ba83-dc6c3716c4fc,SESCO,II.1.1,Entre Rios,AR-E,annual,2011,gas oil combustion consumption by public passenger transport,419.20871999999997,TJ,N2O,3.9,kg/TJ,1634.9140079999997,kg -f402b1d1-5d29-38dc-935b-43d3c88745af,SESCO,II.1.1,Formosa,AR-P,annual,2011,gas oil combustion consumption by public passenger transport,50.06232,TJ,CO2,74100.0,kg/TJ,3709617.912,kg -dcfcd39f-ddfd-3441-9506-7bca40e8abdd,SESCO,II.1.1,Formosa,AR-P,annual,2011,gas oil combustion consumption by public passenger transport,50.06232,TJ,CH4,3.9,kg/TJ,195.243048,kg -dcfcd39f-ddfd-3441-9506-7bca40e8abdd,SESCO,II.1.1,Formosa,AR-P,annual,2011,gas oil combustion consumption by public passenger transport,50.06232,TJ,N2O,3.9,kg/TJ,195.243048,kg -a05a82a8-523b-3991-a005-4b9cad4b3deb,SESCO,II.1.1,Jujuy,AR-Y,annual,2011,gas oil combustion consumption by public passenger transport,516.6966,TJ,CO2,74100.0,kg/TJ,38287218.06,kg -d1459bde-9e14-3df5-b499-b4a3652f6019,SESCO,II.1.1,Jujuy,AR-Y,annual,2011,gas oil combustion consumption by public passenger transport,516.6966,TJ,CH4,3.9,kg/TJ,2015.11674,kg -d1459bde-9e14-3df5-b499-b4a3652f6019,SESCO,II.1.1,Jujuy,AR-Y,annual,2011,gas oil combustion consumption by public passenger transport,516.6966,TJ,N2O,3.9,kg/TJ,2015.11674,kg -3b8a749c-8f7a-347b-a57f-9acf8619de4d,SESCO,II.1.1,La Pampa,AR-L,annual,2011,gas oil combustion consumption by public passenger transport,14.33964,TJ,CO2,74100.0,kg/TJ,1062567.324,kg -59198d0b-9225-3c6f-b255-662b5b1aa671,SESCO,II.1.1,La Pampa,AR-L,annual,2011,gas oil combustion consumption by public passenger transport,14.33964,TJ,CH4,3.9,kg/TJ,55.924595999999994,kg -59198d0b-9225-3c6f-b255-662b5b1aa671,SESCO,II.1.1,La Pampa,AR-L,annual,2011,gas oil combustion consumption by public passenger transport,14.33964,TJ,N2O,3.9,kg/TJ,55.924595999999994,kg -2ad4fcee-aaed-3625-8300-6cb4592bee56,SESCO,II.1.1,La Rioja,AR-F,annual,2011,gas oil combustion consumption by public passenger transport,115.43952,TJ,CO2,74100.0,kg/TJ,8554068.432,kg -08dd3cef-3e26-3ee9-bd83-66c7e71367c2,SESCO,II.1.1,La Rioja,AR-F,annual,2011,gas oil combustion consumption by public passenger transport,115.43952,TJ,CH4,3.9,kg/TJ,450.214128,kg -08dd3cef-3e26-3ee9-bd83-66c7e71367c2,SESCO,II.1.1,La Rioja,AR-F,annual,2011,gas oil combustion consumption by public passenger transport,115.43952,TJ,N2O,3.9,kg/TJ,450.214128,kg -9d808706-9173-3312-8396-6ae236c54488,SESCO,II.1.1,Mendoza,AR-M,annual,2011,gas oil combustion consumption by public passenger transport,1557.8555999999999,TJ,CO2,74100.0,kg/TJ,115437099.96,kg -b827a316-b747-3e08-9e9c-18f0aae350e6,SESCO,II.1.1,Mendoza,AR-M,annual,2011,gas oil combustion consumption by public passenger transport,1557.8555999999999,TJ,CH4,3.9,kg/TJ,6075.636839999999,kg -b827a316-b747-3e08-9e9c-18f0aae350e6,SESCO,II.1.1,Mendoza,AR-M,annual,2011,gas oil combustion consumption by public passenger transport,1557.8555999999999,TJ,N2O,3.9,kg/TJ,6075.636839999999,kg -fccc423d-6fb0-3b64-852a-cce9afe3f529,SESCO,II.1.1,Misiones,AR-N,annual,2011,gas oil combustion consumption by public passenger transport,814.90332,TJ,CO2,74100.0,kg/TJ,60384336.012,kg -e5223648-b8a6-33ce-bf27-4a43e78c98fc,SESCO,II.1.1,Misiones,AR-N,annual,2011,gas oil combustion consumption by public passenger transport,814.90332,TJ,CH4,3.9,kg/TJ,3178.122948,kg -e5223648-b8a6-33ce-bf27-4a43e78c98fc,SESCO,II.1.1,Misiones,AR-N,annual,2011,gas oil combustion consumption by public passenger transport,814.90332,TJ,N2O,3.9,kg/TJ,3178.122948,kg -93ff211d-ca75-3720-bdb0-03176c4c83be,SESCO,II.1.1,Neuquén,AR-Q,annual,2011,gas oil combustion consumption by public passenger transport,229.75932,TJ,CO2,74100.0,kg/TJ,17025165.612,kg -2d344fd0-674e-3a36-a255-16b9df88a2b3,SESCO,II.1.1,Neuquén,AR-Q,annual,2011,gas oil combustion consumption by public passenger transport,229.75932,TJ,CH4,3.9,kg/TJ,896.061348,kg -2d344fd0-674e-3a36-a255-16b9df88a2b3,SESCO,II.1.1,Neuquén,AR-Q,annual,2011,gas oil combustion consumption by public passenger transport,229.75932,TJ,N2O,3.9,kg/TJ,896.061348,kg -23beeebf-14b9-384a-938e-f5bd724f587d,SESCO,II.1.1,Rio Negro,AR-R,annual,2011,gas oil combustion consumption by public passenger transport,231.45696,TJ,CO2,74100.0,kg/TJ,17150960.736,kg -8bd17908-7347-362f-92fa-542afb687d1f,SESCO,II.1.1,Rio Negro,AR-R,annual,2011,gas oil combustion consumption by public passenger transport,231.45696,TJ,CH4,3.9,kg/TJ,902.682144,kg -8bd17908-7347-362f-92fa-542afb687d1f,SESCO,II.1.1,Rio Negro,AR-R,annual,2011,gas oil combustion consumption by public passenger transport,231.45696,TJ,N2O,3.9,kg/TJ,902.682144,kg -91812040-29b0-36ff-8e9f-edbe04449898,SESCO,II.1.1,Salta,AR-A,annual,2011,gas oil combustion consumption by public passenger transport,929.76492,TJ,CO2,74100.0,kg/TJ,68895580.572,kg -6cb3e639-52ad-3800-acc2-4b7f50699969,SESCO,II.1.1,Salta,AR-A,annual,2011,gas oil combustion consumption by public passenger transport,929.76492,TJ,CH4,3.9,kg/TJ,3626.0831879999996,kg -6cb3e639-52ad-3800-acc2-4b7f50699969,SESCO,II.1.1,Salta,AR-A,annual,2011,gas oil combustion consumption by public passenger transport,929.76492,TJ,N2O,3.9,kg/TJ,3626.0831879999996,kg -56198d8c-bc39-3cfd-bc38-aef3c6fe8293,SESCO,II.1.1,San Juan,AR-J,annual,2011,gas oil combustion consumption by public passenger transport,474.29172,TJ,CO2,74100.0,kg/TJ,35145016.452,kg -1e992e14-8926-30ca-bc41-a1a8b1a4f13c,SESCO,II.1.1,San Juan,AR-J,annual,2011,gas oil combustion consumption by public passenger transport,474.29172,TJ,CH4,3.9,kg/TJ,1849.7377079999999,kg -1e992e14-8926-30ca-bc41-a1a8b1a4f13c,SESCO,II.1.1,San Juan,AR-J,annual,2011,gas oil combustion consumption by public passenger transport,474.29172,TJ,N2O,3.9,kg/TJ,1849.7377079999999,kg -064b6576-d9a6-3b95-b8c3-37c9bb9ac1dd,SESCO,II.1.1,San Luis,AR-D,annual,2011,gas oil combustion consumption by public passenger transport,103.37544,TJ,CO2,74100.0,kg/TJ,7660120.104,kg -790dc665-17ee-313a-b3bf-4c09b7889dc2,SESCO,II.1.1,San Luis,AR-D,annual,2011,gas oil combustion consumption by public passenger transport,103.37544,TJ,CH4,3.9,kg/TJ,403.16421599999995,kg -790dc665-17ee-313a-b3bf-4c09b7889dc2,SESCO,II.1.1,San Luis,AR-D,annual,2011,gas oil combustion consumption by public passenger transport,103.37544,TJ,N2O,3.9,kg/TJ,403.16421599999995,kg -b8544d2a-8cd8-3b57-8bde-88f403562b0a,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2011,gas oil combustion consumption by public passenger transport,80.367,TJ,CO2,74100.0,kg/TJ,5955194.7,kg -100660db-666a-3610-bfbc-1477924c8625,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2011,gas oil combustion consumption by public passenger transport,80.367,TJ,CH4,3.9,kg/TJ,313.4313,kg -100660db-666a-3610-bfbc-1477924c8625,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2011,gas oil combustion consumption by public passenger transport,80.367,TJ,N2O,3.9,kg/TJ,313.4313,kg -f5227bf6-792f-3c72-b3d7-ca27dd0863a0,SESCO,II.1.1,Santa Fe,AR-S,annual,2011,gas oil combustion consumption by public passenger transport,1399.90284,TJ,CO2,74100.0,kg/TJ,103732800.44399999,kg -f5a310d9-ab33-3849-839a-6e096901ac4a,SESCO,II.1.1,Santa Fe,AR-S,annual,2011,gas oil combustion consumption by public passenger transport,1399.90284,TJ,CH4,3.9,kg/TJ,5459.621075999999,kg -f5a310d9-ab33-3849-839a-6e096901ac4a,SESCO,II.1.1,Santa Fe,AR-S,annual,2011,gas oil combustion consumption by public passenger transport,1399.90284,TJ,N2O,3.9,kg/TJ,5459.621075999999,kg -0156e03e-3780-3508-bbc0-c7dd2d6c6e0e,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2011,gas oil combustion consumption by public passenger transport,364.16184,TJ,CO2,74100.0,kg/TJ,26984392.344,kg -eb44ae64-c122-3e0d-8020-b6d53ff245d9,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2011,gas oil combustion consumption by public passenger transport,364.16184,TJ,CH4,3.9,kg/TJ,1420.231176,kg -eb44ae64-c122-3e0d-8020-b6d53ff245d9,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2011,gas oil combustion consumption by public passenger transport,364.16184,TJ,N2O,3.9,kg/TJ,1420.231176,kg -0526708d-37fa-3304-a932-75d49c1ba877,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2011,gas oil combustion consumption by public passenger transport,17.987759999999998,TJ,CO2,74100.0,kg/TJ,1332893.0159999998,kg -a32d0e72-4134-343d-90ac-db43cd7aa747,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2011,gas oil combustion consumption by public passenger transport,17.987759999999998,TJ,CH4,3.9,kg/TJ,70.15226399999999,kg -a32d0e72-4134-343d-90ac-db43cd7aa747,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2011,gas oil combustion consumption by public passenger transport,17.987759999999998,TJ,N2O,3.9,kg/TJ,70.15226399999999,kg -99bf8494-73ba-3ebb-b605-9885209ff768,SESCO,II.1.1,Tucuman,AR-T,annual,2011,gas oil combustion consumption by public passenger transport,1098.55368,TJ,CO2,74100.0,kg/TJ,81402827.688,kg -4c33477b-7f98-3e2d-8a9f-28b884137176,SESCO,II.1.1,Tucuman,AR-T,annual,2011,gas oil combustion consumption by public passenger transport,1098.55368,TJ,CH4,3.9,kg/TJ,4284.3593519999995,kg -4c33477b-7f98-3e2d-8a9f-28b884137176,SESCO,II.1.1,Tucuman,AR-T,annual,2011,gas oil combustion consumption by public passenger transport,1098.55368,TJ,N2O,3.9,kg/TJ,4284.3593519999995,kg -84e0bbcf-ed29-315f-a85e-2187553b0672,SESCO,II.5.1,Buenos Aires,AR-B,annual,2012,gas oil combustion consumption by agriculture machines,0.65016,TJ,CO2,74100.0,kg/TJ,48176.856,kg -f44555ee-7e37-32ed-9acd-3edc0dac4830,SESCO,II.5.1,Buenos Aires,AR-B,annual,2012,gas oil combustion consumption by agriculture machines,0.65016,TJ,CH4,3.9,kg/TJ,2.535624,kg -f44555ee-7e37-32ed-9acd-3edc0dac4830,SESCO,II.5.1,Buenos Aires,AR-B,annual,2012,gas oil combustion consumption by agriculture machines,0.65016,TJ,N2O,3.9,kg/TJ,2.535624,kg -ec772ab6-b665-3635-b61f-6e30883d8ce8,SESCO,II.5.1,Santa Fe,AR-S,annual,2012,gas oil combustion consumption by agriculture machines,0.68628,TJ,CO2,74100.0,kg/TJ,50853.348,kg -1baa35d5-422d-3f0c-8898-e96487689493,SESCO,II.5.1,Santa Fe,AR-S,annual,2012,gas oil combustion consumption by agriculture machines,0.68628,TJ,CH4,3.9,kg/TJ,2.676492,kg -1baa35d5-422d-3f0c-8898-e96487689493,SESCO,II.5.1,Santa Fe,AR-S,annual,2012,gas oil combustion consumption by agriculture machines,0.68628,TJ,N2O,3.9,kg/TJ,2.676492,kg -087f4d69-6aea-3ac0-9203-17fe797695bb,SESCO,II.1.1,Capital Federal,AR-C,annual,2012,gas oil combustion consumption by freight transport,0.5418,TJ,CO2,74100.0,kg/TJ,40147.38,kg -c2451603-da4a-396a-a18e-a8408c6f6210,SESCO,II.1.1,Capital Federal,AR-C,annual,2012,gas oil combustion consumption by freight transport,0.5418,TJ,CH4,3.9,kg/TJ,2.1130199999999997,kg -c2451603-da4a-396a-a18e-a8408c6f6210,SESCO,II.1.1,Capital Federal,AR-C,annual,2012,gas oil combustion consumption by freight transport,0.5418,TJ,N2O,3.9,kg/TJ,2.1130199999999997,kg -a028fc3e-2a8e-3fd6-8c7a-5f48d4131508,SESCO,II.5.1,Buenos Aires,AR-B,annual,2012,gas oil combustion consumption by agriculture machines,266.45724,TJ,CO2,74100.0,kg/TJ,19744481.484,kg -31cf76e4-e095-3251-b884-b2573e85abbe,SESCO,II.5.1,Buenos Aires,AR-B,annual,2012,gas oil combustion consumption by agriculture machines,266.45724,TJ,CH4,3.9,kg/TJ,1039.183236,kg -31cf76e4-e095-3251-b884-b2573e85abbe,SESCO,II.5.1,Buenos Aires,AR-B,annual,2012,gas oil combustion consumption by agriculture machines,266.45724,TJ,N2O,3.9,kg/TJ,1039.183236,kg -c5bbf2e8-adc6-38b8-bc72-08ec49fd976b,SESCO,II.1.1,Capital Federal,AR-C,annual,2012,gas oil combustion consumption by to the public,48.25632,TJ,CO2,74100.0,kg/TJ,3575793.3120000004,kg -1f45bced-95ec-3e42-bca6-85ab2e873e87,SESCO,II.1.1,Capital Federal,AR-C,annual,2012,gas oil combustion consumption by to the public,48.25632,TJ,CH4,3.9,kg/TJ,188.199648,kg -1f45bced-95ec-3e42-bca6-85ab2e873e87,SESCO,II.1.1,Capital Federal,AR-C,annual,2012,gas oil combustion consumption by to the public,48.25632,TJ,N2O,3.9,kg/TJ,188.199648,kg -278d7616-1c11-39fb-9f8d-fe0ee662eb78,SESCO,II.1.1,Buenos Aires,AR-B,annual,2012,gas oil combustion consumption by public passenger transport,256.05468,TJ,CO2,74100.0,kg/TJ,18973651.788000003,kg -384719d7-1816-30ff-9936-45305579a303,SESCO,II.1.1,Buenos Aires,AR-B,annual,2012,gas oil combustion consumption by public passenger transport,256.05468,TJ,CH4,3.9,kg/TJ,998.6132520000001,kg -384719d7-1816-30ff-9936-45305579a303,SESCO,II.1.1,Buenos Aires,AR-B,annual,2012,gas oil combustion consumption by public passenger transport,256.05468,TJ,N2O,3.9,kg/TJ,998.6132520000001,kg -77411db6-e928-3b48-8915-6ee287d8a008,SESCO,II.1.1,Capital Federal,AR-C,annual,2012,gas oil combustion consumption by public passenger transport,105.50652,TJ,CO2,74100.0,kg/TJ,7818033.131999999,kg -afa40f11-2773-39ea-a108-29f598acd34b,SESCO,II.1.1,Capital Federal,AR-C,annual,2012,gas oil combustion consumption by public passenger transport,105.50652,TJ,CH4,3.9,kg/TJ,411.47542799999997,kg -afa40f11-2773-39ea-a108-29f598acd34b,SESCO,II.1.1,Capital Federal,AR-C,annual,2012,gas oil combustion consumption by public passenger transport,105.50652,TJ,N2O,3.9,kg/TJ,411.47542799999997,kg -c9d82f0b-d6cc-3b27-8c88-0d77800d01c3,SESCO,II.1.1,Córdoba,AR-X,annual,2012,gas oil combustion consumption by public passenger transport,8.81328,TJ,CO2,74100.0,kg/TJ,653064.0480000001,kg -b98ce312-fa63-3348-9479-7cb29bcadb96,SESCO,II.1.1,Córdoba,AR-X,annual,2012,gas oil combustion consumption by public passenger transport,8.81328,TJ,CH4,3.9,kg/TJ,34.371792,kg -b98ce312-fa63-3348-9479-7cb29bcadb96,SESCO,II.1.1,Córdoba,AR-X,annual,2012,gas oil combustion consumption by public passenger transport,8.81328,TJ,N2O,3.9,kg/TJ,34.371792,kg -0488adce-f4a5-3755-b197-f1d95bcaec2d,SESCO,II.1.1,Entre Rios,AR-E,annual,2012,gas oil combustion consumption by public passenger transport,42.838319999999996,TJ,CO2,74100.0,kg/TJ,3174319.5119999996,kg -97cfd320-e325-3894-89a1-283d91f450df,SESCO,II.1.1,Entre Rios,AR-E,annual,2012,gas oil combustion consumption by public passenger transport,42.838319999999996,TJ,CH4,3.9,kg/TJ,167.069448,kg -97cfd320-e325-3894-89a1-283d91f450df,SESCO,II.1.1,Entre Rios,AR-E,annual,2012,gas oil combustion consumption by public passenger transport,42.838319999999996,TJ,N2O,3.9,kg/TJ,167.069448,kg -1b9c7390-9565-3f00-b58f-e62bb6f6df9a,SESCO,II.1.1,Mendoza,AR-M,annual,2012,gas oil combustion consumption by public passenger transport,16.7958,TJ,CO2,74100.0,kg/TJ,1244568.78,kg -88971981-8806-3092-bfce-910a162f2cbd,SESCO,II.1.1,Mendoza,AR-M,annual,2012,gas oil combustion consumption by public passenger transport,16.7958,TJ,CH4,3.9,kg/TJ,65.50362,kg -88971981-8806-3092-bfce-910a162f2cbd,SESCO,II.1.1,Mendoza,AR-M,annual,2012,gas oil combustion consumption by public passenger transport,16.7958,TJ,N2O,3.9,kg/TJ,65.50362,kg -9ad1be9c-5dc7-3dcd-8d19-4bdcbbcd41f3,SESCO,II.1.1,Misiones,AR-N,annual,2012,gas oil combustion consumption by public passenger transport,21.45528,TJ,CO2,74100.0,kg/TJ,1589836.248,kg -fb755524-196a-3468-a419-7bcc8cfcab22,SESCO,II.1.1,Misiones,AR-N,annual,2012,gas oil combustion consumption by public passenger transport,21.45528,TJ,CH4,3.9,kg/TJ,83.675592,kg -fb755524-196a-3468-a419-7bcc8cfcab22,SESCO,II.1.1,Misiones,AR-N,annual,2012,gas oil combustion consumption by public passenger transport,21.45528,TJ,N2O,3.9,kg/TJ,83.675592,kg -2256f562-811a-3c2b-9b3e-dc6ae64ef779,SESCO,II.1.1,Salta,AR-A,annual,2012,gas oil combustion consumption by public passenger transport,6.57384,TJ,CO2,74100.0,kg/TJ,487121.544,kg -1564c4e0-1fc7-3be1-920a-8934934f313c,SESCO,II.1.1,Salta,AR-A,annual,2012,gas oil combustion consumption by public passenger transport,6.57384,TJ,CH4,3.9,kg/TJ,25.637976,kg -1564c4e0-1fc7-3be1-920a-8934934f313c,SESCO,II.1.1,Salta,AR-A,annual,2012,gas oil combustion consumption by public passenger transport,6.57384,TJ,N2O,3.9,kg/TJ,25.637976,kg -e85be9ba-bb45-3c67-90e7-67d6b0db75e2,SESCO,II.1.1,San Juan,AR-J,annual,2012,gas oil combustion consumption by public passenger transport,8.127,TJ,CO2,74100.0,kg/TJ,602210.7000000001,kg -ab283a4a-5451-3a9a-9dec-0bde2adc4b99,SESCO,II.1.1,San Juan,AR-J,annual,2012,gas oil combustion consumption by public passenger transport,8.127,TJ,CH4,3.9,kg/TJ,31.695300000000003,kg -ab283a4a-5451-3a9a-9dec-0bde2adc4b99,SESCO,II.1.1,San Juan,AR-J,annual,2012,gas oil combustion consumption by public passenger transport,8.127,TJ,N2O,3.9,kg/TJ,31.695300000000003,kg -dd6a1999-da8d-3de9-89a9-ee8a0c7e60a2,SESCO,II.1.1,Santa Fe,AR-S,annual,2012,gas oil combustion consumption by public passenger transport,24.45324,TJ,CO2,74100.0,kg/TJ,1811985.084,kg -e50c3643-3dd7-3cae-b1c3-2a9b5ad8dd2f,SESCO,II.1.1,Santa Fe,AR-S,annual,2012,gas oil combustion consumption by public passenger transport,24.45324,TJ,CH4,3.9,kg/TJ,95.367636,kg -e50c3643-3dd7-3cae-b1c3-2a9b5ad8dd2f,SESCO,II.1.1,Santa Fe,AR-S,annual,2012,gas oil combustion consumption by public passenger transport,24.45324,TJ,N2O,3.9,kg/TJ,95.367636,kg -49990c35-5374-30ca-98a1-f61796c7f25b,SESCO,II.5.1,Buenos Aires,AR-B,annual,2012,gasoline combustion consumption by agriculture machines,199.1728,TJ,CO2,69300.0,kg/TJ,13802675.04,kg -d7dd125f-79ee-3214-a623-6829b382ab45,SESCO,II.5.1,Buenos Aires,AR-B,annual,2012,gasoline combustion consumption by agriculture machines,199.1728,TJ,CH4,33.0,kg/TJ,6572.7024,kg -24d18294-c897-36bd-baab-331833d7bac6,SESCO,II.5.1,Buenos Aires,AR-B,annual,2012,gasoline combustion consumption by agriculture machines,199.1728,TJ,N2O,3.2,kg/TJ,637.35296,kg -7ae424fa-8e3b-39bb-80e9-3c021e892046,SESCO,II.5.1,Córdoba,AR-X,annual,2012,gasoline combustion consumption by agriculture machines,88.6,TJ,CO2,69300.0,kg/TJ,6139980.0,kg -1395dce2-9e5d-349c-9c55-4acdac56240f,SESCO,II.5.1,Córdoba,AR-X,annual,2012,gasoline combustion consumption by agriculture machines,88.6,TJ,CH4,33.0,kg/TJ,2923.7999999999997,kg -d74c6134-6f41-365b-83e1-89bf659912fe,SESCO,II.5.1,Córdoba,AR-X,annual,2012,gasoline combustion consumption by agriculture machines,88.6,TJ,N2O,3.2,kg/TJ,283.52,kg -bd321ca1-d109-3995-a634-7353d4bb1dde,SESCO,II.5.1,Santa Fe,AR-S,annual,2012,gasoline combustion consumption by agriculture machines,259.90189799999996,TJ,CO2,69300.0,kg/TJ,18011201.5314,kg -091e388a-7ddc-3317-b829-b9fb274e24c4,SESCO,II.5.1,Santa Fe,AR-S,annual,2012,gasoline combustion consumption by agriculture machines,259.90189799999996,TJ,CH4,33.0,kg/TJ,8576.762633999999,kg -d65146c3-abef-3e0e-93b5-5067f6ba3260,SESCO,II.5.1,Santa Fe,AR-S,annual,2012,gasoline combustion consumption by agriculture machines,259.90189799999996,TJ,N2O,3.2,kg/TJ,831.6860735999999,kg -d3036eaa-b718-3d48-992c-a184344566b5,SESCO,II.5.1,Buenos Aires,AR-B,annual,2012,gas oil combustion consumption by agriculture machines,79.370088,TJ,CO2,74100.0,kg/TJ,5881323.5208,kg -89db2a94-48d1-3e0d-b0b2-1ad53ae511c8,SESCO,II.5.1,Buenos Aires,AR-B,annual,2012,gas oil combustion consumption by agriculture machines,79.370088,TJ,CH4,3.9,kg/TJ,309.5433432,kg -89db2a94-48d1-3e0d-b0b2-1ad53ae511c8,SESCO,II.5.1,Buenos Aires,AR-B,annual,2012,gas oil combustion consumption by agriculture machines,79.370088,TJ,N2O,3.9,kg/TJ,309.5433432,kg -750bfdf1-68ee-3137-a5b7-b18d13ba1cd9,SESCO,II.5.1,Capital Federal,AR-C,annual,2012,gas oil combustion consumption by agriculture machines,7.224,TJ,CO2,74100.0,kg/TJ,535298.4,kg -136f548c-166a-3c35-9840-072301f80434,SESCO,II.5.1,Capital Federal,AR-C,annual,2012,gas oil combustion consumption by agriculture machines,7.224,TJ,CH4,3.9,kg/TJ,28.1736,kg -136f548c-166a-3c35-9840-072301f80434,SESCO,II.5.1,Capital Federal,AR-C,annual,2012,gas oil combustion consumption by agriculture machines,7.224,TJ,N2O,3.9,kg/TJ,28.1736,kg -ddc2ae4e-78d0-302d-a9a3-6300b1c2ed6d,SESCO,II.5.1,Chaco,AR-H,annual,2012,gas oil combustion consumption by agriculture machines,77.0461272,TJ,CO2,74100.0,kg/TJ,5709118.02552,kg -a6efbddd-601a-39a3-b9ed-24b447773814,SESCO,II.5.1,Chaco,AR-H,annual,2012,gas oil combustion consumption by agriculture machines,77.0461272,TJ,CH4,3.9,kg/TJ,300.47989608,kg -a6efbddd-601a-39a3-b9ed-24b447773814,SESCO,II.5.1,Chaco,AR-H,annual,2012,gas oil combustion consumption by agriculture machines,77.0461272,TJ,N2O,3.9,kg/TJ,300.47989608,kg -b57835cc-a972-3ea3-80b8-77e7c3b47f81,SESCO,II.5.1,Córdoba,AR-X,annual,2012,gas oil combustion consumption by agriculture machines,36.560664,TJ,CO2,74100.0,kg/TJ,2709145.2024000003,kg -3276e06f-7cfd-3c6a-a0c3-a734da0642ee,SESCO,II.5.1,Córdoba,AR-X,annual,2012,gas oil combustion consumption by agriculture machines,36.560664,TJ,CH4,3.9,kg/TJ,142.5865896,kg -3276e06f-7cfd-3c6a-a0c3-a734da0642ee,SESCO,II.5.1,Córdoba,AR-X,annual,2012,gas oil combustion consumption by agriculture machines,36.560664,TJ,N2O,3.9,kg/TJ,142.5865896,kg -5a9ff3f6-636b-32fb-b70f-02ddffcebb71,SESCO,II.5.1,La Pampa,AR-L,annual,2012,gas oil combustion consumption by agriculture machines,22.86396,TJ,CO2,74100.0,kg/TJ,1694219.436,kg -9543368e-645b-3626-bb10-0f0eae63e27d,SESCO,II.5.1,La Pampa,AR-L,annual,2012,gas oil combustion consumption by agriculture machines,22.86396,TJ,CH4,3.9,kg/TJ,89.169444,kg -9543368e-645b-3626-bb10-0f0eae63e27d,SESCO,II.5.1,La Pampa,AR-L,annual,2012,gas oil combustion consumption by agriculture machines,22.86396,TJ,N2O,3.9,kg/TJ,89.169444,kg -0fc1d836-f315-383c-bf28-d22e6ce2c419,SESCO,II.5.1,Mendoza,AR-M,annual,2012,gas oil combustion consumption by agriculture machines,1.15584,TJ,CO2,74100.0,kg/TJ,85647.74399999999,kg -3f039bd9-a42c-3251-8853-84e0a05af018,SESCO,II.5.1,Mendoza,AR-M,annual,2012,gas oil combustion consumption by agriculture machines,1.15584,TJ,CH4,3.9,kg/TJ,4.507776,kg -3f039bd9-a42c-3251-8853-84e0a05af018,SESCO,II.5.1,Mendoza,AR-M,annual,2012,gas oil combustion consumption by agriculture machines,1.15584,TJ,N2O,3.9,kg/TJ,4.507776,kg -d5dbdd10-24c3-36f1-8d6a-25d27630ad8e,SESCO,II.5.1,Rio Negro,AR-R,annual,2012,gas oil combustion consumption by agriculture machines,16.976399999999998,TJ,CO2,74100.0,kg/TJ,1257951.2399999998,kg -3edd096c-3ca2-35d9-b842-f9a1dbb85fdd,SESCO,II.5.1,Rio Negro,AR-R,annual,2012,gas oil combustion consumption by agriculture machines,16.976399999999998,TJ,CH4,3.9,kg/TJ,66.20795999999999,kg -3edd096c-3ca2-35d9-b842-f9a1dbb85fdd,SESCO,II.5.1,Rio Negro,AR-R,annual,2012,gas oil combustion consumption by agriculture machines,16.976399999999998,TJ,N2O,3.9,kg/TJ,66.20795999999999,kg -9ee29d39-1001-3aae-be5a-9be9fe5682e3,SESCO,II.5.1,Santa Fe,AR-S,annual,2012,gas oil combustion consumption by agriculture machines,363.3101304,TJ,CO2,74100.0,kg/TJ,26921280.662639998,kg -6b6e3422-f2d9-36b0-bc60-f5aeabd61bec,SESCO,II.5.1,Santa Fe,AR-S,annual,2012,gas oil combustion consumption by agriculture machines,363.3101304,TJ,CH4,3.9,kg/TJ,1416.90950856,kg -6b6e3422-f2d9-36b0-bc60-f5aeabd61bec,SESCO,II.5.1,Santa Fe,AR-S,annual,2012,gas oil combustion consumption by agriculture machines,363.3101304,TJ,N2O,3.9,kg/TJ,1416.90950856,kg -2444934d-4b6f-383b-bd94-7ae2d575a28d,SESCO,II.1.1,Buenos Aires,AR-B,annual,2012,gas oil combustion consumption by to the public,13210.06687938,TJ,CO2,74100.0,kg/TJ,978865955.762058,kg -930b4397-53a9-3047-ba97-b9971c53847b,SESCO,II.1.1,Buenos Aires,AR-B,annual,2012,gas oil combustion consumption by to the public,13210.06687938,TJ,CH4,3.9,kg/TJ,51519.260829581995,kg -930b4397-53a9-3047-ba97-b9971c53847b,SESCO,II.1.1,Buenos Aires,AR-B,annual,2012,gas oil combustion consumption by to the public,13210.06687938,TJ,N2O,3.9,kg/TJ,51519.260829581995,kg -b78ca80f-35f5-3d1e-87f2-33fd0c43d1f2,SESCO,II.1.1,Capital Federal,AR-C,annual,2012,gas oil combustion consumption by to the public,2135.27454336,TJ,CO2,74100.0,kg/TJ,158223843.662976,kg -4e1cef32-e5d8-35cc-acf5-e034a9dffd9e,SESCO,II.1.1,Capital Federal,AR-C,annual,2012,gas oil combustion consumption by to the public,2135.27454336,TJ,CH4,3.9,kg/TJ,8327.570719103998,kg -4e1cef32-e5d8-35cc-acf5-e034a9dffd9e,SESCO,II.1.1,Capital Federal,AR-C,annual,2012,gas oil combustion consumption by to the public,2135.27454336,TJ,N2O,3.9,kg/TJ,8327.570719103998,kg -09feee88-ddfe-3baf-b3e6-07025f65006c,SESCO,II.1.1,Catamarca,AR-K,annual,2012,gas oil combustion consumption by to the public,401.498278524,TJ,CO2,74100.0,kg/TJ,29751022.4386284,kg -9d742038-192d-3201-8ad0-fd2d85f5032e,SESCO,II.1.1,Catamarca,AR-K,annual,2012,gas oil combustion consumption by to the public,401.498278524,TJ,CH4,3.9,kg/TJ,1565.8432862436,kg -9d742038-192d-3201-8ad0-fd2d85f5032e,SESCO,II.1.1,Catamarca,AR-K,annual,2012,gas oil combustion consumption by to the public,401.498278524,TJ,N2O,3.9,kg/TJ,1565.8432862436,kg -27567b2a-99eb-3f1f-8663-d709a3b77b97,SESCO,II.1.1,Chaco,AR-H,annual,2012,gas oil combustion consumption by to the public,595.5562365479999,TJ,CO2,74100.0,kg/TJ,44130717.12820679,kg -c9ebbc9e-d39a-38e1-ac46-fa64250ae0e6,SESCO,II.1.1,Chaco,AR-H,annual,2012,gas oil combustion consumption by to the public,595.5562365479999,TJ,CH4,3.9,kg/TJ,2322.6693225371996,kg -c9ebbc9e-d39a-38e1-ac46-fa64250ae0e6,SESCO,II.1.1,Chaco,AR-H,annual,2012,gas oil combustion consumption by to the public,595.5562365479999,TJ,N2O,3.9,kg/TJ,2322.6693225371996,kg -1713add5-9a96-355a-8ced-70d7699589fe,SESCO,II.1.1,Chubut,AR-U,annual,2012,gas oil combustion consumption by to the public,542.257015524,TJ,CO2,74100.0,kg/TJ,40181244.8503284,kg -e9821f9a-542d-37fc-8c5d-e34820bd2e1c,SESCO,II.1.1,Chubut,AR-U,annual,2012,gas oil combustion consumption by to the public,542.257015524,TJ,CH4,3.9,kg/TJ,2114.8023605436,kg -e9821f9a-542d-37fc-8c5d-e34820bd2e1c,SESCO,II.1.1,Chubut,AR-U,annual,2012,gas oil combustion consumption by to the public,542.257015524,TJ,N2O,3.9,kg/TJ,2114.8023605436,kg -04a2399d-2e8a-3493-8c00-cae9a0790b1e,SESCO,II.1.1,Corrientes,AR-W,annual,2012,gas oil combustion consumption by to the public,405.23672741999997,TJ,CO2,74100.0,kg/TJ,30028041.501822,kg -447aca6d-e114-3c11-aef8-3b09fa9ab90e,SESCO,II.1.1,Corrientes,AR-W,annual,2012,gas oil combustion consumption by to the public,405.23672741999997,TJ,CH4,3.9,kg/TJ,1580.4232369379997,kg -447aca6d-e114-3c11-aef8-3b09fa9ab90e,SESCO,II.1.1,Corrientes,AR-W,annual,2012,gas oil combustion consumption by to the public,405.23672741999997,TJ,N2O,3.9,kg/TJ,1580.4232369379997,kg -ddc3e093-4fde-3f4b-a4cd-cd82b55e0ee0,SESCO,II.1.1,Córdoba,AR-X,annual,2012,gas oil combustion consumption by to the public,6212.244941112,TJ,CO2,74100.0,kg/TJ,460327350.13639915,kg -fcd081d6-3b5c-3e17-8de0-f62d3d930ac8,SESCO,II.1.1,Córdoba,AR-X,annual,2012,gas oil combustion consumption by to the public,6212.244941112,TJ,CH4,3.9,kg/TJ,24227.7552703368,kg -fcd081d6-3b5c-3e17-8de0-f62d3d930ac8,SESCO,II.1.1,Córdoba,AR-X,annual,2012,gas oil combustion consumption by to the public,6212.244941112,TJ,N2O,3.9,kg/TJ,24227.7552703368,kg -2e926331-1d73-3a75-adf8-06f8b085808a,SESCO,II.1.1,Entre Rios,AR-E,annual,2012,gas oil combustion consumption by to the public,1591.620803556,TJ,CO2,74100.0,kg/TJ,117939101.5434996,kg -bf2ad7ea-9f87-3984-bef5-cfdf70d81f89,SESCO,II.1.1,Entre Rios,AR-E,annual,2012,gas oil combustion consumption by to the public,1591.620803556,TJ,CH4,3.9,kg/TJ,6207.3211338684005,kg -bf2ad7ea-9f87-3984-bef5-cfdf70d81f89,SESCO,II.1.1,Entre Rios,AR-E,annual,2012,gas oil combustion consumption by to the public,1591.620803556,TJ,N2O,3.9,kg/TJ,6207.3211338684005,kg -ab4fb360-33fd-39ba-98f8-249456afb823,SESCO,II.1.1,Formosa,AR-P,annual,2012,gas oil combustion consumption by to the public,431.64337314,TJ,CO2,74100.0,kg/TJ,31984773.949674,kg -f9fab895-2eb9-380f-acfd-cbe237444437,SESCO,II.1.1,Formosa,AR-P,annual,2012,gas oil combustion consumption by to the public,431.64337314,TJ,CH4,3.9,kg/TJ,1683.409155246,kg -f9fab895-2eb9-380f-acfd-cbe237444437,SESCO,II.1.1,Formosa,AR-P,annual,2012,gas oil combustion consumption by to the public,431.64337314,TJ,N2O,3.9,kg/TJ,1683.409155246,kg -b609051b-5f97-34a9-8e96-89c51d90881b,SESCO,II.1.1,Jujuy,AR-Y,annual,2012,gas oil combustion consumption by to the public,142.00377534,TJ,CO2,74100.0,kg/TJ,10522479.752694,kg -73c47870-5ee7-3e9e-9b1d-d80f952f988e,SESCO,II.1.1,Jujuy,AR-Y,annual,2012,gas oil combustion consumption by to the public,142.00377534,TJ,CH4,3.9,kg/TJ,553.814723826,kg -73c47870-5ee7-3e9e-9b1d-d80f952f988e,SESCO,II.1.1,Jujuy,AR-Y,annual,2012,gas oil combustion consumption by to the public,142.00377534,TJ,N2O,3.9,kg/TJ,553.814723826,kg -cfafc0db-84e6-3abd-bff5-67146afb4354,SESCO,II.1.1,La Pampa,AR-L,annual,2012,gas oil combustion consumption by to the public,504.078840132,TJ,CO2,74100.0,kg/TJ,37352242.0537812,kg -eb4668a0-9fcf-325f-83e1-107814f623e0,SESCO,II.1.1,La Pampa,AR-L,annual,2012,gas oil combustion consumption by to the public,504.078840132,TJ,CH4,3.9,kg/TJ,1965.9074765147998,kg -eb4668a0-9fcf-325f-83e1-107814f623e0,SESCO,II.1.1,La Pampa,AR-L,annual,2012,gas oil combustion consumption by to the public,504.078840132,TJ,N2O,3.9,kg/TJ,1965.9074765147998,kg -85215342-7e41-3568-a29c-561f43d74424,SESCO,II.1.1,La Rioja,AR-F,annual,2012,gas oil combustion consumption by to the public,103.776372,TJ,CO2,74100.0,kg/TJ,7689829.1652,kg -1c022259-8481-3598-9bba-4421b76b462c,SESCO,II.1.1,La Rioja,AR-F,annual,2012,gas oil combustion consumption by to the public,103.776372,TJ,CH4,3.9,kg/TJ,404.7278508,kg -1c022259-8481-3598-9bba-4421b76b462c,SESCO,II.1.1,La Rioja,AR-F,annual,2012,gas oil combustion consumption by to the public,103.776372,TJ,N2O,3.9,kg/TJ,404.7278508,kg -923f0a52-192e-3bb5-92b5-60ccb0626823,SESCO,II.1.1,Mendoza,AR-M,annual,2012,gas oil combustion consumption by to the public,657.832335888,TJ,CO2,74100.0,kg/TJ,48745376.0893008,kg -b2326c6b-bcb1-3363-989c-9f3319c53f34,SESCO,II.1.1,Mendoza,AR-M,annual,2012,gas oil combustion consumption by to the public,657.832335888,TJ,CH4,3.9,kg/TJ,2565.5461099632,kg -b2326c6b-bcb1-3363-989c-9f3319c53f34,SESCO,II.1.1,Mendoza,AR-M,annual,2012,gas oil combustion consumption by to the public,657.832335888,TJ,N2O,3.9,kg/TJ,2565.5461099632,kg -082afaf1-b06f-39b8-8394-b5d96ae33e4d,SESCO,II.1.1,Misiones,AR-N,annual,2012,gas oil combustion consumption by to the public,1107.433135452,TJ,CO2,74100.0,kg/TJ,82060795.3369932,kg -e07c0349-42f4-3abe-991c-9a634517b4d4,SESCO,II.1.1,Misiones,AR-N,annual,2012,gas oil combustion consumption by to the public,1107.433135452,TJ,CH4,3.9,kg/TJ,4318.9892282628,kg -e07c0349-42f4-3abe-991c-9a634517b4d4,SESCO,II.1.1,Misiones,AR-N,annual,2012,gas oil combustion consumption by to the public,1107.433135452,TJ,N2O,3.9,kg/TJ,4318.9892282628,kg -c1b45eeb-d29f-3585-8f75-c4cb3e6c6432,SESCO,II.1.1,Neuquén,AR-Q,annual,2012,gas oil combustion consumption by to the public,233.064755112,TJ,CO2,74100.0,kg/TJ,17270098.3537992,kg -d0aa88cf-5259-34a1-b49e-416b142ec4cf,SESCO,II.1.1,Neuquén,AR-Q,annual,2012,gas oil combustion consumption by to the public,233.064755112,TJ,CH4,3.9,kg/TJ,908.9525449368,kg -d0aa88cf-5259-34a1-b49e-416b142ec4cf,SESCO,II.1.1,Neuquén,AR-Q,annual,2012,gas oil combustion consumption by to the public,233.064755112,TJ,N2O,3.9,kg/TJ,908.9525449368,kg -1985a1ba-00a4-3ead-be3d-dcd1a889ad34,SESCO,II.1.1,Rio Negro,AR-R,annual,2012,gas oil combustion consumption by to the public,784.329206472,TJ,CO2,74100.0,kg/TJ,58118794.1995752,kg -4c699196-1925-3da0-9073-0abdd3684cbf,SESCO,II.1.1,Rio Negro,AR-R,annual,2012,gas oil combustion consumption by to the public,784.329206472,TJ,CH4,3.9,kg/TJ,3058.8839052408,kg -4c699196-1925-3da0-9073-0abdd3684cbf,SESCO,II.1.1,Rio Negro,AR-R,annual,2012,gas oil combustion consumption by to the public,784.329206472,TJ,N2O,3.9,kg/TJ,3058.8839052408,kg -ca6770e2-41ff-3828-a5ba-e5a8c3f986e8,SESCO,II.1.1,Salta,AR-A,annual,2012,gas oil combustion consumption by to the public,79.06191938399999,TJ,CO2,74100.0,kg/TJ,5858488.2263544,kg -825fc915-425a-3d9a-a3b6-119c3b3895fc,SESCO,II.1.1,Salta,AR-A,annual,2012,gas oil combustion consumption by to the public,79.06191938399999,TJ,CH4,3.9,kg/TJ,308.34148559759996,kg -825fc915-425a-3d9a-a3b6-119c3b3895fc,SESCO,II.1.1,Salta,AR-A,annual,2012,gas oil combustion consumption by to the public,79.06191938399999,TJ,N2O,3.9,kg/TJ,308.34148559759996,kg -0a3963a5-c9b1-3ae1-a05f-1094af788f66,SESCO,II.1.1,San Juan,AR-J,annual,2012,gas oil combustion consumption by to the public,595.237289724,TJ,CO2,74100.0,kg/TJ,44107083.1685484,kg -d1e96336-0cee-3dfa-842b-5008d49c3b2a,SESCO,II.1.1,San Juan,AR-J,annual,2012,gas oil combustion consumption by to the public,595.237289724,TJ,CH4,3.9,kg/TJ,2321.4254299236,kg -d1e96336-0cee-3dfa-842b-5008d49c3b2a,SESCO,II.1.1,San Juan,AR-J,annual,2012,gas oil combustion consumption by to the public,595.237289724,TJ,N2O,3.9,kg/TJ,2321.4254299236,kg -29f9f4fd-c64e-36df-9fdc-6de17dfd562a,SESCO,II.1.1,San Luis,AR-D,annual,2012,gas oil combustion consumption by to the public,791.073193344,TJ,CO2,74100.0,kg/TJ,58618523.6267904,kg -dba41c75-c606-3bf9-8360-9a1567975128,SESCO,II.1.1,San Luis,AR-D,annual,2012,gas oil combustion consumption by to the public,791.073193344,TJ,CH4,3.9,kg/TJ,3085.1854540415998,kg -dba41c75-c606-3bf9-8360-9a1567975128,SESCO,II.1.1,San Luis,AR-D,annual,2012,gas oil combustion consumption by to the public,791.073193344,TJ,N2O,3.9,kg/TJ,3085.1854540415998,kg -9a002e8e-810e-39b4-b04a-1e998caec4e7,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2012,gas oil combustion consumption by to the public,404.581864596,TJ,CO2,74100.0,kg/TJ,29979516.1665636,kg -5ea6e7c4-71a0-3e82-917c-98d3723358d3,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2012,gas oil combustion consumption by to the public,404.581864596,TJ,CH4,3.9,kg/TJ,1577.8692719244,kg -5ea6e7c4-71a0-3e82-917c-98d3723358d3,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2012,gas oil combustion consumption by to the public,404.581864596,TJ,N2O,3.9,kg/TJ,1577.8692719244,kg -3b813242-c513-3ac9-ba53-c44aeac3f8b9,SESCO,II.1.1,Santa Fe,AR-S,annual,2012,gas oil combustion consumption by to the public,4750.5540516,TJ,CO2,74100.0,kg/TJ,352016055.22356004,kg -e7460e8a-ecaf-3a36-8a3d-86de236b15fe,SESCO,II.1.1,Santa Fe,AR-S,annual,2012,gas oil combustion consumption by to the public,4750.5540516,TJ,CH4,3.9,kg/TJ,18527.16080124,kg -e7460e8a-ecaf-3a36-8a3d-86de236b15fe,SESCO,II.1.1,Santa Fe,AR-S,annual,2012,gas oil combustion consumption by to the public,4750.5540516,TJ,N2O,3.9,kg/TJ,18527.16080124,kg -3e141cff-b2d8-3ae8-be8f-46c280a567e4,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2012,gas oil combustion consumption by to the public,519.541385916,TJ,CO2,74100.0,kg/TJ,38498016.6963756,kg -01ba0080-f8fd-3476-8e48-133e76e5143f,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2012,gas oil combustion consumption by to the public,519.541385916,TJ,CH4,3.9,kg/TJ,2026.2114050723999,kg -01ba0080-f8fd-3476-8e48-133e76e5143f,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2012,gas oil combustion consumption by to the public,519.541385916,TJ,N2O,3.9,kg/TJ,2026.2114050723999,kg -f4311a32-f120-3b53-b918-6cb7400a66d5,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2012,gas oil combustion consumption by to the public,134.385449688,TJ,CO2,74100.0,kg/TJ,9957961.821880799,kg -61795b22-a141-3e29-9401-b2b623861217,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2012,gas oil combustion consumption by to the public,134.385449688,TJ,CH4,3.9,kg/TJ,524.1032537832,kg -61795b22-a141-3e29-9401-b2b623861217,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2012,gas oil combustion consumption by to the public,134.385449688,TJ,N2O,3.9,kg/TJ,524.1032537832,kg -cef17cb7-5bf3-3186-8a40-c410b4a4a9fe,SESCO,II.1.1,Tucuman,AR-T,annual,2012,gas oil combustion consumption by to the public,174.070771812,TJ,CO2,74100.0,kg/TJ,12898644.1912692,kg -1ad26096-8284-3f92-a041-a02c0ebda900,SESCO,II.1.1,Tucuman,AR-T,annual,2012,gas oil combustion consumption by to the public,174.070771812,TJ,CH4,3.9,kg/TJ,678.8760100668,kg -1ad26096-8284-3f92-a041-a02c0ebda900,SESCO,II.1.1,Tucuman,AR-T,annual,2012,gas oil combustion consumption by to the public,174.070771812,TJ,N2O,3.9,kg/TJ,678.8760100668,kg -f4d67302-8215-3979-8c47-69c277033f1a,SESCO,II.1.1,Buenos Aires,AR-B,annual,2012,gas oil combustion consumption by to the public,1655.081162112,TJ,CO2,74100.0,kg/TJ,122641514.11249919,kg -d30e2f51-1dcf-377e-9e34-5f51fe3e95db,SESCO,II.1.1,Buenos Aires,AR-B,annual,2012,gas oil combustion consumption by to the public,1655.081162112,TJ,CH4,3.9,kg/TJ,6454.8165322367995,kg -d30e2f51-1dcf-377e-9e34-5f51fe3e95db,SESCO,II.1.1,Buenos Aires,AR-B,annual,2012,gas oil combustion consumption by to the public,1655.081162112,TJ,N2O,3.9,kg/TJ,6454.8165322367995,kg -663b7069-f454-3672-a407-93f6dfe4e6e8,SESCO,II.1.1,Capital Federal,AR-C,annual,2012,gas oil combustion consumption by to the public,287.600273436,TJ,CO2,74100.0,kg/TJ,21311180.261607602,kg -1fe56a14-2c82-3e40-bd41-a8551c1389cd,SESCO,II.1.1,Capital Federal,AR-C,annual,2012,gas oil combustion consumption by to the public,287.600273436,TJ,CH4,3.9,kg/TJ,1121.6410664004,kg -1fe56a14-2c82-3e40-bd41-a8551c1389cd,SESCO,II.1.1,Capital Federal,AR-C,annual,2012,gas oil combustion consumption by to the public,287.600273436,TJ,N2O,3.9,kg/TJ,1121.6410664004,kg -4b6a7811-1322-3b14-8db7-ba1ad83f9499,SESCO,II.1.1,Catamarca,AR-K,annual,2012,gas oil combustion consumption by to the public,62.44917193199999,TJ,CO2,74100.0,kg/TJ,4627483.6401611995,kg -aa0046c9-0a49-3549-8815-5c1cfa8d056a,SESCO,II.1.1,Catamarca,AR-K,annual,2012,gas oil combustion consumption by to the public,62.44917193199999,TJ,CH4,3.9,kg/TJ,243.55177053479997,kg -aa0046c9-0a49-3549-8815-5c1cfa8d056a,SESCO,II.1.1,Catamarca,AR-K,annual,2012,gas oil combustion consumption by to the public,62.44917193199999,TJ,N2O,3.9,kg/TJ,243.55177053479997,kg -e20cecf7-2853-317d-a881-7ff3be5fdd36,SESCO,II.1.1,Chaco,AR-H,annual,2012,gas oil combustion consumption by to the public,95.356334052,TJ,CO2,74100.0,kg/TJ,7065904.3532532,kg -456ca18e-b031-3452-b15b-9556daab0f29,SESCO,II.1.1,Chaco,AR-H,annual,2012,gas oil combustion consumption by to the public,95.356334052,TJ,CH4,3.9,kg/TJ,371.88970280279995,kg -456ca18e-b031-3452-b15b-9556daab0f29,SESCO,II.1.1,Chaco,AR-H,annual,2012,gas oil combustion consumption by to the public,95.356334052,TJ,N2O,3.9,kg/TJ,371.88970280279995,kg -08105b2c-b473-3a81-8731-53f5d01fff6a,SESCO,II.1.1,Chubut,AR-U,annual,2012,gas oil combustion consumption by to the public,32.690380716,TJ,CO2,74100.0,kg/TJ,2422357.2110556,kg -4ef42505-a164-31f8-bf7b-443c88a17b14,SESCO,II.1.1,Chubut,AR-U,annual,2012,gas oil combustion consumption by to the public,32.690380716,TJ,CH4,3.9,kg/TJ,127.49248479239999,kg -4ef42505-a164-31f8-bf7b-443c88a17b14,SESCO,II.1.1,Chubut,AR-U,annual,2012,gas oil combustion consumption by to the public,32.690380716,TJ,N2O,3.9,kg/TJ,127.49248479239999,kg -2fef8e80-a5e9-3f4d-b1e5-84b0d1e94376,SESCO,II.1.1,Corrientes,AR-W,annual,2012,gas oil combustion consumption by to the public,51.303887208,TJ,CO2,74100.0,kg/TJ,3801618.0421128,kg -79c4b813-99ed-3f0b-84b2-1be9b9f46e6c,SESCO,II.1.1,Corrientes,AR-W,annual,2012,gas oil combustion consumption by to the public,51.303887208,TJ,CH4,3.9,kg/TJ,200.0851601112,kg -79c4b813-99ed-3f0b-84b2-1be9b9f46e6c,SESCO,II.1.1,Corrientes,AR-W,annual,2012,gas oil combustion consumption by to the public,51.303887208,TJ,N2O,3.9,kg/TJ,200.0851601112,kg -68cd4bb7-2aef-32cb-b4e6-5bc1b0b0293f,SESCO,II.1.1,Córdoba,AR-X,annual,2012,gas oil combustion consumption by to the public,649.861153956,TJ,CO2,74100.0,kg/TJ,48154711.508139595,kg -66ca74f8-ab76-3766-b435-e05358087c17,SESCO,II.1.1,Córdoba,AR-X,annual,2012,gas oil combustion consumption by to the public,649.861153956,TJ,CH4,3.9,kg/TJ,2534.4585004284,kg -66ca74f8-ab76-3766-b435-e05358087c17,SESCO,II.1.1,Córdoba,AR-X,annual,2012,gas oil combustion consumption by to the public,649.861153956,TJ,N2O,3.9,kg/TJ,2534.4585004284,kg -20ef0917-9e14-321f-a871-cf649d044e47,SESCO,II.1.1,Entre Rios,AR-E,annual,2012,gas oil combustion consumption by to the public,234.39840664800002,TJ,CO2,74100.0,kg/TJ,17368921.9326168,kg -8fff347d-fbf8-3e19-ba8b-8ba9906a3bdd,SESCO,II.1.1,Entre Rios,AR-E,annual,2012,gas oil combustion consumption by to the public,234.39840664800002,TJ,CH4,3.9,kg/TJ,914.1537859272,kg -8fff347d-fbf8-3e19-ba8b-8ba9906a3bdd,SESCO,II.1.1,Entre Rios,AR-E,annual,2012,gas oil combustion consumption by to the public,234.39840664800002,TJ,N2O,3.9,kg/TJ,914.1537859272,kg -8549d0ac-affb-32de-b50b-3b3c06c07367,SESCO,II.1.1,Formosa,AR-P,annual,2012,gas oil combustion consumption by to the public,88.417754292,TJ,CO2,74100.0,kg/TJ,6551755.5930372,kg -44497d18-4cd0-376e-bdc4-35c47d22de5b,SESCO,II.1.1,Formosa,AR-P,annual,2012,gas oil combustion consumption by to the public,88.417754292,TJ,CH4,3.9,kg/TJ,344.82924173879996,kg -44497d18-4cd0-376e-bdc4-35c47d22de5b,SESCO,II.1.1,Formosa,AR-P,annual,2012,gas oil combustion consumption by to the public,88.417754292,TJ,N2O,3.9,kg/TJ,344.82924173879996,kg -235afb3f-30cb-372a-9509-3b6efb81a429,SESCO,II.1.1,Jujuy,AR-Y,annual,2012,gas oil combustion consumption by to the public,16.02835836,TJ,CO2,74100.0,kg/TJ,1187701.354476,kg -af3d12e2-d5fc-3275-b9ca-edddaaaef896,SESCO,II.1.1,Jujuy,AR-Y,annual,2012,gas oil combustion consumption by to the public,16.02835836,TJ,CH4,3.9,kg/TJ,62.51059760399999,kg -af3d12e2-d5fc-3275-b9ca-edddaaaef896,SESCO,II.1.1,Jujuy,AR-Y,annual,2012,gas oil combustion consumption by to the public,16.02835836,TJ,N2O,3.9,kg/TJ,62.51059760399999,kg -cc1cff1b-e9f9-37f9-a7dd-a898a18a03d7,SESCO,II.1.1,La Pampa,AR-L,annual,2012,gas oil combustion consumption by to the public,52.279640112,TJ,CO2,74100.0,kg/TJ,3873921.3322992004,kg -31c71835-aae3-39de-b408-cdd16ff2d5c9,SESCO,II.1.1,La Pampa,AR-L,annual,2012,gas oil combustion consumption by to the public,52.279640112,TJ,CH4,3.9,kg/TJ,203.8905964368,kg -31c71835-aae3-39de-b408-cdd16ff2d5c9,SESCO,II.1.1,La Pampa,AR-L,annual,2012,gas oil combustion consumption by to the public,52.279640112,TJ,N2O,3.9,kg/TJ,203.8905964368,kg -e675fa27-c633-3488-8439-c9c7cf0c1db5,SESCO,II.1.1,La Rioja,AR-F,annual,2012,gas oil combustion consumption by to the public,29.621358228000002,TJ,CO2,74100.0,kg/TJ,2194942.6446948,kg -f1173453-1832-3972-9cbe-ba596ec0975f,SESCO,II.1.1,La Rioja,AR-F,annual,2012,gas oil combustion consumption by to the public,29.621358228000002,TJ,CH4,3.9,kg/TJ,115.5232970892,kg -f1173453-1832-3972-9cbe-ba596ec0975f,SESCO,II.1.1,La Rioja,AR-F,annual,2012,gas oil combustion consumption by to the public,29.621358228000002,TJ,N2O,3.9,kg/TJ,115.5232970892,kg -224897b6-9b8c-3a8a-8ad8-2aacdf14db4a,SESCO,II.1.1,Mendoza,AR-M,annual,2012,gas oil combustion consumption by to the public,116.61756657599999,TJ,CO2,74100.0,kg/TJ,8641361.683281599,kg -0eb5920b-b783-3490-ab14-ff2a2f4fa694,SESCO,II.1.1,Mendoza,AR-M,annual,2012,gas oil combustion consumption by to the public,116.61756657599999,TJ,CH4,3.9,kg/TJ,454.80850964639995,kg -0eb5920b-b783-3490-ab14-ff2a2f4fa694,SESCO,II.1.1,Mendoza,AR-M,annual,2012,gas oil combustion consumption by to the public,116.61756657599999,TJ,N2O,3.9,kg/TJ,454.80850964639995,kg -72abe830-69c2-3ad4-a9d9-5a5050c82979,SESCO,II.1.1,Misiones,AR-N,annual,2012,gas oil combustion consumption by to the public,103.776039696,TJ,CO2,74100.0,kg/TJ,7689804.5414736,kg -7c8b4036-1726-3876-954a-2ef815aa798f,SESCO,II.1.1,Misiones,AR-N,annual,2012,gas oil combustion consumption by to the public,103.776039696,TJ,CH4,3.9,kg/TJ,404.7265548144,kg -7c8b4036-1726-3876-954a-2ef815aa798f,SESCO,II.1.1,Misiones,AR-N,annual,2012,gas oil combustion consumption by to the public,103.776039696,TJ,N2O,3.9,kg/TJ,404.7265548144,kg -1a0fd856-5f1a-33cc-a757-3946e788a3ed,SESCO,II.1.1,Neuquén,AR-Q,annual,2012,gas oil combustion consumption by to the public,86.200820664,TJ,CO2,74100.0,kg/TJ,6387480.8112024,kg -6465ab38-879d-3285-aec6-887d8866a9d7,SESCO,II.1.1,Neuquén,AR-Q,annual,2012,gas oil combustion consumption by to the public,86.200820664,TJ,CH4,3.9,kg/TJ,336.1832005896,kg -6465ab38-879d-3285-aec6-887d8866a9d7,SESCO,II.1.1,Neuquén,AR-Q,annual,2012,gas oil combustion consumption by to the public,86.200820664,TJ,N2O,3.9,kg/TJ,336.1832005896,kg -2bbcafc3-2ba1-34e8-aaf6-398281face84,SESCO,II.1.1,Rio Negro,AR-R,annual,2012,gas oil combustion consumption by to the public,127.452125388,TJ,CO2,74100.0,kg/TJ,9444202.4912508,kg -f5ef8e7d-51f9-37c6-ba56-69a1399aba3f,SESCO,II.1.1,Rio Negro,AR-R,annual,2012,gas oil combustion consumption by to the public,127.452125388,TJ,CH4,3.9,kg/TJ,497.0632890132,kg -f5ef8e7d-51f9-37c6-ba56-69a1399aba3f,SESCO,II.1.1,Rio Negro,AR-R,annual,2012,gas oil combustion consumption by to the public,127.452125388,TJ,N2O,3.9,kg/TJ,497.0632890132,kg -c3c04518-8a63-354b-8b17-bfd78d60ff3a,SESCO,II.1.1,Salta,AR-A,annual,2012,gas oil combustion consumption by to the public,9.092357568,TJ,CO2,74100.0,kg/TJ,673743.6957888,kg -1482c3ed-5f8b-36d4-aa51-68f82a1cd367,SESCO,II.1.1,Salta,AR-A,annual,2012,gas oil combustion consumption by to the public,9.092357568,TJ,CH4,3.9,kg/TJ,35.4601945152,kg -1482c3ed-5f8b-36d4-aa51-68f82a1cd367,SESCO,II.1.1,Salta,AR-A,annual,2012,gas oil combustion consumption by to the public,9.092357568,TJ,N2O,3.9,kg/TJ,35.4601945152,kg -dd34b930-1ecc-3053-b4ba-9cdaba8bf085,SESCO,II.1.1,San Juan,AR-J,annual,2012,gas oil combustion consumption by to the public,73.083001068,TJ,CO2,74100.0,kg/TJ,5415450.3791388,kg -ccc74620-10b5-37cd-8dce-ffa68d255b76,SESCO,II.1.1,San Juan,AR-J,annual,2012,gas oil combustion consumption by to the public,73.083001068,TJ,CH4,3.9,kg/TJ,285.0237041652,kg -ccc74620-10b5-37cd-8dce-ffa68d255b76,SESCO,II.1.1,San Juan,AR-J,annual,2012,gas oil combustion consumption by to the public,73.083001068,TJ,N2O,3.9,kg/TJ,285.0237041652,kg -c5d1e221-247e-3493-988b-f2a847db44e2,SESCO,II.1.1,San Luis,AR-D,annual,2012,gas oil combustion consumption by to the public,98.38309975199999,TJ,CO2,74100.0,kg/TJ,7290187.6916232,kg -dba5a769-f304-3fad-b9f1-03ed9884262a,SESCO,II.1.1,San Luis,AR-D,annual,2012,gas oil combustion consumption by to the public,98.38309975199999,TJ,CH4,3.9,kg/TJ,383.6940890328,kg -dba5a769-f304-3fad-b9f1-03ed9884262a,SESCO,II.1.1,San Luis,AR-D,annual,2012,gas oil combustion consumption by to the public,98.38309975199999,TJ,N2O,3.9,kg/TJ,383.6940890328,kg -91695a98-2a75-3496-83a1-1fa4b18ea8a7,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2012,gas oil combustion consumption by to the public,40.065611544,TJ,CO2,74100.0,kg/TJ,2968861.8154104,kg -2d5ccf4c-8e97-32cd-984e-674c2648055c,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2012,gas oil combustion consumption by to the public,40.065611544,TJ,CH4,3.9,kg/TJ,156.2558850216,kg -2d5ccf4c-8e97-32cd-984e-674c2648055c,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2012,gas oil combustion consumption by to the public,40.065611544,TJ,N2O,3.9,kg/TJ,156.2558850216,kg -ee740454-d90e-3345-8722-5ba5c4a45d22,SESCO,II.1.1,Santa Fe,AR-S,annual,2012,gas oil combustion consumption by to the public,559.0971456,TJ,CO2,74100.0,kg/TJ,41429098.48896,kg -ae8efc78-f5aa-35a2-bf19-73b8ea317a51,SESCO,II.1.1,Santa Fe,AR-S,annual,2012,gas oil combustion consumption by to the public,559.0971456,TJ,CH4,3.9,kg/TJ,2180.47886784,kg -ae8efc78-f5aa-35a2-bf19-73b8ea317a51,SESCO,II.1.1,Santa Fe,AR-S,annual,2012,gas oil combustion consumption by to the public,559.0971456,TJ,N2O,3.9,kg/TJ,2180.47886784,kg -3dcec76e-5332-30f4-87ba-c74bc27d002b,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2012,gas oil combustion consumption by to the public,60.826715712,TJ,CO2,74100.0,kg/TJ,4507259.6342592,kg -4c82ea3b-da82-3796-83cc-4036f4fd54ac,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2012,gas oil combustion consumption by to the public,60.826715712,TJ,CH4,3.9,kg/TJ,237.2241912768,kg -4c82ea3b-da82-3796-83cc-4036f4fd54ac,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2012,gas oil combustion consumption by to the public,60.826715712,TJ,N2O,3.9,kg/TJ,237.2241912768,kg -941f6ca1-506b-333f-b46d-62150a55f2ca,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2012,gas oil combustion consumption by to the public,26.919788112,TJ,CO2,74100.0,kg/TJ,1994756.2990992,kg -3eaababe-2387-339a-ae56-f47f98eb4ced,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2012,gas oil combustion consumption by to the public,26.919788112,TJ,CH4,3.9,kg/TJ,104.9871736368,kg -3eaababe-2387-339a-ae56-f47f98eb4ced,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2012,gas oil combustion consumption by to the public,26.919788112,TJ,N2O,3.9,kg/TJ,104.9871736368,kg -0ceecec6-4cab-354b-b192-13c5883e4196,SESCO,II.1.1,Tucuman,AR-T,annual,2012,gas oil combustion consumption by to the public,19.717597368,TJ,CO2,74100.0,kg/TJ,1461073.9649688,kg -46902329-c478-350e-83a5-5f5070603753,SESCO,II.1.1,Tucuman,AR-T,annual,2012,gas oil combustion consumption by to the public,19.717597368,TJ,CH4,3.9,kg/TJ,76.8986297352,kg -46902329-c478-350e-83a5-5f5070603753,SESCO,II.1.1,Tucuman,AR-T,annual,2012,gas oil combustion consumption by to the public,19.717597368,TJ,N2O,3.9,kg/TJ,76.8986297352,kg -1cad1f94-9ff9-3b32-8372-b574b630ff50,SESCO,II.1.1,Buenos Aires,AR-B,annual,2012,jet kerosene combustion consumption by to the public,15.110021199999997,TJ,CO2,71500.0,kg/TJ,1080366.5157999997,kg -c3d191e9-a4c4-38fc-b8a9-79c428ddee6b,SESCO,II.1.1,Buenos Aires,AR-B,annual,2012,jet kerosene combustion consumption by to the public,15.110021199999997,TJ,CH4,0.5,kg/TJ,7.555010599999998,kg -5ff16cad-897f-328b-b362-487fffbadbd8,SESCO,II.1.1,Buenos Aires,AR-B,annual,2012,jet kerosene combustion consumption by to the public,15.110021199999997,TJ,N2O,2.0,kg/TJ,30.220042399999993,kg -9f69cc11-81bd-3a46-b0de-b3c5e45e2ff5,SESCO,II.1.1,Córdoba,AR-X,annual,2012,jet kerosene combustion consumption by to the public,8.441985199999998,TJ,CO2,71500.0,kg/TJ,603601.9417999998,kg -2a5407bd-6c7b-3e3f-87bd-319240528b03,SESCO,II.1.1,Córdoba,AR-X,annual,2012,jet kerosene combustion consumption by to the public,8.441985199999998,TJ,CH4,0.5,kg/TJ,4.220992599999999,kg -015178a3-dea0-3c5d-9dfe-0196a48981d5,SESCO,II.1.1,Córdoba,AR-X,annual,2012,jet kerosene combustion consumption by to the public,8.441985199999998,TJ,N2O,2.0,kg/TJ,16.883970399999995,kg -f566c7a0-501d-3fd8-bd28-dc072b2d154c,SESCO,II.1.1,Entre Rios,AR-E,annual,2012,jet kerosene combustion consumption by to the public,4.136698559999999,TJ,CO2,71500.0,kg/TJ,295773.94703999994,kg -2dc70b6c-b0e7-3249-b5cf-fe5398ffd2f5,SESCO,II.1.1,Entre Rios,AR-E,annual,2012,jet kerosene combustion consumption by to the public,4.136698559999999,TJ,CH4,0.5,kg/TJ,2.0683492799999996,kg -fda9d6ae-eae3-3a67-87fc-7726b1b2e6bf,SESCO,II.1.1,Entre Rios,AR-E,annual,2012,jet kerosene combustion consumption by to the public,4.136698559999999,TJ,N2O,2.0,kg/TJ,8.273397119999998,kg -1c6c1cd9-a233-3f00-b2c8-0ac4846bc469,SESCO,II.1.1,Misiones,AR-N,annual,2012,jet kerosene combustion consumption by to the public,1.3524789999999998,TJ,CO2,71500.0,kg/TJ,96702.24849999999,kg -e94aea83-c846-3d3d-b93e-3cb265c4f36c,SESCO,II.1.1,Misiones,AR-N,annual,2012,jet kerosene combustion consumption by to the public,1.3524789999999998,TJ,CH4,0.5,kg/TJ,0.6762394999999999,kg -e164d96f-bac9-30e4-9fc3-8a482209deb2,SESCO,II.1.1,Misiones,AR-N,annual,2012,jet kerosene combustion consumption by to the public,1.3524789999999998,TJ,N2O,2.0,kg/TJ,2.7049579999999995,kg -89900484-4be8-3f9d-889f-db0395f153c9,SESCO,II.1.1,Santa Fe,AR-S,annual,2012,jet kerosene combustion consumption by to the public,5.913163999999999,TJ,CO2,71500.0,kg/TJ,422791.22599999997,kg -3d4c973c-6ffe-34eb-901c-ac27b1e65543,SESCO,II.1.1,Santa Fe,AR-S,annual,2012,jet kerosene combustion consumption by to the public,5.913163999999999,TJ,CH4,0.5,kg/TJ,2.9565819999999996,kg -28ab0eb8-e781-3f2d-ad69-2e615654d638,SESCO,II.1.1,Santa Fe,AR-S,annual,2012,jet kerosene combustion consumption by to the public,5.913163999999999,TJ,N2O,2.0,kg/TJ,11.826327999999998,kg -becb83b2-cd78-3286-8131-20766b8af396,SESCO,I.3.1,Buenos Aires,AR-B,annual,2012,gasoline combustion consumption by petrochemical industries,85.7648,TJ,CO2,69300.0,kg/TJ,5943500.64,kg -b04df15f-4c1d-3304-b9cd-840590072756,SESCO,I.3.1,Buenos Aires,AR-B,annual,2012,gasoline combustion consumption by petrochemical industries,85.7648,TJ,CH4,33.0,kg/TJ,2830.2383999999997,kg -e7470fb5-8f7c-3bb4-9f68-4bee2a10f2d6,SESCO,I.3.1,Buenos Aires,AR-B,annual,2012,gasoline combustion consumption by petrochemical industries,85.7648,TJ,N2O,3.2,kg/TJ,274.44736,kg -a87b8989-5a69-32d1-9a2c-328e8e6024f1,SESCO,I.3.1,Buenos Aires,AR-B,annual,2012,jet kerosene combustion consumption by petrochemical industries,9.058463999999999,TJ,CO2,71500.0,kg/TJ,647680.176,kg -0181deaf-852e-3237-964a-8b764f7e27db,SESCO,I.3.1,Buenos Aires,AR-B,annual,2012,jet kerosene combustion consumption by petrochemical industries,9.058463999999999,TJ,CH4,0.5,kg/TJ,4.5292319999999995,kg -07388c17-edbe-34a3-aa4b-1fa70c6d12de,SESCO,I.3.1,Buenos Aires,AR-B,annual,2012,jet kerosene combustion consumption by petrochemical industries,9.058463999999999,TJ,N2O,2.0,kg/TJ,18.116927999999998,kg -4b680641-33ba-3a62-9207-ea7ce5624d7f,SESCO,II.2.1,Capital Federal,AR-C,annual,2012,gas oil combustion consumption by railway transport,61.260242399999996,TJ,CO2,74100.0,kg/TJ,4539383.96184,kg -e48245e2-e295-315a-9d03-244557ef9e27,SESCO,II.2.1,Capital Federal,AR-C,annual,2012,gas oil combustion consumption by railway transport,61.260242399999996,TJ,CH4,3.9,kg/TJ,238.91494536,kg -e48245e2-e295-315a-9d03-244557ef9e27,SESCO,II.2.1,Capital Federal,AR-C,annual,2012,gas oil combustion consumption by railway transport,61.260242399999996,TJ,N2O,3.9,kg/TJ,238.91494536,kg -6abf2e59-f464-3475-b4be-ae7ab505283c,SESCO,II.2.1,Córdoba,AR-X,annual,2012,gas oil combustion consumption by railway transport,7.51296,TJ,CO2,74100.0,kg/TJ,556710.336,kg -c9effdf8-507e-3bd9-9a9f-b0fe9c1d214a,SESCO,II.2.1,Córdoba,AR-X,annual,2012,gas oil combustion consumption by railway transport,7.51296,TJ,CH4,3.9,kg/TJ,29.300544,kg -c9effdf8-507e-3bd9-9a9f-b0fe9c1d214a,SESCO,II.2.1,Córdoba,AR-X,annual,2012,gas oil combustion consumption by railway transport,7.51296,TJ,N2O,3.9,kg/TJ,29.300544,kg -6d4fd9b0-df05-3e93-b273-c906dd3209d2,SESCO,II.2.1,Mendoza,AR-M,annual,2012,gas oil combustion consumption by railway transport,16.615199999999998,TJ,CO2,74100.0,kg/TJ,1231186.3199999998,kg -ce17a550-c71a-3e41-806a-27de2506226a,SESCO,II.2.1,Mendoza,AR-M,annual,2012,gas oil combustion consumption by railway transport,16.615199999999998,TJ,CH4,3.9,kg/TJ,64.79928,kg -ce17a550-c71a-3e41-806a-27de2506226a,SESCO,II.2.1,Mendoza,AR-M,annual,2012,gas oil combustion consumption by railway transport,16.615199999999998,TJ,N2O,3.9,kg/TJ,64.79928,kg -0225447e-9f9d-3733-83dc-89e0f77d67fa,SESCO,II.1.1,Buenos Aires,AR-B,annual,2012,gas oil combustion consumption by freight transport,1136.395278396,TJ,CO2,74100.0,kg/TJ,84206890.12914361,kg -27ae6c7c-551f-3c4a-ba37-a4d47192f687,SESCO,II.1.1,Buenos Aires,AR-B,annual,2012,gas oil combustion consumption by freight transport,1136.395278396,TJ,CH4,3.9,kg/TJ,4431.9415857444,kg -27ae6c7c-551f-3c4a-ba37-a4d47192f687,SESCO,II.1.1,Buenos Aires,AR-B,annual,2012,gas oil combustion consumption by freight transport,1136.395278396,TJ,N2O,3.9,kg/TJ,4431.9415857444,kg -0a8fc9c4-5fdb-38c1-b223-354b8f38b4a6,SESCO,II.1.1,Capital Federal,AR-C,annual,2012,gas oil combustion consumption by freight transport,280.91463120000003,TJ,CO2,74100.0,kg/TJ,20815774.17192,kg -c272eed1-0872-380c-9104-c0450a000049,SESCO,II.1.1,Capital Federal,AR-C,annual,2012,gas oil combustion consumption by freight transport,280.91463120000003,TJ,CH4,3.9,kg/TJ,1095.56706168,kg -c272eed1-0872-380c-9104-c0450a000049,SESCO,II.1.1,Capital Federal,AR-C,annual,2012,gas oil combustion consumption by freight transport,280.91463120000003,TJ,N2O,3.9,kg/TJ,1095.56706168,kg -3b377db2-f38b-3355-8427-32e3900b7a21,SESCO,II.1.1,Chaco,AR-H,annual,2012,gas oil combustion consumption by freight transport,125.32256604,TJ,CO2,74100.0,kg/TJ,9286402.143564,kg -20000e3f-842e-37ff-bfa2-46220d02da7e,SESCO,II.1.1,Chaco,AR-H,annual,2012,gas oil combustion consumption by freight transport,125.32256604,TJ,CH4,3.9,kg/TJ,488.758007556,kg -20000e3f-842e-37ff-bfa2-46220d02da7e,SESCO,II.1.1,Chaco,AR-H,annual,2012,gas oil combustion consumption by freight transport,125.32256604,TJ,N2O,3.9,kg/TJ,488.758007556,kg -d8b19744-ac35-38bc-8976-4b08341b1830,SESCO,II.1.1,Chubut,AR-U,annual,2012,gas oil combustion consumption by freight transport,21.426665736,TJ,CO2,74100.0,kg/TJ,1587715.9310376,kg -b50d3db0-3bb4-3936-a4f4-1022d4b51182,SESCO,II.1.1,Chubut,AR-U,annual,2012,gas oil combustion consumption by freight transport,21.426665736,TJ,CH4,3.9,kg/TJ,83.5639963704,kg -b50d3db0-3bb4-3936-a4f4-1022d4b51182,SESCO,II.1.1,Chubut,AR-U,annual,2012,gas oil combustion consumption by freight transport,21.426665736,TJ,N2O,3.9,kg/TJ,83.5639963704,kg -5857f1ee-afcc-30d1-8612-e87af9d2bb74,SESCO,II.1.1,Corrientes,AR-W,annual,2012,gas oil combustion consumption by freight transport,285.8135868,TJ,CO2,74100.0,kg/TJ,21178786.78188,kg -3fe05538-8476-3825-a8b9-a68fd3220b2a,SESCO,II.1.1,Corrientes,AR-W,annual,2012,gas oil combustion consumption by freight transport,285.8135868,TJ,CH4,3.9,kg/TJ,1114.67298852,kg -3fe05538-8476-3825-a8b9-a68fd3220b2a,SESCO,II.1.1,Corrientes,AR-W,annual,2012,gas oil combustion consumption by freight transport,285.8135868,TJ,N2O,3.9,kg/TJ,1114.67298852,kg -bffecbbc-2e10-3d93-8260-eb8a5dfb8c20,SESCO,II.1.1,Córdoba,AR-X,annual,2012,gas oil combustion consumption by freight transport,75.852,TJ,CO2,74100.0,kg/TJ,5620633.2,kg -e8e164de-7ae8-3936-88ac-e00a12b3379c,SESCO,II.1.1,Córdoba,AR-X,annual,2012,gas oil combustion consumption by freight transport,75.852,TJ,CH4,3.9,kg/TJ,295.82280000000003,kg -e8e164de-7ae8-3936-88ac-e00a12b3379c,SESCO,II.1.1,Córdoba,AR-X,annual,2012,gas oil combustion consumption by freight transport,75.852,TJ,N2O,3.9,kg/TJ,295.82280000000003,kg -1d9429c4-7138-3c8e-88a0-d41597fceb88,SESCO,II.1.1,Entre Rios,AR-E,annual,2012,gas oil combustion consumption by freight transport,31.5649068,TJ,CO2,74100.0,kg/TJ,2338959.59388,kg -ded90f6c-dded-3166-aa28-a5411e718dc1,SESCO,II.1.1,Entre Rios,AR-E,annual,2012,gas oil combustion consumption by freight transport,31.5649068,TJ,CH4,3.9,kg/TJ,123.10313651999999,kg -ded90f6c-dded-3166-aa28-a5411e718dc1,SESCO,II.1.1,Entre Rios,AR-E,annual,2012,gas oil combustion consumption by freight transport,31.5649068,TJ,N2O,3.9,kg/TJ,123.10313651999999,kg -81e21a98-2226-31d2-8c97-abe1a579775b,SESCO,II.1.1,Formosa,AR-P,annual,2012,gas oil combustion consumption by freight transport,86.48031,TJ,CO2,74100.0,kg/TJ,6408190.971,kg -18dc882d-6638-31ab-967d-749cbdb8e7b5,SESCO,II.1.1,Formosa,AR-P,annual,2012,gas oil combustion consumption by freight transport,86.48031,TJ,CH4,3.9,kg/TJ,337.273209,kg -18dc882d-6638-31ab-967d-749cbdb8e7b5,SESCO,II.1.1,Formosa,AR-P,annual,2012,gas oil combustion consumption by freight transport,86.48031,TJ,N2O,3.9,kg/TJ,337.273209,kg -bacce298-bc8d-30c9-8dd3-3f08e93d6d3c,SESCO,II.1.1,Jujuy,AR-Y,annual,2012,gas oil combustion consumption by freight transport,17.307620399999998,TJ,CO2,74100.0,kg/TJ,1282494.6716399998,kg -5829f7e4-3f79-3584-bf5d-2b94378747a6,SESCO,II.1.1,Jujuy,AR-Y,annual,2012,gas oil combustion consumption by freight transport,17.307620399999998,TJ,CH4,3.9,kg/TJ,67.49971955999999,kg -5829f7e4-3f79-3584-bf5d-2b94378747a6,SESCO,II.1.1,Jujuy,AR-Y,annual,2012,gas oil combustion consumption by freight transport,17.307620399999998,TJ,N2O,3.9,kg/TJ,67.49971955999999,kg -b3ab130e-914f-3250-a631-6678337441bc,SESCO,II.1.1,La Pampa,AR-L,annual,2012,gas oil combustion consumption by freight transport,1.7268972,TJ,CO2,74100.0,kg/TJ,127963.08252,kg -9bc02ba5-3b66-3564-88b1-ef52d84f4445,SESCO,II.1.1,La Pampa,AR-L,annual,2012,gas oil combustion consumption by freight transport,1.7268972,TJ,CH4,3.9,kg/TJ,6.73489908,kg -9bc02ba5-3b66-3564-88b1-ef52d84f4445,SESCO,II.1.1,La Pampa,AR-L,annual,2012,gas oil combustion consumption by freight transport,1.7268972,TJ,N2O,3.9,kg/TJ,6.73489908,kg -3b4d3bf0-74c5-37c9-aa0b-5f0eefca8610,SESCO,II.1.1,La Rioja,AR-F,annual,2012,gas oil combustion consumption by freight transport,97.6460856,TJ,CO2,74100.0,kg/TJ,7235574.942960001,kg -dd92f719-814f-3727-971a-6486d9135bf6,SESCO,II.1.1,La Rioja,AR-F,annual,2012,gas oil combustion consumption by freight transport,97.6460856,TJ,CH4,3.9,kg/TJ,380.81973384,kg -dd92f719-814f-3727-971a-6486d9135bf6,SESCO,II.1.1,La Rioja,AR-F,annual,2012,gas oil combustion consumption by freight transport,97.6460856,TJ,N2O,3.9,kg/TJ,380.81973384,kg -c2fdd2e5-71a7-3dc7-9064-560461931782,SESCO,II.1.1,Mendoza,AR-M,annual,2012,gas oil combustion consumption by freight transport,37.4011764,TJ,CO2,74100.0,kg/TJ,2771427.1712399996,kg -f25ec3ac-8608-3cda-9231-d7b121a3cf8b,SESCO,II.1.1,Mendoza,AR-M,annual,2012,gas oil combustion consumption by freight transport,37.4011764,TJ,CH4,3.9,kg/TJ,145.86458796,kg -f25ec3ac-8608-3cda-9231-d7b121a3cf8b,SESCO,II.1.1,Mendoza,AR-M,annual,2012,gas oil combustion consumption by freight transport,37.4011764,TJ,N2O,3.9,kg/TJ,145.86458796,kg -cfa962c6-20af-3681-8c61-e0ad32cee75c,SESCO,II.1.1,Misiones,AR-N,annual,2012,gas oil combustion consumption by freight transport,103.3801356,TJ,CO2,74100.0,kg/TJ,7660468.04796,kg -826b0677-876c-3596-a1d6-149cf734b0c6,SESCO,II.1.1,Misiones,AR-N,annual,2012,gas oil combustion consumption by freight transport,103.3801356,TJ,CH4,3.9,kg/TJ,403.18252884,kg -826b0677-876c-3596-a1d6-149cf734b0c6,SESCO,II.1.1,Misiones,AR-N,annual,2012,gas oil combustion consumption by freight transport,103.3801356,TJ,N2O,3.9,kg/TJ,403.18252884,kg -adf6fa5a-3a21-3f6d-bfb5-73ccf537a175,SESCO,II.1.1,Rio Negro,AR-R,annual,2012,gas oil combustion consumption by freight transport,0.7563528,TJ,CO2,74100.0,kg/TJ,56045.74248,kg -71272d9b-106d-3cae-8f80-9af9b7483042,SESCO,II.1.1,Rio Negro,AR-R,annual,2012,gas oil combustion consumption by freight transport,0.7563528,TJ,CH4,3.9,kg/TJ,2.94977592,kg -71272d9b-106d-3cae-8f80-9af9b7483042,SESCO,II.1.1,Rio Negro,AR-R,annual,2012,gas oil combustion consumption by freight transport,0.7563528,TJ,N2O,3.9,kg/TJ,2.94977592,kg -bb34b381-dccc-36ea-b03d-33b130c7d740,SESCO,II.1.1,Salta,AR-A,annual,2012,gas oil combustion consumption by freight transport,825.362555892,TJ,CO2,74100.0,kg/TJ,61159365.391597204,kg -85d729a2-0882-3991-a078-801452ec3a9b,SESCO,II.1.1,Salta,AR-A,annual,2012,gas oil combustion consumption by freight transport,825.362555892,TJ,CH4,3.9,kg/TJ,3218.9139679788,kg -85d729a2-0882-3991-a078-801452ec3a9b,SESCO,II.1.1,Salta,AR-A,annual,2012,gas oil combustion consumption by freight transport,825.362555892,TJ,N2O,3.9,kg/TJ,3218.9139679788,kg -f8bda04c-7f1a-314f-a834-aa28dc6eeca8,SESCO,II.1.1,San Juan,AR-J,annual,2012,gas oil combustion consumption by freight transport,2.3651376,TJ,CO2,74100.0,kg/TJ,175256.69616000002,kg -bde7705c-ec40-385d-a24f-51379483d975,SESCO,II.1.1,San Juan,AR-J,annual,2012,gas oil combustion consumption by freight transport,2.3651376,TJ,CH4,3.9,kg/TJ,9.224036640000001,kg -bde7705c-ec40-385d-a24f-51379483d975,SESCO,II.1.1,San Juan,AR-J,annual,2012,gas oil combustion consumption by freight transport,2.3651376,TJ,N2O,3.9,kg/TJ,9.224036640000001,kg -d886cf56-7aca-3ae6-8dc1-38d1e12793c4,SESCO,II.1.1,San Luis,AR-D,annual,2012,gas oil combustion consumption by freight transport,111.59462907599999,TJ,CO2,74100.0,kg/TJ,8269162.014531599,kg -532c8cd0-c13c-34db-a959-983a94be0ce6,SESCO,II.1.1,San Luis,AR-D,annual,2012,gas oil combustion consumption by freight transport,111.59462907599999,TJ,CH4,3.9,kg/TJ,435.21905339639994,kg -532c8cd0-c13c-34db-a959-983a94be0ce6,SESCO,II.1.1,San Luis,AR-D,annual,2012,gas oil combustion consumption by freight transport,111.59462907599999,TJ,N2O,3.9,kg/TJ,435.21905339639994,kg -10fd2297-b675-3cae-9881-4cb9e354a53a,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2012,gas oil combustion consumption by freight transport,54.5227788,TJ,CO2,74100.0,kg/TJ,4040137.9090799997,kg -cac6961a-1513-3ce1-a996-92e4d0333276,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2012,gas oil combustion consumption by freight transport,54.5227788,TJ,CH4,3.9,kg/TJ,212.63883732,kg -cac6961a-1513-3ce1-a996-92e4d0333276,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2012,gas oil combustion consumption by freight transport,54.5227788,TJ,N2O,3.9,kg/TJ,212.63883732,kg -8fceff44-b6a9-3137-991f-6f334a028255,SESCO,II.1.1,Santa Fe,AR-S,annual,2012,gas oil combustion consumption by freight transport,152.5394556,TJ,CO2,74100.0,kg/TJ,11303173.65996,kg -a77e0b8e-2745-3598-bc48-cd88db36d61e,SESCO,II.1.1,Santa Fe,AR-S,annual,2012,gas oil combustion consumption by freight transport,152.5394556,TJ,CH4,3.9,kg/TJ,594.90387684,kg -a77e0b8e-2745-3598-bc48-cd88db36d61e,SESCO,II.1.1,Santa Fe,AR-S,annual,2012,gas oil combustion consumption by freight transport,152.5394556,TJ,N2O,3.9,kg/TJ,594.90387684,kg -c515bf20-92c6-347e-b2d3-6de7a3f409b9,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2012,gas oil combustion consumption by freight transport,39.8201328,TJ,CO2,74100.0,kg/TJ,2950671.8404800002,kg -fd40a7fb-68e6-3c13-9bac-e92030d5097a,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2012,gas oil combustion consumption by freight transport,39.8201328,TJ,CH4,3.9,kg/TJ,155.29851792000002,kg -fd40a7fb-68e6-3c13-9bac-e92030d5097a,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2012,gas oil combustion consumption by freight transport,39.8201328,TJ,N2O,3.9,kg/TJ,155.29851792000002,kg -0b57e888-60cf-3de7-a5d8-2f1c3226cf90,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2012,gas oil combustion consumption by freight transport,10.964226,TJ,CO2,74100.0,kg/TJ,812449.1466,kg -62013b30-c45e-364e-8679-c0e1de99bc5c,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2012,gas oil combustion consumption by freight transport,10.964226,TJ,CH4,3.9,kg/TJ,42.760481399999996,kg -62013b30-c45e-364e-8679-c0e1de99bc5c,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2012,gas oil combustion consumption by freight transport,10.964226,TJ,N2O,3.9,kg/TJ,42.760481399999996,kg -7e06f190-9bfb-30f2-bcfc-5385b3e90c39,SESCO,II.1.1,Tucuman,AR-T,annual,2012,gas oil combustion consumption by freight transport,42.97051919999999,TJ,CO2,74100.0,kg/TJ,3184115.4727199995,kg -a06b669a-15be-302f-a3a3-370070ca0698,SESCO,II.1.1,Tucuman,AR-T,annual,2012,gas oil combustion consumption by freight transport,42.97051919999999,TJ,CH4,3.9,kg/TJ,167.58502487999996,kg -a06b669a-15be-302f-a3a3-370070ca0698,SESCO,II.1.1,Tucuman,AR-T,annual,2012,gas oil combustion consumption by freight transport,42.97051919999999,TJ,N2O,3.9,kg/TJ,167.58502487999996,kg -29957582-ab43-30b4-aacf-486f59eadf6b,SESCO,II.1.1,Buenos Aires,AR-B,annual,2012,gas oil combustion consumption by freight transport,57.6356004,TJ,CO2,74100.0,kg/TJ,4270797.98964,kg -56a796a2-aaa3-301a-8f71-3e4b3f81644f,SESCO,II.1.1,Buenos Aires,AR-B,annual,2012,gas oil combustion consumption by freight transport,57.6356004,TJ,CH4,3.9,kg/TJ,224.77884156,kg -56a796a2-aaa3-301a-8f71-3e4b3f81644f,SESCO,II.1.1,Buenos Aires,AR-B,annual,2012,gas oil combustion consumption by freight transport,57.6356004,TJ,N2O,3.9,kg/TJ,224.77884156,kg -620fad27-4b9d-3c68-bc1a-c0386db64cd1,SESCO,II.1.1,Capital Federal,AR-C,annual,2012,gas oil combustion consumption by freight transport,44.4229044,TJ,CO2,74100.0,kg/TJ,3291737.21604,kg -7bdc04e3-38ff-373e-b9c5-a4122c6d63ed,SESCO,II.1.1,Capital Federal,AR-C,annual,2012,gas oil combustion consumption by freight transport,44.4229044,TJ,CH4,3.9,kg/TJ,173.24932716,kg -7bdc04e3-38ff-373e-b9c5-a4122c6d63ed,SESCO,II.1.1,Capital Federal,AR-C,annual,2012,gas oil combustion consumption by freight transport,44.4229044,TJ,N2O,3.9,kg/TJ,173.24932716,kg -adf1c7bb-620b-31d5-8353-2eabf419c7b0,SESCO,II.1.1,Chaco,AR-H,annual,2012,gas oil combustion consumption by freight transport,0.1509816,TJ,CO2,74100.0,kg/TJ,11187.73656,kg -331db740-2b0a-3ca0-b935-674e3a9b5932,SESCO,II.1.1,Chaco,AR-H,annual,2012,gas oil combustion consumption by freight transport,0.1509816,TJ,CH4,3.9,kg/TJ,0.58882824,kg -331db740-2b0a-3ca0-b935-674e3a9b5932,SESCO,II.1.1,Chaco,AR-H,annual,2012,gas oil combustion consumption by freight transport,0.1509816,TJ,N2O,3.9,kg/TJ,0.58882824,kg -f875ea55-3d83-30a2-a9a2-54783074d2fe,SESCO,II.1.1,Chubut,AR-U,annual,2012,gas oil combustion consumption by freight transport,0.7227612,TJ,CO2,74100.0,kg/TJ,53556.60492,kg -7afc484e-2e2e-313e-b5f8-56c6bc58f90b,SESCO,II.1.1,Chubut,AR-U,annual,2012,gas oil combustion consumption by freight transport,0.7227612,TJ,CH4,3.9,kg/TJ,2.81876868,kg -7afc484e-2e2e-313e-b5f8-56c6bc58f90b,SESCO,II.1.1,Chubut,AR-U,annual,2012,gas oil combustion consumption by freight transport,0.7227612,TJ,N2O,3.9,kg/TJ,2.81876868,kg -c188cb45-3d00-311b-ab47-f32c4f7cb1d7,SESCO,II.1.1,Corrientes,AR-W,annual,2012,gas oil combustion consumption by freight transport,3.032274,TJ,CO2,74100.0,kg/TJ,224691.50340000002,kg -36f20c99-41d7-3f3f-b47a-ac97eb5dbb25,SESCO,II.1.1,Corrientes,AR-W,annual,2012,gas oil combustion consumption by freight transport,3.032274,TJ,CH4,3.9,kg/TJ,11.8258686,kg -36f20c99-41d7-3f3f-b47a-ac97eb5dbb25,SESCO,II.1.1,Corrientes,AR-W,annual,2012,gas oil combustion consumption by freight transport,3.032274,TJ,N2O,3.9,kg/TJ,11.8258686,kg -806a3c58-245c-3762-9ca4-b99896899e98,SESCO,II.1.1,Córdoba,AR-X,annual,2012,gas oil combustion consumption by freight transport,1.5390732,TJ,CO2,74100.0,kg/TJ,114045.32412,kg -78143ca0-92b5-376c-a9e6-803374daf026,SESCO,II.1.1,Córdoba,AR-X,annual,2012,gas oil combustion consumption by freight transport,1.5390732,TJ,CH4,3.9,kg/TJ,6.00238548,kg -78143ca0-92b5-376c-a9e6-803374daf026,SESCO,II.1.1,Córdoba,AR-X,annual,2012,gas oil combustion consumption by freight transport,1.5390732,TJ,N2O,3.9,kg/TJ,6.00238548,kg -260c0dbe-4d42-3e3a-b7a9-4abbbc8c4aec,SESCO,II.1.1,Entre Rios,AR-E,annual,2012,gas oil combustion consumption by freight transport,0.8751876,TJ,CO2,74100.0,kg/TJ,64851.401159999994,kg -ae0d9355-df41-3d33-b174-36230e81ac30,SESCO,II.1.1,Entre Rios,AR-E,annual,2012,gas oil combustion consumption by freight transport,0.8751876,TJ,CH4,3.9,kg/TJ,3.41323164,kg -ae0d9355-df41-3d33-b174-36230e81ac30,SESCO,II.1.1,Entre Rios,AR-E,annual,2012,gas oil combustion consumption by freight transport,0.8751876,TJ,N2O,3.9,kg/TJ,3.41323164,kg -8925bf43-0ddc-38dc-8338-671875e0441e,SESCO,II.1.1,Mendoza,AR-M,annual,2012,gas oil combustion consumption by freight transport,0.19251959999999999,TJ,CO2,74100.0,kg/TJ,14265.70236,kg -e1c145b4-b4be-3be9-b71a-8b8577d22761,SESCO,II.1.1,Mendoza,AR-M,annual,2012,gas oil combustion consumption by freight transport,0.19251959999999999,TJ,CH4,3.9,kg/TJ,0.7508264399999999,kg -e1c145b4-b4be-3be9-b71a-8b8577d22761,SESCO,II.1.1,Mendoza,AR-M,annual,2012,gas oil combustion consumption by freight transport,0.19251959999999999,TJ,N2O,3.9,kg/TJ,0.7508264399999999,kg -a429f988-2d0f-3a02-a0b2-f87364d15912,SESCO,II.1.1,Misiones,AR-N,annual,2012,gas oil combustion consumption by freight transport,0.1834896,TJ,CO2,74100.0,kg/TJ,13596.57936,kg -d44ed1cc-64e5-3e38-b831-8c09b84924a0,SESCO,II.1.1,Misiones,AR-N,annual,2012,gas oil combustion consumption by freight transport,0.1834896,TJ,CH4,3.9,kg/TJ,0.71560944,kg -d44ed1cc-64e5-3e38-b831-8c09b84924a0,SESCO,II.1.1,Misiones,AR-N,annual,2012,gas oil combustion consumption by freight transport,0.1834896,TJ,N2O,3.9,kg/TJ,0.71560944,kg -340c9985-46a6-3074-8d59-1dd96e82e2c5,SESCO,II.1.1,Rio Negro,AR-R,annual,2012,gas oil combustion consumption by freight transport,0.003612,TJ,CO2,74100.0,kg/TJ,267.6492,kg -b9e6d27a-8e12-3d51-a712-0ba403d285a2,SESCO,II.1.1,Rio Negro,AR-R,annual,2012,gas oil combustion consumption by freight transport,0.003612,TJ,CH4,3.9,kg/TJ,0.0140868,kg -b9e6d27a-8e12-3d51-a712-0ba403d285a2,SESCO,II.1.1,Rio Negro,AR-R,annual,2012,gas oil combustion consumption by freight transport,0.003612,TJ,N2O,3.9,kg/TJ,0.0140868,kg -eca3b929-7eb2-3d24-a488-32b93c79b9ad,SESCO,II.1.1,San Juan,AR-J,annual,2012,gas oil combustion consumption by freight transport,0.034675199999999996,TJ,CO2,74100.0,kg/TJ,2569.43232,kg -c146a4e7-5676-391a-9b47-b31e38cf7358,SESCO,II.1.1,San Juan,AR-J,annual,2012,gas oil combustion consumption by freight transport,0.034675199999999996,TJ,CH4,3.9,kg/TJ,0.13523327999999998,kg -c146a4e7-5676-391a-9b47-b31e38cf7358,SESCO,II.1.1,San Juan,AR-J,annual,2012,gas oil combustion consumption by freight transport,0.034675199999999996,TJ,N2O,3.9,kg/TJ,0.13523327999999998,kg -ce689071-5cb6-3fd6-a2c1-a2b802443388,SESCO,II.1.1,San Luis,AR-D,annual,2012,gas oil combustion consumption by freight transport,0.18926880000000001,TJ,CO2,74100.0,kg/TJ,14024.818080000001,kg -b2ede6a9-735f-3d32-b315-ee790406d29b,SESCO,II.1.1,San Luis,AR-D,annual,2012,gas oil combustion consumption by freight transport,0.18926880000000001,TJ,CH4,3.9,kg/TJ,0.7381483200000001,kg -b2ede6a9-735f-3d32-b315-ee790406d29b,SESCO,II.1.1,San Luis,AR-D,annual,2012,gas oil combustion consumption by freight transport,0.18926880000000001,TJ,N2O,3.9,kg/TJ,0.7381483200000001,kg -dfe37c74-2f45-3e5f-94a1-d90ab8ce3489,SESCO,II.1.1,Santa Fe,AR-S,annual,2012,gas oil combustion consumption by freight transport,1.8630696,TJ,CO2,74100.0,kg/TJ,138053.45736,kg -7c873c8b-c573-3394-a194-ee8e94ca49e2,SESCO,II.1.1,Santa Fe,AR-S,annual,2012,gas oil combustion consumption by freight transport,1.8630696,TJ,CH4,3.9,kg/TJ,7.2659714399999995,kg -7c873c8b-c573-3394-a194-ee8e94ca49e2,SESCO,II.1.1,Santa Fe,AR-S,annual,2012,gas oil combustion consumption by freight transport,1.8630696,TJ,N2O,3.9,kg/TJ,7.2659714399999995,kg -8cb3b9f1-af6f-37fe-8b7c-0a9125b08ea2,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2012,gas oil combustion consumption by freight transport,0.9217824,TJ,CO2,74100.0,kg/TJ,68304.07584,kg -54b939f5-3c33-3334-b6be-470292c55135,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2012,gas oil combustion consumption by freight transport,0.9217824,TJ,CH4,3.9,kg/TJ,3.59495136,kg -54b939f5-3c33-3334-b6be-470292c55135,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2012,gas oil combustion consumption by freight transport,0.9217824,TJ,N2O,3.9,kg/TJ,3.59495136,kg -42b8bc28-2157-3ddd-89ca-049f8c3b966e,SESCO,II.1.1,Tucuman,AR-T,annual,2012,gas oil combustion consumption by freight transport,0.2481444,TJ,CO2,74100.0,kg/TJ,18387.50004,kg -5c715d4b-953a-36c2-aa65-8bb1b7b47c67,SESCO,II.1.1,Tucuman,AR-T,annual,2012,gas oil combustion consumption by freight transport,0.2481444,TJ,CH4,3.9,kg/TJ,0.96776316,kg -5c715d4b-953a-36c2-aa65-8bb1b7b47c67,SESCO,II.1.1,Tucuman,AR-T,annual,2012,gas oil combustion consumption by freight transport,0.2481444,TJ,N2O,3.9,kg/TJ,0.96776316,kg -eab75ebe-937f-3c4e-9a57-edd61b8409fb,SESCO,II.1.1,Buenos Aires,AR-B,annual,2012,gas oil combustion consumption by public passenger transport,972.6371928,TJ,CO2,74100.0,kg/TJ,72072415.98648,kg -f1c4921e-5e08-3566-b9e1-ed4f148553e4,SESCO,II.1.1,Buenos Aires,AR-B,annual,2012,gas oil combustion consumption by public passenger transport,972.6371928,TJ,CH4,3.9,kg/TJ,3793.2850519199997,kg -f1c4921e-5e08-3566-b9e1-ed4f148553e4,SESCO,II.1.1,Buenos Aires,AR-B,annual,2012,gas oil combustion consumption by public passenger transport,972.6371928,TJ,N2O,3.9,kg/TJ,3793.2850519199997,kg -5bbf975e-cbc3-38d9-b013-ca5a6ce793d9,SESCO,II.1.1,Capital Federal,AR-C,annual,2012,gas oil combustion consumption by public passenger transport,604.11841392,TJ,CO2,74100.0,kg/TJ,44765174.471471995,kg -29c75748-5599-39d3-b2dd-fa8eb79692af,SESCO,II.1.1,Capital Federal,AR-C,annual,2012,gas oil combustion consumption by public passenger transport,604.11841392,TJ,CH4,3.9,kg/TJ,2356.061814288,kg -29c75748-5599-39d3-b2dd-fa8eb79692af,SESCO,II.1.1,Capital Federal,AR-C,annual,2012,gas oil combustion consumption by public passenger transport,604.11841392,TJ,N2O,3.9,kg/TJ,2356.061814288,kg -1ab79cfd-e1b7-3fd8-bc08-8a9055d6f043,SESCO,II.1.1,Chubut,AR-U,annual,2012,gas oil combustion consumption by public passenger transport,119.8559124,TJ,CO2,74100.0,kg/TJ,8881323.10884,kg -ffe96932-9ad8-3386-8928-b312b132da2b,SESCO,II.1.1,Chubut,AR-U,annual,2012,gas oil combustion consumption by public passenger transport,119.8559124,TJ,CH4,3.9,kg/TJ,467.43805835999996,kg -ffe96932-9ad8-3386-8928-b312b132da2b,SESCO,II.1.1,Chubut,AR-U,annual,2012,gas oil combustion consumption by public passenger transport,119.8559124,TJ,N2O,3.9,kg/TJ,467.43805835999996,kg -fc626a22-7e3e-3b45-b9e7-e23085f1e28b,SESCO,II.1.1,Corrientes,AR-W,annual,2012,gas oil combustion consumption by public passenger transport,1.15584,TJ,CO2,74100.0,kg/TJ,85647.74399999999,kg -855f7de2-c9ce-3cea-aa4f-097805014b06,SESCO,II.1.1,Corrientes,AR-W,annual,2012,gas oil combustion consumption by public passenger transport,1.15584,TJ,CH4,3.9,kg/TJ,4.507776,kg -855f7de2-c9ce-3cea-aa4f-097805014b06,SESCO,II.1.1,Corrientes,AR-W,annual,2012,gas oil combustion consumption by public passenger transport,1.15584,TJ,N2O,3.9,kg/TJ,4.507776,kg -01e9ceef-3b73-32b8-a04a-5c5df04bc42f,SESCO,II.1.1,Córdoba,AR-X,annual,2012,gas oil combustion consumption by public passenger transport,10.4274828,TJ,CO2,74100.0,kg/TJ,772676.47548,kg -0afafbbf-4cd6-3dca-8c2a-c87639b0a21c,SESCO,II.1.1,Córdoba,AR-X,annual,2012,gas oil combustion consumption by public passenger transport,10.4274828,TJ,CH4,3.9,kg/TJ,40.66718292,kg -0afafbbf-4cd6-3dca-8c2a-c87639b0a21c,SESCO,II.1.1,Córdoba,AR-X,annual,2012,gas oil combustion consumption by public passenger transport,10.4274828,TJ,N2O,3.9,kg/TJ,40.66718292,kg -967d04d9-1eda-345f-9f31-0cbd7ca67578,SESCO,II.1.1,Entre Rios,AR-E,annual,2012,gas oil combustion consumption by public passenger transport,105.6701436,TJ,CO2,74100.0,kg/TJ,7830157.64076,kg -5a806990-d35a-33eb-a7f5-02895c0a7e47,SESCO,II.1.1,Entre Rios,AR-E,annual,2012,gas oil combustion consumption by public passenger transport,105.6701436,TJ,CH4,3.9,kg/TJ,412.11356004,kg -5a806990-d35a-33eb-a7f5-02895c0a7e47,SESCO,II.1.1,Entre Rios,AR-E,annual,2012,gas oil combustion consumption by public passenger transport,105.6701436,TJ,N2O,3.9,kg/TJ,412.11356004,kg -bb884dae-c167-3518-91d9-7238f70cd5e8,SESCO,II.1.1,La Pampa,AR-L,annual,2012,gas oil combustion consumption by public passenger transport,7.610484,TJ,CO2,74100.0,kg/TJ,563936.8644,kg -b2ca7884-0a30-36bd-80af-da6d57896eb0,SESCO,II.1.1,La Pampa,AR-L,annual,2012,gas oil combustion consumption by public passenger transport,7.610484,TJ,CH4,3.9,kg/TJ,29.6808876,kg -b2ca7884-0a30-36bd-80af-da6d57896eb0,SESCO,II.1.1,La Pampa,AR-L,annual,2012,gas oil combustion consumption by public passenger transport,7.610484,TJ,N2O,3.9,kg/TJ,29.6808876,kg -dfe18174-93ce-34a3-b71f-5b18c4df7417,SESCO,II.1.1,Mendoza,AR-M,annual,2012,gas oil combustion consumption by public passenger transport,25.542619199999997,TJ,CO2,74100.0,kg/TJ,1892708.0827199998,kg -cffa942f-7664-31a8-a590-2040679c86d0,SESCO,II.1.1,Mendoza,AR-M,annual,2012,gas oil combustion consumption by public passenger transport,25.542619199999997,TJ,CH4,3.9,kg/TJ,99.61621487999999,kg -cffa942f-7664-31a8-a590-2040679c86d0,SESCO,II.1.1,Mendoza,AR-M,annual,2012,gas oil combustion consumption by public passenger transport,25.542619199999997,TJ,N2O,3.9,kg/TJ,99.61621487999999,kg -c543cc91-4458-3f51-b9be-5b0ed6cc2655,SESCO,II.1.1,Misiones,AR-N,annual,2012,gas oil combustion consumption by public passenger transport,251.02204428,TJ,CO2,74100.0,kg/TJ,18600733.481148,kg -777af6e0-015a-341d-ad95-0b055ac6df6e,SESCO,II.1.1,Misiones,AR-N,annual,2012,gas oil combustion consumption by public passenger transport,251.02204428,TJ,CH4,3.9,kg/TJ,978.9859726919999,kg -777af6e0-015a-341d-ad95-0b055ac6df6e,SESCO,II.1.1,Misiones,AR-N,annual,2012,gas oil combustion consumption by public passenger transport,251.02204428,TJ,N2O,3.9,kg/TJ,978.9859726919999,kg -92be0c30-56ff-3407-884a-72878bf1c458,SESCO,II.1.1,Neuquén,AR-Q,annual,2012,gas oil combustion consumption by public passenger transport,8.4426888,TJ,CO2,74100.0,kg/TJ,625603.24008,kg -7a1f95d0-ae0d-3610-bee6-47697a544111,SESCO,II.1.1,Neuquén,AR-Q,annual,2012,gas oil combustion consumption by public passenger transport,8.4426888,TJ,CH4,3.9,kg/TJ,32.92648632,kg -7a1f95d0-ae0d-3610-bee6-47697a544111,SESCO,II.1.1,Neuquén,AR-Q,annual,2012,gas oil combustion consumption by public passenger transport,8.4426888,TJ,N2O,3.9,kg/TJ,32.92648632,kg -e58db8eb-f32b-344f-8ea0-141e5ddc2e90,SESCO,II.1.1,Rio Negro,AR-R,annual,2012,gas oil combustion consumption by public passenger transport,28.49868,TJ,CO2,74100.0,kg/TJ,2111752.188,kg -3cf112cf-8b0a-396f-8068-d71aaf51fc2c,SESCO,II.1.1,Rio Negro,AR-R,annual,2012,gas oil combustion consumption by public passenger transport,28.49868,TJ,CH4,3.9,kg/TJ,111.144852,kg -3cf112cf-8b0a-396f-8068-d71aaf51fc2c,SESCO,II.1.1,Rio Negro,AR-R,annual,2012,gas oil combustion consumption by public passenger transport,28.49868,TJ,N2O,3.9,kg/TJ,111.144852,kg -56f64520-61f0-3759-9691-8a32b40e300b,SESCO,II.1.1,Salta,AR-A,annual,2012,gas oil combustion consumption by public passenger transport,4.815879600000001,TJ,CO2,74100.0,kg/TJ,356856.67836,kg -6af7e95f-b462-3150-b3aa-176fb67c085d,SESCO,II.1.1,Salta,AR-A,annual,2012,gas oil combustion consumption by public passenger transport,4.815879600000001,TJ,CH4,3.9,kg/TJ,18.781930440000004,kg -6af7e95f-b462-3150-b3aa-176fb67c085d,SESCO,II.1.1,Salta,AR-A,annual,2012,gas oil combustion consumption by public passenger transport,4.815879600000001,TJ,N2O,3.9,kg/TJ,18.781930440000004,kg -fd2d2353-2ace-3c0c-9819-720d3b2c3097,SESCO,II.1.1,San Juan,AR-J,annual,2012,gas oil combustion consumption by public passenger transport,2.74512,TJ,CO2,74100.0,kg/TJ,203413.392,kg -bda9f380-90c6-3e58-bbe8-f714ebf55d2b,SESCO,II.1.1,San Juan,AR-J,annual,2012,gas oil combustion consumption by public passenger transport,2.74512,TJ,CH4,3.9,kg/TJ,10.705968,kg -bda9f380-90c6-3e58-bbe8-f714ebf55d2b,SESCO,II.1.1,San Juan,AR-J,annual,2012,gas oil combustion consumption by public passenger transport,2.74512,TJ,N2O,3.9,kg/TJ,10.705968,kg -975b640a-a248-37f7-ba4c-3afa8368dffd,SESCO,II.1.1,San Luis,AR-D,annual,2012,gas oil combustion consumption by public passenger transport,9.299094000000002,TJ,CO2,74100.0,kg/TJ,689062.8654000001,kg -39c8e01e-d5fc-3bc4-a724-267d615e92a1,SESCO,II.1.1,San Luis,AR-D,annual,2012,gas oil combustion consumption by public passenger transport,9.299094000000002,TJ,CH4,3.9,kg/TJ,36.26646660000001,kg -39c8e01e-d5fc-3bc4-a724-267d615e92a1,SESCO,II.1.1,San Luis,AR-D,annual,2012,gas oil combustion consumption by public passenger transport,9.299094000000002,TJ,N2O,3.9,kg/TJ,36.26646660000001,kg -aa183dae-96c3-3cd2-a01a-94b636527639,SESCO,II.1.1,Santa Fe,AR-S,annual,2012,gas oil combustion consumption by public passenger transport,77.7306012,TJ,CO2,74100.0,kg/TJ,5759837.54892,kg -a08f5b85-66ce-3c39-b720-7addfafa9f75,SESCO,II.1.1,Santa Fe,AR-S,annual,2012,gas oil combustion consumption by public passenger transport,77.7306012,TJ,CH4,3.9,kg/TJ,303.14934467999996,kg -a08f5b85-66ce-3c39-b720-7addfafa9f75,SESCO,II.1.1,Santa Fe,AR-S,annual,2012,gas oil combustion consumption by public passenger transport,77.7306012,TJ,N2O,3.9,kg/TJ,303.14934467999996,kg -209989f8-bf91-3796-8779-55419d3a8aea,SESCO,II.1.1,Buenos Aires,AR-B,annual,2012,gas oil combustion consumption by public passenger transport,0.187824,TJ,CO2,74100.0,kg/TJ,13917.758399999999,kg -793ac937-1ea5-3078-aa7e-fbdf6d4ba891,SESCO,II.1.1,Buenos Aires,AR-B,annual,2012,gas oil combustion consumption by public passenger transport,0.187824,TJ,CH4,3.9,kg/TJ,0.7325136,kg -793ac937-1ea5-3078-aa7e-fbdf6d4ba891,SESCO,II.1.1,Buenos Aires,AR-B,annual,2012,gas oil combustion consumption by public passenger transport,0.187824,TJ,N2O,3.9,kg/TJ,0.7325136,kg -abd119b7-71da-3c4b-9b9e-634fa55efe2b,SESCO,II.1.1,Capital Federal,AR-C,annual,2012,gas oil combustion consumption by public passenger transport,14.97174,TJ,CO2,74100.0,kg/TJ,1109405.9340000001,kg -e01ed4b3-436b-34cd-8c26-4d4aef187bac,SESCO,II.1.1,Capital Federal,AR-C,annual,2012,gas oil combustion consumption by public passenger transport,14.97174,TJ,CH4,3.9,kg/TJ,58.389786,kg -e01ed4b3-436b-34cd-8c26-4d4aef187bac,SESCO,II.1.1,Capital Federal,AR-C,annual,2012,gas oil combustion consumption by public passenger transport,14.97174,TJ,N2O,3.9,kg/TJ,58.389786,kg -0b791362-7e8f-3bdc-bff5-3104f73090bb,SESCO,II.1.1,Chubut,AR-U,annual,2012,gas oil combustion consumption by public passenger transport,0.166152,TJ,CO2,74100.0,kg/TJ,12311.8632,kg -f74310d9-e7bd-32e4-a5e1-513c75b03779,SESCO,II.1.1,Chubut,AR-U,annual,2012,gas oil combustion consumption by public passenger transport,0.166152,TJ,CH4,3.9,kg/TJ,0.6479927999999999,kg -f74310d9-e7bd-32e4-a5e1-513c75b03779,SESCO,II.1.1,Chubut,AR-U,annual,2012,gas oil combustion consumption by public passenger transport,0.166152,TJ,N2O,3.9,kg/TJ,0.6479927999999999,kg -d78b322d-6716-31db-ae69-12dbfb35ddd4,SESCO,II.1.1,Córdoba,AR-X,annual,2012,gas oil combustion consumption by public passenger transport,0.1459248,TJ,CO2,74100.0,kg/TJ,10813.02768,kg -8963ae0b-b78c-3c35-b0cd-e546e82ecef3,SESCO,II.1.1,Córdoba,AR-X,annual,2012,gas oil combustion consumption by public passenger transport,0.1459248,TJ,CH4,3.9,kg/TJ,0.56910672,kg -8963ae0b-b78c-3c35-b0cd-e546e82ecef3,SESCO,II.1.1,Córdoba,AR-X,annual,2012,gas oil combustion consumption by public passenger transport,0.1459248,TJ,N2O,3.9,kg/TJ,0.56910672,kg -028f90d3-cc77-3d44-b9dc-9a6804fc78de,SESCO,II.1.1,Entre Rios,AR-E,annual,2012,gas oil combustion consumption by public passenger transport,13.5905112,TJ,CO2,74100.0,kg/TJ,1007056.87992,kg -4cf0849e-1ad0-328a-a8fb-c82eeb599c50,SESCO,II.1.1,Entre Rios,AR-E,annual,2012,gas oil combustion consumption by public passenger transport,13.5905112,TJ,CH4,3.9,kg/TJ,53.002993679999996,kg -4cf0849e-1ad0-328a-a8fb-c82eeb599c50,SESCO,II.1.1,Entre Rios,AR-E,annual,2012,gas oil combustion consumption by public passenger transport,13.5905112,TJ,N2O,3.9,kg/TJ,53.002993679999996,kg -655c40eb-ff36-36b4-b38c-4e6a3b286e66,SESCO,II.1.1,Mendoza,AR-M,annual,2012,gas oil combustion consumption by public passenger transport,0.0093912,TJ,CO2,74100.0,kg/TJ,695.88792,kg -74f8838d-da0c-3cfd-9ee6-7ee750df7d6a,SESCO,II.1.1,Mendoza,AR-M,annual,2012,gas oil combustion consumption by public passenger transport,0.0093912,TJ,CH4,3.9,kg/TJ,0.03662568,kg -74f8838d-da0c-3cfd-9ee6-7ee750df7d6a,SESCO,II.1.1,Mendoza,AR-M,annual,2012,gas oil combustion consumption by public passenger transport,0.0093912,TJ,N2O,3.9,kg/TJ,0.03662568,kg -b001bb9a-730b-36b2-baa6-d7aecaa242f1,SESCO,II.1.1,Neuquén,AR-Q,annual,2012,gas oil combustion consumption by public passenger transport,0.0057792,TJ,CO2,74100.0,kg/TJ,428.23872,kg -9cb0e2d6-a6d7-3297-a04e-5cc1c73532b0,SESCO,II.1.1,Neuquén,AR-Q,annual,2012,gas oil combustion consumption by public passenger transport,0.0057792,TJ,CH4,3.9,kg/TJ,0.02253888,kg -9cb0e2d6-a6d7-3297-a04e-5cc1c73532b0,SESCO,II.1.1,Neuquén,AR-Q,annual,2012,gas oil combustion consumption by public passenger transport,0.0057792,TJ,N2O,3.9,kg/TJ,0.02253888,kg -53ee0eef-d411-34c8-b139-89b5187ff052,SESCO,II.1.1,Salta,AR-A,annual,2012,gas oil combustion consumption by public passenger transport,0.03612,TJ,CO2,74100.0,kg/TJ,2676.4919999999997,kg -79a9c050-79d6-37f1-9982-1fee1612bbcb,SESCO,II.1.1,Salta,AR-A,annual,2012,gas oil combustion consumption by public passenger transport,0.03612,TJ,CH4,3.9,kg/TJ,0.140868,kg -79a9c050-79d6-37f1-9982-1fee1612bbcb,SESCO,II.1.1,Salta,AR-A,annual,2012,gas oil combustion consumption by public passenger transport,0.03612,TJ,N2O,3.9,kg/TJ,0.140868,kg -fabe2e97-510d-3a64-b097-abffe74f3787,SESCO,II.1.1,Santa Fe,AR-S,annual,2012,gas oil combustion consumption by public passenger transport,0.2232216,TJ,CO2,74100.0,kg/TJ,16540.720559999998,kg -6aa71744-1247-3b34-8ddd-e088a9bfaa6a,SESCO,II.1.1,Santa Fe,AR-S,annual,2012,gas oil combustion consumption by public passenger transport,0.2232216,TJ,CH4,3.9,kg/TJ,0.87056424,kg -6aa71744-1247-3b34-8ddd-e088a9bfaa6a,SESCO,II.1.1,Santa Fe,AR-S,annual,2012,gas oil combustion consumption by public passenger transport,0.2232216,TJ,N2O,3.9,kg/TJ,0.87056424,kg -403eaf84-ea1a-3a7f-8109-b267c3b1cc68,SESCO,II.5.1,Buenos Aires,AR-B,annual,2012,gas oil combustion consumption by agriculture machines,326.516604372,TJ,CO2,74100.0,kg/TJ,24194880.3839652,kg -6bf8e381-c0fe-3269-b903-4aac9399b16d,SESCO,II.5.1,Buenos Aires,AR-B,annual,2012,gas oil combustion consumption by agriculture machines,326.516604372,TJ,CH4,3.9,kg/TJ,1273.4147570508,kg -6bf8e381-c0fe-3269-b903-4aac9399b16d,SESCO,II.5.1,Buenos Aires,AR-B,annual,2012,gas oil combustion consumption by agriculture machines,326.516604372,TJ,N2O,3.9,kg/TJ,1273.4147570508,kg -8220feed-85e4-3024-a68f-39482e9635b7,SESCO,II.5.1,Córdoba,AR-X,annual,2012,gas oil combustion consumption by agriculture machines,581.197153152,TJ,CO2,74100.0,kg/TJ,43066709.048563205,kg -2eb86554-12b5-36b1-b4fc-aafc6d78a8b4,SESCO,II.5.1,Córdoba,AR-X,annual,2012,gas oil combustion consumption by agriculture machines,581.197153152,TJ,CH4,3.9,kg/TJ,2266.6688972928,kg -2eb86554-12b5-36b1-b4fc-aafc6d78a8b4,SESCO,II.5.1,Córdoba,AR-X,annual,2012,gas oil combustion consumption by agriculture machines,581.197153152,TJ,N2O,3.9,kg/TJ,2266.6688972928,kg -626bb670-e581-30fa-a70a-63bde79874ac,SESCO,II.5.1,Entre Rios,AR-E,annual,2012,gas oil combustion consumption by agriculture machines,602.131441884,TJ,CO2,74100.0,kg/TJ,44617939.8436044,kg -5db6a5f4-e46c-325b-8ae3-bd7ff3e20fc4,SESCO,II.5.1,Entre Rios,AR-E,annual,2012,gas oil combustion consumption by agriculture machines,602.131441884,TJ,CH4,3.9,kg/TJ,2348.3126233476,kg -5db6a5f4-e46c-325b-8ae3-bd7ff3e20fc4,SESCO,II.5.1,Entre Rios,AR-E,annual,2012,gas oil combustion consumption by agriculture machines,602.131441884,TJ,N2O,3.9,kg/TJ,2348.3126233476,kg -9d3dbade-9e2b-30f8-be9e-82cf561bb19a,SESCO,II.5.1,La Pampa,AR-L,annual,2012,gas oil combustion consumption by agriculture machines,18.09805242,TJ,CO2,74100.0,kg/TJ,1341065.6843219998,kg -634de0a3-0eba-3ca0-9a62-664084d7ceae,SESCO,II.5.1,La Pampa,AR-L,annual,2012,gas oil combustion consumption by agriculture machines,18.09805242,TJ,CH4,3.9,kg/TJ,70.582404438,kg -634de0a3-0eba-3ca0-9a62-664084d7ceae,SESCO,II.5.1,La Pampa,AR-L,annual,2012,gas oil combustion consumption by agriculture machines,18.09805242,TJ,N2O,3.9,kg/TJ,70.582404438,kg -1544019a-dcaf-3373-bc03-d3785eafff89,SESCO,II.5.1,Santa Fe,AR-S,annual,2012,gas oil combustion consumption by agriculture machines,452.237108064,TJ,CO2,74100.0,kg/TJ,33510769.707542397,kg -6eab9214-91d5-36db-88c6-276f0d0e2e31,SESCO,II.5.1,Santa Fe,AR-S,annual,2012,gas oil combustion consumption by agriculture machines,452.237108064,TJ,CH4,3.9,kg/TJ,1763.7247214495999,kg -6eab9214-91d5-36db-88c6-276f0d0e2e31,SESCO,II.5.1,Santa Fe,AR-S,annual,2012,gas oil combustion consumption by agriculture machines,452.237108064,TJ,N2O,3.9,kg/TJ,1763.7247214495999,kg -d78aef6d-c8da-3b4d-b473-e92383b1fccc,SESCO,II.5.1,Santiago del Estero,AR-G,annual,2012,gas oil combustion consumption by agriculture machines,111.05105919600001,TJ,CO2,74100.0,kg/TJ,8228883.4864236,kg -32243880-79d0-3b06-9d70-81fe7879b0b8,SESCO,II.5.1,Santiago del Estero,AR-G,annual,2012,gas oil combustion consumption by agriculture machines,111.05105919600001,TJ,CH4,3.9,kg/TJ,433.0991308644,kg -32243880-79d0-3b06-9d70-81fe7879b0b8,SESCO,II.5.1,Santiago del Estero,AR-G,annual,2012,gas oil combustion consumption by agriculture machines,111.05105919600001,TJ,N2O,3.9,kg/TJ,433.0991308644,kg -cc4eddfd-66d4-313a-ae76-b1d08936d767,SESCO,II.1.1,Buenos Aires,AR-B,annual,2012,gas oil combustion consumption by to the public,4715.930553767999,TJ,CO2,74100.0,kg/TJ,349450454.0342088,kg -71a7cfff-6308-3a6f-a356-b0703f215140,SESCO,II.1.1,Buenos Aires,AR-B,annual,2012,gas oil combustion consumption by to the public,4715.930553767999,TJ,CH4,3.9,kg/TJ,18392.129159695196,kg -71a7cfff-6308-3a6f-a356-b0703f215140,SESCO,II.1.1,Buenos Aires,AR-B,annual,2012,gas oil combustion consumption by to the public,4715.930553767999,TJ,N2O,3.9,kg/TJ,18392.129159695196,kg -17d659d0-fc3c-35ea-9897-f8cc10f390d7,SESCO,II.1.1,Capital Federal,AR-C,annual,2012,gas oil combustion consumption by to the public,695.7239785439999,TJ,CO2,74100.0,kg/TJ,51553146.8101104,kg -8326a2a4-d747-3b7d-8549-da2085f3a4c5,SESCO,II.1.1,Capital Federal,AR-C,annual,2012,gas oil combustion consumption by to the public,695.7239785439999,TJ,CH4,3.9,kg/TJ,2713.3235163215995,kg -8326a2a4-d747-3b7d-8549-da2085f3a4c5,SESCO,II.1.1,Capital Federal,AR-C,annual,2012,gas oil combustion consumption by to the public,695.7239785439999,TJ,N2O,3.9,kg/TJ,2713.3235163215995,kg -1b416a4a-212e-3741-a168-860c49d966d6,SESCO,II.1.1,Catamarca,AR-K,annual,2012,gas oil combustion consumption by to the public,143.899165116,TJ,CO2,74100.0,kg/TJ,10662928.1350956,kg -233204cd-5874-359d-8aaa-118bdbdf061d,SESCO,II.1.1,Catamarca,AR-K,annual,2012,gas oil combustion consumption by to the public,143.899165116,TJ,CH4,3.9,kg/TJ,561.2067439524,kg -233204cd-5874-359d-8aaa-118bdbdf061d,SESCO,II.1.1,Catamarca,AR-K,annual,2012,gas oil combustion consumption by to the public,143.899165116,TJ,N2O,3.9,kg/TJ,561.2067439524,kg -fe572fde-1c10-3a1c-a4ee-504f84ae61f6,SESCO,II.1.1,Chaco,AR-H,annual,2012,gas oil combustion consumption by to the public,550.06266672,TJ,CO2,74100.0,kg/TJ,40759643.603952006,kg -a82b2016-3b84-3d76-a462-66c5e225fb30,SESCO,II.1.1,Chaco,AR-H,annual,2012,gas oil combustion consumption by to the public,550.06266672,TJ,CH4,3.9,kg/TJ,2145.244400208,kg -a82b2016-3b84-3d76-a462-66c5e225fb30,SESCO,II.1.1,Chaco,AR-H,annual,2012,gas oil combustion consumption by to the public,550.06266672,TJ,N2O,3.9,kg/TJ,2145.244400208,kg -d299e23f-756e-3acd-929d-efa64ddd00a5,SESCO,II.1.1,Corrientes,AR-W,annual,2012,gas oil combustion consumption by to the public,870.264458448,TJ,CO2,74100.0,kg/TJ,64486596.3709968,kg -1a9ecf1a-8ad5-3781-90fd-63b218b87af7,SESCO,II.1.1,Corrientes,AR-W,annual,2012,gas oil combustion consumption by to the public,870.264458448,TJ,CH4,3.9,kg/TJ,3394.0313879472,kg -1a9ecf1a-8ad5-3781-90fd-63b218b87af7,SESCO,II.1.1,Corrientes,AR-W,annual,2012,gas oil combustion consumption by to the public,870.264458448,TJ,N2O,3.9,kg/TJ,3394.0313879472,kg -1a6e7699-92cb-3e5a-adce-61be1a413b70,SESCO,II.1.1,Córdoba,AR-X,annual,2012,gas oil combustion consumption by to the public,1844.204795832,TJ,CO2,74100.0,kg/TJ,136655575.3711512,kg -3d7a28c4-f47e-3695-83a6-5d3930cce854,SESCO,II.1.1,Córdoba,AR-X,annual,2012,gas oil combustion consumption by to the public,1844.204795832,TJ,CH4,3.9,kg/TJ,7192.3987037448,kg -3d7a28c4-f47e-3695-83a6-5d3930cce854,SESCO,II.1.1,Córdoba,AR-X,annual,2012,gas oil combustion consumption by to the public,1844.204795832,TJ,N2O,3.9,kg/TJ,7192.3987037448,kg -1881c0af-c242-3f1d-88a4-e945a6fad94f,SESCO,II.1.1,Entre Rios,AR-E,annual,2012,gas oil combustion consumption by to the public,1127.551025496,TJ,CO2,74100.0,kg/TJ,83551530.9892536,kg -06a9c1bb-266b-3bea-be93-b13be3c7b0a8,SESCO,II.1.1,Entre Rios,AR-E,annual,2012,gas oil combustion consumption by to the public,1127.551025496,TJ,CH4,3.9,kg/TJ,4397.448999434399,kg -06a9c1bb-266b-3bea-be93-b13be3c7b0a8,SESCO,II.1.1,Entre Rios,AR-E,annual,2012,gas oil combustion consumption by to the public,1127.551025496,TJ,N2O,3.9,kg/TJ,4397.448999434399,kg -0b823031-c103-3ba5-a1ff-e93b23e9e309,SESCO,II.1.1,Formosa,AR-P,annual,2012,gas oil combustion consumption by to the public,52.394162183999995,TJ,CO2,74100.0,kg/TJ,3882407.4178343997,kg -5e91435f-6fff-354b-a64f-bed226c98222,SESCO,II.1.1,Formosa,AR-P,annual,2012,gas oil combustion consumption by to the public,52.394162183999995,TJ,CH4,3.9,kg/TJ,204.33723251759997,kg -5e91435f-6fff-354b-a64f-bed226c98222,SESCO,II.1.1,Formosa,AR-P,annual,2012,gas oil combustion consumption by to the public,52.394162183999995,TJ,N2O,3.9,kg/TJ,204.33723251759997,kg -164dae26-2dc6-337c-9a72-816c11d32f3c,SESCO,II.1.1,Jujuy,AR-Y,annual,2012,gas oil combustion consumption by to the public,31.133330592,TJ,CO2,74100.0,kg/TJ,2306979.7968672,kg -badd1138-9548-31b7-b8fc-e1c19f0d0325,SESCO,II.1.1,Jujuy,AR-Y,annual,2012,gas oil combustion consumption by to the public,31.133330592,TJ,CH4,3.9,kg/TJ,121.4199893088,kg -badd1138-9548-31b7-b8fc-e1c19f0d0325,SESCO,II.1.1,Jujuy,AR-Y,annual,2012,gas oil combustion consumption by to the public,31.133330592,TJ,N2O,3.9,kg/TJ,121.4199893088,kg -c785889c-2ece-304c-873a-227593ab1634,SESCO,II.1.1,La Pampa,AR-L,annual,2012,gas oil combustion consumption by to the public,95.268945324,TJ,CO2,74100.0,kg/TJ,7059428.8485084,kg -53b6119a-ac3d-3e73-8205-e7e5a72afd78,SESCO,II.1.1,La Pampa,AR-L,annual,2012,gas oil combustion consumption by to the public,95.268945324,TJ,CH4,3.9,kg/TJ,371.54888676359997,kg -53b6119a-ac3d-3e73-8205-e7e5a72afd78,SESCO,II.1.1,La Pampa,AR-L,annual,2012,gas oil combustion consumption by to the public,95.268945324,TJ,N2O,3.9,kg/TJ,371.54888676359997,kg -0db7e250-3d18-38e9-af46-309b05d01312,SESCO,II.1.1,La Rioja,AR-F,annual,2012,gas oil combustion consumption by to the public,67.759140624,TJ,CO2,74100.0,kg/TJ,5020952.320238399,kg -aabdfa1b-153f-3203-80c3-150c0716fbe7,SESCO,II.1.1,La Rioja,AR-F,annual,2012,gas oil combustion consumption by to the public,67.759140624,TJ,CH4,3.9,kg/TJ,264.26064843359995,kg -aabdfa1b-153f-3203-80c3-150c0716fbe7,SESCO,II.1.1,La Rioja,AR-F,annual,2012,gas oil combustion consumption by to the public,67.759140624,TJ,N2O,3.9,kg/TJ,264.26064843359995,kg -bf8e78ac-b30d-3f66-a47b-d352d3483d9c,SESCO,II.1.1,Mendoza,AR-M,annual,2012,gas oil combustion consumption by to the public,607.225842804,TJ,CO2,74100.0,kg/TJ,44995434.9517764,kg -901411bc-b738-3973-9dc6-e003bd2684f0,SESCO,II.1.1,Mendoza,AR-M,annual,2012,gas oil combustion consumption by to the public,607.225842804,TJ,CH4,3.9,kg/TJ,2368.1807869356,kg -901411bc-b738-3973-9dc6-e003bd2684f0,SESCO,II.1.1,Mendoza,AR-M,annual,2012,gas oil combustion consumption by to the public,607.225842804,TJ,N2O,3.9,kg/TJ,2368.1807869356,kg -859b7ae6-bbb5-31da-b6ef-631e4bab412f,SESCO,II.1.1,Misiones,AR-N,annual,2012,gas oil combustion consumption by to the public,281.914169124,TJ,CO2,74100.0,kg/TJ,20889839.9320884,kg -5c3c3d2c-84b8-3eac-9ad1-c89a36f3001f,SESCO,II.1.1,Misiones,AR-N,annual,2012,gas oil combustion consumption by to the public,281.914169124,TJ,CH4,3.9,kg/TJ,1099.4652595836,kg -5c3c3d2c-84b8-3eac-9ad1-c89a36f3001f,SESCO,II.1.1,Misiones,AR-N,annual,2012,gas oil combustion consumption by to the public,281.914169124,TJ,N2O,3.9,kg/TJ,1099.4652595836,kg -c70e176c-459b-3ca1-98b4-4bacf0decb6c,SESCO,II.1.1,Rio Negro,AR-R,annual,2012,gas oil combustion consumption by to the public,0.143457804,TJ,CO2,74100.0,kg/TJ,10630.2232764,kg -5e954829-5dc7-3f73-9916-f2d3df48c565,SESCO,II.1.1,Rio Negro,AR-R,annual,2012,gas oil combustion consumption by to the public,0.143457804,TJ,CH4,3.9,kg/TJ,0.5594854356,kg -5e954829-5dc7-3f73-9916-f2d3df48c565,SESCO,II.1.1,Rio Negro,AR-R,annual,2012,gas oil combustion consumption by to the public,0.143457804,TJ,N2O,3.9,kg/TJ,0.5594854356,kg -a6b71442-6703-3c86-9dc7-8e7e8be144f6,SESCO,II.1.1,San Juan,AR-J,annual,2012,gas oil combustion consumption by to the public,430.960047756,TJ,CO2,74100.0,kg/TJ,31934139.5387196,kg -34cdd5a8-4ed2-349c-890f-0163928e8c15,SESCO,II.1.1,San Juan,AR-J,annual,2012,gas oil combustion consumption by to the public,430.960047756,TJ,CH4,3.9,kg/TJ,1680.7441862484,kg -34cdd5a8-4ed2-349c-890f-0163928e8c15,SESCO,II.1.1,San Juan,AR-J,annual,2012,gas oil combustion consumption by to the public,430.960047756,TJ,N2O,3.9,kg/TJ,1680.7441862484,kg -15aaf909-6e62-3d12-82af-43edf9c5f066,SESCO,II.1.1,San Luis,AR-D,annual,2012,gas oil combustion consumption by to the public,279.096068664,TJ,CO2,74100.0,kg/TJ,20681018.688002396,kg -453fd0ab-9a80-3bc0-acc1-d61286c72ec1,SESCO,II.1.1,San Luis,AR-D,annual,2012,gas oil combustion consumption by to the public,279.096068664,TJ,CH4,3.9,kg/TJ,1088.4746677895998,kg -453fd0ab-9a80-3bc0-acc1-d61286c72ec1,SESCO,II.1.1,San Luis,AR-D,annual,2012,gas oil combustion consumption by to the public,279.096068664,TJ,N2O,3.9,kg/TJ,1088.4746677895998,kg -0af4af0c-9c32-3b06-921b-91818db9c64c,SESCO,II.1.1,Santa Fe,AR-S,annual,2012,gas oil combustion consumption by to the public,3794.0231243880003,TJ,CO2,74100.0,kg/TJ,281137113.5171508,kg -a5966600-154e-3fd3-a57d-8820ad96752a,SESCO,II.1.1,Santa Fe,AR-S,annual,2012,gas oil combustion consumption by to the public,3794.0231243880003,TJ,CH4,3.9,kg/TJ,14796.6901851132,kg -a5966600-154e-3fd3-a57d-8820ad96752a,SESCO,II.1.1,Santa Fe,AR-S,annual,2012,gas oil combustion consumption by to the public,3794.0231243880003,TJ,N2O,3.9,kg/TJ,14796.6901851132,kg -a9e5f523-3b41-3a8e-a812-0f10d2b33d61,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2012,gas oil combustion consumption by to the public,204.80003879999998,TJ,CO2,74100.0,kg/TJ,15175682.875079999,kg -ada23966-fd1d-3adf-9ca6-e2161d04615e,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2012,gas oil combustion consumption by to the public,204.80003879999998,TJ,CH4,3.9,kg/TJ,798.7201513199999,kg -ada23966-fd1d-3adf-9ca6-e2161d04615e,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2012,gas oil combustion consumption by to the public,204.80003879999998,TJ,N2O,3.9,kg/TJ,798.7201513199999,kg -dd499800-f846-34e9-86e3-7012add1a0ed,SESCO,II.1.1,Tucuman,AR-T,annual,2012,gas oil combustion consumption by to the public,469.347516876,TJ,CO2,74100.0,kg/TJ,34778651.0005116,kg -a769a79e-cc0b-34cd-bd0f-e1963cc736b0,SESCO,II.1.1,Tucuman,AR-T,annual,2012,gas oil combustion consumption by to the public,469.347516876,TJ,CH4,3.9,kg/TJ,1830.4553158164,kg -a769a79e-cc0b-34cd-bd0f-e1963cc736b0,SESCO,II.1.1,Tucuman,AR-T,annual,2012,gas oil combustion consumption by to the public,469.347516876,TJ,N2O,3.9,kg/TJ,1830.4553158164,kg -0d197305-e262-3a89-9fe9-14448aada770,SESCO,II.1.1,Buenos Aires,AR-B,annual,2012,gas oil combustion consumption by public passenger transport,183.97929328799998,TJ,CO2,74100.0,kg/TJ,13632865.632640798,kg -fef6a88d-fd90-3062-9291-6d0ce2129e68,SESCO,II.1.1,Buenos Aires,AR-B,annual,2012,gas oil combustion consumption by public passenger transport,183.97929328799998,TJ,CH4,3.9,kg/TJ,717.5192438231999,kg -fef6a88d-fd90-3062-9291-6d0ce2129e68,SESCO,II.1.1,Buenos Aires,AR-B,annual,2012,gas oil combustion consumption by public passenger transport,183.97929328799998,TJ,N2O,3.9,kg/TJ,717.5192438231999,kg -201e0e45-73e4-31fd-9157-cf787f1d4be6,SESCO,II.1.1,Capital Federal,AR-C,annual,2012,gas oil combustion consumption by public passenger transport,2.5117847999999996,TJ,CO2,74100.0,kg/TJ,186123.25367999997,kg -a4627bdd-b6b3-3568-a6eb-6f0c071ecab8,SESCO,II.1.1,Capital Federal,AR-C,annual,2012,gas oil combustion consumption by public passenger transport,2.5117847999999996,TJ,CH4,3.9,kg/TJ,9.795960719999998,kg -a4627bdd-b6b3-3568-a6eb-6f0c071ecab8,SESCO,II.1.1,Capital Federal,AR-C,annual,2012,gas oil combustion consumption by public passenger transport,2.5117847999999996,TJ,N2O,3.9,kg/TJ,9.795960719999998,kg -d01bb936-5142-34d9-abab-59513d6f9cdd,SESCO,II.1.1,Corrientes,AR-W,annual,2012,gas oil combustion consumption by public passenger transport,6.182021076,TJ,CO2,74100.0,kg/TJ,458087.7617316,kg -cb642e42-b11b-3585-a8f3-ffac54380f7b,SESCO,II.1.1,Corrientes,AR-W,annual,2012,gas oil combustion consumption by public passenger transport,6.182021076,TJ,CH4,3.9,kg/TJ,24.109882196399997,kg -cb642e42-b11b-3585-a8f3-ffac54380f7b,SESCO,II.1.1,Corrientes,AR-W,annual,2012,gas oil combustion consumption by public passenger transport,6.182021076,TJ,N2O,3.9,kg/TJ,24.109882196399997,kg -5c16b767-ba74-3a2f-9d3c-f96c22527b41,SESCO,II.1.1,Córdoba,AR-X,annual,2012,gas oil combustion consumption by public passenger transport,79.173457944,TJ,CO2,74100.0,kg/TJ,5866753.2336504,kg -aacb3ba9-d7cb-3a2d-be1c-7a7eda20ec36,SESCO,II.1.1,Córdoba,AR-X,annual,2012,gas oil combustion consumption by public passenger transport,79.173457944,TJ,CH4,3.9,kg/TJ,308.7764859816,kg -aacb3ba9-d7cb-3a2d-be1c-7a7eda20ec36,SESCO,II.1.1,Córdoba,AR-X,annual,2012,gas oil combustion consumption by public passenger transport,79.173457944,TJ,N2O,3.9,kg/TJ,308.7764859816,kg -d454bf1e-1641-321e-bcd9-90f0c1b6acc9,SESCO,II.1.1,Entre Rios,AR-E,annual,2012,gas oil combustion consumption by public passenger transport,48.418350708,TJ,CO2,74100.0,kg/TJ,3587799.7874628,kg -c27f8a3a-6d61-3013-a0a5-22767379a5dc,SESCO,II.1.1,Entre Rios,AR-E,annual,2012,gas oil combustion consumption by public passenger transport,48.418350708,TJ,CH4,3.9,kg/TJ,188.83156776119998,kg -c27f8a3a-6d61-3013-a0a5-22767379a5dc,SESCO,II.1.1,Entre Rios,AR-E,annual,2012,gas oil combustion consumption by public passenger transport,48.418350708,TJ,N2O,3.9,kg/TJ,188.83156776119998,kg -99e6b816-f6e4-3120-90a2-a3fb5329a523,SESCO,II.1.1,Jujuy,AR-Y,annual,2012,gas oil combustion consumption by public passenger transport,34.054799268000004,TJ,CO2,74100.0,kg/TJ,2523460.6257588,kg -1223d03f-9131-3887-8b6e-1ff7dad69aa9,SESCO,II.1.1,Jujuy,AR-Y,annual,2012,gas oil combustion consumption by public passenger transport,34.054799268000004,TJ,CH4,3.9,kg/TJ,132.8137171452,kg -1223d03f-9131-3887-8b6e-1ff7dad69aa9,SESCO,II.1.1,Jujuy,AR-Y,annual,2012,gas oil combustion consumption by public passenger transport,34.054799268000004,TJ,N2O,3.9,kg/TJ,132.8137171452,kg -458eb68d-43fe-320b-9f52-d98d69a9589f,SESCO,II.1.1,Misiones,AR-N,annual,2012,gas oil combustion consumption by public passenger transport,23.190517307999997,TJ,CO2,74100.0,kg/TJ,1718417.3325227997,kg -4b9380e7-78e7-38f0-a812-c6891a6880b8,SESCO,II.1.1,Misiones,AR-N,annual,2012,gas oil combustion consumption by public passenger transport,23.190517307999997,TJ,CH4,3.9,kg/TJ,90.44301750119999,kg -4b9380e7-78e7-38f0-a812-c6891a6880b8,SESCO,II.1.1,Misiones,AR-N,annual,2012,gas oil combustion consumption by public passenger transport,23.190517307999997,TJ,N2O,3.9,kg/TJ,90.44301750119999,kg -ca935c8d-0760-351a-a384-061f034a4d9c,SESCO,II.1.1,Salta,AR-A,annual,2012,gas oil combustion consumption by public passenger transport,13.618551155999999,TJ,CO2,74100.0,kg/TJ,1009134.6406595999,kg -8d367e2d-549e-3a28-9f66-05cd3e6a8459,SESCO,II.1.1,Salta,AR-A,annual,2012,gas oil combustion consumption by public passenger transport,13.618551155999999,TJ,CH4,3.9,kg/TJ,53.112349508399994,kg -8d367e2d-549e-3a28-9f66-05cd3e6a8459,SESCO,II.1.1,Salta,AR-A,annual,2012,gas oil combustion consumption by public passenger transport,13.618551155999999,TJ,N2O,3.9,kg/TJ,53.112349508399994,kg -3e023cab-7119-3ce9-bf72-02076853a251,SESCO,II.1.1,San Juan,AR-J,annual,2012,gas oil combustion consumption by public passenger transport,6.250609344,TJ,CO2,74100.0,kg/TJ,463170.1523904,kg -a6cc0616-e7ae-345b-ad0a-6fb0ac6d9e78,SESCO,II.1.1,San Juan,AR-J,annual,2012,gas oil combustion consumption by public passenger transport,6.250609344,TJ,CH4,3.9,kg/TJ,24.3773764416,kg -a6cc0616-e7ae-345b-ad0a-6fb0ac6d9e78,SESCO,II.1.1,San Juan,AR-J,annual,2012,gas oil combustion consumption by public passenger transport,6.250609344,TJ,N2O,3.9,kg/TJ,24.3773764416,kg -431510fc-f4ac-3b4d-93f9-9e7f13d6644e,SESCO,II.1.1,Santa Fe,AR-S,annual,2012,gas oil combustion consumption by public passenger transport,424.183831008,TJ,CO2,74100.0,kg/TJ,31432021.877692804,kg -880b143d-5e79-3842-b7c4-5c7b52e0566f,SESCO,II.1.1,Santa Fe,AR-S,annual,2012,gas oil combustion consumption by public passenger transport,424.183831008,TJ,CH4,3.9,kg/TJ,1654.3169409312002,kg -880b143d-5e79-3842-b7c4-5c7b52e0566f,SESCO,II.1.1,Santa Fe,AR-S,annual,2012,gas oil combustion consumption by public passenger transport,424.183831008,TJ,N2O,3.9,kg/TJ,1654.3169409312002,kg -9fa79da3-c494-38be-abd6-ff5742fd2c3d,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2012,gas oil combustion consumption by public passenger transport,13.973628816,TJ,CO2,74100.0,kg/TJ,1035445.8952656,kg -76cadee6-3ac3-3f37-9cf9-e772ee34518e,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2012,gas oil combustion consumption by public passenger transport,13.973628816,TJ,CH4,3.9,kg/TJ,54.497152382399996,kg -76cadee6-3ac3-3f37-9cf9-e772ee34518e,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2012,gas oil combustion consumption by public passenger transport,13.973628816,TJ,N2O,3.9,kg/TJ,54.497152382399996,kg -4d93be0d-8349-37b7-9b3d-30b294597723,SESCO,II.1.1,Tucuman,AR-T,annual,2012,gas oil combustion consumption by public passenger transport,5.578683432,TJ,CO2,74100.0,kg/TJ,413380.4423112,kg -9a551afc-27e9-3393-8598-50d03b7f0924,SESCO,II.1.1,Tucuman,AR-T,annual,2012,gas oil combustion consumption by public passenger transport,5.578683432,TJ,CH4,3.9,kg/TJ,21.7568653848,kg -9a551afc-27e9-3393-8598-50d03b7f0924,SESCO,II.1.1,Tucuman,AR-T,annual,2012,gas oil combustion consumption by public passenger transport,5.578683432,TJ,N2O,3.9,kg/TJ,21.7568653848,kg -c027cfa2-f042-360c-a102-5a3460112d2e,SESCO,II.5.1,Buenos Aires,AR-B,annual,2012,gas oil combustion consumption by agriculture machines,668.0527644,TJ,CO2,74100.0,kg/TJ,49502709.84204,kg -5c886852-3f5d-3c2d-b3ae-18495609e99b,SESCO,II.5.1,Buenos Aires,AR-B,annual,2012,gas oil combustion consumption by agriculture machines,668.0527644,TJ,CH4,3.9,kg/TJ,2605.40578116,kg -5c886852-3f5d-3c2d-b3ae-18495609e99b,SESCO,II.5.1,Buenos Aires,AR-B,annual,2012,gas oil combustion consumption by agriculture machines,668.0527644,TJ,N2O,3.9,kg/TJ,2605.40578116,kg -8ad7faa8-a679-39f6-93ca-e528b11f75d9,SESCO,II.5.1,Córdoba,AR-X,annual,2012,gas oil combustion consumption by agriculture machines,47.80305012,TJ,CO2,74100.0,kg/TJ,3542206.013892,kg -63c4a254-1196-3b0d-b3bc-c9a525cc8abd,SESCO,II.5.1,Córdoba,AR-X,annual,2012,gas oil combustion consumption by agriculture machines,47.80305012,TJ,CH4,3.9,kg/TJ,186.431895468,kg -63c4a254-1196-3b0d-b3bc-c9a525cc8abd,SESCO,II.5.1,Córdoba,AR-X,annual,2012,gas oil combustion consumption by agriculture machines,47.80305012,TJ,N2O,3.9,kg/TJ,186.431895468,kg -4d65d824-c749-3fda-8033-a96fdc111bb6,SESCO,II.5.1,Neuquén,AR-Q,annual,2012,gas oil combustion consumption by agriculture machines,14.72764104,TJ,CO2,74100.0,kg/TJ,1091318.201064,kg -5ce0d0d8-d2fc-3be2-a15e-40f54f0296dc,SESCO,II.5.1,Neuquén,AR-Q,annual,2012,gas oil combustion consumption by agriculture machines,14.72764104,TJ,CH4,3.9,kg/TJ,57.437800056,kg -5ce0d0d8-d2fc-3be2-a15e-40f54f0296dc,SESCO,II.5.1,Neuquén,AR-Q,annual,2012,gas oil combustion consumption by agriculture machines,14.72764104,TJ,N2O,3.9,kg/TJ,57.437800056,kg -07783935-b39c-3669-950b-38029c6f0a1f,SESCO,II.5.1,Rio Negro,AR-R,annual,2012,gas oil combustion consumption by agriculture machines,3.32531556,TJ,CO2,74100.0,kg/TJ,246405.882996,kg -c3c912ef-0bb9-3c13-a10d-8c1acf30f5e3,SESCO,II.5.1,Rio Negro,AR-R,annual,2012,gas oil combustion consumption by agriculture machines,3.32531556,TJ,CH4,3.9,kg/TJ,12.968730683999999,kg -c3c912ef-0bb9-3c13-a10d-8c1acf30f5e3,SESCO,II.5.1,Rio Negro,AR-R,annual,2012,gas oil combustion consumption by agriculture machines,3.32531556,TJ,N2O,3.9,kg/TJ,12.968730683999999,kg -4cbaca26-9308-303e-89e8-c84e1c78418c,SESCO,II.5.1,Santa Cruz,AR-Z,annual,2012,gas oil combustion consumption by agriculture machines,6.126891119999999,TJ,CO2,74100.0,kg/TJ,454002.6319919999,kg -eb602002-8ddd-3c20-bb9d-24e8ab29bb95,SESCO,II.5.1,Santa Cruz,AR-Z,annual,2012,gas oil combustion consumption by agriculture machines,6.126891119999999,TJ,CH4,3.9,kg/TJ,23.894875367999994,kg -eb602002-8ddd-3c20-bb9d-24e8ab29bb95,SESCO,II.5.1,Santa Cruz,AR-Z,annual,2012,gas oil combustion consumption by agriculture machines,6.126891119999999,TJ,N2O,3.9,kg/TJ,23.894875367999994,kg -e155433b-8eef-32cd-b372-d1de5db3e892,SESCO,II.5.1,Santa Fe,AR-S,annual,2012,gas oil combustion consumption by agriculture machines,1.9079667599999999,TJ,CO2,74100.0,kg/TJ,141380.336916,kg -42e29197-369a-3c7a-abe6-7ede4cbcb0a5,SESCO,II.5.1,Santa Fe,AR-S,annual,2012,gas oil combustion consumption by agriculture machines,1.9079667599999999,TJ,CH4,3.9,kg/TJ,7.441070364,kg -42e29197-369a-3c7a-abe6-7ede4cbcb0a5,SESCO,II.5.1,Santa Fe,AR-S,annual,2012,gas oil combustion consumption by agriculture machines,1.9079667599999999,TJ,N2O,3.9,kg/TJ,7.441070364,kg -edf1e65c-92a2-36b4-9d01-54f54849c685,SESCO,II.1.1,Buenos Aires,AR-B,annual,2012,gas oil combustion consumption by to the public,10205.831336399999,TJ,CO2,74100.0,kg/TJ,756252102.0272399,kg -d3dd28c9-9a91-368b-a348-1dc1d18717f1,SESCO,II.1.1,Buenos Aires,AR-B,annual,2012,gas oil combustion consumption by to the public,10205.831336399999,TJ,CH4,3.9,kg/TJ,39802.742211959994,kg -d3dd28c9-9a91-368b-a348-1dc1d18717f1,SESCO,II.1.1,Buenos Aires,AR-B,annual,2012,gas oil combustion consumption by to the public,10205.831336399999,TJ,N2O,3.9,kg/TJ,39802.742211959994,kg -f93db2f3-fa04-39f5-abab-b34fce390d19,SESCO,II.1.1,Capital Federal,AR-C,annual,2012,gas oil combustion consumption by to the public,729.80019336,TJ,CO2,74100.0,kg/TJ,54078194.327975996,kg -7376b7df-bf8e-39da-a719-3ae1ab304098,SESCO,II.1.1,Capital Federal,AR-C,annual,2012,gas oil combustion consumption by to the public,729.80019336,TJ,CH4,3.9,kg/TJ,2846.2207541039998,kg -7376b7df-bf8e-39da-a719-3ae1ab304098,SESCO,II.1.1,Capital Federal,AR-C,annual,2012,gas oil combustion consumption by to the public,729.80019336,TJ,N2O,3.9,kg/TJ,2846.2207541039998,kg -8394c24c-c5b1-3df5-b032-47d422c75d0e,SESCO,II.1.1,Chaco,AR-H,annual,2012,gas oil combustion consumption by to the public,8.28535008,TJ,CO2,74100.0,kg/TJ,613944.440928,kg -a8aed3b4-2671-31ec-a0af-9ff96fad2d55,SESCO,II.1.1,Chaco,AR-H,annual,2012,gas oil combustion consumption by to the public,8.28535008,TJ,CH4,3.9,kg/TJ,32.312865312,kg -a8aed3b4-2671-31ec-a0af-9ff96fad2d55,SESCO,II.1.1,Chaco,AR-H,annual,2012,gas oil combustion consumption by to the public,8.28535008,TJ,N2O,3.9,kg/TJ,32.312865312,kg -d6bad29b-6d42-3f7d-b165-530af30c5f79,SESCO,II.1.1,Chubut,AR-U,annual,2012,gas oil combustion consumption by to the public,1572.08301516,TJ,CO2,74100.0,kg/TJ,116491351.42335601,kg -f4c87919-eb24-3e0c-bee7-26c6f9e5260e,SESCO,II.1.1,Chubut,AR-U,annual,2012,gas oil combustion consumption by to the public,1572.08301516,TJ,CH4,3.9,kg/TJ,6131.123759124,kg -f4c87919-eb24-3e0c-bee7-26c6f9e5260e,SESCO,II.1.1,Chubut,AR-U,annual,2012,gas oil combustion consumption by to the public,1572.08301516,TJ,N2O,3.9,kg/TJ,6131.123759124,kg -1017eabf-c5f7-32e8-b8d9-a52871648118,SESCO,II.1.1,Córdoba,AR-X,annual,2012,gas oil combustion consumption by to the public,719.1002574,TJ,CO2,74100.0,kg/TJ,53285329.07334,kg -33651a3c-7e42-3074-aba9-238a75f483c8,SESCO,II.1.1,Córdoba,AR-X,annual,2012,gas oil combustion consumption by to the public,719.1002574,TJ,CH4,3.9,kg/TJ,2804.49100386,kg -33651a3c-7e42-3074-aba9-238a75f483c8,SESCO,II.1.1,Córdoba,AR-X,annual,2012,gas oil combustion consumption by to the public,719.1002574,TJ,N2O,3.9,kg/TJ,2804.49100386,kg -038e21c5-98ef-337c-bfa9-aac598542c1d,SESCO,II.1.1,Entre Rios,AR-E,annual,2012,gas oil combustion consumption by to the public,470.41564668,TJ,CO2,74100.0,kg/TJ,34857799.418988004,kg -7a2f41a4-6f64-3016-93af-c03a7fa29401,SESCO,II.1.1,Entre Rios,AR-E,annual,2012,gas oil combustion consumption by to the public,470.41564668,TJ,CH4,3.9,kg/TJ,1834.621022052,kg -7a2f41a4-6f64-3016-93af-c03a7fa29401,SESCO,II.1.1,Entre Rios,AR-E,annual,2012,gas oil combustion consumption by to the public,470.41564668,TJ,N2O,3.9,kg/TJ,1834.621022052,kg -83a53744-5de7-3dd8-bba6-49d074f6216e,SESCO,II.1.1,La Pampa,AR-L,annual,2012,gas oil combustion consumption by to the public,609.24640644,TJ,CO2,74100.0,kg/TJ,45145158.717204,kg -5eda157e-23e5-3ca9-a243-5c5ddcefdfcd,SESCO,II.1.1,La Pampa,AR-L,annual,2012,gas oil combustion consumption by to the public,609.24640644,TJ,CH4,3.9,kg/TJ,2376.0609851159998,kg -5eda157e-23e5-3ca9-a243-5c5ddcefdfcd,SESCO,II.1.1,La Pampa,AR-L,annual,2012,gas oil combustion consumption by to the public,609.24640644,TJ,N2O,3.9,kg/TJ,2376.0609851159998,kg -bc704d54-7e57-3bce-9473-95d45130d4cd,SESCO,II.1.1,La Rioja,AR-F,annual,2012,gas oil combustion consumption by to the public,13.25022468,TJ,CO2,74100.0,kg/TJ,981841.648788,kg -f6854bff-fec9-33fd-8068-a9d4ae287e9f,SESCO,II.1.1,La Rioja,AR-F,annual,2012,gas oil combustion consumption by to the public,13.25022468,TJ,CH4,3.9,kg/TJ,51.675876252,kg -f6854bff-fec9-33fd-8068-a9d4ae287e9f,SESCO,II.1.1,La Rioja,AR-F,annual,2012,gas oil combustion consumption by to the public,13.25022468,TJ,N2O,3.9,kg/TJ,51.675876252,kg -0365fd53-cc47-31e5-a567-3b7a7463e984,SESCO,II.1.1,Mendoza,AR-M,annual,2012,gas oil combustion consumption by to the public,53.77975427999999,TJ,CO2,74100.0,kg/TJ,3985079.792147999,kg -74d0ac12-ecb5-3af1-879f-92d32df0c4fa,SESCO,II.1.1,Mendoza,AR-M,annual,2012,gas oil combustion consumption by to the public,53.77975427999999,TJ,CH4,3.9,kg/TJ,209.74104169199995,kg -74d0ac12-ecb5-3af1-879f-92d32df0c4fa,SESCO,II.1.1,Mendoza,AR-M,annual,2012,gas oil combustion consumption by to the public,53.77975427999999,TJ,N2O,3.9,kg/TJ,209.74104169199995,kg -881400ce-8cd4-3370-b4fb-2fafe4ef8402,SESCO,II.1.1,Neuquén,AR-Q,annual,2012,gas oil combustion consumption by to the public,971.6833719599999,TJ,CO2,74100.0,kg/TJ,72001737.862236,kg -8efeb8a1-e2b0-3a9c-9c10-b2b731a26568,SESCO,II.1.1,Neuquén,AR-Q,annual,2012,gas oil combustion consumption by to the public,971.6833719599999,TJ,CH4,3.9,kg/TJ,3789.5651506439995,kg -8efeb8a1-e2b0-3a9c-9c10-b2b731a26568,SESCO,II.1.1,Neuquén,AR-Q,annual,2012,gas oil combustion consumption by to the public,971.6833719599999,TJ,N2O,3.9,kg/TJ,3789.5651506439995,kg -efb7d37d-7780-35d9-a9f8-c8dcc541f3ea,SESCO,II.1.1,Rio Negro,AR-R,annual,2012,gas oil combustion consumption by to the public,1541.00673972,TJ,CO2,74100.0,kg/TJ,114188599.413252,kg -95a036f9-53f8-30bd-90dd-c5dea3eaa005,SESCO,II.1.1,Rio Negro,AR-R,annual,2012,gas oil combustion consumption by to the public,1541.00673972,TJ,CH4,3.9,kg/TJ,6009.926284908,kg -95a036f9-53f8-30bd-90dd-c5dea3eaa005,SESCO,II.1.1,Rio Negro,AR-R,annual,2012,gas oil combustion consumption by to the public,1541.00673972,TJ,N2O,3.9,kg/TJ,6009.926284908,kg -ee0c3b46-f28d-35c9-9606-2d40010a3fe3,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2012,gas oil combustion consumption by to the public,1273.11578856,TJ,CO2,74100.0,kg/TJ,94337879.93229601,kg -e09061e2-40b6-33e2-9d27-7879c00b4eb7,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2012,gas oil combustion consumption by to the public,1273.11578856,TJ,CH4,3.9,kg/TJ,4965.151575384,kg -e09061e2-40b6-33e2-9d27-7879c00b4eb7,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2012,gas oil combustion consumption by to the public,1273.11578856,TJ,N2O,3.9,kg/TJ,4965.151575384,kg -06f55e71-2c00-3e5e-aecf-db08d1596217,SESCO,II.1.1,Santa Fe,AR-S,annual,2012,gas oil combustion consumption by to the public,612.1376679599999,TJ,CO2,74100.0,kg/TJ,45359401.19583599,kg -d2d07261-3a64-3b74-9875-5948cd141e69,SESCO,II.1.1,Santa Fe,AR-S,annual,2012,gas oil combustion consumption by to the public,612.1376679599999,TJ,CH4,3.9,kg/TJ,2387.3369050439996,kg -d2d07261-3a64-3b74-9875-5948cd141e69,SESCO,II.1.1,Santa Fe,AR-S,annual,2012,gas oil combustion consumption by to the public,612.1376679599999,TJ,N2O,3.9,kg/TJ,2387.3369050439996,kg -b7800e38-e5c3-3ab9-ab0b-eae112bdfc8c,SESCO,II.1.1,Buenos Aires,AR-B,annual,2012,gas oil combustion consumption by to the public,594.8588351999999,TJ,CO2,74100.0,kg/TJ,44079039.688319996,kg -8d5d0ca1-2a3e-3f07-a72e-518e18dc364c,SESCO,II.1.1,Buenos Aires,AR-B,annual,2012,gas oil combustion consumption by to the public,594.8588351999999,TJ,CH4,3.9,kg/TJ,2319.9494572799995,kg -8d5d0ca1-2a3e-3f07-a72e-518e18dc364c,SESCO,II.1.1,Buenos Aires,AR-B,annual,2012,gas oil combustion consumption by to the public,594.8588351999999,TJ,N2O,3.9,kg/TJ,2319.9494572799995,kg -b3c3032e-1851-32da-a1b1-4e2171be3572,SESCO,II.1.1,Capital Federal,AR-C,annual,2012,gas oil combustion consumption by to the public,159.92541767999998,TJ,CO2,74100.0,kg/TJ,11850473.450087998,kg -c29e5d03-5637-3649-b1fa-99109571deac,SESCO,II.1.1,Capital Federal,AR-C,annual,2012,gas oil combustion consumption by to the public,159.92541767999998,TJ,CH4,3.9,kg/TJ,623.7091289519999,kg -c29e5d03-5637-3649-b1fa-99109571deac,SESCO,II.1.1,Capital Federal,AR-C,annual,2012,gas oil combustion consumption by to the public,159.92541767999998,TJ,N2O,3.9,kg/TJ,623.7091289519999,kg -8c6b92df-7334-37f9-88ac-6b9f5305dbcb,SESCO,II.1.1,Córdoba,AR-X,annual,2012,gas oil combustion consumption by to the public,60.702224519999994,TJ,CO2,74100.0,kg/TJ,4498034.836932,kg -76721a91-b4aa-39da-8aa5-e6177c55b6df,SESCO,II.1.1,Córdoba,AR-X,annual,2012,gas oil combustion consumption by to the public,60.702224519999994,TJ,CH4,3.9,kg/TJ,236.73867562799998,kg -76721a91-b4aa-39da-8aa5-e6177c55b6df,SESCO,II.1.1,Córdoba,AR-X,annual,2012,gas oil combustion consumption by to the public,60.702224519999994,TJ,N2O,3.9,kg/TJ,236.73867562799998,kg -ae50a024-6c8e-33f9-bb4b-db843aebd916,SESCO,II.1.1,Entre Rios,AR-E,annual,2012,gas oil combustion consumption by to the public,51.907149000000004,TJ,CO2,74100.0,kg/TJ,3846319.7409,kg -8ec407d9-3aec-3a6f-be2e-c010b0b4630d,SESCO,II.1.1,Entre Rios,AR-E,annual,2012,gas oil combustion consumption by to the public,51.907149000000004,TJ,CH4,3.9,kg/TJ,202.4378811,kg -8ec407d9-3aec-3a6f-be2e-c010b0b4630d,SESCO,II.1.1,Entre Rios,AR-E,annual,2012,gas oil combustion consumption by to the public,51.907149000000004,TJ,N2O,3.9,kg/TJ,202.4378811,kg -38aa548f-ac21-396e-acb3-91ed50755114,SESCO,II.1.1,Santa Fe,AR-S,annual,2012,gas oil combustion consumption by to the public,86.56024355999999,TJ,CO2,74100.0,kg/TJ,6414114.047795999,kg -bc7bb53c-6404-3180-aa56-e832117b11ca,SESCO,II.1.1,Santa Fe,AR-S,annual,2012,gas oil combustion consumption by to the public,86.56024355999999,TJ,CH4,3.9,kg/TJ,337.58494988399997,kg -bc7bb53c-6404-3180-aa56-e832117b11ca,SESCO,II.1.1,Santa Fe,AR-S,annual,2012,gas oil combustion consumption by to the public,86.56024355999999,TJ,N2O,3.9,kg/TJ,337.58494988399997,kg -bc7cbfa1-3e1d-37a0-a217-78c43b7dba0f,SESCO,II.2.1,Buenos Aires,AR-B,annual,2012,gas oil combustion consumption by railway transport,35.88345012,TJ,CO2,74100.0,kg/TJ,2658963.6538919997,kg -5ca43814-0b4f-3f64-8a9b-fa128670166b,SESCO,II.2.1,Buenos Aires,AR-B,annual,2012,gas oil combustion consumption by railway transport,35.88345012,TJ,CH4,3.9,kg/TJ,139.945455468,kg -5ca43814-0b4f-3f64-8a9b-fa128670166b,SESCO,II.2.1,Buenos Aires,AR-B,annual,2012,gas oil combustion consumption by railway transport,35.88345012,TJ,N2O,3.9,kg/TJ,139.945455468,kg -aa386918-6aec-3030-a228-e62e8a36ee08,SESCO,II.2.1,La Pampa,AR-L,annual,2012,gas oil combustion consumption by railway transport,8.74613292,TJ,CO2,74100.0,kg/TJ,648088.4493720001,kg -a3db5839-cc39-3758-9382-eda3808442dc,SESCO,II.2.1,La Pampa,AR-L,annual,2012,gas oil combustion consumption by railway transport,8.74613292,TJ,CH4,3.9,kg/TJ,34.109918388000004,kg -a3db5839-cc39-3758-9382-eda3808442dc,SESCO,II.2.1,La Pampa,AR-L,annual,2012,gas oil combustion consumption by railway transport,8.74613292,TJ,N2O,3.9,kg/TJ,34.109918388000004,kg -9d030060-e9b9-39ea-8cd2-cb004fe45cae,SESCO,II.2.1,Rio Negro,AR-R,annual,2012,gas oil combustion consumption by railway transport,5.8570386,TJ,CO2,74100.0,kg/TJ,434006.56026,kg -0d3a520b-e658-3021-aad9-b10d94ec672d,SESCO,II.2.1,Rio Negro,AR-R,annual,2012,gas oil combustion consumption by railway transport,5.8570386,TJ,CH4,3.9,kg/TJ,22.84245054,kg -0d3a520b-e658-3021-aad9-b10d94ec672d,SESCO,II.2.1,Rio Negro,AR-R,annual,2012,gas oil combustion consumption by railway transport,5.8570386,TJ,N2O,3.9,kg/TJ,22.84245054,kg -1efb3860-a95f-36cf-a7ae-5e95659efee0,SESCO,II.1.1,Buenos Aires,AR-B,annual,2012,gasoline combustion consumption by freight transport,4.007377999999999,TJ,CO2,69300.0,kg/TJ,277711.29539999994,kg -e747cd0f-047e-31b5-85de-8bdcad8446ea,SESCO,II.1.1,Buenos Aires,AR-B,annual,2012,gasoline combustion consumption by freight transport,4.007377999999999,TJ,CH4,33.0,kg/TJ,132.24347399999996,kg -d22de109-4f57-3434-813f-763ac7f633fc,SESCO,II.1.1,Buenos Aires,AR-B,annual,2012,gasoline combustion consumption by freight transport,4.007377999999999,TJ,N2O,3.2,kg/TJ,12.823609599999997,kg -64546453-79e2-3e53-80be-e8a407ef4602,SESCO,II.1.1,Buenos Aires,AR-B,annual,2012,gas oil combustion consumption by freight transport,385.51616459999997,TJ,CO2,74100.0,kg/TJ,28566747.79686,kg -80c851ff-91f1-3ff0-b54f-65507d86adcb,SESCO,II.1.1,Buenos Aires,AR-B,annual,2012,gas oil combustion consumption by freight transport,385.51616459999997,TJ,CH4,3.9,kg/TJ,1503.5130419399998,kg -80c851ff-91f1-3ff0-b54f-65507d86adcb,SESCO,II.1.1,Buenos Aires,AR-B,annual,2012,gas oil combustion consumption by freight transport,385.51616459999997,TJ,N2O,3.9,kg/TJ,1503.5130419399998,kg -2abf498e-8141-3d57-8c19-4e1a08dccaec,SESCO,II.1.1,Capital Federal,AR-C,annual,2012,gas oil combustion consumption by freight transport,25.41627144,TJ,CO2,74100.0,kg/TJ,1883345.713704,kg -cf440f15-c0bf-30b5-aa85-f07e91736e04,SESCO,II.1.1,Capital Federal,AR-C,annual,2012,gas oil combustion consumption by freight transport,25.41627144,TJ,CH4,3.9,kg/TJ,99.123458616,kg -cf440f15-c0bf-30b5-aa85-f07e91736e04,SESCO,II.1.1,Capital Federal,AR-C,annual,2012,gas oil combustion consumption by freight transport,25.41627144,TJ,N2O,3.9,kg/TJ,99.123458616,kg -44838152-36e2-3a98-9fd7-e5cfc7124c2d,SESCO,II.1.1,Chubut,AR-U,annual,2012,gas oil combustion consumption by freight transport,11.17960956,TJ,CO2,74100.0,kg/TJ,828409.068396,kg -1703cc28-3b9e-39c9-bdc5-4c1965c50408,SESCO,II.1.1,Chubut,AR-U,annual,2012,gas oil combustion consumption by freight transport,11.17960956,TJ,CH4,3.9,kg/TJ,43.600477284,kg -1703cc28-3b9e-39c9-bdc5-4c1965c50408,SESCO,II.1.1,Chubut,AR-U,annual,2012,gas oil combustion consumption by freight transport,11.17960956,TJ,N2O,3.9,kg/TJ,43.600477284,kg -0b0aa758-c2ec-3601-846f-cf3639f6b227,SESCO,II.1.1,Córdoba,AR-X,annual,2012,gas oil combustion consumption by freight transport,16.05458148,TJ,CO2,74100.0,kg/TJ,1189644.487668,kg -f14fe2db-7fcd-3209-9d45-6c833014f8d0,SESCO,II.1.1,Córdoba,AR-X,annual,2012,gas oil combustion consumption by freight transport,16.05458148,TJ,CH4,3.9,kg/TJ,62.612867771999994,kg -f14fe2db-7fcd-3209-9d45-6c833014f8d0,SESCO,II.1.1,Córdoba,AR-X,annual,2012,gas oil combustion consumption by freight transport,16.05458148,TJ,N2O,3.9,kg/TJ,62.612867771999994,kg -e55d5a69-1fc1-383f-9eed-b07395839f23,SESCO,II.1.1,San Luis,AR-D,annual,2012,gas oil combustion consumption by freight transport,53.391428160000004,TJ,CO2,74100.0,kg/TJ,3956304.826656,kg -5cc1ec3d-7ad1-3a4a-afbf-79675a370685,SESCO,II.1.1,San Luis,AR-D,annual,2012,gas oil combustion consumption by freight transport,53.391428160000004,TJ,CH4,3.9,kg/TJ,208.22656982400002,kg -5cc1ec3d-7ad1-3a4a-afbf-79675a370685,SESCO,II.1.1,San Luis,AR-D,annual,2012,gas oil combustion consumption by freight transport,53.391428160000004,TJ,N2O,3.9,kg/TJ,208.22656982400002,kg -9f472df5-4f14-3548-9b7f-6e8c86ba1843,SESCO,II.1.1,Buenos Aires,AR-B,annual,2012,gas oil combustion consumption by public passenger transport,140.88327876,TJ,CO2,74100.0,kg/TJ,10439450.956116,kg -820bee47-9533-3f4d-b301-d600fd8070ed,SESCO,II.1.1,Buenos Aires,AR-B,annual,2012,gas oil combustion consumption by public passenger transport,140.88327876,TJ,CH4,3.9,kg/TJ,549.444787164,kg -820bee47-9533-3f4d-b301-d600fd8070ed,SESCO,II.1.1,Buenos Aires,AR-B,annual,2012,gas oil combustion consumption by public passenger transport,140.88327876,TJ,N2O,3.9,kg/TJ,549.444787164,kg -cea9583e-ab70-3d79-bbe7-5f4ab8e965f0,SESCO,II.1.1,Capital Federal,AR-C,annual,2012,gas oil combustion consumption by public passenger transport,21.971073599999997,TJ,CO2,74100.0,kg/TJ,1628056.5537599998,kg -f88e36c9-5809-3ee2-8cba-9f63169028bc,SESCO,II.1.1,Capital Federal,AR-C,annual,2012,gas oil combustion consumption by public passenger transport,21.971073599999997,TJ,CH4,3.9,kg/TJ,85.68718703999998,kg -f88e36c9-5809-3ee2-8cba-9f63169028bc,SESCO,II.1.1,Capital Federal,AR-C,annual,2012,gas oil combustion consumption by public passenger transport,21.971073599999997,TJ,N2O,3.9,kg/TJ,85.68718703999998,kg -a7942be6-65c3-3b41-9a02-f711d7628487,SESCO,II.1.1,Chubut,AR-U,annual,2012,gas oil combustion consumption by public passenger transport,8.53183296,TJ,CO2,74100.0,kg/TJ,632208.8223359999,kg -d485764b-e545-3a11-94d6-a2e68d47f8e2,SESCO,II.1.1,Chubut,AR-U,annual,2012,gas oil combustion consumption by public passenger transport,8.53183296,TJ,CH4,3.9,kg/TJ,33.274148544,kg -d485764b-e545-3a11-94d6-a2e68d47f8e2,SESCO,II.1.1,Chubut,AR-U,annual,2012,gas oil combustion consumption by public passenger transport,8.53183296,TJ,N2O,3.9,kg/TJ,33.274148544,kg -a7236701-0da0-3405-a2a2-f789c0db5f70,SESCO,II.1.1,Córdoba,AR-X,annual,2012,gas oil combustion consumption by public passenger transport,50.11754748,TJ,CO2,74100.0,kg/TJ,3713710.268268,kg -575d0a46-68b6-3d57-9f82-12ba8c850110,SESCO,II.1.1,Córdoba,AR-X,annual,2012,gas oil combustion consumption by public passenger transport,50.11754748,TJ,CH4,3.9,kg/TJ,195.45843517199998,kg -575d0a46-68b6-3d57-9f82-12ba8c850110,SESCO,II.1.1,Córdoba,AR-X,annual,2012,gas oil combustion consumption by public passenger transport,50.11754748,TJ,N2O,3.9,kg/TJ,195.45843517199998,kg -4a9e06eb-4f4e-382f-8429-30a63284859b,SESCO,II.1.1,Entre Rios,AR-E,annual,2012,gas oil combustion consumption by public passenger transport,2.4380638799999996,TJ,CO2,74100.0,kg/TJ,180660.53350799996,kg -1c5c5b67-cd49-3c20-8eed-96c235aff13f,SESCO,II.1.1,Entre Rios,AR-E,annual,2012,gas oil combustion consumption by public passenger transport,2.4380638799999996,TJ,CH4,3.9,kg/TJ,9.508449131999999,kg -1c5c5b67-cd49-3c20-8eed-96c235aff13f,SESCO,II.1.1,Entre Rios,AR-E,annual,2012,gas oil combustion consumption by public passenger transport,2.4380638799999996,TJ,N2O,3.9,kg/TJ,9.508449131999999,kg -cf42cf27-1b41-3938-aa54-462f38e76cae,SESCO,II.1.1,Formosa,AR-P,annual,2012,gas oil combustion consumption by public passenger transport,18.35759268,TJ,CO2,74100.0,kg/TJ,1360297.617588,kg -02ecba40-059d-3cc3-8763-0cb8d02ebf92,SESCO,II.1.1,Formosa,AR-P,annual,2012,gas oil combustion consumption by public passenger transport,18.35759268,TJ,CH4,3.9,kg/TJ,71.594611452,kg -02ecba40-059d-3cc3-8763-0cb8d02ebf92,SESCO,II.1.1,Formosa,AR-P,annual,2012,gas oil combustion consumption by public passenger transport,18.35759268,TJ,N2O,3.9,kg/TJ,71.594611452,kg -8ab91f94-3a48-32bb-a894-389096b8cdee,SESCO,II.1.1,Neuquén,AR-Q,annual,2012,gas oil combustion consumption by public passenger transport,6.791029559999999,TJ,CO2,74100.0,kg/TJ,503215.29039599997,kg -3abbbd2a-6e5c-3c23-bcae-acd371a40347,SESCO,II.1.1,Neuquén,AR-Q,annual,2012,gas oil combustion consumption by public passenger transport,6.791029559999999,TJ,CH4,3.9,kg/TJ,26.485015283999996,kg -3abbbd2a-6e5c-3c23-bcae-acd371a40347,SESCO,II.1.1,Neuquén,AR-Q,annual,2012,gas oil combustion consumption by public passenger transport,6.791029559999999,TJ,N2O,3.9,kg/TJ,26.485015283999996,kg -8919e25a-b2dc-3b3d-a409-6a47bd66b980,SESCO,II.1.1,Rio Negro,AR-R,annual,2012,gas oil combustion consumption by public passenger transport,39.57917628,TJ,CO2,74100.0,kg/TJ,2932816.9623479997,kg -a119bd97-4c39-3654-989b-83faf6f2bf65,SESCO,II.1.1,Rio Negro,AR-R,annual,2012,gas oil combustion consumption by public passenger transport,39.57917628,TJ,CH4,3.9,kg/TJ,154.358787492,kg -a119bd97-4c39-3654-989b-83faf6f2bf65,SESCO,II.1.1,Rio Negro,AR-R,annual,2012,gas oil combustion consumption by public passenger transport,39.57917628,TJ,N2O,3.9,kg/TJ,154.358787492,kg -a3425bf4-1e6a-3062-8428-ec86e29e723a,SESCO,II.1.1,San Luis,AR-D,annual,2012,gas oil combustion consumption by public passenger transport,2.2616538,TJ,CO2,74100.0,kg/TJ,167588.54658,kg -26381f87-52fa-3e83-96af-27879c259ad8,SESCO,II.1.1,San Luis,AR-D,annual,2012,gas oil combustion consumption by public passenger transport,2.2616538,TJ,CH4,3.9,kg/TJ,8.82044982,kg -26381f87-52fa-3e83-96af-27879c259ad8,SESCO,II.1.1,San Luis,AR-D,annual,2012,gas oil combustion consumption by public passenger transport,2.2616538,TJ,N2O,3.9,kg/TJ,8.82044982,kg -7efa8f38-9ca9-352b-be6c-fcec3fcfc0a6,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2012,gas oil combustion consumption by public passenger transport,5.30270496,TJ,CO2,74100.0,kg/TJ,392930.437536,kg -48910dd7-c0f2-395e-a400-ff740d9a2ff5,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2012,gas oil combustion consumption by public passenger transport,5.30270496,TJ,CH4,3.9,kg/TJ,20.680549344,kg -48910dd7-c0f2-395e-a400-ff740d9a2ff5,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2012,gas oil combustion consumption by public passenger transport,5.30270496,TJ,N2O,3.9,kg/TJ,20.680549344,kg -9c843ccd-b020-3f99-8181-2e81bae65ebc,SESCO,II.1.1,Santa Fe,AR-S,annual,2012,gas oil combustion consumption by public passenger transport,0.50112888,TJ,CO2,74100.0,kg/TJ,37133.650008,kg -85b684c9-3fac-3ccb-8ca6-06c6805d2d5a,SESCO,II.1.1,Santa Fe,AR-S,annual,2012,gas oil combustion consumption by public passenger transport,0.50112888,TJ,CH4,3.9,kg/TJ,1.9544026319999999,kg -85b684c9-3fac-3ccb-8ca6-06c6805d2d5a,SESCO,II.1.1,Santa Fe,AR-S,annual,2012,gas oil combustion consumption by public passenger transport,0.50112888,TJ,N2O,3.9,kg/TJ,1.9544026319999999,kg -252e6f7f-0dbc-3711-a4bb-448c5a4e8615,SESCO,II.1.1,Buenos Aires,AR-B,annual,2012,gas oil combustion consumption by to the public,3660.519996,TJ,CO2,74100.0,kg/TJ,271244531.7036,kg -29d6bab6-b374-3c66-b5b8-045da11ea76f,SESCO,II.1.1,Buenos Aires,AR-B,annual,2012,gas oil combustion consumption by to the public,3660.519996,TJ,CH4,3.9,kg/TJ,14276.0279844,kg -29d6bab6-b374-3c66-b5b8-045da11ea76f,SESCO,II.1.1,Buenos Aires,AR-B,annual,2012,gas oil combustion consumption by to the public,3660.519996,TJ,N2O,3.9,kg/TJ,14276.0279844,kg -1a51b20d-afcf-3259-a556-fd5f1cecf927,SESCO,II.1.1,Capital Federal,AR-C,annual,2012,gas oil combustion consumption by to the public,3023.02728,TJ,CO2,74100.0,kg/TJ,224006321.44799998,kg -37affd8b-dd17-3a5f-a630-4bc8f48d38a7,SESCO,II.1.1,Capital Federal,AR-C,annual,2012,gas oil combustion consumption by to the public,3023.02728,TJ,CH4,3.9,kg/TJ,11789.806391999999,kg -37affd8b-dd17-3a5f-a630-4bc8f48d38a7,SESCO,II.1.1,Capital Federal,AR-C,annual,2012,gas oil combustion consumption by to the public,3023.02728,TJ,N2O,3.9,kg/TJ,11789.806391999999,kg -ff360255-d3fb-3ace-8e0a-f65f67d1194a,SESCO,II.1.1,Chaco,AR-H,annual,2012,gas oil combustion consumption by to the public,91.52808,TJ,CO2,74100.0,kg/TJ,6782230.728,kg -790108eb-3d80-3aa2-9362-ad81ebe4638d,SESCO,II.1.1,Chaco,AR-H,annual,2012,gas oil combustion consumption by to the public,91.52808,TJ,CH4,3.9,kg/TJ,356.959512,kg -790108eb-3d80-3aa2-9362-ad81ebe4638d,SESCO,II.1.1,Chaco,AR-H,annual,2012,gas oil combustion consumption by to the public,91.52808,TJ,N2O,3.9,kg/TJ,356.959512,kg -b44a5fb7-66e0-3b3b-b532-dba40920ada1,SESCO,II.1.1,Corrientes,AR-W,annual,2012,gas oil combustion consumption by to the public,1.2642,TJ,CO2,74100.0,kg/TJ,93677.22,kg -7f054696-b666-3081-9911-aa9fb8bd5d6e,SESCO,II.1.1,Corrientes,AR-W,annual,2012,gas oil combustion consumption by to the public,1.2642,TJ,CH4,3.9,kg/TJ,4.9303799999999995,kg -7f054696-b666-3081-9911-aa9fb8bd5d6e,SESCO,II.1.1,Corrientes,AR-W,annual,2012,gas oil combustion consumption by to the public,1.2642,TJ,N2O,3.9,kg/TJ,4.9303799999999995,kg -785110d8-1b15-3845-a2ad-34400ce5d216,SESCO,II.1.1,Córdoba,AR-X,annual,2012,gas oil combustion consumption by to the public,999.0069599999999,TJ,CO2,74100.0,kg/TJ,74026415.736,kg -e5756608-53e9-3ec0-9a68-1ae0046a6e90,SESCO,II.1.1,Córdoba,AR-X,annual,2012,gas oil combustion consumption by to the public,999.0069599999999,TJ,CH4,3.9,kg/TJ,3896.1271439999996,kg -e5756608-53e9-3ec0-9a68-1ae0046a6e90,SESCO,II.1.1,Córdoba,AR-X,annual,2012,gas oil combustion consumption by to the public,999.0069599999999,TJ,N2O,3.9,kg/TJ,3896.1271439999996,kg -4d47dfad-8ea4-38ae-8222-97afbc3d3c28,SESCO,II.1.1,Entre Rios,AR-E,annual,2012,gas oil combustion consumption by to the public,351.37536,TJ,CO2,74100.0,kg/TJ,26036914.176,kg -24402186-0a87-307e-9ee3-986d10576283,SESCO,II.1.1,Entre Rios,AR-E,annual,2012,gas oil combustion consumption by to the public,351.37536,TJ,CH4,3.9,kg/TJ,1370.363904,kg -24402186-0a87-307e-9ee3-986d10576283,SESCO,II.1.1,Entre Rios,AR-E,annual,2012,gas oil combustion consumption by to the public,351.37536,TJ,N2O,3.9,kg/TJ,1370.363904,kg -db03ca76-74e0-346f-b842-555aac9a978b,SESCO,II.1.1,Rio Negro,AR-R,annual,2012,gas oil combustion consumption by to the public,30.77424,TJ,CO2,74100.0,kg/TJ,2280371.184,kg -ccfe81fe-91d1-35c8-876f-9fd2a4151aa3,SESCO,II.1.1,Rio Negro,AR-R,annual,2012,gas oil combustion consumption by to the public,30.77424,TJ,CH4,3.9,kg/TJ,120.01953599999999,kg -ccfe81fe-91d1-35c8-876f-9fd2a4151aa3,SESCO,II.1.1,Rio Negro,AR-R,annual,2012,gas oil combustion consumption by to the public,30.77424,TJ,N2O,3.9,kg/TJ,120.01953599999999,kg -a7527446-b388-3acc-a6c3-e22753b9dd5e,SESCO,II.1.1,Santa Fe,AR-S,annual,2012,gas oil combustion consumption by to the public,519.29724,TJ,CO2,74100.0,kg/TJ,38479925.484,kg -23caf80f-1b3b-38b9-8a31-9426bd063a1c,SESCO,II.1.1,Santa Fe,AR-S,annual,2012,gas oil combustion consumption by to the public,519.29724,TJ,CH4,3.9,kg/TJ,2025.2592359999999,kg -23caf80f-1b3b-38b9-8a31-9426bd063a1c,SESCO,II.1.1,Santa Fe,AR-S,annual,2012,gas oil combustion consumption by to the public,519.29724,TJ,N2O,3.9,kg/TJ,2025.2592359999999,kg -d8dca527-37c2-3c8d-a1d6-2cddb2f26a72,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2012,gas oil combustion consumption by to the public,2.09496,TJ,CO2,74100.0,kg/TJ,155236.536,kg -3d6b417b-ffb5-3b35-b06a-6c2d766ee383,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2012,gas oil combustion consumption by to the public,2.09496,TJ,CH4,3.9,kg/TJ,8.170344,kg -3d6b417b-ffb5-3b35-b06a-6c2d766ee383,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2012,gas oil combustion consumption by to the public,2.09496,TJ,N2O,3.9,kg/TJ,8.170344,kg -4e563831-a87f-3026-a10b-a9c0843423be,SESCO,II.1.1,Buenos Aires,AR-B,annual,2012,gas oil combustion consumption by to the public,200.473224,TJ,CO2,74100.0,kg/TJ,14855065.8984,kg -8a0620bd-ad10-3324-a027-35fe2a1c2d18,SESCO,II.1.1,Buenos Aires,AR-B,annual,2012,gas oil combustion consumption by to the public,200.473224,TJ,CH4,3.9,kg/TJ,781.8455736,kg -8a0620bd-ad10-3324-a027-35fe2a1c2d18,SESCO,II.1.1,Buenos Aires,AR-B,annual,2012,gas oil combustion consumption by to the public,200.473224,TJ,N2O,3.9,kg/TJ,781.8455736,kg -4440a61a-c44f-3549-b4aa-a851b47c0bec,SESCO,II.1.1,Capital Federal,AR-C,annual,2012,gas oil combustion consumption by to the public,141.62652,TJ,CO2,74100.0,kg/TJ,10494525.132,kg -68433a52-e115-38bc-b401-908d671e2956,SESCO,II.1.1,Capital Federal,AR-C,annual,2012,gas oil combustion consumption by to the public,141.62652,TJ,CH4,3.9,kg/TJ,552.343428,kg -68433a52-e115-38bc-b401-908d671e2956,SESCO,II.1.1,Capital Federal,AR-C,annual,2012,gas oil combustion consumption by to the public,141.62652,TJ,N2O,3.9,kg/TJ,552.343428,kg -7376e318-c26a-3ad4-869f-2adb316801bd,SESCO,II.1.1,Chaco,AR-H,annual,2012,gas oil combustion consumption by to the public,3.82872,TJ,CO2,74100.0,kg/TJ,283708.152,kg -5df741e1-9b35-3ad9-8585-74cb04d977c0,SESCO,II.1.1,Chaco,AR-H,annual,2012,gas oil combustion consumption by to the public,3.82872,TJ,CH4,3.9,kg/TJ,14.932008,kg -5df741e1-9b35-3ad9-8585-74cb04d977c0,SESCO,II.1.1,Chaco,AR-H,annual,2012,gas oil combustion consumption by to the public,3.82872,TJ,N2O,3.9,kg/TJ,14.932008,kg -e05c7f81-5fc8-3b41-a338-76b65a052d30,SESCO,II.1.1,Córdoba,AR-X,annual,2012,gas oil combustion consumption by to the public,67.3638,TJ,CO2,74100.0,kg/TJ,4991657.58,kg -08c2c8fb-b7fb-3a59-935b-609e75014efd,SESCO,II.1.1,Córdoba,AR-X,annual,2012,gas oil combustion consumption by to the public,67.3638,TJ,CH4,3.9,kg/TJ,262.71882,kg -08c2c8fb-b7fb-3a59-935b-609e75014efd,SESCO,II.1.1,Córdoba,AR-X,annual,2012,gas oil combustion consumption by to the public,67.3638,TJ,N2O,3.9,kg/TJ,262.71882,kg -b979468a-cb02-389f-95b5-8d325781e0e9,SESCO,II.1.1,Entre Rios,AR-E,annual,2012,gas oil combustion consumption by to the public,25.93416,TJ,CO2,74100.0,kg/TJ,1921721.2559999998,kg -12a198eb-550d-30d4-8b46-c728d66e1649,SESCO,II.1.1,Entre Rios,AR-E,annual,2012,gas oil combustion consumption by to the public,25.93416,TJ,CH4,3.9,kg/TJ,101.14322399999999,kg -12a198eb-550d-30d4-8b46-c728d66e1649,SESCO,II.1.1,Entre Rios,AR-E,annual,2012,gas oil combustion consumption by to the public,25.93416,TJ,N2O,3.9,kg/TJ,101.14322399999999,kg -dfbf4bfc-a70a-3537-a3fa-f49ca4d803d8,SESCO,II.1.1,Santa Fe,AR-S,annual,2012,gas oil combustion consumption by to the public,34.38624,TJ,CO2,74100.0,kg/TJ,2548020.384,kg -111455bf-600e-367b-a91c-68b832356dc9,SESCO,II.1.1,Santa Fe,AR-S,annual,2012,gas oil combustion consumption by to the public,34.38624,TJ,CH4,3.9,kg/TJ,134.106336,kg -111455bf-600e-367b-a91c-68b832356dc9,SESCO,II.1.1,Santa Fe,AR-S,annual,2012,gas oil combustion consumption by to the public,34.38624,TJ,N2O,3.9,kg/TJ,134.106336,kg -ce437045-5ad6-3c29-999a-ad2f8d409eb0,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2012,gas oil combustion consumption by to the public,0.21672,TJ,CO2,74100.0,kg/TJ,16058.952,kg -003416f0-38b9-3234-bcc8-7552e5018cad,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2012,gas oil combustion consumption by to the public,0.21672,TJ,CH4,3.9,kg/TJ,0.845208,kg -003416f0-38b9-3234-bcc8-7552e5018cad,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2012,gas oil combustion consumption by to the public,0.21672,TJ,N2O,3.9,kg/TJ,0.845208,kg -c4df8abf-43a9-35e2-9fd8-f1bfb9cb27ab,SESCO,II.1.1,Tucuman,AR-T,annual,2012,gasoline combustion consumption by to the public,4.826042,TJ,CO2,69300.0,kg/TJ,334444.7106,kg -de504fd0-2ff2-3c3f-9f6c-88c073afe037,SESCO,II.1.1,Tucuman,AR-T,annual,2012,gasoline combustion consumption by to the public,4.826042,TJ,CH4,33.0,kg/TJ,159.259386,kg -28026971-5538-371e-a141-32ddc5fffbe7,SESCO,II.1.1,Tucuman,AR-T,annual,2012,gasoline combustion consumption by to the public,4.826042,TJ,N2O,3.2,kg/TJ,15.443334400000001,kg -dd604985-9744-3283-adf9-3b999d588ec9,SESCO,II.1.1,Catamarca,AR-K,annual,2012,gas oil combustion consumption by to the public,266.282058,TJ,CO2,74100.0,kg/TJ,19731500.4978,kg -c1a2bb46-b720-356d-b83f-f9aef016f8f8,SESCO,II.1.1,Catamarca,AR-K,annual,2012,gas oil combustion consumption by to the public,266.282058,TJ,CH4,3.9,kg/TJ,1038.5000262,kg -c1a2bb46-b720-356d-b83f-f9aef016f8f8,SESCO,II.1.1,Catamarca,AR-K,annual,2012,gas oil combustion consumption by to the public,266.282058,TJ,N2O,3.9,kg/TJ,1038.5000262,kg -90042ec0-560d-3f7c-9b5a-24f5210efbea,SESCO,II.1.1,Chaco,AR-H,annual,2012,gas oil combustion consumption by to the public,189.37463160000001,TJ,CO2,74100.0,kg/TJ,14032660.201560002,kg -a6334975-72b8-3805-87ff-51f9df14627f,SESCO,II.1.1,Chaco,AR-H,annual,2012,gas oil combustion consumption by to the public,189.37463160000001,TJ,CH4,3.9,kg/TJ,738.5610632400001,kg -a6334975-72b8-3805-87ff-51f9df14627f,SESCO,II.1.1,Chaco,AR-H,annual,2012,gas oil combustion consumption by to the public,189.37463160000001,TJ,N2O,3.9,kg/TJ,738.5610632400001,kg -ac32b0dd-ee9d-3f3c-a6d1-cd4470a9805b,SESCO,II.1.1,Córdoba,AR-X,annual,2012,gas oil combustion consumption by to the public,106.8090072,TJ,CO2,74100.0,kg/TJ,7914547.4335199995,kg -b055d207-cf38-3e0f-9ba6-b88296f19455,SESCO,II.1.1,Córdoba,AR-X,annual,2012,gas oil combustion consumption by to the public,106.8090072,TJ,CH4,3.9,kg/TJ,416.55512808,kg -b055d207-cf38-3e0f-9ba6-b88296f19455,SESCO,II.1.1,Córdoba,AR-X,annual,2012,gas oil combustion consumption by to the public,106.8090072,TJ,N2O,3.9,kg/TJ,416.55512808,kg -4316fda4-01b9-38c1-884d-fa473b374220,SESCO,II.1.1,Jujuy,AR-Y,annual,2012,gas oil combustion consumption by to the public,1014.0989795999999,TJ,CO2,74100.0,kg/TJ,75144734.38836,kg -696db255-620a-32ad-afdd-3cdf8e8bc05d,SESCO,II.1.1,Jujuy,AR-Y,annual,2012,gas oil combustion consumption by to the public,1014.0989795999999,TJ,CH4,3.9,kg/TJ,3954.9860204399997,kg -696db255-620a-32ad-afdd-3cdf8e8bc05d,SESCO,II.1.1,Jujuy,AR-Y,annual,2012,gas oil combustion consumption by to the public,1014.0989795999999,TJ,N2O,3.9,kg/TJ,3954.9860204399997,kg -a4e576f8-fa5e-3ce6-9a15-09933e6b6d03,SESCO,II.1.1,La Rioja,AR-F,annual,2012,gas oil combustion consumption by to the public,209.5252572,TJ,CO2,74100.0,kg/TJ,15525821.55852,kg -265d66ee-b4e8-34e4-bea7-d4b1faf8ae5c,SESCO,II.1.1,La Rioja,AR-F,annual,2012,gas oil combustion consumption by to the public,209.5252572,TJ,CH4,3.9,kg/TJ,817.14850308,kg -265d66ee-b4e8-34e4-bea7-d4b1faf8ae5c,SESCO,II.1.1,La Rioja,AR-F,annual,2012,gas oil combustion consumption by to the public,209.5252572,TJ,N2O,3.9,kg/TJ,817.14850308,kg -6fef03df-421f-37c8-898b-ba1d8cd602ec,SESCO,II.1.1,Salta,AR-A,annual,2012,gas oil combustion consumption by to the public,2443.9362696,TJ,CO2,74100.0,kg/TJ,181095677.57735997,kg -2bd1a08b-5655-375a-99d1-9f468d673b63,SESCO,II.1.1,Salta,AR-A,annual,2012,gas oil combustion consumption by to the public,2443.9362696,TJ,CH4,3.9,kg/TJ,9531.35145144,kg -2bd1a08b-5655-375a-99d1-9f468d673b63,SESCO,II.1.1,Salta,AR-A,annual,2012,gas oil combustion consumption by to the public,2443.9362696,TJ,N2O,3.9,kg/TJ,9531.35145144,kg -448c508a-b6e6-3dfc-9696-9b58c2c8f9c0,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2012,gas oil combustion consumption by to the public,538.406526,TJ,CO2,74100.0,kg/TJ,39895923.5766,kg -d878871a-86f6-3b7f-a10f-001e1a966135,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2012,gas oil combustion consumption by to the public,538.406526,TJ,CH4,3.9,kg/TJ,2099.7854514,kg -d878871a-86f6-3b7f-a10f-001e1a966135,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2012,gas oil combustion consumption by to the public,538.406526,TJ,N2O,3.9,kg/TJ,2099.7854514,kg -6bab40e5-704a-36fe-a1b1-d3900ec04ac6,SESCO,II.1.1,Tucuman,AR-T,annual,2012,gas oil combustion consumption by to the public,3313.1633472,TJ,CO2,74100.0,kg/TJ,245505404.02752,kg -b624df56-767a-36ac-8baf-33020dbb13ec,SESCO,II.1.1,Tucuman,AR-T,annual,2012,gas oil combustion consumption by to the public,3313.1633472,TJ,CH4,3.9,kg/TJ,12921.337054079999,kg -b624df56-767a-36ac-8baf-33020dbb13ec,SESCO,II.1.1,Tucuman,AR-T,annual,2012,gas oil combustion consumption by to the public,3313.1633472,TJ,N2O,3.9,kg/TJ,12921.337054079999,kg -7a6cb14a-ed60-303c-914c-3ba929fe666c,SESCO,II.1.1,Catamarca,AR-K,annual,2012,gas oil combustion consumption by to the public,4.416392399999999,TJ,CO2,74100.0,kg/TJ,327254.67684,kg -8c020048-f92d-3698-819b-cae6155cc142,SESCO,II.1.1,Catamarca,AR-K,annual,2012,gas oil combustion consumption by to the public,4.416392399999999,TJ,CH4,3.9,kg/TJ,17.223930359999997,kg -8c020048-f92d-3698-819b-cae6155cc142,SESCO,II.1.1,Catamarca,AR-K,annual,2012,gas oil combustion consumption by to the public,4.416392399999999,TJ,N2O,3.9,kg/TJ,17.223930359999997,kg -826d29c2-53c7-34e2-be35-57fdce580bd8,SESCO,II.1.1,Chaco,AR-H,annual,2012,gas oil combustion consumption by to the public,6.4326108,TJ,CO2,74100.0,kg/TJ,476656.46028,kg -773effd5-02f1-31e1-9b6f-61ef454ab16b,SESCO,II.1.1,Chaco,AR-H,annual,2012,gas oil combustion consumption by to the public,6.4326108,TJ,CH4,3.9,kg/TJ,25.087182119999998,kg -773effd5-02f1-31e1-9b6f-61ef454ab16b,SESCO,II.1.1,Chaco,AR-H,annual,2012,gas oil combustion consumption by to the public,6.4326108,TJ,N2O,3.9,kg/TJ,25.087182119999998,kg -6eb3aab4-bc85-37e1-bd8a-dce79a470c0a,SESCO,II.1.1,Córdoba,AR-X,annual,2012,gas oil combustion consumption by to the public,2.5489884,TJ,CO2,74100.0,kg/TJ,188880.04043999998,kg -ebc950b5-6429-398a-8fe0-6812367a5607,SESCO,II.1.1,Córdoba,AR-X,annual,2012,gas oil combustion consumption by to the public,2.5489884,TJ,CH4,3.9,kg/TJ,9.941054759999998,kg -ebc950b5-6429-398a-8fe0-6812367a5607,SESCO,II.1.1,Córdoba,AR-X,annual,2012,gas oil combustion consumption by to the public,2.5489884,TJ,N2O,3.9,kg/TJ,9.941054759999998,kg -7d0cd80d-6f76-3419-80fb-75ee0de2cbb7,SESCO,II.1.1,Jujuy,AR-Y,annual,2012,gas oil combustion consumption by to the public,14.272818,TJ,CO2,74100.0,kg/TJ,1057615.8138,kg -bd5be18d-fce8-3854-9900-5ad24704a506,SESCO,II.1.1,Jujuy,AR-Y,annual,2012,gas oil combustion consumption by to the public,14.272818,TJ,CH4,3.9,kg/TJ,55.66399019999999,kg -bd5be18d-fce8-3854-9900-5ad24704a506,SESCO,II.1.1,Jujuy,AR-Y,annual,2012,gas oil combustion consumption by to the public,14.272818,TJ,N2O,3.9,kg/TJ,55.66399019999999,kg -5a2ebdfd-721b-3add-bcb0-a23c3395d939,SESCO,II.1.1,La Rioja,AR-F,annual,2012,gas oil combustion consumption by to the public,3.373608,TJ,CO2,74100.0,kg/TJ,249984.3528,kg -6594c81b-cfd8-3702-aa4c-06cc41c20af0,SESCO,II.1.1,La Rioja,AR-F,annual,2012,gas oil combustion consumption by to the public,3.373608,TJ,CH4,3.9,kg/TJ,13.157071199999999,kg -6594c81b-cfd8-3702-aa4c-06cc41c20af0,SESCO,II.1.1,La Rioja,AR-F,annual,2012,gas oil combustion consumption by to the public,3.373608,TJ,N2O,3.9,kg/TJ,13.157071199999999,kg -8d78715a-0e6b-3443-9d81-74b2b1180b0e,SESCO,II.1.1,Salta,AR-A,annual,2012,gas oil combustion consumption by to the public,31.745506799999998,TJ,CO2,74100.0,kg/TJ,2352342.05388,kg -93686b93-37d2-3d5a-8f44-6946dea4dfe6,SESCO,II.1.1,Salta,AR-A,annual,2012,gas oil combustion consumption by to the public,31.745506799999998,TJ,CH4,3.9,kg/TJ,123.80747652,kg -93686b93-37d2-3d5a-8f44-6946dea4dfe6,SESCO,II.1.1,Salta,AR-A,annual,2012,gas oil combustion consumption by to the public,31.745506799999998,TJ,N2O,3.9,kg/TJ,123.80747652,kg -95312313-e757-332f-965a-cb2df46eb4a3,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2012,gas oil combustion consumption by to the public,12.4129992,TJ,CO2,74100.0,kg/TJ,919803.24072,kg -759297e5-8868-317b-9638-8741e706b28b,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2012,gas oil combustion consumption by to the public,12.4129992,TJ,CH4,3.9,kg/TJ,48.410696879999996,kg -759297e5-8868-317b-9638-8741e706b28b,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2012,gas oil combustion consumption by to the public,12.4129992,TJ,N2O,3.9,kg/TJ,48.410696879999996,kg -c0a8ffa2-4f73-3c13-844e-216fb945cadb,SESCO,II.1.1,Tucuman,AR-T,annual,2012,gas oil combustion consumption by to the public,64.3069644,TJ,CO2,74100.0,kg/TJ,4765146.06204,kg -80f2bb81-ce67-3524-8e34-3ca6701215b0,SESCO,II.1.1,Tucuman,AR-T,annual,2012,gas oil combustion consumption by to the public,64.3069644,TJ,CH4,3.9,kg/TJ,250.79716115999997,kg -80f2bb81-ce67-3524-8e34-3ca6701215b0,SESCO,II.1.1,Tucuman,AR-T,annual,2012,gas oil combustion consumption by to the public,64.3069644,TJ,N2O,3.9,kg/TJ,250.79716115999997,kg -a9954161-f32d-32f8-be7f-ee34e397ebb2,SESCO,I.3.1,Buenos Aires,AR-B,annual,2012,gasoline combustion consumption by petrochemical industries,117.231533,TJ,CO2,69300.0,kg/TJ,8124145.2369,kg -51101885-0ecb-317c-9ed3-707764674f0e,SESCO,I.3.1,Buenos Aires,AR-B,annual,2012,gasoline combustion consumption by petrochemical industries,117.231533,TJ,CH4,33.0,kg/TJ,3868.640589,kg -2b087028-1442-3685-bc71-1e153cf67765,SESCO,I.3.1,Buenos Aires,AR-B,annual,2012,gasoline combustion consumption by petrochemical industries,117.231533,TJ,N2O,3.2,kg/TJ,375.1409056,kg -c0f64b2d-92f0-342a-95de-e4fe7a158728,SESCO,I.3.1,Santa Fe,AR-S,annual,2012,gasoline combustion consumption by petrochemical industries,17.485653,TJ,CO2,69300.0,kg/TJ,1211755.7529,kg -9aa72575-d4e0-3459-b3f4-1214a737d7e5,SESCO,I.3.1,Santa Fe,AR-S,annual,2012,gasoline combustion consumption by petrochemical industries,17.485653,TJ,CH4,33.0,kg/TJ,577.0265489999999,kg -e43a3bca-18ef-3856-85ec-92d53d651965,SESCO,I.3.1,Santa Fe,AR-S,annual,2012,gasoline combustion consumption by petrochemical industries,17.485653,TJ,N2O,3.2,kg/TJ,55.9540896,kg -f6db3d68-35f9-391d-8c5e-f7df05fcc874,SESCO,I.3.1,Tucuman,AR-T,annual,2012,gasoline combustion consumption by petrochemical industries,26.792196999999998,TJ,CO2,69300.0,kg/TJ,1856699.2521,kg -5a0f2e36-a2dd-32b2-9248-ff5da8bba4e9,SESCO,I.3.1,Tucuman,AR-T,annual,2012,gasoline combustion consumption by petrochemical industries,26.792196999999998,TJ,CH4,33.0,kg/TJ,884.1425009999999,kg -aa234583-fc39-3a84-a22f-ccf8583ca0de,SESCO,I.3.1,Tucuman,AR-T,annual,2012,gasoline combustion consumption by petrochemical industries,26.792196999999998,TJ,N2O,3.2,kg/TJ,85.7350304,kg -91f5d102-5f40-3026-887f-646f99c67ab4,SESCO,II.5.1,Buenos Aires,AR-B,annual,2012,gas oil combustion consumption by agriculture machines,358.56324,TJ,CO2,74100.0,kg/TJ,26569536.084,kg -abe17d28-f34d-3340-bae3-074884dfbb7c,SESCO,II.5.1,Buenos Aires,AR-B,annual,2012,gas oil combustion consumption by agriculture machines,358.56324,TJ,CH4,3.9,kg/TJ,1398.396636,kg -abe17d28-f34d-3340-bae3-074884dfbb7c,SESCO,II.5.1,Buenos Aires,AR-B,annual,2012,gas oil combustion consumption by agriculture machines,358.56324,TJ,N2O,3.9,kg/TJ,1398.396636,kg -1e3ad353-4d05-375f-b3e2-7de6618502b6,SESCO,II.5.1,Capital Federal,AR-C,annual,2012,gas oil combustion consumption by agriculture machines,101.3166,TJ,CO2,74100.0,kg/TJ,7507560.06,kg -e9eca6bb-fc2c-3587-93a9-2243ec16aa09,SESCO,II.5.1,Capital Federal,AR-C,annual,2012,gas oil combustion consumption by agriculture machines,101.3166,TJ,CH4,3.9,kg/TJ,395.13473999999997,kg -e9eca6bb-fc2c-3587-93a9-2243ec16aa09,SESCO,II.5.1,Capital Federal,AR-C,annual,2012,gas oil combustion consumption by agriculture machines,101.3166,TJ,N2O,3.9,kg/TJ,395.13473999999997,kg -360e34c6-686a-30e3-b10e-4dca534add00,SESCO,II.5.1,Chubut,AR-U,annual,2012,gas oil combustion consumption by agriculture machines,12.75036,TJ,CO2,74100.0,kg/TJ,944801.6760000001,kg -2a31196a-db7b-33cf-b3fe-f7ae69b620e9,SESCO,II.5.1,Chubut,AR-U,annual,2012,gas oil combustion consumption by agriculture machines,12.75036,TJ,CH4,3.9,kg/TJ,49.726404,kg -2a31196a-db7b-33cf-b3fe-f7ae69b620e9,SESCO,II.5.1,Chubut,AR-U,annual,2012,gas oil combustion consumption by agriculture machines,12.75036,TJ,N2O,3.9,kg/TJ,49.726404,kg -3299d377-b13f-3cc3-afd7-8d7f2ea638b3,SESCO,II.5.1,Córdoba,AR-X,annual,2012,gas oil combustion consumption by agriculture machines,129.63468,TJ,CO2,74100.0,kg/TJ,9605929.788,kg -6827cb5e-ba37-3d8a-9062-eccb49eeb8c0,SESCO,II.5.1,Córdoba,AR-X,annual,2012,gas oil combustion consumption by agriculture machines,129.63468,TJ,CH4,3.9,kg/TJ,505.575252,kg -6827cb5e-ba37-3d8a-9062-eccb49eeb8c0,SESCO,II.5.1,Córdoba,AR-X,annual,2012,gas oil combustion consumption by agriculture machines,129.63468,TJ,N2O,3.9,kg/TJ,505.575252,kg -3735e842-7a5b-321a-b438-d900a07dc2c3,SESCO,II.5.1,Santa Fe,AR-S,annual,2012,gas oil combustion consumption by agriculture machines,413.2128,TJ,CO2,74100.0,kg/TJ,30619068.48,kg -f7fd414c-89e2-3268-98c5-c72446836eb9,SESCO,II.5.1,Santa Fe,AR-S,annual,2012,gas oil combustion consumption by agriculture machines,413.2128,TJ,CH4,3.9,kg/TJ,1611.52992,kg -f7fd414c-89e2-3268-98c5-c72446836eb9,SESCO,II.5.1,Santa Fe,AR-S,annual,2012,gas oil combustion consumption by agriculture machines,413.2128,TJ,N2O,3.9,kg/TJ,1611.52992,kg -53905f71-d54a-39df-bd3b-e05c2b70fe52,SESCO,II.5.1,Buenos Aires,AR-B,annual,2012,gas oil combustion consumption by agriculture machines,5.74308,TJ,CO2,74100.0,kg/TJ,425562.228,kg -0039c135-62ce-3a95-bd77-11bb029b48c6,SESCO,II.5.1,Buenos Aires,AR-B,annual,2012,gas oil combustion consumption by agriculture machines,5.74308,TJ,CH4,3.9,kg/TJ,22.398011999999998,kg -0039c135-62ce-3a95-bd77-11bb029b48c6,SESCO,II.5.1,Buenos Aires,AR-B,annual,2012,gas oil combustion consumption by agriculture machines,5.74308,TJ,N2O,3.9,kg/TJ,22.398011999999998,kg -3d22136b-cca5-3264-a6a1-9e0dda494b63,SESCO,II.5.1,Santa Fe,AR-S,annual,2012,gas oil combustion consumption by agriculture machines,0.36119999999999997,TJ,CO2,74100.0,kg/TJ,26764.92,kg -6c844705-4cb9-3299-8693-173047f30dfc,SESCO,II.5.1,Santa Fe,AR-S,annual,2012,gas oil combustion consumption by agriculture machines,0.36119999999999997,TJ,CH4,3.9,kg/TJ,1.40868,kg -6c844705-4cb9-3299-8693-173047f30dfc,SESCO,II.5.1,Santa Fe,AR-S,annual,2012,gas oil combustion consumption by agriculture machines,0.36119999999999997,TJ,N2O,3.9,kg/TJ,1.40868,kg -324e03e1-3d14-3a66-b460-595b8553b121,SESCO,II.1.1,Buenos Aires,AR-B,annual,2012,gas oil combustion consumption by to the public,14082.35724,TJ,CO2,74100.0,kg/TJ,1043502671.484,kg -c3e959d7-5a1d-3e06-bdd4-ff26e1016511,SESCO,II.1.1,Buenos Aires,AR-B,annual,2012,gas oil combustion consumption by to the public,14082.35724,TJ,CH4,3.9,kg/TJ,54921.193236,kg -c3e959d7-5a1d-3e06-bdd4-ff26e1016511,SESCO,II.1.1,Buenos Aires,AR-B,annual,2012,gas oil combustion consumption by to the public,14082.35724,TJ,N2O,3.9,kg/TJ,54921.193236,kg -eafb5a44-2c1a-3fc2-a277-21da3b421ad3,SESCO,II.1.1,Capital Federal,AR-C,annual,2012,gas oil combustion consumption by to the public,1515.3423599999999,TJ,CO2,74100.0,kg/TJ,112286868.87599999,kg -3e3282cf-642b-3b5d-8b3f-477697cb12c6,SESCO,II.1.1,Capital Federal,AR-C,annual,2012,gas oil combustion consumption by to the public,1515.3423599999999,TJ,CH4,3.9,kg/TJ,5909.835203999999,kg -3e3282cf-642b-3b5d-8b3f-477697cb12c6,SESCO,II.1.1,Capital Federal,AR-C,annual,2012,gas oil combustion consumption by to the public,1515.3423599999999,TJ,N2O,3.9,kg/TJ,5909.835203999999,kg -8a50ed43-8a12-350f-9d05-5ff389bc020a,SESCO,II.1.1,Catamarca,AR-K,annual,2012,gas oil combustion consumption by to the public,24.41712,TJ,CO2,74100.0,kg/TJ,1809308.592,kg -3f25cc23-41b4-326f-bc0b-65cc735338eb,SESCO,II.1.1,Catamarca,AR-K,annual,2012,gas oil combustion consumption by to the public,24.41712,TJ,CH4,3.9,kg/TJ,95.226768,kg -3f25cc23-41b4-326f-bc0b-65cc735338eb,SESCO,II.1.1,Catamarca,AR-K,annual,2012,gas oil combustion consumption by to the public,24.41712,TJ,N2O,3.9,kg/TJ,95.226768,kg -e8a4a838-3b25-3a9c-957f-219034ad7dee,SESCO,II.1.1,Chaco,AR-H,annual,2012,gas oil combustion consumption by to the public,1364.6858399999999,TJ,CO2,74100.0,kg/TJ,101123220.74399999,kg -bbe72a41-fc44-3224-a08a-f2ae2fa4c3a5,SESCO,II.1.1,Chaco,AR-H,annual,2012,gas oil combustion consumption by to the public,1364.6858399999999,TJ,CH4,3.9,kg/TJ,5322.274775999999,kg -bbe72a41-fc44-3224-a08a-f2ae2fa4c3a5,SESCO,II.1.1,Chaco,AR-H,annual,2012,gas oil combustion consumption by to the public,1364.6858399999999,TJ,N2O,3.9,kg/TJ,5322.274775999999,kg -1e4fa2b7-da92-3214-a87f-92ad1cfbceb7,SESCO,II.1.1,Chubut,AR-U,annual,2012,gas oil combustion consumption by to the public,43.27176,TJ,CO2,74100.0,kg/TJ,3206437.416,kg -92b54020-58b0-3345-8c02-7da9c47a3501,SESCO,II.1.1,Chubut,AR-U,annual,2012,gas oil combustion consumption by to the public,43.27176,TJ,CH4,3.9,kg/TJ,168.759864,kg -92b54020-58b0-3345-8c02-7da9c47a3501,SESCO,II.1.1,Chubut,AR-U,annual,2012,gas oil combustion consumption by to the public,43.27176,TJ,N2O,3.9,kg/TJ,168.759864,kg -5190ae5b-e225-3a29-b79a-8df18a37f2a1,SESCO,II.1.1,Corrientes,AR-W,annual,2012,gas oil combustion consumption by to the public,642.46644,TJ,CO2,74100.0,kg/TJ,47606763.204,kg -99d1ff05-8042-32e2-9170-aa7517a68ada,SESCO,II.1.1,Corrientes,AR-W,annual,2012,gas oil combustion consumption by to the public,642.46644,TJ,CH4,3.9,kg/TJ,2505.619116,kg -99d1ff05-8042-32e2-9170-aa7517a68ada,SESCO,II.1.1,Corrientes,AR-W,annual,2012,gas oil combustion consumption by to the public,642.46644,TJ,N2O,3.9,kg/TJ,2505.619116,kg -3a25054a-601b-3eac-a38b-63e28f42a787,SESCO,II.1.1,Córdoba,AR-X,annual,2012,gas oil combustion consumption by to the public,4247.38692,TJ,CO2,74100.0,kg/TJ,314731370.772,kg -9b983ff8-03f3-390f-9b5f-a4dbb3f9dfaf,SESCO,II.1.1,Córdoba,AR-X,annual,2012,gas oil combustion consumption by to the public,4247.38692,TJ,CH4,3.9,kg/TJ,16564.808988,kg -9b983ff8-03f3-390f-9b5f-a4dbb3f9dfaf,SESCO,II.1.1,Córdoba,AR-X,annual,2012,gas oil combustion consumption by to the public,4247.38692,TJ,N2O,3.9,kg/TJ,16564.808988,kg -56723cdb-eb0d-33d2-be56-ee3db1744e1c,SESCO,II.1.1,Entre Rios,AR-E,annual,2012,gas oil combustion consumption by to the public,1417.81836,TJ,CO2,74100.0,kg/TJ,105060340.476,kg -b4c7a395-f58b-3cc0-84b4-d67882728147,SESCO,II.1.1,Entre Rios,AR-E,annual,2012,gas oil combustion consumption by to the public,1417.81836,TJ,CH4,3.9,kg/TJ,5529.491604,kg -b4c7a395-f58b-3cc0-84b4-d67882728147,SESCO,II.1.1,Entre Rios,AR-E,annual,2012,gas oil combustion consumption by to the public,1417.81836,TJ,N2O,3.9,kg/TJ,5529.491604,kg -118e4c27-9a7a-3687-b9fd-004f7e5df84a,SESCO,II.1.1,Formosa,AR-P,annual,2012,gas oil combustion consumption by to the public,244.09896,TJ,CO2,74100.0,kg/TJ,18087732.936,kg -651088a3-9c3c-3a3a-a742-ae636414f323,SESCO,II.1.1,Formosa,AR-P,annual,2012,gas oil combustion consumption by to the public,244.09896,TJ,CH4,3.9,kg/TJ,951.985944,kg -651088a3-9c3c-3a3a-a742-ae636414f323,SESCO,II.1.1,Formosa,AR-P,annual,2012,gas oil combustion consumption by to the public,244.09896,TJ,N2O,3.9,kg/TJ,951.985944,kg -9a0d8a8f-9f0a-33b9-8870-6314cc2e694b,SESCO,II.1.1,Jujuy,AR-Y,annual,2012,gas oil combustion consumption by to the public,186.41532,TJ,CO2,74100.0,kg/TJ,13813375.212000001,kg -a6ad36ba-54b4-377f-8eda-235b123fc83e,SESCO,II.1.1,Jujuy,AR-Y,annual,2012,gas oil combustion consumption by to the public,186.41532,TJ,CH4,3.9,kg/TJ,727.019748,kg -a6ad36ba-54b4-377f-8eda-235b123fc83e,SESCO,II.1.1,Jujuy,AR-Y,annual,2012,gas oil combustion consumption by to the public,186.41532,TJ,N2O,3.9,kg/TJ,727.019748,kg -8ba4c305-6790-3d42-918c-fda33890484c,SESCO,II.1.1,La Pampa,AR-L,annual,2012,gas oil combustion consumption by to the public,406.42224,TJ,CO2,74100.0,kg/TJ,30115887.983999997,kg -fc4e043f-8d1d-3c9a-80e0-29f64e05ce7b,SESCO,II.1.1,La Pampa,AR-L,annual,2012,gas oil combustion consumption by to the public,406.42224,TJ,CH4,3.9,kg/TJ,1585.046736,kg -fc4e043f-8d1d-3c9a-80e0-29f64e05ce7b,SESCO,II.1.1,La Pampa,AR-L,annual,2012,gas oil combustion consumption by to the public,406.42224,TJ,N2O,3.9,kg/TJ,1585.046736,kg -e23d5769-d955-36f2-8529-55cdb5e2626f,SESCO,II.1.1,La Rioja,AR-F,annual,2012,gas oil combustion consumption by to the public,297.70104,TJ,CO2,74100.0,kg/TJ,22059647.064,kg -ec9e3cf6-916d-3887-ae4d-247c1c41c5bf,SESCO,II.1.1,La Rioja,AR-F,annual,2012,gas oil combustion consumption by to the public,297.70104,TJ,CH4,3.9,kg/TJ,1161.034056,kg -ec9e3cf6-916d-3887-ae4d-247c1c41c5bf,SESCO,II.1.1,La Rioja,AR-F,annual,2012,gas oil combustion consumption by to the public,297.70104,TJ,N2O,3.9,kg/TJ,1161.034056,kg -0ab91f3c-257e-3c64-9ad4-20585f9c6e6f,SESCO,II.1.1,Mendoza,AR-M,annual,2012,gas oil combustion consumption by to the public,779.25288,TJ,CO2,74100.0,kg/TJ,57742638.408,kg -4c6d9f70-c0b6-3363-9adf-f6273d6ee286,SESCO,II.1.1,Mendoza,AR-M,annual,2012,gas oil combustion consumption by to the public,779.25288,TJ,CH4,3.9,kg/TJ,3039.086232,kg -4c6d9f70-c0b6-3363-9adf-f6273d6ee286,SESCO,II.1.1,Mendoza,AR-M,annual,2012,gas oil combustion consumption by to the public,779.25288,TJ,N2O,3.9,kg/TJ,3039.086232,kg -fedd8fda-3696-3361-be13-405971dcbaa2,SESCO,II.1.1,Misiones,AR-N,annual,2012,gas oil combustion consumption by to the public,1309.27776,TJ,CO2,74100.0,kg/TJ,97017482.016,kg -cc88c74d-165d-3a2d-abac-ea7f6ae521ce,SESCO,II.1.1,Misiones,AR-N,annual,2012,gas oil combustion consumption by to the public,1309.27776,TJ,CH4,3.9,kg/TJ,5106.183263999999,kg -cc88c74d-165d-3a2d-abac-ea7f6ae521ce,SESCO,II.1.1,Misiones,AR-N,annual,2012,gas oil combustion consumption by to the public,1309.27776,TJ,N2O,3.9,kg/TJ,5106.183263999999,kg -12aed20b-0fb4-38c7-ab48-52a0429dc867,SESCO,II.1.1,Neuquén,AR-Q,annual,2012,gas oil combustion consumption by to the public,325.65792,TJ,CO2,74100.0,kg/TJ,24131251.871999998,kg -ff11696d-878c-3247-930f-6689294d2979,SESCO,II.1.1,Neuquén,AR-Q,annual,2012,gas oil combustion consumption by to the public,325.65792,TJ,CH4,3.9,kg/TJ,1270.0658879999999,kg -ff11696d-878c-3247-930f-6689294d2979,SESCO,II.1.1,Neuquén,AR-Q,annual,2012,gas oil combustion consumption by to the public,325.65792,TJ,N2O,3.9,kg/TJ,1270.0658879999999,kg -d9b747d5-f502-36d4-bbdd-2ee51edf9ece,SESCO,II.1.1,Rio Negro,AR-R,annual,2012,gas oil combustion consumption by to the public,292.35528,TJ,CO2,74100.0,kg/TJ,21663526.248,kg -6639d3b0-f5e3-32f5-b7a3-de5049dd74b7,SESCO,II.1.1,Rio Negro,AR-R,annual,2012,gas oil combustion consumption by to the public,292.35528,TJ,CH4,3.9,kg/TJ,1140.185592,kg -6639d3b0-f5e3-32f5-b7a3-de5049dd74b7,SESCO,II.1.1,Rio Negro,AR-R,annual,2012,gas oil combustion consumption by to the public,292.35528,TJ,N2O,3.9,kg/TJ,1140.185592,kg -81ad4602-d915-3f86-b37f-b172754f1916,SESCO,II.1.1,Salta,AR-A,annual,2012,gas oil combustion consumption by to the public,309.22332,TJ,CO2,74100.0,kg/TJ,22913448.012,kg -9ea138df-f033-370c-8ba2-83ea8e37ae97,SESCO,II.1.1,Salta,AR-A,annual,2012,gas oil combustion consumption by to the public,309.22332,TJ,CH4,3.9,kg/TJ,1205.970948,kg -9ea138df-f033-370c-8ba2-83ea8e37ae97,SESCO,II.1.1,Salta,AR-A,annual,2012,gas oil combustion consumption by to the public,309.22332,TJ,N2O,3.9,kg/TJ,1205.970948,kg -bd787e35-ba45-3a78-b5b2-1f31639a4936,SESCO,II.1.1,San Juan,AR-J,annual,2012,gas oil combustion consumption by to the public,232.4322,TJ,CO2,74100.0,kg/TJ,17223226.02,kg -7f4d2d1f-81f0-3c0e-9114-fdbe0ddee15b,SESCO,II.1.1,San Juan,AR-J,annual,2012,gas oil combustion consumption by to the public,232.4322,TJ,CH4,3.9,kg/TJ,906.4855799999999,kg -7f4d2d1f-81f0-3c0e-9114-fdbe0ddee15b,SESCO,II.1.1,San Juan,AR-J,annual,2012,gas oil combustion consumption by to the public,232.4322,TJ,N2O,3.9,kg/TJ,906.4855799999999,kg -04197e1d-72d7-3302-9e9e-1e32c165058f,SESCO,II.1.1,San Luis,AR-D,annual,2012,gas oil combustion consumption by to the public,38.35944,TJ,CO2,74100.0,kg/TJ,2842434.5039999997,kg -1625545a-a9ee-32b3-a2db-e56f526ae671,SESCO,II.1.1,San Luis,AR-D,annual,2012,gas oil combustion consumption by to the public,38.35944,TJ,CH4,3.9,kg/TJ,149.60181599999999,kg -1625545a-a9ee-32b3-a2db-e56f526ae671,SESCO,II.1.1,San Luis,AR-D,annual,2012,gas oil combustion consumption by to the public,38.35944,TJ,N2O,3.9,kg/TJ,149.60181599999999,kg -13c2e12c-5852-331a-aa6e-db657a6c62ce,SESCO,II.1.1,Santa Fe,AR-S,annual,2012,gas oil combustion consumption by to the public,4527.17244,TJ,CO2,74100.0,kg/TJ,335463477.804,kg -1b816f96-7927-3446-9252-b957c8eb99ea,SESCO,II.1.1,Santa Fe,AR-S,annual,2012,gas oil combustion consumption by to the public,4527.17244,TJ,CH4,3.9,kg/TJ,17655.972516,kg -1b816f96-7927-3446-9252-b957c8eb99ea,SESCO,II.1.1,Santa Fe,AR-S,annual,2012,gas oil combustion consumption by to the public,4527.17244,TJ,N2O,3.9,kg/TJ,17655.972516,kg -2bc31236-0a5c-3a7f-a131-500ea7187fa2,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2012,gas oil combustion consumption by to the public,441.9282,TJ,CO2,74100.0,kg/TJ,32746879.62,kg -4b1bbca7-25e5-3c87-a5b2-d8463db28ad2,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2012,gas oil combustion consumption by to the public,441.9282,TJ,CH4,3.9,kg/TJ,1723.51998,kg -4b1bbca7-25e5-3c87-a5b2-d8463db28ad2,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2012,gas oil combustion consumption by to the public,441.9282,TJ,N2O,3.9,kg/TJ,1723.51998,kg -458375e2-676a-3295-80eb-5cf4e1b482d7,SESCO,II.1.1,Tucuman,AR-T,annual,2012,gas oil combustion consumption by to the public,688.12212,TJ,CO2,74100.0,kg/TJ,50989849.092,kg -59aa554d-c0d5-33b5-8116-18a73ce925e7,SESCO,II.1.1,Tucuman,AR-T,annual,2012,gas oil combustion consumption by to the public,688.12212,TJ,CH4,3.9,kg/TJ,2683.6762679999997,kg -59aa554d-c0d5-33b5-8116-18a73ce925e7,SESCO,II.1.1,Tucuman,AR-T,annual,2012,gas oil combustion consumption by to the public,688.12212,TJ,N2O,3.9,kg/TJ,2683.6762679999997,kg -7b751ed4-ddc1-3ad0-8f8e-879ab7f6b0c2,SESCO,II.1.1,Buenos Aires,AR-B,annual,2012,gas oil combustion consumption by to the public,5868.66924,TJ,CO2,74100.0,kg/TJ,434868390.684,kg -2b30c937-a291-3624-824a-1384e4145468,SESCO,II.1.1,Buenos Aires,AR-B,annual,2012,gas oil combustion consumption by to the public,5868.66924,TJ,CH4,3.9,kg/TJ,22887.810036,kg -2b30c937-a291-3624-824a-1384e4145468,SESCO,II.1.1,Buenos Aires,AR-B,annual,2012,gas oil combustion consumption by to the public,5868.66924,TJ,N2O,3.9,kg/TJ,22887.810036,kg -0c385548-a755-3910-ad40-6c68c26b113d,SESCO,II.1.1,Capital Federal,AR-C,annual,2012,gas oil combustion consumption by to the public,923.01048,TJ,CO2,74100.0,kg/TJ,68395076.568,kg -d93bae3a-7510-37d1-9976-3166dbadde5d,SESCO,II.1.1,Capital Federal,AR-C,annual,2012,gas oil combustion consumption by to the public,923.01048,TJ,CH4,3.9,kg/TJ,3599.740872,kg -d93bae3a-7510-37d1-9976-3166dbadde5d,SESCO,II.1.1,Capital Federal,AR-C,annual,2012,gas oil combustion consumption by to the public,923.01048,TJ,N2O,3.9,kg/TJ,3599.740872,kg -c17cd8e9-ab52-39dc-9a3a-fb28afa4eb93,SESCO,II.1.1,Catamarca,AR-K,annual,2012,gas oil combustion consumption by to the public,23.22516,TJ,CO2,74100.0,kg/TJ,1720984.356,kg -54e17f97-6ca7-3a99-96de-3b4b2af63fe4,SESCO,II.1.1,Catamarca,AR-K,annual,2012,gas oil combustion consumption by to the public,23.22516,TJ,CH4,3.9,kg/TJ,90.57812399999999,kg -54e17f97-6ca7-3a99-96de-3b4b2af63fe4,SESCO,II.1.1,Catamarca,AR-K,annual,2012,gas oil combustion consumption by to the public,23.22516,TJ,N2O,3.9,kg/TJ,90.57812399999999,kg -497fe159-3535-3d4d-b8e1-98e887ae8ca5,SESCO,II.1.1,Chaco,AR-H,annual,2012,gas oil combustion consumption by to the public,283.46976,TJ,CO2,74100.0,kg/TJ,21005109.216000002,kg -3ac81168-f7c2-3b99-b1b3-6dbb66923b75,SESCO,II.1.1,Chaco,AR-H,annual,2012,gas oil combustion consumption by to the public,283.46976,TJ,CH4,3.9,kg/TJ,1105.532064,kg -3ac81168-f7c2-3b99-b1b3-6dbb66923b75,SESCO,II.1.1,Chaco,AR-H,annual,2012,gas oil combustion consumption by to the public,283.46976,TJ,N2O,3.9,kg/TJ,1105.532064,kg -eb47090d-931c-32a9-80ce-e57f9d55b3d0,SESCO,II.1.1,Chubut,AR-U,annual,2012,gas oil combustion consumption by to the public,46.81152,TJ,CO2,74100.0,kg/TJ,3468733.632,kg -1e65b99c-cf23-369e-8f5d-c2c2ea98cce0,SESCO,II.1.1,Chubut,AR-U,annual,2012,gas oil combustion consumption by to the public,46.81152,TJ,CH4,3.9,kg/TJ,182.564928,kg -1e65b99c-cf23-369e-8f5d-c2c2ea98cce0,SESCO,II.1.1,Chubut,AR-U,annual,2012,gas oil combustion consumption by to the public,46.81152,TJ,N2O,3.9,kg/TJ,182.564928,kg -36897184-40e4-3ceb-bdc6-67e916ceb261,SESCO,II.1.1,Corrientes,AR-W,annual,2012,gas oil combustion consumption by to the public,221.81292,TJ,CO2,74100.0,kg/TJ,16436337.372,kg -ac3714d1-20d8-3973-ab2d-be0ed7887e2e,SESCO,II.1.1,Corrientes,AR-W,annual,2012,gas oil combustion consumption by to the public,221.81292,TJ,CH4,3.9,kg/TJ,865.070388,kg -ac3714d1-20d8-3973-ab2d-be0ed7887e2e,SESCO,II.1.1,Corrientes,AR-W,annual,2012,gas oil combustion consumption by to the public,221.81292,TJ,N2O,3.9,kg/TJ,865.070388,kg -e7224872-fcf8-39ee-a0b4-8e4e0cef94f1,SESCO,II.1.1,Córdoba,AR-X,annual,2012,gas oil combustion consumption by to the public,1232.595,TJ,CO2,74100.0,kg/TJ,91335289.5,kg -c5180a80-37fc-3e17-84b8-4c88304c423a,SESCO,II.1.1,Córdoba,AR-X,annual,2012,gas oil combustion consumption by to the public,1232.595,TJ,CH4,3.9,kg/TJ,4807.1205,kg -c5180a80-37fc-3e17-84b8-4c88304c423a,SESCO,II.1.1,Córdoba,AR-X,annual,2012,gas oil combustion consumption by to the public,1232.595,TJ,N2O,3.9,kg/TJ,4807.1205,kg -ef04b67f-1178-39bd-97d8-244255cf8605,SESCO,II.1.1,Entre Rios,AR-E,annual,2012,gas oil combustion consumption by to the public,687.97764,TJ,CO2,74100.0,kg/TJ,50979143.124,kg -4b4eb8e3-d490-3a3b-8ca1-0088ff1ae2fd,SESCO,II.1.1,Entre Rios,AR-E,annual,2012,gas oil combustion consumption by to the public,687.97764,TJ,CH4,3.9,kg/TJ,2683.112796,kg -4b4eb8e3-d490-3a3b-8ca1-0088ff1ae2fd,SESCO,II.1.1,Entre Rios,AR-E,annual,2012,gas oil combustion consumption by to the public,687.97764,TJ,N2O,3.9,kg/TJ,2683.112796,kg -1b09f9b7-500a-38c6-8b99-f6fa34ef4715,SESCO,II.1.1,Formosa,AR-P,annual,2012,gas oil combustion consumption by to the public,94.30932,TJ,CO2,74100.0,kg/TJ,6988320.612,kg -31af9109-c1f2-351e-91f4-0e268975b11f,SESCO,II.1.1,Formosa,AR-P,annual,2012,gas oil combustion consumption by to the public,94.30932,TJ,CH4,3.9,kg/TJ,367.806348,kg -31af9109-c1f2-351e-91f4-0e268975b11f,SESCO,II.1.1,Formosa,AR-P,annual,2012,gas oil combustion consumption by to the public,94.30932,TJ,N2O,3.9,kg/TJ,367.806348,kg -056c31b5-08aa-389e-a252-4d03c1fdad03,SESCO,II.1.1,Jujuy,AR-Y,annual,2012,gas oil combustion consumption by to the public,50.82084,TJ,CO2,74100.0,kg/TJ,3765824.244,kg -34abb441-f73d-3705-b667-12a7d3d53f5a,SESCO,II.1.1,Jujuy,AR-Y,annual,2012,gas oil combustion consumption by to the public,50.82084,TJ,CH4,3.9,kg/TJ,198.20127599999998,kg -34abb441-f73d-3705-b667-12a7d3d53f5a,SESCO,II.1.1,Jujuy,AR-Y,annual,2012,gas oil combustion consumption by to the public,50.82084,TJ,N2O,3.9,kg/TJ,198.20127599999998,kg -e854ee5a-31f2-3ff7-826c-6aaadbeefdb1,SESCO,II.1.1,La Pampa,AR-L,annual,2012,gas oil combustion consumption by to the public,187.93236,TJ,CO2,74100.0,kg/TJ,13925787.875999998,kg -83d7be46-d61d-3895-bcf9-1ff9100f67a1,SESCO,II.1.1,La Pampa,AR-L,annual,2012,gas oil combustion consumption by to the public,187.93236,TJ,CH4,3.9,kg/TJ,732.936204,kg -83d7be46-d61d-3895-bcf9-1ff9100f67a1,SESCO,II.1.1,La Pampa,AR-L,annual,2012,gas oil combustion consumption by to the public,187.93236,TJ,N2O,3.9,kg/TJ,732.936204,kg -eb426115-a8b3-37a7-b07d-d481059c243f,SESCO,II.1.1,La Rioja,AR-F,annual,2012,gas oil combustion consumption by to the public,86.90472,TJ,CO2,74100.0,kg/TJ,6439639.751999999,kg -66aeffed-4a0b-3939-8245-6d1fc696f7b3,SESCO,II.1.1,La Rioja,AR-F,annual,2012,gas oil combustion consumption by to the public,86.90472,TJ,CH4,3.9,kg/TJ,338.928408,kg -66aeffed-4a0b-3939-8245-6d1fc696f7b3,SESCO,II.1.1,La Rioja,AR-F,annual,2012,gas oil combustion consumption by to the public,86.90472,TJ,N2O,3.9,kg/TJ,338.928408,kg -1031e331-f799-32c3-83ca-21d9196ad011,SESCO,II.1.1,Mendoza,AR-M,annual,2012,gas oil combustion consumption by to the public,354.51779999999997,TJ,CO2,74100.0,kg/TJ,26269768.979999997,kg -d9684201-4b5d-3e26-a08b-cb87f4740d77,SESCO,II.1.1,Mendoza,AR-M,annual,2012,gas oil combustion consumption by to the public,354.51779999999997,TJ,CH4,3.9,kg/TJ,1382.6194199999998,kg -d9684201-4b5d-3e26-a08b-cb87f4740d77,SESCO,II.1.1,Mendoza,AR-M,annual,2012,gas oil combustion consumption by to the public,354.51779999999997,TJ,N2O,3.9,kg/TJ,1382.6194199999998,kg -51fb0e56-972c-3085-a6db-dcaf8dc51838,SESCO,II.1.1,Misiones,AR-N,annual,2012,gas oil combustion consumption by to the public,234.99671999999998,TJ,CO2,74100.0,kg/TJ,17413256.952,kg -097f7d69-f304-35c5-9b3b-0d4eb793651b,SESCO,II.1.1,Misiones,AR-N,annual,2012,gas oil combustion consumption by to the public,234.99671999999998,TJ,CH4,3.9,kg/TJ,916.4872079999999,kg -097f7d69-f304-35c5-9b3b-0d4eb793651b,SESCO,II.1.1,Misiones,AR-N,annual,2012,gas oil combustion consumption by to the public,234.99671999999998,TJ,N2O,3.9,kg/TJ,916.4872079999999,kg -e0799629-f77b-3073-a83a-5a6e250bc083,SESCO,II.1.1,Neuquén,AR-Q,annual,2012,gas oil combustion consumption by to the public,111.4302,TJ,CO2,74100.0,kg/TJ,8256977.82,kg -206119ce-d22f-3c29-94f9-18c645f1a665,SESCO,II.1.1,Neuquén,AR-Q,annual,2012,gas oil combustion consumption by to the public,111.4302,TJ,CH4,3.9,kg/TJ,434.57777999999996,kg -206119ce-d22f-3c29-94f9-18c645f1a665,SESCO,II.1.1,Neuquén,AR-Q,annual,2012,gas oil combustion consumption by to the public,111.4302,TJ,N2O,3.9,kg/TJ,434.57777999999996,kg -f1251dc5-099b-3764-a62a-df881814b9f5,SESCO,II.1.1,Rio Negro,AR-R,annual,2012,gas oil combustion consumption by to the public,142.20444,TJ,CO2,74100.0,kg/TJ,10537349.004,kg -924434d8-c0f6-3027-a640-647d48243f45,SESCO,II.1.1,Rio Negro,AR-R,annual,2012,gas oil combustion consumption by to the public,142.20444,TJ,CH4,3.9,kg/TJ,554.597316,kg -924434d8-c0f6-3027-a640-647d48243f45,SESCO,II.1.1,Rio Negro,AR-R,annual,2012,gas oil combustion consumption by to the public,142.20444,TJ,N2O,3.9,kg/TJ,554.597316,kg -43f92be8-2fc3-31d7-b3e2-96302f63364b,SESCO,II.1.1,Salta,AR-A,annual,2012,gas oil combustion consumption by to the public,121.32708,TJ,CO2,74100.0,kg/TJ,8990336.628,kg -2f968d7a-8b7c-309f-9c66-b4f7d5e7931f,SESCO,II.1.1,Salta,AR-A,annual,2012,gas oil combustion consumption by to the public,121.32708,TJ,CH4,3.9,kg/TJ,473.17561199999994,kg -2f968d7a-8b7c-309f-9c66-b4f7d5e7931f,SESCO,II.1.1,Salta,AR-A,annual,2012,gas oil combustion consumption by to the public,121.32708,TJ,N2O,3.9,kg/TJ,473.17561199999994,kg -d31ce2f2-b507-3f01-9892-9d1f46c66196,SESCO,II.1.1,San Juan,AR-J,annual,2012,gas oil combustion consumption by to the public,59.81472,TJ,CO2,74100.0,kg/TJ,4432270.752,kg -efb1ada2-cd5b-3892-8d40-24c08edec470,SESCO,II.1.1,San Juan,AR-J,annual,2012,gas oil combustion consumption by to the public,59.81472,TJ,CH4,3.9,kg/TJ,233.277408,kg -efb1ada2-cd5b-3892-8d40-24c08edec470,SESCO,II.1.1,San Juan,AR-J,annual,2012,gas oil combustion consumption by to the public,59.81472,TJ,N2O,3.9,kg/TJ,233.277408,kg -e8d5d20b-d20f-3b8c-9f28-fd4f1230ea94,SESCO,II.1.1,San Luis,AR-D,annual,2012,gas oil combustion consumption by to the public,20.9496,TJ,CO2,74100.0,kg/TJ,1552365.36,kg -74590a72-364c-3969-a586-38c9d2a5d54a,SESCO,II.1.1,San Luis,AR-D,annual,2012,gas oil combustion consumption by to the public,20.9496,TJ,CH4,3.9,kg/TJ,81.70344,kg -74590a72-364c-3969-a586-38c9d2a5d54a,SESCO,II.1.1,San Luis,AR-D,annual,2012,gas oil combustion consumption by to the public,20.9496,TJ,N2O,3.9,kg/TJ,81.70344,kg -721cbbb7-5f08-3939-8e4b-854b44391611,SESCO,II.1.1,Santa Fe,AR-S,annual,2012,gas oil combustion consumption by to the public,1512.85008,TJ,CO2,74100.0,kg/TJ,112102190.92799999,kg -a9ae7eb6-42a2-34df-9277-2a953144b40d,SESCO,II.1.1,Santa Fe,AR-S,annual,2012,gas oil combustion consumption by to the public,1512.85008,TJ,CH4,3.9,kg/TJ,5900.115312,kg -a9ae7eb6-42a2-34df-9277-2a953144b40d,SESCO,II.1.1,Santa Fe,AR-S,annual,2012,gas oil combustion consumption by to the public,1512.85008,TJ,N2O,3.9,kg/TJ,5900.115312,kg -c9be73a6-4c4d-372a-b466-c88e368387e3,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2012,gas oil combustion consumption by to the public,144.91344,TJ,CO2,74100.0,kg/TJ,10738085.904000001,kg -678f782e-c6dd-3e43-8efe-046084d79bf1,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2012,gas oil combustion consumption by to the public,144.91344,TJ,CH4,3.9,kg/TJ,565.162416,kg -678f782e-c6dd-3e43-8efe-046084d79bf1,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2012,gas oil combustion consumption by to the public,144.91344,TJ,N2O,3.9,kg/TJ,565.162416,kg -a5c8c2fc-32d5-3e2f-97c1-6f1f07b99c90,SESCO,II.1.1,Tucuman,AR-T,annual,2012,gas oil combustion consumption by to the public,246.19392,TJ,CO2,74100.0,kg/TJ,18242969.472,kg -d4ad5d3a-5c4c-3401-87f1-32c6b99c8e9b,SESCO,II.1.1,Tucuman,AR-T,annual,2012,gas oil combustion consumption by to the public,246.19392,TJ,CH4,3.9,kg/TJ,960.1562879999999,kg -d4ad5d3a-5c4c-3401-87f1-32c6b99c8e9b,SESCO,II.1.1,Tucuman,AR-T,annual,2012,gas oil combustion consumption by to the public,246.19392,TJ,N2O,3.9,kg/TJ,960.1562879999999,kg -760070ad-0ddc-3ee2-bf2b-ee32ddcfd1ab,SESCO,II.1.1,Buenos Aires,AR-B,annual,2012,jet kerosene combustion consumption by to the public,0.31453,TJ,CO2,71500.0,kg/TJ,22488.894999999997,kg -14c3d360-c3f9-3a44-aa9c-d7a23f0be055,SESCO,II.1.1,Buenos Aires,AR-B,annual,2012,jet kerosene combustion consumption by to the public,0.31453,TJ,CH4,0.5,kg/TJ,0.157265,kg -3cbb27cd-15a8-30d0-a77a-e64d675f20a7,SESCO,II.1.1,Buenos Aires,AR-B,annual,2012,jet kerosene combustion consumption by to the public,0.31453,TJ,N2O,2.0,kg/TJ,0.62906,kg -e5b67e02-7507-3c2d-be14-cb39e5bd273d,SESCO,II.1.1,Chaco,AR-H,annual,2012,jet kerosene combustion consumption by to the public,0.9750429999999999,TJ,CO2,71500.0,kg/TJ,69715.57449999999,kg -d7c14ffe-92d9-3ea4-b623-9668e4864928,SESCO,II.1.1,Chaco,AR-H,annual,2012,jet kerosene combustion consumption by to the public,0.9750429999999999,TJ,CH4,0.5,kg/TJ,0.48752149999999994,kg -0abdc28e-beec-3697-8b42-13d5d839ec93,SESCO,II.1.1,Chaco,AR-H,annual,2012,jet kerosene combustion consumption by to the public,0.9750429999999999,TJ,N2O,2.0,kg/TJ,1.9500859999999998,kg -6b85b944-a7c3-3ef0-8fd7-55687a20737a,SESCO,II.1.1,Córdoba,AR-X,annual,2012,jet kerosene combustion consumption by to the public,3.2396589999999996,TJ,CO2,71500.0,kg/TJ,231635.61849999998,kg -d3846b24-07c6-350f-83e6-ff4e55bfb5f1,SESCO,II.1.1,Córdoba,AR-X,annual,2012,jet kerosene combustion consumption by to the public,3.2396589999999996,TJ,CH4,0.5,kg/TJ,1.6198294999999998,kg -d8deb42d-29ba-3d8c-8113-c45e3102f669,SESCO,II.1.1,Córdoba,AR-X,annual,2012,jet kerosene combustion consumption by to the public,3.2396589999999996,TJ,N2O,2.0,kg/TJ,6.479317999999999,kg -92cf9644-9116-3164-832a-69ab2101b38d,SESCO,II.1.1,Mendoza,AR-M,annual,2012,jet kerosene combustion consumption by to the public,1.1952139999999998,TJ,CO2,71500.0,kg/TJ,85457.80099999998,kg -ae45e8aa-169d-303b-ade5-420dc9b9c635,SESCO,II.1.1,Mendoza,AR-M,annual,2012,jet kerosene combustion consumption by to the public,1.1952139999999998,TJ,CH4,0.5,kg/TJ,0.5976069999999999,kg -4764c7a8-2aa4-3584-ba60-9a3ed4058c4c,SESCO,II.1.1,Mendoza,AR-M,annual,2012,jet kerosene combustion consumption by to the public,1.1952139999999998,TJ,N2O,2.0,kg/TJ,2.3904279999999996,kg -ee02405e-78fd-3f19-b9a1-023205a35f38,SESCO,II.1.1,Santa Fe,AR-S,annual,2012,jet kerosene combustion consumption by to the public,2.4847869999999994,TJ,CO2,71500.0,kg/TJ,177662.27049999996,kg -a5e0a697-52aa-3736-b4e4-b30073945c3d,SESCO,II.1.1,Santa Fe,AR-S,annual,2012,jet kerosene combustion consumption by to the public,2.4847869999999994,TJ,CH4,0.5,kg/TJ,1.2423934999999997,kg -feb46df7-0899-34ac-a121-1d9df5ef43ab,SESCO,II.1.1,Santa Fe,AR-S,annual,2012,jet kerosene combustion consumption by to the public,2.4847869999999994,TJ,N2O,2.0,kg/TJ,4.969573999999999,kg -1aa2180f-4d32-3364-a7ec-b3b6c69c1592,SESCO,I.3.1,Buenos Aires,AR-B,annual,2012,gasoline combustion consumption by petrochemical industries,145.92419999999998,TJ,CO2,69300.0,kg/TJ,10112547.059999999,kg -0d32e6ef-fbd5-3faa-b2d6-fff493590bcc,SESCO,I.3.1,Buenos Aires,AR-B,annual,2012,gasoline combustion consumption by petrochemical industries,145.92419999999998,TJ,CH4,33.0,kg/TJ,4815.4986,kg -050c6623-06da-3a30-85b5-dd41c40056bc,SESCO,I.3.1,Buenos Aires,AR-B,annual,2012,gasoline combustion consumption by petrochemical industries,145.92419999999998,TJ,N2O,3.2,kg/TJ,466.95743999999996,kg -e7d2fda0-3cf5-3e94-b273-2f0f41aaa38f,SESCO,I.3.1,Capital Federal,AR-C,annual,2012,gas oil combustion consumption by petrochemical industries,2.709,TJ,CO2,74100.0,kg/TJ,200736.9,kg -1a0918db-3dae-3223-83b6-0fcf0fcd3269,SESCO,I.3.1,Capital Federal,AR-C,annual,2012,gas oil combustion consumption by petrochemical industries,2.709,TJ,CH4,3.9,kg/TJ,10.5651,kg -1a0918db-3dae-3223-83b6-0fcf0fcd3269,SESCO,I.3.1,Capital Federal,AR-C,annual,2012,gas oil combustion consumption by petrochemical industries,2.709,TJ,N2O,3.9,kg/TJ,10.5651,kg -4959a717-02f5-394f-a6cc-a260ef46ef63,SESCO,I.3.1,Entre Rios,AR-E,annual,2012,gas oil combustion consumption by petrochemical industries,2.60064,TJ,CO2,74100.0,kg/TJ,192707.424,kg -e1fb6df3-ee5d-3dc2-895f-c4cde407f240,SESCO,I.3.1,Entre Rios,AR-E,annual,2012,gas oil combustion consumption by petrochemical industries,2.60064,TJ,CH4,3.9,kg/TJ,10.142496,kg -e1fb6df3-ee5d-3dc2-895f-c4cde407f240,SESCO,I.3.1,Entre Rios,AR-E,annual,2012,gas oil combustion consumption by petrochemical industries,2.60064,TJ,N2O,3.9,kg/TJ,10.142496,kg -95db9de5-b044-3819-b2f7-9654a80c90b7,SESCO,II.2.1,Buenos Aires,AR-B,annual,2012,gas oil combustion consumption by railway transport,481.299,TJ,CO2,74100.0,kg/TJ,35664255.9,kg -a394393e-c61d-3987-b8d8-689056668f5a,SESCO,II.2.1,Buenos Aires,AR-B,annual,2012,gas oil combustion consumption by railway transport,481.299,TJ,CH4,3.9,kg/TJ,1877.0660999999998,kg -a394393e-c61d-3987-b8d8-689056668f5a,SESCO,II.2.1,Buenos Aires,AR-B,annual,2012,gas oil combustion consumption by railway transport,481.299,TJ,N2O,3.9,kg/TJ,1877.0660999999998,kg -0ecec63b-e3b2-3778-b9a1-51524846dfda,SESCO,II.2.1,Capital Federal,AR-C,annual,2012,gas oil combustion consumption by railway transport,2135.08932,TJ,CO2,74100.0,kg/TJ,158210118.612,kg -3913a77d-d8a9-34be-96e5-965f89118e4a,SESCO,II.2.1,Capital Federal,AR-C,annual,2012,gas oil combustion consumption by railway transport,2135.08932,TJ,CH4,3.9,kg/TJ,8326.848348,kg -3913a77d-d8a9-34be-96e5-965f89118e4a,SESCO,II.2.1,Capital Federal,AR-C,annual,2012,gas oil combustion consumption by railway transport,2135.08932,TJ,N2O,3.9,kg/TJ,8326.848348,kg -37eee7fe-badc-37c6-911b-4b9383059554,SESCO,II.2.1,Santa Fe,AR-S,annual,2012,gas oil combustion consumption by railway transport,202.74156,TJ,CO2,74100.0,kg/TJ,15023149.595999999,kg -c4a9470f-88fa-3d44-ac4c-40b7412a4cad,SESCO,II.2.1,Santa Fe,AR-S,annual,2012,gas oil combustion consumption by railway transport,202.74156,TJ,CH4,3.9,kg/TJ,790.6920839999999,kg -c4a9470f-88fa-3d44-ac4c-40b7412a4cad,SESCO,II.2.1,Santa Fe,AR-S,annual,2012,gas oil combustion consumption by railway transport,202.74156,TJ,N2O,3.9,kg/TJ,790.6920839999999,kg -9d20fe4c-e425-3dbd-8077-7c29f00ce4c3,SESCO,II.2.1,Capital Federal,AR-C,annual,2012,gas oil combustion consumption by railway transport,0.5418,TJ,CO2,74100.0,kg/TJ,40147.38,kg -0458878e-61ca-3248-af7b-f874e8e1fe8a,SESCO,II.2.1,Capital Federal,AR-C,annual,2012,gas oil combustion consumption by railway transport,0.5418,TJ,CH4,3.9,kg/TJ,2.1130199999999997,kg -0458878e-61ca-3248-af7b-f874e8e1fe8a,SESCO,II.2.1,Capital Federal,AR-C,annual,2012,gas oil combustion consumption by railway transport,0.5418,TJ,N2O,3.9,kg/TJ,2.1130199999999997,kg -5a50e96b-f8d9-3f6c-b85d-d6eed52a828f,SESCO,II.1.1,Buenos Aires,AR-B,annual,2012,gasoline combustion consumption by freight transport,4.9616,TJ,CO2,69300.0,kg/TJ,343838.88,kg -403609de-de83-355b-8ba0-0ed65c25acd7,SESCO,II.1.1,Buenos Aires,AR-B,annual,2012,gasoline combustion consumption by freight transport,4.9616,TJ,CH4,33.0,kg/TJ,163.7328,kg -d6e8871a-30d5-36a8-b4b2-e34d56031486,SESCO,II.1.1,Buenos Aires,AR-B,annual,2012,gasoline combustion consumption by freight transport,4.9616,TJ,N2O,3.2,kg/TJ,15.87712,kg -2b1bdaee-ecfa-3085-9018-b18a89e5146d,SESCO,II.1.1,Capital Federal,AR-C,annual,2012,gasoline combustion consumption by freight transport,9.9232,TJ,CO2,69300.0,kg/TJ,687677.76,kg -17df7821-95bd-3750-9604-7721566d1094,SESCO,II.1.1,Capital Federal,AR-C,annual,2012,gasoline combustion consumption by freight transport,9.9232,TJ,CH4,33.0,kg/TJ,327.4656,kg -16bd17f0-7f30-3e69-a61f-eb1fce5076bc,SESCO,II.1.1,Capital Federal,AR-C,annual,2012,gasoline combustion consumption by freight transport,9.9232,TJ,N2O,3.2,kg/TJ,31.75424,kg -7f400c36-2803-3a3e-9de3-cdc39c8c6076,SESCO,II.1.1,Buenos Aires,AR-B,annual,2012,gas oil combustion consumption by freight transport,813.1695599999999,TJ,CO2,74100.0,kg/TJ,60255864.396,kg -10189ee2-b97b-3536-a7d7-6f99f9e36130,SESCO,II.1.1,Buenos Aires,AR-B,annual,2012,gas oil combustion consumption by freight transport,813.1695599999999,TJ,CH4,3.9,kg/TJ,3171.3612839999996,kg -10189ee2-b97b-3536-a7d7-6f99f9e36130,SESCO,II.1.1,Buenos Aires,AR-B,annual,2012,gas oil combustion consumption by freight transport,813.1695599999999,TJ,N2O,3.9,kg/TJ,3171.3612839999996,kg -110f1a4e-8ba4-3c92-9944-1bbdac2b6e71,SESCO,II.1.1,Capital Federal,AR-C,annual,2012,gas oil combustion consumption by freight transport,342.16476,TJ,CO2,74100.0,kg/TJ,25354408.716000002,kg -5f54abeb-614f-31c1-aaa6-d7211eade235,SESCO,II.1.1,Capital Federal,AR-C,annual,2012,gas oil combustion consumption by freight transport,342.16476,TJ,CH4,3.9,kg/TJ,1334.442564,kg -5f54abeb-614f-31c1-aaa6-d7211eade235,SESCO,II.1.1,Capital Federal,AR-C,annual,2012,gas oil combustion consumption by freight transport,342.16476,TJ,N2O,3.9,kg/TJ,1334.442564,kg -b07515d0-18e2-3510-9339-64fe833fe23c,SESCO,II.1.1,Córdoba,AR-X,annual,2012,gas oil combustion consumption by freight transport,203.06664,TJ,CO2,74100.0,kg/TJ,15047238.024,kg -ef86a937-a35a-3766-ae48-27e3d6ace584,SESCO,II.1.1,Córdoba,AR-X,annual,2012,gas oil combustion consumption by freight transport,203.06664,TJ,CH4,3.9,kg/TJ,791.959896,kg -ef86a937-a35a-3766-ae48-27e3d6ace584,SESCO,II.1.1,Córdoba,AR-X,annual,2012,gas oil combustion consumption by freight transport,203.06664,TJ,N2O,3.9,kg/TJ,791.959896,kg -a77b1388-9819-361e-a6ea-a4d3f8fbbfb1,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2012,gas oil combustion consumption by freight transport,2.3478,TJ,CO2,74100.0,kg/TJ,173971.97999999998,kg -1d17f3e5-f8a7-373c-8ca4-a3b9b146039c,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2012,gas oil combustion consumption by freight transport,2.3478,TJ,CH4,3.9,kg/TJ,9.156419999999999,kg -1d17f3e5-f8a7-373c-8ca4-a3b9b146039c,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2012,gas oil combustion consumption by freight transport,2.3478,TJ,N2O,3.9,kg/TJ,9.156419999999999,kg -123b50ce-2fc7-3d54-abcc-f0aca801d6c0,SESCO,II.1.1,Buenos Aires,AR-B,annual,2012,gas oil combustion consumption by public passenger transport,4735.5126,TJ,CO2,74100.0,kg/TJ,350901483.66,kg -26ed70b0-0e5a-35d9-84ac-5e1b1304ab48,SESCO,II.1.1,Buenos Aires,AR-B,annual,2012,gas oil combustion consumption by public passenger transport,4735.5126,TJ,CH4,3.9,kg/TJ,18468.49914,kg -26ed70b0-0e5a-35d9-84ac-5e1b1304ab48,SESCO,II.1.1,Buenos Aires,AR-B,annual,2012,gas oil combustion consumption by public passenger transport,4735.5126,TJ,N2O,3.9,kg/TJ,18468.49914,kg -2e822fc0-634f-30dc-af59-eeb9d19deb29,SESCO,II.1.1,Capital Federal,AR-C,annual,2012,gas oil combustion consumption by public passenger transport,661.899,TJ,CO2,74100.0,kg/TJ,49046715.9,kg -a1b2d137-4552-3c3a-8975-b41d40f77984,SESCO,II.1.1,Capital Federal,AR-C,annual,2012,gas oil combustion consumption by public passenger transport,661.899,TJ,CH4,3.9,kg/TJ,2581.4061,kg -a1b2d137-4552-3c3a-8975-b41d40f77984,SESCO,II.1.1,Capital Federal,AR-C,annual,2012,gas oil combustion consumption by public passenger transport,661.899,TJ,N2O,3.9,kg/TJ,2581.4061,kg -e1cacb83-bbdb-3a47-a0b3-810c1ffa34a6,SESCO,II.1.1,Córdoba,AR-X,annual,2012,gas oil combustion consumption by public passenger transport,5.63472,TJ,CO2,74100.0,kg/TJ,417532.752,kg -3df9bc1a-0d57-3c6b-897d-9b803f5663c3,SESCO,II.1.1,Córdoba,AR-X,annual,2012,gas oil combustion consumption by public passenger transport,5.63472,TJ,CH4,3.9,kg/TJ,21.975407999999998,kg -3df9bc1a-0d57-3c6b-897d-9b803f5663c3,SESCO,II.1.1,Córdoba,AR-X,annual,2012,gas oil combustion consumption by public passenger transport,5.63472,TJ,N2O,3.9,kg/TJ,21.975407999999998,kg -3d5e19fe-aaa7-3f2a-b457-d7093f801acc,SESCO,II.1.1,Misiones,AR-N,annual,2012,gas oil combustion consumption by public passenger transport,1.33644,TJ,CO2,74100.0,kg/TJ,99030.20400000001,kg -18e988ff-9101-3ad8-abd9-b0878e0c9fee,SESCO,II.1.1,Misiones,AR-N,annual,2012,gas oil combustion consumption by public passenger transport,1.33644,TJ,CH4,3.9,kg/TJ,5.212116,kg -18e988ff-9101-3ad8-abd9-b0878e0c9fee,SESCO,II.1.1,Misiones,AR-N,annual,2012,gas oil combustion consumption by public passenger transport,1.33644,TJ,N2O,3.9,kg/TJ,5.212116,kg -eeb8205d-77cd-3f2a-8932-d43d75a1c545,SESCO,II.5.1,Buenos Aires,AR-B,annual,2012,gasoline combustion consumption by agriculture machines,8.7714,TJ,CO2,69300.0,kg/TJ,607858.02,kg -b317fb0b-521a-3f20-ab2a-93fab46f1447,SESCO,II.5.1,Buenos Aires,AR-B,annual,2012,gasoline combustion consumption by agriculture machines,8.7714,TJ,CH4,33.0,kg/TJ,289.45619999999997,kg -c3ec9538-cdd4-3188-b323-3581c89c4abd,SESCO,II.5.1,Buenos Aires,AR-B,annual,2012,gasoline combustion consumption by agriculture machines,8.7714,TJ,N2O,3.2,kg/TJ,28.06848,kg -4923e7a7-f4e7-3ab8-86d3-baabd51cf654,SESCO,II.5.1,Salta,AR-A,annual,2012,gasoline combustion consumption by agriculture machines,3.4111,TJ,CO2,69300.0,kg/TJ,236389.22999999998,kg -02d4c0d6-0eb1-3d4f-b48f-72226e0476a8,SESCO,II.5.1,Salta,AR-A,annual,2012,gasoline combustion consumption by agriculture machines,3.4111,TJ,CH4,33.0,kg/TJ,112.5663,kg -54c775fc-eae4-30f4-ac90-9cbf96fc0915,SESCO,II.5.1,Salta,AR-A,annual,2012,gasoline combustion consumption by agriculture machines,3.4111,TJ,N2O,3.2,kg/TJ,10.91552,kg -5ef78702-906d-34ea-92da-2a0c36bad7b4,SESCO,II.5.1,Buenos Aires,AR-B,annual,2012,gas oil combustion consumption by agriculture machines,8663.23752,TJ,CO2,74100.0,kg/TJ,641945900.232,kg -edbc6a99-3876-3dad-bb6c-df851b620e3f,SESCO,II.5.1,Buenos Aires,AR-B,annual,2012,gas oil combustion consumption by agriculture machines,8663.23752,TJ,CH4,3.9,kg/TJ,33786.626328,kg -edbc6a99-3876-3dad-bb6c-df851b620e3f,SESCO,II.5.1,Buenos Aires,AR-B,annual,2012,gas oil combustion consumption by agriculture machines,8663.23752,TJ,N2O,3.9,kg/TJ,33786.626328,kg -1098f363-9edf-3725-8e5a-5e63ee2e8ccc,SESCO,II.5.1,Capital Federal,AR-C,annual,2012,gas oil combustion consumption by agriculture machines,35.61432,TJ,CO2,74100.0,kg/TJ,2639021.1119999997,kg -7b3b91cb-6489-3224-81d1-daa2b8b11158,SESCO,II.5.1,Capital Federal,AR-C,annual,2012,gas oil combustion consumption by agriculture machines,35.61432,TJ,CH4,3.9,kg/TJ,138.895848,kg -7b3b91cb-6489-3224-81d1-daa2b8b11158,SESCO,II.5.1,Capital Federal,AR-C,annual,2012,gas oil combustion consumption by agriculture machines,35.61432,TJ,N2O,3.9,kg/TJ,138.895848,kg -dcb13266-e297-3c80-847f-b8e66a15ed4f,SESCO,II.5.1,Catamarca,AR-K,annual,2012,gas oil combustion consumption by agriculture machines,195.7704,TJ,CO2,74100.0,kg/TJ,14506586.639999999,kg -9653fb1f-c4b8-322c-ad92-6c21540fd096,SESCO,II.5.1,Catamarca,AR-K,annual,2012,gas oil combustion consumption by agriculture machines,195.7704,TJ,CH4,3.9,kg/TJ,763.50456,kg -9653fb1f-c4b8-322c-ad92-6c21540fd096,SESCO,II.5.1,Catamarca,AR-K,annual,2012,gas oil combustion consumption by agriculture machines,195.7704,TJ,N2O,3.9,kg/TJ,763.50456,kg -68da3984-3549-33b9-a9f4-76f1459abae7,SESCO,II.5.1,Chaco,AR-H,annual,2012,gas oil combustion consumption by agriculture machines,1276.3002,TJ,CO2,74100.0,kg/TJ,94573844.82,kg -7ec7c20a-abb9-3424-a226-e5027d54737c,SESCO,II.5.1,Chaco,AR-H,annual,2012,gas oil combustion consumption by agriculture machines,1276.3002,TJ,CH4,3.9,kg/TJ,4977.570779999999,kg -7ec7c20a-abb9-3424-a226-e5027d54737c,SESCO,II.5.1,Chaco,AR-H,annual,2012,gas oil combustion consumption by agriculture machines,1276.3002,TJ,N2O,3.9,kg/TJ,4977.570779999999,kg -fedbcd65-2676-3d64-8c04-5bd0176e313d,SESCO,II.5.1,Chubut,AR-U,annual,2012,gas oil combustion consumption by agriculture machines,8.34372,TJ,CO2,74100.0,kg/TJ,618269.652,kg -52ef6529-3dd0-362f-b4f8-a7c87d612d68,SESCO,II.5.1,Chubut,AR-U,annual,2012,gas oil combustion consumption by agriculture machines,8.34372,TJ,CH4,3.9,kg/TJ,32.540507999999996,kg -52ef6529-3dd0-362f-b4f8-a7c87d612d68,SESCO,II.5.1,Chubut,AR-U,annual,2012,gas oil combustion consumption by agriculture machines,8.34372,TJ,N2O,3.9,kg/TJ,32.540507999999996,kg -224bf67d-bd48-39eb-a012-af236f3e64fc,SESCO,II.5.1,Corrientes,AR-W,annual,2012,gas oil combustion consumption by agriculture machines,395.58624,TJ,CO2,74100.0,kg/TJ,29312940.384,kg -7ce5a0ea-e1f8-3f2e-8340-4170e01296d6,SESCO,II.5.1,Corrientes,AR-W,annual,2012,gas oil combustion consumption by agriculture machines,395.58624,TJ,CH4,3.9,kg/TJ,1542.786336,kg -7ce5a0ea-e1f8-3f2e-8340-4170e01296d6,SESCO,II.5.1,Corrientes,AR-W,annual,2012,gas oil combustion consumption by agriculture machines,395.58624,TJ,N2O,3.9,kg/TJ,1542.786336,kg -8c12cecf-0c3e-3b3d-8d19-2562bf7bf31d,SESCO,II.5.1,Córdoba,AR-X,annual,2012,gas oil combustion consumption by agriculture machines,7313.14416,TJ,CO2,74100.0,kg/TJ,541903982.256,kg -fac1210f-ed8a-38cd-bd87-968df11c93df,SESCO,II.5.1,Córdoba,AR-X,annual,2012,gas oil combustion consumption by agriculture machines,7313.14416,TJ,CH4,3.9,kg/TJ,28521.262224,kg -fac1210f-ed8a-38cd-bd87-968df11c93df,SESCO,II.5.1,Córdoba,AR-X,annual,2012,gas oil combustion consumption by agriculture machines,7313.14416,TJ,N2O,3.9,kg/TJ,28521.262224,kg -df0d4147-1145-394c-b521-d6108cf7a617,SESCO,II.5.1,Entre Rios,AR-E,annual,2012,gas oil combustion consumption by agriculture machines,1986.45552,TJ,CO2,74100.0,kg/TJ,147196354.032,kg -da8e2701-e810-352f-ac9d-d50ddb84e981,SESCO,II.5.1,Entre Rios,AR-E,annual,2012,gas oil combustion consumption by agriculture machines,1986.45552,TJ,CH4,3.9,kg/TJ,7747.176528,kg -da8e2701-e810-352f-ac9d-d50ddb84e981,SESCO,II.5.1,Entre Rios,AR-E,annual,2012,gas oil combustion consumption by agriculture machines,1986.45552,TJ,N2O,3.9,kg/TJ,7747.176528,kg -03be6eef-7126-38fa-8913-e3afb6f4593e,SESCO,II.5.1,Formosa,AR-P,annual,2012,gas oil combustion consumption by agriculture machines,353.976,TJ,CO2,74100.0,kg/TJ,26229621.6,kg -2bcc1c9f-bbd1-38de-9939-487a3e6ac001,SESCO,II.5.1,Formosa,AR-P,annual,2012,gas oil combustion consumption by agriculture machines,353.976,TJ,CH4,3.9,kg/TJ,1380.5064,kg -2bcc1c9f-bbd1-38de-9939-487a3e6ac001,SESCO,II.5.1,Formosa,AR-P,annual,2012,gas oil combustion consumption by agriculture machines,353.976,TJ,N2O,3.9,kg/TJ,1380.5064,kg -fe2a30d3-7d80-3cda-ae5e-6584b710c765,SESCO,II.5.1,Jujuy,AR-Y,annual,2012,gas oil combustion consumption by agriculture machines,780.9144,TJ,CO2,74100.0,kg/TJ,57865757.04,kg -b3eb22c5-2824-37a3-8b84-c9385e2c5e98,SESCO,II.5.1,Jujuy,AR-Y,annual,2012,gas oil combustion consumption by agriculture machines,780.9144,TJ,CH4,3.9,kg/TJ,3045.56616,kg -b3eb22c5-2824-37a3-8b84-c9385e2c5e98,SESCO,II.5.1,Jujuy,AR-Y,annual,2012,gas oil combustion consumption by agriculture machines,780.9144,TJ,N2O,3.9,kg/TJ,3045.56616,kg -8fa59509-f8ce-39f2-8a7a-17b5884b95d6,SESCO,II.5.1,La Pampa,AR-L,annual,2012,gas oil combustion consumption by agriculture machines,2319.15684,TJ,CO2,74100.0,kg/TJ,171849521.844,kg -fe516c25-1e1a-3800-adb5-f00de7ac3553,SESCO,II.5.1,La Pampa,AR-L,annual,2012,gas oil combustion consumption by agriculture machines,2319.15684,TJ,CH4,3.9,kg/TJ,9044.711676,kg -fe516c25-1e1a-3800-adb5-f00de7ac3553,SESCO,II.5.1,La Pampa,AR-L,annual,2012,gas oil combustion consumption by agriculture machines,2319.15684,TJ,N2O,3.9,kg/TJ,9044.711676,kg -f45a9073-f4db-34eb-b9bd-603349cc9fd7,SESCO,II.5.1,Mendoza,AR-M,annual,2012,gas oil combustion consumption by agriculture machines,393.31068,TJ,CO2,74100.0,kg/TJ,29144321.388,kg -d699d258-7e67-33ab-994e-15ee69771dd1,SESCO,II.5.1,Mendoza,AR-M,annual,2012,gas oil combustion consumption by agriculture machines,393.31068,TJ,CH4,3.9,kg/TJ,1533.911652,kg -d699d258-7e67-33ab-994e-15ee69771dd1,SESCO,II.5.1,Mendoza,AR-M,annual,2012,gas oil combustion consumption by agriculture machines,393.31068,TJ,N2O,3.9,kg/TJ,1533.911652,kg -cd1399e0-5a26-32d4-848d-dde1235337fd,SESCO,II.5.1,Misiones,AR-N,annual,2012,gas oil combustion consumption by agriculture machines,952.37604,TJ,CO2,74100.0,kg/TJ,70571064.564,kg -17c78c81-e40a-3671-813b-2ea8141d2487,SESCO,II.5.1,Misiones,AR-N,annual,2012,gas oil combustion consumption by agriculture machines,952.37604,TJ,CH4,3.9,kg/TJ,3714.266556,kg -17c78c81-e40a-3671-813b-2ea8141d2487,SESCO,II.5.1,Misiones,AR-N,annual,2012,gas oil combustion consumption by agriculture machines,952.37604,TJ,N2O,3.9,kg/TJ,3714.266556,kg -bef43400-0819-316c-8cbd-f92865b11f83,SESCO,II.5.1,Neuquén,AR-Q,annual,2012,gas oil combustion consumption by agriculture machines,30.99096,TJ,CO2,74100.0,kg/TJ,2296430.136,kg -781c682f-0c7c-3dda-9d6a-8d38e98f0bbf,SESCO,II.5.1,Neuquén,AR-Q,annual,2012,gas oil combustion consumption by agriculture machines,30.99096,TJ,CH4,3.9,kg/TJ,120.864744,kg -781c682f-0c7c-3dda-9d6a-8d38e98f0bbf,SESCO,II.5.1,Neuquén,AR-Q,annual,2012,gas oil combustion consumption by agriculture machines,30.99096,TJ,N2O,3.9,kg/TJ,120.864744,kg -874df751-4753-3e64-897f-072f4a5ed895,SESCO,II.5.1,Rio Negro,AR-R,annual,2012,gas oil combustion consumption by agriculture machines,150.76488,TJ,CO2,74100.0,kg/TJ,11171677.608000001,kg -ed678122-e072-3df4-97f3-17e6d186584b,SESCO,II.5.1,Rio Negro,AR-R,annual,2012,gas oil combustion consumption by agriculture machines,150.76488,TJ,CH4,3.9,kg/TJ,587.983032,kg -ed678122-e072-3df4-97f3-17e6d186584b,SESCO,II.5.1,Rio Negro,AR-R,annual,2012,gas oil combustion consumption by agriculture machines,150.76488,TJ,N2O,3.9,kg/TJ,587.983032,kg -37db892e-d417-355e-9531-5f499d2ab5ed,SESCO,II.5.1,Salta,AR-A,annual,2012,gas oil combustion consumption by agriculture machines,1968.07044,TJ,CO2,74100.0,kg/TJ,145834019.604,kg -6a31b34a-3610-3a13-94d5-2ecc270d3ad5,SESCO,II.5.1,Salta,AR-A,annual,2012,gas oil combustion consumption by agriculture machines,1968.07044,TJ,CH4,3.9,kg/TJ,7675.474716,kg -6a31b34a-3610-3a13-94d5-2ecc270d3ad5,SESCO,II.5.1,Salta,AR-A,annual,2012,gas oil combustion consumption by agriculture machines,1968.07044,TJ,N2O,3.9,kg/TJ,7675.474716,kg -c187100c-886d-3bff-8f49-63a21f097f59,SESCO,II.5.1,San Juan,AR-J,annual,2012,gas oil combustion consumption by agriculture machines,116.41476,TJ,CO2,74100.0,kg/TJ,8626333.716,kg -85b02a65-67a6-3b0a-9581-5d0f276bc9c8,SESCO,II.5.1,San Juan,AR-J,annual,2012,gas oil combustion consumption by agriculture machines,116.41476,TJ,CH4,3.9,kg/TJ,454.017564,kg -85b02a65-67a6-3b0a-9581-5d0f276bc9c8,SESCO,II.5.1,San Juan,AR-J,annual,2012,gas oil combustion consumption by agriculture machines,116.41476,TJ,N2O,3.9,kg/TJ,454.017564,kg -aa043c13-e454-357a-9607-b99c2cd277e3,SESCO,II.5.1,San Luis,AR-D,annual,2012,gas oil combustion consumption by agriculture machines,463.20288,TJ,CO2,74100.0,kg/TJ,34323333.408,kg -bff40811-6676-3084-b3f4-14c0079fcb05,SESCO,II.5.1,San Luis,AR-D,annual,2012,gas oil combustion consumption by agriculture machines,463.20288,TJ,CH4,3.9,kg/TJ,1806.4912319999999,kg -bff40811-6676-3084-b3f4-14c0079fcb05,SESCO,II.5.1,San Luis,AR-D,annual,2012,gas oil combustion consumption by agriculture machines,463.20288,TJ,N2O,3.9,kg/TJ,1806.4912319999999,kg -7c8e4b38-dee0-347f-84b1-e93cea62a84a,SESCO,II.5.1,Santa Fe,AR-S,annual,2012,gas oil combustion consumption by agriculture machines,6100.8486,TJ,CO2,74100.0,kg/TJ,452072881.26,kg -110d219e-c329-352a-afa1-dca5bdf54229,SESCO,II.5.1,Santa Fe,AR-S,annual,2012,gas oil combustion consumption by agriculture machines,6100.8486,TJ,CH4,3.9,kg/TJ,23793.309540000002,kg -110d219e-c329-352a-afa1-dca5bdf54229,SESCO,II.5.1,Santa Fe,AR-S,annual,2012,gas oil combustion consumption by agriculture machines,6100.8486,TJ,N2O,3.9,kg/TJ,23793.309540000002,kg -964619e9-0f76-3b99-9875-ccec6ef5e36e,SESCO,II.5.1,Santiago del Estero,AR-G,annual,2012,gas oil combustion consumption by agriculture machines,1517.47344,TJ,CO2,74100.0,kg/TJ,112444781.904,kg -3087eda9-7352-30cc-b741-ee0fa78c4974,SESCO,II.5.1,Santiago del Estero,AR-G,annual,2012,gas oil combustion consumption by agriculture machines,1517.47344,TJ,CH4,3.9,kg/TJ,5918.146416,kg -3087eda9-7352-30cc-b741-ee0fa78c4974,SESCO,II.5.1,Santiago del Estero,AR-G,annual,2012,gas oil combustion consumption by agriculture machines,1517.47344,TJ,N2O,3.9,kg/TJ,5918.146416,kg -6b6c1c36-2167-3c04-ba71-fcae4509d9a2,SESCO,II.5.1,Tucuman,AR-T,annual,2012,gas oil combustion consumption by agriculture machines,1475.75484,TJ,CO2,74100.0,kg/TJ,109353433.64400001,kg -182966ab-1cda-322b-b139-57c328965973,SESCO,II.5.1,Tucuman,AR-T,annual,2012,gas oil combustion consumption by agriculture machines,1475.75484,TJ,CH4,3.9,kg/TJ,5755.443876,kg -182966ab-1cda-322b-b139-57c328965973,SESCO,II.5.1,Tucuman,AR-T,annual,2012,gas oil combustion consumption by agriculture machines,1475.75484,TJ,N2O,3.9,kg/TJ,5755.443876,kg -c9251dbf-66da-3340-a41c-5a7ccb168538,SESCO,II.5.1,Buenos Aires,AR-B,annual,2012,gas oil combustion consumption by agriculture machines,40.05708,TJ,CO2,74100.0,kg/TJ,2968229.628,kg -ff2a3481-4391-3222-9930-f148029075c6,SESCO,II.5.1,Buenos Aires,AR-B,annual,2012,gas oil combustion consumption by agriculture machines,40.05708,TJ,CH4,3.9,kg/TJ,156.222612,kg -ff2a3481-4391-3222-9930-f148029075c6,SESCO,II.5.1,Buenos Aires,AR-B,annual,2012,gas oil combustion consumption by agriculture machines,40.05708,TJ,N2O,3.9,kg/TJ,156.222612,kg -cf2591c3-49f8-3a92-8e5a-2611384552d7,SESCO,II.5.1,Chaco,AR-H,annual,2012,gas oil combustion consumption by agriculture machines,8.95776,TJ,CO2,74100.0,kg/TJ,663770.0160000001,kg -67cd9fdc-4339-3d20-95f1-0be8cd96c734,SESCO,II.5.1,Chaco,AR-H,annual,2012,gas oil combustion consumption by agriculture machines,8.95776,TJ,CH4,3.9,kg/TJ,34.935264000000004,kg -67cd9fdc-4339-3d20-95f1-0be8cd96c734,SESCO,II.5.1,Chaco,AR-H,annual,2012,gas oil combustion consumption by agriculture machines,8.95776,TJ,N2O,3.9,kg/TJ,34.935264000000004,kg -48b124e6-baff-389e-932f-22b4a4fd0a48,SESCO,II.5.1,Corrientes,AR-W,annual,2012,gas oil combustion consumption by agriculture machines,2.56452,TJ,CO2,74100.0,kg/TJ,190030.932,kg -5d9f019d-18b7-3345-a801-6ba735844cc5,SESCO,II.5.1,Corrientes,AR-W,annual,2012,gas oil combustion consumption by agriculture machines,2.56452,TJ,CH4,3.9,kg/TJ,10.001628,kg -5d9f019d-18b7-3345-a801-6ba735844cc5,SESCO,II.5.1,Corrientes,AR-W,annual,2012,gas oil combustion consumption by agriculture machines,2.56452,TJ,N2O,3.9,kg/TJ,10.001628,kg -bf6804c3-0d3d-3954-a067-9cfdd2a82115,SESCO,II.5.1,Córdoba,AR-X,annual,2012,gas oil combustion consumption by agriculture machines,10.6554,TJ,CO2,74100.0,kg/TJ,789565.14,kg -7c97b52a-f5de-3b43-ab58-6a2a522f9736,SESCO,II.5.1,Córdoba,AR-X,annual,2012,gas oil combustion consumption by agriculture machines,10.6554,TJ,CH4,3.9,kg/TJ,41.55606,kg -7c97b52a-f5de-3b43-ab58-6a2a522f9736,SESCO,II.5.1,Córdoba,AR-X,annual,2012,gas oil combustion consumption by agriculture machines,10.6554,TJ,N2O,3.9,kg/TJ,41.55606,kg -24caa789-b58a-3ef0-ba9d-9bb65ddd57c8,SESCO,II.5.1,Entre Rios,AR-E,annual,2012,gas oil combustion consumption by agriculture machines,1.9866,TJ,CO2,74100.0,kg/TJ,147207.06,kg -ddc872aa-b96c-3120-903c-9f823b6c1f70,SESCO,II.5.1,Entre Rios,AR-E,annual,2012,gas oil combustion consumption by agriculture machines,1.9866,TJ,CH4,3.9,kg/TJ,7.747739999999999,kg -ddc872aa-b96c-3120-903c-9f823b6c1f70,SESCO,II.5.1,Entre Rios,AR-E,annual,2012,gas oil combustion consumption by agriculture machines,1.9866,TJ,N2O,3.9,kg/TJ,7.747739999999999,kg -8b1ee078-061f-30ad-aaa5-071878498d20,SESCO,II.5.1,Jujuy,AR-Y,annual,2012,gas oil combustion consumption by agriculture machines,1.33644,TJ,CO2,74100.0,kg/TJ,99030.20400000001,kg -c46150d3-6b88-3173-a8da-f2d196359a95,SESCO,II.5.1,Jujuy,AR-Y,annual,2012,gas oil combustion consumption by agriculture machines,1.33644,TJ,CH4,3.9,kg/TJ,5.212116,kg -c46150d3-6b88-3173-a8da-f2d196359a95,SESCO,II.5.1,Jujuy,AR-Y,annual,2012,gas oil combustion consumption by agriculture machines,1.33644,TJ,N2O,3.9,kg/TJ,5.212116,kg -edf02dd9-842d-3dc3-9881-37738c7533e2,SESCO,II.5.1,La Pampa,AR-L,annual,2012,gas oil combustion consumption by agriculture machines,55.083,TJ,CO2,74100.0,kg/TJ,4081650.3,kg -10a118c4-88cc-3ace-8393-ac0ecb98a76b,SESCO,II.5.1,La Pampa,AR-L,annual,2012,gas oil combustion consumption by agriculture machines,55.083,TJ,CH4,3.9,kg/TJ,214.8237,kg -10a118c4-88cc-3ace-8393-ac0ecb98a76b,SESCO,II.5.1,La Pampa,AR-L,annual,2012,gas oil combustion consumption by agriculture machines,55.083,TJ,N2O,3.9,kg/TJ,214.8237,kg -67d1d61f-ede2-3b65-9225-c5feecad5c33,SESCO,II.5.1,Misiones,AR-N,annual,2012,gas oil combustion consumption by agriculture machines,3.03408,TJ,CO2,74100.0,kg/TJ,224825.32799999998,kg -35b4f497-3825-351c-a21f-8da85fdda7f8,SESCO,II.5.1,Misiones,AR-N,annual,2012,gas oil combustion consumption by agriculture machines,3.03408,TJ,CH4,3.9,kg/TJ,11.832911999999999,kg -35b4f497-3825-351c-a21f-8da85fdda7f8,SESCO,II.5.1,Misiones,AR-N,annual,2012,gas oil combustion consumption by agriculture machines,3.03408,TJ,N2O,3.9,kg/TJ,11.832911999999999,kg -a9246211-e975-3687-820d-2877342746e4,SESCO,II.5.1,Salta,AR-A,annual,2012,gas oil combustion consumption by agriculture machines,55.083,TJ,CO2,74100.0,kg/TJ,4081650.3,kg -8858cfc7-64c2-38c1-9deb-42d19ee1b58a,SESCO,II.5.1,Salta,AR-A,annual,2012,gas oil combustion consumption by agriculture machines,55.083,TJ,CH4,3.9,kg/TJ,214.8237,kg -8858cfc7-64c2-38c1-9deb-42d19ee1b58a,SESCO,II.5.1,Salta,AR-A,annual,2012,gas oil combustion consumption by agriculture machines,55.083,TJ,N2O,3.9,kg/TJ,214.8237,kg -6a387918-b7be-3113-b395-106977e4f753,SESCO,II.5.1,Santa Fe,AR-S,annual,2012,gas oil combustion consumption by agriculture machines,45.61956,TJ,CO2,74100.0,kg/TJ,3380409.396,kg -903fa0f5-b9ee-3816-8f14-093c941bd41d,SESCO,II.5.1,Santa Fe,AR-S,annual,2012,gas oil combustion consumption by agriculture machines,45.61956,TJ,CH4,3.9,kg/TJ,177.916284,kg -903fa0f5-b9ee-3816-8f14-093c941bd41d,SESCO,II.5.1,Santa Fe,AR-S,annual,2012,gas oil combustion consumption by agriculture machines,45.61956,TJ,N2O,3.9,kg/TJ,177.916284,kg -ba0099f8-ac1a-346d-aef8-3099e4f4db4b,SESCO,II.5.1,Santiago del Estero,AR-G,annual,2012,gas oil combustion consumption by agriculture machines,60.57324,TJ,CO2,74100.0,kg/TJ,4488477.084,kg -1b91d313-e125-3c28-ac11-ed86395032e9,SESCO,II.5.1,Santiago del Estero,AR-G,annual,2012,gas oil combustion consumption by agriculture machines,60.57324,TJ,CH4,3.9,kg/TJ,236.235636,kg -1b91d313-e125-3c28-ac11-ed86395032e9,SESCO,II.5.1,Santiago del Estero,AR-G,annual,2012,gas oil combustion consumption by agriculture machines,60.57324,TJ,N2O,3.9,kg/TJ,236.235636,kg -e3d27008-f320-3490-99d9-5db4ff176784,SESCO,II.5.1,Tucuman,AR-T,annual,2012,gas oil combustion consumption by agriculture machines,25.35624,TJ,CO2,74100.0,kg/TJ,1878897.384,kg -44db70ac-33ae-38bb-b9ae-7ad3ef9be930,SESCO,II.5.1,Tucuman,AR-T,annual,2012,gas oil combustion consumption by agriculture machines,25.35624,TJ,CH4,3.9,kg/TJ,98.889336,kg -44db70ac-33ae-38bb-b9ae-7ad3ef9be930,SESCO,II.5.1,Tucuman,AR-T,annual,2012,gas oil combustion consumption by agriculture machines,25.35624,TJ,N2O,3.9,kg/TJ,98.889336,kg -d811cee4-865c-3980-b088-a2f85b3c9ec4,SESCO,II.5.1,Buenos Aires,AR-B,annual,2012,jet kerosene combustion consumption by agriculture machines,17.047525999999998,TJ,CO2,71500.0,kg/TJ,1218898.109,kg -2568d848-45dd-3174-80f1-26db6512f45d,SESCO,II.5.1,Buenos Aires,AR-B,annual,2012,jet kerosene combustion consumption by agriculture machines,17.047525999999998,TJ,CH4,0.5,kg/TJ,8.523762999999999,kg -5e324690-8491-3cc0-a9a3-4116ea82a36a,SESCO,II.5.1,Buenos Aires,AR-B,annual,2012,jet kerosene combustion consumption by agriculture machines,17.047525999999998,TJ,N2O,2.0,kg/TJ,34.095051999999995,kg -f15cf9af-afeb-31b9-a32e-757a60ba7346,SESCO,II.5.1,Córdoba,AR-X,annual,2012,jet kerosene combustion consumption by agriculture machines,0.31453,TJ,CO2,71500.0,kg/TJ,22488.894999999997,kg -cf48b8c3-2f61-3dd0-b123-b5d477ee9603,SESCO,II.5.1,Córdoba,AR-X,annual,2012,jet kerosene combustion consumption by agriculture machines,0.31453,TJ,CH4,0.5,kg/TJ,0.157265,kg -ba1ec442-4a67-3a2f-9a40-c16e4a8f5665,SESCO,II.5.1,Córdoba,AR-X,annual,2012,jet kerosene combustion consumption by agriculture machines,0.31453,TJ,N2O,2.0,kg/TJ,0.62906,kg -cc792cdc-d228-338a-bb13-ca68e37f94ef,SESCO,II.5.1,Entre Rios,AR-E,annual,2012,jet kerosene combustion consumption by agriculture machines,0.28307699999999997,TJ,CO2,71500.0,kg/TJ,20240.0055,kg -dc4b07dd-66f0-3b8c-b844-1bd9cba8b39e,SESCO,II.5.1,Entre Rios,AR-E,annual,2012,jet kerosene combustion consumption by agriculture machines,0.28307699999999997,TJ,CH4,0.5,kg/TJ,0.14153849999999998,kg -37f2b4ef-68e3-3354-a06c-2e31094aa7bb,SESCO,II.5.1,Entre Rios,AR-E,annual,2012,jet kerosene combustion consumption by agriculture machines,0.28307699999999997,TJ,N2O,2.0,kg/TJ,0.5661539999999999,kg -0b485a23-a4e1-3f9c-9b4d-94ca9e0eab2d,SESCO,II.5.1,La Pampa,AR-L,annual,2012,jet kerosene combustion consumption by agriculture machines,2.8307699999999993,TJ,CO2,71500.0,kg/TJ,202400.05499999996,kg -bd5be3db-0457-3765-96b8-bfb9211ae4d3,SESCO,II.5.1,La Pampa,AR-L,annual,2012,jet kerosene combustion consumption by agriculture machines,2.8307699999999993,TJ,CH4,0.5,kg/TJ,1.4153849999999997,kg -038b89bd-ea78-39cf-b61e-81d0256aa806,SESCO,II.5.1,La Pampa,AR-L,annual,2012,jet kerosene combustion consumption by agriculture machines,2.8307699999999993,TJ,N2O,2.0,kg/TJ,5.661539999999999,kg -87038111-3f31-3dc1-8f99-f0774615edc2,SESCO,II.5.1,Santa Fe,AR-S,annual,2012,jet kerosene combustion consumption by agriculture machines,7.485813999999999,TJ,CO2,71500.0,kg/TJ,535235.7009999999,kg -06d86841-67db-3c48-98b8-734f1e95c25d,SESCO,II.5.1,Santa Fe,AR-S,annual,2012,jet kerosene combustion consumption by agriculture machines,7.485813999999999,TJ,CH4,0.5,kg/TJ,3.7429069999999993,kg -6dc73c96-2157-3b9c-ad1e-86ae2775252e,SESCO,II.5.1,Santa Fe,AR-S,annual,2012,jet kerosene combustion consumption by agriculture machines,7.485813999999999,TJ,N2O,2.0,kg/TJ,14.971627999999997,kg -f3de91e4-2fb4-3ca8-ac05-51dd501e7680,SESCO,II.1.1,Buenos Aires,AR-B,annual,2012,gas oil combustion consumption by to the public,42493.9158,TJ,CO2,74100.0,kg/TJ,3148799160.78,kg -37162648-3c07-337e-ac1e-c7db79934105,SESCO,II.1.1,Buenos Aires,AR-B,annual,2012,gas oil combustion consumption by to the public,42493.9158,TJ,CH4,3.9,kg/TJ,165726.27162,kg -37162648-3c07-337e-ac1e-c7db79934105,SESCO,II.1.1,Buenos Aires,AR-B,annual,2012,gas oil combustion consumption by to the public,42493.9158,TJ,N2O,3.9,kg/TJ,165726.27162,kg -18bef0c4-6d6b-36af-ac7b-31358bda7f06,SESCO,II.1.1,Capital Federal,AR-C,annual,2012,gas oil combustion consumption by to the public,4016.07444,TJ,CO2,74100.0,kg/TJ,297591116.004,kg -94e698c1-389a-38df-a1d1-cc89c5925286,SESCO,II.1.1,Capital Federal,AR-C,annual,2012,gas oil combustion consumption by to the public,4016.07444,TJ,CH4,3.9,kg/TJ,15662.690315999998,kg -94e698c1-389a-38df-a1d1-cc89c5925286,SESCO,II.1.1,Capital Federal,AR-C,annual,2012,gas oil combustion consumption by to the public,4016.07444,TJ,N2O,3.9,kg/TJ,15662.690315999998,kg -16e927fe-4a0a-3ab6-812a-e0800f5165c1,SESCO,II.1.1,Catamarca,AR-K,annual,2012,gas oil combustion consumption by to the public,616.42392,TJ,CO2,74100.0,kg/TJ,45677012.471999995,kg -0c7d8b61-4df4-3ee2-bfd3-92e8e3ee6ffc,SESCO,II.1.1,Catamarca,AR-K,annual,2012,gas oil combustion consumption by to the public,616.42392,TJ,CH4,3.9,kg/TJ,2404.0532879999996,kg -0c7d8b61-4df4-3ee2-bfd3-92e8e3ee6ffc,SESCO,II.1.1,Catamarca,AR-K,annual,2012,gas oil combustion consumption by to the public,616.42392,TJ,N2O,3.9,kg/TJ,2404.0532879999996,kg -af14959b-b328-3836-90f2-8b03d7a9a1b6,SESCO,II.1.1,Chaco,AR-H,annual,2012,gas oil combustion consumption by to the public,2690.86776,TJ,CO2,74100.0,kg/TJ,199393301.016,kg -a7d8e499-5e38-3506-b497-7aef66309027,SESCO,II.1.1,Chaco,AR-H,annual,2012,gas oil combustion consumption by to the public,2690.86776,TJ,CH4,3.9,kg/TJ,10494.384264,kg -a7d8e499-5e38-3506-b497-7aef66309027,SESCO,II.1.1,Chaco,AR-H,annual,2012,gas oil combustion consumption by to the public,2690.86776,TJ,N2O,3.9,kg/TJ,10494.384264,kg -5545c683-943a-37c5-a324-77cf9d7d489f,SESCO,II.1.1,Chubut,AR-U,annual,2012,gas oil combustion consumption by to the public,5233.2462,TJ,CO2,74100.0,kg/TJ,387783543.41999996,kg -49096a54-ab70-3e5e-bb3e-b7a4f1d7ee40,SESCO,II.1.1,Chubut,AR-U,annual,2012,gas oil combustion consumption by to the public,5233.2462,TJ,CH4,3.9,kg/TJ,20409.66018,kg -49096a54-ab70-3e5e-bb3e-b7a4f1d7ee40,SESCO,II.1.1,Chubut,AR-U,annual,2012,gas oil combustion consumption by to the public,5233.2462,TJ,N2O,3.9,kg/TJ,20409.66018,kg -26198211-4477-3f87-b520-14a8a2604c92,SESCO,II.1.1,Corrientes,AR-W,annual,2012,gas oil combustion consumption by to the public,2209.67712,TJ,CO2,74100.0,kg/TJ,163737074.59199998,kg -447c6878-07ac-37a8-b9fe-77770b555292,SESCO,II.1.1,Corrientes,AR-W,annual,2012,gas oil combustion consumption by to the public,2209.67712,TJ,CH4,3.9,kg/TJ,8617.740768,kg -447c6878-07ac-37a8-b9fe-77770b555292,SESCO,II.1.1,Corrientes,AR-W,annual,2012,gas oil combustion consumption by to the public,2209.67712,TJ,N2O,3.9,kg/TJ,8617.740768,kg -69471966-f7e1-35fc-8fca-38c36cb25209,SESCO,II.1.1,Córdoba,AR-X,annual,2012,gas oil combustion consumption by to the public,15715.84812,TJ,CO2,74100.0,kg/TJ,1164544345.6920002,kg -d61162da-8f76-3fa4-8e87-f57a7dddd2b9,SESCO,II.1.1,Córdoba,AR-X,annual,2012,gas oil combustion consumption by to the public,15715.84812,TJ,CH4,3.9,kg/TJ,61291.807668,kg -d61162da-8f76-3fa4-8e87-f57a7dddd2b9,SESCO,II.1.1,Córdoba,AR-X,annual,2012,gas oil combustion consumption by to the public,15715.84812,TJ,N2O,3.9,kg/TJ,61291.807668,kg -1163aac8-c334-30fc-b7b0-db76951970f4,SESCO,II.1.1,Entre Rios,AR-E,annual,2012,gas oil combustion consumption by to the public,4788.4645199999995,TJ,CO2,74100.0,kg/TJ,354825220.932,kg -f6f81f96-8acf-3e52-a812-07c1de653805,SESCO,II.1.1,Entre Rios,AR-E,annual,2012,gas oil combustion consumption by to the public,4788.4645199999995,TJ,CH4,3.9,kg/TJ,18675.011627999997,kg -f6f81f96-8acf-3e52-a812-07c1de653805,SESCO,II.1.1,Entre Rios,AR-E,annual,2012,gas oil combustion consumption by to the public,4788.4645199999995,TJ,N2O,3.9,kg/TJ,18675.011627999997,kg -23379767-8c34-3154-a0be-a5e9f5fba3c9,SESCO,II.1.1,Formosa,AR-P,annual,2012,gas oil combustion consumption by to the public,883.5313199999999,TJ,CO2,74100.0,kg/TJ,65469670.812,kg -92bb1d1b-850d-3e5a-9147-80dfd7d2b362,SESCO,II.1.1,Formosa,AR-P,annual,2012,gas oil combustion consumption by to the public,883.5313199999999,TJ,CH4,3.9,kg/TJ,3445.7721479999996,kg -92bb1d1b-850d-3e5a-9147-80dfd7d2b362,SESCO,II.1.1,Formosa,AR-P,annual,2012,gas oil combustion consumption by to the public,883.5313199999999,TJ,N2O,3.9,kg/TJ,3445.7721479999996,kg -7ac507b2-e792-3329-99ff-3928877525d3,SESCO,II.1.1,Jujuy,AR-Y,annual,2012,gas oil combustion consumption by to the public,2226.4006799999997,TJ,CO2,74100.0,kg/TJ,164976290.38799998,kg -3cabb2df-1c5f-3a90-a46a-8960c7a90b8f,SESCO,II.1.1,Jujuy,AR-Y,annual,2012,gas oil combustion consumption by to the public,2226.4006799999997,TJ,CH4,3.9,kg/TJ,8682.962651999998,kg -3cabb2df-1c5f-3a90-a46a-8960c7a90b8f,SESCO,II.1.1,Jujuy,AR-Y,annual,2012,gas oil combustion consumption by to the public,2226.4006799999997,TJ,N2O,3.9,kg/TJ,8682.962651999998,kg -70953292-9814-3362-a51e-aaea80adc5dd,SESCO,II.1.1,La Pampa,AR-L,annual,2012,gas oil combustion consumption by to the public,2999.15196,TJ,CO2,74100.0,kg/TJ,222237160.236,kg -ba519fde-4c03-3920-aee6-a72229b79a96,SESCO,II.1.1,La Pampa,AR-L,annual,2012,gas oil combustion consumption by to the public,2999.15196,TJ,CH4,3.9,kg/TJ,11696.692644,kg -ba519fde-4c03-3920-aee6-a72229b79a96,SESCO,II.1.1,La Pampa,AR-L,annual,2012,gas oil combustion consumption by to the public,2999.15196,TJ,N2O,3.9,kg/TJ,11696.692644,kg -5e876de3-99ea-33b3-a059-303a840ca0d7,SESCO,II.1.1,La Rioja,AR-F,annual,2012,gas oil combustion consumption by to the public,1019.59536,TJ,CO2,74100.0,kg/TJ,75552016.176,kg -047dc116-2085-3fc5-879b-fd679114a27a,SESCO,II.1.1,La Rioja,AR-F,annual,2012,gas oil combustion consumption by to the public,1019.59536,TJ,CH4,3.9,kg/TJ,3976.421904,kg -047dc116-2085-3fc5-879b-fd679114a27a,SESCO,II.1.1,La Rioja,AR-F,annual,2012,gas oil combustion consumption by to the public,1019.59536,TJ,N2O,3.9,kg/TJ,3976.421904,kg -a88d6c58-b5a7-32da-b7b7-eec7ae4873fd,SESCO,II.1.1,Mendoza,AR-M,annual,2012,gas oil combustion consumption by to the public,12815.62884,TJ,CO2,74100.0,kg/TJ,949638097.0439999,kg -c0ed702b-91fe-39b9-ad26-7e0cb5dbdd2d,SESCO,II.1.1,Mendoza,AR-M,annual,2012,gas oil combustion consumption by to the public,12815.62884,TJ,CH4,3.9,kg/TJ,49980.952476,kg -c0ed702b-91fe-39b9-ad26-7e0cb5dbdd2d,SESCO,II.1.1,Mendoza,AR-M,annual,2012,gas oil combustion consumption by to the public,12815.62884,TJ,N2O,3.9,kg/TJ,49980.952476,kg -05ca4771-3d4b-3797-a35a-e5c389b7ff8b,SESCO,II.1.1,Misiones,AR-N,annual,2012,gas oil combustion consumption by to the public,4448.79204,TJ,CO2,74100.0,kg/TJ,329655490.16400003,kg -2c27a1aa-c36d-31cc-aa15-dd6bbee2a514,SESCO,II.1.1,Misiones,AR-N,annual,2012,gas oil combustion consumption by to the public,4448.79204,TJ,CH4,3.9,kg/TJ,17350.288956,kg -2c27a1aa-c36d-31cc-aa15-dd6bbee2a514,SESCO,II.1.1,Misiones,AR-N,annual,2012,gas oil combustion consumption by to the public,4448.79204,TJ,N2O,3.9,kg/TJ,17350.288956,kg -7a0e9dbf-304d-3f44-9f0d-00f98e57f48b,SESCO,II.1.1,Neuquén,AR-Q,annual,2012,gas oil combustion consumption by to the public,3915.62472,TJ,CO2,74100.0,kg/TJ,290147791.752,kg -ad908752-6924-3467-a2d3-0c16e67ad25f,SESCO,II.1.1,Neuquén,AR-Q,annual,2012,gas oil combustion consumption by to the public,3915.62472,TJ,CH4,3.9,kg/TJ,15270.936408,kg -ad908752-6924-3467-a2d3-0c16e67ad25f,SESCO,II.1.1,Neuquén,AR-Q,annual,2012,gas oil combustion consumption by to the public,3915.62472,TJ,N2O,3.9,kg/TJ,15270.936408,kg -44810fc4-d165-3974-b572-5c5b672506dd,SESCO,II.1.1,Rio Negro,AR-R,annual,2012,gas oil combustion consumption by to the public,5045.81952,TJ,CO2,74100.0,kg/TJ,373895226.432,kg -6d5e7eec-4700-3943-b41e-dd32d1c2cffb,SESCO,II.1.1,Rio Negro,AR-R,annual,2012,gas oil combustion consumption by to the public,5045.81952,TJ,CH4,3.9,kg/TJ,19678.696128,kg -6d5e7eec-4700-3943-b41e-dd32d1c2cffb,SESCO,II.1.1,Rio Negro,AR-R,annual,2012,gas oil combustion consumption by to the public,5045.81952,TJ,N2O,3.9,kg/TJ,19678.696128,kg -679ce7ef-a925-3898-ba1a-4a1deffe3a9c,SESCO,II.1.1,Salta,AR-A,annual,2012,gas oil combustion consumption by to the public,4408.8072,TJ,CO2,74100.0,kg/TJ,326692613.52000004,kg -a9064a3a-f468-3e6e-bfc1-f3646f5f2d36,SESCO,II.1.1,Salta,AR-A,annual,2012,gas oil combustion consumption by to the public,4408.8072,TJ,CH4,3.9,kg/TJ,17194.34808,kg -a9064a3a-f468-3e6e-bfc1-f3646f5f2d36,SESCO,II.1.1,Salta,AR-A,annual,2012,gas oil combustion consumption by to the public,4408.8072,TJ,N2O,3.9,kg/TJ,17194.34808,kg -fc228513-0869-3a55-8fc9-41c3e17f8687,SESCO,II.1.1,San Juan,AR-J,annual,2012,gas oil combustion consumption by to the public,2292.31968,TJ,CO2,74100.0,kg/TJ,169860888.28800002,kg -fdb9da5a-2fad-34b9-b839-be61d3e8b7ec,SESCO,II.1.1,San Juan,AR-J,annual,2012,gas oil combustion consumption by to the public,2292.31968,TJ,CH4,3.9,kg/TJ,8940.046752,kg -fdb9da5a-2fad-34b9-b839-be61d3e8b7ec,SESCO,II.1.1,San Juan,AR-J,annual,2012,gas oil combustion consumption by to the public,2292.31968,TJ,N2O,3.9,kg/TJ,8940.046752,kg -1cf2d8fe-9605-34ad-b27b-c1956f2d9cab,SESCO,II.1.1,San Luis,AR-D,annual,2012,gas oil combustion consumption by to the public,2049.41268,TJ,CO2,74100.0,kg/TJ,151861479.588,kg -168e524d-2b31-3505-a003-72741be8ffa2,SESCO,II.1.1,San Luis,AR-D,annual,2012,gas oil combustion consumption by to the public,2049.41268,TJ,CH4,3.9,kg/TJ,7992.709451999999,kg -168e524d-2b31-3505-a003-72741be8ffa2,SESCO,II.1.1,San Luis,AR-D,annual,2012,gas oil combustion consumption by to the public,2049.41268,TJ,N2O,3.9,kg/TJ,7992.709451999999,kg -4da3d965-bbc9-344f-8818-7642186168e1,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2012,gas oil combustion consumption by to the public,3796.212,TJ,CO2,74100.0,kg/TJ,281299309.2,kg -5fd446c4-d963-3eae-a7ff-e81a600f1877,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2012,gas oil combustion consumption by to the public,3796.212,TJ,CH4,3.9,kg/TJ,14805.2268,kg -5fd446c4-d963-3eae-a7ff-e81a600f1877,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2012,gas oil combustion consumption by to the public,3796.212,TJ,N2O,3.9,kg/TJ,14805.2268,kg -3cdcc71e-c6b8-36d9-8fb1-8520595d9f17,SESCO,II.1.1,Santa Fe,AR-S,annual,2012,gas oil combustion consumption by to the public,11981.5458,TJ,CO2,74100.0,kg/TJ,887832543.78,kg -5444ff00-4d5c-36c5-9696-70f254183423,SESCO,II.1.1,Santa Fe,AR-S,annual,2012,gas oil combustion consumption by to the public,11981.5458,TJ,CH4,3.9,kg/TJ,46728.02862,kg -5444ff00-4d5c-36c5-9696-70f254183423,SESCO,II.1.1,Santa Fe,AR-S,annual,2012,gas oil combustion consumption by to the public,11981.5458,TJ,N2O,3.9,kg/TJ,46728.02862,kg -fcad38e7-a332-3a12-b0a3-44fc435ffdbf,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2012,gas oil combustion consumption by to the public,2390.92728,TJ,CO2,74100.0,kg/TJ,177167711.44799998,kg -08033400-b211-320e-96e8-944bbffb8a31,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2012,gas oil combustion consumption by to the public,2390.92728,TJ,CH4,3.9,kg/TJ,9324.616392,kg -08033400-b211-320e-96e8-944bbffb8a31,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2012,gas oil combustion consumption by to the public,2390.92728,TJ,N2O,3.9,kg/TJ,9324.616392,kg -9a02c398-e822-3844-b56d-4fb9336b49c6,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2012,gas oil combustion consumption by to the public,1057.16016,TJ,CO2,74100.0,kg/TJ,78335567.85599999,kg -ba3ec553-4e81-300e-abc7-0f42c3288920,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2012,gas oil combustion consumption by to the public,1057.16016,TJ,CH4,3.9,kg/TJ,4122.924623999999,kg -ba3ec553-4e81-300e-abc7-0f42c3288920,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2012,gas oil combustion consumption by to the public,1057.16016,TJ,N2O,3.9,kg/TJ,4122.924623999999,kg -789f9f56-93b7-3ecc-a6fe-c637e13ff391,SESCO,II.1.1,Tucuman,AR-T,annual,2012,gas oil combustion consumption by to the public,2926.18956,TJ,CO2,74100.0,kg/TJ,216830646.396,kg -bee80a3c-32c6-307b-a939-dbb1580159ac,SESCO,II.1.1,Tucuman,AR-T,annual,2012,gas oil combustion consumption by to the public,2926.18956,TJ,CH4,3.9,kg/TJ,11412.139283999999,kg -bee80a3c-32c6-307b-a939-dbb1580159ac,SESCO,II.1.1,Tucuman,AR-T,annual,2012,gas oil combustion consumption by to the public,2926.18956,TJ,N2O,3.9,kg/TJ,11412.139283999999,kg -e1ab008d-6cde-3084-a7e1-801b871d84a1,SESCO,II.1.1,Buenos Aires,AR-B,annual,2012,gas oil combustion consumption by to the public,9683.5914,TJ,CO2,74100.0,kg/TJ,717554122.74,kg -6da2fcc7-edfd-3a28-98dc-844221277df8,SESCO,II.1.1,Buenos Aires,AR-B,annual,2012,gas oil combustion consumption by to the public,9683.5914,TJ,CH4,3.9,kg/TJ,37766.00646,kg -6da2fcc7-edfd-3a28-98dc-844221277df8,SESCO,II.1.1,Buenos Aires,AR-B,annual,2012,gas oil combustion consumption by to the public,9683.5914,TJ,N2O,3.9,kg/TJ,37766.00646,kg -413fa3a0-0ab7-3d71-be75-b810cec42b8d,SESCO,II.1.1,Capital Federal,AR-C,annual,2012,gas oil combustion consumption by to the public,1150.422,TJ,CO2,74100.0,kg/TJ,85246270.2,kg -dd3d0224-bbe2-3331-baab-055fddabac6d,SESCO,II.1.1,Capital Federal,AR-C,annual,2012,gas oil combustion consumption by to the public,1150.422,TJ,CH4,3.9,kg/TJ,4486.6458,kg -dd3d0224-bbe2-3331-baab-055fddabac6d,SESCO,II.1.1,Capital Federal,AR-C,annual,2012,gas oil combustion consumption by to the public,1150.422,TJ,N2O,3.9,kg/TJ,4486.6458,kg -98ccefb8-a1d6-3ba8-98e6-bc459d8cbde4,SESCO,II.1.1,Catamarca,AR-K,annual,2012,gas oil combustion consumption by to the public,82.13688,TJ,CO2,74100.0,kg/TJ,6086342.808,kg -9af71a59-3c08-3da9-a827-8120235818d2,SESCO,II.1.1,Catamarca,AR-K,annual,2012,gas oil combustion consumption by to the public,82.13688,TJ,CH4,3.9,kg/TJ,320.33383200000003,kg -9af71a59-3c08-3da9-a827-8120235818d2,SESCO,II.1.1,Catamarca,AR-K,annual,2012,gas oil combustion consumption by to the public,82.13688,TJ,N2O,3.9,kg/TJ,320.33383200000003,kg -2eb617be-469f-321d-be29-5e61f9a2c386,SESCO,II.1.1,Chaco,AR-H,annual,2012,gas oil combustion consumption by to the public,675.51624,TJ,CO2,74100.0,kg/TJ,50055753.384,kg -99b0bc48-8b22-3961-bcfe-22542c9593ec,SESCO,II.1.1,Chaco,AR-H,annual,2012,gas oil combustion consumption by to the public,675.51624,TJ,CH4,3.9,kg/TJ,2634.513336,kg -99b0bc48-8b22-3961-bcfe-22542c9593ec,SESCO,II.1.1,Chaco,AR-H,annual,2012,gas oil combustion consumption by to the public,675.51624,TJ,N2O,3.9,kg/TJ,2634.513336,kg -35e1c865-77db-393d-903a-02f2ebc42eed,SESCO,II.1.1,Chubut,AR-U,annual,2012,gas oil combustion consumption by to the public,524.93196,TJ,CO2,74100.0,kg/TJ,38897458.236,kg -a10bf43c-4a3f-3fa8-a772-09a090c5d8cf,SESCO,II.1.1,Chubut,AR-U,annual,2012,gas oil combustion consumption by to the public,524.93196,TJ,CH4,3.9,kg/TJ,2047.234644,kg -a10bf43c-4a3f-3fa8-a772-09a090c5d8cf,SESCO,II.1.1,Chubut,AR-U,annual,2012,gas oil combustion consumption by to the public,524.93196,TJ,N2O,3.9,kg/TJ,2047.234644,kg -7bd3d294-730f-3860-b6ba-a2e307d7a256,SESCO,II.1.1,Corrientes,AR-W,annual,2012,gas oil combustion consumption by to the public,567.51744,TJ,CO2,74100.0,kg/TJ,42053042.304,kg -9c8c51c9-aca5-3d0e-9e88-d33fbfbfa026,SESCO,II.1.1,Corrientes,AR-W,annual,2012,gas oil combustion consumption by to the public,567.51744,TJ,CH4,3.9,kg/TJ,2213.3180159999997,kg -9c8c51c9-aca5-3d0e-9e88-d33fbfbfa026,SESCO,II.1.1,Corrientes,AR-W,annual,2012,gas oil combustion consumption by to the public,567.51744,TJ,N2O,3.9,kg/TJ,2213.3180159999997,kg -486db0e5-47b2-3262-bc8f-047ca09e653d,SESCO,II.1.1,Córdoba,AR-X,annual,2012,gas oil combustion consumption by to the public,2000.07276,TJ,CO2,74100.0,kg/TJ,148205391.516,kg -664f483a-64ea-3112-ba73-ee68cee60b6d,SESCO,II.1.1,Córdoba,AR-X,annual,2012,gas oil combustion consumption by to the public,2000.07276,TJ,CH4,3.9,kg/TJ,7800.283764,kg -664f483a-64ea-3112-ba73-ee68cee60b6d,SESCO,II.1.1,Córdoba,AR-X,annual,2012,gas oil combustion consumption by to the public,2000.07276,TJ,N2O,3.9,kg/TJ,7800.283764,kg -252aa3a6-9f40-3dd1-8760-874fb07737fb,SESCO,II.1.1,Entre Rios,AR-E,annual,2012,gas oil combustion consumption by to the public,998.75412,TJ,CO2,74100.0,kg/TJ,74007680.292,kg -4991a728-a283-3c6d-9025-85b049a4f708,SESCO,II.1.1,Entre Rios,AR-E,annual,2012,gas oil combustion consumption by to the public,998.75412,TJ,CH4,3.9,kg/TJ,3895.141068,kg -4991a728-a283-3c6d-9025-85b049a4f708,SESCO,II.1.1,Entre Rios,AR-E,annual,2012,gas oil combustion consumption by to the public,998.75412,TJ,N2O,3.9,kg/TJ,3895.141068,kg -4f448d0e-e85b-3c7e-b209-4794389f2e10,SESCO,II.1.1,Formosa,AR-P,annual,2012,gas oil combustion consumption by to the public,206.24519999999998,TJ,CO2,74100.0,kg/TJ,15282769.319999998,kg -471ae09d-d8a5-3b09-a820-17ca1855b9d4,SESCO,II.1.1,Formosa,AR-P,annual,2012,gas oil combustion consumption by to the public,206.24519999999998,TJ,CH4,3.9,kg/TJ,804.35628,kg -471ae09d-d8a5-3b09-a820-17ca1855b9d4,SESCO,II.1.1,Formosa,AR-P,annual,2012,gas oil combustion consumption by to the public,206.24519999999998,TJ,N2O,3.9,kg/TJ,804.35628,kg -b442d552-dd33-3e80-8792-a809de5e18e2,SESCO,II.1.1,Jujuy,AR-Y,annual,2012,gas oil combustion consumption by to the public,196.85399999999998,TJ,CO2,74100.0,kg/TJ,14586881.399999999,kg -20b41757-e274-39f2-9f08-0d12d4693397,SESCO,II.1.1,Jujuy,AR-Y,annual,2012,gas oil combustion consumption by to the public,196.85399999999998,TJ,CH4,3.9,kg/TJ,767.7305999999999,kg -20b41757-e274-39f2-9f08-0d12d4693397,SESCO,II.1.1,Jujuy,AR-Y,annual,2012,gas oil combustion consumption by to the public,196.85399999999998,TJ,N2O,3.9,kg/TJ,767.7305999999999,kg -1bd920d0-d164-37f7-8953-47c2515e629b,SESCO,II.1.1,La Pampa,AR-L,annual,2012,gas oil combustion consumption by to the public,575.9334,TJ,CO2,74100.0,kg/TJ,42676664.94,kg -31d526dc-1bb2-3e25-8f4f-f9e5bd07fb7d,SESCO,II.1.1,La Pampa,AR-L,annual,2012,gas oil combustion consumption by to the public,575.9334,TJ,CH4,3.9,kg/TJ,2246.14026,kg -31d526dc-1bb2-3e25-8f4f-f9e5bd07fb7d,SESCO,II.1.1,La Pampa,AR-L,annual,2012,gas oil combustion consumption by to the public,575.9334,TJ,N2O,3.9,kg/TJ,2246.14026,kg -0d952ab5-e1ec-3391-9e0c-37b7c6077eee,SESCO,II.1.1,La Rioja,AR-F,annual,2012,gas oil combustion consumption by to the public,117.35388,TJ,CO2,74100.0,kg/TJ,8695922.508,kg -f9e9e1d6-7587-3e44-8a10-a5ce415fea1c,SESCO,II.1.1,La Rioja,AR-F,annual,2012,gas oil combustion consumption by to the public,117.35388,TJ,CH4,3.9,kg/TJ,457.680132,kg -f9e9e1d6-7587-3e44-8a10-a5ce415fea1c,SESCO,II.1.1,La Rioja,AR-F,annual,2012,gas oil combustion consumption by to the public,117.35388,TJ,N2O,3.9,kg/TJ,457.680132,kg -19f7d4b9-17c6-37c8-9e56-9d51fe9e319d,SESCO,II.1.1,Mendoza,AR-M,annual,2012,gas oil combustion consumption by to the public,1096.27812,TJ,CO2,74100.0,kg/TJ,81234208.692,kg -4a973ddc-77fa-3909-9da9-6c91d2659a56,SESCO,II.1.1,Mendoza,AR-M,annual,2012,gas oil combustion consumption by to the public,1096.27812,TJ,CH4,3.9,kg/TJ,4275.484668,kg -4a973ddc-77fa-3909-9da9-6c91d2659a56,SESCO,II.1.1,Mendoza,AR-M,annual,2012,gas oil combustion consumption by to the public,1096.27812,TJ,N2O,3.9,kg/TJ,4275.484668,kg -8bf89e11-b2ea-3661-ba13-900e01bc86b4,SESCO,II.1.1,Misiones,AR-N,annual,2012,gas oil combustion consumption by to the public,656.95056,TJ,CO2,74100.0,kg/TJ,48680036.496,kg -1a0d9bc5-bf31-3d9e-8a33-8f6b06f553a5,SESCO,II.1.1,Misiones,AR-N,annual,2012,gas oil combustion consumption by to the public,656.95056,TJ,CH4,3.9,kg/TJ,2562.107184,kg -1a0d9bc5-bf31-3d9e-8a33-8f6b06f553a5,SESCO,II.1.1,Misiones,AR-N,annual,2012,gas oil combustion consumption by to the public,656.95056,TJ,N2O,3.9,kg/TJ,2562.107184,kg -cc029df5-0576-3f91-ad91-13b2c6640199,SESCO,II.1.1,Neuquén,AR-Q,annual,2012,gas oil combustion consumption by to the public,663.41604,TJ,CO2,74100.0,kg/TJ,49159128.563999996,kg -72bbb758-3290-3235-960e-0953de6ecb23,SESCO,II.1.1,Neuquén,AR-Q,annual,2012,gas oil combustion consumption by to the public,663.41604,TJ,CH4,3.9,kg/TJ,2587.3225559999996,kg -72bbb758-3290-3235-960e-0953de6ecb23,SESCO,II.1.1,Neuquén,AR-Q,annual,2012,gas oil combustion consumption by to the public,663.41604,TJ,N2O,3.9,kg/TJ,2587.3225559999996,kg -4769ee21-8f96-3e40-b78b-f855a757072b,SESCO,II.1.1,Rio Negro,AR-R,annual,2012,gas oil combustion consumption by to the public,555.56172,TJ,CO2,74100.0,kg/TJ,41167123.452,kg -6dc613f4-df81-3933-9c82-15bf918031b3,SESCO,II.1.1,Rio Negro,AR-R,annual,2012,gas oil combustion consumption by to the public,555.56172,TJ,CH4,3.9,kg/TJ,2166.690708,kg -6dc613f4-df81-3933-9c82-15bf918031b3,SESCO,II.1.1,Rio Negro,AR-R,annual,2012,gas oil combustion consumption by to the public,555.56172,TJ,N2O,3.9,kg/TJ,2166.690708,kg -ea7ce814-25a2-3b22-a2b7-123cad0e9cfd,SESCO,II.1.1,Salta,AR-A,annual,2012,gas oil combustion consumption by to the public,496.86672,TJ,CO2,74100.0,kg/TJ,36817823.952,kg -ddf4f3fa-58c4-3773-b81e-00857fe23894,SESCO,II.1.1,Salta,AR-A,annual,2012,gas oil combustion consumption by to the public,496.86672,TJ,CH4,3.9,kg/TJ,1937.780208,kg -ddf4f3fa-58c4-3773-b81e-00857fe23894,SESCO,II.1.1,Salta,AR-A,annual,2012,gas oil combustion consumption by to the public,496.86672,TJ,N2O,3.9,kg/TJ,1937.780208,kg -f3960f42-73d5-3dbf-bdd5-10a548a39a58,SESCO,II.1.1,San Juan,AR-J,annual,2012,gas oil combustion consumption by to the public,219.68184,TJ,CO2,74100.0,kg/TJ,16278424.343999999,kg -b9b946fc-bbc8-308a-bbb6-970bde717172,SESCO,II.1.1,San Juan,AR-J,annual,2012,gas oil combustion consumption by to the public,219.68184,TJ,CH4,3.9,kg/TJ,856.7591759999999,kg -b9b946fc-bbc8-308a-bbb6-970bde717172,SESCO,II.1.1,San Juan,AR-J,annual,2012,gas oil combustion consumption by to the public,219.68184,TJ,N2O,3.9,kg/TJ,856.7591759999999,kg -0b792e81-acfa-3bfe-989e-f7da7432f2a8,SESCO,II.1.1,San Luis,AR-D,annual,2012,gas oil combustion consumption by to the public,272.63376,TJ,CO2,74100.0,kg/TJ,20202161.616,kg -ce28f07d-dc47-339b-8c8b-2e644aa368cd,SESCO,II.1.1,San Luis,AR-D,annual,2012,gas oil combustion consumption by to the public,272.63376,TJ,CH4,3.9,kg/TJ,1063.2716639999999,kg -ce28f07d-dc47-339b-8c8b-2e644aa368cd,SESCO,II.1.1,San Luis,AR-D,annual,2012,gas oil combustion consumption by to the public,272.63376,TJ,N2O,3.9,kg/TJ,1063.2716639999999,kg -ef6c7ee5-eaf3-355e-928a-1da43330e0c3,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2012,gas oil combustion consumption by to the public,335.15748,TJ,CO2,74100.0,kg/TJ,24835169.268000003,kg -e8bfbe05-1d35-313b-8813-e63cbe931178,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2012,gas oil combustion consumption by to the public,335.15748,TJ,CH4,3.9,kg/TJ,1307.114172,kg -e8bfbe05-1d35-313b-8813-e63cbe931178,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2012,gas oil combustion consumption by to the public,335.15748,TJ,N2O,3.9,kg/TJ,1307.114172,kg -0230e89d-26b6-3902-8429-9a58aebbcc4d,SESCO,II.1.1,Santa Fe,AR-S,annual,2012,gas oil combustion consumption by to the public,2484.08076,TJ,CO2,74100.0,kg/TJ,184070384.31599998,kg -a5bf41d7-4a0f-3e1c-940e-b67b84040597,SESCO,II.1.1,Santa Fe,AR-S,annual,2012,gas oil combustion consumption by to the public,2484.08076,TJ,CH4,3.9,kg/TJ,9687.914964,kg -a5bf41d7-4a0f-3e1c-940e-b67b84040597,SESCO,II.1.1,Santa Fe,AR-S,annual,2012,gas oil combustion consumption by to the public,2484.08076,TJ,N2O,3.9,kg/TJ,9687.914964,kg -3c158af0-0993-37ef-b7bf-8c51304588f1,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2012,gas oil combustion consumption by to the public,342.23699999999997,TJ,CO2,74100.0,kg/TJ,25359761.7,kg -a6187faf-1ec6-373f-94f5-6756952103cc,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2012,gas oil combustion consumption by to the public,342.23699999999997,TJ,CH4,3.9,kg/TJ,1334.7242999999999,kg -a6187faf-1ec6-373f-94f5-6756952103cc,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2012,gas oil combustion consumption by to the public,342.23699999999997,TJ,N2O,3.9,kg/TJ,1334.7242999999999,kg -8ab8d7fc-c680-371a-9bb5-2a5881c809c7,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2012,gas oil combustion consumption by to the public,70.32563999999999,TJ,CO2,74100.0,kg/TJ,5211129.924,kg -14f2cb23-182a-3d70-bb8c-855fd43f7c41,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2012,gas oil combustion consumption by to the public,70.32563999999999,TJ,CH4,3.9,kg/TJ,274.269996,kg -14f2cb23-182a-3d70-bb8c-855fd43f7c41,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2012,gas oil combustion consumption by to the public,70.32563999999999,TJ,N2O,3.9,kg/TJ,274.269996,kg -e614991d-515f-3d41-a9c2-6c9c1b428135,SESCO,II.1.1,Tucuman,AR-T,annual,2012,gas oil combustion consumption by to the public,347.8356,TJ,CO2,74100.0,kg/TJ,25774617.96,kg -85534ba6-560e-3ceb-a6aa-cf31db474120,SESCO,II.1.1,Tucuman,AR-T,annual,2012,gas oil combustion consumption by to the public,347.8356,TJ,CH4,3.9,kg/TJ,1356.55884,kg -85534ba6-560e-3ceb-a6aa-cf31db474120,SESCO,II.1.1,Tucuman,AR-T,annual,2012,gas oil combustion consumption by to the public,347.8356,TJ,N2O,3.9,kg/TJ,1356.55884,kg -91390e65-dd83-3374-a3ec-587f4b491ca9,SESCO,II.1.1,Buenos Aires,AR-B,annual,2012,jet kerosene combustion consumption by to the public,341.2650499999999,TJ,CO2,71500.0,kg/TJ,24400451.074999996,kg -7bba12ea-a650-3123-8c54-690041c5431d,SESCO,II.1.1,Buenos Aires,AR-B,annual,2012,jet kerosene combustion consumption by to the public,341.2650499999999,TJ,CH4,0.5,kg/TJ,170.63252499999996,kg -e172e27f-97e4-308a-adeb-c529094051b2,SESCO,II.1.1,Buenos Aires,AR-B,annual,2012,jet kerosene combustion consumption by to the public,341.2650499999999,TJ,N2O,2.0,kg/TJ,682.5300999999998,kg -d8bfe8d2-bbfc-3f34-8d0d-2500810289bd,SESCO,II.1.1,Capital Federal,AR-C,annual,2012,jet kerosene combustion consumption by to the public,20.381543999999998,TJ,CO2,71500.0,kg/TJ,1457280.396,kg -678257a7-9171-3a48-8c88-40075c0c62d2,SESCO,II.1.1,Capital Federal,AR-C,annual,2012,jet kerosene combustion consumption by to the public,20.381543999999998,TJ,CH4,0.5,kg/TJ,10.190771999999999,kg -65519c7e-6779-3ca2-b111-98646461cbdb,SESCO,II.1.1,Capital Federal,AR-C,annual,2012,jet kerosene combustion consumption by to the public,20.381543999999998,TJ,N2O,2.0,kg/TJ,40.763087999999996,kg -5345a10c-1de7-37b1-906d-a203f2477da3,SESCO,II.1.1,Catamarca,AR-K,annual,2012,jet kerosene combustion consumption by to the public,5.976069999999999,TJ,CO2,71500.0,kg/TJ,427289.00499999995,kg -de141414-1ac2-3fce-bee0-4b3d117b18cd,SESCO,II.1.1,Catamarca,AR-K,annual,2012,jet kerosene combustion consumption by to the public,5.976069999999999,TJ,CH4,0.5,kg/TJ,2.9880349999999996,kg -70367cf8-8043-3436-b57b-538479a9572e,SESCO,II.1.1,Catamarca,AR-K,annual,2012,jet kerosene combustion consumption by to the public,5.976069999999999,TJ,N2O,2.0,kg/TJ,11.952139999999998,kg -79908eb3-a139-3fae-85de-a09b1e347990,SESCO,II.1.1,Chaco,AR-H,annual,2012,jet kerosene combustion consumption by to the public,1.7299149999999996,TJ,CO2,71500.0,kg/TJ,123688.92249999997,kg -b3775ab6-d5d1-395b-b729-a03bd4a98b21,SESCO,II.1.1,Chaco,AR-H,annual,2012,jet kerosene combustion consumption by to the public,1.7299149999999996,TJ,CH4,0.5,kg/TJ,0.8649574999999998,kg -b19cbd92-b9ad-3f5d-be6a-721ee27dc46e,SESCO,II.1.1,Chaco,AR-H,annual,2012,jet kerosene combustion consumption by to the public,1.7299149999999996,TJ,N2O,2.0,kg/TJ,3.4598299999999993,kg -dd0f1c03-4c99-302e-89a3-95778e17ce13,SESCO,II.1.1,Chubut,AR-U,annual,2012,jet kerosene combustion consumption by to the public,15.978123999999998,TJ,CO2,71500.0,kg/TJ,1142435.866,kg -46b37263-ff7a-3e4b-a069-f5d8fbb9d60d,SESCO,II.1.1,Chubut,AR-U,annual,2012,jet kerosene combustion consumption by to the public,15.978123999999998,TJ,CH4,0.5,kg/TJ,7.989061999999999,kg -fca7a037-9695-3978-a800-d951b5e8dc37,SESCO,II.1.1,Chubut,AR-U,annual,2012,jet kerosene combustion consumption by to the public,15.978123999999998,TJ,N2O,2.0,kg/TJ,31.956247999999995,kg -8e520226-2f94-37da-a8cf-d6a031b3b9a7,SESCO,II.1.1,Corrientes,AR-W,annual,2012,jet kerosene combustion consumption by to the public,5.472821999999999,TJ,CO2,71500.0,kg/TJ,391306.7729999999,kg -15b519fb-1859-3a6f-9f18-06a5c916381d,SESCO,II.1.1,Corrientes,AR-W,annual,2012,jet kerosene combustion consumption by to the public,5.472821999999999,TJ,CH4,0.5,kg/TJ,2.7364109999999995,kg -5242df52-51b2-332e-9202-a3beeea3ef3f,SESCO,II.1.1,Corrientes,AR-W,annual,2012,jet kerosene combustion consumption by to the public,5.472821999999999,TJ,N2O,2.0,kg/TJ,10.945643999999998,kg -2ced49ba-331f-3a4b-ac9d-152682035ac5,SESCO,II.1.1,Córdoba,AR-X,annual,2012,jet kerosene combustion consumption by to the public,164.93953199999999,TJ,CO2,71500.0,kg/TJ,11793176.537999999,kg -39295754-e8a0-3666-ad30-badd9ea2a1ed,SESCO,II.1.1,Córdoba,AR-X,annual,2012,jet kerosene combustion consumption by to the public,164.93953199999999,TJ,CH4,0.5,kg/TJ,82.46976599999999,kg -0e34a793-188e-36ca-8e6c-b0a16f5c85a8,SESCO,II.1.1,Córdoba,AR-X,annual,2012,jet kerosene combustion consumption by to the public,164.93953199999999,TJ,N2O,2.0,kg/TJ,329.87906399999997,kg -5f865069-57df-3639-8959-3cf4372073d5,SESCO,II.1.1,Entre Rios,AR-E,annual,2012,jet kerosene combustion consumption by to the public,17.739492,TJ,CO2,71500.0,kg/TJ,1268373.6779999998,kg -a2301ac6-1023-30a6-88c3-86db563b5032,SESCO,II.1.1,Entre Rios,AR-E,annual,2012,jet kerosene combustion consumption by to the public,17.739492,TJ,CH4,0.5,kg/TJ,8.869746,kg -e0bd2a49-0562-339d-9f8e-35a181771c15,SESCO,II.1.1,Entre Rios,AR-E,annual,2012,jet kerosene combustion consumption by to the public,17.739492,TJ,N2O,2.0,kg/TJ,35.478984,kg -42b3a33d-fa35-3dee-97be-093bd454cac5,SESCO,II.1.1,Jujuy,AR-Y,annual,2012,jet kerosene combustion consumption by to the public,3.7114539999999994,TJ,CO2,71500.0,kg/TJ,265368.96099999995,kg -44613af5-ca2a-3595-971d-fb8e26814f47,SESCO,II.1.1,Jujuy,AR-Y,annual,2012,jet kerosene combustion consumption by to the public,3.7114539999999994,TJ,CH4,0.5,kg/TJ,1.8557269999999997,kg -b616eab8-8759-34ae-92f9-e1fd2156fa94,SESCO,II.1.1,Jujuy,AR-Y,annual,2012,jet kerosene combustion consumption by to the public,3.7114539999999994,TJ,N2O,2.0,kg/TJ,7.422907999999999,kg -10bb1797-5e1b-333a-ba03-bc06efd841ca,SESCO,II.1.1,La Pampa,AR-L,annual,2012,jet kerosene combustion consumption by to the public,20.255732,TJ,CO2,71500.0,kg/TJ,1448284.838,kg -c5431d39-4f70-3833-84b0-c744dee78fd4,SESCO,II.1.1,La Pampa,AR-L,annual,2012,jet kerosene combustion consumption by to the public,20.255732,TJ,CH4,0.5,kg/TJ,10.127866,kg -17320e26-9a14-3c19-ba32-67faa806cc90,SESCO,II.1.1,La Pampa,AR-L,annual,2012,jet kerosene combustion consumption by to the public,20.255732,TJ,N2O,2.0,kg/TJ,40.511464,kg -f64d743d-08d4-3c03-a60c-5c69b215c636,SESCO,II.1.1,La Rioja,AR-F,annual,2012,jet kerosene combustion consumption by to the public,1.7299149999999996,TJ,CO2,71500.0,kg/TJ,123688.92249999997,kg -93767ca4-de42-3342-831e-31642a2f1a42,SESCO,II.1.1,La Rioja,AR-F,annual,2012,jet kerosene combustion consumption by to the public,1.7299149999999996,TJ,CH4,0.5,kg/TJ,0.8649574999999998,kg -5c49d455-591c-30a2-bd2c-84ab290eac22,SESCO,II.1.1,La Rioja,AR-F,annual,2012,jet kerosene combustion consumption by to the public,1.7299149999999996,TJ,N2O,2.0,kg/TJ,3.4598299999999993,kg -d4419394-6737-3028-84b9-6c3422efd6ca,SESCO,II.1.1,Mendoza,AR-M,annual,2012,jet kerosene combustion consumption by to the public,44.128558999999996,TJ,CO2,71500.0,kg/TJ,3155191.9684999995,kg -74f6151e-c0e3-35e1-8b87-f884a33027a0,SESCO,II.1.1,Mendoza,AR-M,annual,2012,jet kerosene combustion consumption by to the public,44.128558999999996,TJ,CH4,0.5,kg/TJ,22.064279499999998,kg -71832ba0-0306-332c-a35a-e60855c979d1,SESCO,II.1.1,Mendoza,AR-M,annual,2012,jet kerosene combustion consumption by to the public,44.128558999999996,TJ,N2O,2.0,kg/TJ,88.25711799999999,kg -54e69169-7ff0-3a4b-ad0c-f24653466bd0,SESCO,II.1.1,Neuquén,AR-Q,annual,2012,jet kerosene combustion consumption by to the public,10.06496,TJ,CO2,71500.0,kg/TJ,719644.6399999999,kg -d2772ca8-c6cc-3385-968c-ac4dda574e65,SESCO,II.1.1,Neuquén,AR-Q,annual,2012,jet kerosene combustion consumption by to the public,10.06496,TJ,CH4,0.5,kg/TJ,5.03248,kg -bcb1e024-9085-36f4-aa9e-8f5e48502796,SESCO,II.1.1,Neuquén,AR-Q,annual,2012,jet kerosene combustion consumption by to the public,10.06496,TJ,N2O,2.0,kg/TJ,20.12992,kg -5e5fea2d-6773-3dde-aa24-50506a486bfb,SESCO,II.1.1,Rio Negro,AR-R,annual,2012,jet kerosene combustion consumption by to the public,2.2646159999999997,TJ,CO2,71500.0,kg/TJ,161920.044,kg -e696d295-1c91-36c2-a1e4-ad231b890aaf,SESCO,II.1.1,Rio Negro,AR-R,annual,2012,jet kerosene combustion consumption by to the public,2.2646159999999997,TJ,CH4,0.5,kg/TJ,1.1323079999999999,kg -710f495d-fa2c-3ee2-b8ba-67c178903b50,SESCO,II.1.1,Rio Negro,AR-R,annual,2012,jet kerosene combustion consumption by to the public,2.2646159999999997,TJ,N2O,2.0,kg/TJ,4.5292319999999995,kg -168d67a6-a9b9-355a-ad71-6959368d1b85,SESCO,II.1.1,Salta,AR-A,annual,2012,jet kerosene combustion consumption by to the public,5.850257999999999,TJ,CO2,71500.0,kg/TJ,418293.4469999999,kg -8bb8047e-34a2-32f2-92d5-691849f0188b,SESCO,II.1.1,Salta,AR-A,annual,2012,jet kerosene combustion consumption by to the public,5.850257999999999,TJ,CH4,0.5,kg/TJ,2.9251289999999996,kg -a5ff0d1c-080c-345c-86ba-b8338475c646,SESCO,II.1.1,Salta,AR-A,annual,2012,jet kerosene combustion consumption by to the public,5.850257999999999,TJ,N2O,2.0,kg/TJ,11.700515999999999,kg -e352d5a5-715e-39d1-8117-03478011ae9f,SESCO,II.1.1,San Juan,AR-J,annual,2012,jet kerosene combustion consumption by to the public,4.843761999999999,TJ,CO2,71500.0,kg/TJ,346328.98299999995,kg -bd7168c6-2857-3fb5-a8ac-185883e87240,SESCO,II.1.1,San Juan,AR-J,annual,2012,jet kerosene combustion consumption by to the public,4.843761999999999,TJ,CH4,0.5,kg/TJ,2.4218809999999995,kg -541b67be-cdae-3e2d-a056-79c87ad934e1,SESCO,II.1.1,San Juan,AR-J,annual,2012,jet kerosene combustion consumption by to the public,4.843761999999999,TJ,N2O,2.0,kg/TJ,9.687523999999998,kg -a7c7d996-6e4b-3794-b308-8015b3cb8168,SESCO,II.1.1,San Luis,AR-D,annual,2012,jet kerosene combustion consumption by to the public,8.649574999999999,TJ,CO2,71500.0,kg/TJ,618444.6124999999,kg -942264a8-4a33-3dfc-adf1-30e52ca400a1,SESCO,II.1.1,San Luis,AR-D,annual,2012,jet kerosene combustion consumption by to the public,8.649574999999999,TJ,CH4,0.5,kg/TJ,4.324787499999999,kg -945a3f7b-76c3-3f12-9ba1-abfccea934fb,SESCO,II.1.1,San Luis,AR-D,annual,2012,jet kerosene combustion consumption by to the public,8.649574999999999,TJ,N2O,2.0,kg/TJ,17.299149999999997,kg -6e14562c-c3c3-31ce-8fc0-b28aec4f79b2,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2012,jet kerosene combustion consumption by to the public,18.022568999999997,TJ,CO2,71500.0,kg/TJ,1288613.6834999998,kg -615d650b-f5a7-3b0a-87a9-85c0b1631199,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2012,jet kerosene combustion consumption by to the public,18.022568999999997,TJ,CH4,0.5,kg/TJ,9.011284499999999,kg -88663677-8b0d-3503-83a9-b067101a2f39,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2012,jet kerosene combustion consumption by to the public,18.022568999999997,TJ,N2O,2.0,kg/TJ,36.045137999999994,kg -e300b1e0-565e-3430-8e14-6a7cfee21b77,SESCO,II.1.1,Santa Fe,AR-S,annual,2012,jet kerosene combustion consumption by to the public,62.52856399999999,TJ,CO2,71500.0,kg/TJ,4470792.325999999,kg -a2ab838c-27e8-3f76-b5d0-6e6597af7195,SESCO,II.1.1,Santa Fe,AR-S,annual,2012,jet kerosene combustion consumption by to the public,62.52856399999999,TJ,CH4,0.5,kg/TJ,31.264281999999994,kg -4374f28d-7660-3b7d-9465-42c700b858b5,SESCO,II.1.1,Santa Fe,AR-S,annual,2012,jet kerosene combustion consumption by to the public,62.52856399999999,TJ,N2O,2.0,kg/TJ,125.05712799999998,kg -c5ef8c77-5e84-3b2a-86cd-de3a50bb523e,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2012,jet kerosene combustion consumption by to the public,8.712480999999999,TJ,CO2,71500.0,kg/TJ,622942.3914999999,kg -4a84697a-69a2-3648-8382-5504c8bf54fe,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2012,jet kerosene combustion consumption by to the public,8.712480999999999,TJ,CH4,0.5,kg/TJ,4.356240499999999,kg -8de1a1eb-3a0b-331a-99a5-5aaabdd1a93c,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2012,jet kerosene combustion consumption by to the public,8.712480999999999,TJ,N2O,2.0,kg/TJ,17.424961999999997,kg -1282f674-2986-38b8-a849-ac4a7166c98f,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2012,jet kerosene combustion consumption by to the public,2.2960689999999997,TJ,CO2,71500.0,kg/TJ,164168.93349999998,kg -6def4a84-2b2c-3fdb-8655-32c8ac96ccfa,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2012,jet kerosene combustion consumption by to the public,2.2960689999999997,TJ,CH4,0.5,kg/TJ,1.1480344999999998,kg -55b22f75-72ed-3be9-8421-8964c24acf6b,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2012,jet kerosene combustion consumption by to the public,2.2960689999999997,TJ,N2O,2.0,kg/TJ,4.592137999999999,kg -d2578fa6-9be4-37aa-9393-0ff7d684d6d5,SESCO,II.1.1,Tucuman,AR-T,annual,2012,jet kerosene combustion consumption by to the public,13.807866999999998,TJ,CO2,71500.0,kg/TJ,987262.4904999998,kg -ad0597cf-6b45-3463-b69a-d759b9d76733,SESCO,II.1.1,Tucuman,AR-T,annual,2012,jet kerosene combustion consumption by to the public,13.807866999999998,TJ,CH4,0.5,kg/TJ,6.903933499999999,kg -0a6f71c3-5c08-3725-ab4a-255e4084a0eb,SESCO,II.1.1,Tucuman,AR-T,annual,2012,jet kerosene combustion consumption by to the public,13.807866999999998,TJ,N2O,2.0,kg/TJ,27.615733999999996,kg -db3e31cb-063a-30bc-a9d5-8ca7a0f24e22,SESCO,II.1.1,Buenos Aires,AR-B,annual,2012,gasoline combustion consumption by freight transport,24.0992,TJ,CO2,69300.0,kg/TJ,1670074.56,kg -978fa113-ed08-3ad2-9911-ba8a1987fc1d,SESCO,II.1.1,Buenos Aires,AR-B,annual,2012,gasoline combustion consumption by freight transport,24.0992,TJ,CH4,33.0,kg/TJ,795.2736,kg -dea9245f-8c50-3a9a-8e0f-2d75772a4601,SESCO,II.1.1,Buenos Aires,AR-B,annual,2012,gasoline combustion consumption by freight transport,24.0992,TJ,N2O,3.2,kg/TJ,77.11744,kg -3ae3d11c-aceb-376b-af15-89b37f5747c6,SESCO,II.1.1,Capital Federal,AR-C,annual,2012,gasoline combustion consumption by freight transport,11.872399999999999,TJ,CO2,69300.0,kg/TJ,822757.32,kg -9d8b6b89-7547-3a5a-a01c-d118983a6e6d,SESCO,II.1.1,Capital Federal,AR-C,annual,2012,gasoline combustion consumption by freight transport,11.872399999999999,TJ,CH4,33.0,kg/TJ,391.78919999999994,kg -cf79dfa4-3a68-39bc-a9c5-19890cc7b76c,SESCO,II.1.1,Capital Federal,AR-C,annual,2012,gasoline combustion consumption by freight transport,11.872399999999999,TJ,N2O,3.2,kg/TJ,37.991679999999995,kg -94b51570-0d3c-3cde-9f54-b11ef5a94dd9,SESCO,II.1.1,Buenos Aires,AR-B,annual,2012,gas oil combustion consumption by freight transport,4691.51844,TJ,CO2,74100.0,kg/TJ,347641516.404,kg -522c1df0-cdd4-3690-a21a-9935cbd4049f,SESCO,II.1.1,Buenos Aires,AR-B,annual,2012,gas oil combustion consumption by freight transport,4691.51844,TJ,CH4,3.9,kg/TJ,18296.921916,kg -522c1df0-cdd4-3690-a21a-9935cbd4049f,SESCO,II.1.1,Buenos Aires,AR-B,annual,2012,gas oil combustion consumption by freight transport,4691.51844,TJ,N2O,3.9,kg/TJ,18296.921916,kg -4c40d46c-0501-32ea-bfee-41546549667c,SESCO,II.1.1,Capital Federal,AR-C,annual,2012,gas oil combustion consumption by freight transport,558.1262399999999,TJ,CO2,74100.0,kg/TJ,41357154.383999996,kg -de0defbe-8af5-3329-b1c5-4130b6b043dd,SESCO,II.1.1,Capital Federal,AR-C,annual,2012,gas oil combustion consumption by freight transport,558.1262399999999,TJ,CH4,3.9,kg/TJ,2176.6923359999996,kg -de0defbe-8af5-3329-b1c5-4130b6b043dd,SESCO,II.1.1,Capital Federal,AR-C,annual,2012,gas oil combustion consumption by freight transport,558.1262399999999,TJ,N2O,3.9,kg/TJ,2176.6923359999996,kg -58327837-3ce8-3cdc-a86c-e0a007d2fac3,SESCO,II.1.1,Catamarca,AR-K,annual,2012,gas oil combustion consumption by freight transport,22.35828,TJ,CO2,74100.0,kg/TJ,1656748.548,kg -89463f64-45c2-3fe0-85d7-0be3ef01cc49,SESCO,II.1.1,Catamarca,AR-K,annual,2012,gas oil combustion consumption by freight transport,22.35828,TJ,CH4,3.9,kg/TJ,87.197292,kg -89463f64-45c2-3fe0-85d7-0be3ef01cc49,SESCO,II.1.1,Catamarca,AR-K,annual,2012,gas oil combustion consumption by freight transport,22.35828,TJ,N2O,3.9,kg/TJ,87.197292,kg -2dbad592-2e03-3fae-baeb-d1949e642f77,SESCO,II.1.1,Chaco,AR-H,annual,2012,gas oil combustion consumption by freight transport,16.94028,TJ,CO2,74100.0,kg/TJ,1255274.7480000001,kg -0698de5f-c642-3dcc-a476-40cafa9f52e1,SESCO,II.1.1,Chaco,AR-H,annual,2012,gas oil combustion consumption by freight transport,16.94028,TJ,CH4,3.9,kg/TJ,66.067092,kg -0698de5f-c642-3dcc-a476-40cafa9f52e1,SESCO,II.1.1,Chaco,AR-H,annual,2012,gas oil combustion consumption by freight transport,16.94028,TJ,N2O,3.9,kg/TJ,66.067092,kg -03a65f7c-dcbd-3456-b507-eec6d90859a9,SESCO,II.1.1,Chubut,AR-U,annual,2012,gas oil combustion consumption by freight transport,164.41824,TJ,CO2,74100.0,kg/TJ,12183391.583999999,kg -c212e4f1-302e-3528-8d26-0cb7f35f470d,SESCO,II.1.1,Chubut,AR-U,annual,2012,gas oil combustion consumption by freight transport,164.41824,TJ,CH4,3.9,kg/TJ,641.231136,kg -c212e4f1-302e-3528-8d26-0cb7f35f470d,SESCO,II.1.1,Chubut,AR-U,annual,2012,gas oil combustion consumption by freight transport,164.41824,TJ,N2O,3.9,kg/TJ,641.231136,kg -df74a3ad-7408-3c31-8cb2-56e247686c65,SESCO,II.1.1,Corrientes,AR-W,annual,2012,gas oil combustion consumption by freight transport,185.72904,TJ,CO2,74100.0,kg/TJ,13762521.864,kg -3dd25615-ec01-3d86-8c83-648ec1f67790,SESCO,II.1.1,Corrientes,AR-W,annual,2012,gas oil combustion consumption by freight transport,185.72904,TJ,CH4,3.9,kg/TJ,724.343256,kg -3dd25615-ec01-3d86-8c83-648ec1f67790,SESCO,II.1.1,Corrientes,AR-W,annual,2012,gas oil combustion consumption by freight transport,185.72904,TJ,N2O,3.9,kg/TJ,724.343256,kg -9aa754a9-481e-3039-a47d-9a56d3410e97,SESCO,II.1.1,Córdoba,AR-X,annual,2012,gas oil combustion consumption by freight transport,1015.94724,TJ,CO2,74100.0,kg/TJ,75281690.484,kg -834b3674-ca35-31cc-a780-a35b2baba311,SESCO,II.1.1,Córdoba,AR-X,annual,2012,gas oil combustion consumption by freight transport,1015.94724,TJ,CH4,3.9,kg/TJ,3962.194236,kg -834b3674-ca35-31cc-a780-a35b2baba311,SESCO,II.1.1,Córdoba,AR-X,annual,2012,gas oil combustion consumption by freight transport,1015.94724,TJ,N2O,3.9,kg/TJ,3962.194236,kg -d86ea670-89a6-30c9-8b09-f29ce9f8a542,SESCO,II.1.1,Entre Rios,AR-E,annual,2012,gas oil combustion consumption by freight transport,107.70984,TJ,CO2,74100.0,kg/TJ,7981299.144,kg -f46f494e-56c6-3ba6-a0f1-35579994ed0a,SESCO,II.1.1,Entre Rios,AR-E,annual,2012,gas oil combustion consumption by freight transport,107.70984,TJ,CH4,3.9,kg/TJ,420.068376,kg -f46f494e-56c6-3ba6-a0f1-35579994ed0a,SESCO,II.1.1,Entre Rios,AR-E,annual,2012,gas oil combustion consumption by freight transport,107.70984,TJ,N2O,3.9,kg/TJ,420.068376,kg -8467d8cd-0c1a-38bc-84a2-fae2c1e1b106,SESCO,II.1.1,Jujuy,AR-Y,annual,2012,gas oil combustion consumption by freight transport,15.31488,TJ,CO2,74100.0,kg/TJ,1134832.608,kg -1520ab6e-eb58-3954-8694-632c4e8f3dee,SESCO,II.1.1,Jujuy,AR-Y,annual,2012,gas oil combustion consumption by freight transport,15.31488,TJ,CH4,3.9,kg/TJ,59.728032,kg -1520ab6e-eb58-3954-8694-632c4e8f3dee,SESCO,II.1.1,Jujuy,AR-Y,annual,2012,gas oil combustion consumption by freight transport,15.31488,TJ,N2O,3.9,kg/TJ,59.728032,kg -1d845ebc-a228-34e7-80be-0fc508d9f13a,SESCO,II.1.1,La Pampa,AR-L,annual,2012,gas oil combustion consumption by freight transport,70.03668,TJ,CO2,74100.0,kg/TJ,5189717.988,kg -c32f5bed-c407-3a92-b9ed-2a1425365015,SESCO,II.1.1,La Pampa,AR-L,annual,2012,gas oil combustion consumption by freight transport,70.03668,TJ,CH4,3.9,kg/TJ,273.143052,kg -c32f5bed-c407-3a92-b9ed-2a1425365015,SESCO,II.1.1,La Pampa,AR-L,annual,2012,gas oil combustion consumption by freight transport,70.03668,TJ,N2O,3.9,kg/TJ,273.143052,kg -e07b9a20-8fa8-3e7c-a9d5-2e54dc7741fa,SESCO,II.1.1,La Rioja,AR-F,annual,2012,gas oil combustion consumption by freight transport,0.10836,TJ,CO2,74100.0,kg/TJ,8029.476,kg -6788104c-c872-3539-869a-ed0f648f867f,SESCO,II.1.1,La Rioja,AR-F,annual,2012,gas oil combustion consumption by freight transport,0.10836,TJ,CH4,3.9,kg/TJ,0.422604,kg -6788104c-c872-3539-869a-ed0f648f867f,SESCO,II.1.1,La Rioja,AR-F,annual,2012,gas oil combustion consumption by freight transport,0.10836,TJ,N2O,3.9,kg/TJ,0.422604,kg -5dd087c5-8a9e-3c11-ab9e-de8870fa6dc7,SESCO,II.1.1,Mendoza,AR-M,annual,2012,gas oil combustion consumption by freight transport,672.12096,TJ,CO2,74100.0,kg/TJ,49804163.136,kg -19b03564-0455-36b7-99b7-66c45ed62745,SESCO,II.1.1,Mendoza,AR-M,annual,2012,gas oil combustion consumption by freight transport,672.12096,TJ,CH4,3.9,kg/TJ,2621.2717439999997,kg -19b03564-0455-36b7-99b7-66c45ed62745,SESCO,II.1.1,Mendoza,AR-M,annual,2012,gas oil combustion consumption by freight transport,672.12096,TJ,N2O,3.9,kg/TJ,2621.2717439999997,kg -880b7c7a-98a1-3731-a954-d507886ab2c3,SESCO,II.1.1,Misiones,AR-N,annual,2012,gas oil combustion consumption by freight transport,145.81644,TJ,CO2,74100.0,kg/TJ,10804998.204,kg -2cf81ce2-1c02-3bd0-8c19-4f462d269e0e,SESCO,II.1.1,Misiones,AR-N,annual,2012,gas oil combustion consumption by freight transport,145.81644,TJ,CH4,3.9,kg/TJ,568.684116,kg -2cf81ce2-1c02-3bd0-8c19-4f462d269e0e,SESCO,II.1.1,Misiones,AR-N,annual,2012,gas oil combustion consumption by freight transport,145.81644,TJ,N2O,3.9,kg/TJ,568.684116,kg -62aa44bb-ede1-32db-bf85-32d8ffa96890,SESCO,II.1.1,Neuquén,AR-Q,annual,2012,gas oil combustion consumption by freight transport,336.60228,TJ,CO2,74100.0,kg/TJ,24942228.948,kg -0c51c0c1-92f0-3aaa-9194-b52da6252af3,SESCO,II.1.1,Neuquén,AR-Q,annual,2012,gas oil combustion consumption by freight transport,336.60228,TJ,CH4,3.9,kg/TJ,1312.748892,kg -0c51c0c1-92f0-3aaa-9194-b52da6252af3,SESCO,II.1.1,Neuquén,AR-Q,annual,2012,gas oil combustion consumption by freight transport,336.60228,TJ,N2O,3.9,kg/TJ,1312.748892,kg -3b1022c3-ea8d-32a3-a856-4395b6a75dba,SESCO,II.1.1,Rio Negro,AR-R,annual,2012,gas oil combustion consumption by freight transport,4.8400799999999995,TJ,CO2,74100.0,kg/TJ,358649.92799999996,kg -79fdd900-ca2e-31f2-8582-84e0396be498,SESCO,II.1.1,Rio Negro,AR-R,annual,2012,gas oil combustion consumption by freight transport,4.8400799999999995,TJ,CH4,3.9,kg/TJ,18.876312,kg -79fdd900-ca2e-31f2-8582-84e0396be498,SESCO,II.1.1,Rio Negro,AR-R,annual,2012,gas oil combustion consumption by freight transport,4.8400799999999995,TJ,N2O,3.9,kg/TJ,18.876312,kg -0412c1b7-104d-308c-9ba6-d307001028df,SESCO,II.1.1,Salta,AR-A,annual,2012,gas oil combustion consumption by freight transport,62.41536,TJ,CO2,74100.0,kg/TJ,4624978.176,kg -966cc9ac-5b45-3c1d-a0a1-800d95e633c6,SESCO,II.1.1,Salta,AR-A,annual,2012,gas oil combustion consumption by freight transport,62.41536,TJ,CH4,3.9,kg/TJ,243.419904,kg -966cc9ac-5b45-3c1d-a0a1-800d95e633c6,SESCO,II.1.1,Salta,AR-A,annual,2012,gas oil combustion consumption by freight transport,62.41536,TJ,N2O,3.9,kg/TJ,243.419904,kg -664e36f4-92a9-386a-9da3-2789a1e77fb4,SESCO,II.1.1,San Juan,AR-J,annual,2012,gas oil combustion consumption by freight transport,81.19776,TJ,CO2,74100.0,kg/TJ,6016754.016,kg -0b2c6fe8-469b-37a8-97cb-9bd23857a5c7,SESCO,II.1.1,San Juan,AR-J,annual,2012,gas oil combustion consumption by freight transport,81.19776,TJ,CH4,3.9,kg/TJ,316.671264,kg -0b2c6fe8-469b-37a8-97cb-9bd23857a5c7,SESCO,II.1.1,San Juan,AR-J,annual,2012,gas oil combustion consumption by freight transport,81.19776,TJ,N2O,3.9,kg/TJ,316.671264,kg -8880cc16-1e4c-349c-bf08-dd9b36acb5aa,SESCO,II.1.1,San Luis,AR-D,annual,2012,gas oil combustion consumption by freight transport,81.95627999999999,TJ,CO2,74100.0,kg/TJ,6072960.347999999,kg -33b60c68-bc0c-3cff-ada3-e29c64a96305,SESCO,II.1.1,San Luis,AR-D,annual,2012,gas oil combustion consumption by freight transport,81.95627999999999,TJ,CH4,3.9,kg/TJ,319.62949199999997,kg -33b60c68-bc0c-3cff-ada3-e29c64a96305,SESCO,II.1.1,San Luis,AR-D,annual,2012,gas oil combustion consumption by freight transport,81.95627999999999,TJ,N2O,3.9,kg/TJ,319.62949199999997,kg -c1d44d07-2c20-3409-98eb-c95f08df59cb,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2012,gas oil combustion consumption by freight transport,81.59508,TJ,CO2,74100.0,kg/TJ,6046195.427999999,kg -1469295d-9b35-3c61-94d9-1fe4837b7bcf,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2012,gas oil combustion consumption by freight transport,81.59508,TJ,CH4,3.9,kg/TJ,318.22081199999997,kg -1469295d-9b35-3c61-94d9-1fe4837b7bcf,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2012,gas oil combustion consumption by freight transport,81.59508,TJ,N2O,3.9,kg/TJ,318.22081199999997,kg -03aac554-ea7c-35e5-8eeb-ddfe8e07204f,SESCO,II.1.1,Santa Fe,AR-S,annual,2012,gas oil combustion consumption by freight transport,555.8868,TJ,CO2,74100.0,kg/TJ,41191211.88,kg -427fc5e7-7e6c-35d8-b178-edc112eb2d18,SESCO,II.1.1,Santa Fe,AR-S,annual,2012,gas oil combustion consumption by freight transport,555.8868,TJ,CH4,3.9,kg/TJ,2167.95852,kg -427fc5e7-7e6c-35d8-b178-edc112eb2d18,SESCO,II.1.1,Santa Fe,AR-S,annual,2012,gas oil combustion consumption by freight transport,555.8868,TJ,N2O,3.9,kg/TJ,2167.95852,kg -a15511ef-6877-3220-a680-b801df080d43,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2012,gas oil combustion consumption by freight transport,42.6216,TJ,CO2,74100.0,kg/TJ,3158260.56,kg -12777238-3044-381e-9cdb-7a8d5ccc8417,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2012,gas oil combustion consumption by freight transport,42.6216,TJ,CH4,3.9,kg/TJ,166.22424,kg -12777238-3044-381e-9cdb-7a8d5ccc8417,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2012,gas oil combustion consumption by freight transport,42.6216,TJ,N2O,3.9,kg/TJ,166.22424,kg -59a79577-2eff-3cdf-82bd-57955338ae90,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2012,gas oil combustion consumption by freight transport,0.36119999999999997,TJ,CO2,74100.0,kg/TJ,26764.92,kg -39723431-6851-3518-9b28-3af5203aba97,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2012,gas oil combustion consumption by freight transport,0.36119999999999997,TJ,CH4,3.9,kg/TJ,1.40868,kg -39723431-6851-3518-9b28-3af5203aba97,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2012,gas oil combustion consumption by freight transport,0.36119999999999997,TJ,N2O,3.9,kg/TJ,1.40868,kg -75fb2883-a7f3-3999-b61d-9c82beecd147,SESCO,II.1.1,Tucuman,AR-T,annual,2012,gas oil combustion consumption by freight transport,98.0658,TJ,CO2,74100.0,kg/TJ,7266675.779999999,kg -4ae8189c-04cf-3ba7-ae2d-afe5317b2d30,SESCO,II.1.1,Tucuman,AR-T,annual,2012,gas oil combustion consumption by freight transport,98.0658,TJ,CH4,3.9,kg/TJ,382.45662,kg -4ae8189c-04cf-3ba7-ae2d-afe5317b2d30,SESCO,II.1.1,Tucuman,AR-T,annual,2012,gas oil combustion consumption by freight transport,98.0658,TJ,N2O,3.9,kg/TJ,382.45662,kg -a342ac72-511a-38b6-a677-3461f1ea64c3,SESCO,II.1.1,Buenos Aires,AR-B,annual,2012,gas oil combustion consumption by public passenger transport,10829.96796,TJ,CO2,74100.0,kg/TJ,802500625.836,kg -bfe337c4-45a2-364c-8747-86b5ce257ddb,SESCO,II.1.1,Buenos Aires,AR-B,annual,2012,gas oil combustion consumption by public passenger transport,10829.96796,TJ,CH4,3.9,kg/TJ,42236.875044,kg -bfe337c4-45a2-364c-8747-86b5ce257ddb,SESCO,II.1.1,Buenos Aires,AR-B,annual,2012,gas oil combustion consumption by public passenger transport,10829.96796,TJ,N2O,3.9,kg/TJ,42236.875044,kg -6ca058da-443e-3713-9f6b-c1997faddabf,SESCO,II.1.1,Capital Federal,AR-C,annual,2012,gas oil combustion consumption by public passenger transport,3347.6016,TJ,CO2,74100.0,kg/TJ,248057278.56,kg -29c98ba9-a983-3073-9014-45fb1241930a,SESCO,II.1.1,Capital Federal,AR-C,annual,2012,gas oil combustion consumption by public passenger transport,3347.6016,TJ,CH4,3.9,kg/TJ,13055.64624,kg -29c98ba9-a983-3073-9014-45fb1241930a,SESCO,II.1.1,Capital Federal,AR-C,annual,2012,gas oil combustion consumption by public passenger transport,3347.6016,TJ,N2O,3.9,kg/TJ,13055.64624,kg -36f4f650-37f8-332b-90b2-42fe5982ebdd,SESCO,II.1.1,Catamarca,AR-K,annual,2012,gas oil combustion consumption by public passenger transport,130.97111999999998,TJ,CO2,74100.0,kg/TJ,9704959.991999999,kg -16ecc409-c6b0-3285-b3f1-bc762e9a4758,SESCO,II.1.1,Catamarca,AR-K,annual,2012,gas oil combustion consumption by public passenger transport,130.97111999999998,TJ,CH4,3.9,kg/TJ,510.7873679999999,kg -16ecc409-c6b0-3285-b3f1-bc762e9a4758,SESCO,II.1.1,Catamarca,AR-K,annual,2012,gas oil combustion consumption by public passenger transport,130.97111999999998,TJ,N2O,3.9,kg/TJ,510.7873679999999,kg -16b41e5b-f658-316e-b0cd-5e3cf7b89b64,SESCO,II.1.1,Chaco,AR-H,annual,2012,gas oil combustion consumption by public passenger transport,481.15452,TJ,CO2,74100.0,kg/TJ,35653549.932,kg -30a1d792-0ef8-3247-9f79-09bc46b8f9fc,SESCO,II.1.1,Chaco,AR-H,annual,2012,gas oil combustion consumption by public passenger transport,481.15452,TJ,CH4,3.9,kg/TJ,1876.502628,kg -30a1d792-0ef8-3247-9f79-09bc46b8f9fc,SESCO,II.1.1,Chaco,AR-H,annual,2012,gas oil combustion consumption by public passenger transport,481.15452,TJ,N2O,3.9,kg/TJ,1876.502628,kg -0e32ae73-7bc4-3461-91fd-d5147f987940,SESCO,II.1.1,Chubut,AR-U,annual,2012,gas oil combustion consumption by public passenger transport,145.67195999999998,TJ,CO2,74100.0,kg/TJ,10794292.236,kg -e42ba659-eb2b-3eb7-80d1-6247e5c28d3b,SESCO,II.1.1,Chubut,AR-U,annual,2012,gas oil combustion consumption by public passenger transport,145.67195999999998,TJ,CH4,3.9,kg/TJ,568.120644,kg -e42ba659-eb2b-3eb7-80d1-6247e5c28d3b,SESCO,II.1.1,Chubut,AR-U,annual,2012,gas oil combustion consumption by public passenger transport,145.67195999999998,TJ,N2O,3.9,kg/TJ,568.120644,kg -56f530e0-85c5-3d9c-84f8-c8183e5d620d,SESCO,II.1.1,Corrientes,AR-W,annual,2012,gas oil combustion consumption by public passenger transport,420.798,TJ,CO2,74100.0,kg/TJ,31181131.8,kg -cc7cd5aa-e7d2-30ef-a38e-761628580047,SESCO,II.1.1,Corrientes,AR-W,annual,2012,gas oil combustion consumption by public passenger transport,420.798,TJ,CH4,3.9,kg/TJ,1641.1122,kg -cc7cd5aa-e7d2-30ef-a38e-761628580047,SESCO,II.1.1,Corrientes,AR-W,annual,2012,gas oil combustion consumption by public passenger transport,420.798,TJ,N2O,3.9,kg/TJ,1641.1122,kg -7a3b169b-4426-3949-874a-1dc85e702dbf,SESCO,II.1.1,Córdoba,AR-X,annual,2012,gas oil combustion consumption by public passenger transport,2047.53444,TJ,CO2,74100.0,kg/TJ,151722302.00399998,kg -a3252b4e-3bdc-3740-8956-bb948f1e343a,SESCO,II.1.1,Córdoba,AR-X,annual,2012,gas oil combustion consumption by public passenger transport,2047.53444,TJ,CH4,3.9,kg/TJ,7985.384316,kg -a3252b4e-3bdc-3740-8956-bb948f1e343a,SESCO,II.1.1,Córdoba,AR-X,annual,2012,gas oil combustion consumption by public passenger transport,2047.53444,TJ,N2O,3.9,kg/TJ,7985.384316,kg -53679511-9894-3f11-aa66-7313df70a562,SESCO,II.1.1,Entre Rios,AR-E,annual,2012,gas oil combustion consumption by public passenger transport,438.42456,TJ,CO2,74100.0,kg/TJ,32487259.895999998,kg -bf6a8012-0143-3291-a063-58f2c0555a43,SESCO,II.1.1,Entre Rios,AR-E,annual,2012,gas oil combustion consumption by public passenger transport,438.42456,TJ,CH4,3.9,kg/TJ,1709.8557839999999,kg -bf6a8012-0143-3291-a063-58f2c0555a43,SESCO,II.1.1,Entre Rios,AR-E,annual,2012,gas oil combustion consumption by public passenger transport,438.42456,TJ,N2O,3.9,kg/TJ,1709.8557839999999,kg -8cfe4aa5-b884-3ccc-a586-6c74d56154cd,SESCO,II.1.1,Formosa,AR-P,annual,2012,gas oil combustion consumption by public passenger transport,115.80072,TJ,CO2,74100.0,kg/TJ,8580833.352,kg -fe0b9123-d84c-30a6-b1c3-851a976c797b,SESCO,II.1.1,Formosa,AR-P,annual,2012,gas oil combustion consumption by public passenger transport,115.80072,TJ,CH4,3.9,kg/TJ,451.62280799999996,kg -fe0b9123-d84c-30a6-b1c3-851a976c797b,SESCO,II.1.1,Formosa,AR-P,annual,2012,gas oil combustion consumption by public passenger transport,115.80072,TJ,N2O,3.9,kg/TJ,451.62280799999996,kg -fb7bc855-5323-3c06-8ee8-5ca326341637,SESCO,II.1.1,Jujuy,AR-Y,annual,2012,gas oil combustion consumption by public passenger transport,418.8114,TJ,CO2,74100.0,kg/TJ,31033924.74,kg -b2135812-cd09-3c80-bd76-8a7c698032a6,SESCO,II.1.1,Jujuy,AR-Y,annual,2012,gas oil combustion consumption by public passenger transport,418.8114,TJ,CH4,3.9,kg/TJ,1633.36446,kg -b2135812-cd09-3c80-bd76-8a7c698032a6,SESCO,II.1.1,Jujuy,AR-Y,annual,2012,gas oil combustion consumption by public passenger transport,418.8114,TJ,N2O,3.9,kg/TJ,1633.36446,kg -f2d14cde-73fa-37cb-9783-c59e5d904a18,SESCO,II.1.1,La Pampa,AR-L,annual,2012,gas oil combustion consumption by public passenger transport,10.18584,TJ,CO2,74100.0,kg/TJ,754770.7440000001,kg -b66f5906-bc7d-3004-9e5e-e4b8f9b3776b,SESCO,II.1.1,La Pampa,AR-L,annual,2012,gas oil combustion consumption by public passenger transport,10.18584,TJ,CH4,3.9,kg/TJ,39.724776,kg -b66f5906-bc7d-3004-9e5e-e4b8f9b3776b,SESCO,II.1.1,La Pampa,AR-L,annual,2012,gas oil combustion consumption by public passenger transport,10.18584,TJ,N2O,3.9,kg/TJ,39.724776,kg -7cb6b36b-1c2a-339b-9373-00cf222d9105,SESCO,II.1.1,La Rioja,AR-F,annual,2012,gas oil combustion consumption by public passenger transport,77.80248,TJ,CO2,74100.0,kg/TJ,5765163.768,kg -7f82fb34-6964-36ee-84c2-a02b6acd81b9,SESCO,II.1.1,La Rioja,AR-F,annual,2012,gas oil combustion consumption by public passenger transport,77.80248,TJ,CH4,3.9,kg/TJ,303.429672,kg -7f82fb34-6964-36ee-84c2-a02b6acd81b9,SESCO,II.1.1,La Rioja,AR-F,annual,2012,gas oil combustion consumption by public passenger transport,77.80248,TJ,N2O,3.9,kg/TJ,303.429672,kg -cc3c07b6-3911-3fba-9baa-93ce4e313462,SESCO,II.1.1,Mendoza,AR-M,annual,2012,gas oil combustion consumption by public passenger transport,1664.7708,TJ,CO2,74100.0,kg/TJ,123359516.28,kg -60b2d07f-6a9d-3522-9757-f801049ee3d7,SESCO,II.1.1,Mendoza,AR-M,annual,2012,gas oil combustion consumption by public passenger transport,1664.7708,TJ,CH4,3.9,kg/TJ,6492.6061199999995,kg -60b2d07f-6a9d-3522-9757-f801049ee3d7,SESCO,II.1.1,Mendoza,AR-M,annual,2012,gas oil combustion consumption by public passenger transport,1664.7708,TJ,N2O,3.9,kg/TJ,6492.6061199999995,kg -b64d75d8-fad5-3c36-bde8-9116a497fc77,SESCO,II.1.1,Misiones,AR-N,annual,2012,gas oil combustion consumption by public passenger transport,739.44864,TJ,CO2,74100.0,kg/TJ,54793144.224,kg -cf42b492-15bf-3c23-a1ec-d95d26bff3f9,SESCO,II.1.1,Misiones,AR-N,annual,2012,gas oil combustion consumption by public passenger transport,739.44864,TJ,CH4,3.9,kg/TJ,2883.8496959999998,kg -cf42b492-15bf-3c23-a1ec-d95d26bff3f9,SESCO,II.1.1,Misiones,AR-N,annual,2012,gas oil combustion consumption by public passenger transport,739.44864,TJ,N2O,3.9,kg/TJ,2883.8496959999998,kg -af90b41d-5122-3317-8d00-8c7a788137ce,SESCO,II.1.1,Neuquén,AR-Q,annual,2012,gas oil combustion consumption by public passenger transport,240.45084,TJ,CO2,74100.0,kg/TJ,17817407.244,kg -0b2f840f-76e3-3e59-898d-fdedbc84ef67,SESCO,II.1.1,Neuquén,AR-Q,annual,2012,gas oil combustion consumption by public passenger transport,240.45084,TJ,CH4,3.9,kg/TJ,937.758276,kg -0b2f840f-76e3-3e59-898d-fdedbc84ef67,SESCO,II.1.1,Neuquén,AR-Q,annual,2012,gas oil combustion consumption by public passenger transport,240.45084,TJ,N2O,3.9,kg/TJ,937.758276,kg -7e79036b-c539-3682-a2bb-cd580ea560ad,SESCO,II.1.1,Rio Negro,AR-R,annual,2012,gas oil combustion consumption by public passenger transport,305.90028,TJ,CO2,74100.0,kg/TJ,22667210.748,kg -c91b9dca-e623-3ca6-ace2-8e66e1cffad1,SESCO,II.1.1,Rio Negro,AR-R,annual,2012,gas oil combustion consumption by public passenger transport,305.90028,TJ,CH4,3.9,kg/TJ,1193.011092,kg -c91b9dca-e623-3ca6-ace2-8e66e1cffad1,SESCO,II.1.1,Rio Negro,AR-R,annual,2012,gas oil combustion consumption by public passenger transport,305.90028,TJ,N2O,3.9,kg/TJ,1193.011092,kg -90f375f2-675c-3eb5-8911-b94d2e436e28,SESCO,II.1.1,Salta,AR-A,annual,2012,gas oil combustion consumption by public passenger transport,918.0259199999999,TJ,CO2,74100.0,kg/TJ,68025720.67199999,kg -4ab30d5a-aa21-3aaf-8514-e9a03cb942c7,SESCO,II.1.1,Salta,AR-A,annual,2012,gas oil combustion consumption by public passenger transport,918.0259199999999,TJ,CH4,3.9,kg/TJ,3580.3010879999997,kg -4ab30d5a-aa21-3aaf-8514-e9a03cb942c7,SESCO,II.1.1,Salta,AR-A,annual,2012,gas oil combustion consumption by public passenger transport,918.0259199999999,TJ,N2O,3.9,kg/TJ,3580.3010879999997,kg -d08c990d-2133-3653-88a1-dfc773d492cd,SESCO,II.1.1,San Juan,AR-J,annual,2012,gas oil combustion consumption by public passenger transport,492.3156,TJ,CO2,74100.0,kg/TJ,36480585.96,kg -9f566599-d95f-3ae1-a25d-3c6629323605,SESCO,II.1.1,San Juan,AR-J,annual,2012,gas oil combustion consumption by public passenger transport,492.3156,TJ,CH4,3.9,kg/TJ,1920.0308400000001,kg -9f566599-d95f-3ae1-a25d-3c6629323605,SESCO,II.1.1,San Juan,AR-J,annual,2012,gas oil combustion consumption by public passenger transport,492.3156,TJ,N2O,3.9,kg/TJ,1920.0308400000001,kg -f843bb91-150c-3858-8561-7a66e41e19b3,SESCO,II.1.1,San Luis,AR-D,annual,2012,gas oil combustion consumption by public passenger transport,68.05008,TJ,CO2,74100.0,kg/TJ,5042510.927999999,kg -92cc1646-be9b-33cb-9fab-f260ac8d3c06,SESCO,II.1.1,San Luis,AR-D,annual,2012,gas oil combustion consumption by public passenger transport,68.05008,TJ,CH4,3.9,kg/TJ,265.395312,kg -92cc1646-be9b-33cb-9fab-f260ac8d3c06,SESCO,II.1.1,San Luis,AR-D,annual,2012,gas oil combustion consumption by public passenger transport,68.05008,TJ,N2O,3.9,kg/TJ,265.395312,kg -dd67629c-03e1-3d4d-bc40-6f65493d117c,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2012,gas oil combustion consumption by public passenger transport,45.22224,TJ,CO2,74100.0,kg/TJ,3350967.984,kg -4a3578be-cade-3574-ae22-4f0eb55f595a,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2012,gas oil combustion consumption by public passenger transport,45.22224,TJ,CH4,3.9,kg/TJ,176.366736,kg -4a3578be-cade-3574-ae22-4f0eb55f595a,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2012,gas oil combustion consumption by public passenger transport,45.22224,TJ,N2O,3.9,kg/TJ,176.366736,kg -3bfff277-ff68-3134-9c0d-c61070c052a6,SESCO,II.1.1,Santa Fe,AR-S,annual,2012,gas oil combustion consumption by public passenger transport,1295.51604,TJ,CO2,74100.0,kg/TJ,95997738.564,kg -10a8475f-3e76-3137-ae33-b2c3528b25f4,SESCO,II.1.1,Santa Fe,AR-S,annual,2012,gas oil combustion consumption by public passenger transport,1295.51604,TJ,CH4,3.9,kg/TJ,5052.512556,kg -10a8475f-3e76-3137-ae33-b2c3528b25f4,SESCO,II.1.1,Santa Fe,AR-S,annual,2012,gas oil combustion consumption by public passenger transport,1295.51604,TJ,N2O,3.9,kg/TJ,5052.512556,kg -a5ac3881-d231-3323-bff8-0825b00ec1a0,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2012,gas oil combustion consumption by public passenger transport,302.1438,TJ,CO2,74100.0,kg/TJ,22388855.58,kg -0d1d79ae-78c6-3612-b588-93cc6d6a6336,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2012,gas oil combustion consumption by public passenger transport,302.1438,TJ,CH4,3.9,kg/TJ,1178.3608199999999,kg -0d1d79ae-78c6-3612-b588-93cc6d6a6336,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2012,gas oil combustion consumption by public passenger transport,302.1438,TJ,N2O,3.9,kg/TJ,1178.3608199999999,kg -4bd578b8-627e-36c1-9400-b72d6cd6266a,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2012,gas oil combustion consumption by public passenger transport,10.61928,TJ,CO2,74100.0,kg/TJ,786888.648,kg -03f4dd79-3983-32cd-8743-d1398d465e50,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2012,gas oil combustion consumption by public passenger transport,10.61928,TJ,CH4,3.9,kg/TJ,41.415192,kg -03f4dd79-3983-32cd-8743-d1398d465e50,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2012,gas oil combustion consumption by public passenger transport,10.61928,TJ,N2O,3.9,kg/TJ,41.415192,kg -adbb2021-563a-363e-aa7e-e1127fbe303f,SESCO,II.1.1,Tucuman,AR-T,annual,2012,gas oil combustion consumption by public passenger transport,1101.1543199999999,TJ,CO2,74100.0,kg/TJ,81595535.11199999,kg -a3427255-5adc-3b6c-bd3c-bf2500963949,SESCO,II.1.1,Tucuman,AR-T,annual,2012,gas oil combustion consumption by public passenger transport,1101.1543199999999,TJ,CH4,3.9,kg/TJ,4294.501847999999,kg -a3427255-5adc-3b6c-bd3c-bf2500963949,SESCO,II.1.1,Tucuman,AR-T,annual,2012,gas oil combustion consumption by public passenger transport,1101.1543199999999,TJ,N2O,3.9,kg/TJ,4294.501847999999,kg -4f2500df-f4ab-3807-8e30-6c94b92b344a,SESCO,II.1.1,Capital Federal,AR-C,annual,2013,gas oil combustion consumption by to the public,54.68568,TJ,CO2,74100.0,kg/TJ,4052208.888,kg -e0969d53-be64-3b69-903f-d172d054f170,SESCO,II.1.1,Capital Federal,AR-C,annual,2013,gas oil combustion consumption by to the public,54.68568,TJ,CH4,3.9,kg/TJ,213.274152,kg -e0969d53-be64-3b69-903f-d172d054f170,SESCO,II.1.1,Capital Federal,AR-C,annual,2013,gas oil combustion consumption by to the public,54.68568,TJ,N2O,3.9,kg/TJ,213.274152,kg -1baaa5bd-5a64-36c8-884f-b90d58ee9470,SESCO,II.5.1,Buenos Aires,AR-B,annual,2013,gas oil combustion consumption by agriculture machines,212.6503596,TJ,CO2,74100.0,kg/TJ,15757391.64636,kg -3b9caeaf-94e1-39bb-b079-de3f1ac06575,SESCO,II.5.1,Buenos Aires,AR-B,annual,2013,gas oil combustion consumption by agriculture machines,212.6503596,TJ,CH4,3.9,kg/TJ,829.33640244,kg -3b9caeaf-94e1-39bb-b079-de3f1ac06575,SESCO,II.5.1,Buenos Aires,AR-B,annual,2013,gas oil combustion consumption by agriculture machines,212.6503596,TJ,N2O,3.9,kg/TJ,829.33640244,kg -b6ac0a7b-eb2b-37dc-9b91-9ace9e42dcc9,SESCO,II.5.1,Chaco,AR-H,annual,2013,gas oil combustion consumption by agriculture machines,15.350999999999999,TJ,CO2,74100.0,kg/TJ,1137509.0999999999,kg -e970af7c-66f2-385f-9ea0-e9dc22dac0cb,SESCO,II.5.1,Chaco,AR-H,annual,2013,gas oil combustion consumption by agriculture machines,15.350999999999999,TJ,CH4,3.9,kg/TJ,59.8689,kg -e970af7c-66f2-385f-9ea0-e9dc22dac0cb,SESCO,II.5.1,Chaco,AR-H,annual,2013,gas oil combustion consumption by agriculture machines,15.350999999999999,TJ,N2O,3.9,kg/TJ,59.8689,kg -89dbb157-65d4-377a-8a09-79b243e8f926,SESCO,II.5.1,Córdoba,AR-X,annual,2013,gas oil combustion consumption by agriculture machines,28.997135999999998,TJ,CO2,74100.0,kg/TJ,2148687.7775999997,kg -4b446a58-fba1-3fdb-9044-10f11f9d902a,SESCO,II.5.1,Córdoba,AR-X,annual,2013,gas oil combustion consumption by agriculture machines,28.997135999999998,TJ,CH4,3.9,kg/TJ,113.08883039999999,kg -4b446a58-fba1-3fdb-9044-10f11f9d902a,SESCO,II.5.1,Córdoba,AR-X,annual,2013,gas oil combustion consumption by agriculture machines,28.997135999999998,TJ,N2O,3.9,kg/TJ,113.08883039999999,kg -8200891e-5a69-346b-abb1-ffb3e85ae504,SESCO,II.5.1,La Pampa,AR-L,annual,2013,gas oil combustion consumption by agriculture machines,5.02068,TJ,CO2,74100.0,kg/TJ,372032.388,kg -8924b912-60e1-3ea8-b190-4d4586f81a6d,SESCO,II.5.1,La Pampa,AR-L,annual,2013,gas oil combustion consumption by agriculture machines,5.02068,TJ,CH4,3.9,kg/TJ,19.580651999999997,kg -8924b912-60e1-3ea8-b190-4d4586f81a6d,SESCO,II.5.1,La Pampa,AR-L,annual,2013,gas oil combustion consumption by agriculture machines,5.02068,TJ,N2O,3.9,kg/TJ,19.580651999999997,kg -249e3848-c14b-3369-85f7-a97a0f0f601f,SESCO,II.5.1,Santa Fe,AR-S,annual,2013,gas oil combustion consumption by agriculture machines,369.1706004,TJ,CO2,74100.0,kg/TJ,27355541.48964,kg -677dc339-3048-3733-8b22-5074227adb80,SESCO,II.5.1,Santa Fe,AR-S,annual,2013,gas oil combustion consumption by agriculture machines,369.1706004,TJ,CH4,3.9,kg/TJ,1439.76534156,kg -677dc339-3048-3733-8b22-5074227adb80,SESCO,II.5.1,Santa Fe,AR-S,annual,2013,gas oil combustion consumption by agriculture machines,369.1706004,TJ,N2O,3.9,kg/TJ,1439.76534156,kg -bc051f33-29bc-39f6-beba-1934f6f3dd1b,SESCO,II.5.1,Buenos Aires,AR-B,annual,2013,gas oil combustion consumption by agriculture machines,0.5771976,TJ,CO2,74100.0,kg/TJ,42770.34216,kg -402a14f6-97c9-3e85-95fe-50a0046c4c0e,SESCO,II.5.1,Buenos Aires,AR-B,annual,2013,gas oil combustion consumption by agriculture machines,0.5771976,TJ,CH4,3.9,kg/TJ,2.25107064,kg -402a14f6-97c9-3e85-95fe-50a0046c4c0e,SESCO,II.5.1,Buenos Aires,AR-B,annual,2013,gas oil combustion consumption by agriculture machines,0.5771976,TJ,N2O,3.9,kg/TJ,2.25107064,kg -ec64d929-a1d5-36ca-9f09-ca5d8468fef2,SESCO,II.5.1,Santa Fe,AR-S,annual,2013,gas oil combustion consumption by agriculture machines,6.7725,TJ,CO2,74100.0,kg/TJ,501842.25,kg -273108b4-6030-3e58-a930-d6ad53f3f93e,SESCO,II.5.1,Santa Fe,AR-S,annual,2013,gas oil combustion consumption by agriculture machines,6.7725,TJ,CH4,3.9,kg/TJ,26.41275,kg -273108b4-6030-3e58-a930-d6ad53f3f93e,SESCO,II.5.1,Santa Fe,AR-S,annual,2013,gas oil combustion consumption by agriculture machines,6.7725,TJ,N2O,3.9,kg/TJ,26.41275,kg -2307f20e-bd7c-31c5-a6a4-98fd1a51b2e2,SESCO,II.1.1,Buenos Aires,AR-B,annual,2013,gas oil combustion consumption by to the public,11126.033063796,TJ,CO2,74100.0,kg/TJ,824439050.0272835,kg -45a2365b-eee2-3acf-b344-aab5768b7e62,SESCO,II.1.1,Buenos Aires,AR-B,annual,2013,gas oil combustion consumption by to the public,11126.033063796,TJ,CH4,3.9,kg/TJ,43391.5289488044,kg -45a2365b-eee2-3acf-b344-aab5768b7e62,SESCO,II.1.1,Buenos Aires,AR-B,annual,2013,gas oil combustion consumption by to the public,11126.033063796,TJ,N2O,3.9,kg/TJ,43391.5289488044,kg -efca1fba-e4ba-34be-99d1-bbe478ebdb39,SESCO,II.1.1,Capital Federal,AR-C,annual,2013,gas oil combustion consumption by to the public,1525.0157908439999,TJ,CO2,74100.0,kg/TJ,113003670.10154039,kg -34015ee7-8ab8-372f-bd28-eddf16997bd7,SESCO,II.1.1,Capital Federal,AR-C,annual,2013,gas oil combustion consumption by to the public,1525.0157908439999,TJ,CH4,3.9,kg/TJ,5947.5615842915995,kg -34015ee7-8ab8-372f-bd28-eddf16997bd7,SESCO,II.1.1,Capital Federal,AR-C,annual,2013,gas oil combustion consumption by to the public,1525.0157908439999,TJ,N2O,3.9,kg/TJ,5947.5615842915995,kg -762f8f04-178b-35aa-96ec-e65b3952f649,SESCO,II.1.1,Catamarca,AR-K,annual,2013,gas oil combustion consumption by to the public,473.89898362799994,TJ,CO2,74100.0,kg/TJ,35115914.6868348,kg -472115ed-12bb-3a8f-a458-e8dd4b7f0f0d,SESCO,II.1.1,Catamarca,AR-K,annual,2013,gas oil combustion consumption by to the public,473.89898362799994,TJ,CH4,3.9,kg/TJ,1848.2060361491997,kg -472115ed-12bb-3a8f-a458-e8dd4b7f0f0d,SESCO,II.1.1,Catamarca,AR-K,annual,2013,gas oil combustion consumption by to the public,473.89898362799994,TJ,N2O,3.9,kg/TJ,1848.2060361491997,kg -79a0fe27-c5d3-32bc-9c93-512a48dbd89f,SESCO,II.1.1,Chaco,AR-H,annual,2013,gas oil combustion consumption by to the public,447.498611952,TJ,CO2,74100.0,kg/TJ,33159647.145643197,kg -64465bb9-381c-3b50-bff0-c3e0a6693b2b,SESCO,II.1.1,Chaco,AR-H,annual,2013,gas oil combustion consumption by to the public,447.498611952,TJ,CH4,3.9,kg/TJ,1745.2445866127998,kg -64465bb9-381c-3b50-bff0-c3e0a6693b2b,SESCO,II.1.1,Chaco,AR-H,annual,2013,gas oil combustion consumption by to the public,447.498611952,TJ,N2O,3.9,kg/TJ,1745.2445866127998,kg -ad526280-ecda-35a1-9443-4899af3c9803,SESCO,II.1.1,Chubut,AR-U,annual,2013,gas oil combustion consumption by to the public,419.23021501200003,TJ,CO2,74100.0,kg/TJ,31064958.932389203,kg -8fe02899-b2db-33ca-b496-d0ead5ee5646,SESCO,II.1.1,Chubut,AR-U,annual,2013,gas oil combustion consumption by to the public,419.23021501200003,TJ,CH4,3.9,kg/TJ,1634.9978385468,kg -8fe02899-b2db-33ca-b496-d0ead5ee5646,SESCO,II.1.1,Chubut,AR-U,annual,2013,gas oil combustion consumption by to the public,419.23021501200003,TJ,N2O,3.9,kg/TJ,1634.9978385468,kg -0a904731-04ad-3e53-bc35-d61f5e369455,SESCO,II.1.1,Corrientes,AR-W,annual,2013,gas oil combustion consumption by to the public,355.92257181599996,TJ,CO2,74100.0,kg/TJ,26373862.5715656,kg -59c8e9f1-3485-3d32-a652-1a6918690aaa,SESCO,II.1.1,Corrientes,AR-W,annual,2013,gas oil combustion consumption by to the public,355.92257181599996,TJ,CH4,3.9,kg/TJ,1388.0980300823999,kg -59c8e9f1-3485-3d32-a652-1a6918690aaa,SESCO,II.1.1,Corrientes,AR-W,annual,2013,gas oil combustion consumption by to the public,355.92257181599996,TJ,N2O,3.9,kg/TJ,1388.0980300823999,kg -6d5d937c-1aa2-37cc-9aec-142cb6b7a3f9,SESCO,II.1.1,Córdoba,AR-X,annual,2013,gas oil combustion consumption by to the public,5676.980338596,TJ,CO2,74100.0,kg/TJ,420664243.0899636,kg -987f7248-37f0-3776-9aad-4448326374d2,SESCO,II.1.1,Córdoba,AR-X,annual,2013,gas oil combustion consumption by to the public,5676.980338596,TJ,CH4,3.9,kg/TJ,22140.2233205244,kg -987f7248-37f0-3776-9aad-4448326374d2,SESCO,II.1.1,Córdoba,AR-X,annual,2013,gas oil combustion consumption by to the public,5676.980338596,TJ,N2O,3.9,kg/TJ,22140.2233205244,kg -eec5c690-355a-31a4-8b49-0ff895e96835,SESCO,II.1.1,Entre Rios,AR-E,annual,2013,gas oil combustion consumption by to the public,1524.481865004,TJ,CO2,74100.0,kg/TJ,112964106.19679639,kg -a32aafce-7d40-3591-96b9-7442ac615178,SESCO,II.1.1,Entre Rios,AR-E,annual,2013,gas oil combustion consumption by to the public,1524.481865004,TJ,CH4,3.9,kg/TJ,5945.4792735156,kg -a32aafce-7d40-3591-96b9-7442ac615178,SESCO,II.1.1,Entre Rios,AR-E,annual,2013,gas oil combustion consumption by to the public,1524.481865004,TJ,N2O,3.9,kg/TJ,5945.4792735156,kg -2336f226-60cf-3073-90a2-57c11b8960a0,SESCO,II.1.1,Formosa,AR-P,annual,2013,gas oil combustion consumption by to the public,410.920556172,TJ,CO2,74100.0,kg/TJ,30449213.212345198,kg -8279bfb7-c15c-3262-a7e9-0f5daa757d63,SESCO,II.1.1,Formosa,AR-P,annual,2013,gas oil combustion consumption by to the public,410.920556172,TJ,CH4,3.9,kg/TJ,1602.5901690708,kg -8279bfb7-c15c-3262-a7e9-0f5daa757d63,SESCO,II.1.1,Formosa,AR-P,annual,2013,gas oil combustion consumption by to the public,410.920556172,TJ,N2O,3.9,kg/TJ,1602.5901690708,kg -c0581820-d93f-3818-add0-e666c631638a,SESCO,II.1.1,Jujuy,AR-Y,annual,2013,gas oil combustion consumption by to the public,273.531692364,TJ,CO2,74100.0,kg/TJ,20268698.4041724,kg -1e459054-b6ae-39bf-b92c-25c9f126100c,SESCO,II.1.1,Jujuy,AR-Y,annual,2013,gas oil combustion consumption by to the public,273.531692364,TJ,CH4,3.9,kg/TJ,1066.7736002196,kg -1e459054-b6ae-39bf-b92c-25c9f126100c,SESCO,II.1.1,Jujuy,AR-Y,annual,2013,gas oil combustion consumption by to the public,273.531692364,TJ,N2O,3.9,kg/TJ,1066.7736002196,kg -2c85a9f1-e5a8-39c4-9b27-052586946dec,SESCO,II.1.1,La Pampa,AR-L,annual,2013,gas oil combustion consumption by to the public,382.303575948,TJ,CO2,74100.0,kg/TJ,28328694.9777468,kg -c60bacc4-0d4e-3464-abad-54b9eea5c1f2,SESCO,II.1.1,La Pampa,AR-L,annual,2013,gas oil combustion consumption by to the public,382.303575948,TJ,CH4,3.9,kg/TJ,1490.9839461971999,kg -c60bacc4-0d4e-3464-abad-54b9eea5c1f2,SESCO,II.1.1,La Pampa,AR-L,annual,2013,gas oil combustion consumption by to the public,382.303575948,TJ,N2O,3.9,kg/TJ,1490.9839461971999,kg -35a386ab-6b1f-3837-84a5-4e67c2402e26,SESCO,II.1.1,La Rioja,AR-F,annual,2013,gas oil combustion consumption by to the public,88.922404872,TJ,CO2,74100.0,kg/TJ,6589150.2010152005,kg -45f841fd-e268-3039-8bb4-c4e0dac945e5,SESCO,II.1.1,La Rioja,AR-F,annual,2013,gas oil combustion consumption by to the public,88.922404872,TJ,CH4,3.9,kg/TJ,346.7973790008,kg -45f841fd-e268-3039-8bb4-c4e0dac945e5,SESCO,II.1.1,La Rioja,AR-F,annual,2013,gas oil combustion consumption by to the public,88.922404872,TJ,N2O,3.9,kg/TJ,346.7973790008,kg -7fa9147f-1a13-3ce3-921b-4715c25dcbec,SESCO,II.1.1,Mendoza,AR-M,annual,2013,gas oil combustion consumption by to the public,588.405878004,TJ,CO2,74100.0,kg/TJ,43600875.5600964,kg -12cd7897-4e26-3671-a304-af137d2d93d0,SESCO,II.1.1,Mendoza,AR-M,annual,2013,gas oil combustion consumption by to the public,588.405878004,TJ,CH4,3.9,kg/TJ,2294.7829242156,kg -12cd7897-4e26-3671-a304-af137d2d93d0,SESCO,II.1.1,Mendoza,AR-M,annual,2013,gas oil combustion consumption by to the public,588.405878004,TJ,N2O,3.9,kg/TJ,2294.7829242156,kg -5a9a877f-88b7-3d04-966d-a3eedb135979,SESCO,II.1.1,Misiones,AR-N,annual,2013,gas oil combustion consumption by to the public,1107.957749556,TJ,CO2,74100.0,kg/TJ,82099669.2420996,kg -15ab87cb-71c1-3666-a77a-a79ec0b0d726,SESCO,II.1.1,Misiones,AR-N,annual,2013,gas oil combustion consumption by to the public,1107.957749556,TJ,CH4,3.9,kg/TJ,4321.0352232684,kg -15ab87cb-71c1-3666-a77a-a79ec0b0d726,SESCO,II.1.1,Misiones,AR-N,annual,2013,gas oil combustion consumption by to the public,1107.957749556,TJ,N2O,3.9,kg/TJ,4321.0352232684,kg -991d706c-696b-33a8-b4f7-4ef321a16614,SESCO,II.1.1,Neuquén,AR-Q,annual,2013,gas oil combustion consumption by to the public,190.463953008,TJ,CO2,74100.0,kg/TJ,14113378.9178928,kg -284c6e08-a3d6-3de7-9024-7464b3c2adca,SESCO,II.1.1,Neuquén,AR-Q,annual,2013,gas oil combustion consumption by to the public,190.463953008,TJ,CH4,3.9,kg/TJ,742.8094167312,kg -284c6e08-a3d6-3de7-9024-7464b3c2adca,SESCO,II.1.1,Neuquén,AR-Q,annual,2013,gas oil combustion consumption by to the public,190.463953008,TJ,N2O,3.9,kg/TJ,742.8094167312,kg -49891d83-3e7c-3117-aa67-44953739b335,SESCO,II.1.1,Rio Negro,AR-R,annual,2013,gas oil combustion consumption by to the public,896.708914584,TJ,CO2,74100.0,kg/TJ,66446130.570674405,kg -25d5e00a-b087-3a8b-99c8-b89605f6772e,SESCO,II.1.1,Rio Negro,AR-R,annual,2013,gas oil combustion consumption by to the public,896.708914584,TJ,CH4,3.9,kg/TJ,3497.1647668776,kg -25d5e00a-b087-3a8b-99c8-b89605f6772e,SESCO,II.1.1,Rio Negro,AR-R,annual,2013,gas oil combustion consumption by to the public,896.708914584,TJ,N2O,3.9,kg/TJ,3497.1647668776,kg -4ab89029-2dcd-30eb-95da-9aa33338da56,SESCO,II.1.1,Salta,AR-A,annual,2013,gas oil combustion consumption by to the public,57.334565484,TJ,CO2,74100.0,kg/TJ,4248491.302364401,kg -2eb0374a-8474-30fa-a333-176bb62212ef,SESCO,II.1.1,Salta,AR-A,annual,2013,gas oil combustion consumption by to the public,57.334565484,TJ,CH4,3.9,kg/TJ,223.6048053876,kg -2eb0374a-8474-30fa-a333-176bb62212ef,SESCO,II.1.1,Salta,AR-A,annual,2013,gas oil combustion consumption by to the public,57.334565484,TJ,N2O,3.9,kg/TJ,223.6048053876,kg -a6427d66-97b9-38ee-b9c8-3c2734282b50,SESCO,II.1.1,San Juan,AR-J,annual,2013,gas oil combustion consumption by to the public,599.687132856,TJ,CO2,74100.0,kg/TJ,44436816.544629596,kg -a859b3d5-6742-36c9-b9c5-c398725379ad,SESCO,II.1.1,San Juan,AR-J,annual,2013,gas oil combustion consumption by to the public,599.687132856,TJ,CH4,3.9,kg/TJ,2338.7798181383996,kg -a859b3d5-6742-36c9-b9c5-c398725379ad,SESCO,II.1.1,San Juan,AR-J,annual,2013,gas oil combustion consumption by to the public,599.687132856,TJ,N2O,3.9,kg/TJ,2338.7798181383996,kg -af5ca342-11b6-3723-923b-36dfaf6e0051,SESCO,II.1.1,San Luis,AR-D,annual,2013,gas oil combustion consumption by to the public,982.6176255839999,TJ,CO2,74100.0,kg/TJ,72811966.05577439,kg -1fcff268-d9c0-3c2a-bbac-a6cec63e48ba,SESCO,II.1.1,San Luis,AR-D,annual,2013,gas oil combustion consumption by to the public,982.6176255839999,TJ,CH4,3.9,kg/TJ,3832.2087397775995,kg -1fcff268-d9c0-3c2a-bbac-a6cec63e48ba,SESCO,II.1.1,San Luis,AR-D,annual,2013,gas oil combustion consumption by to the public,982.6176255839999,TJ,N2O,3.9,kg/TJ,3832.2087397775995,kg -2d2e4b53-e280-3b1f-a43e-dd5686575768,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2013,gas oil combustion consumption by to the public,337.681050756,TJ,CO2,74100.0,kg/TJ,25022165.8610196,kg -326d68a1-7439-3baa-94a7-edb92c6f8878,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2013,gas oil combustion consumption by to the public,337.681050756,TJ,CH4,3.9,kg/TJ,1316.9560979484,kg -326d68a1-7439-3baa-94a7-edb92c6f8878,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2013,gas oil combustion consumption by to the public,337.681050756,TJ,N2O,3.9,kg/TJ,1316.9560979484,kg -642127ed-d9cb-3514-ba7f-137148c23ede,SESCO,II.1.1,Santa Fe,AR-S,annual,2013,gas oil combustion consumption by to the public,4043.03807418,TJ,CO2,74100.0,kg/TJ,299589121.29673797,kg -65735464-1128-3644-a8d7-35c7dfa291f3,SESCO,II.1.1,Santa Fe,AR-S,annual,2013,gas oil combustion consumption by to the public,4043.03807418,TJ,CH4,3.9,kg/TJ,15767.848489302,kg -65735464-1128-3644-a8d7-35c7dfa291f3,SESCO,II.1.1,Santa Fe,AR-S,annual,2013,gas oil combustion consumption by to the public,4043.03807418,TJ,N2O,3.9,kg/TJ,15767.848489302,kg -2c737290-2ecc-3629-843c-d39f546557e0,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2013,gas oil combustion consumption by to the public,495.83296559999997,TJ,CO2,74100.0,kg/TJ,36741222.75096,kg -015ead23-22ba-3bc5-86c4-923b91ca2153,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2013,gas oil combustion consumption by to the public,495.83296559999997,TJ,CH4,3.9,kg/TJ,1933.7485658399999,kg -015ead23-22ba-3bc5-86c4-923b91ca2153,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2013,gas oil combustion consumption by to the public,495.83296559999997,TJ,N2O,3.9,kg/TJ,1933.7485658399999,kg -984d2fa2-68dc-3f82-b97a-ac78dcb06f86,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2013,gas oil combustion consumption by to the public,185.490528804,TJ,CO2,74100.0,kg/TJ,13744848.1843764,kg -b4d52376-feb8-36bb-b343-2da9408c1840,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2013,gas oil combustion consumption by to the public,185.490528804,TJ,CH4,3.9,kg/TJ,723.4130623356,kg -b4d52376-feb8-36bb-b343-2da9408c1840,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2013,gas oil combustion consumption by to the public,185.490528804,TJ,N2O,3.9,kg/TJ,723.4130623356,kg -339ca45d-0579-3677-8018-a9308809e78a,SESCO,II.1.1,Tucuman,AR-T,annual,2013,gas oil combustion consumption by to the public,141.39471989999998,TJ,CO2,74100.0,kg/TJ,10477348.74459,kg -ad067f3d-2c9a-3ac8-9f64-cb09a3b173b6,SESCO,II.1.1,Tucuman,AR-T,annual,2013,gas oil combustion consumption by to the public,141.39471989999998,TJ,CH4,3.9,kg/TJ,551.4394076099999,kg -ad067f3d-2c9a-3ac8-9f64-cb09a3b173b6,SESCO,II.1.1,Tucuman,AR-T,annual,2013,gas oil combustion consumption by to the public,141.39471989999998,TJ,N2O,3.9,kg/TJ,551.4394076099999,kg -f360743b-4b97-3b00-b7be-68066a5c8c55,SESCO,II.1.1,Buenos Aires,AR-B,annual,2013,gas oil combustion consumption by to the public,2183.77588338,TJ,CO2,74100.0,kg/TJ,161817792.95845798,kg -a90dd020-edb2-3e6e-bbf9-cc64783e5e69,SESCO,II.1.1,Buenos Aires,AR-B,annual,2013,gas oil combustion consumption by to the public,2183.77588338,TJ,CH4,3.9,kg/TJ,8516.725945182,kg -a90dd020-edb2-3e6e-bbf9-cc64783e5e69,SESCO,II.1.1,Buenos Aires,AR-B,annual,2013,gas oil combustion consumption by to the public,2183.77588338,TJ,N2O,3.9,kg/TJ,8516.725945182,kg -ef8b224c-6b30-36c2-ab16-781eeb4edc69,SESCO,II.1.1,Capital Federal,AR-C,annual,2013,gas oil combustion consumption by to the public,319.67618071199996,TJ,CO2,74100.0,kg/TJ,23688004.990759198,kg -84aab921-62ad-305c-a432-2428e633a342,SESCO,II.1.1,Capital Federal,AR-C,annual,2013,gas oil combustion consumption by to the public,319.67618071199996,TJ,CH4,3.9,kg/TJ,1246.7371047768,kg -84aab921-62ad-305c-a432-2428e633a342,SESCO,II.1.1,Capital Federal,AR-C,annual,2013,gas oil combustion consumption by to the public,319.67618071199996,TJ,N2O,3.9,kg/TJ,1246.7371047768,kg -30661cba-f593-3275-b89c-4e22e650d8db,SESCO,II.1.1,Catamarca,AR-K,annual,2013,gas oil combustion consumption by to the public,99.56623924799999,TJ,CO2,74100.0,kg/TJ,7377858.328276799,kg -6412aee8-0fa1-3606-a523-5e9a9e7ae93e,SESCO,II.1.1,Catamarca,AR-K,annual,2013,gas oil combustion consumption by to the public,99.56623924799999,TJ,CH4,3.9,kg/TJ,388.30833306719995,kg -6412aee8-0fa1-3606-a523-5e9a9e7ae93e,SESCO,II.1.1,Catamarca,AR-K,annual,2013,gas oil combustion consumption by to the public,99.56623924799999,TJ,N2O,3.9,kg/TJ,388.30833306719995,kg -180ea312-1294-3dcd-a9c5-270f946a8986,SESCO,II.1.1,Chaco,AR-H,annual,2013,gas oil combustion consumption by to the public,88.223862132,TJ,CO2,74100.0,kg/TJ,6537388.1839812,kg -f023b9bf-8092-35ea-88a3-1da32bcb3d7a,SESCO,II.1.1,Chaco,AR-H,annual,2013,gas oil combustion consumption by to the public,88.223862132,TJ,CH4,3.9,kg/TJ,344.0730623148,kg -f023b9bf-8092-35ea-88a3-1da32bcb3d7a,SESCO,II.1.1,Chaco,AR-H,annual,2013,gas oil combustion consumption by to the public,88.223862132,TJ,N2O,3.9,kg/TJ,344.0730623148,kg -2f4a105b-0f3c-366d-b3a7-fa10cf9fd070,SESCO,II.1.1,Chubut,AR-U,annual,2013,gas oil combustion consumption by to the public,47.43554718,TJ,CO2,74100.0,kg/TJ,3514974.046038,kg -56896996-ff79-397c-91b8-ba1d4a6e0226,SESCO,II.1.1,Chubut,AR-U,annual,2013,gas oil combustion consumption by to the public,47.43554718,TJ,CH4,3.9,kg/TJ,184.998634002,kg -56896996-ff79-397c-91b8-ba1d4a6e0226,SESCO,II.1.1,Chubut,AR-U,annual,2013,gas oil combustion consumption by to the public,47.43554718,TJ,N2O,3.9,kg/TJ,184.998634002,kg -38ee6687-b895-3c87-9b18-205f1e92b24e,SESCO,II.1.1,Corrientes,AR-W,annual,2013,gas oil combustion consumption by to the public,66.34752768,TJ,CO2,74100.0,kg/TJ,4916351.801088,kg -8d888a44-f3c2-39bc-97ea-b19d5077f6a3,SESCO,II.1.1,Corrientes,AR-W,annual,2013,gas oil combustion consumption by to the public,66.34752768,TJ,CH4,3.9,kg/TJ,258.755357952,kg -8d888a44-f3c2-39bc-97ea-b19d5077f6a3,SESCO,II.1.1,Corrientes,AR-W,annual,2013,gas oil combustion consumption by to the public,66.34752768,TJ,N2O,3.9,kg/TJ,258.755357952,kg -e0f8e3a7-123a-3dce-8a4f-da652c87223b,SESCO,II.1.1,Córdoba,AR-X,annual,2013,gas oil combustion consumption by to the public,724.632096804,TJ,CO2,74100.0,kg/TJ,53695238.373176396,kg -4993f4d6-cf96-30c7-871c-5528c1b04b0a,SESCO,II.1.1,Córdoba,AR-X,annual,2013,gas oil combustion consumption by to the public,724.632096804,TJ,CH4,3.9,kg/TJ,2826.0651775355996,kg -4993f4d6-cf96-30c7-871c-5528c1b04b0a,SESCO,II.1.1,Córdoba,AR-X,annual,2013,gas oil combustion consumption by to the public,724.632096804,TJ,N2O,3.9,kg/TJ,2826.0651775355996,kg -c3bfa098-0ec0-34b5-824f-b7bfbcad3442,SESCO,II.1.1,Entre Rios,AR-E,annual,2013,gas oil combustion consumption by to the public,279.445898088,TJ,CO2,74100.0,kg/TJ,20706941.0483208,kg -9ec0f4f9-debe-3494-bbdf-23da8342009b,SESCO,II.1.1,Entre Rios,AR-E,annual,2013,gas oil combustion consumption by to the public,279.445898088,TJ,CH4,3.9,kg/TJ,1089.8390025432,kg -9ec0f4f9-debe-3494-bbdf-23da8342009b,SESCO,II.1.1,Entre Rios,AR-E,annual,2013,gas oil combustion consumption by to the public,279.445898088,TJ,N2O,3.9,kg/TJ,1089.8390025432,kg -0ba6a109-cd89-3563-9dbc-cddc5b7974dd,SESCO,II.1.1,Formosa,AR-P,annual,2013,gas oil combustion consumption by to the public,142.07128362,TJ,CO2,74100.0,kg/TJ,10527482.116242,kg -9b76bb39-953d-3446-988d-07234338eda1,SESCO,II.1.1,Formosa,AR-P,annual,2013,gas oil combustion consumption by to the public,142.07128362,TJ,CH4,3.9,kg/TJ,554.078006118,kg -9b76bb39-953d-3446-988d-07234338eda1,SESCO,II.1.1,Formosa,AR-P,annual,2013,gas oil combustion consumption by to the public,142.07128362,TJ,N2O,3.9,kg/TJ,554.078006118,kg -1ad3bac3-d6a5-3567-946c-1836ea00b55e,SESCO,II.1.1,Jujuy,AR-Y,annual,2013,gas oil combustion consumption by to the public,22.795364508,TJ,CO2,74100.0,kg/TJ,1689136.5100427999,kg -726a2ced-de47-3682-986a-7b7e509e4e43,SESCO,II.1.1,Jujuy,AR-Y,annual,2013,gas oil combustion consumption by to the public,22.795364508,TJ,CH4,3.9,kg/TJ,88.9019215812,kg -726a2ced-de47-3682-986a-7b7e509e4e43,SESCO,II.1.1,Jujuy,AR-Y,annual,2013,gas oil combustion consumption by to the public,22.795364508,TJ,N2O,3.9,kg/TJ,88.9019215812,kg -b87d3224-dcc3-3476-9c3c-5e2692dd02f5,SESCO,II.1.1,La Pampa,AR-L,annual,2013,gas oil combustion consumption by to the public,59.676582672,TJ,CO2,74100.0,kg/TJ,4422034.7759952005,kg -6a5289c1-acf1-375e-8a40-82532dc04151,SESCO,II.1.1,La Pampa,AR-L,annual,2013,gas oil combustion consumption by to the public,59.676582672,TJ,CH4,3.9,kg/TJ,232.73867242080001,kg -6a5289c1-acf1-375e-8a40-82532dc04151,SESCO,II.1.1,La Pampa,AR-L,annual,2013,gas oil combustion consumption by to the public,59.676582672,TJ,N2O,3.9,kg/TJ,232.73867242080001,kg -8097d9ac-540e-3b75-b3b8-cd9a8c17a2ed,SESCO,II.1.1,La Rioja,AR-F,annual,2013,gas oil combustion consumption by to the public,46.37939838,TJ,CO2,74100.0,kg/TJ,3436713.4199579996,kg -9325639e-cd4c-33ff-9586-60c99d1438eb,SESCO,II.1.1,La Rioja,AR-F,annual,2013,gas oil combustion consumption by to the public,46.37939838,TJ,CH4,3.9,kg/TJ,180.879653682,kg -9325639e-cd4c-33ff-9586-60c99d1438eb,SESCO,II.1.1,La Rioja,AR-F,annual,2013,gas oil combustion consumption by to the public,46.37939838,TJ,N2O,3.9,kg/TJ,180.879653682,kg -ed45c8e7-6be7-3b99-8072-14ab2923e026,SESCO,II.1.1,Mendoza,AR-M,annual,2013,gas oil combustion consumption by to the public,139.90568012399999,TJ,CO2,74100.0,kg/TJ,10367010.897188399,kg -f540e809-cbaf-3fbf-947b-01899f22d16b,SESCO,II.1.1,Mendoza,AR-M,annual,2013,gas oil combustion consumption by to the public,139.90568012399999,TJ,CH4,3.9,kg/TJ,545.6321524836,kg -f540e809-cbaf-3fbf-947b-01899f22d16b,SESCO,II.1.1,Mendoza,AR-M,annual,2013,gas oil combustion consumption by to the public,139.90568012399999,TJ,N2O,3.9,kg/TJ,545.6321524836,kg -2ed18f2f-21df-314f-8e29-da44538b9620,SESCO,II.1.1,Misiones,AR-N,annual,2013,gas oil combustion consumption by to the public,146.38294608,TJ,CO2,74100.0,kg/TJ,10846976.304528002,kg -ec1ef50d-a69e-3153-9736-417ab1fa1ad7,SESCO,II.1.1,Misiones,AR-N,annual,2013,gas oil combustion consumption by to the public,146.38294608,TJ,CH4,3.9,kg/TJ,570.893489712,kg -ec1ef50d-a69e-3153-9736-417ab1fa1ad7,SESCO,II.1.1,Misiones,AR-N,annual,2013,gas oil combustion consumption by to the public,146.38294608,TJ,N2O,3.9,kg/TJ,570.893489712,kg -02aa1f6f-522f-34f8-ba5f-d7d99a3bc497,SESCO,II.1.1,Neuquén,AR-Q,annual,2013,gas oil combustion consumption by to the public,113.16325927199999,TJ,CO2,74100.0,kg/TJ,8385397.5120552,kg -c26f1f09-1cb0-3153-98e8-dd5eadbbc5dc,SESCO,II.1.1,Neuquén,AR-Q,annual,2013,gas oil combustion consumption by to the public,113.16325927199999,TJ,CH4,3.9,kg/TJ,441.33671116079995,kg -c26f1f09-1cb0-3153-98e8-dd5eadbbc5dc,SESCO,II.1.1,Neuquén,AR-Q,annual,2013,gas oil combustion consumption by to the public,113.16325927199999,TJ,N2O,3.9,kg/TJ,441.33671116079995,kg -633fd1b2-d986-38dc-8cbf-4a074bdbfd9f,SESCO,II.1.1,Rio Negro,AR-R,annual,2013,gas oil combustion consumption by to the public,175.434861672,TJ,CO2,74100.0,kg/TJ,12999723.2498952,kg -ec97181f-dc9f-3129-a6b9-1c509379d1d2,SESCO,II.1.1,Rio Negro,AR-R,annual,2013,gas oil combustion consumption by to the public,175.434861672,TJ,CH4,3.9,kg/TJ,684.1959605208,kg -ec97181f-dc9f-3129-a6b9-1c509379d1d2,SESCO,II.1.1,Rio Negro,AR-R,annual,2013,gas oil combustion consumption by to the public,175.434861672,TJ,N2O,3.9,kg/TJ,684.1959605208,kg -83865607-d02e-30b6-9d95-9a045ae54ad5,SESCO,II.1.1,Salta,AR-A,annual,2013,gas oil combustion consumption by to the public,16.00686696,TJ,CO2,74100.0,kg/TJ,1186108.841736,kg -a2a5e24c-9996-361c-b8e0-3982aae74c88,SESCO,II.1.1,Salta,AR-A,annual,2013,gas oil combustion consumption by to the public,16.00686696,TJ,CH4,3.9,kg/TJ,62.426781143999996,kg -a2a5e24c-9996-361c-b8e0-3982aae74c88,SESCO,II.1.1,Salta,AR-A,annual,2013,gas oil combustion consumption by to the public,16.00686696,TJ,N2O,3.9,kg/TJ,62.426781143999996,kg -e473da3f-ee16-3e16-94ce-cb319fbe38f0,SESCO,II.1.1,San Juan,AR-J,annual,2013,gas oil combustion consumption by to the public,79.79485919999999,TJ,CO2,74100.0,kg/TJ,5912799.06672,kg -db4a6d3e-d1fd-3562-91c3-4ccd69a965a8,SESCO,II.1.1,San Juan,AR-J,annual,2013,gas oil combustion consumption by to the public,79.79485919999999,TJ,CH4,3.9,kg/TJ,311.19995087999996,kg -db4a6d3e-d1fd-3562-91c3-4ccd69a965a8,SESCO,II.1.1,San Juan,AR-J,annual,2013,gas oil combustion consumption by to the public,79.79485919999999,TJ,N2O,3.9,kg/TJ,311.19995087999996,kg -2e188bc7-3cf5-34d6-a5a1-9b920ae8f2f8,SESCO,II.1.1,San Luis,AR-D,annual,2013,gas oil combustion consumption by to the public,120.35009179199999,TJ,CO2,74100.0,kg/TJ,8917941.8017872,kg -70672165-3230-3de1-a77a-578d789da085,SESCO,II.1.1,San Luis,AR-D,annual,2013,gas oil combustion consumption by to the public,120.35009179199999,TJ,CH4,3.9,kg/TJ,469.36535798879993,kg -70672165-3230-3de1-a77a-578d789da085,SESCO,II.1.1,San Luis,AR-D,annual,2013,gas oil combustion consumption by to the public,120.35009179199999,TJ,N2O,3.9,kg/TJ,469.36535798879993,kg -c621bb0c-4893-3228-8341-4a9b2aeb8840,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2013,gas oil combustion consumption by to the public,60.336404771999995,TJ,CO2,74100.0,kg/TJ,4470927.5936052,kg -c28eadf8-15a6-361d-9f62-71d6f081dc40,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2013,gas oil combustion consumption by to the public,60.336404771999995,TJ,CH4,3.9,kg/TJ,235.31197861079997,kg -c28eadf8-15a6-361d-9f62-71d6f081dc40,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2013,gas oil combustion consumption by to the public,60.336404771999995,TJ,N2O,3.9,kg/TJ,235.31197861079997,kg -0c0229c9-7809-3916-b696-c04fd4bb4702,SESCO,II.1.1,Santa Fe,AR-S,annual,2013,gas oil combustion consumption by to the public,583.13507784,TJ,CO2,74100.0,kg/TJ,43210309.267944,kg -7ad34abb-0ab3-3c4a-9a20-472f870905bc,SESCO,II.1.1,Santa Fe,AR-S,annual,2013,gas oil combustion consumption by to the public,583.13507784,TJ,CH4,3.9,kg/TJ,2274.226803576,kg -7ad34abb-0ab3-3c4a-9a20-472f870905bc,SESCO,II.1.1,Santa Fe,AR-S,annual,2013,gas oil combustion consumption by to the public,583.13507784,TJ,N2O,3.9,kg/TJ,2274.226803576,kg -5d896944-5460-3687-a36d-19239d4b2e87,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2013,gas oil combustion consumption by to the public,96.37867453199999,TJ,CO2,74100.0,kg/TJ,7141659.782821199,kg -c6ab8fdd-4d4f-362f-84be-4dc55fb7dbae,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2013,gas oil combustion consumption by to the public,96.37867453199999,TJ,CH4,3.9,kg/TJ,375.8768306748,kg -c6ab8fdd-4d4f-362f-84be-4dc55fb7dbae,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2013,gas oil combustion consumption by to the public,96.37867453199999,TJ,N2O,3.9,kg/TJ,375.8768306748,kg -1e4ed8a2-b80e-33e5-b448-e53f0f2114ac,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2013,gas oil combustion consumption by to the public,46.1779752,TJ,CO2,74100.0,kg/TJ,3421787.96232,kg -9bc341d1-0f82-33af-a96b-8a823958ab0a,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2013,gas oil combustion consumption by to the public,46.1779752,TJ,CH4,3.9,kg/TJ,180.09410327999998,kg -9bc341d1-0f82-33af-a96b-8a823958ab0a,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2013,gas oil combustion consumption by to the public,46.1779752,TJ,N2O,3.9,kg/TJ,180.09410327999998,kg -11956d74-5723-3ddd-9023-c7220c57f9d3,SESCO,II.1.1,Tucuman,AR-T,annual,2013,gas oil combustion consumption by to the public,36.37284,TJ,CO2,74100.0,kg/TJ,2695227.4439999997,kg -4d0aa7c4-5fc8-3713-a6a6-834047e7d613,SESCO,II.1.1,Tucuman,AR-T,annual,2013,gas oil combustion consumption by to the public,36.37284,TJ,CH4,3.9,kg/TJ,141.854076,kg -4d0aa7c4-5fc8-3713-a6a6-834047e7d613,SESCO,II.1.1,Tucuman,AR-T,annual,2013,gas oil combustion consumption by to the public,36.37284,TJ,N2O,3.9,kg/TJ,141.854076,kg -b84ab46f-e128-34de-b258-3ac82ad7ba2c,SESCO,II.1.1,Buenos Aires,AR-B,annual,2013,jet kerosene combustion consumption by to the public,10.990936319999998,TJ,CO2,71500.0,kg/TJ,785851.9468799998,kg -a150de83-5960-3f01-8159-19d88cb432a6,SESCO,II.1.1,Buenos Aires,AR-B,annual,2013,jet kerosene combustion consumption by to the public,10.990936319999998,TJ,CH4,0.5,kg/TJ,5.495468159999999,kg -df645560-8237-3608-a2f4-b901549c49ae,SESCO,II.1.1,Buenos Aires,AR-B,annual,2013,jet kerosene combustion consumption by to the public,10.990936319999998,TJ,N2O,2.0,kg/TJ,21.981872639999995,kg -0407635d-573f-3560-9415-d8a9fdeae744,SESCO,II.1.1,Córdoba,AR-X,annual,2013,jet kerosene combustion consumption by to the public,3.5727462699999997,TJ,CO2,71500.0,kg/TJ,255451.35830499997,kg -dad00149-ae6f-3cdb-b63c-3ea8fdab6044,SESCO,II.1.1,Córdoba,AR-X,annual,2013,jet kerosene combustion consumption by to the public,3.5727462699999997,TJ,CH4,0.5,kg/TJ,1.7863731349999998,kg -99e76940-a43c-38a3-b53f-7dec565e3092,SESCO,II.1.1,Córdoba,AR-X,annual,2013,jet kerosene combustion consumption by to the public,3.5727462699999997,TJ,N2O,2.0,kg/TJ,7.145492539999999,kg -089f035a-657b-30fd-8c1e-bdc97ae6ff3d,SESCO,II.1.1,Entre Rios,AR-E,annual,2013,jet kerosene combustion consumption by to the public,3.0128828699999994,TJ,CO2,71500.0,kg/TJ,215421.12520499996,kg -8915bf16-bb8c-3a76-8a0e-da6fde58f24a,SESCO,II.1.1,Entre Rios,AR-E,annual,2013,jet kerosene combustion consumption by to the public,3.0128828699999994,TJ,CH4,0.5,kg/TJ,1.5064414349999997,kg -7edd8545-1aed-358c-b759-2fc75a799115,SESCO,II.1.1,Entre Rios,AR-E,annual,2013,jet kerosene combustion consumption by to the public,3.0128828699999994,TJ,N2O,2.0,kg/TJ,6.025765739999999,kg -14adb0db-3d30-3a2b-bf5d-674a5c9401e3,SESCO,II.1.1,Misiones,AR-N,annual,2013,jet kerosene combustion consumption by to the public,0.9124515299999999,TJ,CO2,71500.0,kg/TJ,65240.284394999995,kg -c5a56613-0cf0-30b0-8235-eaf91edee901,SESCO,II.1.1,Misiones,AR-N,annual,2013,jet kerosene combustion consumption by to the public,0.9124515299999999,TJ,CH4,0.5,kg/TJ,0.45622576499999995,kg -d3adc075-74f0-3ddf-ad7c-99a6dd28d455,SESCO,II.1.1,Misiones,AR-N,annual,2013,jet kerosene combustion consumption by to the public,0.9124515299999999,TJ,N2O,2.0,kg/TJ,1.8249030599999998,kg -e6a8e062-e730-3c94-9d79-6a5cf725db43,SESCO,II.1.1,Santa Fe,AR-S,annual,2013,jet kerosene combustion consumption by to the public,6.30978633,TJ,CO2,71500.0,kg/TJ,451149.722595,kg -a4181cf2-6a54-3083-a688-c88a505f3992,SESCO,II.1.1,Santa Fe,AR-S,annual,2013,jet kerosene combustion consumption by to the public,6.30978633,TJ,CH4,0.5,kg/TJ,3.154893165,kg -914532c6-4b5d-3505-b27f-78c8555cc1ce,SESCO,II.1.1,Santa Fe,AR-S,annual,2013,jet kerosene combustion consumption by to the public,6.30978633,TJ,N2O,2.0,kg/TJ,12.61957266,kg -746f3220-0658-375b-965b-3701f96069c5,SESCO,I.3.1,Buenos Aires,AR-B,annual,2013,gasoline combustion consumption by petrochemical industries,69.88812300000001,TJ,CO2,69300.0,kg/TJ,4843246.923900001,kg -c967105d-e6db-3450-bff6-4c445cef9df3,SESCO,I.3.1,Buenos Aires,AR-B,annual,2013,gasoline combustion consumption by petrochemical industries,69.88812300000001,TJ,CH4,33.0,kg/TJ,2306.3080590000004,kg -f071108e-7e72-3894-9e55-4aaafbfe9125,SESCO,I.3.1,Buenos Aires,AR-B,annual,2013,gasoline combustion consumption by petrochemical industries,69.88812300000001,TJ,N2O,3.2,kg/TJ,223.64199360000003,kg -c97e21ae-5372-328b-bc99-93861368c70c,SESCO,I.3.1,Buenos Aires,AR-B,annual,2013,gas oil combustion consumption by petrochemical industries,11.95572,TJ,CO2,74100.0,kg/TJ,885918.852,kg -6222fc29-0ca7-32e5-877a-ca414fbc8eb8,SESCO,I.3.1,Buenos Aires,AR-B,annual,2013,gas oil combustion consumption by petrochemical industries,11.95572,TJ,CH4,3.9,kg/TJ,46.627308,kg -6222fc29-0ca7-32e5-877a-ca414fbc8eb8,SESCO,I.3.1,Buenos Aires,AR-B,annual,2013,gas oil combustion consumption by petrochemical industries,11.95572,TJ,N2O,3.9,kg/TJ,46.627308,kg -ba3a4b67-855b-3723-8189-0f92c1a118f3,SESCO,I.3.1,Buenos Aires,AR-B,annual,2013,gas oil combustion consumption by petrochemical industries,4.04544,TJ,CO2,74100.0,kg/TJ,299767.104,kg -83ab80a2-049d-3f6c-99ef-17450c5ecb55,SESCO,I.3.1,Buenos Aires,AR-B,annual,2013,gas oil combustion consumption by petrochemical industries,4.04544,TJ,CH4,3.9,kg/TJ,15.777216000000001,kg -83ab80a2-049d-3f6c-99ef-17450c5ecb55,SESCO,I.3.1,Buenos Aires,AR-B,annual,2013,gas oil combustion consumption by petrochemical industries,4.04544,TJ,N2O,3.9,kg/TJ,15.777216000000001,kg -ce00d195-0c03-35a6-b6b0-63754acfd661,SESCO,II.2.1,Buenos Aires,AR-B,annual,2013,gas oil combustion consumption by railway transport,27.12612,TJ,CO2,74100.0,kg/TJ,2010045.492,kg -e5e79b07-7136-3739-bb86-7e9bf9eb047d,SESCO,II.2.1,Buenos Aires,AR-B,annual,2013,gas oil combustion consumption by railway transport,27.12612,TJ,CH4,3.9,kg/TJ,105.791868,kg -e5e79b07-7136-3739-bb86-7e9bf9eb047d,SESCO,II.2.1,Buenos Aires,AR-B,annual,2013,gas oil combustion consumption by railway transport,27.12612,TJ,N2O,3.9,kg/TJ,105.791868,kg -06087d13-9db0-342f-b420-c2eb377c4e63,SESCO,II.2.1,Capital Federal,AR-C,annual,2013,gas oil combustion consumption by railway transport,0.75852,TJ,CO2,74100.0,kg/TJ,56206.331999999995,kg -30883a31-1d68-3863-9f27-ee145973d778,SESCO,II.2.1,Capital Federal,AR-C,annual,2013,gas oil combustion consumption by railway transport,0.75852,TJ,CH4,3.9,kg/TJ,2.9582279999999996,kg -30883a31-1d68-3863-9f27-ee145973d778,SESCO,II.2.1,Capital Federal,AR-C,annual,2013,gas oil combustion consumption by railway transport,0.75852,TJ,N2O,3.9,kg/TJ,2.9582279999999996,kg -ea6a50a3-794e-31cb-a522-c911809f08d6,SESCO,II.2.1,Córdoba,AR-X,annual,2013,gas oil combustion consumption by railway transport,1.072764,TJ,CO2,74100.0,kg/TJ,79491.81240000001,kg -6ea9f494-a802-3a59-8d5b-00769a555ea9,SESCO,II.2.1,Córdoba,AR-X,annual,2013,gas oil combustion consumption by railway transport,1.072764,TJ,CH4,3.9,kg/TJ,4.1837796,kg -6ea9f494-a802-3a59-8d5b-00769a555ea9,SESCO,II.2.1,Córdoba,AR-X,annual,2013,gas oil combustion consumption by railway transport,1.072764,TJ,N2O,3.9,kg/TJ,4.1837796,kg -402c3c4f-e198-3cca-affd-9b1e3a8d0aca,SESCO,II.1.1,Buenos Aires,AR-B,annual,2013,gas oil combustion consumption by freight transport,1617.4546836,TJ,CO2,74100.0,kg/TJ,119853392.05476,kg -f99d64fe-f17f-39c7-ba1f-1f1243f2a533,SESCO,II.1.1,Buenos Aires,AR-B,annual,2013,gas oil combustion consumption by freight transport,1617.4546836,TJ,CH4,3.9,kg/TJ,6308.07326604,kg -f99d64fe-f17f-39c7-ba1f-1f1243f2a533,SESCO,II.1.1,Buenos Aires,AR-B,annual,2013,gas oil combustion consumption by freight transport,1617.4546836,TJ,N2O,3.9,kg/TJ,6308.07326604,kg -d9435cb1-8f12-3a37-b871-3248208382e8,SESCO,II.1.1,Capital Federal,AR-C,annual,2013,gas oil combustion consumption by freight transport,734.4619127999999,TJ,CO2,74100.0,kg/TJ,54423627.738479994,kg -0ced35e3-cfe2-3ce2-b64e-b50b2f9b6cd4,SESCO,II.1.1,Capital Federal,AR-C,annual,2013,gas oil combustion consumption by freight transport,734.4619127999999,TJ,CH4,3.9,kg/TJ,2864.4014599199995,kg -0ced35e3-cfe2-3ce2-b64e-b50b2f9b6cd4,SESCO,II.1.1,Capital Federal,AR-C,annual,2013,gas oil combustion consumption by freight transport,734.4619127999999,TJ,N2O,3.9,kg/TJ,2864.4014599199995,kg -811527fa-705b-3e46-b4d1-aab4240b245a,SESCO,II.1.1,Chaco,AR-H,annual,2013,gas oil combustion consumption by freight transport,111.525672384,TJ,CO2,74100.0,kg/TJ,8264052.3236544,kg -a5816ffd-0796-376e-b8b1-ba759ec7bba5,SESCO,II.1.1,Chaco,AR-H,annual,2013,gas oil combustion consumption by freight transport,111.525672384,TJ,CH4,3.9,kg/TJ,434.9501222976,kg -a5816ffd-0796-376e-b8b1-ba759ec7bba5,SESCO,II.1.1,Chaco,AR-H,annual,2013,gas oil combustion consumption by freight transport,111.525672384,TJ,N2O,3.9,kg/TJ,434.9501222976,kg -4066843c-d913-3f91-954e-deaa2d58f202,SESCO,II.1.1,Chubut,AR-U,annual,2013,gas oil combustion consumption by freight transport,2.875249524,TJ,CO2,74100.0,kg/TJ,213055.9897284,kg -bcaf36d0-e6df-30c9-905f-027923932e43,SESCO,II.1.1,Chubut,AR-U,annual,2013,gas oil combustion consumption by freight transport,2.875249524,TJ,CH4,3.9,kg/TJ,11.2134731436,kg -bcaf36d0-e6df-30c9-905f-027923932e43,SESCO,II.1.1,Chubut,AR-U,annual,2013,gas oil combustion consumption by freight transport,2.875249524,TJ,N2O,3.9,kg/TJ,11.2134731436,kg -24c8891b-dbef-351d-92e4-c4cbad9dff64,SESCO,II.1.1,Corrientes,AR-W,annual,2013,gas oil combustion consumption by freight transport,139.498470468,TJ,CO2,74100.0,kg/TJ,10336836.6616788,kg -94cbe06a-bbea-3b10-bcbf-978e2027754c,SESCO,II.1.1,Corrientes,AR-W,annual,2013,gas oil combustion consumption by freight transport,139.498470468,TJ,CH4,3.9,kg/TJ,544.0440348252,kg -94cbe06a-bbea-3b10-bcbf-978e2027754c,SESCO,II.1.1,Corrientes,AR-W,annual,2013,gas oil combustion consumption by freight transport,139.498470468,TJ,N2O,3.9,kg/TJ,544.0440348252,kg -6c3a8fda-5067-3b04-a9c4-c43b9459415f,SESCO,II.1.1,Córdoba,AR-X,annual,2013,gas oil combustion consumption by freight transport,223.137588492,TJ,CO2,74100.0,kg/TJ,16534495.3072572,kg -c26f7b39-2cca-3411-bb9c-1db5f1e9286d,SESCO,II.1.1,Córdoba,AR-X,annual,2013,gas oil combustion consumption by freight transport,223.137588492,TJ,CH4,3.9,kg/TJ,870.2365951188,kg -c26f7b39-2cca-3411-bb9c-1db5f1e9286d,SESCO,II.1.1,Córdoba,AR-X,annual,2013,gas oil combustion consumption by freight transport,223.137588492,TJ,N2O,3.9,kg/TJ,870.2365951188,kg -23b39f9f-f89d-3d75-aa1a-a0b011bd45a8,SESCO,II.1.1,Entre Rios,AR-E,annual,2013,gas oil combustion consumption by freight transport,61.537123872,TJ,CO2,74100.0,kg/TJ,4559900.8789152,kg -a1b07fe1-f7b1-35e4-998d-ed353278261a,SESCO,II.1.1,Entre Rios,AR-E,annual,2013,gas oil combustion consumption by freight transport,61.537123872,TJ,CH4,3.9,kg/TJ,239.9947831008,kg -a1b07fe1-f7b1-35e4-998d-ed353278261a,SESCO,II.1.1,Entre Rios,AR-E,annual,2013,gas oil combustion consumption by freight transport,61.537123872,TJ,N2O,3.9,kg/TJ,239.9947831008,kg -1c86f950-8b23-3c80-a531-da41ce0254db,SESCO,II.1.1,La Pampa,AR-L,annual,2013,gas oil combustion consumption by freight transport,8.211932568,TJ,CO2,74100.0,kg/TJ,608504.2032888,kg -150909e3-54b7-3b4a-8a50-e53f039c54bf,SESCO,II.1.1,La Pampa,AR-L,annual,2013,gas oil combustion consumption by freight transport,8.211932568,TJ,CH4,3.9,kg/TJ,32.0265370152,kg -150909e3-54b7-3b4a-8a50-e53f039c54bf,SESCO,II.1.1,La Pampa,AR-L,annual,2013,gas oil combustion consumption by freight transport,8.211932568,TJ,N2O,3.9,kg/TJ,32.0265370152,kg -00229041-212d-3226-994b-4637cc53c6cb,SESCO,II.1.1,Mendoza,AR-M,annual,2013,gas oil combustion consumption by freight transport,59.668238952,TJ,CO2,74100.0,kg/TJ,4421416.5063432,kg -f6f27fbc-39e9-3b60-bfad-08697ff7c040,SESCO,II.1.1,Mendoza,AR-M,annual,2013,gas oil combustion consumption by freight transport,59.668238952,TJ,CH4,3.9,kg/TJ,232.7061319128,kg -f6f27fbc-39e9-3b60-bfad-08697ff7c040,SESCO,II.1.1,Mendoza,AR-M,annual,2013,gas oil combustion consumption by freight transport,59.668238952,TJ,N2O,3.9,kg/TJ,232.7061319128,kg -5e13c4a6-2814-3b92-abf4-c89bc3b8e8a8,SESCO,II.1.1,Misiones,AR-N,annual,2013,gas oil combustion consumption by freight transport,42.809875500000004,TJ,CO2,74100.0,kg/TJ,3172211.77455,kg -067a95cc-de58-36e8-b78a-808569f3bf61,SESCO,II.1.1,Misiones,AR-N,annual,2013,gas oil combustion consumption by freight transport,42.809875500000004,TJ,CH4,3.9,kg/TJ,166.95851445000002,kg -067a95cc-de58-36e8-b78a-808569f3bf61,SESCO,II.1.1,Misiones,AR-N,annual,2013,gas oil combustion consumption by freight transport,42.809875500000004,TJ,N2O,3.9,kg/TJ,166.95851445000002,kg -1d688e26-a8f9-39b6-919a-40b42f28315d,SESCO,II.1.1,Rio Negro,AR-R,annual,2013,gas oil combustion consumption by freight transport,0.025284,TJ,CO2,74100.0,kg/TJ,1873.5444,kg -a2ef33fc-3f19-33fb-9033-10926def9d09,SESCO,II.1.1,Rio Negro,AR-R,annual,2013,gas oil combustion consumption by freight transport,0.025284,TJ,CH4,3.9,kg/TJ,0.0986076,kg -a2ef33fc-3f19-33fb-9033-10926def9d09,SESCO,II.1.1,Rio Negro,AR-R,annual,2013,gas oil combustion consumption by freight transport,0.025284,TJ,N2O,3.9,kg/TJ,0.0986076,kg -ecfb860f-b21e-34bb-9d54-a4eb2b30209a,SESCO,II.1.1,Salta,AR-A,annual,2013,gas oil combustion consumption by freight transport,1.0175003999999999,TJ,CO2,74100.0,kg/TJ,75396.77964,kg -04f8c793-e3bf-37ba-95b4-9d111ea1d305,SESCO,II.1.1,Salta,AR-A,annual,2013,gas oil combustion consumption by freight transport,1.0175003999999999,TJ,CH4,3.9,kg/TJ,3.9682515599999992,kg -04f8c793-e3bf-37ba-95b4-9d111ea1d305,SESCO,II.1.1,Salta,AR-A,annual,2013,gas oil combustion consumption by freight transport,1.0175003999999999,TJ,N2O,3.9,kg/TJ,3.9682515599999992,kg -53a19b94-d561-315f-8986-9bca2aefb8e0,SESCO,II.1.1,San Juan,AR-J,annual,2013,gas oil combustion consumption by freight transport,3.020820348,TJ,CO2,74100.0,kg/TJ,223842.7877868,kg -d6c5c2c1-50bc-3481-aa55-724bc68170da,SESCO,II.1.1,San Juan,AR-J,annual,2013,gas oil combustion consumption by freight transport,3.020820348,TJ,CH4,3.9,kg/TJ,11.7811993572,kg -d6c5c2c1-50bc-3481-aa55-724bc68170da,SESCO,II.1.1,San Juan,AR-J,annual,2013,gas oil combustion consumption by freight transport,3.020820348,TJ,N2O,3.9,kg/TJ,11.7811993572,kg -e3bbada2-aa0f-32ea-b69e-315663f464d2,SESCO,II.1.1,San Luis,AR-D,annual,2013,gas oil combustion consumption by freight transport,56.784613199999995,TJ,CO2,74100.0,kg/TJ,4207739.8381199995,kg -810ce514-9ba6-3ceb-9887-91b87aa40251,SESCO,II.1.1,San Luis,AR-D,annual,2013,gas oil combustion consumption by freight transport,56.784613199999995,TJ,CH4,3.9,kg/TJ,221.45999147999999,kg -810ce514-9ba6-3ceb-9887-91b87aa40251,SESCO,II.1.1,San Luis,AR-D,annual,2013,gas oil combustion consumption by freight transport,56.784613199999995,TJ,N2O,3.9,kg/TJ,221.45999147999999,kg -f7cf9bdc-db96-3557-a7e7-76174a691de5,SESCO,II.1.1,Santa Fe,AR-S,annual,2013,gas oil combustion consumption by freight transport,417.39807135599995,TJ,CO2,74100.0,kg/TJ,30929197.087479595,kg -032c0863-dc94-3ef1-87e0-7db8729c2af6,SESCO,II.1.1,Santa Fe,AR-S,annual,2013,gas oil combustion consumption by freight transport,417.39807135599995,TJ,CH4,3.9,kg/TJ,1627.8524782883997,kg -032c0863-dc94-3ef1-87e0-7db8729c2af6,SESCO,II.1.1,Santa Fe,AR-S,annual,2013,gas oil combustion consumption by freight transport,417.39807135599995,TJ,N2O,3.9,kg/TJ,1627.8524782883997,kg -3ae445a6-f478-3dac-ad09-87a9c33698b3,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2013,gas oil combustion consumption by freight transport,2.706027324,TJ,CO2,74100.0,kg/TJ,200516.6247084,kg -b81a2279-c4cf-37d4-a74b-cf04053268f7,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2013,gas oil combustion consumption by freight transport,2.706027324,TJ,CH4,3.9,kg/TJ,10.5535065636,kg -b81a2279-c4cf-37d4-a74b-cf04053268f7,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2013,gas oil combustion consumption by freight transport,2.706027324,TJ,N2O,3.9,kg/TJ,10.5535065636,kg -407fc896-4b29-33f4-bf8a-1806d92d9422,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2013,gas oil combustion consumption by freight transport,13.586812512,TJ,CO2,74100.0,kg/TJ,1006782.8071392,kg -23656fbd-24c1-3217-ba7c-41418ff3d6e9,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2013,gas oil combustion consumption by freight transport,13.586812512,TJ,CH4,3.9,kg/TJ,52.988568796799996,kg -23656fbd-24c1-3217-ba7c-41418ff3d6e9,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2013,gas oil combustion consumption by freight transport,13.586812512,TJ,N2O,3.9,kg/TJ,52.988568796799996,kg -34a445c7-2097-34fd-8fab-00fdbd9adc9e,SESCO,II.1.1,Tucuman,AR-T,annual,2013,gas oil combustion consumption by freight transport,68.819522688,TJ,CO2,74100.0,kg/TJ,5099526.6311808005,kg -97427e90-8948-3dca-bf46-8e031ec992fc,SESCO,II.1.1,Tucuman,AR-T,annual,2013,gas oil combustion consumption by freight transport,68.819522688,TJ,CH4,3.9,kg/TJ,268.3961384832,kg -97427e90-8948-3dca-bf46-8e031ec992fc,SESCO,II.1.1,Tucuman,AR-T,annual,2013,gas oil combustion consumption by freight transport,68.819522688,TJ,N2O,3.9,kg/TJ,268.3961384832,kg -0a03798a-2049-3db9-adf1-ad57ae0abd17,SESCO,II.1.1,Buenos Aires,AR-B,annual,2013,gas oil combustion consumption by freight transport,30.6254256,TJ,CO2,74100.0,kg/TJ,2269344.03696,kg -9c8c8f27-f098-361c-8069-2529fdb2b544,SESCO,II.1.1,Buenos Aires,AR-B,annual,2013,gas oil combustion consumption by freight transport,30.6254256,TJ,CH4,3.9,kg/TJ,119.43915984,kg -9c8c8f27-f098-361c-8069-2529fdb2b544,SESCO,II.1.1,Buenos Aires,AR-B,annual,2013,gas oil combustion consumption by freight transport,30.6254256,TJ,N2O,3.9,kg/TJ,119.43915984,kg -9cb3d895-5cc5-3f1a-bfcb-ed4fc95a5589,SESCO,II.1.1,Capital Federal,AR-C,annual,2013,gas oil combustion consumption by freight transport,31.5988596,TJ,CO2,74100.0,kg/TJ,2341475.49636,kg -2d7b4d34-3668-3994-858f-0643f25d0d74,SESCO,II.1.1,Capital Federal,AR-C,annual,2013,gas oil combustion consumption by freight transport,31.5988596,TJ,CH4,3.9,kg/TJ,123.23555244,kg -2d7b4d34-3668-3994-858f-0643f25d0d74,SESCO,II.1.1,Capital Federal,AR-C,annual,2013,gas oil combustion consumption by freight transport,31.5988596,TJ,N2O,3.9,kg/TJ,123.23555244,kg -7319f218-2a71-3825-8301-47b5139528ca,SESCO,II.1.1,Chaco,AR-H,annual,2013,gas oil combustion consumption by freight transport,0.7901394479999999,TJ,CO2,74100.0,kg/TJ,58549.333096799994,kg -8ccada2b-6a40-33da-b73b-470b511a3cb8,SESCO,II.1.1,Chaco,AR-H,annual,2013,gas oil combustion consumption by freight transport,0.7901394479999999,TJ,CH4,3.9,kg/TJ,3.0815438471999994,kg -8ccada2b-6a40-33da-b73b-470b511a3cb8,SESCO,II.1.1,Chaco,AR-H,annual,2013,gas oil combustion consumption by freight transport,0.7901394479999999,TJ,N2O,3.9,kg/TJ,3.0815438471999994,kg -afff09b1-df9c-3352-ad70-6a9f7d3282f8,SESCO,II.1.1,Chubut,AR-U,annual,2013,gas oil combustion consumption by freight transport,0.082126044,TJ,CO2,74100.0,kg/TJ,6085.539860399999,kg -38bf3cae-168d-34a7-9627-9f094e139e15,SESCO,II.1.1,Chubut,AR-U,annual,2013,gas oil combustion consumption by freight transport,0.082126044,TJ,CH4,3.9,kg/TJ,0.3202915716,kg -38bf3cae-168d-34a7-9627-9f094e139e15,SESCO,II.1.1,Chubut,AR-U,annual,2013,gas oil combustion consumption by freight transport,0.082126044,TJ,N2O,3.9,kg/TJ,0.3202915716,kg -225859e8-2b79-30d2-9a76-3c9f21c77710,SESCO,II.1.1,Corrientes,AR-W,annual,2013,gas oil combustion consumption by freight transport,3.3368089440000004,TJ,CO2,74100.0,kg/TJ,247257.54275040003,kg -9a82e932-cf22-3501-a94f-e6edef1b369f,SESCO,II.1.1,Corrientes,AR-W,annual,2013,gas oil combustion consumption by freight transport,3.3368089440000004,TJ,CH4,3.9,kg/TJ,13.013554881600001,kg -9a82e932-cf22-3501-a94f-e6edef1b369f,SESCO,II.1.1,Corrientes,AR-W,annual,2013,gas oil combustion consumption by freight transport,3.3368089440000004,TJ,N2O,3.9,kg/TJ,13.013554881600001,kg -ba09887f-7d56-33f1-bbf9-e1b734588c2f,SESCO,II.1.1,Córdoba,AR-X,annual,2013,gas oil combustion consumption by freight transport,1.014491604,TJ,CO2,74100.0,kg/TJ,75173.8278564,kg -121209fe-8f46-3132-99f0-6030425937d0,SESCO,II.1.1,Córdoba,AR-X,annual,2013,gas oil combustion consumption by freight transport,1.014491604,TJ,CH4,3.9,kg/TJ,3.9565172556,kg -121209fe-8f46-3132-99f0-6030425937d0,SESCO,II.1.1,Córdoba,AR-X,annual,2013,gas oil combustion consumption by freight transport,1.014491604,TJ,N2O,3.9,kg/TJ,3.9565172556,kg -c7b1dfe5-1867-3017-88ce-695e5c60eb95,SESCO,II.1.1,Entre Rios,AR-E,annual,2013,gas oil combustion consumption by freight transport,1.165079496,TJ,CO2,74100.0,kg/TJ,86332.3906536,kg -047565dd-8700-3008-8469-ffd7aa74f384,SESCO,II.1.1,Entre Rios,AR-E,annual,2013,gas oil combustion consumption by freight transport,1.165079496,TJ,CH4,3.9,kg/TJ,4.5438100344,kg -047565dd-8700-3008-8469-ffd7aa74f384,SESCO,II.1.1,Entre Rios,AR-E,annual,2013,gas oil combustion consumption by freight transport,1.165079496,TJ,N2O,3.9,kg/TJ,4.5438100344,kg -68eacbf9-7c18-360d-bca6-f4f505514592,SESCO,II.1.1,Mendoza,AR-M,annual,2013,gas oil combustion consumption by freight transport,0.093196824,TJ,CO2,74100.0,kg/TJ,6905.8846584,kg -bba05668-2de3-3d3e-a60c-a1a990c56f8d,SESCO,II.1.1,Mendoza,AR-M,annual,2013,gas oil combustion consumption by freight transport,0.093196824,TJ,CH4,3.9,kg/TJ,0.36346761359999996,kg -bba05668-2de3-3d3e-a60c-a1a990c56f8d,SESCO,II.1.1,Mendoza,AR-M,annual,2013,gas oil combustion consumption by freight transport,0.093196824,TJ,N2O,3.9,kg/TJ,0.36346761359999996,kg -067b78dd-2263-30b2-953b-6fa1739fde5a,SESCO,II.1.1,Misiones,AR-N,annual,2013,gas oil combustion consumption by freight transport,0.146816964,TJ,CO2,74100.0,kg/TJ,10879.1370324,kg -1501406c-82a0-362b-b9ad-399094edd024,SESCO,II.1.1,Misiones,AR-N,annual,2013,gas oil combustion consumption by freight transport,0.146816964,TJ,CH4,3.9,kg/TJ,0.5725861595999999,kg -1501406c-82a0-362b-b9ad-399094edd024,SESCO,II.1.1,Misiones,AR-N,annual,2013,gas oil combustion consumption by freight transport,0.146816964,TJ,N2O,3.9,kg/TJ,0.5725861595999999,kg -709ef4fe-ff29-3122-b532-bab1b0073281,SESCO,II.1.1,San Juan,AR-J,annual,2013,gas oil combustion consumption by freight transport,0.006140400000000001,TJ,CO2,74100.0,kg/TJ,455.0036400000001,kg -342db8b8-d851-339a-8031-bcb90de38772,SESCO,II.1.1,San Juan,AR-J,annual,2013,gas oil combustion consumption by freight transport,0.006140400000000001,TJ,CH4,3.9,kg/TJ,0.023947560000000003,kg -342db8b8-d851-339a-8031-bcb90de38772,SESCO,II.1.1,San Juan,AR-J,annual,2013,gas oil combustion consumption by freight transport,0.006140400000000001,TJ,N2O,3.9,kg/TJ,0.023947560000000003,kg -6b0b69cf-1e6b-3e6c-8287-773ac7e11719,SESCO,II.1.1,San Luis,AR-D,annual,2013,gas oil combustion consumption by freight transport,0.2206932,TJ,CO2,74100.0,kg/TJ,16353.36612,kg -1777bd85-9327-31f5-8a7a-ae39cb7c2bbb,SESCO,II.1.1,San Luis,AR-D,annual,2013,gas oil combustion consumption by freight transport,0.2206932,TJ,CH4,3.9,kg/TJ,0.86070348,kg -1777bd85-9327-31f5-8a7a-ae39cb7c2bbb,SESCO,II.1.1,San Luis,AR-D,annual,2013,gas oil combustion consumption by freight transport,0.2206932,TJ,N2O,3.9,kg/TJ,0.86070348,kg -0f527012-d4fc-38e9-b4fe-3ebe955a70d4,SESCO,II.1.1,Santa Fe,AR-S,annual,2013,gas oil combustion consumption by freight transport,2.104383708,TJ,CO2,74100.0,kg/TJ,155934.83276279998,kg -d07433fc-5c9d-353b-bbf7-134994c25a81,SESCO,II.1.1,Santa Fe,AR-S,annual,2013,gas oil combustion consumption by freight transport,2.104383708,TJ,CH4,3.9,kg/TJ,8.207096461199999,kg -d07433fc-5c9d-353b-bbf7-134994c25a81,SESCO,II.1.1,Santa Fe,AR-S,annual,2013,gas oil combustion consumption by freight transport,2.104383708,TJ,N2O,3.9,kg/TJ,8.207096461199999,kg -e4c3aba3-2279-3ab8-be47-e57bd36fb4c2,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2013,gas oil combustion consumption by freight transport,0.014448,TJ,CO2,74100.0,kg/TJ,1070.5968,kg -c06235d0-0c64-3ef2-aa93-23ed81363b63,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2013,gas oil combustion consumption by freight transport,0.014448,TJ,CH4,3.9,kg/TJ,0.0563472,kg -c06235d0-0c64-3ef2-aa93-23ed81363b63,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2013,gas oil combustion consumption by freight transport,0.014448,TJ,N2O,3.9,kg/TJ,0.0563472,kg -988fe5f0-fece-34dc-b089-dc1c5cf7301a,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2013,gas oil combustion consumption by freight transport,0.235383204,TJ,CO2,74100.0,kg/TJ,17441.895416400002,kg -4f76f490-fefc-31e1-a90e-7a66bbab8fb7,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2013,gas oil combustion consumption by freight transport,0.235383204,TJ,CH4,3.9,kg/TJ,0.9179944956,kg -4f76f490-fefc-31e1-a90e-7a66bbab8fb7,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2013,gas oil combustion consumption by freight transport,0.235383204,TJ,N2O,3.9,kg/TJ,0.9179944956,kg -371af207-f454-3e2a-8ae4-199dfc920a95,SESCO,II.1.1,Tucuman,AR-T,annual,2013,gas oil combustion consumption by freight transport,0.253482936,TJ,CO2,74100.0,kg/TJ,18783.0855576,kg -0af17f1b-9322-3ea4-9559-66645657b7b6,SESCO,II.1.1,Tucuman,AR-T,annual,2013,gas oil combustion consumption by freight transport,0.253482936,TJ,CH4,3.9,kg/TJ,0.9885834504,kg -0af17f1b-9322-3ea4-9559-66645657b7b6,SESCO,II.1.1,Tucuman,AR-T,annual,2013,gas oil combustion consumption by freight transport,0.253482936,TJ,N2O,3.9,kg/TJ,0.9885834504,kg -c4890808-f558-3274-8697-bd48821e86af,SESCO,II.1.1,Buenos Aires,AR-B,annual,2013,gas oil combustion consumption by public passenger transport,1983.1216439999998,TJ,CO2,74100.0,kg/TJ,146949313.8204,kg -9cb0ffa0-1c2a-3101-a331-c40f02437ccd,SESCO,II.1.1,Buenos Aires,AR-B,annual,2013,gas oil combustion consumption by public passenger transport,1983.1216439999998,TJ,CH4,3.9,kg/TJ,7734.174411599999,kg -9cb0ffa0-1c2a-3101-a331-c40f02437ccd,SESCO,II.1.1,Buenos Aires,AR-B,annual,2013,gas oil combustion consumption by public passenger transport,1983.1216439999998,TJ,N2O,3.9,kg/TJ,7734.174411599999,kg -91a5f5e9-6f70-35c2-8e34-213a5aec5bc3,SESCO,II.1.1,Capital Federal,AR-C,annual,2013,gas oil combustion consumption by public passenger transport,485.0623428,TJ,CO2,74100.0,kg/TJ,35943119.60148,kg -e9a9dcb4-62d8-3982-a8e6-b000cfe90c1e,SESCO,II.1.1,Capital Federal,AR-C,annual,2013,gas oil combustion consumption by public passenger transport,485.0623428,TJ,CH4,3.9,kg/TJ,1891.74313692,kg -e9a9dcb4-62d8-3982-a8e6-b000cfe90c1e,SESCO,II.1.1,Capital Federal,AR-C,annual,2013,gas oil combustion consumption by public passenger transport,485.0623428,TJ,N2O,3.9,kg/TJ,1891.74313692,kg -17519f81-eb27-36a0-a2aa-3ad7bd6e2d39,SESCO,II.1.1,Chubut,AR-U,annual,2013,gas oil combustion consumption by public passenger transport,18.038328,TJ,CO2,74100.0,kg/TJ,1336640.1048,kg -01a6b590-f9e2-3665-87f3-5d5122e1eabf,SESCO,II.1.1,Chubut,AR-U,annual,2013,gas oil combustion consumption by public passenger transport,18.038328,TJ,CH4,3.9,kg/TJ,70.3494792,kg -01a6b590-f9e2-3665-87f3-5d5122e1eabf,SESCO,II.1.1,Chubut,AR-U,annual,2013,gas oil combustion consumption by public passenger transport,18.038328,TJ,N2O,3.9,kg/TJ,70.3494792,kg -6f8ac9ab-3d5c-3428-b263-cc6a1ef24ec2,SESCO,II.1.1,Córdoba,AR-X,annual,2013,gas oil combustion consumption by public passenger transport,35.844267144,TJ,CO2,74100.0,kg/TJ,2656060.1953704,kg -ce2fdb54-4c28-3302-9c0c-2a46035c0f88,SESCO,II.1.1,Córdoba,AR-X,annual,2013,gas oil combustion consumption by public passenger transport,35.844267144,TJ,CH4,3.9,kg/TJ,139.7926418616,kg -ce2fdb54-4c28-3302-9c0c-2a46035c0f88,SESCO,II.1.1,Córdoba,AR-X,annual,2013,gas oil combustion consumption by public passenger transport,35.844267144,TJ,N2O,3.9,kg/TJ,139.7926418616,kg -369dfc52-cc96-32d8-b248-46ab0bf06297,SESCO,II.1.1,Entre Rios,AR-E,annual,2013,gas oil combustion consumption by public passenger transport,63.225343776,TJ,CO2,74100.0,kg/TJ,4684997.9738016,kg -b8806e16-8f2c-39cb-8d3c-9265dd69a13a,SESCO,II.1.1,Entre Rios,AR-E,annual,2013,gas oil combustion consumption by public passenger transport,63.225343776,TJ,CH4,3.9,kg/TJ,246.57884072640002,kg -b8806e16-8f2c-39cb-8d3c-9265dd69a13a,SESCO,II.1.1,Entre Rios,AR-E,annual,2013,gas oil combustion consumption by public passenger transport,63.225343776,TJ,N2O,3.9,kg/TJ,246.57884072640002,kg -eaeb5740-6e57-3c0f-8856-262c8d11c9b2,SESCO,II.1.1,La Pampa,AR-L,annual,2013,gas oil combustion consumption by public passenger transport,7.744128,TJ,CO2,74100.0,kg/TJ,573839.8848,kg -be56b5bf-1a0e-38af-b8ec-8d6e2dcc20e5,SESCO,II.1.1,La Pampa,AR-L,annual,2013,gas oil combustion consumption by public passenger transport,7.744128,TJ,CH4,3.9,kg/TJ,30.2020992,kg -be56b5bf-1a0e-38af-b8ec-8d6e2dcc20e5,SESCO,II.1.1,La Pampa,AR-L,annual,2013,gas oil combustion consumption by public passenger transport,7.744128,TJ,N2O,3.9,kg/TJ,30.2020992,kg -13932fd8-10cf-3b65-b84d-b9f0330427cc,SESCO,II.1.1,Mendoza,AR-M,annual,2013,gas oil combustion consumption by public passenger transport,0.040454399999999995,TJ,CO2,74100.0,kg/TJ,2997.6710399999997,kg -3c9e07c1-5206-38a8-8ea2-e32cf8d3db63,SESCO,II.1.1,Mendoza,AR-M,annual,2013,gas oil combustion consumption by public passenger transport,0.040454399999999995,TJ,CH4,3.9,kg/TJ,0.15777215999999997,kg -3c9e07c1-5206-38a8-8ea2-e32cf8d3db63,SESCO,II.1.1,Mendoza,AR-M,annual,2013,gas oil combustion consumption by public passenger transport,0.040454399999999995,TJ,N2O,3.9,kg/TJ,0.15777215999999997,kg -a8af94bc-043c-3067-8327-b10ca11d2c08,SESCO,II.1.1,Misiones,AR-N,annual,2013,gas oil combustion consumption by public passenger transport,59.6771028,TJ,CO2,74100.0,kg/TJ,4422073.31748,kg -d31098a0-a339-3886-aa02-9846844acd36,SESCO,II.1.1,Misiones,AR-N,annual,2013,gas oil combustion consumption by public passenger transport,59.6771028,TJ,CH4,3.9,kg/TJ,232.74070092,kg -d31098a0-a339-3886-aa02-9846844acd36,SESCO,II.1.1,Misiones,AR-N,annual,2013,gas oil combustion consumption by public passenger transport,59.6771028,TJ,N2O,3.9,kg/TJ,232.74070092,kg -0840c162-7be7-378e-9ce3-4cffa58f702e,SESCO,II.1.1,Rio Negro,AR-R,annual,2013,gas oil combustion consumption by public passenger transport,43.322714483999995,TJ,CO2,74100.0,kg/TJ,3210213.1432644,kg -ed369790-2f8a-33c6-b947-4e571beb5632,SESCO,II.1.1,Rio Negro,AR-R,annual,2013,gas oil combustion consumption by public passenger transport,43.322714483999995,TJ,CH4,3.9,kg/TJ,168.95858648759997,kg -ed369790-2f8a-33c6-b947-4e571beb5632,SESCO,II.1.1,Rio Negro,AR-R,annual,2013,gas oil combustion consumption by public passenger transport,43.322714483999995,TJ,N2O,3.9,kg/TJ,168.95858648759997,kg -2c3df3da-65ea-3c15-9d34-2849ec41542d,SESCO,II.1.1,San Juan,AR-J,annual,2013,gas oil combustion consumption by public passenger transport,15.740016012,TJ,CO2,74100.0,kg/TJ,1166335.1864892,kg -b48e142d-1920-32d4-a059-bf6d4d627ece,SESCO,II.1.1,San Juan,AR-J,annual,2013,gas oil combustion consumption by public passenger transport,15.740016012,TJ,CH4,3.9,kg/TJ,61.3860624468,kg -b48e142d-1920-32d4-a059-bf6d4d627ece,SESCO,II.1.1,San Juan,AR-J,annual,2013,gas oil combustion consumption by public passenger transport,15.740016012,TJ,N2O,3.9,kg/TJ,61.3860624468,kg -9f0c627a-437a-3fdb-8be3-8cb0646319de,SESCO,II.1.1,San Luis,AR-D,annual,2013,gas oil combustion consumption by public passenger transport,19.620384,TJ,CO2,74100.0,kg/TJ,1453870.4544000002,kg -acbd79da-be37-3822-8c0e-3baf4c7ca9ef,SESCO,II.1.1,San Luis,AR-D,annual,2013,gas oil combustion consumption by public passenger transport,19.620384,TJ,CH4,3.9,kg/TJ,76.51949760000001,kg -acbd79da-be37-3822-8c0e-3baf4c7ca9ef,SESCO,II.1.1,San Luis,AR-D,annual,2013,gas oil combustion consumption by public passenger transport,19.620384,TJ,N2O,3.9,kg/TJ,76.51949760000001,kg -db97c534-19ff-36c7-8ca3-73a0e3a871f4,SESCO,II.1.1,Santa Fe,AR-S,annual,2013,gas oil combustion consumption by public passenger transport,83.306557572,TJ,CO2,74100.0,kg/TJ,6173015.9160852,kg -0a9c342e-1e77-3328-92bf-ce7bf76518b2,SESCO,II.1.1,Santa Fe,AR-S,annual,2013,gas oil combustion consumption by public passenger transport,83.306557572,TJ,CH4,3.9,kg/TJ,324.8955745308,kg -0a9c342e-1e77-3328-92bf-ce7bf76518b2,SESCO,II.1.1,Santa Fe,AR-S,annual,2013,gas oil combustion consumption by public passenger transport,83.306557572,TJ,N2O,3.9,kg/TJ,324.8955745308,kg -5aad6e30-e302-37a7-b173-ae2364bb0249,SESCO,II.1.1,Buenos Aires,AR-B,annual,2013,gas oil combustion consumption by public passenger transport,1.4401044,TJ,CO2,74100.0,kg/TJ,106711.73604,kg -c5ed194f-c196-3779-b021-fcbfd57249c9,SESCO,II.1.1,Buenos Aires,AR-B,annual,2013,gas oil combustion consumption by public passenger transport,1.4401044,TJ,CH4,3.9,kg/TJ,5.6164071600000005,kg -c5ed194f-c196-3779-b021-fcbfd57249c9,SESCO,II.1.1,Buenos Aires,AR-B,annual,2013,gas oil combustion consumption by public passenger transport,1.4401044,TJ,N2O,3.9,kg/TJ,5.6164071600000005,kg -161437c3-0eeb-3f5d-8207-158c129a5aca,SESCO,II.1.1,Capital Federal,AR-C,annual,2013,gas oil combustion consumption by public passenger transport,12.127651199999999,TJ,CO2,74100.0,kg/TJ,898658.9539199999,kg -652afed7-b7f1-343d-9a1c-86f202881d88,SESCO,II.1.1,Capital Federal,AR-C,annual,2013,gas oil combustion consumption by public passenger transport,12.127651199999999,TJ,CH4,3.9,kg/TJ,47.297839679999996,kg -652afed7-b7f1-343d-9a1c-86f202881d88,SESCO,II.1.1,Capital Federal,AR-C,annual,2013,gas oil combustion consumption by public passenger transport,12.127651199999999,TJ,N2O,3.9,kg/TJ,47.297839679999996,kg -8acd2a01-c194-3b52-9bd1-e0817713c408,SESCO,II.1.1,Chaco,AR-H,annual,2013,gas oil combustion consumption by public passenger transport,0.07693559999999999,TJ,CO2,74100.0,kg/TJ,5700.927959999999,kg -7dacf16f-0d52-33b1-8027-56133b3e21d4,SESCO,II.1.1,Chaco,AR-H,annual,2013,gas oil combustion consumption by public passenger transport,0.07693559999999999,TJ,CH4,3.9,kg/TJ,0.30004884,kg -7dacf16f-0d52-33b1-8027-56133b3e21d4,SESCO,II.1.1,Chaco,AR-H,annual,2013,gas oil combustion consumption by public passenger transport,0.07693559999999999,TJ,N2O,3.9,kg/TJ,0.30004884,kg -0858a22a-5867-31da-b9ec-46aa06f3c34b,SESCO,II.1.1,Córdoba,AR-X,annual,2013,gas oil combustion consumption by public passenger transport,0.201885516,TJ,CO2,74100.0,kg/TJ,14959.716735599999,kg -d569d17a-b4b5-37e9-9819-110dffbe3ca5,SESCO,II.1.1,Córdoba,AR-X,annual,2013,gas oil combustion consumption by public passenger transport,0.201885516,TJ,CH4,3.9,kg/TJ,0.7873535124,kg -d569d17a-b4b5-37e9-9819-110dffbe3ca5,SESCO,II.1.1,Córdoba,AR-X,annual,2013,gas oil combustion consumption by public passenger transport,0.201885516,TJ,N2O,3.9,kg/TJ,0.7873535124,kg -1938dab7-4fac-320f-880a-00beedec847a,SESCO,II.1.1,Entre Rios,AR-E,annual,2013,gas oil combustion consumption by public passenger transport,0.42387542399999995,TJ,CO2,74100.0,kg/TJ,31409.168918399995,kg -69b1628c-3547-35fd-97d5-81438562dcc5,SESCO,II.1.1,Entre Rios,AR-E,annual,2013,gas oil combustion consumption by public passenger transport,0.42387542399999995,TJ,CH4,3.9,kg/TJ,1.6531141535999998,kg -69b1628c-3547-35fd-97d5-81438562dcc5,SESCO,II.1.1,Entre Rios,AR-E,annual,2013,gas oil combustion consumption by public passenger transport,0.42387542399999995,TJ,N2O,3.9,kg/TJ,1.6531141535999998,kg -fd52f168-f5f1-3998-b112-1e54114d431c,SESCO,II.1.1,Misiones,AR-N,annual,2013,gas oil combustion consumption by public passenger transport,0.0390096,TJ,CO2,74100.0,kg/TJ,2890.61136,kg -364a4a1f-ae88-3f5d-9270-6284f710a2c5,SESCO,II.1.1,Misiones,AR-N,annual,2013,gas oil combustion consumption by public passenger transport,0.0390096,TJ,CH4,3.9,kg/TJ,0.15213743999999998,kg -364a4a1f-ae88-3f5d-9270-6284f710a2c5,SESCO,II.1.1,Misiones,AR-N,annual,2013,gas oil combustion consumption by public passenger transport,0.0390096,TJ,N2O,3.9,kg/TJ,0.15213743999999998,kg -2fd5ce45-753a-376a-b7bd-dbeb45eaac2b,SESCO,II.1.1,Santa Fe,AR-S,annual,2013,gas oil combustion consumption by public passenger transport,0.10619279999999999,TJ,CO2,74100.0,kg/TJ,7868.886479999999,kg -7c90c772-7054-3308-8290-ce8c5a9c971b,SESCO,II.1.1,Santa Fe,AR-S,annual,2013,gas oil combustion consumption by public passenger transport,0.10619279999999999,TJ,CH4,3.9,kg/TJ,0.41415191999999995,kg -7c90c772-7054-3308-8290-ce8c5a9c971b,SESCO,II.1.1,Santa Fe,AR-S,annual,2013,gas oil combustion consumption by public passenger transport,0.10619279999999999,TJ,N2O,3.9,kg/TJ,0.41415191999999995,kg -6830ab01-d902-36f0-b092-4e2c4b3b718b,SESCO,I.3.1,Córdoba,AR-X,annual,2013,gasoline combustion consumption by petrochemical industries,28.086643,TJ,CO2,69300.0,kg/TJ,1946404.3598999998,kg -3135470e-22f3-36a4-be45-c58051c3e4a4,SESCO,I.3.1,Córdoba,AR-X,annual,2013,gasoline combustion consumption by petrochemical industries,28.086643,TJ,CH4,33.0,kg/TJ,926.8592189999999,kg -842238fc-6fd2-345c-b526-c233c00c7cca,SESCO,I.3.1,Córdoba,AR-X,annual,2013,gasoline combustion consumption by petrochemical industries,28.086643,TJ,N2O,3.2,kg/TJ,89.87725760000001,kg -ef0ee8c3-5366-3c3d-b4dd-75f04e013095,SESCO,II.5.1,Buenos Aires,AR-B,annual,2013,gas oil combustion consumption by agriculture machines,410.110532664,TJ,CO2,74100.0,kg/TJ,30389190.4704024,kg -b913d0d8-418a-3495-8c1f-b808442cffae,SESCO,II.5.1,Buenos Aires,AR-B,annual,2013,gas oil combustion consumption by agriculture machines,410.110532664,TJ,CH4,3.9,kg/TJ,1599.4310773896,kg -b913d0d8-418a-3495-8c1f-b808442cffae,SESCO,II.5.1,Buenos Aires,AR-B,annual,2013,gas oil combustion consumption by agriculture machines,410.110532664,TJ,N2O,3.9,kg/TJ,1599.4310773896,kg -e5fdc642-1a5d-3cd4-8e37-f1e363f02b52,SESCO,II.5.1,Córdoba,AR-X,annual,2013,gas oil combustion consumption by agriculture machines,588.755646024,TJ,CO2,74100.0,kg/TJ,43626793.370378405,kg -cbc1dccb-f8e9-37ee-8381-0d041b4e32e4,SESCO,II.5.1,Córdoba,AR-X,annual,2013,gas oil combustion consumption by agriculture machines,588.755646024,TJ,CH4,3.9,kg/TJ,2296.1470194936,kg -cbc1dccb-f8e9-37ee-8381-0d041b4e32e4,SESCO,II.5.1,Córdoba,AR-X,annual,2013,gas oil combustion consumption by agriculture machines,588.755646024,TJ,N2O,3.9,kg/TJ,2296.1470194936,kg -5bfdf9d1-107f-3ca9-bd28-71560b6d18c8,SESCO,II.5.1,Entre Rios,AR-E,annual,2013,gas oil combustion consumption by agriculture machines,530.895924636,TJ,CO2,74100.0,kg/TJ,39339388.0155276,kg -18783b1b-0cf1-3ac0-91a1-7a9032497081,SESCO,II.5.1,Entre Rios,AR-E,annual,2013,gas oil combustion consumption by agriculture machines,530.895924636,TJ,CH4,3.9,kg/TJ,2070.4941060804,kg -18783b1b-0cf1-3ac0-91a1-7a9032497081,SESCO,II.5.1,Entre Rios,AR-E,annual,2013,gas oil combustion consumption by agriculture machines,530.895924636,TJ,N2O,3.9,kg/TJ,2070.4941060804,kg -2b0d54c5-338b-3b5b-a6e6-1b9eadb0b54b,SESCO,II.5.1,Santa Fe,AR-S,annual,2013,gas oil combustion consumption by agriculture machines,713.868860544,TJ,CO2,74100.0,kg/TJ,52897682.5663104,kg -d7fdede1-d08d-3c18-9c88-38f4fdd68e99,SESCO,II.5.1,Santa Fe,AR-S,annual,2013,gas oil combustion consumption by agriculture machines,713.868860544,TJ,CH4,3.9,kg/TJ,2784.0885561216,kg -d7fdede1-d08d-3c18-9c88-38f4fdd68e99,SESCO,II.5.1,Santa Fe,AR-S,annual,2013,gas oil combustion consumption by agriculture machines,713.868860544,TJ,N2O,3.9,kg/TJ,2784.0885561216,kg -c2e95df4-61cb-3c39-9257-585d04296336,SESCO,II.5.1,Santiago del Estero,AR-G,annual,2013,gas oil combustion consumption by agriculture machines,145.695434388,TJ,CO2,74100.0,kg/TJ,10796031.688150799,kg -eda89051-e10d-3705-99d6-8a631b55d4e3,SESCO,II.5.1,Santiago del Estero,AR-G,annual,2013,gas oil combustion consumption by agriculture machines,145.695434388,TJ,CH4,3.9,kg/TJ,568.2121941132,kg -eda89051-e10d-3705-99d6-8a631b55d4e3,SESCO,II.5.1,Santiago del Estero,AR-G,annual,2013,gas oil combustion consumption by agriculture machines,145.695434388,TJ,N2O,3.9,kg/TJ,568.2121941132,kg -e345bc0a-9021-3bab-a3f9-37234835eb90,SESCO,II.1.1,Buenos Aires,AR-B,annual,2013,gas oil combustion consumption by to the public,4048.46597106,TJ,CO2,74100.0,kg/TJ,299991328.455546,kg -c63490e0-8819-3c13-8bfb-683299011f92,SESCO,II.1.1,Buenos Aires,AR-B,annual,2013,gas oil combustion consumption by to the public,4048.46597106,TJ,CH4,3.9,kg/TJ,15789.017287134,kg -c63490e0-8819-3c13-8bfb-683299011f92,SESCO,II.1.1,Buenos Aires,AR-B,annual,2013,gas oil combustion consumption by to the public,4048.46597106,TJ,N2O,3.9,kg/TJ,15789.017287134,kg -7fefdaa4-6e6b-38c5-9547-0626e594d822,SESCO,II.1.1,Capital Federal,AR-C,annual,2013,gas oil combustion consumption by to the public,411.406641072,TJ,CO2,74100.0,kg/TJ,30485232.1034352,kg -d7a2136b-40cd-3927-be99-bbca18e25289,SESCO,II.1.1,Capital Federal,AR-C,annual,2013,gas oil combustion consumption by to the public,411.406641072,TJ,CH4,3.9,kg/TJ,1604.4859001808,kg -d7a2136b-40cd-3927-be99-bbca18e25289,SESCO,II.1.1,Capital Federal,AR-C,annual,2013,gas oil combustion consumption by to the public,411.406641072,TJ,N2O,3.9,kg/TJ,1604.4859001808,kg -2962cb85-156b-3259-8acd-a0ecaa0c8b23,SESCO,II.1.1,Catamarca,AR-K,annual,2013,gas oil combustion consumption by to the public,151.53273340799998,TJ,CO2,74100.0,kg/TJ,11228575.545532798,kg -345d7a37-1277-3b01-ad52-18423244ea67,SESCO,II.1.1,Catamarca,AR-K,annual,2013,gas oil combustion consumption by to the public,151.53273340799998,TJ,CH4,3.9,kg/TJ,590.9776602912,kg -345d7a37-1277-3b01-ad52-18423244ea67,SESCO,II.1.1,Catamarca,AR-K,annual,2013,gas oil combustion consumption by to the public,151.53273340799998,TJ,N2O,3.9,kg/TJ,590.9776602912,kg -b6a8b948-000b-348d-aa73-da2e01396378,SESCO,II.1.1,Chaco,AR-H,annual,2013,gas oil combustion consumption by to the public,577.2203556000001,TJ,CO2,74100.0,kg/TJ,42772028.34996001,kg -ec9d94fc-0d90-35e3-b17b-52ee1f77274c,SESCO,II.1.1,Chaco,AR-H,annual,2013,gas oil combustion consumption by to the public,577.2203556000001,TJ,CH4,3.9,kg/TJ,2251.15938684,kg -ec9d94fc-0d90-35e3-b17b-52ee1f77274c,SESCO,II.1.1,Chaco,AR-H,annual,2013,gas oil combustion consumption by to the public,577.2203556000001,TJ,N2O,3.9,kg/TJ,2251.15938684,kg -c27bea69-ec64-33b5-a7f6-2ba738666abc,SESCO,II.1.1,Corrientes,AR-W,annual,2013,gas oil combustion consumption by to the public,872.8407030000001,TJ,CO2,74100.0,kg/TJ,64677496.092300005,kg -bb59ac9f-b994-3897-8411-26f72e74e7df,SESCO,II.1.1,Corrientes,AR-W,annual,2013,gas oil combustion consumption by to the public,872.8407030000001,TJ,CH4,3.9,kg/TJ,3404.0787417,kg -bb59ac9f-b994-3897-8411-26f72e74e7df,SESCO,II.1.1,Corrientes,AR-W,annual,2013,gas oil combustion consumption by to the public,872.8407030000001,TJ,N2O,3.9,kg/TJ,3404.0787417,kg -c10c18b3-c3e6-38b2-90bb-64d20c7949f3,SESCO,II.1.1,Córdoba,AR-X,annual,2013,gas oil combustion consumption by to the public,2049.49696602,TJ,CO2,74100.0,kg/TJ,151867725.182082,kg -3f303f2d-c1b9-31c1-b436-f8f88325017a,SESCO,II.1.1,Córdoba,AR-X,annual,2013,gas oil combustion consumption by to the public,2049.49696602,TJ,CH4,3.9,kg/TJ,7993.038167477999,kg -3f303f2d-c1b9-31c1-b436-f8f88325017a,SESCO,II.1.1,Córdoba,AR-X,annual,2013,gas oil combustion consumption by to the public,2049.49696602,TJ,N2O,3.9,kg/TJ,7993.038167477999,kg -8330424d-17f8-3de1-87d6-b076fd99c6b3,SESCO,II.1.1,Entre Rios,AR-E,annual,2013,gas oil combustion consumption by to the public,1266.4127581559999,TJ,CO2,74100.0,kg/TJ,93841185.37935959,kg -de271c3d-00f1-32d2-89d2-2970a48528b3,SESCO,II.1.1,Entre Rios,AR-E,annual,2013,gas oil combustion consumption by to the public,1266.4127581559999,TJ,CH4,3.9,kg/TJ,4939.009756808399,kg -de271c3d-00f1-32d2-89d2-2970a48528b3,SESCO,II.1.1,Entre Rios,AR-E,annual,2013,gas oil combustion consumption by to the public,1266.4127581559999,TJ,N2O,3.9,kg/TJ,4939.009756808399,kg -7892b801-965f-3822-bc9b-9989387596de,SESCO,II.1.1,Formosa,AR-P,annual,2013,gas oil combustion consumption by to the public,23.329189212,TJ,CO2,74100.0,kg/TJ,1728692.9206092,kg -c386bb2d-91d7-3f16-a961-bff23d6fa128,SESCO,II.1.1,Formosa,AR-P,annual,2013,gas oil combustion consumption by to the public,23.329189212,TJ,CH4,3.9,kg/TJ,90.98383792679999,kg -c386bb2d-91d7-3f16-a961-bff23d6fa128,SESCO,II.1.1,Formosa,AR-P,annual,2013,gas oil combustion consumption by to the public,23.329189212,TJ,N2O,3.9,kg/TJ,90.98383792679999,kg -53b46d05-d253-33e8-a4f5-7ed044efe18c,SESCO,II.1.1,Jujuy,AR-Y,annual,2013,gas oil combustion consumption by to the public,30.529295831999995,TJ,CO2,74100.0,kg/TJ,2262220.8211511998,kg -35a54987-0bfb-37d9-a55c-4ed061fd05ac,SESCO,II.1.1,Jujuy,AR-Y,annual,2013,gas oil combustion consumption by to the public,30.529295831999995,TJ,CH4,3.9,kg/TJ,119.06425374479998,kg -35a54987-0bfb-37d9-a55c-4ed061fd05ac,SESCO,II.1.1,Jujuy,AR-Y,annual,2013,gas oil combustion consumption by to the public,30.529295831999995,TJ,N2O,3.9,kg/TJ,119.06425374479998,kg -ca2bfcea-17d3-3ffa-8767-063dc0957e75,SESCO,II.1.1,La Pampa,AR-L,annual,2013,gas oil combustion consumption by to the public,99.38439672,TJ,CO2,74100.0,kg/TJ,7364383.796952,kg -868d67bb-c789-31e0-881a-b93d736a192c,SESCO,II.1.1,La Pampa,AR-L,annual,2013,gas oil combustion consumption by to the public,99.38439672,TJ,CH4,3.9,kg/TJ,387.599147208,kg -868d67bb-c789-31e0-881a-b93d736a192c,SESCO,II.1.1,La Pampa,AR-L,annual,2013,gas oil combustion consumption by to the public,99.38439672,TJ,N2O,3.9,kg/TJ,387.599147208,kg -ef8dcbdb-734d-315d-a64c-ad9d2cf70fac,SESCO,II.1.1,La Rioja,AR-F,annual,2013,gas oil combustion consumption by to the public,68.696313756,TJ,CO2,74100.0,kg/TJ,5090396.8493196,kg -f1d3f7c8-c662-3f40-88ba-6b15d7df9454,SESCO,II.1.1,La Rioja,AR-F,annual,2013,gas oil combustion consumption by to the public,68.696313756,TJ,CH4,3.9,kg/TJ,267.91562364839996,kg -f1d3f7c8-c662-3f40-88ba-6b15d7df9454,SESCO,II.1.1,La Rioja,AR-F,annual,2013,gas oil combustion consumption by to the public,68.696313756,TJ,N2O,3.9,kg/TJ,267.91562364839996,kg -8ad0d531-5740-3e7d-b056-37ec2256bbde,SESCO,II.1.1,Mendoza,AR-M,annual,2013,gas oil combustion consumption by to the public,516.418793856,TJ,CO2,74100.0,kg/TJ,38266632.624729596,kg -848001b4-b973-3334-86da-10da843ddeb3,SESCO,II.1.1,Mendoza,AR-M,annual,2013,gas oil combustion consumption by to the public,516.418793856,TJ,CH4,3.9,kg/TJ,2014.0332960383998,kg -848001b4-b973-3334-86da-10da843ddeb3,SESCO,II.1.1,Mendoza,AR-M,annual,2013,gas oil combustion consumption by to the public,516.418793856,TJ,N2O,3.9,kg/TJ,2014.0332960383998,kg -db910a47-fc3f-3a2e-8b6b-c002239b88fa,SESCO,II.1.1,Misiones,AR-N,annual,2013,gas oil combustion consumption by to the public,308.831446896,TJ,CO2,74100.0,kg/TJ,22884410.2149936,kg -02fdd54c-7acf-3abe-bb73-63acc8396f3e,SESCO,II.1.1,Misiones,AR-N,annual,2013,gas oil combustion consumption by to the public,308.831446896,TJ,CH4,3.9,kg/TJ,1204.4426428944,kg -02fdd54c-7acf-3abe-bb73-63acc8396f3e,SESCO,II.1.1,Misiones,AR-N,annual,2013,gas oil combustion consumption by to the public,308.831446896,TJ,N2O,3.9,kg/TJ,1204.4426428944,kg -b938db98-a837-3903-8545-0d6ad1c2c25a,SESCO,II.1.1,Rio Negro,AR-R,annual,2013,gas oil combustion consumption by to the public,5.28365166,TJ,CO2,74100.0,kg/TJ,391518.58800600003,kg -83900e6f-648c-381f-b7bc-1f9bebf16edb,SESCO,II.1.1,Rio Negro,AR-R,annual,2013,gas oil combustion consumption by to the public,5.28365166,TJ,CH4,3.9,kg/TJ,20.606241474,kg -83900e6f-648c-381f-b7bc-1f9bebf16edb,SESCO,II.1.1,Rio Negro,AR-R,annual,2013,gas oil combustion consumption by to the public,5.28365166,TJ,N2O,3.9,kg/TJ,20.606241474,kg -c69fc8d7-6a00-315e-a8c0-3fb4c6190a01,SESCO,II.1.1,Salta,AR-A,annual,2013,gas oil combustion consumption by to the public,1.2554409,TJ,CO2,74100.0,kg/TJ,93028.17069,kg -4f4270d7-4128-3a3b-bccc-8163328957e6,SESCO,II.1.1,Salta,AR-A,annual,2013,gas oil combustion consumption by to the public,1.2554409,TJ,CH4,3.9,kg/TJ,4.89621951,kg -4f4270d7-4128-3a3b-bccc-8163328957e6,SESCO,II.1.1,Salta,AR-A,annual,2013,gas oil combustion consumption by to the public,1.2554409,TJ,N2O,3.9,kg/TJ,4.89621951,kg -ca221923-f616-3e7e-9c5f-9e7a047d7f4d,SESCO,II.1.1,San Juan,AR-J,annual,2013,gas oil combustion consumption by to the public,436.130372916,TJ,CO2,74100.0,kg/TJ,32317260.6330756,kg -62805d37-7e3d-3611-8209-3c97da5a9a6a,SESCO,II.1.1,San Juan,AR-J,annual,2013,gas oil combustion consumption by to the public,436.130372916,TJ,CH4,3.9,kg/TJ,1700.9084543724,kg -62805d37-7e3d-3611-8209-3c97da5a9a6a,SESCO,II.1.1,San Juan,AR-J,annual,2013,gas oil combustion consumption by to the public,436.130372916,TJ,N2O,3.9,kg/TJ,1700.9084543724,kg -5bda5a10-2a50-332b-a416-40ba00fb8bb0,SESCO,II.1.1,San Luis,AR-D,annual,2013,gas oil combustion consumption by to the public,242.713653252,TJ,CO2,74100.0,kg/TJ,17985081.7059732,kg -8e8e5faf-46a2-32f8-af58-bf3933436bff,SESCO,II.1.1,San Luis,AR-D,annual,2013,gas oil combustion consumption by to the public,242.713653252,TJ,CH4,3.9,kg/TJ,946.5832476828,kg -8e8e5faf-46a2-32f8-af58-bf3933436bff,SESCO,II.1.1,San Luis,AR-D,annual,2013,gas oil combustion consumption by to the public,242.713653252,TJ,N2O,3.9,kg/TJ,946.5832476828,kg -b56da935-188c-36e3-b922-0ddc36e0ba4c,SESCO,II.1.1,Santa Fe,AR-S,annual,2013,gas oil combustion consumption by to the public,3896.6838146040004,TJ,CO2,74100.0,kg/TJ,288744270.6621564,kg -47868d41-4b69-34c5-9ec8-b0aff810e921,SESCO,II.1.1,Santa Fe,AR-S,annual,2013,gas oil combustion consumption by to the public,3896.6838146040004,TJ,CH4,3.9,kg/TJ,15197.066876955601,kg -47868d41-4b69-34c5-9ec8-b0aff810e921,SESCO,II.1.1,Santa Fe,AR-S,annual,2013,gas oil combustion consumption by to the public,3896.6838146040004,TJ,N2O,3.9,kg/TJ,15197.066876955601,kg -1fbb2f0f-2206-362c-b8e0-2c86334da6c3,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2013,gas oil combustion consumption by to the public,198.622680816,TJ,CO2,74100.0,kg/TJ,14717940.648465602,kg -0f4c2e47-7976-3e01-969a-0cb43b5dc994,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2013,gas oil combustion consumption by to the public,198.622680816,TJ,CH4,3.9,kg/TJ,774.6284551824,kg -0f4c2e47-7976-3e01-969a-0cb43b5dc994,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2013,gas oil combustion consumption by to the public,198.622680816,TJ,N2O,3.9,kg/TJ,774.6284551824,kg -c4c22984-e5f4-3eba-be37-e2f35c18f570,SESCO,II.1.1,Tucuman,AR-T,annual,2013,gas oil combustion consumption by to the public,460.78998814799996,TJ,CO2,74100.0,kg/TJ,34144538.1217668,kg -6e28dbcb-4d1b-3ec2-a05e-298e42a184c2,SESCO,II.1.1,Tucuman,AR-T,annual,2013,gas oil combustion consumption by to the public,460.78998814799996,TJ,CH4,3.9,kg/TJ,1797.0809537771997,kg -6e28dbcb-4d1b-3ec2-a05e-298e42a184c2,SESCO,II.1.1,Tucuman,AR-T,annual,2013,gas oil combustion consumption by to the public,460.78998814799996,TJ,N2O,3.9,kg/TJ,1797.0809537771997,kg -8c49abda-bf8c-38be-b529-cfe290742d69,SESCO,II.1.1,Buenos Aires,AR-B,annual,2013,gas oil combustion consumption by to the public,57.996706488,TJ,CO2,74100.0,kg/TJ,4297555.9507608,kg -cb140fa0-d52e-3c4f-953d-97dc50764f2d,SESCO,II.1.1,Buenos Aires,AR-B,annual,2013,gas oil combustion consumption by to the public,57.996706488,TJ,CH4,3.9,kg/TJ,226.1871553032,kg -cb140fa0-d52e-3c4f-953d-97dc50764f2d,SESCO,II.1.1,Buenos Aires,AR-B,annual,2013,gas oil combustion consumption by to the public,57.996706488,TJ,N2O,3.9,kg/TJ,226.1871553032,kg -c1f15bc0-949d-3785-bedd-a37b8335fab1,SESCO,II.1.1,Capital Federal,AR-C,annual,2013,gas oil combustion consumption by to the public,1.2508608840000002,TJ,CO2,74100.0,kg/TJ,92688.79150440001,kg -ae50dbd0-5f74-3d3f-badc-98597aedf7d5,SESCO,II.1.1,Capital Federal,AR-C,annual,2013,gas oil combustion consumption by to the public,1.2508608840000002,TJ,CH4,3.9,kg/TJ,4.878357447600001,kg -ae50dbd0-5f74-3d3f-badc-98597aedf7d5,SESCO,II.1.1,Capital Federal,AR-C,annual,2013,gas oil combustion consumption by to the public,1.2508608840000002,TJ,N2O,3.9,kg/TJ,4.878357447600001,kg -f4efe4bd-a526-3953-955d-b8244503702d,SESCO,II.1.1,Corrientes,AR-W,annual,2013,gas oil combustion consumption by to the public,1.104004188,TJ,CO2,74100.0,kg/TJ,81806.7103308,kg -c798540e-15ed-3dce-a0c2-8a8c15fce4a0,SESCO,II.1.1,Corrientes,AR-W,annual,2013,gas oil combustion consumption by to the public,1.104004188,TJ,CH4,3.9,kg/TJ,4.3056163332,kg -c798540e-15ed-3dce-a0c2-8a8c15fce4a0,SESCO,II.1.1,Corrientes,AR-W,annual,2013,gas oil combustion consumption by to the public,1.104004188,TJ,N2O,3.9,kg/TJ,4.3056163332,kg -bf67b487-ae4a-3866-a0bf-0bfe6197ebb6,SESCO,II.1.1,Córdoba,AR-X,annual,2013,gas oil combustion consumption by to the public,22.584929388,TJ,CO2,74100.0,kg/TJ,1673543.2676507998,kg -ea9d1826-0693-3134-b5c8-884210dd9742,SESCO,II.1.1,Córdoba,AR-X,annual,2013,gas oil combustion consumption by to the public,22.584929388,TJ,CH4,3.9,kg/TJ,88.08122461319999,kg -ea9d1826-0693-3134-b5c8-884210dd9742,SESCO,II.1.1,Córdoba,AR-X,annual,2013,gas oil combustion consumption by to the public,22.584929388,TJ,N2O,3.9,kg/TJ,88.08122461319999,kg -fa0a7ab8-81d9-3279-b570-ec5296213463,SESCO,II.1.1,Entre Rios,AR-E,annual,2013,gas oil combustion consumption by to the public,22.786045548,TJ,CO2,74100.0,kg/TJ,1688445.9751068,kg -15055bd3-5637-35d3-bf88-9192cac4d4ca,SESCO,II.1.1,Entre Rios,AR-E,annual,2013,gas oil combustion consumption by to the public,22.786045548,TJ,CH4,3.9,kg/TJ,88.8655776372,kg -15055bd3-5637-35d3-bf88-9192cac4d4ca,SESCO,II.1.1,Entre Rios,AR-E,annual,2013,gas oil combustion consumption by to the public,22.786045548,TJ,N2O,3.9,kg/TJ,88.8655776372,kg -529aa6ab-e2d8-3198-96d0-a929c09abf38,SESCO,II.1.1,Mendoza,AR-M,annual,2013,gas oil combustion consumption by to the public,16.605191148,TJ,CO2,74100.0,kg/TJ,1230444.6640668,kg -148f7a96-d894-39ba-84a2-c680928287c1,SESCO,II.1.1,Mendoza,AR-M,annual,2013,gas oil combustion consumption by to the public,16.605191148,TJ,CH4,3.9,kg/TJ,64.7602454772,kg -148f7a96-d894-39ba-84a2-c680928287c1,SESCO,II.1.1,Mendoza,AR-M,annual,2013,gas oil combustion consumption by to the public,16.605191148,TJ,N2O,3.9,kg/TJ,64.7602454772,kg -a48ff07f-d7bc-363b-a513-6186812a0e6c,SESCO,II.1.1,Misiones,AR-N,annual,2013,gas oil combustion consumption by to the public,16.063387536,TJ,CO2,74100.0,kg/TJ,1190297.0164176,kg -08cd030c-f3d4-3bc2-a321-6fc0b36efd3c,SESCO,II.1.1,Misiones,AR-N,annual,2013,gas oil combustion consumption by to the public,16.063387536,TJ,CH4,3.9,kg/TJ,62.6472113904,kg -08cd030c-f3d4-3bc2-a321-6fc0b36efd3c,SESCO,II.1.1,Misiones,AR-N,annual,2013,gas oil combustion consumption by to the public,16.063387536,TJ,N2O,3.9,kg/TJ,62.6472113904,kg -95ef1b66-f7c0-3b19-b60d-e94c7e276750,SESCO,II.1.1,San Luis,AR-D,annual,2013,gas oil combustion consumption by to the public,9.549084132,TJ,CO2,74100.0,kg/TJ,707587.1341812001,kg -65ac39bf-62a6-3dc3-a1f0-a11b472db088,SESCO,II.1.1,San Luis,AR-D,annual,2013,gas oil combustion consumption by to the public,9.549084132,TJ,CH4,3.9,kg/TJ,37.2414281148,kg -65ac39bf-62a6-3dc3-a1f0-a11b472db088,SESCO,II.1.1,San Luis,AR-D,annual,2013,gas oil combustion consumption by to the public,9.549084132,TJ,N2O,3.9,kg/TJ,37.2414281148,kg -2d19ee62-fcef-3f43-8efd-6a995ff86ec1,SESCO,II.1.1,Santa Fe,AR-S,annual,2013,gas oil combustion consumption by to the public,82.560412284,TJ,CO2,74100.0,kg/TJ,6117726.550244399,kg -d4ff3a0e-3e44-3ee9-802c-cbce9f4699fe,SESCO,II.1.1,Santa Fe,AR-S,annual,2013,gas oil combustion consumption by to the public,82.560412284,TJ,CH4,3.9,kg/TJ,321.98560790759996,kg -d4ff3a0e-3e44-3ee9-802c-cbce9f4699fe,SESCO,II.1.1,Santa Fe,AR-S,annual,2013,gas oil combustion consumption by to the public,82.560412284,TJ,N2O,3.9,kg/TJ,321.98560790759996,kg -3ab4e26d-65a3-32a2-97ae-e27dd0b44d19,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2013,gas oil combustion consumption by to the public,5.144325984,TJ,CO2,74100.0,kg/TJ,381194.5554144,kg -c6bd9a32-b962-3f58-9f04-65ea1ac93332,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2013,gas oil combustion consumption by to the public,5.144325984,TJ,CH4,3.9,kg/TJ,20.0628713376,kg -c6bd9a32-b962-3f58-9f04-65ea1ac93332,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2013,gas oil combustion consumption by to the public,5.144325984,TJ,N2O,3.9,kg/TJ,20.0628713376,kg -fd4b0ff8-56c9-3cbe-bf98-13204657b3a4,SESCO,II.1.1,Tucuman,AR-T,annual,2013,gas oil combustion consumption by to the public,2.249676408,TJ,CO2,74100.0,kg/TJ,166701.0218328,kg -9bc9f425-95bb-3137-975b-d10cf3b29ee2,SESCO,II.1.1,Tucuman,AR-T,annual,2013,gas oil combustion consumption by to the public,2.249676408,TJ,CH4,3.9,kg/TJ,8.773737991199999,kg -9bc9f425-95bb-3137-975b-d10cf3b29ee2,SESCO,II.1.1,Tucuman,AR-T,annual,2013,gas oil combustion consumption by to the public,2.249676408,TJ,N2O,3.9,kg/TJ,8.773737991199999,kg -357299e6-5eea-3f2c-aba0-e6400d02f6b9,SESCO,II.1.1,Buenos Aires,AR-B,annual,2013,gas oil combustion consumption by public passenger transport,339.633647388,TJ,CO2,74100.0,kg/TJ,25166853.2714508,kg -3a25d8d7-1580-35e5-9d56-6fd074d6c1c8,SESCO,II.1.1,Buenos Aires,AR-B,annual,2013,gas oil combustion consumption by public passenger transport,339.633647388,TJ,CH4,3.9,kg/TJ,1324.5712248132,kg -3a25d8d7-1580-35e5-9d56-6fd074d6c1c8,SESCO,II.1.1,Buenos Aires,AR-B,annual,2013,gas oil combustion consumption by public passenger transport,339.633647388,TJ,N2O,3.9,kg/TJ,1324.5712248132,kg -785f4fc7-fbcd-3504-9b86-535eb0a16303,SESCO,II.1.1,Chaco,AR-H,annual,2013,gas oil combustion consumption by public passenger transport,10.02676752,TJ,CO2,74100.0,kg/TJ,742983.473232,kg -f974ccef-a38e-391a-97a3-f1d94cd235dd,SESCO,II.1.1,Chaco,AR-H,annual,2013,gas oil combustion consumption by public passenger transport,10.02676752,TJ,CH4,3.9,kg/TJ,39.104393328,kg -f974ccef-a38e-391a-97a3-f1d94cd235dd,SESCO,II.1.1,Chaco,AR-H,annual,2013,gas oil combustion consumption by public passenger transport,10.02676752,TJ,N2O,3.9,kg/TJ,39.104393328,kg -35cad524-9788-33dd-a712-25e73714b1ab,SESCO,II.1.1,Corrientes,AR-W,annual,2013,gas oil combustion consumption by public passenger transport,34.600193208,TJ,CO2,74100.0,kg/TJ,2563874.3167128,kg -d6d44add-3627-3a93-900c-f5f5a334e179,SESCO,II.1.1,Corrientes,AR-W,annual,2013,gas oil combustion consumption by public passenger transport,34.600193208,TJ,CH4,3.9,kg/TJ,134.9407535112,kg -d6d44add-3627-3a93-900c-f5f5a334e179,SESCO,II.1.1,Corrientes,AR-W,annual,2013,gas oil combustion consumption by public passenger transport,34.600193208,TJ,N2O,3.9,kg/TJ,134.9407535112,kg -3f08371b-f191-3d94-a84e-ae6aad55c3b5,SESCO,II.1.1,Córdoba,AR-X,annual,2013,gas oil combustion consumption by public passenger transport,307.849521084,TJ,CO2,74100.0,kg/TJ,22811649.5123244,kg -8fd4a005-7c16-3284-b3fb-70fadda96e5a,SESCO,II.1.1,Córdoba,AR-X,annual,2013,gas oil combustion consumption by public passenger transport,307.849521084,TJ,CH4,3.9,kg/TJ,1200.6131322276,kg -8fd4a005-7c16-3284-b3fb-70fadda96e5a,SESCO,II.1.1,Córdoba,AR-X,annual,2013,gas oil combustion consumption by public passenger transport,307.849521084,TJ,N2O,3.9,kg/TJ,1200.6131322276,kg -0c076875-a0e9-3634-9493-5e513c7979b9,SESCO,II.1.1,Entre Rios,AR-E,annual,2013,gas oil combustion consumption by public passenger transport,89.19846641999999,TJ,CO2,74100.0,kg/TJ,6609606.361721999,kg -b2f01721-fb7d-3b06-a15f-42d491971334,SESCO,II.1.1,Entre Rios,AR-E,annual,2013,gas oil combustion consumption by public passenger transport,89.19846641999999,TJ,CH4,3.9,kg/TJ,347.874019038,kg -b2f01721-fb7d-3b06-a15f-42d491971334,SESCO,II.1.1,Entre Rios,AR-E,annual,2013,gas oil combustion consumption by public passenger transport,89.19846641999999,TJ,N2O,3.9,kg/TJ,347.874019038,kg -06b4e73c-6792-373a-b557-7db8f9e535f8,SESCO,II.1.1,Jujuy,AR-Y,annual,2013,gas oil combustion consumption by public passenger transport,198.589067544,TJ,CO2,74100.0,kg/TJ,14715449.905010398,kg -8a0a4c50-98e1-3dc9-8725-451e3496ec30,SESCO,II.1.1,Jujuy,AR-Y,annual,2013,gas oil combustion consumption by public passenger transport,198.589067544,TJ,CH4,3.9,kg/TJ,774.4973634216,kg -8a0a4c50-98e1-3dc9-8725-451e3496ec30,SESCO,II.1.1,Jujuy,AR-Y,annual,2013,gas oil combustion consumption by public passenger transport,198.589067544,TJ,N2O,3.9,kg/TJ,774.4973634216,kg -62d3805b-db95-3641-8e58-b739a890b357,SESCO,II.1.1,Misiones,AR-N,annual,2013,gas oil combustion consumption by public passenger transport,106.313859792,TJ,CO2,74100.0,kg/TJ,7877857.0105872005,kg -e58b5adc-c5dd-3236-8878-9a789e5a0650,SESCO,II.1.1,Misiones,AR-N,annual,2013,gas oil combustion consumption by public passenger transport,106.313859792,TJ,CH4,3.9,kg/TJ,414.6240531888,kg -e58b5adc-c5dd-3236-8878-9a789e5a0650,SESCO,II.1.1,Misiones,AR-N,annual,2013,gas oil combustion consumption by public passenger transport,106.313859792,TJ,N2O,3.9,kg/TJ,414.6240531888,kg -b7276b9c-51aa-32aa-8577-a6ae5eb9327d,SESCO,II.1.1,Salta,AR-A,annual,2013,gas oil combustion consumption by public passenger transport,77.477660064,TJ,CO2,74100.0,kg/TJ,5741094.6107424,kg -163499a0-ff9e-3db0-9648-4514f9669fc9,SESCO,II.1.1,Salta,AR-A,annual,2013,gas oil combustion consumption by public passenger transport,77.477660064,TJ,CH4,3.9,kg/TJ,302.1628742496,kg -163499a0-ff9e-3db0-9648-4514f9669fc9,SESCO,II.1.1,Salta,AR-A,annual,2013,gas oil combustion consumption by public passenger transport,77.477660064,TJ,N2O,3.9,kg/TJ,302.1628742496,kg -f2919f2d-1231-34e8-ae62-d8f61cddcd73,SESCO,II.1.1,Santa Fe,AR-S,annual,2013,gas oil combustion consumption by public passenger transport,231.107311176,TJ,CO2,74100.0,kg/TJ,17125051.7581416,kg -b9636763-46ea-3ffc-9ab5-77114c2d02d9,SESCO,II.1.1,Santa Fe,AR-S,annual,2013,gas oil combustion consumption by public passenger transport,231.107311176,TJ,CH4,3.9,kg/TJ,901.3185135864,kg -b9636763-46ea-3ffc-9ab5-77114c2d02d9,SESCO,II.1.1,Santa Fe,AR-S,annual,2013,gas oil combustion consumption by public passenger transport,231.107311176,TJ,N2O,3.9,kg/TJ,901.3185135864,kg -b442a47b-c6ca-307c-b3fe-d23e24a698c9,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2013,gas oil combustion consumption by public passenger transport,108.047999052,TJ,CO2,74100.0,kg/TJ,8006356.7297532,kg -7315bcc9-145b-3e67-ac3a-c51ce397652d,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2013,gas oil combustion consumption by public passenger transport,108.047999052,TJ,CH4,3.9,kg/TJ,421.38719630279996,kg -7315bcc9-145b-3e67-ac3a-c51ce397652d,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2013,gas oil combustion consumption by public passenger transport,108.047999052,TJ,N2O,3.9,kg/TJ,421.38719630279996,kg -952a272f-1320-3e66-baa5-612f680967a1,SESCO,II.1.1,Tucuman,AR-T,annual,2013,gas oil combustion consumption by public passenger transport,32.633217204,TJ,CO2,74100.0,kg/TJ,2418121.3948164,kg -09339339-5d14-30e9-b566-1734b97df6b2,SESCO,II.1.1,Tucuman,AR-T,annual,2013,gas oil combustion consumption by public passenger transport,32.633217204,TJ,CH4,3.9,kg/TJ,127.26954709559999,kg -09339339-5d14-30e9-b566-1734b97df6b2,SESCO,II.1.1,Tucuman,AR-T,annual,2013,gas oil combustion consumption by public passenger transport,32.633217204,TJ,N2O,3.9,kg/TJ,127.26954709559999,kg -9b8933e1-b220-3820-97b9-0f2c3e86c48f,SESCO,II.5.1,Buenos Aires,AR-B,annual,2013,gas oil combustion consumption by agriculture machines,559.61969364,TJ,CO2,74100.0,kg/TJ,41467819.298724,kg -9fce57d0-48c1-3f92-998e-1a0f091691da,SESCO,II.5.1,Buenos Aires,AR-B,annual,2013,gas oil combustion consumption by agriculture machines,559.61969364,TJ,CH4,3.9,kg/TJ,2182.516805196,kg -9fce57d0-48c1-3f92-998e-1a0f091691da,SESCO,II.5.1,Buenos Aires,AR-B,annual,2013,gas oil combustion consumption by agriculture machines,559.61969364,TJ,N2O,3.9,kg/TJ,2182.516805196,kg -1d6c392c-d113-306f-9a24-f2bd84467f91,SESCO,II.5.1,Córdoba,AR-X,annual,2013,gas oil combustion consumption by agriculture machines,51.13634819999999,TJ,CO2,74100.0,kg/TJ,3789203.4016199997,kg -e6b3996b-97ee-3ca5-b91c-35d4e2ed17c0,SESCO,II.5.1,Córdoba,AR-X,annual,2013,gas oil combustion consumption by agriculture machines,51.13634819999999,TJ,CH4,3.9,kg/TJ,199.43175797999996,kg -e6b3996b-97ee-3ca5-b91c-35d4e2ed17c0,SESCO,II.5.1,Córdoba,AR-X,annual,2013,gas oil combustion consumption by agriculture machines,51.13634819999999,TJ,N2O,3.9,kg/TJ,199.43175797999996,kg -1cebf266-822d-3ea2-903b-c16a8e6a30ae,SESCO,II.5.1,Neuquén,AR-Q,annual,2013,gas oil combustion consumption by agriculture machines,109.79089379999999,TJ,CO2,74100.0,kg/TJ,8135505.230579999,kg -83131ec8-7c78-3ce5-a588-6fcb59e3216f,SESCO,II.5.1,Neuquén,AR-Q,annual,2013,gas oil combustion consumption by agriculture machines,109.79089379999999,TJ,CH4,3.9,kg/TJ,428.18448581999996,kg -83131ec8-7c78-3ce5-a588-6fcb59e3216f,SESCO,II.5.1,Neuquén,AR-Q,annual,2013,gas oil combustion consumption by agriculture machines,109.79089379999999,TJ,N2O,3.9,kg/TJ,428.18448581999996,kg -36fee0c3-ec9d-37a7-9396-7c61dcb70938,SESCO,II.5.1,Rio Negro,AR-R,annual,2013,gas oil combustion consumption by agriculture machines,3.6378258,TJ,CO2,74100.0,kg/TJ,269562.89178,kg -f1a8ef7b-bc20-35e1-8354-2b34989d89e2,SESCO,II.5.1,Rio Negro,AR-R,annual,2013,gas oil combustion consumption by agriculture machines,3.6378258,TJ,CH4,3.9,kg/TJ,14.187520619999999,kg -f1a8ef7b-bc20-35e1-8354-2b34989d89e2,SESCO,II.5.1,Rio Negro,AR-R,annual,2013,gas oil combustion consumption by agriculture machines,3.6378258,TJ,N2O,3.9,kg/TJ,14.187520619999999,kg -6b733a5a-2035-3db9-b27b-784e0cc44b2f,SESCO,II.5.1,Santa Cruz,AR-Z,annual,2013,gas oil combustion consumption by agriculture machines,0.68566596,TJ,CO2,74100.0,kg/TJ,50807.847636,kg -0f1332d1-1300-39ae-937d-c8f57064ca50,SESCO,II.5.1,Santa Cruz,AR-Z,annual,2013,gas oil combustion consumption by agriculture machines,0.68566596,TJ,CH4,3.9,kg/TJ,2.674097244,kg -0f1332d1-1300-39ae-937d-c8f57064ca50,SESCO,II.5.1,Santa Cruz,AR-Z,annual,2013,gas oil combustion consumption by agriculture machines,0.68566596,TJ,N2O,3.9,kg/TJ,2.674097244,kg -4c128b43-d8b2-3845-bf8f-53910b5956cf,SESCO,II.5.1,Santa Fe,AR-S,annual,2013,gas oil combustion consumption by agriculture machines,3.1048751999999995,TJ,CO2,74100.0,kg/TJ,230071.25231999997,kg -a2583d68-5ef0-37bb-88eb-174d3d1b3c5a,SESCO,II.5.1,Santa Fe,AR-S,annual,2013,gas oil combustion consumption by agriculture machines,3.1048751999999995,TJ,CH4,3.9,kg/TJ,12.109013279999997,kg -a2583d68-5ef0-37bb-88eb-174d3d1b3c5a,SESCO,II.5.1,Santa Fe,AR-S,annual,2013,gas oil combustion consumption by agriculture machines,3.1048751999999995,TJ,N2O,3.9,kg/TJ,12.109013279999997,kg -5359dd43-5dc2-3e60-b0c8-d88d057c2c31,SESCO,II.1.1,Buenos Aires,AR-B,annual,2013,gas oil combustion consumption by to the public,9042.09340944,TJ,CO2,74100.0,kg/TJ,670019121.639504,kg -9f960941-54e3-3f50-ab7a-4da792095c86,SESCO,II.1.1,Buenos Aires,AR-B,annual,2013,gas oil combustion consumption by to the public,9042.09340944,TJ,CH4,3.9,kg/TJ,35264.164296816,kg -9f960941-54e3-3f50-ab7a-4da792095c86,SESCO,II.1.1,Buenos Aires,AR-B,annual,2013,gas oil combustion consumption by to the public,9042.09340944,TJ,N2O,3.9,kg/TJ,35264.164296816,kg -1cdfd7ae-14df-3675-bb2f-2e21b55eacf9,SESCO,II.1.1,Capital Federal,AR-C,annual,2013,gas oil combustion consumption by to the public,642.94271832,TJ,CO2,74100.0,kg/TJ,47642055.427512005,kg -121b0009-ad91-3144-afc5-10f4e24c7cd7,SESCO,II.1.1,Capital Federal,AR-C,annual,2013,gas oil combustion consumption by to the public,642.94271832,TJ,CH4,3.9,kg/TJ,2507.476601448,kg -121b0009-ad91-3144-afc5-10f4e24c7cd7,SESCO,II.1.1,Capital Federal,AR-C,annual,2013,gas oil combustion consumption by to the public,642.94271832,TJ,N2O,3.9,kg/TJ,2507.476601448,kg -9157e94a-1815-3bf1-926d-f511df2b5d55,SESCO,II.1.1,Chaco,AR-H,annual,2013,gas oil combustion consumption by to the public,7.64729028,TJ,CO2,74100.0,kg/TJ,566664.209748,kg -4e14c07d-86b3-3966-9607-caa927b1c086,SESCO,II.1.1,Chaco,AR-H,annual,2013,gas oil combustion consumption by to the public,7.64729028,TJ,CH4,3.9,kg/TJ,29.824432092,kg -4e14c07d-86b3-3966-9607-caa927b1c086,SESCO,II.1.1,Chaco,AR-H,annual,2013,gas oil combustion consumption by to the public,7.64729028,TJ,N2O,3.9,kg/TJ,29.824432092,kg -b1781460-a6e9-332f-8025-c527baf40963,SESCO,II.1.1,Chubut,AR-U,annual,2013,gas oil combustion consumption by to the public,1649.06441532,TJ,CO2,74100.0,kg/TJ,122195673.17521201,kg -d50573b2-aef1-3546-8c13-6c890d8058dc,SESCO,II.1.1,Chubut,AR-U,annual,2013,gas oil combustion consumption by to the public,1649.06441532,TJ,CH4,3.9,kg/TJ,6431.351219748,kg -d50573b2-aef1-3546-8c13-6c890d8058dc,SESCO,II.1.1,Chubut,AR-U,annual,2013,gas oil combustion consumption by to the public,1649.06441532,TJ,N2O,3.9,kg/TJ,6431.351219748,kg -0ab76e5b-25bc-31a6-bd5a-ebbdc082de4b,SESCO,II.1.1,Córdoba,AR-X,annual,2013,gas oil combustion consumption by to the public,657.95675484,TJ,CO2,74100.0,kg/TJ,48754595.533644006,kg -be3d30b9-fd38-3f95-9741-a51358afa39f,SESCO,II.1.1,Córdoba,AR-X,annual,2013,gas oil combustion consumption by to the public,657.95675484,TJ,CH4,3.9,kg/TJ,2566.031343876,kg -be3d30b9-fd38-3f95-9741-a51358afa39f,SESCO,II.1.1,Córdoba,AR-X,annual,2013,gas oil combustion consumption by to the public,657.95675484,TJ,N2O,3.9,kg/TJ,2566.031343876,kg -bea2df9a-0343-3a89-9211-5d69c366eb46,SESCO,II.1.1,Entre Rios,AR-E,annual,2013,gas oil combustion consumption by to the public,487.31521943999996,TJ,CO2,74100.0,kg/TJ,36110057.760504,kg -5a747a69-f703-3fec-8036-9cc7599d5b6a,SESCO,II.1.1,Entre Rios,AR-E,annual,2013,gas oil combustion consumption by to the public,487.31521943999996,TJ,CH4,3.9,kg/TJ,1900.529355816,kg -5a747a69-f703-3fec-8036-9cc7599d5b6a,SESCO,II.1.1,Entre Rios,AR-E,annual,2013,gas oil combustion consumption by to the public,487.31521943999996,TJ,N2O,3.9,kg/TJ,1900.529355816,kg -edede6f5-65e5-3adb-9687-b0de7886b272,SESCO,II.1.1,La Pampa,AR-L,annual,2013,gas oil combustion consumption by to the public,541.22211612,TJ,CO2,74100.0,kg/TJ,40104558.804492004,kg -3b53ae36-18ad-3c3b-9ece-2c1bb147cfef,SESCO,II.1.1,La Pampa,AR-L,annual,2013,gas oil combustion consumption by to the public,541.22211612,TJ,CH4,3.9,kg/TJ,2110.766252868,kg -3b53ae36-18ad-3c3b-9ece-2c1bb147cfef,SESCO,II.1.1,La Pampa,AR-L,annual,2013,gas oil combustion consumption by to the public,541.22211612,TJ,N2O,3.9,kg/TJ,2110.766252868,kg -e45d8719-d2c2-3561-8e15-0bf7da8e31da,SESCO,II.1.1,La Rioja,AR-F,annual,2013,gas oil combustion consumption by to the public,1.29139836,TJ,CO2,74100.0,kg/TJ,95692.618476,kg -c3c0636c-f4da-3916-b907-24520986fbaf,SESCO,II.1.1,La Rioja,AR-F,annual,2013,gas oil combustion consumption by to the public,1.29139836,TJ,CH4,3.9,kg/TJ,5.036453604,kg -c3c0636c-f4da-3916-b907-24520986fbaf,SESCO,II.1.1,La Rioja,AR-F,annual,2013,gas oil combustion consumption by to the public,1.29139836,TJ,N2O,3.9,kg/TJ,5.036453604,kg -3d128aff-a568-39a9-b3b9-a8eb0056cf93,SESCO,II.1.1,Mendoza,AR-M,annual,2013,gas oil combustion consumption by to the public,67.66153716,TJ,CO2,74100.0,kg/TJ,5013719.9035559995,kg -8e4fe2e8-4566-3bf2-aef1-4ce22bb136ca,SESCO,II.1.1,Mendoza,AR-M,annual,2013,gas oil combustion consumption by to the public,67.66153716,TJ,CH4,3.9,kg/TJ,263.87999492399996,kg -8e4fe2e8-4566-3bf2-aef1-4ce22bb136ca,SESCO,II.1.1,Mendoza,AR-M,annual,2013,gas oil combustion consumption by to the public,67.66153716,TJ,N2O,3.9,kg/TJ,263.87999492399996,kg -0fafef24-13a9-312e-b8b1-8aa7e1ea25ce,SESCO,II.1.1,Neuquén,AR-Q,annual,2013,gas oil combustion consumption by to the public,1041.1967453999998,TJ,CO2,74100.0,kg/TJ,77152678.83413999,kg -7cc58d51-4ea8-38ca-95dc-4cb22e95073f,SESCO,II.1.1,Neuquén,AR-Q,annual,2013,gas oil combustion consumption by to the public,1041.1967453999998,TJ,CH4,3.9,kg/TJ,4060.667307059999,kg -7cc58d51-4ea8-38ca-95dc-4cb22e95073f,SESCO,II.1.1,Neuquén,AR-Q,annual,2013,gas oil combustion consumption by to the public,1041.1967453999998,TJ,N2O,3.9,kg/TJ,4060.667307059999,kg -a1783c87-d134-3842-ae8f-027af460305a,SESCO,II.1.1,Rio Negro,AR-R,annual,2013,gas oil combustion consumption by to the public,1858.73877588,TJ,CO2,74100.0,kg/TJ,137732543.292708,kg -a59b8d53-8add-3458-aceb-3c31c14cabf2,SESCO,II.1.1,Rio Negro,AR-R,annual,2013,gas oil combustion consumption by to the public,1858.73877588,TJ,CH4,3.9,kg/TJ,7249.081225932,kg -a59b8d53-8add-3458-aceb-3c31c14cabf2,SESCO,II.1.1,Rio Negro,AR-R,annual,2013,gas oil combustion consumption by to the public,1858.73877588,TJ,N2O,3.9,kg/TJ,7249.081225932,kg -387f1cc2-e2f2-3923-bbd0-44bf19e0ed74,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2013,gas oil combustion consumption by to the public,1322.58458472,TJ,CO2,74100.0,kg/TJ,98003517.727752,kg -b58af572-b02a-3854-bd48-3c13c1ba97c4,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2013,gas oil combustion consumption by to the public,1322.58458472,TJ,CH4,3.9,kg/TJ,5158.0798804080005,kg -b58af572-b02a-3854-bd48-3c13c1ba97c4,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2013,gas oil combustion consumption by to the public,1322.58458472,TJ,N2O,3.9,kg/TJ,5158.0798804080005,kg -e6151674-f094-3e70-9c2d-ad98c1084d31,SESCO,II.1.1,Santa Fe,AR-S,annual,2013,gas oil combustion consumption by to the public,531.79699944,TJ,CO2,74100.0,kg/TJ,39406157.658504,kg -653001c6-7737-36c4-86db-7f0dba41110c,SESCO,II.1.1,Santa Fe,AR-S,annual,2013,gas oil combustion consumption by to the public,531.79699944,TJ,CH4,3.9,kg/TJ,2074.008297816,kg -653001c6-7737-36c4-86db-7f0dba41110c,SESCO,II.1.1,Santa Fe,AR-S,annual,2013,gas oil combustion consumption by to the public,531.79699944,TJ,N2O,3.9,kg/TJ,2074.008297816,kg -3ab2b460-fd8b-387f-8240-eb659db0aa4c,SESCO,II.1.1,Buenos Aires,AR-B,annual,2013,gas oil combustion consumption by to the public,849.1892908799999,TJ,CO2,74100.0,kg/TJ,62924926.454207994,kg -0767f6ed-1e27-38a4-ab53-84c341b57609,SESCO,II.1.1,Buenos Aires,AR-B,annual,2013,gas oil combustion consumption by to the public,849.1892908799999,TJ,CH4,3.9,kg/TJ,3311.838234432,kg -0767f6ed-1e27-38a4-ab53-84c341b57609,SESCO,II.1.1,Buenos Aires,AR-B,annual,2013,gas oil combustion consumption by to the public,849.1892908799999,TJ,N2O,3.9,kg/TJ,3311.838234432,kg -1155ba97-ca21-3f71-8049-01d075bf1a8d,SESCO,II.1.1,Capital Federal,AR-C,annual,2013,gas oil combustion consumption by to the public,92.0259942,TJ,CO2,74100.0,kg/TJ,6819126.17022,kg -37bc5f87-87ea-3fcb-8c91-d47e37db5167,SESCO,II.1.1,Capital Federal,AR-C,annual,2013,gas oil combustion consumption by to the public,92.0259942,TJ,CH4,3.9,kg/TJ,358.90137738,kg -37bc5f87-87ea-3fcb-8c91-d47e37db5167,SESCO,II.1.1,Capital Federal,AR-C,annual,2013,gas oil combustion consumption by to the public,92.0259942,TJ,N2O,3.9,kg/TJ,358.90137738,kg -daecc2d9-d2bb-3976-ba1a-7376d369caf2,SESCO,II.1.1,Córdoba,AR-X,annual,2013,gas oil combustion consumption by to the public,62.58631596,TJ,CO2,74100.0,kg/TJ,4637646.012636,kg -2f2218e0-9a64-301c-8377-8caf71dfde82,SESCO,II.1.1,Córdoba,AR-X,annual,2013,gas oil combustion consumption by to the public,62.58631596,TJ,CH4,3.9,kg/TJ,244.086632244,kg -2f2218e0-9a64-301c-8377-8caf71dfde82,SESCO,II.1.1,Córdoba,AR-X,annual,2013,gas oil combustion consumption by to the public,62.58631596,TJ,N2O,3.9,kg/TJ,244.086632244,kg -5526c441-3b7d-3266-8336-c8c1ab9d0017,SESCO,II.1.1,Entre Rios,AR-E,annual,2013,gas oil combustion consumption by to the public,70.61535852,TJ,CO2,74100.0,kg/TJ,5232598.066332,kg -c28d239a-bed9-35e1-af52-e0f083da4361,SESCO,II.1.1,Entre Rios,AR-E,annual,2013,gas oil combustion consumption by to the public,70.61535852,TJ,CH4,3.9,kg/TJ,275.399898228,kg -c28d239a-bed9-35e1-af52-e0f083da4361,SESCO,II.1.1,Entre Rios,AR-E,annual,2013,gas oil combustion consumption by to the public,70.61535852,TJ,N2O,3.9,kg/TJ,275.399898228,kg -ad149aee-6f00-31c3-b0f3-76a17842ca9c,SESCO,II.1.1,La Pampa,AR-L,annual,2013,gas oil combustion consumption by to the public,9.17054292,TJ,CO2,74100.0,kg/TJ,679537.230372,kg -7727c003-50c9-3ebb-aabb-4a3db5f0efb1,SESCO,II.1.1,La Pampa,AR-L,annual,2013,gas oil combustion consumption by to the public,9.17054292,TJ,CH4,3.9,kg/TJ,35.765117388,kg -7727c003-50c9-3ebb-aabb-4a3db5f0efb1,SESCO,II.1.1,La Pampa,AR-L,annual,2013,gas oil combustion consumption by to the public,9.17054292,TJ,N2O,3.9,kg/TJ,35.765117388,kg -02635024-b073-3db8-ba7f-484a9741a7bb,SESCO,II.1.1,Santa Fe,AR-S,annual,2013,gas oil combustion consumption by to the public,105.36948072,TJ,CO2,74100.0,kg/TJ,7807878.521352,kg -9e7417fb-f938-3823-8b8a-ce043fc487ec,SESCO,II.1.1,Santa Fe,AR-S,annual,2013,gas oil combustion consumption by to the public,105.36948072,TJ,CH4,3.9,kg/TJ,410.94097480799996,kg -9e7417fb-f938-3823-8b8a-ce043fc487ec,SESCO,II.1.1,Santa Fe,AR-S,annual,2013,gas oil combustion consumption by to the public,105.36948072,TJ,N2O,3.9,kg/TJ,410.94097480799996,kg -be69c9dd-b6e6-306b-8601-067039a1c705,SESCO,II.2.1,Buenos Aires,AR-B,annual,2013,gas oil combustion consumption by railway transport,41.328215039999996,TJ,CO2,74100.0,kg/TJ,3062420.7344639995,kg -a233079f-6928-3e4e-9e65-40ad69dd7391,SESCO,II.2.1,Buenos Aires,AR-B,annual,2013,gas oil combustion consumption by railway transport,41.328215039999996,TJ,CH4,3.9,kg/TJ,161.180038656,kg -a233079f-6928-3e4e-9e65-40ad69dd7391,SESCO,II.2.1,Buenos Aires,AR-B,annual,2013,gas oil combustion consumption by railway transport,41.328215039999996,TJ,N2O,3.9,kg/TJ,161.180038656,kg -75f010ad-71e2-329a-852e-49c7705893a5,SESCO,II.2.1,La Pampa,AR-L,annual,2013,gas oil combustion consumption by railway transport,22.206901079999998,TJ,CO2,74100.0,kg/TJ,1645531.3700279999,kg -06f37679-e6f3-36e8-848c-c87e1bf143d8,SESCO,II.2.1,La Pampa,AR-L,annual,2013,gas oil combustion consumption by railway transport,22.206901079999998,TJ,CH4,3.9,kg/TJ,86.60691421199999,kg -06f37679-e6f3-36e8-848c-c87e1bf143d8,SESCO,II.2.1,La Pampa,AR-L,annual,2013,gas oil combustion consumption by railway transport,22.206901079999998,TJ,N2O,3.9,kg/TJ,86.60691421199999,kg -da0fd13f-6190-3900-82a4-6d64e1cc79c4,SESCO,II.1.1,Buenos Aires,AR-B,annual,2013,gasoline combustion consumption by freight transport,4.696686,TJ,CO2,69300.0,kg/TJ,325480.33979999996,kg -8a43fdb4-0081-388b-9db6-d0c3845160f9,SESCO,II.1.1,Buenos Aires,AR-B,annual,2013,gasoline combustion consumption by freight transport,4.696686,TJ,CH4,33.0,kg/TJ,154.990638,kg -a5bd7577-3e76-390f-a039-5e95ff04f891,SESCO,II.1.1,Buenos Aires,AR-B,annual,2013,gasoline combustion consumption by freight transport,4.696686,TJ,N2O,3.2,kg/TJ,15.0293952,kg -b8ee7d19-9df5-3145-b6e2-8d6ca239f8e3,SESCO,II.1.1,Buenos Aires,AR-B,annual,2013,gas oil combustion consumption by freight transport,333.48631596,TJ,CO2,74100.0,kg/TJ,24711336.012636002,kg -116c99be-d44a-3007-b0af-60b2f18a3563,SESCO,II.1.1,Buenos Aires,AR-B,annual,2013,gas oil combustion consumption by freight transport,333.48631596,TJ,CH4,3.9,kg/TJ,1300.596632244,kg -116c99be-d44a-3007-b0af-60b2f18a3563,SESCO,II.1.1,Buenos Aires,AR-B,annual,2013,gas oil combustion consumption by freight transport,333.48631596,TJ,N2O,3.9,kg/TJ,1300.596632244,kg -fd33c293-3dac-3e7d-811d-941e3cca9922,SESCO,II.1.1,Capital Federal,AR-C,annual,2013,gas oil combustion consumption by freight transport,26.60216328,TJ,CO2,74100.0,kg/TJ,1971220.299048,kg -50e05191-0ff4-343c-914b-f57499142332,SESCO,II.1.1,Capital Federal,AR-C,annual,2013,gas oil combustion consumption by freight transport,26.60216328,TJ,CH4,3.9,kg/TJ,103.74843679199999,kg -50e05191-0ff4-343c-914b-f57499142332,SESCO,II.1.1,Capital Federal,AR-C,annual,2013,gas oil combustion consumption by freight transport,26.60216328,TJ,N2O,3.9,kg/TJ,103.74843679199999,kg -302b72da-9595-3236-8121-67a60aeeccff,SESCO,II.1.1,Chubut,AR-U,annual,2013,gas oil combustion consumption by freight transport,0.32461044,TJ,CO2,74100.0,kg/TJ,24053.633604,kg -91b68d23-2a15-325b-8827-0eadf02980dd,SESCO,II.1.1,Chubut,AR-U,annual,2013,gas oil combustion consumption by freight transport,0.32461044,TJ,CH4,3.9,kg/TJ,1.265980716,kg -91b68d23-2a15-325b-8827-0eadf02980dd,SESCO,II.1.1,Chubut,AR-U,annual,2013,gas oil combustion consumption by freight transport,0.32461044,TJ,N2O,3.9,kg/TJ,1.265980716,kg -f2a656dd-a6a7-37a1-9aa8-883a3442e897,SESCO,II.1.1,Córdoba,AR-X,annual,2013,gas oil combustion consumption by freight transport,10.938689160000001,TJ,CO2,74100.0,kg/TJ,810556.8667560001,kg -17090ec2-386e-31ed-82bc-a7a8544eee96,SESCO,II.1.1,Córdoba,AR-X,annual,2013,gas oil combustion consumption by freight transport,10.938689160000001,TJ,CH4,3.9,kg/TJ,42.660887724000006,kg -17090ec2-386e-31ed-82bc-a7a8544eee96,SESCO,II.1.1,Córdoba,AR-X,annual,2013,gas oil combustion consumption by freight transport,10.938689160000001,TJ,N2O,3.9,kg/TJ,42.660887724000006,kg -3ce60eab-4ea3-3cba-8434-0a0e0540295f,SESCO,II.1.1,San Luis,AR-D,annual,2013,gas oil combustion consumption by freight transport,57.27432816,TJ,CO2,74100.0,kg/TJ,4244027.716656,kg -54ab74ba-2358-3cd6-b2ea-ae22765fd851,SESCO,II.1.1,San Luis,AR-D,annual,2013,gas oil combustion consumption by freight transport,57.27432816,TJ,CH4,3.9,kg/TJ,223.369879824,kg -54ab74ba-2358-3cd6-b2ea-ae22765fd851,SESCO,II.1.1,San Luis,AR-D,annual,2013,gas oil combustion consumption by freight transport,57.27432816,TJ,N2O,3.9,kg/TJ,223.369879824,kg -ecd2058d-292a-36b0-a9b7-fe77c2de3d62,SESCO,II.1.1,Buenos Aires,AR-B,annual,2013,gas oil combustion consumption by freight transport,1.29786384,TJ,CO2,74100.0,kg/TJ,96171.710544,kg -14afde7e-0d1e-3c8b-8394-c6164ce19078,SESCO,II.1.1,Buenos Aires,AR-B,annual,2013,gas oil combustion consumption by freight transport,1.29786384,TJ,CH4,3.9,kg/TJ,5.061668976,kg -14afde7e-0d1e-3c8b-8394-c6164ce19078,SESCO,II.1.1,Buenos Aires,AR-B,annual,2013,gas oil combustion consumption by freight transport,1.29786384,TJ,N2O,3.9,kg/TJ,5.061668976,kg -e5bc8a55-f5b3-3ed9-96e6-de040a3ac6ef,SESCO,II.1.1,Buenos Aires,AR-B,annual,2013,gas oil combustion consumption by public passenger transport,331.28118995999995,TJ,CO2,74100.0,kg/TJ,24547936.176035997,kg -20eb8f69-3d8b-34de-89f2-b56d6d22d9c2,SESCO,II.1.1,Buenos Aires,AR-B,annual,2013,gas oil combustion consumption by public passenger transport,331.28118995999995,TJ,CH4,3.9,kg/TJ,1291.9966408439998,kg -20eb8f69-3d8b-34de-89f2-b56d6d22d9c2,SESCO,II.1.1,Buenos Aires,AR-B,annual,2013,gas oil combustion consumption by public passenger transport,331.28118995999995,TJ,N2O,3.9,kg/TJ,1291.9966408439998,kg -38b86cdc-247e-35d4-a484-9a00c975049d,SESCO,II.1.1,Capital Federal,AR-C,annual,2013,gas oil combustion consumption by public passenger transport,16.47158688,TJ,CO2,74100.0,kg/TJ,1220544.587808,kg -f89b6299-6009-320d-8556-82cc2da7e112,SESCO,II.1.1,Capital Federal,AR-C,annual,2013,gas oil combustion consumption by public passenger transport,16.47158688,TJ,CH4,3.9,kg/TJ,64.239188832,kg -f89b6299-6009-320d-8556-82cc2da7e112,SESCO,II.1.1,Capital Federal,AR-C,annual,2013,gas oil combustion consumption by public passenger transport,16.47158688,TJ,N2O,3.9,kg/TJ,64.239188832,kg -1056a869-48df-3b85-8a5b-965d953c39c5,SESCO,II.1.1,Chubut,AR-U,annual,2013,gas oil combustion consumption by public passenger transport,58.18960896,TJ,CO2,74100.0,kg/TJ,4311850.023936,kg -281b8c62-d813-317c-8ffa-14b692ce30f7,SESCO,II.1.1,Chubut,AR-U,annual,2013,gas oil combustion consumption by public passenger transport,58.18960896,TJ,CH4,3.9,kg/TJ,226.939474944,kg -281b8c62-d813-317c-8ffa-14b692ce30f7,SESCO,II.1.1,Chubut,AR-U,annual,2013,gas oil combustion consumption by public passenger transport,58.18960896,TJ,N2O,3.9,kg/TJ,226.939474944,kg -e43d5a41-c51d-35fe-b5f7-0e39669c8242,SESCO,II.1.1,Córdoba,AR-X,annual,2013,gas oil combustion consumption by public passenger transport,258.03517572,TJ,CO2,74100.0,kg/TJ,19120406.520852,kg -54b04279-0b96-3c35-8c5f-af28fb7de579,SESCO,II.1.1,Córdoba,AR-X,annual,2013,gas oil combustion consumption by public passenger transport,258.03517572,TJ,CH4,3.9,kg/TJ,1006.3371853079999,kg -54b04279-0b96-3c35-8c5f-af28fb7de579,SESCO,II.1.1,Córdoba,AR-X,annual,2013,gas oil combustion consumption by public passenger transport,258.03517572,TJ,N2O,3.9,kg/TJ,1006.3371853079999,kg -ff027fde-a4f2-388b-ae87-2cf733fc3bdc,SESCO,II.1.1,Neuquén,AR-Q,annual,2013,gas oil combustion consumption by public passenger transport,32.7249006,TJ,CO2,74100.0,kg/TJ,2424915.13446,kg -4883f5c6-822d-38dc-9dc2-15a3e52c37cc,SESCO,II.1.1,Neuquén,AR-Q,annual,2013,gas oil combustion consumption by public passenger transport,32.7249006,TJ,CH4,3.9,kg/TJ,127.62711233999998,kg -4883f5c6-822d-38dc-9dc2-15a3e52c37cc,SESCO,II.1.1,Neuquén,AR-Q,annual,2013,gas oil combustion consumption by public passenger transport,32.7249006,TJ,N2O,3.9,kg/TJ,127.62711233999998,kg -2f7f5f26-4f58-37a2-ade5-3f1d1f823ca2,SESCO,II.1.1,Rio Negro,AR-R,annual,2013,gas oil combustion consumption by public passenger transport,203.11839996,TJ,CO2,74100.0,kg/TJ,15051073.437036,kg -aae12841-e314-3791-991c-2dccaef2059b,SESCO,II.1.1,Rio Negro,AR-R,annual,2013,gas oil combustion consumption by public passenger transport,203.11839996,TJ,CH4,3.9,kg/TJ,792.161759844,kg -aae12841-e314-3791-991c-2dccaef2059b,SESCO,II.1.1,Rio Negro,AR-R,annual,2013,gas oil combustion consumption by public passenger transport,203.11839996,TJ,N2O,3.9,kg/TJ,792.161759844,kg -b356f9c7-bcab-3b9f-b410-974c847034ba,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2013,gas oil combustion consumption by public passenger transport,31.995276599999997,TJ,CO2,74100.0,kg/TJ,2370849.99606,kg -c76f0ed6-b953-33bd-a052-7407326b6c97,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2013,gas oil combustion consumption by public passenger transport,31.995276599999997,TJ,CH4,3.9,kg/TJ,124.78157873999999,kg -c76f0ed6-b953-33bd-a052-7407326b6c97,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2013,gas oil combustion consumption by public passenger transport,31.995276599999997,TJ,N2O,3.9,kg/TJ,124.78157873999999,kg -d1cc20e1-227b-39ec-863a-e6b4ceef2348,SESCO,II.1.1,Santa Fe,AR-S,annual,2013,gas oil combustion consumption by public passenger transport,5.46827904,TJ,CO2,74100.0,kg/TJ,405199.47686399997,kg -695c3cdf-b9a8-3797-8452-220b8ce5062b,SESCO,II.1.1,Santa Fe,AR-S,annual,2013,gas oil combustion consumption by public passenger transport,5.46827904,TJ,CH4,3.9,kg/TJ,21.326288255999998,kg -695c3cdf-b9a8-3797-8452-220b8ce5062b,SESCO,II.1.1,Santa Fe,AR-S,annual,2013,gas oil combustion consumption by public passenger transport,5.46827904,TJ,N2O,3.9,kg/TJ,21.326288255999998,kg -a7728b08-3729-3eaa-a90f-bc3ce726eba5,SESCO,II.1.1,Buenos Aires,AR-B,annual,2013,gas oil combustion consumption by to the public,5380.720547999999,TJ,CO2,74100.0,kg/TJ,398711392.60679996,kg -8ffa7319-8e72-34eb-8887-8e385ab24f37,SESCO,II.1.1,Buenos Aires,AR-B,annual,2013,gas oil combustion consumption by to the public,5380.720547999999,TJ,CH4,3.9,kg/TJ,20984.8101372,kg -8ffa7319-8e72-34eb-8887-8e385ab24f37,SESCO,II.1.1,Buenos Aires,AR-B,annual,2013,gas oil combustion consumption by to the public,5380.720547999999,TJ,N2O,3.9,kg/TJ,20984.8101372,kg -2ffd4bc3-9b4c-38e0-ac02-483f5f45bc44,SESCO,II.1.1,Capital Federal,AR-C,annual,2013,gas oil combustion consumption by to the public,3790.01742,TJ,CO2,74100.0,kg/TJ,280840290.822,kg -610cb444-4f8d-35a0-b808-1078539d20a8,SESCO,II.1.1,Capital Federal,AR-C,annual,2013,gas oil combustion consumption by to the public,3790.01742,TJ,CH4,3.9,kg/TJ,14781.067938,kg -610cb444-4f8d-35a0-b808-1078539d20a8,SESCO,II.1.1,Capital Federal,AR-C,annual,2013,gas oil combustion consumption by to the public,3790.01742,TJ,N2O,3.9,kg/TJ,14781.067938,kg -4b2bb184-276e-3f62-a255-d962fed589c1,SESCO,II.1.1,Chaco,AR-H,annual,2013,gas oil combustion consumption by to the public,7.26012,TJ,CO2,74100.0,kg/TJ,537974.892,kg -b4b975fd-8944-32ae-a018-9e853d305f7d,SESCO,II.1.1,Chaco,AR-H,annual,2013,gas oil combustion consumption by to the public,7.26012,TJ,CH4,3.9,kg/TJ,28.314467999999998,kg -b4b975fd-8944-32ae-a018-9e853d305f7d,SESCO,II.1.1,Chaco,AR-H,annual,2013,gas oil combustion consumption by to the public,7.26012,TJ,N2O,3.9,kg/TJ,28.314467999999998,kg -7514b010-e392-391d-80e2-530172942b6f,SESCO,II.1.1,Corrientes,AR-W,annual,2013,gas oil combustion consumption by to the public,54.61344,TJ,CO2,74100.0,kg/TJ,4046855.9039999996,kg -6be5fe49-251e-3664-ae4a-32ffb1f8e9e3,SESCO,II.1.1,Corrientes,AR-W,annual,2013,gas oil combustion consumption by to the public,54.61344,TJ,CH4,3.9,kg/TJ,212.992416,kg -6be5fe49-251e-3664-ae4a-32ffb1f8e9e3,SESCO,II.1.1,Corrientes,AR-W,annual,2013,gas oil combustion consumption by to the public,54.61344,TJ,N2O,3.9,kg/TJ,212.992416,kg -5a54d310-bde0-3c0d-9f96-a6bd627a61dd,SESCO,II.1.1,Córdoba,AR-X,annual,2013,gas oil combustion consumption by to the public,713.22552,TJ,CO2,74100.0,kg/TJ,52850011.032,kg -e52f648b-539c-31b8-8bb5-cff9aa98cf95,SESCO,II.1.1,Córdoba,AR-X,annual,2013,gas oil combustion consumption by to the public,713.22552,TJ,CH4,3.9,kg/TJ,2781.5795279999998,kg -e52f648b-539c-31b8-8bb5-cff9aa98cf95,SESCO,II.1.1,Córdoba,AR-X,annual,2013,gas oil combustion consumption by to the public,713.22552,TJ,N2O,3.9,kg/TJ,2781.5795279999998,kg -bf227b4c-1a03-3344-a6a9-ac0b6cbfe4b4,SESCO,II.1.1,Entre Rios,AR-E,annual,2013,gas oil combustion consumption by to the public,515.93808,TJ,CO2,74100.0,kg/TJ,38231011.728,kg -6e0b1a2f-6ec0-3c6e-a45e-836c96a43177,SESCO,II.1.1,Entre Rios,AR-E,annual,2013,gas oil combustion consumption by to the public,515.93808,TJ,CH4,3.9,kg/TJ,2012.158512,kg -6e0b1a2f-6ec0-3c6e-a45e-836c96a43177,SESCO,II.1.1,Entre Rios,AR-E,annual,2013,gas oil combustion consumption by to the public,515.93808,TJ,N2O,3.9,kg/TJ,2012.158512,kg -3f2245f6-ae19-372f-9c66-aa7203560cc7,SESCO,II.1.1,La Pampa,AR-L,annual,2013,gas oil combustion consumption by to the public,51.8322,TJ,CO2,74100.0,kg/TJ,3840766.02,kg -8f4d81a8-d9e6-3b95-bf8c-440ea33bbdff,SESCO,II.1.1,La Pampa,AR-L,annual,2013,gas oil combustion consumption by to the public,51.8322,TJ,CH4,3.9,kg/TJ,202.14558,kg -8f4d81a8-d9e6-3b95-bf8c-440ea33bbdff,SESCO,II.1.1,La Pampa,AR-L,annual,2013,gas oil combustion consumption by to the public,51.8322,TJ,N2O,3.9,kg/TJ,202.14558,kg -17ea134c-b82f-3a12-bc03-8e853753d811,SESCO,II.1.1,Rio Negro,AR-R,annual,2013,gas oil combustion consumption by to the public,66.42468,TJ,CO2,74100.0,kg/TJ,4922068.788,kg -d556de11-243c-3b31-a2bf-831c803efa99,SESCO,II.1.1,Rio Negro,AR-R,annual,2013,gas oil combustion consumption by to the public,66.42468,TJ,CH4,3.9,kg/TJ,259.056252,kg -d556de11-243c-3b31-a2bf-831c803efa99,SESCO,II.1.1,Rio Negro,AR-R,annual,2013,gas oil combustion consumption by to the public,66.42468,TJ,N2O,3.9,kg/TJ,259.056252,kg -9cd5cb7e-8911-3040-bbda-7e848dea50c1,SESCO,II.1.1,Salta,AR-A,annual,2013,gas oil combustion consumption by to the public,8.52432,TJ,CO2,74100.0,kg/TJ,631652.112,kg -facc4ccd-6ebb-344c-a7d7-4b78263388d6,SESCO,II.1.1,Salta,AR-A,annual,2013,gas oil combustion consumption by to the public,8.52432,TJ,CH4,3.9,kg/TJ,33.244848,kg -facc4ccd-6ebb-344c-a7d7-4b78263388d6,SESCO,II.1.1,Salta,AR-A,annual,2013,gas oil combustion consumption by to the public,8.52432,TJ,N2O,3.9,kg/TJ,33.244848,kg -014e2ae2-80dd-301f-bd09-bc7ac9bfea5d,SESCO,II.1.1,Santa Fe,AR-S,annual,2013,gas oil combustion consumption by to the public,466.157496,TJ,CO2,74100.0,kg/TJ,34542270.4536,kg -5bb86f0e-722f-30d3-ad57-eaf577caf29d,SESCO,II.1.1,Santa Fe,AR-S,annual,2013,gas oil combustion consumption by to the public,466.157496,TJ,CH4,3.9,kg/TJ,1818.0142343999999,kg -5bb86f0e-722f-30d3-ad57-eaf577caf29d,SESCO,II.1.1,Santa Fe,AR-S,annual,2013,gas oil combustion consumption by to the public,466.157496,TJ,N2O,3.9,kg/TJ,1818.0142343999999,kg -0f97af78-4bfd-3ede-b7a0-29abe8da3a0a,SESCO,II.1.1,Buenos Aires,AR-B,annual,2013,gas oil combustion consumption by to the public,218.52599999999998,TJ,CO2,74100.0,kg/TJ,16192776.599999998,kg -40a9f873-4321-3d65-bf66-d969c435cfba,SESCO,II.1.1,Buenos Aires,AR-B,annual,2013,gas oil combustion consumption by to the public,218.52599999999998,TJ,CH4,3.9,kg/TJ,852.2513999999999,kg -40a9f873-4321-3d65-bf66-d969c435cfba,SESCO,II.1.1,Buenos Aires,AR-B,annual,2013,gas oil combustion consumption by to the public,218.52599999999998,TJ,N2O,3.9,kg/TJ,852.2513999999999,kg -474fffa2-ecbd-33e4-b1b0-634f57fc5294,SESCO,II.1.1,Capital Federal,AR-C,annual,2013,gas oil combustion consumption by to the public,89.5776,TJ,CO2,74100.0,kg/TJ,6637700.16,kg -981a78de-3f3e-3be6-82c4-72a3f41e5b90,SESCO,II.1.1,Capital Federal,AR-C,annual,2013,gas oil combustion consumption by to the public,89.5776,TJ,CH4,3.9,kg/TJ,349.35264,kg -981a78de-3f3e-3be6-82c4-72a3f41e5b90,SESCO,II.1.1,Capital Federal,AR-C,annual,2013,gas oil combustion consumption by to the public,89.5776,TJ,N2O,3.9,kg/TJ,349.35264,kg -462a0323-2347-398b-8121-996b7526317e,SESCO,II.1.1,Chaco,AR-H,annual,2013,gas oil combustion consumption by to the public,0.65016,TJ,CO2,74100.0,kg/TJ,48176.856,kg -c10466f6-7772-3adc-b900-8664b256b525,SESCO,II.1.1,Chaco,AR-H,annual,2013,gas oil combustion consumption by to the public,0.65016,TJ,CH4,3.9,kg/TJ,2.535624,kg -c10466f6-7772-3adc-b900-8664b256b525,SESCO,II.1.1,Chaco,AR-H,annual,2013,gas oil combustion consumption by to the public,0.65016,TJ,N2O,3.9,kg/TJ,2.535624,kg -02493dbc-3e9b-33b7-9d08-08d345c450d4,SESCO,II.1.1,Córdoba,AR-X,annual,2013,gas oil combustion consumption by to the public,30.99096,TJ,CO2,74100.0,kg/TJ,2296430.136,kg -a077b79c-512b-3bd2-8635-605282cecca6,SESCO,II.1.1,Córdoba,AR-X,annual,2013,gas oil combustion consumption by to the public,30.99096,TJ,CH4,3.9,kg/TJ,120.864744,kg -a077b79c-512b-3bd2-8635-605282cecca6,SESCO,II.1.1,Córdoba,AR-X,annual,2013,gas oil combustion consumption by to the public,30.99096,TJ,N2O,3.9,kg/TJ,120.864744,kg -a824a990-f6d0-35cd-9c15-8add26d35b90,SESCO,II.1.1,Entre Rios,AR-E,annual,2013,gas oil combustion consumption by to the public,33.55548,TJ,CO2,74100.0,kg/TJ,2486461.0680000004,kg -25fa40f9-00de-3b7e-9f03-7001ea511811,SESCO,II.1.1,Entre Rios,AR-E,annual,2013,gas oil combustion consumption by to the public,33.55548,TJ,CH4,3.9,kg/TJ,130.866372,kg -25fa40f9-00de-3b7e-9f03-7001ea511811,SESCO,II.1.1,Entre Rios,AR-E,annual,2013,gas oil combustion consumption by to the public,33.55548,TJ,N2O,3.9,kg/TJ,130.866372,kg -7d866814-773a-3e0e-af6a-a6ed171612be,SESCO,II.1.1,Santa Fe,AR-S,annual,2013,gas oil combustion consumption by to the public,69.307056,TJ,CO2,74100.0,kg/TJ,5135652.8496,kg -67a97976-adee-3607-9cae-6c64dc9465cd,SESCO,II.1.1,Santa Fe,AR-S,annual,2013,gas oil combustion consumption by to the public,69.307056,TJ,CH4,3.9,kg/TJ,270.2975184,kg -67a97976-adee-3607-9cae-6c64dc9465cd,SESCO,II.1.1,Santa Fe,AR-S,annual,2013,gas oil combustion consumption by to the public,69.307056,TJ,N2O,3.9,kg/TJ,270.2975184,kg -802fc2e8-fe2c-3e19-ab5a-5db06306e1bf,SESCO,II.1.1,Tucuman,AR-T,annual,2013,gasoline combustion consumption by to the public,33.849187,TJ,CO2,69300.0,kg/TJ,2345748.6591,kg -9e76c46c-292d-3506-9db1-bff98d36f1e5,SESCO,II.1.1,Tucuman,AR-T,annual,2013,gasoline combustion consumption by to the public,33.849187,TJ,CH4,33.0,kg/TJ,1117.023171,kg -bca92644-6f41-39aa-8214-af8a8d663b6a,SESCO,II.1.1,Tucuman,AR-T,annual,2013,gasoline combustion consumption by to the public,33.849187,TJ,N2O,3.2,kg/TJ,108.3173984,kg -5ff6040c-2f93-3640-a4ab-73067938be99,SESCO,II.1.1,Catamarca,AR-K,annual,2013,gas oil combustion consumption by to the public,245.2298772,TJ,CO2,74100.0,kg/TJ,18171533.90052,kg -e50e40c5-92bc-3f81-85d5-ef8b07c266ed,SESCO,II.1.1,Catamarca,AR-K,annual,2013,gas oil combustion consumption by to the public,245.2298772,TJ,CH4,3.9,kg/TJ,956.39652108,kg -e50e40c5-92bc-3f81-85d5-ef8b07c266ed,SESCO,II.1.1,Catamarca,AR-K,annual,2013,gas oil combustion consumption by to the public,245.2298772,TJ,N2O,3.9,kg/TJ,956.39652108,kg -091d2525-fd30-35a3-9e3f-0026a5011601,SESCO,II.1.1,Chaco,AR-H,annual,2013,gas oil combustion consumption by to the public,190.0840284,TJ,CO2,74100.0,kg/TJ,14085226.50444,kg -02539866-12a2-3fe3-9cda-4e647886cb8f,SESCO,II.1.1,Chaco,AR-H,annual,2013,gas oil combustion consumption by to the public,190.0840284,TJ,CH4,3.9,kg/TJ,741.32771076,kg -02539866-12a2-3fe3-9cda-4e647886cb8f,SESCO,II.1.1,Chaco,AR-H,annual,2013,gas oil combustion consumption by to the public,190.0840284,TJ,N2O,3.9,kg/TJ,741.32771076,kg -2cc69358-e877-3b93-9c8a-ce164eb5309b,SESCO,II.1.1,Córdoba,AR-X,annual,2013,gas oil combustion consumption by to the public,109.1748672,TJ,CO2,74100.0,kg/TJ,8089857.659519999,kg -dee3112b-da06-3e1c-8102-749e67eaca8f,SESCO,II.1.1,Córdoba,AR-X,annual,2013,gas oil combustion consumption by to the public,109.1748672,TJ,CH4,3.9,kg/TJ,425.78198208,kg -dee3112b-da06-3e1c-8102-749e67eaca8f,SESCO,II.1.1,Córdoba,AR-X,annual,2013,gas oil combustion consumption by to the public,109.1748672,TJ,N2O,3.9,kg/TJ,425.78198208,kg -df6368b3-a028-396d-ade0-fbdd2062aa20,SESCO,II.1.1,Jujuy,AR-Y,annual,2013,gas oil combustion consumption by to the public,926.8110264000001,TJ,CO2,74100.0,kg/TJ,68676697.05624,kg -89180a4f-144d-3bbf-a378-d1c8e582bb3a,SESCO,II.1.1,Jujuy,AR-Y,annual,2013,gas oil combustion consumption by to the public,926.8110264000001,TJ,CH4,3.9,kg/TJ,3614.56300296,kg -89180a4f-144d-3bbf-a378-d1c8e582bb3a,SESCO,II.1.1,Jujuy,AR-Y,annual,2013,gas oil combustion consumption by to the public,926.8110264000001,TJ,N2O,3.9,kg/TJ,3614.56300296,kg -dce0922f-92d5-34df-b215-bd2f18599fc2,SESCO,II.1.1,La Rioja,AR-F,annual,2013,gas oil combustion consumption by to the public,199.9469556,TJ,CO2,74100.0,kg/TJ,14816069.40996,kg -7dc4e6b6-9aaa-3de0-aa1b-2d9861d91f39,SESCO,II.1.1,La Rioja,AR-F,annual,2013,gas oil combustion consumption by to the public,199.9469556,TJ,CH4,3.9,kg/TJ,779.79312684,kg -7dc4e6b6-9aaa-3de0-aa1b-2d9861d91f39,SESCO,II.1.1,La Rioja,AR-F,annual,2013,gas oil combustion consumption by to the public,199.9469556,TJ,N2O,3.9,kg/TJ,779.79312684,kg -b9596eea-1011-3e56-91ed-237d2c27a700,SESCO,II.1.1,Salta,AR-A,annual,2013,gas oil combustion consumption by to the public,2231.7005676,TJ,CO2,74100.0,kg/TJ,165369012.05916,kg -14246f7c-d79e-3bfa-9d92-e6d8f2c1276c,SESCO,II.1.1,Salta,AR-A,annual,2013,gas oil combustion consumption by to the public,2231.7005676,TJ,CH4,3.9,kg/TJ,8703.63221364,kg -14246f7c-d79e-3bfa-9d92-e6d8f2c1276c,SESCO,II.1.1,Salta,AR-A,annual,2013,gas oil combustion consumption by to the public,2231.7005676,TJ,N2O,3.9,kg/TJ,8703.63221364,kg -d654a662-0a89-361a-8810-bdc798877d1c,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2013,gas oil combustion consumption by to the public,515.3912232,TJ,CO2,74100.0,kg/TJ,38190489.63912,kg -b156f2fe-7d1d-34d2-bae3-24d2fdb0f621,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2013,gas oil combustion consumption by to the public,515.3912232,TJ,CH4,3.9,kg/TJ,2010.02577048,kg -b156f2fe-7d1d-34d2-bae3-24d2fdb0f621,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2013,gas oil combustion consumption by to the public,515.3912232,TJ,N2O,3.9,kg/TJ,2010.02577048,kg -aecb56cb-e919-37ab-8f58-16d515a472e6,SESCO,II.1.1,Tucuman,AR-T,annual,2013,gas oil combustion consumption by to the public,2840.8007964,TJ,CO2,74100.0,kg/TJ,210503339.01323998,kg -249b0101-de29-332a-923e-509386027c54,SESCO,II.1.1,Tucuman,AR-T,annual,2013,gas oil combustion consumption by to the public,2840.8007964,TJ,CH4,3.9,kg/TJ,11079.12310596,kg -249b0101-de29-332a-923e-509386027c54,SESCO,II.1.1,Tucuman,AR-T,annual,2013,gas oil combustion consumption by to the public,2840.8007964,TJ,N2O,3.9,kg/TJ,11079.12310596,kg -f99d159b-89fe-3003-9a18-460757d693fa,SESCO,II.1.1,Catamarca,AR-K,annual,2013,gas oil combustion consumption by to the public,0.5721408,TJ,CO2,74100.0,kg/TJ,42395.63328,kg -623f80fa-5b13-3349-93e7-c4710ddff845,SESCO,II.1.1,Catamarca,AR-K,annual,2013,gas oil combustion consumption by to the public,0.5721408,TJ,CH4,3.9,kg/TJ,2.23134912,kg -623f80fa-5b13-3349-93e7-c4710ddff845,SESCO,II.1.1,Catamarca,AR-K,annual,2013,gas oil combustion consumption by to the public,0.5721408,TJ,N2O,3.9,kg/TJ,2.23134912,kg -d4a45ce9-f533-3e13-af94-9663d79e8e42,SESCO,II.1.1,Jujuy,AR-Y,annual,2013,gas oil combustion consumption by to the public,1.1764284,TJ,CO2,74100.0,kg/TJ,87173.34444,kg -df5e5f04-e579-394f-afd7-802946c788a9,SESCO,II.1.1,Jujuy,AR-Y,annual,2013,gas oil combustion consumption by to the public,1.1764284,TJ,CH4,3.9,kg/TJ,4.58807076,kg -df5e5f04-e579-394f-afd7-802946c788a9,SESCO,II.1.1,Jujuy,AR-Y,annual,2013,gas oil combustion consumption by to the public,1.1764284,TJ,N2O,3.9,kg/TJ,4.58807076,kg -b4d06cfd-5087-3cfd-983f-edb48c0be25b,SESCO,II.1.1,La Rioja,AR-F,annual,2013,gas oil combustion consumption by to the public,0.178794,TJ,CO2,74100.0,kg/TJ,13248.635400000001,kg -91013f65-2041-352c-bc24-009c8d2be36e,SESCO,II.1.1,La Rioja,AR-F,annual,2013,gas oil combustion consumption by to the public,0.178794,TJ,CH4,3.9,kg/TJ,0.6972966,kg -91013f65-2041-352c-bc24-009c8d2be36e,SESCO,II.1.1,La Rioja,AR-F,annual,2013,gas oil combustion consumption by to the public,0.178794,TJ,N2O,3.9,kg/TJ,0.6972966,kg -8cc4ae82-c275-340e-b112-ba38b6726cf1,SESCO,II.1.1,Salta,AR-A,annual,2013,gas oil combustion consumption by to the public,1.964928,TJ,CO2,74100.0,kg/TJ,145601.1648,kg -8147d48b-c9ae-3d84-80c2-b3cb5469bfca,SESCO,II.1.1,Salta,AR-A,annual,2013,gas oil combustion consumption by to the public,1.964928,TJ,CH4,3.9,kg/TJ,7.6632191999999995,kg -8147d48b-c9ae-3d84-80c2-b3cb5469bfca,SESCO,II.1.1,Salta,AR-A,annual,2013,gas oil combustion consumption by to the public,1.964928,TJ,N2O,3.9,kg/TJ,7.6632191999999995,kg -a165a6c7-e4e6-3157-acdb-5157cdd9673c,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2013,gas oil combustion consumption by to the public,2.2867572,TJ,CO2,74100.0,kg/TJ,169448.70852,kg -cb145f98-e0ee-3112-b657-55ec2dd1f653,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2013,gas oil combustion consumption by to the public,2.2867572,TJ,CH4,3.9,kg/TJ,8.91835308,kg -cb145f98-e0ee-3112-b657-55ec2dd1f653,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2013,gas oil combustion consumption by to the public,2.2867572,TJ,N2O,3.9,kg/TJ,8.91835308,kg -a6ec3988-3ed6-3ec0-996e-f9332b2356d9,SESCO,II.1.1,Tucuman,AR-T,annual,2013,gas oil combustion consumption by to the public,4.8624744,TJ,CO2,74100.0,kg/TJ,360309.35304,kg -cdfe2964-7b43-3570-a0e1-9f1f55ee8d8a,SESCO,II.1.1,Tucuman,AR-T,annual,2013,gas oil combustion consumption by to the public,4.8624744,TJ,CH4,3.9,kg/TJ,18.96365016,kg -cdfe2964-7b43-3570-a0e1-9f1f55ee8d8a,SESCO,II.1.1,Tucuman,AR-T,annual,2013,gas oil combustion consumption by to the public,4.8624744,TJ,N2O,3.9,kg/TJ,18.96365016,kg -f1605a02-9c4b-37ad-9146-d1fa42571eff,SESCO,I.3.1,Buenos Aires,AR-B,annual,2013,gasoline combustion consumption by petrochemical industries,52.88091,TJ,CO2,69300.0,kg/TJ,3664647.063,kg -3676827b-945a-304c-8147-45481f0d8db8,SESCO,I.3.1,Buenos Aires,AR-B,annual,2013,gasoline combustion consumption by petrochemical industries,52.88091,TJ,CH4,33.0,kg/TJ,1745.07003,kg -b1e54764-db53-3fc2-a65e-7edd7e7c5fbb,SESCO,I.3.1,Buenos Aires,AR-B,annual,2013,gasoline combustion consumption by petrochemical industries,52.88091,TJ,N2O,3.2,kg/TJ,169.21891200000002,kg -036afb20-974a-37a7-a3ff-7dff43c75529,SESCO,I.3.1,Santa Fe,AR-S,annual,2013,gasoline combustion consumption by petrochemical industries,4.663904,TJ,CO2,69300.0,kg/TJ,323208.5472,kg -ed499de9-55e2-374a-b6ac-048300444bb4,SESCO,I.3.1,Santa Fe,AR-S,annual,2013,gasoline combustion consumption by petrochemical industries,4.663904,TJ,CH4,33.0,kg/TJ,153.908832,kg -1d9684d7-f383-38f8-88f8-a144c3cafac5,SESCO,I.3.1,Santa Fe,AR-S,annual,2013,gasoline combustion consumption by petrochemical industries,4.663904,TJ,N2O,3.2,kg/TJ,14.9244928,kg -8652110c-e65b-3e66-a670-1f855facb936,SESCO,II.5.1,Buenos Aires,AR-B,annual,2013,gas oil combustion consumption by agriculture machines,407.54196,TJ,CO2,74100.0,kg/TJ,30198859.236,kg -d6555e4a-1da6-3f45-90b1-fdc5f5174db8,SESCO,II.5.1,Buenos Aires,AR-B,annual,2013,gas oil combustion consumption by agriculture machines,407.54196,TJ,CH4,3.9,kg/TJ,1589.413644,kg -d6555e4a-1da6-3f45-90b1-fdc5f5174db8,SESCO,II.5.1,Buenos Aires,AR-B,annual,2013,gas oil combustion consumption by agriculture machines,407.54196,TJ,N2O,3.9,kg/TJ,1589.413644,kg -d9d70abd-3753-3ede-9bdd-82350413cb11,SESCO,II.5.1,Capital Federal,AR-C,annual,2013,gas oil combustion consumption by agriculture machines,87.33816,TJ,CO2,74100.0,kg/TJ,6471757.656,kg -06322cd8-d529-3e82-8c06-5e1091365da7,SESCO,II.5.1,Capital Federal,AR-C,annual,2013,gas oil combustion consumption by agriculture machines,87.33816,TJ,CH4,3.9,kg/TJ,340.618824,kg -06322cd8-d529-3e82-8c06-5e1091365da7,SESCO,II.5.1,Capital Federal,AR-C,annual,2013,gas oil combustion consumption by agriculture machines,87.33816,TJ,N2O,3.9,kg/TJ,340.618824,kg -51505052-e7cc-3643-bb07-5150d86a1485,SESCO,II.5.1,Córdoba,AR-X,annual,2013,gas oil combustion consumption by agriculture machines,156.86916,TJ,CO2,74100.0,kg/TJ,11624004.756,kg -c2423173-fe05-3ee7-a8d9-be83c0c7b40e,SESCO,II.5.1,Córdoba,AR-X,annual,2013,gas oil combustion consumption by agriculture machines,156.86916,TJ,CH4,3.9,kg/TJ,611.789724,kg -c2423173-fe05-3ee7-a8d9-be83c0c7b40e,SESCO,II.5.1,Córdoba,AR-X,annual,2013,gas oil combustion consumption by agriculture machines,156.86916,TJ,N2O,3.9,kg/TJ,611.789724,kg -024469e2-5583-3949-b2fd-9eea25743c7d,SESCO,II.5.1,Santa Fe,AR-S,annual,2013,gas oil combustion consumption by agriculture machines,606.88824,TJ,CO2,74100.0,kg/TJ,44970418.584,kg -24236ebe-c44c-384b-8371-599bae45aa24,SESCO,II.5.1,Santa Fe,AR-S,annual,2013,gas oil combustion consumption by agriculture machines,606.88824,TJ,CH4,3.9,kg/TJ,2366.864136,kg -24236ebe-c44c-384b-8371-599bae45aa24,SESCO,II.5.1,Santa Fe,AR-S,annual,2013,gas oil combustion consumption by agriculture machines,606.88824,TJ,N2O,3.9,kg/TJ,2366.864136,kg -d113f0ab-dfbd-3999-8b01-9f72fcf4d211,SESCO,II.5.1,Buenos Aires,AR-B,annual,2013,gas oil combustion consumption by agriculture machines,3.90096,TJ,CO2,74100.0,kg/TJ,289061.136,kg -7928a8e8-1873-356b-a5cd-4495eec8a987,SESCO,II.5.1,Buenos Aires,AR-B,annual,2013,gas oil combustion consumption by agriculture machines,3.90096,TJ,CH4,3.9,kg/TJ,15.213744,kg -7928a8e8-1873-356b-a5cd-4495eec8a987,SESCO,II.5.1,Buenos Aires,AR-B,annual,2013,gas oil combustion consumption by agriculture machines,3.90096,TJ,N2O,3.9,kg/TJ,15.213744,kg -752ccbdc-bc28-3a66-943f-c80529d7645c,SESCO,II.5.1,Capital Federal,AR-C,annual,2013,gas oil combustion consumption by agriculture machines,3.82872,TJ,CO2,74100.0,kg/TJ,283708.152,kg -bd726c0b-ec0b-38f0-98a2-ed69e674644a,SESCO,II.5.1,Capital Federal,AR-C,annual,2013,gas oil combustion consumption by agriculture machines,3.82872,TJ,CH4,3.9,kg/TJ,14.932008,kg -bd726c0b-ec0b-38f0-98a2-ed69e674644a,SESCO,II.5.1,Capital Federal,AR-C,annual,2013,gas oil combustion consumption by agriculture machines,3.82872,TJ,N2O,3.9,kg/TJ,14.932008,kg -9b5b91d0-810b-355e-8a1a-ad79d408dd2e,SESCO,II.5.1,Santa Fe,AR-S,annual,2013,gas oil combustion consumption by agriculture machines,20.15496,TJ,CO2,74100.0,kg/TJ,1493482.5359999998,kg -2b1b94c7-b79b-3394-8c18-132eb7916bb9,SESCO,II.5.1,Santa Fe,AR-S,annual,2013,gas oil combustion consumption by agriculture machines,20.15496,TJ,CH4,3.9,kg/TJ,78.604344,kg -2b1b94c7-b79b-3394-8c18-132eb7916bb9,SESCO,II.5.1,Santa Fe,AR-S,annual,2013,gas oil combustion consumption by agriculture machines,20.15496,TJ,N2O,3.9,kg/TJ,78.604344,kg -d92ec361-3caa-35de-af49-94ec96e5b9c5,SESCO,II.1.1,Buenos Aires,AR-B,annual,2013,gas oil combustion consumption by to the public,13211.9736,TJ,CO2,74100.0,kg/TJ,979007243.76,kg -29298e4f-901d-3584-96f7-2423a4d41bec,SESCO,II.1.1,Buenos Aires,AR-B,annual,2013,gas oil combustion consumption by to the public,13211.9736,TJ,CH4,3.9,kg/TJ,51526.69704,kg -29298e4f-901d-3584-96f7-2423a4d41bec,SESCO,II.1.1,Buenos Aires,AR-B,annual,2013,gas oil combustion consumption by to the public,13211.9736,TJ,N2O,3.9,kg/TJ,51526.69704,kg -668834e1-b04d-3b05-86cf-fdabcd80dc59,SESCO,II.1.1,Capital Federal,AR-C,annual,2013,gas oil combustion consumption by to the public,1052.60904,TJ,CO2,74100.0,kg/TJ,77998329.86400001,kg -7adbe922-6491-3e8e-b3df-aeab3d39268f,SESCO,II.1.1,Capital Federal,AR-C,annual,2013,gas oil combustion consumption by to the public,1052.60904,TJ,CH4,3.9,kg/TJ,4105.175256,kg -7adbe922-6491-3e8e-b3df-aeab3d39268f,SESCO,II.1.1,Capital Federal,AR-C,annual,2013,gas oil combustion consumption by to the public,1052.60904,TJ,N2O,3.9,kg/TJ,4105.175256,kg -86c16878-1d49-33e6-8985-d6e5f9aebbf6,SESCO,II.1.1,Catamarca,AR-K,annual,2013,gas oil combustion consumption by to the public,22.9362,TJ,CO2,74100.0,kg/TJ,1699572.42,kg -2653b0c7-90c0-381f-9129-4d63bde303b5,SESCO,II.1.1,Catamarca,AR-K,annual,2013,gas oil combustion consumption by to the public,22.9362,TJ,CH4,3.9,kg/TJ,89.45118,kg -2653b0c7-90c0-381f-9129-4d63bde303b5,SESCO,II.1.1,Catamarca,AR-K,annual,2013,gas oil combustion consumption by to the public,22.9362,TJ,N2O,3.9,kg/TJ,89.45118,kg -5e43a137-d12c-3597-b61e-76dbc7a8a95c,SESCO,II.1.1,Chaco,AR-H,annual,2013,gas oil combustion consumption by to the public,1450.32636,TJ,CO2,74100.0,kg/TJ,107469183.27600001,kg -cdc5429c-80ca-3b21-bb20-6fcf767d58fc,SESCO,II.1.1,Chaco,AR-H,annual,2013,gas oil combustion consumption by to the public,1450.32636,TJ,CH4,3.9,kg/TJ,5656.272804,kg -cdc5429c-80ca-3b21-bb20-6fcf767d58fc,SESCO,II.1.1,Chaco,AR-H,annual,2013,gas oil combustion consumption by to the public,1450.32636,TJ,N2O,3.9,kg/TJ,5656.272804,kg -6215c0ef-dd3f-340f-8b6d-55c772f4475e,SESCO,II.1.1,Chubut,AR-U,annual,2013,gas oil combustion consumption by to the public,12.605879999999999,TJ,CO2,74100.0,kg/TJ,934095.708,kg -2986318c-c045-3e44-98ae-d5139bb143dc,SESCO,II.1.1,Chubut,AR-U,annual,2013,gas oil combustion consumption by to the public,12.605879999999999,TJ,CH4,3.9,kg/TJ,49.162932,kg -2986318c-c045-3e44-98ae-d5139bb143dc,SESCO,II.1.1,Chubut,AR-U,annual,2013,gas oil combustion consumption by to the public,12.605879999999999,TJ,N2O,3.9,kg/TJ,49.162932,kg -2f322680-eb39-30ac-9405-d75ae1c9ca71,SESCO,II.1.1,Corrientes,AR-W,annual,2013,gas oil combustion consumption by to the public,643.76676,TJ,CO2,74100.0,kg/TJ,47703116.916,kg -c73fa75e-482f-32a9-a763-fe0387c28f5e,SESCO,II.1.1,Corrientes,AR-W,annual,2013,gas oil combustion consumption by to the public,643.76676,TJ,CH4,3.9,kg/TJ,2510.690364,kg -c73fa75e-482f-32a9-a763-fe0387c28f5e,SESCO,II.1.1,Corrientes,AR-W,annual,2013,gas oil combustion consumption by to the public,643.76676,TJ,N2O,3.9,kg/TJ,2510.690364,kg -acaccb1d-e380-3268-af10-6513a11bc502,SESCO,II.1.1,Córdoba,AR-X,annual,2013,gas oil combustion consumption by to the public,4641.7812,TJ,CO2,74100.0,kg/TJ,343955986.92,kg -a6b8507d-781a-322f-b1a6-e99a1cd685e4,SESCO,II.1.1,Córdoba,AR-X,annual,2013,gas oil combustion consumption by to the public,4641.7812,TJ,CH4,3.9,kg/TJ,18102.94668,kg -a6b8507d-781a-322f-b1a6-e99a1cd685e4,SESCO,II.1.1,Córdoba,AR-X,annual,2013,gas oil combustion consumption by to the public,4641.7812,TJ,N2O,3.9,kg/TJ,18102.94668,kg -6b9b6077-5868-3e24-8a5c-2fadcb0599b0,SESCO,II.1.1,Entre Rios,AR-E,annual,2013,gas oil combustion consumption by to the public,1283.8854,TJ,CO2,74100.0,kg/TJ,95135908.13999999,kg -de9d33be-446e-34ac-97d8-0aa2f2ccbda1,SESCO,II.1.1,Entre Rios,AR-E,annual,2013,gas oil combustion consumption by to the public,1283.8854,TJ,CH4,3.9,kg/TJ,5007.15306,kg -de9d33be-446e-34ac-97d8-0aa2f2ccbda1,SESCO,II.1.1,Entre Rios,AR-E,annual,2013,gas oil combustion consumption by to the public,1283.8854,TJ,N2O,3.9,kg/TJ,5007.15306,kg -90ab554e-e895-3f7f-be36-e66acdbfad57,SESCO,II.1.1,Formosa,AR-P,annual,2013,gas oil combustion consumption by to the public,219.7902,TJ,CO2,74100.0,kg/TJ,16286453.82,kg -6669e13d-5076-395c-bd35-5151917ddbbf,SESCO,II.1.1,Formosa,AR-P,annual,2013,gas oil combustion consumption by to the public,219.7902,TJ,CH4,3.9,kg/TJ,857.18178,kg -6669e13d-5076-395c-bd35-5151917ddbbf,SESCO,II.1.1,Formosa,AR-P,annual,2013,gas oil combustion consumption by to the public,219.7902,TJ,N2O,3.9,kg/TJ,857.18178,kg -370e906a-a063-382f-aa72-aa70649dc4f4,SESCO,II.1.1,Jujuy,AR-Y,annual,2013,gas oil combustion consumption by to the public,178.93848,TJ,CO2,74100.0,kg/TJ,13259341.368,kg -837be226-d3d0-3522-a0e7-cbfbd6d4ebdb,SESCO,II.1.1,Jujuy,AR-Y,annual,2013,gas oil combustion consumption by to the public,178.93848,TJ,CH4,3.9,kg/TJ,697.860072,kg -837be226-d3d0-3522-a0e7-cbfbd6d4ebdb,SESCO,II.1.1,Jujuy,AR-Y,annual,2013,gas oil combustion consumption by to the public,178.93848,TJ,N2O,3.9,kg/TJ,697.860072,kg -0fcfe51f-738c-3fac-9dc8-30c0a778998c,SESCO,II.1.1,La Pampa,AR-L,annual,2013,gas oil combustion consumption by to the public,465.55068,TJ,CO2,74100.0,kg/TJ,34497305.388,kg -34bd9b3c-6b67-3a08-b778-56757f69439b,SESCO,II.1.1,La Pampa,AR-L,annual,2013,gas oil combustion consumption by to the public,465.55068,TJ,CH4,3.9,kg/TJ,1815.6476519999999,kg -34bd9b3c-6b67-3a08-b778-56757f69439b,SESCO,II.1.1,La Pampa,AR-L,annual,2013,gas oil combustion consumption by to the public,465.55068,TJ,N2O,3.9,kg/TJ,1815.6476519999999,kg -6771ba6d-f0d7-342c-ab5e-055e1257c53b,SESCO,II.1.1,La Rioja,AR-F,annual,2013,gas oil combustion consumption by to the public,336.9996,TJ,CO2,74100.0,kg/TJ,24971670.36,kg -94410eb9-5834-336b-821f-132e420f0c74,SESCO,II.1.1,La Rioja,AR-F,annual,2013,gas oil combustion consumption by to the public,336.9996,TJ,CH4,3.9,kg/TJ,1314.29844,kg -94410eb9-5834-336b-821f-132e420f0c74,SESCO,II.1.1,La Rioja,AR-F,annual,2013,gas oil combustion consumption by to the public,336.9996,TJ,N2O,3.9,kg/TJ,1314.29844,kg -f77408e1-dbae-3747-b456-9fa48c466670,SESCO,II.1.1,Mendoza,AR-M,annual,2013,gas oil combustion consumption by to the public,804.46464,TJ,CO2,74100.0,kg/TJ,59610829.824,kg -63698560-9535-3218-8726-efbfd048ebaa,SESCO,II.1.1,Mendoza,AR-M,annual,2013,gas oil combustion consumption by to the public,804.46464,TJ,CH4,3.9,kg/TJ,3137.412096,kg -63698560-9535-3218-8726-efbfd048ebaa,SESCO,II.1.1,Mendoza,AR-M,annual,2013,gas oil combustion consumption by to the public,804.46464,TJ,N2O,3.9,kg/TJ,3137.412096,kg -fb9e3925-1573-3259-a12b-c4a9ba941148,SESCO,II.1.1,Misiones,AR-N,annual,2013,gas oil combustion consumption by to the public,1342.18308,TJ,CO2,74100.0,kg/TJ,99455766.228,kg -8dc735e5-751d-32b9-9c03-d1cb16ecf71e,SESCO,II.1.1,Misiones,AR-N,annual,2013,gas oil combustion consumption by to the public,1342.18308,TJ,CH4,3.9,kg/TJ,5234.514012,kg -8dc735e5-751d-32b9-9c03-d1cb16ecf71e,SESCO,II.1.1,Misiones,AR-N,annual,2013,gas oil combustion consumption by to the public,1342.18308,TJ,N2O,3.9,kg/TJ,5234.514012,kg -a8b935ee-44f3-35c1-ab06-1231cdf3ee53,SESCO,II.1.1,Neuquén,AR-Q,annual,2013,gas oil combustion consumption by to the public,399.41496,TJ,CO2,74100.0,kg/TJ,29596648.536000002,kg -7fdc371e-77ce-3e9c-8b8e-d0107b3a25dd,SESCO,II.1.1,Neuquén,AR-Q,annual,2013,gas oil combustion consumption by to the public,399.41496,TJ,CH4,3.9,kg/TJ,1557.718344,kg -7fdc371e-77ce-3e9c-8b8e-d0107b3a25dd,SESCO,II.1.1,Neuquén,AR-Q,annual,2013,gas oil combustion consumption by to the public,399.41496,TJ,N2O,3.9,kg/TJ,1557.718344,kg -ffe2ad0d-bcab-3293-8c86-1287135a16e1,SESCO,II.1.1,Rio Negro,AR-R,annual,2013,gas oil combustion consumption by to the public,294.95592,TJ,CO2,74100.0,kg/TJ,21856233.672,kg -6de9e627-a50f-39e5-9614-35cf53e6f535,SESCO,II.1.1,Rio Negro,AR-R,annual,2013,gas oil combustion consumption by to the public,294.95592,TJ,CH4,3.9,kg/TJ,1150.328088,kg -6de9e627-a50f-39e5-9614-35cf53e6f535,SESCO,II.1.1,Rio Negro,AR-R,annual,2013,gas oil combustion consumption by to the public,294.95592,TJ,N2O,3.9,kg/TJ,1150.328088,kg -ae62aa47-277c-3abe-bdd9-9e47957d9808,SESCO,II.1.1,Salta,AR-A,annual,2013,gas oil combustion consumption by to the public,284.37275999999997,TJ,CO2,74100.0,kg/TJ,21072021.516,kg -81ffebaf-9692-3cd9-ab51-864644603583,SESCO,II.1.1,Salta,AR-A,annual,2013,gas oil combustion consumption by to the public,284.37275999999997,TJ,CH4,3.9,kg/TJ,1109.0537639999998,kg -81ffebaf-9692-3cd9-ab51-864644603583,SESCO,II.1.1,Salta,AR-A,annual,2013,gas oil combustion consumption by to the public,284.37275999999997,TJ,N2O,3.9,kg/TJ,1109.0537639999998,kg -6c662581-9297-3f2b-8da1-27a593e00cd4,SESCO,II.1.1,San Juan,AR-J,annual,2013,gas oil combustion consumption by to the public,243.15984,TJ,CO2,74100.0,kg/TJ,18018144.144,kg -b796f837-8a3e-371d-9b08-1ea03d483b6d,SESCO,II.1.1,San Juan,AR-J,annual,2013,gas oil combustion consumption by to the public,243.15984,TJ,CH4,3.9,kg/TJ,948.3233759999999,kg -b796f837-8a3e-371d-9b08-1ea03d483b6d,SESCO,II.1.1,San Juan,AR-J,annual,2013,gas oil combustion consumption by to the public,243.15984,TJ,N2O,3.9,kg/TJ,948.3233759999999,kg -e4cb96cb-28b1-3c7f-bd21-ae2c40813734,SESCO,II.1.1,San Luis,AR-D,annual,2013,gas oil combustion consumption by to the public,17.95164,TJ,CO2,74100.0,kg/TJ,1330216.524,kg -8703c9ac-ece0-356a-a456-60b25d508ea4,SESCO,II.1.1,San Luis,AR-D,annual,2013,gas oil combustion consumption by to the public,17.95164,TJ,CH4,3.9,kg/TJ,70.011396,kg -8703c9ac-ece0-356a-a456-60b25d508ea4,SESCO,II.1.1,San Luis,AR-D,annual,2013,gas oil combustion consumption by to the public,17.95164,TJ,N2O,3.9,kg/TJ,70.011396,kg -89d68989-0ac9-3827-9468-a5351a98f3c3,SESCO,II.1.1,Santa Fe,AR-S,annual,2013,gas oil combustion consumption by to the public,4970.00364,TJ,CO2,74100.0,kg/TJ,368277269.724,kg -065c265f-80ff-33bf-916d-470ba298a30a,SESCO,II.1.1,Santa Fe,AR-S,annual,2013,gas oil combustion consumption by to the public,4970.00364,TJ,CH4,3.9,kg/TJ,19383.014196,kg -065c265f-80ff-33bf-916d-470ba298a30a,SESCO,II.1.1,Santa Fe,AR-S,annual,2013,gas oil combustion consumption by to the public,4970.00364,TJ,N2O,3.9,kg/TJ,19383.014196,kg -53c576bd-7f98-3d6f-aff7-99cecebd511a,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2013,gas oil combustion consumption by to the public,444.85392,TJ,CO2,74100.0,kg/TJ,32963675.472000003,kg -e74a699e-ebbf-3580-a21f-205dd8facb1c,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2013,gas oil combustion consumption by to the public,444.85392,TJ,CH4,3.9,kg/TJ,1734.930288,kg -e74a699e-ebbf-3580-a21f-205dd8facb1c,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2013,gas oil combustion consumption by to the public,444.85392,TJ,N2O,3.9,kg/TJ,1734.930288,kg -925e148a-3c88-322b-9073-83a6519ee2e6,SESCO,II.1.1,Tucuman,AR-T,annual,2013,gas oil combustion consumption by to the public,697.04376,TJ,CO2,74100.0,kg/TJ,51650942.616000004,kg -4abb6b45-2de6-3e23-b09c-9c446c22d93b,SESCO,II.1.1,Tucuman,AR-T,annual,2013,gas oil combustion consumption by to the public,697.04376,TJ,CH4,3.9,kg/TJ,2718.470664,kg -4abb6b45-2de6-3e23-b09c-9c446c22d93b,SESCO,II.1.1,Tucuman,AR-T,annual,2013,gas oil combustion consumption by to the public,697.04376,TJ,N2O,3.9,kg/TJ,2718.470664,kg -64faee15-c762-3f25-8f0c-bd4b226b6582,SESCO,II.1.1,Buenos Aires,AR-B,annual,2013,gas oil combustion consumption by to the public,6641.67336,TJ,CO2,74100.0,kg/TJ,492147995.976,kg -2fb63749-f0e7-3093-a6b9-89d5f954d168,SESCO,II.1.1,Buenos Aires,AR-B,annual,2013,gas oil combustion consumption by to the public,6641.67336,TJ,CH4,3.9,kg/TJ,25902.526103999997,kg -2fb63749-f0e7-3093-a6b9-89d5f954d168,SESCO,II.1.1,Buenos Aires,AR-B,annual,2013,gas oil combustion consumption by to the public,6641.67336,TJ,N2O,3.9,kg/TJ,25902.526103999997,kg -e5cc2eef-fab6-3de5-81b9-f4639c4cd516,SESCO,II.1.1,Capital Federal,AR-C,annual,2013,gas oil combustion consumption by to the public,1121.95944,TJ,CO2,74100.0,kg/TJ,83137194.50400001,kg -86e0a96f-b53c-3269-b758-d81c106c08b4,SESCO,II.1.1,Capital Federal,AR-C,annual,2013,gas oil combustion consumption by to the public,1121.95944,TJ,CH4,3.9,kg/TJ,4375.641816,kg -86e0a96f-b53c-3269-b758-d81c106c08b4,SESCO,II.1.1,Capital Federal,AR-C,annual,2013,gas oil combustion consumption by to the public,1121.95944,TJ,N2O,3.9,kg/TJ,4375.641816,kg -843bdc14-2f25-31f3-8197-09584b50b4bd,SESCO,II.1.1,Catamarca,AR-K,annual,2013,gas oil combustion consumption by to the public,28.31808,TJ,CO2,74100.0,kg/TJ,2098369.7279999997,kg -015e7233-09c5-3f11-853b-3fb6fe318138,SESCO,II.1.1,Catamarca,AR-K,annual,2013,gas oil combustion consumption by to the public,28.31808,TJ,CH4,3.9,kg/TJ,110.44051199999998,kg -015e7233-09c5-3f11-853b-3fb6fe318138,SESCO,II.1.1,Catamarca,AR-K,annual,2013,gas oil combustion consumption by to the public,28.31808,TJ,N2O,3.9,kg/TJ,110.44051199999998,kg -795c11e8-f004-3c88-af64-1d022655067f,SESCO,II.1.1,Chaco,AR-H,annual,2013,gas oil combustion consumption by to the public,316.66404,TJ,CO2,74100.0,kg/TJ,23464805.364,kg -19eb355f-1339-3337-a2bb-1b96d3455e30,SESCO,II.1.1,Chaco,AR-H,annual,2013,gas oil combustion consumption by to the public,316.66404,TJ,CH4,3.9,kg/TJ,1234.989756,kg -19eb355f-1339-3337-a2bb-1b96d3455e30,SESCO,II.1.1,Chaco,AR-H,annual,2013,gas oil combustion consumption by to the public,316.66404,TJ,N2O,3.9,kg/TJ,1234.989756,kg -596a830d-5d4f-395a-a06f-05d0798a370c,SESCO,II.1.1,Chubut,AR-U,annual,2013,gas oil combustion consumption by to the public,24.9228,TJ,CO2,74100.0,kg/TJ,1846779.48,kg -1b51c404-3896-39fa-9bf1-aad08add830e,SESCO,II.1.1,Chubut,AR-U,annual,2013,gas oil combustion consumption by to the public,24.9228,TJ,CH4,3.9,kg/TJ,97.19891999999999,kg -1b51c404-3896-39fa-9bf1-aad08add830e,SESCO,II.1.1,Chubut,AR-U,annual,2013,gas oil combustion consumption by to the public,24.9228,TJ,N2O,3.9,kg/TJ,97.19891999999999,kg -7b32a55e-d8c0-31e7-9df8-94a2041bfadb,SESCO,II.1.1,Corrientes,AR-W,annual,2013,gas oil combustion consumption by to the public,245.83272,TJ,CO2,74100.0,kg/TJ,18216204.552,kg -3bc37b92-e550-3716-bec7-0e6024c378a2,SESCO,II.1.1,Corrientes,AR-W,annual,2013,gas oil combustion consumption by to the public,245.83272,TJ,CH4,3.9,kg/TJ,958.747608,kg -3bc37b92-e550-3716-bec7-0e6024c378a2,SESCO,II.1.1,Corrientes,AR-W,annual,2013,gas oil combustion consumption by to the public,245.83272,TJ,N2O,3.9,kg/TJ,958.747608,kg -2bb42fbf-cd28-37a1-b3e8-5c412498bcde,SESCO,II.1.1,Córdoba,AR-X,annual,2013,gas oil combustion consumption by to the public,1322.02812,TJ,CO2,74100.0,kg/TJ,97962283.692,kg -e7d7c108-ef99-3aa5-a0c6-b3ef2c64f9f0,SESCO,II.1.1,Córdoba,AR-X,annual,2013,gas oil combustion consumption by to the public,1322.02812,TJ,CH4,3.9,kg/TJ,5155.909667999999,kg -e7d7c108-ef99-3aa5-a0c6-b3ef2c64f9f0,SESCO,II.1.1,Córdoba,AR-X,annual,2013,gas oil combustion consumption by to the public,1322.02812,TJ,N2O,3.9,kg/TJ,5155.909667999999,kg -7962403f-d00e-326a-825a-4461d5875094,SESCO,II.1.1,Entre Rios,AR-E,annual,2013,gas oil combustion consumption by to the public,676.41924,TJ,CO2,74100.0,kg/TJ,50122665.68399999,kg -20aa1445-b714-310d-8cc4-72f40802ace6,SESCO,II.1.1,Entre Rios,AR-E,annual,2013,gas oil combustion consumption by to the public,676.41924,TJ,CH4,3.9,kg/TJ,2638.0350359999998,kg -20aa1445-b714-310d-8cc4-72f40802ace6,SESCO,II.1.1,Entre Rios,AR-E,annual,2013,gas oil combustion consumption by to the public,676.41924,TJ,N2O,3.9,kg/TJ,2638.0350359999998,kg -514ae0a6-b25f-324a-b05f-3dd59d33db77,SESCO,II.1.1,Formosa,AR-P,annual,2013,gas oil combustion consumption by to the public,116.6676,TJ,CO2,74100.0,kg/TJ,8645069.16,kg -d7e9edd7-00ec-343f-8e99-afd2c443d88d,SESCO,II.1.1,Formosa,AR-P,annual,2013,gas oil combustion consumption by to the public,116.6676,TJ,CH4,3.9,kg/TJ,455.00363999999996,kg -d7e9edd7-00ec-343f-8e99-afd2c443d88d,SESCO,II.1.1,Formosa,AR-P,annual,2013,gas oil combustion consumption by to the public,116.6676,TJ,N2O,3.9,kg/TJ,455.00363999999996,kg -08687324-3b0c-39bb-b9f9-27a0d633019f,SESCO,II.1.1,Jujuy,AR-Y,annual,2013,gas oil combustion consumption by to the public,60.53712,TJ,CO2,74100.0,kg/TJ,4485800.592,kg -b553da1c-0138-3cd3-9c9e-bd7e32754623,SESCO,II.1.1,Jujuy,AR-Y,annual,2013,gas oil combustion consumption by to the public,60.53712,TJ,CH4,3.9,kg/TJ,236.094768,kg -b553da1c-0138-3cd3-9c9e-bd7e32754623,SESCO,II.1.1,Jujuy,AR-Y,annual,2013,gas oil combustion consumption by to the public,60.53712,TJ,N2O,3.9,kg/TJ,236.094768,kg -745b3150-2d53-346a-8fbb-892acd6b467b,SESCO,II.1.1,La Pampa,AR-L,annual,2013,gas oil combustion consumption by to the public,206.85924,TJ,CO2,74100.0,kg/TJ,15328269.684,kg -a27c999f-da79-3e9e-8870-6f99105ed12b,SESCO,II.1.1,La Pampa,AR-L,annual,2013,gas oil combustion consumption by to the public,206.85924,TJ,CH4,3.9,kg/TJ,806.751036,kg -a27c999f-da79-3e9e-8870-6f99105ed12b,SESCO,II.1.1,La Pampa,AR-L,annual,2013,gas oil combustion consumption by to the public,206.85924,TJ,N2O,3.9,kg/TJ,806.751036,kg -6101a2f3-81b7-3caf-ac7f-48f0cefc041e,SESCO,II.1.1,La Rioja,AR-F,annual,2013,gas oil combustion consumption by to the public,108.14328,TJ,CO2,74100.0,kg/TJ,8013417.048,kg -c5954835-ded5-3745-98fd-fb8d050614c2,SESCO,II.1.1,La Rioja,AR-F,annual,2013,gas oil combustion consumption by to the public,108.14328,TJ,CH4,3.9,kg/TJ,421.758792,kg -c5954835-ded5-3745-98fd-fb8d050614c2,SESCO,II.1.1,La Rioja,AR-F,annual,2013,gas oil combustion consumption by to the public,108.14328,TJ,N2O,3.9,kg/TJ,421.758792,kg -b44eace3-6ca2-371b-a960-ec443ff2ac65,SESCO,II.1.1,Mendoza,AR-M,annual,2013,gas oil combustion consumption by to the public,336.49392,TJ,CO2,74100.0,kg/TJ,24934199.472,kg -d5368f60-c2d5-3b8f-9580-b420292375b1,SESCO,II.1.1,Mendoza,AR-M,annual,2013,gas oil combustion consumption by to the public,336.49392,TJ,CH4,3.9,kg/TJ,1312.326288,kg -d5368f60-c2d5-3b8f-9580-b420292375b1,SESCO,II.1.1,Mendoza,AR-M,annual,2013,gas oil combustion consumption by to the public,336.49392,TJ,N2O,3.9,kg/TJ,1312.326288,kg -0235b582-1e67-31a3-8160-26ea9d8c7751,SESCO,II.1.1,Misiones,AR-N,annual,2013,gas oil combustion consumption by to the public,295.49772,TJ,CO2,74100.0,kg/TJ,21896381.052,kg -0860f08e-9fbb-3534-812d-b7e1fa48e975,SESCO,II.1.1,Misiones,AR-N,annual,2013,gas oil combustion consumption by to the public,295.49772,TJ,CH4,3.9,kg/TJ,1152.441108,kg -0860f08e-9fbb-3534-812d-b7e1fa48e975,SESCO,II.1.1,Misiones,AR-N,annual,2013,gas oil combustion consumption by to the public,295.49772,TJ,N2O,3.9,kg/TJ,1152.441108,kg -ce665d10-8c0f-3104-bd6c-9f4426d80363,SESCO,II.1.1,Neuquén,AR-Q,annual,2013,gas oil combustion consumption by to the public,195.44532,TJ,CO2,74100.0,kg/TJ,14482498.212000001,kg -eb265a18-3f24-32ad-8064-658fd6a53115,SESCO,II.1.1,Neuquén,AR-Q,annual,2013,gas oil combustion consumption by to the public,195.44532,TJ,CH4,3.9,kg/TJ,762.236748,kg -eb265a18-3f24-32ad-8064-658fd6a53115,SESCO,II.1.1,Neuquén,AR-Q,annual,2013,gas oil combustion consumption by to the public,195.44532,TJ,N2O,3.9,kg/TJ,762.236748,kg -46f18383-6775-389f-8136-33af46ec0895,SESCO,II.1.1,Rio Negro,AR-R,annual,2013,gas oil combustion consumption by to the public,132.5604,TJ,CO2,74100.0,kg/TJ,9822725.639999999,kg -ae75067c-4c53-32c7-8daf-fe309b8d0bf3,SESCO,II.1.1,Rio Negro,AR-R,annual,2013,gas oil combustion consumption by to the public,132.5604,TJ,CH4,3.9,kg/TJ,516.98556,kg -ae75067c-4c53-32c7-8daf-fe309b8d0bf3,SESCO,II.1.1,Rio Negro,AR-R,annual,2013,gas oil combustion consumption by to the public,132.5604,TJ,N2O,3.9,kg/TJ,516.98556,kg -02371671-287c-35ba-b136-1ad4425def44,SESCO,II.1.1,Salta,AR-A,annual,2013,gas oil combustion consumption by to the public,138.3396,TJ,CO2,74100.0,kg/TJ,10250964.36,kg -f8b5d556-d673-3e83-a791-2a147b6e9f4f,SESCO,II.1.1,Salta,AR-A,annual,2013,gas oil combustion consumption by to the public,138.3396,TJ,CH4,3.9,kg/TJ,539.5244399999999,kg -f8b5d556-d673-3e83-a791-2a147b6e9f4f,SESCO,II.1.1,Salta,AR-A,annual,2013,gas oil combustion consumption by to the public,138.3396,TJ,N2O,3.9,kg/TJ,539.5244399999999,kg -b811e627-7213-369f-a3d5-778a403360c2,SESCO,II.1.1,San Juan,AR-J,annual,2013,gas oil combustion consumption by to the public,68.51964,TJ,CO2,74100.0,kg/TJ,5077305.324,kg -dac58ea1-2585-37a2-840b-8ab689015225,SESCO,II.1.1,San Juan,AR-J,annual,2013,gas oil combustion consumption by to the public,68.51964,TJ,CH4,3.9,kg/TJ,267.226596,kg -dac58ea1-2585-37a2-840b-8ab689015225,SESCO,II.1.1,San Juan,AR-J,annual,2013,gas oil combustion consumption by to the public,68.51964,TJ,N2O,3.9,kg/TJ,267.226596,kg -822b705a-c571-37af-a849-7f449566be74,SESCO,II.1.1,San Luis,AR-D,annual,2013,gas oil combustion consumption by to the public,20.2272,TJ,CO2,74100.0,kg/TJ,1498835.52,kg -d130992f-455b-334c-947c-7558bd43253b,SESCO,II.1.1,San Luis,AR-D,annual,2013,gas oil combustion consumption by to the public,20.2272,TJ,CH4,3.9,kg/TJ,78.88607999999999,kg -d130992f-455b-334c-947c-7558bd43253b,SESCO,II.1.1,San Luis,AR-D,annual,2013,gas oil combustion consumption by to the public,20.2272,TJ,N2O,3.9,kg/TJ,78.88607999999999,kg -91b264cc-0722-3fe0-81f3-afc915f37da7,SESCO,II.1.1,Santa Fe,AR-S,annual,2013,gas oil combustion consumption by to the public,1705.98372,TJ,CO2,74100.0,kg/TJ,126413393.652,kg -92bce1af-c372-3ac2-8e02-bd4b412d107d,SESCO,II.1.1,Santa Fe,AR-S,annual,2013,gas oil combustion consumption by to the public,1705.98372,TJ,CH4,3.9,kg/TJ,6653.336507999999,kg -92bce1af-c372-3ac2-8e02-bd4b412d107d,SESCO,II.1.1,Santa Fe,AR-S,annual,2013,gas oil combustion consumption by to the public,1705.98372,TJ,N2O,3.9,kg/TJ,6653.336507999999,kg -854f4bb6-3d4f-34d2-928e-ec57f0b041a4,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2013,gas oil combustion consumption by to the public,160.734,TJ,CO2,74100.0,kg/TJ,11910389.4,kg -cf46dbc7-970c-3900-a16b-c827865347a9,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2013,gas oil combustion consumption by to the public,160.734,TJ,CH4,3.9,kg/TJ,626.8626,kg -cf46dbc7-970c-3900-a16b-c827865347a9,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2013,gas oil combustion consumption by to the public,160.734,TJ,N2O,3.9,kg/TJ,626.8626,kg -ee6ba9d1-8ff5-3fc7-b7fa-58f6fd55354a,SESCO,II.1.1,Tucuman,AR-T,annual,2013,gas oil combustion consumption by to the public,299.83212,TJ,CO2,74100.0,kg/TJ,22217560.091999996,kg -224405e1-ade4-34e3-9a4d-3555ea267017,SESCO,II.1.1,Tucuman,AR-T,annual,2013,gas oil combustion consumption by to the public,299.83212,TJ,CH4,3.9,kg/TJ,1169.3452679999998,kg -224405e1-ade4-34e3-9a4d-3555ea267017,SESCO,II.1.1,Tucuman,AR-T,annual,2013,gas oil combustion consumption by to the public,299.83212,TJ,N2O,3.9,kg/TJ,1169.3452679999998,kg -19155f40-fa18-3029-b781-ae79feb6f86f,SESCO,II.1.1,Entre Rios,AR-E,annual,2013,jet kerosene combustion consumption by to the public,1.4153849999999997,TJ,CO2,71500.0,kg/TJ,101200.02749999998,kg -ae2c3d4d-629c-3556-9bfb-8c08cb1ec01b,SESCO,II.1.1,Entre Rios,AR-E,annual,2013,jet kerosene combustion consumption by to the public,1.4153849999999997,TJ,CH4,0.5,kg/TJ,0.7076924999999998,kg -c7e01b02-89ee-33ec-b371-438c812bdbd5,SESCO,II.1.1,Entre Rios,AR-E,annual,2013,jet kerosene combustion consumption by to the public,1.4153849999999997,TJ,N2O,2.0,kg/TJ,2.8307699999999993,kg -3ad2e17f-04be-3897-a12c-f18a9e630a7b,SESCO,I.3.1,Buenos Aires,AR-B,annual,2013,gasoline combustion consumption by petrochemical industries,183.0033,TJ,CO2,69300.0,kg/TJ,12682128.69,kg -fde6d45e-6638-32e8-b7ff-2e721584b852,SESCO,I.3.1,Buenos Aires,AR-B,annual,2013,gasoline combustion consumption by petrochemical industries,183.0033,TJ,CH4,33.0,kg/TJ,6039.1089,kg -a8691bef-03ec-362f-8086-feff4fdf16e8,SESCO,I.3.1,Buenos Aires,AR-B,annual,2013,gasoline combustion consumption by petrochemical industries,183.0033,TJ,N2O,3.2,kg/TJ,585.61056,kg -74be579b-9890-31f4-bb19-0d781fab6c12,SESCO,I.3.1,Capital Federal,AR-C,annual,2013,gas oil combustion consumption by petrochemical industries,2.5284,TJ,CO2,74100.0,kg/TJ,187354.44,kg -353d42ed-2c3b-3de4-959c-fc1cbe2d83d7,SESCO,I.3.1,Capital Federal,AR-C,annual,2013,gas oil combustion consumption by petrochemical industries,2.5284,TJ,CH4,3.9,kg/TJ,9.860759999999999,kg -353d42ed-2c3b-3de4-959c-fc1cbe2d83d7,SESCO,I.3.1,Capital Federal,AR-C,annual,2013,gas oil combustion consumption by petrochemical industries,2.5284,TJ,N2O,3.9,kg/TJ,9.860759999999999,kg -a7bf202c-f316-3042-95ea-fed9e80068c3,SESCO,II.2.1,Buenos Aires,AR-B,annual,2013,gas oil combustion consumption by railway transport,443.08404,TJ,CO2,74100.0,kg/TJ,32832527.364,kg -f5b37882-0d69-3cb2-9839-2feb92c5b1d2,SESCO,II.2.1,Buenos Aires,AR-B,annual,2013,gas oil combustion consumption by railway transport,443.08404,TJ,CH4,3.9,kg/TJ,1728.027756,kg -f5b37882-0d69-3cb2-9839-2feb92c5b1d2,SESCO,II.2.1,Buenos Aires,AR-B,annual,2013,gas oil combustion consumption by railway transport,443.08404,TJ,N2O,3.9,kg/TJ,1728.027756,kg -7b9ab22e-9097-3a11-ae91-160fba969637,SESCO,II.2.1,Capital Federal,AR-C,annual,2013,gas oil combustion consumption by railway transport,1630.38456,TJ,CO2,74100.0,kg/TJ,120811495.896,kg -c8ee5a44-2d3c-35b0-81bd-5ddcec96d666,SESCO,II.2.1,Capital Federal,AR-C,annual,2013,gas oil combustion consumption by railway transport,1630.38456,TJ,CH4,3.9,kg/TJ,6358.499784,kg -c8ee5a44-2d3c-35b0-81bd-5ddcec96d666,SESCO,II.2.1,Capital Federal,AR-C,annual,2013,gas oil combustion consumption by railway transport,1630.38456,TJ,N2O,3.9,kg/TJ,6358.499784,kg -d1da070e-e768-3221-adcc-7bf1c5fa6401,SESCO,II.2.1,Santa Fe,AR-S,annual,2013,gas oil combustion consumption by railway transport,303.62471999999997,TJ,CO2,74100.0,kg/TJ,22498591.751999997,kg -9f2b0a48-85cc-33fd-b7eb-30830a7ab6ef,SESCO,II.2.1,Santa Fe,AR-S,annual,2013,gas oil combustion consumption by railway transport,303.62471999999997,TJ,CH4,3.9,kg/TJ,1184.1364079999998,kg -9f2b0a48-85cc-33fd-b7eb-30830a7ab6ef,SESCO,II.2.1,Santa Fe,AR-S,annual,2013,gas oil combustion consumption by railway transport,303.62471999999997,TJ,N2O,3.9,kg/TJ,1184.1364079999998,kg -46972f21-d00f-3017-87d5-e043e7c0b7d3,SESCO,II.2.1,Capital Federal,AR-C,annual,2013,gas oil combustion consumption by railway transport,0.68628,TJ,CO2,74100.0,kg/TJ,50853.348,kg -47b2f874-8eba-3024-b2eb-54c34fb88df1,SESCO,II.2.1,Capital Federal,AR-C,annual,2013,gas oil combustion consumption by railway transport,0.68628,TJ,CH4,3.9,kg/TJ,2.676492,kg -47b2f874-8eba-3024-b2eb-54c34fb88df1,SESCO,II.2.1,Capital Federal,AR-C,annual,2013,gas oil combustion consumption by railway transport,0.68628,TJ,N2O,3.9,kg/TJ,2.676492,kg -19fa4822-4490-3a0b-8275-e45fb9178343,SESCO,II.1.1,Buenos Aires,AR-B,annual,2013,gasoline combustion consumption by freight transport,4.5629,TJ,CO2,69300.0,kg/TJ,316208.97,kg -d8cfb1e4-ee14-3699-8fdf-ef22f9e29f8f,SESCO,II.1.1,Buenos Aires,AR-B,annual,2013,gasoline combustion consumption by freight transport,4.5629,TJ,CH4,33.0,kg/TJ,150.5757,kg -9094cffb-c094-313d-b7bb-cbede110c6d7,SESCO,II.1.1,Buenos Aires,AR-B,annual,2013,gasoline combustion consumption by freight transport,4.5629,TJ,N2O,3.2,kg/TJ,14.601280000000001,kg -99c9f11e-4827-33b8-b0ff-a34f85c6027d,SESCO,II.1.1,Capital Federal,AR-C,annual,2013,gasoline combustion consumption by freight transport,11.9167,TJ,CO2,69300.0,kg/TJ,825827.31,kg -1c2edc3e-4280-3840-96f8-7eaf8bcdd565,SESCO,II.1.1,Capital Federal,AR-C,annual,2013,gasoline combustion consumption by freight transport,11.9167,TJ,CH4,33.0,kg/TJ,393.2511,kg -94e183b5-d8ba-3429-838c-cc21cd61d04a,SESCO,II.1.1,Capital Federal,AR-C,annual,2013,gasoline combustion consumption by freight transport,11.9167,TJ,N2O,3.2,kg/TJ,38.13344,kg -a3ab51da-fbd1-337b-88c7-9bff16f1bf78,SESCO,II.1.1,Buenos Aires,AR-B,annual,2013,gas oil combustion consumption by freight transport,668.83404,TJ,CO2,74100.0,kg/TJ,49560602.364,kg -6bd22d26-468b-380c-82a5-3638d3c3e160,SESCO,II.1.1,Buenos Aires,AR-B,annual,2013,gas oil combustion consumption by freight transport,668.83404,TJ,CH4,3.9,kg/TJ,2608.4527559999997,kg -6bd22d26-468b-380c-82a5-3638d3c3e160,SESCO,II.1.1,Buenos Aires,AR-B,annual,2013,gas oil combustion consumption by freight transport,668.83404,TJ,N2O,3.9,kg/TJ,2608.4527559999997,kg -ef07cecb-882b-3f77-83ce-0f36cbf7038f,SESCO,II.1.1,Capital Federal,AR-C,annual,2013,gas oil combustion consumption by freight transport,255.58512,TJ,CO2,74100.0,kg/TJ,18938857.392,kg -03d8632e-5b2f-32b8-82ec-ba477f66c7a3,SESCO,II.1.1,Capital Federal,AR-C,annual,2013,gas oil combustion consumption by freight transport,255.58512,TJ,CH4,3.9,kg/TJ,996.7819679999999,kg -03d8632e-5b2f-32b8-82ec-ba477f66c7a3,SESCO,II.1.1,Capital Federal,AR-C,annual,2013,gas oil combustion consumption by freight transport,255.58512,TJ,N2O,3.9,kg/TJ,996.7819679999999,kg -91723061-ec58-35f1-985b-6dfc269492f6,SESCO,II.1.1,Córdoba,AR-X,annual,2013,gas oil combustion consumption by freight transport,195.48144,TJ,CO2,74100.0,kg/TJ,14485174.704,kg -daf7f40b-b681-330c-8ba5-7e51ac259c4f,SESCO,II.1.1,Córdoba,AR-X,annual,2013,gas oil combustion consumption by freight transport,195.48144,TJ,CH4,3.9,kg/TJ,762.377616,kg -daf7f40b-b681-330c-8ba5-7e51ac259c4f,SESCO,II.1.1,Córdoba,AR-X,annual,2013,gas oil combustion consumption by freight transport,195.48144,TJ,N2O,3.9,kg/TJ,762.377616,kg -525ee814-2a3e-3579-9469-627720741736,SESCO,II.1.1,Capital Federal,AR-C,annual,2013,gas oil combustion consumption by public passenger transport,143.07132,TJ,CO2,74100.0,kg/TJ,10601584.811999999,kg -8e819522-036b-367f-9665-1d88dc3e4957,SESCO,II.1.1,Capital Federal,AR-C,annual,2013,gas oil combustion consumption by public passenger transport,143.07132,TJ,CH4,3.9,kg/TJ,557.9781479999999,kg -8e819522-036b-367f-9665-1d88dc3e4957,SESCO,II.1.1,Capital Federal,AR-C,annual,2013,gas oil combustion consumption by public passenger transport,143.07132,TJ,N2O,3.9,kg/TJ,557.9781479999999,kg -1266e2ac-affd-3ac4-b3cd-7e61a7c50e33,SESCO,II.1.1,Misiones,AR-N,annual,2013,gas oil combustion consumption by public passenger transport,129.77916,TJ,CO2,74100.0,kg/TJ,9616635.756,kg -60565ebd-0215-35db-a2d5-c662e8826d0c,SESCO,II.1.1,Misiones,AR-N,annual,2013,gas oil combustion consumption by public passenger transport,129.77916,TJ,CH4,3.9,kg/TJ,506.13872399999997,kg -60565ebd-0215-35db-a2d5-c662e8826d0c,SESCO,II.1.1,Misiones,AR-N,annual,2013,gas oil combustion consumption by public passenger transport,129.77916,TJ,N2O,3.9,kg/TJ,506.13872399999997,kg -df6fb6a7-e165-3f0b-9ec2-2d0f038e312b,SESCO,II.5.1,Buenos Aires,AR-B,annual,2013,gasoline combustion consumption by agriculture machines,13.4229,TJ,CO2,69300.0,kg/TJ,930206.97,kg -076e0942-5906-3747-af82-d0b71985f5f7,SESCO,II.5.1,Buenos Aires,AR-B,annual,2013,gasoline combustion consumption by agriculture machines,13.4229,TJ,CH4,33.0,kg/TJ,442.95570000000004,kg -675cf6b3-ce8b-30cd-a274-01610a809abd,SESCO,II.5.1,Buenos Aires,AR-B,annual,2013,gasoline combustion consumption by agriculture machines,13.4229,TJ,N2O,3.2,kg/TJ,42.95328000000001,kg -c6f79b74-69f7-38ef-ab1e-6363036a1b07,SESCO,II.5.1,Buenos Aires,AR-B,annual,2013,gas oil combustion consumption by agriculture machines,9182.28192,TJ,CO2,74100.0,kg/TJ,680407090.272,kg -e201dabe-c0e6-3358-8e3e-3d9a7fe8d9c4,SESCO,II.5.1,Buenos Aires,AR-B,annual,2013,gas oil combustion consumption by agriculture machines,9182.28192,TJ,CH4,3.9,kg/TJ,35810.899487999995,kg -e201dabe-c0e6-3358-8e3e-3d9a7fe8d9c4,SESCO,II.5.1,Buenos Aires,AR-B,annual,2013,gas oil combustion consumption by agriculture machines,9182.28192,TJ,N2O,3.9,kg/TJ,35810.899487999995,kg -546c9ed8-5182-3c57-a6cd-0841765ba4d6,SESCO,II.5.1,Capital Federal,AR-C,annual,2013,gas oil combustion consumption by agriculture machines,10.25808,TJ,CO2,74100.0,kg/TJ,760123.728,kg -668eaafa-2007-37d4-87c4-ea46e7bae8ac,SESCO,II.5.1,Capital Federal,AR-C,annual,2013,gas oil combustion consumption by agriculture machines,10.25808,TJ,CH4,3.9,kg/TJ,40.006512,kg -668eaafa-2007-37d4-87c4-ea46e7bae8ac,SESCO,II.5.1,Capital Federal,AR-C,annual,2013,gas oil combustion consumption by agriculture machines,10.25808,TJ,N2O,3.9,kg/TJ,40.006512,kg -83e3b390-1816-33b2-b7d0-c539c5d41448,SESCO,II.5.1,Catamarca,AR-K,annual,2013,gas oil combustion consumption by agriculture machines,107.52924,TJ,CO2,74100.0,kg/TJ,7967916.684,kg -5f331f7c-992e-3bc7-ab9e-f93be501db5d,SESCO,II.5.1,Catamarca,AR-K,annual,2013,gas oil combustion consumption by agriculture machines,107.52924,TJ,CH4,3.9,kg/TJ,419.364036,kg -5f331f7c-992e-3bc7-ab9e-f93be501db5d,SESCO,II.5.1,Catamarca,AR-K,annual,2013,gas oil combustion consumption by agriculture machines,107.52924,TJ,N2O,3.9,kg/TJ,419.364036,kg -9a303c16-2425-353b-9bac-e51383f25ad7,SESCO,II.5.1,Chaco,AR-H,annual,2013,gas oil combustion consumption by agriculture machines,1361.68788,TJ,CO2,74100.0,kg/TJ,100901071.90799999,kg -97242177-4dec-328a-9a9c-e80524e58d46,SESCO,II.5.1,Chaco,AR-H,annual,2013,gas oil combustion consumption by agriculture machines,1361.68788,TJ,CH4,3.9,kg/TJ,5310.582732,kg -97242177-4dec-328a-9a9c-e80524e58d46,SESCO,II.5.1,Chaco,AR-H,annual,2013,gas oil combustion consumption by agriculture machines,1361.68788,TJ,N2O,3.9,kg/TJ,5310.582732,kg -6f9b7788-d40e-30eb-84b8-cf4bc145b3a5,SESCO,II.5.1,Chubut,AR-U,annual,2013,gas oil combustion consumption by agriculture machines,17.26536,TJ,CO2,74100.0,kg/TJ,1279363.176,kg -33767135-cd76-3288-9f61-56c1dbeb387b,SESCO,II.5.1,Chubut,AR-U,annual,2013,gas oil combustion consumption by agriculture machines,17.26536,TJ,CH4,3.9,kg/TJ,67.33490400000001,kg -33767135-cd76-3288-9f61-56c1dbeb387b,SESCO,II.5.1,Chubut,AR-U,annual,2013,gas oil combustion consumption by agriculture machines,17.26536,TJ,N2O,3.9,kg/TJ,67.33490400000001,kg -f512c638-e584-3d86-a765-afd75e68f9e7,SESCO,II.5.1,Corrientes,AR-W,annual,2013,gas oil combustion consumption by agriculture machines,386.77296,TJ,CO2,74100.0,kg/TJ,28659876.336,kg -2d718b7c-4e3f-30d2-b658-439133f624d9,SESCO,II.5.1,Corrientes,AR-W,annual,2013,gas oil combustion consumption by agriculture machines,386.77296,TJ,CH4,3.9,kg/TJ,1508.414544,kg -2d718b7c-4e3f-30d2-b658-439133f624d9,SESCO,II.5.1,Corrientes,AR-W,annual,2013,gas oil combustion consumption by agriculture machines,386.77296,TJ,N2O,3.9,kg/TJ,1508.414544,kg -4494e0ea-01ea-3c04-8b97-93b3d426522e,SESCO,II.5.1,Córdoba,AR-X,annual,2013,gas oil combustion consumption by agriculture machines,7703.24016,TJ,CO2,74100.0,kg/TJ,570810095.8560001,kg -9bc3dca4-5f03-3dda-9ec6-cbdebc92d4b6,SESCO,II.5.1,Córdoba,AR-X,annual,2013,gas oil combustion consumption by agriculture machines,7703.24016,TJ,CH4,3.9,kg/TJ,30042.636624,kg -9bc3dca4-5f03-3dda-9ec6-cbdebc92d4b6,SESCO,II.5.1,Córdoba,AR-X,annual,2013,gas oil combustion consumption by agriculture machines,7703.24016,TJ,N2O,3.9,kg/TJ,30042.636624,kg -86cf46df-fbe6-3c42-bbd3-20afda986b58,SESCO,II.5.1,Entre Rios,AR-E,annual,2013,gas oil combustion consumption by agriculture machines,2400.02952,TJ,CO2,74100.0,kg/TJ,177842187.432,kg -27f7e57f-7c31-3a02-8957-f0b94d1327df,SESCO,II.5.1,Entre Rios,AR-E,annual,2013,gas oil combustion consumption by agriculture machines,2400.02952,TJ,CH4,3.9,kg/TJ,9360.115128,kg -27f7e57f-7c31-3a02-8957-f0b94d1327df,SESCO,II.5.1,Entre Rios,AR-E,annual,2013,gas oil combustion consumption by agriculture machines,2400.02952,TJ,N2O,3.9,kg/TJ,9360.115128,kg -835e118e-e1f2-3843-b6b2-f1557ede98e1,SESCO,II.5.1,Formosa,AR-P,annual,2013,gas oil combustion consumption by agriculture machines,416.60808,TJ,CO2,74100.0,kg/TJ,30870658.727999996,kg -2ff53d3d-4248-3a2c-97b5-ddcab2a7e078,SESCO,II.5.1,Formosa,AR-P,annual,2013,gas oil combustion consumption by agriculture machines,416.60808,TJ,CH4,3.9,kg/TJ,1624.7715119999998,kg -2ff53d3d-4248-3a2c-97b5-ddcab2a7e078,SESCO,II.5.1,Formosa,AR-P,annual,2013,gas oil combustion consumption by agriculture machines,416.60808,TJ,N2O,3.9,kg/TJ,1624.7715119999998,kg -bce4ea19-dfa6-309a-8ea7-eb33b7bdfb8b,SESCO,II.5.1,Jujuy,AR-Y,annual,2013,gas oil combustion consumption by agriculture machines,961.91172,TJ,CO2,74100.0,kg/TJ,71277658.45199999,kg -708f22c8-a559-32ff-988b-a03623f72437,SESCO,II.5.1,Jujuy,AR-Y,annual,2013,gas oil combustion consumption by agriculture machines,961.91172,TJ,CH4,3.9,kg/TJ,3751.4557079999995,kg -708f22c8-a559-32ff-988b-a03623f72437,SESCO,II.5.1,Jujuy,AR-Y,annual,2013,gas oil combustion consumption by agriculture machines,961.91172,TJ,N2O,3.9,kg/TJ,3751.4557079999995,kg -ec48b88d-4d6b-3a74-936e-3bac14add9e5,SESCO,II.5.1,La Pampa,AR-L,annual,2013,gas oil combustion consumption by agriculture machines,2224.59468,TJ,CO2,74100.0,kg/TJ,164842465.78800002,kg -f438b55e-65e6-3649-a9ea-1b1f39228f6d,SESCO,II.5.1,La Pampa,AR-L,annual,2013,gas oil combustion consumption by agriculture machines,2224.59468,TJ,CH4,3.9,kg/TJ,8675.919252,kg -f438b55e-65e6-3649-a9ea-1b1f39228f6d,SESCO,II.5.1,La Pampa,AR-L,annual,2013,gas oil combustion consumption by agriculture machines,2224.59468,TJ,N2O,3.9,kg/TJ,8675.919252,kg -17afd820-51ad-3316-aa45-cc70d2508c53,SESCO,II.5.1,Mendoza,AR-M,annual,2013,gas oil combustion consumption by agriculture machines,514.45716,TJ,CO2,74100.0,kg/TJ,38121275.556,kg -ba755091-d2ae-31c4-8b96-fd35a41d6b8e,SESCO,II.5.1,Mendoza,AR-M,annual,2013,gas oil combustion consumption by agriculture machines,514.45716,TJ,CH4,3.9,kg/TJ,2006.3829240000002,kg -ba755091-d2ae-31c4-8b96-fd35a41d6b8e,SESCO,II.5.1,Mendoza,AR-M,annual,2013,gas oil combustion consumption by agriculture machines,514.45716,TJ,N2O,3.9,kg/TJ,2006.3829240000002,kg -d891d44d-8fcc-3150-9e33-ee3f5ec4792c,SESCO,II.5.1,Misiones,AR-N,annual,2013,gas oil combustion consumption by agriculture machines,1131.49512,TJ,CO2,74100.0,kg/TJ,83843788.392,kg -4fe09dd1-5c0d-3b4c-a3d8-8f9e0aa244dc,SESCO,II.5.1,Misiones,AR-N,annual,2013,gas oil combustion consumption by agriculture machines,1131.49512,TJ,CH4,3.9,kg/TJ,4412.830968,kg -4fe09dd1-5c0d-3b4c-a3d8-8f9e0aa244dc,SESCO,II.5.1,Misiones,AR-N,annual,2013,gas oil combustion consumption by agriculture machines,1131.49512,TJ,N2O,3.9,kg/TJ,4412.830968,kg -b60f80d1-355a-38ee-80c9-418c29ce496a,SESCO,II.5.1,Rio Negro,AR-R,annual,2013,gas oil combustion consumption by agriculture machines,181.75584,TJ,CO2,74100.0,kg/TJ,13468107.744,kg -af931b1f-f62d-3e88-802c-7b324c238b7a,SESCO,II.5.1,Rio Negro,AR-R,annual,2013,gas oil combustion consumption by agriculture machines,181.75584,TJ,CH4,3.9,kg/TJ,708.847776,kg -af931b1f-f62d-3e88-802c-7b324c238b7a,SESCO,II.5.1,Rio Negro,AR-R,annual,2013,gas oil combustion consumption by agriculture machines,181.75584,TJ,N2O,3.9,kg/TJ,708.847776,kg -e87ac00e-cbec-3670-9e56-8dbcb092bf90,SESCO,II.5.1,Salta,AR-A,annual,2013,gas oil combustion consumption by agriculture machines,1749.94176,TJ,CO2,74100.0,kg/TJ,129670684.416,kg -b3321821-9e5b-388b-bdd7-f4def2b481b8,SESCO,II.5.1,Salta,AR-A,annual,2013,gas oil combustion consumption by agriculture machines,1749.94176,TJ,CH4,3.9,kg/TJ,6824.772864,kg -b3321821-9e5b-388b-bdd7-f4def2b481b8,SESCO,II.5.1,Salta,AR-A,annual,2013,gas oil combustion consumption by agriculture machines,1749.94176,TJ,N2O,3.9,kg/TJ,6824.772864,kg -9410f745-e2aa-32df-8b23-b85814d686b2,SESCO,II.5.1,San Luis,AR-D,annual,2013,gas oil combustion consumption by agriculture machines,579.22032,TJ,CO2,74100.0,kg/TJ,42920225.712,kg -ef347b1d-22c0-329e-838a-54960666f1d3,SESCO,II.5.1,San Luis,AR-D,annual,2013,gas oil combustion consumption by agriculture machines,579.22032,TJ,CH4,3.9,kg/TJ,2258.959248,kg -ef347b1d-22c0-329e-838a-54960666f1d3,SESCO,II.5.1,San Luis,AR-D,annual,2013,gas oil combustion consumption by agriculture machines,579.22032,TJ,N2O,3.9,kg/TJ,2258.959248,kg -078ad81a-ac82-352c-bb7b-12aaf1d058f3,SESCO,II.5.1,Santa Cruz,AR-Z,annual,2013,gas oil combustion consumption by agriculture machines,2.05884,TJ,CO2,74100.0,kg/TJ,152560.044,kg -7eb054d7-338c-3e62-9ef0-4f481a710008,SESCO,II.5.1,Santa Cruz,AR-Z,annual,2013,gas oil combustion consumption by agriculture machines,2.05884,TJ,CH4,3.9,kg/TJ,8.029475999999999,kg -7eb054d7-338c-3e62-9ef0-4f481a710008,SESCO,II.5.1,Santa Cruz,AR-Z,annual,2013,gas oil combustion consumption by agriculture machines,2.05884,TJ,N2O,3.9,kg/TJ,8.029475999999999,kg -e5b3f34c-c515-3577-8448-92d98e684428,SESCO,II.5.1,Santa Fe,AR-S,annual,2013,gas oil combustion consumption by agriculture machines,6246.37608,TJ,CO2,74100.0,kg/TJ,462856467.528,kg -3bb3f757-fcc4-3151-95e8-9b12f8f9d1d7,SESCO,II.5.1,Santa Fe,AR-S,annual,2013,gas oil combustion consumption by agriculture machines,6246.37608,TJ,CH4,3.9,kg/TJ,24360.866712,kg -3bb3f757-fcc4-3151-95e8-9b12f8f9d1d7,SESCO,II.5.1,Santa Fe,AR-S,annual,2013,gas oil combustion consumption by agriculture machines,6246.37608,TJ,N2O,3.9,kg/TJ,24360.866712,kg -d9580bdb-6203-35a4-8a7f-91527438a421,SESCO,II.5.1,Santiago del Estero,AR-G,annual,2013,gas oil combustion consumption by agriculture machines,1476.80232,TJ,CO2,74100.0,kg/TJ,109431051.912,kg -67242214-e3ba-3c29-af8a-1fec37da41ae,SESCO,II.5.1,Santiago del Estero,AR-G,annual,2013,gas oil combustion consumption by agriculture machines,1476.80232,TJ,CH4,3.9,kg/TJ,5759.529048,kg -67242214-e3ba-3c29-af8a-1fec37da41ae,SESCO,II.5.1,Santiago del Estero,AR-G,annual,2013,gas oil combustion consumption by agriculture machines,1476.80232,TJ,N2O,3.9,kg/TJ,5759.529048,kg -b31053b0-9735-3697-b500-47c2278be2fe,SESCO,II.5.1,Tucuman,AR-T,annual,2013,gas oil combustion consumption by agriculture machines,1382.1679199999999,TJ,CO2,74100.0,kg/TJ,102418642.872,kg -fedb805e-1fa7-3865-ac6f-ad2dea754704,SESCO,II.5.1,Tucuman,AR-T,annual,2013,gas oil combustion consumption by agriculture machines,1382.1679199999999,TJ,CH4,3.9,kg/TJ,5390.454887999999,kg -fedb805e-1fa7-3865-ac6f-ad2dea754704,SESCO,II.5.1,Tucuman,AR-T,annual,2013,gas oil combustion consumption by agriculture machines,1382.1679199999999,TJ,N2O,3.9,kg/TJ,5390.454887999999,kg -23bdfc6d-fb37-35e8-a7ff-235950ebcab5,SESCO,II.5.1,Buenos Aires,AR-B,annual,2013,gas oil combustion consumption by agriculture machines,100.34136,TJ,CO2,74100.0,kg/TJ,7435294.776,kg -6b87e87e-1304-3606-9ce8-3e273503d9f5,SESCO,II.5.1,Buenos Aires,AR-B,annual,2013,gas oil combustion consumption by agriculture machines,100.34136,TJ,CH4,3.9,kg/TJ,391.331304,kg -6b87e87e-1304-3606-9ce8-3e273503d9f5,SESCO,II.5.1,Buenos Aires,AR-B,annual,2013,gas oil combustion consumption by agriculture machines,100.34136,TJ,N2O,3.9,kg/TJ,391.331304,kg -05fcc22f-0885-37c4-b9d6-a4c8b48d8cf4,SESCO,II.5.1,Chaco,AR-H,annual,2013,gas oil combustion consumption by agriculture machines,7.8380399999999995,TJ,CO2,74100.0,kg/TJ,580798.764,kg -04b3e18a-fa6d-3f08-b9aa-a9558c569d42,SESCO,II.5.1,Chaco,AR-H,annual,2013,gas oil combustion consumption by agriculture machines,7.8380399999999995,TJ,CH4,3.9,kg/TJ,30.568355999999998,kg -04b3e18a-fa6d-3f08-b9aa-a9558c569d42,SESCO,II.5.1,Chaco,AR-H,annual,2013,gas oil combustion consumption by agriculture machines,7.8380399999999995,TJ,N2O,3.9,kg/TJ,30.568355999999998,kg -76dc9ab2-986b-3efb-8d7d-b437336d86ec,SESCO,II.5.1,Corrientes,AR-W,annual,2013,gas oil combustion consumption by agriculture machines,18.56568,TJ,CO2,74100.0,kg/TJ,1375716.888,kg -09bb5dbe-8bb8-358e-88d2-aa435a85c443,SESCO,II.5.1,Corrientes,AR-W,annual,2013,gas oil combustion consumption by agriculture machines,18.56568,TJ,CH4,3.9,kg/TJ,72.406152,kg -09bb5dbe-8bb8-358e-88d2-aa435a85c443,SESCO,II.5.1,Corrientes,AR-W,annual,2013,gas oil combustion consumption by agriculture machines,18.56568,TJ,N2O,3.9,kg/TJ,72.406152,kg -ab2a3acc-7187-3af1-8f55-a8264c6bfd11,SESCO,II.5.1,Córdoba,AR-X,annual,2013,gas oil combustion consumption by agriculture machines,22.61112,TJ,CO2,74100.0,kg/TJ,1675483.992,kg -23a6d479-d20b-385e-8b41-57db297a0076,SESCO,II.5.1,Córdoba,AR-X,annual,2013,gas oil combustion consumption by agriculture machines,22.61112,TJ,CH4,3.9,kg/TJ,88.183368,kg -23a6d479-d20b-385e-8b41-57db297a0076,SESCO,II.5.1,Córdoba,AR-X,annual,2013,gas oil combustion consumption by agriculture machines,22.61112,TJ,N2O,3.9,kg/TJ,88.183368,kg -52da28e2-6270-3eef-a0f9-bf6970979f95,SESCO,II.5.1,Entre Rios,AR-E,annual,2013,gas oil combustion consumption by agriculture machines,6.42936,TJ,CO2,74100.0,kg/TJ,476415.576,kg -bc577fab-4b3b-3780-87c7-8d699452775b,SESCO,II.5.1,Entre Rios,AR-E,annual,2013,gas oil combustion consumption by agriculture machines,6.42936,TJ,CH4,3.9,kg/TJ,25.074504,kg -bc577fab-4b3b-3780-87c7-8d699452775b,SESCO,II.5.1,Entre Rios,AR-E,annual,2013,gas oil combustion consumption by agriculture machines,6.42936,TJ,N2O,3.9,kg/TJ,25.074504,kg -02c37a66-d759-3bf8-97c2-68e42c7608de,SESCO,II.5.1,Jujuy,AR-Y,annual,2013,gas oil combustion consumption by agriculture machines,17.6988,TJ,CO2,74100.0,kg/TJ,1311481.0799999998,kg -e91c7cf0-34bc-361d-bf62-ba7070588d5a,SESCO,II.5.1,Jujuy,AR-Y,annual,2013,gas oil combustion consumption by agriculture machines,17.6988,TJ,CH4,3.9,kg/TJ,69.02532,kg -e91c7cf0-34bc-361d-bf62-ba7070588d5a,SESCO,II.5.1,Jujuy,AR-Y,annual,2013,gas oil combustion consumption by agriculture machines,17.6988,TJ,N2O,3.9,kg/TJ,69.02532,kg -c2dcb365-f01e-39ba-8bdb-f011dc4f28a2,SESCO,II.5.1,La Pampa,AR-L,annual,2013,gas oil combustion consumption by agriculture machines,90.73344,TJ,CO2,74100.0,kg/TJ,6723347.904,kg -3b1c2e68-3b5c-3479-b48b-fcb3272d7488,SESCO,II.5.1,La Pampa,AR-L,annual,2013,gas oil combustion consumption by agriculture machines,90.73344,TJ,CH4,3.9,kg/TJ,353.860416,kg -3b1c2e68-3b5c-3479-b48b-fcb3272d7488,SESCO,II.5.1,La Pampa,AR-L,annual,2013,gas oil combustion consumption by agriculture machines,90.73344,TJ,N2O,3.9,kg/TJ,353.860416,kg -6d1001a5-985f-37cc-85b1-cab23e9300b1,SESCO,II.5.1,Misiones,AR-N,annual,2013,gas oil combustion consumption by agriculture machines,18.09612,TJ,CO2,74100.0,kg/TJ,1340922.4919999999,kg -c000a905-a2d5-39ba-beba-6ac0f7d23d78,SESCO,II.5.1,Misiones,AR-N,annual,2013,gas oil combustion consumption by agriculture machines,18.09612,TJ,CH4,3.9,kg/TJ,70.574868,kg -c000a905-a2d5-39ba-beba-6ac0f7d23d78,SESCO,II.5.1,Misiones,AR-N,annual,2013,gas oil combustion consumption by agriculture machines,18.09612,TJ,N2O,3.9,kg/TJ,70.574868,kg -6b90243f-565b-3580-9751-0a4ab72272be,SESCO,II.5.1,Salta,AR-A,annual,2013,gas oil combustion consumption by agriculture machines,123.31367999999999,TJ,CO2,74100.0,kg/TJ,9137543.688,kg -95e40b21-e2a1-3487-afa1-c97cd42a5640,SESCO,II.5.1,Salta,AR-A,annual,2013,gas oil combustion consumption by agriculture machines,123.31367999999999,TJ,CH4,3.9,kg/TJ,480.92335199999997,kg -95e40b21-e2a1-3487-afa1-c97cd42a5640,SESCO,II.5.1,Salta,AR-A,annual,2013,gas oil combustion consumption by agriculture machines,123.31367999999999,TJ,N2O,3.9,kg/TJ,480.92335199999997,kg -758ef544-1e0a-3afd-abe7-7f21d40a3084,SESCO,II.5.1,Santa Fe,AR-S,annual,2013,gas oil combustion consumption by agriculture machines,88.96356,TJ,CO2,74100.0,kg/TJ,6592199.796,kg -b2f35b30-7722-3677-865d-f1012ea10f08,SESCO,II.5.1,Santa Fe,AR-S,annual,2013,gas oil combustion consumption by agriculture machines,88.96356,TJ,CH4,3.9,kg/TJ,346.957884,kg -b2f35b30-7722-3677-865d-f1012ea10f08,SESCO,II.5.1,Santa Fe,AR-S,annual,2013,gas oil combustion consumption by agriculture machines,88.96356,TJ,N2O,3.9,kg/TJ,346.957884,kg -1b3b26f5-140e-34ce-bcdb-01974f9ac873,SESCO,II.5.1,Santiago del Estero,AR-G,annual,2013,gas oil combustion consumption by agriculture machines,97.19892,TJ,CO2,74100.0,kg/TJ,7202439.972,kg -4c73ea1b-37dd-3f19-8ee6-8171006119f9,SESCO,II.5.1,Santiago del Estero,AR-G,annual,2013,gas oil combustion consumption by agriculture machines,97.19892,TJ,CH4,3.9,kg/TJ,379.075788,kg -4c73ea1b-37dd-3f19-8ee6-8171006119f9,SESCO,II.5.1,Santiago del Estero,AR-G,annual,2013,gas oil combustion consumption by agriculture machines,97.19892,TJ,N2O,3.9,kg/TJ,379.075788,kg -32ed3c0a-23c4-3f63-bc35-d6c9f5170946,SESCO,II.5.1,Tucuman,AR-T,annual,2013,gas oil combustion consumption by agriculture machines,92.50332,TJ,CO2,74100.0,kg/TJ,6854496.012,kg -80940d21-863e-3e5a-a369-319079325d97,SESCO,II.5.1,Tucuman,AR-T,annual,2013,gas oil combustion consumption by agriculture machines,92.50332,TJ,CH4,3.9,kg/TJ,360.762948,kg -80940d21-863e-3e5a-a369-319079325d97,SESCO,II.5.1,Tucuman,AR-T,annual,2013,gas oil combustion consumption by agriculture machines,92.50332,TJ,N2O,3.9,kg/TJ,360.762948,kg -c2bb423e-893a-3ebe-8a18-13855af8929f,SESCO,II.5.1,Buenos Aires,AR-B,annual,2013,jet kerosene combustion consumption by agriculture machines,10.662566999999997,TJ,CO2,71500.0,kg/TJ,762373.5404999998,kg -f92daf5e-dc09-3ed6-b0d6-fece7d39eaa6,SESCO,II.5.1,Buenos Aires,AR-B,annual,2013,jet kerosene combustion consumption by agriculture machines,10.662566999999997,TJ,CH4,0.5,kg/TJ,5.331283499999999,kg -e8b4294a-86e7-3542-b184-08fa93e0341c,SESCO,II.5.1,Buenos Aires,AR-B,annual,2013,jet kerosene combustion consumption by agriculture machines,10.662566999999997,TJ,N2O,2.0,kg/TJ,21.325133999999995,kg -11b9baef-3706-3fd4-9f1c-cb581ac4b75b,SESCO,II.5.1,Córdoba,AR-X,annual,2013,jet kerosene combustion consumption by agriculture machines,0.62906,TJ,CO2,71500.0,kg/TJ,44977.78999999999,kg -e4a00eb6-4649-3045-a36c-a3da6a04d8c6,SESCO,II.5.1,Córdoba,AR-X,annual,2013,jet kerosene combustion consumption by agriculture machines,0.62906,TJ,CH4,0.5,kg/TJ,0.31453,kg -845cbfb1-a493-3cfb-80e7-7a024903736c,SESCO,II.5.1,Córdoba,AR-X,annual,2013,jet kerosene combustion consumption by agriculture machines,0.62906,TJ,N2O,2.0,kg/TJ,1.25812,kg -cc792cdc-d228-338a-bb13-ca68e37f94ef,SESCO,II.5.1,Entre Rios,AR-E,annual,2013,jet kerosene combustion consumption by agriculture machines,0.28307699999999997,TJ,CO2,71500.0,kg/TJ,20240.0055,kg -dc4b07dd-66f0-3b8c-b844-1bd9cba8b39e,SESCO,II.5.1,Entre Rios,AR-E,annual,2013,jet kerosene combustion consumption by agriculture machines,0.28307699999999997,TJ,CH4,0.5,kg/TJ,0.14153849999999998,kg -37f2b4ef-68e3-3354-a06c-2e31094aa7bb,SESCO,II.5.1,Entre Rios,AR-E,annual,2013,jet kerosene combustion consumption by agriculture machines,0.28307699999999997,TJ,N2O,2.0,kg/TJ,0.5661539999999999,kg -5662dad5-287f-3cb4-887d-ad13ca5e61a3,SESCO,II.5.1,La Pampa,AR-L,annual,2013,jet kerosene combustion consumption by agriculture machines,3.0509409999999995,TJ,CO2,71500.0,kg/TJ,218142.28149999995,kg -694f5150-26d7-3b4c-8a2a-8dd35e399d54,SESCO,II.5.1,La Pampa,AR-L,annual,2013,jet kerosene combustion consumption by agriculture machines,3.0509409999999995,TJ,CH4,0.5,kg/TJ,1.5254704999999997,kg -6bf47226-07c6-3869-b641-a10329cce6bf,SESCO,II.5.1,La Pampa,AR-L,annual,2013,jet kerosene combustion consumption by agriculture machines,3.0509409999999995,TJ,N2O,2.0,kg/TJ,6.101881999999999,kg -550f933c-dbe9-3c50-80ab-9497c6fa28d4,SESCO,II.5.1,Santa Fe,AR-S,annual,2013,jet kerosene combustion consumption by agriculture machines,4.277607999999999,TJ,CO2,71500.0,kg/TJ,305848.97199999995,kg -fa642a8d-1b95-38d2-8843-2f98b10d82ea,SESCO,II.5.1,Santa Fe,AR-S,annual,2013,jet kerosene combustion consumption by agriculture machines,4.277607999999999,TJ,CH4,0.5,kg/TJ,2.1388039999999995,kg -4f9c62ab-1b4b-3760-8117-2956871c53b7,SESCO,II.5.1,Santa Fe,AR-S,annual,2013,jet kerosene combustion consumption by agriculture machines,4.277607999999999,TJ,N2O,2.0,kg/TJ,8.555215999999998,kg -b9bfe258-b9ea-31c7-8ea8-d686c9e9c433,SESCO,II.1.1,Buenos Aires,AR-B,annual,2013,gas oil combustion consumption by to the public,40443.564,TJ,CO2,74100.0,kg/TJ,2996868092.4,kg -7a551d27-e687-31a4-916a-8df8d83b9ca5,SESCO,II.1.1,Buenos Aires,AR-B,annual,2013,gas oil combustion consumption by to the public,40443.564,TJ,CH4,3.9,kg/TJ,157729.8996,kg -7a551d27-e687-31a4-916a-8df8d83b9ca5,SESCO,II.1.1,Buenos Aires,AR-B,annual,2013,gas oil combustion consumption by to the public,40443.564,TJ,N2O,3.9,kg/TJ,157729.8996,kg -462e4041-437c-3a87-a5ee-7fba0e0cc6b7,SESCO,II.1.1,Capital Federal,AR-C,annual,2013,gas oil combustion consumption by to the public,4598.00376,TJ,CO2,74100.0,kg/TJ,340712078.616,kg -55d71ed6-e469-3e54-9dbc-0b8aa1b721b0,SESCO,II.1.1,Capital Federal,AR-C,annual,2013,gas oil combustion consumption by to the public,4598.00376,TJ,CH4,3.9,kg/TJ,17932.214664,kg -55d71ed6-e469-3e54-9dbc-0b8aa1b721b0,SESCO,II.1.1,Capital Federal,AR-C,annual,2013,gas oil combustion consumption by to the public,4598.00376,TJ,N2O,3.9,kg/TJ,17932.214664,kg -83ba919c-e2f9-3743-bf0e-29baae953f8d,SESCO,II.1.1,Catamarca,AR-K,annual,2013,gas oil combustion consumption by to the public,506.65524,TJ,CO2,74100.0,kg/TJ,37543153.284,kg -d57eea46-0276-3447-b105-29fb821fb986,SESCO,II.1.1,Catamarca,AR-K,annual,2013,gas oil combustion consumption by to the public,506.65524,TJ,CH4,3.9,kg/TJ,1975.955436,kg -d57eea46-0276-3447-b105-29fb821fb986,SESCO,II.1.1,Catamarca,AR-K,annual,2013,gas oil combustion consumption by to the public,506.65524,TJ,N2O,3.9,kg/TJ,1975.955436,kg -d547d992-e708-32ae-a821-b16ecb920658,SESCO,II.1.1,Chaco,AR-H,annual,2013,gas oil combustion consumption by to the public,2698.66968,TJ,CO2,74100.0,kg/TJ,199971423.288,kg -d2c70f52-c55c-388c-81af-a70ea400c64d,SESCO,II.1.1,Chaco,AR-H,annual,2013,gas oil combustion consumption by to the public,2698.66968,TJ,CH4,3.9,kg/TJ,10524.811752,kg -d2c70f52-c55c-388c-81af-a70ea400c64d,SESCO,II.1.1,Chaco,AR-H,annual,2013,gas oil combustion consumption by to the public,2698.66968,TJ,N2O,3.9,kg/TJ,10524.811752,kg -1871847e-433e-3637-b046-2c0e9e4bb97f,SESCO,II.1.1,Chubut,AR-U,annual,2013,gas oil combustion consumption by to the public,5510.06988,TJ,CO2,74100.0,kg/TJ,408296178.108,kg -ad34499d-3e59-364c-9d1d-7ba14e5c4951,SESCO,II.1.1,Chubut,AR-U,annual,2013,gas oil combustion consumption by to the public,5510.06988,TJ,CH4,3.9,kg/TJ,21489.272532,kg -ad34499d-3e59-364c-9d1d-7ba14e5c4951,SESCO,II.1.1,Chubut,AR-U,annual,2013,gas oil combustion consumption by to the public,5510.06988,TJ,N2O,3.9,kg/TJ,21489.272532,kg -7c030ccf-2002-353d-8398-9fabfec43630,SESCO,II.1.1,Corrientes,AR-W,annual,2013,gas oil combustion consumption by to the public,2136.96756,TJ,CO2,74100.0,kg/TJ,158349296.196,kg -c5b3cc71-9658-3acb-8c68-8b1ef319296f,SESCO,II.1.1,Corrientes,AR-W,annual,2013,gas oil combustion consumption by to the public,2136.96756,TJ,CH4,3.9,kg/TJ,8334.173484,kg -c5b3cc71-9658-3acb-8c68-8b1ef319296f,SESCO,II.1.1,Corrientes,AR-W,annual,2013,gas oil combustion consumption by to the public,2136.96756,TJ,N2O,3.9,kg/TJ,8334.173484,kg -e040b715-eed7-3bd4-8ff2-88be7e3218c5,SESCO,II.1.1,Córdoba,AR-X,annual,2013,gas oil combustion consumption by to the public,13719.53184,TJ,CO2,74100.0,kg/TJ,1016617309.344,kg -9bfbc108-4684-3944-9700-be41958ea3a5,SESCO,II.1.1,Córdoba,AR-X,annual,2013,gas oil combustion consumption by to the public,13719.53184,TJ,CH4,3.9,kg/TJ,53506.174176,kg -9bfbc108-4684-3944-9700-be41958ea3a5,SESCO,II.1.1,Córdoba,AR-X,annual,2013,gas oil combustion consumption by to the public,13719.53184,TJ,N2O,3.9,kg/TJ,53506.174176,kg -c7ef7953-ed54-3477-81d7-1930408b9099,SESCO,II.1.1,Entre Rios,AR-E,annual,2013,gas oil combustion consumption by to the public,4479.92748,TJ,CO2,74100.0,kg/TJ,331962626.268,kg -ef7405b2-10e7-399f-a493-90bf10a2c74b,SESCO,II.1.1,Entre Rios,AR-E,annual,2013,gas oil combustion consumption by to the public,4479.92748,TJ,CH4,3.9,kg/TJ,17471.717172,kg -ef7405b2-10e7-399f-a493-90bf10a2c74b,SESCO,II.1.1,Entre Rios,AR-E,annual,2013,gas oil combustion consumption by to the public,4479.92748,TJ,N2O,3.9,kg/TJ,17471.717172,kg -5d811acd-2145-3bc6-a7a5-2c422f25f41f,SESCO,II.1.1,Formosa,AR-P,annual,2013,gas oil combustion consumption by to the public,887.93796,TJ,CO2,74100.0,kg/TJ,65796202.835999995,kg -686436a3-a96b-3b08-ab2d-f93f7fda0701,SESCO,II.1.1,Formosa,AR-P,annual,2013,gas oil combustion consumption by to the public,887.93796,TJ,CH4,3.9,kg/TJ,3462.958044,kg -686436a3-a96b-3b08-ab2d-f93f7fda0701,SESCO,II.1.1,Formosa,AR-P,annual,2013,gas oil combustion consumption by to the public,887.93796,TJ,N2O,3.9,kg/TJ,3462.958044,kg -987e7646-7e45-320b-80ff-f9fd0b7f48d5,SESCO,II.1.1,Jujuy,AR-Y,annual,2013,gas oil combustion consumption by to the public,2084.26848,TJ,CO2,74100.0,kg/TJ,154444294.368,kg -4ba768f2-81b7-3d87-984e-a06c06c9d45b,SESCO,II.1.1,Jujuy,AR-Y,annual,2013,gas oil combustion consumption by to the public,2084.26848,TJ,CH4,3.9,kg/TJ,8128.647072000001,kg -4ba768f2-81b7-3d87-984e-a06c06c9d45b,SESCO,II.1.1,Jujuy,AR-Y,annual,2013,gas oil combustion consumption by to the public,2084.26848,TJ,N2O,3.9,kg/TJ,8128.647072000001,kg -8c27ec5e-09cb-397e-bbdd-bcdc6e413a2e,SESCO,II.1.1,La Pampa,AR-L,annual,2013,gas oil combustion consumption by to the public,2690.7594,TJ,CO2,74100.0,kg/TJ,199385271.54,kg -707b015f-4953-37b6-86c5-a569c7f8ac56,SESCO,II.1.1,La Pampa,AR-L,annual,2013,gas oil combustion consumption by to the public,2690.7594,TJ,CH4,3.9,kg/TJ,10493.961659999999,kg -707b015f-4953-37b6-86c5-a569c7f8ac56,SESCO,II.1.1,La Pampa,AR-L,annual,2013,gas oil combustion consumption by to the public,2690.7594,TJ,N2O,3.9,kg/TJ,10493.961659999999,kg -d2fd1beb-7f1a-3cbb-a19f-66e82fc3ed24,SESCO,II.1.1,La Rioja,AR-F,annual,2013,gas oil combustion consumption by to the public,906.46752,TJ,CO2,74100.0,kg/TJ,67169243.23200001,kg -3fdab34c-b50c-3a60-90f4-ba4dc9da6a13,SESCO,II.1.1,La Rioja,AR-F,annual,2013,gas oil combustion consumption by to the public,906.46752,TJ,CH4,3.9,kg/TJ,3535.223328,kg -3fdab34c-b50c-3a60-90f4-ba4dc9da6a13,SESCO,II.1.1,La Rioja,AR-F,annual,2013,gas oil combustion consumption by to the public,906.46752,TJ,N2O,3.9,kg/TJ,3535.223328,kg -5a75f61b-128b-38f5-ac31-a04a5fc2be64,SESCO,II.1.1,Mendoza,AR-M,annual,2013,gas oil combustion consumption by to the public,14070.076439999999,TJ,CO2,74100.0,kg/TJ,1042592664.2039999,kg -0b2f53e6-2216-32ca-844a-451f6cda4ede,SESCO,II.1.1,Mendoza,AR-M,annual,2013,gas oil combustion consumption by to the public,14070.076439999999,TJ,CH4,3.9,kg/TJ,54873.298116,kg -0b2f53e6-2216-32ca-844a-451f6cda4ede,SESCO,II.1.1,Mendoza,AR-M,annual,2013,gas oil combustion consumption by to the public,14070.076439999999,TJ,N2O,3.9,kg/TJ,54873.298116,kg -d91ec29c-e1f0-367f-a043-2b0edecf851f,SESCO,II.1.1,Misiones,AR-N,annual,2013,gas oil combustion consumption by to the public,4545.5214,TJ,CO2,74100.0,kg/TJ,336823135.73999995,kg -659c8ded-229c-34e6-8dab-8edbc0170d9c,SESCO,II.1.1,Misiones,AR-N,annual,2013,gas oil combustion consumption by to the public,4545.5214,TJ,CH4,3.9,kg/TJ,17727.53346,kg -659c8ded-229c-34e6-8dab-8edbc0170d9c,SESCO,II.1.1,Misiones,AR-N,annual,2013,gas oil combustion consumption by to the public,4545.5214,TJ,N2O,3.9,kg/TJ,17727.53346,kg -eccb5050-3992-3981-b4d7-3612803c373b,SESCO,II.1.1,Neuquén,AR-Q,annual,2013,gas oil combustion consumption by to the public,3825.2886,TJ,CO2,74100.0,kg/TJ,283453885.26,kg -26f3fc8d-2042-3cb4-918b-0504a66518f7,SESCO,II.1.1,Neuquén,AR-Q,annual,2013,gas oil combustion consumption by to the public,3825.2886,TJ,CH4,3.9,kg/TJ,14918.62554,kg -26f3fc8d-2042-3cb4-918b-0504a66518f7,SESCO,II.1.1,Neuquén,AR-Q,annual,2013,gas oil combustion consumption by to the public,3825.2886,TJ,N2O,3.9,kg/TJ,14918.62554,kg -1dc7482e-48cb-3c30-90af-88941efd7185,SESCO,II.1.1,Rio Negro,AR-R,annual,2013,gas oil combustion consumption by to the public,5150.09796,TJ,CO2,74100.0,kg/TJ,381622258.836,kg -7aa010bd-507f-3804-b6e2-28d8e91c198f,SESCO,II.1.1,Rio Negro,AR-R,annual,2013,gas oil combustion consumption by to the public,5150.09796,TJ,CH4,3.9,kg/TJ,20085.382043999998,kg -7aa010bd-507f-3804-b6e2-28d8e91c198f,SESCO,II.1.1,Rio Negro,AR-R,annual,2013,gas oil combustion consumption by to the public,5150.09796,TJ,N2O,3.9,kg/TJ,20085.382043999998,kg -b01bb4a6-aaf9-3514-8fc1-f7883bdffa53,SESCO,II.1.1,Salta,AR-A,annual,2013,gas oil combustion consumption by to the public,4130.8638,TJ,CO2,74100.0,kg/TJ,306097007.58,kg -9c5618d5-08a4-3f4f-8f84-404c3fb1e586,SESCO,II.1.1,Salta,AR-A,annual,2013,gas oil combustion consumption by to the public,4130.8638,TJ,CH4,3.9,kg/TJ,16110.36882,kg -9c5618d5-08a4-3f4f-8f84-404c3fb1e586,SESCO,II.1.1,Salta,AR-A,annual,2013,gas oil combustion consumption by to the public,4130.8638,TJ,N2O,3.9,kg/TJ,16110.36882,kg -f9e183e3-fbc1-33b0-8694-951177ea65b1,SESCO,II.1.1,San Juan,AR-J,annual,2013,gas oil combustion consumption by to the public,2369.36364,TJ,CO2,74100.0,kg/TJ,175569845.724,kg -3ccd6cdf-a0e5-35ef-bc22-7638cd2dec1c,SESCO,II.1.1,San Juan,AR-J,annual,2013,gas oil combustion consumption by to the public,2369.36364,TJ,CH4,3.9,kg/TJ,9240.518195999999,kg -3ccd6cdf-a0e5-35ef-bc22-7638cd2dec1c,SESCO,II.1.1,San Juan,AR-J,annual,2013,gas oil combustion consumption by to the public,2369.36364,TJ,N2O,3.9,kg/TJ,9240.518195999999,kg -16889143-db74-3ec9-a976-bd892884526d,SESCO,II.1.1,San Luis,AR-D,annual,2013,gas oil combustion consumption by to the public,2047.49832,TJ,CO2,74100.0,kg/TJ,151719625.512,kg -502d749a-1a1d-3e30-9f0d-44daa456fc20,SESCO,II.1.1,San Luis,AR-D,annual,2013,gas oil combustion consumption by to the public,2047.49832,TJ,CH4,3.9,kg/TJ,7985.243447999999,kg -502d749a-1a1d-3e30-9f0d-44daa456fc20,SESCO,II.1.1,San Luis,AR-D,annual,2013,gas oil combustion consumption by to the public,2047.49832,TJ,N2O,3.9,kg/TJ,7985.243447999999,kg -cdcd1e36-d005-323c-9674-b072fbe40896,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2013,gas oil combustion consumption by to the public,3786.71244,TJ,CO2,74100.0,kg/TJ,280595391.80399996,kg -88844ede-63f2-3b41-a1f5-cac1e3c12e71,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2013,gas oil combustion consumption by to the public,3786.71244,TJ,CH4,3.9,kg/TJ,14768.178515999998,kg -88844ede-63f2-3b41-a1f5-cac1e3c12e71,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2013,gas oil combustion consumption by to the public,3786.71244,TJ,N2O,3.9,kg/TJ,14768.178515999998,kg -fdcbbf7b-0e0a-3f2b-8f60-a74fe1bda8dd,SESCO,II.1.1,Santa Fe,AR-S,annual,2013,gas oil combustion consumption by to the public,11060.16072,TJ,CO2,74100.0,kg/TJ,819557909.352,kg -96320e8c-91c0-38c1-9ccc-9e6277b45922,SESCO,II.1.1,Santa Fe,AR-S,annual,2013,gas oil combustion consumption by to the public,11060.16072,TJ,CH4,3.9,kg/TJ,43134.626808,kg -96320e8c-91c0-38c1-9ccc-9e6277b45922,SESCO,II.1.1,Santa Fe,AR-S,annual,2013,gas oil combustion consumption by to the public,11060.16072,TJ,N2O,3.9,kg/TJ,43134.626808,kg -a92f2c90-8dbb-3cca-840d-7ed770604bda,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2013,gas oil combustion consumption by to the public,2253.38232,TJ,CO2,74100.0,kg/TJ,166975629.912,kg -912f2540-e8c6-35d2-9b92-f52de4c66fb1,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2013,gas oil combustion consumption by to the public,2253.38232,TJ,CH4,3.9,kg/TJ,8788.191048,kg -912f2540-e8c6-35d2-9b92-f52de4c66fb1,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2013,gas oil combustion consumption by to the public,2253.38232,TJ,N2O,3.9,kg/TJ,8788.191048,kg -59d9e0c8-e1fd-3e70-933e-0feffc4fb93b,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2013,gas oil combustion consumption by to the public,1126.54668,TJ,CO2,74100.0,kg/TJ,83477108.98799999,kg -2ce7d8e8-0235-35db-b0e1-bb985bc3e2e2,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2013,gas oil combustion consumption by to the public,1126.54668,TJ,CH4,3.9,kg/TJ,4393.532052,kg -2ce7d8e8-0235-35db-b0e1-bb985bc3e2e2,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2013,gas oil combustion consumption by to the public,1126.54668,TJ,N2O,3.9,kg/TJ,4393.532052,kg -35f64572-334f-38c6-bdaf-8560e0177fd2,SESCO,II.1.1,Tucuman,AR-T,annual,2013,gas oil combustion consumption by to the public,2407.07292,TJ,CO2,74100.0,kg/TJ,178364103.372,kg -0db0cd9e-0c76-38b2-8eb3-d06385ae4da3,SESCO,II.1.1,Tucuman,AR-T,annual,2013,gas oil combustion consumption by to the public,2407.07292,TJ,CH4,3.9,kg/TJ,9387.584388,kg -0db0cd9e-0c76-38b2-8eb3-d06385ae4da3,SESCO,II.1.1,Tucuman,AR-T,annual,2013,gas oil combustion consumption by to the public,2407.07292,TJ,N2O,3.9,kg/TJ,9387.584388,kg -54b6fdd9-7ea2-3915-840f-f54622aed810,SESCO,II.1.1,Buenos Aires,AR-B,annual,2013,gas oil combustion consumption by to the public,11309.13588,TJ,CO2,74100.0,kg/TJ,838006968.708,kg -b2664008-c9b0-3dee-a0d5-0bbc9dde17ba,SESCO,II.1.1,Buenos Aires,AR-B,annual,2013,gas oil combustion consumption by to the public,11309.13588,TJ,CH4,3.9,kg/TJ,44105.629931999996,kg -b2664008-c9b0-3dee-a0d5-0bbc9dde17ba,SESCO,II.1.1,Buenos Aires,AR-B,annual,2013,gas oil combustion consumption by to the public,11309.13588,TJ,N2O,3.9,kg/TJ,44105.629931999996,kg -27a9459d-418f-39a7-95f4-5887e95f5947,SESCO,II.1.1,Capital Federal,AR-C,annual,2013,gas oil combustion consumption by to the public,1481.93136,TJ,CO2,74100.0,kg/TJ,109811113.77600001,kg -5de5124e-a01b-31ef-9567-d63a997bcd31,SESCO,II.1.1,Capital Federal,AR-C,annual,2013,gas oil combustion consumption by to the public,1481.93136,TJ,CH4,3.9,kg/TJ,5779.532304,kg -5de5124e-a01b-31ef-9567-d63a997bcd31,SESCO,II.1.1,Capital Federal,AR-C,annual,2013,gas oil combustion consumption by to the public,1481.93136,TJ,N2O,3.9,kg/TJ,5779.532304,kg -99f108f7-4cc9-38f3-96f7-ccd6cff31560,SESCO,II.1.1,Catamarca,AR-K,annual,2013,gas oil combustion consumption by to the public,139.7844,TJ,CO2,74100.0,kg/TJ,10358024.040000001,kg -f0a7f380-b165-3459-8b33-53d2da74eca4,SESCO,II.1.1,Catamarca,AR-K,annual,2013,gas oil combustion consumption by to the public,139.7844,TJ,CH4,3.9,kg/TJ,545.15916,kg -f0a7f380-b165-3459-8b33-53d2da74eca4,SESCO,II.1.1,Catamarca,AR-K,annual,2013,gas oil combustion consumption by to the public,139.7844,TJ,N2O,3.9,kg/TJ,545.15916,kg -61bf2eac-cae7-33e7-badb-d773a174b927,SESCO,II.1.1,Chaco,AR-H,annual,2013,gas oil combustion consumption by to the public,786.98256,TJ,CO2,74100.0,kg/TJ,58315407.696,kg -8b2b7248-a0cc-3a22-a236-e8f1eb182555,SESCO,II.1.1,Chaco,AR-H,annual,2013,gas oil combustion consumption by to the public,786.98256,TJ,CH4,3.9,kg/TJ,3069.231984,kg -8b2b7248-a0cc-3a22-a236-e8f1eb182555,SESCO,II.1.1,Chaco,AR-H,annual,2013,gas oil combustion consumption by to the public,786.98256,TJ,N2O,3.9,kg/TJ,3069.231984,kg -3f1050e4-2e32-33ce-b7eb-1054cd73735e,SESCO,II.1.1,Chubut,AR-U,annual,2013,gas oil combustion consumption by to the public,818.33472,TJ,CO2,74100.0,kg/TJ,60638602.752,kg -4c997464-d8dc-3e23-abe1-3babd6073cc1,SESCO,II.1.1,Chubut,AR-U,annual,2013,gas oil combustion consumption by to the public,818.33472,TJ,CH4,3.9,kg/TJ,3191.5054079999995,kg -4c997464-d8dc-3e23-abe1-3babd6073cc1,SESCO,II.1.1,Chubut,AR-U,annual,2013,gas oil combustion consumption by to the public,818.33472,TJ,N2O,3.9,kg/TJ,3191.5054079999995,kg -a46a3f27-6a1f-33f1-b8fe-9c599256c952,SESCO,II.1.1,Corrientes,AR-W,annual,2013,gas oil combustion consumption by to the public,706.94064,TJ,CO2,74100.0,kg/TJ,52384301.424,kg -b37221ac-d039-3689-a821-0abb02ab570e,SESCO,II.1.1,Corrientes,AR-W,annual,2013,gas oil combustion consumption by to the public,706.94064,TJ,CH4,3.9,kg/TJ,2757.068496,kg -b37221ac-d039-3689-a821-0abb02ab570e,SESCO,II.1.1,Corrientes,AR-W,annual,2013,gas oil combustion consumption by to the public,706.94064,TJ,N2O,3.9,kg/TJ,2757.068496,kg -57a37460-1689-3533-a974-7ab5e9f47314,SESCO,II.1.1,Córdoba,AR-X,annual,2013,gas oil combustion consumption by to the public,2581.17132,TJ,CO2,74100.0,kg/TJ,191264794.812,kg -60bf4866-0e4b-3c9d-85ee-13c9a2fce0aa,SESCO,II.1.1,Córdoba,AR-X,annual,2013,gas oil combustion consumption by to the public,2581.17132,TJ,CH4,3.9,kg/TJ,10066.568148,kg -60bf4866-0e4b-3c9d-85ee-13c9a2fce0aa,SESCO,II.1.1,Córdoba,AR-X,annual,2013,gas oil combustion consumption by to the public,2581.17132,TJ,N2O,3.9,kg/TJ,10066.568148,kg -84b29052-38d7-3832-ab1b-7290b1aee3bf,SESCO,II.1.1,Entre Rios,AR-E,annual,2013,gas oil combustion consumption by to the public,1221.32556,TJ,CO2,74100.0,kg/TJ,90500223.996,kg -64a9d81d-d5ba-31ab-bd0c-957b058f4b70,SESCO,II.1.1,Entre Rios,AR-E,annual,2013,gas oil combustion consumption by to the public,1221.32556,TJ,CH4,3.9,kg/TJ,4763.1696839999995,kg -64a9d81d-d5ba-31ab-bd0c-957b058f4b70,SESCO,II.1.1,Entre Rios,AR-E,annual,2013,gas oil combustion consumption by to the public,1221.32556,TJ,N2O,3.9,kg/TJ,4763.1696839999995,kg -f6ab7ddf-e3b8-36ce-80b8-d7e133b7980d,SESCO,II.1.1,Formosa,AR-P,annual,2013,gas oil combustion consumption by to the public,245.90496,TJ,CO2,74100.0,kg/TJ,18221557.536,kg -e0e1c68d-35cd-3675-86dd-8079817e07a3,SESCO,II.1.1,Formosa,AR-P,annual,2013,gas oil combustion consumption by to the public,245.90496,TJ,CH4,3.9,kg/TJ,959.0293439999999,kg -e0e1c68d-35cd-3675-86dd-8079817e07a3,SESCO,II.1.1,Formosa,AR-P,annual,2013,gas oil combustion consumption by to the public,245.90496,TJ,N2O,3.9,kg/TJ,959.0293439999999,kg -27f116cc-cc9c-3251-ab49-a29fb324820e,SESCO,II.1.1,Jujuy,AR-Y,annual,2013,gas oil combustion consumption by to the public,262.30344,TJ,CO2,74100.0,kg/TJ,19436684.904000003,kg -d9d69b37-a900-370f-b2b5-6b28a23f4104,SESCO,II.1.1,Jujuy,AR-Y,annual,2013,gas oil combustion consumption by to the public,262.30344,TJ,CH4,3.9,kg/TJ,1022.983416,kg -d9d69b37-a900-370f-b2b5-6b28a23f4104,SESCO,II.1.1,Jujuy,AR-Y,annual,2013,gas oil combustion consumption by to the public,262.30344,TJ,N2O,3.9,kg/TJ,1022.983416,kg -e107e4b1-6783-36ee-966a-a6f2c6743662,SESCO,II.1.1,La Pampa,AR-L,annual,2013,gas oil combustion consumption by to the public,733.38048,TJ,CO2,74100.0,kg/TJ,54343493.568,kg -65ffb3d3-cbfa-368b-9058-ce67e406ebba,SESCO,II.1.1,La Pampa,AR-L,annual,2013,gas oil combustion consumption by to the public,733.38048,TJ,CH4,3.9,kg/TJ,2860.183872,kg -65ffb3d3-cbfa-368b-9058-ce67e406ebba,SESCO,II.1.1,La Pampa,AR-L,annual,2013,gas oil combustion consumption by to the public,733.38048,TJ,N2O,3.9,kg/TJ,2860.183872,kg -f8e5f4de-8ae6-37e7-8f88-8cce4f700cb8,SESCO,II.1.1,La Rioja,AR-F,annual,2013,gas oil combustion consumption by to the public,163.37076,TJ,CO2,74100.0,kg/TJ,12105773.316,kg -701ae4fe-3d53-3344-9d7f-1c82a0d3488a,SESCO,II.1.1,La Rioja,AR-F,annual,2013,gas oil combustion consumption by to the public,163.37076,TJ,CH4,3.9,kg/TJ,637.1459639999999,kg -701ae4fe-3d53-3344-9d7f-1c82a0d3488a,SESCO,II.1.1,La Rioja,AR-F,annual,2013,gas oil combustion consumption by to the public,163.37076,TJ,N2O,3.9,kg/TJ,637.1459639999999,kg -1cbdb7b6-ef6e-3c5b-a1c6-468bec7ef139,SESCO,II.1.1,Mendoza,AR-M,annual,2013,gas oil combustion consumption by to the public,1493.30916,TJ,CO2,74100.0,kg/TJ,110654208.756,kg -cbfc32de-0035-341f-b58a-922fdbe1ed68,SESCO,II.1.1,Mendoza,AR-M,annual,2013,gas oil combustion consumption by to the public,1493.30916,TJ,CH4,3.9,kg/TJ,5823.905724,kg -cbfc32de-0035-341f-b58a-922fdbe1ed68,SESCO,II.1.1,Mendoza,AR-M,annual,2013,gas oil combustion consumption by to the public,1493.30916,TJ,N2O,3.9,kg/TJ,5823.905724,kg -c0e626a4-f3e9-3507-87a6-862258ab6544,SESCO,II.1.1,Misiones,AR-N,annual,2013,gas oil combustion consumption by to the public,794.71224,TJ,CO2,74100.0,kg/TJ,58888176.984,kg -ead02864-159d-3692-a6ef-8961ada20f33,SESCO,II.1.1,Misiones,AR-N,annual,2013,gas oil combustion consumption by to the public,794.71224,TJ,CH4,3.9,kg/TJ,3099.377736,kg -ead02864-159d-3692-a6ef-8961ada20f33,SESCO,II.1.1,Misiones,AR-N,annual,2013,gas oil combustion consumption by to the public,794.71224,TJ,N2O,3.9,kg/TJ,3099.377736,kg -e2d6a8ac-c3d3-3264-9d15-a0e6b6339694,SESCO,II.1.1,Neuquén,AR-Q,annual,2013,gas oil combustion consumption by to the public,984.0894,TJ,CO2,74100.0,kg/TJ,72921024.53999999,kg -0cda087f-07d6-3cf1-8ef8-448f52142817,SESCO,II.1.1,Neuquén,AR-Q,annual,2013,gas oil combustion consumption by to the public,984.0894,TJ,CH4,3.9,kg/TJ,3837.9486599999996,kg -0cda087f-07d6-3cf1-8ef8-448f52142817,SESCO,II.1.1,Neuquén,AR-Q,annual,2013,gas oil combustion consumption by to the public,984.0894,TJ,N2O,3.9,kg/TJ,3837.9486599999996,kg -f3488a8b-60ef-372b-8808-d01ce5924c56,SESCO,II.1.1,Rio Negro,AR-R,annual,2013,gas oil combustion consumption by to the public,848.85612,TJ,CO2,74100.0,kg/TJ,62900238.492000006,kg -414cd522-866c-306e-a752-eddc976ec5b1,SESCO,II.1.1,Rio Negro,AR-R,annual,2013,gas oil combustion consumption by to the public,848.85612,TJ,CH4,3.9,kg/TJ,3310.538868,kg -414cd522-866c-306e-a752-eddc976ec5b1,SESCO,II.1.1,Rio Negro,AR-R,annual,2013,gas oil combustion consumption by to the public,848.85612,TJ,N2O,3.9,kg/TJ,3310.538868,kg -2656cfc0-0013-3a77-b7b8-627a2fdba939,SESCO,II.1.1,Salta,AR-A,annual,2013,gas oil combustion consumption by to the public,644.70588,TJ,CO2,74100.0,kg/TJ,47772705.708,kg -5a80c87b-bd72-3bf9-9940-84767ae03681,SESCO,II.1.1,Salta,AR-A,annual,2013,gas oil combustion consumption by to the public,644.70588,TJ,CH4,3.9,kg/TJ,2514.352932,kg -5a80c87b-bd72-3bf9-9940-84767ae03681,SESCO,II.1.1,Salta,AR-A,annual,2013,gas oil combustion consumption by to the public,644.70588,TJ,N2O,3.9,kg/TJ,2514.352932,kg -15843ef5-a518-3a59-b037-47bed7021338,SESCO,II.1.1,San Juan,AR-J,annual,2013,gas oil combustion consumption by to the public,343.10388,TJ,CO2,74100.0,kg/TJ,25423997.508,kg -0e267cd0-a42c-3c20-b29d-b420518d1894,SESCO,II.1.1,San Juan,AR-J,annual,2013,gas oil combustion consumption by to the public,343.10388,TJ,CH4,3.9,kg/TJ,1338.105132,kg -0e267cd0-a42c-3c20-b29d-b420518d1894,SESCO,II.1.1,San Juan,AR-J,annual,2013,gas oil combustion consumption by to the public,343.10388,TJ,N2O,3.9,kg/TJ,1338.105132,kg -d58cf38a-56a9-3cf4-ace0-9803debf81c3,SESCO,II.1.1,San Luis,AR-D,annual,2013,gas oil combustion consumption by to the public,419.60604,TJ,CO2,74100.0,kg/TJ,31092807.564,kg -f677540b-ce1a-3b05-b040-e7902c9447f0,SESCO,II.1.1,San Luis,AR-D,annual,2013,gas oil combustion consumption by to the public,419.60604,TJ,CH4,3.9,kg/TJ,1636.463556,kg -f677540b-ce1a-3b05-b040-e7902c9447f0,SESCO,II.1.1,San Luis,AR-D,annual,2013,gas oil combustion consumption by to the public,419.60604,TJ,N2O,3.9,kg/TJ,1636.463556,kg -b95c9474-56d1-3eff-a6bd-55bc933556e8,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2013,gas oil combustion consumption by to the public,480.32376,TJ,CO2,74100.0,kg/TJ,35591990.616,kg -e36f0da8-11a7-32ed-8b72-95caea55895e,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2013,gas oil combustion consumption by to the public,480.32376,TJ,CH4,3.9,kg/TJ,1873.2626639999999,kg -e36f0da8-11a7-32ed-8b72-95caea55895e,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2013,gas oil combustion consumption by to the public,480.32376,TJ,N2O,3.9,kg/TJ,1873.2626639999999,kg -1217e68f-cd2c-30b0-bb42-3581196ca0df,SESCO,II.1.1,Santa Fe,AR-S,annual,2013,gas oil combustion consumption by to the public,2723.95368,TJ,CO2,74100.0,kg/TJ,201844967.688,kg -c6985375-9cd9-36a5-b852-9244ad3609fd,SESCO,II.1.1,Santa Fe,AR-S,annual,2013,gas oil combustion consumption by to the public,2723.95368,TJ,CH4,3.9,kg/TJ,10623.419352,kg -c6985375-9cd9-36a5-b852-9244ad3609fd,SESCO,II.1.1,Santa Fe,AR-S,annual,2013,gas oil combustion consumption by to the public,2723.95368,TJ,N2O,3.9,kg/TJ,10623.419352,kg -bc31dc6e-75e0-386b-b4f7-9d5d6a59ef7a,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2013,gas oil combustion consumption by to the public,435.10152,TJ,CO2,74100.0,kg/TJ,32241022.632,kg -e5a09244-64d3-31f5-a487-f535c9836715,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2013,gas oil combustion consumption by to the public,435.10152,TJ,CH4,3.9,kg/TJ,1696.895928,kg -e5a09244-64d3-31f5-a487-f535c9836715,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2013,gas oil combustion consumption by to the public,435.10152,TJ,N2O,3.9,kg/TJ,1696.895928,kg -ff0ba52c-4946-3535-94f8-57bbceb1f993,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2013,gas oil combustion consumption by to the public,90.40836,TJ,CO2,74100.0,kg/TJ,6699259.476,kg -792af063-1349-35b5-bf4e-89c952f82e2a,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2013,gas oil combustion consumption by to the public,90.40836,TJ,CH4,3.9,kg/TJ,352.592604,kg -792af063-1349-35b5-bf4e-89c952f82e2a,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2013,gas oil combustion consumption by to the public,90.40836,TJ,N2O,3.9,kg/TJ,352.592604,kg -b17b14ce-b415-3817-b696-79b3017cd46a,SESCO,II.1.1,Tucuman,AR-T,annual,2013,gas oil combustion consumption by to the public,463.16676,TJ,CO2,74100.0,kg/TJ,34320656.916,kg -b12b1cd7-3d8e-30a6-9231-3cbb850dc514,SESCO,II.1.1,Tucuman,AR-T,annual,2013,gas oil combustion consumption by to the public,463.16676,TJ,CH4,3.9,kg/TJ,1806.350364,kg -b12b1cd7-3d8e-30a6-9231-3cbb850dc514,SESCO,II.1.1,Tucuman,AR-T,annual,2013,gas oil combustion consumption by to the public,463.16676,TJ,N2O,3.9,kg/TJ,1806.350364,kg -4b53b44d-a9da-3b35-8a9e-83adc4be7abe,SESCO,II.1.1,Buenos Aires,AR-B,annual,2013,jet kerosene combustion consumption by to the public,258.638019,TJ,CO2,71500.0,kg/TJ,18492618.3585,kg -e826ffb0-d9b9-3427-b409-8a74e9bba42a,SESCO,II.1.1,Buenos Aires,AR-B,annual,2013,jet kerosene combustion consumption by to the public,258.638019,TJ,CH4,0.5,kg/TJ,129.3190095,kg -6e87b304-b7b6-3c83-a498-6191edb87459,SESCO,II.1.1,Buenos Aires,AR-B,annual,2013,jet kerosene combustion consumption by to the public,258.638019,TJ,N2O,2.0,kg/TJ,517.276038,kg -f2a70a71-eac7-3863-b84d-5cee56637c66,SESCO,II.1.1,Capital Federal,AR-C,annual,2013,jet kerosene combustion consumption by to the public,10.002053999999998,TJ,CO2,71500.0,kg/TJ,715146.8609999998,kg -4ba6ca5c-2ec8-3097-b335-e33f73468cb2,SESCO,II.1.1,Capital Federal,AR-C,annual,2013,jet kerosene combustion consumption by to the public,10.002053999999998,TJ,CH4,0.5,kg/TJ,5.001026999999999,kg -a95c4b36-e7d8-3c26-a291-34ed77d06803,SESCO,II.1.1,Capital Federal,AR-C,annual,2013,jet kerosene combustion consumption by to the public,10.002053999999998,TJ,N2O,2.0,kg/TJ,20.004107999999995,kg -586f6c0f-5d93-3eb0-a7c6-ef98e6e860a8,SESCO,II.1.1,Catamarca,AR-K,annual,2013,jet kerosene combustion consumption by to the public,5.1268389999999995,TJ,CO2,71500.0,kg/TJ,366568.9885,kg -e28b9fbd-85a9-331c-9152-1f73359c7af7,SESCO,II.1.1,Catamarca,AR-K,annual,2013,jet kerosene combustion consumption by to the public,5.1268389999999995,TJ,CH4,0.5,kg/TJ,2.5634194999999997,kg -54dcdd47-d763-3153-a122-69edee915717,SESCO,II.1.1,Catamarca,AR-K,annual,2013,jet kerosene combustion consumption by to the public,5.1268389999999995,TJ,N2O,2.0,kg/TJ,10.253677999999999,kg -2b54a080-6149-30d8-8771-c4346f1f83e4,SESCO,II.1.1,Chaco,AR-H,annual,2013,jet kerosene combustion consumption by to the public,2.20171,TJ,CO2,71500.0,kg/TJ,157422.26499999998,kg -26fe5913-9ace-366c-82db-3c5fc5933c22,SESCO,II.1.1,Chaco,AR-H,annual,2013,jet kerosene combustion consumption by to the public,2.20171,TJ,CH4,0.5,kg/TJ,1.100855,kg -ff8eda42-7af6-3cd7-92f3-09448a9ab050,SESCO,II.1.1,Chaco,AR-H,annual,2013,jet kerosene combustion consumption by to the public,2.20171,TJ,N2O,2.0,kg/TJ,4.40342,kg -c4fe952f-c08f-3b5c-b873-12214ff3a354,SESCO,II.1.1,Chubut,AR-U,annual,2013,jet kerosene combustion consumption by to the public,13.524789999999998,TJ,CO2,71500.0,kg/TJ,967022.4849999999,kg -4b197424-f6ba-3663-8be5-d49da01144d8,SESCO,II.1.1,Chubut,AR-U,annual,2013,jet kerosene combustion consumption by to the public,13.524789999999998,TJ,CH4,0.5,kg/TJ,6.762394999999999,kg -c2f9202a-8319-31ce-ab83-fe515dbd8989,SESCO,II.1.1,Chubut,AR-U,annual,2013,jet kerosene combustion consumption by to the public,13.524789999999998,TJ,N2O,2.0,kg/TJ,27.049579999999995,kg -f745484a-354e-3ff0-b4fa-e1dc4b6f2242,SESCO,II.1.1,Corrientes,AR-W,annual,2013,jet kerosene combustion consumption by to the public,5.1268389999999995,TJ,CO2,71500.0,kg/TJ,366568.9885,kg -9084be11-98d0-3c6e-b10f-1d93bff44a97,SESCO,II.1.1,Corrientes,AR-W,annual,2013,jet kerosene combustion consumption by to the public,5.1268389999999995,TJ,CH4,0.5,kg/TJ,2.5634194999999997,kg -3c40027e-3f6b-34c4-ac33-bc2e0f99f685,SESCO,II.1.1,Corrientes,AR-W,annual,2013,jet kerosene combustion consumption by to the public,5.1268389999999995,TJ,N2O,2.0,kg/TJ,10.253677999999999,kg -86f5c2a9-c178-37f8-bf91-f47c6a6d33a4,SESCO,II.1.1,Córdoba,AR-X,annual,2013,jet kerosene combustion consumption by to the public,132.54294199999998,TJ,CO2,71500.0,kg/TJ,9476820.352999998,kg -577610e3-4202-3c68-9e9a-0c70651401f7,SESCO,II.1.1,Córdoba,AR-X,annual,2013,jet kerosene combustion consumption by to the public,132.54294199999998,TJ,CH4,0.5,kg/TJ,66.27147099999999,kg -fc66df2d-0659-3223-92dd-ade70c9f9e37,SESCO,II.1.1,Córdoba,AR-X,annual,2013,jet kerosene combustion consumption by to the public,132.54294199999998,TJ,N2O,2.0,kg/TJ,265.08588399999996,kg -d454def1-c884-345f-b246-c7fb9bfa23ef,SESCO,II.1.1,Entre Rios,AR-E,annual,2013,jet kerosene combustion consumption by to the public,13.996584999999998,TJ,CO2,71500.0,kg/TJ,1000755.8274999999,kg -0d96a949-49b7-383b-8157-d5021dbd4fb4,SESCO,II.1.1,Entre Rios,AR-E,annual,2013,jet kerosene combustion consumption by to the public,13.996584999999998,TJ,CH4,0.5,kg/TJ,6.998292499999999,kg -13af1d02-d18f-370f-8807-5569c9831518,SESCO,II.1.1,Entre Rios,AR-E,annual,2013,jet kerosene combustion consumption by to the public,13.996584999999998,TJ,N2O,2.0,kg/TJ,27.993169999999996,kg -d27ec511-aedf-3d28-8535-5d4bbbcea09b,SESCO,II.1.1,Jujuy,AR-Y,annual,2013,jet kerosene combustion consumption by to the public,3.7429069999999993,TJ,CO2,71500.0,kg/TJ,267617.85049999994,kg -eb693cc9-ae26-3c0c-a583-48731f539a70,SESCO,II.1.1,Jujuy,AR-Y,annual,2013,jet kerosene combustion consumption by to the public,3.7429069999999993,TJ,CH4,0.5,kg/TJ,1.8714534999999997,kg -2b1e197a-ddbf-3d4b-a39f-dfc2e2248bb4,SESCO,II.1.1,Jujuy,AR-Y,annual,2013,jet kerosene combustion consumption by to the public,3.7429069999999993,TJ,N2O,2.0,kg/TJ,7.485813999999999,kg -a3948838-600b-3872-8f58-17e3e9dd3d2d,SESCO,II.1.1,La Pampa,AR-L,annual,2013,jet kerosene combustion consumption by to the public,10.473848999999998,TJ,CO2,71500.0,kg/TJ,748880.2034999998,kg -f064bbc8-c1bf-3499-846d-cf67a67770e2,SESCO,II.1.1,La Pampa,AR-L,annual,2013,jet kerosene combustion consumption by to the public,10.473848999999998,TJ,CH4,0.5,kg/TJ,5.236924499999999,kg -54adc027-6d08-31f1-9942-a2b0af8c777c,SESCO,II.1.1,La Pampa,AR-L,annual,2013,jet kerosene combustion consumption by to the public,10.473848999999998,TJ,N2O,2.0,kg/TJ,20.947697999999995,kg -263a5920-af10-3522-852a-8a05ae34a992,SESCO,II.1.1,La Rioja,AR-F,annual,2013,jet kerosene combustion consumption by to the public,2.1388039999999995,TJ,CO2,71500.0,kg/TJ,152924.48599999998,kg -39a79695-e74a-3d9e-8e25-d8c6c64c6c52,SESCO,II.1.1,La Rioja,AR-F,annual,2013,jet kerosene combustion consumption by to the public,2.1388039999999995,TJ,CH4,0.5,kg/TJ,1.0694019999999997,kg -57323d55-04cc-3815-a5b7-ade7fce7f52a,SESCO,II.1.1,La Rioja,AR-F,annual,2013,jet kerosene combustion consumption by to the public,2.1388039999999995,TJ,N2O,2.0,kg/TJ,4.277607999999999,kg -21bf6901-d964-3eb0-becf-43cefe2f9df1,SESCO,II.1.1,Mendoza,AR-M,annual,2013,jet kerosene combustion consumption by to the public,50.26189399999999,TJ,CO2,71500.0,kg/TJ,3593725.420999999,kg -ffbd534e-c784-39fc-9dcf-cc6a2d0821a7,SESCO,II.1.1,Mendoza,AR-M,annual,2013,jet kerosene combustion consumption by to the public,50.26189399999999,TJ,CH4,0.5,kg/TJ,25.130946999999995,kg -7e2d325d-e2bc-3b98-97bc-686b117856d8,SESCO,II.1.1,Mendoza,AR-M,annual,2013,jet kerosene combustion consumption by to the public,50.26189399999999,TJ,N2O,2.0,kg/TJ,100.52378799999998,kg -d6986b4d-9bc0-3b21-8f43-b4f7779266da,SESCO,II.1.1,Neuquén,AR-Q,annual,2013,jet kerosene combustion consumption by to the public,9.184275999999999,TJ,CO2,71500.0,kg/TJ,656675.7339999999,kg -0677ed92-819b-36e2-b82f-dc85ae49814c,SESCO,II.1.1,Neuquén,AR-Q,annual,2013,jet kerosene combustion consumption by to the public,9.184275999999999,TJ,CH4,0.5,kg/TJ,4.592137999999999,kg -56162c92-30a6-3808-b569-f5c21fa5ce9f,SESCO,II.1.1,Neuquén,AR-Q,annual,2013,jet kerosene combustion consumption by to the public,9.184275999999999,TJ,N2O,2.0,kg/TJ,18.368551999999998,kg -dad46b44-2cda-3b64-b1b1-7a332c823bdc,SESCO,II.1.1,Rio Negro,AR-R,annual,2013,jet kerosene combustion consumption by to the public,1.7928209999999998,TJ,CO2,71500.0,kg/TJ,128186.70149999998,kg -50497b97-34e8-3a17-8aa6-f34c2a3fd104,SESCO,II.1.1,Rio Negro,AR-R,annual,2013,jet kerosene combustion consumption by to the public,1.7928209999999998,TJ,CH4,0.5,kg/TJ,0.8964104999999999,kg -7a3498d7-b046-3216-8377-4fff95c81297,SESCO,II.1.1,Rio Negro,AR-R,annual,2013,jet kerosene combustion consumption by to the public,1.7928209999999998,TJ,N2O,2.0,kg/TJ,3.5856419999999996,kg -d511835f-49d8-3c04-8142-15bb220832b4,SESCO,II.1.1,Salta,AR-A,annual,2013,jet kerosene combustion consumption by to the public,3.1138469999999994,TJ,CO2,71500.0,kg/TJ,222640.06049999996,kg -91714b59-91e7-39f2-8dc5-6d56204ee365,SESCO,II.1.1,Salta,AR-A,annual,2013,jet kerosene combustion consumption by to the public,3.1138469999999994,TJ,CH4,0.5,kg/TJ,1.5569234999999997,kg -74c6c8ef-d011-366e-8410-b6423d77e17a,SESCO,II.1.1,Salta,AR-A,annual,2013,jet kerosene combustion consumption by to the public,3.1138469999999994,TJ,N2O,2.0,kg/TJ,6.227693999999999,kg -5c7f0c61-5a1f-3032-ad2d-53aa5bd36306,SESCO,II.1.1,San Juan,AR-J,annual,2013,jet kerosene combustion consumption by to the public,4.025983999999999,TJ,CO2,71500.0,kg/TJ,287857.85599999997,kg -94e9ca31-6dba-3129-9408-1340a94344b8,SESCO,II.1.1,San Juan,AR-J,annual,2013,jet kerosene combustion consumption by to the public,4.025983999999999,TJ,CH4,0.5,kg/TJ,2.0129919999999997,kg -63c7990a-162f-3362-b18c-a3f9c4f44fbb,SESCO,II.1.1,San Juan,AR-J,annual,2013,jet kerosene combustion consumption by to the public,4.025983999999999,TJ,N2O,2.0,kg/TJ,8.051967999999999,kg -c9a2c018-96ad-369b-9c3f-abe17efa8b2a,SESCO,II.1.1,San Luis,AR-D,annual,2013,jet kerosene combustion consumption by to the public,7.737437999999999,TJ,CO2,71500.0,kg/TJ,553226.8169999999,kg -25c03b5c-0f89-3ff0-9de6-71fb409682d0,SESCO,II.1.1,San Luis,AR-D,annual,2013,jet kerosene combustion consumption by to the public,7.737437999999999,TJ,CH4,0.5,kg/TJ,3.8687189999999996,kg -07b2c48b-e2c6-3a4b-8b6d-b724891c78e9,SESCO,II.1.1,San Luis,AR-D,annual,2013,jet kerosene combustion consumption by to the public,7.737437999999999,TJ,N2O,2.0,kg/TJ,15.474875999999998,kg -8468312a-f7f9-3497-965b-128197062d13,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2013,jet kerosene combustion consumption by to the public,15.820858999999997,TJ,CO2,71500.0,kg/TJ,1131191.4184999997,kg -9d490b98-f356-39ff-be24-39debe635bd2,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2013,jet kerosene combustion consumption by to the public,15.820858999999997,TJ,CH4,0.5,kg/TJ,7.9104294999999984,kg -8810ca23-0024-3887-92e8-5f87a9327da2,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2013,jet kerosene combustion consumption by to the public,15.820858999999997,TJ,N2O,2.0,kg/TJ,31.641717999999994,kg -11f3f694-6e90-3205-8a96-a7cb427a7e41,SESCO,II.1.1,Santa Fe,AR-S,annual,2013,jet kerosene combustion consumption by to the public,51.86599699999999,TJ,CO2,71500.0,kg/TJ,3708418.7854999993,kg -ba51c37b-401e-3a85-a0c2-e7a7d66ec104,SESCO,II.1.1,Santa Fe,AR-S,annual,2013,jet kerosene combustion consumption by to the public,51.86599699999999,TJ,CH4,0.5,kg/TJ,25.932998499999997,kg -1fe5ab31-eb75-369a-b830-b0e1dba1e196,SESCO,II.1.1,Santa Fe,AR-S,annual,2013,jet kerosene combustion consumption by to the public,51.86599699999999,TJ,N2O,2.0,kg/TJ,103.73199399999999,kg -5010bf03-da02-33e2-882f-0420dc051209,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2013,jet kerosene combustion consumption by to the public,7.045471999999998,TJ,CO2,71500.0,kg/TJ,503751.2479999999,kg -38f20a2c-c810-30fe-a779-968f5840a954,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2013,jet kerosene combustion consumption by to the public,7.045471999999998,TJ,CH4,0.5,kg/TJ,3.522735999999999,kg -617dc736-61f7-34e5-a4b3-9b75e8f1c7d5,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2013,jet kerosene combustion consumption by to the public,7.045471999999998,TJ,N2O,2.0,kg/TJ,14.090943999999997,kg -14fdcd68-602c-3416-938a-b9557fa74d62,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2013,jet kerosene combustion consumption by to the public,2.7678639999999994,TJ,CO2,71500.0,kg/TJ,197902.27599999995,kg -06589a5f-3816-380e-85b0-9c1639e4a503,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2013,jet kerosene combustion consumption by to the public,2.7678639999999994,TJ,CH4,0.5,kg/TJ,1.3839319999999997,kg -5fc3a679-58cd-39b8-bb19-da76b6168b40,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2013,jet kerosene combustion consumption by to the public,2.7678639999999994,TJ,N2O,2.0,kg/TJ,5.535727999999999,kg -a26bbd41-726c-3c0d-8936-b673658d69c0,SESCO,II.1.1,Tucuman,AR-T,annual,2013,jet kerosene combustion consumption by to the public,12.361028999999998,TJ,CO2,71500.0,kg/TJ,883813.5734999999,kg -ab1bf21c-f5a9-322f-b4f7-979182308e0b,SESCO,II.1.1,Tucuman,AR-T,annual,2013,jet kerosene combustion consumption by to the public,12.361028999999998,TJ,CH4,0.5,kg/TJ,6.180514499999999,kg -6cae9ccb-fe39-38be-96db-e6133b633278,SESCO,II.1.1,Tucuman,AR-T,annual,2013,jet kerosene combustion consumption by to the public,12.361028999999998,TJ,N2O,2.0,kg/TJ,24.722057999999997,kg -8b2705d5-5357-3561-9ad6-48231418d7b5,SESCO,I.3.1,Neuquén,AR-Q,annual,2013,Aviation Gasoline combustion consumption by petrochemical industries,2.7049579999999995,TJ,,,kg/TJ,,kg -6b57dee5-386c-38ae-825d-d1d37961b6b1,SESCO,I.3.1,Neuquén,AR-Q,annual,2013,gas oil combustion consumption by petrochemical industries,0.5418,TJ,CO2,74100.0,kg/TJ,40147.38,kg -211c8522-7e25-343d-92c4-916d7993fec5,SESCO,I.3.1,Neuquén,AR-Q,annual,2013,gas oil combustion consumption by petrochemical industries,0.5418,TJ,CH4,3.9,kg/TJ,2.1130199999999997,kg -211c8522-7e25-343d-92c4-916d7993fec5,SESCO,I.3.1,Neuquén,AR-Q,annual,2013,gas oil combustion consumption by petrochemical industries,0.5418,TJ,N2O,3.9,kg/TJ,2.1130199999999997,kg -f8941dab-21f1-3c31-af4c-ce83a95ca389,SESCO,I.3.1,Neuquén,AR-Q,annual,2013,gas oil combustion consumption by petrochemical industries,2.31168,TJ,CO2,74100.0,kg/TJ,171295.48799999998,kg -f0e691c7-2837-35f8-8214-558fb83fa5db,SESCO,I.3.1,Neuquén,AR-Q,annual,2013,gas oil combustion consumption by petrochemical industries,2.31168,TJ,CH4,3.9,kg/TJ,9.015552,kg -f0e691c7-2837-35f8-8214-558fb83fa5db,SESCO,I.3.1,Neuquén,AR-Q,annual,2013,gas oil combustion consumption by petrochemical industries,2.31168,TJ,N2O,3.9,kg/TJ,9.015552,kg -a40597bd-695c-3ab1-8125-ed3c5181346d,SESCO,II.1.1,Buenos Aires,AR-B,annual,2013,gasoline combustion consumption by freight transport,43.1925,TJ,CO2,69300.0,kg/TJ,2993240.25,kg -49ee9632-ffef-3974-b6b1-b8f6461f8219,SESCO,II.1.1,Buenos Aires,AR-B,annual,2013,gasoline combustion consumption by freight transport,43.1925,TJ,CH4,33.0,kg/TJ,1425.3525000000002,kg -c1842c26-ccd2-310e-aad4-12c1423719d9,SESCO,II.1.1,Buenos Aires,AR-B,annual,2013,gasoline combustion consumption by freight transport,43.1925,TJ,N2O,3.2,kg/TJ,138.216,kg -b5fdfd2f-69b4-3373-a5b6-34d1cd3c99ba,SESCO,II.1.1,Capital Federal,AR-C,annual,2013,gasoline combustion consumption by freight transport,15.504999999999999,TJ,CO2,69300.0,kg/TJ,1074496.5,kg -e1ed1263-9d5e-3700-9a9a-33f2d374fec6,SESCO,II.1.1,Capital Federal,AR-C,annual,2013,gasoline combustion consumption by freight transport,15.504999999999999,TJ,CH4,33.0,kg/TJ,511.66499999999996,kg -d702cd67-77db-311d-b319-3704f879f6cd,SESCO,II.1.1,Capital Federal,AR-C,annual,2013,gasoline combustion consumption by freight transport,15.504999999999999,TJ,N2O,3.2,kg/TJ,49.616,kg -58a31817-623e-3908-b1c5-0a4c680e6bba,SESCO,II.1.1,Buenos Aires,AR-B,annual,2013,gas oil combustion consumption by freight transport,6913.22352,TJ,CO2,74100.0,kg/TJ,512269862.83199996,kg -2a48b68b-b282-37c3-a3ad-354f88a9e4f4,SESCO,II.1.1,Buenos Aires,AR-B,annual,2013,gas oil combustion consumption by freight transport,6913.22352,TJ,CH4,3.9,kg/TJ,26961.571728,kg -2a48b68b-b282-37c3-a3ad-354f88a9e4f4,SESCO,II.1.1,Buenos Aires,AR-B,annual,2013,gas oil combustion consumption by freight transport,6913.22352,TJ,N2O,3.9,kg/TJ,26961.571728,kg -28d9bc12-4c0c-3357-8140-2499457c04cc,SESCO,II.1.1,Capital Federal,AR-C,annual,2013,gas oil combustion consumption by freight transport,4009.7895599999997,TJ,CO2,74100.0,kg/TJ,297125406.39599997,kg -2b695d44-4218-3c64-b0d7-c0b254508429,SESCO,II.1.1,Capital Federal,AR-C,annual,2013,gas oil combustion consumption by freight transport,4009.7895599999997,TJ,CH4,3.9,kg/TJ,15638.179283999998,kg -2b695d44-4218-3c64-b0d7-c0b254508429,SESCO,II.1.1,Capital Federal,AR-C,annual,2013,gas oil combustion consumption by freight transport,4009.7895599999997,TJ,N2O,3.9,kg/TJ,15638.179283999998,kg -243457bb-72b1-3c23-bb17-a359f21613b2,SESCO,II.1.1,Catamarca,AR-K,annual,2013,gas oil combustion consumption by freight transport,19.28808,TJ,CO2,74100.0,kg/TJ,1429246.7280000001,kg -84884a7b-dedd-3734-bd0b-daaa12f39305,SESCO,II.1.1,Catamarca,AR-K,annual,2013,gas oil combustion consumption by freight transport,19.28808,TJ,CH4,3.9,kg/TJ,75.223512,kg -84884a7b-dedd-3734-bd0b-daaa12f39305,SESCO,II.1.1,Catamarca,AR-K,annual,2013,gas oil combustion consumption by freight transport,19.28808,TJ,N2O,3.9,kg/TJ,75.223512,kg -9815914e-8025-3c58-b11b-dc596e167a2d,SESCO,II.1.1,Chaco,AR-H,annual,2013,gas oil combustion consumption by freight transport,195.7704,TJ,CO2,74100.0,kg/TJ,14506586.639999999,kg -d77925be-93bd-301e-9bbe-883e10422cda,SESCO,II.1.1,Chaco,AR-H,annual,2013,gas oil combustion consumption by freight transport,195.7704,TJ,CH4,3.9,kg/TJ,763.50456,kg -d77925be-93bd-301e-9bbe-883e10422cda,SESCO,II.1.1,Chaco,AR-H,annual,2013,gas oil combustion consumption by freight transport,195.7704,TJ,N2O,3.9,kg/TJ,763.50456,kg -6664c558-3aed-3b27-9867-96f84a97915b,SESCO,II.1.1,Chubut,AR-U,annual,2013,gas oil combustion consumption by freight transport,212.89128,TJ,CO2,74100.0,kg/TJ,15775243.848,kg -dcb96f3e-4553-39cc-a180-00d0f3562fb6,SESCO,II.1.1,Chubut,AR-U,annual,2013,gas oil combustion consumption by freight transport,212.89128,TJ,CH4,3.9,kg/TJ,830.275992,kg -dcb96f3e-4553-39cc-a180-00d0f3562fb6,SESCO,II.1.1,Chubut,AR-U,annual,2013,gas oil combustion consumption by freight transport,212.89128,TJ,N2O,3.9,kg/TJ,830.275992,kg -3bb9e608-7e4b-3eb8-b753-5c0fa5e232a1,SESCO,II.1.1,Corrientes,AR-W,annual,2013,gas oil combustion consumption by freight transport,297.05088,TJ,CO2,74100.0,kg/TJ,22011470.208,kg -d5dcd818-3b7b-3694-83a1-f202f3191756,SESCO,II.1.1,Corrientes,AR-W,annual,2013,gas oil combustion consumption by freight transport,297.05088,TJ,CH4,3.9,kg/TJ,1158.498432,kg -d5dcd818-3b7b-3694-83a1-f202f3191756,SESCO,II.1.1,Corrientes,AR-W,annual,2013,gas oil combustion consumption by freight transport,297.05088,TJ,N2O,3.9,kg/TJ,1158.498432,kg -d84b24d4-8d56-3c30-adf7-fc1ab182e391,SESCO,II.1.1,Córdoba,AR-X,annual,2013,gas oil combustion consumption by freight transport,1935.2012399999999,TJ,CO2,74100.0,kg/TJ,143398411.884,kg -f5459c5c-7a7e-39ab-a350-3871dc76ffbd,SESCO,II.1.1,Córdoba,AR-X,annual,2013,gas oil combustion consumption by freight transport,1935.2012399999999,TJ,CH4,3.9,kg/TJ,7547.284835999999,kg -f5459c5c-7a7e-39ab-a350-3871dc76ffbd,SESCO,II.1.1,Córdoba,AR-X,annual,2013,gas oil combustion consumption by freight transport,1935.2012399999999,TJ,N2O,3.9,kg/TJ,7547.284835999999,kg -05d78a72-00f1-39c4-86ea-a68d32372cfb,SESCO,II.1.1,Entre Rios,AR-E,annual,2013,gas oil combustion consumption by freight transport,301.602,TJ,CO2,74100.0,kg/TJ,22348708.2,kg -caa3f3e8-7dd8-38be-b0ec-3f2172e77530,SESCO,II.1.1,Entre Rios,AR-E,annual,2013,gas oil combustion consumption by freight transport,301.602,TJ,CH4,3.9,kg/TJ,1176.2477999999999,kg -caa3f3e8-7dd8-38be-b0ec-3f2172e77530,SESCO,II.1.1,Entre Rios,AR-E,annual,2013,gas oil combustion consumption by freight transport,301.602,TJ,N2O,3.9,kg/TJ,1176.2477999999999,kg -70893583-bacc-388a-8047-9dbeb9eb7ca0,SESCO,II.1.1,Formosa,AR-P,annual,2013,gas oil combustion consumption by freight transport,1.22808,TJ,CO2,74100.0,kg/TJ,91000.728,kg -94fa41a5-2fc3-3a00-b214-32c85358ccee,SESCO,II.1.1,Formosa,AR-P,annual,2013,gas oil combustion consumption by freight transport,1.22808,TJ,CH4,3.9,kg/TJ,4.789512,kg -94fa41a5-2fc3-3a00-b214-32c85358ccee,SESCO,II.1.1,Formosa,AR-P,annual,2013,gas oil combustion consumption by freight transport,1.22808,TJ,N2O,3.9,kg/TJ,4.789512,kg -c8ef4f7b-cd37-3380-a433-ba1cbc4dc550,SESCO,II.1.1,Jujuy,AR-Y,annual,2013,gas oil combustion consumption by freight transport,93.1896,TJ,CO2,74100.0,kg/TJ,6905349.36,kg -a2c9b583-3f3e-33cb-9c2b-41202b888d11,SESCO,II.1.1,Jujuy,AR-Y,annual,2013,gas oil combustion consumption by freight transport,93.1896,TJ,CH4,3.9,kg/TJ,363.43944,kg -a2c9b583-3f3e-33cb-9c2b-41202b888d11,SESCO,II.1.1,Jujuy,AR-Y,annual,2013,gas oil combustion consumption by freight transport,93.1896,TJ,N2O,3.9,kg/TJ,363.43944,kg -2e67cc2b-6ca2-3eb3-bd21-81e4e6bb4c3f,SESCO,II.1.1,La Pampa,AR-L,annual,2013,gas oil combustion consumption by freight transport,69.67548,TJ,CO2,74100.0,kg/TJ,5162953.067999999,kg -ede50abe-9bed-3567-898a-bf81179cb3c0,SESCO,II.1.1,La Pampa,AR-L,annual,2013,gas oil combustion consumption by freight transport,69.67548,TJ,CH4,3.9,kg/TJ,271.73437199999995,kg -ede50abe-9bed-3567-898a-bf81179cb3c0,SESCO,II.1.1,La Pampa,AR-L,annual,2013,gas oil combustion consumption by freight transport,69.67548,TJ,N2O,3.9,kg/TJ,271.73437199999995,kg -d4a3dd28-9e19-3a6c-9994-09db10d88e15,SESCO,II.1.1,La Rioja,AR-F,annual,2013,gas oil combustion consumption by freight transport,1.40868,TJ,CO2,74100.0,kg/TJ,104383.188,kg -488c47cf-a431-38ae-9819-8da40fb4e6ac,SESCO,II.1.1,La Rioja,AR-F,annual,2013,gas oil combustion consumption by freight transport,1.40868,TJ,CH4,3.9,kg/TJ,5.4938519999999995,kg -488c47cf-a431-38ae-9819-8da40fb4e6ac,SESCO,II.1.1,La Rioja,AR-F,annual,2013,gas oil combustion consumption by freight transport,1.40868,TJ,N2O,3.9,kg/TJ,5.4938519999999995,kg -d5cc99e7-9144-3888-b4c8-c905caa902cb,SESCO,II.1.1,Mendoza,AR-M,annual,2013,gas oil combustion consumption by freight transport,1598.1294,TJ,CO2,74100.0,kg/TJ,118421388.54,kg -9d109c5f-1064-3f7a-9385-4ce7e6b32147,SESCO,II.1.1,Mendoza,AR-M,annual,2013,gas oil combustion consumption by freight transport,1598.1294,TJ,CH4,3.9,kg/TJ,6232.70466,kg -9d109c5f-1064-3f7a-9385-4ce7e6b32147,SESCO,II.1.1,Mendoza,AR-M,annual,2013,gas oil combustion consumption by freight transport,1598.1294,TJ,N2O,3.9,kg/TJ,6232.70466,kg -07905e67-45be-3546-b885-fa1c5da8949c,SESCO,II.1.1,Misiones,AR-N,annual,2013,gas oil combustion consumption by freight transport,474.72516,TJ,CO2,74100.0,kg/TJ,35177134.356,kg -2ae5e220-30c2-3d40-a16c-7d09f8550bb9,SESCO,II.1.1,Misiones,AR-N,annual,2013,gas oil combustion consumption by freight transport,474.72516,TJ,CH4,3.9,kg/TJ,1851.428124,kg -2ae5e220-30c2-3d40-a16c-7d09f8550bb9,SESCO,II.1.1,Misiones,AR-N,annual,2013,gas oil combustion consumption by freight transport,474.72516,TJ,N2O,3.9,kg/TJ,1851.428124,kg -5de01d9e-de76-3947-953c-ee258234adf5,SESCO,II.1.1,Neuquén,AR-Q,annual,2013,gas oil combustion consumption by freight transport,676.49148,TJ,CO2,74100.0,kg/TJ,50128018.668000005,kg -59f6c520-5c5c-30db-b56f-c4a3c2085f5a,SESCO,II.1.1,Neuquén,AR-Q,annual,2013,gas oil combustion consumption by freight transport,676.49148,TJ,CH4,3.9,kg/TJ,2638.316772,kg -59f6c520-5c5c-30db-b56f-c4a3c2085f5a,SESCO,II.1.1,Neuquén,AR-Q,annual,2013,gas oil combustion consumption by freight transport,676.49148,TJ,N2O,3.9,kg/TJ,2638.316772,kg -367338d6-ff15-3366-8f92-e1d5ed475f6b,SESCO,II.1.1,Rio Negro,AR-R,annual,2013,gas oil combustion consumption by freight transport,119.44884,TJ,CO2,74100.0,kg/TJ,8851159.044,kg -16e49d9f-c989-35c5-bb00-5c86eb54b63e,SESCO,II.1.1,Rio Negro,AR-R,annual,2013,gas oil combustion consumption by freight transport,119.44884,TJ,CH4,3.9,kg/TJ,465.850476,kg -16e49d9f-c989-35c5-bb00-5c86eb54b63e,SESCO,II.1.1,Rio Negro,AR-R,annual,2013,gas oil combustion consumption by freight transport,119.44884,TJ,N2O,3.9,kg/TJ,465.850476,kg -c2f997dc-fed0-3969-bca8-62315963351a,SESCO,II.1.1,Salta,AR-A,annual,2013,gas oil combustion consumption by freight transport,234.63551999999999,TJ,CO2,74100.0,kg/TJ,17386492.031999998,kg -2a90ab1c-6fef-3654-90bb-a93e7306dd98,SESCO,II.1.1,Salta,AR-A,annual,2013,gas oil combustion consumption by freight transport,234.63551999999999,TJ,CH4,3.9,kg/TJ,915.0785279999999,kg -2a90ab1c-6fef-3654-90bb-a93e7306dd98,SESCO,II.1.1,Salta,AR-A,annual,2013,gas oil combustion consumption by freight transport,234.63551999999999,TJ,N2O,3.9,kg/TJ,915.0785279999999,kg -c41ade22-8e16-361b-aca2-ba68bf33fd5a,SESCO,II.1.1,San Juan,AR-J,annual,2013,gas oil combustion consumption by freight transport,107.67372,TJ,CO2,74100.0,kg/TJ,7978622.652,kg -40527a5e-6338-3d3d-b8b2-869613431e22,SESCO,II.1.1,San Juan,AR-J,annual,2013,gas oil combustion consumption by freight transport,107.67372,TJ,CH4,3.9,kg/TJ,419.927508,kg -40527a5e-6338-3d3d-b8b2-869613431e22,SESCO,II.1.1,San Juan,AR-J,annual,2013,gas oil combustion consumption by freight transport,107.67372,TJ,N2O,3.9,kg/TJ,419.927508,kg -e6fc2df3-1422-37f2-958c-f1fcaeabb4db,SESCO,II.1.1,San Luis,AR-D,annual,2013,gas oil combustion consumption by freight transport,134.33028,TJ,CO2,74100.0,kg/TJ,9953873.748,kg -24c96caf-a5e9-3949-be1b-74437dea0002,SESCO,II.1.1,San Luis,AR-D,annual,2013,gas oil combustion consumption by freight transport,134.33028,TJ,CH4,3.9,kg/TJ,523.8880919999999,kg -24c96caf-a5e9-3949-be1b-74437dea0002,SESCO,II.1.1,San Luis,AR-D,annual,2013,gas oil combustion consumption by freight transport,134.33028,TJ,N2O,3.9,kg/TJ,523.8880919999999,kg -408e45a0-76b3-3acf-a70c-03f9760c3332,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2013,gas oil combustion consumption by freight transport,95.60964,TJ,CO2,74100.0,kg/TJ,7084674.324,kg -72af24b0-1c77-3baa-b76a-008d484be343,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2013,gas oil combustion consumption by freight transport,95.60964,TJ,CH4,3.9,kg/TJ,372.877596,kg -72af24b0-1c77-3baa-b76a-008d484be343,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2013,gas oil combustion consumption by freight transport,95.60964,TJ,N2O,3.9,kg/TJ,372.877596,kg -9ceaad3e-2c54-3aaa-840a-af66d0ec935d,SESCO,II.1.1,Santa Fe,AR-S,annual,2013,gas oil combustion consumption by freight transport,1899.40632,TJ,CO2,74100.0,kg/TJ,140746008.312,kg -d135e5ba-f9f4-34dd-b0f5-2ab2e49a50ea,SESCO,II.1.1,Santa Fe,AR-S,annual,2013,gas oil combustion consumption by freight transport,1899.40632,TJ,CH4,3.9,kg/TJ,7407.684648,kg -d135e5ba-f9f4-34dd-b0f5-2ab2e49a50ea,SESCO,II.1.1,Santa Fe,AR-S,annual,2013,gas oil combustion consumption by freight transport,1899.40632,TJ,N2O,3.9,kg/TJ,7407.684648,kg -506d936d-ec64-3fec-b5b4-2136c3718468,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2013,gas oil combustion consumption by freight transport,56.49168,TJ,CO2,74100.0,kg/TJ,4186033.4880000004,kg -a710ce9c-98fe-3781-8dec-fea523855fc1,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2013,gas oil combustion consumption by freight transport,56.49168,TJ,CH4,3.9,kg/TJ,220.317552,kg -a710ce9c-98fe-3781-8dec-fea523855fc1,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2013,gas oil combustion consumption by freight transport,56.49168,TJ,N2O,3.9,kg/TJ,220.317552,kg -c180356f-c42c-31f9-bf56-8f3c26ac70c0,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2013,gas oil combustion consumption by freight transport,1.806,TJ,CO2,74100.0,kg/TJ,133824.6,kg -449b0895-3c80-3aeb-8c6f-149b1a89065a,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2013,gas oil combustion consumption by freight transport,1.806,TJ,CH4,3.9,kg/TJ,7.0434,kg -449b0895-3c80-3aeb-8c6f-149b1a89065a,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2013,gas oil combustion consumption by freight transport,1.806,TJ,N2O,3.9,kg/TJ,7.0434,kg -d874257d-5ab8-3d60-89ab-2776d54779b0,SESCO,II.1.1,Tucuman,AR-T,annual,2013,gas oil combustion consumption by freight transport,272.74212,TJ,CO2,74100.0,kg/TJ,20210191.092,kg -10d20593-b244-3ab8-924c-33d299b51b41,SESCO,II.1.1,Tucuman,AR-T,annual,2013,gas oil combustion consumption by freight transport,272.74212,TJ,CH4,3.9,kg/TJ,1063.694268,kg -10d20593-b244-3ab8-924c-33d299b51b41,SESCO,II.1.1,Tucuman,AR-T,annual,2013,gas oil combustion consumption by freight transport,272.74212,TJ,N2O,3.9,kg/TJ,1063.694268,kg -98b8d372-d2d2-3326-a998-254c106c55a0,SESCO,II.1.1,Buenos Aires,AR-B,annual,2013,gas oil combustion consumption by freight transport,243.52104,TJ,CO2,74100.0,kg/TJ,18044909.064,kg -622cba15-07f9-308d-b5ec-c37fe464bbc1,SESCO,II.1.1,Buenos Aires,AR-B,annual,2013,gas oil combustion consumption by freight transport,243.52104,TJ,CH4,3.9,kg/TJ,949.732056,kg -622cba15-07f9-308d-b5ec-c37fe464bbc1,SESCO,II.1.1,Buenos Aires,AR-B,annual,2013,gas oil combustion consumption by freight transport,243.52104,TJ,N2O,3.9,kg/TJ,949.732056,kg -64513b98-be0e-331b-8ce1-0d16d27a254a,SESCO,II.1.1,Capital Federal,AR-C,annual,2013,gas oil combustion consumption by freight transport,444.02316,TJ,CO2,74100.0,kg/TJ,32902116.156000003,kg -62966a3a-ecaf-3a59-a1a3-4f454697559e,SESCO,II.1.1,Capital Federal,AR-C,annual,2013,gas oil combustion consumption by freight transport,444.02316,TJ,CH4,3.9,kg/TJ,1731.6903240000001,kg -62966a3a-ecaf-3a59-a1a3-4f454697559e,SESCO,II.1.1,Capital Federal,AR-C,annual,2013,gas oil combustion consumption by freight transport,444.02316,TJ,N2O,3.9,kg/TJ,1731.6903240000001,kg -53841e57-48e1-339d-b047-7a112356ab38,SESCO,II.1.1,Chaco,AR-H,annual,2013,gas oil combustion consumption by freight transport,7.7658,TJ,CO2,74100.0,kg/TJ,575445.78,kg -733cdd07-8699-3e43-a99d-496be7b8eea4,SESCO,II.1.1,Chaco,AR-H,annual,2013,gas oil combustion consumption by freight transport,7.7658,TJ,CH4,3.9,kg/TJ,30.28662,kg -733cdd07-8699-3e43-a99d-496be7b8eea4,SESCO,II.1.1,Chaco,AR-H,annual,2013,gas oil combustion consumption by freight transport,7.7658,TJ,N2O,3.9,kg/TJ,30.28662,kg -cb90f215-b38e-32c2-9f5e-311fedc4a69b,SESCO,II.1.1,Chubut,AR-U,annual,2013,gas oil combustion consumption by freight transport,5.70696,TJ,CO2,74100.0,kg/TJ,422885.736,kg -61c39b14-81ae-3aa3-b41a-d0c25e05bcb8,SESCO,II.1.1,Chubut,AR-U,annual,2013,gas oil combustion consumption by freight transport,5.70696,TJ,CH4,3.9,kg/TJ,22.257143999999997,kg -61c39b14-81ae-3aa3-b41a-d0c25e05bcb8,SESCO,II.1.1,Chubut,AR-U,annual,2013,gas oil combustion consumption by freight transport,5.70696,TJ,N2O,3.9,kg/TJ,22.257143999999997,kg -af855d1f-8418-3796-9584-248bd96c2002,SESCO,II.1.1,Corrientes,AR-W,annual,2013,gas oil combustion consumption by freight transport,2.45616,TJ,CO2,74100.0,kg/TJ,182001.456,kg -d77c6ff7-fc3e-39c1-900f-ba0d1f8a82ef,SESCO,II.1.1,Corrientes,AR-W,annual,2013,gas oil combustion consumption by freight transport,2.45616,TJ,CH4,3.9,kg/TJ,9.579024,kg -d77c6ff7-fc3e-39c1-900f-ba0d1f8a82ef,SESCO,II.1.1,Corrientes,AR-W,annual,2013,gas oil combustion consumption by freight transport,2.45616,TJ,N2O,3.9,kg/TJ,9.579024,kg -0c46753a-658b-3fb1-94a1-7af2873302cd,SESCO,II.1.1,Córdoba,AR-X,annual,2013,gas oil combustion consumption by freight transport,9.35508,TJ,CO2,74100.0,kg/TJ,693211.428,kg -0b79e4d5-7a43-3e85-a94d-e48895d506ad,SESCO,II.1.1,Córdoba,AR-X,annual,2013,gas oil combustion consumption by freight transport,9.35508,TJ,CH4,3.9,kg/TJ,36.484812,kg -0b79e4d5-7a43-3e85-a94d-e48895d506ad,SESCO,II.1.1,Córdoba,AR-X,annual,2013,gas oil combustion consumption by freight transport,9.35508,TJ,N2O,3.9,kg/TJ,36.484812,kg -9059c9d5-cdb2-394e-9825-a41d125db20e,SESCO,II.1.1,Entre Rios,AR-E,annual,2013,gas oil combustion consumption by freight transport,12.56976,TJ,CO2,74100.0,kg/TJ,931419.216,kg -153dfb07-9fc9-3866-af6c-b986e0886876,SESCO,II.1.1,Entre Rios,AR-E,annual,2013,gas oil combustion consumption by freight transport,12.56976,TJ,CH4,3.9,kg/TJ,49.022064,kg -153dfb07-9fc9-3866-af6c-b986e0886876,SESCO,II.1.1,Entre Rios,AR-E,annual,2013,gas oil combustion consumption by freight transport,12.56976,TJ,N2O,3.9,kg/TJ,49.022064,kg -3cc7a3d7-3ec1-35f3-b910-cd13ade9bd29,SESCO,II.1.1,La Pampa,AR-L,annual,2013,gas oil combustion consumption by freight transport,0.32508,TJ,CO2,74100.0,kg/TJ,24088.428,kg -17c36316-a6c4-3bf7-a27b-15791fa3c06a,SESCO,II.1.1,La Pampa,AR-L,annual,2013,gas oil combustion consumption by freight transport,0.32508,TJ,CH4,3.9,kg/TJ,1.267812,kg -17c36316-a6c4-3bf7-a27b-15791fa3c06a,SESCO,II.1.1,La Pampa,AR-L,annual,2013,gas oil combustion consumption by freight transport,0.32508,TJ,N2O,3.9,kg/TJ,1.267812,kg -abe9be6a-3b4f-3db7-91c5-686f0274e36e,SESCO,II.1.1,La Rioja,AR-F,annual,2013,gas oil combustion consumption by freight transport,1.73376,TJ,CO2,74100.0,kg/TJ,128471.616,kg -86ff24a2-569f-34a9-a097-02c4a4b8c62f,SESCO,II.1.1,La Rioja,AR-F,annual,2013,gas oil combustion consumption by freight transport,1.73376,TJ,CH4,3.9,kg/TJ,6.761664,kg -86ff24a2-569f-34a9-a097-02c4a4b8c62f,SESCO,II.1.1,La Rioja,AR-F,annual,2013,gas oil combustion consumption by freight transport,1.73376,TJ,N2O,3.9,kg/TJ,6.761664,kg -d0e6710d-a3e9-3cb2-bdae-94dc4f9e4f0e,SESCO,II.1.1,Mendoza,AR-M,annual,2013,gas oil combustion consumption by freight transport,13.978439999999999,TJ,CO2,74100.0,kg/TJ,1035802.404,kg -1ee55afb-3eeb-30f2-9779-3c95176cebd1,SESCO,II.1.1,Mendoza,AR-M,annual,2013,gas oil combustion consumption by freight transport,13.978439999999999,TJ,CH4,3.9,kg/TJ,54.515916,kg -1ee55afb-3eeb-30f2-9779-3c95176cebd1,SESCO,II.1.1,Mendoza,AR-M,annual,2013,gas oil combustion consumption by freight transport,13.978439999999999,TJ,N2O,3.9,kg/TJ,54.515916,kg -e0536112-588b-3a40-8344-9c9b3e7da2b9,SESCO,II.1.1,Misiones,AR-N,annual,2013,gas oil combustion consumption by freight transport,5.70696,TJ,CO2,74100.0,kg/TJ,422885.736,kg -1db85fc2-b5ae-30b3-8666-324010674dc6,SESCO,II.1.1,Misiones,AR-N,annual,2013,gas oil combustion consumption by freight transport,5.70696,TJ,CH4,3.9,kg/TJ,22.257143999999997,kg -1db85fc2-b5ae-30b3-8666-324010674dc6,SESCO,II.1.1,Misiones,AR-N,annual,2013,gas oil combustion consumption by freight transport,5.70696,TJ,N2O,3.9,kg/TJ,22.257143999999997,kg -37ab93e9-9bd0-3b7e-b98c-5fc0636ab478,SESCO,II.1.1,Neuquén,AR-Q,annual,2013,gas oil combustion consumption by freight transport,8.09088,TJ,CO2,74100.0,kg/TJ,599534.208,kg -6dc5f9bb-91a0-3903-b7d8-856f564b0572,SESCO,II.1.1,Neuquén,AR-Q,annual,2013,gas oil combustion consumption by freight transport,8.09088,TJ,CH4,3.9,kg/TJ,31.554432000000002,kg -6dc5f9bb-91a0-3903-b7d8-856f564b0572,SESCO,II.1.1,Neuquén,AR-Q,annual,2013,gas oil combustion consumption by freight transport,8.09088,TJ,N2O,3.9,kg/TJ,31.554432000000002,kg -c815995b-868f-3ed0-a1bb-c790c336661e,SESCO,II.1.1,Rio Negro,AR-R,annual,2013,gas oil combustion consumption by freight transport,2.05884,TJ,CO2,74100.0,kg/TJ,152560.044,kg -ec0a4c42-3760-3a08-86fc-bb901da4000f,SESCO,II.1.1,Rio Negro,AR-R,annual,2013,gas oil combustion consumption by freight transport,2.05884,TJ,CH4,3.9,kg/TJ,8.029475999999999,kg -ec0a4c42-3760-3a08-86fc-bb901da4000f,SESCO,II.1.1,Rio Negro,AR-R,annual,2013,gas oil combustion consumption by freight transport,2.05884,TJ,N2O,3.9,kg/TJ,8.029475999999999,kg -1b565d69-23ce-3159-9b95-42fb7c9b9c48,SESCO,II.1.1,Salta,AR-A,annual,2013,gas oil combustion consumption by freight transport,5.74308,TJ,CO2,74100.0,kg/TJ,425562.228,kg -1ce952b2-d973-3749-88c8-c17f8085d05e,SESCO,II.1.1,Salta,AR-A,annual,2013,gas oil combustion consumption by freight transport,5.74308,TJ,CH4,3.9,kg/TJ,22.398011999999998,kg -1ce952b2-d973-3749-88c8-c17f8085d05e,SESCO,II.1.1,Salta,AR-A,annual,2013,gas oil combustion consumption by freight transport,5.74308,TJ,N2O,3.9,kg/TJ,22.398011999999998,kg -3a1d06cc-b3de-3bb9-a51d-2ab2c2c37807,SESCO,II.1.1,San Juan,AR-J,annual,2013,gas oil combustion consumption by freight transport,1.84212,TJ,CO2,74100.0,kg/TJ,136501.092,kg -6be1b85f-d063-3f01-9da6-6784707f2219,SESCO,II.1.1,San Juan,AR-J,annual,2013,gas oil combustion consumption by freight transport,1.84212,TJ,CH4,3.9,kg/TJ,7.184267999999999,kg -6be1b85f-d063-3f01-9da6-6784707f2219,SESCO,II.1.1,San Juan,AR-J,annual,2013,gas oil combustion consumption by freight transport,1.84212,TJ,N2O,3.9,kg/TJ,7.184267999999999,kg -eb81d4cf-131d-3f0c-94c8-971f5f44bacc,SESCO,II.1.1,San Luis,AR-D,annual,2013,gas oil combustion consumption by freight transport,0.7223999999999999,TJ,CO2,74100.0,kg/TJ,53529.84,kg -7e5d937e-766b-3587-8992-45b28338d71e,SESCO,II.1.1,San Luis,AR-D,annual,2013,gas oil combustion consumption by freight transport,0.7223999999999999,TJ,CH4,3.9,kg/TJ,2.81736,kg -7e5d937e-766b-3587-8992-45b28338d71e,SESCO,II.1.1,San Luis,AR-D,annual,2013,gas oil combustion consumption by freight transport,0.7223999999999999,TJ,N2O,3.9,kg/TJ,2.81736,kg -a13fb712-a266-3a55-81c4-58aac738fd72,SESCO,II.1.1,Santa Fe,AR-S,annual,2013,gas oil combustion consumption by freight transport,113.16396,TJ,CO2,74100.0,kg/TJ,8385449.436000001,kg -00c28c21-16e0-3e6d-8ce6-45af038f60f3,SESCO,II.1.1,Santa Fe,AR-S,annual,2013,gas oil combustion consumption by freight transport,113.16396,TJ,CH4,3.9,kg/TJ,441.339444,kg -00c28c21-16e0-3e6d-8ce6-45af038f60f3,SESCO,II.1.1,Santa Fe,AR-S,annual,2013,gas oil combustion consumption by freight transport,113.16396,TJ,N2O,3.9,kg/TJ,441.339444,kg -9538ea72-cb1a-31e8-a3c1-d6e09531b470,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2013,gas oil combustion consumption by freight transport,0.07224,TJ,CO2,74100.0,kg/TJ,5352.9839999999995,kg -bac7c95d-2ce8-3ad1-87f4-8e0804123eab,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2013,gas oil combustion consumption by freight transport,0.07224,TJ,CH4,3.9,kg/TJ,0.281736,kg -bac7c95d-2ce8-3ad1-87f4-8e0804123eab,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2013,gas oil combustion consumption by freight transport,0.07224,TJ,N2O,3.9,kg/TJ,0.281736,kg -c8e60b34-4072-3e7b-a816-fe32070fa1bf,SESCO,II.1.1,Tucuman,AR-T,annual,2013,gas oil combustion consumption by freight transport,5.38188,TJ,CO2,74100.0,kg/TJ,398797.30799999996,kg -5a39e953-ee5d-3059-9599-c1fc4a8d0828,SESCO,II.1.1,Tucuman,AR-T,annual,2013,gas oil combustion consumption by freight transport,5.38188,TJ,CH4,3.9,kg/TJ,20.989331999999997,kg -5a39e953-ee5d-3059-9599-c1fc4a8d0828,SESCO,II.1.1,Tucuman,AR-T,annual,2013,gas oil combustion consumption by freight transport,5.38188,TJ,N2O,3.9,kg/TJ,20.989331999999997,kg -2d600228-873e-3aa2-8f24-df66ab1dcd8f,SESCO,II.1.1,Buenos Aires,AR-B,annual,2013,gas oil combustion consumption by public passenger transport,11423.99748,TJ,CO2,74100.0,kg/TJ,846518213.268,kg -8ba38711-592f-379e-9cde-09ff1a2eeaed,SESCO,II.1.1,Buenos Aires,AR-B,annual,2013,gas oil combustion consumption by public passenger transport,11423.99748,TJ,CH4,3.9,kg/TJ,44553.590172,kg -8ba38711-592f-379e-9cde-09ff1a2eeaed,SESCO,II.1.1,Buenos Aires,AR-B,annual,2013,gas oil combustion consumption by public passenger transport,11423.99748,TJ,N2O,3.9,kg/TJ,44553.590172,kg -e3ffdafc-f113-3bef-9b2f-87580883a397,SESCO,II.1.1,Capital Federal,AR-C,annual,2013,gas oil combustion consumption by public passenger transport,3101.4799199999998,TJ,CO2,74100.0,kg/TJ,229819662.072,kg -0d392e18-986b-3863-85d8-5689a733bc4e,SESCO,II.1.1,Capital Federal,AR-C,annual,2013,gas oil combustion consumption by public passenger transport,3101.4799199999998,TJ,CH4,3.9,kg/TJ,12095.771687999999,kg -0d392e18-986b-3863-85d8-5689a733bc4e,SESCO,II.1.1,Capital Federal,AR-C,annual,2013,gas oil combustion consumption by public passenger transport,3101.4799199999998,TJ,N2O,3.9,kg/TJ,12095.771687999999,kg -44be6cb3-d3b9-3b68-b120-b3d083bd45a4,SESCO,II.1.1,Catamarca,AR-K,annual,2013,gas oil combustion consumption by public passenger transport,223.14936,TJ,CO2,74100.0,kg/TJ,16535367.576,kg -f297d9df-189c-345e-970b-52c6e349f5a8,SESCO,II.1.1,Catamarca,AR-K,annual,2013,gas oil combustion consumption by public passenger transport,223.14936,TJ,CH4,3.9,kg/TJ,870.282504,kg -f297d9df-189c-345e-970b-52c6e349f5a8,SESCO,II.1.1,Catamarca,AR-K,annual,2013,gas oil combustion consumption by public passenger transport,223.14936,TJ,N2O,3.9,kg/TJ,870.282504,kg -1e6c0867-eb43-3d32-880d-98e860ecd707,SESCO,II.1.1,Chaco,AR-H,annual,2013,gas oil combustion consumption by public passenger transport,574.8498,TJ,CO2,74100.0,kg/TJ,42596370.18,kg -1f46db66-d915-3d43-977b-278b324a2384,SESCO,II.1.1,Chaco,AR-H,annual,2013,gas oil combustion consumption by public passenger transport,574.8498,TJ,CH4,3.9,kg/TJ,2241.9142199999997,kg -1f46db66-d915-3d43-977b-278b324a2384,SESCO,II.1.1,Chaco,AR-H,annual,2013,gas oil combustion consumption by public passenger transport,574.8498,TJ,N2O,3.9,kg/TJ,2241.9142199999997,kg -1a474ca4-e651-3ddc-b666-0db09b95b934,SESCO,II.1.1,Chubut,AR-U,annual,2013,gas oil combustion consumption by public passenger transport,104.31456,TJ,CO2,74100.0,kg/TJ,7729708.896,kg -6e42f391-6e50-336d-a398-fcc9726cbe11,SESCO,II.1.1,Chubut,AR-U,annual,2013,gas oil combustion consumption by public passenger transport,104.31456,TJ,CH4,3.9,kg/TJ,406.826784,kg -6e42f391-6e50-336d-a398-fcc9726cbe11,SESCO,II.1.1,Chubut,AR-U,annual,2013,gas oil combustion consumption by public passenger transport,104.31456,TJ,N2O,3.9,kg/TJ,406.826784,kg -f6b555ac-515e-3cb9-98ce-6ed0aa707d4c,SESCO,II.1.1,Corrientes,AR-W,annual,2013,gas oil combustion consumption by public passenger transport,512.43444,TJ,CO2,74100.0,kg/TJ,37971392.004,kg -343421a4-7ac6-3da0-8fe0-1f94de8ce360,SESCO,II.1.1,Corrientes,AR-W,annual,2013,gas oil combustion consumption by public passenger transport,512.43444,TJ,CH4,3.9,kg/TJ,1998.494316,kg -343421a4-7ac6-3da0-8fe0-1f94de8ce360,SESCO,II.1.1,Corrientes,AR-W,annual,2013,gas oil combustion consumption by public passenger transport,512.43444,TJ,N2O,3.9,kg/TJ,1998.494316,kg -5fd64ddd-64fc-3cde-8e3c-068945957eb6,SESCO,II.1.1,Córdoba,AR-X,annual,2013,gas oil combustion consumption by public passenger transport,1846.3821599999999,TJ,CO2,74100.0,kg/TJ,136816918.056,kg -e7bf06d0-cd92-3c9d-9c46-586367806c2c,SESCO,II.1.1,Córdoba,AR-X,annual,2013,gas oil combustion consumption by public passenger transport,1846.3821599999999,TJ,CH4,3.9,kg/TJ,7200.890423999999,kg -e7bf06d0-cd92-3c9d-9c46-586367806c2c,SESCO,II.1.1,Córdoba,AR-X,annual,2013,gas oil combustion consumption by public passenger transport,1846.3821599999999,TJ,N2O,3.9,kg/TJ,7200.890423999999,kg -d9423e28-5a5b-382a-9256-5f9540bbc2d2,SESCO,II.1.1,Entre Rios,AR-E,annual,2013,gas oil combustion consumption by public passenger transport,509.36424,TJ,CO2,74100.0,kg/TJ,37743890.184,kg -5ebbba37-bcb8-3903-8a43-d7dba511f0b9,SESCO,II.1.1,Entre Rios,AR-E,annual,2013,gas oil combustion consumption by public passenger transport,509.36424,TJ,CH4,3.9,kg/TJ,1986.520536,kg -5ebbba37-bcb8-3903-8a43-d7dba511f0b9,SESCO,II.1.1,Entre Rios,AR-E,annual,2013,gas oil combustion consumption by public passenger transport,509.36424,TJ,N2O,3.9,kg/TJ,1986.520536,kg -e5ba1329-e077-3e84-8c50-708955122a74,SESCO,II.1.1,Formosa,AR-P,annual,2013,gas oil combustion consumption by public passenger transport,56.7084,TJ,CO2,74100.0,kg/TJ,4202092.4399999995,kg -d0cfa271-23ae-327e-921b-5582077f673c,SESCO,II.1.1,Formosa,AR-P,annual,2013,gas oil combustion consumption by public passenger transport,56.7084,TJ,CH4,3.9,kg/TJ,221.16276,kg -d0cfa271-23ae-327e-921b-5582077f673c,SESCO,II.1.1,Formosa,AR-P,annual,2013,gas oil combustion consumption by public passenger transport,56.7084,TJ,N2O,3.9,kg/TJ,221.16276,kg -16ff4046-67ce-3fcf-8a0c-961ff5f879ec,SESCO,II.1.1,Jujuy,AR-Y,annual,2013,gas oil combustion consumption by public passenger transport,508.35287999999997,TJ,CO2,74100.0,kg/TJ,37668948.408,kg -2085e291-b6c7-3581-afc0-39fc6f79739b,SESCO,II.1.1,Jujuy,AR-Y,annual,2013,gas oil combustion consumption by public passenger transport,508.35287999999997,TJ,CH4,3.9,kg/TJ,1982.576232,kg -2085e291-b6c7-3581-afc0-39fc6f79739b,SESCO,II.1.1,Jujuy,AR-Y,annual,2013,gas oil combustion consumption by public passenger transport,508.35287999999997,TJ,N2O,3.9,kg/TJ,1982.576232,kg -b178b0ce-7b97-3212-81e6-6b6ec5765244,SESCO,II.1.1,La Pampa,AR-L,annual,2013,gas oil combustion consumption by public passenger transport,27.993,TJ,CO2,74100.0,kg/TJ,2074281.2999999998,kg -b9025e38-f387-3518-bbeb-70b40709352c,SESCO,II.1.1,La Pampa,AR-L,annual,2013,gas oil combustion consumption by public passenger transport,27.993,TJ,CH4,3.9,kg/TJ,109.17269999999999,kg -b9025e38-f387-3518-bbeb-70b40709352c,SESCO,II.1.1,La Pampa,AR-L,annual,2013,gas oil combustion consumption by public passenger transport,27.993,TJ,N2O,3.9,kg/TJ,109.17269999999999,kg -f8c8975f-db1c-3819-b252-564a96ed831a,SESCO,II.1.1,La Rioja,AR-F,annual,2013,gas oil combustion consumption by public passenger transport,140.36232,TJ,CO2,74100.0,kg/TJ,10400847.912,kg -3eb6f0de-287f-386c-b7c8-929bcd2afde4,SESCO,II.1.1,La Rioja,AR-F,annual,2013,gas oil combustion consumption by public passenger transport,140.36232,TJ,CH4,3.9,kg/TJ,547.413048,kg -3eb6f0de-287f-386c-b7c8-929bcd2afde4,SESCO,II.1.1,La Rioja,AR-F,annual,2013,gas oil combustion consumption by public passenger transport,140.36232,TJ,N2O,3.9,kg/TJ,547.413048,kg -6afa0a92-037a-35b2-82b7-2cc81b85348f,SESCO,II.1.1,Mendoza,AR-M,annual,2013,gas oil combustion consumption by public passenger transport,1938.5242799999999,TJ,CO2,74100.0,kg/TJ,143644649.148,kg -1513baac-8136-3778-a1a8-80f92b4ebf51,SESCO,II.1.1,Mendoza,AR-M,annual,2013,gas oil combustion consumption by public passenger transport,1938.5242799999999,TJ,CH4,3.9,kg/TJ,7560.244691999999,kg -1513baac-8136-3778-a1a8-80f92b4ebf51,SESCO,II.1.1,Mendoza,AR-M,annual,2013,gas oil combustion consumption by public passenger transport,1938.5242799999999,TJ,N2O,3.9,kg/TJ,7560.244691999999,kg -3ffc474a-cad8-32a8-8e04-f4e8ff1a671a,SESCO,II.1.1,Misiones,AR-N,annual,2013,gas oil combustion consumption by public passenger transport,797.5296,TJ,CO2,74100.0,kg/TJ,59096943.36,kg -2a44a290-c061-3620-abda-239fe579f748,SESCO,II.1.1,Misiones,AR-N,annual,2013,gas oil combustion consumption by public passenger transport,797.5296,TJ,CH4,3.9,kg/TJ,3110.3654399999996,kg -2a44a290-c061-3620-abda-239fe579f748,SESCO,II.1.1,Misiones,AR-N,annual,2013,gas oil combustion consumption by public passenger transport,797.5296,TJ,N2O,3.9,kg/TJ,3110.3654399999996,kg -dde8c894-8317-3e10-b68c-c0ab5e142a9e,SESCO,II.1.1,Neuquén,AR-Q,annual,2013,gas oil combustion consumption by public passenger transport,290.65764,TJ,CO2,74100.0,kg/TJ,21537731.124,kg -95a5acb4-73d0-3f4b-9e7a-b4fc5d69f3b5,SESCO,II.1.1,Neuquén,AR-Q,annual,2013,gas oil combustion consumption by public passenger transport,290.65764,TJ,CH4,3.9,kg/TJ,1133.5647960000001,kg -95a5acb4-73d0-3f4b-9e7a-b4fc5d69f3b5,SESCO,II.1.1,Neuquén,AR-Q,annual,2013,gas oil combustion consumption by public passenger transport,290.65764,TJ,N2O,3.9,kg/TJ,1133.5647960000001,kg -9c719040-2606-39a7-822d-788b08e8495f,SESCO,II.1.1,Rio Negro,AR-R,annual,2013,gas oil combustion consumption by public passenger transport,167.5968,TJ,CO2,74100.0,kg/TJ,12418922.88,kg -8adb36de-3cf6-3123-b780-facd8859826c,SESCO,II.1.1,Rio Negro,AR-R,annual,2013,gas oil combustion consumption by public passenger transport,167.5968,TJ,CH4,3.9,kg/TJ,653.62752,kg -8adb36de-3cf6-3123-b780-facd8859826c,SESCO,II.1.1,Rio Negro,AR-R,annual,2013,gas oil combustion consumption by public passenger transport,167.5968,TJ,N2O,3.9,kg/TJ,653.62752,kg -be51c4b2-014d-36f9-a04e-437629f0ad9b,SESCO,II.1.1,Salta,AR-A,annual,2013,gas oil combustion consumption by public passenger transport,985.64256,TJ,CO2,74100.0,kg/TJ,73036113.696,kg -5546d149-c8a1-3307-a847-2fdc3d230a6e,SESCO,II.1.1,Salta,AR-A,annual,2013,gas oil combustion consumption by public passenger transport,985.64256,TJ,CH4,3.9,kg/TJ,3844.005984,kg -5546d149-c8a1-3307-a847-2fdc3d230a6e,SESCO,II.1.1,Salta,AR-A,annual,2013,gas oil combustion consumption by public passenger transport,985.64256,TJ,N2O,3.9,kg/TJ,3844.005984,kg -dd9f6be6-14f3-3827-87a5-cf055c6e497a,SESCO,II.1.1,San Juan,AR-J,annual,2013,gas oil combustion consumption by public passenger transport,488.73972,TJ,CO2,74100.0,kg/TJ,36215613.252,kg -e4ac59e1-297a-397c-a5d3-89bd6ee6da5b,SESCO,II.1.1,San Juan,AR-J,annual,2013,gas oil combustion consumption by public passenger transport,488.73972,TJ,CH4,3.9,kg/TJ,1906.0849079999998,kg -e4ac59e1-297a-397c-a5d3-89bd6ee6da5b,SESCO,II.1.1,San Juan,AR-J,annual,2013,gas oil combustion consumption by public passenger transport,488.73972,TJ,N2O,3.9,kg/TJ,1906.0849079999998,kg -576c4959-1404-37eb-a17f-a6ef28df26d2,SESCO,II.1.1,San Luis,AR-D,annual,2013,gas oil combustion consumption by public passenger transport,163.94868,TJ,CO2,74100.0,kg/TJ,12148597.188,kg -8f00eddd-8292-3dae-895f-c6a69e4f82ef,SESCO,II.1.1,San Luis,AR-D,annual,2013,gas oil combustion consumption by public passenger transport,163.94868,TJ,CH4,3.9,kg/TJ,639.399852,kg -8f00eddd-8292-3dae-895f-c6a69e4f82ef,SESCO,II.1.1,San Luis,AR-D,annual,2013,gas oil combustion consumption by public passenger transport,163.94868,TJ,N2O,3.9,kg/TJ,639.399852,kg -cd796fb8-6ac1-3ba5-b777-23ea902bff20,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2013,gas oil combustion consumption by public passenger transport,42.72996,TJ,CO2,74100.0,kg/TJ,3166290.036,kg -77392ee4-61d4-34da-8f70-459a0a297ff8,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2013,gas oil combustion consumption by public passenger transport,42.72996,TJ,CH4,3.9,kg/TJ,166.646844,kg -77392ee4-61d4-34da-8f70-459a0a297ff8,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2013,gas oil combustion consumption by public passenger transport,42.72996,TJ,N2O,3.9,kg/TJ,166.646844,kg -9757c54b-e3f1-3931-b6e4-2cbd788c5576,SESCO,II.1.1,Santa Fe,AR-S,annual,2013,gas oil combustion consumption by public passenger transport,1947.91548,TJ,CO2,74100.0,kg/TJ,144340537.068,kg -629eafcf-3712-3d9f-aa66-f79741d6685e,SESCO,II.1.1,Santa Fe,AR-S,annual,2013,gas oil combustion consumption by public passenger transport,1947.91548,TJ,CH4,3.9,kg/TJ,7596.870371999999,kg -629eafcf-3712-3d9f-aa66-f79741d6685e,SESCO,II.1.1,Santa Fe,AR-S,annual,2013,gas oil combustion consumption by public passenger transport,1947.91548,TJ,N2O,3.9,kg/TJ,7596.870371999999,kg -24fa1c91-c39f-3492-ac00-95253f352ce6,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2013,gas oil combustion consumption by public passenger transport,252.37044,TJ,CO2,74100.0,kg/TJ,18700649.604,kg -6ace1a6d-54b3-3152-b5fc-313109c1d33a,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2013,gas oil combustion consumption by public passenger transport,252.37044,TJ,CH4,3.9,kg/TJ,984.244716,kg -6ace1a6d-54b3-3152-b5fc-313109c1d33a,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2013,gas oil combustion consumption by public passenger transport,252.37044,TJ,N2O,3.9,kg/TJ,984.244716,kg -1cc19e33-0a41-32b5-8cdc-984b37919436,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2013,gas oil combustion consumption by public passenger transport,20.51616,TJ,CO2,74100.0,kg/TJ,1520247.456,kg -ed90706c-85da-3f64-a517-44f507a1ced0,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2013,gas oil combustion consumption by public passenger transport,20.51616,TJ,CH4,3.9,kg/TJ,80.013024,kg -ed90706c-85da-3f64-a517-44f507a1ced0,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2013,gas oil combustion consumption by public passenger transport,20.51616,TJ,N2O,3.9,kg/TJ,80.013024,kg -ef615512-e469-3af8-bd0d-c92d382afc7a,SESCO,II.1.1,Tucuman,AR-T,annual,2013,gas oil combustion consumption by public passenger transport,1452.7464,TJ,CO2,74100.0,kg/TJ,107648508.24,kg -b019049f-8cfd-3bec-b665-c5026428bff6,SESCO,II.1.1,Tucuman,AR-T,annual,2013,gas oil combustion consumption by public passenger transport,1452.7464,TJ,CH4,3.9,kg/TJ,5665.710959999999,kg -b019049f-8cfd-3bec-b665-c5026428bff6,SESCO,II.1.1,Tucuman,AR-T,annual,2013,gas oil combustion consumption by public passenger transport,1452.7464,TJ,N2O,3.9,kg/TJ,5665.710959999999,kg -0e0ca11e-d0f1-3e2c-8b86-290bab76f213,SESCO,II.1.1,Buenos Aires,AR-B,annual,2013,gas oil combustion consumption by public passenger transport,0.18059999999999998,TJ,CO2,74100.0,kg/TJ,13382.46,kg -86ff3cff-1134-39af-bd53-68845d9d94f5,SESCO,II.1.1,Buenos Aires,AR-B,annual,2013,gas oil combustion consumption by public passenger transport,0.18059999999999998,TJ,CH4,3.9,kg/TJ,0.70434,kg -86ff3cff-1134-39af-bd53-68845d9d94f5,SESCO,II.1.1,Buenos Aires,AR-B,annual,2013,gas oil combustion consumption by public passenger transport,0.18059999999999998,TJ,N2O,3.9,kg/TJ,0.70434,kg -6ff5d257-5139-3a1f-b90b-7a3b2c62076b,SESCO,II.1.1,Capital Federal,AR-C,annual,2014,gas oil combustion consumption by to the public,81.63119999999999,TJ,CO2,74100.0,kg/TJ,6048871.919999999,kg -b77f0963-e9cf-3740-9380-fbd2e88f0b0a,SESCO,II.1.1,Capital Federal,AR-C,annual,2014,gas oil combustion consumption by to the public,81.63119999999999,TJ,CH4,3.9,kg/TJ,318.36168,kg -b77f0963-e9cf-3740-9380-fbd2e88f0b0a,SESCO,II.1.1,Capital Federal,AR-C,annual,2014,gas oil combustion consumption by to the public,81.63119999999999,TJ,N2O,3.9,kg/TJ,318.36168,kg -ca490833-30cd-3430-90ab-2de81a2f70eb,SESCO,II.5.1,Buenos Aires,AR-B,annual,2014,gas oil combustion consumption by agriculture machines,136.30243199999998,TJ,CO2,74100.0,kg/TJ,10100010.211199999,kg -bb19dec5-0f29-3c52-b52b-16a0a65b95ce,SESCO,II.5.1,Buenos Aires,AR-B,annual,2014,gas oil combustion consumption by agriculture machines,136.30243199999998,TJ,CH4,3.9,kg/TJ,531.5794847999999,kg -bb19dec5-0f29-3c52-b52b-16a0a65b95ce,SESCO,II.5.1,Buenos Aires,AR-B,annual,2014,gas oil combustion consumption by agriculture machines,136.30243199999998,TJ,N2O,3.9,kg/TJ,531.5794847999999,kg -2fa39a91-7537-3adc-9851-4cc659f1bc8c,SESCO,II.5.1,Córdoba,AR-X,annual,2014,gas oil combustion consumption by agriculture machines,27.696816,TJ,CO2,74100.0,kg/TJ,2052334.0655999999,kg -2e810a27-26a8-3c3b-9efa-569dbfc3d981,SESCO,II.5.1,Córdoba,AR-X,annual,2014,gas oil combustion consumption by agriculture machines,27.696816,TJ,CH4,3.9,kg/TJ,108.0175824,kg -2e810a27-26a8-3c3b-9efa-569dbfc3d981,SESCO,II.5.1,Córdoba,AR-X,annual,2014,gas oil combustion consumption by agriculture machines,27.696816,TJ,N2O,3.9,kg/TJ,108.0175824,kg -7e9811e8-5eef-3020-96f9-c6f66aa4bab4,SESCO,II.5.1,Santa Fe,AR-S,annual,2014,gas oil combustion consumption by agriculture machines,427.96059599999995,TJ,CO2,74100.0,kg/TJ,31711880.163599998,kg -9a3e204b-3521-355d-ad52-ccfd39475c65,SESCO,II.5.1,Santa Fe,AR-S,annual,2014,gas oil combustion consumption by agriculture machines,427.96059599999995,TJ,CH4,3.9,kg/TJ,1669.0463243999998,kg -9a3e204b-3521-355d-ad52-ccfd39475c65,SESCO,II.5.1,Santa Fe,AR-S,annual,2014,gas oil combustion consumption by agriculture machines,427.96059599999995,TJ,N2O,3.9,kg/TJ,1669.0463243999998,kg -93a4490f-0047-32b2-84b9-583244175e82,SESCO,II.5.1,Buenos Aires,AR-B,annual,2014,gas oil combustion consumption by agriculture machines,1.69764,TJ,CO2,74100.0,kg/TJ,125795.124,kg -3f6112d4-a57c-38e9-ac4e-397c9c8bb3ff,SESCO,II.5.1,Buenos Aires,AR-B,annual,2014,gas oil combustion consumption by agriculture machines,1.69764,TJ,CH4,3.9,kg/TJ,6.620796,kg -3f6112d4-a57c-38e9-ac4e-397c9c8bb3ff,SESCO,II.5.1,Buenos Aires,AR-B,annual,2014,gas oil combustion consumption by agriculture machines,1.69764,TJ,N2O,3.9,kg/TJ,6.620796,kg -b9223b2c-07dc-3b6e-9fa4-121554515e86,SESCO,II.5.1,Córdoba,AR-X,annual,2014,gas oil combustion consumption by agriculture machines,2.85348,TJ,CO2,74100.0,kg/TJ,211442.868,kg -ba3b3d47-4a11-3a1a-bccc-89e8fd9cea81,SESCO,II.5.1,Córdoba,AR-X,annual,2014,gas oil combustion consumption by agriculture machines,2.85348,TJ,CH4,3.9,kg/TJ,11.128571999999998,kg -ba3b3d47-4a11-3a1a-bccc-89e8fd9cea81,SESCO,II.5.1,Córdoba,AR-X,annual,2014,gas oil combustion consumption by agriculture machines,2.85348,TJ,N2O,3.9,kg/TJ,11.128571999999998,kg -96ad1ba4-4434-3567-83a7-bb4d37870f8e,SESCO,II.5.1,Santa Fe,AR-S,annual,2014,gas oil combustion consumption by agriculture machines,9.965508,TJ,CO2,74100.0,kg/TJ,738444.1428,kg -ef63923c-dcd6-3b98-b033-fba58f9f24dc,SESCO,II.5.1,Santa Fe,AR-S,annual,2014,gas oil combustion consumption by agriculture machines,9.965508,TJ,CH4,3.9,kg/TJ,38.8654812,kg -ef63923c-dcd6-3b98-b033-fba58f9f24dc,SESCO,II.5.1,Santa Fe,AR-S,annual,2014,gas oil combustion consumption by agriculture machines,9.965508,TJ,N2O,3.9,kg/TJ,38.8654812,kg -8d505229-aab8-3610-a7f6-5e8c708d0786,SESCO,II.1.1,Buenos Aires,AR-B,annual,2014,gas oil combustion consumption by to the public,11302.964250648001,TJ,CO2,74100.0,kg/TJ,837549650.9730169,kg -d944d9a0-0fe0-3e21-b525-3ad50728e58b,SESCO,II.1.1,Buenos Aires,AR-B,annual,2014,gas oil combustion consumption by to the public,11302.964250648001,TJ,CH4,3.9,kg/TJ,44081.560577527205,kg -d944d9a0-0fe0-3e21-b525-3ad50728e58b,SESCO,II.1.1,Buenos Aires,AR-B,annual,2014,gas oil combustion consumption by to the public,11302.964250648001,TJ,N2O,3.9,kg/TJ,44081.560577527205,kg -b5e75af6-87c0-3b2f-b0f1-a976845e0e35,SESCO,II.1.1,Capital Federal,AR-C,annual,2014,gas oil combustion consumption by to the public,1291.6487510640002,TJ,CO2,74100.0,kg/TJ,95711172.45384242,kg -39b28bfc-7482-3518-9e07-abb5566008a4,SESCO,II.1.1,Capital Federal,AR-C,annual,2014,gas oil combustion consumption by to the public,1291.6487510640002,TJ,CH4,3.9,kg/TJ,5037.4301291496,kg -39b28bfc-7482-3518-9e07-abb5566008a4,SESCO,II.1.1,Capital Federal,AR-C,annual,2014,gas oil combustion consumption by to the public,1291.6487510640002,TJ,N2O,3.9,kg/TJ,5037.4301291496,kg -eb246d8a-2e44-312e-a846-88f90f039210,SESCO,II.1.1,Catamarca,AR-K,annual,2014,gas oil combustion consumption by to the public,412.43074059599996,TJ,CO2,74100.0,kg/TJ,30561117.8781636,kg -2892320e-dcff-3769-b68f-ac93a69ccd9c,SESCO,II.1.1,Catamarca,AR-K,annual,2014,gas oil combustion consumption by to the public,412.43074059599996,TJ,CH4,3.9,kg/TJ,1608.4798883243998,kg -2892320e-dcff-3769-b68f-ac93a69ccd9c,SESCO,II.1.1,Catamarca,AR-K,annual,2014,gas oil combustion consumption by to the public,412.43074059599996,TJ,N2O,3.9,kg/TJ,1608.4798883243998,kg -984be23e-27b4-35c8-a60d-87088c5024fd,SESCO,II.1.1,Chaco,AR-H,annual,2014,gas oil combustion consumption by to the public,360.065770596,TJ,CO2,74100.0,kg/TJ,26680873.6011636,kg -f8b96f8e-46c5-3a0b-9d4a-ff2679a27eb8,SESCO,II.1.1,Chaco,AR-H,annual,2014,gas oil combustion consumption by to the public,360.065770596,TJ,CH4,3.9,kg/TJ,1404.2565053244,kg -f8b96f8e-46c5-3a0b-9d4a-ff2679a27eb8,SESCO,II.1.1,Chaco,AR-H,annual,2014,gas oil combustion consumption by to the public,360.065770596,TJ,N2O,3.9,kg/TJ,1404.2565053244,kg -1ba28c5e-7ec3-3e89-a56e-c0895c20ad6a,SESCO,II.1.1,Chubut,AR-U,annual,2014,gas oil combustion consumption by to the public,517.254928512,TJ,CO2,74100.0,kg/TJ,38328590.2027392,kg -a7c96fe4-235c-38de-b2df-96b2790bc0d6,SESCO,II.1.1,Chubut,AR-U,annual,2014,gas oil combustion consumption by to the public,517.254928512,TJ,CH4,3.9,kg/TJ,2017.2942211968,kg -a7c96fe4-235c-38de-b2df-96b2790bc0d6,SESCO,II.1.1,Chubut,AR-U,annual,2014,gas oil combustion consumption by to the public,517.254928512,TJ,N2O,3.9,kg/TJ,2017.2942211968,kg -01b88500-6729-31f4-be98-8612e174fe9e,SESCO,II.1.1,Corrientes,AR-W,annual,2014,gas oil combustion consumption by to the public,423.642327192,TJ,CO2,74100.0,kg/TJ,31391896.444927197,kg -d74b2928-3106-3a4c-a379-782e686c14c7,SESCO,II.1.1,Corrientes,AR-W,annual,2014,gas oil combustion consumption by to the public,423.642327192,TJ,CH4,3.9,kg/TJ,1652.2050760487998,kg -d74b2928-3106-3a4c-a379-782e686c14c7,SESCO,II.1.1,Corrientes,AR-W,annual,2014,gas oil combustion consumption by to the public,423.642327192,TJ,N2O,3.9,kg/TJ,1652.2050760487998,kg -f69dc237-390f-34d2-b60d-85d465dbc091,SESCO,II.1.1,Córdoba,AR-X,annual,2014,gas oil combustion consumption by to the public,5002.757425764,TJ,CO2,74100.0,kg/TJ,370704325.24911237,kg -ac2bb13c-96c7-366f-b6d9-8049873d4b9b,SESCO,II.1.1,Córdoba,AR-X,annual,2014,gas oil combustion consumption by to the public,5002.757425764,TJ,CH4,3.9,kg/TJ,19510.7539604796,kg -ac2bb13c-96c7-366f-b6d9-8049873d4b9b,SESCO,II.1.1,Córdoba,AR-X,annual,2014,gas oil combustion consumption by to the public,5002.757425764,TJ,N2O,3.9,kg/TJ,19510.7539604796,kg -9fa4feff-0866-3cf5-93a0-7686277f4b5a,SESCO,II.1.1,Entre Rios,AR-E,annual,2014,gas oil combustion consumption by to the public,1381.766522052,TJ,CO2,74100.0,kg/TJ,102388899.2840532,kg -2bd0dc1d-e547-3ab4-b77f-0cbdfc39fc52,SESCO,II.1.1,Entre Rios,AR-E,annual,2014,gas oil combustion consumption by to the public,1381.766522052,TJ,CH4,3.9,kg/TJ,5388.8894360028,kg -2bd0dc1d-e547-3ab4-b77f-0cbdfc39fc52,SESCO,II.1.1,Entre Rios,AR-E,annual,2014,gas oil combustion consumption by to the public,1381.766522052,TJ,N2O,3.9,kg/TJ,5388.8894360028,kg -1512b2b3-b651-3153-adff-df53cf34bedd,SESCO,II.1.1,Formosa,AR-P,annual,2014,gas oil combustion consumption by to the public,396.61274872800004,TJ,CO2,74100.0,kg/TJ,29389004.680744804,kg -27032b26-82fc-3b1e-ae3e-292c4eef08be,SESCO,II.1.1,Formosa,AR-P,annual,2014,gas oil combustion consumption by to the public,396.61274872800004,TJ,CH4,3.9,kg/TJ,1546.7897200392001,kg -27032b26-82fc-3b1e-ae3e-292c4eef08be,SESCO,II.1.1,Formosa,AR-P,annual,2014,gas oil combustion consumption by to the public,396.61274872800004,TJ,N2O,3.9,kg/TJ,1546.7897200392001,kg -1045ae7a-867d-339f-872d-08dce97a0900,SESCO,II.1.1,Jujuy,AR-Y,annual,2014,gas oil combustion consumption by to the public,204.14421879600002,TJ,CO2,74100.0,kg/TJ,15127086.612783602,kg -765bf1ce-92e8-3d8a-b703-8f69a39ee827,SESCO,II.1.1,Jujuy,AR-Y,annual,2014,gas oil combustion consumption by to the public,204.14421879600002,TJ,CH4,3.9,kg/TJ,796.1624533044001,kg -765bf1ce-92e8-3d8a-b703-8f69a39ee827,SESCO,II.1.1,Jujuy,AR-Y,annual,2014,gas oil combustion consumption by to the public,204.14421879600002,TJ,N2O,3.9,kg/TJ,796.1624533044001,kg -66743a41-0687-34de-9fb1-181fb53890b6,SESCO,II.1.1,La Pampa,AR-L,annual,2014,gas oil combustion consumption by to the public,327.473506248,TJ,CO2,74100.0,kg/TJ,24265786.8129768,kg -e3653a96-f47a-37f4-b284-2af32ff92659,SESCO,II.1.1,La Pampa,AR-L,annual,2014,gas oil combustion consumption by to the public,327.473506248,TJ,CH4,3.9,kg/TJ,1277.1466743672,kg -e3653a96-f47a-37f4-b284-2af32ff92659,SESCO,II.1.1,La Pampa,AR-L,annual,2014,gas oil combustion consumption by to the public,327.473506248,TJ,N2O,3.9,kg/TJ,1277.1466743672,kg -9b5891b9-68e2-3492-977b-4e248668597d,SESCO,II.1.1,La Rioja,AR-F,annual,2014,gas oil combustion consumption by to the public,56.301316764,TJ,CO2,74100.0,kg/TJ,4171927.5722124,kg -2d8d08be-f435-3e55-805b-e70c4ea1a1e1,SESCO,II.1.1,La Rioja,AR-F,annual,2014,gas oil combustion consumption by to the public,56.301316764,TJ,CH4,3.9,kg/TJ,219.5751353796,kg -2d8d08be-f435-3e55-805b-e70c4ea1a1e1,SESCO,II.1.1,La Rioja,AR-F,annual,2014,gas oil combustion consumption by to the public,56.301316764,TJ,N2O,3.9,kg/TJ,219.5751353796,kg -8e92c08f-b8c0-3cff-b4b1-7df9df30d7bb,SESCO,II.1.1,Mendoza,AR-M,annual,2014,gas oil combustion consumption by to the public,393.39753776399994,TJ,CO2,74100.0,kg/TJ,29150757.548312396,kg -264d119a-2afd-3f1f-919c-ac366310c75f,SESCO,II.1.1,Mendoza,AR-M,annual,2014,gas oil combustion consumption by to the public,393.39753776399994,TJ,CH4,3.9,kg/TJ,1534.2503972795996,kg -264d119a-2afd-3f1f-919c-ac366310c75f,SESCO,II.1.1,Mendoza,AR-M,annual,2014,gas oil combustion consumption by to the public,393.39753776399994,TJ,N2O,3.9,kg/TJ,1534.2503972795996,kg -86391b8f-c691-3de8-b609-e92869ee5929,SESCO,II.1.1,Misiones,AR-N,annual,2014,gas oil combustion consumption by to the public,898.971236604,TJ,CO2,74100.0,kg/TJ,66613768.6323564,kg -d001240d-d396-3403-9fb6-45818232837f,SESCO,II.1.1,Misiones,AR-N,annual,2014,gas oil combustion consumption by to the public,898.971236604,TJ,CH4,3.9,kg/TJ,3505.9878227555996,kg -d001240d-d396-3403-9fb6-45818232837f,SESCO,II.1.1,Misiones,AR-N,annual,2014,gas oil combustion consumption by to the public,898.971236604,TJ,N2O,3.9,kg/TJ,3505.9878227555996,kg -7ea663d0-616a-367e-97f7-e65c07c62e7c,SESCO,II.1.1,Neuquén,AR-Q,annual,2014,gas oil combustion consumption by to the public,200.915408652,TJ,CO2,74100.0,kg/TJ,14887831.7811132,kg -a8657ac4-c331-3fb9-be43-446e9468ba7a,SESCO,II.1.1,Neuquén,AR-Q,annual,2014,gas oil combustion consumption by to the public,200.915408652,TJ,CH4,3.9,kg/TJ,783.5700937427999,kg -a8657ac4-c331-3fb9-be43-446e9468ba7a,SESCO,II.1.1,Neuquén,AR-Q,annual,2014,gas oil combustion consumption by to the public,200.915408652,TJ,N2O,3.9,kg/TJ,783.5700937427999,kg -b19eb90a-73b4-3c6b-89b5-57430d0ef795,SESCO,II.1.1,Rio Negro,AR-R,annual,2014,gas oil combustion consumption by to the public,678.987169728,TJ,CO2,74100.0,kg/TJ,50312949.2768448,kg -f81fc1ca-bc4d-344a-acb2-862f4f86ffe4,SESCO,II.1.1,Rio Negro,AR-R,annual,2014,gas oil combustion consumption by to the public,678.987169728,TJ,CH4,3.9,kg/TJ,2648.0499619392,kg -f81fc1ca-bc4d-344a-acb2-862f4f86ffe4,SESCO,II.1.1,Rio Negro,AR-R,annual,2014,gas oil combustion consumption by to the public,678.987169728,TJ,N2O,3.9,kg/TJ,2648.0499619392,kg -bfabe5d1-9e9b-3339-9549-59a4aef9e125,SESCO,II.1.1,Salta,AR-A,annual,2014,gas oil combustion consumption by to the public,48.464811864,TJ,CO2,74100.0,kg/TJ,3591242.5591224,kg -3c230931-8c2e-3a71-9c99-46c9cfd091c9,SESCO,II.1.1,Salta,AR-A,annual,2014,gas oil combustion consumption by to the public,48.464811864,TJ,CH4,3.9,kg/TJ,189.01276626959998,kg -3c230931-8c2e-3a71-9c99-46c9cfd091c9,SESCO,II.1.1,Salta,AR-A,annual,2014,gas oil combustion consumption by to the public,48.464811864,TJ,N2O,3.9,kg/TJ,189.01276626959998,kg -ccdd488c-22ea-3707-b66e-291ac531977a,SESCO,II.1.1,San Juan,AR-J,annual,2014,gas oil combustion consumption by to the public,439.294521036,TJ,CO2,74100.0,kg/TJ,32551724.0087676,kg -8ba14248-0062-3350-853a-b5ef357aa7f5,SESCO,II.1.1,San Juan,AR-J,annual,2014,gas oil combustion consumption by to the public,439.294521036,TJ,CH4,3.9,kg/TJ,1713.2486320404,kg -8ba14248-0062-3350-853a-b5ef357aa7f5,SESCO,II.1.1,San Juan,AR-J,annual,2014,gas oil combustion consumption by to the public,439.294521036,TJ,N2O,3.9,kg/TJ,1713.2486320404,kg -d7e1186f-93f1-3e26-bcce-41b42bb14d37,SESCO,II.1.1,San Luis,AR-D,annual,2014,gas oil combustion consumption by to the public,882.3518828040001,TJ,CO2,74100.0,kg/TJ,65382274.5157764,kg -0e8706e3-fef6-34e4-8d93-b627fa193065,SESCO,II.1.1,San Luis,AR-D,annual,2014,gas oil combustion consumption by to the public,882.3518828040001,TJ,CH4,3.9,kg/TJ,3441.1723429356,kg -0e8706e3-fef6-34e4-8d93-b627fa193065,SESCO,II.1.1,San Luis,AR-D,annual,2014,gas oil combustion consumption by to the public,882.3518828040001,TJ,N2O,3.9,kg/TJ,3441.1723429356,kg -4bbb299e-63ca-397e-9341-96715e3212fb,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2014,gas oil combustion consumption by to the public,306.592039404,TJ,CO2,74100.0,kg/TJ,22718470.119836397,kg -7550e27e-cfa7-3251-89db-b6f9dcd80082,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2014,gas oil combustion consumption by to the public,306.592039404,TJ,CH4,3.9,kg/TJ,1195.7089536756,kg -7550e27e-cfa7-3251-89db-b6f9dcd80082,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2014,gas oil combustion consumption by to the public,306.592039404,TJ,N2O,3.9,kg/TJ,1195.7089536756,kg -72bbb9d7-c4a0-31d6-adbc-9033c9c784a1,SESCO,II.1.1,Santa Fe,AR-S,annual,2014,gas oil combustion consumption by to the public,3716.675871972,TJ,CO2,74100.0,kg/TJ,275405682.1131252,kg -e943c935-0460-3faa-836a-e25f20825357,SESCO,II.1.1,Santa Fe,AR-S,annual,2014,gas oil combustion consumption by to the public,3716.675871972,TJ,CH4,3.9,kg/TJ,14495.0359006908,kg -e943c935-0460-3faa-836a-e25f20825357,SESCO,II.1.1,Santa Fe,AR-S,annual,2014,gas oil combustion consumption by to the public,3716.675871972,TJ,N2O,3.9,kg/TJ,14495.0359006908,kg -c5e16c9f-7783-30cb-9fe0-79a7a9666c79,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2014,gas oil combustion consumption by to the public,366.796049928,TJ,CO2,74100.0,kg/TJ,27179587.2996648,kg -b9aada16-f2ff-32ec-87a1-7fb381a42980,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2014,gas oil combustion consumption by to the public,366.796049928,TJ,CH4,3.9,kg/TJ,1430.5045947192,kg -b9aada16-f2ff-32ec-87a1-7fb381a42980,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2014,gas oil combustion consumption by to the public,366.796049928,TJ,N2O,3.9,kg/TJ,1430.5045947192,kg -365c15e2-b745-3b9e-9336-9067b946ec8b,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2014,gas oil combustion consumption by to the public,109.17681768,TJ,CO2,74100.0,kg/TJ,8090002.190088,kg -d702940a-9906-3c5a-88d9-1bbcdc9a261b,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2014,gas oil combustion consumption by to the public,109.17681768,TJ,CH4,3.9,kg/TJ,425.789588952,kg -d702940a-9906-3c5a-88d9-1bbcdc9a261b,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2014,gas oil combustion consumption by to the public,109.17681768,TJ,N2O,3.9,kg/TJ,425.789588952,kg -b7b2f3cf-f111-3b6a-bbc6-2bd7a1a2bf2c,SESCO,II.1.1,Tucuman,AR-T,annual,2014,gas oil combustion consumption by to the public,140.38040889599998,TJ,CO2,74100.0,kg/TJ,10402188.299193598,kg -57fa0e43-d4ce-3e54-907f-fb7b6ee2bff7,SESCO,II.1.1,Tucuman,AR-T,annual,2014,gas oil combustion consumption by to the public,140.38040889599998,TJ,CH4,3.9,kg/TJ,547.4835946943999,kg -57fa0e43-d4ce-3e54-907f-fb7b6ee2bff7,SESCO,II.1.1,Tucuman,AR-T,annual,2014,gas oil combustion consumption by to the public,140.38040889599998,TJ,N2O,3.9,kg/TJ,547.4835946943999,kg -c08cb4c8-3f85-3020-96f1-6f22d0d6e4d1,SESCO,II.1.1,Buenos Aires,AR-B,annual,2014,gas oil combustion consumption by to the public,2257.347281028,TJ,CO2,74100.0,kg/TJ,167269433.5241748,kg -a2641f37-c11a-350a-b8cc-3a484847f7b4,SESCO,II.1.1,Buenos Aires,AR-B,annual,2014,gas oil combustion consumption by to the public,2257.347281028,TJ,CH4,3.9,kg/TJ,8803.6543960092,kg -a2641f37-c11a-350a-b8cc-3a484847f7b4,SESCO,II.1.1,Buenos Aires,AR-B,annual,2014,gas oil combustion consumption by to the public,2257.347281028,TJ,N2O,3.9,kg/TJ,8803.6543960092,kg -e63065a9-4758-31b9-bf22-1815e645bee0,SESCO,II.1.1,Capital Federal,AR-C,annual,2014,gas oil combustion consumption by to the public,372.706249944,TJ,CO2,74100.0,kg/TJ,27617533.1208504,kg -3bfb5d95-f271-37c9-b66e-bd87a8721fef,SESCO,II.1.1,Capital Federal,AR-C,annual,2014,gas oil combustion consumption by to the public,372.706249944,TJ,CH4,3.9,kg/TJ,1453.5543747815998,kg -3bfb5d95-f271-37c9-b66e-bd87a8721fef,SESCO,II.1.1,Capital Federal,AR-C,annual,2014,gas oil combustion consumption by to the public,372.706249944,TJ,N2O,3.9,kg/TJ,1453.5543747815998,kg -f3f10a41-ed06-36de-a550-52805c3aeee6,SESCO,II.1.1,Catamarca,AR-K,annual,2014,gas oil combustion consumption by to the public,108.0293214,TJ,CO2,74100.0,kg/TJ,8004972.71574,kg -4b653800-a8ec-3db3-8c42-11e989691c10,SESCO,II.1.1,Catamarca,AR-K,annual,2014,gas oil combustion consumption by to the public,108.0293214,TJ,CH4,3.9,kg/TJ,421.31435346,kg -4b653800-a8ec-3db3-8c42-11e989691c10,SESCO,II.1.1,Catamarca,AR-K,annual,2014,gas oil combustion consumption by to the public,108.0293214,TJ,N2O,3.9,kg/TJ,421.31435346,kg -c801656e-21d0-3fe8-b50d-b0c8f861c0ef,SESCO,II.1.1,Chaco,AR-H,annual,2014,gas oil combustion consumption by to the public,80.10951135599998,TJ,CO2,74100.0,kg/TJ,5936114.791479599,kg -bb308dd2-2b8e-3f96-89e7-402ece85d366,SESCO,II.1.1,Chaco,AR-H,annual,2014,gas oil combustion consumption by to the public,80.10951135599998,TJ,CH4,3.9,kg/TJ,312.4270942883999,kg -bb308dd2-2b8e-3f96-89e7-402ece85d366,SESCO,II.1.1,Chaco,AR-H,annual,2014,gas oil combustion consumption by to the public,80.10951135599998,TJ,N2O,3.9,kg/TJ,312.4270942883999,kg -33936f85-bfdf-398b-a6b2-45fca47aa505,SESCO,II.1.1,Chubut,AR-U,annual,2014,gas oil combustion consumption by to the public,77.91763778400001,TJ,CO2,74100.0,kg/TJ,5773696.9597944,kg -4e0219e6-ad84-35c2-89f0-466b2ac50f5d,SESCO,II.1.1,Chubut,AR-U,annual,2014,gas oil combustion consumption by to the public,77.91763778400001,TJ,CH4,3.9,kg/TJ,303.8787873576,kg -4e0219e6-ad84-35c2-89f0-466b2ac50f5d,SESCO,II.1.1,Chubut,AR-U,annual,2014,gas oil combustion consumption by to the public,77.91763778400001,TJ,N2O,3.9,kg/TJ,303.8787873576,kg -b1a1e486-20f4-3354-9e23-e53f9e4e009c,SESCO,II.1.1,Corrientes,AR-W,annual,2014,gas oil combustion consumption by to the public,86.189475372,TJ,CO2,74100.0,kg/TJ,6386640.1250652,kg -76808553-4a50-3572-85b7-73fd3310c253,SESCO,II.1.1,Corrientes,AR-W,annual,2014,gas oil combustion consumption by to the public,86.189475372,TJ,CH4,3.9,kg/TJ,336.1389539508,kg -76808553-4a50-3572-85b7-73fd3310c253,SESCO,II.1.1,Corrientes,AR-W,annual,2014,gas oil combustion consumption by to the public,86.189475372,TJ,N2O,3.9,kg/TJ,336.1389539508,kg -b69435a6-61be-3e87-8283-b2584868ecab,SESCO,II.1.1,Córdoba,AR-X,annual,2014,gas oil combustion consumption by to the public,747.555947376,TJ,CO2,74100.0,kg/TJ,55393895.7005616,kg -6c5a8c64-d813-3a96-9856-5e70c2c533cb,SESCO,II.1.1,Córdoba,AR-X,annual,2014,gas oil combustion consumption by to the public,747.555947376,TJ,CH4,3.9,kg/TJ,2915.4681947664,kg -6c5a8c64-d813-3a96-9856-5e70c2c533cb,SESCO,II.1.1,Córdoba,AR-X,annual,2014,gas oil combustion consumption by to the public,747.555947376,TJ,N2O,3.9,kg/TJ,2915.4681947664,kg -d62f5e91-b6d7-33a8-90fe-af3339387758,SESCO,II.1.1,Entre Rios,AR-E,annual,2014,gas oil combustion consumption by to the public,303.59409385199996,TJ,CO2,74100.0,kg/TJ,22496322.354433198,kg -6b2a8140-9dd9-3fa4-81ee-23e74c1861cb,SESCO,II.1.1,Entre Rios,AR-E,annual,2014,gas oil combustion consumption by to the public,303.59409385199996,TJ,CH4,3.9,kg/TJ,1184.0169660227998,kg -6b2a8140-9dd9-3fa4-81ee-23e74c1861cb,SESCO,II.1.1,Entre Rios,AR-E,annual,2014,gas oil combustion consumption by to the public,303.59409385199996,TJ,N2O,3.9,kg/TJ,1184.0169660227998,kg -c48fa6ce-735c-32d4-aa36-476740a5b5ba,SESCO,II.1.1,Formosa,AR-P,annual,2014,gas oil combustion consumption by to the public,142.426299876,TJ,CO2,74100.0,kg/TJ,10553788.8208116,kg -951e0867-7685-3ba9-b61c-9f0d8594e2db,SESCO,II.1.1,Formosa,AR-P,annual,2014,gas oil combustion consumption by to the public,142.426299876,TJ,CH4,3.9,kg/TJ,555.4625695164,kg -951e0867-7685-3ba9-b61c-9f0d8594e2db,SESCO,II.1.1,Formosa,AR-P,annual,2014,gas oil combustion consumption by to the public,142.426299876,TJ,N2O,3.9,kg/TJ,555.4625695164,kg -ac441c0f-ed54-36d5-b8e0-25cf9767a4d8,SESCO,II.1.1,Jujuy,AR-Y,annual,2014,gas oil combustion consumption by to the public,25.534994268,TJ,CO2,74100.0,kg/TJ,1892143.0752587998,kg -28f0cfbc-fe5f-39f1-953e-c4b5bfcca110,SESCO,II.1.1,Jujuy,AR-Y,annual,2014,gas oil combustion consumption by to the public,25.534994268,TJ,CH4,3.9,kg/TJ,99.58647764519999,kg -28f0cfbc-fe5f-39f1-953e-c4b5bfcca110,SESCO,II.1.1,Jujuy,AR-Y,annual,2014,gas oil combustion consumption by to the public,25.534994268,TJ,N2O,3.9,kg/TJ,99.58647764519999,kg -fec0a83f-cbee-30f9-8342-78a54b6e4aa7,SESCO,II.1.1,La Pampa,AR-L,annual,2014,gas oil combustion consumption by to the public,82.77612092400001,TJ,CO2,74100.0,kg/TJ,6133710.560468401,kg -0cca3c45-bdc6-39ae-a78a-fd608abecf08,SESCO,II.1.1,La Pampa,AR-L,annual,2014,gas oil combustion consumption by to the public,82.77612092400001,TJ,CH4,3.9,kg/TJ,322.8268716036,kg -0cca3c45-bdc6-39ae-a78a-fd608abecf08,SESCO,II.1.1,La Pampa,AR-L,annual,2014,gas oil combustion consumption by to the public,82.77612092400001,TJ,N2O,3.9,kg/TJ,322.8268716036,kg -18eafecd-66fc-3452-a6be-874e0a5d5589,SESCO,II.1.1,La Rioja,AR-F,annual,2014,gas oil combustion consumption by to the public,34.230158256,TJ,CO2,74100.0,kg/TJ,2536454.7267696,kg -2519af8c-f09e-3c6a-8f8c-4d27c6ce0a35,SESCO,II.1.1,La Rioja,AR-F,annual,2014,gas oil combustion consumption by to the public,34.230158256,TJ,CH4,3.9,kg/TJ,133.4976171984,kg -2519af8c-f09e-3c6a-8f8c-4d27c6ce0a35,SESCO,II.1.1,La Rioja,AR-F,annual,2014,gas oil combustion consumption by to the public,34.230158256,TJ,N2O,3.9,kg/TJ,133.4976171984,kg -dfc86eb3-3b79-3bd3-a588-056481633cec,SESCO,II.1.1,Mendoza,AR-M,annual,2014,gas oil combustion consumption by to the public,166.329970464,TJ,CO2,74100.0,kg/TJ,12325050.811382402,kg -8e059022-6673-36a1-8fba-fc9469c05dbe,SESCO,II.1.1,Mendoza,AR-M,annual,2014,gas oil combustion consumption by to the public,166.329970464,TJ,CH4,3.9,kg/TJ,648.6868848096001,kg -8e059022-6673-36a1-8fba-fc9469c05dbe,SESCO,II.1.1,Mendoza,AR-M,annual,2014,gas oil combustion consumption by to the public,166.329970464,TJ,N2O,3.9,kg/TJ,648.6868848096001,kg -3497a13c-9360-3192-9507-f7f1dc9de6e4,SESCO,II.1.1,Misiones,AR-N,annual,2014,gas oil combustion consumption by to the public,148.086394176,TJ,CO2,74100.0,kg/TJ,10973201.8084416,kg -74a98ec9-6b2e-3463-9364-d94bb1d8671a,SESCO,II.1.1,Misiones,AR-N,annual,2014,gas oil combustion consumption by to the public,148.086394176,TJ,CH4,3.9,kg/TJ,577.5369372864,kg -74a98ec9-6b2e-3463-9364-d94bb1d8671a,SESCO,II.1.1,Misiones,AR-N,annual,2014,gas oil combustion consumption by to the public,148.086394176,TJ,N2O,3.9,kg/TJ,577.5369372864,kg -0af4c794-1f5d-3c6a-bdd6-5fd4ad211506,SESCO,II.1.1,Neuquén,AR-Q,annual,2014,gas oil combustion consumption by to the public,131.45026624800002,TJ,CO2,74100.0,kg/TJ,9740464.728976801,kg -810e3e9b-ce9d-3c3c-80e7-c5513a98eaa3,SESCO,II.1.1,Neuquén,AR-Q,annual,2014,gas oil combustion consumption by to the public,131.45026624800002,TJ,CH4,3.9,kg/TJ,512.6560383672,kg -810e3e9b-ce9d-3c3c-80e7-c5513a98eaa3,SESCO,II.1.1,Neuquén,AR-Q,annual,2014,gas oil combustion consumption by to the public,131.45026624800002,TJ,N2O,3.9,kg/TJ,512.6560383672,kg -600c1154-cd8f-3382-9faa-bf5d2221ae9f,SESCO,II.1.1,Rio Negro,AR-R,annual,2014,gas oil combustion consumption by to the public,190.82238982799998,TJ,CO2,74100.0,kg/TJ,14139939.0862548,kg -9be77640-cccb-34e5-9f15-1583510e1c6d,SESCO,II.1.1,Rio Negro,AR-R,annual,2014,gas oil combustion consumption by to the public,190.82238982799998,TJ,CH4,3.9,kg/TJ,744.2073203291999,kg -9be77640-cccb-34e5-9f15-1583510e1c6d,SESCO,II.1.1,Rio Negro,AR-R,annual,2014,gas oil combustion consumption by to the public,190.82238982799998,TJ,N2O,3.9,kg/TJ,744.2073203291999,kg -b044dbcc-79a3-35df-9037-0267096eb775,SESCO,II.1.1,Salta,AR-A,annual,2014,gas oil combustion consumption by to the public,13.073800152,TJ,CO2,74100.0,kg/TJ,968768.5912632,kg -25b82b28-567b-3314-b055-09e1711aaf30,SESCO,II.1.1,Salta,AR-A,annual,2014,gas oil combustion consumption by to the public,13.073800152,TJ,CH4,3.9,kg/TJ,50.9878205928,kg -25b82b28-567b-3314-b055-09e1711aaf30,SESCO,II.1.1,Salta,AR-A,annual,2014,gas oil combustion consumption by to the public,13.073800152,TJ,N2O,3.9,kg/TJ,50.9878205928,kg -2f961b99-5f2a-3f25-a9f8-f7ff4145c227,SESCO,II.1.1,San Juan,AR-J,annual,2014,gas oil combustion consumption by to the public,69.212649156,TJ,CO2,74100.0,kg/TJ,5128657.302459599,kg -edd540cc-63bc-3961-a60d-87db1fcd94ec,SESCO,II.1.1,San Juan,AR-J,annual,2014,gas oil combustion consumption by to the public,69.212649156,TJ,CH4,3.9,kg/TJ,269.92933170839996,kg -edd540cc-63bc-3961-a60d-87db1fcd94ec,SESCO,II.1.1,San Juan,AR-J,annual,2014,gas oil combustion consumption by to the public,69.212649156,TJ,N2O,3.9,kg/TJ,269.92933170839996,kg -70174638-ad03-3f5c-8b01-857fe5e8913c,SESCO,II.1.1,San Luis,AR-D,annual,2014,gas oil combustion consumption by to the public,156.265963224,TJ,CO2,74100.0,kg/TJ,11579307.874898398,kg -a1b0c0ef-0d16-36bc-97ef-6cb9f3c9754f,SESCO,II.1.1,San Luis,AR-D,annual,2014,gas oil combustion consumption by to the public,156.265963224,TJ,CH4,3.9,kg/TJ,609.4372565735999,kg -a1b0c0ef-0d16-36bc-97ef-6cb9f3c9754f,SESCO,II.1.1,San Luis,AR-D,annual,2014,gas oil combustion consumption by to the public,156.265963224,TJ,N2O,3.9,kg/TJ,609.4372565735999,kg -94f7dba4-5361-38ec-9438-a03652b7078b,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2014,gas oil combustion consumption by to the public,72.87427081199999,TJ,CO2,74100.0,kg/TJ,5399983.467169199,kg -fb450090-7a1a-3520-8246-11dab8a5ae17,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2014,gas oil combustion consumption by to the public,72.87427081199999,TJ,CH4,3.9,kg/TJ,284.20965616679996,kg -fb450090-7a1a-3520-8246-11dab8a5ae17,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2014,gas oil combustion consumption by to the public,72.87427081199999,TJ,N2O,3.9,kg/TJ,284.20965616679996,kg -b08cc2ac-9353-3b6e-9940-fb3c19e86bde,SESCO,II.1.1,Santa Fe,AR-S,annual,2014,gas oil combustion consumption by to the public,686.1634046400001,TJ,CO2,74100.0,kg/TJ,50844708.283824004,kg -8e01a94a-9d36-39b4-8a06-3eef93aa0297,SESCO,II.1.1,Santa Fe,AR-S,annual,2014,gas oil combustion consumption by to the public,686.1634046400001,TJ,CH4,3.9,kg/TJ,2676.037278096,kg -8e01a94a-9d36-39b4-8a06-3eef93aa0297,SESCO,II.1.1,Santa Fe,AR-S,annual,2014,gas oil combustion consumption by to the public,686.1634046400001,TJ,N2O,3.9,kg/TJ,2676.037278096,kg -acb435e3-a7fb-36f3-99a0-2bfdf32712d3,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2014,gas oil combustion consumption by to the public,114.505839672,TJ,CO2,74100.0,kg/TJ,8484882.7196952,kg -23700462-8618-3f19-8b88-d3af9c316f22,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2014,gas oil combustion consumption by to the public,114.505839672,TJ,CH4,3.9,kg/TJ,446.57277472079994,kg -23700462-8618-3f19-8b88-d3af9c316f22,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2014,gas oil combustion consumption by to the public,114.505839672,TJ,N2O,3.9,kg/TJ,446.57277472079994,kg -491fe057-e96e-3506-8aaa-dbed9e1b864d,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2014,gas oil combustion consumption by to the public,58.987958483999996,TJ,CO2,74100.0,kg/TJ,4371007.7236644,kg -3e0f0ae8-c6c4-384d-a4a1-38e7568cb436,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2014,gas oil combustion consumption by to the public,58.987958483999996,TJ,CH4,3.9,kg/TJ,230.0530380876,kg -3e0f0ae8-c6c4-384d-a4a1-38e7568cb436,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2014,gas oil combustion consumption by to the public,58.987958483999996,TJ,N2O,3.9,kg/TJ,230.0530380876,kg -8443d4f0-ad29-35f1-a45e-45b04f0e2ea4,SESCO,II.1.1,Tucuman,AR-T,annual,2014,gas oil combustion consumption by to the public,24.270696744,TJ,CO2,74100.0,kg/TJ,1798458.6287304,kg -9e117ab0-2557-3b62-a630-7865a1c90c79,SESCO,II.1.1,Tucuman,AR-T,annual,2014,gas oil combustion consumption by to the public,24.270696744,TJ,CH4,3.9,kg/TJ,94.65571730159999,kg -9e117ab0-2557-3b62-a630-7865a1c90c79,SESCO,II.1.1,Tucuman,AR-T,annual,2014,gas oil combustion consumption by to the public,24.270696744,TJ,N2O,3.9,kg/TJ,94.65571730159999,kg -12b6e568-446d-3082-8c43-aa525bcb422e,SESCO,II.1.1,Buenos Aires,AR-B,annual,2014,jet kerosene combustion consumption by to the public,8.932652,TJ,CO2,71500.0,kg/TJ,638684.6179999999,kg -778c31dd-8ec0-343d-bad4-905df13b70e3,SESCO,II.1.1,Buenos Aires,AR-B,annual,2014,jet kerosene combustion consumption by to the public,8.932652,TJ,CH4,0.5,kg/TJ,4.466326,kg -8b4d8424-c2d8-3f17-bb29-f6743194e59b,SESCO,II.1.1,Buenos Aires,AR-B,annual,2014,jet kerosene combustion consumption by to the public,8.932652,TJ,N2O,2.0,kg/TJ,17.865304,kg -d4ad1af5-1e77-34d2-86fd-7acf48446d10,SESCO,II.1.1,Córdoba,AR-X,annual,2014,jet kerosene combustion consumption by to the public,2.4847869999999994,TJ,CO2,71500.0,kg/TJ,177662.27049999996,kg -a13abc8c-beae-3cb8-87e8-edc6ab5b67ae,SESCO,II.1.1,Córdoba,AR-X,annual,2014,jet kerosene combustion consumption by to the public,2.4847869999999994,TJ,CH4,0.5,kg/TJ,1.2423934999999997,kg -2dadac96-f2cb-3b12-9ff4-cfadc70756f7,SESCO,II.1.1,Córdoba,AR-X,annual,2014,jet kerosene combustion consumption by to the public,2.4847869999999994,TJ,N2O,2.0,kg/TJ,4.969573999999999,kg -d24ca53e-4c3b-349f-b3c6-3d49173085c3,SESCO,II.1.1,Entre Rios,AR-E,annual,2014,jet kerosene combustion consumption by to the public,2.1702569999999994,TJ,CO2,71500.0,kg/TJ,155173.37549999997,kg -d038b9e9-6b68-324f-9702-5e205589328b,SESCO,II.1.1,Entre Rios,AR-E,annual,2014,jet kerosene combustion consumption by to the public,2.1702569999999994,TJ,CH4,0.5,kg/TJ,1.0851284999999997,kg -f17be1a6-0e36-34a6-9112-10d0da5c5647,SESCO,II.1.1,Entre Rios,AR-E,annual,2014,jet kerosene combustion consumption by to the public,2.1702569999999994,TJ,N2O,2.0,kg/TJ,4.340513999999999,kg -43ce6b81-84e9-3d14-9b3d-895697be0d64,SESCO,II.1.1,Mendoza,AR-M,annual,2014,jet kerosene combustion consumption by to the public,0.157265,TJ,CO2,71500.0,kg/TJ,11244.447499999998,kg -6854e353-c525-3968-98e1-57d136212235,SESCO,II.1.1,Mendoza,AR-M,annual,2014,jet kerosene combustion consumption by to the public,0.157265,TJ,CH4,0.5,kg/TJ,0.0786325,kg -b2657b9f-dd87-360c-a6dd-8e846c102a8f,SESCO,II.1.1,Mendoza,AR-M,annual,2014,jet kerosene combustion consumption by to the public,0.157265,TJ,N2O,2.0,kg/TJ,0.31453,kg -e66c28f0-7e40-372f-a5a8-c935df277fd4,SESCO,II.1.1,Misiones,AR-N,annual,2014,jet kerosene combustion consumption by to the public,0.62906,TJ,CO2,71500.0,kg/TJ,44977.78999999999,kg -6837d2da-a8e8-32e0-85df-7823659a37f1,SESCO,II.1.1,Misiones,AR-N,annual,2014,jet kerosene combustion consumption by to the public,0.62906,TJ,CH4,0.5,kg/TJ,0.31453,kg -39e3e3e2-3b55-3ad6-a3d7-f7cc125fc28c,SESCO,II.1.1,Misiones,AR-N,annual,2014,jet kerosene combustion consumption by to the public,0.62906,TJ,N2O,2.0,kg/TJ,1.25812,kg -86168535-51f7-39db-b354-b3aeb01c8244,SESCO,II.1.1,Santa Fe,AR-S,annual,2014,jet kerosene combustion consumption by to the public,4.025983999999999,TJ,CO2,71500.0,kg/TJ,287857.85599999997,kg -6cac0084-c573-3e94-a0cc-0f6e231365b8,SESCO,II.1.1,Santa Fe,AR-S,annual,2014,jet kerosene combustion consumption by to the public,4.025983999999999,TJ,CH4,0.5,kg/TJ,2.0129919999999997,kg -05f2d69e-479a-3722-95ec-0b39c15cf30b,SESCO,II.1.1,Santa Fe,AR-S,annual,2014,jet kerosene combustion consumption by to the public,4.025983999999999,TJ,N2O,2.0,kg/TJ,8.051967999999999,kg -b60133f6-96f8-3320-a66b-e40b6b00ce6f,SESCO,I.3.1,Buenos Aires,AR-B,annual,2014,gasoline combustion consumption by petrochemical industries,31.6745,TJ,CO2,69300.0,kg/TJ,2195042.85,kg -c902aff5-9304-3616-9583-bb71ae6d20d0,SESCO,I.3.1,Buenos Aires,AR-B,annual,2014,gasoline combustion consumption by petrochemical industries,31.6745,TJ,CH4,33.0,kg/TJ,1045.2585,kg -1804636a-e7f8-32d7-bef1-f7ae115f6552,SESCO,I.3.1,Buenos Aires,AR-B,annual,2014,gasoline combustion consumption by petrochemical industries,31.6745,TJ,N2O,3.2,kg/TJ,101.3584,kg -3e763863-b8fb-3fe5-9af7-4eff1a290ac4,SESCO,I.3.1,Buenos Aires,AR-B,annual,2014,gas oil combustion consumption by petrochemical industries,33.48324,TJ,CO2,74100.0,kg/TJ,2481108.0840000003,kg -341db6b1-9732-32ac-8386-60d5b7602a91,SESCO,I.3.1,Buenos Aires,AR-B,annual,2014,gas oil combustion consumption by petrochemical industries,33.48324,TJ,CH4,3.9,kg/TJ,130.58463600000002,kg -341db6b1-9732-32ac-8386-60d5b7602a91,SESCO,I.3.1,Buenos Aires,AR-B,annual,2014,gas oil combustion consumption by petrochemical industries,33.48324,TJ,N2O,3.9,kg/TJ,130.58463600000002,kg -27b492ea-0872-3090-8296-ab9685f662d1,SESCO,II.1.1,Buenos Aires,AR-B,annual,2014,gas oil combustion consumption by freight transport,1349.8181255999998,TJ,CO2,74100.0,kg/TJ,100021523.10695998,kg -042d18d9-d0cc-3877-9c1a-3aed377e4d95,SESCO,II.1.1,Buenos Aires,AR-B,annual,2014,gas oil combustion consumption by freight transport,1349.8181255999998,TJ,CH4,3.9,kg/TJ,5264.290689839999,kg -042d18d9-d0cc-3877-9c1a-3aed377e4d95,SESCO,II.1.1,Buenos Aires,AR-B,annual,2014,gas oil combustion consumption by freight transport,1349.8181255999998,TJ,N2O,3.9,kg/TJ,5264.290689839999,kg -d8465c4a-5115-385c-bbdb-4e6562cc5049,SESCO,II.1.1,Capital Federal,AR-C,annual,2014,gas oil combustion consumption by freight transport,441.88124400000004,TJ,CO2,74100.0,kg/TJ,32743400.180400003,kg -62ddf26c-d947-3682-8d6a-dc687a2d062d,SESCO,II.1.1,Capital Federal,AR-C,annual,2014,gas oil combustion consumption by freight transport,441.88124400000004,TJ,CH4,3.9,kg/TJ,1723.3368516,kg -62ddf26c-d947-3682-8d6a-dc687a2d062d,SESCO,II.1.1,Capital Federal,AR-C,annual,2014,gas oil combustion consumption by freight transport,441.88124400000004,TJ,N2O,3.9,kg/TJ,1723.3368516,kg -b6a3402b-0578-3767-8316-1a901f65832f,SESCO,II.1.1,Catamarca,AR-K,annual,2014,gas oil combustion consumption by freight transport,10.07748,TJ,CO2,74100.0,kg/TJ,746741.2679999999,kg -f9585115-c258-3f10-ac3e-da5bcda51eb1,SESCO,II.1.1,Catamarca,AR-K,annual,2014,gas oil combustion consumption by freight transport,10.07748,TJ,CH4,3.9,kg/TJ,39.302172,kg -f9585115-c258-3f10-ac3e-da5bcda51eb1,SESCO,II.1.1,Catamarca,AR-K,annual,2014,gas oil combustion consumption by freight transport,10.07748,TJ,N2O,3.9,kg/TJ,39.302172,kg -7de89f6f-fdf2-3e1b-87b3-dc0e34a52293,SESCO,II.1.1,Chaco,AR-H,annual,2014,gas oil combustion consumption by freight transport,29.6194836,TJ,CO2,74100.0,kg/TJ,2194803.73476,kg -59dce0c4-82c1-31fe-ac29-26d1e2718c38,SESCO,II.1.1,Chaco,AR-H,annual,2014,gas oil combustion consumption by freight transport,29.6194836,TJ,CH4,3.9,kg/TJ,115.51598603999999,kg -59dce0c4-82c1-31fe-ac29-26d1e2718c38,SESCO,II.1.1,Chaco,AR-H,annual,2014,gas oil combustion consumption by freight transport,29.6194836,TJ,N2O,3.9,kg/TJ,115.51598603999999,kg -1f50a6fe-6f67-30b8-911f-99863e22a440,SESCO,II.1.1,Chubut,AR-U,annual,2014,gas oil combustion consumption by freight transport,0.5894784,TJ,CO2,74100.0,kg/TJ,43680.34944,kg -896db00a-8c5c-36b2-96bc-cfa38c773e00,SESCO,II.1.1,Chubut,AR-U,annual,2014,gas oil combustion consumption by freight transport,0.5894784,TJ,CH4,3.9,kg/TJ,2.2989657599999997,kg -896db00a-8c5c-36b2-96bc-cfa38c773e00,SESCO,II.1.1,Chubut,AR-U,annual,2014,gas oil combustion consumption by freight transport,0.5894784,TJ,N2O,3.9,kg/TJ,2.2989657599999997,kg -526d19d9-8722-34df-9cff-9fa0028aee7e,SESCO,II.1.1,Corrientes,AR-W,annual,2014,gas oil combustion consumption by freight transport,66.164616,TJ,CO2,74100.0,kg/TJ,4902798.0456,kg -c8d519a2-9ec5-3450-8c50-a98bd591076c,SESCO,II.1.1,Corrientes,AR-W,annual,2014,gas oil combustion consumption by freight transport,66.164616,TJ,CH4,3.9,kg/TJ,258.0420024,kg -c8d519a2-9ec5-3450-8c50-a98bd591076c,SESCO,II.1.1,Corrientes,AR-W,annual,2014,gas oil combustion consumption by freight transport,66.164616,TJ,N2O,3.9,kg/TJ,258.0420024,kg -76b62f08-a824-3a17-b8c9-f28f1ab230d9,SESCO,II.1.1,Córdoba,AR-X,annual,2014,gas oil combustion consumption by freight transport,123.5011428,TJ,CO2,74100.0,kg/TJ,9151434.68148,kg -657b621e-89d7-395d-abee-ae9f93723734,SESCO,II.1.1,Córdoba,AR-X,annual,2014,gas oil combustion consumption by freight transport,123.5011428,TJ,CH4,3.9,kg/TJ,481.65445692,kg -657b621e-89d7-395d-abee-ae9f93723734,SESCO,II.1.1,Córdoba,AR-X,annual,2014,gas oil combustion consumption by freight transport,123.5011428,TJ,N2O,3.9,kg/TJ,481.65445692,kg -ffe1703d-04b1-39f4-9cc5-5906f9015f21,SESCO,II.1.1,Entre Rios,AR-E,annual,2014,gas oil combustion consumption by freight transport,57.6666636,TJ,CO2,74100.0,kg/TJ,4273099.77276,kg -3ff11043-f29c-3167-8018-717b326c0734,SESCO,II.1.1,Entre Rios,AR-E,annual,2014,gas oil combustion consumption by freight transport,57.6666636,TJ,CH4,3.9,kg/TJ,224.89998803999998,kg -3ff11043-f29c-3167-8018-717b326c0734,SESCO,II.1.1,Entre Rios,AR-E,annual,2014,gas oil combustion consumption by freight transport,57.6666636,TJ,N2O,3.9,kg/TJ,224.89998803999998,kg -d57ebe41-a5ee-39e2-b91f-d38d932ec763,SESCO,II.1.1,Formosa,AR-P,annual,2014,gas oil combustion consumption by freight transport,1.95048,TJ,CO2,74100.0,kg/TJ,144530.568,kg -974a0719-5c10-36c1-ae11-b7d63b0b84ba,SESCO,II.1.1,Formosa,AR-P,annual,2014,gas oil combustion consumption by freight transport,1.95048,TJ,CH4,3.9,kg/TJ,7.606872,kg -974a0719-5c10-36c1-ae11-b7d63b0b84ba,SESCO,II.1.1,Formosa,AR-P,annual,2014,gas oil combustion consumption by freight transport,1.95048,TJ,N2O,3.9,kg/TJ,7.606872,kg -e9151dd4-e5c9-369f-be06-bd10a536d9e5,SESCO,II.1.1,La Pampa,AR-L,annual,2014,gas oil combustion consumption by freight transport,7.5335484,TJ,CO2,74100.0,kg/TJ,558235.93644,kg -7409dd02-792b-38b8-9331-390f33d58c86,SESCO,II.1.1,La Pampa,AR-L,annual,2014,gas oil combustion consumption by freight transport,7.5335484,TJ,CH4,3.9,kg/TJ,29.38083876,kg -7409dd02-792b-38b8-9331-390f33d58c86,SESCO,II.1.1,La Pampa,AR-L,annual,2014,gas oil combustion consumption by freight transport,7.5335484,TJ,N2O,3.9,kg/TJ,29.38083876,kg -e6e8bc9e-cacb-3a53-8d7d-776114be171e,SESCO,II.1.1,Mendoza,AR-M,annual,2014,gas oil combustion consumption by freight transport,19.4639844,TJ,CO2,74100.0,kg/TJ,1442281.24404,kg -d30cb497-2383-3f18-9216-ee9ee988f1f9,SESCO,II.1.1,Mendoza,AR-M,annual,2014,gas oil combustion consumption by freight transport,19.4639844,TJ,CH4,3.9,kg/TJ,75.90953916000001,kg -d30cb497-2383-3f18-9216-ee9ee988f1f9,SESCO,II.1.1,Mendoza,AR-M,annual,2014,gas oil combustion consumption by freight transport,19.4639844,TJ,N2O,3.9,kg/TJ,75.90953916000001,kg -f20a7f1e-7979-39ae-a2eb-ea71e37fd86f,SESCO,II.1.1,Misiones,AR-N,annual,2014,gas oil combustion consumption by freight transport,24.7039128,TJ,CO2,74100.0,kg/TJ,1830559.93848,kg -022556e5-1a53-3a0d-a047-bfd938e0dac9,SESCO,II.1.1,Misiones,AR-N,annual,2014,gas oil combustion consumption by freight transport,24.7039128,TJ,CH4,3.9,kg/TJ,96.34525992,kg -022556e5-1a53-3a0d-a047-bfd938e0dac9,SESCO,II.1.1,Misiones,AR-N,annual,2014,gas oil combustion consumption by freight transport,24.7039128,TJ,N2O,3.9,kg/TJ,96.34525992,kg -eab5c455-365c-3389-b240-dc6ee2698791,SESCO,II.1.1,Rio Negro,AR-R,annual,2014,gas oil combustion consumption by freight transport,18.99912,TJ,CO2,74100.0,kg/TJ,1407834.7920000001,kg -5cc0e774-066d-3f40-9f1a-422d17972052,SESCO,II.1.1,Rio Negro,AR-R,annual,2014,gas oil combustion consumption by freight transport,18.99912,TJ,CH4,3.9,kg/TJ,74.096568,kg -5cc0e774-066d-3f40-9f1a-422d17972052,SESCO,II.1.1,Rio Negro,AR-R,annual,2014,gas oil combustion consumption by freight transport,18.99912,TJ,N2O,3.9,kg/TJ,74.096568,kg -6cb60035-5cf4-3f22-b8c1-27c66737948d,SESCO,II.1.1,Salta,AR-A,annual,2014,gas oil combustion consumption by freight transport,0.502068,TJ,CO2,74100.0,kg/TJ,37203.2388,kg -14b7f838-135b-33b5-b1e4-8081ab18861e,SESCO,II.1.1,Salta,AR-A,annual,2014,gas oil combustion consumption by freight transport,0.502068,TJ,CH4,3.9,kg/TJ,1.9580651999999998,kg -14b7f838-135b-33b5-b1e4-8081ab18861e,SESCO,II.1.1,Salta,AR-A,annual,2014,gas oil combustion consumption by freight transport,0.502068,TJ,N2O,3.9,kg/TJ,1.9580651999999998,kg -1fb67c8c-938a-3fc3-a7d7-bb06e8a3d558,SESCO,II.1.1,San Juan,AR-J,annual,2014,gas oil combustion consumption by freight transport,10.2837252,TJ,CO2,74100.0,kg/TJ,762024.0373199999,kg -b2f096a6-f5cd-303f-85a3-8ea23596ff0b,SESCO,II.1.1,San Juan,AR-J,annual,2014,gas oil combustion consumption by freight transport,10.2837252,TJ,CH4,3.9,kg/TJ,40.10652828,kg -b2f096a6-f5cd-303f-85a3-8ea23596ff0b,SESCO,II.1.1,San Juan,AR-J,annual,2014,gas oil combustion consumption by freight transport,10.2837252,TJ,N2O,3.9,kg/TJ,40.10652828,kg -83a002e7-c7f6-3e34-a2f0-5e08098b13bd,SESCO,II.1.1,San Luis,AR-D,annual,2014,gas oil combustion consumption by freight transport,55.52005199999999,TJ,CO2,74100.0,kg/TJ,4114035.8531999993,kg -953edff4-413e-38b9-901b-a54fb1f1eb1d,SESCO,II.1.1,San Luis,AR-D,annual,2014,gas oil combustion consumption by freight transport,55.52005199999999,TJ,CH4,3.9,kg/TJ,216.52820279999997,kg -953edff4-413e-38b9-901b-a54fb1f1eb1d,SESCO,II.1.1,San Luis,AR-D,annual,2014,gas oil combustion consumption by freight transport,55.52005199999999,TJ,N2O,3.9,kg/TJ,216.52820279999997,kg -16adf4aa-5c0e-30bc-adcb-6ad01485dffc,SESCO,II.1.1,Santa Fe,AR-S,annual,2014,gas oil combustion consumption by freight transport,349.59500519999995,TJ,CO2,74100.0,kg/TJ,25904989.885319997,kg -834e92f8-a7d7-3fbc-b412-9458c74ce811,SESCO,II.1.1,Santa Fe,AR-S,annual,2014,gas oil combustion consumption by freight transport,349.59500519999995,TJ,CH4,3.9,kg/TJ,1363.4205202799997,kg -834e92f8-a7d7-3fbc-b412-9458c74ce811,SESCO,II.1.1,Santa Fe,AR-S,annual,2014,gas oil combustion consumption by freight transport,349.59500519999995,TJ,N2O,3.9,kg/TJ,1363.4205202799997,kg -54a02b3b-668e-3f12-8d6a-aa004af83b1b,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2014,gas oil combustion consumption by freight transport,6.797783999999999,TJ,CO2,74100.0,kg/TJ,503715.79439999996,kg -6ac48aed-0cf4-3858-950f-607a4f58cbd2,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2014,gas oil combustion consumption by freight transport,6.797783999999999,TJ,CH4,3.9,kg/TJ,26.511357599999997,kg -6ac48aed-0cf4-3858-950f-607a4f58cbd2,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2014,gas oil combustion consumption by freight transport,6.797783999999999,TJ,N2O,3.9,kg/TJ,26.511357599999997,kg -45ba0f41-8b9e-3500-a699-0f8f27bf6613,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2014,gas oil combustion consumption by freight transport,1.9569816,TJ,CO2,74100.0,kg/TJ,145012.33656,kg -a5fde8a0-13bb-3707-b8b2-6635454b3548,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2014,gas oil combustion consumption by freight transport,1.9569816,TJ,CH4,3.9,kg/TJ,7.63222824,kg -a5fde8a0-13bb-3707-b8b2-6635454b3548,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2014,gas oil combustion consumption by freight transport,1.9569816,TJ,N2O,3.9,kg/TJ,7.63222824,kg -e778578b-acc0-3bb0-b2a6-5414851ac396,SESCO,II.1.1,Tucuman,AR-T,annual,2014,gas oil combustion consumption by freight transport,37.034558399999995,TJ,CO2,74100.0,kg/TJ,2744260.7774399994,kg -37ceb41b-bff3-36f7-b2d8-5bbdf748bc6d,SESCO,II.1.1,Tucuman,AR-T,annual,2014,gas oil combustion consumption by freight transport,37.034558399999995,TJ,CH4,3.9,kg/TJ,144.43477775999997,kg -37ceb41b-bff3-36f7-b2d8-5bbdf748bc6d,SESCO,II.1.1,Tucuman,AR-T,annual,2014,gas oil combustion consumption by freight transport,37.034558399999995,TJ,N2O,3.9,kg/TJ,144.43477775999997,kg -d344dd10-a230-3c09-95d6-5ff631090c77,SESCO,II.1.1,Buenos Aires,AR-B,annual,2014,gas oil combustion consumption by freight transport,27.1091436,TJ,CO2,74100.0,kg/TJ,2008787.54076,kg -b13df2f7-f10d-3790-ab37-4a52bb1a1e5f,SESCO,II.1.1,Buenos Aires,AR-B,annual,2014,gas oil combustion consumption by freight transport,27.1091436,TJ,CH4,3.9,kg/TJ,105.72566004,kg -b13df2f7-f10d-3790-ab37-4a52bb1a1e5f,SESCO,II.1.1,Buenos Aires,AR-B,annual,2014,gas oil combustion consumption by freight transport,27.1091436,TJ,N2O,3.9,kg/TJ,105.72566004,kg -3e148982-7d9e-36d0-aa8a-60c1eceb9fa9,SESCO,II.1.1,Capital Federal,AR-C,annual,2014,gas oil combustion consumption by freight transport,31.894682399999997,TJ,CO2,74100.0,kg/TJ,2363395.9658399997,kg -7eb49098-3e8a-323a-abef-ed400c2a96f5,SESCO,II.1.1,Capital Federal,AR-C,annual,2014,gas oil combustion consumption by freight transport,31.894682399999997,TJ,CH4,3.9,kg/TJ,124.38926135999999,kg -7eb49098-3e8a-323a-abef-ed400c2a96f5,SESCO,II.1.1,Capital Federal,AR-C,annual,2014,gas oil combustion consumption by freight transport,31.894682399999997,TJ,N2O,3.9,kg/TJ,124.38926135999999,kg -85a86d3f-78bb-3d6d-802c-320b69b9cf9b,SESCO,II.1.1,Chaco,AR-H,annual,2014,gas oil combustion consumption by freight transport,0.5710572,TJ,CO2,74100.0,kg/TJ,42315.338520000005,kg -d936230d-84ce-3a2e-a7e3-a23321c378f2,SESCO,II.1.1,Chaco,AR-H,annual,2014,gas oil combustion consumption by freight transport,0.5710572,TJ,CH4,3.9,kg/TJ,2.22712308,kg -d936230d-84ce-3a2e-a7e3-a23321c378f2,SESCO,II.1.1,Chaco,AR-H,annual,2014,gas oil combustion consumption by freight transport,0.5710572,TJ,N2O,3.9,kg/TJ,2.22712308,kg -a9fe2643-7501-361d-925f-d6b9077a89f0,SESCO,II.1.1,Corrientes,AR-W,annual,2014,gas oil combustion consumption by freight transport,1.3014036,TJ,CO2,74100.0,kg/TJ,96434.00676,kg -787c4d7e-c3ec-3d7b-ab42-4bceb61ed670,SESCO,II.1.1,Corrientes,AR-W,annual,2014,gas oil combustion consumption by freight transport,1.3014036,TJ,CH4,3.9,kg/TJ,5.07547404,kg -787c4d7e-c3ec-3d7b-ab42-4bceb61ed670,SESCO,II.1.1,Corrientes,AR-W,annual,2014,gas oil combustion consumption by freight transport,1.3014036,TJ,N2O,3.9,kg/TJ,5.07547404,kg -baeb021d-3201-34f6-9404-af2b68d3ad08,SESCO,II.1.1,Córdoba,AR-X,annual,2014,gas oil combustion consumption by freight transport,0.7733291999999999,TJ,CO2,74100.0,kg/TJ,57303.693719999996,kg -7b38a352-023a-373f-861e-e63447a1b201,SESCO,II.1.1,Córdoba,AR-X,annual,2014,gas oil combustion consumption by freight transport,0.7733291999999999,TJ,CH4,3.9,kg/TJ,3.01598388,kg -7b38a352-023a-373f-861e-e63447a1b201,SESCO,II.1.1,Córdoba,AR-X,annual,2014,gas oil combustion consumption by freight transport,0.7733291999999999,TJ,N2O,3.9,kg/TJ,3.01598388,kg -0fc72a99-01ee-377e-828c-087a28419b5d,SESCO,II.1.1,Entre Rios,AR-E,annual,2014,gas oil combustion consumption by freight transport,1.7164224,TJ,CO2,74100.0,kg/TJ,127186.89984,kg -0b40b9bf-10ac-37b5-8968-b51b755041d8,SESCO,II.1.1,Entre Rios,AR-E,annual,2014,gas oil combustion consumption by freight transport,1.7164224,TJ,CH4,3.9,kg/TJ,6.69404736,kg -0b40b9bf-10ac-37b5-8968-b51b755041d8,SESCO,II.1.1,Entre Rios,AR-E,annual,2014,gas oil combustion consumption by freight transport,1.7164224,TJ,N2O,3.9,kg/TJ,6.69404736,kg -90413690-5952-38c1-9172-8147f141866f,SESCO,II.1.1,Mendoza,AR-M,annual,2014,gas oil combustion consumption by freight transport,0.0285348,TJ,CO2,74100.0,kg/TJ,2114.42868,kg -bc7f7c61-57ce-3dc5-96b3-71ad99a99e07,SESCO,II.1.1,Mendoza,AR-M,annual,2014,gas oil combustion consumption by freight transport,0.0285348,TJ,CH4,3.9,kg/TJ,0.11128571999999999,kg -bc7f7c61-57ce-3dc5-96b3-71ad99a99e07,SESCO,II.1.1,Mendoza,AR-M,annual,2014,gas oil combustion consumption by freight transport,0.0285348,TJ,N2O,3.9,kg/TJ,0.11128571999999999,kg -9a472f53-cb6e-3d98-937b-ea552d9abe01,SESCO,II.1.1,Misiones,AR-N,annual,2014,gas oil combustion consumption by freight transport,0.05418,TJ,CO2,74100.0,kg/TJ,4014.738,kg -1a748f3c-4c85-3d85-a203-3bb4eb40d9b1,SESCO,II.1.1,Misiones,AR-N,annual,2014,gas oil combustion consumption by freight transport,0.05418,TJ,CH4,3.9,kg/TJ,0.211302,kg -1a748f3c-4c85-3d85-a203-3bb4eb40d9b1,SESCO,II.1.1,Misiones,AR-N,annual,2014,gas oil combustion consumption by freight transport,0.05418,TJ,N2O,3.9,kg/TJ,0.211302,kg -926e98b0-717c-3943-8131-b3ea241feb0b,SESCO,II.1.1,San Juan,AR-J,annual,2014,gas oil combustion consumption by freight transport,0.003612,TJ,CO2,74100.0,kg/TJ,267.6492,kg -7eaa99ec-6d18-3ed4-afb4-10bcc7922d85,SESCO,II.1.1,San Juan,AR-J,annual,2014,gas oil combustion consumption by freight transport,0.003612,TJ,CH4,3.9,kg/TJ,0.0140868,kg -7eaa99ec-6d18-3ed4-afb4-10bcc7922d85,SESCO,II.1.1,San Juan,AR-J,annual,2014,gas oil combustion consumption by freight transport,0.003612,TJ,N2O,3.9,kg/TJ,0.0140868,kg -69ed602e-800c-3597-a340-3707ef891d7f,SESCO,II.1.1,San Luis,AR-D,annual,2014,gas oil combustion consumption by freight transport,0.1755432,TJ,CO2,74100.0,kg/TJ,13007.75112,kg -550f448c-00dc-33e8-a540-77b0b728422d,SESCO,II.1.1,San Luis,AR-D,annual,2014,gas oil combustion consumption by freight transport,0.1755432,TJ,CH4,3.9,kg/TJ,0.68461848,kg -550f448c-00dc-33e8-a540-77b0b728422d,SESCO,II.1.1,San Luis,AR-D,annual,2014,gas oil combustion consumption by freight transport,0.1755432,TJ,N2O,3.9,kg/TJ,0.68461848,kg -6ff05dd3-815d-3fdd-994d-c3c8712d5552,SESCO,II.1.1,Santa Fe,AR-S,annual,2014,gas oil combustion consumption by freight transport,1.8255048,TJ,CO2,74100.0,kg/TJ,135269.90568,kg -05c41f5a-9a71-3062-88b3-bdabf9f1ee66,SESCO,II.1.1,Santa Fe,AR-S,annual,2014,gas oil combustion consumption by freight transport,1.8255048,TJ,CH4,3.9,kg/TJ,7.11946872,kg -05c41f5a-9a71-3062-88b3-bdabf9f1ee66,SESCO,II.1.1,Santa Fe,AR-S,annual,2014,gas oil combustion consumption by freight transport,1.8255048,TJ,N2O,3.9,kg/TJ,7.11946872,kg -3c8c274a-f4c1-32eb-b1d8-294aef5a8545,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2014,gas oil combustion consumption by freight transport,0.18059999999999998,TJ,CO2,74100.0,kg/TJ,13382.46,kg -57674291-16cd-3d81-b3c2-f42e9b17a22d,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2014,gas oil combustion consumption by freight transport,0.18059999999999998,TJ,CH4,3.9,kg/TJ,0.70434,kg -57674291-16cd-3d81-b3c2-f42e9b17a22d,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2014,gas oil combustion consumption by freight transport,0.18059999999999998,TJ,N2O,3.9,kg/TJ,0.70434,kg -750db3fd-2d13-321d-a371-278fbf9aa4db,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2014,gas oil combustion consumption by freight transport,0.047678399999999996,TJ,CO2,74100.0,kg/TJ,3532.96944,kg -fa77b9e1-079c-3e54-b303-8251167c762e,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2014,gas oil combustion consumption by freight transport,0.047678399999999996,TJ,CH4,3.9,kg/TJ,0.18594576,kg -fa77b9e1-079c-3e54-b303-8251167c762e,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2014,gas oil combustion consumption by freight transport,0.047678399999999996,TJ,N2O,3.9,kg/TJ,0.18594576,kg -8c8f0565-03fd-3cce-b840-7ecb2b2eda63,SESCO,II.1.1,Tucuman,AR-T,annual,2014,gas oil combustion consumption by freight transport,0.30918719999999994,TJ,CO2,74100.0,kg/TJ,22910.771519999995,kg -dd9011b6-0e56-3ec1-ab22-3b97931fa945,SESCO,II.1.1,Tucuman,AR-T,annual,2014,gas oil combustion consumption by freight transport,0.30918719999999994,TJ,CH4,3.9,kg/TJ,1.2058300799999997,kg -dd9011b6-0e56-3ec1-ab22-3b97931fa945,SESCO,II.1.1,Tucuman,AR-T,annual,2014,gas oil combustion consumption by freight transport,0.30918719999999994,TJ,N2O,3.9,kg/TJ,1.2058300799999997,kg -63b3ec96-1b47-35f7-9d4e-1e7ebdb145ee,SESCO,II.1.1,Buenos Aires,AR-B,annual,2014,jet kerosene combustion consumption by freight transport,0.5347009999999999,TJ,CO2,71500.0,kg/TJ,38231.121499999994,kg -f558a779-9293-3ccc-a986-b218d6cd2c6b,SESCO,II.1.1,Buenos Aires,AR-B,annual,2014,jet kerosene combustion consumption by freight transport,0.5347009999999999,TJ,CH4,0.5,kg/TJ,0.26735049999999994,kg -fe78243a-56cc-3c0e-ab75-fb6f37a75f37,SESCO,II.1.1,Buenos Aires,AR-B,annual,2014,jet kerosene combustion consumption by freight transport,0.5347009999999999,TJ,N2O,2.0,kg/TJ,1.0694019999999997,kg -10b57edf-be7a-3c6c-a857-230502b81b50,SESCO,II.1.1,Buenos Aires,AR-B,annual,2014,gas oil combustion consumption by public passenger transport,2229.857364,TJ,CO2,74100.0,kg/TJ,165232430.6724,kg -a157fb05-24ba-3d7d-b42b-5a113573abf2,SESCO,II.1.1,Buenos Aires,AR-B,annual,2014,gas oil combustion consumption by public passenger transport,2229.857364,TJ,CH4,3.9,kg/TJ,8696.4437196,kg -a157fb05-24ba-3d7d-b42b-5a113573abf2,SESCO,II.1.1,Buenos Aires,AR-B,annual,2014,gas oil combustion consumption by public passenger transport,2229.857364,TJ,N2O,3.9,kg/TJ,8696.4437196,kg -6a271262-5b5d-3091-8a5c-285511a3e5ec,SESCO,II.1.1,Capital Federal,AR-C,annual,2014,gas oil combustion consumption by public passenger transport,151.3453284,TJ,CO2,74100.0,kg/TJ,11214688.83444,kg -28440ac1-0d44-3d7b-8f4d-93774d9b81cd,SESCO,II.1.1,Capital Federal,AR-C,annual,2014,gas oil combustion consumption by public passenger transport,151.3453284,TJ,CH4,3.9,kg/TJ,590.24678076,kg -28440ac1-0d44-3d7b-8f4d-93774d9b81cd,SESCO,II.1.1,Capital Federal,AR-C,annual,2014,gas oil combustion consumption by public passenger transport,151.3453284,TJ,N2O,3.9,kg/TJ,590.24678076,kg -1f3960a5-cb83-3751-a14f-9a0d86c4d5df,SESCO,II.1.1,Catamarca,AR-K,annual,2014,gas oil combustion consumption by public passenger transport,0.21672,TJ,CO2,74100.0,kg/TJ,16058.952,kg -23b635c7-9afa-38e5-a1f8-18d89d130fd4,SESCO,II.1.1,Catamarca,AR-K,annual,2014,gas oil combustion consumption by public passenger transport,0.21672,TJ,CH4,3.9,kg/TJ,0.845208,kg -23b635c7-9afa-38e5-a1f8-18d89d130fd4,SESCO,II.1.1,Catamarca,AR-K,annual,2014,gas oil combustion consumption by public passenger transport,0.21672,TJ,N2O,3.9,kg/TJ,0.845208,kg -3ab2a1c9-0a8e-3499-a13e-fafefc72bad9,SESCO,II.1.1,Chubut,AR-U,annual,2014,gas oil combustion consumption by public passenger transport,14.155427999999999,TJ,CO2,74100.0,kg/TJ,1048917.2148,kg -d0ab494a-139c-3611-aeb8-f0b60320a2b9,SESCO,II.1.1,Chubut,AR-U,annual,2014,gas oil combustion consumption by public passenger transport,14.155427999999999,TJ,CH4,3.9,kg/TJ,55.20616919999999,kg -d0ab494a-139c-3611-aeb8-f0b60320a2b9,SESCO,II.1.1,Chubut,AR-U,annual,2014,gas oil combustion consumption by public passenger transport,14.155427999999999,TJ,N2O,3.9,kg/TJ,55.20616919999999,kg -0354494c-5c8c-3661-957c-252edf68e61f,SESCO,II.1.1,Corrientes,AR-W,annual,2014,gas oil combustion consumption by public passenger transport,0.25284,TJ,CO2,74100.0,kg/TJ,18735.444,kg -84fe2139-6d90-3674-99aa-dc1595dbd8cd,SESCO,II.1.1,Corrientes,AR-W,annual,2014,gas oil combustion consumption by public passenger transport,0.25284,TJ,CH4,3.9,kg/TJ,0.9860760000000001,kg -84fe2139-6d90-3674-99aa-dc1595dbd8cd,SESCO,II.1.1,Corrientes,AR-W,annual,2014,gas oil combustion consumption by public passenger transport,0.25284,TJ,N2O,3.9,kg/TJ,0.9860760000000001,kg -12761a28-6f61-3b34-857f-75fd356823cf,SESCO,II.1.1,Córdoba,AR-X,annual,2014,gas oil combustion consumption by public passenger transport,66.0277212,TJ,CO2,74100.0,kg/TJ,4892654.14092,kg -45eda22c-f48c-345c-884b-c573403e22f0,SESCO,II.1.1,Córdoba,AR-X,annual,2014,gas oil combustion consumption by public passenger transport,66.0277212,TJ,CH4,3.9,kg/TJ,257.50811268,kg -45eda22c-f48c-345c-884b-c573403e22f0,SESCO,II.1.1,Córdoba,AR-X,annual,2014,gas oil combustion consumption by public passenger transport,66.0277212,TJ,N2O,3.9,kg/TJ,257.50811268,kg -7639fa44-5f2a-3ded-8c00-3325f618e6c5,SESCO,II.1.1,Entre Rios,AR-E,annual,2014,gas oil combustion consumption by public passenger transport,52.18942679999999,TJ,CO2,74100.0,kg/TJ,3867236.5258799996,kg -e2874374-31b6-3468-b2b3-5223d81c75ff,SESCO,II.1.1,Entre Rios,AR-E,annual,2014,gas oil combustion consumption by public passenger transport,52.18942679999999,TJ,CH4,3.9,kg/TJ,203.53876451999997,kg -e2874374-31b6-3468-b2b3-5223d81c75ff,SESCO,II.1.1,Entre Rios,AR-E,annual,2014,gas oil combustion consumption by public passenger transport,52.18942679999999,TJ,N2O,3.9,kg/TJ,203.53876451999997,kg -56c1393e-c115-3923-8de0-56d824f718cb,SESCO,II.1.1,La Pampa,AR-L,annual,2014,gas oil combustion consumption by public passenger transport,9.13836,TJ,CO2,74100.0,kg/TJ,677152.476,kg -37c478b9-75c1-329f-ac56-f461b4141398,SESCO,II.1.1,La Pampa,AR-L,annual,2014,gas oil combustion consumption by public passenger transport,9.13836,TJ,CH4,3.9,kg/TJ,35.639604,kg -37c478b9-75c1-329f-ac56-f461b4141398,SESCO,II.1.1,La Pampa,AR-L,annual,2014,gas oil combustion consumption by public passenger transport,9.13836,TJ,N2O,3.9,kg/TJ,35.639604,kg -3171c01c-7c94-3a55-8596-ea71eb868367,SESCO,II.1.1,Mendoza,AR-M,annual,2014,gas oil combustion consumption by public passenger transport,0.43344,TJ,CO2,74100.0,kg/TJ,32117.904,kg -41e56719-715a-34df-8e41-11a75a71e38e,SESCO,II.1.1,Mendoza,AR-M,annual,2014,gas oil combustion consumption by public passenger transport,0.43344,TJ,CH4,3.9,kg/TJ,1.690416,kg -41e56719-715a-34df-8e41-11a75a71e38e,SESCO,II.1.1,Mendoza,AR-M,annual,2014,gas oil combustion consumption by public passenger transport,0.43344,TJ,N2O,3.9,kg/TJ,1.690416,kg -bd27bfe5-0c4c-3b8f-b951-fe6d04263c80,SESCO,II.1.1,Misiones,AR-N,annual,2014,gas oil combustion consumption by public passenger transport,19.636999199999998,TJ,CO2,74100.0,kg/TJ,1455101.6407199998,kg -5be08e9d-fc2b-33f8-a6e3-e97a2e2b8d88,SESCO,II.1.1,Misiones,AR-N,annual,2014,gas oil combustion consumption by public passenger transport,19.636999199999998,TJ,CH4,3.9,kg/TJ,76.58429688,kg -5be08e9d-fc2b-33f8-a6e3-e97a2e2b8d88,SESCO,II.1.1,Misiones,AR-N,annual,2014,gas oil combustion consumption by public passenger transport,19.636999199999998,TJ,N2O,3.9,kg/TJ,76.58429688,kg -6f30bd03-f35f-395b-941f-1354d67f4918,SESCO,II.1.1,Rio Negro,AR-R,annual,2014,gas oil combustion consumption by public passenger transport,56.1871884,TJ,CO2,74100.0,kg/TJ,4163470.66044,kg -bceaa9a5-76d5-3b50-8cbe-62444cc190cf,SESCO,II.1.1,Rio Negro,AR-R,annual,2014,gas oil combustion consumption by public passenger transport,56.1871884,TJ,CH4,3.9,kg/TJ,219.13003475999997,kg -bceaa9a5-76d5-3b50-8cbe-62444cc190cf,SESCO,II.1.1,Rio Negro,AR-R,annual,2014,gas oil combustion consumption by public passenger transport,56.1871884,TJ,N2O,3.9,kg/TJ,219.13003475999997,kg -9663ccf5-b0e0-3e28-a85e-00588fecfada,SESCO,II.1.1,San Juan,AR-J,annual,2014,gas oil combustion consumption by public passenger transport,0.729624,TJ,CO2,74100.0,kg/TJ,54065.1384,kg -8e5e34c4-36f1-3fc9-b0ce-283aeb1ed0a3,SESCO,II.1.1,San Juan,AR-J,annual,2014,gas oil combustion consumption by public passenger transport,0.729624,TJ,CH4,3.9,kg/TJ,2.8455336,kg -8e5e34c4-36f1-3fc9-b0ce-283aeb1ed0a3,SESCO,II.1.1,San Juan,AR-J,annual,2014,gas oil combustion consumption by public passenger transport,0.729624,TJ,N2O,3.9,kg/TJ,2.8455336,kg -c7d53982-bf06-329b-a27c-77a41c6fb3f2,SESCO,II.1.1,San Luis,AR-D,annual,2014,gas oil combustion consumption by public passenger transport,0.14448,TJ,CO2,74100.0,kg/TJ,10705.967999999999,kg -0605f77b-cca0-37a9-a55e-72a5085f78b0,SESCO,II.1.1,San Luis,AR-D,annual,2014,gas oil combustion consumption by public passenger transport,0.14448,TJ,CH4,3.9,kg/TJ,0.563472,kg -0605f77b-cca0-37a9-a55e-72a5085f78b0,SESCO,II.1.1,San Luis,AR-D,annual,2014,gas oil combustion consumption by public passenger transport,0.14448,TJ,N2O,3.9,kg/TJ,0.563472,kg -f1d6f31d-aae0-38e0-a734-f3eebde86bed,SESCO,II.1.1,Santa Fe,AR-S,annual,2014,gas oil combustion consumption by public passenger transport,4.6807908000000005,TJ,CO2,74100.0,kg/TJ,346846.59828000003,kg -03cc1d1e-d9c8-33f9-85f8-4bd04ccaac58,SESCO,II.1.1,Santa Fe,AR-S,annual,2014,gas oil combustion consumption by public passenger transport,4.6807908000000005,TJ,CH4,3.9,kg/TJ,18.255084120000003,kg -03cc1d1e-d9c8-33f9-85f8-4bd04ccaac58,SESCO,II.1.1,Santa Fe,AR-S,annual,2014,gas oil combustion consumption by public passenger transport,4.6807908000000005,TJ,N2O,3.9,kg/TJ,18.255084120000003,kg -47022a84-9713-3490-9244-8578249c6297,SESCO,II.1.1,Buenos Aires,AR-B,annual,2014,gas oil combustion consumption by public passenger transport,1.3097112,TJ,CO2,74100.0,kg/TJ,97049.59992,kg -b4f9a759-d28e-35da-a326-63cbecd2aa41,SESCO,II.1.1,Buenos Aires,AR-B,annual,2014,gas oil combustion consumption by public passenger transport,1.3097112,TJ,CH4,3.9,kg/TJ,5.10787368,kg -b4f9a759-d28e-35da-a326-63cbecd2aa41,SESCO,II.1.1,Buenos Aires,AR-B,annual,2014,gas oil combustion consumption by public passenger transport,1.3097112,TJ,N2O,3.9,kg/TJ,5.10787368,kg -0bc0fd18-47bc-35b8-a589-107bfdc9bb52,SESCO,II.1.1,Capital Federal,AR-C,annual,2014,gas oil combustion consumption by public passenger transport,14.010947999999999,TJ,CO2,74100.0,kg/TJ,1038211.2468,kg -fb2dc791-b868-34c1-a693-d1b84a7aa8aa,SESCO,II.1.1,Capital Federal,AR-C,annual,2014,gas oil combustion consumption by public passenger transport,14.010947999999999,TJ,CH4,3.9,kg/TJ,54.64269719999999,kg -fb2dc791-b868-34c1-a693-d1b84a7aa8aa,SESCO,II.1.1,Capital Federal,AR-C,annual,2014,gas oil combustion consumption by public passenger transport,14.010947999999999,TJ,N2O,3.9,kg/TJ,54.64269719999999,kg -ad53deed-156b-38bd-91bd-4a081cea6069,SESCO,II.1.1,Córdoba,AR-X,annual,2014,gas oil combustion consumption by public passenger transport,0.1043868,TJ,CO2,74100.0,kg/TJ,7735.06188,kg -b58abf9e-3190-3808-a9b1-db486b26a053,SESCO,II.1.1,Córdoba,AR-X,annual,2014,gas oil combustion consumption by public passenger transport,0.1043868,TJ,CH4,3.9,kg/TJ,0.40710852,kg -b58abf9e-3190-3808-a9b1-db486b26a053,SESCO,II.1.1,Córdoba,AR-X,annual,2014,gas oil combustion consumption by public passenger transport,0.1043868,TJ,N2O,3.9,kg/TJ,0.40710852,kg -dc7e38bb-5bb8-3b71-a3e1-3fef7fc017d9,SESCO,II.1.1,Entre Rios,AR-E,annual,2014,gas oil combustion consumption by public passenger transport,0.083076,TJ,CO2,74100.0,kg/TJ,6155.9316,kg -4dcf5870-1560-3092-8e90-3ddb0d69b0f9,SESCO,II.1.1,Entre Rios,AR-E,annual,2014,gas oil combustion consumption by public passenger transport,0.083076,TJ,CH4,3.9,kg/TJ,0.32399639999999996,kg -4dcf5870-1560-3092-8e90-3ddb0d69b0f9,SESCO,II.1.1,Entre Rios,AR-E,annual,2014,gas oil combustion consumption by public passenger transport,0.083076,TJ,N2O,3.9,kg/TJ,0.32399639999999996,kg -dec01366-662c-3711-9ef7-ad6089613cd5,SESCO,II.1.1,Rio Negro,AR-R,annual,2014,gas oil combustion consumption by public passenger transport,2.709,TJ,CO2,74100.0,kg/TJ,200736.9,kg -4f3ff4b9-5664-3d23-9d56-11ae78b953a6,SESCO,II.1.1,Rio Negro,AR-R,annual,2014,gas oil combustion consumption by public passenger transport,2.709,TJ,CH4,3.9,kg/TJ,10.5651,kg -4f3ff4b9-5664-3d23-9d56-11ae78b953a6,SESCO,II.1.1,Rio Negro,AR-R,annual,2014,gas oil combustion consumption by public passenger transport,2.709,TJ,N2O,3.9,kg/TJ,10.5651,kg -6094e6c0-2180-309d-a873-64d8ffa1681c,SESCO,II.1.1,Chubut,AR-U,annual,2014,gas oil combustion consumption by freight transport,0.5250042,TJ,CO2,74100.0,kg/TJ,38902.81122,kg -7e5f2b86-d2f8-32b9-adaa-094fb46a4781,SESCO,II.1.1,Chubut,AR-U,annual,2014,gas oil combustion consumption by freight transport,0.5250042,TJ,CH4,3.9,kg/TJ,2.0475163800000002,kg -7e5f2b86-d2f8-32b9-adaa-094fb46a4781,SESCO,II.1.1,Chubut,AR-U,annual,2014,gas oil combustion consumption by freight transport,0.5250042,TJ,N2O,3.9,kg/TJ,2.0475163800000002,kg -f6d767ca-e6bd-36a0-a28c-f47d8b179d29,SESCO,II.5.1,Buenos Aires,AR-B,annual,2014,gas oil combustion consumption by agriculture machines,460.87538305199996,TJ,CO2,74100.0,kg/TJ,34150865.884153195,kg -42bc125f-1c39-3d6b-8547-e5b8bbe2abe8,SESCO,II.5.1,Buenos Aires,AR-B,annual,2014,gas oil combustion consumption by agriculture machines,460.87538305199996,TJ,CH4,3.9,kg/TJ,1797.4139939027998,kg -42bc125f-1c39-3d6b-8547-e5b8bbe2abe8,SESCO,II.5.1,Buenos Aires,AR-B,annual,2014,gas oil combustion consumption by agriculture machines,460.87538305199996,TJ,N2O,3.9,kg/TJ,1797.4139939027998,kg -9376a1d4-744c-3c9a-96a6-16d3f4f75b4b,SESCO,II.5.1,Córdoba,AR-X,annual,2014,gas oil combustion consumption by agriculture machines,586.015579212,TJ,CO2,74100.0,kg/TJ,43423754.419609204,kg -08ff8213-0e51-3d7f-ab73-e7998d1881cb,SESCO,II.5.1,Córdoba,AR-X,annual,2014,gas oil combustion consumption by agriculture machines,586.015579212,TJ,CH4,3.9,kg/TJ,2285.4607589268003,kg -08ff8213-0e51-3d7f-ab73-e7998d1881cb,SESCO,II.5.1,Córdoba,AR-X,annual,2014,gas oil combustion consumption by agriculture machines,586.015579212,TJ,N2O,3.9,kg/TJ,2285.4607589268003,kg -5f5addb3-a442-3dd5-9937-1e59842bf707,SESCO,II.5.1,Entre Rios,AR-E,annual,2014,gas oil combustion consumption by agriculture machines,450.445053996,TJ,CO2,74100.0,kg/TJ,33377978.501103602,kg -646d08fc-7481-311a-9a35-1b7bd883ddd0,SESCO,II.5.1,Entre Rios,AR-E,annual,2014,gas oil combustion consumption by agriculture machines,450.445053996,TJ,CH4,3.9,kg/TJ,1756.7357105844,kg -646d08fc-7481-311a-9a35-1b7bd883ddd0,SESCO,II.5.1,Entre Rios,AR-E,annual,2014,gas oil combustion consumption by agriculture machines,450.445053996,TJ,N2O,3.9,kg/TJ,1756.7357105844,kg -a8696264-38ac-321f-a300-bae931111fec,SESCO,II.5.1,Santa Fe,AR-S,annual,2014,gas oil combustion consumption by agriculture machines,855.709229004,TJ,CO2,74100.0,kg/TJ,63408053.8691964,kg -a3b1dfc6-5250-3b73-9c99-27dd72864687,SESCO,II.5.1,Santa Fe,AR-S,annual,2014,gas oil combustion consumption by agriculture machines,855.709229004,TJ,CH4,3.9,kg/TJ,3337.2659931156,kg -a3b1dfc6-5250-3b73-9c99-27dd72864687,SESCO,II.5.1,Santa Fe,AR-S,annual,2014,gas oil combustion consumption by agriculture machines,855.709229004,TJ,N2O,3.9,kg/TJ,3337.2659931156,kg -bdcafa16-225f-317d-adb3-34b2e594c95e,SESCO,II.5.1,Santiago del Estero,AR-G,annual,2014,gas oil combustion consumption by agriculture machines,103.84646286,TJ,CO2,74100.0,kg/TJ,7695022.897926,kg -4539cb9f-5299-380e-92ce-fbff39e446f4,SESCO,II.5.1,Santiago del Estero,AR-G,annual,2014,gas oil combustion consumption by agriculture machines,103.84646286,TJ,CH4,3.9,kg/TJ,405.001205154,kg -4539cb9f-5299-380e-92ce-fbff39e446f4,SESCO,II.5.1,Santiago del Estero,AR-G,annual,2014,gas oil combustion consumption by agriculture machines,103.84646286,TJ,N2O,3.9,kg/TJ,405.001205154,kg -b1c8a8e5-faa7-35ed-9c30-01655fef626c,SESCO,II.1.1,Buenos Aires,AR-B,annual,2014,gas oil combustion consumption by to the public,3285.899747256,TJ,CO2,74100.0,kg/TJ,243485171.2716696,kg -7bd841fd-6c8f-3ad5-9e0d-859c628f785f,SESCO,II.1.1,Buenos Aires,AR-B,annual,2014,gas oil combustion consumption by to the public,3285.899747256,TJ,CH4,3.9,kg/TJ,12815.009014298399,kg -7bd841fd-6c8f-3ad5-9e0d-859c628f785f,SESCO,II.1.1,Buenos Aires,AR-B,annual,2014,gas oil combustion consumption by to the public,3285.899747256,TJ,N2O,3.9,kg/TJ,12815.009014298399,kg -0552831a-f2cc-3078-94df-4320a5177e8f,SESCO,II.1.1,Capital Federal,AR-C,annual,2014,gas oil combustion consumption by to the public,341.297966688,TJ,CO2,74100.0,kg/TJ,25290179.3315808,kg -ae184c9c-c9d8-3a8e-bef5-fec27ada8acb,SESCO,II.1.1,Capital Federal,AR-C,annual,2014,gas oil combustion consumption by to the public,341.297966688,TJ,CH4,3.9,kg/TJ,1331.0620700831998,kg -ae184c9c-c9d8-3a8e-bef5-fec27ada8acb,SESCO,II.1.1,Capital Federal,AR-C,annual,2014,gas oil combustion consumption by to the public,341.297966688,TJ,N2O,3.9,kg/TJ,1331.0620700831998,kg -fda77481-8816-3042-baac-3ace321223d9,SESCO,II.1.1,Catamarca,AR-K,annual,2014,gas oil combustion consumption by to the public,119.999251008,TJ,CO2,74100.0,kg/TJ,8891944.4996928,kg -fe1b1072-f891-36db-9402-4ff023fc8b55,SESCO,II.1.1,Catamarca,AR-K,annual,2014,gas oil combustion consumption by to the public,119.999251008,TJ,CH4,3.9,kg/TJ,467.9970789312,kg -fe1b1072-f891-36db-9402-4ff023fc8b55,SESCO,II.1.1,Catamarca,AR-K,annual,2014,gas oil combustion consumption by to the public,119.999251008,TJ,N2O,3.9,kg/TJ,467.9970789312,kg -d09a1efe-f8ac-3bff-9f0a-583d1c880e17,SESCO,II.1.1,Chaco,AR-H,annual,2014,gas oil combustion consumption by to the public,620.989697496,TJ,CO2,74100.0,kg/TJ,46015336.5844536,kg -a7f149d7-2265-39eb-a6ba-00d6186ecf4c,SESCO,II.1.1,Chaco,AR-H,annual,2014,gas oil combustion consumption by to the public,620.989697496,TJ,CH4,3.9,kg/TJ,2421.8598202343996,kg -a7f149d7-2265-39eb-a6ba-00d6186ecf4c,SESCO,II.1.1,Chaco,AR-H,annual,2014,gas oil combustion consumption by to the public,620.989697496,TJ,N2O,3.9,kg/TJ,2421.8598202343996,kg -f483f727-b63a-3fdb-aa7b-8e3817561b8d,SESCO,II.1.1,Corrientes,AR-W,annual,2014,gas oil combustion consumption by to the public,639.579195024,TJ,CO2,74100.0,kg/TJ,47392818.3512784,kg -1c4253ff-6cbe-3579-b061-4924b12c1182,SESCO,II.1.1,Corrientes,AR-W,annual,2014,gas oil combustion consumption by to the public,639.579195024,TJ,CH4,3.9,kg/TJ,2494.3588605935997,kg -1c4253ff-6cbe-3579-b061-4924b12c1182,SESCO,II.1.1,Corrientes,AR-W,annual,2014,gas oil combustion consumption by to the public,639.579195024,TJ,N2O,3.9,kg/TJ,2494.3588605935997,kg -6d1a0e69-33c5-3486-b74f-e9ba1724865a,SESCO,II.1.1,Córdoba,AR-X,annual,2014,gas oil combustion consumption by to the public,2102.9482161240003,TJ,CO2,74100.0,kg/TJ,155828462.81478843,kg -a4f16639-87e9-3173-b052-52de270a9b4e,SESCO,II.1.1,Córdoba,AR-X,annual,2014,gas oil combustion consumption by to the public,2102.9482161240003,TJ,CH4,3.9,kg/TJ,8201.4980428836,kg -a4f16639-87e9-3173-b052-52de270a9b4e,SESCO,II.1.1,Córdoba,AR-X,annual,2014,gas oil combustion consumption by to the public,2102.9482161240003,TJ,N2O,3.9,kg/TJ,8201.4980428836,kg -4235fe87-123d-3af9-9cd1-4fc9483d61d5,SESCO,II.1.1,Entre Rios,AR-E,annual,2014,gas oil combustion consumption by to the public,1177.979540892,TJ,CO2,74100.0,kg/TJ,87288283.98009719,kg -083a91f0-19e3-32ae-89f6-55c4b9316ec8,SESCO,II.1.1,Entre Rios,AR-E,annual,2014,gas oil combustion consumption by to the public,1177.979540892,TJ,CH4,3.9,kg/TJ,4594.1202094788,kg -083a91f0-19e3-32ae-89f6-55c4b9316ec8,SESCO,II.1.1,Entre Rios,AR-E,annual,2014,gas oil combustion consumption by to the public,1177.979540892,TJ,N2O,3.9,kg/TJ,4594.1202094788,kg -668e8807-5972-37bd-b39b-6d416fec6e08,SESCO,II.1.1,Jujuy,AR-Y,annual,2014,gas oil combustion consumption by to the public,58.908552275999995,TJ,CO2,74100.0,kg/TJ,4365123.723651599,kg -b0b251c7-bd57-3df0-886c-f4c9c80a003a,SESCO,II.1.1,Jujuy,AR-Y,annual,2014,gas oil combustion consumption by to the public,58.908552275999995,TJ,CH4,3.9,kg/TJ,229.74335387639996,kg -b0b251c7-bd57-3df0-886c-f4c9c80a003a,SESCO,II.1.1,Jujuy,AR-Y,annual,2014,gas oil combustion consumption by to the public,58.908552275999995,TJ,N2O,3.9,kg/TJ,229.74335387639996,kg -6287a0f6-f6a0-3904-8d1f-6f821feaad4a,SESCO,II.1.1,La Pampa,AR-L,annual,2014,gas oil combustion consumption by to the public,102.31901668799999,TJ,CO2,74100.0,kg/TJ,7581839.1365808,kg -40ac8e73-6e19-3d68-9e55-72b17a8e4e12,SESCO,II.1.1,La Pampa,AR-L,annual,2014,gas oil combustion consumption by to the public,102.31901668799999,TJ,CH4,3.9,kg/TJ,399.04416508319997,kg -40ac8e73-6e19-3d68-9e55-72b17a8e4e12,SESCO,II.1.1,La Pampa,AR-L,annual,2014,gas oil combustion consumption by to the public,102.31901668799999,TJ,N2O,3.9,kg/TJ,399.04416508319997,kg -03902af0-04f0-32d1-a4bc-a65710d828e4,SESCO,II.1.1,La Rioja,AR-F,annual,2014,gas oil combustion consumption by to the public,60.246545436000005,TJ,CO2,74100.0,kg/TJ,4464269.0168076,kg -12294c26-31f5-32de-9cb9-a331529dd1c8,SESCO,II.1.1,La Rioja,AR-F,annual,2014,gas oil combustion consumption by to the public,60.246545436000005,TJ,CH4,3.9,kg/TJ,234.9615272004,kg -12294c26-31f5-32de-9cb9-a331529dd1c8,SESCO,II.1.1,La Rioja,AR-F,annual,2014,gas oil combustion consumption by to the public,60.246545436000005,TJ,N2O,3.9,kg/TJ,234.9615272004,kg -8c52ee86-6f26-3a30-b660-7459885a7708,SESCO,II.1.1,Mendoza,AR-M,annual,2014,gas oil combustion consumption by to the public,509.954281872,TJ,CO2,74100.0,kg/TJ,37787612.2867152,kg -c26ffe27-2d08-3fe7-9ed2-b0ae18a97a0f,SESCO,II.1.1,Mendoza,AR-M,annual,2014,gas oil combustion consumption by to the public,509.954281872,TJ,CH4,3.9,kg/TJ,1988.8216993008,kg -c26ffe27-2d08-3fe7-9ed2-b0ae18a97a0f,SESCO,II.1.1,Mendoza,AR-M,annual,2014,gas oil combustion consumption by to the public,509.954281872,TJ,N2O,3.9,kg/TJ,1988.8216993008,kg -3fa9b14b-fab5-3fc5-8e9a-47b6cc2ebb2c,SESCO,II.1.1,Misiones,AR-N,annual,2014,gas oil combustion consumption by to the public,301.731504648,TJ,CO2,74100.0,kg/TJ,22358304.4944168,kg -547cfde5-803b-37af-8b08-fccfec0d7bbd,SESCO,II.1.1,Misiones,AR-N,annual,2014,gas oil combustion consumption by to the public,301.731504648,TJ,CH4,3.9,kg/TJ,1176.7528681272,kg -547cfde5-803b-37af-8b08-fccfec0d7bbd,SESCO,II.1.1,Misiones,AR-N,annual,2014,gas oil combustion consumption by to the public,301.731504648,TJ,N2O,3.9,kg/TJ,1176.7528681272,kg -679ce480-42f1-3ed9-88b1-58623985d48c,SESCO,II.1.1,Salta,AR-A,annual,2014,gas oil combustion consumption by to the public,5.646365088,TJ,CO2,74100.0,kg/TJ,418395.6530208,kg -2d08c348-5ca8-3007-b07d-dd406f62f6c4,SESCO,II.1.1,Salta,AR-A,annual,2014,gas oil combustion consumption by to the public,5.646365088,TJ,CH4,3.9,kg/TJ,22.0208238432,kg -2d08c348-5ca8-3007-b07d-dd406f62f6c4,SESCO,II.1.1,Salta,AR-A,annual,2014,gas oil combustion consumption by to the public,5.646365088,TJ,N2O,3.9,kg/TJ,22.0208238432,kg -552c4f47-cfd3-39cb-985e-ef7a547ce8d5,SESCO,II.1.1,San Juan,AR-J,annual,2014,gas oil combustion consumption by to the public,384.56837941199996,TJ,CO2,74100.0,kg/TJ,28496516.914429195,kg -d0b7dc05-66cb-3887-93da-581189bee47b,SESCO,II.1.1,San Juan,AR-J,annual,2014,gas oil combustion consumption by to the public,384.56837941199996,TJ,CH4,3.9,kg/TJ,1499.8166797067997,kg -d0b7dc05-66cb-3887-93da-581189bee47b,SESCO,II.1.1,San Juan,AR-J,annual,2014,gas oil combustion consumption by to the public,384.56837941199996,TJ,N2O,3.9,kg/TJ,1499.8166797067997,kg -2b25543a-849d-3ee2-8e41-b9758e5d86f8,SESCO,II.1.1,San Luis,AR-D,annual,2014,gas oil combustion consumption by to the public,205.87494471600002,TJ,CO2,74100.0,kg/TJ,15255333.403455602,kg -f0f3a030-e03d-31d0-adf1-be150fceaa16,SESCO,II.1.1,San Luis,AR-D,annual,2014,gas oil combustion consumption by to the public,205.87494471600002,TJ,CH4,3.9,kg/TJ,802.9122843924,kg -f0f3a030-e03d-31d0-adf1-be150fceaa16,SESCO,II.1.1,San Luis,AR-D,annual,2014,gas oil combustion consumption by to the public,205.87494471600002,TJ,N2O,3.9,kg/TJ,802.9122843924,kg -b60f29ca-7ea7-3dc7-91f0-9231bdb6ffcd,SESCO,II.1.1,Santa Fe,AR-S,annual,2014,gas oil combustion consumption by to the public,3665.270198604,TJ,CO2,74100.0,kg/TJ,271596521.71655643,kg -7a0ababe-c336-3449-a3bb-ee5ccbab9dd8,SESCO,II.1.1,Santa Fe,AR-S,annual,2014,gas oil combustion consumption by to the public,3665.270198604,TJ,CH4,3.9,kg/TJ,14294.5537745556,kg -7a0ababe-c336-3449-a3bb-ee5ccbab9dd8,SESCO,II.1.1,Santa Fe,AR-S,annual,2014,gas oil combustion consumption by to the public,3665.270198604,TJ,N2O,3.9,kg/TJ,14294.5537745556,kg -8201a742-7ff2-3813-b577-5320dfacdf63,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2014,gas oil combustion consumption by to the public,165.80931149999998,TJ,CO2,74100.0,kg/TJ,12286469.982149998,kg -4797b4ff-8393-328f-9366-9b25e2c80764,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2014,gas oil combustion consumption by to the public,165.80931149999998,TJ,CH4,3.9,kg/TJ,646.65631485,kg -4797b4ff-8393-328f-9366-9b25e2c80764,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2014,gas oil combustion consumption by to the public,165.80931149999998,TJ,N2O,3.9,kg/TJ,646.65631485,kg -a6d6e915-ae59-3db4-88ac-71a67e35a810,SESCO,II.1.1,Tucuman,AR-T,annual,2014,gas oil combustion consumption by to the public,523.098812208,TJ,CO2,74100.0,kg/TJ,38761621.9846128,kg -12cc111f-0a70-3f3d-ada0-815891e195bc,SESCO,II.1.1,Tucuman,AR-T,annual,2014,gas oil combustion consumption by to the public,523.098812208,TJ,CH4,3.9,kg/TJ,2040.0853676112001,kg -12cc111f-0a70-3f3d-ada0-815891e195bc,SESCO,II.1.1,Tucuman,AR-T,annual,2014,gas oil combustion consumption by to the public,523.098812208,TJ,N2O,3.9,kg/TJ,2040.0853676112001,kg -d6ca6543-6dcd-39bf-8ee2-a5f920a5d187,SESCO,II.1.1,Buenos Aires,AR-B,annual,2014,gas oil combustion consumption by to the public,155.581243608,TJ,CO2,74100.0,kg/TJ,11528570.1513528,kg -e85516b4-0d32-38df-85e2-241dbd962a64,SESCO,II.1.1,Buenos Aires,AR-B,annual,2014,gas oil combustion consumption by to the public,155.581243608,TJ,CH4,3.9,kg/TJ,606.7668500712,kg -e85516b4-0d32-38df-85e2-241dbd962a64,SESCO,II.1.1,Buenos Aires,AR-B,annual,2014,gas oil combustion consumption by to the public,155.581243608,TJ,N2O,3.9,kg/TJ,606.7668500712,kg -9bc14a87-4f44-392c-8e3c-5baf0569cde8,SESCO,II.1.1,Capital Federal,AR-C,annual,2014,gas oil combustion consumption by to the public,7.169274588,TJ,CO2,74100.0,kg/TJ,531243.2469708,kg -ad01f020-dde4-3380-86c3-8d46445015d1,SESCO,II.1.1,Capital Federal,AR-C,annual,2014,gas oil combustion consumption by to the public,7.169274588,TJ,CH4,3.9,kg/TJ,27.9601708932,kg -ad01f020-dde4-3380-86c3-8d46445015d1,SESCO,II.1.1,Capital Federal,AR-C,annual,2014,gas oil combustion consumption by to the public,7.169274588,TJ,N2O,3.9,kg/TJ,27.9601708932,kg -39dbae5c-9921-3f19-acb1-26ab40676b51,SESCO,II.1.1,Catamarca,AR-K,annual,2014,gas oil combustion consumption by to the public,3.841358388,TJ,CO2,74100.0,kg/TJ,284644.6565508,kg -f6ee7420-46c6-3808-b0ea-4be8b9b9be97,SESCO,II.1.1,Catamarca,AR-K,annual,2014,gas oil combustion consumption by to the public,3.841358388,TJ,CH4,3.9,kg/TJ,14.9812977132,kg -f6ee7420-46c6-3808-b0ea-4be8b9b9be97,SESCO,II.1.1,Catamarca,AR-K,annual,2014,gas oil combustion consumption by to the public,3.841358388,TJ,N2O,3.9,kg/TJ,14.9812977132,kg -5bf8d649-2525-3bad-bfeb-42303194ccb2,SESCO,II.1.1,Chaco,AR-H,annual,2014,gas oil combustion consumption by to the public,1.9334783159999998,TJ,CO2,74100.0,kg/TJ,143270.74321559997,kg -5d732c8d-ac84-389d-89ce-aa0f0d4dc52e,SESCO,II.1.1,Chaco,AR-H,annual,2014,gas oil combustion consumption by to the public,1.9334783159999998,TJ,CH4,3.9,kg/TJ,7.540565432399998,kg -5d732c8d-ac84-389d-89ce-aa0f0d4dc52e,SESCO,II.1.1,Chaco,AR-H,annual,2014,gas oil combustion consumption by to the public,1.9334783159999998,TJ,N2O,3.9,kg/TJ,7.540565432399998,kg -ea266c93-74ee-3c71-bb0e-60eee4f42005,SESCO,II.1.1,Corrientes,AR-W,annual,2014,gas oil combustion consumption by to the public,19.300913436,TJ,CO2,74100.0,kg/TJ,1430197.6856075998,kg -144a9b86-d246-3aa1-9225-774b9166f0d9,SESCO,II.1.1,Corrientes,AR-W,annual,2014,gas oil combustion consumption by to the public,19.300913436,TJ,CH4,3.9,kg/TJ,75.2735624004,kg -144a9b86-d246-3aa1-9225-774b9166f0d9,SESCO,II.1.1,Corrientes,AR-W,annual,2014,gas oil combustion consumption by to the public,19.300913436,TJ,N2O,3.9,kg/TJ,75.2735624004,kg -84ccce1a-dca9-34c1-a694-dd3e936c3089,SESCO,II.1.1,Córdoba,AR-X,annual,2014,gas oil combustion consumption by to the public,75.69227374799999,TJ,CO2,74100.0,kg/TJ,5608797.4847268,kg -8f6a8311-f4d1-3e4f-ac69-4d53e56c7c98,SESCO,II.1.1,Córdoba,AR-X,annual,2014,gas oil combustion consumption by to the public,75.69227374799999,TJ,CH4,3.9,kg/TJ,295.19986761719997,kg -8f6a8311-f4d1-3e4f-ac69-4d53e56c7c98,SESCO,II.1.1,Córdoba,AR-X,annual,2014,gas oil combustion consumption by to the public,75.69227374799999,TJ,N2O,3.9,kg/TJ,295.19986761719997,kg -cc8b4fcf-aa47-34fb-8b2d-f369c6587db0,SESCO,II.1.1,Entre Rios,AR-E,annual,2014,gas oil combustion consumption by to the public,69.014986068,TJ,CO2,74100.0,kg/TJ,5114010.4676388,kg -ff865edc-73b3-3426-97a9-312f984dc84b,SESCO,II.1.1,Entre Rios,AR-E,annual,2014,gas oil combustion consumption by to the public,69.014986068,TJ,CH4,3.9,kg/TJ,269.15844566519996,kg -ff865edc-73b3-3426-97a9-312f984dc84b,SESCO,II.1.1,Entre Rios,AR-E,annual,2014,gas oil combustion consumption by to the public,69.014986068,TJ,N2O,3.9,kg/TJ,269.15844566519996,kg -73a5e5ab-0be5-3109-ad9b-a127f95f4b6c,SESCO,II.1.1,Mendoza,AR-M,annual,2014,gas oil combustion consumption by to the public,28.890892632,TJ,CO2,74100.0,kg/TJ,2140815.1440312,kg -1013ffaa-ff0c-3759-815f-9011d7692691,SESCO,II.1.1,Mendoza,AR-M,annual,2014,gas oil combustion consumption by to the public,28.890892632,TJ,CH4,3.9,kg/TJ,112.6744812648,kg -1013ffaa-ff0c-3759-815f-9011d7692691,SESCO,II.1.1,Mendoza,AR-M,annual,2014,gas oil combustion consumption by to the public,28.890892632,TJ,N2O,3.9,kg/TJ,112.6744812648,kg -319610aa-acf5-3fff-900a-12de157b7191,SESCO,II.1.1,Misiones,AR-N,annual,2014,gas oil combustion consumption by to the public,23.066604036,TJ,CO2,74100.0,kg/TJ,1709235.3590676,kg -af48267f-26e5-38f6-9222-776cc3721f83,SESCO,II.1.1,Misiones,AR-N,annual,2014,gas oil combustion consumption by to the public,23.066604036,TJ,CH4,3.9,kg/TJ,89.9597557404,kg -af48267f-26e5-38f6-9222-776cc3721f83,SESCO,II.1.1,Misiones,AR-N,annual,2014,gas oil combustion consumption by to the public,23.066604036,TJ,N2O,3.9,kg/TJ,89.9597557404,kg -a723595f-7650-37a5-b1cb-c86121c123b4,SESCO,II.1.1,Salta,AR-A,annual,2014,gas oil combustion consumption by to the public,2.145289608,TJ,CO2,74100.0,kg/TJ,158965.9599528,kg -d27f3040-3809-31c1-9cf7-bd06ae83b901,SESCO,II.1.1,Salta,AR-A,annual,2014,gas oil combustion consumption by to the public,2.145289608,TJ,CH4,3.9,kg/TJ,8.3666294712,kg -d27f3040-3809-31c1-9cf7-bd06ae83b901,SESCO,II.1.1,Salta,AR-A,annual,2014,gas oil combustion consumption by to the public,2.145289608,TJ,N2O,3.9,kg/TJ,8.3666294712,kg -b0d0720d-7297-360c-b5a5-04c35b670392,SESCO,II.1.1,San Luis,AR-D,annual,2014,gas oil combustion consumption by to the public,26.928742259999996,TJ,CO2,74100.0,kg/TJ,1995419.8014659998,kg -d21ad90b-e6ae-3dc1-8ffc-0a99b20b4c4e,SESCO,II.1.1,San Luis,AR-D,annual,2014,gas oil combustion consumption by to the public,26.928742259999996,TJ,CH4,3.9,kg/TJ,105.02209481399998,kg -d21ad90b-e6ae-3dc1-8ffc-0a99b20b4c4e,SESCO,II.1.1,San Luis,AR-D,annual,2014,gas oil combustion consumption by to the public,26.928742259999996,TJ,N2O,3.9,kg/TJ,105.02209481399998,kg -2c6ad564-2ec0-33bf-bcff-a89c60b0136b,SESCO,II.1.1,Santa Fe,AR-S,annual,2014,gas oil combustion consumption by to the public,169.673418264,TJ,CO2,74100.0,kg/TJ,12572800.2933624,kg -8617cc40-6355-30b8-8479-bab417c7aa40,SESCO,II.1.1,Santa Fe,AR-S,annual,2014,gas oil combustion consumption by to the public,169.673418264,TJ,CH4,3.9,kg/TJ,661.7263312296,kg -8617cc40-6355-30b8-8479-bab417c7aa40,SESCO,II.1.1,Santa Fe,AR-S,annual,2014,gas oil combustion consumption by to the public,169.673418264,TJ,N2O,3.9,kg/TJ,661.7263312296,kg -284689d1-2c43-31e3-a25d-a5f7e6e511c9,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2014,gas oil combustion consumption by to the public,9.909355847999999,TJ,CO2,74100.0,kg/TJ,734283.2683367999,kg -994d437b-e343-3c4d-b618-785b65ff6888,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2014,gas oil combustion consumption by to the public,9.909355847999999,TJ,CH4,3.9,kg/TJ,38.646487807199996,kg -994d437b-e343-3c4d-b618-785b65ff6888,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2014,gas oil combustion consumption by to the public,9.909355847999999,TJ,N2O,3.9,kg/TJ,38.646487807199996,kg -de359937-e424-3f2b-8aa5-0e3a1e5bede0,SESCO,II.1.1,Tucuman,AR-T,annual,2014,gas oil combustion consumption by to the public,16.042470444,TJ,CO2,74100.0,kg/TJ,1188747.0599004,kg -93e97b81-850a-349f-8150-dc5cf43801a6,SESCO,II.1.1,Tucuman,AR-T,annual,2014,gas oil combustion consumption by to the public,16.042470444,TJ,CH4,3.9,kg/TJ,62.56563473159999,kg -93e97b81-850a-349f-8150-dc5cf43801a6,SESCO,II.1.1,Tucuman,AR-T,annual,2014,gas oil combustion consumption by to the public,16.042470444,TJ,N2O,3.9,kg/TJ,62.56563473159999,kg -571d7593-85ac-381f-819b-25086693d6c5,SESCO,II.1.1,Buenos Aires,AR-B,annual,2014,gas oil combustion consumption by public passenger transport,405.69825072,TJ,CO2,74100.0,kg/TJ,30062240.378351998,kg -89f975d7-6e1d-3d67-ab01-c2f1aedf628e,SESCO,II.1.1,Buenos Aires,AR-B,annual,2014,gas oil combustion consumption by public passenger transport,405.69825072,TJ,CH4,3.9,kg/TJ,1582.223177808,kg -89f975d7-6e1d-3d67-ab01-c2f1aedf628e,SESCO,II.1.1,Buenos Aires,AR-B,annual,2014,gas oil combustion consumption by public passenger transport,405.69825072,TJ,N2O,3.9,kg/TJ,1582.223177808,kg -af07c14b-2867-3bda-b673-b4be46ab22c6,SESCO,II.1.1,Chaco,AR-H,annual,2014,gas oil combustion consumption by public passenger transport,17.422016052,TJ,CO2,74100.0,kg/TJ,1290971.3894532,kg -4a08fc21-218e-3d96-aa0b-561872df87e6,SESCO,II.1.1,Chaco,AR-H,annual,2014,gas oil combustion consumption by public passenger transport,17.422016052,TJ,CH4,3.9,kg/TJ,67.9458626028,kg -4a08fc21-218e-3d96-aa0b-561872df87e6,SESCO,II.1.1,Chaco,AR-H,annual,2014,gas oil combustion consumption by public passenger transport,17.422016052,TJ,N2O,3.9,kg/TJ,67.9458626028,kg -02edd6e5-ec80-3c6d-91cf-0bf66bee2d22,SESCO,II.1.1,Corrientes,AR-W,annual,2014,gas oil combustion consumption by public passenger transport,34.726075019999996,TJ,CO2,74100.0,kg/TJ,2573202.158982,kg -28b5d4ab-f96e-33ff-a13b-4331dfbfe8bd,SESCO,II.1.1,Corrientes,AR-W,annual,2014,gas oil combustion consumption by public passenger transport,34.726075019999996,TJ,CH4,3.9,kg/TJ,135.43169257799997,kg -28b5d4ab-f96e-33ff-a13b-4331dfbfe8bd,SESCO,II.1.1,Corrientes,AR-W,annual,2014,gas oil combustion consumption by public passenger transport,34.726075019999996,TJ,N2O,3.9,kg/TJ,135.43169257799997,kg -a1a7a3e2-095a-39fa-a6e3-265c35718452,SESCO,II.1.1,Córdoba,AR-X,annual,2014,gas oil combustion consumption by public passenger transport,330.853453308,TJ,CO2,74100.0,kg/TJ,24516240.890122797,kg -40505df6-3b55-3ad0-bc89-d1679952a3fa,SESCO,II.1.1,Córdoba,AR-X,annual,2014,gas oil combustion consumption by public passenger transport,330.853453308,TJ,CH4,3.9,kg/TJ,1290.3284679012,kg -40505df6-3b55-3ad0-bc89-d1679952a3fa,SESCO,II.1.1,Córdoba,AR-X,annual,2014,gas oil combustion consumption by public passenger transport,330.853453308,TJ,N2O,3.9,kg/TJ,1290.3284679012,kg -9cebe517-a109-3d2f-a887-5985918b42d0,SESCO,II.1.1,Entre Rios,AR-E,annual,2014,gas oil combustion consumption by public passenger transport,95.658987144,TJ,CO2,74100.0,kg/TJ,7088330.9473704,kg -6d226c6b-8dbf-3ee1-87df-24415dae7846,SESCO,II.1.1,Entre Rios,AR-E,annual,2014,gas oil combustion consumption by public passenger transport,95.658987144,TJ,CH4,3.9,kg/TJ,373.07004986159995,kg -6d226c6b-8dbf-3ee1-87df-24415dae7846,SESCO,II.1.1,Entre Rios,AR-E,annual,2014,gas oil combustion consumption by public passenger transport,95.658987144,TJ,N2O,3.9,kg/TJ,373.07004986159995,kg -1f5d8224-687b-3419-a58d-cf62153d9a4d,SESCO,II.1.1,Jujuy,AR-Y,annual,2014,gas oil combustion consumption by public passenger transport,107.9331519,TJ,CO2,74100.0,kg/TJ,7997846.55579,kg -2f569486-4076-3b2a-bae6-9bf94529c183,SESCO,II.1.1,Jujuy,AR-Y,annual,2014,gas oil combustion consumption by public passenger transport,107.9331519,TJ,CH4,3.9,kg/TJ,420.93929241,kg -2f569486-4076-3b2a-bae6-9bf94529c183,SESCO,II.1.1,Jujuy,AR-Y,annual,2014,gas oil combustion consumption by public passenger transport,107.9331519,TJ,N2O,3.9,kg/TJ,420.93929241,kg -0a5598e0-7ccc-37bf-83d1-336a32aad16b,SESCO,II.1.1,Misiones,AR-N,annual,2014,gas oil combustion consumption by public passenger transport,14.307738816,TJ,CO2,74100.0,kg/TJ,1060203.4462656,kg -1b5e076c-6ea6-394b-b8aa-9c5fe65d7d4c,SESCO,II.1.1,Misiones,AR-N,annual,2014,gas oil combustion consumption by public passenger transport,14.307738816,TJ,CH4,3.9,kg/TJ,55.8001813824,kg -1b5e076c-6ea6-394b-b8aa-9c5fe65d7d4c,SESCO,II.1.1,Misiones,AR-N,annual,2014,gas oil combustion consumption by public passenger transport,14.307738816,TJ,N2O,3.9,kg/TJ,55.8001813824,kg -7df731d0-9cc2-38a8-90e3-e9301767c709,SESCO,II.1.1,Salta,AR-A,annual,2014,gas oil combustion consumption by public passenger transport,90.417527256,TJ,CO2,74100.0,kg/TJ,6699938.7696696,kg -e8a10ca7-add2-3b93-99d9-110774b9217f,SESCO,II.1.1,Salta,AR-A,annual,2014,gas oil combustion consumption by public passenger transport,90.417527256,TJ,CH4,3.9,kg/TJ,352.6283562984,kg -e8a10ca7-add2-3b93-99d9-110774b9217f,SESCO,II.1.1,Salta,AR-A,annual,2014,gas oil combustion consumption by public passenger transport,90.417527256,TJ,N2O,3.9,kg/TJ,352.6283562984,kg -f64fb68d-9496-369e-8b81-c021527566b3,SESCO,II.1.1,Santa Fe,AR-S,annual,2014,gas oil combustion consumption by public passenger transport,287.146714596,TJ,CO2,74100.0,kg/TJ,21277571.5515636,kg -5d36c83c-cfdc-3abe-aa93-9fb300df602a,SESCO,II.1.1,Santa Fe,AR-S,annual,2014,gas oil combustion consumption by public passenger transport,287.146714596,TJ,CH4,3.9,kg/TJ,1119.8721869244,kg -5d36c83c-cfdc-3abe-aa93-9fb300df602a,SESCO,II.1.1,Santa Fe,AR-S,annual,2014,gas oil combustion consumption by public passenger transport,287.146714596,TJ,N2O,3.9,kg/TJ,1119.8721869244,kg -59fbc363-b99e-3d03-a07b-2188eba473d5,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2014,gas oil combustion consumption by public passenger transport,119.468695164,TJ,CO2,74100.0,kg/TJ,8852630.3116524,kg -c5c5a21e-00d1-33b3-975d-aa817be45d07,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2014,gas oil combustion consumption by public passenger transport,119.468695164,TJ,CH4,3.9,kg/TJ,465.9279111396,kg -c5c5a21e-00d1-33b3-975d-aa817be45d07,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2014,gas oil combustion consumption by public passenger transport,119.468695164,TJ,N2O,3.9,kg/TJ,465.9279111396,kg -729d157a-1843-3797-82ab-13b33774a551,SESCO,II.1.1,Tucuman,AR-T,annual,2014,gas oil combustion consumption by public passenger transport,30.958293072,TJ,CO2,74100.0,kg/TJ,2294009.5166352,kg -de34cd09-e4cb-3576-bd95-06598db5a442,SESCO,II.1.1,Tucuman,AR-T,annual,2014,gas oil combustion consumption by public passenger transport,30.958293072,TJ,CH4,3.9,kg/TJ,120.7373429808,kg -de34cd09-e4cb-3576-bd95-06598db5a442,SESCO,II.1.1,Tucuman,AR-T,annual,2014,gas oil combustion consumption by public passenger transport,30.958293072,TJ,N2O,3.9,kg/TJ,120.7373429808,kg -0a4775d8-bb23-3cb1-aac4-b0c74bcc315b,SESCO,II.5.1,Buenos Aires,AR-B,annual,2014,gas oil combustion consumption by agriculture machines,405.36406847999996,TJ,CO2,74100.0,kg/TJ,30037477.474368,kg -bdb7a4bb-bd90-303e-8337-cd879e698827,SESCO,II.5.1,Buenos Aires,AR-B,annual,2014,gas oil combustion consumption by agriculture machines,405.36406847999996,TJ,CH4,3.9,kg/TJ,1580.9198670719998,kg -bdb7a4bb-bd90-303e-8337-cd879e698827,SESCO,II.5.1,Buenos Aires,AR-B,annual,2014,gas oil combustion consumption by agriculture machines,405.36406847999996,TJ,N2O,3.9,kg/TJ,1580.9198670719998,kg -73cdbf0d-0c10-32a9-bfda-20df2ac5e99b,SESCO,II.5.1,Córdoba,AR-X,annual,2014,gas oil combustion consumption by agriculture machines,64.75254072,TJ,CO2,74100.0,kg/TJ,4798163.267352,kg -415937c7-7f48-37eb-9669-95e4372db936,SESCO,II.5.1,Córdoba,AR-X,annual,2014,gas oil combustion consumption by agriculture machines,64.75254072,TJ,CH4,3.9,kg/TJ,252.53490880799998,kg -415937c7-7f48-37eb-9669-95e4372db936,SESCO,II.5.1,Córdoba,AR-X,annual,2014,gas oil combustion consumption by agriculture machines,64.75254072,TJ,N2O,3.9,kg/TJ,252.53490880799998,kg -6a6cfde2-0a6a-38ca-8485-898150474852,SESCO,II.5.1,Neuquén,AR-Q,annual,2014,gas oil combustion consumption by agriculture machines,51.60207947999999,TJ,CO2,74100.0,kg/TJ,3823714.0894679995,kg -b22c5e63-71ba-3856-a51c-c2f8ab4ec27d,SESCO,II.5.1,Neuquén,AR-Q,annual,2014,gas oil combustion consumption by agriculture machines,51.60207947999999,TJ,CH4,3.9,kg/TJ,201.24810997199998,kg -b22c5e63-71ba-3856-a51c-c2f8ab4ec27d,SESCO,II.5.1,Neuquén,AR-Q,annual,2014,gas oil combustion consumption by agriculture machines,51.60207947999999,TJ,N2O,3.9,kg/TJ,201.24810997199998,kg -60bf848d-6ad1-3f80-9c19-61237c61189e,SESCO,II.5.1,Rio Negro,AR-R,annual,2014,gas oil combustion consumption by agriculture machines,5.4907818,TJ,CO2,74100.0,kg/TJ,406866.93137999997,kg -eadb8a95-7c44-35d2-b7c5-ce097f10f7f8,SESCO,II.5.1,Rio Negro,AR-R,annual,2014,gas oil combustion consumption by agriculture machines,5.4907818,TJ,CH4,3.9,kg/TJ,21.414049019999997,kg -eadb8a95-7c44-35d2-b7c5-ce097f10f7f8,SESCO,II.5.1,Rio Negro,AR-R,annual,2014,gas oil combustion consumption by agriculture machines,5.4907818,TJ,N2O,3.9,kg/TJ,21.414049019999997,kg -9e891157-f5bd-303d-996f-012afc5f1b22,SESCO,II.5.1,Santa Fe,AR-S,annual,2014,gas oil combustion consumption by agriculture machines,7.21692048,TJ,CO2,74100.0,kg/TJ,534773.8075679999,kg -24af5343-5e63-32c4-a71d-aa2d8dbdef1a,SESCO,II.5.1,Santa Fe,AR-S,annual,2014,gas oil combustion consumption by agriculture machines,7.21692048,TJ,CH4,3.9,kg/TJ,28.145989871999998,kg -24af5343-5e63-32c4-a71d-aa2d8dbdef1a,SESCO,II.5.1,Santa Fe,AR-S,annual,2014,gas oil combustion consumption by agriculture machines,7.21692048,TJ,N2O,3.9,kg/TJ,28.145989871999998,kg -3485fd94-4517-30c4-9f5f-3f0245ac136d,SESCO,II.1.1,Buenos Aires,AR-B,annual,2014,gas oil combustion consumption by to the public,8303.62033452,TJ,CO2,74100.0,kg/TJ,615298266.7879319,kg -50ed8a93-835b-3d95-881c-813eb3c45209,SESCO,II.1.1,Buenos Aires,AR-B,annual,2014,gas oil combustion consumption by to the public,8303.62033452,TJ,CH4,3.9,kg/TJ,32384.119304627995,kg -50ed8a93-835b-3d95-881c-813eb3c45209,SESCO,II.1.1,Buenos Aires,AR-B,annual,2014,gas oil combustion consumption by to the public,8303.62033452,TJ,N2O,3.9,kg/TJ,32384.119304627995,kg -ab85f7a7-bec1-3819-a6f2-85b41a27adc9,SESCO,II.1.1,Capital Federal,AR-C,annual,2014,gas oil combustion consumption by to the public,538.41349716,TJ,CO2,74100.0,kg/TJ,39896440.139556,kg -ee29934b-b9b9-31b8-bdd1-774a6f4f8de7,SESCO,II.1.1,Capital Federal,AR-C,annual,2014,gas oil combustion consumption by to the public,538.41349716,TJ,CH4,3.9,kg/TJ,2099.812638924,kg -ee29934b-b9b9-31b8-bdd1-774a6f4f8de7,SESCO,II.1.1,Capital Federal,AR-C,annual,2014,gas oil combustion consumption by to the public,538.41349716,TJ,N2O,3.9,kg/TJ,2099.812638924,kg -876d7e8c-d6e7-3637-adf6-a7c28c9578e5,SESCO,II.1.1,Chaco,AR-H,annual,2014,gas oil combustion consumption by to the public,7.28529564,TJ,CO2,74100.0,kg/TJ,539840.406924,kg -79f915fe-6d76-36f6-a7a2-314cf4f09470,SESCO,II.1.1,Chaco,AR-H,annual,2014,gas oil combustion consumption by to the public,7.28529564,TJ,CH4,3.9,kg/TJ,28.412652996,kg -79f915fe-6d76-36f6-a7a2-314cf4f09470,SESCO,II.1.1,Chaco,AR-H,annual,2014,gas oil combustion consumption by to the public,7.28529564,TJ,N2O,3.9,kg/TJ,28.412652996,kg -f7d0ec9d-26e9-3629-ae3b-2dc8256875d1,SESCO,II.1.1,Chubut,AR-U,annual,2014,gas oil combustion consumption by to the public,1639.3622221199998,TJ,CO2,74100.0,kg/TJ,121476740.659092,kg -c23e8a20-b164-3520-9fe1-37c859db922b,SESCO,II.1.1,Chubut,AR-U,annual,2014,gas oil combustion consumption by to the public,1639.3622221199998,TJ,CH4,3.9,kg/TJ,6393.5126662679995,kg -c23e8a20-b164-3520-9fe1-37c859db922b,SESCO,II.1.1,Chubut,AR-U,annual,2014,gas oil combustion consumption by to the public,1639.3622221199998,TJ,N2O,3.9,kg/TJ,6393.5126662679995,kg -4a68bc15-3554-36df-8a86-96b7c78a55b6,SESCO,II.1.1,Córdoba,AR-X,annual,2014,gas oil combustion consumption by to the public,498.4590702,TJ,CO2,74100.0,kg/TJ,36935817.10182,kg -d171b28e-b2dc-363d-8cdf-1cdb3230677f,SESCO,II.1.1,Córdoba,AR-X,annual,2014,gas oil combustion consumption by to the public,498.4590702,TJ,CH4,3.9,kg/TJ,1943.9903737799998,kg -d171b28e-b2dc-363d-8cdf-1cdb3230677f,SESCO,II.1.1,Córdoba,AR-X,annual,2014,gas oil combustion consumption by to the public,498.4590702,TJ,N2O,3.9,kg/TJ,1943.9903737799998,kg -a74d0fa7-88ac-3df0-bba6-c84aeb1848a0,SESCO,II.1.1,Entre Rios,AR-E,annual,2014,gas oil combustion consumption by to the public,439.42028004,TJ,CO2,74100.0,kg/TJ,32561042.750964,kg -8146f479-3ff5-3e52-9776-f2f569150e8e,SESCO,II.1.1,Entre Rios,AR-E,annual,2014,gas oil combustion consumption by to the public,439.42028004,TJ,CH4,3.9,kg/TJ,1713.739092156,kg -8146f479-3ff5-3e52-9776-f2f569150e8e,SESCO,II.1.1,Entre Rios,AR-E,annual,2014,gas oil combustion consumption by to the public,439.42028004,TJ,N2O,3.9,kg/TJ,1713.739092156,kg -82fff68a-2871-38a8-87c0-702c7bdbff03,SESCO,II.1.1,La Pampa,AR-L,annual,2014,gas oil combustion consumption by to the public,533.89560756,TJ,CO2,74100.0,kg/TJ,39561664.520196006,kg -b71890ea-2b18-3bea-ae37-fb46d6accf02,SESCO,II.1.1,La Pampa,AR-L,annual,2014,gas oil combustion consumption by to the public,533.89560756,TJ,CH4,3.9,kg/TJ,2082.192869484,kg -b71890ea-2b18-3bea-ae37-fb46d6accf02,SESCO,II.1.1,La Pampa,AR-L,annual,2014,gas oil combustion consumption by to the public,533.89560756,TJ,N2O,3.9,kg/TJ,2082.192869484,kg -22943470-21ca-303a-be80-a8afa95506d7,SESCO,II.1.1,Mendoza,AR-M,annual,2014,gas oil combustion consumption by to the public,64.69933596,TJ,CO2,74100.0,kg/TJ,4794220.794636,kg -177d8c1c-e64d-36e1-a824-ce0fcd7adaf1,SESCO,II.1.1,Mendoza,AR-M,annual,2014,gas oil combustion consumption by to the public,64.69933596,TJ,CH4,3.9,kg/TJ,252.327410244,kg -177d8c1c-e64d-36e1-a824-ce0fcd7adaf1,SESCO,II.1.1,Mendoza,AR-M,annual,2014,gas oil combustion consumption by to the public,64.69933596,TJ,N2O,3.9,kg/TJ,252.327410244,kg -f8e9f1dc-e661-3404-a43c-4f7707f303dc,SESCO,II.1.1,Neuquén,AR-Q,annual,2014,gas oil combustion consumption by to the public,993.83215596,TJ,CO2,74100.0,kg/TJ,73642962.75663601,kg -b2766237-59de-3d8b-abe6-d8ff4c0c34d8,SESCO,II.1.1,Neuquén,AR-Q,annual,2014,gas oil combustion consumption by to the public,993.83215596,TJ,CH4,3.9,kg/TJ,3875.945408244,kg -b2766237-59de-3d8b-abe6-d8ff4c0c34d8,SESCO,II.1.1,Neuquén,AR-Q,annual,2014,gas oil combustion consumption by to the public,993.83215596,TJ,N2O,3.9,kg/TJ,3875.945408244,kg -42d6144e-32ad-3625-aef6-c85df04391f5,SESCO,II.1.1,Rio Negro,AR-R,annual,2014,gas oil combustion consumption by to the public,2130.70738608,TJ,CO2,74100.0,kg/TJ,157885417.308528,kg -965286f9-25c7-33ae-9d22-102c38728fb1,SESCO,II.1.1,Rio Negro,AR-R,annual,2014,gas oil combustion consumption by to the public,2130.70738608,TJ,CH4,3.9,kg/TJ,8309.758805712001,kg -965286f9-25c7-33ae-9d22-102c38728fb1,SESCO,II.1.1,Rio Negro,AR-R,annual,2014,gas oil combustion consumption by to the public,2130.70738608,TJ,N2O,3.9,kg/TJ,8309.758805712001,kg -44a01822-fce3-3f99-8c82-47893ebb3379,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2014,gas oil combustion consumption by to the public,1420.11223284,TJ,CO2,74100.0,kg/TJ,105230316.45344399,kg -18f8b353-89bb-3658-8490-399aeb12b5fa,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2014,gas oil combustion consumption by to the public,1420.11223284,TJ,CH4,3.9,kg/TJ,5538.437708076,kg -18f8b353-89bb-3658-8490-399aeb12b5fa,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2014,gas oil combustion consumption by to the public,1420.11223284,TJ,N2O,3.9,kg/TJ,5538.437708076,kg -fea43ca4-6a3d-3239-9e78-8006368fca12,SESCO,II.1.1,Santa Fe,AR-S,annual,2014,gas oil combustion consumption by to the public,481.46211791999997,TJ,CO2,74100.0,kg/TJ,35676342.937872,kg -74e8eaec-233f-3ea9-9d0d-e9ca4a8e7d7b,SESCO,II.1.1,Santa Fe,AR-S,annual,2014,gas oil combustion consumption by to the public,481.46211791999997,TJ,CH4,3.9,kg/TJ,1877.7022598879998,kg -74e8eaec-233f-3ea9-9d0d-e9ca4a8e7d7b,SESCO,II.1.1,Santa Fe,AR-S,annual,2014,gas oil combustion consumption by to the public,481.46211791999997,TJ,N2O,3.9,kg/TJ,1877.7022598879998,kg -13e6bf27-5026-3294-b9ee-4a9a2e431e35,SESCO,II.1.1,Buenos Aires,AR-B,annual,2014,gas oil combustion consumption by to the public,986.44861392,TJ,CO2,74100.0,kg/TJ,73095842.291472,kg -a5f65c26-6061-31d4-ba6b-7e1fbc04e202,SESCO,II.1.1,Buenos Aires,AR-B,annual,2014,gas oil combustion consumption by to the public,986.44861392,TJ,CH4,3.9,kg/TJ,3847.1495942879997,kg -a5f65c26-6061-31d4-ba6b-7e1fbc04e202,SESCO,II.1.1,Buenos Aires,AR-B,annual,2014,gas oil combustion consumption by to the public,986.44861392,TJ,N2O,3.9,kg/TJ,3847.1495942879997,kg -78dcc744-b1bb-306e-80f6-76eb5ae4383a,SESCO,II.1.1,Capital Federal,AR-C,annual,2014,gas oil combustion consumption by to the public,147.10661028,TJ,CO2,74100.0,kg/TJ,10900599.821748002,kg -bdd9131e-3d69-3ada-b0fa-9478abdd1d66,SESCO,II.1.1,Capital Federal,AR-C,annual,2014,gas oil combustion consumption by to the public,147.10661028,TJ,CH4,3.9,kg/TJ,573.715780092,kg -bdd9131e-3d69-3ada-b0fa-9478abdd1d66,SESCO,II.1.1,Capital Federal,AR-C,annual,2014,gas oil combustion consumption by to the public,147.10661028,TJ,N2O,3.9,kg/TJ,573.715780092,kg -e36edc34-9606-3468-bb14-ae62843fa6f7,SESCO,II.1.1,Chubut,AR-U,annual,2014,gas oil combustion consumption by to the public,3.25943268,TJ,CO2,74100.0,kg/TJ,241523.961588,kg -798f3355-d2e0-30f5-bdcf-88db60549bc4,SESCO,II.1.1,Chubut,AR-U,annual,2014,gas oil combustion consumption by to the public,3.25943268,TJ,CH4,3.9,kg/TJ,12.711787452000001,kg -798f3355-d2e0-30f5-bdcf-88db60549bc4,SESCO,II.1.1,Chubut,AR-U,annual,2014,gas oil combustion consumption by to the public,3.25943268,TJ,N2O,3.9,kg/TJ,12.711787452000001,kg -bdd102fa-4ca9-31b3-8df7-a7cd90da73ef,SESCO,II.1.1,Córdoba,AR-X,annual,2014,gas oil combustion consumption by to the public,75.90144828,TJ,CO2,74100.0,kg/TJ,5624297.317547999,kg -29e893c9-2a00-3787-9f84-ac84aee09035,SESCO,II.1.1,Córdoba,AR-X,annual,2014,gas oil combustion consumption by to the public,75.90144828,TJ,CH4,3.9,kg/TJ,296.015648292,kg -29e893c9-2a00-3787-9f84-ac84aee09035,SESCO,II.1.1,Córdoba,AR-X,annual,2014,gas oil combustion consumption by to the public,75.90144828,TJ,N2O,3.9,kg/TJ,296.015648292,kg -452b8e03-1280-3f22-b04a-6df18f47013f,SESCO,II.1.1,Entre Rios,AR-E,annual,2014,gas oil combustion consumption by to the public,68.1607878,TJ,CO2,74100.0,kg/TJ,5050714.37598,kg -32fae030-51a7-3a13-ade0-8df2a9e3ad85,SESCO,II.1.1,Entre Rios,AR-E,annual,2014,gas oil combustion consumption by to the public,68.1607878,TJ,CH4,3.9,kg/TJ,265.82707242,kg -32fae030-51a7-3a13-ade0-8df2a9e3ad85,SESCO,II.1.1,Entre Rios,AR-E,annual,2014,gas oil combustion consumption by to the public,68.1607878,TJ,N2O,3.9,kg/TJ,265.82707242,kg -56658383-bcbc-32a5-85f4-1db656a59211,SESCO,II.1.1,La Pampa,AR-L,annual,2014,gas oil combustion consumption by to the public,43.0167528,TJ,CO2,74100.0,kg/TJ,3187541.38248,kg -8356f3ac-2f0d-3e03-9f7c-0dd39742e25e,SESCO,II.1.1,La Pampa,AR-L,annual,2014,gas oil combustion consumption by to the public,43.0167528,TJ,CH4,3.9,kg/TJ,167.76533591999998,kg -8356f3ac-2f0d-3e03-9f7c-0dd39742e25e,SESCO,II.1.1,La Pampa,AR-L,annual,2014,gas oil combustion consumption by to the public,43.0167528,TJ,N2O,3.9,kg/TJ,167.76533591999998,kg -9942056d-0cc4-3a8d-8410-1cd5242b2d69,SESCO,II.1.1,Neuquén,AR-Q,annual,2014,gas oil combustion consumption by to the public,122.48743499999999,TJ,CO2,74100.0,kg/TJ,9076318.9335,kg -a28cec61-e13b-3d4b-beac-d3ed8a0443e4,SESCO,II.1.1,Neuquén,AR-Q,annual,2014,gas oil combustion consumption by to the public,122.48743499999999,TJ,CH4,3.9,kg/TJ,477.7009965,kg -a28cec61-e13b-3d4b-beac-d3ed8a0443e4,SESCO,II.1.1,Neuquén,AR-Q,annual,2014,gas oil combustion consumption by to the public,122.48743499999999,TJ,N2O,3.9,kg/TJ,477.7009965,kg -5a7b97c6-8c16-35c8-8d29-519839d20b1c,SESCO,II.1.1,Rio Negro,AR-R,annual,2014,gas oil combustion consumption by to the public,75.42672312,TJ,CO2,74100.0,kg/TJ,5589120.183192001,kg -56672863-6c6c-3ba9-bc2d-bc20466d662e,SESCO,II.1.1,Rio Negro,AR-R,annual,2014,gas oil combustion consumption by to the public,75.42672312,TJ,CH4,3.9,kg/TJ,294.16422016800004,kg -56672863-6c6c-3ba9-bc2d-bc20466d662e,SESCO,II.1.1,Rio Negro,AR-R,annual,2014,gas oil combustion consumption by to the public,75.42672312,TJ,N2O,3.9,kg/TJ,294.16422016800004,kg -b5d5612c-6810-3521-ac2b-880d623c1ef7,SESCO,II.1.1,Santa Fe,AR-S,annual,2014,gas oil combustion consumption by to the public,126.45211068,TJ,CO2,74100.0,kg/TJ,9370101.401388,kg -b04cd84a-b502-3a19-8aca-74e7a676f1bf,SESCO,II.1.1,Santa Fe,AR-S,annual,2014,gas oil combustion consumption by to the public,126.45211068,TJ,CH4,3.9,kg/TJ,493.163231652,kg -b04cd84a-b502-3a19-8aca-74e7a676f1bf,SESCO,II.1.1,Santa Fe,AR-S,annual,2014,gas oil combustion consumption by to the public,126.45211068,TJ,N2O,3.9,kg/TJ,493.163231652,kg -688a9376-cd35-3ac5-b128-75bfcbea73ca,SESCO,II.2.1,Buenos Aires,AR-B,annual,2014,gas oil combustion consumption by railway transport,31.795460759999997,TJ,CO2,74100.0,kg/TJ,2356043.6423159996,kg -94c46f17-79b5-3802-af40-316befa19f6c,SESCO,II.2.1,Buenos Aires,AR-B,annual,2014,gas oil combustion consumption by railway transport,31.795460759999997,TJ,CH4,3.9,kg/TJ,124.00229696399998,kg -94c46f17-79b5-3802-af40-316befa19f6c,SESCO,II.2.1,Buenos Aires,AR-B,annual,2014,gas oil combustion consumption by railway transport,31.795460759999997,TJ,N2O,3.9,kg/TJ,124.00229696399998,kg -ece888ea-64c7-3ea8-9760-7d4c914d7f21,SESCO,II.1.1,Buenos Aires,AR-B,annual,2014,gasoline combustion consumption by freight transport,7.426895,TJ,CO2,69300.0,kg/TJ,514683.8235,kg -b8c54d9f-bbdd-3dc1-89ae-9a86b900d273,SESCO,II.1.1,Buenos Aires,AR-B,annual,2014,gasoline combustion consumption by freight transport,7.426895,TJ,CH4,33.0,kg/TJ,245.087535,kg -0c056c86-a353-32ff-86fd-b197a4a7b495,SESCO,II.1.1,Buenos Aires,AR-B,annual,2014,gasoline combustion consumption by freight transport,7.426895,TJ,N2O,3.2,kg/TJ,23.766064,kg -238693e8-6554-369f-a817-b3b5490ec071,SESCO,II.1.1,Buenos Aires,AR-B,annual,2014,gas oil combustion consumption by freight transport,285.60557172,TJ,CO2,74100.0,kg/TJ,21163372.864452,kg -875ea892-184b-35e6-8847-4f679756a9ef,SESCO,II.1.1,Buenos Aires,AR-B,annual,2014,gas oil combustion consumption by freight transport,285.60557172,TJ,CH4,3.9,kg/TJ,1113.861729708,kg -875ea892-184b-35e6-8847-4f679756a9ef,SESCO,II.1.1,Buenos Aires,AR-B,annual,2014,gas oil combustion consumption by freight transport,285.60557172,TJ,N2O,3.9,kg/TJ,1113.861729708,kg -29c94b10-3c81-3df0-bec7-e229f716773d,SESCO,II.1.1,San Luis,AR-D,annual,2014,gas oil combustion consumption by freight transport,55.78654536,TJ,CO2,74100.0,kg/TJ,4133783.011176,kg -5d3dc221-e567-3ec5-a6d4-179e6b4594c1,SESCO,II.1.1,San Luis,AR-D,annual,2014,gas oil combustion consumption by freight transport,55.78654536,TJ,CH4,3.9,kg/TJ,217.56752690399998,kg -5d3dc221-e567-3ec5-a6d4-179e6b4594c1,SESCO,II.1.1,San Luis,AR-D,annual,2014,gas oil combustion consumption by freight transport,55.78654536,TJ,N2O,3.9,kg/TJ,217.56752690399998,kg -b00e0175-742e-354f-a924-be330a6c4473,SESCO,II.1.1,Buenos Aires,AR-B,annual,2014,gas oil combustion consumption by freight transport,2.66247744,TJ,CO2,74100.0,kg/TJ,197289.578304,kg -8b2a5392-e1de-348c-84c6-ea6a82ef30a0,SESCO,II.1.1,Buenos Aires,AR-B,annual,2014,gas oil combustion consumption by freight transport,2.66247744,TJ,CH4,3.9,kg/TJ,10.383662015999999,kg -8b2a5392-e1de-348c-84c6-ea6a82ef30a0,SESCO,II.1.1,Buenos Aires,AR-B,annual,2014,gas oil combustion consumption by freight transport,2.66247744,TJ,N2O,3.9,kg/TJ,10.383662015999999,kg -f325b0b1-4fcd-3ee0-a9c3-c171c6e5187a,SESCO,II.1.1,Buenos Aires,AR-B,annual,2014,gas oil combustion consumption by public passenger transport,443.17824096,TJ,CO2,74100.0,kg/TJ,32839507.655136,kg -9f2f8a6f-8371-3596-8e90-99aed61dba40,SESCO,II.1.1,Buenos Aires,AR-B,annual,2014,gas oil combustion consumption by public passenger transport,443.17824096,TJ,CH4,3.9,kg/TJ,1728.3951397439998,kg -9f2f8a6f-8371-3596-8e90-99aed61dba40,SESCO,II.1.1,Buenos Aires,AR-B,annual,2014,gas oil combustion consumption by public passenger transport,443.17824096,TJ,N2O,3.9,kg/TJ,1728.3951397439998,kg -305f6e6d-cb82-32ab-802d-99f9d447d0e3,SESCO,II.1.1,Capital Federal,AR-C,annual,2014,gas oil combustion consumption by public passenger transport,15.846747,TJ,CO2,74100.0,kg/TJ,1174243.9527,kg -1a901dde-0d80-3e70-902a-95f61cd70cbe,SESCO,II.1.1,Capital Federal,AR-C,annual,2014,gas oil combustion consumption by public passenger transport,15.846747,TJ,CH4,3.9,kg/TJ,61.8023133,kg -1a901dde-0d80-3e70-902a-95f61cd70cbe,SESCO,II.1.1,Capital Federal,AR-C,annual,2014,gas oil combustion consumption by public passenger transport,15.846747,TJ,N2O,3.9,kg/TJ,61.8023133,kg -efb2d4e3-1669-3f6b-a253-77651eac60c4,SESCO,II.1.1,Chubut,AR-U,annual,2014,gas oil combustion consumption by public passenger transport,20.48787804,TJ,CO2,74100.0,kg/TJ,1518151.7627639999,kg -937ccb24-8a2d-360d-aa26-668b80fc0013,SESCO,II.1.1,Chubut,AR-U,annual,2014,gas oil combustion consumption by public passenger transport,20.48787804,TJ,CH4,3.9,kg/TJ,79.902724356,kg -937ccb24-8a2d-360d-aa26-668b80fc0013,SESCO,II.1.1,Chubut,AR-U,annual,2014,gas oil combustion consumption by public passenger transport,20.48787804,TJ,N2O,3.9,kg/TJ,79.902724356,kg -21f4a188-d550-327f-9a52-3e6c8a8b9f45,SESCO,II.1.1,Córdoba,AR-X,annual,2014,gas oil combustion consumption by public passenger transport,270.50228268,TJ,CO2,74100.0,kg/TJ,20044219.146588,kg -6e093682-b2fc-3c4d-9260-cc01c3085fbc,SESCO,II.1.1,Córdoba,AR-X,annual,2014,gas oil combustion consumption by public passenger transport,270.50228268,TJ,CH4,3.9,kg/TJ,1054.958902452,kg -6e093682-b2fc-3c4d-9260-cc01c3085fbc,SESCO,II.1.1,Córdoba,AR-X,annual,2014,gas oil combustion consumption by public passenger transport,270.50228268,TJ,N2O,3.9,kg/TJ,1054.958902452,kg -f5ae7682-beaa-3259-bc7f-061a1a7da5de,SESCO,II.1.1,Neuquén,AR-Q,annual,2014,gas oil combustion consumption by public passenger transport,25.54092156,TJ,CO2,74100.0,kg/TJ,1892582.2875960001,kg -82612a60-0937-3e7f-8a5a-b1cc7dd43777,SESCO,II.1.1,Neuquén,AR-Q,annual,2014,gas oil combustion consumption by public passenger transport,25.54092156,TJ,CH4,3.9,kg/TJ,99.60959408400001,kg -82612a60-0937-3e7f-8a5a-b1cc7dd43777,SESCO,II.1.1,Neuquén,AR-Q,annual,2014,gas oil combustion consumption by public passenger transport,25.54092156,TJ,N2O,3.9,kg/TJ,99.60959408400001,kg -9d82435b-a3db-3a82-8a88-2814e338eecc,SESCO,II.1.1,Rio Negro,AR-R,annual,2014,gas oil combustion consumption by public passenger transport,124.13114784,TJ,CO2,74100.0,kg/TJ,9198118.054944,kg -c26d4e49-73ce-3c9a-9e5a-c6a4d9bf73ca,SESCO,II.1.1,Rio Negro,AR-R,annual,2014,gas oil combustion consumption by public passenger transport,124.13114784,TJ,CH4,3.9,kg/TJ,484.111476576,kg -c26d4e49-73ce-3c9a-9e5a-c6a4d9bf73ca,SESCO,II.1.1,Rio Negro,AR-R,annual,2014,gas oil combustion consumption by public passenger transport,124.13114784,TJ,N2O,3.9,kg/TJ,484.111476576,kg -43064ff4-aafd-34cc-a734-1dcefc7478f7,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2014,gas oil combustion consumption by public passenger transport,19.14276924,TJ,CO2,74100.0,kg/TJ,1418479.200684,kg -1228b506-ffae-3993-96ae-5caeb8fa494b,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2014,gas oil combustion consumption by public passenger transport,19.14276924,TJ,CH4,3.9,kg/TJ,74.65680003599999,kg -1228b506-ffae-3993-96ae-5caeb8fa494b,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2014,gas oil combustion consumption by public passenger transport,19.14276924,TJ,N2O,3.9,kg/TJ,74.65680003599999,kg -94ef5cdb-d4f3-3d58-adef-3db091d7c5f5,SESCO,II.1.1,Santa Fe,AR-S,annual,2014,gas oil combustion consumption by public passenger transport,6.941216519999999,TJ,CO2,74100.0,kg/TJ,514344.1441319999,kg -b1f16df7-98da-362b-8d3a-199fc4a01748,SESCO,II.1.1,Santa Fe,AR-S,annual,2014,gas oil combustion consumption by public passenger transport,6.941216519999999,TJ,CH4,3.9,kg/TJ,27.070744427999998,kg -b1f16df7-98da-362b-8d3a-199fc4a01748,SESCO,II.1.1,Santa Fe,AR-S,annual,2014,gas oil combustion consumption by public passenger transport,6.941216519999999,TJ,N2O,3.9,kg/TJ,27.070744427999998,kg -a38315ec-7b86-30de-a70d-bc7c0fa995d1,SESCO,II.1.1,Buenos Aires,AR-B,annual,2014,gas oil combustion consumption by to the public,2565.4374479999997,TJ,CO2,74100.0,kg/TJ,190098914.89679998,kg -21b31130-d50f-3808-89ea-265d7b195b52,SESCO,II.1.1,Buenos Aires,AR-B,annual,2014,gas oil combustion consumption by to the public,2565.4374479999997,TJ,CH4,3.9,kg/TJ,10005.2060472,kg -21b31130-d50f-3808-89ea-265d7b195b52,SESCO,II.1.1,Buenos Aires,AR-B,annual,2014,gas oil combustion consumption by to the public,2565.4374479999997,TJ,N2O,3.9,kg/TJ,10005.2060472,kg -e093c3ec-343e-359e-9afd-4a05f5971876,SESCO,II.1.1,Capital Federal,AR-C,annual,2014,gas oil combustion consumption by to the public,793.21326,TJ,CO2,74100.0,kg/TJ,58777102.566,kg -88f872d9-7533-3373-8d47-c64d02e71697,SESCO,II.1.1,Capital Federal,AR-C,annual,2014,gas oil combustion consumption by to the public,793.21326,TJ,CH4,3.9,kg/TJ,3093.5317139999997,kg -88f872d9-7533-3373-8d47-c64d02e71697,SESCO,II.1.1,Capital Federal,AR-C,annual,2014,gas oil combustion consumption by to the public,793.21326,TJ,N2O,3.9,kg/TJ,3093.5317139999997,kg -6b86d133-5c13-30a8-87d7-ccc6c82530ab,SESCO,II.1.1,Corrientes,AR-W,annual,2014,gas oil combustion consumption by to the public,4.76784,TJ,CO2,74100.0,kg/TJ,353296.94399999996,kg -81226f26-1ff7-3090-bcd6-e078f41c3461,SESCO,II.1.1,Corrientes,AR-W,annual,2014,gas oil combustion consumption by to the public,4.76784,TJ,CH4,3.9,kg/TJ,18.594575999999996,kg -81226f26-1ff7-3090-bcd6-e078f41c3461,SESCO,II.1.1,Corrientes,AR-W,annual,2014,gas oil combustion consumption by to the public,4.76784,TJ,N2O,3.9,kg/TJ,18.594575999999996,kg -84fb5841-1b97-30b0-bc7f-e3a07ce4e107,SESCO,II.1.1,Córdoba,AR-X,annual,2014,gas oil combustion consumption by to the public,446.76828,TJ,CO2,74100.0,kg/TJ,33105529.548,kg -9e366af1-2e85-3c41-8472-dc1e4bf2b6c8,SESCO,II.1.1,Córdoba,AR-X,annual,2014,gas oil combustion consumption by to the public,446.76828,TJ,CH4,3.9,kg/TJ,1742.396292,kg -9e366af1-2e85-3c41-8472-dc1e4bf2b6c8,SESCO,II.1.1,Córdoba,AR-X,annual,2014,gas oil combustion consumption by to the public,446.76828,TJ,N2O,3.9,kg/TJ,1742.396292,kg -e6d8e27a-81c2-3a87-a879-2bc5980c344e,SESCO,II.1.1,Entre Rios,AR-E,annual,2014,gas oil combustion consumption by to the public,249.37248,TJ,CO2,74100.0,kg/TJ,18478500.768,kg -0b0dfcc0-008b-324a-b0a2-c676fefe3997,SESCO,II.1.1,Entre Rios,AR-E,annual,2014,gas oil combustion consumption by to the public,249.37248,TJ,CH4,3.9,kg/TJ,972.5526719999999,kg -0b0dfcc0-008b-324a-b0a2-c676fefe3997,SESCO,II.1.1,Entre Rios,AR-E,annual,2014,gas oil combustion consumption by to the public,249.37248,TJ,N2O,3.9,kg/TJ,972.5526719999999,kg -c4e14505-9e35-3d6f-a1ae-251dba21c2f6,SESCO,II.1.1,La Pampa,AR-L,annual,2014,gas oil combustion consumption by to the public,65.84676,TJ,CO2,74100.0,kg/TJ,4879244.916,kg -b45020b1-ee05-31d4-90c7-f6d7511afca2,SESCO,II.1.1,La Pampa,AR-L,annual,2014,gas oil combustion consumption by to the public,65.84676,TJ,CH4,3.9,kg/TJ,256.802364,kg -b45020b1-ee05-31d4-90c7-f6d7511afca2,SESCO,II.1.1,La Pampa,AR-L,annual,2014,gas oil combustion consumption by to the public,65.84676,TJ,N2O,3.9,kg/TJ,256.802364,kg -130d891e-9c05-39ce-be80-6c2c9698fbec,SESCO,II.1.1,Rio Negro,AR-R,annual,2014,gas oil combustion consumption by to the public,19.82988,TJ,CO2,74100.0,kg/TJ,1469394.108,kg -4edf9649-f2e1-3bda-b644-374133ad3e7a,SESCO,II.1.1,Rio Negro,AR-R,annual,2014,gas oil combustion consumption by to the public,19.82988,TJ,CH4,3.9,kg/TJ,77.33653199999999,kg -4edf9649-f2e1-3bda-b644-374133ad3e7a,SESCO,II.1.1,Rio Negro,AR-R,annual,2014,gas oil combustion consumption by to the public,19.82988,TJ,N2O,3.9,kg/TJ,77.33653199999999,kg -45dbfecf-eba6-36dd-95ce-755266d1285a,SESCO,II.1.1,Salta,AR-A,annual,2014,gas oil combustion consumption by to the public,14.989799999999999,TJ,CO2,74100.0,kg/TJ,1110744.18,kg -63c3dbab-0265-3e2f-aa17-bf4e28f6cbbc,SESCO,II.1.1,Salta,AR-A,annual,2014,gas oil combustion consumption by to the public,14.989799999999999,TJ,CH4,3.9,kg/TJ,58.46021999999999,kg -63c3dbab-0265-3e2f-aa17-bf4e28f6cbbc,SESCO,II.1.1,Salta,AR-A,annual,2014,gas oil combustion consumption by to the public,14.989799999999999,TJ,N2O,3.9,kg/TJ,58.46021999999999,kg -134c92ee-c378-3212-8be7-718e90ce1e6c,SESCO,II.1.1,Santa Fe,AR-S,annual,2014,gas oil combustion consumption by to the public,208.37628,TJ,CO2,74100.0,kg/TJ,15440682.348000001,kg -293ce2f1-6d9e-379a-b524-efab557c6245,SESCO,II.1.1,Santa Fe,AR-S,annual,2014,gas oil combustion consumption by to the public,208.37628,TJ,CH4,3.9,kg/TJ,812.667492,kg -293ce2f1-6d9e-379a-b524-efab557c6245,SESCO,II.1.1,Santa Fe,AR-S,annual,2014,gas oil combustion consumption by to the public,208.37628,TJ,N2O,3.9,kg/TJ,812.667492,kg -8dd20904-7ea5-398b-ad6e-8b96fa49e839,SESCO,II.1.1,Buenos Aires,AR-B,annual,2014,gas oil combustion consumption by to the public,126.86066400000001,TJ,CO2,74100.0,kg/TJ,9400375.2024,kg -d20390d5-63d0-39db-a1bf-36df98ccc730,SESCO,II.1.1,Buenos Aires,AR-B,annual,2014,gas oil combustion consumption by to the public,126.86066400000001,TJ,CH4,3.9,kg/TJ,494.75658960000004,kg -d20390d5-63d0-39db-a1bf-36df98ccc730,SESCO,II.1.1,Buenos Aires,AR-B,annual,2014,gas oil combustion consumption by to the public,126.86066400000001,TJ,N2O,3.9,kg/TJ,494.75658960000004,kg -0f9cd18c-1d56-3cb0-bd60-4a4ee089f8c4,SESCO,II.1.1,Capital Federal,AR-C,annual,2014,gas oil combustion consumption by to the public,29.2572,TJ,CO2,74100.0,kg/TJ,2167958.52,kg -ea864647-96d9-36f3-8fcf-8e0611a6b614,SESCO,II.1.1,Capital Federal,AR-C,annual,2014,gas oil combustion consumption by to the public,29.2572,TJ,CH4,3.9,kg/TJ,114.10308,kg -ea864647-96d9-36f3-8fcf-8e0611a6b614,SESCO,II.1.1,Capital Federal,AR-C,annual,2014,gas oil combustion consumption by to the public,29.2572,TJ,N2O,3.9,kg/TJ,114.10308,kg -dc39d352-0b68-345a-87d1-05e16d963661,SESCO,II.1.1,Córdoba,AR-X,annual,2014,gas oil combustion consumption by to the public,14.12292,TJ,CO2,74100.0,kg/TJ,1046508.3720000001,kg -755b0bf9-9a59-31a0-895e-90ddf4e1be6c,SESCO,II.1.1,Córdoba,AR-X,annual,2014,gas oil combustion consumption by to the public,14.12292,TJ,CH4,3.9,kg/TJ,55.079388,kg -755b0bf9-9a59-31a0-895e-90ddf4e1be6c,SESCO,II.1.1,Córdoba,AR-X,annual,2014,gas oil combustion consumption by to the public,14.12292,TJ,N2O,3.9,kg/TJ,55.079388,kg -f09c14c7-c0a9-3877-9a0a-a62f3eddb87b,SESCO,II.1.1,Entre Rios,AR-E,annual,2014,gas oil combustion consumption by to the public,11.88348,TJ,CO2,74100.0,kg/TJ,880565.868,kg -b9f394fa-2b43-3b8d-abfc-82317f492cb1,SESCO,II.1.1,Entre Rios,AR-E,annual,2014,gas oil combustion consumption by to the public,11.88348,TJ,CH4,3.9,kg/TJ,46.345572000000004,kg -b9f394fa-2b43-3b8d-abfc-82317f492cb1,SESCO,II.1.1,Entre Rios,AR-E,annual,2014,gas oil combustion consumption by to the public,11.88348,TJ,N2O,3.9,kg/TJ,46.345572000000004,kg -c221fb3d-fab5-3a4a-a016-cf2958732916,SESCO,II.1.1,La Pampa,AR-L,annual,2014,gas oil combustion consumption by to the public,0.903,TJ,CO2,74100.0,kg/TJ,66912.3,kg -a77625a4-06e7-301d-83da-059279420a1d,SESCO,II.1.1,La Pampa,AR-L,annual,2014,gas oil combustion consumption by to the public,0.903,TJ,CH4,3.9,kg/TJ,3.5217,kg -a77625a4-06e7-301d-83da-059279420a1d,SESCO,II.1.1,La Pampa,AR-L,annual,2014,gas oil combustion consumption by to the public,0.903,TJ,N2O,3.9,kg/TJ,3.5217,kg -1fa44850-b7b5-34a1-8187-28863c80877f,SESCO,II.1.1,Santa Fe,AR-S,annual,2014,gas oil combustion consumption by to the public,37.373364,TJ,CO2,74100.0,kg/TJ,2769366.2724,kg -a4cadc22-3695-393e-818d-3d20d919a6ba,SESCO,II.1.1,Santa Fe,AR-S,annual,2014,gas oil combustion consumption by to the public,37.373364,TJ,CH4,3.9,kg/TJ,145.7561196,kg -a4cadc22-3695-393e-818d-3d20d919a6ba,SESCO,II.1.1,Santa Fe,AR-S,annual,2014,gas oil combustion consumption by to the public,37.373364,TJ,N2O,3.9,kg/TJ,145.7561196,kg -16c76883-9fae-3331-bac2-b2aeedc12871,SESCO,II.1.1,Tucuman,AR-T,annual,2014,gasoline combustion consumption by to the public,29.002766999999995,TJ,CO2,69300.0,kg/TJ,2009891.7530999996,kg -03d5d3b5-cf17-3c19-86a4-f401403d6729,SESCO,II.1.1,Tucuman,AR-T,annual,2014,gasoline combustion consumption by to the public,29.002766999999995,TJ,CH4,33.0,kg/TJ,957.0913109999998,kg -2118ca0e-6339-3ff9-b776-bb6986f47e39,SESCO,II.1.1,Tucuman,AR-T,annual,2014,gasoline combustion consumption by to the public,29.002766999999995,TJ,N2O,3.2,kg/TJ,92.80885439999999,kg -ea4cb014-8f99-3102-927b-4bbf5b15c849,SESCO,II.1.1,Catamarca,AR-K,annual,2014,gas oil combustion consumption by to the public,226.7014008,TJ,CO2,74100.0,kg/TJ,16798573.79928,kg -5093c9cf-d096-39fa-9eae-6e688eb1c8cc,SESCO,II.1.1,Catamarca,AR-K,annual,2014,gas oil combustion consumption by to the public,226.7014008,TJ,CH4,3.9,kg/TJ,884.1354631199999,kg -5093c9cf-d096-39fa-9eae-6e688eb1c8cc,SESCO,II.1.1,Catamarca,AR-K,annual,2014,gas oil combustion consumption by to the public,226.7014008,TJ,N2O,3.9,kg/TJ,884.1354631199999,kg -3eb85c6d-e941-3333-a8f9-b25a6d4336bb,SESCO,II.1.1,Chaco,AR-H,annual,2014,gas oil combustion consumption by to the public,136.4609988,TJ,CO2,74100.0,kg/TJ,10111760.01108,kg -5ce42c15-8d02-3433-a927-d0fc582630c0,SESCO,II.1.1,Chaco,AR-H,annual,2014,gas oil combustion consumption by to the public,136.4609988,TJ,CH4,3.9,kg/TJ,532.1978953199999,kg -5ce42c15-8d02-3433-a927-d0fc582630c0,SESCO,II.1.1,Chaco,AR-H,annual,2014,gas oil combustion consumption by to the public,136.4609988,TJ,N2O,3.9,kg/TJ,532.1978953199999,kg -0f835d5a-7bb5-3946-b8be-3e1feb110dbb,SESCO,II.1.1,Córdoba,AR-X,annual,2014,gas oil combustion consumption by to the public,76.70009759999999,TJ,CO2,74100.0,kg/TJ,5683477.232159999,kg -4ccb563c-73ff-3b42-a196-c11e596499de,SESCO,II.1.1,Córdoba,AR-X,annual,2014,gas oil combustion consumption by to the public,76.70009759999999,TJ,CH4,3.9,kg/TJ,299.13038063999994,kg -4ccb563c-73ff-3b42-a196-c11e596499de,SESCO,II.1.1,Córdoba,AR-X,annual,2014,gas oil combustion consumption by to the public,76.70009759999999,TJ,N2O,3.9,kg/TJ,299.13038063999994,kg -fb620e16-2e46-320e-802f-0806ba09bd71,SESCO,II.1.1,Jujuy,AR-Y,annual,2014,gas oil combustion consumption by to the public,799.4645484,TJ,CO2,74100.0,kg/TJ,59240323.03644,kg -b8a696fb-0c07-32f0-abca-b71a76378412,SESCO,II.1.1,Jujuy,AR-Y,annual,2014,gas oil combustion consumption by to the public,799.4645484,TJ,CH4,3.9,kg/TJ,3117.91173876,kg -b8a696fb-0c07-32f0-abca-b71a76378412,SESCO,II.1.1,Jujuy,AR-Y,annual,2014,gas oil combustion consumption by to the public,799.4645484,TJ,N2O,3.9,kg/TJ,3117.91173876,kg -a446450b-18ec-3253-986a-e21ea4e11a56,SESCO,II.1.1,La Rioja,AR-F,annual,2014,gas oil combustion consumption by to the public,187.2413844,TJ,CO2,74100.0,kg/TJ,13874586.58404,kg -2d79f680-5bd5-33fa-87c8-50bc54c5d67d,SESCO,II.1.1,La Rioja,AR-F,annual,2014,gas oil combustion consumption by to the public,187.2413844,TJ,CH4,3.9,kg/TJ,730.2413991599999,kg -2d79f680-5bd5-33fa-87c8-50bc54c5d67d,SESCO,II.1.1,La Rioja,AR-F,annual,2014,gas oil combustion consumption by to the public,187.2413844,TJ,N2O,3.9,kg/TJ,730.2413991599999,kg -460a7636-e56e-3881-aca4-e85e3099e220,SESCO,II.1.1,Salta,AR-A,annual,2014,gas oil combustion consumption by to the public,2258.3921640000003,TJ,CO2,74100.0,kg/TJ,167346859.35240003,kg -28a9f9a6-ced1-3612-915c-e8f68487bc4d,SESCO,II.1.1,Salta,AR-A,annual,2014,gas oil combustion consumption by to the public,2258.3921640000003,TJ,CH4,3.9,kg/TJ,8807.729439600002,kg -28a9f9a6-ced1-3612-915c-e8f68487bc4d,SESCO,II.1.1,Salta,AR-A,annual,2014,gas oil combustion consumption by to the public,2258.3921640000003,TJ,N2O,3.9,kg/TJ,8807.729439600002,kg -382c5965-21c8-3a35-b816-b2691a28ebbf,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2014,gas oil combustion consumption by to the public,411.7687224,TJ,CO2,74100.0,kg/TJ,30512062.32984,kg -0f09b9d7-43ff-340e-8806-0c4e55d46eba,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2014,gas oil combustion consumption by to the public,411.7687224,TJ,CH4,3.9,kg/TJ,1605.89801736,kg -0f09b9d7-43ff-340e-8806-0c4e55d46eba,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2014,gas oil combustion consumption by to the public,411.7687224,TJ,N2O,3.9,kg/TJ,1605.89801736,kg -29c295fd-0092-3678-b299-426884f930e4,SESCO,II.1.1,Tucuman,AR-T,annual,2014,gas oil combustion consumption by to the public,2576.2940364,TJ,CO2,74100.0,kg/TJ,190903388.09724,kg -9c5e20af-c84b-32f4-8b3c-d9c6f337746c,SESCO,II.1.1,Tucuman,AR-T,annual,2014,gas oil combustion consumption by to the public,2576.2940364,TJ,CH4,3.9,kg/TJ,10047.54674196,kg -9c5e20af-c84b-32f4-8b3c-d9c6f337746c,SESCO,II.1.1,Tucuman,AR-T,annual,2014,gas oil combustion consumption by to the public,2576.2940364,TJ,N2O,3.9,kg/TJ,10047.54674196,kg -d0baface-52dd-3419-8459-00305ab99c8b,SESCO,II.1.1,Catamarca,AR-K,annual,2014,gas oil combustion consumption by to the public,9.3543576,TJ,CO2,74100.0,kg/TJ,693157.89816,kg -8765d987-919b-3d0f-8fd7-30c298f92729,SESCO,II.1.1,Catamarca,AR-K,annual,2014,gas oil combustion consumption by to the public,9.3543576,TJ,CH4,3.9,kg/TJ,36.481994639999996,kg -8765d987-919b-3d0f-8fd7-30c298f92729,SESCO,II.1.1,Catamarca,AR-K,annual,2014,gas oil combustion consumption by to the public,9.3543576,TJ,N2O,3.9,kg/TJ,36.481994639999996,kg -fa52816d-9c21-37b1-b294-fea891897b5e,SESCO,II.1.1,Chaco,AR-H,annual,2014,gas oil combustion consumption by to the public,3.7864595999999997,TJ,CO2,74100.0,kg/TJ,280576.65635999996,kg -3ae03213-c685-3213-9fed-e55b1364ec5e,SESCO,II.1.1,Chaco,AR-H,annual,2014,gas oil combustion consumption by to the public,3.7864595999999997,TJ,CH4,3.9,kg/TJ,14.767192439999999,kg -3ae03213-c685-3213-9fed-e55b1364ec5e,SESCO,II.1.1,Chaco,AR-H,annual,2014,gas oil combustion consumption by to the public,3.7864595999999997,TJ,N2O,3.9,kg/TJ,14.767192439999999,kg -61827115-9b94-35ec-81ac-1afd68c76fbd,SESCO,II.1.1,Jujuy,AR-Y,annual,2014,gas oil combustion consumption by to the public,24.1400796,TJ,CO2,74100.0,kg/TJ,1788779.89836,kg -425a88fb-d3d4-31e7-b600-64f0f53ba1e2,SESCO,II.1.1,Jujuy,AR-Y,annual,2014,gas oil combustion consumption by to the public,24.1400796,TJ,CH4,3.9,kg/TJ,94.14631044,kg -425a88fb-d3d4-31e7-b600-64f0f53ba1e2,SESCO,II.1.1,Jujuy,AR-Y,annual,2014,gas oil combustion consumption by to the public,24.1400796,TJ,N2O,3.9,kg/TJ,94.14631044,kg -c519212c-394a-38c5-8d81-f9885c5d6bfa,SESCO,II.1.1,La Rioja,AR-F,annual,2014,gas oil combustion consumption by to the public,17.0984856,TJ,CO2,74100.0,kg/TJ,1266997.78296,kg -99697f88-4281-388e-861b-c22e62abc493,SESCO,II.1.1,La Rioja,AR-F,annual,2014,gas oil combustion consumption by to the public,17.0984856,TJ,CH4,3.9,kg/TJ,66.68409384,kg -99697f88-4281-388e-861b-c22e62abc493,SESCO,II.1.1,La Rioja,AR-F,annual,2014,gas oil combustion consumption by to the public,17.0984856,TJ,N2O,3.9,kg/TJ,66.68409384,kg -0559db5d-6706-34cf-96da-a58c2aef4938,SESCO,II.1.1,Salta,AR-A,annual,2014,gas oil combustion consumption by to the public,48.1122012,TJ,CO2,74100.0,kg/TJ,3565114.10892,kg -d231aeda-0177-3a59-a283-3a09a9e9a845,SESCO,II.1.1,Salta,AR-A,annual,2014,gas oil combustion consumption by to the public,48.1122012,TJ,CH4,3.9,kg/TJ,187.63758468,kg -d231aeda-0177-3a59-a283-3a09a9e9a845,SESCO,II.1.1,Salta,AR-A,annual,2014,gas oil combustion consumption by to the public,48.1122012,TJ,N2O,3.9,kg/TJ,187.63758468,kg -99d6c0c8-7b74-39a3-b627-f8bba6c670db,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2014,gas oil combustion consumption by to the public,34.4946,TJ,CO2,74100.0,kg/TJ,2556049.86,kg -653d26a5-a47c-34fc-9bf0-5ee597075967,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2014,gas oil combustion consumption by to the public,34.4946,TJ,CH4,3.9,kg/TJ,134.52893999999998,kg -653d26a5-a47c-34fc-9bf0-5ee597075967,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2014,gas oil combustion consumption by to the public,34.4946,TJ,N2O,3.9,kg/TJ,134.52893999999998,kg -9a4a4a73-ef7e-3942-9014-e7a7d740bdcf,SESCO,II.1.1,Tucuman,AR-T,annual,2014,gas oil combustion consumption by to the public,89.51258399999999,TJ,CO2,74100.0,kg/TJ,6632882.474399999,kg -ffdb225e-b816-37a9-ac12-91d056ff54ec,SESCO,II.1.1,Tucuman,AR-T,annual,2014,gas oil combustion consumption by to the public,89.51258399999999,TJ,CH4,3.9,kg/TJ,349.09907759999993,kg -ffdb225e-b816-37a9-ac12-91d056ff54ec,SESCO,II.1.1,Tucuman,AR-T,annual,2014,gas oil combustion consumption by to the public,89.51258399999999,TJ,N2O,3.9,kg/TJ,349.09907759999993,kg -e19bf225-cc69-38da-9081-4622ff7a8b35,SESCO,I.3.1,Buenos Aires,AR-B,annual,2014,gasoline combustion consumption by petrochemical industries,2.2504399999999998,TJ,CO2,69300.0,kg/TJ,155955.492,kg -b5975815-af1c-3010-929c-df3db9037cbd,SESCO,I.3.1,Buenos Aires,AR-B,annual,2014,gasoline combustion consumption by petrochemical industries,2.2504399999999998,TJ,CH4,33.0,kg/TJ,74.26451999999999,kg -f319d82e-a517-36ad-9de8-b60e71a3a149,SESCO,I.3.1,Buenos Aires,AR-B,annual,2014,gasoline combustion consumption by petrochemical industries,2.2504399999999998,TJ,N2O,3.2,kg/TJ,7.201408,kg -07260bf6-670e-3f0c-8973-d2995598491c,SESCO,I.3.1,Córdoba,AR-X,annual,2014,gasoline combustion consumption by petrochemical industries,66.673272,TJ,CO2,69300.0,kg/TJ,4620457.7496,kg -d8d7cf7e-b49a-3a37-bc08-0329c8c64393,SESCO,I.3.1,Córdoba,AR-X,annual,2014,gasoline combustion consumption by petrochemical industries,66.673272,TJ,CH4,33.0,kg/TJ,2200.217976,kg -077e9ac9-226a-3a73-b339-755de1bd73bf,SESCO,I.3.1,Córdoba,AR-X,annual,2014,gasoline combustion consumption by petrochemical industries,66.673272,TJ,N2O,3.2,kg/TJ,213.3544704,kg -b940a896-f848-30cf-bb6e-4457348643e8,SESCO,II.5.1,Buenos Aires,AR-B,annual,2014,gasoline combustion consumption by agriculture machines,7.1323,TJ,CO2,69300.0,kg/TJ,494268.39,kg -e0e6949a-0c47-3f09-9daf-12e0513cdd0d,SESCO,II.5.1,Buenos Aires,AR-B,annual,2014,gasoline combustion consumption by agriculture machines,7.1323,TJ,CH4,33.0,kg/TJ,235.36589999999998,kg -ceed7f57-0dce-3957-b9bd-68f2906134e6,SESCO,II.5.1,Buenos Aires,AR-B,annual,2014,gasoline combustion consumption by agriculture machines,7.1323,TJ,N2O,3.2,kg/TJ,22.82336,kg -771b74cc-bd50-365f-8aa5-53bd35b56042,SESCO,II.5.1,Capital Federal,AR-C,annual,2014,gasoline combustion consumption by agriculture machines,96.131,TJ,CO2,69300.0,kg/TJ,6661878.3,kg -4e300cd8-a3ad-3d2b-b906-6dc15439a2fe,SESCO,II.5.1,Capital Federal,AR-C,annual,2014,gasoline combustion consumption by agriculture machines,96.131,TJ,CH4,33.0,kg/TJ,3172.323,kg -b0ec7491-71d1-3c13-b966-3cd8b5769752,SESCO,II.5.1,Capital Federal,AR-C,annual,2014,gasoline combustion consumption by agriculture machines,96.131,TJ,N2O,3.2,kg/TJ,307.61920000000003,kg -1f3cc612-9ad1-3f0e-a6cb-1b6e46cf8c1c,SESCO,II.5.1,Buenos Aires,AR-B,annual,2014,gas oil combustion consumption by agriculture machines,462.48048,TJ,CO2,74100.0,kg/TJ,34269803.568,kg -6fcf2697-710b-3596-b391-d65da7095c88,SESCO,II.5.1,Buenos Aires,AR-B,annual,2014,gas oil combustion consumption by agriculture machines,462.48048,TJ,CH4,3.9,kg/TJ,1803.6738719999998,kg -6fcf2697-710b-3596-b391-d65da7095c88,SESCO,II.5.1,Buenos Aires,AR-B,annual,2014,gas oil combustion consumption by agriculture machines,462.48048,TJ,N2O,3.9,kg/TJ,1803.6738719999998,kg -56f081f9-dbbf-3769-b77d-3221b941e113,SESCO,II.5.1,Capital Federal,AR-C,annual,2014,gas oil combustion consumption by agriculture machines,2.67288,TJ,CO2,74100.0,kg/TJ,198060.40800000002,kg -20aa5ab7-20c1-34ad-8be6-2ff6b3a2cace,SESCO,II.5.1,Capital Federal,AR-C,annual,2014,gas oil combustion consumption by agriculture machines,2.67288,TJ,CH4,3.9,kg/TJ,10.424232,kg -20aa5ab7-20c1-34ad-8be6-2ff6b3a2cace,SESCO,II.5.1,Capital Federal,AR-C,annual,2014,gas oil combustion consumption by agriculture machines,2.67288,TJ,N2O,3.9,kg/TJ,10.424232,kg -fbdaf68a-e280-3da0-b0e7-0eeab8a3998c,SESCO,II.5.1,Córdoba,AR-X,annual,2014,gas oil combustion consumption by agriculture machines,161.34804,TJ,CO2,74100.0,kg/TJ,11955889.764,kg -c2f8f4b5-178f-3d7b-a43c-767d77131842,SESCO,II.5.1,Córdoba,AR-X,annual,2014,gas oil combustion consumption by agriculture machines,161.34804,TJ,CH4,3.9,kg/TJ,629.257356,kg -c2f8f4b5-178f-3d7b-a43c-767d77131842,SESCO,II.5.1,Córdoba,AR-X,annual,2014,gas oil combustion consumption by agriculture machines,161.34804,TJ,N2O,3.9,kg/TJ,629.257356,kg -7702bbce-d6d8-3b3b-943d-9813fcabef95,SESCO,II.5.1,Santa Fe,AR-S,annual,2014,gas oil combustion consumption by agriculture machines,669.05076,TJ,CO2,74100.0,kg/TJ,49576661.316,kg -0685759c-92cc-3fbd-b4f9-7d9c401f9d79,SESCO,II.5.1,Santa Fe,AR-S,annual,2014,gas oil combustion consumption by agriculture machines,669.05076,TJ,CH4,3.9,kg/TJ,2609.297964,kg -0685759c-92cc-3fbd-b4f9-7d9c401f9d79,SESCO,II.5.1,Santa Fe,AR-S,annual,2014,gas oil combustion consumption by agriculture machines,669.05076,TJ,N2O,3.9,kg/TJ,2609.297964,kg -69e92b83-ebed-3d9e-a39e-66b817c8da1d,SESCO,II.5.1,Buenos Aires,AR-B,annual,2014,gas oil combustion consumption by agriculture machines,3.9732,TJ,CO2,74100.0,kg/TJ,294414.12,kg -94a1d593-ccb1-3171-89e2-fbfd0b568f1e,SESCO,II.5.1,Buenos Aires,AR-B,annual,2014,gas oil combustion consumption by agriculture machines,3.9732,TJ,CH4,3.9,kg/TJ,15.495479999999999,kg -94a1d593-ccb1-3171-89e2-fbfd0b568f1e,SESCO,II.5.1,Buenos Aires,AR-B,annual,2014,gas oil combustion consumption by agriculture machines,3.9732,TJ,N2O,3.9,kg/TJ,15.495479999999999,kg -37de61af-776d-37e3-a497-1e78573d2c99,SESCO,II.5.1,Córdoba,AR-X,annual,2014,gas oil combustion consumption by agriculture machines,0.93912,TJ,CO2,74100.0,kg/TJ,69588.792,kg -994e13a1-3b34-34bf-8f87-f4c9fa9089d7,SESCO,II.5.1,Córdoba,AR-X,annual,2014,gas oil combustion consumption by agriculture machines,0.93912,TJ,CH4,3.9,kg/TJ,3.662568,kg -994e13a1-3b34-34bf-8f87-f4c9fa9089d7,SESCO,II.5.1,Córdoba,AR-X,annual,2014,gas oil combustion consumption by agriculture machines,0.93912,TJ,N2O,3.9,kg/TJ,3.662568,kg -1aca342f-c2ce-3080-9603-96e9d1519e3e,SESCO,II.5.1,Santa Fe,AR-S,annual,2014,gas oil combustion consumption by agriculture machines,28.20972,TJ,CO2,74100.0,kg/TJ,2090340.252,kg -691bed5e-791d-35c0-a2e8-f74efc1f1be0,SESCO,II.5.1,Santa Fe,AR-S,annual,2014,gas oil combustion consumption by agriculture machines,28.20972,TJ,CH4,3.9,kg/TJ,110.017908,kg -691bed5e-791d-35c0-a2e8-f74efc1f1be0,SESCO,II.5.1,Santa Fe,AR-S,annual,2014,gas oil combustion consumption by agriculture machines,28.20972,TJ,N2O,3.9,kg/TJ,110.017908,kg -87c6f5b7-18bc-37c0-86a4-ce1c41bafe2d,SESCO,II.1.1,Buenos Aires,AR-B,annual,2014,gas oil combustion consumption by to the public,12357.15768,TJ,CO2,74100.0,kg/TJ,915665384.088,kg -d319db3c-d766-3e5c-9356-dd46d6c615e7,SESCO,II.1.1,Buenos Aires,AR-B,annual,2014,gas oil combustion consumption by to the public,12357.15768,TJ,CH4,3.9,kg/TJ,48192.914952,kg -d319db3c-d766-3e5c-9356-dd46d6c615e7,SESCO,II.1.1,Buenos Aires,AR-B,annual,2014,gas oil combustion consumption by to the public,12357.15768,TJ,N2O,3.9,kg/TJ,48192.914952,kg -e0e98e3b-1eec-3b50-afe6-2ce4e3bae75e,SESCO,II.1.1,Capital Federal,AR-C,annual,2014,gas oil combustion consumption by to the public,1098.7703999999999,TJ,CO2,74100.0,kg/TJ,81418886.63999999,kg -28a58fc6-1927-34a3-a5d8-12afb1455d6e,SESCO,II.1.1,Capital Federal,AR-C,annual,2014,gas oil combustion consumption by to the public,1098.7703999999999,TJ,CH4,3.9,kg/TJ,4285.204559999999,kg -28a58fc6-1927-34a3-a5d8-12afb1455d6e,SESCO,II.1.1,Capital Federal,AR-C,annual,2014,gas oil combustion consumption by to the public,1098.7703999999999,TJ,N2O,3.9,kg/TJ,4285.204559999999,kg -cddf0441-b3c4-3c43-84fd-cfb21dc63637,SESCO,II.1.1,Catamarca,AR-K,annual,2014,gas oil combustion consumption by to the public,18.02388,TJ,CO2,74100.0,kg/TJ,1335569.508,kg -93ec5313-282e-3e02-af50-4d22aa95ef9d,SESCO,II.1.1,Catamarca,AR-K,annual,2014,gas oil combustion consumption by to the public,18.02388,TJ,CH4,3.9,kg/TJ,70.29313199999999,kg -93ec5313-282e-3e02-af50-4d22aa95ef9d,SESCO,II.1.1,Catamarca,AR-K,annual,2014,gas oil combustion consumption by to the public,18.02388,TJ,N2O,3.9,kg/TJ,70.29313199999999,kg -bd558d37-65d3-38e9-bfb1-37b2a094ac62,SESCO,II.1.1,Chaco,AR-H,annual,2014,gas oil combustion consumption by to the public,1516.93164,TJ,CO2,74100.0,kg/TJ,112404634.524,kg -905a9dbe-cf64-3b38-9d0c-ce675694792a,SESCO,II.1.1,Chaco,AR-H,annual,2014,gas oil combustion consumption by to the public,1516.93164,TJ,CH4,3.9,kg/TJ,5916.033396,kg -905a9dbe-cf64-3b38-9d0c-ce675694792a,SESCO,II.1.1,Chaco,AR-H,annual,2014,gas oil combustion consumption by to the public,1516.93164,TJ,N2O,3.9,kg/TJ,5916.033396,kg -76d575bc-3bfb-367c-a15d-0e6a6654d4de,SESCO,II.1.1,Corrientes,AR-W,annual,2014,gas oil combustion consumption by to the public,648.96804,TJ,CO2,74100.0,kg/TJ,48088531.764,kg -331d9822-88c6-3023-ab28-4dcaaec5b0ca,SESCO,II.1.1,Corrientes,AR-W,annual,2014,gas oil combustion consumption by to the public,648.96804,TJ,CH4,3.9,kg/TJ,2530.975356,kg -331d9822-88c6-3023-ab28-4dcaaec5b0ca,SESCO,II.1.1,Corrientes,AR-W,annual,2014,gas oil combustion consumption by to the public,648.96804,TJ,N2O,3.9,kg/TJ,2530.975356,kg -4a0bd0e3-52b6-3ca3-9c21-f3b84bda42d4,SESCO,II.1.1,Córdoba,AR-X,annual,2014,gas oil combustion consumption by to the public,4946.3089199999995,TJ,CO2,74100.0,kg/TJ,366521490.97199994,kg -a43c62ab-254b-316a-b5b9-7d7620ab6c46,SESCO,II.1.1,Córdoba,AR-X,annual,2014,gas oil combustion consumption by to the public,4946.3089199999995,TJ,CH4,3.9,kg/TJ,19290.604787999997,kg -a43c62ab-254b-316a-b5b9-7d7620ab6c46,SESCO,II.1.1,Córdoba,AR-X,annual,2014,gas oil combustion consumption by to the public,4946.3089199999995,TJ,N2O,3.9,kg/TJ,19290.604787999997,kg -2c793915-0c41-3856-8bb1-5c4c8c416281,SESCO,II.1.1,Entre Rios,AR-E,annual,2014,gas oil combustion consumption by to the public,1215.9798,TJ,CO2,74100.0,kg/TJ,90104103.18,kg -73b55d57-a624-3c59-befd-e4a8c090a0ed,SESCO,II.1.1,Entre Rios,AR-E,annual,2014,gas oil combustion consumption by to the public,1215.9798,TJ,CH4,3.9,kg/TJ,4742.32122,kg -73b55d57-a624-3c59-befd-e4a8c090a0ed,SESCO,II.1.1,Entre Rios,AR-E,annual,2014,gas oil combustion consumption by to the public,1215.9798,TJ,N2O,3.9,kg/TJ,4742.32122,kg -3dd7ee6a-451a-3a06-8958-63313e33b02c,SESCO,II.1.1,Formosa,AR-P,annual,2014,gas oil combustion consumption by to the public,195.51756,TJ,CO2,74100.0,kg/TJ,14487851.196,kg -614b92fa-f44a-353b-89bd-c98fa1e7e650,SESCO,II.1.1,Formosa,AR-P,annual,2014,gas oil combustion consumption by to the public,195.51756,TJ,CH4,3.9,kg/TJ,762.518484,kg -614b92fa-f44a-353b-89bd-c98fa1e7e650,SESCO,II.1.1,Formosa,AR-P,annual,2014,gas oil combustion consumption by to the public,195.51756,TJ,N2O,3.9,kg/TJ,762.518484,kg -81ecbc00-32c2-38f9-93e7-9d6d731e102a,SESCO,II.1.1,Jujuy,AR-Y,annual,2014,gas oil combustion consumption by to the public,134.69147999999998,TJ,CO2,74100.0,kg/TJ,9980638.668,kg -21ecc724-45c1-3dab-8670-37ae9005cb32,SESCO,II.1.1,Jujuy,AR-Y,annual,2014,gas oil combustion consumption by to the public,134.69147999999998,TJ,CH4,3.9,kg/TJ,525.2967719999999,kg -21ecc724-45c1-3dab-8670-37ae9005cb32,SESCO,II.1.1,Jujuy,AR-Y,annual,2014,gas oil combustion consumption by to the public,134.69147999999998,TJ,N2O,3.9,kg/TJ,525.2967719999999,kg -13249716-fb32-398a-9e0f-507c216f040e,SESCO,II.1.1,La Pampa,AR-L,annual,2014,gas oil combustion consumption by to the public,500.262,TJ,CO2,74100.0,kg/TJ,37069414.2,kg -0d5fbfe5-bdd7-3090-82b3-fa15ba3a9cfa,SESCO,II.1.1,La Pampa,AR-L,annual,2014,gas oil combustion consumption by to the public,500.262,TJ,CH4,3.9,kg/TJ,1951.0218,kg -0d5fbfe5-bdd7-3090-82b3-fa15ba3a9cfa,SESCO,II.1.1,La Pampa,AR-L,annual,2014,gas oil combustion consumption by to the public,500.262,TJ,N2O,3.9,kg/TJ,1951.0218,kg -1450a308-a38a-333d-9a01-8982e2bc61f8,SESCO,II.1.1,La Rioja,AR-F,annual,2014,gas oil combustion consumption by to the public,248.97516,TJ,CO2,74100.0,kg/TJ,18449059.356,kg -79cb1424-14a6-37df-8c96-85fb7303ac88,SESCO,II.1.1,La Rioja,AR-F,annual,2014,gas oil combustion consumption by to the public,248.97516,TJ,CH4,3.9,kg/TJ,971.003124,kg -79cb1424-14a6-37df-8c96-85fb7303ac88,SESCO,II.1.1,La Rioja,AR-F,annual,2014,gas oil combustion consumption by to the public,248.97516,TJ,N2O,3.9,kg/TJ,971.003124,kg -642c698d-55e9-3fe3-9ccb-1f6511610255,SESCO,II.1.1,Mendoza,AR-M,annual,2014,gas oil combustion consumption by to the public,507.59436,TJ,CO2,74100.0,kg/TJ,37612742.076,kg -a384eaba-4a36-323f-8f0c-96d90aa6c0c9,SESCO,II.1.1,Mendoza,AR-M,annual,2014,gas oil combustion consumption by to the public,507.59436,TJ,CH4,3.9,kg/TJ,1979.618004,kg -a384eaba-4a36-323f-8f0c-96d90aa6c0c9,SESCO,II.1.1,Mendoza,AR-M,annual,2014,gas oil combustion consumption by to the public,507.59436,TJ,N2O,3.9,kg/TJ,1979.618004,kg -48a67d14-9f8c-3926-a3a2-4307f0972a23,SESCO,II.1.1,Misiones,AR-N,annual,2014,gas oil combustion consumption by to the public,1308.41088,TJ,CO2,74100.0,kg/TJ,96953246.20799999,kg -020a4530-3247-3d8d-a5ef-644a96efd938,SESCO,II.1.1,Misiones,AR-N,annual,2014,gas oil combustion consumption by to the public,1308.41088,TJ,CH4,3.9,kg/TJ,5102.8024319999995,kg -020a4530-3247-3d8d-a5ef-644a96efd938,SESCO,II.1.1,Misiones,AR-N,annual,2014,gas oil combustion consumption by to the public,1308.41088,TJ,N2O,3.9,kg/TJ,5102.8024319999995,kg -d7029da2-5d73-373c-ba25-0ccb4249929e,SESCO,II.1.1,Neuquén,AR-Q,annual,2014,gas oil combustion consumption by to the public,548.26548,TJ,CO2,74100.0,kg/TJ,40626472.068,kg -6f4d118d-0851-3f2d-a1a3-6623adcf3d6c,SESCO,II.1.1,Neuquén,AR-Q,annual,2014,gas oil combustion consumption by to the public,548.26548,TJ,CH4,3.9,kg/TJ,2138.235372,kg -6f4d118d-0851-3f2d-a1a3-6623adcf3d6c,SESCO,II.1.1,Neuquén,AR-Q,annual,2014,gas oil combustion consumption by to the public,548.26548,TJ,N2O,3.9,kg/TJ,2138.235372,kg -c24964b5-2e87-3681-90d1-696fd7177983,SESCO,II.1.1,Rio Negro,AR-R,annual,2014,gas oil combustion consumption by to the public,192.1584,TJ,CO2,74100.0,kg/TJ,14238937.44,kg -79df95ba-9513-37bd-b2d1-95e1ddfdf5d1,SESCO,II.1.1,Rio Negro,AR-R,annual,2014,gas oil combustion consumption by to the public,192.1584,TJ,CH4,3.9,kg/TJ,749.4177599999999,kg -79df95ba-9513-37bd-b2d1-95e1ddfdf5d1,SESCO,II.1.1,Rio Negro,AR-R,annual,2014,gas oil combustion consumption by to the public,192.1584,TJ,N2O,3.9,kg/TJ,749.4177599999999,kg -d700dc24-9b3c-30b3-ad0f-77cc7d67ecef,SESCO,II.1.1,Salta,AR-A,annual,2014,gas oil combustion consumption by to the public,162.9012,TJ,CO2,74100.0,kg/TJ,12070978.92,kg -70fb7fc4-30b3-389b-8d45-38e05d462402,SESCO,II.1.1,Salta,AR-A,annual,2014,gas oil combustion consumption by to the public,162.9012,TJ,CH4,3.9,kg/TJ,635.31468,kg -70fb7fc4-30b3-389b-8d45-38e05d462402,SESCO,II.1.1,Salta,AR-A,annual,2014,gas oil combustion consumption by to the public,162.9012,TJ,N2O,3.9,kg/TJ,635.31468,kg -b1584320-7615-3930-a807-ac992f8a6602,SESCO,II.1.1,San Juan,AR-J,annual,2014,gas oil combustion consumption by to the public,271.40568,TJ,CO2,74100.0,kg/TJ,20111160.888,kg -dcc801d8-319e-30e0-aca3-4ae0ae7d5798,SESCO,II.1.1,San Juan,AR-J,annual,2014,gas oil combustion consumption by to the public,271.40568,TJ,CH4,3.9,kg/TJ,1058.482152,kg -dcc801d8-319e-30e0-aca3-4ae0ae7d5798,SESCO,II.1.1,San Juan,AR-J,annual,2014,gas oil combustion consumption by to the public,271.40568,TJ,N2O,3.9,kg/TJ,1058.482152,kg -4325af29-f4a8-396e-8137-d3c7fd02a4e8,SESCO,II.1.1,San Luis,AR-D,annual,2014,gas oil combustion consumption by to the public,10.2942,TJ,CO2,74100.0,kg/TJ,762800.22,kg -27ce1da7-0398-362a-b2c2-a4e3abe580b4,SESCO,II.1.1,San Luis,AR-D,annual,2014,gas oil combustion consumption by to the public,10.2942,TJ,CH4,3.9,kg/TJ,40.14738,kg -27ce1da7-0398-362a-b2c2-a4e3abe580b4,SESCO,II.1.1,San Luis,AR-D,annual,2014,gas oil combustion consumption by to the public,10.2942,TJ,N2O,3.9,kg/TJ,40.14738,kg -1d43d6ec-4873-3b9f-a435-238dcee65b3f,SESCO,II.1.1,Santa Fe,AR-S,annual,2014,gas oil combustion consumption by to the public,5042.20752,TJ,CO2,74100.0,kg/TJ,373627577.232,kg -85653b1e-f824-38e9-b121-823817f9379a,SESCO,II.1.1,Santa Fe,AR-S,annual,2014,gas oil combustion consumption by to the public,5042.20752,TJ,CH4,3.9,kg/TJ,19664.609328,kg -85653b1e-f824-38e9-b121-823817f9379a,SESCO,II.1.1,Santa Fe,AR-S,annual,2014,gas oil combustion consumption by to the public,5042.20752,TJ,N2O,3.9,kg/TJ,19664.609328,kg -e2ac390b-121d-3f2b-bd1b-c5bf591a5dd7,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2014,gas oil combustion consumption by to the public,367.30428,TJ,CO2,74100.0,kg/TJ,27217247.148000002,kg -5fce08ad-e7f3-38c7-8fae-8bc9ff959829,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2014,gas oil combustion consumption by to the public,367.30428,TJ,CH4,3.9,kg/TJ,1432.486692,kg -5fce08ad-e7f3-38c7-8fae-8bc9ff959829,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2014,gas oil combustion consumption by to the public,367.30428,TJ,N2O,3.9,kg/TJ,1432.486692,kg -afc537cb-aa92-3b63-97e3-1689a94bc3cd,SESCO,II.1.1,Tucuman,AR-T,annual,2014,gas oil combustion consumption by to the public,666.34176,TJ,CO2,74100.0,kg/TJ,49375924.416,kg -412bf704-7184-39ce-9419-29fa1919844a,SESCO,II.1.1,Tucuman,AR-T,annual,2014,gas oil combustion consumption by to the public,666.34176,TJ,CH4,3.9,kg/TJ,2598.732864,kg -412bf704-7184-39ce-9419-29fa1919844a,SESCO,II.1.1,Tucuman,AR-T,annual,2014,gas oil combustion consumption by to the public,666.34176,TJ,N2O,3.9,kg/TJ,2598.732864,kg -76237d66-b3e6-3514-b717-3910e52f7a02,SESCO,II.1.1,Buenos Aires,AR-B,annual,2014,gas oil combustion consumption by to the public,5921.98236,TJ,CO2,74100.0,kg/TJ,438818892.876,kg -aaedbd18-def2-3f77-bb7c-dedbf50d2eb3,SESCO,II.1.1,Buenos Aires,AR-B,annual,2014,gas oil combustion consumption by to the public,5921.98236,TJ,CH4,3.9,kg/TJ,23095.731204,kg -aaedbd18-def2-3f77-bb7c-dedbf50d2eb3,SESCO,II.1.1,Buenos Aires,AR-B,annual,2014,gas oil combustion consumption by to the public,5921.98236,TJ,N2O,3.9,kg/TJ,23095.731204,kg -07d91176-5ee3-3b32-9f24-19eef1fdc033,SESCO,II.1.1,Capital Federal,AR-C,annual,2014,gas oil combustion consumption by to the public,906.0702,TJ,CO2,74100.0,kg/TJ,67139801.82,kg -861e7ce8-2e6e-3ccf-8670-aafedb63c2d6,SESCO,II.1.1,Capital Federal,AR-C,annual,2014,gas oil combustion consumption by to the public,906.0702,TJ,CH4,3.9,kg/TJ,3533.67378,kg -861e7ce8-2e6e-3ccf-8670-aafedb63c2d6,SESCO,II.1.1,Capital Federal,AR-C,annual,2014,gas oil combustion consumption by to the public,906.0702,TJ,N2O,3.9,kg/TJ,3533.67378,kg -a7a52f7d-8843-3c52-baaf-ec506adb4c0e,SESCO,II.1.1,Catamarca,AR-K,annual,2014,gas oil combustion consumption by to the public,26.11476,TJ,CO2,74100.0,kg/TJ,1935103.716,kg -5381d048-a964-3bd8-b99e-09cf250c5507,SESCO,II.1.1,Catamarca,AR-K,annual,2014,gas oil combustion consumption by to the public,26.11476,TJ,CH4,3.9,kg/TJ,101.847564,kg -5381d048-a964-3bd8-b99e-09cf250c5507,SESCO,II.1.1,Catamarca,AR-K,annual,2014,gas oil combustion consumption by to the public,26.11476,TJ,N2O,3.9,kg/TJ,101.847564,kg -fa7ab2eb-d995-392a-b1ed-f5a7900d8ed3,SESCO,II.1.1,Chaco,AR-H,annual,2014,gas oil combustion consumption by to the public,336.89124,TJ,CO2,74100.0,kg/TJ,24963640.884,kg -ee2f0791-69f8-338d-8f1b-70ee77b7b9a6,SESCO,II.1.1,Chaco,AR-H,annual,2014,gas oil combustion consumption by to the public,336.89124,TJ,CH4,3.9,kg/TJ,1313.875836,kg -ee2f0791-69f8-338d-8f1b-70ee77b7b9a6,SESCO,II.1.1,Chaco,AR-H,annual,2014,gas oil combustion consumption by to the public,336.89124,TJ,N2O,3.9,kg/TJ,1313.875836,kg -4aa25503-88eb-32c2-aaee-2332b4704bfe,SESCO,II.1.1,Corrientes,AR-W,annual,2014,gas oil combustion consumption by to the public,258.33024,TJ,CO2,74100.0,kg/TJ,19142270.784,kg -16093cd6-558c-39ee-8b8e-57248ec9ee99,SESCO,II.1.1,Corrientes,AR-W,annual,2014,gas oil combustion consumption by to the public,258.33024,TJ,CH4,3.9,kg/TJ,1007.487936,kg -16093cd6-558c-39ee-8b8e-57248ec9ee99,SESCO,II.1.1,Corrientes,AR-W,annual,2014,gas oil combustion consumption by to the public,258.33024,TJ,N2O,3.9,kg/TJ,1007.487936,kg -eeb93187-7ac0-35de-b6a5-61817285207f,SESCO,II.1.1,Córdoba,AR-X,annual,2014,gas oil combustion consumption by to the public,1172.34684,TJ,CO2,74100.0,kg/TJ,86870900.844,kg -4b6b8994-a260-3629-a65a-2bde6040a6db,SESCO,II.1.1,Córdoba,AR-X,annual,2014,gas oil combustion consumption by to the public,1172.34684,TJ,CH4,3.9,kg/TJ,4572.152676,kg -4b6b8994-a260-3629-a65a-2bde6040a6db,SESCO,II.1.1,Córdoba,AR-X,annual,2014,gas oil combustion consumption by to the public,1172.34684,TJ,N2O,3.9,kg/TJ,4572.152676,kg -f3078d08-d9e9-3889-8afd-2abb91eb6d13,SESCO,II.1.1,Entre Rios,AR-E,annual,2014,gas oil combustion consumption by to the public,598.11108,TJ,CO2,74100.0,kg/TJ,44320031.028000005,kg -89898a2a-2a56-3147-9d05-c393bb5c8c80,SESCO,II.1.1,Entre Rios,AR-E,annual,2014,gas oil combustion consumption by to the public,598.11108,TJ,CH4,3.9,kg/TJ,2332.633212,kg -89898a2a-2a56-3147-9d05-c393bb5c8c80,SESCO,II.1.1,Entre Rios,AR-E,annual,2014,gas oil combustion consumption by to the public,598.11108,TJ,N2O,3.9,kg/TJ,2332.633212,kg -c071294a-8368-3fea-949e-fff72f38b4d1,SESCO,II.1.1,Formosa,AR-P,annual,2014,gas oil combustion consumption by to the public,128.87616,TJ,CO2,74100.0,kg/TJ,9549723.456,kg -76723a70-244c-3a81-8446-64d4723fa616,SESCO,II.1.1,Formosa,AR-P,annual,2014,gas oil combustion consumption by to the public,128.87616,TJ,CH4,3.9,kg/TJ,502.61702399999996,kg -76723a70-244c-3a81-8446-64d4723fa616,SESCO,II.1.1,Formosa,AR-P,annual,2014,gas oil combustion consumption by to the public,128.87616,TJ,N2O,3.9,kg/TJ,502.61702399999996,kg -3f736329-5282-391b-b407-c3c6ba49d53c,SESCO,II.1.1,Jujuy,AR-Y,annual,2014,gas oil combustion consumption by to the public,48.25632,TJ,CO2,74100.0,kg/TJ,3575793.3120000004,kg -af46da06-0a20-30c2-86f4-101a0f6f4a77,SESCO,II.1.1,Jujuy,AR-Y,annual,2014,gas oil combustion consumption by to the public,48.25632,TJ,CH4,3.9,kg/TJ,188.199648,kg -af46da06-0a20-30c2-86f4-101a0f6f4a77,SESCO,II.1.1,Jujuy,AR-Y,annual,2014,gas oil combustion consumption by to the public,48.25632,TJ,N2O,3.9,kg/TJ,188.199648,kg -3c41b537-af43-3fa7-b5e8-f231bb9d770d,SESCO,II.1.1,La Pampa,AR-L,annual,2014,gas oil combustion consumption by to the public,192.37512,TJ,CO2,74100.0,kg/TJ,14254996.392,kg -e4933056-8ffe-361b-964e-84e6de52a2c8,SESCO,II.1.1,La Pampa,AR-L,annual,2014,gas oil combustion consumption by to the public,192.37512,TJ,CH4,3.9,kg/TJ,750.262968,kg -e4933056-8ffe-361b-964e-84e6de52a2c8,SESCO,II.1.1,La Pampa,AR-L,annual,2014,gas oil combustion consumption by to the public,192.37512,TJ,N2O,3.9,kg/TJ,750.262968,kg -2c5bdfb5-e7a1-3ffc-a7d7-38d44761d2cd,SESCO,II.1.1,La Rioja,AR-F,annual,2014,gas oil combustion consumption by to the public,96.65711999999999,TJ,CO2,74100.0,kg/TJ,7162292.591999999,kg -1c7c7148-a987-3a4c-9bff-7d41760f68c6,SESCO,II.1.1,La Rioja,AR-F,annual,2014,gas oil combustion consumption by to the public,96.65711999999999,TJ,CH4,3.9,kg/TJ,376.962768,kg -1c7c7148-a987-3a4c-9bff-7d41760f68c6,SESCO,II.1.1,La Rioja,AR-F,annual,2014,gas oil combustion consumption by to the public,96.65711999999999,TJ,N2O,3.9,kg/TJ,376.962768,kg -a010905a-083b-31c6-bde5-0aa7715005e0,SESCO,II.1.1,Mendoza,AR-M,annual,2014,gas oil combustion consumption by to the public,280.36343999999997,TJ,CO2,74100.0,kg/TJ,20774930.904,kg -af2acb66-3d3c-39fd-8cd5-a83844cd34c3,SESCO,II.1.1,Mendoza,AR-M,annual,2014,gas oil combustion consumption by to the public,280.36343999999997,TJ,CH4,3.9,kg/TJ,1093.4174159999998,kg -af2acb66-3d3c-39fd-8cd5-a83844cd34c3,SESCO,II.1.1,Mendoza,AR-M,annual,2014,gas oil combustion consumption by to the public,280.36343999999997,TJ,N2O,3.9,kg/TJ,1093.4174159999998,kg -daf250e4-3cef-3c4e-aedd-227ab45f274b,SESCO,II.1.1,Misiones,AR-N,annual,2014,gas oil combustion consumption by to the public,310.34304,TJ,CO2,74100.0,kg/TJ,22996419.264,kg -c7a302ea-a9c8-3a8a-85b2-3fbb07fda81c,SESCO,II.1.1,Misiones,AR-N,annual,2014,gas oil combustion consumption by to the public,310.34304,TJ,CH4,3.9,kg/TJ,1210.3378559999999,kg -c7a302ea-a9c8-3a8a-85b2-3fbb07fda81c,SESCO,II.1.1,Misiones,AR-N,annual,2014,gas oil combustion consumption by to the public,310.34304,TJ,N2O,3.9,kg/TJ,1210.3378559999999,kg -dda144b1-6653-3e9f-8971-7c59bb72b0c2,SESCO,II.1.1,Neuquén,AR-Q,annual,2014,gas oil combustion consumption by to the public,312.65472,TJ,CO2,74100.0,kg/TJ,23167714.752,kg -951677e2-be01-3c63-9652-916dc2c9b122,SESCO,II.1.1,Neuquén,AR-Q,annual,2014,gas oil combustion consumption by to the public,312.65472,TJ,CH4,3.9,kg/TJ,1219.353408,kg -951677e2-be01-3c63-9652-916dc2c9b122,SESCO,II.1.1,Neuquén,AR-Q,annual,2014,gas oil combustion consumption by to the public,312.65472,TJ,N2O,3.9,kg/TJ,1219.353408,kg -fb91683b-c121-3df1-b002-62a705311381,SESCO,II.1.1,Rio Negro,AR-R,annual,2014,gas oil combustion consumption by to the public,94.41768,TJ,CO2,74100.0,kg/TJ,6996350.088,kg -21520b08-51cc-3cd8-a5a7-74ff36524ea8,SESCO,II.1.1,Rio Negro,AR-R,annual,2014,gas oil combustion consumption by to the public,94.41768,TJ,CH4,3.9,kg/TJ,368.228952,kg -21520b08-51cc-3cd8-a5a7-74ff36524ea8,SESCO,II.1.1,Rio Negro,AR-R,annual,2014,gas oil combustion consumption by to the public,94.41768,TJ,N2O,3.9,kg/TJ,368.228952,kg -74430fd4-5b1b-39d9-80d0-20a22231b33e,SESCO,II.1.1,Salta,AR-A,annual,2014,gas oil combustion consumption by to the public,106.51787999999999,TJ,CO2,74100.0,kg/TJ,7892974.907999999,kg -b7c46a5e-784b-3335-a37e-ca77daa2ed06,SESCO,II.1.1,Salta,AR-A,annual,2014,gas oil combustion consumption by to the public,106.51787999999999,TJ,CH4,3.9,kg/TJ,415.41973199999995,kg -b7c46a5e-784b-3335-a37e-ca77daa2ed06,SESCO,II.1.1,Salta,AR-A,annual,2014,gas oil combustion consumption by to the public,106.51787999999999,TJ,N2O,3.9,kg/TJ,415.41973199999995,kg -41291a37-481b-351f-9be2-6044d9b9c1ac,SESCO,II.1.1,San Juan,AR-J,annual,2014,gas oil combustion consumption by to the public,56.38332,TJ,CO2,74100.0,kg/TJ,4178004.0119999996,kg -02d394ce-6c83-3f52-877b-afcdf4e4b85a,SESCO,II.1.1,San Juan,AR-J,annual,2014,gas oil combustion consumption by to the public,56.38332,TJ,CH4,3.9,kg/TJ,219.894948,kg -02d394ce-6c83-3f52-877b-afcdf4e4b85a,SESCO,II.1.1,San Juan,AR-J,annual,2014,gas oil combustion consumption by to the public,56.38332,TJ,N2O,3.9,kg/TJ,219.894948,kg -a7c4354c-1f54-3399-b0fa-ace00f61d3cd,SESCO,II.1.1,San Luis,AR-D,annual,2014,gas oil combustion consumption by to the public,14.55636,TJ,CO2,74100.0,kg/TJ,1078626.276,kg -47b155b2-309e-33d3-8154-6931e4c8ab4e,SESCO,II.1.1,San Luis,AR-D,annual,2014,gas oil combustion consumption by to the public,14.55636,TJ,CH4,3.9,kg/TJ,56.769804,kg -47b155b2-309e-33d3-8154-6931e4c8ab4e,SESCO,II.1.1,San Luis,AR-D,annual,2014,gas oil combustion consumption by to the public,14.55636,TJ,N2O,3.9,kg/TJ,56.769804,kg -930f13bb-0b55-35e0-afe4-f751638fcd30,SESCO,II.1.1,Santa Fe,AR-S,annual,2014,gas oil combustion consumption by to the public,1588.9910399999999,TJ,CO2,74100.0,kg/TJ,117744236.064,kg -be6fe528-4dbc-3123-9cb5-bdf1e16fd24f,SESCO,II.1.1,Santa Fe,AR-S,annual,2014,gas oil combustion consumption by to the public,1588.9910399999999,TJ,CH4,3.9,kg/TJ,6197.0650559999995,kg -be6fe528-4dbc-3123-9cb5-bdf1e16fd24f,SESCO,II.1.1,Santa Fe,AR-S,annual,2014,gas oil combustion consumption by to the public,1588.9910399999999,TJ,N2O,3.9,kg/TJ,6197.0650559999995,kg -ba745cc4-8f98-3b0a-90cb-3b844574b939,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2014,gas oil combustion consumption by to the public,154.01568,TJ,CO2,74100.0,kg/TJ,11412561.888,kg -ed19a0bf-fa76-30b2-b371-60d77b4eab4e,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2014,gas oil combustion consumption by to the public,154.01568,TJ,CH4,3.9,kg/TJ,600.661152,kg -ed19a0bf-fa76-30b2-b371-60d77b4eab4e,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2014,gas oil combustion consumption by to the public,154.01568,TJ,N2O,3.9,kg/TJ,600.661152,kg -1ad2572f-0fac-3d9d-9faf-b8751db9c069,SESCO,II.1.1,Tucuman,AR-T,annual,2014,gas oil combustion consumption by to the public,267.72144,TJ,CO2,74100.0,kg/TJ,19838158.703999996,kg -997d657a-a480-3426-851b-784a82f6d096,SESCO,II.1.1,Tucuman,AR-T,annual,2014,gas oil combustion consumption by to the public,267.72144,TJ,CH4,3.9,kg/TJ,1044.1136159999999,kg -997d657a-a480-3426-851b-784a82f6d096,SESCO,II.1.1,Tucuman,AR-T,annual,2014,gas oil combustion consumption by to the public,267.72144,TJ,N2O,3.9,kg/TJ,1044.1136159999999,kg -bc67b383-5256-3d23-b4da-d265c8800b27,SESCO,II.1.1,Neuquén,AR-Q,annual,2014,jet kerosene combustion consumption by to the public,0.31453,TJ,CO2,71500.0,kg/TJ,22488.894999999997,kg -3d669da5-4f47-36c6-be7f-cf9e8d64918f,SESCO,II.1.1,Neuquén,AR-Q,annual,2014,jet kerosene combustion consumption by to the public,0.31453,TJ,CH4,0.5,kg/TJ,0.157265,kg -44067b72-0648-3214-bb7f-545a02223b2c,SESCO,II.1.1,Neuquén,AR-Q,annual,2014,jet kerosene combustion consumption by to the public,0.31453,TJ,N2O,2.0,kg/TJ,0.62906,kg -138ad2f2-a7b4-3cd7-a5d8-3b4240a041a6,SESCO,I.3.1,Buenos Aires,AR-B,annual,2014,gasoline combustion consumption by petrochemical industries,42.1736,TJ,CO2,69300.0,kg/TJ,2922630.48,kg -ec9a42d4-19fa-39c4-8cca-0a07ca14ec1c,SESCO,I.3.1,Buenos Aires,AR-B,annual,2014,gasoline combustion consumption by petrochemical industries,42.1736,TJ,CH4,33.0,kg/TJ,1391.7288,kg -96337837-19e8-3326-a5c0-70b20214c16f,SESCO,I.3.1,Buenos Aires,AR-B,annual,2014,gasoline combustion consumption by petrochemical industries,42.1736,TJ,N2O,3.2,kg/TJ,134.95552,kg -1061a609-550a-3d8b-be85-67b71cd05cb9,SESCO,I.3.1,Capital Federal,AR-C,annual,2014,gas oil combustion consumption by petrochemical industries,2.92572,TJ,CO2,74100.0,kg/TJ,216795.852,kg -635458ba-22a9-3845-bfd6-6ddacd352c8f,SESCO,I.3.1,Capital Federal,AR-C,annual,2014,gas oil combustion consumption by petrochemical industries,2.92572,TJ,CH4,3.9,kg/TJ,11.410308,kg -635458ba-22a9-3845-bfd6-6ddacd352c8f,SESCO,I.3.1,Capital Federal,AR-C,annual,2014,gas oil combustion consumption by petrochemical industries,2.92572,TJ,N2O,3.9,kg/TJ,11.410308,kg -fcf1ea20-bded-34e2-9e59-2ee55e7be92b,SESCO,II.2.1,Buenos Aires,AR-B,annual,2014,gas oil combustion consumption by railway transport,567.37296,TJ,CO2,74100.0,kg/TJ,42042336.336,kg -6aaf261a-fa6c-30fe-ace9-ffc4ec9315f4,SESCO,II.2.1,Buenos Aires,AR-B,annual,2014,gas oil combustion consumption by railway transport,567.37296,TJ,CH4,3.9,kg/TJ,2212.754544,kg -6aaf261a-fa6c-30fe-ace9-ffc4ec9315f4,SESCO,II.2.1,Buenos Aires,AR-B,annual,2014,gas oil combustion consumption by railway transport,567.37296,TJ,N2O,3.9,kg/TJ,2212.754544,kg -f047d085-33e6-3bae-8945-e00b2f33a36c,SESCO,II.2.1,Capital Federal,AR-C,annual,2014,gas oil combustion consumption by railway transport,1049.39436,TJ,CO2,74100.0,kg/TJ,77760122.076,kg -23064763-fea8-368a-b207-b07a19d2f6b3,SESCO,II.2.1,Capital Federal,AR-C,annual,2014,gas oil combustion consumption by railway transport,1049.39436,TJ,CH4,3.9,kg/TJ,4092.638004,kg -23064763-fea8-368a-b207-b07a19d2f6b3,SESCO,II.2.1,Capital Federal,AR-C,annual,2014,gas oil combustion consumption by railway transport,1049.39436,TJ,N2O,3.9,kg/TJ,4092.638004,kg -4b29a378-3ea8-3ca9-b7d1-f6ea0449a5e4,SESCO,II.2.1,Santa Fe,AR-S,annual,2014,gas oil combustion consumption by railway transport,327.4278,TJ,CO2,74100.0,kg/TJ,24262399.98,kg -cd5adb59-b63c-3978-aeae-fa58aec546fc,SESCO,II.2.1,Santa Fe,AR-S,annual,2014,gas oil combustion consumption by railway transport,327.4278,TJ,CH4,3.9,kg/TJ,1276.96842,kg -cd5adb59-b63c-3978-aeae-fa58aec546fc,SESCO,II.2.1,Santa Fe,AR-S,annual,2014,gas oil combustion consumption by railway transport,327.4278,TJ,N2O,3.9,kg/TJ,1276.96842,kg -085eb847-98e8-3bd6-ba06-64ddafb46864,SESCO,II.2.1,Capital Federal,AR-C,annual,2014,gas oil combustion consumption by railway transport,1.58928,TJ,CO2,74100.0,kg/TJ,117765.648,kg -5115e60a-6307-398f-8d83-887dca01ab2b,SESCO,II.2.1,Capital Federal,AR-C,annual,2014,gas oil combustion consumption by railway transport,1.58928,TJ,CH4,3.9,kg/TJ,6.198192,kg -5115e60a-6307-398f-8d83-887dca01ab2b,SESCO,II.2.1,Capital Federal,AR-C,annual,2014,gas oil combustion consumption by railway transport,1.58928,TJ,N2O,3.9,kg/TJ,6.198192,kg -0bbdb932-2390-333a-b029-2f3bf380b211,SESCO,II.1.1,Buenos Aires,AR-B,annual,2014,gasoline combustion consumption by freight transport,21.8399,TJ,CO2,69300.0,kg/TJ,1513505.07,kg -d8e5c3b6-6388-32fe-9450-0397026de426,SESCO,II.1.1,Buenos Aires,AR-B,annual,2014,gasoline combustion consumption by freight transport,21.8399,TJ,CH4,33.0,kg/TJ,720.7167,kg -852efafa-9c85-31f8-a318-e63f39ead03d,SESCO,II.1.1,Buenos Aires,AR-B,annual,2014,gasoline combustion consumption by freight transport,21.8399,TJ,N2O,3.2,kg/TJ,69.88768,kg -e21e4696-ceed-3e36-b84a-da17906311ac,SESCO,II.1.1,Buenos Aires,AR-B,annual,2014,gas oil combustion consumption by freight transport,705.38748,TJ,CO2,74100.0,kg/TJ,52269212.268,kg -f328630b-8d64-3ca8-930b-46832c6ded98,SESCO,II.1.1,Buenos Aires,AR-B,annual,2014,gas oil combustion consumption by freight transport,705.38748,TJ,CH4,3.9,kg/TJ,2751.011172,kg -f328630b-8d64-3ca8-930b-46832c6ded98,SESCO,II.1.1,Buenos Aires,AR-B,annual,2014,gas oil combustion consumption by freight transport,705.38748,TJ,N2O,3.9,kg/TJ,2751.011172,kg -257b8172-1e60-3bc1-9712-9c28cbacfcb8,SESCO,II.1.1,Capital Federal,AR-C,annual,2014,gas oil combustion consumption by freight transport,185.76516,TJ,CO2,74100.0,kg/TJ,13765198.356,kg -66ced78c-13df-36e9-9f82-2e7314663417,SESCO,II.1.1,Capital Federal,AR-C,annual,2014,gas oil combustion consumption by freight transport,185.76516,TJ,CH4,3.9,kg/TJ,724.4841240000001,kg -66ced78c-13df-36e9-9f82-2e7314663417,SESCO,II.1.1,Capital Federal,AR-C,annual,2014,gas oil combustion consumption by freight transport,185.76516,TJ,N2O,3.9,kg/TJ,724.4841240000001,kg -32fbb736-fe17-3ba7-aaca-6082b6f232de,SESCO,II.1.1,Córdoba,AR-X,annual,2014,gas oil combustion consumption by freight transport,139.31484,TJ,CO2,74100.0,kg/TJ,10323229.644,kg -5f9c93cb-4198-3966-877e-86e0f16ab71b,SESCO,II.1.1,Córdoba,AR-X,annual,2014,gas oil combustion consumption by freight transport,139.31484,TJ,CH4,3.9,kg/TJ,543.327876,kg -5f9c93cb-4198-3966-877e-86e0f16ab71b,SESCO,II.1.1,Córdoba,AR-X,annual,2014,gas oil combustion consumption by freight transport,139.31484,TJ,N2O,3.9,kg/TJ,543.327876,kg -bdee06f0-17e0-36a5-9cfc-b68ac7d207d0,SESCO,II.1.1,Buenos Aires,AR-B,annual,2014,gas oil combustion consumption by freight transport,0.7223999999999999,TJ,CO2,74100.0,kg/TJ,53529.84,kg -da53f9c5-7dc1-3826-aa52-8fc8275909da,SESCO,II.1.1,Buenos Aires,AR-B,annual,2014,gas oil combustion consumption by freight transport,0.7223999999999999,TJ,CH4,3.9,kg/TJ,2.81736,kg -da53f9c5-7dc1-3826-aa52-8fc8275909da,SESCO,II.1.1,Buenos Aires,AR-B,annual,2014,gas oil combustion consumption by freight transport,0.7223999999999999,TJ,N2O,3.9,kg/TJ,2.81736,kg -7e8681c7-ebf5-3094-ab5d-a8d1f8076bb0,SESCO,II.1.1,Córdoba,AR-X,annual,2014,gas oil combustion consumption by freight transport,1.58928,TJ,CO2,74100.0,kg/TJ,117765.648,kg -eef29059-71ee-3d99-89a3-143b1e42ecf7,SESCO,II.1.1,Córdoba,AR-X,annual,2014,gas oil combustion consumption by freight transport,1.58928,TJ,CH4,3.9,kg/TJ,6.198192,kg -eef29059-71ee-3d99-89a3-143b1e42ecf7,SESCO,II.1.1,Córdoba,AR-X,annual,2014,gas oil combustion consumption by freight transport,1.58928,TJ,N2O,3.9,kg/TJ,6.198192,kg -8e9ed68d-c673-3310-b1cd-5f0c946986ba,SESCO,II.1.1,Buenos Aires,AR-B,annual,2014,gas oil combustion consumption by public passenger transport,33.12204,TJ,CO2,74100.0,kg/TJ,2454343.164,kg -029405ba-d2a9-37ec-b803-220ae55711a3,SESCO,II.1.1,Buenos Aires,AR-B,annual,2014,gas oil combustion consumption by public passenger transport,33.12204,TJ,CH4,3.9,kg/TJ,129.17595599999999,kg -029405ba-d2a9-37ec-b803-220ae55711a3,SESCO,II.1.1,Buenos Aires,AR-B,annual,2014,gas oil combustion consumption by public passenger transport,33.12204,TJ,N2O,3.9,kg/TJ,129.17595599999999,kg -26451670-9e37-37ed-881f-0820224fa72b,SESCO,II.1.1,Capital Federal,AR-C,annual,2014,gas oil combustion consumption by public passenger transport,14.37576,TJ,CO2,74100.0,kg/TJ,1065243.8159999999,kg -9fb2ef86-f505-3b9a-8d09-d79e3fa15153,SESCO,II.1.1,Capital Federal,AR-C,annual,2014,gas oil combustion consumption by public passenger transport,14.37576,TJ,CH4,3.9,kg/TJ,56.065464,kg -9fb2ef86-f505-3b9a-8d09-d79e3fa15153,SESCO,II.1.1,Capital Federal,AR-C,annual,2014,gas oil combustion consumption by public passenger transport,14.37576,TJ,N2O,3.9,kg/TJ,56.065464,kg -f58b96d6-83d1-3a50-8d70-fd8216d381fe,SESCO,II.1.1,Misiones,AR-N,annual,2014,gas oil combustion consumption by public passenger transport,340.53936,TJ,CO2,74100.0,kg/TJ,25233966.575999998,kg -6ba536a8-70b8-3228-b8f4-84b62bd8f9a7,SESCO,II.1.1,Misiones,AR-N,annual,2014,gas oil combustion consumption by public passenger transport,340.53936,TJ,CH4,3.9,kg/TJ,1328.103504,kg -6ba536a8-70b8-3228-b8f4-84b62bd8f9a7,SESCO,II.1.1,Misiones,AR-N,annual,2014,gas oil combustion consumption by public passenger transport,340.53936,TJ,N2O,3.9,kg/TJ,1328.103504,kg -a8d29ee4-dd8f-3768-9af7-bde07f079d75,SESCO,II.5.1,Buenos Aires,AR-B,annual,2014,gasoline combustion consumption by agriculture machines,8.7271,TJ,CO2,69300.0,kg/TJ,604788.03,kg -14a8a9cf-2b3d-3c39-9b3a-0cbd72f6b53a,SESCO,II.5.1,Buenos Aires,AR-B,annual,2014,gasoline combustion consumption by agriculture machines,8.7271,TJ,CH4,33.0,kg/TJ,287.9943,kg -7ea212ec-5848-3b67-a7d3-c2cb2fd58ae8,SESCO,II.5.1,Buenos Aires,AR-B,annual,2014,gasoline combustion consumption by agriculture machines,8.7271,TJ,N2O,3.2,kg/TJ,27.926720000000003,kg -d46a6409-7e45-3139-87ac-71fca6719767,SESCO,II.5.1,Buenos Aires,AR-B,annual,2014,gas oil combustion consumption by agriculture machines,9231.0078,TJ,CO2,74100.0,kg/TJ,684017677.9799999,kg -8cb925f9-ef9a-3133-a302-5e82f0db86c6,SESCO,II.5.1,Buenos Aires,AR-B,annual,2014,gas oil combustion consumption by agriculture machines,9231.0078,TJ,CH4,3.9,kg/TJ,36000.93042,kg -8cb925f9-ef9a-3133-a302-5e82f0db86c6,SESCO,II.5.1,Buenos Aires,AR-B,annual,2014,gas oil combustion consumption by agriculture machines,9231.0078,TJ,N2O,3.9,kg/TJ,36000.93042,kg -326ed521-65d3-3a5c-9a3b-b97ecce4c002,SESCO,II.5.1,Capital Federal,AR-C,annual,2014,gas oil combustion consumption by agriculture machines,18.89076,TJ,CO2,74100.0,kg/TJ,1399805.316,kg -9b473fc5-fbfc-3619-bc74-9f301216b662,SESCO,II.5.1,Capital Federal,AR-C,annual,2014,gas oil combustion consumption by agriculture machines,18.89076,TJ,CH4,3.9,kg/TJ,73.673964,kg -9b473fc5-fbfc-3619-bc74-9f301216b662,SESCO,II.5.1,Capital Federal,AR-C,annual,2014,gas oil combustion consumption by agriculture machines,18.89076,TJ,N2O,3.9,kg/TJ,73.673964,kg -6df99718-2cf5-3ca9-94c5-51c313955e8f,SESCO,II.5.1,Catamarca,AR-K,annual,2014,gas oil combustion consumption by agriculture machines,91.09464,TJ,CO2,74100.0,kg/TJ,6750112.824,kg -20e04904-789d-3c48-8ffa-627b585f0dd9,SESCO,II.5.1,Catamarca,AR-K,annual,2014,gas oil combustion consumption by agriculture machines,91.09464,TJ,CH4,3.9,kg/TJ,355.269096,kg -20e04904-789d-3c48-8ffa-627b585f0dd9,SESCO,II.5.1,Catamarca,AR-K,annual,2014,gas oil combustion consumption by agriculture machines,91.09464,TJ,N2O,3.9,kg/TJ,355.269096,kg -87a47d1f-05ec-354e-a9ab-e5fa857eec00,SESCO,II.5.1,Chaco,AR-H,annual,2014,gas oil combustion consumption by agriculture machines,1385.4548399999999,TJ,CO2,74100.0,kg/TJ,102662203.644,kg -ba6b138b-a6d4-35c8-a2f0-c43ba1348903,SESCO,II.5.1,Chaco,AR-H,annual,2014,gas oil combustion consumption by agriculture machines,1385.4548399999999,TJ,CH4,3.9,kg/TJ,5403.273875999999,kg -ba6b138b-a6d4-35c8-a2f0-c43ba1348903,SESCO,II.5.1,Chaco,AR-H,annual,2014,gas oil combustion consumption by agriculture machines,1385.4548399999999,TJ,N2O,3.9,kg/TJ,5403.273875999999,kg -d701cdce-b759-35c4-b94a-bddae2f2af39,SESCO,II.5.1,Chubut,AR-U,annual,2014,gas oil combustion consumption by agriculture machines,19.21584,TJ,CO2,74100.0,kg/TJ,1423893.744,kg -5a1190be-9cc5-3cca-8fc4-5d1d838d9c57,SESCO,II.5.1,Chubut,AR-U,annual,2014,gas oil combustion consumption by agriculture machines,19.21584,TJ,CH4,3.9,kg/TJ,74.941776,kg -5a1190be-9cc5-3cca-8fc4-5d1d838d9c57,SESCO,II.5.1,Chubut,AR-U,annual,2014,gas oil combustion consumption by agriculture machines,19.21584,TJ,N2O,3.9,kg/TJ,74.941776,kg -fa4babb1-fc0d-383a-a717-209b052fbddf,SESCO,II.5.1,Corrientes,AR-W,annual,2014,gas oil combustion consumption by agriculture machines,418.59468,TJ,CO2,74100.0,kg/TJ,31017865.788,kg -74ee0bdd-4467-3ec4-a579-cca3d237a454,SESCO,II.5.1,Corrientes,AR-W,annual,2014,gas oil combustion consumption by agriculture machines,418.59468,TJ,CH4,3.9,kg/TJ,1632.5192519999998,kg -74ee0bdd-4467-3ec4-a579-cca3d237a454,SESCO,II.5.1,Corrientes,AR-W,annual,2014,gas oil combustion consumption by agriculture machines,418.59468,TJ,N2O,3.9,kg/TJ,1632.5192519999998,kg -11ee677e-c6d0-358e-b89f-ac8b018c26c6,SESCO,II.5.1,Córdoba,AR-X,annual,2014,gas oil combustion consumption by agriculture machines,7946.90568,TJ,CO2,74100.0,kg/TJ,588865710.888,kg -5a3597ae-bb8f-3188-a74e-ce946cac5fea,SESCO,II.5.1,Córdoba,AR-X,annual,2014,gas oil combustion consumption by agriculture machines,7946.90568,TJ,CH4,3.9,kg/TJ,30992.932151999998,kg -5a3597ae-bb8f-3188-a74e-ce946cac5fea,SESCO,II.5.1,Córdoba,AR-X,annual,2014,gas oil combustion consumption by agriculture machines,7946.90568,TJ,N2O,3.9,kg/TJ,30992.932151999998,kg -f00e2325-3f0c-3f38-bb58-ade253cf6871,SESCO,II.5.1,Entre Rios,AR-E,annual,2014,gas oil combustion consumption by agriculture machines,2325.1166399999997,TJ,CO2,74100.0,kg/TJ,172291143.024,kg -1dc6064b-1fc7-3eb9-8c0f-a09ffb867630,SESCO,II.5.1,Entre Rios,AR-E,annual,2014,gas oil combustion consumption by agriculture machines,2325.1166399999997,TJ,CH4,3.9,kg/TJ,9067.954896,kg -1dc6064b-1fc7-3eb9-8c0f-a09ffb867630,SESCO,II.5.1,Entre Rios,AR-E,annual,2014,gas oil combustion consumption by agriculture machines,2325.1166399999997,TJ,N2O,3.9,kg/TJ,9067.954896,kg -bec46821-b637-3fa3-8b0d-c57a92b1d805,SESCO,II.5.1,Formosa,AR-P,annual,2014,gas oil combustion consumption by agriculture machines,367.91832,TJ,CO2,74100.0,kg/TJ,27262747.512,kg -5483f7b4-3c64-3d19-8f89-73dc16df0490,SESCO,II.5.1,Formosa,AR-P,annual,2014,gas oil combustion consumption by agriculture machines,367.91832,TJ,CH4,3.9,kg/TJ,1434.8814479999999,kg -5483f7b4-3c64-3d19-8f89-73dc16df0490,SESCO,II.5.1,Formosa,AR-P,annual,2014,gas oil combustion consumption by agriculture machines,367.91832,TJ,N2O,3.9,kg/TJ,1434.8814479999999,kg -f5a63c6e-cd75-3152-bf58-e64f291d4aa0,SESCO,II.5.1,Jujuy,AR-Y,annual,2014,gas oil combustion consumption by agriculture machines,1085.98392,TJ,CO2,74100.0,kg/TJ,80471408.47199999,kg -e6f8f373-0d25-360a-b51e-3aea0e0adb79,SESCO,II.5.1,Jujuy,AR-Y,annual,2014,gas oil combustion consumption by agriculture machines,1085.98392,TJ,CH4,3.9,kg/TJ,4235.337288,kg -e6f8f373-0d25-360a-b51e-3aea0e0adb79,SESCO,II.5.1,Jujuy,AR-Y,annual,2014,gas oil combustion consumption by agriculture machines,1085.98392,TJ,N2O,3.9,kg/TJ,4235.337288,kg -6e00544e-4b2b-35ea-b6f4-537b697fc7d4,SESCO,II.5.1,La Pampa,AR-L,annual,2014,gas oil combustion consumption by agriculture machines,2042.51376,TJ,CO2,74100.0,kg/TJ,151350269.616,kg -d438e46a-c7b6-3b22-8f67-986b16db1161,SESCO,II.5.1,La Pampa,AR-L,annual,2014,gas oil combustion consumption by agriculture machines,2042.51376,TJ,CH4,3.9,kg/TJ,7965.803664,kg -d438e46a-c7b6-3b22-8f67-986b16db1161,SESCO,II.5.1,La Pampa,AR-L,annual,2014,gas oil combustion consumption by agriculture machines,2042.51376,TJ,N2O,3.9,kg/TJ,7965.803664,kg -27c17b51-c18b-3ead-9ccf-d6b806c8c5e1,SESCO,II.5.1,Mendoza,AR-M,annual,2014,gas oil combustion consumption by agriculture machines,466.95936,TJ,CO2,74100.0,kg/TJ,34601688.576,kg -eaf217db-0ccd-3b2b-95d2-7ff5dce51aaa,SESCO,II.5.1,Mendoza,AR-M,annual,2014,gas oil combustion consumption by agriculture machines,466.95936,TJ,CH4,3.9,kg/TJ,1821.141504,kg -eaf217db-0ccd-3b2b-95d2-7ff5dce51aaa,SESCO,II.5.1,Mendoza,AR-M,annual,2014,gas oil combustion consumption by agriculture machines,466.95936,TJ,N2O,3.9,kg/TJ,1821.141504,kg -c12e48c4-cc84-3c97-8074-afa18a9e9160,SESCO,II.5.1,Misiones,AR-N,annual,2014,gas oil combustion consumption by agriculture machines,1015.47768,TJ,CO2,74100.0,kg/TJ,75246896.088,kg -46cd2d39-5a6c-3a85-bc63-065b4848797e,SESCO,II.5.1,Misiones,AR-N,annual,2014,gas oil combustion consumption by agriculture machines,1015.47768,TJ,CH4,3.9,kg/TJ,3960.362952,kg -46cd2d39-5a6c-3a85-bc63-065b4848797e,SESCO,II.5.1,Misiones,AR-N,annual,2014,gas oil combustion consumption by agriculture machines,1015.47768,TJ,N2O,3.9,kg/TJ,3960.362952,kg -0795293b-ff9e-3e0f-95ba-2c869f527796,SESCO,II.5.1,Neuquén,AR-Q,annual,2014,gas oil combustion consumption by agriculture machines,0.10836,TJ,CO2,74100.0,kg/TJ,8029.476,kg -95119bda-fa96-3950-817a-b1b57e2ef13e,SESCO,II.5.1,Neuquén,AR-Q,annual,2014,gas oil combustion consumption by agriculture machines,0.10836,TJ,CH4,3.9,kg/TJ,0.422604,kg -95119bda-fa96-3950-817a-b1b57e2ef13e,SESCO,II.5.1,Neuquén,AR-Q,annual,2014,gas oil combustion consumption by agriculture machines,0.10836,TJ,N2O,3.9,kg/TJ,0.422604,kg -9b7eb59c-4e5d-321f-afe3-6b9956308347,SESCO,II.5.1,Rio Negro,AR-R,annual,2014,gas oil combustion consumption by agriculture machines,201.69407999999999,TJ,CO2,74100.0,kg/TJ,14945531.328,kg -cb643db9-96be-38f8-9eb6-734dc1a4ab89,SESCO,II.5.1,Rio Negro,AR-R,annual,2014,gas oil combustion consumption by agriculture machines,201.69407999999999,TJ,CH4,3.9,kg/TJ,786.606912,kg -cb643db9-96be-38f8-9eb6-734dc1a4ab89,SESCO,II.5.1,Rio Negro,AR-R,annual,2014,gas oil combustion consumption by agriculture machines,201.69407999999999,TJ,N2O,3.9,kg/TJ,786.606912,kg -1629c483-a1bd-3298-8b2b-a65d3c2411f8,SESCO,II.5.1,Salta,AR-A,annual,2014,gas oil combustion consumption by agriculture machines,1891.67664,TJ,CO2,74100.0,kg/TJ,140173239.024,kg -e4fc38aa-861a-3cef-8cbf-2d7393044ece,SESCO,II.5.1,Salta,AR-A,annual,2014,gas oil combustion consumption by agriculture machines,1891.67664,TJ,CH4,3.9,kg/TJ,7377.538895999999,kg -e4fc38aa-861a-3cef-8cbf-2d7393044ece,SESCO,II.5.1,Salta,AR-A,annual,2014,gas oil combustion consumption by agriculture machines,1891.67664,TJ,N2O,3.9,kg/TJ,7377.538895999999,kg -7c0815e4-b50c-3188-af60-dbc67aab74cd,SESCO,II.5.1,San Luis,AR-D,annual,2014,gas oil combustion consumption by agriculture machines,610.03068,TJ,CO2,74100.0,kg/TJ,45203273.388,kg -8084c344-de5d-3f84-8892-57145a01df61,SESCO,II.5.1,San Luis,AR-D,annual,2014,gas oil combustion consumption by agriculture machines,610.03068,TJ,CH4,3.9,kg/TJ,2379.119652,kg -8084c344-de5d-3f84-8892-57145a01df61,SESCO,II.5.1,San Luis,AR-D,annual,2014,gas oil combustion consumption by agriculture machines,610.03068,TJ,N2O,3.9,kg/TJ,2379.119652,kg -595b9dee-606c-3371-abf3-d1252e8a6c16,SESCO,II.5.1,Santa Cruz,AR-Z,annual,2014,gas oil combustion consumption by agriculture machines,1.76988,TJ,CO2,74100.0,kg/TJ,131148.10799999998,kg -af2a6152-ac33-36a3-93ea-d6a021cd65f0,SESCO,II.5.1,Santa Cruz,AR-Z,annual,2014,gas oil combustion consumption by agriculture machines,1.76988,TJ,CH4,3.9,kg/TJ,6.902531999999999,kg -af2a6152-ac33-36a3-93ea-d6a021cd65f0,SESCO,II.5.1,Santa Cruz,AR-Z,annual,2014,gas oil combustion consumption by agriculture machines,1.76988,TJ,N2O,3.9,kg/TJ,6.902531999999999,kg -bc805d94-1c8b-33b2-acaa-9078a8061e48,SESCO,II.5.1,Santa Fe,AR-S,annual,2014,gas oil combustion consumption by agriculture machines,6437.34252,TJ,CO2,74100.0,kg/TJ,477007080.732,kg -2f08f161-0195-3c78-b7df-cc3a88a67aea,SESCO,II.5.1,Santa Fe,AR-S,annual,2014,gas oil combustion consumption by agriculture machines,6437.34252,TJ,CH4,3.9,kg/TJ,25105.635828,kg -2f08f161-0195-3c78-b7df-cc3a88a67aea,SESCO,II.5.1,Santa Fe,AR-S,annual,2014,gas oil combustion consumption by agriculture machines,6437.34252,TJ,N2O,3.9,kg/TJ,25105.635828,kg -779da3f1-2aff-3d00-af80-659be145af5d,SESCO,II.5.1,Santiago del Estero,AR-G,annual,2014,gas oil combustion consumption by agriculture machines,1738.2749999999999,TJ,CO2,74100.0,kg/TJ,128806177.49999999,kg -2327e88b-ab98-3405-9343-8db145fec055,SESCO,II.5.1,Santiago del Estero,AR-G,annual,2014,gas oil combustion consumption by agriculture machines,1738.2749999999999,TJ,CH4,3.9,kg/TJ,6779.272499999999,kg -2327e88b-ab98-3405-9343-8db145fec055,SESCO,II.5.1,Santiago del Estero,AR-G,annual,2014,gas oil combustion consumption by agriculture machines,1738.2749999999999,TJ,N2O,3.9,kg/TJ,6779.272499999999,kg -2790679c-7178-36b4-a465-fa95f858a1b5,SESCO,II.5.1,Tucuman,AR-T,annual,2014,gas oil combustion consumption by agriculture machines,1476.9468,TJ,CO2,74100.0,kg/TJ,109441757.88,kg -a52f736b-d1c7-3913-afa0-27b125c884dd,SESCO,II.5.1,Tucuman,AR-T,annual,2014,gas oil combustion consumption by agriculture machines,1476.9468,TJ,CH4,3.9,kg/TJ,5760.092519999999,kg -a52f736b-d1c7-3913-afa0-27b125c884dd,SESCO,II.5.1,Tucuman,AR-T,annual,2014,gas oil combustion consumption by agriculture machines,1476.9468,TJ,N2O,3.9,kg/TJ,5760.092519999999,kg -32dcbe39-f96d-35dd-923e-c6131e8f38a6,SESCO,II.5.1,Buenos Aires,AR-B,annual,2014,gas oil combustion consumption by agriculture machines,130.06812,TJ,CO2,74100.0,kg/TJ,9638047.692,kg -b90dff1f-e886-3ab6-8342-6d00063504a2,SESCO,II.5.1,Buenos Aires,AR-B,annual,2014,gas oil combustion consumption by agriculture machines,130.06812,TJ,CH4,3.9,kg/TJ,507.26566799999995,kg -b90dff1f-e886-3ab6-8342-6d00063504a2,SESCO,II.5.1,Buenos Aires,AR-B,annual,2014,gas oil combustion consumption by agriculture machines,130.06812,TJ,N2O,3.9,kg/TJ,507.26566799999995,kg -60a99f73-c378-350e-98de-953fa71cf459,SESCO,II.5.1,Catamarca,AR-K,annual,2014,gas oil combustion consumption by agriculture machines,7.0434,TJ,CO2,74100.0,kg/TJ,521915.94,kg -aa496ba2-caaa-38d6-b5b1-506b1c81e22a,SESCO,II.5.1,Catamarca,AR-K,annual,2014,gas oil combustion consumption by agriculture machines,7.0434,TJ,CH4,3.9,kg/TJ,27.46926,kg -aa496ba2-caaa-38d6-b5b1-506b1c81e22a,SESCO,II.5.1,Catamarca,AR-K,annual,2014,gas oil combustion consumption by agriculture machines,7.0434,TJ,N2O,3.9,kg/TJ,27.46926,kg -ea2773cc-d8a2-3942-b1fe-262d9d7a7a65,SESCO,II.5.1,Chaco,AR-H,annual,2014,gas oil combustion consumption by agriculture machines,44.64432,TJ,CO2,74100.0,kg/TJ,3308144.112,kg -33fea331-768e-3aef-be3c-98d282bccb55,SESCO,II.5.1,Chaco,AR-H,annual,2014,gas oil combustion consumption by agriculture machines,44.64432,TJ,CH4,3.9,kg/TJ,174.11284799999999,kg -33fea331-768e-3aef-be3c-98d282bccb55,SESCO,II.5.1,Chaco,AR-H,annual,2014,gas oil combustion consumption by agriculture machines,44.64432,TJ,N2O,3.9,kg/TJ,174.11284799999999,kg -c9e8630f-c13e-3a28-b044-46ef96068607,SESCO,II.5.1,Chubut,AR-U,annual,2014,gas oil combustion consumption by agriculture machines,0.32508,TJ,CO2,74100.0,kg/TJ,24088.428,kg -920b32bc-2159-3418-a13b-0a98d54d2419,SESCO,II.5.1,Chubut,AR-U,annual,2014,gas oil combustion consumption by agriculture machines,0.32508,TJ,CH4,3.9,kg/TJ,1.267812,kg -920b32bc-2159-3418-a13b-0a98d54d2419,SESCO,II.5.1,Chubut,AR-U,annual,2014,gas oil combustion consumption by agriculture machines,0.32508,TJ,N2O,3.9,kg/TJ,1.267812,kg -56d6b5dd-66b5-3c8d-8f98-595ac6cfbf11,SESCO,II.5.1,Corrientes,AR-W,annual,2014,gas oil combustion consumption by agriculture machines,30.23244,TJ,CO2,74100.0,kg/TJ,2240223.804,kg -e14a65ad-9078-3df2-99e4-711333108301,SESCO,II.5.1,Corrientes,AR-W,annual,2014,gas oil combustion consumption by agriculture machines,30.23244,TJ,CH4,3.9,kg/TJ,117.906516,kg -e14a65ad-9078-3df2-99e4-711333108301,SESCO,II.5.1,Corrientes,AR-W,annual,2014,gas oil combustion consumption by agriculture machines,30.23244,TJ,N2O,3.9,kg/TJ,117.906516,kg -1ac908de-927c-3386-9c99-8654c17207c7,SESCO,II.5.1,Córdoba,AR-X,annual,2014,gas oil combustion consumption by agriculture machines,27.4512,TJ,CO2,74100.0,kg/TJ,2034133.92,kg -604cf9b0-5597-3f43-98b2-2141ce8ee3c3,SESCO,II.5.1,Córdoba,AR-X,annual,2014,gas oil combustion consumption by agriculture machines,27.4512,TJ,CH4,3.9,kg/TJ,107.05968,kg -604cf9b0-5597-3f43-98b2-2141ce8ee3c3,SESCO,II.5.1,Córdoba,AR-X,annual,2014,gas oil combustion consumption by agriculture machines,27.4512,TJ,N2O,3.9,kg/TJ,107.05968,kg -12922e33-37c7-3088-9606-7f9d54b992d3,SESCO,II.5.1,Entre Rios,AR-E,annual,2014,gas oil combustion consumption by agriculture machines,5.9597999999999995,TJ,CO2,74100.0,kg/TJ,441621.18,kg -f5e42838-2a63-3999-a975-1c2e5e040377,SESCO,II.5.1,Entre Rios,AR-E,annual,2014,gas oil combustion consumption by agriculture machines,5.9597999999999995,TJ,CH4,3.9,kg/TJ,23.243219999999997,kg -f5e42838-2a63-3999-a975-1c2e5e040377,SESCO,II.5.1,Entre Rios,AR-E,annual,2014,gas oil combustion consumption by agriculture machines,5.9597999999999995,TJ,N2O,3.9,kg/TJ,23.243219999999997,kg -aafa8fd2-0ad4-310e-9d10-27443fff0ad9,SESCO,II.5.1,Jujuy,AR-Y,annual,2014,gas oil combustion consumption by agriculture machines,13.3644,TJ,CO2,74100.0,kg/TJ,990302.04,kg -56dbca05-65e9-309a-9629-9b9f7c9cf183,SESCO,II.5.1,Jujuy,AR-Y,annual,2014,gas oil combustion consumption by agriculture machines,13.3644,TJ,CH4,3.9,kg/TJ,52.121159999999996,kg -56dbca05-65e9-309a-9629-9b9f7c9cf183,SESCO,II.5.1,Jujuy,AR-Y,annual,2014,gas oil combustion consumption by agriculture machines,13.3644,TJ,N2O,3.9,kg/TJ,52.121159999999996,kg -2e8dea21-6fa9-3043-85d2-7c13ecc90f55,SESCO,II.5.1,La Pampa,AR-L,annual,2014,gas oil combustion consumption by agriculture machines,74.98512,TJ,CO2,74100.0,kg/TJ,5556397.392,kg -dc49de2b-e92c-3064-aaf3-01bd6e597f39,SESCO,II.5.1,La Pampa,AR-L,annual,2014,gas oil combustion consumption by agriculture machines,74.98512,TJ,CH4,3.9,kg/TJ,292.441968,kg -dc49de2b-e92c-3064-aaf3-01bd6e597f39,SESCO,II.5.1,La Pampa,AR-L,annual,2014,gas oil combustion consumption by agriculture machines,74.98512,TJ,N2O,3.9,kg/TJ,292.441968,kg -55a08202-2816-3ade-b8a1-43fafca45a55,SESCO,II.5.1,Misiones,AR-N,annual,2014,gas oil combustion consumption by agriculture machines,14.88144,TJ,CO2,74100.0,kg/TJ,1102714.704,kg -091e6eef-1647-3187-a368-e4c2a2f795b2,SESCO,II.5.1,Misiones,AR-N,annual,2014,gas oil combustion consumption by agriculture machines,14.88144,TJ,CH4,3.9,kg/TJ,58.037616,kg -091e6eef-1647-3187-a368-e4c2a2f795b2,SESCO,II.5.1,Misiones,AR-N,annual,2014,gas oil combustion consumption by agriculture machines,14.88144,TJ,N2O,3.9,kg/TJ,58.037616,kg -3719960b-2d0d-3891-b140-16a6e67b97cf,SESCO,II.5.1,Salta,AR-A,annual,2014,gas oil combustion consumption by agriculture machines,109.94928,TJ,CO2,74100.0,kg/TJ,8147241.648,kg -b5c2291c-90a7-3959-87be-084f764957b1,SESCO,II.5.1,Salta,AR-A,annual,2014,gas oil combustion consumption by agriculture machines,109.94928,TJ,CH4,3.9,kg/TJ,428.802192,kg -b5c2291c-90a7-3959-87be-084f764957b1,SESCO,II.5.1,Salta,AR-A,annual,2014,gas oil combustion consumption by agriculture machines,109.94928,TJ,N2O,3.9,kg/TJ,428.802192,kg -1a64da6f-b5b7-3b61-8698-79f7417a6c39,SESCO,II.5.1,San Luis,AR-D,annual,2014,gas oil combustion consumption by agriculture machines,17.91552,TJ,CO2,74100.0,kg/TJ,1327540.0320000001,kg -7e3fb144-3843-327e-ba7d-091e4456c168,SESCO,II.5.1,San Luis,AR-D,annual,2014,gas oil combustion consumption by agriculture machines,17.91552,TJ,CH4,3.9,kg/TJ,69.87052800000001,kg -7e3fb144-3843-327e-ba7d-091e4456c168,SESCO,II.5.1,San Luis,AR-D,annual,2014,gas oil combustion consumption by agriculture machines,17.91552,TJ,N2O,3.9,kg/TJ,69.87052800000001,kg -55fb29c4-05f1-32ae-8811-be87d9cc6d86,SESCO,II.5.1,Santa Fe,AR-S,annual,2014,gas oil combustion consumption by agriculture machines,102.25572,TJ,CO2,74100.0,kg/TJ,7577148.852,kg -7d8668f6-0781-3eb1-aae9-6ffbe2081225,SESCO,II.5.1,Santa Fe,AR-S,annual,2014,gas oil combustion consumption by agriculture machines,102.25572,TJ,CH4,3.9,kg/TJ,398.797308,kg -7d8668f6-0781-3eb1-aae9-6ffbe2081225,SESCO,II.5.1,Santa Fe,AR-S,annual,2014,gas oil combustion consumption by agriculture machines,102.25572,TJ,N2O,3.9,kg/TJ,398.797308,kg -8ea212b2-c44d-340c-bcef-3470f971126e,SESCO,II.5.1,Santiago del Estero,AR-G,annual,2014,gas oil combustion consumption by agriculture machines,91.49195999999999,TJ,CO2,74100.0,kg/TJ,6779554.236,kg -cdbd44d5-9869-3cdd-8cd5-242232f30caa,SESCO,II.5.1,Santiago del Estero,AR-G,annual,2014,gas oil combustion consumption by agriculture machines,91.49195999999999,TJ,CH4,3.9,kg/TJ,356.81864399999995,kg -cdbd44d5-9869-3cdd-8cd5-242232f30caa,SESCO,II.5.1,Santiago del Estero,AR-G,annual,2014,gas oil combustion consumption by agriculture machines,91.49195999999999,TJ,N2O,3.9,kg/TJ,356.81864399999995,kg -4383c80b-5b50-3b21-83bf-14aea5f2af16,SESCO,II.5.1,Tucuman,AR-T,annual,2014,gas oil combustion consumption by agriculture machines,59.27292,TJ,CO2,74100.0,kg/TJ,4392123.3719999995,kg -0949cf96-145e-30f2-affe-717658248e4a,SESCO,II.5.1,Tucuman,AR-T,annual,2014,gas oil combustion consumption by agriculture machines,59.27292,TJ,CH4,3.9,kg/TJ,231.164388,kg -0949cf96-145e-30f2-affe-717658248e4a,SESCO,II.5.1,Tucuman,AR-T,annual,2014,gas oil combustion consumption by agriculture machines,59.27292,TJ,N2O,3.9,kg/TJ,231.164388,kg -e67786ed-0dcd-39ba-996b-d88457429d28,SESCO,II.5.1,Buenos Aires,AR-B,annual,2014,jet kerosene combustion consumption by agriculture machines,8.366497999999998,TJ,CO2,71500.0,kg/TJ,598204.6069999998,kg -b74d7a07-b868-3901-a05c-ae57669f7817,SESCO,II.5.1,Buenos Aires,AR-B,annual,2014,jet kerosene combustion consumption by agriculture machines,8.366497999999998,TJ,CH4,0.5,kg/TJ,4.183248999999999,kg -ee43cfa7-6051-3c0c-ba36-f01eee452206,SESCO,II.5.1,Buenos Aires,AR-B,annual,2014,jet kerosene combustion consumption by agriculture machines,8.366497999999998,TJ,N2O,2.0,kg/TJ,16.732995999999996,kg -6b33979f-9d99-3242-968a-1e16da1409a8,SESCO,II.5.1,Córdoba,AR-X,annual,2014,jet kerosene combustion consumption by agriculture machines,0.7548719999999999,TJ,CO2,71500.0,kg/TJ,53973.34799999999,kg -99870a91-f9c8-3f3f-a901-9bb48cff51ec,SESCO,II.5.1,Córdoba,AR-X,annual,2014,jet kerosene combustion consumption by agriculture machines,0.7548719999999999,TJ,CH4,0.5,kg/TJ,0.37743599999999994,kg -d48d69bd-caa8-380a-b713-1468aa8f2bdd,SESCO,II.5.1,Córdoba,AR-X,annual,2014,jet kerosene combustion consumption by agriculture machines,0.7548719999999999,TJ,N2O,2.0,kg/TJ,1.5097439999999998,kg -fde7ca6d-a175-3877-9429-c9191f909738,SESCO,II.5.1,Entre Rios,AR-E,annual,2014,jet kerosene combustion consumption by agriculture machines,0.157265,TJ,CO2,71500.0,kg/TJ,11244.447499999998,kg -0a2b02da-e900-3b4a-9805-c75316635314,SESCO,II.5.1,Entre Rios,AR-E,annual,2014,jet kerosene combustion consumption by agriculture machines,0.157265,TJ,CH4,0.5,kg/TJ,0.0786325,kg -fc0df5e4-0fc4-3c4f-8a62-418b1dffb0b0,SESCO,II.5.1,Entre Rios,AR-E,annual,2014,jet kerosene combustion consumption by agriculture machines,0.157265,TJ,N2O,2.0,kg/TJ,0.31453,kg -118346bd-92ac-39d8-b0f5-df77c308780e,SESCO,II.5.1,La Pampa,AR-L,annual,2014,jet kerosene combustion consumption by agriculture machines,1.25812,TJ,CO2,71500.0,kg/TJ,89955.57999999999,kg -9d293ba2-ebba-3922-9dc9-35878266eeb5,SESCO,II.5.1,La Pampa,AR-L,annual,2014,jet kerosene combustion consumption by agriculture machines,1.25812,TJ,CH4,0.5,kg/TJ,0.62906,kg -15e93144-a210-360d-9b34-9ab7dab7fccf,SESCO,II.5.1,La Pampa,AR-L,annual,2014,jet kerosene combustion consumption by agriculture machines,1.25812,TJ,N2O,2.0,kg/TJ,2.51624,kg -688d079c-3dc5-39e4-83bf-244c26ba1e73,SESCO,II.5.1,Santa Fe,AR-S,annual,2014,jet kerosene combustion consumption by agriculture machines,2.9251289999999996,TJ,CO2,71500.0,kg/TJ,209146.72349999996,kg -c864b1bf-3098-32c4-b5dc-282bfa62799d,SESCO,II.5.1,Santa Fe,AR-S,annual,2014,jet kerosene combustion consumption by agriculture machines,2.9251289999999996,TJ,CH4,0.5,kg/TJ,1.4625644999999998,kg -27b2e318-1b91-3dbb-a96c-5f6c321a74b6,SESCO,II.5.1,Santa Fe,AR-S,annual,2014,jet kerosene combustion consumption by agriculture machines,2.9251289999999996,TJ,N2O,2.0,kg/TJ,5.850257999999999,kg -c04f370f-0a89-3cd5-9987-a4d9ac52df66,SESCO,II.1.1,Buenos Aires,AR-B,annual,2014,gas oil combustion consumption by to the public,38284.45488,TJ,CO2,74100.0,kg/TJ,2836878106.608,kg -ab3f894f-fa5b-3fbb-9268-60a725becf6f,SESCO,II.1.1,Buenos Aires,AR-B,annual,2014,gas oil combustion consumption by to the public,38284.45488,TJ,CH4,3.9,kg/TJ,149309.374032,kg -ab3f894f-fa5b-3fbb-9268-60a725becf6f,SESCO,II.1.1,Buenos Aires,AR-B,annual,2014,gas oil combustion consumption by to the public,38284.45488,TJ,N2O,3.9,kg/TJ,149309.374032,kg -67a5389f-5b3c-3ca6-8bb2-516d1a140158,SESCO,II.1.1,Capital Federal,AR-C,annual,2014,gas oil combustion consumption by to the public,4196.16876,TJ,CO2,74100.0,kg/TJ,310936105.116,kg -c99edece-1aef-3220-8669-67b7779231e7,SESCO,II.1.1,Capital Federal,AR-C,annual,2014,gas oil combustion consumption by to the public,4196.16876,TJ,CH4,3.9,kg/TJ,16365.058163999998,kg -c99edece-1aef-3220-8669-67b7779231e7,SESCO,II.1.1,Capital Federal,AR-C,annual,2014,gas oil combustion consumption by to the public,4196.16876,TJ,N2O,3.9,kg/TJ,16365.058163999998,kg -d6c0c22f-08c2-32da-a03c-035ef74b1d68,SESCO,II.1.1,Catamarca,AR-K,annual,2014,gas oil combustion consumption by to the public,456.3762,TJ,CO2,74100.0,kg/TJ,33817476.42,kg -982d542e-1039-34e8-8244-7d490ee3f61a,SESCO,II.1.1,Catamarca,AR-K,annual,2014,gas oil combustion consumption by to the public,456.3762,TJ,CH4,3.9,kg/TJ,1779.86718,kg -982d542e-1039-34e8-8244-7d490ee3f61a,SESCO,II.1.1,Catamarca,AR-K,annual,2014,gas oil combustion consumption by to the public,456.3762,TJ,N2O,3.9,kg/TJ,1779.86718,kg -f1674f04-4f3a-3454-958b-b24b7c6936de,SESCO,II.1.1,Chaco,AR-H,annual,2014,gas oil combustion consumption by to the public,2749.05708,TJ,CO2,74100.0,kg/TJ,203705129.628,kg -fa1b8674-d705-38aa-aed4-fb61a6b28ea3,SESCO,II.1.1,Chaco,AR-H,annual,2014,gas oil combustion consumption by to the public,2749.05708,TJ,CH4,3.9,kg/TJ,10721.322612,kg -fa1b8674-d705-38aa-aed4-fb61a6b28ea3,SESCO,II.1.1,Chaco,AR-H,annual,2014,gas oil combustion consumption by to the public,2749.05708,TJ,N2O,3.9,kg/TJ,10721.322612,kg -8069cabf-7e29-3375-ba6d-f0060cc3e24e,SESCO,II.1.1,Chubut,AR-U,annual,2014,gas oil combustion consumption by to the public,5372.7055199999995,TJ,CO2,74100.0,kg/TJ,398117479.03199995,kg -0ceb604f-5e3e-3a81-9cea-0b821eed3250,SESCO,II.1.1,Chubut,AR-U,annual,2014,gas oil combustion consumption by to the public,5372.7055199999995,TJ,CH4,3.9,kg/TJ,20953.551527999996,kg -0ceb604f-5e3e-3a81-9cea-0b821eed3250,SESCO,II.1.1,Chubut,AR-U,annual,2014,gas oil combustion consumption by to the public,5372.7055199999995,TJ,N2O,3.9,kg/TJ,20953.551527999996,kg -be3fcd2f-9da7-328c-9fa5-53a7be82a869,SESCO,II.1.1,Corrientes,AR-W,annual,2014,gas oil combustion consumption by to the public,2126.2760399999997,TJ,CO2,74100.0,kg/TJ,157557054.56399998,kg -d77f924b-0a13-362f-ba33-3af953bcc08d,SESCO,II.1.1,Corrientes,AR-W,annual,2014,gas oil combustion consumption by to the public,2126.2760399999997,TJ,CH4,3.9,kg/TJ,8292.476556,kg -d77f924b-0a13-362f-ba33-3af953bcc08d,SESCO,II.1.1,Corrientes,AR-W,annual,2014,gas oil combustion consumption by to the public,2126.2760399999997,TJ,N2O,3.9,kg/TJ,8292.476556,kg -e119db29-26e3-33dd-b492-13f8231af781,SESCO,II.1.1,Córdoba,AR-X,annual,2014,gas oil combustion consumption by to the public,13765.1514,TJ,CO2,74100.0,kg/TJ,1019997718.74,kg -8ddd2cc4-0205-3840-8d0b-5846ec7c8fc5,SESCO,II.1.1,Córdoba,AR-X,annual,2014,gas oil combustion consumption by to the public,13765.1514,TJ,CH4,3.9,kg/TJ,53684.09046,kg -8ddd2cc4-0205-3840-8d0b-5846ec7c8fc5,SESCO,II.1.1,Córdoba,AR-X,annual,2014,gas oil combustion consumption by to the public,13765.1514,TJ,N2O,3.9,kg/TJ,53684.09046,kg -aa920211-30e9-3acc-ad18-75ec14f79fc4,SESCO,II.1.1,Entre Rios,AR-E,annual,2014,gas oil combustion consumption by to the public,4504.41684,TJ,CO2,74100.0,kg/TJ,333777287.844,kg -3d7b8d70-328f-3152-bfcf-cbc98bbdf439,SESCO,II.1.1,Entre Rios,AR-E,annual,2014,gas oil combustion consumption by to the public,4504.41684,TJ,CH4,3.9,kg/TJ,17567.225676,kg -3d7b8d70-328f-3152-bfcf-cbc98bbdf439,SESCO,II.1.1,Entre Rios,AR-E,annual,2014,gas oil combustion consumption by to the public,4504.41684,TJ,N2O,3.9,kg/TJ,17567.225676,kg -9bb54f96-5a46-3a7e-a3db-60357c7db33d,SESCO,II.1.1,Formosa,AR-P,annual,2014,gas oil combustion consumption by to the public,892.164,TJ,CO2,74100.0,kg/TJ,66109352.4,kg -c0547fd8-ccd0-3c2b-b8c4-d7888745c393,SESCO,II.1.1,Formosa,AR-P,annual,2014,gas oil combustion consumption by to the public,892.164,TJ,CH4,3.9,kg/TJ,3479.4395999999997,kg -c0547fd8-ccd0-3c2b-b8c4-d7888745c393,SESCO,II.1.1,Formosa,AR-P,annual,2014,gas oil combustion consumption by to the public,892.164,TJ,N2O,3.9,kg/TJ,3479.4395999999997,kg -8fe55c0c-8afd-3520-b475-28178d72f243,SESCO,II.1.1,Jujuy,AR-Y,annual,2014,gas oil combustion consumption by to the public,2042.15256,TJ,CO2,74100.0,kg/TJ,151323504.696,kg -7e46bb14-91d3-3b24-8f19-bf0594e9a0d1,SESCO,II.1.1,Jujuy,AR-Y,annual,2014,gas oil combustion consumption by to the public,2042.15256,TJ,CH4,3.9,kg/TJ,7964.394984,kg -7e46bb14-91d3-3b24-8f19-bf0594e9a0d1,SESCO,II.1.1,Jujuy,AR-Y,annual,2014,gas oil combustion consumption by to the public,2042.15256,TJ,N2O,3.9,kg/TJ,7964.394984,kg -776891e7-47dc-36fe-94f1-d985441f484d,SESCO,II.1.1,La Pampa,AR-L,annual,2014,gas oil combustion consumption by to the public,2541.4031999999997,TJ,CO2,74100.0,kg/TJ,188317977.11999997,kg -26be41a7-5a48-34c3-b908-4b044ee06520,SESCO,II.1.1,La Pampa,AR-L,annual,2014,gas oil combustion consumption by to the public,2541.4031999999997,TJ,CH4,3.9,kg/TJ,9911.472479999999,kg -26be41a7-5a48-34c3-b908-4b044ee06520,SESCO,II.1.1,La Pampa,AR-L,annual,2014,gas oil combustion consumption by to the public,2541.4031999999997,TJ,N2O,3.9,kg/TJ,9911.472479999999,kg -ba9d9935-d85e-39e4-a527-a876cf24c6cc,SESCO,II.1.1,La Rioja,AR-F,annual,2014,gas oil combustion consumption by to the public,861.89544,TJ,CO2,74100.0,kg/TJ,63866452.104,kg -4c8b5d88-2251-3cdb-b455-3c7504b5d475,SESCO,II.1.1,La Rioja,AR-F,annual,2014,gas oil combustion consumption by to the public,861.89544,TJ,CH4,3.9,kg/TJ,3361.3922159999997,kg -4c8b5d88-2251-3cdb-b455-3c7504b5d475,SESCO,II.1.1,La Rioja,AR-F,annual,2014,gas oil combustion consumption by to the public,861.89544,TJ,N2O,3.9,kg/TJ,3361.3922159999997,kg -869c95cd-48bb-3bdc-9be1-c890ea46f45c,SESCO,II.1.1,Mendoza,AR-M,annual,2014,gas oil combustion consumption by to the public,12651.824639999999,TJ,CO2,74100.0,kg/TJ,937500205.8239999,kg -6c23cb93-d1c5-31b3-a0c6-7ab647c1fbe7,SESCO,II.1.1,Mendoza,AR-M,annual,2014,gas oil combustion consumption by to the public,12651.824639999999,TJ,CH4,3.9,kg/TJ,49342.116096,kg -6c23cb93-d1c5-31b3-a0c6-7ab647c1fbe7,SESCO,II.1.1,Mendoza,AR-M,annual,2014,gas oil combustion consumption by to the public,12651.824639999999,TJ,N2O,3.9,kg/TJ,49342.116096,kg -45e47202-1e2a-3217-a0e2-fa7e0f55e3ba,SESCO,II.1.1,Misiones,AR-N,annual,2014,gas oil combustion consumption by to the public,4386.2321999999995,TJ,CO2,74100.0,kg/TJ,325019806.02,kg -065670ea-7bd5-3490-82b6-ea23c7eaef5d,SESCO,II.1.1,Misiones,AR-N,annual,2014,gas oil combustion consumption by to the public,4386.2321999999995,TJ,CH4,3.9,kg/TJ,17106.305579999997,kg -065670ea-7bd5-3490-82b6-ea23c7eaef5d,SESCO,II.1.1,Misiones,AR-N,annual,2014,gas oil combustion consumption by to the public,4386.2321999999995,TJ,N2O,3.9,kg/TJ,17106.305579999997,kg -61773162-f55f-37e8-9f00-811912c8a094,SESCO,II.1.1,Neuquén,AR-Q,annual,2014,gas oil combustion consumption by to the public,3638.76492,TJ,CO2,74100.0,kg/TJ,269632480.572,kg -fa8dd66f-025b-3270-aa65-a933f8c61bc3,SESCO,II.1.1,Neuquén,AR-Q,annual,2014,gas oil combustion consumption by to the public,3638.76492,TJ,CH4,3.9,kg/TJ,14191.183187999999,kg -fa8dd66f-025b-3270-aa65-a933f8c61bc3,SESCO,II.1.1,Neuquén,AR-Q,annual,2014,gas oil combustion consumption by to the public,3638.76492,TJ,N2O,3.9,kg/TJ,14191.183187999999,kg -c5b4dbbb-a9cd-3bd2-aaa6-9f8e7c10cb4a,SESCO,II.1.1,Rio Negro,AR-R,annual,2014,gas oil combustion consumption by to the public,4832.20584,TJ,CO2,74100.0,kg/TJ,358066452.74399996,kg -c224bd7c-0bfc-3552-8dd3-f45c66f425eb,SESCO,II.1.1,Rio Negro,AR-R,annual,2014,gas oil combustion consumption by to the public,4832.20584,TJ,CH4,3.9,kg/TJ,18845.602776,kg -c224bd7c-0bfc-3552-8dd3-f45c66f425eb,SESCO,II.1.1,Rio Negro,AR-R,annual,2014,gas oil combustion consumption by to the public,4832.20584,TJ,N2O,3.9,kg/TJ,18845.602776,kg -fa8952ba-fc5e-37f7-b0e6-886caeab6226,SESCO,II.1.1,Salta,AR-A,annual,2014,gas oil combustion consumption by to the public,4162.72164,TJ,CO2,74100.0,kg/TJ,308457673.524,kg -bccfad04-b7c5-3584-8976-79c565ac4490,SESCO,II.1.1,Salta,AR-A,annual,2014,gas oil combustion consumption by to the public,4162.72164,TJ,CH4,3.9,kg/TJ,16234.614395999999,kg -bccfad04-b7c5-3584-8976-79c565ac4490,SESCO,II.1.1,Salta,AR-A,annual,2014,gas oil combustion consumption by to the public,4162.72164,TJ,N2O,3.9,kg/TJ,16234.614395999999,kg -b6fd24ee-1c0f-3969-bf37-028e866ea6b3,SESCO,II.1.1,San Juan,AR-J,annual,2014,gas oil combustion consumption by to the public,2359.0694399999998,TJ,CO2,74100.0,kg/TJ,174807045.50399998,kg -043d9b2b-63f8-3701-a396-e3deb72e60b2,SESCO,II.1.1,San Juan,AR-J,annual,2014,gas oil combustion consumption by to the public,2359.0694399999998,TJ,CH4,3.9,kg/TJ,9200.370815999999,kg -043d9b2b-63f8-3701-a396-e3deb72e60b2,SESCO,II.1.1,San Juan,AR-J,annual,2014,gas oil combustion consumption by to the public,2359.0694399999998,TJ,N2O,3.9,kg/TJ,9200.370815999999,kg -16806e31-282f-303d-8061-ddddb82cde43,SESCO,II.1.1,San Luis,AR-D,annual,2014,gas oil combustion consumption by to the public,2153.69112,TJ,CO2,74100.0,kg/TJ,159588511.99199998,kg -910a5de0-aaaf-345d-8387-79e8eacca47a,SESCO,II.1.1,San Luis,AR-D,annual,2014,gas oil combustion consumption by to the public,2153.69112,TJ,CH4,3.9,kg/TJ,8399.395368,kg -910a5de0-aaaf-345d-8387-79e8eacca47a,SESCO,II.1.1,San Luis,AR-D,annual,2014,gas oil combustion consumption by to the public,2153.69112,TJ,N2O,3.9,kg/TJ,8399.395368,kg -b7bf778c-e3b1-378e-9133-ded176beabc5,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2014,gas oil combustion consumption by to the public,3444.65604,TJ,CO2,74100.0,kg/TJ,255249012.56399998,kg -f106a4ae-f39b-377e-8b09-106e49a2554d,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2014,gas oil combustion consumption by to the public,3444.65604,TJ,CH4,3.9,kg/TJ,13434.158555999998,kg -f106a4ae-f39b-377e-8b09-106e49a2554d,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2014,gas oil combustion consumption by to the public,3444.65604,TJ,N2O,3.9,kg/TJ,13434.158555999998,kg -d5c558ad-c568-38b4-be86-9b0a516bbab6,SESCO,II.1.1,Santa Fe,AR-S,annual,2014,gas oil combustion consumption by to the public,10780.05012,TJ,CO2,74100.0,kg/TJ,798801713.892,kg -6f4bc927-66be-35e8-a461-d86eebc37261,SESCO,II.1.1,Santa Fe,AR-S,annual,2014,gas oil combustion consumption by to the public,10780.05012,TJ,CH4,3.9,kg/TJ,42042.195468,kg -6f4bc927-66be-35e8-a461-d86eebc37261,SESCO,II.1.1,Santa Fe,AR-S,annual,2014,gas oil combustion consumption by to the public,10780.05012,TJ,N2O,3.9,kg/TJ,42042.195468,kg -981bb55a-fd2d-3d3c-9359-db26f98b71a0,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2014,gas oil combustion consumption by to the public,2331.61824,TJ,CO2,74100.0,kg/TJ,172772911.584,kg -55bfe04a-9b14-3319-80e0-7bd91b18c427,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2014,gas oil combustion consumption by to the public,2331.61824,TJ,CH4,3.9,kg/TJ,9093.311135999998,kg -55bfe04a-9b14-3319-80e0-7bd91b18c427,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2014,gas oil combustion consumption by to the public,2331.61824,TJ,N2O,3.9,kg/TJ,9093.311135999998,kg -3c6dbdb0-49e9-30bb-9e53-b17c03a7a218,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2014,gas oil combustion consumption by to the public,1116.32472,TJ,CO2,74100.0,kg/TJ,82719661.752,kg -13d9a468-a089-3147-81ec-7375448cbe8a,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2014,gas oil combustion consumption by to the public,1116.32472,TJ,CH4,3.9,kg/TJ,4353.666408,kg -13d9a468-a089-3147-81ec-7375448cbe8a,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2014,gas oil combustion consumption by to the public,1116.32472,TJ,N2O,3.9,kg/TJ,4353.666408,kg -56cd58fa-5f75-3b3b-b8fd-a6b4790f26f9,SESCO,II.1.1,Tucuman,AR-T,annual,2014,gas oil combustion consumption by to the public,2416.428,TJ,CO2,74100.0,kg/TJ,179057314.79999998,kg -ad817860-d220-3697-a6a7-24c45d4a8636,SESCO,II.1.1,Tucuman,AR-T,annual,2014,gas oil combustion consumption by to the public,2416.428,TJ,CH4,3.9,kg/TJ,9424.0692,kg -ad817860-d220-3697-a6a7-24c45d4a8636,SESCO,II.1.1,Tucuman,AR-T,annual,2014,gas oil combustion consumption by to the public,2416.428,TJ,N2O,3.9,kg/TJ,9424.0692,kg -eb34f81f-c3cc-3ed7-824d-08df913912d6,SESCO,II.1.1,Buenos Aires,AR-B,annual,2014,gas oil combustion consumption by to the public,12169.5504,TJ,CO2,74100.0,kg/TJ,901763684.64,kg -b28b02ec-0c01-33ad-b9d9-d3afeabcf335,SESCO,II.1.1,Buenos Aires,AR-B,annual,2014,gas oil combustion consumption by to the public,12169.5504,TJ,CH4,3.9,kg/TJ,47461.24656,kg -b28b02ec-0c01-33ad-b9d9-d3afeabcf335,SESCO,II.1.1,Buenos Aires,AR-B,annual,2014,gas oil combustion consumption by to the public,12169.5504,TJ,N2O,3.9,kg/TJ,47461.24656,kg -b537d9a7-987e-3357-a490-27661b2e9ac3,SESCO,II.1.1,Capital Federal,AR-C,annual,2014,gas oil combustion consumption by to the public,1665.89052,TJ,CO2,74100.0,kg/TJ,123442487.53199999,kg -4350c5df-2e8f-32a9-88c1-84eb28d494d7,SESCO,II.1.1,Capital Federal,AR-C,annual,2014,gas oil combustion consumption by to the public,1665.89052,TJ,CH4,3.9,kg/TJ,6496.973027999999,kg -4350c5df-2e8f-32a9-88c1-84eb28d494d7,SESCO,II.1.1,Capital Federal,AR-C,annual,2014,gas oil combustion consumption by to the public,1665.89052,TJ,N2O,3.9,kg/TJ,6496.973027999999,kg -95009a1b-0de1-3584-8f96-4bbd5ed3e950,SESCO,II.1.1,Catamarca,AR-K,annual,2014,gas oil combustion consumption by to the public,195.91487999999998,TJ,CO2,74100.0,kg/TJ,14517292.608,kg -a06cffc0-ef82-3ab3-808b-4758ba420ef8,SESCO,II.1.1,Catamarca,AR-K,annual,2014,gas oil combustion consumption by to the public,195.91487999999998,TJ,CH4,3.9,kg/TJ,764.0680319999999,kg -a06cffc0-ef82-3ab3-808b-4758ba420ef8,SESCO,II.1.1,Catamarca,AR-K,annual,2014,gas oil combustion consumption by to the public,195.91487999999998,TJ,N2O,3.9,kg/TJ,764.0680319999999,kg -08eb99e9-46a1-3c54-965e-70e79c79a9b0,SESCO,II.1.1,Chaco,AR-H,annual,2014,gas oil combustion consumption by to the public,832.42152,TJ,CO2,74100.0,kg/TJ,61682434.632,kg -e16dea9a-08f2-3b61-8212-598492b9880e,SESCO,II.1.1,Chaco,AR-H,annual,2014,gas oil combustion consumption by to the public,832.42152,TJ,CH4,3.9,kg/TJ,3246.4439279999997,kg -e16dea9a-08f2-3b61-8212-598492b9880e,SESCO,II.1.1,Chaco,AR-H,annual,2014,gas oil combustion consumption by to the public,832.42152,TJ,N2O,3.9,kg/TJ,3246.4439279999997,kg -cfa9bdc2-f7a5-34b0-8ac4-450552da5f6d,SESCO,II.1.1,Chubut,AR-U,annual,2014,gas oil combustion consumption by to the public,1092.59388,TJ,CO2,74100.0,kg/TJ,80961206.50799999,kg -99d0ff39-91e7-314d-af3c-7462dc07c5ff,SESCO,II.1.1,Chubut,AR-U,annual,2014,gas oil combustion consumption by to the public,1092.59388,TJ,CH4,3.9,kg/TJ,4261.116131999999,kg -99d0ff39-91e7-314d-af3c-7462dc07c5ff,SESCO,II.1.1,Chubut,AR-U,annual,2014,gas oil combustion consumption by to the public,1092.59388,TJ,N2O,3.9,kg/TJ,4261.116131999999,kg -982c2ad2-007e-3290-8b4d-ce562f6876cc,SESCO,II.1.1,Corrientes,AR-W,annual,2014,gas oil combustion consumption by to the public,741.3629999999999,TJ,CO2,74100.0,kg/TJ,54934998.3,kg -942a1abd-00fb-3679-9f8a-90ab38d03e3a,SESCO,II.1.1,Corrientes,AR-W,annual,2014,gas oil combustion consumption by to the public,741.3629999999999,TJ,CH4,3.9,kg/TJ,2891.3156999999997,kg -942a1abd-00fb-3679-9f8a-90ab38d03e3a,SESCO,II.1.1,Corrientes,AR-W,annual,2014,gas oil combustion consumption by to the public,741.3629999999999,TJ,N2O,3.9,kg/TJ,2891.3156999999997,kg -482c8398-0e73-3b67-9811-5e92919bf846,SESCO,II.1.1,Córdoba,AR-X,annual,2014,gas oil combustion consumption by to the public,2858.06724,TJ,CO2,74100.0,kg/TJ,211782782.484,kg -a4f6398a-8cbd-39ad-95a0-68a0168aaeaa,SESCO,II.1.1,Córdoba,AR-X,annual,2014,gas oil combustion consumption by to the public,2858.06724,TJ,CH4,3.9,kg/TJ,11146.462236,kg -a4f6398a-8cbd-39ad-95a0-68a0168aaeaa,SESCO,II.1.1,Córdoba,AR-X,annual,2014,gas oil combustion consumption by to the public,2858.06724,TJ,N2O,3.9,kg/TJ,11146.462236,kg -071ba22f-8d9a-36ed-811c-e97988d05645,SESCO,II.1.1,Entre Rios,AR-E,annual,2014,gas oil combustion consumption by to the public,1375.70244,TJ,CO2,74100.0,kg/TJ,101939550.804,kg -460f5bc3-a858-36fa-a640-7f5efc50ae97,SESCO,II.1.1,Entre Rios,AR-E,annual,2014,gas oil combustion consumption by to the public,1375.70244,TJ,CH4,3.9,kg/TJ,5365.239516,kg -460f5bc3-a858-36fa-a640-7f5efc50ae97,SESCO,II.1.1,Entre Rios,AR-E,annual,2014,gas oil combustion consumption by to the public,1375.70244,TJ,N2O,3.9,kg/TJ,5365.239516,kg -5a98c4aa-e813-324a-ac91-f443fcdf535b,SESCO,II.1.1,Formosa,AR-P,annual,2014,gas oil combustion consumption by to the public,261.5088,TJ,CO2,74100.0,kg/TJ,19377802.080000002,kg -1e18ab42-560a-3eae-8044-d2915a820bcf,SESCO,II.1.1,Formosa,AR-P,annual,2014,gas oil combustion consumption by to the public,261.5088,TJ,CH4,3.9,kg/TJ,1019.88432,kg -1e18ab42-560a-3eae-8044-d2915a820bcf,SESCO,II.1.1,Formosa,AR-P,annual,2014,gas oil combustion consumption by to the public,261.5088,TJ,N2O,3.9,kg/TJ,1019.88432,kg -b3b7a07b-36e3-3f44-a54b-b0bbb7c6a616,SESCO,II.1.1,Jujuy,AR-Y,annual,2014,gas oil combustion consumption by to the public,355.9626,TJ,CO2,74100.0,kg/TJ,26376828.66,kg -b49b5b0f-20e1-3cce-b318-8882b898f313,SESCO,II.1.1,Jujuy,AR-Y,annual,2014,gas oil combustion consumption by to the public,355.9626,TJ,CH4,3.9,kg/TJ,1388.25414,kg -b49b5b0f-20e1-3cce-b318-8882b898f313,SESCO,II.1.1,Jujuy,AR-Y,annual,2014,gas oil combustion consumption by to the public,355.9626,TJ,N2O,3.9,kg/TJ,1388.25414,kg -d8136bcc-1283-3452-92bc-617a4e5815a5,SESCO,II.1.1,La Pampa,AR-L,annual,2014,gas oil combustion consumption by to the public,816.63708,TJ,CO2,74100.0,kg/TJ,60512807.628,kg -fdf7597d-96a0-30db-be15-a6de308a7e9e,SESCO,II.1.1,La Pampa,AR-L,annual,2014,gas oil combustion consumption by to the public,816.63708,TJ,CH4,3.9,kg/TJ,3184.884612,kg -fdf7597d-96a0-30db-be15-a6de308a7e9e,SESCO,II.1.1,La Pampa,AR-L,annual,2014,gas oil combustion consumption by to the public,816.63708,TJ,N2O,3.9,kg/TJ,3184.884612,kg -7efd045c-affa-33f3-947d-6a18a9206202,SESCO,II.1.1,La Rioja,AR-F,annual,2014,gas oil combustion consumption by to the public,238.35587999999998,TJ,CO2,74100.0,kg/TJ,17662170.708,kg -621a7392-a5d1-3a4e-8f2b-707ab39e1dfa,SESCO,II.1.1,La Rioja,AR-F,annual,2014,gas oil combustion consumption by to the public,238.35587999999998,TJ,CH4,3.9,kg/TJ,929.5879319999999,kg -621a7392-a5d1-3a4e-8f2b-707ab39e1dfa,SESCO,II.1.1,La Rioja,AR-F,annual,2014,gas oil combustion consumption by to the public,238.35587999999998,TJ,N2O,3.9,kg/TJ,929.5879319999999,kg -f22986e3-966d-30a4-a975-d182f9eaa755,SESCO,II.1.1,Mendoza,AR-M,annual,2014,gas oil combustion consumption by to the public,1902.76548,TJ,CO2,74100.0,kg/TJ,140994922.068,kg -fea919fb-b9d4-30bf-9897-18b1eea3f841,SESCO,II.1.1,Mendoza,AR-M,annual,2014,gas oil combustion consumption by to the public,1902.76548,TJ,CH4,3.9,kg/TJ,7420.785372,kg -fea919fb-b9d4-30bf-9897-18b1eea3f841,SESCO,II.1.1,Mendoza,AR-M,annual,2014,gas oil combustion consumption by to the public,1902.76548,TJ,N2O,3.9,kg/TJ,7420.785372,kg -0599dc65-ade0-374c-b8de-a25538f75280,SESCO,II.1.1,Misiones,AR-N,annual,2014,gas oil combustion consumption by to the public,876.30732,TJ,CO2,74100.0,kg/TJ,64934372.412,kg -64b4ad93-f0ee-3d94-81eb-c858335e95d7,SESCO,II.1.1,Misiones,AR-N,annual,2014,gas oil combustion consumption by to the public,876.30732,TJ,CH4,3.9,kg/TJ,3417.598548,kg -64b4ad93-f0ee-3d94-81eb-c858335e95d7,SESCO,II.1.1,Misiones,AR-N,annual,2014,gas oil combustion consumption by to the public,876.30732,TJ,N2O,3.9,kg/TJ,3417.598548,kg -61a4034c-49e6-37be-9dcc-dc6ef39d9375,SESCO,II.1.1,Neuquén,AR-Q,annual,2014,gas oil combustion consumption by to the public,1312.2395999999999,TJ,CO2,74100.0,kg/TJ,97236954.35999998,kg -0e46d286-1aca-3e89-b4a6-4042c1f8938f,SESCO,II.1.1,Neuquén,AR-Q,annual,2014,gas oil combustion consumption by to the public,1312.2395999999999,TJ,CH4,3.9,kg/TJ,5117.734439999999,kg -0e46d286-1aca-3e89-b4a6-4042c1f8938f,SESCO,II.1.1,Neuquén,AR-Q,annual,2014,gas oil combustion consumption by to the public,1312.2395999999999,TJ,N2O,3.9,kg/TJ,5117.734439999999,kg -eb4c5a23-41bf-337a-8eb5-d3485aef127c,SESCO,II.1.1,Rio Negro,AR-R,annual,2014,gas oil combustion consumption by to the public,1052.64516,TJ,CO2,74100.0,kg/TJ,78001006.356,kg -2cd33023-3109-3ffa-915c-53fe23a5fbe1,SESCO,II.1.1,Rio Negro,AR-R,annual,2014,gas oil combustion consumption by to the public,1052.64516,TJ,CH4,3.9,kg/TJ,4105.316124,kg -2cd33023-3109-3ffa-915c-53fe23a5fbe1,SESCO,II.1.1,Rio Negro,AR-R,annual,2014,gas oil combustion consumption by to the public,1052.64516,TJ,N2O,3.9,kg/TJ,4105.316124,kg -7d821276-776b-32df-8142-b5e7c2369d5d,SESCO,II.1.1,Salta,AR-A,annual,2014,gas oil combustion consumption by to the public,846.14712,TJ,CO2,74100.0,kg/TJ,62699501.592,kg -3e88708b-2302-3958-b08c-37c8342526e1,SESCO,II.1.1,Salta,AR-A,annual,2014,gas oil combustion consumption by to the public,846.14712,TJ,CH4,3.9,kg/TJ,3299.973768,kg -3e88708b-2302-3958-b08c-37c8342526e1,SESCO,II.1.1,Salta,AR-A,annual,2014,gas oil combustion consumption by to the public,846.14712,TJ,N2O,3.9,kg/TJ,3299.973768,kg -895a3027-1ed3-3f59-b3eb-fbf6dbb30953,SESCO,II.1.1,San Juan,AR-J,annual,2014,gas oil combustion consumption by to the public,413.86296,TJ,CO2,74100.0,kg/TJ,30667245.336,kg -8282dd2d-9094-3e01-b261-98bcba02734d,SESCO,II.1.1,San Juan,AR-J,annual,2014,gas oil combustion consumption by to the public,413.86296,TJ,CH4,3.9,kg/TJ,1614.0655439999998,kg -8282dd2d-9094-3e01-b261-98bcba02734d,SESCO,II.1.1,San Juan,AR-J,annual,2014,gas oil combustion consumption by to the public,413.86296,TJ,N2O,3.9,kg/TJ,1614.0655439999998,kg -ca723f7f-fd98-38d9-939b-740ff3bdb4c8,SESCO,II.1.1,San Luis,AR-D,annual,2014,gas oil combustion consumption by to the public,474.6168,TJ,CO2,74100.0,kg/TJ,35169104.88,kg -c8378150-cbee-3614-9459-e97537acf084,SESCO,II.1.1,San Luis,AR-D,annual,2014,gas oil combustion consumption by to the public,474.6168,TJ,CH4,3.9,kg/TJ,1851.00552,kg -c8378150-cbee-3614-9459-e97537acf084,SESCO,II.1.1,San Luis,AR-D,annual,2014,gas oil combustion consumption by to the public,474.6168,TJ,N2O,3.9,kg/TJ,1851.00552,kg -720f9bc5-aace-35a4-9ab9-9dabe001dff1,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2014,gas oil combustion consumption by to the public,648.354,TJ,CO2,74100.0,kg/TJ,48043031.400000006,kg -8e69d41d-8540-3d63-855c-e602326cb752,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2014,gas oil combustion consumption by to the public,648.354,TJ,CH4,3.9,kg/TJ,2528.5806000000002,kg -8e69d41d-8540-3d63-855c-e602326cb752,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2014,gas oil combustion consumption by to the public,648.354,TJ,N2O,3.9,kg/TJ,2528.5806000000002,kg -fd68bbf4-704c-3942-9f5a-22eac9d10fde,SESCO,II.1.1,Santa Fe,AR-S,annual,2014,gas oil combustion consumption by to the public,2936.41152,TJ,CO2,74100.0,kg/TJ,217588093.632,kg -fcaa3737-c90b-3dbb-b580-b5d83deda861,SESCO,II.1.1,Santa Fe,AR-S,annual,2014,gas oil combustion consumption by to the public,2936.41152,TJ,CH4,3.9,kg/TJ,11452.004928,kg -fcaa3737-c90b-3dbb-b580-b5d83deda861,SESCO,II.1.1,Santa Fe,AR-S,annual,2014,gas oil combustion consumption by to the public,2936.41152,TJ,N2O,3.9,kg/TJ,11452.004928,kg -bc37f372-66fd-3d95-986c-dda324de89cf,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2014,gas oil combustion consumption by to the public,541.76388,TJ,CO2,74100.0,kg/TJ,40144703.508,kg -f7e9ba02-7867-3fe1-81ff-7382bb24acc8,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2014,gas oil combustion consumption by to the public,541.76388,TJ,CH4,3.9,kg/TJ,2112.879132,kg -f7e9ba02-7867-3fe1-81ff-7382bb24acc8,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2014,gas oil combustion consumption by to the public,541.76388,TJ,N2O,3.9,kg/TJ,2112.879132,kg -97eade84-cac0-3f16-8e33-8d5fcb33f7a2,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2014,gas oil combustion consumption by to the public,116.3064,TJ,CO2,74100.0,kg/TJ,8618304.24,kg -18a444be-78c1-3712-9524-70187108ce3d,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2014,gas oil combustion consumption by to the public,116.3064,TJ,CH4,3.9,kg/TJ,453.59495999999996,kg -18a444be-78c1-3712-9524-70187108ce3d,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2014,gas oil combustion consumption by to the public,116.3064,TJ,N2O,3.9,kg/TJ,453.59495999999996,kg -29ca66fa-49a6-3af2-96ae-ab0eb46e724c,SESCO,II.1.1,Tucuman,AR-T,annual,2014,gas oil combustion consumption by to the public,573.9467999999999,TJ,CO2,74100.0,kg/TJ,42529457.879999995,kg -53b4fc96-5324-3502-8fc3-3b4022fb106a,SESCO,II.1.1,Tucuman,AR-T,annual,2014,gas oil combustion consumption by to the public,573.9467999999999,TJ,CH4,3.9,kg/TJ,2238.39252,kg -53b4fc96-5324-3502-8fc3-3b4022fb106a,SESCO,II.1.1,Tucuman,AR-T,annual,2014,gas oil combustion consumption by to the public,573.9467999999999,TJ,N2O,3.9,kg/TJ,2238.39252,kg -c9def9c3-db44-3307-bb78-59c65bfa2ded,SESCO,II.1.1,Buenos Aires,AR-B,annual,2014,jet kerosene combustion consumption by to the public,198.43697699999996,TJ,CO2,71500.0,kg/TJ,14188243.855499998,kg -84acbdb8-75e1-3221-8530-25bd774f13ac,SESCO,II.1.1,Buenos Aires,AR-B,annual,2014,jet kerosene combustion consumption by to the public,198.43697699999996,TJ,CH4,0.5,kg/TJ,99.21848849999998,kg -4192f46c-9b25-3892-973c-736a6c825582,SESCO,II.1.1,Buenos Aires,AR-B,annual,2014,jet kerosene combustion consumption by to the public,198.43697699999996,TJ,N2O,2.0,kg/TJ,396.8739539999999,kg -1000752e-2d63-38b8-ace5-787b26bc167c,SESCO,II.1.1,Capital Federal,AR-C,annual,2014,jet kerosene combustion consumption by to the public,8.901198999999998,TJ,CO2,71500.0,kg/TJ,636435.7284999999,kg -13248a51-3f17-308c-98be-f127581e5dc0,SESCO,II.1.1,Capital Federal,AR-C,annual,2014,jet kerosene combustion consumption by to the public,8.901198999999998,TJ,CH4,0.5,kg/TJ,4.450599499999999,kg -13fa4e76-eba4-381b-bab5-1071b8dfb32b,SESCO,II.1.1,Capital Federal,AR-C,annual,2014,jet kerosene combustion consumption by to the public,8.901198999999998,TJ,N2O,2.0,kg/TJ,17.802397999999997,kg -7dcb49ff-b971-34fa-8326-83d2ffcb4571,SESCO,II.1.1,Catamarca,AR-K,annual,2014,jet kerosene combustion consumption by to the public,4.592137999999999,TJ,CO2,71500.0,kg/TJ,328337.86699999997,kg -2dbf1e31-8dbc-37e9-a9aa-e7a674ac5fd5,SESCO,II.1.1,Catamarca,AR-K,annual,2014,jet kerosene combustion consumption by to the public,4.592137999999999,TJ,CH4,0.5,kg/TJ,2.2960689999999997,kg -760a3082-2d12-33db-b57b-8864a01ec9f4,SESCO,II.1.1,Catamarca,AR-K,annual,2014,jet kerosene combustion consumption by to the public,4.592137999999999,TJ,N2O,2.0,kg/TJ,9.184275999999999,kg -40ef9af4-7001-3a7e-9de4-557fc743f9d4,SESCO,II.1.1,Chaco,AR-H,annual,2014,jet kerosene combustion consumption by to the public,2.5476929999999998,TJ,CO2,71500.0,kg/TJ,182160.0495,kg -a1de8be3-bc52-3353-99d6-238f179b9328,SESCO,II.1.1,Chaco,AR-H,annual,2014,jet kerosene combustion consumption by to the public,2.5476929999999998,TJ,CH4,0.5,kg/TJ,1.2738464999999999,kg -e3a7d5fd-c934-322e-a94f-c12ba7cad844,SESCO,II.1.1,Chaco,AR-H,annual,2014,jet kerosene combustion consumption by to the public,2.5476929999999998,TJ,N2O,2.0,kg/TJ,5.0953859999999995,kg -f4505fab-1801-3c96-b3e7-8a0f3265c94c,SESCO,II.1.1,Chubut,AR-U,annual,2014,jet kerosene combustion consumption by to the public,15.003080999999998,TJ,CO2,71500.0,kg/TJ,1072720.2914999998,kg -554b0644-6f3f-3522-b0df-690121e459a8,SESCO,II.1.1,Chubut,AR-U,annual,2014,jet kerosene combustion consumption by to the public,15.003080999999998,TJ,CH4,0.5,kg/TJ,7.501540499999999,kg -ac32dc48-3a5a-30bc-9591-ce887474244b,SESCO,II.1.1,Chubut,AR-U,annual,2014,jet kerosene combustion consumption by to the public,15.003080999999998,TJ,N2O,2.0,kg/TJ,30.006161999999996,kg -e3039d60-1c45-3b1e-b5b2-cc8030ebbce9,SESCO,II.1.1,Corrientes,AR-W,annual,2014,jet kerosene combustion consumption by to the public,3.4598299999999993,TJ,CO2,71500.0,kg/TJ,247377.84499999994,kg -8f7febb4-7ec3-39c0-824e-f4844014b57b,SESCO,II.1.1,Corrientes,AR-W,annual,2014,jet kerosene combustion consumption by to the public,3.4598299999999993,TJ,CH4,0.5,kg/TJ,1.7299149999999996,kg -d2500f17-1968-3062-9c92-c96a93ee5b82,SESCO,II.1.1,Corrientes,AR-W,annual,2014,jet kerosene combustion consumption by to the public,3.4598299999999993,TJ,N2O,2.0,kg/TJ,6.919659999999999,kg -d916d772-fdb3-3f86-8d40-85d560ed8f72,SESCO,II.1.1,Córdoba,AR-X,annual,2014,jet kerosene combustion consumption by to the public,92.47181999999998,TJ,CO2,71500.0,kg/TJ,6611735.129999999,kg -e9ca6f84-278f-3966-91e7-58159cf53b92,SESCO,II.1.1,Córdoba,AR-X,annual,2014,jet kerosene combustion consumption by to the public,92.47181999999998,TJ,CH4,0.5,kg/TJ,46.23590999999999,kg -e83d560f-6990-306e-b8cd-bf2af60c3fe9,SESCO,II.1.1,Córdoba,AR-X,annual,2014,jet kerosene combustion consumption by to the public,92.47181999999998,TJ,N2O,2.0,kg/TJ,184.94363999999996,kg -c313c133-4176-366e-8435-aed2cedf83ff,SESCO,II.1.1,Entre Rios,AR-E,annual,2014,jet kerosene combustion consumption by to the public,9.467353,TJ,CO2,71500.0,kg/TJ,676915.7394999999,kg -abaa3c6b-e554-3e4d-b3ad-d473a1d7183c,SESCO,II.1.1,Entre Rios,AR-E,annual,2014,jet kerosene combustion consumption by to the public,9.467353,TJ,CH4,0.5,kg/TJ,4.7336765,kg -d594feb3-2619-3d2c-8756-661638dec290,SESCO,II.1.1,Entre Rios,AR-E,annual,2014,jet kerosene combustion consumption by to the public,9.467353,TJ,N2O,2.0,kg/TJ,18.934706,kg -412fdbc7-2ca6-387e-9129-5f99bc9d6aae,SESCO,II.1.1,Jujuy,AR-Y,annual,2014,jet kerosene combustion consumption by to the public,3.9001719999999995,TJ,CO2,71500.0,kg/TJ,278862.29799999995,kg -6ff41e2a-3b5e-3f70-ae02-ad2aa21f2074,SESCO,II.1.1,Jujuy,AR-Y,annual,2014,jet kerosene combustion consumption by to the public,3.9001719999999995,TJ,CH4,0.5,kg/TJ,1.9500859999999998,kg -830ea12e-fab0-31e6-80ea-b379bcca99f3,SESCO,II.1.1,Jujuy,AR-Y,annual,2014,jet kerosene combustion consumption by to the public,3.9001719999999995,TJ,N2O,2.0,kg/TJ,7.800343999999999,kg -1eb0ee5d-a706-38c0-a953-168eb76ffe0d,SESCO,II.1.1,La Pampa,AR-L,annual,2014,jet kerosene combustion consumption by to the public,4.246154999999999,TJ,CO2,71500.0,kg/TJ,303600.0824999999,kg -50f4a9b3-6bb0-3324-93d5-2ca460091311,SESCO,II.1.1,La Pampa,AR-L,annual,2014,jet kerosene combustion consumption by to the public,4.246154999999999,TJ,CH4,0.5,kg/TJ,2.1230774999999995,kg -e976d368-3920-3106-a6a7-96bbeb680144,SESCO,II.1.1,La Pampa,AR-L,annual,2014,jet kerosene combustion consumption by to the public,4.246154999999999,TJ,N2O,2.0,kg/TJ,8.492309999999998,kg -b05592a4-1c1d-30f2-984a-1a878130ea1a,SESCO,II.1.1,La Rioja,AR-F,annual,2014,jet kerosene combustion consumption by to the public,2.20171,TJ,CO2,71500.0,kg/TJ,157422.26499999998,kg -f40fd700-5282-3730-bd89-02ccb0cb9b9a,SESCO,II.1.1,La Rioja,AR-F,annual,2014,jet kerosene combustion consumption by to the public,2.20171,TJ,CH4,0.5,kg/TJ,1.100855,kg -3e655195-5d5f-37fc-9fcf-753a66cda2f6,SESCO,II.1.1,La Rioja,AR-F,annual,2014,jet kerosene combustion consumption by to the public,2.20171,TJ,N2O,2.0,kg/TJ,4.40342,kg -c383ae4f-3c29-32ef-ad8f-72d55ccfa247,SESCO,II.1.1,Mendoza,AR-M,annual,2014,jet kerosene combustion consumption by to the public,40.19693399999999,TJ,CO2,71500.0,kg/TJ,2874080.7809999995,kg -c4ce8650-36b2-3f15-a097-2db7030c0965,SESCO,II.1.1,Mendoza,AR-M,annual,2014,jet kerosene combustion consumption by to the public,40.19693399999999,TJ,CH4,0.5,kg/TJ,20.098466999999996,kg -5d0e8fd8-b422-3fce-bc77-a650f4d44f37,SESCO,II.1.1,Mendoza,AR-M,annual,2014,jet kerosene combustion consumption by to the public,40.19693399999999,TJ,N2O,2.0,kg/TJ,80.39386799999998,kg -47a72043-6263-3435-8cdc-b49a4ea98e2c,SESCO,II.1.1,Neuquén,AR-Q,annual,2014,jet kerosene combustion consumption by to the public,7.643078999999998,TJ,CO2,71500.0,kg/TJ,546480.1484999999,kg -9dede23a-96d1-36eb-a4d8-9880d5cf3405,SESCO,II.1.1,Neuquén,AR-Q,annual,2014,jet kerosene combustion consumption by to the public,7.643078999999998,TJ,CH4,0.5,kg/TJ,3.821539499999999,kg -57c87011-6b78-3c4d-9201-1c1ec0959b2b,SESCO,II.1.1,Neuquén,AR-Q,annual,2014,jet kerosene combustion consumption by to the public,7.643078999999998,TJ,N2O,2.0,kg/TJ,15.286157999999997,kg -c63adb27-28ab-346c-99a0-36f71382ab4c,SESCO,II.1.1,Rio Negro,AR-R,annual,2014,jet kerosene combustion consumption by to the public,2.6420519999999996,TJ,CO2,71500.0,kg/TJ,188906.71799999996,kg -8e0e2b44-2c40-317c-8259-fb67da844c05,SESCO,II.1.1,Rio Negro,AR-R,annual,2014,jet kerosene combustion consumption by to the public,2.6420519999999996,TJ,CH4,0.5,kg/TJ,1.3210259999999998,kg -d2198fd6-46d0-383c-8f6e-3e9b585b377f,SESCO,II.1.1,Rio Negro,AR-R,annual,2014,jet kerosene combustion consumption by to the public,2.6420519999999996,TJ,N2O,2.0,kg/TJ,5.284103999999999,kg -d8dadb21-4455-377c-b904-83e023b3dcaa,SESCO,II.1.1,Salta,AR-A,annual,2014,jet kerosene combustion consumption by to the public,1.6670089999999997,TJ,CO2,71500.0,kg/TJ,119191.14349999998,kg -ef23f7fe-8c09-3018-bc39-0ca8f4692888,SESCO,II.1.1,Salta,AR-A,annual,2014,jet kerosene combustion consumption by to the public,1.6670089999999997,TJ,CH4,0.5,kg/TJ,0.8335044999999999,kg -27d53c25-50ec-3145-bfeb-d69ce2f7c539,SESCO,II.1.1,Salta,AR-A,annual,2014,jet kerosene combustion consumption by to the public,1.6670089999999997,TJ,N2O,2.0,kg/TJ,3.3340179999999995,kg -1c433326-b64a-3df8-b542-b4630d79f8d9,SESCO,II.1.1,San Juan,AR-J,annual,2014,jet kerosene combustion consumption by to the public,4.088889999999999,TJ,CO2,71500.0,kg/TJ,292355.63499999995,kg -2b54ef4b-e36e-3404-a7cf-e36db229b5f4,SESCO,II.1.1,San Juan,AR-J,annual,2014,jet kerosene combustion consumption by to the public,4.088889999999999,TJ,CH4,0.5,kg/TJ,2.0444449999999996,kg -3e77b802-6132-38b6-88cf-d3d4bbee1bcc,SESCO,II.1.1,San Juan,AR-J,annual,2014,jet kerosene combustion consumption by to the public,4.088889999999999,TJ,N2O,2.0,kg/TJ,8.177779999999998,kg -fd1f5123-267b-3658-85b5-185989c7b1b3,SESCO,II.1.1,San Luis,AR-D,annual,2014,jet kerosene combustion consumption by to the public,6.888206999999999,TJ,CO2,71500.0,kg/TJ,492506.8004999999,kg -3f4f391d-ae8d-36d2-ba0d-28fac5c9be44,SESCO,II.1.1,San Luis,AR-D,annual,2014,jet kerosene combustion consumption by to the public,6.888206999999999,TJ,CH4,0.5,kg/TJ,3.4441034999999993,kg -3ca7fcc6-bc10-3313-8a81-f74373205a95,SESCO,II.1.1,San Luis,AR-D,annual,2014,jet kerosene combustion consumption by to the public,6.888206999999999,TJ,N2O,2.0,kg/TJ,13.776413999999997,kg -4b95e7bd-43a7-31f0-9921-9bcba6739dbb,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2014,jet kerosene combustion consumption by to the public,13.493336999999999,TJ,CO2,71500.0,kg/TJ,964773.5954999999,kg -21148c47-034d-3ac3-8994-63dcb4543e34,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2014,jet kerosene combustion consumption by to the public,13.493336999999999,TJ,CH4,0.5,kg/TJ,6.746668499999999,kg -b3e503d0-ed28-373d-bb5c-1fff855e2fd0,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2014,jet kerosene combustion consumption by to the public,13.493336999999999,TJ,N2O,2.0,kg/TJ,26.986673999999997,kg -b596f9d9-5f60-374f-b9ae-724ccec3ceb8,SESCO,II.1.1,Santa Fe,AR-S,annual,2014,jet kerosene combustion consumption by to the public,37.680693999999995,TJ,CO2,71500.0,kg/TJ,2694169.621,kg -4c2ef46e-a954-3a6c-9816-907f373219e7,SESCO,II.1.1,Santa Fe,AR-S,annual,2014,jet kerosene combustion consumption by to the public,37.680693999999995,TJ,CH4,0.5,kg/TJ,18.840346999999998,kg -1317a0a0-6b56-3e70-84db-c0431c1d8f35,SESCO,II.1.1,Santa Fe,AR-S,annual,2014,jet kerosene combustion consumption by to the public,37.680693999999995,TJ,N2O,2.0,kg/TJ,75.36138799999999,kg -78839e93-e473-36fa-aae8-0a9ba179476e,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2014,jet kerosene combustion consumption by to the public,5.598633999999999,TJ,CO2,71500.0,kg/TJ,400302.3309999999,kg -84ab4ab6-e826-3421-bff0-8435d1159eab,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2014,jet kerosene combustion consumption by to the public,5.598633999999999,TJ,CH4,0.5,kg/TJ,2.7993169999999994,kg -db0241d6-e604-3685-b68a-81ff61ec192d,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2014,jet kerosene combustion consumption by to the public,5.598633999999999,TJ,N2O,2.0,kg/TJ,11.197267999999998,kg -144b54dc-5326-31f9-a003-fb72cba819c8,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2014,jet kerosene combustion consumption by to the public,1.5097439999999998,TJ,CO2,71500.0,kg/TJ,107946.69599999998,kg -e4335985-9857-39ef-8fee-c4cee1c54cc7,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2014,jet kerosene combustion consumption by to the public,1.5097439999999998,TJ,CH4,0.5,kg/TJ,0.7548719999999999,kg -41ddbb2b-adcb-3320-9be7-2067754af462,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2014,jet kerosene combustion consumption by to the public,1.5097439999999998,TJ,N2O,2.0,kg/TJ,3.0194879999999995,kg -089dec81-e1c0-3fa7-8f4d-09530c279241,SESCO,II.1.1,Tucuman,AR-T,annual,2014,jet kerosene combustion consumption by to the public,10.851284999999999,TJ,CO2,71500.0,kg/TJ,775866.8775,kg -4303589e-79a7-3c47-a283-d30cd90a5d25,SESCO,II.1.1,Tucuman,AR-T,annual,2014,jet kerosene combustion consumption by to the public,10.851284999999999,TJ,CH4,0.5,kg/TJ,5.4256424999999995,kg -ccafffdc-3e87-3b54-aed2-e2a5bf5d3278,SESCO,II.1.1,Tucuman,AR-T,annual,2014,jet kerosene combustion consumption by to the public,10.851284999999999,TJ,N2O,2.0,kg/TJ,21.702569999999998,kg -8d567245-4932-3a58-b1c0-09381b0fa566,SESCO,II.1.1,Buenos Aires,AR-B,annual,2014,gasoline combustion consumption by freight transport,49.2616,TJ,CO2,69300.0,kg/TJ,3413828.88,kg -bb2fee2f-328a-37f9-a374-e6336d156e68,SESCO,II.1.1,Buenos Aires,AR-B,annual,2014,gasoline combustion consumption by freight transport,49.2616,TJ,CH4,33.0,kg/TJ,1625.6328,kg -993acd24-ecc1-382d-99f7-2bd420bdd01c,SESCO,II.1.1,Buenos Aires,AR-B,annual,2014,gasoline combustion consumption by freight transport,49.2616,TJ,N2O,3.2,kg/TJ,157.63712,kg -55d446b2-c7a4-357b-bd2a-5f0294fcc8a4,SESCO,II.1.1,Capital Federal,AR-C,annual,2014,gasoline combustion consumption by freight transport,49.7046,TJ,CO2,69300.0,kg/TJ,3444528.78,kg -f6773e0a-68ec-3277-bee7-fe976d216fd3,SESCO,II.1.1,Capital Federal,AR-C,annual,2014,gasoline combustion consumption by freight transport,49.7046,TJ,CH4,33.0,kg/TJ,1640.2518,kg -a83dcb3a-3296-34e9-b072-7b3e862976de,SESCO,II.1.1,Capital Federal,AR-C,annual,2014,gasoline combustion consumption by freight transport,49.7046,TJ,N2O,3.2,kg/TJ,159.05472,kg -e8692205-f128-3491-9ef3-6307a7507fce,SESCO,II.1.1,Buenos Aires,AR-B,annual,2014,gas oil combustion consumption by freight transport,6974.0496,TJ,CO2,74100.0,kg/TJ,516777075.36,kg -e2373197-5e52-3eec-a4a0-454c7c8957dd,SESCO,II.1.1,Buenos Aires,AR-B,annual,2014,gas oil combustion consumption by freight transport,6974.0496,TJ,CH4,3.9,kg/TJ,27198.79344,kg -e2373197-5e52-3eec-a4a0-454c7c8957dd,SESCO,II.1.1,Buenos Aires,AR-B,annual,2014,gas oil combustion consumption by freight transport,6974.0496,TJ,N2O,3.9,kg/TJ,27198.79344,kg -72839089-0bf4-303d-8cdc-f868ef2fe343,SESCO,II.1.1,Capital Federal,AR-C,annual,2014,gas oil combustion consumption by freight transport,3617.99592,TJ,CO2,74100.0,kg/TJ,268093497.672,kg -d07e45d3-e7f2-3b41-81b9-10d14ac31b0b,SESCO,II.1.1,Capital Federal,AR-C,annual,2014,gas oil combustion consumption by freight transport,3617.99592,TJ,CH4,3.9,kg/TJ,14110.184087999998,kg -d07e45d3-e7f2-3b41-81b9-10d14ac31b0b,SESCO,II.1.1,Capital Federal,AR-C,annual,2014,gas oil combustion consumption by freight transport,3617.99592,TJ,N2O,3.9,kg/TJ,14110.184087999998,kg -01c4c139-4433-349e-a8b5-e14ed7019956,SESCO,II.1.1,Catamarca,AR-K,annual,2014,gas oil combustion consumption by freight transport,21.38304,TJ,CO2,74100.0,kg/TJ,1584483.2640000002,kg -f0d73dc8-7039-3d49-9da2-0d8d36caf629,SESCO,II.1.1,Catamarca,AR-K,annual,2014,gas oil combustion consumption by freight transport,21.38304,TJ,CH4,3.9,kg/TJ,83.393856,kg -f0d73dc8-7039-3d49-9da2-0d8d36caf629,SESCO,II.1.1,Catamarca,AR-K,annual,2014,gas oil combustion consumption by freight transport,21.38304,TJ,N2O,3.9,kg/TJ,83.393856,kg -433eeb6e-3fb8-3b71-9217-e3af8e5f0b65,SESCO,II.1.1,Chaco,AR-H,annual,2014,gas oil combustion consumption by freight transport,189.30492,TJ,CO2,74100.0,kg/TJ,14027494.572,kg -8a09a45a-e3e5-3e7c-a29b-68c6703c2e50,SESCO,II.1.1,Chaco,AR-H,annual,2014,gas oil combustion consumption by freight transport,189.30492,TJ,CH4,3.9,kg/TJ,738.289188,kg -8a09a45a-e3e5-3e7c-a29b-68c6703c2e50,SESCO,II.1.1,Chaco,AR-H,annual,2014,gas oil combustion consumption by freight transport,189.30492,TJ,N2O,3.9,kg/TJ,738.289188,kg -7458ee4f-4f4b-3969-957c-c7b4ce562887,SESCO,II.1.1,Chubut,AR-U,annual,2014,gas oil combustion consumption by freight transport,134.04131999999998,TJ,CO2,74100.0,kg/TJ,9932461.811999999,kg -7178075c-8c60-3d3d-94e3-e02c820156ca,SESCO,II.1.1,Chubut,AR-U,annual,2014,gas oil combustion consumption by freight transport,134.04131999999998,TJ,CH4,3.9,kg/TJ,522.7611479999999,kg -7178075c-8c60-3d3d-94e3-e02c820156ca,SESCO,II.1.1,Chubut,AR-U,annual,2014,gas oil combustion consumption by freight transport,134.04131999999998,TJ,N2O,3.9,kg/TJ,522.7611479999999,kg -36bdfd8d-307a-3780-8b2f-0fabdc788d45,SESCO,II.1.1,Corrientes,AR-W,annual,2014,gas oil combustion consumption by freight transport,296.32848,TJ,CO2,74100.0,kg/TJ,21957940.368,kg -15b1e152-e810-3516-8c77-2678acdb8898,SESCO,II.1.1,Corrientes,AR-W,annual,2014,gas oil combustion consumption by freight transport,296.32848,TJ,CH4,3.9,kg/TJ,1155.681072,kg -15b1e152-e810-3516-8c77-2678acdb8898,SESCO,II.1.1,Corrientes,AR-W,annual,2014,gas oil combustion consumption by freight transport,296.32848,TJ,N2O,3.9,kg/TJ,1155.681072,kg -60e73505-8ef8-35f3-9e56-a7c1f5412ac3,SESCO,II.1.1,Córdoba,AR-X,annual,2014,gas oil combustion consumption by freight transport,1829.00844,TJ,CO2,74100.0,kg/TJ,135529525.404,kg -feed1716-58c8-3958-9ff0-30ef943d03d9,SESCO,II.1.1,Córdoba,AR-X,annual,2014,gas oil combustion consumption by freight transport,1829.00844,TJ,CH4,3.9,kg/TJ,7133.1329160000005,kg -feed1716-58c8-3958-9ff0-30ef943d03d9,SESCO,II.1.1,Córdoba,AR-X,annual,2014,gas oil combustion consumption by freight transport,1829.00844,TJ,N2O,3.9,kg/TJ,7133.1329160000005,kg -2fba9354-c0d5-388d-9629-3bf3649bea9a,SESCO,II.1.1,Entre Rios,AR-E,annual,2014,gas oil combustion consumption by freight transport,264.79572,TJ,CO2,74100.0,kg/TJ,19621362.852,kg -44dacf9b-5f07-37c9-a0c7-f08452232f67,SESCO,II.1.1,Entre Rios,AR-E,annual,2014,gas oil combustion consumption by freight transport,264.79572,TJ,CH4,3.9,kg/TJ,1032.703308,kg -44dacf9b-5f07-37c9-a0c7-f08452232f67,SESCO,II.1.1,Entre Rios,AR-E,annual,2014,gas oil combustion consumption by freight transport,264.79572,TJ,N2O,3.9,kg/TJ,1032.703308,kg -7ecc4aa4-7e9a-360d-be4c-8ddef3b054f0,SESCO,II.1.1,Formosa,AR-P,annual,2014,gas oil combustion consumption by freight transport,0.65016,TJ,CO2,74100.0,kg/TJ,48176.856,kg -417a0213-c971-3029-9133-d7fe0ede65ba,SESCO,II.1.1,Formosa,AR-P,annual,2014,gas oil combustion consumption by freight transport,0.65016,TJ,CH4,3.9,kg/TJ,2.535624,kg -417a0213-c971-3029-9133-d7fe0ede65ba,SESCO,II.1.1,Formosa,AR-P,annual,2014,gas oil combustion consumption by freight transport,0.65016,TJ,N2O,3.9,kg/TJ,2.535624,kg -2110f949-73b6-3d1d-b4fd-48a539ad437e,SESCO,II.1.1,Jujuy,AR-Y,annual,2014,gas oil combustion consumption by freight transport,44.39148,TJ,CO2,74100.0,kg/TJ,3289408.668,kg -7a7e82e5-5696-3eb6-b3f9-e777245721d6,SESCO,II.1.1,Jujuy,AR-Y,annual,2014,gas oil combustion consumption by freight transport,44.39148,TJ,CH4,3.9,kg/TJ,173.126772,kg -7a7e82e5-5696-3eb6-b3f9-e777245721d6,SESCO,II.1.1,Jujuy,AR-Y,annual,2014,gas oil combustion consumption by freight transport,44.39148,TJ,N2O,3.9,kg/TJ,173.126772,kg -b6aa9c9a-564e-3095-8390-406f803ab56d,SESCO,II.1.1,La Pampa,AR-L,annual,2014,gas oil combustion consumption by freight transport,36.22836,TJ,CO2,74100.0,kg/TJ,2684521.4760000003,kg -1372788a-1696-3e1e-808f-5537f2e09ed9,SESCO,II.1.1,La Pampa,AR-L,annual,2014,gas oil combustion consumption by freight transport,36.22836,TJ,CH4,3.9,kg/TJ,141.290604,kg -1372788a-1696-3e1e-808f-5537f2e09ed9,SESCO,II.1.1,La Pampa,AR-L,annual,2014,gas oil combustion consumption by freight transport,36.22836,TJ,N2O,3.9,kg/TJ,141.290604,kg -0f32c794-bf5d-3ed9-97a7-822dbd65b2d8,SESCO,II.1.1,La Rioja,AR-F,annual,2014,gas oil combustion consumption by freight transport,0.7223999999999999,TJ,CO2,74100.0,kg/TJ,53529.84,kg -d083e39e-ba7a-33a3-a441-47765e7ef6d1,SESCO,II.1.1,La Rioja,AR-F,annual,2014,gas oil combustion consumption by freight transport,0.7223999999999999,TJ,CH4,3.9,kg/TJ,2.81736,kg -d083e39e-ba7a-33a3-a441-47765e7ef6d1,SESCO,II.1.1,La Rioja,AR-F,annual,2014,gas oil combustion consumption by freight transport,0.7223999999999999,TJ,N2O,3.9,kg/TJ,2.81736,kg -40e3608a-2a5b-389b-b152-cdd4fdee4d1c,SESCO,II.1.1,Mendoza,AR-M,annual,2014,gas oil combustion consumption by freight transport,1569.1972799999999,TJ,CO2,74100.0,kg/TJ,116277518.44799998,kg -cdb97d3e-7ded-359b-b195-aecc50591576,SESCO,II.1.1,Mendoza,AR-M,annual,2014,gas oil combustion consumption by freight transport,1569.1972799999999,TJ,CH4,3.9,kg/TJ,6119.869392,kg -cdb97d3e-7ded-359b-b195-aecc50591576,SESCO,II.1.1,Mendoza,AR-M,annual,2014,gas oil combustion consumption by freight transport,1569.1972799999999,TJ,N2O,3.9,kg/TJ,6119.869392,kg -0f2f14c5-d892-35f1-94ba-7a2bf6d3ab9f,SESCO,II.1.1,Misiones,AR-N,annual,2014,gas oil combustion consumption by freight transport,426.43272,TJ,CO2,74100.0,kg/TJ,31598664.552,kg -8826fec0-79c7-3255-a1c2-6af5b515b5d5,SESCO,II.1.1,Misiones,AR-N,annual,2014,gas oil combustion consumption by freight transport,426.43272,TJ,CH4,3.9,kg/TJ,1663.087608,kg -8826fec0-79c7-3255-a1c2-6af5b515b5d5,SESCO,II.1.1,Misiones,AR-N,annual,2014,gas oil combustion consumption by freight transport,426.43272,TJ,N2O,3.9,kg/TJ,1663.087608,kg -40cc6108-d4b8-31a3-9dca-c6c195846d17,SESCO,II.1.1,Neuquén,AR-Q,annual,2014,gas oil combustion consumption by freight transport,634.84512,TJ,CO2,74100.0,kg/TJ,47042023.392,kg -eae12174-a6c4-31fe-9a94-a0bd66837fff,SESCO,II.1.1,Neuquén,AR-Q,annual,2014,gas oil combustion consumption by freight transport,634.84512,TJ,CH4,3.9,kg/TJ,2475.895968,kg -eae12174-a6c4-31fe-9a94-a0bd66837fff,SESCO,II.1.1,Neuquén,AR-Q,annual,2014,gas oil combustion consumption by freight transport,634.84512,TJ,N2O,3.9,kg/TJ,2475.895968,kg -5c493f2a-c44a-3fce-abfe-9cb285d5780d,SESCO,II.1.1,Rio Negro,AR-R,annual,2014,gas oil combustion consumption by freight transport,132.12696,TJ,CO2,74100.0,kg/TJ,9790607.736,kg -b588f9a3-bc64-317f-a04c-c693b64338e1,SESCO,II.1.1,Rio Negro,AR-R,annual,2014,gas oil combustion consumption by freight transport,132.12696,TJ,CH4,3.9,kg/TJ,515.2951439999999,kg -b588f9a3-bc64-317f-a04c-c693b64338e1,SESCO,II.1.1,Rio Negro,AR-R,annual,2014,gas oil combustion consumption by freight transport,132.12696,TJ,N2O,3.9,kg/TJ,515.2951439999999,kg -7ee08b65-b9d9-3698-b760-a98e03423de0,SESCO,II.1.1,Salta,AR-A,annual,2014,gas oil combustion consumption by freight transport,188.40192,TJ,CO2,74100.0,kg/TJ,13960582.272,kg -ab735e59-ce00-3121-b07f-198768d2e342,SESCO,II.1.1,Salta,AR-A,annual,2014,gas oil combustion consumption by freight transport,188.40192,TJ,CH4,3.9,kg/TJ,734.767488,kg -ab735e59-ce00-3121-b07f-198768d2e342,SESCO,II.1.1,Salta,AR-A,annual,2014,gas oil combustion consumption by freight transport,188.40192,TJ,N2O,3.9,kg/TJ,734.767488,kg -1eae2ef7-e252-3289-a4f7-21767df77288,SESCO,II.1.1,San Juan,AR-J,annual,2014,gas oil combustion consumption by freight transport,110.12988,TJ,CO2,74100.0,kg/TJ,8160624.108,kg -95adba3b-5342-369f-ac3e-7699948ab2aa,SESCO,II.1.1,San Juan,AR-J,annual,2014,gas oil combustion consumption by freight transport,110.12988,TJ,CH4,3.9,kg/TJ,429.506532,kg -95adba3b-5342-369f-ac3e-7699948ab2aa,SESCO,II.1.1,San Juan,AR-J,annual,2014,gas oil combustion consumption by freight transport,110.12988,TJ,N2O,3.9,kg/TJ,429.506532,kg -ad78a3cd-d3ca-3131-addc-05671be7b05f,SESCO,II.1.1,San Luis,AR-D,annual,2014,gas oil combustion consumption by freight transport,159.54204,TJ,CO2,74100.0,kg/TJ,11822065.163999999,kg -138c5d6b-4970-399e-903f-cc3c3ecf94b6,SESCO,II.1.1,San Luis,AR-D,annual,2014,gas oil combustion consumption by freight transport,159.54204,TJ,CH4,3.9,kg/TJ,622.2139559999999,kg -138c5d6b-4970-399e-903f-cc3c3ecf94b6,SESCO,II.1.1,San Luis,AR-D,annual,2014,gas oil combustion consumption by freight transport,159.54204,TJ,N2O,3.9,kg/TJ,622.2139559999999,kg -4e32fc87-dee6-34c9-9cd2-c4c772693a82,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2014,gas oil combustion consumption by freight transport,57.71976,TJ,CO2,74100.0,kg/TJ,4277034.216,kg -5187079e-98cd-3703-ad08-db7d0590dcaa,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2014,gas oil combustion consumption by freight transport,57.71976,TJ,CH4,3.9,kg/TJ,225.107064,kg -5187079e-98cd-3703-ad08-db7d0590dcaa,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2014,gas oil combustion consumption by freight transport,57.71976,TJ,N2O,3.9,kg/TJ,225.107064,kg -8b8e4031-d19e-323f-bb63-5595edf6a6c5,SESCO,II.1.1,Santa Fe,AR-S,annual,2014,gas oil combustion consumption by freight transport,1731.80952,TJ,CO2,74100.0,kg/TJ,128327085.432,kg -e233787e-d914-3dff-9f4f-ae7aa3cb21c6,SESCO,II.1.1,Santa Fe,AR-S,annual,2014,gas oil combustion consumption by freight transport,1731.80952,TJ,CH4,3.9,kg/TJ,6754.057128,kg -e233787e-d914-3dff-9f4f-ae7aa3cb21c6,SESCO,II.1.1,Santa Fe,AR-S,annual,2014,gas oil combustion consumption by freight transport,1731.80952,TJ,N2O,3.9,kg/TJ,6754.057128,kg -5abb776a-ebe2-3d03-aeb0-5a3b300cda61,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2014,gas oil combustion consumption by freight transport,75.4908,TJ,CO2,74100.0,kg/TJ,5593868.279999999,kg -0cc188dd-a8cb-3ffa-8f02-b0545b636e29,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2014,gas oil combustion consumption by freight transport,75.4908,TJ,CH4,3.9,kg/TJ,294.41411999999997,kg -0cc188dd-a8cb-3ffa-8f02-b0545b636e29,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2014,gas oil combustion consumption by freight transport,75.4908,TJ,N2O,3.9,kg/TJ,294.41411999999997,kg -7b2de18b-7a13-35f8-a738-954d50eec356,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2014,gas oil combustion consumption by freight transport,9.89688,TJ,CO2,74100.0,kg/TJ,733358.808,kg -167c160a-4602-3e55-9185-6ae6f74a0cbd,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2014,gas oil combustion consumption by freight transport,9.89688,TJ,CH4,3.9,kg/TJ,38.597832,kg -167c160a-4602-3e55-9185-6ae6f74a0cbd,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2014,gas oil combustion consumption by freight transport,9.89688,TJ,N2O,3.9,kg/TJ,38.597832,kg -f66c311d-cfe9-37e3-b147-d092d8e4af54,SESCO,II.1.1,Tucuman,AR-T,annual,2014,gas oil combustion consumption by freight transport,291.74124,TJ,CO2,74100.0,kg/TJ,21618025.884,kg -09ef47bc-d26e-3de4-bb5e-1fc62ddf0070,SESCO,II.1.1,Tucuman,AR-T,annual,2014,gas oil combustion consumption by freight transport,291.74124,TJ,CH4,3.9,kg/TJ,1137.790836,kg -09ef47bc-d26e-3de4-bb5e-1fc62ddf0070,SESCO,II.1.1,Tucuman,AR-T,annual,2014,gas oil combustion consumption by freight transport,291.74124,TJ,N2O,3.9,kg/TJ,1137.790836,kg -6996fb2f-e105-3d1d-9c41-fbc27c4c245b,SESCO,II.1.1,Buenos Aires,AR-B,annual,2014,gas oil combustion consumption by freight transport,348.48575999999997,TJ,CO2,74100.0,kg/TJ,25822794.816,kg -1c3e39a6-6cb3-35ba-b219-109d6375e7ee,SESCO,II.1.1,Buenos Aires,AR-B,annual,2014,gas oil combustion consumption by freight transport,348.48575999999997,TJ,CH4,3.9,kg/TJ,1359.0944639999998,kg -1c3e39a6-6cb3-35ba-b219-109d6375e7ee,SESCO,II.1.1,Buenos Aires,AR-B,annual,2014,gas oil combustion consumption by freight transport,348.48575999999997,TJ,N2O,3.9,kg/TJ,1359.0944639999998,kg -963b47a9-b94d-3f95-9281-685340853120,SESCO,II.1.1,Capital Federal,AR-C,annual,2014,gas oil combustion consumption by freight transport,555.1644,TJ,CO2,74100.0,kg/TJ,41137682.04,kg -f4f61724-b1fc-33ca-bc92-4ed5dcded00f,SESCO,II.1.1,Capital Federal,AR-C,annual,2014,gas oil combustion consumption by freight transport,555.1644,TJ,CH4,3.9,kg/TJ,2165.14116,kg -f4f61724-b1fc-33ca-bc92-4ed5dcded00f,SESCO,II.1.1,Capital Federal,AR-C,annual,2014,gas oil combustion consumption by freight transport,555.1644,TJ,N2O,3.9,kg/TJ,2165.14116,kg -55d70975-75f3-3aff-92c1-44c6b8f84b77,SESCO,II.1.1,Chaco,AR-H,annual,2014,gas oil combustion consumption by freight transport,11.95572,TJ,CO2,74100.0,kg/TJ,885918.852,kg -750293e8-d08e-32c3-9953-1d75ee22015a,SESCO,II.1.1,Chaco,AR-H,annual,2014,gas oil combustion consumption by freight transport,11.95572,TJ,CH4,3.9,kg/TJ,46.627308,kg -750293e8-d08e-32c3-9953-1d75ee22015a,SESCO,II.1.1,Chaco,AR-H,annual,2014,gas oil combustion consumption by freight transport,11.95572,TJ,N2O,3.9,kg/TJ,46.627308,kg -0290ecc5-e362-3a24-8b51-ca450d43ed11,SESCO,II.1.1,Chubut,AR-U,annual,2014,gas oil combustion consumption by freight transport,5.5986,TJ,CO2,74100.0,kg/TJ,414856.26,kg -504137f9-39ea-3232-a6d3-68c644cd431a,SESCO,II.1.1,Chubut,AR-U,annual,2014,gas oil combustion consumption by freight transport,5.5986,TJ,CH4,3.9,kg/TJ,21.83454,kg -504137f9-39ea-3232-a6d3-68c644cd431a,SESCO,II.1.1,Chubut,AR-U,annual,2014,gas oil combustion consumption by freight transport,5.5986,TJ,N2O,3.9,kg/TJ,21.83454,kg -405c72df-70b9-3c1c-b0f4-1b87ab506056,SESCO,II.1.1,Corrientes,AR-W,annual,2014,gas oil combustion consumption by freight transport,2.09496,TJ,CO2,74100.0,kg/TJ,155236.536,kg -f55a4c18-584e-33fe-9655-beefeefad836,SESCO,II.1.1,Corrientes,AR-W,annual,2014,gas oil combustion consumption by freight transport,2.09496,TJ,CH4,3.9,kg/TJ,8.170344,kg -f55a4c18-584e-33fe-9655-beefeefad836,SESCO,II.1.1,Corrientes,AR-W,annual,2014,gas oil combustion consumption by freight transport,2.09496,TJ,N2O,3.9,kg/TJ,8.170344,kg -ad0c9164-4f10-38cc-b706-f5d6e0a28f20,SESCO,II.1.1,Córdoba,AR-X,annual,2014,gas oil combustion consumption by freight transport,10.69152,TJ,CO2,74100.0,kg/TJ,792241.6320000001,kg -2b2a1f69-d2c7-3d87-a16a-5e661e3ac826,SESCO,II.1.1,Córdoba,AR-X,annual,2014,gas oil combustion consumption by freight transport,10.69152,TJ,CH4,3.9,kg/TJ,41.696928,kg -2b2a1f69-d2c7-3d87-a16a-5e661e3ac826,SESCO,II.1.1,Córdoba,AR-X,annual,2014,gas oil combustion consumption by freight transport,10.69152,TJ,N2O,3.9,kg/TJ,41.696928,kg -07f3def1-59f3-3120-9c6a-e91f3dd8dc1c,SESCO,II.1.1,Entre Rios,AR-E,annual,2014,gas oil combustion consumption by freight transport,13.3644,TJ,CO2,74100.0,kg/TJ,990302.04,kg -616ab8ad-913c-373d-b12d-3c6ba66f5c20,SESCO,II.1.1,Entre Rios,AR-E,annual,2014,gas oil combustion consumption by freight transport,13.3644,TJ,CH4,3.9,kg/TJ,52.121159999999996,kg -616ab8ad-913c-373d-b12d-3c6ba66f5c20,SESCO,II.1.1,Entre Rios,AR-E,annual,2014,gas oil combustion consumption by freight transport,13.3644,TJ,N2O,3.9,kg/TJ,52.121159999999996,kg -af3a1ef4-ef4e-3cd1-9367-655b29438884,SESCO,II.1.1,Jujuy,AR-Y,annual,2014,gas oil combustion consumption by freight transport,0.28896,TJ,CO2,74100.0,kg/TJ,21411.935999999998,kg -6cb174f1-6558-3ef0-abfc-e5b1e4e229c6,SESCO,II.1.1,Jujuy,AR-Y,annual,2014,gas oil combustion consumption by freight transport,0.28896,TJ,CH4,3.9,kg/TJ,1.126944,kg -6cb174f1-6558-3ef0-abfc-e5b1e4e229c6,SESCO,II.1.1,Jujuy,AR-Y,annual,2014,gas oil combustion consumption by freight transport,0.28896,TJ,N2O,3.9,kg/TJ,1.126944,kg -7c49e1a9-b233-362c-b6e9-98ed67c4f775,SESCO,II.1.1,La Pampa,AR-L,annual,2014,gas oil combustion consumption by freight transport,0.21672,TJ,CO2,74100.0,kg/TJ,16058.952,kg -a25c2419-5257-34a0-bec8-a15894894c5b,SESCO,II.1.1,La Pampa,AR-L,annual,2014,gas oil combustion consumption by freight transport,0.21672,TJ,CH4,3.9,kg/TJ,0.845208,kg -a25c2419-5257-34a0-bec8-a15894894c5b,SESCO,II.1.1,La Pampa,AR-L,annual,2014,gas oil combustion consumption by freight transport,0.21672,TJ,N2O,3.9,kg/TJ,0.845208,kg -dcda983a-3be1-39f0-9809-9fe6bb5bcd49,SESCO,II.1.1,La Rioja,AR-F,annual,2014,gas oil combustion consumption by freight transport,1.87824,TJ,CO2,74100.0,kg/TJ,139177.584,kg -753c3625-6f30-3a2f-9f81-35543347157d,SESCO,II.1.1,La Rioja,AR-F,annual,2014,gas oil combustion consumption by freight transport,1.87824,TJ,CH4,3.9,kg/TJ,7.325136,kg -753c3625-6f30-3a2f-9f81-35543347157d,SESCO,II.1.1,La Rioja,AR-F,annual,2014,gas oil combustion consumption by freight transport,1.87824,TJ,N2O,3.9,kg/TJ,7.325136,kg -2bf22b79-75b1-3d78-ae83-1b1d2f923a8b,SESCO,II.1.1,Mendoza,AR-M,annual,2014,gas oil combustion consumption by freight transport,23.00844,TJ,CO2,74100.0,kg/TJ,1704925.404,kg -1319ea1f-1720-3c01-a7f5-9e9908c0f6f6,SESCO,II.1.1,Mendoza,AR-M,annual,2014,gas oil combustion consumption by freight transport,23.00844,TJ,CH4,3.9,kg/TJ,89.732916,kg -1319ea1f-1720-3c01-a7f5-9e9908c0f6f6,SESCO,II.1.1,Mendoza,AR-M,annual,2014,gas oil combustion consumption by freight transport,23.00844,TJ,N2O,3.9,kg/TJ,89.732916,kg -facdc35d-ee6c-37ab-b888-65871bf8fea0,SESCO,II.1.1,Misiones,AR-N,annual,2014,gas oil combustion consumption by freight transport,6.28488,TJ,CO2,74100.0,kg/TJ,465709.608,kg -13244397-76da-3f9a-9309-6c8764143d96,SESCO,II.1.1,Misiones,AR-N,annual,2014,gas oil combustion consumption by freight transport,6.28488,TJ,CH4,3.9,kg/TJ,24.511032,kg -13244397-76da-3f9a-9309-6c8764143d96,SESCO,II.1.1,Misiones,AR-N,annual,2014,gas oil combustion consumption by freight transport,6.28488,TJ,N2O,3.9,kg/TJ,24.511032,kg -313fa9df-0845-38b5-ba47-cf8ecca87193,SESCO,II.1.1,Neuquén,AR-Q,annual,2014,gas oil combustion consumption by freight transport,10.07748,TJ,CO2,74100.0,kg/TJ,746741.2679999999,kg -02ce5a90-0258-35a6-8918-273f22064b0b,SESCO,II.1.1,Neuquén,AR-Q,annual,2014,gas oil combustion consumption by freight transport,10.07748,TJ,CH4,3.9,kg/TJ,39.302172,kg -02ce5a90-0258-35a6-8918-273f22064b0b,SESCO,II.1.1,Neuquén,AR-Q,annual,2014,gas oil combustion consumption by freight transport,10.07748,TJ,N2O,3.9,kg/TJ,39.302172,kg -1252ac9f-174a-3c3c-b9e8-380d43a42f2c,SESCO,II.1.1,Rio Negro,AR-R,annual,2014,gas oil combustion consumption by freight transport,2.60064,TJ,CO2,74100.0,kg/TJ,192707.424,kg -b02cfbd0-00af-341c-9698-efcd8fca5ceb,SESCO,II.1.1,Rio Negro,AR-R,annual,2014,gas oil combustion consumption by freight transport,2.60064,TJ,CH4,3.9,kg/TJ,10.142496,kg -b02cfbd0-00af-341c-9698-efcd8fca5ceb,SESCO,II.1.1,Rio Negro,AR-R,annual,2014,gas oil combustion consumption by freight transport,2.60064,TJ,N2O,3.9,kg/TJ,10.142496,kg -88de971b-955b-3e2e-9e3c-7566abe5ffcf,SESCO,II.1.1,Salta,AR-A,annual,2014,gas oil combustion consumption by freight transport,14.77308,TJ,CO2,74100.0,kg/TJ,1094685.2280000001,kg -78a06ec3-d954-36e5-ba08-2ccba2a34c8e,SESCO,II.1.1,Salta,AR-A,annual,2014,gas oil combustion consumption by freight transport,14.77308,TJ,CH4,3.9,kg/TJ,57.615012,kg -78a06ec3-d954-36e5-ba08-2ccba2a34c8e,SESCO,II.1.1,Salta,AR-A,annual,2014,gas oil combustion consumption by freight transport,14.77308,TJ,N2O,3.9,kg/TJ,57.615012,kg -9b7b353a-68e3-3c1d-b14a-d6ed4224e523,SESCO,II.1.1,San Juan,AR-J,annual,2014,gas oil combustion consumption by freight transport,3.0702,TJ,CO2,74100.0,kg/TJ,227501.81999999998,kg -026ca2c4-03ca-30e4-a19a-2badf58d9a8d,SESCO,II.1.1,San Juan,AR-J,annual,2014,gas oil combustion consumption by freight transport,3.0702,TJ,CH4,3.9,kg/TJ,11.97378,kg -026ca2c4-03ca-30e4-a19a-2badf58d9a8d,SESCO,II.1.1,San Juan,AR-J,annual,2014,gas oil combustion consumption by freight transport,3.0702,TJ,N2O,3.9,kg/TJ,11.97378,kg -bb2c759c-61d0-39f3-b514-310c2328e749,SESCO,II.1.1,San Luis,AR-D,annual,2014,gas oil combustion consumption by freight transport,1.19196,TJ,CO2,74100.0,kg/TJ,88324.23599999999,kg -993547b1-b733-3d55-937b-c1ae654e5a5c,SESCO,II.1.1,San Luis,AR-D,annual,2014,gas oil combustion consumption by freight transport,1.19196,TJ,CH4,3.9,kg/TJ,4.648643999999999,kg -993547b1-b733-3d55-937b-c1ae654e5a5c,SESCO,II.1.1,San Luis,AR-D,annual,2014,gas oil combustion consumption by freight transport,1.19196,TJ,N2O,3.9,kg/TJ,4.648643999999999,kg -c9307b02-028a-3124-9818-0ec2062b503b,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2014,gas oil combustion consumption by freight transport,1.01136,TJ,CO2,74100.0,kg/TJ,74941.776,kg -3b42235f-98bd-3efa-a542-aeac86a64d8d,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2014,gas oil combustion consumption by freight transport,1.01136,TJ,CH4,3.9,kg/TJ,3.9443040000000003,kg -3b42235f-98bd-3efa-a542-aeac86a64d8d,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2014,gas oil combustion consumption by freight transport,1.01136,TJ,N2O,3.9,kg/TJ,3.9443040000000003,kg -5626e13d-1f12-3628-905d-c58044712bb0,SESCO,II.1.1,Santa Fe,AR-S,annual,2014,gas oil combustion consumption by freight transport,130.46544,TJ,CO2,74100.0,kg/TJ,9667489.104,kg -798996b1-5adf-3253-b5c3-12f67240d27b,SESCO,II.1.1,Santa Fe,AR-S,annual,2014,gas oil combustion consumption by freight transport,130.46544,TJ,CH4,3.9,kg/TJ,508.81521599999996,kg -798996b1-5adf-3253-b5c3-12f67240d27b,SESCO,II.1.1,Santa Fe,AR-S,annual,2014,gas oil combustion consumption by freight transport,130.46544,TJ,N2O,3.9,kg/TJ,508.81521599999996,kg -767c2e44-8146-3aae-830c-229491064951,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2014,gas oil combustion consumption by freight transport,0.03612,TJ,CO2,74100.0,kg/TJ,2676.4919999999997,kg -a8914733-0b94-3d52-b39a-ea4e29ecfc53,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2014,gas oil combustion consumption by freight transport,0.03612,TJ,CH4,3.9,kg/TJ,0.140868,kg -a8914733-0b94-3d52-b39a-ea4e29ecfc53,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2014,gas oil combustion consumption by freight transport,0.03612,TJ,N2O,3.9,kg/TJ,0.140868,kg -6942ddf3-f7fa-3aae-b246-ba1e26fe550c,SESCO,II.1.1,Tucuman,AR-T,annual,2014,gas oil combustion consumption by freight transport,6.6822,TJ,CO2,74100.0,kg/TJ,495151.02,kg -093850a4-8e32-336f-83e6-c839b4ea4dc4,SESCO,II.1.1,Tucuman,AR-T,annual,2014,gas oil combustion consumption by freight transport,6.6822,TJ,CH4,3.9,kg/TJ,26.060579999999998,kg -093850a4-8e32-336f-83e6-c839b4ea4dc4,SESCO,II.1.1,Tucuman,AR-T,annual,2014,gas oil combustion consumption by freight transport,6.6822,TJ,N2O,3.9,kg/TJ,26.060579999999998,kg -b975c56b-56f3-363f-97b3-67548fe4ee2f,SESCO,II.1.1,Buenos Aires,AR-B,annual,2014,gas oil combustion consumption by public passenger transport,11235.34272,TJ,CO2,74100.0,kg/TJ,832538895.552,kg -1c624c28-7d7c-3257-ad57-22aef0efa379,SESCO,II.1.1,Buenos Aires,AR-B,annual,2014,gas oil combustion consumption by public passenger transport,11235.34272,TJ,CH4,3.9,kg/TJ,43817.836608,kg -1c624c28-7d7c-3257-ad57-22aef0efa379,SESCO,II.1.1,Buenos Aires,AR-B,annual,2014,gas oil combustion consumption by public passenger transport,11235.34272,TJ,N2O,3.9,kg/TJ,43817.836608,kg -03bcfe22-9603-3ff7-bd99-f986a075eeb0,SESCO,II.1.1,Capital Federal,AR-C,annual,2014,gas oil combustion consumption by public passenger transport,2645.68164,TJ,CO2,74100.0,kg/TJ,196045009.524,kg -cf5d88e5-11a7-3c9a-91c3-8c6ece9c4f67,SESCO,II.1.1,Capital Federal,AR-C,annual,2014,gas oil combustion consumption by public passenger transport,2645.68164,TJ,CH4,3.9,kg/TJ,10318.158395999999,kg -cf5d88e5-11a7-3c9a-91c3-8c6ece9c4f67,SESCO,II.1.1,Capital Federal,AR-C,annual,2014,gas oil combustion consumption by public passenger transport,2645.68164,TJ,N2O,3.9,kg/TJ,10318.158395999999,kg -44be6cb3-d3b9-3b68-b120-b3d083bd45a4,SESCO,II.1.1,Catamarca,AR-K,annual,2014,gas oil combustion consumption by public passenger transport,223.14936,TJ,CO2,74100.0,kg/TJ,16535367.576,kg -f297d9df-189c-345e-970b-52c6e349f5a8,SESCO,II.1.1,Catamarca,AR-K,annual,2014,gas oil combustion consumption by public passenger transport,223.14936,TJ,CH4,3.9,kg/TJ,870.282504,kg -f297d9df-189c-345e-970b-52c6e349f5a8,SESCO,II.1.1,Catamarca,AR-K,annual,2014,gas oil combustion consumption by public passenger transport,223.14936,TJ,N2O,3.9,kg/TJ,870.282504,kg -1a72a92d-e621-3aa1-9db8-1d87c2929958,SESCO,II.1.1,Chaco,AR-H,annual,2014,gas oil combustion consumption by public passenger transport,494.30219999999997,TJ,CO2,74100.0,kg/TJ,36627793.019999996,kg -720eb68a-6a83-381d-9067-0b9897108935,SESCO,II.1.1,Chaco,AR-H,annual,2014,gas oil combustion consumption by public passenger transport,494.30219999999997,TJ,CH4,3.9,kg/TJ,1927.77858,kg -720eb68a-6a83-381d-9067-0b9897108935,SESCO,II.1.1,Chaco,AR-H,annual,2014,gas oil combustion consumption by public passenger transport,494.30219999999997,TJ,N2O,3.9,kg/TJ,1927.77858,kg -3eaf7117-864d-3285-8580-3a4d7b22ae32,SESCO,II.1.1,Chubut,AR-U,annual,2014,gas oil combustion consumption by public passenger transport,100.73868,TJ,CO2,74100.0,kg/TJ,7464736.188,kg -473abd1e-440a-3cb8-98f4-a203a199e0de,SESCO,II.1.1,Chubut,AR-U,annual,2014,gas oil combustion consumption by public passenger transport,100.73868,TJ,CH4,3.9,kg/TJ,392.880852,kg -473abd1e-440a-3cb8-98f4-a203a199e0de,SESCO,II.1.1,Chubut,AR-U,annual,2014,gas oil combustion consumption by public passenger transport,100.73868,TJ,N2O,3.9,kg/TJ,392.880852,kg -bda5e1d6-d602-3d18-98cf-6507f8645c10,SESCO,II.1.1,Corrientes,AR-W,annual,2014,gas oil combustion consumption by public passenger transport,508.06392,TJ,CO2,74100.0,kg/TJ,37647536.472,kg -788d6631-3e68-35ae-9507-a1f8edfea361,SESCO,II.1.1,Corrientes,AR-W,annual,2014,gas oil combustion consumption by public passenger transport,508.06392,TJ,CH4,3.9,kg/TJ,1981.449288,kg -788d6631-3e68-35ae-9507-a1f8edfea361,SESCO,II.1.1,Corrientes,AR-W,annual,2014,gas oil combustion consumption by public passenger transport,508.06392,TJ,N2O,3.9,kg/TJ,1981.449288,kg -8453448d-9719-3227-9ada-3f49f72e12d0,SESCO,II.1.1,Córdoba,AR-X,annual,2014,gas oil combustion consumption by public passenger transport,1711.04052,TJ,CO2,74100.0,kg/TJ,126788102.532,kg -9c3f4855-4b50-3cc4-a6c0-70d001be2aea,SESCO,II.1.1,Córdoba,AR-X,annual,2014,gas oil combustion consumption by public passenger transport,1711.04052,TJ,CH4,3.9,kg/TJ,6673.0580279999995,kg -9c3f4855-4b50-3cc4-a6c0-70d001be2aea,SESCO,II.1.1,Córdoba,AR-X,annual,2014,gas oil combustion consumption by public passenger transport,1711.04052,TJ,N2O,3.9,kg/TJ,6673.0580279999995,kg -2a7555cf-16d5-3ec7-8092-5d8297b5bd06,SESCO,II.1.1,Entre Rios,AR-E,annual,2014,gas oil combustion consumption by public passenger transport,480.10704,TJ,CO2,74100.0,kg/TJ,35575931.664,kg -b469a6d7-8179-3270-94e6-31caaf781b42,SESCO,II.1.1,Entre Rios,AR-E,annual,2014,gas oil combustion consumption by public passenger transport,480.10704,TJ,CH4,3.9,kg/TJ,1872.417456,kg -b469a6d7-8179-3270-94e6-31caaf781b42,SESCO,II.1.1,Entre Rios,AR-E,annual,2014,gas oil combustion consumption by public passenger transport,480.10704,TJ,N2O,3.9,kg/TJ,1872.417456,kg -cc5461e5-bb13-3a5a-83ee-008ad5f57e50,SESCO,II.1.1,Formosa,AR-P,annual,2014,gas oil combustion consumption by public passenger transport,57.286319999999996,TJ,CO2,74100.0,kg/TJ,4244916.312,kg -06162153-ed97-3e3a-ba45-1cfd9bdcdd0b,SESCO,II.1.1,Formosa,AR-P,annual,2014,gas oil combustion consumption by public passenger transport,57.286319999999996,TJ,CH4,3.9,kg/TJ,223.41664799999998,kg -06162153-ed97-3e3a-ba45-1cfd9bdcdd0b,SESCO,II.1.1,Formosa,AR-P,annual,2014,gas oil combustion consumption by public passenger transport,57.286319999999996,TJ,N2O,3.9,kg/TJ,223.41664799999998,kg -225b9ba3-cd66-3be1-b2f3-e52c40817a57,SESCO,II.1.1,Jujuy,AR-Y,annual,2014,gas oil combustion consumption by public passenger transport,593.70444,TJ,CO2,74100.0,kg/TJ,43993499.004,kg -40605e94-ab88-3a3f-aefc-92514b75ab3e,SESCO,II.1.1,Jujuy,AR-Y,annual,2014,gas oil combustion consumption by public passenger transport,593.70444,TJ,CH4,3.9,kg/TJ,2315.447316,kg -40605e94-ab88-3a3f-aefc-92514b75ab3e,SESCO,II.1.1,Jujuy,AR-Y,annual,2014,gas oil combustion consumption by public passenger transport,593.70444,TJ,N2O,3.9,kg/TJ,2315.447316,kg -5d4a10a0-6ec9-351b-8468-ddc790007e72,SESCO,II.1.1,La Pampa,AR-L,annual,2014,gas oil combustion consumption by public passenger transport,46.305839999999996,TJ,CO2,74100.0,kg/TJ,3431262.744,kg -f125b067-65dc-3082-8e4e-a7ea66bdd996,SESCO,II.1.1,La Pampa,AR-L,annual,2014,gas oil combustion consumption by public passenger transport,46.305839999999996,TJ,CH4,3.9,kg/TJ,180.592776,kg -f125b067-65dc-3082-8e4e-a7ea66bdd996,SESCO,II.1.1,La Pampa,AR-L,annual,2014,gas oil combustion consumption by public passenger transport,46.305839999999996,TJ,N2O,3.9,kg/TJ,180.592776,kg -eff673cf-972c-35d6-9dd8-d90018b3c607,SESCO,II.1.1,La Rioja,AR-F,annual,2014,gas oil combustion consumption by public passenger transport,116.05356,TJ,CO2,74100.0,kg/TJ,8599568.796,kg -4b412151-af4b-3e37-b619-ceb5437ae061,SESCO,II.1.1,La Rioja,AR-F,annual,2014,gas oil combustion consumption by public passenger transport,116.05356,TJ,CH4,3.9,kg/TJ,452.608884,kg -4b412151-af4b-3e37-b619-ceb5437ae061,SESCO,II.1.1,La Rioja,AR-F,annual,2014,gas oil combustion consumption by public passenger transport,116.05356,TJ,N2O,3.9,kg/TJ,452.608884,kg -f978975a-45b7-3841-aa04-00467869815d,SESCO,II.1.1,Mendoza,AR-M,annual,2014,gas oil combustion consumption by public passenger transport,1788.01224,TJ,CO2,74100.0,kg/TJ,132491706.984,kg -c7f29ef9-ebc6-348e-a9bc-5239fd22bf53,SESCO,II.1.1,Mendoza,AR-M,annual,2014,gas oil combustion consumption by public passenger transport,1788.01224,TJ,CH4,3.9,kg/TJ,6973.247736,kg -c7f29ef9-ebc6-348e-a9bc-5239fd22bf53,SESCO,II.1.1,Mendoza,AR-M,annual,2014,gas oil combustion consumption by public passenger transport,1788.01224,TJ,N2O,3.9,kg/TJ,6973.247736,kg -1e7a2bfa-875b-3415-947f-d3753801b2c9,SESCO,II.1.1,Misiones,AR-N,annual,2014,gas oil combustion consumption by public passenger transport,1015.3332,TJ,CO2,74100.0,kg/TJ,75236190.12,kg -471142dd-30ee-3dbf-8df7-76b6d2a0229d,SESCO,II.1.1,Misiones,AR-N,annual,2014,gas oil combustion consumption by public passenger transport,1015.3332,TJ,CH4,3.9,kg/TJ,3959.79948,kg -471142dd-30ee-3dbf-8df7-76b6d2a0229d,SESCO,II.1.1,Misiones,AR-N,annual,2014,gas oil combustion consumption by public passenger transport,1015.3332,TJ,N2O,3.9,kg/TJ,3959.79948,kg -697aeb24-a7aa-3242-9690-d7fec083b446,SESCO,II.1.1,Neuquén,AR-Q,annual,2014,gas oil combustion consumption by public passenger transport,319.15632,TJ,CO2,74100.0,kg/TJ,23649483.312,kg -77b2f118-74db-3865-9a84-f76a8f2df622,SESCO,II.1.1,Neuquén,AR-Q,annual,2014,gas oil combustion consumption by public passenger transport,319.15632,TJ,CH4,3.9,kg/TJ,1244.709648,kg -77b2f118-74db-3865-9a84-f76a8f2df622,SESCO,II.1.1,Neuquén,AR-Q,annual,2014,gas oil combustion consumption by public passenger transport,319.15632,TJ,N2O,3.9,kg/TJ,1244.709648,kg -a8229873-fa83-34f5-82ac-833c4169c8da,SESCO,II.1.1,Rio Negro,AR-R,annual,2014,gas oil combustion consumption by public passenger transport,379.26,TJ,CO2,74100.0,kg/TJ,28103166.0,kg -3a340795-4de5-3ff4-9f37-9fe1f4461de1,SESCO,II.1.1,Rio Negro,AR-R,annual,2014,gas oil combustion consumption by public passenger transport,379.26,TJ,CH4,3.9,kg/TJ,1479.114,kg -3a340795-4de5-3ff4-9f37-9fe1f4461de1,SESCO,II.1.1,Rio Negro,AR-R,annual,2014,gas oil combustion consumption by public passenger transport,379.26,TJ,N2O,3.9,kg/TJ,1479.114,kg -0dc82f1e-f2d6-39e4-a221-b0e37bb28ced,SESCO,II.1.1,Salta,AR-A,annual,2014,gas oil combustion consumption by public passenger transport,870.45588,TJ,CO2,74100.0,kg/TJ,64500780.708,kg -0a11788d-470b-34fd-8eb1-6c98e840b646,SESCO,II.1.1,Salta,AR-A,annual,2014,gas oil combustion consumption by public passenger transport,870.45588,TJ,CH4,3.9,kg/TJ,3394.777932,kg -0a11788d-470b-34fd-8eb1-6c98e840b646,SESCO,II.1.1,Salta,AR-A,annual,2014,gas oil combustion consumption by public passenger transport,870.45588,TJ,N2O,3.9,kg/TJ,3394.777932,kg -817f8383-ecf7-326d-aba7-4d69199710ac,SESCO,II.1.1,San Juan,AR-J,annual,2014,gas oil combustion consumption by public passenger transport,510.48395999999997,TJ,CO2,74100.0,kg/TJ,37826861.436,kg -cb25d470-5e36-38de-8d75-2076ccff115a,SESCO,II.1.1,San Juan,AR-J,annual,2014,gas oil combustion consumption by public passenger transport,510.48395999999997,TJ,CH4,3.9,kg/TJ,1990.8874439999997,kg -cb25d470-5e36-38de-8d75-2076ccff115a,SESCO,II.1.1,San Juan,AR-J,annual,2014,gas oil combustion consumption by public passenger transport,510.48395999999997,TJ,N2O,3.9,kg/TJ,1990.8874439999997,kg -65f575b6-c875-350e-b5a8-cc8c46219e1a,SESCO,II.1.1,San Luis,AR-D,annual,2014,gas oil combustion consumption by public passenger transport,181.03343999999998,TJ,CO2,74100.0,kg/TJ,13414577.904,kg -9b018a2f-615c-375f-b595-d0e1d5df5558,SESCO,II.1.1,San Luis,AR-D,annual,2014,gas oil combustion consumption by public passenger transport,181.03343999999998,TJ,CH4,3.9,kg/TJ,706.030416,kg -9b018a2f-615c-375f-b595-d0e1d5df5558,SESCO,II.1.1,San Luis,AR-D,annual,2014,gas oil combustion consumption by public passenger transport,181.03343999999998,TJ,N2O,3.9,kg/TJ,706.030416,kg -a8762057-20c2-3b90-ba4c-e1ffc7cbfd81,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2014,gas oil combustion consumption by public passenger transport,56.05824,TJ,CO2,74100.0,kg/TJ,4153915.584,kg -5764f3c0-ad1e-3858-87ab-71655ac247ad,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2014,gas oil combustion consumption by public passenger transport,56.05824,TJ,CH4,3.9,kg/TJ,218.62713599999998,kg -5764f3c0-ad1e-3858-87ab-71655ac247ad,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2014,gas oil combustion consumption by public passenger transport,56.05824,TJ,N2O,3.9,kg/TJ,218.62713599999998,kg -9b06fa8a-a36e-319c-a8bc-e5d2b190d5ad,SESCO,II.1.1,Santa Fe,AR-S,annual,2014,gas oil combustion consumption by public passenger transport,1939.75236,TJ,CO2,74100.0,kg/TJ,143735649.876,kg -ad7c7505-d163-3d43-b02e-539eb659cb41,SESCO,II.1.1,Santa Fe,AR-S,annual,2014,gas oil combustion consumption by public passenger transport,1939.75236,TJ,CH4,3.9,kg/TJ,7565.034204,kg -ad7c7505-d163-3d43-b02e-539eb659cb41,SESCO,II.1.1,Santa Fe,AR-S,annual,2014,gas oil combustion consumption by public passenger transport,1939.75236,TJ,N2O,3.9,kg/TJ,7565.034204,kg -50b330db-ac0f-332a-8918-d22226c2d07c,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2014,gas oil combustion consumption by public passenger transport,248.72232,TJ,CO2,74100.0,kg/TJ,18430323.912,kg -95df6410-4dd1-3e37-9916-a4d9bbb7fa48,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2014,gas oil combustion consumption by public passenger transport,248.72232,TJ,CH4,3.9,kg/TJ,970.0170479999999,kg -95df6410-4dd1-3e37-9916-a4d9bbb7fa48,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2014,gas oil combustion consumption by public passenger transport,248.72232,TJ,N2O,3.9,kg/TJ,970.0170479999999,kg -ff8c831c-f256-385f-a8fe-969a55943f0c,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2014,gas oil combustion consumption by public passenger transport,20.11884,TJ,CO2,74100.0,kg/TJ,1490806.044,kg -48adf1e0-37dc-3a48-a717-78448c335e3b,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2014,gas oil combustion consumption by public passenger transport,20.11884,TJ,CH4,3.9,kg/TJ,78.463476,kg -48adf1e0-37dc-3a48-a717-78448c335e3b,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2014,gas oil combustion consumption by public passenger transport,20.11884,TJ,N2O,3.9,kg/TJ,78.463476,kg -8b2b0f0e-b4d1-34d0-a4ee-5e5fbb62e942,SESCO,II.1.1,Tucuman,AR-T,annual,2014,gas oil combustion consumption by public passenger transport,1330.94976,TJ,CO2,74100.0,kg/TJ,98623377.21599999,kg -47b93f9a-9907-3ab9-92bb-5cdefb20ce5d,SESCO,II.1.1,Tucuman,AR-T,annual,2014,gas oil combustion consumption by public passenger transport,1330.94976,TJ,CH4,3.9,kg/TJ,5190.704064,kg -47b93f9a-9907-3ab9-92bb-5cdefb20ce5d,SESCO,II.1.1,Tucuman,AR-T,annual,2014,gas oil combustion consumption by public passenger transport,1330.94976,TJ,N2O,3.9,kg/TJ,5190.704064,kg -deb9700c-020e-3352-be24-93240448a852,SESCO,II.1.1,Capital Federal,AR-C,annual,2015,gas oil combustion consumption by to the public,110.8884,TJ,CO2,74100.0,kg/TJ,8216830.44,kg -339fca91-67cf-3de8-bf24-c137b892afac,SESCO,II.1.1,Capital Federal,AR-C,annual,2015,gas oil combustion consumption by to the public,110.8884,TJ,CH4,3.9,kg/TJ,432.46476,kg -339fca91-67cf-3de8-bf24-c137b892afac,SESCO,II.1.1,Capital Federal,AR-C,annual,2015,gas oil combustion consumption by to the public,110.8884,TJ,N2O,3.9,kg/TJ,432.46476,kg -31309df6-4bd8-3189-bd88-dbd3f7fe5fe3,SESCO,II.5.1,Buenos Aires,AR-B,annual,2015,gas oil combustion consumption by agriculture machines,179.44416,TJ,CO2,74100.0,kg/TJ,13296812.256000001,kg -17c5b5d1-a7d5-3ca0-88b0-4948af8e167e,SESCO,II.5.1,Buenos Aires,AR-B,annual,2015,gas oil combustion consumption by agriculture machines,179.44416,TJ,CH4,3.9,kg/TJ,699.832224,kg -17c5b5d1-a7d5-3ca0-88b0-4948af8e167e,SESCO,II.5.1,Buenos Aires,AR-B,annual,2015,gas oil combustion consumption by agriculture machines,179.44416,TJ,N2O,3.9,kg/TJ,699.832224,kg -d64a373e-d09a-36f5-b773-16e836409b0b,SESCO,II.5.1,Córdoba,AR-X,annual,2015,gas oil combustion consumption by agriculture machines,31.85784,TJ,CO2,74100.0,kg/TJ,2360665.944,kg -c13b6166-12d7-3211-b9fb-78f520020451,SESCO,II.5.1,Córdoba,AR-X,annual,2015,gas oil combustion consumption by agriculture machines,31.85784,TJ,CH4,3.9,kg/TJ,124.245576,kg -c13b6166-12d7-3211-b9fb-78f520020451,SESCO,II.5.1,Córdoba,AR-X,annual,2015,gas oil combustion consumption by agriculture machines,31.85784,TJ,N2O,3.9,kg/TJ,124.245576,kg -49d8436e-be9e-393f-8a79-dce4c2611301,SESCO,II.5.1,Santa Fe,AR-S,annual,2015,gas oil combustion consumption by agriculture machines,515.7936,TJ,CO2,74100.0,kg/TJ,38220305.76,kg -f8faf169-42c1-3bef-b7e2-0e7bad11b127,SESCO,II.5.1,Santa Fe,AR-S,annual,2015,gas oil combustion consumption by agriculture machines,515.7936,TJ,CH4,3.9,kg/TJ,2011.59504,kg -f8faf169-42c1-3bef-b7e2-0e7bad11b127,SESCO,II.5.1,Santa Fe,AR-S,annual,2015,gas oil combustion consumption by agriculture machines,515.7936,TJ,N2O,3.9,kg/TJ,2011.59504,kg -2a8ecce2-24f2-3af9-8d93-71f89e5670ce,SESCO,II.5.1,Buenos Aires,AR-B,annual,2015,gas oil combustion consumption by agriculture machines,1.37256,TJ,CO2,74100.0,kg/TJ,101706.696,kg -b977c5ab-fc6f-3a41-9ccb-0023b3f2f337,SESCO,II.5.1,Buenos Aires,AR-B,annual,2015,gas oil combustion consumption by agriculture machines,1.37256,TJ,CH4,3.9,kg/TJ,5.352984,kg -b977c5ab-fc6f-3a41-9ccb-0023b3f2f337,SESCO,II.5.1,Buenos Aires,AR-B,annual,2015,gas oil combustion consumption by agriculture machines,1.37256,TJ,N2O,3.9,kg/TJ,5.352984,kg -e852951c-6371-3299-a5b8-ecb768fb4112,SESCO,II.5.1,Córdoba,AR-X,annual,2015,gas oil combustion consumption by agriculture machines,6.2126399999999995,TJ,CO2,74100.0,kg/TJ,460356.62399999995,kg -8e1fa45e-7d7c-32a9-8988-a2bf4b03ee07,SESCO,II.5.1,Córdoba,AR-X,annual,2015,gas oil combustion consumption by agriculture machines,6.2126399999999995,TJ,CH4,3.9,kg/TJ,24.229295999999998,kg -8e1fa45e-7d7c-32a9-8988-a2bf4b03ee07,SESCO,II.5.1,Córdoba,AR-X,annual,2015,gas oil combustion consumption by agriculture machines,6.2126399999999995,TJ,N2O,3.9,kg/TJ,24.229295999999998,kg -e4afd0db-b098-3f2b-9058-54bff095ceb8,SESCO,II.5.1,Santa Fe,AR-S,annual,2015,gas oil combustion consumption by agriculture machines,15.31488,TJ,CO2,74100.0,kg/TJ,1134832.608,kg -911582cf-d143-3061-a8dd-cddc95dd32de,SESCO,II.5.1,Santa Fe,AR-S,annual,2015,gas oil combustion consumption by agriculture machines,15.31488,TJ,CH4,3.9,kg/TJ,59.728032,kg -911582cf-d143-3061-a8dd-cddc95dd32de,SESCO,II.5.1,Santa Fe,AR-S,annual,2015,gas oil combustion consumption by agriculture machines,15.31488,TJ,N2O,3.9,kg/TJ,59.728032,kg -696849a8-04f9-3155-9506-a0bfd5e492af,SESCO,II.5.1,Tucuman,AR-T,annual,2015,gas oil combustion consumption by agriculture machines,0.5418,TJ,CO2,74100.0,kg/TJ,40147.38,kg -a5a69524-0532-399a-865a-dd8f5dc17583,SESCO,II.5.1,Tucuman,AR-T,annual,2015,gas oil combustion consumption by agriculture machines,0.5418,TJ,CH4,3.9,kg/TJ,2.1130199999999997,kg -a5a69524-0532-399a-865a-dd8f5dc17583,SESCO,II.5.1,Tucuman,AR-T,annual,2015,gas oil combustion consumption by agriculture machines,0.5418,TJ,N2O,3.9,kg/TJ,2.1130199999999997,kg -7059f0a6-2440-3f00-813c-ca23f6936de3,SESCO,II.1.1,Buenos Aires,AR-B,annual,2015,jet kerosene combustion consumption by to the public,1.0694019999999997,TJ,CO2,71500.0,kg/TJ,76462.24299999999,kg -d2c6d594-7488-302f-8a92-9b3a0d85d7bc,SESCO,II.1.1,Buenos Aires,AR-B,annual,2015,jet kerosene combustion consumption by to the public,1.0694019999999997,TJ,CH4,0.5,kg/TJ,0.5347009999999999,kg -feb3d6e5-9d60-3cbe-932e-a601bc272299,SESCO,II.1.1,Buenos Aires,AR-B,annual,2015,jet kerosene combustion consumption by to the public,1.0694019999999997,TJ,N2O,2.0,kg/TJ,2.1388039999999995,kg -00517090-08a1-3a16-9ac6-99b5b896125b,SESCO,II.1.1,Córdoba,AR-X,annual,2015,jet kerosene combustion consumption by to the public,1.0694019999999997,TJ,CO2,71500.0,kg/TJ,76462.24299999999,kg -065bd601-816a-32b3-ac29-74ddb2bfd4d1,SESCO,II.1.1,Córdoba,AR-X,annual,2015,jet kerosene combustion consumption by to the public,1.0694019999999997,TJ,CH4,0.5,kg/TJ,0.5347009999999999,kg -4951de93-0f76-3786-a91f-d263b1aa93f9,SESCO,II.1.1,Córdoba,AR-X,annual,2015,jet kerosene combustion consumption by to the public,1.0694019999999997,TJ,N2O,2.0,kg/TJ,2.1388039999999995,kg -69bb9767-157d-336c-9bde-6b10116e4880,SESCO,II.1.1,Entre Rios,AR-E,annual,2015,jet kerosene combustion consumption by to the public,0.37743599999999994,TJ,CO2,71500.0,kg/TJ,26986.673999999995,kg -d5a7ab39-0883-32b6-9fc6-65455d89c216,SESCO,II.1.1,Entre Rios,AR-E,annual,2015,jet kerosene combustion consumption by to the public,0.37743599999999994,TJ,CH4,0.5,kg/TJ,0.18871799999999997,kg -30aa5592-ac3d-3539-85b0-7136e6eb4001,SESCO,II.1.1,Entre Rios,AR-E,annual,2015,jet kerosene combustion consumption by to the public,0.37743599999999994,TJ,N2O,2.0,kg/TJ,0.7548719999999999,kg -4e4f5b09-349c-3a7a-af4b-4458338f7f34,SESCO,II.1.1,Misiones,AR-N,annual,2015,jet kerosene combustion consumption by to the public,0.5032479999999999,TJ,CO2,71500.0,kg/TJ,35982.231999999996,kg -1c040b32-6845-3b87-8a45-076e7bbf3312,SESCO,II.1.1,Misiones,AR-N,annual,2015,jet kerosene combustion consumption by to the public,0.5032479999999999,TJ,CH4,0.5,kg/TJ,0.25162399999999996,kg -9c7ce6fd-d1d6-341e-a482-b6ab5bbcd5c4,SESCO,II.1.1,Misiones,AR-N,annual,2015,jet kerosene combustion consumption by to the public,0.5032479999999999,TJ,N2O,2.0,kg/TJ,1.0064959999999998,kg -792afa13-bb2b-3c59-9411-a406e23cb4d4,SESCO,II.1.1,Santa Fe,AR-S,annual,2015,jet kerosene combustion consumption by to the public,1.0694019999999997,TJ,CO2,71500.0,kg/TJ,76462.24299999999,kg -214d01ba-3819-36f6-adb7-fa6b86442849,SESCO,II.1.1,Santa Fe,AR-S,annual,2015,jet kerosene combustion consumption by to the public,1.0694019999999997,TJ,CH4,0.5,kg/TJ,0.5347009999999999,kg -a96536a4-d6e8-3e82-ad49-73274525e06b,SESCO,II.1.1,Santa Fe,AR-S,annual,2015,jet kerosene combustion consumption by to the public,1.0694019999999997,TJ,N2O,2.0,kg/TJ,2.1388039999999995,kg -0f419b55-5f45-3aa3-a101-ba0320a8125f,SESCO,II.1.1,Buenos Aires,AR-B,annual,2015,gas oil combustion consumption by to the public,10993.994341344001,TJ,CO2,74100.0,kg/TJ,814654980.6935905,kg -5f3dc818-05b2-38c7-9a09-2d20dc43f3cc,SESCO,II.1.1,Buenos Aires,AR-B,annual,2015,gas oil combustion consumption by to the public,10993.994341344001,TJ,CH4,3.9,kg/TJ,42876.577931241605,kg -5f3dc818-05b2-38c7-9a09-2d20dc43f3cc,SESCO,II.1.1,Buenos Aires,AR-B,annual,2015,gas oil combustion consumption by to the public,10993.994341344001,TJ,N2O,3.9,kg/TJ,42876.577931241605,kg -2b2e81f2-e584-3d15-b86a-340b84e0eb7e,SESCO,II.1.1,Capital Federal,AR-C,annual,2015,gas oil combustion consumption by to the public,1260.4077612,TJ,CO2,74100.0,kg/TJ,93396215.10492,kg -3ab587ba-1d9e-3fcd-a56f-c5cd40daf5f6,SESCO,II.1.1,Capital Federal,AR-C,annual,2015,gas oil combustion consumption by to the public,1260.4077612,TJ,CH4,3.9,kg/TJ,4915.59026868,kg -3ab587ba-1d9e-3fcd-a56f-c5cd40daf5f6,SESCO,II.1.1,Capital Federal,AR-C,annual,2015,gas oil combustion consumption by to the public,1260.4077612,TJ,N2O,3.9,kg/TJ,4915.59026868,kg -4a440a6c-4b10-39f1-853c-130c5b457010,SESCO,II.1.1,Catamarca,AR-K,annual,2015,gas oil combustion consumption by to the public,355.69751532,TJ,CO2,74100.0,kg/TJ,26357185.885211997,kg -9a7860b4-b6bc-3d3d-a5d3-887e74c94869,SESCO,II.1.1,Catamarca,AR-K,annual,2015,gas oil combustion consumption by to the public,355.69751532,TJ,CH4,3.9,kg/TJ,1387.2203097479999,kg -9a7860b4-b6bc-3d3d-a5d3-887e74c94869,SESCO,II.1.1,Catamarca,AR-K,annual,2015,gas oil combustion consumption by to the public,355.69751532,TJ,N2O,3.9,kg/TJ,1387.2203097479999,kg -4fcf3293-8469-330c-bc16-f5b73af322e5,SESCO,II.1.1,Chaco,AR-H,annual,2015,gas oil combustion consumption by to the public,323.087461872,TJ,CO2,74100.0,kg/TJ,23940780.9247152,kg -ee65b6bc-73ed-3903-a667-37fcfa7ee92b,SESCO,II.1.1,Chaco,AR-H,annual,2015,gas oil combustion consumption by to the public,323.087461872,TJ,CH4,3.9,kg/TJ,1260.0411013008,kg -ee65b6bc-73ed-3903-a667-37fcfa7ee92b,SESCO,II.1.1,Chaco,AR-H,annual,2015,gas oil combustion consumption by to the public,323.087461872,TJ,N2O,3.9,kg/TJ,1260.0411013008,kg -d5b69950-d379-3c9e-aead-7fc353ec5d32,SESCO,II.1.1,Chubut,AR-U,annual,2015,gas oil combustion consumption by to the public,397.311089196,TJ,CO2,74100.0,kg/TJ,29440751.7094236,kg -a924c339-d1da-3ce4-87bd-34ac00f47c8b,SESCO,II.1.1,Chubut,AR-U,annual,2015,gas oil combustion consumption by to the public,397.311089196,TJ,CH4,3.9,kg/TJ,1549.5132478644,kg -a924c339-d1da-3ce4-87bd-34ac00f47c8b,SESCO,II.1.1,Chubut,AR-U,annual,2015,gas oil combustion consumption by to the public,397.311089196,TJ,N2O,3.9,kg/TJ,1549.5132478644,kg -9972abbd-6890-3d93-a32d-280b699e1099,SESCO,II.1.1,Corrientes,AR-W,annual,2015,gas oil combustion consumption by to the public,679.861064232,TJ,CO2,74100.0,kg/TJ,50377704.8595912,kg -45b777d8-4cd4-386c-ac88-f8285b592591,SESCO,II.1.1,Corrientes,AR-W,annual,2015,gas oil combustion consumption by to the public,679.861064232,TJ,CH4,3.9,kg/TJ,2651.4581505048,kg -45b777d8-4cd4-386c-ac88-f8285b592591,SESCO,II.1.1,Corrientes,AR-W,annual,2015,gas oil combustion consumption by to the public,679.861064232,TJ,N2O,3.9,kg/TJ,2651.4581505048,kg -cca888fa-dd84-3750-a1ff-185fcad1f9f0,SESCO,II.1.1,Córdoba,AR-X,annual,2015,gas oil combustion consumption by to the public,4555.12932,TJ,CO2,74100.0,kg/TJ,337535082.612,kg -b4d25b88-d0ee-3116-b993-93314dea47be,SESCO,II.1.1,Córdoba,AR-X,annual,2015,gas oil combustion consumption by to the public,4555.12932,TJ,CH4,3.9,kg/TJ,17765.004348,kg -b4d25b88-d0ee-3116-b993-93314dea47be,SESCO,II.1.1,Córdoba,AR-X,annual,2015,gas oil combustion consumption by to the public,4555.12932,TJ,N2O,3.9,kg/TJ,17765.004348,kg -f5617084-7e23-3cec-b061-c3cb7e8ba09d,SESCO,II.1.1,Entre Rios,AR-E,annual,2015,gas oil combustion consumption by to the public,1412.6318386320002,TJ,CO2,74100.0,kg/TJ,104676019.24263121,kg -fc0ea6a6-9d33-3af5-9496-0700bc125fb8,SESCO,II.1.1,Entre Rios,AR-E,annual,2015,gas oil combustion consumption by to the public,1412.6318386320002,TJ,CH4,3.9,kg/TJ,5509.2641706648,kg -fc0ea6a6-9d33-3af5-9496-0700bc125fb8,SESCO,II.1.1,Entre Rios,AR-E,annual,2015,gas oil combustion consumption by to the public,1412.6318386320002,TJ,N2O,3.9,kg/TJ,5509.2641706648,kg -a3354043-737d-37b6-9571-1fc12704f4db,SESCO,II.1.1,Formosa,AR-P,annual,2015,gas oil combustion consumption by to the public,426.808104324,TJ,CO2,74100.0,kg/TJ,31626480.5304084,kg -7487a934-ccb0-3469-a909-38fbf6dda5f8,SESCO,II.1.1,Formosa,AR-P,annual,2015,gas oil combustion consumption by to the public,426.808104324,TJ,CH4,3.9,kg/TJ,1664.5516068636,kg -7487a934-ccb0-3469-a909-38fbf6dda5f8,SESCO,II.1.1,Formosa,AR-P,annual,2015,gas oil combustion consumption by to the public,426.808104324,TJ,N2O,3.9,kg/TJ,1664.5516068636,kg -c60c05e5-3a05-3270-a243-4e50ae8eaad9,SESCO,II.1.1,Jujuy,AR-Y,annual,2015,gas oil combustion consumption by to the public,145.38799900799998,TJ,CO2,74100.0,kg/TJ,10773250.726492798,kg -1d970b94-17b5-39e3-80ed-0b4113d9de99,SESCO,II.1.1,Jujuy,AR-Y,annual,2015,gas oil combustion consumption by to the public,145.38799900799998,TJ,CH4,3.9,kg/TJ,567.0131961312,kg -1d970b94-17b5-39e3-80ed-0b4113d9de99,SESCO,II.1.1,Jujuy,AR-Y,annual,2015,gas oil combustion consumption by to the public,145.38799900799998,TJ,N2O,3.9,kg/TJ,567.0131961312,kg -0e2f9aa2-3b63-327a-b62c-c9003bb2bfd4,SESCO,II.1.1,La Pampa,AR-L,annual,2015,gas oil combustion consumption by to the public,341.56538471999994,TJ,CO2,74100.0,kg/TJ,25309995.007751994,kg -62b8ceb4-a861-3ca2-8de0-79f48bddfbd8,SESCO,II.1.1,La Pampa,AR-L,annual,2015,gas oil combustion consumption by to the public,341.56538471999994,TJ,CH4,3.9,kg/TJ,1332.1050004079998,kg -62b8ceb4-a861-3ca2-8de0-79f48bddfbd8,SESCO,II.1.1,La Pampa,AR-L,annual,2015,gas oil combustion consumption by to the public,341.56538471999994,TJ,N2O,3.9,kg/TJ,1332.1050004079998,kg -e2078492-15cd-3f36-a3af-5bc8359f1f05,SESCO,II.1.1,La Rioja,AR-F,annual,2015,gas oil combustion consumption by to the public,49.602216216,TJ,CO2,74100.0,kg/TJ,3675524.2216056003,kg -ee6a0e0b-4fd2-32cd-8c2c-99f82955b919,SESCO,II.1.1,La Rioja,AR-F,annual,2015,gas oil combustion consumption by to the public,49.602216216,TJ,CH4,3.9,kg/TJ,193.4486432424,kg -ee6a0e0b-4fd2-32cd-8c2c-99f82955b919,SESCO,II.1.1,La Rioja,AR-F,annual,2015,gas oil combustion consumption by to the public,49.602216216,TJ,N2O,3.9,kg/TJ,193.4486432424,kg -6261e4dc-c0b9-3369-9d33-0f9c13576ee5,SESCO,II.1.1,Mendoza,AR-M,annual,2015,gas oil combustion consumption by to the public,443.24309442,TJ,CO2,74100.0,kg/TJ,32844313.296522,kg -3ed786b1-2e94-33ce-a7ba-a2efe9b830ea,SESCO,II.1.1,Mendoza,AR-M,annual,2015,gas oil combustion consumption by to the public,443.24309442,TJ,CH4,3.9,kg/TJ,1728.648068238,kg -3ed786b1-2e94-33ce-a7ba-a2efe9b830ea,SESCO,II.1.1,Mendoza,AR-M,annual,2015,gas oil combustion consumption by to the public,443.24309442,TJ,N2O,3.9,kg/TJ,1728.648068238,kg -a521955e-abc9-37ff-bb58-e24137f1b9bb,SESCO,II.1.1,Misiones,AR-N,annual,2015,gas oil combustion consumption by to the public,707.7066007199999,TJ,CO2,74100.0,kg/TJ,52441059.11335199,kg -05a607a7-735f-3684-917e-bb907e8f5dbb,SESCO,II.1.1,Misiones,AR-N,annual,2015,gas oil combustion consumption by to the public,707.7066007199999,TJ,CH4,3.9,kg/TJ,2760.0557428079996,kg -05a607a7-735f-3684-917e-bb907e8f5dbb,SESCO,II.1.1,Misiones,AR-N,annual,2015,gas oil combustion consumption by to the public,707.7066007199999,TJ,N2O,3.9,kg/TJ,2760.0557428079996,kg -de7666f4-a97a-375d-8f74-8aecda313078,SESCO,II.1.1,Neuquén,AR-Q,annual,2015,gas oil combustion consumption by to the public,153.75257108399998,TJ,CO2,74100.0,kg/TJ,11393065.5173244,kg -5b8f8fd9-4862-3211-9f59-a6f770d08631,SESCO,II.1.1,Neuquén,AR-Q,annual,2015,gas oil combustion consumption by to the public,153.75257108399998,TJ,CH4,3.9,kg/TJ,599.6350272276,kg -5b8f8fd9-4862-3211-9f59-a6f770d08631,SESCO,II.1.1,Neuquén,AR-Q,annual,2015,gas oil combustion consumption by to the public,153.75257108399998,TJ,N2O,3.9,kg/TJ,599.6350272276,kg -a402120a-0bba-35f3-bec8-3f22aea25ec8,SESCO,II.1.1,Rio Negro,AR-R,annual,2015,gas oil combustion consumption by to the public,534.139681236,TJ,CO2,74100.0,kg/TJ,39579750.3795876,kg -d5bf28b6-06c9-3607-b1a7-1ea340b2cc48,SESCO,II.1.1,Rio Negro,AR-R,annual,2015,gas oil combustion consumption by to the public,534.139681236,TJ,CH4,3.9,kg/TJ,2083.1447568204,kg -d5bf28b6-06c9-3607-b1a7-1ea340b2cc48,SESCO,II.1.1,Rio Negro,AR-R,annual,2015,gas oil combustion consumption by to the public,534.139681236,TJ,N2O,3.9,kg/TJ,2083.1447568204,kg -f4e59d3f-1f22-3078-9b6d-504ea420ce01,SESCO,II.1.1,Salta,AR-A,annual,2015,gas oil combustion consumption by to the public,34.556502456,TJ,CO2,74100.0,kg/TJ,2560636.8319896,kg -80ef6559-b6e0-3ecf-9253-2d99a956ff3b,SESCO,II.1.1,Salta,AR-A,annual,2015,gas oil combustion consumption by to the public,34.556502456,TJ,CH4,3.9,kg/TJ,134.7703595784,kg -80ef6559-b6e0-3ecf-9253-2d99a956ff3b,SESCO,II.1.1,Salta,AR-A,annual,2015,gas oil combustion consumption by to the public,34.556502456,TJ,N2O,3.9,kg/TJ,134.7703595784,kg -7a85cc03-188e-33dd-82a9-ee4335a478f0,SESCO,II.1.1,San Juan,AR-J,annual,2015,gas oil combustion consumption by to the public,427.795531212,TJ,CO2,74100.0,kg/TJ,31699648.8628092,kg -fa7da0ac-0ab2-3612-a4a5-2d9809ac19b2,SESCO,II.1.1,San Juan,AR-J,annual,2015,gas oil combustion consumption by to the public,427.795531212,TJ,CH4,3.9,kg/TJ,1668.4025717268,kg -fa7da0ac-0ab2-3612-a4a5-2d9809ac19b2,SESCO,II.1.1,San Juan,AR-J,annual,2015,gas oil combustion consumption by to the public,427.795531212,TJ,N2O,3.9,kg/TJ,1668.4025717268,kg -be9bf70c-7b0d-3c3d-9dec-a80eb19b6a15,SESCO,II.1.1,San Luis,AR-D,annual,2015,gas oil combustion consumption by to the public,914.2562995440001,TJ,CO2,74100.0,kg/TJ,67746391.79621041,kg -4dceb256-d041-392e-b77e-1463382592b8,SESCO,II.1.1,San Luis,AR-D,annual,2015,gas oil combustion consumption by to the public,914.2562995440001,TJ,CH4,3.9,kg/TJ,3565.5995682216003,kg -4dceb256-d041-392e-b77e-1463382592b8,SESCO,II.1.1,San Luis,AR-D,annual,2015,gas oil combustion consumption by to the public,914.2562995440001,TJ,N2O,3.9,kg/TJ,3565.5995682216003,kg -c4ba62a8-2a96-32b2-a0c9-4495bc325932,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2015,gas oil combustion consumption by to the public,250.9485762,TJ,CO2,74100.0,kg/TJ,18595289.49642,kg -661683bb-6c60-3a28-91a7-0c0e65609e68,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2015,gas oil combustion consumption by to the public,250.9485762,TJ,CH4,3.9,kg/TJ,978.69944718,kg -661683bb-6c60-3a28-91a7-0c0e65609e68,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2015,gas oil combustion consumption by to the public,250.9485762,TJ,N2O,3.9,kg/TJ,978.69944718,kg -19e6d827-f515-3ba8-9c97-70ef9eb3a8e3,SESCO,II.1.1,Santa Fe,AR-S,annual,2015,gas oil combustion consumption by to the public,3407.5567653959997,TJ,CO2,74100.0,kg/TJ,252499956.31584358,kg -047cbd32-0160-38a0-adb0-62bb54c94375,SESCO,II.1.1,Santa Fe,AR-S,annual,2015,gas oil combustion consumption by to the public,3407.5567653959997,TJ,CH4,3.9,kg/TJ,13289.471385044399,kg -047cbd32-0160-38a0-adb0-62bb54c94375,SESCO,II.1.1,Santa Fe,AR-S,annual,2015,gas oil combustion consumption by to the public,3407.5567653959997,TJ,N2O,3.9,kg/TJ,13289.471385044399,kg -4a0e7fc9-6a69-3417-bf21-b0de21a4d2af,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2015,gas oil combustion consumption by to the public,392.37780876,TJ,CO2,74100.0,kg/TJ,29075195.629116,kg -fcbb9d54-1149-3bde-8583-7e5ef156bb64,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2015,gas oil combustion consumption by to the public,392.37780876,TJ,CH4,3.9,kg/TJ,1530.273454164,kg -fcbb9d54-1149-3bde-8583-7e5ef156bb64,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2015,gas oil combustion consumption by to the public,392.37780876,TJ,N2O,3.9,kg/TJ,1530.273454164,kg -dccb5788-090f-3db1-87f8-9a59e96c3199,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2015,gas oil combustion consumption by to the public,119.91572712,TJ,CO2,74100.0,kg/TJ,8885755.379592,kg -cdef01f2-ff0e-3d0b-817a-b3ec4befa8a5,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2015,gas oil combustion consumption by to the public,119.91572712,TJ,CH4,3.9,kg/TJ,467.671335768,kg -cdef01f2-ff0e-3d0b-817a-b3ec4befa8a5,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2015,gas oil combustion consumption by to the public,119.91572712,TJ,N2O,3.9,kg/TJ,467.671335768,kg -e7f2ad7f-854c-3962-bfbc-dd1fe142ceea,SESCO,II.1.1,Tucuman,AR-T,annual,2015,gas oil combustion consumption by to the public,153.754218156,TJ,CO2,74100.0,kg/TJ,11393187.5653596,kg -e956502a-76bf-3165-b89f-34173b4bd8d1,SESCO,II.1.1,Tucuman,AR-T,annual,2015,gas oil combustion consumption by to the public,153.754218156,TJ,CH4,3.9,kg/TJ,599.6414508084,kg -e956502a-76bf-3165-b89f-34173b4bd8d1,SESCO,II.1.1,Tucuman,AR-T,annual,2015,gas oil combustion consumption by to the public,153.754218156,TJ,N2O,3.9,kg/TJ,599.6414508084,kg -95ca7e57-cc3a-3eb7-9027-85bc09fba0a2,SESCO,II.1.1,Buenos Aires,AR-B,annual,2015,gas oil combustion consumption by to the public,3155.600867412,TJ,CO2,74100.0,kg/TJ,233830024.2752292,kg -3347afdc-234f-3e0b-8f6e-0b4b273684fd,SESCO,II.1.1,Buenos Aires,AR-B,annual,2015,gas oil combustion consumption by to the public,3155.600867412,TJ,CH4,3.9,kg/TJ,12306.8433829068,kg -3347afdc-234f-3e0b-8f6e-0b4b273684fd,SESCO,II.1.1,Buenos Aires,AR-B,annual,2015,gas oil combustion consumption by to the public,3155.600867412,TJ,N2O,3.9,kg/TJ,12306.8433829068,kg -2a54b453-4f87-3f8f-a9a9-5d61a9e5aba6,SESCO,II.1.1,Capital Federal,AR-C,annual,2015,gas oil combustion consumption by to the public,554.986588464,TJ,CO2,74100.0,kg/TJ,41124506.205182396,kg -531c99a0-18b0-30e6-acdd-76a744045a0e,SESCO,II.1.1,Capital Federal,AR-C,annual,2015,gas oil combustion consumption by to the public,554.986588464,TJ,CH4,3.9,kg/TJ,2164.4476950096,kg -531c99a0-18b0-30e6-acdd-76a744045a0e,SESCO,II.1.1,Capital Federal,AR-C,annual,2015,gas oil combustion consumption by to the public,554.986588464,TJ,N2O,3.9,kg/TJ,2164.4476950096,kg -209e8112-5a3d-311a-9ad5-3e94adbe0b07,SESCO,II.1.1,Catamarca,AR-K,annual,2015,gas oil combustion consumption by to the public,144.268203156,TJ,CO2,74100.0,kg/TJ,10690273.8538596,kg -d52ea226-6663-32ae-8d21-d14ca5db2783,SESCO,II.1.1,Catamarca,AR-K,annual,2015,gas oil combustion consumption by to the public,144.268203156,TJ,CH4,3.9,kg/TJ,562.6459923084,kg -d52ea226-6663-32ae-8d21-d14ca5db2783,SESCO,II.1.1,Catamarca,AR-K,annual,2015,gas oil combustion consumption by to the public,144.268203156,TJ,N2O,3.9,kg/TJ,562.6459923084,kg -5a9f2156-e115-3066-8277-5d17d4c6c02e,SESCO,II.1.1,Chaco,AR-H,annual,2015,gas oil combustion consumption by to the public,87.78974307600001,TJ,CO2,74100.0,kg/TJ,6505219.9619316,kg -b3c472e3-7c6d-3f12-8f56-a0c452235b02,SESCO,II.1.1,Chaco,AR-H,annual,2015,gas oil combustion consumption by to the public,87.78974307600001,TJ,CH4,3.9,kg/TJ,342.37999799640005,kg -b3c472e3-7c6d-3f12-8f56-a0c452235b02,SESCO,II.1.1,Chaco,AR-H,annual,2015,gas oil combustion consumption by to the public,87.78974307600001,TJ,N2O,3.9,kg/TJ,342.37999799640005,kg -7b02bf04-4b25-3913-8b21-da29a2431973,SESCO,II.1.1,Chubut,AR-U,annual,2015,gas oil combustion consumption by to the public,135.919585284,TJ,CO2,74100.0,kg/TJ,10071641.2695444,kg -0495c09f-726c-32fc-9054-7ce37bd3d113,SESCO,II.1.1,Chubut,AR-U,annual,2015,gas oil combustion consumption by to the public,135.919585284,TJ,CH4,3.9,kg/TJ,530.0863826076,kg -0495c09f-726c-32fc-9054-7ce37bd3d113,SESCO,II.1.1,Chubut,AR-U,annual,2015,gas oil combustion consumption by to the public,135.919585284,TJ,N2O,3.9,kg/TJ,530.0863826076,kg -01c1a7b8-92d1-3f90-af4d-c647121bd70d,SESCO,II.1.1,Corrientes,AR-W,annual,2015,gas oil combustion consumption by to the public,141.135898428,TJ,CO2,74100.0,kg/TJ,10458170.073514799,kg -69adb734-5b4e-3f9a-a906-55f8b4b35337,SESCO,II.1.1,Corrientes,AR-W,annual,2015,gas oil combustion consumption by to the public,141.135898428,TJ,CH4,3.9,kg/TJ,550.4300038691999,kg -69adb734-5b4e-3f9a-a906-55f8b4b35337,SESCO,II.1.1,Corrientes,AR-W,annual,2015,gas oil combustion consumption by to the public,141.135898428,TJ,N2O,3.9,kg/TJ,550.4300038691999,kg -14658d9c-24ff-31c4-bda0-91740929ec7e,SESCO,II.1.1,Córdoba,AR-X,annual,2015,gas oil combustion consumption by to the public,890.7192,TJ,CO2,74100.0,kg/TJ,66002292.72,kg -42e5d2b7-c211-3f35-9c99-918e6654899d,SESCO,II.1.1,Córdoba,AR-X,annual,2015,gas oil combustion consumption by to the public,890.7192,TJ,CH4,3.9,kg/TJ,3473.80488,kg -42e5d2b7-c211-3f35-9c99-918e6654899d,SESCO,II.1.1,Córdoba,AR-X,annual,2015,gas oil combustion consumption by to the public,890.7192,TJ,N2O,3.9,kg/TJ,3473.80488,kg -53e5fbf3-1718-3b51-bf61-5aa61b351d8e,SESCO,II.1.1,Entre Rios,AR-E,annual,2015,gas oil combustion consumption by to the public,384.43570703999995,TJ,CO2,74100.0,kg/TJ,28486685.891664,kg -e0e5a965-076d-398d-b466-c3e0b4e2b21f,SESCO,II.1.1,Entre Rios,AR-E,annual,2015,gas oil combustion consumption by to the public,384.43570703999995,TJ,CH4,3.9,kg/TJ,1499.2992574559999,kg -e0e5a965-076d-398d-b466-c3e0b4e2b21f,SESCO,II.1.1,Entre Rios,AR-E,annual,2015,gas oil combustion consumption by to the public,384.43570703999995,TJ,N2O,3.9,kg/TJ,1499.2992574559999,kg -352c034c-587d-305d-a20e-b7237d73bc33,SESCO,II.1.1,Formosa,AR-P,annual,2015,gas oil combustion consumption by to the public,170.50718706,TJ,CO2,74100.0,kg/TJ,12634582.561146,kg -e9ad2dfc-4bfb-3313-98a6-33fd6c5a19d1,SESCO,II.1.1,Formosa,AR-P,annual,2015,gas oil combustion consumption by to the public,170.50718706,TJ,CH4,3.9,kg/TJ,664.978029534,kg -e9ad2dfc-4bfb-3313-98a6-33fd6c5a19d1,SESCO,II.1.1,Formosa,AR-P,annual,2015,gas oil combustion consumption by to the public,170.50718706,TJ,N2O,3.9,kg/TJ,664.978029534,kg -7c9f8454-914e-3c98-bb26-ea538bf2dd93,SESCO,II.1.1,Jujuy,AR-Y,annual,2015,gas oil combustion consumption by to the public,27.337956576000003,TJ,CO2,74100.0,kg/TJ,2025742.5822816002,kg -e30820c3-9d60-3bc2-a64e-06b4296a2aa0,SESCO,II.1.1,Jujuy,AR-Y,annual,2015,gas oil combustion consumption by to the public,27.337956576000003,TJ,CH4,3.9,kg/TJ,106.61803064640002,kg -e30820c3-9d60-3bc2-a64e-06b4296a2aa0,SESCO,II.1.1,Jujuy,AR-Y,annual,2015,gas oil combustion consumption by to the public,27.337956576000003,TJ,N2O,3.9,kg/TJ,106.61803064640002,kg -06e89a13-c8f5-30d2-8db4-727287af8ea9,SESCO,II.1.1,La Pampa,AR-L,annual,2015,gas oil combustion consumption by to the public,101.035077108,TJ,CO2,74100.0,kg/TJ,7486699.2137028,kg -09c25015-0881-34f2-8fc9-e53729f5c71e,SESCO,II.1.1,La Pampa,AR-L,annual,2015,gas oil combustion consumption by to the public,101.035077108,TJ,CH4,3.9,kg/TJ,394.0368007212,kg -09c25015-0881-34f2-8fc9-e53729f5c71e,SESCO,II.1.1,La Pampa,AR-L,annual,2015,gas oil combustion consumption by to the public,101.035077108,TJ,N2O,3.9,kg/TJ,394.0368007212,kg -96375e01-02bf-326f-a590-ced6e2dbd0de,SESCO,II.1.1,La Rioja,AR-F,annual,2015,gas oil combustion consumption by to the public,46.43608872,TJ,CO2,74100.0,kg/TJ,3440914.174152,kg -759bf0c6-1225-3919-b8dc-e4ef8eb831f5,SESCO,II.1.1,La Rioja,AR-F,annual,2015,gas oil combustion consumption by to the public,46.43608872,TJ,CH4,3.9,kg/TJ,181.100746008,kg -759bf0c6-1225-3919-b8dc-e4ef8eb831f5,SESCO,II.1.1,La Rioja,AR-F,annual,2015,gas oil combustion consumption by to the public,46.43608872,TJ,N2O,3.9,kg/TJ,181.100746008,kg -1e5866a9-a7c1-39ca-beb5-e694f1a29463,SESCO,II.1.1,Mendoza,AR-M,annual,2015,gas oil combustion consumption by to the public,197.34377275199998,TJ,CO2,74100.0,kg/TJ,14623173.560923198,kg -30fc4143-ff57-39cf-b823-16435cec63d4,SESCO,II.1.1,Mendoza,AR-M,annual,2015,gas oil combustion consumption by to the public,197.34377275199998,TJ,CH4,3.9,kg/TJ,769.6407137327999,kg -30fc4143-ff57-39cf-b823-16435cec63d4,SESCO,II.1.1,Mendoza,AR-M,annual,2015,gas oil combustion consumption by to the public,197.34377275199998,TJ,N2O,3.9,kg/TJ,769.6407137327999,kg -2e36495b-a169-3edc-b85a-e64b333b7c97,SESCO,II.1.1,Misiones,AR-N,annual,2015,gas oil combustion consumption by to the public,182.349771996,TJ,CO2,74100.0,kg/TJ,13512118.1049036,kg -3a8418ac-fd6f-30b6-80ab-e9d246ce69d4,SESCO,II.1.1,Misiones,AR-N,annual,2015,gas oil combustion consumption by to the public,182.349771996,TJ,CH4,3.9,kg/TJ,711.1641107843999,kg -3a8418ac-fd6f-30b6-80ab-e9d246ce69d4,SESCO,II.1.1,Misiones,AR-N,annual,2015,gas oil combustion consumption by to the public,182.349771996,TJ,N2O,3.9,kg/TJ,711.1641107843999,kg -5e62eed3-579c-30bb-9100-3c7120c7eff3,SESCO,II.1.1,Neuquén,AR-Q,annual,2015,gas oil combustion consumption by to the public,145.449854508,TJ,CO2,74100.0,kg/TJ,10777834.219042799,kg -54ade082-4ad3-3a7f-8f81-a9dccd78da3f,SESCO,II.1.1,Neuquén,AR-Q,annual,2015,gas oil combustion consumption by to the public,145.449854508,TJ,CH4,3.9,kg/TJ,567.2544325811999,kg -54ade082-4ad3-3a7f-8f81-a9dccd78da3f,SESCO,II.1.1,Neuquén,AR-Q,annual,2015,gas oil combustion consumption by to the public,145.449854508,TJ,N2O,3.9,kg/TJ,567.2544325811999,kg -e69774fd-5522-3987-806c-1087bab1e6eb,SESCO,II.1.1,Rio Negro,AR-R,annual,2015,gas oil combustion consumption by to the public,194.16125399999999,TJ,CO2,74100.0,kg/TJ,14387348.9214,kg -cfdbc5d1-5bb7-3693-a1d9-74b145d6c5c3,SESCO,II.1.1,Rio Negro,AR-R,annual,2015,gas oil combustion consumption by to the public,194.16125399999999,TJ,CH4,3.9,kg/TJ,757.2288905999999,kg -cfdbc5d1-5bb7-3693-a1d9-74b145d6c5c3,SESCO,II.1.1,Rio Negro,AR-R,annual,2015,gas oil combustion consumption by to the public,194.16125399999999,TJ,N2O,3.9,kg/TJ,757.2288905999999,kg -16172a9a-72f1-33e9-8744-ba58a63f7e47,SESCO,II.1.1,Salta,AR-A,annual,2015,gas oil combustion consumption by to the public,15.925929263999999,TJ,CO2,74100.0,kg/TJ,1180111.3584623998,kg -a7f56c8f-74ce-387a-84b1-b4eada0a19fb,SESCO,II.1.1,Salta,AR-A,annual,2015,gas oil combustion consumption by to the public,15.925929263999999,TJ,CH4,3.9,kg/TJ,62.11112412959999,kg -a7f56c8f-74ce-387a-84b1-b4eada0a19fb,SESCO,II.1.1,Salta,AR-A,annual,2015,gas oil combustion consumption by to the public,15.925929263999999,TJ,N2O,3.9,kg/TJ,62.11112412959999,kg -2196f806-e36b-34ad-965d-7c7a44640119,SESCO,II.1.1,San Juan,AR-J,annual,2015,gas oil combustion consumption by to the public,92.27364375600001,TJ,CO2,74100.0,kg/TJ,6837477.002319601,kg -3c881f21-33e6-3908-bad1-3397471c5aff,SESCO,II.1.1,San Juan,AR-J,annual,2015,gas oil combustion consumption by to the public,92.27364375600001,TJ,CH4,3.9,kg/TJ,359.86721064840003,kg -3c881f21-33e6-3908-bad1-3397471c5aff,SESCO,II.1.1,San Juan,AR-J,annual,2015,gas oil combustion consumption by to the public,92.27364375600001,TJ,N2O,3.9,kg/TJ,359.86721064840003,kg -bef3cc42-17d2-3975-80d3-294b6c555e40,SESCO,II.1.1,San Luis,AR-D,annual,2015,gas oil combustion consumption by to the public,177.08553483600002,TJ,CO2,74100.0,kg/TJ,13122038.131347602,kg -b6247041-f2fe-3270-9a15-3eab1b3c147a,SESCO,II.1.1,San Luis,AR-D,annual,2015,gas oil combustion consumption by to the public,177.08553483600002,TJ,CH4,3.9,kg/TJ,690.6335858604001,kg -b6247041-f2fe-3270-9a15-3eab1b3c147a,SESCO,II.1.1,San Luis,AR-D,annual,2015,gas oil combustion consumption by to the public,177.08553483600002,TJ,N2O,3.9,kg/TJ,690.6335858604001,kg -89d07be7-d3b6-3d74-9904-bf36f1fe2023,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2015,gas oil combustion consumption by to the public,73.06264383599999,TJ,CO2,74100.0,kg/TJ,5413941.908247599,kg -be2bc1e8-7693-3f31-9a4a-8d117acc23fd,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2015,gas oil combustion consumption by to the public,73.06264383599999,TJ,CH4,3.9,kg/TJ,284.94431096039995,kg -be2bc1e8-7693-3f31-9a4a-8d117acc23fd,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2015,gas oil combustion consumption by to the public,73.06264383599999,TJ,N2O,3.9,kg/TJ,284.94431096039995,kg -2cd29df3-04de-383d-97a3-80f23ee7fb10,SESCO,II.1.1,Santa Fe,AR-S,annual,2015,gas oil combustion consumption by to the public,814.290569484,TJ,CO2,74100.0,kg/TJ,60338931.1987644,kg -3e45f3e4-ed2c-3f2b-9b69-64986618f862,SESCO,II.1.1,Santa Fe,AR-S,annual,2015,gas oil combustion consumption by to the public,814.290569484,TJ,CH4,3.9,kg/TJ,3175.7332209876,kg -3e45f3e4-ed2c-3f2b-9b69-64986618f862,SESCO,II.1.1,Santa Fe,AR-S,annual,2015,gas oil combustion consumption by to the public,814.290569484,TJ,N2O,3.9,kg/TJ,3175.7332209876,kg -281964cf-0bac-3271-9454-f6a0e049e97b,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2015,gas oil combustion consumption by to the public,115.804324776,TJ,CO2,74100.0,kg/TJ,8581100.4659016,kg -e85e28d4-a287-3d7a-98ac-c18696a6d753,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2015,gas oil combustion consumption by to the public,115.804324776,TJ,CH4,3.9,kg/TJ,451.6368666264,kg -e85e28d4-a287-3d7a-98ac-c18696a6d753,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2015,gas oil combustion consumption by to the public,115.804324776,TJ,N2O,3.9,kg/TJ,451.6368666264,kg -035e38ac-e1e5-3e60-aed0-bd9a69cdb4b6,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2015,gas oil combustion consumption by to the public,85.95297606000001,TJ,CO2,74100.0,kg/TJ,6369115.526046,kg -1f62d07a-6bfd-308a-ba55-7074b46cd676,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2015,gas oil combustion consumption by to the public,85.95297606000001,TJ,CH4,3.9,kg/TJ,335.216606634,kg -1f62d07a-6bfd-308a-ba55-7074b46cd676,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2015,gas oil combustion consumption by to the public,85.95297606000001,TJ,N2O,3.9,kg/TJ,335.216606634,kg -386d29ad-962b-3f22-8744-b0ccd5f97d9d,SESCO,II.1.1,Tucuman,AR-T,annual,2015,gas oil combustion consumption by to the public,26.932802148,TJ,CO2,74100.0,kg/TJ,1995720.6391668,kg -5d44ffea-c64d-3811-9946-bd68d60885b2,SESCO,II.1.1,Tucuman,AR-T,annual,2015,gas oil combustion consumption by to the public,26.932802148,TJ,CH4,3.9,kg/TJ,105.0379283772,kg -5d44ffea-c64d-3811-9946-bd68d60885b2,SESCO,II.1.1,Tucuman,AR-T,annual,2015,gas oil combustion consumption by to the public,26.932802148,TJ,N2O,3.9,kg/TJ,105.0379283772,kg -32047fd8-3757-39ce-89d3-ebc75d5c2fa3,SESCO,II.1.1,Buenos Aires,AR-B,annual,2015,jet kerosene combustion consumption by to the public,5.1316135653999995,TJ,CO2,71500.0,kg/TJ,366910.36992609996,kg -12a36820-9094-31b7-922c-9658be21bc50,SESCO,II.1.1,Buenos Aires,AR-B,annual,2015,jet kerosene combustion consumption by to the public,5.1316135653999995,TJ,CH4,0.5,kg/TJ,2.5658067826999997,kg -bb1b53e4-2933-36fe-a2f5-8812d68536fa,SESCO,II.1.1,Buenos Aires,AR-B,annual,2015,jet kerosene combustion consumption by to the public,5.1316135653999995,TJ,N2O,2.0,kg/TJ,10.263227130799999,kg -9eb49eba-3370-3125-a0b2-f5636f5fee99,SESCO,II.1.1,Chubut,AR-U,annual,2015,jet kerosene combustion consumption by to the public,0.157265,TJ,CO2,71500.0,kg/TJ,11244.447499999998,kg -45e1eef7-e193-318b-b4b4-4fc66372becb,SESCO,II.1.1,Chubut,AR-U,annual,2015,jet kerosene combustion consumption by to the public,0.157265,TJ,CH4,0.5,kg/TJ,0.0786325,kg -cb939c91-c935-36dd-902f-bb7bc3a3d9b5,SESCO,II.1.1,Chubut,AR-U,annual,2015,jet kerosene combustion consumption by to the public,0.157265,TJ,N2O,2.0,kg/TJ,0.31453,kg -cb6a74ed-0a50-3ad0-a751-a6170811454b,SESCO,II.1.1,Corrientes,AR-W,annual,2015,jet kerosene combustion consumption by to the public,0.18871799999999997,TJ,CO2,71500.0,kg/TJ,13493.336999999998,kg -ac78e8f6-e5d5-339d-822a-50d99bc79d44,SESCO,II.1.1,Corrientes,AR-W,annual,2015,jet kerosene combustion consumption by to the public,0.18871799999999997,TJ,CH4,0.5,kg/TJ,0.09435899999999998,kg -6f9a812a-7caa-31f1-aff4-4d92ba471a22,SESCO,II.1.1,Corrientes,AR-W,annual,2015,jet kerosene combustion consumption by to the public,0.18871799999999997,TJ,N2O,2.0,kg/TJ,0.37743599999999994,kg -0c308e31-8fc9-364c-94a7-c41eabf1644b,SESCO,II.1.1,Córdoba,AR-X,annual,2015,jet kerosene combustion consumption by to the public,1.8871799999999996,TJ,CO2,71500.0,kg/TJ,134933.36999999997,kg -baeafae9-42f7-33b5-86ff-3b7442e5cc14,SESCO,II.1.1,Córdoba,AR-X,annual,2015,jet kerosene combustion consumption by to the public,1.8871799999999996,TJ,CH4,0.5,kg/TJ,0.9435899999999998,kg -23751ef8-fa6b-30a4-bb32-63b2743e4983,SESCO,II.1.1,Córdoba,AR-X,annual,2015,jet kerosene combustion consumption by to the public,1.8871799999999996,TJ,N2O,2.0,kg/TJ,3.7743599999999993,kg -852f2706-6120-3417-8f6f-17b1c0738e7d,SESCO,II.1.1,Entre Rios,AR-E,annual,2015,jet kerosene combustion consumption by to the public,1.3520575298,TJ,CO2,71500.0,kg/TJ,96672.1133807,kg -d3c1c7e9-e137-3953-aeab-443b6af9a742,SESCO,II.1.1,Entre Rios,AR-E,annual,2015,jet kerosene combustion consumption by to the public,1.3520575298,TJ,CH4,0.5,kg/TJ,0.6760287649,kg -80b0ef53-7ec7-3639-a254-80b77a74e5dc,SESCO,II.1.1,Entre Rios,AR-E,annual,2015,jet kerosene combustion consumption by to the public,1.3520575298,TJ,N2O,2.0,kg/TJ,2.7041150596,kg -6452b081-0b7e-3658-9036-f1c373914a00,SESCO,II.1.1,La Pampa,AR-L,annual,2015,jet kerosene combustion consumption by to the public,0.28307699999999997,TJ,CO2,71500.0,kg/TJ,20240.0055,kg -a3143b42-e344-35c9-9179-6930153cd9fa,SESCO,II.1.1,La Pampa,AR-L,annual,2015,jet kerosene combustion consumption by to the public,0.28307699999999997,TJ,CH4,0.5,kg/TJ,0.14153849999999998,kg -dd1c1f50-04c3-3aa6-8819-a5a19fe438d4,SESCO,II.1.1,La Pampa,AR-L,annual,2015,jet kerosene combustion consumption by to the public,0.28307699999999997,TJ,N2O,2.0,kg/TJ,0.5661539999999999,kg -96e0a3d4-13f0-3ead-9000-bb1d24d1a611,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2015,jet kerosene combustion consumption by to the public,0.5032479999999999,TJ,CO2,71500.0,kg/TJ,35982.231999999996,kg -0e1030bb-3247-3f31-93c3-a83335e82ee5,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2015,jet kerosene combustion consumption by to the public,0.5032479999999999,TJ,CH4,0.5,kg/TJ,0.25162399999999996,kg -8104479c-90ff-3eae-884c-894722c26858,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2015,jet kerosene combustion consumption by to the public,0.5032479999999999,TJ,N2O,2.0,kg/TJ,1.0064959999999998,kg -983b6455-6cf3-3145-bbb5-42e9d1588475,SESCO,II.1.1,Santa Fe,AR-S,annual,2015,jet kerosene combustion consumption by to the public,1.6041029999999998,TJ,CO2,71500.0,kg/TJ,114693.36449999998,kg -efc229ee-e940-35e0-955c-3393be70cb3d,SESCO,II.1.1,Santa Fe,AR-S,annual,2015,jet kerosene combustion consumption by to the public,1.6041029999999998,TJ,CH4,0.5,kg/TJ,0.8020514999999999,kg -147b23f2-e352-3d00-848d-604e478fe289,SESCO,II.1.1,Santa Fe,AR-S,annual,2015,jet kerosene combustion consumption by to the public,1.6041029999999998,TJ,N2O,2.0,kg/TJ,3.2082059999999997,kg -de990a59-bef4-3c1d-85d4-2b601240cc40,SESCO,I.3.1,Buenos Aires,AR-B,annual,2015,gasoline combustion consumption by petrochemical industries,64.7223,TJ,CO2,69300.0,kg/TJ,4485255.390000001,kg -39b3408d-2f9c-3a99-9fc0-97ecb45303d6,SESCO,I.3.1,Buenos Aires,AR-B,annual,2015,gasoline combustion consumption by petrochemical industries,64.7223,TJ,CH4,33.0,kg/TJ,2135.8359,kg -98ceedba-f1e9-3ec4-9db0-5f1c3b4e36d2,SESCO,I.3.1,Buenos Aires,AR-B,annual,2015,gasoline combustion consumption by petrochemical industries,64.7223,TJ,N2O,3.2,kg/TJ,207.11136000000002,kg -c8b46d57-fd2b-3e4a-8891-b729ed3a1939,SESCO,I.3.1,Buenos Aires,AR-B,annual,2015,gas oil combustion consumption by petrochemical industries,1830.59772,TJ,CO2,74100.0,kg/TJ,135647291.052,kg -c867acb8-ef4e-3382-90c2-248882677d2a,SESCO,I.3.1,Buenos Aires,AR-B,annual,2015,gas oil combustion consumption by petrochemical industries,1830.59772,TJ,CH4,3.9,kg/TJ,7139.331107999999,kg -c867acb8-ef4e-3382-90c2-248882677d2a,SESCO,I.3.1,Buenos Aires,AR-B,annual,2015,gas oil combustion consumption by petrochemical industries,1830.59772,TJ,N2O,3.9,kg/TJ,7139.331107999999,kg -60ef1ac7-0388-3535-a7d1-bffe45e00b8f,SESCO,I.3.1,Buenos Aires,AR-B,annual,2015,gas oil combustion consumption by petrochemical industries,116.88432,TJ,CO2,74100.0,kg/TJ,8661128.112,kg -21c39554-53bc-35fc-ac05-5df9d1f36217,SESCO,I.3.1,Buenos Aires,AR-B,annual,2015,gas oil combustion consumption by petrochemical industries,116.88432,TJ,CH4,3.9,kg/TJ,455.848848,kg -21c39554-53bc-35fc-ac05-5df9d1f36217,SESCO,I.3.1,Buenos Aires,AR-B,annual,2015,gas oil combustion consumption by petrochemical industries,116.88432,TJ,N2O,3.9,kg/TJ,455.848848,kg -4fd13449-99c4-39f5-96a5-cb136c369a50,SESCO,I.3.1,Buenos Aires,AR-B,annual,2015,jet kerosene combustion consumption by petrochemical industries,5.850257999999999,TJ,CO2,71500.0,kg/TJ,418293.4469999999,kg -b84c3712-dd67-34e6-9b33-816a5cdea4d6,SESCO,I.3.1,Buenos Aires,AR-B,annual,2015,jet kerosene combustion consumption by petrochemical industries,5.850257999999999,TJ,CH4,0.5,kg/TJ,2.9251289999999996,kg -0bf221b7-ca35-3ff4-baa0-0f72d19ba36a,SESCO,I.3.1,Buenos Aires,AR-B,annual,2015,jet kerosene combustion consumption by petrochemical industries,5.850257999999999,TJ,N2O,2.0,kg/TJ,11.700515999999999,kg -37be43c4-8176-3b0e-9579-257619e1f5e5,SESCO,II.2.1,Córdoba,AR-X,annual,2015,gas oil combustion consumption by railway transport,0.07224,TJ,CO2,74100.0,kg/TJ,5352.9839999999995,kg -e6d994ac-cda9-3133-9b60-8151e401d716,SESCO,II.2.1,Córdoba,AR-X,annual,2015,gas oil combustion consumption by railway transport,0.07224,TJ,CH4,3.9,kg/TJ,0.281736,kg -e6d994ac-cda9-3133-9b60-8151e401d716,SESCO,II.2.1,Córdoba,AR-X,annual,2015,gas oil combustion consumption by railway transport,0.07224,TJ,N2O,3.9,kg/TJ,0.281736,kg -380f8ddf-b831-3f43-b66f-14209617dd30,SESCO,II.2.1,Entre Rios,AR-E,annual,2015,gas oil combustion consumption by railway transport,0.14448,TJ,CO2,74100.0,kg/TJ,10705.967999999999,kg -dccf72ba-6fb8-32ac-a466-11f9b0fcb44c,SESCO,II.2.1,Entre Rios,AR-E,annual,2015,gas oil combustion consumption by railway transport,0.14448,TJ,CH4,3.9,kg/TJ,0.563472,kg -dccf72ba-6fb8-32ac-a466-11f9b0fcb44c,SESCO,II.2.1,Entre Rios,AR-E,annual,2015,gas oil combustion consumption by railway transport,0.14448,TJ,N2O,3.9,kg/TJ,0.563472,kg -ec4fe54a-33a4-313d-97dd-1835e9e69638,SESCO,II.1.1,Buenos Aires,AR-B,annual,2015,gas oil combustion consumption by freight transport,1416.155445768,TJ,CO2,74100.0,kg/TJ,104937118.5314088,kg -ed7c4775-02e8-30ee-bc2a-2125f6d33416,SESCO,II.1.1,Buenos Aires,AR-B,annual,2015,gas oil combustion consumption by freight transport,1416.155445768,TJ,CH4,3.9,kg/TJ,5523.0062384952,kg -ed7c4775-02e8-30ee-bc2a-2125f6d33416,SESCO,II.1.1,Buenos Aires,AR-B,annual,2015,gas oil combustion consumption by freight transport,1416.155445768,TJ,N2O,3.9,kg/TJ,5523.0062384952,kg -c5969ba8-8286-322b-96af-a9b8a9ed6a52,SESCO,II.1.1,Capital Federal,AR-C,annual,2015,gas oil combustion consumption by freight transport,177.612876,TJ,CO2,74100.0,kg/TJ,13161114.1116,kg -1ce6640b-a972-3782-8d0c-1b62c03fc286,SESCO,II.1.1,Capital Federal,AR-C,annual,2015,gas oil combustion consumption by freight transport,177.612876,TJ,CH4,3.9,kg/TJ,692.6902163999999,kg -1ce6640b-a972-3782-8d0c-1b62c03fc286,SESCO,II.1.1,Capital Federal,AR-C,annual,2015,gas oil combustion consumption by freight transport,177.612876,TJ,N2O,3.9,kg/TJ,692.6902163999999,kg -5a4b0d73-54cd-3eb0-aaef-91e1a6462d96,SESCO,II.1.1,Catamarca,AR-K,annual,2015,gas oil combustion consumption by freight transport,38.720639999999996,TJ,CO2,74100.0,kg/TJ,2869199.4239999996,kg -67125f53-f364-3fe3-b7ec-f30c657c65d3,SESCO,II.1.1,Catamarca,AR-K,annual,2015,gas oil combustion consumption by freight transport,38.720639999999996,TJ,CH4,3.9,kg/TJ,151.010496,kg -67125f53-f364-3fe3-b7ec-f30c657c65d3,SESCO,II.1.1,Catamarca,AR-K,annual,2015,gas oil combustion consumption by freight transport,38.720639999999996,TJ,N2O,3.9,kg/TJ,151.010496,kg -4707bcbb-5e01-3e73-ac9b-f21650771f95,SESCO,II.1.1,Chubut,AR-U,annual,2015,gas oil combustion consumption by freight transport,1.58928,TJ,CO2,74100.0,kg/TJ,117765.648,kg -6030dc85-974f-33a8-8a07-ffe998897e43,SESCO,II.1.1,Chubut,AR-U,annual,2015,gas oil combustion consumption by freight transport,1.58928,TJ,CH4,3.9,kg/TJ,6.198192,kg -6030dc85-974f-33a8-8a07-ffe998897e43,SESCO,II.1.1,Chubut,AR-U,annual,2015,gas oil combustion consumption by freight transport,1.58928,TJ,N2O,3.9,kg/TJ,6.198192,kg -b54a4d8e-7ec3-36ad-97c8-5ffe8d3a92a7,SESCO,II.1.1,Corrientes,AR-W,annual,2015,gas oil combustion consumption by freight transport,98.39088,TJ,CO2,74100.0,kg/TJ,7290764.208,kg -45e3fbc7-4fb2-3020-b1f3-d94f93fcfbae,SESCO,II.1.1,Corrientes,AR-W,annual,2015,gas oil combustion consumption by freight transport,98.39088,TJ,CH4,3.9,kg/TJ,383.724432,kg -45e3fbc7-4fb2-3020-b1f3-d94f93fcfbae,SESCO,II.1.1,Corrientes,AR-W,annual,2015,gas oil combustion consumption by freight transport,98.39088,TJ,N2O,3.9,kg/TJ,383.724432,kg -59538005-d4ed-3102-bfd3-cf13f9db6d4f,SESCO,II.1.1,Córdoba,AR-X,annual,2015,gas oil combustion consumption by freight transport,126.6006,TJ,CO2,74100.0,kg/TJ,9381104.46,kg -ea3bc380-22d7-360f-bfbe-e4479dfe00ca,SESCO,II.1.1,Córdoba,AR-X,annual,2015,gas oil combustion consumption by freight transport,126.6006,TJ,CH4,3.9,kg/TJ,493.74234,kg -ea3bc380-22d7-360f-bfbe-e4479dfe00ca,SESCO,II.1.1,Córdoba,AR-X,annual,2015,gas oil combustion consumption by freight transport,126.6006,TJ,N2O,3.9,kg/TJ,493.74234,kg -e02aff79-b181-3812-8f8e-9ee31f0136a1,SESCO,II.1.1,Entre Rios,AR-E,annual,2015,gas oil combustion consumption by freight transport,89.83044,TJ,CO2,74100.0,kg/TJ,6656435.603999999,kg -68348863-e41d-3181-884a-29b7c030e3a9,SESCO,II.1.1,Entre Rios,AR-E,annual,2015,gas oil combustion consumption by freight transport,89.83044,TJ,CH4,3.9,kg/TJ,350.338716,kg -68348863-e41d-3181-884a-29b7c030e3a9,SESCO,II.1.1,Entre Rios,AR-E,annual,2015,gas oil combustion consumption by freight transport,89.83044,TJ,N2O,3.9,kg/TJ,350.338716,kg -fabc7f5d-ccb0-35bf-964e-527bf1fc4d0d,SESCO,II.1.1,Formosa,AR-P,annual,2015,gas oil combustion consumption by freight transport,4.47888,TJ,CO2,74100.0,kg/TJ,331885.00800000003,kg -4a8e33ab-3db1-364b-8856-e667be5954e5,SESCO,II.1.1,Formosa,AR-P,annual,2015,gas oil combustion consumption by freight transport,4.47888,TJ,CH4,3.9,kg/TJ,17.467632000000002,kg -4a8e33ab-3db1-364b-8856-e667be5954e5,SESCO,II.1.1,Formosa,AR-P,annual,2015,gas oil combustion consumption by freight transport,4.47888,TJ,N2O,3.9,kg/TJ,17.467632000000002,kg -1087d05b-0aed-3061-9158-9cecb0e89b85,SESCO,II.1.1,La Pampa,AR-L,annual,2015,gas oil combustion consumption by freight transport,19.721519999999998,TJ,CO2,74100.0,kg/TJ,1461364.6319999998,kg -d87eb64a-f252-3ff8-b893-3789951916d5,SESCO,II.1.1,La Pampa,AR-L,annual,2015,gas oil combustion consumption by freight transport,19.721519999999998,TJ,CH4,3.9,kg/TJ,76.91392799999998,kg -d87eb64a-f252-3ff8-b893-3789951916d5,SESCO,II.1.1,La Pampa,AR-L,annual,2015,gas oil combustion consumption by freight transport,19.721519999999998,TJ,N2O,3.9,kg/TJ,76.91392799999998,kg -15753383-3d82-3222-925e-2b6fe899c208,SESCO,II.1.1,Mendoza,AR-M,annual,2015,gas oil combustion consumption by freight transport,22.82784,TJ,CO2,74100.0,kg/TJ,1691542.944,kg -63eeb02e-ba53-3e1d-8813-bf298c45fef2,SESCO,II.1.1,Mendoza,AR-M,annual,2015,gas oil combustion consumption by freight transport,22.82784,TJ,CH4,3.9,kg/TJ,89.02857599999999,kg -63eeb02e-ba53-3e1d-8813-bf298c45fef2,SESCO,II.1.1,Mendoza,AR-M,annual,2015,gas oil combustion consumption by freight transport,22.82784,TJ,N2O,3.9,kg/TJ,89.02857599999999,kg -52341a90-c811-3f28-b114-b162114262ad,SESCO,II.1.1,Misiones,AR-N,annual,2015,gas oil combustion consumption by freight transport,17.40984,TJ,CO2,74100.0,kg/TJ,1290069.1439999999,kg -41cf6dfc-9ebc-3a18-8fcd-a643470f9002,SESCO,II.1.1,Misiones,AR-N,annual,2015,gas oil combustion consumption by freight transport,17.40984,TJ,CH4,3.9,kg/TJ,67.898376,kg -41cf6dfc-9ebc-3a18-8fcd-a643470f9002,SESCO,II.1.1,Misiones,AR-N,annual,2015,gas oil combustion consumption by freight transport,17.40984,TJ,N2O,3.9,kg/TJ,67.898376,kg -55740a7a-c668-395f-959e-c8e35f4e65ff,SESCO,II.1.1,Rio Negro,AR-R,annual,2015,gas oil combustion consumption by freight transport,71.62595999999999,TJ,CO2,74100.0,kg/TJ,5307483.635999999,kg -c846a224-6648-38a9-8d04-1d39ce0976b1,SESCO,II.1.1,Rio Negro,AR-R,annual,2015,gas oil combustion consumption by freight transport,71.62595999999999,TJ,CH4,3.9,kg/TJ,279.34124399999996,kg -c846a224-6648-38a9-8d04-1d39ce0976b1,SESCO,II.1.1,Rio Negro,AR-R,annual,2015,gas oil combustion consumption by freight transport,71.62595999999999,TJ,N2O,3.9,kg/TJ,279.34124399999996,kg -37a1ce93-86ee-32e9-b3e8-8cef44bd14eb,SESCO,II.1.1,San Juan,AR-J,annual,2015,gas oil combustion consumption by freight transport,23.04456,TJ,CO2,74100.0,kg/TJ,1707601.896,kg -04a2373e-c7be-317c-9f09-09a0a1b56204,SESCO,II.1.1,San Juan,AR-J,annual,2015,gas oil combustion consumption by freight transport,23.04456,TJ,CH4,3.9,kg/TJ,89.873784,kg -04a2373e-c7be-317c-9f09-09a0a1b56204,SESCO,II.1.1,San Juan,AR-J,annual,2015,gas oil combustion consumption by freight transport,23.04456,TJ,N2O,3.9,kg/TJ,89.873784,kg -d3d14057-dd88-3b3f-9abf-49b3a393c82a,SESCO,II.1.1,San Luis,AR-D,annual,2015,gas oil combustion consumption by freight transport,105.2898,TJ,CO2,74100.0,kg/TJ,7801974.18,kg -180d5089-4909-377a-99f9-e053d23d5bc7,SESCO,II.1.1,San Luis,AR-D,annual,2015,gas oil combustion consumption by freight transport,105.2898,TJ,CH4,3.9,kg/TJ,410.63022,kg -180d5089-4909-377a-99f9-e053d23d5bc7,SESCO,II.1.1,San Luis,AR-D,annual,2015,gas oil combustion consumption by freight transport,105.2898,TJ,N2O,3.9,kg/TJ,410.63022,kg -6c87e082-c3b0-33d3-bc78-2a90bdd4f601,SESCO,II.1.1,Santa Fe,AR-S,annual,2015,gas oil combustion consumption by freight transport,690.21708,TJ,CO2,74100.0,kg/TJ,51145085.628,kg -a7da7141-3e6f-3fdf-a636-f2970cab892c,SESCO,II.1.1,Santa Fe,AR-S,annual,2015,gas oil combustion consumption by freight transport,690.21708,TJ,CH4,3.9,kg/TJ,2691.846612,kg -a7da7141-3e6f-3fdf-a636-f2970cab892c,SESCO,II.1.1,Santa Fe,AR-S,annual,2015,gas oil combustion consumption by freight transport,690.21708,TJ,N2O,3.9,kg/TJ,2691.846612,kg -ffc62ae8-46f9-3eea-ab9f-e3d5f3aef805,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2015,gas oil combustion consumption by freight transport,12.20856,TJ,CO2,74100.0,kg/TJ,904654.296,kg -1955350b-c554-3a95-bc68-9d2d5eb7be10,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2015,gas oil combustion consumption by freight transport,12.20856,TJ,CH4,3.9,kg/TJ,47.613384,kg -1955350b-c554-3a95-bc68-9d2d5eb7be10,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2015,gas oil combustion consumption by freight transport,12.20856,TJ,N2O,3.9,kg/TJ,47.613384,kg -af1b120c-2d34-350c-b4ed-6710363d76f5,SESCO,II.1.1,Tucuman,AR-T,annual,2015,gas oil combustion consumption by freight transport,36.58956,TJ,CO2,74100.0,kg/TJ,2711286.3959999997,kg -93601f58-0bbe-3f56-83eb-c79bb22fdcfa,SESCO,II.1.1,Tucuman,AR-T,annual,2015,gas oil combustion consumption by freight transport,36.58956,TJ,CH4,3.9,kg/TJ,142.699284,kg -93601f58-0bbe-3f56-83eb-c79bb22fdcfa,SESCO,II.1.1,Tucuman,AR-T,annual,2015,gas oil combustion consumption by freight transport,36.58956,TJ,N2O,3.9,kg/TJ,142.699284,kg -5ec3918f-7758-345f-98ad-ca01478ee0f3,SESCO,II.1.1,Buenos Aires,AR-B,annual,2015,gas oil combustion consumption by freight transport,54.32448,TJ,CO2,74100.0,kg/TJ,4025443.968,kg -bdbd4e23-a159-3618-9437-e3b4d1dfa6bc,SESCO,II.1.1,Buenos Aires,AR-B,annual,2015,gas oil combustion consumption by freight transport,54.32448,TJ,CH4,3.9,kg/TJ,211.865472,kg -bdbd4e23-a159-3618-9437-e3b4d1dfa6bc,SESCO,II.1.1,Buenos Aires,AR-B,annual,2015,gas oil combustion consumption by freight transport,54.32448,TJ,N2O,3.9,kg/TJ,211.865472,kg -af4cd1b7-292a-36a7-b839-b11cb3e9c11c,SESCO,II.1.1,Capital Federal,AR-C,annual,2015,gas oil combustion consumption by freight transport,24.30876,TJ,CO2,74100.0,kg/TJ,1801279.116,kg -5af90376-5eac-35bd-aaa2-65168972fd0b,SESCO,II.1.1,Capital Federal,AR-C,annual,2015,gas oil combustion consumption by freight transport,24.30876,TJ,CH4,3.9,kg/TJ,94.804164,kg -5af90376-5eac-35bd-aaa2-65168972fd0b,SESCO,II.1.1,Capital Federal,AR-C,annual,2015,gas oil combustion consumption by freight transport,24.30876,TJ,N2O,3.9,kg/TJ,94.804164,kg -addbd6f5-eaee-3654-b113-8290a3d9ea35,SESCO,II.1.1,Catamarca,AR-K,annual,2015,gas oil combustion consumption by freight transport,0.46956,TJ,CO2,74100.0,kg/TJ,34794.396,kg -ad29b53f-5abf-3bda-bd72-72399974dca9,SESCO,II.1.1,Catamarca,AR-K,annual,2015,gas oil combustion consumption by freight transport,0.46956,TJ,CH4,3.9,kg/TJ,1.831284,kg -ad29b53f-5abf-3bda-bd72-72399974dca9,SESCO,II.1.1,Catamarca,AR-K,annual,2015,gas oil combustion consumption by freight transport,0.46956,TJ,N2O,3.9,kg/TJ,1.831284,kg -9b3269e4-b6ae-38d5-b672-810f65029af8,SESCO,II.1.1,Chubut,AR-U,annual,2015,gas oil combustion consumption by freight transport,0.36119999999999997,TJ,CO2,74100.0,kg/TJ,26764.92,kg -6e2da646-499d-3587-acc8-b34e1c18a66e,SESCO,II.1.1,Chubut,AR-U,annual,2015,gas oil combustion consumption by freight transport,0.36119999999999997,TJ,CH4,3.9,kg/TJ,1.40868,kg -6e2da646-499d-3587-acc8-b34e1c18a66e,SESCO,II.1.1,Chubut,AR-U,annual,2015,gas oil combustion consumption by freight transport,0.36119999999999997,TJ,N2O,3.9,kg/TJ,1.40868,kg -bfc55cf8-16e5-38c9-a409-94f70b943b40,SESCO,II.1.1,Corrientes,AR-W,annual,2015,gas oil combustion consumption by freight transport,4.26216,TJ,CO2,74100.0,kg/TJ,315826.056,kg -7b15b13a-7c52-34d0-85ed-b7ca349090ae,SESCO,II.1.1,Corrientes,AR-W,annual,2015,gas oil combustion consumption by freight transport,4.26216,TJ,CH4,3.9,kg/TJ,16.622424,kg -7b15b13a-7c52-34d0-85ed-b7ca349090ae,SESCO,II.1.1,Corrientes,AR-W,annual,2015,gas oil combustion consumption by freight transport,4.26216,TJ,N2O,3.9,kg/TJ,16.622424,kg -f3ddb8d6-09c5-3a1c-b503-dba3e097c536,SESCO,II.1.1,Córdoba,AR-X,annual,2015,gas oil combustion consumption by freight transport,3.5758799999999997,TJ,CO2,74100.0,kg/TJ,264972.708,kg -6897c778-da80-307a-8354-6317ab69c44b,SESCO,II.1.1,Córdoba,AR-X,annual,2015,gas oil combustion consumption by freight transport,3.5758799999999997,TJ,CH4,3.9,kg/TJ,13.945931999999999,kg -6897c778-da80-307a-8354-6317ab69c44b,SESCO,II.1.1,Córdoba,AR-X,annual,2015,gas oil combustion consumption by freight transport,3.5758799999999997,TJ,N2O,3.9,kg/TJ,13.945931999999999,kg -699d24ff-b993-36d0-8fdd-6eb5464b26b2,SESCO,II.1.1,Entre Rios,AR-E,annual,2015,gas oil combustion consumption by freight transport,1.30032,TJ,CO2,74100.0,kg/TJ,96353.712,kg -9333fda9-3e51-3064-96ad-2e04f2a5c3d6,SESCO,II.1.1,Entre Rios,AR-E,annual,2015,gas oil combustion consumption by freight transport,1.30032,TJ,CH4,3.9,kg/TJ,5.071248,kg -9333fda9-3e51-3064-96ad-2e04f2a5c3d6,SESCO,II.1.1,Entre Rios,AR-E,annual,2015,gas oil combustion consumption by freight transport,1.30032,TJ,N2O,3.9,kg/TJ,5.071248,kg -04c78ffd-9cc4-3825-a216-511c3e714d6f,SESCO,II.1.1,La Pampa,AR-L,annual,2015,gas oil combustion consumption by freight transport,0.14448,TJ,CO2,74100.0,kg/TJ,10705.967999999999,kg -eaf5d924-0aba-3011-b07b-f8b117d8562c,SESCO,II.1.1,La Pampa,AR-L,annual,2015,gas oil combustion consumption by freight transport,0.14448,TJ,CH4,3.9,kg/TJ,0.563472,kg -eaf5d924-0aba-3011-b07b-f8b117d8562c,SESCO,II.1.1,La Pampa,AR-L,annual,2015,gas oil combustion consumption by freight transport,0.14448,TJ,N2O,3.9,kg/TJ,0.563472,kg -2cc10979-2c35-30a8-bd88-00c0de5c5fc8,SESCO,II.1.1,Misiones,AR-N,annual,2015,gas oil combustion consumption by freight transport,0.43344,TJ,CO2,74100.0,kg/TJ,32117.904,kg -61ace39c-b50a-3065-9b0f-716f3b6b4a38,SESCO,II.1.1,Misiones,AR-N,annual,2015,gas oil combustion consumption by freight transport,0.43344,TJ,CH4,3.9,kg/TJ,1.690416,kg -61ace39c-b50a-3065-9b0f-716f3b6b4a38,SESCO,II.1.1,Misiones,AR-N,annual,2015,gas oil combustion consumption by freight transport,0.43344,TJ,N2O,3.9,kg/TJ,1.690416,kg -33776a0d-18f2-335e-aa2a-352b36b04606,SESCO,II.1.1,Rio Negro,AR-R,annual,2015,gas oil combustion consumption by freight transport,0.14448,TJ,CO2,74100.0,kg/TJ,10705.967999999999,kg -36805139-87cb-360d-b97a-c8c62b5b659b,SESCO,II.1.1,Rio Negro,AR-R,annual,2015,gas oil combustion consumption by freight transport,0.14448,TJ,CH4,3.9,kg/TJ,0.563472,kg -36805139-87cb-360d-b97a-c8c62b5b659b,SESCO,II.1.1,Rio Negro,AR-R,annual,2015,gas oil combustion consumption by freight transport,0.14448,TJ,N2O,3.9,kg/TJ,0.563472,kg -3eee0545-483d-3dac-a0b8-66b4b1fe7a69,SESCO,II.1.1,San Juan,AR-J,annual,2015,gas oil combustion consumption by freight transport,0.28896,TJ,CO2,74100.0,kg/TJ,21411.935999999998,kg -d20d4978-b2fd-3ed2-8356-1883363b7bce,SESCO,II.1.1,San Juan,AR-J,annual,2015,gas oil combustion consumption by freight transport,0.28896,TJ,CH4,3.9,kg/TJ,1.126944,kg -d20d4978-b2fd-3ed2-8356-1883363b7bce,SESCO,II.1.1,San Juan,AR-J,annual,2015,gas oil combustion consumption by freight transport,0.28896,TJ,N2O,3.9,kg/TJ,1.126944,kg -d1a627b5-9e09-3e53-a6ad-dea571646ce9,SESCO,II.1.1,San Luis,AR-D,annual,2015,gas oil combustion consumption by freight transport,0.03612,TJ,CO2,74100.0,kg/TJ,2676.4919999999997,kg -c6a9bf1d-3e70-3e85-a609-9e2f1e66173d,SESCO,II.1.1,San Luis,AR-D,annual,2015,gas oil combustion consumption by freight transport,0.03612,TJ,CH4,3.9,kg/TJ,0.140868,kg -c6a9bf1d-3e70-3e85-a609-9e2f1e66173d,SESCO,II.1.1,San Luis,AR-D,annual,2015,gas oil combustion consumption by freight transport,0.03612,TJ,N2O,3.9,kg/TJ,0.140868,kg -e7b2a92c-bb47-3548-b49f-5d8cb518f0bb,SESCO,II.1.1,Santa Fe,AR-S,annual,2015,gas oil combustion consumption by freight transport,5.49024,TJ,CO2,74100.0,kg/TJ,406826.784,kg -7fed4078-8cc1-3649-9f4c-51ed669b212e,SESCO,II.1.1,Santa Fe,AR-S,annual,2015,gas oil combustion consumption by freight transport,5.49024,TJ,CH4,3.9,kg/TJ,21.411936,kg -7fed4078-8cc1-3649-9f4c-51ed669b212e,SESCO,II.1.1,Santa Fe,AR-S,annual,2015,gas oil combustion consumption by freight transport,5.49024,TJ,N2O,3.9,kg/TJ,21.411936,kg -e7d7bd7e-52eb-370a-aa42-c7551a78080a,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2015,gas oil combustion consumption by freight transport,0.68628,TJ,CO2,74100.0,kg/TJ,50853.348,kg -1bb66a92-70f7-37ac-923c-f327035de06c,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2015,gas oil combustion consumption by freight transport,0.68628,TJ,CH4,3.9,kg/TJ,2.676492,kg -1bb66a92-70f7-37ac-923c-f327035de06c,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2015,gas oil combustion consumption by freight transport,0.68628,TJ,N2O,3.9,kg/TJ,2.676492,kg -1ba2bc5e-ae0f-3026-b6ff-3c033e267978,SESCO,II.1.1,Tucuman,AR-T,annual,2015,gas oil combustion consumption by freight transport,1.0836,TJ,CO2,74100.0,kg/TJ,80294.76,kg -a9453276-3661-336d-8733-d6f7a1f56ca7,SESCO,II.1.1,Tucuman,AR-T,annual,2015,gas oil combustion consumption by freight transport,1.0836,TJ,CH4,3.9,kg/TJ,4.226039999999999,kg -a9453276-3661-336d-8733-d6f7a1f56ca7,SESCO,II.1.1,Tucuman,AR-T,annual,2015,gas oil combustion consumption by freight transport,1.0836,TJ,N2O,3.9,kg/TJ,4.226039999999999,kg -4a7e5556-df8e-3b09-b9ef-6f6314bba381,SESCO,II.1.1,Buenos Aires,AR-B,annual,2015,jet kerosene combustion consumption by freight transport,0.9435899999999998,TJ,CO2,71500.0,kg/TJ,67466.68499999998,kg -13b94e1e-3b3b-3975-a275-076ee6d49989,SESCO,II.1.1,Buenos Aires,AR-B,annual,2015,jet kerosene combustion consumption by freight transport,0.9435899999999998,TJ,CH4,0.5,kg/TJ,0.4717949999999999,kg -28b0b48c-382a-3f01-a590-79c3a70510f4,SESCO,II.1.1,Buenos Aires,AR-B,annual,2015,jet kerosene combustion consumption by freight transport,0.9435899999999998,TJ,N2O,2.0,kg/TJ,1.8871799999999996,kg -1bf68087-bc2a-3734-af06-30741085dc15,SESCO,II.1.1,Buenos Aires,AR-B,annual,2015,gas oil combustion consumption by public passenger transport,2647.74048,TJ,CO2,74100.0,kg/TJ,196197569.568,kg -32a28254-bddd-36c0-ab5d-70575294c74c,SESCO,II.1.1,Buenos Aires,AR-B,annual,2015,gas oil combustion consumption by public passenger transport,2647.74048,TJ,CH4,3.9,kg/TJ,10326.187871999999,kg -32a28254-bddd-36c0-ab5d-70575294c74c,SESCO,II.1.1,Buenos Aires,AR-B,annual,2015,gas oil combustion consumption by public passenger transport,2647.74048,TJ,N2O,3.9,kg/TJ,10326.187871999999,kg -b1f79d05-db5e-3458-b0d7-625b3627f03b,SESCO,II.1.1,Capital Federal,AR-C,annual,2015,gas oil combustion consumption by public passenger transport,501.12241452,TJ,CO2,74100.0,kg/TJ,37133170.915932,kg -341a4010-84b3-3345-a527-977cba23646f,SESCO,II.1.1,Capital Federal,AR-C,annual,2015,gas oil combustion consumption by public passenger transport,501.12241452,TJ,CH4,3.9,kg/TJ,1954.377416628,kg -341a4010-84b3-3345-a527-977cba23646f,SESCO,II.1.1,Capital Federal,AR-C,annual,2015,gas oil combustion consumption by public passenger transport,501.12241452,TJ,N2O,3.9,kg/TJ,1954.377416628,kg -b9978beb-db3a-3942-bf60-40a779aaa013,SESCO,II.1.1,Catamarca,AR-K,annual,2015,gas oil combustion consumption by public passenger transport,0.5418,TJ,CO2,74100.0,kg/TJ,40147.38,kg -ba4527a4-c8a1-3e7e-8d20-bd1ccde7dc1e,SESCO,II.1.1,Catamarca,AR-K,annual,2015,gas oil combustion consumption by public passenger transport,0.5418,TJ,CH4,3.9,kg/TJ,2.1130199999999997,kg -ba4527a4-c8a1-3e7e-8d20-bd1ccde7dc1e,SESCO,II.1.1,Catamarca,AR-K,annual,2015,gas oil combustion consumption by public passenger transport,0.5418,TJ,N2O,3.9,kg/TJ,2.1130199999999997,kg -6eb69363-5776-349a-a5c0-93fce0ec9fe5,SESCO,II.1.1,Chubut,AR-U,annual,2015,gas oil combustion consumption by public passenger transport,11.29468788,TJ,CO2,74100.0,kg/TJ,836936.371908,kg -2e4949a0-0887-31ae-b8f6-43654db39c09,SESCO,II.1.1,Chubut,AR-U,annual,2015,gas oil combustion consumption by public passenger transport,11.29468788,TJ,CH4,3.9,kg/TJ,44.049282731999995,kg -2e4949a0-0887-31ae-b8f6-43654db39c09,SESCO,II.1.1,Chubut,AR-U,annual,2015,gas oil combustion consumption by public passenger transport,11.29468788,TJ,N2O,3.9,kg/TJ,44.049282731999995,kg -2ba8a317-c81d-305d-81f6-bbe89e069275,SESCO,II.1.1,Corrientes,AR-W,annual,2015,gas oil combustion consumption by public passenger transport,0.65016,TJ,CO2,74100.0,kg/TJ,48176.856,kg -ab969a44-ed61-369c-a191-19805cd98dbe,SESCO,II.1.1,Corrientes,AR-W,annual,2015,gas oil combustion consumption by public passenger transport,0.65016,TJ,CH4,3.9,kg/TJ,2.535624,kg -ab969a44-ed61-369c-a191-19805cd98dbe,SESCO,II.1.1,Corrientes,AR-W,annual,2015,gas oil combustion consumption by public passenger transport,0.65016,TJ,N2O,3.9,kg/TJ,2.535624,kg -914ab449-f90a-3bbe-8f2c-1079e690295b,SESCO,II.1.1,Córdoba,AR-X,annual,2015,gas oil combustion consumption by public passenger transport,105.10930836,TJ,CO2,74100.0,kg/TJ,7788599.749476,kg -5edc1763-babc-364f-9725-97fcebbd9735,SESCO,II.1.1,Córdoba,AR-X,annual,2015,gas oil combustion consumption by public passenger transport,105.10930836,TJ,CH4,3.9,kg/TJ,409.926302604,kg -5edc1763-babc-364f-9725-97fcebbd9735,SESCO,II.1.1,Córdoba,AR-X,annual,2015,gas oil combustion consumption by public passenger transport,105.10930836,TJ,N2O,3.9,kg/TJ,409.926302604,kg -86dec258-1790-36b5-a415-12293af6b60d,SESCO,II.1.1,Entre Rios,AR-E,annual,2015,gas oil combustion consumption by public passenger transport,68.22468408,TJ,CO2,74100.0,kg/TJ,5055449.0903280005,kg -85c007c9-8325-3fda-a15d-f64cad2db276,SESCO,II.1.1,Entre Rios,AR-E,annual,2015,gas oil combustion consumption by public passenger transport,68.22468408,TJ,CH4,3.9,kg/TJ,266.076267912,kg -85c007c9-8325-3fda-a15d-f64cad2db276,SESCO,II.1.1,Entre Rios,AR-E,annual,2015,gas oil combustion consumption by public passenger transport,68.22468408,TJ,N2O,3.9,kg/TJ,266.076267912,kg -2414251f-b129-33ed-999e-1e583acfab98,SESCO,II.1.1,Formosa,AR-P,annual,2015,gas oil combustion consumption by public passenger transport,0.50568,TJ,CO2,74100.0,kg/TJ,37470.888,kg -0ab8a1ee-c755-3d6f-b804-eed5a6e78006,SESCO,II.1.1,Formosa,AR-P,annual,2015,gas oil combustion consumption by public passenger transport,0.50568,TJ,CH4,3.9,kg/TJ,1.9721520000000001,kg -0ab8a1ee-c755-3d6f-b804-eed5a6e78006,SESCO,II.1.1,Formosa,AR-P,annual,2015,gas oil combustion consumption by public passenger transport,0.50568,TJ,N2O,3.9,kg/TJ,1.9721520000000001,kg -6ec28570-120b-3e7d-9e1b-4d7168b4eb68,SESCO,II.1.1,La Pampa,AR-L,annual,2015,gas oil combustion consumption by public passenger transport,1.19196,TJ,CO2,74100.0,kg/TJ,88324.23599999999,kg -9b292f88-ac74-38cf-ab26-bf28ba3b5511,SESCO,II.1.1,La Pampa,AR-L,annual,2015,gas oil combustion consumption by public passenger transport,1.19196,TJ,CH4,3.9,kg/TJ,4.648643999999999,kg -9b292f88-ac74-38cf-ab26-bf28ba3b5511,SESCO,II.1.1,La Pampa,AR-L,annual,2015,gas oil combustion consumption by public passenger transport,1.19196,TJ,N2O,3.9,kg/TJ,4.648643999999999,kg -86c92e06-059c-3e42-9387-071565a595bb,SESCO,II.1.1,Mendoza,AR-M,annual,2015,gas oil combustion consumption by public passenger transport,1.19196,TJ,CO2,74100.0,kg/TJ,88324.23599999999,kg -a0568891-5f36-3c91-a71f-36ed431a340b,SESCO,II.1.1,Mendoza,AR-M,annual,2015,gas oil combustion consumption by public passenger transport,1.19196,TJ,CH4,3.9,kg/TJ,4.648643999999999,kg -a0568891-5f36-3c91-a71f-36ed431a340b,SESCO,II.1.1,Mendoza,AR-M,annual,2015,gas oil combustion consumption by public passenger transport,1.19196,TJ,N2O,3.9,kg/TJ,4.648643999999999,kg -84dee5fa-056a-37fe-8b95-4ce2cd9c2738,SESCO,II.1.1,Misiones,AR-N,annual,2015,gas oil combustion consumption by public passenger transport,0.68628,TJ,CO2,74100.0,kg/TJ,50853.348,kg -9dcdd8b7-4f24-3db8-954a-386b0e69ccde,SESCO,II.1.1,Misiones,AR-N,annual,2015,gas oil combustion consumption by public passenger transport,0.68628,TJ,CH4,3.9,kg/TJ,2.676492,kg -9dcdd8b7-4f24-3db8-954a-386b0e69ccde,SESCO,II.1.1,Misiones,AR-N,annual,2015,gas oil combustion consumption by public passenger transport,0.68628,TJ,N2O,3.9,kg/TJ,2.676492,kg -bbe530dc-85a6-3b89-aa50-b53300229a78,SESCO,II.1.1,Rio Negro,AR-R,annual,2015,gas oil combustion consumption by public passenger transport,55.10225196,TJ,CO2,74100.0,kg/TJ,4083076.8702359996,kg -9ada7076-3e68-356f-a341-f648ba62b883,SESCO,II.1.1,Rio Negro,AR-R,annual,2015,gas oil combustion consumption by public passenger transport,55.10225196,TJ,CH4,3.9,kg/TJ,214.898782644,kg -9ada7076-3e68-356f-a341-f648ba62b883,SESCO,II.1.1,Rio Negro,AR-R,annual,2015,gas oil combustion consumption by public passenger transport,55.10225196,TJ,N2O,3.9,kg/TJ,214.898782644,kg -fb471af3-2bb2-3a62-a9c8-e2d443a41095,SESCO,II.1.1,San Juan,AR-J,annual,2015,gas oil combustion consumption by public passenger transport,0.10836,TJ,CO2,74100.0,kg/TJ,8029.476,kg -bf6e68db-cf87-3c85-9c4c-f9585f4dd4c2,SESCO,II.1.1,San Juan,AR-J,annual,2015,gas oil combustion consumption by public passenger transport,0.10836,TJ,CH4,3.9,kg/TJ,0.422604,kg -bf6e68db-cf87-3c85-9c4c-f9585f4dd4c2,SESCO,II.1.1,San Juan,AR-J,annual,2015,gas oil combustion consumption by public passenger transport,0.10836,TJ,N2O,3.9,kg/TJ,0.422604,kg -72d043a2-68e2-365f-8cc4-12717010f16b,SESCO,II.1.1,San Luis,AR-D,annual,2015,gas oil combustion consumption by public passenger transport,0.28896,TJ,CO2,74100.0,kg/TJ,21411.935999999998,kg -082f2789-22a0-35e4-b33b-02c355e293fe,SESCO,II.1.1,San Luis,AR-D,annual,2015,gas oil combustion consumption by public passenger transport,0.28896,TJ,CH4,3.9,kg/TJ,1.126944,kg -082f2789-22a0-35e4-b33b-02c355e293fe,SESCO,II.1.1,San Luis,AR-D,annual,2015,gas oil combustion consumption by public passenger transport,0.28896,TJ,N2O,3.9,kg/TJ,1.126944,kg -1b061d8d-2107-3846-86e0-c2620d0cf4c7,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2015,gas oil combustion consumption by public passenger transport,1.33644,TJ,CO2,74100.0,kg/TJ,99030.20400000001,kg -1caaa6e4-9010-38e3-8ca8-86c62229341f,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2015,gas oil combustion consumption by public passenger transport,1.33644,TJ,CH4,3.9,kg/TJ,5.212116,kg -1caaa6e4-9010-38e3-8ca8-86c62229341f,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2015,gas oil combustion consumption by public passenger transport,1.33644,TJ,N2O,3.9,kg/TJ,5.212116,kg -4cab21bc-993c-3e05-b935-96a5d368d470,SESCO,II.1.1,Santa Fe,AR-S,annual,2015,gas oil combustion consumption by public passenger transport,24.483039,TJ,CO2,74100.0,kg/TJ,1814193.1899,kg -e1267c08-1376-3dec-9abf-43e450dbba17,SESCO,II.1.1,Santa Fe,AR-S,annual,2015,gas oil combustion consumption by public passenger transport,24.483039,TJ,CH4,3.9,kg/TJ,95.48385210000001,kg -e1267c08-1376-3dec-9abf-43e450dbba17,SESCO,II.1.1,Santa Fe,AR-S,annual,2015,gas oil combustion consumption by public passenger transport,24.483039,TJ,N2O,3.9,kg/TJ,95.48385210000001,kg -89f99194-aab6-37c4-add6-863a428bf31a,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2015,gas oil combustion consumption by public passenger transport,1.04748,TJ,CO2,74100.0,kg/TJ,77618.268,kg -9cba0d8e-cd23-3eb7-9dd6-8cc9c9ad1f4f,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2015,gas oil combustion consumption by public passenger transport,1.04748,TJ,CH4,3.9,kg/TJ,4.085172,kg -9cba0d8e-cd23-3eb7-9dd6-8cc9c9ad1f4f,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2015,gas oil combustion consumption by public passenger transport,1.04748,TJ,N2O,3.9,kg/TJ,4.085172,kg -cef426be-5a9d-3bf8-ab91-89be40b0fdba,SESCO,II.1.1,Buenos Aires,AR-B,annual,2015,gas oil combustion consumption by public passenger transport,2.709,TJ,CO2,74100.0,kg/TJ,200736.9,kg -3a0a7fab-e268-39e6-a956-3e05fd289bd5,SESCO,II.1.1,Buenos Aires,AR-B,annual,2015,gas oil combustion consumption by public passenger transport,2.709,TJ,CH4,3.9,kg/TJ,10.5651,kg -3a0a7fab-e268-39e6-a956-3e05fd289bd5,SESCO,II.1.1,Buenos Aires,AR-B,annual,2015,gas oil combustion consumption by public passenger transport,2.709,TJ,N2O,3.9,kg/TJ,10.5651,kg -89f98616-6ba2-3e3f-9d78-731641893eb4,SESCO,II.1.1,Capital Federal,AR-C,annual,2015,gas oil combustion consumption by public passenger transport,1.58928,TJ,CO2,74100.0,kg/TJ,117765.648,kg -527f8061-3fa3-3e7d-a248-2011e759d3c6,SESCO,II.1.1,Capital Federal,AR-C,annual,2015,gas oil combustion consumption by public passenger transport,1.58928,TJ,CH4,3.9,kg/TJ,6.198192,kg -527f8061-3fa3-3e7d-a248-2011e759d3c6,SESCO,II.1.1,Capital Federal,AR-C,annual,2015,gas oil combustion consumption by public passenger transport,1.58928,TJ,N2O,3.9,kg/TJ,6.198192,kg -0018d26a-3f3a-3ed0-a113-24f50a4bca7b,SESCO,II.1.1,Chubut,AR-U,annual,2015,gas oil combustion consumption by public passenger transport,0.03612,TJ,CO2,74100.0,kg/TJ,2676.4919999999997,kg -c935cdd5-ed88-35ce-8d68-c14891c9caad,SESCO,II.1.1,Chubut,AR-U,annual,2015,gas oil combustion consumption by public passenger transport,0.03612,TJ,CH4,3.9,kg/TJ,0.140868,kg -c935cdd5-ed88-35ce-8d68-c14891c9caad,SESCO,II.1.1,Chubut,AR-U,annual,2015,gas oil combustion consumption by public passenger transport,0.03612,TJ,N2O,3.9,kg/TJ,0.140868,kg -28809476-dab0-3901-b5ea-abb4c3766011,SESCO,II.1.1,Córdoba,AR-X,annual,2015,gas oil combustion consumption by public passenger transport,0.25284,TJ,CO2,74100.0,kg/TJ,18735.444,kg -a2f8dee5-ff9c-39ca-9c73-9ed6d3c5abfb,SESCO,II.1.1,Córdoba,AR-X,annual,2015,gas oil combustion consumption by public passenger transport,0.25284,TJ,CH4,3.9,kg/TJ,0.9860760000000001,kg -a2f8dee5-ff9c-39ca-9c73-9ed6d3c5abfb,SESCO,II.1.1,Córdoba,AR-X,annual,2015,gas oil combustion consumption by public passenger transport,0.25284,TJ,N2O,3.9,kg/TJ,0.9860760000000001,kg -83603ce7-9f88-3e83-ad2a-7abd7389dfcf,SESCO,II.1.1,Rio Negro,AR-R,annual,2015,gas oil combustion consumption by public passenger transport,1.04748,TJ,CO2,74100.0,kg/TJ,77618.268,kg -b3cdb47e-51ee-3e55-a68f-15c68e5bc468,SESCO,II.1.1,Rio Negro,AR-R,annual,2015,gas oil combustion consumption by public passenger transport,1.04748,TJ,CH4,3.9,kg/TJ,4.085172,kg -b3cdb47e-51ee-3e55-a68f-15c68e5bc468,SESCO,II.1.1,Rio Negro,AR-R,annual,2015,gas oil combustion consumption by public passenger transport,1.04748,TJ,N2O,3.9,kg/TJ,4.085172,kg -1e03caf0-d720-3e35-9bb5-b1240d7df42c,SESCO,II.1.1,Santa Fe,AR-S,annual,2015,gas oil combustion consumption by public passenger transport,0.32508,TJ,CO2,74100.0,kg/TJ,24088.428,kg -bfb25bab-0ca7-3cd4-8471-f064ca1128ff,SESCO,II.1.1,Santa Fe,AR-S,annual,2015,gas oil combustion consumption by public passenger transport,0.32508,TJ,CH4,3.9,kg/TJ,1.267812,kg -bfb25bab-0ca7-3cd4-8471-f064ca1128ff,SESCO,II.1.1,Santa Fe,AR-S,annual,2015,gas oil combustion consumption by public passenger transport,0.32508,TJ,N2O,3.9,kg/TJ,1.267812,kg -02b10c80-f015-39cb-aa5e-0fa5fb8fab17,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2015,gas oil combustion consumption by public passenger transport,0.07224,TJ,CO2,74100.0,kg/TJ,5352.9839999999995,kg -e5567771-8320-33a5-9f80-456ff2ef92f1,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2015,gas oil combustion consumption by public passenger transport,0.07224,TJ,CH4,3.9,kg/TJ,0.281736,kg -e5567771-8320-33a5-9f80-456ff2ef92f1,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2015,gas oil combustion consumption by public passenger transport,0.07224,TJ,N2O,3.9,kg/TJ,0.281736,kg -d81e7146-bedf-3a92-ac37-6962db108bb5,SESCO,II.1.1,Buenos Aires,AR-B,annual,2015,jet kerosene combustion consumption by public passenger transport,6.510770999999999,TJ,CO2,71500.0,kg/TJ,465520.12649999995,kg -88e45efd-212a-37f5-a8d9-834416aad79f,SESCO,II.1.1,Buenos Aires,AR-B,annual,2015,jet kerosene combustion consumption by public passenger transport,6.510770999999999,TJ,CH4,0.5,kg/TJ,3.2553854999999996,kg -f9ccd047-5f9b-309d-96e7-7e6f30e9db2b,SESCO,II.1.1,Buenos Aires,AR-B,annual,2015,jet kerosene combustion consumption by public passenger transport,6.510770999999999,TJ,N2O,2.0,kg/TJ,13.021541999999998,kg -2d0c105b-5f5a-3ee2-8d7d-e9f012406e89,SESCO,II.1.1,Chubut,AR-U,annual,2015,gas oil combustion consumption by freight transport,0.6472704,TJ,CO2,74100.0,kg/TJ,47962.73664,kg -45816fed-1f8d-3b12-b8ec-37cd2bc1c26f,SESCO,II.1.1,Chubut,AR-U,annual,2015,gas oil combustion consumption by freight transport,0.6472704,TJ,CH4,3.9,kg/TJ,2.52435456,kg -45816fed-1f8d-3b12-b8ec-37cd2bc1c26f,SESCO,II.1.1,Chubut,AR-U,annual,2015,gas oil combustion consumption by freight transport,0.6472704,TJ,N2O,3.9,kg/TJ,2.52435456,kg -1340f39a-24dd-3ddf-8d84-d628ad9a534b,SESCO,II.1.1,Chubut,AR-U,annual,2015,gas oil combustion consumption by freight transport,0.72250836,TJ,CO2,74100.0,kg/TJ,53537.869476,kg -a684e5f3-0578-3e8a-b1a3-1cd93ca77531,SESCO,II.1.1,Chubut,AR-U,annual,2015,gas oil combustion consumption by freight transport,0.72250836,TJ,CH4,3.9,kg/TJ,2.8177826039999996,kg -a684e5f3-0578-3e8a-b1a3-1cd93ca77531,SESCO,II.1.1,Chubut,AR-U,annual,2015,gas oil combustion consumption by freight transport,0.72250836,TJ,N2O,3.9,kg/TJ,2.8177826039999996,kg -74749242-9e49-3d76-a7d2-4cfe0bbdf5fe,SESCO,II.5.1,Buenos Aires,AR-B,annual,2015,gas oil combustion consumption by agriculture machines,399.507784788,TJ,CO2,74100.0,kg/TJ,29603526.8527908,kg -13005a9b-289a-3202-8629-45267189378e,SESCO,II.5.1,Buenos Aires,AR-B,annual,2015,gas oil combustion consumption by agriculture machines,399.507784788,TJ,CH4,3.9,kg/TJ,1558.0803606732,kg -13005a9b-289a-3202-8629-45267189378e,SESCO,II.5.1,Buenos Aires,AR-B,annual,2015,gas oil combustion consumption by agriculture machines,399.507784788,TJ,N2O,3.9,kg/TJ,1558.0803606732,kg -577f2d78-7ffd-3e47-a1e3-ffb474aabc96,SESCO,II.5.1,Córdoba,AR-X,annual,2015,gas oil combustion consumption by agriculture machines,557.551115688,TJ,CO2,74100.0,kg/TJ,41314537.6724808,kg -f193c50a-23da-389d-909a-4b3147c7769a,SESCO,II.5.1,Córdoba,AR-X,annual,2015,gas oil combustion consumption by agriculture machines,557.551115688,TJ,CH4,3.9,kg/TJ,2174.4493511831997,kg -f193c50a-23da-389d-909a-4b3147c7769a,SESCO,II.5.1,Córdoba,AR-X,annual,2015,gas oil combustion consumption by agriculture machines,557.551115688,TJ,N2O,3.9,kg/TJ,2174.4493511831997,kg -dc2c7474-d658-3186-a7c9-62a18177c8a2,SESCO,II.5.1,Entre Rios,AR-E,annual,2015,gas oil combustion consumption by agriculture machines,394.85030583599996,TJ,CO2,74100.0,kg/TJ,29258407.662447598,kg -a200201d-67cd-31a2-8c5b-3d7c82d245df,SESCO,II.5.1,Entre Rios,AR-E,annual,2015,gas oil combustion consumption by agriculture machines,394.85030583599996,TJ,CH4,3.9,kg/TJ,1539.9161927603998,kg -a200201d-67cd-31a2-8c5b-3d7c82d245df,SESCO,II.5.1,Entre Rios,AR-E,annual,2015,gas oil combustion consumption by agriculture machines,394.85030583599996,TJ,N2O,3.9,kg/TJ,1539.9161927603998,kg -a970b4cd-b604-30c8-b92f-0a46274a6c9e,SESCO,II.5.1,La Pampa,AR-L,annual,2015,gas oil combustion consumption by agriculture machines,80.77418798400001,TJ,CO2,74100.0,kg/TJ,5985367.329614401,kg -c38d99df-004e-3e22-a109-59bb1c6adc50,SESCO,II.5.1,La Pampa,AR-L,annual,2015,gas oil combustion consumption by agriculture machines,80.77418798400001,TJ,CH4,3.9,kg/TJ,315.01933313760003,kg -c38d99df-004e-3e22-a109-59bb1c6adc50,SESCO,II.5.1,La Pampa,AR-L,annual,2015,gas oil combustion consumption by agriculture machines,80.77418798400001,TJ,N2O,3.9,kg/TJ,315.01933313760003,kg -c51584f8-454c-3943-9831-3cb14ef4a90d,SESCO,II.5.1,Santa Fe,AR-S,annual,2015,gas oil combustion consumption by agriculture machines,1123.565259348,TJ,CO2,74100.0,kg/TJ,83256185.71768679,kg -dd052940-1468-3c29-b893-e4d4f4a658f4,SESCO,II.5.1,Santa Fe,AR-S,annual,2015,gas oil combustion consumption by agriculture machines,1123.565259348,TJ,CH4,3.9,kg/TJ,4381.9045114572,kg -dd052940-1468-3c29-b893-e4d4f4a658f4,SESCO,II.5.1,Santa Fe,AR-S,annual,2015,gas oil combustion consumption by agriculture machines,1123.565259348,TJ,N2O,3.9,kg/TJ,4381.9045114572,kg -fdea2ee8-b4e4-304a-a34d-dad51a959ca1,SESCO,II.5.1,Santiago del Estero,AR-G,annual,2015,gas oil combustion consumption by agriculture machines,55.894713924,TJ,CO2,74100.0,kg/TJ,4141798.3017684002,kg -6bc57544-9cde-3fc5-912b-a29b57e89344,SESCO,II.5.1,Santiago del Estero,AR-G,annual,2015,gas oil combustion consumption by agriculture machines,55.894713924,TJ,CH4,3.9,kg/TJ,217.9893843036,kg -6bc57544-9cde-3fc5-912b-a29b57e89344,SESCO,II.5.1,Santiago del Estero,AR-G,annual,2015,gas oil combustion consumption by agriculture machines,55.894713924,TJ,N2O,3.9,kg/TJ,217.9893843036,kg -d47efe3a-852e-3d99-8486-7be48de8e980,SESCO,II.5.1,Córdoba,AR-X,annual,2015,gas oil combustion consumption by agriculture machines,0.359552928,TJ,CO2,74100.0,kg/TJ,26642.8719648,kg -8f2acbe6-a123-32ae-883b-3761ede56bab,SESCO,II.5.1,Córdoba,AR-X,annual,2015,gas oil combustion consumption by agriculture machines,0.359552928,TJ,CH4,3.9,kg/TJ,1.4022564192,kg -8f2acbe6-a123-32ae-883b-3761ede56bab,SESCO,II.5.1,Córdoba,AR-X,annual,2015,gas oil combustion consumption by agriculture machines,0.359552928,TJ,N2O,3.9,kg/TJ,1.4022564192,kg -7e064799-abf7-3669-8f76-ef5fa861448b,SESCO,II.5.1,Entre Rios,AR-E,annual,2015,gas oil combustion consumption by agriculture machines,1.934106804,TJ,CO2,74100.0,kg/TJ,143317.3141764,kg -a329212e-ab2c-3e60-887a-30d0763d80cc,SESCO,II.5.1,Entre Rios,AR-E,annual,2015,gas oil combustion consumption by agriculture machines,1.934106804,TJ,CH4,3.9,kg/TJ,7.5430165356,kg -a329212e-ab2c-3e60-887a-30d0763d80cc,SESCO,II.5.1,Entre Rios,AR-E,annual,2015,gas oil combustion consumption by agriculture machines,1.934106804,TJ,N2O,3.9,kg/TJ,7.5430165356,kg -ca1a78dc-5be3-30ad-bad6-e0e04f6b4f97,SESCO,II.1.1,Buenos Aires,AR-B,annual,2015,gas oil combustion consumption by to the public,3228.586517856,TJ,CO2,74100.0,kg/TJ,239238260.97312957,kg -9d7d3473-8f64-34a8-a36b-1d242f6f223d,SESCO,II.1.1,Buenos Aires,AR-B,annual,2015,gas oil combustion consumption by to the public,3228.586517856,TJ,CH4,3.9,kg/TJ,12591.487419638399,kg -9d7d3473-8f64-34a8-a36b-1d242f6f223d,SESCO,II.1.1,Buenos Aires,AR-B,annual,2015,gas oil combustion consumption by to the public,3228.586517856,TJ,N2O,3.9,kg/TJ,12591.487419638399,kg -0043f6eb-bf49-3e7f-8a15-04c8883aaf4c,SESCO,II.1.1,Capital Federal,AR-C,annual,2015,gas oil combustion consumption by to the public,285.04399240799995,TJ,CO2,74100.0,kg/TJ,21121759.837432798,kg -f7adba1a-7e86-3427-a8e8-d54b1d904f75,SESCO,II.1.1,Capital Federal,AR-C,annual,2015,gas oil combustion consumption by to the public,285.04399240799995,TJ,CH4,3.9,kg/TJ,1111.6715703911998,kg -f7adba1a-7e86-3427-a8e8-d54b1d904f75,SESCO,II.1.1,Capital Federal,AR-C,annual,2015,gas oil combustion consumption by to the public,285.04399240799995,TJ,N2O,3.9,kg/TJ,1111.6715703911998,kg -4a522037-3c83-3a55-aef5-edb1b694664d,SESCO,II.1.1,Catamarca,AR-K,annual,2015,gas oil combustion consumption by to the public,112.382496576,TJ,CO2,74100.0,kg/TJ,8327542.9962816,kg -5aec50f6-324f-3586-9fe9-31e0384a0d16,SESCO,II.1.1,Catamarca,AR-K,annual,2015,gas oil combustion consumption by to the public,112.382496576,TJ,CH4,3.9,kg/TJ,438.29173664639995,kg -5aec50f6-324f-3586-9fe9-31e0384a0d16,SESCO,II.1.1,Catamarca,AR-K,annual,2015,gas oil combustion consumption by to the public,112.382496576,TJ,N2O,3.9,kg/TJ,438.29173664639995,kg -a4a6a464-142c-3d61-b51e-132a74c0717f,SESCO,II.1.1,Chaco,AR-H,annual,2015,gas oil combustion consumption by to the public,580.758161508,TJ,CO2,74100.0,kg/TJ,43034179.7677428,kg -81a4c76c-6c48-35d6-b3f3-233d191964c2,SESCO,II.1.1,Chaco,AR-H,annual,2015,gas oil combustion consumption by to the public,580.758161508,TJ,CH4,3.9,kg/TJ,2264.9568298811996,kg -81a4c76c-6c48-35d6-b3f3-233d191964c2,SESCO,II.1.1,Chaco,AR-H,annual,2015,gas oil combustion consumption by to the public,580.758161508,TJ,N2O,3.9,kg/TJ,2264.9568298811996,kg -dc93fb4d-d766-39cd-a430-326e974df633,SESCO,II.1.1,Corrientes,AR-W,annual,2015,gas oil combustion consumption by to the public,611.036683404,TJ,CO2,74100.0,kg/TJ,45277818.2402364,kg -d33540a0-edf7-3518-b129-8be9193eb3af,SESCO,II.1.1,Corrientes,AR-W,annual,2015,gas oil combustion consumption by to the public,611.036683404,TJ,CH4,3.9,kg/TJ,2383.0430652756,kg -d33540a0-edf7-3518-b129-8be9193eb3af,SESCO,II.1.1,Corrientes,AR-W,annual,2015,gas oil combustion consumption by to the public,611.036683404,TJ,N2O,3.9,kg/TJ,2383.0430652756,kg -09d443cd-96ba-3a4f-adeb-97f550926c76,SESCO,II.1.1,Córdoba,AR-X,annual,2015,gas oil combustion consumption by to the public,2147.435233524,TJ,CO2,74100.0,kg/TJ,159124950.8041284,kg -533fb501-716c-3457-b516-96a940523fe0,SESCO,II.1.1,Córdoba,AR-X,annual,2015,gas oil combustion consumption by to the public,2147.435233524,TJ,CH4,3.9,kg/TJ,8374.9974107436,kg -533fb501-716c-3457-b516-96a940523fe0,SESCO,II.1.1,Córdoba,AR-X,annual,2015,gas oil combustion consumption by to the public,2147.435233524,TJ,N2O,3.9,kg/TJ,8374.9974107436,kg -ebbadb54-f1f2-39c4-a483-23e07db22d21,SESCO,II.1.1,Entre Rios,AR-E,annual,2015,gas oil combustion consumption by to the public,1017.465984864,TJ,CO2,74100.0,kg/TJ,75394229.4784224,kg -302f4268-23d5-378b-9546-baa62a84393e,SESCO,II.1.1,Entre Rios,AR-E,annual,2015,gas oil combustion consumption by to the public,1017.465984864,TJ,CH4,3.9,kg/TJ,3968.1173409696,kg -302f4268-23d5-378b-9546-baa62a84393e,SESCO,II.1.1,Entre Rios,AR-E,annual,2015,gas oil combustion consumption by to the public,1017.465984864,TJ,N2O,3.9,kg/TJ,3968.1173409696,kg -d55f70f7-255a-3cdd-bd63-f4b093b37f55,SESCO,II.1.1,Jujuy,AR-Y,annual,2015,gas oil combustion consumption by to the public,52.243397304,TJ,CO2,74100.0,kg/TJ,3871235.7402264,kg -0b214163-b88c-3d0f-9257-62e6aa7a8e3d,SESCO,II.1.1,Jujuy,AR-Y,annual,2015,gas oil combustion consumption by to the public,52.243397304,TJ,CH4,3.9,kg/TJ,203.7492494856,kg -0b214163-b88c-3d0f-9257-62e6aa7a8e3d,SESCO,II.1.1,Jujuy,AR-Y,annual,2015,gas oil combustion consumption by to the public,52.243397304,TJ,N2O,3.9,kg/TJ,203.7492494856,kg -68250acb-af67-3aec-aad0-426ef979277e,SESCO,II.1.1,La Pampa,AR-L,annual,2015,gas oil combustion consumption by to the public,71.739958332,TJ,CO2,74100.0,kg/TJ,5315930.9124012,kg -f8df539c-0bfc-3bd4-955e-4738aa5ed2fb,SESCO,II.1.1,La Pampa,AR-L,annual,2015,gas oil combustion consumption by to the public,71.739958332,TJ,CH4,3.9,kg/TJ,279.7858374948,kg -f8df539c-0bfc-3bd4-955e-4738aa5ed2fb,SESCO,II.1.1,La Pampa,AR-L,annual,2015,gas oil combustion consumption by to the public,71.739958332,TJ,N2O,3.9,kg/TJ,279.7858374948,kg -045633f5-9f25-3ea8-b289-b9aa4112eb0d,SESCO,II.1.1,La Rioja,AR-F,annual,2015,gas oil combustion consumption by to the public,60.509636291999996,TJ,CO2,74100.0,kg/TJ,4483764.0492372,kg -5d80e713-5d49-3ba1-a771-9d9be9303ddb,SESCO,II.1.1,La Rioja,AR-F,annual,2015,gas oil combustion consumption by to the public,60.509636291999996,TJ,CH4,3.9,kg/TJ,235.9875815388,kg -5d80e713-5d49-3ba1-a771-9d9be9303ddb,SESCO,II.1.1,La Rioja,AR-F,annual,2015,gas oil combustion consumption by to the public,60.509636291999996,TJ,N2O,3.9,kg/TJ,235.9875815388,kg -203f8a90-aa2f-3140-92d8-1c3212c9b0e8,SESCO,II.1.1,Mendoza,AR-M,annual,2015,gas oil combustion consumption by to the public,457.94176722000003,TJ,CO2,74100.0,kg/TJ,33933484.951002,kg -8876d08f-b1a2-39c1-af13-f1617555f9a9,SESCO,II.1.1,Mendoza,AR-M,annual,2015,gas oil combustion consumption by to the public,457.94176722000003,TJ,CH4,3.9,kg/TJ,1785.9728921580001,kg -8876d08f-b1a2-39c1-af13-f1617555f9a9,SESCO,II.1.1,Mendoza,AR-M,annual,2015,gas oil combustion consumption by to the public,457.94176722000003,TJ,N2O,3.9,kg/TJ,1785.9728921580001,kg -b3b960f6-872b-3b4e-8729-2f0ccbaef4df,SESCO,II.1.1,Misiones,AR-N,annual,2015,gas oil combustion consumption by to the public,346.560206412,TJ,CO2,74100.0,kg/TJ,25680111.295129202,kg -db3d2072-5bca-3140-9de0-bf47bd59f3df,SESCO,II.1.1,Misiones,AR-N,annual,2015,gas oil combustion consumption by to the public,346.560206412,TJ,CH4,3.9,kg/TJ,1351.5848050068,kg -db3d2072-5bca-3140-9de0-bf47bd59f3df,SESCO,II.1.1,Misiones,AR-N,annual,2015,gas oil combustion consumption by to the public,346.560206412,TJ,N2O,3.9,kg/TJ,1351.5848050068,kg -2abdc503-d8b2-307f-9182-c3bb932d98a6,SESCO,II.1.1,Salta,AR-A,annual,2015,gas oil combustion consumption by to the public,39.847995768,TJ,CO2,74100.0,kg/TJ,2952736.4864088,kg -d5f5755e-3275-3eb9-ae10-ca5b75d5033d,SESCO,II.1.1,Salta,AR-A,annual,2015,gas oil combustion consumption by to the public,39.847995768,TJ,CH4,3.9,kg/TJ,155.40718349519997,kg -d5f5755e-3275-3eb9-ae10-ca5b75d5033d,SESCO,II.1.1,Salta,AR-A,annual,2015,gas oil combustion consumption by to the public,39.847995768,TJ,N2O,3.9,kg/TJ,155.40718349519997,kg -496f8e67-1ee1-3d39-9934-7efeeb3f6037,SESCO,II.1.1,San Juan,AR-J,annual,2015,gas oil combustion consumption by to the public,409.77115998,TJ,CO2,74100.0,kg/TJ,30364042.954517998,kg -9e866a60-06a2-3d0c-9bfa-30c124f05d87,SESCO,II.1.1,San Juan,AR-J,annual,2015,gas oil combustion consumption by to the public,409.77115998,TJ,CH4,3.9,kg/TJ,1598.107523922,kg -9e866a60-06a2-3d0c-9bfa-30c124f05d87,SESCO,II.1.1,San Juan,AR-J,annual,2015,gas oil combustion consumption by to the public,409.77115998,TJ,N2O,3.9,kg/TJ,1598.107523922,kg -620e35ba-a7d5-3489-b8b1-234f9ffe5033,SESCO,II.1.1,San Luis,AR-D,annual,2015,gas oil combustion consumption by to the public,218.78415686399998,TJ,CO2,74100.0,kg/TJ,16211906.0236224,kg -0ae7f75a-90a7-3b25-8b11-189d84ad974a,SESCO,II.1.1,San Luis,AR-D,annual,2015,gas oil combustion consumption by to the public,218.78415686399998,TJ,CH4,3.9,kg/TJ,853.2582117695999,kg -0ae7f75a-90a7-3b25-8b11-189d84ad974a,SESCO,II.1.1,San Luis,AR-D,annual,2015,gas oil combustion consumption by to the public,218.78415686399998,TJ,N2O,3.9,kg/TJ,853.2582117695999,kg -b1912d28-61aa-302a-ab77-bf715017bed2,SESCO,II.1.1,Santa Fe,AR-S,annual,2015,gas oil combustion consumption by to the public,3356.7315223680002,TJ,CO2,74100.0,kg/TJ,248733805.80746883,kg -89215625-4b8c-3218-a7f0-9735cd1b7b54,SESCO,II.1.1,Santa Fe,AR-S,annual,2015,gas oil combustion consumption by to the public,3356.7315223680002,TJ,CH4,3.9,kg/TJ,13091.2529372352,kg -89215625-4b8c-3218-a7f0-9735cd1b7b54,SESCO,II.1.1,Santa Fe,AR-S,annual,2015,gas oil combustion consumption by to the public,3356.7315223680002,TJ,N2O,3.9,kg/TJ,13091.2529372352,kg -3afaa55f-da3c-3506-ad8e-fc5e86b1ab7a,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2015,gas oil combustion consumption by to the public,133.644682668,TJ,CO2,74100.0,kg/TJ,9903070.9856988,kg -cf3f07fe-42a5-322a-9fef-208a16220309,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2015,gas oil combustion consumption by to the public,133.644682668,TJ,CH4,3.9,kg/TJ,521.2142624052,kg -cf3f07fe-42a5-322a-9fef-208a16220309,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2015,gas oil combustion consumption by to the public,133.644682668,TJ,N2O,3.9,kg/TJ,521.2142624052,kg -eb72d1b9-031a-3e9a-9548-92b59f6db25f,SESCO,II.1.1,Tucuman,AR-T,annual,2015,gas oil combustion consumption by to the public,682.44867936,TJ,CO2,74100.0,kg/TJ,50569447.140576005,kg -97a26bd3-abc8-3866-925d-cca28541d80a,SESCO,II.1.1,Tucuman,AR-T,annual,2015,gas oil combustion consumption by to the public,682.44867936,TJ,CH4,3.9,kg/TJ,2661.549849504,kg -97a26bd3-abc8-3866-925d-cca28541d80a,SESCO,II.1.1,Tucuman,AR-T,annual,2015,gas oil combustion consumption by to the public,682.44867936,TJ,N2O,3.9,kg/TJ,2661.549849504,kg -21f6d005-666b-31c2-8855-bd9280601c11,SESCO,II.1.1,Buenos Aires,AR-B,annual,2015,gas oil combustion consumption by to the public,300.511620276,TJ,CO2,74100.0,kg/TJ,22267911.062451597,kg -9da80c15-b76e-3c31-b1bc-943457c12397,SESCO,II.1.1,Buenos Aires,AR-B,annual,2015,gas oil combustion consumption by to the public,300.511620276,TJ,CH4,3.9,kg/TJ,1171.9953190764,kg -9da80c15-b76e-3c31-b1bc-943457c12397,SESCO,II.1.1,Buenos Aires,AR-B,annual,2015,gas oil combustion consumption by to the public,300.511620276,TJ,N2O,3.9,kg/TJ,1171.9953190764,kg -7dbf6c74-c9c8-3d11-95c9-7de03491750b,SESCO,II.1.1,Capital Federal,AR-C,annual,2015,gas oil combustion consumption by to the public,14.166451824,TJ,CO2,74100.0,kg/TJ,1049734.0801584,kg -7d67f5b3-6cbd-328c-b78c-63144956338c,SESCO,II.1.1,Capital Federal,AR-C,annual,2015,gas oil combustion consumption by to the public,14.166451824,TJ,CH4,3.9,kg/TJ,55.24916211359999,kg -7d67f5b3-6cbd-328c-b78c-63144956338c,SESCO,II.1.1,Capital Federal,AR-C,annual,2015,gas oil combustion consumption by to the public,14.166451824,TJ,N2O,3.9,kg/TJ,55.24916211359999,kg -02573bcf-3f25-353f-9b64-67864ffd7daa,SESCO,II.1.1,Catamarca,AR-K,annual,2015,gas oil combustion consumption by to the public,18.953251211999998,TJ,CO2,74100.0,kg/TJ,1404435.9148091997,kg -42d974d1-1718-35df-8bc0-2ee758730fbd,SESCO,II.1.1,Catamarca,AR-K,annual,2015,gas oil combustion consumption by to the public,18.953251211999998,TJ,CH4,3.9,kg/TJ,73.91767972679999,kg -42d974d1-1718-35df-8bc0-2ee758730fbd,SESCO,II.1.1,Catamarca,AR-K,annual,2015,gas oil combustion consumption by to the public,18.953251211999998,TJ,N2O,3.9,kg/TJ,73.91767972679999,kg -6b23dcbc-a3ea-3950-b887-20fbf3e236f6,SESCO,II.1.1,Chaco,AR-H,annual,2015,gas oil combustion consumption by to the public,26.833446864,TJ,CO2,74100.0,kg/TJ,1988358.4126223999,kg -e643b4fb-2bb2-31e3-942f-c0c23b420836,SESCO,II.1.1,Chaco,AR-H,annual,2015,gas oil combustion consumption by to the public,26.833446864,TJ,CH4,3.9,kg/TJ,104.65044276959999,kg -e643b4fb-2bb2-31e3-942f-c0c23b420836,SESCO,II.1.1,Chaco,AR-H,annual,2015,gas oil combustion consumption by to the public,26.833446864,TJ,N2O,3.9,kg/TJ,104.65044276959999,kg -c6d337ac-9986-3f03-b911-3b3ec32109f0,SESCO,II.1.1,Corrientes,AR-W,annual,2015,gas oil combustion consumption by to the public,79.54776228,TJ,CO2,74100.0,kg/TJ,5894489.184948,kg -5f4235fe-b250-3e37-9bdc-c6eb4fd1a653,SESCO,II.1.1,Corrientes,AR-W,annual,2015,gas oil combustion consumption by to the public,79.54776228,TJ,CH4,3.9,kg/TJ,310.236272892,kg -5f4235fe-b250-3e37-9bdc-c6eb4fd1a653,SESCO,II.1.1,Corrientes,AR-W,annual,2015,gas oil combustion consumption by to the public,79.54776228,TJ,N2O,3.9,kg/TJ,310.236272892,kg -1fdc559b-0293-3ed6-a9f2-cc46f97f7bb9,SESCO,II.1.1,Córdoba,AR-X,annual,2015,gas oil combustion consumption by to the public,164.17806367199998,TJ,CO2,74100.0,kg/TJ,12165594.518095199,kg -a32d4180-2ab0-300d-830e-d153b7ee1415,SESCO,II.1.1,Córdoba,AR-X,annual,2015,gas oil combustion consumption by to the public,164.17806367199998,TJ,CH4,3.9,kg/TJ,640.2944483207999,kg -a32d4180-2ab0-300d-830e-d153b7ee1415,SESCO,II.1.1,Córdoba,AR-X,annual,2015,gas oil combustion consumption by to the public,164.17806367199998,TJ,N2O,3.9,kg/TJ,640.2944483207999,kg -03d0da12-7ee3-3c68-963e-7a05f4995e22,SESCO,II.1.1,Entre Rios,AR-E,annual,2015,gas oil combustion consumption by to the public,115.239028716,TJ,CO2,74100.0,kg/TJ,8539212.027855601,kg -328a661e-54de-398c-8f4a-842a20d0defe,SESCO,II.1.1,Entre Rios,AR-E,annual,2015,gas oil combustion consumption by to the public,115.239028716,TJ,CH4,3.9,kg/TJ,449.4322119924,kg -328a661e-54de-398c-8f4a-842a20d0defe,SESCO,II.1.1,Entre Rios,AR-E,annual,2015,gas oil combustion consumption by to the public,115.239028716,TJ,N2O,3.9,kg/TJ,449.4322119924,kg -93ea0298-2b87-3ab3-b62f-aa9cb9c44230,SESCO,II.1.1,La Pampa,AR-L,annual,2015,gas oil combustion consumption by to the public,2.1876294720000002,TJ,CO2,74100.0,kg/TJ,162103.34387520002,kg -4a2e9e27-853b-3bb2-9a0a-797bf3b56b7f,SESCO,II.1.1,La Pampa,AR-L,annual,2015,gas oil combustion consumption by to the public,2.1876294720000002,TJ,CH4,3.9,kg/TJ,8.5317549408,kg -4a2e9e27-853b-3bb2-9a0a-797bf3b56b7f,SESCO,II.1.1,La Pampa,AR-L,annual,2015,gas oil combustion consumption by to the public,2.1876294720000002,TJ,N2O,3.9,kg/TJ,8.5317549408,kg -c96c4e1e-8b61-3143-ae0d-f67e6f29f27d,SESCO,II.1.1,La Rioja,AR-F,annual,2015,gas oil combustion consumption by to the public,5.9217295199999995,TJ,CO2,74100.0,kg/TJ,438800.157432,kg -56d90437-eba6-31d8-a038-39c7e9b2c925,SESCO,II.1.1,La Rioja,AR-F,annual,2015,gas oil combustion consumption by to the public,5.9217295199999995,TJ,CH4,3.9,kg/TJ,23.094745127999996,kg -56d90437-eba6-31d8-a038-39c7e9b2c925,SESCO,II.1.1,La Rioja,AR-F,annual,2015,gas oil combustion consumption by to the public,5.9217295199999995,TJ,N2O,3.9,kg/TJ,23.094745127999996,kg -1d5f8413-84d8-3175-833f-aa38b73c7c51,SESCO,II.1.1,Mendoza,AR-M,annual,2015,gas oil combustion consumption by to the public,52.016567316,TJ,CO2,74100.0,kg/TJ,3854427.6381155998,kg -38e95ade-6cd7-3798-9957-f143473d77a3,SESCO,II.1.1,Mendoza,AR-M,annual,2015,gas oil combustion consumption by to the public,52.016567316,TJ,CH4,3.9,kg/TJ,202.8646125324,kg -38e95ade-6cd7-3798-9957-f143473d77a3,SESCO,II.1.1,Mendoza,AR-M,annual,2015,gas oil combustion consumption by to the public,52.016567316,TJ,N2O,3.9,kg/TJ,202.8646125324,kg -aa25a2da-d194-3b46-866d-34405cc3e5c2,SESCO,II.1.1,Misiones,AR-N,annual,2015,gas oil combustion consumption by to the public,41.553365448,TJ,CO2,74100.0,kg/TJ,3079104.3796968,kg -cd3a362a-2d8f-34d7-af48-c4e012fffa13,SESCO,II.1.1,Misiones,AR-N,annual,2015,gas oil combustion consumption by to the public,41.553365448,TJ,CH4,3.9,kg/TJ,162.0581252472,kg -cd3a362a-2d8f-34d7-af48-c4e012fffa13,SESCO,II.1.1,Misiones,AR-N,annual,2015,gas oil combustion consumption by to the public,41.553365448,TJ,N2O,3.9,kg/TJ,162.0581252472,kg -25828090-9bfb-3f59-a6b1-67596d58286f,SESCO,II.1.1,Salta,AR-A,annual,2015,gas oil combustion consumption by to the public,6.448207415999999,TJ,CO2,74100.0,kg/TJ,477812.1695255999,kg -631751a6-ee57-3615-89a1-5ec39d68bd07,SESCO,II.1.1,Salta,AR-A,annual,2015,gas oil combustion consumption by to the public,6.448207415999999,TJ,CH4,3.9,kg/TJ,25.148008922399995,kg -631751a6-ee57-3615-89a1-5ec39d68bd07,SESCO,II.1.1,Salta,AR-A,annual,2015,gas oil combustion consumption by to the public,6.448207415999999,TJ,N2O,3.9,kg/TJ,25.148008922399995,kg -0eccfc4e-e157-37db-8629-79f65ef43412,SESCO,II.1.1,San Juan,AR-J,annual,2015,gas oil combustion consumption by to the public,8.651466012,TJ,CO2,74100.0,kg/TJ,641073.6314892,kg -f283eb40-5579-3318-af90-dd7fc4487d0f,SESCO,II.1.1,San Juan,AR-J,annual,2015,gas oil combustion consumption by to the public,8.651466012,TJ,CH4,3.9,kg/TJ,33.7407174468,kg -f283eb40-5579-3318-af90-dd7fc4487d0f,SESCO,II.1.1,San Juan,AR-J,annual,2015,gas oil combustion consumption by to the public,8.651466012,TJ,N2O,3.9,kg/TJ,33.7407174468,kg -f91c221c-9ee0-370d-95fb-20c878deb1f0,SESCO,II.1.1,San Luis,AR-D,annual,2015,gas oil combustion consumption by to the public,45.766925988,TJ,CO2,74100.0,kg/TJ,3391329.2157107997,kg -cf59f3a8-3bde-3fef-8c53-ae657b613c57,SESCO,II.1.1,San Luis,AR-D,annual,2015,gas oil combustion consumption by to the public,45.766925988,TJ,CH4,3.9,kg/TJ,178.49101135319998,kg -cf59f3a8-3bde-3fef-8c53-ae657b613c57,SESCO,II.1.1,San Luis,AR-D,annual,2015,gas oil combustion consumption by to the public,45.766925988,TJ,N2O,3.9,kg/TJ,178.49101135319998,kg -a1fb6743-7e5f-3b1a-a7ad-faf4b4b5b871,SESCO,II.1.1,Santa Fe,AR-S,annual,2015,gas oil combustion consumption by to the public,381.69819029999996,TJ,CO2,74100.0,kg/TJ,28283835.901229996,kg -e2632ba7-19fa-3b92-aacf-2649924ecd0b,SESCO,II.1.1,Santa Fe,AR-S,annual,2015,gas oil combustion consumption by to the public,381.69819029999996,TJ,CH4,3.9,kg/TJ,1488.6229421699998,kg -e2632ba7-19fa-3b92-aacf-2649924ecd0b,SESCO,II.1.1,Santa Fe,AR-S,annual,2015,gas oil combustion consumption by to the public,381.69819029999996,TJ,N2O,3.9,kg/TJ,1488.6229421699998,kg -4e4e79ce-f997-3802-812b-6c569116ecc5,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2015,gas oil combustion consumption by to the public,14.310892092,TJ,CO2,74100.0,kg/TJ,1060437.1040172,kg -0547e15b-69f7-3712-b9d2-cd33643bcbba,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2015,gas oil combustion consumption by to the public,14.310892092,TJ,CH4,3.9,kg/TJ,55.812479158799995,kg -0547e15b-69f7-3712-b9d2-cd33643bcbba,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2015,gas oil combustion consumption by to the public,14.310892092,TJ,N2O,3.9,kg/TJ,55.812479158799995,kg -f522e06d-11c1-377d-81ab-f75dc3ce320c,SESCO,II.1.1,Tucuman,AR-T,annual,2015,gas oil combustion consumption by to the public,43.271958659999996,TJ,CO2,74100.0,kg/TJ,3206452.1367059997,kg -445d3f7d-ec11-35ff-b927-421bdbae6319,SESCO,II.1.1,Tucuman,AR-T,annual,2015,gas oil combustion consumption by to the public,43.271958659999996,TJ,CH4,3.9,kg/TJ,168.76063877399997,kg -445d3f7d-ec11-35ff-b927-421bdbae6319,SESCO,II.1.1,Tucuman,AR-T,annual,2015,gas oil combustion consumption by to the public,43.271958659999996,TJ,N2O,3.9,kg/TJ,168.76063877399997,kg -637c58b1-17ac-3f02-ad37-f95ed0f9863d,SESCO,II.1.1,Buenos Aires,AR-B,annual,2015,gas oil combustion consumption by public passenger transport,276.226807836,TJ,CO2,74100.0,kg/TJ,20468406.460647598,kg -340b68b7-42fe-3cda-88b9-49cfae50ac8c,SESCO,II.1.1,Buenos Aires,AR-B,annual,2015,gas oil combustion consumption by public passenger transport,276.226807836,TJ,CH4,3.9,kg/TJ,1077.2845505603998,kg -340b68b7-42fe-3cda-88b9-49cfae50ac8c,SESCO,II.1.1,Buenos Aires,AR-B,annual,2015,gas oil combustion consumption by public passenger transport,276.226807836,TJ,N2O,3.9,kg/TJ,1077.2845505603998,kg -efcb4789-e066-3955-aeb9-026d295d21fb,SESCO,II.1.1,Chaco,AR-H,annual,2015,gas oil combustion consumption by public passenger transport,10.009765836000001,TJ,CO2,74100.0,kg/TJ,741723.6484476001,kg -d98a15b5-f3c9-3e1e-b07d-562af549e470,SESCO,II.1.1,Chaco,AR-H,annual,2015,gas oil combustion consumption by public passenger transport,10.009765836000001,TJ,CH4,3.9,kg/TJ,39.038086760400006,kg -d98a15b5-f3c9-3e1e-b07d-562af549e470,SESCO,II.1.1,Chaco,AR-H,annual,2015,gas oil combustion consumption by public passenger transport,10.009765836000001,TJ,N2O,3.9,kg/TJ,39.038086760400006,kg -eae98625-df56-3345-8efd-d3bf4a1201f0,SESCO,II.1.1,Corrientes,AR-W,annual,2015,gas oil combustion consumption by public passenger transport,38.07293616,TJ,CO2,74100.0,kg/TJ,2821204.569456,kg -1ebb69e6-8179-3d98-8de5-6e02810e0879,SESCO,II.1.1,Corrientes,AR-W,annual,2015,gas oil combustion consumption by public passenger transport,38.07293616,TJ,CH4,3.9,kg/TJ,148.48445102399998,kg -1ebb69e6-8179-3d98-8de5-6e02810e0879,SESCO,II.1.1,Corrientes,AR-W,annual,2015,gas oil combustion consumption by public passenger transport,38.07293616,TJ,N2O,3.9,kg/TJ,148.48445102399998,kg -ac7422e5-e092-37b4-9f1c-0ae497b0ad45,SESCO,II.1.1,Córdoba,AR-X,annual,2015,gas oil combustion consumption by public passenger transport,335.997905712,TJ,CO2,74100.0,kg/TJ,24897444.8132592,kg -801019af-1457-3dcc-8712-132e16637720,SESCO,II.1.1,Córdoba,AR-X,annual,2015,gas oil combustion consumption by public passenger transport,335.997905712,TJ,CH4,3.9,kg/TJ,1310.3918322768,kg -801019af-1457-3dcc-8712-132e16637720,SESCO,II.1.1,Córdoba,AR-X,annual,2015,gas oil combustion consumption by public passenger transport,335.997905712,TJ,N2O,3.9,kg/TJ,1310.3918322768,kg -a6c8d22b-1919-33fc-95ee-070707af813a,SESCO,II.1.1,Entre Rios,AR-E,annual,2015,gas oil combustion consumption by public passenger transport,95.89006845600001,TJ,CO2,74100.0,kg/TJ,7105454.0725896,kg -ca6a1256-0ca8-3d18-8682-f5429a8a6d24,SESCO,II.1.1,Entre Rios,AR-E,annual,2015,gas oil combustion consumption by public passenger transport,95.89006845600001,TJ,CH4,3.9,kg/TJ,373.9712669784,kg -ca6a1256-0ca8-3d18-8682-f5429a8a6d24,SESCO,II.1.1,Entre Rios,AR-E,annual,2015,gas oil combustion consumption by public passenger transport,95.89006845600001,TJ,N2O,3.9,kg/TJ,373.9712669784,kg -43a7c1bf-edf6-3b46-86b5-e8e1e8ae50ae,SESCO,II.1.1,Jujuy,AR-Y,annual,2015,gas oil combustion consumption by public passenger transport,105.053224836,TJ,CO2,74100.0,kg/TJ,7784443.9603476,kg -be470e93-1aba-3b1c-aba4-f57fa7555d96,SESCO,II.1.1,Jujuy,AR-Y,annual,2015,gas oil combustion consumption by public passenger transport,105.053224836,TJ,CH4,3.9,kg/TJ,409.70757686039997,kg -be470e93-1aba-3b1c-aba4-f57fa7555d96,SESCO,II.1.1,Jujuy,AR-Y,annual,2015,gas oil combustion consumption by public passenger transport,105.053224836,TJ,N2O,3.9,kg/TJ,409.70757686039997,kg -7d59b0cb-7f2e-3269-8475-88735b7292ab,SESCO,II.1.1,Salta,AR-A,annual,2015,gas oil combustion consumption by public passenger transport,90.21431613600001,TJ,CO2,74100.0,kg/TJ,6684880.825677601,kg -6bed3032-9208-382c-869c-ec7528dde87f,SESCO,II.1.1,Salta,AR-A,annual,2015,gas oil combustion consumption by public passenger transport,90.21431613600001,TJ,CH4,3.9,kg/TJ,351.83583293040004,kg -6bed3032-9208-382c-869c-ec7528dde87f,SESCO,II.1.1,Salta,AR-A,annual,2015,gas oil combustion consumption by public passenger transport,90.21431613600001,TJ,N2O,3.9,kg/TJ,351.83583293040004,kg -325393fa-71a2-3c68-894e-9b5da95d4b3f,SESCO,II.1.1,Santa Fe,AR-S,annual,2015,gas oil combustion consumption by public passenger transport,306.389406204,TJ,CO2,74100.0,kg/TJ,22703454.9997164,kg -0cff952c-72a1-35ce-8675-c78d1a5afe79,SESCO,II.1.1,Santa Fe,AR-S,annual,2015,gas oil combustion consumption by public passenger transport,306.389406204,TJ,CH4,3.9,kg/TJ,1194.9186841956,kg -0cff952c-72a1-35ce-8675-c78d1a5afe79,SESCO,II.1.1,Santa Fe,AR-S,annual,2015,gas oil combustion consumption by public passenger transport,306.389406204,TJ,N2O,3.9,kg/TJ,1194.9186841956,kg -ccccb12a-e5d0-38ef-ba6b-7398db024db2,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2015,gas oil combustion consumption by public passenger transport,126.25103064,TJ,CO2,74100.0,kg/TJ,9355201.370424,kg -922de990-575a-3d3d-aed1-a203e1c2a995,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2015,gas oil combustion consumption by public passenger transport,126.25103064,TJ,CH4,3.9,kg/TJ,492.37901949599996,kg -922de990-575a-3d3d-aed1-a203e1c2a995,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2015,gas oil combustion consumption by public passenger transport,126.25103064,TJ,N2O,3.9,kg/TJ,492.37901949599996,kg -a2d30a25-b5b3-321c-8886-8c37b9111404,SESCO,II.1.1,Tucuman,AR-T,annual,2015,gas oil combustion consumption by public passenger transport,29.206642836,TJ,CO2,74100.0,kg/TJ,2164212.2341476,kg -24f75ce5-fb4b-357d-8c82-583dedf08a9b,SESCO,II.1.1,Tucuman,AR-T,annual,2015,gas oil combustion consumption by public passenger transport,29.206642836,TJ,CH4,3.9,kg/TJ,113.9059070604,kg -24f75ce5-fb4b-357d-8c82-583dedf08a9b,SESCO,II.1.1,Tucuman,AR-T,annual,2015,gas oil combustion consumption by public passenger transport,29.206642836,TJ,N2O,3.9,kg/TJ,113.9059070604,kg -74e43219-a8fa-3906-ab84-b73be40422e9,SESCO,II.1.1,Córdoba,AR-X,annual,2015,gas oil combustion consumption by public passenger transport,0.7917937439999999,TJ,CO2,74100.0,kg/TJ,58671.91643039999,kg -e477a4b6-d356-3057-982b-6646661ef1ff,SESCO,II.1.1,Córdoba,AR-X,annual,2015,gas oil combustion consumption by public passenger transport,0.7917937439999999,TJ,CH4,3.9,kg/TJ,3.0879956015999994,kg -e477a4b6-d356-3057-982b-6646661ef1ff,SESCO,II.1.1,Córdoba,AR-X,annual,2015,gas oil combustion consumption by public passenger transport,0.7917937439999999,TJ,N2O,3.9,kg/TJ,3.0879956015999994,kg -bcc34d8e-0073-3ef1-a981-5686e9ca4de3,SESCO,II.5.1,Buenos Aires,AR-B,annual,2015,gas oil combustion consumption by agriculture machines,519.48419712,TJ,CO2,74100.0,kg/TJ,38493779.006592,kg -e7737653-77c1-34ff-87f1-38a2009fd908,SESCO,II.5.1,Buenos Aires,AR-B,annual,2015,gas oil combustion consumption by agriculture machines,519.48419712,TJ,CH4,3.9,kg/TJ,2025.9883687679999,kg -e7737653-77c1-34ff-87f1-38a2009fd908,SESCO,II.5.1,Buenos Aires,AR-B,annual,2015,gas oil combustion consumption by agriculture machines,519.48419712,TJ,N2O,3.9,kg/TJ,2025.9883687679999,kg -b562d65d-10a0-3d3a-b270-1514020891a2,SESCO,II.5.1,Córdoba,AR-X,annual,2015,gas oil combustion consumption by agriculture machines,78.08840592,TJ,CO2,74100.0,kg/TJ,5786350.878672,kg -879a0791-1bb7-320d-b0a4-3c4ae94ea3ba,SESCO,II.5.1,Córdoba,AR-X,annual,2015,gas oil combustion consumption by agriculture machines,78.08840592,TJ,CH4,3.9,kg/TJ,304.544783088,kg -879a0791-1bb7-320d-b0a4-3c4ae94ea3ba,SESCO,II.5.1,Córdoba,AR-X,annual,2015,gas oil combustion consumption by agriculture machines,78.08840592,TJ,N2O,3.9,kg/TJ,304.544783088,kg -2d5c5f1f-f127-3bd5-9647-68fc09fa027a,SESCO,II.5.1,La Pampa,AR-L,annual,2015,gas oil combustion consumption by agriculture machines,3.61730964,TJ,CO2,74100.0,kg/TJ,268042.644324,kg -f1e52adb-6a98-3550-94aa-fbc1c6a46dde,SESCO,II.5.1,La Pampa,AR-L,annual,2015,gas oil combustion consumption by agriculture machines,3.61730964,TJ,CH4,3.9,kg/TJ,14.107507596000001,kg -f1e52adb-6a98-3550-94aa-fbc1c6a46dde,SESCO,II.5.1,La Pampa,AR-L,annual,2015,gas oil combustion consumption by agriculture machines,3.61730964,TJ,N2O,3.9,kg/TJ,14.107507596000001,kg -ebde6a9f-73fb-3cca-aa7d-beaed16e4072,SESCO,II.5.1,Neuquén,AR-Q,annual,2015,gas oil combustion consumption by agriculture machines,50.72526648,TJ,CO2,74100.0,kg/TJ,3758742.246168,kg -03c3a84c-df6e-3b6f-a334-c09bae00daec,SESCO,II.5.1,Neuquén,AR-Q,annual,2015,gas oil combustion consumption by agriculture machines,50.72526648,TJ,CH4,3.9,kg/TJ,197.828539272,kg -03c3a84c-df6e-3b6f-a334-c09bae00daec,SESCO,II.5.1,Neuquén,AR-Q,annual,2015,gas oil combustion consumption by agriculture machines,50.72526648,TJ,N2O,3.9,kg/TJ,197.828539272,kg -d89fbdfb-0246-3fa2-ac52-93f58892575f,SESCO,II.5.1,Rio Negro,AR-R,annual,2015,gas oil combustion consumption by agriculture machines,4.19718012,TJ,CO2,74100.0,kg/TJ,311011.04689199995,kg -639e7d05-e8f1-32ae-912f-279ca3cd464f,SESCO,II.5.1,Rio Negro,AR-R,annual,2015,gas oil combustion consumption by agriculture machines,4.19718012,TJ,CH4,3.9,kg/TJ,16.369002467999998,kg -639e7d05-e8f1-32ae-912f-279ca3cd464f,SESCO,II.5.1,Rio Negro,AR-R,annual,2015,gas oil combustion consumption by agriculture machines,4.19718012,TJ,N2O,3.9,kg/TJ,16.369002467999998,kg -fb72110c-b0cc-332d-aed4-41771a3e394c,SESCO,II.5.1,Santa Fe,AR-S,annual,2015,gas oil combustion consumption by agriculture machines,8.47367976,TJ,CO2,74100.0,kg/TJ,627899.6702159999,kg -36629245-85af-3362-a5a7-4157479c3b63,SESCO,II.5.1,Santa Fe,AR-S,annual,2015,gas oil combustion consumption by agriculture machines,8.47367976,TJ,CH4,3.9,kg/TJ,33.047351064,kg -36629245-85af-3362-a5a7-4157479c3b63,SESCO,II.5.1,Santa Fe,AR-S,annual,2015,gas oil combustion consumption by agriculture machines,8.47367976,TJ,N2O,3.9,kg/TJ,33.047351064,kg -8f275869-0f92-3693-9915-698c5f24c0b6,SESCO,II.5.1,Buenos Aires,AR-B,annual,2015,gas oil combustion consumption by agriculture machines,1.19152656,TJ,CO2,74100.0,kg/TJ,88292.118096,kg -1eb2afb5-59e2-3954-bf04-6e6d5992072e,SESCO,II.5.1,Buenos Aires,AR-B,annual,2015,gas oil combustion consumption by agriculture machines,1.19152656,TJ,CH4,3.9,kg/TJ,4.646953584,kg -1eb2afb5-59e2-3954-bf04-6e6d5992072e,SESCO,II.5.1,Buenos Aires,AR-B,annual,2015,gas oil combustion consumption by agriculture machines,1.19152656,TJ,N2O,3.9,kg/TJ,4.646953584,kg -14449ced-2715-31a6-9eb3-ef775c1cb54d,SESCO,II.1.1,Córdoba,AR-X,annual,2015,gasoline combustion consumption by to the public,1.189898,TJ,CO2,69300.0,kg/TJ,82459.93139999999,kg -5d52c85f-fc8b-3f37-b0f9-4936dbdf2af5,SESCO,II.1.1,Córdoba,AR-X,annual,2015,gasoline combustion consumption by to the public,1.189898,TJ,CH4,33.0,kg/TJ,39.266633999999996,kg -722657d5-4c67-38c1-a313-4c0359fdcd43,SESCO,II.1.1,Córdoba,AR-X,annual,2015,gasoline combustion consumption by to the public,1.189898,TJ,N2O,3.2,kg/TJ,3.8076735999999998,kg -f758bf99-3818-384b-805c-4ace661b72ea,SESCO,II.1.1,La Pampa,AR-L,annual,2015,gasoline combustion consumption by to the public,1.202302,TJ,CO2,69300.0,kg/TJ,83319.5286,kg -cdcb95c9-1100-3478-a336-fe1e5f8f7abc,SESCO,II.1.1,La Pampa,AR-L,annual,2015,gasoline combustion consumption by to the public,1.202302,TJ,CH4,33.0,kg/TJ,39.675966,kg -6b4db3a2-b91d-36cd-bd25-ff66df8ae9fd,SESCO,II.1.1,La Pampa,AR-L,annual,2015,gasoline combustion consumption by to the public,1.202302,TJ,N2O,3.2,kg/TJ,3.8473664000000003,kg -257ccf4a-3d73-37c7-b349-1852dcf1cadc,SESCO,II.1.1,Buenos Aires,AR-B,annual,2015,gas oil combustion consumption by to the public,8595.35554248,TJ,CO2,74100.0,kg/TJ,636915845.697768,kg -bac54b06-f5dc-3e5d-afbf-23b18775ec96,SESCO,II.1.1,Buenos Aires,AR-B,annual,2015,gas oil combustion consumption by to the public,8595.35554248,TJ,CH4,3.9,kg/TJ,33521.886615671996,kg -bac54b06-f5dc-3e5d-afbf-23b18775ec96,SESCO,II.1.1,Buenos Aires,AR-B,annual,2015,gas oil combustion consumption by to the public,8595.35554248,TJ,N2O,3.9,kg/TJ,33521.886615671996,kg -07c7a679-a6dc-3fe7-898c-25bd66a70666,SESCO,II.1.1,Capital Federal,AR-C,annual,2015,gas oil combustion consumption by to the public,361.6843692,TJ,CO2,74100.0,kg/TJ,26800811.75772,kg -fc50ac1a-12c8-3519-b69a-5a399024f40d,SESCO,II.1.1,Capital Federal,AR-C,annual,2015,gas oil combustion consumption by to the public,361.6843692,TJ,CH4,3.9,kg/TJ,1410.56903988,kg -fc50ac1a-12c8-3519-b69a-5a399024f40d,SESCO,II.1.1,Capital Federal,AR-C,annual,2015,gas oil combustion consumption by to the public,361.6843692,TJ,N2O,3.9,kg/TJ,1410.56903988,kg -aee260f7-7e66-35f6-8579-c44a7932bba5,SESCO,II.1.1,Chaco,AR-H,annual,2015,gas oil combustion consumption by to the public,3.6558135600000004,TJ,CO2,74100.0,kg/TJ,270895.78479600005,kg -5f95c38d-82b6-307f-b2e0-615efe654aa0,SESCO,II.1.1,Chaco,AR-H,annual,2015,gas oil combustion consumption by to the public,3.6558135600000004,TJ,CH4,3.9,kg/TJ,14.257672884000002,kg -5f95c38d-82b6-307f-b2e0-615efe654aa0,SESCO,II.1.1,Chaco,AR-H,annual,2015,gas oil combustion consumption by to the public,3.6558135600000004,TJ,N2O,3.9,kg/TJ,14.257672884000002,kg -35062a87-21c3-317f-a83c-2abe412cc0cd,SESCO,II.1.1,Chubut,AR-U,annual,2015,gas oil combustion consumption by to the public,1534.65413472,TJ,CO2,74100.0,kg/TJ,113717871.382752,kg -9fe02220-9b4b-3deb-bc68-a58aa3f34432,SESCO,II.1.1,Chubut,AR-U,annual,2015,gas oil combustion consumption by to the public,1534.65413472,TJ,CH4,3.9,kg/TJ,5985.151125408,kg -9fe02220-9b4b-3deb-bc68-a58aa3f34432,SESCO,II.1.1,Chubut,AR-U,annual,2015,gas oil combustion consumption by to the public,1534.65413472,TJ,N2O,3.9,kg/TJ,5985.151125408,kg -813b0ba5-2de6-3ac4-8011-a15a1a806e18,SESCO,II.1.1,Córdoba,AR-X,annual,2015,gas oil combustion consumption by to the public,491.20180368,TJ,CO2,74100.0,kg/TJ,36398053.652688004,kg -4f71afaa-2222-39f7-946c-1f15aad0fda2,SESCO,II.1.1,Córdoba,AR-X,annual,2015,gas oil combustion consumption by to the public,491.20180368,TJ,CH4,3.9,kg/TJ,1915.687034352,kg -4f71afaa-2222-39f7-946c-1f15aad0fda2,SESCO,II.1.1,Córdoba,AR-X,annual,2015,gas oil combustion consumption by to the public,491.20180368,TJ,N2O,3.9,kg/TJ,1915.687034352,kg -d5c9f4d2-b700-3f68-833b-36a1c720e7de,SESCO,II.1.1,Entre Rios,AR-E,annual,2015,gas oil combustion consumption by to the public,554.08437588,TJ,CO2,74100.0,kg/TJ,41057652.252708,kg -6ca8db0f-493f-3bb6-9c03-0c49a4eccb92,SESCO,II.1.1,Entre Rios,AR-E,annual,2015,gas oil combustion consumption by to the public,554.08437588,TJ,CH4,3.9,kg/TJ,2160.929065932,kg -6ca8db0f-493f-3bb6-9c03-0c49a4eccb92,SESCO,II.1.1,Entre Rios,AR-E,annual,2015,gas oil combustion consumption by to the public,554.08437588,TJ,N2O,3.9,kg/TJ,2160.929065932,kg -60086b77-950f-3ffa-b0e9-e85d6244d774,SESCO,II.1.1,La Pampa,AR-L,annual,2015,gas oil combustion consumption by to the public,528.50216916,TJ,CO2,74100.0,kg/TJ,39162010.734756,kg -8b309489-1cd3-3130-bd74-46207406b2d7,SESCO,II.1.1,La Pampa,AR-L,annual,2015,gas oil combustion consumption by to the public,528.50216916,TJ,CH4,3.9,kg/TJ,2061.158459724,kg -8b309489-1cd3-3130-bd74-46207406b2d7,SESCO,II.1.1,La Pampa,AR-L,annual,2015,gas oil combustion consumption by to the public,528.50216916,TJ,N2O,3.9,kg/TJ,2061.158459724,kg -70a785c7-5c0b-3095-b817-6acccc385476,SESCO,II.1.1,Mendoza,AR-M,annual,2015,gas oil combustion consumption by to the public,52.474269119999995,TJ,CO2,74100.0,kg/TJ,3888343.3417919995,kg -f12332ee-033a-3f5a-859f-9092403e2cbf,SESCO,II.1.1,Mendoza,AR-M,annual,2015,gas oil combustion consumption by to the public,52.474269119999995,TJ,CH4,3.9,kg/TJ,204.64964956799997,kg -f12332ee-033a-3f5a-859f-9092403e2cbf,SESCO,II.1.1,Mendoza,AR-M,annual,2015,gas oil combustion consumption by to the public,52.474269119999995,TJ,N2O,3.9,kg/TJ,204.64964956799997,kg -fffc5cd2-f750-3af1-a53d-f845280ed292,SESCO,II.1.1,Neuquén,AR-Q,annual,2015,gas oil combustion consumption by to the public,913.8711808800001,TJ,CO2,74100.0,kg/TJ,67717854.50320801,kg -24ade537-0e57-3114-862b-f789259198b5,SESCO,II.1.1,Neuquén,AR-Q,annual,2015,gas oil combustion consumption by to the public,913.8711808800001,TJ,CH4,3.9,kg/TJ,3564.0976054320004,kg -24ade537-0e57-3114-862b-f789259198b5,SESCO,II.1.1,Neuquén,AR-Q,annual,2015,gas oil combustion consumption by to the public,913.8711808800001,TJ,N2O,3.9,kg/TJ,3564.0976054320004,kg -f24446c7-73a4-3497-b19c-c0d56543a9c9,SESCO,II.1.1,Rio Negro,AR-R,annual,2015,gas oil combustion consumption by to the public,2537.17632924,TJ,CO2,74100.0,kg/TJ,188004765.996684,kg -8f091495-3095-3513-9f51-3dc9fbdd9c42,SESCO,II.1.1,Rio Negro,AR-R,annual,2015,gas oil combustion consumption by to the public,2537.17632924,TJ,CH4,3.9,kg/TJ,9894.987684036,kg -8f091495-3095-3513-9f51-3dc9fbdd9c42,SESCO,II.1.1,Rio Negro,AR-R,annual,2015,gas oil combustion consumption by to the public,2537.17632924,TJ,N2O,3.9,kg/TJ,9894.987684036,kg -ab304372-ffb5-37df-a10b-32dba4a1c3e9,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2015,gas oil combustion consumption by to the public,1055.03059704,TJ,CO2,74100.0,kg/TJ,78177767.240664,kg -bb5ed65e-800e-3d43-ab3d-b9920613e6f0,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2015,gas oil combustion consumption by to the public,1055.03059704,TJ,CH4,3.9,kg/TJ,4114.6193284559995,kg -bb5ed65e-800e-3d43-ab3d-b9920613e6f0,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2015,gas oil combustion consumption by to the public,1055.03059704,TJ,N2O,3.9,kg/TJ,4114.6193284559995,kg -961b6b3b-2897-3947-8ed8-170b81d7a31a,SESCO,II.1.1,Santa Fe,AR-S,annual,2015,gas oil combustion consumption by to the public,420.83722631999996,TJ,CO2,74100.0,kg/TJ,31184038.470311996,kg -8938fc1d-c060-3c1f-9982-40972ce76648,SESCO,II.1.1,Santa Fe,AR-S,annual,2015,gas oil combustion consumption by to the public,420.83722631999996,TJ,CH4,3.9,kg/TJ,1641.2651826479998,kg -8938fc1d-c060-3c1f-9982-40972ce76648,SESCO,II.1.1,Santa Fe,AR-S,annual,2015,gas oil combustion consumption by to the public,420.83722631999996,TJ,N2O,3.9,kg/TJ,1641.2651826479998,kg -0a48c2f1-7bb2-3d53-94f5-4e20615b9b84,SESCO,II.1.1,Buenos Aires,AR-B,annual,2015,gas oil combustion consumption by to the public,1262.24728056,TJ,CO2,74100.0,kg/TJ,93532523.48949601,kg -20b29b39-d453-3d70-ace2-1843da201898,SESCO,II.1.1,Buenos Aires,AR-B,annual,2015,gas oil combustion consumption by to the public,1262.24728056,TJ,CH4,3.9,kg/TJ,4922.764394184,kg -20b29b39-d453-3d70-ace2-1843da201898,SESCO,II.1.1,Buenos Aires,AR-B,annual,2015,gas oil combustion consumption by to the public,1262.24728056,TJ,N2O,3.9,kg/TJ,4922.764394184,kg -719ad434-9d6f-3a4e-adf4-1987f38bd6c7,SESCO,II.1.1,Capital Federal,AR-C,annual,2015,gas oil combustion consumption by to the public,127.50825947999999,TJ,CO2,74100.0,kg/TJ,9448362.027468,kg -e8469442-6716-3333-8157-8bf051a6483c,SESCO,II.1.1,Capital Federal,AR-C,annual,2015,gas oil combustion consumption by to the public,127.50825947999999,TJ,CH4,3.9,kg/TJ,497.28221197199997,kg -e8469442-6716-3333-8157-8bf051a6483c,SESCO,II.1.1,Capital Federal,AR-C,annual,2015,gas oil combustion consumption by to the public,127.50825947999999,TJ,N2O,3.9,kg/TJ,497.28221197199997,kg -14c7461d-8ad1-3344-841e-820a84e82428,SESCO,II.1.1,Chubut,AR-U,annual,2015,gas oil combustion consumption by to the public,140.37662351999998,TJ,CO2,74100.0,kg/TJ,10401907.802831998,kg -cd7ab3f1-5f9d-36ee-86e3-c4316b8979f2,SESCO,II.1.1,Chubut,AR-U,annual,2015,gas oil combustion consumption by to the public,140.37662351999998,TJ,CH4,3.9,kg/TJ,547.4688317279999,kg -cd7ab3f1-5f9d-36ee-86e3-c4316b8979f2,SESCO,II.1.1,Chubut,AR-U,annual,2015,gas oil combustion consumption by to the public,140.37662351999998,TJ,N2O,3.9,kg/TJ,547.4688317279999,kg -148c0b5c-1757-3b5c-b5e2-fa4fd1e5a818,SESCO,II.1.1,Córdoba,AR-X,annual,2015,gas oil combustion consumption by to the public,98.23180752,TJ,CO2,74100.0,kg/TJ,7278976.937232,kg -96306c0c-2600-3baf-b40d-0a0efc3e1f62,SESCO,II.1.1,Córdoba,AR-X,annual,2015,gas oil combustion consumption by to the public,98.23180752,TJ,CH4,3.9,kg/TJ,383.10404932800003,kg -96306c0c-2600-3baf-b40d-0a0efc3e1f62,SESCO,II.1.1,Córdoba,AR-X,annual,2015,gas oil combustion consumption by to the public,98.23180752,TJ,N2O,3.9,kg/TJ,383.10404932800003,kg -4726bb79-672d-347b-a778-409a28f0cd9b,SESCO,II.1.1,Entre Rios,AR-E,annual,2015,gas oil combustion consumption by to the public,91.86699395999999,TJ,CO2,74100.0,kg/TJ,6807344.252435999,kg -b601964b-dd38-3b96-9e4b-96298d2c5e4a,SESCO,II.1.1,Entre Rios,AR-E,annual,2015,gas oil combustion consumption by to the public,91.86699395999999,TJ,CH4,3.9,kg/TJ,358.28127644399996,kg -b601964b-dd38-3b96-9e4b-96298d2c5e4a,SESCO,II.1.1,Entre Rios,AR-E,annual,2015,gas oil combustion consumption by to the public,91.86699395999999,TJ,N2O,3.9,kg/TJ,358.28127644399996,kg -08c8517b-645f-3203-a5a2-10db6c5cec64,SESCO,II.1.1,La Pampa,AR-L,annual,2015,gas oil combustion consumption by to the public,71.91224711999999,TJ,CO2,74100.0,kg/TJ,5328697.511591999,kg -ffbc7c3f-485b-3114-8324-716ac1387865,SESCO,II.1.1,La Pampa,AR-L,annual,2015,gas oil combustion consumption by to the public,71.91224711999999,TJ,CH4,3.9,kg/TJ,280.45776376799995,kg -ffbc7c3f-485b-3114-8324-716ac1387865,SESCO,II.1.1,La Pampa,AR-L,annual,2015,gas oil combustion consumption by to the public,71.91224711999999,TJ,N2O,3.9,kg/TJ,280.45776376799995,kg -d5e5cf83-62c5-3bd5-88be-1226556c4744,SESCO,II.1.1,Neuquén,AR-Q,annual,2015,gas oil combustion consumption by to the public,297.79498812,TJ,CO2,74100.0,kg/TJ,22066608.619692,kg -55daa6cd-4f75-3a6c-9326-592914b96cb7,SESCO,II.1.1,Neuquén,AR-Q,annual,2015,gas oil combustion consumption by to the public,297.79498812,TJ,CH4,3.9,kg/TJ,1161.4004536680002,kg -55daa6cd-4f75-3a6c-9326-592914b96cb7,SESCO,II.1.1,Neuquén,AR-Q,annual,2015,gas oil combustion consumption by to the public,297.79498812,TJ,N2O,3.9,kg/TJ,1161.4004536680002,kg -bbb2cf14-1513-36f4-a099-4dea9687cbb7,SESCO,II.1.1,Rio Negro,AR-R,annual,2015,gas oil combustion consumption by to the public,204.1784136,TJ,CO2,74100.0,kg/TJ,15129620.44776,kg -6dfc728d-5138-3ba7-b327-e8150c739c65,SESCO,II.1.1,Rio Negro,AR-R,annual,2015,gas oil combustion consumption by to the public,204.1784136,TJ,CH4,3.9,kg/TJ,796.29581304,kg -6dfc728d-5138-3ba7-b327-e8150c739c65,SESCO,II.1.1,Rio Negro,AR-R,annual,2015,gas oil combustion consumption by to the public,204.1784136,TJ,N2O,3.9,kg/TJ,796.29581304,kg -9f341421-422b-3982-a49f-0793194ea73d,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2015,gas oil combustion consumption by to the public,68.59469736,TJ,CO2,74100.0,kg/TJ,5082867.074376,kg -88a5b382-7850-30ca-978c-d81a5d2765b2,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2015,gas oil combustion consumption by to the public,68.59469736,TJ,CH4,3.9,kg/TJ,267.519319704,kg -88a5b382-7850-30ca-978c-d81a5d2765b2,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2015,gas oil combustion consumption by to the public,68.59469736,TJ,N2O,3.9,kg/TJ,267.519319704,kg -2a3a6a91-7270-3916-8af8-a966d6c3bf39,SESCO,II.1.1,Santa Fe,AR-S,annual,2015,gas oil combustion consumption by to the public,154.07715624,TJ,CO2,74100.0,kg/TJ,11417117.277384,kg -a446d41c-9133-3a1a-99c0-56b77e34538b,SESCO,II.1.1,Santa Fe,AR-S,annual,2015,gas oil combustion consumption by to the public,154.07715624,TJ,CH4,3.9,kg/TJ,600.9009093359999,kg -a446d41c-9133-3a1a-99c0-56b77e34538b,SESCO,II.1.1,Santa Fe,AR-S,annual,2015,gas oil combustion consumption by to the public,154.07715624,TJ,N2O,3.9,kg/TJ,600.9009093359999,kg -40a71d6c-791d-3282-a8a9-1068c4fb5c34,SESCO,II.2.1,Buenos Aires,AR-B,annual,2015,gas oil combustion consumption by railway transport,32.15012304,TJ,CO2,74100.0,kg/TJ,2382324.117264,kg -3b934d9c-a608-3267-9644-d4c83775900e,SESCO,II.2.1,Buenos Aires,AR-B,annual,2015,gas oil combustion consumption by railway transport,32.15012304,TJ,CH4,3.9,kg/TJ,125.38547985599999,kg -3b934d9c-a608-3267-9644-d4c83775900e,SESCO,II.2.1,Buenos Aires,AR-B,annual,2015,gas oil combustion consumption by railway transport,32.15012304,TJ,N2O,3.9,kg/TJ,125.38547985599999,kg -5d5acd89-b165-37eb-8f2a-74c332633e3a,SESCO,II.1.1,Buenos Aires,AR-B,annual,2015,gasoline combustion consumption by freight transport,1.085793,TJ,CO2,69300.0,kg/TJ,75245.4549,kg -6afe4e1d-c895-37cd-8cd6-ed31674c5112,SESCO,II.1.1,Buenos Aires,AR-B,annual,2015,gasoline combustion consumption by freight transport,1.085793,TJ,CH4,33.0,kg/TJ,35.831169,kg -d54db7ad-e0d3-3bc0-bbf9-4a4892a0ece5,SESCO,II.1.1,Buenos Aires,AR-B,annual,2015,gasoline combustion consumption by freight transport,1.085793,TJ,N2O,3.2,kg/TJ,3.4745376,kg -de5097b4-2818-33d2-a922-36ad700bf936,SESCO,II.1.1,Buenos Aires,AR-B,annual,2015,gas oil combustion consumption by freight transport,283.58328516,TJ,CO2,74100.0,kg/TJ,21013521.430356,kg -f79824d3-a8bc-3878-befe-7dc25f64e302,SESCO,II.1.1,Buenos Aires,AR-B,annual,2015,gas oil combustion consumption by freight transport,283.58328516,TJ,CH4,3.9,kg/TJ,1105.974812124,kg -f79824d3-a8bc-3878-befe-7dc25f64e302,SESCO,II.1.1,Buenos Aires,AR-B,annual,2015,gas oil combustion consumption by freight transport,283.58328516,TJ,N2O,3.9,kg/TJ,1105.974812124,kg -4af4318b-99ff-3ac4-b77a-9afe4d758417,SESCO,II.1.1,Chubut,AR-U,annual,2015,gas oil combustion consumption by freight transport,0.5326616399999999,TJ,CO2,74100.0,kg/TJ,39470.227523999994,kg -22f538cf-adf1-3714-b909-c075673b64aa,SESCO,II.1.1,Chubut,AR-U,annual,2015,gas oil combustion consumption by freight transport,0.5326616399999999,TJ,CH4,3.9,kg/TJ,2.0773803959999997,kg -22f538cf-adf1-3714-b909-c075673b64aa,SESCO,II.1.1,Chubut,AR-U,annual,2015,gas oil combustion consumption by freight transport,0.5326616399999999,TJ,N2O,3.9,kg/TJ,2.0773803959999997,kg -c3af7820-8265-331c-9daf-6a96c3586ad4,SESCO,II.1.1,San Luis,AR-D,annual,2015,gas oil combustion consumption by freight transport,68.2402518,TJ,CO2,74100.0,kg/TJ,5056602.65838,kg -117acec6-259f-314e-85c8-6582fa05503f,SESCO,II.1.1,San Luis,AR-D,annual,2015,gas oil combustion consumption by freight transport,68.2402518,TJ,CH4,3.9,kg/TJ,266.13698202,kg -117acec6-259f-314e-85c8-6582fa05503f,SESCO,II.1.1,San Luis,AR-D,annual,2015,gas oil combustion consumption by freight transport,68.2402518,TJ,N2O,3.9,kg/TJ,266.13698202,kg -2db9451d-6cb0-397f-a041-e1232676cb94,SESCO,II.1.1,Buenos Aires,AR-B,annual,2015,gas oil combustion consumption by freight transport,3.42041952,TJ,CO2,74100.0,kg/TJ,253453.08643199998,kg -9f968687-c513-3eea-806d-e69d18e57770,SESCO,II.1.1,Buenos Aires,AR-B,annual,2015,gas oil combustion consumption by freight transport,3.42041952,TJ,CH4,3.9,kg/TJ,13.339636127999999,kg -9f968687-c513-3eea-806d-e69d18e57770,SESCO,II.1.1,Buenos Aires,AR-B,annual,2015,gas oil combustion consumption by freight transport,3.42041952,TJ,N2O,3.9,kg/TJ,13.339636127999999,kg -ee253d82-19fc-3cb4-ac20-50fc6b839ebe,SESCO,II.1.1,Buenos Aires,AR-B,annual,2015,gas oil combustion consumption by public passenger transport,439.65520452,TJ,CO2,74100.0,kg/TJ,32578450.654932,kg -11965d67-789f-33ea-b491-70446b1748f3,SESCO,II.1.1,Buenos Aires,AR-B,annual,2015,gas oil combustion consumption by public passenger transport,439.65520452,TJ,CH4,3.9,kg/TJ,1714.655297628,kg -11965d67-789f-33ea-b491-70446b1748f3,SESCO,II.1.1,Buenos Aires,AR-B,annual,2015,gas oil combustion consumption by public passenger transport,439.65520452,TJ,N2O,3.9,kg/TJ,1714.655297628,kg -6e82297c-b061-3b65-9747-23222cfdfbb4,SESCO,II.1.1,Capital Federal,AR-C,annual,2015,gas oil combustion consumption by public passenger transport,58.76008824,TJ,CO2,74100.0,kg/TJ,4354122.538584,kg -26f16087-64e7-3a0e-9f4e-3f2d282626b1,SESCO,II.1.1,Capital Federal,AR-C,annual,2015,gas oil combustion consumption by public passenger transport,58.76008824,TJ,CH4,3.9,kg/TJ,229.164344136,kg -26f16087-64e7-3a0e-9f4e-3f2d282626b1,SESCO,II.1.1,Capital Federal,AR-C,annual,2015,gas oil combustion consumption by public passenger transport,58.76008824,TJ,N2O,3.9,kg/TJ,229.164344136,kg -e547dc82-dbac-3bea-ba03-4a7fe2f81f69,SESCO,II.1.1,Chubut,AR-U,annual,2015,gas oil combustion consumption by public passenger transport,35.23502388,TJ,CO2,74100.0,kg/TJ,2610915.269508,kg -f16ae9d4-6db7-3051-8661-734956136e9e,SESCO,II.1.1,Chubut,AR-U,annual,2015,gas oil combustion consumption by public passenger transport,35.23502388,TJ,CH4,3.9,kg/TJ,137.416593132,kg -f16ae9d4-6db7-3051-8661-734956136e9e,SESCO,II.1.1,Chubut,AR-U,annual,2015,gas oil combustion consumption by public passenger transport,35.23502388,TJ,N2O,3.9,kg/TJ,137.416593132,kg -1a9354b5-fc17-3bec-b771-efc364e7d864,SESCO,II.1.1,Córdoba,AR-X,annual,2015,gas oil combustion consumption by public passenger transport,283.72238328,TJ,CO2,74100.0,kg/TJ,21023828.601047996,kg -6af060ed-0019-350d-8bd0-5fec96d95c9c,SESCO,II.1.1,Córdoba,AR-X,annual,2015,gas oil combustion consumption by public passenger transport,283.72238328,TJ,CH4,3.9,kg/TJ,1106.5172947919998,kg -6af060ed-0019-350d-8bd0-5fec96d95c9c,SESCO,II.1.1,Córdoba,AR-X,annual,2015,gas oil combustion consumption by public passenger transport,283.72238328,TJ,N2O,3.9,kg/TJ,1106.5172947919998,kg -8402ab6d-987f-3e54-b2e4-b4737ef66586,SESCO,II.1.1,Neuquén,AR-Q,annual,2015,gas oil combustion consumption by public passenger transport,27.757750440000002,TJ,CO2,74100.0,kg/TJ,2056849.3076040002,kg -a1072ccd-4db6-393a-83e9-6640defc3cda,SESCO,II.1.1,Neuquén,AR-Q,annual,2015,gas oil combustion consumption by public passenger transport,27.757750440000002,TJ,CH4,3.9,kg/TJ,108.25522671600001,kg -a1072ccd-4db6-393a-83e9-6640defc3cda,SESCO,II.1.1,Neuquén,AR-Q,annual,2015,gas oil combustion consumption by public passenger transport,27.757750440000002,TJ,N2O,3.9,kg/TJ,108.25522671600001,kg -873495b9-f324-385b-bcea-ec64a5108d7a,SESCO,II.1.1,Rio Negro,AR-R,annual,2015,gas oil combustion consumption by public passenger transport,135.34369884,TJ,CO2,74100.0,kg/TJ,10028968.084044,kg -72b3209e-a5b8-3241-a6a6-fbe833cdd7ec,SESCO,II.1.1,Rio Negro,AR-R,annual,2015,gas oil combustion consumption by public passenger transport,135.34369884,TJ,CH4,3.9,kg/TJ,527.840425476,kg -72b3209e-a5b8-3241-a6a6-fbe833cdd7ec,SESCO,II.1.1,Rio Negro,AR-R,annual,2015,gas oil combustion consumption by public passenger transport,135.34369884,TJ,N2O,3.9,kg/TJ,527.840425476,kg -41346242-9270-30b0-b191-f8e43c486357,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2015,gas oil combustion consumption by public passenger transport,5.545900919999999,TJ,CO2,74100.0,kg/TJ,410951.25817199994,kg -537dd183-f299-3b9a-8ea4-cf45a2075059,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2015,gas oil combustion consumption by public passenger transport,5.545900919999999,TJ,CH4,3.9,kg/TJ,21.629013587999996,kg -537dd183-f299-3b9a-8ea4-cf45a2075059,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2015,gas oil combustion consumption by public passenger transport,5.545900919999999,TJ,N2O,3.9,kg/TJ,21.629013587999996,kg -9835d48c-c7a0-3f1b-b4db-6ee4c9a6cbae,SESCO,II.1.1,Santa Fe,AR-S,annual,2015,gas oil combustion consumption by public passenger transport,6.38738856,TJ,CO2,74100.0,kg/TJ,473305.492296,kg -bea94718-9c59-3a12-ab02-3b5104894abe,SESCO,II.1.1,Santa Fe,AR-S,annual,2015,gas oil combustion consumption by public passenger transport,6.38738856,TJ,CH4,3.9,kg/TJ,24.910815384,kg -bea94718-9c59-3a12-ab02-3b5104894abe,SESCO,II.1.1,Santa Fe,AR-S,annual,2015,gas oil combustion consumption by public passenger transport,6.38738856,TJ,N2O,3.9,kg/TJ,24.910815384,kg -da1c421e-13d9-32cf-96fd-330f0db6cf06,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2015,gas oil combustion consumption by public passenger transport,0.17922744,TJ,CO2,74100.0,kg/TJ,13280.753304,kg -0d5e1a37-05d9-3daa-ab92-70a5f0c3f7a4,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2015,gas oil combustion consumption by public passenger transport,0.17922744,TJ,CH4,3.9,kg/TJ,0.6989870159999999,kg -0d5e1a37-05d9-3daa-ab92-70a5f0c3f7a4,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2015,gas oil combustion consumption by public passenger transport,0.17922744,TJ,N2O,3.9,kg/TJ,0.6989870159999999,kg -9fa27f70-410f-34d8-ab05-4222279bd86a,SESCO,II.1.1,Buenos Aires,AR-B,annual,2015,gas oil combustion consumption by to the public,707.4752159999999,TJ,CO2,74100.0,kg/TJ,52423913.5056,kg -d385955e-f98b-36a0-85ad-4e683dd3b8cf,SESCO,II.1.1,Buenos Aires,AR-B,annual,2015,gas oil combustion consumption by to the public,707.4752159999999,TJ,CH4,3.9,kg/TJ,2759.1533423999995,kg -d385955e-f98b-36a0-85ad-4e683dd3b8cf,SESCO,II.1.1,Buenos Aires,AR-B,annual,2015,gas oil combustion consumption by to the public,707.4752159999999,TJ,N2O,3.9,kg/TJ,2759.1533423999995,kg -d4851e5b-0c70-3ad2-a290-90951b9b83c5,SESCO,II.1.1,Capital Federal,AR-C,annual,2015,gas oil combustion consumption by to the public,12.17244,TJ,CO2,74100.0,kg/TJ,901977.804,kg -ed3328fc-46d6-3020-87fe-4f66cf3c3414,SESCO,II.1.1,Capital Federal,AR-C,annual,2015,gas oil combustion consumption by to the public,12.17244,TJ,CH4,3.9,kg/TJ,47.472516,kg -ed3328fc-46d6-3020-87fe-4f66cf3c3414,SESCO,II.1.1,Capital Federal,AR-C,annual,2015,gas oil combustion consumption by to the public,12.17244,TJ,N2O,3.9,kg/TJ,47.472516,kg -d814e8bc-7a46-3120-b84f-2a3ce57f16ac,SESCO,II.1.1,Córdoba,AR-X,annual,2015,gas oil combustion consumption by to the public,310.48752,TJ,CO2,74100.0,kg/TJ,23007125.232,kg -36e7897d-7e0f-3208-b7c8-d5bdf4200bab,SESCO,II.1.1,Córdoba,AR-X,annual,2015,gas oil combustion consumption by to the public,310.48752,TJ,CH4,3.9,kg/TJ,1210.9013280000001,kg -36e7897d-7e0f-3208-b7c8-d5bdf4200bab,SESCO,II.1.1,Córdoba,AR-X,annual,2015,gas oil combustion consumption by to the public,310.48752,TJ,N2O,3.9,kg/TJ,1210.9013280000001,kg -622a82ac-3138-3413-be9d-cf1da9dcb07a,SESCO,II.1.1,Entre Rios,AR-E,annual,2015,gas oil combustion consumption by to the public,21.4914,TJ,CO2,74100.0,kg/TJ,1592512.74,kg -3eccd9f9-8e22-36dc-8161-baff23f14c43,SESCO,II.1.1,Entre Rios,AR-E,annual,2015,gas oil combustion consumption by to the public,21.4914,TJ,CH4,3.9,kg/TJ,83.81645999999999,kg -3eccd9f9-8e22-36dc-8161-baff23f14c43,SESCO,II.1.1,Entre Rios,AR-E,annual,2015,gas oil combustion consumption by to the public,21.4914,TJ,N2O,3.9,kg/TJ,83.81645999999999,kg -5d52d47e-b398-3156-9be4-acc7bfbca34f,SESCO,II.1.1,Salta,AR-A,annual,2015,gas oil combustion consumption by to the public,1.22808,TJ,CO2,74100.0,kg/TJ,91000.728,kg -272fc265-5bd2-387d-a355-fecafb508894,SESCO,II.1.1,Salta,AR-A,annual,2015,gas oil combustion consumption by to the public,1.22808,TJ,CH4,3.9,kg/TJ,4.789512,kg -272fc265-5bd2-387d-a355-fecafb508894,SESCO,II.1.1,Salta,AR-A,annual,2015,gas oil combustion consumption by to the public,1.22808,TJ,N2O,3.9,kg/TJ,4.789512,kg -2253786e-c948-3572-93a6-3e7fb06dbf6b,SESCO,II.1.1,Santa Fe,AR-S,annual,2015,gas oil combustion consumption by to the public,49.80948,TJ,CO2,74100.0,kg/TJ,3690882.468,kg -3ef11998-9a49-3340-bcbe-0e78d9ce4183,SESCO,II.1.1,Santa Fe,AR-S,annual,2015,gas oil combustion consumption by to the public,49.80948,TJ,CH4,3.9,kg/TJ,194.256972,kg -3ef11998-9a49-3340-bcbe-0e78d9ce4183,SESCO,II.1.1,Santa Fe,AR-S,annual,2015,gas oil combustion consumption by to the public,49.80948,TJ,N2O,3.9,kg/TJ,194.256972,kg -d4bdc1a4-6d82-3801-9ba2-074f0b8ae917,SESCO,II.1.1,Buenos Aires,AR-B,annual,2015,gas oil combustion consumption by to the public,99.88986,TJ,CO2,74100.0,kg/TJ,7401838.626,kg -79713691-9b74-31d5-af24-0282e9c12b4c,SESCO,II.1.1,Buenos Aires,AR-B,annual,2015,gas oil combustion consumption by to the public,99.88986,TJ,CH4,3.9,kg/TJ,389.570454,kg -79713691-9b74-31d5-af24-0282e9c12b4c,SESCO,II.1.1,Buenos Aires,AR-B,annual,2015,gas oil combustion consumption by to the public,99.88986,TJ,N2O,3.9,kg/TJ,389.570454,kg -cb9cec1e-dda9-34fb-acc5-8e12b7132f4c,SESCO,II.1.1,Capital Federal,AR-C,annual,2015,gas oil combustion consumption by to the public,7.47684,TJ,CO2,74100.0,kg/TJ,554033.844,kg -f4e4ac8d-7a66-398f-8866-b4d4efbf87c0,SESCO,II.1.1,Capital Federal,AR-C,annual,2015,gas oil combustion consumption by to the public,7.47684,TJ,CH4,3.9,kg/TJ,29.159676,kg -f4e4ac8d-7a66-398f-8866-b4d4efbf87c0,SESCO,II.1.1,Capital Federal,AR-C,annual,2015,gas oil combustion consumption by to the public,7.47684,TJ,N2O,3.9,kg/TJ,29.159676,kg -051fb0a4-3061-3963-b2f7-e1a751ab8b8b,SESCO,II.1.1,Córdoba,AR-X,annual,2015,gas oil combustion consumption by to the public,6.53772,TJ,CO2,74100.0,kg/TJ,484445.052,kg -40922a9f-e286-3088-8931-f2512d7fd90f,SESCO,II.1.1,Córdoba,AR-X,annual,2015,gas oil combustion consumption by to the public,6.53772,TJ,CH4,3.9,kg/TJ,25.497108,kg -40922a9f-e286-3088-8931-f2512d7fd90f,SESCO,II.1.1,Córdoba,AR-X,annual,2015,gas oil combustion consumption by to the public,6.53772,TJ,N2O,3.9,kg/TJ,25.497108,kg -28387d03-7481-36f3-bbc9-afef05e4947b,SESCO,II.1.1,Entre Rios,AR-E,annual,2015,gas oil combustion consumption by to the public,3.53976,TJ,CO2,74100.0,kg/TJ,262296.21599999996,kg -2d363b84-2f38-3cf0-8973-2cb18e928846,SESCO,II.1.1,Entre Rios,AR-E,annual,2015,gas oil combustion consumption by to the public,3.53976,TJ,CH4,3.9,kg/TJ,13.805063999999998,kg -2d363b84-2f38-3cf0-8973-2cb18e928846,SESCO,II.1.1,Entre Rios,AR-E,annual,2015,gas oil combustion consumption by to the public,3.53976,TJ,N2O,3.9,kg/TJ,13.805063999999998,kg -65bb37bc-a0cb-375b-946e-a4a49a532c7d,SESCO,II.1.1,Santa Fe,AR-S,annual,2015,gas oil combustion consumption by to the public,9.46344,TJ,CO2,74100.0,kg/TJ,701240.904,kg -23ab6742-da88-317a-9497-9aeb81be017e,SESCO,II.1.1,Santa Fe,AR-S,annual,2015,gas oil combustion consumption by to the public,9.46344,TJ,CH4,3.9,kg/TJ,36.907416,kg -23ab6742-da88-317a-9497-9aeb81be017e,SESCO,II.1.1,Santa Fe,AR-S,annual,2015,gas oil combustion consumption by to the public,9.46344,TJ,N2O,3.9,kg/TJ,36.907416,kg -b1404367-cd27-3861-af21-f561655d1bb6,SESCO,II.1.1,Catamarca,AR-K,annual,2015,gas oil combustion consumption by to the public,208.233606,TJ,CO2,74100.0,kg/TJ,15430110.2046,kg -71327c8c-7f8f-3607-8275-2bba7f118406,SESCO,II.1.1,Catamarca,AR-K,annual,2015,gas oil combustion consumption by to the public,208.233606,TJ,CH4,3.9,kg/TJ,812.1110634,kg -71327c8c-7f8f-3607-8275-2bba7f118406,SESCO,II.1.1,Catamarca,AR-K,annual,2015,gas oil combustion consumption by to the public,208.233606,TJ,N2O,3.9,kg/TJ,812.1110634,kg -17d0e4d4-7256-3a71-b2d5-353bbd677b3e,SESCO,II.1.1,Chaco,AR-H,annual,2015,gas oil combustion consumption by to the public,113.0028648,TJ,CO2,74100.0,kg/TJ,8373512.28168,kg -ae3e1bb1-f963-3998-881b-489781c49f21,SESCO,II.1.1,Chaco,AR-H,annual,2015,gas oil combustion consumption by to the public,113.0028648,TJ,CH4,3.9,kg/TJ,440.71117272,kg -ae3e1bb1-f963-3998-881b-489781c49f21,SESCO,II.1.1,Chaco,AR-H,annual,2015,gas oil combustion consumption by to the public,113.0028648,TJ,N2O,3.9,kg/TJ,440.71117272,kg -8ba60dbf-2758-3e8c-a167-aea875654209,SESCO,II.1.1,Córdoba,AR-X,annual,2015,gas oil combustion consumption by to the public,0.0050568,TJ,CO2,74100.0,kg/TJ,374.70888,kg -78da9a55-0a23-3474-8a5f-ea2abdf86eb7,SESCO,II.1.1,Córdoba,AR-X,annual,2015,gas oil combustion consumption by to the public,0.0050568,TJ,CH4,3.9,kg/TJ,0.01972152,kg -78da9a55-0a23-3474-8a5f-ea2abdf86eb7,SESCO,II.1.1,Córdoba,AR-X,annual,2015,gas oil combustion consumption by to the public,0.0050568,TJ,N2O,3.9,kg/TJ,0.01972152,kg -87a2c9ed-79ec-38b1-a849-bb5f293d7d5f,SESCO,II.1.1,Jujuy,AR-Y,annual,2015,gas oil combustion consumption by to the public,817.1629871999999,TJ,CO2,74100.0,kg/TJ,60551777.35151999,kg -19c626ea-79db-3972-b230-fc1edefbc0ee,SESCO,II.1.1,Jujuy,AR-Y,annual,2015,gas oil combustion consumption by to the public,817.1629871999999,TJ,CH4,3.9,kg/TJ,3186.9356500799995,kg -19c626ea-79db-3972-b230-fc1edefbc0ee,SESCO,II.1.1,Jujuy,AR-Y,annual,2015,gas oil combustion consumption by to the public,817.1629871999999,TJ,N2O,3.9,kg/TJ,3186.9356500799995,kg -5a55100d-9c91-3424-87b4-ef10fc1683b9,SESCO,II.1.1,La Rioja,AR-F,annual,2015,gas oil combustion consumption by to the public,153.7082988,TJ,CO2,74100.0,kg/TJ,11389784.94108,kg -5fbda1d6-0a3b-3159-b372-825da103abef,SESCO,II.1.1,La Rioja,AR-F,annual,2015,gas oil combustion consumption by to the public,153.7082988,TJ,CH4,3.9,kg/TJ,599.46236532,kg -5fbda1d6-0a3b-3159-b372-825da103abef,SESCO,II.1.1,La Rioja,AR-F,annual,2015,gas oil combustion consumption by to the public,153.7082988,TJ,N2O,3.9,kg/TJ,599.46236532,kg -f6677296-2c64-3f2d-a5d6-a2de3a1aaf7b,SESCO,II.1.1,Salta,AR-A,annual,2015,gas oil combustion consumption by to the public,2151.3140628,TJ,CO2,74100.0,kg/TJ,159412372.05348,kg -9952b020-a466-316a-98b4-929b645e9bb3,SESCO,II.1.1,Salta,AR-A,annual,2015,gas oil combustion consumption by to the public,2151.3140628,TJ,CH4,3.9,kg/TJ,8390.12484492,kg -9952b020-a466-316a-98b4-929b645e9bb3,SESCO,II.1.1,Salta,AR-A,annual,2015,gas oil combustion consumption by to the public,2151.3140628,TJ,N2O,3.9,kg/TJ,8390.12484492,kg -b6fe7941-421e-3b63-af3b-04bb93bfcf20,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2015,gas oil combustion consumption by to the public,348.3300828,TJ,CO2,74100.0,kg/TJ,25811259.13548,kg -e86b6571-80eb-34ee-b8fd-39f0a48e9ffb,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2015,gas oil combustion consumption by to the public,348.3300828,TJ,CH4,3.9,kg/TJ,1358.48732292,kg -e86b6571-80eb-34ee-b8fd-39f0a48e9ffb,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2015,gas oil combustion consumption by to the public,348.3300828,TJ,N2O,3.9,kg/TJ,1358.48732292,kg -b0b2fc9d-f0d8-3752-bddf-fb4f19d68f09,SESCO,II.1.1,Tucuman,AR-T,annual,2015,gas oil combustion consumption by to the public,2474.1687096,TJ,CO2,74100.0,kg/TJ,183335901.38136,kg -6802a36a-3228-31ea-b99f-257beeef2cdc,SESCO,II.1.1,Tucuman,AR-T,annual,2015,gas oil combustion consumption by to the public,2474.1687096,TJ,CH4,3.9,kg/TJ,9649.25796744,kg -6802a36a-3228-31ea-b99f-257beeef2cdc,SESCO,II.1.1,Tucuman,AR-T,annual,2015,gas oil combustion consumption by to the public,2474.1687096,TJ,N2O,3.9,kg/TJ,9649.25796744,kg -c67da380-eb78-3e41-938d-fb992b728529,SESCO,II.1.1,Catamarca,AR-K,annual,2015,gas oil combustion consumption by to the public,19.4914356,TJ,CO2,74100.0,kg/TJ,1444315.37796,kg -b5c5096a-aee1-3519-aff5-99bcf133d956,SESCO,II.1.1,Catamarca,AR-K,annual,2015,gas oil combustion consumption by to the public,19.4914356,TJ,CH4,3.9,kg/TJ,76.01659884,kg -b5c5096a-aee1-3519-aff5-99bcf133d956,SESCO,II.1.1,Catamarca,AR-K,annual,2015,gas oil combustion consumption by to the public,19.4914356,TJ,N2O,3.9,kg/TJ,76.01659884,kg -00a5c952-a873-3f3a-bd1d-7efa808462a2,SESCO,II.1.1,Chaco,AR-H,annual,2015,gas oil combustion consumption by to the public,5.4664008,TJ,CO2,74100.0,kg/TJ,405060.29928,kg -907a5243-9454-3925-b3e4-ee1699acb0fd,SESCO,II.1.1,Chaco,AR-H,annual,2015,gas oil combustion consumption by to the public,5.4664008,TJ,CH4,3.9,kg/TJ,21.31896312,kg -907a5243-9454-3925-b3e4-ee1699acb0fd,SESCO,II.1.1,Chaco,AR-H,annual,2015,gas oil combustion consumption by to the public,5.4664008,TJ,N2O,3.9,kg/TJ,21.31896312,kg -3facbb04-3ac7-33cb-9930-bf39b4e24be4,SESCO,II.1.1,Jujuy,AR-Y,annual,2015,gas oil combustion consumption by to the public,27.971689199999997,TJ,CO2,74100.0,kg/TJ,2072702.1697199997,kg -9490913a-d1d8-39e1-a449-f748891f99ec,SESCO,II.1.1,Jujuy,AR-Y,annual,2015,gas oil combustion consumption by to the public,27.971689199999997,TJ,CH4,3.9,kg/TJ,109.08958787999998,kg -9490913a-d1d8-39e1-a449-f748891f99ec,SESCO,II.1.1,Jujuy,AR-Y,annual,2015,gas oil combustion consumption by to the public,27.971689199999997,TJ,N2O,3.9,kg/TJ,109.08958787999998,kg -6c6864a6-3dae-3cbd-be01-44c34fa81542,SESCO,II.1.1,La Rioja,AR-F,annual,2015,gas oil combustion consumption by to the public,14.2796808,TJ,CO2,74100.0,kg/TJ,1058124.3472799999,kg -973313b9-ccc8-384d-adb8-b7b64545e438,SESCO,II.1.1,La Rioja,AR-F,annual,2015,gas oil combustion consumption by to the public,14.2796808,TJ,CH4,3.9,kg/TJ,55.69075512,kg -973313b9-ccc8-384d-adb8-b7b64545e438,SESCO,II.1.1,La Rioja,AR-F,annual,2015,gas oil combustion consumption by to the public,14.2796808,TJ,N2O,3.9,kg/TJ,55.69075512,kg -a6690a97-30cb-3f0b-b627-219bb973107f,SESCO,II.1.1,Salta,AR-A,annual,2015,gas oil combustion consumption by to the public,66.7999668,TJ,CO2,74100.0,kg/TJ,4949877.539880001,kg -b6d105ca-da5a-3a1f-9d23-8b79cd77c871,SESCO,II.1.1,Salta,AR-A,annual,2015,gas oil combustion consumption by to the public,66.7999668,TJ,CH4,3.9,kg/TJ,260.51987052000004,kg -b6d105ca-da5a-3a1f-9d23-8b79cd77c871,SESCO,II.1.1,Salta,AR-A,annual,2015,gas oil combustion consumption by to the public,66.7999668,TJ,N2O,3.9,kg/TJ,260.51987052000004,kg -f9e7ad6b-f8fc-335f-b670-d058af6e027a,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2015,gas oil combustion consumption by to the public,38.829,TJ,CO2,74100.0,kg/TJ,2877228.9,kg -e83a7058-38d2-3c83-b282-852fe40a8023,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2015,gas oil combustion consumption by to the public,38.829,TJ,CH4,3.9,kg/TJ,151.4331,kg -e83a7058-38d2-3c83-b282-852fe40a8023,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2015,gas oil combustion consumption by to the public,38.829,TJ,N2O,3.9,kg/TJ,151.4331,kg -009d73a2-0409-3a86-bb43-2c0c27580b6e,SESCO,II.1.1,Tucuman,AR-T,annual,2015,gas oil combustion consumption by to the public,122.0967972,TJ,CO2,74100.0,kg/TJ,9047372.67252,kg -ae06977d-f338-3e8c-be90-44363096c3f7,SESCO,II.1.1,Tucuman,AR-T,annual,2015,gas oil combustion consumption by to the public,122.0967972,TJ,CH4,3.9,kg/TJ,476.17750908,kg -ae06977d-f338-3e8c-be90-44363096c3f7,SESCO,II.1.1,Tucuman,AR-T,annual,2015,gas oil combustion consumption by to the public,122.0967972,TJ,N2O,3.9,kg/TJ,476.17750908,kg -04b7bc36-0cb4-3760-84db-00c25532068c,SESCO,I.3.1,Buenos Aires,AR-B,annual,2015,gasoline combustion consumption by petrochemical industries,4.479616,TJ,CO2,69300.0,kg/TJ,310437.3888,kg -1bf742d9-76e9-3e4d-a992-2ac83c04a1d6,SESCO,I.3.1,Buenos Aires,AR-B,annual,2015,gasoline combustion consumption by petrochemical industries,4.479616,TJ,CH4,33.0,kg/TJ,147.827328,kg -c0e1cc08-628c-36a9-b5ae-268b3ce751a0,SESCO,I.3.1,Buenos Aires,AR-B,annual,2015,gasoline combustion consumption by petrochemical industries,4.479616,TJ,N2O,3.2,kg/TJ,14.3347712,kg -c2d5d190-4b1f-38db-ad77-65a3884b8044,SESCO,II.5.1,Capital Federal,AR-C,annual,2015,gasoline combustion consumption by agriculture machines,60.248,TJ,CO2,69300.0,kg/TJ,4175186.4,kg -604b4395-e7ed-3144-9d6e-fb714c896013,SESCO,II.5.1,Capital Federal,AR-C,annual,2015,gasoline combustion consumption by agriculture machines,60.248,TJ,CH4,33.0,kg/TJ,1988.184,kg -b30cd947-b34f-330f-9b1c-f09b0131cc07,SESCO,II.5.1,Capital Federal,AR-C,annual,2015,gasoline combustion consumption by agriculture machines,60.248,TJ,N2O,3.2,kg/TJ,192.7936,kg -e6021fba-0bd3-3f18-8f69-be382a49da43,SESCO,II.5.1,Buenos Aires,AR-B,annual,2015,gas oil combustion consumption by agriculture machines,440.55564,TJ,CO2,74100.0,kg/TJ,32645172.924,kg -7035be4e-fd37-3586-a359-a5631913600e,SESCO,II.5.1,Buenos Aires,AR-B,annual,2015,gas oil combustion consumption by agriculture machines,440.55564,TJ,CH4,3.9,kg/TJ,1718.166996,kg -7035be4e-fd37-3586-a359-a5631913600e,SESCO,II.5.1,Buenos Aires,AR-B,annual,2015,gas oil combustion consumption by agriculture machines,440.55564,TJ,N2O,3.9,kg/TJ,1718.166996,kg -e3d73b30-a3c0-3172-9ee8-4c8b9566d1ea,SESCO,II.5.1,Capital Federal,AR-C,annual,2015,gas oil combustion consumption by agriculture machines,21.16632,TJ,CO2,74100.0,kg/TJ,1568424.312,kg -26b83eec-daf3-3636-a54e-83821c20b080,SESCO,II.5.1,Capital Federal,AR-C,annual,2015,gas oil combustion consumption by agriculture machines,21.16632,TJ,CH4,3.9,kg/TJ,82.548648,kg -26b83eec-daf3-3636-a54e-83821c20b080,SESCO,II.5.1,Capital Federal,AR-C,annual,2015,gas oil combustion consumption by agriculture machines,21.16632,TJ,N2O,3.9,kg/TJ,82.548648,kg -1f141379-a5e9-3d58-94b7-a2c353f80517,SESCO,II.5.1,Córdoba,AR-X,annual,2015,gas oil combustion consumption by agriculture machines,166.07976,TJ,CO2,74100.0,kg/TJ,12306510.216,kg -139e20c5-59e1-3e56-8c9f-d917ce958207,SESCO,II.5.1,Córdoba,AR-X,annual,2015,gas oil combustion consumption by agriculture machines,166.07976,TJ,CH4,3.9,kg/TJ,647.711064,kg -139e20c5-59e1-3e56-8c9f-d917ce958207,SESCO,II.5.1,Córdoba,AR-X,annual,2015,gas oil combustion consumption by agriculture machines,166.07976,TJ,N2O,3.9,kg/TJ,647.711064,kg -1ba327d0-f9ce-351e-81c8-810340c989d3,SESCO,II.5.1,Santa Fe,AR-S,annual,2015,gas oil combustion consumption by agriculture machines,482.77992,TJ,CO2,74100.0,kg/TJ,35773992.072,kg -caec9172-e3af-3008-aadb-fcc0e707702a,SESCO,II.5.1,Santa Fe,AR-S,annual,2015,gas oil combustion consumption by agriculture machines,482.77992,TJ,CH4,3.9,kg/TJ,1882.841688,kg -caec9172-e3af-3008-aadb-fcc0e707702a,SESCO,II.5.1,Santa Fe,AR-S,annual,2015,gas oil combustion consumption by agriculture machines,482.77992,TJ,N2O,3.9,kg/TJ,1882.841688,kg -432b9c12-d887-35d6-a960-6a4df53626f5,SESCO,II.5.1,Buenos Aires,AR-B,annual,2015,gas oil combustion consumption by agriculture machines,7.26012,TJ,CO2,74100.0,kg/TJ,537974.892,kg -77bc9fe8-5005-3940-a105-affb5737a1c9,SESCO,II.5.1,Buenos Aires,AR-B,annual,2015,gas oil combustion consumption by agriculture machines,7.26012,TJ,CH4,3.9,kg/TJ,28.314467999999998,kg -77bc9fe8-5005-3940-a105-affb5737a1c9,SESCO,II.5.1,Buenos Aires,AR-B,annual,2015,gas oil combustion consumption by agriculture machines,7.26012,TJ,N2O,3.9,kg/TJ,28.314467999999998,kg -6272e44a-681e-3b6f-8c71-481df3bc7ac5,SESCO,II.5.1,Santa Fe,AR-S,annual,2015,gas oil combustion consumption by agriculture machines,21.63588,TJ,CO2,74100.0,kg/TJ,1603218.708,kg -2d74ee74-c249-3d44-9c29-f94df4d851b3,SESCO,II.5.1,Santa Fe,AR-S,annual,2015,gas oil combustion consumption by agriculture machines,21.63588,TJ,CH4,3.9,kg/TJ,84.379932,kg -2d74ee74-c249-3d44-9c29-f94df4d851b3,SESCO,II.5.1,Santa Fe,AR-S,annual,2015,gas oil combustion consumption by agriculture machines,21.63588,TJ,N2O,3.9,kg/TJ,84.379932,kg -356cb051-a1e2-37ee-94cf-e48575bcc418,SESCO,II.1.1,Buenos Aires,AR-B,annual,2015,gas oil combustion consumption by to the public,12129.6378,TJ,CO2,74100.0,kg/TJ,898806160.98,kg -49841838-8507-3a62-874c-a3693825becc,SESCO,II.1.1,Buenos Aires,AR-B,annual,2015,gas oil combustion consumption by to the public,12129.6378,TJ,CH4,3.9,kg/TJ,47305.58742,kg -49841838-8507-3a62-874c-a3693825becc,SESCO,II.1.1,Buenos Aires,AR-B,annual,2015,gas oil combustion consumption by to the public,12129.6378,TJ,N2O,3.9,kg/TJ,47305.58742,kg -3ee2a0ca-f37d-3c1a-9fee-b5a3bf0cb09d,SESCO,II.1.1,Capital Federal,AR-C,annual,2015,gas oil combustion consumption by to the public,1186.6142399999999,TJ,CO2,74100.0,kg/TJ,87928115.18399999,kg -0992e129-1c2c-3116-adc3-d438861831f6,SESCO,II.1.1,Capital Federal,AR-C,annual,2015,gas oil combustion consumption by to the public,1186.6142399999999,TJ,CH4,3.9,kg/TJ,4627.795536,kg -0992e129-1c2c-3116-adc3-d438861831f6,SESCO,II.1.1,Capital Federal,AR-C,annual,2015,gas oil combustion consumption by to the public,1186.6142399999999,TJ,N2O,3.9,kg/TJ,4627.795536,kg -e6b45fe4-2f09-3ab8-871f-4be677f4e526,SESCO,II.1.1,Catamarca,AR-K,annual,2015,gas oil combustion consumption by to the public,13.76172,TJ,CO2,74100.0,kg/TJ,1019743.452,kg -582689f9-6bb5-3951-bf34-7ed036f171b0,SESCO,II.1.1,Catamarca,AR-K,annual,2015,gas oil combustion consumption by to the public,13.76172,TJ,CH4,3.9,kg/TJ,53.670708,kg -582689f9-6bb5-3951-bf34-7ed036f171b0,SESCO,II.1.1,Catamarca,AR-K,annual,2015,gas oil combustion consumption by to the public,13.76172,TJ,N2O,3.9,kg/TJ,53.670708,kg -790057af-ddfb-3bf1-8c02-6fd688b938cd,SESCO,II.1.1,Chaco,AR-H,annual,2015,gas oil combustion consumption by to the public,1610.37408,TJ,CO2,74100.0,kg/TJ,119328719.32800001,kg -f312371d-9b69-3c5e-9c22-d1c1a83ccbd4,SESCO,II.1.1,Chaco,AR-H,annual,2015,gas oil combustion consumption by to the public,1610.37408,TJ,CH4,3.9,kg/TJ,6280.458912,kg -f312371d-9b69-3c5e-9c22-d1c1a83ccbd4,SESCO,II.1.1,Chaco,AR-H,annual,2015,gas oil combustion consumption by to the public,1610.37408,TJ,N2O,3.9,kg/TJ,6280.458912,kg -a194cb13-5e14-360c-988e-49b58c965e4d,SESCO,II.1.1,Corrientes,AR-W,annual,2015,gas oil combustion consumption by to the public,651.71316,TJ,CO2,74100.0,kg/TJ,48291945.156,kg -37f64efb-14fc-376b-8885-f8d708e33c4e,SESCO,II.1.1,Corrientes,AR-W,annual,2015,gas oil combustion consumption by to the public,651.71316,TJ,CH4,3.9,kg/TJ,2541.681324,kg -37f64efb-14fc-376b-8885-f8d708e33c4e,SESCO,II.1.1,Corrientes,AR-W,annual,2015,gas oil combustion consumption by to the public,651.71316,TJ,N2O,3.9,kg/TJ,2541.681324,kg -7ae40664-303c-3da1-9e4c-4d7386277436,SESCO,II.1.1,Córdoba,AR-X,annual,2015,gas oil combustion consumption by to the public,5083.78164,TJ,CO2,74100.0,kg/TJ,376708219.524,kg -5a025d6f-f258-3e2d-ba4d-ea720e232fe9,SESCO,II.1.1,Córdoba,AR-X,annual,2015,gas oil combustion consumption by to the public,5083.78164,TJ,CH4,3.9,kg/TJ,19826.748396,kg -5a025d6f-f258-3e2d-ba4d-ea720e232fe9,SESCO,II.1.1,Córdoba,AR-X,annual,2015,gas oil combustion consumption by to the public,5083.78164,TJ,N2O,3.9,kg/TJ,19826.748396,kg -14c93f77-7165-377b-bf90-ba19b35ad1fc,SESCO,II.1.1,Entre Rios,AR-E,annual,2015,gas oil combustion consumption by to the public,1131.60348,TJ,CO2,74100.0,kg/TJ,83851817.868,kg -b8823e0c-03a7-31a7-90fc-e2e653cc0f49,SESCO,II.1.1,Entre Rios,AR-E,annual,2015,gas oil combustion consumption by to the public,1131.60348,TJ,CH4,3.9,kg/TJ,4413.253572,kg -b8823e0c-03a7-31a7-90fc-e2e653cc0f49,SESCO,II.1.1,Entre Rios,AR-E,annual,2015,gas oil combustion consumption by to the public,1131.60348,TJ,N2O,3.9,kg/TJ,4413.253572,kg -ab8f94d2-35c5-377c-bd20-a6f3aa538100,SESCO,II.1.1,Formosa,AR-P,annual,2015,gas oil combustion consumption by to the public,172.68972,TJ,CO2,74100.0,kg/TJ,12796308.252,kg -78d37211-8ab4-3f0d-a3fa-188375d09f3f,SESCO,II.1.1,Formosa,AR-P,annual,2015,gas oil combustion consumption by to the public,172.68972,TJ,CH4,3.9,kg/TJ,673.489908,kg -78d37211-8ab4-3f0d-a3fa-188375d09f3f,SESCO,II.1.1,Formosa,AR-P,annual,2015,gas oil combustion consumption by to the public,172.68972,TJ,N2O,3.9,kg/TJ,673.489908,kg -86ac5f7f-8086-3969-b1ce-214fa433d455,SESCO,II.1.1,Jujuy,AR-Y,annual,2015,gas oil combustion consumption by to the public,120.38795999999999,TJ,CO2,74100.0,kg/TJ,8920747.836,kg -8205efa5-b162-3f2e-9cf7-c777d419a59e,SESCO,II.1.1,Jujuy,AR-Y,annual,2015,gas oil combustion consumption by to the public,120.38795999999999,TJ,CH4,3.9,kg/TJ,469.513044,kg -8205efa5-b162-3f2e-9cf7-c777d419a59e,SESCO,II.1.1,Jujuy,AR-Y,annual,2015,gas oil combustion consumption by to the public,120.38795999999999,TJ,N2O,3.9,kg/TJ,469.513044,kg -e22f1b86-aab5-3de5-82ba-018828e8b51b,SESCO,II.1.1,La Pampa,AR-L,annual,2015,gas oil combustion consumption by to the public,588.79212,TJ,CO2,74100.0,kg/TJ,43629496.092,kg -9aaa67d2-b067-33aa-a5ff-ef28ad6eecac,SESCO,II.1.1,La Pampa,AR-L,annual,2015,gas oil combustion consumption by to the public,588.79212,TJ,CH4,3.9,kg/TJ,2296.289268,kg -9aaa67d2-b067-33aa-a5ff-ef28ad6eecac,SESCO,II.1.1,La Pampa,AR-L,annual,2015,gas oil combustion consumption by to the public,588.79212,TJ,N2O,3.9,kg/TJ,2296.289268,kg -c7d466e6-77ff-3bbe-a374-aff1dda2bbc7,SESCO,II.1.1,La Rioja,AR-F,annual,2015,gas oil combustion consumption by to the public,245.03808,TJ,CO2,74100.0,kg/TJ,18157321.728,kg -b2cb9e73-8329-312d-a491-89dc051f26d4,SESCO,II.1.1,La Rioja,AR-F,annual,2015,gas oil combustion consumption by to the public,245.03808,TJ,CH4,3.9,kg/TJ,955.648512,kg -b2cb9e73-8329-312d-a491-89dc051f26d4,SESCO,II.1.1,La Rioja,AR-F,annual,2015,gas oil combustion consumption by to the public,245.03808,TJ,N2O,3.9,kg/TJ,955.648512,kg -b10def6c-33d4-3eb8-a039-e7baf1a3ee20,SESCO,II.1.1,Mendoza,AR-M,annual,2015,gas oil combustion consumption by to the public,547.5792,TJ,CO2,74100.0,kg/TJ,40575618.72,kg -34d2f7d4-f860-3c0f-892b-a39ace03fe67,SESCO,II.1.1,Mendoza,AR-M,annual,2015,gas oil combustion consumption by to the public,547.5792,TJ,CH4,3.9,kg/TJ,2135.55888,kg -34d2f7d4-f860-3c0f-892b-a39ace03fe67,SESCO,II.1.1,Mendoza,AR-M,annual,2015,gas oil combustion consumption by to the public,547.5792,TJ,N2O,3.9,kg/TJ,2135.55888,kg -f11d58db-d94e-376e-b85e-a5220e06df56,SESCO,II.1.1,Misiones,AR-N,annual,2015,gas oil combustion consumption by to the public,1276.26408,TJ,CO2,74100.0,kg/TJ,94571168.328,kg -2fd77bc4-0532-3d0b-82ba-18662a993dbc,SESCO,II.1.1,Misiones,AR-N,annual,2015,gas oil combustion consumption by to the public,1276.26408,TJ,CH4,3.9,kg/TJ,4977.429912,kg -2fd77bc4-0532-3d0b-82ba-18662a993dbc,SESCO,II.1.1,Misiones,AR-N,annual,2015,gas oil combustion consumption by to the public,1276.26408,TJ,N2O,3.9,kg/TJ,4977.429912,kg -b5323a65-b632-3211-a474-d7496fce1f59,SESCO,II.1.1,Neuquén,AR-Q,annual,2015,gas oil combustion consumption by to the public,686.85792,TJ,CO2,74100.0,kg/TJ,50896171.872,kg -3a16f1d2-13b0-3dff-ac1d-fde52a87f985,SESCO,II.1.1,Neuquén,AR-Q,annual,2015,gas oil combustion consumption by to the public,686.85792,TJ,CH4,3.9,kg/TJ,2678.745888,kg -3a16f1d2-13b0-3dff-ac1d-fde52a87f985,SESCO,II.1.1,Neuquén,AR-Q,annual,2015,gas oil combustion consumption by to the public,686.85792,TJ,N2O,3.9,kg/TJ,2678.745888,kg -a0b50633-b35c-3ad2-80f1-240b87ceb00b,SESCO,II.1.1,Rio Negro,AR-R,annual,2015,gas oil combustion consumption by to the public,199.77972,TJ,CO2,74100.0,kg/TJ,14803677.252,kg -9a5a77cb-a8b1-3ec8-99b0-6af759095a02,SESCO,II.1.1,Rio Negro,AR-R,annual,2015,gas oil combustion consumption by to the public,199.77972,TJ,CH4,3.9,kg/TJ,779.140908,kg -9a5a77cb-a8b1-3ec8-99b0-6af759095a02,SESCO,II.1.1,Rio Negro,AR-R,annual,2015,gas oil combustion consumption by to the public,199.77972,TJ,N2O,3.9,kg/TJ,779.140908,kg -8b6248a1-4bf0-3b98-bed6-f6477a5ebe82,SESCO,II.1.1,Salta,AR-A,annual,2015,gas oil combustion consumption by to the public,119.70168,TJ,CO2,74100.0,kg/TJ,8869894.488,kg -ffccf8ea-8e7d-3c96-a621-fdad389a730a,SESCO,II.1.1,Salta,AR-A,annual,2015,gas oil combustion consumption by to the public,119.70168,TJ,CH4,3.9,kg/TJ,466.836552,kg -ffccf8ea-8e7d-3c96-a621-fdad389a730a,SESCO,II.1.1,Salta,AR-A,annual,2015,gas oil combustion consumption by to the public,119.70168,TJ,N2O,3.9,kg/TJ,466.836552,kg -0a4dd393-00f9-3568-ae94-270b13931dce,SESCO,II.1.1,San Juan,AR-J,annual,2015,gas oil combustion consumption by to the public,213.54144,TJ,CO2,74100.0,kg/TJ,15823420.704,kg -4e61c63a-8f2b-3485-b884-b654d35fda39,SESCO,II.1.1,San Juan,AR-J,annual,2015,gas oil combustion consumption by to the public,213.54144,TJ,CH4,3.9,kg/TJ,832.811616,kg -4e61c63a-8f2b-3485-b884-b654d35fda39,SESCO,II.1.1,San Juan,AR-J,annual,2015,gas oil combustion consumption by to the public,213.54144,TJ,N2O,3.9,kg/TJ,832.811616,kg -b41ac6c3-6a0e-3f55-8894-47631f64de2d,SESCO,II.1.1,San Luis,AR-D,annual,2015,gas oil combustion consumption by to the public,21.094079999999998,TJ,CO2,74100.0,kg/TJ,1563071.328,kg -874e900e-4848-3013-999b-024d4b0557b9,SESCO,II.1.1,San Luis,AR-D,annual,2015,gas oil combustion consumption by to the public,21.094079999999998,TJ,CH4,3.9,kg/TJ,82.26691199999999,kg -874e900e-4848-3013-999b-024d4b0557b9,SESCO,II.1.1,San Luis,AR-D,annual,2015,gas oil combustion consumption by to the public,21.094079999999998,TJ,N2O,3.9,kg/TJ,82.26691199999999,kg -dba774c2-f906-31c2-bd07-585eacd9ca3f,SESCO,II.1.1,Santa Fe,AR-S,annual,2015,gas oil combustion consumption by to the public,4896.86064,TJ,CO2,74100.0,kg/TJ,362857373.42399997,kg -09ba5e8a-d9c1-3bb3-a918-71e47469c6a5,SESCO,II.1.1,Santa Fe,AR-S,annual,2015,gas oil combustion consumption by to the public,4896.86064,TJ,CH4,3.9,kg/TJ,19097.756495999998,kg -09ba5e8a-d9c1-3bb3-a918-71e47469c6a5,SESCO,II.1.1,Santa Fe,AR-S,annual,2015,gas oil combustion consumption by to the public,4896.86064,TJ,N2O,3.9,kg/TJ,19097.756495999998,kg -9bfe6431-ffd7-3cbd-bb74-85d4b6d4494f,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2015,gas oil combustion consumption by to the public,405.6276,TJ,CO2,74100.0,kg/TJ,30057005.159999996,kg -e15e6cb2-d8b6-32c7-99dc-c7233f760bf6,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2015,gas oil combustion consumption by to the public,405.6276,TJ,CH4,3.9,kg/TJ,1581.9476399999999,kg -e15e6cb2-d8b6-32c7-99dc-c7233f760bf6,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2015,gas oil combustion consumption by to the public,405.6276,TJ,N2O,3.9,kg/TJ,1581.9476399999999,kg -417aa7c2-9d3e-378e-a51b-01a97fa37d35,SESCO,II.1.1,Tucuman,AR-T,annual,2015,gas oil combustion consumption by to the public,662.6214,TJ,CO2,74100.0,kg/TJ,49100245.74,kg -1bf9d0c9-2d1b-3c80-88ba-f9ebee9b0b2e,SESCO,II.1.1,Tucuman,AR-T,annual,2015,gas oil combustion consumption by to the public,662.6214,TJ,CH4,3.9,kg/TJ,2584.2234599999997,kg -1bf9d0c9-2d1b-3c80-88ba-f9ebee9b0b2e,SESCO,II.1.1,Tucuman,AR-T,annual,2015,gas oil combustion consumption by to the public,662.6214,TJ,N2O,3.9,kg/TJ,2584.2234599999997,kg -2eafbf9c-2539-3195-87e8-191225021635,SESCO,II.1.1,Buenos Aires,AR-B,annual,2015,gas oil combustion consumption by to the public,7258.53072,TJ,CO2,74100.0,kg/TJ,537857126.352,kg -a674386d-13e0-367b-9608-580398846673,SESCO,II.1.1,Buenos Aires,AR-B,annual,2015,gas oil combustion consumption by to the public,7258.53072,TJ,CH4,3.9,kg/TJ,28308.269807999997,kg -a674386d-13e0-367b-9608-580398846673,SESCO,II.1.1,Buenos Aires,AR-B,annual,2015,gas oil combustion consumption by to the public,7258.53072,TJ,N2O,3.9,kg/TJ,28308.269807999997,kg -2be4ddcf-6556-3049-aabb-09b6f2898255,SESCO,II.1.1,Capital Federal,AR-C,annual,2015,gas oil combustion consumption by to the public,1269.18456,TJ,CO2,74100.0,kg/TJ,94046575.896,kg -e0dfeb83-efa7-3f89-94dc-8aac18d3203e,SESCO,II.1.1,Capital Federal,AR-C,annual,2015,gas oil combustion consumption by to the public,1269.18456,TJ,CH4,3.9,kg/TJ,4949.819783999999,kg -e0dfeb83-efa7-3f89-94dc-8aac18d3203e,SESCO,II.1.1,Capital Federal,AR-C,annual,2015,gas oil combustion consumption by to the public,1269.18456,TJ,N2O,3.9,kg/TJ,4949.819783999999,kg -3b071502-0432-36ef-9c59-23c34d5d706e,SESCO,II.1.1,Catamarca,AR-K,annual,2015,gas oil combustion consumption by to the public,36.22836,TJ,CO2,74100.0,kg/TJ,2684521.4760000003,kg -0f2667fd-b6ee-3513-8a2d-a5c2409fada7,SESCO,II.1.1,Catamarca,AR-K,annual,2015,gas oil combustion consumption by to the public,36.22836,TJ,CH4,3.9,kg/TJ,141.290604,kg -0f2667fd-b6ee-3513-8a2d-a5c2409fada7,SESCO,II.1.1,Catamarca,AR-K,annual,2015,gas oil combustion consumption by to the public,36.22836,TJ,N2O,3.9,kg/TJ,141.290604,kg -d1f837fd-6fa4-37ca-a277-484c545c73fc,SESCO,II.1.1,Chaco,AR-H,annual,2015,gas oil combustion consumption by to the public,397.28388,TJ,CO2,74100.0,kg/TJ,29438735.508,kg -5c014c10-8f67-3382-898d-3d2eb6dcd736,SESCO,II.1.1,Chaco,AR-H,annual,2015,gas oil combustion consumption by to the public,397.28388,TJ,CH4,3.9,kg/TJ,1549.407132,kg -5c014c10-8f67-3382-898d-3d2eb6dcd736,SESCO,II.1.1,Chaco,AR-H,annual,2015,gas oil combustion consumption by to the public,397.28388,TJ,N2O,3.9,kg/TJ,1549.407132,kg -8632ef60-8f8c-3079-af1e-e44680a19593,SESCO,II.1.1,Corrientes,AR-W,annual,2015,gas oil combustion consumption by to the public,307.34508,TJ,CO2,74100.0,kg/TJ,22774270.428,kg -36b2488a-54d6-3cda-95f7-5e1ed0f3a899,SESCO,II.1.1,Corrientes,AR-W,annual,2015,gas oil combustion consumption by to the public,307.34508,TJ,CH4,3.9,kg/TJ,1198.645812,kg -36b2488a-54d6-3cda-95f7-5e1ed0f3a899,SESCO,II.1.1,Corrientes,AR-W,annual,2015,gas oil combustion consumption by to the public,307.34508,TJ,N2O,3.9,kg/TJ,1198.645812,kg -7daef7e3-5f5f-37ee-a186-01e96419708b,SESCO,II.1.1,Córdoba,AR-X,annual,2015,gas oil combustion consumption by to the public,1275.61392,TJ,CO2,74100.0,kg/TJ,94522991.472,kg -59451453-2815-301c-99b9-0c0627f65a7b,SESCO,II.1.1,Córdoba,AR-X,annual,2015,gas oil combustion consumption by to the public,1275.61392,TJ,CH4,3.9,kg/TJ,4974.8942879999995,kg -59451453-2815-301c-99b9-0c0627f65a7b,SESCO,II.1.1,Córdoba,AR-X,annual,2015,gas oil combustion consumption by to the public,1275.61392,TJ,N2O,3.9,kg/TJ,4974.8942879999995,kg -1063f6d6-a349-387b-81af-3160f2963481,SESCO,II.1.1,Entre Rios,AR-E,annual,2015,gas oil combustion consumption by to the public,651.92988,TJ,CO2,74100.0,kg/TJ,48308004.108,kg -edf7aa71-0fcc-388f-970c-6860ed88bf52,SESCO,II.1.1,Entre Rios,AR-E,annual,2015,gas oil combustion consumption by to the public,651.92988,TJ,CH4,3.9,kg/TJ,2542.526532,kg -edf7aa71-0fcc-388f-970c-6860ed88bf52,SESCO,II.1.1,Entre Rios,AR-E,annual,2015,gas oil combustion consumption by to the public,651.92988,TJ,N2O,3.9,kg/TJ,2542.526532,kg -3d35da88-76b9-359d-9b5b-0a43d42c02e4,SESCO,II.1.1,Formosa,AR-P,annual,2015,gas oil combustion consumption by to the public,149.06724,TJ,CO2,74100.0,kg/TJ,11045882.484,kg -b24b8624-047a-31b6-b954-6081ba539ea7,SESCO,II.1.1,Formosa,AR-P,annual,2015,gas oil combustion consumption by to the public,149.06724,TJ,CH4,3.9,kg/TJ,581.3622359999999,kg -b24b8624-047a-31b6-b954-6081ba539ea7,SESCO,II.1.1,Formosa,AR-P,annual,2015,gas oil combustion consumption by to the public,149.06724,TJ,N2O,3.9,kg/TJ,581.3622359999999,kg -43394cdb-f5ac-3c62-8a86-2b7f78c3ff63,SESCO,II.1.1,Jujuy,AR-Y,annual,2015,gas oil combustion consumption by to the public,44.6082,TJ,CO2,74100.0,kg/TJ,3305467.6199999996,kg -4b2f4e56-e3b9-342c-8a2c-c1156f7f683a,SESCO,II.1.1,Jujuy,AR-Y,annual,2015,gas oil combustion consumption by to the public,44.6082,TJ,CH4,3.9,kg/TJ,173.97197999999997,kg -4b2f4e56-e3b9-342c-8a2c-c1156f7f683a,SESCO,II.1.1,Jujuy,AR-Y,annual,2015,gas oil combustion consumption by to the public,44.6082,TJ,N2O,3.9,kg/TJ,173.97197999999997,kg -1ae4a1e5-632b-3ea4-a4cb-6355133f4320,SESCO,II.1.1,La Pampa,AR-L,annual,2015,gas oil combustion consumption by to the public,217.47852,TJ,CO2,74100.0,kg/TJ,16115158.332,kg -c8b1cf77-6215-341a-83d0-31a1e392163a,SESCO,II.1.1,La Pampa,AR-L,annual,2015,gas oil combustion consumption by to the public,217.47852,TJ,CH4,3.9,kg/TJ,848.166228,kg -c8b1cf77-6215-341a-83d0-31a1e392163a,SESCO,II.1.1,La Pampa,AR-L,annual,2015,gas oil combustion consumption by to the public,217.47852,TJ,N2O,3.9,kg/TJ,848.166228,kg -c159b0c7-9228-31ed-a134-a34c6f416030,SESCO,II.1.1,La Rioja,AR-F,annual,2015,gas oil combustion consumption by to the public,117.7512,TJ,CO2,74100.0,kg/TJ,8725363.92,kg -0a0e9f29-6e67-3531-8f76-10a0b8842e62,SESCO,II.1.1,La Rioja,AR-F,annual,2015,gas oil combustion consumption by to the public,117.7512,TJ,CH4,3.9,kg/TJ,459.22968,kg -0a0e9f29-6e67-3531-8f76-10a0b8842e62,SESCO,II.1.1,La Rioja,AR-F,annual,2015,gas oil combustion consumption by to the public,117.7512,TJ,N2O,3.9,kg/TJ,459.22968,kg -1e1c981c-71d7-30eb-b07e-5dfdae23dd64,SESCO,II.1.1,Mendoza,AR-M,annual,2015,gas oil combustion consumption by to the public,366.14844,TJ,CO2,74100.0,kg/TJ,27131599.404,kg -80c87abf-52db-3024-83da-7fb5f083a7bc,SESCO,II.1.1,Mendoza,AR-M,annual,2015,gas oil combustion consumption by to the public,366.14844,TJ,CH4,3.9,kg/TJ,1427.978916,kg -80c87abf-52db-3024-83da-7fb5f083a7bc,SESCO,II.1.1,Mendoza,AR-M,annual,2015,gas oil combustion consumption by to the public,366.14844,TJ,N2O,3.9,kg/TJ,1427.978916,kg -3796b440-99df-3129-9580-e36f34cf0a5c,SESCO,II.1.1,Misiones,AR-N,annual,2015,gas oil combustion consumption by to the public,375.32292,TJ,CO2,74100.0,kg/TJ,27811428.372,kg -5c25e02c-b6fc-3c3f-aa24-2e68a03a7fbb,SESCO,II.1.1,Misiones,AR-N,annual,2015,gas oil combustion consumption by to the public,375.32292,TJ,CH4,3.9,kg/TJ,1463.759388,kg -5c25e02c-b6fc-3c3f-aa24-2e68a03a7fbb,SESCO,II.1.1,Misiones,AR-N,annual,2015,gas oil combustion consumption by to the public,375.32292,TJ,N2O,3.9,kg/TJ,1463.759388,kg -efa04700-44c2-3d2c-b681-b71cdf0450ca,SESCO,II.1.1,Neuquén,AR-Q,annual,2015,gas oil combustion consumption by to the public,455.94275999999996,TJ,CO2,74100.0,kg/TJ,33785358.515999995,kg -3155c169-5c75-34b1-b35a-32f430586f4c,SESCO,II.1.1,Neuquén,AR-Q,annual,2015,gas oil combustion consumption by to the public,455.94275999999996,TJ,CH4,3.9,kg/TJ,1778.1767639999998,kg -3155c169-5c75-34b1-b35a-32f430586f4c,SESCO,II.1.1,Neuquén,AR-Q,annual,2015,gas oil combustion consumption by to the public,455.94275999999996,TJ,N2O,3.9,kg/TJ,1778.1767639999998,kg -df026e2d-c777-369a-aa1d-7f5801e0e83c,SESCO,II.1.1,Rio Negro,AR-R,annual,2015,gas oil combustion consumption by to the public,126.74508,TJ,CO2,74100.0,kg/TJ,9391810.428,kg -9a127452-dc71-38fd-b5ad-3fd256dde404,SESCO,II.1.1,Rio Negro,AR-R,annual,2015,gas oil combustion consumption by to the public,126.74508,TJ,CH4,3.9,kg/TJ,494.305812,kg -9a127452-dc71-38fd-b5ad-3fd256dde404,SESCO,II.1.1,Rio Negro,AR-R,annual,2015,gas oil combustion consumption by to the public,126.74508,TJ,N2O,3.9,kg/TJ,494.305812,kg -21fd236a-373b-3c5a-89fc-5bbff4e931db,SESCO,II.1.1,Salta,AR-A,annual,2015,gas oil combustion consumption by to the public,99.72731999999999,TJ,CO2,74100.0,kg/TJ,7389794.412,kg -de838bc3-aba0-30d7-bf9b-0a47606f501a,SESCO,II.1.1,Salta,AR-A,annual,2015,gas oil combustion consumption by to the public,99.72731999999999,TJ,CH4,3.9,kg/TJ,388.93654799999996,kg -de838bc3-aba0-30d7-bf9b-0a47606f501a,SESCO,II.1.1,Salta,AR-A,annual,2015,gas oil combustion consumption by to the public,99.72731999999999,TJ,N2O,3.9,kg/TJ,388.93654799999996,kg -a07eef49-b600-388a-965e-0a17a711c503,SESCO,II.1.1,San Juan,AR-J,annual,2015,gas oil combustion consumption by to the public,64.40196,TJ,CO2,74100.0,kg/TJ,4772185.2360000005,kg -9b47b4d1-f5d9-3404-b8c1-6c1fde159133,SESCO,II.1.1,San Juan,AR-J,annual,2015,gas oil combustion consumption by to the public,64.40196,TJ,CH4,3.9,kg/TJ,251.167644,kg -9b47b4d1-f5d9-3404-b8c1-6c1fde159133,SESCO,II.1.1,San Juan,AR-J,annual,2015,gas oil combustion consumption by to the public,64.40196,TJ,N2O,3.9,kg/TJ,251.167644,kg -647a4e69-681f-3360-bd5a-adff1a7119bb,SESCO,II.1.1,San Luis,AR-D,annual,2015,gas oil combustion consumption by to the public,24.0198,TJ,CO2,74100.0,kg/TJ,1779867.18,kg -c64daa9f-8b48-3a11-a469-12dc63906050,SESCO,II.1.1,San Luis,AR-D,annual,2015,gas oil combustion consumption by to the public,24.0198,TJ,CH4,3.9,kg/TJ,93.67721999999999,kg -c64daa9f-8b48-3a11-a469-12dc63906050,SESCO,II.1.1,San Luis,AR-D,annual,2015,gas oil combustion consumption by to the public,24.0198,TJ,N2O,3.9,kg/TJ,93.67721999999999,kg -53d91177-ac43-341d-aa5e-9512ed12cd41,SESCO,II.1.1,Santa Fe,AR-S,annual,2015,gas oil combustion consumption by to the public,1889.54556,TJ,CO2,74100.0,kg/TJ,140015325.996,kg -1695c644-6f50-36c4-a8d6-ebbdecf9898f,SESCO,II.1.1,Santa Fe,AR-S,annual,2015,gas oil combustion consumption by to the public,1889.54556,TJ,CH4,3.9,kg/TJ,7369.2276839999995,kg -1695c644-6f50-36c4-a8d6-ebbdecf9898f,SESCO,II.1.1,Santa Fe,AR-S,annual,2015,gas oil combustion consumption by to the public,1889.54556,TJ,N2O,3.9,kg/TJ,7369.2276839999995,kg -c000afb8-2c67-36a2-b922-b8350c32b153,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2015,gas oil combustion consumption by to the public,183.20064,TJ,CO2,74100.0,kg/TJ,13575167.423999999,kg -aef3af46-05f9-3dfa-8630-f191a06d90f4,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2015,gas oil combustion consumption by to the public,183.20064,TJ,CH4,3.9,kg/TJ,714.482496,kg -aef3af46-05f9-3dfa-8630-f191a06d90f4,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2015,gas oil combustion consumption by to the public,183.20064,TJ,N2O,3.9,kg/TJ,714.482496,kg -11f35220-5395-352c-9ed4-6a60ef252489,SESCO,II.1.1,Tucuman,AR-T,annual,2015,gas oil combustion consumption by to the public,351.08639999999997,TJ,CO2,74100.0,kg/TJ,26015502.24,kg -82debf70-39c5-3cbc-92df-30c08865a948,SESCO,II.1.1,Tucuman,AR-T,annual,2015,gas oil combustion consumption by to the public,351.08639999999997,TJ,CH4,3.9,kg/TJ,1369.23696,kg -82debf70-39c5-3cbc-92df-30c08865a948,SESCO,II.1.1,Tucuman,AR-T,annual,2015,gas oil combustion consumption by to the public,351.08639999999997,TJ,N2O,3.9,kg/TJ,1369.23696,kg -9511f5dc-e3da-39cb-92f9-81a4d36debc0,SESCO,II.1.1,Buenos Aires,AR-B,annual,2015,jet kerosene combustion consumption by to the public,1.4782909999999998,TJ,CO2,71500.0,kg/TJ,105697.80649999999,kg -926b30df-69a7-3559-a65f-6e5f208048ee,SESCO,II.1.1,Buenos Aires,AR-B,annual,2015,jet kerosene combustion consumption by to the public,1.4782909999999998,TJ,CH4,0.5,kg/TJ,0.7391454999999999,kg -bf995fff-4793-37e4-8be9-bca94c9db965,SESCO,II.1.1,Buenos Aires,AR-B,annual,2015,jet kerosene combustion consumption by to the public,1.4782909999999998,TJ,N2O,2.0,kg/TJ,2.9565819999999996,kg -e1e53ab8-0858-3f41-81a0-9ceb60b9786e,SESCO,II.1.1,Entre Rios,AR-E,annual,2015,jet kerosene combustion consumption by to the public,4.025983999999999,TJ,CO2,71500.0,kg/TJ,287857.85599999997,kg -031f0cf6-5d35-3195-8f32-8e9757298b5f,SESCO,II.1.1,Entre Rios,AR-E,annual,2015,jet kerosene combustion consumption by to the public,4.025983999999999,TJ,CH4,0.5,kg/TJ,2.0129919999999997,kg -893fbe45-cba8-3347-b137-a8d202c56e29,SESCO,II.1.1,Entre Rios,AR-E,annual,2015,jet kerosene combustion consumption by to the public,4.025983999999999,TJ,N2O,2.0,kg/TJ,8.051967999999999,kg -772ff027-ecfa-3e49-a460-0890e67bc66f,SESCO,II.1.1,Santa Fe,AR-S,annual,2015,jet kerosene combustion consumption by to the public,3.1452999999999993,TJ,CO2,71500.0,kg/TJ,224888.94999999995,kg -e9990713-c5a6-3769-9d5a-817405ff98b9,SESCO,II.1.1,Santa Fe,AR-S,annual,2015,jet kerosene combustion consumption by to the public,3.1452999999999993,TJ,CH4,0.5,kg/TJ,1.5726499999999997,kg -d82592e7-cca5-3995-aa6d-ca4457ebc208,SESCO,II.1.1,Santa Fe,AR-S,annual,2015,jet kerosene combustion consumption by to the public,3.1452999999999993,TJ,N2O,2.0,kg/TJ,6.290599999999999,kg -0743bd13-7a4e-3d4f-9e84-b54595a3fed3,SESCO,I.3.1,Buenos Aires,AR-B,annual,2015,gasoline combustion consumption by petrochemical industries,41.5091,TJ,CO2,69300.0,kg/TJ,2876580.63,kg -90ec23a1-bb6b-3b94-8898-148c1c5720fd,SESCO,I.3.1,Buenos Aires,AR-B,annual,2015,gasoline combustion consumption by petrochemical industries,41.5091,TJ,CH4,33.0,kg/TJ,1369.8002999999999,kg -3ab8c8b7-6f09-3b58-88bb-472e81020d8b,SESCO,I.3.1,Buenos Aires,AR-B,annual,2015,gasoline combustion consumption by petrochemical industries,41.5091,TJ,N2O,3.2,kg/TJ,132.82912,kg -55176457-cb25-3049-8c4f-35d4c082a082,SESCO,I.3.1,Buenos Aires,AR-B,annual,2015,gas oil combustion consumption by petrochemical industries,1.0836,TJ,CO2,74100.0,kg/TJ,80294.76,kg -22ce5a88-3842-31b7-a4b3-2449e9805851,SESCO,I.3.1,Buenos Aires,AR-B,annual,2015,gas oil combustion consumption by petrochemical industries,1.0836,TJ,CH4,3.9,kg/TJ,4.226039999999999,kg -22ce5a88-3842-31b7-a4b3-2449e9805851,SESCO,I.3.1,Buenos Aires,AR-B,annual,2015,gas oil combustion consumption by petrochemical industries,1.0836,TJ,N2O,3.9,kg/TJ,4.226039999999999,kg -46f5160d-9457-38c3-87d8-ec2203319c46,SESCO,I.3.1,Capital Federal,AR-C,annual,2015,gas oil combustion consumption by petrochemical industries,2.3478,TJ,CO2,74100.0,kg/TJ,173971.97999999998,kg -2e321b8f-16a9-35a3-9dd6-fb915fb3974f,SESCO,I.3.1,Capital Federal,AR-C,annual,2015,gas oil combustion consumption by petrochemical industries,2.3478,TJ,CH4,3.9,kg/TJ,9.156419999999999,kg -2e321b8f-16a9-35a3-9dd6-fb915fb3974f,SESCO,I.3.1,Capital Federal,AR-C,annual,2015,gas oil combustion consumption by petrochemical industries,2.3478,TJ,N2O,3.9,kg/TJ,9.156419999999999,kg -89f3aa03-492e-3376-98f5-228c93ab23e8,SESCO,II.2.1,Buenos Aires,AR-B,annual,2015,gas oil combustion consumption by railway transport,539.52444,TJ,CO2,74100.0,kg/TJ,39978761.004,kg -02aeb827-57e0-39f3-9e50-21a16055c376,SESCO,II.2.1,Buenos Aires,AR-B,annual,2015,gas oil combustion consumption by railway transport,539.52444,TJ,CH4,3.9,kg/TJ,2104.145316,kg -02aeb827-57e0-39f3-9e50-21a16055c376,SESCO,II.2.1,Buenos Aires,AR-B,annual,2015,gas oil combustion consumption by railway transport,539.52444,TJ,N2O,3.9,kg/TJ,2104.145316,kg -cd80a16d-76a1-3583-ba36-b46f3c6021af,SESCO,II.2.1,Capital Federal,AR-C,annual,2015,gas oil combustion consumption by railway transport,281.3748,TJ,CO2,74100.0,kg/TJ,20849872.68,kg -cdbc6d22-0c9f-3b33-a6e6-5a41f2ec9e1b,SESCO,II.2.1,Capital Federal,AR-C,annual,2015,gas oil combustion consumption by railway transport,281.3748,TJ,CH4,3.9,kg/TJ,1097.3617199999999,kg -cdbc6d22-0c9f-3b33-a6e6-5a41f2ec9e1b,SESCO,II.2.1,Capital Federal,AR-C,annual,2015,gas oil combustion consumption by railway transport,281.3748,TJ,N2O,3.9,kg/TJ,1097.3617199999999,kg -55708f1a-08e3-3fdf-a3e4-91b7b94a5a58,SESCO,II.2.1,Santa Fe,AR-S,annual,2015,gas oil combustion consumption by railway transport,352.45896,TJ,CO2,74100.0,kg/TJ,26117208.936,kg -747ec81c-105d-33f0-b072-2d3a61fdd940,SESCO,II.2.1,Santa Fe,AR-S,annual,2015,gas oil combustion consumption by railway transport,352.45896,TJ,CH4,3.9,kg/TJ,1374.5899439999998,kg -747ec81c-105d-33f0-b072-2d3a61fdd940,SESCO,II.2.1,Santa Fe,AR-S,annual,2015,gas oil combustion consumption by railway transport,352.45896,TJ,N2O,3.9,kg/TJ,1374.5899439999998,kg -06087d13-9db0-342f-b420-c2eb377c4e63,SESCO,II.2.1,Capital Federal,AR-C,annual,2015,gas oil combustion consumption by railway transport,0.75852,TJ,CO2,74100.0,kg/TJ,56206.331999999995,kg -30883a31-1d68-3863-9f27-ee145973d778,SESCO,II.2.1,Capital Federal,AR-C,annual,2015,gas oil combustion consumption by railway transport,0.75852,TJ,CH4,3.9,kg/TJ,2.9582279999999996,kg -30883a31-1d68-3863-9f27-ee145973d778,SESCO,II.2.1,Capital Federal,AR-C,annual,2015,gas oil combustion consumption by railway transport,0.75852,TJ,N2O,3.9,kg/TJ,2.9582279999999996,kg -6338f2d0-417a-3055-891a-3c383dedbdf0,SESCO,II.1.1,Buenos Aires,AR-B,annual,2015,gasoline combustion consumption by freight transport,10.3219,TJ,CO2,69300.0,kg/TJ,715307.6699999999,kg -e069689b-b581-38db-9b89-fd59135a9f02,SESCO,II.1.1,Buenos Aires,AR-B,annual,2015,gasoline combustion consumption by freight transport,10.3219,TJ,CH4,33.0,kg/TJ,340.6227,kg -df0aa558-016c-3da8-8d33-8ba8bd28da10,SESCO,II.1.1,Buenos Aires,AR-B,annual,2015,gasoline combustion consumption by freight transport,10.3219,TJ,N2O,3.2,kg/TJ,33.03008,kg -fc185a9c-a339-3002-a8bc-13c18df1bfec,SESCO,II.1.1,Capital Federal,AR-C,annual,2015,gasoline combustion consumption by freight transport,9.5688,TJ,CO2,69300.0,kg/TJ,663117.84,kg -6f4dc749-cb84-3932-9c67-4098f722c43a,SESCO,II.1.1,Capital Federal,AR-C,annual,2015,gasoline combustion consumption by freight transport,9.5688,TJ,CH4,33.0,kg/TJ,315.7704,kg -01628c9f-681d-3137-a7e9-a095b7e6e273,SESCO,II.1.1,Capital Federal,AR-C,annual,2015,gasoline combustion consumption by freight transport,9.5688,TJ,N2O,3.2,kg/TJ,30.62016,kg -9a63ab71-b80d-303e-be58-c06cc2d027b0,SESCO,II.1.1,Buenos Aires,AR-B,annual,2015,gas oil combustion consumption by freight transport,567.987,TJ,CO2,74100.0,kg/TJ,42087836.699999996,kg -46623fb3-b51a-3e1b-be1a-2964ffd36a53,SESCO,II.1.1,Buenos Aires,AR-B,annual,2015,gas oil combustion consumption by freight transport,567.987,TJ,CH4,3.9,kg/TJ,2215.1493,kg -46623fb3-b51a-3e1b-be1a-2964ffd36a53,SESCO,II.1.1,Buenos Aires,AR-B,annual,2015,gas oil combustion consumption by freight transport,567.987,TJ,N2O,3.9,kg/TJ,2215.1493,kg -a5109dd3-23cd-31ba-a28f-b696384b403a,SESCO,II.1.1,Capital Federal,AR-C,annual,2015,gas oil combustion consumption by freight transport,193.96439999999998,TJ,CO2,74100.0,kg/TJ,14372762.04,kg -a438eb60-bdb3-3ac0-81c7-4005d530dc0b,SESCO,II.1.1,Capital Federal,AR-C,annual,2015,gas oil combustion consumption by freight transport,193.96439999999998,TJ,CH4,3.9,kg/TJ,756.46116,kg -a438eb60-bdb3-3ac0-81c7-4005d530dc0b,SESCO,II.1.1,Capital Federal,AR-C,annual,2015,gas oil combustion consumption by freight transport,193.96439999999998,TJ,N2O,3.9,kg/TJ,756.46116,kg -4b4776d1-d401-3e64-92cf-0cfa58733839,SESCO,II.1.1,Córdoba,AR-X,annual,2015,gas oil combustion consumption by freight transport,132.63264,TJ,CO2,74100.0,kg/TJ,9828078.624,kg -ed5cadeb-3d6e-31b8-ab8b-58580d43b931,SESCO,II.1.1,Córdoba,AR-X,annual,2015,gas oil combustion consumption by freight transport,132.63264,TJ,CH4,3.9,kg/TJ,517.267296,kg -ed5cadeb-3d6e-31b8-ab8b-58580d43b931,SESCO,II.1.1,Córdoba,AR-X,annual,2015,gas oil combustion consumption by freight transport,132.63264,TJ,N2O,3.9,kg/TJ,517.267296,kg -93c28e86-9ece-3307-9a13-8061184d52d4,SESCO,II.1.1,San Juan,AR-J,annual,2015,gas oil combustion consumption by freight transport,1.33644,TJ,CO2,74100.0,kg/TJ,99030.20400000001,kg -b121ab16-c847-3ad8-89d1-c15f5d2a64d5,SESCO,II.1.1,San Juan,AR-J,annual,2015,gas oil combustion consumption by freight transport,1.33644,TJ,CH4,3.9,kg/TJ,5.212116,kg -b121ab16-c847-3ad8-89d1-c15f5d2a64d5,SESCO,II.1.1,San Juan,AR-J,annual,2015,gas oil combustion consumption by freight transport,1.33644,TJ,N2O,3.9,kg/TJ,5.212116,kg -83a8a190-40e2-3d90-9387-66f63069bb25,SESCO,II.1.1,Buenos Aires,AR-B,annual,2015,gas oil combustion consumption by freight transport,8.59656,TJ,CO2,74100.0,kg/TJ,637005.096,kg -f5417b8c-dff2-321e-b443-2f4cace931a4,SESCO,II.1.1,Buenos Aires,AR-B,annual,2015,gas oil combustion consumption by freight transport,8.59656,TJ,CH4,3.9,kg/TJ,33.526584,kg -f5417b8c-dff2-321e-b443-2f4cace931a4,SESCO,II.1.1,Buenos Aires,AR-B,annual,2015,gas oil combustion consumption by freight transport,8.59656,TJ,N2O,3.9,kg/TJ,33.526584,kg -be4a6696-14a8-384a-a6df-e7817b520c1b,SESCO,II.1.1,Córdoba,AR-X,annual,2015,gas oil combustion consumption by freight transport,0.75852,TJ,CO2,74100.0,kg/TJ,56206.331999999995,kg -44f8ee51-a865-328d-b0f7-72d9a645745d,SESCO,II.1.1,Córdoba,AR-X,annual,2015,gas oil combustion consumption by freight transport,0.75852,TJ,CH4,3.9,kg/TJ,2.9582279999999996,kg -44f8ee51-a865-328d-b0f7-72d9a645745d,SESCO,II.1.1,Córdoba,AR-X,annual,2015,gas oil combustion consumption by freight transport,0.75852,TJ,N2O,3.9,kg/TJ,2.9582279999999996,kg -9c928086-ad01-3a33-ac49-347b604512e6,SESCO,II.1.1,Buenos Aires,AR-B,annual,2015,gas oil combustion consumption by public passenger transport,6092.75772,TJ,CO2,74100.0,kg/TJ,451473347.052,kg -b9be1025-22c1-38cd-b31c-1e59ffc76925,SESCO,II.1.1,Buenos Aires,AR-B,annual,2015,gas oil combustion consumption by public passenger transport,6092.75772,TJ,CH4,3.9,kg/TJ,23761.755107999998,kg -b9be1025-22c1-38cd-b31c-1e59ffc76925,SESCO,II.1.1,Buenos Aires,AR-B,annual,2015,gas oil combustion consumption by public passenger transport,6092.75772,TJ,N2O,3.9,kg/TJ,23761.755107999998,kg -1a013615-6f88-358b-b001-bdfefaeaf398,SESCO,II.1.1,Capital Federal,AR-C,annual,2015,gas oil combustion consumption by public passenger transport,127.43136,TJ,CO2,74100.0,kg/TJ,9442663.776,kg -6810ec7a-aa6c-3a83-ae09-be37b2ed159a,SESCO,II.1.1,Capital Federal,AR-C,annual,2015,gas oil combustion consumption by public passenger transport,127.43136,TJ,CH4,3.9,kg/TJ,496.982304,kg -6810ec7a-aa6c-3a83-ae09-be37b2ed159a,SESCO,II.1.1,Capital Federal,AR-C,annual,2015,gas oil combustion consumption by public passenger transport,127.43136,TJ,N2O,3.9,kg/TJ,496.982304,kg -c17549a4-d22f-32e8-b6c0-b0a36811a9bc,SESCO,II.1.1,Misiones,AR-N,annual,2015,gas oil combustion consumption by public passenger transport,339.31128,TJ,CO2,74100.0,kg/TJ,25142965.848,kg -c62b5db7-caed-3ead-9a7e-f9e362389abe,SESCO,II.1.1,Misiones,AR-N,annual,2015,gas oil combustion consumption by public passenger transport,339.31128,TJ,CH4,3.9,kg/TJ,1323.313992,kg -c62b5db7-caed-3ead-9a7e-f9e362389abe,SESCO,II.1.1,Misiones,AR-N,annual,2015,gas oil combustion consumption by public passenger transport,339.31128,TJ,N2O,3.9,kg/TJ,1323.313992,kg -e21538d4-82c1-3b2d-9072-b91e2e6d7c3b,SESCO,II.5.1,Buenos Aires,AR-B,annual,2015,gasoline combustion consumption by agriculture machines,15.150599999999999,TJ,CO2,69300.0,kg/TJ,1049936.5799999998,kg -ae2ca80f-b78a-34f9-b3e6-34fbec9b91a2,SESCO,II.5.1,Buenos Aires,AR-B,annual,2015,gasoline combustion consumption by agriculture machines,15.150599999999999,TJ,CH4,33.0,kg/TJ,499.96979999999996,kg -24301adc-9409-33c8-b6b7-70e2b291963a,SESCO,II.5.1,Buenos Aires,AR-B,annual,2015,gasoline combustion consumption by agriculture machines,15.150599999999999,TJ,N2O,3.2,kg/TJ,48.48192,kg -79e7f49d-5d66-3794-ab66-dfe08fedd7fd,SESCO,II.5.1,Buenos Aires,AR-B,annual,2015,gas oil combustion consumption by agriculture machines,8549.64012,TJ,CO2,74100.0,kg/TJ,633528332.892,kg -68acb4d5-36c8-37d5-b8da-cf7d4a08aabd,SESCO,II.5.1,Buenos Aires,AR-B,annual,2015,gas oil combustion consumption by agriculture machines,8549.64012,TJ,CH4,3.9,kg/TJ,33343.596467999996,kg -68acb4d5-36c8-37d5-b8da-cf7d4a08aabd,SESCO,II.5.1,Buenos Aires,AR-B,annual,2015,gas oil combustion consumption by agriculture machines,8549.64012,TJ,N2O,3.9,kg/TJ,33343.596467999996,kg -db84b8ea-db39-3793-8e84-0ea533c6fa07,SESCO,II.5.1,Capital Federal,AR-C,annual,2015,gas oil combustion consumption by agriculture machines,16.976399999999998,TJ,CO2,74100.0,kg/TJ,1257951.2399999998,kg -24dd3f78-3cfe-3cd1-b8db-25fecc423b3b,SESCO,II.5.1,Capital Federal,AR-C,annual,2015,gas oil combustion consumption by agriculture machines,16.976399999999998,TJ,CH4,3.9,kg/TJ,66.20795999999999,kg -24dd3f78-3cfe-3cd1-b8db-25fecc423b3b,SESCO,II.5.1,Capital Federal,AR-C,annual,2015,gas oil combustion consumption by agriculture machines,16.976399999999998,TJ,N2O,3.9,kg/TJ,66.20795999999999,kg -ff1cfd1c-aa80-342f-9102-99adbd7fd717,SESCO,II.5.1,Catamarca,AR-K,annual,2015,gas oil combustion consumption by agriculture machines,124.28892,TJ,CO2,74100.0,kg/TJ,9209808.972000001,kg -f5fba0d2-d743-3862-b776-3e6e1c0f7016,SESCO,II.5.1,Catamarca,AR-K,annual,2015,gas oil combustion consumption by agriculture machines,124.28892,TJ,CH4,3.9,kg/TJ,484.726788,kg -f5fba0d2-d743-3862-b776-3e6e1c0f7016,SESCO,II.5.1,Catamarca,AR-K,annual,2015,gas oil combustion consumption by agriculture machines,124.28892,TJ,N2O,3.9,kg/TJ,484.726788,kg -fe8c51c9-9eef-3080-8197-523818daea05,SESCO,II.5.1,Chaco,AR-H,annual,2015,gas oil combustion consumption by agriculture machines,1341.02724,TJ,CO2,74100.0,kg/TJ,99370118.484,kg -4a3c985d-1739-3edf-b91f-6f9fc2c3c4f8,SESCO,II.5.1,Chaco,AR-H,annual,2015,gas oil combustion consumption by agriculture machines,1341.02724,TJ,CH4,3.9,kg/TJ,5230.006235999999,kg -4a3c985d-1739-3edf-b91f-6f9fc2c3c4f8,SESCO,II.5.1,Chaco,AR-H,annual,2015,gas oil combustion consumption by agriculture machines,1341.02724,TJ,N2O,3.9,kg/TJ,5230.006235999999,kg -4ec062f3-cc02-3c48-b061-57b174ae4315,SESCO,II.5.1,Chubut,AR-U,annual,2015,gas oil combustion consumption by agriculture machines,1.15584,TJ,CO2,74100.0,kg/TJ,85647.74399999999,kg -db5257b5-578c-3155-ac2b-ab1e2c7d3a48,SESCO,II.5.1,Chubut,AR-U,annual,2015,gas oil combustion consumption by agriculture machines,1.15584,TJ,CH4,3.9,kg/TJ,4.507776,kg -db5257b5-578c-3155-ac2b-ab1e2c7d3a48,SESCO,II.5.1,Chubut,AR-U,annual,2015,gas oil combustion consumption by agriculture machines,1.15584,TJ,N2O,3.9,kg/TJ,4.507776,kg -9a068367-69d7-3686-b8ba-9974e119a06d,SESCO,II.5.1,Corrientes,AR-W,annual,2015,gas oil combustion consumption by agriculture machines,334.2906,TJ,CO2,74100.0,kg/TJ,24770933.459999997,kg -0fb78296-1a47-39b6-8734-13a14a09fe57,SESCO,II.5.1,Corrientes,AR-W,annual,2015,gas oil combustion consumption by agriculture machines,334.2906,TJ,CH4,3.9,kg/TJ,1303.73334,kg -0fb78296-1a47-39b6-8734-13a14a09fe57,SESCO,II.5.1,Corrientes,AR-W,annual,2015,gas oil combustion consumption by agriculture machines,334.2906,TJ,N2O,3.9,kg/TJ,1303.73334,kg -973f3755-f6e1-380a-93c7-a38c9e3c793d,SESCO,II.5.1,Córdoba,AR-X,annual,2015,gas oil combustion consumption by agriculture machines,7403.29968,TJ,CO2,74100.0,kg/TJ,548584506.288,kg -abefe977-49d5-3aeb-a84f-e7941d723a24,SESCO,II.5.1,Córdoba,AR-X,annual,2015,gas oil combustion consumption by agriculture machines,7403.29968,TJ,CH4,3.9,kg/TJ,28872.868752,kg -abefe977-49d5-3aeb-a84f-e7941d723a24,SESCO,II.5.1,Córdoba,AR-X,annual,2015,gas oil combustion consumption by agriculture machines,7403.29968,TJ,N2O,3.9,kg/TJ,28872.868752,kg -2a21e21e-2c83-3396-b64f-ed7819e7104c,SESCO,II.5.1,Entre Rios,AR-E,annual,2015,gas oil combustion consumption by agriculture machines,2098.60812,TJ,CO2,74100.0,kg/TJ,155506861.692,kg -a4adf205-cfba-3906-a976-bd3cdfa40f4b,SESCO,II.5.1,Entre Rios,AR-E,annual,2015,gas oil combustion consumption by agriculture machines,2098.60812,TJ,CH4,3.9,kg/TJ,8184.571668,kg -a4adf205-cfba-3906-a976-bd3cdfa40f4b,SESCO,II.5.1,Entre Rios,AR-E,annual,2015,gas oil combustion consumption by agriculture machines,2098.60812,TJ,N2O,3.9,kg/TJ,8184.571668,kg -682ee2ff-6cb4-3353-bd36-83f1d3411519,SESCO,II.5.1,Formosa,AR-P,annual,2015,gas oil combustion consumption by agriculture machines,339.99756,TJ,CO2,74100.0,kg/TJ,25193819.196000002,kg -0982cf28-e54b-3675-8115-25cf66db221e,SESCO,II.5.1,Formosa,AR-P,annual,2015,gas oil combustion consumption by agriculture machines,339.99756,TJ,CH4,3.9,kg/TJ,1325.9904840000002,kg -0982cf28-e54b-3675-8115-25cf66db221e,SESCO,II.5.1,Formosa,AR-P,annual,2015,gas oil combustion consumption by agriculture machines,339.99756,TJ,N2O,3.9,kg/TJ,1325.9904840000002,kg -521036d0-6f91-383a-9412-7bd933437c5a,SESCO,II.5.1,Jujuy,AR-Y,annual,2015,gas oil combustion consumption by agriculture machines,1086.56184,TJ,CO2,74100.0,kg/TJ,80514232.34400001,kg -85f9bdc3-f3e2-37eb-973a-69624b024fe3,SESCO,II.5.1,Jujuy,AR-Y,annual,2015,gas oil combustion consumption by agriculture machines,1086.56184,TJ,CH4,3.9,kg/TJ,4237.591176,kg -85f9bdc3-f3e2-37eb-973a-69624b024fe3,SESCO,II.5.1,Jujuy,AR-Y,annual,2015,gas oil combustion consumption by agriculture machines,1086.56184,TJ,N2O,3.9,kg/TJ,4237.591176,kg -61fb609f-3c18-3363-9d69-26cc5ea6689d,SESCO,II.5.1,La Pampa,AR-L,annual,2015,gas oil combustion consumption by agriculture machines,1989.63408,TJ,CO2,74100.0,kg/TJ,147431885.328,kg -16b40a06-97f2-3238-a1a9-9cd02266bae6,SESCO,II.5.1,La Pampa,AR-L,annual,2015,gas oil combustion consumption by agriculture machines,1989.63408,TJ,CH4,3.9,kg/TJ,7759.572912,kg -16b40a06-97f2-3238-a1a9-9cd02266bae6,SESCO,II.5.1,La Pampa,AR-L,annual,2015,gas oil combustion consumption by agriculture machines,1989.63408,TJ,N2O,3.9,kg/TJ,7759.572912,kg -4dcad23b-84b8-3fd6-9713-dce3f38c2727,SESCO,II.5.1,La Rioja,AR-F,annual,2015,gas oil combustion consumption by agriculture machines,31.31604,TJ,CO2,74100.0,kg/TJ,2320518.5640000002,kg -133ebd51-bd0f-3348-9a8b-1c38e33f43d2,SESCO,II.5.1,La Rioja,AR-F,annual,2015,gas oil combustion consumption by agriculture machines,31.31604,TJ,CH4,3.9,kg/TJ,122.13255600000001,kg -133ebd51-bd0f-3348-9a8b-1c38e33f43d2,SESCO,II.5.1,La Rioja,AR-F,annual,2015,gas oil combustion consumption by agriculture machines,31.31604,TJ,N2O,3.9,kg/TJ,122.13255600000001,kg -b6aca28a-26e7-348a-9e28-229080ee41c5,SESCO,II.5.1,Mendoza,AR-M,annual,2015,gas oil combustion consumption by agriculture machines,1072.43892,TJ,CO2,74100.0,kg/TJ,79467723.972,kg -1b6406d6-0b46-3f7f-b0a7-26882b900146,SESCO,II.5.1,Mendoza,AR-M,annual,2015,gas oil combustion consumption by agriculture machines,1072.43892,TJ,CH4,3.9,kg/TJ,4182.511788,kg -1b6406d6-0b46-3f7f-b0a7-26882b900146,SESCO,II.5.1,Mendoza,AR-M,annual,2015,gas oil combustion consumption by agriculture machines,1072.43892,TJ,N2O,3.9,kg/TJ,4182.511788,kg -902051d5-08ec-3abe-a2af-ff8dc8373897,SESCO,II.5.1,Misiones,AR-N,annual,2015,gas oil combustion consumption by agriculture machines,977.15436,TJ,CO2,74100.0,kg/TJ,72407138.076,kg -db078204-4ee4-33af-b74a-d8f66df0e810,SESCO,II.5.1,Misiones,AR-N,annual,2015,gas oil combustion consumption by agriculture machines,977.15436,TJ,CH4,3.9,kg/TJ,3810.902004,kg -db078204-4ee4-33af-b74a-d8f66df0e810,SESCO,II.5.1,Misiones,AR-N,annual,2015,gas oil combustion consumption by agriculture machines,977.15436,TJ,N2O,3.9,kg/TJ,3810.902004,kg -62f6a26c-5cb4-30cb-9e7c-29da0d7aea8a,SESCO,II.5.1,Neuquén,AR-Q,annual,2015,gas oil combustion consumption by agriculture machines,71.8788,TJ,CO2,74100.0,kg/TJ,5326219.08,kg -880cd3d5-1963-3f6e-b290-f5eed5888dc2,SESCO,II.5.1,Neuquén,AR-Q,annual,2015,gas oil combustion consumption by agriculture machines,71.8788,TJ,CH4,3.9,kg/TJ,280.32732,kg -880cd3d5-1963-3f6e-b290-f5eed5888dc2,SESCO,II.5.1,Neuquén,AR-Q,annual,2015,gas oil combustion consumption by agriculture machines,71.8788,TJ,N2O,3.9,kg/TJ,280.32732,kg -a64ab1be-b058-3aa0-97ce-04a78ca91533,SESCO,II.5.1,Rio Negro,AR-R,annual,2015,gas oil combustion consumption by agriculture machines,199.16568,TJ,CO2,74100.0,kg/TJ,14758176.888,kg -04502ead-42b5-37b0-bfb6-2bc78a57b46a,SESCO,II.5.1,Rio Negro,AR-R,annual,2015,gas oil combustion consumption by agriculture machines,199.16568,TJ,CH4,3.9,kg/TJ,776.746152,kg -04502ead-42b5-37b0-bfb6-2bc78a57b46a,SESCO,II.5.1,Rio Negro,AR-R,annual,2015,gas oil combustion consumption by agriculture machines,199.16568,TJ,N2O,3.9,kg/TJ,776.746152,kg -1364f1a2-058d-3613-9248-314bbdf696b4,SESCO,II.5.1,Salta,AR-A,annual,2015,gas oil combustion consumption by agriculture machines,1651.91208,TJ,CO2,74100.0,kg/TJ,122406685.128,kg -c396c644-61ad-3685-b2c8-9902b4358a7c,SESCO,II.5.1,Salta,AR-A,annual,2015,gas oil combustion consumption by agriculture machines,1651.91208,TJ,CH4,3.9,kg/TJ,6442.457112,kg -c396c644-61ad-3685-b2c8-9902b4358a7c,SESCO,II.5.1,Salta,AR-A,annual,2015,gas oil combustion consumption by agriculture machines,1651.91208,TJ,N2O,3.9,kg/TJ,6442.457112,kg -1b41ee13-f703-3dbc-abf5-cf4b8d09be17,SESCO,II.5.1,San Juan,AR-J,annual,2015,gas oil combustion consumption by agriculture machines,118.22076,TJ,CO2,74100.0,kg/TJ,8760158.316,kg -7f3b7c73-e315-349b-b0ef-d54512e8a5e2,SESCO,II.5.1,San Juan,AR-J,annual,2015,gas oil combustion consumption by agriculture machines,118.22076,TJ,CH4,3.9,kg/TJ,461.06096399999996,kg -7f3b7c73-e315-349b-b0ef-d54512e8a5e2,SESCO,II.5.1,San Juan,AR-J,annual,2015,gas oil combustion consumption by agriculture machines,118.22076,TJ,N2O,3.9,kg/TJ,461.06096399999996,kg -8f611625-8fe6-3d34-bee3-3af026ce945b,SESCO,II.5.1,San Luis,AR-D,annual,2015,gas oil combustion consumption by agriculture machines,636.94008,TJ,CO2,74100.0,kg/TJ,47197259.927999996,kg -13639e44-4c76-31c8-921e-47ef0c9ac9b3,SESCO,II.5.1,San Luis,AR-D,annual,2015,gas oil combustion consumption by agriculture machines,636.94008,TJ,CH4,3.9,kg/TJ,2484.066312,kg -13639e44-4c76-31c8-921e-47ef0c9ac9b3,SESCO,II.5.1,San Luis,AR-D,annual,2015,gas oil combustion consumption by agriculture machines,636.94008,TJ,N2O,3.9,kg/TJ,2484.066312,kg -cbf38eb8-da7f-3564-bbd8-f5b49a97e86d,SESCO,II.5.1,Santa Cruz,AR-Z,annual,2015,gas oil combustion consumption by agriculture machines,0.61404,TJ,CO2,74100.0,kg/TJ,45500.364,kg -a09b9d80-7251-3e27-8f04-dbe8d223f397,SESCO,II.5.1,Santa Cruz,AR-Z,annual,2015,gas oil combustion consumption by agriculture machines,0.61404,TJ,CH4,3.9,kg/TJ,2.394756,kg -a09b9d80-7251-3e27-8f04-dbe8d223f397,SESCO,II.5.1,Santa Cruz,AR-Z,annual,2015,gas oil combustion consumption by agriculture machines,0.61404,TJ,N2O,3.9,kg/TJ,2.394756,kg -6e57a13c-e776-3305-8f71-2a237c9974cd,SESCO,II.5.1,Santa Fe,AR-S,annual,2015,gas oil combustion consumption by agriculture machines,6227.088,TJ,CO2,74100.0,kg/TJ,461427220.79999995,kg -4ea452aa-aca7-37df-b095-58ae1284e224,SESCO,II.5.1,Santa Fe,AR-S,annual,2015,gas oil combustion consumption by agriculture machines,6227.088,TJ,CH4,3.9,kg/TJ,24285.6432,kg -4ea452aa-aca7-37df-b095-58ae1284e224,SESCO,II.5.1,Santa Fe,AR-S,annual,2015,gas oil combustion consumption by agriculture machines,6227.088,TJ,N2O,3.9,kg/TJ,24285.6432,kg -53f17455-c25b-3469-bb21-2c01d30c4779,SESCO,II.5.1,Santiago del Estero,AR-G,annual,2015,gas oil combustion consumption by agriculture machines,1760.77776,TJ,CO2,74100.0,kg/TJ,130473632.016,kg -f68a1984-b465-3890-b82e-b91fb36fb561,SESCO,II.5.1,Santiago del Estero,AR-G,annual,2015,gas oil combustion consumption by agriculture machines,1760.77776,TJ,CH4,3.9,kg/TJ,6867.033264,kg -f68a1984-b465-3890-b82e-b91fb36fb561,SESCO,II.5.1,Santiago del Estero,AR-G,annual,2015,gas oil combustion consumption by agriculture machines,1760.77776,TJ,N2O,3.9,kg/TJ,6867.033264,kg -2e14be7e-f46e-3328-85d9-007da1e8ee25,SESCO,II.5.1,Tucuman,AR-T,annual,2015,gas oil combustion consumption by agriculture machines,1393.4734799999999,TJ,CO2,74100.0,kg/TJ,103256384.86799999,kg -8cf640e5-0618-3009-9d90-947db8e6bf7e,SESCO,II.5.1,Tucuman,AR-T,annual,2015,gas oil combustion consumption by agriculture machines,1393.4734799999999,TJ,CH4,3.9,kg/TJ,5434.546571999999,kg -8cf640e5-0618-3009-9d90-947db8e6bf7e,SESCO,II.5.1,Tucuman,AR-T,annual,2015,gas oil combustion consumption by agriculture machines,1393.4734799999999,TJ,N2O,3.9,kg/TJ,5434.546571999999,kg -1758b2b1-1cca-318f-90b6-91659266b727,SESCO,II.5.1,Buenos Aires,AR-B,annual,2015,gas oil combustion consumption by agriculture machines,187.86012,TJ,CO2,74100.0,kg/TJ,13920434.891999999,kg -284faad3-9c06-334a-82b1-9edb5ea1b3af,SESCO,II.5.1,Buenos Aires,AR-B,annual,2015,gas oil combustion consumption by agriculture machines,187.86012,TJ,CH4,3.9,kg/TJ,732.654468,kg -284faad3-9c06-334a-82b1-9edb5ea1b3af,SESCO,II.5.1,Buenos Aires,AR-B,annual,2015,gas oil combustion consumption by agriculture machines,187.86012,TJ,N2O,3.9,kg/TJ,732.654468,kg -3d9d367d-6fa6-3e0d-b992-51d895c7b007,SESCO,II.5.1,Catamarca,AR-K,annual,2015,gas oil combustion consumption by agriculture machines,19.93824,TJ,CO2,74100.0,kg/TJ,1477423.584,kg -ffe93fe5-75fa-3392-9379-5623c8b192b5,SESCO,II.5.1,Catamarca,AR-K,annual,2015,gas oil combustion consumption by agriculture machines,19.93824,TJ,CH4,3.9,kg/TJ,77.759136,kg -ffe93fe5-75fa-3392-9379-5623c8b192b5,SESCO,II.5.1,Catamarca,AR-K,annual,2015,gas oil combustion consumption by agriculture machines,19.93824,TJ,N2O,3.9,kg/TJ,77.759136,kg -525047bd-e467-336e-9bf1-e1b347801369,SESCO,II.5.1,Chaco,AR-H,annual,2015,gas oil combustion consumption by agriculture machines,79.39176,TJ,CO2,74100.0,kg/TJ,5882929.416,kg -c40df824-b7c9-3139-b299-0e80e7b0c7cf,SESCO,II.5.1,Chaco,AR-H,annual,2015,gas oil combustion consumption by agriculture machines,79.39176,TJ,CH4,3.9,kg/TJ,309.627864,kg -c40df824-b7c9-3139-b299-0e80e7b0c7cf,SESCO,II.5.1,Chaco,AR-H,annual,2015,gas oil combustion consumption by agriculture machines,79.39176,TJ,N2O,3.9,kg/TJ,309.627864,kg -c65f8013-17f5-34b9-94d4-b5b354325a26,SESCO,II.5.1,Corrientes,AR-W,annual,2015,gas oil combustion consumption by agriculture machines,27.74016,TJ,CO2,74100.0,kg/TJ,2055545.856,kg -6210595f-3a1e-3bf0-a2ac-2fded2d4f641,SESCO,II.5.1,Corrientes,AR-W,annual,2015,gas oil combustion consumption by agriculture machines,27.74016,TJ,CH4,3.9,kg/TJ,108.186624,kg -6210595f-3a1e-3bf0-a2ac-2fded2d4f641,SESCO,II.5.1,Corrientes,AR-W,annual,2015,gas oil combustion consumption by agriculture machines,27.74016,TJ,N2O,3.9,kg/TJ,108.186624,kg -04e8234a-85d9-319f-bde9-a6005a0efd49,SESCO,II.5.1,Córdoba,AR-X,annual,2015,gas oil combustion consumption by agriculture machines,38.75676,TJ,CO2,74100.0,kg/TJ,2871875.916,kg -e9b810a9-51e6-3208-826a-6a1af9d7ee0c,SESCO,II.5.1,Córdoba,AR-X,annual,2015,gas oil combustion consumption by agriculture machines,38.75676,TJ,CH4,3.9,kg/TJ,151.151364,kg -e9b810a9-51e6-3208-826a-6a1af9d7ee0c,SESCO,II.5.1,Córdoba,AR-X,annual,2015,gas oil combustion consumption by agriculture machines,38.75676,TJ,N2O,3.9,kg/TJ,151.151364,kg -610b93b8-1f6d-3f31-87ed-efb6a274d80a,SESCO,II.5.1,Entre Rios,AR-E,annual,2015,gas oil combustion consumption by agriculture machines,12.2808,TJ,CO2,74100.0,kg/TJ,910007.2799999999,kg -c561f53b-2939-325f-add8-c193c8e07de7,SESCO,II.5.1,Entre Rios,AR-E,annual,2015,gas oil combustion consumption by agriculture machines,12.2808,TJ,CH4,3.9,kg/TJ,47.89512,kg -c561f53b-2939-325f-add8-c193c8e07de7,SESCO,II.5.1,Entre Rios,AR-E,annual,2015,gas oil combustion consumption by agriculture machines,12.2808,TJ,N2O,3.9,kg/TJ,47.89512,kg -06a4dc13-0be6-3ed7-8280-772f8eea201c,SESCO,II.5.1,Jujuy,AR-Y,annual,2015,gas oil combustion consumption by agriculture machines,10.6554,TJ,CO2,74100.0,kg/TJ,789565.14,kg -44f751d6-f1a8-3f29-ae12-7d4cfcf04d37,SESCO,II.5.1,Jujuy,AR-Y,annual,2015,gas oil combustion consumption by agriculture machines,10.6554,TJ,CH4,3.9,kg/TJ,41.55606,kg -44f751d6-f1a8-3f29-ae12-7d4cfcf04d37,SESCO,II.5.1,Jujuy,AR-Y,annual,2015,gas oil combustion consumption by agriculture machines,10.6554,TJ,N2O,3.9,kg/TJ,41.55606,kg -7ceb17e7-3e03-3176-bd08-914fd9fd779d,SESCO,II.5.1,La Pampa,AR-L,annual,2015,gas oil combustion consumption by agriculture machines,98.2464,TJ,CO2,74100.0,kg/TJ,7280058.239999999,kg -7093ac8c-2520-3c7d-a306-434933bebd34,SESCO,II.5.1,La Pampa,AR-L,annual,2015,gas oil combustion consumption by agriculture machines,98.2464,TJ,CH4,3.9,kg/TJ,383.16096,kg -7093ac8c-2520-3c7d-a306-434933bebd34,SESCO,II.5.1,La Pampa,AR-L,annual,2015,gas oil combustion consumption by agriculture machines,98.2464,TJ,N2O,3.9,kg/TJ,383.16096,kg -fdaa72f9-a3e0-3bb3-a1f9-54b16b070531,SESCO,II.5.1,Mendoza,AR-M,annual,2015,gas oil combustion consumption by agriculture machines,14.989799999999999,TJ,CO2,74100.0,kg/TJ,1110744.18,kg -af9bf487-0fcb-3d49-b0d3-9d9cac60d758,SESCO,II.5.1,Mendoza,AR-M,annual,2015,gas oil combustion consumption by agriculture machines,14.989799999999999,TJ,CH4,3.9,kg/TJ,58.46021999999999,kg -af9bf487-0fcb-3d49-b0d3-9d9cac60d758,SESCO,II.5.1,Mendoza,AR-M,annual,2015,gas oil combustion consumption by agriculture machines,14.989799999999999,TJ,N2O,3.9,kg/TJ,58.46021999999999,kg -9f8eb2a6-2e09-3604-9900-6478f500c172,SESCO,II.5.1,Misiones,AR-N,annual,2015,gas oil combustion consumption by agriculture machines,18.963,TJ,CO2,74100.0,kg/TJ,1405158.3,kg -4f0ff86e-fff4-3ca8-a80b-617af2b4ec55,SESCO,II.5.1,Misiones,AR-N,annual,2015,gas oil combustion consumption by agriculture machines,18.963,TJ,CH4,3.9,kg/TJ,73.95570000000001,kg -4f0ff86e-fff4-3ca8-a80b-617af2b4ec55,SESCO,II.5.1,Misiones,AR-N,annual,2015,gas oil combustion consumption by agriculture machines,18.963,TJ,N2O,3.9,kg/TJ,73.95570000000001,kg -24ff453b-6c3a-3b21-8534-b00335383b8c,SESCO,II.5.1,Salta,AR-A,annual,2015,gas oil combustion consumption by agriculture machines,102.5808,TJ,CO2,74100.0,kg/TJ,7601237.279999999,kg -84657468-daf4-315d-9901-f2f56beb5bd5,SESCO,II.5.1,Salta,AR-A,annual,2015,gas oil combustion consumption by agriculture machines,102.5808,TJ,CH4,3.9,kg/TJ,400.06512,kg -84657468-daf4-315d-9901-f2f56beb5bd5,SESCO,II.5.1,Salta,AR-A,annual,2015,gas oil combustion consumption by agriculture machines,102.5808,TJ,N2O,3.9,kg/TJ,400.06512,kg -ee1e2358-3665-3d02-9ae7-851db4455a0a,SESCO,II.5.1,San Luis,AR-D,annual,2015,gas oil combustion consumption by agriculture machines,23.04456,TJ,CO2,74100.0,kg/TJ,1707601.896,kg -4103467d-353c-3cef-8178-d9b38cdffd8c,SESCO,II.5.1,San Luis,AR-D,annual,2015,gas oil combustion consumption by agriculture machines,23.04456,TJ,CH4,3.9,kg/TJ,89.873784,kg -4103467d-353c-3cef-8178-d9b38cdffd8c,SESCO,II.5.1,San Luis,AR-D,annual,2015,gas oil combustion consumption by agriculture machines,23.04456,TJ,N2O,3.9,kg/TJ,89.873784,kg -42fa8c36-82de-3811-8e05-4ce45c0bb09d,SESCO,II.5.1,Santa Fe,AR-S,annual,2015,gas oil combustion consumption by agriculture machines,100.34136,TJ,CO2,74100.0,kg/TJ,7435294.776,kg -cb24a525-33eb-32a5-999f-8df41d6eed75,SESCO,II.5.1,Santa Fe,AR-S,annual,2015,gas oil combustion consumption by agriculture machines,100.34136,TJ,CH4,3.9,kg/TJ,391.331304,kg -cb24a525-33eb-32a5-999f-8df41d6eed75,SESCO,II.5.1,Santa Fe,AR-S,annual,2015,gas oil combustion consumption by agriculture machines,100.34136,TJ,N2O,3.9,kg/TJ,391.331304,kg -1392f3a6-186f-3788-96df-b36564308528,SESCO,II.5.1,Santiago del Estero,AR-G,annual,2015,gas oil combustion consumption by agriculture machines,73.75704,TJ,CO2,74100.0,kg/TJ,5465396.664,kg -3287fef0-9c09-3f68-b149-cfa6e80dc81b,SESCO,II.5.1,Santiago del Estero,AR-G,annual,2015,gas oil combustion consumption by agriculture machines,73.75704,TJ,CH4,3.9,kg/TJ,287.65245600000003,kg -3287fef0-9c09-3f68-b149-cfa6e80dc81b,SESCO,II.5.1,Santiago del Estero,AR-G,annual,2015,gas oil combustion consumption by agriculture machines,73.75704,TJ,N2O,3.9,kg/TJ,287.65245600000003,kg -7a0a7d55-bf06-3d86-956d-01c145a08817,SESCO,II.5.1,Tucuman,AR-T,annual,2015,gas oil combustion consumption by agriculture machines,79.6446,TJ,CO2,74100.0,kg/TJ,5901664.859999999,kg -1d144ad3-1c38-377c-9b9e-4d717e533f85,SESCO,II.5.1,Tucuman,AR-T,annual,2015,gas oil combustion consumption by agriculture machines,79.6446,TJ,CH4,3.9,kg/TJ,310.61393999999996,kg -1d144ad3-1c38-377c-9b9e-4d717e533f85,SESCO,II.5.1,Tucuman,AR-T,annual,2015,gas oil combustion consumption by agriculture machines,79.6446,TJ,N2O,3.9,kg/TJ,310.61393999999996,kg -5af99938-531a-3e20-9ac6-19c055abc2df,SESCO,II.5.1,Buenos Aires,AR-B,annual,2015,jet kerosene combustion consumption by agriculture machines,6.605129999999999,TJ,CO2,71500.0,kg/TJ,472266.7949999999,kg -60b02794-4a12-31c3-a40d-b4e89716a0e1,SESCO,II.5.1,Buenos Aires,AR-B,annual,2015,jet kerosene combustion consumption by agriculture machines,6.605129999999999,TJ,CH4,0.5,kg/TJ,3.3025649999999995,kg -f3625e33-4480-388e-b0d6-d5bef0ac5cfa,SESCO,II.5.1,Buenos Aires,AR-B,annual,2015,jet kerosene combustion consumption by agriculture machines,6.605129999999999,TJ,N2O,2.0,kg/TJ,13.210259999999998,kg -4a64b351-a92e-3cd9-9ebf-28db8df40a03,SESCO,II.5.1,Córdoba,AR-X,annual,2015,jet kerosene combustion consumption by agriculture machines,0.25162399999999996,TJ,CO2,71500.0,kg/TJ,17991.115999999998,kg -dd9f38f2-756a-3004-b75c-4f37f836ba76,SESCO,II.5.1,Córdoba,AR-X,annual,2015,jet kerosene combustion consumption by agriculture machines,0.25162399999999996,TJ,CH4,0.5,kg/TJ,0.12581199999999998,kg -4a505f02-abd5-35d4-a751-9d58fbb05ebd,SESCO,II.5.1,Córdoba,AR-X,annual,2015,jet kerosene combustion consumption by agriculture machines,0.25162399999999996,TJ,N2O,2.0,kg/TJ,0.5032479999999999,kg -fde7ca6d-a175-3877-9429-c9191f909738,SESCO,II.5.1,Entre Rios,AR-E,annual,2015,jet kerosene combustion consumption by agriculture machines,0.157265,TJ,CO2,71500.0,kg/TJ,11244.447499999998,kg -0a2b02da-e900-3b4a-9805-c75316635314,SESCO,II.5.1,Entre Rios,AR-E,annual,2015,jet kerosene combustion consumption by agriculture machines,0.157265,TJ,CH4,0.5,kg/TJ,0.0786325,kg -fc0df5e4-0fc4-3c4f-8a62-418b1dffb0b0,SESCO,II.5.1,Entre Rios,AR-E,annual,2015,jet kerosene combustion consumption by agriculture machines,0.157265,TJ,N2O,2.0,kg/TJ,0.31453,kg -b842143a-fa98-34d1-bf80-ea031832470a,SESCO,II.5.1,La Pampa,AR-L,annual,2015,jet kerosene combustion consumption by agriculture machines,1.100855,TJ,CO2,71500.0,kg/TJ,78711.13249999999,kg -8381f7a1-f4a4-332c-8004-947d4a7c3a38,SESCO,II.5.1,La Pampa,AR-L,annual,2015,jet kerosene combustion consumption by agriculture machines,1.100855,TJ,CH4,0.5,kg/TJ,0.5504275,kg -13b73472-f63c-3c2b-b7af-1b199a854359,SESCO,II.5.1,La Pampa,AR-L,annual,2015,jet kerosene combustion consumption by agriculture machines,1.100855,TJ,N2O,2.0,kg/TJ,2.20171,kg -260725dc-3e9a-3897-8f67-1c61705b3fab,SESCO,II.5.1,Santa Fe,AR-S,annual,2015,jet kerosene combustion consumption by agriculture machines,1.7928209999999998,TJ,CO2,71500.0,kg/TJ,128186.70149999998,kg -74da5d0b-ba03-3433-8c76-909240085642,SESCO,II.5.1,Santa Fe,AR-S,annual,2015,jet kerosene combustion consumption by agriculture machines,1.7928209999999998,TJ,CH4,0.5,kg/TJ,0.8964104999999999,kg -2ef639ff-353a-3b61-9a01-48e8f4789b31,SESCO,II.5.1,Santa Fe,AR-S,annual,2015,jet kerosene combustion consumption by agriculture machines,1.7928209999999998,TJ,N2O,2.0,kg/TJ,3.5856419999999996,kg -6307b24c-bce6-354a-82ab-0ec97a8a38c6,SESCO,II.1.1,Buenos Aires,AR-B,annual,2015,gas oil combustion consumption by to the public,35370.51,TJ,CO2,74100.0,kg/TJ,2620954791.0,kg -356836ec-577a-3cde-8b5c-1b07f1d7a501,SESCO,II.1.1,Buenos Aires,AR-B,annual,2015,gas oil combustion consumption by to the public,35370.51,TJ,CH4,3.9,kg/TJ,137944.989,kg -356836ec-577a-3cde-8b5c-1b07f1d7a501,SESCO,II.1.1,Buenos Aires,AR-B,annual,2015,gas oil combustion consumption by to the public,35370.51,TJ,N2O,3.9,kg/TJ,137944.989,kg -b769168b-cba5-35b5-b270-346a0388dcc7,SESCO,II.1.1,Capital Federal,AR-C,annual,2015,gas oil combustion consumption by to the public,3902.65764,TJ,CO2,74100.0,kg/TJ,289186931.124,kg -be63fb4a-07ba-3781-b44f-5d39d6715e5d,SESCO,II.1.1,Capital Federal,AR-C,annual,2015,gas oil combustion consumption by to the public,3902.65764,TJ,CH4,3.9,kg/TJ,15220.364796,kg -be63fb4a-07ba-3781-b44f-5d39d6715e5d,SESCO,II.1.1,Capital Federal,AR-C,annual,2015,gas oil combustion consumption by to the public,3902.65764,TJ,N2O,3.9,kg/TJ,15220.364796,kg -bfc5f338-65ec-3a04-818c-3d17d99928e4,SESCO,II.1.1,Catamarca,AR-K,annual,2015,gas oil combustion consumption by to the public,412.99608,TJ,CO2,74100.0,kg/TJ,30603009.528,kg -adc001a2-01b4-3629-9b0f-ada5d86db2ba,SESCO,II.1.1,Catamarca,AR-K,annual,2015,gas oil combustion consumption by to the public,412.99608,TJ,CH4,3.9,kg/TJ,1610.684712,kg -adc001a2-01b4-3629-9b0f-ada5d86db2ba,SESCO,II.1.1,Catamarca,AR-K,annual,2015,gas oil combustion consumption by to the public,412.99608,TJ,N2O,3.9,kg/TJ,1610.684712,kg -e6996584-b524-3f21-8b50-5b443ab14fe4,SESCO,II.1.1,Chaco,AR-H,annual,2015,gas oil combustion consumption by to the public,2602.55436,TJ,CO2,74100.0,kg/TJ,192849278.076,kg -f493e89e-0d41-36c8-938c-51bae7649cc3,SESCO,II.1.1,Chaco,AR-H,annual,2015,gas oil combustion consumption by to the public,2602.55436,TJ,CH4,3.9,kg/TJ,10149.962004,kg -f493e89e-0d41-36c8-938c-51bae7649cc3,SESCO,II.1.1,Chaco,AR-H,annual,2015,gas oil combustion consumption by to the public,2602.55436,TJ,N2O,3.9,kg/TJ,10149.962004,kg -d6dc9f95-3471-3728-9733-c189325d1fc3,SESCO,II.1.1,Chubut,AR-U,annual,2015,gas oil combustion consumption by to the public,5248.99452,TJ,CO2,74100.0,kg/TJ,388950493.93200004,kg -b9344762-5ee9-34f8-bbfb-7eba4327360e,SESCO,II.1.1,Chubut,AR-U,annual,2015,gas oil combustion consumption by to the public,5248.99452,TJ,CH4,3.9,kg/TJ,20471.078628,kg -b9344762-5ee9-34f8-bbfb-7eba4327360e,SESCO,II.1.1,Chubut,AR-U,annual,2015,gas oil combustion consumption by to the public,5248.99452,TJ,N2O,3.9,kg/TJ,20471.078628,kg -1b937f9e-3c73-3b6d-9431-b7951f3793c8,SESCO,II.1.1,Corrientes,AR-W,annual,2015,gas oil combustion consumption by to the public,1936.32096,TJ,CO2,74100.0,kg/TJ,143481383.136,kg -b88aba58-711e-3c54-b7e5-2574f161064d,SESCO,II.1.1,Corrientes,AR-W,annual,2015,gas oil combustion consumption by to the public,1936.32096,TJ,CH4,3.9,kg/TJ,7551.651744,kg -b88aba58-711e-3c54-b7e5-2574f161064d,SESCO,II.1.1,Corrientes,AR-W,annual,2015,gas oil combustion consumption by to the public,1936.32096,TJ,N2O,3.9,kg/TJ,7551.651744,kg -f9a530b2-1eef-3dba-9dc9-a37f5b254cb5,SESCO,II.1.1,Córdoba,AR-X,annual,2015,gas oil combustion consumption by to the public,13642.7046,TJ,CO2,74100.0,kg/TJ,1010924410.8599999,kg -ed8c5138-a3e1-3a4a-9e2c-1f65cf7a0b54,SESCO,II.1.1,Córdoba,AR-X,annual,2015,gas oil combustion consumption by to the public,13642.7046,TJ,CH4,3.9,kg/TJ,53206.54794,kg -ed8c5138-a3e1-3a4a-9e2c-1f65cf7a0b54,SESCO,II.1.1,Córdoba,AR-X,annual,2015,gas oil combustion consumption by to the public,13642.7046,TJ,N2O,3.9,kg/TJ,53206.54794,kg -d33986be-5c6d-3272-93c8-6a4c479c8a04,SESCO,II.1.1,Entre Rios,AR-E,annual,2015,gas oil combustion consumption by to the public,4278.34176,TJ,CO2,74100.0,kg/TJ,317025124.416,kg -294fe84e-26af-3cd5-84ec-6f445d30c392,SESCO,II.1.1,Entre Rios,AR-E,annual,2015,gas oil combustion consumption by to the public,4278.34176,TJ,CH4,3.9,kg/TJ,16685.532864,kg -294fe84e-26af-3cd5-84ec-6f445d30c392,SESCO,II.1.1,Entre Rios,AR-E,annual,2015,gas oil combustion consumption by to the public,4278.34176,TJ,N2O,3.9,kg/TJ,16685.532864,kg -8c84110b-36fe-39b4-87cf-8cd9cae90521,SESCO,II.1.1,Formosa,AR-P,annual,2015,gas oil combustion consumption by to the public,769.68108,TJ,CO2,74100.0,kg/TJ,57033368.028,kg -8f6e9f39-5390-3669-aeb4-24df10e940e7,SESCO,II.1.1,Formosa,AR-P,annual,2015,gas oil combustion consumption by to the public,769.68108,TJ,CH4,3.9,kg/TJ,3001.756212,kg -8f6e9f39-5390-3669-aeb4-24df10e940e7,SESCO,II.1.1,Formosa,AR-P,annual,2015,gas oil combustion consumption by to the public,769.68108,TJ,N2O,3.9,kg/TJ,3001.756212,kg -a1a43e0c-a11a-38aa-a25c-68f8653c87d0,SESCO,II.1.1,Jujuy,AR-Y,annual,2015,gas oil combustion consumption by to the public,1933.6842,TJ,CO2,74100.0,kg/TJ,143285999.22,kg -5b97993e-a297-3f99-9c26-6268a8933037,SESCO,II.1.1,Jujuy,AR-Y,annual,2015,gas oil combustion consumption by to the public,1933.6842,TJ,CH4,3.9,kg/TJ,7541.36838,kg -5b97993e-a297-3f99-9c26-6268a8933037,SESCO,II.1.1,Jujuy,AR-Y,annual,2015,gas oil combustion consumption by to the public,1933.6842,TJ,N2O,3.9,kg/TJ,7541.36838,kg -2a3e49c7-fcda-3ade-88d8-efd2986b53a6,SESCO,II.1.1,La Pampa,AR-L,annual,2015,gas oil combustion consumption by to the public,2419.02864,TJ,CO2,74100.0,kg/TJ,179250022.224,kg -3e5b304e-d9de-3fd7-903a-077b2a7c8b72,SESCO,II.1.1,La Pampa,AR-L,annual,2015,gas oil combustion consumption by to the public,2419.02864,TJ,CH4,3.9,kg/TJ,9434.211696,kg -3e5b304e-d9de-3fd7-903a-077b2a7c8b72,SESCO,II.1.1,La Pampa,AR-L,annual,2015,gas oil combustion consumption by to the public,2419.02864,TJ,N2O,3.9,kg/TJ,9434.211696,kg -fb2b714f-9072-32f2-9c0e-0aa3fb358ee4,SESCO,II.1.1,La Rioja,AR-F,annual,2015,gas oil combustion consumption by to the public,810.06324,TJ,CO2,74100.0,kg/TJ,60025686.084,kg -c02c735f-69a2-35fd-ba4a-d7711f00ce5d,SESCO,II.1.1,La Rioja,AR-F,annual,2015,gas oil combustion consumption by to the public,810.06324,TJ,CH4,3.9,kg/TJ,3159.246636,kg -c02c735f-69a2-35fd-ba4a-d7711f00ce5d,SESCO,II.1.1,La Rioja,AR-F,annual,2015,gas oil combustion consumption by to the public,810.06324,TJ,N2O,3.9,kg/TJ,3159.246636,kg -90243bb4-4fa4-3f13-ae94-f4bb6c14260b,SESCO,II.1.1,Mendoza,AR-M,annual,2015,gas oil combustion consumption by to the public,11536.9086,TJ,CO2,74100.0,kg/TJ,854884927.26,kg -c0b3c2a0-4c9d-3469-ae18-fb96cd126075,SESCO,II.1.1,Mendoza,AR-M,annual,2015,gas oil combustion consumption by to the public,11536.9086,TJ,CH4,3.9,kg/TJ,44993.94354,kg -c0b3c2a0-4c9d-3469-ae18-fb96cd126075,SESCO,II.1.1,Mendoza,AR-M,annual,2015,gas oil combustion consumption by to the public,11536.9086,TJ,N2O,3.9,kg/TJ,44993.94354,kg -9dc4e083-85f1-34a4-9d9d-36a62f051056,SESCO,II.1.1,Misiones,AR-N,annual,2015,gas oil combustion consumption by to the public,3857.36316,TJ,CO2,74100.0,kg/TJ,285830610.156,kg -94f15e3b-2844-3b49-91ea-01df5f62f4ab,SESCO,II.1.1,Misiones,AR-N,annual,2015,gas oil combustion consumption by to the public,3857.36316,TJ,CH4,3.9,kg/TJ,15043.716323999999,kg -94f15e3b-2844-3b49-91ea-01df5f62f4ab,SESCO,II.1.1,Misiones,AR-N,annual,2015,gas oil combustion consumption by to the public,3857.36316,TJ,N2O,3.9,kg/TJ,15043.716323999999,kg -55b52b0e-156a-3e38-bd06-fa5cffdd459e,SESCO,II.1.1,Neuquén,AR-Q,annual,2015,gas oil combustion consumption by to the public,3143.0901599999997,TJ,CO2,74100.0,kg/TJ,232902980.85599998,kg -62ce04f0-3e12-35e4-bc23-dbe045004b48,SESCO,II.1.1,Neuquén,AR-Q,annual,2015,gas oil combustion consumption by to the public,3143.0901599999997,TJ,CH4,3.9,kg/TJ,12258.051623999998,kg -62ce04f0-3e12-35e4-bc23-dbe045004b48,SESCO,II.1.1,Neuquén,AR-Q,annual,2015,gas oil combustion consumption by to the public,3143.0901599999997,TJ,N2O,3.9,kg/TJ,12258.051623999998,kg -b667f663-b13c-3df4-97ba-a229ffba1488,SESCO,II.1.1,Rio Negro,AR-R,annual,2015,gas oil combustion consumption by to the public,4518.35916,TJ,CO2,74100.0,kg/TJ,334810413.756,kg -037604fe-5d79-35d4-9dad-113b9a8863d4,SESCO,II.1.1,Rio Negro,AR-R,annual,2015,gas oil combustion consumption by to the public,4518.35916,TJ,CH4,3.9,kg/TJ,17621.600724,kg -037604fe-5d79-35d4-9dad-113b9a8863d4,SESCO,II.1.1,Rio Negro,AR-R,annual,2015,gas oil combustion consumption by to the public,4518.35916,TJ,N2O,3.9,kg/TJ,17621.600724,kg -2f0e4192-8af9-30dc-bbec-885bf4541c57,SESCO,II.1.1,Salta,AR-A,annual,2015,gas oil combustion consumption by to the public,4155.38928,TJ,CO2,74100.0,kg/TJ,307914345.648,kg -716bed4b-f31a-36bf-a330-b1da0eda7aef,SESCO,II.1.1,Salta,AR-A,annual,2015,gas oil combustion consumption by to the public,4155.38928,TJ,CH4,3.9,kg/TJ,16206.018192000001,kg -716bed4b-f31a-36bf-a330-b1da0eda7aef,SESCO,II.1.1,Salta,AR-A,annual,2015,gas oil combustion consumption by to the public,4155.38928,TJ,N2O,3.9,kg/TJ,16206.018192000001,kg -9454fde6-8ca3-30cb-b2a8-e1c05ead9641,SESCO,II.1.1,San Juan,AR-J,annual,2015,gas oil combustion consumption by to the public,2214.84228,TJ,CO2,74100.0,kg/TJ,164119812.94799998,kg -6222571d-87e5-3c25-b622-4abc0f51dc7e,SESCO,II.1.1,San Juan,AR-J,annual,2015,gas oil combustion consumption by to the public,2214.84228,TJ,CH4,3.9,kg/TJ,8637.884892,kg -6222571d-87e5-3c25-b622-4abc0f51dc7e,SESCO,II.1.1,San Juan,AR-J,annual,2015,gas oil combustion consumption by to the public,2214.84228,TJ,N2O,3.9,kg/TJ,8637.884892,kg -75fea948-5df1-396d-91b6-b21a8029ee17,SESCO,II.1.1,San Luis,AR-D,annual,2015,gas oil combustion consumption by to the public,2059.67076,TJ,CO2,74100.0,kg/TJ,152621603.31599998,kg -54ce2503-7fc9-396e-8275-291592b206c7,SESCO,II.1.1,San Luis,AR-D,annual,2015,gas oil combustion consumption by to the public,2059.67076,TJ,CH4,3.9,kg/TJ,8032.715964,kg -54ce2503-7fc9-396e-8275-291592b206c7,SESCO,II.1.1,San Luis,AR-D,annual,2015,gas oil combustion consumption by to the public,2059.67076,TJ,N2O,3.9,kg/TJ,8032.715964,kg -a9cdb861-bb57-3ae9-aaa3-214fe44ffd64,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2015,gas oil combustion consumption by to the public,3340.95552,TJ,CO2,74100.0,kg/TJ,247564804.032,kg -87f1eeb9-251a-3304-aac4-e5eb726cf578,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2015,gas oil combustion consumption by to the public,3340.95552,TJ,CH4,3.9,kg/TJ,13029.726528,kg -87f1eeb9-251a-3304-aac4-e5eb726cf578,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2015,gas oil combustion consumption by to the public,3340.95552,TJ,N2O,3.9,kg/TJ,13029.726528,kg -fcb152a3-a114-36da-a7f7-5a8c87a1c22f,SESCO,II.1.1,Santa Fe,AR-S,annual,2015,gas oil combustion consumption by to the public,10010.18844,TJ,CO2,74100.0,kg/TJ,741754963.404,kg -96da9233-b0e4-39f4-8f2b-5bac572121a1,SESCO,II.1.1,Santa Fe,AR-S,annual,2015,gas oil combustion consumption by to the public,10010.18844,TJ,CH4,3.9,kg/TJ,39039.734916,kg -96da9233-b0e4-39f4-8f2b-5bac572121a1,SESCO,II.1.1,Santa Fe,AR-S,annual,2015,gas oil combustion consumption by to the public,10010.18844,TJ,N2O,3.9,kg/TJ,39039.734916,kg -67f25b81-82b2-3e4e-9dcc-fde963c5683d,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2015,gas oil combustion consumption by to the public,2405.15856,TJ,CO2,74100.0,kg/TJ,178222249.296,kg -3bffd5e1-48d5-375e-b0c3-44d14851cdf3,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2015,gas oil combustion consumption by to the public,2405.15856,TJ,CH4,3.9,kg/TJ,9380.118384,kg -3bffd5e1-48d5-375e-b0c3-44d14851cdf3,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2015,gas oil combustion consumption by to the public,2405.15856,TJ,N2O,3.9,kg/TJ,9380.118384,kg -29fe3ea5-339b-3590-a388-4ff70d180dfd,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2015,gas oil combustion consumption by to the public,1131.459,TJ,CO2,74100.0,kg/TJ,83841111.9,kg -18a24ef1-c873-3831-9c93-5781efa5e313,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2015,gas oil combustion consumption by to the public,1131.459,TJ,CH4,3.9,kg/TJ,4412.6901,kg -18a24ef1-c873-3831-9c93-5781efa5e313,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2015,gas oil combustion consumption by to the public,1131.459,TJ,N2O,3.9,kg/TJ,4412.6901,kg -487cd585-7b57-3e0c-881d-3f154ebbb11e,SESCO,II.1.1,Tucuman,AR-T,annual,2015,gas oil combustion consumption by to the public,2318.0009999999997,TJ,CO2,74100.0,kg/TJ,171763874.1,kg -40e5afc8-c57b-3b74-8a7e-2c208a0d71e0,SESCO,II.1.1,Tucuman,AR-T,annual,2015,gas oil combustion consumption by to the public,2318.0009999999997,TJ,CH4,3.9,kg/TJ,9040.203899999999,kg -40e5afc8-c57b-3b74-8a7e-2c208a0d71e0,SESCO,II.1.1,Tucuman,AR-T,annual,2015,gas oil combustion consumption by to the public,2318.0009999999997,TJ,N2O,3.9,kg/TJ,9040.203899999999,kg -71855e2a-31fb-33a4-97b4-175f5b9fbc5b,SESCO,II.1.1,Buenos Aires,AR-B,annual,2015,gas oil combustion consumption by to the public,14565.71508,TJ,CO2,74100.0,kg/TJ,1079319487.428,kg -bd6ce2e2-0789-3b46-82eb-3b209fd8b53c,SESCO,II.1.1,Buenos Aires,AR-B,annual,2015,gas oil combustion consumption by to the public,14565.71508,TJ,CH4,3.9,kg/TJ,56806.288812,kg -bd6ce2e2-0789-3b46-82eb-3b209fd8b53c,SESCO,II.1.1,Buenos Aires,AR-B,annual,2015,gas oil combustion consumption by to the public,14565.71508,TJ,N2O,3.9,kg/TJ,56806.288812,kg -9a1ca1e9-9d56-3ee9-8e5e-e23eab53915e,SESCO,II.1.1,Capital Federal,AR-C,annual,2015,gas oil combustion consumption by to the public,1808.3478,TJ,CO2,74100.0,kg/TJ,133998571.98,kg -d167b477-7d4e-3dc5-ba18-86ed26b44d8a,SESCO,II.1.1,Capital Federal,AR-C,annual,2015,gas oil combustion consumption by to the public,1808.3478,TJ,CH4,3.9,kg/TJ,7052.55642,kg -d167b477-7d4e-3dc5-ba18-86ed26b44d8a,SESCO,II.1.1,Capital Federal,AR-C,annual,2015,gas oil combustion consumption by to the public,1808.3478,TJ,N2O,3.9,kg/TJ,7052.55642,kg -a8c7215c-e069-3b94-b4af-00f2cd4e53d2,SESCO,II.1.1,Catamarca,AR-K,annual,2015,gas oil combustion consumption by to the public,259.73892,TJ,CO2,74100.0,kg/TJ,19246653.972,kg -daf73bdd-cb91-31d4-b414-af3837e3ad41,SESCO,II.1.1,Catamarca,AR-K,annual,2015,gas oil combustion consumption by to the public,259.73892,TJ,CH4,3.9,kg/TJ,1012.981788,kg -daf73bdd-cb91-31d4-b414-af3837e3ad41,SESCO,II.1.1,Catamarca,AR-K,annual,2015,gas oil combustion consumption by to the public,259.73892,TJ,N2O,3.9,kg/TJ,1012.981788,kg -bd6e0604-f6f7-3316-98b3-f50e18bea3ed,SESCO,II.1.1,Chaco,AR-H,annual,2015,gas oil combustion consumption by to the public,1041.1589999999999,TJ,CO2,74100.0,kg/TJ,77149881.89999999,kg -d00ceeb7-4de6-321e-8b6e-8a1275cb63f1,SESCO,II.1.1,Chaco,AR-H,annual,2015,gas oil combustion consumption by to the public,1041.1589999999999,TJ,CH4,3.9,kg/TJ,4060.5200999999993,kg -d00ceeb7-4de6-321e-8b6e-8a1275cb63f1,SESCO,II.1.1,Chaco,AR-H,annual,2015,gas oil combustion consumption by to the public,1041.1589999999999,TJ,N2O,3.9,kg/TJ,4060.5200999999993,kg -98cc549e-3dde-312a-9de5-c6281af8ea39,SESCO,II.1.1,Chubut,AR-U,annual,2015,gas oil combustion consumption by to the public,1486.8798,TJ,CO2,74100.0,kg/TJ,110177793.17999999,kg -5f509fdb-16f6-3875-b309-3ac8176646be,SESCO,II.1.1,Chubut,AR-U,annual,2015,gas oil combustion consumption by to the public,1486.8798,TJ,CH4,3.9,kg/TJ,5798.83122,kg -5f509fdb-16f6-3875-b309-3ac8176646be,SESCO,II.1.1,Chubut,AR-U,annual,2015,gas oil combustion consumption by to the public,1486.8798,TJ,N2O,3.9,kg/TJ,5798.83122,kg -cfa678fe-f4c9-3f18-b0f6-36c8e7231d09,SESCO,II.1.1,Corrientes,AR-W,annual,2015,gas oil combustion consumption by to the public,942.3346799999999,TJ,CO2,74100.0,kg/TJ,69826999.788,kg -a70c1a2f-c1cf-38e1-85c4-384bc5799212,SESCO,II.1.1,Corrientes,AR-W,annual,2015,gas oil combustion consumption by to the public,942.3346799999999,TJ,CH4,3.9,kg/TJ,3675.105252,kg -a70c1a2f-c1cf-38e1-85c4-384bc5799212,SESCO,II.1.1,Corrientes,AR-W,annual,2015,gas oil combustion consumption by to the public,942.3346799999999,TJ,N2O,3.9,kg/TJ,3675.105252,kg -41d2ff8f-d91c-37fb-9dd8-49706388da08,SESCO,II.1.1,Córdoba,AR-X,annual,2015,gas oil combustion consumption by to the public,3487.16928,TJ,CO2,74100.0,kg/TJ,258399243.648,kg -0b607ac6-13e8-373e-958e-d31eefa220b3,SESCO,II.1.1,Córdoba,AR-X,annual,2015,gas oil combustion consumption by to the public,3487.16928,TJ,CH4,3.9,kg/TJ,13599.960192,kg -0b607ac6-13e8-373e-958e-d31eefa220b3,SESCO,II.1.1,Córdoba,AR-X,annual,2015,gas oil combustion consumption by to the public,3487.16928,TJ,N2O,3.9,kg/TJ,13599.960192,kg -b3b39715-f352-3f21-8de4-8ba1ebcc81c8,SESCO,II.1.1,Entre Rios,AR-E,annual,2015,gas oil combustion consumption by to the public,1642.52088,TJ,CO2,74100.0,kg/TJ,121710797.208,kg -ac4df489-5bf4-3151-b5f9-3c20e334cf81,SESCO,II.1.1,Entre Rios,AR-E,annual,2015,gas oil combustion consumption by to the public,1642.52088,TJ,CH4,3.9,kg/TJ,6405.831432,kg -ac4df489-5bf4-3151-b5f9-3c20e334cf81,SESCO,II.1.1,Entre Rios,AR-E,annual,2015,gas oil combustion consumption by to the public,1642.52088,TJ,N2O,3.9,kg/TJ,6405.831432,kg -1968a8a0-5f29-3520-8e4a-1934d49208db,SESCO,II.1.1,Formosa,AR-P,annual,2015,gas oil combustion consumption by to the public,329.92008,TJ,CO2,74100.0,kg/TJ,24447077.928,kg -0dbc1688-1b2f-36c8-8aec-3c105f0ef4f6,SESCO,II.1.1,Formosa,AR-P,annual,2015,gas oil combustion consumption by to the public,329.92008,TJ,CH4,3.9,kg/TJ,1286.688312,kg -0dbc1688-1b2f-36c8-8aec-3c105f0ef4f6,SESCO,II.1.1,Formosa,AR-P,annual,2015,gas oil combustion consumption by to the public,329.92008,TJ,N2O,3.9,kg/TJ,1286.688312,kg -6c5a1397-be19-3f69-9937-f5355b39ad80,SESCO,II.1.1,Jujuy,AR-Y,annual,2015,gas oil combustion consumption by to the public,558.84864,TJ,CO2,74100.0,kg/TJ,41410684.22400001,kg -9ad2c66b-69f7-36af-acb0-85684343ceab,SESCO,II.1.1,Jujuy,AR-Y,annual,2015,gas oil combustion consumption by to the public,558.84864,TJ,CH4,3.9,kg/TJ,2179.509696,kg -9ad2c66b-69f7-36af-acb0-85684343ceab,SESCO,II.1.1,Jujuy,AR-Y,annual,2015,gas oil combustion consumption by to the public,558.84864,TJ,N2O,3.9,kg/TJ,2179.509696,kg -51a8bdd9-7663-3a34-8375-7b0228bcbaa0,SESCO,II.1.1,La Pampa,AR-L,annual,2015,gas oil combustion consumption by to the public,1009.8790799999999,TJ,CO2,74100.0,kg/TJ,74832039.828,kg -fbf5eb06-e563-332f-ba25-70a25d7f4c35,SESCO,II.1.1,La Pampa,AR-L,annual,2015,gas oil combustion consumption by to the public,1009.8790799999999,TJ,CH4,3.9,kg/TJ,3938.5284119999997,kg -fbf5eb06-e563-332f-ba25-70a25d7f4c35,SESCO,II.1.1,La Pampa,AR-L,annual,2015,gas oil combustion consumption by to the public,1009.8790799999999,TJ,N2O,3.9,kg/TJ,3938.5284119999997,kg -bc0b5c9e-76e2-3293-a822-4c066f314339,SESCO,II.1.1,La Rioja,AR-F,annual,2015,gas oil combustion consumption by to the public,344.15136,TJ,CO2,74100.0,kg/TJ,25501615.776,kg -ab140677-c079-3da4-b631-7ff1156161f1,SESCO,II.1.1,La Rioja,AR-F,annual,2015,gas oil combustion consumption by to the public,344.15136,TJ,CH4,3.9,kg/TJ,1342.190304,kg -ab140677-c079-3da4-b631-7ff1156161f1,SESCO,II.1.1,La Rioja,AR-F,annual,2015,gas oil combustion consumption by to the public,344.15136,TJ,N2O,3.9,kg/TJ,1342.190304,kg -0a2c1a28-d008-3ef5-8e53-4bbdfde9a9c0,SESCO,II.1.1,Mendoza,AR-M,annual,2015,gas oil combustion consumption by to the public,2703.90708,TJ,CO2,74100.0,kg/TJ,200359514.628,kg -c8e8f03c-f511-32ef-9dc5-93365cec7d0d,SESCO,II.1.1,Mendoza,AR-M,annual,2015,gas oil combustion consumption by to the public,2703.90708,TJ,CH4,3.9,kg/TJ,10545.237611999999,kg -c8e8f03c-f511-32ef-9dc5-93365cec7d0d,SESCO,II.1.1,Mendoza,AR-M,annual,2015,gas oil combustion consumption by to the public,2703.90708,TJ,N2O,3.9,kg/TJ,10545.237611999999,kg -6b572d1e-afa1-33e9-a536-ae2e9114e6ba,SESCO,II.1.1,Misiones,AR-N,annual,2015,gas oil combustion consumption by to the public,1085.2254,TJ,CO2,74100.0,kg/TJ,80415202.14,kg -9181a1f7-ef23-3716-bbb6-85a4af4feee1,SESCO,II.1.1,Misiones,AR-N,annual,2015,gas oil combustion consumption by to the public,1085.2254,TJ,CH4,3.9,kg/TJ,4232.37906,kg -9181a1f7-ef23-3716-bbb6-85a4af4feee1,SESCO,II.1.1,Misiones,AR-N,annual,2015,gas oil combustion consumption by to the public,1085.2254,TJ,N2O,3.9,kg/TJ,4232.37906,kg -020796c1-5806-3fe3-8a40-8d512f77f520,SESCO,II.1.1,Neuquén,AR-Q,annual,2015,gas oil combustion consumption by to the public,1815.28284,TJ,CO2,74100.0,kg/TJ,134512458.444,kg -d72f3b8c-c8b2-3763-b98e-f5dcb8e9b18d,SESCO,II.1.1,Neuquén,AR-Q,annual,2015,gas oil combustion consumption by to the public,1815.28284,TJ,CH4,3.9,kg/TJ,7079.603076,kg -d72f3b8c-c8b2-3763-b98e-f5dcb8e9b18d,SESCO,II.1.1,Neuquén,AR-Q,annual,2015,gas oil combustion consumption by to the public,1815.28284,TJ,N2O,3.9,kg/TJ,7079.603076,kg -ae43e80d-ff87-33b3-baa3-66c33f4f2885,SESCO,II.1.1,Rio Negro,AR-R,annual,2015,gas oil combustion consumption by to the public,1376.5332,TJ,CO2,74100.0,kg/TJ,102001110.12,kg -2b0feb56-381d-3484-bffb-53558334fb97,SESCO,II.1.1,Rio Negro,AR-R,annual,2015,gas oil combustion consumption by to the public,1376.5332,TJ,CH4,3.9,kg/TJ,5368.47948,kg -2b0feb56-381d-3484-bffb-53558334fb97,SESCO,II.1.1,Rio Negro,AR-R,annual,2015,gas oil combustion consumption by to the public,1376.5332,TJ,N2O,3.9,kg/TJ,5368.47948,kg -0fb105af-3af1-3227-9b48-9f7413af493c,SESCO,II.1.1,Salta,AR-A,annual,2015,gas oil combustion consumption by to the public,1213.48752,TJ,CO2,74100.0,kg/TJ,89919425.232,kg -2594cf88-8744-3008-9954-903eeb77777f,SESCO,II.1.1,Salta,AR-A,annual,2015,gas oil combustion consumption by to the public,1213.48752,TJ,CH4,3.9,kg/TJ,4732.601328,kg -2594cf88-8744-3008-9954-903eeb77777f,SESCO,II.1.1,Salta,AR-A,annual,2015,gas oil combustion consumption by to the public,1213.48752,TJ,N2O,3.9,kg/TJ,4732.601328,kg -786c2c8c-cbdc-389c-82d3-2dacfd8a13ad,SESCO,II.1.1,San Juan,AR-J,annual,2015,gas oil combustion consumption by to the public,577.59492,TJ,CO2,74100.0,kg/TJ,42799783.572,kg -89ade0dd-f861-34cb-957a-8c0b7981d091,SESCO,II.1.1,San Juan,AR-J,annual,2015,gas oil combustion consumption by to the public,577.59492,TJ,CH4,3.9,kg/TJ,2252.620188,kg -89ade0dd-f861-34cb-957a-8c0b7981d091,SESCO,II.1.1,San Juan,AR-J,annual,2015,gas oil combustion consumption by to the public,577.59492,TJ,N2O,3.9,kg/TJ,2252.620188,kg -25c5bcb3-60b5-3ab7-b5fe-301c15108a13,SESCO,II.1.1,San Luis,AR-D,annual,2015,gas oil combustion consumption by to the public,615.01524,TJ,CO2,74100.0,kg/TJ,45572629.283999994,kg -8e44d5b9-41a0-3ae3-9c39-fd90aca795fc,SESCO,II.1.1,San Luis,AR-D,annual,2015,gas oil combustion consumption by to the public,615.01524,TJ,CH4,3.9,kg/TJ,2398.5594359999996,kg -8e44d5b9-41a0-3ae3-9c39-fd90aca795fc,SESCO,II.1.1,San Luis,AR-D,annual,2015,gas oil combustion consumption by to the public,615.01524,TJ,N2O,3.9,kg/TJ,2398.5594359999996,kg -b6d9cd10-aa08-3da4-a6dd-57c2b3d63fa8,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2015,gas oil combustion consumption by to the public,1062.1086,TJ,CO2,74100.0,kg/TJ,78702247.26,kg -852db092-7ab3-3b46-8e96-211301646e9a,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2015,gas oil combustion consumption by to the public,1062.1086,TJ,CH4,3.9,kg/TJ,4142.22354,kg -852db092-7ab3-3b46-8e96-211301646e9a,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2015,gas oil combustion consumption by to the public,1062.1086,TJ,N2O,3.9,kg/TJ,4142.22354,kg -30f9c1fc-8160-310d-ada2-adb53c6c0bba,SESCO,II.1.1,Santa Fe,AR-S,annual,2015,gas oil combustion consumption by to the public,3343.55616,TJ,CO2,74100.0,kg/TJ,247757511.456,kg -de9bd409-8ba3-347f-be90-e8628848f39b,SESCO,II.1.1,Santa Fe,AR-S,annual,2015,gas oil combustion consumption by to the public,3343.55616,TJ,CH4,3.9,kg/TJ,13039.869024,kg -de9bd409-8ba3-347f-be90-e8628848f39b,SESCO,II.1.1,Santa Fe,AR-S,annual,2015,gas oil combustion consumption by to the public,3343.55616,TJ,N2O,3.9,kg/TJ,13039.869024,kg -e14e3d95-83f3-3733-ad7e-aa8362a9245a,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2015,gas oil combustion consumption by to the public,703.03968,TJ,CO2,74100.0,kg/TJ,52095240.287999995,kg -eab71d4c-f559-3d24-b285-10db4586f0c8,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2015,gas oil combustion consumption by to the public,703.03968,TJ,CH4,3.9,kg/TJ,2741.8547519999997,kg -eab71d4c-f559-3d24-b285-10db4586f0c8,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2015,gas oil combustion consumption by to the public,703.03968,TJ,N2O,3.9,kg/TJ,2741.8547519999997,kg -ab4b880d-c35f-3afe-811d-4d6ed19d01e2,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2015,gas oil combustion consumption by to the public,230.62619999999998,TJ,CO2,74100.0,kg/TJ,17089401.419999998,kg -be3bfe42-2b55-3351-8b20-3d8d84b3f900,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2015,gas oil combustion consumption by to the public,230.62619999999998,TJ,CH4,3.9,kg/TJ,899.4421799999999,kg -be3bfe42-2b55-3351-8b20-3d8d84b3f900,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2015,gas oil combustion consumption by to the public,230.62619999999998,TJ,N2O,3.9,kg/TJ,899.4421799999999,kg -879c889b-8b7f-3dd8-a4a9-843edc08ef75,SESCO,II.1.1,Tucuman,AR-T,annual,2015,gas oil combustion consumption by to the public,796.33764,TJ,CO2,74100.0,kg/TJ,59008619.124,kg -b7197ca3-3e68-358c-9218-ff66b12126c3,SESCO,II.1.1,Tucuman,AR-T,annual,2015,gas oil combustion consumption by to the public,796.33764,TJ,CH4,3.9,kg/TJ,3105.7167959999997,kg -b7197ca3-3e68-358c-9218-ff66b12126c3,SESCO,II.1.1,Tucuman,AR-T,annual,2015,gas oil combustion consumption by to the public,796.33764,TJ,N2O,3.9,kg/TJ,3105.7167959999997,kg -a5c4424a-0b91-3099-831e-0a70a370ddad,SESCO,II.1.1,Buenos Aires,AR-B,annual,2015,jet kerosene combustion consumption by to the public,159.30944499999998,TJ,CO2,71500.0,kg/TJ,11390625.317499999,kg -d1861ae4-5ee3-3766-86bf-b18c7c54ad7a,SESCO,II.1.1,Buenos Aires,AR-B,annual,2015,jet kerosene combustion consumption by to the public,159.30944499999998,TJ,CH4,0.5,kg/TJ,79.65472249999999,kg -8e9c2fc3-6752-3d7e-ab8e-f355cf77f41e,SESCO,II.1.1,Buenos Aires,AR-B,annual,2015,jet kerosene combustion consumption by to the public,159.30944499999998,TJ,N2O,2.0,kg/TJ,318.61888999999996,kg -3d70aadb-e730-3f89-9c1c-002e6b44235e,SESCO,II.1.1,Capital Federal,AR-C,annual,2015,jet kerosene combustion consumption by to the public,8.209233,TJ,CO2,71500.0,kg/TJ,586960.1595,kg -5cecc801-dd85-306f-9765-18b84dea41b0,SESCO,II.1.1,Capital Federal,AR-C,annual,2015,jet kerosene combustion consumption by to the public,8.209233,TJ,CH4,0.5,kg/TJ,4.1046165,kg -6eb78b6e-a5e3-3ef3-86c2-c51455df45d8,SESCO,II.1.1,Capital Federal,AR-C,annual,2015,jet kerosene combustion consumption by to the public,8.209233,TJ,N2O,2.0,kg/TJ,16.418466,kg -29f8ab07-33b7-3152-9ec6-b6a337086be9,SESCO,II.1.1,Catamarca,AR-K,annual,2015,jet kerosene combustion consumption by to the public,4.214701999999999,TJ,CO2,71500.0,kg/TJ,301351.1929999999,kg -f8819442-7c3e-3637-8b87-42db3d811221,SESCO,II.1.1,Catamarca,AR-K,annual,2015,jet kerosene combustion consumption by to the public,4.214701999999999,TJ,CH4,0.5,kg/TJ,2.1073509999999995,kg -65fc2ba7-1470-3cb9-8376-2a8cfbd3e413,SESCO,II.1.1,Catamarca,AR-K,annual,2015,jet kerosene combustion consumption by to the public,4.214701999999999,TJ,N2O,2.0,kg/TJ,8.429403999999998,kg -5270fa1f-e19a-3a3f-8707-e7abb0098177,SESCO,II.1.1,Chaco,AR-H,annual,2015,jet kerosene combustion consumption by to the public,1.4782909999999998,TJ,CO2,71500.0,kg/TJ,105697.80649999999,kg -563602ca-7a0d-3ed4-8459-bd8f212e81f6,SESCO,II.1.1,Chaco,AR-H,annual,2015,jet kerosene combustion consumption by to the public,1.4782909999999998,TJ,CH4,0.5,kg/TJ,0.7391454999999999,kg -6f3905a2-c0e1-34fe-95b9-d2273a918a77,SESCO,II.1.1,Chaco,AR-H,annual,2015,jet kerosene combustion consumption by to the public,1.4782909999999998,TJ,N2O,2.0,kg/TJ,2.9565819999999996,kg -6cebcd35-f56a-3361-a6b0-e548182686d2,SESCO,II.1.1,Chubut,AR-U,annual,2015,jet kerosene combustion consumption by to the public,14.059490999999998,TJ,CO2,71500.0,kg/TJ,1005253.6064999999,kg -55ef798a-329b-337c-bbd5-23706e95a644,SESCO,II.1.1,Chubut,AR-U,annual,2015,jet kerosene combustion consumption by to the public,14.059490999999998,TJ,CH4,0.5,kg/TJ,7.029745499999999,kg -8d4e98a1-99c3-3b06-8781-b4ddc116c8b9,SESCO,II.1.1,Chubut,AR-U,annual,2015,jet kerosene combustion consumption by to the public,14.059490999999998,TJ,N2O,2.0,kg/TJ,28.118981999999995,kg -dd2f4b38-6e83-3127-b3e3-c6f95b812051,SESCO,II.1.1,Corrientes,AR-W,annual,2015,jet kerosene combustion consumption by to the public,3.2396589999999996,TJ,CO2,71500.0,kg/TJ,231635.61849999998,kg -741c7497-9464-3ef9-b8b1-70694628c19c,SESCO,II.1.1,Corrientes,AR-W,annual,2015,jet kerosene combustion consumption by to the public,3.2396589999999996,TJ,CH4,0.5,kg/TJ,1.6198294999999998,kg -026a36fb-7749-3a28-91ec-cf7d7eed021e,SESCO,II.1.1,Corrientes,AR-W,annual,2015,jet kerosene combustion consumption by to the public,3.2396589999999996,TJ,N2O,2.0,kg/TJ,6.479317999999999,kg -01e6745c-b0c8-3aef-a489-bc0aa1d3b8f4,SESCO,II.1.1,Córdoba,AR-X,annual,2015,jet kerosene combustion consumption by to the public,70.73779699999999,TJ,CO2,71500.0,kg/TJ,5057752.485499999,kg -2537c75a-9994-33c4-8fc0-82f559a3ab6e,SESCO,II.1.1,Córdoba,AR-X,annual,2015,jet kerosene combustion consumption by to the public,70.73779699999999,TJ,CH4,0.5,kg/TJ,35.36889849999999,kg -1d83f980-7a96-3c45-bae7-6c207e4ceac4,SESCO,II.1.1,Córdoba,AR-X,annual,2015,jet kerosene combustion consumption by to the public,70.73779699999999,TJ,N2O,2.0,kg/TJ,141.47559399999997,kg -a9ab379a-2ef7-3a8d-aa09-19119db9b22e,SESCO,II.1.1,Entre Rios,AR-E,annual,2015,jet kerosene combustion consumption by to the public,7.265642999999999,TJ,CO2,71500.0,kg/TJ,519493.47449999995,kg -bc8b01f7-0a8d-327e-a9d9-c79a35998d4b,SESCO,II.1.1,Entre Rios,AR-E,annual,2015,jet kerosene combustion consumption by to the public,7.265642999999999,TJ,CH4,0.5,kg/TJ,3.6328214999999995,kg -d717a2ee-f8bd-3cdb-82b8-3aad5db3df5a,SESCO,II.1.1,Entre Rios,AR-E,annual,2015,jet kerosene combustion consumption by to the public,7.265642999999999,TJ,N2O,2.0,kg/TJ,14.531285999999998,kg -d6e0c48f-42d1-3d6b-a00c-62a4ad26cc67,SESCO,II.1.1,Jujuy,AR-Y,annual,2015,jet kerosene combustion consumption by to the public,3.8058129999999992,TJ,CO2,71500.0,kg/TJ,272115.6294999999,kg -a24bbda5-6785-3ca6-adcd-de9ccd3492e6,SESCO,II.1.1,Jujuy,AR-Y,annual,2015,jet kerosene combustion consumption by to the public,3.8058129999999992,TJ,CH4,0.5,kg/TJ,1.9029064999999996,kg -f1e8e061-e2fa-3fe0-a956-b68b792f65a0,SESCO,II.1.1,Jujuy,AR-Y,annual,2015,jet kerosene combustion consumption by to the public,3.8058129999999992,TJ,N2O,2.0,kg/TJ,7.6116259999999984,kg -1eb0ee5d-a706-38c0-a953-168eb76ffe0d,SESCO,II.1.1,La Pampa,AR-L,annual,2015,jet kerosene combustion consumption by to the public,4.246154999999999,TJ,CO2,71500.0,kg/TJ,303600.0824999999,kg -50f4a9b3-6bb0-3324-93d5-2ca460091311,SESCO,II.1.1,La Pampa,AR-L,annual,2015,jet kerosene combustion consumption by to the public,4.246154999999999,TJ,CH4,0.5,kg/TJ,2.1230774999999995,kg -e976d368-3920-3106-a6a7-96bbeb680144,SESCO,II.1.1,La Pampa,AR-L,annual,2015,jet kerosene combustion consumption by to the public,4.246154999999999,TJ,N2O,2.0,kg/TJ,8.492309999999998,kg -a55dc745-fd58-31d6-a58d-d24c46f75192,SESCO,II.1.1,La Rioja,AR-F,annual,2015,jet kerosene combustion consumption by to the public,2.7364109999999995,TJ,CO2,71500.0,kg/TJ,195653.38649999996,kg -87bfa2df-afb1-38ce-860b-71f0c2d69fa8,SESCO,II.1.1,La Rioja,AR-F,annual,2015,jet kerosene combustion consumption by to the public,2.7364109999999995,TJ,CH4,0.5,kg/TJ,1.3682054999999997,kg -d9e8130e-4f80-3dca-9add-911f3a6b00d2,SESCO,II.1.1,La Rioja,AR-F,annual,2015,jet kerosene combustion consumption by to the public,2.7364109999999995,TJ,N2O,2.0,kg/TJ,5.472821999999999,kg -12e9bba2-1912-322a-916e-3c0a39cc7606,SESCO,II.1.1,Mendoza,AR-M,annual,2015,jet kerosene combustion consumption by to the public,31.201375999999996,TJ,CO2,71500.0,kg/TJ,2230898.3839999996,kg -caf8d0b8-30e2-3f86-8f77-b4ad35387ef9,SESCO,II.1.1,Mendoza,AR-M,annual,2015,jet kerosene combustion consumption by to the public,31.201375999999996,TJ,CH4,0.5,kg/TJ,15.600687999999998,kg -117a7b24-7a87-32fc-a80d-473247980501,SESCO,II.1.1,Mendoza,AR-M,annual,2015,jet kerosene combustion consumption by to the public,31.201375999999996,TJ,N2O,2.0,kg/TJ,62.40275199999999,kg -87bfb418-3806-3283-9442-138678456112,SESCO,II.1.1,Neuquén,AR-Q,annual,2015,jet kerosene combustion consumption by to the public,7.737437999999999,TJ,CO2,71500.0,kg/TJ,553226.8169999999,kg -1defacc1-2d19-33db-9523-f2f90f0e4dde,SESCO,II.1.1,Neuquén,AR-Q,annual,2015,jet kerosene combustion consumption by to the public,7.737437999999999,TJ,CH4,0.5,kg/TJ,3.8687189999999996,kg -46531171-0013-3e10-9517-a1e316b083c5,SESCO,II.1.1,Neuquén,AR-Q,annual,2015,jet kerosene combustion consumption by to the public,7.737437999999999,TJ,N2O,2.0,kg/TJ,15.474875999999998,kg -efb9ec62-a140-3f58-8cfa-e4bfdac10aa2,SESCO,II.1.1,Rio Negro,AR-R,annual,2015,jet kerosene combustion consumption by to the public,2.7049579999999995,TJ,CO2,71500.0,kg/TJ,193404.49699999997,kg -00320cff-2969-3aae-9fcb-cbd1e7803136,SESCO,II.1.1,Rio Negro,AR-R,annual,2015,jet kerosene combustion consumption by to the public,2.7049579999999995,TJ,CH4,0.5,kg/TJ,1.3524789999999998,kg -fa675c9b-d3a1-3e12-8da2-98cbfd7d1c8d,SESCO,II.1.1,Rio Negro,AR-R,annual,2015,jet kerosene combustion consumption by to the public,2.7049579999999995,TJ,N2O,2.0,kg/TJ,5.409915999999999,kg -ee528f83-e6ab-388f-a668-9ec7094fa741,SESCO,II.1.1,Salta,AR-A,annual,2015,jet kerosene combustion consumption by to the public,1.2895729999999999,TJ,CO2,71500.0,kg/TJ,92204.46949999999,kg -14e49c10-7111-3ee0-a4d9-675a592e25c9,SESCO,II.1.1,Salta,AR-A,annual,2015,jet kerosene combustion consumption by to the public,1.2895729999999999,TJ,CH4,0.5,kg/TJ,0.6447864999999999,kg -c0e7d1b1-b4e2-3bb7-a565-81c346df0196,SESCO,II.1.1,Salta,AR-A,annual,2015,jet kerosene combustion consumption by to the public,1.2895729999999999,TJ,N2O,2.0,kg/TJ,2.5791459999999997,kg -d12aad43-c8ba-3739-87b4-a3b5bbf9b833,SESCO,II.1.1,San Juan,AR-J,annual,2015,jet kerosene combustion consumption by to the public,3.2082059999999997,TJ,CO2,71500.0,kg/TJ,229386.72899999996,kg -f63271a0-50eb-3165-83e4-c8a83e2a952e,SESCO,II.1.1,San Juan,AR-J,annual,2015,jet kerosene combustion consumption by to the public,3.2082059999999997,TJ,CH4,0.5,kg/TJ,1.6041029999999998,kg -4c97f967-764d-37d3-865a-899a4f47e708,SESCO,II.1.1,San Juan,AR-J,annual,2015,jet kerosene combustion consumption by to the public,3.2082059999999997,TJ,N2O,2.0,kg/TJ,6.416411999999999,kg -46612b0b-d619-307c-9132-cc7f1bb221e2,SESCO,II.1.1,San Luis,AR-D,annual,2015,jet kerosene combustion consumption by to the public,6.856753999999999,TJ,CO2,71500.0,kg/TJ,490257.9109999999,kg -c9cc32e5-3eed-3e16-9889-ea3aa4e23a87,SESCO,II.1.1,San Luis,AR-D,annual,2015,jet kerosene combustion consumption by to the public,6.856753999999999,TJ,CH4,0.5,kg/TJ,3.4283769999999993,kg -0cc2b335-6073-3fea-b6f6-b6609662bbab,SESCO,II.1.1,San Luis,AR-D,annual,2015,jet kerosene combustion consumption by to the public,6.856753999999999,TJ,N2O,2.0,kg/TJ,13.713507999999997,kg -c58842aa-b102-3786-aad0-ee140e76a12a,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2015,jet kerosene combustion consumption by to the public,9.718976999999999,TJ,CO2,71500.0,kg/TJ,694906.8555,kg -27b1da6a-6b6e-3a3d-aae5-8168b3b60dd4,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2015,jet kerosene combustion consumption by to the public,9.718976999999999,TJ,CH4,0.5,kg/TJ,4.859488499999999,kg -55c0c5e6-36f2-32a8-8881-6bf34390317a,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2015,jet kerosene combustion consumption by to the public,9.718976999999999,TJ,N2O,2.0,kg/TJ,19.437953999999998,kg -fdcf8e52-67ab-31d7-956b-84c5c72d79ed,SESCO,II.1.1,Santa Fe,AR-S,annual,2015,jet kerosene combustion consumption by to the public,30.194879999999994,TJ,CO2,71500.0,kg/TJ,2158933.9199999995,kg -9928b0ef-5746-3bc8-8166-e9732b5e6282,SESCO,II.1.1,Santa Fe,AR-S,annual,2015,jet kerosene combustion consumption by to the public,30.194879999999994,TJ,CH4,0.5,kg/TJ,15.097439999999997,kg -b810f00e-8235-308e-87fb-81b8f7550b70,SESCO,II.1.1,Santa Fe,AR-S,annual,2015,jet kerosene combustion consumption by to the public,30.194879999999994,TJ,N2O,2.0,kg/TJ,60.38975999999999,kg -992cd0de-c9ec-36e7-961f-d6a21e32d6b1,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2015,jet kerosene combustion consumption by to the public,5.189744999999999,TJ,CO2,71500.0,kg/TJ,371066.76749999996,kg -c2471dde-b3d8-328d-ba13-e447b1105769,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2015,jet kerosene combustion consumption by to the public,5.189744999999999,TJ,CH4,0.5,kg/TJ,2.5948724999999997,kg -3c72de9d-2cbc-3c7b-aa5b-91a8ca4d7492,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2015,jet kerosene combustion consumption by to the public,5.189744999999999,TJ,N2O,2.0,kg/TJ,10.379489999999999,kg -d597201e-e956-36f6-b55c-d9e7e5708a19,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2015,jet kerosene combustion consumption by to the public,0.31453,TJ,CO2,71500.0,kg/TJ,22488.894999999997,kg -4b1ac901-02d8-31c5-819a-b1d3d0fcc5d2,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2015,jet kerosene combustion consumption by to the public,0.31453,TJ,CH4,0.5,kg/TJ,0.157265,kg -18d7b1ee-08aa-325c-9b42-acec0c94c818,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2015,jet kerosene combustion consumption by to the public,0.31453,TJ,N2O,2.0,kg/TJ,0.62906,kg -ebfaf0eb-83b7-3e70-a0d2-7b368efdfa3c,SESCO,II.1.1,Tucuman,AR-T,annual,2015,jet kerosene combustion consumption by to the public,11.291626999999998,TJ,CO2,71500.0,kg/TJ,807351.3304999999,kg -5ad8a54f-c976-3fd5-9b4d-6056f28b42b0,SESCO,II.1.1,Tucuman,AR-T,annual,2015,jet kerosene combustion consumption by to the public,11.291626999999998,TJ,CH4,0.5,kg/TJ,5.645813499999999,kg -d64ce80a-4fa3-301b-95b5-1e3fa3d5d3e2,SESCO,II.1.1,Tucuman,AR-T,annual,2015,jet kerosene combustion consumption by to the public,11.291626999999998,TJ,N2O,2.0,kg/TJ,22.583253999999997,kg -db5b03e8-0868-3e46-bb99-f4afe8bf9d95,SESCO,II.1.1,Buenos Aires,AR-B,annual,2015,gasoline combustion consumption by freight transport,29.0608,TJ,CO2,69300.0,kg/TJ,2013913.44,kg -3e950d7d-750e-3d28-9716-a168e1579bbe,SESCO,II.1.1,Buenos Aires,AR-B,annual,2015,gasoline combustion consumption by freight transport,29.0608,TJ,CH4,33.0,kg/TJ,959.0064,kg -375d59f7-d79b-3ec6-a7b4-5cb9f1da2134,SESCO,II.1.1,Buenos Aires,AR-B,annual,2015,gasoline combustion consumption by freight transport,29.0608,TJ,N2O,3.2,kg/TJ,92.99456,kg -b854de17-dcd6-399b-88d7-76cadd1781cf,SESCO,II.1.1,Capital Federal,AR-C,annual,2015,gasoline combustion consumption by freight transport,2.4365,TJ,CO2,69300.0,kg/TJ,168849.45,kg -4bae93d9-2269-31b5-ba16-2ed4398e5862,SESCO,II.1.1,Capital Federal,AR-C,annual,2015,gasoline combustion consumption by freight transport,2.4365,TJ,CH4,33.0,kg/TJ,80.4045,kg -85090383-9b98-3884-8791-91f863693051,SESCO,II.1.1,Capital Federal,AR-C,annual,2015,gasoline combustion consumption by freight transport,2.4365,TJ,N2O,3.2,kg/TJ,7.796800000000001,kg -40258345-1b22-365f-ac04-8ae289b96193,SESCO,II.1.1,Buenos Aires,AR-B,annual,2015,gas oil combustion consumption by freight transport,7016.34612,TJ,CO2,74100.0,kg/TJ,519911247.492,kg -66b171d0-7280-3643-b917-4c08dc9bdc7c,SESCO,II.1.1,Buenos Aires,AR-B,annual,2015,gas oil combustion consumption by freight transport,7016.34612,TJ,CH4,3.9,kg/TJ,27363.749868,kg -66b171d0-7280-3643-b917-4c08dc9bdc7c,SESCO,II.1.1,Buenos Aires,AR-B,annual,2015,gas oil combustion consumption by freight transport,7016.34612,TJ,N2O,3.9,kg/TJ,27363.749868,kg -47dab972-9b97-315d-a866-370e0b6f677a,SESCO,II.1.1,Capital Federal,AR-C,annual,2015,gas oil combustion consumption by freight transport,3403.62372,TJ,CO2,74100.0,kg/TJ,252208517.652,kg -280dc4e2-7d54-3c8e-a31a-07d31970515a,SESCO,II.1.1,Capital Federal,AR-C,annual,2015,gas oil combustion consumption by freight transport,3403.62372,TJ,CH4,3.9,kg/TJ,13274.132508,kg -280dc4e2-7d54-3c8e-a31a-07d31970515a,SESCO,II.1.1,Capital Federal,AR-C,annual,2015,gas oil combustion consumption by freight transport,3403.62372,TJ,N2O,3.9,kg/TJ,13274.132508,kg -11f01d3c-36db-3cad-a19e-d03df581bb91,SESCO,II.1.1,Catamarca,AR-K,annual,2015,gas oil combustion consumption by freight transport,24.45324,TJ,CO2,74100.0,kg/TJ,1811985.084,kg -a398d834-f0e7-3ef2-987f-80e2f118910a,SESCO,II.1.1,Catamarca,AR-K,annual,2015,gas oil combustion consumption by freight transport,24.45324,TJ,CH4,3.9,kg/TJ,95.367636,kg -a398d834-f0e7-3ef2-987f-80e2f118910a,SESCO,II.1.1,Catamarca,AR-K,annual,2015,gas oil combustion consumption by freight transport,24.45324,TJ,N2O,3.9,kg/TJ,95.367636,kg -0cda1707-3ecb-3289-af7e-9a8425d4b79d,SESCO,II.1.1,Chaco,AR-H,annual,2015,gas oil combustion consumption by freight transport,195.33696,TJ,CO2,74100.0,kg/TJ,14474468.736,kg -102166e9-63f6-3af3-8525-1ccf966da59c,SESCO,II.1.1,Chaco,AR-H,annual,2015,gas oil combustion consumption by freight transport,195.33696,TJ,CH4,3.9,kg/TJ,761.814144,kg -102166e9-63f6-3af3-8525-1ccf966da59c,SESCO,II.1.1,Chaco,AR-H,annual,2015,gas oil combustion consumption by freight transport,195.33696,TJ,N2O,3.9,kg/TJ,761.814144,kg -2f56c5a3-9fab-3026-8e61-7535eb10e057,SESCO,II.1.1,Chubut,AR-U,annual,2015,gas oil combustion consumption by freight transport,228.459,TJ,CO2,74100.0,kg/TJ,16928811.9,kg -302e7d60-b5be-31f9-b2f4-bbf881ef651e,SESCO,II.1.1,Chubut,AR-U,annual,2015,gas oil combustion consumption by freight transport,228.459,TJ,CH4,3.9,kg/TJ,890.9901,kg -302e7d60-b5be-31f9-b2f4-bbf881ef651e,SESCO,II.1.1,Chubut,AR-U,annual,2015,gas oil combustion consumption by freight transport,228.459,TJ,N2O,3.9,kg/TJ,890.9901,kg -5f8b0f4b-edd7-38dc-9b72-24a41776d4fb,SESCO,II.1.1,Corrientes,AR-W,annual,2015,gas oil combustion consumption by freight transport,151.63175999999999,TJ,CO2,74100.0,kg/TJ,11235913.416,kg -be894948-5507-319d-a04c-d47caba82717,SESCO,II.1.1,Corrientes,AR-W,annual,2015,gas oil combustion consumption by freight transport,151.63175999999999,TJ,CH4,3.9,kg/TJ,591.3638639999999,kg -be894948-5507-319d-a04c-d47caba82717,SESCO,II.1.1,Corrientes,AR-W,annual,2015,gas oil combustion consumption by freight transport,151.63175999999999,TJ,N2O,3.9,kg/TJ,591.3638639999999,kg -775017a9-2d7f-3d60-a1b0-74533725d12e,SESCO,II.1.1,Córdoba,AR-X,annual,2015,gas oil combustion consumption by freight transport,1676.18472,TJ,CO2,74100.0,kg/TJ,124205287.752,kg -aaa96551-c336-3771-8293-dde8107641d7,SESCO,II.1.1,Córdoba,AR-X,annual,2015,gas oil combustion consumption by freight transport,1676.18472,TJ,CH4,3.9,kg/TJ,6537.120408,kg -aaa96551-c336-3771-8293-dde8107641d7,SESCO,II.1.1,Córdoba,AR-X,annual,2015,gas oil combustion consumption by freight transport,1676.18472,TJ,N2O,3.9,kg/TJ,6537.120408,kg -051fea49-3d74-36e6-86c7-b6319e9f305b,SESCO,II.1.1,Entre Rios,AR-E,annual,2015,gas oil combustion consumption by freight transport,199.88808,TJ,CO2,74100.0,kg/TJ,14811706.728,kg -435f5fb2-a0ca-3038-9881-8c6b41351a33,SESCO,II.1.1,Entre Rios,AR-E,annual,2015,gas oil combustion consumption by freight transport,199.88808,TJ,CH4,3.9,kg/TJ,779.563512,kg -435f5fb2-a0ca-3038-9881-8c6b41351a33,SESCO,II.1.1,Entre Rios,AR-E,annual,2015,gas oil combustion consumption by freight transport,199.88808,TJ,N2O,3.9,kg/TJ,779.563512,kg -4bf1240c-e8cc-37a8-bfad-f8a030a3ef15,SESCO,II.1.1,Jujuy,AR-Y,annual,2015,gas oil combustion consumption by freight transport,44.210879999999996,TJ,CO2,74100.0,kg/TJ,3276026.2079999996,kg -bfd99c05-a074-3175-9f6d-5c29951d561f,SESCO,II.1.1,Jujuy,AR-Y,annual,2015,gas oil combustion consumption by freight transport,44.210879999999996,TJ,CH4,3.9,kg/TJ,172.422432,kg -bfd99c05-a074-3175-9f6d-5c29951d561f,SESCO,II.1.1,Jujuy,AR-Y,annual,2015,gas oil combustion consumption by freight transport,44.210879999999996,TJ,N2O,3.9,kg/TJ,172.422432,kg -e5f1854d-b2ef-3164-839e-af0e972dc688,SESCO,II.1.1,La Pampa,AR-L,annual,2015,gas oil combustion consumption by freight transport,31.027079999999998,TJ,CO2,74100.0,kg/TJ,2299106.628,kg -13ba07f9-32de-36aa-9cb2-908baae5336c,SESCO,II.1.1,La Pampa,AR-L,annual,2015,gas oil combustion consumption by freight transport,31.027079999999998,TJ,CH4,3.9,kg/TJ,121.00561199999999,kg -13ba07f9-32de-36aa-9cb2-908baae5336c,SESCO,II.1.1,La Pampa,AR-L,annual,2015,gas oil combustion consumption by freight transport,31.027079999999998,TJ,N2O,3.9,kg/TJ,121.00561199999999,kg -fe444169-8361-367d-ab01-0aed55615d4f,SESCO,II.1.1,La Rioja,AR-F,annual,2015,gas oil combustion consumption by freight transport,1.33644,TJ,CO2,74100.0,kg/TJ,99030.20400000001,kg -4f21e28b-c1ab-32ad-9373-0f23c905977b,SESCO,II.1.1,La Rioja,AR-F,annual,2015,gas oil combustion consumption by freight transport,1.33644,TJ,CH4,3.9,kg/TJ,5.212116,kg -4f21e28b-c1ab-32ad-9373-0f23c905977b,SESCO,II.1.1,La Rioja,AR-F,annual,2015,gas oil combustion consumption by freight transport,1.33644,TJ,N2O,3.9,kg/TJ,5.212116,kg -51166465-e9db-3279-b059-9f11d9e3639a,SESCO,II.1.1,Mendoza,AR-M,annual,2015,gas oil combustion consumption by freight transport,1464.3409199999999,TJ,CO2,74100.0,kg/TJ,108507662.17199999,kg -ccb91ff5-81bd-3f4a-9f04-ed27eed0fa59,SESCO,II.1.1,Mendoza,AR-M,annual,2015,gas oil combustion consumption by freight transport,1464.3409199999999,TJ,CH4,3.9,kg/TJ,5710.929587999999,kg -ccb91ff5-81bd-3f4a-9f04-ed27eed0fa59,SESCO,II.1.1,Mendoza,AR-M,annual,2015,gas oil combustion consumption by freight transport,1464.3409199999999,TJ,N2O,3.9,kg/TJ,5710.929587999999,kg -0636c071-8817-3ded-8cfc-9f77450705c9,SESCO,II.1.1,Misiones,AR-N,annual,2015,gas oil combustion consumption by freight transport,480.10704,TJ,CO2,74100.0,kg/TJ,35575931.664,kg -570614cc-e3d5-3fd6-8af5-dac96ccdbe67,SESCO,II.1.1,Misiones,AR-N,annual,2015,gas oil combustion consumption by freight transport,480.10704,TJ,CH4,3.9,kg/TJ,1872.417456,kg -570614cc-e3d5-3fd6-8af5-dac96ccdbe67,SESCO,II.1.1,Misiones,AR-N,annual,2015,gas oil combustion consumption by freight transport,480.10704,TJ,N2O,3.9,kg/TJ,1872.417456,kg -e72729b9-bc3b-37f4-b21f-e55c0f22a24f,SESCO,II.1.1,Neuquén,AR-Q,annual,2015,gas oil combustion consumption by freight transport,771.48708,TJ,CO2,74100.0,kg/TJ,57167192.628,kg -4e8ec421-5bd3-3e84-8b2a-3d65cb404c15,SESCO,II.1.1,Neuquén,AR-Q,annual,2015,gas oil combustion consumption by freight transport,771.48708,TJ,CH4,3.9,kg/TJ,3008.799612,kg -4e8ec421-5bd3-3e84-8b2a-3d65cb404c15,SESCO,II.1.1,Neuquén,AR-Q,annual,2015,gas oil combustion consumption by freight transport,771.48708,TJ,N2O,3.9,kg/TJ,3008.799612,kg -83001ee3-5b7f-399a-b854-6797fbacd8fc,SESCO,II.1.1,Rio Negro,AR-R,annual,2015,gas oil combustion consumption by freight transport,140.00112,TJ,CO2,74100.0,kg/TJ,10374082.991999999,kg -b67ce10a-3311-3885-bfb7-fffeb1e583ac,SESCO,II.1.1,Rio Negro,AR-R,annual,2015,gas oil combustion consumption by freight transport,140.00112,TJ,CH4,3.9,kg/TJ,546.0043679999999,kg -b67ce10a-3311-3885-bfb7-fffeb1e583ac,SESCO,II.1.1,Rio Negro,AR-R,annual,2015,gas oil combustion consumption by freight transport,140.00112,TJ,N2O,3.9,kg/TJ,546.0043679999999,kg -8ed4a537-4a91-3b5b-9f19-8d76557364a3,SESCO,II.1.1,Salta,AR-A,annual,2015,gas oil combustion consumption by freight transport,146.24988,TJ,CO2,74100.0,kg/TJ,10837116.108,kg -04d68029-fac2-3027-a878-a93c7614a49b,SESCO,II.1.1,Salta,AR-A,annual,2015,gas oil combustion consumption by freight transport,146.24988,TJ,CH4,3.9,kg/TJ,570.3745319999999,kg -04d68029-fac2-3027-a878-a93c7614a49b,SESCO,II.1.1,Salta,AR-A,annual,2015,gas oil combustion consumption by freight transport,146.24988,TJ,N2O,3.9,kg/TJ,570.3745319999999,kg -c4fea8c1-d784-375a-87c5-9d67d143fb53,SESCO,II.1.1,San Juan,AR-J,annual,2015,gas oil combustion consumption by freight transport,102.83364,TJ,CO2,74100.0,kg/TJ,7619972.724,kg -99c12a9b-cf01-3c3c-8dd2-8759427f2171,SESCO,II.1.1,San Juan,AR-J,annual,2015,gas oil combustion consumption by freight transport,102.83364,TJ,CH4,3.9,kg/TJ,401.051196,kg -99c12a9b-cf01-3c3c-8dd2-8759427f2171,SESCO,II.1.1,San Juan,AR-J,annual,2015,gas oil combustion consumption by freight transport,102.83364,TJ,N2O,3.9,kg/TJ,401.051196,kg -ede52816-0196-3458-be8d-ab6f634e3c8a,SESCO,II.1.1,San Luis,AR-D,annual,2015,gas oil combustion consumption by freight transport,130.10424,TJ,CO2,74100.0,kg/TJ,9640724.184,kg -50b47f2a-9045-3a07-972f-08d2777a823e,SESCO,II.1.1,San Luis,AR-D,annual,2015,gas oil combustion consumption by freight transport,130.10424,TJ,CH4,3.9,kg/TJ,507.406536,kg -50b47f2a-9045-3a07-972f-08d2777a823e,SESCO,II.1.1,San Luis,AR-D,annual,2015,gas oil combustion consumption by freight transport,130.10424,TJ,N2O,3.9,kg/TJ,507.406536,kg -2b3a8eeb-fe15-3b94-a247-0e97031eda3f,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2015,gas oil combustion consumption by freight transport,71.04804,TJ,CO2,74100.0,kg/TJ,5264659.764,kg -cfa33b4e-1c01-35bc-9ca8-c208174122f4,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2015,gas oil combustion consumption by freight transport,71.04804,TJ,CH4,3.9,kg/TJ,277.087356,kg -cfa33b4e-1c01-35bc-9ca8-c208174122f4,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2015,gas oil combustion consumption by freight transport,71.04804,TJ,N2O,3.9,kg/TJ,277.087356,kg -b51a179a-c811-3a43-9019-6cf615570e0b,SESCO,II.1.1,Santa Fe,AR-S,annual,2015,gas oil combustion consumption by freight transport,1626.95316,TJ,CO2,74100.0,kg/TJ,120557229.156,kg -80fcc7aa-c7ae-37f0-a32d-0db750877290,SESCO,II.1.1,Santa Fe,AR-S,annual,2015,gas oil combustion consumption by freight transport,1626.95316,TJ,CH4,3.9,kg/TJ,6345.117324,kg -80fcc7aa-c7ae-37f0-a32d-0db750877290,SESCO,II.1.1,Santa Fe,AR-S,annual,2015,gas oil combustion consumption by freight transport,1626.95316,TJ,N2O,3.9,kg/TJ,6345.117324,kg -b037a896-5891-32c0-916a-00176caf97ca,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2015,gas oil combustion consumption by freight transport,98.21028,TJ,CO2,74100.0,kg/TJ,7277381.748,kg -35a9d7a8-901f-33e4-8e4c-aa361a191615,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2015,gas oil combustion consumption by freight transport,98.21028,TJ,CH4,3.9,kg/TJ,383.020092,kg -35a9d7a8-901f-33e4-8e4c-aa361a191615,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2015,gas oil combustion consumption by freight transport,98.21028,TJ,N2O,3.9,kg/TJ,383.020092,kg -3c5e44d7-a0b2-3b51-92b9-edfd6736ec32,SESCO,II.1.1,Tucuman,AR-T,annual,2015,gas oil combustion consumption by freight transport,285.45636,TJ,CO2,74100.0,kg/TJ,21152316.276,kg -8cc5430a-a527-32a7-831b-e25ec9f3b46f,SESCO,II.1.1,Tucuman,AR-T,annual,2015,gas oil combustion consumption by freight transport,285.45636,TJ,CH4,3.9,kg/TJ,1113.279804,kg -8cc5430a-a527-32a7-831b-e25ec9f3b46f,SESCO,II.1.1,Tucuman,AR-T,annual,2015,gas oil combustion consumption by freight transport,285.45636,TJ,N2O,3.9,kg/TJ,1113.279804,kg -488623d4-5dca-330d-b6e9-0866942f2d1d,SESCO,II.1.1,Buenos Aires,AR-B,annual,2015,gas oil combustion consumption by freight transport,400.71528,TJ,CO2,74100.0,kg/TJ,29693002.248,kg -fc1878fe-d0b0-33b3-886b-72cd1cbf6a9c,SESCO,II.1.1,Buenos Aires,AR-B,annual,2015,gas oil combustion consumption by freight transport,400.71528,TJ,CH4,3.9,kg/TJ,1562.789592,kg -fc1878fe-d0b0-33b3-886b-72cd1cbf6a9c,SESCO,II.1.1,Buenos Aires,AR-B,annual,2015,gas oil combustion consumption by freight transport,400.71528,TJ,N2O,3.9,kg/TJ,1562.789592,kg -c1f9e2f6-b57d-364f-80d4-2db7039f3914,SESCO,II.1.1,Capital Federal,AR-C,annual,2015,gas oil combustion consumption by freight transport,772.57068,TJ,CO2,74100.0,kg/TJ,57247487.388000004,kg -7fb419d1-cb4a-377a-9716-ee1db2b1ac23,SESCO,II.1.1,Capital Federal,AR-C,annual,2015,gas oil combustion consumption by freight transport,772.57068,TJ,CH4,3.9,kg/TJ,3013.0256520000003,kg -7fb419d1-cb4a-377a-9716-ee1db2b1ac23,SESCO,II.1.1,Capital Federal,AR-C,annual,2015,gas oil combustion consumption by freight transport,772.57068,TJ,N2O,3.9,kg/TJ,3013.0256520000003,kg -9d44d99c-3cf5-39b0-a5b2-e7f4f46fbb1a,SESCO,II.1.1,Chaco,AR-H,annual,2015,gas oil combustion consumption by freight transport,20.48004,TJ,CO2,74100.0,kg/TJ,1517570.964,kg -804551ba-00cc-33ca-9972-4432356fa573,SESCO,II.1.1,Chaco,AR-H,annual,2015,gas oil combustion consumption by freight transport,20.48004,TJ,CH4,3.9,kg/TJ,79.87215599999999,kg -804551ba-00cc-33ca-9972-4432356fa573,SESCO,II.1.1,Chaco,AR-H,annual,2015,gas oil combustion consumption by freight transport,20.48004,TJ,N2O,3.9,kg/TJ,79.87215599999999,kg -c76268ed-556b-3e06-8390-617eb7073a3c,SESCO,II.1.1,Chubut,AR-U,annual,2015,gas oil combustion consumption by freight transport,10.4748,TJ,CO2,74100.0,kg/TJ,776182.68,kg -10a430e8-68c8-39cc-8b28-93d4eb8c8675,SESCO,II.1.1,Chubut,AR-U,annual,2015,gas oil combustion consumption by freight transport,10.4748,TJ,CH4,3.9,kg/TJ,40.85172,kg -10a430e8-68c8-39cc-8b28-93d4eb8c8675,SESCO,II.1.1,Chubut,AR-U,annual,2015,gas oil combustion consumption by freight transport,10.4748,TJ,N2O,3.9,kg/TJ,40.85172,kg -0f51b2bd-3359-3567-a2d8-a86126ea759e,SESCO,II.1.1,Corrientes,AR-W,annual,2015,gas oil combustion consumption by freight transport,2.96184,TJ,CO2,74100.0,kg/TJ,219472.344,kg -b6863e51-c660-3a9b-94b1-25504a92f4d2,SESCO,II.1.1,Corrientes,AR-W,annual,2015,gas oil combustion consumption by freight transport,2.96184,TJ,CH4,3.9,kg/TJ,11.551176,kg -b6863e51-c660-3a9b-94b1-25504a92f4d2,SESCO,II.1.1,Corrientes,AR-W,annual,2015,gas oil combustion consumption by freight transport,2.96184,TJ,N2O,3.9,kg/TJ,11.551176,kg -5da21488-9987-3f1b-9b12-8710cf9b8d70,SESCO,II.1.1,Córdoba,AR-X,annual,2015,gas oil combustion consumption by freight transport,19.39644,TJ,CO2,74100.0,kg/TJ,1437276.204,kg -e618f020-3377-3fec-8d34-8a5696592bb1,SESCO,II.1.1,Córdoba,AR-X,annual,2015,gas oil combustion consumption by freight transport,19.39644,TJ,CH4,3.9,kg/TJ,75.64611599999999,kg -e618f020-3377-3fec-8d34-8a5696592bb1,SESCO,II.1.1,Córdoba,AR-X,annual,2015,gas oil combustion consumption by freight transport,19.39644,TJ,N2O,3.9,kg/TJ,75.64611599999999,kg -d37448b1-0659-3846-86cb-e9ba9df460eb,SESCO,II.1.1,Entre Rios,AR-E,annual,2015,gas oil combustion consumption by freight transport,15.96504,TJ,CO2,74100.0,kg/TJ,1183009.464,kg -485f7c82-28a5-30c5-b070-1c710ba8ef5c,SESCO,II.1.1,Entre Rios,AR-E,annual,2015,gas oil combustion consumption by freight transport,15.96504,TJ,CH4,3.9,kg/TJ,62.263656,kg -485f7c82-28a5-30c5-b070-1c710ba8ef5c,SESCO,II.1.1,Entre Rios,AR-E,annual,2015,gas oil combustion consumption by freight transport,15.96504,TJ,N2O,3.9,kg/TJ,62.263656,kg -3ff4451d-7617-3b97-a080-eaa02a384379,SESCO,II.1.1,Jujuy,AR-Y,annual,2015,gas oil combustion consumption by freight transport,0.03612,TJ,CO2,74100.0,kg/TJ,2676.4919999999997,kg -6f4c9fad-dbde-38f3-a1fc-be6512e67ea9,SESCO,II.1.1,Jujuy,AR-Y,annual,2015,gas oil combustion consumption by freight transport,0.03612,TJ,CH4,3.9,kg/TJ,0.140868,kg -6f4c9fad-dbde-38f3-a1fc-be6512e67ea9,SESCO,II.1.1,Jujuy,AR-Y,annual,2015,gas oil combustion consumption by freight transport,0.03612,TJ,N2O,3.9,kg/TJ,0.140868,kg -a66bb4f5-d8cc-3169-8587-27e7a3bcf968,SESCO,II.1.1,La Pampa,AR-L,annual,2015,gas oil combustion consumption by freight transport,0.18059999999999998,TJ,CO2,74100.0,kg/TJ,13382.46,kg -cc3d68d1-8be3-34dc-972b-85794ae2c59f,SESCO,II.1.1,La Pampa,AR-L,annual,2015,gas oil combustion consumption by freight transport,0.18059999999999998,TJ,CH4,3.9,kg/TJ,0.70434,kg -cc3d68d1-8be3-34dc-972b-85794ae2c59f,SESCO,II.1.1,La Pampa,AR-L,annual,2015,gas oil combustion consumption by freight transport,0.18059999999999998,TJ,N2O,3.9,kg/TJ,0.70434,kg -35e79542-f4c4-3a93-a558-775ea0aa4d47,SESCO,II.1.1,La Rioja,AR-F,annual,2015,gas oil combustion consumption by freight transport,2.8895999999999997,TJ,CO2,74100.0,kg/TJ,214119.36,kg -57bc2b56-49c0-3e57-b0c5-46bc9a8512bf,SESCO,II.1.1,La Rioja,AR-F,annual,2015,gas oil combustion consumption by freight transport,2.8895999999999997,TJ,CH4,3.9,kg/TJ,11.26944,kg -57bc2b56-49c0-3e57-b0c5-46bc9a8512bf,SESCO,II.1.1,La Rioja,AR-F,annual,2015,gas oil combustion consumption by freight transport,2.8895999999999997,TJ,N2O,3.9,kg/TJ,11.26944,kg -e5e990fe-0558-3ff9-b3f9-01859864a662,SESCO,II.1.1,Mendoza,AR-M,annual,2015,gas oil combustion consumption by freight transport,36.91464,TJ,CO2,74100.0,kg/TJ,2735374.824,kg -7e445236-9686-348b-9ac2-162f18189469,SESCO,II.1.1,Mendoza,AR-M,annual,2015,gas oil combustion consumption by freight transport,36.91464,TJ,CH4,3.9,kg/TJ,143.967096,kg -7e445236-9686-348b-9ac2-162f18189469,SESCO,II.1.1,Mendoza,AR-M,annual,2015,gas oil combustion consumption by freight transport,36.91464,TJ,N2O,3.9,kg/TJ,143.967096,kg -a3b55dd4-8505-32f0-b011-66ff73b8af7f,SESCO,II.1.1,Misiones,AR-N,annual,2015,gas oil combustion consumption by freight transport,11.99184,TJ,CO2,74100.0,kg/TJ,888595.344,kg -dc262bdc-12be-346e-8971-54f35839af90,SESCO,II.1.1,Misiones,AR-N,annual,2015,gas oil combustion consumption by freight transport,11.99184,TJ,CH4,3.9,kg/TJ,46.768176,kg -dc262bdc-12be-346e-8971-54f35839af90,SESCO,II.1.1,Misiones,AR-N,annual,2015,gas oil combustion consumption by freight transport,11.99184,TJ,N2O,3.9,kg/TJ,46.768176,kg -00231b43-4cc7-36dd-b616-869c50a9decb,SESCO,II.1.1,Neuquén,AR-Q,annual,2015,gas oil combustion consumption by freight transport,71.55372,TJ,CO2,74100.0,kg/TJ,5302130.652,kg -0b54e7c6-a306-37a1-8188-93177f2ac0be,SESCO,II.1.1,Neuquén,AR-Q,annual,2015,gas oil combustion consumption by freight transport,71.55372,TJ,CH4,3.9,kg/TJ,279.059508,kg -0b54e7c6-a306-37a1-8188-93177f2ac0be,SESCO,II.1.1,Neuquén,AR-Q,annual,2015,gas oil combustion consumption by freight transport,71.55372,TJ,N2O,3.9,kg/TJ,279.059508,kg -2b49f254-33e2-340a-869e-08075b271ba2,SESCO,II.1.1,Rio Negro,AR-R,annual,2015,gas oil combustion consumption by freight transport,3.82872,TJ,CO2,74100.0,kg/TJ,283708.152,kg -215a9ad0-b54b-370e-ae0b-6a0f94baf96a,SESCO,II.1.1,Rio Negro,AR-R,annual,2015,gas oil combustion consumption by freight transport,3.82872,TJ,CH4,3.9,kg/TJ,14.932008,kg -215a9ad0-b54b-370e-ae0b-6a0f94baf96a,SESCO,II.1.1,Rio Negro,AR-R,annual,2015,gas oil combustion consumption by freight transport,3.82872,TJ,N2O,3.9,kg/TJ,14.932008,kg -b2f93aae-b46b-3785-9e4b-fb0a90223712,SESCO,II.1.1,Salta,AR-A,annual,2015,gas oil combustion consumption by freight transport,24.850559999999998,TJ,CO2,74100.0,kg/TJ,1841426.4959999998,kg -896c0c65-26a8-3a7f-9c76-acd2b91c9134,SESCO,II.1.1,Salta,AR-A,annual,2015,gas oil combustion consumption by freight transport,24.850559999999998,TJ,CH4,3.9,kg/TJ,96.91718399999999,kg -896c0c65-26a8-3a7f-9c76-acd2b91c9134,SESCO,II.1.1,Salta,AR-A,annual,2015,gas oil combustion consumption by freight transport,24.850559999999998,TJ,N2O,3.9,kg/TJ,96.91718399999999,kg -5628cee7-bf04-33e5-b7ae-a9a05144a38d,SESCO,II.1.1,San Juan,AR-J,annual,2015,gas oil combustion consumption by freight transport,4.47888,TJ,CO2,74100.0,kg/TJ,331885.00800000003,kg -cb55ba07-aaa8-370e-b385-b6e08715c268,SESCO,II.1.1,San Juan,AR-J,annual,2015,gas oil combustion consumption by freight transport,4.47888,TJ,CH4,3.9,kg/TJ,17.467632000000002,kg -cb55ba07-aaa8-370e-b385-b6e08715c268,SESCO,II.1.1,San Juan,AR-J,annual,2015,gas oil combustion consumption by freight transport,4.47888,TJ,N2O,3.9,kg/TJ,17.467632000000002,kg -c4e86503-1b32-3541-984b-c261d3fb5e01,SESCO,II.1.1,San Luis,AR-D,annual,2015,gas oil combustion consumption by freight transport,2.56452,TJ,CO2,74100.0,kg/TJ,190030.932,kg -333e4407-343c-3afd-882c-ac80eb2d6757,SESCO,II.1.1,San Luis,AR-D,annual,2015,gas oil combustion consumption by freight transport,2.56452,TJ,CH4,3.9,kg/TJ,10.001628,kg -333e4407-343c-3afd-882c-ac80eb2d6757,SESCO,II.1.1,San Luis,AR-D,annual,2015,gas oil combustion consumption by freight transport,2.56452,TJ,N2O,3.9,kg/TJ,10.001628,kg -53363f11-0de6-32dc-8844-30d7cda218d9,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2015,gas oil combustion consumption by freight transport,2.78124,TJ,CO2,74100.0,kg/TJ,206089.884,kg -257ba2e0-62f8-37e5-a13b-8d0ba33ed8dc,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2015,gas oil combustion consumption by freight transport,2.78124,TJ,CH4,3.9,kg/TJ,10.846836,kg -257ba2e0-62f8-37e5-a13b-8d0ba33ed8dc,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2015,gas oil combustion consumption by freight transport,2.78124,TJ,N2O,3.9,kg/TJ,10.846836,kg -46effbdf-1462-3e54-bc5a-c90627a35be8,SESCO,II.1.1,Santa Fe,AR-S,annual,2015,gas oil combustion consumption by freight transport,163.33464,TJ,CO2,74100.0,kg/TJ,12103096.824000001,kg -5ccc8378-8b6b-373b-ba19-dfb601e9e136,SESCO,II.1.1,Santa Fe,AR-S,annual,2015,gas oil combustion consumption by freight transport,163.33464,TJ,CH4,3.9,kg/TJ,637.005096,kg -5ccc8378-8b6b-373b-ba19-dfb601e9e136,SESCO,II.1.1,Santa Fe,AR-S,annual,2015,gas oil combustion consumption by freight transport,163.33464,TJ,N2O,3.9,kg/TJ,637.005096,kg -02b10c80-f015-39cb-aa5e-0fa5fb8fab17,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2015,gas oil combustion consumption by freight transport,0.07224,TJ,CO2,74100.0,kg/TJ,5352.9839999999995,kg -e5567771-8320-33a5-9f80-456ff2ef92f1,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2015,gas oil combustion consumption by freight transport,0.07224,TJ,CH4,3.9,kg/TJ,0.281736,kg -e5567771-8320-33a5-9f80-456ff2ef92f1,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2015,gas oil combustion consumption by freight transport,0.07224,TJ,N2O,3.9,kg/TJ,0.281736,kg -7dbcbed4-861d-3134-9d5c-9e3cdbc7c6be,SESCO,II.1.1,Tucuman,AR-T,annual,2015,gas oil combustion consumption by freight transport,7.91028,TJ,CO2,74100.0,kg/TJ,586151.748,kg -d56941bb-185e-3406-a2bc-6f90d948214b,SESCO,II.1.1,Tucuman,AR-T,annual,2015,gas oil combustion consumption by freight transport,7.91028,TJ,CH4,3.9,kg/TJ,30.850092,kg -d56941bb-185e-3406-a2bc-6f90d948214b,SESCO,II.1.1,Tucuman,AR-T,annual,2015,gas oil combustion consumption by freight transport,7.91028,TJ,N2O,3.9,kg/TJ,30.850092,kg -1eb1f34f-f896-309f-96f6-fdb9c8735d29,SESCO,II.1.1,Buenos Aires,AR-B,annual,2015,gas oil combustion consumption by public passenger transport,11800.29564,TJ,CO2,74100.0,kg/TJ,874401906.924,kg -8e371021-004c-321c-a78a-9ec46b65fc33,SESCO,II.1.1,Buenos Aires,AR-B,annual,2015,gas oil combustion consumption by public passenger transport,11800.29564,TJ,CH4,3.9,kg/TJ,46021.152996,kg -8e371021-004c-321c-a78a-9ec46b65fc33,SESCO,II.1.1,Buenos Aires,AR-B,annual,2015,gas oil combustion consumption by public passenger transport,11800.29564,TJ,N2O,3.9,kg/TJ,46021.152996,kg -ac2aaf82-f553-3640-be43-130086fc4cfb,SESCO,II.1.1,Capital Federal,AR-C,annual,2015,gas oil combustion consumption by public passenger transport,2518.90044,TJ,CO2,74100.0,kg/TJ,186650522.604,kg -2c6aa34e-5ae8-3a35-a2cc-4c4511c83bf7,SESCO,II.1.1,Capital Federal,AR-C,annual,2015,gas oil combustion consumption by public passenger transport,2518.90044,TJ,CH4,3.9,kg/TJ,9823.711716,kg -2c6aa34e-5ae8-3a35-a2cc-4c4511c83bf7,SESCO,II.1.1,Capital Federal,AR-C,annual,2015,gas oil combustion consumption by public passenger transport,2518.90044,TJ,N2O,3.9,kg/TJ,9823.711716,kg -5399a173-8654-3c28-a1c2-b4e82e2a6719,SESCO,II.1.1,Catamarca,AR-K,annual,2015,gas oil combustion consumption by public passenger transport,209.24316,TJ,CO2,74100.0,kg/TJ,15504918.156,kg -d09ec43b-4410-35c8-ad8c-a02248e17eba,SESCO,II.1.1,Catamarca,AR-K,annual,2015,gas oil combustion consumption by public passenger transport,209.24316,TJ,CH4,3.9,kg/TJ,816.048324,kg -d09ec43b-4410-35c8-ad8c-a02248e17eba,SESCO,II.1.1,Catamarca,AR-K,annual,2015,gas oil combustion consumption by public passenger transport,209.24316,TJ,N2O,3.9,kg/TJ,816.048324,kg -b9525f5f-52ea-3ce3-939a-5370141905e2,SESCO,II.1.1,Chaco,AR-H,annual,2015,gas oil combustion consumption by public passenger transport,542.3418,TJ,CO2,74100.0,kg/TJ,40187527.38,kg -7f9e27e3-1c81-336f-ac98-118efe9ebd07,SESCO,II.1.1,Chaco,AR-H,annual,2015,gas oil combustion consumption by public passenger transport,542.3418,TJ,CH4,3.9,kg/TJ,2115.13302,kg -7f9e27e3-1c81-336f-ac98-118efe9ebd07,SESCO,II.1.1,Chaco,AR-H,annual,2015,gas oil combustion consumption by public passenger transport,542.3418,TJ,N2O,3.9,kg/TJ,2115.13302,kg -af90817a-6a1f-3e39-9982-0ed66e745e0b,SESCO,II.1.1,Chubut,AR-U,annual,2015,gas oil combustion consumption by public passenger transport,181.90032,TJ,CO2,74100.0,kg/TJ,13478813.712,kg -a25fb703-5301-3989-9a3b-8403ad4793f5,SESCO,II.1.1,Chubut,AR-U,annual,2015,gas oil combustion consumption by public passenger transport,181.90032,TJ,CH4,3.9,kg/TJ,709.411248,kg -a25fb703-5301-3989-9a3b-8403ad4793f5,SESCO,II.1.1,Chubut,AR-U,annual,2015,gas oil combustion consumption by public passenger transport,181.90032,TJ,N2O,3.9,kg/TJ,709.411248,kg -e003a019-8806-3a58-bf3d-5939b03c2109,SESCO,II.1.1,Corrientes,AR-W,annual,2015,gas oil combustion consumption by public passenger transport,489.46211999999997,TJ,CO2,74100.0,kg/TJ,36269143.092,kg -878168a1-d798-3af9-9a3f-67e771da2e4e,SESCO,II.1.1,Corrientes,AR-W,annual,2015,gas oil combustion consumption by public passenger transport,489.46211999999997,TJ,CH4,3.9,kg/TJ,1908.9022679999998,kg -878168a1-d798-3af9-9a3f-67e771da2e4e,SESCO,II.1.1,Corrientes,AR-W,annual,2015,gas oil combustion consumption by public passenger transport,489.46211999999997,TJ,N2O,3.9,kg/TJ,1908.9022679999998,kg -7a8d21c4-c69a-3cc5-8d90-a184421592b2,SESCO,II.1.1,Córdoba,AR-X,annual,2015,gas oil combustion consumption by public passenger transport,1873.3637999999999,TJ,CO2,74100.0,kg/TJ,138816257.57999998,kg -b78d614d-669e-366a-b048-4ba1721e7943,SESCO,II.1.1,Córdoba,AR-X,annual,2015,gas oil combustion consumption by public passenger transport,1873.3637999999999,TJ,CH4,3.9,kg/TJ,7306.11882,kg -b78d614d-669e-366a-b048-4ba1721e7943,SESCO,II.1.1,Córdoba,AR-X,annual,2015,gas oil combustion consumption by public passenger transport,1873.3637999999999,TJ,N2O,3.9,kg/TJ,7306.11882,kg -e6f47383-294f-367b-962a-ffc852bab211,SESCO,II.1.1,Entre Rios,AR-E,annual,2015,gas oil combustion consumption by public passenger transport,534.72048,TJ,CO2,74100.0,kg/TJ,39622787.567999996,kg -22a6d1fb-01d1-346e-b049-02274d161de8,SESCO,II.1.1,Entre Rios,AR-E,annual,2015,gas oil combustion consumption by public passenger transport,534.72048,TJ,CH4,3.9,kg/TJ,2085.4098719999997,kg -22a6d1fb-01d1-346e-b049-02274d161de8,SESCO,II.1.1,Entre Rios,AR-E,annual,2015,gas oil combustion consumption by public passenger transport,534.72048,TJ,N2O,3.9,kg/TJ,2085.4098719999997,kg -2b94db17-e255-3d14-90b1-2c6de4014b93,SESCO,II.1.1,Formosa,AR-P,annual,2015,gas oil combustion consumption by public passenger transport,75.41856,TJ,CO2,74100.0,kg/TJ,5588515.296,kg -786f8e01-c87f-38b2-a6ea-9033e3f8e600,SESCO,II.1.1,Formosa,AR-P,annual,2015,gas oil combustion consumption by public passenger transport,75.41856,TJ,CH4,3.9,kg/TJ,294.132384,kg -786f8e01-c87f-38b2-a6ea-9033e3f8e600,SESCO,II.1.1,Formosa,AR-P,annual,2015,gas oil combustion consumption by public passenger transport,75.41856,TJ,N2O,3.9,kg/TJ,294.132384,kg -7be12cd4-6c06-3c8f-ba1a-866d3a1a6da7,SESCO,II.1.1,Jujuy,AR-Y,annual,2015,gas oil combustion consumption by public passenger transport,630.40236,TJ,CO2,74100.0,kg/TJ,46712814.876,kg -cc798670-5ff6-3227-87ae-083bebb01dc3,SESCO,II.1.1,Jujuy,AR-Y,annual,2015,gas oil combustion consumption by public passenger transport,630.40236,TJ,CH4,3.9,kg/TJ,2458.569204,kg -cc798670-5ff6-3227-87ae-083bebb01dc3,SESCO,II.1.1,Jujuy,AR-Y,annual,2015,gas oil combustion consumption by public passenger transport,630.40236,TJ,N2O,3.9,kg/TJ,2458.569204,kg -b617281d-a7a6-3877-8324-c426d50e0506,SESCO,II.1.1,La Pampa,AR-L,annual,2015,gas oil combustion consumption by public passenger transport,56.27496,TJ,CO2,74100.0,kg/TJ,4169974.536,kg -599ad311-98ae-3752-afe9-4e61be769b39,SESCO,II.1.1,La Pampa,AR-L,annual,2015,gas oil combustion consumption by public passenger transport,56.27496,TJ,CH4,3.9,kg/TJ,219.472344,kg -599ad311-98ae-3752-afe9-4e61be769b39,SESCO,II.1.1,La Pampa,AR-L,annual,2015,gas oil combustion consumption by public passenger transport,56.27496,TJ,N2O,3.9,kg/TJ,219.472344,kg -513c5f89-2481-32d5-b1f5-98791fc2c71f,SESCO,II.1.1,La Rioja,AR-F,annual,2015,gas oil combustion consumption by public passenger transport,131.98248,TJ,CO2,74100.0,kg/TJ,9779901.768000001,kg -d62e934b-997d-329b-a767-db205f339cd4,SESCO,II.1.1,La Rioja,AR-F,annual,2015,gas oil combustion consumption by public passenger transport,131.98248,TJ,CH4,3.9,kg/TJ,514.731672,kg -d62e934b-997d-329b-a767-db205f339cd4,SESCO,II.1.1,La Rioja,AR-F,annual,2015,gas oil combustion consumption by public passenger transport,131.98248,TJ,N2O,3.9,kg/TJ,514.731672,kg -be0306e2-99a2-3636-8384-997971930916,SESCO,II.1.1,Mendoza,AR-M,annual,2015,gas oil combustion consumption by public passenger transport,1749.43608,TJ,CO2,74100.0,kg/TJ,129633213.528,kg -8f60a1f0-ac81-3350-953d-cb3bd5ffc7a7,SESCO,II.1.1,Mendoza,AR-M,annual,2015,gas oil combustion consumption by public passenger transport,1749.43608,TJ,CH4,3.9,kg/TJ,6822.800711999999,kg -8f60a1f0-ac81-3350-953d-cb3bd5ffc7a7,SESCO,II.1.1,Mendoza,AR-M,annual,2015,gas oil combustion consumption by public passenger transport,1749.43608,TJ,N2O,3.9,kg/TJ,6822.800711999999,kg -f6079a5e-ddd6-3db9-93cb-6bccdf593dcb,SESCO,II.1.1,Misiones,AR-N,annual,2015,gas oil combustion consumption by public passenger transport,1114.4826,TJ,CO2,74100.0,kg/TJ,82583160.66,kg -a3459531-86e6-3544-afea-f32018bcffd1,SESCO,II.1.1,Misiones,AR-N,annual,2015,gas oil combustion consumption by public passenger transport,1114.4826,TJ,CH4,3.9,kg/TJ,4346.48214,kg -a3459531-86e6-3544-afea-f32018bcffd1,SESCO,II.1.1,Misiones,AR-N,annual,2015,gas oil combustion consumption by public passenger transport,1114.4826,TJ,N2O,3.9,kg/TJ,4346.48214,kg -48dfbf9a-6e1d-34ae-bd01-d7956805bff7,SESCO,II.1.1,Neuquén,AR-Q,annual,2015,gas oil combustion consumption by public passenger transport,310.01796,TJ,CO2,74100.0,kg/TJ,22972330.836000003,kg -9226d477-8d22-396b-b750-f8c617d810e7,SESCO,II.1.1,Neuquén,AR-Q,annual,2015,gas oil combustion consumption by public passenger transport,310.01796,TJ,CH4,3.9,kg/TJ,1209.070044,kg -9226d477-8d22-396b-b750-f8c617d810e7,SESCO,II.1.1,Neuquén,AR-Q,annual,2015,gas oil combustion consumption by public passenger transport,310.01796,TJ,N2O,3.9,kg/TJ,1209.070044,kg -0bd098d5-61dc-3f3a-9397-b4d6ff62e409,SESCO,II.1.1,Rio Negro,AR-R,annual,2015,gas oil combustion consumption by public passenger transport,504.0546,TJ,CO2,74100.0,kg/TJ,37350445.86,kg -78292441-1424-307a-a775-b975abb40fd4,SESCO,II.1.1,Rio Negro,AR-R,annual,2015,gas oil combustion consumption by public passenger transport,504.0546,TJ,CH4,3.9,kg/TJ,1965.81294,kg -78292441-1424-307a-a775-b975abb40fd4,SESCO,II.1.1,Rio Negro,AR-R,annual,2015,gas oil combustion consumption by public passenger transport,504.0546,TJ,N2O,3.9,kg/TJ,1965.81294,kg -865b8075-57cf-3622-91d5-05a563fbd15b,SESCO,II.1.1,Salta,AR-A,annual,2015,gas oil combustion consumption by public passenger transport,897.2207999999999,TJ,CO2,74100.0,kg/TJ,66484061.279999994,kg -becb18c8-febb-3b32-ba7f-e2cc59c8c77b,SESCO,II.1.1,Salta,AR-A,annual,2015,gas oil combustion consumption by public passenger transport,897.2207999999999,TJ,CH4,3.9,kg/TJ,3499.1611199999998,kg -becb18c8-febb-3b32-ba7f-e2cc59c8c77b,SESCO,II.1.1,Salta,AR-A,annual,2015,gas oil combustion consumption by public passenger transport,897.2207999999999,TJ,N2O,3.9,kg/TJ,3499.1611199999998,kg -90e46e59-f68d-3e41-9636-caddf24af2e7,SESCO,II.1.1,San Juan,AR-J,annual,2015,gas oil combustion consumption by public passenger transport,541.8361199999999,TJ,CO2,74100.0,kg/TJ,40150056.492,kg -ddd608ca-0242-383a-b907-1d895934c116,SESCO,II.1.1,San Juan,AR-J,annual,2015,gas oil combustion consumption by public passenger transport,541.8361199999999,TJ,CH4,3.9,kg/TJ,2113.1608679999995,kg -ddd608ca-0242-383a-b907-1d895934c116,SESCO,II.1.1,San Juan,AR-J,annual,2015,gas oil combustion consumption by public passenger transport,541.8361199999999,TJ,N2O,3.9,kg/TJ,2113.1608679999995,kg -bcae1103-59b6-3c2c-9aa7-81b4ed2198b7,SESCO,II.1.1,San Luis,AR-D,annual,2015,gas oil combustion consumption by public passenger transport,165.50184,TJ,CO2,74100.0,kg/TJ,12263686.343999999,kg -e1260323-8308-38a9-9d1a-7e3154baa29d,SESCO,II.1.1,San Luis,AR-D,annual,2015,gas oil combustion consumption by public passenger transport,165.50184,TJ,CH4,3.9,kg/TJ,645.4571759999999,kg -e1260323-8308-38a9-9d1a-7e3154baa29d,SESCO,II.1.1,San Luis,AR-D,annual,2015,gas oil combustion consumption by public passenger transport,165.50184,TJ,N2O,3.9,kg/TJ,645.4571759999999,kg -c1542c26-9787-3d02-b0bf-cd1e701aafb4,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2015,gas oil combustion consumption by public passenger transport,32.47188,TJ,CO2,74100.0,kg/TJ,2406166.3079999997,kg -ce168d73-a62f-300f-aa15-b10ad0d2651c,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2015,gas oil combustion consumption by public passenger transport,32.47188,TJ,CH4,3.9,kg/TJ,126.64033199999999,kg -ce168d73-a62f-300f-aa15-b10ad0d2651c,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2015,gas oil combustion consumption by public passenger transport,32.47188,TJ,N2O,3.9,kg/TJ,126.64033199999999,kg -14754a13-c7dd-30a6-ae51-88b9ab97e421,SESCO,II.1.1,Santa Fe,AR-S,annual,2015,gas oil combustion consumption by public passenger transport,1986.13044,TJ,CO2,74100.0,kg/TJ,147172265.604,kg -8fa83610-8255-383c-ab0e-c1ea05ab9f40,SESCO,II.1.1,Santa Fe,AR-S,annual,2015,gas oil combustion consumption by public passenger transport,1986.13044,TJ,CH4,3.9,kg/TJ,7745.908716,kg -8fa83610-8255-383c-ab0e-c1ea05ab9f40,SESCO,II.1.1,Santa Fe,AR-S,annual,2015,gas oil combustion consumption by public passenger transport,1986.13044,TJ,N2O,3.9,kg/TJ,7745.908716,kg -3172dcdb-1367-39e1-9646-2dc96617534b,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2015,gas oil combustion consumption by public passenger transport,249.5892,TJ,CO2,74100.0,kg/TJ,18494559.72,kg -faf356ed-fec3-3438-8ae6-520b11cf7578,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2015,gas oil combustion consumption by public passenger transport,249.5892,TJ,CH4,3.9,kg/TJ,973.39788,kg -faf356ed-fec3-3438-8ae6-520b11cf7578,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2015,gas oil combustion consumption by public passenger transport,249.5892,TJ,N2O,3.9,kg/TJ,973.39788,kg -73b676a9-e91e-3b8a-847e-9b412662e1cf,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2015,gas oil combustion consumption by public passenger transport,14.33964,TJ,CO2,74100.0,kg/TJ,1062567.324,kg -945a6de6-f66f-3036-9104-3301fcd68073,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2015,gas oil combustion consumption by public passenger transport,14.33964,TJ,CH4,3.9,kg/TJ,55.924595999999994,kg -945a6de6-f66f-3036-9104-3301fcd68073,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2015,gas oil combustion consumption by public passenger transport,14.33964,TJ,N2O,3.9,kg/TJ,55.924595999999994,kg -eb426fe0-c60e-3f15-aa27-7bbdadc174af,SESCO,II.1.1,Tucuman,AR-T,annual,2015,gas oil combustion consumption by public passenger transport,1432.55532,TJ,CO2,74100.0,kg/TJ,106152349.212,kg -710322e6-3069-325d-b5e2-37240468c302,SESCO,II.1.1,Tucuman,AR-T,annual,2015,gas oil combustion consumption by public passenger transport,1432.55532,TJ,CH4,3.9,kg/TJ,5586.965748,kg -710322e6-3069-325d-b5e2-37240468c302,SESCO,II.1.1,Tucuman,AR-T,annual,2015,gas oil combustion consumption by public passenger transport,1432.55532,TJ,N2O,3.9,kg/TJ,5586.965748,kg -5e0a9044-da1d-30a2-b43c-81e4e0307588,SESCO,II.1.1,Capital Federal,AR-C,annual,2016,gas oil combustion consumption by to the public,87.66324,TJ,CO2,74100.0,kg/TJ,6495846.084,kg -20e03e3a-11b8-39f2-89c0-0eb47487d63f,SESCO,II.1.1,Capital Federal,AR-C,annual,2016,gas oil combustion consumption by to the public,87.66324,TJ,CH4,3.9,kg/TJ,341.886636,kg -20e03e3a-11b8-39f2-89c0-0eb47487d63f,SESCO,II.1.1,Capital Federal,AR-C,annual,2016,gas oil combustion consumption by to the public,87.66324,TJ,N2O,3.9,kg/TJ,341.886636,kg -4553a5e4-6fe5-3b96-ac40-698d3414c969,SESCO,II.5.1,Córdoba,AR-X,annual,2016,gasoline combustion consumption by agriculture machines,237.3151,TJ,CO2,69300.0,kg/TJ,16445936.43,kg -3da820c1-3a36-3807-a524-76892bf86563,SESCO,II.5.1,Córdoba,AR-X,annual,2016,gasoline combustion consumption by agriculture machines,237.3151,TJ,CH4,33.0,kg/TJ,7831.3983,kg -4bf7eb9c-df1e-370f-afba-672c635e99e6,SESCO,II.5.1,Córdoba,AR-X,annual,2016,gasoline combustion consumption by agriculture machines,237.3151,TJ,N2O,3.2,kg/TJ,759.40832,kg -7f859afa-1346-3001-b1c0-2d80ed6bba8d,SESCO,II.5.1,Buenos Aires,AR-B,annual,2016,gas oil combustion consumption by agriculture machines,114.21144,TJ,CO2,74100.0,kg/TJ,8463067.704,kg -d3709c6b-6248-3fac-a2b0-ac9f1af4c0a5,SESCO,II.5.1,Buenos Aires,AR-B,annual,2016,gas oil combustion consumption by agriculture machines,114.21144,TJ,CH4,3.9,kg/TJ,445.42461599999996,kg -d3709c6b-6248-3fac-a2b0-ac9f1af4c0a5,SESCO,II.5.1,Buenos Aires,AR-B,annual,2016,gas oil combustion consumption by agriculture machines,114.21144,TJ,N2O,3.9,kg/TJ,445.42461599999996,kg -7754ff50-78e4-3032-8c0b-71bb783f06ff,SESCO,II.5.1,Chaco,AR-H,annual,2016,gas oil combustion consumption by agriculture machines,4.47888,TJ,CO2,74100.0,kg/TJ,331885.00800000003,kg -c8d5f7b3-4de8-3300-bfd6-39882af38b47,SESCO,II.5.1,Chaco,AR-H,annual,2016,gas oil combustion consumption by agriculture machines,4.47888,TJ,CH4,3.9,kg/TJ,17.467632000000002,kg -c8d5f7b3-4de8-3300-bfd6-39882af38b47,SESCO,II.5.1,Chaco,AR-H,annual,2016,gas oil combustion consumption by agriculture machines,4.47888,TJ,N2O,3.9,kg/TJ,17.467632000000002,kg -068655a7-59ae-3f32-b493-d3a91ffc7909,SESCO,II.5.1,Corrientes,AR-W,annual,2016,gas oil combustion consumption by agriculture machines,2.5284,TJ,CO2,74100.0,kg/TJ,187354.44,kg -8d5e4b4a-28be-3cfc-97b7-0fdcc96f0ca1,SESCO,II.5.1,Corrientes,AR-W,annual,2016,gas oil combustion consumption by agriculture machines,2.5284,TJ,CH4,3.9,kg/TJ,9.860759999999999,kg -8d5e4b4a-28be-3cfc-97b7-0fdcc96f0ca1,SESCO,II.5.1,Corrientes,AR-W,annual,2016,gas oil combustion consumption by agriculture machines,2.5284,TJ,N2O,3.9,kg/TJ,9.860759999999999,kg -63a0eb29-0e97-310d-aff1-f539f1005652,SESCO,II.5.1,Córdoba,AR-X,annual,2016,gas oil combustion consumption by agriculture machines,113.01948,TJ,CO2,74100.0,kg/TJ,8374743.468,kg -ec1b8551-227a-3be8-83af-c2dbf8ce0605,SESCO,II.5.1,Córdoba,AR-X,annual,2016,gas oil combustion consumption by agriculture machines,113.01948,TJ,CH4,3.9,kg/TJ,440.77597199999997,kg -ec1b8551-227a-3be8-83af-c2dbf8ce0605,SESCO,II.5.1,Córdoba,AR-X,annual,2016,gas oil combustion consumption by agriculture machines,113.01948,TJ,N2O,3.9,kg/TJ,440.77597199999997,kg -977b6ba5-0e4b-3629-a1f0-35eae1c13cbf,SESCO,II.5.1,Santa Fe,AR-S,annual,2016,gas oil combustion consumption by agriculture machines,471.58272,TJ,CO2,74100.0,kg/TJ,34944279.552,kg -37d965a2-8838-3c78-a506-39fa879e18b9,SESCO,II.5.1,Santa Fe,AR-S,annual,2016,gas oil combustion consumption by agriculture machines,471.58272,TJ,CH4,3.9,kg/TJ,1839.1726079999999,kg -37d965a2-8838-3c78-a506-39fa879e18b9,SESCO,II.5.1,Santa Fe,AR-S,annual,2016,gas oil combustion consumption by agriculture machines,471.58272,TJ,N2O,3.9,kg/TJ,1839.1726079999999,kg -6ee711fb-72a6-3483-91fc-83a96d8afc72,SESCO,II.5.1,Tucuman,AR-T,annual,2016,gas oil combustion consumption by agriculture machines,9.71628,TJ,CO2,74100.0,kg/TJ,719976.348,kg -3dcec89f-15d8-3cd3-afa7-2c85b3dd99ec,SESCO,II.5.1,Tucuman,AR-T,annual,2016,gas oil combustion consumption by agriculture machines,9.71628,TJ,CH4,3.9,kg/TJ,37.893491999999995,kg -3dcec89f-15d8-3cd3-afa7-2c85b3dd99ec,SESCO,II.5.1,Tucuman,AR-T,annual,2016,gas oil combustion consumption by agriculture machines,9.71628,TJ,N2O,3.9,kg/TJ,37.893491999999995,kg -3c72b7d5-d471-3269-a9a8-5d5c9c48c9f7,SESCO,II.5.1,Buenos Aires,AR-B,annual,2016,gas oil combustion consumption by agriculture machines,10.43868,TJ,CO2,74100.0,kg/TJ,773506.188,kg -063ef4bf-1c5d-3894-b034-28e9421cc7a7,SESCO,II.5.1,Buenos Aires,AR-B,annual,2016,gas oil combustion consumption by agriculture machines,10.43868,TJ,CH4,3.9,kg/TJ,40.710851999999996,kg -063ef4bf-1c5d-3894-b034-28e9421cc7a7,SESCO,II.5.1,Buenos Aires,AR-B,annual,2016,gas oil combustion consumption by agriculture machines,10.43868,TJ,N2O,3.9,kg/TJ,40.710851999999996,kg -97717d70-fe4e-3e4b-9df1-8d5f7ecd3e77,SESCO,II.5.1,Chaco,AR-H,annual,2016,gas oil combustion consumption by agriculture machines,1.04748,TJ,CO2,74100.0,kg/TJ,77618.268,kg -e8569d22-8f57-3e80-b5bc-ea0873fb1431,SESCO,II.5.1,Chaco,AR-H,annual,2016,gas oil combustion consumption by agriculture machines,1.04748,TJ,CH4,3.9,kg/TJ,4.085172,kg -e8569d22-8f57-3e80-b5bc-ea0873fb1431,SESCO,II.5.1,Chaco,AR-H,annual,2016,gas oil combustion consumption by agriculture machines,1.04748,TJ,N2O,3.9,kg/TJ,4.085172,kg -26855941-11e5-36bd-b03e-2262ce15b713,SESCO,II.5.1,Córdoba,AR-X,annual,2016,gas oil combustion consumption by agriculture machines,11.738999999999999,TJ,CO2,74100.0,kg/TJ,869859.8999999999,kg -60d8a771-1951-3634-b370-920cd88c130f,SESCO,II.5.1,Córdoba,AR-X,annual,2016,gas oil combustion consumption by agriculture machines,11.738999999999999,TJ,CH4,3.9,kg/TJ,45.78209999999999,kg -60d8a771-1951-3634-b370-920cd88c130f,SESCO,II.5.1,Córdoba,AR-X,annual,2016,gas oil combustion consumption by agriculture machines,11.738999999999999,TJ,N2O,3.9,kg/TJ,45.78209999999999,kg -973edb3f-5f58-3b50-829a-1c8bfae819b0,SESCO,II.5.1,Santa Fe,AR-S,annual,2016,gas oil combustion consumption by agriculture machines,26.62044,TJ,CO2,74100.0,kg/TJ,1972574.6039999998,kg -2ddf5058-4488-3074-a53e-d16663b64d88,SESCO,II.5.1,Santa Fe,AR-S,annual,2016,gas oil combustion consumption by agriculture machines,26.62044,TJ,CH4,3.9,kg/TJ,103.81971599999999,kg -2ddf5058-4488-3074-a53e-d16663b64d88,SESCO,II.5.1,Santa Fe,AR-S,annual,2016,gas oil combustion consumption by agriculture machines,26.62044,TJ,N2O,3.9,kg/TJ,103.81971599999999,kg -74710120-27a3-386f-ac36-989cbe562afb,SESCO,II.5.1,Tucuman,AR-T,annual,2016,gas oil combustion consumption by agriculture machines,6.10428,TJ,CO2,74100.0,kg/TJ,452327.148,kg -c91b8d86-f331-383d-a180-bfa3dfafb558,SESCO,II.5.1,Tucuman,AR-T,annual,2016,gas oil combustion consumption by agriculture machines,6.10428,TJ,CH4,3.9,kg/TJ,23.806692,kg -c91b8d86-f331-383d-a180-bfa3dfafb558,SESCO,II.5.1,Tucuman,AR-T,annual,2016,gas oil combustion consumption by agriculture machines,6.10428,TJ,N2O,3.9,kg/TJ,23.806692,kg -559b7b90-bcb7-37df-adc3-851f90a76562,SESCO,II.1.1,Buenos Aires,AR-B,annual,2016,gas oil combustion consumption by to the public,10061.7678,TJ,CO2,74100.0,kg/TJ,745576993.98,kg -78ad1973-4929-3e3c-a854-786ba935d8c0,SESCO,II.1.1,Buenos Aires,AR-B,annual,2016,gas oil combustion consumption by to the public,10061.7678,TJ,CH4,3.9,kg/TJ,39240.89442,kg -78ad1973-4929-3e3c-a854-786ba935d8c0,SESCO,II.1.1,Buenos Aires,AR-B,annual,2016,gas oil combustion consumption by to the public,10061.7678,TJ,N2O,3.9,kg/TJ,39240.89442,kg -6d6838c5-92f6-37df-801b-a7bf5179c6dd,SESCO,II.1.1,Capital Federal,AR-C,annual,2016,gas oil combustion consumption by to the public,1156.0206,TJ,CO2,74100.0,kg/TJ,85661126.46000001,kg -55aec61d-8c5a-33c2-b648-eef1db5d3c3a,SESCO,II.1.1,Capital Federal,AR-C,annual,2016,gas oil combustion consumption by to the public,1156.0206,TJ,CH4,3.9,kg/TJ,4508.48034,kg -55aec61d-8c5a-33c2-b648-eef1db5d3c3a,SESCO,II.1.1,Capital Federal,AR-C,annual,2016,gas oil combustion consumption by to the public,1156.0206,TJ,N2O,3.9,kg/TJ,4508.48034,kg -6f79cb60-4c6e-3970-bf0e-47bb5978e7c5,SESCO,II.1.1,Catamarca,AR-K,annual,2016,gas oil combustion consumption by to the public,258.47472,TJ,CO2,74100.0,kg/TJ,19152976.752,kg -eb955919-2550-30ef-81a3-03ac628ff751,SESCO,II.1.1,Catamarca,AR-K,annual,2016,gas oil combustion consumption by to the public,258.47472,TJ,CH4,3.9,kg/TJ,1008.0514079999999,kg -eb955919-2550-30ef-81a3-03ac628ff751,SESCO,II.1.1,Catamarca,AR-K,annual,2016,gas oil combustion consumption by to the public,258.47472,TJ,N2O,3.9,kg/TJ,1008.0514079999999,kg -cdaa7f28-238e-31be-b432-2b13a0d11429,SESCO,II.1.1,Chaco,AR-H,annual,2016,gas oil combustion consumption by to the public,362.68092,TJ,CO2,74100.0,kg/TJ,26874656.172000002,kg -57fbd021-3b73-3001-a000-72fbc7a63dba,SESCO,II.1.1,Chaco,AR-H,annual,2016,gas oil combustion consumption by to the public,362.68092,TJ,CH4,3.9,kg/TJ,1414.455588,kg -57fbd021-3b73-3001-a000-72fbc7a63dba,SESCO,II.1.1,Chaco,AR-H,annual,2016,gas oil combustion consumption by to the public,362.68092,TJ,N2O,3.9,kg/TJ,1414.455588,kg -8fa0e0e8-ed62-3441-baee-21885fb788be,SESCO,II.1.1,Chubut,AR-U,annual,2016,gas oil combustion consumption by to the public,279.46044,TJ,CO2,74100.0,kg/TJ,20708018.604000002,kg -212ca008-7eed-382c-8ca2-05cee1d4b1aa,SESCO,II.1.1,Chubut,AR-U,annual,2016,gas oil combustion consumption by to the public,279.46044,TJ,CH4,3.9,kg/TJ,1089.895716,kg -212ca008-7eed-382c-8ca2-05cee1d4b1aa,SESCO,II.1.1,Chubut,AR-U,annual,2016,gas oil combustion consumption by to the public,279.46044,TJ,N2O,3.9,kg/TJ,1089.895716,kg -b4aee10f-3345-31c4-b661-835ce05a4133,SESCO,II.1.1,Corrientes,AR-W,annual,2016,gas oil combustion consumption by to the public,694.33476,TJ,CO2,74100.0,kg/TJ,51450205.716,kg -0a488b3b-24c3-3a7a-a3ba-2e290121bddf,SESCO,II.1.1,Corrientes,AR-W,annual,2016,gas oil combustion consumption by to the public,694.33476,TJ,CH4,3.9,kg/TJ,2707.9055639999997,kg -0a488b3b-24c3-3a7a-a3ba-2e290121bddf,SESCO,II.1.1,Corrientes,AR-W,annual,2016,gas oil combustion consumption by to the public,694.33476,TJ,N2O,3.9,kg/TJ,2707.9055639999997,kg -2d9b208c-10a3-397a-9a56-10157b92fcaf,SESCO,II.1.1,Córdoba,AR-X,annual,2016,gas oil combustion consumption by to the public,4039.40796,TJ,CO2,74100.0,kg/TJ,299320129.836,kg -ef3912f3-67f2-35af-b44c-d6e8400eaab3,SESCO,II.1.1,Córdoba,AR-X,annual,2016,gas oil combustion consumption by to the public,4039.40796,TJ,CH4,3.9,kg/TJ,15753.691044,kg -ef3912f3-67f2-35af-b44c-d6e8400eaab3,SESCO,II.1.1,Córdoba,AR-X,annual,2016,gas oil combustion consumption by to the public,4039.40796,TJ,N2O,3.9,kg/TJ,15753.691044,kg -8d6a9cd0-0cad-3a15-ae46-e0b92f85fdbf,SESCO,II.1.1,Entre Rios,AR-E,annual,2016,gas oil combustion consumption by to the public,1222.15632,TJ,CO2,74100.0,kg/TJ,90561783.312,kg -55ec3f23-6c7e-3603-aaa8-02e181e0a348,SESCO,II.1.1,Entre Rios,AR-E,annual,2016,gas oil combustion consumption by to the public,1222.15632,TJ,CH4,3.9,kg/TJ,4766.409648,kg -55ec3f23-6c7e-3603-aaa8-02e181e0a348,SESCO,II.1.1,Entre Rios,AR-E,annual,2016,gas oil combustion consumption by to the public,1222.15632,TJ,N2O,3.9,kg/TJ,4766.409648,kg -ac6e5a0b-3c49-3c8a-b6d0-a16ad202d5ce,SESCO,II.1.1,Formosa,AR-P,annual,2016,gas oil combustion consumption by to the public,533.42016,TJ,CO2,74100.0,kg/TJ,39526433.856,kg -42addc9d-9816-3fc1-9808-2585bbe4d249,SESCO,II.1.1,Formosa,AR-P,annual,2016,gas oil combustion consumption by to the public,533.42016,TJ,CH4,3.9,kg/TJ,2080.338624,kg -42addc9d-9816-3fc1-9808-2585bbe4d249,SESCO,II.1.1,Formosa,AR-P,annual,2016,gas oil combustion consumption by to the public,533.42016,TJ,N2O,3.9,kg/TJ,2080.338624,kg -a8bd4443-0002-32b8-ad2d-de18831b23a2,SESCO,II.1.1,Jujuy,AR-Y,annual,2016,gas oil combustion consumption by to the public,162.14267999999998,TJ,CO2,74100.0,kg/TJ,12014772.588,kg -a80bc81f-0f60-3213-ab6a-04ff908d34cd,SESCO,II.1.1,Jujuy,AR-Y,annual,2016,gas oil combustion consumption by to the public,162.14267999999998,TJ,CH4,3.9,kg/TJ,632.3564519999999,kg -a80bc81f-0f60-3213-ab6a-04ff908d34cd,SESCO,II.1.1,Jujuy,AR-Y,annual,2016,gas oil combustion consumption by to the public,162.14267999999998,TJ,N2O,3.9,kg/TJ,632.3564519999999,kg -bd8cbd1e-3e5e-3f6d-84c4-8979fd197822,SESCO,II.1.1,La Pampa,AR-L,annual,2016,gas oil combustion consumption by to the public,421.70099999999996,TJ,CO2,74100.0,kg/TJ,31248044.099999998,kg -25b77df6-edfb-339e-b9cf-b08087b2c582,SESCO,II.1.1,La Pampa,AR-L,annual,2016,gas oil combustion consumption by to the public,421.70099999999996,TJ,CH4,3.9,kg/TJ,1644.6338999999998,kg -25b77df6-edfb-339e-b9cf-b08087b2c582,SESCO,II.1.1,La Pampa,AR-L,annual,2016,gas oil combustion consumption by to the public,421.70099999999996,TJ,N2O,3.9,kg/TJ,1644.6338999999998,kg -da251be7-dc3c-3c49-8b79-d6f4814b75a1,SESCO,II.1.1,La Rioja,AR-F,annual,2016,gas oil combustion consumption by to the public,68.23067999999999,TJ,CO2,74100.0,kg/TJ,5055893.387999999,kg -a84d1121-033d-35be-9517-3166c9b5ef1f,SESCO,II.1.1,La Rioja,AR-F,annual,2016,gas oil combustion consumption by to the public,68.23067999999999,TJ,CH4,3.9,kg/TJ,266.099652,kg -a84d1121-033d-35be-9517-3166c9b5ef1f,SESCO,II.1.1,La Rioja,AR-F,annual,2016,gas oil combustion consumption by to the public,68.23067999999999,TJ,N2O,3.9,kg/TJ,266.099652,kg -180d8f8a-8e90-32c4-8574-8e43f8ea9009,SESCO,II.1.1,Mendoza,AR-M,annual,2016,gas oil combustion consumption by to the public,446.29872,TJ,CO2,74100.0,kg/TJ,33070735.152,kg -67343848-814f-3b15-9f54-c2609c71fb79,SESCO,II.1.1,Mendoza,AR-M,annual,2016,gas oil combustion consumption by to the public,446.29872,TJ,CH4,3.9,kg/TJ,1740.565008,kg -67343848-814f-3b15-9f54-c2609c71fb79,SESCO,II.1.1,Mendoza,AR-M,annual,2016,gas oil combustion consumption by to the public,446.29872,TJ,N2O,3.9,kg/TJ,1740.565008,kg -6d968a9a-ee8b-32d5-acdd-c68fcaf53316,SESCO,II.1.1,Misiones,AR-N,annual,2016,gas oil combustion consumption by to the public,618.48276,TJ,CO2,74100.0,kg/TJ,45829572.515999995,kg -94feb594-7312-311b-8cef-3ccbb8af505e,SESCO,II.1.1,Misiones,AR-N,annual,2016,gas oil combustion consumption by to the public,618.48276,TJ,CH4,3.9,kg/TJ,2412.0827639999998,kg -94feb594-7312-311b-8cef-3ccbb8af505e,SESCO,II.1.1,Misiones,AR-N,annual,2016,gas oil combustion consumption by to the public,618.48276,TJ,N2O,3.9,kg/TJ,2412.0827639999998,kg -9d9558fd-a041-3e7d-9097-6c593fa69c35,SESCO,II.1.1,Neuquén,AR-Q,annual,2016,gas oil combustion consumption by to the public,102.039,TJ,CO2,74100.0,kg/TJ,7561089.9,kg -865c97ec-1f13-304c-9f1f-e37dc4130ee3,SESCO,II.1.1,Neuquén,AR-Q,annual,2016,gas oil combustion consumption by to the public,102.039,TJ,CH4,3.9,kg/TJ,397.9521,kg -865c97ec-1f13-304c-9f1f-e37dc4130ee3,SESCO,II.1.1,Neuquén,AR-Q,annual,2016,gas oil combustion consumption by to the public,102.039,TJ,N2O,3.9,kg/TJ,397.9521,kg -275d2c95-cb20-3d51-b5c4-5c7225fb173f,SESCO,II.1.1,Rio Negro,AR-R,annual,2016,gas oil combustion consumption by to the public,503.40443999999997,TJ,CO2,74100.0,kg/TJ,37302269.004,kg -7799b286-4fbe-3c14-905e-6666af02ab73,SESCO,II.1.1,Rio Negro,AR-R,annual,2016,gas oil combustion consumption by to the public,503.40443999999997,TJ,CH4,3.9,kg/TJ,1963.277316,kg -7799b286-4fbe-3c14-905e-6666af02ab73,SESCO,II.1.1,Rio Negro,AR-R,annual,2016,gas oil combustion consumption by to the public,503.40443999999997,TJ,N2O,3.9,kg/TJ,1963.277316,kg -3feebf5d-0d20-3b25-91b7-ed547f36d03e,SESCO,II.1.1,Salta,AR-A,annual,2016,gas oil combustion consumption by to the public,36.91464,TJ,CO2,74100.0,kg/TJ,2735374.824,kg -07d81ac5-b5f1-3252-9d5b-d499af4d7f22,SESCO,II.1.1,Salta,AR-A,annual,2016,gas oil combustion consumption by to the public,36.91464,TJ,CH4,3.9,kg/TJ,143.967096,kg -07d81ac5-b5f1-3252-9d5b-d499af4d7f22,SESCO,II.1.1,Salta,AR-A,annual,2016,gas oil combustion consumption by to the public,36.91464,TJ,N2O,3.9,kg/TJ,143.967096,kg -b58c61f8-253b-361d-bac4-842d3ac401b7,SESCO,II.1.1,San Juan,AR-J,annual,2016,gas oil combustion consumption by to the public,312.2574,TJ,CO2,74100.0,kg/TJ,23138273.34,kg -716655f6-2084-3c44-b135-58a7d0076fd0,SESCO,II.1.1,San Juan,AR-J,annual,2016,gas oil combustion consumption by to the public,312.2574,TJ,CH4,3.9,kg/TJ,1217.80386,kg -716655f6-2084-3c44-b135-58a7d0076fd0,SESCO,II.1.1,San Juan,AR-J,annual,2016,gas oil combustion consumption by to the public,312.2574,TJ,N2O,3.9,kg/TJ,1217.80386,kg -85060dd8-6043-3d7a-9910-d84a38dbb512,SESCO,II.1.1,San Luis,AR-D,annual,2016,gas oil combustion consumption by to the public,666.81132,TJ,CO2,74100.0,kg/TJ,49410718.812,kg -02b140a3-fe3a-3c8e-92a3-ed90f4ce9579,SESCO,II.1.1,San Luis,AR-D,annual,2016,gas oil combustion consumption by to the public,666.81132,TJ,CH4,3.9,kg/TJ,2600.564148,kg -02b140a3-fe3a-3c8e-92a3-ed90f4ce9579,SESCO,II.1.1,San Luis,AR-D,annual,2016,gas oil combustion consumption by to the public,666.81132,TJ,N2O,3.9,kg/TJ,2600.564148,kg -3bcaafff-a600-3e1d-a542-684caf68ccf9,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2016,gas oil combustion consumption by to the public,47.71452,TJ,CO2,74100.0,kg/TJ,3535645.932,kg -1b17f1e4-e912-319d-8872-161f3eae86cc,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2016,gas oil combustion consumption by to the public,47.71452,TJ,CH4,3.9,kg/TJ,186.086628,kg -1b17f1e4-e912-319d-8872-161f3eae86cc,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2016,gas oil combustion consumption by to the public,47.71452,TJ,N2O,3.9,kg/TJ,186.086628,kg -b531b28d-337e-3e7e-9c34-e0edada6cebd,SESCO,II.1.1,Santa Fe,AR-S,annual,2016,gas oil combustion consumption by to the public,3143.5236,TJ,CO2,74100.0,kg/TJ,232935098.76,kg -7cb9f88a-dc4e-3474-a4e2-d005ef77b898,SESCO,II.1.1,Santa Fe,AR-S,annual,2016,gas oil combustion consumption by to the public,3143.5236,TJ,CH4,3.9,kg/TJ,12259.74204,kg -7cb9f88a-dc4e-3474-a4e2-d005ef77b898,SESCO,II.1.1,Santa Fe,AR-S,annual,2016,gas oil combustion consumption by to the public,3143.5236,TJ,N2O,3.9,kg/TJ,12259.74204,kg -0401a3f6-baba-3080-b6c4-7e7545c1d3cd,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2016,gas oil combustion consumption by to the public,501.16499999999996,TJ,CO2,74100.0,kg/TJ,37136326.5,kg -7a78aef4-4b9d-3e90-bfb4-4cd2a530c159,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2016,gas oil combustion consumption by to the public,501.16499999999996,TJ,CH4,3.9,kg/TJ,1954.5434999999998,kg -7a78aef4-4b9d-3e90-bfb4-4cd2a530c159,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2016,gas oil combustion consumption by to the public,501.16499999999996,TJ,N2O,3.9,kg/TJ,1954.5434999999998,kg -82061c3b-5695-3725-b640-63b4f9280e8b,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2016,gas oil combustion consumption by to the public,109.22688,TJ,CO2,74100.0,kg/TJ,8093711.807999999,kg -86ee8bf5-0563-3c23-8bb1-53e673f660a4,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2016,gas oil combustion consumption by to the public,109.22688,TJ,CH4,3.9,kg/TJ,425.984832,kg -86ee8bf5-0563-3c23-8bb1-53e673f660a4,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2016,gas oil combustion consumption by to the public,109.22688,TJ,N2O,3.9,kg/TJ,425.984832,kg -7a8fd617-c2f3-3dd4-ba62-85ae02dda46c,SESCO,II.1.1,Tucuman,AR-T,annual,2016,gas oil combustion consumption by to the public,192.55572,TJ,CO2,74100.0,kg/TJ,14268378.852,kg -afcd85e6-cf7c-3468-af05-fd8672b9c9d9,SESCO,II.1.1,Tucuman,AR-T,annual,2016,gas oil combustion consumption by to the public,192.55572,TJ,CH4,3.9,kg/TJ,750.967308,kg -afcd85e6-cf7c-3468-af05-fd8672b9c9d9,SESCO,II.1.1,Tucuman,AR-T,annual,2016,gas oil combustion consumption by to the public,192.55572,TJ,N2O,3.9,kg/TJ,750.967308,kg -fdca5ee0-048f-353d-a678-a1d704c3dcca,SESCO,II.1.1,Buenos Aires,AR-B,annual,2016,gas oil combustion consumption by to the public,3277.67328,TJ,CO2,74100.0,kg/TJ,242875590.048,kg -c451ae2b-aff0-3859-9119-cbc1e125b111,SESCO,II.1.1,Buenos Aires,AR-B,annual,2016,gas oil combustion consumption by to the public,3277.67328,TJ,CH4,3.9,kg/TJ,12782.925792,kg -c451ae2b-aff0-3859-9119-cbc1e125b111,SESCO,II.1.1,Buenos Aires,AR-B,annual,2016,gas oil combustion consumption by to the public,3277.67328,TJ,N2O,3.9,kg/TJ,12782.925792,kg -77cd1e89-f7c9-352c-9401-e011cc16b9fd,SESCO,II.1.1,Capital Federal,AR-C,annual,2016,gas oil combustion consumption by to the public,643.3694399999999,TJ,CO2,74100.0,kg/TJ,47673675.50399999,kg -6d104b8e-6f2b-377f-81a1-ff266ff7fb54,SESCO,II.1.1,Capital Federal,AR-C,annual,2016,gas oil combustion consumption by to the public,643.3694399999999,TJ,CH4,3.9,kg/TJ,2509.1408159999996,kg -6d104b8e-6f2b-377f-81a1-ff266ff7fb54,SESCO,II.1.1,Capital Federal,AR-C,annual,2016,gas oil combustion consumption by to the public,643.3694399999999,TJ,N2O,3.9,kg/TJ,2509.1408159999996,kg -40d239f2-a651-33d3-9210-b0803a2e0ee7,SESCO,II.1.1,Catamarca,AR-K,annual,2016,gas oil combustion consumption by to the public,147.7308,TJ,CO2,74100.0,kg/TJ,10946852.28,kg -5af0bd04-c4a4-3bc3-9a02-7bef6ced21fd,SESCO,II.1.1,Catamarca,AR-K,annual,2016,gas oil combustion consumption by to the public,147.7308,TJ,CH4,3.9,kg/TJ,576.1501199999999,kg -5af0bd04-c4a4-3bc3-9a02-7bef6ced21fd,SESCO,II.1.1,Catamarca,AR-K,annual,2016,gas oil combustion consumption by to the public,147.7308,TJ,N2O,3.9,kg/TJ,576.1501199999999,kg -02a2637a-d388-39b2-ad2c-f02641f71f3d,SESCO,II.1.1,Chaco,AR-H,annual,2016,gas oil combustion consumption by to the public,109.87704,TJ,CO2,74100.0,kg/TJ,8141888.664,kg -239a824c-d10d-3c1d-b9ae-bf72411487e3,SESCO,II.1.1,Chaco,AR-H,annual,2016,gas oil combustion consumption by to the public,109.87704,TJ,CH4,3.9,kg/TJ,428.52045599999997,kg -239a824c-d10d-3c1d-b9ae-bf72411487e3,SESCO,II.1.1,Chaco,AR-H,annual,2016,gas oil combustion consumption by to the public,109.87704,TJ,N2O,3.9,kg/TJ,428.52045599999997,kg -e845689c-eac4-31aa-979a-d317e4986566,SESCO,II.1.1,Chubut,AR-U,annual,2016,gas oil combustion consumption by to the public,136.96704,TJ,CO2,74100.0,kg/TJ,10149257.663999999,kg -a5ed652d-de75-3c1c-974e-e8610e1dd3e7,SESCO,II.1.1,Chubut,AR-U,annual,2016,gas oil combustion consumption by to the public,136.96704,TJ,CH4,3.9,kg/TJ,534.1714559999999,kg -a5ed652d-de75-3c1c-974e-e8610e1dd3e7,SESCO,II.1.1,Chubut,AR-U,annual,2016,gas oil combustion consumption by to the public,136.96704,TJ,N2O,3.9,kg/TJ,534.1714559999999,kg -e83b3ddf-51a6-3e4e-a5b5-bd0980938bcc,SESCO,II.1.1,Corrientes,AR-W,annual,2016,gas oil combustion consumption by to the public,197.82924,TJ,CO2,74100.0,kg/TJ,14659146.684,kg -62ce2849-7726-3dd8-89b3-f4a216b9632c,SESCO,II.1.1,Corrientes,AR-W,annual,2016,gas oil combustion consumption by to the public,197.82924,TJ,CH4,3.9,kg/TJ,771.534036,kg -62ce2849-7726-3dd8-89b3-f4a216b9632c,SESCO,II.1.1,Corrientes,AR-W,annual,2016,gas oil combustion consumption by to the public,197.82924,TJ,N2O,3.9,kg/TJ,771.534036,kg -43156f7c-e2fe-38d1-95ec-d2d47a9db45e,SESCO,II.1.1,Córdoba,AR-X,annual,2016,gas oil combustion consumption by to the public,916.76172,TJ,CO2,74100.0,kg/TJ,67932043.45199999,kg -33ea0eaf-6f53-358f-a41b-2c696126c18a,SESCO,II.1.1,Córdoba,AR-X,annual,2016,gas oil combustion consumption by to the public,916.76172,TJ,CH4,3.9,kg/TJ,3575.370708,kg -33ea0eaf-6f53-358f-a41b-2c696126c18a,SESCO,II.1.1,Córdoba,AR-X,annual,2016,gas oil combustion consumption by to the public,916.76172,TJ,N2O,3.9,kg/TJ,3575.370708,kg -54888009-0341-38cb-8c62-1e7ca8af69c4,SESCO,II.1.1,Entre Rios,AR-E,annual,2016,gas oil combustion consumption by to the public,379.72956,TJ,CO2,74100.0,kg/TJ,28137960.395999998,kg -9d254427-d5a0-3769-a710-e66bee1a237e,SESCO,II.1.1,Entre Rios,AR-E,annual,2016,gas oil combustion consumption by to the public,379.72956,TJ,CH4,3.9,kg/TJ,1480.945284,kg -9d254427-d5a0-3769-a710-e66bee1a237e,SESCO,II.1.1,Entre Rios,AR-E,annual,2016,gas oil combustion consumption by to the public,379.72956,TJ,N2O,3.9,kg/TJ,1480.945284,kg -c4f312d5-33c9-3ba5-9246-ad5b85472796,SESCO,II.1.1,Formosa,AR-P,annual,2016,gas oil combustion consumption by to the public,231.27635999999998,TJ,CO2,74100.0,kg/TJ,17137578.276,kg -4d6ff0f8-f15a-3f06-9aba-84c80482321c,SESCO,II.1.1,Formosa,AR-P,annual,2016,gas oil combustion consumption by to the public,231.27635999999998,TJ,CH4,3.9,kg/TJ,901.9778039999999,kg -4d6ff0f8-f15a-3f06-9aba-84c80482321c,SESCO,II.1.1,Formosa,AR-P,annual,2016,gas oil combustion consumption by to the public,231.27635999999998,TJ,N2O,3.9,kg/TJ,901.9778039999999,kg -7fd29d66-fbcb-3f82-9c7e-a42157dab327,SESCO,II.1.1,Jujuy,AR-Y,annual,2016,gas oil combustion consumption by to the public,38.97348,TJ,CO2,74100.0,kg/TJ,2887934.8680000002,kg -ffcb4caf-54ae-35d1-8009-eab987a34a99,SESCO,II.1.1,Jujuy,AR-Y,annual,2016,gas oil combustion consumption by to the public,38.97348,TJ,CH4,3.9,kg/TJ,151.99657200000001,kg -ffcb4caf-54ae-35d1-8009-eab987a34a99,SESCO,II.1.1,Jujuy,AR-Y,annual,2016,gas oil combustion consumption by to the public,38.97348,TJ,N2O,3.9,kg/TJ,151.99657200000001,kg -8a7fe9b9-0e1d-3e0e-94b1-93523a96e448,SESCO,II.1.1,La Pampa,AR-L,annual,2016,gas oil combustion consumption by to the public,119.66556,TJ,CO2,74100.0,kg/TJ,8867217.996,kg -c3358c70-3a78-359a-aa25-ab0ad0f48032,SESCO,II.1.1,La Pampa,AR-L,annual,2016,gas oil combustion consumption by to the public,119.66556,TJ,CH4,3.9,kg/TJ,466.69568399999997,kg -c3358c70-3a78-359a-aa25-ab0ad0f48032,SESCO,II.1.1,La Pampa,AR-L,annual,2016,gas oil combustion consumption by to the public,119.66556,TJ,N2O,3.9,kg/TJ,466.69568399999997,kg -08906142-7b51-32d2-99b8-78e9a288b952,SESCO,II.1.1,La Rioja,AR-F,annual,2016,gas oil combustion consumption by to the public,41.42964,TJ,CO2,74100.0,kg/TJ,3069936.324,kg -ae4c2214-0c79-3902-bd5a-61dd3fdd97c2,SESCO,II.1.1,La Rioja,AR-F,annual,2016,gas oil combustion consumption by to the public,41.42964,TJ,CH4,3.9,kg/TJ,161.575596,kg -ae4c2214-0c79-3902-bd5a-61dd3fdd97c2,SESCO,II.1.1,La Rioja,AR-F,annual,2016,gas oil combustion consumption by to the public,41.42964,TJ,N2O,3.9,kg/TJ,161.575596,kg -4ad484d7-a982-3012-a47f-f086800f6d88,SESCO,II.1.1,Mendoza,AR-M,annual,2016,gas oil combustion consumption by to the public,219.50124,TJ,CO2,74100.0,kg/TJ,16265041.884,kg -107df4f3-c549-3157-b4fa-ccb7f241aa12,SESCO,II.1.1,Mendoza,AR-M,annual,2016,gas oil combustion consumption by to the public,219.50124,TJ,CH4,3.9,kg/TJ,856.0548359999999,kg -107df4f3-c549-3157-b4fa-ccb7f241aa12,SESCO,II.1.1,Mendoza,AR-M,annual,2016,gas oil combustion consumption by to the public,219.50124,TJ,N2O,3.9,kg/TJ,856.0548359999999,kg -46123862-bb8a-3955-a512-54b578362b3f,SESCO,II.1.1,Misiones,AR-N,annual,2016,gas oil combustion consumption by to the public,163.87644,TJ,CO2,74100.0,kg/TJ,12143244.204,kg -88bdc739-081e-346c-a4c6-0e91e4988faa,SESCO,II.1.1,Misiones,AR-N,annual,2016,gas oil combustion consumption by to the public,163.87644,TJ,CH4,3.9,kg/TJ,639.118116,kg -88bdc739-081e-346c-a4c6-0e91e4988faa,SESCO,II.1.1,Misiones,AR-N,annual,2016,gas oil combustion consumption by to the public,163.87644,TJ,N2O,3.9,kg/TJ,639.118116,kg -5e8ed78d-3bfc-3901-985c-ecf72d444b8c,SESCO,II.1.1,Neuquén,AR-Q,annual,2016,gas oil combustion consumption by to the public,122.88024,TJ,CO2,74100.0,kg/TJ,9105425.784,kg -873a7c14-efe2-3407-a5dd-681f1e9ad1ab,SESCO,II.1.1,Neuquén,AR-Q,annual,2016,gas oil combustion consumption by to the public,122.88024,TJ,CH4,3.9,kg/TJ,479.232936,kg -873a7c14-efe2-3407-a5dd-681f1e9ad1ab,SESCO,II.1.1,Neuquén,AR-Q,annual,2016,gas oil combustion consumption by to the public,122.88024,TJ,N2O,3.9,kg/TJ,479.232936,kg -d3c0588a-b395-3a18-8a3f-67802c82f4d2,SESCO,II.1.1,Rio Negro,AR-R,annual,2016,gas oil combustion consumption by to the public,236.9472,TJ,CO2,74100.0,kg/TJ,17557787.52,kg -5e92b6d0-b045-3ae8-abb5-5b4c3f330188,SESCO,II.1.1,Rio Negro,AR-R,annual,2016,gas oil combustion consumption by to the public,236.9472,TJ,CH4,3.9,kg/TJ,924.09408,kg -5e92b6d0-b045-3ae8-abb5-5b4c3f330188,SESCO,II.1.1,Rio Negro,AR-R,annual,2016,gas oil combustion consumption by to the public,236.9472,TJ,N2O,3.9,kg/TJ,924.09408,kg -f9a21c4f-1973-3a93-933b-9965b5f22fed,SESCO,II.1.1,Salta,AR-A,annual,2016,gas oil combustion consumption by to the public,24.09204,TJ,CO2,74100.0,kg/TJ,1785220.164,kg -aab86220-b2f7-3348-80c3-7794c841282f,SESCO,II.1.1,Salta,AR-A,annual,2016,gas oil combustion consumption by to the public,24.09204,TJ,CH4,3.9,kg/TJ,93.958956,kg -aab86220-b2f7-3348-80c3-7794c841282f,SESCO,II.1.1,Salta,AR-A,annual,2016,gas oil combustion consumption by to the public,24.09204,TJ,N2O,3.9,kg/TJ,93.958956,kg -745e85fa-7d31-3249-b511-f702ce19d861,SESCO,II.1.1,San Juan,AR-J,annual,2016,gas oil combustion consumption by to the public,76.5744,TJ,CO2,74100.0,kg/TJ,5674163.04,kg -db38b340-d95b-3a13-ac22-7135d339267e,SESCO,II.1.1,San Juan,AR-J,annual,2016,gas oil combustion consumption by to the public,76.5744,TJ,CH4,3.9,kg/TJ,298.64016,kg -db38b340-d95b-3a13-ac22-7135d339267e,SESCO,II.1.1,San Juan,AR-J,annual,2016,gas oil combustion consumption by to the public,76.5744,TJ,N2O,3.9,kg/TJ,298.64016,kg -5061d8dc-6aa6-375e-879b-525405b8cc27,SESCO,II.1.1,San Luis,AR-D,annual,2016,gas oil combustion consumption by to the public,153.54612,TJ,CO2,74100.0,kg/TJ,11377767.492,kg -a36f0181-a738-3020-9c08-87d487a88ce3,SESCO,II.1.1,San Luis,AR-D,annual,2016,gas oil combustion consumption by to the public,153.54612,TJ,CH4,3.9,kg/TJ,598.829868,kg -a36f0181-a738-3020-9c08-87d487a88ce3,SESCO,II.1.1,San Luis,AR-D,annual,2016,gas oil combustion consumption by to the public,153.54612,TJ,N2O,3.9,kg/TJ,598.829868,kg -3bcaafff-a600-3e1d-a542-684caf68ccf9,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2016,gas oil combustion consumption by to the public,47.71452,TJ,CO2,74100.0,kg/TJ,3535645.932,kg -1b17f1e4-e912-319d-8872-161f3eae86cc,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2016,gas oil combustion consumption by to the public,47.71452,TJ,CH4,3.9,kg/TJ,186.086628,kg -1b17f1e4-e912-319d-8872-161f3eae86cc,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2016,gas oil combustion consumption by to the public,47.71452,TJ,N2O,3.9,kg/TJ,186.086628,kg -c09b7d1b-bb70-3a94-966a-a21f8b7954e8,SESCO,II.1.1,Santa Fe,AR-S,annual,2016,gas oil combustion consumption by to the public,839.93448,TJ,CO2,74100.0,kg/TJ,62239144.968,kg -ccf7ad4e-a428-36c8-ab6a-4135b844c3b8,SESCO,II.1.1,Santa Fe,AR-S,annual,2016,gas oil combustion consumption by to the public,839.93448,TJ,CH4,3.9,kg/TJ,3275.744472,kg -ccf7ad4e-a428-36c8-ab6a-4135b844c3b8,SESCO,II.1.1,Santa Fe,AR-S,annual,2016,gas oil combustion consumption by to the public,839.93448,TJ,N2O,3.9,kg/TJ,3275.744472,kg -75894ffb-e04a-3fa7-b634-7e7387e15f21,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2016,gas oil combustion consumption by to the public,151.05384,TJ,CO2,74100.0,kg/TJ,11193089.544,kg -5d95640d-83bf-3ce0-a32f-b7821191fd13,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2016,gas oil combustion consumption by to the public,151.05384,TJ,CH4,3.9,kg/TJ,589.1099760000001,kg -5d95640d-83bf-3ce0-a32f-b7821191fd13,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2016,gas oil combustion consumption by to the public,151.05384,TJ,N2O,3.9,kg/TJ,589.1099760000001,kg -41d78c1a-02fc-33f0-8702-5693f3e192e8,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2016,gas oil combustion consumption by to the public,81.52284,TJ,CO2,74100.0,kg/TJ,6040842.444,kg -ce8d72b6-536d-3e79-ba86-fb372cb81d42,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2016,gas oil combustion consumption by to the public,81.52284,TJ,CH4,3.9,kg/TJ,317.939076,kg -ce8d72b6-536d-3e79-ba86-fb372cb81d42,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2016,gas oil combustion consumption by to the public,81.52284,TJ,N2O,3.9,kg/TJ,317.939076,kg -3c6da6fd-232c-3629-9287-aac452c5573b,SESCO,II.1.1,Tucuman,AR-T,annual,2016,gas oil combustion consumption by to the public,35.5782,TJ,CO2,74100.0,kg/TJ,2636344.62,kg -634beb42-06e6-3076-a6bf-a44539daf344,SESCO,II.1.1,Tucuman,AR-T,annual,2016,gas oil combustion consumption by to the public,35.5782,TJ,CH4,3.9,kg/TJ,138.75498000000002,kg -634beb42-06e6-3076-a6bf-a44539daf344,SESCO,II.1.1,Tucuman,AR-T,annual,2016,gas oil combustion consumption by to the public,35.5782,TJ,N2O,3.9,kg/TJ,138.75498000000002,kg -38672ff6-2fe6-3fbf-a7de-497cc11d9683,SESCO,II.1.1,Buenos Aires,AR-B,annual,2016,jet kerosene combustion consumption by to the public,11.008549999999998,TJ,CO2,71500.0,kg/TJ,787111.3249999998,kg -1712d099-8927-37cf-bae4-d984429aae7c,SESCO,II.1.1,Buenos Aires,AR-B,annual,2016,jet kerosene combustion consumption by to the public,11.008549999999998,TJ,CH4,0.5,kg/TJ,5.504274999999999,kg -f3246bb7-85ba-391e-9680-3006622bc565,SESCO,II.1.1,Buenos Aires,AR-B,annual,2016,jet kerosene combustion consumption by to the public,11.008549999999998,TJ,N2O,2.0,kg/TJ,22.017099999999996,kg -ef2334e7-72d0-397c-b18f-cc1b6544bf4a,SESCO,II.1.1,Córdoba,AR-X,annual,2016,jet kerosene combustion consumption by to the public,6.007522999999999,TJ,CO2,71500.0,kg/TJ,429537.89449999994,kg -12a6265e-981a-3d99-9072-c3cdd5f00bb3,SESCO,II.1.1,Córdoba,AR-X,annual,2016,jet kerosene combustion consumption by to the public,6.007522999999999,TJ,CH4,0.5,kg/TJ,3.0037614999999995,kg -7ba70488-7bd2-3b63-b029-11a09533dd7b,SESCO,II.1.1,Córdoba,AR-X,annual,2016,jet kerosene combustion consumption by to the public,6.007522999999999,TJ,N2O,2.0,kg/TJ,12.015045999999998,kg -64f3a691-d917-3052-a982-19448a56182e,SESCO,II.1.1,Entre Rios,AR-E,annual,2016,jet kerosene combustion consumption by to the public,2.6420519999999996,TJ,CO2,71500.0,kg/TJ,188906.71799999996,kg -436a2017-b30c-3d57-96ea-90efd2ed7699,SESCO,II.1.1,Entre Rios,AR-E,annual,2016,jet kerosene combustion consumption by to the public,2.6420519999999996,TJ,CH4,0.5,kg/TJ,1.3210259999999998,kg -5d683240-796b-39b8-bacd-18fc20cca008,SESCO,II.1.1,Entre Rios,AR-E,annual,2016,jet kerosene combustion consumption by to the public,2.6420519999999996,TJ,N2O,2.0,kg/TJ,5.284103999999999,kg -4bdab40e-68cd-3f23-98e5-51405a639762,SESCO,II.1.1,Misiones,AR-N,annual,2016,jet kerosene combustion consumption by to the public,0.5976069999999999,TJ,CO2,71500.0,kg/TJ,42728.90049999999,kg -ffe8e5bd-3043-325a-979f-a5fc1bdd4150,SESCO,II.1.1,Misiones,AR-N,annual,2016,jet kerosene combustion consumption by to the public,0.5976069999999999,TJ,CH4,0.5,kg/TJ,0.29880349999999994,kg -2b708ed9-77b1-3eea-8e8d-394fe22bb9df,SESCO,II.1.1,Misiones,AR-N,annual,2016,jet kerosene combustion consumption by to the public,0.5976069999999999,TJ,N2O,2.0,kg/TJ,1.1952139999999998,kg -c6a4a720-803b-3a3c-bdb1-509bc640aea4,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2016,jet kerosene combustion consumption by to the public,1.4468379999999998,TJ,CO2,71500.0,kg/TJ,103448.91699999999,kg -cd5c740d-03a9-3d9e-8924-a161b1fa3e84,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2016,jet kerosene combustion consumption by to the public,1.4468379999999998,TJ,CH4,0.5,kg/TJ,0.7234189999999999,kg -6f091618-6ebf-3b4d-ae15-df6722ca53b1,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2016,jet kerosene combustion consumption by to the public,1.4468379999999998,TJ,N2O,2.0,kg/TJ,2.8936759999999997,kg -36210880-9dd8-3d61-a231-0b6f9974aa20,SESCO,II.1.1,Santa Fe,AR-S,annual,2016,jet kerosene combustion consumption by to the public,5.158291999999999,TJ,CO2,71500.0,kg/TJ,368817.87799999997,kg -c462cfd9-856c-3b23-a23b-0b198c70e9c9,SESCO,II.1.1,Santa Fe,AR-S,annual,2016,jet kerosene combustion consumption by to the public,5.158291999999999,TJ,CH4,0.5,kg/TJ,2.5791459999999997,kg -f23df2c5-7350-3534-8970-d7b8db248144,SESCO,II.1.1,Santa Fe,AR-S,annual,2016,jet kerosene combustion consumption by to the public,5.158291999999999,TJ,N2O,2.0,kg/TJ,10.316583999999999,kg -67776745-117d-36bb-8a97-0c0d6922fc37,SESCO,I.3.1,Buenos Aires,AR-B,annual,2016,gasoline combustion consumption by petrochemical industries,19.5363,TJ,CO2,69300.0,kg/TJ,1353865.59,kg -3666f79b-858d-3129-aa7c-40da151e7e34,SESCO,I.3.1,Buenos Aires,AR-B,annual,2016,gasoline combustion consumption by petrochemical industries,19.5363,TJ,CH4,33.0,kg/TJ,644.6979,kg -2989b76b-6ecb-3ae9-90d5-834a61fc3c60,SESCO,I.3.1,Buenos Aires,AR-B,annual,2016,gasoline combustion consumption by petrochemical industries,19.5363,TJ,N2O,3.2,kg/TJ,62.516160000000006,kg -8f3b02dd-0595-3f60-a26c-55b34fc2123f,SESCO,I.3.1,Buenos Aires,AR-B,annual,2016,gas oil combustion consumption by petrochemical industries,9.31896,TJ,CO2,74100.0,kg/TJ,690534.936,kg -3794399e-6ded-3792-940e-aabb96924cb9,SESCO,I.3.1,Buenos Aires,AR-B,annual,2016,gas oil combustion consumption by petrochemical industries,9.31896,TJ,CH4,3.9,kg/TJ,36.343944,kg -3794399e-6ded-3792-940e-aabb96924cb9,SESCO,I.3.1,Buenos Aires,AR-B,annual,2016,gas oil combustion consumption by petrochemical industries,9.31896,TJ,N2O,3.9,kg/TJ,36.343944,kg -9c8989c5-eb6b-3868-b307-2149eca7b4c9,SESCO,I.3.1,San Luis,AR-D,annual,2016,gas oil combustion consumption by petrochemical industries,2.6367599999999998,TJ,CO2,74100.0,kg/TJ,195383.916,kg -84444cc8-395d-3676-a54b-4605446029a4,SESCO,I.3.1,San Luis,AR-D,annual,2016,gas oil combustion consumption by petrochemical industries,2.6367599999999998,TJ,CH4,3.9,kg/TJ,10.283363999999999,kg -84444cc8-395d-3676-a54b-4605446029a4,SESCO,I.3.1,San Luis,AR-D,annual,2016,gas oil combustion consumption by petrochemical industries,2.6367599999999998,TJ,N2O,3.9,kg/TJ,10.283363999999999,kg -7d183e71-c8a5-335a-a432-eb308d7e3778,SESCO,I.3.1,Capital Federal,AR-C,annual,2016,jet kerosene combustion consumption by petrochemical industries,2.7993169999999994,TJ,CO2,71500.0,kg/TJ,200151.16549999994,kg -b4194c9a-199e-3d7d-944b-e503ae9c8d59,SESCO,I.3.1,Capital Federal,AR-C,annual,2016,jet kerosene combustion consumption by petrochemical industries,2.7993169999999994,TJ,CH4,0.5,kg/TJ,1.3996584999999997,kg -3e8646a2-d506-3c8c-932b-d7ec84ac8e99,SESCO,I.3.1,Capital Federal,AR-C,annual,2016,jet kerosene combustion consumption by petrochemical industries,2.7993169999999994,TJ,N2O,2.0,kg/TJ,5.598633999999999,kg -40598967-2299-3ec5-86b0-bcbbc29b45c4,SESCO,II.2.1,Buenos Aires,AR-B,annual,2016,gas oil combustion consumption by railway transport,27.05388,TJ,CO2,74100.0,kg/TJ,2004692.508,kg -846a650b-3fd4-3993-bf67-c045593b5e7a,SESCO,II.2.1,Buenos Aires,AR-B,annual,2016,gas oil combustion consumption by railway transport,27.05388,TJ,CH4,3.9,kg/TJ,105.510132,kg -846a650b-3fd4-3993-bf67-c045593b5e7a,SESCO,II.2.1,Buenos Aires,AR-B,annual,2016,gas oil combustion consumption by railway transport,27.05388,TJ,N2O,3.9,kg/TJ,105.510132,kg -d950a83e-4fda-3e89-94bf-4e806d6f5273,SESCO,II.2.1,La Pampa,AR-L,annual,2016,gas oil combustion consumption by railway transport,5.20128,TJ,CO2,74100.0,kg/TJ,385414.848,kg -7a28ed90-e260-39b5-a28f-6ab25e36abb7,SESCO,II.2.1,La Pampa,AR-L,annual,2016,gas oil combustion consumption by railway transport,5.20128,TJ,CH4,3.9,kg/TJ,20.284992,kg -7a28ed90-e260-39b5-a28f-6ab25e36abb7,SESCO,II.2.1,La Pampa,AR-L,annual,2016,gas oil combustion consumption by railway transport,5.20128,TJ,N2O,3.9,kg/TJ,20.284992,kg -0b448b50-047a-3f1a-84da-e185ceb3fd47,SESCO,II.2.1,Santa Fe,AR-S,annual,2016,gas oil combustion consumption by railway transport,31.93008,TJ,CO2,74100.0,kg/TJ,2366018.928,kg -2d48a9fb-d025-3bd4-b27f-f584037df6a8,SESCO,II.2.1,Santa Fe,AR-S,annual,2016,gas oil combustion consumption by railway transport,31.93008,TJ,CH4,3.9,kg/TJ,124.527312,kg -2d48a9fb-d025-3bd4-b27f-f584037df6a8,SESCO,II.2.1,Santa Fe,AR-S,annual,2016,gas oil combustion consumption by railway transport,31.93008,TJ,N2O,3.9,kg/TJ,124.527312,kg -e21833d2-fd98-3f84-be7c-a5cc1064a013,SESCO,II.2.1,Santiago del Estero,AR-G,annual,2016,gas oil combustion consumption by railway transport,2.60064,TJ,CO2,74100.0,kg/TJ,192707.424,kg -713b80d2-506d-3a57-9c97-393491820477,SESCO,II.2.1,Santiago del Estero,AR-G,annual,2016,gas oil combustion consumption by railway transport,2.60064,TJ,CH4,3.9,kg/TJ,10.142496,kg -713b80d2-506d-3a57-9c97-393491820477,SESCO,II.2.1,Santiago del Estero,AR-G,annual,2016,gas oil combustion consumption by railway transport,2.60064,TJ,N2O,3.9,kg/TJ,10.142496,kg -1bc38164-ece8-3fd8-af8e-54a85306d657,SESCO,II.1.1,Buenos Aires,AR-B,annual,2016,gas oil combustion consumption by freight transport,1717.07256,TJ,CO2,74100.0,kg/TJ,127235076.69600001,kg -6ab98fb9-9a85-3595-b9c1-5922397be97b,SESCO,II.1.1,Buenos Aires,AR-B,annual,2016,gas oil combustion consumption by freight transport,1717.07256,TJ,CH4,3.9,kg/TJ,6696.582984,kg -6ab98fb9-9a85-3595-b9c1-5922397be97b,SESCO,II.1.1,Buenos Aires,AR-B,annual,2016,gas oil combustion consumption by freight transport,1717.07256,TJ,N2O,3.9,kg/TJ,6696.582984,kg -413c19e1-ec1a-35c1-b710-c59127294c04,SESCO,II.1.1,Capital Federal,AR-C,annual,2016,gas oil combustion consumption by freight transport,235.64687999999998,TJ,CO2,74100.0,kg/TJ,17461433.808,kg -62bc3bb9-637e-33dd-a992-63f06dac7363,SESCO,II.1.1,Capital Federal,AR-C,annual,2016,gas oil combustion consumption by freight transport,235.64687999999998,TJ,CH4,3.9,kg/TJ,919.0228319999999,kg -62bc3bb9-637e-33dd-a992-63f06dac7363,SESCO,II.1.1,Capital Federal,AR-C,annual,2016,gas oil combustion consumption by freight transport,235.64687999999998,TJ,N2O,3.9,kg/TJ,919.0228319999999,kg -2e65dd8c-191b-33e8-8bd1-9d9db0afe48c,SESCO,II.1.1,Catamarca,AR-K,annual,2016,gas oil combustion consumption by freight transport,38.14272,TJ,CO2,74100.0,kg/TJ,2826375.5519999997,kg -89a42ce3-1880-3924-b1d4-f5962fc3ae57,SESCO,II.1.1,Catamarca,AR-K,annual,2016,gas oil combustion consumption by freight transport,38.14272,TJ,CH4,3.9,kg/TJ,148.75660799999997,kg -89a42ce3-1880-3924-b1d4-f5962fc3ae57,SESCO,II.1.1,Catamarca,AR-K,annual,2016,gas oil combustion consumption by freight transport,38.14272,TJ,N2O,3.9,kg/TJ,148.75660799999997,kg -0c54da9a-8bf7-34ea-9420-310fffb758b5,SESCO,II.1.1,Chaco,AR-H,annual,2016,gas oil combustion consumption by freight transport,21.20244,TJ,CO2,74100.0,kg/TJ,1571100.804,kg -2b33ad8a-64b2-38fd-b214-b6e5e8721302,SESCO,II.1.1,Chaco,AR-H,annual,2016,gas oil combustion consumption by freight transport,21.20244,TJ,CH4,3.9,kg/TJ,82.689516,kg -2b33ad8a-64b2-38fd-b214-b6e5e8721302,SESCO,II.1.1,Chaco,AR-H,annual,2016,gas oil combustion consumption by freight transport,21.20244,TJ,N2O,3.9,kg/TJ,82.689516,kg -448cb0d1-dfb9-36a9-a270-ac8a8d65560a,SESCO,II.1.1,Chubut,AR-U,annual,2016,gas oil combustion consumption by freight transport,19.1436,TJ,CO2,74100.0,kg/TJ,1418540.76,kg -5940314e-1012-32a2-9aa8-a80e9102bb3e,SESCO,II.1.1,Chubut,AR-U,annual,2016,gas oil combustion consumption by freight transport,19.1436,TJ,CH4,3.9,kg/TJ,74.66004,kg -5940314e-1012-32a2-9aa8-a80e9102bb3e,SESCO,II.1.1,Chubut,AR-U,annual,2016,gas oil combustion consumption by freight transport,19.1436,TJ,N2O,3.9,kg/TJ,74.66004,kg -d9332edc-f372-35ce-85f5-1c52e0def98a,SESCO,II.1.1,Corrientes,AR-W,annual,2016,gas oil combustion consumption by freight transport,74.66004,TJ,CO2,74100.0,kg/TJ,5532308.964,kg -512114df-4cd2-3f88-bd86-350659c04a45,SESCO,II.1.1,Corrientes,AR-W,annual,2016,gas oil combustion consumption by freight transport,74.66004,TJ,CH4,3.9,kg/TJ,291.174156,kg -512114df-4cd2-3f88-bd86-350659c04a45,SESCO,II.1.1,Corrientes,AR-W,annual,2016,gas oil combustion consumption by freight transport,74.66004,TJ,N2O,3.9,kg/TJ,291.174156,kg -750f2b19-59e1-3b2a-85dc-52306e077902,SESCO,II.1.1,Córdoba,AR-X,annual,2016,gas oil combustion consumption by freight transport,288.30984,TJ,CO2,74100.0,kg/TJ,21363759.144,kg -6807dd41-f2cd-3b6d-ad7a-71146b4e6320,SESCO,II.1.1,Córdoba,AR-X,annual,2016,gas oil combustion consumption by freight transport,288.30984,TJ,CH4,3.9,kg/TJ,1124.408376,kg -6807dd41-f2cd-3b6d-ad7a-71146b4e6320,SESCO,II.1.1,Córdoba,AR-X,annual,2016,gas oil combustion consumption by freight transport,288.30984,TJ,N2O,3.9,kg/TJ,1124.408376,kg -778a1a84-1ba0-3535-adab-ccd2ca861510,SESCO,II.1.1,Entre Rios,AR-E,annual,2016,gas oil combustion consumption by freight transport,130.06812,TJ,CO2,74100.0,kg/TJ,9638047.692,kg -a5c5329e-a694-3ea5-a0c4-7cd043da9dbf,SESCO,II.1.1,Entre Rios,AR-E,annual,2016,gas oil combustion consumption by freight transport,130.06812,TJ,CH4,3.9,kg/TJ,507.26566799999995,kg -a5c5329e-a694-3ea5-a0c4-7cd043da9dbf,SESCO,II.1.1,Entre Rios,AR-E,annual,2016,gas oil combustion consumption by freight transport,130.06812,TJ,N2O,3.9,kg/TJ,507.26566799999995,kg -ccff8922-dc61-360c-a83d-bce60e54ee31,SESCO,II.1.1,Formosa,AR-P,annual,2016,gas oil combustion consumption by freight transport,4.11768,TJ,CO2,74100.0,kg/TJ,305120.088,kg -f1362575-8411-311c-b647-c8be0ad34334,SESCO,II.1.1,Formosa,AR-P,annual,2016,gas oil combustion consumption by freight transport,4.11768,TJ,CH4,3.9,kg/TJ,16.058951999999998,kg -f1362575-8411-311c-b647-c8be0ad34334,SESCO,II.1.1,Formosa,AR-P,annual,2016,gas oil combustion consumption by freight transport,4.11768,TJ,N2O,3.9,kg/TJ,16.058951999999998,kg -71ad4d26-ecdd-30d8-a988-ee2472c8a846,SESCO,II.1.1,La Pampa,AR-L,annual,2016,gas oil combustion consumption by freight transport,22.43052,TJ,CO2,74100.0,kg/TJ,1662101.5320000001,kg -cb3af6a2-8335-3779-b6df-7870b29f6784,SESCO,II.1.1,La Pampa,AR-L,annual,2016,gas oil combustion consumption by freight transport,22.43052,TJ,CH4,3.9,kg/TJ,87.479028,kg -cb3af6a2-8335-3779-b6df-7870b29f6784,SESCO,II.1.1,La Pampa,AR-L,annual,2016,gas oil combustion consumption by freight transport,22.43052,TJ,N2O,3.9,kg/TJ,87.479028,kg -c6b7eb5d-0966-337f-a456-944f6e7dbbcd,SESCO,II.1.1,La Rioja,AR-F,annual,2016,gas oil combustion consumption by freight transport,1.5531599999999999,TJ,CO2,74100.0,kg/TJ,115089.15599999999,kg -95efcec2-a892-3636-813f-edc556a136ff,SESCO,II.1.1,La Rioja,AR-F,annual,2016,gas oil combustion consumption by freight transport,1.5531599999999999,TJ,CH4,3.9,kg/TJ,6.0573239999999995,kg -95efcec2-a892-3636-813f-edc556a136ff,SESCO,II.1.1,La Rioja,AR-F,annual,2016,gas oil combustion consumption by freight transport,1.5531599999999999,TJ,N2O,3.9,kg/TJ,6.0573239999999995,kg -1bd8dc5a-b4d0-3747-84e2-81bcaf31222b,SESCO,II.1.1,Mendoza,AR-M,annual,2016,gas oil combustion consumption by freight transport,26.187,TJ,CO2,74100.0,kg/TJ,1940456.7000000002,kg -4916cc34-6030-32df-8236-cb2e88235bbd,SESCO,II.1.1,Mendoza,AR-M,annual,2016,gas oil combustion consumption by freight transport,26.187,TJ,CH4,3.9,kg/TJ,102.1293,kg -4916cc34-6030-32df-8236-cb2e88235bbd,SESCO,II.1.1,Mendoza,AR-M,annual,2016,gas oil combustion consumption by freight transport,26.187,TJ,N2O,3.9,kg/TJ,102.1293,kg -7e631e93-6bea-3d0e-8a94-7722d48ae398,SESCO,II.1.1,Misiones,AR-N,annual,2016,gas oil combustion consumption by freight transport,27.48732,TJ,CO2,74100.0,kg/TJ,2036810.412,kg -ccc2d713-b12e-354e-af41-ee18a9039998,SESCO,II.1.1,Misiones,AR-N,annual,2016,gas oil combustion consumption by freight transport,27.48732,TJ,CH4,3.9,kg/TJ,107.200548,kg -ccc2d713-b12e-354e-af41-ee18a9039998,SESCO,II.1.1,Misiones,AR-N,annual,2016,gas oil combustion consumption by freight transport,27.48732,TJ,N2O,3.9,kg/TJ,107.200548,kg -8e1719d5-afad-395c-a11f-6b3fb8b1a13c,SESCO,II.1.1,Neuquén,AR-Q,annual,2016,gas oil combustion consumption by freight transport,0.32508,TJ,CO2,74100.0,kg/TJ,24088.428,kg -cd168156-5aa7-349b-99d4-b59f077ac82a,SESCO,II.1.1,Neuquén,AR-Q,annual,2016,gas oil combustion consumption by freight transport,0.32508,TJ,CH4,3.9,kg/TJ,1.267812,kg -cd168156-5aa7-349b-99d4-b59f077ac82a,SESCO,II.1.1,Neuquén,AR-Q,annual,2016,gas oil combustion consumption by freight transport,0.32508,TJ,N2O,3.9,kg/TJ,1.267812,kg -166f64bb-1656-3da4-bd42-b34966b51d7a,SESCO,II.1.1,Rio Negro,AR-R,annual,2016,gas oil combustion consumption by freight transport,86.18232,TJ,CO2,74100.0,kg/TJ,6386109.9120000005,kg -5c735a50-290c-36bf-beab-92ec68c51601,SESCO,II.1.1,Rio Negro,AR-R,annual,2016,gas oil combustion consumption by freight transport,86.18232,TJ,CH4,3.9,kg/TJ,336.111048,kg -5c735a50-290c-36bf-beab-92ec68c51601,SESCO,II.1.1,Rio Negro,AR-R,annual,2016,gas oil combustion consumption by freight transport,86.18232,TJ,N2O,3.9,kg/TJ,336.111048,kg -c925808b-5e63-3966-af86-469fe9504073,SESCO,II.1.1,Salta,AR-A,annual,2016,gas oil combustion consumption by freight transport,23.08068,TJ,CO2,74100.0,kg/TJ,1710278.388,kg -13e4bd10-7aa4-35d4-9e8c-6fdac63b824c,SESCO,II.1.1,Salta,AR-A,annual,2016,gas oil combustion consumption by freight transport,23.08068,TJ,CH4,3.9,kg/TJ,90.014652,kg -13e4bd10-7aa4-35d4-9e8c-6fdac63b824c,SESCO,II.1.1,Salta,AR-A,annual,2016,gas oil combustion consumption by freight transport,23.08068,TJ,N2O,3.9,kg/TJ,90.014652,kg -367a0d23-a029-3e90-ab1d-937dfaa980a9,SESCO,II.1.1,San Juan,AR-J,annual,2016,gas oil combustion consumption by freight transport,12.8226,TJ,CO2,74100.0,kg/TJ,950154.6599999999,kg -ef045d02-c2fb-384f-8927-d58c21b265e1,SESCO,II.1.1,San Juan,AR-J,annual,2016,gas oil combustion consumption by freight transport,12.8226,TJ,CH4,3.9,kg/TJ,50.00814,kg -ef045d02-c2fb-384f-8927-d58c21b265e1,SESCO,II.1.1,San Juan,AR-J,annual,2016,gas oil combustion consumption by freight transport,12.8226,TJ,N2O,3.9,kg/TJ,50.00814,kg -22422fbe-71e2-3780-b0e6-9a1a0029881d,SESCO,II.1.1,San Luis,AR-D,annual,2016,gas oil combustion consumption by freight transport,84.84588,TJ,CO2,74100.0,kg/TJ,6287079.708,kg -a631eff9-8971-3ded-b636-83450ef5147f,SESCO,II.1.1,San Luis,AR-D,annual,2016,gas oil combustion consumption by freight transport,84.84588,TJ,CH4,3.9,kg/TJ,330.89893199999995,kg -a631eff9-8971-3ded-b636-83450ef5147f,SESCO,II.1.1,San Luis,AR-D,annual,2016,gas oil combustion consumption by freight transport,84.84588,TJ,N2O,3.9,kg/TJ,330.89893199999995,kg -d697c3c9-f655-3d13-9423-8eb27b8e0cc3,SESCO,II.1.1,Santa Fe,AR-S,annual,2016,gas oil combustion consumption by freight transport,556.9704,TJ,CO2,74100.0,kg/TJ,41271506.64,kg -38645e12-803f-3523-884c-5472a88b508d,SESCO,II.1.1,Santa Fe,AR-S,annual,2016,gas oil combustion consumption by freight transport,556.9704,TJ,CH4,3.9,kg/TJ,2172.18456,kg -38645e12-803f-3523-884c-5472a88b508d,SESCO,II.1.1,Santa Fe,AR-S,annual,2016,gas oil combustion consumption by freight transport,556.9704,TJ,N2O,3.9,kg/TJ,2172.18456,kg -ebdb40e2-07cc-36b5-9a91-b65355083c1f,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2016,gas oil combustion consumption by freight transport,37.60092,TJ,CO2,74100.0,kg/TJ,2786228.1720000003,kg -765ee279-37e5-3712-958a-0b60bffb97c9,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2016,gas oil combustion consumption by freight transport,37.60092,TJ,CH4,3.9,kg/TJ,146.643588,kg -765ee279-37e5-3712-958a-0b60bffb97c9,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2016,gas oil combustion consumption by freight transport,37.60092,TJ,N2O,3.9,kg/TJ,146.643588,kg -531a02f9-53f1-3b75-bbb3-a3668a8ad0fb,SESCO,II.1.1,Tucuman,AR-T,annual,2016,gas oil combustion consumption by freight transport,46.08912,TJ,CO2,74100.0,kg/TJ,3415203.792,kg -60d130cc-116a-3dc8-9777-d2e6e5fa4e17,SESCO,II.1.1,Tucuman,AR-T,annual,2016,gas oil combustion consumption by freight transport,46.08912,TJ,CH4,3.9,kg/TJ,179.747568,kg -60d130cc-116a-3dc8-9777-d2e6e5fa4e17,SESCO,II.1.1,Tucuman,AR-T,annual,2016,gas oil combustion consumption by freight transport,46.08912,TJ,N2O,3.9,kg/TJ,179.747568,kg -82ccb204-0124-373f-b0a6-63e417bb38c6,SESCO,II.1.1,Buenos Aires,AR-B,annual,2016,gas oil combustion consumption by freight transport,65.5578,TJ,CO2,74100.0,kg/TJ,4857832.98,kg -99051b36-196b-3862-87fd-29a80007d464,SESCO,II.1.1,Buenos Aires,AR-B,annual,2016,gas oil combustion consumption by freight transport,65.5578,TJ,CH4,3.9,kg/TJ,255.67542,kg -99051b36-196b-3862-87fd-29a80007d464,SESCO,II.1.1,Buenos Aires,AR-B,annual,2016,gas oil combustion consumption by freight transport,65.5578,TJ,N2O,3.9,kg/TJ,255.67542,kg -70463576-b76b-3910-a612-9fefb7ac9905,SESCO,II.1.1,Capital Federal,AR-C,annual,2016,gas oil combustion consumption by freight transport,17.662679999999998,TJ,CO2,74100.0,kg/TJ,1308804.5879999998,kg -e0480165-60eb-395b-ac53-a6cd79e55071,SESCO,II.1.1,Capital Federal,AR-C,annual,2016,gas oil combustion consumption by freight transport,17.662679999999998,TJ,CH4,3.9,kg/TJ,68.884452,kg -e0480165-60eb-395b-ac53-a6cd79e55071,SESCO,II.1.1,Capital Federal,AR-C,annual,2016,gas oil combustion consumption by freight transport,17.662679999999998,TJ,N2O,3.9,kg/TJ,68.884452,kg -9e6bb34e-b818-3b6a-8c14-d80f8d52bdc5,SESCO,II.1.1,Catamarca,AR-K,annual,2016,gas oil combustion consumption by freight transport,0.28896,TJ,CO2,74100.0,kg/TJ,21411.935999999998,kg -2aeca832-1095-385a-8e32-082f13ecca68,SESCO,II.1.1,Catamarca,AR-K,annual,2016,gas oil combustion consumption by freight transport,0.28896,TJ,CH4,3.9,kg/TJ,1.126944,kg -2aeca832-1095-385a-8e32-082f13ecca68,SESCO,II.1.1,Catamarca,AR-K,annual,2016,gas oil combustion consumption by freight transport,0.28896,TJ,N2O,3.9,kg/TJ,1.126944,kg -67a60d13-020b-3323-ac21-2e3818aff67a,SESCO,II.1.1,Chaco,AR-H,annual,2016,gas oil combustion consumption by freight transport,1.15584,TJ,CO2,74100.0,kg/TJ,85647.74399999999,kg -cc3386e0-37ce-3ba8-964c-d99385034fb6,SESCO,II.1.1,Chaco,AR-H,annual,2016,gas oil combustion consumption by freight transport,1.15584,TJ,CH4,3.9,kg/TJ,4.507776,kg -cc3386e0-37ce-3ba8-964c-d99385034fb6,SESCO,II.1.1,Chaco,AR-H,annual,2016,gas oil combustion consumption by freight transport,1.15584,TJ,N2O,3.9,kg/TJ,4.507776,kg -3968bdb6-698a-3a3c-a398-1404b3d63786,SESCO,II.1.1,Chubut,AR-U,annual,2016,gas oil combustion consumption by freight transport,2.96184,TJ,CO2,74100.0,kg/TJ,219472.344,kg -ada6965d-fbf6-3ad3-8775-fd61f39b3377,SESCO,II.1.1,Chubut,AR-U,annual,2016,gas oil combustion consumption by freight transport,2.96184,TJ,CH4,3.9,kg/TJ,11.551176,kg -ada6965d-fbf6-3ad3-8775-fd61f39b3377,SESCO,II.1.1,Chubut,AR-U,annual,2016,gas oil combustion consumption by freight transport,2.96184,TJ,N2O,3.9,kg/TJ,11.551176,kg -4d7862dd-4989-3705-8eea-0695906cb013,SESCO,II.1.1,Corrientes,AR-W,annual,2016,gas oil combustion consumption by freight transport,3.28692,TJ,CO2,74100.0,kg/TJ,243560.772,kg -915894d3-0f20-346a-9fc5-ab5172fce7a9,SESCO,II.1.1,Corrientes,AR-W,annual,2016,gas oil combustion consumption by freight transport,3.28692,TJ,CH4,3.9,kg/TJ,12.818988,kg -915894d3-0f20-346a-9fc5-ab5172fce7a9,SESCO,II.1.1,Corrientes,AR-W,annual,2016,gas oil combustion consumption by freight transport,3.28692,TJ,N2O,3.9,kg/TJ,12.818988,kg -8b3198b0-61b7-37df-84e1-b552912121af,SESCO,II.1.1,Córdoba,AR-X,annual,2016,gas oil combustion consumption by freight transport,8.41596,TJ,CO2,74100.0,kg/TJ,623622.636,kg -76142f5a-1dde-3785-9766-e9ba0f1610ce,SESCO,II.1.1,Córdoba,AR-X,annual,2016,gas oil combustion consumption by freight transport,8.41596,TJ,CH4,3.9,kg/TJ,32.822244,kg -76142f5a-1dde-3785-9766-e9ba0f1610ce,SESCO,II.1.1,Córdoba,AR-X,annual,2016,gas oil combustion consumption by freight transport,8.41596,TJ,N2O,3.9,kg/TJ,32.822244,kg -8e4d4e30-7673-3731-8d36-3ffac7956cee,SESCO,II.1.1,Entre Rios,AR-E,annual,2016,gas oil combustion consumption by freight transport,3.64812,TJ,CO2,74100.0,kg/TJ,270325.692,kg -21ebb885-0617-3094-9839-cb4873b53117,SESCO,II.1.1,Entre Rios,AR-E,annual,2016,gas oil combustion consumption by freight transport,3.64812,TJ,CH4,3.9,kg/TJ,14.227668,kg -21ebb885-0617-3094-9839-cb4873b53117,SESCO,II.1.1,Entre Rios,AR-E,annual,2016,gas oil combustion consumption by freight transport,3.64812,TJ,N2O,3.9,kg/TJ,14.227668,kg -8bea11b5-260a-31e0-9b47-d09d467faf65,SESCO,II.1.1,La Pampa,AR-L,annual,2016,gas oil combustion consumption by freight transport,0.5418,TJ,CO2,74100.0,kg/TJ,40147.38,kg -333d2d89-a037-3c59-9930-cb4c6875fb58,SESCO,II.1.1,La Pampa,AR-L,annual,2016,gas oil combustion consumption by freight transport,0.5418,TJ,CH4,3.9,kg/TJ,2.1130199999999997,kg -333d2d89-a037-3c59-9930-cb4c6875fb58,SESCO,II.1.1,La Pampa,AR-L,annual,2016,gas oil combustion consumption by freight transport,0.5418,TJ,N2O,3.9,kg/TJ,2.1130199999999997,kg -f50c4d5d-b8e1-3452-b402-b4f68dab72dd,SESCO,II.1.1,La Rioja,AR-F,annual,2016,gas oil combustion consumption by freight transport,0.21672,TJ,CO2,74100.0,kg/TJ,16058.952,kg -f6d41ec4-5e64-3a97-98a5-1b3163bf62a4,SESCO,II.1.1,La Rioja,AR-F,annual,2016,gas oil combustion consumption by freight transport,0.21672,TJ,CH4,3.9,kg/TJ,0.845208,kg -f6d41ec4-5e64-3a97-98a5-1b3163bf62a4,SESCO,II.1.1,La Rioja,AR-F,annual,2016,gas oil combustion consumption by freight transport,0.21672,TJ,N2O,3.9,kg/TJ,0.845208,kg -c1b344f6-d1a6-3422-b99f-311077f011f5,SESCO,II.1.1,Mendoza,AR-M,annual,2016,gas oil combustion consumption by freight transport,0.10836,TJ,CO2,74100.0,kg/TJ,8029.476,kg -457dda64-64fc-3918-9756-c397c0a16169,SESCO,II.1.1,Mendoza,AR-M,annual,2016,gas oil combustion consumption by freight transport,0.10836,TJ,CH4,3.9,kg/TJ,0.422604,kg -457dda64-64fc-3918-9756-c397c0a16169,SESCO,II.1.1,Mendoza,AR-M,annual,2016,gas oil combustion consumption by freight transport,0.10836,TJ,N2O,3.9,kg/TJ,0.422604,kg -890f66fb-48c7-3d14-88fd-375e8290f8ba,SESCO,II.1.1,Misiones,AR-N,annual,2016,gas oil combustion consumption by freight transport,0.8307599999999999,TJ,CO2,74100.0,kg/TJ,61559.316,kg -f29bd6d2-b1f8-3f20-808d-9c607613b62d,SESCO,II.1.1,Misiones,AR-N,annual,2016,gas oil combustion consumption by freight transport,0.8307599999999999,TJ,CH4,3.9,kg/TJ,3.2399639999999996,kg -f29bd6d2-b1f8-3f20-808d-9c607613b62d,SESCO,II.1.1,Misiones,AR-N,annual,2016,gas oil combustion consumption by freight transport,0.8307599999999999,TJ,N2O,3.9,kg/TJ,3.2399639999999996,kg -72f79e4f-cc41-3c96-90ab-f636da9fd693,SESCO,II.1.1,Neuquén,AR-Q,annual,2016,gas oil combustion consumption by freight transport,0.03612,TJ,CO2,74100.0,kg/TJ,2676.4919999999997,kg -a2c1117f-32e8-359f-bc8f-87f84ddd7b5b,SESCO,II.1.1,Neuquén,AR-Q,annual,2016,gas oil combustion consumption by freight transport,0.03612,TJ,CH4,3.9,kg/TJ,0.140868,kg -a2c1117f-32e8-359f-bc8f-87f84ddd7b5b,SESCO,II.1.1,Neuquén,AR-Q,annual,2016,gas oil combustion consumption by freight transport,0.03612,TJ,N2O,3.9,kg/TJ,0.140868,kg -01a18194-ee5d-3e55-9f47-ba31040304ac,SESCO,II.1.1,Rio Negro,AR-R,annual,2016,gas oil combustion consumption by freight transport,1.87824,TJ,CO2,74100.0,kg/TJ,139177.584,kg -fe7c9d56-be2a-3213-be8a-7b33995face3,SESCO,II.1.1,Rio Negro,AR-R,annual,2016,gas oil combustion consumption by freight transport,1.87824,TJ,CH4,3.9,kg/TJ,7.325136,kg -fe7c9d56-be2a-3213-be8a-7b33995face3,SESCO,II.1.1,Rio Negro,AR-R,annual,2016,gas oil combustion consumption by freight transport,1.87824,TJ,N2O,3.9,kg/TJ,7.325136,kg -5cd0e16f-163c-3a53-a0e0-a0697fe4b69c,SESCO,II.1.1,San Juan,AR-J,annual,2016,gas oil combustion consumption by freight transport,0.43344,TJ,CO2,74100.0,kg/TJ,32117.904,kg -5e0ed554-cb39-3f88-862e-c79e577bf25b,SESCO,II.1.1,San Juan,AR-J,annual,2016,gas oil combustion consumption by freight transport,0.43344,TJ,CH4,3.9,kg/TJ,1.690416,kg -5e0ed554-cb39-3f88-862e-c79e577bf25b,SESCO,II.1.1,San Juan,AR-J,annual,2016,gas oil combustion consumption by freight transport,0.43344,TJ,N2O,3.9,kg/TJ,1.690416,kg -42f8f147-e9c5-3509-817f-c0bc625fc14a,SESCO,II.1.1,San Luis,AR-D,annual,2016,gas oil combustion consumption by freight transport,1.48092,TJ,CO2,74100.0,kg/TJ,109736.172,kg -327d77fe-ac4d-3c3c-8a25-3e072317700f,SESCO,II.1.1,San Luis,AR-D,annual,2016,gas oil combustion consumption by freight transport,1.48092,TJ,CH4,3.9,kg/TJ,5.775588,kg -327d77fe-ac4d-3c3c-8a25-3e072317700f,SESCO,II.1.1,San Luis,AR-D,annual,2016,gas oil combustion consumption by freight transport,1.48092,TJ,N2O,3.9,kg/TJ,5.775588,kg -98936536-2ae7-321c-b5f2-4d69e2371727,SESCO,II.1.1,Santa Fe,AR-S,annual,2016,gas oil combustion consumption by freight transport,13.3644,TJ,CO2,74100.0,kg/TJ,990302.04,kg -c68b3d0d-46f1-3c24-877b-ba5f236aaddb,SESCO,II.1.1,Santa Fe,AR-S,annual,2016,gas oil combustion consumption by freight transport,13.3644,TJ,CH4,3.9,kg/TJ,52.121159999999996,kg -c68b3d0d-46f1-3c24-877b-ba5f236aaddb,SESCO,II.1.1,Santa Fe,AR-S,annual,2016,gas oil combustion consumption by freight transport,13.3644,TJ,N2O,3.9,kg/TJ,52.121159999999996,kg -ca406244-8172-39b0-99af-a624f00b1e70,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2016,gas oil combustion consumption by freight transport,0.79464,TJ,CO2,74100.0,kg/TJ,58882.824,kg -28e25b1d-b28d-3f63-8222-25e81195204f,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2016,gas oil combustion consumption by freight transport,0.79464,TJ,CH4,3.9,kg/TJ,3.099096,kg -28e25b1d-b28d-3f63-8222-25e81195204f,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2016,gas oil combustion consumption by freight transport,0.79464,TJ,N2O,3.9,kg/TJ,3.099096,kg -c021b19e-a9f5-3ab7-8709-f4a98c171122,SESCO,II.1.1,Tucuman,AR-T,annual,2016,gas oil combustion consumption by freight transport,0.68628,TJ,CO2,74100.0,kg/TJ,50853.348,kg -ef12b4a6-156e-3826-9bc9-a9db162e2d38,SESCO,II.1.1,Tucuman,AR-T,annual,2016,gas oil combustion consumption by freight transport,0.68628,TJ,CH4,3.9,kg/TJ,2.676492,kg -ef12b4a6-156e-3826-9bc9-a9db162e2d38,SESCO,II.1.1,Tucuman,AR-T,annual,2016,gas oil combustion consumption by freight transport,0.68628,TJ,N2O,3.9,kg/TJ,2.676492,kg -0c836115-5e43-39ad-a581-bee825394999,SESCO,II.1.1,Buenos Aires,AR-B,annual,2016,jet kerosene combustion consumption by freight transport,0.37743599999999994,TJ,CO2,71500.0,kg/TJ,26986.673999999995,kg -6bf78263-32a2-3ed3-9932-0f065d162243,SESCO,II.1.1,Buenos Aires,AR-B,annual,2016,jet kerosene combustion consumption by freight transport,0.37743599999999994,TJ,CH4,0.5,kg/TJ,0.18871799999999997,kg -1d0ad3c9-0f5c-3332-81a6-18a826c27eaf,SESCO,II.1.1,Buenos Aires,AR-B,annual,2016,jet kerosene combustion consumption by freight transport,0.37743599999999994,TJ,N2O,2.0,kg/TJ,0.7548719999999999,kg -b49e7992-91d4-394e-8d1e-a137c020ad30,SESCO,II.1.1,Capital Federal,AR-C,annual,2016,gasoline combustion consumption by public passenger transport,1.0189,TJ,CO2,69300.0,kg/TJ,70609.76999999999,kg -10d86630-2cdd-3ae5-8506-12f86bbedeee,SESCO,II.1.1,Capital Federal,AR-C,annual,2016,gasoline combustion consumption by public passenger transport,1.0189,TJ,CH4,33.0,kg/TJ,33.6237,kg -f081b002-9c4e-361a-8330-8f334881b065,SESCO,II.1.1,Capital Federal,AR-C,annual,2016,gasoline combustion consumption by public passenger transport,1.0189,TJ,N2O,3.2,kg/TJ,3.26048,kg -4f0e15a0-917e-3afa-88d2-4ec59b86fd5d,SESCO,II.1.1,Buenos Aires,AR-B,annual,2016,gas oil combustion consumption by public passenger transport,2169.33108,TJ,CO2,74100.0,kg/TJ,160747433.028,kg -224208f5-3f0c-3a59-9a6b-ac3cc37fba96,SESCO,II.1.1,Buenos Aires,AR-B,annual,2016,gas oil combustion consumption by public passenger transport,2169.33108,TJ,CH4,3.9,kg/TJ,8460.391211999999,kg -224208f5-3f0c-3a59-9a6b-ac3cc37fba96,SESCO,II.1.1,Buenos Aires,AR-B,annual,2016,gas oil combustion consumption by public passenger transport,2169.33108,TJ,N2O,3.9,kg/TJ,8460.391211999999,kg -360c694c-5d57-3ec5-999a-c3081f23e85c,SESCO,II.1.1,Capital Federal,AR-C,annual,2016,gas oil combustion consumption by public passenger transport,633.97824,TJ,CO2,74100.0,kg/TJ,46977787.584,kg -dfce4820-9b77-36c2-856c-65300e60583b,SESCO,II.1.1,Capital Federal,AR-C,annual,2016,gas oil combustion consumption by public passenger transport,633.97824,TJ,CH4,3.9,kg/TJ,2472.515136,kg -dfce4820-9b77-36c2-856c-65300e60583b,SESCO,II.1.1,Capital Federal,AR-C,annual,2016,gas oil combustion consumption by public passenger transport,633.97824,TJ,N2O,3.9,kg/TJ,2472.515136,kg -c8a1f203-1b34-3eb3-b447-11b85dcb0d21,SESCO,II.1.1,Catamarca,AR-K,annual,2016,gas oil combustion consumption by public passenger transport,0.79464,TJ,CO2,74100.0,kg/TJ,58882.824,kg -be9e595c-2875-3052-9025-c0284bd58968,SESCO,II.1.1,Catamarca,AR-K,annual,2016,gas oil combustion consumption by public passenger transport,0.79464,TJ,CH4,3.9,kg/TJ,3.099096,kg -be9e595c-2875-3052-9025-c0284bd58968,SESCO,II.1.1,Catamarca,AR-K,annual,2016,gas oil combustion consumption by public passenger transport,0.79464,TJ,N2O,3.9,kg/TJ,3.099096,kg -2d2393f2-9bf8-3df8-8971-7620be341900,SESCO,II.1.1,Chaco,AR-H,annual,2016,gas oil combustion consumption by public passenger transport,0.5418,TJ,CO2,74100.0,kg/TJ,40147.38,kg -9deddbf3-06c6-3ff7-be4f-09086c5ebeaf,SESCO,II.1.1,Chaco,AR-H,annual,2016,gas oil combustion consumption by public passenger transport,0.5418,TJ,CH4,3.9,kg/TJ,2.1130199999999997,kg -9deddbf3-06c6-3ff7-be4f-09086c5ebeaf,SESCO,II.1.1,Chaco,AR-H,annual,2016,gas oil combustion consumption by public passenger transport,0.5418,TJ,N2O,3.9,kg/TJ,2.1130199999999997,kg -21093fe2-7448-304e-a290-96b9688341f6,SESCO,II.1.1,Chubut,AR-U,annual,2016,gas oil combustion consumption by public passenger transport,14.59248,TJ,CO2,74100.0,kg/TJ,1081302.768,kg -e9be97f2-8df0-3fdc-a973-b272cf24d723,SESCO,II.1.1,Chubut,AR-U,annual,2016,gas oil combustion consumption by public passenger transport,14.59248,TJ,CH4,3.9,kg/TJ,56.910672,kg -e9be97f2-8df0-3fdc-a973-b272cf24d723,SESCO,II.1.1,Chubut,AR-U,annual,2016,gas oil combustion consumption by public passenger transport,14.59248,TJ,N2O,3.9,kg/TJ,56.910672,kg -b57b7a47-b0b8-3afc-a76e-67cbd6512b37,SESCO,II.1.1,Corrientes,AR-W,annual,2016,gas oil combustion consumption by public passenger transport,2.6367599999999998,TJ,CO2,74100.0,kg/TJ,195383.916,kg -6bbf126c-7a15-39cb-aaad-49ddd0fecf8c,SESCO,II.1.1,Corrientes,AR-W,annual,2016,gas oil combustion consumption by public passenger transport,2.6367599999999998,TJ,CH4,3.9,kg/TJ,10.283363999999999,kg -6bbf126c-7a15-39cb-aaad-49ddd0fecf8c,SESCO,II.1.1,Corrientes,AR-W,annual,2016,gas oil combustion consumption by public passenger transport,2.6367599999999998,TJ,N2O,3.9,kg/TJ,10.283363999999999,kg -8823b6bb-69c3-33ca-9026-4a11cb909df5,SESCO,II.1.1,Córdoba,AR-X,annual,2016,gas oil combustion consumption by public passenger transport,96.47652,TJ,CO2,74100.0,kg/TJ,7148910.131999999,kg -1e0e1e0f-d789-3496-bd47-1acdcacd0f97,SESCO,II.1.1,Córdoba,AR-X,annual,2016,gas oil combustion consumption by public passenger transport,96.47652,TJ,CH4,3.9,kg/TJ,376.258428,kg -1e0e1e0f-d789-3496-bd47-1acdcacd0f97,SESCO,II.1.1,Córdoba,AR-X,annual,2016,gas oil combustion consumption by public passenger transport,96.47652,TJ,N2O,3.9,kg/TJ,376.258428,kg -e5098f28-dbe4-37e5-a551-8526ae688230,SESCO,II.1.1,Entre Rios,AR-E,annual,2016,gas oil combustion consumption by public passenger transport,50.89308,TJ,CO2,74100.0,kg/TJ,3771177.2279999997,kg -7cd2c88e-6eaf-3eea-a5ca-0f478caa5d34,SESCO,II.1.1,Entre Rios,AR-E,annual,2016,gas oil combustion consumption by public passenger transport,50.89308,TJ,CH4,3.9,kg/TJ,198.48301199999997,kg -7cd2c88e-6eaf-3eea-a5ca-0f478caa5d34,SESCO,II.1.1,Entre Rios,AR-E,annual,2016,gas oil combustion consumption by public passenger transport,50.89308,TJ,N2O,3.9,kg/TJ,198.48301199999997,kg -bb89abdd-df1d-3f71-bada-cf9d6cd6db03,SESCO,II.1.1,Formosa,AR-P,annual,2016,gas oil combustion consumption by public passenger transport,0.36119999999999997,TJ,CO2,74100.0,kg/TJ,26764.92,kg -454aa7ee-5023-3d4b-8f5b-bbf0e142d23f,SESCO,II.1.1,Formosa,AR-P,annual,2016,gas oil combustion consumption by public passenger transport,0.36119999999999997,TJ,CH4,3.9,kg/TJ,1.40868,kg -454aa7ee-5023-3d4b-8f5b-bbf0e142d23f,SESCO,II.1.1,Formosa,AR-P,annual,2016,gas oil combustion consumption by public passenger transport,0.36119999999999997,TJ,N2O,3.9,kg/TJ,1.40868,kg -c5e1b29b-622a-324d-b245-affe0fa8206f,SESCO,II.1.1,La Pampa,AR-L,annual,2016,gas oil combustion consumption by public passenger transport,3.64812,TJ,CO2,74100.0,kg/TJ,270325.692,kg -bfe47d1d-bfb0-370f-be61-060da7fea084,SESCO,II.1.1,La Pampa,AR-L,annual,2016,gas oil combustion consumption by public passenger transport,3.64812,TJ,CH4,3.9,kg/TJ,14.227668,kg -bfe47d1d-bfb0-370f-be61-060da7fea084,SESCO,II.1.1,La Pampa,AR-L,annual,2016,gas oil combustion consumption by public passenger transport,3.64812,TJ,N2O,3.9,kg/TJ,14.227668,kg -c87cd4e3-b98d-367a-a9d0-04537f69367f,SESCO,II.1.1,Mendoza,AR-M,annual,2016,gas oil combustion consumption by public passenger transport,0.68628,TJ,CO2,74100.0,kg/TJ,50853.348,kg -6f760926-dc94-3879-b646-3eb4686153c5,SESCO,II.1.1,Mendoza,AR-M,annual,2016,gas oil combustion consumption by public passenger transport,0.68628,TJ,CH4,3.9,kg/TJ,2.676492,kg -6f760926-dc94-3879-b646-3eb4686153c5,SESCO,II.1.1,Mendoza,AR-M,annual,2016,gas oil combustion consumption by public passenger transport,0.68628,TJ,N2O,3.9,kg/TJ,2.676492,kg -7a174182-1f8e-340b-9276-de9defc00513,SESCO,II.1.1,Misiones,AR-N,annual,2016,gas oil combustion consumption by public passenger transport,17.55432,TJ,CO2,74100.0,kg/TJ,1300775.112,kg -b0550759-fec2-31d9-9324-adac028e56c9,SESCO,II.1.1,Misiones,AR-N,annual,2016,gas oil combustion consumption by public passenger transport,17.55432,TJ,CH4,3.9,kg/TJ,68.461848,kg -b0550759-fec2-31d9-9324-adac028e56c9,SESCO,II.1.1,Misiones,AR-N,annual,2016,gas oil combustion consumption by public passenger transport,17.55432,TJ,N2O,3.9,kg/TJ,68.461848,kg -e81e7444-3aaf-355f-9589-911e50b1982a,SESCO,II.1.1,Rio Negro,AR-R,annual,2016,gas oil combustion consumption by public passenger transport,42.65772,TJ,CO2,74100.0,kg/TJ,3160937.0519999997,kg -a566ea40-66cf-33ff-b9e3-8a860a33d3ce,SESCO,II.1.1,Rio Negro,AR-R,annual,2016,gas oil combustion consumption by public passenger transport,42.65772,TJ,CH4,3.9,kg/TJ,166.365108,kg -a566ea40-66cf-33ff-b9e3-8a860a33d3ce,SESCO,II.1.1,Rio Negro,AR-R,annual,2016,gas oil combustion consumption by public passenger transport,42.65772,TJ,N2O,3.9,kg/TJ,166.365108,kg -3e15c984-2e8f-3f8d-94e0-6e21824cb623,SESCO,II.1.1,San Luis,AR-D,annual,2016,gas oil combustion consumption by public passenger transport,0.36119999999999997,TJ,CO2,74100.0,kg/TJ,26764.92,kg -166bcf8f-cfca-3d06-a441-bf9b914fed2a,SESCO,II.1.1,San Luis,AR-D,annual,2016,gas oil combustion consumption by public passenger transport,0.36119999999999997,TJ,CH4,3.9,kg/TJ,1.40868,kg -166bcf8f-cfca-3d06-a441-bf9b914fed2a,SESCO,II.1.1,San Luis,AR-D,annual,2016,gas oil combustion consumption by public passenger transport,0.36119999999999997,TJ,N2O,3.9,kg/TJ,1.40868,kg -d98d10e2-b574-376d-840d-313d9050e58a,SESCO,II.1.1,Santa Fe,AR-S,annual,2016,gas oil combustion consumption by public passenger transport,81.73956,TJ,CO2,74100.0,kg/TJ,6056901.396,kg -c4ae1704-24a3-3dbe-bfc4-a99697331b93,SESCO,II.1.1,Santa Fe,AR-S,annual,2016,gas oil combustion consumption by public passenger transport,81.73956,TJ,CH4,3.9,kg/TJ,318.78428399999996,kg -c4ae1704-24a3-3dbe-bfc4-a99697331b93,SESCO,II.1.1,Santa Fe,AR-S,annual,2016,gas oil combustion consumption by public passenger transport,81.73956,TJ,N2O,3.9,kg/TJ,318.78428399999996,kg -5fc1f659-bf28-3e80-a7a5-5eb7469e32c9,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2016,gas oil combustion consumption by public passenger transport,2.1672,TJ,CO2,74100.0,kg/TJ,160589.52,kg -fbe0b765-556d-3c5a-9ebb-68c431ce0bd5,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2016,gas oil combustion consumption by public passenger transport,2.1672,TJ,CH4,3.9,kg/TJ,8.452079999999999,kg -fbe0b765-556d-3c5a-9ebb-68c431ce0bd5,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2016,gas oil combustion consumption by public passenger transport,2.1672,TJ,N2O,3.9,kg/TJ,8.452079999999999,kg -b52de9dd-f832-3bc4-828c-b27ffb31d294,SESCO,II.1.1,Tucuman,AR-T,annual,2016,gas oil combustion consumption by public passenger transport,0.03612,TJ,CO2,74100.0,kg/TJ,2676.4919999999997,kg -ed0e8af5-4f73-3538-bbbc-56ce6cf73097,SESCO,II.1.1,Tucuman,AR-T,annual,2016,gas oil combustion consumption by public passenger transport,0.03612,TJ,CH4,3.9,kg/TJ,0.140868,kg -ed0e8af5-4f73-3538-bbbc-56ce6cf73097,SESCO,II.1.1,Tucuman,AR-T,annual,2016,gas oil combustion consumption by public passenger transport,0.03612,TJ,N2O,3.9,kg/TJ,0.140868,kg -f2172b81-63fa-3a21-9b35-0697cebe3183,SESCO,II.1.1,Buenos Aires,AR-B,annual,2016,gas oil combustion consumption by public passenger transport,5.16516,TJ,CO2,74100.0,kg/TJ,382738.356,kg -39d13e98-5cae-3c2b-ada3-a7648aa20306,SESCO,II.1.1,Buenos Aires,AR-B,annual,2016,gas oil combustion consumption by public passenger transport,5.16516,TJ,CH4,3.9,kg/TJ,20.144124,kg -39d13e98-5cae-3c2b-ada3-a7648aa20306,SESCO,II.1.1,Buenos Aires,AR-B,annual,2016,gas oil combustion consumption by public passenger transport,5.16516,TJ,N2O,3.9,kg/TJ,20.144124,kg -618def75-fb62-3d81-b21c-83c07ef1aaf8,SESCO,II.1.1,Capital Federal,AR-C,annual,2016,gas oil combustion consumption by public passenger transport,3.64812,TJ,CO2,74100.0,kg/TJ,270325.692,kg -cf5e0468-2a6c-3357-ad1b-2fe108082be4,SESCO,II.1.1,Capital Federal,AR-C,annual,2016,gas oil combustion consumption by public passenger transport,3.64812,TJ,CH4,3.9,kg/TJ,14.227668,kg -cf5e0468-2a6c-3357-ad1b-2fe108082be4,SESCO,II.1.1,Capital Federal,AR-C,annual,2016,gas oil combustion consumption by public passenger transport,3.64812,TJ,N2O,3.9,kg/TJ,14.227668,kg -99d6cc73-96ef-3908-bdbf-2390d40ac905,SESCO,II.1.1,Chaco,AR-H,annual,2016,gas oil combustion consumption by public passenger transport,0.03612,TJ,CO2,74100.0,kg/TJ,2676.4919999999997,kg -4fd51885-17e1-3f6f-abb6-0b1a2a70f00e,SESCO,II.1.1,Chaco,AR-H,annual,2016,gas oil combustion consumption by public passenger transport,0.03612,TJ,CH4,3.9,kg/TJ,0.140868,kg -4fd51885-17e1-3f6f-abb6-0b1a2a70f00e,SESCO,II.1.1,Chaco,AR-H,annual,2016,gas oil combustion consumption by public passenger transport,0.03612,TJ,N2O,3.9,kg/TJ,0.140868,kg -96fb7b8c-4d56-3313-b78a-794e8ba39676,SESCO,II.1.1,Chubut,AR-U,annual,2016,gas oil combustion consumption by public passenger transport,0.18059999999999998,TJ,CO2,74100.0,kg/TJ,13382.46,kg -f258055d-6d65-36aa-b30d-5e1e3966ba1c,SESCO,II.1.1,Chubut,AR-U,annual,2016,gas oil combustion consumption by public passenger transport,0.18059999999999998,TJ,CH4,3.9,kg/TJ,0.70434,kg -f258055d-6d65-36aa-b30d-5e1e3966ba1c,SESCO,II.1.1,Chubut,AR-U,annual,2016,gas oil combustion consumption by public passenger transport,0.18059999999999998,TJ,N2O,3.9,kg/TJ,0.70434,kg -24829ddb-375e-3ddd-beb2-94459f329f15,SESCO,II.1.1,Corrientes,AR-W,annual,2016,gas oil combustion consumption by public passenger transport,0.07224,TJ,CO2,74100.0,kg/TJ,5352.9839999999995,kg -b091fa72-c11f-3ff4-96a5-8f77cc089c1e,SESCO,II.1.1,Corrientes,AR-W,annual,2016,gas oil combustion consumption by public passenger transport,0.07224,TJ,CH4,3.9,kg/TJ,0.281736,kg -b091fa72-c11f-3ff4-96a5-8f77cc089c1e,SESCO,II.1.1,Corrientes,AR-W,annual,2016,gas oil combustion consumption by public passenger transport,0.07224,TJ,N2O,3.9,kg/TJ,0.281736,kg -10a33825-45eb-3581-8a96-85ad24adcaa5,SESCO,II.1.1,Córdoba,AR-X,annual,2016,gas oil combustion consumption by public passenger transport,0.18059999999999998,TJ,CO2,74100.0,kg/TJ,13382.46,kg -3ac96b27-f4dd-30a7-bbac-b021e2afbe58,SESCO,II.1.1,Córdoba,AR-X,annual,2016,gas oil combustion consumption by public passenger transport,0.18059999999999998,TJ,CH4,3.9,kg/TJ,0.70434,kg -3ac96b27-f4dd-30a7-bbac-b021e2afbe58,SESCO,II.1.1,Córdoba,AR-X,annual,2016,gas oil combustion consumption by public passenger transport,0.18059999999999998,TJ,N2O,3.9,kg/TJ,0.70434,kg -04c78ffd-9cc4-3825-a216-511c3e714d6f,SESCO,II.1.1,La Pampa,AR-L,annual,2016,gas oil combustion consumption by public passenger transport,0.14448,TJ,CO2,74100.0,kg/TJ,10705.967999999999,kg -eaf5d924-0aba-3011-b07b-f8b117d8562c,SESCO,II.1.1,La Pampa,AR-L,annual,2016,gas oil combustion consumption by public passenger transport,0.14448,TJ,CH4,3.9,kg/TJ,0.563472,kg -eaf5d924-0aba-3011-b07b-f8b117d8562c,SESCO,II.1.1,La Pampa,AR-L,annual,2016,gas oil combustion consumption by public passenger transport,0.14448,TJ,N2O,3.9,kg/TJ,0.563472,kg -537218ba-46ce-3de4-813c-d01f0ee430af,SESCO,II.1.1,Rio Negro,AR-R,annual,2016,gas oil combustion consumption by public passenger transport,0.25284,TJ,CO2,74100.0,kg/TJ,18735.444,kg -ed711632-0a7d-3c16-b847-7697f1ba8194,SESCO,II.1.1,Rio Negro,AR-R,annual,2016,gas oil combustion consumption by public passenger transport,0.25284,TJ,CH4,3.9,kg/TJ,0.9860760000000001,kg -ed711632-0a7d-3c16-b847-7697f1ba8194,SESCO,II.1.1,Rio Negro,AR-R,annual,2016,gas oil combustion consumption by public passenger transport,0.25284,TJ,N2O,3.9,kg/TJ,0.9860760000000001,kg -897b7cff-1f36-3b89-85ab-f012eea58a33,SESCO,II.1.1,Santa Fe,AR-S,annual,2016,gas oil combustion consumption by public passenger transport,0.903,TJ,CO2,74100.0,kg/TJ,66912.3,kg -bd75807f-1e01-3e71-b029-62578e461e0e,SESCO,II.1.1,Santa Fe,AR-S,annual,2016,gas oil combustion consumption by public passenger transport,0.903,TJ,CH4,3.9,kg/TJ,3.5217,kg -bd75807f-1e01-3e71-b029-62578e461e0e,SESCO,II.1.1,Santa Fe,AR-S,annual,2016,gas oil combustion consumption by public passenger transport,0.903,TJ,N2O,3.9,kg/TJ,3.5217,kg -e93fd977-9574-34d3-8bd8-52cbcdb4ccc2,SESCO,II.1.1,Chubut,AR-U,annual,2016,gas oil combustion consumption by freight transport,1.3205472,TJ,CO2,74100.0,kg/TJ,97852.54752000001,kg -4214f9a8-7432-378b-9ea9-d1ab262de79b,SESCO,II.1.1,Chubut,AR-U,annual,2016,gas oil combustion consumption by freight transport,1.3205472,TJ,CH4,3.9,kg/TJ,5.15013408,kg -4214f9a8-7432-378b-9ea9-d1ab262de79b,SESCO,II.1.1,Chubut,AR-U,annual,2016,gas oil combustion consumption by freight transport,1.3205472,TJ,N2O,3.9,kg/TJ,5.15013408,kg -2be9dd78-6991-331c-b48f-2884a440528e,SESCO,II.5.1,Buenos Aires,AR-B,annual,2016,gas oil combustion consumption by agriculture machines,530.229810432,TJ,CO2,74100.0,kg/TJ,39290028.9530112,kg -0723c0d1-b636-3451-b4ae-28cc64efd60d,SESCO,II.5.1,Buenos Aires,AR-B,annual,2016,gas oil combustion consumption by agriculture machines,530.229810432,TJ,CH4,3.9,kg/TJ,2067.8962606848,kg -0723c0d1-b636-3451-b4ae-28cc64efd60d,SESCO,II.5.1,Buenos Aires,AR-B,annual,2016,gas oil combustion consumption by agriculture machines,530.229810432,TJ,N2O,3.9,kg/TJ,2067.8962606848,kg -ba8684d6-5fff-393c-b665-0bbe3a9cd9fd,SESCO,II.5.1,Córdoba,AR-X,annual,2016,gas oil combustion consumption by agriculture machines,661.141354104,TJ,CO2,74100.0,kg/TJ,48990574.3391064,kg -69ed2eab-c38c-3ac9-bd22-3ed26856ddae,SESCO,II.5.1,Córdoba,AR-X,annual,2016,gas oil combustion consumption by agriculture machines,661.141354104,TJ,CH4,3.9,kg/TJ,2578.4512810056,kg -69ed2eab-c38c-3ac9-bd22-3ed26856ddae,SESCO,II.5.1,Córdoba,AR-X,annual,2016,gas oil combustion consumption by agriculture machines,661.141354104,TJ,N2O,3.9,kg/TJ,2578.4512810056,kg -302065a3-8d1a-3acb-8936-1b6b7890259a,SESCO,II.5.1,Entre Rios,AR-E,annual,2016,gas oil combustion consumption by agriculture machines,365.998025484,TJ,CO2,74100.0,kg/TJ,27120453.688364398,kg -0e369c50-b76a-3eca-a76b-31a8d4706ca4,SESCO,II.5.1,Entre Rios,AR-E,annual,2016,gas oil combustion consumption by agriculture machines,365.998025484,TJ,CH4,3.9,kg/TJ,1427.3922993876,kg -0e369c50-b76a-3eca-a76b-31a8d4706ca4,SESCO,II.5.1,Entre Rios,AR-E,annual,2016,gas oil combustion consumption by agriculture machines,365.998025484,TJ,N2O,3.9,kg/TJ,1427.3922993876,kg -034385b1-5a12-321f-ae56-e0cf2a1baa97,SESCO,II.5.1,La Pampa,AR-L,annual,2016,gas oil combustion consumption by agriculture machines,53.113325832,TJ,CO2,74100.0,kg/TJ,3935697.4441512,kg -867e4289-e93a-3897-ae1c-2ec194cb0060,SESCO,II.5.1,La Pampa,AR-L,annual,2016,gas oil combustion consumption by agriculture machines,53.113325832,TJ,CH4,3.9,kg/TJ,207.1419707448,kg -867e4289-e93a-3897-ae1c-2ec194cb0060,SESCO,II.5.1,La Pampa,AR-L,annual,2016,gas oil combustion consumption by agriculture machines,53.113325832,TJ,N2O,3.9,kg/TJ,207.1419707448,kg -56cc5b58-41f6-3c3c-9ce7-381937b211f7,SESCO,II.5.1,Santa Fe,AR-S,annual,2016,gas oil combustion consumption by agriculture machines,852.000712752,TJ,CO2,74100.0,kg/TJ,63133252.814923204,kg -54201a25-1d2b-3933-a66c-1230d00379f6,SESCO,II.5.1,Santa Fe,AR-S,annual,2016,gas oil combustion consumption by agriculture machines,852.000712752,TJ,CH4,3.9,kg/TJ,3322.8027797328,kg -54201a25-1d2b-3933-a66c-1230d00379f6,SESCO,II.5.1,Santa Fe,AR-S,annual,2016,gas oil combustion consumption by agriculture machines,852.000712752,TJ,N2O,3.9,kg/TJ,3322.8027797328,kg -1d7be19c-dd88-3d2e-98c7-32c59c24ed77,SESCO,II.5.1,Santiago del Estero,AR-G,annual,2016,gas oil combustion consumption by agriculture machines,87.505944624,TJ,CO2,74100.0,kg/TJ,6484190.4966384,kg -cfd16578-4488-3ddf-8f71-7abf21b3575c,SESCO,II.5.1,Santiago del Estero,AR-G,annual,2016,gas oil combustion consumption by agriculture machines,87.505944624,TJ,CH4,3.9,kg/TJ,341.2731840336,kg -cfd16578-4488-3ddf-8f71-7abf21b3575c,SESCO,II.5.1,Santiago del Estero,AR-G,annual,2016,gas oil combustion consumption by agriculture machines,87.505944624,TJ,N2O,3.9,kg/TJ,341.2731840336,kg -dc853017-1be5-3aaa-b67e-f2a4937ccda4,SESCO,II.5.1,Buenos Aires,AR-B,annual,2016,gas oil combustion consumption by agriculture machines,12.820328051999999,TJ,CO2,74100.0,kg/TJ,949986.3086531999,kg -d53678d7-dc52-3a95-9c20-aacb7da96ce6,SESCO,II.5.1,Buenos Aires,AR-B,annual,2016,gas oil combustion consumption by agriculture machines,12.820328051999999,TJ,CH4,3.9,kg/TJ,49.99927940279999,kg -d53678d7-dc52-3a95-9c20-aacb7da96ce6,SESCO,II.5.1,Buenos Aires,AR-B,annual,2016,gas oil combustion consumption by agriculture machines,12.820328051999999,TJ,N2O,3.9,kg/TJ,49.99927940279999,kg -f8f0440e-25f6-3b9e-b335-8dad69483da5,SESCO,II.5.1,Córdoba,AR-X,annual,2016,gas oil combustion consumption by agriculture machines,3.0206975399999996,TJ,CO2,74100.0,kg/TJ,223833.68771399997,kg -c900f67e-2a47-3d77-92d2-1802ba140e0b,SESCO,II.5.1,Córdoba,AR-X,annual,2016,gas oil combustion consumption by agriculture machines,3.0206975399999996,TJ,CH4,3.9,kg/TJ,11.780720405999999,kg -c900f67e-2a47-3d77-92d2-1802ba140e0b,SESCO,II.5.1,Córdoba,AR-X,annual,2016,gas oil combustion consumption by agriculture machines,3.0206975399999996,TJ,N2O,3.9,kg/TJ,11.780720405999999,kg -6ff094ff-c269-329e-bd41-74139e7ec3f7,SESCO,II.5.1,Entre Rios,AR-E,annual,2016,gas oil combustion consumption by agriculture machines,12.326878284000001,TJ,CO2,74100.0,kg/TJ,913421.6808444001,kg -7b0fe9ba-546f-3950-93a8-1b7f0694439d,SESCO,II.5.1,Entre Rios,AR-E,annual,2016,gas oil combustion consumption by agriculture machines,12.326878284000001,TJ,CH4,3.9,kg/TJ,48.0748253076,kg -7b0fe9ba-546f-3950-93a8-1b7f0694439d,SESCO,II.5.1,Entre Rios,AR-E,annual,2016,gas oil combustion consumption by agriculture machines,12.326878284000001,TJ,N2O,3.9,kg/TJ,48.0748253076,kg -221fbf82-58fd-37fb-9543-9c923ed90526,SESCO,II.5.1,La Pampa,AR-L,annual,2016,gas oil combustion consumption by agriculture machines,10.302471480000001,TJ,CO2,74100.0,kg/TJ,763413.1366680001,kg -af281f83-415a-3599-9838-a8f2843ad7e9,SESCO,II.5.1,La Pampa,AR-L,annual,2016,gas oil combustion consumption by agriculture machines,10.302471480000001,TJ,CH4,3.9,kg/TJ,40.179638772000004,kg -af281f83-415a-3599-9838-a8f2843ad7e9,SESCO,II.5.1,La Pampa,AR-L,annual,2016,gas oil combustion consumption by agriculture machines,10.302471480000001,TJ,N2O,3.9,kg/TJ,40.179638772000004,kg -aad77600-be89-3d62-a2d1-e0f21d7d5564,SESCO,II.5.1,Santa Fe,AR-S,annual,2016,gas oil combustion consumption by agriculture machines,2.156085876,TJ,CO2,74100.0,kg/TJ,159765.9634116,kg -53885975-8891-3dfd-bef2-f435ffee1d8f,SESCO,II.5.1,Santa Fe,AR-S,annual,2016,gas oil combustion consumption by agriculture machines,2.156085876,TJ,CH4,3.9,kg/TJ,8.4087349164,kg -53885975-8891-3dfd-bef2-f435ffee1d8f,SESCO,II.5.1,Santa Fe,AR-S,annual,2016,gas oil combustion consumption by agriculture machines,2.156085876,TJ,N2O,3.9,kg/TJ,8.4087349164,kg -d0338ad3-bce4-39dd-ab11-641065616382,SESCO,II.1.1,Buenos Aires,AR-B,annual,2016,gas oil combustion consumption by to the public,2735.834295684,TJ,CO2,74100.0,kg/TJ,202725321.31018442,kg -0894e877-4cc0-3c70-bda6-1154ee94fd3e,SESCO,II.1.1,Buenos Aires,AR-B,annual,2016,gas oil combustion consumption by to the public,2735.834295684,TJ,CH4,3.9,kg/TJ,10669.7537531676,kg -0894e877-4cc0-3c70-bda6-1154ee94fd3e,SESCO,II.1.1,Buenos Aires,AR-B,annual,2016,gas oil combustion consumption by to the public,2735.834295684,TJ,N2O,3.9,kg/TJ,10669.7537531676,kg -43f92162-a8e0-3953-8ab3-76c0a78b77fb,SESCO,II.1.1,Capital Federal,AR-C,annual,2016,gas oil combustion consumption by to the public,226.96647103200002,TJ,CO2,74100.0,kg/TJ,16818215.5034712,kg -8fe10c13-9f52-3086-8b5c-cb98f48b8be9,SESCO,II.1.1,Capital Federal,AR-C,annual,2016,gas oil combustion consumption by to the public,226.96647103200002,TJ,CH4,3.9,kg/TJ,885.1692370248,kg -8fe10c13-9f52-3086-8b5c-cb98f48b8be9,SESCO,II.1.1,Capital Federal,AR-C,annual,2016,gas oil combustion consumption by to the public,226.96647103200002,TJ,N2O,3.9,kg/TJ,885.1692370248,kg -59e5df58-bbca-3fbf-866b-defefb6ef774,SESCO,II.1.1,Catamarca,AR-K,annual,2016,gas oil combustion consumption by to the public,92.06013121199999,TJ,CO2,74100.0,kg/TJ,6821655.722809199,kg -4b4e58ae-330d-3bff-8c07-c8138b515609,SESCO,II.1.1,Catamarca,AR-K,annual,2016,gas oil combustion consumption by to the public,92.06013121199999,TJ,CH4,3.9,kg/TJ,359.03451172679996,kg -4b4e58ae-330d-3bff-8c07-c8138b515609,SESCO,II.1.1,Catamarca,AR-K,annual,2016,gas oil combustion consumption by to the public,92.06013121199999,TJ,N2O,3.9,kg/TJ,359.03451172679996,kg -2d66bc81-9d2d-3bcc-8302-fb4a2b2da004,SESCO,II.1.1,Chaco,AR-H,annual,2016,gas oil combustion consumption by to the public,474.43802767200003,TJ,CO2,74100.0,kg/TJ,35155857.850495204,kg -ddedb4a3-39c5-3ee2-9a6f-b42d8b9fc468,SESCO,II.1.1,Chaco,AR-H,annual,2016,gas oil combustion consumption by to the public,474.43802767200003,TJ,CH4,3.9,kg/TJ,1850.3083079208002,kg -ddedb4a3-39c5-3ee2-9a6f-b42d8b9fc468,SESCO,II.1.1,Chaco,AR-H,annual,2016,gas oil combustion consumption by to the public,474.43802767200003,TJ,N2O,3.9,kg/TJ,1850.3083079208002,kg -aabad1fb-b1a3-3675-b6a2-2a5da25998d3,SESCO,II.1.1,Corrientes,AR-W,annual,2016,gas oil combustion consumption by to the public,417.202402092,TJ,CO2,74100.0,kg/TJ,30914697.9950172,kg -c4d297a4-0c82-34ee-81e9-f1a2984fc0ae,SESCO,II.1.1,Corrientes,AR-W,annual,2016,gas oil combustion consumption by to the public,417.202402092,TJ,CH4,3.9,kg/TJ,1627.0893681588,kg -c4d297a4-0c82-34ee-81e9-f1a2984fc0ae,SESCO,II.1.1,Corrientes,AR-W,annual,2016,gas oil combustion consumption by to the public,417.202402092,TJ,N2O,3.9,kg/TJ,1627.0893681588,kg -9736c0a1-cab6-3971-ac13-f23f0c516c2e,SESCO,II.1.1,Córdoba,AR-X,annual,2016,gas oil combustion consumption by to the public,1946.891163756,TJ,CO2,74100.0,kg/TJ,144264635.2343196,kg -93ff0d21-a39e-3542-8d34-fe44d513252a,SESCO,II.1.1,Córdoba,AR-X,annual,2016,gas oil combustion consumption by to the public,1946.891163756,TJ,CH4,3.9,kg/TJ,7592.8755386484,kg -93ff0d21-a39e-3542-8d34-fe44d513252a,SESCO,II.1.1,Córdoba,AR-X,annual,2016,gas oil combustion consumption by to the public,1946.891163756,TJ,N2O,3.9,kg/TJ,7592.8755386484,kg -dbc91072-4273-3a91-bf8c-c2fb72056625,SESCO,II.1.1,Entre Rios,AR-E,annual,2016,gas oil combustion consumption by to the public,742.389407592,TJ,CO2,74100.0,kg/TJ,55011055.1025672,kg -df2c3ab5-57c3-389b-90f8-706880854269,SESCO,II.1.1,Entre Rios,AR-E,annual,2016,gas oil combustion consumption by to the public,742.389407592,TJ,CH4,3.9,kg/TJ,2895.3186896088,kg -df2c3ab5-57c3-389b-90f8-706880854269,SESCO,II.1.1,Entre Rios,AR-E,annual,2016,gas oil combustion consumption by to the public,742.389407592,TJ,N2O,3.9,kg/TJ,2895.3186896088,kg -c2a1c5d4-ad25-35e8-92b2-eb59988c1a91,SESCO,II.1.1,Jujuy,AR-Y,annual,2016,gas oil combustion consumption by to the public,59.502368688,TJ,CO2,74100.0,kg/TJ,4409125.5197808,kg -e17d8772-921d-3812-8b92-3dd70047fd18,SESCO,II.1.1,Jujuy,AR-Y,annual,2016,gas oil combustion consumption by to the public,59.502368688,TJ,CH4,3.9,kg/TJ,232.05923788319998,kg -e17d8772-921d-3812-8b92-3dd70047fd18,SESCO,II.1.1,Jujuy,AR-Y,annual,2016,gas oil combustion consumption by to the public,59.502368688,TJ,N2O,3.9,kg/TJ,232.05923788319998,kg -3a9b2bbc-ec4c-322d-9248-80f8e92a2817,SESCO,II.1.1,La Pampa,AR-L,annual,2016,gas oil combustion consumption by to the public,75.879375348,TJ,CO2,74100.0,kg/TJ,5622661.713286799,kg -2d4c8260-bf9e-39f9-89df-662dbd873328,SESCO,II.1.1,La Pampa,AR-L,annual,2016,gas oil combustion consumption by to the public,75.879375348,TJ,CH4,3.9,kg/TJ,295.9295638572,kg -2d4c8260-bf9e-39f9-89df-662dbd873328,SESCO,II.1.1,La Pampa,AR-L,annual,2016,gas oil combustion consumption by to the public,75.879375348,TJ,N2O,3.9,kg/TJ,295.9295638572,kg -7bdb595f-622e-316e-9556-d1c5d1e7538e,SESCO,II.1.1,La Rioja,AR-F,annual,2016,gas oil combustion consumption by to the public,50.595295883999995,TJ,CO2,74100.0,kg/TJ,3749111.4250044,kg -c7507343-df54-3ca4-b17c-ae43c8f2557c,SESCO,II.1.1,La Rioja,AR-F,annual,2016,gas oil combustion consumption by to the public,50.595295883999995,TJ,CH4,3.9,kg/TJ,197.32165394759997,kg -c7507343-df54-3ca4-b17c-ae43c8f2557c,SESCO,II.1.1,La Rioja,AR-F,annual,2016,gas oil combustion consumption by to the public,50.595295883999995,TJ,N2O,3.9,kg/TJ,197.32165394759997,kg -fd4a3df2-06e8-3a40-aa70-5244640b9d83,SESCO,II.1.1,Mendoza,AR-M,annual,2016,gas oil combustion consumption by to the public,387.425402784,TJ,CO2,74100.0,kg/TJ,28708222.346294403,kg -ea21b959-9048-385b-a4ee-fdfe8cc79827,SESCO,II.1.1,Mendoza,AR-M,annual,2016,gas oil combustion consumption by to the public,387.425402784,TJ,CH4,3.9,kg/TJ,1510.9590708576002,kg -ea21b959-9048-385b-a4ee-fdfe8cc79827,SESCO,II.1.1,Mendoza,AR-M,annual,2016,gas oil combustion consumption by to the public,387.425402784,TJ,N2O,3.9,kg/TJ,1510.9590708576002,kg -05f8da3f-99e2-3405-9934-423602ec4097,SESCO,II.1.1,Misiones,AR-N,annual,2016,gas oil combustion consumption by to the public,329.70484092,TJ,CO2,74100.0,kg/TJ,24431128.712171998,kg -cc17911e-a6e9-3d62-9253-cb4378993c33,SESCO,II.1.1,Misiones,AR-N,annual,2016,gas oil combustion consumption by to the public,329.70484092,TJ,CH4,3.9,kg/TJ,1285.8488795879998,kg -cc17911e-a6e9-3d62-9253-cb4378993c33,SESCO,II.1.1,Misiones,AR-N,annual,2016,gas oil combustion consumption by to the public,329.70484092,TJ,N2O,3.9,kg/TJ,1285.8488795879998,kg -66b50f8e-bbf7-3cbf-adb0-adadb8e7a8ef,SESCO,II.1.1,Salta,AR-A,annual,2016,gas oil combustion consumption by to the public,21.091367388,TJ,CO2,74100.0,kg/TJ,1562870.3234507998,kg -98fe2081-5249-3518-8242-82b2131baae0,SESCO,II.1.1,Salta,AR-A,annual,2016,gas oil combustion consumption by to the public,21.091367388,TJ,CH4,3.9,kg/TJ,82.25633281319999,kg -98fe2081-5249-3518-8242-82b2131baae0,SESCO,II.1.1,Salta,AR-A,annual,2016,gas oil combustion consumption by to the public,21.091367388,TJ,N2O,3.9,kg/TJ,82.25633281319999,kg -7e5ef733-9625-311a-b416-d5462364d9a9,SESCO,II.1.1,San Juan,AR-J,annual,2016,gas oil combustion consumption by to the public,377.60010901199996,TJ,CO2,74100.0,kg/TJ,27980168.0777892,kg -f35d237b-1c08-309f-9cb0-61fadb10543f,SESCO,II.1.1,San Juan,AR-J,annual,2016,gas oil combustion consumption by to the public,377.60010901199996,TJ,CH4,3.9,kg/TJ,1472.6404251467998,kg -f35d237b-1c08-309f-9cb0-61fadb10543f,SESCO,II.1.1,San Juan,AR-J,annual,2016,gas oil combustion consumption by to the public,377.60010901199996,TJ,N2O,3.9,kg/TJ,1472.6404251467998,kg -030bfc1d-e653-3e03-ba0a-9bbf82eba8d3,SESCO,II.1.1,San Luis,AR-D,annual,2016,gas oil combustion consumption by to the public,235.663885296,TJ,CO2,74100.0,kg/TJ,17462693.9004336,kg -1fdc1ad4-6639-33bc-8589-ef460038c998,SESCO,II.1.1,San Luis,AR-D,annual,2016,gas oil combustion consumption by to the public,235.663885296,TJ,CH4,3.9,kg/TJ,919.0891526544,kg -1fdc1ad4-6639-33bc-8589-ef460038c998,SESCO,II.1.1,San Luis,AR-D,annual,2016,gas oil combustion consumption by to the public,235.663885296,TJ,N2O,3.9,kg/TJ,919.0891526544,kg -01d587ef-6dcb-3d69-a9b6-b79ec9729f0c,SESCO,II.1.1,Santa Fe,AR-S,annual,2016,gas oil combustion consumption by to the public,2724.4792187760004,TJ,CO2,74100.0,kg/TJ,201883910.11130163,kg -d82540ea-e9da-3a1b-ad3b-e654b2fa1b9e,SESCO,II.1.1,Santa Fe,AR-S,annual,2016,gas oil combustion consumption by to the public,2724.4792187760004,TJ,CH4,3.9,kg/TJ,10625.468953226402,kg -d82540ea-e9da-3a1b-ad3b-e654b2fa1b9e,SESCO,II.1.1,Santa Fe,AR-S,annual,2016,gas oil combustion consumption by to the public,2724.4792187760004,TJ,N2O,3.9,kg/TJ,10625.468953226402,kg -5cba0f19-7693-3612-819e-1672cf5a23e2,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2016,gas oil combustion consumption by to the public,158.300480016,TJ,CO2,74100.0,kg/TJ,11730065.5691856,kg -0f40261e-6420-3035-a2b8-12b1128a9144,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2016,gas oil combustion consumption by to the public,158.300480016,TJ,CH4,3.9,kg/TJ,617.3718720623999,kg -0f40261e-6420-3035-a2b8-12b1128a9144,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2016,gas oil combustion consumption by to the public,158.300480016,TJ,N2O,3.9,kg/TJ,617.3718720623999,kg -6933f2ff-b93c-3b7d-b7f2-f7325d92b68e,SESCO,II.1.1,Tucuman,AR-T,annual,2016,gas oil combustion consumption by to the public,429.308460756,TJ,CO2,74100.0,kg/TJ,31811756.9420196,kg -62b40e72-8607-3225-8aec-cc9ff0816410,SESCO,II.1.1,Tucuman,AR-T,annual,2016,gas oil combustion consumption by to the public,429.308460756,TJ,CH4,3.9,kg/TJ,1674.3029969483998,kg -62b40e72-8607-3225-8aec-cc9ff0816410,SESCO,II.1.1,Tucuman,AR-T,annual,2016,gas oil combustion consumption by to the public,429.308460756,TJ,N2O,3.9,kg/TJ,1674.3029969483998,kg -c5858a77-3418-3ea2-9a29-16d5cc43215d,SESCO,II.1.1,Buenos Aires,AR-B,annual,2016,gas oil combustion consumption by to the public,472.48231388399995,TJ,CO2,74100.0,kg/TJ,35010939.4588044,kg -ba1c4cee-4442-3b94-b3fd-20aefa478ec5,SESCO,II.1.1,Buenos Aires,AR-B,annual,2016,gas oil combustion consumption by to the public,472.48231388399995,TJ,CH4,3.9,kg/TJ,1842.6810241475998,kg -ba1c4cee-4442-3b94-b3fd-20aefa478ec5,SESCO,II.1.1,Buenos Aires,AR-B,annual,2016,gas oil combustion consumption by to the public,472.48231388399995,TJ,N2O,3.9,kg/TJ,1842.6810241475998,kg -a0f43b1a-a311-3345-b00b-d6394cbd3cdd,SESCO,II.1.1,Capital Federal,AR-C,annual,2016,gas oil combustion consumption by to the public,33.244291751999995,TJ,CO2,74100.0,kg/TJ,2463402.0188231994,kg -69275c08-3b51-3e1e-99ca-a9d99fb3f7cf,SESCO,II.1.1,Capital Federal,AR-C,annual,2016,gas oil combustion consumption by to the public,33.244291751999995,TJ,CH4,3.9,kg/TJ,129.65273783279997,kg -69275c08-3b51-3e1e-99ca-a9d99fb3f7cf,SESCO,II.1.1,Capital Federal,AR-C,annual,2016,gas oil combustion consumption by to the public,33.244291751999995,TJ,N2O,3.9,kg/TJ,129.65273783279997,kg -dc531cec-11ef-37f6-8422-97b64e4de969,SESCO,II.1.1,Catamarca,AR-K,annual,2016,gas oil combustion consumption by to the public,39.7792269,TJ,CO2,74100.0,kg/TJ,2947640.71329,kg -ed72a467-3368-36d8-9d1b-16ea378d0408,SESCO,II.1.1,Catamarca,AR-K,annual,2016,gas oil combustion consumption by to the public,39.7792269,TJ,CH4,3.9,kg/TJ,155.13898490999998,kg -ed72a467-3368-36d8-9d1b-16ea378d0408,SESCO,II.1.1,Catamarca,AR-K,annual,2016,gas oil combustion consumption by to the public,39.7792269,TJ,N2O,3.9,kg/TJ,155.13898490999998,kg -6b7b9530-f7a9-34e1-a6b1-8a4aebee38fd,SESCO,II.1.1,Chaco,AR-H,annual,2016,gas oil combustion consumption by to the public,76.447394856,TJ,CO2,74100.0,kg/TJ,5664751.9588296,kg -1df1fda6-5dc2-3b6a-84c1-457d54866348,SESCO,II.1.1,Chaco,AR-H,annual,2016,gas oil combustion consumption by to the public,76.447394856,TJ,CH4,3.9,kg/TJ,298.1448399384,kg -1df1fda6-5dc2-3b6a-84c1-457d54866348,SESCO,II.1.1,Chaco,AR-H,annual,2016,gas oil combustion consumption by to the public,76.447394856,TJ,N2O,3.9,kg/TJ,298.1448399384,kg -b15eb449-8d3b-3f03-b2c6-9a6224419138,SESCO,II.1.1,Corrientes,AR-W,annual,2016,gas oil combustion consumption by to the public,119.81704366799998,TJ,CO2,74100.0,kg/TJ,8878442.9357988,kg -09e71ca4-0afd-3ab6-8922-dfc1186527c0,SESCO,II.1.1,Corrientes,AR-W,annual,2016,gas oil combustion consumption by to the public,119.81704366799998,TJ,CH4,3.9,kg/TJ,467.28647030519994,kg -09e71ca4-0afd-3ab6-8922-dfc1186527c0,SESCO,II.1.1,Corrientes,AR-W,annual,2016,gas oil combustion consumption by to the public,119.81704366799998,TJ,N2O,3.9,kg/TJ,467.28647030519994,kg -78fdc835-3f64-3e7d-91a9-fa394ec7a1b5,SESCO,II.1.1,Córdoba,AR-X,annual,2016,gas oil combustion consumption by to the public,230.152403124,TJ,CO2,74100.0,kg/TJ,17054293.0714884,kg -832fb3a9-8a16-3b5a-b1c3-2ca4898804bc,SESCO,II.1.1,Córdoba,AR-X,annual,2016,gas oil combustion consumption by to the public,230.152403124,TJ,CH4,3.9,kg/TJ,897.5943721836,kg -832fb3a9-8a16-3b5a-b1c3-2ca4898804bc,SESCO,II.1.1,Córdoba,AR-X,annual,2016,gas oil combustion consumption by to the public,230.152403124,TJ,N2O,3.9,kg/TJ,897.5943721836,kg -59c217e9-ce88-3321-b90b-5cc2efa67547,SESCO,II.1.1,Entre Rios,AR-E,annual,2016,gas oil combustion consumption by to the public,128.15636064,TJ,CO2,74100.0,kg/TJ,9496386.323424,kg -290fc9de-9b92-387f-8196-d8383a35fe52,SESCO,II.1.1,Entre Rios,AR-E,annual,2016,gas oil combustion consumption by to the public,128.15636064,TJ,CH4,3.9,kg/TJ,499.809806496,kg -290fc9de-9b92-387f-8196-d8383a35fe52,SESCO,II.1.1,Entre Rios,AR-E,annual,2016,gas oil combustion consumption by to the public,128.15636064,TJ,N2O,3.9,kg/TJ,499.809806496,kg -137f4275-65c3-390c-9468-b6d4bdd11c8d,SESCO,II.1.1,La Pampa,AR-L,annual,2016,gas oil combustion consumption by to the public,9.376979555999998,TJ,CO2,74100.0,kg/TJ,694834.1850995999,kg -e12857ff-2c54-3112-b04e-cf06dfc938a0,SESCO,II.1.1,La Pampa,AR-L,annual,2016,gas oil combustion consumption by to the public,9.376979555999998,TJ,CH4,3.9,kg/TJ,36.57022026839999,kg -e12857ff-2c54-3112-b04e-cf06dfc938a0,SESCO,II.1.1,La Pampa,AR-L,annual,2016,gas oil combustion consumption by to the public,9.376979555999998,TJ,N2O,3.9,kg/TJ,36.57022026839999,kg -6475aa3d-894e-36eb-9800-656a586f2b6e,SESCO,II.1.1,La Rioja,AR-F,annual,2016,gas oil combustion consumption by to the public,11.752718375999999,TJ,CO2,74100.0,kg/TJ,870876.4316615999,kg -d9beeee7-912a-3722-a270-6243ba0ced32,SESCO,II.1.1,La Rioja,AR-F,annual,2016,gas oil combustion consumption by to the public,11.752718375999999,TJ,CH4,3.9,kg/TJ,45.835601666399995,kg -d9beeee7-912a-3722-a270-6243ba0ced32,SESCO,II.1.1,La Rioja,AR-F,annual,2016,gas oil combustion consumption by to the public,11.752718375999999,TJ,N2O,3.9,kg/TJ,45.835601666399995,kg -d3102fa3-59e7-39c9-a48b-ec19636519b3,SESCO,II.1.1,Mendoza,AR-M,annual,2016,gas oil combustion consumption by to the public,62.593453272,TJ,CO2,74100.0,kg/TJ,4638174.8874552,kg -ab4ed32a-14d9-35f5-9a1a-50fba962e113,SESCO,II.1.1,Mendoza,AR-M,annual,2016,gas oil combustion consumption by to the public,62.593453272,TJ,CH4,3.9,kg/TJ,244.11446776079998,kg -ab4ed32a-14d9-35f5-9a1a-50fba962e113,SESCO,II.1.1,Mendoza,AR-M,annual,2016,gas oil combustion consumption by to the public,62.593453272,TJ,N2O,3.9,kg/TJ,244.11446776079998,kg -0ff383ad-e4c3-3595-9798-b780997ebc5a,SESCO,II.1.1,Misiones,AR-N,annual,2016,gas oil combustion consumption by to the public,71.5278942,TJ,CO2,74100.0,kg/TJ,5300216.960220001,kg -a512722b-51d5-31b5-a73e-ddf3f212d950,SESCO,II.1.1,Misiones,AR-N,annual,2016,gas oil combustion consumption by to the public,71.5278942,TJ,CH4,3.9,kg/TJ,278.95878738,kg -a512722b-51d5-31b5-a73e-ddf3f212d950,SESCO,II.1.1,Misiones,AR-N,annual,2016,gas oil combustion consumption by to the public,71.5278942,TJ,N2O,3.9,kg/TJ,278.95878738,kg -623f83c6-ef33-3da8-9fb0-c4f608b64898,SESCO,II.1.1,Salta,AR-A,annual,2016,gas oil combustion consumption by to the public,3.8660753039999998,TJ,CO2,74100.0,kg/TJ,286476.18002639996,kg -3c800e4e-00c7-3c49-b160-2b37396b9140,SESCO,II.1.1,Salta,AR-A,annual,2016,gas oil combustion consumption by to the public,3.8660753039999998,TJ,CH4,3.9,kg/TJ,15.077693685599998,kg -3c800e4e-00c7-3c49-b160-2b37396b9140,SESCO,II.1.1,Salta,AR-A,annual,2016,gas oil combustion consumption by to the public,3.8660753039999998,TJ,N2O,3.9,kg/TJ,15.077693685599998,kg -d5f17d54-60c6-3a57-bc8b-5f6fb5bb66bf,SESCO,II.1.1,San Juan,AR-J,annual,2016,gas oil combustion consumption by to the public,33.592618584,TJ,CO2,74100.0,kg/TJ,2489213.0370744,kg -3c1b1344-128b-3803-80f7-72be8b86e5fe,SESCO,II.1.1,San Juan,AR-J,annual,2016,gas oil combustion consumption by to the public,33.592618584,TJ,CH4,3.9,kg/TJ,131.0112124776,kg -3c1b1344-128b-3803-80f7-72be8b86e5fe,SESCO,II.1.1,San Juan,AR-J,annual,2016,gas oil combustion consumption by to the public,33.592618584,TJ,N2O,3.9,kg/TJ,131.0112124776,kg -9cd0a9cf-fade-3456-bc22-ae968669707d,SESCO,II.1.1,San Luis,AR-D,annual,2016,gas oil combustion consumption by to the public,53.868486672,TJ,CO2,74100.0,kg/TJ,3991654.8623952004,kg -3e2f539d-0766-3f6a-a561-e872e621b38c,SESCO,II.1.1,San Luis,AR-D,annual,2016,gas oil combustion consumption by to the public,53.868486672,TJ,CH4,3.9,kg/TJ,210.0870980208,kg -3e2f539d-0766-3f6a-a561-e872e621b38c,SESCO,II.1.1,San Luis,AR-D,annual,2016,gas oil combustion consumption by to the public,53.868486672,TJ,N2O,3.9,kg/TJ,210.0870980208,kg -418a5fa9-1fc1-3893-ba64-99ec16d4f0ef,SESCO,II.1.1,Santa Fe,AR-S,annual,2016,gas oil combustion consumption by to the public,453.513910332,TJ,CO2,74100.0,kg/TJ,33605380.755601205,kg -45eedb10-cf45-376a-a8ce-3f20ebd5a9a3,SESCO,II.1.1,Santa Fe,AR-S,annual,2016,gas oil combustion consumption by to the public,453.513910332,TJ,CH4,3.9,kg/TJ,1768.7042502948,kg -45eedb10-cf45-376a-a8ce-3f20ebd5a9a3,SESCO,II.1.1,Santa Fe,AR-S,annual,2016,gas oil combustion consumption by to the public,453.513910332,TJ,N2O,3.9,kg/TJ,1768.7042502948,kg -6427ab71-7415-3b1c-a22f-28b1b3dcbf2a,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2016,gas oil combustion consumption by to the public,42.327135312,TJ,CO2,74100.0,kg/TJ,3136440.7266192003,kg -4082cef2-66ef-3acb-9184-fa0e8f659f0d,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2016,gas oil combustion consumption by to the public,42.327135312,TJ,CH4,3.9,kg/TJ,165.0758277168,kg -4082cef2-66ef-3acb-9184-fa0e8f659f0d,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2016,gas oil combustion consumption by to the public,42.327135312,TJ,N2O,3.9,kg/TJ,165.0758277168,kg -b3a8bd12-083a-3b94-864d-58899728746a,SESCO,II.1.1,Tucuman,AR-T,annual,2016,gas oil combustion consumption by to the public,53.0497149,TJ,CO2,74100.0,kg/TJ,3930983.87409,kg -b36c059c-bbf0-3e91-a6a8-093776521270,SESCO,II.1.1,Tucuman,AR-T,annual,2016,gas oil combustion consumption by to the public,53.0497149,TJ,CH4,3.9,kg/TJ,206.89388810999998,kg -b36c059c-bbf0-3e91-a6a8-093776521270,SESCO,II.1.1,Tucuman,AR-T,annual,2016,gas oil combustion consumption by to the public,53.0497149,TJ,N2O,3.9,kg/TJ,206.89388810999998,kg -e6529626-0e82-3c73-967a-373b69bec01f,SESCO,II.1.1,Buenos Aires,AR-B,annual,2016,gas oil combustion consumption by public passenger transport,278.829708948,TJ,CO2,74100.0,kg/TJ,20661281.433046803,kg -d9951712-4f66-317a-85dc-2e1617fcbcb7,SESCO,II.1.1,Buenos Aires,AR-B,annual,2016,gas oil combustion consumption by public passenger transport,278.829708948,TJ,CH4,3.9,kg/TJ,1087.4358648972,kg -d9951712-4f66-317a-85dc-2e1617fcbcb7,SESCO,II.1.1,Buenos Aires,AR-B,annual,2016,gas oil combustion consumption by public passenger transport,278.829708948,TJ,N2O,3.9,kg/TJ,1087.4358648972,kg -ce2863c0-6edc-3ee9-aa5b-661e7bd92eeb,SESCO,II.1.1,Chaco,AR-H,annual,2016,gas oil combustion consumption by public passenger transport,14.378259504,TJ,CO2,74100.0,kg/TJ,1065429.0292464,kg -d5976fce-f182-3fc1-a09c-6101b851ddfb,SESCO,II.1.1,Chaco,AR-H,annual,2016,gas oil combustion consumption by public passenger transport,14.378259504,TJ,CH4,3.9,kg/TJ,56.0752120656,kg -d5976fce-f182-3fc1-a09c-6101b851ddfb,SESCO,II.1.1,Chaco,AR-H,annual,2016,gas oil combustion consumption by public passenger transport,14.378259504,TJ,N2O,3.9,kg/TJ,56.0752120656,kg -3be9ea7a-0d69-3bab-9ab0-465fd995bd79,SESCO,II.1.1,Corrientes,AR-W,annual,2016,gas oil combustion consumption by public passenger transport,40.7256612,TJ,CO2,74100.0,kg/TJ,3017771.49492,kg -76bd7fba-e99d-3440-9368-5d4941409a86,SESCO,II.1.1,Corrientes,AR-W,annual,2016,gas oil combustion consumption by public passenger transport,40.7256612,TJ,CH4,3.9,kg/TJ,158.83007867999999,kg -76bd7fba-e99d-3440-9368-5d4941409a86,SESCO,II.1.1,Corrientes,AR-W,annual,2016,gas oil combustion consumption by public passenger transport,40.7256612,TJ,N2O,3.9,kg/TJ,158.83007867999999,kg -e8a486c7-4a7e-339f-ae38-ec4a883ab52d,SESCO,II.1.1,Córdoba,AR-X,annual,2016,gas oil combustion consumption by public passenger transport,335.5111851,TJ,CO2,74100.0,kg/TJ,24861378.815909997,kg -d5a6f8f3-b40f-322a-8fee-63b851b446d7,SESCO,II.1.1,Córdoba,AR-X,annual,2016,gas oil combustion consumption by public passenger transport,335.5111851,TJ,CH4,3.9,kg/TJ,1308.49362189,kg -d5a6f8f3-b40f-322a-8fee-63b851b446d7,SESCO,II.1.1,Córdoba,AR-X,annual,2016,gas oil combustion consumption by public passenger transport,335.5111851,TJ,N2O,3.9,kg/TJ,1308.49362189,kg -f7881c1f-2444-39cb-8751-dd3d16c1f631,SESCO,II.1.1,Entre Rios,AR-E,annual,2016,gas oil combustion consumption by public passenger transport,100.779715932,TJ,CO2,74100.0,kg/TJ,7467776.9505612,kg -ca17a7e1-1a8e-362f-ba8b-74963f8a2a9d,SESCO,II.1.1,Entre Rios,AR-E,annual,2016,gas oil combustion consumption by public passenger transport,100.779715932,TJ,CH4,3.9,kg/TJ,393.0408921348,kg -ca17a7e1-1a8e-362f-ba8b-74963f8a2a9d,SESCO,II.1.1,Entre Rios,AR-E,annual,2016,gas oil combustion consumption by public passenger transport,100.779715932,TJ,N2O,3.9,kg/TJ,393.0408921348,kg -db281374-fc17-3dcc-bcd8-7dbc277be97e,SESCO,II.1.1,Jujuy,AR-Y,annual,2016,gas oil combustion consumption by public passenger transport,100.18061155199999,TJ,CO2,74100.0,kg/TJ,7423383.316003199,kg -81876e61-72db-365f-88dd-1cdf529662e4,SESCO,II.1.1,Jujuy,AR-Y,annual,2016,gas oil combustion consumption by public passenger transport,100.18061155199999,TJ,CH4,3.9,kg/TJ,390.7043850527999,kg -81876e61-72db-365f-88dd-1cdf529662e4,SESCO,II.1.1,Jujuy,AR-Y,annual,2016,gas oil combustion consumption by public passenger transport,100.18061155199999,TJ,N2O,3.9,kg/TJ,390.7043850527999,kg -1cba7c20-1a56-3793-b7ed-8b5c571e3c70,SESCO,II.1.1,Salta,AR-A,annual,2016,gas oil combustion consumption by public passenger transport,88.80195911999999,TJ,CO2,74100.0,kg/TJ,6580225.170791999,kg -b77065bc-09d4-3482-90bb-168bb0acc468,SESCO,II.1.1,Salta,AR-A,annual,2016,gas oil combustion consumption by public passenger transport,88.80195911999999,TJ,CH4,3.9,kg/TJ,346.32764056799994,kg -b77065bc-09d4-3482-90bb-168bb0acc468,SESCO,II.1.1,Salta,AR-A,annual,2016,gas oil combustion consumption by public passenger transport,88.80195911999999,TJ,N2O,3.9,kg/TJ,346.32764056799994,kg -702f01b2-ae5f-38fd-a898-fb12b42cac70,SESCO,II.1.1,Santa Fe,AR-S,annual,2016,gas oil combustion consumption by public passenger transport,294.059681664,TJ,CO2,74100.0,kg/TJ,21789822.4113024,kg -42e1c2b7-f24a-3a9c-92fd-5c89b07e5a3c,SESCO,II.1.1,Santa Fe,AR-S,annual,2016,gas oil combustion consumption by public passenger transport,294.059681664,TJ,CH4,3.9,kg/TJ,1146.8327584895999,kg -42e1c2b7-f24a-3a9c-92fd-5c89b07e5a3c,SESCO,II.1.1,Santa Fe,AR-S,annual,2016,gas oil combustion consumption by public passenger transport,294.059681664,TJ,N2O,3.9,kg/TJ,1146.8327584895999,kg -1c1b8a40-8ca1-3c1a-b44e-594c33204002,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2016,gas oil combustion consumption by public passenger transport,122.61948610799999,TJ,CO2,74100.0,kg/TJ,9086103.920602798,kg -ff49c440-023d-3a31-9d6e-599b25eae28c,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2016,gas oil combustion consumption by public passenger transport,122.61948610799999,TJ,CH4,3.9,kg/TJ,478.21599582119995,kg -ff49c440-023d-3a31-9d6e-599b25eae28c,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2016,gas oil combustion consumption by public passenger transport,122.61948610799999,TJ,N2O,3.9,kg/TJ,478.21599582119995,kg -f61f7f9c-e310-3f80-b509-c5d8c89d0688,SESCO,II.1.1,Tucuman,AR-T,annual,2016,gas oil combustion consumption by public passenger transport,30.535208676,TJ,CO2,74100.0,kg/TJ,2262658.9628916,kg -95c6f04d-452c-34db-bc54-b0ad11b6dfbd,SESCO,II.1.1,Tucuman,AR-T,annual,2016,gas oil combustion consumption by public passenger transport,30.535208676,TJ,CH4,3.9,kg/TJ,119.0873138364,kg -95c6f04d-452c-34db-bc54-b0ad11b6dfbd,SESCO,II.1.1,Tucuman,AR-T,annual,2016,gas oil combustion consumption by public passenger transport,30.535208676,TJ,N2O,3.9,kg/TJ,119.0873138364,kg -4eb11c39-4509-3eb6-8124-975919ce9bf8,SESCO,II.1.1,Corrientes,AR-W,annual,2016,gas oil combustion consumption by public passenger transport,1.04130348,TJ,CO2,74100.0,kg/TJ,77160.587868,kg -b3ce020f-9f57-30f4-a466-25f769d2f403,SESCO,II.1.1,Corrientes,AR-W,annual,2016,gas oil combustion consumption by public passenger transport,1.04130348,TJ,CH4,3.9,kg/TJ,4.061083572,kg -b3ce020f-9f57-30f4-a466-25f769d2f403,SESCO,II.1.1,Corrientes,AR-W,annual,2016,gas oil combustion consumption by public passenger transport,1.04130348,TJ,N2O,3.9,kg/TJ,4.061083572,kg -2f063fd7-1414-3a50-b5a9-c64da6992781,SESCO,II.1.1,Entre Rios,AR-E,annual,2016,gas oil combustion consumption by public passenger transport,0.683133948,TJ,CO2,74100.0,kg/TJ,50620.2255468,kg -e785bb21-e581-3dc3-9cbe-bdd3e83b03e5,SESCO,II.1.1,Entre Rios,AR-E,annual,2016,gas oil combustion consumption by public passenger transport,0.683133948,TJ,CH4,3.9,kg/TJ,2.6642223972,kg -e785bb21-e581-3dc3-9cbe-bdd3e83b03e5,SESCO,II.1.1,Entre Rios,AR-E,annual,2016,gas oil combustion consumption by public passenger transport,0.683133948,TJ,N2O,3.9,kg/TJ,2.6642223972,kg -74a34b44-5f61-3c81-b3ee-55b881d183fc,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2016,gas oil combustion consumption by public passenger transport,0.393585192,TJ,CO2,74100.0,kg/TJ,29164.662727199997,kg -b036a28c-4524-3e79-9f3a-eb050bc1b946,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2016,gas oil combustion consumption by public passenger transport,0.393585192,TJ,CH4,3.9,kg/TJ,1.5349822487999998,kg -b036a28c-4524-3e79-9f3a-eb050bc1b946,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2016,gas oil combustion consumption by public passenger transport,0.393585192,TJ,N2O,3.9,kg/TJ,1.5349822487999998,kg -7643497d-f394-3b1f-92ac-30084c7f0613,SESCO,II.1.1,Tucuman,AR-T,annual,2016,gas oil combustion consumption by public passenger transport,0.17946221999999998,TJ,CO2,74100.0,kg/TJ,13298.150501999999,kg -3b186a8f-6b05-3fd9-beb1-c0bc649f270d,SESCO,II.1.1,Tucuman,AR-T,annual,2016,gas oil combustion consumption by public passenger transport,0.17946221999999998,TJ,CH4,3.9,kg/TJ,0.6999026579999998,kg -3b186a8f-6b05-3fd9-beb1-c0bc649f270d,SESCO,II.1.1,Tucuman,AR-T,annual,2016,gas oil combustion consumption by public passenger transport,0.17946221999999998,TJ,N2O,3.9,kg/TJ,0.6999026579999998,kg -f9fc498f-d1c4-337a-a316-a463e2f60000,SESCO,II.5.1,Buenos Aires,AR-B,annual,2016,gas oil combustion consumption by agriculture machines,548.362180464,TJ,CO2,74100.0,kg/TJ,40633637.5723824,kg -ab11570d-17d1-3e27-b287-a0235532ba57,SESCO,II.5.1,Buenos Aires,AR-B,annual,2016,gas oil combustion consumption by agriculture machines,548.362180464,TJ,CH4,3.9,kg/TJ,2138.6125038095997,kg -ab11570d-17d1-3e27-b287-a0235532ba57,SESCO,II.5.1,Buenos Aires,AR-B,annual,2016,gas oil combustion consumption by agriculture machines,548.362180464,TJ,N2O,3.9,kg/TJ,2138.6125038095997,kg -67a2c75f-bf7d-3c0d-9553-afae943902de,SESCO,II.5.1,Córdoba,AR-X,annual,2016,gas oil combustion consumption by agriculture machines,63.65401593599999,TJ,CO2,74100.0,kg/TJ,4716762.580857599,kg -3b969fb0-6470-377d-b8ea-362ee7b8fd9b,SESCO,II.5.1,Córdoba,AR-X,annual,2016,gas oil combustion consumption by agriculture machines,63.65401593599999,TJ,CH4,3.9,kg/TJ,248.25066215039996,kg -3b969fb0-6470-377d-b8ea-362ee7b8fd9b,SESCO,II.5.1,Córdoba,AR-X,annual,2016,gas oil combustion consumption by agriculture machines,63.65401593599999,TJ,N2O,3.9,kg/TJ,248.25066215039996,kg -cb818b47-354a-32f8-a029-1e2fd80f7838,SESCO,II.5.1,La Pampa,AR-L,annual,2016,gas oil combustion consumption by agriculture machines,54.17328168,TJ,CO2,74100.0,kg/TJ,4014240.1724880002,kg -b8aceb62-c787-384c-b158-fb1a1b79c569,SESCO,II.5.1,La Pampa,AR-L,annual,2016,gas oil combustion consumption by agriculture machines,54.17328168,TJ,CH4,3.9,kg/TJ,211.275798552,kg -b8aceb62-c787-384c-b158-fb1a1b79c569,SESCO,II.5.1,La Pampa,AR-L,annual,2016,gas oil combustion consumption by agriculture machines,54.17328168,TJ,N2O,3.9,kg/TJ,211.275798552,kg -3a27689a-0e75-3e7d-9770-c19aa3701907,SESCO,II.5.1,Neuquén,AR-Q,annual,2016,gas oil combustion consumption by agriculture machines,12.764432351999998,TJ,CO2,74100.0,kg/TJ,945844.4372831999,kg -c4709580-44a2-337f-be4f-1771e21d2549,SESCO,II.5.1,Neuquén,AR-Q,annual,2016,gas oil combustion consumption by agriculture machines,12.764432351999998,TJ,CH4,3.9,kg/TJ,49.781286172799994,kg -c4709580-44a2-337f-be4f-1771e21d2549,SESCO,II.5.1,Neuquén,AR-Q,annual,2016,gas oil combustion consumption by agriculture machines,12.764432351999998,TJ,N2O,3.9,kg/TJ,49.781286172799994,kg -3f719f07-0271-3a26-9389-0222c2a5de8c,SESCO,II.5.1,Rio Negro,AR-R,annual,2016,gas oil combustion consumption by agriculture machines,5.841853752,TJ,CO2,74100.0,kg/TJ,432881.36302319996,kg -0e8a5dda-81b0-308f-ab59-42b91360575e,SESCO,II.5.1,Rio Negro,AR-R,annual,2016,gas oil combustion consumption by agriculture machines,5.841853752,TJ,CH4,3.9,kg/TJ,22.783229632799998,kg -0e8a5dda-81b0-308f-ab59-42b91360575e,SESCO,II.5.1,Rio Negro,AR-R,annual,2016,gas oil combustion consumption by agriculture machines,5.841853752,TJ,N2O,3.9,kg/TJ,22.783229632799998,kg -56892a89-be99-30c1-868d-c68222728ac8,SESCO,II.1.1,Buenos Aires,AR-B,annual,2016,gas oil combustion consumption by to the public,8034.014680272,TJ,CO2,74100.0,kg/TJ,595320487.8081552,kg -974c1cb4-efed-3fa9-94cc-403525a1fde4,SESCO,II.1.1,Buenos Aires,AR-B,annual,2016,gas oil combustion consumption by to the public,8034.014680272,TJ,CH4,3.9,kg/TJ,31332.6572530608,kg -974c1cb4-efed-3fa9-94cc-403525a1fde4,SESCO,II.1.1,Buenos Aires,AR-B,annual,2016,gas oil combustion consumption by to the public,8034.014680272,TJ,N2O,3.9,kg/TJ,31332.6572530608,kg -e73fa2f9-e468-3ad4-af19-0e5b5742c1a8,SESCO,II.1.1,Capital Federal,AR-C,annual,2016,gas oil combustion consumption by to the public,547.799499492,TJ,CO2,74100.0,kg/TJ,40591942.912357196,kg -ad07644a-ea08-3209-a243-5ba6d0e97843,SESCO,II.1.1,Capital Federal,AR-C,annual,2016,gas oil combustion consumption by to the public,547.799499492,TJ,CH4,3.9,kg/TJ,2136.4180480187997,kg -ad07644a-ea08-3209-a243-5ba6d0e97843,SESCO,II.1.1,Capital Federal,AR-C,annual,2016,gas oil combustion consumption by to the public,547.799499492,TJ,N2O,3.9,kg/TJ,2136.4180480187997,kg -0f5e78d7-6eff-3714-b987-b45fe2e50ee4,SESCO,II.1.1,Chubut,AR-U,annual,2016,gas oil combustion consumption by to the public,1329.441121512,TJ,CO2,74100.0,kg/TJ,98511587.1040392,kg -59f47c59-4a91-3d43-9ead-c6138095d52d,SESCO,II.1.1,Chubut,AR-U,annual,2016,gas oil combustion consumption by to the public,1329.441121512,TJ,CH4,3.9,kg/TJ,5184.8203738968,kg -59f47c59-4a91-3d43-9ead-c6138095d52d,SESCO,II.1.1,Chubut,AR-U,annual,2016,gas oil combustion consumption by to the public,1329.441121512,TJ,N2O,3.9,kg/TJ,5184.8203738968,kg -a224b77e-f793-3cf1-ab92-ffe0217c409f,SESCO,II.1.1,Córdoba,AR-X,annual,2016,gas oil combustion consumption by to the public,443.81751078,TJ,CO2,74100.0,kg/TJ,32886877.548798002,kg -1b6ce56d-6039-328f-a197-4df54202b0a4,SESCO,II.1.1,Córdoba,AR-X,annual,2016,gas oil combustion consumption by to the public,443.81751078,TJ,CH4,3.9,kg/TJ,1730.888292042,kg -1b6ce56d-6039-328f-a197-4df54202b0a4,SESCO,II.1.1,Córdoba,AR-X,annual,2016,gas oil combustion consumption by to the public,443.81751078,TJ,N2O,3.9,kg/TJ,1730.888292042,kg -a8e1836c-c530-302a-ab6e-321da937b61d,SESCO,II.1.1,Entre Rios,AR-E,annual,2016,gas oil combustion consumption by to the public,664.624889712,TJ,CO2,74100.0,kg/TJ,49248704.327659205,kg -714293ec-0c8b-3279-992b-fdd95366d5bb,SESCO,II.1.1,Entre Rios,AR-E,annual,2016,gas oil combustion consumption by to the public,664.624889712,TJ,CH4,3.9,kg/TJ,2592.0370698768,kg -714293ec-0c8b-3279-992b-fdd95366d5bb,SESCO,II.1.1,Entre Rios,AR-E,annual,2016,gas oil combustion consumption by to the public,664.624889712,TJ,N2O,3.9,kg/TJ,2592.0370698768,kg -c1153d73-1cab-3e3b-8804-de8d39d6a5de,SESCO,II.1.1,La Pampa,AR-L,annual,2016,gas oil combustion consumption by to the public,1416.54068724,TJ,CO2,74100.0,kg/TJ,104965664.924484,kg -23f54e8d-564a-3f23-9dbb-5d15bc20605c,SESCO,II.1.1,La Pampa,AR-L,annual,2016,gas oil combustion consumption by to the public,1416.54068724,TJ,CH4,3.9,kg/TJ,5524.508680235999,kg -23f54e8d-564a-3f23-9dbb-5d15bc20605c,SESCO,II.1.1,La Pampa,AR-L,annual,2016,gas oil combustion consumption by to the public,1416.54068724,TJ,N2O,3.9,kg/TJ,5524.508680235999,kg -5de1ae3c-a3e0-393b-9531-ff77a9b4d914,SESCO,II.1.1,Mendoza,AR-M,annual,2016,gas oil combustion consumption by to the public,23.477544887999997,TJ,CO2,74100.0,kg/TJ,1739686.0762007998,kg -4bb7312d-e08d-3605-863c-be4ce0af8906,SESCO,II.1.1,Mendoza,AR-M,annual,2016,gas oil combustion consumption by to the public,23.477544887999997,TJ,CH4,3.9,kg/TJ,91.56242506319998,kg -4bb7312d-e08d-3605-863c-be4ce0af8906,SESCO,II.1.1,Mendoza,AR-M,annual,2016,gas oil combustion consumption by to the public,23.477544887999997,TJ,N2O,3.9,kg/TJ,91.56242506319998,kg -7881fd03-0fcd-3259-ab53-944a426a4557,SESCO,II.1.1,Neuquén,AR-Q,annual,2016,gas oil combustion consumption by to the public,649.588722468,TJ,CO2,74100.0,kg/TJ,48134524.3348788,kg -82a456e0-18d9-3d33-8ebb-827f0817282e,SESCO,II.1.1,Neuquén,AR-Q,annual,2016,gas oil combustion consumption by to the public,649.588722468,TJ,CH4,3.9,kg/TJ,2533.3960176252,kg -82a456e0-18d9-3d33-8ebb-827f0817282e,SESCO,II.1.1,Neuquén,AR-Q,annual,2016,gas oil combustion consumption by to the public,649.588722468,TJ,N2O,3.9,kg/TJ,2533.3960176252,kg -d6540a9c-f927-317e-9b86-aaea18d5beee,SESCO,II.1.1,Rio Negro,AR-R,annual,2016,gas oil combustion consumption by to the public,2113.3873945799996,TJ,CO2,74100.0,kg/TJ,156602005.93837798,kg -e68d2267-2efa-32d2-ac6d-d149532905b4,SESCO,II.1.1,Rio Negro,AR-R,annual,2016,gas oil combustion consumption by to the public,2113.3873945799996,TJ,CH4,3.9,kg/TJ,8242.210838861998,kg -e68d2267-2efa-32d2-ac6d-d149532905b4,SESCO,II.1.1,Rio Negro,AR-R,annual,2016,gas oil combustion consumption by to the public,2113.3873945799996,TJ,N2O,3.9,kg/TJ,8242.210838861998,kg -af51b997-e0b2-3ade-8827-b2c04696ef53,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2016,gas oil combustion consumption by to the public,765.3815972040001,TJ,CO2,74100.0,kg/TJ,56714776.3528164,kg -85b2939c-6e75-30b0-8159-444470c6f958,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2016,gas oil combustion consumption by to the public,765.3815972040001,TJ,CH4,3.9,kg/TJ,2984.9882290956,kg -85b2939c-6e75-30b0-8159-444470c6f958,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2016,gas oil combustion consumption by to the public,765.3815972040001,TJ,N2O,3.9,kg/TJ,2984.9882290956,kg -ab198db7-38c2-3048-b030-e6671cc1539e,SESCO,II.1.1,Santa Fe,AR-S,annual,2016,gas oil combustion consumption by to the public,384.834219,TJ,CO2,74100.0,kg/TJ,28516215.6279,kg -516675eb-0ed5-3b35-ae6a-b8e93a479845,SESCO,II.1.1,Santa Fe,AR-S,annual,2016,gas oil combustion consumption by to the public,384.834219,TJ,CH4,3.9,kg/TJ,1500.8534541000001,kg -516675eb-0ed5-3b35-ae6a-b8e93a479845,SESCO,II.1.1,Santa Fe,AR-S,annual,2016,gas oil combustion consumption by to the public,384.834219,TJ,N2O,3.9,kg/TJ,1500.8534541000001,kg -3321f878-783a-3a39-8d56-46f91a438e63,SESCO,II.1.1,Buenos Aires,AR-B,annual,2016,gas oil combustion consumption by to the public,1210.240046652,TJ,CO2,74100.0,kg/TJ,89678787.4569132,kg -5bd0f5cd-8402-3131-9d78-1f4e8ba941bc,SESCO,II.1.1,Buenos Aires,AR-B,annual,2016,gas oil combustion consumption by to the public,1210.240046652,TJ,CH4,3.9,kg/TJ,4719.9361819428,kg -5bd0f5cd-8402-3131-9d78-1f4e8ba941bc,SESCO,II.1.1,Buenos Aires,AR-B,annual,2016,gas oil combustion consumption by to the public,1210.240046652,TJ,N2O,3.9,kg/TJ,4719.9361819428,kg -b1fea958-f512-3c2c-ac52-90063218f222,SESCO,II.1.1,Capital Federal,AR-C,annual,2016,gas oil combustion consumption by to the public,204.442331604,TJ,CO2,74100.0,kg/TJ,15149176.771856401,kg -1b387fc2-2c43-3df5-be03-290c30a39349,SESCO,II.1.1,Capital Federal,AR-C,annual,2016,gas oil combustion consumption by to the public,204.442331604,TJ,CH4,3.9,kg/TJ,797.3250932556,kg -1b387fc2-2c43-3df5-be03-290c30a39349,SESCO,II.1.1,Capital Federal,AR-C,annual,2016,gas oil combustion consumption by to the public,204.442331604,TJ,N2O,3.9,kg/TJ,797.3250932556,kg -09508739-5170-3fb6-be1c-965966513888,SESCO,II.1.1,Chubut,AR-U,annual,2016,gas oil combustion consumption by to the public,301.77318351599996,TJ,CO2,74100.0,kg/TJ,22361392.898535598,kg -bb805223-2af9-3e8d-a4f9-705f912de449,SESCO,II.1.1,Chubut,AR-U,annual,2016,gas oil combustion consumption by to the public,301.77318351599996,TJ,CH4,3.9,kg/TJ,1176.9154157123999,kg -bb805223-2af9-3e8d-a4f9-705f912de449,SESCO,II.1.1,Chubut,AR-U,annual,2016,gas oil combustion consumption by to the public,301.77318351599996,TJ,N2O,3.9,kg/TJ,1176.9154157123999,kg -5730adff-f049-3c23-982b-d8a5cf021f1f,SESCO,II.1.1,Córdoba,AR-X,annual,2016,gas oil combustion consumption by to the public,103.02429219599999,TJ,CO2,74100.0,kg/TJ,7634100.051723599,kg -fa87f238-645f-3166-bd05-961a466431eb,SESCO,II.1.1,Córdoba,AR-X,annual,2016,gas oil combustion consumption by to the public,103.02429219599999,TJ,CH4,3.9,kg/TJ,401.79473956439995,kg -fa87f238-645f-3166-bd05-961a466431eb,SESCO,II.1.1,Córdoba,AR-X,annual,2016,gas oil combustion consumption by to the public,103.02429219599999,TJ,N2O,3.9,kg/TJ,401.79473956439995,kg -d07edab2-e94b-3f30-95db-d43165905ce7,SESCO,II.1.1,Entre Rios,AR-E,annual,2016,gas oil combustion consumption by to the public,124.87881378,TJ,CO2,74100.0,kg/TJ,9253520.101098001,kg -51b62f8b-50c0-3fb6-936b-689f4a1827f8,SESCO,II.1.1,Entre Rios,AR-E,annual,2016,gas oil combustion consumption by to the public,124.87881378,TJ,CH4,3.9,kg/TJ,487.027373742,kg -51b62f8b-50c0-3fb6-936b-689f4a1827f8,SESCO,II.1.1,Entre Rios,AR-E,annual,2016,gas oil combustion consumption by to the public,124.87881378,TJ,N2O,3.9,kg/TJ,487.027373742,kg -0c205780-e405-3c54-8557-b35b7c3ace97,SESCO,II.1.1,La Pampa,AR-L,annual,2016,gas oil combustion consumption by to the public,125.912882424,TJ,CO2,74100.0,kg/TJ,9330144.5876184,kg -75cb902c-6fd5-30a5-9e58-2bf399de48ba,SESCO,II.1.1,La Pampa,AR-L,annual,2016,gas oil combustion consumption by to the public,125.912882424,TJ,CH4,3.9,kg/TJ,491.0602414536,kg -75cb902c-6fd5-30a5-9e58-2bf399de48ba,SESCO,II.1.1,La Pampa,AR-L,annual,2016,gas oil combustion consumption by to the public,125.912882424,TJ,N2O,3.9,kg/TJ,491.0602414536,kg -3339e156-f1dc-3159-9b45-7c95e7cb33d4,SESCO,II.1.1,Neuquén,AR-Q,annual,2016,gas oil combustion consumption by to the public,341.927354076,TJ,CO2,74100.0,kg/TJ,25336816.937031597,kg -d84611b0-d5eb-34e6-b44a-e9fe87d76cb6,SESCO,II.1.1,Neuquén,AR-Q,annual,2016,gas oil combustion consumption by to the public,341.927354076,TJ,CH4,3.9,kg/TJ,1333.5166808963997,kg -d84611b0-d5eb-34e6-b44a-e9fe87d76cb6,SESCO,II.1.1,Neuquén,AR-Q,annual,2016,gas oil combustion consumption by to the public,341.927354076,TJ,N2O,3.9,kg/TJ,1333.5166808963997,kg -065de24d-d7ca-3d76-a308-0f481764903a,SESCO,II.1.1,Rio Negro,AR-R,annual,2016,gas oil combustion consumption by to the public,271.004809404,TJ,CO2,74100.0,kg/TJ,20081456.3768364,kg -69e7df84-cc7d-3663-8ca7-3769aa180530,SESCO,II.1.1,Rio Negro,AR-R,annual,2016,gas oil combustion consumption by to the public,271.004809404,TJ,CH4,3.9,kg/TJ,1056.9187566756,kg -69e7df84-cc7d-3663-8ca7-3769aa180530,SESCO,II.1.1,Rio Negro,AR-R,annual,2016,gas oil combustion consumption by to the public,271.004809404,TJ,N2O,3.9,kg/TJ,1056.9187566756,kg -c602614f-5a27-324e-a9da-a1749685ead9,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2016,gas oil combustion consumption by to the public,250.140279228,TJ,CO2,74100.0,kg/TJ,18535394.6907948,kg -8f0afc26-bbe3-3b83-85e9-bd1fc71316f4,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2016,gas oil combustion consumption by to the public,250.140279228,TJ,CH4,3.9,kg/TJ,975.5470889892,kg -8f0afc26-bbe3-3b83-85e9-bd1fc71316f4,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2016,gas oil combustion consumption by to the public,250.140279228,TJ,N2O,3.9,kg/TJ,975.5470889892,kg -ad575d02-5926-3158-8545-52308958feaa,SESCO,II.1.1,Santa Fe,AR-S,annual,2016,gas oil combustion consumption by to the public,161.996332596,TJ,CO2,74100.0,kg/TJ,12003928.2453636,kg -655ab869-2488-38f3-8d12-896d79b2170f,SESCO,II.1.1,Santa Fe,AR-S,annual,2016,gas oil combustion consumption by to the public,161.996332596,TJ,CH4,3.9,kg/TJ,631.7856971244,kg -655ab869-2488-38f3-8d12-896d79b2170f,SESCO,II.1.1,Santa Fe,AR-S,annual,2016,gas oil combustion consumption by to the public,161.996332596,TJ,N2O,3.9,kg/TJ,631.7856971244,kg -da62d2bb-5e60-3640-b686-4904d9c6bbf9,SESCO,II.2.1,Buenos Aires,AR-B,annual,2016,gas oil combustion consumption by railway transport,3.8343547200000003,TJ,CO2,74100.0,kg/TJ,284125.68475200003,kg -4f822ad6-2fc6-30e0-8d1e-48635175924c,SESCO,II.2.1,Buenos Aires,AR-B,annual,2016,gas oil combustion consumption by railway transport,3.8343547200000003,TJ,CH4,3.9,kg/TJ,14.953983408000001,kg -4f822ad6-2fc6-30e0-8d1e-48635175924c,SESCO,II.2.1,Buenos Aires,AR-B,annual,2016,gas oil combustion consumption by railway transport,3.8343547200000003,TJ,N2O,3.9,kg/TJ,14.953983408000001,kg -6fe01190-e899-3375-9ce6-028d9e03a7c8,SESCO,II.1.1,Buenos Aires,AR-B,annual,2016,gasoline combustion consumption by freight transport,1.037949,TJ,CO2,69300.0,kg/TJ,71929.8657,kg -8af476d1-5257-3057-a7f1-c25026d059c3,SESCO,II.1.1,Buenos Aires,AR-B,annual,2016,gasoline combustion consumption by freight transport,1.037949,TJ,CH4,33.0,kg/TJ,34.252317,kg -b841c359-0dbf-32d8-9af5-555f1ef16a30,SESCO,II.1.1,Buenos Aires,AR-B,annual,2016,gasoline combustion consumption by freight transport,1.037949,TJ,N2O,3.2,kg/TJ,3.3214368000000003,kg -52236d0b-537b-3590-bccb-fa2fc7cdfc92,SESCO,II.1.1,Buenos Aires,AR-B,annual,2016,gas oil combustion consumption by freight transport,210.976786356,TJ,CO2,74100.0,kg/TJ,15633379.8689796,kg -0eeff11e-4e56-3134-94b6-a877d592c0b6,SESCO,II.1.1,Buenos Aires,AR-B,annual,2016,gas oil combustion consumption by freight transport,210.976786356,TJ,CH4,3.9,kg/TJ,822.8094667884,kg -0eeff11e-4e56-3134-94b6-a877d592c0b6,SESCO,II.1.1,Buenos Aires,AR-B,annual,2016,gas oil combustion consumption by freight transport,210.976786356,TJ,N2O,3.9,kg/TJ,822.8094667884,kg -51600aea-e807-30ec-b80c-2b276ae805ef,SESCO,II.1.1,Chubut,AR-U,annual,2016,gas oil combustion consumption by freight transport,4.596587856,TJ,CO2,74100.0,kg/TJ,340607.16012960003,kg -7ba67a2a-4497-3e06-865c-322ded752716,SESCO,II.1.1,Chubut,AR-U,annual,2016,gas oil combustion consumption by freight transport,4.596587856,TJ,CH4,3.9,kg/TJ,17.9266926384,kg -7ba67a2a-4497-3e06-865c-322ded752716,SESCO,II.1.1,Chubut,AR-U,annual,2016,gas oil combustion consumption by freight transport,4.596587856,TJ,N2O,3.9,kg/TJ,17.9266926384,kg -4ea3ec45-53d4-344f-bcd9-e790db63869e,SESCO,II.1.1,San Luis,AR-D,annual,2016,gas oil combustion consumption by freight transport,47.061412608,TJ,CO2,74100.0,kg/TJ,3487250.6742527997,kg -0f870ec8-93aa-36a6-b18a-c67ab11177b5,SESCO,II.1.1,San Luis,AR-D,annual,2016,gas oil combustion consumption by freight transport,47.061412608,TJ,CH4,3.9,kg/TJ,183.5395091712,kg -0f870ec8-93aa-36a6-b18a-c67ab11177b5,SESCO,II.1.1,San Luis,AR-D,annual,2016,gas oil combustion consumption by freight transport,47.061412608,TJ,N2O,3.9,kg/TJ,183.5395091712,kg -75c7aa6a-7147-334d-a245-d8042f391acf,SESCO,II.1.1,Buenos Aires,AR-B,annual,2016,gas oil combustion consumption by freight transport,2.62588788,TJ,CO2,74100.0,kg/TJ,194578.291908,kg -7101af19-4f5e-300e-9a8d-4633d0b824fe,SESCO,II.1.1,Buenos Aires,AR-B,annual,2016,gas oil combustion consumption by freight transport,2.62588788,TJ,CH4,3.9,kg/TJ,10.240962732,kg -7101af19-4f5e-300e-9a8d-4633d0b824fe,SESCO,II.1.1,Buenos Aires,AR-B,annual,2016,gas oil combustion consumption by freight transport,2.62588788,TJ,N2O,3.9,kg/TJ,10.240962732,kg -5f89c6f4-442d-3aa4-a98b-1fab7d87a8a0,SESCO,II.1.1,Buenos Aires,AR-B,annual,2016,gas oil combustion consumption by public passenger transport,459.017821752,TJ,CO2,74100.0,kg/TJ,34013220.5918232,kg -8370355b-497a-3f58-a2ba-3863fa9a9912,SESCO,II.1.1,Buenos Aires,AR-B,annual,2016,gas oil combustion consumption by public passenger transport,459.017821752,TJ,CH4,3.9,kg/TJ,1790.1695048328,kg -8370355b-497a-3f58-a2ba-3863fa9a9912,SESCO,II.1.1,Buenos Aires,AR-B,annual,2016,gas oil combustion consumption by public passenger transport,459.017821752,TJ,N2O,3.9,kg/TJ,1790.1695048328,kg -4864499c-b26a-3dd5-9205-499ff6e0fad6,SESCO,II.1.1,Capital Federal,AR-C,annual,2016,gas oil combustion consumption by public passenger transport,63.907018476000005,TJ,CO2,74100.0,kg/TJ,4735510.0690716,kg -62f10833-49d6-3fe1-902c-464735b951af,SESCO,II.1.1,Capital Federal,AR-C,annual,2016,gas oil combustion consumption by public passenger transport,63.907018476000005,TJ,CH4,3.9,kg/TJ,249.2373720564,kg -62f10833-49d6-3fe1-902c-464735b951af,SESCO,II.1.1,Capital Federal,AR-C,annual,2016,gas oil combustion consumption by public passenger transport,63.907018476000005,TJ,N2O,3.9,kg/TJ,249.2373720564,kg -cf3fc7e5-5fb3-3122-8155-39e6a9ee62a5,SESCO,II.1.1,Chubut,AR-U,annual,2016,gas oil combustion consumption by public passenger transport,36.607612776,TJ,CO2,74100.0,kg/TJ,2712624.1067016004,kg -70c7bd7b-8b83-3f4a-b8b2-862233d01f9f,SESCO,II.1.1,Chubut,AR-U,annual,2016,gas oil combustion consumption by public passenger transport,36.607612776,TJ,CH4,3.9,kg/TJ,142.7696898264,kg -70c7bd7b-8b83-3f4a-b8b2-862233d01f9f,SESCO,II.1.1,Chubut,AR-U,annual,2016,gas oil combustion consumption by public passenger transport,36.607612776,TJ,N2O,3.9,kg/TJ,142.7696898264,kg -578f069d-524b-32a6-a3c0-c0a61a4e5bb8,SESCO,II.1.1,Córdoba,AR-X,annual,2016,gas oil combustion consumption by public passenger transport,253.71222576,TJ,CO2,74100.0,kg/TJ,18800075.928815998,kg -39cc4eed-85fc-3624-8864-06a397d612dc,SESCO,II.1.1,Córdoba,AR-X,annual,2016,gas oil combustion consumption by public passenger transport,253.71222576,TJ,CH4,3.9,kg/TJ,989.477680464,kg -39cc4eed-85fc-3624-8864-06a397d612dc,SESCO,II.1.1,Córdoba,AR-X,annual,2016,gas oil combustion consumption by public passenger transport,253.71222576,TJ,N2O,3.9,kg/TJ,989.477680464,kg -8ec062d2-9e63-3bd6-8a30-d9c115d654fb,SESCO,II.1.1,Neuquén,AR-Q,annual,2016,gas oil combustion consumption by public passenger transport,27.404807471999998,TJ,CO2,74100.0,kg/TJ,2030696.2336751998,kg -3d6edd36-a6d7-3af0-8890-abca3ca7d70d,SESCO,II.1.1,Neuquén,AR-Q,annual,2016,gas oil combustion consumption by public passenger transport,27.404807471999998,TJ,CH4,3.9,kg/TJ,106.8787491408,kg -3d6edd36-a6d7-3af0-8890-abca3ca7d70d,SESCO,II.1.1,Neuquén,AR-Q,annual,2016,gas oil combustion consumption by public passenger transport,27.404807471999998,TJ,N2O,3.9,kg/TJ,106.8787491408,kg -e3f67733-c89d-3db3-aa16-00ca066bec86,SESCO,II.1.1,Rio Negro,AR-R,annual,2016,gas oil combustion consumption by public passenger transport,145.919786544,TJ,CO2,74100.0,kg/TJ,10812656.1829104,kg -04ad23bb-8a4a-3b24-810b-750183f6ba91,SESCO,II.1.1,Rio Negro,AR-R,annual,2016,gas oil combustion consumption by public passenger transport,145.919786544,TJ,CH4,3.9,kg/TJ,569.0871675216,kg -04ad23bb-8a4a-3b24-810b-750183f6ba91,SESCO,II.1.1,Rio Negro,AR-R,annual,2016,gas oil combustion consumption by public passenger transport,145.919786544,TJ,N2O,3.9,kg/TJ,569.0871675216,kg -d85f3c33-1db0-307b-935d-ebd1b1af5e9d,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2016,gas oil combustion consumption by public passenger transport,0.18208092,TJ,CO2,74100.0,kg/TJ,13492.196172,kg -94e321c3-aa95-349a-bf87-90ef60937732,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2016,gas oil combustion consumption by public passenger transport,0.18208092,TJ,CH4,3.9,kg/TJ,0.710115588,kg -94e321c3-aa95-349a-bf87-90ef60937732,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2016,gas oil combustion consumption by public passenger transport,0.18208092,TJ,N2O,3.9,kg/TJ,0.710115588,kg -4723eeaf-a8f2-346a-8814-526c1ce4f72a,SESCO,II.1.1,Santa Fe,AR-S,annual,2016,gas oil combustion consumption by public passenger transport,7.766497115999999,TJ,CO2,74100.0,kg/TJ,575497.4362955999,kg -9236cfd1-ace5-3571-a092-26602dfdab59,SESCO,II.1.1,Santa Fe,AR-S,annual,2016,gas oil combustion consumption by public passenger transport,7.766497115999999,TJ,CH4,3.9,kg/TJ,30.289338752399996,kg -9236cfd1-ace5-3571-a092-26602dfdab59,SESCO,II.1.1,Santa Fe,AR-S,annual,2016,gas oil combustion consumption by public passenger transport,7.766497115999999,TJ,N2O,3.9,kg/TJ,30.289338752399996,kg -f5188691-b3fc-3466-b047-f40a8803e9d1,SESCO,II.1.1,Buenos Aires,AR-B,annual,2016,gas oil combustion consumption by public passenger transport,0.21455280000000002,TJ,CO2,74100.0,kg/TJ,15898.362480000002,kg -9726120a-492f-3378-83c3-bd418b0481f5,SESCO,II.1.1,Buenos Aires,AR-B,annual,2016,gas oil combustion consumption by public passenger transport,0.21455280000000002,TJ,CH4,3.9,kg/TJ,0.8367559200000001,kg -9726120a-492f-3378-83c3-bd418b0481f5,SESCO,II.1.1,Buenos Aires,AR-B,annual,2016,gas oil combustion consumption by public passenger transport,0.21455280000000002,TJ,N2O,3.9,kg/TJ,0.8367559200000001,kg -f9d529a2-d166-34ec-955d-4818e33698f3,SESCO,II.1.1,Buenos Aires,AR-B,annual,2016,gas oil combustion consumption by to the public,1039.432464,TJ,CO2,74100.0,kg/TJ,77021945.5824,kg -bce5de26-6cb3-37fe-ac17-2dec8fcd5f5e,SESCO,II.1.1,Buenos Aires,AR-B,annual,2016,gas oil combustion consumption by to the public,1039.432464,TJ,CH4,3.9,kg/TJ,4053.7866096,kg -bce5de26-6cb3-37fe-ac17-2dec8fcd5f5e,SESCO,II.1.1,Buenos Aires,AR-B,annual,2016,gas oil combustion consumption by to the public,1039.432464,TJ,N2O,3.9,kg/TJ,4053.7866096,kg -10379676-ab86-3a3e-86fc-351250ba6a02,SESCO,II.1.1,Capital Federal,AR-C,annual,2016,gas oil combustion consumption by to the public,200.6466,TJ,CO2,74100.0,kg/TJ,14867913.06,kg -a3a3cc2a-7cf4-32dc-bc83-5cd0b68c5d39,SESCO,II.1.1,Capital Federal,AR-C,annual,2016,gas oil combustion consumption by to the public,200.6466,TJ,CH4,3.9,kg/TJ,782.52174,kg -a3a3cc2a-7cf4-32dc-bc83-5cd0b68c5d39,SESCO,II.1.1,Capital Federal,AR-C,annual,2016,gas oil combustion consumption by to the public,200.6466,TJ,N2O,3.9,kg/TJ,782.52174,kg -dd6deb8b-6e89-3b2e-be23-349b2e3fdf6d,SESCO,II.1.1,Corrientes,AR-W,annual,2016,gas oil combustion consumption by to the public,3.3230399999999998,TJ,CO2,74100.0,kg/TJ,246237.264,kg -74719293-a63e-312d-bb72-b64747a7cbe1,SESCO,II.1.1,Corrientes,AR-W,annual,2016,gas oil combustion consumption by to the public,3.3230399999999998,TJ,CH4,3.9,kg/TJ,12.959855999999998,kg -74719293-a63e-312d-bb72-b64747a7cbe1,SESCO,II.1.1,Corrientes,AR-W,annual,2016,gas oil combustion consumption by to the public,3.3230399999999998,TJ,N2O,3.9,kg/TJ,12.959855999999998,kg -c34b3576-75ec-3257-8e55-01f8be5c4b83,SESCO,II.1.1,Córdoba,AR-X,annual,2016,gas oil combustion consumption by to the public,595.9077599999999,TJ,CO2,74100.0,kg/TJ,44156765.015999995,kg -a9aa22ef-7bce-3ed9-99f4-a5b899b2a86e,SESCO,II.1.1,Córdoba,AR-X,annual,2016,gas oil combustion consumption by to the public,595.9077599999999,TJ,CH4,3.9,kg/TJ,2324.0402639999998,kg -a9aa22ef-7bce-3ed9-99f4-a5b899b2a86e,SESCO,II.1.1,Córdoba,AR-X,annual,2016,gas oil combustion consumption by to the public,595.9077599999999,TJ,N2O,3.9,kg/TJ,2324.0402639999998,kg -2602a3b4-689e-3835-8eab-8d41e08c5396,SESCO,II.1.1,Entre Rios,AR-E,annual,2016,gas oil combustion consumption by to the public,34.028651999999994,TJ,CO2,74100.0,kg/TJ,2521523.1131999996,kg -0bcb1a32-4955-3eac-aa72-8317d8342dbe,SESCO,II.1.1,Entre Rios,AR-E,annual,2016,gas oil combustion consumption by to the public,34.028651999999994,TJ,CH4,3.9,kg/TJ,132.71174279999997,kg -0bcb1a32-4955-3eac-aa72-8317d8342dbe,SESCO,II.1.1,Entre Rios,AR-E,annual,2016,gas oil combustion consumption by to the public,34.028651999999994,TJ,N2O,3.9,kg/TJ,132.71174279999997,kg -c14feacc-78cf-34bb-8d03-aaa0658393f2,SESCO,II.1.1,Salta,AR-A,annual,2016,gas oil combustion consumption by to the public,10.2942,TJ,CO2,74100.0,kg/TJ,762800.22,kg -5e64212a-94d0-3d48-9cb0-602ebba5c17a,SESCO,II.1.1,Salta,AR-A,annual,2016,gas oil combustion consumption by to the public,10.2942,TJ,CH4,3.9,kg/TJ,40.14738,kg -5e64212a-94d0-3d48-9cb0-602ebba5c17a,SESCO,II.1.1,Salta,AR-A,annual,2016,gas oil combustion consumption by to the public,10.2942,TJ,N2O,3.9,kg/TJ,40.14738,kg -fc35c416-0b81-317f-aa6f-fe5a7f1a840f,SESCO,II.1.1,Santa Fe,AR-S,annual,2016,gas oil combustion consumption by to the public,52.51848,TJ,CO2,74100.0,kg/TJ,3891619.368,kg -5fd6225d-12d0-3092-a7c5-46fa23a6dad2,SESCO,II.1.1,Santa Fe,AR-S,annual,2016,gas oil combustion consumption by to the public,52.51848,TJ,CH4,3.9,kg/TJ,204.822072,kg -5fd6225d-12d0-3092-a7c5-46fa23a6dad2,SESCO,II.1.1,Santa Fe,AR-S,annual,2016,gas oil combustion consumption by to the public,52.51848,TJ,N2O,3.9,kg/TJ,204.822072,kg -26a589c9-7aa8-3c1f-8fce-bf2ca2e74ac4,SESCO,II.1.1,Buenos Aires,AR-B,annual,2016,gas oil combustion consumption by to the public,94.717476,TJ,CO2,74100.0,kg/TJ,7018564.971600001,kg -29a7ef6b-227c-3c33-ad74-c09248976583,SESCO,II.1.1,Buenos Aires,AR-B,annual,2016,gas oil combustion consumption by to the public,94.717476,TJ,CH4,3.9,kg/TJ,369.3981564,kg -29a7ef6b-227c-3c33-ad74-c09248976583,SESCO,II.1.1,Buenos Aires,AR-B,annual,2016,gas oil combustion consumption by to the public,94.717476,TJ,N2O,3.9,kg/TJ,369.3981564,kg -76a2d6cf-a6ca-304c-b34f-e9adff59728a,SESCO,II.1.1,Capital Federal,AR-C,annual,2016,gas oil combustion consumption by to the public,12.56976,TJ,CO2,74100.0,kg/TJ,931419.216,kg -ff713bf0-f92c-3a63-abc1-2aaf0bfa3c2a,SESCO,II.1.1,Capital Federal,AR-C,annual,2016,gas oil combustion consumption by to the public,12.56976,TJ,CH4,3.9,kg/TJ,49.022064,kg -ff713bf0-f92c-3a63-abc1-2aaf0bfa3c2a,SESCO,II.1.1,Capital Federal,AR-C,annual,2016,gas oil combustion consumption by to the public,12.56976,TJ,N2O,3.9,kg/TJ,49.022064,kg -2e3f8a12-60f9-300d-962d-51272213d6ee,SESCO,II.1.1,Córdoba,AR-X,annual,2016,gas oil combustion consumption by to the public,11.77512,TJ,CO2,74100.0,kg/TJ,872536.392,kg -db0989d5-b416-34db-bfc4-b020550b7e0f,SESCO,II.1.1,Córdoba,AR-X,annual,2016,gas oil combustion consumption by to the public,11.77512,TJ,CH4,3.9,kg/TJ,45.922968,kg -db0989d5-b416-34db-bfc4-b020550b7e0f,SESCO,II.1.1,Córdoba,AR-X,annual,2016,gas oil combustion consumption by to the public,11.77512,TJ,N2O,3.9,kg/TJ,45.922968,kg -e08bf9c2-fda1-3bca-a0c3-b9cc0e0caaea,SESCO,II.1.1,Entre Rios,AR-E,annual,2016,gas oil combustion consumption by to the public,6.461868,TJ,CO2,74100.0,kg/TJ,478824.4188,kg -8aaa26bd-3347-3881-8da0-b066c5e0150b,SESCO,II.1.1,Entre Rios,AR-E,annual,2016,gas oil combustion consumption by to the public,6.461868,TJ,CH4,3.9,kg/TJ,25.2012852,kg -8aaa26bd-3347-3881-8da0-b066c5e0150b,SESCO,II.1.1,Entre Rios,AR-E,annual,2016,gas oil combustion consumption by to the public,6.461868,TJ,N2O,3.9,kg/TJ,25.2012852,kg -ab00b845-e120-300e-963b-f51be004cb5d,SESCO,II.1.1,Santa Fe,AR-S,annual,2016,gas oil combustion consumption by to the public,5.45412,TJ,CO2,74100.0,kg/TJ,404150.29199999996,kg -b6e910eb-6131-3c7b-a058-39432f93aa97,SESCO,II.1.1,Santa Fe,AR-S,annual,2016,gas oil combustion consumption by to the public,5.45412,TJ,CH4,3.9,kg/TJ,21.271068,kg -b6e910eb-6131-3c7b-a058-39432f93aa97,SESCO,II.1.1,Santa Fe,AR-S,annual,2016,gas oil combustion consumption by to the public,5.45412,TJ,N2O,3.9,kg/TJ,21.271068,kg -5feb7a6a-349f-3bdb-8627-ec663bf4448d,SESCO,II.1.1,Catamarca,AR-K,annual,2016,gas oil combustion consumption by to the public,178.77991319999998,TJ,CO2,74100.0,kg/TJ,13247591.568119999,kg -3c058028-b69d-344e-bd1a-236203580c2a,SESCO,II.1.1,Catamarca,AR-K,annual,2016,gas oil combustion consumption by to the public,178.77991319999998,TJ,CH4,3.9,kg/TJ,697.24166148,kg -3c058028-b69d-344e-bd1a-236203580c2a,SESCO,II.1.1,Catamarca,AR-K,annual,2016,gas oil combustion consumption by to the public,178.77991319999998,TJ,N2O,3.9,kg/TJ,697.24166148,kg -1b63e880-281c-3b16-9cdb-46328dddd0e4,SESCO,II.1.1,Chaco,AR-H,annual,2016,gas oil combustion consumption by to the public,102.2452452,TJ,CO2,74100.0,kg/TJ,7576372.66932,kg -572c7cfa-5a63-3cee-a1da-a64d70f92840,SESCO,II.1.1,Chaco,AR-H,annual,2016,gas oil combustion consumption by to the public,102.2452452,TJ,CH4,3.9,kg/TJ,398.75645628,kg -572c7cfa-5a63-3cee-a1da-a64d70f92840,SESCO,II.1.1,Chaco,AR-H,annual,2016,gas oil combustion consumption by to the public,102.2452452,TJ,N2O,3.9,kg/TJ,398.75645628,kg -d387d6ab-2f81-3304-92fb-5cf028fd4d29,SESCO,II.1.1,Jujuy,AR-Y,annual,2016,gas oil combustion consumption by to the public,581.4359208,TJ,CO2,74100.0,kg/TJ,43084401.73128,kg -ab054197-6733-3d55-af7c-4dd0de7da448,SESCO,II.1.1,Jujuy,AR-Y,annual,2016,gas oil combustion consumption by to the public,581.4359208,TJ,CH4,3.9,kg/TJ,2267.60009112,kg -ab054197-6733-3d55-af7c-4dd0de7da448,SESCO,II.1.1,Jujuy,AR-Y,annual,2016,gas oil combustion consumption by to the public,581.4359208,TJ,N2O,3.9,kg/TJ,2267.60009112,kg -0cce1bdf-36d1-3198-931e-4dcbcc156e82,SESCO,II.1.1,La Rioja,AR-F,annual,2016,gas oil combustion consumption by to the public,177.4283028,TJ,CO2,74100.0,kg/TJ,13147437.237480002,kg -77e7a665-dddd-32ea-84d0-0f591685f8dc,SESCO,II.1.1,La Rioja,AR-F,annual,2016,gas oil combustion consumption by to the public,177.4283028,TJ,CH4,3.9,kg/TJ,691.97038092,kg -77e7a665-dddd-32ea-84d0-0f591685f8dc,SESCO,II.1.1,La Rioja,AR-F,annual,2016,gas oil combustion consumption by to the public,177.4283028,TJ,N2O,3.9,kg/TJ,691.97038092,kg -79267c1b-ce46-3bdd-ac50-b8a953c2d3d0,SESCO,II.1.1,Salta,AR-A,annual,2016,gas oil combustion consumption by to the public,1827.2107476,TJ,CO2,74100.0,kg/TJ,135396316.39716,kg -d9de5152-b6e7-3eae-bd84-3f4e77ac823b,SESCO,II.1.1,Salta,AR-A,annual,2016,gas oil combustion consumption by to the public,1827.2107476,TJ,CH4,3.9,kg/TJ,7126.12191564,kg -d9de5152-b6e7-3eae-bd84-3f4e77ac823b,SESCO,II.1.1,Salta,AR-A,annual,2016,gas oil combustion consumption by to the public,1827.2107476,TJ,N2O,3.9,kg/TJ,7126.12191564,kg -2a1df0cd-b736-30f4-bf05-f18d942aae0c,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2016,gas oil combustion consumption by to the public,302.553762,TJ,CO2,74100.0,kg/TJ,22419233.764200002,kg -83a988ed-8983-352b-981b-0afb19141601,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2016,gas oil combustion consumption by to the public,302.553762,TJ,CH4,3.9,kg/TJ,1179.9596718,kg -83a988ed-8983-352b-981b-0afb19141601,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2016,gas oil combustion consumption by to the public,302.553762,TJ,N2O,3.9,kg/TJ,1179.9596718,kg -154ba052-2859-30bf-9074-1df49e318afa,SESCO,II.1.1,Tucuman,AR-T,annual,2016,gas oil combustion consumption by to the public,1987.3155371999999,TJ,CO2,74100.0,kg/TJ,147260081.30652,kg -77b930b7-d68c-35e6-9f9b-c79743da5185,SESCO,II.1.1,Tucuman,AR-T,annual,2016,gas oil combustion consumption by to the public,1987.3155371999999,TJ,CH4,3.9,kg/TJ,7750.530595079999,kg -77b930b7-d68c-35e6-9f9b-c79743da5185,SESCO,II.1.1,Tucuman,AR-T,annual,2016,gas oil combustion consumption by to the public,1987.3155371999999,TJ,N2O,3.9,kg/TJ,7750.530595079999,kg -cb913ddd-3083-3d73-9c9e-fd3170f5d387,SESCO,II.1.1,Catamarca,AR-K,annual,2016,gas oil combustion consumption by to the public,26.894952,TJ,CO2,74100.0,kg/TJ,1992915.9432,kg -0a3688b1-7fa1-36bc-89b6-1a8200519eac,SESCO,II.1.1,Catamarca,AR-K,annual,2016,gas oil combustion consumption by to the public,26.894952,TJ,CH4,3.9,kg/TJ,104.8903128,kg -0a3688b1-7fa1-36bc-89b6-1a8200519eac,SESCO,II.1.1,Catamarca,AR-K,annual,2016,gas oil combustion consumption by to the public,26.894952,TJ,N2O,3.9,kg/TJ,104.8903128,kg -f2036d1f-38f8-38b7-aa43-aec980be1526,SESCO,II.1.1,Chaco,AR-H,annual,2016,gas oil combustion consumption by to the public,8.8400088,TJ,CO2,74100.0,kg/TJ,655044.65208,kg -8b3d5840-bdf9-3e3a-8ee2-97bfa9654517,SESCO,II.1.1,Chaco,AR-H,annual,2016,gas oil combustion consumption by to the public,8.8400088,TJ,CH4,3.9,kg/TJ,34.47603432,kg -8b3d5840-bdf9-3e3a-8ee2-97bfa9654517,SESCO,II.1.1,Chaco,AR-H,annual,2016,gas oil combustion consumption by to the public,8.8400088,TJ,N2O,3.9,kg/TJ,34.47603432,kg -70ead23a-35c4-339f-8bb3-9ffa68e6e94a,SESCO,II.1.1,Jujuy,AR-Y,annual,2016,gas oil combustion consumption by to the public,47.405694000000004,TJ,CO2,74100.0,kg/TJ,3512761.9254,kg -07be5a37-d5bc-314d-8f7d-649fdfa43b94,SESCO,II.1.1,Jujuy,AR-Y,annual,2016,gas oil combustion consumption by to the public,47.405694000000004,TJ,CH4,3.9,kg/TJ,184.88220660000002,kg -07be5a37-d5bc-314d-8f7d-649fdfa43b94,SESCO,II.1.1,Jujuy,AR-Y,annual,2016,gas oil combustion consumption by to the public,47.405694000000004,TJ,N2O,3.9,kg/TJ,184.88220660000002,kg -ae5af42c-d031-3420-84b1-56af37e7395a,SESCO,II.1.1,La Rioja,AR-F,annual,2016,gas oil combustion consumption by to the public,51.111605999999995,TJ,CO2,74100.0,kg/TJ,3787370.0045999996,kg -6361c710-acbc-3945-ba2b-1e664b0ecbc0,SESCO,II.1.1,La Rioja,AR-F,annual,2016,gas oil combustion consumption by to the public,51.111605999999995,TJ,CH4,3.9,kg/TJ,199.33526339999997,kg -6361c710-acbc-3945-ba2b-1e664b0ecbc0,SESCO,II.1.1,La Rioja,AR-F,annual,2016,gas oil combustion consumption by to the public,51.111605999999995,TJ,N2O,3.9,kg/TJ,199.33526339999997,kg -00d435cc-0404-3f8f-920d-048b57841280,SESCO,II.1.1,Salta,AR-A,annual,2016,gas oil combustion consumption by to the public,121.7670216,TJ,CO2,74100.0,kg/TJ,9022936.300560001,kg -9169a7a9-ccf5-382d-b377-d24fddd47a3d,SESCO,II.1.1,Salta,AR-A,annual,2016,gas oil combustion consumption by to the public,121.7670216,TJ,CH4,3.9,kg/TJ,474.89138424000004,kg -9169a7a9-ccf5-382d-b377-d24fddd47a3d,SESCO,II.1.1,Salta,AR-A,annual,2016,gas oil combustion consumption by to the public,121.7670216,TJ,N2O,3.9,kg/TJ,474.89138424000004,kg -c8cced7b-b840-3d69-93c0-1eed6301df75,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2016,gas oil combustion consumption by to the public,54.9461052,TJ,CO2,74100.0,kg/TJ,4071506.3953199997,kg -f5b0f46d-87a7-38fb-8686-d11af3700b9b,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2016,gas oil combustion consumption by to the public,54.9461052,TJ,CH4,3.9,kg/TJ,214.28981027999998,kg -f5b0f46d-87a7-38fb-8686-d11af3700b9b,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2016,gas oil combustion consumption by to the public,54.9461052,TJ,N2O,3.9,kg/TJ,214.28981027999998,kg -1ddfc819-055e-3304-b652-8c40589fa524,SESCO,II.1.1,Tucuman,AR-T,annual,2016,gas oil combustion consumption by to the public,227.80631160000002,TJ,CO2,74100.0,kg/TJ,16880447.68956,kg -ce1146b4-d097-3c2a-a88a-638c02173560,SESCO,II.1.1,Tucuman,AR-T,annual,2016,gas oil combustion consumption by to the public,227.80631160000002,TJ,CH4,3.9,kg/TJ,888.4446152400001,kg -ce1146b4-d097-3c2a-a88a-638c02173560,SESCO,II.1.1,Tucuman,AR-T,annual,2016,gas oil combustion consumption by to the public,227.80631160000002,TJ,N2O,3.9,kg/TJ,888.4446152400001,kg -333b97cc-fe48-353a-a3a3-a49d53d13bae,SESCO,I.3.1,Buenos Aires,AR-B,annual,2016,gasoline combustion consumption by petrochemical industries,28.017535000000002,TJ,CO2,69300.0,kg/TJ,1941615.1755000001,kg -c4f9d7bb-6963-36ef-9dfa-f359e714dab6,SESCO,I.3.1,Buenos Aires,AR-B,annual,2016,gasoline combustion consumption by petrochemical industries,28.017535000000002,TJ,CH4,33.0,kg/TJ,924.578655,kg -17273c6b-02be-3965-a9ac-bdbd05cc1596,SESCO,I.3.1,Buenos Aires,AR-B,annual,2016,gasoline combustion consumption by petrochemical industries,28.017535000000002,TJ,N2O,3.2,kg/TJ,89.65611200000001,kg -4d1d0ac8-c31c-3910-b849-c8f1495253d6,SESCO,II.5.1,Buenos Aires,AR-B,annual,2016,gas oil combustion consumption by agriculture machines,389.80704,TJ,CO2,74100.0,kg/TJ,28884701.663999997,kg -eb2f80ff-759b-36e5-a515-316c8d413e1d,SESCO,II.5.1,Buenos Aires,AR-B,annual,2016,gas oil combustion consumption by agriculture machines,389.80704,TJ,CH4,3.9,kg/TJ,1520.2474559999998,kg -eb2f80ff-759b-36e5-a515-316c8d413e1d,SESCO,II.5.1,Buenos Aires,AR-B,annual,2016,gas oil combustion consumption by agriculture machines,389.80704,TJ,N2O,3.9,kg/TJ,1520.2474559999998,kg -caa95192-8e79-32e8-9472-0dc0f46fd7e5,SESCO,II.5.1,Capital Federal,AR-C,annual,2016,gas oil combustion consumption by agriculture machines,19.866,TJ,CO2,74100.0,kg/TJ,1472070.5999999999,kg -5f310f78-bc1e-39a1-b06f-bd00f46ede7b,SESCO,II.5.1,Capital Federal,AR-C,annual,2016,gas oil combustion consumption by agriculture machines,19.866,TJ,CH4,3.9,kg/TJ,77.4774,kg -5f310f78-bc1e-39a1-b06f-bd00f46ede7b,SESCO,II.5.1,Capital Federal,AR-C,annual,2016,gas oil combustion consumption by agriculture machines,19.866,TJ,N2O,3.9,kg/TJ,77.4774,kg -3a6117d0-3c20-3e40-8a22-b7ffb99331bb,SESCO,II.5.1,Córdoba,AR-X,annual,2016,gas oil combustion consumption by agriculture machines,187.17383999999998,TJ,CO2,74100.0,kg/TJ,13869581.544,kg -3e63aa53-22cc-3f0f-a6f1-252f5ebdfbb4,SESCO,II.5.1,Córdoba,AR-X,annual,2016,gas oil combustion consumption by agriculture machines,187.17383999999998,TJ,CH4,3.9,kg/TJ,729.9779759999999,kg -3e63aa53-22cc-3f0f-a6f1-252f5ebdfbb4,SESCO,II.5.1,Córdoba,AR-X,annual,2016,gas oil combustion consumption by agriculture machines,187.17383999999998,TJ,N2O,3.9,kg/TJ,729.9779759999999,kg -3e693ace-fce1-399f-8223-e8be464f3312,SESCO,II.5.1,Entre Rios,AR-E,annual,2016,gas oil combustion consumption by agriculture machines,25.24788,TJ,CO2,74100.0,kg/TJ,1870867.9079999998,kg -3b9953a5-bcf1-3d67-af77-b90cdd225285,SESCO,II.5.1,Entre Rios,AR-E,annual,2016,gas oil combustion consumption by agriculture machines,25.24788,TJ,CH4,3.9,kg/TJ,98.466732,kg -3b9953a5-bcf1-3d67-af77-b90cdd225285,SESCO,II.5.1,Entre Rios,AR-E,annual,2016,gas oil combustion consumption by agriculture machines,25.24788,TJ,N2O,3.9,kg/TJ,98.466732,kg -0d3a0a29-a94f-3c24-900a-014bb29803f3,SESCO,II.5.1,Santa Fe,AR-S,annual,2016,gas oil combustion consumption by agriculture machines,47.24496,TJ,CO2,74100.0,kg/TJ,3500851.536,kg -e87534dc-50c1-39a1-afff-cb3d22ab177b,SESCO,II.5.1,Santa Fe,AR-S,annual,2016,gas oil combustion consumption by agriculture machines,47.24496,TJ,CH4,3.9,kg/TJ,184.25534399999998,kg -e87534dc-50c1-39a1-afff-cb3d22ab177b,SESCO,II.5.1,Santa Fe,AR-S,annual,2016,gas oil combustion consumption by agriculture machines,47.24496,TJ,N2O,3.9,kg/TJ,184.25534399999998,kg -c9a72fd5-6cba-3bf7-8c95-a73810113fc7,SESCO,II.5.1,Buenos Aires,AR-B,annual,2016,gas oil combustion consumption by agriculture machines,7.5851999999999995,TJ,CO2,74100.0,kg/TJ,562063.32,kg -acb8f5e5-53a0-3419-b10b-656ae7c8fcef,SESCO,II.5.1,Buenos Aires,AR-B,annual,2016,gas oil combustion consumption by agriculture machines,7.5851999999999995,TJ,CH4,3.9,kg/TJ,29.582279999999997,kg -acb8f5e5-53a0-3419-b10b-656ae7c8fcef,SESCO,II.5.1,Buenos Aires,AR-B,annual,2016,gas oil combustion consumption by agriculture machines,7.5851999999999995,TJ,N2O,3.9,kg/TJ,29.582279999999997,kg -7affca53-79fb-3f03-9e43-e8aff290c4d3,SESCO,II.5.1,Córdoba,AR-X,annual,2016,gas oil combustion consumption by agriculture machines,1.33644,TJ,CO2,74100.0,kg/TJ,99030.20400000001,kg -5bc15247-2b16-372c-a5bd-827ad37ed1bf,SESCO,II.5.1,Córdoba,AR-X,annual,2016,gas oil combustion consumption by agriculture machines,1.33644,TJ,CH4,3.9,kg/TJ,5.212116,kg -5bc15247-2b16-372c-a5bd-827ad37ed1bf,SESCO,II.5.1,Córdoba,AR-X,annual,2016,gas oil combustion consumption by agriculture machines,1.33644,TJ,N2O,3.9,kg/TJ,5.212116,kg -a60b6e08-8712-37f5-ae54-a9c0f937481f,SESCO,II.5.1,Entre Rios,AR-E,annual,2016,gas oil combustion consumption by agriculture machines,8.23536,TJ,CO2,74100.0,kg/TJ,610240.176,kg -dc09d4ab-ea70-3ee7-8afa-490602ea27ad,SESCO,II.5.1,Entre Rios,AR-E,annual,2016,gas oil combustion consumption by agriculture machines,8.23536,TJ,CH4,3.9,kg/TJ,32.117903999999996,kg -dc09d4ab-ea70-3ee7-8afa-490602ea27ad,SESCO,II.5.1,Entre Rios,AR-E,annual,2016,gas oil combustion consumption by agriculture machines,8.23536,TJ,N2O,3.9,kg/TJ,32.117903999999996,kg -3499a7f2-6ab2-3aa5-86f8-c5d410735564,SESCO,II.1.1,Buenos Aires,AR-B,annual,2016,gas oil combustion consumption by to the public,13904.24952,TJ,CO2,74100.0,kg/TJ,1030304889.4319999,kg -9ebfd6bd-8479-3608-aed3-59463b26767c,SESCO,II.1.1,Buenos Aires,AR-B,annual,2016,gas oil combustion consumption by to the public,13904.24952,TJ,CH4,3.9,kg/TJ,54226.573127999996,kg -9ebfd6bd-8479-3608-aed3-59463b26767c,SESCO,II.1.1,Buenos Aires,AR-B,annual,2016,gas oil combustion consumption by to the public,13904.24952,TJ,N2O,3.9,kg/TJ,54226.573127999996,kg -2fc7c775-c0d6-378b-a284-1b0e6e96bd27,SESCO,II.1.1,Capital Federal,AR-C,annual,2016,gas oil combustion consumption by to the public,1054.8846,TJ,CO2,74100.0,kg/TJ,78166948.86,kg -6178a452-23c9-333d-b966-ea91add6a65e,SESCO,II.1.1,Capital Federal,AR-C,annual,2016,gas oil combustion consumption by to the public,1054.8846,TJ,CH4,3.9,kg/TJ,4114.04994,kg -6178a452-23c9-333d-b966-ea91add6a65e,SESCO,II.1.1,Capital Federal,AR-C,annual,2016,gas oil combustion consumption by to the public,1054.8846,TJ,N2O,3.9,kg/TJ,4114.04994,kg -1a68d241-6bda-3867-bfb5-af083e021c09,SESCO,II.1.1,Catamarca,AR-K,annual,2016,gas oil combustion consumption by to the public,12.642,TJ,CO2,74100.0,kg/TJ,936772.2,kg -49cf501d-17f9-3242-9155-bf3133f4fefd,SESCO,II.1.1,Catamarca,AR-K,annual,2016,gas oil combustion consumption by to the public,12.642,TJ,CH4,3.9,kg/TJ,49.303799999999995,kg -49cf501d-17f9-3242-9155-bf3133f4fefd,SESCO,II.1.1,Catamarca,AR-K,annual,2016,gas oil combustion consumption by to the public,12.642,TJ,N2O,3.9,kg/TJ,49.303799999999995,kg -9764bbb5-cbe9-3378-b020-dc3e8ad12d84,SESCO,II.1.1,Chaco,AR-H,annual,2016,gas oil combustion consumption by to the public,1790.14332,TJ,CO2,74100.0,kg/TJ,132649620.012,kg -409c8554-7403-34fd-bba2-ae90a6db4dc5,SESCO,II.1.1,Chaco,AR-H,annual,2016,gas oil combustion consumption by to the public,1790.14332,TJ,CH4,3.9,kg/TJ,6981.558948,kg -409c8554-7403-34fd-bba2-ae90a6db4dc5,SESCO,II.1.1,Chaco,AR-H,annual,2016,gas oil combustion consumption by to the public,1790.14332,TJ,N2O,3.9,kg/TJ,6981.558948,kg -08bbd466-c56f-39dd-8e22-f4a61f073fd9,SESCO,II.1.1,Corrientes,AR-W,annual,2016,gas oil combustion consumption by to the public,620.28876,TJ,CO2,74100.0,kg/TJ,45963397.116000004,kg -f132db89-8979-327b-8c50-07e46d9d07b7,SESCO,II.1.1,Corrientes,AR-W,annual,2016,gas oil combustion consumption by to the public,620.28876,TJ,CH4,3.9,kg/TJ,2419.1261640000002,kg -f132db89-8979-327b-8c50-07e46d9d07b7,SESCO,II.1.1,Corrientes,AR-W,annual,2016,gas oil combustion consumption by to the public,620.28876,TJ,N2O,3.9,kg/TJ,2419.1261640000002,kg -3ae526bb-1833-34dd-b39b-16d2bd0d375f,SESCO,II.1.1,Córdoba,AR-X,annual,2016,gas oil combustion consumption by to the public,5382.782999999999,TJ,CO2,74100.0,kg/TJ,398864220.29999995,kg -f9e0582d-d959-3896-b062-89819955a6ca,SESCO,II.1.1,Córdoba,AR-X,annual,2016,gas oil combustion consumption by to the public,5382.782999999999,TJ,CH4,3.9,kg/TJ,20992.853699999996,kg -f9e0582d-d959-3896-b062-89819955a6ca,SESCO,II.1.1,Córdoba,AR-X,annual,2016,gas oil combustion consumption by to the public,5382.782999999999,TJ,N2O,3.9,kg/TJ,20992.853699999996,kg -ca26dd0d-08a7-33b6-82a8-f359daf5168e,SESCO,II.1.1,Entre Rios,AR-E,annual,2016,gas oil combustion consumption by to the public,1163.89476,TJ,CO2,74100.0,kg/TJ,86244601.71599999,kg -316d524e-cea0-3917-9ca3-f81ea4bae287,SESCO,II.1.1,Entre Rios,AR-E,annual,2016,gas oil combustion consumption by to the public,1163.89476,TJ,CH4,3.9,kg/TJ,4539.189563999999,kg -316d524e-cea0-3917-9ca3-f81ea4bae287,SESCO,II.1.1,Entre Rios,AR-E,annual,2016,gas oil combustion consumption by to the public,1163.89476,TJ,N2O,3.9,kg/TJ,4539.189563999999,kg -efd22726-c361-335e-8fce-cc778a7c0502,SESCO,II.1.1,Formosa,AR-P,annual,2016,gas oil combustion consumption by to the public,142.16832,TJ,CO2,74100.0,kg/TJ,10534672.512,kg -593e2a23-4638-3ebb-bfdf-e553c8e86d9e,SESCO,II.1.1,Formosa,AR-P,annual,2016,gas oil combustion consumption by to the public,142.16832,TJ,CH4,3.9,kg/TJ,554.4564479999999,kg -593e2a23-4638-3ebb-bfdf-e553c8e86d9e,SESCO,II.1.1,Formosa,AR-P,annual,2016,gas oil combustion consumption by to the public,142.16832,TJ,N2O,3.9,kg/TJ,554.4564479999999,kg -c30bbced-d17f-38fc-985c-bd8fab0686e7,SESCO,II.1.1,Jujuy,AR-Y,annual,2016,gas oil combustion consumption by to the public,106.59012,TJ,CO2,74100.0,kg/TJ,7898327.892,kg -c1d89c50-e7d1-3dfd-8ebe-2d9fb3061708,SESCO,II.1.1,Jujuy,AR-Y,annual,2016,gas oil combustion consumption by to the public,106.59012,TJ,CH4,3.9,kg/TJ,415.701468,kg -c1d89c50-e7d1-3dfd-8ebe-2d9fb3061708,SESCO,II.1.1,Jujuy,AR-Y,annual,2016,gas oil combustion consumption by to the public,106.59012,TJ,N2O,3.9,kg/TJ,415.701468,kg -101ae487-94a6-39b9-85da-ed1c196a8c63,SESCO,II.1.1,La Pampa,AR-L,annual,2016,gas oil combustion consumption by to the public,739.15968,TJ,CO2,74100.0,kg/TJ,54771732.287999995,kg -29c2f28b-ec63-312e-a5a2-ff3ce2ffbac9,SESCO,II.1.1,La Pampa,AR-L,annual,2016,gas oil combustion consumption by to the public,739.15968,TJ,CH4,3.9,kg/TJ,2882.7227519999997,kg -29c2f28b-ec63-312e-a5a2-ff3ce2ffbac9,SESCO,II.1.1,La Pampa,AR-L,annual,2016,gas oil combustion consumption by to the public,739.15968,TJ,N2O,3.9,kg/TJ,2882.7227519999997,kg -bea2aa2c-3e31-353c-b07e-1332e03908d7,SESCO,II.1.1,La Rioja,AR-F,annual,2016,gas oil combustion consumption by to the public,252.37044,TJ,CO2,74100.0,kg/TJ,18700649.604,kg -6bfc5349-773c-3519-a44e-e026f1116980,SESCO,II.1.1,La Rioja,AR-F,annual,2016,gas oil combustion consumption by to the public,252.37044,TJ,CH4,3.9,kg/TJ,984.244716,kg -6bfc5349-773c-3519-a44e-e026f1116980,SESCO,II.1.1,La Rioja,AR-F,annual,2016,gas oil combustion consumption by to the public,252.37044,TJ,N2O,3.9,kg/TJ,984.244716,kg -3bdefb3f-c863-30f8-9f4a-3210720d88b4,SESCO,II.1.1,Mendoza,AR-M,annual,2016,gas oil combustion consumption by to the public,611.00592,TJ,CO2,74100.0,kg/TJ,45275538.672,kg -6560867f-563b-3ac4-ad5c-141037ed86b1,SESCO,II.1.1,Mendoza,AR-M,annual,2016,gas oil combustion consumption by to the public,611.00592,TJ,CH4,3.9,kg/TJ,2382.9230879999996,kg -6560867f-563b-3ac4-ad5c-141037ed86b1,SESCO,II.1.1,Mendoza,AR-M,annual,2016,gas oil combustion consumption by to the public,611.00592,TJ,N2O,3.9,kg/TJ,2382.9230879999996,kg -839b001b-5011-3104-9358-650d220bd34d,SESCO,II.1.1,Misiones,AR-N,annual,2016,gas oil combustion consumption by to the public,1149.3383999999999,TJ,CO2,74100.0,kg/TJ,85165975.43999998,kg -16340739-fbee-3f11-8183-4d7b8989ac37,SESCO,II.1.1,Misiones,AR-N,annual,2016,gas oil combustion consumption by to the public,1149.3383999999999,TJ,CH4,3.9,kg/TJ,4482.41976,kg -16340739-fbee-3f11-8183-4d7b8989ac37,SESCO,II.1.1,Misiones,AR-N,annual,2016,gas oil combustion consumption by to the public,1149.3383999999999,TJ,N2O,3.9,kg/TJ,4482.41976,kg -8548ab39-1a26-3118-ac92-1bc81400547c,SESCO,II.1.1,Neuquén,AR-Q,annual,2016,gas oil combustion consumption by to the public,555.77844,TJ,CO2,74100.0,kg/TJ,41183182.40400001,kg -e45c16c9-e124-3910-afea-6aa0412ca72d,SESCO,II.1.1,Neuquén,AR-Q,annual,2016,gas oil combustion consumption by to the public,555.77844,TJ,CH4,3.9,kg/TJ,2167.5359160000003,kg -e45c16c9-e124-3910-afea-6aa0412ca72d,SESCO,II.1.1,Neuquén,AR-Q,annual,2016,gas oil combustion consumption by to the public,555.77844,TJ,N2O,3.9,kg/TJ,2167.5359160000003,kg -fee556a7-e1a5-35fe-92c8-ec966ab89608,SESCO,II.1.1,Rio Negro,AR-R,annual,2016,gas oil combustion consumption by to the public,223.51056,TJ,CO2,74100.0,kg/TJ,16562132.496,kg -f69ba749-a0cd-36f1-b305-a29824b72770,SESCO,II.1.1,Rio Negro,AR-R,annual,2016,gas oil combustion consumption by to the public,223.51056,TJ,CH4,3.9,kg/TJ,871.691184,kg -f69ba749-a0cd-36f1-b305-a29824b72770,SESCO,II.1.1,Rio Negro,AR-R,annual,2016,gas oil combustion consumption by to the public,223.51056,TJ,N2O,3.9,kg/TJ,871.691184,kg -dae60fff-afc6-3ac5-a209-e257219ce268,SESCO,II.1.1,Salta,AR-A,annual,2016,gas oil combustion consumption by to the public,122.69964,TJ,CO2,74100.0,kg/TJ,9092043.324000001,kg -46c770d7-625b-3c02-9b0f-6e7d7f11a92d,SESCO,II.1.1,Salta,AR-A,annual,2016,gas oil combustion consumption by to the public,122.69964,TJ,CH4,3.9,kg/TJ,478.528596,kg -46c770d7-625b-3c02-9b0f-6e7d7f11a92d,SESCO,II.1.1,Salta,AR-A,annual,2016,gas oil combustion consumption by to the public,122.69964,TJ,N2O,3.9,kg/TJ,478.528596,kg -6d96df63-56d3-3f8b-a50f-79ddfded5e15,SESCO,II.1.1,San Juan,AR-J,annual,2016,gas oil combustion consumption by to the public,280.90524,TJ,CO2,74100.0,kg/TJ,20815078.283999998,kg -6f569528-b4d9-3664-9a77-fa21d949fa67,SESCO,II.1.1,San Juan,AR-J,annual,2016,gas oil combustion consumption by to the public,280.90524,TJ,CH4,3.9,kg/TJ,1095.530436,kg -6f569528-b4d9-3664-9a77-fa21d949fa67,SESCO,II.1.1,San Juan,AR-J,annual,2016,gas oil combustion consumption by to the public,280.90524,TJ,N2O,3.9,kg/TJ,1095.530436,kg -881915e0-4970-3535-9de7-361f6cf20d46,SESCO,II.1.1,San Luis,AR-D,annual,2016,gas oil combustion consumption by to the public,54.97464,TJ,CO2,74100.0,kg/TJ,4073620.824,kg -4476025e-df94-3488-add8-88a808e7dc13,SESCO,II.1.1,San Luis,AR-D,annual,2016,gas oil combustion consumption by to the public,54.97464,TJ,CH4,3.9,kg/TJ,214.401096,kg -4476025e-df94-3488-add8-88a808e7dc13,SESCO,II.1.1,San Luis,AR-D,annual,2016,gas oil combustion consumption by to the public,54.97464,TJ,N2O,3.9,kg/TJ,214.401096,kg -6653597e-96a3-3794-ae89-a74204719c35,SESCO,II.1.1,Santa Fe,AR-S,annual,2016,gas oil combustion consumption by to the public,5181.34176,TJ,CO2,74100.0,kg/TJ,383937424.416,kg -50ab4a42-be19-362b-ae1b-8e78d8474945,SESCO,II.1.1,Santa Fe,AR-S,annual,2016,gas oil combustion consumption by to the public,5181.34176,TJ,CH4,3.9,kg/TJ,20207.232864,kg -50ab4a42-be19-362b-ae1b-8e78d8474945,SESCO,II.1.1,Santa Fe,AR-S,annual,2016,gas oil combustion consumption by to the public,5181.34176,TJ,N2O,3.9,kg/TJ,20207.232864,kg -426adb85-56c7-3384-bdfc-be22add19913,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2016,gas oil combustion consumption by to the public,455.32872,TJ,CO2,74100.0,kg/TJ,33739858.151999995,kg -8a5846b1-780f-39f6-bea5-24b322ef2d00,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2016,gas oil combustion consumption by to the public,455.32872,TJ,CH4,3.9,kg/TJ,1775.782008,kg -8a5846b1-780f-39f6-bea5-24b322ef2d00,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2016,gas oil combustion consumption by to the public,455.32872,TJ,N2O,3.9,kg/TJ,1775.782008,kg -3785f054-5d52-3eb7-98f8-301f17b9c755,SESCO,II.1.1,Tucuman,AR-T,annual,2016,gas oil combustion consumption by to the public,860.30616,TJ,CO2,74100.0,kg/TJ,63748686.456,kg -bae7fcfd-e396-34a4-a2c2-c67ba360c54e,SESCO,II.1.1,Tucuman,AR-T,annual,2016,gas oil combustion consumption by to the public,860.30616,TJ,CH4,3.9,kg/TJ,3355.194024,kg -bae7fcfd-e396-34a4-a2c2-c67ba360c54e,SESCO,II.1.1,Tucuman,AR-T,annual,2016,gas oil combustion consumption by to the public,860.30616,TJ,N2O,3.9,kg/TJ,3355.194024,kg -ba558b5b-38b5-3a9d-8794-f4de6d5dda79,SESCO,II.1.1,Buenos Aires,AR-B,annual,2016,gas oil combustion consumption by to the public,7827.6374399999995,TJ,CO2,74100.0,kg/TJ,580027934.304,kg -2daa18a0-b585-326b-9989-b1020e1ebe4f,SESCO,II.1.1,Buenos Aires,AR-B,annual,2016,gas oil combustion consumption by to the public,7827.6374399999995,TJ,CH4,3.9,kg/TJ,30527.786016,kg -2daa18a0-b585-326b-9989-b1020e1ebe4f,SESCO,II.1.1,Buenos Aires,AR-B,annual,2016,gas oil combustion consumption by to the public,7827.6374399999995,TJ,N2O,3.9,kg/TJ,30527.786016,kg -8ff4de31-6d13-3f14-9c23-1ab6e48c5a2a,SESCO,II.1.1,Capital Federal,AR-C,annual,2016,gas oil combustion consumption by to the public,1372.41552,TJ,CO2,74100.0,kg/TJ,101695990.032,kg -3df7aa46-c90d-36fe-b5ba-6e1c2ba6465b,SESCO,II.1.1,Capital Federal,AR-C,annual,2016,gas oil combustion consumption by to the public,1372.41552,TJ,CH4,3.9,kg/TJ,5352.420528,kg -3df7aa46-c90d-36fe-b5ba-6e1c2ba6465b,SESCO,II.1.1,Capital Federal,AR-C,annual,2016,gas oil combustion consumption by to the public,1372.41552,TJ,N2O,3.9,kg/TJ,5352.420528,kg -ac8a7a3a-676d-332a-8caa-813d275c17e6,SESCO,II.1.1,Catamarca,AR-K,annual,2016,gas oil combustion consumption by to the public,43.30788,TJ,CO2,74100.0,kg/TJ,3209113.908,kg -90e3f0a0-fc6c-3fba-935b-3a4305bff4de,SESCO,II.1.1,Catamarca,AR-K,annual,2016,gas oil combustion consumption by to the public,43.30788,TJ,CH4,3.9,kg/TJ,168.90073199999998,kg -90e3f0a0-fc6c-3fba-935b-3a4305bff4de,SESCO,II.1.1,Catamarca,AR-K,annual,2016,gas oil combustion consumption by to the public,43.30788,TJ,N2O,3.9,kg/TJ,168.90073199999998,kg -a1f028de-42e1-3628-a09c-543a0c7fe9f8,SESCO,II.1.1,Chaco,AR-H,annual,2016,gas oil combustion consumption by to the public,445.179,TJ,CO2,74100.0,kg/TJ,32987763.9,kg -5e9d95e9-1aa4-3433-8645-4873845fc8be,SESCO,II.1.1,Chaco,AR-H,annual,2016,gas oil combustion consumption by to the public,445.179,TJ,CH4,3.9,kg/TJ,1736.1980999999998,kg -5e9d95e9-1aa4-3433-8645-4873845fc8be,SESCO,II.1.1,Chaco,AR-H,annual,2016,gas oil combustion consumption by to the public,445.179,TJ,N2O,3.9,kg/TJ,1736.1980999999998,kg -3a81f636-5fed-3556-918c-33f8dde36787,SESCO,II.1.1,Corrientes,AR-W,annual,2016,gas oil combustion consumption by to the public,332.01504,TJ,CO2,74100.0,kg/TJ,24602314.464,kg -986d755f-f74a-30d8-9d8f-897c982b116e,SESCO,II.1.1,Corrientes,AR-W,annual,2016,gas oil combustion consumption by to the public,332.01504,TJ,CH4,3.9,kg/TJ,1294.8586559999999,kg -986d755f-f74a-30d8-9d8f-897c982b116e,SESCO,II.1.1,Corrientes,AR-W,annual,2016,gas oil combustion consumption by to the public,332.01504,TJ,N2O,3.9,kg/TJ,1294.8586559999999,kg -710fc57d-3986-3711-b695-fd3c5cfa15f6,SESCO,II.1.1,Córdoba,AR-X,annual,2016,gas oil combustion consumption by to the public,1592.38632,TJ,CO2,74100.0,kg/TJ,117995826.312,kg -8b93d727-2688-3d48-8a87-7d27a630a2ef,SESCO,II.1.1,Córdoba,AR-X,annual,2016,gas oil combustion consumption by to the public,1592.38632,TJ,CH4,3.9,kg/TJ,6210.306648,kg -8b93d727-2688-3d48-8a87-7d27a630a2ef,SESCO,II.1.1,Córdoba,AR-X,annual,2016,gas oil combustion consumption by to the public,1592.38632,TJ,N2O,3.9,kg/TJ,6210.306648,kg -2220ff61-2cb5-3d1a-9b8b-551fc614b518,SESCO,II.1.1,Entre Rios,AR-E,annual,2016,gas oil combustion consumption by to the public,661.5378,TJ,CO2,74100.0,kg/TJ,49019950.98,kg -4b7e61fc-45c7-3f1b-beea-da617b4073cf,SESCO,II.1.1,Entre Rios,AR-E,annual,2016,gas oil combustion consumption by to the public,661.5378,TJ,CH4,3.9,kg/TJ,2579.9974199999997,kg -4b7e61fc-45c7-3f1b-beea-da617b4073cf,SESCO,II.1.1,Entre Rios,AR-E,annual,2016,gas oil combustion consumption by to the public,661.5378,TJ,N2O,3.9,kg/TJ,2579.9974199999997,kg -216f1301-c7d1-3aee-b9bb-d05afbe62e58,SESCO,II.1.1,Formosa,AR-P,annual,2016,gas oil combustion consumption by to the public,155.4966,TJ,CO2,74100.0,kg/TJ,11522298.06,kg -d4e5c206-1822-3cff-950d-2b93e3510190,SESCO,II.1.1,Formosa,AR-P,annual,2016,gas oil combustion consumption by to the public,155.4966,TJ,CH4,3.9,kg/TJ,606.43674,kg -d4e5c206-1822-3cff-950d-2b93e3510190,SESCO,II.1.1,Formosa,AR-P,annual,2016,gas oil combustion consumption by to the public,155.4966,TJ,N2O,3.9,kg/TJ,606.43674,kg -ddccfbb6-b105-35f3-b08c-f91182819bad,SESCO,II.1.1,Jujuy,AR-Y,annual,2016,gas oil combustion consumption by to the public,53.20476,TJ,CO2,74100.0,kg/TJ,3942472.716,kg -1977302b-70b4-39f2-95c2-2c7348d84da0,SESCO,II.1.1,Jujuy,AR-Y,annual,2016,gas oil combustion consumption by to the public,53.20476,TJ,CH4,3.9,kg/TJ,207.498564,kg -1977302b-70b4-39f2-95c2-2c7348d84da0,SESCO,II.1.1,Jujuy,AR-Y,annual,2016,gas oil combustion consumption by to the public,53.20476,TJ,N2O,3.9,kg/TJ,207.498564,kg -d6f9b026-453e-3ec5-8f94-a1c0388fb5be,SESCO,II.1.1,La Pampa,AR-L,annual,2016,gas oil combustion consumption by to the public,251.17848,TJ,CO2,74100.0,kg/TJ,18612325.368,kg -23d4aaa4-c8a6-3919-b9d0-12c63e3b8ff2,SESCO,II.1.1,La Pampa,AR-L,annual,2016,gas oil combustion consumption by to the public,251.17848,TJ,CH4,3.9,kg/TJ,979.596072,kg -23d4aaa4-c8a6-3919-b9d0-12c63e3b8ff2,SESCO,II.1.1,La Pampa,AR-L,annual,2016,gas oil combustion consumption by to the public,251.17848,TJ,N2O,3.9,kg/TJ,979.596072,kg -73e568c3-5665-32ea-b36d-2d80deb1cd92,SESCO,II.1.1,La Rioja,AR-F,annual,2016,gas oil combustion consumption by to the public,128.65944,TJ,CO2,74100.0,kg/TJ,9533664.503999999,kg -d8869a45-e96c-38d1-870d-2401393be171,SESCO,II.1.1,La Rioja,AR-F,annual,2016,gas oil combustion consumption by to the public,128.65944,TJ,CH4,3.9,kg/TJ,501.77181599999994,kg -d8869a45-e96c-38d1-870d-2401393be171,SESCO,II.1.1,La Rioja,AR-F,annual,2016,gas oil combustion consumption by to the public,128.65944,TJ,N2O,3.9,kg/TJ,501.77181599999994,kg -8ad4441f-dc5d-3d47-b52b-a2af2a8ba3a5,SESCO,II.1.1,Mendoza,AR-M,annual,2016,gas oil combustion consumption by to the public,457.13472,TJ,CO2,74100.0,kg/TJ,33873682.752000004,kg -5dff0ff3-b10a-31f9-974b-5c2f1d992aea,SESCO,II.1.1,Mendoza,AR-M,annual,2016,gas oil combustion consumption by to the public,457.13472,TJ,CH4,3.9,kg/TJ,1782.825408,kg -5dff0ff3-b10a-31f9-974b-5c2f1d992aea,SESCO,II.1.1,Mendoza,AR-M,annual,2016,gas oil combustion consumption by to the public,457.13472,TJ,N2O,3.9,kg/TJ,1782.825408,kg -232d61ea-de1a-3f9c-81af-84ad05969da8,SESCO,II.1.1,Misiones,AR-N,annual,2016,gas oil combustion consumption by to the public,388.36224,TJ,CO2,74100.0,kg/TJ,28777641.983999997,kg -9349c15c-327e-38e0-afac-ee51e9cf78bb,SESCO,II.1.1,Misiones,AR-N,annual,2016,gas oil combustion consumption by to the public,388.36224,TJ,CH4,3.9,kg/TJ,1514.6127359999998,kg -9349c15c-327e-38e0-afac-ee51e9cf78bb,SESCO,II.1.1,Misiones,AR-N,annual,2016,gas oil combustion consumption by to the public,388.36224,TJ,N2O,3.9,kg/TJ,1514.6127359999998,kg -d5c252fa-2c68-3fbb-8188-fb07f16b73a1,SESCO,II.1.1,Neuquén,AR-Q,annual,2016,gas oil combustion consumption by to the public,517.419,TJ,CO2,74100.0,kg/TJ,38340747.9,kg -06352cd4-c5c8-311e-bf20-5c79d055351f,SESCO,II.1.1,Neuquén,AR-Q,annual,2016,gas oil combustion consumption by to the public,517.419,TJ,CH4,3.9,kg/TJ,2017.9341,kg -06352cd4-c5c8-311e-bf20-5c79d055351f,SESCO,II.1.1,Neuquén,AR-Q,annual,2016,gas oil combustion consumption by to the public,517.419,TJ,N2O,3.9,kg/TJ,2017.9341,kg -1a537832-9e64-3787-bf8f-bcb41c30034c,SESCO,II.1.1,Rio Negro,AR-R,annual,2016,gas oil combustion consumption by to the public,135.19716,TJ,CO2,74100.0,kg/TJ,10018109.556,kg -716a76b8-0081-3437-a5f3-0c976caa6010,SESCO,II.1.1,Rio Negro,AR-R,annual,2016,gas oil combustion consumption by to the public,135.19716,TJ,CH4,3.9,kg/TJ,527.268924,kg -716a76b8-0081-3437-a5f3-0c976caa6010,SESCO,II.1.1,Rio Negro,AR-R,annual,2016,gas oil combustion consumption by to the public,135.19716,TJ,N2O,3.9,kg/TJ,527.268924,kg -ba436f0f-0d70-319b-8d1d-d456c0db9146,SESCO,II.1.1,Salta,AR-A,annual,2016,gas oil combustion consumption by to the public,109.55196,TJ,CO2,74100.0,kg/TJ,8117800.236,kg -61e62fb6-f87f-34b8-915c-5621ef916636,SESCO,II.1.1,Salta,AR-A,annual,2016,gas oil combustion consumption by to the public,109.55196,TJ,CH4,3.9,kg/TJ,427.252644,kg -61e62fb6-f87f-34b8-915c-5621ef916636,SESCO,II.1.1,Salta,AR-A,annual,2016,gas oil combustion consumption by to the public,109.55196,TJ,N2O,3.9,kg/TJ,427.252644,kg -16e69860-f80f-3f01-8cac-000bc7e40827,SESCO,II.1.1,San Juan,AR-J,annual,2016,gas oil combustion consumption by to the public,65.70228,TJ,CO2,74100.0,kg/TJ,4868538.948,kg -ab7a74f8-d344-3fa5-aaaf-bc8b5dfd8bb7,SESCO,II.1.1,San Juan,AR-J,annual,2016,gas oil combustion consumption by to the public,65.70228,TJ,CH4,3.9,kg/TJ,256.238892,kg -ab7a74f8-d344-3fa5-aaaf-bc8b5dfd8bb7,SESCO,II.1.1,San Juan,AR-J,annual,2016,gas oil combustion consumption by to the public,65.70228,TJ,N2O,3.9,kg/TJ,256.238892,kg -8e54cfd1-68f0-397b-a895-7b57ba984cf3,SESCO,II.1.1,San Luis,AR-D,annual,2016,gas oil combustion consumption by to the public,29.72676,TJ,CO2,74100.0,kg/TJ,2202752.9159999997,kg -7e348da8-845b-324d-a5d4-b3eb8b0796f9,SESCO,II.1.1,San Luis,AR-D,annual,2016,gas oil combustion consumption by to the public,29.72676,TJ,CH4,3.9,kg/TJ,115.93436399999999,kg -7e348da8-845b-324d-a5d4-b3eb8b0796f9,SESCO,II.1.1,San Luis,AR-D,annual,2016,gas oil combustion consumption by to the public,29.72676,TJ,N2O,3.9,kg/TJ,115.93436399999999,kg -f3bb9205-038f-3d9a-9c91-d40fae9bf0c2,SESCO,II.1.1,Santa Fe,AR-S,annual,2016,gas oil combustion consumption by to the public,2043.27228,TJ,CO2,74100.0,kg/TJ,151406475.94799998,kg -18a4f4b6-8561-3fbb-a42e-b59a57fe0fbb,SESCO,II.1.1,Santa Fe,AR-S,annual,2016,gas oil combustion consumption by to the public,2043.27228,TJ,CH4,3.9,kg/TJ,7968.7618919999995,kg -18a4f4b6-8561-3fbb-a42e-b59a57fe0fbb,SESCO,II.1.1,Santa Fe,AR-S,annual,2016,gas oil combustion consumption by to the public,2043.27228,TJ,N2O,3.9,kg/TJ,7968.7618919999995,kg -c0bbcab3-0cd8-3e7b-866d-3abbda84a478,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2016,gas oil combustion consumption by to the public,218.34539999999998,TJ,CO2,74100.0,kg/TJ,16179394.139999999,kg -9f6dbc80-1793-303b-89e7-1b8e60397241,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2016,gas oil combustion consumption by to the public,218.34539999999998,TJ,CH4,3.9,kg/TJ,851.5470599999999,kg -9f6dbc80-1793-303b-89e7-1b8e60397241,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2016,gas oil combustion consumption by to the public,218.34539999999998,TJ,N2O,3.9,kg/TJ,851.5470599999999,kg -2202dfe6-697e-3081-b325-40d45c78d6db,SESCO,II.1.1,Tucuman,AR-T,annual,2016,gas oil combustion consumption by to the public,445.46796,TJ,CO2,74100.0,kg/TJ,33009175.836,kg -2ce8d86b-c817-34b0-af6f-2c7395c4dc75,SESCO,II.1.1,Tucuman,AR-T,annual,2016,gas oil combustion consumption by to the public,445.46796,TJ,CH4,3.9,kg/TJ,1737.325044,kg -2ce8d86b-c817-34b0-af6f-2c7395c4dc75,SESCO,II.1.1,Tucuman,AR-T,annual,2016,gas oil combustion consumption by to the public,445.46796,TJ,N2O,3.9,kg/TJ,1737.325044,kg -2b858ecc-3d98-3934-b210-2e6e3a7408cf,SESCO,II.1.1,Buenos Aires,AR-B,annual,2016,jet kerosene combustion consumption by to the public,0.7863249999999998,TJ,CO2,71500.0,kg/TJ,56222.23749999999,kg -fcd0f7a0-31b3-3427-b9dd-178bddde6ea4,SESCO,II.1.1,Buenos Aires,AR-B,annual,2016,jet kerosene combustion consumption by to the public,0.7863249999999998,TJ,CH4,0.5,kg/TJ,0.3931624999999999,kg -eb4d95be-4453-3e0c-be80-7a9ee177465f,SESCO,II.1.1,Buenos Aires,AR-B,annual,2016,jet kerosene combustion consumption by to the public,0.7863249999999998,TJ,N2O,2.0,kg/TJ,1.5726499999999997,kg -da735b81-5e18-33c0-b5d8-41a1d5217ba5,SESCO,II.1.1,Entre Rios,AR-E,annual,2016,jet kerosene combustion consumption by to the public,5.03248,TJ,CO2,71500.0,kg/TJ,359822.31999999995,kg -d66ba6aa-aa51-3411-ad70-4d605e4cb45a,SESCO,II.1.1,Entre Rios,AR-E,annual,2016,jet kerosene combustion consumption by to the public,5.03248,TJ,CH4,0.5,kg/TJ,2.51624,kg -1b78e457-283e-37bc-97d3-0b7fd554cd9e,SESCO,II.1.1,Entre Rios,AR-E,annual,2016,jet kerosene combustion consumption by to the public,5.03248,TJ,N2O,2.0,kg/TJ,10.06496,kg -817b7288-92c8-317e-a5ee-b1609618e952,SESCO,II.1.1,Santa Fe,AR-S,annual,2016,jet kerosene combustion consumption by to the public,1.100855,TJ,CO2,71500.0,kg/TJ,78711.13249999999,kg -4c5e1ffa-c059-30f5-912e-be9bcbd63f0f,SESCO,II.1.1,Santa Fe,AR-S,annual,2016,jet kerosene combustion consumption by to the public,1.100855,TJ,CH4,0.5,kg/TJ,0.5504275,kg -9c556cbe-fac7-3424-b502-928622effc85,SESCO,II.1.1,Santa Fe,AR-S,annual,2016,jet kerosene combustion consumption by to the public,1.100855,TJ,N2O,2.0,kg/TJ,2.20171,kg -a0737e12-179b-305e-8caf-f24f7efbbb7f,SESCO,I.3.1,Buenos Aires,AR-B,annual,2016,gasoline combustion consumption by petrochemical industries,18.9604,TJ,CO2,69300.0,kg/TJ,1313955.72,kg -13a64f84-188f-3be8-91ed-43493c79356e,SESCO,I.3.1,Buenos Aires,AR-B,annual,2016,gasoline combustion consumption by petrochemical industries,18.9604,TJ,CH4,33.0,kg/TJ,625.6932,kg -02a62491-df8b-386a-9186-bfb908949d1b,SESCO,I.3.1,Buenos Aires,AR-B,annual,2016,gasoline combustion consumption by petrochemical industries,18.9604,TJ,N2O,3.2,kg/TJ,60.673280000000005,kg -fbf8fb9b-c812-3757-ab22-0aa463c99018,SESCO,I.3.1,Capital Federal,AR-C,annual,2016,gas oil combustion consumption by petrochemical industries,2.31168,TJ,CO2,74100.0,kg/TJ,171295.48799999998,kg -f187583f-851a-3776-8c89-e4703fde130f,SESCO,I.3.1,Capital Federal,AR-C,annual,2016,gas oil combustion consumption by petrochemical industries,2.31168,TJ,CH4,3.9,kg/TJ,9.015552,kg -f187583f-851a-3776-8c89-e4703fde130f,SESCO,I.3.1,Capital Federal,AR-C,annual,2016,gas oil combustion consumption by petrochemical industries,2.31168,TJ,N2O,3.9,kg/TJ,9.015552,kg -c4e403a9-6c29-3b1c-91a5-5d907918eadc,SESCO,II.2.1,Buenos Aires,AR-B,annual,2016,gas oil combustion consumption by railway transport,286.251,TJ,CO2,74100.0,kg/TJ,21211199.099999998,kg -3c5ee5ad-79fb-3e34-9a26-9fa274b5c312,SESCO,II.2.1,Buenos Aires,AR-B,annual,2016,gas oil combustion consumption by railway transport,286.251,TJ,CH4,3.9,kg/TJ,1116.3789,kg -3c5ee5ad-79fb-3e34-9a26-9fa274b5c312,SESCO,II.2.1,Buenos Aires,AR-B,annual,2016,gas oil combustion consumption by railway transport,286.251,TJ,N2O,3.9,kg/TJ,1116.3789,kg -fdc01a05-a633-339e-8046-b6fe7a10f0e3,SESCO,II.2.1,Capital Federal,AR-C,annual,2016,gas oil combustion consumption by railway transport,63.21,TJ,CO2,74100.0,kg/TJ,4683861.0,kg -5c3dab5b-6389-32a5-ac43-e69735833ab5,SESCO,II.2.1,Capital Federal,AR-C,annual,2016,gas oil combustion consumption by railway transport,63.21,TJ,CH4,3.9,kg/TJ,246.519,kg -5c3dab5b-6389-32a5-ac43-e69735833ab5,SESCO,II.2.1,Capital Federal,AR-C,annual,2016,gas oil combustion consumption by railway transport,63.21,TJ,N2O,3.9,kg/TJ,246.519,kg -b7649460-8240-3f4f-8c76-2dd775b7b608,SESCO,II.2.1,Santa Fe,AR-S,annual,2016,gas oil combustion consumption by railway transport,78.34428,TJ,CO2,74100.0,kg/TJ,5805311.148,kg -567f48fd-caeb-3a70-96bd-a10e19823008,SESCO,II.2.1,Santa Fe,AR-S,annual,2016,gas oil combustion consumption by railway transport,78.34428,TJ,CH4,3.9,kg/TJ,305.542692,kg -567f48fd-caeb-3a70-96bd-a10e19823008,SESCO,II.2.1,Santa Fe,AR-S,annual,2016,gas oil combustion consumption by railway transport,78.34428,TJ,N2O,3.9,kg/TJ,305.542692,kg -0be12027-5646-345d-9809-97282a594414,SESCO,II.1.1,Capital Federal,AR-C,annual,2016,gasoline combustion consumption by freight transport,10.189,TJ,CO2,69300.0,kg/TJ,706097.7,kg -46040588-7cf8-3040-91c7-1675784fa318,SESCO,II.1.1,Capital Federal,AR-C,annual,2016,gasoline combustion consumption by freight transport,10.189,TJ,CH4,33.0,kg/TJ,336.237,kg -6d134e5a-0832-3410-8b19-f359de99d380,SESCO,II.1.1,Capital Federal,AR-C,annual,2016,gasoline combustion consumption by freight transport,10.189,TJ,N2O,3.2,kg/TJ,32.604800000000004,kg -1fc0784d-5da5-39d4-86fe-23904a1671a2,SESCO,II.1.1,Buenos Aires,AR-B,annual,2016,gas oil combustion consumption by freight transport,216.32268,TJ,CO2,74100.0,kg/TJ,16029510.588,kg -c4475c1e-c3d5-3d43-9808-908b28dde5ee,SESCO,II.1.1,Buenos Aires,AR-B,annual,2016,gas oil combustion consumption by freight transport,216.32268,TJ,CH4,3.9,kg/TJ,843.6584519999999,kg -c4475c1e-c3d5-3d43-9808-908b28dde5ee,SESCO,II.1.1,Buenos Aires,AR-B,annual,2016,gas oil combustion consumption by freight transport,216.32268,TJ,N2O,3.9,kg/TJ,843.6584519999999,kg -2994dd9f-25d1-38be-97be-6c832b3ae0bd,SESCO,II.1.1,Capital Federal,AR-C,annual,2016,gas oil combustion consumption by freight transport,114.10307999999999,TJ,CO2,74100.0,kg/TJ,8455038.228,kg -133951bc-29ac-3bf2-912a-db91b3512e33,SESCO,II.1.1,Capital Federal,AR-C,annual,2016,gas oil combustion consumption by freight transport,114.10307999999999,TJ,CH4,3.9,kg/TJ,445.002012,kg -133951bc-29ac-3bf2-912a-db91b3512e33,SESCO,II.1.1,Capital Federal,AR-C,annual,2016,gas oil combustion consumption by freight transport,114.10307999999999,TJ,N2O,3.9,kg/TJ,445.002012,kg -d4ec4b57-57f6-3d8e-8ac1-e5a0d9278e49,SESCO,II.1.1,Córdoba,AR-X,annual,2016,gas oil combustion consumption by freight transport,99.07715999999999,TJ,CO2,74100.0,kg/TJ,7341617.556,kg -6493073f-916c-3312-af38-a3aef2284e2e,SESCO,II.1.1,Córdoba,AR-X,annual,2016,gas oil combustion consumption by freight transport,99.07715999999999,TJ,CH4,3.9,kg/TJ,386.400924,kg -6493073f-916c-3312-af38-a3aef2284e2e,SESCO,II.1.1,Córdoba,AR-X,annual,2016,gas oil combustion consumption by freight transport,99.07715999999999,TJ,N2O,3.9,kg/TJ,386.400924,kg -6cb81566-6129-36ae-a65e-5feee7d02437,SESCO,II.1.1,Buenos Aires,AR-B,annual,2016,gas oil combustion consumption by freight transport,23.33352,TJ,CO2,74100.0,kg/TJ,1729013.832,kg -d16ad73a-d57c-3a37-ac91-3676204d2f89,SESCO,II.1.1,Buenos Aires,AR-B,annual,2016,gas oil combustion consumption by freight transport,23.33352,TJ,CH4,3.9,kg/TJ,91.000728,kg -d16ad73a-d57c-3a37-ac91-3676204d2f89,SESCO,II.1.1,Buenos Aires,AR-B,annual,2016,gas oil combustion consumption by freight transport,23.33352,TJ,N2O,3.9,kg/TJ,91.000728,kg -a53e937c-d3c9-3f1b-9015-eeaf84540e7e,SESCO,II.1.1,Córdoba,AR-X,annual,2016,gas oil combustion consumption by freight transport,0.97524,TJ,CO2,74100.0,kg/TJ,72265.284,kg -55880b0e-98a4-3a9f-9763-0855eaed1431,SESCO,II.1.1,Córdoba,AR-X,annual,2016,gas oil combustion consumption by freight transport,0.97524,TJ,CH4,3.9,kg/TJ,3.803436,kg -55880b0e-98a4-3a9f-9763-0855eaed1431,SESCO,II.1.1,Córdoba,AR-X,annual,2016,gas oil combustion consumption by freight transport,0.97524,TJ,N2O,3.9,kg/TJ,3.803436,kg -6782a491-209a-38f4-8f70-b9a16adb210f,SESCO,II.1.1,Buenos Aires,AR-B,annual,2016,gas oil combustion consumption by public passenger transport,6382.29564,TJ,CO2,74100.0,kg/TJ,472928106.924,kg -c01fe38c-51c5-30f5-8199-8758bab9fb2a,SESCO,II.1.1,Buenos Aires,AR-B,annual,2016,gas oil combustion consumption by public passenger transport,6382.29564,TJ,CH4,3.9,kg/TJ,24890.952996,kg -c01fe38c-51c5-30f5-8199-8758bab9fb2a,SESCO,II.1.1,Buenos Aires,AR-B,annual,2016,gas oil combustion consumption by public passenger transport,6382.29564,TJ,N2O,3.9,kg/TJ,24890.952996,kg -094b6da0-8eb9-36b8-841a-a26e335ee69e,SESCO,II.1.1,Capital Federal,AR-C,annual,2016,gas oil combustion consumption by public passenger transport,112.54992,TJ,CO2,74100.0,kg/TJ,8339949.072,kg -4e9362d3-4dc9-3afb-868e-af3647833be1,SESCO,II.1.1,Capital Federal,AR-C,annual,2016,gas oil combustion consumption by public passenger transport,112.54992,TJ,CH4,3.9,kg/TJ,438.944688,kg -4e9362d3-4dc9-3afb-868e-af3647833be1,SESCO,II.1.1,Capital Federal,AR-C,annual,2016,gas oil combustion consumption by public passenger transport,112.54992,TJ,N2O,3.9,kg/TJ,438.944688,kg -648d5e2f-32cf-3905-9136-e89c76655f6c,SESCO,II.1.1,Misiones,AR-N,annual,2016,gas oil combustion consumption by public passenger transport,66.78587999999999,TJ,CO2,74100.0,kg/TJ,4948833.708,kg -411533d3-2635-3dad-8267-5ab7b5c0e862,SESCO,II.1.1,Misiones,AR-N,annual,2016,gas oil combustion consumption by public passenger transport,66.78587999999999,TJ,CH4,3.9,kg/TJ,260.464932,kg -411533d3-2635-3dad-8267-5ab7b5c0e862,SESCO,II.1.1,Misiones,AR-N,annual,2016,gas oil combustion consumption by public passenger transport,66.78587999999999,TJ,N2O,3.9,kg/TJ,260.464932,kg -c0a2eef3-d73b-3d84-8bdc-d0ed4de8fac7,SESCO,II.1.1,Buenos Aires,AR-B,annual,2016,gas oil combustion consumption by public passenger transport,30.340799999999998,TJ,CO2,74100.0,kg/TJ,2248253.28,kg -2a25ba4c-74a4-352a-8e39-d25e29b42002,SESCO,II.1.1,Buenos Aires,AR-B,annual,2016,gas oil combustion consumption by public passenger transport,30.340799999999998,TJ,CH4,3.9,kg/TJ,118.32911999999999,kg -2a25ba4c-74a4-352a-8e39-d25e29b42002,SESCO,II.1.1,Buenos Aires,AR-B,annual,2016,gas oil combustion consumption by public passenger transport,30.340799999999998,TJ,N2O,3.9,kg/TJ,118.32911999999999,kg -c8076c9e-8f49-3b6b-86e7-c26632f916e7,SESCO,II.5.1,Buenos Aires,AR-B,annual,2016,gasoline combustion consumption by agriculture machines,7.4424,TJ,CO2,69300.0,kg/TJ,515758.32,kg -0269ff0b-337f-3458-a927-acfff52d72ba,SESCO,II.5.1,Buenos Aires,AR-B,annual,2016,gasoline combustion consumption by agriculture machines,7.4424,TJ,CH4,33.0,kg/TJ,245.5992,kg -8db669ee-117c-32a0-9330-014b28531c42,SESCO,II.5.1,Buenos Aires,AR-B,annual,2016,gasoline combustion consumption by agriculture machines,7.4424,TJ,N2O,3.2,kg/TJ,23.81568,kg -e451a04a-b4cc-384e-85b9-653ab9c7d599,SESCO,II.5.1,Jujuy,AR-Y,annual,2016,gasoline combustion consumption by agriculture machines,4.6514999999999995,TJ,CO2,69300.0,kg/TJ,322348.94999999995,kg -cd639f78-a688-3dd8-8164-f2f7bb3e3f9b,SESCO,II.5.1,Jujuy,AR-Y,annual,2016,gasoline combustion consumption by agriculture machines,4.6514999999999995,TJ,CH4,33.0,kg/TJ,153.49949999999998,kg -a4de63c6-7d19-3555-9ea9-a88c290485b4,SESCO,II.5.1,Jujuy,AR-Y,annual,2016,gasoline combustion consumption by agriculture machines,4.6514999999999995,TJ,N2O,3.2,kg/TJ,14.884799999999998,kg -9e61a047-e8ee-3bef-8309-affa0b8ec468,SESCO,II.5.1,Salta,AR-A,annual,2016,gasoline combustion consumption by agriculture machines,3.4997,TJ,CO2,69300.0,kg/TJ,242529.21,kg -95e94e23-4bf9-3a61-8d33-841a1b4e8142,SESCO,II.5.1,Salta,AR-A,annual,2016,gasoline combustion consumption by agriculture machines,3.4997,TJ,CH4,33.0,kg/TJ,115.4901,kg -bff36242-0f1d-3d24-8d54-a55b77b33775,SESCO,II.5.1,Salta,AR-A,annual,2016,gasoline combustion consumption by agriculture machines,3.4997,TJ,N2O,3.2,kg/TJ,11.19904,kg -48dec184-fff3-385a-b885-3f34eae61411,SESCO,II.5.1,Santa Fe,AR-S,annual,2016,gasoline combustion consumption by agriculture machines,1.1961,TJ,CO2,69300.0,kg/TJ,82889.73,kg -0492c906-1745-3d37-8b94-f2b8d7426d64,SESCO,II.5.1,Santa Fe,AR-S,annual,2016,gasoline combustion consumption by agriculture machines,1.1961,TJ,CH4,33.0,kg/TJ,39.4713,kg -9a19e42f-2a12-397d-9da7-c1644ceea70d,SESCO,II.5.1,Santa Fe,AR-S,annual,2016,gasoline combustion consumption by agriculture machines,1.1961,TJ,N2O,3.2,kg/TJ,3.82752,kg -02e23d64-faa2-3037-993c-98bb1c424a4c,SESCO,II.5.1,Buenos Aires,AR-B,annual,2016,gas oil combustion consumption by agriculture machines,10148.52804,TJ,CO2,74100.0,kg/TJ,752005927.7639999,kg -9788fc88-0186-3212-9586-846b73d7da1c,SESCO,II.5.1,Buenos Aires,AR-B,annual,2016,gas oil combustion consumption by agriculture machines,10148.52804,TJ,CH4,3.9,kg/TJ,39579.259355999995,kg -9788fc88-0186-3212-9586-846b73d7da1c,SESCO,II.5.1,Buenos Aires,AR-B,annual,2016,gas oil combustion consumption by agriculture machines,10148.52804,TJ,N2O,3.9,kg/TJ,39579.259355999995,kg -83158d79-b095-3f3a-8587-7b8e8ceac647,SESCO,II.5.1,Capital Federal,AR-C,annual,2016,gas oil combustion consumption by agriculture machines,18.09612,TJ,CO2,74100.0,kg/TJ,1340922.4919999999,kg -5d00577f-497d-3f5c-8751-259ef4f6e093,SESCO,II.5.1,Capital Federal,AR-C,annual,2016,gas oil combustion consumption by agriculture machines,18.09612,TJ,CH4,3.9,kg/TJ,70.574868,kg -5d00577f-497d-3f5c-8751-259ef4f6e093,SESCO,II.5.1,Capital Federal,AR-C,annual,2016,gas oil combustion consumption by agriculture machines,18.09612,TJ,N2O,3.9,kg/TJ,70.574868,kg -3462e7b0-c508-340f-b9d0-05e17b306800,SESCO,II.5.1,Catamarca,AR-K,annual,2016,gas oil combustion consumption by agriculture machines,127.90092,TJ,CO2,74100.0,kg/TJ,9477458.172,kg -79459760-12c3-360b-ba4b-a6e211be6e70,SESCO,II.5.1,Catamarca,AR-K,annual,2016,gas oil combustion consumption by agriculture machines,127.90092,TJ,CH4,3.9,kg/TJ,498.813588,kg -79459760-12c3-360b-ba4b-a6e211be6e70,SESCO,II.5.1,Catamarca,AR-K,annual,2016,gas oil combustion consumption by agriculture machines,127.90092,TJ,N2O,3.9,kg/TJ,498.813588,kg -e56c3897-d031-3678-81b7-c677948cf820,SESCO,II.5.1,Chaco,AR-H,annual,2016,gas oil combustion consumption by agriculture machines,1142.4756,TJ,CO2,74100.0,kg/TJ,84657441.96,kg -8d06c282-1931-35b9-b4df-34dfb5d44f12,SESCO,II.5.1,Chaco,AR-H,annual,2016,gas oil combustion consumption by agriculture machines,1142.4756,TJ,CH4,3.9,kg/TJ,4455.65484,kg -8d06c282-1931-35b9-b4df-34dfb5d44f12,SESCO,II.5.1,Chaco,AR-H,annual,2016,gas oil combustion consumption by agriculture machines,1142.4756,TJ,N2O,3.9,kg/TJ,4455.65484,kg -00af115b-2189-3e1a-a321-6f864ba7ad1d,SESCO,II.5.1,Chubut,AR-U,annual,2016,gas oil combustion consumption by agriculture machines,0.10836,TJ,CO2,74100.0,kg/TJ,8029.476,kg -994dbd39-79ab-37e0-9409-857e8eb366cc,SESCO,II.5.1,Chubut,AR-U,annual,2016,gas oil combustion consumption by agriculture machines,0.10836,TJ,CH4,3.9,kg/TJ,0.422604,kg -994dbd39-79ab-37e0-9409-857e8eb366cc,SESCO,II.5.1,Chubut,AR-U,annual,2016,gas oil combustion consumption by agriculture machines,0.10836,TJ,N2O,3.9,kg/TJ,0.422604,kg -d15019e5-ba29-389d-b00a-c36812b7689a,SESCO,II.5.1,Corrientes,AR-W,annual,2016,gas oil combustion consumption by agriculture machines,257.355,TJ,CO2,74100.0,kg/TJ,19070005.5,kg -1d53e245-8f46-34d2-bdf2-988289d396b9,SESCO,II.5.1,Corrientes,AR-W,annual,2016,gas oil combustion consumption by agriculture machines,257.355,TJ,CH4,3.9,kg/TJ,1003.6845000000001,kg -1d53e245-8f46-34d2-bdf2-988289d396b9,SESCO,II.5.1,Corrientes,AR-W,annual,2016,gas oil combustion consumption by agriculture machines,257.355,TJ,N2O,3.9,kg/TJ,1003.6845000000001,kg -66213f43-faee-3a44-a834-ea0b5a3eca77,SESCO,II.5.1,Córdoba,AR-X,annual,2016,gas oil combustion consumption by agriculture machines,7882.68432,TJ,CO2,74100.0,kg/TJ,584106908.112,kg -cc317d96-699c-3bed-8b6e-4a5651e2f437,SESCO,II.5.1,Córdoba,AR-X,annual,2016,gas oil combustion consumption by agriculture machines,7882.68432,TJ,CH4,3.9,kg/TJ,30742.468848,kg -cc317d96-699c-3bed-8b6e-4a5651e2f437,SESCO,II.5.1,Córdoba,AR-X,annual,2016,gas oil combustion consumption by agriculture machines,7882.68432,TJ,N2O,3.9,kg/TJ,30742.468848,kg -93753e41-72e6-30dd-9038-bd8334a672b0,SESCO,II.5.1,Entre Rios,AR-E,annual,2016,gas oil combustion consumption by agriculture machines,1997.1109199999999,TJ,CO2,74100.0,kg/TJ,147985919.172,kg -16e3afb6-9aef-3254-a875-b9d6ef031a2f,SESCO,II.5.1,Entre Rios,AR-E,annual,2016,gas oil combustion consumption by agriculture machines,1997.1109199999999,TJ,CH4,3.9,kg/TJ,7788.732587999999,kg -16e3afb6-9aef-3254-a875-b9d6ef031a2f,SESCO,II.5.1,Entre Rios,AR-E,annual,2016,gas oil combustion consumption by agriculture machines,1997.1109199999999,TJ,N2O,3.9,kg/TJ,7788.732587999999,kg -99f65982-17ea-32f0-9c54-872bb036b270,SESCO,II.5.1,Formosa,AR-P,annual,2016,gas oil combustion consumption by agriculture machines,258.7998,TJ,CO2,74100.0,kg/TJ,19177065.18,kg -9151a19a-efdb-3cb2-a609-2f78e77c04a1,SESCO,II.5.1,Formosa,AR-P,annual,2016,gas oil combustion consumption by agriculture machines,258.7998,TJ,CH4,3.9,kg/TJ,1009.31922,kg -9151a19a-efdb-3cb2-a609-2f78e77c04a1,SESCO,II.5.1,Formosa,AR-P,annual,2016,gas oil combustion consumption by agriculture machines,258.7998,TJ,N2O,3.9,kg/TJ,1009.31922,kg -5b6042b2-c8dc-355c-aaa5-56ba55c928f5,SESCO,II.5.1,Jujuy,AR-Y,annual,2016,gas oil combustion consumption by agriculture machines,1101.51552,TJ,CO2,74100.0,kg/TJ,81622300.03199999,kg -aea56f48-55e7-3ed4-8c47-707da1f9cd31,SESCO,II.5.1,Jujuy,AR-Y,annual,2016,gas oil combustion consumption by agriculture machines,1101.51552,TJ,CH4,3.9,kg/TJ,4295.910527999999,kg -aea56f48-55e7-3ed4-8c47-707da1f9cd31,SESCO,II.5.1,Jujuy,AR-Y,annual,2016,gas oil combustion consumption by agriculture machines,1101.51552,TJ,N2O,3.9,kg/TJ,4295.910527999999,kg -f34baf12-515c-3832-82ea-a7786641772e,SESCO,II.5.1,La Pampa,AR-L,annual,2016,gas oil combustion consumption by agriculture machines,1910.82024,TJ,CO2,74100.0,kg/TJ,141591779.784,kg -9c026001-e434-3870-9be5-f1f46a41cf87,SESCO,II.5.1,La Pampa,AR-L,annual,2016,gas oil combustion consumption by agriculture machines,1910.82024,TJ,CH4,3.9,kg/TJ,7452.198936,kg -9c026001-e434-3870-9be5-f1f46a41cf87,SESCO,II.5.1,La Pampa,AR-L,annual,2016,gas oil combustion consumption by agriculture machines,1910.82024,TJ,N2O,3.9,kg/TJ,7452.198936,kg -25c5716e-d1b1-3f05-9a4e-80725a213ddf,SESCO,II.5.1,La Rioja,AR-F,annual,2016,gas oil combustion consumption by agriculture machines,119.5572,TJ,CO2,74100.0,kg/TJ,8859188.52,kg -548dad2f-56b9-36cd-aae1-62bd93e7080f,SESCO,II.5.1,La Rioja,AR-F,annual,2016,gas oil combustion consumption by agriculture machines,119.5572,TJ,CH4,3.9,kg/TJ,466.27308,kg -548dad2f-56b9-36cd-aae1-62bd93e7080f,SESCO,II.5.1,La Rioja,AR-F,annual,2016,gas oil combustion consumption by agriculture machines,119.5572,TJ,N2O,3.9,kg/TJ,466.27308,kg -40dbea9d-5833-3ac2-a648-c08c5acb440a,SESCO,II.5.1,Mendoza,AR-M,annual,2016,gas oil combustion consumption by agriculture machines,2484.26136,TJ,CO2,74100.0,kg/TJ,184083766.776,kg -2af858eb-7319-3227-a53b-eba2251315da,SESCO,II.5.1,Mendoza,AR-M,annual,2016,gas oil combustion consumption by agriculture machines,2484.26136,TJ,CH4,3.9,kg/TJ,9688.619304,kg -2af858eb-7319-3227-a53b-eba2251315da,SESCO,II.5.1,Mendoza,AR-M,annual,2016,gas oil combustion consumption by agriculture machines,2484.26136,TJ,N2O,3.9,kg/TJ,9688.619304,kg -455df631-9c28-3175-87c8-fbd5cc013831,SESCO,II.5.1,Misiones,AR-N,annual,2016,gas oil combustion consumption by agriculture machines,1019.45088,TJ,CO2,74100.0,kg/TJ,75541310.208,kg -0615b662-3cac-35b3-951e-cae196792c08,SESCO,II.5.1,Misiones,AR-N,annual,2016,gas oil combustion consumption by agriculture machines,1019.45088,TJ,CH4,3.9,kg/TJ,3975.858432,kg -0615b662-3cac-35b3-951e-cae196792c08,SESCO,II.5.1,Misiones,AR-N,annual,2016,gas oil combustion consumption by agriculture machines,1019.45088,TJ,N2O,3.9,kg/TJ,3975.858432,kg -e12297ce-74ac-3873-8cd6-714e8580b097,SESCO,II.5.1,Rio Negro,AR-R,annual,2016,gas oil combustion consumption by agriculture machines,209.92944,TJ,CO2,74100.0,kg/TJ,15555771.504,kg -99dc5fd9-1696-3747-8e4c-9d9ff564ace3,SESCO,II.5.1,Rio Negro,AR-R,annual,2016,gas oil combustion consumption by agriculture machines,209.92944,TJ,CH4,3.9,kg/TJ,818.724816,kg -99dc5fd9-1696-3747-8e4c-9d9ff564ace3,SESCO,II.5.1,Rio Negro,AR-R,annual,2016,gas oil combustion consumption by agriculture machines,209.92944,TJ,N2O,3.9,kg/TJ,818.724816,kg -74c2366c-3070-3314-95c9-e3e07611df3e,SESCO,II.5.1,Salta,AR-A,annual,2016,gas oil combustion consumption by agriculture machines,1696.44804,TJ,CO2,74100.0,kg/TJ,125706799.764,kg -02c12cf6-105a-3dcb-83a6-9b00bf94a529,SESCO,II.5.1,Salta,AR-A,annual,2016,gas oil combustion consumption by agriculture machines,1696.44804,TJ,CH4,3.9,kg/TJ,6616.1473559999995,kg -02c12cf6-105a-3dcb-83a6-9b00bf94a529,SESCO,II.5.1,Salta,AR-A,annual,2016,gas oil combustion consumption by agriculture machines,1696.44804,TJ,N2O,3.9,kg/TJ,6616.1473559999995,kg -6d92fecf-9acd-3fae-b176-e5fa71e7c18e,SESCO,II.5.1,San Juan,AR-J,annual,2016,gas oil combustion consumption by agriculture machines,490.97916,TJ,CO2,74100.0,kg/TJ,36381555.756,kg -cebe2342-011e-35f1-9d96-c53b6ba7f859,SESCO,II.5.1,San Juan,AR-J,annual,2016,gas oil combustion consumption by agriculture machines,490.97916,TJ,CH4,3.9,kg/TJ,1914.818724,kg -cebe2342-011e-35f1-9d96-c53b6ba7f859,SESCO,II.5.1,San Juan,AR-J,annual,2016,gas oil combustion consumption by agriculture machines,490.97916,TJ,N2O,3.9,kg/TJ,1914.818724,kg -8ad92af1-3e7f-36cb-a1a0-01608f499461,SESCO,II.5.1,San Luis,AR-D,annual,2016,gas oil combustion consumption by agriculture machines,555.56172,TJ,CO2,74100.0,kg/TJ,41167123.452,kg -26173ed1-441c-370d-b236-221f15b9e652,SESCO,II.5.1,San Luis,AR-D,annual,2016,gas oil combustion consumption by agriculture machines,555.56172,TJ,CH4,3.9,kg/TJ,2166.690708,kg -26173ed1-441c-370d-b236-221f15b9e652,SESCO,II.5.1,San Luis,AR-D,annual,2016,gas oil combustion consumption by agriculture machines,555.56172,TJ,N2O,3.9,kg/TJ,2166.690708,kg -9e6d2eca-b8be-3f93-bcdc-bf25aa3f5804,SESCO,II.5.1,Santa Cruz,AR-Z,annual,2016,gas oil combustion consumption by agriculture machines,0.5418,TJ,CO2,74100.0,kg/TJ,40147.38,kg -67752b36-df1c-3d18-9351-19b618e436e5,SESCO,II.5.1,Santa Cruz,AR-Z,annual,2016,gas oil combustion consumption by agriculture machines,0.5418,TJ,CH4,3.9,kg/TJ,2.1130199999999997,kg -67752b36-df1c-3d18-9351-19b618e436e5,SESCO,II.5.1,Santa Cruz,AR-Z,annual,2016,gas oil combustion consumption by agriculture machines,0.5418,TJ,N2O,3.9,kg/TJ,2.1130199999999997,kg -3d0a4474-c8d4-3def-9d4e-26b3abc59864,SESCO,II.5.1,Santa Fe,AR-S,annual,2016,gas oil combustion consumption by agriculture machines,6693.72228,TJ,CO2,74100.0,kg/TJ,496004820.948,kg -0a7f0d10-01d8-3eea-8e2a-a41759da0cae,SESCO,II.5.1,Santa Fe,AR-S,annual,2016,gas oil combustion consumption by agriculture machines,6693.72228,TJ,CH4,3.9,kg/TJ,26105.516892,kg -0a7f0d10-01d8-3eea-8e2a-a41759da0cae,SESCO,II.5.1,Santa Fe,AR-S,annual,2016,gas oil combustion consumption by agriculture machines,6693.72228,TJ,N2O,3.9,kg/TJ,26105.516892,kg -a55594e6-ef34-31d4-8be8-b9d374089045,SESCO,II.5.1,Santiago del Estero,AR-G,annual,2016,gas oil combustion consumption by agriculture machines,1782.522,TJ,CO2,74100.0,kg/TJ,132084880.19999999,kg -4ae82c3e-cbd7-3e23-b7f4-3eb40713e4cb,SESCO,II.5.1,Santiago del Estero,AR-G,annual,2016,gas oil combustion consumption by agriculture machines,1782.522,TJ,CH4,3.9,kg/TJ,6951.8358,kg -4ae82c3e-cbd7-3e23-b7f4-3eb40713e4cb,SESCO,II.5.1,Santiago del Estero,AR-G,annual,2016,gas oil combustion consumption by agriculture machines,1782.522,TJ,N2O,3.9,kg/TJ,6951.8358,kg -d8319ec6-e146-3aec-b5b8-c23994f00eb0,SESCO,II.5.1,Tucuman,AR-T,annual,2016,gas oil combustion consumption by agriculture machines,1466.86932,TJ,CO2,74100.0,kg/TJ,108695016.612,kg -6c7d5547-e597-3e31-b342-393b0d8ac0ed,SESCO,II.5.1,Tucuman,AR-T,annual,2016,gas oil combustion consumption by agriculture machines,1466.86932,TJ,CH4,3.9,kg/TJ,5720.7903479999995,kg -6c7d5547-e597-3e31-b342-393b0d8ac0ed,SESCO,II.5.1,Tucuman,AR-T,annual,2016,gas oil combustion consumption by agriculture machines,1466.86932,TJ,N2O,3.9,kg/TJ,5720.7903479999995,kg -080d6807-8016-3600-b220-0ee98693c35b,SESCO,II.5.1,Buenos Aires,AR-B,annual,2016,gas oil combustion consumption by agriculture machines,246.62735999999998,TJ,CO2,74100.0,kg/TJ,18275087.376,kg -c63af8b1-d35c-39a7-a99f-5f2d8e5730df,SESCO,II.5.1,Buenos Aires,AR-B,annual,2016,gas oil combustion consumption by agriculture machines,246.62735999999998,TJ,CH4,3.9,kg/TJ,961.8467039999999,kg -c63af8b1-d35c-39a7-a99f-5f2d8e5730df,SESCO,II.5.1,Buenos Aires,AR-B,annual,2016,gas oil combustion consumption by agriculture machines,246.62735999999998,TJ,N2O,3.9,kg/TJ,961.8467039999999,kg -1cf20bf3-5cf3-319f-8228-37f5f1160205,SESCO,II.5.1,Catamarca,AR-K,annual,2016,gas oil combustion consumption by agriculture machines,9.5718,TJ,CO2,74100.0,kg/TJ,709270.38,kg -00b51f2c-4bcc-3041-ad93-f646a9f049f7,SESCO,II.5.1,Catamarca,AR-K,annual,2016,gas oil combustion consumption by agriculture machines,9.5718,TJ,CH4,3.9,kg/TJ,37.33002,kg -00b51f2c-4bcc-3041-ad93-f646a9f049f7,SESCO,II.5.1,Catamarca,AR-K,annual,2016,gas oil combustion consumption by agriculture machines,9.5718,TJ,N2O,3.9,kg/TJ,37.33002,kg -a3cbada8-1e80-3336-8389-2c3a1281a748,SESCO,II.5.1,Chaco,AR-H,annual,2016,gas oil combustion consumption by agriculture machines,59.81472,TJ,CO2,74100.0,kg/TJ,4432270.752,kg -232dce1b-9d66-3fd2-a7a8-1b434054a9ce,SESCO,II.5.1,Chaco,AR-H,annual,2016,gas oil combustion consumption by agriculture machines,59.81472,TJ,CH4,3.9,kg/TJ,233.277408,kg -232dce1b-9d66-3fd2-a7a8-1b434054a9ce,SESCO,II.5.1,Chaco,AR-H,annual,2016,gas oil combustion consumption by agriculture machines,59.81472,TJ,N2O,3.9,kg/TJ,233.277408,kg -4d5b3623-86ff-326e-92f0-cb53d72ce19e,SESCO,II.5.1,Corrientes,AR-W,annual,2016,gas oil combustion consumption by agriculture machines,14.8092,TJ,CO2,74100.0,kg/TJ,1097361.72,kg -630bde62-b5a7-3d38-b73d-5daf3e161fcc,SESCO,II.5.1,Corrientes,AR-W,annual,2016,gas oil combustion consumption by agriculture machines,14.8092,TJ,CH4,3.9,kg/TJ,57.75588,kg -630bde62-b5a7-3d38-b73d-5daf3e161fcc,SESCO,II.5.1,Corrientes,AR-W,annual,2016,gas oil combustion consumption by agriculture machines,14.8092,TJ,N2O,3.9,kg/TJ,57.75588,kg -daadf975-d134-3c9f-8951-a1e4001882c1,SESCO,II.5.1,Córdoba,AR-X,annual,2016,gas oil combustion consumption by agriculture machines,61.11504,TJ,CO2,74100.0,kg/TJ,4528624.464,kg -c29679f8-39d1-3ad1-8b08-558942b8ac1b,SESCO,II.5.1,Córdoba,AR-X,annual,2016,gas oil combustion consumption by agriculture machines,61.11504,TJ,CH4,3.9,kg/TJ,238.348656,kg -c29679f8-39d1-3ad1-8b08-558942b8ac1b,SESCO,II.5.1,Córdoba,AR-X,annual,2016,gas oil combustion consumption by agriculture machines,61.11504,TJ,N2O,3.9,kg/TJ,238.348656,kg -0a80dd69-0bff-3b75-9847-dcb7d2d67e48,SESCO,II.5.1,Entre Rios,AR-E,annual,2016,gas oil combustion consumption by agriculture machines,26.15088,TJ,CO2,74100.0,kg/TJ,1937780.208,kg -b7bd2319-7660-3e10-922e-8f5ebf29add2,SESCO,II.5.1,Entre Rios,AR-E,annual,2016,gas oil combustion consumption by agriculture machines,26.15088,TJ,CH4,3.9,kg/TJ,101.988432,kg -b7bd2319-7660-3e10-922e-8f5ebf29add2,SESCO,II.5.1,Entre Rios,AR-E,annual,2016,gas oil combustion consumption by agriculture machines,26.15088,TJ,N2O,3.9,kg/TJ,101.988432,kg -c121e74d-9460-326c-aa90-04126b550bfb,SESCO,II.5.1,Formosa,AR-P,annual,2016,gas oil combustion consumption by agriculture machines,4.62336,TJ,CO2,74100.0,kg/TJ,342590.97599999997,kg -bfac1636-2cd4-35ce-b34c-ec0950f754fd,SESCO,II.5.1,Formosa,AR-P,annual,2016,gas oil combustion consumption by agriculture machines,4.62336,TJ,CH4,3.9,kg/TJ,18.031104,kg -bfac1636-2cd4-35ce-b34c-ec0950f754fd,SESCO,II.5.1,Formosa,AR-P,annual,2016,gas oil combustion consumption by agriculture machines,4.62336,TJ,N2O,3.9,kg/TJ,18.031104,kg -92272ab0-7150-375b-a72a-b342f840afdb,SESCO,II.5.1,Jujuy,AR-Y,annual,2016,gas oil combustion consumption by agriculture machines,14.484119999999999,TJ,CO2,74100.0,kg/TJ,1073273.292,kg -fa312056-8500-3f00-9fc0-180f8c0e776b,SESCO,II.5.1,Jujuy,AR-Y,annual,2016,gas oil combustion consumption by agriculture machines,14.484119999999999,TJ,CH4,3.9,kg/TJ,56.48806799999999,kg -fa312056-8500-3f00-9fc0-180f8c0e776b,SESCO,II.5.1,Jujuy,AR-Y,annual,2016,gas oil combustion consumption by agriculture machines,14.484119999999999,TJ,N2O,3.9,kg/TJ,56.48806799999999,kg -1edd381b-b3ea-3345-b96f-186699cfab24,SESCO,II.5.1,La Pampa,AR-L,annual,2016,gas oil combustion consumption by agriculture machines,94.95948,TJ,CO2,74100.0,kg/TJ,7036497.468,kg -651ba714-a6f4-344a-ba6f-09073e041739,SESCO,II.5.1,La Pampa,AR-L,annual,2016,gas oil combustion consumption by agriculture machines,94.95948,TJ,CH4,3.9,kg/TJ,370.341972,kg -651ba714-a6f4-344a-ba6f-09073e041739,SESCO,II.5.1,La Pampa,AR-L,annual,2016,gas oil combustion consumption by agriculture machines,94.95948,TJ,N2O,3.9,kg/TJ,370.341972,kg -38b18c50-d6c1-30aa-97ee-59e8797d0197,SESCO,II.5.1,Mendoza,AR-M,annual,2016,gas oil combustion consumption by agriculture machines,54.64956,TJ,CO2,74100.0,kg/TJ,4049532.396,kg -a913230c-1328-31f6-b211-84852a6d508f,SESCO,II.5.1,Mendoza,AR-M,annual,2016,gas oil combustion consumption by agriculture machines,54.64956,TJ,CH4,3.9,kg/TJ,213.133284,kg -a913230c-1328-31f6-b211-84852a6d508f,SESCO,II.5.1,Mendoza,AR-M,annual,2016,gas oil combustion consumption by agriculture machines,54.64956,TJ,N2O,3.9,kg/TJ,213.133284,kg -193528d2-8ac0-3b00-a382-c2876a264d9c,SESCO,II.5.1,Misiones,AR-N,annual,2016,gas oil combustion consumption by agriculture machines,73.46808,TJ,CO2,74100.0,kg/TJ,5443984.728,kg -bfe4077a-9f35-34ac-8933-fc835f7b31df,SESCO,II.5.1,Misiones,AR-N,annual,2016,gas oil combustion consumption by agriculture machines,73.46808,TJ,CH4,3.9,kg/TJ,286.525512,kg -bfe4077a-9f35-34ac-8933-fc835f7b31df,SESCO,II.5.1,Misiones,AR-N,annual,2016,gas oil combustion consumption by agriculture machines,73.46808,TJ,N2O,3.9,kg/TJ,286.525512,kg -7bebb4eb-7cdc-3130-bc1b-675341947a83,SESCO,II.5.1,Rio Negro,AR-R,annual,2016,gas oil combustion consumption by agriculture machines,4.1537999999999995,TJ,CO2,74100.0,kg/TJ,307796.57999999996,kg -13c10e70-b9e5-31c1-a805-a2e5cb00dedb,SESCO,II.5.1,Rio Negro,AR-R,annual,2016,gas oil combustion consumption by agriculture machines,4.1537999999999995,TJ,CH4,3.9,kg/TJ,16.19982,kg -13c10e70-b9e5-31c1-a805-a2e5cb00dedb,SESCO,II.5.1,Rio Negro,AR-R,annual,2016,gas oil combustion consumption by agriculture machines,4.1537999999999995,TJ,N2O,3.9,kg/TJ,16.19982,kg -5f2a279d-31cf-37c9-8ff0-dc10560ddcd5,SESCO,II.5.1,Salta,AR-A,annual,2016,gas oil combustion consumption by agriculture machines,107.38476,TJ,CO2,74100.0,kg/TJ,7957210.716,kg -726c1971-78fe-3492-b346-fa37941e8e95,SESCO,II.5.1,Salta,AR-A,annual,2016,gas oil combustion consumption by agriculture machines,107.38476,TJ,CH4,3.9,kg/TJ,418.800564,kg -726c1971-78fe-3492-b346-fa37941e8e95,SESCO,II.5.1,Salta,AR-A,annual,2016,gas oil combustion consumption by agriculture machines,107.38476,TJ,N2O,3.9,kg/TJ,418.800564,kg -77776ff5-3790-3d75-b590-5cb15e3f8983,SESCO,II.5.1,San Juan,AR-J,annual,2016,gas oil combustion consumption by agriculture machines,24.0198,TJ,CO2,74100.0,kg/TJ,1779867.18,kg -347cc392-6cbc-3f8b-a7e6-cb6e06b86f66,SESCO,II.5.1,San Juan,AR-J,annual,2016,gas oil combustion consumption by agriculture machines,24.0198,TJ,CH4,3.9,kg/TJ,93.67721999999999,kg -347cc392-6cbc-3f8b-a7e6-cb6e06b86f66,SESCO,II.5.1,San Juan,AR-J,annual,2016,gas oil combustion consumption by agriculture machines,24.0198,TJ,N2O,3.9,kg/TJ,93.67721999999999,kg -1bd88a0a-2488-3bc5-b633-1914010f2555,SESCO,II.5.1,San Luis,AR-D,annual,2016,gas oil combustion consumption by agriculture machines,31.352159999999998,TJ,CO2,74100.0,kg/TJ,2323195.056,kg -b276908b-6857-32a7-b982-d25e3f4c9c91,SESCO,II.5.1,San Luis,AR-D,annual,2016,gas oil combustion consumption by agriculture machines,31.352159999999998,TJ,CH4,3.9,kg/TJ,122.27342399999999,kg -b276908b-6857-32a7-b982-d25e3f4c9c91,SESCO,II.5.1,San Luis,AR-D,annual,2016,gas oil combustion consumption by agriculture machines,31.352159999999998,TJ,N2O,3.9,kg/TJ,122.27342399999999,kg -f7fb1424-609a-3dd6-8da8-1e8c92dd4210,SESCO,II.5.1,Santa Fe,AR-S,annual,2016,gas oil combustion consumption by agriculture machines,133.21056,TJ,CO2,74100.0,kg/TJ,9870902.496,kg -edd527df-697b-3446-bad9-219925fdb61b,SESCO,II.5.1,Santa Fe,AR-S,annual,2016,gas oil combustion consumption by agriculture machines,133.21056,TJ,CH4,3.9,kg/TJ,519.521184,kg -edd527df-697b-3446-bad9-219925fdb61b,SESCO,II.5.1,Santa Fe,AR-S,annual,2016,gas oil combustion consumption by agriculture machines,133.21056,TJ,N2O,3.9,kg/TJ,519.521184,kg -1bf1536e-5fa5-39b4-8536-fc65d6ab5a0e,SESCO,II.5.1,Santiago del Estero,AR-G,annual,2016,gas oil combustion consumption by agriculture machines,80.33088,TJ,CO2,74100.0,kg/TJ,5952518.208,kg -940ea05c-99da-34d5-8b2d-71bcf99e0def,SESCO,II.5.1,Santiago del Estero,AR-G,annual,2016,gas oil combustion consumption by agriculture machines,80.33088,TJ,CH4,3.9,kg/TJ,313.29043199999995,kg -940ea05c-99da-34d5-8b2d-71bcf99e0def,SESCO,II.5.1,Santiago del Estero,AR-G,annual,2016,gas oil combustion consumption by agriculture machines,80.33088,TJ,N2O,3.9,kg/TJ,313.29043199999995,kg -76667790-2878-362c-b30f-60139bcdd168,SESCO,II.5.1,Tucuman,AR-T,annual,2016,gas oil combustion consumption by agriculture machines,72.27611999999999,TJ,CO2,74100.0,kg/TJ,5355660.492,kg -bb5a186c-36ec-3886-b2ac-917d5fc1aef1,SESCO,II.5.1,Tucuman,AR-T,annual,2016,gas oil combustion consumption by agriculture machines,72.27611999999999,TJ,CH4,3.9,kg/TJ,281.87686799999994,kg -bb5a186c-36ec-3886-b2ac-917d5fc1aef1,SESCO,II.5.1,Tucuman,AR-T,annual,2016,gas oil combustion consumption by agriculture machines,72.27611999999999,TJ,N2O,3.9,kg/TJ,281.87686799999994,kg -624bb00b-a1f3-36a9-91aa-1374f262ccbe,SESCO,II.5.1,Buenos Aires,AR-B,annual,2016,jet kerosene combustion consumption by agriculture machines,8.429403999999998,TJ,CO2,71500.0,kg/TJ,602702.3859999998,kg -1a7022c2-485e-3511-816f-1d59a7eaeb00,SESCO,II.5.1,Buenos Aires,AR-B,annual,2016,jet kerosene combustion consumption by agriculture machines,8.429403999999998,TJ,CH4,0.5,kg/TJ,4.214701999999999,kg -16197db5-2b01-3b47-ab90-cad747d2978e,SESCO,II.5.1,Buenos Aires,AR-B,annual,2016,jet kerosene combustion consumption by agriculture machines,8.429403999999998,TJ,N2O,2.0,kg/TJ,16.858807999999996,kg -f15cf9af-afeb-31b9-a32e-757a60ba7346,SESCO,II.5.1,Córdoba,AR-X,annual,2016,jet kerosene combustion consumption by agriculture machines,0.31453,TJ,CO2,71500.0,kg/TJ,22488.894999999997,kg -cf48b8c3-2f61-3dd0-b123-b5d477ee9603,SESCO,II.5.1,Córdoba,AR-X,annual,2016,jet kerosene combustion consumption by agriculture machines,0.31453,TJ,CH4,0.5,kg/TJ,0.157265,kg -ba1ec442-4a67-3a2f-9a40-c16e4a8f5665,SESCO,II.5.1,Córdoba,AR-X,annual,2016,jet kerosene combustion consumption by agriculture machines,0.31453,TJ,N2O,2.0,kg/TJ,0.62906,kg -fde7ca6d-a175-3877-9429-c9191f909738,SESCO,II.5.1,Entre Rios,AR-E,annual,2016,jet kerosene combustion consumption by agriculture machines,0.157265,TJ,CO2,71500.0,kg/TJ,11244.447499999998,kg -0a2b02da-e900-3b4a-9805-c75316635314,SESCO,II.5.1,Entre Rios,AR-E,annual,2016,jet kerosene combustion consumption by agriculture machines,0.157265,TJ,CH4,0.5,kg/TJ,0.0786325,kg -fc0df5e4-0fc4-3c4f-8a62-418b1dffb0b0,SESCO,II.5.1,Entre Rios,AR-E,annual,2016,jet kerosene combustion consumption by agriculture machines,0.157265,TJ,N2O,2.0,kg/TJ,0.31453,kg -9d18ff69-70b1-3f46-8a74-c876b630d713,SESCO,II.5.1,La Pampa,AR-L,annual,2016,jet kerosene combustion consumption by agriculture machines,0.62906,TJ,CO2,71500.0,kg/TJ,44977.78999999999,kg -23a3138c-0ad2-3901-9a62-3cd2ca98c8b6,SESCO,II.5.1,La Pampa,AR-L,annual,2016,jet kerosene combustion consumption by agriculture machines,0.62906,TJ,CH4,0.5,kg/TJ,0.31453,kg -e785db31-9b87-35a7-87cf-9d142049639d,SESCO,II.5.1,La Pampa,AR-L,annual,2016,jet kerosene combustion consumption by agriculture machines,0.62906,TJ,N2O,2.0,kg/TJ,1.25812,kg -c8d612d3-26de-3d78-9af0-86c24650f57b,SESCO,II.5.1,Santa Fe,AR-S,annual,2016,jet kerosene combustion consumption by agriculture machines,2.2646159999999997,TJ,CO2,71500.0,kg/TJ,161920.044,kg -287cd96d-70fb-34ea-924e-a52cb435fdc2,SESCO,II.5.1,Santa Fe,AR-S,annual,2016,jet kerosene combustion consumption by agriculture machines,2.2646159999999997,TJ,CH4,0.5,kg/TJ,1.1323079999999999,kg -4ca112ec-1201-3256-8ab3-b6de639987a9,SESCO,II.5.1,Santa Fe,AR-S,annual,2016,jet kerosene combustion consumption by agriculture machines,2.2646159999999997,TJ,N2O,2.0,kg/TJ,4.5292319999999995,kg -80772fc6-2ebb-3e7c-8263-f95213e24b6a,SESCO,II.1.1,Buenos Aires,AR-B,annual,2016,gas oil combustion consumption by to the public,29699.41716,TJ,CO2,74100.0,kg/TJ,2200726811.556,kg -167f083c-4e56-3a22-a762-ab644593b1a3,SESCO,II.1.1,Buenos Aires,AR-B,annual,2016,gas oil combustion consumption by to the public,29699.41716,TJ,CH4,3.9,kg/TJ,115827.726924,kg -167f083c-4e56-3a22-a762-ab644593b1a3,SESCO,II.1.1,Buenos Aires,AR-B,annual,2016,gas oil combustion consumption by to the public,29699.41716,TJ,N2O,3.9,kg/TJ,115827.726924,kg -50874858-b0f5-376f-bb6b-19bb7f2426ef,SESCO,II.1.1,Capital Federal,AR-C,annual,2016,gas oil combustion consumption by to the public,3471.52932,TJ,CO2,74100.0,kg/TJ,257240322.61200002,kg -b3d08e33-a8e7-3f60-a320-90df6da43ff1,SESCO,II.1.1,Capital Federal,AR-C,annual,2016,gas oil combustion consumption by to the public,3471.52932,TJ,CH4,3.9,kg/TJ,13538.964348,kg -b3d08e33-a8e7-3f60-a320-90df6da43ff1,SESCO,II.1.1,Capital Federal,AR-C,annual,2016,gas oil combustion consumption by to the public,3471.52932,TJ,N2O,3.9,kg/TJ,13538.964348,kg -4d0a5756-81a1-3ee4-b344-de5b3042d270,SESCO,II.1.1,Catamarca,AR-K,annual,2016,gas oil combustion consumption by to the public,322.9128,TJ,CO2,74100.0,kg/TJ,23927838.48,kg -3839dd8d-6f2a-33ce-bb61-c6d351641c6e,SESCO,II.1.1,Catamarca,AR-K,annual,2016,gas oil combustion consumption by to the public,322.9128,TJ,CH4,3.9,kg/TJ,1259.3599199999999,kg -3839dd8d-6f2a-33ce-bb61-c6d351641c6e,SESCO,II.1.1,Catamarca,AR-K,annual,2016,gas oil combustion consumption by to the public,322.9128,TJ,N2O,3.9,kg/TJ,1259.3599199999999,kg -8bc62ef8-b155-37ab-a781-034955a0ae40,SESCO,II.1.1,Chaco,AR-H,annual,2016,gas oil combustion consumption by to the public,2165.14116,TJ,CO2,74100.0,kg/TJ,160436959.956,kg -7e68b86b-12f3-3ea4-8e7c-73dea62c7a29,SESCO,II.1.1,Chaco,AR-H,annual,2016,gas oil combustion consumption by to the public,2165.14116,TJ,CH4,3.9,kg/TJ,8444.050524,kg -7e68b86b-12f3-3ea4-8e7c-73dea62c7a29,SESCO,II.1.1,Chaco,AR-H,annual,2016,gas oil combustion consumption by to the public,2165.14116,TJ,N2O,3.9,kg/TJ,8444.050524,kg -f1fc7712-2159-3507-a5a3-2e000382b833,SESCO,II.1.1,Chubut,AR-U,annual,2016,gas oil combustion consumption by to the public,4197.61356,TJ,CO2,74100.0,kg/TJ,311043164.796,kg -da329d36-4772-3a6a-8be0-16a9465155a4,SESCO,II.1.1,Chubut,AR-U,annual,2016,gas oil combustion consumption by to the public,4197.61356,TJ,CH4,3.9,kg/TJ,16370.692883999998,kg -da329d36-4772-3a6a-8be0-16a9465155a4,SESCO,II.1.1,Chubut,AR-U,annual,2016,gas oil combustion consumption by to the public,4197.61356,TJ,N2O,3.9,kg/TJ,16370.692883999998,kg -60e49e80-5efd-3872-822e-e4f950b2e7df,SESCO,II.1.1,Corrientes,AR-W,annual,2016,gas oil combustion consumption by to the public,1752.47016,TJ,CO2,74100.0,kg/TJ,129858038.856,kg -fc2660e5-77bc-3a76-a600-f1be3272c734,SESCO,II.1.1,Corrientes,AR-W,annual,2016,gas oil combustion consumption by to the public,1752.47016,TJ,CH4,3.9,kg/TJ,6834.633624,kg -fc2660e5-77bc-3a76-a600-f1be3272c734,SESCO,II.1.1,Corrientes,AR-W,annual,2016,gas oil combustion consumption by to the public,1752.47016,TJ,N2O,3.9,kg/TJ,6834.633624,kg -ad463d8a-95fb-3419-b273-43eb4e32eacb,SESCO,II.1.1,Córdoba,AR-X,annual,2016,gas oil combustion consumption by to the public,11936.14296,TJ,CO2,74100.0,kg/TJ,884468193.336,kg -93f54198-f11d-30e2-aa04-ae7f70f2eee1,SESCO,II.1.1,Córdoba,AR-X,annual,2016,gas oil combustion consumption by to the public,11936.14296,TJ,CH4,3.9,kg/TJ,46550.957544,kg -93f54198-f11d-30e2-aa04-ae7f70f2eee1,SESCO,II.1.1,Córdoba,AR-X,annual,2016,gas oil combustion consumption by to the public,11936.14296,TJ,N2O,3.9,kg/TJ,46550.957544,kg -bce4d73b-93d1-3c8f-b48e-821130cf3290,SESCO,II.1.1,Entre Rios,AR-E,annual,2016,gas oil combustion consumption by to the public,3660.5814,TJ,CO2,74100.0,kg/TJ,271249081.74,kg -833dab75-c79a-3f47-9446-2183c88e3740,SESCO,II.1.1,Entre Rios,AR-E,annual,2016,gas oil combustion consumption by to the public,3660.5814,TJ,CH4,3.9,kg/TJ,14276.26746,kg -833dab75-c79a-3f47-9446-2183c88e3740,SESCO,II.1.1,Entre Rios,AR-E,annual,2016,gas oil combustion consumption by to the public,3660.5814,TJ,N2O,3.9,kg/TJ,14276.26746,kg -4118b2b8-04b7-33e0-9233-cf43ad545ad2,SESCO,II.1.1,Formosa,AR-P,annual,2016,gas oil combustion consumption by to the public,574.56084,TJ,CO2,74100.0,kg/TJ,42574958.243999995,kg -3e5623b8-601a-3641-a4f6-894c0fcc3dd8,SESCO,II.1.1,Formosa,AR-P,annual,2016,gas oil combustion consumption by to the public,574.56084,TJ,CH4,3.9,kg/TJ,2240.787276,kg -3e5623b8-601a-3641-a4f6-894c0fcc3dd8,SESCO,II.1.1,Formosa,AR-P,annual,2016,gas oil combustion consumption by to the public,574.56084,TJ,N2O,3.9,kg/TJ,2240.787276,kg -6b51c8a8-be33-38e9-9087-5742f3f711fe,SESCO,II.1.1,Jujuy,AR-Y,annual,2016,gas oil combustion consumption by to the public,1619.00676,TJ,CO2,74100.0,kg/TJ,119968400.916,kg -0cd9438c-97fb-3f1b-9430-7b7469fc1aa3,SESCO,II.1.1,Jujuy,AR-Y,annual,2016,gas oil combustion consumption by to the public,1619.00676,TJ,CH4,3.9,kg/TJ,6314.126364,kg -0cd9438c-97fb-3f1b-9430-7b7469fc1aa3,SESCO,II.1.1,Jujuy,AR-Y,annual,2016,gas oil combustion consumption by to the public,1619.00676,TJ,N2O,3.9,kg/TJ,6314.126364,kg -7f1e983c-b6b2-3d17-b605-b4e9b97ee9d3,SESCO,II.1.1,La Pampa,AR-L,annual,2016,gas oil combustion consumption by to the public,2712.28692,TJ,CO2,74100.0,kg/TJ,200980460.772,kg -e200aa30-d4f2-3b84-9939-9542e6a3272e,SESCO,II.1.1,La Pampa,AR-L,annual,2016,gas oil combustion consumption by to the public,2712.28692,TJ,CH4,3.9,kg/TJ,10577.918988,kg -e200aa30-d4f2-3b84-9939-9542e6a3272e,SESCO,II.1.1,La Pampa,AR-L,annual,2016,gas oil combustion consumption by to the public,2712.28692,TJ,N2O,3.9,kg/TJ,10577.918988,kg -0ea017b8-b20b-3f93-a6df-11dc16b1f138,SESCO,II.1.1,La Rioja,AR-F,annual,2016,gas oil combustion consumption by to the public,691.62576,TJ,CO2,74100.0,kg/TJ,51249468.816,kg -131b983b-6747-3013-8cc8-4f718caa5027,SESCO,II.1.1,La Rioja,AR-F,annual,2016,gas oil combustion consumption by to the public,691.62576,TJ,CH4,3.9,kg/TJ,2697.340464,kg -131b983b-6747-3013-8cc8-4f718caa5027,SESCO,II.1.1,La Rioja,AR-F,annual,2016,gas oil combustion consumption by to the public,691.62576,TJ,N2O,3.9,kg/TJ,2697.340464,kg -e3682d41-0d95-35a9-8a73-cc7f041f7746,SESCO,II.1.1,Mendoza,AR-M,annual,2016,gas oil combustion consumption by to the public,8947.06848,TJ,CO2,74100.0,kg/TJ,662977774.368,kg -4b32b266-0e27-31e6-9cab-5f2bbfd69d9d,SESCO,II.1.1,Mendoza,AR-M,annual,2016,gas oil combustion consumption by to the public,8947.06848,TJ,CH4,3.9,kg/TJ,34893.567072,kg -4b32b266-0e27-31e6-9cab-5f2bbfd69d9d,SESCO,II.1.1,Mendoza,AR-M,annual,2016,gas oil combustion consumption by to the public,8947.06848,TJ,N2O,3.9,kg/TJ,34893.567072,kg -fef284de-8e25-321d-905b-6a4b09ca1cdd,SESCO,II.1.1,Misiones,AR-N,annual,2016,gas oil combustion consumption by to the public,3028.22856,TJ,CO2,74100.0,kg/TJ,224391736.296,kg -d39e3b77-60d1-3c54-b87e-4a67dbf24cea,SESCO,II.1.1,Misiones,AR-N,annual,2016,gas oil combustion consumption by to the public,3028.22856,TJ,CH4,3.9,kg/TJ,11810.091384,kg -d39e3b77-60d1-3c54-b87e-4a67dbf24cea,SESCO,II.1.1,Misiones,AR-N,annual,2016,gas oil combustion consumption by to the public,3028.22856,TJ,N2O,3.9,kg/TJ,11810.091384,kg -2c38e3f2-b720-329b-8dbc-06df3807087f,SESCO,II.1.1,Neuquén,AR-Q,annual,2016,gas oil combustion consumption by to the public,2350.90632,TJ,CO2,74100.0,kg/TJ,174202158.312,kg -4901c163-60bf-3a5c-a399-4cbdb44a055b,SESCO,II.1.1,Neuquén,AR-Q,annual,2016,gas oil combustion consumption by to the public,2350.90632,TJ,CH4,3.9,kg/TJ,9168.534648,kg -4901c163-60bf-3a5c-a399-4cbdb44a055b,SESCO,II.1.1,Neuquén,AR-Q,annual,2016,gas oil combustion consumption by to the public,2350.90632,TJ,N2O,3.9,kg/TJ,9168.534648,kg -a920619b-e68a-3d8b-8b10-9b2999d5e824,SESCO,II.1.1,Rio Negro,AR-R,annual,2016,gas oil combustion consumption by to the public,3933.90144,TJ,CO2,74100.0,kg/TJ,291502096.704,kg -3fdd7662-f2bb-3c18-8161-8df6dac75cf4,SESCO,II.1.1,Rio Negro,AR-R,annual,2016,gas oil combustion consumption by to the public,3933.90144,TJ,CH4,3.9,kg/TJ,15342.215616,kg -3fdd7662-f2bb-3c18-8161-8df6dac75cf4,SESCO,II.1.1,Rio Negro,AR-R,annual,2016,gas oil combustion consumption by to the public,3933.90144,TJ,N2O,3.9,kg/TJ,15342.215616,kg -94c822ea-e79f-3372-aa3d-a8b1baaf65a6,SESCO,II.1.1,Salta,AR-A,annual,2016,gas oil combustion consumption by to the public,3893.84436,TJ,CO2,74100.0,kg/TJ,288533867.076,kg -44427341-a0f4-3f82-813a-10eb35635720,SESCO,II.1.1,Salta,AR-A,annual,2016,gas oil combustion consumption by to the public,3893.84436,TJ,CH4,3.9,kg/TJ,15185.993004,kg -44427341-a0f4-3f82-813a-10eb35635720,SESCO,II.1.1,Salta,AR-A,annual,2016,gas oil combustion consumption by to the public,3893.84436,TJ,N2O,3.9,kg/TJ,15185.993004,kg -78da8401-680d-39e1-93fe-5da717157270,SESCO,II.1.1,San Juan,AR-J,annual,2016,gas oil combustion consumption by to the public,1917.10512,TJ,CO2,74100.0,kg/TJ,142057489.392,kg -07530548-cca8-3e26-96b4-28ae9921602a,SESCO,II.1.1,San Juan,AR-J,annual,2016,gas oil combustion consumption by to the public,1917.10512,TJ,CH4,3.9,kg/TJ,7476.709967999999,kg -07530548-cca8-3e26-96b4-28ae9921602a,SESCO,II.1.1,San Juan,AR-J,annual,2016,gas oil combustion consumption by to the public,1917.10512,TJ,N2O,3.9,kg/TJ,7476.709967999999,kg -040138b2-4fae-377e-a537-3ae6f8066d05,SESCO,II.1.1,San Luis,AR-D,annual,2016,gas oil combustion consumption by to the public,1758.46608,TJ,CO2,74100.0,kg/TJ,130302336.528,kg -8d3d0314-23d1-3236-9af8-66460d76a8a1,SESCO,II.1.1,San Luis,AR-D,annual,2016,gas oil combustion consumption by to the public,1758.46608,TJ,CH4,3.9,kg/TJ,6858.017712,kg -8d3d0314-23d1-3236-9af8-66460d76a8a1,SESCO,II.1.1,San Luis,AR-D,annual,2016,gas oil combustion consumption by to the public,1758.46608,TJ,N2O,3.9,kg/TJ,6858.017712,kg -a87e657b-6623-3d3f-8126-454344c1dd81,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2016,gas oil combustion consumption by to the public,2541.18648,TJ,CO2,74100.0,kg/TJ,188301918.16799998,kg -dd873607-deba-31bf-83d0-dc7ae3dce3c7,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2016,gas oil combustion consumption by to the public,2541.18648,TJ,CH4,3.9,kg/TJ,9910.627272,kg -dd873607-deba-31bf-83d0-dc7ae3dce3c7,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2016,gas oil combustion consumption by to the public,2541.18648,TJ,N2O,3.9,kg/TJ,9910.627272,kg -c775ca3f-b6fc-33f0-bc63-65958b7f202a,SESCO,II.1.1,Santa Fe,AR-S,annual,2016,gas oil combustion consumption by to the public,8340.68592,TJ,CO2,74100.0,kg/TJ,618044826.672,kg -374716aa-d437-3d92-be04-995035f52dfd,SESCO,II.1.1,Santa Fe,AR-S,annual,2016,gas oil combustion consumption by to the public,8340.68592,TJ,CH4,3.9,kg/TJ,32528.675088,kg -374716aa-d437-3d92-be04-995035f52dfd,SESCO,II.1.1,Santa Fe,AR-S,annual,2016,gas oil combustion consumption by to the public,8340.68592,TJ,N2O,3.9,kg/TJ,32528.675088,kg -6a547ddb-87ac-3629-8278-fc237ea70e29,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2016,gas oil combustion consumption by to the public,2173.95444,TJ,CO2,74100.0,kg/TJ,161090024.004,kg -570435a2-7a95-3172-a037-401963a1c383,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2016,gas oil combustion consumption by to the public,2173.95444,TJ,CH4,3.9,kg/TJ,8478.422316,kg -570435a2-7a95-3172-a037-401963a1c383,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2016,gas oil combustion consumption by to the public,2173.95444,TJ,N2O,3.9,kg/TJ,8478.422316,kg -73b3d632-6352-3c17-be80-a543940b0187,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2016,gas oil combustion consumption by to the public,946.41624,TJ,CO2,74100.0,kg/TJ,70129443.384,kg -148cb2fc-daa4-3415-b68c-0a3b477a9327,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2016,gas oil combustion consumption by to the public,946.41624,TJ,CH4,3.9,kg/TJ,3691.023336,kg -148cb2fc-daa4-3415-b68c-0a3b477a9327,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2016,gas oil combustion consumption by to the public,946.41624,TJ,N2O,3.9,kg/TJ,3691.023336,kg -4c0b1f27-78a4-32d7-bc7e-63caa4c04d82,SESCO,II.1.1,Tucuman,AR-T,annual,2016,gas oil combustion consumption by to the public,1964.9279999999999,TJ,CO2,74100.0,kg/TJ,145601164.79999998,kg -a59a936d-94b2-36cc-b619-ba1b379e6a52,SESCO,II.1.1,Tucuman,AR-T,annual,2016,gas oil combustion consumption by to the public,1964.9279999999999,TJ,CH4,3.9,kg/TJ,7663.2192,kg -a59a936d-94b2-36cc-b619-ba1b379e6a52,SESCO,II.1.1,Tucuman,AR-T,annual,2016,gas oil combustion consumption by to the public,1964.9279999999999,TJ,N2O,3.9,kg/TJ,7663.2192,kg -92dc9a36-9fe1-3a73-b263-fb140d2b6f42,SESCO,II.1.1,Buenos Aires,AR-B,annual,2016,gas oil combustion consumption by to the public,13968.507,TJ,CO2,74100.0,kg/TJ,1035066368.6999999,kg -20018339-3664-3f1d-8dcf-69793da75fa3,SESCO,II.1.1,Buenos Aires,AR-B,annual,2016,gas oil combustion consumption by to the public,13968.507,TJ,CH4,3.9,kg/TJ,54477.177299999996,kg -20018339-3664-3f1d-8dcf-69793da75fa3,SESCO,II.1.1,Buenos Aires,AR-B,annual,2016,gas oil combustion consumption by to the public,13968.507,TJ,N2O,3.9,kg/TJ,54477.177299999996,kg -f325e79d-f51c-3d99-95f6-b6263d5569d5,SESCO,II.1.1,Capital Federal,AR-C,annual,2016,gas oil combustion consumption by to the public,1927.29096,TJ,CO2,74100.0,kg/TJ,142812260.136,kg -d5250660-3636-305c-b92f-2b10c575e45f,SESCO,II.1.1,Capital Federal,AR-C,annual,2016,gas oil combustion consumption by to the public,1927.29096,TJ,CH4,3.9,kg/TJ,7516.434744,kg -d5250660-3636-305c-b92f-2b10c575e45f,SESCO,II.1.1,Capital Federal,AR-C,annual,2016,gas oil combustion consumption by to the public,1927.29096,TJ,N2O,3.9,kg/TJ,7516.434744,kg -540c6afb-0c72-30e7-8d63-72b96a648418,SESCO,II.1.1,Catamarca,AR-K,annual,2016,gas oil combustion consumption by to the public,267.8298,TJ,CO2,74100.0,kg/TJ,19846188.18,kg -693a5705-42a5-3dc7-9833-d29010c8c16b,SESCO,II.1.1,Catamarca,AR-K,annual,2016,gas oil combustion consumption by to the public,267.8298,TJ,CH4,3.9,kg/TJ,1044.53622,kg -693a5705-42a5-3dc7-9833-d29010c8c16b,SESCO,II.1.1,Catamarca,AR-K,annual,2016,gas oil combustion consumption by to the public,267.8298,TJ,N2O,3.9,kg/TJ,1044.53622,kg -00478d81-9121-38ad-8d79-3605cffead01,SESCO,II.1.1,Chaco,AR-H,annual,2016,gas oil combustion consumption by to the public,1076.95392,TJ,CO2,74100.0,kg/TJ,79802285.47199999,kg -6f1c6cc7-4dc8-35c8-85a2-98bdcac70bbb,SESCO,II.1.1,Chaco,AR-H,annual,2016,gas oil combustion consumption by to the public,1076.95392,TJ,CH4,3.9,kg/TJ,4200.120287999999,kg -6f1c6cc7-4dc8-35c8-85a2-98bdcac70bbb,SESCO,II.1.1,Chaco,AR-H,annual,2016,gas oil combustion consumption by to the public,1076.95392,TJ,N2O,3.9,kg/TJ,4200.120287999999,kg -83a840af-403d-34ae-9c8e-60b8f4adf662,SESCO,II.1.1,Chubut,AR-U,annual,2016,gas oil combustion consumption by to the public,1683.58932,TJ,CO2,74100.0,kg/TJ,124753968.612,kg -c53e3ca9-03f9-37ff-8baf-2a99119a3550,SESCO,II.1.1,Chubut,AR-U,annual,2016,gas oil combustion consumption by to the public,1683.58932,TJ,CH4,3.9,kg/TJ,6565.998348,kg -c53e3ca9-03f9-37ff-8baf-2a99119a3550,SESCO,II.1.1,Chubut,AR-U,annual,2016,gas oil combustion consumption by to the public,1683.58932,TJ,N2O,3.9,kg/TJ,6565.998348,kg -98a75168-e3ea-3129-9157-eac6bfe5b175,SESCO,II.1.1,Corrientes,AR-W,annual,2016,gas oil combustion consumption by to the public,1010.96268,TJ,CO2,74100.0,kg/TJ,74912334.588,kg -52f711ba-ff6c-3ddd-8242-a56fd5f5a4f3,SESCO,II.1.1,Corrientes,AR-W,annual,2016,gas oil combustion consumption by to the public,1010.96268,TJ,CH4,3.9,kg/TJ,3942.7544519999997,kg -52f711ba-ff6c-3ddd-8242-a56fd5f5a4f3,SESCO,II.1.1,Corrientes,AR-W,annual,2016,gas oil combustion consumption by to the public,1010.96268,TJ,N2O,3.9,kg/TJ,3942.7544519999997,kg -723ae602-efa8-327a-9d26-c7ca95c58b77,SESCO,II.1.1,Córdoba,AR-X,annual,2016,gas oil combustion consumption by to the public,3805.92828,TJ,CO2,74100.0,kg/TJ,282019285.548,kg -8016b4bb-8ec9-3d7d-b27b-f0a5b4bc6144,SESCO,II.1.1,Córdoba,AR-X,annual,2016,gas oil combustion consumption by to the public,3805.92828,TJ,CH4,3.9,kg/TJ,14843.120292,kg -8016b4bb-8ec9-3d7d-b27b-f0a5b4bc6144,SESCO,II.1.1,Córdoba,AR-X,annual,2016,gas oil combustion consumption by to the public,3805.92828,TJ,N2O,3.9,kg/TJ,14843.120292,kg -f1c711a4-52f7-312b-a065-d773715e1d8a,SESCO,II.1.1,Entre Rios,AR-E,annual,2016,gas oil combustion consumption by to the public,1566.23544,TJ,CO2,74100.0,kg/TJ,116058046.10399999,kg -77a071eb-b15f-32bc-82f4-e4c4391a80fb,SESCO,II.1.1,Entre Rios,AR-E,annual,2016,gas oil combustion consumption by to the public,1566.23544,TJ,CH4,3.9,kg/TJ,6108.318216,kg -77a071eb-b15f-32bc-82f4-e4c4391a80fb,SESCO,II.1.1,Entre Rios,AR-E,annual,2016,gas oil combustion consumption by to the public,1566.23544,TJ,N2O,3.9,kg/TJ,6108.318216,kg -48c3883c-d203-3506-bbf5-c9855ed17337,SESCO,II.1.1,Formosa,AR-P,annual,2016,gas oil combustion consumption by to the public,334.43507999999997,TJ,CO2,74100.0,kg/TJ,24781639.428,kg -7ff0be4f-a64c-3729-a0a2-b52d016cf4f1,SESCO,II.1.1,Formosa,AR-P,annual,2016,gas oil combustion consumption by to the public,334.43507999999997,TJ,CH4,3.9,kg/TJ,1304.2968119999998,kg -7ff0be4f-a64c-3729-a0a2-b52d016cf4f1,SESCO,II.1.1,Formosa,AR-P,annual,2016,gas oil combustion consumption by to the public,334.43507999999997,TJ,N2O,3.9,kg/TJ,1304.2968119999998,kg -95abb0cf-2c4b-3b5d-b47c-57379cc62192,SESCO,II.1.1,Jujuy,AR-Y,annual,2016,gas oil combustion consumption by to the public,663.30768,TJ,CO2,74100.0,kg/TJ,49151099.088,kg -4a68eea0-18bc-3e92-b520-fc3a2101d97f,SESCO,II.1.1,Jujuy,AR-Y,annual,2016,gas oil combustion consumption by to the public,663.30768,TJ,CH4,3.9,kg/TJ,2586.8999519999998,kg -4a68eea0-18bc-3e92-b520-fc3a2101d97f,SESCO,II.1.1,Jujuy,AR-Y,annual,2016,gas oil combustion consumption by to the public,663.30768,TJ,N2O,3.9,kg/TJ,2586.8999519999998,kg -9b133e59-95fe-39f7-857f-900396cff759,SESCO,II.1.1,La Pampa,AR-L,annual,2016,gas oil combustion consumption by to the public,1178.63172,TJ,CO2,74100.0,kg/TJ,87336610.452,kg -2f6f0255-d703-3299-8228-f0c7b2f7e723,SESCO,II.1.1,La Pampa,AR-L,annual,2016,gas oil combustion consumption by to the public,1178.63172,TJ,CH4,3.9,kg/TJ,4596.663708,kg -2f6f0255-d703-3299-8228-f0c7b2f7e723,SESCO,II.1.1,La Pampa,AR-L,annual,2016,gas oil combustion consumption by to the public,1178.63172,TJ,N2O,3.9,kg/TJ,4596.663708,kg -d17d1d31-1d28-3d0f-9e3b-e2ce84066c44,SESCO,II.1.1,La Rioja,AR-F,annual,2016,gas oil combustion consumption by to the public,379.29612,TJ,CO2,74100.0,kg/TJ,28105842.492,kg -5d94ed6e-b910-3c2b-a004-f61512c29556,SESCO,II.1.1,La Rioja,AR-F,annual,2016,gas oil combustion consumption by to the public,379.29612,TJ,CH4,3.9,kg/TJ,1479.2548679999998,kg -5d94ed6e-b910-3c2b-a004-f61512c29556,SESCO,II.1.1,La Rioja,AR-F,annual,2016,gas oil combustion consumption by to the public,379.29612,TJ,N2O,3.9,kg/TJ,1479.2548679999998,kg -8e497d42-d5b4-3440-a1bf-fead96947bc1,SESCO,II.1.1,Mendoza,AR-M,annual,2016,gas oil combustion consumption by to the public,2936.12256,TJ,CO2,74100.0,kg/TJ,217566681.69599998,kg -57c465f8-245b-3909-9299-e22eea5f6fba,SESCO,II.1.1,Mendoza,AR-M,annual,2016,gas oil combustion consumption by to the public,2936.12256,TJ,CH4,3.9,kg/TJ,11450.877983999999,kg -57c465f8-245b-3909-9299-e22eea5f6fba,SESCO,II.1.1,Mendoza,AR-M,annual,2016,gas oil combustion consumption by to the public,2936.12256,TJ,N2O,3.9,kg/TJ,11450.877983999999,kg -1948c130-e035-3eb6-aee1-0853969dfe59,SESCO,II.1.1,Misiones,AR-N,annual,2016,gas oil combustion consumption by to the public,1030.43136,TJ,CO2,74100.0,kg/TJ,76354963.77600001,kg -89016b45-8eec-3c2b-9d0d-df8a49e1bb2f,SESCO,II.1.1,Misiones,AR-N,annual,2016,gas oil combustion consumption by to the public,1030.43136,TJ,CH4,3.9,kg/TJ,4018.682304,kg -89016b45-8eec-3c2b-9d0d-df8a49e1bb2f,SESCO,II.1.1,Misiones,AR-N,annual,2016,gas oil combustion consumption by to the public,1030.43136,TJ,N2O,3.9,kg/TJ,4018.682304,kg -2ac0dc91-6881-32e4-88eb-f1793979c31e,SESCO,II.1.1,Neuquén,AR-Q,annual,2016,gas oil combustion consumption by to the public,2058.84,TJ,CO2,74100.0,kg/TJ,152560044.0,kg -749a7052-16b1-3964-bf26-081ec74b2085,SESCO,II.1.1,Neuquén,AR-Q,annual,2016,gas oil combustion consumption by to the public,2058.84,TJ,CH4,3.9,kg/TJ,8029.476000000001,kg -749a7052-16b1-3964-bf26-081ec74b2085,SESCO,II.1.1,Neuquén,AR-Q,annual,2016,gas oil combustion consumption by to the public,2058.84,TJ,N2O,3.9,kg/TJ,8029.476000000001,kg -66957213-8c46-38c3-afbe-59644fb80c85,SESCO,II.1.1,Rio Negro,AR-R,annual,2016,gas oil combustion consumption by to the public,1528.85124,TJ,CO2,74100.0,kg/TJ,113287876.884,kg -eeb60665-67f2-31a7-bd9f-dc1cca91bac2,SESCO,II.1.1,Rio Negro,AR-R,annual,2016,gas oil combustion consumption by to the public,1528.85124,TJ,CH4,3.9,kg/TJ,5962.5198359999995,kg -eeb60665-67f2-31a7-bd9f-dc1cca91bac2,SESCO,II.1.1,Rio Negro,AR-R,annual,2016,gas oil combustion consumption by to the public,1528.85124,TJ,N2O,3.9,kg/TJ,5962.5198359999995,kg -3c0cadd0-ef5f-35ea-8d9c-7bcdbb61eed2,SESCO,II.1.1,Salta,AR-A,annual,2016,gas oil combustion consumption by to the public,1415.79564,TJ,CO2,74100.0,kg/TJ,104910456.92400001,kg -a94be54a-acd5-3f7c-99c3-1818da1e9ef9,SESCO,II.1.1,Salta,AR-A,annual,2016,gas oil combustion consumption by to the public,1415.79564,TJ,CH4,3.9,kg/TJ,5521.602996,kg -a94be54a-acd5-3f7c-99c3-1818da1e9ef9,SESCO,II.1.1,Salta,AR-A,annual,2016,gas oil combustion consumption by to the public,1415.79564,TJ,N2O,3.9,kg/TJ,5521.602996,kg -4dc0cd6e-f56b-36b4-a7fc-2777ec947b84,SESCO,II.1.1,San Juan,AR-J,annual,2016,gas oil combustion consumption by to the public,607.50228,TJ,CO2,74100.0,kg/TJ,45015918.94800001,kg -52cf6326-345a-3bf6-96ff-4aae04c788ed,SESCO,II.1.1,San Juan,AR-J,annual,2016,gas oil combustion consumption by to the public,607.50228,TJ,CH4,3.9,kg/TJ,2369.2588920000003,kg -52cf6326-345a-3bf6-96ff-4aae04c788ed,SESCO,II.1.1,San Juan,AR-J,annual,2016,gas oil combustion consumption by to the public,607.50228,TJ,N2O,3.9,kg/TJ,2369.2588920000003,kg -3b624f44-6870-356d-af87-380723e844cd,SESCO,II.1.1,San Luis,AR-D,annual,2016,gas oil combustion consumption by to the public,644.05572,TJ,CO2,74100.0,kg/TJ,47724528.852,kg -2ba4fb1b-278f-3416-8b08-6d934f27a14b,SESCO,II.1.1,San Luis,AR-D,annual,2016,gas oil combustion consumption by to the public,644.05572,TJ,CH4,3.9,kg/TJ,2511.8173079999997,kg -2ba4fb1b-278f-3416-8b08-6d934f27a14b,SESCO,II.1.1,San Luis,AR-D,annual,2016,gas oil combustion consumption by to the public,644.05572,TJ,N2O,3.9,kg/TJ,2511.8173079999997,kg -9c028f93-73fa-30b2-9539-9e8bbc27d380,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2016,gas oil combustion consumption by to the public,1144.35384,TJ,CO2,74100.0,kg/TJ,84796619.544,kg -f6fa77dd-42cf-3645-9c1b-396218022764,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2016,gas oil combustion consumption by to the public,1144.35384,TJ,CH4,3.9,kg/TJ,4462.979976,kg -f6fa77dd-42cf-3645-9c1b-396218022764,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2016,gas oil combustion consumption by to the public,1144.35384,TJ,N2O,3.9,kg/TJ,4462.979976,kg -548ecf99-c5f3-37fa-b6de-3b14b037a671,SESCO,II.1.1,Santa Fe,AR-S,annual,2016,gas oil combustion consumption by to the public,3197.01732,TJ,CO2,74100.0,kg/TJ,236898983.412,kg -8f692794-6af4-3870-8828-ed3675ca0894,SESCO,II.1.1,Santa Fe,AR-S,annual,2016,gas oil combustion consumption by to the public,3197.01732,TJ,CH4,3.9,kg/TJ,12468.367548,kg -8f692794-6af4-3870-8828-ed3675ca0894,SESCO,II.1.1,Santa Fe,AR-S,annual,2016,gas oil combustion consumption by to the public,3197.01732,TJ,N2O,3.9,kg/TJ,12468.367548,kg -4d76303c-13d0-39d1-abfd-989a117ac7bb,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2016,gas oil combustion consumption by to the public,757.94208,TJ,CO2,74100.0,kg/TJ,56163508.128000006,kg -b2cd0460-3f15-3b53-999b-befd3005e667,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2016,gas oil combustion consumption by to the public,757.94208,TJ,CH4,3.9,kg/TJ,2955.974112,kg -b2cd0460-3f15-3b53-999b-befd3005e667,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2016,gas oil combustion consumption by to the public,757.94208,TJ,N2O,3.9,kg/TJ,2955.974112,kg -676f5f7a-a08d-352e-a4c2-3174d7ab71ae,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2016,gas oil combustion consumption by to the public,306.00864,TJ,CO2,74100.0,kg/TJ,22675240.224,kg -ecb499a5-3c2e-3882-8659-b901d08c6a30,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2016,gas oil combustion consumption by to the public,306.00864,TJ,CH4,3.9,kg/TJ,1193.433696,kg -ecb499a5-3c2e-3882-8659-b901d08c6a30,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2016,gas oil combustion consumption by to the public,306.00864,TJ,N2O,3.9,kg/TJ,1193.433696,kg -cae087cb-4dfc-3be8-8f9b-0ba41f89d671,SESCO,II.1.1,Tucuman,AR-T,annual,2016,gas oil combustion consumption by to the public,890.24964,TJ,CO2,74100.0,kg/TJ,65967498.324,kg -5cf92507-f5cf-326b-8c81-953956905f6c,SESCO,II.1.1,Tucuman,AR-T,annual,2016,gas oil combustion consumption by to the public,890.24964,TJ,CH4,3.9,kg/TJ,3471.973596,kg -5cf92507-f5cf-326b-8c81-953956905f6c,SESCO,II.1.1,Tucuman,AR-T,annual,2016,gas oil combustion consumption by to the public,890.24964,TJ,N2O,3.9,kg/TJ,3471.973596,kg -952553ce-6819-37b8-9c64-00eaeb4640e1,SESCO,II.1.1,Buenos Aires,AR-B,annual,2016,jet kerosene combustion consumption by to the public,128.92584699999998,TJ,CO2,71500.0,kg/TJ,9218198.060499998,kg -317237e2-7885-3e97-9bcf-84e8819ace6b,SESCO,II.1.1,Buenos Aires,AR-B,annual,2016,jet kerosene combustion consumption by to the public,128.92584699999998,TJ,CH4,0.5,kg/TJ,64.46292349999999,kg -c837df18-5302-3914-a25d-2d24f15ef022,SESCO,II.1.1,Buenos Aires,AR-B,annual,2016,jet kerosene combustion consumption by to the public,128.92584699999998,TJ,N2O,2.0,kg/TJ,257.85169399999995,kg -bff95acd-728e-32c6-b22b-3c3ec2b13690,SESCO,II.1.1,Capital Federal,AR-C,annual,2016,jet kerosene combustion consumption by to the public,3.9316249999999995,TJ,CO2,71500.0,kg/TJ,281111.18749999994,kg -e29ad113-785e-3650-b812-231b67a26c38,SESCO,II.1.1,Capital Federal,AR-C,annual,2016,jet kerosene combustion consumption by to the public,3.9316249999999995,TJ,CH4,0.5,kg/TJ,1.9658124999999997,kg -ad0ee2b5-fccd-3cbf-bd6f-b0dc0696e47f,SESCO,II.1.1,Capital Federal,AR-C,annual,2016,jet kerosene combustion consumption by to the public,3.9316249999999995,TJ,N2O,2.0,kg/TJ,7.863249999999999,kg -4b8b75d7-0707-3d44-bcc0-7a7c2754c834,SESCO,II.1.1,Catamarca,AR-K,annual,2016,jet kerosene combustion consumption by to the public,3.6485479999999995,TJ,CO2,71500.0,kg/TJ,260871.18199999997,kg -735f84f9-70ef-39d4-89a3-3f5122144007,SESCO,II.1.1,Catamarca,AR-K,annual,2016,jet kerosene combustion consumption by to the public,3.6485479999999995,TJ,CH4,0.5,kg/TJ,1.8242739999999997,kg -e47841bd-a212-30eb-baba-a8f939767454,SESCO,II.1.1,Catamarca,AR-K,annual,2016,jet kerosene combustion consumption by to the public,3.6485479999999995,TJ,N2O,2.0,kg/TJ,7.297095999999999,kg -1d01083f-249c-38d8-9823-f535f6b0eb72,SESCO,II.1.1,Chaco,AR-H,annual,2016,jet kerosene combustion consumption by to the public,0.9435899999999998,TJ,CO2,71500.0,kg/TJ,67466.68499999998,kg -0a81a26c-f7e7-3f2f-a200-0d3a6c36b990,SESCO,II.1.1,Chaco,AR-H,annual,2016,jet kerosene combustion consumption by to the public,0.9435899999999998,TJ,CH4,0.5,kg/TJ,0.4717949999999999,kg -12142e69-ca7e-32d9-87d9-abf69f579e26,SESCO,II.1.1,Chaco,AR-H,annual,2016,jet kerosene combustion consumption by to the public,0.9435899999999998,TJ,N2O,2.0,kg/TJ,1.8871799999999996,kg -05529dd7-0a31-3866-8166-6953d5ec4352,SESCO,II.1.1,Chubut,AR-U,annual,2016,jet kerosene combustion consumption by to the public,9.215728999999998,TJ,CO2,71500.0,kg/TJ,658924.6234999999,kg -a9c5f8a0-db05-3105-98bf-3f46463c0bd6,SESCO,II.1.1,Chubut,AR-U,annual,2016,jet kerosene combustion consumption by to the public,9.215728999999998,TJ,CH4,0.5,kg/TJ,4.607864499999999,kg -b73aac60-1c02-357a-a117-d89d1245337f,SESCO,II.1.1,Chubut,AR-U,annual,2016,jet kerosene combustion consumption by to the public,9.215728999999998,TJ,N2O,2.0,kg/TJ,18.431457999999996,kg -72203bf4-2a4b-389c-af41-5b65fe783a83,SESCO,II.1.1,Corrientes,AR-W,annual,2016,jet kerosene combustion consumption by to the public,3.7429069999999993,TJ,CO2,71500.0,kg/TJ,267617.85049999994,kg -8c530a14-ae4c-397a-9f73-7a89530d3223,SESCO,II.1.1,Corrientes,AR-W,annual,2016,jet kerosene combustion consumption by to the public,3.7429069999999993,TJ,CH4,0.5,kg/TJ,1.8714534999999997,kg -b25cb99f-2ddd-3784-b726-ea3e8ae983c4,SESCO,II.1.1,Corrientes,AR-W,annual,2016,jet kerosene combustion consumption by to the public,3.7429069999999993,TJ,N2O,2.0,kg/TJ,7.485813999999999,kg -7d730abe-d221-3eeb-9041-e42ffd38ce0e,SESCO,II.1.1,Córdoba,AR-X,annual,2016,jet kerosene combustion consumption by to the public,64.88753899999999,TJ,CO2,71500.0,kg/TJ,4639459.038499999,kg -d49fd6be-49d6-3eed-897b-3dab2d322165,SESCO,II.1.1,Córdoba,AR-X,annual,2016,jet kerosene combustion consumption by to the public,64.88753899999999,TJ,CH4,0.5,kg/TJ,32.443769499999995,kg -16baaf0f-0df3-3976-8240-18eb616f393a,SESCO,II.1.1,Córdoba,AR-X,annual,2016,jet kerosene combustion consumption by to the public,64.88753899999999,TJ,N2O,2.0,kg/TJ,129.77507799999998,kg -4bf65d8f-80dc-3165-b815-33db4918e588,SESCO,II.1.1,Entre Rios,AR-E,annual,2016,jet kerosene combustion consumption by to the public,7.485813999999999,TJ,CO2,71500.0,kg/TJ,535235.7009999999,kg -3ec12641-1dfb-3001-ba88-930bf7dc53c4,SESCO,II.1.1,Entre Rios,AR-E,annual,2016,jet kerosene combustion consumption by to the public,7.485813999999999,TJ,CH4,0.5,kg/TJ,3.7429069999999993,kg -5e3af14f-ef5c-31ef-8713-e23a63b3b391,SESCO,II.1.1,Entre Rios,AR-E,annual,2016,jet kerosene combustion consumption by to the public,7.485813999999999,TJ,N2O,2.0,kg/TJ,14.971627999999997,kg -3e7530cd-020d-37a3-8131-d38d5a482fe8,SESCO,II.1.1,Jujuy,AR-Y,annual,2016,jet kerosene combustion consumption by to the public,4.309060999999999,TJ,CO2,71500.0,kg/TJ,308097.86149999994,kg -ddf205f6-b4a7-37eb-be15-069d92f704fd,SESCO,II.1.1,Jujuy,AR-Y,annual,2016,jet kerosene combustion consumption by to the public,4.309060999999999,TJ,CH4,0.5,kg/TJ,2.1545304999999995,kg -3c92f437-b28c-34cf-afec-b374a846a880,SESCO,II.1.1,Jujuy,AR-Y,annual,2016,jet kerosene combustion consumption by to the public,4.309060999999999,TJ,N2O,2.0,kg/TJ,8.618121999999998,kg -84c5e2e1-6719-3213-80ef-25a5776a3a08,SESCO,II.1.1,La Pampa,AR-L,annual,2016,jet kerosene combustion consumption by to the public,2.233163,TJ,CO2,71500.0,kg/TJ,159671.15449999998,kg -d1516f2b-5350-34a9-ac06-4b36473ae80b,SESCO,II.1.1,La Pampa,AR-L,annual,2016,jet kerosene combustion consumption by to the public,2.233163,TJ,CH4,0.5,kg/TJ,1.1165815,kg -d4a3e0a1-49f6-384e-9e25-ba058b5ffbf1,SESCO,II.1.1,La Pampa,AR-L,annual,2016,jet kerosene combustion consumption by to the public,2.233163,TJ,N2O,2.0,kg/TJ,4.466326,kg -6194e669-8653-36e6-8af6-e59e16c7873f,SESCO,II.1.1,La Rioja,AR-F,annual,2016,jet kerosene combustion consumption by to the public,2.8622229999999997,TJ,CO2,71500.0,kg/TJ,204648.94449999998,kg -a24f15d6-0886-3ac5-bd00-b524896fab05,SESCO,II.1.1,La Rioja,AR-F,annual,2016,jet kerosene combustion consumption by to the public,2.8622229999999997,TJ,CH4,0.5,kg/TJ,1.4311114999999999,kg -85f4c033-074c-36ed-b852-40a4b7dcc4ee,SESCO,II.1.1,La Rioja,AR-F,annual,2016,jet kerosene combustion consumption by to the public,2.8622229999999997,TJ,N2O,2.0,kg/TJ,5.7244459999999995,kg -9d90d122-5bce-379c-9a14-07a4711957f8,SESCO,II.1.1,Mendoza,AR-M,annual,2016,jet kerosene combustion consumption by to the public,23.369578999999995,TJ,CO2,71500.0,kg/TJ,1670924.8984999997,kg -3651d6b2-e736-3d88-97b4-dcaffa80d860,SESCO,II.1.1,Mendoza,AR-M,annual,2016,jet kerosene combustion consumption by to the public,23.369578999999995,TJ,CH4,0.5,kg/TJ,11.684789499999997,kg -e4c939a4-c361-390c-8e9a-3acfe7f76fcc,SESCO,II.1.1,Mendoza,AR-M,annual,2016,jet kerosene combustion consumption by to the public,23.369578999999995,TJ,N2O,2.0,kg/TJ,46.73915799999999,kg -12bb6c06-5cfd-3237-85ef-90951d094781,SESCO,II.1.1,Neuquén,AR-Q,annual,2016,jet kerosene combustion consumption by to the public,7.863249999999999,TJ,CO2,71500.0,kg/TJ,562222.3749999999,kg -b2609622-0bfc-3262-a418-d85b4ac8b58a,SESCO,II.1.1,Neuquén,AR-Q,annual,2016,jet kerosene combustion consumption by to the public,7.863249999999999,TJ,CH4,0.5,kg/TJ,3.9316249999999995,kg -012c513a-b6fe-3149-951f-ba7f35f54d48,SESCO,II.1.1,Neuquén,AR-Q,annual,2016,jet kerosene combustion consumption by to the public,7.863249999999999,TJ,N2O,2.0,kg/TJ,15.726499999999998,kg -44563552-7f7c-3cd4-8682-dc0254f45028,SESCO,II.1.1,Rio Negro,AR-R,annual,2016,jet kerosene combustion consumption by to the public,1.3839319999999997,TJ,CO2,71500.0,kg/TJ,98951.13799999998,kg -c4a8df54-80f1-36ed-9950-261a4de06908,SESCO,II.1.1,Rio Negro,AR-R,annual,2016,jet kerosene combustion consumption by to the public,1.3839319999999997,TJ,CH4,0.5,kg/TJ,0.6919659999999999,kg -f46979de-0db0-36b0-9294-c9ffd61ccb83,SESCO,II.1.1,Rio Negro,AR-R,annual,2016,jet kerosene combustion consumption by to the public,1.3839319999999997,TJ,N2O,2.0,kg/TJ,2.7678639999999994,kg -82ddd54b-dda3-30a9-8a38-502fb66b5b92,SESCO,II.1.1,Salta,AR-A,annual,2016,jet kerosene combustion consumption by to the public,0.6605129999999999,TJ,CO2,71500.0,kg/TJ,47226.67949999999,kg -b9cc91a3-fd96-3cda-a075-fdc6ab0fec34,SESCO,II.1.1,Salta,AR-A,annual,2016,jet kerosene combustion consumption by to the public,0.6605129999999999,TJ,CH4,0.5,kg/TJ,0.33025649999999995,kg -34336290-12fa-3e9c-abfc-1cf0f82bc762,SESCO,II.1.1,Salta,AR-A,annual,2016,jet kerosene combustion consumption by to the public,0.6605129999999999,TJ,N2O,2.0,kg/TJ,1.3210259999999998,kg -59ba985f-cb37-303f-9f97-057276789315,SESCO,II.1.1,San Juan,AR-J,annual,2016,jet kerosene combustion consumption by to the public,3.522735999999999,TJ,CO2,71500.0,kg/TJ,251875.62399999995,kg -7168980a-0cc3-3258-90bd-f0463dfcdae8,SESCO,II.1.1,San Juan,AR-J,annual,2016,jet kerosene combustion consumption by to the public,3.522735999999999,TJ,CH4,0.5,kg/TJ,1.7613679999999996,kg -8c0654ed-ed19-3dba-85a2-32b1de319fdd,SESCO,II.1.1,San Juan,AR-J,annual,2016,jet kerosene combustion consumption by to the public,3.522735999999999,TJ,N2O,2.0,kg/TJ,7.045471999999998,kg -32c00c50-1858-3c70-ae1d-2a03f78ed4d5,SESCO,II.1.1,San Luis,AR-D,annual,2016,jet kerosene combustion consumption by to the public,6.9825659999999985,TJ,CO2,71500.0,kg/TJ,499253.46899999987,kg -a77a1148-789c-393f-a1b2-b4b8b97c8c48,SESCO,II.1.1,San Luis,AR-D,annual,2016,jet kerosene combustion consumption by to the public,6.9825659999999985,TJ,CH4,0.5,kg/TJ,3.4912829999999992,kg -bf68b56f-c771-3431-83c9-254b52a8bf78,SESCO,II.1.1,San Luis,AR-D,annual,2016,jet kerosene combustion consumption by to the public,6.9825659999999985,TJ,N2O,2.0,kg/TJ,13.965131999999997,kg -46f2b54a-a271-3c08-9058-f13872eb0536,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2016,jet kerosene combustion consumption by to the public,7.831796999999999,TJ,CO2,71500.0,kg/TJ,559973.4855,kg -54b42715-f8b5-361d-84cb-aab3cb58db4f,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2016,jet kerosene combustion consumption by to the public,7.831796999999999,TJ,CH4,0.5,kg/TJ,3.9158984999999995,kg -c0e1f0f0-36ad-3086-9101-a189648f10a5,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2016,jet kerosene combustion consumption by to the public,7.831796999999999,TJ,N2O,2.0,kg/TJ,15.663593999999998,kg -8dda3718-205f-360a-a1b4-70f5a583a17a,SESCO,II.1.1,Santa Fe,AR-S,annual,2016,jet kerosene combustion consumption by to the public,28.118981999999995,TJ,CO2,71500.0,kg/TJ,2010507.2129999998,kg -184c5589-e25e-346c-9f75-3a02d3e8e4fb,SESCO,II.1.1,Santa Fe,AR-S,annual,2016,jet kerosene combustion consumption by to the public,28.118981999999995,TJ,CH4,0.5,kg/TJ,14.059490999999998,kg -184d20b6-244b-3949-8ea1-843b29f91123,SESCO,II.1.1,Santa Fe,AR-S,annual,2016,jet kerosene combustion consumption by to the public,28.118981999999995,TJ,N2O,2.0,kg/TJ,56.23796399999999,kg -be05672b-0a14-34e2-8b71-a0f315248974,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2016,jet kerosene combustion consumption by to the public,3.2711119999999996,TJ,CO2,71500.0,kg/TJ,233884.50799999997,kg -3dcf29ae-e2fe-36f4-9b9e-67a65ce19019,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2016,jet kerosene combustion consumption by to the public,3.2711119999999996,TJ,CH4,0.5,kg/TJ,1.6355559999999998,kg -8bfaf884-deca-3f02-b5c6-811a40ffaae8,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2016,jet kerosene combustion consumption by to the public,3.2711119999999996,TJ,N2O,2.0,kg/TJ,6.542223999999999,kg -7ad841a1-99a3-3646-8684-078bc7429154,SESCO,II.1.1,Tucuman,AR-T,annual,2016,jet kerosene combustion consumption by to the public,10.568207999999998,TJ,CO2,71500.0,kg/TJ,755626.8719999999,kg -d0c43816-e919-3c5b-8c11-671a9ea5033b,SESCO,II.1.1,Tucuman,AR-T,annual,2016,jet kerosene combustion consumption by to the public,10.568207999999998,TJ,CH4,0.5,kg/TJ,5.284103999999999,kg -2dee317e-c95a-3c4f-87f9-182f6e436a3e,SESCO,II.1.1,Tucuman,AR-T,annual,2016,jet kerosene combustion consumption by to the public,10.568207999999998,TJ,N2O,2.0,kg/TJ,21.136415999999997,kg -6986b955-acd8-3368-8668-b5897f13e7ad,SESCO,II.1.1,Buenos Aires,AR-B,annual,2016,gas oil combustion consumption by freight transport,8246.99064,TJ,CO2,74100.0,kg/TJ,611102006.424,kg -fa723d7b-1d91-39d8-bca7-8a11cae4f94a,SESCO,II.1.1,Buenos Aires,AR-B,annual,2016,gas oil combustion consumption by freight transport,8246.99064,TJ,CH4,3.9,kg/TJ,32163.263496,kg -fa723d7b-1d91-39d8-bca7-8a11cae4f94a,SESCO,II.1.1,Buenos Aires,AR-B,annual,2016,gas oil combustion consumption by freight transport,8246.99064,TJ,N2O,3.9,kg/TJ,32163.263496,kg -71cab15c-5e3e-3dd2-a5a4-3c6201c172e7,SESCO,II.1.1,Capital Federal,AR-C,annual,2016,gas oil combustion consumption by freight transport,3331.9977599999997,TJ,CO2,74100.0,kg/TJ,246901034.01599997,kg -099b9e71-a6b3-3dbf-a334-021269106704,SESCO,II.1.1,Capital Federal,AR-C,annual,2016,gas oil combustion consumption by freight transport,3331.9977599999997,TJ,CH4,3.9,kg/TJ,12994.791264,kg -099b9e71-a6b3-3dbf-a334-021269106704,SESCO,II.1.1,Capital Federal,AR-C,annual,2016,gas oil combustion consumption by freight transport,3331.9977599999997,TJ,N2O,3.9,kg/TJ,12994.791264,kg -4070cc4d-e6d5-3e9d-831c-1500895284e2,SESCO,II.1.1,Catamarca,AR-K,annual,2016,gas oil combustion consumption by freight transport,15.60384,TJ,CO2,74100.0,kg/TJ,1156244.544,kg -edd990f0-dfa0-3f49-828a-990153bfa0f9,SESCO,II.1.1,Catamarca,AR-K,annual,2016,gas oil combustion consumption by freight transport,15.60384,TJ,CH4,3.9,kg/TJ,60.854976,kg -edd990f0-dfa0-3f49-828a-990153bfa0f9,SESCO,II.1.1,Catamarca,AR-K,annual,2016,gas oil combustion consumption by freight transport,15.60384,TJ,N2O,3.9,kg/TJ,60.854976,kg -39ef7aad-6878-3393-98b7-d885d266582a,SESCO,II.1.1,Chaco,AR-H,annual,2016,gas oil combustion consumption by freight transport,219.0678,TJ,CO2,74100.0,kg/TJ,16232923.98,kg -b67e5ffe-42d5-36a2-909d-f6199c1a9901,SESCO,II.1.1,Chaco,AR-H,annual,2016,gas oil combustion consumption by freight transport,219.0678,TJ,CH4,3.9,kg/TJ,854.36442,kg -b67e5ffe-42d5-36a2-909d-f6199c1a9901,SESCO,II.1.1,Chaco,AR-H,annual,2016,gas oil combustion consumption by freight transport,219.0678,TJ,N2O,3.9,kg/TJ,854.36442,kg -2f2d04ae-bf42-311b-ada2-1e0b589b5d80,SESCO,II.1.1,Chubut,AR-U,annual,2016,gas oil combustion consumption by freight transport,207.69,TJ,CO2,74100.0,kg/TJ,15389829.0,kg -d161d5c9-27c1-3c11-b096-b8188a8ddf02,SESCO,II.1.1,Chubut,AR-U,annual,2016,gas oil combustion consumption by freight transport,207.69,TJ,CH4,3.9,kg/TJ,809.991,kg -d161d5c9-27c1-3c11-b096-b8188a8ddf02,SESCO,II.1.1,Chubut,AR-U,annual,2016,gas oil combustion consumption by freight transport,207.69,TJ,N2O,3.9,kg/TJ,809.991,kg -a6143878-7d3f-382f-89e7-f5a1a03af974,SESCO,II.1.1,Corrientes,AR-W,annual,2016,gas oil combustion consumption by freight transport,214.84176,TJ,CO2,74100.0,kg/TJ,15919774.416,kg -6e3908c1-9433-3dc2-a044-32cdbeb202ff,SESCO,II.1.1,Corrientes,AR-W,annual,2016,gas oil combustion consumption by freight transport,214.84176,TJ,CH4,3.9,kg/TJ,837.8828639999999,kg -6e3908c1-9433-3dc2-a044-32cdbeb202ff,SESCO,II.1.1,Corrientes,AR-W,annual,2016,gas oil combustion consumption by freight transport,214.84176,TJ,N2O,3.9,kg/TJ,837.8828639999999,kg -b8d89750-1ef6-3735-ac57-7b269cfe7edc,SESCO,II.1.1,Córdoba,AR-X,annual,2016,gas oil combustion consumption by freight transport,2025.57348,TJ,CO2,74100.0,kg/TJ,150094994.868,kg -52e6de84-4411-3ee3-86b8-8ba238620d1b,SESCO,II.1.1,Córdoba,AR-X,annual,2016,gas oil combustion consumption by freight transport,2025.57348,TJ,CH4,3.9,kg/TJ,7899.736572,kg -52e6de84-4411-3ee3-86b8-8ba238620d1b,SESCO,II.1.1,Córdoba,AR-X,annual,2016,gas oil combustion consumption by freight transport,2025.57348,TJ,N2O,3.9,kg/TJ,7899.736572,kg -c26df134-69e5-3b03-b7b8-0206d8d36667,SESCO,II.1.1,Entre Rios,AR-E,annual,2016,gas oil combustion consumption by freight transport,350.7252,TJ,CO2,74100.0,kg/TJ,25988737.319999997,kg -5f67a2e7-ace0-3e78-890d-1e7eff54d71c,SESCO,II.1.1,Entre Rios,AR-E,annual,2016,gas oil combustion consumption by freight transport,350.7252,TJ,CH4,3.9,kg/TJ,1367.82828,kg -5f67a2e7-ace0-3e78-890d-1e7eff54d71c,SESCO,II.1.1,Entre Rios,AR-E,annual,2016,gas oil combustion consumption by freight transport,350.7252,TJ,N2O,3.9,kg/TJ,1367.82828,kg -3ae1cba5-102f-3511-8ac9-9961f581c23a,SESCO,II.1.1,Formosa,AR-P,annual,2016,gas oil combustion consumption by freight transport,1.91436,TJ,CO2,74100.0,kg/TJ,141854.076,kg -4068cdb2-c2d3-31c9-be77-e552cffb55a1,SESCO,II.1.1,Formosa,AR-P,annual,2016,gas oil combustion consumption by freight transport,1.91436,TJ,CH4,3.9,kg/TJ,7.466004,kg -4068cdb2-c2d3-31c9-be77-e552cffb55a1,SESCO,II.1.1,Formosa,AR-P,annual,2016,gas oil combustion consumption by freight transport,1.91436,TJ,N2O,3.9,kg/TJ,7.466004,kg -757b93f3-6d7d-335a-85cb-15ec805e09d8,SESCO,II.1.1,Jujuy,AR-Y,annual,2016,gas oil combustion consumption by freight transport,81.8118,TJ,CO2,74100.0,kg/TJ,6062254.380000001,kg -6d8478c0-510a-3848-804a-5e44b7b36350,SESCO,II.1.1,Jujuy,AR-Y,annual,2016,gas oil combustion consumption by freight transport,81.8118,TJ,CH4,3.9,kg/TJ,319.06602000000004,kg -6d8478c0-510a-3848-804a-5e44b7b36350,SESCO,II.1.1,Jujuy,AR-Y,annual,2016,gas oil combustion consumption by freight transport,81.8118,TJ,N2O,3.9,kg/TJ,319.06602000000004,kg -d09d46e6-3b3b-3bbf-aa49-915c16743a38,SESCO,II.1.1,La Pampa,AR-L,annual,2016,gas oil combustion consumption by freight transport,59.7786,TJ,CO2,74100.0,kg/TJ,4429594.26,kg -2ba8fff1-11f1-396f-93f1-1c6321bf76d7,SESCO,II.1.1,La Pampa,AR-L,annual,2016,gas oil combustion consumption by freight transport,59.7786,TJ,CH4,3.9,kg/TJ,233.13654,kg -2ba8fff1-11f1-396f-93f1-1c6321bf76d7,SESCO,II.1.1,La Pampa,AR-L,annual,2016,gas oil combustion consumption by freight transport,59.7786,TJ,N2O,3.9,kg/TJ,233.13654,kg -11e6132e-636e-3b5f-a0bf-f39940c6ca11,SESCO,II.1.1,La Rioja,AR-F,annual,2016,gas oil combustion consumption by freight transport,2.20332,TJ,CO2,74100.0,kg/TJ,163266.01200000002,kg -ce4fc89a-a2a1-3ebd-a098-7639a6396fce,SESCO,II.1.1,La Rioja,AR-F,annual,2016,gas oil combustion consumption by freight transport,2.20332,TJ,CH4,3.9,kg/TJ,8.592948,kg -ce4fc89a-a2a1-3ebd-a098-7639a6396fce,SESCO,II.1.1,La Rioja,AR-F,annual,2016,gas oil combustion consumption by freight transport,2.20332,TJ,N2O,3.9,kg/TJ,8.592948,kg -998893cd-928e-3ae6-b517-d4611370cac1,SESCO,II.1.1,Mendoza,AR-M,annual,2016,gas oil combustion consumption by freight transport,1451.15712,TJ,CO2,74100.0,kg/TJ,107530742.59200001,kg -f20ab9ed-c08d-3060-bb20-5b2fce2800e1,SESCO,II.1.1,Mendoza,AR-M,annual,2016,gas oil combustion consumption by freight transport,1451.15712,TJ,CH4,3.9,kg/TJ,5659.5127680000005,kg -f20ab9ed-c08d-3060-bb20-5b2fce2800e1,SESCO,II.1.1,Mendoza,AR-M,annual,2016,gas oil combustion consumption by freight transport,1451.15712,TJ,N2O,3.9,kg/TJ,5659.5127680000005,kg -8970e668-6361-31ed-8320-b30518eaea64,SESCO,II.1.1,Misiones,AR-N,annual,2016,gas oil combustion consumption by freight transport,575.82504,TJ,CO2,74100.0,kg/TJ,42668635.463999994,kg -e55c6110-17b2-316a-bc46-d52ec554f3b1,SESCO,II.1.1,Misiones,AR-N,annual,2016,gas oil combustion consumption by freight transport,575.82504,TJ,CH4,3.9,kg/TJ,2245.717656,kg -e55c6110-17b2-316a-bc46-d52ec554f3b1,SESCO,II.1.1,Misiones,AR-N,annual,2016,gas oil combustion consumption by freight transport,575.82504,TJ,N2O,3.9,kg/TJ,2245.717656,kg -995abab9-6d2c-3871-aa71-acb696a05b0a,SESCO,II.1.1,Neuquén,AR-Q,annual,2016,gas oil combustion consumption by freight transport,972.02532,TJ,CO2,74100.0,kg/TJ,72027076.212,kg -ada7c9cb-5df9-35bf-b6f6-3abfdf029720,SESCO,II.1.1,Neuquén,AR-Q,annual,2016,gas oil combustion consumption by freight transport,972.02532,TJ,CH4,3.9,kg/TJ,3790.8987479999996,kg -ada7c9cb-5df9-35bf-b6f6-3abfdf029720,SESCO,II.1.1,Neuquén,AR-Q,annual,2016,gas oil combustion consumption by freight transport,972.02532,TJ,N2O,3.9,kg/TJ,3790.8987479999996,kg -8c00a24e-e781-3309-920c-2221767d0c7f,SESCO,II.1.1,Rio Negro,AR-R,annual,2016,gas oil combustion consumption by freight transport,192.84467999999998,TJ,CO2,74100.0,kg/TJ,14289790.787999999,kg -e6e9b266-380b-33e5-a401-e1c034d56edd,SESCO,II.1.1,Rio Negro,AR-R,annual,2016,gas oil combustion consumption by freight transport,192.84467999999998,TJ,CH4,3.9,kg/TJ,752.0942519999999,kg -e6e9b266-380b-33e5-a401-e1c034d56edd,SESCO,II.1.1,Rio Negro,AR-R,annual,2016,gas oil combustion consumption by freight transport,192.84467999999998,TJ,N2O,3.9,kg/TJ,752.0942519999999,kg -1d403655-95d1-363f-8047-30857db55ebb,SESCO,II.1.1,Salta,AR-A,annual,2016,gas oil combustion consumption by freight transport,238.42812,TJ,CO2,74100.0,kg/TJ,17667523.692,kg -1c0493a2-2a99-3e3e-bde0-86fafc29b301,SESCO,II.1.1,Salta,AR-A,annual,2016,gas oil combustion consumption by freight transport,238.42812,TJ,CH4,3.9,kg/TJ,929.869668,kg -1c0493a2-2a99-3e3e-bde0-86fafc29b301,SESCO,II.1.1,Salta,AR-A,annual,2016,gas oil combustion consumption by freight transport,238.42812,TJ,N2O,3.9,kg/TJ,929.869668,kg -7d3c2542-0f80-3bc4-ae5a-91208e729854,SESCO,II.1.1,San Juan,AR-J,annual,2016,gas oil combustion consumption by freight transport,67.03872,TJ,CO2,74100.0,kg/TJ,4967569.152,kg -1c5f4a32-88ec-318a-8faa-0611b76e2816,SESCO,II.1.1,San Juan,AR-J,annual,2016,gas oil combustion consumption by freight transport,67.03872,TJ,CH4,3.9,kg/TJ,261.451008,kg -1c5f4a32-88ec-318a-8faa-0611b76e2816,SESCO,II.1.1,San Juan,AR-J,annual,2016,gas oil combustion consumption by freight transport,67.03872,TJ,N2O,3.9,kg/TJ,261.451008,kg -2a2b146e-aa07-3870-88c5-faa0dd6b4c18,SESCO,II.1.1,San Luis,AR-D,annual,2016,gas oil combustion consumption by freight transport,121.11036,TJ,CO2,74100.0,kg/TJ,8974277.676,kg -5b943b7b-99a3-3dba-a4cd-e58f4142341e,SESCO,II.1.1,San Luis,AR-D,annual,2016,gas oil combustion consumption by freight transport,121.11036,TJ,CH4,3.9,kg/TJ,472.330404,kg -5b943b7b-99a3-3dba-a4cd-e58f4142341e,SESCO,II.1.1,San Luis,AR-D,annual,2016,gas oil combustion consumption by freight transport,121.11036,TJ,N2O,3.9,kg/TJ,472.330404,kg -cb736609-9b64-3aa2-a3e2-24475f7b9070,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2016,gas oil combustion consumption by freight transport,90.6612,TJ,CO2,74100.0,kg/TJ,6717994.92,kg -f798ea6c-8008-37dd-8bf9-7453a7b60693,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2016,gas oil combustion consumption by freight transport,90.6612,TJ,CH4,3.9,kg/TJ,353.57867999999996,kg -f798ea6c-8008-37dd-8bf9-7453a7b60693,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2016,gas oil combustion consumption by freight transport,90.6612,TJ,N2O,3.9,kg/TJ,353.57867999999996,kg -0f92c100-7a61-3c63-acfb-01fb1a7016ff,SESCO,II.1.1,Santa Fe,AR-S,annual,2016,gas oil combustion consumption by freight transport,2135.99232,TJ,CO2,74100.0,kg/TJ,158277030.912,kg -4b5824ed-a400-32b6-b5ed-90e418acb608,SESCO,II.1.1,Santa Fe,AR-S,annual,2016,gas oil combustion consumption by freight transport,2135.99232,TJ,CH4,3.9,kg/TJ,8330.370047999999,kg -4b5824ed-a400-32b6-b5ed-90e418acb608,SESCO,II.1.1,Santa Fe,AR-S,annual,2016,gas oil combustion consumption by freight transport,2135.99232,TJ,N2O,3.9,kg/TJ,8330.370047999999,kg -14cd6f6e-37d1-376b-9486-06e637e572ba,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2016,gas oil combustion consumption by freight transport,125.19192,TJ,CO2,74100.0,kg/TJ,9276721.272,kg -ba7100bf-e54f-34c7-a669-2db2604fb9c1,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2016,gas oil combustion consumption by freight transport,125.19192,TJ,CH4,3.9,kg/TJ,488.24848799999995,kg -ba7100bf-e54f-34c7-a669-2db2604fb9c1,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2016,gas oil combustion consumption by freight transport,125.19192,TJ,N2O,3.9,kg/TJ,488.24848799999995,kg -20827050-3dae-3bc2-b325-ca5a50cd8f67,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2016,gas oil combustion consumption by freight transport,26.83716,TJ,CO2,74100.0,kg/TJ,1988633.556,kg -c41c53b9-379a-3618-98f2-f10babf8d654,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2016,gas oil combustion consumption by freight transport,26.83716,TJ,CH4,3.9,kg/TJ,104.664924,kg -c41c53b9-379a-3618-98f2-f10babf8d654,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2016,gas oil combustion consumption by freight transport,26.83716,TJ,N2O,3.9,kg/TJ,104.664924,kg -199c2f45-3121-3f50-bcb9-6bbc81e3d507,SESCO,II.1.1,Tucuman,AR-T,annual,2016,gas oil combustion consumption by freight transport,351.77268,TJ,CO2,74100.0,kg/TJ,26066355.588,kg -9e2518cc-f813-3768-bb65-51b985f04895,SESCO,II.1.1,Tucuman,AR-T,annual,2016,gas oil combustion consumption by freight transport,351.77268,TJ,CH4,3.9,kg/TJ,1371.9134519999998,kg -9e2518cc-f813-3768-bb65-51b985f04895,SESCO,II.1.1,Tucuman,AR-T,annual,2016,gas oil combustion consumption by freight transport,351.77268,TJ,N2O,3.9,kg/TJ,1371.9134519999998,kg -06d195a2-32c8-34eb-b912-f3e0564cc9bc,SESCO,II.1.1,Buenos Aires,AR-B,annual,2016,gas oil combustion consumption by freight transport,667.20864,TJ,CO2,74100.0,kg/TJ,49440160.224,kg -e5583d67-f480-3693-8e06-5883d7de4e33,SESCO,II.1.1,Buenos Aires,AR-B,annual,2016,gas oil combustion consumption by freight transport,667.20864,TJ,CH4,3.9,kg/TJ,2602.113696,kg -e5583d67-f480-3693-8e06-5883d7de4e33,SESCO,II.1.1,Buenos Aires,AR-B,annual,2016,gas oil combustion consumption by freight transport,667.20864,TJ,N2O,3.9,kg/TJ,2602.113696,kg -ded8c87a-995f-3d47-b710-1ec077e8e7c6,SESCO,II.1.1,Capital Federal,AR-C,annual,2016,gas oil combustion consumption by freight transport,955.0128,TJ,CO2,74100.0,kg/TJ,70766448.48,kg -0a4111c0-79b6-3195-8fef-754f66519fe5,SESCO,II.1.1,Capital Federal,AR-C,annual,2016,gas oil combustion consumption by freight transport,955.0128,TJ,CH4,3.9,kg/TJ,3724.54992,kg -0a4111c0-79b6-3195-8fef-754f66519fe5,SESCO,II.1.1,Capital Federal,AR-C,annual,2016,gas oil combustion consumption by freight transport,955.0128,TJ,N2O,3.9,kg/TJ,3724.54992,kg -66286718-d044-3e3b-a5ba-729b50377f72,SESCO,II.1.1,Chaco,AR-H,annual,2016,gas oil combustion consumption by freight transport,31.46052,TJ,CO2,74100.0,kg/TJ,2331224.532,kg -bb0de27f-d8f2-3178-a651-8001c31a721e,SESCO,II.1.1,Chaco,AR-H,annual,2016,gas oil combustion consumption by freight transport,31.46052,TJ,CH4,3.9,kg/TJ,122.696028,kg -bb0de27f-d8f2-3178-a651-8001c31a721e,SESCO,II.1.1,Chaco,AR-H,annual,2016,gas oil combustion consumption by freight transport,31.46052,TJ,N2O,3.9,kg/TJ,122.696028,kg -7d7f52d7-e7de-39b1-be17-0bfdfe35dab7,SESCO,II.1.1,Chubut,AR-U,annual,2016,gas oil combustion consumption by freight transport,50.748599999999996,TJ,CO2,74100.0,kg/TJ,3760471.26,kg -48d8ba8e-2daf-34e3-8bf2-115b33beb1b2,SESCO,II.1.1,Chubut,AR-U,annual,2016,gas oil combustion consumption by freight transport,50.748599999999996,TJ,CH4,3.9,kg/TJ,197.91953999999998,kg -48d8ba8e-2daf-34e3-8bf2-115b33beb1b2,SESCO,II.1.1,Chubut,AR-U,annual,2016,gas oil combustion consumption by freight transport,50.748599999999996,TJ,N2O,3.9,kg/TJ,197.91953999999998,kg -c1ed515c-1694-3bd0-9c0c-c3339bf25876,SESCO,II.1.1,Corrientes,AR-W,annual,2016,gas oil combustion consumption by freight transport,20.48004,TJ,CO2,74100.0,kg/TJ,1517570.964,kg -80f7828f-2167-32d5-a25f-a14e1c8be148,SESCO,II.1.1,Corrientes,AR-W,annual,2016,gas oil combustion consumption by freight transport,20.48004,TJ,CH4,3.9,kg/TJ,79.87215599999999,kg -80f7828f-2167-32d5-a25f-a14e1c8be148,SESCO,II.1.1,Corrientes,AR-W,annual,2016,gas oil combustion consumption by freight transport,20.48004,TJ,N2O,3.9,kg/TJ,79.87215599999999,kg -880b3d56-d2c5-3965-9371-50ab678cf7d4,SESCO,II.1.1,Córdoba,AR-X,annual,2016,gas oil combustion consumption by freight transport,33.5916,TJ,CO2,74100.0,kg/TJ,2489137.56,kg -731927cc-a029-392a-9690-3c8e8384fe8e,SESCO,II.1.1,Córdoba,AR-X,annual,2016,gas oil combustion consumption by freight transport,33.5916,TJ,CH4,3.9,kg/TJ,131.00724,kg -731927cc-a029-392a-9690-3c8e8384fe8e,SESCO,II.1.1,Córdoba,AR-X,annual,2016,gas oil combustion consumption by freight transport,33.5916,TJ,N2O,3.9,kg/TJ,131.00724,kg -1d0fffc3-f4bd-3963-89a5-7c852e8df873,SESCO,II.1.1,Entre Rios,AR-E,annual,2016,gas oil combustion consumption by freight transport,23.44188,TJ,CO2,74100.0,kg/TJ,1737043.3080000002,kg -9472acc7-9f66-3a3e-9339-ea730065c436,SESCO,II.1.1,Entre Rios,AR-E,annual,2016,gas oil combustion consumption by freight transport,23.44188,TJ,CH4,3.9,kg/TJ,91.423332,kg -9472acc7-9f66-3a3e-9339-ea730065c436,SESCO,II.1.1,Entre Rios,AR-E,annual,2016,gas oil combustion consumption by freight transport,23.44188,TJ,N2O,3.9,kg/TJ,91.423332,kg -2414251f-b129-33ed-999e-1e583acfab98,SESCO,II.1.1,Formosa,AR-P,annual,2016,gas oil combustion consumption by freight transport,0.50568,TJ,CO2,74100.0,kg/TJ,37470.888,kg -0ab8a1ee-c755-3d6f-b804-eed5a6e78006,SESCO,II.1.1,Formosa,AR-P,annual,2016,gas oil combustion consumption by freight transport,0.50568,TJ,CH4,3.9,kg/TJ,1.9721520000000001,kg -0ab8a1ee-c755-3d6f-b804-eed5a6e78006,SESCO,II.1.1,Formosa,AR-P,annual,2016,gas oil combustion consumption by freight transport,0.50568,TJ,N2O,3.9,kg/TJ,1.9721520000000001,kg -3ff4451d-7617-3b97-a080-eaa02a384379,SESCO,II.1.1,Jujuy,AR-Y,annual,2016,gas oil combustion consumption by freight transport,0.03612,TJ,CO2,74100.0,kg/TJ,2676.4919999999997,kg -6f4c9fad-dbde-38f3-a1fc-be6512e67ea9,SESCO,II.1.1,Jujuy,AR-Y,annual,2016,gas oil combustion consumption by freight transport,0.03612,TJ,CH4,3.9,kg/TJ,0.140868,kg -6f4c9fad-dbde-38f3-a1fc-be6512e67ea9,SESCO,II.1.1,Jujuy,AR-Y,annual,2016,gas oil combustion consumption by freight transport,0.03612,TJ,N2O,3.9,kg/TJ,0.140868,kg -f13b35ca-684b-3109-ab9e-a63adb8f1c7d,SESCO,II.1.1,La Pampa,AR-L,annual,2016,gas oil combustion consumption by freight transport,0.8307599999999999,TJ,CO2,74100.0,kg/TJ,61559.316,kg -300d52d1-a3e3-3446-bff5-704258a12062,SESCO,II.1.1,La Pampa,AR-L,annual,2016,gas oil combustion consumption by freight transport,0.8307599999999999,TJ,CH4,3.9,kg/TJ,3.2399639999999996,kg -300d52d1-a3e3-3446-bff5-704258a12062,SESCO,II.1.1,La Pampa,AR-L,annual,2016,gas oil combustion consumption by freight transport,0.8307599999999999,TJ,N2O,3.9,kg/TJ,3.2399639999999996,kg -b276888d-87cf-3ef2-8c5c-14c4077c148b,SESCO,II.1.1,La Rioja,AR-F,annual,2016,gas oil combustion consumption by freight transport,4.47888,TJ,CO2,74100.0,kg/TJ,331885.00800000003,kg -6a2de516-cd37-3aa3-98ee-f8d1c9546357,SESCO,II.1.1,La Rioja,AR-F,annual,2016,gas oil combustion consumption by freight transport,4.47888,TJ,CH4,3.9,kg/TJ,17.467632000000002,kg -6a2de516-cd37-3aa3-98ee-f8d1c9546357,SESCO,II.1.1,La Rioja,AR-F,annual,2016,gas oil combustion consumption by freight transport,4.47888,TJ,N2O,3.9,kg/TJ,17.467632000000002,kg -f950c731-681a-3aee-9785-fb4bcefd8995,SESCO,II.1.1,Mendoza,AR-M,annual,2016,gas oil combustion consumption by freight transport,59.48964,TJ,CO2,74100.0,kg/TJ,4408182.324,kg -412dd5d0-d2f6-3d5a-8d60-a66e14038489,SESCO,II.1.1,Mendoza,AR-M,annual,2016,gas oil combustion consumption by freight transport,59.48964,TJ,CH4,3.9,kg/TJ,232.009596,kg -412dd5d0-d2f6-3d5a-8d60-a66e14038489,SESCO,II.1.1,Mendoza,AR-M,annual,2016,gas oil combustion consumption by freight transport,59.48964,TJ,N2O,3.9,kg/TJ,232.009596,kg -eb9fd088-f633-3325-a730-30e096be1f40,SESCO,II.1.1,Misiones,AR-N,annual,2016,gas oil combustion consumption by freight transport,10.58316,TJ,CO2,74100.0,kg/TJ,784212.156,kg -ecdd3f94-e8d5-3992-adea-3ad0c3bb176d,SESCO,II.1.1,Misiones,AR-N,annual,2016,gas oil combustion consumption by freight transport,10.58316,TJ,CH4,3.9,kg/TJ,41.274324,kg -ecdd3f94-e8d5-3992-adea-3ad0c3bb176d,SESCO,II.1.1,Misiones,AR-N,annual,2016,gas oil combustion consumption by freight transport,10.58316,TJ,N2O,3.9,kg/TJ,41.274324,kg -2fedbd53-3554-3e0c-8825-543c2584fe4a,SESCO,II.1.1,Neuquén,AR-Q,annual,2016,gas oil combustion consumption by freight transport,264.14556,TJ,CO2,74100.0,kg/TJ,19573185.996,kg -53a054c5-b09a-3516-a41e-cd03c14319ba,SESCO,II.1.1,Neuquén,AR-Q,annual,2016,gas oil combustion consumption by freight transport,264.14556,TJ,CH4,3.9,kg/TJ,1030.167684,kg -53a054c5-b09a-3516-a41e-cd03c14319ba,SESCO,II.1.1,Neuquén,AR-Q,annual,2016,gas oil combustion consumption by freight transport,264.14556,TJ,N2O,3.9,kg/TJ,1030.167684,kg -b7f7517e-9c81-3800-99fa-76eb28063a0f,SESCO,II.1.1,Rio Negro,AR-R,annual,2016,gas oil combustion consumption by freight transport,11.34168,TJ,CO2,74100.0,kg/TJ,840418.488,kg -63132229-6633-3910-80a9-62f8e82b9dce,SESCO,II.1.1,Rio Negro,AR-R,annual,2016,gas oil combustion consumption by freight transport,11.34168,TJ,CH4,3.9,kg/TJ,44.232552,kg -63132229-6633-3910-80a9-62f8e82b9dce,SESCO,II.1.1,Rio Negro,AR-R,annual,2016,gas oil combustion consumption by freight transport,11.34168,TJ,N2O,3.9,kg/TJ,44.232552,kg -08f95bdb-96d3-326b-a119-0602b5e3041a,SESCO,II.1.1,Salta,AR-A,annual,2016,gas oil combustion consumption by freight transport,58.695,TJ,CO2,74100.0,kg/TJ,4349299.5,kg -d3262697-8456-31df-a105-fa1904714b10,SESCO,II.1.1,Salta,AR-A,annual,2016,gas oil combustion consumption by freight transport,58.695,TJ,CH4,3.9,kg/TJ,228.91049999999998,kg -d3262697-8456-31df-a105-fa1904714b10,SESCO,II.1.1,Salta,AR-A,annual,2016,gas oil combustion consumption by freight transport,58.695,TJ,N2O,3.9,kg/TJ,228.91049999999998,kg -3776ca81-7d84-33a3-b0f7-1dcc172c65fe,SESCO,II.1.1,San Juan,AR-J,annual,2016,gas oil combustion consumption by freight transport,3.72036,TJ,CO2,74100.0,kg/TJ,275678.676,kg -97b0ddd0-0bda-3aa7-b9fe-e3a4bc9ac580,SESCO,II.1.1,San Juan,AR-J,annual,2016,gas oil combustion consumption by freight transport,3.72036,TJ,CH4,3.9,kg/TJ,14.509404,kg -97b0ddd0-0bda-3aa7-b9fe-e3a4bc9ac580,SESCO,II.1.1,San Juan,AR-J,annual,2016,gas oil combustion consumption by freight transport,3.72036,TJ,N2O,3.9,kg/TJ,14.509404,kg -96560c11-3ae5-3cfc-85c8-eae5f091043e,SESCO,II.1.1,San Luis,AR-D,annual,2016,gas oil combustion consumption by freight transport,9.89688,TJ,CO2,74100.0,kg/TJ,733358.808,kg -caa87d1c-f165-3a2c-9d08-b1224dadb463,SESCO,II.1.1,San Luis,AR-D,annual,2016,gas oil combustion consumption by freight transport,9.89688,TJ,CH4,3.9,kg/TJ,38.597832,kg -caa87d1c-f165-3a2c-9d08-b1224dadb463,SESCO,II.1.1,San Luis,AR-D,annual,2016,gas oil combustion consumption by freight transport,9.89688,TJ,N2O,3.9,kg/TJ,38.597832,kg -e4697bd0-5932-3594-9f74-84b40d76b3d1,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2016,gas oil combustion consumption by freight transport,16.254,TJ,CO2,74100.0,kg/TJ,1204421.4000000001,kg -e95b3eca-8dcc-3c78-8ac3-f15b417d3d9a,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2016,gas oil combustion consumption by freight transport,16.254,TJ,CH4,3.9,kg/TJ,63.390600000000006,kg -e95b3eca-8dcc-3c78-8ac3-f15b417d3d9a,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2016,gas oil combustion consumption by freight transport,16.254,TJ,N2O,3.9,kg/TJ,63.390600000000006,kg -f2019d44-e969-354f-948c-3494af2366fe,SESCO,II.1.1,Santa Fe,AR-S,annual,2016,gas oil combustion consumption by freight transport,194.61455999999998,TJ,CO2,74100.0,kg/TJ,14420938.895999998,kg -2a4e210e-104c-377a-8353-d0f9b7f4c820,SESCO,II.1.1,Santa Fe,AR-S,annual,2016,gas oil combustion consumption by freight transport,194.61455999999998,TJ,CH4,3.9,kg/TJ,758.9967839999999,kg -2a4e210e-104c-377a-8353-d0f9b7f4c820,SESCO,II.1.1,Santa Fe,AR-S,annual,2016,gas oil combustion consumption by freight transport,194.61455999999998,TJ,N2O,3.9,kg/TJ,758.9967839999999,kg -0c9eec92-5f57-3a80-a23b-d2c783e39929,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2016,gas oil combustion consumption by freight transport,0.14448,TJ,CO2,74100.0,kg/TJ,10705.967999999999,kg -3a321140-ea17-3d62-bf1c-3271d4d13d27,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2016,gas oil combustion consumption by freight transport,0.14448,TJ,CH4,3.9,kg/TJ,0.563472,kg -3a321140-ea17-3d62-bf1c-3271d4d13d27,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2016,gas oil combustion consumption by freight transport,0.14448,TJ,N2O,3.9,kg/TJ,0.563472,kg -6781a9b0-eb70-3a34-844a-521d3ffac2f9,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2016,gas oil combustion consumption by freight transport,6.79056,TJ,CO2,74100.0,kg/TJ,503180.496,kg -d6594538-b8b9-3da4-8a6e-0039d9f9bb09,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2016,gas oil combustion consumption by freight transport,6.79056,TJ,CH4,3.9,kg/TJ,26.483184,kg -d6594538-b8b9-3da4-8a6e-0039d9f9bb09,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2016,gas oil combustion consumption by freight transport,6.79056,TJ,N2O,3.9,kg/TJ,26.483184,kg -de54f55a-7550-38ef-93f1-a6ec2596d9a3,SESCO,II.1.1,Tucuman,AR-T,annual,2016,gas oil combustion consumption by freight transport,12.642,TJ,CO2,74100.0,kg/TJ,936772.2,kg -02b0084c-1723-3316-8067-2434633fc9bb,SESCO,II.1.1,Tucuman,AR-T,annual,2016,gas oil combustion consumption by freight transport,12.642,TJ,CH4,3.9,kg/TJ,49.303799999999995,kg -02b0084c-1723-3316-8067-2434633fc9bb,SESCO,II.1.1,Tucuman,AR-T,annual,2016,gas oil combustion consumption by freight transport,12.642,TJ,N2O,3.9,kg/TJ,49.303799999999995,kg -6b64edc9-5665-30e3-8bc7-57d1e56723d7,SESCO,II.1.1,Buenos Aires,AR-B,annual,2016,gas oil combustion consumption by public passenger transport,11807.2668,TJ,CO2,74100.0,kg/TJ,874918469.88,kg -2bdcd47c-f9fd-3bb6-8485-999d111e2a24,SESCO,II.1.1,Buenos Aires,AR-B,annual,2016,gas oil combustion consumption by public passenger transport,11807.2668,TJ,CH4,3.9,kg/TJ,46048.34052,kg -2bdcd47c-f9fd-3bb6-8485-999d111e2a24,SESCO,II.1.1,Buenos Aires,AR-B,annual,2016,gas oil combustion consumption by public passenger transport,11807.2668,TJ,N2O,3.9,kg/TJ,46048.34052,kg -d1d0f6d6-510c-32e6-a4d0-532c64ba0a32,SESCO,II.1.1,Capital Federal,AR-C,annual,2016,gas oil combustion consumption by public passenger transport,2822.4168,TJ,CO2,74100.0,kg/TJ,209141084.88,kg -b56a0163-bd5c-3131-aef5-8f3b87e54e20,SESCO,II.1.1,Capital Federal,AR-C,annual,2016,gas oil combustion consumption by public passenger transport,2822.4168,TJ,CH4,3.9,kg/TJ,11007.425519999999,kg -b56a0163-bd5c-3131-aef5-8f3b87e54e20,SESCO,II.1.1,Capital Federal,AR-C,annual,2016,gas oil combustion consumption by public passenger transport,2822.4168,TJ,N2O,3.9,kg/TJ,11007.425519999999,kg -90a659f8-cd58-37ff-af39-182db41bfa24,SESCO,II.1.1,Catamarca,AR-K,annual,2016,gas oil combustion consumption by public passenger transport,222.3186,TJ,CO2,74100.0,kg/TJ,16473808.26,kg -37e12f22-a53f-384d-a77e-2f577e4850cb,SESCO,II.1.1,Catamarca,AR-K,annual,2016,gas oil combustion consumption by public passenger transport,222.3186,TJ,CH4,3.9,kg/TJ,867.04254,kg -37e12f22-a53f-384d-a77e-2f577e4850cb,SESCO,II.1.1,Catamarca,AR-K,annual,2016,gas oil combustion consumption by public passenger transport,222.3186,TJ,N2O,3.9,kg/TJ,867.04254,kg -56ec0bcf-9f32-33f1-9e86-2b7dd143fc9c,SESCO,II.1.1,Chaco,AR-H,annual,2016,gas oil combustion consumption by public passenger transport,551.69688,TJ,CO2,74100.0,kg/TJ,40880738.808,kg -197d157c-0210-3373-8b95-2910db17b1bb,SESCO,II.1.1,Chaco,AR-H,annual,2016,gas oil combustion consumption by public passenger transport,551.69688,TJ,CH4,3.9,kg/TJ,2151.617832,kg -197d157c-0210-3373-8b95-2910db17b1bb,SESCO,II.1.1,Chaco,AR-H,annual,2016,gas oil combustion consumption by public passenger transport,551.69688,TJ,N2O,3.9,kg/TJ,2151.617832,kg -b24f5e01-c0a0-3a24-8c3e-5fe9ba89138e,SESCO,II.1.1,Chubut,AR-U,annual,2016,gas oil combustion consumption by public passenger transport,182.98391999999998,TJ,CO2,74100.0,kg/TJ,13559108.472,kg -0b3c1688-a995-3613-b761-abb213f20f7e,SESCO,II.1.1,Chubut,AR-U,annual,2016,gas oil combustion consumption by public passenger transport,182.98391999999998,TJ,CH4,3.9,kg/TJ,713.6372879999999,kg -0b3c1688-a995-3613-b761-abb213f20f7e,SESCO,II.1.1,Chubut,AR-U,annual,2016,gas oil combustion consumption by public passenger transport,182.98391999999998,TJ,N2O,3.9,kg/TJ,713.6372879999999,kg -e60483d5-b2ab-3d97-9e14-c2da4bc306f9,SESCO,II.1.1,Corrientes,AR-W,annual,2016,gas oil combustion consumption by public passenger transport,535.33452,TJ,CO2,74100.0,kg/TJ,39668287.932,kg -0e0ce8e7-1384-3c91-b039-8e035f396e3b,SESCO,II.1.1,Corrientes,AR-W,annual,2016,gas oil combustion consumption by public passenger transport,535.33452,TJ,CH4,3.9,kg/TJ,2087.804628,kg -0e0ce8e7-1384-3c91-b039-8e035f396e3b,SESCO,II.1.1,Corrientes,AR-W,annual,2016,gas oil combustion consumption by public passenger transport,535.33452,TJ,N2O,3.9,kg/TJ,2087.804628,kg -4a1ff20c-36c1-3d82-9f06-ec569e8eeadd,SESCO,II.1.1,Córdoba,AR-X,annual,2016,gas oil combustion consumption by public passenger transport,1843.2036,TJ,CO2,74100.0,kg/TJ,136581386.76,kg -d6a47217-c473-3f75-bf42-3d7075f0c376,SESCO,II.1.1,Córdoba,AR-X,annual,2016,gas oil combustion consumption by public passenger transport,1843.2036,TJ,CH4,3.9,kg/TJ,7188.49404,kg -d6a47217-c473-3f75-bf42-3d7075f0c376,SESCO,II.1.1,Córdoba,AR-X,annual,2016,gas oil combustion consumption by public passenger transport,1843.2036,TJ,N2O,3.9,kg/TJ,7188.49404,kg -17ce69b3-4faa-3365-a953-f9af4eaa27ae,SESCO,II.1.1,Entre Rios,AR-E,annual,2016,gas oil combustion consumption by public passenger transport,513.66252,TJ,CO2,74100.0,kg/TJ,38062392.732,kg -d7566903-66cf-34e1-aa3c-48fe45d36e34,SESCO,II.1.1,Entre Rios,AR-E,annual,2016,gas oil combustion consumption by public passenger transport,513.66252,TJ,CH4,3.9,kg/TJ,2003.2838279999999,kg -d7566903-66cf-34e1-aa3c-48fe45d36e34,SESCO,II.1.1,Entre Rios,AR-E,annual,2016,gas oil combustion consumption by public passenger transport,513.66252,TJ,N2O,3.9,kg/TJ,2003.2838279999999,kg -a982866e-61c1-3675-9072-724a2622c571,SESCO,II.1.1,Formosa,AR-P,annual,2016,gas oil combustion consumption by public passenger transport,75.02123999999999,TJ,CO2,74100.0,kg/TJ,5559073.884,kg -88f6a37c-244f-35b4-b284-e43103a42595,SESCO,II.1.1,Formosa,AR-P,annual,2016,gas oil combustion consumption by public passenger transport,75.02123999999999,TJ,CH4,3.9,kg/TJ,292.582836,kg -88f6a37c-244f-35b4-b284-e43103a42595,SESCO,II.1.1,Formosa,AR-P,annual,2016,gas oil combustion consumption by public passenger transport,75.02123999999999,TJ,N2O,3.9,kg/TJ,292.582836,kg -9eddc1d1-8862-35ff-b7e5-a4f1afb07cda,SESCO,II.1.1,Jujuy,AR-Y,annual,2016,gas oil combustion consumption by public passenger transport,684.6546,TJ,CO2,74100.0,kg/TJ,50732905.86,kg -1b30c1e5-53b5-3be5-9efe-6653b267e2dd,SESCO,II.1.1,Jujuy,AR-Y,annual,2016,gas oil combustion consumption by public passenger transport,684.6546,TJ,CH4,3.9,kg/TJ,2670.15294,kg -1b30c1e5-53b5-3be5-9efe-6653b267e2dd,SESCO,II.1.1,Jujuy,AR-Y,annual,2016,gas oil combustion consumption by public passenger transport,684.6546,TJ,N2O,3.9,kg/TJ,2670.15294,kg -ed211ce8-8431-3b3f-bfe8-4a434491c212,SESCO,II.1.1,La Pampa,AR-L,annual,2016,gas oil combustion consumption by public passenger transport,49.77336,TJ,CO2,74100.0,kg/TJ,3688205.976,kg -37732118-f581-3830-9900-91bfbf06e0fe,SESCO,II.1.1,La Pampa,AR-L,annual,2016,gas oil combustion consumption by public passenger transport,49.77336,TJ,CH4,3.9,kg/TJ,194.11610399999998,kg -37732118-f581-3830-9900-91bfbf06e0fe,SESCO,II.1.1,La Pampa,AR-L,annual,2016,gas oil combustion consumption by public passenger transport,49.77336,TJ,N2O,3.9,kg/TJ,194.11610399999998,kg -e791a827-8759-3bdf-a6cf-770abda85917,SESCO,II.1.1,La Rioja,AR-F,annual,2016,gas oil combustion consumption by public passenger transport,140.25396,TJ,CO2,74100.0,kg/TJ,10392818.436,kg -8a51e3b3-7986-3a20-9919-b1750d424b0b,SESCO,II.1.1,La Rioja,AR-F,annual,2016,gas oil combustion consumption by public passenger transport,140.25396,TJ,CH4,3.9,kg/TJ,546.990444,kg -8a51e3b3-7986-3a20-9919-b1750d424b0b,SESCO,II.1.1,La Rioja,AR-F,annual,2016,gas oil combustion consumption by public passenger transport,140.25396,TJ,N2O,3.9,kg/TJ,546.990444,kg -4d43614e-e900-3f3c-bcf6-54e088f6c0b2,SESCO,II.1.1,Mendoza,AR-M,annual,2016,gas oil combustion consumption by public passenger transport,1921.15056,TJ,CO2,74100.0,kg/TJ,142357256.496,kg -f755d9c8-d753-3bbe-96d3-cdbecf146d26,SESCO,II.1.1,Mendoza,AR-M,annual,2016,gas oil combustion consumption by public passenger transport,1921.15056,TJ,CH4,3.9,kg/TJ,7492.487184,kg -f755d9c8-d753-3bbe-96d3-cdbecf146d26,SESCO,II.1.1,Mendoza,AR-M,annual,2016,gas oil combustion consumption by public passenger transport,1921.15056,TJ,N2O,3.9,kg/TJ,7492.487184,kg -7876d9ef-2331-39af-9a33-460b6f1e20a1,SESCO,II.1.1,Misiones,AR-N,annual,2016,gas oil combustion consumption by public passenger transport,1264.63344,TJ,CO2,74100.0,kg/TJ,93709337.904,kg -57276603-5f4e-347b-a44e-e204b2d615b3,SESCO,II.1.1,Misiones,AR-N,annual,2016,gas oil combustion consumption by public passenger transport,1264.63344,TJ,CH4,3.9,kg/TJ,4932.0704160000005,kg -57276603-5f4e-347b-a44e-e204b2d615b3,SESCO,II.1.1,Misiones,AR-N,annual,2016,gas oil combustion consumption by public passenger transport,1264.63344,TJ,N2O,3.9,kg/TJ,4932.0704160000005,kg -a013b5ea-cbbf-3c3a-84e8-68d9adfe5bd1,SESCO,II.1.1,Neuquén,AR-Q,annual,2016,gas oil combustion consumption by public passenger transport,307.99523999999997,TJ,CO2,74100.0,kg/TJ,22822447.283999998,kg -5bedc6a3-78ca-3260-87fa-382a026fb803,SESCO,II.1.1,Neuquén,AR-Q,annual,2016,gas oil combustion consumption by public passenger transport,307.99523999999997,TJ,CH4,3.9,kg/TJ,1201.1814359999998,kg -5bedc6a3-78ca-3260-87fa-382a026fb803,SESCO,II.1.1,Neuquén,AR-Q,annual,2016,gas oil combustion consumption by public passenger transport,307.99523999999997,TJ,N2O,3.9,kg/TJ,1201.1814359999998,kg -4d8bcfea-ded7-3544-a7bf-a319d3b8087b,SESCO,II.1.1,Rio Negro,AR-R,annual,2016,gas oil combustion consumption by public passenger transport,534.68436,TJ,CO2,74100.0,kg/TJ,39620111.076,kg -93b287b9-3227-3c85-97c9-492609dd867d,SESCO,II.1.1,Rio Negro,AR-R,annual,2016,gas oil combustion consumption by public passenger transport,534.68436,TJ,CH4,3.9,kg/TJ,2085.2690039999998,kg -93b287b9-3227-3c85-97c9-492609dd867d,SESCO,II.1.1,Rio Negro,AR-R,annual,2016,gas oil combustion consumption by public passenger transport,534.68436,TJ,N2O,3.9,kg/TJ,2085.2690039999998,kg -085515ab-3423-3ec7-8975-5334d3f8c6dc,SESCO,II.1.1,Salta,AR-A,annual,2016,gas oil combustion consumption by public passenger transport,899.85756,TJ,CO2,74100.0,kg/TJ,66679445.196,kg -a272407c-b244-311f-998f-7e10126d5790,SESCO,II.1.1,Salta,AR-A,annual,2016,gas oil combustion consumption by public passenger transport,899.85756,TJ,CH4,3.9,kg/TJ,3509.444484,kg -a272407c-b244-311f-998f-7e10126d5790,SESCO,II.1.1,Salta,AR-A,annual,2016,gas oil combustion consumption by public passenger transport,899.85756,TJ,N2O,3.9,kg/TJ,3509.444484,kg -cde4f3d2-de10-3eee-8987-02efa0e6bc97,SESCO,II.1.1,San Juan,AR-J,annual,2016,gas oil combustion consumption by public passenger transport,524.17344,TJ,CO2,74100.0,kg/TJ,38841251.904,kg -4e367c2a-677e-37a0-b82b-20d79188c463,SESCO,II.1.1,San Juan,AR-J,annual,2016,gas oil combustion consumption by public passenger transport,524.17344,TJ,CH4,3.9,kg/TJ,2044.2764160000002,kg -4e367c2a-677e-37a0-b82b-20d79188c463,SESCO,II.1.1,San Juan,AR-J,annual,2016,gas oil combustion consumption by public passenger transport,524.17344,TJ,N2O,3.9,kg/TJ,2044.2764160000002,kg -a9ce02ff-e5c6-3975-aeb7-634e42a92798,SESCO,II.1.1,San Luis,AR-D,annual,2016,gas oil combustion consumption by public passenger transport,163.76808,TJ,CO2,74100.0,kg/TJ,12135214.728,kg -0f950783-a81a-3272-b8c2-3451bf707f68,SESCO,II.1.1,San Luis,AR-D,annual,2016,gas oil combustion consumption by public passenger transport,163.76808,TJ,CH4,3.9,kg/TJ,638.695512,kg -0f950783-a81a-3272-b8c2-3451bf707f68,SESCO,II.1.1,San Luis,AR-D,annual,2016,gas oil combustion consumption by public passenger transport,163.76808,TJ,N2O,3.9,kg/TJ,638.695512,kg -c60ec7fd-18ad-30e2-b15f-e8951f7ec936,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2016,gas oil combustion consumption by public passenger transport,27.88464,TJ,CO2,74100.0,kg/TJ,2066251.824,kg -947c56ec-d87a-3b9f-8c0b-2c99f234d1f4,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2016,gas oil combustion consumption by public passenger transport,27.88464,TJ,CH4,3.9,kg/TJ,108.750096,kg -947c56ec-d87a-3b9f-8c0b-2c99f234d1f4,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2016,gas oil combustion consumption by public passenger transport,27.88464,TJ,N2O,3.9,kg/TJ,108.750096,kg -bf388fc4-db05-3753-9161-8fda710176f6,SESCO,II.1.1,Santa Fe,AR-S,annual,2016,gas oil combustion consumption by public passenger transport,1971.71856,TJ,CO2,74100.0,kg/TJ,146104345.296,kg -a5cfbfb1-65cb-3b48-ad8c-8d3efc347bcf,SESCO,II.1.1,Santa Fe,AR-S,annual,2016,gas oil combustion consumption by public passenger transport,1971.71856,TJ,CH4,3.9,kg/TJ,7689.702384,kg -a5cfbfb1-65cb-3b48-ad8c-8d3efc347bcf,SESCO,II.1.1,Santa Fe,AR-S,annual,2016,gas oil combustion consumption by public passenger transport,1971.71856,TJ,N2O,3.9,kg/TJ,7689.702384,kg -586d567f-630f-33f8-b460-8872a3bdf51c,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2016,gas oil combustion consumption by public passenger transport,270.61104,TJ,CO2,74100.0,kg/TJ,20052278.064,kg -737be1cc-2014-322b-84f7-b74c34f76d37,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2016,gas oil combustion consumption by public passenger transport,270.61104,TJ,CH4,3.9,kg/TJ,1055.383056,kg -737be1cc-2014-322b-84f7-b74c34f76d37,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2016,gas oil combustion consumption by public passenger transport,270.61104,TJ,N2O,3.9,kg/TJ,1055.383056,kg -bf7040dc-4ea2-3602-9c2b-1ae2ae454ee4,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2016,gas oil combustion consumption by public passenger transport,18.92688,TJ,CO2,74100.0,kg/TJ,1402481.808,kg -47ce67ac-2e24-3a5f-baac-e9d6a51c8766,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2016,gas oil combustion consumption by public passenger transport,18.92688,TJ,CH4,3.9,kg/TJ,73.814832,kg -47ce67ac-2e24-3a5f-baac-e9d6a51c8766,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2016,gas oil combustion consumption by public passenger transport,18.92688,TJ,N2O,3.9,kg/TJ,73.814832,kg -403bbbd7-c667-3c18-bec3-230489ed9f1f,SESCO,II.1.1,Tucuman,AR-T,annual,2016,gas oil combustion consumption by public passenger transport,1305.1961999999999,TJ,CO2,74100.0,kg/TJ,96715038.41999999,kg -d2a4e265-0b7c-39fc-999e-58f8643a4726,SESCO,II.1.1,Tucuman,AR-T,annual,2016,gas oil combustion consumption by public passenger transport,1305.1961999999999,TJ,CH4,3.9,kg/TJ,5090.265179999999,kg -d2a4e265-0b7c-39fc-999e-58f8643a4726,SESCO,II.1.1,Tucuman,AR-T,annual,2016,gas oil combustion consumption by public passenger transport,1305.1961999999999,TJ,N2O,3.9,kg/TJ,5090.265179999999,kg -b457b6b0-3c03-3171-a513-07a7faad4680,SESCO,II.1.1,Buenos Aires,AR-B,annual,2016,gas oil combustion consumption by public passenger transport,197.2152,TJ,CO2,74100.0,kg/TJ,14613646.32,kg -db15f1c6-262b-3db9-859d-732af34a21fd,SESCO,II.1.1,Buenos Aires,AR-B,annual,2016,gas oil combustion consumption by public passenger transport,197.2152,TJ,CH4,3.9,kg/TJ,769.13928,kg -db15f1c6-262b-3db9-859d-732af34a21fd,SESCO,II.1.1,Buenos Aires,AR-B,annual,2016,gas oil combustion consumption by public passenger transport,197.2152,TJ,N2O,3.9,kg/TJ,769.13928,kg -e54de786-4eb9-33ed-9225-528960a05cbf,SESCO,II.1.1,Capital Federal,AR-C,annual,2016,gas oil combustion consumption by public passenger transport,16.21788,TJ,CO2,74100.0,kg/TJ,1201744.908,kg -559b1da0-6f89-3985-9eb0-c01b4f2543dc,SESCO,II.1.1,Capital Federal,AR-C,annual,2016,gas oil combustion consumption by public passenger transport,16.21788,TJ,CH4,3.9,kg/TJ,63.249732,kg -559b1da0-6f89-3985-9eb0-c01b4f2543dc,SESCO,II.1.1,Capital Federal,AR-C,annual,2016,gas oil combustion consumption by public passenger transport,16.21788,TJ,N2O,3.9,kg/TJ,63.249732,kg -a9e3decb-cb9c-300b-b56a-490ad92cd049,SESCO,II.1.1,Catamarca,AR-K,annual,2016,gas oil combustion consumption by public passenger transport,1.51704,TJ,CO2,74100.0,kg/TJ,112412.66399999999,kg -6f889af1-64ac-3e53-a823-8754ca5473a7,SESCO,II.1.1,Catamarca,AR-K,annual,2016,gas oil combustion consumption by public passenger transport,1.51704,TJ,CH4,3.9,kg/TJ,5.916455999999999,kg -6f889af1-64ac-3e53-a823-8754ca5473a7,SESCO,II.1.1,Catamarca,AR-K,annual,2016,gas oil combustion consumption by public passenger transport,1.51704,TJ,N2O,3.9,kg/TJ,5.916455999999999,kg -77852307-07b7-3fc6-9e4a-0cb36d2d8d53,SESCO,II.1.1,Chaco,AR-H,annual,2016,gas oil combustion consumption by public passenger transport,0.36119999999999997,TJ,CO2,74100.0,kg/TJ,26764.92,kg -482dc135-d506-38b7-8495-85d6110528e9,SESCO,II.1.1,Chaco,AR-H,annual,2016,gas oil combustion consumption by public passenger transport,0.36119999999999997,TJ,CH4,3.9,kg/TJ,1.40868,kg -482dc135-d506-38b7-8495-85d6110528e9,SESCO,II.1.1,Chaco,AR-H,annual,2016,gas oil combustion consumption by public passenger transport,0.36119999999999997,TJ,N2O,3.9,kg/TJ,1.40868,kg -a8d6f83e-d1aa-3454-b597-bbcdd4bc8d34,SESCO,II.1.1,Chubut,AR-U,annual,2016,gas oil combustion consumption by public passenger transport,17.08476,TJ,CO2,74100.0,kg/TJ,1265980.716,kg -09bda723-5956-3bfd-bd46-226eaecaf7ab,SESCO,II.1.1,Chubut,AR-U,annual,2016,gas oil combustion consumption by public passenger transport,17.08476,TJ,CH4,3.9,kg/TJ,66.63056399999999,kg -09bda723-5956-3bfd-bd46-226eaecaf7ab,SESCO,II.1.1,Chubut,AR-U,annual,2016,gas oil combustion consumption by public passenger transport,17.08476,TJ,N2O,3.9,kg/TJ,66.63056399999999,kg -6e5b1f51-5de0-3ecb-a3cd-0a1208ba0ddb,SESCO,II.1.1,Corrientes,AR-W,annual,2016,gas oil combustion consumption by public passenger transport,0.61404,TJ,CO2,74100.0,kg/TJ,45500.364,kg -c0c456b5-28be-371b-ad1c-68d211427519,SESCO,II.1.1,Corrientes,AR-W,annual,2016,gas oil combustion consumption by public passenger transport,0.61404,TJ,CH4,3.9,kg/TJ,2.394756,kg -c0c456b5-28be-371b-ad1c-68d211427519,SESCO,II.1.1,Corrientes,AR-W,annual,2016,gas oil combustion consumption by public passenger transport,0.61404,TJ,N2O,3.9,kg/TJ,2.394756,kg -482321cf-4511-3080-a7a7-fdb7f694380e,SESCO,II.1.1,Córdoba,AR-X,annual,2016,gas oil combustion consumption by public passenger transport,18.348959999999998,TJ,CO2,74100.0,kg/TJ,1359657.9359999998,kg -d9f000ca-531f-3348-9de4-4a14f29b2cdb,SESCO,II.1.1,Córdoba,AR-X,annual,2016,gas oil combustion consumption by public passenger transport,18.348959999999998,TJ,CH4,3.9,kg/TJ,71.56094399999999,kg -d9f000ca-531f-3348-9de4-4a14f29b2cdb,SESCO,II.1.1,Córdoba,AR-X,annual,2016,gas oil combustion consumption by public passenger transport,18.348959999999998,TJ,N2O,3.9,kg/TJ,71.56094399999999,kg -69a4cfd6-c1a7-3438-a912-7c72e1dc1240,SESCO,II.1.1,Entre Rios,AR-E,annual,2016,gas oil combustion consumption by public passenger transport,0.10836,TJ,CO2,74100.0,kg/TJ,8029.476,kg -9b56ed13-146c-35b6-9929-9cc7f814afd9,SESCO,II.1.1,Entre Rios,AR-E,annual,2016,gas oil combustion consumption by public passenger transport,0.10836,TJ,CH4,3.9,kg/TJ,0.422604,kg -9b56ed13-146c-35b6-9929-9cc7f814afd9,SESCO,II.1.1,Entre Rios,AR-E,annual,2016,gas oil combustion consumption by public passenger transport,0.10836,TJ,N2O,3.9,kg/TJ,0.422604,kg -0f9fc0a2-18fb-3576-a802-5a2d657ce0e3,SESCO,II.1.1,La Rioja,AR-F,annual,2016,gas oil combustion consumption by public passenger transport,0.14448,TJ,CO2,74100.0,kg/TJ,10705.967999999999,kg -2624729b-8f4c-3a70-b11b-f9b1e0be4e4f,SESCO,II.1.1,La Rioja,AR-F,annual,2016,gas oil combustion consumption by public passenger transport,0.14448,TJ,CH4,3.9,kg/TJ,0.563472,kg -2624729b-8f4c-3a70-b11b-f9b1e0be4e4f,SESCO,II.1.1,La Rioja,AR-F,annual,2016,gas oil combustion consumption by public passenger transport,0.14448,TJ,N2O,3.9,kg/TJ,0.563472,kg -b668b0d4-c35e-32b3-9971-bba6ef55f405,SESCO,II.1.1,Mendoza,AR-M,annual,2016,gas oil combustion consumption by public passenger transport,4.08156,TJ,CO2,74100.0,kg/TJ,302443.59599999996,kg -d5eea2f1-9abb-3583-a973-a73cad085546,SESCO,II.1.1,Mendoza,AR-M,annual,2016,gas oil combustion consumption by public passenger transport,4.08156,TJ,CH4,3.9,kg/TJ,15.918083999999999,kg -d5eea2f1-9abb-3583-a973-a73cad085546,SESCO,II.1.1,Mendoza,AR-M,annual,2016,gas oil combustion consumption by public passenger transport,4.08156,TJ,N2O,3.9,kg/TJ,15.918083999999999,kg -bc006969-7453-3b57-8994-5ec1a6c75bc0,SESCO,II.1.1,Misiones,AR-N,annual,2016,gas oil combustion consumption by public passenger transport,6.8989199999999995,TJ,CO2,74100.0,kg/TJ,511209.97199999995,kg -4ac1e0b4-d845-392d-88f5-05fa2929b837,SESCO,II.1.1,Misiones,AR-N,annual,2016,gas oil combustion consumption by public passenger transport,6.8989199999999995,TJ,CH4,3.9,kg/TJ,26.905787999999998,kg -4ac1e0b4-d845-392d-88f5-05fa2929b837,SESCO,II.1.1,Misiones,AR-N,annual,2016,gas oil combustion consumption by public passenger transport,6.8989199999999995,TJ,N2O,3.9,kg/TJ,26.905787999999998,kg -718af895-5852-3f80-979b-9c482e49f1c3,SESCO,II.1.1,Neuquén,AR-Q,annual,2016,gas oil combustion consumption by public passenger transport,0.14448,TJ,CO2,74100.0,kg/TJ,10705.967999999999,kg -b599201c-898f-31ef-abbb-9945a9e87931,SESCO,II.1.1,Neuquén,AR-Q,annual,2016,gas oil combustion consumption by public passenger transport,0.14448,TJ,CH4,3.9,kg/TJ,0.563472,kg -b599201c-898f-31ef-abbb-9945a9e87931,SESCO,II.1.1,Neuquén,AR-Q,annual,2016,gas oil combustion consumption by public passenger transport,0.14448,TJ,N2O,3.9,kg/TJ,0.563472,kg -9696cbf7-6df9-35f5-aa11-ff9d530c0089,SESCO,II.1.1,Rio Negro,AR-R,annual,2016,gas oil combustion consumption by public passenger transport,16.65132,TJ,CO2,74100.0,kg/TJ,1233862.812,kg -28d2a7a5-ffa9-36c2-8927-7ea7053667ac,SESCO,II.1.1,Rio Negro,AR-R,annual,2016,gas oil combustion consumption by public passenger transport,16.65132,TJ,CH4,3.9,kg/TJ,64.940148,kg -28d2a7a5-ffa9-36c2-8927-7ea7053667ac,SESCO,II.1.1,Rio Negro,AR-R,annual,2016,gas oil combustion consumption by public passenger transport,16.65132,TJ,N2O,3.9,kg/TJ,64.940148,kg -4ed62cf0-8b52-3b40-9ce2-7b1221c0c74a,SESCO,II.1.1,Salta,AR-A,annual,2016,gas oil combustion consumption by public passenger transport,3.7925999999999997,TJ,CO2,74100.0,kg/TJ,281031.66,kg -44a1d30d-03b7-344b-abda-c4aede2054ab,SESCO,II.1.1,Salta,AR-A,annual,2016,gas oil combustion consumption by public passenger transport,3.7925999999999997,TJ,CH4,3.9,kg/TJ,14.791139999999999,kg -44a1d30d-03b7-344b-abda-c4aede2054ab,SESCO,II.1.1,Salta,AR-A,annual,2016,gas oil combustion consumption by public passenger transport,3.7925999999999997,TJ,N2O,3.9,kg/TJ,14.791139999999999,kg -32d0040d-8e11-3f92-848b-6a2caf524937,SESCO,II.1.1,San Juan,AR-J,annual,2016,gas oil combustion consumption by public passenger transport,14.484119999999999,TJ,CO2,74100.0,kg/TJ,1073273.292,kg -0847cdec-852a-325a-8ee2-f7c9710125c7,SESCO,II.1.1,San Juan,AR-J,annual,2016,gas oil combustion consumption by public passenger transport,14.484119999999999,TJ,CH4,3.9,kg/TJ,56.48806799999999,kg -0847cdec-852a-325a-8ee2-f7c9710125c7,SESCO,II.1.1,San Juan,AR-J,annual,2016,gas oil combustion consumption by public passenger transport,14.484119999999999,TJ,N2O,3.9,kg/TJ,56.48806799999999,kg -bee6046d-4f8b-36ba-9658-3195e0c202e9,SESCO,II.1.1,Santa Fe,AR-S,annual,2016,gas oil combustion consumption by public passenger transport,6.42936,TJ,CO2,74100.0,kg/TJ,476415.576,kg -c6a3a802-d7da-3c72-b3b3-42f2a1e3352f,SESCO,II.1.1,Santa Fe,AR-S,annual,2016,gas oil combustion consumption by public passenger transport,6.42936,TJ,CH4,3.9,kg/TJ,25.074504,kg -c6a3a802-d7da-3c72-b3b3-42f2a1e3352f,SESCO,II.1.1,Santa Fe,AR-S,annual,2016,gas oil combustion consumption by public passenger transport,6.42936,TJ,N2O,3.9,kg/TJ,25.074504,kg -ca406244-8172-39b0-99af-a624f00b1e70,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2016,gas oil combustion consumption by public passenger transport,0.79464,TJ,CO2,74100.0,kg/TJ,58882.824,kg -28e25b1d-b28d-3f63-8222-25e81195204f,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2016,gas oil combustion consumption by public passenger transport,0.79464,TJ,CH4,3.9,kg/TJ,3.099096,kg -28e25b1d-b28d-3f63-8222-25e81195204f,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2016,gas oil combustion consumption by public passenger transport,0.79464,TJ,N2O,3.9,kg/TJ,3.099096,kg -878a045f-d90e-3777-9ed1-745dc711c633,SESCO,II.1.1,Tucuman,AR-T,annual,2016,gas oil combustion consumption by public passenger transport,4.5872399999999995,TJ,CO2,74100.0,kg/TJ,339914.48399999994,kg -9cb4464a-3207-39d1-8d94-012b3b88d4e0,SESCO,II.1.1,Tucuman,AR-T,annual,2016,gas oil combustion consumption by public passenger transport,4.5872399999999995,TJ,CH4,3.9,kg/TJ,17.890235999999998,kg -9cb4464a-3207-39d1-8d94-012b3b88d4e0,SESCO,II.1.1,Tucuman,AR-T,annual,2016,gas oil combustion consumption by public passenger transport,4.5872399999999995,TJ,N2O,3.9,kg/TJ,17.890235999999998,kg -c3f5259f-d4b1-3fa7-a8e0-050e7acde9c6,SESCO,II.1.1,Capital Federal,AR-C,annual,2017,gas oil combustion consumption by to the public,45.3306,TJ,CO2,74100.0,kg/TJ,3358997.46,kg -fe532bf6-439f-3526-9509-e78e90a72655,SESCO,II.1.1,Capital Federal,AR-C,annual,2017,gas oil combustion consumption by to the public,45.3306,TJ,CH4,3.9,kg/TJ,176.78933999999998,kg -fe532bf6-439f-3526-9509-e78e90a72655,SESCO,II.1.1,Capital Federal,AR-C,annual,2017,gas oil combustion consumption by to the public,45.3306,TJ,N2O,3.9,kg/TJ,176.78933999999998,kg -14fbfc32-e4ec-3ede-a47e-ca9d80346480,SESCO,II.5.1,Buenos Aires,AR-B,annual,2017,gas oil combustion consumption by agriculture machines,159.00024,TJ,CO2,74100.0,kg/TJ,11781917.784,kg -790c3e61-105f-39af-bdc5-641d19d22889,SESCO,II.5.1,Buenos Aires,AR-B,annual,2017,gas oil combustion consumption by agriculture machines,159.00024,TJ,CH4,3.9,kg/TJ,620.1009359999999,kg -790c3e61-105f-39af-bdc5-641d19d22889,SESCO,II.5.1,Buenos Aires,AR-B,annual,2017,gas oil combustion consumption by agriculture machines,159.00024,TJ,N2O,3.9,kg/TJ,620.1009359999999,kg -2a7b22a8-3d37-393a-b2ac-37747e71ba46,SESCO,II.5.1,Chaco,AR-H,annual,2017,gas oil combustion consumption by agriculture machines,4.29828,TJ,CO2,74100.0,kg/TJ,318502.548,kg -5b1df199-ee37-3a5e-a872-3a30b55b303c,SESCO,II.5.1,Chaco,AR-H,annual,2017,gas oil combustion consumption by agriculture machines,4.29828,TJ,CH4,3.9,kg/TJ,16.763292,kg -5b1df199-ee37-3a5e-a872-3a30b55b303c,SESCO,II.5.1,Chaco,AR-H,annual,2017,gas oil combustion consumption by agriculture machines,4.29828,TJ,N2O,3.9,kg/TJ,16.763292,kg -7f54f3eb-c1db-3616-bc84-8ad9e6f1a374,SESCO,II.5.1,Corrientes,AR-W,annual,2017,gas oil combustion consumption by agriculture machines,1.30032,TJ,CO2,74100.0,kg/TJ,96353.712,kg -83fe8447-74c4-3e68-bbcf-8572f3b06c17,SESCO,II.5.1,Corrientes,AR-W,annual,2017,gas oil combustion consumption by agriculture machines,1.30032,TJ,CH4,3.9,kg/TJ,5.071248,kg -83fe8447-74c4-3e68-bbcf-8572f3b06c17,SESCO,II.5.1,Corrientes,AR-W,annual,2017,gas oil combustion consumption by agriculture machines,1.30032,TJ,N2O,3.9,kg/TJ,5.071248,kg -3b021822-bf2f-381f-8fd5-ef33c0953b57,SESCO,II.5.1,Córdoba,AR-X,annual,2017,gas oil combustion consumption by agriculture machines,163.19016,TJ,CO2,74100.0,kg/TJ,12092390.855999999,kg -5725368e-9201-3af8-af41-d7120481bfa5,SESCO,II.5.1,Córdoba,AR-X,annual,2017,gas oil combustion consumption by agriculture machines,163.19016,TJ,CH4,3.9,kg/TJ,636.4416239999999,kg -5725368e-9201-3af8-af41-d7120481bfa5,SESCO,II.5.1,Córdoba,AR-X,annual,2017,gas oil combustion consumption by agriculture machines,163.19016,TJ,N2O,3.9,kg/TJ,636.4416239999999,kg -5acc04ee-2ad5-348d-a2c4-1eb28e9db549,SESCO,II.5.1,Santa Fe,AR-S,annual,2017,gas oil combustion consumption by agriculture machines,355.85424,TJ,CO2,74100.0,kg/TJ,26368799.184,kg -95a6abb5-c78b-32ba-9be0-df66107e5043,SESCO,II.5.1,Santa Fe,AR-S,annual,2017,gas oil combustion consumption by agriculture machines,355.85424,TJ,CH4,3.9,kg/TJ,1387.831536,kg -95a6abb5-c78b-32ba-9be0-df66107e5043,SESCO,II.5.1,Santa Fe,AR-S,annual,2017,gas oil combustion consumption by agriculture machines,355.85424,TJ,N2O,3.9,kg/TJ,1387.831536,kg -37c7d879-e20a-3461-b653-0c39662c1a21,SESCO,II.5.1,Tucuman,AR-T,annual,2017,gas oil combustion consumption by agriculture machines,25.8258,TJ,CO2,74100.0,kg/TJ,1913691.78,kg -653999aa-1206-3e54-9c0c-decb13e7e7be,SESCO,II.5.1,Tucuman,AR-T,annual,2017,gas oil combustion consumption by agriculture machines,25.8258,TJ,CH4,3.9,kg/TJ,100.72062,kg -653999aa-1206-3e54-9c0c-decb13e7e7be,SESCO,II.5.1,Tucuman,AR-T,annual,2017,gas oil combustion consumption by agriculture machines,25.8258,TJ,N2O,3.9,kg/TJ,100.72062,kg -5b1f9e30-da79-3d84-ba85-85ff770a7638,SESCO,II.5.1,Buenos Aires,AR-B,annual,2017,gas oil combustion consumption by agriculture machines,19.866,TJ,CO2,74100.0,kg/TJ,1472070.5999999999,kg -1d719c61-efbf-3575-8ab9-717e2f2250b5,SESCO,II.5.1,Buenos Aires,AR-B,annual,2017,gas oil combustion consumption by agriculture machines,19.866,TJ,CH4,3.9,kg/TJ,77.4774,kg -1d719c61-efbf-3575-8ab9-717e2f2250b5,SESCO,II.5.1,Buenos Aires,AR-B,annual,2017,gas oil combustion consumption by agriculture machines,19.866,TJ,N2O,3.9,kg/TJ,77.4774,kg -6b62d8de-47f1-38a9-a20d-ce6683388f87,SESCO,II.5.1,Chaco,AR-H,annual,2017,gas oil combustion consumption by agriculture machines,1.2642,TJ,CO2,74100.0,kg/TJ,93677.22,kg -e9bad7bf-5759-3e79-b175-400b10d2a7a9,SESCO,II.5.1,Chaco,AR-H,annual,2017,gas oil combustion consumption by agriculture machines,1.2642,TJ,CH4,3.9,kg/TJ,4.9303799999999995,kg -e9bad7bf-5759-3e79-b175-400b10d2a7a9,SESCO,II.5.1,Chaco,AR-H,annual,2017,gas oil combustion consumption by agriculture machines,1.2642,TJ,N2O,3.9,kg/TJ,4.9303799999999995,kg -dd122313-b5cd-3bf2-909f-ba5dd6c642e7,SESCO,II.5.1,Córdoba,AR-X,annual,2017,gas oil combustion consumption by agriculture machines,10.22196,TJ,CO2,74100.0,kg/TJ,757447.2359999999,kg -b3ce7d44-49dd-30c4-b0df-c076ca363931,SESCO,II.5.1,Córdoba,AR-X,annual,2017,gas oil combustion consumption by agriculture machines,10.22196,TJ,CH4,3.9,kg/TJ,39.865643999999996,kg -b3ce7d44-49dd-30c4-b0df-c076ca363931,SESCO,II.5.1,Córdoba,AR-X,annual,2017,gas oil combustion consumption by agriculture machines,10.22196,TJ,N2O,3.9,kg/TJ,39.865643999999996,kg -bcf52b9a-654a-324e-ace3-5398b52a0071,SESCO,II.5.1,Santa Fe,AR-S,annual,2017,gas oil combustion consumption by agriculture machines,33.230399999999996,TJ,CO2,74100.0,kg/TJ,2462372.6399999997,kg -0b0b219e-26b0-3ef5-8eb7-91c580a47afb,SESCO,II.5.1,Santa Fe,AR-S,annual,2017,gas oil combustion consumption by agriculture machines,33.230399999999996,TJ,CH4,3.9,kg/TJ,129.59856,kg -0b0b219e-26b0-3ef5-8eb7-91c580a47afb,SESCO,II.5.1,Santa Fe,AR-S,annual,2017,gas oil combustion consumption by agriculture machines,33.230399999999996,TJ,N2O,3.9,kg/TJ,129.59856,kg -41dc9f3e-29f2-3d6c-88f1-c3ee9063de3c,SESCO,II.5.1,Tucuman,AR-T,annual,2017,gas oil combustion consumption by agriculture machines,21.23856,TJ,CO2,74100.0,kg/TJ,1573777.296,kg -c88168d6-3bed-3f94-a966-f72985b019f7,SESCO,II.5.1,Tucuman,AR-T,annual,2017,gas oil combustion consumption by agriculture machines,21.23856,TJ,CH4,3.9,kg/TJ,82.830384,kg -c88168d6-3bed-3f94-a966-f72985b019f7,SESCO,II.5.1,Tucuman,AR-T,annual,2017,gas oil combustion consumption by agriculture machines,21.23856,TJ,N2O,3.9,kg/TJ,82.830384,kg -e3c3ccbe-aa55-3ae6-a3bd-17bfb4c9a2dc,SESCO,II.5.1,Córdoba,AR-X,annual,2017,jet kerosene combustion consumption by agriculture machines,0.8806839999999998,TJ,CO2,71500.0,kg/TJ,62968.90599999999,kg -1f8f0335-95f8-3329-92d7-b481a70187f9,SESCO,II.5.1,Córdoba,AR-X,annual,2017,jet kerosene combustion consumption by agriculture machines,0.8806839999999998,TJ,CH4,0.5,kg/TJ,0.4403419999999999,kg -79c82c3e-444e-3d0a-801e-454edf90494a,SESCO,II.5.1,Córdoba,AR-X,annual,2017,jet kerosene combustion consumption by agriculture machines,0.8806839999999998,TJ,N2O,2.0,kg/TJ,1.7613679999999996,kg -3f01edd0-e221-35e2-9676-9dd19f894ab7,SESCO,II.1.1,Buenos Aires,AR-B,annual,2017,gas oil combustion consumption by to the public,8481.62616,TJ,CO2,74100.0,kg/TJ,628488498.456,kg -106bd569-dde0-32c8-806d-54a8009ba003,SESCO,II.1.1,Buenos Aires,AR-B,annual,2017,gas oil combustion consumption by to the public,8481.62616,TJ,CH4,3.9,kg/TJ,33078.342024,kg -106bd569-dde0-32c8-806d-54a8009ba003,SESCO,II.1.1,Buenos Aires,AR-B,annual,2017,gas oil combustion consumption by to the public,8481.62616,TJ,N2O,3.9,kg/TJ,33078.342024,kg -46f96fec-f7f2-3a0c-a8bf-d27e508f80c7,SESCO,II.1.1,Capital Federal,AR-C,annual,2017,gas oil combustion consumption by to the public,971.95308,TJ,CO2,74100.0,kg/TJ,72021723.228,kg -aecdf844-06ea-3f02-866f-7351d52b0c52,SESCO,II.1.1,Capital Federal,AR-C,annual,2017,gas oil combustion consumption by to the public,971.95308,TJ,CH4,3.9,kg/TJ,3790.6170119999997,kg -aecdf844-06ea-3f02-866f-7351d52b0c52,SESCO,II.1.1,Capital Federal,AR-C,annual,2017,gas oil combustion consumption by to the public,971.95308,TJ,N2O,3.9,kg/TJ,3790.6170119999997,kg -08b953e2-7362-31b4-a9d1-c617770021e3,SESCO,II.1.1,Catamarca,AR-K,annual,2017,gas oil combustion consumption by to the public,294.16128,TJ,CO2,74100.0,kg/TJ,21797350.847999997,kg -e30aa8fc-68db-3317-8764-83c78156314c,SESCO,II.1.1,Catamarca,AR-K,annual,2017,gas oil combustion consumption by to the public,294.16128,TJ,CH4,3.9,kg/TJ,1147.2289919999998,kg -e30aa8fc-68db-3317-8764-83c78156314c,SESCO,II.1.1,Catamarca,AR-K,annual,2017,gas oil combustion consumption by to the public,294.16128,TJ,N2O,3.9,kg/TJ,1147.2289919999998,kg -91d278aa-9587-33e6-9844-1e06f82c12c9,SESCO,II.1.1,Chaco,AR-H,annual,2017,gas oil combustion consumption by to the public,319.44527999999997,TJ,CO2,74100.0,kg/TJ,23670895.247999996,kg -a1cf9572-0b61-3683-a2f4-ffa3fd98abe6,SESCO,II.1.1,Chaco,AR-H,annual,2017,gas oil combustion consumption by to the public,319.44527999999997,TJ,CH4,3.9,kg/TJ,1245.8365919999999,kg -a1cf9572-0b61-3683-a2f4-ffa3fd98abe6,SESCO,II.1.1,Chaco,AR-H,annual,2017,gas oil combustion consumption by to the public,319.44527999999997,TJ,N2O,3.9,kg/TJ,1245.8365919999999,kg -1230720e-2a75-3e8c-88c9-8bee04bd94e3,SESCO,II.1.1,Chubut,AR-U,annual,2017,gas oil combustion consumption by to the public,351.44759999999997,TJ,CO2,74100.0,kg/TJ,26042267.159999996,kg -c032a972-caba-349d-afdb-922e74aeeb83,SESCO,II.1.1,Chubut,AR-U,annual,2017,gas oil combustion consumption by to the public,351.44759999999997,TJ,CH4,3.9,kg/TJ,1370.6456399999997,kg -c032a972-caba-349d-afdb-922e74aeeb83,SESCO,II.1.1,Chubut,AR-U,annual,2017,gas oil combustion consumption by to the public,351.44759999999997,TJ,N2O,3.9,kg/TJ,1370.6456399999997,kg -c063458b-8ca8-359a-b3b9-60672367c9c3,SESCO,II.1.1,Corrientes,AR-W,annual,2017,gas oil combustion consumption by to the public,594.0295199999999,TJ,CO2,74100.0,kg/TJ,44017587.432,kg -4920bcdc-7f2e-3f0d-8d3d-c291b7dacb1b,SESCO,II.1.1,Corrientes,AR-W,annual,2017,gas oil combustion consumption by to the public,594.0295199999999,TJ,CH4,3.9,kg/TJ,2316.715128,kg -4920bcdc-7f2e-3f0d-8d3d-c291b7dacb1b,SESCO,II.1.1,Corrientes,AR-W,annual,2017,gas oil combustion consumption by to the public,594.0295199999999,TJ,N2O,3.9,kg/TJ,2316.715128,kg -d2ef0058-e58c-3572-93f6-a039187cf368,SESCO,II.1.1,Córdoba,AR-X,annual,2017,gas oil combustion consumption by to the public,4492.9668,TJ,CO2,74100.0,kg/TJ,332928839.88,kg -0b8744e8-e3e8-3a57-a0cb-5bc8d7a731c1,SESCO,II.1.1,Córdoba,AR-X,annual,2017,gas oil combustion consumption by to the public,4492.9668,TJ,CH4,3.9,kg/TJ,17522.57052,kg -0b8744e8-e3e8-3a57-a0cb-5bc8d7a731c1,SESCO,II.1.1,Córdoba,AR-X,annual,2017,gas oil combustion consumption by to the public,4492.9668,TJ,N2O,3.9,kg/TJ,17522.57052,kg -a4cbb65f-4b0c-3e10-a651-3772ddb5dc57,SESCO,II.1.1,Entre Rios,AR-E,annual,2017,gas oil combustion consumption by to the public,990.7354799999999,TJ,CO2,74100.0,kg/TJ,73413499.06799999,kg -0bf8c3da-e16b-3814-acd6-0252b3905e0e,SESCO,II.1.1,Entre Rios,AR-E,annual,2017,gas oil combustion consumption by to the public,990.7354799999999,TJ,CH4,3.9,kg/TJ,3863.8683719999995,kg -0bf8c3da-e16b-3814-acd6-0252b3905e0e,SESCO,II.1.1,Entre Rios,AR-E,annual,2017,gas oil combustion consumption by to the public,990.7354799999999,TJ,N2O,3.9,kg/TJ,3863.8683719999995,kg -1f0bf332-6225-3ead-b752-64468d12e803,SESCO,II.1.1,Formosa,AR-P,annual,2017,gas oil combustion consumption by to the public,527.06304,TJ,CO2,74100.0,kg/TJ,39055371.264,kg -e688b666-3b61-33c2-9b0c-9487af2a465f,SESCO,II.1.1,Formosa,AR-P,annual,2017,gas oil combustion consumption by to the public,527.06304,TJ,CH4,3.9,kg/TJ,2055.5458559999997,kg -e688b666-3b61-33c2-9b0c-9487af2a465f,SESCO,II.1.1,Formosa,AR-P,annual,2017,gas oil combustion consumption by to the public,527.06304,TJ,N2O,3.9,kg/TJ,2055.5458559999997,kg -66e0b295-3b9a-3e0a-926e-b594ef566ae4,SESCO,II.1.1,Jujuy,AR-Y,annual,2017,gas oil combustion consumption by to the public,118.18464,TJ,CO2,74100.0,kg/TJ,8757481.824000001,kg -87910b5c-e599-3766-996a-361a4cdc9e4a,SESCO,II.1.1,Jujuy,AR-Y,annual,2017,gas oil combustion consumption by to the public,118.18464,TJ,CH4,3.9,kg/TJ,460.920096,kg -87910b5c-e599-3766-996a-361a4cdc9e4a,SESCO,II.1.1,Jujuy,AR-Y,annual,2017,gas oil combustion consumption by to the public,118.18464,TJ,N2O,3.9,kg/TJ,460.920096,kg -2a1c9b6a-c98a-32b1-a607-1e02269c200e,SESCO,II.1.1,La Pampa,AR-L,annual,2017,gas oil combustion consumption by to the public,380.74092,TJ,CO2,74100.0,kg/TJ,28212902.172000002,kg -af31d9b5-2899-359a-8a78-885ff852ccc1,SESCO,II.1.1,La Pampa,AR-L,annual,2017,gas oil combustion consumption by to the public,380.74092,TJ,CH4,3.9,kg/TJ,1484.889588,kg -af31d9b5-2899-359a-8a78-885ff852ccc1,SESCO,II.1.1,La Pampa,AR-L,annual,2017,gas oil combustion consumption by to the public,380.74092,TJ,N2O,3.9,kg/TJ,1484.889588,kg -4142aba3-1fd4-3608-be47-6e08978bb3cc,SESCO,II.1.1,La Rioja,AR-F,annual,2017,gas oil combustion consumption by to the public,53.67432,TJ,CO2,74100.0,kg/TJ,3977267.112,kg -082b5d1c-a8c9-3da0-8d9e-ca1e65e477a3,SESCO,II.1.1,La Rioja,AR-F,annual,2017,gas oil combustion consumption by to the public,53.67432,TJ,CH4,3.9,kg/TJ,209.329848,kg -082b5d1c-a8c9-3da0-8d9e-ca1e65e477a3,SESCO,II.1.1,La Rioja,AR-F,annual,2017,gas oil combustion consumption by to the public,53.67432,TJ,N2O,3.9,kg/TJ,209.329848,kg -078ef524-8c2e-360e-95b4-2cae74b4e038,SESCO,II.1.1,Mendoza,AR-M,annual,2017,gas oil combustion consumption by to the public,453.88392,TJ,CO2,74100.0,kg/TJ,33632798.472,kg -b6b34eba-2b8f-3a8e-bbad-ffaf659d0873,SESCO,II.1.1,Mendoza,AR-M,annual,2017,gas oil combustion consumption by to the public,453.88392,TJ,CH4,3.9,kg/TJ,1770.147288,kg -b6b34eba-2b8f-3a8e-bbad-ffaf659d0873,SESCO,II.1.1,Mendoza,AR-M,annual,2017,gas oil combustion consumption by to the public,453.88392,TJ,N2O,3.9,kg/TJ,1770.147288,kg -da48cf1c-8d8b-3d69-a821-6b3961a7d5bd,SESCO,II.1.1,Misiones,AR-N,annual,2017,gas oil combustion consumption by to the public,577.81164,TJ,CO2,74100.0,kg/TJ,42815842.524000004,kg -b20e07ea-0771-3929-a7c4-035f362f373e,SESCO,II.1.1,Misiones,AR-N,annual,2017,gas oil combustion consumption by to the public,577.81164,TJ,CH4,3.9,kg/TJ,2253.465396,kg -b20e07ea-0771-3929-a7c4-035f362f373e,SESCO,II.1.1,Misiones,AR-N,annual,2017,gas oil combustion consumption by to the public,577.81164,TJ,N2O,3.9,kg/TJ,2253.465396,kg -09b9db71-c9dc-3992-ab22-3719bd7c60da,SESCO,II.1.1,Neuquén,AR-Q,annual,2017,gas oil combustion consumption by to the public,115.25892,TJ,CO2,74100.0,kg/TJ,8540685.972000001,kg -ff67e643-4c9b-3e29-b9e7-ca012bef5843,SESCO,II.1.1,Neuquén,AR-Q,annual,2017,gas oil combustion consumption by to the public,115.25892,TJ,CH4,3.9,kg/TJ,449.509788,kg -ff67e643-4c9b-3e29-b9e7-ca012bef5843,SESCO,II.1.1,Neuquén,AR-Q,annual,2017,gas oil combustion consumption by to the public,115.25892,TJ,N2O,3.9,kg/TJ,449.509788,kg -41c7962d-80ea-332d-a191-868a35fcec19,SESCO,II.1.1,Rio Negro,AR-R,annual,2017,gas oil combustion consumption by to the public,497.1918,TJ,CO2,74100.0,kg/TJ,36841912.38,kg -fe96370d-b270-3b6f-b201-09488fc8bb01,SESCO,II.1.1,Rio Negro,AR-R,annual,2017,gas oil combustion consumption by to the public,497.1918,TJ,CH4,3.9,kg/TJ,1939.04802,kg -fe96370d-b270-3b6f-b201-09488fc8bb01,SESCO,II.1.1,Rio Negro,AR-R,annual,2017,gas oil combustion consumption by to the public,497.1918,TJ,N2O,3.9,kg/TJ,1939.04802,kg -638b4844-a65f-3b9b-ad4a-521f039a4d63,SESCO,II.1.1,Salta,AR-A,annual,2017,gas oil combustion consumption by to the public,49.55664,TJ,CO2,74100.0,kg/TJ,3672147.024,kg -1c544a79-c376-355f-ad0a-0f952a248764,SESCO,II.1.1,Salta,AR-A,annual,2017,gas oil combustion consumption by to the public,49.55664,TJ,CH4,3.9,kg/TJ,193.270896,kg -1c544a79-c376-355f-ad0a-0f952a248764,SESCO,II.1.1,Salta,AR-A,annual,2017,gas oil combustion consumption by to the public,49.55664,TJ,N2O,3.9,kg/TJ,193.270896,kg -2e6eadaf-46f4-3a2a-96e3-0becd5e1b154,SESCO,II.1.1,San Juan,AR-J,annual,2017,gas oil combustion consumption by to the public,255.47675999999998,TJ,CO2,74100.0,kg/TJ,18930827.915999997,kg -be9fe349-8bd3-3726-8137-6cccb322e378,SESCO,II.1.1,San Juan,AR-J,annual,2017,gas oil combustion consumption by to the public,255.47675999999998,TJ,CH4,3.9,kg/TJ,996.3593639999999,kg -be9fe349-8bd3-3726-8137-6cccb322e378,SESCO,II.1.1,San Juan,AR-J,annual,2017,gas oil combustion consumption by to the public,255.47675999999998,TJ,N2O,3.9,kg/TJ,996.3593639999999,kg -8f488663-4bb4-32ce-9b84-5afbb3e3f001,SESCO,II.1.1,San Luis,AR-D,annual,2017,gas oil combustion consumption by to the public,539.56056,TJ,CO2,74100.0,kg/TJ,39981437.496,kg -186ce29a-7cea-3b8c-9b85-85550a990245,SESCO,II.1.1,San Luis,AR-D,annual,2017,gas oil combustion consumption by to the public,539.56056,TJ,CH4,3.9,kg/TJ,2104.286184,kg -186ce29a-7cea-3b8c-9b85-85550a990245,SESCO,II.1.1,San Luis,AR-D,annual,2017,gas oil combustion consumption by to the public,539.56056,TJ,N2O,3.9,kg/TJ,2104.286184,kg -5d8247e5-9c4f-3ff8-b0fd-2f07085bf61e,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2017,gas oil combustion consumption by to the public,74.84064,TJ,CO2,74100.0,kg/TJ,5545691.424,kg -3d63850f-f6d4-3490-82f1-362e876d29f4,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2017,gas oil combustion consumption by to the public,74.84064,TJ,CH4,3.9,kg/TJ,291.878496,kg -3d63850f-f6d4-3490-82f1-362e876d29f4,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2017,gas oil combustion consumption by to the public,74.84064,TJ,N2O,3.9,kg/TJ,291.878496,kg -715c5bf5-e772-31a8-91cc-1ebe098dbaaf,SESCO,II.1.1,Santa Fe,AR-S,annual,2017,gas oil combustion consumption by to the public,2806.524,TJ,CO2,74100.0,kg/TJ,207963428.4,kg -e13947dd-43ff-3cdc-a155-1e3741bb1c98,SESCO,II.1.1,Santa Fe,AR-S,annual,2017,gas oil combustion consumption by to the public,2806.524,TJ,CH4,3.9,kg/TJ,10945.443599999999,kg -e13947dd-43ff-3cdc-a155-1e3741bb1c98,SESCO,II.1.1,Santa Fe,AR-S,annual,2017,gas oil combustion consumption by to the public,2806.524,TJ,N2O,3.9,kg/TJ,10945.443599999999,kg -14ef937a-9243-3a10-bafd-3ca312ede803,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2017,gas oil combustion consumption by to the public,406.13328,TJ,CO2,74100.0,kg/TJ,30094476.048,kg -b03ebfb7-ed5c-3248-a8b4-baf31e8018e4,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2017,gas oil combustion consumption by to the public,406.13328,TJ,CH4,3.9,kg/TJ,1583.919792,kg -b03ebfb7-ed5c-3248-a8b4-baf31e8018e4,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2017,gas oil combustion consumption by to the public,406.13328,TJ,N2O,3.9,kg/TJ,1583.919792,kg -961bb0ad-f4cf-33bd-959c-869699e01dfa,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2017,gas oil combustion consumption by to the public,93.47856,TJ,CO2,74100.0,kg/TJ,6926761.296,kg -1617b127-a215-32ed-87ab-861cd6b81730,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2017,gas oil combustion consumption by to the public,93.47856,TJ,CH4,3.9,kg/TJ,364.56638399999997,kg -1617b127-a215-32ed-87ab-861cd6b81730,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2017,gas oil combustion consumption by to the public,93.47856,TJ,N2O,3.9,kg/TJ,364.56638399999997,kg -c67fa17b-ad42-362e-85b3-afd4df53e9bd,SESCO,II.1.1,Tucuman,AR-T,annual,2017,gas oil combustion consumption by to the public,93.44244,TJ,CO2,74100.0,kg/TJ,6924084.8040000005,kg -d084b9ea-84bd-322c-b904-c3e4d11cf0b3,SESCO,II.1.1,Tucuman,AR-T,annual,2017,gas oil combustion consumption by to the public,93.44244,TJ,CH4,3.9,kg/TJ,364.425516,kg -d084b9ea-84bd-322c-b904-c3e4d11cf0b3,SESCO,II.1.1,Tucuman,AR-T,annual,2017,gas oil combustion consumption by to the public,93.44244,TJ,N2O,3.9,kg/TJ,364.425516,kg -c6637627-59aa-3313-877b-05f27bf77605,SESCO,II.1.1,Buenos Aires,AR-B,annual,2017,gas oil combustion consumption by to the public,3434.86752,TJ,CO2,74100.0,kg/TJ,254523683.232,kg -1f43ba0b-a651-35af-b91a-1630cf8eb6fa,SESCO,II.1.1,Buenos Aires,AR-B,annual,2017,gas oil combustion consumption by to the public,3434.86752,TJ,CH4,3.9,kg/TJ,13395.983327999998,kg -1f43ba0b-a651-35af-b91a-1630cf8eb6fa,SESCO,II.1.1,Buenos Aires,AR-B,annual,2017,gas oil combustion consumption by to the public,3434.86752,TJ,N2O,3.9,kg/TJ,13395.983327999998,kg -c1058581-5274-3004-bee9-1f26f4061696,SESCO,II.1.1,Capital Federal,AR-C,annual,2017,gas oil combustion consumption by to the public,636.94008,TJ,CO2,74100.0,kg/TJ,47197259.927999996,kg -ca779a3e-32a9-3f1b-885a-ad615bbe3b61,SESCO,II.1.1,Capital Federal,AR-C,annual,2017,gas oil combustion consumption by to the public,636.94008,TJ,CH4,3.9,kg/TJ,2484.066312,kg -ca779a3e-32a9-3f1b-885a-ad615bbe3b61,SESCO,II.1.1,Capital Federal,AR-C,annual,2017,gas oil combustion consumption by to the public,636.94008,TJ,N2O,3.9,kg/TJ,2484.066312,kg -f63bab0d-a1c4-391b-bfae-29d07c6a4d59,SESCO,II.1.1,Catamarca,AR-K,annual,2017,gas oil combustion consumption by to the public,195.62592,TJ,CO2,74100.0,kg/TJ,14495880.672,kg -a1bf6f5d-17a3-3732-883a-f3aaebab726d,SESCO,II.1.1,Catamarca,AR-K,annual,2017,gas oil combustion consumption by to the public,195.62592,TJ,CH4,3.9,kg/TJ,762.941088,kg -a1bf6f5d-17a3-3732-883a-f3aaebab726d,SESCO,II.1.1,Catamarca,AR-K,annual,2017,gas oil combustion consumption by to the public,195.62592,TJ,N2O,3.9,kg/TJ,762.941088,kg -b832f2b7-b6cc-353d-b442-0d055e552fa9,SESCO,II.1.1,Chaco,AR-H,annual,2017,gas oil combustion consumption by to the public,130.17648,TJ,CO2,74100.0,kg/TJ,9646077.168,kg -4923a12d-4ff6-3dc4-94e4-0fa23efcd297,SESCO,II.1.1,Chaco,AR-H,annual,2017,gas oil combustion consumption by to the public,130.17648,TJ,CH4,3.9,kg/TJ,507.688272,kg -4923a12d-4ff6-3dc4-94e4-0fa23efcd297,SESCO,II.1.1,Chaco,AR-H,annual,2017,gas oil combustion consumption by to the public,130.17648,TJ,N2O,3.9,kg/TJ,507.688272,kg -78b9258e-4ee9-3476-aa49-5b08352b2245,SESCO,II.1.1,Chubut,AR-U,annual,2017,gas oil combustion consumption by to the public,159.39756,TJ,CO2,74100.0,kg/TJ,11811359.196,kg -34babd81-35f5-34f5-873a-483b64371890,SESCO,II.1.1,Chubut,AR-U,annual,2017,gas oil combustion consumption by to the public,159.39756,TJ,CH4,3.9,kg/TJ,621.650484,kg -34babd81-35f5-34f5-873a-483b64371890,SESCO,II.1.1,Chubut,AR-U,annual,2017,gas oil combustion consumption by to the public,159.39756,TJ,N2O,3.9,kg/TJ,621.650484,kg -21afe105-3f28-3648-953d-d2b51a23145d,SESCO,II.1.1,Corrientes,AR-W,annual,2017,gas oil combustion consumption by to the public,221.30724,TJ,CO2,74100.0,kg/TJ,16398866.484000001,kg -6a1fcabd-b551-3963-b270-e22ca092562b,SESCO,II.1.1,Corrientes,AR-W,annual,2017,gas oil combustion consumption by to the public,221.30724,TJ,CH4,3.9,kg/TJ,863.098236,kg -6a1fcabd-b551-3963-b270-e22ca092562b,SESCO,II.1.1,Corrientes,AR-W,annual,2017,gas oil combustion consumption by to the public,221.30724,TJ,N2O,3.9,kg/TJ,863.098236,kg -67316e60-3ecc-37d6-b0ea-621bca43d7f4,SESCO,II.1.1,Córdoba,AR-X,annual,2017,gas oil combustion consumption by to the public,1097.65068,TJ,CO2,74100.0,kg/TJ,81335915.388,kg -d07ce123-3b08-3a59-a47d-c965313973f5,SESCO,II.1.1,Córdoba,AR-X,annual,2017,gas oil combustion consumption by to the public,1097.65068,TJ,CH4,3.9,kg/TJ,4280.837652,kg -d07ce123-3b08-3a59-a47d-c965313973f5,SESCO,II.1.1,Córdoba,AR-X,annual,2017,gas oil combustion consumption by to the public,1097.65068,TJ,N2O,3.9,kg/TJ,4280.837652,kg -e9ba4277-7d46-3a92-ae74-aec58106149e,SESCO,II.1.1,Entre Rios,AR-E,annual,2017,gas oil combustion consumption by to the public,438.38844,TJ,CO2,74100.0,kg/TJ,32484583.404,kg -38bf922e-d451-3568-9503-becda96bef6c,SESCO,II.1.1,Entre Rios,AR-E,annual,2017,gas oil combustion consumption by to the public,438.38844,TJ,CH4,3.9,kg/TJ,1709.714916,kg -38bf922e-d451-3568-9503-becda96bef6c,SESCO,II.1.1,Entre Rios,AR-E,annual,2017,gas oil combustion consumption by to the public,438.38844,TJ,N2O,3.9,kg/TJ,1709.714916,kg -09abd41c-14c0-341d-a631-f82de66ee9e7,SESCO,II.1.1,Formosa,AR-P,annual,2017,gas oil combustion consumption by to the public,304.16652,TJ,CO2,74100.0,kg/TJ,22538739.132,kg -23d0310f-15ff-38a2-867e-307b14c75c2f,SESCO,II.1.1,Formosa,AR-P,annual,2017,gas oil combustion consumption by to the public,304.16652,TJ,CH4,3.9,kg/TJ,1186.2494279999999,kg -23d0310f-15ff-38a2-867e-307b14c75c2f,SESCO,II.1.1,Formosa,AR-P,annual,2017,gas oil combustion consumption by to the public,304.16652,TJ,N2O,3.9,kg/TJ,1186.2494279999999,kg -1366da50-8416-3fcc-9830-16d79b5dd428,SESCO,II.1.1,Jujuy,AR-Y,annual,2017,gas oil combustion consumption by to the public,56.13048,TJ,CO2,74100.0,kg/TJ,4159268.568,kg -8883b98a-7dbc-3a22-812f-b0dc9e414058,SESCO,II.1.1,Jujuy,AR-Y,annual,2017,gas oil combustion consumption by to the public,56.13048,TJ,CH4,3.9,kg/TJ,218.908872,kg -8883b98a-7dbc-3a22-812f-b0dc9e414058,SESCO,II.1.1,Jujuy,AR-Y,annual,2017,gas oil combustion consumption by to the public,56.13048,TJ,N2O,3.9,kg/TJ,218.908872,kg -b91e58de-a119-3463-9a41-d376ac0c0a5a,SESCO,II.1.1,La Pampa,AR-L,annual,2017,gas oil combustion consumption by to the public,163.44299999999998,TJ,CO2,74100.0,kg/TJ,12111126.299999999,kg -81a20cf0-8635-37c0-95e5-0073649f46dc,SESCO,II.1.1,La Pampa,AR-L,annual,2017,gas oil combustion consumption by to the public,163.44299999999998,TJ,CH4,3.9,kg/TJ,637.4277,kg -81a20cf0-8635-37c0-95e5-0073649f46dc,SESCO,II.1.1,La Pampa,AR-L,annual,2017,gas oil combustion consumption by to the public,163.44299999999998,TJ,N2O,3.9,kg/TJ,637.4277,kg -f3c98d12-0a05-3383-be56-5fc3d833e8f2,SESCO,II.1.1,La Rioja,AR-F,annual,2017,gas oil combustion consumption by to the public,72.27611999999999,TJ,CO2,74100.0,kg/TJ,5355660.492,kg -67a33825-e741-3c3e-9075-d77de05ef958,SESCO,II.1.1,La Rioja,AR-F,annual,2017,gas oil combustion consumption by to the public,72.27611999999999,TJ,CH4,3.9,kg/TJ,281.87686799999994,kg -67a33825-e741-3c3e-9075-d77de05ef958,SESCO,II.1.1,La Rioja,AR-F,annual,2017,gas oil combustion consumption by to the public,72.27611999999999,TJ,N2O,3.9,kg/TJ,281.87686799999994,kg -d761831f-c377-37c0-93c5-78f275dc8ad5,SESCO,II.1.1,Mendoza,AR-M,annual,2017,gas oil combustion consumption by to the public,268.51608,TJ,CO2,74100.0,kg/TJ,19897041.528,kg -746d845c-3f98-35a3-8dfb-82f120aa3c34,SESCO,II.1.1,Mendoza,AR-M,annual,2017,gas oil combustion consumption by to the public,268.51608,TJ,CH4,3.9,kg/TJ,1047.212712,kg -746d845c-3f98-35a3-8dfb-82f120aa3c34,SESCO,II.1.1,Mendoza,AR-M,annual,2017,gas oil combustion consumption by to the public,268.51608,TJ,N2O,3.9,kg/TJ,1047.212712,kg -c047eeac-6055-3974-8028-36b46be5ffbf,SESCO,II.1.1,Misiones,AR-N,annual,2017,gas oil combustion consumption by to the public,184.57319999999999,TJ,CO2,74100.0,kg/TJ,13676874.12,kg -81296291-5e62-3956-ba78-30bf74caf805,SESCO,II.1.1,Misiones,AR-N,annual,2017,gas oil combustion consumption by to the public,184.57319999999999,TJ,CH4,3.9,kg/TJ,719.83548,kg -81296291-5e62-3956-ba78-30bf74caf805,SESCO,II.1.1,Misiones,AR-N,annual,2017,gas oil combustion consumption by to the public,184.57319999999999,TJ,N2O,3.9,kg/TJ,719.83548,kg -c51bedfa-0748-3238-bacf-39f4605e83e4,SESCO,II.1.1,Neuquén,AR-Q,annual,2017,gas oil combustion consumption by to the public,151.704,TJ,CO2,74100.0,kg/TJ,11241266.4,kg -3f63d5d1-94bc-3069-8b6a-0108558422af,SESCO,II.1.1,Neuquén,AR-Q,annual,2017,gas oil combustion consumption by to the public,151.704,TJ,CH4,3.9,kg/TJ,591.6456000000001,kg -3f63d5d1-94bc-3069-8b6a-0108558422af,SESCO,II.1.1,Neuquén,AR-Q,annual,2017,gas oil combustion consumption by to the public,151.704,TJ,N2O,3.9,kg/TJ,591.6456000000001,kg -8a667ae3-5c2f-3f3f-a205-d23c932de841,SESCO,II.1.1,Rio Negro,AR-R,annual,2017,gas oil combustion consumption by to the public,291.59676,TJ,CO2,74100.0,kg/TJ,21607319.916,kg -de047db1-584a-3b2b-bc66-d10a859ad59e,SESCO,II.1.1,Rio Negro,AR-R,annual,2017,gas oil combustion consumption by to the public,291.59676,TJ,CH4,3.9,kg/TJ,1137.227364,kg -de047db1-584a-3b2b-bc66-d10a859ad59e,SESCO,II.1.1,Rio Negro,AR-R,annual,2017,gas oil combustion consumption by to the public,291.59676,TJ,N2O,3.9,kg/TJ,1137.227364,kg -3072ec0f-d277-3692-b0bf-d8de3301af6e,SESCO,II.1.1,Salta,AR-A,annual,2017,gas oil combustion consumption by to the public,39.58752,TJ,CO2,74100.0,kg/TJ,2933435.232,kg -a49f6036-266d-30f7-b114-bd29a3a0f9a4,SESCO,II.1.1,Salta,AR-A,annual,2017,gas oil combustion consumption by to the public,39.58752,TJ,CH4,3.9,kg/TJ,154.391328,kg -a49f6036-266d-30f7-b114-bd29a3a0f9a4,SESCO,II.1.1,Salta,AR-A,annual,2017,gas oil combustion consumption by to the public,39.58752,TJ,N2O,3.9,kg/TJ,154.391328,kg -c7e262d5-9dca-35db-ab14-268982678f95,SESCO,II.1.1,San Juan,AR-J,annual,2017,gas oil combustion consumption by to the public,91.5642,TJ,CO2,74100.0,kg/TJ,6784907.22,kg -235ae2e2-160a-39fc-bd3e-b1502c8fad3b,SESCO,II.1.1,San Juan,AR-J,annual,2017,gas oil combustion consumption by to the public,91.5642,TJ,CH4,3.9,kg/TJ,357.10038,kg -235ae2e2-160a-39fc-bd3e-b1502c8fad3b,SESCO,II.1.1,San Juan,AR-J,annual,2017,gas oil combustion consumption by to the public,91.5642,TJ,N2O,3.9,kg/TJ,357.10038,kg -4a8a9c9d-934b-32cb-b8c4-973031b51205,SESCO,II.1.1,San Luis,AR-D,annual,2017,gas oil combustion consumption by to the public,175.94052,TJ,CO2,74100.0,kg/TJ,13037192.532,kg -a4c13b65-9f46-3534-b974-8fd8f067a1e9,SESCO,II.1.1,San Luis,AR-D,annual,2017,gas oil combustion consumption by to the public,175.94052,TJ,CH4,3.9,kg/TJ,686.1680279999999,kg -a4c13b65-9f46-3534-b974-8fd8f067a1e9,SESCO,II.1.1,San Luis,AR-D,annual,2017,gas oil combustion consumption by to the public,175.94052,TJ,N2O,3.9,kg/TJ,686.1680279999999,kg -0eee0a73-49bd-37cb-8ac3-e7e63a7c7aab,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2017,gas oil combustion consumption by to the public,33.0498,TJ,CO2,74100.0,kg/TJ,2448990.1799999997,kg -2b7b5d4f-551c-327b-b37c-beeafdc3b020,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2017,gas oil combustion consumption by to the public,33.0498,TJ,CH4,3.9,kg/TJ,128.89422,kg -2b7b5d4f-551c-327b-b37c-beeafdc3b020,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2017,gas oil combustion consumption by to the public,33.0498,TJ,N2O,3.9,kg/TJ,128.89422,kg -ad7850d2-e37b-33bd-950b-775f2ce1c73d,SESCO,II.1.1,Santa Fe,AR-S,annual,2017,gas oil combustion consumption by to the public,950.42556,TJ,CO2,74100.0,kg/TJ,70426533.996,kg -4edabf17-1f87-3f51-87c4-1f84f6767f05,SESCO,II.1.1,Santa Fe,AR-S,annual,2017,gas oil combustion consumption by to the public,950.42556,TJ,CH4,3.9,kg/TJ,3706.659684,kg -4edabf17-1f87-3f51-87c4-1f84f6767f05,SESCO,II.1.1,Santa Fe,AR-S,annual,2017,gas oil combustion consumption by to the public,950.42556,TJ,N2O,3.9,kg/TJ,3706.659684,kg -a3c7a112-2cfb-3763-928b-f6bf2dd12d06,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2017,gas oil combustion consumption by to the public,174.71244,TJ,CO2,74100.0,kg/TJ,12946191.804,kg -0504f3f3-3f4d-310f-9d11-a9bf6750ab9a,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2017,gas oil combustion consumption by to the public,174.71244,TJ,CH4,3.9,kg/TJ,681.3785159999999,kg -0504f3f3-3f4d-310f-9d11-a9bf6750ab9a,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2017,gas oil combustion consumption by to the public,174.71244,TJ,N2O,3.9,kg/TJ,681.3785159999999,kg -2af8075d-4e05-36a2-8c11-5fba550846d3,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2017,gas oil combustion consumption by to the public,88.92744,TJ,CO2,74100.0,kg/TJ,6589523.3040000005,kg -8107bc53-486e-3916-969f-57112d827923,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2017,gas oil combustion consumption by to the public,88.92744,TJ,CH4,3.9,kg/TJ,346.817016,kg -8107bc53-486e-3916-969f-57112d827923,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2017,gas oil combustion consumption by to the public,88.92744,TJ,N2O,3.9,kg/TJ,346.817016,kg -4e0f4bfe-ef30-3819-9fc8-2325a2f74852,SESCO,II.1.1,Tucuman,AR-T,annual,2017,gas oil combustion consumption by to the public,24.59772,TJ,CO2,74100.0,kg/TJ,1822691.052,kg -6ae331e5-08bf-37f6-a24f-2934225ce593,SESCO,II.1.1,Tucuman,AR-T,annual,2017,gas oil combustion consumption by to the public,24.59772,TJ,CH4,3.9,kg/TJ,95.931108,kg -6ae331e5-08bf-37f6-a24f-2934225ce593,SESCO,II.1.1,Tucuman,AR-T,annual,2017,gas oil combustion consumption by to the public,24.59772,TJ,N2O,3.9,kg/TJ,95.931108,kg -055fe4dc-40d7-34f6-8ed7-e0dc9318175c,SESCO,II.1.1,Buenos Aires,AR-B,annual,2017,jet kerosene combustion consumption by to the public,14.845815999999997,TJ,CO2,71500.0,kg/TJ,1061475.8439999998,kg -166126ea-0ef8-3b25-bd3e-63ca885d66cb,SESCO,II.1.1,Buenos Aires,AR-B,annual,2017,jet kerosene combustion consumption by to the public,14.845815999999997,TJ,CH4,0.5,kg/TJ,7.422907999999999,kg -0f4bbf59-e9a7-3770-a649-3aeada4abba3,SESCO,II.1.1,Buenos Aires,AR-B,annual,2017,jet kerosene combustion consumption by to the public,14.845815999999997,TJ,N2O,2.0,kg/TJ,29.691631999999995,kg -bd8f0411-b442-382e-a410-87f571b8fd02,SESCO,II.1.1,Córdoba,AR-X,annual,2017,jet kerosene combustion consumption by to the public,8.240685999999998,TJ,CO2,71500.0,kg/TJ,589209.0489999999,kg -948ad7bb-ddc8-35e7-ac99-fb4dd61b207e,SESCO,II.1.1,Córdoba,AR-X,annual,2017,jet kerosene combustion consumption by to the public,8.240685999999998,TJ,CH4,0.5,kg/TJ,4.120342999999999,kg -c44c1799-e319-3d5d-b152-3e6ff25cfa41,SESCO,II.1.1,Córdoba,AR-X,annual,2017,jet kerosene combustion consumption by to the public,8.240685999999998,TJ,N2O,2.0,kg/TJ,16.481371999999997,kg -19155f40-fa18-3029-b781-ae79feb6f86f,SESCO,II.1.1,Entre Rios,AR-E,annual,2017,jet kerosene combustion consumption by to the public,1.4153849999999997,TJ,CO2,71500.0,kg/TJ,101200.02749999998,kg -ae2c3d4d-629c-3556-9bfb-8c08cb1ec01b,SESCO,II.1.1,Entre Rios,AR-E,annual,2017,jet kerosene combustion consumption by to the public,1.4153849999999997,TJ,CH4,0.5,kg/TJ,0.7076924999999998,kg -c7e01b02-89ee-33ec-b371-438c812bdbd5,SESCO,II.1.1,Entre Rios,AR-E,annual,2017,jet kerosene combustion consumption by to the public,1.4153849999999997,TJ,N2O,2.0,kg/TJ,2.8307699999999993,kg -1573b4c9-91e7-3999-b169-c1571b8b33f8,SESCO,II.1.1,Misiones,AR-N,annual,2017,jet kerosene combustion consumption by to the public,0.34598299999999993,TJ,CO2,71500.0,kg/TJ,24737.784499999994,kg -3224d0a5-067b-3f49-90d2-b318cb7e111e,SESCO,II.1.1,Misiones,AR-N,annual,2017,jet kerosene combustion consumption by to the public,0.34598299999999993,TJ,CH4,0.5,kg/TJ,0.17299149999999996,kg -cd818895-1a0e-303d-bcae-10afe0148f12,SESCO,II.1.1,Misiones,AR-N,annual,2017,jet kerosene combustion consumption by to the public,0.34598299999999993,TJ,N2O,2.0,kg/TJ,0.6919659999999999,kg -67637d28-9263-3522-a5c7-fea55dec836b,SESCO,II.1.1,Santa Fe,AR-S,annual,2017,jet kerosene combustion consumption by to the public,6.447864999999999,TJ,CO2,71500.0,kg/TJ,461022.3475,kg -a0cbab96-5c16-3237-a9e8-42478d64ba3d,SESCO,II.1.1,Santa Fe,AR-S,annual,2017,jet kerosene combustion consumption by to the public,6.447864999999999,TJ,CH4,0.5,kg/TJ,3.2239324999999996,kg -1e320775-2db8-383a-b144-dc43695b1fd6,SESCO,II.1.1,Santa Fe,AR-S,annual,2017,jet kerosene combustion consumption by to the public,6.447864999999999,TJ,N2O,2.0,kg/TJ,12.895729999999999,kg -d49ae266-0b4a-32f4-9538-7536f1c4a2e5,SESCO,I.3.1,San Luis,AR-D,annual,2017,gas oil combustion consumption by petrochemical industries,9.10224,TJ,CO2,74100.0,kg/TJ,674475.984,kg -8bae8e99-8619-3912-8fa4-238fca906091,SESCO,I.3.1,San Luis,AR-D,annual,2017,gas oil combustion consumption by petrochemical industries,9.10224,TJ,CH4,3.9,kg/TJ,35.498736,kg -8bae8e99-8619-3912-8fa4-238fca906091,SESCO,I.3.1,San Luis,AR-D,annual,2017,gas oil combustion consumption by petrochemical industries,9.10224,TJ,N2O,3.9,kg/TJ,35.498736,kg -47cd41f8-913b-3271-808a-18b4d60238fb,SESCO,I.3.1,Capital Federal,AR-C,annual,2017,jet kerosene combustion consumption by petrochemical industries,10.316583999999999,TJ,CO2,71500.0,kg/TJ,737635.7559999999,kg -cd1bba2d-49b9-3cfa-84a3-20208a24d168,SESCO,I.3.1,Capital Federal,AR-C,annual,2017,jet kerosene combustion consumption by petrochemical industries,10.316583999999999,TJ,CH4,0.5,kg/TJ,5.158291999999999,kg -fc638cd1-64d1-3a73-8f33-e38ad4b99c5a,SESCO,I.3.1,Capital Federal,AR-C,annual,2017,jet kerosene combustion consumption by petrochemical industries,10.316583999999999,TJ,N2O,2.0,kg/TJ,20.633167999999998,kg -9703aee7-df0f-3e92-bbc0-83755b25feeb,SESCO,II.2.1,Buenos Aires,AR-B,annual,2017,gas oil combustion consumption by railway transport,100.55808,TJ,CO2,74100.0,kg/TJ,7451353.728,kg -48db8878-61ca-3b17-a2bc-6fd4b7351f93,SESCO,II.2.1,Buenos Aires,AR-B,annual,2017,gas oil combustion consumption by railway transport,100.55808,TJ,CH4,3.9,kg/TJ,392.176512,kg -48db8878-61ca-3b17-a2bc-6fd4b7351f93,SESCO,II.2.1,Buenos Aires,AR-B,annual,2017,gas oil combustion consumption by railway transport,100.55808,TJ,N2O,3.9,kg/TJ,392.176512,kg -9b68bde2-62d2-388c-927d-db27e6ab1de1,SESCO,II.2.1,Capital Federal,AR-C,annual,2017,gas oil combustion consumption by railway transport,3.612,TJ,CO2,74100.0,kg/TJ,267649.2,kg -4f69dcc6-2b6d-3fb3-a15f-b0784de78c3b,SESCO,II.2.1,Capital Federal,AR-C,annual,2017,gas oil combustion consumption by railway transport,3.612,TJ,CH4,3.9,kg/TJ,14.0868,kg -4f69dcc6-2b6d-3fb3-a15f-b0784de78c3b,SESCO,II.2.1,Capital Federal,AR-C,annual,2017,gas oil combustion consumption by railway transport,3.612,TJ,N2O,3.9,kg/TJ,14.0868,kg -e8842bd7-fd68-3480-9409-800d875ebc26,SESCO,II.2.1,La Pampa,AR-L,annual,2017,gas oil combustion consumption by railway transport,18.02388,TJ,CO2,74100.0,kg/TJ,1335569.508,kg -50aa376a-4a89-355c-b775-eb1d90731d21,SESCO,II.2.1,La Pampa,AR-L,annual,2017,gas oil combustion consumption by railway transport,18.02388,TJ,CH4,3.9,kg/TJ,70.29313199999999,kg -50aa376a-4a89-355c-b775-eb1d90731d21,SESCO,II.2.1,La Pampa,AR-L,annual,2017,gas oil combustion consumption by railway transport,18.02388,TJ,N2O,3.9,kg/TJ,70.29313199999999,kg -6f3718a1-5f96-3aa9-b7f5-cf3968097e64,SESCO,II.2.1,Santa Fe,AR-S,annual,2017,gas oil combustion consumption by railway transport,193.35036,TJ,CO2,74100.0,kg/TJ,14327261.675999999,kg -5c178d28-189f-32bc-b599-74f2c22202f8,SESCO,II.2.1,Santa Fe,AR-S,annual,2017,gas oil combustion consumption by railway transport,193.35036,TJ,CH4,3.9,kg/TJ,754.0664039999999,kg -5c178d28-189f-32bc-b599-74f2c22202f8,SESCO,II.2.1,Santa Fe,AR-S,annual,2017,gas oil combustion consumption by railway transport,193.35036,TJ,N2O,3.9,kg/TJ,754.0664039999999,kg -ca577714-2050-3456-a66b-5085d99edd97,SESCO,II.2.1,Santiago del Estero,AR-G,annual,2017,gas oil combustion consumption by railway transport,27.30672,TJ,CO2,74100.0,kg/TJ,2023427.9519999998,kg -4a8fa62d-8ea1-3882-aee6-7019a6d51918,SESCO,II.2.1,Santiago del Estero,AR-G,annual,2017,gas oil combustion consumption by railway transport,27.30672,TJ,CH4,3.9,kg/TJ,106.496208,kg -4a8fa62d-8ea1-3882-aee6-7019a6d51918,SESCO,II.2.1,Santiago del Estero,AR-G,annual,2017,gas oil combustion consumption by railway transport,27.30672,TJ,N2O,3.9,kg/TJ,106.496208,kg -1cc5eedf-3bc6-37f9-98e2-f7cdfd470bb0,SESCO,II.2.1,Tucuman,AR-T,annual,2017,gas oil combustion consumption by railway transport,6.42936,TJ,CO2,74100.0,kg/TJ,476415.576,kg -fb86a85a-b72f-3184-baad-11f135b43552,SESCO,II.2.1,Tucuman,AR-T,annual,2017,gas oil combustion consumption by railway transport,6.42936,TJ,CH4,3.9,kg/TJ,25.074504,kg -fb86a85a-b72f-3184-baad-11f135b43552,SESCO,II.2.1,Tucuman,AR-T,annual,2017,gas oil combustion consumption by railway transport,6.42936,TJ,N2O,3.9,kg/TJ,25.074504,kg -03cef51b-c1b3-3fcf-916a-3ee8939fc9eb,SESCO,II.1.1,Buenos Aires,AR-B,annual,2017,gas oil combustion consumption by freight transport,2351.5926,TJ,CO2,74100.0,kg/TJ,174253011.66,kg -243e14df-5d28-349b-a26f-5de45eb98cd6,SESCO,II.1.1,Buenos Aires,AR-B,annual,2017,gas oil combustion consumption by freight transport,2351.5926,TJ,CH4,3.9,kg/TJ,9171.21114,kg -243e14df-5d28-349b-a26f-5de45eb98cd6,SESCO,II.1.1,Buenos Aires,AR-B,annual,2017,gas oil combustion consumption by freight transport,2351.5926,TJ,N2O,3.9,kg/TJ,9171.21114,kg -aefa53cd-e65c-3230-80ec-22a8829847d0,SESCO,II.1.1,Capital Federal,AR-C,annual,2017,gas oil combustion consumption by freight transport,261.25596,TJ,CO2,74100.0,kg/TJ,19359066.636,kg -b4bf2dbd-114b-3337-addd-535c3bc5737f,SESCO,II.1.1,Capital Federal,AR-C,annual,2017,gas oil combustion consumption by freight transport,261.25596,TJ,CH4,3.9,kg/TJ,1018.8982440000001,kg -b4bf2dbd-114b-3337-addd-535c3bc5737f,SESCO,II.1.1,Capital Federal,AR-C,annual,2017,gas oil combustion consumption by freight transport,261.25596,TJ,N2O,3.9,kg/TJ,1018.8982440000001,kg -65f29ba7-cc68-3a33-843c-e44b7eba3da4,SESCO,II.1.1,Catamarca,AR-K,annual,2017,gas oil combustion consumption by freight transport,36.697919999999996,TJ,CO2,74100.0,kg/TJ,2719315.8719999995,kg -92de4f81-bba9-3b6d-b345-064c55496d88,SESCO,II.1.1,Catamarca,AR-K,annual,2017,gas oil combustion consumption by freight transport,36.697919999999996,TJ,CH4,3.9,kg/TJ,143.12188799999998,kg -92de4f81-bba9-3b6d-b345-064c55496d88,SESCO,II.1.1,Catamarca,AR-K,annual,2017,gas oil combustion consumption by freight transport,36.697919999999996,TJ,N2O,3.9,kg/TJ,143.12188799999998,kg -aae168ea-695b-38b0-8e2a-0299c28731d5,SESCO,II.1.1,Chaco,AR-H,annual,2017,gas oil combustion consumption by freight transport,53.85492,TJ,CO2,74100.0,kg/TJ,3990649.572,kg -a97834cc-d3dc-39a7-9e71-95881420b732,SESCO,II.1.1,Chaco,AR-H,annual,2017,gas oil combustion consumption by freight transport,53.85492,TJ,CH4,3.9,kg/TJ,210.034188,kg -a97834cc-d3dc-39a7-9e71-95881420b732,SESCO,II.1.1,Chaco,AR-H,annual,2017,gas oil combustion consumption by freight transport,53.85492,TJ,N2O,3.9,kg/TJ,210.034188,kg -70f71f60-ae08-3271-8677-1fc067412b30,SESCO,II.1.1,Chubut,AR-U,annual,2017,gas oil combustion consumption by freight transport,20.87736,TJ,CO2,74100.0,kg/TJ,1547012.376,kg -6f6f6d49-978f-3d62-a723-b9ef9e3cbaef,SESCO,II.1.1,Chubut,AR-U,annual,2017,gas oil combustion consumption by freight transport,20.87736,TJ,CH4,3.9,kg/TJ,81.42170399999999,kg -6f6f6d49-978f-3d62-a723-b9ef9e3cbaef,SESCO,II.1.1,Chubut,AR-U,annual,2017,gas oil combustion consumption by freight transport,20.87736,TJ,N2O,3.9,kg/TJ,81.42170399999999,kg -2f50d9b3-7d34-3be3-b706-bb364272abcd,SESCO,II.1.1,Corrientes,AR-W,annual,2017,gas oil combustion consumption by freight transport,64.43808,TJ,CO2,74100.0,kg/TJ,4774861.728,kg -e0260274-9b3f-344b-8a4b-7ec9eb7e10ae,SESCO,II.1.1,Corrientes,AR-W,annual,2017,gas oil combustion consumption by freight transport,64.43808,TJ,CH4,3.9,kg/TJ,251.30851199999998,kg -e0260274-9b3f-344b-8a4b-7ec9eb7e10ae,SESCO,II.1.1,Corrientes,AR-W,annual,2017,gas oil combustion consumption by freight transport,64.43808,TJ,N2O,3.9,kg/TJ,251.30851199999998,kg -4261a267-70c6-3ce2-8947-20b870713dc7,SESCO,II.1.1,Córdoba,AR-X,annual,2017,gas oil combustion consumption by freight transport,645.2838,TJ,CO2,74100.0,kg/TJ,47815529.580000006,kg -f7968b8a-3c11-35ee-ba5d-5120101ed50f,SESCO,II.1.1,Córdoba,AR-X,annual,2017,gas oil combustion consumption by freight transport,645.2838,TJ,CH4,3.9,kg/TJ,2516.60682,kg -f7968b8a-3c11-35ee-ba5d-5120101ed50f,SESCO,II.1.1,Córdoba,AR-X,annual,2017,gas oil combustion consumption by freight transport,645.2838,TJ,N2O,3.9,kg/TJ,2516.60682,kg -6fdf9f9e-b1de-326e-8ab9-b4466c54b329,SESCO,II.1.1,Entre Rios,AR-E,annual,2017,gas oil combustion consumption by freight transport,214.08324,TJ,CO2,74100.0,kg/TJ,15863568.083999999,kg -9d29bdc1-d03f-3a78-b098-9a68e199169b,SESCO,II.1.1,Entre Rios,AR-E,annual,2017,gas oil combustion consumption by freight transport,214.08324,TJ,CH4,3.9,kg/TJ,834.924636,kg -9d29bdc1-d03f-3a78-b098-9a68e199169b,SESCO,II.1.1,Entre Rios,AR-E,annual,2017,gas oil combustion consumption by freight transport,214.08324,TJ,N2O,3.9,kg/TJ,834.924636,kg -e6ac4cb8-bce5-3a14-8a2d-cf992ff9c5cf,SESCO,II.1.1,Formosa,AR-P,annual,2017,gas oil combustion consumption by freight transport,4.6956,TJ,CO2,74100.0,kg/TJ,347943.95999999996,kg -4f116e71-bacc-3c40-8355-5f18c3a91679,SESCO,II.1.1,Formosa,AR-P,annual,2017,gas oil combustion consumption by freight transport,4.6956,TJ,CH4,3.9,kg/TJ,18.312839999999998,kg -4f116e71-bacc-3c40-8355-5f18c3a91679,SESCO,II.1.1,Formosa,AR-P,annual,2017,gas oil combustion consumption by freight transport,4.6956,TJ,N2O,3.9,kg/TJ,18.312839999999998,kg -c4182bd5-c49c-30bc-b943-4b0d788ec553,SESCO,II.1.1,Jujuy,AR-Y,annual,2017,gas oil combustion consumption by freight transport,2.81736,TJ,CO2,74100.0,kg/TJ,208766.376,kg -c8e4aaaa-079c-3abd-8ca7-ce934eacf3ca,SESCO,II.1.1,Jujuy,AR-Y,annual,2017,gas oil combustion consumption by freight transport,2.81736,TJ,CH4,3.9,kg/TJ,10.987703999999999,kg -c8e4aaaa-079c-3abd-8ca7-ce934eacf3ca,SESCO,II.1.1,Jujuy,AR-Y,annual,2017,gas oil combustion consumption by freight transport,2.81736,TJ,N2O,3.9,kg/TJ,10.987703999999999,kg -bfb8cbed-ab72-31e5-98ef-3d66e39efa2a,SESCO,II.1.1,La Pampa,AR-L,annual,2017,gas oil combustion consumption by freight transport,10.4748,TJ,CO2,74100.0,kg/TJ,776182.68,kg -2aa2ff6c-a620-3d69-9328-fd1cc3fee167,SESCO,II.1.1,La Pampa,AR-L,annual,2017,gas oil combustion consumption by freight transport,10.4748,TJ,CH4,3.9,kg/TJ,40.85172,kg -2aa2ff6c-a620-3d69-9328-fd1cc3fee167,SESCO,II.1.1,La Pampa,AR-L,annual,2017,gas oil combustion consumption by freight transport,10.4748,TJ,N2O,3.9,kg/TJ,40.85172,kg -ad4ffb32-4d51-3bf6-a193-b56cad287803,SESCO,II.1.1,La Rioja,AR-F,annual,2017,gas oil combustion consumption by freight transport,4.04544,TJ,CO2,74100.0,kg/TJ,299767.104,kg -f07b412b-1708-3532-b51d-b5c12e689636,SESCO,II.1.1,La Rioja,AR-F,annual,2017,gas oil combustion consumption by freight transport,4.04544,TJ,CH4,3.9,kg/TJ,15.777216000000001,kg -f07b412b-1708-3532-b51d-b5c12e689636,SESCO,II.1.1,La Rioja,AR-F,annual,2017,gas oil combustion consumption by freight transport,4.04544,TJ,N2O,3.9,kg/TJ,15.777216000000001,kg -170e178a-c1e8-331b-8fcb-c7d173161fc7,SESCO,II.1.1,Mendoza,AR-M,annual,2017,gas oil combustion consumption by freight transport,48.4008,TJ,CO2,74100.0,kg/TJ,3586499.28,kg -f44fb8b0-aac8-30f8-aca3-a7371ba676df,SESCO,II.1.1,Mendoza,AR-M,annual,2017,gas oil combustion consumption by freight transport,48.4008,TJ,CH4,3.9,kg/TJ,188.76312,kg -f44fb8b0-aac8-30f8-aca3-a7371ba676df,SESCO,II.1.1,Mendoza,AR-M,annual,2017,gas oil combustion consumption by freight transport,48.4008,TJ,N2O,3.9,kg/TJ,188.76312,kg -082d578c-30ef-34e8-bd13-158489d4ce05,SESCO,II.1.1,Misiones,AR-N,annual,2017,gas oil combustion consumption by freight transport,56.13048,TJ,CO2,74100.0,kg/TJ,4159268.568,kg -0ae57fd6-a2d7-3691-aa6a-10662642a453,SESCO,II.1.1,Misiones,AR-N,annual,2017,gas oil combustion consumption by freight transport,56.13048,TJ,CH4,3.9,kg/TJ,218.908872,kg -0ae57fd6-a2d7-3691-aa6a-10662642a453,SESCO,II.1.1,Misiones,AR-N,annual,2017,gas oil combustion consumption by freight transport,56.13048,TJ,N2O,3.9,kg/TJ,218.908872,kg -c9168f0b-0249-3c48-905d-65bcb3cf68b8,SESCO,II.1.1,Neuquén,AR-Q,annual,2017,gas oil combustion consumption by freight transport,0.7223999999999999,TJ,CO2,74100.0,kg/TJ,53529.84,kg -1a7f15fd-0936-3977-84c6-d083887424bd,SESCO,II.1.1,Neuquén,AR-Q,annual,2017,gas oil combustion consumption by freight transport,0.7223999999999999,TJ,CH4,3.9,kg/TJ,2.81736,kg -1a7f15fd-0936-3977-84c6-d083887424bd,SESCO,II.1.1,Neuquén,AR-Q,annual,2017,gas oil combustion consumption by freight transport,0.7223999999999999,TJ,N2O,3.9,kg/TJ,2.81736,kg -eacefd7b-8bd6-3834-9cb8-e4cb3103f2fc,SESCO,II.1.1,Rio Negro,AR-R,annual,2017,gas oil combustion consumption by freight transport,103.15872,TJ,CO2,74100.0,kg/TJ,7644061.152,kg -3a2404c0-1f3e-31b0-9683-3f393e6ebd08,SESCO,II.1.1,Rio Negro,AR-R,annual,2017,gas oil combustion consumption by freight transport,103.15872,TJ,CH4,3.9,kg/TJ,402.319008,kg -3a2404c0-1f3e-31b0-9683-3f393e6ebd08,SESCO,II.1.1,Rio Negro,AR-R,annual,2017,gas oil combustion consumption by freight transport,103.15872,TJ,N2O,3.9,kg/TJ,402.319008,kg -1998518f-ffb1-3077-b31f-91b1a141dc11,SESCO,II.1.1,Salta,AR-A,annual,2017,gas oil combustion consumption by freight transport,30.37692,TJ,CO2,74100.0,kg/TJ,2250929.772,kg -9e84bf17-6acf-3498-8227-3f8f37ad03e3,SESCO,II.1.1,Salta,AR-A,annual,2017,gas oil combustion consumption by freight transport,30.37692,TJ,CH4,3.9,kg/TJ,118.46998799999999,kg -9e84bf17-6acf-3498-8227-3f8f37ad03e3,SESCO,II.1.1,Salta,AR-A,annual,2017,gas oil combustion consumption by freight transport,30.37692,TJ,N2O,3.9,kg/TJ,118.46998799999999,kg -4fd54572-4848-39f0-ba16-8f81727f444e,SESCO,II.1.1,San Juan,AR-J,annual,2017,gas oil combustion consumption by freight transport,9.60792,TJ,CO2,74100.0,kg/TJ,711946.872,kg -c23e2d65-eeeb-3199-a355-602f9b98b4a5,SESCO,II.1.1,San Juan,AR-J,annual,2017,gas oil combustion consumption by freight transport,9.60792,TJ,CH4,3.9,kg/TJ,37.470888,kg -c23e2d65-eeeb-3199-a355-602f9b98b4a5,SESCO,II.1.1,San Juan,AR-J,annual,2017,gas oil combustion consumption by freight transport,9.60792,TJ,N2O,3.9,kg/TJ,37.470888,kg -7df4ae95-92f0-3110-b06c-cd5a2dd09f03,SESCO,II.1.1,San Luis,AR-D,annual,2017,gas oil combustion consumption by freight transport,68.55575999999999,TJ,CO2,74100.0,kg/TJ,5079981.816,kg -efb4124d-7341-344d-91ec-71298259c4b4,SESCO,II.1.1,San Luis,AR-D,annual,2017,gas oil combustion consumption by freight transport,68.55575999999999,TJ,CH4,3.9,kg/TJ,267.367464,kg -efb4124d-7341-344d-91ec-71298259c4b4,SESCO,II.1.1,San Luis,AR-D,annual,2017,gas oil combustion consumption by freight transport,68.55575999999999,TJ,N2O,3.9,kg/TJ,267.367464,kg -5c5b12b3-52b2-385f-8277-2682846e2a0c,SESCO,II.1.1,Santa Fe,AR-S,annual,2017,gas oil combustion consumption by freight transport,528.7968,TJ,CO2,74100.0,kg/TJ,39183842.879999995,kg -28b190f1-8582-39a1-b64b-afbcc2544889,SESCO,II.1.1,Santa Fe,AR-S,annual,2017,gas oil combustion consumption by freight transport,528.7968,TJ,CH4,3.9,kg/TJ,2062.30752,kg -28b190f1-8582-39a1-b64b-afbcc2544889,SESCO,II.1.1,Santa Fe,AR-S,annual,2017,gas oil combustion consumption by freight transport,528.7968,TJ,N2O,3.9,kg/TJ,2062.30752,kg -a78a0103-9113-3def-a9eb-6d12ea0dfdae,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2017,gas oil combustion consumption by freight transport,40.74336,TJ,CO2,74100.0,kg/TJ,3019082.9760000003,kg -285a4151-c971-3e25-86fa-7344b62852e3,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2017,gas oil combustion consumption by freight transport,40.74336,TJ,CH4,3.9,kg/TJ,158.899104,kg -285a4151-c971-3e25-86fa-7344b62852e3,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2017,gas oil combustion consumption by freight transport,40.74336,TJ,N2O,3.9,kg/TJ,158.899104,kg -fe1f3a2b-9666-325c-9149-5490eb4d886e,SESCO,II.1.1,Tucuman,AR-T,annual,2017,gas oil combustion consumption by freight transport,75.02123999999999,TJ,CO2,74100.0,kg/TJ,5559073.884,kg -c8c3ed77-74e5-3637-8104-fd6a970b48c3,SESCO,II.1.1,Tucuman,AR-T,annual,2017,gas oil combustion consumption by freight transport,75.02123999999999,TJ,CH4,3.9,kg/TJ,292.582836,kg -c8c3ed77-74e5-3637-8104-fd6a970b48c3,SESCO,II.1.1,Tucuman,AR-T,annual,2017,gas oil combustion consumption by freight transport,75.02123999999999,TJ,N2O,3.9,kg/TJ,292.582836,kg -1360a410-a100-3ed8-8110-1b2f3afbf308,SESCO,II.1.1,Buenos Aires,AR-B,annual,2017,gas oil combustion consumption by freight transport,126.99792,TJ,CO2,74100.0,kg/TJ,9410545.872,kg -2ac9c102-4307-3b52-813e-23402e35bf26,SESCO,II.1.1,Buenos Aires,AR-B,annual,2017,gas oil combustion consumption by freight transport,126.99792,TJ,CH4,3.9,kg/TJ,495.291888,kg -2ac9c102-4307-3b52-813e-23402e35bf26,SESCO,II.1.1,Buenos Aires,AR-B,annual,2017,gas oil combustion consumption by freight transport,126.99792,TJ,N2O,3.9,kg/TJ,495.291888,kg -5e05e94b-fe38-318a-bf6f-17dee6a2f62d,SESCO,II.1.1,Capital Federal,AR-C,annual,2017,gas oil combustion consumption by freight transport,14.19516,TJ,CO2,74100.0,kg/TJ,1051861.356,kg -36a028ca-244d-3f71-b503-41e20409539d,SESCO,II.1.1,Capital Federal,AR-C,annual,2017,gas oil combustion consumption by freight transport,14.19516,TJ,CH4,3.9,kg/TJ,55.361124,kg -36a028ca-244d-3f71-b503-41e20409539d,SESCO,II.1.1,Capital Federal,AR-C,annual,2017,gas oil combustion consumption by freight transport,14.19516,TJ,N2O,3.9,kg/TJ,55.361124,kg -2f879b47-794a-321e-b940-24683e313bc5,SESCO,II.1.1,Catamarca,AR-K,annual,2017,gas oil combustion consumption by freight transport,0.50568,TJ,CO2,74100.0,kg/TJ,37470.888,kg -61a92087-6b0a-3461-8ed7-a1498db89eae,SESCO,II.1.1,Catamarca,AR-K,annual,2017,gas oil combustion consumption by freight transport,0.50568,TJ,CH4,3.9,kg/TJ,1.9721520000000001,kg -61a92087-6b0a-3461-8ed7-a1498db89eae,SESCO,II.1.1,Catamarca,AR-K,annual,2017,gas oil combustion consumption by freight transport,0.50568,TJ,N2O,3.9,kg/TJ,1.9721520000000001,kg -3a9b65fc-7bb9-3a83-a236-8b2db5ef8b7e,SESCO,II.1.1,Chaco,AR-H,annual,2017,gas oil combustion consumption by freight transport,1.87824,TJ,CO2,74100.0,kg/TJ,139177.584,kg -34d11f8f-26a9-3a2d-b3b8-c80bc5e79ca9,SESCO,II.1.1,Chaco,AR-H,annual,2017,gas oil combustion consumption by freight transport,1.87824,TJ,CH4,3.9,kg/TJ,7.325136,kg -34d11f8f-26a9-3a2d-b3b8-c80bc5e79ca9,SESCO,II.1.1,Chaco,AR-H,annual,2017,gas oil combustion consumption by freight transport,1.87824,TJ,N2O,3.9,kg/TJ,7.325136,kg -cd6a502c-7fc7-3752-b56f-f4f753d0a48b,SESCO,II.1.1,Chubut,AR-U,annual,2017,gas oil combustion consumption by freight transport,7.4046,TJ,CO2,74100.0,kg/TJ,548680.86,kg -10c23aa7-6651-3606-aedc-919ba611cab5,SESCO,II.1.1,Chubut,AR-U,annual,2017,gas oil combustion consumption by freight transport,7.4046,TJ,CH4,3.9,kg/TJ,28.87794,kg -10c23aa7-6651-3606-aedc-919ba611cab5,SESCO,II.1.1,Chubut,AR-U,annual,2017,gas oil combustion consumption by freight transport,7.4046,TJ,N2O,3.9,kg/TJ,28.87794,kg -a6aa5e55-c3ac-37cb-b9ba-3b60a0a25964,SESCO,II.1.1,Corrientes,AR-W,annual,2017,gas oil combustion consumption by freight transport,4.37052,TJ,CO2,74100.0,kg/TJ,323855.532,kg -21e36700-5eb5-325d-99d4-ead79f8f367e,SESCO,II.1.1,Corrientes,AR-W,annual,2017,gas oil combustion consumption by freight transport,4.37052,TJ,CH4,3.9,kg/TJ,17.045028,kg -21e36700-5eb5-325d-99d4-ead79f8f367e,SESCO,II.1.1,Corrientes,AR-W,annual,2017,gas oil combustion consumption by freight transport,4.37052,TJ,N2O,3.9,kg/TJ,17.045028,kg -ffc89d39-eda1-3488-a595-b2918fec7610,SESCO,II.1.1,Córdoba,AR-X,annual,2017,gas oil combustion consumption by freight transport,21.34692,TJ,CO2,74100.0,kg/TJ,1581806.772,kg -bf2ff250-aec8-3f01-83d0-41fb51f28e71,SESCO,II.1.1,Córdoba,AR-X,annual,2017,gas oil combustion consumption by freight transport,21.34692,TJ,CH4,3.9,kg/TJ,83.252988,kg -bf2ff250-aec8-3f01-83d0-41fb51f28e71,SESCO,II.1.1,Córdoba,AR-X,annual,2017,gas oil combustion consumption by freight transport,21.34692,TJ,N2O,3.9,kg/TJ,83.252988,kg -a405c6d1-b6f1-3efb-8b9a-d4c6836ca817,SESCO,II.1.1,Entre Rios,AR-E,annual,2017,gas oil combustion consumption by freight transport,10.6554,TJ,CO2,74100.0,kg/TJ,789565.14,kg -c2b8daef-1be2-3472-8808-75fe2f176ac4,SESCO,II.1.1,Entre Rios,AR-E,annual,2017,gas oil combustion consumption by freight transport,10.6554,TJ,CH4,3.9,kg/TJ,41.55606,kg -c2b8daef-1be2-3472-8808-75fe2f176ac4,SESCO,II.1.1,Entre Rios,AR-E,annual,2017,gas oil combustion consumption by freight transport,10.6554,TJ,N2O,3.9,kg/TJ,41.55606,kg -3266a5f0-7e94-35e3-a244-85b6bdee65bf,SESCO,II.1.1,Formosa,AR-P,annual,2017,gas oil combustion consumption by freight transport,0.14448,TJ,CO2,74100.0,kg/TJ,10705.967999999999,kg -b850ec85-6d63-361b-a71b-bd582ee6fb00,SESCO,II.1.1,Formosa,AR-P,annual,2017,gas oil combustion consumption by freight transport,0.14448,TJ,CH4,3.9,kg/TJ,0.563472,kg -b850ec85-6d63-361b-a71b-bd582ee6fb00,SESCO,II.1.1,Formosa,AR-P,annual,2017,gas oil combustion consumption by freight transport,0.14448,TJ,N2O,3.9,kg/TJ,0.563472,kg -8bea11b5-260a-31e0-9b47-d09d467faf65,SESCO,II.1.1,La Pampa,AR-L,annual,2017,gas oil combustion consumption by freight transport,0.5418,TJ,CO2,74100.0,kg/TJ,40147.38,kg -333d2d89-a037-3c59-9930-cb4c6875fb58,SESCO,II.1.1,La Pampa,AR-L,annual,2017,gas oil combustion consumption by freight transport,0.5418,TJ,CH4,3.9,kg/TJ,2.1130199999999997,kg -333d2d89-a037-3c59-9930-cb4c6875fb58,SESCO,II.1.1,La Pampa,AR-L,annual,2017,gas oil combustion consumption by freight transport,0.5418,TJ,N2O,3.9,kg/TJ,2.1130199999999997,kg -0f9fc0a2-18fb-3576-a802-5a2d657ce0e3,SESCO,II.1.1,La Rioja,AR-F,annual,2017,gas oil combustion consumption by freight transport,0.14448,TJ,CO2,74100.0,kg/TJ,10705.967999999999,kg -2624729b-8f4c-3a70-b11b-f9b1e0be4e4f,SESCO,II.1.1,La Rioja,AR-F,annual,2017,gas oil combustion consumption by freight transport,0.14448,TJ,CH4,3.9,kg/TJ,0.563472,kg -2624729b-8f4c-3a70-b11b-f9b1e0be4e4f,SESCO,II.1.1,La Rioja,AR-F,annual,2017,gas oil combustion consumption by freight transport,0.14448,TJ,N2O,3.9,kg/TJ,0.563472,kg -596be2ac-a9b6-3333-8828-17dfc6c376d9,SESCO,II.1.1,Mendoza,AR-M,annual,2017,gas oil combustion consumption by freight transport,0.7223999999999999,TJ,CO2,74100.0,kg/TJ,53529.84,kg -1bbdd795-933b-3bb8-bf13-80aa435a5d13,SESCO,II.1.1,Mendoza,AR-M,annual,2017,gas oil combustion consumption by freight transport,0.7223999999999999,TJ,CH4,3.9,kg/TJ,2.81736,kg -1bbdd795-933b-3bb8-bf13-80aa435a5d13,SESCO,II.1.1,Mendoza,AR-M,annual,2017,gas oil combustion consumption by freight transport,0.7223999999999999,TJ,N2O,3.9,kg/TJ,2.81736,kg -27c84913-bf89-30d4-bba2-9044bda805d2,SESCO,II.1.1,Misiones,AR-N,annual,2017,gas oil combustion consumption by freight transport,1.76988,TJ,CO2,74100.0,kg/TJ,131148.10799999998,kg -9422ae97-c7b7-3b83-8301-5d8a9d37099b,SESCO,II.1.1,Misiones,AR-N,annual,2017,gas oil combustion consumption by freight transport,1.76988,TJ,CH4,3.9,kg/TJ,6.902531999999999,kg -9422ae97-c7b7-3b83-8301-5d8a9d37099b,SESCO,II.1.1,Misiones,AR-N,annual,2017,gas oil combustion consumption by freight transport,1.76988,TJ,N2O,3.9,kg/TJ,6.902531999999999,kg -76a94174-8b9b-3c8e-926d-e0823931a1b1,SESCO,II.1.1,Rio Negro,AR-R,annual,2017,gas oil combustion consumption by freight transport,24.95892,TJ,CO2,74100.0,kg/TJ,1849455.9719999998,kg -e84894c9-8d6d-3a6c-99e0-530744ada256,SESCO,II.1.1,Rio Negro,AR-R,annual,2017,gas oil combustion consumption by freight transport,24.95892,TJ,CH4,3.9,kg/TJ,97.339788,kg -e84894c9-8d6d-3a6c-99e0-530744ada256,SESCO,II.1.1,Rio Negro,AR-R,annual,2017,gas oil combustion consumption by freight transport,24.95892,TJ,N2O,3.9,kg/TJ,97.339788,kg -249c2a77-8015-3ed5-8095-15cf3216736e,SESCO,II.1.1,San Juan,AR-J,annual,2017,gas oil combustion consumption by freight transport,0.903,TJ,CO2,74100.0,kg/TJ,66912.3,kg -4c4a956a-814e-3144-b0e5-a879091cec95,SESCO,II.1.1,San Juan,AR-J,annual,2017,gas oil combustion consumption by freight transport,0.903,TJ,CH4,3.9,kg/TJ,3.5217,kg -4c4a956a-814e-3144-b0e5-a879091cec95,SESCO,II.1.1,San Juan,AR-J,annual,2017,gas oil combustion consumption by freight transport,0.903,TJ,N2O,3.9,kg/TJ,3.5217,kg -f6474bb7-9794-3b57-b123-bb6f981bea5a,SESCO,II.1.1,San Luis,AR-D,annual,2017,gas oil combustion consumption by freight transport,2.27556,TJ,CO2,74100.0,kg/TJ,168618.996,kg -3d0225f9-fc33-372b-abb4-c9e9b6a2fe08,SESCO,II.1.1,San Luis,AR-D,annual,2017,gas oil combustion consumption by freight transport,2.27556,TJ,CH4,3.9,kg/TJ,8.874684,kg -3d0225f9-fc33-372b-abb4-c9e9b6a2fe08,SESCO,II.1.1,San Luis,AR-D,annual,2017,gas oil combustion consumption by freight transport,2.27556,TJ,N2O,3.9,kg/TJ,8.874684,kg -3a6b22a1-d066-3fee-8de5-6c6dfb8b93a2,SESCO,II.1.1,Santa Fe,AR-S,annual,2017,gas oil combustion consumption by freight transport,72.52896,TJ,CO2,74100.0,kg/TJ,5374395.936,kg -d6146a43-e5e8-36c4-8f6b-19e3e4d1f75a,SESCO,II.1.1,Santa Fe,AR-S,annual,2017,gas oil combustion consumption by freight transport,72.52896,TJ,CH4,3.9,kg/TJ,282.86294399999997,kg -d6146a43-e5e8-36c4-8f6b-19e3e4d1f75a,SESCO,II.1.1,Santa Fe,AR-S,annual,2017,gas oil combustion consumption by freight transport,72.52896,TJ,N2O,3.9,kg/TJ,282.86294399999997,kg -382753e5-8459-3aa5-90fa-0b0ffff7972a,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2017,gas oil combustion consumption by freight transport,2.67288,TJ,CO2,74100.0,kg/TJ,198060.40800000002,kg -10d130c0-d208-3c46-a4aa-90a9f39f6daf,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2017,gas oil combustion consumption by freight transport,2.67288,TJ,CH4,3.9,kg/TJ,10.424232,kg -10d130c0-d208-3c46-a4aa-90a9f39f6daf,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2017,gas oil combustion consumption by freight transport,2.67288,TJ,N2O,3.9,kg/TJ,10.424232,kg -c021b19e-a9f5-3ab7-8709-f4a98c171122,SESCO,II.1.1,Tucuman,AR-T,annual,2017,gas oil combustion consumption by freight transport,0.68628,TJ,CO2,74100.0,kg/TJ,50853.348,kg -ef12b4a6-156e-3826-9bc9-a9db162e2d38,SESCO,II.1.1,Tucuman,AR-T,annual,2017,gas oil combustion consumption by freight transport,0.68628,TJ,CH4,3.9,kg/TJ,2.676492,kg -ef12b4a6-156e-3826-9bc9-a9db162e2d38,SESCO,II.1.1,Tucuman,AR-T,annual,2017,gas oil combustion consumption by freight transport,0.68628,TJ,N2O,3.9,kg/TJ,2.676492,kg -a0262c9d-49cf-3f8e-b692-c32d800535b4,SESCO,II.1.1,Buenos Aires,AR-B,annual,2017,gas oil combustion consumption by public passenger transport,635.27856,TJ,CO2,74100.0,kg/TJ,47074141.296,kg -b3abcaaf-b15c-373e-979f-e2d737dd8c30,SESCO,II.1.1,Buenos Aires,AR-B,annual,2017,gas oil combustion consumption by public passenger transport,635.27856,TJ,CH4,3.9,kg/TJ,2477.5863839999997,kg -b3abcaaf-b15c-373e-979f-e2d737dd8c30,SESCO,II.1.1,Buenos Aires,AR-B,annual,2017,gas oil combustion consumption by public passenger transport,635.27856,TJ,N2O,3.9,kg/TJ,2477.5863839999997,kg -30617ab5-4a64-3381-855a-4fc553a9463e,SESCO,II.1.1,Capital Federal,AR-C,annual,2017,gas oil combustion consumption by public passenger transport,945.94668,TJ,CO2,74100.0,kg/TJ,70094648.988,kg -d0f119b5-ea08-3ef1-83d7-0fdd21343f42,SESCO,II.1.1,Capital Federal,AR-C,annual,2017,gas oil combustion consumption by public passenger transport,945.94668,TJ,CH4,3.9,kg/TJ,3689.192052,kg -d0f119b5-ea08-3ef1-83d7-0fdd21343f42,SESCO,II.1.1,Capital Federal,AR-C,annual,2017,gas oil combustion consumption by public passenger transport,945.94668,TJ,N2O,3.9,kg/TJ,3689.192052,kg -9e6bb34e-b818-3b6a-8c14-d80f8d52bdc5,SESCO,II.1.1,Catamarca,AR-K,annual,2017,gas oil combustion consumption by public passenger transport,0.28896,TJ,CO2,74100.0,kg/TJ,21411.935999999998,kg -2aeca832-1095-385a-8e32-082f13ecca68,SESCO,II.1.1,Catamarca,AR-K,annual,2017,gas oil combustion consumption by public passenger transport,0.28896,TJ,CH4,3.9,kg/TJ,1.126944,kg -2aeca832-1095-385a-8e32-082f13ecca68,SESCO,II.1.1,Catamarca,AR-K,annual,2017,gas oil combustion consumption by public passenger transport,0.28896,TJ,N2O,3.9,kg/TJ,1.126944,kg -ca4b26c1-3201-3021-be28-1a083987c666,SESCO,II.1.1,Chaco,AR-H,annual,2017,gas oil combustion consumption by public passenger transport,2.02272,TJ,CO2,74100.0,kg/TJ,149883.552,kg -a78a7b4e-ddda-3369-9f2e-5e6d45726575,SESCO,II.1.1,Chaco,AR-H,annual,2017,gas oil combustion consumption by public passenger transport,2.02272,TJ,CH4,3.9,kg/TJ,7.8886080000000005,kg -a78a7b4e-ddda-3369-9f2e-5e6d45726575,SESCO,II.1.1,Chaco,AR-H,annual,2017,gas oil combustion consumption by public passenger transport,2.02272,TJ,N2O,3.9,kg/TJ,7.8886080000000005,kg -fb41621e-a11a-32ec-a243-47eddf8495cb,SESCO,II.1.1,Chubut,AR-U,annual,2017,gas oil combustion consumption by public passenger transport,18.20448,TJ,CO2,74100.0,kg/TJ,1348951.968,kg -de800fd1-57ba-3d06-ac87-5acd8fdd19ac,SESCO,II.1.1,Chubut,AR-U,annual,2017,gas oil combustion consumption by public passenger transport,18.20448,TJ,CH4,3.9,kg/TJ,70.997472,kg -de800fd1-57ba-3d06-ac87-5acd8fdd19ac,SESCO,II.1.1,Chubut,AR-U,annual,2017,gas oil combustion consumption by public passenger transport,18.20448,TJ,N2O,3.9,kg/TJ,70.997472,kg -5ed37bc2-0961-372b-82d9-3e77f36e318f,SESCO,II.1.1,Corrientes,AR-W,annual,2017,gas oil combustion consumption by public passenger transport,1.19196,TJ,CO2,74100.0,kg/TJ,88324.23599999999,kg -6ef3ace8-d016-36b9-b06d-e0f221e0dc23,SESCO,II.1.1,Corrientes,AR-W,annual,2017,gas oil combustion consumption by public passenger transport,1.19196,TJ,CH4,3.9,kg/TJ,4.648643999999999,kg -6ef3ace8-d016-36b9-b06d-e0f221e0dc23,SESCO,II.1.1,Corrientes,AR-W,annual,2017,gas oil combustion consumption by public passenger transport,1.19196,TJ,N2O,3.9,kg/TJ,4.648643999999999,kg -ffa1bbd1-047f-3a8d-ae2d-6fa8e0113682,SESCO,II.1.1,Córdoba,AR-X,annual,2017,gas oil combustion consumption by public passenger transport,59.92308,TJ,CO2,74100.0,kg/TJ,4440300.228,kg -81c08e7a-e909-3c7c-9f48-302abeccd16c,SESCO,II.1.1,Córdoba,AR-X,annual,2017,gas oil combustion consumption by public passenger transport,59.92308,TJ,CH4,3.9,kg/TJ,233.700012,kg -81c08e7a-e909-3c7c-9f48-302abeccd16c,SESCO,II.1.1,Córdoba,AR-X,annual,2017,gas oil combustion consumption by public passenger transport,59.92308,TJ,N2O,3.9,kg/TJ,233.700012,kg -8abbcc8a-7823-3cf8-b174-63a0fcef4878,SESCO,II.1.1,Entre Rios,AR-E,annual,2017,gas oil combustion consumption by public passenger transport,46.34196,TJ,CO2,74100.0,kg/TJ,3433939.236,kg -e7cac919-efa0-3ae7-8a40-8dda33eb1057,SESCO,II.1.1,Entre Rios,AR-E,annual,2017,gas oil combustion consumption by public passenger transport,46.34196,TJ,CH4,3.9,kg/TJ,180.733644,kg -e7cac919-efa0-3ae7-8a40-8dda33eb1057,SESCO,II.1.1,Entre Rios,AR-E,annual,2017,gas oil combustion consumption by public passenger transport,46.34196,TJ,N2O,3.9,kg/TJ,180.733644,kg -f4f59301-29bb-3397-a821-3d925d037e51,SESCO,II.1.1,Formosa,AR-P,annual,2017,gas oil combustion consumption by public passenger transport,0.07224,TJ,CO2,74100.0,kg/TJ,5352.9839999999995,kg -9fd6e638-79a3-3588-8412-63560d92cdb2,SESCO,II.1.1,Formosa,AR-P,annual,2017,gas oil combustion consumption by public passenger transport,0.07224,TJ,CH4,3.9,kg/TJ,0.281736,kg -9fd6e638-79a3-3588-8412-63560d92cdb2,SESCO,II.1.1,Formosa,AR-P,annual,2017,gas oil combustion consumption by public passenger transport,0.07224,TJ,N2O,3.9,kg/TJ,0.281736,kg -04c9ebcb-0b50-3e80-9c32-f97f4ee5626c,SESCO,II.1.1,La Pampa,AR-L,annual,2017,gas oil combustion consumption by public passenger transport,4.00932,TJ,CO2,74100.0,kg/TJ,297090.61199999996,kg -7ed3057c-844d-3e07-8697-9b203aaaeb50,SESCO,II.1.1,La Pampa,AR-L,annual,2017,gas oil combustion consumption by public passenger transport,4.00932,TJ,CH4,3.9,kg/TJ,15.636347999999998,kg -7ed3057c-844d-3e07-8697-9b203aaaeb50,SESCO,II.1.1,La Pampa,AR-L,annual,2017,gas oil combustion consumption by public passenger transport,4.00932,TJ,N2O,3.9,kg/TJ,15.636347999999998,kg -86c92e06-059c-3e42-9387-071565a595bb,SESCO,II.1.1,Mendoza,AR-M,annual,2017,gas oil combustion consumption by public passenger transport,1.19196,TJ,CO2,74100.0,kg/TJ,88324.23599999999,kg -a0568891-5f36-3c91-a71f-36ed431a340b,SESCO,II.1.1,Mendoza,AR-M,annual,2017,gas oil combustion consumption by public passenger transport,1.19196,TJ,CH4,3.9,kg/TJ,4.648643999999999,kg -a0568891-5f36-3c91-a71f-36ed431a340b,SESCO,II.1.1,Mendoza,AR-M,annual,2017,gas oil combustion consumption by public passenger transport,1.19196,TJ,N2O,3.9,kg/TJ,4.648643999999999,kg -41ee3ed6-8df8-382c-888f-643cdffcdcc6,SESCO,II.1.1,Misiones,AR-N,annual,2017,gas oil combustion consumption by public passenger transport,196.78176,TJ,CO2,74100.0,kg/TJ,14581528.416,kg -77cc1b8b-32d3-35e4-8c94-36f2da1d4ed6,SESCO,II.1.1,Misiones,AR-N,annual,2017,gas oil combustion consumption by public passenger transport,196.78176,TJ,CH4,3.9,kg/TJ,767.448864,kg -77cc1b8b-32d3-35e4-8c94-36f2da1d4ed6,SESCO,II.1.1,Misiones,AR-N,annual,2017,gas oil combustion consumption by public passenger transport,196.78176,TJ,N2O,3.9,kg/TJ,767.448864,kg -a828ec74-074f-330c-992f-c4fc2e507200,SESCO,II.1.1,Neuquén,AR-Q,annual,2017,gas oil combustion consumption by public passenger transport,1.15584,TJ,CO2,74100.0,kg/TJ,85647.74399999999,kg -38097382-31fd-3b6c-998c-0f1b61652d93,SESCO,II.1.1,Neuquén,AR-Q,annual,2017,gas oil combustion consumption by public passenger transport,1.15584,TJ,CH4,3.9,kg/TJ,4.507776,kg -38097382-31fd-3b6c-998c-0f1b61652d93,SESCO,II.1.1,Neuquén,AR-Q,annual,2017,gas oil combustion consumption by public passenger transport,1.15584,TJ,N2O,3.9,kg/TJ,4.507776,kg -123ab455-e72c-35be-b5fa-2ec0a044a7dd,SESCO,II.1.1,Rio Negro,AR-R,annual,2017,gas oil combustion consumption by public passenger transport,48.83424,TJ,CO2,74100.0,kg/TJ,3618617.184,kg -cc0ce614-31c3-3bcd-a415-cefe574d87b8,SESCO,II.1.1,Rio Negro,AR-R,annual,2017,gas oil combustion consumption by public passenger transport,48.83424,TJ,CH4,3.9,kg/TJ,190.453536,kg -cc0ce614-31c3-3bcd-a415-cefe574d87b8,SESCO,II.1.1,Rio Negro,AR-R,annual,2017,gas oil combustion consumption by public passenger transport,48.83424,TJ,N2O,3.9,kg/TJ,190.453536,kg -81d68113-d191-36d2-959d-8c44c6334729,SESCO,II.1.1,Salta,AR-A,annual,2017,gas oil combustion consumption by public passenger transport,0.10836,TJ,CO2,74100.0,kg/TJ,8029.476,kg -53f60864-b496-3d8b-93da-a1aa1518f340,SESCO,II.1.1,Salta,AR-A,annual,2017,gas oil combustion consumption by public passenger transport,0.10836,TJ,CH4,3.9,kg/TJ,0.422604,kg -53f60864-b496-3d8b-93da-a1aa1518f340,SESCO,II.1.1,Salta,AR-A,annual,2017,gas oil combustion consumption by public passenger transport,0.10836,TJ,N2O,3.9,kg/TJ,0.422604,kg -f1c36709-d37a-3179-ace9-0637f6c05a1f,SESCO,II.1.1,San Juan,AR-J,annual,2017,gas oil combustion consumption by public passenger transport,0.03612,TJ,CO2,74100.0,kg/TJ,2676.4919999999997,kg -5e76d161-edcd-3406-a470-b0dd11894374,SESCO,II.1.1,San Juan,AR-J,annual,2017,gas oil combustion consumption by public passenger transport,0.03612,TJ,CH4,3.9,kg/TJ,0.140868,kg -5e76d161-edcd-3406-a470-b0dd11894374,SESCO,II.1.1,San Juan,AR-J,annual,2017,gas oil combustion consumption by public passenger transport,0.03612,TJ,N2O,3.9,kg/TJ,0.140868,kg -0e18d52a-365c-32b6-ab20-a1436128b167,SESCO,II.1.1,San Luis,AR-D,annual,2017,gas oil combustion consumption by public passenger transport,0.75852,TJ,CO2,74100.0,kg/TJ,56206.331999999995,kg -855a7003-daa5-3289-8066-fae37880133b,SESCO,II.1.1,San Luis,AR-D,annual,2017,gas oil combustion consumption by public passenger transport,0.75852,TJ,CH4,3.9,kg/TJ,2.9582279999999996,kg -855a7003-daa5-3289-8066-fae37880133b,SESCO,II.1.1,San Luis,AR-D,annual,2017,gas oil combustion consumption by public passenger transport,0.75852,TJ,N2O,3.9,kg/TJ,2.9582279999999996,kg -f0290b39-6791-3ba7-96ea-6c38acd911fc,SESCO,II.1.1,Santa Fe,AR-S,annual,2017,gas oil combustion consumption by public passenger transport,198.2988,TJ,CO2,74100.0,kg/TJ,14693941.08,kg -8bb7a877-6e9f-35c9-91e0-120d45936a1f,SESCO,II.1.1,Santa Fe,AR-S,annual,2017,gas oil combustion consumption by public passenger transport,198.2988,TJ,CH4,3.9,kg/TJ,773.36532,kg -8bb7a877-6e9f-35c9-91e0-120d45936a1f,SESCO,II.1.1,Santa Fe,AR-S,annual,2017,gas oil combustion consumption by public passenger transport,198.2988,TJ,N2O,3.9,kg/TJ,773.36532,kg -409ad42d-4625-3a07-9abd-1961858e3ed5,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2017,gas oil combustion consumption by public passenger transport,0.46956,TJ,CO2,74100.0,kg/TJ,34794.396,kg -7d6b8347-1987-39b7-b4a7-412faa4f2657,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2017,gas oil combustion consumption by public passenger transport,0.46956,TJ,CH4,3.9,kg/TJ,1.831284,kg -7d6b8347-1987-39b7-b4a7-412faa4f2657,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2017,gas oil combustion consumption by public passenger transport,0.46956,TJ,N2O,3.9,kg/TJ,1.831284,kg -47abeab0-7e36-3084-a1da-96da2595878c,SESCO,II.1.1,Tucuman,AR-T,annual,2017,gas oil combustion consumption by public passenger transport,2.67288,TJ,CO2,74100.0,kg/TJ,198060.40800000002,kg -57610bcb-d39a-3b17-8d6c-db065ac72733,SESCO,II.1.1,Tucuman,AR-T,annual,2017,gas oil combustion consumption by public passenger transport,2.67288,TJ,CH4,3.9,kg/TJ,10.424232,kg -57610bcb-d39a-3b17-8d6c-db065ac72733,SESCO,II.1.1,Tucuman,AR-T,annual,2017,gas oil combustion consumption by public passenger transport,2.67288,TJ,N2O,3.9,kg/TJ,10.424232,kg -5ca29847-2183-3dc9-b534-9731136b0383,SESCO,II.1.1,Buenos Aires,AR-B,annual,2017,gas oil combustion consumption by public passenger transport,87.30204,TJ,CO2,74100.0,kg/TJ,6469081.164000001,kg -f6c4aed4-edc3-3670-8a41-fba63863e6ac,SESCO,II.1.1,Buenos Aires,AR-B,annual,2017,gas oil combustion consumption by public passenger transport,87.30204,TJ,CH4,3.9,kg/TJ,340.477956,kg -f6c4aed4-edc3-3670-8a41-fba63863e6ac,SESCO,II.1.1,Buenos Aires,AR-B,annual,2017,gas oil combustion consumption by public passenger transport,87.30204,TJ,N2O,3.9,kg/TJ,340.477956,kg -88662fdd-e424-3c69-8d84-3f87833d3554,SESCO,II.1.1,Capital Federal,AR-C,annual,2017,gas oil combustion consumption by public passenger transport,23.2974,TJ,CO2,74100.0,kg/TJ,1726337.34,kg -542b3993-e37a-345a-b5ce-0debcc07e760,SESCO,II.1.1,Capital Federal,AR-C,annual,2017,gas oil combustion consumption by public passenger transport,23.2974,TJ,CH4,3.9,kg/TJ,90.85986,kg -542b3993-e37a-345a-b5ce-0debcc07e760,SESCO,II.1.1,Capital Federal,AR-C,annual,2017,gas oil combustion consumption by public passenger transport,23.2974,TJ,N2O,3.9,kg/TJ,90.85986,kg -99d6cc73-96ef-3908-bdbf-2390d40ac905,SESCO,II.1.1,Chaco,AR-H,annual,2017,gas oil combustion consumption by public passenger transport,0.03612,TJ,CO2,74100.0,kg/TJ,2676.4919999999997,kg -4fd51885-17e1-3f6f-abb6-0b1a2a70f00e,SESCO,II.1.1,Chaco,AR-H,annual,2017,gas oil combustion consumption by public passenger transport,0.03612,TJ,CH4,3.9,kg/TJ,0.140868,kg -4fd51885-17e1-3f6f-abb6-0b1a2a70f00e,SESCO,II.1.1,Chaco,AR-H,annual,2017,gas oil combustion consumption by public passenger transport,0.03612,TJ,N2O,3.9,kg/TJ,0.140868,kg -0d6104fd-94d3-3997-8eb4-d403eccbcb02,SESCO,II.1.1,Chubut,AR-U,annual,2017,gas oil combustion consumption by public passenger transport,9.10224,TJ,CO2,74100.0,kg/TJ,674475.984,kg -d43989ba-72a5-3743-a7e3-da93e6f02651,SESCO,II.1.1,Chubut,AR-U,annual,2017,gas oil combustion consumption by public passenger transport,9.10224,TJ,CH4,3.9,kg/TJ,35.498736,kg -d43989ba-72a5-3743-a7e3-da93e6f02651,SESCO,II.1.1,Chubut,AR-U,annual,2017,gas oil combustion consumption by public passenger transport,9.10224,TJ,N2O,3.9,kg/TJ,35.498736,kg -c5e118e1-115a-3af4-b7e8-aeef6af1e466,SESCO,II.1.1,Corrientes,AR-W,annual,2017,gas oil combustion consumption by public passenger transport,0.03612,TJ,CO2,74100.0,kg/TJ,2676.4919999999997,kg -fe070851-74ff-31b5-8b70-6122da117dd5,SESCO,II.1.1,Corrientes,AR-W,annual,2017,gas oil combustion consumption by public passenger transport,0.03612,TJ,CH4,3.9,kg/TJ,0.140868,kg -fe070851-74ff-31b5-8b70-6122da117dd5,SESCO,II.1.1,Corrientes,AR-W,annual,2017,gas oil combustion consumption by public passenger transport,0.03612,TJ,N2O,3.9,kg/TJ,0.140868,kg -1e9c1bbf-cfa6-37fd-977d-39b377b9f868,SESCO,II.1.1,Córdoba,AR-X,annual,2017,gas oil combustion consumption by public passenger transport,1.6254,TJ,CO2,74100.0,kg/TJ,120442.14,kg -3693a7bc-7bd8-30be-9552-d6f5749c09a9,SESCO,II.1.1,Córdoba,AR-X,annual,2017,gas oil combustion consumption by public passenger transport,1.6254,TJ,CH4,3.9,kg/TJ,6.33906,kg -3693a7bc-7bd8-30be-9552-d6f5749c09a9,SESCO,II.1.1,Córdoba,AR-X,annual,2017,gas oil combustion consumption by public passenger transport,1.6254,TJ,N2O,3.9,kg/TJ,6.33906,kg -8a2ab565-8480-33cc-94b5-deeec94bbeed,SESCO,II.1.1,Entre Rios,AR-E,annual,2017,gas oil combustion consumption by public passenger transport,0.03612,TJ,CO2,74100.0,kg/TJ,2676.4919999999997,kg -30287ab8-554a-3903-93ab-b6be9fc95809,SESCO,II.1.1,Entre Rios,AR-E,annual,2017,gas oil combustion consumption by public passenger transport,0.03612,TJ,CH4,3.9,kg/TJ,0.140868,kg -30287ab8-554a-3903-93ab-b6be9fc95809,SESCO,II.1.1,Entre Rios,AR-E,annual,2017,gas oil combustion consumption by public passenger transport,0.03612,TJ,N2O,3.9,kg/TJ,0.140868,kg -5ed104b2-fc3e-353d-8c16-c37d63123043,SESCO,II.1.1,La Pampa,AR-L,annual,2017,gas oil combustion consumption by public passenger transport,5.30964,TJ,CO2,74100.0,kg/TJ,393444.324,kg -040549f1-e259-3228-a736-4726834c31cf,SESCO,II.1.1,La Pampa,AR-L,annual,2017,gas oil combustion consumption by public passenger transport,5.30964,TJ,CH4,3.9,kg/TJ,20.707596,kg -040549f1-e259-3228-a736-4726834c31cf,SESCO,II.1.1,La Pampa,AR-L,annual,2017,gas oil combustion consumption by public passenger transport,5.30964,TJ,N2O,3.9,kg/TJ,20.707596,kg -14cca3ab-15f7-30c0-8660-60d68fc7b862,SESCO,II.1.1,Mendoza,AR-M,annual,2017,gas oil combustion consumption by public passenger transport,0.03612,TJ,CO2,74100.0,kg/TJ,2676.4919999999997,kg -984a4d7f-0f47-3c13-8ebc-3b59b250bc76,SESCO,II.1.1,Mendoza,AR-M,annual,2017,gas oil combustion consumption by public passenger transport,0.03612,TJ,CH4,3.9,kg/TJ,0.140868,kg -984a4d7f-0f47-3c13-8ebc-3b59b250bc76,SESCO,II.1.1,Mendoza,AR-M,annual,2017,gas oil combustion consumption by public passenger transport,0.03612,TJ,N2O,3.9,kg/TJ,0.140868,kg -03bbf370-4a85-3278-924e-3bdd0a4a194c,SESCO,II.1.1,Misiones,AR-N,annual,2017,gas oil combustion consumption by public passenger transport,1.6254,TJ,CO2,74100.0,kg/TJ,120442.14,kg -a147230f-6169-34fb-9066-5a473e398060,SESCO,II.1.1,Misiones,AR-N,annual,2017,gas oil combustion consumption by public passenger transport,1.6254,TJ,CH4,3.9,kg/TJ,6.33906,kg -a147230f-6169-34fb-9066-5a473e398060,SESCO,II.1.1,Misiones,AR-N,annual,2017,gas oil combustion consumption by public passenger transport,1.6254,TJ,N2O,3.9,kg/TJ,6.33906,kg -31acfe61-5d40-3006-a0bd-2ffe234c544b,SESCO,II.1.1,Neuquén,AR-Q,annual,2017,gas oil combustion consumption by public passenger transport,1.91436,TJ,CO2,74100.0,kg/TJ,141854.076,kg -c983443c-2734-3ce0-a966-e83096a1c10b,SESCO,II.1.1,Neuquén,AR-Q,annual,2017,gas oil combustion consumption by public passenger transport,1.91436,TJ,CH4,3.9,kg/TJ,7.466004,kg -c983443c-2734-3ce0-a966-e83096a1c10b,SESCO,II.1.1,Neuquén,AR-Q,annual,2017,gas oil combustion consumption by public passenger transport,1.91436,TJ,N2O,3.9,kg/TJ,7.466004,kg -0f220e50-9123-3734-b8bc-c8391783f175,SESCO,II.1.1,Rio Negro,AR-R,annual,2017,gas oil combustion consumption by public passenger transport,12.642,TJ,CO2,74100.0,kg/TJ,936772.2,kg -99a7a3aa-e8bb-3f2d-a4c3-df239cdc59fe,SESCO,II.1.1,Rio Negro,AR-R,annual,2017,gas oil combustion consumption by public passenger transport,12.642,TJ,CH4,3.9,kg/TJ,49.303799999999995,kg -99a7a3aa-e8bb-3f2d-a4c3-df239cdc59fe,SESCO,II.1.1,Rio Negro,AR-R,annual,2017,gas oil combustion consumption by public passenger transport,12.642,TJ,N2O,3.9,kg/TJ,49.303799999999995,kg -d1a627b5-9e09-3e53-a6ad-dea571646ce9,SESCO,II.1.1,San Luis,AR-D,annual,2017,gas oil combustion consumption by public passenger transport,0.03612,TJ,CO2,74100.0,kg/TJ,2676.4919999999997,kg -c6a9bf1d-3e70-3e85-a609-9e2f1e66173d,SESCO,II.1.1,San Luis,AR-D,annual,2017,gas oil combustion consumption by public passenger transport,0.03612,TJ,CH4,3.9,kg/TJ,0.140868,kg -c6a9bf1d-3e70-3e85-a609-9e2f1e66173d,SESCO,II.1.1,San Luis,AR-D,annual,2017,gas oil combustion consumption by public passenger transport,0.03612,TJ,N2O,3.9,kg/TJ,0.140868,kg -54ecfd19-1973-3501-9dd4-edca2e1d0325,SESCO,II.1.1,Santa Fe,AR-S,annual,2017,gas oil combustion consumption by public passenger transport,10.22196,TJ,CO2,74100.0,kg/TJ,757447.2359999999,kg -8740ce93-637c-3d99-aad5-5db1addbfeac,SESCO,II.1.1,Santa Fe,AR-S,annual,2017,gas oil combustion consumption by public passenger transport,10.22196,TJ,CH4,3.9,kg/TJ,39.865643999999996,kg -8740ce93-637c-3d99-aad5-5db1addbfeac,SESCO,II.1.1,Santa Fe,AR-S,annual,2017,gas oil combustion consumption by public passenger transport,10.22196,TJ,N2O,3.9,kg/TJ,39.865643999999996,kg -2e81bdbc-0867-3229-aecf-aa2872d28d38,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2017,gas oil combustion consumption by public passenger transport,0.03612,TJ,CO2,74100.0,kg/TJ,2676.4919999999997,kg -48da0990-3249-3c47-9984-d65d7d36f667,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2017,gas oil combustion consumption by public passenger transport,0.03612,TJ,CH4,3.9,kg/TJ,0.140868,kg -48da0990-3249-3c47-9984-d65d7d36f667,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2017,gas oil combustion consumption by public passenger transport,0.03612,TJ,N2O,3.9,kg/TJ,0.140868,kg -4342d217-5966-3509-9295-612f90685c55,SESCO,II.1.1,Tucuman,AR-T,annual,2017,gas oil combustion consumption by public passenger transport,0.07224,TJ,CO2,74100.0,kg/TJ,5352.9839999999995,kg -72b62858-a0a0-30c3-a79c-b52525c6f9e7,SESCO,II.1.1,Tucuman,AR-T,annual,2017,gas oil combustion consumption by public passenger transport,0.07224,TJ,CH4,3.9,kg/TJ,0.281736,kg -72b62858-a0a0-30c3-a79c-b52525c6f9e7,SESCO,II.1.1,Tucuman,AR-T,annual,2017,gas oil combustion consumption by public passenger transport,0.07224,TJ,N2O,3.9,kg/TJ,0.281736,kg -667b3d24-f5d6-37a2-9c1a-092fec9cfb31,SESCO,II.1.1,Chubut,AR-U,annual,2017,gas oil combustion consumption by freight transport,0.29799,TJ,CO2,74100.0,kg/TJ,22081.058999999997,kg -f00ad871-a22c-30a0-85bc-198fe004336b,SESCO,II.1.1,Chubut,AR-U,annual,2017,gas oil combustion consumption by freight transport,0.29799,TJ,CH4,3.9,kg/TJ,1.1621609999999998,kg -f00ad871-a22c-30a0-85bc-198fe004336b,SESCO,II.1.1,Chubut,AR-U,annual,2017,gas oil combustion consumption by freight transport,0.29799,TJ,N2O,3.9,kg/TJ,1.1621609999999998,kg -6d73c098-03ef-328c-8d41-11b9744de38f,SESCO,II.5.1,Buenos Aires,AR-B,annual,2017,gas oil combustion consumption by agriculture machines,467.363387484,TJ,CO2,74100.0,kg/TJ,34631627.0125644,kg -38c1c221-f4ef-3bdc-8bbe-f479df9b8911,SESCO,II.5.1,Buenos Aires,AR-B,annual,2017,gas oil combustion consumption by agriculture machines,467.363387484,TJ,CH4,3.9,kg/TJ,1822.7172111876,kg -38c1c221-f4ef-3bdc-8bbe-f479df9b8911,SESCO,II.5.1,Buenos Aires,AR-B,annual,2017,gas oil combustion consumption by agriculture machines,467.363387484,TJ,N2O,3.9,kg/TJ,1822.7172111876,kg -e2ecf921-85c2-319e-a50e-c067e29febc4,SESCO,II.5.1,Corrientes,AR-W,annual,2017,gas oil combustion consumption by agriculture machines,11.788386876,TJ,CO2,74100.0,kg/TJ,873519.4675116,kg -94777bbf-e7bb-3643-91b0-95f97b283689,SESCO,II.5.1,Corrientes,AR-W,annual,2017,gas oil combustion consumption by agriculture machines,11.788386876,TJ,CH4,3.9,kg/TJ,45.9747088164,kg -94777bbf-e7bb-3643-91b0-95f97b283689,SESCO,II.5.1,Corrientes,AR-W,annual,2017,gas oil combustion consumption by agriculture machines,11.788386876,TJ,N2O,3.9,kg/TJ,45.9747088164,kg -fd77ec79-536c-37b8-b8ba-0bf2040b8ddf,SESCO,II.5.1,Córdoba,AR-X,annual,2017,gas oil combustion consumption by agriculture machines,855.508582404,TJ,CO2,74100.0,kg/TJ,63393185.9561364,kg -a1d6234e-42b6-3dfb-9f32-5b0485a6484c,SESCO,II.5.1,Córdoba,AR-X,annual,2017,gas oil combustion consumption by agriculture machines,855.508582404,TJ,CH4,3.9,kg/TJ,3336.4834713756,kg -a1d6234e-42b6-3dfb-9f32-5b0485a6484c,SESCO,II.5.1,Córdoba,AR-X,annual,2017,gas oil combustion consumption by agriculture machines,855.508582404,TJ,N2O,3.9,kg/TJ,3336.4834713756,kg -fb25870d-3f3d-3384-ad27-f29ff120105d,SESCO,II.5.1,Entre Rios,AR-E,annual,2017,gas oil combustion consumption by agriculture machines,342.90032573999997,TJ,CO2,74100.0,kg/TJ,25408914.137333997,kg -adf2d760-1c04-3706-9d17-69c8e388552f,SESCO,II.5.1,Entre Rios,AR-E,annual,2017,gas oil combustion consumption by agriculture machines,342.90032573999997,TJ,CH4,3.9,kg/TJ,1337.311270386,kg -adf2d760-1c04-3706-9d17-69c8e388552f,SESCO,II.5.1,Entre Rios,AR-E,annual,2017,gas oil combustion consumption by agriculture machines,342.90032573999997,TJ,N2O,3.9,kg/TJ,1337.311270386,kg -cc0b3294-7541-3457-8b25-6ceefe283325,SESCO,II.5.1,La Pampa,AR-L,annual,2017,gas oil combustion consumption by agriculture machines,73.07430698399999,TJ,CO2,74100.0,kg/TJ,5414806.147514399,kg -284b4df5-c7cd-3d35-ad49-caec22356c43,SESCO,II.5.1,La Pampa,AR-L,annual,2017,gas oil combustion consumption by agriculture machines,73.07430698399999,TJ,CH4,3.9,kg/TJ,284.98979723759993,kg -284b4df5-c7cd-3d35-ad49-caec22356c43,SESCO,II.5.1,La Pampa,AR-L,annual,2017,gas oil combustion consumption by agriculture machines,73.07430698399999,TJ,N2O,3.9,kg/TJ,284.98979723759993,kg -f6f28a1d-262e-3de5-928b-f1889e6cf0fd,SESCO,II.5.1,Santa Fe,AR-S,annual,2017,gas oil combustion consumption by agriculture machines,374.200140636,TJ,CO2,74100.0,kg/TJ,27728230.421127602,kg -3001dbf1-6270-31eb-8e20-591031f0f4d3,SESCO,II.5.1,Santa Fe,AR-S,annual,2017,gas oil combustion consumption by agriculture machines,374.200140636,TJ,CH4,3.9,kg/TJ,1459.3805484804,kg -3001dbf1-6270-31eb-8e20-591031f0f4d3,SESCO,II.5.1,Santa Fe,AR-S,annual,2017,gas oil combustion consumption by agriculture machines,374.200140636,TJ,N2O,3.9,kg/TJ,1459.3805484804,kg -1f96d8c1-d935-38ec-b592-ee40e6c3a823,SESCO,II.5.1,Santiago del Estero,AR-G,annual,2017,gas oil combustion consumption by agriculture machines,211.194474372,TJ,CO2,74100.0,kg/TJ,15649510.5509652,kg -1b291c00-3ffc-3c10-8a57-963a5f1898a5,SESCO,II.5.1,Santiago del Estero,AR-G,annual,2017,gas oil combustion consumption by agriculture machines,211.194474372,TJ,CH4,3.9,kg/TJ,823.6584500508,kg -1b291c00-3ffc-3c10-8a57-963a5f1898a5,SESCO,II.5.1,Santiago del Estero,AR-G,annual,2017,gas oil combustion consumption by agriculture machines,211.194474372,TJ,N2O,3.9,kg/TJ,823.6584500508,kg -deaa53d4-a488-3699-ae8a-fc877d01c787,SESCO,II.5.1,Tucuman,AR-T,annual,2017,gas oil combustion consumption by agriculture machines,28.711921643999997,TJ,CO2,74100.0,kg/TJ,2127553.3938204,kg -e2f7da78-1741-3182-9b66-767a4369d851,SESCO,II.5.1,Tucuman,AR-T,annual,2017,gas oil combustion consumption by agriculture machines,28.711921643999997,TJ,CH4,3.9,kg/TJ,111.97649441159999,kg -e2f7da78-1741-3182-9b66-767a4369d851,SESCO,II.5.1,Tucuman,AR-T,annual,2017,gas oil combustion consumption by agriculture machines,28.711921643999997,TJ,N2O,3.9,kg/TJ,111.97649441159999,kg -671985f7-a3f7-32ba-bace-519cf1ea63e2,SESCO,II.5.1,Buenos Aires,AR-B,annual,2017,gas oil combustion consumption by agriculture machines,7.100119236,TJ,CO2,74100.0,kg/TJ,526118.8353876,kg -af315541-e7dd-3b2e-b062-0a1c33e73244,SESCO,II.5.1,Buenos Aires,AR-B,annual,2017,gas oil combustion consumption by agriculture machines,7.100119236,TJ,CH4,3.9,kg/TJ,27.6904650204,kg -af315541-e7dd-3b2e-b062-0a1c33e73244,SESCO,II.5.1,Buenos Aires,AR-B,annual,2017,gas oil combustion consumption by agriculture machines,7.100119236,TJ,N2O,3.9,kg/TJ,27.6904650204,kg -9f70f44c-680a-3bd9-b7ef-f2ca4523f947,SESCO,II.5.1,Córdoba,AR-X,annual,2017,gas oil combustion consumption by agriculture machines,17.760294299999998,TJ,CO2,74100.0,kg/TJ,1316037.80763,kg -dea0a157-c998-319d-8635-f0890c8ccaa8,SESCO,II.5.1,Córdoba,AR-X,annual,2017,gas oil combustion consumption by agriculture machines,17.760294299999998,TJ,CH4,3.9,kg/TJ,69.26514776999998,kg -dea0a157-c998-319d-8635-f0890c8ccaa8,SESCO,II.5.1,Córdoba,AR-X,annual,2017,gas oil combustion consumption by agriculture machines,17.760294299999998,TJ,N2O,3.9,kg/TJ,69.26514776999998,kg -58e3e9e7-41f6-3bf0-baab-3f4d81f787fe,SESCO,II.5.1,Entre Rios,AR-E,annual,2017,gas oil combustion consumption by agriculture machines,16.482701004,TJ,CO2,74100.0,kg/TJ,1221368.1443963998,kg -def0347a-7740-356e-a4eb-396a857e601d,SESCO,II.5.1,Entre Rios,AR-E,annual,2017,gas oil combustion consumption by agriculture machines,16.482701004,TJ,CH4,3.9,kg/TJ,64.2825339156,kg -def0347a-7740-356e-a4eb-396a857e601d,SESCO,II.5.1,Entre Rios,AR-E,annual,2017,gas oil combustion consumption by agriculture machines,16.482701004,TJ,N2O,3.9,kg/TJ,64.2825339156,kg -8a926e06-c581-36d6-b9c9-a766fbe2d2af,SESCO,II.5.1,La Pampa,AR-L,annual,2017,gas oil combustion consumption by agriculture machines,20.197267355999998,TJ,CO2,74100.0,kg/TJ,1496617.5110795998,kg -19c8886e-0be8-3619-92bf-0cc036eea0ad,SESCO,II.5.1,La Pampa,AR-L,annual,2017,gas oil combustion consumption by agriculture machines,20.197267355999998,TJ,CH4,3.9,kg/TJ,78.76934268839999,kg -19c8886e-0be8-3619-92bf-0cc036eea0ad,SESCO,II.5.1,La Pampa,AR-L,annual,2017,gas oil combustion consumption by agriculture machines,20.197267355999998,TJ,N2O,3.9,kg/TJ,78.76934268839999,kg -08abfe3b-f7d1-3e67-82e3-7f1bde2554bd,SESCO,II.5.1,Santa Fe,AR-S,annual,2017,gas oil combustion consumption by agriculture machines,13.977262488,TJ,CO2,74100.0,kg/TJ,1035715.1503608,kg -282aa95a-6b3d-3702-90ec-d96b12f51f90,SESCO,II.5.1,Santa Fe,AR-S,annual,2017,gas oil combustion consumption by agriculture machines,13.977262488,TJ,CH4,3.9,kg/TJ,54.5113237032,kg -282aa95a-6b3d-3702-90ec-d96b12f51f90,SESCO,II.5.1,Santa Fe,AR-S,annual,2017,gas oil combustion consumption by agriculture machines,13.977262488,TJ,N2O,3.9,kg/TJ,54.5113237032,kg -3c3934b2-458f-3407-9bdc-cd94f84d67e3,SESCO,II.1.1,Buenos Aires,AR-B,annual,2017,gas oil combustion consumption by to the public,2517.8647531799998,TJ,CO2,74100.0,kg/TJ,186573778.210638,kg -17973780-7467-3d65-9f15-632d44b3146d,SESCO,II.1.1,Buenos Aires,AR-B,annual,2017,gas oil combustion consumption by to the public,2517.8647531799998,TJ,CH4,3.9,kg/TJ,9819.672537401999,kg -17973780-7467-3d65-9f15-632d44b3146d,SESCO,II.1.1,Buenos Aires,AR-B,annual,2017,gas oil combustion consumption by to the public,2517.8647531799998,TJ,N2O,3.9,kg/TJ,9819.672537401999,kg -75183ccb-17e3-311f-91c4-5ca92e5c0b88,SESCO,II.1.1,Capital Federal,AR-C,annual,2017,gas oil combustion consumption by to the public,226.92128129999998,TJ,CO2,74100.0,kg/TJ,16814866.94433,kg -79391b4f-df1b-3c0d-8dfc-662450bcb652,SESCO,II.1.1,Capital Federal,AR-C,annual,2017,gas oil combustion consumption by to the public,226.92128129999998,TJ,CH4,3.9,kg/TJ,884.9929970699999,kg -79391b4f-df1b-3c0d-8dfc-662450bcb652,SESCO,II.1.1,Capital Federal,AR-C,annual,2017,gas oil combustion consumption by to the public,226.92128129999998,TJ,N2O,3.9,kg/TJ,884.9929970699999,kg -6546f74b-e853-3355-807e-d16c95783217,SESCO,II.1.1,Catamarca,AR-K,annual,2017,gas oil combustion consumption by to the public,89.875095156,TJ,CO2,74100.0,kg/TJ,6659744.5510596,kg -d4f180a3-cd0a-3172-b7fc-fbaf9db3165e,SESCO,II.1.1,Catamarca,AR-K,annual,2017,gas oil combustion consumption by to the public,89.875095156,TJ,CH4,3.9,kg/TJ,350.5128711084,kg -d4f180a3-cd0a-3172-b7fc-fbaf9db3165e,SESCO,II.1.1,Catamarca,AR-K,annual,2017,gas oil combustion consumption by to the public,89.875095156,TJ,N2O,3.9,kg/TJ,350.5128711084,kg -77b13d53-f5a6-3411-b7fa-c64689eb1716,SESCO,II.1.1,Chaco,AR-H,annual,2017,gas oil combustion consumption by to the public,468.94604307599997,TJ,CO2,74100.0,kg/TJ,34748901.7919316,kg -fdae94bd-56c6-314d-9127-df647cdcc376,SESCO,II.1.1,Chaco,AR-H,annual,2017,gas oil combustion consumption by to the public,468.94604307599997,TJ,CH4,3.9,kg/TJ,1828.8895679963998,kg -fdae94bd-56c6-314d-9127-df647cdcc376,SESCO,II.1.1,Chaco,AR-H,annual,2017,gas oil combustion consumption by to the public,468.94604307599997,TJ,N2O,3.9,kg/TJ,1828.8895679963998,kg -6d44861b-6587-3ba5-8e86-286e55e51aeb,SESCO,II.1.1,Corrientes,AR-W,annual,2017,gas oil combustion consumption by to the public,372.72020310000005,TJ,CO2,74100.0,kg/TJ,27618567.04971,kg -ea3e6fe2-40ba-3d03-8e15-8dc64a781cc8,SESCO,II.1.1,Corrientes,AR-W,annual,2017,gas oil combustion consumption by to the public,372.72020310000005,TJ,CH4,3.9,kg/TJ,1453.6087920900002,kg -ea3e6fe2-40ba-3d03-8e15-8dc64a781cc8,SESCO,II.1.1,Corrientes,AR-W,annual,2017,gas oil combustion consumption by to the public,372.72020310000005,TJ,N2O,3.9,kg/TJ,1453.6087920900002,kg -a55b278d-0f82-3b57-9390-05611ab09cee,SESCO,II.1.1,Córdoba,AR-X,annual,2017,gas oil combustion consumption by to the public,1684.8493625879998,TJ,CO2,74100.0,kg/TJ,124847337.76777078,kg -0414c9ff-a1da-365b-ab94-30f670f78e0c,SESCO,II.1.1,Córdoba,AR-X,annual,2017,gas oil combustion consumption by to the public,1684.8493625879998,TJ,CH4,3.9,kg/TJ,6570.912514093199,kg -0414c9ff-a1da-365b-ab94-30f670f78e0c,SESCO,II.1.1,Córdoba,AR-X,annual,2017,gas oil combustion consumption by to the public,1684.8493625879998,TJ,N2O,3.9,kg/TJ,6570.912514093199,kg -120ebc60-d69b-35c8-9ffb-85cd75405cbc,SESCO,II.1.1,Entre Rios,AR-E,annual,2017,gas oil combustion consumption by to the public,759.9520424159999,TJ,CO2,74100.0,kg/TJ,56312446.343025595,kg -a01805a1-d9a9-3696-9ecc-2a06ca626396,SESCO,II.1.1,Entre Rios,AR-E,annual,2017,gas oil combustion consumption by to the public,759.9520424159999,TJ,CH4,3.9,kg/TJ,2963.8129654223994,kg -a01805a1-d9a9-3696-9ecc-2a06ca626396,SESCO,II.1.1,Entre Rios,AR-E,annual,2017,gas oil combustion consumption by to the public,759.9520424159999,TJ,N2O,3.9,kg/TJ,2963.8129654223994,kg -b22607bf-cc77-3e65-a7a7-0905af5496e3,SESCO,II.1.1,Jujuy,AR-Y,annual,2017,gas oil combustion consumption by to the public,48.17728944,TJ,CO2,74100.0,kg/TJ,3569937.147504,kg -f273138e-c4fb-3ca9-bf67-44116a2f546e,SESCO,II.1.1,Jujuy,AR-Y,annual,2017,gas oil combustion consumption by to the public,48.17728944,TJ,CH4,3.9,kg/TJ,187.891428816,kg -f273138e-c4fb-3ca9-bf67-44116a2f546e,SESCO,II.1.1,Jujuy,AR-Y,annual,2017,gas oil combustion consumption by to the public,48.17728944,TJ,N2O,3.9,kg/TJ,187.891428816,kg -d2696f97-8ab4-366a-bb3e-f798e76da0e9,SESCO,II.1.1,La Pampa,AR-L,annual,2017,gas oil combustion consumption by to the public,39.048215891999995,TJ,CO2,74100.0,kg/TJ,2893472.7975971997,kg -259b22df-e0f8-385b-ad83-af157acb0afa,SESCO,II.1.1,La Pampa,AR-L,annual,2017,gas oil combustion consumption by to the public,39.048215891999995,TJ,CH4,3.9,kg/TJ,152.28804197879998,kg -259b22df-e0f8-385b-ad83-af157acb0afa,SESCO,II.1.1,La Pampa,AR-L,annual,2017,gas oil combustion consumption by to the public,39.048215891999995,TJ,N2O,3.9,kg/TJ,152.28804197879998,kg -63865c6f-b905-3db5-be35-b31d7ee9b39d,SESCO,II.1.1,La Rioja,AR-F,annual,2017,gas oil combustion consumption by to the public,41.07423726,TJ,CO2,74100.0,kg/TJ,3043600.980966,kg -7586a60f-44de-35f3-98bf-ac804676b402,SESCO,II.1.1,La Rioja,AR-F,annual,2017,gas oil combustion consumption by to the public,41.07423726,TJ,CH4,3.9,kg/TJ,160.18952531399998,kg -7586a60f-44de-35f3-98bf-ac804676b402,SESCO,II.1.1,La Rioja,AR-F,annual,2017,gas oil combustion consumption by to the public,41.07423726,TJ,N2O,3.9,kg/TJ,160.18952531399998,kg -58c09546-2b2d-30c9-a7d1-f1e4cbceb9a6,SESCO,II.1.1,Mendoza,AR-M,annual,2017,gas oil combustion consumption by to the public,320.061436632,TJ,CO2,74100.0,kg/TJ,23716552.4544312,kg -5a0fbebc-d91b-385f-8e27-1b1c76c4345d,SESCO,II.1.1,Mendoza,AR-M,annual,2017,gas oil combustion consumption by to the public,320.061436632,TJ,CH4,3.9,kg/TJ,1248.2396028648,kg -5a0fbebc-d91b-385f-8e27-1b1c76c4345d,SESCO,II.1.1,Mendoza,AR-M,annual,2017,gas oil combustion consumption by to the public,320.061436632,TJ,N2O,3.9,kg/TJ,1248.2396028648,kg -d5f96f45-2ab1-3651-84c7-29f5777a7b3a,SESCO,II.1.1,Misiones,AR-N,annual,2017,gas oil combustion consumption by to the public,376.322790228,TJ,CO2,74100.0,kg/TJ,27885518.7558948,kg -39c1c1a8-92f7-3d35-9b7e-5f69150d632e,SESCO,II.1.1,Misiones,AR-N,annual,2017,gas oil combustion consumption by to the public,376.322790228,TJ,CH4,3.9,kg/TJ,1467.6588818891998,kg -39c1c1a8-92f7-3d35-9b7e-5f69150d632e,SESCO,II.1.1,Misiones,AR-N,annual,2017,gas oil combustion consumption by to the public,376.322790228,TJ,N2O,3.9,kg/TJ,1467.6588818891998,kg -444d8deb-641a-3090-8eb6-d34ba6a67c36,SESCO,II.1.1,San Juan,AR-J,annual,2017,gas oil combustion consumption by to the public,377.966297184,TJ,CO2,74100.0,kg/TJ,28007302.6213344,kg -3edc5770-dff1-3797-83fb-a81fb566e45e,SESCO,II.1.1,San Juan,AR-J,annual,2017,gas oil combustion consumption by to the public,377.966297184,TJ,CH4,3.9,kg/TJ,1474.0685590176,kg -3edc5770-dff1-3797-83fb-a81fb566e45e,SESCO,II.1.1,San Juan,AR-J,annual,2017,gas oil combustion consumption by to the public,377.966297184,TJ,N2O,3.9,kg/TJ,1474.0685590176,kg -4172cc1d-ff51-363e-89da-7bf26d631504,SESCO,II.1.1,San Luis,AR-D,annual,2017,gas oil combustion consumption by to the public,261.490620804,TJ,CO2,74100.0,kg/TJ,19376455.0015764,kg -6f40cbb9-3ad2-3322-a22a-e016fe605f82,SESCO,II.1.1,San Luis,AR-D,annual,2017,gas oil combustion consumption by to the public,261.490620804,TJ,CH4,3.9,kg/TJ,1019.8134211356,kg -6f40cbb9-3ad2-3322-a22a-e016fe605f82,SESCO,II.1.1,San Luis,AR-D,annual,2017,gas oil combustion consumption by to the public,261.490620804,TJ,N2O,3.9,kg/TJ,1019.8134211356,kg -848fa7cc-706c-3f79-991a-fde276352c2f,SESCO,II.1.1,Santa Fe,AR-S,annual,2017,gas oil combustion consumption by to the public,2542.862603316,TJ,CO2,74100.0,kg/TJ,188426118.90571558,kg -52b4fc9f-b843-302b-873a-30fb163d145a,SESCO,II.1.1,Santa Fe,AR-S,annual,2017,gas oil combustion consumption by to the public,2542.862603316,TJ,CH4,3.9,kg/TJ,9917.164152932399,kg -52b4fc9f-b843-302b-873a-30fb163d145a,SESCO,II.1.1,Santa Fe,AR-S,annual,2017,gas oil combustion consumption by to the public,2542.862603316,TJ,N2O,3.9,kg/TJ,9917.164152932399,kg -7195642c-9067-3fef-99d2-74b825c451b1,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2017,gas oil combustion consumption by to the public,158.302625544,TJ,CO2,74100.0,kg/TJ,11730224.552810399,kg -d9b013e1-eb9f-3afa-b5e3-8dfabdd48d9d,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2017,gas oil combustion consumption by to the public,158.302625544,TJ,CH4,3.9,kg/TJ,617.3802396215999,kg -d9b013e1-eb9f-3afa-b5e3-8dfabdd48d9d,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2017,gas oil combustion consumption by to the public,158.302625544,TJ,N2O,3.9,kg/TJ,617.3802396215999,kg -77337eac-cbeb-3264-8b46-7c950b3d917e,SESCO,II.1.1,Tucuman,AR-T,annual,2017,gas oil combustion consumption by to the public,308.978086872,TJ,CO2,74100.0,kg/TJ,22895276.2372152,kg -92c6f33c-e7bc-3894-a6e6-e8d9af2f8bc3,SESCO,II.1.1,Tucuman,AR-T,annual,2017,gas oil combustion consumption by to the public,308.978086872,TJ,CH4,3.9,kg/TJ,1205.0145388008,kg -92c6f33c-e7bc-3894-a6e6-e8d9af2f8bc3,SESCO,II.1.1,Tucuman,AR-T,annual,2017,gas oil combustion consumption by to the public,308.978086872,TJ,N2O,3.9,kg/TJ,1205.0145388008,kg -f6cee6e1-b112-3d5f-8c36-3ee4c300a6a2,SESCO,II.1.1,Buenos Aires,AR-B,annual,2017,gas oil combustion consumption by to the public,569.1673510319999,TJ,CO2,74100.0,kg/TJ,42175300.71147119,kg -cd2f53e4-7dad-36c5-b54d-8674d3687074,SESCO,II.1.1,Buenos Aires,AR-B,annual,2017,gas oil combustion consumption by to the public,569.1673510319999,TJ,CH4,3.9,kg/TJ,2219.7526690247996,kg -cd2f53e4-7dad-36c5-b54d-8674d3687074,SESCO,II.1.1,Buenos Aires,AR-B,annual,2017,gas oil combustion consumption by to the public,569.1673510319999,TJ,N2O,3.9,kg/TJ,2219.7526690247996,kg -3934b57a-138e-3720-ae10-87230615d8c7,SESCO,II.1.1,Capital Federal,AR-C,annual,2017,gas oil combustion consumption by to the public,41.673919559999995,TJ,CO2,74100.0,kg/TJ,3088037.4393959995,kg -db483172-9a84-3d65-8d4c-51eb62315be8,SESCO,II.1.1,Capital Federal,AR-C,annual,2017,gas oil combustion consumption by to the public,41.673919559999995,TJ,CH4,3.9,kg/TJ,162.52828628399996,kg -db483172-9a84-3d65-8d4c-51eb62315be8,SESCO,II.1.1,Capital Federal,AR-C,annual,2017,gas oil combustion consumption by to the public,41.673919559999995,TJ,N2O,3.9,kg/TJ,162.52828628399996,kg -ac0fdd64-7e0e-34f9-8fb2-74fae44d935c,SESCO,II.1.1,Catamarca,AR-K,annual,2017,gas oil combustion consumption by to the public,46.124542884,TJ,CO2,74100.0,kg/TJ,3417828.6277044,kg -6ffa2ac0-3b50-3d57-99fd-04f7d2cb3b13,SESCO,II.1.1,Catamarca,AR-K,annual,2017,gas oil combustion consumption by to the public,46.124542884,TJ,CH4,3.9,kg/TJ,179.88571724759998,kg -6ffa2ac0-3b50-3d57-99fd-04f7d2cb3b13,SESCO,II.1.1,Catamarca,AR-K,annual,2017,gas oil combustion consumption by to the public,46.124542884,TJ,N2O,3.9,kg/TJ,179.88571724759998,kg -f0f9502c-239f-361a-a89e-8cf3557d199b,SESCO,II.1.1,Chaco,AR-H,annual,2017,gas oil combustion consumption by to the public,76.168750728,TJ,CO2,74100.0,kg/TJ,5644104.4289448,kg -b71b5b26-058c-34ca-8e78-f82d7d672f0b,SESCO,II.1.1,Chaco,AR-H,annual,2017,gas oil combustion consumption by to the public,76.168750728,TJ,CH4,3.9,kg/TJ,297.05812783920004,kg -b71b5b26-058c-34ca-8e78-f82d7d672f0b,SESCO,II.1.1,Chaco,AR-H,annual,2017,gas oil combustion consumption by to the public,76.168750728,TJ,N2O,3.9,kg/TJ,297.05812783920004,kg -4ddb3666-ba40-3908-ab55-10e8f3b62e32,SESCO,II.1.1,Corrientes,AR-W,annual,2017,gas oil combustion consumption by to the public,115.879815576,TJ,CO2,74100.0,kg/TJ,8586694.3341816,kg -79e2afe2-b2f6-3137-bc0c-1a14830c3445,SESCO,II.1.1,Corrientes,AR-W,annual,2017,gas oil combustion consumption by to the public,115.879815576,TJ,CH4,3.9,kg/TJ,451.9312807464,kg -79e2afe2-b2f6-3137-bc0c-1a14830c3445,SESCO,II.1.1,Corrientes,AR-W,annual,2017,gas oil combustion consumption by to the public,115.879815576,TJ,N2O,3.9,kg/TJ,451.9312807464,kg -58d366c8-a77d-3aed-bdeb-208324820904,SESCO,II.1.1,Córdoba,AR-X,annual,2017,gas oil combustion consumption by to the public,310.24598917199995,TJ,CO2,74100.0,kg/TJ,22989227.797645196,kg -4aa82dc7-a447-33b9-a1c0-68f5a1d19e3e,SESCO,II.1.1,Córdoba,AR-X,annual,2017,gas oil combustion consumption by to the public,310.24598917199995,TJ,CH4,3.9,kg/TJ,1209.9593577708,kg -4aa82dc7-a447-33b9-a1c0-68f5a1d19e3e,SESCO,II.1.1,Córdoba,AR-X,annual,2017,gas oil combustion consumption by to the public,310.24598917199995,TJ,N2O,3.9,kg/TJ,1209.9593577708,kg -fd36b9a2-dec2-3383-be6e-05e3af4cf5ed,SESCO,II.1.1,Entre Rios,AR-E,annual,2017,gas oil combustion consumption by to the public,119.879332608,TJ,CO2,74100.0,kg/TJ,8883058.5462528,kg -42750d0a-257d-36d2-a2b7-2c4a571aa298,SESCO,II.1.1,Entre Rios,AR-E,annual,2017,gas oil combustion consumption by to the public,119.879332608,TJ,CH4,3.9,kg/TJ,467.5293971712,kg -42750d0a-257d-36d2-a2b7-2c4a571aa298,SESCO,II.1.1,Entre Rios,AR-E,annual,2017,gas oil combustion consumption by to the public,119.879332608,TJ,N2O,3.9,kg/TJ,467.5293971712,kg -e3ce1084-efb0-3bc4-a165-f1d5f4d919b0,SESCO,II.1.1,La Pampa,AR-L,annual,2017,gas oil combustion consumption by to the public,9.426919068,TJ,CO2,74100.0,kg/TJ,698534.7029388,kg -1d52f3f3-e0ac-398e-bb02-53d8b5e3be99,SESCO,II.1.1,La Pampa,AR-L,annual,2017,gas oil combustion consumption by to the public,9.426919068,TJ,CH4,3.9,kg/TJ,36.7649843652,kg -1d52f3f3-e0ac-398e-bb02-53d8b5e3be99,SESCO,II.1.1,La Pampa,AR-L,annual,2017,gas oil combustion consumption by to the public,9.426919068,TJ,N2O,3.9,kg/TJ,36.7649843652,kg -947fe27f-c608-3e8e-9486-daf3d4e7d2ed,SESCO,II.1.1,La Rioja,AR-F,annual,2017,gas oil combustion consumption by to the public,17.10610692,TJ,CO2,74100.0,kg/TJ,1267562.522772,kg -59725a8e-4661-3b43-83eb-6ee5892aed63,SESCO,II.1.1,La Rioja,AR-F,annual,2017,gas oil combustion consumption by to the public,17.10610692,TJ,CH4,3.9,kg/TJ,66.71381698799999,kg -59725a8e-4661-3b43-83eb-6ee5892aed63,SESCO,II.1.1,La Rioja,AR-F,annual,2017,gas oil combustion consumption by to the public,17.10610692,TJ,N2O,3.9,kg/TJ,66.71381698799999,kg -3a249c37-3c8a-3268-b4cd-2642584d8379,SESCO,II.1.1,Mendoza,AR-M,annual,2017,gas oil combustion consumption by to the public,78.680640276,TJ,CO2,74100.0,kg/TJ,5830235.4444516,kg -055d1cb7-a135-3cc4-a0e5-c5bdca0f9ddb,SESCO,II.1.1,Mendoza,AR-M,annual,2017,gas oil combustion consumption by to the public,78.680640276,TJ,CH4,3.9,kg/TJ,306.85449707640004,kg -055d1cb7-a135-3cc4-a0e5-c5bdca0f9ddb,SESCO,II.1.1,Mendoza,AR-M,annual,2017,gas oil combustion consumption by to the public,78.680640276,TJ,N2O,3.9,kg/TJ,306.85449707640004,kg -46812913-ff11-3ce5-a292-a2464cc34331,SESCO,II.1.1,Misiones,AR-N,annual,2017,gas oil combustion consumption by to the public,94.657780476,TJ,CO2,74100.0,kg/TJ,7014141.5332716,kg -acff14bd-0ad9-3abb-91ef-a9caf0bc5054,SESCO,II.1.1,Misiones,AR-N,annual,2017,gas oil combustion consumption by to the public,94.657780476,TJ,CH4,3.9,kg/TJ,369.1653438564,kg -acff14bd-0ad9-3abb-91ef-a9caf0bc5054,SESCO,II.1.1,Misiones,AR-N,annual,2017,gas oil combustion consumption by to the public,94.657780476,TJ,N2O,3.9,kg/TJ,369.1653438564,kg -29677650-0131-31c2-81ee-d6de8320354e,SESCO,II.1.1,San Juan,AR-J,annual,2017,gas oil combustion consumption by to the public,56.76173118,TJ,CO2,74100.0,kg/TJ,4206044.280437999,kg -4efbb857-930f-33ad-82a0-31f1e23bd1ea,SESCO,II.1.1,San Juan,AR-J,annual,2017,gas oil combustion consumption by to the public,56.76173118,TJ,CH4,3.9,kg/TJ,221.37075160199998,kg -4efbb857-930f-33ad-82a0-31f1e23bd1ea,SESCO,II.1.1,San Juan,AR-J,annual,2017,gas oil combustion consumption by to the public,56.76173118,TJ,N2O,3.9,kg/TJ,221.37075160199998,kg -9f291ba5-9b63-33a1-b5ac-dbf3fb807326,SESCO,II.1.1,San Luis,AR-D,annual,2017,gas oil combustion consumption by to the public,63.411553211999994,TJ,CO2,74100.0,kg/TJ,4698796.0930092,kg -61e59f30-f4fe-3165-820f-65111a42aa0a,SESCO,II.1.1,San Luis,AR-D,annual,2017,gas oil combustion consumption by to the public,63.411553211999994,TJ,CH4,3.9,kg/TJ,247.30505752679997,kg -61e59f30-f4fe-3165-820f-65111a42aa0a,SESCO,II.1.1,San Luis,AR-D,annual,2017,gas oil combustion consumption by to the public,63.411553211999994,TJ,N2O,3.9,kg/TJ,247.30505752679997,kg -190be9f4-cab8-33dc-ae97-f65977b0f3f6,SESCO,II.1.1,Santa Fe,AR-S,annual,2017,gas oil combustion consumption by to the public,498.117479748,TJ,CO2,74100.0,kg/TJ,36910505.2493268,kg -2e77c7fd-6b42-3fd9-a30b-5ec24fff1483,SESCO,II.1.1,Santa Fe,AR-S,annual,2017,gas oil combustion consumption by to the public,498.117479748,TJ,CH4,3.9,kg/TJ,1942.6581710172,kg -2e77c7fd-6b42-3fd9-a30b-5ec24fff1483,SESCO,II.1.1,Santa Fe,AR-S,annual,2017,gas oil combustion consumption by to the public,498.117479748,TJ,N2O,3.9,kg/TJ,1942.6581710172,kg -39e89f72-a71a-3139-b79a-9a7720eda222,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2017,gas oil combustion consumption by to the public,67.89854215199999,TJ,CO2,74100.0,kg/TJ,5031281.973463199,kg -764b8efd-5da5-37f7-a36e-bcc821670c9f,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2017,gas oil combustion consumption by to the public,67.89854215199999,TJ,CH4,3.9,kg/TJ,264.80431439279994,kg -764b8efd-5da5-37f7-a36e-bcc821670c9f,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2017,gas oil combustion consumption by to the public,67.89854215199999,TJ,N2O,3.9,kg/TJ,264.80431439279994,kg -5f14aa07-a264-34bd-9061-48ee2c09cb74,SESCO,II.1.1,Tucuman,AR-T,annual,2017,gas oil combustion consumption by to the public,70.071152928,TJ,CO2,74100.0,kg/TJ,5192272.431964801,kg -d4389829-e883-30ee-b53a-d15937c36746,SESCO,II.1.1,Tucuman,AR-T,annual,2017,gas oil combustion consumption by to the public,70.071152928,TJ,CH4,3.9,kg/TJ,273.2774964192,kg -d4389829-e883-30ee-b53a-d15937c36746,SESCO,II.1.1,Tucuman,AR-T,annual,2017,gas oil combustion consumption by to the public,70.071152928,TJ,N2O,3.9,kg/TJ,273.2774964192,kg -6a2e054e-5fa8-347b-a72b-cba96c32a25f,SESCO,II.1.1,Buenos Aires,AR-B,annual,2017,gas oil combustion consumption by public passenger transport,235.69900477200002,TJ,CO2,74100.0,kg/TJ,17465296.2536052,kg -26e54846-116b-393b-a246-0e242d6a419e,SESCO,II.1.1,Buenos Aires,AR-B,annual,2017,gas oil combustion consumption by public passenger transport,235.69900477200002,TJ,CH4,3.9,kg/TJ,919.2261186108001,kg -26e54846-116b-393b-a246-0e242d6a419e,SESCO,II.1.1,Buenos Aires,AR-B,annual,2017,gas oil combustion consumption by public passenger transport,235.69900477200002,TJ,N2O,3.9,kg/TJ,919.2261186108001,kg -916ea2ad-4c30-3977-b48e-52e8962fb5b6,SESCO,II.1.1,Chaco,AR-H,annual,2017,gas oil combustion consumption by public passenger transport,18.47341146,TJ,CO2,74100.0,kg/TJ,1368879.7891860001,kg -19d7d05f-e589-3aa7-a602-11c811a1a396,SESCO,II.1.1,Chaco,AR-H,annual,2017,gas oil combustion consumption by public passenger transport,18.47341146,TJ,CH4,3.9,kg/TJ,72.046304694,kg -19d7d05f-e589-3aa7-a602-11c811a1a396,SESCO,II.1.1,Chaco,AR-H,annual,2017,gas oil combustion consumption by public passenger transport,18.47341146,TJ,N2O,3.9,kg/TJ,72.046304694,kg -2bc4fac9-d5a5-3c26-ac3f-17e2724922d0,SESCO,II.1.1,Corrientes,AR-W,annual,2017,gas oil combustion consumption by public passenger transport,40.182221352,TJ,CO2,74100.0,kg/TJ,2977502.6021832,kg -bdf8bfc6-b181-3ce5-9330-e67dcf169442,SESCO,II.1.1,Corrientes,AR-W,annual,2017,gas oil combustion consumption by public passenger transport,40.182221352,TJ,CH4,3.9,kg/TJ,156.7106632728,kg -bdf8bfc6-b181-3ce5-9330-e67dcf169442,SESCO,II.1.1,Corrientes,AR-W,annual,2017,gas oil combustion consumption by public passenger transport,40.182221352,TJ,N2O,3.9,kg/TJ,156.7106632728,kg -c5c85e13-78f5-3b20-b6f9-6ab99f2988c0,SESCO,II.1.1,Córdoba,AR-X,annual,2017,gas oil combustion consumption by public passenger transport,313.29673493999996,TJ,CO2,74100.0,kg/TJ,23215288.059054,kg -98c4f4e3-d815-35fb-9a6e-3150207d6153,SESCO,II.1.1,Córdoba,AR-X,annual,2017,gas oil combustion consumption by public passenger transport,313.29673493999996,TJ,CH4,3.9,kg/TJ,1221.857266266,kg -98c4f4e3-d815-35fb-9a6e-3150207d6153,SESCO,II.1.1,Córdoba,AR-X,annual,2017,gas oil combustion consumption by public passenger transport,313.29673493999996,TJ,N2O,3.9,kg/TJ,1221.857266266,kg -ee8b0e27-d952-3ed7-ba1d-cab3ea52ea1e,SESCO,II.1.1,Entre Rios,AR-E,annual,2017,gas oil combustion consumption by public passenger transport,94.01039449199999,TJ,CO2,74100.0,kg/TJ,6966170.231857199,kg -4663b242-6423-3aaa-81b2-69a7568480bf,SESCO,II.1.1,Entre Rios,AR-E,annual,2017,gas oil combustion consumption by public passenger transport,94.01039449199999,TJ,CH4,3.9,kg/TJ,366.64053851879993,kg -4663b242-6423-3aaa-81b2-69a7568480bf,SESCO,II.1.1,Entre Rios,AR-E,annual,2017,gas oil combustion consumption by public passenger transport,94.01039449199999,TJ,N2O,3.9,kg/TJ,366.64053851879993,kg -cb97370c-8d7c-325f-a6f4-4472c9d61f21,SESCO,II.1.1,Jujuy,AR-Y,annual,2017,gas oil combustion consumption by public passenger transport,101.284301496,TJ,CO2,74100.0,kg/TJ,7505166.7408536,kg -73a3441c-a88a-312e-8b5a-087ee2ccbebc,SESCO,II.1.1,Jujuy,AR-Y,annual,2017,gas oil combustion consumption by public passenger transport,101.284301496,TJ,CH4,3.9,kg/TJ,395.00877583439996,kg -73a3441c-a88a-312e-8b5a-087ee2ccbebc,SESCO,II.1.1,Jujuy,AR-Y,annual,2017,gas oil combustion consumption by public passenger transport,101.284301496,TJ,N2O,3.9,kg/TJ,395.00877583439996,kg -bc35bbd7-646f-38f5-b152-3da313ef19f0,SESCO,II.1.1,Salta,AR-A,annual,2017,gas oil combustion consumption by public passenger transport,77.558623044,TJ,CO2,74100.0,kg/TJ,5747093.9675604,kg -a6eba0fa-090b-3e61-a701-b807cec0b2f3,SESCO,II.1.1,Salta,AR-A,annual,2017,gas oil combustion consumption by public passenger transport,77.558623044,TJ,CH4,3.9,kg/TJ,302.4786298716,kg -a6eba0fa-090b-3e61-a701-b807cec0b2f3,SESCO,II.1.1,Salta,AR-A,annual,2017,gas oil combustion consumption by public passenger transport,77.558623044,TJ,N2O,3.9,kg/TJ,302.4786298716,kg -192d9872-76c9-3047-8600-6518c607b6d1,SESCO,II.1.1,Santa Fe,AR-S,annual,2017,gas oil combustion consumption by public passenger transport,272.668485768,TJ,CO2,74100.0,kg/TJ,20204734.7954088,kg -5d43ba6d-b1d2-368b-90a9-15ab241b066a,SESCO,II.1.1,Santa Fe,AR-S,annual,2017,gas oil combustion consumption by public passenger transport,272.668485768,TJ,CH4,3.9,kg/TJ,1063.4070944952,kg -5d43ba6d-b1d2-368b-90a9-15ab241b066a,SESCO,II.1.1,Santa Fe,AR-S,annual,2017,gas oil combustion consumption by public passenger transport,272.668485768,TJ,N2O,3.9,kg/TJ,1063.4070944952,kg -f6133e4b-e670-3ee6-a286-075b878a30a3,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2017,gas oil combustion consumption by public passenger transport,121.465567692,TJ,CO2,74100.0,kg/TJ,9000598.565977199,kg -9787019c-d09f-305b-8ef1-af6141ec1d33,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2017,gas oil combustion consumption by public passenger transport,121.465567692,TJ,CH4,3.9,kg/TJ,473.71571399879997,kg -9787019c-d09f-305b-8ef1-af6141ec1d33,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2017,gas oil combustion consumption by public passenger transport,121.465567692,TJ,N2O,3.9,kg/TJ,473.71571399879997,kg -7d77b6bb-5af9-3962-a41c-286454c6b874,SESCO,II.1.1,Tucuman,AR-T,annual,2017,gas oil combustion consumption by public passenger transport,27.257156136,TJ,CO2,74100.0,kg/TJ,2019755.2696776,kg -e90796e3-9220-3b57-a514-cae2a075f052,SESCO,II.1.1,Tucuman,AR-T,annual,2017,gas oil combustion consumption by public passenger transport,27.257156136,TJ,CH4,3.9,kg/TJ,106.3029089304,kg -e90796e3-9220-3b57-a514-cae2a075f052,SESCO,II.1.1,Tucuman,AR-T,annual,2017,gas oil combustion consumption by public passenger transport,27.257156136,TJ,N2O,3.9,kg/TJ,106.3029089304,kg -2c008d92-5298-3e9e-99f2-e1f1229900d8,SESCO,II.1.1,Buenos Aires,AR-B,annual,2017,gas oil combustion consumption by public passenger transport,23.747393796,TJ,CO2,74100.0,kg/TJ,1759681.8802836,kg -3eac7284-a543-37d1-abd5-58fe88f8da0b,SESCO,II.1.1,Buenos Aires,AR-B,annual,2017,gas oil combustion consumption by public passenger transport,23.747393796,TJ,CH4,3.9,kg/TJ,92.6148358044,kg -3eac7284-a543-37d1-abd5-58fe88f8da0b,SESCO,II.1.1,Buenos Aires,AR-B,annual,2017,gas oil combustion consumption by public passenger transport,23.747393796,TJ,N2O,3.9,kg/TJ,92.6148358044,kg -f091200c-d27d-3dd3-a2d5-93d4443306f6,SESCO,II.1.1,Corrientes,AR-W,annual,2017,gas oil combustion consumption by public passenger transport,3.98976102,TJ,CO2,74100.0,kg/TJ,295641.291582,kg -e7490413-0fe9-3956-b4d5-2b635b747e4c,SESCO,II.1.1,Corrientes,AR-W,annual,2017,gas oil combustion consumption by public passenger transport,3.98976102,TJ,CH4,3.9,kg/TJ,15.560067978,kg -e7490413-0fe9-3956-b4d5-2b635b747e4c,SESCO,II.1.1,Corrientes,AR-W,annual,2017,gas oil combustion consumption by public passenger transport,3.98976102,TJ,N2O,3.9,kg/TJ,15.560067978,kg -ba3ef0d0-30fa-3099-8e3b-7e1e1af1caeb,SESCO,II.1.1,Córdoba,AR-X,annual,2017,gas oil combustion consumption by public passenger transport,18.552691248,TJ,CO2,74100.0,kg/TJ,1374754.4214768,kg -c7b81b05-0a00-3179-8d9a-29852d2ee701,SESCO,II.1.1,Córdoba,AR-X,annual,2017,gas oil combustion consumption by public passenger transport,18.552691248,TJ,CH4,3.9,kg/TJ,72.35549586719999,kg -c7b81b05-0a00-3179-8d9a-29852d2ee701,SESCO,II.1.1,Córdoba,AR-X,annual,2017,gas oil combustion consumption by public passenger transport,18.552691248,TJ,N2O,3.9,kg/TJ,72.35549586719999,kg -76c3cc7b-8389-3ee9-b66f-ece60e927063,SESCO,II.1.1,Entre Rios,AR-E,annual,2017,gas oil combustion consumption by public passenger transport,4.567258416,TJ,CO2,74100.0,kg/TJ,338433.8486256,kg -a8e7b5e3-cb8d-37ee-bd54-6d31526bf1da,SESCO,II.1.1,Entre Rios,AR-E,annual,2017,gas oil combustion consumption by public passenger transport,4.567258416,TJ,CH4,3.9,kg/TJ,17.812307822399998,kg -a8e7b5e3-cb8d-37ee-bd54-6d31526bf1da,SESCO,II.1.1,Entre Rios,AR-E,annual,2017,gas oil combustion consumption by public passenger transport,4.567258416,TJ,N2O,3.9,kg/TJ,17.812307822399998,kg -b5a2773e-5eeb-30f3-b8e1-7b9c3a394980,SESCO,II.1.1,Jujuy,AR-Y,annual,2017,gas oil combustion consumption by public passenger transport,2.6988322200000003,TJ,CO2,74100.0,kg/TJ,199983.467502,kg -ed660806-bd64-3f19-b1e9-426b190890de,SESCO,II.1.1,Jujuy,AR-Y,annual,2017,gas oil combustion consumption by public passenger transport,2.6988322200000003,TJ,CH4,3.9,kg/TJ,10.525445658,kg -ed660806-bd64-3f19-b1e9-426b190890de,SESCO,II.1.1,Jujuy,AR-Y,annual,2017,gas oil combustion consumption by public passenger transport,2.6988322200000003,TJ,N2O,3.9,kg/TJ,10.525445658,kg -76b81b66-cfa0-3b7e-a4ae-7ea7cbfac925,SESCO,II.1.1,Santa Fe,AR-S,annual,2017,gas oil combustion consumption by public passenger transport,18.02935218,TJ,CO2,74100.0,kg/TJ,1335974.996538,kg -8ad2a584-989c-3a72-9afe-30fd83b377ea,SESCO,II.1.1,Santa Fe,AR-S,annual,2017,gas oil combustion consumption by public passenger transport,18.02935218,TJ,CH4,3.9,kg/TJ,70.314473502,kg -8ad2a584-989c-3a72-9afe-30fd83b377ea,SESCO,II.1.1,Santa Fe,AR-S,annual,2017,gas oil combustion consumption by public passenger transport,18.02935218,TJ,N2O,3.9,kg/TJ,70.314473502,kg -39d9bd17-4015-35c3-9f74-1baaa0683b6f,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2017,gas oil combustion consumption by public passenger transport,7.802093375999999,TJ,CO2,74100.0,kg/TJ,578135.1191615999,kg -f453fe8c-5ea2-388a-bbfe-510d36464c21,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2017,gas oil combustion consumption by public passenger transport,7.802093375999999,TJ,CH4,3.9,kg/TJ,30.428164166399995,kg -f453fe8c-5ea2-388a-bbfe-510d36464c21,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2017,gas oil combustion consumption by public passenger transport,7.802093375999999,TJ,N2O,3.9,kg/TJ,30.428164166399995,kg -38a3992e-f6db-3736-8238-f516fbd23647,SESCO,II.1.1,Tucuman,AR-T,annual,2017,gas oil combustion consumption by public passenger transport,3.30963948,TJ,CO2,74100.0,kg/TJ,245244.285468,kg -b27e6b8b-baba-37b8-b8a4-e68512c5b701,SESCO,II.1.1,Tucuman,AR-T,annual,2017,gas oil combustion consumption by public passenger transport,3.30963948,TJ,CH4,3.9,kg/TJ,12.907593971999999,kg -b27e6b8b-baba-37b8-b8a4-e68512c5b701,SESCO,II.1.1,Tucuman,AR-T,annual,2017,gas oil combustion consumption by public passenger transport,3.30963948,TJ,N2O,3.9,kg/TJ,12.907593971999999,kg -b339e239-2d35-387b-8338-b178b225dbff,SESCO,II.5.1,Buenos Aires,AR-B,annual,2017,gas oil combustion consumption by agriculture machines,448.42745219999995,TJ,CO2,74100.0,kg/TJ,33228474.208019998,kg -a8dc0630-4a70-305f-a770-8a843b9e3fc3,SESCO,II.5.1,Buenos Aires,AR-B,annual,2017,gas oil combustion consumption by agriculture machines,448.42745219999995,TJ,CH4,3.9,kg/TJ,1748.8670635799997,kg -a8dc0630-4a70-305f-a770-8a843b9e3fc3,SESCO,II.5.1,Buenos Aires,AR-B,annual,2017,gas oil combustion consumption by agriculture machines,448.42745219999995,TJ,N2O,3.9,kg/TJ,1748.8670635799997,kg -d56ee912-758d-3413-af99-d649532afffa,SESCO,II.5.1,Córdoba,AR-X,annual,2017,gas oil combustion consumption by agriculture machines,53.24203584,TJ,CO2,74100.0,kg/TJ,3945234.855744,kg -ea23c7fd-2102-372a-bed3-aa4b86729355,SESCO,II.5.1,Córdoba,AR-X,annual,2017,gas oil combustion consumption by agriculture machines,53.24203584,TJ,CH4,3.9,kg/TJ,207.643939776,kg -ea23c7fd-2102-372a-bed3-aa4b86729355,SESCO,II.5.1,Córdoba,AR-X,annual,2017,gas oil combustion consumption by agriculture machines,53.24203584,TJ,N2O,3.9,kg/TJ,207.643939776,kg -de4d18cc-39b4-37cb-a31c-4ec328db3f2e,SESCO,II.5.1,Entre Rios,AR-E,annual,2017,gas oil combustion consumption by agriculture machines,16.69000452,TJ,CO2,74100.0,kg/TJ,1236729.334932,kg -3ce191ee-cb85-39d0-a8fe-4e389c75d0c6,SESCO,II.5.1,Entre Rios,AR-E,annual,2017,gas oil combustion consumption by agriculture machines,16.69000452,TJ,CH4,3.9,kg/TJ,65.09101762799999,kg -3ce191ee-cb85-39d0-a8fe-4e389c75d0c6,SESCO,II.5.1,Entre Rios,AR-E,annual,2017,gas oil combustion consumption by agriculture machines,16.69000452,TJ,N2O,3.9,kg/TJ,65.09101762799999,kg -1a79708a-8ef2-3f98-8fe7-afcd23c00593,SESCO,II.5.1,La Pampa,AR-L,annual,2017,gas oil combustion consumption by agriculture machines,6.11695812,TJ,CO2,74100.0,kg/TJ,453266.596692,kg -7ed76d4f-6401-3243-a283-3dbf12fc473b,SESCO,II.5.1,La Pampa,AR-L,annual,2017,gas oil combustion consumption by agriculture machines,6.11695812,TJ,CH4,3.9,kg/TJ,23.856136667999998,kg -7ed76d4f-6401-3243-a283-3dbf12fc473b,SESCO,II.5.1,La Pampa,AR-L,annual,2017,gas oil combustion consumption by agriculture machines,6.11695812,TJ,N2O,3.9,kg/TJ,23.856136667999998,kg -0092590b-aa44-3729-b08c-94856f534d80,SESCO,II.5.1,Neuquén,AR-Q,annual,2017,gas oil combustion consumption by agriculture machines,1.2481988400000001,TJ,CO2,74100.0,kg/TJ,92491.53404400001,kg -b35fed21-ad56-3cf1-aa78-f419fabc29ee,SESCO,II.5.1,Neuquén,AR-Q,annual,2017,gas oil combustion consumption by agriculture machines,1.2481988400000001,TJ,CH4,3.9,kg/TJ,4.867975476000001,kg -b35fed21-ad56-3cf1-aa78-f419fabc29ee,SESCO,II.5.1,Neuquén,AR-Q,annual,2017,gas oil combustion consumption by agriculture machines,1.2481988400000001,TJ,N2O,3.9,kg/TJ,4.867975476000001,kg -33d3ceab-1502-3cbc-9200-5ce5c7809335,SESCO,II.5.1,Rio Negro,AR-R,annual,2017,gas oil combustion consumption by agriculture machines,2.4658762800000003,TJ,CO2,74100.0,kg/TJ,182721.43234800003,kg -9f3f8157-4943-3431-83b7-c0b3b93da2f9,SESCO,II.5.1,Rio Negro,AR-R,annual,2017,gas oil combustion consumption by agriculture machines,2.4658762800000003,TJ,CH4,3.9,kg/TJ,9.616917492,kg -9f3f8157-4943-3431-83b7-c0b3b93da2f9,SESCO,II.5.1,Rio Negro,AR-R,annual,2017,gas oil combustion consumption by agriculture machines,2.4658762800000003,TJ,N2O,3.9,kg/TJ,9.616917492,kg -e0ba5a67-084a-38ea-a5b7-30bb5eb70bc7,SESCO,II.1.1,Buenos Aires,AR-B,annual,2017,gas oil combustion consumption by to the public,8096.1690516,TJ,CO2,74100.0,kg/TJ,599926126.72356,kg -cfa8c862-7b44-3242-8cb9-94d6d5784cd2,SESCO,II.1.1,Buenos Aires,AR-B,annual,2017,gas oil combustion consumption by to the public,8096.1690516,TJ,CH4,3.9,kg/TJ,31575.05930124,kg -cfa8c862-7b44-3242-8cb9-94d6d5784cd2,SESCO,II.1.1,Buenos Aires,AR-B,annual,2017,gas oil combustion consumption by to the public,8096.1690516,TJ,N2O,3.9,kg/TJ,31575.05930124,kg -1dab5ce5-3c4b-3224-a46a-c16e443361e8,SESCO,II.1.1,Capital Federal,AR-C,annual,2017,gas oil combustion consumption by to the public,420.29257284,TJ,CO2,74100.0,kg/TJ,31143679.647444,kg -6b9adca4-917b-3d22-bbc6-486e64d3be1d,SESCO,II.1.1,Capital Federal,AR-C,annual,2017,gas oil combustion consumption by to the public,420.29257284,TJ,CH4,3.9,kg/TJ,1639.1410340759999,kg -6b9adca4-917b-3d22-bbc6-486e64d3be1d,SESCO,II.1.1,Capital Federal,AR-C,annual,2017,gas oil combustion consumption by to the public,420.29257284,TJ,N2O,3.9,kg/TJ,1639.1410340759999,kg -cdae4a1d-b4cc-393a-903c-1d831af5bd3c,SESCO,II.1.1,Chubut,AR-U,annual,2017,gas oil combustion consumption by to the public,1264.33693092,TJ,CO2,74100.0,kg/TJ,93687366.581172,kg -67558db5-c3f7-35f2-b4a2-946d7be0b6e2,SESCO,II.1.1,Chubut,AR-U,annual,2017,gas oil combustion consumption by to the public,1264.33693092,TJ,CH4,3.9,kg/TJ,4930.914030588,kg -67558db5-c3f7-35f2-b4a2-946d7be0b6e2,SESCO,II.1.1,Chubut,AR-U,annual,2017,gas oil combustion consumption by to the public,1264.33693092,TJ,N2O,3.9,kg/TJ,4930.914030588,kg -2d5bcfb4-5cd2-3d50-b0fc-a682787dbb8c,SESCO,II.1.1,Córdoba,AR-X,annual,2017,gas oil combustion consumption by to the public,426.97101636,TJ,CO2,74100.0,kg/TJ,31638552.312276002,kg -8fa4231b-5d8f-32b9-82ad-92d11e82a87e,SESCO,II.1.1,Córdoba,AR-X,annual,2017,gas oil combustion consumption by to the public,426.97101636,TJ,CH4,3.9,kg/TJ,1665.186963804,kg -8fa4231b-5d8f-32b9-82ad-92d11e82a87e,SESCO,II.1.1,Córdoba,AR-X,annual,2017,gas oil combustion consumption by to the public,426.97101636,TJ,N2O,3.9,kg/TJ,1665.186963804,kg -8783e0af-d366-3a33-b5ff-16394ac6d2e8,SESCO,II.1.1,Entre Rios,AR-E,annual,2017,gas oil combustion consumption by to the public,576.9729336,TJ,CO2,74100.0,kg/TJ,42753694.379760005,kg -c3926e83-4f8b-3b07-9a59-c42177b723a8,SESCO,II.1.1,Entre Rios,AR-E,annual,2017,gas oil combustion consumption by to the public,576.9729336,TJ,CH4,3.9,kg/TJ,2250.19444104,kg -c3926e83-4f8b-3b07-9a59-c42177b723a8,SESCO,II.1.1,Entre Rios,AR-E,annual,2017,gas oil combustion consumption by to the public,576.9729336,TJ,N2O,3.9,kg/TJ,2250.19444104,kg -e3d27de6-2a8b-3b70-8886-debf5f2002f7,SESCO,II.1.1,La Pampa,AR-L,annual,2017,gas oil combustion consumption by to the public,1453.29860256,TJ,CO2,74100.0,kg/TJ,107689426.449696,kg -85954ee6-aedb-3a69-8eb4-ce87bda43d03,SESCO,II.1.1,La Pampa,AR-L,annual,2017,gas oil combustion consumption by to the public,1453.29860256,TJ,CH4,3.9,kg/TJ,5667.864549984,kg -85954ee6-aedb-3a69-8eb4-ce87bda43d03,SESCO,II.1.1,La Pampa,AR-L,annual,2017,gas oil combustion consumption by to the public,1453.29860256,TJ,N2O,3.9,kg/TJ,5667.864549984,kg -b22a2c87-865e-3db5-9808-cdccb77a44d1,SESCO,II.1.1,Neuquén,AR-Q,annual,2017,gas oil combustion consumption by to the public,455.73644256,TJ,CO2,74100.0,kg/TJ,33770070.393696,kg -5b04e5ce-338d-3b14-8bef-905f72b99b1a,SESCO,II.1.1,Neuquén,AR-Q,annual,2017,gas oil combustion consumption by to the public,455.73644256,TJ,CH4,3.9,kg/TJ,1777.372125984,kg -5b04e5ce-338d-3b14-8bef-905f72b99b1a,SESCO,II.1.1,Neuquén,AR-Q,annual,2017,gas oil combustion consumption by to the public,455.73644256,TJ,N2O,3.9,kg/TJ,1777.372125984,kg -767a8001-9e2d-311a-9236-4cf890c3f9d3,SESCO,II.1.1,Rio Negro,AR-R,annual,2017,gas oil combustion consumption by to the public,1118.90390472,TJ,CO2,74100.0,kg/TJ,82910779.33975199,kg -b88f3976-0908-3343-a943-8b6ee0adfcda,SESCO,II.1.1,Rio Negro,AR-R,annual,2017,gas oil combustion consumption by to the public,1118.90390472,TJ,CH4,3.9,kg/TJ,4363.725228408,kg -b88f3976-0908-3343-a943-8b6ee0adfcda,SESCO,II.1.1,Rio Negro,AR-R,annual,2017,gas oil combustion consumption by to the public,1118.90390472,TJ,N2O,3.9,kg/TJ,4363.725228408,kg -33fcd8ac-70fe-31e5-a4dd-3352727f5adf,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2017,gas oil combustion consumption by to the public,702.26393076,TJ,CO2,74100.0,kg/TJ,52037757.269316,kg -c75eb2e1-970c-3feb-9a51-bb982443f0fa,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2017,gas oil combustion consumption by to the public,702.26393076,TJ,CH4,3.9,kg/TJ,2738.829329964,kg -c75eb2e1-970c-3feb-9a51-bb982443f0fa,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2017,gas oil combustion consumption by to the public,702.26393076,TJ,N2O,3.9,kg/TJ,2738.829329964,kg -e5f78164-4a91-354b-855e-975d098b05b1,SESCO,II.1.1,Santa Fe,AR-S,annual,2017,gas oil combustion consumption by to the public,365.53309967999996,TJ,CO2,74100.0,kg/TJ,27086002.686288,kg -412eceb2-84cf-336a-bc36-8a6d1ae9f11a,SESCO,II.1.1,Santa Fe,AR-S,annual,2017,gas oil combustion consumption by to the public,365.53309967999996,TJ,CH4,3.9,kg/TJ,1425.5790887519997,kg -412eceb2-84cf-336a-bc36-8a6d1ae9f11a,SESCO,II.1.1,Santa Fe,AR-S,annual,2017,gas oil combustion consumption by to the public,365.53309967999996,TJ,N2O,3.9,kg/TJ,1425.5790887519997,kg -e325f61a-6e51-3989-bd71-a539941fffa0,SESCO,II.1.1,Buenos Aires,AR-B,annual,2017,gas oil combustion consumption by to the public,1446.195135,TJ,CO2,74100.0,kg/TJ,107163059.5035,kg -264df1be-ce83-3340-bb07-16043be05be7,SESCO,II.1.1,Buenos Aires,AR-B,annual,2017,gas oil combustion consumption by to the public,1446.195135,TJ,CH4,3.9,kg/TJ,5640.1610265,kg -264df1be-ce83-3340-bb07-16043be05be7,SESCO,II.1.1,Buenos Aires,AR-B,annual,2017,gas oil combustion consumption by to the public,1446.195135,TJ,N2O,3.9,kg/TJ,5640.1610265,kg -d57463fb-0e8b-3c51-b405-a8d4c0fa59ea,SESCO,II.1.1,Capital Federal,AR-C,annual,2017,gas oil combustion consumption by to the public,126.94150056,TJ,CO2,74100.0,kg/TJ,9406365.191496,kg -041cb9d0-e534-3cce-a472-bca8e94d9814,SESCO,II.1.1,Capital Federal,AR-C,annual,2017,gas oil combustion consumption by to the public,126.94150056,TJ,CH4,3.9,kg/TJ,495.07185218399997,kg -041cb9d0-e534-3cce-a472-bca8e94d9814,SESCO,II.1.1,Capital Federal,AR-C,annual,2017,gas oil combustion consumption by to the public,126.94150056,TJ,N2O,3.9,kg/TJ,495.07185218399997,kg -485a5b90-00d2-3020-a778-7320bca1a081,SESCO,II.1.1,Chubut,AR-U,annual,2017,gas oil combustion consumption by to the public,447.00110952,TJ,CO2,74100.0,kg/TJ,33122782.215432,kg -ac61e122-fdc8-3168-8d38-c295d5cf5f47,SESCO,II.1.1,Chubut,AR-U,annual,2017,gas oil combustion consumption by to the public,447.00110952,TJ,CH4,3.9,kg/TJ,1743.304327128,kg -ac61e122-fdc8-3168-8d38-c295d5cf5f47,SESCO,II.1.1,Chubut,AR-U,annual,2017,gas oil combustion consumption by to the public,447.00110952,TJ,N2O,3.9,kg/TJ,1743.304327128,kg -5c274ae4-38f5-35de-b4b7-0868eda6eb8e,SESCO,II.1.1,Córdoba,AR-X,annual,2017,gas oil combustion consumption by to the public,120.67254948,TJ,CO2,74100.0,kg/TJ,8941835.916468,kg -f0926bc3-7aa8-35e2-96f7-6413f2ec0b49,SESCO,II.1.1,Córdoba,AR-X,annual,2017,gas oil combustion consumption by to the public,120.67254948,TJ,CH4,3.9,kg/TJ,470.622942972,kg -f0926bc3-7aa8-35e2-96f7-6413f2ec0b49,SESCO,II.1.1,Córdoba,AR-X,annual,2017,gas oil combustion consumption by to the public,120.67254948,TJ,N2O,3.9,kg/TJ,470.622942972,kg -e2889195-958a-3654-812d-adf8cdf8baad,SESCO,II.1.1,Entre Rios,AR-E,annual,2017,gas oil combustion consumption by to the public,88.93173828,TJ,CO2,74100.0,kg/TJ,6589841.806548,kg -4ad25103-6e73-3565-b4dc-46152068d3de,SESCO,II.1.1,Entre Rios,AR-E,annual,2017,gas oil combustion consumption by to the public,88.93173828,TJ,CH4,3.9,kg/TJ,346.83377929200003,kg -4ad25103-6e73-3565-b4dc-46152068d3de,SESCO,II.1.1,Entre Rios,AR-E,annual,2017,gas oil combustion consumption by to the public,88.93173828,TJ,N2O,3.9,kg/TJ,346.83377929200003,kg -7fe34696-6662-3c0e-97cd-ebf2153cf24f,SESCO,II.1.1,La Pampa,AR-L,annual,2017,gas oil combustion consumption by to the public,179.7706848,TJ,CO2,74100.0,kg/TJ,13321007.74368,kg -0bf49625-07a4-3861-b15d-002e42cdc2ef,SESCO,II.1.1,La Pampa,AR-L,annual,2017,gas oil combustion consumption by to the public,179.7706848,TJ,CH4,3.9,kg/TJ,701.1056707199999,kg -0bf49625-07a4-3861-b15d-002e42cdc2ef,SESCO,II.1.1,La Pampa,AR-L,annual,2017,gas oil combustion consumption by to the public,179.7706848,TJ,N2O,3.9,kg/TJ,701.1056707199999,kg -9235cf49-6840-3b89-baf1-c3790850826f,SESCO,II.1.1,Neuquén,AR-Q,annual,2017,gas oil combustion consumption by to the public,373.62296832,TJ,CO2,74100.0,kg/TJ,27685461.952512,kg -389f9e72-37ee-3f60-b3ac-e830ef22c364,SESCO,II.1.1,Neuquén,AR-Q,annual,2017,gas oil combustion consumption by to the public,373.62296832,TJ,CH4,3.9,kg/TJ,1457.1295764479999,kg -389f9e72-37ee-3f60-b3ac-e830ef22c364,SESCO,II.1.1,Neuquén,AR-Q,annual,2017,gas oil combustion consumption by to the public,373.62296832,TJ,N2O,3.9,kg/TJ,1457.1295764479999,kg -2cb117e8-f0e7-3850-9211-6b72541a734b,SESCO,II.1.1,Rio Negro,AR-R,annual,2017,gas oil combustion consumption by to the public,372.79990188,TJ,CO2,74100.0,kg/TJ,27624472.729307998,kg -69f70a10-64bc-3a51-95b1-e97113337832,SESCO,II.1.1,Rio Negro,AR-R,annual,2017,gas oil combustion consumption by to the public,372.79990188,TJ,CH4,3.9,kg/TJ,1453.919617332,kg -69f70a10-64bc-3a51-95b1-e97113337832,SESCO,II.1.1,Rio Negro,AR-R,annual,2017,gas oil combustion consumption by to the public,372.79990188,TJ,N2O,3.9,kg/TJ,1453.919617332,kg -b331c0a6-6b30-3335-880f-84de5926772f,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2017,gas oil combustion consumption by to the public,359.8377342,TJ,CO2,74100.0,kg/TJ,26663976.10422,kg -9a673d8f-5b23-35ec-ad53-1483e0703a22,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2017,gas oil combustion consumption by to the public,359.8377342,TJ,CH4,3.9,kg/TJ,1403.36716338,kg -9a673d8f-5b23-35ec-ad53-1483e0703a22,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2017,gas oil combustion consumption by to the public,359.8377342,TJ,N2O,3.9,kg/TJ,1403.36716338,kg -ac40451c-8615-3e73-bf84-cacd608b13a9,SESCO,II.1.1,Santa Fe,AR-S,annual,2017,gas oil combustion consumption by to the public,221.84076852,TJ,CO2,74100.0,kg/TJ,16438400.947332,kg -ce594be1-437a-3ea7-b8f1-aab5123a6141,SESCO,II.1.1,Santa Fe,AR-S,annual,2017,gas oil combustion consumption by to the public,221.84076852,TJ,CH4,3.9,kg/TJ,865.1789972280001,kg -ce594be1-437a-3ea7-b8f1-aab5123a6141,SESCO,II.1.1,Santa Fe,AR-S,annual,2017,gas oil combustion consumption by to the public,221.84076852,TJ,N2O,3.9,kg/TJ,865.1789972280001,kg -373ab054-d856-3c91-bc2f-75e08ea6f2ce,SESCO,I.3.1,Santa Cruz,AR-Z,annual,2017,gas oil combustion consumption by petrochemical industries,39.09841908,TJ,CO2,74100.0,kg/TJ,2897192.853828,kg -69571c3e-e6f7-35ae-8024-b365f1c7bd8e,SESCO,I.3.1,Santa Cruz,AR-Z,annual,2017,gas oil combustion consumption by petrochemical industries,39.09841908,TJ,CH4,3.9,kg/TJ,152.483834412,kg -69571c3e-e6f7-35ae-8024-b365f1c7bd8e,SESCO,I.3.1,Santa Cruz,AR-Z,annual,2017,gas oil combustion consumption by petrochemical industries,39.09841908,TJ,N2O,3.9,kg/TJ,152.483834412,kg -1bdc40ce-1523-302d-ab0a-f8d8f54798f0,SESCO,I.3.1,Santa Cruz,AR-Z,annual,2017,gas oil combustion consumption by petrochemical industries,0.18164748,TJ,CO2,74100.0,kg/TJ,13460.078268,kg -8facff39-9951-35f3-818b-1b335eaa476c,SESCO,I.3.1,Santa Cruz,AR-Z,annual,2017,gas oil combustion consumption by petrochemical industries,0.18164748,TJ,CH4,3.9,kg/TJ,0.708425172,kg -8facff39-9951-35f3-818b-1b335eaa476c,SESCO,I.3.1,Santa Cruz,AR-Z,annual,2017,gas oil combustion consumption by petrochemical industries,0.18164748,TJ,N2O,3.9,kg/TJ,0.708425172,kg -c71af81e-5133-3fe8-b3c3-0a828c18cb4c,SESCO,II.1.1,Buenos Aires,AR-B,annual,2017,gas oil combustion consumption by freight transport,166.24034952,TJ,CO2,74100.0,kg/TJ,12318409.899432,kg -0d6c43a8-fcd0-3290-ac63-0ecc4d003708,SESCO,II.1.1,Buenos Aires,AR-B,annual,2017,gas oil combustion consumption by freight transport,166.24034952,TJ,CH4,3.9,kg/TJ,648.337363128,kg -0d6c43a8-fcd0-3290-ac63-0ecc4d003708,SESCO,II.1.1,Buenos Aires,AR-B,annual,2017,gas oil combustion consumption by freight transport,166.24034952,TJ,N2O,3.9,kg/TJ,648.337363128,kg -8933e642-8519-3ce7-bba3-c25f66cc6684,SESCO,II.1.1,Chubut,AR-U,annual,2017,gas oil combustion consumption by freight transport,5.15078424,TJ,CO2,74100.0,kg/TJ,381673.112184,kg -667ba3a9-a8dd-3a8d-bbed-aed35989291c,SESCO,II.1.1,Chubut,AR-U,annual,2017,gas oil combustion consumption by freight transport,5.15078424,TJ,CH4,3.9,kg/TJ,20.088058536,kg -667ba3a9-a8dd-3a8d-bbed-aed35989291c,SESCO,II.1.1,Chubut,AR-U,annual,2017,gas oil combustion consumption by freight transport,5.15078424,TJ,N2O,3.9,kg/TJ,20.088058536,kg -5580f66e-dd10-3edd-8d1c-c673c62b189f,SESCO,II.1.1,San Luis,AR-D,annual,2017,gas oil combustion consumption by freight transport,34.60035936,TJ,CO2,74100.0,kg/TJ,2563886.6285759998,kg -fef94ba0-69e6-3333-9d18-c5edcdfd0fa5,SESCO,II.1.1,San Luis,AR-D,annual,2017,gas oil combustion consumption by freight transport,34.60035936,TJ,CH4,3.9,kg/TJ,134.941401504,kg -fef94ba0-69e6-3333-9d18-c5edcdfd0fa5,SESCO,II.1.1,San Luis,AR-D,annual,2017,gas oil combustion consumption by freight transport,34.60035936,TJ,N2O,3.9,kg/TJ,134.941401504,kg -7c0e16bc-83ba-37a6-89a6-09b6de9364c3,SESCO,II.1.1,Buenos Aires,AR-B,annual,2017,gas oil combustion consumption by freight transport,4.77997632,TJ,CO2,74100.0,kg/TJ,354196.24531200004,kg -98a1fbf3-9913-323f-8214-2549d0031392,SESCO,II.1.1,Buenos Aires,AR-B,annual,2017,gas oil combustion consumption by freight transport,4.77997632,TJ,CH4,3.9,kg/TJ,18.641907648,kg -98a1fbf3-9913-323f-8214-2549d0031392,SESCO,II.1.1,Buenos Aires,AR-B,annual,2017,gas oil combustion consumption by freight transport,4.77997632,TJ,N2O,3.9,kg/TJ,18.641907648,kg -087014e0-996b-319d-846f-38daaaa61ed1,SESCO,II.1.1,Buenos Aires,AR-B,annual,2017,gas oil combustion consumption by public passenger transport,439.35121860000004,TJ,CO2,74100.0,kg/TJ,32555925.298260003,kg -0cc43bc1-143d-3bb4-8888-304fc9c189c8,SESCO,II.1.1,Buenos Aires,AR-B,annual,2017,gas oil combustion consumption by public passenger transport,439.35121860000004,TJ,CH4,3.9,kg/TJ,1713.4697525400002,kg -0cc43bc1-143d-3bb4-8888-304fc9c189c8,SESCO,II.1.1,Buenos Aires,AR-B,annual,2017,gas oil combustion consumption by public passenger transport,439.35121860000004,TJ,N2O,3.9,kg/TJ,1713.4697525400002,kg -81e151a1-0711-3d64-9aa6-714c417d9577,SESCO,II.1.1,Capital Federal,AR-C,annual,2017,gas oil combustion consumption by public passenger transport,68.99595443999999,TJ,CO2,74100.0,kg/TJ,5112600.2240039995,kg -8fc44171-73c8-3384-8123-0d72a1c1e470,SESCO,II.1.1,Capital Federal,AR-C,annual,2017,gas oil combustion consumption by public passenger transport,68.99595443999999,TJ,CH4,3.9,kg/TJ,269.08422231599997,kg -8fc44171-73c8-3384-8123-0d72a1c1e470,SESCO,II.1.1,Capital Federal,AR-C,annual,2017,gas oil combustion consumption by public passenger transport,68.99595443999999,TJ,N2O,3.9,kg/TJ,269.08422231599997,kg -e7086cd5-5bf2-3dd3-8253-93975f55ab66,SESCO,II.1.1,Chubut,AR-U,annual,2017,gas oil combustion consumption by public passenger transport,37.78227852,TJ,CO2,74100.0,kg/TJ,2799666.8383319997,kg -bd975df1-8748-337d-8e80-4fabd35d78ad,SESCO,II.1.1,Chubut,AR-U,annual,2017,gas oil combustion consumption by public passenger transport,37.78227852,TJ,CH4,3.9,kg/TJ,147.35088622799998,kg -bd975df1-8748-337d-8e80-4fabd35d78ad,SESCO,II.1.1,Chubut,AR-U,annual,2017,gas oil combustion consumption by public passenger transport,37.78227852,TJ,N2O,3.9,kg/TJ,147.35088622799998,kg -8f2ebd15-8995-3a12-a177-c954452b4d36,SESCO,II.1.1,Córdoba,AR-X,annual,2017,gas oil combustion consumption by public passenger transport,209.52988056,TJ,CO2,74100.0,kg/TJ,15526164.149496,kg -111e8051-4b74-3b79-90ec-5ab657d13db9,SESCO,II.1.1,Córdoba,AR-X,annual,2017,gas oil combustion consumption by public passenger transport,209.52988056,TJ,CH4,3.9,kg/TJ,817.166534184,kg -111e8051-4b74-3b79-90ec-5ab657d13db9,SESCO,II.1.1,Córdoba,AR-X,annual,2017,gas oil combustion consumption by public passenger transport,209.52988056,TJ,N2O,3.9,kg/TJ,817.166534184,kg -9170671e-d93c-395b-8b21-c5349fa49de3,SESCO,II.1.1,Neuquén,AR-Q,annual,2017,gas oil combustion consumption by public passenger transport,22.84864512,TJ,CO2,74100.0,kg/TJ,1693084.603392,kg -69ed0b27-1496-3afa-85cd-f2d119596335,SESCO,II.1.1,Neuquén,AR-Q,annual,2017,gas oil combustion consumption by public passenger transport,22.84864512,TJ,CH4,3.9,kg/TJ,89.109715968,kg -69ed0b27-1496-3afa-85cd-f2d119596335,SESCO,II.1.1,Neuquén,AR-Q,annual,2017,gas oil combustion consumption by public passenger transport,22.84864512,TJ,N2O,3.9,kg/TJ,89.109715968,kg -d91c0c5c-6ff1-3a01-9971-35399bbfc4e8,SESCO,II.1.1,Rio Negro,AR-R,annual,2017,gas oil combustion consumption by public passenger transport,120.03932976,TJ,CO2,74100.0,kg/TJ,8894914.335216,kg -321869d1-66f9-398b-aeaa-f48f82dedfc8,SESCO,II.1.1,Rio Negro,AR-R,annual,2017,gas oil combustion consumption by public passenger transport,120.03932976,TJ,CH4,3.9,kg/TJ,468.153386064,kg -321869d1-66f9-398b-aeaa-f48f82dedfc8,SESCO,II.1.1,Rio Negro,AR-R,annual,2017,gas oil combustion consumption by public passenger transport,120.03932976,TJ,N2O,3.9,kg/TJ,468.153386064,kg -3b08ea58-65ad-3862-97c1-f7a9a5c2dc5d,SESCO,II.1.1,Santa Fe,AR-S,annual,2017,gas oil combustion consumption by public passenger transport,5.545214639999999,TJ,CO2,74100.0,kg/TJ,410900.40482399997,kg -ada0350f-0366-3058-8d83-626543909ba6,SESCO,II.1.1,Santa Fe,AR-S,annual,2017,gas oil combustion consumption by public passenger transport,5.545214639999999,TJ,CH4,3.9,kg/TJ,21.626337095999997,kg -ada0350f-0366-3058-8d83-626543909ba6,SESCO,II.1.1,Santa Fe,AR-S,annual,2017,gas oil combustion consumption by public passenger transport,5.545214639999999,TJ,N2O,3.9,kg/TJ,21.626337095999997,kg -ac37acac-e64f-3629-98da-f5e35f02bb1b,SESCO,II.1.1,Buenos Aires,AR-B,annual,2017,gas oil combustion consumption by public passenger transport,25.38408852,TJ,CO2,74100.0,kg/TJ,1880960.959332,kg -23b74004-f005-3fc1-b3a9-c036292968f2,SESCO,II.1.1,Buenos Aires,AR-B,annual,2017,gas oil combustion consumption by public passenger transport,25.38408852,TJ,CH4,3.9,kg/TJ,98.99794522799999,kg -23b74004-f005-3fc1-b3a9-c036292968f2,SESCO,II.1.1,Buenos Aires,AR-B,annual,2017,gas oil combustion consumption by public passenger transport,25.38408852,TJ,N2O,3.9,kg/TJ,98.99794522799999,kg -bcee8d9e-13e9-3dd7-aa95-9b4cd227d9d9,SESCO,II.1.1,Córdoba,AR-X,annual,2017,gas oil combustion consumption by public passenger transport,3.41019756,TJ,CO2,74100.0,kg/TJ,252695.63919599997,kg -e30fed9c-8de5-377e-8729-e5787d43281f,SESCO,II.1.1,Córdoba,AR-X,annual,2017,gas oil combustion consumption by public passenger transport,3.41019756,TJ,CH4,3.9,kg/TJ,13.299770484,kg -e30fed9c-8de5-377e-8729-e5787d43281f,SESCO,II.1.1,Córdoba,AR-X,annual,2017,gas oil combustion consumption by public passenger transport,3.41019756,TJ,N2O,3.9,kg/TJ,13.299770484,kg -67c969e0-50d5-3574-9d88-86597c5c6987,SESCO,II.1.1,Neuquén,AR-Q,annual,2017,gas oil combustion consumption by public passenger transport,5.91829812,TJ,CO2,74100.0,kg/TJ,438545.89069200004,kg -0a90ab7f-bc7a-33f8-9003-c75d9aa7423b,SESCO,II.1.1,Neuquén,AR-Q,annual,2017,gas oil combustion consumption by public passenger transport,5.91829812,TJ,CH4,3.9,kg/TJ,23.081362668,kg -0a90ab7f-bc7a-33f8-9003-c75d9aa7423b,SESCO,II.1.1,Neuquén,AR-Q,annual,2017,gas oil combustion consumption by public passenger transport,5.91829812,TJ,N2O,3.9,kg/TJ,23.081362668,kg -50db05d7-2ec2-3c56-a153-dd6c4535a467,SESCO,II.1.1,Rio Negro,AR-R,annual,2017,gas oil combustion consumption by public passenger transport,4.65608472,TJ,CO2,74100.0,kg/TJ,345015.877752,kg -2a9948a0-af13-3aa7-938d-6b9a94f259cc,SESCO,II.1.1,Rio Negro,AR-R,annual,2017,gas oil combustion consumption by public passenger transport,4.65608472,TJ,CH4,3.9,kg/TJ,18.158730408,kg -2a9948a0-af13-3aa7-938d-6b9a94f259cc,SESCO,II.1.1,Rio Negro,AR-R,annual,2017,gas oil combustion consumption by public passenger transport,4.65608472,TJ,N2O,3.9,kg/TJ,18.158730408,kg -f9e4864f-26bd-32c3-871e-e1b27a912e10,SESCO,II.1.1,Buenos Aires,AR-B,annual,2017,gas oil combustion consumption by to the public,695.8192919999999,TJ,CO2,74100.0,kg/TJ,51560209.5372,kg -077fb8c1-9662-3a62-8f36-77ae7908b089,SESCO,II.1.1,Buenos Aires,AR-B,annual,2017,gas oil combustion consumption by to the public,695.8192919999999,TJ,CH4,3.9,kg/TJ,2713.6952387999995,kg -077fb8c1-9662-3a62-8f36-77ae7908b089,SESCO,II.1.1,Buenos Aires,AR-B,annual,2017,gas oil combustion consumption by to the public,695.8192919999999,TJ,N2O,3.9,kg/TJ,2713.6952387999995,kg -1080509c-6a46-3ec3-a9a5-90fb6b6d5b82,SESCO,II.1.1,Capital Federal,AR-C,annual,2017,gas oil combustion consumption by to the public,128.91228,TJ,CO2,74100.0,kg/TJ,9552399.948,kg -090c8067-0310-3a2d-a8bb-d07cad364d69,SESCO,II.1.1,Capital Federal,AR-C,annual,2017,gas oil combustion consumption by to the public,128.91228,TJ,CH4,3.9,kg/TJ,502.757892,kg -090c8067-0310-3a2d-a8bb-d07cad364d69,SESCO,II.1.1,Capital Federal,AR-C,annual,2017,gas oil combustion consumption by to the public,128.91228,TJ,N2O,3.9,kg/TJ,502.757892,kg -0273a293-59c4-3b82-b98e-a619390d683d,SESCO,II.1.1,Corrientes,AR-W,annual,2017,gas oil combustion consumption by to the public,31.0632,TJ,CO2,74100.0,kg/TJ,2301783.12,kg -b24a9e78-256a-3a61-9de6-20517abc3c98,SESCO,II.1.1,Corrientes,AR-W,annual,2017,gas oil combustion consumption by to the public,31.0632,TJ,CH4,3.9,kg/TJ,121.14648,kg -b24a9e78-256a-3a61-9de6-20517abc3c98,SESCO,II.1.1,Corrientes,AR-W,annual,2017,gas oil combustion consumption by to the public,31.0632,TJ,N2O,3.9,kg/TJ,121.14648,kg -19acfadc-ea4a-33b9-b58b-451f458984a0,SESCO,II.1.1,Córdoba,AR-X,annual,2017,gas oil combustion consumption by to the public,279.17148,TJ,CO2,74100.0,kg/TJ,20686606.667999998,kg -f927c891-d72a-3b8e-850d-bb9d03aaf550,SESCO,II.1.1,Córdoba,AR-X,annual,2017,gas oil combustion consumption by to the public,279.17148,TJ,CH4,3.9,kg/TJ,1088.768772,kg -f927c891-d72a-3b8e-850d-bb9d03aaf550,SESCO,II.1.1,Córdoba,AR-X,annual,2017,gas oil combustion consumption by to the public,279.17148,TJ,N2O,3.9,kg/TJ,1088.768772,kg -dc6ca151-56a8-3316-a4ad-175714cf716c,SESCO,II.1.1,Entre Rios,AR-E,annual,2017,gas oil combustion consumption by to the public,41.823348,TJ,CO2,74100.0,kg/TJ,3099110.0868,kg -1958ea23-8983-3011-a44e-c523422bbbe4,SESCO,II.1.1,Entre Rios,AR-E,annual,2017,gas oil combustion consumption by to the public,41.823348,TJ,CH4,3.9,kg/TJ,163.1110572,kg -1958ea23-8983-3011-a44e-c523422bbbe4,SESCO,II.1.1,Entre Rios,AR-E,annual,2017,gas oil combustion consumption by to the public,41.823348,TJ,N2O,3.9,kg/TJ,163.1110572,kg -b1cc8d99-0263-3227-8aab-a4f42902a5d9,SESCO,II.1.1,Salta,AR-A,annual,2017,gas oil combustion consumption by to the public,7.00728,TJ,CO2,74100.0,kg/TJ,519239.448,kg -5462f0e4-a946-394b-ba4a-0e17e7acea8c,SESCO,II.1.1,Salta,AR-A,annual,2017,gas oil combustion consumption by to the public,7.00728,TJ,CH4,3.9,kg/TJ,27.328391999999997,kg -5462f0e4-a946-394b-ba4a-0e17e7acea8c,SESCO,II.1.1,Salta,AR-A,annual,2017,gas oil combustion consumption by to the public,7.00728,TJ,N2O,3.9,kg/TJ,27.328391999999997,kg -dca24ec7-89d5-3f78-a7d8-8aa19e843e3f,SESCO,II.1.1,Santa Fe,AR-S,annual,2017,gas oil combustion consumption by to the public,36.64374,TJ,CO2,74100.0,kg/TJ,2715301.134,kg -9f6fb612-9f34-307d-88a2-a09bd2094519,SESCO,II.1.1,Santa Fe,AR-S,annual,2017,gas oil combustion consumption by to the public,36.64374,TJ,CH4,3.9,kg/TJ,142.910586,kg -9f6fb612-9f34-307d-88a2-a09bd2094519,SESCO,II.1.1,Santa Fe,AR-S,annual,2017,gas oil combustion consumption by to the public,36.64374,TJ,N2O,3.9,kg/TJ,142.910586,kg -58ea4b6d-a3e5-3b20-92be-f4a75202c0d7,SESCO,II.1.1,Buenos Aires,AR-B,annual,2017,gas oil combustion consumption by to the public,42.6216,TJ,CO2,74100.0,kg/TJ,3158260.56,kg -cba12c8d-2201-3530-90a8-fccc00e3d879,SESCO,II.1.1,Buenos Aires,AR-B,annual,2017,gas oil combustion consumption by to the public,42.6216,TJ,CH4,3.9,kg/TJ,166.22424,kg -cba12c8d-2201-3530-90a8-fccc00e3d879,SESCO,II.1.1,Buenos Aires,AR-B,annual,2017,gas oil combustion consumption by to the public,42.6216,TJ,N2O,3.9,kg/TJ,166.22424,kg -138df3cc-a54e-3ea1-9bd6-80698d7851ad,SESCO,II.1.1,Capital Federal,AR-C,annual,2017,gas oil combustion consumption by to the public,1.4447999999999999,TJ,CO2,74100.0,kg/TJ,107059.68,kg -0855ece8-3f2a-3e8f-b309-65bf3b6ad119,SESCO,II.1.1,Capital Federal,AR-C,annual,2017,gas oil combustion consumption by to the public,1.4447999999999999,TJ,CH4,3.9,kg/TJ,5.63472,kg -0855ece8-3f2a-3e8f-b309-65bf3b6ad119,SESCO,II.1.1,Capital Federal,AR-C,annual,2017,gas oil combustion consumption by to the public,1.4447999999999999,TJ,N2O,3.9,kg/TJ,5.63472,kg -cb5f3107-29ae-345a-87c8-ead06de6f3a1,SESCO,II.1.1,Corrientes,AR-W,annual,2017,gas oil combustion consumption by to the public,0.39732,TJ,CO2,74100.0,kg/TJ,29441.412,kg -ce536de0-e32d-3279-afe4-6a9a9bff6bf3,SESCO,II.1.1,Corrientes,AR-W,annual,2017,gas oil combustion consumption by to the public,0.39732,TJ,CH4,3.9,kg/TJ,1.549548,kg -ce536de0-e32d-3279-afe4-6a9a9bff6bf3,SESCO,II.1.1,Corrientes,AR-W,annual,2017,gas oil combustion consumption by to the public,0.39732,TJ,N2O,3.9,kg/TJ,1.549548,kg -100de17e-fcd7-3692-9a3b-8f304f9180eb,SESCO,II.1.1,Córdoba,AR-X,annual,2017,gas oil combustion consumption by to the public,6.79056,TJ,CO2,74100.0,kg/TJ,503180.496,kg -28d0072f-4707-3e70-97b5-4d9baf85300d,SESCO,II.1.1,Córdoba,AR-X,annual,2017,gas oil combustion consumption by to the public,6.79056,TJ,CH4,3.9,kg/TJ,26.483184,kg -28d0072f-4707-3e70-97b5-4d9baf85300d,SESCO,II.1.1,Córdoba,AR-X,annual,2017,gas oil combustion consumption by to the public,6.79056,TJ,N2O,3.9,kg/TJ,26.483184,kg -5b6b76b0-00b2-320e-bbd6-21efb46f984f,SESCO,II.1.1,Entre Rios,AR-E,annual,2017,gas oil combustion consumption by to the public,7.028951999999999,TJ,CO2,74100.0,kg/TJ,520845.34319999994,kg -038da1b3-5011-3645-aa0f-e81dddfe138c,SESCO,II.1.1,Entre Rios,AR-E,annual,2017,gas oil combustion consumption by to the public,7.028951999999999,TJ,CH4,3.9,kg/TJ,27.412912799999997,kg -038da1b3-5011-3645-aa0f-e81dddfe138c,SESCO,II.1.1,Entre Rios,AR-E,annual,2017,gas oil combustion consumption by to the public,7.028951999999999,TJ,N2O,3.9,kg/TJ,27.412912799999997,kg -68a40b0a-05a6-3fcf-bb51-e7b0ac34b889,SESCO,II.1.1,Santa Fe,AR-S,annual,2017,gas oil combustion consumption by to the public,1.806,TJ,CO2,74100.0,kg/TJ,133824.6,kg -577a550b-acc3-3aa5-9299-7ea583add2cb,SESCO,II.1.1,Santa Fe,AR-S,annual,2017,gas oil combustion consumption by to the public,1.806,TJ,CH4,3.9,kg/TJ,7.0434,kg -577a550b-acc3-3aa5-9299-7ea583add2cb,SESCO,II.1.1,Santa Fe,AR-S,annual,2017,gas oil combustion consumption by to the public,1.806,TJ,N2O,3.9,kg/TJ,7.0434,kg -b0c726f2-03ab-397c-a3f3-320e534bd209,SESCO,II.1.1,Catamarca,AR-K,annual,2017,gas oil combustion consumption by to the public,125.66870399999999,TJ,CO2,74100.0,kg/TJ,9312050.9664,kg -96ba3fb4-81fc-370f-9bb3-82c87387fae0,SESCO,II.1.1,Catamarca,AR-K,annual,2017,gas oil combustion consumption by to the public,125.66870399999999,TJ,CH4,3.9,kg/TJ,490.10794559999994,kg -96ba3fb4-81fc-370f-9bb3-82c87387fae0,SESCO,II.1.1,Catamarca,AR-K,annual,2017,gas oil combustion consumption by to the public,125.66870399999999,TJ,N2O,3.9,kg/TJ,490.10794559999994,kg -8a706bdc-f306-3fbc-91ff-adbc2242c265,SESCO,II.1.1,Chaco,AR-H,annual,2017,gas oil combustion consumption by to the public,136.995936,TJ,CO2,74100.0,kg/TJ,10151398.8576,kg -c5f87a0b-a172-3852-a422-d6f2502145ac,SESCO,II.1.1,Chaco,AR-H,annual,2017,gas oil combustion consumption by to the public,136.995936,TJ,CH4,3.9,kg/TJ,534.2841504,kg -c5f87a0b-a172-3852-a422-d6f2502145ac,SESCO,II.1.1,Chaco,AR-H,annual,2017,gas oil combustion consumption by to the public,136.995936,TJ,N2O,3.9,kg/TJ,534.2841504,kg -e5885f18-888a-3c22-9de0-a50413ff9ef6,SESCO,II.1.1,Jujuy,AR-Y,annual,2017,gas oil combustion consumption by to the public,594.7035192,TJ,CO2,74100.0,kg/TJ,44067530.772719994,kg -10271a58-1ff4-377f-8fbe-8ab9cbfbc97b,SESCO,II.1.1,Jujuy,AR-Y,annual,2017,gas oil combustion consumption by to the public,594.7035192,TJ,CH4,3.9,kg/TJ,2319.3437248799996,kg -10271a58-1ff4-377f-8fbe-8ab9cbfbc97b,SESCO,II.1.1,Jujuy,AR-Y,annual,2017,gas oil combustion consumption by to the public,594.7035192,TJ,N2O,3.9,kg/TJ,2319.3437248799996,kg -373fa03d-4862-3250-911b-5c81a108766b,SESCO,II.1.1,La Rioja,AR-F,annual,2017,gas oil combustion consumption by to the public,157.5919212,TJ,CO2,74100.0,kg/TJ,11677561.36092,kg -03788a31-8ed6-3fbf-ba76-4758eeb7fece,SESCO,II.1.1,La Rioja,AR-F,annual,2017,gas oil combustion consumption by to the public,157.5919212,TJ,CH4,3.9,kg/TJ,614.60849268,kg -03788a31-8ed6-3fbf-ba76-4758eeb7fece,SESCO,II.1.1,La Rioja,AR-F,annual,2017,gas oil combustion consumption by to the public,157.5919212,TJ,N2O,3.9,kg/TJ,614.60849268,kg -188c2e95-d779-38c5-b5e9-f7ebaa32f950,SESCO,II.1.1,Salta,AR-A,annual,2017,gas oil combustion consumption by to the public,1811.3901875999998,TJ,CO2,74100.0,kg/TJ,134224012.90115997,kg -ab4ee3e9-09ed-30dd-af5e-b68c020300e0,SESCO,II.1.1,Salta,AR-A,annual,2017,gas oil combustion consumption by to the public,1811.3901875999998,TJ,CH4,3.9,kg/TJ,7064.421731639999,kg -ab4ee3e9-09ed-30dd-af5e-b68c020300e0,SESCO,II.1.1,Salta,AR-A,annual,2017,gas oil combustion consumption by to the public,1811.3901875999998,TJ,N2O,3.9,kg/TJ,7064.421731639999,kg -4f70accc-abf4-3e4d-8caf-a9fcb2ed4468,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2017,gas oil combustion consumption by to the public,418.29777359999997,TJ,CO2,74100.0,kg/TJ,30995865.02376,kg -cf794013-ad23-3bea-8c82-ad2c5be957bc,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2017,gas oil combustion consumption by to the public,418.29777359999997,TJ,CH4,3.9,kg/TJ,1631.36131704,kg -cf794013-ad23-3bea-8c82-ad2c5be957bc,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2017,gas oil combustion consumption by to the public,418.29777359999997,TJ,N2O,3.9,kg/TJ,1631.36131704,kg -ba5cb92e-e25d-301c-b0d5-70c22a6388ca,SESCO,II.1.1,Tucuman,AR-T,annual,2017,gas oil combustion consumption by to the public,2082.8197068,TJ,CO2,74100.0,kg/TJ,154336940.27388,kg -1859a204-eca6-37e8-9086-c3ae6a5bd525,SESCO,II.1.1,Tucuman,AR-T,annual,2017,gas oil combustion consumption by to the public,2082.8197068,TJ,CH4,3.9,kg/TJ,8122.99685652,kg -1859a204-eca6-37e8-9086-c3ae6a5bd525,SESCO,II.1.1,Tucuman,AR-T,annual,2017,gas oil combustion consumption by to the public,2082.8197068,TJ,N2O,3.9,kg/TJ,8122.99685652,kg -6cb0121e-adb5-3cb0-8403-eab589dddb0e,SESCO,II.1.1,Catamarca,AR-K,annual,2017,gas oil combustion consumption by to the public,31.8600072,TJ,CO2,74100.0,kg/TJ,2360826.53352,kg -594337a7-0079-380d-8575-3ddf3df9b8ff,SESCO,II.1.1,Catamarca,AR-K,annual,2017,gas oil combustion consumption by to the public,31.8600072,TJ,CH4,3.9,kg/TJ,124.25402808,kg -594337a7-0079-380d-8575-3ddf3df9b8ff,SESCO,II.1.1,Catamarca,AR-K,annual,2017,gas oil combustion consumption by to the public,31.8600072,TJ,N2O,3.9,kg/TJ,124.25402808,kg -c74133a5-a058-3276-8012-f7cac4a1da46,SESCO,II.1.1,Chaco,AR-H,annual,2017,gas oil combustion consumption by to the public,13.4554224,TJ,CO2,74100.0,kg/TJ,997046.79984,kg -6f4b7318-f1ec-3a70-988a-fa7c9761ccc0,SESCO,II.1.1,Chaco,AR-H,annual,2017,gas oil combustion consumption by to the public,13.4554224,TJ,CH4,3.9,kg/TJ,52.47614736,kg -6f4b7318-f1ec-3a70-988a-fa7c9761ccc0,SESCO,II.1.1,Chaco,AR-H,annual,2017,gas oil combustion consumption by to the public,13.4554224,TJ,N2O,3.9,kg/TJ,52.47614736,kg -981c4390-5623-3650-a5c0-291ca6f8d812,SESCO,II.1.1,Jujuy,AR-Y,annual,2017,gas oil combustion consumption by to the public,64.49659439999999,TJ,CO2,74100.0,kg/TJ,4779197.64504,kg -2267a804-22f3-3138-8e92-cfc2b61f27d8,SESCO,II.1.1,Jujuy,AR-Y,annual,2017,gas oil combustion consumption by to the public,64.49659439999999,TJ,CH4,3.9,kg/TJ,251.53671815999996,kg -2267a804-22f3-3138-8e92-cfc2b61f27d8,SESCO,II.1.1,Jujuy,AR-Y,annual,2017,gas oil combustion consumption by to the public,64.49659439999999,TJ,N2O,3.9,kg/TJ,251.53671815999996,kg -fd311b8f-314c-3c07-8c0c-2929d458b149,SESCO,II.1.1,La Rioja,AR-F,annual,2017,gas oil combustion consumption by to the public,25.0531932,TJ,CO2,74100.0,kg/TJ,1856441.61612,kg -6b1f28ea-4755-3b54-a4e2-173ef7c93b02,SESCO,II.1.1,La Rioja,AR-F,annual,2017,gas oil combustion consumption by to the public,25.0531932,TJ,CH4,3.9,kg/TJ,97.70745348,kg -6b1f28ea-4755-3b54-a4e2-173ef7c93b02,SESCO,II.1.1,La Rioja,AR-F,annual,2017,gas oil combustion consumption by to the public,25.0531932,TJ,N2O,3.9,kg/TJ,97.70745348,kg -2422e613-81d0-35bb-98a5-be9202ea80e6,SESCO,II.1.1,Salta,AR-A,annual,2017,gas oil combustion consumption by to the public,192.60917759999998,TJ,CO2,74100.0,kg/TJ,14272340.060159998,kg -c15a3707-8ee4-350d-867c-c3f5e18b2c43,SESCO,II.1.1,Salta,AR-A,annual,2017,gas oil combustion consumption by to the public,192.60917759999998,TJ,CH4,3.9,kg/TJ,751.1757926399999,kg -c15a3707-8ee4-350d-867c-c3f5e18b2c43,SESCO,II.1.1,Salta,AR-A,annual,2017,gas oil combustion consumption by to the public,192.60917759999998,TJ,N2O,3.9,kg/TJ,751.1757926399999,kg -b47c3ce8-5bbf-3fa7-9ea9-7fb79cc99038,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2017,gas oil combustion consumption by to the public,101.30720879999998,TJ,CO2,74100.0,kg/TJ,7506864.172079999,kg -17399789-7f5d-3289-8721-b8a0de31d88b,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2017,gas oil combustion consumption by to the public,101.30720879999998,TJ,CH4,3.9,kg/TJ,395.0981143199999,kg -17399789-7f5d-3289-8721-b8a0de31d88b,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2017,gas oil combustion consumption by to the public,101.30720879999998,TJ,N2O,3.9,kg/TJ,395.0981143199999,kg -49504bc9-cb97-356a-8e75-8d7617a0ab8f,SESCO,II.1.1,Tucuman,AR-T,annual,2017,gas oil combustion consumption by to the public,331.0538868,TJ,CO2,74100.0,kg/TJ,24531093.01188,kg -67a81ef0-b4b2-3eb4-842f-b6d965e8af9e,SESCO,II.1.1,Tucuman,AR-T,annual,2017,gas oil combustion consumption by to the public,331.0538868,TJ,CH4,3.9,kg/TJ,1291.11015852,kg -67a81ef0-b4b2-3eb4-842f-b6d965e8af9e,SESCO,II.1.1,Tucuman,AR-T,annual,2017,gas oil combustion consumption by to the public,331.0538868,TJ,N2O,3.9,kg/TJ,1291.11015852,kg -5cb15411-0fb8-31a1-a365-5a4bfcb7443d,SESCO,I.3.1,Buenos Aires,AR-B,annual,2017,gasoline combustion consumption by petrochemical industries,46.30679,TJ,CO2,69300.0,kg/TJ,3209060.547,kg -627d722b-670e-316b-9c2f-49d5cc95d857,SESCO,I.3.1,Buenos Aires,AR-B,annual,2017,gasoline combustion consumption by petrochemical industries,46.30679,TJ,CH4,33.0,kg/TJ,1528.12407,kg -55243b39-6886-3d1d-9465-4286931411e1,SESCO,I.3.1,Buenos Aires,AR-B,annual,2017,gasoline combustion consumption by petrochemical industries,46.30679,TJ,N2O,3.2,kg/TJ,148.181728,kg -c8484bd0-f606-34ed-b5a6-c4dc2a715fec,SESCO,II.5.1,Capital Federal,AR-C,annual,2017,gasoline combustion consumption by agriculture machines,14.043099999999999,TJ,CO2,69300.0,kg/TJ,973186.83,kg -e22958c9-8d36-3ded-8dfa-4e2b1321591d,SESCO,II.5.1,Capital Federal,AR-C,annual,2017,gasoline combustion consumption by agriculture machines,14.043099999999999,TJ,CH4,33.0,kg/TJ,463.42229999999995,kg -ee6da9bb-a3d8-33fa-ae07-2c25df892e68,SESCO,II.5.1,Capital Federal,AR-C,annual,2017,gasoline combustion consumption by agriculture machines,14.043099999999999,TJ,N2O,3.2,kg/TJ,44.93792,kg -c3cab043-d46c-34e7-9b81-d65c34ad03c7,SESCO,II.5.1,Buenos Aires,AR-B,annual,2017,gas oil combustion consumption by agriculture machines,306.87552,TJ,CO2,74100.0,kg/TJ,22739476.031999998,kg -113734da-964d-3b38-a3b5-241352c8bdf6,SESCO,II.5.1,Buenos Aires,AR-B,annual,2017,gas oil combustion consumption by agriculture machines,306.87552,TJ,CH4,3.9,kg/TJ,1196.8145279999999,kg -113734da-964d-3b38-a3b5-241352c8bdf6,SESCO,II.5.1,Buenos Aires,AR-B,annual,2017,gas oil combustion consumption by agriculture machines,306.87552,TJ,N2O,3.9,kg/TJ,1196.8145279999999,kg -b947511c-94a7-3279-8d31-9c423f9e6b76,SESCO,II.5.1,Córdoba,AR-X,annual,2017,gas oil combustion consumption by agriculture machines,57.39468,TJ,CO2,74100.0,kg/TJ,4252945.788,kg -f9ffe272-ea95-3c1a-9b37-73029c394470,SESCO,II.5.1,Córdoba,AR-X,annual,2017,gas oil combustion consumption by agriculture machines,57.39468,TJ,CH4,3.9,kg/TJ,223.839252,kg -f9ffe272-ea95-3c1a-9b37-73029c394470,SESCO,II.5.1,Córdoba,AR-X,annual,2017,gas oil combustion consumption by agriculture machines,57.39468,TJ,N2O,3.9,kg/TJ,223.839252,kg -37292780-6eb5-3029-b186-7aa396514ab2,SESCO,II.5.1,Entre Rios,AR-E,annual,2017,gas oil combustion consumption by agriculture machines,47.38944,TJ,CO2,74100.0,kg/TJ,3511557.504,kg -e8a4e764-9250-3c7f-970e-9f0561cdae3d,SESCO,II.5.1,Entre Rios,AR-E,annual,2017,gas oil combustion consumption by agriculture machines,47.38944,TJ,CH4,3.9,kg/TJ,184.818816,kg -e8a4e764-9250-3c7f-970e-9f0561cdae3d,SESCO,II.5.1,Entre Rios,AR-E,annual,2017,gas oil combustion consumption by agriculture machines,47.38944,TJ,N2O,3.9,kg/TJ,184.818816,kg -28d5f278-ce62-39e3-bf4d-18777089082a,SESCO,II.5.1,Santa Fe,AR-S,annual,2017,gas oil combustion consumption by agriculture machines,41.82696,TJ,CO2,74100.0,kg/TJ,3099377.736,kg -37e7487c-ded1-3206-8057-9bb46102550c,SESCO,II.5.1,Santa Fe,AR-S,annual,2017,gas oil combustion consumption by agriculture machines,41.82696,TJ,CH4,3.9,kg/TJ,163.125144,kg -37e7487c-ded1-3206-8057-9bb46102550c,SESCO,II.5.1,Santa Fe,AR-S,annual,2017,gas oil combustion consumption by agriculture machines,41.82696,TJ,N2O,3.9,kg/TJ,163.125144,kg -2c6a4e16-f788-3652-a2d9-ca8b15538a7c,SESCO,II.5.1,Buenos Aires,AR-B,annual,2017,gas oil combustion consumption by agriculture machines,15.856679999999999,TJ,CO2,74100.0,kg/TJ,1174979.988,kg -480e02e3-019e-3beb-9f3c-cd7f4aecca07,SESCO,II.5.1,Buenos Aires,AR-B,annual,2017,gas oil combustion consumption by agriculture machines,15.856679999999999,TJ,CH4,3.9,kg/TJ,61.841052,kg -480e02e3-019e-3beb-9f3c-cd7f4aecca07,SESCO,II.5.1,Buenos Aires,AR-B,annual,2017,gas oil combustion consumption by agriculture machines,15.856679999999999,TJ,N2O,3.9,kg/TJ,61.841052,kg -021e0cd9-a31c-3a7e-992c-fcd6bff10ae1,SESCO,II.5.1,Entre Rios,AR-E,annual,2017,gas oil combustion consumption by agriculture machines,23.40576,TJ,CO2,74100.0,kg/TJ,1734366.816,kg -a3c9686d-fef0-38d1-95a9-44fbc9167d60,SESCO,II.5.1,Entre Rios,AR-E,annual,2017,gas oil combustion consumption by agriculture machines,23.40576,TJ,CH4,3.9,kg/TJ,91.282464,kg -a3c9686d-fef0-38d1-95a9-44fbc9167d60,SESCO,II.5.1,Entre Rios,AR-E,annual,2017,gas oil combustion consumption by agriculture machines,23.40576,TJ,N2O,3.9,kg/TJ,91.282464,kg -d754c465-4afa-311d-bc0c-bc43646e5e0d,SESCO,II.1.1,Buenos Aires,AR-B,annual,2017,gas oil combustion consumption by to the public,14149.21536,TJ,CO2,74100.0,kg/TJ,1048456858.176,kg -14593df4-0102-3f7f-a225-bae0b43fc0c2,SESCO,II.1.1,Buenos Aires,AR-B,annual,2017,gas oil combustion consumption by to the public,14149.21536,TJ,CH4,3.9,kg/TJ,55181.939904,kg -14593df4-0102-3f7f-a225-bae0b43fc0c2,SESCO,II.1.1,Buenos Aires,AR-B,annual,2017,gas oil combustion consumption by to the public,14149.21536,TJ,N2O,3.9,kg/TJ,55181.939904,kg -276b20b1-48cc-3110-9bb1-490a0bf5f3b9,SESCO,II.1.1,Capital Federal,AR-C,annual,2017,gas oil combustion consumption by to the public,944.8992,TJ,CO2,74100.0,kg/TJ,70017030.72,kg -c2173a3d-4cb7-377b-9d10-91e99d2a939c,SESCO,II.1.1,Capital Federal,AR-C,annual,2017,gas oil combustion consumption by to the public,944.8992,TJ,CH4,3.9,kg/TJ,3685.10688,kg -c2173a3d-4cb7-377b-9d10-91e99d2a939c,SESCO,II.1.1,Capital Federal,AR-C,annual,2017,gas oil combustion consumption by to the public,944.8992,TJ,N2O,3.9,kg/TJ,3685.10688,kg -a44e45fc-657e-36c3-98c0-cc7fe0c71935,SESCO,II.1.1,Catamarca,AR-K,annual,2017,gas oil combustion consumption by to the public,8.16312,TJ,CO2,74100.0,kg/TJ,604887.1919999999,kg -b96c61de-6136-35ba-9b25-6b439d056a0e,SESCO,II.1.1,Catamarca,AR-K,annual,2017,gas oil combustion consumption by to the public,8.16312,TJ,CH4,3.9,kg/TJ,31.836167999999997,kg -b96c61de-6136-35ba-9b25-6b439d056a0e,SESCO,II.1.1,Catamarca,AR-K,annual,2017,gas oil combustion consumption by to the public,8.16312,TJ,N2O,3.9,kg/TJ,31.836167999999997,kg -899b89c9-9f5b-389e-9f60-77bfc59cfadd,SESCO,II.1.1,Chaco,AR-H,annual,2017,gas oil combustion consumption by to the public,1884.6693599999999,TJ,CO2,74100.0,kg/TJ,139653999.576,kg -88c598f4-51bb-3735-b968-0f7f11d8f7e8,SESCO,II.1.1,Chaco,AR-H,annual,2017,gas oil combustion consumption by to the public,1884.6693599999999,TJ,CH4,3.9,kg/TJ,7350.210504,kg -88c598f4-51bb-3735-b968-0f7f11d8f7e8,SESCO,II.1.1,Chaco,AR-H,annual,2017,gas oil combustion consumption by to the public,1884.6693599999999,TJ,N2O,3.9,kg/TJ,7350.210504,kg -aecb2577-c243-3c8a-b9de-0d366782c10c,SESCO,II.1.1,Corrientes,AR-W,annual,2017,gas oil combustion consumption by to the public,690.2532,TJ,CO2,74100.0,kg/TJ,51147762.12,kg -e5d3d3b2-34bb-3b88-af32-1e71f2635c87,SESCO,II.1.1,Corrientes,AR-W,annual,2017,gas oil combustion consumption by to the public,690.2532,TJ,CH4,3.9,kg/TJ,2691.98748,kg -e5d3d3b2-34bb-3b88-af32-1e71f2635c87,SESCO,II.1.1,Corrientes,AR-W,annual,2017,gas oil combustion consumption by to the public,690.2532,TJ,N2O,3.9,kg/TJ,2691.98748,kg -fbe9e5f3-0d5e-34a0-8c5d-cc90f8844740,SESCO,II.1.1,Córdoba,AR-X,annual,2017,gas oil combustion consumption by to the public,5817.6316799999995,TJ,CO2,74100.0,kg/TJ,431086507.488,kg -c7a73707-77ea-3db0-b35d-933f0850c8d7,SESCO,II.1.1,Córdoba,AR-X,annual,2017,gas oil combustion consumption by to the public,5817.6316799999995,TJ,CH4,3.9,kg/TJ,22688.763551999997,kg -c7a73707-77ea-3db0-b35d-933f0850c8d7,SESCO,II.1.1,Córdoba,AR-X,annual,2017,gas oil combustion consumption by to the public,5817.6316799999995,TJ,N2O,3.9,kg/TJ,22688.763551999997,kg -01a34059-49cc-374e-8e56-ea5295f49a64,SESCO,II.1.1,Entre Rios,AR-E,annual,2017,gas oil combustion consumption by to the public,1381.37328,TJ,CO2,74100.0,kg/TJ,102359760.04800001,kg -674de32d-d464-3299-a259-46aafab1cc22,SESCO,II.1.1,Entre Rios,AR-E,annual,2017,gas oil combustion consumption by to the public,1381.37328,TJ,CH4,3.9,kg/TJ,5387.355792,kg -674de32d-d464-3299-a259-46aafab1cc22,SESCO,II.1.1,Entre Rios,AR-E,annual,2017,gas oil combustion consumption by to the public,1381.37328,TJ,N2O,3.9,kg/TJ,5387.355792,kg -b52dc761-6770-3a5e-a0d4-c5456977c204,SESCO,II.1.1,Formosa,AR-P,annual,2017,gas oil combustion consumption by to the public,133.86072,TJ,CO2,74100.0,kg/TJ,9919079.351999998,kg -1b4f9edf-c221-3136-8d79-23e8fb663155,SESCO,II.1.1,Formosa,AR-P,annual,2017,gas oil combustion consumption by to the public,133.86072,TJ,CH4,3.9,kg/TJ,522.0568079999999,kg -1b4f9edf-c221-3136-8d79-23e8fb663155,SESCO,II.1.1,Formosa,AR-P,annual,2017,gas oil combustion consumption by to the public,133.86072,TJ,N2O,3.9,kg/TJ,522.0568079999999,kg -4e20125b-466c-3bf6-80d7-482273776b1f,SESCO,II.1.1,Jujuy,AR-Y,annual,2017,gas oil combustion consumption by to the public,77.4774,TJ,CO2,74100.0,kg/TJ,5741075.34,kg -4f11884f-b42c-35d0-8b05-63085fd44b36,SESCO,II.1.1,Jujuy,AR-Y,annual,2017,gas oil combustion consumption by to the public,77.4774,TJ,CH4,3.9,kg/TJ,302.16186,kg -4f11884f-b42c-35d0-8b05-63085fd44b36,SESCO,II.1.1,Jujuy,AR-Y,annual,2017,gas oil combustion consumption by to the public,77.4774,TJ,N2O,3.9,kg/TJ,302.16186,kg -43cf7af0-1fb1-31d1-bb41-8b981e431b86,SESCO,II.1.1,La Pampa,AR-L,annual,2017,gas oil combustion consumption by to the public,746.85324,TJ,CO2,74100.0,kg/TJ,55341825.084,kg -13fda8bd-85b3-3d3c-887f-82694a1d2010,SESCO,II.1.1,La Pampa,AR-L,annual,2017,gas oil combustion consumption by to the public,746.85324,TJ,CH4,3.9,kg/TJ,2912.727636,kg -13fda8bd-85b3-3d3c-887f-82694a1d2010,SESCO,II.1.1,La Pampa,AR-L,annual,2017,gas oil combustion consumption by to the public,746.85324,TJ,N2O,3.9,kg/TJ,2912.727636,kg -93988103-ad1b-3c93-b6c4-43bc338d371c,SESCO,II.1.1,La Rioja,AR-F,annual,2017,gas oil combustion consumption by to the public,230.84292,TJ,CO2,74100.0,kg/TJ,17105460.371999998,kg -5c844ea0-1a80-3985-b8bb-ce9e016de477,SESCO,II.1.1,La Rioja,AR-F,annual,2017,gas oil combustion consumption by to the public,230.84292,TJ,CH4,3.9,kg/TJ,900.287388,kg -5c844ea0-1a80-3985-b8bb-ce9e016de477,SESCO,II.1.1,La Rioja,AR-F,annual,2017,gas oil combustion consumption by to the public,230.84292,TJ,N2O,3.9,kg/TJ,900.287388,kg -6f8fadae-719a-3dd5-bca2-71de04cc0456,SESCO,II.1.1,Mendoza,AR-M,annual,2017,gas oil combustion consumption by to the public,1118.85312,TJ,CO2,74100.0,kg/TJ,82907016.192,kg -bec08158-b37e-3251-bb00-671a61c58f79,SESCO,II.1.1,Mendoza,AR-M,annual,2017,gas oil combustion consumption by to the public,1118.85312,TJ,CH4,3.9,kg/TJ,4363.527168,kg -bec08158-b37e-3251-bb00-671a61c58f79,SESCO,II.1.1,Mendoza,AR-M,annual,2017,gas oil combustion consumption by to the public,1118.85312,TJ,N2O,3.9,kg/TJ,4363.527168,kg -54c2da58-2f68-3ecd-ba1a-67252eb44148,SESCO,II.1.1,Misiones,AR-N,annual,2017,gas oil combustion consumption by to the public,1077.6402,TJ,CO2,74100.0,kg/TJ,79853138.82000001,kg -bea1d700-03b7-34f9-851e-5887f2186657,SESCO,II.1.1,Misiones,AR-N,annual,2017,gas oil combustion consumption by to the public,1077.6402,TJ,CH4,3.9,kg/TJ,4202.79678,kg -bea1d700-03b7-34f9-851e-5887f2186657,SESCO,II.1.1,Misiones,AR-N,annual,2017,gas oil combustion consumption by to the public,1077.6402,TJ,N2O,3.9,kg/TJ,4202.79678,kg -28556724-9f3b-39cd-a11b-433ed6a6ad63,SESCO,II.1.1,Neuquén,AR-Q,annual,2017,gas oil combustion consumption by to the public,695.8518,TJ,CO2,74100.0,kg/TJ,51562618.38,kg -eb7a578b-a35d-3f63-a17e-00aef8a75af2,SESCO,II.1.1,Neuquén,AR-Q,annual,2017,gas oil combustion consumption by to the public,695.8518,TJ,CH4,3.9,kg/TJ,2713.82202,kg -eb7a578b-a35d-3f63-a17e-00aef8a75af2,SESCO,II.1.1,Neuquén,AR-Q,annual,2017,gas oil combustion consumption by to the public,695.8518,TJ,N2O,3.9,kg/TJ,2713.82202,kg -b85772d0-2906-3004-8572-41da2b005fda,SESCO,II.1.1,Rio Negro,AR-R,annual,2017,gas oil combustion consumption by to the public,206.49804,TJ,CO2,74100.0,kg/TJ,15301504.764,kg -ab783897-f97d-3803-bf88-e8711190da26,SESCO,II.1.1,Rio Negro,AR-R,annual,2017,gas oil combustion consumption by to the public,206.49804,TJ,CH4,3.9,kg/TJ,805.342356,kg -ab783897-f97d-3803-bf88-e8711190da26,SESCO,II.1.1,Rio Negro,AR-R,annual,2017,gas oil combustion consumption by to the public,206.49804,TJ,N2O,3.9,kg/TJ,805.342356,kg -b3a3d419-4d52-369f-8afe-821bf1c713b7,SESCO,II.1.1,Salta,AR-A,annual,2017,gas oil combustion consumption by to the public,99.22164,TJ,CO2,74100.0,kg/TJ,7352323.523999999,kg -a0615ab3-c84a-3fb4-a293-c40f5c9551b7,SESCO,II.1.1,Salta,AR-A,annual,2017,gas oil combustion consumption by to the public,99.22164,TJ,CH4,3.9,kg/TJ,386.96439599999997,kg -a0615ab3-c84a-3fb4-a293-c40f5c9551b7,SESCO,II.1.1,Salta,AR-A,annual,2017,gas oil combustion consumption by to the public,99.22164,TJ,N2O,3.9,kg/TJ,386.96439599999997,kg -76ae1d1b-771a-3779-96aa-0a0d0b6e053f,SESCO,II.1.1,San Juan,AR-J,annual,2017,gas oil combustion consumption by to the public,225.85836,TJ,CO2,74100.0,kg/TJ,16736104.476,kg -edc3a4d2-2f6c-3b2e-81f3-7a8f7fc09530,SESCO,II.1.1,San Juan,AR-J,annual,2017,gas oil combustion consumption by to the public,225.85836,TJ,CH4,3.9,kg/TJ,880.847604,kg -edc3a4d2-2f6c-3b2e-81f3-7a8f7fc09530,SESCO,II.1.1,San Juan,AR-J,annual,2017,gas oil combustion consumption by to the public,225.85836,TJ,N2O,3.9,kg/TJ,880.847604,kg -63e37a60-b0fa-3d68-92e3-0749ce5e368b,SESCO,II.1.1,San Luis,AR-D,annual,2017,gas oil combustion consumption by to the public,164.49048,TJ,CO2,74100.0,kg/TJ,12188744.568,kg -ef7574a3-ef33-386e-bb69-716c507051d6,SESCO,II.1.1,San Luis,AR-D,annual,2017,gas oil combustion consumption by to the public,164.49048,TJ,CH4,3.9,kg/TJ,641.5128719999999,kg -ef7574a3-ef33-386e-bb69-716c507051d6,SESCO,II.1.1,San Luis,AR-D,annual,2017,gas oil combustion consumption by to the public,164.49048,TJ,N2O,3.9,kg/TJ,641.5128719999999,kg -6a5be37c-dbcb-3988-b9a8-c6a34b3438a7,SESCO,II.1.1,Santa Fe,AR-S,annual,2017,gas oil combustion consumption by to the public,5251.70352,TJ,CO2,74100.0,kg/TJ,389151230.832,kg -b6a43832-2d47-3846-8c9e-00e1ad1586e6,SESCO,II.1.1,Santa Fe,AR-S,annual,2017,gas oil combustion consumption by to the public,5251.70352,TJ,CH4,3.9,kg/TJ,20481.643728,kg -b6a43832-2d47-3846-8c9e-00e1ad1586e6,SESCO,II.1.1,Santa Fe,AR-S,annual,2017,gas oil combustion consumption by to the public,5251.70352,TJ,N2O,3.9,kg/TJ,20481.643728,kg -eb43e34c-df32-3017-9c19-781a716264e8,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2017,gas oil combustion consumption by to the public,374.31156,TJ,CO2,74100.0,kg/TJ,27736486.595999997,kg -2344c43c-2abd-381f-be94-4427b50f9cd1,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2017,gas oil combustion consumption by to the public,374.31156,TJ,CH4,3.9,kg/TJ,1459.8150839999998,kg -2344c43c-2abd-381f-be94-4427b50f9cd1,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2017,gas oil combustion consumption by to the public,374.31156,TJ,N2O,3.9,kg/TJ,1459.8150839999998,kg -230cd542-11f0-39dc-8c2a-28cdb080d6aa,SESCO,II.1.1,Tucuman,AR-T,annual,2017,gas oil combustion consumption by to the public,834.4081199999999,TJ,CO2,74100.0,kg/TJ,61829641.691999994,kg -b4faebe6-865f-3748-8976-9b63157f869b,SESCO,II.1.1,Tucuman,AR-T,annual,2017,gas oil combustion consumption by to the public,834.4081199999999,TJ,CH4,3.9,kg/TJ,3254.1916679999995,kg -b4faebe6-865f-3748-8976-9b63157f869b,SESCO,II.1.1,Tucuman,AR-T,annual,2017,gas oil combustion consumption by to the public,834.4081199999999,TJ,N2O,3.9,kg/TJ,3254.1916679999995,kg -2751c916-fefd-3a43-b346-ba4a768ac657,SESCO,II.1.1,Buenos Aires,AR-B,annual,2017,gas oil combustion consumption by to the public,9169.965,TJ,CO2,74100.0,kg/TJ,679494406.5,kg -697d3383-adb3-31df-a98c-967cf7eb0154,SESCO,II.1.1,Buenos Aires,AR-B,annual,2017,gas oil combustion consumption by to the public,9169.965,TJ,CH4,3.9,kg/TJ,35762.8635,kg -697d3383-adb3-31df-a98c-967cf7eb0154,SESCO,II.1.1,Buenos Aires,AR-B,annual,2017,gas oil combustion consumption by to the public,9169.965,TJ,N2O,3.9,kg/TJ,35762.8635,kg -18fea953-35f4-314c-93eb-71cc8262e610,SESCO,II.1.1,Capital Federal,AR-C,annual,2017,gas oil combustion consumption by to the public,1526.10612,TJ,CO2,74100.0,kg/TJ,113084463.492,kg -e6bd0e5a-cecc-3a3c-9556-213bf2d0cdbb,SESCO,II.1.1,Capital Federal,AR-C,annual,2017,gas oil combustion consumption by to the public,1526.10612,TJ,CH4,3.9,kg/TJ,5951.813867999999,kg -e6bd0e5a-cecc-3a3c-9556-213bf2d0cdbb,SESCO,II.1.1,Capital Federal,AR-C,annual,2017,gas oil combustion consumption by to the public,1526.10612,TJ,N2O,3.9,kg/TJ,5951.813867999999,kg -d6ea3eae-a0ce-388b-9b56-08117e10041e,SESCO,II.1.1,Catamarca,AR-K,annual,2017,gas oil combustion consumption by to the public,43.41624,TJ,CO2,74100.0,kg/TJ,3217143.384,kg -360ba7fb-da69-3229-aa32-5300795b9b57,SESCO,II.1.1,Catamarca,AR-K,annual,2017,gas oil combustion consumption by to the public,43.41624,TJ,CH4,3.9,kg/TJ,169.323336,kg -360ba7fb-da69-3229-aa32-5300795b9b57,SESCO,II.1.1,Catamarca,AR-K,annual,2017,gas oil combustion consumption by to the public,43.41624,TJ,N2O,3.9,kg/TJ,169.323336,kg -76655b96-a4bb-3d44-b12e-753093773080,SESCO,II.1.1,Chaco,AR-H,annual,2017,gas oil combustion consumption by to the public,540.3552,TJ,CO2,74100.0,kg/TJ,40040320.32,kg -f3e053d1-9d6d-3ef6-83b9-ae73d9889a8a,SESCO,II.1.1,Chaco,AR-H,annual,2017,gas oil combustion consumption by to the public,540.3552,TJ,CH4,3.9,kg/TJ,2107.38528,kg -f3e053d1-9d6d-3ef6-83b9-ae73d9889a8a,SESCO,II.1.1,Chaco,AR-H,annual,2017,gas oil combustion consumption by to the public,540.3552,TJ,N2O,3.9,kg/TJ,2107.38528,kg -b2e0f6bd-c9de-3d66-a229-209a2176144d,SESCO,II.1.1,Corrientes,AR-W,annual,2017,gas oil combustion consumption by to the public,414.80208,TJ,CO2,74100.0,kg/TJ,30736834.128,kg -92d02b27-d31b-34b3-9174-27fdd7e20c8d,SESCO,II.1.1,Corrientes,AR-W,annual,2017,gas oil combustion consumption by to the public,414.80208,TJ,CH4,3.9,kg/TJ,1617.728112,kg -92d02b27-d31b-34b3-9174-27fdd7e20c8d,SESCO,II.1.1,Corrientes,AR-W,annual,2017,gas oil combustion consumption by to the public,414.80208,TJ,N2O,3.9,kg/TJ,1617.728112,kg -645233e4-3737-30cb-b2cb-72061a055bd9,SESCO,II.1.1,Córdoba,AR-X,annual,2017,gas oil combustion consumption by to the public,2103.99,TJ,CO2,74100.0,kg/TJ,155905658.99999997,kg -a915122f-3ae8-3058-9b47-6ad77636a411,SESCO,II.1.1,Córdoba,AR-X,annual,2017,gas oil combustion consumption by to the public,2103.99,TJ,CH4,3.9,kg/TJ,8205.561,kg -a915122f-3ae8-3058-9b47-6ad77636a411,SESCO,II.1.1,Córdoba,AR-X,annual,2017,gas oil combustion consumption by to the public,2103.99,TJ,N2O,3.9,kg/TJ,8205.561,kg -359ab64d-0331-3fb0-b036-8dbc18fb40d9,SESCO,II.1.1,Entre Rios,AR-E,annual,2017,gas oil combustion consumption by to the public,715.03152,TJ,CO2,74100.0,kg/TJ,52983835.632,kg -6c431ab7-f444-3c65-868b-cdd69f5f3c51,SESCO,II.1.1,Entre Rios,AR-E,annual,2017,gas oil combustion consumption by to the public,715.03152,TJ,CH4,3.9,kg/TJ,2788.622928,kg -6c431ab7-f444-3c65-868b-cdd69f5f3c51,SESCO,II.1.1,Entre Rios,AR-E,annual,2017,gas oil combustion consumption by to the public,715.03152,TJ,N2O,3.9,kg/TJ,2788.622928,kg -b2183d89-a96e-3709-ab43-063ba6db30e0,SESCO,II.1.1,Formosa,AR-P,annual,2017,gas oil combustion consumption by to the public,184.86216,TJ,CO2,74100.0,kg/TJ,13698286.056,kg -18eb1b4b-4979-32a3-bfbd-97b283b90f3c,SESCO,II.1.1,Formosa,AR-P,annual,2017,gas oil combustion consumption by to the public,184.86216,TJ,CH4,3.9,kg/TJ,720.9624239999999,kg -18eb1b4b-4979-32a3-bfbd-97b283b90f3c,SESCO,II.1.1,Formosa,AR-P,annual,2017,gas oil combustion consumption by to the public,184.86216,TJ,N2O,3.9,kg/TJ,720.9624239999999,kg -7e71e804-1444-3481-8231-b7f900591e6c,SESCO,II.1.1,Jujuy,AR-Y,annual,2017,gas oil combustion consumption by to the public,57.936479999999996,TJ,CO2,74100.0,kg/TJ,4293093.168,kg -a0ff315c-ad4c-33d9-b9db-39b705a143bf,SESCO,II.1.1,Jujuy,AR-Y,annual,2017,gas oil combustion consumption by to the public,57.936479999999996,TJ,CH4,3.9,kg/TJ,225.95227199999997,kg -a0ff315c-ad4c-33d9-b9db-39b705a143bf,SESCO,II.1.1,Jujuy,AR-Y,annual,2017,gas oil combustion consumption by to the public,57.936479999999996,TJ,N2O,3.9,kg/TJ,225.95227199999997,kg -97030d98-24d0-33d8-8643-b1dd1396a126,SESCO,II.1.1,La Pampa,AR-L,annual,2017,gas oil combustion consumption by to the public,303.98592,TJ,CO2,74100.0,kg/TJ,22525356.672000002,kg -22692872-3d05-355a-832a-faa7419eb781,SESCO,II.1.1,La Pampa,AR-L,annual,2017,gas oil combustion consumption by to the public,303.98592,TJ,CH4,3.9,kg/TJ,1185.545088,kg -22692872-3d05-355a-832a-faa7419eb781,SESCO,II.1.1,La Pampa,AR-L,annual,2017,gas oil combustion consumption by to the public,303.98592,TJ,N2O,3.9,kg/TJ,1185.545088,kg -c610483f-6610-31f9-a884-53d12b1e6eea,SESCO,II.1.1,La Rioja,AR-F,annual,2017,gas oil combustion consumption by to the public,167.81351999999998,TJ,CO2,74100.0,kg/TJ,12434981.831999999,kg -ad5e296e-5f37-3ec4-b2af-f52ce061a8d6,SESCO,II.1.1,La Rioja,AR-F,annual,2017,gas oil combustion consumption by to the public,167.81351999999998,TJ,CH4,3.9,kg/TJ,654.472728,kg -ad5e296e-5f37-3ec4-b2af-f52ce061a8d6,SESCO,II.1.1,La Rioja,AR-F,annual,2017,gas oil combustion consumption by to the public,167.81351999999998,TJ,N2O,3.9,kg/TJ,654.472728,kg -6885fdab-0d19-3752-89bb-52339a083151,SESCO,II.1.1,Mendoza,AR-M,annual,2017,gas oil combustion consumption by to the public,628.95756,TJ,CO2,74100.0,kg/TJ,46605755.195999995,kg -a65bb233-f1d6-3e25-857d-cbc70428f1e2,SESCO,II.1.1,Mendoza,AR-M,annual,2017,gas oil combustion consumption by to the public,628.95756,TJ,CH4,3.9,kg/TJ,2452.934484,kg -a65bb233-f1d6-3e25-857d-cbc70428f1e2,SESCO,II.1.1,Mendoza,AR-M,annual,2017,gas oil combustion consumption by to the public,628.95756,TJ,N2O,3.9,kg/TJ,2452.934484,kg -fc5cafb0-3418-382d-a41b-a17212df3b3c,SESCO,II.1.1,Misiones,AR-N,annual,2017,gas oil combustion consumption by to the public,446.91276,TJ,CO2,74100.0,kg/TJ,33116235.516,kg -80f58130-8356-36d4-906a-acd7e244fe83,SESCO,II.1.1,Misiones,AR-N,annual,2017,gas oil combustion consumption by to the public,446.91276,TJ,CH4,3.9,kg/TJ,1742.959764,kg -80f58130-8356-36d4-906a-acd7e244fe83,SESCO,II.1.1,Misiones,AR-N,annual,2017,gas oil combustion consumption by to the public,446.91276,TJ,N2O,3.9,kg/TJ,1742.959764,kg -0621429c-7c28-3ce3-a4ef-277b129df0c6,SESCO,II.1.1,Neuquén,AR-Q,annual,2017,gas oil combustion consumption by to the public,685.16028,TJ,CO2,74100.0,kg/TJ,50770376.747999996,kg -30b92075-51f4-3089-9bef-1fb6ac5c8bfb,SESCO,II.1.1,Neuquén,AR-Q,annual,2017,gas oil combustion consumption by to the public,685.16028,TJ,CH4,3.9,kg/TJ,2672.1250919999998,kg -30b92075-51f4-3089-9bef-1fb6ac5c8bfb,SESCO,II.1.1,Neuquén,AR-Q,annual,2017,gas oil combustion consumption by to the public,685.16028,TJ,N2O,3.9,kg/TJ,2672.1250919999998,kg -a627f403-5ef8-33fc-a0b8-227af5aeb1e8,SESCO,II.1.1,Rio Negro,AR-R,annual,2017,gas oil combustion consumption by to the public,142.63788,TJ,CO2,74100.0,kg/TJ,10569466.908,kg -c010b17f-690f-31d7-af43-97ba942ba71e,SESCO,II.1.1,Rio Negro,AR-R,annual,2017,gas oil combustion consumption by to the public,142.63788,TJ,CH4,3.9,kg/TJ,556.287732,kg -c010b17f-690f-31d7-af43-97ba942ba71e,SESCO,II.1.1,Rio Negro,AR-R,annual,2017,gas oil combustion consumption by to the public,142.63788,TJ,N2O,3.9,kg/TJ,556.287732,kg -1b24c94a-466c-3050-8f1d-018589afaadb,SESCO,II.1.1,Salta,AR-A,annual,2017,gas oil combustion consumption by to the public,145.27464,TJ,CO2,74100.0,kg/TJ,10764850.824000001,kg -c144b38d-86d1-31d9-89ee-616a7b03bffd,SESCO,II.1.1,Salta,AR-A,annual,2017,gas oil combustion consumption by to the public,145.27464,TJ,CH4,3.9,kg/TJ,566.571096,kg -c144b38d-86d1-31d9-89ee-616a7b03bffd,SESCO,II.1.1,Salta,AR-A,annual,2017,gas oil combustion consumption by to the public,145.27464,TJ,N2O,3.9,kg/TJ,566.571096,kg -081fbc52-63e2-39cb-b985-a6dd7dfd978c,SESCO,II.1.1,San Juan,AR-J,annual,2017,gas oil combustion consumption by to the public,78.70548,TJ,CO2,74100.0,kg/TJ,5832076.068,kg -1e388c95-ba3d-3bf0-a44a-26e23acda794,SESCO,II.1.1,San Juan,AR-J,annual,2017,gas oil combustion consumption by to the public,78.70548,TJ,CH4,3.9,kg/TJ,306.951372,kg -1e388c95-ba3d-3bf0-a44a-26e23acda794,SESCO,II.1.1,San Juan,AR-J,annual,2017,gas oil combustion consumption by to the public,78.70548,TJ,N2O,3.9,kg/TJ,306.951372,kg -890f6300-637c-3865-b6e6-92bce4e68414,SESCO,II.1.1,San Luis,AR-D,annual,2017,gas oil combustion consumption by to the public,65.95512,TJ,CO2,74100.0,kg/TJ,4887274.392,kg -9f752f44-79bf-3207-b3c4-77b9b32910ba,SESCO,II.1.1,San Luis,AR-D,annual,2017,gas oil combustion consumption by to the public,65.95512,TJ,CH4,3.9,kg/TJ,257.224968,kg -9f752f44-79bf-3207-b3c4-77b9b32910ba,SESCO,II.1.1,San Luis,AR-D,annual,2017,gas oil combustion consumption by to the public,65.95512,TJ,N2O,3.9,kg/TJ,257.224968,kg -508d2166-272e-3055-b032-87edce4f7105,SESCO,II.1.1,Santa Fe,AR-S,annual,2017,gas oil combustion consumption by to the public,2225.1726,TJ,CO2,74100.0,kg/TJ,164885289.66,kg -265c667a-a7ac-35b4-8ffc-171e680aec74,SESCO,II.1.1,Santa Fe,AR-S,annual,2017,gas oil combustion consumption by to the public,2225.1726,TJ,CH4,3.9,kg/TJ,8678.173139999999,kg -265c667a-a7ac-35b4-8ffc-171e680aec74,SESCO,II.1.1,Santa Fe,AR-S,annual,2017,gas oil combustion consumption by to the public,2225.1726,TJ,N2O,3.9,kg/TJ,8678.173139999999,kg -acc524b1-d8e6-3167-bb7d-c4a56943afdc,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2017,gas oil combustion consumption by to the public,273.2478,TJ,CO2,74100.0,kg/TJ,20247661.98,kg -eee5e27b-170f-3265-a5f5-0b4871d6194c,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2017,gas oil combustion consumption by to the public,273.2478,TJ,CH4,3.9,kg/TJ,1065.66642,kg -eee5e27b-170f-3265-a5f5-0b4871d6194c,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2017,gas oil combustion consumption by to the public,273.2478,TJ,N2O,3.9,kg/TJ,1065.66642,kg -be37d4d0-adbb-351b-8218-bbadc3c74f9d,SESCO,II.1.1,Tucuman,AR-T,annual,2017,gas oil combustion consumption by to the public,516.76884,TJ,CO2,74100.0,kg/TJ,38292571.044,kg -c58cdccd-c7cc-3bb5-91c7-e4a717cdbeb0,SESCO,II.1.1,Tucuman,AR-T,annual,2017,gas oil combustion consumption by to the public,516.76884,TJ,CH4,3.9,kg/TJ,2015.3984759999998,kg -c58cdccd-c7cc-3bb5-91c7-e4a717cdbeb0,SESCO,II.1.1,Tucuman,AR-T,annual,2017,gas oil combustion consumption by to the public,516.76884,TJ,N2O,3.9,kg/TJ,2015.3984759999998,kg -78ff86a2-19d9-39d3-b1bd-f6c7282dc696,SESCO,II.1.1,Buenos Aires,AR-B,annual,2017,jet kerosene combustion consumption by to the public,1.5411969999999997,TJ,CO2,71500.0,kg/TJ,110195.58549999997,kg -8d3543c5-0997-3a51-924c-1254d2add484,SESCO,II.1.1,Buenos Aires,AR-B,annual,2017,jet kerosene combustion consumption by to the public,1.5411969999999997,TJ,CH4,0.5,kg/TJ,0.7705984999999999,kg -587e61e2-1ac7-3db5-a49b-f269e8709b81,SESCO,II.1.1,Buenos Aires,AR-B,annual,2017,jet kerosene combustion consumption by to the public,1.5411969999999997,TJ,N2O,2.0,kg/TJ,3.0823939999999994,kg -10622715-1ca7-36d7-95e7-907fb0e284f2,SESCO,II.1.1,Entre Rios,AR-E,annual,2017,jet kerosene combustion consumption by to the public,2.5791459999999997,TJ,CO2,71500.0,kg/TJ,184408.93899999998,kg -68b09de0-18d1-3dc9-9f0a-bdf2c07c40ef,SESCO,II.1.1,Entre Rios,AR-E,annual,2017,jet kerosene combustion consumption by to the public,2.5791459999999997,TJ,CH4,0.5,kg/TJ,1.2895729999999999,kg -1b662cf7-9953-3ec6-beff-b089007b872f,SESCO,II.1.1,Entre Rios,AR-E,annual,2017,jet kerosene combustion consumption by to the public,2.5791459999999997,TJ,N2O,2.0,kg/TJ,5.158291999999999,kg -0c23bba5-392f-320f-8e11-2270b4fa00fd,SESCO,I.3.1,Buenos Aires,AR-B,annual,2017,gasoline combustion consumption by petrochemical industries,12.0496,TJ,CO2,69300.0,kg/TJ,835037.28,kg -777cd734-2308-3ecf-b4b5-2ee0f02c31ce,SESCO,I.3.1,Buenos Aires,AR-B,annual,2017,gasoline combustion consumption by petrochemical industries,12.0496,TJ,CH4,33.0,kg/TJ,397.6368,kg -f73ac3ef-8306-3c8c-911e-83e25df7daa5,SESCO,I.3.1,Buenos Aires,AR-B,annual,2017,gasoline combustion consumption by petrochemical industries,12.0496,TJ,N2O,3.2,kg/TJ,38.55872,kg -74be579b-9890-31f4-bb19-0d781fab6c12,SESCO,I.3.1,Capital Federal,AR-C,annual,2017,gas oil combustion consumption by petrochemical industries,2.5284,TJ,CO2,74100.0,kg/TJ,187354.44,kg -353d42ed-2c3b-3de4-959c-fc1cbe2d83d7,SESCO,I.3.1,Capital Federal,AR-C,annual,2017,gas oil combustion consumption by petrochemical industries,2.5284,TJ,CH4,3.9,kg/TJ,9.860759999999999,kg -353d42ed-2c3b-3de4-959c-fc1cbe2d83d7,SESCO,I.3.1,Capital Federal,AR-C,annual,2017,gas oil combustion consumption by petrochemical industries,2.5284,TJ,N2O,3.9,kg/TJ,9.860759999999999,kg -454a388e-537d-392e-9c90-99422ec01df7,SESCO,II.2.1,Buenos Aires,AR-B,annual,2017,gas oil combustion consumption by railway transport,246.04944,TJ,CO2,74100.0,kg/TJ,18232263.504,kg -12f97e43-3d6d-3571-ba75-8464f391efbc,SESCO,II.2.1,Buenos Aires,AR-B,annual,2017,gas oil combustion consumption by railway transport,246.04944,TJ,CH4,3.9,kg/TJ,959.592816,kg -12f97e43-3d6d-3571-ba75-8464f391efbc,SESCO,II.2.1,Buenos Aires,AR-B,annual,2017,gas oil combustion consumption by railway transport,246.04944,TJ,N2O,3.9,kg/TJ,959.592816,kg -95409caa-ec2d-3ef8-9082-01e24ce4b8aa,SESCO,II.2.1,Santa Fe,AR-S,annual,2017,gas oil combustion consumption by railway transport,10.51092,TJ,CO2,74100.0,kg/TJ,778859.172,kg -9de76c3e-ad49-3a90-bec5-1c712f5db0d2,SESCO,II.2.1,Santa Fe,AR-S,annual,2017,gas oil combustion consumption by railway transport,10.51092,TJ,CH4,3.9,kg/TJ,40.992588,kg -9de76c3e-ad49-3a90-bec5-1c712f5db0d2,SESCO,II.2.1,Santa Fe,AR-S,annual,2017,gas oil combustion consumption by railway transport,10.51092,TJ,N2O,3.9,kg/TJ,40.992588,kg -39f9342e-aab2-374e-963d-3c8db8b3a87a,SESCO,II.1.1,Buenos Aires,AR-B,annual,2017,gasoline combustion consumption by freight transport,1.7277,TJ,CO2,69300.0,kg/TJ,119729.61,kg -bdfdb4a0-481e-3e73-83ce-c0390d257a1b,SESCO,II.1.1,Buenos Aires,AR-B,annual,2017,gasoline combustion consumption by freight transport,1.7277,TJ,CH4,33.0,kg/TJ,57.0141,kg -9b515d53-3bef-333e-8786-64977bd939e1,SESCO,II.1.1,Buenos Aires,AR-B,annual,2017,gasoline combustion consumption by freight transport,1.7277,TJ,N2O,3.2,kg/TJ,5.52864,kg -8c3c2798-6b67-3568-9c3b-71a070b0057b,SESCO,II.1.1,Capital Federal,AR-C,annual,2017,gasoline combustion consumption by freight transport,1.6391,TJ,CO2,69300.0,kg/TJ,113589.63,kg -6a3e9756-1baa-38b9-bd93-04f3c8978b7a,SESCO,II.1.1,Capital Federal,AR-C,annual,2017,gasoline combustion consumption by freight transport,1.6391,TJ,CH4,33.0,kg/TJ,54.0903,kg -d02c20ed-f802-310f-a79b-4e311b3fa1ae,SESCO,II.1.1,Capital Federal,AR-C,annual,2017,gasoline combustion consumption by freight transport,1.6391,TJ,N2O,3.2,kg/TJ,5.24512,kg -adbdd768-b6e3-383a-bc8b-be1b14fabf16,SESCO,II.1.1,Santa Fe,AR-S,annual,2017,gasoline combustion consumption by freight transport,12.8027,TJ,CO2,69300.0,kg/TJ,887227.11,kg -53c308df-cc2f-32aa-8cd7-f68292e1e9a4,SESCO,II.1.1,Santa Fe,AR-S,annual,2017,gasoline combustion consumption by freight transport,12.8027,TJ,CH4,33.0,kg/TJ,422.4891,kg -a77b242b-ae8e-3cc0-a6e6-5807c61c9bd3,SESCO,II.1.1,Santa Fe,AR-S,annual,2017,gasoline combustion consumption by freight transport,12.8027,TJ,N2O,3.2,kg/TJ,40.96864,kg -2b1bd6c1-6ec8-3b09-8f86-dd071962a24d,SESCO,II.1.1,Buenos Aires,AR-B,annual,2017,gas oil combustion consumption by freight transport,168.82488,TJ,CO2,74100.0,kg/TJ,12509923.608000001,kg -85be1d2f-63cb-3aff-aa0f-f16bf3a69de3,SESCO,II.1.1,Buenos Aires,AR-B,annual,2017,gas oil combustion consumption by freight transport,168.82488,TJ,CH4,3.9,kg/TJ,658.4170320000001,kg -85be1d2f-63cb-3aff-aa0f-f16bf3a69de3,SESCO,II.1.1,Buenos Aires,AR-B,annual,2017,gas oil combustion consumption by freight transport,168.82488,TJ,N2O,3.9,kg/TJ,658.4170320000001,kg -6d6c10d9-8d03-30ff-9214-05b74de0c21c,SESCO,II.1.1,Capital Federal,AR-C,annual,2017,gas oil combustion consumption by freight transport,67.94172,TJ,CO2,74100.0,kg/TJ,5034481.4520000005,kg -8e896688-7dca-381c-a2db-360c1910eff1,SESCO,II.1.1,Capital Federal,AR-C,annual,2017,gas oil combustion consumption by freight transport,67.94172,TJ,CH4,3.9,kg/TJ,264.972708,kg -8e896688-7dca-381c-a2db-360c1910eff1,SESCO,II.1.1,Capital Federal,AR-C,annual,2017,gas oil combustion consumption by freight transport,67.94172,TJ,N2O,3.9,kg/TJ,264.972708,kg -71a2db4e-c450-30bb-949d-7203cd9c93a9,SESCO,II.1.1,Córdoba,AR-X,annual,2017,gas oil combustion consumption by freight transport,96.90996,TJ,CO2,74100.0,kg/TJ,7181028.036,kg -fc7097b8-aa37-37d4-b22b-675fd4a8146c,SESCO,II.1.1,Córdoba,AR-X,annual,2017,gas oil combustion consumption by freight transport,96.90996,TJ,CH4,3.9,kg/TJ,377.948844,kg -fc7097b8-aa37-37d4-b22b-675fd4a8146c,SESCO,II.1.1,Córdoba,AR-X,annual,2017,gas oil combustion consumption by freight transport,96.90996,TJ,N2O,3.9,kg/TJ,377.948844,kg -8e9ceff3-2bde-324d-8c1d-bf5e0a01c999,SESCO,II.1.1,Buenos Aires,AR-B,annual,2017,gas oil combustion consumption by freight transport,30.41304,TJ,CO2,74100.0,kg/TJ,2253606.264,kg -4c423c99-5bd2-3ce6-99bd-162b9dc99c32,SESCO,II.1.1,Buenos Aires,AR-B,annual,2017,gas oil combustion consumption by freight transport,30.41304,TJ,CH4,3.9,kg/TJ,118.610856,kg -4c423c99-5bd2-3ce6-99bd-162b9dc99c32,SESCO,II.1.1,Buenos Aires,AR-B,annual,2017,gas oil combustion consumption by freight transport,30.41304,TJ,N2O,3.9,kg/TJ,118.610856,kg -813f792e-97f1-3c1a-856b-efca62719106,SESCO,II.1.1,Córdoba,AR-X,annual,2017,gas oil combustion consumption by freight transport,0.7223999999999999,TJ,CO2,74100.0,kg/TJ,53529.84,kg -8ac32acd-1993-35f9-892f-fa62535ad1b1,SESCO,II.1.1,Córdoba,AR-X,annual,2017,gas oil combustion consumption by freight transport,0.7223999999999999,TJ,CH4,3.9,kg/TJ,2.81736,kg -8ac32acd-1993-35f9-892f-fa62535ad1b1,SESCO,II.1.1,Córdoba,AR-X,annual,2017,gas oil combustion consumption by freight transport,0.7223999999999999,TJ,N2O,3.9,kg/TJ,2.81736,kg -ad8e0f83-e8f1-3cc7-9e3d-191036ae94b5,SESCO,II.1.1,Buenos Aires,AR-B,annual,2017,gas oil combustion consumption by public passenger transport,5864.40708,TJ,CO2,74100.0,kg/TJ,434552564.628,kg -8eb0355e-0434-3e50-a56a-d660ca60e058,SESCO,II.1.1,Buenos Aires,AR-B,annual,2017,gas oil combustion consumption by public passenger transport,5864.40708,TJ,CH4,3.9,kg/TJ,22871.187611999998,kg -8eb0355e-0434-3e50-a56a-d660ca60e058,SESCO,II.1.1,Buenos Aires,AR-B,annual,2017,gas oil combustion consumption by public passenger transport,5864.40708,TJ,N2O,3.9,kg/TJ,22871.187611999998,kg -5af62793-ed38-3e85-9ef5-5f715ab1836c,SESCO,II.1.1,Capital Federal,AR-C,annual,2017,gas oil combustion consumption by public passenger transport,87.91608,TJ,CO2,74100.0,kg/TJ,6514581.528,kg -76141d08-c403-343e-b54f-35a088ba900c,SESCO,II.1.1,Capital Federal,AR-C,annual,2017,gas oil combustion consumption by public passenger transport,87.91608,TJ,CH4,3.9,kg/TJ,342.872712,kg -76141d08-c403-343e-b54f-35a088ba900c,SESCO,II.1.1,Capital Federal,AR-C,annual,2017,gas oil combustion consumption by public passenger transport,87.91608,TJ,N2O,3.9,kg/TJ,342.872712,kg -da869438-94b9-35cb-a81e-b1589947d4e1,SESCO,II.1.1,Buenos Aires,AR-B,annual,2017,gas oil combustion consumption by public passenger transport,406.5306,TJ,CO2,74100.0,kg/TJ,30123917.46,kg -9b456bf5-559f-31a7-8d08-4e620a91aa89,SESCO,II.1.1,Buenos Aires,AR-B,annual,2017,gas oil combustion consumption by public passenger transport,406.5306,TJ,CH4,3.9,kg/TJ,1585.4693399999999,kg -9b456bf5-559f-31a7-8d08-4e620a91aa89,SESCO,II.1.1,Buenos Aires,AR-B,annual,2017,gas oil combustion consumption by public passenger transport,406.5306,TJ,N2O,3.9,kg/TJ,1585.4693399999999,kg -31734171-ca40-35ac-8284-180bd2d370bb,SESCO,II.1.1,Buenos Aires,AR-B,annual,2017,gas oil combustion consumption by to the public,3579.6485079599997,TJ,CO2,74100.0,kg/TJ,265251954.43983597,kg -f1fb6763-3ea7-3f66-aa7e-f4a4eb0347b9,SESCO,II.1.1,Buenos Aires,AR-B,annual,2017,gas oil combustion consumption by to the public,3579.6485079599997,TJ,CH4,3.9,kg/TJ,13960.629181043998,kg -f1fb6763-3ea7-3f66-aa7e-f4a4eb0347b9,SESCO,II.1.1,Buenos Aires,AR-B,annual,2017,gas oil combustion consumption by to the public,3579.6485079599997,TJ,N2O,3.9,kg/TJ,13960.629181043998,kg -819aa862-9ff7-37bc-8269-a1d61cde2d7f,SESCO,II.1.1,Buenos Aires,AR-B,annual,2017,gas oil combustion consumption by to the public,533.36081484,TJ,CO2,74100.0,kg/TJ,39522036.379644,kg -95aba26e-a5a2-3e2f-8b32-044516fe8c22,SESCO,II.1.1,Buenos Aires,AR-B,annual,2017,gas oil combustion consumption by to the public,533.36081484,TJ,CH4,3.9,kg/TJ,2080.1071778759997,kg -95aba26e-a5a2-3e2f-8b32-044516fe8c22,SESCO,II.1.1,Buenos Aires,AR-B,annual,2017,gas oil combustion consumption by to the public,533.36081484,TJ,N2O,3.9,kg/TJ,2080.1071778759997,kg -665af30c-b6ac-383d-9cf9-fdd82df38dcc,SESCO,II.5.1,Buenos Aires,AR-B,annual,2017,gasoline combustion consumption by agriculture machines,7.5752999999999995,TJ,CO2,69300.0,kg/TJ,524968.2899999999,kg -336a93b7-5774-3f3f-9508-50054c86daff,SESCO,II.5.1,Buenos Aires,AR-B,annual,2017,gasoline combustion consumption by agriculture machines,7.5752999999999995,TJ,CH4,33.0,kg/TJ,249.98489999999998,kg -1883f630-5532-30c2-bc83-b7a24575d6c1,SESCO,II.5.1,Buenos Aires,AR-B,annual,2017,gasoline combustion consumption by agriculture machines,7.5752999999999995,TJ,N2O,3.2,kg/TJ,24.24096,kg -1bd40197-396f-38c5-b398-0de059b91ed3,SESCO,II.5.1,Salta,AR-A,annual,2017,gasoline combustion consumption by agriculture machines,1.1961,TJ,CO2,69300.0,kg/TJ,82889.73,kg -70f8085c-3ede-3967-8d1c-b16862d7f20d,SESCO,II.5.1,Salta,AR-A,annual,2017,gasoline combustion consumption by agriculture machines,1.1961,TJ,CH4,33.0,kg/TJ,39.4713,kg -28a985fb-c4f0-3928-ae16-1626dce5a10c,SESCO,II.5.1,Salta,AR-A,annual,2017,gasoline combustion consumption by agriculture machines,1.1961,TJ,N2O,3.2,kg/TJ,3.82752,kg -c7f09c04-3022-35df-b1ab-0399a0cf6d1b,SESCO,II.5.1,Santa Fe,AR-S,annual,2017,gasoline combustion consumption by agriculture machines,20.5552,TJ,CO2,69300.0,kg/TJ,1424475.3599999999,kg -1fe2bf66-062f-3178-a68d-5fa08e187ddb,SESCO,II.5.1,Santa Fe,AR-S,annual,2017,gasoline combustion consumption by agriculture machines,20.5552,TJ,CH4,33.0,kg/TJ,678.3216,kg -d0dc5169-499e-3efb-84b2-e2d5eb1acca5,SESCO,II.5.1,Santa Fe,AR-S,annual,2017,gasoline combustion consumption by agriculture machines,20.5552,TJ,N2O,3.2,kg/TJ,65.77664,kg -e6786a88-3f9a-3971-b8eb-64cfcbe56538,SESCO,II.5.1,Buenos Aires,AR-B,annual,2017,gas oil combustion consumption by agriculture machines,10168.43016,TJ,CO2,74100.0,kg/TJ,753480674.856,kg -02fdede3-1e98-39b2-82a7-d95d72cb4726,SESCO,II.5.1,Buenos Aires,AR-B,annual,2017,gas oil combustion consumption by agriculture machines,10168.43016,TJ,CH4,3.9,kg/TJ,39656.877624,kg -02fdede3-1e98-39b2-82a7-d95d72cb4726,SESCO,II.5.1,Buenos Aires,AR-B,annual,2017,gas oil combustion consumption by agriculture machines,10168.43016,TJ,N2O,3.9,kg/TJ,39656.877624,kg -2e0b3a79-0908-3ab1-b8c3-6c33bcff6193,SESCO,II.5.1,Capital Federal,AR-C,annual,2017,gas oil combustion consumption by agriculture machines,40.59888,TJ,CO2,74100.0,kg/TJ,3008377.008,kg -9371e611-cacb-3de3-a8a7-1bc7749ba129,SESCO,II.5.1,Capital Federal,AR-C,annual,2017,gas oil combustion consumption by agriculture machines,40.59888,TJ,CH4,3.9,kg/TJ,158.335632,kg -9371e611-cacb-3de3-a8a7-1bc7749ba129,SESCO,II.5.1,Capital Federal,AR-C,annual,2017,gas oil combustion consumption by agriculture machines,40.59888,TJ,N2O,3.9,kg/TJ,158.335632,kg -fd07e0eb-3674-319a-830a-d2d6bbe744bb,SESCO,II.5.1,Catamarca,AR-K,annual,2017,gas oil combustion consumption by agriculture machines,155.74944,TJ,CO2,74100.0,kg/TJ,11541033.503999999,kg -1e35ecf7-759c-35c5-95c1-86fff66f23e3,SESCO,II.5.1,Catamarca,AR-K,annual,2017,gas oil combustion consumption by agriculture machines,155.74944,TJ,CH4,3.9,kg/TJ,607.422816,kg -1e35ecf7-759c-35c5-95c1-86fff66f23e3,SESCO,II.5.1,Catamarca,AR-K,annual,2017,gas oil combustion consumption by agriculture machines,155.74944,TJ,N2O,3.9,kg/TJ,607.422816,kg -d09f95d7-025a-3641-ade5-75d76adb064f,SESCO,II.5.1,Chaco,AR-H,annual,2017,gas oil combustion consumption by agriculture machines,1247.47644,TJ,CO2,74100.0,kg/TJ,92438004.204,kg -575e7b07-33a1-3e02-997d-b0d0e13558d1,SESCO,II.5.1,Chaco,AR-H,annual,2017,gas oil combustion consumption by agriculture machines,1247.47644,TJ,CH4,3.9,kg/TJ,4865.158116,kg -575e7b07-33a1-3e02-997d-b0d0e13558d1,SESCO,II.5.1,Chaco,AR-H,annual,2017,gas oil combustion consumption by agriculture machines,1247.47644,TJ,N2O,3.9,kg/TJ,4865.158116,kg -9ad35ad3-03ed-33c9-af44-cd7e096950c6,SESCO,II.5.1,Corrientes,AR-W,annual,2017,gas oil combustion consumption by agriculture machines,304.4916,TJ,CO2,74100.0,kg/TJ,22562827.56,kg -58e36d6e-ab63-3a64-838a-52ec295917ed,SESCO,II.5.1,Corrientes,AR-W,annual,2017,gas oil combustion consumption by agriculture machines,304.4916,TJ,CH4,3.9,kg/TJ,1187.51724,kg -58e36d6e-ab63-3a64-838a-52ec295917ed,SESCO,II.5.1,Corrientes,AR-W,annual,2017,gas oil combustion consumption by agriculture machines,304.4916,TJ,N2O,3.9,kg/TJ,1187.51724,kg -c3ef865b-b8f9-385a-850b-c165a6eec508,SESCO,II.5.1,Córdoba,AR-X,annual,2017,gas oil combustion consumption by agriculture machines,8039.409,TJ,CO2,74100.0,kg/TJ,595720206.9,kg -025d2ed8-6ab8-3981-b056-ad2ef9145624,SESCO,II.5.1,Córdoba,AR-X,annual,2017,gas oil combustion consumption by agriculture machines,8039.409,TJ,CH4,3.9,kg/TJ,31353.695099999997,kg -025d2ed8-6ab8-3981-b056-ad2ef9145624,SESCO,II.5.1,Córdoba,AR-X,annual,2017,gas oil combustion consumption by agriculture machines,8039.409,TJ,N2O,3.9,kg/TJ,31353.695099999997,kg -fb7bf971-2d8c-3ee8-95fc-5948ef1006e2,SESCO,II.5.1,Entre Rios,AR-E,annual,2017,gas oil combustion consumption by agriculture machines,2093.62356,TJ,CO2,74100.0,kg/TJ,155137505.796,kg -06be89ad-32b0-35bc-90be-6bb0ef617cdb,SESCO,II.5.1,Entre Rios,AR-E,annual,2017,gas oil combustion consumption by agriculture machines,2093.62356,TJ,CH4,3.9,kg/TJ,8165.131883999999,kg -06be89ad-32b0-35bc-90be-6bb0ef617cdb,SESCO,II.5.1,Entre Rios,AR-E,annual,2017,gas oil combustion consumption by agriculture machines,2093.62356,TJ,N2O,3.9,kg/TJ,8165.131883999999,kg -e743d08e-68c3-35d2-8427-3d0f0b1fe500,SESCO,II.5.1,Formosa,AR-P,annual,2017,gas oil combustion consumption by agriculture machines,194.25336,TJ,CO2,74100.0,kg/TJ,14394173.976,kg -236844a4-b460-3120-a938-af5ddbedae65,SESCO,II.5.1,Formosa,AR-P,annual,2017,gas oil combustion consumption by agriculture machines,194.25336,TJ,CH4,3.9,kg/TJ,757.5881039999999,kg -236844a4-b460-3120-a938-af5ddbedae65,SESCO,II.5.1,Formosa,AR-P,annual,2017,gas oil combustion consumption by agriculture machines,194.25336,TJ,N2O,3.9,kg/TJ,757.5881039999999,kg -069c5117-1511-39da-99a8-a59905221c84,SESCO,II.5.1,Jujuy,AR-Y,annual,2017,gas oil combustion consumption by agriculture machines,1070.74128,TJ,CO2,74100.0,kg/TJ,79341928.84799999,kg -fd305b28-9400-3008-816c-b2ba55dc9988,SESCO,II.5.1,Jujuy,AR-Y,annual,2017,gas oil combustion consumption by agriculture machines,1070.74128,TJ,CH4,3.9,kg/TJ,4175.890992,kg -fd305b28-9400-3008-816c-b2ba55dc9988,SESCO,II.5.1,Jujuy,AR-Y,annual,2017,gas oil combustion consumption by agriculture machines,1070.74128,TJ,N2O,3.9,kg/TJ,4175.890992,kg -13ce51e7-734a-3ebf-876c-38072c770420,SESCO,II.5.1,La Pampa,AR-L,annual,2017,gas oil combustion consumption by agriculture machines,1778.5488,TJ,CO2,74100.0,kg/TJ,131790466.08,kg -e9607575-c2a5-3ea5-81b4-059fbc06378e,SESCO,II.5.1,La Pampa,AR-L,annual,2017,gas oil combustion consumption by agriculture machines,1778.5488,TJ,CH4,3.9,kg/TJ,6936.34032,kg -e9607575-c2a5-3ea5-81b4-059fbc06378e,SESCO,II.5.1,La Pampa,AR-L,annual,2017,gas oil combustion consumption by agriculture machines,1778.5488,TJ,N2O,3.9,kg/TJ,6936.34032,kg -851a6a46-907c-334c-acb9-009443cba9e4,SESCO,II.5.1,La Rioja,AR-F,annual,2017,gas oil combustion consumption by agriculture machines,162.86508,TJ,CO2,74100.0,kg/TJ,12068302.428000001,kg -23cf81c6-e995-32a2-ab3d-3b712813537d,SESCO,II.5.1,La Rioja,AR-F,annual,2017,gas oil combustion consumption by agriculture machines,162.86508,TJ,CH4,3.9,kg/TJ,635.173812,kg -23cf81c6-e995-32a2-ab3d-3b712813537d,SESCO,II.5.1,La Rioja,AR-F,annual,2017,gas oil combustion consumption by agriculture machines,162.86508,TJ,N2O,3.9,kg/TJ,635.173812,kg -53f477b7-5063-377a-bbf2-2d661b31ed38,SESCO,II.5.1,Mendoza,AR-M,annual,2017,gas oil combustion consumption by agriculture machines,2729.0466,TJ,CO2,74100.0,kg/TJ,202222353.06,kg -d1f3de27-72f5-3879-a36c-4319097b010a,SESCO,II.5.1,Mendoza,AR-M,annual,2017,gas oil combustion consumption by agriculture machines,2729.0466,TJ,CH4,3.9,kg/TJ,10643.28174,kg -d1f3de27-72f5-3879-a36c-4319097b010a,SESCO,II.5.1,Mendoza,AR-M,annual,2017,gas oil combustion consumption by agriculture machines,2729.0466,TJ,N2O,3.9,kg/TJ,10643.28174,kg -781476bd-c045-3ee9-8964-cdc46eb25486,SESCO,II.5.1,Misiones,AR-N,annual,2017,gas oil combustion consumption by agriculture machines,1087.4287199999999,TJ,CO2,74100.0,kg/TJ,80578468.152,kg -9fb00b79-886a-323e-9792-262e388dfbaf,SESCO,II.5.1,Misiones,AR-N,annual,2017,gas oil combustion consumption by agriculture machines,1087.4287199999999,TJ,CH4,3.9,kg/TJ,4240.972008,kg -9fb00b79-886a-323e-9792-262e388dfbaf,SESCO,II.5.1,Misiones,AR-N,annual,2017,gas oil combustion consumption by agriculture machines,1087.4287199999999,TJ,N2O,3.9,kg/TJ,4240.972008,kg -cdbc4816-d18f-3b19-98a9-243b274c7366,SESCO,II.5.1,Rio Negro,AR-R,annual,2017,gas oil combustion consumption by agriculture machines,238.86156,TJ,CO2,74100.0,kg/TJ,17699641.596,kg -1a245766-1afe-3126-a6a9-a666273dad12,SESCO,II.5.1,Rio Negro,AR-R,annual,2017,gas oil combustion consumption by agriculture machines,238.86156,TJ,CH4,3.9,kg/TJ,931.560084,kg -1a245766-1afe-3126-a6a9-a666273dad12,SESCO,II.5.1,Rio Negro,AR-R,annual,2017,gas oil combustion consumption by agriculture machines,238.86156,TJ,N2O,3.9,kg/TJ,931.560084,kg -c21d59c0-9383-3ad2-a429-d9d8f1644af6,SESCO,II.5.1,Salta,AR-A,annual,2017,gas oil combustion consumption by agriculture machines,1923.67896,TJ,CO2,74100.0,kg/TJ,142544610.936,kg -151aa1a9-59d8-32eb-af93-5a19d51eb9fe,SESCO,II.5.1,Salta,AR-A,annual,2017,gas oil combustion consumption by agriculture machines,1923.67896,TJ,CH4,3.9,kg/TJ,7502.347944,kg -151aa1a9-59d8-32eb-af93-5a19d51eb9fe,SESCO,II.5.1,Salta,AR-A,annual,2017,gas oil combustion consumption by agriculture machines,1923.67896,TJ,N2O,3.9,kg/TJ,7502.347944,kg -beb5e747-9926-3824-91fd-7e174c128882,SESCO,II.5.1,San Juan,AR-J,annual,2017,gas oil combustion consumption by agriculture machines,704.3038799999999,TJ,CO2,74100.0,kg/TJ,52188917.507999994,kg -9c2eba95-f389-353b-8d72-40ce79a2c72a,SESCO,II.5.1,San Juan,AR-J,annual,2017,gas oil combustion consumption by agriculture machines,704.3038799999999,TJ,CH4,3.9,kg/TJ,2746.7851319999995,kg -9c2eba95-f389-353b-8d72-40ce79a2c72a,SESCO,II.5.1,San Juan,AR-J,annual,2017,gas oil combustion consumption by agriculture machines,704.3038799999999,TJ,N2O,3.9,kg/TJ,2746.7851319999995,kg -07f84202-a60b-39e4-93cd-583ef543ac8b,SESCO,II.5.1,San Luis,AR-D,annual,2017,gas oil combustion consumption by agriculture machines,572.0685599999999,TJ,CO2,74100.0,kg/TJ,42390280.296,kg -bc42490a-74b0-3275-ab1b-9ae9a17336ec,SESCO,II.5.1,San Luis,AR-D,annual,2017,gas oil combustion consumption by agriculture machines,572.0685599999999,TJ,CH4,3.9,kg/TJ,2231.0673839999995,kg -bc42490a-74b0-3275-ab1b-9ae9a17336ec,SESCO,II.5.1,San Luis,AR-D,annual,2017,gas oil combustion consumption by agriculture machines,572.0685599999999,TJ,N2O,3.9,kg/TJ,2231.0673839999995,kg -1c01650f-3ea2-34c1-bbe6-22670dac256b,SESCO,II.5.1,Santa Fe,AR-S,annual,2017,gas oil combustion consumption by agriculture machines,7288.32972,TJ,CO2,74100.0,kg/TJ,540065232.252,kg -86840368-48c0-3b9b-842f-0cdaa4fea50a,SESCO,II.5.1,Santa Fe,AR-S,annual,2017,gas oil combustion consumption by agriculture machines,7288.32972,TJ,CH4,3.9,kg/TJ,28424.485908,kg -86840368-48c0-3b9b-842f-0cdaa4fea50a,SESCO,II.5.1,Santa Fe,AR-S,annual,2017,gas oil combustion consumption by agriculture machines,7288.32972,TJ,N2O,3.9,kg/TJ,28424.485908,kg -4679e7b9-58c6-36b4-94d4-7ec0ee97d886,SESCO,II.5.1,Santiago del Estero,AR-G,annual,2017,gas oil combustion consumption by agriculture machines,1750.1946,TJ,CO2,74100.0,kg/TJ,129689419.86,kg -2d100af3-5386-338c-9b7b-e6d317abf777,SESCO,II.5.1,Santiago del Estero,AR-G,annual,2017,gas oil combustion consumption by agriculture machines,1750.1946,TJ,CH4,3.9,kg/TJ,6825.75894,kg -2d100af3-5386-338c-9b7b-e6d317abf777,SESCO,II.5.1,Santiago del Estero,AR-G,annual,2017,gas oil combustion consumption by agriculture machines,1750.1946,TJ,N2O,3.9,kg/TJ,6825.75894,kg -832e8723-f528-3846-9d78-b691ce06d080,SESCO,II.5.1,Tucuman,AR-T,annual,2017,gas oil combustion consumption by agriculture machines,1223.7456,TJ,CO2,74100.0,kg/TJ,90679548.96,kg -a679e092-bf15-3aae-acfa-fa8255ee83be,SESCO,II.5.1,Tucuman,AR-T,annual,2017,gas oil combustion consumption by agriculture machines,1223.7456,TJ,CH4,3.9,kg/TJ,4772.60784,kg -a679e092-bf15-3aae-acfa-fa8255ee83be,SESCO,II.5.1,Tucuman,AR-T,annual,2017,gas oil combustion consumption by agriculture machines,1223.7456,TJ,N2O,3.9,kg/TJ,4772.60784,kg -0e3871fe-eb73-320b-a75b-a0fd101a69d5,SESCO,II.5.1,Buenos Aires,AR-B,annual,2017,gas oil combustion consumption by agriculture machines,557.94564,TJ,CO2,74100.0,kg/TJ,41343771.924,kg -37b9b4c8-214d-3137-ad61-0f54b944bcda,SESCO,II.5.1,Buenos Aires,AR-B,annual,2017,gas oil combustion consumption by agriculture machines,557.94564,TJ,CH4,3.9,kg/TJ,2175.987996,kg -37b9b4c8-214d-3137-ad61-0f54b944bcda,SESCO,II.5.1,Buenos Aires,AR-B,annual,2017,gas oil combustion consumption by agriculture machines,557.94564,TJ,N2O,3.9,kg/TJ,2175.987996,kg -003831e7-8530-343e-a9f7-c5cf8f22aec1,SESCO,II.5.1,Capital Federal,AR-C,annual,2017,gas oil combustion consumption by agriculture machines,2.60064,TJ,CO2,74100.0,kg/TJ,192707.424,kg -7590ccc9-113e-3d75-a4fd-67608737eec0,SESCO,II.5.1,Capital Federal,AR-C,annual,2017,gas oil combustion consumption by agriculture machines,2.60064,TJ,CH4,3.9,kg/TJ,10.142496,kg -7590ccc9-113e-3d75-a4fd-67608737eec0,SESCO,II.5.1,Capital Federal,AR-C,annual,2017,gas oil combustion consumption by agriculture machines,2.60064,TJ,N2O,3.9,kg/TJ,10.142496,kg -607d85ac-fe21-3a4e-ac37-9af7a4e43aae,SESCO,II.5.1,Catamarca,AR-K,annual,2017,gas oil combustion consumption by agriculture machines,9.82464,TJ,CO2,74100.0,kg/TJ,728005.824,kg -d33e9bbd-6c3d-3653-8aff-642fc63bbac9,SESCO,II.5.1,Catamarca,AR-K,annual,2017,gas oil combustion consumption by agriculture machines,9.82464,TJ,CH4,3.9,kg/TJ,38.316096,kg -d33e9bbd-6c3d-3653-8aff-642fc63bbac9,SESCO,II.5.1,Catamarca,AR-K,annual,2017,gas oil combustion consumption by agriculture machines,9.82464,TJ,N2O,3.9,kg/TJ,38.316096,kg -9e6933f4-c492-35a3-bca3-d5dbf8428a4d,SESCO,II.5.1,Chaco,AR-H,annual,2017,gas oil combustion consumption by agriculture machines,103.51992,TJ,CO2,74100.0,kg/TJ,7670826.072,kg -aadf2da5-ec4a-35e7-83b7-5033910c452f,SESCO,II.5.1,Chaco,AR-H,annual,2017,gas oil combustion consumption by agriculture machines,103.51992,TJ,CH4,3.9,kg/TJ,403.727688,kg -aadf2da5-ec4a-35e7-83b7-5033910c452f,SESCO,II.5.1,Chaco,AR-H,annual,2017,gas oil combustion consumption by agriculture machines,103.51992,TJ,N2O,3.9,kg/TJ,403.727688,kg -ee270f27-b023-3590-b5a6-37025b1eccd5,SESCO,II.5.1,Corrientes,AR-W,annual,2017,gas oil combustion consumption by agriculture machines,7.91028,TJ,CO2,74100.0,kg/TJ,586151.748,kg -d737bfbe-4e3f-3b9a-97e0-e0d6f7ff3989,SESCO,II.5.1,Corrientes,AR-W,annual,2017,gas oil combustion consumption by agriculture machines,7.91028,TJ,CH4,3.9,kg/TJ,30.850092,kg -d737bfbe-4e3f-3b9a-97e0-e0d6f7ff3989,SESCO,II.5.1,Corrientes,AR-W,annual,2017,gas oil combustion consumption by agriculture machines,7.91028,TJ,N2O,3.9,kg/TJ,30.850092,kg -99e45696-097b-369d-b86b-6fe854451872,SESCO,II.5.1,Córdoba,AR-X,annual,2017,gas oil combustion consumption by agriculture machines,274.11468,TJ,CO2,74100.0,kg/TJ,20311897.788000003,kg -ad8b59ac-92c1-30ed-92f5-9568b0a736db,SESCO,II.5.1,Córdoba,AR-X,annual,2017,gas oil combustion consumption by agriculture machines,274.11468,TJ,CH4,3.9,kg/TJ,1069.047252,kg -ad8b59ac-92c1-30ed-92f5-9568b0a736db,SESCO,II.5.1,Córdoba,AR-X,annual,2017,gas oil combustion consumption by agriculture machines,274.11468,TJ,N2O,3.9,kg/TJ,1069.047252,kg -d3195bec-95e7-3c9f-a4cf-4d13b7ea77da,SESCO,II.5.1,Entre Rios,AR-E,annual,2017,gas oil combustion consumption by agriculture machines,42.22428,TJ,CO2,74100.0,kg/TJ,3128819.148,kg -6ee8beb2-8632-36b0-9509-662ee45dd268,SESCO,II.5.1,Entre Rios,AR-E,annual,2017,gas oil combustion consumption by agriculture machines,42.22428,TJ,CH4,3.9,kg/TJ,164.674692,kg -6ee8beb2-8632-36b0-9509-662ee45dd268,SESCO,II.5.1,Entre Rios,AR-E,annual,2017,gas oil combustion consumption by agriculture machines,42.22428,TJ,N2O,3.9,kg/TJ,164.674692,kg -423ecbd0-30b3-33b7-a68a-73c07c03e13d,SESCO,II.5.1,Formosa,AR-P,annual,2017,gas oil combustion consumption by agriculture machines,9.53568,TJ,CO2,74100.0,kg/TJ,706593.8879999999,kg -afb05873-b107-3b4f-9f95-236fab284542,SESCO,II.5.1,Formosa,AR-P,annual,2017,gas oil combustion consumption by agriculture machines,9.53568,TJ,CH4,3.9,kg/TJ,37.18915199999999,kg -afb05873-b107-3b4f-9f95-236fab284542,SESCO,II.5.1,Formosa,AR-P,annual,2017,gas oil combustion consumption by agriculture machines,9.53568,TJ,N2O,3.9,kg/TJ,37.18915199999999,kg -ba8f5917-49ec-3b89-a5ae-ce305025405c,SESCO,II.5.1,Jujuy,AR-Y,annual,2017,gas oil combustion consumption by agriculture machines,24.0198,TJ,CO2,74100.0,kg/TJ,1779867.18,kg -63ad919a-7f66-3b18-af81-9bd8a6def492,SESCO,II.5.1,Jujuy,AR-Y,annual,2017,gas oil combustion consumption by agriculture machines,24.0198,TJ,CH4,3.9,kg/TJ,93.67721999999999,kg -63ad919a-7f66-3b18-af81-9bd8a6def492,SESCO,II.5.1,Jujuy,AR-Y,annual,2017,gas oil combustion consumption by agriculture machines,24.0198,TJ,N2O,3.9,kg/TJ,93.67721999999999,kg -4b24e9a4-d2ac-3537-afce-9e2ad8ccf2a1,SESCO,II.5.1,La Pampa,AR-L,annual,2017,gas oil combustion consumption by agriculture machines,142.38504,TJ,CO2,74100.0,kg/TJ,10550731.464,kg -6b8a9644-5504-3a32-a331-9199de271502,SESCO,II.5.1,La Pampa,AR-L,annual,2017,gas oil combustion consumption by agriculture machines,142.38504,TJ,CH4,3.9,kg/TJ,555.301656,kg -6b8a9644-5504-3a32-a331-9199de271502,SESCO,II.5.1,La Pampa,AR-L,annual,2017,gas oil combustion consumption by agriculture machines,142.38504,TJ,N2O,3.9,kg/TJ,555.301656,kg -95bb409a-a6d7-346a-b106-86b2d698c74c,SESCO,II.5.1,Mendoza,AR-M,annual,2017,gas oil combustion consumption by agriculture machines,156.36348,TJ,CO2,74100.0,kg/TJ,11586533.868,kg -1c62d003-d1b6-3c2f-862d-11ecc97a4437,SESCO,II.5.1,Mendoza,AR-M,annual,2017,gas oil combustion consumption by agriculture machines,156.36348,TJ,CH4,3.9,kg/TJ,609.817572,kg -1c62d003-d1b6-3c2f-862d-11ecc97a4437,SESCO,II.5.1,Mendoza,AR-M,annual,2017,gas oil combustion consumption by agriculture machines,156.36348,TJ,N2O,3.9,kg/TJ,609.817572,kg -3a6a39ba-9ca3-3f38-a4aa-26794979f971,SESCO,II.5.1,Misiones,AR-N,annual,2017,gas oil combustion consumption by agriculture machines,110.56332,TJ,CO2,74100.0,kg/TJ,8192742.012,kg -ffcb023c-b1ab-38ca-9df0-017b3f215f24,SESCO,II.5.1,Misiones,AR-N,annual,2017,gas oil combustion consumption by agriculture machines,110.56332,TJ,CH4,3.9,kg/TJ,431.196948,kg -ffcb023c-b1ab-38ca-9df0-017b3f215f24,SESCO,II.5.1,Misiones,AR-N,annual,2017,gas oil combustion consumption by agriculture machines,110.56332,TJ,N2O,3.9,kg/TJ,431.196948,kg -443979ef-ead2-3e56-9516-2573b764b77e,SESCO,II.5.1,Rio Negro,AR-R,annual,2017,gas oil combustion consumption by agriculture machines,37.31196,TJ,CO2,74100.0,kg/TJ,2764816.236,kg -7722df82-7ebe-3142-a735-68c69d495590,SESCO,II.5.1,Rio Negro,AR-R,annual,2017,gas oil combustion consumption by agriculture machines,37.31196,TJ,CH4,3.9,kg/TJ,145.51664399999999,kg -7722df82-7ebe-3142-a735-68c69d495590,SESCO,II.5.1,Rio Negro,AR-R,annual,2017,gas oil combustion consumption by agriculture machines,37.31196,TJ,N2O,3.9,kg/TJ,145.51664399999999,kg -72857803-99b1-3308-acff-dd588c6924cb,SESCO,II.5.1,Salta,AR-A,annual,2017,gas oil combustion consumption by agriculture machines,107.13192,TJ,CO2,74100.0,kg/TJ,7938475.272,kg -3e27b934-8bc4-3ea5-ab0c-19917e487c7e,SESCO,II.5.1,Salta,AR-A,annual,2017,gas oil combustion consumption by agriculture machines,107.13192,TJ,CH4,3.9,kg/TJ,417.814488,kg -3e27b934-8bc4-3ea5-ab0c-19917e487c7e,SESCO,II.5.1,Salta,AR-A,annual,2017,gas oil combustion consumption by agriculture machines,107.13192,TJ,N2O,3.9,kg/TJ,417.814488,kg -87b7cecc-1181-3261-9796-cb62596ff5f8,SESCO,II.5.1,San Juan,AR-J,annual,2017,gas oil combustion consumption by agriculture machines,93.47856,TJ,CO2,74100.0,kg/TJ,6926761.296,kg -d7fa041f-074f-3c3f-8071-c7b89e0331e0,SESCO,II.5.1,San Juan,AR-J,annual,2017,gas oil combustion consumption by agriculture machines,93.47856,TJ,CH4,3.9,kg/TJ,364.56638399999997,kg -d7fa041f-074f-3c3f-8071-c7b89e0331e0,SESCO,II.5.1,San Juan,AR-J,annual,2017,gas oil combustion consumption by agriculture machines,93.47856,TJ,N2O,3.9,kg/TJ,364.56638399999997,kg -0e2a0305-84cc-320f-97c5-386738721e08,SESCO,II.5.1,San Luis,AR-D,annual,2017,gas oil combustion consumption by agriculture machines,40.815599999999996,TJ,CO2,74100.0,kg/TJ,3024435.9599999995,kg -a1dd10c3-0f78-3ada-912e-2fcc194e583a,SESCO,II.5.1,San Luis,AR-D,annual,2017,gas oil combustion consumption by agriculture machines,40.815599999999996,TJ,CH4,3.9,kg/TJ,159.18084,kg -a1dd10c3-0f78-3ada-912e-2fcc194e583a,SESCO,II.5.1,San Luis,AR-D,annual,2017,gas oil combustion consumption by agriculture machines,40.815599999999996,TJ,N2O,3.9,kg/TJ,159.18084,kg -017833fc-a19a-383b-9018-b3efb52fe3b0,SESCO,II.5.1,Santa Fe,AR-S,annual,2017,gas oil combustion consumption by agriculture machines,271.87524,TJ,CO2,74100.0,kg/TJ,20145955.284,kg -77a059e6-a468-31c6-9f36-e56ca5b8b9a7,SESCO,II.5.1,Santa Fe,AR-S,annual,2017,gas oil combustion consumption by agriculture machines,271.87524,TJ,CH4,3.9,kg/TJ,1060.3134360000001,kg -77a059e6-a468-31c6-9f36-e56ca5b8b9a7,SESCO,II.5.1,Santa Fe,AR-S,annual,2017,gas oil combustion consumption by agriculture machines,271.87524,TJ,N2O,3.9,kg/TJ,1060.3134360000001,kg -c2065e3a-3d5c-32d9-b2ab-4d53b2988c29,SESCO,II.5.1,Santiago del Estero,AR-G,annual,2017,gas oil combustion consumption by agriculture machines,213.21636,TJ,CO2,74100.0,kg/TJ,15799332.276,kg -b4738337-a334-3b9f-8375-1ab23925f6f9,SESCO,II.5.1,Santiago del Estero,AR-G,annual,2017,gas oil combustion consumption by agriculture machines,213.21636,TJ,CH4,3.9,kg/TJ,831.543804,kg -b4738337-a334-3b9f-8375-1ab23925f6f9,SESCO,II.5.1,Santiago del Estero,AR-G,annual,2017,gas oil combustion consumption by agriculture machines,213.21636,TJ,N2O,3.9,kg/TJ,831.543804,kg -15ac4515-bad0-36b3-bc71-cffd18b34a80,SESCO,II.5.1,Tucuman,AR-T,annual,2017,gas oil combustion consumption by agriculture machines,139.71216,TJ,CO2,74100.0,kg/TJ,10352671.056000002,kg -cfa1eaae-02a9-3e13-be65-be07b5cc871e,SESCO,II.5.1,Tucuman,AR-T,annual,2017,gas oil combustion consumption by agriculture machines,139.71216,TJ,CH4,3.9,kg/TJ,544.877424,kg -cfa1eaae-02a9-3e13-be65-be07b5cc871e,SESCO,II.5.1,Tucuman,AR-T,annual,2017,gas oil combustion consumption by agriculture machines,139.71216,TJ,N2O,3.9,kg/TJ,544.877424,kg -ef11f596-9d33-325a-b382-098e8a3d0c50,SESCO,II.5.1,Buenos Aires,AR-B,annual,2017,jet kerosene combustion consumption by agriculture machines,7.108377999999999,TJ,CO2,71500.0,kg/TJ,508249.02699999994,kg -706afca4-0a62-3cb2-bd61-f3ee1dab2ba9,SESCO,II.5.1,Buenos Aires,AR-B,annual,2017,jet kerosene combustion consumption by agriculture machines,7.108377999999999,TJ,CH4,0.5,kg/TJ,3.5541889999999996,kg -2e38cf76-9a6c-3657-94f8-3edf7c321a9a,SESCO,II.5.1,Buenos Aires,AR-B,annual,2017,jet kerosene combustion consumption by agriculture machines,7.108377999999999,TJ,N2O,2.0,kg/TJ,14.216755999999998,kg -f15cf9af-afeb-31b9-a32e-757a60ba7346,SESCO,II.5.1,Córdoba,AR-X,annual,2017,jet kerosene combustion consumption by agriculture machines,0.31453,TJ,CO2,71500.0,kg/TJ,22488.894999999997,kg -cf48b8c3-2f61-3dd0-b123-b5d477ee9603,SESCO,II.5.1,Córdoba,AR-X,annual,2017,jet kerosene combustion consumption by agriculture machines,0.31453,TJ,CH4,0.5,kg/TJ,0.157265,kg -ba1ec442-4a67-3a2f-9a40-c16e4a8f5665,SESCO,II.5.1,Córdoba,AR-X,annual,2017,jet kerosene combustion consumption by agriculture machines,0.31453,TJ,N2O,2.0,kg/TJ,0.62906,kg -731686e1-2f7c-34e6-b141-5be8582cd2ae,SESCO,II.5.1,La Pampa,AR-L,annual,2017,jet kerosene combustion consumption by agriculture machines,0.31453,TJ,CO2,71500.0,kg/TJ,22488.894999999997,kg -4d017e54-c7f3-30ac-b76b-f4146c487ab4,SESCO,II.5.1,La Pampa,AR-L,annual,2017,jet kerosene combustion consumption by agriculture machines,0.31453,TJ,CH4,0.5,kg/TJ,0.157265,kg -9d293ba2-ebba-3922-9dc9-35878266eeb5,SESCO,II.5.1,La Pampa,AR-L,annual,2017,jet kerosene combustion consumption by agriculture machines,0.31453,TJ,N2O,2.0,kg/TJ,0.62906,kg -8a95dc8e-0171-3606-af47-71e485b4d134,SESCO,II.5.1,Santa Fe,AR-S,annual,2017,jet kerosene combustion consumption by agriculture machines,3.5541889999999996,TJ,CO2,71500.0,kg/TJ,254124.51349999997,kg -c904cebe-9491-3cec-960e-9be60b65bb55,SESCO,II.5.1,Santa Fe,AR-S,annual,2017,jet kerosene combustion consumption by agriculture machines,3.5541889999999996,TJ,CH4,0.5,kg/TJ,1.7770944999999998,kg -dd03e001-5d38-37ad-9ba4-7f1b0763d445,SESCO,II.5.1,Santa Fe,AR-S,annual,2017,jet kerosene combustion consumption by agriculture machines,3.5541889999999996,TJ,N2O,2.0,kg/TJ,7.108377999999999,kg -d769adb9-da7d-3915-998e-d97f6d0ec620,SESCO,II.1.1,Buenos Aires,AR-B,annual,2017,gas oil combustion consumption by to the public,25514.22888,TJ,CO2,74100.0,kg/TJ,1890604360.008,kg -65803f3c-3372-3a33-9fb8-10081f3fded6,SESCO,II.1.1,Buenos Aires,AR-B,annual,2017,gas oil combustion consumption by to the public,25514.22888,TJ,CH4,3.9,kg/TJ,99505.492632,kg -65803f3c-3372-3a33-9fb8-10081f3fded6,SESCO,II.1.1,Buenos Aires,AR-B,annual,2017,gas oil combustion consumption by to the public,25514.22888,TJ,N2O,3.9,kg/TJ,99505.492632,kg -ea6b19f6-519a-3f2c-950c-3b370ee1d9c2,SESCO,II.1.1,Capital Federal,AR-C,annual,2017,gas oil combustion consumption by to the public,2881.87032,TJ,CO2,74100.0,kg/TJ,213546590.712,kg -7a2c115e-b67e-303e-b03e-cec739f43761,SESCO,II.1.1,Capital Federal,AR-C,annual,2017,gas oil combustion consumption by to the public,2881.87032,TJ,CH4,3.9,kg/TJ,11239.294248,kg -7a2c115e-b67e-303e-b03e-cec739f43761,SESCO,II.1.1,Capital Federal,AR-C,annual,2017,gas oil combustion consumption by to the public,2881.87032,TJ,N2O,3.9,kg/TJ,11239.294248,kg -2a6dcbcd-1626-3d25-b7d1-35d67a9c1d1d,SESCO,II.1.1,Catamarca,AR-K,annual,2017,gas oil combustion consumption by to the public,295.1004,TJ,CO2,74100.0,kg/TJ,21866939.639999997,kg -5bf74180-8485-3bf6-9ce2-c9f38b3682e1,SESCO,II.1.1,Catamarca,AR-K,annual,2017,gas oil combustion consumption by to the public,295.1004,TJ,CH4,3.9,kg/TJ,1150.8915599999998,kg -5bf74180-8485-3bf6-9ce2-c9f38b3682e1,SESCO,II.1.1,Catamarca,AR-K,annual,2017,gas oil combustion consumption by to the public,295.1004,TJ,N2O,3.9,kg/TJ,1150.8915599999998,kg -6f03bb53-919d-3538-ac67-8ab2f0ec2837,SESCO,II.1.1,Chaco,AR-H,annual,2017,gas oil combustion consumption by to the public,1956.72876,TJ,CO2,74100.0,kg/TJ,144993601.116,kg -cab3752e-e8a4-3710-b115-46c481e74778,SESCO,II.1.1,Chaco,AR-H,annual,2017,gas oil combustion consumption by to the public,1956.72876,TJ,CH4,3.9,kg/TJ,7631.242163999999,kg -cab3752e-e8a4-3710-b115-46c481e74778,SESCO,II.1.1,Chaco,AR-H,annual,2017,gas oil combustion consumption by to the public,1956.72876,TJ,N2O,3.9,kg/TJ,7631.242163999999,kg -b8e25e4a-7daa-3b0a-b5ee-998bd52b4cd9,SESCO,II.1.1,Chubut,AR-U,annual,2017,gas oil combustion consumption by to the public,3545.39472,TJ,CO2,74100.0,kg/TJ,262713748.75199997,kg -d9c3f270-7aaa-3eb7-9ed8-ab2764e32f69,SESCO,II.1.1,Chubut,AR-U,annual,2017,gas oil combustion consumption by to the public,3545.39472,TJ,CH4,3.9,kg/TJ,13827.039407999999,kg -d9c3f270-7aaa-3eb7-9ed8-ab2764e32f69,SESCO,II.1.1,Chubut,AR-U,annual,2017,gas oil combustion consumption by to the public,3545.39472,TJ,N2O,3.9,kg/TJ,13827.039407999999,kg -4b7cbbc2-b479-388e-b799-19609d327c79,SESCO,II.1.1,Corrientes,AR-W,annual,2017,gas oil combustion consumption by to the public,1572.80928,TJ,CO2,74100.0,kg/TJ,116545167.648,kg -d97c8519-20ca-3e4e-be6f-2f2cd4e89454,SESCO,II.1.1,Corrientes,AR-W,annual,2017,gas oil combustion consumption by to the public,1572.80928,TJ,CH4,3.9,kg/TJ,6133.956192,kg -d97c8519-20ca-3e4e-be6f-2f2cd4e89454,SESCO,II.1.1,Corrientes,AR-W,annual,2017,gas oil combustion consumption by to the public,1572.80928,TJ,N2O,3.9,kg/TJ,6133.956192,kg -0b8c5416-143f-3c1a-8f4e-5fc5fac30868,SESCO,II.1.1,Córdoba,AR-X,annual,2017,gas oil combustion consumption by to the public,10122.124319999999,TJ,CO2,74100.0,kg/TJ,750049412.1119999,kg -25538efc-ab64-35bb-804e-8a04eb1b054b,SESCO,II.1.1,Córdoba,AR-X,annual,2017,gas oil combustion consumption by to the public,10122.124319999999,TJ,CH4,3.9,kg/TJ,39476.284847999996,kg -25538efc-ab64-35bb-804e-8a04eb1b054b,SESCO,II.1.1,Córdoba,AR-X,annual,2017,gas oil combustion consumption by to the public,10122.124319999999,TJ,N2O,3.9,kg/TJ,39476.284847999996,kg -6eace600-dd6a-353d-9933-e4c20f686802,SESCO,II.1.1,Entre Rios,AR-E,annual,2017,gas oil combustion consumption by to the public,3412.87044,TJ,CO2,74100.0,kg/TJ,252893699.604,kg -ec3ad034-68c6-32f9-9102-18a6d6ff5f67,SESCO,II.1.1,Entre Rios,AR-E,annual,2017,gas oil combustion consumption by to the public,3412.87044,TJ,CH4,3.9,kg/TJ,13310.194716,kg -ec3ad034-68c6-32f9-9102-18a6d6ff5f67,SESCO,II.1.1,Entre Rios,AR-E,annual,2017,gas oil combustion consumption by to the public,3412.87044,TJ,N2O,3.9,kg/TJ,13310.194716,kg -ee75bfce-de4c-3d16-8f05-a487bbcb66d8,SESCO,II.1.1,Formosa,AR-P,annual,2017,gas oil combustion consumption by to the public,496.54164,TJ,CO2,74100.0,kg/TJ,36793735.524,kg -9f1c4543-f093-3155-b8ee-9394b710aaac,SESCO,II.1.1,Formosa,AR-P,annual,2017,gas oil combustion consumption by to the public,496.54164,TJ,CH4,3.9,kg/TJ,1936.5123959999999,kg -9f1c4543-f093-3155-b8ee-9394b710aaac,SESCO,II.1.1,Formosa,AR-P,annual,2017,gas oil combustion consumption by to the public,496.54164,TJ,N2O,3.9,kg/TJ,1936.5123959999999,kg -8983a07c-eca5-312f-b767-a0f924712426,SESCO,II.1.1,Jujuy,AR-Y,annual,2017,gas oil combustion consumption by to the public,1522.78308,TJ,CO2,74100.0,kg/TJ,112838226.228,kg -45d7d340-cfe9-3783-b446-c36104f2abd5,SESCO,II.1.1,Jujuy,AR-Y,annual,2017,gas oil combustion consumption by to the public,1522.78308,TJ,CH4,3.9,kg/TJ,5938.854012,kg -45d7d340-cfe9-3783-b446-c36104f2abd5,SESCO,II.1.1,Jujuy,AR-Y,annual,2017,gas oil combustion consumption by to the public,1522.78308,TJ,N2O,3.9,kg/TJ,5938.854012,kg -d84f1bb3-2c96-392b-b5ae-d4359d2a150f,SESCO,II.1.1,La Pampa,AR-L,annual,2017,gas oil combustion consumption by to the public,2397.3205199999998,TJ,CO2,74100.0,kg/TJ,177641450.53199998,kg -312351a9-e90e-37c9-88fc-a733461601d8,SESCO,II.1.1,La Pampa,AR-L,annual,2017,gas oil combustion consumption by to the public,2397.3205199999998,TJ,CH4,3.9,kg/TJ,9349.550028,kg -312351a9-e90e-37c9-88fc-a733461601d8,SESCO,II.1.1,La Pampa,AR-L,annual,2017,gas oil combustion consumption by to the public,2397.3205199999998,TJ,N2O,3.9,kg/TJ,9349.550028,kg -a371cf30-6131-33af-a21a-cc0a9485066b,SESCO,II.1.1,La Rioja,AR-F,annual,2017,gas oil combustion consumption by to the public,641.41896,TJ,CO2,74100.0,kg/TJ,47529144.936,kg -b87e6bfd-482a-39c0-a9c7-4752ba26f074,SESCO,II.1.1,La Rioja,AR-F,annual,2017,gas oil combustion consumption by to the public,641.41896,TJ,CH4,3.9,kg/TJ,2501.533944,kg -b87e6bfd-482a-39c0-a9c7-4752ba26f074,SESCO,II.1.1,La Rioja,AR-F,annual,2017,gas oil combustion consumption by to the public,641.41896,TJ,N2O,3.9,kg/TJ,2501.533944,kg -3bc1ad3c-9b34-312e-81c1-f955dabf294e,SESCO,II.1.1,Mendoza,AR-M,annual,2017,gas oil combustion consumption by to the public,7515.4884,TJ,CO2,74100.0,kg/TJ,556897690.44,kg -6dd1357c-12a0-3818-b9f0-f1c6a89821b1,SESCO,II.1.1,Mendoza,AR-M,annual,2017,gas oil combustion consumption by to the public,7515.4884,TJ,CH4,3.9,kg/TJ,29310.40476,kg -6dd1357c-12a0-3818-b9f0-f1c6a89821b1,SESCO,II.1.1,Mendoza,AR-M,annual,2017,gas oil combustion consumption by to the public,7515.4884,TJ,N2O,3.9,kg/TJ,29310.40476,kg -9baf5838-03be-3853-ac78-0292959d182b,SESCO,II.1.1,Misiones,AR-N,annual,2017,gas oil combustion consumption by to the public,2690.037,TJ,CO2,74100.0,kg/TJ,199331741.7,kg -a28e20b8-2148-3bfd-aea9-0607a8d0e5d3,SESCO,II.1.1,Misiones,AR-N,annual,2017,gas oil combustion consumption by to the public,2690.037,TJ,CH4,3.9,kg/TJ,10491.144299999998,kg -a28e20b8-2148-3bfd-aea9-0607a8d0e5d3,SESCO,II.1.1,Misiones,AR-N,annual,2017,gas oil combustion consumption by to the public,2690.037,TJ,N2O,3.9,kg/TJ,10491.144299999998,kg -5b4381de-beaf-3f90-b127-6f19a4501acc,SESCO,II.1.1,Neuquén,AR-Q,annual,2017,gas oil combustion consumption by to the public,1975.61952,TJ,CO2,74100.0,kg/TJ,146393406.432,kg -6e46e6e8-b102-32fd-ae4a-ea9a433d4c63,SESCO,II.1.1,Neuquén,AR-Q,annual,2017,gas oil combustion consumption by to the public,1975.61952,TJ,CH4,3.9,kg/TJ,7704.916128,kg -6e46e6e8-b102-32fd-ae4a-ea9a433d4c63,SESCO,II.1.1,Neuquén,AR-Q,annual,2017,gas oil combustion consumption by to the public,1975.61952,TJ,N2O,3.9,kg/TJ,7704.916128,kg -93a40d10-c417-3431-b4e0-3e9dbadc0ad0,SESCO,II.1.1,Rio Negro,AR-R,annual,2017,gas oil combustion consumption by to the public,3563.3824799999998,TJ,CO2,74100.0,kg/TJ,264046641.76799998,kg -05a5233d-1048-302f-941b-846073ddd26d,SESCO,II.1.1,Rio Negro,AR-R,annual,2017,gas oil combustion consumption by to the public,3563.3824799999998,TJ,CH4,3.9,kg/TJ,13897.191671999999,kg -05a5233d-1048-302f-941b-846073ddd26d,SESCO,II.1.1,Rio Negro,AR-R,annual,2017,gas oil combustion consumption by to the public,3563.3824799999998,TJ,N2O,3.9,kg/TJ,13897.191671999999,kg -871fb441-5df2-381a-b718-6a4e867048a6,SESCO,II.1.1,Salta,AR-A,annual,2017,gas oil combustion consumption by to the public,3364.9392,TJ,CO2,74100.0,kg/TJ,249341994.72,kg -db79e67b-4e38-32b1-9439-4dda54bc6564,SESCO,II.1.1,Salta,AR-A,annual,2017,gas oil combustion consumption by to the public,3364.9392,TJ,CH4,3.9,kg/TJ,13123.262879999998,kg -db79e67b-4e38-32b1-9439-4dda54bc6564,SESCO,II.1.1,Salta,AR-A,annual,2017,gas oil combustion consumption by to the public,3364.9392,TJ,N2O,3.9,kg/TJ,13123.262879999998,kg -8836f014-6a07-3eef-a5f2-8b4f9228082c,SESCO,II.1.1,San Juan,AR-J,annual,2017,gas oil combustion consumption by to the public,1668.2022,TJ,CO2,74100.0,kg/TJ,123613783.02,kg -f928060c-bb17-3d07-a9bc-38a4a8f632c4,SESCO,II.1.1,San Juan,AR-J,annual,2017,gas oil combustion consumption by to the public,1668.2022,TJ,CH4,3.9,kg/TJ,6505.988579999999,kg -f928060c-bb17-3d07-a9bc-38a4a8f632c4,SESCO,II.1.1,San Juan,AR-J,annual,2017,gas oil combustion consumption by to the public,1668.2022,TJ,N2O,3.9,kg/TJ,6505.988579999999,kg -c46ae8d4-ab26-32fc-85f9-11308fb6bb58,SESCO,II.1.1,San Luis,AR-D,annual,2017,gas oil combustion consumption by to the public,1496.95728,TJ,CO2,74100.0,kg/TJ,110924534.448,kg -f950c9ca-019c-3a4e-bbb7-031da0ff2991,SESCO,II.1.1,San Luis,AR-D,annual,2017,gas oil combustion consumption by to the public,1496.95728,TJ,CH4,3.9,kg/TJ,5838.133392000001,kg -f950c9ca-019c-3a4e-bbb7-031da0ff2991,SESCO,II.1.1,San Luis,AR-D,annual,2017,gas oil combustion consumption by to the public,1496.95728,TJ,N2O,3.9,kg/TJ,5838.133392000001,kg -2bea01f0-a521-3fee-acc6-9718d357e30f,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2017,gas oil combustion consumption by to the public,2032.07508,TJ,CO2,74100.0,kg/TJ,150576763.428,kg -b1b2ea2b-4384-3ef4-91d2-1449e8dc06fb,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2017,gas oil combustion consumption by to the public,2032.07508,TJ,CH4,3.9,kg/TJ,7925.092812,kg -b1b2ea2b-4384-3ef4-91d2-1449e8dc06fb,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2017,gas oil combustion consumption by to the public,2032.07508,TJ,N2O,3.9,kg/TJ,7925.092812,kg -fc69d290-2ae5-376a-a752-eaefaa6b7131,SESCO,II.1.1,Santa Fe,AR-S,annual,2017,gas oil combustion consumption by to the public,7095.44892,TJ,CO2,74100.0,kg/TJ,525772764.972,kg -9f22b42b-7ebb-330d-bcaf-e3dcc3ac7d29,SESCO,II.1.1,Santa Fe,AR-S,annual,2017,gas oil combustion consumption by to the public,7095.44892,TJ,CH4,3.9,kg/TJ,27672.250787999998,kg -9f22b42b-7ebb-330d-bcaf-e3dcc3ac7d29,SESCO,II.1.1,Santa Fe,AR-S,annual,2017,gas oil combustion consumption by to the public,7095.44892,TJ,N2O,3.9,kg/TJ,27672.250787999998,kg -30e7ebb8-c370-3e42-9b7b-f296a914fc02,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2017,gas oil combustion consumption by to the public,2133.21108,TJ,CO2,74100.0,kg/TJ,158070941.028,kg -ca8ef701-66ad-3a2c-93f5-a79cbf0f28fe,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2017,gas oil combustion consumption by to the public,2133.21108,TJ,CH4,3.9,kg/TJ,8319.523212,kg -ca8ef701-66ad-3a2c-93f5-a79cbf0f28fe,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2017,gas oil combustion consumption by to the public,2133.21108,TJ,N2O,3.9,kg/TJ,8319.523212,kg -c5961131-bbb4-3b90-a41d-a94227633659,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2017,gas oil combustion consumption by to the public,834.98604,TJ,CO2,74100.0,kg/TJ,61872465.564,kg -4d73a38b-deed-3bd9-9bd6-ca034a5acf9b,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2017,gas oil combustion consumption by to the public,834.98604,TJ,CH4,3.9,kg/TJ,3256.445556,kg -4d73a38b-deed-3bd9-9bd6-ca034a5acf9b,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2017,gas oil combustion consumption by to the public,834.98604,TJ,N2O,3.9,kg/TJ,3256.445556,kg -bce96243-a007-31db-a46f-5aff0280fb7d,SESCO,II.1.1,Tucuman,AR-T,annual,2017,gas oil combustion consumption by to the public,1726.1748,TJ,CO2,74100.0,kg/TJ,127909552.68,kg -acd6f2c9-08aa-3159-85da-f43d845b6a22,SESCO,II.1.1,Tucuman,AR-T,annual,2017,gas oil combustion consumption by to the public,1726.1748,TJ,CH4,3.9,kg/TJ,6732.08172,kg -acd6f2c9-08aa-3159-85da-f43d845b6a22,SESCO,II.1.1,Tucuman,AR-T,annual,2017,gas oil combustion consumption by to the public,1726.1748,TJ,N2O,3.9,kg/TJ,6732.08172,kg -7beeca82-e4a0-386f-8533-1c55981a5997,SESCO,II.1.1,Buenos Aires,AR-B,annual,2017,gas oil combustion consumption by to the public,15919.49268,TJ,CO2,74100.0,kg/TJ,1179634407.588,kg -8a721bfc-65bf-3d51-b599-c8ac1689e8e8,SESCO,II.1.1,Buenos Aires,AR-B,annual,2017,gas oil combustion consumption by to the public,15919.49268,TJ,CH4,3.9,kg/TJ,62086.02145199999,kg -8a721bfc-65bf-3d51-b599-c8ac1689e8e8,SESCO,II.1.1,Buenos Aires,AR-B,annual,2017,gas oil combustion consumption by to the public,15919.49268,TJ,N2O,3.9,kg/TJ,62086.02145199999,kg -d9caba89-c678-30c2-b8a7-75af3b37b3bd,SESCO,II.1.1,Capital Federal,AR-C,annual,2017,gas oil combustion consumption by to the public,2173.59324,TJ,CO2,74100.0,kg/TJ,161063259.08400002,kg -43a939b3-32b5-308f-a2bc-7786c4894cfb,SESCO,II.1.1,Capital Federal,AR-C,annual,2017,gas oil combustion consumption by to the public,2173.59324,TJ,CH4,3.9,kg/TJ,8477.013636,kg -43a939b3-32b5-308f-a2bc-7786c4894cfb,SESCO,II.1.1,Capital Federal,AR-C,annual,2017,gas oil combustion consumption by to the public,2173.59324,TJ,N2O,3.9,kg/TJ,8477.013636,kg -fe44930d-5a9a-3ffa-b541-994e36bcf021,SESCO,II.1.1,Catamarca,AR-K,annual,2017,gas oil combustion consumption by to the public,359.43012,TJ,CO2,74100.0,kg/TJ,26633771.892,kg -ad8b8be1-1295-3497-af80-c2f5911d6ad1,SESCO,II.1.1,Catamarca,AR-K,annual,2017,gas oil combustion consumption by to the public,359.43012,TJ,CH4,3.9,kg/TJ,1401.777468,kg -ad8b8be1-1295-3497-af80-c2f5911d6ad1,SESCO,II.1.1,Catamarca,AR-K,annual,2017,gas oil combustion consumption by to the public,359.43012,TJ,N2O,3.9,kg/TJ,1401.777468,kg -87083465-1ed0-3135-bdcd-13d2a6d5461d,SESCO,II.1.1,Chaco,AR-H,annual,2017,gas oil combustion consumption by to the public,1283.8854,TJ,CO2,74100.0,kg/TJ,95135908.13999999,kg -beafdafe-daf0-34fd-84a2-8b9ed67c6920,SESCO,II.1.1,Chaco,AR-H,annual,2017,gas oil combustion consumption by to the public,1283.8854,TJ,CH4,3.9,kg/TJ,5007.15306,kg -beafdafe-daf0-34fd-84a2-8b9ed67c6920,SESCO,II.1.1,Chaco,AR-H,annual,2017,gas oil combustion consumption by to the public,1283.8854,TJ,N2O,3.9,kg/TJ,5007.15306,kg -6afed5cb-80b3-3a85-aa29-2c8bea3002a3,SESCO,II.1.1,Chubut,AR-U,annual,2017,gas oil combustion consumption by to the public,1970.38212,TJ,CO2,74100.0,kg/TJ,146005315.092,kg -91248574-7be3-3637-aba2-23f4845eecd0,SESCO,II.1.1,Chubut,AR-U,annual,2017,gas oil combustion consumption by to the public,1970.38212,TJ,CH4,3.9,kg/TJ,7684.490268,kg -91248574-7be3-3637-aba2-23f4845eecd0,SESCO,II.1.1,Chubut,AR-U,annual,2017,gas oil combustion consumption by to the public,1970.38212,TJ,N2O,3.9,kg/TJ,7684.490268,kg -94fc7a9b-6369-3164-aad0-b487392e6761,SESCO,II.1.1,Corrientes,AR-W,annual,2017,gas oil combustion consumption by to the public,1170.97428,TJ,CO2,74100.0,kg/TJ,86769194.14799999,kg -f9ce4e4e-3c56-3aeb-a59f-ab49984104e1,SESCO,II.1.1,Corrientes,AR-W,annual,2017,gas oil combustion consumption by to the public,1170.97428,TJ,CH4,3.9,kg/TJ,4566.799692,kg -f9ce4e4e-3c56-3aeb-a59f-ab49984104e1,SESCO,II.1.1,Corrientes,AR-W,annual,2017,gas oil combustion consumption by to the public,1170.97428,TJ,N2O,3.9,kg/TJ,4566.799692,kg -3c9cff13-67e3-34c6-9dd2-d9735050922d,SESCO,II.1.1,Córdoba,AR-X,annual,2017,gas oil combustion consumption by to the public,4838.8158,TJ,CO2,74100.0,kg/TJ,358556250.78000003,kg -35397f41-7e1c-3559-9aa5-ad84e70a82e6,SESCO,II.1.1,Córdoba,AR-X,annual,2017,gas oil combustion consumption by to the public,4838.8158,TJ,CH4,3.9,kg/TJ,18871.38162,kg -35397f41-7e1c-3559-9aa5-ad84e70a82e6,SESCO,II.1.1,Córdoba,AR-X,annual,2017,gas oil combustion consumption by to the public,4838.8158,TJ,N2O,3.9,kg/TJ,18871.38162,kg -11423e6e-1a49-3a3e-8a34-ef6cb1d835df,SESCO,II.1.1,Entre Rios,AR-E,annual,2017,gas oil combustion consumption by to the public,1757.52696,TJ,CO2,74100.0,kg/TJ,130232747.73599999,kg -4ff40742-b043-3d97-b73a-cba617a211b3,SESCO,II.1.1,Entre Rios,AR-E,annual,2017,gas oil combustion consumption by to the public,1757.52696,TJ,CH4,3.9,kg/TJ,6854.355143999999,kg -4ff40742-b043-3d97-b73a-cba617a211b3,SESCO,II.1.1,Entre Rios,AR-E,annual,2017,gas oil combustion consumption by to the public,1757.52696,TJ,N2O,3.9,kg/TJ,6854.355143999999,kg -5e54310a-d335-3103-ab87-91a454aeb465,SESCO,II.1.1,Formosa,AR-P,annual,2017,gas oil combustion consumption by to the public,378.8988,TJ,CO2,74100.0,kg/TJ,28076401.08,kg -ec3821b1-0119-3c19-a4f3-67934c42c706,SESCO,II.1.1,Formosa,AR-P,annual,2017,gas oil combustion consumption by to the public,378.8988,TJ,CH4,3.9,kg/TJ,1477.70532,kg -ec3821b1-0119-3c19-a4f3-67934c42c706,SESCO,II.1.1,Formosa,AR-P,annual,2017,gas oil combustion consumption by to the public,378.8988,TJ,N2O,3.9,kg/TJ,1477.70532,kg -d40ead91-f10d-320c-8572-f2d5ea14623f,SESCO,II.1.1,Jujuy,AR-Y,annual,2017,gas oil combustion consumption by to the public,870.38364,TJ,CO2,74100.0,kg/TJ,64495427.724,kg -7dadfba1-d547-3119-9fb6-5b1c7f9e5438,SESCO,II.1.1,Jujuy,AR-Y,annual,2017,gas oil combustion consumption by to the public,870.38364,TJ,CH4,3.9,kg/TJ,3394.496196,kg -7dadfba1-d547-3119-9fb6-5b1c7f9e5438,SESCO,II.1.1,Jujuy,AR-Y,annual,2017,gas oil combustion consumption by to the public,870.38364,TJ,N2O,3.9,kg/TJ,3394.496196,kg -13da701b-61a3-363b-836b-26afbca1bba7,SESCO,II.1.1,La Pampa,AR-L,annual,2017,gas oil combustion consumption by to the public,1417.31268,TJ,CO2,74100.0,kg/TJ,105022869.588,kg -ae0c64f9-10b1-32bb-a695-7247bd22e488,SESCO,II.1.1,La Pampa,AR-L,annual,2017,gas oil combustion consumption by to the public,1417.31268,TJ,CH4,3.9,kg/TJ,5527.519452,kg -ae0c64f9-10b1-32bb-a695-7247bd22e488,SESCO,II.1.1,La Pampa,AR-L,annual,2017,gas oil combustion consumption by to the public,1417.31268,TJ,N2O,3.9,kg/TJ,5527.519452,kg -0f202bb8-a3d3-3583-825d-1a3a4ec622b6,SESCO,II.1.1,La Rioja,AR-F,annual,2017,gas oil combustion consumption by to the public,481.1184,TJ,CO2,74100.0,kg/TJ,35650873.44,kg -2f15f4d4-c62e-34ac-a745-248e46419e42,SESCO,II.1.1,La Rioja,AR-F,annual,2017,gas oil combustion consumption by to the public,481.1184,TJ,CH4,3.9,kg/TJ,1876.36176,kg -2f15f4d4-c62e-34ac-a745-248e46419e42,SESCO,II.1.1,La Rioja,AR-F,annual,2017,gas oil combustion consumption by to the public,481.1184,TJ,N2O,3.9,kg/TJ,1876.36176,kg -e577e2e6-01b0-334f-88af-41a8ba18d694,SESCO,II.1.1,Mendoza,AR-M,annual,2017,gas oil combustion consumption by to the public,3401.56488,TJ,CO2,74100.0,kg/TJ,252055957.60799998,kg -57be8ce9-2797-3600-a83f-9caa7c786f2c,SESCO,II.1.1,Mendoza,AR-M,annual,2017,gas oil combustion consumption by to the public,3401.56488,TJ,CH4,3.9,kg/TJ,13266.103031999999,kg -57be8ce9-2797-3600-a83f-9caa7c786f2c,SESCO,II.1.1,Mendoza,AR-M,annual,2017,gas oil combustion consumption by to the public,3401.56488,TJ,N2O,3.9,kg/TJ,13266.103031999999,kg -013cdcec-5d5b-36a1-985e-520559f83466,SESCO,II.1.1,Misiones,AR-N,annual,2017,gas oil combustion consumption by to the public,1243.93668,TJ,CO2,74100.0,kg/TJ,92175707.988,kg -26658018-ba1a-3ad7-8e39-5f4e865fcd69,SESCO,II.1.1,Misiones,AR-N,annual,2017,gas oil combustion consumption by to the public,1243.93668,TJ,CH4,3.9,kg/TJ,4851.353052,kg -26658018-ba1a-3ad7-8e39-5f4e865fcd69,SESCO,II.1.1,Misiones,AR-N,annual,2017,gas oil combustion consumption by to the public,1243.93668,TJ,N2O,3.9,kg/TJ,4851.353052,kg -1ae1535c-2db8-3198-a102-57b01b6f47ef,SESCO,II.1.1,Neuquén,AR-Q,annual,2017,gas oil combustion consumption by to the public,2350.6173599999997,TJ,CO2,74100.0,kg/TJ,174180746.376,kg -9d92324d-acd2-3682-baab-2d847e744e41,SESCO,II.1.1,Neuquén,AR-Q,annual,2017,gas oil combustion consumption by to the public,2350.6173599999997,TJ,CH4,3.9,kg/TJ,9167.407704,kg -9d92324d-acd2-3682-baab-2d847e744e41,SESCO,II.1.1,Neuquén,AR-Q,annual,2017,gas oil combustion consumption by to the public,2350.6173599999997,TJ,N2O,3.9,kg/TJ,9167.407704,kg -eba7c17b-39f9-3020-9057-117bdce301fc,SESCO,II.1.1,Rio Negro,AR-R,annual,2017,gas oil combustion consumption by to the public,1739.7198,TJ,CO2,74100.0,kg/TJ,128913237.18,kg -797e94ed-95b2-3778-8c95-538aa1815eb2,SESCO,II.1.1,Rio Negro,AR-R,annual,2017,gas oil combustion consumption by to the public,1739.7198,TJ,CH4,3.9,kg/TJ,6784.90722,kg -797e94ed-95b2-3778-8c95-538aa1815eb2,SESCO,II.1.1,Rio Negro,AR-R,annual,2017,gas oil combustion consumption by to the public,1739.7198,TJ,N2O,3.9,kg/TJ,6784.90722,kg -8f5e74b4-bdc3-388d-a2a8-ae8e62453902,SESCO,II.1.1,Salta,AR-A,annual,2017,gas oil combustion consumption by to the public,1875.1698,TJ,CO2,74100.0,kg/TJ,138950082.18,kg -6d6af1cd-4f43-3d56-b085-0d1891b7adc3,SESCO,II.1.1,Salta,AR-A,annual,2017,gas oil combustion consumption by to the public,1875.1698,TJ,CH4,3.9,kg/TJ,7313.162219999999,kg -6d6af1cd-4f43-3d56-b085-0d1891b7adc3,SESCO,II.1.1,Salta,AR-A,annual,2017,gas oil combustion consumption by to the public,1875.1698,TJ,N2O,3.9,kg/TJ,7313.162219999999,kg -c420ba52-4dae-3e08-8ea4-e681a4e6c811,SESCO,II.1.1,San Juan,AR-J,annual,2017,gas oil combustion consumption by to the public,794.8206,TJ,CO2,74100.0,kg/TJ,58896206.46,kg -c86488a7-b77f-30b4-b8ca-15cee69d6b3a,SESCO,II.1.1,San Juan,AR-J,annual,2017,gas oil combustion consumption by to the public,794.8206,TJ,CH4,3.9,kg/TJ,3099.80034,kg -c86488a7-b77f-30b4-b8ca-15cee69d6b3a,SESCO,II.1.1,San Juan,AR-J,annual,2017,gas oil combustion consumption by to the public,794.8206,TJ,N2O,3.9,kg/TJ,3099.80034,kg -05861db4-0066-3b3f-8aea-c673c3cdb045,SESCO,II.1.1,San Luis,AR-D,annual,2017,gas oil combustion consumption by to the public,755.3053199999999,TJ,CO2,74100.0,kg/TJ,55968124.212,kg -eb3a5c5b-9a48-310e-9a38-0cc826decb35,SESCO,II.1.1,San Luis,AR-D,annual,2017,gas oil combustion consumption by to the public,755.3053199999999,TJ,CH4,3.9,kg/TJ,2945.6907479999995,kg -eb3a5c5b-9a48-310e-9a38-0cc826decb35,SESCO,II.1.1,San Luis,AR-D,annual,2017,gas oil combustion consumption by to the public,755.3053199999999,TJ,N2O,3.9,kg/TJ,2945.6907479999995,kg -ec8a794e-3082-3bb8-85a9-c21ad19b9dab,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2017,gas oil combustion consumption by to the public,1427.2818,TJ,CO2,74100.0,kg/TJ,105761581.38,kg -e2d59946-091f-3403-a351-a7dfad15ae56,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2017,gas oil combustion consumption by to the public,1427.2818,TJ,CH4,3.9,kg/TJ,5566.39902,kg -e2d59946-091f-3403-a351-a7dfad15ae56,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2017,gas oil combustion consumption by to the public,1427.2818,TJ,N2O,3.9,kg/TJ,5566.39902,kg -300426f5-7d2e-35a7-8813-cc912f59c833,SESCO,II.1.1,Santa Fe,AR-S,annual,2017,gas oil combustion consumption by to the public,3719.16804,TJ,CO2,74100.0,kg/TJ,275590351.764,kg -21c13ef5-51d8-3c8e-9e92-4c8266b7da61,SESCO,II.1.1,Santa Fe,AR-S,annual,2017,gas oil combustion consumption by to the public,3719.16804,TJ,CH4,3.9,kg/TJ,14504.755356,kg -21c13ef5-51d8-3c8e-9e92-4c8266b7da61,SESCO,II.1.1,Santa Fe,AR-S,annual,2017,gas oil combustion consumption by to the public,3719.16804,TJ,N2O,3.9,kg/TJ,14504.755356,kg -a9a47153-4166-3038-802f-cfead6fa64fc,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2017,gas oil combustion consumption by to the public,950.02824,TJ,CO2,74100.0,kg/TJ,70397092.58399999,kg -3c4a87c2-f13d-3bfc-aac6-a2e68f37eefc,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2017,gas oil combustion consumption by to the public,950.02824,TJ,CH4,3.9,kg/TJ,3705.110136,kg -3c4a87c2-f13d-3bfc-aac6-a2e68f37eefc,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2017,gas oil combustion consumption by to the public,950.02824,TJ,N2O,3.9,kg/TJ,3705.110136,kg -d44a8414-3e4d-3346-b76e-8b103c0cb7ff,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2017,gas oil combustion consumption by to the public,384.53352,TJ,CO2,74100.0,kg/TJ,28493933.832000002,kg -c3cd6e3c-2640-32fd-92f2-a8333424b543,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2017,gas oil combustion consumption by to the public,384.53352,TJ,CH4,3.9,kg/TJ,1499.680728,kg -c3cd6e3c-2640-32fd-92f2-a8333424b543,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2017,gas oil combustion consumption by to the public,384.53352,TJ,N2O,3.9,kg/TJ,1499.680728,kg -308f56ab-6f56-30c0-b1b2-f7e21b471481,SESCO,II.1.1,Tucuman,AR-T,annual,2017,gas oil combustion consumption by to the public,1166.96496,TJ,CO2,74100.0,kg/TJ,86472103.536,kg -1179e8f3-bf05-3598-99f5-9a7120e0b422,SESCO,II.1.1,Tucuman,AR-T,annual,2017,gas oil combustion consumption by to the public,1166.96496,TJ,CH4,3.9,kg/TJ,4551.163344,kg -1179e8f3-bf05-3598-99f5-9a7120e0b422,SESCO,II.1.1,Tucuman,AR-T,annual,2017,gas oil combustion consumption by to the public,1166.96496,TJ,N2O,3.9,kg/TJ,4551.163344,kg -f90e6382-3b87-38c9-b3fb-8baeb9439c21,SESCO,II.1.1,Buenos Aires,AR-B,annual,2017,jet kerosene combustion consumption by to the public,96.12036799999998,TJ,CO2,71500.0,kg/TJ,6872606.311999999,kg -6c7c87b4-51d9-3805-add1-421e21382557,SESCO,II.1.1,Buenos Aires,AR-B,annual,2017,jet kerosene combustion consumption by to the public,96.12036799999998,TJ,CH4,0.5,kg/TJ,48.06018399999999,kg -47a2d7ec-f7a9-3690-bed4-be48db59dfd3,SESCO,II.1.1,Buenos Aires,AR-B,annual,2017,jet kerosene combustion consumption by to the public,96.12036799999998,TJ,N2O,2.0,kg/TJ,192.24073599999997,kg -a8aba6a2-6fc5-3792-875d-09f07f4696dc,SESCO,II.1.1,Capital Federal,AR-C,annual,2017,jet kerosene combustion consumption by to the public,2.5476929999999998,TJ,CO2,71500.0,kg/TJ,182160.0495,kg -3249eb2f-8d6d-3493-a830-95dcd2da4ac2,SESCO,II.1.1,Capital Federal,AR-C,annual,2017,jet kerosene combustion consumption by to the public,2.5476929999999998,TJ,CH4,0.5,kg/TJ,1.2738464999999999,kg -a3241e36-b634-3fcd-86d0-5caa55920568,SESCO,II.1.1,Capital Federal,AR-C,annual,2017,jet kerosene combustion consumption by to the public,2.5476929999999998,TJ,N2O,2.0,kg/TJ,5.0953859999999995,kg -6b476be4-131e-35bf-935f-3e9559309126,SESCO,II.1.1,Catamarca,AR-K,annual,2017,jet kerosene combustion consumption by to the public,3.5541889999999996,TJ,CO2,71500.0,kg/TJ,254124.51349999997,kg -082fa422-f9a8-3e13-962e-59d83d78e36c,SESCO,II.1.1,Catamarca,AR-K,annual,2017,jet kerosene combustion consumption by to the public,3.5541889999999996,TJ,CH4,0.5,kg/TJ,1.7770944999999998,kg -aa643f30-8c96-3c27-ab48-b64e81e5b6fd,SESCO,II.1.1,Catamarca,AR-K,annual,2017,jet kerosene combustion consumption by to the public,3.5541889999999996,TJ,N2O,2.0,kg/TJ,7.108377999999999,kg -f654e150-9b67-37a3-9e45-3e57814d9c51,SESCO,II.1.1,Chaco,AR-H,annual,2017,jet kerosene combustion consumption by to the public,0.5976069999999999,TJ,CO2,71500.0,kg/TJ,42728.90049999999,kg -b3c0bfea-9e1d-3ec3-a2fd-0e0b4bef209e,SESCO,II.1.1,Chaco,AR-H,annual,2017,jet kerosene combustion consumption by to the public,0.5976069999999999,TJ,CH4,0.5,kg/TJ,0.29880349999999994,kg -eebfa245-7adf-3d93-a152-3f66e55dcee3,SESCO,II.1.1,Chaco,AR-H,annual,2017,jet kerosene combustion consumption by to the public,0.5976069999999999,TJ,N2O,2.0,kg/TJ,1.1952139999999998,kg -8a041542-9929-3614-82ab-34ea03ddb3b0,SESCO,II.1.1,Chubut,AR-U,annual,2017,jet kerosene combustion consumption by to the public,8.303591999999998,TJ,CO2,71500.0,kg/TJ,593706.8279999999,kg -311b6dd0-2643-3be5-89a0-2553042f3938,SESCO,II.1.1,Chubut,AR-U,annual,2017,jet kerosene combustion consumption by to the public,8.303591999999998,TJ,CH4,0.5,kg/TJ,4.151795999999999,kg -af4576f6-0963-35c9-818f-b71c02cac3be,SESCO,II.1.1,Chubut,AR-U,annual,2017,jet kerosene combustion consumption by to the public,8.303591999999998,TJ,N2O,2.0,kg/TJ,16.607183999999997,kg -f710eea3-563b-382f-b0da-e236b426caf5,SESCO,II.1.1,Corrientes,AR-W,annual,2017,jet kerosene combustion consumption by to the public,2.7678639999999994,TJ,CO2,71500.0,kg/TJ,197902.27599999995,kg -1fdf1ff1-0b92-3723-9e78-2123d7dabeea,SESCO,II.1.1,Corrientes,AR-W,annual,2017,jet kerosene combustion consumption by to the public,2.7678639999999994,TJ,CH4,0.5,kg/TJ,1.3839319999999997,kg -a2b438d5-7e92-3b30-a411-53112d30a16f,SESCO,II.1.1,Corrientes,AR-W,annual,2017,jet kerosene combustion consumption by to the public,2.7678639999999994,TJ,N2O,2.0,kg/TJ,5.535727999999999,kg -0250b039-7c54-3099-9fe5-e48bd0120aa5,SESCO,II.1.1,Córdoba,AR-X,annual,2017,jet kerosene combustion consumption by to the public,41.234882999999996,TJ,CO2,71500.0,kg/TJ,2948294.1344999997,kg -52728a9a-165c-3775-8501-76b9584ea01e,SESCO,II.1.1,Córdoba,AR-X,annual,2017,jet kerosene combustion consumption by to the public,41.234882999999996,TJ,CH4,0.5,kg/TJ,20.617441499999998,kg -39295754-e8a0-3666-ad30-badd9ea2a1ed,SESCO,II.1.1,Córdoba,AR-X,annual,2017,jet kerosene combustion consumption by to the public,41.234882999999996,TJ,N2O,2.0,kg/TJ,82.46976599999999,kg -8cb91134-2a4b-363e-af82-9d7fb127e056,SESCO,II.1.1,Entre Rios,AR-E,annual,2017,jet kerosene combustion consumption by to the public,6.762394999999999,TJ,CO2,71500.0,kg/TJ,483511.24249999993,kg -c472dcba-4685-3516-aa84-a004369b7ccf,SESCO,II.1.1,Entre Rios,AR-E,annual,2017,jet kerosene combustion consumption by to the public,6.762394999999999,TJ,CH4,0.5,kg/TJ,3.3811974999999994,kg -da2eb8c5-2971-377f-aee2-1a6b334e2709,SESCO,II.1.1,Entre Rios,AR-E,annual,2017,jet kerosene combustion consumption by to the public,6.762394999999999,TJ,N2O,2.0,kg/TJ,13.524789999999998,kg -7a52bebe-5482-3525-8307-d861e91d7154,SESCO,II.1.1,Jujuy,AR-Y,annual,2017,jet kerosene combustion consumption by to the public,3.9630779999999994,TJ,CO2,71500.0,kg/TJ,283360.07699999993,kg -651a8ee3-3e4e-3f0a-a75b-4748ec909a03,SESCO,II.1.1,Jujuy,AR-Y,annual,2017,jet kerosene combustion consumption by to the public,3.9630779999999994,TJ,CH4,0.5,kg/TJ,1.9815389999999997,kg -3291c58a-847d-389e-9ac9-451ea8e49cd1,SESCO,II.1.1,Jujuy,AR-Y,annual,2017,jet kerosene combustion consumption by to the public,3.9630779999999994,TJ,N2O,2.0,kg/TJ,7.926155999999999,kg -f27c036b-27a4-32c9-92c2-a444936c2987,SESCO,II.1.1,La Pampa,AR-L,annual,2017,jet kerosene combustion consumption by to the public,2.4533339999999995,TJ,CO2,71500.0,kg/TJ,175413.38099999996,kg -e480c30c-a2c8-3215-9be4-067f3fc365b0,SESCO,II.1.1,La Pampa,AR-L,annual,2017,jet kerosene combustion consumption by to the public,2.4533339999999995,TJ,CH4,0.5,kg/TJ,1.2266669999999997,kg -4f99e8ed-9692-38a9-809b-7e65b88e59dc,SESCO,II.1.1,La Pampa,AR-L,annual,2017,jet kerosene combustion consumption by to the public,2.4533339999999995,TJ,N2O,2.0,kg/TJ,4.906667999999999,kg -878378fb-2e8e-391b-99db-a4ba8c70e406,SESCO,II.1.1,La Rioja,AR-F,annual,2017,jet kerosene combustion consumption by to the public,2.0444449999999996,TJ,CO2,71500.0,kg/TJ,146177.81749999998,kg -e1994795-a8c0-37f3-9e99-96c1675d9be1,SESCO,II.1.1,La Rioja,AR-F,annual,2017,jet kerosene combustion consumption by to the public,2.0444449999999996,TJ,CH4,0.5,kg/TJ,1.0222224999999998,kg -a3c50921-a520-360e-bd6d-ebb07a9b088c,SESCO,II.1.1,La Rioja,AR-F,annual,2017,jet kerosene combustion consumption by to the public,2.0444449999999996,TJ,N2O,2.0,kg/TJ,4.088889999999999,kg -ab206c93-ec36-3ebb-9e41-2d5dcf2975a0,SESCO,II.1.1,Mendoza,AR-M,annual,2017,jet kerosene combustion consumption by to the public,15.978123999999998,TJ,CO2,71500.0,kg/TJ,1142435.866,kg -0532f9e2-1c1c-3af6-8175-196b5eb3d7ff,SESCO,II.1.1,Mendoza,AR-M,annual,2017,jet kerosene combustion consumption by to the public,15.978123999999998,TJ,CH4,0.5,kg/TJ,7.989061999999999,kg -8cb9d7d6-b4ff-379d-9b32-c8e8bef753c0,SESCO,II.1.1,Mendoza,AR-M,annual,2017,jet kerosene combustion consumption by to the public,15.978123999999998,TJ,N2O,2.0,kg/TJ,31.956247999999995,kg -a43941b1-a788-3524-8441-7c8e92da22b7,SESCO,II.1.1,Neuquén,AR-Q,annual,2017,jet kerosene combustion consumption by to the public,7.800343999999999,TJ,CO2,71500.0,kg/TJ,557724.5959999999,kg -fea026e0-8a2c-35ad-b55a-15a60f6abe30,SESCO,II.1.1,Neuquén,AR-Q,annual,2017,jet kerosene combustion consumption by to the public,7.800343999999999,TJ,CH4,0.5,kg/TJ,3.9001719999999995,kg -3627540e-0753-3ef6-9d8a-88c3397c3e30,SESCO,II.1.1,Neuquén,AR-Q,annual,2017,jet kerosene combustion consumption by to the public,7.800343999999999,TJ,N2O,2.0,kg/TJ,15.600687999999998,kg -a7b438f6-23ee-311d-bcda-99bdf73b4c0c,SESCO,II.1.1,Rio Negro,AR-R,annual,2017,jet kerosene combustion consumption by to the public,0.8177779999999999,TJ,CO2,71500.0,kg/TJ,58471.12699999999,kg -81fdf674-303f-38b4-af2e-a68fd1ec6d36,SESCO,II.1.1,Rio Negro,AR-R,annual,2017,jet kerosene combustion consumption by to the public,0.8177779999999999,TJ,CH4,0.5,kg/TJ,0.40888899999999995,kg -faa1c4b8-5332-3a26-a1e7-a98487d0abc0,SESCO,II.1.1,Rio Negro,AR-R,annual,2017,jet kerosene combustion consumption by to the public,0.8177779999999999,TJ,N2O,2.0,kg/TJ,1.6355559999999998,kg -3f265112-1a94-3e02-b39a-39a2c9d353c8,SESCO,II.1.1,Salta,AR-A,annual,2017,jet kerosene combustion consumption by to the public,0.37743599999999994,TJ,CO2,71500.0,kg/TJ,26986.673999999995,kg -74761a34-5f8d-3c25-b659-6fd007e84237,SESCO,II.1.1,Salta,AR-A,annual,2017,jet kerosene combustion consumption by to the public,0.37743599999999994,TJ,CH4,0.5,kg/TJ,0.18871799999999997,kg -c657a217-3fae-38ac-bb31-2af922dc2c83,SESCO,II.1.1,Salta,AR-A,annual,2017,jet kerosene combustion consumption by to the public,0.37743599999999994,TJ,N2O,2.0,kg/TJ,0.7548719999999999,kg -6c865507-e2b0-375f-adac-49e93bd71e1d,SESCO,II.1.1,San Juan,AR-J,annual,2017,jet kerosene combustion consumption by to the public,3.1767529999999993,TJ,CO2,71500.0,kg/TJ,227137.83949999994,kg -ce16b9fe-0352-39f6-bd69-0ad226efaea3,SESCO,II.1.1,San Juan,AR-J,annual,2017,jet kerosene combustion consumption by to the public,3.1767529999999993,TJ,CH4,0.5,kg/TJ,1.5883764999999996,kg -dd8ced4e-f657-3b4e-bf0e-d7302929f998,SESCO,II.1.1,San Juan,AR-J,annual,2017,jet kerosene combustion consumption by to the public,3.1767529999999993,TJ,N2O,2.0,kg/TJ,6.3535059999999985,kg -d50641ab-bcdf-3245-8cd3-b7535e82257d,SESCO,II.1.1,San Luis,AR-D,annual,2017,jet kerosene combustion consumption by to the public,5.692992999999999,TJ,CO2,71500.0,kg/TJ,407048.9994999999,kg -32c3bcaa-ced9-35a5-9c63-5487c1d1bbf9,SESCO,II.1.1,San Luis,AR-D,annual,2017,jet kerosene combustion consumption by to the public,5.692992999999999,TJ,CH4,0.5,kg/TJ,2.8464964999999993,kg -ef3d3e7d-72a3-378a-833d-845593f89616,SESCO,II.1.1,San Luis,AR-D,annual,2017,jet kerosene combustion consumption by to the public,5.692992999999999,TJ,N2O,2.0,kg/TJ,11.385985999999997,kg -5786849d-f751-36eb-b46b-362f5217c904,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2017,jet kerosene combustion consumption by to the public,7.360001999999999,TJ,CO2,71500.0,kg/TJ,526240.1429999999,kg -a93ec8a7-533f-3339-ad44-026fae86ee0a,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2017,jet kerosene combustion consumption by to the public,7.360001999999999,TJ,CH4,0.5,kg/TJ,3.6800009999999994,kg -2728c3a5-a782-34e3-bbc8-77e6d90bd11a,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2017,jet kerosene combustion consumption by to the public,7.360001999999999,TJ,N2O,2.0,kg/TJ,14.720003999999998,kg -bdcdeac8-c909-360c-bd8a-93cf0ef08072,SESCO,II.1.1,Santa Fe,AR-S,annual,2017,jet kerosene combustion consumption by to the public,21.262227999999997,TJ,CO2,71500.0,kg/TJ,1520249.3019999997,kg -7faceaa1-38d1-33e1-a6f0-8869b6f34f26,SESCO,II.1.1,Santa Fe,AR-S,annual,2017,jet kerosene combustion consumption by to the public,21.262227999999997,TJ,CH4,0.5,kg/TJ,10.631113999999998,kg -677b67c3-022e-3e2d-b0b1-6210479896f7,SESCO,II.1.1,Santa Fe,AR-S,annual,2017,jet kerosene combustion consumption by to the public,21.262227999999997,TJ,N2O,2.0,kg/TJ,42.524455999999994,kg -e2d61e97-e5f6-3fc8-869c-1a48fd7c03d7,SESCO,II.1.1,Tucuman,AR-T,annual,2017,jet kerosene combustion consumption by to the public,10.725472999999997,TJ,CO2,71500.0,kg/TJ,766871.3194999999,kg -9920b8f5-5355-3578-a00b-cb78446323b7,SESCO,II.1.1,Tucuman,AR-T,annual,2017,jet kerosene combustion consumption by to the public,10.725472999999997,TJ,CH4,0.5,kg/TJ,5.362736499999999,kg -a06578ed-0a5d-3e59-be91-5dff6ef9376f,SESCO,II.1.1,Tucuman,AR-T,annual,2017,jet kerosene combustion consumption by to the public,10.725472999999997,TJ,N2O,2.0,kg/TJ,21.450945999999995,kg -ebecf47b-8a12-36c2-90d8-d986740d0709,SESCO,II.1.1,Buenos Aires,AR-B,annual,2017,gas oil combustion consumption by freight transport,9561.07236,TJ,CO2,74100.0,kg/TJ,708475461.876,kg -4a351df3-c374-3592-af36-2bf80afb74a5,SESCO,II.1.1,Buenos Aires,AR-B,annual,2017,gas oil combustion consumption by freight transport,9561.07236,TJ,CH4,3.9,kg/TJ,37288.182204,kg -4a351df3-c374-3592-af36-2bf80afb74a5,SESCO,II.1.1,Buenos Aires,AR-B,annual,2017,gas oil combustion consumption by freight transport,9561.07236,TJ,N2O,3.9,kg/TJ,37288.182204,kg -733e54de-e9fb-3f3a-bd24-caf0c32b661d,SESCO,II.1.1,Capital Federal,AR-C,annual,2017,gas oil combustion consumption by freight transport,4040.99724,TJ,CO2,74100.0,kg/TJ,299437895.484,kg -63e07a67-67ee-3a5f-b353-9b68d8b2d86c,SESCO,II.1.1,Capital Federal,AR-C,annual,2017,gas oil combustion consumption by freight transport,4040.99724,TJ,CH4,3.9,kg/TJ,15759.889236,kg -63e07a67-67ee-3a5f-b353-9b68d8b2d86c,SESCO,II.1.1,Capital Federal,AR-C,annual,2017,gas oil combustion consumption by freight transport,4040.99724,TJ,N2O,3.9,kg/TJ,15759.889236,kg -788b4863-e686-384f-928b-5231d1afdd93,SESCO,II.1.1,Catamarca,AR-K,annual,2017,gas oil combustion consumption by freight transport,23.36964,TJ,CO2,74100.0,kg/TJ,1731690.324,kg -1bc652e5-f06f-3efc-8a14-11d9c2a15793,SESCO,II.1.1,Catamarca,AR-K,annual,2017,gas oil combustion consumption by freight transport,23.36964,TJ,CH4,3.9,kg/TJ,91.14159599999999,kg -1bc652e5-f06f-3efc-8a14-11d9c2a15793,SESCO,II.1.1,Catamarca,AR-K,annual,2017,gas oil combustion consumption by freight transport,23.36964,TJ,N2O,3.9,kg/TJ,91.14159599999999,kg -486554a0-7c84-31ed-b558-a89ca1bc3a1a,SESCO,II.1.1,Chaco,AR-H,annual,2017,gas oil combustion consumption by freight transport,262.73688,TJ,CO2,74100.0,kg/TJ,19468802.808,kg -38a7160b-63f4-36a8-b095-b7b99bd0c148,SESCO,II.1.1,Chaco,AR-H,annual,2017,gas oil combustion consumption by freight transport,262.73688,TJ,CH4,3.9,kg/TJ,1024.673832,kg -38a7160b-63f4-36a8-b095-b7b99bd0c148,SESCO,II.1.1,Chaco,AR-H,annual,2017,gas oil combustion consumption by freight transport,262.73688,TJ,N2O,3.9,kg/TJ,1024.673832,kg -7826f9ed-1b0a-3ad4-826c-f676ef69fc76,SESCO,II.1.1,Chubut,AR-U,annual,2017,gas oil combustion consumption by freight transport,221.99352,TJ,CO2,74100.0,kg/TJ,16449719.831999999,kg -31ad7a5c-6e87-315a-b849-afa9003fdb47,SESCO,II.1.1,Chubut,AR-U,annual,2017,gas oil combustion consumption by freight transport,221.99352,TJ,CH4,3.9,kg/TJ,865.774728,kg -31ad7a5c-6e87-315a-b849-afa9003fdb47,SESCO,II.1.1,Chubut,AR-U,annual,2017,gas oil combustion consumption by freight transport,221.99352,TJ,N2O,3.9,kg/TJ,865.774728,kg -f7b354ca-a322-3762-a19d-7869903682e9,SESCO,II.1.1,Corrientes,AR-W,annual,2017,gas oil combustion consumption by freight transport,323.34623999999997,TJ,CO2,74100.0,kg/TJ,23959956.383999996,kg -1d2f1c2a-e65a-3071-8095-b4c27ca7b69c,SESCO,II.1.1,Corrientes,AR-W,annual,2017,gas oil combustion consumption by freight transport,323.34623999999997,TJ,CH4,3.9,kg/TJ,1261.0503359999998,kg -1d2f1c2a-e65a-3071-8095-b4c27ca7b69c,SESCO,II.1.1,Corrientes,AR-W,annual,2017,gas oil combustion consumption by freight transport,323.34623999999997,TJ,N2O,3.9,kg/TJ,1261.0503359999998,kg -184094bf-3f4c-351f-88d4-3057fe536109,SESCO,II.1.1,Córdoba,AR-X,annual,2017,gas oil combustion consumption by freight transport,2655.57852,TJ,CO2,74100.0,kg/TJ,196778368.332,kg -c40e5aa3-e4dc-362a-ab0e-47041e58b327,SESCO,II.1.1,Córdoba,AR-X,annual,2017,gas oil combustion consumption by freight transport,2655.57852,TJ,CH4,3.9,kg/TJ,10356.756228,kg -c40e5aa3-e4dc-362a-ab0e-47041e58b327,SESCO,II.1.1,Córdoba,AR-X,annual,2017,gas oil combustion consumption by freight transport,2655.57852,TJ,N2O,3.9,kg/TJ,10356.756228,kg -a28ed434-3e54-3e43-9373-c08888d37f9f,SESCO,II.1.1,Entre Rios,AR-E,annual,2017,gas oil combustion consumption by freight transport,555.48948,TJ,CO2,74100.0,kg/TJ,41161770.467999995,kg -abd11c6c-bd21-3d84-a93a-5fc75fea7786,SESCO,II.1.1,Entre Rios,AR-E,annual,2017,gas oil combustion consumption by freight transport,555.48948,TJ,CH4,3.9,kg/TJ,2166.4089719999997,kg -abd11c6c-bd21-3d84-a93a-5fc75fea7786,SESCO,II.1.1,Entre Rios,AR-E,annual,2017,gas oil combustion consumption by freight transport,555.48948,TJ,N2O,3.9,kg/TJ,2166.4089719999997,kg -04fda7f2-8505-3f16-ab52-00e87bf5be32,SESCO,II.1.1,Formosa,AR-P,annual,2017,gas oil combustion consumption by freight transport,26.40372,TJ,CO2,74100.0,kg/TJ,1956515.652,kg -c01f2fb7-8341-3af0-b38d-fdd8208a6a3c,SESCO,II.1.1,Formosa,AR-P,annual,2017,gas oil combustion consumption by freight transport,26.40372,TJ,CH4,3.9,kg/TJ,102.974508,kg -c01f2fb7-8341-3af0-b38d-fdd8208a6a3c,SESCO,II.1.1,Formosa,AR-P,annual,2017,gas oil combustion consumption by freight transport,26.40372,TJ,N2O,3.9,kg/TJ,102.974508,kg -4fbb9565-717c-3faa-b962-45c63f4569d3,SESCO,II.1.1,Jujuy,AR-Y,annual,2017,gas oil combustion consumption by freight transport,154.08792,TJ,CO2,74100.0,kg/TJ,11417914.872,kg -73e10711-d158-39f9-a42e-d244251f6847,SESCO,II.1.1,Jujuy,AR-Y,annual,2017,gas oil combustion consumption by freight transport,154.08792,TJ,CH4,3.9,kg/TJ,600.9428879999999,kg -73e10711-d158-39f9-a42e-d244251f6847,SESCO,II.1.1,Jujuy,AR-Y,annual,2017,gas oil combustion consumption by freight transport,154.08792,TJ,N2O,3.9,kg/TJ,600.9428879999999,kg -e88b806e-d121-3aff-9bfb-d884f27b79da,SESCO,II.1.1,La Pampa,AR-L,annual,2017,gas oil combustion consumption by freight transport,179.44416,TJ,CO2,74100.0,kg/TJ,13296812.256000001,kg -6d6cbe2e-f512-36bf-86f9-fa950bbc6938,SESCO,II.1.1,La Pampa,AR-L,annual,2017,gas oil combustion consumption by freight transport,179.44416,TJ,CH4,3.9,kg/TJ,699.832224,kg -6d6cbe2e-f512-36bf-86f9-fa950bbc6938,SESCO,II.1.1,La Pampa,AR-L,annual,2017,gas oil combustion consumption by freight transport,179.44416,TJ,N2O,3.9,kg/TJ,699.832224,kg -bd8b2ba2-651a-36a5-80ca-8ed650e51867,SESCO,II.1.1,La Rioja,AR-F,annual,2017,gas oil combustion consumption by freight transport,11.48616,TJ,CO2,74100.0,kg/TJ,851124.456,kg -3c6ee583-12c9-389c-80ea-d58bceeda7b5,SESCO,II.1.1,La Rioja,AR-F,annual,2017,gas oil combustion consumption by freight transport,11.48616,TJ,CH4,3.9,kg/TJ,44.796023999999996,kg -3c6ee583-12c9-389c-80ea-d58bceeda7b5,SESCO,II.1.1,La Rioja,AR-F,annual,2017,gas oil combustion consumption by freight transport,11.48616,TJ,N2O,3.9,kg/TJ,44.796023999999996,kg -c62df0b6-2bb8-3817-95c7-d262ff0193b1,SESCO,II.1.1,Mendoza,AR-M,annual,2017,gas oil combustion consumption by freight transport,1920.42816,TJ,CO2,74100.0,kg/TJ,142303726.656,kg -24656b27-0a8b-36bf-b68d-4c600c85852f,SESCO,II.1.1,Mendoza,AR-M,annual,2017,gas oil combustion consumption by freight transport,1920.42816,TJ,CH4,3.9,kg/TJ,7489.669824,kg -24656b27-0a8b-36bf-b68d-4c600c85852f,SESCO,II.1.1,Mendoza,AR-M,annual,2017,gas oil combustion consumption by freight transport,1920.42816,TJ,N2O,3.9,kg/TJ,7489.669824,kg -b6d6d26d-0bf6-39c9-9f35-15b673d7c35d,SESCO,II.1.1,Misiones,AR-N,annual,2017,gas oil combustion consumption by freight transport,825.73932,TJ,CO2,74100.0,kg/TJ,61187283.612,kg -aa4fe41e-b5aa-3732-86b8-d5372fe0a64c,SESCO,II.1.1,Misiones,AR-N,annual,2017,gas oil combustion consumption by freight transport,825.73932,TJ,CH4,3.9,kg/TJ,3220.383348,kg -aa4fe41e-b5aa-3732-86b8-d5372fe0a64c,SESCO,II.1.1,Misiones,AR-N,annual,2017,gas oil combustion consumption by freight transport,825.73932,TJ,N2O,3.9,kg/TJ,3220.383348,kg -eb0c0f49-9780-3d22-ab5f-0e84ca5f329e,SESCO,II.1.1,Neuquén,AR-Q,annual,2017,gas oil combustion consumption by freight transport,999.54876,TJ,CO2,74100.0,kg/TJ,74066563.116,kg -1113f174-3e03-3220-8de1-1b6bb490f490,SESCO,II.1.1,Neuquén,AR-Q,annual,2017,gas oil combustion consumption by freight transport,999.54876,TJ,CH4,3.9,kg/TJ,3898.240164,kg -1113f174-3e03-3220-8de1-1b6bb490f490,SESCO,II.1.1,Neuquén,AR-Q,annual,2017,gas oil combustion consumption by freight transport,999.54876,TJ,N2O,3.9,kg/TJ,3898.240164,kg -b8231c5b-3fae-3b85-a228-2db81efab4dd,SESCO,II.1.1,Rio Negro,AR-R,annual,2017,gas oil combustion consumption by freight transport,344.29584,TJ,CO2,74100.0,kg/TJ,25512321.744,kg -92a89756-2530-36ad-9db4-b1be72b9488f,SESCO,II.1.1,Rio Negro,AR-R,annual,2017,gas oil combustion consumption by freight transport,344.29584,TJ,CH4,3.9,kg/TJ,1342.753776,kg -92a89756-2530-36ad-9db4-b1be72b9488f,SESCO,II.1.1,Rio Negro,AR-R,annual,2017,gas oil combustion consumption by freight transport,344.29584,TJ,N2O,3.9,kg/TJ,1342.753776,kg -e3520ff5-de2c-3c6a-99cf-bc9242266085,SESCO,II.1.1,Salta,AR-A,annual,2017,gas oil combustion consumption by freight transport,343.06776,TJ,CO2,74100.0,kg/TJ,25421321.016000003,kg -936d334b-a31b-3d91-ab53-d2ac60e28049,SESCO,II.1.1,Salta,AR-A,annual,2017,gas oil combustion consumption by freight transport,343.06776,TJ,CH4,3.9,kg/TJ,1337.964264,kg -936d334b-a31b-3d91-ab53-d2ac60e28049,SESCO,II.1.1,Salta,AR-A,annual,2017,gas oil combustion consumption by freight transport,343.06776,TJ,N2O,3.9,kg/TJ,1337.964264,kg -aacbe3fc-fe0a-3291-ae4d-566f9ab7e26f,SESCO,II.1.1,San Juan,AR-J,annual,2017,gas oil combustion consumption by freight transport,120.099,TJ,CO2,74100.0,kg/TJ,8899335.9,kg -c4fe6075-6f63-35b2-9819-089cb89c154c,SESCO,II.1.1,San Juan,AR-J,annual,2017,gas oil combustion consumption by freight transport,120.099,TJ,CH4,3.9,kg/TJ,468.3861,kg -c4fe6075-6f63-35b2-9819-089cb89c154c,SESCO,II.1.1,San Juan,AR-J,annual,2017,gas oil combustion consumption by freight transport,120.099,TJ,N2O,3.9,kg/TJ,468.3861,kg -581cf875-dfae-3d17-93d2-24971a85f366,SESCO,II.1.1,San Luis,AR-D,annual,2017,gas oil combustion consumption by freight transport,183.8508,TJ,CO2,74100.0,kg/TJ,13623344.28,kg -4b30fe2e-9628-3530-a38e-acb33d115311,SESCO,II.1.1,San Luis,AR-D,annual,2017,gas oil combustion consumption by freight transport,183.8508,TJ,CH4,3.9,kg/TJ,717.01812,kg -4b30fe2e-9628-3530-a38e-acb33d115311,SESCO,II.1.1,San Luis,AR-D,annual,2017,gas oil combustion consumption by freight transport,183.8508,TJ,N2O,3.9,kg/TJ,717.01812,kg -42c08f1d-00af-379d-bfff-6b29b20873c8,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2017,gas oil combustion consumption by freight transport,132.23532,TJ,CO2,74100.0,kg/TJ,9798637.212,kg -d32f205a-9a66-3e43-af97-366558b9ea73,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2017,gas oil combustion consumption by freight transport,132.23532,TJ,CH4,3.9,kg/TJ,515.717748,kg -d32f205a-9a66-3e43-af97-366558b9ea73,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2017,gas oil combustion consumption by freight transport,132.23532,TJ,N2O,3.9,kg/TJ,515.717748,kg -fd5ed197-7517-3a6b-9ae7-dfc4d09348dd,SESCO,II.1.1,Santa Fe,AR-S,annual,2017,gas oil combustion consumption by freight transport,2468.9826,TJ,CO2,74100.0,kg/TJ,182951610.66,kg -d9812b57-10f4-3e09-8226-2fbf1b8b1353,SESCO,II.1.1,Santa Fe,AR-S,annual,2017,gas oil combustion consumption by freight transport,2468.9826,TJ,CH4,3.9,kg/TJ,9629.03214,kg -d9812b57-10f4-3e09-8226-2fbf1b8b1353,SESCO,II.1.1,Santa Fe,AR-S,annual,2017,gas oil combustion consumption by freight transport,2468.9826,TJ,N2O,3.9,kg/TJ,9629.03214,kg -935bfca3-9192-35c4-8e39-c01163020ce3,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2017,gas oil combustion consumption by freight transport,220.54872,TJ,CO2,74100.0,kg/TJ,16342660.152,kg -f91269ce-0dbd-35de-a578-eb17522c930b,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2017,gas oil combustion consumption by freight transport,220.54872,TJ,CH4,3.9,kg/TJ,860.140008,kg -f91269ce-0dbd-35de-a578-eb17522c930b,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2017,gas oil combustion consumption by freight transport,220.54872,TJ,N2O,3.9,kg/TJ,860.140008,kg -23b95649-e1ba-3714-8a49-9564b35bb111,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2017,gas oil combustion consumption by freight transport,200.71884,TJ,CO2,74100.0,kg/TJ,14873266.044,kg -76c0fe52-4ddc-39eb-83d3-5ea0a7845fd6,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2017,gas oil combustion consumption by freight transport,200.71884,TJ,CH4,3.9,kg/TJ,782.8034759999999,kg -76c0fe52-4ddc-39eb-83d3-5ea0a7845fd6,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2017,gas oil combustion consumption by freight transport,200.71884,TJ,N2O,3.9,kg/TJ,782.8034759999999,kg -9f413994-f4c5-38f9-b4a5-4c621c7d0142,SESCO,II.1.1,Tucuman,AR-T,annual,2017,gas oil combustion consumption by freight transport,664.13844,TJ,CO2,74100.0,kg/TJ,49212658.404,kg -41a748d4-2262-363d-96ec-b57f555b53f1,SESCO,II.1.1,Tucuman,AR-T,annual,2017,gas oil combustion consumption by freight transport,664.13844,TJ,CH4,3.9,kg/TJ,2590.1399159999996,kg -41a748d4-2262-363d-96ec-b57f555b53f1,SESCO,II.1.1,Tucuman,AR-T,annual,2017,gas oil combustion consumption by freight transport,664.13844,TJ,N2O,3.9,kg/TJ,2590.1399159999996,kg -78cd42b3-247d-31c9-8a6d-1912e5c7a092,SESCO,II.1.1,Buenos Aires,AR-B,annual,2017,gas oil combustion consumption by freight transport,1389.5364,TJ,CO2,74100.0,kg/TJ,102964647.24,kg -96d2cc1b-a7d7-3d68-b71c-649bfea317e0,SESCO,II.1.1,Buenos Aires,AR-B,annual,2017,gas oil combustion consumption by freight transport,1389.5364,TJ,CH4,3.9,kg/TJ,5419.19196,kg -96d2cc1b-a7d7-3d68-b71c-649bfea317e0,SESCO,II.1.1,Buenos Aires,AR-B,annual,2017,gas oil combustion consumption by freight transport,1389.5364,TJ,N2O,3.9,kg/TJ,5419.19196,kg -9fbcb57d-0adb-3ce2-b5d0-702af09cbd45,SESCO,II.1.1,Capital Federal,AR-C,annual,2017,gas oil combustion consumption by freight transport,1452.5658,TJ,CO2,74100.0,kg/TJ,107635125.78,kg -e9ab0026-9076-3850-b061-31ff5c102272,SESCO,II.1.1,Capital Federal,AR-C,annual,2017,gas oil combustion consumption by freight transport,1452.5658,TJ,CH4,3.9,kg/TJ,5665.00662,kg -e9ab0026-9076-3850-b061-31ff5c102272,SESCO,II.1.1,Capital Federal,AR-C,annual,2017,gas oil combustion consumption by freight transport,1452.5658,TJ,N2O,3.9,kg/TJ,5665.00662,kg -834fb272-094c-3b88-9302-3201e2475633,SESCO,II.1.1,Catamarca,AR-K,annual,2017,gas oil combustion consumption by freight transport,2.31168,TJ,CO2,74100.0,kg/TJ,171295.48799999998,kg -607b120c-bba9-3cad-9ee1-bcaed7c21d76,SESCO,II.1.1,Catamarca,AR-K,annual,2017,gas oil combustion consumption by freight transport,2.31168,TJ,CH4,3.9,kg/TJ,9.015552,kg -607b120c-bba9-3cad-9ee1-bcaed7c21d76,SESCO,II.1.1,Catamarca,AR-K,annual,2017,gas oil combustion consumption by freight transport,2.31168,TJ,N2O,3.9,kg/TJ,9.015552,kg -00a64904-70bc-3ecd-ae3d-4a29f4abd910,SESCO,II.1.1,Chaco,AR-H,annual,2017,gas oil combustion consumption by freight transport,74.66004,TJ,CO2,74100.0,kg/TJ,5532308.964,kg -a0fa08d2-4e47-3ba5-99be-ab59e86e898e,SESCO,II.1.1,Chaco,AR-H,annual,2017,gas oil combustion consumption by freight transport,74.66004,TJ,CH4,3.9,kg/TJ,291.174156,kg -a0fa08d2-4e47-3ba5-99be-ab59e86e898e,SESCO,II.1.1,Chaco,AR-H,annual,2017,gas oil combustion consumption by freight transport,74.66004,TJ,N2O,3.9,kg/TJ,291.174156,kg -ba8a5588-eee9-3b1c-9803-67fdc77e3c67,SESCO,II.1.1,Chubut,AR-U,annual,2017,gas oil combustion consumption by freight transport,159.21696,TJ,CO2,74100.0,kg/TJ,11797976.736,kg -0f14ef69-2185-3a44-9652-c56c5a7a0d64,SESCO,II.1.1,Chubut,AR-U,annual,2017,gas oil combustion consumption by freight transport,159.21696,TJ,CH4,3.9,kg/TJ,620.946144,kg -0f14ef69-2185-3a44-9652-c56c5a7a0d64,SESCO,II.1.1,Chubut,AR-U,annual,2017,gas oil combustion consumption by freight transport,159.21696,TJ,N2O,3.9,kg/TJ,620.946144,kg -d8ae9ee3-3ddd-3f3b-ae34-ecb0755fba3c,SESCO,II.1.1,Corrientes,AR-W,annual,2017,gas oil combustion consumption by freight transport,40.12932,TJ,CO2,74100.0,kg/TJ,2973582.612,kg -d88a1f41-909d-3e20-8c66-4c63fdca6fb6,SESCO,II.1.1,Corrientes,AR-W,annual,2017,gas oil combustion consumption by freight transport,40.12932,TJ,CH4,3.9,kg/TJ,156.504348,kg -d88a1f41-909d-3e20-8c66-4c63fdca6fb6,SESCO,II.1.1,Corrientes,AR-W,annual,2017,gas oil combustion consumption by freight transport,40.12932,TJ,N2O,3.9,kg/TJ,156.504348,kg -dd8ecc15-7844-33c7-856a-9b2ef8fc0450,SESCO,II.1.1,Córdoba,AR-X,annual,2017,gas oil combustion consumption by freight transport,173.80944,TJ,CO2,74100.0,kg/TJ,12879279.503999999,kg -1e885226-df28-385f-ba95-d060ff4bca2f,SESCO,II.1.1,Córdoba,AR-X,annual,2017,gas oil combustion consumption by freight transport,173.80944,TJ,CH4,3.9,kg/TJ,677.856816,kg -1e885226-df28-385f-ba95-d060ff4bca2f,SESCO,II.1.1,Córdoba,AR-X,annual,2017,gas oil combustion consumption by freight transport,173.80944,TJ,N2O,3.9,kg/TJ,677.856816,kg -01dcf267-5dc4-3188-bfa6-c0299531b8b4,SESCO,II.1.1,Entre Rios,AR-E,annual,2017,gas oil combustion consumption by freight transport,83.69004,TJ,CO2,74100.0,kg/TJ,6201431.964,kg -85e9689b-faca-3da1-84b0-edfa6d696b6a,SESCO,II.1.1,Entre Rios,AR-E,annual,2017,gas oil combustion consumption by freight transport,83.69004,TJ,CH4,3.9,kg/TJ,326.39115599999997,kg -85e9689b-faca-3da1-84b0-edfa6d696b6a,SESCO,II.1.1,Entre Rios,AR-E,annual,2017,gas oil combustion consumption by freight transport,83.69004,TJ,N2O,3.9,kg/TJ,326.39115599999997,kg -51ffa501-b90f-37a4-8689-25909cae9ea7,SESCO,II.1.1,Formosa,AR-P,annual,2017,gas oil combustion consumption by freight transport,7.11564,TJ,CO2,74100.0,kg/TJ,527268.924,kg -6ff79616-635c-3e7f-8649-fbe1266c62e8,SESCO,II.1.1,Formosa,AR-P,annual,2017,gas oil combustion consumption by freight transport,7.11564,TJ,CH4,3.9,kg/TJ,27.750996,kg -6ff79616-635c-3e7f-8649-fbe1266c62e8,SESCO,II.1.1,Formosa,AR-P,annual,2017,gas oil combustion consumption by freight transport,7.11564,TJ,N2O,3.9,kg/TJ,27.750996,kg -c4182bd5-c49c-30bc-b943-4b0d788ec553,SESCO,II.1.1,Jujuy,AR-Y,annual,2017,gas oil combustion consumption by freight transport,2.81736,TJ,CO2,74100.0,kg/TJ,208766.376,kg -c8e4aaaa-079c-3abd-8ca7-ce934eacf3ca,SESCO,II.1.1,Jujuy,AR-Y,annual,2017,gas oil combustion consumption by freight transport,2.81736,TJ,CH4,3.9,kg/TJ,10.987703999999999,kg -c8e4aaaa-079c-3abd-8ca7-ce934eacf3ca,SESCO,II.1.1,Jujuy,AR-Y,annual,2017,gas oil combustion consumption by freight transport,2.81736,TJ,N2O,3.9,kg/TJ,10.987703999999999,kg -11a5e135-6acb-32b6-8c31-f9b29ea1ed92,SESCO,II.1.1,La Pampa,AR-L,annual,2017,gas oil combustion consumption by freight transport,20.44392,TJ,CO2,74100.0,kg/TJ,1514894.4719999998,kg -f61f4142-44b4-3af7-88f9-1935ba62bc56,SESCO,II.1.1,La Pampa,AR-L,annual,2017,gas oil combustion consumption by freight transport,20.44392,TJ,CH4,3.9,kg/TJ,79.73128799999999,kg -f61f4142-44b4-3af7-88f9-1935ba62bc56,SESCO,II.1.1,La Pampa,AR-L,annual,2017,gas oil combustion consumption by freight transport,20.44392,TJ,N2O,3.9,kg/TJ,79.73128799999999,kg -d45cc40a-a13b-3769-b409-962e7e00148b,SESCO,II.1.1,La Rioja,AR-F,annual,2017,gas oil combustion consumption by freight transport,6.42936,TJ,CO2,74100.0,kg/TJ,476415.576,kg -18bc4fe7-e637-3f00-91f8-f52aebe6f4ea,SESCO,II.1.1,La Rioja,AR-F,annual,2017,gas oil combustion consumption by freight transport,6.42936,TJ,CH4,3.9,kg/TJ,25.074504,kg -18bc4fe7-e637-3f00-91f8-f52aebe6f4ea,SESCO,II.1.1,La Rioja,AR-F,annual,2017,gas oil combustion consumption by freight transport,6.42936,TJ,N2O,3.9,kg/TJ,25.074504,kg -c2f024c2-d101-31bb-bdc5-f0a0575a0b37,SESCO,II.1.1,Mendoza,AR-M,annual,2017,gas oil combustion consumption by freight transport,187.31832,TJ,CO2,74100.0,kg/TJ,13880287.512,kg -c14a560b-80c4-3796-97fe-4c2243bd161e,SESCO,II.1.1,Mendoza,AR-M,annual,2017,gas oil combustion consumption by freight transport,187.31832,TJ,CH4,3.9,kg/TJ,730.541448,kg -c14a560b-80c4-3796-97fe-4c2243bd161e,SESCO,II.1.1,Mendoza,AR-M,annual,2017,gas oil combustion consumption by freight transport,187.31832,TJ,N2O,3.9,kg/TJ,730.541448,kg -6186c99c-1c94-3d8c-b229-777dbde3a2d4,SESCO,II.1.1,Misiones,AR-N,annual,2017,gas oil combustion consumption by freight transport,56.05824,TJ,CO2,74100.0,kg/TJ,4153915.584,kg -3c196085-022d-3f42-afda-1470050c01fd,SESCO,II.1.1,Misiones,AR-N,annual,2017,gas oil combustion consumption by freight transport,56.05824,TJ,CH4,3.9,kg/TJ,218.62713599999998,kg -3c196085-022d-3f42-afda-1470050c01fd,SESCO,II.1.1,Misiones,AR-N,annual,2017,gas oil combustion consumption by freight transport,56.05824,TJ,N2O,3.9,kg/TJ,218.62713599999998,kg -cf74dc40-0d32-3920-a21d-ca9322abe430,SESCO,II.1.1,Neuquén,AR-Q,annual,2017,gas oil combustion consumption by freight transport,439.07472,TJ,CO2,74100.0,kg/TJ,32535436.752,kg -fafa4175-5ea3-3b26-80bc-442eb2f81a83,SESCO,II.1.1,Neuquén,AR-Q,annual,2017,gas oil combustion consumption by freight transport,439.07472,TJ,CH4,3.9,kg/TJ,1712.391408,kg -fafa4175-5ea3-3b26-80bc-442eb2f81a83,SESCO,II.1.1,Neuquén,AR-Q,annual,2017,gas oil combustion consumption by freight transport,439.07472,TJ,N2O,3.9,kg/TJ,1712.391408,kg -ae1ef08e-4fae-3ba0-9289-4b03741d40a3,SESCO,II.1.1,Rio Negro,AR-R,annual,2017,gas oil combustion consumption by freight transport,78.52488,TJ,CO2,74100.0,kg/TJ,5818693.608,kg -cb9d389d-fbbc-332f-a483-53810a99d085,SESCO,II.1.1,Rio Negro,AR-R,annual,2017,gas oil combustion consumption by freight transport,78.52488,TJ,CH4,3.9,kg/TJ,306.247032,kg -cb9d389d-fbbc-332f-a483-53810a99d085,SESCO,II.1.1,Rio Negro,AR-R,annual,2017,gas oil combustion consumption by freight transport,78.52488,TJ,N2O,3.9,kg/TJ,306.247032,kg -150b613b-ba92-3749-bd8c-439c31efd812,SESCO,II.1.1,Salta,AR-A,annual,2017,gas oil combustion consumption by freight transport,93.94812,TJ,CO2,74100.0,kg/TJ,6961555.692,kg -198a02e7-3152-317a-bd89-24a05379cb85,SESCO,II.1.1,Salta,AR-A,annual,2017,gas oil combustion consumption by freight transport,93.94812,TJ,CH4,3.9,kg/TJ,366.397668,kg -198a02e7-3152-317a-bd89-24a05379cb85,SESCO,II.1.1,Salta,AR-A,annual,2017,gas oil combustion consumption by freight transport,93.94812,TJ,N2O,3.9,kg/TJ,366.397668,kg -8e7f9997-3651-3a95-80a1-2d78ea1ad94b,SESCO,II.1.1,San Juan,AR-J,annual,2017,gas oil combustion consumption by freight transport,9.174479999999999,TJ,CO2,74100.0,kg/TJ,679828.9679999999,kg -206afeda-4597-3511-9edf-391173ba2a6b,SESCO,II.1.1,San Juan,AR-J,annual,2017,gas oil combustion consumption by freight transport,9.174479999999999,TJ,CH4,3.9,kg/TJ,35.780471999999996,kg -206afeda-4597-3511-9edf-391173ba2a6b,SESCO,II.1.1,San Juan,AR-J,annual,2017,gas oil combustion consumption by freight transport,9.174479999999999,TJ,N2O,3.9,kg/TJ,35.780471999999996,kg -b702673e-3169-324e-b35c-65056d01cd91,SESCO,II.1.1,San Luis,AR-D,annual,2017,gas oil combustion consumption by freight transport,34.89192,TJ,CO2,74100.0,kg/TJ,2585491.272,kg -782c8fe4-7d09-3b75-a840-ae44885adbb3,SESCO,II.1.1,San Luis,AR-D,annual,2017,gas oil combustion consumption by freight transport,34.89192,TJ,CH4,3.9,kg/TJ,136.078488,kg -782c8fe4-7d09-3b75-a840-ae44885adbb3,SESCO,II.1.1,San Luis,AR-D,annual,2017,gas oil combustion consumption by freight transport,34.89192,TJ,N2O,3.9,kg/TJ,136.078488,kg -b75160cd-9b81-38c2-819b-5f6f1f350534,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2017,gas oil combustion consumption by freight transport,58.83948,TJ,CO2,74100.0,kg/TJ,4360005.468,kg -34efa040-9999-3205-8913-4a791c0f8a4c,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2017,gas oil combustion consumption by freight transport,58.83948,TJ,CH4,3.9,kg/TJ,229.473972,kg -34efa040-9999-3205-8913-4a791c0f8a4c,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2017,gas oil combustion consumption by freight transport,58.83948,TJ,N2O,3.9,kg/TJ,229.473972,kg -20950d4f-c651-32f6-a65d-f73fdb2ae9a6,SESCO,II.1.1,Santa Fe,AR-S,annual,2017,gas oil combustion consumption by freight transport,392.51604,TJ,CO2,74100.0,kg/TJ,29085438.564,kg -29d3df79-a3b6-3a5e-8de4-50235b642395,SESCO,II.1.1,Santa Fe,AR-S,annual,2017,gas oil combustion consumption by freight transport,392.51604,TJ,CH4,3.9,kg/TJ,1530.8125559999999,kg -29d3df79-a3b6-3a5e-8de4-50235b642395,SESCO,II.1.1,Santa Fe,AR-S,annual,2017,gas oil combustion consumption by freight transport,392.51604,TJ,N2O,3.9,kg/TJ,1530.8125559999999,kg -d5449743-230d-32c3-85c0-4f9052fb39a1,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2017,gas oil combustion consumption by freight transport,5.7791999999999994,TJ,CO2,74100.0,kg/TJ,428238.72,kg -e42116a7-04de-32e7-bb8a-459851b88aa0,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2017,gas oil combustion consumption by freight transport,5.7791999999999994,TJ,CH4,3.9,kg/TJ,22.53888,kg -e42116a7-04de-32e7-bb8a-459851b88aa0,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2017,gas oil combustion consumption by freight transport,5.7791999999999994,TJ,N2O,3.9,kg/TJ,22.53888,kg -ce524cd0-1d2b-3499-b327-eb425d71ebeb,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2017,gas oil combustion consumption by freight transport,27.595679999999998,TJ,CO2,74100.0,kg/TJ,2044839.8879999998,kg -ba0a16b3-45e9-35a3-8809-dddb45890edb,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2017,gas oil combustion consumption by freight transport,27.595679999999998,TJ,CH4,3.9,kg/TJ,107.62315199999999,kg -ba0a16b3-45e9-35a3-8809-dddb45890edb,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2017,gas oil combustion consumption by freight transport,27.595679999999998,TJ,N2O,3.9,kg/TJ,107.62315199999999,kg -0555233f-63d0-3222-97f9-ae5da6c298ef,SESCO,II.1.1,Tucuman,AR-T,annual,2017,gas oil combustion consumption by freight transport,44.82492,TJ,CO2,74100.0,kg/TJ,3321526.5719999997,kg -c4f80f64-fc3e-3522-9efb-49afdbb6a91a,SESCO,II.1.1,Tucuman,AR-T,annual,2017,gas oil combustion consumption by freight transport,44.82492,TJ,CH4,3.9,kg/TJ,174.817188,kg -c4f80f64-fc3e-3522-9efb-49afdbb6a91a,SESCO,II.1.1,Tucuman,AR-T,annual,2017,gas oil combustion consumption by freight transport,44.82492,TJ,N2O,3.9,kg/TJ,174.817188,kg -f85b3785-c083-3bbf-800b-c7cae626f65c,SESCO,II.1.1,Buenos Aires,AR-B,annual,2017,gas oil combustion consumption by public passenger transport,10411.4094,TJ,CO2,74100.0,kg/TJ,771485436.5400001,kg -f0e34b9f-0555-3903-b8a0-3a806060da3d,SESCO,II.1.1,Buenos Aires,AR-B,annual,2017,gas oil combustion consumption by public passenger transport,10411.4094,TJ,CH4,3.9,kg/TJ,40604.496660000004,kg -f0e34b9f-0555-3903-b8a0-3a806060da3d,SESCO,II.1.1,Buenos Aires,AR-B,annual,2017,gas oil combustion consumption by public passenger transport,10411.4094,TJ,N2O,3.9,kg/TJ,40604.496660000004,kg -468ff9ce-09c7-3dad-9b9c-bbaa149a25ef,SESCO,II.1.1,Capital Federal,AR-C,annual,2017,gas oil combustion consumption by public passenger transport,2453.73996,TJ,CO2,74100.0,kg/TJ,181822131.03599998,kg -7f8bbef2-9ded-3fa4-8302-f586aa79375c,SESCO,II.1.1,Capital Federal,AR-C,annual,2017,gas oil combustion consumption by public passenger transport,2453.73996,TJ,CH4,3.9,kg/TJ,9569.585844,kg -7f8bbef2-9ded-3fa4-8302-f586aa79375c,SESCO,II.1.1,Capital Federal,AR-C,annual,2017,gas oil combustion consumption by public passenger transport,2453.73996,TJ,N2O,3.9,kg/TJ,9569.585844,kg -0aafe510-cece-3246-b7da-a8537b663068,SESCO,II.1.1,Catamarca,AR-K,annual,2017,gas oil combustion consumption by public passenger transport,202.12752,TJ,CO2,74100.0,kg/TJ,14977649.232,kg -f5c007be-d0fa-3524-8421-b3d8d2f4c9af,SESCO,II.1.1,Catamarca,AR-K,annual,2017,gas oil combustion consumption by public passenger transport,202.12752,TJ,CH4,3.9,kg/TJ,788.297328,kg -f5c007be-d0fa-3524-8421-b3d8d2f4c9af,SESCO,II.1.1,Catamarca,AR-K,annual,2017,gas oil combustion consumption by public passenger transport,202.12752,TJ,N2O,3.9,kg/TJ,788.297328,kg -c360641a-1026-3a79-a72b-78cfc64597e5,SESCO,II.1.1,Chaco,AR-H,annual,2017,gas oil combustion consumption by public passenger transport,573.36888,TJ,CO2,74100.0,kg/TJ,42486634.008,kg -68e26562-378b-3b9d-a685-5f9b5de990f5,SESCO,II.1.1,Chaco,AR-H,annual,2017,gas oil combustion consumption by public passenger transport,573.36888,TJ,CH4,3.9,kg/TJ,2236.1386319999997,kg -68e26562-378b-3b9d-a685-5f9b5de990f5,SESCO,II.1.1,Chaco,AR-H,annual,2017,gas oil combustion consumption by public passenger transport,573.36888,TJ,N2O,3.9,kg/TJ,2236.1386319999997,kg -7217d350-fade-355f-8e97-3b522212264b,SESCO,II.1.1,Chubut,AR-U,annual,2017,gas oil combustion consumption by public passenger transport,108.97404,TJ,CO2,74100.0,kg/TJ,8074976.364,kg -93bd5338-7543-35f7-8a24-a270e9d99ec4,SESCO,II.1.1,Chubut,AR-U,annual,2017,gas oil combustion consumption by public passenger transport,108.97404,TJ,CH4,3.9,kg/TJ,424.998756,kg -93bd5338-7543-35f7-8a24-a270e9d99ec4,SESCO,II.1.1,Chubut,AR-U,annual,2017,gas oil combustion consumption by public passenger transport,108.97404,TJ,N2O,3.9,kg/TJ,424.998756,kg -776517f2-a964-3bd7-a430-89f1c8747f09,SESCO,II.1.1,Corrientes,AR-W,annual,2017,gas oil combustion consumption by public passenger transport,526.23228,TJ,CO2,74100.0,kg/TJ,38993811.948,kg -47878543-c6e4-372a-9c08-69de4ff12dd5,SESCO,II.1.1,Corrientes,AR-W,annual,2017,gas oil combustion consumption by public passenger transport,526.23228,TJ,CH4,3.9,kg/TJ,2052.305892,kg -47878543-c6e4-372a-9c08-69de4ff12dd5,SESCO,II.1.1,Corrientes,AR-W,annual,2017,gas oil combustion consumption by public passenger transport,526.23228,TJ,N2O,3.9,kg/TJ,2052.305892,kg -0449fd37-7993-3313-95a8-5ab0a2daad78,SESCO,II.1.1,Córdoba,AR-X,annual,2017,gas oil combustion consumption by public passenger transport,1841.0364,TJ,CO2,74100.0,kg/TJ,136420797.24,kg -1f8181a3-e0f6-3964-924f-183d77dbc9a4,SESCO,II.1.1,Córdoba,AR-X,annual,2017,gas oil combustion consumption by public passenger transport,1841.0364,TJ,CH4,3.9,kg/TJ,7180.04196,kg -1f8181a3-e0f6-3964-924f-183d77dbc9a4,SESCO,II.1.1,Córdoba,AR-X,annual,2017,gas oil combustion consumption by public passenger transport,1841.0364,TJ,N2O,3.9,kg/TJ,7180.04196,kg -2b3ac049-55c2-3cb9-b781-e559aeb4d8ed,SESCO,II.1.1,Entre Rios,AR-E,annual,2017,gas oil combustion consumption by public passenger transport,497.04732,TJ,CO2,74100.0,kg/TJ,36831206.412,kg -05f03a37-a9e5-3811-8877-244167d32686,SESCO,II.1.1,Entre Rios,AR-E,annual,2017,gas oil combustion consumption by public passenger transport,497.04732,TJ,CH4,3.9,kg/TJ,1938.484548,kg -05f03a37-a9e5-3811-8877-244167d32686,SESCO,II.1.1,Entre Rios,AR-E,annual,2017,gas oil combustion consumption by public passenger transport,497.04732,TJ,N2O,3.9,kg/TJ,1938.484548,kg -4cea0034-1ded-3137-bef2-75fdca1ec94f,SESCO,II.1.1,Formosa,AR-P,annual,2017,gas oil combustion consumption by public passenger transport,78.63324,TJ,CO2,74100.0,kg/TJ,5826723.084,kg -83bddc68-e38c-3fb3-b7db-4ef01cbea7e1,SESCO,II.1.1,Formosa,AR-P,annual,2017,gas oil combustion consumption by public passenger transport,78.63324,TJ,CH4,3.9,kg/TJ,306.66963599999997,kg -83bddc68-e38c-3fb3-b7db-4ef01cbea7e1,SESCO,II.1.1,Formosa,AR-P,annual,2017,gas oil combustion consumption by public passenger transport,78.63324,TJ,N2O,3.9,kg/TJ,306.66963599999997,kg -8744b7c5-8758-33a1-b350-e73aa26a59b3,SESCO,II.1.1,Jujuy,AR-Y,annual,2017,gas oil combustion consumption by public passenger transport,663.84948,TJ,CO2,74100.0,kg/TJ,49191246.467999995,kg -310aed91-eb36-3836-af05-596927ddb02f,SESCO,II.1.1,Jujuy,AR-Y,annual,2017,gas oil combustion consumption by public passenger transport,663.84948,TJ,CH4,3.9,kg/TJ,2589.012972,kg -310aed91-eb36-3836-af05-596927ddb02f,SESCO,II.1.1,Jujuy,AR-Y,annual,2017,gas oil combustion consumption by public passenger transport,663.84948,TJ,N2O,3.9,kg/TJ,2589.012972,kg -5c170c94-e1e1-3d00-a7da-ad2673ac759d,SESCO,II.1.1,La Pampa,AR-L,annual,2017,gas oil combustion consumption by public passenger transport,53.493719999999996,TJ,CO2,74100.0,kg/TJ,3963884.652,kg -97de3cce-6f63-3761-a880-a2f70c38980f,SESCO,II.1.1,La Pampa,AR-L,annual,2017,gas oil combustion consumption by public passenger transport,53.493719999999996,TJ,CH4,3.9,kg/TJ,208.62550799999997,kg -97de3cce-6f63-3761-a880-a2f70c38980f,SESCO,II.1.1,La Pampa,AR-L,annual,2017,gas oil combustion consumption by public passenger transport,53.493719999999996,TJ,N2O,3.9,kg/TJ,208.62550799999997,kg -95211428-90c7-320a-85e5-29ebefb6030f,SESCO,II.1.1,La Rioja,AR-F,annual,2017,gas oil combustion consumption by public passenger transport,129.16512,TJ,CO2,74100.0,kg/TJ,9571135.392,kg -caa53e12-daa7-3eb8-8db9-3b38c8eaf87e,SESCO,II.1.1,La Rioja,AR-F,annual,2017,gas oil combustion consumption by public passenger transport,129.16512,TJ,CH4,3.9,kg/TJ,503.743968,kg -caa53e12-daa7-3eb8-8db9-3b38c8eaf87e,SESCO,II.1.1,La Rioja,AR-F,annual,2017,gas oil combustion consumption by public passenger transport,129.16512,TJ,N2O,3.9,kg/TJ,503.743968,kg -ba87fc96-07ad-32fc-811c-faca9010b744,SESCO,II.1.1,Mendoza,AR-M,annual,2017,gas oil combustion consumption by public passenger transport,1776.45384,TJ,CO2,74100.0,kg/TJ,131635229.544,kg -cb68f288-5a3d-3c2c-85a5-023168f15618,SESCO,II.1.1,Mendoza,AR-M,annual,2017,gas oil combustion consumption by public passenger transport,1776.45384,TJ,CH4,3.9,kg/TJ,6928.169975999999,kg -cb68f288-5a3d-3c2c-85a5-023168f15618,SESCO,II.1.1,Mendoza,AR-M,annual,2017,gas oil combustion consumption by public passenger transport,1776.45384,TJ,N2O,3.9,kg/TJ,6928.169975999999,kg -be04f20e-0a53-3b1f-81c0-43ea3501cc84,SESCO,II.1.1,Misiones,AR-N,annual,2017,gas oil combustion consumption by public passenger transport,1057.91868,TJ,CO2,74100.0,kg/TJ,78391774.188,kg -ef06943f-79d6-305b-bd5c-097b3c767664,SESCO,II.1.1,Misiones,AR-N,annual,2017,gas oil combustion consumption by public passenger transport,1057.91868,TJ,CH4,3.9,kg/TJ,4125.882852,kg -ef06943f-79d6-305b-bd5c-097b3c767664,SESCO,II.1.1,Misiones,AR-N,annual,2017,gas oil combustion consumption by public passenger transport,1057.91868,TJ,N2O,3.9,kg/TJ,4125.882852,kg -41f2c437-9cc6-3d2e-9662-69366e3acfb0,SESCO,II.1.1,Neuquén,AR-Q,annual,2017,gas oil combustion consumption by public passenger transport,275.2344,TJ,CO2,74100.0,kg/TJ,20394869.04,kg -443b8c03-7ed9-33a5-950a-77594148c7eb,SESCO,II.1.1,Neuquén,AR-Q,annual,2017,gas oil combustion consumption by public passenger transport,275.2344,TJ,CH4,3.9,kg/TJ,1073.41416,kg -443b8c03-7ed9-33a5-950a-77594148c7eb,SESCO,II.1.1,Neuquén,AR-Q,annual,2017,gas oil combustion consumption by public passenger transport,275.2344,TJ,N2O,3.9,kg/TJ,1073.41416,kg -3cf32780-5fe0-32c3-b9c4-ccaf0c3098f9,SESCO,II.1.1,Rio Negro,AR-R,annual,2017,gas oil combustion consumption by public passenger transport,284.87844,TJ,CO2,74100.0,kg/TJ,21109492.404,kg -c0666909-4cc9-3817-921c-b1486de8a643,SESCO,II.1.1,Rio Negro,AR-R,annual,2017,gas oil combustion consumption by public passenger transport,284.87844,TJ,CH4,3.9,kg/TJ,1111.025916,kg -c0666909-4cc9-3817-921c-b1486de8a643,SESCO,II.1.1,Rio Negro,AR-R,annual,2017,gas oil combustion consumption by public passenger transport,284.87844,TJ,N2O,3.9,kg/TJ,1111.025916,kg -d83ae1cf-3a21-34f4-8ad6-62f670dc7b83,SESCO,II.1.1,Salta,AR-A,annual,2017,gas oil combustion consumption by public passenger transport,758.55612,TJ,CO2,74100.0,kg/TJ,56209008.492,kg -c2a4bacb-00df-3808-a571-df6dcb382720,SESCO,II.1.1,Salta,AR-A,annual,2017,gas oil combustion consumption by public passenger transport,758.55612,TJ,CH4,3.9,kg/TJ,2958.368868,kg -c2a4bacb-00df-3808-a571-df6dcb382720,SESCO,II.1.1,Salta,AR-A,annual,2017,gas oil combustion consumption by public passenger transport,758.55612,TJ,N2O,3.9,kg/TJ,2958.368868,kg -dbf2a340-ce04-307a-ba93-7c94207a1952,SESCO,II.1.1,San Juan,AR-J,annual,2017,gas oil combustion consumption by public passenger transport,462.73332,TJ,CO2,74100.0,kg/TJ,34288539.012,kg -6f621264-5b10-34db-a5ba-bea7b9348279,SESCO,II.1.1,San Juan,AR-J,annual,2017,gas oil combustion consumption by public passenger transport,462.73332,TJ,CH4,3.9,kg/TJ,1804.659948,kg -6f621264-5b10-34db-a5ba-bea7b9348279,SESCO,II.1.1,San Juan,AR-J,annual,2017,gas oil combustion consumption by public passenger transport,462.73332,TJ,N2O,3.9,kg/TJ,1804.659948,kg -ffad86ea-0dde-3805-b677-378a304e5b89,SESCO,II.1.1,San Luis,AR-D,annual,2017,gas oil combustion consumption by public passenger transport,150.4398,TJ,CO2,74100.0,kg/TJ,11147589.18,kg -c11f557d-8179-343b-ab13-b2b4f902c54b,SESCO,II.1.1,San Luis,AR-D,annual,2017,gas oil combustion consumption by public passenger transport,150.4398,TJ,CH4,3.9,kg/TJ,586.7152199999999,kg -c11f557d-8179-343b-ab13-b2b4f902c54b,SESCO,II.1.1,San Luis,AR-D,annual,2017,gas oil combustion consumption by public passenger transport,150.4398,TJ,N2O,3.9,kg/TJ,586.7152199999999,kg -165d64b5-8826-310a-8b5c-91a481d740cc,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2017,gas oil combustion consumption by public passenger transport,32.21904,TJ,CO2,74100.0,kg/TJ,2387430.864,kg -21e5b639-b9c0-370d-a9cc-40e453083fbf,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2017,gas oil combustion consumption by public passenger transport,32.21904,TJ,CH4,3.9,kg/TJ,125.65425599999999,kg -21e5b639-b9c0-370d-a9cc-40e453083fbf,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2017,gas oil combustion consumption by public passenger transport,32.21904,TJ,N2O,3.9,kg/TJ,125.65425599999999,kg -af3ab77e-39c5-3fee-9bd1-a27decefd081,SESCO,II.1.1,Santa Fe,AR-S,annual,2017,gas oil combustion consumption by public passenger transport,1722.5628,TJ,CO2,74100.0,kg/TJ,127641903.47999999,kg -6c876be5-7829-36ac-b48b-a59c93126d12,SESCO,II.1.1,Santa Fe,AR-S,annual,2017,gas oil combustion consumption by public passenger transport,1722.5628,TJ,CH4,3.9,kg/TJ,6717.994919999999,kg -6c876be5-7829-36ac-b48b-a59c93126d12,SESCO,II.1.1,Santa Fe,AR-S,annual,2017,gas oil combustion consumption by public passenger transport,1722.5628,TJ,N2O,3.9,kg/TJ,6717.994919999999,kg -5f2d4423-0c82-364d-85c0-9833e049455d,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2017,gas oil combustion consumption by public passenger transport,254.17643999999999,TJ,CO2,74100.0,kg/TJ,18834474.204,kg -3877da5d-7e61-39e0-bdae-8234b13f8232,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2017,gas oil combustion consumption by public passenger transport,254.17643999999999,TJ,CH4,3.9,kg/TJ,991.288116,kg -3877da5d-7e61-39e0-bdae-8234b13f8232,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2017,gas oil combustion consumption by public passenger transport,254.17643999999999,TJ,N2O,3.9,kg/TJ,991.288116,kg -73822739-8759-322a-b0fd-4687b62871db,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2017,gas oil combustion consumption by public passenger transport,13.68948,TJ,CO2,74100.0,kg/TJ,1014390.468,kg -67c0b515-8b05-3fbd-95ee-4627761a1300,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2017,gas oil combustion consumption by public passenger transport,13.68948,TJ,CH4,3.9,kg/TJ,53.388971999999995,kg -67c0b515-8b05-3fbd-95ee-4627761a1300,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2017,gas oil combustion consumption by public passenger transport,13.68948,TJ,N2O,3.9,kg/TJ,53.388971999999995,kg -35166dbd-c1e9-33c6-aff0-7fc904f4cd60,SESCO,II.1.1,Tucuman,AR-T,annual,2017,gas oil combustion consumption by public passenger transport,1243.53936,TJ,CO2,74100.0,kg/TJ,92146266.576,kg -82f60e29-e9dd-3601-81ac-71910fe2d3a1,SESCO,II.1.1,Tucuman,AR-T,annual,2017,gas oil combustion consumption by public passenger transport,1243.53936,TJ,CH4,3.9,kg/TJ,4849.8035039999995,kg -82f60e29-e9dd-3601-81ac-71910fe2d3a1,SESCO,II.1.1,Tucuman,AR-T,annual,2017,gas oil combustion consumption by public passenger transport,1243.53936,TJ,N2O,3.9,kg/TJ,4849.8035039999995,kg -003fbe84-a25a-35f1-a32a-02dccb63aefc,SESCO,II.1.1,Buenos Aires,AR-B,annual,2017,gas oil combustion consumption by public passenger transport,1060.0497599999999,TJ,CO2,74100.0,kg/TJ,78549687.21599999,kg -f62f0fbf-6017-3542-bb8f-24a4a1dfdcc7,SESCO,II.1.1,Buenos Aires,AR-B,annual,2017,gas oil combustion consumption by public passenger transport,1060.0497599999999,TJ,CH4,3.9,kg/TJ,4134.194063999999,kg -f62f0fbf-6017-3542-bb8f-24a4a1dfdcc7,SESCO,II.1.1,Buenos Aires,AR-B,annual,2017,gas oil combustion consumption by public passenger transport,1060.0497599999999,TJ,N2O,3.9,kg/TJ,4134.194063999999,kg -e77f4bb0-a543-36a4-b061-b850e782d50d,SESCO,II.1.1,Capital Federal,AR-C,annual,2017,gas oil combustion consumption by public passenger transport,105.14532,TJ,CO2,74100.0,kg/TJ,7791268.212,kg -f0af072d-71c6-3f30-bdd0-f0b6d755d3ab,SESCO,II.1.1,Capital Federal,AR-C,annual,2017,gas oil combustion consumption by public passenger transport,105.14532,TJ,CH4,3.9,kg/TJ,410.06674799999996,kg -f0af072d-71c6-3f30-bdd0-f0b6d755d3ab,SESCO,II.1.1,Capital Federal,AR-C,annual,2017,gas oil combustion consumption by public passenger transport,105.14532,TJ,N2O,3.9,kg/TJ,410.06674799999996,kg -2c3a0f03-f1e2-3481-9322-e80b88d34760,SESCO,II.1.1,Catamarca,AR-K,annual,2017,gas oil combustion consumption by public passenger transport,19.90212,TJ,CO2,74100.0,kg/TJ,1474747.092,kg -943f5fc4-733d-33e6-8b8f-af2dabf081f1,SESCO,II.1.1,Catamarca,AR-K,annual,2017,gas oil combustion consumption by public passenger transport,19.90212,TJ,CH4,3.9,kg/TJ,77.618268,kg -943f5fc4-733d-33e6-8b8f-af2dabf081f1,SESCO,II.1.1,Catamarca,AR-K,annual,2017,gas oil combustion consumption by public passenger transport,19.90212,TJ,N2O,3.9,kg/TJ,77.618268,kg -44f2d1ff-c296-3179-a9ce-1b9d2cbe2320,SESCO,II.1.1,Chaco,AR-H,annual,2017,gas oil combustion consumption by public passenger transport,12.71424,TJ,CO2,74100.0,kg/TJ,942125.184,kg -9452bdb4-6971-3f16-be31-b14000fd4feb,SESCO,II.1.1,Chaco,AR-H,annual,2017,gas oil combustion consumption by public passenger transport,12.71424,TJ,CH4,3.9,kg/TJ,49.585536,kg -9452bdb4-6971-3f16-be31-b14000fd4feb,SESCO,II.1.1,Chaco,AR-H,annual,2017,gas oil combustion consumption by public passenger transport,12.71424,TJ,N2O,3.9,kg/TJ,49.585536,kg -ab2dce6c-35dd-33eb-b803-5f2833e0ed5c,SESCO,II.1.1,Chubut,AR-U,annual,2017,gas oil combustion consumption by public passenger transport,44.57208,TJ,CO2,74100.0,kg/TJ,3302791.128,kg -c9056c80-fcd5-396d-9064-d2ca9af0f0cc,SESCO,II.1.1,Chubut,AR-U,annual,2017,gas oil combustion consumption by public passenger transport,44.57208,TJ,CH4,3.9,kg/TJ,173.831112,kg -c9056c80-fcd5-396d-9064-d2ca9af0f0cc,SESCO,II.1.1,Chubut,AR-U,annual,2017,gas oil combustion consumption by public passenger transport,44.57208,TJ,N2O,3.9,kg/TJ,173.831112,kg -957bd06a-501a-3200-8ea0-c031cf2f5e13,SESCO,II.1.1,Corrientes,AR-W,annual,2017,gas oil combustion consumption by public passenger transport,30.340799999999998,TJ,CO2,74100.0,kg/TJ,2248253.28,kg -d9cac611-626e-3026-bb12-429c517e8358,SESCO,II.1.1,Corrientes,AR-W,annual,2017,gas oil combustion consumption by public passenger transport,30.340799999999998,TJ,CH4,3.9,kg/TJ,118.32911999999999,kg -d9cac611-626e-3026-bb12-429c517e8358,SESCO,II.1.1,Corrientes,AR-W,annual,2017,gas oil combustion consumption by public passenger transport,30.340799999999998,TJ,N2O,3.9,kg/TJ,118.32911999999999,kg -100b038b-7a57-3717-bdb1-3177178c48be,SESCO,II.1.1,Córdoba,AR-X,annual,2017,gas oil combustion consumption by public passenger transport,132.23532,TJ,CO2,74100.0,kg/TJ,9798637.212,kg -05676a1d-060a-3a84-949f-44f14ca8f4a5,SESCO,II.1.1,Córdoba,AR-X,annual,2017,gas oil combustion consumption by public passenger transport,132.23532,TJ,CH4,3.9,kg/TJ,515.717748,kg -05676a1d-060a-3a84-949f-44f14ca8f4a5,SESCO,II.1.1,Córdoba,AR-X,annual,2017,gas oil combustion consumption by public passenger transport,132.23532,TJ,N2O,3.9,kg/TJ,515.717748,kg -aee36da4-942f-3cd6-96f3-2007c6714a4a,SESCO,II.1.1,Entre Rios,AR-E,annual,2017,gas oil combustion consumption by public passenger transport,2.85348,TJ,CO2,74100.0,kg/TJ,211442.868,kg -0ca0c03e-5ef7-3fc2-aeac-ff5ee9a3a5fe,SESCO,II.1.1,Entre Rios,AR-E,annual,2017,gas oil combustion consumption by public passenger transport,2.85348,TJ,CH4,3.9,kg/TJ,11.128571999999998,kg -0ca0c03e-5ef7-3fc2-aeac-ff5ee9a3a5fe,SESCO,II.1.1,Entre Rios,AR-E,annual,2017,gas oil combustion consumption by public passenger transport,2.85348,TJ,N2O,3.9,kg/TJ,11.128571999999998,kg -a89a7425-88c5-3df4-8a9c-f16f702ed629,SESCO,II.1.1,Jujuy,AR-Y,annual,2017,gas oil combustion consumption by public passenger transport,1.9866,TJ,CO2,74100.0,kg/TJ,147207.06,kg -ba418045-45a4-3859-acf1-847bb0f0bfbe,SESCO,II.1.1,Jujuy,AR-Y,annual,2017,gas oil combustion consumption by public passenger transport,1.9866,TJ,CH4,3.9,kg/TJ,7.747739999999999,kg -ba418045-45a4-3859-acf1-847bb0f0bfbe,SESCO,II.1.1,Jujuy,AR-Y,annual,2017,gas oil combustion consumption by public passenger transport,1.9866,TJ,N2O,3.9,kg/TJ,7.747739999999999,kg -c2d92942-312a-3b8e-8597-934099487cf9,SESCO,II.1.1,La Pampa,AR-L,annual,2017,gas oil combustion consumption by public passenger transport,0.7223999999999999,TJ,CO2,74100.0,kg/TJ,53529.84,kg -5121f64c-eed1-3c43-9359-2561bc77629a,SESCO,II.1.1,La Pampa,AR-L,annual,2017,gas oil combustion consumption by public passenger transport,0.7223999999999999,TJ,CH4,3.9,kg/TJ,2.81736,kg -5121f64c-eed1-3c43-9359-2561bc77629a,SESCO,II.1.1,La Pampa,AR-L,annual,2017,gas oil combustion consumption by public passenger transport,0.7223999999999999,TJ,N2O,3.9,kg/TJ,2.81736,kg -27fc11dc-cb1f-3dce-b146-88f21c1fce84,SESCO,II.1.1,La Rioja,AR-F,annual,2017,gas oil combustion consumption by public passenger transport,2.81736,TJ,CO2,74100.0,kg/TJ,208766.376,kg -0b8db15d-90a0-30cd-bb6d-ca35f2539ecf,SESCO,II.1.1,La Rioja,AR-F,annual,2017,gas oil combustion consumption by public passenger transport,2.81736,TJ,CH4,3.9,kg/TJ,10.987703999999999,kg -0b8db15d-90a0-30cd-bb6d-ca35f2539ecf,SESCO,II.1.1,La Rioja,AR-F,annual,2017,gas oil combustion consumption by public passenger transport,2.81736,TJ,N2O,3.9,kg/TJ,10.987703999999999,kg -7db95e28-b59b-3508-9668-1b04f72da7ea,SESCO,II.1.1,Mendoza,AR-M,annual,2017,gas oil combustion consumption by public passenger transport,133.31892,TJ,CO2,74100.0,kg/TJ,9878931.972,kg -02d01cda-49dd-3c58-b6b9-c3a017cc7c5e,SESCO,II.1.1,Mendoza,AR-M,annual,2017,gas oil combustion consumption by public passenger transport,133.31892,TJ,CH4,3.9,kg/TJ,519.9437879999999,kg -02d01cda-49dd-3c58-b6b9-c3a017cc7c5e,SESCO,II.1.1,Mendoza,AR-M,annual,2017,gas oil combustion consumption by public passenger transport,133.31892,TJ,N2O,3.9,kg/TJ,519.9437879999999,kg -bd659b55-7234-3a1d-b542-16e18f8efba0,SESCO,II.1.1,Misiones,AR-N,annual,2017,gas oil combustion consumption by public passenger transport,76.0326,TJ,CO2,74100.0,kg/TJ,5634015.66,kg -55a040f6-a99d-3cab-872c-e072d05a0e69,SESCO,II.1.1,Misiones,AR-N,annual,2017,gas oil combustion consumption by public passenger transport,76.0326,TJ,CH4,3.9,kg/TJ,296.52714,kg -55a040f6-a99d-3cab-872c-e072d05a0e69,SESCO,II.1.1,Misiones,AR-N,annual,2017,gas oil combustion consumption by public passenger transport,76.0326,TJ,N2O,3.9,kg/TJ,296.52714,kg -e08a06ff-8304-311c-b7ad-d0a28a1363da,SESCO,II.1.1,Neuquén,AR-Q,annual,2017,gas oil combustion consumption by public passenger transport,19.57704,TJ,CO2,74100.0,kg/TJ,1450658.664,kg -1f93c534-c6bf-3621-9cff-51efdfc145f1,SESCO,II.1.1,Neuquén,AR-Q,annual,2017,gas oil combustion consumption by public passenger transport,19.57704,TJ,CH4,3.9,kg/TJ,76.350456,kg -1f93c534-c6bf-3621-9cff-51efdfc145f1,SESCO,II.1.1,Neuquén,AR-Q,annual,2017,gas oil combustion consumption by public passenger transport,19.57704,TJ,N2O,3.9,kg/TJ,76.350456,kg -392cb7f8-6795-30b3-a84c-1732d8afb2ff,SESCO,II.1.1,Rio Negro,AR-R,annual,2017,gas oil combustion consumption by public passenger transport,105.25368,TJ,CO2,74100.0,kg/TJ,7799297.688,kg -c82a458c-6825-3d3b-b136-7b10f386d69c,SESCO,II.1.1,Rio Negro,AR-R,annual,2017,gas oil combustion consumption by public passenger transport,105.25368,TJ,CH4,3.9,kg/TJ,410.489352,kg -c82a458c-6825-3d3b-b136-7b10f386d69c,SESCO,II.1.1,Rio Negro,AR-R,annual,2017,gas oil combustion consumption by public passenger transport,105.25368,TJ,N2O,3.9,kg/TJ,410.489352,kg -f1481d66-7992-3772-a1ee-889b3552573c,SESCO,II.1.1,Salta,AR-A,annual,2017,gas oil combustion consumption by public passenger transport,102.72528,TJ,CO2,74100.0,kg/TJ,7611943.248,kg -cdd11d9e-1407-39ec-b282-fafc0fa38b89,SESCO,II.1.1,Salta,AR-A,annual,2017,gas oil combustion consumption by public passenger transport,102.72528,TJ,CH4,3.9,kg/TJ,400.62859199999997,kg -cdd11d9e-1407-39ec-b282-fafc0fa38b89,SESCO,II.1.1,Salta,AR-A,annual,2017,gas oil combustion consumption by public passenger transport,102.72528,TJ,N2O,3.9,kg/TJ,400.62859199999997,kg -d3b4b4cd-6a04-3b99-8910-e4821723c7cf,SESCO,II.1.1,San Juan,AR-J,annual,2017,gas oil combustion consumption by public passenger transport,99.11328,TJ,CO2,74100.0,kg/TJ,7344294.048,kg -ab780ede-f32a-3789-a6ad-225fe2bb9829,SESCO,II.1.1,San Juan,AR-J,annual,2017,gas oil combustion consumption by public passenger transport,99.11328,TJ,CH4,3.9,kg/TJ,386.541792,kg -ab780ede-f32a-3789-a6ad-225fe2bb9829,SESCO,II.1.1,San Juan,AR-J,annual,2017,gas oil combustion consumption by public passenger transport,99.11328,TJ,N2O,3.9,kg/TJ,386.541792,kg -30445ad9-ef23-3736-8340-bca30bf9220e,SESCO,II.1.1,San Luis,AR-D,annual,2017,gas oil combustion consumption by public passenger transport,14.989799999999999,TJ,CO2,74100.0,kg/TJ,1110744.18,kg -ec59e81d-511a-3e20-9572-281d693a064f,SESCO,II.1.1,San Luis,AR-D,annual,2017,gas oil combustion consumption by public passenger transport,14.989799999999999,TJ,CH4,3.9,kg/TJ,58.46021999999999,kg -ec59e81d-511a-3e20-9572-281d693a064f,SESCO,II.1.1,San Luis,AR-D,annual,2017,gas oil combustion consumption by public passenger transport,14.989799999999999,TJ,N2O,3.9,kg/TJ,58.46021999999999,kg -c782d8ab-db76-3c5e-af65-b3cc7aca75c6,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2017,gas oil combustion consumption by public passenger transport,2.81736,TJ,CO2,74100.0,kg/TJ,208766.376,kg -76f29514-715e-3fa7-b6c2-a0f19bb671e8,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2017,gas oil combustion consumption by public passenger transport,2.81736,TJ,CH4,3.9,kg/TJ,10.987703999999999,kg -76f29514-715e-3fa7-b6c2-a0f19bb671e8,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2017,gas oil combustion consumption by public passenger transport,2.81736,TJ,N2O,3.9,kg/TJ,10.987703999999999,kg -ae46c33e-a5a3-3778-8442-e736e95ce63a,SESCO,II.1.1,Santa Fe,AR-S,annual,2017,gas oil combustion consumption by public passenger transport,134.87208,TJ,CO2,74100.0,kg/TJ,9994021.128,kg -ad08118a-eaef-3568-9c64-11c1fd43f1db,SESCO,II.1.1,Santa Fe,AR-S,annual,2017,gas oil combustion consumption by public passenger transport,134.87208,TJ,CH4,3.9,kg/TJ,526.001112,kg -ad08118a-eaef-3568-9c64-11c1fd43f1db,SESCO,II.1.1,Santa Fe,AR-S,annual,2017,gas oil combustion consumption by public passenger transport,134.87208,TJ,N2O,3.9,kg/TJ,526.001112,kg -b0ec0bab-d3a5-3805-91a4-d9687a2ecf37,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2017,gas oil combustion consumption by public passenger transport,11.0166,TJ,CO2,74100.0,kg/TJ,816330.06,kg -c4ff7872-8ab7-3759-967f-d1fe8900635b,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2017,gas oil combustion consumption by public passenger transport,11.0166,TJ,CH4,3.9,kg/TJ,42.96474,kg -c4ff7872-8ab7-3759-967f-d1fe8900635b,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2017,gas oil combustion consumption by public passenger transport,11.0166,TJ,N2O,3.9,kg/TJ,42.96474,kg -f55df6ae-947c-382a-a15b-4f2bd5556f0c,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2017,gas oil combustion consumption by public passenger transport,2.05884,TJ,CO2,74100.0,kg/TJ,152560.044,kg -e7cc6ab8-64de-3129-94b9-db64b3d7d685,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2017,gas oil combustion consumption by public passenger transport,2.05884,TJ,CH4,3.9,kg/TJ,8.029475999999999,kg -e7cc6ab8-64de-3129-94b9-db64b3d7d685,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2017,gas oil combustion consumption by public passenger transport,2.05884,TJ,N2O,3.9,kg/TJ,8.029475999999999,kg -7abfc512-b5b9-3ed8-9248-89cf17b4fd3c,SESCO,II.1.1,Tucuman,AR-T,annual,2017,gas oil combustion consumption by public passenger transport,85.53216,TJ,CO2,74100.0,kg/TJ,6337933.056000001,kg -4be0aa8c-b80b-3e69-87e3-dbe6f0f5dd7f,SESCO,II.1.1,Tucuman,AR-T,annual,2017,gas oil combustion consumption by public passenger transport,85.53216,TJ,CH4,3.9,kg/TJ,333.575424,kg -4be0aa8c-b80b-3e69-87e3-dbe6f0f5dd7f,SESCO,II.1.1,Tucuman,AR-T,annual,2017,gas oil combustion consumption by public passenger transport,85.53216,TJ,N2O,3.9,kg/TJ,333.575424,kg -1ab39bee-9ba6-3fbe-b495-ec404df31e32,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,gas oil combustion consumption by to the public,2974.3014,TJ,CO2,74100.0,kg/TJ,220395733.73999998,kg -240ad650-8c29-3c22-a085-6d54386b1de1,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,gas oil combustion consumption by to the public,2974.3014,TJ,CH4,3.9,kg/TJ,11599.775459999999,kg -240ad650-8c29-3c22-a085-6d54386b1de1,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,gas oil combustion consumption by to the public,2974.3014,TJ,N2O,3.9,kg/TJ,11599.775459999999,kg -d3bffade-a4ff-3fcc-81dd-bb8e4ffc8189,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,gas oil combustion consumption by to the public,131.838,TJ,CO2,74100.0,kg/TJ,9769195.799999999,kg -481daf89-535f-3633-a4ae-b65486864912,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,gas oil combustion consumption by to the public,131.838,TJ,CH4,3.9,kg/TJ,514.1682,kg -481daf89-535f-3633-a4ae-b65486864912,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,gas oil combustion consumption by to the public,131.838,TJ,N2O,3.9,kg/TJ,514.1682,kg -90d0c1b0-b5d9-3886-bfe4-99206748c1f2,SESCO,II.1.1,Chaco,AR-H,annual,2018,gas oil combustion consumption by to the public,89.43312,TJ,CO2,74100.0,kg/TJ,6626994.192,kg -07ba4c06-09db-308f-85ee-1083fe17e6b4,SESCO,II.1.1,Chaco,AR-H,annual,2018,gas oil combustion consumption by to the public,89.43312,TJ,CH4,3.9,kg/TJ,348.789168,kg -07ba4c06-09db-308f-85ee-1083fe17e6b4,SESCO,II.1.1,Chaco,AR-H,annual,2018,gas oil combustion consumption by to the public,89.43312,TJ,N2O,3.9,kg/TJ,348.789168,kg -1ed210d4-5430-347a-a5fa-09bcfea76459,SESCO,II.1.1,Corrientes,AR-W,annual,2018,gas oil combustion consumption by to the public,1.04748,TJ,CO2,74100.0,kg/TJ,77618.268,kg -74412031-6c1f-3f73-bfc2-f1a278e51acd,SESCO,II.1.1,Corrientes,AR-W,annual,2018,gas oil combustion consumption by to the public,1.04748,TJ,CH4,3.9,kg/TJ,4.085172,kg -74412031-6c1f-3f73-bfc2-f1a278e51acd,SESCO,II.1.1,Corrientes,AR-W,annual,2018,gas oil combustion consumption by to the public,1.04748,TJ,N2O,3.9,kg/TJ,4.085172,kg -09be0000-c286-3172-8049-42341c4e2736,SESCO,II.1.1,Córdoba,AR-X,annual,2018,gas oil combustion consumption by to the public,1085.73108,TJ,CO2,74100.0,kg/TJ,80452673.028,kg -47bc644b-d9f6-3d14-ab6e-2834d39377f8,SESCO,II.1.1,Córdoba,AR-X,annual,2018,gas oil combustion consumption by to the public,1085.73108,TJ,CH4,3.9,kg/TJ,4234.351212,kg -47bc644b-d9f6-3d14-ab6e-2834d39377f8,SESCO,II.1.1,Córdoba,AR-X,annual,2018,gas oil combustion consumption by to the public,1085.73108,TJ,N2O,3.9,kg/TJ,4234.351212,kg -915c2d7e-7e4e-31d8-8b99-fc30c0fde2a1,SESCO,II.1.1,Entre Rios,AR-E,annual,2018,gas oil combustion consumption by to the public,5.20128,TJ,CO2,74100.0,kg/TJ,385414.848,kg -e9bf8a8a-36ca-36e3-ad53-d0f327d051e7,SESCO,II.1.1,Entre Rios,AR-E,annual,2018,gas oil combustion consumption by to the public,5.20128,TJ,CH4,3.9,kg/TJ,20.284992,kg -e9bf8a8a-36ca-36e3-ad53-d0f327d051e7,SESCO,II.1.1,Entre Rios,AR-E,annual,2018,gas oil combustion consumption by to the public,5.20128,TJ,N2O,3.9,kg/TJ,20.284992,kg -b7f2517e-6b9a-3ee5-8ecd-dc4c8c7f69d9,SESCO,II.1.1,Mendoza,AR-M,annual,2018,gas oil combustion consumption by to the public,402.30456,TJ,CO2,74100.0,kg/TJ,29810767.895999998,kg -3d4e2fca-54cb-304c-8789-6f836ca02415,SESCO,II.1.1,Mendoza,AR-M,annual,2018,gas oil combustion consumption by to the public,402.30456,TJ,CH4,3.9,kg/TJ,1568.987784,kg -3d4e2fca-54cb-304c-8789-6f836ca02415,SESCO,II.1.1,Mendoza,AR-M,annual,2018,gas oil combustion consumption by to the public,402.30456,TJ,N2O,3.9,kg/TJ,1568.987784,kg -c60c3579-072a-3ac5-82c9-149085dbb675,SESCO,II.1.1,Misiones,AR-N,annual,2018,gas oil combustion consumption by to the public,0.65016,TJ,CO2,74100.0,kg/TJ,48176.856,kg -dd800d76-7d32-3668-a53a-6e08506d8286,SESCO,II.1.1,Misiones,AR-N,annual,2018,gas oil combustion consumption by to the public,0.65016,TJ,CH4,3.9,kg/TJ,2.535624,kg -dd800d76-7d32-3668-a53a-6e08506d8286,SESCO,II.1.1,Misiones,AR-N,annual,2018,gas oil combustion consumption by to the public,0.65016,TJ,N2O,3.9,kg/TJ,2.535624,kg -0c8fe6c7-6264-3cd0-9906-982e6b70936d,SESCO,II.1.1,San Juan,AR-J,annual,2018,gas oil combustion consumption by to the public,2.99796,TJ,CO2,74100.0,kg/TJ,222148.836,kg -8ea3e33e-579e-3723-baf2-fcc93fe29727,SESCO,II.1.1,San Juan,AR-J,annual,2018,gas oil combustion consumption by to the public,2.99796,TJ,CH4,3.9,kg/TJ,11.692044,kg -8ea3e33e-579e-3723-baf2-fcc93fe29727,SESCO,II.1.1,San Juan,AR-J,annual,2018,gas oil combustion consumption by to the public,2.99796,TJ,N2O,3.9,kg/TJ,11.692044,kg -833f0b95-65b3-3a41-90c7-29ba13f7cbf5,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,gas oil combustion consumption by to the public,1219.98912,TJ,CO2,74100.0,kg/TJ,90401193.792,kg -a9877e2f-c4d8-3cae-86ce-7bae0395e793,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,gas oil combustion consumption by to the public,1219.98912,TJ,CH4,3.9,kg/TJ,4757.957568,kg -a9877e2f-c4d8-3cae-86ce-7bae0395e793,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,gas oil combustion consumption by to the public,1219.98912,TJ,N2O,3.9,kg/TJ,4757.957568,kg -4cdc9eb3-5881-38cb-a577-ead6ebb559ef,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2018,gas oil combustion consumption by to the public,2.8895999999999997,TJ,CO2,74100.0,kg/TJ,214119.36,kg -ff309e58-245d-3dfe-a533-909700256333,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2018,gas oil combustion consumption by to the public,2.8895999999999997,TJ,CH4,3.9,kg/TJ,11.26944,kg -ff309e58-245d-3dfe-a533-909700256333,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2018,gas oil combustion consumption by to the public,2.8895999999999997,TJ,N2O,3.9,kg/TJ,11.26944,kg -7d0d85d5-4475-3068-ba2d-9dfe36c5f405,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,gas oil combustion consumption by to the public,375.32292,TJ,CO2,74100.0,kg/TJ,27811428.372,kg -fb677d91-8b9d-3df0-8fd9-257e68c32ad4,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,gas oil combustion consumption by to the public,375.32292,TJ,CH4,3.9,kg/TJ,1463.759388,kg -fb677d91-8b9d-3df0-8fd9-257e68c32ad4,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,gas oil combustion consumption by to the public,375.32292,TJ,N2O,3.9,kg/TJ,1463.759388,kg -20947247-76bc-3123-bd99-1456061d4a6d,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,gas oil combustion consumption by to the public,12.38916,TJ,CO2,74100.0,kg/TJ,918036.756,kg -c4a866c4-be36-3e05-86d0-2d2a8e2b2d0e,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,gas oil combustion consumption by to the public,12.38916,TJ,CH4,3.9,kg/TJ,48.317724,kg -c4a866c4-be36-3e05-86d0-2d2a8e2b2d0e,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,gas oil combustion consumption by to the public,12.38916,TJ,N2O,3.9,kg/TJ,48.317724,kg -043b8280-8dbc-3e0a-bcd6-c9aa4bc88f89,SESCO,II.1.1,Chaco,AR-H,annual,2018,gas oil combustion consumption by to the public,31.027079999999998,TJ,CO2,74100.0,kg/TJ,2299106.628,kg -8544f869-7637-3c0a-8bb9-b5ea0f518fe8,SESCO,II.1.1,Chaco,AR-H,annual,2018,gas oil combustion consumption by to the public,31.027079999999998,TJ,CH4,3.9,kg/TJ,121.00561199999999,kg -8544f869-7637-3c0a-8bb9-b5ea0f518fe8,SESCO,II.1.1,Chaco,AR-H,annual,2018,gas oil combustion consumption by to the public,31.027079999999998,TJ,N2O,3.9,kg/TJ,121.00561199999999,kg -882ff5ab-57f8-3b4a-bf4b-dfef3901bdb1,SESCO,II.1.1,Corrientes,AR-W,annual,2018,gas oil combustion consumption by to the public,0.46956,TJ,CO2,74100.0,kg/TJ,34794.396,kg -78b7d7e6-4d08-3f17-ae8f-870329136b14,SESCO,II.1.1,Corrientes,AR-W,annual,2018,gas oil combustion consumption by to the public,0.46956,TJ,CH4,3.9,kg/TJ,1.831284,kg -78b7d7e6-4d08-3f17-ae8f-870329136b14,SESCO,II.1.1,Corrientes,AR-W,annual,2018,gas oil combustion consumption by to the public,0.46956,TJ,N2O,3.9,kg/TJ,1.831284,kg -9276efcc-ef72-306e-9a52-8af6eb6b2e3c,SESCO,II.1.1,Córdoba,AR-X,annual,2018,gas oil combustion consumption by to the public,149.57292,TJ,CO2,74100.0,kg/TJ,11083353.372000001,kg -67c90958-0ddf-3374-ae5b-3776a541ffda,SESCO,II.1.1,Córdoba,AR-X,annual,2018,gas oil combustion consumption by to the public,149.57292,TJ,CH4,3.9,kg/TJ,583.334388,kg -67c90958-0ddf-3374-ae5b-3776a541ffda,SESCO,II.1.1,Córdoba,AR-X,annual,2018,gas oil combustion consumption by to the public,149.57292,TJ,N2O,3.9,kg/TJ,583.334388,kg -8778be24-62a3-3d55-bc48-bc015e7ae12c,SESCO,II.1.1,Mendoza,AR-M,annual,2018,gas oil combustion consumption by to the public,63.49896,TJ,CO2,74100.0,kg/TJ,4705272.936,kg -13a8c0dd-0dd0-3e36-9e91-c3a7f8bc1a59,SESCO,II.1.1,Mendoza,AR-M,annual,2018,gas oil combustion consumption by to the public,63.49896,TJ,CH4,3.9,kg/TJ,247.645944,kg -13a8c0dd-0dd0-3e36-9e91-c3a7f8bc1a59,SESCO,II.1.1,Mendoza,AR-M,annual,2018,gas oil combustion consumption by to the public,63.49896,TJ,N2O,3.9,kg/TJ,247.645944,kg -62055cbf-72e9-3137-b12b-3fb010d1b60a,SESCO,II.1.1,Misiones,AR-N,annual,2018,gas oil combustion consumption by to the public,0.21672,TJ,CO2,74100.0,kg/TJ,16058.952,kg -c1c960ec-61d1-3ff0-ad36-943a66342c9d,SESCO,II.1.1,Misiones,AR-N,annual,2018,gas oil combustion consumption by to the public,0.21672,TJ,CH4,3.9,kg/TJ,0.845208,kg -c1c960ec-61d1-3ff0-ad36-943a66342c9d,SESCO,II.1.1,Misiones,AR-N,annual,2018,gas oil combustion consumption by to the public,0.21672,TJ,N2O,3.9,kg/TJ,0.845208,kg -3b298f31-513d-3bea-b9f6-6d9113eb2595,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,gas oil combustion consumption by to the public,124.39728,TJ,CO2,74100.0,kg/TJ,9217838.447999999,kg -d244128f-069c-3b01-bff0-c5284bf821ec,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,gas oil combustion consumption by to the public,124.39728,TJ,CH4,3.9,kg/TJ,485.149392,kg -d244128f-069c-3b01-bff0-c5284bf821ec,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,gas oil combustion consumption by to the public,124.39728,TJ,N2O,3.9,kg/TJ,485.149392,kg -b5b98223-ed65-3e90-9cb8-182d23d63904,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,jet kerosene combustion consumption by to the public,0.31453,TJ,CO2,71500.0,kg/TJ,22488.894999999997,kg -4f70fa38-25bc-3bde-adb8-109bedb763c0,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,jet kerosene combustion consumption by to the public,0.31453,TJ,CH4,0.5,kg/TJ,0.157265,kg -97827aa4-e8f4-3be2-bf2a-fca668b5efb9,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,jet kerosene combustion consumption by to the public,0.31453,TJ,N2O,2.0,kg/TJ,0.62906,kg -3b4777a9-59e0-3de1-bce0-e86fbcd53b18,SESCO,II.5.1,Buenos Aires,AR-B,annual,2018,gas oil combustion consumption by agriculture machines,40.74336,TJ,CO2,74100.0,kg/TJ,3019082.9760000003,kg -22a43a42-e758-357d-888c-2002944abc66,SESCO,II.5.1,Buenos Aires,AR-B,annual,2018,gas oil combustion consumption by agriculture machines,40.74336,TJ,CH4,3.9,kg/TJ,158.899104,kg -22a43a42-e758-357d-888c-2002944abc66,SESCO,II.5.1,Buenos Aires,AR-B,annual,2018,gas oil combustion consumption by agriculture machines,40.74336,TJ,N2O,3.9,kg/TJ,158.899104,kg -7affca53-79fb-3f03-9e43-e8aff290c4d3,SESCO,II.5.1,Córdoba,AR-X,annual,2018,gas oil combustion consumption by agriculture machines,1.33644,TJ,CO2,74100.0,kg/TJ,99030.20400000001,kg -5bc15247-2b16-372c-a5bd-827ad37ed1bf,SESCO,II.5.1,Córdoba,AR-X,annual,2018,gas oil combustion consumption by agriculture machines,1.33644,TJ,CH4,3.9,kg/TJ,5.212116,kg -5bc15247-2b16-372c-a5bd-827ad37ed1bf,SESCO,II.5.1,Córdoba,AR-X,annual,2018,gas oil combustion consumption by agriculture machines,1.33644,TJ,N2O,3.9,kg/TJ,5.212116,kg -c57d8751-a2f3-3e71-bc85-b0ba57223a8b,SESCO,II.5.1,Santa Fe,AR-S,annual,2018,gas oil combustion consumption by agriculture machines,76.5744,TJ,CO2,74100.0,kg/TJ,5674163.04,kg -4658e8f3-9c51-3285-97f2-46531d78e214,SESCO,II.5.1,Santa Fe,AR-S,annual,2018,gas oil combustion consumption by agriculture machines,76.5744,TJ,CH4,3.9,kg/TJ,298.64016,kg -4658e8f3-9c51-3285-97f2-46531d78e214,SESCO,II.5.1,Santa Fe,AR-S,annual,2018,gas oil combustion consumption by agriculture machines,76.5744,TJ,N2O,3.9,kg/TJ,298.64016,kg -90da84b8-f111-3cb7-99e9-8257fc2c49a2,SESCO,II.5.1,Tucuman,AR-T,annual,2018,gas oil combustion consumption by agriculture machines,5.2735199999999995,TJ,CO2,74100.0,kg/TJ,390767.832,kg -ffdacb5d-d294-3d96-9de6-a0610076fade,SESCO,II.5.1,Tucuman,AR-T,annual,2018,gas oil combustion consumption by agriculture machines,5.2735199999999995,TJ,CH4,3.9,kg/TJ,20.566727999999998,kg -ffdacb5d-d294-3d96-9de6-a0610076fade,SESCO,II.5.1,Tucuman,AR-T,annual,2018,gas oil combustion consumption by agriculture machines,5.2735199999999995,TJ,N2O,3.9,kg/TJ,20.566727999999998,kg -5b2d9209-d8fc-308c-a01a-12d3c58f331a,SESCO,II.5.1,Buenos Aires,AR-B,annual,2018,gas oil combustion consumption by agriculture machines,4.62336,TJ,CO2,74100.0,kg/TJ,342590.97599999997,kg -e2761fc5-a9db-39c8-853b-4b71c0aef6cc,SESCO,II.5.1,Buenos Aires,AR-B,annual,2018,gas oil combustion consumption by agriculture machines,4.62336,TJ,CH4,3.9,kg/TJ,18.031104,kg -e2761fc5-a9db-39c8-853b-4b71c0aef6cc,SESCO,II.5.1,Buenos Aires,AR-B,annual,2018,gas oil combustion consumption by agriculture machines,4.62336,TJ,N2O,3.9,kg/TJ,18.031104,kg -8f4854a8-e502-3713-b7ad-0d90d4b218ad,SESCO,II.5.1,Córdoba,AR-X,annual,2018,gas oil combustion consumption by agriculture machines,2.5284,TJ,CO2,74100.0,kg/TJ,187354.44,kg -9c678e78-642a-3c21-9c52-393a6eb5f96d,SESCO,II.5.1,Córdoba,AR-X,annual,2018,gas oil combustion consumption by agriculture machines,2.5284,TJ,CH4,3.9,kg/TJ,9.860759999999999,kg -9c678e78-642a-3c21-9c52-393a6eb5f96d,SESCO,II.5.1,Córdoba,AR-X,annual,2018,gas oil combustion consumption by agriculture machines,2.5284,TJ,N2O,3.9,kg/TJ,9.860759999999999,kg -b3ac713b-c01f-36cb-b9cb-c6c6730c1312,SESCO,II.5.1,Santa Fe,AR-S,annual,2018,gas oil combustion consumption by agriculture machines,9.24672,TJ,CO2,74100.0,kg/TJ,685181.9519999999,kg -e0c72e40-d472-3e45-8e79-b86c8def2ec9,SESCO,II.5.1,Santa Fe,AR-S,annual,2018,gas oil combustion consumption by agriculture machines,9.24672,TJ,CH4,3.9,kg/TJ,36.062208,kg -e0c72e40-d472-3e45-8e79-b86c8def2ec9,SESCO,II.5.1,Santa Fe,AR-S,annual,2018,gas oil combustion consumption by agriculture machines,9.24672,TJ,N2O,3.9,kg/TJ,36.062208,kg -fa818f0e-1216-3fd1-ac6b-3e648fd68b6a,SESCO,II.5.1,Tucuman,AR-T,annual,2018,gas oil combustion consumption by agriculture machines,4.6956,TJ,CO2,74100.0,kg/TJ,347943.95999999996,kg -d531778d-008a-3723-965b-dda1839a3a32,SESCO,II.5.1,Tucuman,AR-T,annual,2018,gas oil combustion consumption by agriculture machines,4.6956,TJ,CH4,3.9,kg/TJ,18.312839999999998,kg -d531778d-008a-3723-965b-dda1839a3a32,SESCO,II.5.1,Tucuman,AR-T,annual,2018,gas oil combustion consumption by agriculture machines,4.6956,TJ,N2O,3.9,kg/TJ,18.312839999999998,kg -4feec27a-c736-3000-990f-80dcb8f83107,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,gas oil combustion consumption by to the public,1888.49808,TJ,CO2,74100.0,kg/TJ,139937707.72800002,kg -2cdab03b-b13d-3d1c-b1d8-58e891e0cc6f,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,gas oil combustion consumption by to the public,1888.49808,TJ,CH4,3.9,kg/TJ,7365.142512,kg -2cdab03b-b13d-3d1c-b1d8-58e891e0cc6f,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,gas oil combustion consumption by to the public,1888.49808,TJ,N2O,3.9,kg/TJ,7365.142512,kg -410514d4-113e-3fb4-9153-1c40ddb933fe,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,gas oil combustion consumption by to the public,206.71475999999998,TJ,CO2,74100.0,kg/TJ,15317563.715999998,kg -d249c032-750b-311a-bc7e-b94f14b5864e,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,gas oil combustion consumption by to the public,206.71475999999998,TJ,CH4,3.9,kg/TJ,806.187564,kg -d249c032-750b-311a-bc7e-b94f14b5864e,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,gas oil combustion consumption by to the public,206.71475999999998,TJ,N2O,3.9,kg/TJ,806.187564,kg -a6073365-6348-3642-95c6-cd892e9dbfd9,SESCO,II.1.1,Catamarca,AR-K,annual,2018,gas oil combustion consumption by to the public,71.40924,TJ,CO2,74100.0,kg/TJ,5291424.683999999,kg -36614760-66d6-3e1b-93fc-143235015fb2,SESCO,II.1.1,Catamarca,AR-K,annual,2018,gas oil combustion consumption by to the public,71.40924,TJ,CH4,3.9,kg/TJ,278.496036,kg -36614760-66d6-3e1b-93fc-143235015fb2,SESCO,II.1.1,Catamarca,AR-K,annual,2018,gas oil combustion consumption by to the public,71.40924,TJ,N2O,3.9,kg/TJ,278.496036,kg -35b5e8d2-6717-3224-9ed7-f589ae0f3e57,SESCO,II.1.1,Chaco,AR-H,annual,2018,gas oil combustion consumption by to the public,66.6414,TJ,CO2,74100.0,kg/TJ,4938127.74,kg -45f42763-bf25-3bfc-b53b-9ae92f37aaa7,SESCO,II.1.1,Chaco,AR-H,annual,2018,gas oil combustion consumption by to the public,66.6414,TJ,CH4,3.9,kg/TJ,259.90146,kg -45f42763-bf25-3bfc-b53b-9ae92f37aaa7,SESCO,II.1.1,Chaco,AR-H,annual,2018,gas oil combustion consumption by to the public,66.6414,TJ,N2O,3.9,kg/TJ,259.90146,kg -6efeefd9-44c4-3523-9462-908be4173095,SESCO,II.1.1,Chubut,AR-U,annual,2018,gas oil combustion consumption by to the public,99.1494,TJ,CO2,74100.0,kg/TJ,7346970.54,kg -b558764f-1c86-31e3-ae02-19fe3589f7f8,SESCO,II.1.1,Chubut,AR-U,annual,2018,gas oil combustion consumption by to the public,99.1494,TJ,CH4,3.9,kg/TJ,386.68266,kg -b558764f-1c86-31e3-ae02-19fe3589f7f8,SESCO,II.1.1,Chubut,AR-U,annual,2018,gas oil combustion consumption by to the public,99.1494,TJ,N2O,3.9,kg/TJ,386.68266,kg -675920a4-43bc-3fd5-a15f-e6a354a48930,SESCO,II.1.1,Corrientes,AR-W,annual,2018,gas oil combustion consumption by to the public,125.76984,TJ,CO2,74100.0,kg/TJ,9319545.144,kg -28b1b895-0f36-3df8-9fd4-8a2e0a161b42,SESCO,II.1.1,Corrientes,AR-W,annual,2018,gas oil combustion consumption by to the public,125.76984,TJ,CH4,3.9,kg/TJ,490.50237599999997,kg -28b1b895-0f36-3df8-9fd4-8a2e0a161b42,SESCO,II.1.1,Corrientes,AR-W,annual,2018,gas oil combustion consumption by to the public,125.76984,TJ,N2O,3.9,kg/TJ,490.50237599999997,kg -406db7ad-55fc-3c77-ae0d-5a9d41f4ee47,SESCO,II.1.1,Córdoba,AR-X,annual,2018,gas oil combustion consumption by to the public,1032.6707999999999,TJ,CO2,74100.0,kg/TJ,76520906.27999999,kg -1f1d4bb8-265a-3652-8f84-0701aecff5da,SESCO,II.1.1,Córdoba,AR-X,annual,2018,gas oil combustion consumption by to the public,1032.6707999999999,TJ,CH4,3.9,kg/TJ,4027.4161199999994,kg -1f1d4bb8-265a-3652-8f84-0701aecff5da,SESCO,II.1.1,Córdoba,AR-X,annual,2018,gas oil combustion consumption by to the public,1032.6707999999999,TJ,N2O,3.9,kg/TJ,4027.4161199999994,kg -51d59cc6-1a30-3e14-958a-83929a2877bb,SESCO,II.1.1,Entre Rios,AR-E,annual,2018,gas oil combustion consumption by to the public,283.57812,TJ,CO2,74100.0,kg/TJ,21013138.692,kg -d25fbe09-f8c0-3837-abbd-b78a4b1d5db9,SESCO,II.1.1,Entre Rios,AR-E,annual,2018,gas oil combustion consumption by to the public,283.57812,TJ,CH4,3.9,kg/TJ,1105.954668,kg -d25fbe09-f8c0-3837-abbd-b78a4b1d5db9,SESCO,II.1.1,Entre Rios,AR-E,annual,2018,gas oil combustion consumption by to the public,283.57812,TJ,N2O,3.9,kg/TJ,1105.954668,kg -e90b6130-edb9-38c0-9a1d-63392c13a05c,SESCO,II.1.1,Formosa,AR-P,annual,2018,gas oil combustion consumption by to the public,117.31775999999999,TJ,CO2,74100.0,kg/TJ,8693246.015999999,kg -c383e987-fcde-325c-9051-7a658f7a94ef,SESCO,II.1.1,Formosa,AR-P,annual,2018,gas oil combustion consumption by to the public,117.31775999999999,TJ,CH4,3.9,kg/TJ,457.53926399999995,kg -c383e987-fcde-325c-9051-7a658f7a94ef,SESCO,II.1.1,Formosa,AR-P,annual,2018,gas oil combustion consumption by to the public,117.31775999999999,TJ,N2O,3.9,kg/TJ,457.53926399999995,kg -84f394f2-c723-3d52-acb7-e48eba7d66b9,SESCO,II.1.1,Jujuy,AR-Y,annual,2018,gas oil combustion consumption by to the public,20.2272,TJ,CO2,74100.0,kg/TJ,1498835.52,kg -edc549c9-c739-3a8b-a3e2-4cd6ca5e2403,SESCO,II.1.1,Jujuy,AR-Y,annual,2018,gas oil combustion consumption by to the public,20.2272,TJ,CH4,3.9,kg/TJ,78.88607999999999,kg -edc549c9-c739-3a8b-a3e2-4cd6ca5e2403,SESCO,II.1.1,Jujuy,AR-Y,annual,2018,gas oil combustion consumption by to the public,20.2272,TJ,N2O,3.9,kg/TJ,78.88607999999999,kg -fca3fd35-40f1-3e0e-89ee-601576c37606,SESCO,II.1.1,La Pampa,AR-L,annual,2018,gas oil combustion consumption by to the public,80.43924,TJ,CO2,74100.0,kg/TJ,5960547.683999999,kg -07dfb454-9f84-3185-b29a-684a3d9296a6,SESCO,II.1.1,La Pampa,AR-L,annual,2018,gas oil combustion consumption by to the public,80.43924,TJ,CH4,3.9,kg/TJ,313.713036,kg -07dfb454-9f84-3185-b29a-684a3d9296a6,SESCO,II.1.1,La Pampa,AR-L,annual,2018,gas oil combustion consumption by to the public,80.43924,TJ,N2O,3.9,kg/TJ,313.713036,kg -19b1badc-4d7d-34eb-bd8c-a29beee1dfbc,SESCO,II.1.1,La Rioja,AR-F,annual,2018,gas oil combustion consumption by to the public,13.0032,TJ,CO2,74100.0,kg/TJ,963537.12,kg -0e37b98b-08fb-3171-9a48-b796af45c911,SESCO,II.1.1,La Rioja,AR-F,annual,2018,gas oil combustion consumption by to the public,13.0032,TJ,CH4,3.9,kg/TJ,50.71248,kg -0e37b98b-08fb-3171-9a48-b796af45c911,SESCO,II.1.1,La Rioja,AR-F,annual,2018,gas oil combustion consumption by to the public,13.0032,TJ,N2O,3.9,kg/TJ,50.71248,kg -49c2d775-e768-3b1c-93ac-36eb25cf6c20,SESCO,II.1.1,Mendoza,AR-M,annual,2018,gas oil combustion consumption by to the public,137.68944,TJ,CO2,74100.0,kg/TJ,10202787.503999999,kg -d79d5a95-d827-3a96-aef8-2daac8e1942f,SESCO,II.1.1,Mendoza,AR-M,annual,2018,gas oil combustion consumption by to the public,137.68944,TJ,CH4,3.9,kg/TJ,536.9888159999999,kg -d79d5a95-d827-3a96-aef8-2daac8e1942f,SESCO,II.1.1,Mendoza,AR-M,annual,2018,gas oil combustion consumption by to the public,137.68944,TJ,N2O,3.9,kg/TJ,536.9888159999999,kg -5966a1ce-7701-3158-9268-9dc778882703,SESCO,II.1.1,Misiones,AR-N,annual,2018,gas oil combustion consumption by to the public,147.62243999999998,TJ,CO2,74100.0,kg/TJ,10938822.804,kg -884a56bd-678d-3db5-b748-e68a58fac80f,SESCO,II.1.1,Misiones,AR-N,annual,2018,gas oil combustion consumption by to the public,147.62243999999998,TJ,CH4,3.9,kg/TJ,575.7275159999999,kg -884a56bd-678d-3db5-b748-e68a58fac80f,SESCO,II.1.1,Misiones,AR-N,annual,2018,gas oil combustion consumption by to the public,147.62243999999998,TJ,N2O,3.9,kg/TJ,575.7275159999999,kg -597fc1a1-63fe-34ad-a012-14e4dd9ef739,SESCO,II.1.1,Neuquén,AR-Q,annual,2018,gas oil combustion consumption by to the public,41.538,TJ,CO2,74100.0,kg/TJ,3077965.8,kg -a99213ce-701c-3723-9e8b-b0f006c99ee9,SESCO,II.1.1,Neuquén,AR-Q,annual,2018,gas oil combustion consumption by to the public,41.538,TJ,CH4,3.9,kg/TJ,161.9982,kg -a99213ce-701c-3723-9e8b-b0f006c99ee9,SESCO,II.1.1,Neuquén,AR-Q,annual,2018,gas oil combustion consumption by to the public,41.538,TJ,N2O,3.9,kg/TJ,161.9982,kg -194a3ef8-1f27-3bb5-a7e2-2b2a14a7089f,SESCO,II.1.1,Rio Negro,AR-R,annual,2018,gas oil combustion consumption by to the public,121.905,TJ,CO2,74100.0,kg/TJ,9033160.5,kg -22acaa43-2608-3727-8263-1bfd284d6962,SESCO,II.1.1,Rio Negro,AR-R,annual,2018,gas oil combustion consumption by to the public,121.905,TJ,CH4,3.9,kg/TJ,475.4295,kg -22acaa43-2608-3727-8263-1bfd284d6962,SESCO,II.1.1,Rio Negro,AR-R,annual,2018,gas oil combustion consumption by to the public,121.905,TJ,N2O,3.9,kg/TJ,475.4295,kg -c15492eb-8a99-3988-8165-5710764e1b55,SESCO,II.1.1,Salta,AR-A,annual,2018,gas oil combustion consumption by to the public,9.49956,TJ,CO2,74100.0,kg/TJ,703917.3960000001,kg -d298134d-e490-3b4e-a815-7cc09eeb91d9,SESCO,II.1.1,Salta,AR-A,annual,2018,gas oil combustion consumption by to the public,9.49956,TJ,CH4,3.9,kg/TJ,37.048284,kg -d298134d-e490-3b4e-a815-7cc09eeb91d9,SESCO,II.1.1,Salta,AR-A,annual,2018,gas oil combustion consumption by to the public,9.49956,TJ,N2O,3.9,kg/TJ,37.048284,kg -6c8a1d0c-cb05-3e9a-bb04-1bb90897b970,SESCO,II.1.1,San Juan,AR-J,annual,2018,gas oil combustion consumption by to the public,72.7818,TJ,CO2,74100.0,kg/TJ,5393131.38,kg -f35aa3dc-1991-3d3e-83d0-24851356fefa,SESCO,II.1.1,San Juan,AR-J,annual,2018,gas oil combustion consumption by to the public,72.7818,TJ,CH4,3.9,kg/TJ,283.84902,kg -f35aa3dc-1991-3d3e-83d0-24851356fefa,SESCO,II.1.1,San Juan,AR-J,annual,2018,gas oil combustion consumption by to the public,72.7818,TJ,N2O,3.9,kg/TJ,283.84902,kg -8a3cb5c7-a3b9-3dad-9db4-dc4a47de1a46,SESCO,II.1.1,San Luis,AR-D,annual,2018,gas oil combustion consumption by to the public,124.18056,TJ,CO2,74100.0,kg/TJ,9201779.496,kg -db47e661-7e7e-3fe9-914d-4bc2da0f242f,SESCO,II.1.1,San Luis,AR-D,annual,2018,gas oil combustion consumption by to the public,124.18056,TJ,CH4,3.9,kg/TJ,484.30418399999996,kg -db47e661-7e7e-3fe9-914d-4bc2da0f242f,SESCO,II.1.1,San Luis,AR-D,annual,2018,gas oil combustion consumption by to the public,124.18056,TJ,N2O,3.9,kg/TJ,484.30418399999996,kg -3d248a3a-a0ca-396e-bbaf-e695d53f2c13,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2018,gas oil combustion consumption by to the public,0.18059999999999998,TJ,CO2,74100.0,kg/TJ,13382.46,kg -306a3ed5-391a-3f84-b349-fda58778f506,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2018,gas oil combustion consumption by to the public,0.18059999999999998,TJ,CH4,3.9,kg/TJ,0.70434,kg -306a3ed5-391a-3f84-b349-fda58778f506,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2018,gas oil combustion consumption by to the public,0.18059999999999998,TJ,N2O,3.9,kg/TJ,0.70434,kg -229de79f-546f-3c68-94a0-4d854032ddf6,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,gas oil combustion consumption by to the public,434.84868,TJ,CO2,74100.0,kg/TJ,32222287.188,kg -159c34df-34f3-36e2-ba3e-ecd31e7b9c93,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,gas oil combustion consumption by to the public,434.84868,TJ,CH4,3.9,kg/TJ,1695.909852,kg -159c34df-34f3-36e2-ba3e-ecd31e7b9c93,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,gas oil combustion consumption by to the public,434.84868,TJ,N2O,3.9,kg/TJ,1695.909852,kg -a6a48b65-532d-323a-b57c-6c3ad583ba09,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2018,gas oil combustion consumption by to the public,74.55168,TJ,CO2,74100.0,kg/TJ,5524279.488,kg -33d00875-1eff-385f-9172-043ed1ab1654,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2018,gas oil combustion consumption by to the public,74.55168,TJ,CH4,3.9,kg/TJ,290.751552,kg -33d00875-1eff-385f-9172-043ed1ab1654,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2018,gas oil combustion consumption by to the public,74.55168,TJ,N2O,3.9,kg/TJ,290.751552,kg -61c8f356-6492-309c-9087-aab8ef7ad9eb,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2018,gas oil combustion consumption by to the public,23.58636,TJ,CO2,74100.0,kg/TJ,1747749.2759999998,kg -a7546bae-641c-3b6c-bac1-bcbc4164f944,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2018,gas oil combustion consumption by to the public,23.58636,TJ,CH4,3.9,kg/TJ,91.98680399999999,kg -a7546bae-641c-3b6c-bac1-bcbc4164f944,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2018,gas oil combustion consumption by to the public,23.58636,TJ,N2O,3.9,kg/TJ,91.98680399999999,kg -771f915f-cb04-3cee-b2d2-0cded3cdccae,SESCO,II.1.1,Tucuman,AR-T,annual,2018,gas oil combustion consumption by to the public,11.738999999999999,TJ,CO2,74100.0,kg/TJ,869859.8999999999,kg -f4ed68c5-d028-3ee3-a4d3-0d1d3ce873c9,SESCO,II.1.1,Tucuman,AR-T,annual,2018,gas oil combustion consumption by to the public,11.738999999999999,TJ,CH4,3.9,kg/TJ,45.78209999999999,kg -f4ed68c5-d028-3ee3-a4d3-0d1d3ce873c9,SESCO,II.1.1,Tucuman,AR-T,annual,2018,gas oil combustion consumption by to the public,11.738999999999999,TJ,N2O,3.9,kg/TJ,45.78209999999999,kg -7527a05e-3170-386e-9bbc-a62a7513f6ed,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,gas oil combustion consumption by to the public,890.79144,TJ,CO2,74100.0,kg/TJ,66007645.703999996,kg -344fac12-142d-3f20-8a93-8d7f6926ed05,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,gas oil combustion consumption by to the public,890.79144,TJ,CH4,3.9,kg/TJ,3474.0866159999996,kg -344fac12-142d-3f20-8a93-8d7f6926ed05,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,gas oil combustion consumption by to the public,890.79144,TJ,N2O,3.9,kg/TJ,3474.0866159999996,kg -e9f97f71-1c03-3056-acfb-bd37d0544e75,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,gas oil combustion consumption by to the public,162.68448,TJ,CO2,74100.0,kg/TJ,12054919.968,kg -41aaa052-b28c-3116-8d06-3298a1160352,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,gas oil combustion consumption by to the public,162.68448,TJ,CH4,3.9,kg/TJ,634.469472,kg -41aaa052-b28c-3116-8d06-3298a1160352,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,gas oil combustion consumption by to the public,162.68448,TJ,N2O,3.9,kg/TJ,634.469472,kg -d11d5290-a65b-3a84-a9ab-8305a6db35ad,SESCO,II.1.1,Catamarca,AR-K,annual,2018,gas oil combustion consumption by to the public,48.43692,TJ,CO2,74100.0,kg/TJ,3589175.772,kg -380f9410-1ee3-3340-8fef-8b9bc06f7f25,SESCO,II.1.1,Catamarca,AR-K,annual,2018,gas oil combustion consumption by to the public,48.43692,TJ,CH4,3.9,kg/TJ,188.903988,kg -380f9410-1ee3-3340-8fef-8b9bc06f7f25,SESCO,II.1.1,Catamarca,AR-K,annual,2018,gas oil combustion consumption by to the public,48.43692,TJ,N2O,3.9,kg/TJ,188.903988,kg -4573a2d1-dc48-3bac-98d0-80f723e5de2b,SESCO,II.1.1,Chaco,AR-H,annual,2018,gas oil combustion consumption by to the public,28.3542,TJ,CO2,74100.0,kg/TJ,2101046.2199999997,kg -1bae3f4b-3e06-3166-9d5c-bb51ac325e9a,SESCO,II.1.1,Chaco,AR-H,annual,2018,gas oil combustion consumption by to the public,28.3542,TJ,CH4,3.9,kg/TJ,110.58138,kg -1bae3f4b-3e06-3166-9d5c-bb51ac325e9a,SESCO,II.1.1,Chaco,AR-H,annual,2018,gas oil combustion consumption by to the public,28.3542,TJ,N2O,3.9,kg/TJ,110.58138,kg -b5889f4e-478e-3afc-971e-b01607860da5,SESCO,II.1.1,Chubut,AR-U,annual,2018,gas oil combustion consumption by to the public,42.94668,TJ,CO2,74100.0,kg/TJ,3182348.988,kg -e1d6a881-12fc-36ee-b337-d5bb5606a071,SESCO,II.1.1,Chubut,AR-U,annual,2018,gas oil combustion consumption by to the public,42.94668,TJ,CH4,3.9,kg/TJ,167.492052,kg -e1d6a881-12fc-36ee-b337-d5bb5606a071,SESCO,II.1.1,Chubut,AR-U,annual,2018,gas oil combustion consumption by to the public,42.94668,TJ,N2O,3.9,kg/TJ,167.492052,kg -cfe33863-827f-39ca-8b42-939e5d919e5b,SESCO,II.1.1,Corrientes,AR-W,annual,2018,gas oil combustion consumption by to the public,57.90036,TJ,CO2,74100.0,kg/TJ,4290416.676,kg -1eb33b89-cf68-36d9-9673-9cc26721df2d,SESCO,II.1.1,Corrientes,AR-W,annual,2018,gas oil combustion consumption by to the public,57.90036,TJ,CH4,3.9,kg/TJ,225.81140399999998,kg -1eb33b89-cf68-36d9-9673-9cc26721df2d,SESCO,II.1.1,Corrientes,AR-W,annual,2018,gas oil combustion consumption by to the public,57.90036,TJ,N2O,3.9,kg/TJ,225.81140399999998,kg -47acbef0-0dfe-30be-8c75-3e8aac3a4dfb,SESCO,II.1.1,Córdoba,AR-X,annual,2018,gas oil combustion consumption by to the public,269.38295999999997,TJ,CO2,74100.0,kg/TJ,19961277.336,kg -298ed8fd-8c5e-3ce6-83a4-fe6477096674,SESCO,II.1.1,Córdoba,AR-X,annual,2018,gas oil combustion consumption by to the public,269.38295999999997,TJ,CH4,3.9,kg/TJ,1050.5935439999998,kg -298ed8fd-8c5e-3ce6-83a4-fe6477096674,SESCO,II.1.1,Córdoba,AR-X,annual,2018,gas oil combustion consumption by to the public,269.38295999999997,TJ,N2O,3.9,kg/TJ,1050.5935439999998,kg -9b2ca6c5-30df-3066-b385-e8616400a68e,SESCO,II.1.1,Entre Rios,AR-E,annual,2018,gas oil combustion consumption by to the public,126.49224,TJ,CO2,74100.0,kg/TJ,9373074.984,kg -d3cc141b-2253-3eed-b627-ec2232d03cd8,SESCO,II.1.1,Entre Rios,AR-E,annual,2018,gas oil combustion consumption by to the public,126.49224,TJ,CH4,3.9,kg/TJ,493.319736,kg -d3cc141b-2253-3eed-b627-ec2232d03cd8,SESCO,II.1.1,Entre Rios,AR-E,annual,2018,gas oil combustion consumption by to the public,126.49224,TJ,N2O,3.9,kg/TJ,493.319736,kg -64fffd55-b870-333d-b8f2-64cdf1784458,SESCO,II.1.1,Formosa,AR-P,annual,2018,gas oil combustion consumption by to the public,74.69615999999999,TJ,CO2,74100.0,kg/TJ,5534985.455999999,kg -535658dc-217b-31e1-adc7-2a8dee7a5761,SESCO,II.1.1,Formosa,AR-P,annual,2018,gas oil combustion consumption by to the public,74.69615999999999,TJ,CH4,3.9,kg/TJ,291.31502399999994,kg -535658dc-217b-31e1-adc7-2a8dee7a5761,SESCO,II.1.1,Formosa,AR-P,annual,2018,gas oil combustion consumption by to the public,74.69615999999999,TJ,N2O,3.9,kg/TJ,291.31502399999994,kg -bea07bba-9ef7-302a-9b58-5302ef3ef7f9,SESCO,II.1.1,Jujuy,AR-Y,annual,2018,gas oil combustion consumption by to the public,12.02796,TJ,CO2,74100.0,kg/TJ,891271.836,kg -5e4d141e-7727-30d6-89e5-f9a09db3badb,SESCO,II.1.1,Jujuy,AR-Y,annual,2018,gas oil combustion consumption by to the public,12.02796,TJ,CH4,3.9,kg/TJ,46.909044,kg -5e4d141e-7727-30d6-89e5-f9a09db3badb,SESCO,II.1.1,Jujuy,AR-Y,annual,2018,gas oil combustion consumption by to the public,12.02796,TJ,N2O,3.9,kg/TJ,46.909044,kg -506276db-3c44-339e-986f-5210dcbb65ce,SESCO,II.1.1,La Pampa,AR-L,annual,2018,gas oil combustion consumption by to the public,37.85376,TJ,CO2,74100.0,kg/TJ,2804963.616,kg -697a5bd0-87fc-3d44-8685-30f1923d4601,SESCO,II.1.1,La Pampa,AR-L,annual,2018,gas oil combustion consumption by to the public,37.85376,TJ,CH4,3.9,kg/TJ,147.629664,kg -697a5bd0-87fc-3d44-8685-30f1923d4601,SESCO,II.1.1,La Pampa,AR-L,annual,2018,gas oil combustion consumption by to the public,37.85376,TJ,N2O,3.9,kg/TJ,147.629664,kg -7fdd6b44-ba36-3a80-a925-d5d4a938b177,SESCO,II.1.1,La Rioja,AR-F,annual,2018,gas oil combustion consumption by to the public,20.55228,TJ,CO2,74100.0,kg/TJ,1522923.9479999999,kg -6dbdebdf-b560-325a-a98e-dfd8c434048e,SESCO,II.1.1,La Rioja,AR-F,annual,2018,gas oil combustion consumption by to the public,20.55228,TJ,CH4,3.9,kg/TJ,80.153892,kg -6dbdebdf-b560-325a-a98e-dfd8c434048e,SESCO,II.1.1,La Rioja,AR-F,annual,2018,gas oil combustion consumption by to the public,20.55228,TJ,N2O,3.9,kg/TJ,80.153892,kg -235ada73-53bc-3ab3-a827-175128b14149,SESCO,II.1.1,Mendoza,AR-M,annual,2018,gas oil combustion consumption by to the public,73.143,TJ,CO2,74100.0,kg/TJ,5419896.3,kg -0753ae97-bfc9-37d3-941f-d05a46b298c4,SESCO,II.1.1,Mendoza,AR-M,annual,2018,gas oil combustion consumption by to the public,73.143,TJ,CH4,3.9,kg/TJ,285.2577,kg -0753ae97-bfc9-37d3-941f-d05a46b298c4,SESCO,II.1.1,Mendoza,AR-M,annual,2018,gas oil combustion consumption by to the public,73.143,TJ,N2O,3.9,kg/TJ,285.2577,kg -46ff9b09-b8aa-35d3-a526-440b30568cfd,SESCO,II.1.1,Misiones,AR-N,annual,2018,gas oil combustion consumption by to the public,52.9158,TJ,CO2,74100.0,kg/TJ,3921060.78,kg -430fdc62-64bd-3e2e-8c92-f8951d5d6007,SESCO,II.1.1,Misiones,AR-N,annual,2018,gas oil combustion consumption by to the public,52.9158,TJ,CH4,3.9,kg/TJ,206.37161999999998,kg -430fdc62-64bd-3e2e-8c92-f8951d5d6007,SESCO,II.1.1,Misiones,AR-N,annual,2018,gas oil combustion consumption by to the public,52.9158,TJ,N2O,3.9,kg/TJ,206.37161999999998,kg -4b9bed06-8069-388b-9990-849eb70ffa5d,SESCO,II.1.1,Neuquén,AR-Q,annual,2018,gas oil combustion consumption by to the public,54.93852,TJ,CO2,74100.0,kg/TJ,4070944.332,kg -85ee9605-01f5-3852-b230-21e3a70a54a4,SESCO,II.1.1,Neuquén,AR-Q,annual,2018,gas oil combustion consumption by to the public,54.93852,TJ,CH4,3.9,kg/TJ,214.26022799999998,kg -85ee9605-01f5-3852-b230-21e3a70a54a4,SESCO,II.1.1,Neuquén,AR-Q,annual,2018,gas oil combustion consumption by to the public,54.93852,TJ,N2O,3.9,kg/TJ,214.26022799999998,kg -c0f2a697-df27-3356-8e91-9148aa104590,SESCO,II.1.1,Rio Negro,AR-R,annual,2018,gas oil combustion consumption by to the public,87.69936,TJ,CO2,74100.0,kg/TJ,6498522.576,kg -cd17ad5c-7670-3c26-897f-b102dff4641f,SESCO,II.1.1,Rio Negro,AR-R,annual,2018,gas oil combustion consumption by to the public,87.69936,TJ,CH4,3.9,kg/TJ,342.02750399999996,kg -cd17ad5c-7670-3c26-897f-b102dff4641f,SESCO,II.1.1,Rio Negro,AR-R,annual,2018,gas oil combustion consumption by to the public,87.69936,TJ,N2O,3.9,kg/TJ,342.02750399999996,kg -eadeb139-27bf-3565-9de2-d8c8971f92ec,SESCO,II.1.1,Salta,AR-A,annual,2018,gas oil combustion consumption by to the public,8.81328,TJ,CO2,74100.0,kg/TJ,653064.0480000001,kg -da50f002-c0f8-36ee-b1d0-0d67082980b3,SESCO,II.1.1,Salta,AR-A,annual,2018,gas oil combustion consumption by to the public,8.81328,TJ,CH4,3.9,kg/TJ,34.371792,kg -da50f002-c0f8-36ee-b1d0-0d67082980b3,SESCO,II.1.1,Salta,AR-A,annual,2018,gas oil combustion consumption by to the public,8.81328,TJ,N2O,3.9,kg/TJ,34.371792,kg -3e4dc666-251a-3567-81eb-df28e0088961,SESCO,II.1.1,San Juan,AR-J,annual,2018,gas oil combustion consumption by to the public,25.97028,TJ,CO2,74100.0,kg/TJ,1924397.748,kg -2e5feafe-38f7-38ca-8c4b-4db05ac32a29,SESCO,II.1.1,San Juan,AR-J,annual,2018,gas oil combustion consumption by to the public,25.97028,TJ,CH4,3.9,kg/TJ,101.28409199999999,kg -2e5feafe-38f7-38ca-8c4b-4db05ac32a29,SESCO,II.1.1,San Juan,AR-J,annual,2018,gas oil combustion consumption by to the public,25.97028,TJ,N2O,3.9,kg/TJ,101.28409199999999,kg -f8e774e2-5e3e-3fcb-a0c8-029a0b10d27e,SESCO,II.1.1,San Luis,AR-D,annual,2018,gas oil combustion consumption by to the public,46.45032,TJ,CO2,74100.0,kg/TJ,3441968.712,kg -b459e39a-3b91-3b78-9218-38ecc7cab764,SESCO,II.1.1,San Luis,AR-D,annual,2018,gas oil combustion consumption by to the public,46.45032,TJ,CH4,3.9,kg/TJ,181.15624799999998,kg -b459e39a-3b91-3b78-9218-38ecc7cab764,SESCO,II.1.1,San Luis,AR-D,annual,2018,gas oil combustion consumption by to the public,46.45032,TJ,N2O,3.9,kg/TJ,181.15624799999998,kg -fd42fa56-432a-34b7-9091-c4dc532f1daf,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2018,gas oil combustion consumption by to the public,1.11972,TJ,CO2,74100.0,kg/TJ,82971.25200000001,kg -f65ea153-3d50-33ab-b321-d810aa4e1c92,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2018,gas oil combustion consumption by to the public,1.11972,TJ,CH4,3.9,kg/TJ,4.3669080000000005,kg -f65ea153-3d50-33ab-b321-d810aa4e1c92,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2018,gas oil combustion consumption by to the public,1.11972,TJ,N2O,3.9,kg/TJ,4.3669080000000005,kg -920bfdc1-313a-368c-a880-02bd953125c4,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,gas oil combustion consumption by to the public,216.39491999999998,TJ,CO2,74100.0,kg/TJ,16034863.571999999,kg -2f93a4d3-6855-35cc-a71b-c3e0bc0b8623,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,gas oil combustion consumption by to the public,216.39491999999998,TJ,CH4,3.9,kg/TJ,843.9401879999999,kg -2f93a4d3-6855-35cc-a71b-c3e0bc0b8623,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,gas oil combustion consumption by to the public,216.39491999999998,TJ,N2O,3.9,kg/TJ,843.9401879999999,kg -873a47c8-ea78-3fb3-95ec-4d9d8ae546a1,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2018,gas oil combustion consumption by to the public,48.50916,TJ,CO2,74100.0,kg/TJ,3594528.756,kg -077cf0ce-18ce-3e72-bf5c-76df9b9779d6,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2018,gas oil combustion consumption by to the public,48.50916,TJ,CH4,3.9,kg/TJ,189.185724,kg -077cf0ce-18ce-3e72-bf5c-76df9b9779d6,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2018,gas oil combustion consumption by to the public,48.50916,TJ,N2O,3.9,kg/TJ,189.185724,kg -f7c60885-548a-331c-a8e1-3691fdd04a55,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2018,gas oil combustion consumption by to the public,24.63384,TJ,CO2,74100.0,kg/TJ,1825367.544,kg -e77b9095-f1ec-31cc-b2b6-3f4d9b2e35f7,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2018,gas oil combustion consumption by to the public,24.63384,TJ,CH4,3.9,kg/TJ,96.07197599999999,kg -e77b9095-f1ec-31cc-b2b6-3f4d9b2e35f7,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2018,gas oil combustion consumption by to the public,24.63384,TJ,N2O,3.9,kg/TJ,96.07197599999999,kg -bc9b2b4c-8ad1-356c-b9cd-66c3d57d3b67,SESCO,II.1.1,Tucuman,AR-T,annual,2018,gas oil combustion consumption by to the public,3.86484,TJ,CO2,74100.0,kg/TJ,286384.64400000003,kg -8521e7de-d289-3e36-b169-574a99b37f38,SESCO,II.1.1,Tucuman,AR-T,annual,2018,gas oil combustion consumption by to the public,3.86484,TJ,CH4,3.9,kg/TJ,15.072875999999999,kg -8521e7de-d289-3e36-b169-574a99b37f38,SESCO,II.1.1,Tucuman,AR-T,annual,2018,gas oil combustion consumption by to the public,3.86484,TJ,N2O,3.9,kg/TJ,15.072875999999999,kg -8c1e0ea1-4248-3272-a18b-7750992b1312,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,jet kerosene combustion consumption by to the public,3.2396589999999996,TJ,CO2,71500.0,kg/TJ,231635.61849999998,kg -0c4a1963-c237-32dc-a317-64e891103a6f,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,jet kerosene combustion consumption by to the public,3.2396589999999996,TJ,CH4,0.5,kg/TJ,1.6198294999999998,kg -59d0c51f-9a51-3340-9dbd-390d9c685103,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,jet kerosene combustion consumption by to the public,3.2396589999999996,TJ,N2O,2.0,kg/TJ,6.479317999999999,kg -5dcecfe0-594c-32dc-abbf-479248082f25,SESCO,II.1.1,Córdoba,AR-X,annual,2018,jet kerosene combustion consumption by to the public,0.6919659999999999,TJ,CO2,71500.0,kg/TJ,49475.56899999999,kg -a6dcc6eb-f7d1-36d8-be84-7c073a8aaf4c,SESCO,II.1.1,Córdoba,AR-X,annual,2018,jet kerosene combustion consumption by to the public,0.6919659999999999,TJ,CH4,0.5,kg/TJ,0.34598299999999993,kg -4f494f1f-2bc0-32a6-8579-8e605573e93c,SESCO,II.1.1,Córdoba,AR-X,annual,2018,jet kerosene combustion consumption by to the public,0.6919659999999999,TJ,N2O,2.0,kg/TJ,1.3839319999999997,kg -5bee6964-7626-35ea-bb08-ff6e6f43d15d,SESCO,II.1.1,Entre Rios,AR-E,annual,2018,jet kerosene combustion consumption by to the public,0.31453,TJ,CO2,71500.0,kg/TJ,22488.894999999997,kg -8087ef65-c490-392f-9423-751ecce1f826,SESCO,II.1.1,Entre Rios,AR-E,annual,2018,jet kerosene combustion consumption by to the public,0.31453,TJ,CH4,0.5,kg/TJ,0.157265,kg -78265cbd-9b82-3a51-be1a-7fe5fe67525d,SESCO,II.1.1,Entre Rios,AR-E,annual,2018,jet kerosene combustion consumption by to the public,0.31453,TJ,N2O,2.0,kg/TJ,0.62906,kg -3dd13639-c844-3e0f-9aea-c5142e61ad8f,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,jet kerosene combustion consumption by to the public,0.8177779999999999,TJ,CO2,71500.0,kg/TJ,58471.12699999999,kg -db4bb48b-c730-351c-86fc-b61d91a041c9,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,jet kerosene combustion consumption by to the public,0.8177779999999999,TJ,CH4,0.5,kg/TJ,0.40888899999999995,kg -6c8d7f49-16cb-3d1b-8982-adea718d4ebe,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,jet kerosene combustion consumption by to the public,0.8177779999999999,TJ,N2O,2.0,kg/TJ,1.6355559999999998,kg -1068470e-690c-32df-a951-9a99e115df7a,SESCO,I.3.1,San Luis,AR-D,annual,2018,gas oil combustion consumption by petrochemical industries,3.90096,TJ,CO2,74100.0,kg/TJ,289061.136,kg -40a364c7-e7fd-3d41-becf-6246c3a8bec5,SESCO,I.3.1,San Luis,AR-D,annual,2018,gas oil combustion consumption by petrochemical industries,3.90096,TJ,CH4,3.9,kg/TJ,15.213744,kg -40a364c7-e7fd-3d41-becf-6246c3a8bec5,SESCO,I.3.1,San Luis,AR-D,annual,2018,gas oil combustion consumption by petrochemical industries,3.90096,TJ,N2O,3.9,kg/TJ,15.213744,kg -3f0c2fab-ed26-3a66-b74c-609eb76cf471,SESCO,I.3.1,Capital Federal,AR-C,annual,2018,jet kerosene combustion consumption by petrochemical industries,2.51624,TJ,CO2,71500.0,kg/TJ,179911.15999999997,kg -9f54cebe-1847-3fc8-a477-ba1b9f9842f7,SESCO,I.3.1,Capital Federal,AR-C,annual,2018,jet kerosene combustion consumption by petrochemical industries,2.51624,TJ,CH4,0.5,kg/TJ,1.25812,kg -4bd7b099-9469-3031-9fe9-7c0986963df6,SESCO,I.3.1,Capital Federal,AR-C,annual,2018,jet kerosene combustion consumption by petrochemical industries,2.51624,TJ,N2O,2.0,kg/TJ,5.03248,kg -210f05db-2557-3eb6-819b-53747e0ca3b4,SESCO,II.2.1,Buenos Aires,AR-B,annual,2018,gas oil combustion consumption by railway transport,49.88172,TJ,CO2,74100.0,kg/TJ,3696235.452,kg -418d0c8b-0c54-34ba-bde8-a3e539106fea,SESCO,II.2.1,Buenos Aires,AR-B,annual,2018,gas oil combustion consumption by railway transport,49.88172,TJ,CH4,3.9,kg/TJ,194.538708,kg -418d0c8b-0c54-34ba-bde8-a3e539106fea,SESCO,II.2.1,Buenos Aires,AR-B,annual,2018,gas oil combustion consumption by railway transport,49.88172,TJ,N2O,3.9,kg/TJ,194.538708,kg -359a60e7-d407-3369-b724-b6f444c7bd92,SESCO,II.2.1,La Pampa,AR-L,annual,2018,gas oil combustion consumption by railway transport,15.45936,TJ,CO2,74100.0,kg/TJ,1145538.5760000001,kg -aa62d513-76ed-3dad-8e01-3adf53ce1e6d,SESCO,II.2.1,La Pampa,AR-L,annual,2018,gas oil combustion consumption by railway transport,15.45936,TJ,CH4,3.9,kg/TJ,60.291503999999996,kg -aa62d513-76ed-3dad-8e01-3adf53ce1e6d,SESCO,II.2.1,La Pampa,AR-L,annual,2018,gas oil combustion consumption by railway transport,15.45936,TJ,N2O,3.9,kg/TJ,60.291503999999996,kg -a43a0a72-6cc9-3b19-b460-cc137f8506ce,SESCO,II.2.1,Santa Fe,AR-S,annual,2018,gas oil combustion consumption by railway transport,43.38012,TJ,CO2,74100.0,kg/TJ,3214466.892,kg -35137b53-2e66-3da1-b5da-f1e47bb92f3a,SESCO,II.2.1,Santa Fe,AR-S,annual,2018,gas oil combustion consumption by railway transport,43.38012,TJ,CH4,3.9,kg/TJ,169.182468,kg -35137b53-2e66-3da1-b5da-f1e47bb92f3a,SESCO,II.2.1,Santa Fe,AR-S,annual,2018,gas oil combustion consumption by railway transport,43.38012,TJ,N2O,3.9,kg/TJ,169.182468,kg -8576173b-0107-3a3a-b196-77738a7e13f7,SESCO,II.2.1,Santiago del Estero,AR-G,annual,2018,gas oil combustion consumption by railway transport,1.30032,TJ,CO2,74100.0,kg/TJ,96353.712,kg -68a2e866-5ab4-36e0-b1e5-43a38a2e0b01,SESCO,II.2.1,Santiago del Estero,AR-G,annual,2018,gas oil combustion consumption by railway transport,1.30032,TJ,CH4,3.9,kg/TJ,5.071248,kg -68a2e866-5ab4-36e0-b1e5-43a38a2e0b01,SESCO,II.2.1,Santiago del Estero,AR-G,annual,2018,gas oil combustion consumption by railway transport,1.30032,TJ,N2O,3.9,kg/TJ,5.071248,kg -10a3bc31-90e3-39f4-8bd9-ae771f058037,SESCO,II.2.1,Tucuman,AR-T,annual,2018,gas oil combustion consumption by railway transport,1.30032,TJ,CO2,74100.0,kg/TJ,96353.712,kg -94eba858-4de5-3004-b4d2-78f989756616,SESCO,II.2.1,Tucuman,AR-T,annual,2018,gas oil combustion consumption by railway transport,1.30032,TJ,CH4,3.9,kg/TJ,5.071248,kg -94eba858-4de5-3004-b4d2-78f989756616,SESCO,II.2.1,Tucuman,AR-T,annual,2018,gas oil combustion consumption by railway transport,1.30032,TJ,N2O,3.9,kg/TJ,5.071248,kg -a1b1e343-c9ac-3eca-ad8f-909f8126bf03,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,gas oil combustion consumption by freight transport,764.1186,TJ,CO2,74100.0,kg/TJ,56621188.26,kg -3d6b7169-cb32-319a-bab9-df1ebd2555e1,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,gas oil combustion consumption by freight transport,764.1186,TJ,CH4,3.9,kg/TJ,2980.06254,kg -3d6b7169-cb32-319a-bab9-df1ebd2555e1,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,gas oil combustion consumption by freight transport,764.1186,TJ,N2O,3.9,kg/TJ,2980.06254,kg -48088478-07cb-3213-82de-2aa9aa06ef1d,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,gas oil combustion consumption by freight transport,129.41796,TJ,CO2,74100.0,kg/TJ,9589870.836,kg -c04cace8-8417-3b42-a5bd-bd0d7c28ba08,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,gas oil combustion consumption by freight transport,129.41796,TJ,CH4,3.9,kg/TJ,504.73004399999996,kg -c04cace8-8417-3b42-a5bd-bd0d7c28ba08,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,gas oil combustion consumption by freight transport,129.41796,TJ,N2O,3.9,kg/TJ,504.73004399999996,kg -58881477-82af-3bc6-aa91-f03a3e0c1f55,SESCO,II.1.1,Catamarca,AR-K,annual,2018,gas oil combustion consumption by freight transport,7.0434,TJ,CO2,74100.0,kg/TJ,521915.94,kg -41a791a9-93e3-3d50-87a8-224e50b931a5,SESCO,II.1.1,Catamarca,AR-K,annual,2018,gas oil combustion consumption by freight transport,7.0434,TJ,CH4,3.9,kg/TJ,27.46926,kg -41a791a9-93e3-3d50-87a8-224e50b931a5,SESCO,II.1.1,Catamarca,AR-K,annual,2018,gas oil combustion consumption by freight transport,7.0434,TJ,N2O,3.9,kg/TJ,27.46926,kg -f3d16c6b-42ef-35c3-a11a-d42057b397ce,SESCO,II.1.1,Chaco,AR-H,annual,2018,gas oil combustion consumption by freight transport,7.07952,TJ,CO2,74100.0,kg/TJ,524592.4319999999,kg -d15d1b78-bad9-39ef-b702-36a8512f373e,SESCO,II.1.1,Chaco,AR-H,annual,2018,gas oil combustion consumption by freight transport,7.07952,TJ,CH4,3.9,kg/TJ,27.610127999999996,kg -d15d1b78-bad9-39ef-b702-36a8512f373e,SESCO,II.1.1,Chaco,AR-H,annual,2018,gas oil combustion consumption by freight transport,7.07952,TJ,N2O,3.9,kg/TJ,27.610127999999996,kg -a6bdae9c-0338-3385-b009-795ad3e7c7b3,SESCO,II.1.1,Chubut,AR-U,annual,2018,gas oil combustion consumption by freight transport,5.20128,TJ,CO2,74100.0,kg/TJ,385414.848,kg -17b8a06e-4590-3546-b21f-0663966d8213,SESCO,II.1.1,Chubut,AR-U,annual,2018,gas oil combustion consumption by freight transport,5.20128,TJ,CH4,3.9,kg/TJ,20.284992,kg -17b8a06e-4590-3546-b21f-0663966d8213,SESCO,II.1.1,Chubut,AR-U,annual,2018,gas oil combustion consumption by freight transport,5.20128,TJ,N2O,3.9,kg/TJ,20.284992,kg -16d6b23b-4a7c-3591-adf7-9a9d4a953f16,SESCO,II.1.1,Corrientes,AR-W,annual,2018,gas oil combustion consumption by freight transport,12.17244,TJ,CO2,74100.0,kg/TJ,901977.804,kg -742b44cd-e3c3-3965-a4d9-92687c250313,SESCO,II.1.1,Corrientes,AR-W,annual,2018,gas oil combustion consumption by freight transport,12.17244,TJ,CH4,3.9,kg/TJ,47.472516,kg -742b44cd-e3c3-3965-a4d9-92687c250313,SESCO,II.1.1,Corrientes,AR-W,annual,2018,gas oil combustion consumption by freight transport,12.17244,TJ,N2O,3.9,kg/TJ,47.472516,kg -b4df9389-31c3-39bb-a3b0-b3d9f9658d86,SESCO,II.1.1,Córdoba,AR-X,annual,2018,gas oil combustion consumption by freight transport,145.2024,TJ,CO2,74100.0,kg/TJ,10759497.840000002,kg -8223af5d-f200-36da-bcfc-29fe76156c21,SESCO,II.1.1,Córdoba,AR-X,annual,2018,gas oil combustion consumption by freight transport,145.2024,TJ,CH4,3.9,kg/TJ,566.28936,kg -8223af5d-f200-36da-bcfc-29fe76156c21,SESCO,II.1.1,Córdoba,AR-X,annual,2018,gas oil combustion consumption by freight transport,145.2024,TJ,N2O,3.9,kg/TJ,566.28936,kg -9ffdbce4-5d1e-3c81-b99a-96946aea78fb,SESCO,II.1.1,Entre Rios,AR-E,annual,2018,gas oil combustion consumption by freight transport,83.83452,TJ,CO2,74100.0,kg/TJ,6212137.932,kg -0ad76807-bdf8-3ca5-b361-661691cf3707,SESCO,II.1.1,Entre Rios,AR-E,annual,2018,gas oil combustion consumption by freight transport,83.83452,TJ,CH4,3.9,kg/TJ,326.95462799999996,kg -0ad76807-bdf8-3ca5-b361-661691cf3707,SESCO,II.1.1,Entre Rios,AR-E,annual,2018,gas oil combustion consumption by freight transport,83.83452,TJ,N2O,3.9,kg/TJ,326.95462799999996,kg -229ea2ac-e6fb-3a34-a824-5dcb870118f8,SESCO,II.1.1,Formosa,AR-P,annual,2018,gas oil combustion consumption by freight transport,1.6254,TJ,CO2,74100.0,kg/TJ,120442.14,kg -c9dfe182-f1c1-3250-b6cf-dbc0568adac4,SESCO,II.1.1,Formosa,AR-P,annual,2018,gas oil combustion consumption by freight transport,1.6254,TJ,CH4,3.9,kg/TJ,6.33906,kg -c9dfe182-f1c1-3250-b6cf-dbc0568adac4,SESCO,II.1.1,Formosa,AR-P,annual,2018,gas oil combustion consumption by freight transport,1.6254,TJ,N2O,3.9,kg/TJ,6.33906,kg -8bbe05e4-01ff-3622-91b0-f374a0892866,SESCO,II.1.1,Jujuy,AR-Y,annual,2018,gas oil combustion consumption by freight transport,1.58928,TJ,CO2,74100.0,kg/TJ,117765.648,kg -bda43028-c56c-3c33-ba2b-5161dc6cf374,SESCO,II.1.1,Jujuy,AR-Y,annual,2018,gas oil combustion consumption by freight transport,1.58928,TJ,CH4,3.9,kg/TJ,6.198192,kg -bda43028-c56c-3c33-ba2b-5161dc6cf374,SESCO,II.1.1,Jujuy,AR-Y,annual,2018,gas oil combustion consumption by freight transport,1.58928,TJ,N2O,3.9,kg/TJ,6.198192,kg -0a494c27-a079-3cfb-93d9-ccc1106a2fdb,SESCO,II.1.1,La Pampa,AR-L,annual,2018,gas oil combustion consumption by freight transport,3.86484,TJ,CO2,74100.0,kg/TJ,286384.64400000003,kg -895be83c-8205-399f-b314-6dffdddbdb03,SESCO,II.1.1,La Pampa,AR-L,annual,2018,gas oil combustion consumption by freight transport,3.86484,TJ,CH4,3.9,kg/TJ,15.072875999999999,kg -895be83c-8205-399f-b314-6dffdddbdb03,SESCO,II.1.1,La Pampa,AR-L,annual,2018,gas oil combustion consumption by freight transport,3.86484,TJ,N2O,3.9,kg/TJ,15.072875999999999,kg -c6b7eb5d-0966-337f-a456-944f6e7dbbcd,SESCO,II.1.1,La Rioja,AR-F,annual,2018,gas oil combustion consumption by freight transport,1.5531599999999999,TJ,CO2,74100.0,kg/TJ,115089.15599999999,kg -95efcec2-a892-3636-813f-edc556a136ff,SESCO,II.1.1,La Rioja,AR-F,annual,2018,gas oil combustion consumption by freight transport,1.5531599999999999,TJ,CH4,3.9,kg/TJ,6.0573239999999995,kg -95efcec2-a892-3636-813f-edc556a136ff,SESCO,II.1.1,La Rioja,AR-F,annual,2018,gas oil combustion consumption by freight transport,1.5531599999999999,TJ,N2O,3.9,kg/TJ,6.0573239999999995,kg -620ffbc6-67c2-38d7-9d16-793178bd88e9,SESCO,II.1.1,Mendoza,AR-M,annual,2018,gas oil combustion consumption by freight transport,14.05068,TJ,CO2,74100.0,kg/TJ,1041155.388,kg -faa62325-a6a1-3dfe-b079-bb14b23594d2,SESCO,II.1.1,Mendoza,AR-M,annual,2018,gas oil combustion consumption by freight transport,14.05068,TJ,CH4,3.9,kg/TJ,54.797652,kg -faa62325-a6a1-3dfe-b079-bb14b23594d2,SESCO,II.1.1,Mendoza,AR-M,annual,2018,gas oil combustion consumption by freight transport,14.05068,TJ,N2O,3.9,kg/TJ,54.797652,kg -658837f7-48d2-33ec-886a-b0dcb5eae512,SESCO,II.1.1,Misiones,AR-N,annual,2018,gas oil combustion consumption by freight transport,18.71016,TJ,CO2,74100.0,kg/TJ,1386422.856,kg -cfd9735f-502d-3977-b589-56f0c7fb85eb,SESCO,II.1.1,Misiones,AR-N,annual,2018,gas oil combustion consumption by freight transport,18.71016,TJ,CH4,3.9,kg/TJ,72.969624,kg -cfd9735f-502d-3977-b589-56f0c7fb85eb,SESCO,II.1.1,Misiones,AR-N,annual,2018,gas oil combustion consumption by freight transport,18.71016,TJ,N2O,3.9,kg/TJ,72.969624,kg -e30631ac-6337-3a36-99d2-d9263d87d364,SESCO,II.1.1,Neuquén,AR-Q,annual,2018,gas oil combustion consumption by freight transport,0.18059999999999998,TJ,CO2,74100.0,kg/TJ,13382.46,kg -f824b395-8ea3-337f-a5fe-790ab36c3acf,SESCO,II.1.1,Neuquén,AR-Q,annual,2018,gas oil combustion consumption by freight transport,0.18059999999999998,TJ,CH4,3.9,kg/TJ,0.70434,kg -f824b395-8ea3-337f-a5fe-790ab36c3acf,SESCO,II.1.1,Neuquén,AR-Q,annual,2018,gas oil combustion consumption by freight transport,0.18059999999999998,TJ,N2O,3.9,kg/TJ,0.70434,kg -6259ebb4-3763-351d-b42d-4fbef6b4bc11,SESCO,II.1.1,Rio Negro,AR-R,annual,2018,gas oil combustion consumption by freight transport,28.42644,TJ,CO2,74100.0,kg/TJ,2106399.204,kg -2802ce3f-0c3a-3ca7-89c5-16dc220ae8d6,SESCO,II.1.1,Rio Negro,AR-R,annual,2018,gas oil combustion consumption by freight transport,28.42644,TJ,CH4,3.9,kg/TJ,110.86311599999999,kg -2802ce3f-0c3a-3ca7-89c5-16dc220ae8d6,SESCO,II.1.1,Rio Negro,AR-R,annual,2018,gas oil combustion consumption by freight transport,28.42644,TJ,N2O,3.9,kg/TJ,110.86311599999999,kg -9dd3dc4b-84d9-37fb-9240-89de74d5cbee,SESCO,II.1.1,Salta,AR-A,annual,2018,gas oil combustion consumption by freight transport,11.34168,TJ,CO2,74100.0,kg/TJ,840418.488,kg -3fab6c58-2f88-3be7-a47c-789d7fe2bcbc,SESCO,II.1.1,Salta,AR-A,annual,2018,gas oil combustion consumption by freight transport,11.34168,TJ,CH4,3.9,kg/TJ,44.232552,kg -3fab6c58-2f88-3be7-a47c-789d7fe2bcbc,SESCO,II.1.1,Salta,AR-A,annual,2018,gas oil combustion consumption by freight transport,11.34168,TJ,N2O,3.9,kg/TJ,44.232552,kg -ad6917f5-9f90-3146-b019-43ae7b59613f,SESCO,II.1.1,San Juan,AR-J,annual,2018,gas oil combustion consumption by freight transport,2.31168,TJ,CO2,74100.0,kg/TJ,171295.48799999998,kg -a1034353-5c1b-35a7-a446-99d91434a8d7,SESCO,II.1.1,San Juan,AR-J,annual,2018,gas oil combustion consumption by freight transport,2.31168,TJ,CH4,3.9,kg/TJ,9.015552,kg -a1034353-5c1b-35a7-a446-99d91434a8d7,SESCO,II.1.1,San Juan,AR-J,annual,2018,gas oil combustion consumption by freight transport,2.31168,TJ,N2O,3.9,kg/TJ,9.015552,kg -688e90e9-874e-360b-a08b-102a093ed518,SESCO,II.1.1,San Luis,AR-D,annual,2018,gas oil combustion consumption by freight transport,15.24264,TJ,CO2,74100.0,kg/TJ,1129479.624,kg -b74cd50f-5f9f-3f67-afae-8e7845777291,SESCO,II.1.1,San Luis,AR-D,annual,2018,gas oil combustion consumption by freight transport,15.24264,TJ,CH4,3.9,kg/TJ,59.446296,kg -b74cd50f-5f9f-3f67-afae-8e7845777291,SESCO,II.1.1,San Luis,AR-D,annual,2018,gas oil combustion consumption by freight transport,15.24264,TJ,N2O,3.9,kg/TJ,59.446296,kg -5f970834-9755-38cf-b0f4-64bcd89f5af5,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,gas oil combustion consumption by freight transport,187.49892,TJ,CO2,74100.0,kg/TJ,13893669.972,kg -9d2884db-be7f-38e8-a946-4c1893403547,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,gas oil combustion consumption by freight transport,187.49892,TJ,CH4,3.9,kg/TJ,731.245788,kg -9d2884db-be7f-38e8-a946-4c1893403547,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,gas oil combustion consumption by freight transport,187.49892,TJ,N2O,3.9,kg/TJ,731.245788,kg -bbe42665-82e3-3ea6-9a12-3b3138399940,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2018,gas oil combustion consumption by freight transport,12.31692,TJ,CO2,74100.0,kg/TJ,912683.772,kg -217057de-b12a-3530-8e35-7945c2cb1c75,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2018,gas oil combustion consumption by freight transport,12.31692,TJ,CH4,3.9,kg/TJ,48.035987999999996,kg -217057de-b12a-3530-8e35-7945c2cb1c75,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2018,gas oil combustion consumption by freight transport,12.31692,TJ,N2O,3.9,kg/TJ,48.035987999999996,kg -767c2e44-8146-3aae-830c-229491064951,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2018,gas oil combustion consumption by freight transport,0.03612,TJ,CO2,74100.0,kg/TJ,2676.4919999999997,kg -a8914733-0b94-3d52-b39a-ea4e29ecfc53,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2018,gas oil combustion consumption by freight transport,0.03612,TJ,CH4,3.9,kg/TJ,0.140868,kg -a8914733-0b94-3d52-b39a-ea4e29ecfc53,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2018,gas oil combustion consumption by freight transport,0.03612,TJ,N2O,3.9,kg/TJ,0.140868,kg -fb7105e5-abdd-35a9-8c93-11ebf7a0f5a8,SESCO,II.1.1,Tucuman,AR-T,annual,2018,gas oil combustion consumption by freight transport,10.51092,TJ,CO2,74100.0,kg/TJ,778859.172,kg -4a41fa51-34ce-30b6-82e7-0819a0af5e75,SESCO,II.1.1,Tucuman,AR-T,annual,2018,gas oil combustion consumption by freight transport,10.51092,TJ,CH4,3.9,kg/TJ,40.992588,kg -4a41fa51-34ce-30b6-82e7-0819a0af5e75,SESCO,II.1.1,Tucuman,AR-T,annual,2018,gas oil combustion consumption by freight transport,10.51092,TJ,N2O,3.9,kg/TJ,40.992588,kg -e4ee4c7d-78fb-384a-973c-74a45367f27b,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,gas oil combustion consumption by freight transport,78.77772,TJ,CO2,74100.0,kg/TJ,5837429.052,kg -86f5e72e-1c5a-35de-a762-ffd8ec62c0af,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,gas oil combustion consumption by freight transport,78.77772,TJ,CH4,3.9,kg/TJ,307.233108,kg -86f5e72e-1c5a-35de-a762-ffd8ec62c0af,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,gas oil combustion consumption by freight transport,78.77772,TJ,N2O,3.9,kg/TJ,307.233108,kg -5b2d1c43-cbee-3430-b9f4-f811236e4464,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,gas oil combustion consumption by freight transport,22.9362,TJ,CO2,74100.0,kg/TJ,1699572.42,kg -25b8c0f4-775a-3555-a0c8-eaeac3cbc465,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,gas oil combustion consumption by freight transport,22.9362,TJ,CH4,3.9,kg/TJ,89.45118,kg -25b8c0f4-775a-3555-a0c8-eaeac3cbc465,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,gas oil combustion consumption by freight transport,22.9362,TJ,N2O,3.9,kg/TJ,89.45118,kg -dde2bc20-2d66-3919-8f37-0f9a02485b8f,SESCO,II.1.1,Catamarca,AR-K,annual,2018,gas oil combustion consumption by freight transport,0.18059999999999998,TJ,CO2,74100.0,kg/TJ,13382.46,kg -6c8a7c1e-8bc4-3ad4-a8fe-63372738898f,SESCO,II.1.1,Catamarca,AR-K,annual,2018,gas oil combustion consumption by freight transport,0.18059999999999998,TJ,CH4,3.9,kg/TJ,0.70434,kg -6c8a7c1e-8bc4-3ad4-a8fe-63372738898f,SESCO,II.1.1,Catamarca,AR-K,annual,2018,gas oil combustion consumption by freight transport,0.18059999999999998,TJ,N2O,3.9,kg/TJ,0.70434,kg -9fec9256-e6de-33a3-9299-24c0d9147558,SESCO,II.1.1,Chaco,AR-H,annual,2018,gas oil combustion consumption by freight transport,0.07224,TJ,CO2,74100.0,kg/TJ,5352.9839999999995,kg -7479c1e2-0224-32cb-aa47-6eb9710dd581,SESCO,II.1.1,Chaco,AR-H,annual,2018,gas oil combustion consumption by freight transport,0.07224,TJ,CH4,3.9,kg/TJ,0.281736,kg -7479c1e2-0224-32cb-aa47-6eb9710dd581,SESCO,II.1.1,Chaco,AR-H,annual,2018,gas oil combustion consumption by freight transport,0.07224,TJ,N2O,3.9,kg/TJ,0.281736,kg -dbc1b242-10fd-34d2-817e-c3e09da91ad3,SESCO,II.1.1,Chubut,AR-U,annual,2018,gas oil combustion consumption by freight transport,0.61404,TJ,CO2,74100.0,kg/TJ,45500.364,kg -031f9293-7ff4-3363-8445-ea2f5c31dad3,SESCO,II.1.1,Chubut,AR-U,annual,2018,gas oil combustion consumption by freight transport,0.61404,TJ,CH4,3.9,kg/TJ,2.394756,kg -031f9293-7ff4-3363-8445-ea2f5c31dad3,SESCO,II.1.1,Chubut,AR-U,annual,2018,gas oil combustion consumption by freight transport,0.61404,TJ,N2O,3.9,kg/TJ,2.394756,kg -4dfe56d8-4542-3af8-b0f2-4266bc96857b,SESCO,II.1.1,Corrientes,AR-W,annual,2018,gas oil combustion consumption by freight transport,1.22808,TJ,CO2,74100.0,kg/TJ,91000.728,kg -095ff872-3b63-3c3a-a920-8c49bbe96308,SESCO,II.1.1,Corrientes,AR-W,annual,2018,gas oil combustion consumption by freight transport,1.22808,TJ,CH4,3.9,kg/TJ,4.789512,kg -095ff872-3b63-3c3a-a920-8c49bbe96308,SESCO,II.1.1,Corrientes,AR-W,annual,2018,gas oil combustion consumption by freight transport,1.22808,TJ,N2O,3.9,kg/TJ,4.789512,kg -0a54095a-323e-328e-ab47-bbc914e4cc1f,SESCO,II.1.1,Córdoba,AR-X,annual,2018,gas oil combustion consumption by freight transport,6.42936,TJ,CO2,74100.0,kg/TJ,476415.576,kg -0c2973c8-ada2-3f6e-bec3-7f1faed852c9,SESCO,II.1.1,Córdoba,AR-X,annual,2018,gas oil combustion consumption by freight transport,6.42936,TJ,CH4,3.9,kg/TJ,25.074504,kg -0c2973c8-ada2-3f6e-bec3-7f1faed852c9,SESCO,II.1.1,Córdoba,AR-X,annual,2018,gas oil combustion consumption by freight transport,6.42936,TJ,N2O,3.9,kg/TJ,25.074504,kg -aee36da4-942f-3cd6-96f3-2007c6714a4a,SESCO,II.1.1,Entre Rios,AR-E,annual,2018,gas oil combustion consumption by freight transport,2.85348,TJ,CO2,74100.0,kg/TJ,211442.868,kg -0ca0c03e-5ef7-3fc2-aeac-ff5ee9a3a5fe,SESCO,II.1.1,Entre Rios,AR-E,annual,2018,gas oil combustion consumption by freight transport,2.85348,TJ,CH4,3.9,kg/TJ,11.128571999999998,kg -0ca0c03e-5ef7-3fc2-aeac-ff5ee9a3a5fe,SESCO,II.1.1,Entre Rios,AR-E,annual,2018,gas oil combustion consumption by freight transport,2.85348,TJ,N2O,3.9,kg/TJ,11.128571999999998,kg -3266a5f0-7e94-35e3-a244-85b6bdee65bf,SESCO,II.1.1,Formosa,AR-P,annual,2018,gas oil combustion consumption by freight transport,0.14448,TJ,CO2,74100.0,kg/TJ,10705.967999999999,kg -b850ec85-6d63-361b-a71b-bd582ee6fb00,SESCO,II.1.1,Formosa,AR-P,annual,2018,gas oil combustion consumption by freight transport,0.14448,TJ,CH4,3.9,kg/TJ,0.563472,kg -b850ec85-6d63-361b-a71b-bd582ee6fb00,SESCO,II.1.1,Formosa,AR-P,annual,2018,gas oil combustion consumption by freight transport,0.14448,TJ,N2O,3.9,kg/TJ,0.563472,kg -5ba0f049-0653-35a9-8d48-7459ba7d4c3d,SESCO,II.1.1,La Pampa,AR-L,annual,2018,gas oil combustion consumption by freight transport,0.28896,TJ,CO2,74100.0,kg/TJ,21411.935999999998,kg -5dc698ce-7188-38fe-8b00-db5ec8b4c379,SESCO,II.1.1,La Pampa,AR-L,annual,2018,gas oil combustion consumption by freight transport,0.28896,TJ,CH4,3.9,kg/TJ,1.126944,kg -5dc698ce-7188-38fe-8b00-db5ec8b4c379,SESCO,II.1.1,La Pampa,AR-L,annual,2018,gas oil combustion consumption by freight transport,0.28896,TJ,N2O,3.9,kg/TJ,1.126944,kg -f5e747bb-eea1-3d84-9913-63025b9d770a,SESCO,II.1.1,La Rioja,AR-F,annual,2018,gas oil combustion consumption by freight transport,0.03612,TJ,CO2,74100.0,kg/TJ,2676.4919999999997,kg -f389654d-6500-34da-9fe1-077ab51887a6,SESCO,II.1.1,La Rioja,AR-F,annual,2018,gas oil combustion consumption by freight transport,0.03612,TJ,CH4,3.9,kg/TJ,0.140868,kg -f389654d-6500-34da-9fe1-077ab51887a6,SESCO,II.1.1,La Rioja,AR-F,annual,2018,gas oil combustion consumption by freight transport,0.03612,TJ,N2O,3.9,kg/TJ,0.140868,kg -be8e310f-e204-3186-8102-6945f1d140dc,SESCO,II.1.1,Mendoza,AR-M,annual,2018,gas oil combustion consumption by freight transport,0.32508,TJ,CO2,74100.0,kg/TJ,24088.428,kg -ae41c496-c38b-3bb8-9e48-da8c8c8747ea,SESCO,II.1.1,Mendoza,AR-M,annual,2018,gas oil combustion consumption by freight transport,0.32508,TJ,CH4,3.9,kg/TJ,1.267812,kg -ae41c496-c38b-3bb8-9e48-da8c8c8747ea,SESCO,II.1.1,Mendoza,AR-M,annual,2018,gas oil combustion consumption by freight transport,0.32508,TJ,N2O,3.9,kg/TJ,1.267812,kg -d392ec4a-5f39-38cb-96e6-a335883abcda,SESCO,II.1.1,Misiones,AR-N,annual,2018,gas oil combustion consumption by freight transport,0.18059999999999998,TJ,CO2,74100.0,kg/TJ,13382.46,kg -d3d01c5c-38e0-3811-b330-8032f91f2e54,SESCO,II.1.1,Misiones,AR-N,annual,2018,gas oil combustion consumption by freight transport,0.18059999999999998,TJ,CH4,3.9,kg/TJ,0.70434,kg -d3d01c5c-38e0-3811-b330-8032f91f2e54,SESCO,II.1.1,Misiones,AR-N,annual,2018,gas oil combustion consumption by freight transport,0.18059999999999998,TJ,N2O,3.9,kg/TJ,0.70434,kg -72f79e4f-cc41-3c96-90ab-f636da9fd693,SESCO,II.1.1,Neuquén,AR-Q,annual,2018,gas oil combustion consumption by freight transport,0.03612,TJ,CO2,74100.0,kg/TJ,2676.4919999999997,kg -a2c1117f-32e8-359f-bc8f-87f84ddd7b5b,SESCO,II.1.1,Neuquén,AR-Q,annual,2018,gas oil combustion consumption by freight transport,0.03612,TJ,CH4,3.9,kg/TJ,0.140868,kg -a2c1117f-32e8-359f-bc8f-87f84ddd7b5b,SESCO,II.1.1,Neuquén,AR-Q,annual,2018,gas oil combustion consumption by freight transport,0.03612,TJ,N2O,3.9,kg/TJ,0.140868,kg -ecf942b6-0681-373f-b96a-bef6b9083540,SESCO,II.1.1,Rio Negro,AR-R,annual,2018,gas oil combustion consumption by freight transport,12.8226,TJ,CO2,74100.0,kg/TJ,950154.6599999999,kg -121881c6-2e39-346e-ae14-7693800d2756,SESCO,II.1.1,Rio Negro,AR-R,annual,2018,gas oil combustion consumption by freight transport,12.8226,TJ,CH4,3.9,kg/TJ,50.00814,kg -121881c6-2e39-346e-ae14-7693800d2756,SESCO,II.1.1,Rio Negro,AR-R,annual,2018,gas oil combustion consumption by freight transport,12.8226,TJ,N2O,3.9,kg/TJ,50.00814,kg -53ee0eef-d411-34c8-b139-89b5187ff052,SESCO,II.1.1,Salta,AR-A,annual,2018,gas oil combustion consumption by freight transport,0.03612,TJ,CO2,74100.0,kg/TJ,2676.4919999999997,kg -79a9c050-79d6-37f1-9982-1fee1612bbcb,SESCO,II.1.1,Salta,AR-A,annual,2018,gas oil combustion consumption by freight transport,0.03612,TJ,CH4,3.9,kg/TJ,0.140868,kg -79a9c050-79d6-37f1-9982-1fee1612bbcb,SESCO,II.1.1,Salta,AR-A,annual,2018,gas oil combustion consumption by freight transport,0.03612,TJ,N2O,3.9,kg/TJ,0.140868,kg -18d7dce6-946d-3483-82e0-5a34ed632c64,SESCO,II.1.1,San Juan,AR-J,annual,2018,gas oil combustion consumption by freight transport,0.32508,TJ,CO2,74100.0,kg/TJ,24088.428,kg -e4c8f839-6da9-348e-bf41-4894afb33e34,SESCO,II.1.1,San Juan,AR-J,annual,2018,gas oil combustion consumption by freight transport,0.32508,TJ,CH4,3.9,kg/TJ,1.267812,kg -e4c8f839-6da9-348e-bf41-4894afb33e34,SESCO,II.1.1,San Juan,AR-J,annual,2018,gas oil combustion consumption by freight transport,0.32508,TJ,N2O,3.9,kg/TJ,1.267812,kg -2360e819-0bcd-3ad8-a72a-b02e983a3688,SESCO,II.1.1,San Luis,AR-D,annual,2018,gas oil combustion consumption by freight transport,0.46956,TJ,CO2,74100.0,kg/TJ,34794.396,kg -c6eeb74a-ac58-3854-8e49-e915c07cbd94,SESCO,II.1.1,San Luis,AR-D,annual,2018,gas oil combustion consumption by freight transport,0.46956,TJ,CH4,3.9,kg/TJ,1.831284,kg -c6eeb74a-ac58-3854-8e49-e915c07cbd94,SESCO,II.1.1,San Luis,AR-D,annual,2018,gas oil combustion consumption by freight transport,0.46956,TJ,N2O,3.9,kg/TJ,1.831284,kg -be97a2b0-7ec3-3805-859f-dd317e7dc93c,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,gas oil combustion consumption by freight transport,50.026199999999996,TJ,CO2,74100.0,kg/TJ,3706941.4199999995,kg -ee52d6be-49bf-3070-95f3-cb774b422600,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,gas oil combustion consumption by freight transport,50.026199999999996,TJ,CH4,3.9,kg/TJ,195.10217999999998,kg -ee52d6be-49bf-3070-95f3-cb774b422600,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,gas oil combustion consumption by freight transport,50.026199999999996,TJ,N2O,3.9,kg/TJ,195.10217999999998,kg -395d08a8-f1e6-34fb-a86f-458c9f5d5ff0,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2018,gas oil combustion consumption by freight transport,1.01136,TJ,CO2,74100.0,kg/TJ,74941.776,kg -71e54b13-f611-3002-a968-277422bea047,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2018,gas oil combustion consumption by freight transport,1.01136,TJ,CH4,3.9,kg/TJ,3.9443040000000003,kg -71e54b13-f611-3002-a968-277422bea047,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2018,gas oil combustion consumption by freight transport,1.01136,TJ,N2O,3.9,kg/TJ,3.9443040000000003,kg -9538ea72-cb1a-31e8-a3c1-d6e09531b470,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2018,gas oil combustion consumption by freight transport,0.07224,TJ,CO2,74100.0,kg/TJ,5352.9839999999995,kg -bac7c95d-2ce8-3ad1-87f4-8e0804123eab,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2018,gas oil combustion consumption by freight transport,0.07224,TJ,CH4,3.9,kg/TJ,0.281736,kg -bac7c95d-2ce8-3ad1-87f4-8e0804123eab,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2018,gas oil combustion consumption by freight transport,0.07224,TJ,N2O,3.9,kg/TJ,0.281736,kg -f0415f61-a3cc-3da0-bad0-c1fc1f561c41,SESCO,II.1.1,Tucuman,AR-T,annual,2018,gas oil combustion consumption by freight transport,0.10836,TJ,CO2,74100.0,kg/TJ,8029.476,kg -5a8be346-8e85-32df-b000-79159c5b6842,SESCO,II.1.1,Tucuman,AR-T,annual,2018,gas oil combustion consumption by freight transport,0.10836,TJ,CH4,3.9,kg/TJ,0.422604,kg -5a8be346-8e85-32df-b000-79159c5b6842,SESCO,II.1.1,Tucuman,AR-T,annual,2018,gas oil combustion consumption by freight transport,0.10836,TJ,N2O,3.9,kg/TJ,0.422604,kg -debdcfe2-08a8-3e10-abac-a2580c5bbf6b,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,gas oil combustion consumption by public passenger transport,244.74912,TJ,CO2,74100.0,kg/TJ,18135909.792,kg -df232c0e-8f8a-3aed-9808-8519a095eb05,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,gas oil combustion consumption by public passenger transport,244.74912,TJ,CH4,3.9,kg/TJ,954.521568,kg -df232c0e-8f8a-3aed-9808-8519a095eb05,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,gas oil combustion consumption by public passenger transport,244.74912,TJ,N2O,3.9,kg/TJ,954.521568,kg -2e1d5bd2-1097-3192-bc39-fa732e2186bd,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,gas oil combustion consumption by public passenger transport,126.70896,TJ,CO2,74100.0,kg/TJ,9389133.936,kg -c5708678-ef15-3807-8936-b4e8d4bb16b3,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,gas oil combustion consumption by public passenger transport,126.70896,TJ,CH4,3.9,kg/TJ,494.164944,kg -c5708678-ef15-3807-8936-b4e8d4bb16b3,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,gas oil combustion consumption by public passenger transport,126.70896,TJ,N2O,3.9,kg/TJ,494.164944,kg -2caad93c-1601-3750-aada-d58a6cf14cd4,SESCO,II.1.1,Chaco,AR-H,annual,2018,gas oil combustion consumption by public passenger transport,8.16312,TJ,CO2,74100.0,kg/TJ,604887.1919999999,kg -560da30b-0e33-33d6-b718-1e8da4a27e84,SESCO,II.1.1,Chaco,AR-H,annual,2018,gas oil combustion consumption by public passenger transport,8.16312,TJ,CH4,3.9,kg/TJ,31.836167999999997,kg -560da30b-0e33-33d6-b718-1e8da4a27e84,SESCO,II.1.1,Chaco,AR-H,annual,2018,gas oil combustion consumption by public passenger transport,8.16312,TJ,N2O,3.9,kg/TJ,31.836167999999997,kg -c6c241ed-a5c2-39f7-8fdb-840215b1d1a7,SESCO,II.1.1,Chubut,AR-U,annual,2018,gas oil combustion consumption by public passenger transport,6.24876,TJ,CO2,74100.0,kg/TJ,463033.116,kg -d2dee2c1-f023-3369-af2e-3ed87c125bd8,SESCO,II.1.1,Chubut,AR-U,annual,2018,gas oil combustion consumption by public passenger transport,6.24876,TJ,CH4,3.9,kg/TJ,24.370164,kg -d2dee2c1-f023-3369-af2e-3ed87c125bd8,SESCO,II.1.1,Chubut,AR-U,annual,2018,gas oil combustion consumption by public passenger transport,6.24876,TJ,N2O,3.9,kg/TJ,24.370164,kg -cb5f3107-29ae-345a-87c8-ead06de6f3a1,SESCO,II.1.1,Corrientes,AR-W,annual,2018,gas oil combustion consumption by public passenger transport,0.39732,TJ,CO2,74100.0,kg/TJ,29441.412,kg -ce536de0-e32d-3279-afe4-6a9a9bff6bf3,SESCO,II.1.1,Corrientes,AR-W,annual,2018,gas oil combustion consumption by public passenger transport,0.39732,TJ,CH4,3.9,kg/TJ,1.549548,kg -ce536de0-e32d-3279-afe4-6a9a9bff6bf3,SESCO,II.1.1,Corrientes,AR-W,annual,2018,gas oil combustion consumption by public passenger transport,0.39732,TJ,N2O,3.9,kg/TJ,1.549548,kg -f4f63ae2-709b-3748-a479-69d215cbda2a,SESCO,II.1.1,Córdoba,AR-X,annual,2018,gas oil combustion consumption by public passenger transport,18.52956,TJ,CO2,74100.0,kg/TJ,1373040.396,kg -50432436-ca0d-3533-be08-bb40a2f63c39,SESCO,II.1.1,Córdoba,AR-X,annual,2018,gas oil combustion consumption by public passenger transport,18.52956,TJ,CH4,3.9,kg/TJ,72.265284,kg -50432436-ca0d-3533-be08-bb40a2f63c39,SESCO,II.1.1,Córdoba,AR-X,annual,2018,gas oil combustion consumption by public passenger transport,18.52956,TJ,N2O,3.9,kg/TJ,72.265284,kg -b79fa94e-bf2c-3f25-809c-2c57c4890e3e,SESCO,II.1.1,Entre Rios,AR-E,annual,2018,gas oil combustion consumption by public passenger transport,10.22196,TJ,CO2,74100.0,kg/TJ,757447.2359999999,kg -80044c5a-d081-3dd3-b358-3c54619e6349,SESCO,II.1.1,Entre Rios,AR-E,annual,2018,gas oil combustion consumption by public passenger transport,10.22196,TJ,CH4,3.9,kg/TJ,39.865643999999996,kg -80044c5a-d081-3dd3-b358-3c54619e6349,SESCO,II.1.1,Entre Rios,AR-E,annual,2018,gas oil combustion consumption by public passenger transport,10.22196,TJ,N2O,3.9,kg/TJ,39.865643999999996,kg -b054b9b4-c32b-3710-a90a-bb14ab31ee8b,SESCO,II.1.1,La Pampa,AR-L,annual,2018,gas oil combustion consumption by public passenger transport,1.84212,TJ,CO2,74100.0,kg/TJ,136501.092,kg -b2582760-5efc-3359-b56d-42a1247fc63a,SESCO,II.1.1,La Pampa,AR-L,annual,2018,gas oil combustion consumption by public passenger transport,1.84212,TJ,CH4,3.9,kg/TJ,7.184267999999999,kg -b2582760-5efc-3359-b56d-42a1247fc63a,SESCO,II.1.1,La Pampa,AR-L,annual,2018,gas oil combustion consumption by public passenger transport,1.84212,TJ,N2O,3.9,kg/TJ,7.184267999999999,kg -be8e310f-e204-3186-8102-6945f1d140dc,SESCO,II.1.1,Mendoza,AR-M,annual,2018,gas oil combustion consumption by public passenger transport,0.32508,TJ,CO2,74100.0,kg/TJ,24088.428,kg -ae41c496-c38b-3bb8-9e48-da8c8c8747ea,SESCO,II.1.1,Mendoza,AR-M,annual,2018,gas oil combustion consumption by public passenger transport,0.32508,TJ,CH4,3.9,kg/TJ,1.267812,kg -ae41c496-c38b-3bb8-9e48-da8c8c8747ea,SESCO,II.1.1,Mendoza,AR-M,annual,2018,gas oil combustion consumption by public passenger transport,0.32508,TJ,N2O,3.9,kg/TJ,1.267812,kg -967730d1-5cb7-3911-acd9-94d913ee5bc5,SESCO,II.1.1,Misiones,AR-N,annual,2018,gas oil combustion consumption by public passenger transport,11.88348,TJ,CO2,74100.0,kg/TJ,880565.868,kg -b63bedc2-4c7b-3c9c-b2b0-02dad68c214e,SESCO,II.1.1,Misiones,AR-N,annual,2018,gas oil combustion consumption by public passenger transport,11.88348,TJ,CH4,3.9,kg/TJ,46.345572000000004,kg -b63bedc2-4c7b-3c9c-b2b0-02dad68c214e,SESCO,II.1.1,Misiones,AR-N,annual,2018,gas oil combustion consumption by public passenger transport,11.88348,TJ,N2O,3.9,kg/TJ,46.345572000000004,kg -61ab90f3-7e96-3afe-aac5-5471c3f2449f,SESCO,II.1.1,Neuquén,AR-Q,annual,2018,gas oil combustion consumption by public passenger transport,1.87824,TJ,CO2,74100.0,kg/TJ,139177.584,kg -9ba65473-1584-3cc5-adbf-4446befba27a,SESCO,II.1.1,Neuquén,AR-Q,annual,2018,gas oil combustion consumption by public passenger transport,1.87824,TJ,CH4,3.9,kg/TJ,7.325136,kg -9ba65473-1584-3cc5-adbf-4446befba27a,SESCO,II.1.1,Neuquén,AR-Q,annual,2018,gas oil combustion consumption by public passenger transport,1.87824,TJ,N2O,3.9,kg/TJ,7.325136,kg -71fcc04a-dfa5-3c83-981a-c14f9e929c6e,SESCO,II.1.1,Rio Negro,AR-R,annual,2018,gas oil combustion consumption by public passenger transport,9.71628,TJ,CO2,74100.0,kg/TJ,719976.348,kg -fb9794d1-e8a4-3dea-84ad-cc1bf6365cc9,SESCO,II.1.1,Rio Negro,AR-R,annual,2018,gas oil combustion consumption by public passenger transport,9.71628,TJ,CH4,3.9,kg/TJ,37.893491999999995,kg -fb9794d1-e8a4-3dea-84ad-cc1bf6365cc9,SESCO,II.1.1,Rio Negro,AR-R,annual,2018,gas oil combustion consumption by public passenger transport,9.71628,TJ,N2O,3.9,kg/TJ,37.893491999999995,kg -53ee0eef-d411-34c8-b139-89b5187ff052,SESCO,II.1.1,Salta,AR-A,annual,2018,gas oil combustion consumption by public passenger transport,0.03612,TJ,CO2,74100.0,kg/TJ,2676.4919999999997,kg -79a9c050-79d6-37f1-9982-1fee1612bbcb,SESCO,II.1.1,Salta,AR-A,annual,2018,gas oil combustion consumption by public passenger transport,0.03612,TJ,CH4,3.9,kg/TJ,0.140868,kg -79a9c050-79d6-37f1-9982-1fee1612bbcb,SESCO,II.1.1,Salta,AR-A,annual,2018,gas oil combustion consumption by public passenger transport,0.03612,TJ,N2O,3.9,kg/TJ,0.140868,kg -49241a0a-c4c1-38ec-9eb5-884cbc2f0133,SESCO,II.1.1,San Luis,AR-D,annual,2018,gas oil combustion consumption by public passenger transport,0.07224,TJ,CO2,74100.0,kg/TJ,5352.9839999999995,kg -ce3c8f8e-dba6-3efa-8c07-9095e2ad535d,SESCO,II.1.1,San Luis,AR-D,annual,2018,gas oil combustion consumption by public passenger transport,0.07224,TJ,CH4,3.9,kg/TJ,0.281736,kg -ce3c8f8e-dba6-3efa-8c07-9095e2ad535d,SESCO,II.1.1,San Luis,AR-D,annual,2018,gas oil combustion consumption by public passenger transport,0.07224,TJ,N2O,3.9,kg/TJ,0.281736,kg -90805535-c066-3a24-a4f4-e9039d5ebe98,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,gas oil combustion consumption by public passenger transport,66.2802,TJ,CO2,74100.0,kg/TJ,4911362.819999999,kg -244cbe5c-309c-3592-a04c-435381d133c2,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,gas oil combustion consumption by public passenger transport,66.2802,TJ,CH4,3.9,kg/TJ,258.49278,kg -244cbe5c-309c-3592-a04c-435381d133c2,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,gas oil combustion consumption by public passenger transport,66.2802,TJ,N2O,3.9,kg/TJ,258.49278,kg -02b10c80-f015-39cb-aa5e-0fa5fb8fab17,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2018,gas oil combustion consumption by public passenger transport,0.07224,TJ,CO2,74100.0,kg/TJ,5352.9839999999995,kg -e5567771-8320-33a5-9f80-456ff2ef92f1,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2018,gas oil combustion consumption by public passenger transport,0.07224,TJ,CH4,3.9,kg/TJ,0.281736,kg -e5567771-8320-33a5-9f80-456ff2ef92f1,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2018,gas oil combustion consumption by public passenger transport,0.07224,TJ,N2O,3.9,kg/TJ,0.281736,kg -bf59a6dc-c11c-3eb5-b516-4e7236c510a1,SESCO,II.1.1,Tucuman,AR-T,annual,2018,gas oil combustion consumption by public passenger transport,51.2904,TJ,CO2,74100.0,kg/TJ,3800618.6399999997,kg -e5ef501f-8b2b-3c87-8e75-33e422f5b636,SESCO,II.1.1,Tucuman,AR-T,annual,2018,gas oil combustion consumption by public passenger transport,51.2904,TJ,CH4,3.9,kg/TJ,200.03256,kg -e5ef501f-8b2b-3c87-8e75-33e422f5b636,SESCO,II.1.1,Tucuman,AR-T,annual,2018,gas oil combustion consumption by public passenger transport,51.2904,TJ,N2O,3.9,kg/TJ,200.03256,kg -39216de8-6105-3e51-bc0e-cca184fc40fe,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,gas oil combustion consumption by public passenger transport,44.39148,TJ,CO2,74100.0,kg/TJ,3289408.668,kg -63b86839-cb40-3edf-9f83-e54bea5f5109,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,gas oil combustion consumption by public passenger transport,44.39148,TJ,CH4,3.9,kg/TJ,173.126772,kg -63b86839-cb40-3edf-9f83-e54bea5f5109,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,gas oil combustion consumption by public passenger transport,44.39148,TJ,N2O,3.9,kg/TJ,173.126772,kg -410393e0-9d75-3196-baeb-7b2b55924cef,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,gas oil combustion consumption by public passenger transport,9.13836,TJ,CO2,74100.0,kg/TJ,677152.476,kg -c46d8fec-2dce-34a4-a2f7-d1379aead8b6,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,gas oil combustion consumption by public passenger transport,9.13836,TJ,CH4,3.9,kg/TJ,35.639604,kg -c46d8fec-2dce-34a4-a2f7-d1379aead8b6,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,gas oil combustion consumption by public passenger transport,9.13836,TJ,N2O,3.9,kg/TJ,35.639604,kg -a9dc33d8-0727-3032-9e1c-376a4c2181c2,SESCO,II.1.1,Chubut,AR-U,annual,2018,gas oil combustion consumption by public passenger transport,2.45616,TJ,CO2,74100.0,kg/TJ,182001.456,kg -38781bfc-d8b6-3787-a510-b1fe95db551d,SESCO,II.1.1,Chubut,AR-U,annual,2018,gas oil combustion consumption by public passenger transport,2.45616,TJ,CH4,3.9,kg/TJ,9.579024,kg -38781bfc-d8b6-3787-a510-b1fe95db551d,SESCO,II.1.1,Chubut,AR-U,annual,2018,gas oil combustion consumption by public passenger transport,2.45616,TJ,N2O,3.9,kg/TJ,9.579024,kg -64245b8a-1aed-38fd-84c8-4b316ff8939f,SESCO,II.1.1,Córdoba,AR-X,annual,2018,gas oil combustion consumption by public passenger transport,1.87824,TJ,CO2,74100.0,kg/TJ,139177.584,kg -5eb9ad3e-f951-3df7-89c9-9b002dbfc215,SESCO,II.1.1,Córdoba,AR-X,annual,2018,gas oil combustion consumption by public passenger transport,1.87824,TJ,CH4,3.9,kg/TJ,7.325136,kg -5eb9ad3e-f951-3df7-89c9-9b002dbfc215,SESCO,II.1.1,Córdoba,AR-X,annual,2018,gas oil combustion consumption by public passenger transport,1.87824,TJ,N2O,3.9,kg/TJ,7.325136,kg -4ae422fa-60c7-3057-a25e-edc610450bf1,SESCO,II.1.1,Entre Rios,AR-E,annual,2018,gas oil combustion consumption by public passenger transport,0.21672,TJ,CO2,74100.0,kg/TJ,16058.952,kg -71ab4a7b-48e7-3c90-82a7-2ebb5d7ff9a7,SESCO,II.1.1,Entre Rios,AR-E,annual,2018,gas oil combustion consumption by public passenger transport,0.21672,TJ,CH4,3.9,kg/TJ,0.845208,kg -71ab4a7b-48e7-3c90-82a7-2ebb5d7ff9a7,SESCO,II.1.1,Entre Rios,AR-E,annual,2018,gas oil combustion consumption by public passenger transport,0.21672,TJ,N2O,3.9,kg/TJ,0.845208,kg -5f1d1992-16e3-388d-99a2-0f69b47a14ea,SESCO,II.1.1,La Pampa,AR-L,annual,2018,gas oil combustion consumption by public passenger transport,4.1537999999999995,TJ,CO2,74100.0,kg/TJ,307796.57999999996,kg -b60dd16b-bf34-3ebc-adb0-8a1d24144185,SESCO,II.1.1,La Pampa,AR-L,annual,2018,gas oil combustion consumption by public passenger transport,4.1537999999999995,TJ,CH4,3.9,kg/TJ,16.19982,kg -b60dd16b-bf34-3ebc-adb0-8a1d24144185,SESCO,II.1.1,La Pampa,AR-L,annual,2018,gas oil combustion consumption by public passenger transport,4.1537999999999995,TJ,N2O,3.9,kg/TJ,16.19982,kg -14cca3ab-15f7-30c0-8660-60d68fc7b862,SESCO,II.1.1,Mendoza,AR-M,annual,2018,gas oil combustion consumption by public passenger transport,0.03612,TJ,CO2,74100.0,kg/TJ,2676.4919999999997,kg -984a4d7f-0f47-3c13-8ebc-3b59b250bc76,SESCO,II.1.1,Mendoza,AR-M,annual,2018,gas oil combustion consumption by public passenger transport,0.03612,TJ,CH4,3.9,kg/TJ,0.140868,kg -984a4d7f-0f47-3c13-8ebc-3b59b250bc76,SESCO,II.1.1,Mendoza,AR-M,annual,2018,gas oil combustion consumption by public passenger transport,0.03612,TJ,N2O,3.9,kg/TJ,0.140868,kg -8096f219-7d3c-3a5f-8a02-7c991fbb6cd2,SESCO,II.1.1,Neuquén,AR-Q,annual,2018,gas oil combustion consumption by public passenger transport,2.5284,TJ,CO2,74100.0,kg/TJ,187354.44,kg -bf48c769-d642-3148-8ccf-b81cdd421726,SESCO,II.1.1,Neuquén,AR-Q,annual,2018,gas oil combustion consumption by public passenger transport,2.5284,TJ,CH4,3.9,kg/TJ,9.860759999999999,kg -bf48c769-d642-3148-8ccf-b81cdd421726,SESCO,II.1.1,Neuquén,AR-Q,annual,2018,gas oil combustion consumption by public passenger transport,2.5284,TJ,N2O,3.9,kg/TJ,9.860759999999999,kg -f7bd39f0-9424-3d2c-927d-b0b4e2bcabb0,SESCO,II.1.1,Rio Negro,AR-R,annual,2018,gas oil combustion consumption by public passenger transport,10.25808,TJ,CO2,74100.0,kg/TJ,760123.728,kg -decff439-b6b5-3965-bcf9-0477ade8fe81,SESCO,II.1.1,Rio Negro,AR-R,annual,2018,gas oil combustion consumption by public passenger transport,10.25808,TJ,CH4,3.9,kg/TJ,40.006512,kg -decff439-b6b5-3965-bcf9-0477ade8fe81,SESCO,II.1.1,Rio Negro,AR-R,annual,2018,gas oil combustion consumption by public passenger transport,10.25808,TJ,N2O,3.9,kg/TJ,40.006512,kg -125341f8-153a-3bc6-aa20-f3392eba762c,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,gas oil combustion consumption by public passenger transport,3.46752,TJ,CO2,74100.0,kg/TJ,256943.232,kg -fb18f972-18c3-393a-91e4-a5feb5dfec1e,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,gas oil combustion consumption by public passenger transport,3.46752,TJ,CH4,3.9,kg/TJ,13.523328,kg -fb18f972-18c3-393a-91e4-a5feb5dfec1e,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,gas oil combustion consumption by public passenger transport,3.46752,TJ,N2O,3.9,kg/TJ,13.523328,kg -4e49b584-9421-3575-8867-1a54400d92d5,SESCO,II.1.1,Chubut,AR-U,annual,2018,gas oil combustion consumption by freight transport,0.10398948,TJ,CO2,74100.0,kg/TJ,7705.620468,kg -ded601dc-4bfe-3222-b541-745095600822,SESCO,II.1.1,Chubut,AR-U,annual,2018,gas oil combustion consumption by freight transport,0.10398948,TJ,CH4,3.9,kg/TJ,0.40555897199999996,kg -ded601dc-4bfe-3222-b541-745095600822,SESCO,II.1.1,Chubut,AR-U,annual,2018,gas oil combustion consumption by freight transport,0.10398948,TJ,N2O,3.9,kg/TJ,0.40555897199999996,kg -17080a63-b1bb-3ec6-937c-2037ba0c2d10,SESCO,II.1.1,Chubut,AR-U,annual,2018,gas oil combustion consumption by freight transport,2.57990712,TJ,CO2,74100.0,kg/TJ,191171.117592,kg -370c67cd-cd55-3083-93eb-76b60e8ea9f3,SESCO,II.1.1,Chubut,AR-U,annual,2018,gas oil combustion consumption by freight transport,2.57990712,TJ,CH4,3.9,kg/TJ,10.061637768,kg -370c67cd-cd55-3083-93eb-76b60e8ea9f3,SESCO,II.1.1,Chubut,AR-U,annual,2018,gas oil combustion consumption by freight transport,2.57990712,TJ,N2O,3.9,kg/TJ,10.061637768,kg -662bd11d-54ff-3c31-a3a4-5b54e87816f1,SESCO,II.5.1,Buenos Aires,AR-B,annual,2018,gas oil combustion consumption by agriculture machines,69.770713992,TJ,CO2,74100.0,kg/TJ,5170009.9068072,kg -8195e1f4-6742-34bd-acfb-4c32aa5d23a6,SESCO,II.5.1,Buenos Aires,AR-B,annual,2018,gas oil combustion consumption by agriculture machines,69.770713992,TJ,CH4,3.9,kg/TJ,272.1057845688,kg -8195e1f4-6742-34bd-acfb-4c32aa5d23a6,SESCO,II.5.1,Buenos Aires,AR-B,annual,2018,gas oil combustion consumption by agriculture machines,69.770713992,TJ,N2O,3.9,kg/TJ,272.1057845688,kg -c9a6c06e-ded7-3629-95b3-510bf04a4ae8,SESCO,II.5.1,Corrientes,AR-W,annual,2018,gas oil combustion consumption by agriculture machines,2.2124005679999996,TJ,CO2,74100.0,kg/TJ,163938.88208879996,kg -983830de-2665-352b-a6bb-c4648f052005,SESCO,II.5.1,Corrientes,AR-W,annual,2018,gas oil combustion consumption by agriculture machines,2.2124005679999996,TJ,CH4,3.9,kg/TJ,8.628362215199997,kg -983830de-2665-352b-a6bb-c4648f052005,SESCO,II.5.1,Corrientes,AR-W,annual,2018,gas oil combustion consumption by agriculture machines,2.2124005679999996,TJ,N2O,3.9,kg/TJ,8.628362215199997,kg -edef4a5e-1983-3c39-b503-89314ebe6532,SESCO,II.5.1,Córdoba,AR-X,annual,2018,gas oil combustion consumption by agriculture machines,118.283290944,TJ,CO2,74100.0,kg/TJ,8764791.8589504,kg -2c8d2e8a-0df4-3f3a-9fba-40574ef1601d,SESCO,II.5.1,Córdoba,AR-X,annual,2018,gas oil combustion consumption by agriculture machines,118.283290944,TJ,CH4,3.9,kg/TJ,461.30483468159997,kg -2c8d2e8a-0df4-3f3a-9fba-40574ef1601d,SESCO,II.5.1,Córdoba,AR-X,annual,2018,gas oil combustion consumption by agriculture machines,118.283290944,TJ,N2O,3.9,kg/TJ,461.30483468159997,kg -a9a13651-d932-38d1-8791-575f43050683,SESCO,II.5.1,Entre Rios,AR-E,annual,2018,gas oil combustion consumption by agriculture machines,94.837531656,TJ,CO2,74100.0,kg/TJ,7027461.0957096,kg -84de0141-5e6b-3740-bcde-0c74cb1493b7,SESCO,II.5.1,Entre Rios,AR-E,annual,2018,gas oil combustion consumption by agriculture machines,94.837531656,TJ,CH4,3.9,kg/TJ,369.86637345839995,kg -84de0141-5e6b-3740-bcde-0c74cb1493b7,SESCO,II.5.1,Entre Rios,AR-E,annual,2018,gas oil combustion consumption by agriculture machines,94.837531656,TJ,N2O,3.9,kg/TJ,369.86637345839995,kg -738f9a68-97b3-3d2a-906a-eb969850ae20,SESCO,II.5.1,La Pampa,AR-L,annual,2018,gas oil combustion consumption by agriculture machines,20.071526412,TJ,CO2,74100.0,kg/TJ,1487300.1071292001,kg -61d1a987-5bc5-3796-a3d0-03d97e0ea4a4,SESCO,II.5.1,La Pampa,AR-L,annual,2018,gas oil combustion consumption by agriculture machines,20.071526412,TJ,CH4,3.9,kg/TJ,78.2789530068,kg -61d1a987-5bc5-3796-a3d0-03d97e0ea4a4,SESCO,II.5.1,La Pampa,AR-L,annual,2018,gas oil combustion consumption by agriculture machines,20.071526412,TJ,N2O,3.9,kg/TJ,78.2789530068,kg -7f1e692b-8982-3fef-a6d0-9b8f75aaf4d7,SESCO,II.5.1,Santa Fe,AR-S,annual,2018,gas oil combustion consumption by agriculture machines,92.64480926399999,TJ,CO2,74100.0,kg/TJ,6864980.366462399,kg -0392b918-4658-357b-836c-f4d074b6a833,SESCO,II.5.1,Santa Fe,AR-S,annual,2018,gas oil combustion consumption by agriculture machines,92.64480926399999,TJ,CH4,3.9,kg/TJ,361.31475612959997,kg -0392b918-4658-357b-836c-f4d074b6a833,SESCO,II.5.1,Santa Fe,AR-S,annual,2018,gas oil combustion consumption by agriculture machines,92.64480926399999,TJ,N2O,3.9,kg/TJ,361.31475612959997,kg -341a2be2-5447-3d9f-9a3d-2d6018a5ce66,SESCO,II.5.1,Santiago del Estero,AR-G,annual,2018,gas oil combustion consumption by agriculture machines,29.305073447999998,TJ,CO2,74100.0,kg/TJ,2171505.9424968,kg -ce5846c9-f5ea-39bd-947d-c0a6d1fab464,SESCO,II.5.1,Santiago del Estero,AR-G,annual,2018,gas oil combustion consumption by agriculture machines,29.305073447999998,TJ,CH4,3.9,kg/TJ,114.28978644719999,kg -ce5846c9-f5ea-39bd-947d-c0a6d1fab464,SESCO,II.5.1,Santiago del Estero,AR-G,annual,2018,gas oil combustion consumption by agriculture machines,29.305073447999998,TJ,N2O,3.9,kg/TJ,114.28978644719999,kg -e44d2c02-d842-35f5-812b-4edf08bc3d25,SESCO,II.5.1,Tucuman,AR-T,annual,2018,gas oil combustion consumption by agriculture machines,1.6384754400000001,TJ,CO2,74100.0,kg/TJ,121411.030104,kg -b39f1746-0937-312f-8ae5-33b8c9f6c418,SESCO,II.5.1,Tucuman,AR-T,annual,2018,gas oil combustion consumption by agriculture machines,1.6384754400000001,TJ,CH4,3.9,kg/TJ,6.390054216,kg -b39f1746-0937-312f-8ae5-33b8c9f6c418,SESCO,II.5.1,Tucuman,AR-T,annual,2018,gas oil combustion consumption by agriculture machines,1.6384754400000001,TJ,N2O,3.9,kg/TJ,6.390054216,kg -da609c03-a700-32b0-8edb-bb811340b6b6,SESCO,II.5.1,Córdoba,AR-X,annual,2018,gas oil combustion consumption by agriculture machines,2.4308579399999997,TJ,CO2,74100.0,kg/TJ,180126.57335399996,kg -792512eb-c034-329f-8e31-e8d52b8f6d16,SESCO,II.5.1,Córdoba,AR-X,annual,2018,gas oil combustion consumption by agriculture machines,2.4308579399999997,TJ,CH4,3.9,kg/TJ,9.480345965999998,kg -792512eb-c034-329f-8e31-e8d52b8f6d16,SESCO,II.5.1,Córdoba,AR-X,annual,2018,gas oil combustion consumption by agriculture machines,2.4308579399999997,TJ,N2O,3.9,kg/TJ,9.480345965999998,kg -870740aa-42b9-36ac-8119-ada76acb9980,SESCO,II.5.1,Entre Rios,AR-E,annual,2018,gas oil combustion consumption by agriculture machines,3.0690983400000005,TJ,CO2,74100.0,kg/TJ,227420.18699400005,kg -ac9eebf3-5022-3934-afe9-613542ba6785,SESCO,II.5.1,Entre Rios,AR-E,annual,2018,gas oil combustion consumption by agriculture machines,3.0690983400000005,TJ,CH4,3.9,kg/TJ,11.969483526000001,kg -ac9eebf3-5022-3934-afe9-613542ba6785,SESCO,II.5.1,Entre Rios,AR-E,annual,2018,gas oil combustion consumption by agriculture machines,3.0690983400000005,TJ,N2O,3.9,kg/TJ,11.969483526000001,kg -0e179c1d-e922-3fd4-91f9-d5fda0b66496,SESCO,II.5.1,La Pampa,AR-L,annual,2018,gas oil combustion consumption by agriculture machines,3.998581524,TJ,CO2,74100.0,kg/TJ,296294.8909284,kg -0ce083d9-2fa9-3062-9db1-0be39dfba0a6,SESCO,II.5.1,La Pampa,AR-L,annual,2018,gas oil combustion consumption by agriculture machines,3.998581524,TJ,CH4,3.9,kg/TJ,15.5944679436,kg -0ce083d9-2fa9-3062-9db1-0be39dfba0a6,SESCO,II.5.1,La Pampa,AR-L,annual,2018,gas oil combustion consumption by agriculture machines,3.998581524,TJ,N2O,3.9,kg/TJ,15.5944679436,kg -19c9e276-be4d-369e-a174-91bf00322c36,SESCO,II.5.1,Santa Fe,AR-S,annual,2018,gas oil combustion consumption by agriculture machines,3.714790296,TJ,CO2,74100.0,kg/TJ,275265.96093359997,kg -532b37d3-731c-36b8-8741-8fa92b8f81ec,SESCO,II.5.1,Santa Fe,AR-S,annual,2018,gas oil combustion consumption by agriculture machines,3.714790296,TJ,CH4,3.9,kg/TJ,14.4876821544,kg -532b37d3-731c-36b8-8741-8fa92b8f81ec,SESCO,II.5.1,Santa Fe,AR-S,annual,2018,gas oil combustion consumption by agriculture machines,3.714790296,TJ,N2O,3.9,kg/TJ,14.4876821544,kg -463c6ad1-ea9b-32f8-b5e2-f73d2eaff94a,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,gas oil combustion consumption by to the public,397.72991143200005,TJ,CO2,74100.0,kg/TJ,29471786.437111203,kg -a2d85ce0-529a-3393-ac9e-9fba9b119864,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,gas oil combustion consumption by to the public,397.72991143200005,TJ,CH4,3.9,kg/TJ,1551.1466545848002,kg -a2d85ce0-529a-3393-ac9e-9fba9b119864,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,gas oil combustion consumption by to the public,397.72991143200005,TJ,N2O,3.9,kg/TJ,1551.1466545848002,kg -672e2537-0a7d-3538-9ada-58d286e19e9f,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,gas oil combustion consumption by to the public,42.161427588,TJ,CO2,74100.0,kg/TJ,3124161.7842708,kg -70294450-0247-3a08-83d2-0b7a46289f3e,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,gas oil combustion consumption by to the public,42.161427588,TJ,CH4,3.9,kg/TJ,164.4295675932,kg -70294450-0247-3a08-83d2-0b7a46289f3e,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,gas oil combustion consumption by to the public,42.161427588,TJ,N2O,3.9,kg/TJ,164.4295675932,kg -db334a21-d3d6-3906-a3a5-617e8f369a62,SESCO,II.1.1,Catamarca,AR-K,annual,2018,gas oil combustion consumption by to the public,11.850553007999999,TJ,CO2,74100.0,kg/TJ,878125.9778927999,kg -4b458580-77ff-354f-a475-e013715fce82,SESCO,II.1.1,Catamarca,AR-K,annual,2018,gas oil combustion consumption by to the public,11.850553007999999,TJ,CH4,3.9,kg/TJ,46.21715673119999,kg -4b458580-77ff-354f-a475-e013715fce82,SESCO,II.1.1,Catamarca,AR-K,annual,2018,gas oil combustion consumption by to the public,11.850553007999999,TJ,N2O,3.9,kg/TJ,46.21715673119999,kg -6a322803-950d-3982-aaf9-f3f63b7bbca8,SESCO,II.1.1,Chaco,AR-H,annual,2018,gas oil combustion consumption by to the public,69.694085412,TJ,CO2,74100.0,kg/TJ,5164331.729029201,kg -e1585bd8-60a9-3d5d-b237-c71fc3368010,SESCO,II.1.1,Chaco,AR-H,annual,2018,gas oil combustion consumption by to the public,69.694085412,TJ,CH4,3.9,kg/TJ,271.80693310680005,kg -e1585bd8-60a9-3d5d-b237-c71fc3368010,SESCO,II.1.1,Chaco,AR-H,annual,2018,gas oil combustion consumption by to the public,69.694085412,TJ,N2O,3.9,kg/TJ,271.80693310680005,kg -408bafad-320d-3576-9f31-499c14ffc36a,SESCO,II.1.1,Corrientes,AR-W,annual,2018,gas oil combustion consumption by to the public,91.65396181199999,TJ,CO2,74100.0,kg/TJ,6791558.570269199,kg -9b972212-50a6-397c-be49-51cf43b55b46,SESCO,II.1.1,Corrientes,AR-W,annual,2018,gas oil combustion consumption by to the public,91.65396181199999,TJ,CH4,3.9,kg/TJ,357.4504510668,kg -9b972212-50a6-397c-be49-51cf43b55b46,SESCO,II.1.1,Corrientes,AR-W,annual,2018,gas oil combustion consumption by to the public,91.65396181199999,TJ,N2O,3.9,kg/TJ,357.4504510668,kg -405de142-e33a-3825-8222-0d9d814fb750,SESCO,II.1.1,Córdoba,AR-X,annual,2018,gas oil combustion consumption by to the public,221.39362459199998,TJ,CO2,74100.0,kg/TJ,16405267.582267199,kg -f72b8bec-1d2a-3212-8821-eb56a32da8fd,SESCO,II.1.1,Córdoba,AR-X,annual,2018,gas oil combustion consumption by to the public,221.39362459199998,TJ,CH4,3.9,kg/TJ,863.4351359087999,kg -f72b8bec-1d2a-3212-8821-eb56a32da8fd,SESCO,II.1.1,Córdoba,AR-X,annual,2018,gas oil combustion consumption by to the public,221.39362459199998,TJ,N2O,3.9,kg/TJ,863.4351359087999,kg -ac86718e-7843-395d-8a78-c9c8fdbc2f9d,SESCO,II.1.1,Entre Rios,AR-E,annual,2018,gas oil combustion consumption by to the public,122.98252461599999,TJ,CO2,74100.0,kg/TJ,9113005.074045599,kg -58fe2bd5-4acb-3516-91ba-59ff29a26878,SESCO,II.1.1,Entre Rios,AR-E,annual,2018,gas oil combustion consumption by to the public,122.98252461599999,TJ,CH4,3.9,kg/TJ,479.6318460024,kg -58fe2bd5-4acb-3516-91ba-59ff29a26878,SESCO,II.1.1,Entre Rios,AR-E,annual,2018,gas oil combustion consumption by to the public,122.98252461599999,TJ,N2O,3.9,kg/TJ,479.6318460024,kg -b24dc09e-ddda-3d8f-9533-6a9f46bcb6a6,SESCO,II.1.1,Jujuy,AR-Y,annual,2018,gas oil combustion consumption by to the public,5.38426392,TJ,CO2,74100.0,kg/TJ,398973.95647200005,kg -0beb2ce8-b491-3720-8715-f58790e2a47f,SESCO,II.1.1,Jujuy,AR-Y,annual,2018,gas oil combustion consumption by to the public,5.38426392,TJ,CH4,3.9,kg/TJ,20.998629288,kg -0beb2ce8-b491-3720-8715-f58790e2a47f,SESCO,II.1.1,Jujuy,AR-Y,annual,2018,gas oil combustion consumption by to the public,5.38426392,TJ,N2O,3.9,kg/TJ,20.998629288,kg -653f059f-fe98-301c-bb75-a0bbfe6098f6,SESCO,II.1.1,La Rioja,AR-F,annual,2018,gas oil combustion consumption by to the public,7.095333336,TJ,CO2,74100.0,kg/TJ,525764.2001976001,kg -5deea726-6371-3ae0-96ac-edd5daadd701,SESCO,II.1.1,La Rioja,AR-F,annual,2018,gas oil combustion consumption by to the public,7.095333336,TJ,CH4,3.9,kg/TJ,27.671800010400002,kg -5deea726-6371-3ae0-96ac-edd5daadd701,SESCO,II.1.1,La Rioja,AR-F,annual,2018,gas oil combustion consumption by to the public,7.095333336,TJ,N2O,3.9,kg/TJ,27.671800010400002,kg -45abfb22-85fa-3a89-a0ea-210f4fbb0cb7,SESCO,II.1.1,Mendoza,AR-M,annual,2018,gas oil combustion consumption by to the public,50.206395456,TJ,CO2,74100.0,kg/TJ,3720293.9032896003,kg -31c736a6-2a7e-3f91-b58d-2fa45fb9ada2,SESCO,II.1.1,Mendoza,AR-M,annual,2018,gas oil combustion consumption by to the public,50.206395456,TJ,CH4,3.9,kg/TJ,195.8049422784,kg -31c736a6-2a7e-3f91-b58d-2fa45fb9ada2,SESCO,II.1.1,Mendoza,AR-M,annual,2018,gas oil combustion consumption by to the public,50.206395456,TJ,N2O,3.9,kg/TJ,195.8049422784,kg -29cf8434-77fb-3c8c-a145-88f1c0a69819,SESCO,II.1.1,Misiones,AR-N,annual,2018,gas oil combustion consumption by to the public,70.573520724,TJ,CO2,74100.0,kg/TJ,5229497.8856484005,kg -1083f317-f1bf-3401-bee4-e4dec43d5cf2,SESCO,II.1.1,Misiones,AR-N,annual,2018,gas oil combustion consumption by to the public,70.573520724,TJ,CH4,3.9,kg/TJ,275.2367308236,kg -1083f317-f1bf-3401-bee4-e4dec43d5cf2,SESCO,II.1.1,Misiones,AR-N,annual,2018,gas oil combustion consumption by to the public,70.573520724,TJ,N2O,3.9,kg/TJ,275.2367308236,kg -36e6c4cd-b05f-3eda-a59a-4a6150a905f6,SESCO,II.1.1,San Juan,AR-J,annual,2018,gas oil combustion consumption by to the public,60.514880915999996,TJ,CO2,74100.0,kg/TJ,4484152.6758755995,kg -06b47f60-ec28-3e68-984b-73b37e1c6655,SESCO,II.1.1,San Juan,AR-J,annual,2018,gas oil combustion consumption by to the public,60.514880915999996,TJ,CH4,3.9,kg/TJ,236.0080355724,kg -06b47f60-ec28-3e68-984b-73b37e1c6655,SESCO,II.1.1,San Juan,AR-J,annual,2018,gas oil combustion consumption by to the public,60.514880915999996,TJ,N2O,3.9,kg/TJ,236.0080355724,kg -edf905d6-2cac-3b8f-8dfe-164c7e58496e,SESCO,II.1.1,San Luis,AR-D,annual,2018,gas oil combustion consumption by to the public,31.918127892,TJ,CO2,74100.0,kg/TJ,2365133.2767972,kg -e170c837-62cd-3dba-98ab-167a8c1136e0,SESCO,II.1.1,San Luis,AR-D,annual,2018,gas oil combustion consumption by to the public,31.918127892,TJ,CH4,3.9,kg/TJ,124.4806987788,kg -e170c837-62cd-3dba-98ab-167a8c1136e0,SESCO,II.1.1,San Luis,AR-D,annual,2018,gas oil combustion consumption by to the public,31.918127892,TJ,N2O,3.9,kg/TJ,124.4806987788,kg -c82cc31c-8b31-39a7-91c8-4d5419929154,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,gas oil combustion consumption by to the public,382.28863310400004,TJ,CO2,74100.0,kg/TJ,28327587.713006403,kg -d9af5bc1-aea3-3064-a08f-7bc19d812087,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,gas oil combustion consumption by to the public,382.28863310400004,TJ,CH4,3.9,kg/TJ,1490.9256691056,kg -d9af5bc1-aea3-3064-a08f-7bc19d812087,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,gas oil combustion consumption by to the public,382.28863310400004,TJ,N2O,3.9,kg/TJ,1490.9256691056,kg -f54ce466-5eef-35d0-8c37-5eb1e1e7eeff,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2018,gas oil combustion consumption by to the public,19.579510608,TJ,CO2,74100.0,kg/TJ,1450841.7360528,kg -4d537ec0-a5f9-30e4-ae9d-db50e28d9129,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2018,gas oil combustion consumption by to the public,19.579510608,TJ,CH4,3.9,kg/TJ,76.3600913712,kg -4d537ec0-a5f9-30e4-ae9d-db50e28d9129,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2018,gas oil combustion consumption by to the public,19.579510608,TJ,N2O,3.9,kg/TJ,76.3600913712,kg -17868799-56c1-37e5-8880-4f8d9ecd5551,SESCO,II.1.1,Tucuman,AR-T,annual,2018,gas oil combustion consumption by to the public,43.050878976,TJ,CO2,74100.0,kg/TJ,3190070.1321216,kg -16e528b7-a1d8-391a-b9f9-237acc492365,SESCO,II.1.1,Tucuman,AR-T,annual,2018,gas oil combustion consumption by to the public,43.050878976,TJ,CH4,3.9,kg/TJ,167.8984280064,kg -16e528b7-a1d8-391a-b9f9-237acc492365,SESCO,II.1.1,Tucuman,AR-T,annual,2018,gas oil combustion consumption by to the public,43.050878976,TJ,N2O,3.9,kg/TJ,167.8984280064,kg -5505f17a-375f-3bae-9804-16983cee6d8c,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,gas oil combustion consumption by to the public,103.263590808,TJ,CO2,74100.0,kg/TJ,7651832.0788728,kg -9ce6c272-87de-359a-9474-01bfc15a2975,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,gas oil combustion consumption by to the public,103.263590808,TJ,CH4,3.9,kg/TJ,402.7280041512,kg -9ce6c272-87de-359a-9474-01bfc15a2975,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,gas oil combustion consumption by to the public,103.263590808,TJ,N2O,3.9,kg/TJ,402.7280041512,kg -46bd741a-8b3f-3eb1-9ae7-b70d6c58ab96,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,gas oil combustion consumption by to the public,7.857151092,TJ,CO2,74100.0,kg/TJ,582214.8959172,kg -cd706973-2d91-316d-9ad1-5911b9f5b88a,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,gas oil combustion consumption by to the public,7.857151092,TJ,CH4,3.9,kg/TJ,30.642889258799997,kg -cd706973-2d91-316d-9ad1-5911b9f5b88a,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,gas oil combustion consumption by to the public,7.857151092,TJ,N2O,3.9,kg/TJ,30.642889258799997,kg -fef4995c-8bfa-3404-aac7-4c7d352bee93,SESCO,II.1.1,Catamarca,AR-K,annual,2018,gas oil combustion consumption by to the public,11.391829008,TJ,CO2,74100.0,kg/TJ,844134.5294928,kg -4f6e6825-bb43-3841-8511-fb31b2227d50,SESCO,II.1.1,Catamarca,AR-K,annual,2018,gas oil combustion consumption by to the public,11.391829008,TJ,CH4,3.9,kg/TJ,44.4281331312,kg -4f6e6825-bb43-3841-8511-fb31b2227d50,SESCO,II.1.1,Catamarca,AR-K,annual,2018,gas oil combustion consumption by to the public,11.391829008,TJ,N2O,3.9,kg/TJ,44.4281331312,kg -9a591880-e8f6-3194-a697-ca3a16b13611,SESCO,II.1.1,Chaco,AR-H,annual,2018,gas oil combustion consumption by to the public,12.394834452,TJ,CO2,74100.0,kg/TJ,918457.2328932,kg -8c897059-79df-32c0-8001-16db77a4ef40,SESCO,II.1.1,Chaco,AR-H,annual,2018,gas oil combustion consumption by to the public,12.394834452,TJ,CH4,3.9,kg/TJ,48.3398543628,kg -8c897059-79df-32c0-8001-16db77a4ef40,SESCO,II.1.1,Chaco,AR-H,annual,2018,gas oil combustion consumption by to the public,12.394834452,TJ,N2O,3.9,kg/TJ,48.3398543628,kg -f9940f73-c4e6-353e-a7c4-e84badcbb525,SESCO,II.1.1,Corrientes,AR-W,annual,2018,gas oil combustion consumption by to the public,19.605433932,TJ,CO2,74100.0,kg/TJ,1452762.6543612,kg -04a9aa4d-e23d-351d-992a-a1394a5fff7e,SESCO,II.1.1,Corrientes,AR-W,annual,2018,gas oil combustion consumption by to the public,19.605433932,TJ,CH4,3.9,kg/TJ,76.4611923348,kg -04a9aa4d-e23d-351d-992a-a1394a5fff7e,SESCO,II.1.1,Corrientes,AR-W,annual,2018,gas oil combustion consumption by to the public,19.605433932,TJ,N2O,3.9,kg/TJ,76.4611923348,kg -2fe3bbaf-f88f-3ef2-94ec-73d543841e0c,SESCO,II.1.1,Córdoba,AR-X,annual,2018,gas oil combustion consumption by to the public,62.852112203999994,TJ,CO2,74100.0,kg/TJ,4657341.5143164,kg -7d9e5cf7-e540-340c-96ed-7ef27a88ca79,SESCO,II.1.1,Córdoba,AR-X,annual,2018,gas oil combustion consumption by to the public,62.852112203999994,TJ,CH4,3.9,kg/TJ,245.12323759559996,kg -7d9e5cf7-e540-340c-96ed-7ef27a88ca79,SESCO,II.1.1,Córdoba,AR-X,annual,2018,gas oil combustion consumption by to the public,62.852112203999994,TJ,N2O,3.9,kg/TJ,245.12323759559996,kg -803c3111-9bfe-3b80-979b-3eaa489fb6d3,SESCO,II.1.1,Entre Rios,AR-E,annual,2018,gas oil combustion consumption by to the public,14.672915628,TJ,CO2,74100.0,kg/TJ,1087263.0480348,kg -04f365f4-4638-3edc-9bfd-3020b9068e9a,SESCO,II.1.1,Entre Rios,AR-E,annual,2018,gas oil combustion consumption by to the public,14.672915628,TJ,CH4,3.9,kg/TJ,57.2243709492,kg -04f365f4-4638-3edc-9bfd-3020b9068e9a,SESCO,II.1.1,Entre Rios,AR-E,annual,2018,gas oil combustion consumption by to the public,14.672915628,TJ,N2O,3.9,kg/TJ,57.2243709492,kg -d76d0cdb-10d8-3e32-97a7-d55311aa36be,SESCO,II.1.1,La Rioja,AR-F,annual,2018,gas oil combustion consumption by to the public,3.8942886359999997,TJ,CO2,74100.0,kg/TJ,288566.7879276,kg -91c61015-c821-3707-81f8-31dd2a9dcb23,SESCO,II.1.1,La Rioja,AR-F,annual,2018,gas oil combustion consumption by to the public,3.8942886359999997,TJ,CH4,3.9,kg/TJ,15.187725680399998,kg -91c61015-c821-3707-81f8-31dd2a9dcb23,SESCO,II.1.1,La Rioja,AR-F,annual,2018,gas oil combustion consumption by to the public,3.8942886359999997,TJ,N2O,3.9,kg/TJ,15.187725680399998,kg -ea2079c9-c637-32f4-aa47-f3f0eef213f8,SESCO,II.1.1,Mendoza,AR-M,annual,2018,gas oil combustion consumption by to the public,14.537303088,TJ,CO2,74100.0,kg/TJ,1077214.1588208,kg -511744f0-c474-36b6-b3fd-8c768ca88339,SESCO,II.1.1,Mendoza,AR-M,annual,2018,gas oil combustion consumption by to the public,14.537303088,TJ,CH4,3.9,kg/TJ,56.695482043199995,kg -511744f0-c474-36b6-b3fd-8c768ca88339,SESCO,II.1.1,Mendoza,AR-M,annual,2018,gas oil combustion consumption by to the public,14.537303088,TJ,N2O,3.9,kg/TJ,56.695482043199995,kg -d704f5f0-e891-3879-b443-b092dacd113c,SESCO,II.1.1,Misiones,AR-N,annual,2018,gas oil combustion consumption by to the public,16.959409152,TJ,CO2,74100.0,kg/TJ,1256692.2181632,kg -50dc51ba-62ed-3f65-975b-38d477184c7a,SESCO,II.1.1,Misiones,AR-N,annual,2018,gas oil combustion consumption by to the public,16.959409152,TJ,CH4,3.9,kg/TJ,66.1416956928,kg -50dc51ba-62ed-3f65-975b-38d477184c7a,SESCO,II.1.1,Misiones,AR-N,annual,2018,gas oil combustion consumption by to the public,16.959409152,TJ,N2O,3.9,kg/TJ,66.1416956928,kg -70a21ff0-6015-3fa3-882b-2db65fd40237,SESCO,II.1.1,San Juan,AR-J,annual,2018,gas oil combustion consumption by to the public,11.107510428000001,TJ,CO2,74100.0,kg/TJ,823066.5227148001,kg -0d085c9b-6422-350a-8c0c-863444450058,SESCO,II.1.1,San Juan,AR-J,annual,2018,gas oil combustion consumption by to the public,11.107510428000001,TJ,CH4,3.9,kg/TJ,43.3192906692,kg -0d085c9b-6422-350a-8c0c-863444450058,SESCO,II.1.1,San Juan,AR-J,annual,2018,gas oil combustion consumption by to the public,11.107510428000001,TJ,N2O,3.9,kg/TJ,43.3192906692,kg -487dda5f-a8fc-316f-930b-098ad07346d1,SESCO,II.1.1,San Luis,AR-D,annual,2018,gas oil combustion consumption by to the public,11.074377552,TJ,CO2,74100.0,kg/TJ,820611.3766032,kg -f4d72908-8065-373e-bf96-e448a573dbe3,SESCO,II.1.1,San Luis,AR-D,annual,2018,gas oil combustion consumption by to the public,11.074377552,TJ,CH4,3.9,kg/TJ,43.190072452799996,kg -f4d72908-8065-373e-bf96-e448a573dbe3,SESCO,II.1.1,San Luis,AR-D,annual,2018,gas oil combustion consumption by to the public,11.074377552,TJ,N2O,3.9,kg/TJ,43.190072452799996,kg -fc9bffc4-94a6-3f78-885e-c739b631f789,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,gas oil combustion consumption by to the public,83.16261576000001,TJ,CO2,74100.0,kg/TJ,6162349.827816,kg -3313a9c1-bd6f-3bed-9a6a-c7bf7072ec68,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,gas oil combustion consumption by to the public,83.16261576000001,TJ,CH4,3.9,kg/TJ,324.33420146400005,kg -3313a9c1-bd6f-3bed-9a6a-c7bf7072ec68,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,gas oil combustion consumption by to the public,83.16261576000001,TJ,N2O,3.9,kg/TJ,324.33420146400005,kg -c811d4a5-4f71-3761-bd41-de31552976c7,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2018,gas oil combustion consumption by to the public,10.003936068,TJ,CO2,74100.0,kg/TJ,741291.6626388,kg -728971e0-c621-3e35-93d2-7446abb0cc41,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2018,gas oil combustion consumption by to the public,10.003936068,TJ,CH4,3.9,kg/TJ,39.015350665199996,kg -728971e0-c621-3e35-93d2-7446abb0cc41,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2018,gas oil combustion consumption by to the public,10.003936068,TJ,N2O,3.9,kg/TJ,39.015350665199996,kg -e1812227-4e0c-346d-ad2f-097ad4c665c6,SESCO,II.1.1,Tucuman,AR-T,annual,2018,gas oil combustion consumption by to the public,8.960064456,TJ,CO2,74100.0,kg/TJ,663940.7761896,kg -bd8e622d-54b3-3723-8454-4908b0790ad1,SESCO,II.1.1,Tucuman,AR-T,annual,2018,gas oil combustion consumption by to the public,8.960064456,TJ,CH4,3.9,kg/TJ,34.9442513784,kg -bd8e622d-54b3-3723-8454-4908b0790ad1,SESCO,II.1.1,Tucuman,AR-T,annual,2018,gas oil combustion consumption by to the public,8.960064456,TJ,N2O,3.9,kg/TJ,34.9442513784,kg -92e8f6b0-351e-35d6-9e02-34a8d9b28514,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,gas oil combustion consumption by public passenger transport,20.622229992,TJ,CO2,74100.0,kg/TJ,1528107.2424072002,kg -60a93b7b-74f6-3e02-a73c-0bf1adba770d,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,gas oil combustion consumption by public passenger transport,20.622229992,TJ,CH4,3.9,kg/TJ,80.4266969688,kg -60a93b7b-74f6-3e02-a73c-0bf1adba770d,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,gas oil combustion consumption by public passenger transport,20.622229992,TJ,N2O,3.9,kg/TJ,80.4266969688,kg -fca72ccf-6b85-3c33-bf5d-bcd9deb08e9c,SESCO,II.1.1,Chaco,AR-H,annual,2018,gas oil combustion consumption by public passenger transport,1.964736564,TJ,CO2,74100.0,kg/TJ,145586.9793924,kg -e7a73cac-99cc-3112-a50c-ad3d8a44f65b,SESCO,II.1.1,Chaco,AR-H,annual,2018,gas oil combustion consumption by public passenger transport,1.964736564,TJ,CH4,3.9,kg/TJ,7.6624725996,kg -e7a73cac-99cc-3112-a50c-ad3d8a44f65b,SESCO,II.1.1,Chaco,AR-H,annual,2018,gas oil combustion consumption by public passenger transport,1.964736564,TJ,N2O,3.9,kg/TJ,7.6624725996,kg -44bd3a4e-ad1f-3452-aeac-2a51dcf396c5,SESCO,II.1.1,Corrientes,AR-W,annual,2018,gas oil combustion consumption by public passenger transport,6.457418016,TJ,CO2,74100.0,kg/TJ,478494.6749856,kg -24410092-c403-3fbe-9fba-a315f6148dcf,SESCO,II.1.1,Corrientes,AR-W,annual,2018,gas oil combustion consumption by public passenger transport,6.457418016,TJ,CH4,3.9,kg/TJ,25.1839302624,kg -24410092-c403-3fbe-9fba-a315f6148dcf,SESCO,II.1.1,Corrientes,AR-W,annual,2018,gas oil combustion consumption by public passenger transport,6.457418016,TJ,N2O,3.9,kg/TJ,25.1839302624,kg -fc720e79-9bca-3e69-a76e-56a87491b1cf,SESCO,II.1.1,Córdoba,AR-X,annual,2018,gas oil combustion consumption by public passenger transport,45.605361228,TJ,CO2,74100.0,kg/TJ,3379357.2669948,kg -67b4522a-3b5c-3088-900e-a30ac3655ad1,SESCO,II.1.1,Córdoba,AR-X,annual,2018,gas oil combustion consumption by public passenger transport,45.605361228,TJ,CH4,3.9,kg/TJ,177.86090878919998,kg -67b4522a-3b5c-3088-900e-a30ac3655ad1,SESCO,II.1.1,Córdoba,AR-X,annual,2018,gas oil combustion consumption by public passenger transport,45.605361228,TJ,N2O,3.9,kg/TJ,177.86090878919998,kg -dcb06cb4-d6da-31a2-9e6e-f030cb6bdddc,SESCO,II.1.1,Entre Rios,AR-E,annual,2018,gas oil combustion consumption by public passenger transport,16.619169588,TJ,CO2,74100.0,kg/TJ,1231480.4664707999,kg -2d590843-78ed-3827-bf99-a6e07af21e1f,SESCO,II.1.1,Entre Rios,AR-E,annual,2018,gas oil combustion consumption by public passenger transport,16.619169588,TJ,CH4,3.9,kg/TJ,64.81476139319999,kg -2d590843-78ed-3827-bf99-a6e07af21e1f,SESCO,II.1.1,Entre Rios,AR-E,annual,2018,gas oil combustion consumption by public passenger transport,16.619169588,TJ,N2O,3.9,kg/TJ,64.81476139319999,kg -27c6116c-884c-3206-9dae-c4a8b80ede5b,SESCO,II.1.1,Jujuy,AR-Y,annual,2018,gas oil combustion consumption by public passenger transport,19.646245920000002,TJ,CO2,74100.0,kg/TJ,1455786.8226720002,kg -323c9f3a-3010-3f27-b198-4a547ae7a293,SESCO,II.1.1,Jujuy,AR-Y,annual,2018,gas oil combustion consumption by public passenger transport,19.646245920000002,TJ,CH4,3.9,kg/TJ,76.620359088,kg -323c9f3a-3010-3f27-b198-4a547ae7a293,SESCO,II.1.1,Jujuy,AR-Y,annual,2018,gas oil combustion consumption by public passenger transport,19.646245920000002,TJ,N2O,3.9,kg/TJ,76.620359088,kg -5627dd27-6e8b-30ae-bd32-1fc3906672c6,SESCO,II.1.1,Salta,AR-A,annual,2018,gas oil combustion consumption by public passenger transport,13.89133662,TJ,CO2,74100.0,kg/TJ,1029348.043542,kg -26b47f93-a5c0-33b2-8854-4faa5bd23a4d,SESCO,II.1.1,Salta,AR-A,annual,2018,gas oil combustion consumption by public passenger transport,13.89133662,TJ,CH4,3.9,kg/TJ,54.176212818,kg -26b47f93-a5c0-33b2-8854-4faa5bd23a4d,SESCO,II.1.1,Salta,AR-A,annual,2018,gas oil combustion consumption by public passenger transport,13.89133662,TJ,N2O,3.9,kg/TJ,54.176212818,kg -a00b54c0-90ee-39f2-b971-61df1aec854c,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,gas oil combustion consumption by public passenger transport,41.86300776,TJ,CO2,74100.0,kg/TJ,3102048.875016,kg -c9f1d04e-f924-3530-8db9-e5e6400e46fc,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,gas oil combustion consumption by public passenger transport,41.86300776,TJ,CH4,3.9,kg/TJ,163.265730264,kg -c9f1d04e-f924-3530-8db9-e5e6400e46fc,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,gas oil combustion consumption by public passenger transport,41.86300776,TJ,N2O,3.9,kg/TJ,163.265730264,kg -76e64e83-6e9f-3e8d-97fb-1751e328d398,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2018,gas oil combustion consumption by public passenger transport,18.94129188,TJ,CO2,74100.0,kg/TJ,1403549.7283080001,kg -906e14e0-4277-33c0-8478-af9721eff638,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2018,gas oil combustion consumption by public passenger transport,18.94129188,TJ,CH4,3.9,kg/TJ,73.871038332,kg -906e14e0-4277-33c0-8478-af9721eff638,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2018,gas oil combustion consumption by public passenger transport,18.94129188,TJ,N2O,3.9,kg/TJ,73.871038332,kg -6228c3cd-6163-3615-883d-0a3d099d6fed,SESCO,II.1.1,Tucuman,AR-T,annual,2018,gas oil combustion consumption by public passenger transport,5.390523516,TJ,CO2,74100.0,kg/TJ,399437.7925356,kg -1c66adf7-767e-3e17-affe-62670c97c6c1,SESCO,II.1.1,Tucuman,AR-T,annual,2018,gas oil combustion consumption by public passenger transport,5.390523516,TJ,CH4,3.9,kg/TJ,21.0230417124,kg -1c66adf7-767e-3e17-affe-62670c97c6c1,SESCO,II.1.1,Tucuman,AR-T,annual,2018,gas oil combustion consumption by public passenger transport,5.390523516,TJ,N2O,3.9,kg/TJ,21.0230417124,kg -d3a7e212-8b9e-3923-8eac-31053abc6d56,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,gas oil combustion consumption by public passenger transport,2.7527052000000003,TJ,CO2,74100.0,kg/TJ,203975.45532,kg -228d467c-d625-34cf-80c0-47fb65ff60b6,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,gas oil combustion consumption by public passenger transport,2.7527052000000003,TJ,CH4,3.9,kg/TJ,10.735550280000002,kg -228d467c-d625-34cf-80c0-47fb65ff60b6,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,gas oil combustion consumption by public passenger transport,2.7527052000000003,TJ,N2O,3.9,kg/TJ,10.735550280000002,kg -bb4cbc86-6d35-39c7-8871-b9c4e10619ac,SESCO,II.1.1,Corrientes,AR-W,annual,2018,gas oil combustion consumption by public passenger transport,1.287580476,TJ,CO2,74100.0,kg/TJ,95409.7132716,kg -a633401c-de33-39be-ba43-c201db9dda79,SESCO,II.1.1,Corrientes,AR-W,annual,2018,gas oil combustion consumption by public passenger transport,1.287580476,TJ,CH4,3.9,kg/TJ,5.0215638564,kg -a633401c-de33-39be-ba43-c201db9dda79,SESCO,II.1.1,Corrientes,AR-W,annual,2018,gas oil combustion consumption by public passenger transport,1.287580476,TJ,N2O,3.9,kg/TJ,5.0215638564,kg -b4b0f800-c8c3-340d-a49e-d70e001ac18b,SESCO,II.1.1,Córdoba,AR-X,annual,2018,gas oil combustion consumption by public passenger transport,5.003573567999999,TJ,CO2,74100.0,kg/TJ,370764.80138879997,kg -93130626-5bb3-3f78-8cae-1d0f534e20e3,SESCO,II.1.1,Córdoba,AR-X,annual,2018,gas oil combustion consumption by public passenger transport,5.003573567999999,TJ,CH4,3.9,kg/TJ,19.513936915199995,kg -93130626-5bb3-3f78-8cae-1d0f534e20e3,SESCO,II.1.1,Córdoba,AR-X,annual,2018,gas oil combustion consumption by public passenger transport,5.003573567999999,TJ,N2O,3.9,kg/TJ,19.513936915199995,kg -479f2808-8f62-3e70-bf1e-1da5ebae29db,SESCO,II.1.1,Entre Rios,AR-E,annual,2018,gas oil combustion consumption by public passenger transport,1.145343528,TJ,CO2,74100.0,kg/TJ,84869.95542479999,kg -cf7ad199-4de7-3993-b946-62fea143f9aa,SESCO,II.1.1,Entre Rios,AR-E,annual,2018,gas oil combustion consumption by public passenger transport,1.145343528,TJ,CH4,3.9,kg/TJ,4.4668397592,kg -cf7ad199-4de7-3993-b946-62fea143f9aa,SESCO,II.1.1,Entre Rios,AR-E,annual,2018,gas oil combustion consumption by public passenger transport,1.145343528,TJ,N2O,3.9,kg/TJ,4.4668397592,kg -2d1b951b-017d-38d6-89b7-49638725f819,SESCO,II.1.1,Jujuy,AR-Y,annual,2018,gas oil combustion consumption by public passenger transport,1.036145544,TJ,CO2,74100.0,kg/TJ,76778.3848104,kg -1bc3f84c-fab5-3f84-9489-5a11f1b66754,SESCO,II.1.1,Jujuy,AR-Y,annual,2018,gas oil combustion consumption by public passenger transport,1.036145544,TJ,CH4,3.9,kg/TJ,4.0409676216,kg -1bc3f84c-fab5-3f84-9489-5a11f1b66754,SESCO,II.1.1,Jujuy,AR-Y,annual,2018,gas oil combustion consumption by public passenger transport,1.036145544,TJ,N2O,3.9,kg/TJ,4.0409676216,kg -4c53df69-d681-3c39-a313-7657fc9ab34a,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,gas oil combustion consumption by public passenger transport,7.9632860999999995,TJ,CO2,74100.0,kg/TJ,590079.50001,kg -27985118-12d0-3809-ad1f-1caf4bb1223e,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,gas oil combustion consumption by public passenger transport,7.9632860999999995,TJ,CH4,3.9,kg/TJ,31.056815789999998,kg -27985118-12d0-3809-ad1f-1caf4bb1223e,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,gas oil combustion consumption by public passenger transport,7.9632860999999995,TJ,N2O,3.9,kg/TJ,31.056815789999998,kg -a29d14da-e163-3a33-b2e0-ec751442eaf3,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2018,gas oil combustion consumption by public passenger transport,2.1060416159999997,TJ,CO2,74100.0,kg/TJ,156057.6837456,kg -e797a2fc-4a18-367c-a959-9f36561906ad,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2018,gas oil combustion consumption by public passenger transport,2.1060416159999997,TJ,CH4,3.9,kg/TJ,8.213562302399998,kg -e797a2fc-4a18-367c-a959-9f36561906ad,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2018,gas oil combustion consumption by public passenger transport,2.1060416159999997,TJ,N2O,3.9,kg/TJ,8.213562302399998,kg -2b47b649-d913-393b-a41d-d1834b37c414,SESCO,II.1.1,Tucuman,AR-T,annual,2018,gas oil combustion consumption by public passenger transport,0.9287029919999998,TJ,CO2,74100.0,kg/TJ,68816.89170719999,kg -0122c151-f5c0-3e1b-94dd-52b883771934,SESCO,II.1.1,Tucuman,AR-T,annual,2018,gas oil combustion consumption by public passenger transport,0.9287029919999998,TJ,CH4,3.9,kg/TJ,3.6219416687999995,kg -0122c151-f5c0-3e1b-94dd-52b883771934,SESCO,II.1.1,Tucuman,AR-T,annual,2018,gas oil combustion consumption by public passenger transport,0.9287029919999998,TJ,N2O,3.9,kg/TJ,3.6219416687999995,kg -10a9e729-a64c-3c9f-a211-2348fae96ed2,SESCO,II.5.1,Buenos Aires,AR-B,annual,2018,gas oil combustion consumption by agriculture machines,976.35972,TJ,CO2,74100.0,kg/TJ,72348255.252,kg -b63e176f-89db-36d7-9128-9510b232f475,SESCO,II.5.1,Buenos Aires,AR-B,annual,2018,gas oil combustion consumption by agriculture machines,976.35972,TJ,CH4,3.9,kg/TJ,3807.802908,kg -b63e176f-89db-36d7-9128-9510b232f475,SESCO,II.5.1,Buenos Aires,AR-B,annual,2018,gas oil combustion consumption by agriculture machines,976.35972,TJ,N2O,3.9,kg/TJ,3807.802908,kg -0be4b689-13eb-3757-9037-0874500b7c14,SESCO,II.5.1,Chaco,AR-H,annual,2018,gas oil combustion consumption by agriculture machines,188.76312,TJ,CO2,74100.0,kg/TJ,13987347.192,kg -e753406c-2200-36c1-a65f-2496a93f5b82,SESCO,II.5.1,Chaco,AR-H,annual,2018,gas oil combustion consumption by agriculture machines,188.76312,TJ,CH4,3.9,kg/TJ,736.176168,kg -e753406c-2200-36c1-a65f-2496a93f5b82,SESCO,II.5.1,Chaco,AR-H,annual,2018,gas oil combustion consumption by agriculture machines,188.76312,TJ,N2O,3.9,kg/TJ,736.176168,kg -80f37125-5042-3412-a450-be55389608b6,SESCO,II.5.1,Corrientes,AR-W,annual,2018,gas oil combustion consumption by agriculture machines,65.88288,TJ,CO2,74100.0,kg/TJ,4881921.408,kg -4b61b60c-3cc8-3c08-9ba6-d5eb77c381e1,SESCO,II.5.1,Corrientes,AR-W,annual,2018,gas oil combustion consumption by agriculture machines,65.88288,TJ,CH4,3.9,kg/TJ,256.94323199999997,kg -4b61b60c-3cc8-3c08-9ba6-d5eb77c381e1,SESCO,II.5.1,Corrientes,AR-W,annual,2018,gas oil combustion consumption by agriculture machines,65.88288,TJ,N2O,3.9,kg/TJ,256.94323199999997,kg -fbd44267-0f11-35cd-931c-7dc7a907c587,SESCO,II.5.1,Córdoba,AR-X,annual,2018,gas oil combustion consumption by agriculture machines,871.79232,TJ,CO2,74100.0,kg/TJ,64599810.912,kg -b333e8cd-eb58-322c-b26c-221120f57898,SESCO,II.5.1,Córdoba,AR-X,annual,2018,gas oil combustion consumption by agriculture machines,871.79232,TJ,CH4,3.9,kg/TJ,3399.990048,kg -b333e8cd-eb58-322c-b26c-221120f57898,SESCO,II.5.1,Córdoba,AR-X,annual,2018,gas oil combustion consumption by agriculture machines,871.79232,TJ,N2O,3.9,kg/TJ,3399.990048,kg -0bf037d7-0299-30e9-baab-d19689b188e4,SESCO,II.5.1,Entre Rios,AR-E,annual,2018,gas oil combustion consumption by agriculture machines,60.356519999999996,TJ,CO2,74100.0,kg/TJ,4472418.131999999,kg -6f6f14f2-46f9-358e-bdd5-0c44d2655648,SESCO,II.5.1,Entre Rios,AR-E,annual,2018,gas oil combustion consumption by agriculture machines,60.356519999999996,TJ,CH4,3.9,kg/TJ,235.39042799999999,kg -6f6f14f2-46f9-358e-bdd5-0c44d2655648,SESCO,II.5.1,Entre Rios,AR-E,annual,2018,gas oil combustion consumption by agriculture machines,60.356519999999996,TJ,N2O,3.9,kg/TJ,235.39042799999999,kg -cd805883-98c7-3571-9a07-f25ceb06e603,SESCO,II.5.1,Mendoza,AR-M,annual,2018,gas oil combustion consumption by agriculture machines,242.25683999999998,TJ,CO2,74100.0,kg/TJ,17951231.844,kg -b1599e20-3f08-3659-97c8-2dfcd3ea380a,SESCO,II.5.1,Mendoza,AR-M,annual,2018,gas oil combustion consumption by agriculture machines,242.25683999999998,TJ,CH4,3.9,kg/TJ,944.8016759999999,kg -b1599e20-3f08-3659-97c8-2dfcd3ea380a,SESCO,II.5.1,Mendoza,AR-M,annual,2018,gas oil combustion consumption by agriculture machines,242.25683999999998,TJ,N2O,3.9,kg/TJ,944.8016759999999,kg -46e81395-e04a-3e9b-9fcb-59efd6420654,SESCO,II.5.1,Santa Fe,AR-S,annual,2018,gas oil combustion consumption by agriculture machines,1243.7921999999999,TJ,CO2,74100.0,kg/TJ,92165002.02,kg -24e5a7aa-979b-3c67-a07a-4487db036c58,SESCO,II.5.1,Santa Fe,AR-S,annual,2018,gas oil combustion consumption by agriculture machines,1243.7921999999999,TJ,CH4,3.9,kg/TJ,4850.78958,kg -24e5a7aa-979b-3c67-a07a-4487db036c58,SESCO,II.5.1,Santa Fe,AR-S,annual,2018,gas oil combustion consumption by agriculture machines,1243.7921999999999,TJ,N2O,3.9,kg/TJ,4850.78958,kg -09e1a690-26ff-30dc-bcdc-65f772ae1f1d,SESCO,II.5.1,Tucuman,AR-T,annual,2018,gas oil combustion consumption by agriculture machines,86.54352,TJ,CO2,74100.0,kg/TJ,6412874.832,kg -5d79c1b9-b1de-3d3e-85f6-3bb57fe2e841,SESCO,II.5.1,Tucuman,AR-T,annual,2018,gas oil combustion consumption by agriculture machines,86.54352,TJ,CH4,3.9,kg/TJ,337.519728,kg -5d79c1b9-b1de-3d3e-85f6-3bb57fe2e841,SESCO,II.5.1,Tucuman,AR-T,annual,2018,gas oil combustion consumption by agriculture machines,86.54352,TJ,N2O,3.9,kg/TJ,337.519728,kg -0503953c-dbfc-3295-99a7-1c0b0a74998f,SESCO,II.5.1,Buenos Aires,AR-B,annual,2018,gas oil combustion consumption by agriculture machines,40.23768,TJ,CO2,74100.0,kg/TJ,2981612.088,kg -0bf16a5e-b30b-35b4-bc4f-fe1ed0029788,SESCO,II.5.1,Buenos Aires,AR-B,annual,2018,gas oil combustion consumption by agriculture machines,40.23768,TJ,CH4,3.9,kg/TJ,156.926952,kg -0bf16a5e-b30b-35b4-bc4f-fe1ed0029788,SESCO,II.5.1,Buenos Aires,AR-B,annual,2018,gas oil combustion consumption by agriculture machines,40.23768,TJ,N2O,3.9,kg/TJ,156.926952,kg -3f628eda-42e9-323e-9305-f3cdaecc42dd,SESCO,II.5.1,Chaco,AR-H,annual,2018,gas oil combustion consumption by agriculture machines,52.33788,TJ,CO2,74100.0,kg/TJ,3878236.908,kg -eb765062-9e34-3170-8d99-6b0da8914569,SESCO,II.5.1,Chaco,AR-H,annual,2018,gas oil combustion consumption by agriculture machines,52.33788,TJ,CH4,3.9,kg/TJ,204.117732,kg -eb765062-9e34-3170-8d99-6b0da8914569,SESCO,II.5.1,Chaco,AR-H,annual,2018,gas oil combustion consumption by agriculture machines,52.33788,TJ,N2O,3.9,kg/TJ,204.117732,kg -81bbb153-432d-3f9a-9c77-a52ccd964fde,SESCO,II.5.1,Corrientes,AR-W,annual,2018,gas oil combustion consumption by agriculture machines,21.672,TJ,CO2,74100.0,kg/TJ,1605895.2,kg -23d70b2c-fc53-3086-b7f8-bc4ed86dac53,SESCO,II.5.1,Corrientes,AR-W,annual,2018,gas oil combustion consumption by agriculture machines,21.672,TJ,CH4,3.9,kg/TJ,84.5208,kg -23d70b2c-fc53-3086-b7f8-bc4ed86dac53,SESCO,II.5.1,Corrientes,AR-W,annual,2018,gas oil combustion consumption by agriculture machines,21.672,TJ,N2O,3.9,kg/TJ,84.5208,kg -da751f5b-d64e-39d8-b553-ecb63b5b4e53,SESCO,II.5.1,Córdoba,AR-X,annual,2018,gas oil combustion consumption by agriculture machines,55.48032,TJ,CO2,74100.0,kg/TJ,4111091.712,kg -85a9fc2a-f876-34b5-8431-0c93ddbe735e,SESCO,II.5.1,Córdoba,AR-X,annual,2018,gas oil combustion consumption by agriculture machines,55.48032,TJ,CH4,3.9,kg/TJ,216.373248,kg -85a9fc2a-f876-34b5-8431-0c93ddbe735e,SESCO,II.5.1,Córdoba,AR-X,annual,2018,gas oil combustion consumption by agriculture machines,55.48032,TJ,N2O,3.9,kg/TJ,216.373248,kg -069ad12a-833e-3622-a190-358ecf869900,SESCO,II.5.1,Mendoza,AR-M,annual,2018,gas oil combustion consumption by agriculture machines,80.15028,TJ,CO2,74100.0,kg/TJ,5939135.748,kg -7f43633a-9cba-3c59-8ed7-49e2ad87a21b,SESCO,II.5.1,Mendoza,AR-M,annual,2018,gas oil combustion consumption by agriculture machines,80.15028,TJ,CH4,3.9,kg/TJ,312.58609199999995,kg -7f43633a-9cba-3c59-8ed7-49e2ad87a21b,SESCO,II.5.1,Mendoza,AR-M,annual,2018,gas oil combustion consumption by agriculture machines,80.15028,TJ,N2O,3.9,kg/TJ,312.58609199999995,kg -5d2975c2-11f6-3890-8119-7f065c7096e4,SESCO,II.5.1,Santa Fe,AR-S,annual,2018,gas oil combustion consumption by agriculture machines,57.2502,TJ,CO2,74100.0,kg/TJ,4242239.82,kg -cf9ce32c-695d-363d-8291-8189a910d337,SESCO,II.5.1,Santa Fe,AR-S,annual,2018,gas oil combustion consumption by agriculture machines,57.2502,TJ,CH4,3.9,kg/TJ,223.27578,kg -cf9ce32c-695d-363d-8291-8189a910d337,SESCO,II.5.1,Santa Fe,AR-S,annual,2018,gas oil combustion consumption by agriculture machines,57.2502,TJ,N2O,3.9,kg/TJ,223.27578,kg -37e804dc-a7e2-3db3-8af3-13411c3da411,SESCO,II.5.1,Tucuman,AR-T,annual,2018,gas oil combustion consumption by agriculture machines,21.81648,TJ,CO2,74100.0,kg/TJ,1616601.1679999998,kg -eb4ce6d6-a309-3a27-b4a8-d07a7b965d3f,SESCO,II.5.1,Tucuman,AR-T,annual,2018,gas oil combustion consumption by agriculture machines,21.81648,TJ,CH4,3.9,kg/TJ,85.084272,kg -eb4ce6d6-a309-3a27-b4a8-d07a7b965d3f,SESCO,II.5.1,Tucuman,AR-T,annual,2018,gas oil combustion consumption by agriculture machines,21.81648,TJ,N2O,3.9,kg/TJ,85.084272,kg -a9d1011e-bc01-36d5-ae98-1aff351994b3,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,gas oil combustion consumption by to the public,6734.8629599999995,TJ,CO2,74100.0,kg/TJ,499053345.33599997,kg -c967db07-16ca-3e52-a669-f84398f6e375,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,gas oil combustion consumption by to the public,6734.8629599999995,TJ,CH4,3.9,kg/TJ,26265.965544,kg -c967db07-16ca-3e52-a669-f84398f6e375,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,gas oil combustion consumption by to the public,6734.8629599999995,TJ,N2O,3.9,kg/TJ,26265.965544,kg -f1b3e22b-bdd6-3cb1-8c38-8a0ea2c793ac,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,gas oil combustion consumption by to the public,653.5191599999999,TJ,CO2,74100.0,kg/TJ,48425769.756,kg -61d6bd1d-4e70-3b5a-b739-facb2ddbd76c,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,gas oil combustion consumption by to the public,653.5191599999999,TJ,CH4,3.9,kg/TJ,2548.7247239999997,kg -61d6bd1d-4e70-3b5a-b739-facb2ddbd76c,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,gas oil combustion consumption by to the public,653.5191599999999,TJ,N2O,3.9,kg/TJ,2548.7247239999997,kg -0382ea5e-bd3e-39cf-b951-d402d5053de6,SESCO,II.1.1,Catamarca,AR-K,annual,2018,gas oil combustion consumption by to the public,191.90556,TJ,CO2,74100.0,kg/TJ,14220201.996000001,kg -5d6c5568-451b-30b9-a3a9-f2368444f1fb,SESCO,II.1.1,Catamarca,AR-K,annual,2018,gas oil combustion consumption by to the public,191.90556,TJ,CH4,3.9,kg/TJ,748.431684,kg -5d6c5568-451b-30b9-a3a9-f2368444f1fb,SESCO,II.1.1,Catamarca,AR-K,annual,2018,gas oil combustion consumption by to the public,191.90556,TJ,N2O,3.9,kg/TJ,748.431684,kg -28f2162e-ec42-35d0-b453-a851e75244a8,SESCO,II.1.1,Chaco,AR-H,annual,2018,gas oil combustion consumption by to the public,240.88428,TJ,CO2,74100.0,kg/TJ,17849525.148,kg -4b8bfe07-00e4-3944-b9bb-68d5d50b306e,SESCO,II.1.1,Chaco,AR-H,annual,2018,gas oil combustion consumption by to the public,240.88428,TJ,CH4,3.9,kg/TJ,939.4486919999999,kg -4b8bfe07-00e4-3944-b9bb-68d5d50b306e,SESCO,II.1.1,Chaco,AR-H,annual,2018,gas oil combustion consumption by to the public,240.88428,TJ,N2O,3.9,kg/TJ,939.4486919999999,kg -bdc1a1e5-0b2a-364f-a12c-5f0c464d8a6e,SESCO,II.1.1,Chubut,AR-U,annual,2018,gas oil combustion consumption by to the public,925.53888,TJ,CO2,74100.0,kg/TJ,68582431.008,kg -e8d35c0b-ecaa-3cd5-92a6-1c2a1afb7644,SESCO,II.1.1,Chubut,AR-U,annual,2018,gas oil combustion consumption by to the public,925.53888,TJ,CH4,3.9,kg/TJ,3609.601632,kg -e8d35c0b-ecaa-3cd5-92a6-1c2a1afb7644,SESCO,II.1.1,Chubut,AR-U,annual,2018,gas oil combustion consumption by to the public,925.53888,TJ,N2O,3.9,kg/TJ,3609.601632,kg -1cc31470-9f7a-33e2-9816-62c11642dc9f,SESCO,II.1.1,Corrientes,AR-W,annual,2018,gas oil combustion consumption by to the public,433.33164,TJ,CO2,74100.0,kg/TJ,32109874.524,kg -16c118b6-24fd-384a-aeef-a9c6aad49196,SESCO,II.1.1,Corrientes,AR-W,annual,2018,gas oil combustion consumption by to the public,433.33164,TJ,CH4,3.9,kg/TJ,1689.9933959999998,kg -16c118b6-24fd-384a-aeef-a9c6aad49196,SESCO,II.1.1,Corrientes,AR-W,annual,2018,gas oil combustion consumption by to the public,433.33164,TJ,N2O,3.9,kg/TJ,1689.9933959999998,kg -8869935e-2349-3250-b496-f57610505596,SESCO,II.1.1,Córdoba,AR-X,annual,2018,gas oil combustion consumption by to the public,2909.53824,TJ,CO2,74100.0,kg/TJ,215596783.584,kg -957617d9-c141-3c2c-87e8-d41c1120fe4a,SESCO,II.1.1,Córdoba,AR-X,annual,2018,gas oil combustion consumption by to the public,2909.53824,TJ,CH4,3.9,kg/TJ,11347.199136,kg -957617d9-c141-3c2c-87e8-d41c1120fe4a,SESCO,II.1.1,Córdoba,AR-X,annual,2018,gas oil combustion consumption by to the public,2909.53824,TJ,N2O,3.9,kg/TJ,11347.199136,kg -9fa10010-b1bc-361d-b079-9c5a6bad9111,SESCO,II.1.1,Entre Rios,AR-E,annual,2018,gas oil combustion consumption by to the public,1027.9752,TJ,CO2,74100.0,kg/TJ,76172962.32000001,kg -d54aebad-9563-3814-8045-e1be7c5e2d60,SESCO,II.1.1,Entre Rios,AR-E,annual,2018,gas oil combustion consumption by to the public,1027.9752,TJ,CH4,3.9,kg/TJ,4009.1032800000003,kg -d54aebad-9563-3814-8045-e1be7c5e2d60,SESCO,II.1.1,Entre Rios,AR-E,annual,2018,gas oil combustion consumption by to the public,1027.9752,TJ,N2O,3.9,kg/TJ,4009.1032800000003,kg -5c07c325-6ac9-3927-8477-d62d7bfadb80,SESCO,II.1.1,Formosa,AR-P,annual,2018,gas oil combustion consumption by to the public,369.57984,TJ,CO2,74100.0,kg/TJ,27385866.143999998,kg -fe8ef99d-0ae2-38b5-8e9f-770a9480c9b2,SESCO,II.1.1,Formosa,AR-P,annual,2018,gas oil combustion consumption by to the public,369.57984,TJ,CH4,3.9,kg/TJ,1441.3613759999998,kg -fe8ef99d-0ae2-38b5-8e9f-770a9480c9b2,SESCO,II.1.1,Formosa,AR-P,annual,2018,gas oil combustion consumption by to the public,369.57984,TJ,N2O,3.9,kg/TJ,1441.3613759999998,kg -9f6f8397-e2ac-39da-afde-5310ab6b5e65,SESCO,II.1.1,Jujuy,AR-Y,annual,2018,gas oil combustion consumption by to the public,108.36,TJ,CO2,74100.0,kg/TJ,8029476.0,kg -d3c22005-46bf-341f-9fba-db05ec43a37e,SESCO,II.1.1,Jujuy,AR-Y,annual,2018,gas oil combustion consumption by to the public,108.36,TJ,CH4,3.9,kg/TJ,422.604,kg -d3c22005-46bf-341f-9fba-db05ec43a37e,SESCO,II.1.1,Jujuy,AR-Y,annual,2018,gas oil combustion consumption by to the public,108.36,TJ,N2O,3.9,kg/TJ,422.604,kg -5925eb69-b9be-3c8d-acbd-0a61c48908f4,SESCO,II.1.1,La Pampa,AR-L,annual,2018,gas oil combustion consumption by to the public,313.05204,TJ,CO2,74100.0,kg/TJ,23197156.163999997,kg -fb11c41b-8fd5-39e8-b506-2ab672e1f7e8,SESCO,II.1.1,La Pampa,AR-L,annual,2018,gas oil combustion consumption by to the public,313.05204,TJ,CH4,3.9,kg/TJ,1220.902956,kg -fb11c41b-8fd5-39e8-b506-2ab672e1f7e8,SESCO,II.1.1,La Pampa,AR-L,annual,2018,gas oil combustion consumption by to the public,313.05204,TJ,N2O,3.9,kg/TJ,1220.902956,kg -fa07285e-76ff-3f2f-a021-6e6415439e5e,SESCO,II.1.1,La Rioja,AR-F,annual,2018,gas oil combustion consumption by to the public,43.885799999999996,TJ,CO2,74100.0,kg/TJ,3251937.78,kg -cc9021d8-719c-3ee2-a0e7-3230d4f689a4,SESCO,II.1.1,La Rioja,AR-F,annual,2018,gas oil combustion consumption by to the public,43.885799999999996,TJ,CH4,3.9,kg/TJ,171.15462,kg -cc9021d8-719c-3ee2-a0e7-3230d4f689a4,SESCO,II.1.1,La Rioja,AR-F,annual,2018,gas oil combustion consumption by to the public,43.885799999999996,TJ,N2O,3.9,kg/TJ,171.15462,kg -ae388f59-8f26-3e9c-9512-044fc7139bef,SESCO,II.1.1,Mendoza,AR-M,annual,2018,gas oil combustion consumption by to the public,646.83696,TJ,CO2,74100.0,kg/TJ,47930618.736,kg -2d52ede1-8865-32eb-9a9e-cf1f4466eda9,SESCO,II.1.1,Mendoza,AR-M,annual,2018,gas oil combustion consumption by to the public,646.83696,TJ,CH4,3.9,kg/TJ,2522.664144,kg -2d52ede1-8865-32eb-9a9e-cf1f4466eda9,SESCO,II.1.1,Mendoza,AR-M,annual,2018,gas oil combustion consumption by to the public,646.83696,TJ,N2O,3.9,kg/TJ,2522.664144,kg -fd01f846-b2c5-3bbd-bdca-23f8107a1f0c,SESCO,II.1.1,Misiones,AR-N,annual,2018,gas oil combustion consumption by to the public,540.96924,TJ,CO2,74100.0,kg/TJ,40085820.684,kg -5b8f27d1-43eb-36af-a980-6d81f5d3a692,SESCO,II.1.1,Misiones,AR-N,annual,2018,gas oil combustion consumption by to the public,540.96924,TJ,CH4,3.9,kg/TJ,2109.780036,kg -5b8f27d1-43eb-36af-a980-6d81f5d3a692,SESCO,II.1.1,Misiones,AR-N,annual,2018,gas oil combustion consumption by to the public,540.96924,TJ,N2O,3.9,kg/TJ,2109.780036,kg -ccb23134-ca24-3681-9499-5207ac09cba0,SESCO,II.1.1,Neuquén,AR-Q,annual,2018,gas oil combustion consumption by to the public,128.15376,TJ,CO2,74100.0,kg/TJ,9496193.616,kg -a63d086c-22d0-3792-9f1a-9a36b74cf7e7,SESCO,II.1.1,Neuquén,AR-Q,annual,2018,gas oil combustion consumption by to the public,128.15376,TJ,CH4,3.9,kg/TJ,499.799664,kg -a63d086c-22d0-3792-9f1a-9a36b74cf7e7,SESCO,II.1.1,Neuquén,AR-Q,annual,2018,gas oil combustion consumption by to the public,128.15376,TJ,N2O,3.9,kg/TJ,499.799664,kg -c4858b45-6590-351d-b435-61ce5d72255f,SESCO,II.1.1,Rio Negro,AR-R,annual,2018,gas oil combustion consumption by to the public,370.80791999999997,TJ,CO2,74100.0,kg/TJ,27476866.871999998,kg -1bc594db-d257-35c4-ad43-0aa7ec802b78,SESCO,II.1.1,Rio Negro,AR-R,annual,2018,gas oil combustion consumption by to the public,370.80791999999997,TJ,CH4,3.9,kg/TJ,1446.150888,kg -1bc594db-d257-35c4-ad43-0aa7ec802b78,SESCO,II.1.1,Rio Negro,AR-R,annual,2018,gas oil combustion consumption by to the public,370.80791999999997,TJ,N2O,3.9,kg/TJ,1446.150888,kg -871363f6-9d95-344c-9757-820f0f38b101,SESCO,II.1.1,Salta,AR-A,annual,2018,gas oil combustion consumption by to the public,41.86308,TJ,CO2,74100.0,kg/TJ,3102054.2279999997,kg -0ee893a3-0c6e-34b4-913e-0222116fb865,SESCO,II.1.1,Salta,AR-A,annual,2018,gas oil combustion consumption by to the public,41.86308,TJ,CH4,3.9,kg/TJ,163.266012,kg -0ee893a3-0c6e-34b4-913e-0222116fb865,SESCO,II.1.1,Salta,AR-A,annual,2018,gas oil combustion consumption by to the public,41.86308,TJ,N2O,3.9,kg/TJ,163.266012,kg -e5294b87-13f9-3f68-916b-7fa8a933b588,SESCO,II.1.1,San Juan,AR-J,annual,2018,gas oil combustion consumption by to the public,259.91952,TJ,CO2,74100.0,kg/TJ,19260036.432,kg -2e4015a5-add1-3ebf-899e-9d81c1abca95,SESCO,II.1.1,San Juan,AR-J,annual,2018,gas oil combustion consumption by to the public,259.91952,TJ,CH4,3.9,kg/TJ,1013.6861279999999,kg -2e4015a5-add1-3ebf-899e-9d81c1abca95,SESCO,II.1.1,San Juan,AR-J,annual,2018,gas oil combustion consumption by to the public,259.91952,TJ,N2O,3.9,kg/TJ,1013.6861279999999,kg -2c1cac57-14e4-3fbb-aac8-7864eab2dca6,SESCO,II.1.1,San Luis,AR-D,annual,2018,gas oil combustion consumption by to the public,520.01964,TJ,CO2,74100.0,kg/TJ,38533455.324,kg -41ac8a64-d21e-3a1a-854e-06a48428f410,SESCO,II.1.1,San Luis,AR-D,annual,2018,gas oil combustion consumption by to the public,520.01964,TJ,CH4,3.9,kg/TJ,2028.0765959999999,kg -41ac8a64-d21e-3a1a-854e-06a48428f410,SESCO,II.1.1,San Luis,AR-D,annual,2018,gas oil combustion consumption by to the public,520.01964,TJ,N2O,3.9,kg/TJ,2028.0765959999999,kg -421b7e84-f487-3f70-bb2d-5de0215a9971,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2018,gas oil combustion consumption by to the public,383.34156,TJ,CO2,74100.0,kg/TJ,28405609.596,kg -b4a5c5c6-2d8c-36fa-a579-4333baa30134,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2018,gas oil combustion consumption by to the public,383.34156,TJ,CH4,3.9,kg/TJ,1495.032084,kg -b4a5c5c6-2d8c-36fa-a579-4333baa30134,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2018,gas oil combustion consumption by to the public,383.34156,TJ,N2O,3.9,kg/TJ,1495.032084,kg -a332ec35-618d-38e0-be2b-8f0ef47275f1,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,gas oil combustion consumption by to the public,1643.46,TJ,CO2,74100.0,kg/TJ,121780386.0,kg -777f6a66-11e5-36d6-acef-569cc365f05f,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,gas oil combustion consumption by to the public,1643.46,TJ,CH4,3.9,kg/TJ,6409.494,kg -777f6a66-11e5-36d6-acef-569cc365f05f,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,gas oil combustion consumption by to the public,1643.46,TJ,N2O,3.9,kg/TJ,6409.494,kg -564d89ce-ad24-3840-8da4-f018a32acb20,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2018,gas oil combustion consumption by to the public,270.86388,TJ,CO2,74100.0,kg/TJ,20071013.508,kg -72bb9e8d-cdfc-36c5-bcee-096df2b8166d,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2018,gas oil combustion consumption by to the public,270.86388,TJ,CH4,3.9,kg/TJ,1056.369132,kg -72bb9e8d-cdfc-36c5-bcee-096df2b8166d,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2018,gas oil combustion consumption by to the public,270.86388,TJ,N2O,3.9,kg/TJ,1056.369132,kg -b0edf4c5-d02e-34cf-a477-806411eb3a7d,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2018,gas oil combustion consumption by to the public,33.952799999999996,TJ,CO2,74100.0,kg/TJ,2515902.4799999995,kg -ff8270b9-8e96-3089-9305-3934da609ce1,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2018,gas oil combustion consumption by to the public,33.952799999999996,TJ,CH4,3.9,kg/TJ,132.41591999999997,kg -ff8270b9-8e96-3089-9305-3934da609ce1,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2018,gas oil combustion consumption by to the public,33.952799999999996,TJ,N2O,3.9,kg/TJ,132.41591999999997,kg -4e2d7148-d484-3da6-abbf-bbd23d2d971c,SESCO,II.1.1,Tucuman,AR-T,annual,2018,gas oil combustion consumption by to the public,59.27292,TJ,CO2,74100.0,kg/TJ,4392123.3719999995,kg -80b39511-799f-3b2a-b83d-40148b1d8503,SESCO,II.1.1,Tucuman,AR-T,annual,2018,gas oil combustion consumption by to the public,59.27292,TJ,CH4,3.9,kg/TJ,231.164388,kg -80b39511-799f-3b2a-b83d-40148b1d8503,SESCO,II.1.1,Tucuman,AR-T,annual,2018,gas oil combustion consumption by to the public,59.27292,TJ,N2O,3.9,kg/TJ,231.164388,kg -6ba018fb-1efc-3dd5-b1fb-18e8905e5f00,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,gas oil combustion consumption by to the public,2539.74168,TJ,CO2,74100.0,kg/TJ,188194858.488,kg -14c17f71-003b-3d17-9586-d60055c4fa55,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,gas oil combustion consumption by to the public,2539.74168,TJ,CH4,3.9,kg/TJ,9904.992552,kg -14c17f71-003b-3d17-9586-d60055c4fa55,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,gas oil combustion consumption by to the public,2539.74168,TJ,N2O,3.9,kg/TJ,9904.992552,kg -20602188-f71e-3ce7-b1a5-08c77edb5509,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,gas oil combustion consumption by to the public,458.68788,TJ,CO2,74100.0,kg/TJ,33988771.908,kg -32388462-48b3-3896-aa35-0e20a0f744ef,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,gas oil combustion consumption by to the public,458.68788,TJ,CH4,3.9,kg/TJ,1788.882732,kg -32388462-48b3-3896-aa35-0e20a0f744ef,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,gas oil combustion consumption by to the public,458.68788,TJ,N2O,3.9,kg/TJ,1788.882732,kg -7a72e145-498c-3fe7-b956-28415d67cacb,SESCO,II.1.1,Catamarca,AR-K,annual,2018,gas oil combustion consumption by to the public,146.6472,TJ,CO2,74100.0,kg/TJ,10866557.52,kg -58f1affa-1f22-3d89-a6d9-366eac59d26d,SESCO,II.1.1,Catamarca,AR-K,annual,2018,gas oil combustion consumption by to the public,146.6472,TJ,CH4,3.9,kg/TJ,571.92408,kg -58f1affa-1f22-3d89-a6d9-366eac59d26d,SESCO,II.1.1,Catamarca,AR-K,annual,2018,gas oil combustion consumption by to the public,146.6472,TJ,N2O,3.9,kg/TJ,571.92408,kg -8ee00f94-198a-3ccb-b97f-b2b0d2e4ac1e,SESCO,II.1.1,Chaco,AR-H,annual,2018,gas oil combustion consumption by to the public,97.99356,TJ,CO2,74100.0,kg/TJ,7261322.796,kg -997b396a-57df-3a88-b16d-15e2795628cc,SESCO,II.1.1,Chaco,AR-H,annual,2018,gas oil combustion consumption by to the public,97.99356,TJ,CH4,3.9,kg/TJ,382.174884,kg -997b396a-57df-3a88-b16d-15e2795628cc,SESCO,II.1.1,Chaco,AR-H,annual,2018,gas oil combustion consumption by to the public,97.99356,TJ,N2O,3.9,kg/TJ,382.174884,kg -6f9c1201-02b2-32db-8e80-18948366ba61,SESCO,II.1.1,Chubut,AR-U,annual,2018,gas oil combustion consumption by to the public,387.92879999999997,TJ,CO2,74100.0,kg/TJ,28745524.08,kg -4c0a2a96-f4c0-3523-8155-38237b71e22a,SESCO,II.1.1,Chubut,AR-U,annual,2018,gas oil combustion consumption by to the public,387.92879999999997,TJ,CH4,3.9,kg/TJ,1512.92232,kg -4c0a2a96-f4c0-3523-8155-38237b71e22a,SESCO,II.1.1,Chubut,AR-U,annual,2018,gas oil combustion consumption by to the public,387.92879999999997,TJ,N2O,3.9,kg/TJ,1512.92232,kg -6373dfc6-c7e4-3d46-859f-595b47246bce,SESCO,II.1.1,Corrientes,AR-W,annual,2018,gas oil combustion consumption by to the public,163.0818,TJ,CO2,74100.0,kg/TJ,12084361.379999999,kg -527f9827-08b3-3263-a877-20be935c03d8,SESCO,II.1.1,Corrientes,AR-W,annual,2018,gas oil combustion consumption by to the public,163.0818,TJ,CH4,3.9,kg/TJ,636.01902,kg -527f9827-08b3-3263-a877-20be935c03d8,SESCO,II.1.1,Corrientes,AR-W,annual,2018,gas oil combustion consumption by to the public,163.0818,TJ,N2O,3.9,kg/TJ,636.01902,kg -0433f5a7-a641-36c0-abdc-8dd3981efc54,SESCO,II.1.1,Córdoba,AR-X,annual,2018,gas oil combustion consumption by to the public,821.62164,TJ,CO2,74100.0,kg/TJ,60882163.524,kg -e5d077a8-5d33-3597-b700-6902cac41583,SESCO,II.1.1,Córdoba,AR-X,annual,2018,gas oil combustion consumption by to the public,821.62164,TJ,CH4,3.9,kg/TJ,3204.324396,kg -e5d077a8-5d33-3597-b700-6902cac41583,SESCO,II.1.1,Córdoba,AR-X,annual,2018,gas oil combustion consumption by to the public,821.62164,TJ,N2O,3.9,kg/TJ,3204.324396,kg -539a9941-163d-33eb-b1aa-23082cb7d911,SESCO,II.1.1,Entre Rios,AR-E,annual,2018,gas oil combustion consumption by to the public,376.98444,TJ,CO2,74100.0,kg/TJ,27934547.004,kg -f872d214-fcf6-346d-848c-a55f82f064c6,SESCO,II.1.1,Entre Rios,AR-E,annual,2018,gas oil combustion consumption by to the public,376.98444,TJ,CH4,3.9,kg/TJ,1470.239316,kg -f872d214-fcf6-346d-848c-a55f82f064c6,SESCO,II.1.1,Entre Rios,AR-E,annual,2018,gas oil combustion consumption by to the public,376.98444,TJ,N2O,3.9,kg/TJ,1470.239316,kg -4c2f77af-2e38-3a77-853e-9b527a39c1a4,SESCO,II.1.1,Formosa,AR-P,annual,2018,gas oil combustion consumption by to the public,213.108,TJ,CO2,74100.0,kg/TJ,15791302.8,kg -5b9ccdb2-354f-3f4d-b930-af94a4ff11de,SESCO,II.1.1,Formosa,AR-P,annual,2018,gas oil combustion consumption by to the public,213.108,TJ,CH4,3.9,kg/TJ,831.1212,kg -5b9ccdb2-354f-3f4d-b930-af94a4ff11de,SESCO,II.1.1,Formosa,AR-P,annual,2018,gas oil combustion consumption by to the public,213.108,TJ,N2O,3.9,kg/TJ,831.1212,kg -b7d80819-ee05-390c-9ef6-c3a6fb3a4b7f,SESCO,II.1.1,Jujuy,AR-Y,annual,2018,gas oil combustion consumption by to the public,50.24292,TJ,CO2,74100.0,kg/TJ,3723000.372,kg -f5bdff82-04db-31de-b265-1e612a0992e2,SESCO,II.1.1,Jujuy,AR-Y,annual,2018,gas oil combustion consumption by to the public,50.24292,TJ,CH4,3.9,kg/TJ,195.947388,kg -f5bdff82-04db-31de-b265-1e612a0992e2,SESCO,II.1.1,Jujuy,AR-Y,annual,2018,gas oil combustion consumption by to the public,50.24292,TJ,N2O,3.9,kg/TJ,195.947388,kg -94329e3a-09da-3c87-87f7-14912c990701,SESCO,II.1.1,La Pampa,AR-L,annual,2018,gas oil combustion consumption by to the public,114.03084,TJ,CO2,74100.0,kg/TJ,8449685.243999999,kg -5c541777-ddd2-30ad-9082-5fb997fe2d3c,SESCO,II.1.1,La Pampa,AR-L,annual,2018,gas oil combustion consumption by to the public,114.03084,TJ,CH4,3.9,kg/TJ,444.72027599999996,kg -5c541777-ddd2-30ad-9082-5fb997fe2d3c,SESCO,II.1.1,La Pampa,AR-L,annual,2018,gas oil combustion consumption by to the public,114.03084,TJ,N2O,3.9,kg/TJ,444.72027599999996,kg -eed2ee45-920a-3d6e-aaf5-7432f5662a82,SESCO,II.1.1,La Rioja,AR-F,annual,2018,gas oil combustion consumption by to the public,52.30176,TJ,CO2,74100.0,kg/TJ,3875560.416,kg -e11fb791-136b-35c7-8704-02ca3f23e3b9,SESCO,II.1.1,La Rioja,AR-F,annual,2018,gas oil combustion consumption by to the public,52.30176,TJ,CH4,3.9,kg/TJ,203.976864,kg -e11fb791-136b-35c7-8704-02ca3f23e3b9,SESCO,II.1.1,La Rioja,AR-F,annual,2018,gas oil combustion consumption by to the public,52.30176,TJ,N2O,3.9,kg/TJ,203.976864,kg -ae6fe071-1fd2-3fd6-88b3-15948dab2a3c,SESCO,II.1.1,Mendoza,AR-M,annual,2018,gas oil combustion consumption by to the public,257.96904,TJ,CO2,74100.0,kg/TJ,19115505.864,kg -8c7f70fc-8a9b-390e-8489-531d6df3ba89,SESCO,II.1.1,Mendoza,AR-M,annual,2018,gas oil combustion consumption by to the public,257.96904,TJ,CH4,3.9,kg/TJ,1006.079256,kg -8c7f70fc-8a9b-390e-8489-531d6df3ba89,SESCO,II.1.1,Mendoza,AR-M,annual,2018,gas oil combustion consumption by to the public,257.96904,TJ,N2O,3.9,kg/TJ,1006.079256,kg -7d7b3da2-af68-38a8-9b97-47cc65cc740e,SESCO,II.1.1,Misiones,AR-N,annual,2018,gas oil combustion consumption by to the public,168.60816,TJ,CO2,74100.0,kg/TJ,12493864.656,kg -b2cf0bba-6210-3a0b-afac-e10b86103d27,SESCO,II.1.1,Misiones,AR-N,annual,2018,gas oil combustion consumption by to the public,168.60816,TJ,CH4,3.9,kg/TJ,657.571824,kg -b2cf0bba-6210-3a0b-afac-e10b86103d27,SESCO,II.1.1,Misiones,AR-N,annual,2018,gas oil combustion consumption by to the public,168.60816,TJ,N2O,3.9,kg/TJ,657.571824,kg -f800f6ee-d448-3582-8b51-279e0e769807,SESCO,II.1.1,Neuquén,AR-Q,annual,2018,gas oil combustion consumption by to the public,178.9746,TJ,CO2,74100.0,kg/TJ,13262017.860000001,kg -38a36f58-ebe3-3be1-89f8-d45f2cc3dec8,SESCO,II.1.1,Neuquén,AR-Q,annual,2018,gas oil combustion consumption by to the public,178.9746,TJ,CH4,3.9,kg/TJ,698.00094,kg -38a36f58-ebe3-3be1-89f8-d45f2cc3dec8,SESCO,II.1.1,Neuquén,AR-Q,annual,2018,gas oil combustion consumption by to the public,178.9746,TJ,N2O,3.9,kg/TJ,698.00094,kg -1b9ecd3a-598d-3919-8281-17700ffe8d99,SESCO,II.1.1,Rio Negro,AR-R,annual,2018,gas oil combustion consumption by to the public,235.28567999999999,TJ,CO2,74100.0,kg/TJ,17434668.888,kg -e1e0785e-fe78-3cd6-adb3-6f92940f907c,SESCO,II.1.1,Rio Negro,AR-R,annual,2018,gas oil combustion consumption by to the public,235.28567999999999,TJ,CH4,3.9,kg/TJ,917.6141519999999,kg -e1e0785e-fe78-3cd6-adb3-6f92940f907c,SESCO,II.1.1,Rio Negro,AR-R,annual,2018,gas oil combustion consumption by to the public,235.28567999999999,TJ,N2O,3.9,kg/TJ,917.6141519999999,kg -0159ea42-144c-34af-bf6f-9375fbd489d0,SESCO,II.1.1,Salta,AR-A,annual,2018,gas oil combustion consumption by to the public,30.62976,TJ,CO2,74100.0,kg/TJ,2269665.216,kg -ef86a670-1d17-3617-a960-58b4d87247f0,SESCO,II.1.1,Salta,AR-A,annual,2018,gas oil combustion consumption by to the public,30.62976,TJ,CH4,3.9,kg/TJ,119.456064,kg -ef86a670-1d17-3617-a960-58b4d87247f0,SESCO,II.1.1,Salta,AR-A,annual,2018,gas oil combustion consumption by to the public,30.62976,TJ,N2O,3.9,kg/TJ,119.456064,kg -52c008e4-e50b-3dc1-9421-f79c6f7eb006,SESCO,II.1.1,San Juan,AR-J,annual,2018,gas oil combustion consumption by to the public,91.16687999999999,TJ,CO2,74100.0,kg/TJ,6755465.807999999,kg -f98872b8-2998-383c-af45-0da158976a1b,SESCO,II.1.1,San Juan,AR-J,annual,2018,gas oil combustion consumption by to the public,91.16687999999999,TJ,CH4,3.9,kg/TJ,355.55083199999996,kg -f98872b8-2998-383c-af45-0da158976a1b,SESCO,II.1.1,San Juan,AR-J,annual,2018,gas oil combustion consumption by to the public,91.16687999999999,TJ,N2O,3.9,kg/TJ,355.55083199999996,kg -a4fc6c7b-cd40-30e2-9f82-7afe3191049f,SESCO,II.1.1,San Luis,AR-D,annual,2018,gas oil combustion consumption by to the public,134.65536,TJ,CO2,74100.0,kg/TJ,9977962.176,kg -42f5d3d3-8303-3b0b-93f7-f164fe36116b,SESCO,II.1.1,San Luis,AR-D,annual,2018,gas oil combustion consumption by to the public,134.65536,TJ,CH4,3.9,kg/TJ,525.155904,kg -42f5d3d3-8303-3b0b-93f7-f164fe36116b,SESCO,II.1.1,San Luis,AR-D,annual,2018,gas oil combustion consumption by to the public,134.65536,TJ,N2O,3.9,kg/TJ,525.155904,kg -94db4925-1098-38de-9212-8c3df50b481f,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2018,gas oil combustion consumption by to the public,206.20908,TJ,CO2,74100.0,kg/TJ,15280092.828,kg -17c316d1-4c74-3b82-858d-1e5496ab13c0,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2018,gas oil combustion consumption by to the public,206.20908,TJ,CH4,3.9,kg/TJ,804.215412,kg -17c316d1-4c74-3b82-858d-1e5496ab13c0,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2018,gas oil combustion consumption by to the public,206.20908,TJ,N2O,3.9,kg/TJ,804.215412,kg -42d1ad7c-711c-3a6c-93a4-0716d43ad309,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,gas oil combustion consumption by to the public,716.15124,TJ,CO2,74100.0,kg/TJ,53066806.884,kg -98955634-e6d4-3931-abde-fd35a37f8d5b,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,gas oil combustion consumption by to the public,716.15124,TJ,CH4,3.9,kg/TJ,2792.989836,kg -98955634-e6d4-3931-abde-fd35a37f8d5b,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,gas oil combustion consumption by to the public,716.15124,TJ,N2O,3.9,kg/TJ,2792.989836,kg -18ef7f06-4e1b-378b-9b45-e5e856ef54bf,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2018,gas oil combustion consumption by to the public,136.20852,TJ,CO2,74100.0,kg/TJ,10093051.332,kg -46a3779b-a345-305e-8f81-392736048282,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2018,gas oil combustion consumption by to the public,136.20852,TJ,CH4,3.9,kg/TJ,531.213228,kg -46a3779b-a345-305e-8f81-392736048282,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2018,gas oil combustion consumption by to the public,136.20852,TJ,N2O,3.9,kg/TJ,531.213228,kg -59940fa4-d726-3754-9695-818ad2bd16bb,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2018,gas oil combustion consumption by to the public,62.054159999999996,TJ,CO2,74100.0,kg/TJ,4598213.256,kg -876ba50b-4082-34d0-8908-9ee96dfe2687,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2018,gas oil combustion consumption by to the public,62.054159999999996,TJ,CH4,3.9,kg/TJ,242.01122399999997,kg -876ba50b-4082-34d0-8908-9ee96dfe2687,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2018,gas oil combustion consumption by to the public,62.054159999999996,TJ,N2O,3.9,kg/TJ,242.01122399999997,kg -17540e38-ade6-3031-95a9-973e33408375,SESCO,II.1.1,Tucuman,AR-T,annual,2018,gas oil combustion consumption by to the public,20.91348,TJ,CO2,74100.0,kg/TJ,1549688.868,kg -0ae90ada-5369-3a7f-8ce2-96dc37e28eba,SESCO,II.1.1,Tucuman,AR-T,annual,2018,gas oil combustion consumption by to the public,20.91348,TJ,CH4,3.9,kg/TJ,81.562572,kg -0ae90ada-5369-3a7f-8ce2-96dc37e28eba,SESCO,II.1.1,Tucuman,AR-T,annual,2018,gas oil combustion consumption by to the public,20.91348,TJ,N2O,3.9,kg/TJ,81.562572,kg -f31bd348-f2b0-3c36-b581-0140a71a69a7,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,jet kerosene combustion consumption by to the public,8.397950999999999,TJ,CO2,71500.0,kg/TJ,600453.4964999999,kg -dfdf1e36-edec-3f82-9f52-4fb90ce50eb1,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,jet kerosene combustion consumption by to the public,8.397950999999999,TJ,CH4,0.5,kg/TJ,4.1989754999999995,kg -da03b7d1-9d79-3a4b-9aa2-0869b5229436,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,jet kerosene combustion consumption by to the public,8.397950999999999,TJ,N2O,2.0,kg/TJ,16.795901999999998,kg -b0ac59bb-1b40-384d-ab1e-81a2e08de6d8,SESCO,II.1.1,Córdoba,AR-X,annual,2018,jet kerosene combustion consumption by to the public,4.214701999999999,TJ,CO2,71500.0,kg/TJ,301351.1929999999,kg -de71f510-b0f8-3165-8235-32fcf4c8ffba,SESCO,II.1.1,Córdoba,AR-X,annual,2018,jet kerosene combustion consumption by to the public,4.214701999999999,TJ,CH4,0.5,kg/TJ,2.1073509999999995,kg -b0d62bb1-4e1a-3c3f-9953-ddf0bc6e11dd,SESCO,II.1.1,Córdoba,AR-X,annual,2018,jet kerosene combustion consumption by to the public,4.214701999999999,TJ,N2O,2.0,kg/TJ,8.429403999999998,kg -a2e28935-1962-3961-908b-44f5ffec7371,SESCO,II.1.1,Entre Rios,AR-E,annual,2018,jet kerosene combustion consumption by to the public,2.0129919999999997,TJ,CO2,71500.0,kg/TJ,143928.92799999999,kg -044e9e65-5577-329e-8d50-37e3cc2dde68,SESCO,II.1.1,Entre Rios,AR-E,annual,2018,jet kerosene combustion consumption by to the public,2.0129919999999997,TJ,CH4,0.5,kg/TJ,1.0064959999999998,kg -2f4d482d-5fbe-3737-861d-079b01100550,SESCO,II.1.1,Entre Rios,AR-E,annual,2018,jet kerosene combustion consumption by to the public,2.0129919999999997,TJ,N2O,2.0,kg/TJ,4.025983999999999,kg -a325e54c-4718-32cc-bb38-3abbe8e35e8b,SESCO,II.1.1,Misiones,AR-N,annual,2018,jet kerosene combustion consumption by to the public,0.6605129999999999,TJ,CO2,71500.0,kg/TJ,47226.67949999999,kg -f2e82b4e-627b-3239-b444-d822cfb4cff2,SESCO,II.1.1,Misiones,AR-N,annual,2018,jet kerosene combustion consumption by to the public,0.6605129999999999,TJ,CH4,0.5,kg/TJ,0.33025649999999995,kg -a5052063-37a1-34fd-a71f-67d395945631,SESCO,II.1.1,Misiones,AR-N,annual,2018,jet kerosene combustion consumption by to the public,0.6605129999999999,TJ,N2O,2.0,kg/TJ,1.3210259999999998,kg -baf44c77-4723-33df-9bba-e730c8a9f908,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,jet kerosene combustion consumption by to the public,4.4977789999999995,TJ,CO2,71500.0,kg/TJ,321591.19849999994,kg -12271e99-d2be-342c-8e2e-822052bf80ab,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,jet kerosene combustion consumption by to the public,4.4977789999999995,TJ,CH4,0.5,kg/TJ,2.2488894999999998,kg -9cb3ec24-c4c5-358e-82a5-a36c3327442d,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,jet kerosene combustion consumption by to the public,4.4977789999999995,TJ,N2O,2.0,kg/TJ,8.995557999999999,kg -f6a38ac4-24c7-3e1f-992a-65cd619eb287,SESCO,I.3.1,San Luis,AR-D,annual,2018,gas oil combustion consumption by petrochemical industries,5.30964,TJ,CO2,74100.0,kg/TJ,393444.324,kg -04427c7a-a1b7-3667-902a-514cbeeca0a2,SESCO,I.3.1,San Luis,AR-D,annual,2018,gas oil combustion consumption by petrochemical industries,5.30964,TJ,CH4,3.9,kg/TJ,20.707596,kg -04427c7a-a1b7-3667-902a-514cbeeca0a2,SESCO,I.3.1,San Luis,AR-D,annual,2018,gas oil combustion consumption by petrochemical industries,5.30964,TJ,N2O,3.9,kg/TJ,20.707596,kg -4395b925-557e-3a41-8502-31b192ed04fd,SESCO,I.3.1,Capital Federal,AR-C,annual,2018,jet kerosene combustion consumption by petrochemical industries,2.20171,TJ,CO2,71500.0,kg/TJ,157422.26499999998,kg -0eefd8e7-1aaa-309e-bb54-d4039e0c77cb,SESCO,I.3.1,Capital Federal,AR-C,annual,2018,jet kerosene combustion consumption by petrochemical industries,2.20171,TJ,CH4,0.5,kg/TJ,1.100855,kg -5d2f9761-8e07-3a9a-8e85-c35bc4d193b8,SESCO,I.3.1,Capital Federal,AR-C,annual,2018,jet kerosene combustion consumption by petrochemical industries,2.20171,TJ,N2O,2.0,kg/TJ,4.40342,kg -e151d762-0f7a-3d04-9f66-9b5f9e7f32a2,SESCO,II.2.1,Buenos Aires,AR-B,annual,2018,gas oil combustion consumption by railway transport,176.69904,TJ,CO2,74100.0,kg/TJ,13093398.864,kg -6481aae7-bbae-3e38-a764-cae9fd1b6326,SESCO,II.2.1,Buenos Aires,AR-B,annual,2018,gas oil combustion consumption by railway transport,176.69904,TJ,CH4,3.9,kg/TJ,689.126256,kg -6481aae7-bbae-3e38-a764-cae9fd1b6326,SESCO,II.2.1,Buenos Aires,AR-B,annual,2018,gas oil combustion consumption by railway transport,176.69904,TJ,N2O,3.9,kg/TJ,689.126256,kg -23a5ada7-6b1a-31a0-91f7-1be76e2da253,SESCO,II.2.1,Capital Federal,AR-C,annual,2018,gas oil combustion consumption by railway transport,2.709,TJ,CO2,74100.0,kg/TJ,200736.9,kg -3b642f3e-23d3-3976-8709-314b4c84e4ab,SESCO,II.2.1,Capital Federal,AR-C,annual,2018,gas oil combustion consumption by railway transport,2.709,TJ,CH4,3.9,kg/TJ,10.5651,kg -3b642f3e-23d3-3976-8709-314b4c84e4ab,SESCO,II.2.1,Capital Federal,AR-C,annual,2018,gas oil combustion consumption by railway transport,2.709,TJ,N2O,3.9,kg/TJ,10.5651,kg -40143310-8ed6-320a-a34d-b389628f708e,SESCO,II.2.1,La Pampa,AR-L,annual,2018,gas oil combustion consumption by railway transport,52.51848,TJ,CO2,74100.0,kg/TJ,3891619.368,kg -6ca24daf-e5a8-346a-9cc5-bae5180ea3cb,SESCO,II.2.1,La Pampa,AR-L,annual,2018,gas oil combustion consumption by railway transport,52.51848,TJ,CH4,3.9,kg/TJ,204.822072,kg -6ca24daf-e5a8-346a-9cc5-bae5180ea3cb,SESCO,II.2.1,La Pampa,AR-L,annual,2018,gas oil combustion consumption by railway transport,52.51848,TJ,N2O,3.9,kg/TJ,204.822072,kg -a86410fe-b814-3a9a-9d92-77a204bd22a1,SESCO,II.2.1,Santa Fe,AR-S,annual,2018,gas oil combustion consumption by railway transport,150.40368,TJ,CO2,74100.0,kg/TJ,11144912.688000001,kg -624d759d-ca5b-3ded-a10c-761d8c875171,SESCO,II.2.1,Santa Fe,AR-S,annual,2018,gas oil combustion consumption by railway transport,150.40368,TJ,CH4,3.9,kg/TJ,586.574352,kg -624d759d-ca5b-3ded-a10c-761d8c875171,SESCO,II.2.1,Santa Fe,AR-S,annual,2018,gas oil combustion consumption by railway transport,150.40368,TJ,N2O,3.9,kg/TJ,586.574352,kg -d90ffed3-bcdd-306f-89ca-da03e4381f7e,SESCO,II.2.1,Santiago del Estero,AR-G,annual,2018,gas oil combustion consumption by railway transport,32.508,TJ,CO2,74100.0,kg/TJ,2408842.8000000003,kg -89883193-4da0-3480-b2c0-4ce0302a05f9,SESCO,II.2.1,Santiago del Estero,AR-G,annual,2018,gas oil combustion consumption by railway transport,32.508,TJ,CH4,3.9,kg/TJ,126.78120000000001,kg -89883193-4da0-3480-b2c0-4ce0302a05f9,SESCO,II.2.1,Santiago del Estero,AR-G,annual,2018,gas oil combustion consumption by railway transport,32.508,TJ,N2O,3.9,kg/TJ,126.78120000000001,kg -1ad13d8a-2ad6-32a8-9257-8ecb63ab58fc,SESCO,II.2.1,Tucuman,AR-T,annual,2018,gas oil combustion consumption by railway transport,13.0032,TJ,CO2,74100.0,kg/TJ,963537.12,kg -5e98c047-20a4-3965-9221-1e077fe86717,SESCO,II.2.1,Tucuman,AR-T,annual,2018,gas oil combustion consumption by railway transport,13.0032,TJ,CH4,3.9,kg/TJ,50.71248,kg -5e98c047-20a4-3965-9221-1e077fe86717,SESCO,II.2.1,Tucuman,AR-T,annual,2018,gas oil combustion consumption by railway transport,13.0032,TJ,N2O,3.9,kg/TJ,50.71248,kg -c2f6e218-24af-3cb7-b373-ddcc1a2957f5,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,gas oil combustion consumption by freight transport,1909.55604,TJ,CO2,74100.0,kg/TJ,141498102.56399998,kg -3acda01d-d96e-310c-ba94-a39dbfc464b8,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,gas oil combustion consumption by freight transport,1909.55604,TJ,CH4,3.9,kg/TJ,7447.268556,kg -3acda01d-d96e-310c-ba94-a39dbfc464b8,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,gas oil combustion consumption by freight transport,1909.55604,TJ,N2O,3.9,kg/TJ,7447.268556,kg -3b0c1c2f-1787-3ed0-a19f-738d05ab56a8,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,gas oil combustion consumption by freight transport,335.013,TJ,CO2,74100.0,kg/TJ,24824463.299999997,kg -5e8d07ab-2a5d-3631-9694-dd25c63dc16c,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,gas oil combustion consumption by freight transport,335.013,TJ,CH4,3.9,kg/TJ,1306.5506999999998,kg -5e8d07ab-2a5d-3631-9694-dd25c63dc16c,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,gas oil combustion consumption by freight transport,335.013,TJ,N2O,3.9,kg/TJ,1306.5506999999998,kg -95878816-91d2-33cf-ad28-917f098c9741,SESCO,II.1.1,Catamarca,AR-K,annual,2018,gas oil combustion consumption by freight transport,20.5884,TJ,CO2,74100.0,kg/TJ,1525600.44,kg -afb43165-3dd2-3dd5-aaed-26521ff15991,SESCO,II.1.1,Catamarca,AR-K,annual,2018,gas oil combustion consumption by freight transport,20.5884,TJ,CH4,3.9,kg/TJ,80.29476,kg -afb43165-3dd2-3dd5-aaed-26521ff15991,SESCO,II.1.1,Catamarca,AR-K,annual,2018,gas oil combustion consumption by freight transport,20.5884,TJ,N2O,3.9,kg/TJ,80.29476,kg -3ac82718-165e-36fe-b44d-fc9003bcdca7,SESCO,II.1.1,Chaco,AR-H,annual,2018,gas oil combustion consumption by freight transport,19.39644,TJ,CO2,74100.0,kg/TJ,1437276.204,kg -d5ff4c52-c2c4-3168-88f6-85039a9945f0,SESCO,II.1.1,Chaco,AR-H,annual,2018,gas oil combustion consumption by freight transport,19.39644,TJ,CH4,3.9,kg/TJ,75.64611599999999,kg -d5ff4c52-c2c4-3168-88f6-85039a9945f0,SESCO,II.1.1,Chaco,AR-H,annual,2018,gas oil combustion consumption by freight transport,19.39644,TJ,N2O,3.9,kg/TJ,75.64611599999999,kg -211451a8-497b-3c02-9507-cc1fc0175b7d,SESCO,II.1.1,Chubut,AR-U,annual,2018,gas oil combustion consumption by freight transport,19.46868,TJ,CO2,74100.0,kg/TJ,1442629.1879999998,kg -c4a5b13f-ba3b-3173-a170-43c5d9815f38,SESCO,II.1.1,Chubut,AR-U,annual,2018,gas oil combustion consumption by freight transport,19.46868,TJ,CH4,3.9,kg/TJ,75.927852,kg -c4a5b13f-ba3b-3173-a170-43c5d9815f38,SESCO,II.1.1,Chubut,AR-U,annual,2018,gas oil combustion consumption by freight transport,19.46868,TJ,N2O,3.9,kg/TJ,75.927852,kg -7bfce643-cb23-3c49-ab25-384e871af422,SESCO,II.1.1,Corrientes,AR-W,annual,2018,gas oil combustion consumption by freight transport,54.25224,TJ,CO2,74100.0,kg/TJ,4020090.984,kg -1526e0d4-990c-3703-9dcd-1e1b3573413d,SESCO,II.1.1,Corrientes,AR-W,annual,2018,gas oil combustion consumption by freight transport,54.25224,TJ,CH4,3.9,kg/TJ,211.583736,kg -1526e0d4-990c-3703-9dcd-1e1b3573413d,SESCO,II.1.1,Corrientes,AR-W,annual,2018,gas oil combustion consumption by freight transport,54.25224,TJ,N2O,3.9,kg/TJ,211.583736,kg -e0a07db7-8951-33cf-b0f1-5809d9114f20,SESCO,II.1.1,Córdoba,AR-X,annual,2018,gas oil combustion consumption by freight transport,303.98592,TJ,CO2,74100.0,kg/TJ,22525356.672000002,kg -765d6b5b-81ac-3d29-ba9a-ebc041dbf96f,SESCO,II.1.1,Córdoba,AR-X,annual,2018,gas oil combustion consumption by freight transport,303.98592,TJ,CH4,3.9,kg/TJ,1185.545088,kg -765d6b5b-81ac-3d29-ba9a-ebc041dbf96f,SESCO,II.1.1,Córdoba,AR-X,annual,2018,gas oil combustion consumption by freight transport,303.98592,TJ,N2O,3.9,kg/TJ,1185.545088,kg -72228221-36db-39c0-aa33-7731e3e36216,SESCO,II.1.1,Entre Rios,AR-E,annual,2018,gas oil combustion consumption by freight transport,218.74272,TJ,CO2,74100.0,kg/TJ,16208835.552,kg -8a946cc8-c319-3e23-88ea-e42d5e580a5c,SESCO,II.1.1,Entre Rios,AR-E,annual,2018,gas oil combustion consumption by freight transport,218.74272,TJ,CH4,3.9,kg/TJ,853.096608,kg -8a946cc8-c319-3e23-88ea-e42d5e580a5c,SESCO,II.1.1,Entre Rios,AR-E,annual,2018,gas oil combustion consumption by freight transport,218.74272,TJ,N2O,3.9,kg/TJ,853.096608,kg -313db581-de14-3488-9009-220e27f90bd8,SESCO,II.1.1,Formosa,AR-P,annual,2018,gas oil combustion consumption by freight transport,8.88552,TJ,CO2,74100.0,kg/TJ,658417.032,kg -66d1fb7b-449d-3754-b1d3-09934ee48e41,SESCO,II.1.1,Formosa,AR-P,annual,2018,gas oil combustion consumption by freight transport,8.88552,TJ,CH4,3.9,kg/TJ,34.653527999999994,kg -66d1fb7b-449d-3754-b1d3-09934ee48e41,SESCO,II.1.1,Formosa,AR-P,annual,2018,gas oil combustion consumption by freight transport,8.88552,TJ,N2O,3.9,kg/TJ,34.653527999999994,kg -4d9cc7c5-89e3-39fd-843b-ef6e8057753d,SESCO,II.1.1,Jujuy,AR-Y,annual,2018,gas oil combustion consumption by freight transport,6.42936,TJ,CO2,74100.0,kg/TJ,476415.576,kg -a86cd8e2-7530-3190-a599-a8f5ae062bb0,SESCO,II.1.1,Jujuy,AR-Y,annual,2018,gas oil combustion consumption by freight transport,6.42936,TJ,CH4,3.9,kg/TJ,25.074504,kg -a86cd8e2-7530-3190-a599-a8f5ae062bb0,SESCO,II.1.1,Jujuy,AR-Y,annual,2018,gas oil combustion consumption by freight transport,6.42936,TJ,N2O,3.9,kg/TJ,25.074504,kg -955e3523-fce1-3e54-ab54-88093788d4bd,SESCO,II.1.1,La Pampa,AR-L,annual,2018,gas oil combustion consumption by freight transport,15.856679999999999,TJ,CO2,74100.0,kg/TJ,1174979.988,kg -fcb035e7-f289-388a-91c2-5df4c0bc3c60,SESCO,II.1.1,La Pampa,AR-L,annual,2018,gas oil combustion consumption by freight transport,15.856679999999999,TJ,CH4,3.9,kg/TJ,61.841052,kg -fcb035e7-f289-388a-91c2-5df4c0bc3c60,SESCO,II.1.1,La Pampa,AR-L,annual,2018,gas oil combustion consumption by freight transport,15.856679999999999,TJ,N2O,3.9,kg/TJ,61.841052,kg -69d67ee5-09e8-3421-a860-f4a908aa814a,SESCO,II.1.1,La Rioja,AR-F,annual,2018,gas oil combustion consumption by freight transport,4.6956,TJ,CO2,74100.0,kg/TJ,347943.95999999996,kg -3cdbea87-73bf-30c0-a24f-60c1b59d2f0a,SESCO,II.1.1,La Rioja,AR-F,annual,2018,gas oil combustion consumption by freight transport,4.6956,TJ,CH4,3.9,kg/TJ,18.312839999999998,kg -3cdbea87-73bf-30c0-a24f-60c1b59d2f0a,SESCO,II.1.1,La Rioja,AR-F,annual,2018,gas oil combustion consumption by freight transport,4.6956,TJ,N2O,3.9,kg/TJ,18.312839999999998,kg -fa9a00a1-f621-3f69-a8d5-7b5a6584e096,SESCO,II.1.1,Mendoza,AR-M,annual,2018,gas oil combustion consumption by freight transport,106.9152,TJ,CO2,74100.0,kg/TJ,7922416.32,kg -0e4a556c-6570-3b7b-9c6c-795fd298238c,SESCO,II.1.1,Mendoza,AR-M,annual,2018,gas oil combustion consumption by freight transport,106.9152,TJ,CH4,3.9,kg/TJ,416.96927999999997,kg -0e4a556c-6570-3b7b-9c6c-795fd298238c,SESCO,II.1.1,Mendoza,AR-M,annual,2018,gas oil combustion consumption by freight transport,106.9152,TJ,N2O,3.9,kg/TJ,416.96927999999997,kg -43844cab-8414-3146-b66b-dcf3692d5e4c,SESCO,II.1.1,Misiones,AR-N,annual,2018,gas oil combustion consumption by freight transport,57.539159999999995,TJ,CO2,74100.0,kg/TJ,4263651.756,kg -4d89f0bd-4531-31a6-b2c5-7ba7ab828081,SESCO,II.1.1,Misiones,AR-N,annual,2018,gas oil combustion consumption by freight transport,57.539159999999995,TJ,CH4,3.9,kg/TJ,224.40272399999998,kg -4d89f0bd-4531-31a6-b2c5-7ba7ab828081,SESCO,II.1.1,Misiones,AR-N,annual,2018,gas oil combustion consumption by freight transport,57.539159999999995,TJ,N2O,3.9,kg/TJ,224.40272399999998,kg -890ead8d-e00f-32d2-bdea-78de8fa2d831,SESCO,II.1.1,Neuquén,AR-Q,annual,2018,gas oil combustion consumption by freight transport,2.13108,TJ,CO2,74100.0,kg/TJ,157913.028,kg -b54f1d96-6db5-395c-b249-ff5e9f96c657,SESCO,II.1.1,Neuquén,AR-Q,annual,2018,gas oil combustion consumption by freight transport,2.13108,TJ,CH4,3.9,kg/TJ,8.311212,kg -b54f1d96-6db5-395c-b249-ff5e9f96c657,SESCO,II.1.1,Neuquén,AR-Q,annual,2018,gas oil combustion consumption by freight transport,2.13108,TJ,N2O,3.9,kg/TJ,8.311212,kg -8086c004-a3c8-3210-a807-e33aea4b4761,SESCO,II.1.1,Rio Negro,AR-R,annual,2018,gas oil combustion consumption by freight transport,59.48964,TJ,CO2,74100.0,kg/TJ,4408182.324,kg -d9f7053b-910b-3b19-af76-d6f6e3706736,SESCO,II.1.1,Rio Negro,AR-R,annual,2018,gas oil combustion consumption by freight transport,59.48964,TJ,CH4,3.9,kg/TJ,232.009596,kg -d9f7053b-910b-3b19-af76-d6f6e3706736,SESCO,II.1.1,Rio Negro,AR-R,annual,2018,gas oil combustion consumption by freight transport,59.48964,TJ,N2O,3.9,kg/TJ,232.009596,kg -86448846-538d-3265-9903-7804ac6897e7,SESCO,II.1.1,Salta,AR-A,annual,2018,gas oil combustion consumption by freight transport,21.63588,TJ,CO2,74100.0,kg/TJ,1603218.708,kg -5892e1a4-df95-3f70-bb1f-569643fdcfa0,SESCO,II.1.1,Salta,AR-A,annual,2018,gas oil combustion consumption by freight transport,21.63588,TJ,CH4,3.9,kg/TJ,84.379932,kg -5892e1a4-df95-3f70-bb1f-569643fdcfa0,SESCO,II.1.1,Salta,AR-A,annual,2018,gas oil combustion consumption by freight transport,21.63588,TJ,N2O,3.9,kg/TJ,84.379932,kg -f90e320a-dacd-3a3f-82fb-080a6a8ad259,SESCO,II.1.1,San Juan,AR-J,annual,2018,gas oil combustion consumption by freight transport,6.57384,TJ,CO2,74100.0,kg/TJ,487121.544,kg -6f884b76-f873-3a4d-b49a-5ec973b538cf,SESCO,II.1.1,San Juan,AR-J,annual,2018,gas oil combustion consumption by freight transport,6.57384,TJ,CH4,3.9,kg/TJ,25.637976,kg -6f884b76-f873-3a4d-b49a-5ec973b538cf,SESCO,II.1.1,San Juan,AR-J,annual,2018,gas oil combustion consumption by freight transport,6.57384,TJ,N2O,3.9,kg/TJ,25.637976,kg -782d70a9-a077-3828-ad32-4ad3b84014c1,SESCO,II.1.1,San Luis,AR-D,annual,2018,gas oil combustion consumption by freight transport,49.8456,TJ,CO2,74100.0,kg/TJ,3693558.96,kg -7ecb9bc9-2cef-30c5-a0c8-571520f1b548,SESCO,II.1.1,San Luis,AR-D,annual,2018,gas oil combustion consumption by freight transport,49.8456,TJ,CH4,3.9,kg/TJ,194.39783999999997,kg -7ecb9bc9-2cef-30c5-a0c8-571520f1b548,SESCO,II.1.1,San Luis,AR-D,annual,2018,gas oil combustion consumption by freight transport,49.8456,TJ,N2O,3.9,kg/TJ,194.39783999999997,kg -78bcd87e-c8c9-310a-9f03-81b585fe9d1c,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,gas oil combustion consumption by freight transport,547.3986,TJ,CO2,74100.0,kg/TJ,40562236.26,kg -1846549b-5f26-324c-84f9-90526f433a64,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,gas oil combustion consumption by freight transport,547.3986,TJ,CH4,3.9,kg/TJ,2134.85454,kg -1846549b-5f26-324c-84f9-90526f433a64,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,gas oil combustion consumption by freight transport,547.3986,TJ,N2O,3.9,kg/TJ,2134.85454,kg -8d06bd2f-6985-3110-9ea5-b7edc9ec0a33,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2018,gas oil combustion consumption by freight transport,42.33264,TJ,CO2,74100.0,kg/TJ,3136848.624,kg -526002db-9663-32e5-911d-facbcc43b605,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2018,gas oil combustion consumption by freight transport,42.33264,TJ,CH4,3.9,kg/TJ,165.097296,kg -526002db-9663-32e5-911d-facbcc43b605,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2018,gas oil combustion consumption by freight transport,42.33264,TJ,N2O,3.9,kg/TJ,165.097296,kg -926d2b60-4887-388e-84dc-cfa15b8fd649,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2018,gas oil combustion consumption by freight transport,2.3478,TJ,CO2,74100.0,kg/TJ,173971.97999999998,kg -84cd8545-fe8a-324c-9a11-a10ba6924c02,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2018,gas oil combustion consumption by freight transport,2.3478,TJ,CH4,3.9,kg/TJ,9.156419999999999,kg -84cd8545-fe8a-324c-9a11-a10ba6924c02,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2018,gas oil combustion consumption by freight transport,2.3478,TJ,N2O,3.9,kg/TJ,9.156419999999999,kg -d836f5d6-da2c-3f19-aa4a-201533bee95e,SESCO,II.1.1,Tucuman,AR-T,annual,2018,gas oil combustion consumption by freight transport,41.68248,TJ,CO2,74100.0,kg/TJ,3088671.7679999997,kg -235ddc46-5a71-3ac6-9ab5-9bff0318fe76,SESCO,II.1.1,Tucuman,AR-T,annual,2018,gas oil combustion consumption by freight transport,41.68248,TJ,CH4,3.9,kg/TJ,162.561672,kg -235ddc46-5a71-3ac6-9ab5-9bff0318fe76,SESCO,II.1.1,Tucuman,AR-T,annual,2018,gas oil combustion consumption by freight transport,41.68248,TJ,N2O,3.9,kg/TJ,162.561672,kg -c5c05688-303b-3891-a8dc-40e34575b03f,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,gas oil combustion consumption by freight transport,177.45756,TJ,CO2,74100.0,kg/TJ,13149605.196,kg -8abd3579-6ae2-3bb1-a181-b0c30b96870d,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,gas oil combustion consumption by freight transport,177.45756,TJ,CH4,3.9,kg/TJ,692.084484,kg -8abd3579-6ae2-3bb1-a181-b0c30b96870d,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,gas oil combustion consumption by freight transport,177.45756,TJ,N2O,3.9,kg/TJ,692.084484,kg -3f4bc744-21b9-30f6-ac5b-ecf68d5a1f1b,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,gas oil combustion consumption by freight transport,69.78384,TJ,CO2,74100.0,kg/TJ,5170982.544,kg -2e72a889-431d-3370-b3eb-0962752b4838,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,gas oil combustion consumption by freight transport,69.78384,TJ,CH4,3.9,kg/TJ,272.156976,kg -2e72a889-431d-3370-b3eb-0962752b4838,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,gas oil combustion consumption by freight transport,69.78384,TJ,N2O,3.9,kg/TJ,272.156976,kg -a56853a9-e7e0-317c-8c22-8fa3308579e6,SESCO,II.1.1,Catamarca,AR-K,annual,2018,gas oil combustion consumption by freight transport,0.65016,TJ,CO2,74100.0,kg/TJ,48176.856,kg -e0901290-aef6-3ab6-9014-d0f31ecac4c1,SESCO,II.1.1,Catamarca,AR-K,annual,2018,gas oil combustion consumption by freight transport,0.65016,TJ,CH4,3.9,kg/TJ,2.535624,kg -e0901290-aef6-3ab6-9014-d0f31ecac4c1,SESCO,II.1.1,Catamarca,AR-K,annual,2018,gas oil combustion consumption by freight transport,0.65016,TJ,N2O,3.9,kg/TJ,2.535624,kg -ea6544e9-3324-3421-8e1c-8331375dfc2f,SESCO,II.1.1,Chaco,AR-H,annual,2018,gas oil combustion consumption by freight transport,0.28896,TJ,CO2,74100.0,kg/TJ,21411.935999999998,kg -004e9435-b770-35ff-b69a-669eb91a2ff9,SESCO,II.1.1,Chaco,AR-H,annual,2018,gas oil combustion consumption by freight transport,0.28896,TJ,CH4,3.9,kg/TJ,1.126944,kg -004e9435-b770-35ff-b69a-669eb91a2ff9,SESCO,II.1.1,Chaco,AR-H,annual,2018,gas oil combustion consumption by freight transport,0.28896,TJ,N2O,3.9,kg/TJ,1.126944,kg -4c71f2d9-a0c3-3435-b3a5-544e75442cd4,SESCO,II.1.1,Chubut,AR-U,annual,2018,gas oil combustion consumption by freight transport,4.26216,TJ,CO2,74100.0,kg/TJ,315826.056,kg -f34c5d01-4103-3b24-b569-4a284b124418,SESCO,II.1.1,Chubut,AR-U,annual,2018,gas oil combustion consumption by freight transport,4.26216,TJ,CH4,3.9,kg/TJ,16.622424,kg -f34c5d01-4103-3b24-b569-4a284b124418,SESCO,II.1.1,Chubut,AR-U,annual,2018,gas oil combustion consumption by freight transport,4.26216,TJ,N2O,3.9,kg/TJ,16.622424,kg -27b5d854-aac2-3659-8c73-145e20defb7a,SESCO,II.1.1,Corrientes,AR-W,annual,2018,gas oil combustion consumption by freight transport,8.41596,TJ,CO2,74100.0,kg/TJ,623622.636,kg -d738f0c7-e411-342b-b0c8-fd47d6488565,SESCO,II.1.1,Corrientes,AR-W,annual,2018,gas oil combustion consumption by freight transport,8.41596,TJ,CH4,3.9,kg/TJ,32.822244,kg -d738f0c7-e411-342b-b0c8-fd47d6488565,SESCO,II.1.1,Corrientes,AR-W,annual,2018,gas oil combustion consumption by freight transport,8.41596,TJ,N2O,3.9,kg/TJ,32.822244,kg -c4ba01ab-809b-3ac5-8fb6-e2c5a9c0cf5a,SESCO,II.1.1,Córdoba,AR-X,annual,2018,gas oil combustion consumption by freight transport,19.79376,TJ,CO2,74100.0,kg/TJ,1466717.616,kg -0667d481-ed38-33ad-a452-e1d7ae9f8141,SESCO,II.1.1,Córdoba,AR-X,annual,2018,gas oil combustion consumption by freight transport,19.79376,TJ,CH4,3.9,kg/TJ,77.195664,kg -0667d481-ed38-33ad-a452-e1d7ae9f8141,SESCO,II.1.1,Córdoba,AR-X,annual,2018,gas oil combustion consumption by freight transport,19.79376,TJ,N2O,3.9,kg/TJ,77.195664,kg -37e4eee7-fc4f-323a-986b-f7531bf99a0a,SESCO,II.1.1,Entre Rios,AR-E,annual,2018,gas oil combustion consumption by freight transport,8.993879999999999,TJ,CO2,74100.0,kg/TJ,666446.5079999999,kg -b82c7069-5ce9-3f8f-8e1f-0b4dfdd615aa,SESCO,II.1.1,Entre Rios,AR-E,annual,2018,gas oil combustion consumption by freight transport,8.993879999999999,TJ,CH4,3.9,kg/TJ,35.076131999999994,kg -b82c7069-5ce9-3f8f-8e1f-0b4dfdd615aa,SESCO,II.1.1,Entre Rios,AR-E,annual,2018,gas oil combustion consumption by freight transport,8.993879999999999,TJ,N2O,3.9,kg/TJ,35.076131999999994,kg -305a36a6-f20d-36ab-b4f1-e7ea97eba8df,SESCO,II.1.1,Formosa,AR-P,annual,2018,gas oil combustion consumption by freight transport,0.61404,TJ,CO2,74100.0,kg/TJ,45500.364,kg -222824bb-7b53-302a-b131-6a0d2183b1ce,SESCO,II.1.1,Formosa,AR-P,annual,2018,gas oil combustion consumption by freight transport,0.61404,TJ,CH4,3.9,kg/TJ,2.394756,kg -222824bb-7b53-302a-b131-6a0d2183b1ce,SESCO,II.1.1,Formosa,AR-P,annual,2018,gas oil combustion consumption by freight transport,0.61404,TJ,N2O,3.9,kg/TJ,2.394756,kg -a31e1058-9666-3b8a-a2d8-3eaf579e3d46,SESCO,II.1.1,Jujuy,AR-Y,annual,2018,gas oil combustion consumption by freight transport,0.25284,TJ,CO2,74100.0,kg/TJ,18735.444,kg -e0fefa02-5f99-30aa-8bbd-3bf7807840bb,SESCO,II.1.1,Jujuy,AR-Y,annual,2018,gas oil combustion consumption by freight transport,0.25284,TJ,CH4,3.9,kg/TJ,0.9860760000000001,kg -e0fefa02-5f99-30aa-8bbd-3bf7807840bb,SESCO,II.1.1,Jujuy,AR-Y,annual,2018,gas oil combustion consumption by freight transport,0.25284,TJ,N2O,3.9,kg/TJ,0.9860760000000001,kg -48c4e81d-a980-3100-9be8-20515cdf8d09,SESCO,II.1.1,La Pampa,AR-L,annual,2018,gas oil combustion consumption by freight transport,0.86688,TJ,CO2,74100.0,kg/TJ,64235.808,kg -f7e19fe5-c725-3f3d-a669-f743ca311b7e,SESCO,II.1.1,La Pampa,AR-L,annual,2018,gas oil combustion consumption by freight transport,0.86688,TJ,CH4,3.9,kg/TJ,3.380832,kg -f7e19fe5-c725-3f3d-a669-f743ca311b7e,SESCO,II.1.1,La Pampa,AR-L,annual,2018,gas oil combustion consumption by freight transport,0.86688,TJ,N2O,3.9,kg/TJ,3.380832,kg -3f7cd834-9b4a-322c-b16d-0d2dd66b22ca,SESCO,II.1.1,La Rioja,AR-F,annual,2018,gas oil combustion consumption by freight transport,0.61404,TJ,CO2,74100.0,kg/TJ,45500.364,kg -ac92cd78-4406-3d46-bf38-152169c78bd4,SESCO,II.1.1,La Rioja,AR-F,annual,2018,gas oil combustion consumption by freight transport,0.61404,TJ,CH4,3.9,kg/TJ,2.394756,kg -ac92cd78-4406-3d46-bf38-152169c78bd4,SESCO,II.1.1,La Rioja,AR-F,annual,2018,gas oil combustion consumption by freight transport,0.61404,TJ,N2O,3.9,kg/TJ,2.394756,kg -15e4b77b-4d1c-3010-ad10-a5afe9d43ebe,SESCO,II.1.1,Mendoza,AR-M,annual,2018,gas oil combustion consumption by freight transport,1.76988,TJ,CO2,74100.0,kg/TJ,131148.10799999998,kg -c7bc3706-2cee-30b0-87b6-9f1b97a1fec1,SESCO,II.1.1,Mendoza,AR-M,annual,2018,gas oil combustion consumption by freight transport,1.76988,TJ,CH4,3.9,kg/TJ,6.902531999999999,kg -c7bc3706-2cee-30b0-87b6-9f1b97a1fec1,SESCO,II.1.1,Mendoza,AR-M,annual,2018,gas oil combustion consumption by freight transport,1.76988,TJ,N2O,3.9,kg/TJ,6.902531999999999,kg -a543d3d5-c394-3abb-b24b-c119dcb2a5d2,SESCO,II.1.1,Misiones,AR-N,annual,2018,gas oil combustion consumption by freight transport,2.3478,TJ,CO2,74100.0,kg/TJ,173971.97999999998,kg -92e9f052-0d06-3aca-ac9c-f9bfdfd13f4c,SESCO,II.1.1,Misiones,AR-N,annual,2018,gas oil combustion consumption by freight transport,2.3478,TJ,CH4,3.9,kg/TJ,9.156419999999999,kg -92e9f052-0d06-3aca-ac9c-f9bfdfd13f4c,SESCO,II.1.1,Misiones,AR-N,annual,2018,gas oil combustion consumption by freight transport,2.3478,TJ,N2O,3.9,kg/TJ,9.156419999999999,kg -b6be1176-369f-37e3-ba74-545b16711859,SESCO,II.1.1,Neuquén,AR-Q,annual,2018,gas oil combustion consumption by freight transport,0.07224,TJ,CO2,74100.0,kg/TJ,5352.9839999999995,kg -70557f9e-bcad-3fd5-86fd-f132e3468700,SESCO,II.1.1,Neuquén,AR-Q,annual,2018,gas oil combustion consumption by freight transport,0.07224,TJ,CH4,3.9,kg/TJ,0.281736,kg -70557f9e-bcad-3fd5-86fd-f132e3468700,SESCO,II.1.1,Neuquén,AR-Q,annual,2018,gas oil combustion consumption by freight transport,0.07224,TJ,N2O,3.9,kg/TJ,0.281736,kg -257a64f3-4ba0-3605-a62c-8361232c7971,SESCO,II.1.1,Rio Negro,AR-R,annual,2018,gas oil combustion consumption by freight transport,9.03,TJ,CO2,74100.0,kg/TJ,669123.0,kg -cdcb89d9-704a-31e8-b090-a6bc2edfeb7e,SESCO,II.1.1,Rio Negro,AR-R,annual,2018,gas oil combustion consumption by freight transport,9.03,TJ,CH4,3.9,kg/TJ,35.217,kg -cdcb89d9-704a-31e8-b090-a6bc2edfeb7e,SESCO,II.1.1,Rio Negro,AR-R,annual,2018,gas oil combustion consumption by freight transport,9.03,TJ,N2O,3.9,kg/TJ,35.217,kg -03c4ba67-45c9-3bce-8882-d50369b2c674,SESCO,II.1.1,Salta,AR-A,annual,2018,gas oil combustion consumption by freight transport,0.36119999999999997,TJ,CO2,74100.0,kg/TJ,26764.92,kg -cd8ca964-b385-34fd-a5e7-74cd95819edb,SESCO,II.1.1,Salta,AR-A,annual,2018,gas oil combustion consumption by freight transport,0.36119999999999997,TJ,CH4,3.9,kg/TJ,1.40868,kg -cd8ca964-b385-34fd-a5e7-74cd95819edb,SESCO,II.1.1,Salta,AR-A,annual,2018,gas oil combustion consumption by freight transport,0.36119999999999997,TJ,N2O,3.9,kg/TJ,1.40868,kg -c19a8881-7868-3df5-bbd5-9b1071ddd210,SESCO,II.1.1,San Juan,AR-J,annual,2018,gas oil combustion consumption by freight transport,0.14448,TJ,CO2,74100.0,kg/TJ,10705.967999999999,kg -0c833d06-71a8-3521-97e1-29fd53d2648b,SESCO,II.1.1,San Juan,AR-J,annual,2018,gas oil combustion consumption by freight transport,0.14448,TJ,CH4,3.9,kg/TJ,0.563472,kg -0c833d06-71a8-3521-97e1-29fd53d2648b,SESCO,II.1.1,San Juan,AR-J,annual,2018,gas oil combustion consumption by freight transport,0.14448,TJ,N2O,3.9,kg/TJ,0.563472,kg -e7c648d2-2e29-33ed-acb5-729f3165497c,SESCO,II.1.1,San Luis,AR-D,annual,2018,gas oil combustion consumption by freight transport,2.1672,TJ,CO2,74100.0,kg/TJ,160589.52,kg -a8a81c8c-e255-3154-b128-d23420bcef43,SESCO,II.1.1,San Luis,AR-D,annual,2018,gas oil combustion consumption by freight transport,2.1672,TJ,CH4,3.9,kg/TJ,8.452079999999999,kg -a8a81c8c-e255-3154-b128-d23420bcef43,SESCO,II.1.1,San Luis,AR-D,annual,2018,gas oil combustion consumption by freight transport,2.1672,TJ,N2O,3.9,kg/TJ,8.452079999999999,kg -3a9223ad-9511-3c3c-b6bd-be7ebc22425a,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,gas oil combustion consumption by freight transport,73.72091999999999,TJ,CO2,74100.0,kg/TJ,5462720.171999999,kg -b5a20bac-4f4c-3739-bfc2-ecf569256520,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,gas oil combustion consumption by freight transport,73.72091999999999,TJ,CH4,3.9,kg/TJ,287.51158799999996,kg -b5a20bac-4f4c-3739-bfc2-ecf569256520,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,gas oil combustion consumption by freight transport,73.72091999999999,TJ,N2O,3.9,kg/TJ,287.51158799999996,kg -d9446a00-1725-3f15-9806-d3c29d3babb2,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2018,gas oil combustion consumption by freight transport,5.63472,TJ,CO2,74100.0,kg/TJ,417532.752,kg -009f3ab4-7a8f-3686-b757-f3b9d23c05fe,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2018,gas oil combustion consumption by freight transport,5.63472,TJ,CH4,3.9,kg/TJ,21.975407999999998,kg -009f3ab4-7a8f-3686-b757-f3b9d23c05fe,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2018,gas oil combustion consumption by freight transport,5.63472,TJ,N2O,3.9,kg/TJ,21.975407999999998,kg -b5a2e3f7-842f-3929-8386-b5cb8b962b6f,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2018,gas oil combustion consumption by freight transport,1.01136,TJ,CO2,74100.0,kg/TJ,74941.776,kg -3e81e545-a8a6-3ecd-81e3-50b339b14839,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2018,gas oil combustion consumption by freight transport,1.01136,TJ,CH4,3.9,kg/TJ,3.9443040000000003,kg -3e81e545-a8a6-3ecd-81e3-50b339b14839,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2018,gas oil combustion consumption by freight transport,1.01136,TJ,N2O,3.9,kg/TJ,3.9443040000000003,kg -ba477c79-c71c-30b7-9751-e27142bc9081,SESCO,II.1.1,Tucuman,AR-T,annual,2018,gas oil combustion consumption by freight transport,1.04748,TJ,CO2,74100.0,kg/TJ,77618.268,kg -f0c59f5d-48d9-3cc2-801b-6c64fdb7ee05,SESCO,II.1.1,Tucuman,AR-T,annual,2018,gas oil combustion consumption by freight transport,1.04748,TJ,CH4,3.9,kg/TJ,4.085172,kg -f0c59f5d-48d9-3cc2-801b-6c64fdb7ee05,SESCO,II.1.1,Tucuman,AR-T,annual,2018,gas oil combustion consumption by freight transport,1.04748,TJ,N2O,3.9,kg/TJ,4.085172,kg -ca6342a5-9c31-3703-a8b0-8f83e36b027b,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,gas oil combustion consumption by public passenger transport,1664.5540799999999,TJ,CO2,74100.0,kg/TJ,123343457.328,kg -82260ed8-9666-36a0-9cf8-c9f16b4092f8,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,gas oil combustion consumption by public passenger transport,1664.5540799999999,TJ,CH4,3.9,kg/TJ,6491.760912,kg -82260ed8-9666-36a0-9cf8-c9f16b4092f8,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,gas oil combustion consumption by public passenger transport,1664.5540799999999,TJ,N2O,3.9,kg/TJ,6491.760912,kg -3166ff15-1158-3629-bd35-e2e72ee3cd2f,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,gas oil combustion consumption by public passenger transport,703.68984,TJ,CO2,74100.0,kg/TJ,52143417.144,kg -c346150d-b622-3e46-9941-1c5b4ef3599b,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,gas oil combustion consumption by public passenger transport,703.68984,TJ,CH4,3.9,kg/TJ,2744.390376,kg -c346150d-b622-3e46-9941-1c5b4ef3599b,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,gas oil combustion consumption by public passenger transport,703.68984,TJ,N2O,3.9,kg/TJ,2744.390376,kg -140c2e54-8df5-3d8a-b1d9-d5696587ecec,SESCO,II.1.1,Catamarca,AR-K,annual,2018,gas oil combustion consumption by public passenger transport,0.03612,TJ,CO2,74100.0,kg/TJ,2676.4919999999997,kg -225e3c3d-be2d-39ad-9ca1-9a35df58990a,SESCO,II.1.1,Catamarca,AR-K,annual,2018,gas oil combustion consumption by public passenger transport,0.03612,TJ,CH4,3.9,kg/TJ,0.140868,kg -225e3c3d-be2d-39ad-9ca1-9a35df58990a,SESCO,II.1.1,Catamarca,AR-K,annual,2018,gas oil combustion consumption by public passenger transport,0.03612,TJ,N2O,3.9,kg/TJ,0.140868,kg -2af00637-9cdd-325a-9525-38567e305549,SESCO,II.1.1,Chaco,AR-H,annual,2018,gas oil combustion consumption by public passenger transport,5.49024,TJ,CO2,74100.0,kg/TJ,406826.784,kg -f9103664-c072-31f0-a23c-6de61ac07cca,SESCO,II.1.1,Chaco,AR-H,annual,2018,gas oil combustion consumption by public passenger transport,5.49024,TJ,CH4,3.9,kg/TJ,21.411936,kg -f9103664-c072-31f0-a23c-6de61ac07cca,SESCO,II.1.1,Chaco,AR-H,annual,2018,gas oil combustion consumption by public passenger transport,5.49024,TJ,N2O,3.9,kg/TJ,21.411936,kg -8bedc79c-538d-310d-a206-65025f477a49,SESCO,II.1.1,Chubut,AR-U,annual,2018,gas oil combustion consumption by public passenger transport,46.37808,TJ,CO2,74100.0,kg/TJ,3436615.7279999997,kg -1375a8d1-8f31-33b3-ae84-67b73253010e,SESCO,II.1.1,Chubut,AR-U,annual,2018,gas oil combustion consumption by public passenger transport,46.37808,TJ,CH4,3.9,kg/TJ,180.87451199999998,kg -1375a8d1-8f31-33b3-ae84-67b73253010e,SESCO,II.1.1,Chubut,AR-U,annual,2018,gas oil combustion consumption by public passenger transport,46.37808,TJ,N2O,3.9,kg/TJ,180.87451199999998,kg -221629dc-108d-32ba-aed0-10f707058f0e,SESCO,II.1.1,Corrientes,AR-W,annual,2018,gas oil combustion consumption by public passenger transport,7.0434,TJ,CO2,74100.0,kg/TJ,521915.94,kg -8e869de0-ebf6-3b5c-a766-ac2abcc5904a,SESCO,II.1.1,Corrientes,AR-W,annual,2018,gas oil combustion consumption by public passenger transport,7.0434,TJ,CH4,3.9,kg/TJ,27.46926,kg -8e869de0-ebf6-3b5c-a766-ac2abcc5904a,SESCO,II.1.1,Corrientes,AR-W,annual,2018,gas oil combustion consumption by public passenger transport,7.0434,TJ,N2O,3.9,kg/TJ,27.46926,kg -b4712179-4643-3ba6-9e65-a2c9ba73e32c,SESCO,II.1.1,Córdoba,AR-X,annual,2018,gas oil combustion consumption by public passenger transport,214.914,TJ,CO2,74100.0,kg/TJ,15925127.399999999,kg -05faf7cd-b2e2-3c59-89b2-e4fafd768c6f,SESCO,II.1.1,Córdoba,AR-X,annual,2018,gas oil combustion consumption by public passenger transport,214.914,TJ,CH4,3.9,kg/TJ,838.1646,kg -05faf7cd-b2e2-3c59-89b2-e4fafd768c6f,SESCO,II.1.1,Córdoba,AR-X,annual,2018,gas oil combustion consumption by public passenger transport,214.914,TJ,N2O,3.9,kg/TJ,838.1646,kg -547678af-efb3-32cc-91ce-186424db5f18,SESCO,II.1.1,Entre Rios,AR-E,annual,2018,gas oil combustion consumption by public passenger transport,27.34284,TJ,CO2,74100.0,kg/TJ,2026104.444,kg -1dd4aaa9-ad67-35e1-9f14-d7b19095d057,SESCO,II.1.1,Entre Rios,AR-E,annual,2018,gas oil combustion consumption by public passenger transport,27.34284,TJ,CH4,3.9,kg/TJ,106.637076,kg -1dd4aaa9-ad67-35e1-9f14-d7b19095d057,SESCO,II.1.1,Entre Rios,AR-E,annual,2018,gas oil combustion consumption by public passenger transport,27.34284,TJ,N2O,3.9,kg/TJ,106.637076,kg -f4f59301-29bb-3397-a821-3d925d037e51,SESCO,II.1.1,Formosa,AR-P,annual,2018,gas oil combustion consumption by public passenger transport,0.07224,TJ,CO2,74100.0,kg/TJ,5352.9839999999995,kg -9fd6e638-79a3-3588-8412-63560d92cdb2,SESCO,II.1.1,Formosa,AR-P,annual,2018,gas oil combustion consumption by public passenger transport,0.07224,TJ,CH4,3.9,kg/TJ,0.281736,kg -9fd6e638-79a3-3588-8412-63560d92cdb2,SESCO,II.1.1,Formosa,AR-P,annual,2018,gas oil combustion consumption by public passenger transport,0.07224,TJ,N2O,3.9,kg/TJ,0.281736,kg -2f2bef49-8cda-3d75-b58f-b70bb7287f1c,SESCO,II.1.1,Jujuy,AR-Y,annual,2018,gas oil combustion consumption by public passenger transport,0.10836,TJ,CO2,74100.0,kg/TJ,8029.476,kg -425adcec-7882-367e-94d7-8815ba9d4ba0,SESCO,II.1.1,Jujuy,AR-Y,annual,2018,gas oil combustion consumption by public passenger transport,0.10836,TJ,CH4,3.9,kg/TJ,0.422604,kg -425adcec-7882-367e-94d7-8815ba9d4ba0,SESCO,II.1.1,Jujuy,AR-Y,annual,2018,gas oil combustion consumption by public passenger transport,0.10836,TJ,N2O,3.9,kg/TJ,0.422604,kg -383ff8c1-6293-34c5-ba19-b1559588611b,SESCO,II.1.1,La Pampa,AR-L,annual,2018,gas oil combustion consumption by public passenger transport,14.484119999999999,TJ,CO2,74100.0,kg/TJ,1073273.292,kg -05de47d0-81b5-3ac2-8494-649461ab146a,SESCO,II.1.1,La Pampa,AR-L,annual,2018,gas oil combustion consumption by public passenger transport,14.484119999999999,TJ,CH4,3.9,kg/TJ,56.48806799999999,kg -05de47d0-81b5-3ac2-8494-649461ab146a,SESCO,II.1.1,La Pampa,AR-L,annual,2018,gas oil combustion consumption by public passenger transport,14.484119999999999,TJ,N2O,3.9,kg/TJ,56.48806799999999,kg -71f35628-d461-3d92-908a-4f18ec5c0bb1,SESCO,II.1.1,La Rioja,AR-F,annual,2018,gas oil combustion consumption by public passenger transport,0.18059999999999998,TJ,CO2,74100.0,kg/TJ,13382.46,kg -248d028d-918f-37d1-8a2c-6a763ef79988,SESCO,II.1.1,La Rioja,AR-F,annual,2018,gas oil combustion consumption by public passenger transport,0.18059999999999998,TJ,CH4,3.9,kg/TJ,0.70434,kg -248d028d-918f-37d1-8a2c-6a763ef79988,SESCO,II.1.1,La Rioja,AR-F,annual,2018,gas oil combustion consumption by public passenger transport,0.18059999999999998,TJ,N2O,3.9,kg/TJ,0.70434,kg -b8ba1461-acb0-357c-9291-2bf289998e35,SESCO,II.1.1,Mendoza,AR-M,annual,2018,gas oil combustion consumption by public passenger transport,22.71948,TJ,CO2,74100.0,kg/TJ,1683513.468,kg -13bf67a3-efd6-3c32-a28f-4125c135766d,SESCO,II.1.1,Mendoza,AR-M,annual,2018,gas oil combustion consumption by public passenger transport,22.71948,TJ,CH4,3.9,kg/TJ,88.605972,kg -13bf67a3-efd6-3c32-a28f-4125c135766d,SESCO,II.1.1,Mendoza,AR-M,annual,2018,gas oil combustion consumption by public passenger transport,22.71948,TJ,N2O,3.9,kg/TJ,88.605972,kg -97aed8aa-bc5c-3a6b-8c7f-dbf7018ea929,SESCO,II.1.1,Misiones,AR-N,annual,2018,gas oil combustion consumption by public passenger transport,17.44596,TJ,CO2,74100.0,kg/TJ,1292745.636,kg -0887f42f-6027-3e9b-86a1-6695ba4aa29d,SESCO,II.1.1,Misiones,AR-N,annual,2018,gas oil combustion consumption by public passenger transport,17.44596,TJ,CH4,3.9,kg/TJ,68.039244,kg -0887f42f-6027-3e9b-86a1-6695ba4aa29d,SESCO,II.1.1,Misiones,AR-N,annual,2018,gas oil combustion consumption by public passenger transport,17.44596,TJ,N2O,3.9,kg/TJ,68.039244,kg -327ac604-d0ba-3878-953a-9ff35a410591,SESCO,II.1.1,Neuquén,AR-Q,annual,2018,gas oil combustion consumption by public passenger transport,10.90824,TJ,CO2,74100.0,kg/TJ,808300.5839999999,kg -0a418673-643b-3216-822d-12eed067de56,SESCO,II.1.1,Neuquén,AR-Q,annual,2018,gas oil combustion consumption by public passenger transport,10.90824,TJ,CH4,3.9,kg/TJ,42.542136,kg -0a418673-643b-3216-822d-12eed067de56,SESCO,II.1.1,Neuquén,AR-Q,annual,2018,gas oil combustion consumption by public passenger transport,10.90824,TJ,N2O,3.9,kg/TJ,42.542136,kg -6586088e-48a3-3827-9bed-ccf251ac235d,SESCO,II.1.1,Rio Negro,AR-R,annual,2018,gas oil combustion consumption by public passenger transport,41.75472,TJ,CO2,74100.0,kg/TJ,3094024.752,kg -5355ca97-bc91-3596-ad1e-3822048ad53f,SESCO,II.1.1,Rio Negro,AR-R,annual,2018,gas oil combustion consumption by public passenger transport,41.75472,TJ,CH4,3.9,kg/TJ,162.84340799999998,kg -5355ca97-bc91-3596-ad1e-3822048ad53f,SESCO,II.1.1,Rio Negro,AR-R,annual,2018,gas oil combustion consumption by public passenger transport,41.75472,TJ,N2O,3.9,kg/TJ,162.84340799999998,kg -71a445ab-f147-3967-b4ce-2a4a6ea661dc,SESCO,II.1.1,Salta,AR-A,annual,2018,gas oil combustion consumption by public passenger transport,51.14592,TJ,CO2,74100.0,kg/TJ,3789912.672,kg -f3d06568-f3b8-398f-9891-320032eb71cc,SESCO,II.1.1,Salta,AR-A,annual,2018,gas oil combustion consumption by public passenger transport,51.14592,TJ,CH4,3.9,kg/TJ,199.46908799999997,kg -f3d06568-f3b8-398f-9891-320032eb71cc,SESCO,II.1.1,Salta,AR-A,annual,2018,gas oil combustion consumption by public passenger transport,51.14592,TJ,N2O,3.9,kg/TJ,199.46908799999997,kg -f1c36709-d37a-3179-ace9-0637f6c05a1f,SESCO,II.1.1,San Juan,AR-J,annual,2018,gas oil combustion consumption by public passenger transport,0.03612,TJ,CO2,74100.0,kg/TJ,2676.4919999999997,kg -5e76d161-edcd-3406-a470-b0dd11894374,SESCO,II.1.1,San Juan,AR-J,annual,2018,gas oil combustion consumption by public passenger transport,0.03612,TJ,CH4,3.9,kg/TJ,0.140868,kg -5e76d161-edcd-3406-a470-b0dd11894374,SESCO,II.1.1,San Juan,AR-J,annual,2018,gas oil combustion consumption by public passenger transport,0.03612,TJ,N2O,3.9,kg/TJ,0.140868,kg -72d043a2-68e2-365f-8cc4-12717010f16b,SESCO,II.1.1,San Luis,AR-D,annual,2018,gas oil combustion consumption by public passenger transport,0.28896,TJ,CO2,74100.0,kg/TJ,21411.935999999998,kg -082f2789-22a0-35e4-b33b-02c355e293fe,SESCO,II.1.1,San Luis,AR-D,annual,2018,gas oil combustion consumption by public passenger transport,0.28896,TJ,CH4,3.9,kg/TJ,1.126944,kg -082f2789-22a0-35e4-b33b-02c355e293fe,SESCO,II.1.1,San Luis,AR-D,annual,2018,gas oil combustion consumption by public passenger transport,0.28896,TJ,N2O,3.9,kg/TJ,1.126944,kg -bf256d2f-d889-3710-8427-7884bc1a4f4c,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,gas oil combustion consumption by public passenger transport,260.20848,TJ,CO2,74100.0,kg/TJ,19281448.368,kg -4a21e5f2-f69d-3f42-ae93-2be4718d80e7,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,gas oil combustion consumption by public passenger transport,260.20848,TJ,CH4,3.9,kg/TJ,1014.813072,kg -4a21e5f2-f69d-3f42-ae93-2be4718d80e7,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,gas oil combustion consumption by public passenger transport,260.20848,TJ,N2O,3.9,kg/TJ,1014.813072,kg -c38b5acc-d360-32d8-9607-5e85c5d38490,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2018,gas oil combustion consumption by public passenger transport,0.86688,TJ,CO2,74100.0,kg/TJ,64235.808,kg -235031e6-3bfa-34bb-bfa7-87dfe5447339,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2018,gas oil combustion consumption by public passenger transport,0.86688,TJ,CH4,3.9,kg/TJ,3.380832,kg -235031e6-3bfa-34bb-bfa7-87dfe5447339,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2018,gas oil combustion consumption by public passenger transport,0.86688,TJ,N2O,3.9,kg/TJ,3.380832,kg -7ec0f17d-78de-39e0-9063-36dcecab49e0,SESCO,II.1.1,Tucuman,AR-T,annual,2018,gas oil combustion consumption by public passenger transport,76.32156,TJ,CO2,74100.0,kg/TJ,5655427.596000001,kg -2212cf7c-95ec-39b9-88e6-a8f77f4b5d07,SESCO,II.1.1,Tucuman,AR-T,annual,2018,gas oil combustion consumption by public passenger transport,76.32156,TJ,CH4,3.9,kg/TJ,297.654084,kg -2212cf7c-95ec-39b9-88e6-a8f77f4b5d07,SESCO,II.1.1,Tucuman,AR-T,annual,2018,gas oil combustion consumption by public passenger transport,76.32156,TJ,N2O,3.9,kg/TJ,297.654084,kg -3f7343c0-598a-34ba-8039-af183a3b72cf,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,gas oil combustion consumption by public passenger transport,329.26992,TJ,CO2,74100.0,kg/TJ,24398901.072,kg -c5c6f1fb-1557-3387-938f-5dbe81d6d206,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,gas oil combustion consumption by public passenger transport,329.26992,TJ,CH4,3.9,kg/TJ,1284.1526880000001,kg -c5c6f1fb-1557-3387-938f-5dbe81d6d206,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,gas oil combustion consumption by public passenger transport,329.26992,TJ,N2O,3.9,kg/TJ,1284.1526880000001,kg -0ecf6183-8da9-376b-a813-125e22bbe7bd,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,gas oil combustion consumption by public passenger transport,166.26036,TJ,CO2,74100.0,kg/TJ,12319892.675999999,kg -f2e7ac04-b76f-3ce2-bf0f-9c94a14f2766,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,gas oil combustion consumption by public passenger transport,166.26036,TJ,CH4,3.9,kg/TJ,648.415404,kg -f2e7ac04-b76f-3ce2-bf0f-9c94a14f2766,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,gas oil combustion consumption by public passenger transport,166.26036,TJ,N2O,3.9,kg/TJ,648.415404,kg -9fec9256-e6de-33a3-9299-24c0d9147558,SESCO,II.1.1,Chaco,AR-H,annual,2018,gas oil combustion consumption by public passenger transport,0.07224,TJ,CO2,74100.0,kg/TJ,5352.9839999999995,kg -7479c1e2-0224-32cb-aa47-6eb9710dd581,SESCO,II.1.1,Chaco,AR-H,annual,2018,gas oil combustion consumption by public passenger transport,0.07224,TJ,CH4,3.9,kg/TJ,0.281736,kg -7479c1e2-0224-32cb-aa47-6eb9710dd581,SESCO,II.1.1,Chaco,AR-H,annual,2018,gas oil combustion consumption by public passenger transport,0.07224,TJ,N2O,3.9,kg/TJ,0.281736,kg -72d268de-7399-3dde-87b5-fe7fb8dcb819,SESCO,II.1.1,Chubut,AR-U,annual,2018,gas oil combustion consumption by public passenger transport,8.95776,TJ,CO2,74100.0,kg/TJ,663770.0160000001,kg -8ad11356-7091-31d5-b6fb-69235313a3ea,SESCO,II.1.1,Chubut,AR-U,annual,2018,gas oil combustion consumption by public passenger transport,8.95776,TJ,CH4,3.9,kg/TJ,34.935264000000004,kg -8ad11356-7091-31d5-b6fb-69235313a3ea,SESCO,II.1.1,Chubut,AR-U,annual,2018,gas oil combustion consumption by public passenger transport,8.95776,TJ,N2O,3.9,kg/TJ,34.935264000000004,kg -6f51ac90-140c-318c-b7cb-ce739af3ddbc,SESCO,II.1.1,Corrientes,AR-W,annual,2018,gas oil combustion consumption by public passenger transport,3.0702,TJ,CO2,74100.0,kg/TJ,227501.81999999998,kg -3abcf3b3-b06a-39da-959f-b42ab6954ad0,SESCO,II.1.1,Corrientes,AR-W,annual,2018,gas oil combustion consumption by public passenger transport,3.0702,TJ,CH4,3.9,kg/TJ,11.97378,kg -3abcf3b3-b06a-39da-959f-b42ab6954ad0,SESCO,II.1.1,Corrientes,AR-W,annual,2018,gas oil combustion consumption by public passenger transport,3.0702,TJ,N2O,3.9,kg/TJ,11.97378,kg -919086b8-3365-33ec-860b-a5dba2a39a11,SESCO,II.1.1,Córdoba,AR-X,annual,2018,gas oil combustion consumption by public passenger transport,12.17244,TJ,CO2,74100.0,kg/TJ,901977.804,kg -9fff5b47-b755-38b8-bcd0-21fc10a24ccd,SESCO,II.1.1,Córdoba,AR-X,annual,2018,gas oil combustion consumption by public passenger transport,12.17244,TJ,CH4,3.9,kg/TJ,47.472516,kg -9fff5b47-b755-38b8-bcd0-21fc10a24ccd,SESCO,II.1.1,Córdoba,AR-X,annual,2018,gas oil combustion consumption by public passenger transport,12.17244,TJ,N2O,3.9,kg/TJ,47.472516,kg -1a53c920-a152-39e0-8ced-341bcc0a010f,SESCO,II.1.1,Entre Rios,AR-E,annual,2018,gas oil combustion consumption by public passenger transport,5.56248,TJ,CO2,74100.0,kg/TJ,412179.768,kg -b0107ce6-d649-3d67-95e4-6727ec49244f,SESCO,II.1.1,Entre Rios,AR-E,annual,2018,gas oil combustion consumption by public passenger transport,5.56248,TJ,CH4,3.9,kg/TJ,21.693672,kg -b0107ce6-d649-3d67-95e4-6727ec49244f,SESCO,II.1.1,Entre Rios,AR-E,annual,2018,gas oil combustion consumption by public passenger transport,5.56248,TJ,N2O,3.9,kg/TJ,21.693672,kg -f4f59301-29bb-3397-a821-3d925d037e51,SESCO,II.1.1,Formosa,AR-P,annual,2018,gas oil combustion consumption by public passenger transport,0.07224,TJ,CO2,74100.0,kg/TJ,5352.9839999999995,kg -9fd6e638-79a3-3588-8412-63560d92cdb2,SESCO,II.1.1,Formosa,AR-P,annual,2018,gas oil combustion consumption by public passenger transport,0.07224,TJ,CH4,3.9,kg/TJ,0.281736,kg -9fd6e638-79a3-3588-8412-63560d92cdb2,SESCO,II.1.1,Formosa,AR-P,annual,2018,gas oil combustion consumption by public passenger transport,0.07224,TJ,N2O,3.9,kg/TJ,0.281736,kg -a016bbf8-b467-372f-8664-0d9e25bd4135,SESCO,II.1.1,Jujuy,AR-Y,annual,2018,gas oil combustion consumption by public passenger transport,0.07224,TJ,CO2,74100.0,kg/TJ,5352.9839999999995,kg -aeedfadb-977c-36b5-a64c-85425e38197c,SESCO,II.1.1,Jujuy,AR-Y,annual,2018,gas oil combustion consumption by public passenger transport,0.07224,TJ,CH4,3.9,kg/TJ,0.281736,kg -aeedfadb-977c-36b5-a64c-85425e38197c,SESCO,II.1.1,Jujuy,AR-Y,annual,2018,gas oil combustion consumption by public passenger transport,0.07224,TJ,N2O,3.9,kg/TJ,0.281736,kg -ffcac0aa-fb32-398a-9ecd-198aa3a4e7af,SESCO,II.1.1,La Pampa,AR-L,annual,2018,gas oil combustion consumption by public passenger transport,18.81852,TJ,CO2,74100.0,kg/TJ,1394452.332,kg -4151a631-fbc4-3057-9d7f-6d19b16d2b8a,SESCO,II.1.1,La Pampa,AR-L,annual,2018,gas oil combustion consumption by public passenger transport,18.81852,TJ,CH4,3.9,kg/TJ,73.392228,kg -4151a631-fbc4-3057-9d7f-6d19b16d2b8a,SESCO,II.1.1,La Pampa,AR-L,annual,2018,gas oil combustion consumption by public passenger transport,18.81852,TJ,N2O,3.9,kg/TJ,73.392228,kg -ebe658f6-7edc-3cda-ba1d-07072281fd84,SESCO,II.1.1,Mendoza,AR-M,annual,2018,gas oil combustion consumption by public passenger transport,0.39732,TJ,CO2,74100.0,kg/TJ,29441.412,kg -ca6b7f74-1060-3c77-b96f-9a15fce94431,SESCO,II.1.1,Mendoza,AR-M,annual,2018,gas oil combustion consumption by public passenger transport,0.39732,TJ,CH4,3.9,kg/TJ,1.549548,kg -ca6b7f74-1060-3c77-b96f-9a15fce94431,SESCO,II.1.1,Mendoza,AR-M,annual,2018,gas oil combustion consumption by public passenger transport,0.39732,TJ,N2O,3.9,kg/TJ,1.549548,kg -c4a81e52-9037-3fec-9db3-853316a45e88,SESCO,II.1.1,Misiones,AR-N,annual,2018,gas oil combustion consumption by public passenger transport,11.66676,TJ,CO2,74100.0,kg/TJ,864506.916,kg -975f8858-2101-3a54-8102-f77cc326be5d,SESCO,II.1.1,Misiones,AR-N,annual,2018,gas oil combustion consumption by public passenger transport,11.66676,TJ,CH4,3.9,kg/TJ,45.500364,kg -975f8858-2101-3a54-8102-f77cc326be5d,SESCO,II.1.1,Misiones,AR-N,annual,2018,gas oil combustion consumption by public passenger transport,11.66676,TJ,N2O,3.9,kg/TJ,45.500364,kg -3b11a368-48a9-34d3-89a9-a8f71b3166b1,SESCO,II.1.1,Neuquén,AR-Q,annual,2018,gas oil combustion consumption by public passenger transport,7.5851999999999995,TJ,CO2,74100.0,kg/TJ,562063.32,kg -fa37326b-bca4-361d-81e7-61342de2dbe3,SESCO,II.1.1,Neuquén,AR-Q,annual,2018,gas oil combustion consumption by public passenger transport,7.5851999999999995,TJ,CH4,3.9,kg/TJ,29.582279999999997,kg -fa37326b-bca4-361d-81e7-61342de2dbe3,SESCO,II.1.1,Neuquén,AR-Q,annual,2018,gas oil combustion consumption by public passenger transport,7.5851999999999995,TJ,N2O,3.9,kg/TJ,29.582279999999997,kg -4583803d-c14a-35dd-9219-2137d5b1edfb,SESCO,II.1.1,Rio Negro,AR-R,annual,2018,gas oil combustion consumption by public passenger transport,34.602959999999996,TJ,CO2,74100.0,kg/TJ,2564079.3359999997,kg -79a4cf11-000e-3cc5-b62e-7c4b387bdd95,SESCO,II.1.1,Rio Negro,AR-R,annual,2018,gas oil combustion consumption by public passenger transport,34.602959999999996,TJ,CH4,3.9,kg/TJ,134.95154399999998,kg -79a4cf11-000e-3cc5-b62e-7c4b387bdd95,SESCO,II.1.1,Rio Negro,AR-R,annual,2018,gas oil combustion consumption by public passenger transport,34.602959999999996,TJ,N2O,3.9,kg/TJ,134.95154399999998,kg -445798c6-1052-3815-aa5e-b2bd3e829503,SESCO,II.1.1,Salta,AR-A,annual,2018,gas oil combustion consumption by public passenger transport,0.25284,TJ,CO2,74100.0,kg/TJ,18735.444,kg -8057f7ef-0a9e-3651-a925-bbf3455fa02f,SESCO,II.1.1,Salta,AR-A,annual,2018,gas oil combustion consumption by public passenger transport,0.25284,TJ,CH4,3.9,kg/TJ,0.9860760000000001,kg -8057f7ef-0a9e-3651-a925-bbf3455fa02f,SESCO,II.1.1,Salta,AR-A,annual,2018,gas oil combustion consumption by public passenger transport,0.25284,TJ,N2O,3.9,kg/TJ,0.9860760000000001,kg -f1c36709-d37a-3179-ace9-0637f6c05a1f,SESCO,II.1.1,San Juan,AR-J,annual,2018,gas oil combustion consumption by public passenger transport,0.03612,TJ,CO2,74100.0,kg/TJ,2676.4919999999997,kg -5e76d161-edcd-3406-a470-b0dd11894374,SESCO,II.1.1,San Juan,AR-J,annual,2018,gas oil combustion consumption by public passenger transport,0.03612,TJ,CH4,3.9,kg/TJ,0.140868,kg -5e76d161-edcd-3406-a470-b0dd11894374,SESCO,II.1.1,San Juan,AR-J,annual,2018,gas oil combustion consumption by public passenger transport,0.03612,TJ,N2O,3.9,kg/TJ,0.140868,kg -d1a627b5-9e09-3e53-a6ad-dea571646ce9,SESCO,II.1.1,San Luis,AR-D,annual,2018,gas oil combustion consumption by public passenger transport,0.03612,TJ,CO2,74100.0,kg/TJ,2676.4919999999997,kg -c6a9bf1d-3e70-3e85-a609-9e2f1e66173d,SESCO,II.1.1,San Luis,AR-D,annual,2018,gas oil combustion consumption by public passenger transport,0.03612,TJ,CH4,3.9,kg/TJ,0.140868,kg -c6a9bf1d-3e70-3e85-a609-9e2f1e66173d,SESCO,II.1.1,San Luis,AR-D,annual,2018,gas oil combustion consumption by public passenger transport,0.03612,TJ,N2O,3.9,kg/TJ,0.140868,kg -72a3d416-ba0d-3139-aef5-7651cd8e6b22,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,gas oil combustion consumption by public passenger transport,88.6746,TJ,CO2,74100.0,kg/TJ,6570787.859999999,kg -d69387e7-56ac-364d-b739-c7da4ffd9de0,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,gas oil combustion consumption by public passenger transport,88.6746,TJ,CH4,3.9,kg/TJ,345.83094,kg -d69387e7-56ac-364d-b739-c7da4ffd9de0,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,gas oil combustion consumption by public passenger transport,88.6746,TJ,N2O,3.9,kg/TJ,345.83094,kg -3c8c274a-f4c1-32eb-b1d8-294aef5a8545,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2018,gas oil combustion consumption by public passenger transport,0.18059999999999998,TJ,CO2,74100.0,kg/TJ,13382.46,kg -57674291-16cd-3d81-b3c2-f42e9b17a22d,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2018,gas oil combustion consumption by public passenger transport,0.18059999999999998,TJ,CH4,3.9,kg/TJ,0.70434,kg -57674291-16cd-3d81-b3c2-f42e9b17a22d,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2018,gas oil combustion consumption by public passenger transport,0.18059999999999998,TJ,N2O,3.9,kg/TJ,0.70434,kg -b52de9dd-f832-3bc4-828c-b27ffb31d294,SESCO,II.1.1,Tucuman,AR-T,annual,2018,gas oil combustion consumption by public passenger transport,0.03612,TJ,CO2,74100.0,kg/TJ,2676.4919999999997,kg -ed0e8af5-4f73-3538-bbbc-56ce6cf73097,SESCO,II.1.1,Tucuman,AR-T,annual,2018,gas oil combustion consumption by public passenger transport,0.03612,TJ,CH4,3.9,kg/TJ,0.140868,kg -ed0e8af5-4f73-3538-bbbc-56ce6cf73097,SESCO,II.1.1,Tucuman,AR-T,annual,2018,gas oil combustion consumption by public passenger transport,0.03612,TJ,N2O,3.9,kg/TJ,0.140868,kg -0f8a4c44-cb57-352f-a4bb-237fd1817f93,SESCO,II.5.1,Buenos Aires,AR-B,annual,2018,gas oil combustion consumption by agriculture machines,118.75743096,TJ,CO2,74100.0,kg/TJ,8799925.634135999,kg -e4d490b3-11dc-38be-89ed-66726a01a4af,SESCO,II.5.1,Buenos Aires,AR-B,annual,2018,gas oil combustion consumption by agriculture machines,118.75743096,TJ,CH4,3.9,kg/TJ,463.15398074399997,kg -e4d490b3-11dc-38be-89ed-66726a01a4af,SESCO,II.5.1,Buenos Aires,AR-B,annual,2018,gas oil combustion consumption by agriculture machines,118.75743096,TJ,N2O,3.9,kg/TJ,463.15398074399997,kg -0af6e936-3a04-34c0-a7cf-d8f29e758568,SESCO,II.5.1,Córdoba,AR-X,annual,2018,gas oil combustion consumption by agriculture machines,17.24899764,TJ,CO2,74100.0,kg/TJ,1278150.7251239999,kg -4e8845f0-94e9-357a-9a2b-1110998709e2,SESCO,II.5.1,Córdoba,AR-X,annual,2018,gas oil combustion consumption by agriculture machines,17.24899764,TJ,CH4,3.9,kg/TJ,67.271090796,kg -4e8845f0-94e9-357a-9a2b-1110998709e2,SESCO,II.5.1,Córdoba,AR-X,annual,2018,gas oil combustion consumption by agriculture machines,17.24899764,TJ,N2O,3.9,kg/TJ,67.271090796,kg -cb0a1d9d-3494-3009-aa94-b2896ac59fc8,SESCO,II.5.1,Entre Rios,AR-E,annual,2018,gas oil combustion consumption by agriculture machines,1.2877141200000002,TJ,CO2,74100.0,kg/TJ,95419.61629200002,kg -1b15c54e-83c1-32e4-9106-df04eb01620a,SESCO,II.5.1,Entre Rios,AR-E,annual,2018,gas oil combustion consumption by agriculture machines,1.2877141200000002,TJ,CH4,3.9,kg/TJ,5.022085068000001,kg -1b15c54e-83c1-32e4-9106-df04eb01620a,SESCO,II.5.1,Entre Rios,AR-E,annual,2018,gas oil combustion consumption by agriculture machines,1.2877141200000002,TJ,N2O,3.9,kg/TJ,5.022085068000001,kg -3b05fdd6-39b7-3301-b5ba-791f0667940e,SESCO,II.5.1,Rio Negro,AR-R,annual,2018,gas oil combustion consumption by agriculture machines,0.92752548,TJ,CO2,74100.0,kg/TJ,68729.638068,kg -44d50a9e-5553-33b6-bac9-3c20a7a5d762,SESCO,II.5.1,Rio Negro,AR-R,annual,2018,gas oil combustion consumption by agriculture machines,0.92752548,TJ,CH4,3.9,kg/TJ,3.617349372,kg -44d50a9e-5553-33b6-bac9-3c20a7a5d762,SESCO,II.5.1,Rio Negro,AR-R,annual,2018,gas oil combustion consumption by agriculture machines,0.92752548,TJ,N2O,3.9,kg/TJ,3.617349372,kg -efe61bca-1860-3c7c-9173-4f572d8f70cb,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,gas oil combustion consumption by to the public,2510.02579212,TJ,CO2,74100.0,kg/TJ,185992911.196092,kg -e260cec2-b1d4-3172-9887-516641c7bc8f,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,gas oil combustion consumption by to the public,2510.02579212,TJ,CH4,3.9,kg/TJ,9789.100589268,kg -e260cec2-b1d4-3172-9887-516641c7bc8f,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,gas oil combustion consumption by to the public,2510.02579212,TJ,N2O,3.9,kg/TJ,9789.100589268,kg -20d50997-cff4-3685-90ae-06edeee49836,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,gas oil combustion consumption by to the public,72.48099264,TJ,CO2,74100.0,kg/TJ,5370841.554624,kg -5f88c159-b05c-3e73-8ed6-6cd8a29dba0a,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,gas oil combustion consumption by to the public,72.48099264,TJ,CH4,3.9,kg/TJ,282.67587129599997,kg -5f88c159-b05c-3e73-8ed6-6cd8a29dba0a,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,gas oil combustion consumption by to the public,72.48099264,TJ,N2O,3.9,kg/TJ,282.67587129599997,kg -215a174c-4be9-3585-873c-cb4b97a6e1d7,SESCO,II.1.1,Chubut,AR-U,annual,2018,gas oil combustion consumption by to the public,464.01204024,TJ,CO2,74100.0,kg/TJ,34383292.181784,kg -e3253ea5-fb78-324e-bb02-19b4fb0d54eb,SESCO,II.1.1,Chubut,AR-U,annual,2018,gas oil combustion consumption by to the public,464.01204024,TJ,CH4,3.9,kg/TJ,1809.646956936,kg -e3253ea5-fb78-324e-bb02-19b4fb0d54eb,SESCO,II.1.1,Chubut,AR-U,annual,2018,gas oil combustion consumption by to the public,464.01204024,TJ,N2O,3.9,kg/TJ,1809.646956936,kg -4852da4b-c3eb-3a79-98a2-9e6689aa7121,SESCO,II.1.1,Córdoba,AR-X,annual,2018,gas oil combustion consumption by to the public,115.54347336000001,TJ,CO2,74100.0,kg/TJ,8561771.375976,kg -f92f6552-8401-38db-8077-e77d533c7435,SESCO,II.1.1,Córdoba,AR-X,annual,2018,gas oil combustion consumption by to the public,115.54347336000001,TJ,CH4,3.9,kg/TJ,450.619546104,kg -f92f6552-8401-38db-8077-e77d533c7435,SESCO,II.1.1,Córdoba,AR-X,annual,2018,gas oil combustion consumption by to the public,115.54347336000001,TJ,N2O,3.9,kg/TJ,450.619546104,kg -7ec764c5-4f09-3893-9c2e-8f49e5f84d25,SESCO,II.1.1,Entre Rios,AR-E,annual,2018,gas oil combustion consumption by to the public,215.54367996,TJ,CO2,74100.0,kg/TJ,15971786.685036,kg -5e5bdc72-5d56-30bc-ab3d-1a37ce535210,SESCO,II.1.1,Entre Rios,AR-E,annual,2018,gas oil combustion consumption by to the public,215.54367996,TJ,CH4,3.9,kg/TJ,840.620351844,kg -5e5bdc72-5d56-30bc-ab3d-1a37ce535210,SESCO,II.1.1,Entre Rios,AR-E,annual,2018,gas oil combustion consumption by to the public,215.54367996,TJ,N2O,3.9,kg/TJ,840.620351844,kg -7a8dbbc1-b75a-367a-9394-3625549a0fa8,SESCO,II.1.1,La Pampa,AR-L,annual,2018,gas oil combustion consumption by to the public,471.16726775999996,TJ,CO2,74100.0,kg/TJ,34913494.541016,kg -dc851c47-1602-383f-9572-5e44edd001ca,SESCO,II.1.1,La Pampa,AR-L,annual,2018,gas oil combustion consumption by to the public,471.16726775999996,TJ,CH4,3.9,kg/TJ,1837.5523442639999,kg -dc851c47-1602-383f-9572-5e44edd001ca,SESCO,II.1.1,La Pampa,AR-L,annual,2018,gas oil combustion consumption by to the public,471.16726775999996,TJ,N2O,3.9,kg/TJ,1837.5523442639999,kg -7bb2e183-61a8-3da7-bb84-c6d18fc01dbc,SESCO,II.1.1,Neuquén,AR-Q,annual,2018,gas oil combustion consumption by to the public,125.63178936,TJ,CO2,74100.0,kg/TJ,9309315.591576,kg -f0a2a41a-1055-3388-9460-903704d290d9,SESCO,II.1.1,Neuquén,AR-Q,annual,2018,gas oil combustion consumption by to the public,125.63178936,TJ,CH4,3.9,kg/TJ,489.963978504,kg -f0a2a41a-1055-3388-9460-903704d290d9,SESCO,II.1.1,Neuquén,AR-Q,annual,2018,gas oil combustion consumption by to the public,125.63178936,TJ,N2O,3.9,kg/TJ,489.963978504,kg -64ff589c-9b68-35d2-8db2-f5a1814dddb5,SESCO,II.1.1,Rio Negro,AR-R,annual,2018,gas oil combustion consumption by to the public,318.19942896,TJ,CO2,74100.0,kg/TJ,23578577.685935996,kg -a6315389-0bc1-3b52-95ce-4f75df283099,SESCO,II.1.1,Rio Negro,AR-R,annual,2018,gas oil combustion consumption by to the public,318.19942896,TJ,CH4,3.9,kg/TJ,1240.977772944,kg -a6315389-0bc1-3b52-95ce-4f75df283099,SESCO,II.1.1,Rio Negro,AR-R,annual,2018,gas oil combustion consumption by to the public,318.19942896,TJ,N2O,3.9,kg/TJ,1240.977772944,kg -f92ba143-af89-3768-b3c7-4ba36b1d375e,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2018,gas oil combustion consumption by to the public,244.73644188,TJ,CO2,74100.0,kg/TJ,18134970.343308,kg -a9d80bf0-0386-3960-a212-032082ec9d5c,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2018,gas oil combustion consumption by to the public,244.73644188,TJ,CH4,3.9,kg/TJ,954.472123332,kg -a9d80bf0-0386-3960-a212-032082ec9d5c,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2018,gas oil combustion consumption by to the public,244.73644188,TJ,N2O,3.9,kg/TJ,954.472123332,kg -9b4b9ee5-b9c8-369e-b4c6-6d2754fb97c8,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,gas oil combustion consumption by to the public,108.27959688,TJ,CO2,74100.0,kg/TJ,8023518.128808,kg -f9d7e63c-cf3f-34bd-95c8-287f484746ab,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,gas oil combustion consumption by to the public,108.27959688,TJ,CH4,3.9,kg/TJ,422.290427832,kg -f9d7e63c-cf3f-34bd-95c8-287f484746ab,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,gas oil combustion consumption by to the public,108.27959688,TJ,N2O,3.9,kg/TJ,422.290427832,kg -bb15fbe4-24d9-3d08-b576-83a886d484e4,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,gas oil combustion consumption by to the public,556.4062056,TJ,CO2,74100.0,kg/TJ,41229699.83496,kg -ca7c0443-6488-31dc-858f-bb9e0589c257,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,gas oil combustion consumption by to the public,556.4062056,TJ,CH4,3.9,kg/TJ,2169.98420184,kg -ca7c0443-6488-31dc-858f-bb9e0589c257,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,gas oil combustion consumption by to the public,556.4062056,TJ,N2O,3.9,kg/TJ,2169.98420184,kg -a787f7bc-ab78-3c33-ba5f-d5b5806a20a6,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,gas oil combustion consumption by to the public,19.69666944,TJ,CO2,74100.0,kg/TJ,1459523.205504,kg -549b8060-3d9f-3e48-8948-4836e8d49f63,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,gas oil combustion consumption by to the public,19.69666944,TJ,CH4,3.9,kg/TJ,76.817010816,kg -549b8060-3d9f-3e48-8948-4836e8d49f63,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,gas oil combustion consumption by to the public,19.69666944,TJ,N2O,3.9,kg/TJ,76.817010816,kg -462d08e7-850f-3876-99f3-44cb04995377,SESCO,II.1.1,Chubut,AR-U,annual,2018,gas oil combustion consumption by to the public,172.30955699999998,TJ,CO2,74100.0,kg/TJ,12768138.1737,kg -e66030bc-e348-340d-88c5-0039c750c1a3,SESCO,II.1.1,Chubut,AR-U,annual,2018,gas oil combustion consumption by to the public,172.30955699999998,TJ,CH4,3.9,kg/TJ,672.0072723,kg -e66030bc-e348-340d-88c5-0039c750c1a3,SESCO,II.1.1,Chubut,AR-U,annual,2018,gas oil combustion consumption by to the public,172.30955699999998,TJ,N2O,3.9,kg/TJ,672.0072723,kg -47941b76-06c5-3912-953f-e184d0f73a52,SESCO,II.1.1,Córdoba,AR-X,annual,2018,gas oil combustion consumption by to the public,39.89118084,TJ,CO2,74100.0,kg/TJ,2955936.500244,kg -d77a3065-9fc8-3381-b67f-620babaef8aa,SESCO,II.1.1,Córdoba,AR-X,annual,2018,gas oil combustion consumption by to the public,39.89118084,TJ,CH4,3.9,kg/TJ,155.57560527599998,kg -d77a3065-9fc8-3381-b67f-620babaef8aa,SESCO,II.1.1,Córdoba,AR-X,annual,2018,gas oil combustion consumption by to the public,39.89118084,TJ,N2O,3.9,kg/TJ,155.57560527599998,kg -4d9b66f3-f67f-325e-be7f-f143e1a0da7e,SESCO,II.1.1,Entre Rios,AR-E,annual,2018,gas oil combustion consumption by to the public,22.79251464,TJ,CO2,74100.0,kg/TJ,1688925.334824,kg -4d6b301f-d7bc-33d2-9958-83036ebb0ca5,SESCO,II.1.1,Entre Rios,AR-E,annual,2018,gas oil combustion consumption by to the public,22.79251464,TJ,CH4,3.9,kg/TJ,88.890807096,kg -4d6b301f-d7bc-33d2-9958-83036ebb0ca5,SESCO,II.1.1,Entre Rios,AR-E,annual,2018,gas oil combustion consumption by to the public,22.79251464,TJ,N2O,3.9,kg/TJ,88.890807096,kg -8b743be2-067f-39d9-a103-0f4243f82dae,SESCO,II.1.1,La Pampa,AR-L,annual,2018,gas oil combustion consumption by to the public,95.65702943999999,TJ,CO2,74100.0,kg/TJ,7088185.881503999,kg -2634b82c-c126-3022-a982-b119d7fb5ae6,SESCO,II.1.1,La Pampa,AR-L,annual,2018,gas oil combustion consumption by to the public,95.65702943999999,TJ,CH4,3.9,kg/TJ,373.06241481599994,kg -2634b82c-c126-3022-a982-b119d7fb5ae6,SESCO,II.1.1,La Pampa,AR-L,annual,2018,gas oil combustion consumption by to the public,95.65702943999999,TJ,N2O,3.9,kg/TJ,373.06241481599994,kg -20421dc0-6616-3253-9e3d-6c5e725db667,SESCO,II.1.1,Neuquén,AR-Q,annual,2018,gas oil combustion consumption by to the public,134.10518016,TJ,CO2,74100.0,kg/TJ,9937193.849856,kg -c936415f-b489-3221-b258-48eb771ca763,SESCO,II.1.1,Neuquén,AR-Q,annual,2018,gas oil combustion consumption by to the public,134.10518016,TJ,CH4,3.9,kg/TJ,523.010202624,kg -c936415f-b489-3221-b258-48eb771ca763,SESCO,II.1.1,Neuquén,AR-Q,annual,2018,gas oil combustion consumption by to the public,134.10518016,TJ,N2O,3.9,kg/TJ,523.010202624,kg -66dce7d2-521c-3f7b-b777-008e357d459c,SESCO,II.1.1,Rio Negro,AR-R,annual,2018,gas oil combustion consumption by to the public,141.33402024,TJ,CO2,74100.0,kg/TJ,10472850.899784,kg -12c781e2-38f2-34d1-8b7f-60eccb7ce96f,SESCO,II.1.1,Rio Negro,AR-R,annual,2018,gas oil combustion consumption by to the public,141.33402024,TJ,CH4,3.9,kg/TJ,551.202678936,kg -12c781e2-38f2-34d1-8b7f-60eccb7ce96f,SESCO,II.1.1,Rio Negro,AR-R,annual,2018,gas oil combustion consumption by to the public,141.33402024,TJ,N2O,3.9,kg/TJ,551.202678936,kg -99bc9c10-df05-39f6-83ba-2f5c435c3273,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2018,gas oil combustion consumption by to the public,139.41644556,TJ,CO2,74100.0,kg/TJ,10330758.615996,kg -f00f6165-c98e-3a99-9820-d82da84dc39a,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2018,gas oil combustion consumption by to the public,139.41644556,TJ,CH4,3.9,kg/TJ,543.724137684,kg -f00f6165-c98e-3a99-9820-d82da84dc39a,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2018,gas oil combustion consumption by to the public,139.41644556,TJ,N2O,3.9,kg/TJ,543.724137684,kg -acc4647a-ca61-3305-90b5-27f37054790a,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,gas oil combustion consumption by to the public,82.73856696000001,TJ,CO2,74100.0,kg/TJ,6130927.811736001,kg -1eb53d98-1f9a-3ee8-9e4a-2bda328b3ff3,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,gas oil combustion consumption by to the public,82.73856696000001,TJ,CH4,3.9,kg/TJ,322.68041114400006,kg -1eb53d98-1f9a-3ee8-9e4a-2bda328b3ff3,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,gas oil combustion consumption by to the public,82.73856696000001,TJ,N2O,3.9,kg/TJ,322.68041114400006,kg -8c4c1222-f8c4-3e10-a4b2-bfa6a45d3a7b,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,gas oil combustion consumption by freight transport,78.73777128,TJ,CO2,74100.0,kg/TJ,5834468.851848001,kg -73bae360-edb6-33f7-a60e-ac0faa2cefb5,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,gas oil combustion consumption by freight transport,78.73777128,TJ,CH4,3.9,kg/TJ,307.077307992,kg -73bae360-edb6-33f7-a60e-ac0faa2cefb5,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,gas oil combustion consumption by freight transport,78.73777128,TJ,N2O,3.9,kg/TJ,307.077307992,kg -76480f18-067e-3139-93c9-eed7db2d99f7,SESCO,II.1.1,Chubut,AR-U,annual,2018,gas oil combustion consumption by freight transport,2.034459,TJ,CO2,74100.0,kg/TJ,150753.4119,kg -f65d1896-e901-3a30-955b-cb6cf4e8096d,SESCO,II.1.1,Chubut,AR-U,annual,2018,gas oil combustion consumption by freight transport,2.034459,TJ,CH4,3.9,kg/TJ,7.9343901,kg -f65d1896-e901-3a30-955b-cb6cf4e8096d,SESCO,II.1.1,Chubut,AR-U,annual,2018,gas oil combustion consumption by freight transport,2.034459,TJ,N2O,3.9,kg/TJ,7.9343901,kg -15e5a2ad-2330-3858-81f7-0b4cbd71968c,SESCO,II.1.1,San Luis,AR-D,annual,2018,gas oil combustion consumption by freight transport,28.058882880000002,TJ,CO2,74100.0,kg/TJ,2079163.2214080002,kg -4e936f3d-b774-35b2-a69b-e12e95d858d3,SESCO,II.1.1,San Luis,AR-D,annual,2018,gas oil combustion consumption by freight transport,28.058882880000002,TJ,CH4,3.9,kg/TJ,109.429643232,kg -4e936f3d-b774-35b2-a69b-e12e95d858d3,SESCO,II.1.1,San Luis,AR-D,annual,2018,gas oil combustion consumption by freight transport,28.058882880000002,TJ,N2O,3.9,kg/TJ,109.429643232,kg -a14ce3d8-fa88-31c0-bb14-88396c8204c4,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,gas oil combustion consumption by freight transport,1.89590268,TJ,CO2,74100.0,kg/TJ,140486.388588,kg -84c5d345-b764-3681-b7cd-637fe1ad12bf,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,gas oil combustion consumption by freight transport,1.89590268,TJ,CH4,3.9,kg/TJ,7.394020452,kg -84c5d345-b764-3681-b7cd-637fe1ad12bf,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,gas oil combustion consumption by freight transport,1.89590268,TJ,N2O,3.9,kg/TJ,7.394020452,kg -0838547b-0273-3023-b0ee-54f795b0be1b,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,gas oil combustion consumption by public passenger transport,136.77296723999999,TJ,CO2,74100.0,kg/TJ,10134876.872483999,kg -17ba197c-d9a2-3023-896d-b713a481549e,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,gas oil combustion consumption by public passenger transport,136.77296723999999,TJ,CH4,3.9,kg/TJ,533.4145722359999,kg -17ba197c-d9a2-3023-896d-b713a481549e,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,gas oil combustion consumption by public passenger transport,136.77296723999999,TJ,N2O,3.9,kg/TJ,533.4145722359999,kg -ba5742f1-73e7-3327-8c45-85e5011ade27,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,gas oil combustion consumption by public passenger transport,21.83605704,TJ,CO2,74100.0,kg/TJ,1618051.826664,kg -c37e0f90-b9aa-36ce-af54-6e01c3b0b349,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,gas oil combustion consumption by public passenger transport,21.83605704,TJ,CH4,3.9,kg/TJ,85.160622456,kg -c37e0f90-b9aa-36ce-af54-6e01c3b0b349,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,gas oil combustion consumption by public passenger transport,21.83605704,TJ,N2O,3.9,kg/TJ,85.160622456,kg -21c06190-d33b-31b8-9a48-795dd883f615,SESCO,II.1.1,Chubut,AR-U,annual,2018,gas oil combustion consumption by public passenger transport,11.61146028,TJ,CO2,74100.0,kg/TJ,860409.206748,kg -37656fc7-991a-373d-a401-a182cf44c3e0,SESCO,II.1.1,Chubut,AR-U,annual,2018,gas oil combustion consumption by public passenger transport,11.61146028,TJ,CH4,3.9,kg/TJ,45.284695092,kg -37656fc7-991a-373d-a401-a182cf44c3e0,SESCO,II.1.1,Chubut,AR-U,annual,2018,gas oil combustion consumption by public passenger transport,11.61146028,TJ,N2O,3.9,kg/TJ,45.284695092,kg -e615d8b0-385c-3cfc-a2d7-b8a10a102c1a,SESCO,II.1.1,Córdoba,AR-X,annual,2018,gas oil combustion consumption by public passenger transport,81.14726424,TJ,CO2,74100.0,kg/TJ,6013012.280184,kg -15b5dce8-2bd8-36f6-bff1-e9055c3b6efe,SESCO,II.1.1,Córdoba,AR-X,annual,2018,gas oil combustion consumption by public passenger transport,81.14726424,TJ,CH4,3.9,kg/TJ,316.47433053599997,kg -15b5dce8-2bd8-36f6-bff1-e9055c3b6efe,SESCO,II.1.1,Córdoba,AR-X,annual,2018,gas oil combustion consumption by public passenger transport,81.14726424,TJ,N2O,3.9,kg/TJ,316.47433053599997,kg -0a75bdd6-1766-3ea7-8e5f-50ad47d877d5,SESCO,II.1.1,Neuquén,AR-Q,annual,2018,gas oil combustion consumption by public passenger transport,7.350528359999999,TJ,CO2,74100.0,kg/TJ,544674.151476,kg -38d5f9c7-ebff-3db0-b5af-0e975e3d7f70,SESCO,II.1.1,Neuquén,AR-Q,annual,2018,gas oil combustion consumption by public passenger transport,7.350528359999999,TJ,CH4,3.9,kg/TJ,28.667060603999996,kg -38d5f9c7-ebff-3db0-b5af-0e975e3d7f70,SESCO,II.1.1,Neuquén,AR-Q,annual,2018,gas oil combustion consumption by public passenger transport,7.350528359999999,TJ,N2O,3.9,kg/TJ,28.667060603999996,kg -2faaa5f3-e146-3540-816e-79162de1e57d,SESCO,II.1.1,Rio Negro,AR-R,annual,2018,gas oil combustion consumption by public passenger transport,38.028327960000006,TJ,CO2,74100.0,kg/TJ,2817899.1018360006,kg -6a5d45e8-8f20-3f55-8ed8-228f71bacef1,SESCO,II.1.1,Rio Negro,AR-R,annual,2018,gas oil combustion consumption by public passenger transport,38.028327960000006,TJ,CH4,3.9,kg/TJ,148.31047904400003,kg -6a5d45e8-8f20-3f55-8ed8-228f71bacef1,SESCO,II.1.1,Rio Negro,AR-R,annual,2018,gas oil combustion consumption by public passenger transport,38.028327960000006,TJ,N2O,3.9,kg/TJ,148.31047904400003,kg -d7fb2da9-c4e0-3b3a-879f-ddb0bf83f958,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,gas oil combustion consumption by public passenger transport,2.24446068,TJ,CO2,74100.0,kg/TJ,166314.536388,kg -4001d947-9a1e-3fc1-86ca-6c00aa914f78,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,gas oil combustion consumption by public passenger transport,2.24446068,TJ,CH4,3.9,kg/TJ,8.753396652,kg -4001d947-9a1e-3fc1-86ca-6c00aa914f78,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,gas oil combustion consumption by public passenger transport,2.24446068,TJ,N2O,3.9,kg/TJ,8.753396652,kg -aff04f93-5f5b-38cb-8891-80992d42c7a2,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,gas oil combustion consumption by public passenger transport,21.531132,TJ,CO2,74100.0,kg/TJ,1595456.8812,kg -4e35bf06-294b-3cba-80ab-60853d6e0874,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,gas oil combustion consumption by public passenger transport,21.531132,TJ,CH4,3.9,kg/TJ,83.97141479999999,kg -4e35bf06-294b-3cba-80ab-60853d6e0874,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,gas oil combustion consumption by public passenger transport,21.531132,TJ,N2O,3.9,kg/TJ,83.97141479999999,kg -6135c557-3bab-3ade-99fa-6c1ec7f351a1,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,gas oil combustion consumption by public passenger transport,0.35816592,TJ,CO2,74100.0,kg/TJ,26540.094672000003,kg -b6d225fd-d9e7-3bd3-a200-ed78dc47d182,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,gas oil combustion consumption by public passenger transport,0.35816592,TJ,CH4,3.9,kg/TJ,1.3968470880000001,kg -b6d225fd-d9e7-3bd3-a200-ed78dc47d182,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,gas oil combustion consumption by public passenger transport,0.35816592,TJ,N2O,3.9,kg/TJ,1.3968470880000001,kg -7a1a0548-abf4-37fc-a5f0-93fb9c373b12,SESCO,II.1.1,Córdoba,AR-X,annual,2018,gas oil combustion consumption by public passenger transport,3.6853236,TJ,CO2,74100.0,kg/TJ,273082.47875999997,kg -4a800163-e9b1-3d06-bde8-6d2b507db206,SESCO,II.1.1,Córdoba,AR-X,annual,2018,gas oil combustion consumption by public passenger transport,3.6853236,TJ,CH4,3.9,kg/TJ,14.37276204,kg -4a800163-e9b1-3d06-bde8-6d2b507db206,SESCO,II.1.1,Córdoba,AR-X,annual,2018,gas oil combustion consumption by public passenger transport,3.6853236,TJ,N2O,3.9,kg/TJ,14.37276204,kg -037cc98e-3419-301e-95cd-532a41b20e7d,SESCO,II.1.1,Neuquén,AR-Q,annual,2018,gas oil combustion consumption by public passenger transport,4.05598704,TJ,CO2,74100.0,kg/TJ,300548.63966399996,kg -48cd94c4-bbdc-3f5d-b25c-8a07ac042ec1,SESCO,II.1.1,Neuquén,AR-Q,annual,2018,gas oil combustion consumption by public passenger transport,4.05598704,TJ,CH4,3.9,kg/TJ,15.818349455999998,kg -48cd94c4-bbdc-3f5d-b25c-8a07ac042ec1,SESCO,II.1.1,Neuquén,AR-Q,annual,2018,gas oil combustion consumption by public passenger transport,4.05598704,TJ,N2O,3.9,kg/TJ,15.818349455999998,kg -be00cf41-f0ed-35c2-9d5b-4a6941e37c06,SESCO,II.1.1,Rio Negro,AR-R,annual,2018,gas oil combustion consumption by public passenger transport,10.62856284,TJ,CO2,74100.0,kg/TJ,787576.506444,kg -51d6e3c2-35ac-3b0e-9541-ebf9b1714221,SESCO,II.1.1,Rio Negro,AR-R,annual,2018,gas oil combustion consumption by public passenger transport,10.62856284,TJ,CH4,3.9,kg/TJ,41.451395076000004,kg -51d6e3c2-35ac-3b0e-9541-ebf9b1714221,SESCO,II.1.1,Rio Negro,AR-R,annual,2018,gas oil combustion consumption by public passenger transport,10.62856284,TJ,N2O,3.9,kg/TJ,41.451395076000004,kg -53911e9f-fa05-39a4-b4f8-863739d99fe4,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,gas oil combustion consumption by to the public,70.769916,TJ,CO2,74100.0,kg/TJ,5244050.775599999,kg -26dd1bd8-1d93-37d6-9cde-b164d217b84a,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,gas oil combustion consumption by to the public,70.769916,TJ,CH4,3.9,kg/TJ,276.0026724,kg -26dd1bd8-1d93-37d6-9cde-b164d217b84a,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,gas oil combustion consumption by to the public,70.769916,TJ,N2O,3.9,kg/TJ,276.0026724,kg -64c055b3-8478-3cba-8497-8d56af3ddaa8,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,gas oil combustion consumption by to the public,8.6688,TJ,CO2,74100.0,kg/TJ,642358.08,kg -42a2f913-688b-37c6-8a89-091dcdc24783,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,gas oil combustion consumption by to the public,8.6688,TJ,CH4,3.9,kg/TJ,33.808319999999995,kg -42a2f913-688b-37c6-8a89-091dcdc24783,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,gas oil combustion consumption by to the public,8.6688,TJ,N2O,3.9,kg/TJ,33.808319999999995,kg -f806d94a-4ffd-371f-b647-943b2d0e6c08,SESCO,II.1.1,Córdoba,AR-X,annual,2018,gas oil combustion consumption by to the public,36.741264,TJ,CO2,74100.0,kg/TJ,2722527.6624000003,kg -c385f88e-067c-3b55-8012-386f346768e3,SESCO,II.1.1,Córdoba,AR-X,annual,2018,gas oil combustion consumption by to the public,36.741264,TJ,CH4,3.9,kg/TJ,143.2909296,kg -c385f88e-067c-3b55-8012-386f346768e3,SESCO,II.1.1,Córdoba,AR-X,annual,2018,gas oil combustion consumption by to the public,36.741264,TJ,N2O,3.9,kg/TJ,143.2909296,kg -df7108cd-5952-3f34-90b2-317dba15b5b6,SESCO,II.1.1,Entre Rios,AR-E,annual,2018,gas oil combustion consumption by to the public,13.339116,TJ,CO2,74100.0,kg/TJ,988428.4956,kg -43a3bdf8-fe95-39a8-84ef-a371474cfd31,SESCO,II.1.1,Entre Rios,AR-E,annual,2018,gas oil combustion consumption by to the public,13.339116,TJ,CH4,3.9,kg/TJ,52.0225524,kg -43a3bdf8-fe95-39a8-84ef-a371474cfd31,SESCO,II.1.1,Entre Rios,AR-E,annual,2018,gas oil combustion consumption by to the public,13.339116,TJ,N2O,3.9,kg/TJ,52.0225524,kg -d3dbd7c4-42b4-3c2c-96f5-f6d22f0e45d3,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,gas oil combustion consumption by to the public,15.49548,TJ,CO2,74100.0,kg/TJ,1148215.068,kg -9de39be4-5d2f-3f38-892b-70c0a0f53e60,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,gas oil combustion consumption by to the public,15.49548,TJ,CH4,3.9,kg/TJ,60.432372,kg -9de39be4-5d2f-3f38-892b-70c0a0f53e60,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,gas oil combustion consumption by to the public,15.49548,TJ,N2O,3.9,kg/TJ,60.432372,kg -d9b31393-6a88-389c-ae84-550fef67454d,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,gas oil combustion consumption by to the public,12.8226,TJ,CO2,74100.0,kg/TJ,950154.6599999999,kg -57f744d4-8a79-395d-8669-9fe2d0c90570,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,gas oil combustion consumption by to the public,12.8226,TJ,CH4,3.9,kg/TJ,50.00814,kg -57f744d4-8a79-395d-8669-9fe2d0c90570,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,gas oil combustion consumption by to the public,12.8226,TJ,N2O,3.9,kg/TJ,50.00814,kg -819fd17c-36f5-323e-9db2-1837d0b537a5,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,gas oil combustion consumption by to the public,0.36119999999999997,TJ,CO2,74100.0,kg/TJ,26764.92,kg -3340ab91-3fdc-358b-812d-b39eaa3084d4,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,gas oil combustion consumption by to the public,0.36119999999999997,TJ,CH4,3.9,kg/TJ,1.40868,kg -3340ab91-3fdc-358b-812d-b39eaa3084d4,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,gas oil combustion consumption by to the public,0.36119999999999997,TJ,N2O,3.9,kg/TJ,1.40868,kg -d79654d6-aa93-31c2-b8dc-e0c8452966bc,SESCO,II.1.1,Córdoba,AR-X,annual,2018,gas oil combustion consumption by to the public,4.65948,TJ,CO2,74100.0,kg/TJ,345267.468,kg -a1b52a7b-5d2b-38c0-bc62-21cc6698afd5,SESCO,II.1.1,Córdoba,AR-X,annual,2018,gas oil combustion consumption by to the public,4.65948,TJ,CH4,3.9,kg/TJ,18.171972,kg -a1b52a7b-5d2b-38c0-bc62-21cc6698afd5,SESCO,II.1.1,Córdoba,AR-X,annual,2018,gas oil combustion consumption by to the public,4.65948,TJ,N2O,3.9,kg/TJ,18.171972,kg -1a5ff05e-f59c-34e1-b97a-8e1a83ea6508,SESCO,II.1.1,Entre Rios,AR-E,annual,2018,gas oil combustion consumption by to the public,2.7993,TJ,CO2,74100.0,kg/TJ,207428.13,kg -c10567d5-0a1f-3c47-898b-2b2970e9a50f,SESCO,II.1.1,Entre Rios,AR-E,annual,2018,gas oil combustion consumption by to the public,2.7993,TJ,CH4,3.9,kg/TJ,10.91727,kg -c10567d5-0a1f-3c47-898b-2b2970e9a50f,SESCO,II.1.1,Entre Rios,AR-E,annual,2018,gas oil combustion consumption by to the public,2.7993,TJ,N2O,3.9,kg/TJ,10.91727,kg -4d15249b-13ac-3c5d-beda-f21d0b398576,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,gas oil combustion consumption by to the public,0.14448,TJ,CO2,74100.0,kg/TJ,10705.967999999999,kg -d294c0eb-2157-31e2-86a0-6ed536b44188,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,gas oil combustion consumption by to the public,0.14448,TJ,CH4,3.9,kg/TJ,0.563472,kg -d294c0eb-2157-31e2-86a0-6ed536b44188,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,gas oil combustion consumption by to the public,0.14448,TJ,N2O,3.9,kg/TJ,0.563472,kg -5e4e9a4d-4044-332f-91f2-5973ab668300,SESCO,II.1.1,Catamarca,AR-K,annual,2018,gas oil combustion consumption by to the public,103.65645359999999,TJ,CO2,74100.0,kg/TJ,7680943.211759999,kg -11be6a75-dbf2-379f-9a03-021766c8639c,SESCO,II.1.1,Catamarca,AR-K,annual,2018,gas oil combustion consumption by to the public,103.65645359999999,TJ,CH4,3.9,kg/TJ,404.26016903999994,kg -11be6a75-dbf2-379f-9a03-021766c8639c,SESCO,II.1.1,Catamarca,AR-K,annual,2018,gas oil combustion consumption by to the public,103.65645359999999,TJ,N2O,3.9,kg/TJ,404.26016903999994,kg -b6b635b4-ea75-3571-bc64-a55a499d9865,SESCO,II.1.1,Chaco,AR-H,annual,2018,gas oil combustion consumption by to the public,122.66351999999999,TJ,CO2,74100.0,kg/TJ,9089366.831999999,kg -1d5a48d5-c329-3eaa-8ef0-e442647c4697,SESCO,II.1.1,Chaco,AR-H,annual,2018,gas oil combustion consumption by to the public,122.66351999999999,TJ,CH4,3.9,kg/TJ,478.387728,kg -1d5a48d5-c329-3eaa-8ef0-e442647c4697,SESCO,II.1.1,Chaco,AR-H,annual,2018,gas oil combustion consumption by to the public,122.66351999999999,TJ,N2O,3.9,kg/TJ,478.387728,kg -047f0094-9888-3d14-97a7-36dbfc937eb1,SESCO,II.1.1,Jujuy,AR-Y,annual,2018,gas oil combustion consumption by to the public,581.4041351999999,TJ,CO2,74100.0,kg/TJ,43082046.41831999,kg -eb10c77a-e6bd-36c2-9548-14c07228dc5c,SESCO,II.1.1,Jujuy,AR-Y,annual,2018,gas oil combustion consumption by to the public,581.4041351999999,TJ,CH4,3.9,kg/TJ,2267.4761272799997,kg -eb10c77a-e6bd-36c2-9548-14c07228dc5c,SESCO,II.1.1,Jujuy,AR-Y,annual,2018,gas oil combustion consumption by to the public,581.4041351999999,TJ,N2O,3.9,kg/TJ,2267.4761272799997,kg -64a73732-a3c2-3c82-ab55-59210e0e99fe,SESCO,II.1.1,La Rioja,AR-F,annual,2018,gas oil combustion consumption by to the public,124.3730796,TJ,CO2,74100.0,kg/TJ,9216045.19836,kg -f2aad1e6-4450-32dd-a060-5043e7347600,SESCO,II.1.1,La Rioja,AR-F,annual,2018,gas oil combustion consumption by to the public,124.3730796,TJ,CH4,3.9,kg/TJ,485.05501044,kg -f2aad1e6-4450-32dd-a060-5043e7347600,SESCO,II.1.1,La Rioja,AR-F,annual,2018,gas oil combustion consumption by to the public,124.3730796,TJ,N2O,3.9,kg/TJ,485.05501044,kg -5eb2c76d-ae5b-3b2b-8c91-dc47e5bb2486,SESCO,II.1.1,Salta,AR-A,annual,2018,gas oil combustion consumption by to the public,1446.0620328,TJ,CO2,74100.0,kg/TJ,107153196.63048,kg -f363ce80-3a86-3430-a766-f08e43b62374,SESCO,II.1.1,Salta,AR-A,annual,2018,gas oil combustion consumption by to the public,1446.0620328,TJ,CH4,3.9,kg/TJ,5639.64192792,kg -f363ce80-3a86-3430-a766-f08e43b62374,SESCO,II.1.1,Salta,AR-A,annual,2018,gas oil combustion consumption by to the public,1446.0620328,TJ,N2O,3.9,kg/TJ,5639.64192792,kg -7ebb2c1b-a7ae-3131-bbe9-1d755dc4f525,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2018,gas oil combustion consumption by to the public,409.1558016,TJ,CO2,74100.0,kg/TJ,30318444.898560002,kg -cf816534-0cf3-3bd0-a688-f22f53a6d813,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2018,gas oil combustion consumption by to the public,409.1558016,TJ,CH4,3.9,kg/TJ,1595.70762624,kg -cf816534-0cf3-3bd0-a688-f22f53a6d813,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2018,gas oil combustion consumption by to the public,409.1558016,TJ,N2O,3.9,kg/TJ,1595.70762624,kg -3836d485-6767-3b78-8c69-30319bea128a,SESCO,II.1.1,Tucuman,AR-T,annual,2018,gas oil combustion consumption by to the public,1814.9335596,TJ,CO2,74100.0,kg/TJ,134486576.76636,kg -56d85c54-f7f6-3c6e-a7d9-3253fe1711d9,SESCO,II.1.1,Tucuman,AR-T,annual,2018,gas oil combustion consumption by to the public,1814.9335596,TJ,CH4,3.9,kg/TJ,7078.24088244,kg -56d85c54-f7f6-3c6e-a7d9-3253fe1711d9,SESCO,II.1.1,Tucuman,AR-T,annual,2018,gas oil combustion consumption by to the public,1814.9335596,TJ,N2O,3.9,kg/TJ,7078.24088244,kg -9a243c76-35aa-3f12-ab71-820ba2d0a7e7,SESCO,II.1.1,Catamarca,AR-K,annual,2018,gas oil combustion consumption by to the public,31.868314799999997,TJ,CO2,74100.0,kg/TJ,2361442.1266799998,kg -2d7fb1ab-9d50-371f-866f-721d66368e1c,SESCO,II.1.1,Catamarca,AR-K,annual,2018,gas oil combustion consumption by to the public,31.868314799999997,TJ,CH4,3.9,kg/TJ,124.28642771999998,kg -2d7fb1ab-9d50-371f-866f-721d66368e1c,SESCO,II.1.1,Catamarca,AR-K,annual,2018,gas oil combustion consumption by to the public,31.868314799999997,TJ,N2O,3.9,kg/TJ,124.28642771999998,kg -06aee489-ca91-3245-9486-5abbb84340ed,SESCO,II.1.1,Chaco,AR-H,annual,2018,gas oil combustion consumption by to the public,9.5718,TJ,CO2,74100.0,kg/TJ,709270.38,kg -206447a0-4677-356b-953b-a224a2e88613,SESCO,II.1.1,Chaco,AR-H,annual,2018,gas oil combustion consumption by to the public,9.5718,TJ,CH4,3.9,kg/TJ,37.33002,kg -206447a0-4677-356b-953b-a224a2e88613,SESCO,II.1.1,Chaco,AR-H,annual,2018,gas oil combustion consumption by to the public,9.5718,TJ,N2O,3.9,kg/TJ,37.33002,kg -a8e2ce46-714e-34cf-a7b0-30989f57710e,SESCO,II.1.1,Jujuy,AR-Y,annual,2018,gas oil combustion consumption by to the public,112.11648,TJ,CO2,74100.0,kg/TJ,8307831.168,kg -6e6d92aa-d990-3680-b83b-e75b84cb1758,SESCO,II.1.1,Jujuy,AR-Y,annual,2018,gas oil combustion consumption by to the public,112.11648,TJ,CH4,3.9,kg/TJ,437.25427199999996,kg -6e6d92aa-d990-3680-b83b-e75b84cb1758,SESCO,II.1.1,Jujuy,AR-Y,annual,2018,gas oil combustion consumption by to the public,112.11648,TJ,N2O,3.9,kg/TJ,437.25427199999996,kg -e6f25dc9-bbbf-31f3-a5a4-015b635c49ba,SESCO,II.1.1,La Rioja,AR-F,annual,2018,gas oil combustion consumption by to the public,23.33352,TJ,CO2,74100.0,kg/TJ,1729013.832,kg -73128aa0-b371-3cbe-ac2a-0ce8177cfa93,SESCO,II.1.1,La Rioja,AR-F,annual,2018,gas oil combustion consumption by to the public,23.33352,TJ,CH4,3.9,kg/TJ,91.000728,kg -73128aa0-b371-3cbe-ac2a-0ce8177cfa93,SESCO,II.1.1,La Rioja,AR-F,annual,2018,gas oil combustion consumption by to the public,23.33352,TJ,N2O,3.9,kg/TJ,91.000728,kg -1ffa4179-4306-347f-97e8-160d78a036dd,SESCO,II.1.1,Salta,AR-A,annual,2018,gas oil combustion consumption by to the public,324.0332424,TJ,CO2,74100.0,kg/TJ,24010863.26184,kg -957e714f-70ca-34a3-b428-ef93dc1bb131,SESCO,II.1.1,Salta,AR-A,annual,2018,gas oil combustion consumption by to the public,324.0332424,TJ,CH4,3.9,kg/TJ,1263.72964536,kg -957e714f-70ca-34a3-b428-ef93dc1bb131,SESCO,II.1.1,Salta,AR-A,annual,2018,gas oil combustion consumption by to the public,324.0332424,TJ,N2O,3.9,kg/TJ,1263.72964536,kg -f5e75584-aa46-3e67-9415-081fda598602,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2018,gas oil combustion consumption by to the public,139.57671,TJ,CO2,74100.0,kg/TJ,10342634.211,kg -5185942d-e1be-3b6e-8e6e-55d3fbd6f180,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2018,gas oil combustion consumption by to the public,139.57671,TJ,CH4,3.9,kg/TJ,544.349169,kg -5185942d-e1be-3b6e-8e6e-55d3fbd6f180,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2018,gas oil combustion consumption by to the public,139.57671,TJ,N2O,3.9,kg/TJ,544.349169,kg -0319e073-18c4-3c3c-894e-5094dfeaab47,SESCO,II.1.1,Tucuman,AR-T,annual,2018,gas oil combustion consumption by to the public,472.2267396,TJ,CO2,74100.0,kg/TJ,34992001.40436,kg -cd19261f-35e9-3f09-91fa-fd71f97a6f80,SESCO,II.1.1,Tucuman,AR-T,annual,2018,gas oil combustion consumption by to the public,472.2267396,TJ,CH4,3.9,kg/TJ,1841.6842844399998,kg -cd19261f-35e9-3f09-91fa-fd71f97a6f80,SESCO,II.1.1,Tucuman,AR-T,annual,2018,gas oil combustion consumption by to the public,472.2267396,TJ,N2O,3.9,kg/TJ,1841.6842844399998,kg -ffadf701-35ea-3e03-bd0a-8da4c93ed175,SESCO,I.3.1,Buenos Aires,AR-B,annual,2018,gasoline combustion consumption by petrochemical industries,33.777864,TJ,CO2,69300.0,kg/TJ,2340805.9752,kg -df64e958-7727-3dd7-bed0-eebd46c6a13f,SESCO,I.3.1,Buenos Aires,AR-B,annual,2018,gasoline combustion consumption by petrochemical industries,33.777864,TJ,CH4,33.0,kg/TJ,1114.669512,kg -eef75aa1-2309-31ac-b930-334fb1ea2029,SESCO,I.3.1,Buenos Aires,AR-B,annual,2018,gasoline combustion consumption by petrochemical industries,33.777864,TJ,N2O,3.2,kg/TJ,108.0891648,kg -b3d197cf-467b-3bd2-906c-240b0adaeba4,SESCO,II.5.1,Buenos Aires,AR-B,annual,2018,gas oil combustion consumption by agriculture machines,349.67771999999997,TJ,CO2,74100.0,kg/TJ,25911119.051999997,kg -f648c7f2-85f4-3268-8197-31c74b9ea821,SESCO,II.5.1,Buenos Aires,AR-B,annual,2018,gas oil combustion consumption by agriculture machines,349.67771999999997,TJ,CH4,3.9,kg/TJ,1363.743108,kg -f648c7f2-85f4-3268-8197-31c74b9ea821,SESCO,II.5.1,Buenos Aires,AR-B,annual,2018,gas oil combustion consumption by agriculture machines,349.67771999999997,TJ,N2O,3.9,kg/TJ,1363.743108,kg -f6c5de1f-3754-32da-af47-e1fe6635ad00,SESCO,II.5.1,Córdoba,AR-X,annual,2018,gas oil combustion consumption by agriculture machines,33.73608,TJ,CO2,74100.0,kg/TJ,2499843.528,kg -53604192-9d28-3c55-a94c-720d8827f843,SESCO,II.5.1,Córdoba,AR-X,annual,2018,gas oil combustion consumption by agriculture machines,33.73608,TJ,CH4,3.9,kg/TJ,131.57071200000001,kg -53604192-9d28-3c55-a94c-720d8827f843,SESCO,II.5.1,Córdoba,AR-X,annual,2018,gas oil combustion consumption by agriculture machines,33.73608,TJ,N2O,3.9,kg/TJ,131.57071200000001,kg -8fe08178-f0a7-3c79-96c8-0e84d2c05559,SESCO,II.5.1,Entre Rios,AR-E,annual,2018,gas oil combustion consumption by agriculture machines,48.653639999999996,TJ,CO2,74100.0,kg/TJ,3605234.7239999995,kg -f7a1bdd9-6c97-30c8-8fe5-7aa0c6b61282,SESCO,II.5.1,Entre Rios,AR-E,annual,2018,gas oil combustion consumption by agriculture machines,48.653639999999996,TJ,CH4,3.9,kg/TJ,189.74919599999998,kg -f7a1bdd9-6c97-30c8-8fe5-7aa0c6b61282,SESCO,II.5.1,Entre Rios,AR-E,annual,2018,gas oil combustion consumption by agriculture machines,48.653639999999996,TJ,N2O,3.9,kg/TJ,189.74919599999998,kg -b8afea8e-2f74-3b31-996a-e4c71b9ce9f8,SESCO,II.5.1,Santa Fe,AR-S,annual,2018,gas oil combustion consumption by agriculture machines,33.66384,TJ,CO2,74100.0,kg/TJ,2494490.544,kg -d8b3944e-25a8-371c-8f51-f84ecadd16d2,SESCO,II.5.1,Santa Fe,AR-S,annual,2018,gas oil combustion consumption by agriculture machines,33.66384,TJ,CH4,3.9,kg/TJ,131.288976,kg -d8b3944e-25a8-371c-8f51-f84ecadd16d2,SESCO,II.5.1,Santa Fe,AR-S,annual,2018,gas oil combustion consumption by agriculture machines,33.66384,TJ,N2O,3.9,kg/TJ,131.288976,kg -76a95892-f28f-391d-9b15-204c8ce20768,SESCO,II.5.1,Tucuman,AR-T,annual,2018,gas oil combustion consumption by agriculture machines,13.25604,TJ,CO2,74100.0,kg/TJ,982272.564,kg -aa59376f-e06b-374e-8bec-2399e797a3db,SESCO,II.5.1,Tucuman,AR-T,annual,2018,gas oil combustion consumption by agriculture machines,13.25604,TJ,CH4,3.9,kg/TJ,51.698556,kg -aa59376f-e06b-374e-8bec-2399e797a3db,SESCO,II.5.1,Tucuman,AR-T,annual,2018,gas oil combustion consumption by agriculture machines,13.25604,TJ,N2O,3.9,kg/TJ,51.698556,kg -3ded3fc0-570f-3d3a-8494-258aac8692ba,SESCO,II.5.1,Buenos Aires,AR-B,annual,2018,gas oil combustion consumption by agriculture machines,15.56772,TJ,CO2,74100.0,kg/TJ,1153568.052,kg -12071432-5ce3-30ff-a2c3-943af5fbeb3b,SESCO,II.5.1,Buenos Aires,AR-B,annual,2018,gas oil combustion consumption by agriculture machines,15.56772,TJ,CH4,3.9,kg/TJ,60.714107999999996,kg -12071432-5ce3-30ff-a2c3-943af5fbeb3b,SESCO,II.5.1,Buenos Aires,AR-B,annual,2018,gas oil combustion consumption by agriculture machines,15.56772,TJ,N2O,3.9,kg/TJ,60.714107999999996,kg -91f2837e-90bc-3c45-9a52-0b069d8409f3,SESCO,II.5.1,Entre Rios,AR-E,annual,2018,gas oil combustion consumption by agriculture machines,35.14476,TJ,CO2,74100.0,kg/TJ,2604226.716,kg -5a27c881-7a8d-33ba-b46d-03f55c45d06a,SESCO,II.5.1,Entre Rios,AR-E,annual,2018,gas oil combustion consumption by agriculture machines,35.14476,TJ,CH4,3.9,kg/TJ,137.064564,kg -5a27c881-7a8d-33ba-b46d-03f55c45d06a,SESCO,II.5.1,Entre Rios,AR-E,annual,2018,gas oil combustion consumption by agriculture machines,35.14476,TJ,N2O,3.9,kg/TJ,137.064564,kg -ba4e7e17-3b76-3fe2-a4b1-e0d365ccef32,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,gas oil combustion consumption by to the public,12611.94816,TJ,CO2,74100.0,kg/TJ,934545358.656,kg -b789a171-2a2d-3d04-a608-dfc0e8dcd290,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,gas oil combustion consumption by to the public,12611.94816,TJ,CH4,3.9,kg/TJ,49186.597824,kg -b789a171-2a2d-3d04-a608-dfc0e8dcd290,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,gas oil combustion consumption by to the public,12611.94816,TJ,N2O,3.9,kg/TJ,49186.597824,kg -b4905de2-0f5c-32ee-9c30-53c0deabbd7a,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,gas oil combustion consumption by to the public,956.34924,TJ,CO2,74100.0,kg/TJ,70865478.684,kg -d1cc8010-a44e-3286-9aa3-1f20c4741f35,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,gas oil combustion consumption by to the public,956.34924,TJ,CH4,3.9,kg/TJ,3729.762036,kg -d1cc8010-a44e-3286-9aa3-1f20c4741f35,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,gas oil combustion consumption by to the public,956.34924,TJ,N2O,3.9,kg/TJ,3729.762036,kg -c8f23967-68d3-3dc4-95fd-1fa0719f233f,SESCO,II.1.1,Catamarca,AR-K,annual,2018,gas oil combustion consumption by to the public,6.6460799999999995,TJ,CO2,74100.0,kg/TJ,492474.528,kg -409b1bbd-195f-3f70-8620-6feaed7ce877,SESCO,II.1.1,Catamarca,AR-K,annual,2018,gas oil combustion consumption by to the public,6.6460799999999995,TJ,CH4,3.9,kg/TJ,25.919711999999997,kg -409b1bbd-195f-3f70-8620-6feaed7ce877,SESCO,II.1.1,Catamarca,AR-K,annual,2018,gas oil combustion consumption by to the public,6.6460799999999995,TJ,N2O,3.9,kg/TJ,25.919711999999997,kg -f281ff09-77c0-3484-9320-0e1d5deccb66,SESCO,II.1.1,Chaco,AR-H,annual,2018,gas oil combustion consumption by to the public,1672.39212,TJ,CO2,74100.0,kg/TJ,123924256.092,kg -62ce11c1-3210-334d-a1aa-7c94e3d327db,SESCO,II.1.1,Chaco,AR-H,annual,2018,gas oil combustion consumption by to the public,1672.39212,TJ,CH4,3.9,kg/TJ,6522.3292679999995,kg -62ce11c1-3210-334d-a1aa-7c94e3d327db,SESCO,II.1.1,Chaco,AR-H,annual,2018,gas oil combustion consumption by to the public,1672.39212,TJ,N2O,3.9,kg/TJ,6522.3292679999995,kg -6c2cca52-4711-34f1-910f-9017d7aa6c53,SESCO,II.1.1,Corrientes,AR-W,annual,2018,gas oil combustion consumption by to the public,618.8078399999999,TJ,CO2,74100.0,kg/TJ,45853660.944,kg -c5161d87-ab5c-34a0-b3c4-538e64265529,SESCO,II.1.1,Corrientes,AR-W,annual,2018,gas oil combustion consumption by to the public,618.8078399999999,TJ,CH4,3.9,kg/TJ,2413.350576,kg -c5161d87-ab5c-34a0-b3c4-538e64265529,SESCO,II.1.1,Corrientes,AR-W,annual,2018,gas oil combustion consumption by to the public,618.8078399999999,TJ,N2O,3.9,kg/TJ,2413.350576,kg -4f401561-6915-33a6-981f-8bcc537ef80a,SESCO,II.1.1,Córdoba,AR-X,annual,2018,gas oil combustion consumption by to the public,5976.957,TJ,CO2,74100.0,kg/TJ,442892513.70000005,kg -6416c9d6-7ef2-3a5c-81ca-5be62cd7659a,SESCO,II.1.1,Córdoba,AR-X,annual,2018,gas oil combustion consumption by to the public,5976.957,TJ,CH4,3.9,kg/TJ,23310.1323,kg -6416c9d6-7ef2-3a5c-81ca-5be62cd7659a,SESCO,II.1.1,Córdoba,AR-X,annual,2018,gas oil combustion consumption by to the public,5976.957,TJ,N2O,3.9,kg/TJ,23310.1323,kg -f3f05484-83d9-345e-9ce1-dbe44b1e5c9d,SESCO,II.1.1,Entre Rios,AR-E,annual,2018,gas oil combustion consumption by to the public,1368.4423199999999,TJ,CO2,74100.0,kg/TJ,101401575.91199999,kg -eb62326f-e708-3aed-90db-394f47c5e3ac,SESCO,II.1.1,Entre Rios,AR-E,annual,2018,gas oil combustion consumption by to the public,1368.4423199999999,TJ,CH4,3.9,kg/TJ,5336.925047999999,kg -eb62326f-e708-3aed-90db-394f47c5e3ac,SESCO,II.1.1,Entre Rios,AR-E,annual,2018,gas oil combustion consumption by to the public,1368.4423199999999,TJ,N2O,3.9,kg/TJ,5336.925047999999,kg -9f4c4838-55fd-3df7-aaa5-56a5069b0e67,SESCO,II.1.1,Formosa,AR-P,annual,2018,gas oil combustion consumption by to the public,123.99996,TJ,CO2,74100.0,kg/TJ,9188397.036,kg -8e312d70-c20d-399f-b647-41f8ad2d6768,SESCO,II.1.1,Formosa,AR-P,annual,2018,gas oil combustion consumption by to the public,123.99996,TJ,CH4,3.9,kg/TJ,483.599844,kg -8e312d70-c20d-399f-b647-41f8ad2d6768,SESCO,II.1.1,Formosa,AR-P,annual,2018,gas oil combustion consumption by to the public,123.99996,TJ,N2O,3.9,kg/TJ,483.599844,kg -479354e1-c695-377f-8f85-fc415ae9a313,SESCO,II.1.1,Jujuy,AR-Y,annual,2018,gas oil combustion consumption by to the public,72.74568,TJ,CO2,74100.0,kg/TJ,5390454.887999999,kg -c12abc76-c5b9-391e-8dee-5a20e0d30ea2,SESCO,II.1.1,Jujuy,AR-Y,annual,2018,gas oil combustion consumption by to the public,72.74568,TJ,CH4,3.9,kg/TJ,283.708152,kg -c12abc76-c5b9-391e-8dee-5a20e0d30ea2,SESCO,II.1.1,Jujuy,AR-Y,annual,2018,gas oil combustion consumption by to the public,72.74568,TJ,N2O,3.9,kg/TJ,283.708152,kg -15dedc50-1fd0-3b4b-929c-89094c6278da,SESCO,II.1.1,La Pampa,AR-L,annual,2018,gas oil combustion consumption by to the public,632.93076,TJ,CO2,74100.0,kg/TJ,46900169.316,kg -f87d3905-0732-336a-a481-4fdd6e995ed4,SESCO,II.1.1,La Pampa,AR-L,annual,2018,gas oil combustion consumption by to the public,632.93076,TJ,CH4,3.9,kg/TJ,2468.429964,kg -f87d3905-0732-336a-a481-4fdd6e995ed4,SESCO,II.1.1,La Pampa,AR-L,annual,2018,gas oil combustion consumption by to the public,632.93076,TJ,N2O,3.9,kg/TJ,2468.429964,kg -2235117c-61aa-3da9-8c47-9d7f9ddc4258,SESCO,II.1.1,La Rioja,AR-F,annual,2018,gas oil combustion consumption by to the public,172.61748,TJ,CO2,74100.0,kg/TJ,12790955.268,kg -afcc9ef9-0da0-31e6-a51b-682148244904,SESCO,II.1.1,La Rioja,AR-F,annual,2018,gas oil combustion consumption by to the public,172.61748,TJ,CH4,3.9,kg/TJ,673.208172,kg -afcc9ef9-0da0-31e6-a51b-682148244904,SESCO,II.1.1,La Rioja,AR-F,annual,2018,gas oil combustion consumption by to the public,172.61748,TJ,N2O,3.9,kg/TJ,673.208172,kg -557cdacd-b7d4-3798-a75a-746cce82ccd4,SESCO,II.1.1,Mendoza,AR-M,annual,2018,gas oil combustion consumption by to the public,1182.8577599999999,TJ,CO2,74100.0,kg/TJ,87649760.01599999,kg -67534068-56ef-32d8-9ed9-c0687e0b8314,SESCO,II.1.1,Mendoza,AR-M,annual,2018,gas oil combustion consumption by to the public,1182.8577599999999,TJ,CH4,3.9,kg/TJ,4613.145264,kg -67534068-56ef-32d8-9ed9-c0687e0b8314,SESCO,II.1.1,Mendoza,AR-M,annual,2018,gas oil combustion consumption by to the public,1182.8577599999999,TJ,N2O,3.9,kg/TJ,4613.145264,kg -948e2733-3a48-3635-9c4f-2f383f48549d,SESCO,II.1.1,Misiones,AR-N,annual,2018,gas oil combustion consumption by to the public,1115.5662,TJ,CO2,74100.0,kg/TJ,82663455.42,kg -a202eeb2-fc9e-33ac-aa4f-911178ba710b,SESCO,II.1.1,Misiones,AR-N,annual,2018,gas oil combustion consumption by to the public,1115.5662,TJ,CH4,3.9,kg/TJ,4350.70818,kg -a202eeb2-fc9e-33ac-aa4f-911178ba710b,SESCO,II.1.1,Misiones,AR-N,annual,2018,gas oil combustion consumption by to the public,1115.5662,TJ,N2O,3.9,kg/TJ,4350.70818,kg -09603179-62cb-3a42-949b-9218f06e62f2,SESCO,II.1.1,Neuquén,AR-Q,annual,2018,gas oil combustion consumption by to the public,816.34812,TJ,CO2,74100.0,kg/TJ,60491395.692,kg -255c71d8-e638-368e-adc7-f35331468933,SESCO,II.1.1,Neuquén,AR-Q,annual,2018,gas oil combustion consumption by to the public,816.34812,TJ,CH4,3.9,kg/TJ,3183.7576679999997,kg -255c71d8-e638-368e-adc7-f35331468933,SESCO,II.1.1,Neuquén,AR-Q,annual,2018,gas oil combustion consumption by to the public,816.34812,TJ,N2O,3.9,kg/TJ,3183.7576679999997,kg -1c11f5eb-c62f-3c6a-916d-3c0ddd236740,SESCO,II.1.1,Rio Negro,AR-R,annual,2018,gas oil combustion consumption by to the public,225.0276,TJ,CO2,74100.0,kg/TJ,16674545.16,kg -2fbae04d-e24b-3221-828b-739d6e6bc4f1,SESCO,II.1.1,Rio Negro,AR-R,annual,2018,gas oil combustion consumption by to the public,225.0276,TJ,CH4,3.9,kg/TJ,877.6076400000001,kg -2fbae04d-e24b-3221-828b-739d6e6bc4f1,SESCO,II.1.1,Rio Negro,AR-R,annual,2018,gas oil combustion consumption by to the public,225.0276,TJ,N2O,3.9,kg/TJ,877.6076400000001,kg -0ec8df85-1519-34c5-bda7-2d38b3f5d98c,SESCO,II.1.1,Salta,AR-A,annual,2018,gas oil combustion consumption by to the public,88.8552,TJ,CO2,74100.0,kg/TJ,6584170.319999999,kg -420bd60d-ff6c-3242-821a-e88ea4331900,SESCO,II.1.1,Salta,AR-A,annual,2018,gas oil combustion consumption by to the public,88.8552,TJ,CH4,3.9,kg/TJ,346.53528,kg -420bd60d-ff6c-3242-821a-e88ea4331900,SESCO,II.1.1,Salta,AR-A,annual,2018,gas oil combustion consumption by to the public,88.8552,TJ,N2O,3.9,kg/TJ,346.53528,kg -fc099efd-f97b-31c5-b3f4-39fdc0395dd8,SESCO,II.1.1,San Juan,AR-J,annual,2018,gas oil combustion consumption by to the public,293.475,TJ,CO2,74100.0,kg/TJ,21746497.5,kg -b2c02a52-9d0f-33e9-8277-61e8990ae174,SESCO,II.1.1,San Juan,AR-J,annual,2018,gas oil combustion consumption by to the public,293.475,TJ,CH4,3.9,kg/TJ,1144.5525,kg -b2c02a52-9d0f-33e9-8277-61e8990ae174,SESCO,II.1.1,San Juan,AR-J,annual,2018,gas oil combustion consumption by to the public,293.475,TJ,N2O,3.9,kg/TJ,1144.5525,kg -1acf01f6-9e29-3bf8-b867-7442e901661b,SESCO,II.1.1,San Luis,AR-D,annual,2018,gas oil combustion consumption by to the public,150.04247999999998,TJ,CO2,74100.0,kg/TJ,11118147.768,kg -17a58bea-2f84-3dbb-881a-697ed700d15b,SESCO,II.1.1,San Luis,AR-D,annual,2018,gas oil combustion consumption by to the public,150.04247999999998,TJ,CH4,3.9,kg/TJ,585.165672,kg -17a58bea-2f84-3dbb-881a-697ed700d15b,SESCO,II.1.1,San Luis,AR-D,annual,2018,gas oil combustion consumption by to the public,150.04247999999998,TJ,N2O,3.9,kg/TJ,585.165672,kg -466d19cd-d539-3da8-a4b4-b4a591aba8db,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,gas oil combustion consumption by to the public,5111.5217999999995,TJ,CO2,74100.0,kg/TJ,378763765.37999994,kg -4f994cd9-0710-3c4f-b4c3-8bc13037d7a0,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,gas oil combustion consumption by to the public,5111.5217999999995,TJ,CH4,3.9,kg/TJ,19934.935019999997,kg -4f994cd9-0710-3c4f-b4c3-8bc13037d7a0,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,gas oil combustion consumption by to the public,5111.5217999999995,TJ,N2O,3.9,kg/TJ,19934.935019999997,kg -6fadce05-1e08-3157-bf73-7be42026edc5,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2018,gas oil combustion consumption by to the public,256.01856,TJ,CO2,74100.0,kg/TJ,18970975.296,kg -d50f5f60-f1f9-3dcf-b95b-ef5418912149,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2018,gas oil combustion consumption by to the public,256.01856,TJ,CH4,3.9,kg/TJ,998.4723839999999,kg -d50f5f60-f1f9-3dcf-b95b-ef5418912149,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2018,gas oil combustion consumption by to the public,256.01856,TJ,N2O,3.9,kg/TJ,998.4723839999999,kg -4910b1ba-9fb3-31b3-ba12-6d4c5f2f17c6,SESCO,II.1.1,Tucuman,AR-T,annual,2018,gas oil combustion consumption by to the public,704.7012,TJ,CO2,74100.0,kg/TJ,52218358.919999994,kg -05c6031b-4dfa-352c-8042-4cc4a3f8e171,SESCO,II.1.1,Tucuman,AR-T,annual,2018,gas oil combustion consumption by to the public,704.7012,TJ,CH4,3.9,kg/TJ,2748.33468,kg -05c6031b-4dfa-352c-8042-4cc4a3f8e171,SESCO,II.1.1,Tucuman,AR-T,annual,2018,gas oil combustion consumption by to the public,704.7012,TJ,N2O,3.9,kg/TJ,2748.33468,kg -24961326-dbe7-3e10-ba5d-aabe11762f41,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,gas oil combustion consumption by to the public,8957.83224,TJ,CO2,74100.0,kg/TJ,663775368.984,kg -2b1bb803-ab1c-3fd8-a12e-594a9e58c0da,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,gas oil combustion consumption by to the public,8957.83224,TJ,CH4,3.9,kg/TJ,34935.545736,kg -2b1bb803-ab1c-3fd8-a12e-594a9e58c0da,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,gas oil combustion consumption by to the public,8957.83224,TJ,N2O,3.9,kg/TJ,34935.545736,kg -1f3e7516-8a4e-305a-ace4-77d8e8d62743,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,gas oil combustion consumption by to the public,1621.2462,TJ,CO2,74100.0,kg/TJ,120134343.42,kg -32805588-9379-36db-8211-77c7261b349b,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,gas oil combustion consumption by to the public,1621.2462,TJ,CH4,3.9,kg/TJ,6322.86018,kg -32805588-9379-36db-8211-77c7261b349b,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,gas oil combustion consumption by to the public,1621.2462,TJ,N2O,3.9,kg/TJ,6322.86018,kg -2e65dd8c-191b-33e8-8bd1-9d9db0afe48c,SESCO,II.1.1,Catamarca,AR-K,annual,2018,gas oil combustion consumption by to the public,38.14272,TJ,CO2,74100.0,kg/TJ,2826375.5519999997,kg -89a42ce3-1880-3924-b1d4-f5962fc3ae57,SESCO,II.1.1,Catamarca,AR-K,annual,2018,gas oil combustion consumption by to the public,38.14272,TJ,CH4,3.9,kg/TJ,148.75660799999997,kg -89a42ce3-1880-3924-b1d4-f5962fc3ae57,SESCO,II.1.1,Catamarca,AR-K,annual,2018,gas oil combustion consumption by to the public,38.14272,TJ,N2O,3.9,kg/TJ,148.75660799999997,kg -3edc232b-6064-3539-9f81-3ef2d4e24af9,SESCO,II.1.1,Chaco,AR-H,annual,2018,gas oil combustion consumption by to the public,573.83844,TJ,CO2,74100.0,kg/TJ,42521428.404,kg -0373dbdc-b3a9-32e7-bb0d-0f7e0a774bec,SESCO,II.1.1,Chaco,AR-H,annual,2018,gas oil combustion consumption by to the public,573.83844,TJ,CH4,3.9,kg/TJ,2237.969916,kg -0373dbdc-b3a9-32e7-bb0d-0f7e0a774bec,SESCO,II.1.1,Chaco,AR-H,annual,2018,gas oil combustion consumption by to the public,573.83844,TJ,N2O,3.9,kg/TJ,2237.969916,kg -48ba263c-42e7-36de-a050-acd27fcbbdc2,SESCO,II.1.1,Corrientes,AR-W,annual,2018,gas oil combustion consumption by to the public,451.64448,TJ,CO2,74100.0,kg/TJ,33466855.968,kg -b4446dff-3455-3210-acee-12dbe68ac62f,SESCO,II.1.1,Corrientes,AR-W,annual,2018,gas oil combustion consumption by to the public,451.64448,TJ,CH4,3.9,kg/TJ,1761.413472,kg -b4446dff-3455-3210-acee-12dbe68ac62f,SESCO,II.1.1,Corrientes,AR-W,annual,2018,gas oil combustion consumption by to the public,451.64448,TJ,N2O,3.9,kg/TJ,1761.413472,kg -cd1b5b45-5e34-3385-ab54-847a42faf3ba,SESCO,II.1.1,Córdoba,AR-X,annual,2018,gas oil combustion consumption by to the public,2521.32048,TJ,CO2,74100.0,kg/TJ,186829847.568,kg -1bfbbe96-9b0b-3b74-892d-ef51a9e7c806,SESCO,II.1.1,Córdoba,AR-X,annual,2018,gas oil combustion consumption by to the public,2521.32048,TJ,CH4,3.9,kg/TJ,9833.149872,kg -1bfbbe96-9b0b-3b74-892d-ef51a9e7c806,SESCO,II.1.1,Córdoba,AR-X,annual,2018,gas oil combustion consumption by to the public,2521.32048,TJ,N2O,3.9,kg/TJ,9833.149872,kg -1b22a9b8-751e-3320-ab92-dff4321f98a7,SESCO,II.1.1,Entre Rios,AR-E,annual,2018,gas oil combustion consumption by to the public,677.28612,TJ,CO2,74100.0,kg/TJ,50186901.492,kg -e0e01c1c-cdab-3ad2-abb5-1053c699cc58,SESCO,II.1.1,Entre Rios,AR-E,annual,2018,gas oil combustion consumption by to the public,677.28612,TJ,CH4,3.9,kg/TJ,2641.415868,kg -e0e01c1c-cdab-3ad2-abb5-1053c699cc58,SESCO,II.1.1,Entre Rios,AR-E,annual,2018,gas oil combustion consumption by to the public,677.28612,TJ,N2O,3.9,kg/TJ,2641.415868,kg -549244cf-ccb0-36dd-8fad-35279f08363e,SESCO,II.1.1,Formosa,AR-P,annual,2018,gas oil combustion consumption by to the public,178.75788,TJ,CO2,74100.0,kg/TJ,13245958.908,kg -50c4aab7-266c-3194-9a0d-451f9a79207d,SESCO,II.1.1,Formosa,AR-P,annual,2018,gas oil combustion consumption by to the public,178.75788,TJ,CH4,3.9,kg/TJ,697.155732,kg -50c4aab7-266c-3194-9a0d-451f9a79207d,SESCO,II.1.1,Formosa,AR-P,annual,2018,gas oil combustion consumption by to the public,178.75788,TJ,N2O,3.9,kg/TJ,697.155732,kg -7a6130aa-e971-3fa0-8d46-6cbca5a943fd,SESCO,II.1.1,Jujuy,AR-Y,annual,2018,gas oil combustion consumption by to the public,56.09436,TJ,CO2,74100.0,kg/TJ,4156592.0760000004,kg -0fb1fdeb-0cde-37f7-a7cf-ab4cf5a65151,SESCO,II.1.1,Jujuy,AR-Y,annual,2018,gas oil combustion consumption by to the public,56.09436,TJ,CH4,3.9,kg/TJ,218.768004,kg -0fb1fdeb-0cde-37f7-a7cf-ab4cf5a65151,SESCO,II.1.1,Jujuy,AR-Y,annual,2018,gas oil combustion consumption by to the public,56.09436,TJ,N2O,3.9,kg/TJ,218.768004,kg -5486124a-edc6-3e10-9b21-40fcd79e400a,SESCO,II.1.1,La Pampa,AR-L,annual,2018,gas oil combustion consumption by to the public,315.39984,TJ,CO2,74100.0,kg/TJ,23371128.143999998,kg -5491e220-c2e6-3d6f-9098-c62e824bd0ac,SESCO,II.1.1,La Pampa,AR-L,annual,2018,gas oil combustion consumption by to the public,315.39984,TJ,CH4,3.9,kg/TJ,1230.059376,kg -5491e220-c2e6-3d6f-9098-c62e824bd0ac,SESCO,II.1.1,La Pampa,AR-L,annual,2018,gas oil combustion consumption by to the public,315.39984,TJ,N2O,3.9,kg/TJ,1230.059376,kg -1b9c721b-8eb8-3340-a127-d8e4bb0e6d15,SESCO,II.1.1,La Rioja,AR-F,annual,2018,gas oil combustion consumption by to the public,167.055,TJ,CO2,74100.0,kg/TJ,12378775.5,kg -c59b6fab-a113-3b2e-ad96-d201a4e3efa0,SESCO,II.1.1,La Rioja,AR-F,annual,2018,gas oil combustion consumption by to the public,167.055,TJ,CH4,3.9,kg/TJ,651.5145,kg -c59b6fab-a113-3b2e-ad96-d201a4e3efa0,SESCO,II.1.1,La Rioja,AR-F,annual,2018,gas oil combustion consumption by to the public,167.055,TJ,N2O,3.9,kg/TJ,651.5145,kg -35b91f2f-9730-30c0-8f1f-b389e958ba12,SESCO,II.1.1,Mendoza,AR-M,annual,2018,gas oil combustion consumption by to the public,764.22696,TJ,CO2,74100.0,kg/TJ,56629217.735999994,kg -da15c2a7-3441-3a60-96fe-13159cff0029,SESCO,II.1.1,Mendoza,AR-M,annual,2018,gas oil combustion consumption by to the public,764.22696,TJ,CH4,3.9,kg/TJ,2980.4851439999998,kg -da15c2a7-3441-3a60-96fe-13159cff0029,SESCO,II.1.1,Mendoza,AR-M,annual,2018,gas oil combustion consumption by to the public,764.22696,TJ,N2O,3.9,kg/TJ,2980.4851439999998,kg -e9327708-2cfa-3d01-bf16-682873013432,SESCO,II.1.1,Misiones,AR-N,annual,2018,gas oil combustion consumption by to the public,449.83848,TJ,CO2,74100.0,kg/TJ,33333031.368,kg -a5a0c9c9-936c-3292-809f-cff6b8a7dbdb,SESCO,II.1.1,Misiones,AR-N,annual,2018,gas oil combustion consumption by to the public,449.83848,TJ,CH4,3.9,kg/TJ,1754.370072,kg -a5a0c9c9-936c-3292-809f-cff6b8a7dbdb,SESCO,II.1.1,Misiones,AR-N,annual,2018,gas oil combustion consumption by to the public,449.83848,TJ,N2O,3.9,kg/TJ,1754.370072,kg -072c9fb7-de9f-3023-b1d2-ebe9241fb50f,SESCO,II.1.1,Neuquén,AR-Q,annual,2018,gas oil combustion consumption by to the public,991.24116,TJ,CO2,74100.0,kg/TJ,73450969.956,kg -101d2362-abdf-3727-a86d-c719444b110e,SESCO,II.1.1,Neuquén,AR-Q,annual,2018,gas oil combustion consumption by to the public,991.24116,TJ,CH4,3.9,kg/TJ,3865.840524,kg -101d2362-abdf-3727-a86d-c719444b110e,SESCO,II.1.1,Neuquén,AR-Q,annual,2018,gas oil combustion consumption by to the public,991.24116,TJ,N2O,3.9,kg/TJ,3865.840524,kg -ddd4c0e2-ee60-3a17-8e6b-57647d5f13a1,SESCO,II.1.1,Rio Negro,AR-R,annual,2018,gas oil combustion consumption by to the public,145.9248,TJ,CO2,74100.0,kg/TJ,10813027.68,kg -3735f0e6-886d-3208-af7b-7780539fdcb3,SESCO,II.1.1,Rio Negro,AR-R,annual,2018,gas oil combustion consumption by to the public,145.9248,TJ,CH4,3.9,kg/TJ,569.10672,kg -3735f0e6-886d-3208-af7b-7780539fdcb3,SESCO,II.1.1,Rio Negro,AR-R,annual,2018,gas oil combustion consumption by to the public,145.9248,TJ,N2O,3.9,kg/TJ,569.10672,kg -190c17e2-7827-3d7e-a018-4c966227722c,SESCO,II.1.1,Salta,AR-A,annual,2018,gas oil combustion consumption by to the public,155.27988,TJ,CO2,74100.0,kg/TJ,11506239.108,kg -03d91489-9c9f-3987-8714-edadd3a14d82,SESCO,II.1.1,Salta,AR-A,annual,2018,gas oil combustion consumption by to the public,155.27988,TJ,CH4,3.9,kg/TJ,605.5915319999999,kg -03d91489-9c9f-3987-8714-edadd3a14d82,SESCO,II.1.1,Salta,AR-A,annual,2018,gas oil combustion consumption by to the public,155.27988,TJ,N2O,3.9,kg/TJ,605.5915319999999,kg -7607abf4-3831-3eab-a161-aa0585b65bec,SESCO,II.1.1,San Juan,AR-J,annual,2018,gas oil combustion consumption by to the public,107.89044,TJ,CO2,74100.0,kg/TJ,7994681.604,kg -50ae7c5e-4473-372e-adb2-4962d9801772,SESCO,II.1.1,San Juan,AR-J,annual,2018,gas oil combustion consumption by to the public,107.89044,TJ,CH4,3.9,kg/TJ,420.772716,kg -50ae7c5e-4473-372e-adb2-4962d9801772,SESCO,II.1.1,San Juan,AR-J,annual,2018,gas oil combustion consumption by to the public,107.89044,TJ,N2O,3.9,kg/TJ,420.772716,kg -5cc260b8-1d38-36b3-8b57-e6538d5df7d0,SESCO,II.1.1,San Luis,AR-D,annual,2018,gas oil combustion consumption by to the public,88.81908,TJ,CO2,74100.0,kg/TJ,6581493.828,kg -2ea21beb-6eb5-3a20-93f1-433ab9e3ce29,SESCO,II.1.1,San Luis,AR-D,annual,2018,gas oil combustion consumption by to the public,88.81908,TJ,CH4,3.9,kg/TJ,346.394412,kg -2ea21beb-6eb5-3a20-93f1-433ab9e3ce29,SESCO,II.1.1,San Luis,AR-D,annual,2018,gas oil combustion consumption by to the public,88.81908,TJ,N2O,3.9,kg/TJ,346.394412,kg -acf6e447-573a-37d6-b217-a12027c23505,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,gas oil combustion consumption by to the public,2332.0878,TJ,CO2,74100.0,kg/TJ,172807705.98,kg -eb0d6ed5-5711-304c-8bff-a8b651a7e49d,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,gas oil combustion consumption by to the public,2332.0878,TJ,CH4,3.9,kg/TJ,9095.142419999998,kg -eb0d6ed5-5711-304c-8bff-a8b651a7e49d,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,gas oil combustion consumption by to the public,2332.0878,TJ,N2O,3.9,kg/TJ,9095.142419999998,kg -ff13317c-3736-3c8e-9193-64e827db0b25,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2018,gas oil combustion consumption by to the public,257.49948,TJ,CO2,74100.0,kg/TJ,19080711.468000002,kg -6cdd0b4d-8f9b-3a2a-91d4-380fd88477d0,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2018,gas oil combustion consumption by to the public,257.49948,TJ,CH4,3.9,kg/TJ,1004.247972,kg -6cdd0b4d-8f9b-3a2a-91d4-380fd88477d0,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2018,gas oil combustion consumption by to the public,257.49948,TJ,N2O,3.9,kg/TJ,1004.247972,kg -fd25b21c-e2a4-38c9-9fc7-6bd499860fd8,SESCO,II.1.1,Tucuman,AR-T,annual,2018,gas oil combustion consumption by to the public,555.12828,TJ,CO2,74100.0,kg/TJ,41135005.548,kg -90986e7d-cfaf-339d-83c3-cb20d7d9d1e7,SESCO,II.1.1,Tucuman,AR-T,annual,2018,gas oil combustion consumption by to the public,555.12828,TJ,CH4,3.9,kg/TJ,2165.000292,kg -90986e7d-cfaf-339d-83c3-cb20d7d9d1e7,SESCO,II.1.1,Tucuman,AR-T,annual,2018,gas oil combustion consumption by to the public,555.12828,TJ,N2O,3.9,kg/TJ,2165.000292,kg -0c836115-5e43-39ad-a581-bee825394999,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,jet kerosene combustion consumption by to the public,0.37743599999999994,TJ,CO2,71500.0,kg/TJ,26986.673999999995,kg -6bf78263-32a2-3ed3-9932-0f065d162243,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,jet kerosene combustion consumption by to the public,0.37743599999999994,TJ,CH4,0.5,kg/TJ,0.18871799999999997,kg -1d0ad3c9-0f5c-3332-81a6-18a826c27eaf,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,jet kerosene combustion consumption by to the public,0.37743599999999994,TJ,N2O,2.0,kg/TJ,0.7548719999999999,kg -d17d5672-f7c3-3e51-abd3-a7ecc3057b55,SESCO,II.1.1,Entre Rios,AR-E,annual,2018,jet kerosene combustion consumption by to the public,3.6800009999999994,TJ,CO2,71500.0,kg/TJ,263120.07149999996,kg -4a68a8e2-a8e2-30a6-9876-5c28c4aa1117,SESCO,II.1.1,Entre Rios,AR-E,annual,2018,jet kerosene combustion consumption by to the public,3.6800009999999994,TJ,CH4,0.5,kg/TJ,1.8400004999999997,kg -caa0fd18-3793-3095-8a23-f8d8eef7b877,SESCO,II.1.1,Entre Rios,AR-E,annual,2018,jet kerosene combustion consumption by to the public,3.6800009999999994,TJ,N2O,2.0,kg/TJ,7.360001999999999,kg -6b38a6c7-f9fd-37dd-984f-a70222a3f480,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,jet kerosene combustion consumption by to the public,0.7234189999999999,TJ,CO2,71500.0,kg/TJ,51724.45849999999,kg -a248fd1a-c682-378e-9ea3-e2702a2e1bd5,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,jet kerosene combustion consumption by to the public,0.7234189999999999,TJ,CH4,0.5,kg/TJ,0.36170949999999996,kg -4d301cfa-7514-34ec-93a8-25009f8b5280,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,jet kerosene combustion consumption by to the public,0.7234189999999999,TJ,N2O,2.0,kg/TJ,1.4468379999999998,kg -effc26e8-1e44-3feb-89c8-1931c98daa56,SESCO,I.3.1,Capital Federal,AR-C,annual,2018,gas oil combustion consumption by petrochemical industries,1.30032,TJ,CO2,74100.0,kg/TJ,96353.712,kg -d1cc3170-1fb3-3d62-98ae-69f2ea114da8,SESCO,I.3.1,Capital Federal,AR-C,annual,2018,gas oil combustion consumption by petrochemical industries,1.30032,TJ,CH4,3.9,kg/TJ,5.071248,kg -d1cc3170-1fb3-3d62-98ae-69f2ea114da8,SESCO,I.3.1,Capital Federal,AR-C,annual,2018,gas oil combustion consumption by petrochemical industries,1.30032,TJ,N2O,3.9,kg/TJ,5.071248,kg -540f8278-0d07-3d72-9b67-00cfc2ee4bf7,SESCO,II.2.1,Buenos Aires,AR-B,annual,2018,gas oil combustion consumption by railway transport,280.76076,TJ,CO2,74100.0,kg/TJ,20804372.316,kg -17ee28cb-7aa2-39e6-96d4-5077b41be8ad,SESCO,II.2.1,Buenos Aires,AR-B,annual,2018,gas oil combustion consumption by railway transport,280.76076,TJ,CH4,3.9,kg/TJ,1094.966964,kg -17ee28cb-7aa2-39e6-96d4-5077b41be8ad,SESCO,II.2.1,Buenos Aires,AR-B,annual,2018,gas oil combustion consumption by railway transport,280.76076,TJ,N2O,3.9,kg/TJ,1094.966964,kg -62afde42-3063-301e-85f1-4065eb644840,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,gasoline combustion consumption by freight transport,1.1961,TJ,CO2,69300.0,kg/TJ,82889.73,kg -786ebfd4-c51f-35df-9c5b-e8a871a86484,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,gasoline combustion consumption by freight transport,1.1961,TJ,CH4,33.0,kg/TJ,39.4713,kg -19a14e4d-1496-3233-be72-a0d23f54fa09,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,gasoline combustion consumption by freight transport,1.1961,TJ,N2O,3.2,kg/TJ,3.82752,kg -485316ae-1f1c-3294-9944-51e7cc7c4fc5,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,gasoline combustion consumption by freight transport,4.4742999999999995,TJ,CO2,69300.0,kg/TJ,310068.99,kg -3ee83461-8521-3213-8a15-1145ad37ffa6,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,gasoline combustion consumption by freight transport,4.4742999999999995,TJ,CH4,33.0,kg/TJ,147.65189999999998,kg -2c770bbb-6a0a-328d-b80b-3d2b76e31868,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,gasoline combustion consumption by freight transport,4.4742999999999995,TJ,N2O,3.2,kg/TJ,14.31776,kg -5860aa9e-a040-318c-9a7a-4a5392c34755,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,gas oil combustion consumption by freight transport,36.12,TJ,CO2,74100.0,kg/TJ,2676492.0,kg -ee5df7f2-3194-330d-9c32-9c95e1df11bd,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,gas oil combustion consumption by freight transport,36.12,TJ,CH4,3.9,kg/TJ,140.868,kg -ee5df7f2-3194-330d-9c32-9c95e1df11bd,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,gas oil combustion consumption by freight transport,36.12,TJ,N2O,3.9,kg/TJ,140.868,kg -f7ef6738-57b7-3385-98f0-25330ef6030d,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,gas oil combustion consumption by freight transport,4.8762,TJ,CO2,74100.0,kg/TJ,361326.42,kg -004b0e74-8365-38fc-9ab2-cbdd0b96aecc,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,gas oil combustion consumption by freight transport,4.8762,TJ,CH4,3.9,kg/TJ,19.01718,kg -004b0e74-8365-38fc-9ab2-cbdd0b96aecc,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,gas oil combustion consumption by freight transport,4.8762,TJ,N2O,3.9,kg/TJ,19.01718,kg -e03dc4b9-dfdf-374f-b4d7-36a0d5dfa1bc,SESCO,II.1.1,Córdoba,AR-X,annual,2018,gas oil combustion consumption by freight transport,54.866279999999996,TJ,CO2,74100.0,kg/TJ,4065591.3479999998,kg -3c486512-622d-39cf-8acc-1e0cad9b37e0,SESCO,II.1.1,Córdoba,AR-X,annual,2018,gas oil combustion consumption by freight transport,54.866279999999996,TJ,CH4,3.9,kg/TJ,213.978492,kg -3c486512-622d-39cf-8acc-1e0cad9b37e0,SESCO,II.1.1,Córdoba,AR-X,annual,2018,gas oil combustion consumption by freight transport,54.866279999999996,TJ,N2O,3.9,kg/TJ,213.978492,kg -56384b82-3110-356f-a0d0-9636707ef011,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,gas oil combustion consumption by freight transport,2.3478,TJ,CO2,74100.0,kg/TJ,173971.97999999998,kg -890d68ef-ec72-34f8-afb8-c87f2c3219e2,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,gas oil combustion consumption by freight transport,2.3478,TJ,CH4,3.9,kg/TJ,9.156419999999999,kg -890d68ef-ec72-34f8-afb8-c87f2c3219e2,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,gas oil combustion consumption by freight transport,2.3478,TJ,N2O,3.9,kg/TJ,9.156419999999999,kg -53c8d0f1-9dcd-3cad-8615-380a00095d54,SESCO,II.1.1,Córdoba,AR-X,annual,2018,gas oil combustion consumption by freight transport,3.17856,TJ,CO2,74100.0,kg/TJ,235531.296,kg -3d033ff8-50a8-3efc-8ec2-9c65cd9de9c4,SESCO,II.1.1,Córdoba,AR-X,annual,2018,gas oil combustion consumption by freight transport,3.17856,TJ,CH4,3.9,kg/TJ,12.396384,kg -3d033ff8-50a8-3efc-8ec2-9c65cd9de9c4,SESCO,II.1.1,Córdoba,AR-X,annual,2018,gas oil combustion consumption by freight transport,3.17856,TJ,N2O,3.9,kg/TJ,12.396384,kg -cac3c994-5131-3d63-95fa-ee9d41c5c310,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,gas oil combustion consumption by public passenger transport,5118.78192,TJ,CO2,74100.0,kg/TJ,379301740.272,kg -ad6a2a47-60b6-3279-8658-9b6ae1435d7e,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,gas oil combustion consumption by public passenger transport,5118.78192,TJ,CH4,3.9,kg/TJ,19963.249488,kg -ad6a2a47-60b6-3279-8658-9b6ae1435d7e,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,gas oil combustion consumption by public passenger transport,5118.78192,TJ,N2O,3.9,kg/TJ,19963.249488,kg -ee0ab545-7baa-38e5-8ff1-6c6578cb0694,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,gas oil combustion consumption by public passenger transport,466.81488,TJ,CO2,74100.0,kg/TJ,34590982.608,kg -81b9e77a-7f9f-33ad-9164-14894819ed25,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,gas oil combustion consumption by public passenger transport,466.81488,TJ,CH4,3.9,kg/TJ,1820.5780320000001,kg -81b9e77a-7f9f-33ad-9164-14894819ed25,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,gas oil combustion consumption by public passenger transport,466.81488,TJ,N2O,3.9,kg/TJ,1820.5780320000001,kg -a325b2f7-c0b9-3e5d-9c10-73120d4cb4eb,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,gas oil combustion consumption by public passenger transport,90.95016,TJ,CO2,74100.0,kg/TJ,6739406.856,kg -f99dc35d-6040-385a-b2a4-06c142aa7ee1,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,gas oil combustion consumption by public passenger transport,90.95016,TJ,CH4,3.9,kg/TJ,354.705624,kg -f99dc35d-6040-385a-b2a4-06c142aa7ee1,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,gas oil combustion consumption by public passenger transport,90.95016,TJ,N2O,3.9,kg/TJ,354.705624,kg -51cc1477-c5fc-3c2c-8aed-7b53686b9c50,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,gas oil combustion consumption by public passenger transport,837.76728,TJ,CO2,74100.0,kg/TJ,62078555.448,kg -80721cde-bdb1-36c0-8f62-7d60a02b45fc,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,gas oil combustion consumption by public passenger transport,837.76728,TJ,CH4,3.9,kg/TJ,3267.292392,kg -80721cde-bdb1-36c0-8f62-7d60a02b45fc,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,gas oil combustion consumption by public passenger transport,837.76728,TJ,N2O,3.9,kg/TJ,3267.292392,kg -3394cebc-448a-3043-b3eb-7b945c8aeef1,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,gas oil combustion consumption by public passenger transport,32.36352,TJ,CO2,74100.0,kg/TJ,2398136.832,kg -a1562943-56d9-32d0-a003-75f6611cd59b,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,gas oil combustion consumption by public passenger transport,32.36352,TJ,CH4,3.9,kg/TJ,126.21772800000001,kg -a1562943-56d9-32d0-a003-75f6611cd59b,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,gas oil combustion consumption by public passenger transport,32.36352,TJ,N2O,3.9,kg/TJ,126.21772800000001,kg -f0038ee5-f1df-3bb9-9ccb-336463bb5df5,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,gas oil combustion consumption by public passenger transport,45.15,TJ,CO2,74100.0,kg/TJ,3345615.0,kg -cb0a7858-fb4a-35a3-8b51-dcf8d3889c6e,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,gas oil combustion consumption by public passenger transport,45.15,TJ,CH4,3.9,kg/TJ,176.08499999999998,kg -cb0a7858-fb4a-35a3-8b51-dcf8d3889c6e,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,gas oil combustion consumption by public passenger transport,45.15,TJ,N2O,3.9,kg/TJ,176.08499999999998,kg -022c383f-8326-309a-89f2-6b62cd38e794,SESCO,II.5.1,Buenos Aires,AR-B,annual,2018,gas oil combustion consumption by agriculture machines,1157.72037108,TJ,CO2,74100.0,kg/TJ,85787079.497028,kg -aa9bb924-64c0-3359-9459-6777b9597cb6,SESCO,II.5.1,Buenos Aires,AR-B,annual,2018,gas oil combustion consumption by agriculture machines,1157.72037108,TJ,CH4,3.9,kg/TJ,4515.109447211999,kg -aa9bb924-64c0-3359-9459-6777b9597cb6,SESCO,II.5.1,Buenos Aires,AR-B,annual,2018,gas oil combustion consumption by agriculture machines,1157.72037108,TJ,N2O,3.9,kg/TJ,4515.109447211999,kg -feb912ba-24df-3c1c-97e4-e7d7af37b4e4,SESCO,II.5.1,Capital Federal,AR-C,annual,2018,gas oil combustion consumption by agriculture machines,393.89152572,TJ,CO2,74100.0,kg/TJ,29187362.055852,kg -52ec3e51-6f9b-30a3-82de-738702762fbc,SESCO,II.5.1,Capital Federal,AR-C,annual,2018,gas oil combustion consumption by agriculture machines,393.89152572,TJ,CH4,3.9,kg/TJ,1536.176950308,kg -52ec3e51-6f9b-30a3-82de-738702762fbc,SESCO,II.5.1,Capital Federal,AR-C,annual,2018,gas oil combustion consumption by agriculture machines,393.89152572,TJ,N2O,3.9,kg/TJ,1536.176950308,kg -191ef058-9a76-3064-b46c-cf44424c129a,SESCO,II.5.1,Corrientes,AR-W,annual,2018,gas oil combustion consumption by agriculture machines,30.58807752,TJ,CO2,74100.0,kg/TJ,2266576.544232,kg -da2e4502-96ea-38c2-85b5-ef9b9abd3f7c,SESCO,II.5.1,Corrientes,AR-W,annual,2018,gas oil combustion consumption by agriculture machines,30.58807752,TJ,CH4,3.9,kg/TJ,119.29350232799999,kg -da2e4502-96ea-38c2-85b5-ef9b9abd3f7c,SESCO,II.5.1,Corrientes,AR-W,annual,2018,gas oil combustion consumption by agriculture machines,30.58807752,TJ,N2O,3.9,kg/TJ,119.29350232799999,kg -df521f47-b7da-32c0-b271-cd9ee83049df,SESCO,II.5.1,Córdoba,AR-X,annual,2018,gas oil combustion consumption by agriculture machines,187.90050215999997,TJ,CO2,74100.0,kg/TJ,13923427.210055998,kg -6a67f61f-056d-3dce-a6c2-110096bb7c89,SESCO,II.5.1,Córdoba,AR-X,annual,2018,gas oil combustion consumption by agriculture machines,187.90050215999997,TJ,CH4,3.9,kg/TJ,732.8119584239998,kg -6a67f61f-056d-3dce-a6c2-110096bb7c89,SESCO,II.5.1,Córdoba,AR-X,annual,2018,gas oil combustion consumption by agriculture machines,187.90050215999997,TJ,N2O,3.9,kg/TJ,732.8119584239998,kg -5db55058-2ebd-3349-9457-d706ef9bf731,SESCO,II.5.1,Entre Rios,AR-E,annual,2018,gas oil combustion consumption by agriculture machines,130.44622415999999,TJ,CO2,74100.0,kg/TJ,9666065.210256,kg -a75e3e4d-c07a-386c-896d-3c4dd07884e3,SESCO,II.5.1,Entre Rios,AR-E,annual,2018,gas oil combustion consumption by agriculture machines,130.44622415999999,TJ,CH4,3.9,kg/TJ,508.7402742239999,kg -a75e3e4d-c07a-386c-896d-3c4dd07884e3,SESCO,II.5.1,Entre Rios,AR-E,annual,2018,gas oil combustion consumption by agriculture machines,130.44622415999999,TJ,N2O,3.9,kg/TJ,508.7402742239999,kg -ceedad92-bb26-32c2-ac3c-bc1e9a25b773,SESCO,II.5.1,Jujuy,AR-Y,annual,2018,gas oil combustion consumption by agriculture machines,13.474566,TJ,CO2,74100.0,kg/TJ,998465.3406,kg -700a879c-8303-3cea-a3e4-a2b8f034ba39,SESCO,II.5.1,Jujuy,AR-Y,annual,2018,gas oil combustion consumption by agriculture machines,13.474566,TJ,CH4,3.9,kg/TJ,52.5508074,kg -700a879c-8303-3cea-a3e4-a2b8f034ba39,SESCO,II.5.1,Jujuy,AR-Y,annual,2018,gas oil combustion consumption by agriculture machines,13.474566,TJ,N2O,3.9,kg/TJ,52.5508074,kg -403668ec-48eb-3b2e-87af-b9c06ccaf593,SESCO,II.5.1,La Pampa,AR-L,annual,2018,gas oil combustion consumption by agriculture machines,25.8769098,TJ,CO2,74100.0,kg/TJ,1917479.01618,kg -9712fde9-6e6f-3e9d-be36-67c0c31f11f4,SESCO,II.5.1,La Pampa,AR-L,annual,2018,gas oil combustion consumption by agriculture machines,25.8769098,TJ,CH4,3.9,kg/TJ,100.91994822,kg -9712fde9-6e6f-3e9d-be36-67c0c31f11f4,SESCO,II.5.1,La Pampa,AR-L,annual,2018,gas oil combustion consumption by agriculture machines,25.8769098,TJ,N2O,3.9,kg/TJ,100.91994822,kg -82cdbe5a-8b1b-30eb-a358-82338be505d9,SESCO,II.5.1,San Luis,AR-D,annual,2018,gas oil combustion consumption by agriculture machines,2.2732483199999995,TJ,CO2,74100.0,kg/TJ,168447.70051199995,kg -ad1e16af-dcb2-3492-af53-8416e789f0ec,SESCO,II.5.1,San Luis,AR-D,annual,2018,gas oil combustion consumption by agriculture machines,2.2732483199999995,TJ,CH4,3.9,kg/TJ,8.865668447999997,kg -ad1e16af-dcb2-3492-af53-8416e789f0ec,SESCO,II.5.1,San Luis,AR-D,annual,2018,gas oil combustion consumption by agriculture machines,2.2732483199999995,TJ,N2O,3.9,kg/TJ,8.865668447999997,kg -c8f69ba0-a92d-3f50-a1c5-d9ea4d0ebeb7,SESCO,II.5.1,Santa Fe,AR-S,annual,2018,gas oil combustion consumption by agriculture machines,415.56699324,TJ,CO2,74100.0,kg/TJ,30793514.199084,kg -baa164f8-ef0e-315f-ba02-5205fa4b28a9,SESCO,II.5.1,Santa Fe,AR-S,annual,2018,gas oil combustion consumption by agriculture machines,415.56699324,TJ,CH4,3.9,kg/TJ,1620.711273636,kg -baa164f8-ef0e-315f-ba02-5205fa4b28a9,SESCO,II.5.1,Santa Fe,AR-S,annual,2018,gas oil combustion consumption by agriculture machines,415.56699324,TJ,N2O,3.9,kg/TJ,1620.711273636,kg -c63d87b8-c877-36b5-92e3-0b2fffad4e1f,SESCO,II.5.1,Santiago del Estero,AR-G,annual,2018,gas oil combustion consumption by agriculture machines,143.27485620000002,TJ,CO2,74100.0,kg/TJ,10616666.84442,kg -867b5c24-d381-3112-aea3-9059f442e79f,SESCO,II.5.1,Santiago del Estero,AR-G,annual,2018,gas oil combustion consumption by agriculture machines,143.27485620000002,TJ,CH4,3.9,kg/TJ,558.77193918,kg -867b5c24-d381-3112-aea3-9059f442e79f,SESCO,II.5.1,Santiago del Estero,AR-G,annual,2018,gas oil combustion consumption by agriculture machines,143.27485620000002,TJ,N2O,3.9,kg/TJ,558.77193918,kg -eafdf87a-7bd1-388b-aeca-b369c02c224d,SESCO,II.5.1,Tucuman,AR-T,annual,2018,gas oil combustion consumption by agriculture machines,108.44311212,TJ,CO2,74100.0,kg/TJ,8035634.608092,kg -aff9f76e-3e9c-3191-97e0-f506576c7e13,SESCO,II.5.1,Tucuman,AR-T,annual,2018,gas oil combustion consumption by agriculture machines,108.44311212,TJ,CH4,3.9,kg/TJ,422.92813726799994,kg -aff9f76e-3e9c-3191-97e0-f506576c7e13,SESCO,II.5.1,Tucuman,AR-T,annual,2018,gas oil combustion consumption by agriculture machines,108.44311212,TJ,N2O,3.9,kg/TJ,422.92813726799994,kg -c7e8171a-dbd8-306e-8bf4-765cbca08f51,SESCO,II.5.1,Buenos Aires,AR-B,annual,2018,gas oil combustion consumption by agriculture machines,58.78490268,TJ,CO2,74100.0,kg/TJ,4355961.288588,kg -fe2a714d-fe98-3281-a24a-7b594bdefe98,SESCO,II.5.1,Buenos Aires,AR-B,annual,2018,gas oil combustion consumption by agriculture machines,58.78490268,TJ,CH4,3.9,kg/TJ,229.261120452,kg -fe2a714d-fe98-3281-a24a-7b594bdefe98,SESCO,II.5.1,Buenos Aires,AR-B,annual,2018,gas oil combustion consumption by agriculture machines,58.78490268,TJ,N2O,3.9,kg/TJ,229.261120452,kg -cbc0e5af-79e6-3152-a81c-5f24005a17b1,SESCO,II.5.1,Capital Federal,AR-C,annual,2018,gas oil combustion consumption by agriculture machines,22.6835406,TJ,CO2,74100.0,kg/TJ,1680850.35846,kg -e6996590-b01e-35d4-ab52-a50470205469,SESCO,II.5.1,Capital Federal,AR-C,annual,2018,gas oil combustion consumption by agriculture machines,22.6835406,TJ,CH4,3.9,kg/TJ,88.46580834,kg -e6996590-b01e-35d4-ab52-a50470205469,SESCO,II.5.1,Capital Federal,AR-C,annual,2018,gas oil combustion consumption by agriculture machines,22.6835406,TJ,N2O,3.9,kg/TJ,88.46580834,kg -1549e650-94e8-37ae-8301-f805af147adf,SESCO,II.5.1,Corrientes,AR-W,annual,2018,gas oil combustion consumption by agriculture machines,1.0836,TJ,CO2,74100.0,kg/TJ,80294.76,kg -a6eebfb5-f411-3f23-a6fb-f694fa8828e4,SESCO,II.5.1,Corrientes,AR-W,annual,2018,gas oil combustion consumption by agriculture machines,1.0836,TJ,CH4,3.9,kg/TJ,4.226039999999999,kg -a6eebfb5-f411-3f23-a6fb-f694fa8828e4,SESCO,II.5.1,Corrientes,AR-W,annual,2018,gas oil combustion consumption by agriculture machines,1.0836,TJ,N2O,3.9,kg/TJ,4.226039999999999,kg -0a6a3a0b-d67b-33c6-8070-078dba07d376,SESCO,II.5.1,Córdoba,AR-X,annual,2018,gas oil combustion consumption by agriculture machines,16.72305432,TJ,CO2,74100.0,kg/TJ,1239178.3251119999,kg -87b4ad8c-21b3-3405-91ac-8e78603b639a,SESCO,II.5.1,Córdoba,AR-X,annual,2018,gas oil combustion consumption by agriculture machines,16.72305432,TJ,CH4,3.9,kg/TJ,65.219911848,kg -87b4ad8c-21b3-3405-91ac-8e78603b639a,SESCO,II.5.1,Córdoba,AR-X,annual,2018,gas oil combustion consumption by agriculture machines,16.72305432,TJ,N2O,3.9,kg/TJ,65.219911848,kg -0673f13d-9a84-316d-892e-d7dc78512d57,SESCO,II.5.1,Entre Rios,AR-E,annual,2018,gas oil combustion consumption by agriculture machines,7.6139876399999995,TJ,CO2,74100.0,kg/TJ,564196.484124,kg -dd9fcda1-7d29-3086-bc84-85532d3b2519,SESCO,II.5.1,Entre Rios,AR-E,annual,2018,gas oil combustion consumption by agriculture machines,7.6139876399999995,TJ,CH4,3.9,kg/TJ,29.694551796,kg -dd9fcda1-7d29-3086-bc84-85532d3b2519,SESCO,II.5.1,Entre Rios,AR-E,annual,2018,gas oil combustion consumption by agriculture machines,7.6139876399999995,TJ,N2O,3.9,kg/TJ,29.694551796,kg -d02599d7-3f87-39b7-8a78-fb4d3eebe80f,SESCO,II.5.1,Jujuy,AR-Y,annual,2018,gas oil combustion consumption by agriculture machines,28.67985792,TJ,CO2,74100.0,kg/TJ,2125177.471872,kg -b49e47b8-085c-3be9-8475-9cf14fc0e778,SESCO,II.5.1,Jujuy,AR-Y,annual,2018,gas oil combustion consumption by agriculture machines,28.67985792,TJ,CH4,3.9,kg/TJ,111.851445888,kg -b49e47b8-085c-3be9-8475-9cf14fc0e778,SESCO,II.5.1,Jujuy,AR-Y,annual,2018,gas oil combustion consumption by agriculture machines,28.67985792,TJ,N2O,3.9,kg/TJ,111.851445888,kg -a0bea68f-08ee-3d79-938d-32608a9d7cd1,SESCO,II.5.1,Santa Fe,AR-S,annual,2018,gas oil combustion consumption by agriculture machines,38.890873559999996,TJ,CO2,74100.0,kg/TJ,2881813.7307959995,kg -1da08b0f-30d6-36ed-a35c-566a713537ef,SESCO,II.5.1,Santa Fe,AR-S,annual,2018,gas oil combustion consumption by agriculture machines,38.890873559999996,TJ,CH4,3.9,kg/TJ,151.67440688399998,kg -1da08b0f-30d6-36ed-a35c-566a713537ef,SESCO,II.5.1,Santa Fe,AR-S,annual,2018,gas oil combustion consumption by agriculture machines,38.890873559999996,TJ,N2O,3.9,kg/TJ,151.67440688399998,kg -7bc76ea2-2f0b-3dec-97d0-1aaa5db4ffd4,SESCO,II.5.1,Tucuman,AR-T,annual,2018,gas oil combustion consumption by agriculture machines,20.44731528,TJ,CO2,74100.0,kg/TJ,1515146.0622480002,kg -a78d9b1e-4b61-3655-aac3-b3f7d3ee551a,SESCO,II.5.1,Tucuman,AR-T,annual,2018,gas oil combustion consumption by agriculture machines,20.44731528,TJ,CH4,3.9,kg/TJ,79.744529592,kg -a78d9b1e-4b61-3655-aac3-b3f7d3ee551a,SESCO,II.5.1,Tucuman,AR-T,annual,2018,gas oil combustion consumption by agriculture machines,20.44731528,TJ,N2O,3.9,kg/TJ,79.744529592,kg -0e843d62-8c1d-3b6f-9a4b-8ba013e5648f,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,gas oil combustion consumption by to the public,7552.05155628,TJ,CO2,74100.0,kg/TJ,559607020.320348,kg -2919ba44-d86d-3049-abc0-7826d208018d,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,gas oil combustion consumption by to the public,7552.05155628,TJ,CH4,3.9,kg/TJ,29453.001069492,kg -2919ba44-d86d-3049-abc0-7826d208018d,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,gas oil combustion consumption by to the public,7552.05155628,TJ,N2O,3.9,kg/TJ,29453.001069492,kg -24095228-4c3f-3d05-b6b5-f17bb1f661f3,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,gas oil combustion consumption by to the public,177.81717072,TJ,CO2,74100.0,kg/TJ,13176252.350352,kg -409c824b-7b7f-3500-b1bb-015d02c986ba,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,gas oil combustion consumption by to the public,177.81717072,TJ,CH4,3.9,kg/TJ,693.486965808,kg -409c824b-7b7f-3500-b1bb-015d02c986ba,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,gas oil combustion consumption by to the public,177.81717072,TJ,N2O,3.9,kg/TJ,693.486965808,kg -2da10ed6-35c4-3130-80bb-c5b6f91ae990,SESCO,II.1.1,Catamarca,AR-K,annual,2018,gas oil combustion consumption by to the public,3.13879188,TJ,CO2,74100.0,kg/TJ,232584.478308,kg -970fab53-f865-3de5-b2f4-fb6cd6e4a7a0,SESCO,II.1.1,Catamarca,AR-K,annual,2018,gas oil combustion consumption by to the public,3.13879188,TJ,CH4,3.9,kg/TJ,12.241288332,kg -970fab53-f865-3de5-b2f4-fb6cd6e4a7a0,SESCO,II.1.1,Catamarca,AR-K,annual,2018,gas oil combustion consumption by to the public,3.13879188,TJ,N2O,3.9,kg/TJ,12.241288332,kg -2917c07d-7810-3669-ad85-78823cd95f54,SESCO,II.1.1,Chaco,AR-H,annual,2018,gas oil combustion consumption by to the public,4.09048164,TJ,CO2,74100.0,kg/TJ,303104.689524,kg -244fee7e-6b22-3398-9111-f3052a076662,SESCO,II.1.1,Chaco,AR-H,annual,2018,gas oil combustion consumption by to the public,4.09048164,TJ,CH4,3.9,kg/TJ,15.952878396000001,kg -244fee7e-6b22-3398-9111-f3052a076662,SESCO,II.1.1,Chaco,AR-H,annual,2018,gas oil combustion consumption by to the public,4.09048164,TJ,N2O,3.9,kg/TJ,15.952878396000001,kg -5ec1da4f-b05d-3dfe-a328-8595cc1e460e,SESCO,II.1.1,Chubut,AR-U,annual,2018,gas oil combustion consumption by to the public,52.2961614,TJ,CO2,74100.0,kg/TJ,3875145.5597400004,kg -23e1d7cc-a43d-3173-ac1b-944a95c8d0ff,SESCO,II.1.1,Chubut,AR-U,annual,2018,gas oil combustion consumption by to the public,52.2961614,TJ,CH4,3.9,kg/TJ,203.95502946,kg -23e1d7cc-a43d-3173-ac1b-944a95c8d0ff,SESCO,II.1.1,Chubut,AR-U,annual,2018,gas oil combustion consumption by to the public,52.2961614,TJ,N2O,3.9,kg/TJ,203.95502946,kg -3da6f129-271b-374a-b433-2475512153e4,SESCO,II.1.1,Corrientes,AR-W,annual,2018,gas oil combustion consumption by to the public,51.62339028,TJ,CO2,74100.0,kg/TJ,3825293.219748,kg -740071c9-d489-3e7a-aae3-e76143c5d16f,SESCO,II.1.1,Corrientes,AR-W,annual,2018,gas oil combustion consumption by to the public,51.62339028,TJ,CH4,3.9,kg/TJ,201.33122209200002,kg -740071c9-d489-3e7a-aae3-e76143c5d16f,SESCO,II.1.1,Corrientes,AR-W,annual,2018,gas oil combustion consumption by to the public,51.62339028,TJ,N2O,3.9,kg/TJ,201.33122209200002,kg -2d289825-c0d2-31a7-87e4-4f7615f0433b,SESCO,II.1.1,Córdoba,AR-X,annual,2018,gas oil combustion consumption by to the public,432.08340503999995,TJ,CO2,74100.0,kg/TJ,32017380.313463997,kg -81865500-6adc-307f-8901-3319babcca35,SESCO,II.1.1,Córdoba,AR-X,annual,2018,gas oil combustion consumption by to the public,432.08340503999995,TJ,CH4,3.9,kg/TJ,1685.1252796559997,kg -81865500-6adc-307f-8901-3319babcca35,SESCO,II.1.1,Córdoba,AR-X,annual,2018,gas oil combustion consumption by to the public,432.08340503999995,TJ,N2O,3.9,kg/TJ,1685.1252796559997,kg -7560317e-d997-388a-a798-aeb8f30205be,SESCO,II.1.1,Entre Rios,AR-E,annual,2018,gas oil combustion consumption by to the public,694.4349207600001,TJ,CO2,74100.0,kg/TJ,51457627.62831601,kg -b04ea91a-66fc-3e23-a254-367aada0bd23,SESCO,II.1.1,Entre Rios,AR-E,annual,2018,gas oil combustion consumption by to the public,694.4349207600001,TJ,CH4,3.9,kg/TJ,2708.2961909640003,kg -b04ea91a-66fc-3e23-a254-367aada0bd23,SESCO,II.1.1,Entre Rios,AR-E,annual,2018,gas oil combustion consumption by to the public,694.4349207600001,TJ,N2O,3.9,kg/TJ,2708.2961909640003,kg -58a22603-b376-35f8-ac52-0d56a7478cde,SESCO,II.1.1,Formosa,AR-P,annual,2018,gas oil combustion consumption by to the public,48.4488396,TJ,CO2,74100.0,kg/TJ,3590059.01436,kg -8ae32ca2-04d5-3007-b504-84db71a70b80,SESCO,II.1.1,Formosa,AR-P,annual,2018,gas oil combustion consumption by to the public,48.4488396,TJ,CH4,3.9,kg/TJ,188.95047444,kg -8ae32ca2-04d5-3007-b504-84db71a70b80,SESCO,II.1.1,Formosa,AR-P,annual,2018,gas oil combustion consumption by to the public,48.4488396,TJ,N2O,3.9,kg/TJ,188.95047444,kg -72643fdd-c192-3cff-8994-95ba63372ad1,SESCO,II.1.1,Jujuy,AR-Y,annual,2018,gas oil combustion consumption by to the public,22.73580624,TJ,CO2,74100.0,kg/TJ,1684723.242384,kg -16543ce9-a91d-3ca9-960a-a2ce75328f18,SESCO,II.1.1,Jujuy,AR-Y,annual,2018,gas oil combustion consumption by to the public,22.73580624,TJ,CH4,3.9,kg/TJ,88.66964433599999,kg -16543ce9-a91d-3ca9-960a-a2ce75328f18,SESCO,II.1.1,Jujuy,AR-Y,annual,2018,gas oil combustion consumption by to the public,22.73580624,TJ,N2O,3.9,kg/TJ,88.66964433599999,kg -4a3cfc5e-3a3a-3601-a4b8-9da66704265e,SESCO,II.1.1,La Pampa,AR-L,annual,2018,gas oil combustion consumption by to the public,601.2481742399999,TJ,CO2,74100.0,kg/TJ,44552489.711183995,kg -b6c2c736-5d1f-36c7-a599-dbb03a623c14,SESCO,II.1.1,La Pampa,AR-L,annual,2018,gas oil combustion consumption by to the public,601.2481742399999,TJ,CH4,3.9,kg/TJ,2344.8678795359997,kg -b6c2c736-5d1f-36c7-a599-dbb03a623c14,SESCO,II.1.1,La Pampa,AR-L,annual,2018,gas oil combustion consumption by to the public,601.2481742399999,TJ,N2O,3.9,kg/TJ,2344.8678795359997,kg -835ab66b-f38e-3b3a-bb62-92bb09165df9,SESCO,II.1.1,Mendoza,AR-M,annual,2018,gas oil combustion consumption by to the public,17.080425599999998,TJ,CO2,74100.0,kg/TJ,1265659.53696,kg -d303541e-bddd-359b-9ec0-295160908027,SESCO,II.1.1,Mendoza,AR-M,annual,2018,gas oil combustion consumption by to the public,17.080425599999998,TJ,CH4,3.9,kg/TJ,66.61365984,kg -d303541e-bddd-359b-9ec0-295160908027,SESCO,II.1.1,Mendoza,AR-M,annual,2018,gas oil combustion consumption by to the public,17.080425599999998,TJ,N2O,3.9,kg/TJ,66.61365984,kg -4d7e2c8f-1e90-321e-bbdf-7caffd106149,SESCO,II.1.1,Misiones,AR-N,annual,2018,gas oil combustion consumption by to the public,108.26504052,TJ,CO2,74100.0,kg/TJ,8022439.502532,kg -40db20ba-7d4e-3333-bab6-38abd8875db3,SESCO,II.1.1,Misiones,AR-N,annual,2018,gas oil combustion consumption by to the public,108.26504052,TJ,CH4,3.9,kg/TJ,422.233658028,kg -40db20ba-7d4e-3333-bab6-38abd8875db3,SESCO,II.1.1,Misiones,AR-N,annual,2018,gas oil combustion consumption by to the public,108.26504052,TJ,N2O,3.9,kg/TJ,422.233658028,kg -f893baeb-c0d8-380e-8c83-06575d1f5c00,SESCO,II.1.1,Neuquén,AR-Q,annual,2018,gas oil combustion consumption by to the public,271.6543662,TJ,CO2,74100.0,kg/TJ,20129588.53542,kg -d198f8c4-708f-3575-b5f2-d2959cc53fe7,SESCO,II.1.1,Neuquén,AR-Q,annual,2018,gas oil combustion consumption by to the public,271.6543662,TJ,CH4,3.9,kg/TJ,1059.45202818,kg -d198f8c4-708f-3575-b5f2-d2959cc53fe7,SESCO,II.1.1,Neuquén,AR-Q,annual,2018,gas oil combustion consumption by to the public,271.6543662,TJ,N2O,3.9,kg/TJ,1059.45202818,kg -a8067137-3ef9-339c-9b21-ac4e1d25e01d,SESCO,II.1.1,Rio Negro,AR-R,annual,2018,gas oil combustion consumption by to the public,421.82597519999996,TJ,CO2,74100.0,kg/TJ,31257304.762319997,kg -b1f0f6e0-c5ca-3c37-aad9-845658e44a65,SESCO,II.1.1,Rio Negro,AR-R,annual,2018,gas oil combustion consumption by to the public,421.82597519999996,TJ,CH4,3.9,kg/TJ,1645.12130328,kg -b1f0f6e0-c5ca-3c37-aad9-845658e44a65,SESCO,II.1.1,Rio Negro,AR-R,annual,2018,gas oil combustion consumption by to the public,421.82597519999996,TJ,N2O,3.9,kg/TJ,1645.12130328,kg -c4f4b8a9-2552-3187-ba1f-960583d84246,SESCO,II.1.1,San Luis,AR-D,annual,2018,gas oil combustion consumption by to the public,63.54288191999999,TJ,CO2,74100.0,kg/TJ,4708527.550271999,kg -69c3a1e7-8880-362a-8ca4-fddacaca06b7,SESCO,II.1.1,San Luis,AR-D,annual,2018,gas oil combustion consumption by to the public,63.54288191999999,TJ,CH4,3.9,kg/TJ,247.81723948799996,kg -69c3a1e7-8880-362a-8ca4-fddacaca06b7,SESCO,II.1.1,San Luis,AR-D,annual,2018,gas oil combustion consumption by to the public,63.54288191999999,TJ,N2O,3.9,kg/TJ,247.81723948799996,kg -2b236d92-c16a-38d3-9c00-61c20988f4bb,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,gas oil combustion consumption by to the public,742.9329558,TJ,CO2,74100.0,kg/TJ,55051332.02478,kg -8cfecc86-b01f-3d36-8318-b4247dc5fdaa,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,gas oil combustion consumption by to the public,742.9329558,TJ,CH4,3.9,kg/TJ,2897.4385276199996,kg -8cfecc86-b01f-3d36-8318-b4247dc5fdaa,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,gas oil combustion consumption by to the public,742.9329558,TJ,N2O,3.9,kg/TJ,2897.4385276199996,kg -d66a498c-7180-34a7-b6a3-95282a69e6b0,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2018,gas oil combustion consumption by to the public,187.0640352,TJ,CO2,74100.0,kg/TJ,13861445.00832,kg -d2887f5e-b279-3b78-928b-902ea455260b,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2018,gas oil combustion consumption by to the public,187.0640352,TJ,CH4,3.9,kg/TJ,729.54973728,kg -d2887f5e-b279-3b78-928b-902ea455260b,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2018,gas oil combustion consumption by to the public,187.0640352,TJ,N2O,3.9,kg/TJ,729.54973728,kg -e420f265-ff8d-3a5a-8d43-037c0ad4e5ac,SESCO,II.1.1,Tucuman,AR-T,annual,2018,gas oil combustion consumption by to the public,35.37397752,TJ,CO2,74100.0,kg/TJ,2621211.7342319996,kg -4684936b-35e7-3a01-9668-131f88c28166,SESCO,II.1.1,Tucuman,AR-T,annual,2018,gas oil combustion consumption by to the public,35.37397752,TJ,CH4,3.9,kg/TJ,137.95851232799998,kg -4684936b-35e7-3a01-9668-131f88c28166,SESCO,II.1.1,Tucuman,AR-T,annual,2018,gas oil combustion consumption by to the public,35.37397752,TJ,N2O,3.9,kg/TJ,137.95851232799998,kg -d841784f-2937-32e8-9784-66f4718cd1e7,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,gas oil combustion consumption by to the public,1542.73063896,TJ,CO2,74100.0,kg/TJ,114316340.346936,kg -7310c62d-6c7e-3742-82cd-350a45ea1551,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,gas oil combustion consumption by to the public,1542.73063896,TJ,CH4,3.9,kg/TJ,6016.649491944,kg -7310c62d-6c7e-3742-82cd-350a45ea1551,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,gas oil combustion consumption by to the public,1542.73063896,TJ,N2O,3.9,kg/TJ,6016.649491944,kg -75b52875-ba3e-3c10-92b3-c8d04f4e29e5,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,gas oil combustion consumption by to the public,38.41466748,TJ,CO2,74100.0,kg/TJ,2846526.860268,kg -97514a78-cd36-3346-b1ac-5aeccc82f988,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,gas oil combustion consumption by to the public,38.41466748,TJ,CH4,3.9,kg/TJ,149.81720317199998,kg -97514a78-cd36-3346-b1ac-5aeccc82f988,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,gas oil combustion consumption by to the public,38.41466748,TJ,N2O,3.9,kg/TJ,149.81720317199998,kg -ff5e565e-377b-31d6-bdee-11bbd96b8ad0,SESCO,II.1.1,Catamarca,AR-K,annual,2018,gas oil combustion consumption by to the public,1.44140472,TJ,CO2,74100.0,kg/TJ,106808.089752,kg -77757b51-1fa9-3bb1-90f4-da823acea879,SESCO,II.1.1,Catamarca,AR-K,annual,2018,gas oil combustion consumption by to the public,1.44140472,TJ,CH4,3.9,kg/TJ,5.621478408,kg -77757b51-1fa9-3bb1-90f4-da823acea879,SESCO,II.1.1,Catamarca,AR-K,annual,2018,gas oil combustion consumption by to the public,1.44140472,TJ,N2O,3.9,kg/TJ,5.621478408,kg -da42f03a-9136-338b-9bad-7d950fafe1bd,SESCO,II.1.1,Chaco,AR-H,annual,2018,gas oil combustion consumption by to the public,3.64277424,TJ,CO2,74100.0,kg/TJ,269929.571184,kg -cd3aebcb-3408-34d7-8323-83d27c880fe5,SESCO,II.1.1,Chaco,AR-H,annual,2018,gas oil combustion consumption by to the public,3.64277424,TJ,CH4,3.9,kg/TJ,14.206819536,kg -cd3aebcb-3408-34d7-8323-83d27c880fe5,SESCO,II.1.1,Chaco,AR-H,annual,2018,gas oil combustion consumption by to the public,3.64277424,TJ,N2O,3.9,kg/TJ,14.206819536,kg -ba34b305-2999-32b7-895b-b5054d2bd191,SESCO,II.1.1,Chubut,AR-U,annual,2018,gas oil combustion consumption by to the public,22.331767919999997,TJ,CO2,74100.0,kg/TJ,1654784.0028719997,kg -ccdda168-1ce6-34b5-99b8-906c86079bc4,SESCO,II.1.1,Chubut,AR-U,annual,2018,gas oil combustion consumption by to the public,22.331767919999997,TJ,CH4,3.9,kg/TJ,87.093894888,kg -ccdda168-1ce6-34b5-99b8-906c86079bc4,SESCO,II.1.1,Chubut,AR-U,annual,2018,gas oil combustion consumption by to the public,22.331767919999997,TJ,N2O,3.9,kg/TJ,87.093894888,kg -06816d5b-0fe9-3e2c-aec9-489a197ad1bc,SESCO,II.1.1,Corrientes,AR-W,annual,2018,gas oil combustion consumption by to the public,16.03254828,TJ,CO2,74100.0,kg/TJ,1188011.827548,kg -4f4cb38b-5c58-31cc-9e73-90d228d0114c,SESCO,II.1.1,Corrientes,AR-W,annual,2018,gas oil combustion consumption by to the public,16.03254828,TJ,CH4,3.9,kg/TJ,62.526938292,kg -4f4cb38b-5c58-31cc-9e73-90d228d0114c,SESCO,II.1.1,Corrientes,AR-W,annual,2018,gas oil combustion consumption by to the public,16.03254828,TJ,N2O,3.9,kg/TJ,62.526938292,kg -f4b5304d-654d-3fa9-ba76-789ffeb617a6,SESCO,II.1.1,Córdoba,AR-X,annual,2018,gas oil combustion consumption by to the public,93.65218884,TJ,CO2,74100.0,kg/TJ,6939627.193043999,kg -098300a5-57ce-3e38-81cf-34d2f13234b7,SESCO,II.1.1,Córdoba,AR-X,annual,2018,gas oil combustion consumption by to the public,93.65218884,TJ,CH4,3.9,kg/TJ,365.243536476,kg -098300a5-57ce-3e38-81cf-34d2f13234b7,SESCO,II.1.1,Córdoba,AR-X,annual,2018,gas oil combustion consumption by to the public,93.65218884,TJ,N2O,3.9,kg/TJ,365.243536476,kg -c0ae17e6-ac11-3003-9c01-baf9b3c510a3,SESCO,II.1.1,Entre Rios,AR-E,annual,2018,gas oil combustion consumption by to the public,139.06604544,TJ,CO2,74100.0,kg/TJ,10304793.967104001,kg -bf543d99-33cb-3701-855f-36e933316ade,SESCO,II.1.1,Entre Rios,AR-E,annual,2018,gas oil combustion consumption by to the public,139.06604544,TJ,CH4,3.9,kg/TJ,542.357577216,kg -bf543d99-33cb-3701-855f-36e933316ade,SESCO,II.1.1,Entre Rios,AR-E,annual,2018,gas oil combustion consumption by to the public,139.06604544,TJ,N2O,3.9,kg/TJ,542.357577216,kg -49b7e426-780a-31c0-ad35-066dd5766ac2,SESCO,II.1.1,Formosa,AR-P,annual,2018,gas oil combustion consumption by to the public,2.23687548,TJ,CO2,74100.0,kg/TJ,165752.47306800002,kg -d6bd1b70-d073-3dbd-9ae6-bc4b9f4dbb58,SESCO,II.1.1,Formosa,AR-P,annual,2018,gas oil combustion consumption by to the public,2.23687548,TJ,CH4,3.9,kg/TJ,8.723814372,kg -d6bd1b70-d073-3dbd-9ae6-bc4b9f4dbb58,SESCO,II.1.1,Formosa,AR-P,annual,2018,gas oil combustion consumption by to the public,2.23687548,TJ,N2O,3.9,kg/TJ,8.723814372,kg -1a96d407-6a1e-30f5-a1e6-ca52a5f6b982,SESCO,II.1.1,Jujuy,AR-Y,annual,2018,gas oil combustion consumption by to the public,18.36380532,TJ,CO2,74100.0,kg/TJ,1360757.9742120001,kg -ec0bf7f9-ab20-3f6f-b624-057ce32b9e02,SESCO,II.1.1,Jujuy,AR-Y,annual,2018,gas oil combustion consumption by to the public,18.36380532,TJ,CH4,3.9,kg/TJ,71.618840748,kg -ec0bf7f9-ab20-3f6f-b624-057ce32b9e02,SESCO,II.1.1,Jujuy,AR-Y,annual,2018,gas oil combustion consumption by to the public,18.36380532,TJ,N2O,3.9,kg/TJ,71.618840748,kg -08fb9922-f7c7-34b2-a187-a4911d1697c0,SESCO,II.1.1,La Pampa,AR-L,annual,2018,gas oil combustion consumption by to the public,104.95727928,TJ,CO2,74100.0,kg/TJ,7777334.394648,kg -6ecb96ea-f75d-32da-89d2-42956a6aed78,SESCO,II.1.1,La Pampa,AR-L,annual,2018,gas oil combustion consumption by to the public,104.95727928,TJ,CH4,3.9,kg/TJ,409.33338919199997,kg -6ecb96ea-f75d-32da-89d2-42956a6aed78,SESCO,II.1.1,La Pampa,AR-L,annual,2018,gas oil combustion consumption by to the public,104.95727928,TJ,N2O,3.9,kg/TJ,409.33338919199997,kg -0fa0f5cc-8d89-32c8-b716-3a1a38789970,SESCO,II.1.1,Mendoza,AR-M,annual,2018,gas oil combustion consumption by to the public,4.2361897200000005,TJ,CO2,74100.0,kg/TJ,313901.65825200005,kg -76ac2c10-81b9-36fb-96a9-f22c99caf230,SESCO,II.1.1,Mendoza,AR-M,annual,2018,gas oil combustion consumption by to the public,4.2361897200000005,TJ,CH4,3.9,kg/TJ,16.521139908000002,kg -76ac2c10-81b9-36fb-96a9-f22c99caf230,SESCO,II.1.1,Mendoza,AR-M,annual,2018,gas oil combustion consumption by to the public,4.2361897200000005,TJ,N2O,3.9,kg/TJ,16.521139908000002,kg -b74d11d4-87c5-3e56-841f-aaeca216fd35,SESCO,II.1.1,Misiones,AR-N,annual,2018,gas oil combustion consumption by to the public,10.38403044,TJ,CO2,74100.0,kg/TJ,769456.655604,kg -2086eab4-46a1-31a8-a6ce-fc2022812a95,SESCO,II.1.1,Misiones,AR-N,annual,2018,gas oil combustion consumption by to the public,10.38403044,TJ,CH4,3.9,kg/TJ,40.497718716,kg -2086eab4-46a1-31a8-a6ce-fc2022812a95,SESCO,II.1.1,Misiones,AR-N,annual,2018,gas oil combustion consumption by to the public,10.38403044,TJ,N2O,3.9,kg/TJ,40.497718716,kg -cfc3a15f-ed4f-3079-85cd-43b042eb2711,SESCO,II.1.1,Neuquén,AR-Q,annual,2018,gas oil combustion consumption by to the public,262.77361404,TJ,CO2,74100.0,kg/TJ,19471524.800364,kg -ac4a8395-3a3e-3377-acff-4f8aabf14f4e,SESCO,II.1.1,Neuquén,AR-Q,annual,2018,gas oil combustion consumption by to the public,262.77361404,TJ,CH4,3.9,kg/TJ,1024.817094756,kg -ac4a8395-3a3e-3377-acff-4f8aabf14f4e,SESCO,II.1.1,Neuquén,AR-Q,annual,2018,gas oil combustion consumption by to the public,262.77361404,TJ,N2O,3.9,kg/TJ,1024.817094756,kg -03c14030-9a67-36db-852c-838d7af230f1,SESCO,II.1.1,Rio Negro,AR-R,annual,2018,gas oil combustion consumption by to the public,132.8282298,TJ,CO2,74100.0,kg/TJ,9842571.82818,kg -b2255a28-38c1-337d-9109-ed1d4b3972ca,SESCO,II.1.1,Rio Negro,AR-R,annual,2018,gas oil combustion consumption by to the public,132.8282298,TJ,CH4,3.9,kg/TJ,518.03009622,kg -b2255a28-38c1-337d-9109-ed1d4b3972ca,SESCO,II.1.1,Rio Negro,AR-R,annual,2018,gas oil combustion consumption by to the public,132.8282298,TJ,N2O,3.9,kg/TJ,518.03009622,kg -c0d9f0d6-3a61-3f44-af2b-6853195efc30,SESCO,II.1.1,San Luis,AR-D,annual,2018,gas oil combustion consumption by to the public,59.749198320000005,TJ,CO2,74100.0,kg/TJ,4427415.595512,kg -7d5d6c8b-f703-3e0d-9f7d-bfb9bde3e756,SESCO,II.1.1,San Luis,AR-D,annual,2018,gas oil combustion consumption by to the public,59.749198320000005,TJ,CH4,3.9,kg/TJ,233.021873448,kg -7d5d6c8b-f703-3e0d-9f7d-bfb9bde3e756,SESCO,II.1.1,San Luis,AR-D,annual,2018,gas oil combustion consumption by to the public,59.749198320000005,TJ,N2O,3.9,kg/TJ,233.021873448,kg -f292e520-d49e-3f7d-a5ef-1e485b83939d,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,gas oil combustion consumption by to the public,194.28734892,TJ,CO2,74100.0,kg/TJ,14396692.554972,kg -149766a0-5291-3235-a486-dd52b75a438c,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,gas oil combustion consumption by to the public,194.28734892,TJ,CH4,3.9,kg/TJ,757.720660788,kg -149766a0-5291-3235-a486-dd52b75a438c,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,gas oil combustion consumption by to the public,194.28734892,TJ,N2O,3.9,kg/TJ,757.720660788,kg -323464be-6992-334e-b186-8ff51b947fc3,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2018,gas oil combustion consumption by to the public,43.76349768,TJ,CO2,74100.0,kg/TJ,3242875.178088,kg -90b7b6a1-204c-3b39-a2df-20ae0329b963,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2018,gas oil combustion consumption by to the public,43.76349768,TJ,CH4,3.9,kg/TJ,170.677640952,kg -90b7b6a1-204c-3b39-a2df-20ae0329b963,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2018,gas oil combustion consumption by to the public,43.76349768,TJ,N2O,3.9,kg/TJ,170.677640952,kg -7941fd59-41b1-39da-b780-ac4c50de944f,SESCO,II.1.1,Tucuman,AR-T,annual,2018,gas oil combustion consumption by to the public,10.708062960000001,TJ,CO2,74100.0,kg/TJ,793467.4653360001,kg -222de82d-7744-3d42-9d5b-5ea2639e2860,SESCO,II.1.1,Tucuman,AR-T,annual,2018,gas oil combustion consumption by to the public,10.708062960000001,TJ,CH4,3.9,kg/TJ,41.761445544000004,kg -222de82d-7744-3d42-9d5b-5ea2639e2860,SESCO,II.1.1,Tucuman,AR-T,annual,2018,gas oil combustion consumption by to the public,10.708062960000001,TJ,N2O,3.9,kg/TJ,41.761445544000004,kg -f99761d7-07ba-3c35-ae47-824aafef4e66,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,gas oil combustion consumption by freight transport,148.844199,TJ,CO2,74100.0,kg/TJ,11029355.1459,kg -c642fd30-fe9f-3b22-811c-acbb811fa556,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,gas oil combustion consumption by freight transport,148.844199,TJ,CH4,3.9,kg/TJ,580.4923761,kg -c642fd30-fe9f-3b22-811c-acbb811fa556,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,gas oil combustion consumption by freight transport,148.844199,TJ,N2O,3.9,kg/TJ,580.4923761,kg -e246b4f6-296d-3728-9706-37ce21e7f6dc,SESCO,II.1.1,Chubut,AR-U,annual,2018,gas oil combustion consumption by freight transport,1.98634716,TJ,CO2,74100.0,kg/TJ,147188.324556,kg -db62aba9-0a2a-37ca-a2d5-c57bd294c65c,SESCO,II.1.1,Chubut,AR-U,annual,2018,gas oil combustion consumption by freight transport,1.98634716,TJ,CH4,3.9,kg/TJ,7.746753924,kg -db62aba9-0a2a-37ca-a2d5-c57bd294c65c,SESCO,II.1.1,Chubut,AR-U,annual,2018,gas oil combustion consumption by freight transport,1.98634716,TJ,N2O,3.9,kg/TJ,7.746753924,kg -e69663ee-8419-35ab-bd2e-0e83b2d1298f,SESCO,II.1.1,Córdoba,AR-X,annual,2018,gas oil combustion consumption by freight transport,116.85246216,TJ,CO2,74100.0,kg/TJ,8658767.446056,kg -358adae3-51f5-31f1-9ee7-d8bb47e2936f,SESCO,II.1.1,Córdoba,AR-X,annual,2018,gas oil combustion consumption by freight transport,116.85246216,TJ,CH4,3.9,kg/TJ,455.724602424,kg -358adae3-51f5-31f1-9ee7-d8bb47e2936f,SESCO,II.1.1,Córdoba,AR-X,annual,2018,gas oil combustion consumption by freight transport,116.85246216,TJ,N2O,3.9,kg/TJ,455.724602424,kg -d88497df-e98f-354f-8967-59470c51e476,SESCO,II.1.1,Neuquén,AR-Q,annual,2018,gas oil combustion consumption by freight transport,9.4388784,TJ,CO2,74100.0,kg/TJ,699420.88944,kg -4354ea58-d23d-3708-9974-72acdb2ad68c,SESCO,II.1.1,Neuquén,AR-Q,annual,2018,gas oil combustion consumption by freight transport,9.4388784,TJ,CH4,3.9,kg/TJ,36.81162576,kg -4354ea58-d23d-3708-9974-72acdb2ad68c,SESCO,II.1.1,Neuquén,AR-Q,annual,2018,gas oil combustion consumption by freight transport,9.4388784,TJ,N2O,3.9,kg/TJ,36.81162576,kg -c71be5d7-00ff-38ea-85c3-346bb0c61cca,SESCO,II.1.1,Rio Negro,AR-R,annual,2018,gas oil combustion consumption by freight transport,24.10002252,TJ,CO2,74100.0,kg/TJ,1785811.668732,kg -21f6743e-7f58-3252-9b47-c1bb793ce05b,SESCO,II.1.1,Rio Negro,AR-R,annual,2018,gas oil combustion consumption by freight transport,24.10002252,TJ,CH4,3.9,kg/TJ,93.990087828,kg -21f6743e-7f58-3252-9b47-c1bb793ce05b,SESCO,II.1.1,Rio Negro,AR-R,annual,2018,gas oil combustion consumption by freight transport,24.10002252,TJ,N2O,3.9,kg/TJ,93.990087828,kg -1d6e5fb8-7520-3c9c-be1a-6c729cedb43f,SESCO,II.1.1,San Luis,AR-D,annual,2018,gas oil combustion consumption by freight transport,1.2998143199999999,TJ,CO2,74100.0,kg/TJ,96316.24111199999,kg -e6d12f9a-ebab-3494-9046-f5ded632059d,SESCO,II.1.1,San Luis,AR-D,annual,2018,gas oil combustion consumption by freight transport,1.2998143199999999,TJ,CH4,3.9,kg/TJ,5.069275847999999,kg -e6d12f9a-ebab-3494-9046-f5ded632059d,SESCO,II.1.1,San Luis,AR-D,annual,2018,gas oil combustion consumption by freight transport,1.2998143199999999,TJ,N2O,3.9,kg/TJ,5.069275847999999,kg -c89b4aba-d67b-3064-b62a-80ea7c2d86af,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,gas oil combustion consumption by freight transport,49.61085612,TJ,CO2,74100.0,kg/TJ,3676164.438492,kg -67d6416e-5a6f-3170-8a9a-c61ad6a43b94,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,gas oil combustion consumption by freight transport,49.61085612,TJ,CH4,3.9,kg/TJ,193.482338868,kg -67d6416e-5a6f-3170-8a9a-c61ad6a43b94,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,gas oil combustion consumption by freight transport,49.61085612,TJ,N2O,3.9,kg/TJ,193.482338868,kg -57a374af-a841-3479-be48-db2434524912,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2018,gas oil combustion consumption by freight transport,54.39480564,TJ,CO2,74100.0,kg/TJ,4030655.097924,kg -436d5aed-ba55-3cd9-b93a-ceb8d1a3d8d3,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2018,gas oil combustion consumption by freight transport,54.39480564,TJ,CH4,3.9,kg/TJ,212.139741996,kg -436d5aed-ba55-3cd9-b93a-ceb8d1a3d8d3,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2018,gas oil combustion consumption by freight transport,54.39480564,TJ,N2O,3.9,kg/TJ,212.139741996,kg -35fa4791-262e-33d0-b10a-96fbf52268cf,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,gas oil combustion consumption by freight transport,34.96968636,TJ,CO2,74100.0,kg/TJ,2591253.759276,kg -5ff1aaab-ba65-3ce6-8c52-656943c5ac02,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,gas oil combustion consumption by freight transport,34.96968636,TJ,CH4,3.9,kg/TJ,136.381776804,kg -5ff1aaab-ba65-3ce6-8c52-656943c5ac02,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,gas oil combustion consumption by freight transport,34.96968636,TJ,N2O,3.9,kg/TJ,136.381776804,kg -513698e1-8360-3811-a0e4-9fdeb8fd0b62,SESCO,II.1.1,Córdoba,AR-X,annual,2018,gas oil combustion consumption by freight transport,21.20547408,TJ,CO2,74100.0,kg/TJ,1571325.629328,kg -67c13ac1-ccc9-3b22-af80-c7ae24e2326d,SESCO,II.1.1,Córdoba,AR-X,annual,2018,gas oil combustion consumption by freight transport,21.20547408,TJ,CH4,3.9,kg/TJ,82.70134891199999,kg -67c13ac1-ccc9-3b22-af80-c7ae24e2326d,SESCO,II.1.1,Córdoba,AR-X,annual,2018,gas oil combustion consumption by freight transport,21.20547408,TJ,N2O,3.9,kg/TJ,82.70134891199999,kg -26f67298-8289-3544-b54d-faba7df06e6f,SESCO,II.1.1,Neuquén,AR-Q,annual,2018,gas oil combustion consumption by freight transport,7.7583592800000005,TJ,CO2,74100.0,kg/TJ,574894.4226480001,kg -19e54a69-d2fc-3236-9246-02ece9e4fbdb,SESCO,II.1.1,Neuquén,AR-Q,annual,2018,gas oil combustion consumption by freight transport,7.7583592800000005,TJ,CH4,3.9,kg/TJ,30.257601192000003,kg -19e54a69-d2fc-3236-9246-02ece9e4fbdb,SESCO,II.1.1,Neuquén,AR-Q,annual,2018,gas oil combustion consumption by freight transport,7.7583592800000005,TJ,N2O,3.9,kg/TJ,30.257601192000003,kg -c8ab6c0c-2c8e-33c3-a2ce-52333610ba0d,SESCO,II.1.1,Rio Negro,AR-R,annual,2018,gas oil combustion consumption by freight transport,27.325357920000002,TJ,CO2,74100.0,kg/TJ,2024809.021872,kg -b280980f-d36b-3df5-bfc3-59205d59207f,SESCO,II.1.1,Rio Negro,AR-R,annual,2018,gas oil combustion consumption by freight transport,27.325357920000002,TJ,CH4,3.9,kg/TJ,106.568895888,kg -b280980f-d36b-3df5-bfc3-59205d59207f,SESCO,II.1.1,Rio Negro,AR-R,annual,2018,gas oil combustion consumption by freight transport,27.325357920000002,TJ,N2O,3.9,kg/TJ,106.568895888,kg -7a69d3e3-6ed0-3e76-9275-c2c03260f26e,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,gas oil combustion consumption by freight transport,11.69901516,TJ,CO2,74100.0,kg/TJ,866897.023356,kg -2282638d-b94d-39ff-b7bf-c2d37f6c5be3,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,gas oil combustion consumption by freight transport,11.69901516,TJ,CH4,3.9,kg/TJ,45.626159124,kg -2282638d-b94d-39ff-b7bf-c2d37f6c5be3,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,gas oil combustion consumption by freight transport,11.69901516,TJ,N2O,3.9,kg/TJ,45.626159124,kg -1df15c60-735c-363b-ae00-d000572fbaa8,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2018,gas oil combustion consumption by freight transport,1.19705292,TJ,CO2,74100.0,kg/TJ,88701.621372,kg -d00532fe-ff83-3a43-981c-ac1197b846a2,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2018,gas oil combustion consumption by freight transport,1.19705292,TJ,CH4,3.9,kg/TJ,4.668506388,kg -d00532fe-ff83-3a43-981c-ac1197b846a2,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2018,gas oil combustion consumption by freight transport,1.19705292,TJ,N2O,3.9,kg/TJ,4.668506388,kg -f70e1f79-a794-3936-a1e5-75d998af7cc2,SESCO,II.5.1,Buenos Aires,AR-B,annual,2018,gasoline combustion consumption by agriculture machines,4.3857,TJ,CO2,69300.0,kg/TJ,303929.01,kg -f09de076-4670-3125-af89-da6a29bd57f8,SESCO,II.5.1,Buenos Aires,AR-B,annual,2018,gasoline combustion consumption by agriculture machines,4.3857,TJ,CH4,33.0,kg/TJ,144.72809999999998,kg -2f1a7d75-ba0c-3424-9dbb-1c8178fd826a,SESCO,II.5.1,Buenos Aires,AR-B,annual,2018,gasoline combustion consumption by agriculture machines,4.3857,TJ,N2O,3.2,kg/TJ,14.03424,kg -b3bbe57f-e190-36df-bd20-dabf96df7afc,SESCO,II.5.1,Santa Fe,AR-S,annual,2018,gasoline combustion consumption by agriculture machines,9.302999999999999,TJ,CO2,69300.0,kg/TJ,644697.8999999999,kg -d3addc8b-5575-382b-a0b1-999d304689a5,SESCO,II.5.1,Santa Fe,AR-S,annual,2018,gasoline combustion consumption by agriculture machines,9.302999999999999,TJ,CH4,33.0,kg/TJ,306.99899999999997,kg -869cc5ab-3fbf-351a-a6d7-6aabb7f31f34,SESCO,II.5.1,Santa Fe,AR-S,annual,2018,gasoline combustion consumption by agriculture machines,9.302999999999999,TJ,N2O,3.2,kg/TJ,29.769599999999997,kg -68ecf761-34b8-3144-b3f1-26fa2ced96b8,SESCO,II.5.1,Buenos Aires,AR-B,annual,2018,gas oil combustion consumption by agriculture machines,9604.994279999999,TJ,CO2,74100.0,kg/TJ,711730076.1479999,kg -7a9b3d03-4e11-3383-9618-134713cda8a6,SESCO,II.5.1,Buenos Aires,AR-B,annual,2018,gas oil combustion consumption by agriculture machines,9604.994279999999,TJ,CH4,3.9,kg/TJ,37459.47769199999,kg -7a9b3d03-4e11-3383-9618-134713cda8a6,SESCO,II.5.1,Buenos Aires,AR-B,annual,2018,gas oil combustion consumption by agriculture machines,9604.994279999999,TJ,N2O,3.9,kg/TJ,37459.47769199999,kg -4977d43c-01fe-3641-b23f-c405f276c3bf,SESCO,II.5.1,Capital Federal,AR-C,annual,2018,gas oil combustion consumption by agriculture machines,258.00516,TJ,CO2,74100.0,kg/TJ,19118182.356,kg -e0c6e52a-98de-37f0-a13c-199cb3ad6b0d,SESCO,II.5.1,Capital Federal,AR-C,annual,2018,gas oil combustion consumption by agriculture machines,258.00516,TJ,CH4,3.9,kg/TJ,1006.2201239999999,kg -e0c6e52a-98de-37f0-a13c-199cb3ad6b0d,SESCO,II.5.1,Capital Federal,AR-C,annual,2018,gas oil combustion consumption by agriculture machines,258.00516,TJ,N2O,3.9,kg/TJ,1006.2201239999999,kg -8e348958-ab76-3051-bacd-f18a3536dad9,SESCO,II.5.1,Catamarca,AR-K,annual,2018,gas oil combustion consumption by agriculture machines,142.81848,TJ,CO2,74100.0,kg/TJ,10582849.367999999,kg -e86025b3-854d-3cb5-8c13-9b84551b77f8,SESCO,II.5.1,Catamarca,AR-K,annual,2018,gas oil combustion consumption by agriculture machines,142.81848,TJ,CH4,3.9,kg/TJ,556.992072,kg -e86025b3-854d-3cb5-8c13-9b84551b77f8,SESCO,II.5.1,Catamarca,AR-K,annual,2018,gas oil combustion consumption by agriculture machines,142.81848,TJ,N2O,3.9,kg/TJ,556.992072,kg -f31e029b-02e5-3196-99bd-2a13e55aa451,SESCO,II.5.1,Chaco,AR-H,annual,2018,gas oil combustion consumption by agriculture machines,1250.2938,TJ,CO2,74100.0,kg/TJ,92646770.58,kg -8d8095bb-9f95-36bf-bab3-3bf9d5d3421a,SESCO,II.5.1,Chaco,AR-H,annual,2018,gas oil combustion consumption by agriculture machines,1250.2938,TJ,CH4,3.9,kg/TJ,4876.14582,kg -8d8095bb-9f95-36bf-bab3-3bf9d5d3421a,SESCO,II.5.1,Chaco,AR-H,annual,2018,gas oil combustion consumption by agriculture machines,1250.2938,TJ,N2O,3.9,kg/TJ,4876.14582,kg -0c1abf35-9c38-33a3-9609-30f89b5a9fa2,SESCO,II.5.1,Corrientes,AR-W,annual,2018,gas oil combustion consumption by agriculture machines,490.58184,TJ,CO2,74100.0,kg/TJ,36352114.344,kg -183fd9ed-03e1-3065-9a8e-e3d421ef872f,SESCO,II.5.1,Corrientes,AR-W,annual,2018,gas oil combustion consumption by agriculture machines,490.58184,TJ,CH4,3.9,kg/TJ,1913.269176,kg -183fd9ed-03e1-3065-9a8e-e3d421ef872f,SESCO,II.5.1,Corrientes,AR-W,annual,2018,gas oil combustion consumption by agriculture machines,490.58184,TJ,N2O,3.9,kg/TJ,1913.269176,kg -65cd9b6e-dae3-3e1e-9d92-54d171fc94a4,SESCO,II.5.1,Córdoba,AR-X,annual,2018,gas oil combustion consumption by agriculture machines,8002.78332,TJ,CO2,74100.0,kg/TJ,593006244.012,kg -2229ec8d-baf6-3aa7-95c2-9b8027c9300c,SESCO,II.5.1,Córdoba,AR-X,annual,2018,gas oil combustion consumption by agriculture machines,8002.78332,TJ,CH4,3.9,kg/TJ,31210.854947999997,kg -2229ec8d-baf6-3aa7-95c2-9b8027c9300c,SESCO,II.5.1,Córdoba,AR-X,annual,2018,gas oil combustion consumption by agriculture machines,8002.78332,TJ,N2O,3.9,kg/TJ,31210.854947999997,kg -632ef025-4917-32c1-8208-a81d72b9d08c,SESCO,II.5.1,Entre Rios,AR-E,annual,2018,gas oil combustion consumption by agriculture machines,2130.68268,TJ,CO2,74100.0,kg/TJ,157883586.588,kg -76be1b17-67d3-3143-b66e-4bbbefb51a92,SESCO,II.5.1,Entre Rios,AR-E,annual,2018,gas oil combustion consumption by agriculture machines,2130.68268,TJ,CH4,3.9,kg/TJ,8309.662451999999,kg -76be1b17-67d3-3143-b66e-4bbbefb51a92,SESCO,II.5.1,Entre Rios,AR-E,annual,2018,gas oil combustion consumption by agriculture machines,2130.68268,TJ,N2O,3.9,kg/TJ,8309.662451999999,kg -605c7fda-9405-37a3-b56d-b6487d9d7987,SESCO,II.5.1,Formosa,AR-P,annual,2018,gas oil combustion consumption by agriculture machines,241.42607999999998,TJ,CO2,74100.0,kg/TJ,17889672.527999997,kg -a829fc8e-0db5-36bc-a86c-b1a6e881724c,SESCO,II.5.1,Formosa,AR-P,annual,2018,gas oil combustion consumption by agriculture machines,241.42607999999998,TJ,CH4,3.9,kg/TJ,941.5617119999999,kg -a829fc8e-0db5-36bc-a86c-b1a6e881724c,SESCO,II.5.1,Formosa,AR-P,annual,2018,gas oil combustion consumption by agriculture machines,241.42607999999998,TJ,N2O,3.9,kg/TJ,941.5617119999999,kg -7f2e91e5-e99b-3ff1-8cc0-705a672d0a64,SESCO,II.5.1,Jujuy,AR-Y,annual,2018,gas oil combustion consumption by agriculture machines,1009.26504,TJ,CO2,74100.0,kg/TJ,74786539.464,kg -022d284f-7ebd-3c5f-85a4-128bf0322208,SESCO,II.5.1,Jujuy,AR-Y,annual,2018,gas oil combustion consumption by agriculture machines,1009.26504,TJ,CH4,3.9,kg/TJ,3936.133656,kg -022d284f-7ebd-3c5f-85a4-128bf0322208,SESCO,II.5.1,Jujuy,AR-Y,annual,2018,gas oil combustion consumption by agriculture machines,1009.26504,TJ,N2O,3.9,kg/TJ,3936.133656,kg -7404589b-320a-3f3b-9279-e343a8f928ed,SESCO,II.5.1,La Pampa,AR-L,annual,2018,gas oil combustion consumption by agriculture machines,1788.3373199999999,TJ,CO2,74100.0,kg/TJ,132515795.41199999,kg -f1868859-ff87-3023-922a-4d04b9c09121,SESCO,II.5.1,La Pampa,AR-L,annual,2018,gas oil combustion consumption by agriculture machines,1788.3373199999999,TJ,CH4,3.9,kg/TJ,6974.515547999999,kg -f1868859-ff87-3023-922a-4d04b9c09121,SESCO,II.5.1,La Pampa,AR-L,annual,2018,gas oil combustion consumption by agriculture machines,1788.3373199999999,TJ,N2O,3.9,kg/TJ,6974.515547999999,kg -9d382d32-28fa-3dbf-87eb-e7e68b86f96a,SESCO,II.5.1,La Rioja,AR-F,annual,2018,gas oil combustion consumption by agriculture machines,131.04336,TJ,CO2,74100.0,kg/TJ,9710312.976,kg -1dcd01f9-c147-34e8-8ed7-57539165110a,SESCO,II.5.1,La Rioja,AR-F,annual,2018,gas oil combustion consumption by agriculture machines,131.04336,TJ,CH4,3.9,kg/TJ,511.06910400000004,kg -1dcd01f9-c147-34e8-8ed7-57539165110a,SESCO,II.5.1,La Rioja,AR-F,annual,2018,gas oil combustion consumption by agriculture machines,131.04336,TJ,N2O,3.9,kg/TJ,511.06910400000004,kg -117c5626-474d-3b8d-a234-107ef3340378,SESCO,II.5.1,Mendoza,AR-M,annual,2018,gas oil combustion consumption by agriculture machines,2396.09244,TJ,CO2,74100.0,kg/TJ,177550449.804,kg -0d8f10b9-746c-3a15-80cb-68aa56f15ff3,SESCO,II.5.1,Mendoza,AR-M,annual,2018,gas oil combustion consumption by agriculture machines,2396.09244,TJ,CH4,3.9,kg/TJ,9344.760516,kg -0d8f10b9-746c-3a15-80cb-68aa56f15ff3,SESCO,II.5.1,Mendoza,AR-M,annual,2018,gas oil combustion consumption by agriculture machines,2396.09244,TJ,N2O,3.9,kg/TJ,9344.760516,kg -885643ff-1d0b-3e7b-bf67-60ce528eae67,SESCO,II.5.1,Misiones,AR-N,annual,2018,gas oil combustion consumption by agriculture machines,1272.39924,TJ,CO2,74100.0,kg/TJ,94284783.684,kg -0d7eb8d1-a9bd-3432-8fcc-ce851d984677,SESCO,II.5.1,Misiones,AR-N,annual,2018,gas oil combustion consumption by agriculture machines,1272.39924,TJ,CH4,3.9,kg/TJ,4962.357035999999,kg -0d7eb8d1-a9bd-3432-8fcc-ce851d984677,SESCO,II.5.1,Misiones,AR-N,annual,2018,gas oil combustion consumption by agriculture machines,1272.39924,TJ,N2O,3.9,kg/TJ,4962.357035999999,kg -ff22797d-b261-3ec8-95dd-9b5fb617f644,SESCO,II.5.1,Rio Negro,AR-R,annual,2018,gas oil combustion consumption by agriculture machines,224.59416,TJ,CO2,74100.0,kg/TJ,16642427.256,kg -ffd004e5-c03b-31ed-84df-8139bc88c264,SESCO,II.5.1,Rio Negro,AR-R,annual,2018,gas oil combustion consumption by agriculture machines,224.59416,TJ,CH4,3.9,kg/TJ,875.9172239999999,kg -ffd004e5-c03b-31ed-84df-8139bc88c264,SESCO,II.5.1,Rio Negro,AR-R,annual,2018,gas oil combustion consumption by agriculture machines,224.59416,TJ,N2O,3.9,kg/TJ,875.9172239999999,kg -39366b00-a2e6-359b-a321-e4e68ef654e3,SESCO,II.5.1,Salta,AR-A,annual,2018,gas oil combustion consumption by agriculture machines,2063.9329199999997,TJ,CO2,74100.0,kg/TJ,152937429.37199998,kg -3072dc16-d9ee-37f6-85be-7b41a48030ec,SESCO,II.5.1,Salta,AR-A,annual,2018,gas oil combustion consumption by agriculture machines,2063.9329199999997,TJ,CH4,3.9,kg/TJ,8049.338387999999,kg -3072dc16-d9ee-37f6-85be-7b41a48030ec,SESCO,II.5.1,Salta,AR-A,annual,2018,gas oil combustion consumption by agriculture machines,2063.9329199999997,TJ,N2O,3.9,kg/TJ,8049.338387999999,kg -20eedbbd-c233-31cb-a73d-ee5cf95d2532,SESCO,II.5.1,San Juan,AR-J,annual,2018,gas oil combustion consumption by agriculture machines,685.08804,TJ,CO2,74100.0,kg/TJ,50765023.764,kg -f91efeaf-b83f-32b6-b94f-ac9503ebb151,SESCO,II.5.1,San Juan,AR-J,annual,2018,gas oil combustion consumption by agriculture machines,685.08804,TJ,CH4,3.9,kg/TJ,2671.843356,kg -f91efeaf-b83f-32b6-b94f-ac9503ebb151,SESCO,II.5.1,San Juan,AR-J,annual,2018,gas oil combustion consumption by agriculture machines,685.08804,TJ,N2O,3.9,kg/TJ,2671.843356,kg -b78952dc-ee5f-3c4e-9761-4590c2379853,SESCO,II.5.1,San Luis,AR-D,annual,2018,gas oil combustion consumption by agriculture machines,548.33772,TJ,CO2,74100.0,kg/TJ,40631825.052,kg -9d085f8c-cd16-3bb8-86fd-a4ab4720cb1a,SESCO,II.5.1,San Luis,AR-D,annual,2018,gas oil combustion consumption by agriculture machines,548.33772,TJ,CH4,3.9,kg/TJ,2138.517108,kg -9d085f8c-cd16-3bb8-86fd-a4ab4720cb1a,SESCO,II.5.1,San Luis,AR-D,annual,2018,gas oil combustion consumption by agriculture machines,548.33772,TJ,N2O,3.9,kg/TJ,2138.517108,kg -46647f73-9a61-37cd-bbf4-78e7f151f15b,SESCO,II.5.1,Santa Fe,AR-S,annual,2018,gas oil combustion consumption by agriculture machines,7481.46336,TJ,CO2,74100.0,kg/TJ,554376434.976,kg -8bdb1e5f-71c6-3f37-bfad-c4f4678f7393,SESCO,II.5.1,Santa Fe,AR-S,annual,2018,gas oil combustion consumption by agriculture machines,7481.46336,TJ,CH4,3.9,kg/TJ,29177.707103999997,kg -8bdb1e5f-71c6-3f37-bfad-c4f4678f7393,SESCO,II.5.1,Santa Fe,AR-S,annual,2018,gas oil combustion consumption by agriculture machines,7481.46336,TJ,N2O,3.9,kg/TJ,29177.707103999997,kg -6b1ad274-07f5-3d62-8d22-f6b5b797a675,SESCO,II.5.1,Santiago del Estero,AR-G,annual,2018,gas oil combustion consumption by agriculture machines,1984.0716,TJ,CO2,74100.0,kg/TJ,147019705.56,kg -1108988d-85b3-3ff0-8985-87a3da3cffab,SESCO,II.5.1,Santiago del Estero,AR-G,annual,2018,gas oil combustion consumption by agriculture machines,1984.0716,TJ,CH4,3.9,kg/TJ,7737.87924,kg -1108988d-85b3-3ff0-8985-87a3da3cffab,SESCO,II.5.1,Santiago del Estero,AR-G,annual,2018,gas oil combustion consumption by agriculture machines,1984.0716,TJ,N2O,3.9,kg/TJ,7737.87924,kg -d75b3e0e-3c6f-3295-a98a-fec55dce3881,SESCO,II.5.1,Tucuman,AR-T,annual,2018,gas oil combustion consumption by agriculture machines,1305.6657599999999,TJ,CO2,74100.0,kg/TJ,96749832.81599998,kg -107491af-3829-3278-9fac-277c031d89fc,SESCO,II.5.1,Tucuman,AR-T,annual,2018,gas oil combustion consumption by agriculture machines,1305.6657599999999,TJ,CH4,3.9,kg/TJ,5092.096463999999,kg -107491af-3829-3278-9fac-277c031d89fc,SESCO,II.5.1,Tucuman,AR-T,annual,2018,gas oil combustion consumption by agriculture machines,1305.6657599999999,TJ,N2O,3.9,kg/TJ,5092.096463999999,kg -3e24d43e-8c01-30db-8d7b-8d32eb964010,SESCO,II.5.1,Buenos Aires,AR-B,annual,2018,gas oil combustion consumption by agriculture machines,948.3306,TJ,CO2,74100.0,kg/TJ,70271297.46,kg -5ba1ee15-66a9-3c8c-a881-11002e0c2427,SESCO,II.5.1,Buenos Aires,AR-B,annual,2018,gas oil combustion consumption by agriculture machines,948.3306,TJ,CH4,3.9,kg/TJ,3698.48934,kg -5ba1ee15-66a9-3c8c-a881-11002e0c2427,SESCO,II.5.1,Buenos Aires,AR-B,annual,2018,gas oil combustion consumption by agriculture machines,948.3306,TJ,N2O,3.9,kg/TJ,3698.48934,kg -9bcfd9a1-c4c7-3df2-90c0-b045ab96e49a,SESCO,II.5.1,Capital Federal,AR-C,annual,2018,gas oil combustion consumption by agriculture machines,2.02272,TJ,CO2,74100.0,kg/TJ,149883.552,kg -7f74641c-05d4-30e8-915c-6e6e8376c564,SESCO,II.5.1,Capital Federal,AR-C,annual,2018,gas oil combustion consumption by agriculture machines,2.02272,TJ,CH4,3.9,kg/TJ,7.8886080000000005,kg -7f74641c-05d4-30e8-915c-6e6e8376c564,SESCO,II.5.1,Capital Federal,AR-C,annual,2018,gas oil combustion consumption by agriculture machines,2.02272,TJ,N2O,3.9,kg/TJ,7.8886080000000005,kg -8d61c631-6157-3cda-95d3-9873383068a2,SESCO,II.5.1,Catamarca,AR-K,annual,2018,gas oil combustion consumption by agriculture machines,18.13224,TJ,CO2,74100.0,kg/TJ,1343598.984,kg -6f48ed86-eb19-31e1-9606-bb576798d628,SESCO,II.5.1,Catamarca,AR-K,annual,2018,gas oil combustion consumption by agriculture machines,18.13224,TJ,CH4,3.9,kg/TJ,70.71573599999999,kg -6f48ed86-eb19-31e1-9606-bb576798d628,SESCO,II.5.1,Catamarca,AR-K,annual,2018,gas oil combustion consumption by agriculture machines,18.13224,TJ,N2O,3.9,kg/TJ,70.71573599999999,kg -5c5ff19d-789f-3ddf-9dcb-3ee60a895a49,SESCO,II.5.1,Chaco,AR-H,annual,2018,gas oil combustion consumption by agriculture machines,86.29068,TJ,CO2,74100.0,kg/TJ,6394139.387999999,kg -06c4003f-0705-3cb8-beb3-2403b083b0c5,SESCO,II.5.1,Chaco,AR-H,annual,2018,gas oil combustion consumption by agriculture machines,86.29068,TJ,CH4,3.9,kg/TJ,336.53365199999996,kg -06c4003f-0705-3cb8-beb3-2403b083b0c5,SESCO,II.5.1,Chaco,AR-H,annual,2018,gas oil combustion consumption by agriculture machines,86.29068,TJ,N2O,3.9,kg/TJ,336.53365199999996,kg -62f800a4-6e40-3dee-b161-e0b412885d87,SESCO,II.5.1,Corrientes,AR-W,annual,2018,gas oil combustion consumption by agriculture machines,28.7154,TJ,CO2,74100.0,kg/TJ,2127811.14,kg -f38f000a-ce3a-3cb3-b116-2889020dfd72,SESCO,II.5.1,Corrientes,AR-W,annual,2018,gas oil combustion consumption by agriculture machines,28.7154,TJ,CH4,3.9,kg/TJ,111.99006,kg -f38f000a-ce3a-3cb3-b116-2889020dfd72,SESCO,II.5.1,Corrientes,AR-W,annual,2018,gas oil combustion consumption by agriculture machines,28.7154,TJ,N2O,3.9,kg/TJ,111.99006,kg -2b8a16c4-0091-3442-84b6-15b715264194,SESCO,II.5.1,Córdoba,AR-X,annual,2018,gas oil combustion consumption by agriculture machines,556.82592,TJ,CO2,74100.0,kg/TJ,41260800.672,kg -212e1bf6-a0b0-371b-bc15-9136b12c826b,SESCO,II.5.1,Córdoba,AR-X,annual,2018,gas oil combustion consumption by agriculture machines,556.82592,TJ,CH4,3.9,kg/TJ,2171.621088,kg -212e1bf6-a0b0-371b-bc15-9136b12c826b,SESCO,II.5.1,Córdoba,AR-X,annual,2018,gas oil combustion consumption by agriculture machines,556.82592,TJ,N2O,3.9,kg/TJ,2171.621088,kg -dfd1cc5c-162f-3d60-af3b-dba593ae0ac7,SESCO,II.5.1,Entre Rios,AR-E,annual,2018,gas oil combustion consumption by agriculture machines,65.99124,TJ,CO2,74100.0,kg/TJ,4889950.884000001,kg -52a5589c-bf27-3983-a758-cb7caf775130,SESCO,II.5.1,Entre Rios,AR-E,annual,2018,gas oil combustion consumption by agriculture machines,65.99124,TJ,CH4,3.9,kg/TJ,257.365836,kg -52a5589c-bf27-3983-a758-cb7caf775130,SESCO,II.5.1,Entre Rios,AR-E,annual,2018,gas oil combustion consumption by agriculture machines,65.99124,TJ,N2O,3.9,kg/TJ,257.365836,kg -ffc23180-0801-36e0-8349-3ff2cd78b241,SESCO,II.5.1,Formosa,AR-P,annual,2018,gas oil combustion consumption by agriculture machines,28.67928,TJ,CO2,74100.0,kg/TJ,2125134.648,kg -0c6c5f6e-289c-3003-840b-182dae81256b,SESCO,II.5.1,Formosa,AR-P,annual,2018,gas oil combustion consumption by agriculture machines,28.67928,TJ,CH4,3.9,kg/TJ,111.84919199999999,kg -0c6c5f6e-289c-3003-840b-182dae81256b,SESCO,II.5.1,Formosa,AR-P,annual,2018,gas oil combustion consumption by agriculture machines,28.67928,TJ,N2O,3.9,kg/TJ,111.84919199999999,kg -b6a2785b-21a3-3807-b4aa-6087d703df20,SESCO,II.5.1,Jujuy,AR-Y,annual,2018,gas oil combustion consumption by agriculture machines,56.60004,TJ,CO2,74100.0,kg/TJ,4194062.964,kg -514ab2b7-c11b-3842-9662-b05005ee807f,SESCO,II.5.1,Jujuy,AR-Y,annual,2018,gas oil combustion consumption by agriculture machines,56.60004,TJ,CH4,3.9,kg/TJ,220.74015599999998,kg -514ab2b7-c11b-3842-9662-b05005ee807f,SESCO,II.5.1,Jujuy,AR-Y,annual,2018,gas oil combustion consumption by agriculture machines,56.60004,TJ,N2O,3.9,kg/TJ,220.74015599999998,kg -14d6a004-e244-3652-b1fe-1de85372df33,SESCO,II.5.1,La Pampa,AR-L,annual,2018,gas oil combustion consumption by agriculture machines,218.77884,TJ,CO2,74100.0,kg/TJ,16211512.044,kg -f752feea-1280-3395-bcf1-c8ff0670637d,SESCO,II.5.1,La Pampa,AR-L,annual,2018,gas oil combustion consumption by agriculture machines,218.77884,TJ,CH4,3.9,kg/TJ,853.237476,kg -f752feea-1280-3395-bcf1-c8ff0670637d,SESCO,II.5.1,La Pampa,AR-L,annual,2018,gas oil combustion consumption by agriculture machines,218.77884,TJ,N2O,3.9,kg/TJ,853.237476,kg -ee9246fb-3cc6-3953-a9b7-7adc3e483328,SESCO,II.5.1,Mendoza,AR-M,annual,2018,gas oil combustion consumption by agriculture machines,218.38152,TJ,CO2,74100.0,kg/TJ,16182070.632,kg -9305b949-17f6-3d0f-af83-c9dcb38306be,SESCO,II.5.1,Mendoza,AR-M,annual,2018,gas oil combustion consumption by agriculture machines,218.38152,TJ,CH4,3.9,kg/TJ,851.6879279999999,kg -9305b949-17f6-3d0f-af83-c9dcb38306be,SESCO,II.5.1,Mendoza,AR-M,annual,2018,gas oil combustion consumption by agriculture machines,218.38152,TJ,N2O,3.9,kg/TJ,851.6879279999999,kg -c668a759-0aad-3c8f-9188-172b9643df56,SESCO,II.5.1,Misiones,AR-N,annual,2018,gas oil combustion consumption by agriculture machines,130.3932,TJ,CO2,74100.0,kg/TJ,9662136.120000001,kg -a1ae1bf8-ee0c-3124-8d84-f8ee4339f6e2,SESCO,II.5.1,Misiones,AR-N,annual,2018,gas oil combustion consumption by agriculture machines,130.3932,TJ,CH4,3.9,kg/TJ,508.53348,kg -a1ae1bf8-ee0c-3124-8d84-f8ee4339f6e2,SESCO,II.5.1,Misiones,AR-N,annual,2018,gas oil combustion consumption by agriculture machines,130.3932,TJ,N2O,3.9,kg/TJ,508.53348,kg -987a99b4-463d-3bfb-9b7e-58b67a14f6cd,SESCO,II.5.1,Rio Negro,AR-R,annual,2018,gas oil combustion consumption by agriculture machines,52.62684,TJ,CO2,74100.0,kg/TJ,3899648.844,kg -3538efbe-b817-3460-bb79-18dfcf569e75,SESCO,II.5.1,Rio Negro,AR-R,annual,2018,gas oil combustion consumption by agriculture machines,52.62684,TJ,CH4,3.9,kg/TJ,205.244676,kg -3538efbe-b817-3460-bb79-18dfcf569e75,SESCO,II.5.1,Rio Negro,AR-R,annual,2018,gas oil combustion consumption by agriculture machines,52.62684,TJ,N2O,3.9,kg/TJ,205.244676,kg -63e5f057-15ba-3445-80d0-3abc3ffb0f4d,SESCO,II.5.1,Salta,AR-A,annual,2018,gas oil combustion consumption by agriculture machines,113.0556,TJ,CO2,74100.0,kg/TJ,8377419.96,kg -38f1541a-0876-3457-bb05-46d205b22b4a,SESCO,II.5.1,Salta,AR-A,annual,2018,gas oil combustion consumption by agriculture machines,113.0556,TJ,CH4,3.9,kg/TJ,440.91684,kg -38f1541a-0876-3457-bb05-46d205b22b4a,SESCO,II.5.1,Salta,AR-A,annual,2018,gas oil combustion consumption by agriculture machines,113.0556,TJ,N2O,3.9,kg/TJ,440.91684,kg -6085d150-0198-3629-a566-47ec58d0e42c,SESCO,II.5.1,San Juan,AR-J,annual,2018,gas oil combustion consumption by agriculture machines,120.67692,TJ,CO2,74100.0,kg/TJ,8942159.772,kg -3a15baae-85bb-3c04-9a33-87c4b234357f,SESCO,II.5.1,San Juan,AR-J,annual,2018,gas oil combustion consumption by agriculture machines,120.67692,TJ,CH4,3.9,kg/TJ,470.63998799999996,kg -3a15baae-85bb-3c04-9a33-87c4b234357f,SESCO,II.5.1,San Juan,AR-J,annual,2018,gas oil combustion consumption by agriculture machines,120.67692,TJ,N2O,3.9,kg/TJ,470.63998799999996,kg -e8e8add1-1510-3e68-ba03-d83cbd156cbd,SESCO,II.5.1,San Luis,AR-D,annual,2018,gas oil combustion consumption by agriculture machines,43.344,TJ,CO2,74100.0,kg/TJ,3211790.4,kg -710ebfd4-f0a9-36f1-8959-e95f5295dfe1,SESCO,II.5.1,San Luis,AR-D,annual,2018,gas oil combustion consumption by agriculture machines,43.344,TJ,CH4,3.9,kg/TJ,169.0416,kg -710ebfd4-f0a9-36f1-8959-e95f5295dfe1,SESCO,II.5.1,San Luis,AR-D,annual,2018,gas oil combustion consumption by agriculture machines,43.344,TJ,N2O,3.9,kg/TJ,169.0416,kg -3a06177f-b03f-3608-90d1-563aa11e48c1,SESCO,II.5.1,Santa Fe,AR-S,annual,2018,gas oil combustion consumption by agriculture machines,382.72751999999997,TJ,CO2,74100.0,kg/TJ,28360109.231999997,kg -50db0890-bbd1-378d-953c-157bb1bcb179,SESCO,II.5.1,Santa Fe,AR-S,annual,2018,gas oil combustion consumption by agriculture machines,382.72751999999997,TJ,CH4,3.9,kg/TJ,1492.6373279999998,kg -50db0890-bbd1-378d-953c-157bb1bcb179,SESCO,II.5.1,Santa Fe,AR-S,annual,2018,gas oil combustion consumption by agriculture machines,382.72751999999997,TJ,N2O,3.9,kg/TJ,1492.6373279999998,kg -af121280-e195-35f5-8044-b95309748226,SESCO,II.5.1,Santiago del Estero,AR-G,annual,2018,gas oil combustion consumption by agriculture machines,199.49076,TJ,CO2,74100.0,kg/TJ,14782265.316,kg -76ffedcf-50e7-3b3e-ba28-56e158c4f912,SESCO,II.5.1,Santiago del Estero,AR-G,annual,2018,gas oil combustion consumption by agriculture machines,199.49076,TJ,CH4,3.9,kg/TJ,778.013964,kg -76ffedcf-50e7-3b3e-ba28-56e158c4f912,SESCO,II.5.1,Santiago del Estero,AR-G,annual,2018,gas oil combustion consumption by agriculture machines,199.49076,TJ,N2O,3.9,kg/TJ,778.013964,kg -27b693e4-af88-3b49-b50d-299ae78e328b,SESCO,II.5.1,Tucuman,AR-T,annual,2018,gas oil combustion consumption by agriculture machines,123.96384,TJ,CO2,74100.0,kg/TJ,9185720.544,kg -3905fcf0-cb50-3b5d-9207-b91cf54a3317,SESCO,II.5.1,Tucuman,AR-T,annual,2018,gas oil combustion consumption by agriculture machines,123.96384,TJ,CH4,3.9,kg/TJ,483.458976,kg -3905fcf0-cb50-3b5d-9207-b91cf54a3317,SESCO,II.5.1,Tucuman,AR-T,annual,2018,gas oil combustion consumption by agriculture machines,123.96384,TJ,N2O,3.9,kg/TJ,483.458976,kg -f06eb7a1-2abe-3a45-9dcf-90a74670fe00,SESCO,II.5.1,Buenos Aires,AR-B,annual,2018,jet kerosene combustion consumption by agriculture machines,6.384958999999999,TJ,CO2,71500.0,kg/TJ,456524.56849999994,kg -a7e81490-6db2-3051-ad26-daeebe8208be,SESCO,II.5.1,Buenos Aires,AR-B,annual,2018,jet kerosene combustion consumption by agriculture machines,6.384958999999999,TJ,CH4,0.5,kg/TJ,3.1924794999999997,kg -207ae956-3f73-3d0e-a77b-4cdb032206d4,SESCO,II.5.1,Buenos Aires,AR-B,annual,2018,jet kerosene combustion consumption by agriculture machines,6.384958999999999,TJ,N2O,2.0,kg/TJ,12.769917999999999,kg -93bf2ce2-fb2f-3c4c-b111-a60198180974,SESCO,II.5.1,Córdoba,AR-X,annual,2018,jet kerosene combustion consumption by agriculture machines,0.5661539999999999,TJ,CO2,71500.0,kg/TJ,40480.011,kg -e52974d2-8ca1-3d43-ba2d-742af09cd949,SESCO,II.5.1,Córdoba,AR-X,annual,2018,jet kerosene combustion consumption by agriculture machines,0.5661539999999999,TJ,CH4,0.5,kg/TJ,0.28307699999999997,kg -065cf5c9-4ac3-39b9-ab0b-be084b0cd299,SESCO,II.5.1,Córdoba,AR-X,annual,2018,jet kerosene combustion consumption by agriculture machines,0.5661539999999999,TJ,N2O,2.0,kg/TJ,1.1323079999999999,kg -a8e85e65-34ad-3697-9ab5-7e04d406fe70,SESCO,II.5.1,La Pampa,AR-L,annual,2018,jet kerosene combustion consumption by agriculture machines,0.157265,TJ,CO2,71500.0,kg/TJ,11244.447499999998,kg -367ff851-174e-34b6-80f1-1bf235bc288e,SESCO,II.5.1,La Pampa,AR-L,annual,2018,jet kerosene combustion consumption by agriculture machines,0.157265,TJ,CH4,0.5,kg/TJ,0.0786325,kg -23a3138c-0ad2-3901-9a62-3cd2ca98c8b6,SESCO,II.5.1,La Pampa,AR-L,annual,2018,jet kerosene combustion consumption by agriculture machines,0.157265,TJ,N2O,2.0,kg/TJ,0.31453,kg -befa29e4-1eec-39ba-9422-bde4c4f2ecb0,SESCO,II.5.1,Santa Fe,AR-S,annual,2018,jet kerosene combustion consumption by agriculture machines,9.278634999999998,TJ,CO2,71500.0,kg/TJ,663422.4024999999,kg -cd4e6c69-81ca-3b39-a6e6-34e0ff23908e,SESCO,II.5.1,Santa Fe,AR-S,annual,2018,jet kerosene combustion consumption by agriculture machines,9.278634999999998,TJ,CH4,0.5,kg/TJ,4.639317499999999,kg -9b5fbcd0-ee91-3cfa-b8fe-383082a9ad0d,SESCO,II.5.1,Santa Fe,AR-S,annual,2018,jet kerosene combustion consumption by agriculture machines,9.278634999999998,TJ,N2O,2.0,kg/TJ,18.557269999999995,kg -1a26568a-2559-362f-8b3b-29a3ed3afc18,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,gas oil combustion consumption by to the public,26288.38884,TJ,CO2,74100.0,kg/TJ,1947969613.044,kg -1850ced7-9612-34cd-b4b5-1dabad81735e,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,gas oil combustion consumption by to the public,26288.38884,TJ,CH4,3.9,kg/TJ,102524.716476,kg -1850ced7-9612-34cd-b4b5-1dabad81735e,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,gas oil combustion consumption by to the public,26288.38884,TJ,N2O,3.9,kg/TJ,102524.716476,kg -0902561e-0f9b-3a5b-9d2d-e715dac26755,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,gas oil combustion consumption by to the public,2783.33496,TJ,CO2,74100.0,kg/TJ,206245120.536,kg -7e8c55db-c0ef-325f-92c8-f8548357b5b1,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,gas oil combustion consumption by to the public,2783.33496,TJ,CH4,3.9,kg/TJ,10855.006344,kg -7e8c55db-c0ef-325f-92c8-f8548357b5b1,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,gas oil combustion consumption by to the public,2783.33496,TJ,N2O,3.9,kg/TJ,10855.006344,kg -7ce6ad12-a7dc-37f3-b170-5263a36852fc,SESCO,II.1.1,Catamarca,AR-K,annual,2018,gas oil combustion consumption by to the public,301.89096,TJ,CO2,74100.0,kg/TJ,22370120.136,kg -528aaeac-db2b-3841-a9f6-a34106d6c053,SESCO,II.1.1,Catamarca,AR-K,annual,2018,gas oil combustion consumption by to the public,301.89096,TJ,CH4,3.9,kg/TJ,1177.374744,kg -528aaeac-db2b-3841-a9f6-a34106d6c053,SESCO,II.1.1,Catamarca,AR-K,annual,2018,gas oil combustion consumption by to the public,301.89096,TJ,N2O,3.9,kg/TJ,1177.374744,kg -f025d147-6587-3ca1-ba33-341de39e196f,SESCO,II.1.1,Chaco,AR-H,annual,2018,gas oil combustion consumption by to the public,1835.18496,TJ,CO2,74100.0,kg/TJ,135987205.536,kg -7311afbd-da0a-3660-9fba-6d1c124888d1,SESCO,II.1.1,Chaco,AR-H,annual,2018,gas oil combustion consumption by to the public,1835.18496,TJ,CH4,3.9,kg/TJ,7157.221344,kg -7311afbd-da0a-3660-9fba-6d1c124888d1,SESCO,II.1.1,Chaco,AR-H,annual,2018,gas oil combustion consumption by to the public,1835.18496,TJ,N2O,3.9,kg/TJ,7157.221344,kg -2cda1643-bb64-349d-b68e-e7e55fa2005e,SESCO,II.1.1,Chubut,AR-U,annual,2018,gas oil combustion consumption by to the public,3189.72108,TJ,CO2,74100.0,kg/TJ,236358332.028,kg -7aa5de33-fa65-34d2-95db-cbaa2018b32c,SESCO,II.1.1,Chubut,AR-U,annual,2018,gas oil combustion consumption by to the public,3189.72108,TJ,CH4,3.9,kg/TJ,12439.912212,kg -7aa5de33-fa65-34d2-95db-cbaa2018b32c,SESCO,II.1.1,Chubut,AR-U,annual,2018,gas oil combustion consumption by to the public,3189.72108,TJ,N2O,3.9,kg/TJ,12439.912212,kg -bf1b5610-cef1-38d7-a174-040638b3987e,SESCO,II.1.1,Corrientes,AR-W,annual,2018,gas oil combustion consumption by to the public,1474.81572,TJ,CO2,74100.0,kg/TJ,109283844.852,kg -58f28871-085a-330d-929a-16cea316afbf,SESCO,II.1.1,Corrientes,AR-W,annual,2018,gas oil combustion consumption by to the public,1474.81572,TJ,CH4,3.9,kg/TJ,5751.7813080000005,kg -58f28871-085a-330d-929a-16cea316afbf,SESCO,II.1.1,Corrientes,AR-W,annual,2018,gas oil combustion consumption by to the public,1474.81572,TJ,N2O,3.9,kg/TJ,5751.7813080000005,kg -ed6a1a21-4b78-3a3f-bb1c-196532dbda25,SESCO,II.1.1,Córdoba,AR-X,annual,2018,gas oil combustion consumption by to the public,9365.77152,TJ,CO2,74100.0,kg/TJ,694003669.632,kg -10013685-24f3-3a6f-8997-e24a027cd4a9,SESCO,II.1.1,Córdoba,AR-X,annual,2018,gas oil combustion consumption by to the public,9365.77152,TJ,CH4,3.9,kg/TJ,36526.508928,kg -10013685-24f3-3a6f-8997-e24a027cd4a9,SESCO,II.1.1,Córdoba,AR-X,annual,2018,gas oil combustion consumption by to the public,9365.77152,TJ,N2O,3.9,kg/TJ,36526.508928,kg -b44f476b-de16-3d2c-bb82-bdb471bcfb67,SESCO,II.1.1,Entre Rios,AR-E,annual,2018,gas oil combustion consumption by to the public,3500.35308,TJ,CO2,74100.0,kg/TJ,259376163.228,kg -45fce7dc-fb01-3dc3-87f5-5c9d1b3a9776,SESCO,II.1.1,Entre Rios,AR-E,annual,2018,gas oil combustion consumption by to the public,3500.35308,TJ,CH4,3.9,kg/TJ,13651.377011999999,kg -45fce7dc-fb01-3dc3-87f5-5c9d1b3a9776,SESCO,II.1.1,Entre Rios,AR-E,annual,2018,gas oil combustion consumption by to the public,3500.35308,TJ,N2O,3.9,kg/TJ,13651.377011999999,kg -03489c57-5c01-3f6a-94e9-d397cc5d5155,SESCO,II.1.1,Formosa,AR-P,annual,2018,gas oil combustion consumption by to the public,518.2136399999999,TJ,CO2,74100.0,kg/TJ,38399630.72399999,kg -8977f871-875d-3c9b-8d89-c9b9850621a5,SESCO,II.1.1,Formosa,AR-P,annual,2018,gas oil combustion consumption by to the public,518.2136399999999,TJ,CH4,3.9,kg/TJ,2021.0331959999996,kg -8977f871-875d-3c9b-8d89-c9b9850621a5,SESCO,II.1.1,Formosa,AR-P,annual,2018,gas oil combustion consumption by to the public,518.2136399999999,TJ,N2O,3.9,kg/TJ,2021.0331959999996,kg -6396c554-4b58-3b76-9c81-5b26af7cf3fa,SESCO,II.1.1,Jujuy,AR-Y,annual,2018,gas oil combustion consumption by to the public,1439.7432,TJ,CO2,74100.0,kg/TJ,106684971.11999999,kg -01e2cecf-f93d-307a-a2d0-6bfb6f93cf5a,SESCO,II.1.1,Jujuy,AR-Y,annual,2018,gas oil combustion consumption by to the public,1439.7432,TJ,CH4,3.9,kg/TJ,5614.998479999999,kg -01e2cecf-f93d-307a-a2d0-6bfb6f93cf5a,SESCO,II.1.1,Jujuy,AR-Y,annual,2018,gas oil combustion consumption by to the public,1439.7432,TJ,N2O,3.9,kg/TJ,5614.998479999999,kg -bd419338-dcbc-3f79-adb4-f56aa71b8e7d,SESCO,II.1.1,La Pampa,AR-L,annual,2018,gas oil combustion consumption by to the public,2323.1661599999998,TJ,CO2,74100.0,kg/TJ,172146612.45599997,kg -c17a5a89-c6a2-39e7-8b3f-09116dbbf0b0,SESCO,II.1.1,La Pampa,AR-L,annual,2018,gas oil combustion consumption by to the public,2323.1661599999998,TJ,CH4,3.9,kg/TJ,9060.348023999999,kg -c17a5a89-c6a2-39e7-8b3f-09116dbbf0b0,SESCO,II.1.1,La Pampa,AR-L,annual,2018,gas oil combustion consumption by to the public,2323.1661599999998,TJ,N2O,3.9,kg/TJ,9060.348023999999,kg -c3c7f2d6-c335-352b-920c-27a02d103a73,SESCO,II.1.1,La Rioja,AR-F,annual,2018,gas oil combustion consumption by to the public,580.8096,TJ,CO2,74100.0,kg/TJ,43037991.36000001,kg -3fd674ef-e3e6-3162-b4d3-425eedfc6b45,SESCO,II.1.1,La Rioja,AR-F,annual,2018,gas oil combustion consumption by to the public,580.8096,TJ,CH4,3.9,kg/TJ,2265.15744,kg -3fd674ef-e3e6-3162-b4d3-425eedfc6b45,SESCO,II.1.1,La Rioja,AR-F,annual,2018,gas oil combustion consumption by to the public,580.8096,TJ,N2O,3.9,kg/TJ,2265.15744,kg -88165a45-b1bf-38c9-a083-5999d41ef14c,SESCO,II.1.1,Mendoza,AR-M,annual,2018,gas oil combustion consumption by to the public,7392.46368,TJ,CO2,74100.0,kg/TJ,547781558.688,kg -53ad7fcd-6a6b-3562-b700-14a22373ac2e,SESCO,II.1.1,Mendoza,AR-M,annual,2018,gas oil combustion consumption by to the public,7392.46368,TJ,CH4,3.9,kg/TJ,28830.608352,kg -53ad7fcd-6a6b-3562-b700-14a22373ac2e,SESCO,II.1.1,Mendoza,AR-M,annual,2018,gas oil combustion consumption by to the public,7392.46368,TJ,N2O,3.9,kg/TJ,28830.608352,kg -738ee557-83e1-3abf-b361-d5ebef5676df,SESCO,II.1.1,Misiones,AR-N,annual,2018,gas oil combustion consumption by to the public,2529.88092,TJ,CO2,74100.0,kg/TJ,187464176.172,kg -033a6309-131b-32b2-8cc6-7c1edae3575e,SESCO,II.1.1,Misiones,AR-N,annual,2018,gas oil combustion consumption by to the public,2529.88092,TJ,CH4,3.9,kg/TJ,9866.535588,kg -033a6309-131b-32b2-8cc6-7c1edae3575e,SESCO,II.1.1,Misiones,AR-N,annual,2018,gas oil combustion consumption by to the public,2529.88092,TJ,N2O,3.9,kg/TJ,9866.535588,kg -1ac51d91-b910-3db8-a0ba-bc3184590033,SESCO,II.1.1,Neuquén,AR-Q,annual,2018,gas oil combustion consumption by to the public,1760.77776,TJ,CO2,74100.0,kg/TJ,130473632.016,kg -2b691bf5-cb6f-313c-8b09-d1bf3bca0756,SESCO,II.1.1,Neuquén,AR-Q,annual,2018,gas oil combustion consumption by to the public,1760.77776,TJ,CH4,3.9,kg/TJ,6867.033264,kg -2b691bf5-cb6f-313c-8b09-d1bf3bca0756,SESCO,II.1.1,Neuquén,AR-Q,annual,2018,gas oil combustion consumption by to the public,1760.77776,TJ,N2O,3.9,kg/TJ,6867.033264,kg -9c2c7657-2e66-30fb-93a3-257f7d661be6,SESCO,II.1.1,Rio Negro,AR-R,annual,2018,gas oil combustion consumption by to the public,3746.22192,TJ,CO2,74100.0,kg/TJ,277595044.272,kg -6724d68d-be71-350f-963a-d95660cfa68e,SESCO,II.1.1,Rio Negro,AR-R,annual,2018,gas oil combustion consumption by to the public,3746.22192,TJ,CH4,3.9,kg/TJ,14610.265488,kg -6724d68d-be71-350f-963a-d95660cfa68e,SESCO,II.1.1,Rio Negro,AR-R,annual,2018,gas oil combustion consumption by to the public,3746.22192,TJ,N2O,3.9,kg/TJ,14610.265488,kg -3d1074d3-cbef-324e-b5c1-800665cd8f01,SESCO,II.1.1,Salta,AR-A,annual,2018,gas oil combustion consumption by to the public,3133.55448,TJ,CO2,74100.0,kg/TJ,232196386.968,kg -fb4e6875-27e5-35cf-8479-08c6f647352d,SESCO,II.1.1,Salta,AR-A,annual,2018,gas oil combustion consumption by to the public,3133.55448,TJ,CH4,3.9,kg/TJ,12220.862471999999,kg -fb4e6875-27e5-35cf-8479-08c6f647352d,SESCO,II.1.1,Salta,AR-A,annual,2018,gas oil combustion consumption by to the public,3133.55448,TJ,N2O,3.9,kg/TJ,12220.862471999999,kg -7ade9dcf-26b7-3003-a8c2-cbd1d48ff050,SESCO,II.1.1,San Juan,AR-J,annual,2018,gas oil combustion consumption by to the public,1649.20308,TJ,CO2,74100.0,kg/TJ,122205948.228,kg -27bf5922-6476-35a8-b9bb-26578c884581,SESCO,II.1.1,San Juan,AR-J,annual,2018,gas oil combustion consumption by to the public,1649.20308,TJ,CH4,3.9,kg/TJ,6431.892012,kg -27bf5922-6476-35a8-b9bb-26578c884581,SESCO,II.1.1,San Juan,AR-J,annual,2018,gas oil combustion consumption by to the public,1649.20308,TJ,N2O,3.9,kg/TJ,6431.892012,kg -3cc1d8d8-2272-3904-bfca-272470719582,SESCO,II.1.1,San Luis,AR-D,annual,2018,gas oil combustion consumption by to the public,1346.30076,TJ,CO2,74100.0,kg/TJ,99760886.316,kg -e9e6a7c4-af18-3590-aa5b-225e84a5b559,SESCO,II.1.1,San Luis,AR-D,annual,2018,gas oil combustion consumption by to the public,1346.30076,TJ,CH4,3.9,kg/TJ,5250.572964,kg -e9e6a7c4-af18-3590-aa5b-225e84a5b559,SESCO,II.1.1,San Luis,AR-D,annual,2018,gas oil combustion consumption by to the public,1346.30076,TJ,N2O,3.9,kg/TJ,5250.572964,kg -e3732538-a5b5-3774-aaf3-6410021f9fdb,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2018,gas oil combustion consumption by to the public,1783.17216,TJ,CO2,74100.0,kg/TJ,132133057.05600001,kg -3c41c725-9396-39fb-879a-84eecacd8742,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2018,gas oil combustion consumption by to the public,1783.17216,TJ,CH4,3.9,kg/TJ,6954.371424,kg -3c41c725-9396-39fb-879a-84eecacd8742,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2018,gas oil combustion consumption by to the public,1783.17216,TJ,N2O,3.9,kg/TJ,6954.371424,kg -48207d83-c02a-3ac2-949f-d298bca43658,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,gas oil combustion consumption by to the public,6913.7292,TJ,CO2,74100.0,kg/TJ,512307333.71999997,kg -8146c190-2680-3d7d-8ae5-75271932e671,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,gas oil combustion consumption by to the public,6913.7292,TJ,CH4,3.9,kg/TJ,26963.543879999997,kg -8146c190-2680-3d7d-8ae5-75271932e671,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,gas oil combustion consumption by to the public,6913.7292,TJ,N2O,3.9,kg/TJ,26963.543879999997,kg -bc0cb684-5b51-3d4d-94d1-79311f0238cb,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2018,gas oil combustion consumption by to the public,2076.28596,TJ,CO2,74100.0,kg/TJ,153852789.636,kg -e380e64c-4c74-304c-b49a-4cff2358f86e,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2018,gas oil combustion consumption by to the public,2076.28596,TJ,CH4,3.9,kg/TJ,8097.515244,kg -e380e64c-4c74-304c-b49a-4cff2358f86e,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2018,gas oil combustion consumption by to the public,2076.28596,TJ,N2O,3.9,kg/TJ,8097.515244,kg -7e7b6d7f-87bc-3943-b41b-6892c85145fe,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2018,gas oil combustion consumption by to the public,722.11104,TJ,CO2,74100.0,kg/TJ,53508428.064,kg -82fa723f-9fab-3e5b-89a5-a6838d3aed4e,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2018,gas oil combustion consumption by to the public,722.11104,TJ,CH4,3.9,kg/TJ,2816.233056,kg -82fa723f-9fab-3e5b-89a5-a6838d3aed4e,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2018,gas oil combustion consumption by to the public,722.11104,TJ,N2O,3.9,kg/TJ,2816.233056,kg -d93da14c-be98-3dac-a96f-6396056c4f44,SESCO,II.1.1,Tucuman,AR-T,annual,2018,gas oil combustion consumption by to the public,1723.24908,TJ,CO2,74100.0,kg/TJ,127692756.82800001,kg -e523cf97-7e62-3d7b-af89-aa3aa0add790,SESCO,II.1.1,Tucuman,AR-T,annual,2018,gas oil combustion consumption by to the public,1723.24908,TJ,CH4,3.9,kg/TJ,6720.671412,kg -e523cf97-7e62-3d7b-af89-aa3aa0add790,SESCO,II.1.1,Tucuman,AR-T,annual,2018,gas oil combustion consumption by to the public,1723.24908,TJ,N2O,3.9,kg/TJ,6720.671412,kg -8e847d77-78ef-3ff7-bee4-8c533be85342,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,gas oil combustion consumption by to the public,16713.22968,TJ,CO2,74100.0,kg/TJ,1238450319.288,kg -8ec59761-07e2-3c47-9081-84853eaa71c8,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,gas oil combustion consumption by to the public,16713.22968,TJ,CH4,3.9,kg/TJ,65181.595752,kg -8ec59761-07e2-3c47-9081-84853eaa71c8,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,gas oil combustion consumption by to the public,16713.22968,TJ,N2O,3.9,kg/TJ,65181.595752,kg -9725b926-9d2c-3b1b-afd9-3b683a47fcf7,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,gas oil combustion consumption by to the public,2364.99312,TJ,CO2,74100.0,kg/TJ,175245990.192,kg -be5c0a66-173b-3651-9755-880fe49f75ca,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,gas oil combustion consumption by to the public,2364.99312,TJ,CH4,3.9,kg/TJ,9223.473168,kg -be5c0a66-173b-3651-9755-880fe49f75ca,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,gas oil combustion consumption by to the public,2364.99312,TJ,N2O,3.9,kg/TJ,9223.473168,kg -4fbc43c0-7ed7-3118-957e-4854cd0a83cc,SESCO,II.1.1,Catamarca,AR-K,annual,2018,gas oil combustion consumption by to the public,423.90432,TJ,CO2,74100.0,kg/TJ,31411310.112,kg -7778388b-eb0d-30da-a1db-145b89ea494c,SESCO,II.1.1,Catamarca,AR-K,annual,2018,gas oil combustion consumption by to the public,423.90432,TJ,CH4,3.9,kg/TJ,1653.2268479999998,kg -7778388b-eb0d-30da-a1db-145b89ea494c,SESCO,II.1.1,Catamarca,AR-K,annual,2018,gas oil combustion consumption by to the public,423.90432,TJ,N2O,3.9,kg/TJ,1653.2268479999998,kg -c0d66a6c-74b0-3275-a041-98c01ec13702,SESCO,II.1.1,Chaco,AR-H,annual,2018,gas oil combustion consumption by to the public,1288.83384,TJ,CO2,74100.0,kg/TJ,95502587.544,kg -50ba8358-c565-3106-92bb-388e49b506c1,SESCO,II.1.1,Chaco,AR-H,annual,2018,gas oil combustion consumption by to the public,1288.83384,TJ,CH4,3.9,kg/TJ,5026.451976,kg -50ba8358-c565-3106-92bb-388e49b506c1,SESCO,II.1.1,Chaco,AR-H,annual,2018,gas oil combustion consumption by to the public,1288.83384,TJ,N2O,3.9,kg/TJ,5026.451976,kg -f41363d7-5ee7-3474-b83e-a2d452e8af9b,SESCO,II.1.1,Chubut,AR-U,annual,2018,gas oil combustion consumption by to the public,2154.23292,TJ,CO2,74100.0,kg/TJ,159628659.372,kg -46f0e371-357f-3159-933d-7b96c66de019,SESCO,II.1.1,Chubut,AR-U,annual,2018,gas oil combustion consumption by to the public,2154.23292,TJ,CH4,3.9,kg/TJ,8401.508388,kg -46f0e371-357f-3159-933d-7b96c66de019,SESCO,II.1.1,Chubut,AR-U,annual,2018,gas oil combustion consumption by to the public,2154.23292,TJ,N2O,3.9,kg/TJ,8401.508388,kg -56971c3f-d3dc-3105-838e-c0166a3bc9cd,SESCO,II.1.1,Corrientes,AR-W,annual,2018,gas oil combustion consumption by to the public,1215.36576,TJ,CO2,74100.0,kg/TJ,90058602.816,kg -69276a8d-114d-30aa-bdd8-c7e11ef8c594,SESCO,II.1.1,Corrientes,AR-W,annual,2018,gas oil combustion consumption by to the public,1215.36576,TJ,CH4,3.9,kg/TJ,4739.926463999999,kg -69276a8d-114d-30aa-bdd8-c7e11ef8c594,SESCO,II.1.1,Corrientes,AR-W,annual,2018,gas oil combustion consumption by to the public,1215.36576,TJ,N2O,3.9,kg/TJ,4739.926463999999,kg -c8b77cd4-9a87-3658-b2e6-e80146f47e32,SESCO,II.1.1,Córdoba,AR-X,annual,2018,gas oil combustion consumption by to the public,5261.09472,TJ,CO2,74100.0,kg/TJ,389847118.752,kg -a0718cdf-8991-3a3d-8481-9b20ae5a4adc,SESCO,II.1.1,Córdoba,AR-X,annual,2018,gas oil combustion consumption by to the public,5261.09472,TJ,CH4,3.9,kg/TJ,20518.269408,kg -a0718cdf-8991-3a3d-8481-9b20ae5a4adc,SESCO,II.1.1,Córdoba,AR-X,annual,2018,gas oil combustion consumption by to the public,5261.09472,TJ,N2O,3.9,kg/TJ,20518.269408,kg -1ae76b1b-6737-31f6-b7ef-fdb73288857d,SESCO,II.1.1,Entre Rios,AR-E,annual,2018,gas oil combustion consumption by to the public,1820.23128,TJ,CO2,74100.0,kg/TJ,134879137.848,kg -6016f5f0-efe8-3da1-ac8e-3679fb04247c,SESCO,II.1.1,Entre Rios,AR-E,annual,2018,gas oil combustion consumption by to the public,1820.23128,TJ,CH4,3.9,kg/TJ,7098.901992,kg -6016f5f0-efe8-3da1-ac8e-3679fb04247c,SESCO,II.1.1,Entre Rios,AR-E,annual,2018,gas oil combustion consumption by to the public,1820.23128,TJ,N2O,3.9,kg/TJ,7098.901992,kg -2917bfb5-6063-3274-9695-2de98debd792,SESCO,II.1.1,Formosa,AR-P,annual,2018,gas oil combustion consumption by to the public,411.37068,TJ,CO2,74100.0,kg/TJ,30482567.388,kg -28cfa313-3d07-3eb0-a9d3-108783c2e5c6,SESCO,II.1.1,Formosa,AR-P,annual,2018,gas oil combustion consumption by to the public,411.37068,TJ,CH4,3.9,kg/TJ,1604.345652,kg -28cfa313-3d07-3eb0-a9d3-108783c2e5c6,SESCO,II.1.1,Formosa,AR-P,annual,2018,gas oil combustion consumption by to the public,411.37068,TJ,N2O,3.9,kg/TJ,1604.345652,kg -ed95a718-cc6f-34c4-8068-810f77920cb0,SESCO,II.1.1,Jujuy,AR-Y,annual,2018,gas oil combustion consumption by to the public,937.78356,TJ,CO2,74100.0,kg/TJ,69489761.796,kg -3da10c24-307c-344b-97e9-96dc161922eb,SESCO,II.1.1,Jujuy,AR-Y,annual,2018,gas oil combustion consumption by to the public,937.78356,TJ,CH4,3.9,kg/TJ,3657.3558839999996,kg -3da10c24-307c-344b-97e9-96dc161922eb,SESCO,II.1.1,Jujuy,AR-Y,annual,2018,gas oil combustion consumption by to the public,937.78356,TJ,N2O,3.9,kg/TJ,3657.3558839999996,kg -1b7a3ece-51f4-39b6-a9be-15c94257c973,SESCO,II.1.1,La Pampa,AR-L,annual,2018,gas oil combustion consumption by to the public,1527.6231599999999,TJ,CO2,74100.0,kg/TJ,113196876.15599999,kg -556edbc4-5d53-3538-9c28-17e11e0d1516,SESCO,II.1.1,La Pampa,AR-L,annual,2018,gas oil combustion consumption by to the public,1527.6231599999999,TJ,CH4,3.9,kg/TJ,5957.730323999999,kg -556edbc4-5d53-3538-9c28-17e11e0d1516,SESCO,II.1.1,La Pampa,AR-L,annual,2018,gas oil combustion consumption by to the public,1527.6231599999999,TJ,N2O,3.9,kg/TJ,5957.730323999999,kg -a03db055-6b37-3d40-b76c-062b15166902,SESCO,II.1.1,La Rioja,AR-F,annual,2018,gas oil combustion consumption by to the public,542.73912,TJ,CO2,74100.0,kg/TJ,40216968.791999996,kg -c3d0ecb1-8ced-3740-ac5b-d2406ba14f7f,SESCO,II.1.1,La Rioja,AR-F,annual,2018,gas oil combustion consumption by to the public,542.73912,TJ,CH4,3.9,kg/TJ,2116.6825679999997,kg -c3d0ecb1-8ced-3740-ac5b-d2406ba14f7f,SESCO,II.1.1,La Rioja,AR-F,annual,2018,gas oil combustion consumption by to the public,542.73912,TJ,N2O,3.9,kg/TJ,2116.6825679999997,kg -5b8a2eed-5342-347a-9615-01cd764b3aff,SESCO,II.1.1,Mendoza,AR-M,annual,2018,gas oil combustion consumption by to the public,3642.59364,TJ,CO2,74100.0,kg/TJ,269916188.724,kg -e8bcd1cc-c236-34e8-95be-f000f2b4b4a6,SESCO,II.1.1,Mendoza,AR-M,annual,2018,gas oil combustion consumption by to the public,3642.59364,TJ,CH4,3.9,kg/TJ,14206.115196,kg -e8bcd1cc-c236-34e8-95be-f000f2b4b4a6,SESCO,II.1.1,Mendoza,AR-M,annual,2018,gas oil combustion consumption by to the public,3642.59364,TJ,N2O,3.9,kg/TJ,14206.115196,kg -3fd6a27e-9e70-3179-92c4-72af0c0eadfb,SESCO,II.1.1,Misiones,AR-N,annual,2018,gas oil combustion consumption by to the public,1287.8586,TJ,CO2,74100.0,kg/TJ,95430322.26,kg -a5eab566-a959-3502-b983-17a0527e2cee,SESCO,II.1.1,Misiones,AR-N,annual,2018,gas oil combustion consumption by to the public,1287.8586,TJ,CH4,3.9,kg/TJ,5022.64854,kg -a5eab566-a959-3502-b983-17a0527e2cee,SESCO,II.1.1,Misiones,AR-N,annual,2018,gas oil combustion consumption by to the public,1287.8586,TJ,N2O,3.9,kg/TJ,5022.64854,kg -9f373891-bdee-3a63-9509-916cbeae7243,SESCO,II.1.1,Neuquén,AR-Q,annual,2018,gas oil combustion consumption by to the public,2460.1331999999998,TJ,CO2,74100.0,kg/TJ,182295870.11999997,kg -24143e72-ca3c-31a3-a4a1-488e0d947d5b,SESCO,II.1.1,Neuquén,AR-Q,annual,2018,gas oil combustion consumption by to the public,2460.1331999999998,TJ,CH4,3.9,kg/TJ,9594.519479999999,kg -24143e72-ca3c-31a3-a4a1-488e0d947d5b,SESCO,II.1.1,Neuquén,AR-Q,annual,2018,gas oil combustion consumption by to the public,2460.1331999999998,TJ,N2O,3.9,kg/TJ,9594.519479999999,kg -0e499a4a-8b73-36b6-9260-5cb63d2459dd,SESCO,II.1.1,Rio Negro,AR-R,annual,2018,gas oil combustion consumption by to the public,1846.05708,TJ,CO2,74100.0,kg/TJ,136792829.628,kg -c801e353-0cec-37a8-8ebf-132802d81f74,SESCO,II.1.1,Rio Negro,AR-R,annual,2018,gas oil combustion consumption by to the public,1846.05708,TJ,CH4,3.9,kg/TJ,7199.622612,kg -c801e353-0cec-37a8-8ebf-132802d81f74,SESCO,II.1.1,Rio Negro,AR-R,annual,2018,gas oil combustion consumption by to the public,1846.05708,TJ,N2O,3.9,kg/TJ,7199.622612,kg -ddccfa92-56fe-372f-a6e4-1b68faf2fc63,SESCO,II.1.1,Salta,AR-A,annual,2018,gas oil combustion consumption by to the public,1999.35036,TJ,CO2,74100.0,kg/TJ,148151861.676,kg -233b5719-bc06-3dc4-93d9-d31d5e46bcd2,SESCO,II.1.1,Salta,AR-A,annual,2018,gas oil combustion consumption by to the public,1999.35036,TJ,CH4,3.9,kg/TJ,7797.466404,kg -233b5719-bc06-3dc4-93d9-d31d5e46bcd2,SESCO,II.1.1,Salta,AR-A,annual,2018,gas oil combustion consumption by to the public,1999.35036,TJ,N2O,3.9,kg/TJ,7797.466404,kg -aebdfd78-ad07-36c5-803a-bc946ae8f3f4,SESCO,II.1.1,San Juan,AR-J,annual,2018,gas oil combustion consumption by to the public,890.57472,TJ,CO2,74100.0,kg/TJ,65991586.752,kg -f15e739d-31ac-3569-9661-51070906b2c0,SESCO,II.1.1,San Juan,AR-J,annual,2018,gas oil combustion consumption by to the public,890.57472,TJ,CH4,3.9,kg/TJ,3473.241408,kg -f15e739d-31ac-3569-9661-51070906b2c0,SESCO,II.1.1,San Juan,AR-J,annual,2018,gas oil combustion consumption by to the public,890.57472,TJ,N2O,3.9,kg/TJ,3473.241408,kg -2592d11c-82e2-3b8c-bce0-3186753f506e,SESCO,II.1.1,San Luis,AR-D,annual,2018,gas oil combustion consumption by to the public,799.73292,TJ,CO2,74100.0,kg/TJ,59260209.372,kg -31c9cf21-0f2d-30f2-9223-e8d6c2364872,SESCO,II.1.1,San Luis,AR-D,annual,2018,gas oil combustion consumption by to the public,799.73292,TJ,CH4,3.9,kg/TJ,3118.958388,kg -31c9cf21-0f2d-30f2-9223-e8d6c2364872,SESCO,II.1.1,San Luis,AR-D,annual,2018,gas oil combustion consumption by to the public,799.73292,TJ,N2O,3.9,kg/TJ,3118.958388,kg -60a4307e-1806-3da6-9d72-766dbb51118c,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2018,gas oil combustion consumption by to the public,1589.8218,TJ,CO2,74100.0,kg/TJ,117805795.38,kg -a8c6e669-a19e-3795-b413-021358261172,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2018,gas oil combustion consumption by to the public,1589.8218,TJ,CH4,3.9,kg/TJ,6200.30502,kg -a8c6e669-a19e-3795-b413-021358261172,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2018,gas oil combustion consumption by to the public,1589.8218,TJ,N2O,3.9,kg/TJ,6200.30502,kg -72e2af3c-b3a7-3b77-8775-00dee1c09917,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,gas oil combustion consumption by to the public,3895.65036,TJ,CO2,74100.0,kg/TJ,288667691.676,kg -c16ab2aa-47d1-36e9-9c50-8d8183bb69fb,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,gas oil combustion consumption by to the public,3895.65036,TJ,CH4,3.9,kg/TJ,15193.036404,kg -c16ab2aa-47d1-36e9-9c50-8d8183bb69fb,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,gas oil combustion consumption by to the public,3895.65036,TJ,N2O,3.9,kg/TJ,15193.036404,kg -50f2dc28-5760-3eaa-a061-6784d1d61ac2,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2018,gas oil combustion consumption by to the public,1060.91664,TJ,CO2,74100.0,kg/TJ,78613923.02399999,kg -97cb974f-5364-3265-be01-b34ffede7ca7,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2018,gas oil combustion consumption by to the public,1060.91664,TJ,CH4,3.9,kg/TJ,4137.574895999999,kg -97cb974f-5364-3265-be01-b34ffede7ca7,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2018,gas oil combustion consumption by to the public,1060.91664,TJ,N2O,3.9,kg/TJ,4137.574895999999,kg -69f5c0c9-b4c5-3eb0-83d3-02de648045f5,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2018,gas oil combustion consumption by to the public,451.64448,TJ,CO2,74100.0,kg/TJ,33466855.968,kg -bf27e825-05c7-3cf5-8526-da1cb8f149c9,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2018,gas oil combustion consumption by to the public,451.64448,TJ,CH4,3.9,kg/TJ,1761.413472,kg -bf27e825-05c7-3cf5-8526-da1cb8f149c9,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2018,gas oil combustion consumption by to the public,451.64448,TJ,N2O,3.9,kg/TJ,1761.413472,kg -0d6b994f-6807-3e81-88bd-f323bb987ce6,SESCO,II.1.1,Tucuman,AR-T,annual,2018,gas oil combustion consumption by to the public,1303.24572,TJ,CO2,74100.0,kg/TJ,96570507.852,kg -da41fbb8-43ab-34e4-aa80-c758cf95ac22,SESCO,II.1.1,Tucuman,AR-T,annual,2018,gas oil combustion consumption by to the public,1303.24572,TJ,CH4,3.9,kg/TJ,5082.658307999999,kg -da41fbb8-43ab-34e4-aa80-c758cf95ac22,SESCO,II.1.1,Tucuman,AR-T,annual,2018,gas oil combustion consumption by to the public,1303.24572,TJ,N2O,3.9,kg/TJ,5082.658307999999,kg -2e1a0c24-4097-31d8-8ef3-71ce5f0be252,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,jet kerosene combustion consumption by to the public,83.16173199999999,TJ,CO2,71500.0,kg/TJ,5946063.837999999,kg -6ff1fd79-67f1-38c2-9130-95cdf0054512,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,jet kerosene combustion consumption by to the public,83.16173199999999,TJ,CH4,0.5,kg/TJ,41.58086599999999,kg -65f89105-5a95-3d44-abb6-08f9e0496a26,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,jet kerosene combustion consumption by to the public,83.16173199999999,TJ,N2O,2.0,kg/TJ,166.32346399999997,kg -a8aba6a2-6fc5-3792-875d-09f07f4696dc,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,jet kerosene combustion consumption by to the public,2.5476929999999998,TJ,CO2,71500.0,kg/TJ,182160.0495,kg -3249eb2f-8d6d-3493-a830-95dcd2da4ac2,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,jet kerosene combustion consumption by to the public,2.5476929999999998,TJ,CH4,0.5,kg/TJ,1.2738464999999999,kg -a3241e36-b634-3fcd-86d0-5caa55920568,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,jet kerosene combustion consumption by to the public,2.5476929999999998,TJ,N2O,2.0,kg/TJ,5.0953859999999995,kg -e4c97ef5-eab2-31ef-ba84-a284b2452d65,SESCO,II.1.1,Catamarca,AR-K,annual,2018,jet kerosene combustion consumption by to the public,3.0509409999999995,TJ,CO2,71500.0,kg/TJ,218142.28149999995,kg -cd8647a0-804d-3c95-94fb-65afc83c18b5,SESCO,II.1.1,Catamarca,AR-K,annual,2018,jet kerosene combustion consumption by to the public,3.0509409999999995,TJ,CH4,0.5,kg/TJ,1.5254704999999997,kg -a1abc769-0c4e-3829-b693-049c7039a429,SESCO,II.1.1,Catamarca,AR-K,annual,2018,jet kerosene combustion consumption by to the public,3.0509409999999995,TJ,N2O,2.0,kg/TJ,6.101881999999999,kg -3385d1c6-e37c-3296-906c-71e956db602e,SESCO,II.1.1,Chubut,AR-U,annual,2018,jet kerosene combustion consumption by to the public,11.071455999999998,TJ,CO2,71500.0,kg/TJ,791609.1039999998,kg -66e5a8b1-3859-3668-a8a8-168855711ec9,SESCO,II.1.1,Chubut,AR-U,annual,2018,jet kerosene combustion consumption by to the public,11.071455999999998,TJ,CH4,0.5,kg/TJ,5.535727999999999,kg -eb67e5f7-18b3-3580-9302-03096b24a6a7,SESCO,II.1.1,Chubut,AR-U,annual,2018,jet kerosene combustion consumption by to the public,11.071455999999998,TJ,N2O,2.0,kg/TJ,22.142911999999995,kg -d84cd50b-631c-3d54-a251-d295e59538e8,SESCO,II.1.1,Corrientes,AR-W,annual,2018,jet kerosene combustion consumption by to the public,2.6420519999999996,TJ,CO2,71500.0,kg/TJ,188906.71799999996,kg -f35780fc-ed10-3b8f-a8b8-1deb9f7167c9,SESCO,II.1.1,Corrientes,AR-W,annual,2018,jet kerosene combustion consumption by to the public,2.6420519999999996,TJ,CH4,0.5,kg/TJ,1.3210259999999998,kg -d46c1090-1f0d-3f4d-8fa2-d5d84a4c9c15,SESCO,II.1.1,Corrientes,AR-W,annual,2018,jet kerosene combustion consumption by to the public,2.6420519999999996,TJ,N2O,2.0,kg/TJ,5.284103999999999,kg -d159cf76-1868-339d-bc13-db3d72bc34fc,SESCO,II.1.1,Córdoba,AR-X,annual,2018,jet kerosene combustion consumption by to the public,38.24684799999999,TJ,CO2,71500.0,kg/TJ,2734649.6319999993,kg -6d6e7e05-4f2b-35e9-9a99-ffb85bf6e7c4,SESCO,II.1.1,Córdoba,AR-X,annual,2018,jet kerosene combustion consumption by to the public,38.24684799999999,TJ,CH4,0.5,kg/TJ,19.123423999999996,kg -1da3dfba-d86e-3965-a95c-f9971cc57914,SESCO,II.1.1,Córdoba,AR-X,annual,2018,jet kerosene combustion consumption by to the public,38.24684799999999,TJ,N2O,2.0,kg/TJ,76.49369599999999,kg -6f3e5447-fb3d-3094-bd02-2c5c49eb7517,SESCO,II.1.1,Entre Rios,AR-E,annual,2018,jet kerosene combustion consumption by to the public,5.063933,TJ,CO2,71500.0,kg/TJ,362071.2095,kg -9dd9b8e5-64cc-36c1-82fc-5e015110654c,SESCO,II.1.1,Entre Rios,AR-E,annual,2018,jet kerosene combustion consumption by to the public,5.063933,TJ,CH4,0.5,kg/TJ,2.5319665,kg -62aedf5f-8c7e-32ea-a700-64daa72707ab,SESCO,II.1.1,Entre Rios,AR-E,annual,2018,jet kerosene combustion consumption by to the public,5.063933,TJ,N2O,2.0,kg/TJ,10.127866,kg -f905c3a9-7298-3479-8122-cf38af7484fa,SESCO,II.1.1,Jujuy,AR-Y,annual,2018,jet kerosene combustion consumption by to the public,3.6170949999999995,TJ,CO2,71500.0,kg/TJ,258622.29249999995,kg -6f5843d3-5e4e-36c1-afae-6ec8cf3b63ef,SESCO,II.1.1,Jujuy,AR-Y,annual,2018,jet kerosene combustion consumption by to the public,3.6170949999999995,TJ,CH4,0.5,kg/TJ,1.8085474999999998,kg -9bfc1836-bcad-328b-8ac3-801aac9088ad,SESCO,II.1.1,Jujuy,AR-Y,annual,2018,jet kerosene combustion consumption by to the public,3.6170949999999995,TJ,N2O,2.0,kg/TJ,7.234189999999999,kg -562e59b3-ce78-3949-84b9-c9edcd30c32b,SESCO,II.1.1,La Pampa,AR-L,annual,2018,jet kerosene combustion consumption by to the public,2.9565819999999996,TJ,CO2,71500.0,kg/TJ,211395.61299999998,kg -70afeff9-2cd3-31bf-9972-76512ae090d7,SESCO,II.1.1,La Pampa,AR-L,annual,2018,jet kerosene combustion consumption by to the public,2.9565819999999996,TJ,CH4,0.5,kg/TJ,1.4782909999999998,kg -25a0c0c5-3749-3096-862e-187c6d1f2829,SESCO,II.1.1,La Pampa,AR-L,annual,2018,jet kerosene combustion consumption by to the public,2.9565819999999996,TJ,N2O,2.0,kg/TJ,5.913163999999999,kg -29304c6a-d003-3c54-92f4-ec42fafa05ab,SESCO,II.1.1,La Rioja,AR-F,annual,2018,jet kerosene combustion consumption by to the public,1.1637609999999998,TJ,CO2,71500.0,kg/TJ,83208.91149999999,kg -bd5af3d3-48ea-3070-80d3-7c57cf2f5287,SESCO,II.1.1,La Rioja,AR-F,annual,2018,jet kerosene combustion consumption by to the public,1.1637609999999998,TJ,CH4,0.5,kg/TJ,0.5818804999999999,kg -d76b053c-9fec-3194-a930-45f197a8ca9d,SESCO,II.1.1,La Rioja,AR-F,annual,2018,jet kerosene combustion consumption by to the public,1.1637609999999998,TJ,N2O,2.0,kg/TJ,2.3275219999999996,kg -01c91d79-5eaa-38a3-9c5e-927c96ac0337,SESCO,II.1.1,Mendoza,AR-M,annual,2018,jet kerosene combustion consumption by to the public,13.336071999999998,TJ,CO2,71500.0,kg/TJ,953529.1479999998,kg -7f1978cd-4c52-3696-9a8b-690a129f869d,SESCO,II.1.1,Mendoza,AR-M,annual,2018,jet kerosene combustion consumption by to the public,13.336071999999998,TJ,CH4,0.5,kg/TJ,6.668035999999999,kg -995a2fe7-c0eb-39e5-b789-21d516e4ae86,SESCO,II.1.1,Mendoza,AR-M,annual,2018,jet kerosene combustion consumption by to the public,13.336071999999998,TJ,N2O,2.0,kg/TJ,26.672143999999996,kg -124eefa4-18b6-3792-a494-98492418ac6e,SESCO,II.1.1,Neuquén,AR-Q,annual,2018,jet kerosene combustion consumption by to the public,7.5487199999999985,TJ,CO2,71500.0,kg/TJ,539733.4799999999,kg -0427750f-077d-3f0b-97ad-00045e8ae15c,SESCO,II.1.1,Neuquén,AR-Q,annual,2018,jet kerosene combustion consumption by to the public,7.5487199999999985,TJ,CH4,0.5,kg/TJ,3.7743599999999993,kg -bd20e27b-3a3b-3192-8b5b-9427460133d5,SESCO,II.1.1,Neuquén,AR-Q,annual,2018,jet kerosene combustion consumption by to the public,7.5487199999999985,TJ,N2O,2.0,kg/TJ,15.097439999999997,kg -9adbf9b1-67a0-3a71-b173-a8fd48a48ed7,SESCO,II.1.1,Rio Negro,AR-R,annual,2018,jet kerosene combustion consumption by to the public,0.4717949999999999,TJ,CO2,71500.0,kg/TJ,33733.34249999999,kg -5ededb02-23db-38f0-9591-c297442fec42,SESCO,II.1.1,Rio Negro,AR-R,annual,2018,jet kerosene combustion consumption by to the public,0.4717949999999999,TJ,CH4,0.5,kg/TJ,0.23589749999999995,kg -b114a1c0-92dd-3b01-9867-17c0d629caf6,SESCO,II.1.1,Rio Negro,AR-R,annual,2018,jet kerosene combustion consumption by to the public,0.4717949999999999,TJ,N2O,2.0,kg/TJ,0.9435899999999998,kg -911543c6-73e7-3fab-aa30-d68f0cee846f,SESCO,II.1.1,San Juan,AR-J,annual,2018,jet kerosene combustion consumption by to the public,3.837265999999999,TJ,CO2,71500.0,kg/TJ,274364.5189999999,kg -adf53434-9774-3db4-8823-a18a3c2050b8,SESCO,II.1.1,San Juan,AR-J,annual,2018,jet kerosene combustion consumption by to the public,3.837265999999999,TJ,CH4,0.5,kg/TJ,1.9186329999999996,kg -192307bf-1bc9-31e6-bf4d-34377a5bbdf8,SESCO,II.1.1,San Juan,AR-J,annual,2018,jet kerosene combustion consumption by to the public,3.837265999999999,TJ,N2O,2.0,kg/TJ,7.674531999999998,kg -49bb66eb-2454-32f0-91b3-f3c6107bb043,SESCO,II.1.1,San Luis,AR-D,annual,2018,jet kerosene combustion consumption by to the public,5.976069999999999,TJ,CO2,71500.0,kg/TJ,427289.00499999995,kg -1f516550-c848-30d5-a8bf-7659708bad54,SESCO,II.1.1,San Luis,AR-D,annual,2018,jet kerosene combustion consumption by to the public,5.976069999999999,TJ,CH4,0.5,kg/TJ,2.9880349999999996,kg -cb4231a7-5656-3406-af37-270110093cfe,SESCO,II.1.1,San Luis,AR-D,annual,2018,jet kerosene combustion consumption by to the public,5.976069999999999,TJ,N2O,2.0,kg/TJ,11.952139999999998,kg -f17a5bd7-f3be-3828-a52c-d77dbde77b7a,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2018,jet kerosene combustion consumption by to the public,6.447864999999999,TJ,CO2,71500.0,kg/TJ,461022.3475,kg -cf207552-ff06-38a1-a31f-6a44697eea30,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2018,jet kerosene combustion consumption by to the public,6.447864999999999,TJ,CH4,0.5,kg/TJ,3.2239324999999996,kg -a2017b34-ca10-33c6-aaca-cd90c1b1e60b,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2018,jet kerosene combustion consumption by to the public,6.447864999999999,TJ,N2O,2.0,kg/TJ,12.895729999999999,kg -41f56485-5235-3d7f-9d04-48efa8c4b421,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,jet kerosene combustion consumption by to the public,21.199321999999995,TJ,CO2,71500.0,kg/TJ,1515751.5229999996,kg -2be70150-7b41-3a85-a3ba-668b248d0493,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,jet kerosene combustion consumption by to the public,21.199321999999995,TJ,CH4,0.5,kg/TJ,10.599660999999998,kg -d0461e75-10b7-3737-a4e8-e6d19f148fb8,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,jet kerosene combustion consumption by to the public,21.199321999999995,TJ,N2O,2.0,kg/TJ,42.39864399999999,kg -f8688855-50f7-3f9f-8293-66ea8eb367ec,SESCO,II.1.1,Tucuman,AR-T,annual,2018,jet kerosene combustion consumption by to the public,7.894702999999999,TJ,CO2,71500.0,kg/TJ,564471.2644999999,kg -c0f0c0c7-db01-377e-8c12-52e225d1ad46,SESCO,II.1.1,Tucuman,AR-T,annual,2018,jet kerosene combustion consumption by to the public,7.894702999999999,TJ,CH4,0.5,kg/TJ,3.9473514999999995,kg -b43ea530-09ac-3207-b37a-b2aeadf9a580,SESCO,II.1.1,Tucuman,AR-T,annual,2018,jet kerosene combustion consumption by to the public,7.894702999999999,TJ,N2O,2.0,kg/TJ,15.789405999999998,kg -c94eff81-af1d-347b-a186-3c3548deb972,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,gas oil combustion consumption by freight transport,10388.4732,TJ,CO2,74100.0,kg/TJ,769785864.12,kg -054af9c0-7d52-38d7-a1c7-bed99f267c6e,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,gas oil combustion consumption by freight transport,10388.4732,TJ,CH4,3.9,kg/TJ,40515.04548,kg -054af9c0-7d52-38d7-a1c7-bed99f267c6e,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,gas oil combustion consumption by freight transport,10388.4732,TJ,N2O,3.9,kg/TJ,40515.04548,kg -3047ae92-dbf4-3501-8f7e-394a61602794,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,gas oil combustion consumption by freight transport,3926.6052,TJ,CO2,74100.0,kg/TJ,290961445.32,kg -32c366c0-7ff5-3b5c-bf86-a32ccbde79d8,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,gas oil combustion consumption by freight transport,3926.6052,TJ,CH4,3.9,kg/TJ,15313.76028,kg -32c366c0-7ff5-3b5c-bf86-a32ccbde79d8,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,gas oil combustion consumption by freight transport,3926.6052,TJ,N2O,3.9,kg/TJ,15313.76028,kg -da858d5a-5fad-37d4-9ba9-9a7987325af9,SESCO,II.1.1,Catamarca,AR-K,annual,2018,gas oil combustion consumption by freight transport,19.07136,TJ,CO2,74100.0,kg/TJ,1413187.7759999998,kg -bab64f9a-ace9-35a4-b9b2-527ecef3acc8,SESCO,II.1.1,Catamarca,AR-K,annual,2018,gas oil combustion consumption by freight transport,19.07136,TJ,CH4,3.9,kg/TJ,74.37830399999999,kg -bab64f9a-ace9-35a4-b9b2-527ecef3acc8,SESCO,II.1.1,Catamarca,AR-K,annual,2018,gas oil combustion consumption by freight transport,19.07136,TJ,N2O,3.9,kg/TJ,74.37830399999999,kg -d6bdd996-64a0-33d0-b675-2a6f21afd26a,SESCO,II.1.1,Chaco,AR-H,annual,2018,gas oil combustion consumption by freight transport,282.02496,TJ,CO2,74100.0,kg/TJ,20898049.536000002,kg -ea653e7f-a40f-3001-90bc-48634f82e59e,SESCO,II.1.1,Chaco,AR-H,annual,2018,gas oil combustion consumption by freight transport,282.02496,TJ,CH4,3.9,kg/TJ,1099.897344,kg -ea653e7f-a40f-3001-90bc-48634f82e59e,SESCO,II.1.1,Chaco,AR-H,annual,2018,gas oil combustion consumption by freight transport,282.02496,TJ,N2O,3.9,kg/TJ,1099.897344,kg -83bc7810-da88-3990-8b57-7a76527eaf4e,SESCO,II.1.1,Chubut,AR-U,annual,2018,gas oil combustion consumption by freight transport,230.8068,TJ,CO2,74100.0,kg/TJ,17102783.88,kg -470e7973-3891-3cd4-b139-492b0206a216,SESCO,II.1.1,Chubut,AR-U,annual,2018,gas oil combustion consumption by freight transport,230.8068,TJ,CH4,3.9,kg/TJ,900.14652,kg -470e7973-3891-3cd4-b139-492b0206a216,SESCO,II.1.1,Chubut,AR-U,annual,2018,gas oil combustion consumption by freight transport,230.8068,TJ,N2O,3.9,kg/TJ,900.14652,kg -6b63cf73-9b44-362e-98bf-5032b2cb5ff7,SESCO,II.1.1,Corrientes,AR-W,annual,2018,gas oil combustion consumption by freight transport,401.00424,TJ,CO2,74100.0,kg/TJ,29714414.184,kg -0409d1f5-e0dc-3799-a03c-276500430e1c,SESCO,II.1.1,Corrientes,AR-W,annual,2018,gas oil combustion consumption by freight transport,401.00424,TJ,CH4,3.9,kg/TJ,1563.916536,kg -0409d1f5-e0dc-3799-a03c-276500430e1c,SESCO,II.1.1,Corrientes,AR-W,annual,2018,gas oil combustion consumption by freight transport,401.00424,TJ,N2O,3.9,kg/TJ,1563.916536,kg -b3ecb592-8c70-349b-bace-c56b97df9e2c,SESCO,II.1.1,Córdoba,AR-X,annual,2018,gas oil combustion consumption by freight transport,2907.51552,TJ,CO2,74100.0,kg/TJ,215446900.032,kg -03a4c51e-e973-3195-bfd3-aef222c05c41,SESCO,II.1.1,Córdoba,AR-X,annual,2018,gas oil combustion consumption by freight transport,2907.51552,TJ,CH4,3.9,kg/TJ,11339.310528,kg -03a4c51e-e973-3195-bfd3-aef222c05c41,SESCO,II.1.1,Córdoba,AR-X,annual,2018,gas oil combustion consumption by freight transport,2907.51552,TJ,N2O,3.9,kg/TJ,11339.310528,kg -4ec309ba-3a85-375f-928a-487075abb59d,SESCO,II.1.1,Entre Rios,AR-E,annual,2018,gas oil combustion consumption by freight transport,657.5646,TJ,CO2,74100.0,kg/TJ,48725536.86,kg -5bea44f3-a4b6-3f3f-9f55-250f3daaf1d5,SESCO,II.1.1,Entre Rios,AR-E,annual,2018,gas oil combustion consumption by freight transport,657.5646,TJ,CH4,3.9,kg/TJ,2564.50194,kg -5bea44f3-a4b6-3f3f-9f55-250f3daaf1d5,SESCO,II.1.1,Entre Rios,AR-E,annual,2018,gas oil combustion consumption by freight transport,657.5646,TJ,N2O,3.9,kg/TJ,2564.50194,kg -d49c1863-7c9a-3ad7-a25b-3eca450958ef,SESCO,II.1.1,Formosa,AR-P,annual,2018,gas oil combustion consumption by freight transport,35.68656,TJ,CO2,74100.0,kg/TJ,2644374.096,kg -1a50390a-767a-3e32-b642-3c6d2e2c5baf,SESCO,II.1.1,Formosa,AR-P,annual,2018,gas oil combustion consumption by freight transport,35.68656,TJ,CH4,3.9,kg/TJ,139.177584,kg -1a50390a-767a-3e32-b642-3c6d2e2c5baf,SESCO,II.1.1,Formosa,AR-P,annual,2018,gas oil combustion consumption by freight transport,35.68656,TJ,N2O,3.9,kg/TJ,139.177584,kg -2a7ec581-1d67-37d3-a25a-573d4e7b6bd4,SESCO,II.1.1,Jujuy,AR-Y,annual,2018,gas oil combustion consumption by freight transport,185.44008,TJ,CO2,74100.0,kg/TJ,13741109.928,kg -29204e9f-6e46-354a-a570-1e544f036238,SESCO,II.1.1,Jujuy,AR-Y,annual,2018,gas oil combustion consumption by freight transport,185.44008,TJ,CH4,3.9,kg/TJ,723.216312,kg -29204e9f-6e46-354a-a570-1e544f036238,SESCO,II.1.1,Jujuy,AR-Y,annual,2018,gas oil combustion consumption by freight transport,185.44008,TJ,N2O,3.9,kg/TJ,723.216312,kg -59cb25b3-ba78-33f5-b918-6a6bb813474f,SESCO,II.1.1,La Pampa,AR-L,annual,2018,gas oil combustion consumption by freight transport,169.58339999999998,TJ,CO2,74100.0,kg/TJ,12566129.94,kg -3afc2437-6490-3786-89d1-ad6d186d7dd6,SESCO,II.1.1,La Pampa,AR-L,annual,2018,gas oil combustion consumption by freight transport,169.58339999999998,TJ,CH4,3.9,kg/TJ,661.3752599999999,kg -3afc2437-6490-3786-89d1-ad6d186d7dd6,SESCO,II.1.1,La Pampa,AR-L,annual,2018,gas oil combustion consumption by freight transport,169.58339999999998,TJ,N2O,3.9,kg/TJ,661.3752599999999,kg -8963be44-6d49-3bd5-94d8-9c0801a3a8dc,SESCO,II.1.1,La Rioja,AR-F,annual,2018,gas oil combustion consumption by freight transport,9.24672,TJ,CO2,74100.0,kg/TJ,685181.9519999999,kg -f67ea209-a3b6-3b9a-a5e6-539a2cb97218,SESCO,II.1.1,La Rioja,AR-F,annual,2018,gas oil combustion consumption by freight transport,9.24672,TJ,CH4,3.9,kg/TJ,36.062208,kg -f67ea209-a3b6-3b9a-a5e6-539a2cb97218,SESCO,II.1.1,La Rioja,AR-F,annual,2018,gas oil combustion consumption by freight transport,9.24672,TJ,N2O,3.9,kg/TJ,36.062208,kg -c1503b26-268b-3e2f-bf2c-c39da18f4775,SESCO,II.1.1,Mendoza,AR-M,annual,2018,gas oil combustion consumption by freight transport,1995.88284,TJ,CO2,74100.0,kg/TJ,147894918.444,kg -8da38541-1683-3653-a060-9c0548a5d683,SESCO,II.1.1,Mendoza,AR-M,annual,2018,gas oil combustion consumption by freight transport,1995.88284,TJ,CH4,3.9,kg/TJ,7783.943076,kg -8da38541-1683-3653-a060-9c0548a5d683,SESCO,II.1.1,Mendoza,AR-M,annual,2018,gas oil combustion consumption by freight transport,1995.88284,TJ,N2O,3.9,kg/TJ,7783.943076,kg -122a061e-67ff-3e64-aec0-1ee0a87dea3c,SESCO,II.1.1,Misiones,AR-N,annual,2018,gas oil combustion consumption by freight transport,1004.24436,TJ,CO2,74100.0,kg/TJ,74414507.076,kg -2f03c016-60ed-36a5-9806-de3f1c4c8de0,SESCO,II.1.1,Misiones,AR-N,annual,2018,gas oil combustion consumption by freight transport,1004.24436,TJ,CH4,3.9,kg/TJ,3916.553004,kg -2f03c016-60ed-36a5-9806-de3f1c4c8de0,SESCO,II.1.1,Misiones,AR-N,annual,2018,gas oil combustion consumption by freight transport,1004.24436,TJ,N2O,3.9,kg/TJ,3916.553004,kg -940f153c-d29c-3f71-8961-c198e1175047,SESCO,II.1.1,Neuquén,AR-Q,annual,2018,gas oil combustion consumption by freight transport,965.37924,TJ,CO2,74100.0,kg/TJ,71534601.684,kg -1bdb174f-ccc2-3549-bb1d-7dbc76e35a9e,SESCO,II.1.1,Neuquén,AR-Q,annual,2018,gas oil combustion consumption by freight transport,965.37924,TJ,CH4,3.9,kg/TJ,3764.9790359999997,kg -1bdb174f-ccc2-3549-bb1d-7dbc76e35a9e,SESCO,II.1.1,Neuquén,AR-Q,annual,2018,gas oil combustion consumption by freight transport,965.37924,TJ,N2O,3.9,kg/TJ,3764.9790359999997,kg -6f14fe47-ba2f-3071-a2bd-5a5feb4a6ea7,SESCO,II.1.1,Rio Negro,AR-R,annual,2018,gas oil combustion consumption by freight transport,416.68032,TJ,CO2,74100.0,kg/TJ,30876011.712,kg -b693f7a4-7cf1-3dac-9fd5-5cdedac88b45,SESCO,II.1.1,Rio Negro,AR-R,annual,2018,gas oil combustion consumption by freight transport,416.68032,TJ,CH4,3.9,kg/TJ,1625.053248,kg -b693f7a4-7cf1-3dac-9fd5-5cdedac88b45,SESCO,II.1.1,Rio Negro,AR-R,annual,2018,gas oil combustion consumption by freight transport,416.68032,TJ,N2O,3.9,kg/TJ,1625.053248,kg -16b34165-007d-3ba7-80df-b5daa4327c43,SESCO,II.1.1,Salta,AR-A,annual,2018,gas oil combustion consumption by freight transport,349.31651999999997,TJ,CO2,74100.0,kg/TJ,25884354.132,kg -363d378b-00d3-3e46-bb3a-f207845fdf35,SESCO,II.1.1,Salta,AR-A,annual,2018,gas oil combustion consumption by freight transport,349.31651999999997,TJ,CH4,3.9,kg/TJ,1362.334428,kg -363d378b-00d3-3e46-bb3a-f207845fdf35,SESCO,II.1.1,Salta,AR-A,annual,2018,gas oil combustion consumption by freight transport,349.31651999999997,TJ,N2O,3.9,kg/TJ,1362.334428,kg -88197d66-4709-399f-81d2-202040eb21f3,SESCO,II.1.1,San Juan,AR-J,annual,2018,gas oil combustion consumption by freight transport,161.92596,TJ,CO2,74100.0,kg/TJ,11998713.636,kg -ed1098a9-70ff-30a9-b7c8-baebbcf60592,SESCO,II.1.1,San Juan,AR-J,annual,2018,gas oil combustion consumption by freight transport,161.92596,TJ,CH4,3.9,kg/TJ,631.511244,kg -ed1098a9-70ff-30a9-b7c8-baebbcf60592,SESCO,II.1.1,San Juan,AR-J,annual,2018,gas oil combustion consumption by freight transport,161.92596,TJ,N2O,3.9,kg/TJ,631.511244,kg -df35e3d3-9945-3794-ac52-c384852b200d,SESCO,II.1.1,San Luis,AR-D,annual,2018,gas oil combustion consumption by freight transport,216.9006,TJ,CO2,74100.0,kg/TJ,16072334.459999999,kg -2d5fb4b8-8b83-39a2-b8ac-ce659c71ab58,SESCO,II.1.1,San Luis,AR-D,annual,2018,gas oil combustion consumption by freight transport,216.9006,TJ,CH4,3.9,kg/TJ,845.91234,kg -2d5fb4b8-8b83-39a2-b8ac-ce659c71ab58,SESCO,II.1.1,San Luis,AR-D,annual,2018,gas oil combustion consumption by freight transport,216.9006,TJ,N2O,3.9,kg/TJ,845.91234,kg -163b9ab9-4524-3001-83ce-55317c4bb6b1,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2018,gas oil combustion consumption by freight transport,182.83944,TJ,CO2,74100.0,kg/TJ,13548402.503999999,kg -ed7c8c73-bfd5-355c-aabc-926786f41e6a,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2018,gas oil combustion consumption by freight transport,182.83944,TJ,CH4,3.9,kg/TJ,713.073816,kg -ed7c8c73-bfd5-355c-aabc-926786f41e6a,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2018,gas oil combustion consumption by freight transport,182.83944,TJ,N2O,3.9,kg/TJ,713.073816,kg -2273cb64-17b0-3712-a497-27f272e658ab,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,gas oil combustion consumption by freight transport,2662.044,TJ,CO2,74100.0,kg/TJ,197257460.39999998,kg -acea3932-4197-39d5-b2d4-82bbaec599bd,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,gas oil combustion consumption by freight transport,2662.044,TJ,CH4,3.9,kg/TJ,10381.971599999999,kg -acea3932-4197-39d5-b2d4-82bbaec599bd,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,gas oil combustion consumption by freight transport,2662.044,TJ,N2O,3.9,kg/TJ,10381.971599999999,kg -6dba6743-e9e7-3eb9-b277-bad160f63672,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2018,gas oil combustion consumption by freight transport,263.24255999999997,TJ,CO2,74100.0,kg/TJ,19506273.696,kg -c10ab71d-75e9-341c-b7cc-1c8678306e58,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2018,gas oil combustion consumption by freight transport,263.24255999999997,TJ,CH4,3.9,kg/TJ,1026.6459839999998,kg -c10ab71d-75e9-341c-b7cc-1c8678306e58,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2018,gas oil combustion consumption by freight transport,263.24255999999997,TJ,N2O,3.9,kg/TJ,1026.6459839999998,kg -891265cd-3e97-3888-b9a0-cb057e42213c,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2018,gas oil combustion consumption by freight transport,354.08436,TJ,CO2,74100.0,kg/TJ,26237651.076,kg -227a40ab-9bd7-33b3-a4e6-df6b77a7a8c3,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2018,gas oil combustion consumption by freight transport,354.08436,TJ,CH4,3.9,kg/TJ,1380.929004,kg -227a40ab-9bd7-33b3-a4e6-df6b77a7a8c3,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2018,gas oil combustion consumption by freight transport,354.08436,TJ,N2O,3.9,kg/TJ,1380.929004,kg -7b868224-00c9-31b0-87c1-6062415b9377,SESCO,II.1.1,Tucuman,AR-T,annual,2018,gas oil combustion consumption by freight transport,672.77112,TJ,CO2,74100.0,kg/TJ,49852339.992,kg -77d44174-cdc2-39f8-acdb-0f365ea45f91,SESCO,II.1.1,Tucuman,AR-T,annual,2018,gas oil combustion consumption by freight transport,672.77112,TJ,CH4,3.9,kg/TJ,2623.8073679999998,kg -77d44174-cdc2-39f8-acdb-0f365ea45f91,SESCO,II.1.1,Tucuman,AR-T,annual,2018,gas oil combustion consumption by freight transport,672.77112,TJ,N2O,3.9,kg/TJ,2623.8073679999998,kg -fb898b42-9c5b-3371-91f3-dd370656b855,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,gas oil combustion consumption by freight transport,1980.71244,TJ,CO2,74100.0,kg/TJ,146770791.804,kg -9bd49b0d-d7a0-3aa1-a53b-db9c653c9ded,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,gas oil combustion consumption by freight transport,1980.71244,TJ,CH4,3.9,kg/TJ,7724.778516,kg -9bd49b0d-d7a0-3aa1-a53b-db9c653c9ded,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,gas oil combustion consumption by freight transport,1980.71244,TJ,N2O,3.9,kg/TJ,7724.778516,kg -0a3faf6c-f70b-30eb-9fcf-bceca858d6ab,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,gas oil combustion consumption by freight transport,2029.98012,TJ,CO2,74100.0,kg/TJ,150421526.892,kg -ef8dba0e-4f86-3dd3-98e1-837dd72025a4,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,gas oil combustion consumption by freight transport,2029.98012,TJ,CH4,3.9,kg/TJ,7916.922468,kg -ef8dba0e-4f86-3dd3-98e1-837dd72025a4,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,gas oil combustion consumption by freight transport,2029.98012,TJ,N2O,3.9,kg/TJ,7916.922468,kg -4a3b49f4-0faf-39b7-957b-e465fb35403e,SESCO,II.1.1,Catamarca,AR-K,annual,2018,gas oil combustion consumption by freight transport,7.98252,TJ,CO2,74100.0,kg/TJ,591504.732,kg -6c88a9b4-b66a-3afa-83cf-8a821eb3df6c,SESCO,II.1.1,Catamarca,AR-K,annual,2018,gas oil combustion consumption by freight transport,7.98252,TJ,CH4,3.9,kg/TJ,31.131828,kg -6c88a9b4-b66a-3afa-83cf-8a821eb3df6c,SESCO,II.1.1,Catamarca,AR-K,annual,2018,gas oil combustion consumption by freight transport,7.98252,TJ,N2O,3.9,kg/TJ,31.131828,kg -2e56a203-fc02-3f27-b4b5-e4d60b95d99e,SESCO,II.1.1,Chaco,AR-H,annual,2018,gas oil combustion consumption by freight transport,98.89656,TJ,CO2,74100.0,kg/TJ,7328235.096,kg -dc0fe1ff-4566-3ba7-86f8-8e7a7351ae1c,SESCO,II.1.1,Chaco,AR-H,annual,2018,gas oil combustion consumption by freight transport,98.89656,TJ,CH4,3.9,kg/TJ,385.696584,kg -dc0fe1ff-4566-3ba7-86f8-8e7a7351ae1c,SESCO,II.1.1,Chaco,AR-H,annual,2018,gas oil combustion consumption by freight transport,98.89656,TJ,N2O,3.9,kg/TJ,385.696584,kg -14b11f45-7d02-37e2-85a6-951bcb31c784,SESCO,II.1.1,Chubut,AR-U,annual,2018,gas oil combustion consumption by freight transport,221.9574,TJ,CO2,74100.0,kg/TJ,16447043.34,kg -2ef0b127-5a67-3ac8-b7c8-570aba7931cb,SESCO,II.1.1,Chubut,AR-U,annual,2018,gas oil combustion consumption by freight transport,221.9574,TJ,CH4,3.9,kg/TJ,865.63386,kg -2ef0b127-5a67-3ac8-b7c8-570aba7931cb,SESCO,II.1.1,Chubut,AR-U,annual,2018,gas oil combustion consumption by freight transport,221.9574,TJ,N2O,3.9,kg/TJ,865.63386,kg -fc2edacd-49a6-34c0-918c-83cc2a633e7b,SESCO,II.1.1,Corrientes,AR-W,annual,2018,gas oil combustion consumption by freight transport,92.86452,TJ,CO2,74100.0,kg/TJ,6881260.932,kg -76539b4d-c791-35b7-9039-f1df37a4454f,SESCO,II.1.1,Corrientes,AR-W,annual,2018,gas oil combustion consumption by freight transport,92.86452,TJ,CH4,3.9,kg/TJ,362.171628,kg -76539b4d-c791-35b7-9039-f1df37a4454f,SESCO,II.1.1,Corrientes,AR-W,annual,2018,gas oil combustion consumption by freight transport,92.86452,TJ,N2O,3.9,kg/TJ,362.171628,kg -7edf2864-2ab4-32a6-bd52-4d88912e457a,SESCO,II.1.1,Córdoba,AR-X,annual,2018,gas oil combustion consumption by freight transport,336.53004,TJ,CO2,74100.0,kg/TJ,24936875.963999998,kg -aadec96d-5014-3aa7-a997-1cf02e0a660e,SESCO,II.1.1,Córdoba,AR-X,annual,2018,gas oil combustion consumption by freight transport,336.53004,TJ,CH4,3.9,kg/TJ,1312.467156,kg -aadec96d-5014-3aa7-a997-1cf02e0a660e,SESCO,II.1.1,Córdoba,AR-X,annual,2018,gas oil combustion consumption by freight transport,336.53004,TJ,N2O,3.9,kg/TJ,1312.467156,kg -94728213-1d59-375b-8080-3dffdb9ec09b,SESCO,II.1.1,Entre Rios,AR-E,annual,2018,gas oil combustion consumption by freight transport,154.66584,TJ,CO2,74100.0,kg/TJ,11460738.744,kg -f9fc3c60-800f-361c-b948-d97b060a8338,SESCO,II.1.1,Entre Rios,AR-E,annual,2018,gas oil combustion consumption by freight transport,154.66584,TJ,CH4,3.9,kg/TJ,603.196776,kg -f9fc3c60-800f-361c-b948-d97b060a8338,SESCO,II.1.1,Entre Rios,AR-E,annual,2018,gas oil combustion consumption by freight transport,154.66584,TJ,N2O,3.9,kg/TJ,603.196776,kg -cd7a7359-8bee-325b-88f3-448cf8fba552,SESCO,II.1.1,Formosa,AR-P,annual,2018,gas oil combustion consumption by freight transport,8.41596,TJ,CO2,74100.0,kg/TJ,623622.636,kg -33ad741f-eb13-31fa-ab45-5c2dce7b4aa1,SESCO,II.1.1,Formosa,AR-P,annual,2018,gas oil combustion consumption by freight transport,8.41596,TJ,CH4,3.9,kg/TJ,32.822244,kg -33ad741f-eb13-31fa-ab45-5c2dce7b4aa1,SESCO,II.1.1,Formosa,AR-P,annual,2018,gas oil combustion consumption by freight transport,8.41596,TJ,N2O,3.9,kg/TJ,32.822244,kg -a1f3e559-9f3b-38f7-8350-3ed0ba81d8d7,SESCO,II.1.1,Jujuy,AR-Y,annual,2018,gas oil combustion consumption by freight transport,17.662679999999998,TJ,CO2,74100.0,kg/TJ,1308804.5879999998,kg -77f695b0-4297-3962-80f0-c8bd469f9228,SESCO,II.1.1,Jujuy,AR-Y,annual,2018,gas oil combustion consumption by freight transport,17.662679999999998,TJ,CH4,3.9,kg/TJ,68.884452,kg -77f695b0-4297-3962-80f0-c8bd469f9228,SESCO,II.1.1,Jujuy,AR-Y,annual,2018,gas oil combustion consumption by freight transport,17.662679999999998,TJ,N2O,3.9,kg/TJ,68.884452,kg -bf49ff3e-ebc7-3631-8088-169e4421ae15,SESCO,II.1.1,La Pampa,AR-L,annual,2018,gas oil combustion consumption by freight transport,52.87968,TJ,CO2,74100.0,kg/TJ,3918384.288,kg -f9766f3b-de5c-31fe-9ef9-3a37cdfe4725,SESCO,II.1.1,La Pampa,AR-L,annual,2018,gas oil combustion consumption by freight transport,52.87968,TJ,CH4,3.9,kg/TJ,206.230752,kg -f9766f3b-de5c-31fe-9ef9-3a37cdfe4725,SESCO,II.1.1,La Pampa,AR-L,annual,2018,gas oil combustion consumption by freight transport,52.87968,TJ,N2O,3.9,kg/TJ,206.230752,kg -8ea3db78-e602-3503-8736-f5a9dcaeaba3,SESCO,II.1.1,La Rioja,AR-F,annual,2018,gas oil combustion consumption by freight transport,8.59656,TJ,CO2,74100.0,kg/TJ,637005.096,kg -93d11a20-0da4-309d-aa46-00c7ac7cb52e,SESCO,II.1.1,La Rioja,AR-F,annual,2018,gas oil combustion consumption by freight transport,8.59656,TJ,CH4,3.9,kg/TJ,33.526584,kg -93d11a20-0da4-309d-aa46-00c7ac7cb52e,SESCO,II.1.1,La Rioja,AR-F,annual,2018,gas oil combustion consumption by freight transport,8.59656,TJ,N2O,3.9,kg/TJ,33.526584,kg -e6e8cb86-38f5-396c-8c74-06d46a38c613,SESCO,II.1.1,Mendoza,AR-M,annual,2018,gas oil combustion consumption by freight transport,372.90288,TJ,CO2,74100.0,kg/TJ,27632103.408,kg -9280f742-f31d-31d3-bcec-183df993f035,SESCO,II.1.1,Mendoza,AR-M,annual,2018,gas oil combustion consumption by freight transport,372.90288,TJ,CH4,3.9,kg/TJ,1454.321232,kg -9280f742-f31d-31d3-bcec-183df993f035,SESCO,II.1.1,Mendoza,AR-M,annual,2018,gas oil combustion consumption by freight transport,372.90288,TJ,N2O,3.9,kg/TJ,1454.321232,kg -6fa33938-ee8b-37aa-ba5a-8dc815e2ede1,SESCO,II.1.1,Misiones,AR-N,annual,2018,gas oil combustion consumption by freight transport,130.79052,TJ,CO2,74100.0,kg/TJ,9691577.532,kg -e453b4bf-e474-318c-9200-de7af6753664,SESCO,II.1.1,Misiones,AR-N,annual,2018,gas oil combustion consumption by freight transport,130.79052,TJ,CH4,3.9,kg/TJ,510.08302799999996,kg -e453b4bf-e474-318c-9200-de7af6753664,SESCO,II.1.1,Misiones,AR-N,annual,2018,gas oil combustion consumption by freight transport,130.79052,TJ,N2O,3.9,kg/TJ,510.08302799999996,kg -2bf55910-3173-3911-ae82-7b44e111f91e,SESCO,II.1.1,Neuquén,AR-Q,annual,2018,gas oil combustion consumption by freight transport,724.7478,TJ,CO2,74100.0,kg/TJ,53703811.98,kg -632a189c-4a49-3645-97cf-766b5f93530b,SESCO,II.1.1,Neuquén,AR-Q,annual,2018,gas oil combustion consumption by freight transport,724.7478,TJ,CH4,3.9,kg/TJ,2826.51642,kg -632a189c-4a49-3645-97cf-766b5f93530b,SESCO,II.1.1,Neuquén,AR-Q,annual,2018,gas oil combustion consumption by freight transport,724.7478,TJ,N2O,3.9,kg/TJ,2826.51642,kg -f7923f4f-523a-3a85-b769-61ad927efa19,SESCO,II.1.1,Rio Negro,AR-R,annual,2018,gas oil combustion consumption by freight transport,174.60408,TJ,CO2,74100.0,kg/TJ,12938162.328000002,kg -bd322a4b-d348-313e-80b3-a98ae65b52af,SESCO,II.1.1,Rio Negro,AR-R,annual,2018,gas oil combustion consumption by freight transport,174.60408,TJ,CH4,3.9,kg/TJ,680.955912,kg -bd322a4b-d348-313e-80b3-a98ae65b52af,SESCO,II.1.1,Rio Negro,AR-R,annual,2018,gas oil combustion consumption by freight transport,174.60408,TJ,N2O,3.9,kg/TJ,680.955912,kg -15815f81-52d3-3b3c-8e5a-92c6c5be9f08,SESCO,II.1.1,Salta,AR-A,annual,2018,gas oil combustion consumption by freight transport,123.02472,TJ,CO2,74100.0,kg/TJ,9116131.752,kg -dc4c65fe-8cf7-30b2-9ed4-fa7816500639,SESCO,II.1.1,Salta,AR-A,annual,2018,gas oil combustion consumption by freight transport,123.02472,TJ,CH4,3.9,kg/TJ,479.796408,kg -dc4c65fe-8cf7-30b2-9ed4-fa7816500639,SESCO,II.1.1,Salta,AR-A,annual,2018,gas oil combustion consumption by freight transport,123.02472,TJ,N2O,3.9,kg/TJ,479.796408,kg -f644c5fe-b207-3081-bcb5-8f6390720ec0,SESCO,II.1.1,San Juan,AR-J,annual,2018,gas oil combustion consumption by freight transport,20.37168,TJ,CO2,74100.0,kg/TJ,1509541.4880000001,kg -cc005cfd-187f-37f9-a48d-9dc0f7e4e106,SESCO,II.1.1,San Juan,AR-J,annual,2018,gas oil combustion consumption by freight transport,20.37168,TJ,CH4,3.9,kg/TJ,79.449552,kg -cc005cfd-187f-37f9-a48d-9dc0f7e4e106,SESCO,II.1.1,San Juan,AR-J,annual,2018,gas oil combustion consumption by freight transport,20.37168,TJ,N2O,3.9,kg/TJ,79.449552,kg -c40ca4f7-9889-3d9c-9306-b01b746f8dd6,SESCO,II.1.1,San Luis,AR-D,annual,2018,gas oil combustion consumption by freight transport,45.83628,TJ,CO2,74100.0,kg/TJ,3396468.348,kg -28684758-4389-39d7-aa8c-ae37a843b94a,SESCO,II.1.1,San Luis,AR-D,annual,2018,gas oil combustion consumption by freight transport,45.83628,TJ,CH4,3.9,kg/TJ,178.761492,kg -28684758-4389-39d7-aa8c-ae37a843b94a,SESCO,II.1.1,San Luis,AR-D,annual,2018,gas oil combustion consumption by freight transport,45.83628,TJ,N2O,3.9,kg/TJ,178.761492,kg -2afdfea8-f7cd-32d7-acdc-6d0155ff3f73,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2018,gas oil combustion consumption by freight transport,78.16368,TJ,CO2,74100.0,kg/TJ,5791928.688,kg -e50e38b2-313e-348a-a21c-9999d5a4ecfb,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2018,gas oil combustion consumption by freight transport,78.16368,TJ,CH4,3.9,kg/TJ,304.838352,kg -e50e38b2-313e-348a-a21c-9999d5a4ecfb,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2018,gas oil combustion consumption by freight transport,78.16368,TJ,N2O,3.9,kg/TJ,304.838352,kg -1d3bc3db-bbd3-3883-824b-8cfdc1d7722e,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,gas oil combustion consumption by freight transport,512.43444,TJ,CO2,74100.0,kg/TJ,37971392.004,kg -e8cc632a-4cb4-3822-a936-9a2e0792409d,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,gas oil combustion consumption by freight transport,512.43444,TJ,CH4,3.9,kg/TJ,1998.494316,kg -e8cc632a-4cb4-3822-a936-9a2e0792409d,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,gas oil combustion consumption by freight transport,512.43444,TJ,N2O,3.9,kg/TJ,1998.494316,kg -2fe518dc-097d-3a36-86a2-2f24b31ec6dc,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2018,gas oil combustion consumption by freight transport,33.84444,TJ,CO2,74100.0,kg/TJ,2507873.0039999997,kg -cfc13635-9f76-3580-8cbf-4071b1a3f9fe,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2018,gas oil combustion consumption by freight transport,33.84444,TJ,CH4,3.9,kg/TJ,131.993316,kg -cfc13635-9f76-3580-8cbf-4071b1a3f9fe,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2018,gas oil combustion consumption by freight transport,33.84444,TJ,N2O,3.9,kg/TJ,131.993316,kg -7d3db586-6927-3789-a590-1a2c84ce7885,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2018,gas oil combustion consumption by freight transport,72.56508,TJ,CO2,74100.0,kg/TJ,5377072.427999999,kg -fd14ae38-3308-3cc2-a5f1-c8ebe9f68efc,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2018,gas oil combustion consumption by freight transport,72.56508,TJ,CH4,3.9,kg/TJ,283.003812,kg -fd14ae38-3308-3cc2-a5f1-c8ebe9f68efc,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2018,gas oil combustion consumption by freight transport,72.56508,TJ,N2O,3.9,kg/TJ,283.003812,kg -b631b6ff-00e0-3272-a08e-36da833de8cc,SESCO,II.1.1,Tucuman,AR-T,annual,2018,gas oil combustion consumption by freight transport,105.32592,TJ,CO2,74100.0,kg/TJ,7804650.671999999,kg -3023a29c-e9b8-32e0-a427-f8ec4c38c472,SESCO,II.1.1,Tucuman,AR-T,annual,2018,gas oil combustion consumption by freight transport,105.32592,TJ,CH4,3.9,kg/TJ,410.77108799999996,kg -3023a29c-e9b8-32e0-a427-f8ec4c38c472,SESCO,II.1.1,Tucuman,AR-T,annual,2018,gas oil combustion consumption by freight transport,105.32592,TJ,N2O,3.9,kg/TJ,410.77108799999996,kg -c3ad58a2-aec0-3777-80ca-151aede3036e,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,gas oil combustion consumption by public passenger transport,8894.44164,TJ,CO2,74100.0,kg/TJ,659078125.5239999,kg -9d530830-c6eb-3620-aa4c-bcbcdc1c9472,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,gas oil combustion consumption by public passenger transport,8894.44164,TJ,CH4,3.9,kg/TJ,34688.322395999996,kg -9d530830-c6eb-3620-aa4c-bcbcdc1c9472,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,gas oil combustion consumption by public passenger transport,8894.44164,TJ,N2O,3.9,kg/TJ,34688.322395999996,kg -07488af6-4cfa-3ea6-ab26-c55184d7e73a,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,gas oil combustion consumption by public passenger transport,1832.33148,TJ,CO2,74100.0,kg/TJ,135775762.668,kg -a1616035-cecd-3313-8d49-ac17d0ae202b,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,gas oil combustion consumption by public passenger transport,1832.33148,TJ,CH4,3.9,kg/TJ,7146.092772,kg -a1616035-cecd-3313-8d49-ac17d0ae202b,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,gas oil combustion consumption by public passenger transport,1832.33148,TJ,N2O,3.9,kg/TJ,7146.092772,kg -de9d9b17-cc47-3cb4-9b99-0c1a9cb0ab2e,SESCO,II.1.1,Catamarca,AR-K,annual,2018,gas oil combustion consumption by public passenger transport,188.61864,TJ,CO2,74100.0,kg/TJ,13976641.224,kg -2cf1c0c0-2b58-3028-b331-1d3b67bfb18a,SESCO,II.1.1,Catamarca,AR-K,annual,2018,gas oil combustion consumption by public passenger transport,188.61864,TJ,CH4,3.9,kg/TJ,735.612696,kg -2cf1c0c0-2b58-3028-b331-1d3b67bfb18a,SESCO,II.1.1,Catamarca,AR-K,annual,2018,gas oil combustion consumption by public passenger transport,188.61864,TJ,N2O,3.9,kg/TJ,735.612696,kg -6176932a-5259-3e2c-98b5-63433c5dec93,SESCO,II.1.1,Chaco,AR-H,annual,2018,gas oil combustion consumption by public passenger transport,441.63924,TJ,CO2,74100.0,kg/TJ,32725467.683999997,kg -3fd6059f-0888-3946-989d-d9568b1338b7,SESCO,II.1.1,Chaco,AR-H,annual,2018,gas oil combustion consumption by public passenger transport,441.63924,TJ,CH4,3.9,kg/TJ,1722.393036,kg -3fd6059f-0888-3946-989d-d9568b1338b7,SESCO,II.1.1,Chaco,AR-H,annual,2018,gas oil combustion consumption by public passenger transport,441.63924,TJ,N2O,3.9,kg/TJ,1722.393036,kg -5741d001-4bb8-3b09-bd3d-232cbecc03e4,SESCO,II.1.1,Chubut,AR-U,annual,2018,gas oil combustion consumption by public passenger transport,105.79548,TJ,CO2,74100.0,kg/TJ,7839445.068,kg -25edec06-a68b-385e-8a9f-370acb254dcf,SESCO,II.1.1,Chubut,AR-U,annual,2018,gas oil combustion consumption by public passenger transport,105.79548,TJ,CH4,3.9,kg/TJ,412.602372,kg -25edec06-a68b-385e-8a9f-370acb254dcf,SESCO,II.1.1,Chubut,AR-U,annual,2018,gas oil combustion consumption by public passenger transport,105.79548,TJ,N2O,3.9,kg/TJ,412.602372,kg -35e77b2a-6ab9-3411-af93-ea7079b9a395,SESCO,II.1.1,Corrientes,AR-W,annual,2018,gas oil combustion consumption by public passenger transport,487.2588,TJ,CO2,74100.0,kg/TJ,36105877.08,kg -22879a0a-ec93-360e-ad2b-050a4c4a1321,SESCO,II.1.1,Corrientes,AR-W,annual,2018,gas oil combustion consumption by public passenger transport,487.2588,TJ,CH4,3.9,kg/TJ,1900.30932,kg -22879a0a-ec93-360e-ad2b-050a4c4a1321,SESCO,II.1.1,Corrientes,AR-W,annual,2018,gas oil combustion consumption by public passenger transport,487.2588,TJ,N2O,3.9,kg/TJ,1900.30932,kg -8366f5d3-2dfe-3234-806b-50441504eb5a,SESCO,II.1.1,Córdoba,AR-X,annual,2018,gas oil combustion consumption by public passenger transport,1949.46864,TJ,CO2,74100.0,kg/TJ,144455626.224,kg -5bab2d8b-b6b0-36a9-befc-978f140acefd,SESCO,II.1.1,Córdoba,AR-X,annual,2018,gas oil combustion consumption by public passenger transport,1949.46864,TJ,CH4,3.9,kg/TJ,7602.927696,kg -5bab2d8b-b6b0-36a9-befc-978f140acefd,SESCO,II.1.1,Córdoba,AR-X,annual,2018,gas oil combustion consumption by public passenger transport,1949.46864,TJ,N2O,3.9,kg/TJ,7602.927696,kg -dacb0415-01ec-3feb-9589-08efefdb0c48,SESCO,II.1.1,Entre Rios,AR-E,annual,2018,gas oil combustion consumption by public passenger transport,527.38812,TJ,CO2,74100.0,kg/TJ,39079459.691999994,kg -738be32b-67e4-3de2-ae74-df96615b0ffd,SESCO,II.1.1,Entre Rios,AR-E,annual,2018,gas oil combustion consumption by public passenger transport,527.38812,TJ,CH4,3.9,kg/TJ,2056.813668,kg -738be32b-67e4-3de2-ae74-df96615b0ffd,SESCO,II.1.1,Entre Rios,AR-E,annual,2018,gas oil combustion consumption by public passenger transport,527.38812,TJ,N2O,3.9,kg/TJ,2056.813668,kg -62506b91-5830-342b-8fa3-b9b80e91402c,SESCO,II.1.1,Formosa,AR-P,annual,2018,gas oil combustion consumption by public passenger transport,62.8488,TJ,CO2,74100.0,kg/TJ,4657096.08,kg -c37ab5aa-c310-3bcd-ab3a-b3edc9754b60,SESCO,II.1.1,Formosa,AR-P,annual,2018,gas oil combustion consumption by public passenger transport,62.8488,TJ,CH4,3.9,kg/TJ,245.11031999999997,kg -c37ab5aa-c310-3bcd-ab3a-b3edc9754b60,SESCO,II.1.1,Formosa,AR-P,annual,2018,gas oil combustion consumption by public passenger transport,62.8488,TJ,N2O,3.9,kg/TJ,245.11031999999997,kg -ab616897-7693-3563-a81b-dee12e3650ba,SESCO,II.1.1,Jujuy,AR-Y,annual,2018,gas oil combustion consumption by public passenger transport,670.64004,TJ,CO2,74100.0,kg/TJ,49694426.964,kg -63b09946-8140-365f-ae64-03a64428ee2c,SESCO,II.1.1,Jujuy,AR-Y,annual,2018,gas oil combustion consumption by public passenger transport,670.64004,TJ,CH4,3.9,kg/TJ,2615.496156,kg -63b09946-8140-365f-ae64-03a64428ee2c,SESCO,II.1.1,Jujuy,AR-Y,annual,2018,gas oil combustion consumption by public passenger transport,670.64004,TJ,N2O,3.9,kg/TJ,2615.496156,kg -6217c7b2-639e-39b4-a1f1-d9a095a1c03b,SESCO,II.1.1,La Pampa,AR-L,annual,2018,gas oil combustion consumption by public passenger transport,42.87444,TJ,CO2,74100.0,kg/TJ,3176996.004,kg -0a396655-2ebe-3076-b5ab-1615a4c46835,SESCO,II.1.1,La Pampa,AR-L,annual,2018,gas oil combustion consumption by public passenger transport,42.87444,TJ,CH4,3.9,kg/TJ,167.210316,kg -0a396655-2ebe-3076-b5ab-1615a4c46835,SESCO,II.1.1,La Pampa,AR-L,annual,2018,gas oil combustion consumption by public passenger transport,42.87444,TJ,N2O,3.9,kg/TJ,167.210316,kg -5e14f9a2-5420-3b67-839d-1fd783b98ad1,SESCO,II.1.1,La Rioja,AR-F,annual,2018,gas oil combustion consumption by public passenger transport,95.03171999999999,TJ,CO2,74100.0,kg/TJ,7041850.452,kg -b6ec88d8-22fc-30ab-a57d-53f4fd4513bd,SESCO,II.1.1,La Rioja,AR-F,annual,2018,gas oil combustion consumption by public passenger transport,95.03171999999999,TJ,CH4,3.9,kg/TJ,370.62370799999997,kg -b6ec88d8-22fc-30ab-a57d-53f4fd4513bd,SESCO,II.1.1,La Rioja,AR-F,annual,2018,gas oil combustion consumption by public passenger transport,95.03171999999999,TJ,N2O,3.9,kg/TJ,370.62370799999997,kg -ad335ccd-8b62-3c3a-ae86-d6499497ee5e,SESCO,II.1.1,Mendoza,AR-M,annual,2018,gas oil combustion consumption by public passenger transport,1480.5588,TJ,CO2,74100.0,kg/TJ,109709407.08,kg -5df2251f-b8c5-322d-a179-5ecb4accf225,SESCO,II.1.1,Mendoza,AR-M,annual,2018,gas oil combustion consumption by public passenger transport,1480.5588,TJ,CH4,3.9,kg/TJ,5774.17932,kg -5df2251f-b8c5-322d-a179-5ecb4accf225,SESCO,II.1.1,Mendoza,AR-M,annual,2018,gas oil combustion consumption by public passenger transport,1480.5588,TJ,N2O,3.9,kg/TJ,5774.17932,kg -5c112bb8-5f95-351b-be3d-4362912ce9a9,SESCO,II.1.1,Misiones,AR-N,annual,2018,gas oil combustion consumption by public passenger transport,928.284,TJ,CO2,74100.0,kg/TJ,68785844.4,kg -4b9cc244-b023-3e09-8db1-e23e66a0a94c,SESCO,II.1.1,Misiones,AR-N,annual,2018,gas oil combustion consumption by public passenger transport,928.284,TJ,CH4,3.9,kg/TJ,3620.3076,kg -4b9cc244-b023-3e09-8db1-e23e66a0a94c,SESCO,II.1.1,Misiones,AR-N,annual,2018,gas oil combustion consumption by public passenger transport,928.284,TJ,N2O,3.9,kg/TJ,3620.3076,kg -66579251-e508-3c73-bbec-2f30083a252b,SESCO,II.1.1,Neuquén,AR-Q,annual,2018,gas oil combustion consumption by public passenger transport,213.108,TJ,CO2,74100.0,kg/TJ,15791302.8,kg -6c7b7767-5830-3d8c-955f-fc715d22bca0,SESCO,II.1.1,Neuquén,AR-Q,annual,2018,gas oil combustion consumption by public passenger transport,213.108,TJ,CH4,3.9,kg/TJ,831.1212,kg -6c7b7767-5830-3d8c-955f-fc715d22bca0,SESCO,II.1.1,Neuquén,AR-Q,annual,2018,gas oil combustion consumption by public passenger transport,213.108,TJ,N2O,3.9,kg/TJ,831.1212,kg -d729d2da-32e0-3b80-9393-00ee3dedb1ae,SESCO,II.1.1,Rio Negro,AR-R,annual,2018,gas oil combustion consumption by public passenger transport,203.64455999999998,TJ,CO2,74100.0,kg/TJ,15090061.896,kg -167aeada-d8d6-3d40-aadb-d7fff6b68c68,SESCO,II.1.1,Rio Negro,AR-R,annual,2018,gas oil combustion consumption by public passenger transport,203.64455999999998,TJ,CH4,3.9,kg/TJ,794.2137839999999,kg -167aeada-d8d6-3d40-aadb-d7fff6b68c68,SESCO,II.1.1,Rio Negro,AR-R,annual,2018,gas oil combustion consumption by public passenger transport,203.64455999999998,TJ,N2O,3.9,kg/TJ,794.2137839999999,kg -fb747de5-4b90-3acf-accd-cae4ff0ae6af,SESCO,II.1.1,Salta,AR-A,annual,2018,gas oil combustion consumption by public passenger transport,630.72744,TJ,CO2,74100.0,kg/TJ,46736903.304,kg -e9e9b448-d0e4-32f3-b120-2cf7057e455e,SESCO,II.1.1,Salta,AR-A,annual,2018,gas oil combustion consumption by public passenger transport,630.72744,TJ,CH4,3.9,kg/TJ,2459.837016,kg -e9e9b448-d0e4-32f3-b120-2cf7057e455e,SESCO,II.1.1,Salta,AR-A,annual,2018,gas oil combustion consumption by public passenger transport,630.72744,TJ,N2O,3.9,kg/TJ,2459.837016,kg -68024930-a65d-3681-a4c4-d2740fa816b7,SESCO,II.1.1,San Juan,AR-J,annual,2018,gas oil combustion consumption by public passenger transport,389.15688,TJ,CO2,74100.0,kg/TJ,28836524.808,kg -2855d012-c9e5-3c7a-ac84-4bbd71d499f3,SESCO,II.1.1,San Juan,AR-J,annual,2018,gas oil combustion consumption by public passenger transport,389.15688,TJ,CH4,3.9,kg/TJ,1517.711832,kg -2855d012-c9e5-3c7a-ac84-4bbd71d499f3,SESCO,II.1.1,San Juan,AR-J,annual,2018,gas oil combustion consumption by public passenger transport,389.15688,TJ,N2O,3.9,kg/TJ,1517.711832,kg -9c42a3c9-1d4f-3008-af3d-037f1718914e,SESCO,II.1.1,San Luis,AR-D,annual,2018,gas oil combustion consumption by public passenger transport,122.15784,TJ,CO2,74100.0,kg/TJ,9051895.944,kg -9bfd58a0-6461-3673-a662-094d3837f218,SESCO,II.1.1,San Luis,AR-D,annual,2018,gas oil combustion consumption by public passenger transport,122.15784,TJ,CH4,3.9,kg/TJ,476.415576,kg -9bfd58a0-6461-3673-a662-094d3837f218,SESCO,II.1.1,San Luis,AR-D,annual,2018,gas oil combustion consumption by public passenger transport,122.15784,TJ,N2O,3.9,kg/TJ,476.415576,kg -6393c6d7-82aa-33e5-86bd-b98896012644,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2018,gas oil combustion consumption by public passenger transport,21.419159999999998,TJ,CO2,74100.0,kg/TJ,1587159.7559999998,kg -ef5da085-2195-3392-97dd-4519590b325a,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2018,gas oil combustion consumption by public passenger transport,21.419159999999998,TJ,CH4,3.9,kg/TJ,83.534724,kg -ef5da085-2195-3392-97dd-4519590b325a,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2018,gas oil combustion consumption by public passenger transport,21.419159999999998,TJ,N2O,3.9,kg/TJ,83.534724,kg -1540b629-babc-3d53-b416-7d1ced1ed918,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,gas oil combustion consumption by public passenger transport,1269.9792,TJ,CO2,74100.0,kg/TJ,94105458.72,kg -27b93261-cddf-39ed-a6af-02fef7beadb8,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,gas oil combustion consumption by public passenger transport,1269.9792,TJ,CH4,3.9,kg/TJ,4952.91888,kg -27b93261-cddf-39ed-a6af-02fef7beadb8,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,gas oil combustion consumption by public passenger transport,1269.9792,TJ,N2O,3.9,kg/TJ,4952.91888,kg -8b9f22c4-7090-3db7-8582-f56b72ee93d6,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2018,gas oil combustion consumption by public passenger transport,279.35208,TJ,CO2,74100.0,kg/TJ,20699989.128,kg -f6bcee26-f64e-3dad-a38b-3cb16676a334,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2018,gas oil combustion consumption by public passenger transport,279.35208,TJ,CH4,3.9,kg/TJ,1089.473112,kg -f6bcee26-f64e-3dad-a38b-3cb16676a334,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2018,gas oil combustion consumption by public passenger transport,279.35208,TJ,N2O,3.9,kg/TJ,1089.473112,kg -fd44ba13-661f-330e-a6b6-77703a24bde8,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2018,gas oil combustion consumption by public passenger transport,9.42732,TJ,CO2,74100.0,kg/TJ,698564.412,kg -653a2f2a-89c5-3baa-b371-f732b25afb3f,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2018,gas oil combustion consumption by public passenger transport,9.42732,TJ,CH4,3.9,kg/TJ,36.766548,kg -653a2f2a-89c5-3baa-b371-f732b25afb3f,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2018,gas oil combustion consumption by public passenger transport,9.42732,TJ,N2O,3.9,kg/TJ,36.766548,kg -76aa2d84-86ef-38f6-ad85-360c032910f8,SESCO,II.1.1,Tucuman,AR-T,annual,2018,gas oil combustion consumption by public passenger transport,967.87152,TJ,CO2,74100.0,kg/TJ,71719279.632,kg -dbb72fdc-e279-3e07-a5ca-e40099ad0c6f,SESCO,II.1.1,Tucuman,AR-T,annual,2018,gas oil combustion consumption by public passenger transport,967.87152,TJ,CH4,3.9,kg/TJ,3774.6989280000003,kg -dbb72fdc-e279-3e07-a5ca-e40099ad0c6f,SESCO,II.1.1,Tucuman,AR-T,annual,2018,gas oil combustion consumption by public passenger transport,967.87152,TJ,N2O,3.9,kg/TJ,3774.6989280000003,kg -22809ecc-93b3-3d22-b077-1b07d0b5f8f4,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,gas oil combustion consumption by public passenger transport,1955.46456,TJ,CO2,74100.0,kg/TJ,144899923.896,kg -d67cde47-90b6-357c-bd9b-1e73446127c4,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,gas oil combustion consumption by public passenger transport,1955.46456,TJ,CH4,3.9,kg/TJ,7626.3117839999995,kg -d67cde47-90b6-357c-bd9b-1e73446127c4,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,gas oil combustion consumption by public passenger transport,1955.46456,TJ,N2O,3.9,kg/TJ,7626.3117839999995,kg -fe8c7bd0-c29a-3fbd-af52-2d3ba41aed2b,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,gas oil combustion consumption by public passenger transport,303.0468,TJ,CO2,74100.0,kg/TJ,22455767.880000003,kg -fc0e02d8-7334-3ac6-bef9-cba3453a753d,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,gas oil combustion consumption by public passenger transport,303.0468,TJ,CH4,3.9,kg/TJ,1181.88252,kg -fc0e02d8-7334-3ac6-bef9-cba3453a753d,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,gas oil combustion consumption by public passenger transport,303.0468,TJ,N2O,3.9,kg/TJ,1181.88252,kg -b0e5d7d8-ea4d-3a38-9b17-becec9ffeffb,SESCO,II.1.1,Catamarca,AR-K,annual,2018,gas oil combustion consumption by public passenger transport,31.388279999999998,TJ,CO2,74100.0,kg/TJ,2325871.548,kg -4012e00b-5131-3496-b2e2-053782d72e01,SESCO,II.1.1,Catamarca,AR-K,annual,2018,gas oil combustion consumption by public passenger transport,31.388279999999998,TJ,CH4,3.9,kg/TJ,122.41429199999999,kg -4012e00b-5131-3496-b2e2-053782d72e01,SESCO,II.1.1,Catamarca,AR-K,annual,2018,gas oil combustion consumption by public passenger transport,31.388279999999998,TJ,N2O,3.9,kg/TJ,122.41429199999999,kg -258a383f-acc9-3815-af09-4d52bf32a494,SESCO,II.1.1,Chaco,AR-H,annual,2018,gas oil combustion consumption by public passenger transport,48.90648,TJ,CO2,74100.0,kg/TJ,3623970.168,kg -49027788-d172-3fcf-bfe3-8dc12c6af801,SESCO,II.1.1,Chaco,AR-H,annual,2018,gas oil combustion consumption by public passenger transport,48.90648,TJ,CH4,3.9,kg/TJ,190.735272,kg -49027788-d172-3fcf-bfe3-8dc12c6af801,SESCO,II.1.1,Chaco,AR-H,annual,2018,gas oil combustion consumption by public passenger transport,48.90648,TJ,N2O,3.9,kg/TJ,190.735272,kg -f86ae521-b695-3367-b768-b1f4b3c8cf67,SESCO,II.1.1,Chubut,AR-U,annual,2018,gas oil combustion consumption by public passenger transport,59.4174,TJ,CO2,74100.0,kg/TJ,4402829.34,kg -6f8da824-7a5d-3a89-9fc3-6176d171cd26,SESCO,II.1.1,Chubut,AR-U,annual,2018,gas oil combustion consumption by public passenger transport,59.4174,TJ,CH4,3.9,kg/TJ,231.72786,kg -6f8da824-7a5d-3a89-9fc3-6176d171cd26,SESCO,II.1.1,Chubut,AR-U,annual,2018,gas oil combustion consumption by public passenger transport,59.4174,TJ,N2O,3.9,kg/TJ,231.72786,kg -c864c88c-3267-3be7-89ec-56f3e6f37b86,SESCO,II.1.1,Corrientes,AR-W,annual,2018,gas oil combustion consumption by public passenger transport,89.9388,TJ,CO2,74100.0,kg/TJ,6664465.08,kg -b771477b-7d36-370a-9577-bc6c01928df4,SESCO,II.1.1,Corrientes,AR-W,annual,2018,gas oil combustion consumption by public passenger transport,89.9388,TJ,CH4,3.9,kg/TJ,350.76132,kg -b771477b-7d36-370a-9577-bc6c01928df4,SESCO,II.1.1,Corrientes,AR-W,annual,2018,gas oil combustion consumption by public passenger transport,89.9388,TJ,N2O,3.9,kg/TJ,350.76132,kg -d490f789-9152-32be-aa10-7c9b060338c8,SESCO,II.1.1,Córdoba,AR-X,annual,2018,gas oil combustion consumption by public passenger transport,378.68208,TJ,CO2,74100.0,kg/TJ,28060342.128,kg -52d1972a-9f76-3c3d-afae-55ce53c2d1a5,SESCO,II.1.1,Córdoba,AR-X,annual,2018,gas oil combustion consumption by public passenger transport,378.68208,TJ,CH4,3.9,kg/TJ,1476.8601119999998,kg -52d1972a-9f76-3c3d-afae-55ce53c2d1a5,SESCO,II.1.1,Córdoba,AR-X,annual,2018,gas oil combustion consumption by public passenger transport,378.68208,TJ,N2O,3.9,kg/TJ,1476.8601119999998,kg -be7c15bb-4d78-33c7-af1e-edcb9592620f,SESCO,II.1.1,Entre Rios,AR-E,annual,2018,gas oil combustion consumption by public passenger transport,39.1902,TJ,CO2,74100.0,kg/TJ,2903993.82,kg -202b5fad-362b-33c8-a9f4-2bf93653c4a9,SESCO,II.1.1,Entre Rios,AR-E,annual,2018,gas oil combustion consumption by public passenger transport,39.1902,TJ,CH4,3.9,kg/TJ,152.84178,kg -202b5fad-362b-33c8-a9f4-2bf93653c4a9,SESCO,II.1.1,Entre Rios,AR-E,annual,2018,gas oil combustion consumption by public passenger transport,39.1902,TJ,N2O,3.9,kg/TJ,152.84178,kg -669d5c61-2de2-3afb-be44-e455e887cd45,SESCO,II.1.1,Formosa,AR-P,annual,2018,gas oil combustion consumption by public passenger transport,51.90444,TJ,CO2,74100.0,kg/TJ,3846119.004,kg -a32fdbcb-bd17-3640-98f1-a408f7e0e43f,SESCO,II.1.1,Formosa,AR-P,annual,2018,gas oil combustion consumption by public passenger transport,51.90444,TJ,CH4,3.9,kg/TJ,202.427316,kg -a32fdbcb-bd17-3640-98f1-a408f7e0e43f,SESCO,II.1.1,Formosa,AR-P,annual,2018,gas oil combustion consumption by public passenger transport,51.90444,TJ,N2O,3.9,kg/TJ,202.427316,kg -b980fad6-c479-3a6f-a191-8974110e9fea,SESCO,II.1.1,Jujuy,AR-Y,annual,2018,gas oil combustion consumption by public passenger transport,27.920759999999998,TJ,CO2,74100.0,kg/TJ,2068928.3159999999,kg -c9eeb16b-c8a7-35ab-bcfb-6ef081e4b03a,SESCO,II.1.1,Jujuy,AR-Y,annual,2018,gas oil combustion consumption by public passenger transport,27.920759999999998,TJ,CH4,3.9,kg/TJ,108.89096399999998,kg -c9eeb16b-c8a7-35ab-bcfb-6ef081e4b03a,SESCO,II.1.1,Jujuy,AR-Y,annual,2018,gas oil combustion consumption by public passenger transport,27.920759999999998,TJ,N2O,3.9,kg/TJ,108.89096399999998,kg -27afe1be-e39b-30eb-92f6-d0a7cb2cc795,SESCO,II.1.1,La Pampa,AR-L,annual,2018,gas oil combustion consumption by public passenger transport,4.55112,TJ,CO2,74100.0,kg/TJ,337237.992,kg -3489c499-9c7d-316d-8a8c-ae475d04d7c8,SESCO,II.1.1,La Pampa,AR-L,annual,2018,gas oil combustion consumption by public passenger transport,4.55112,TJ,CH4,3.9,kg/TJ,17.749368,kg -3489c499-9c7d-316d-8a8c-ae475d04d7c8,SESCO,II.1.1,La Pampa,AR-L,annual,2018,gas oil combustion consumption by public passenger transport,4.55112,TJ,N2O,3.9,kg/TJ,17.749368,kg -51bd5e8a-f7a9-36da-822e-bb28fc9a058a,SESCO,II.1.1,La Rioja,AR-F,annual,2018,gas oil combustion consumption by public passenger transport,16.36236,TJ,CO2,74100.0,kg/TJ,1212450.876,kg -18865478-7e43-3544-9067-fb03655e72c4,SESCO,II.1.1,La Rioja,AR-F,annual,2018,gas oil combustion consumption by public passenger transport,16.36236,TJ,CH4,3.9,kg/TJ,63.81320399999999,kg -18865478-7e43-3544-9067-fb03655e72c4,SESCO,II.1.1,La Rioja,AR-F,annual,2018,gas oil combustion consumption by public passenger transport,16.36236,TJ,N2O,3.9,kg/TJ,63.81320399999999,kg -87c3cd01-cd10-39ca-b3c4-f6684ce46196,SESCO,II.1.1,Mendoza,AR-M,annual,2018,gas oil combustion consumption by public passenger transport,287.84028,TJ,CO2,74100.0,kg/TJ,21328964.748,kg -a182c42d-1fe9-34a3-b338-5d81b7d352fe,SESCO,II.1.1,Mendoza,AR-M,annual,2018,gas oil combustion consumption by public passenger transport,287.84028,TJ,CH4,3.9,kg/TJ,1122.577092,kg -a182c42d-1fe9-34a3-b338-5d81b7d352fe,SESCO,II.1.1,Mendoza,AR-M,annual,2018,gas oil combustion consumption by public passenger transport,287.84028,TJ,N2O,3.9,kg/TJ,1122.577092,kg -59b2c31a-b357-32c0-9106-c73816c41e40,SESCO,II.1.1,Misiones,AR-N,annual,2018,gas oil combustion consumption by public passenger transport,208.7736,TJ,CO2,74100.0,kg/TJ,15470123.76,kg -d78b3b98-b1c6-370f-a53f-d41d24bb8dac,SESCO,II.1.1,Misiones,AR-N,annual,2018,gas oil combustion consumption by public passenger transport,208.7736,TJ,CH4,3.9,kg/TJ,814.2170399999999,kg -d78b3b98-b1c6-370f-a53f-d41d24bb8dac,SESCO,II.1.1,Misiones,AR-N,annual,2018,gas oil combustion consumption by public passenger transport,208.7736,TJ,N2O,3.9,kg/TJ,814.2170399999999,kg -8302aad6-be61-3ce8-8931-81c6c0598ebb,SESCO,II.1.1,Neuquén,AR-Q,annual,2018,gas oil combustion consumption by public passenger transport,39.84036,TJ,CO2,74100.0,kg/TJ,2952170.676,kg -1108f4cf-e305-37cf-91a7-9aff2665342e,SESCO,II.1.1,Neuquén,AR-Q,annual,2018,gas oil combustion consumption by public passenger transport,39.84036,TJ,CH4,3.9,kg/TJ,155.37740399999998,kg -1108f4cf-e305-37cf-91a7-9aff2665342e,SESCO,II.1.1,Neuquén,AR-Q,annual,2018,gas oil combustion consumption by public passenger transport,39.84036,TJ,N2O,3.9,kg/TJ,155.37740399999998,kg -ae3ef7fe-569a-3fb8-bbbb-55b5091f7547,SESCO,II.1.1,Rio Negro,AR-R,annual,2018,gas oil combustion consumption by public passenger transport,205.66728,TJ,CO2,74100.0,kg/TJ,15239945.448,kg -74308d3c-e7d2-39a2-9453-0fbf984c1a43,SESCO,II.1.1,Rio Negro,AR-R,annual,2018,gas oil combustion consumption by public passenger transport,205.66728,TJ,CH4,3.9,kg/TJ,802.102392,kg -74308d3c-e7d2-39a2-9453-0fbf984c1a43,SESCO,II.1.1,Rio Negro,AR-R,annual,2018,gas oil combustion consumption by public passenger transport,205.66728,TJ,N2O,3.9,kg/TJ,802.102392,kg -9e076492-c0d0-3a26-b39b-5aea0ee4b620,SESCO,II.1.1,Salta,AR-A,annual,2018,gas oil combustion consumption by public passenger transport,228.8202,TJ,CO2,74100.0,kg/TJ,16955576.82,kg -993c1344-76a4-330b-bc6c-307412e1e604,SESCO,II.1.1,Salta,AR-A,annual,2018,gas oil combustion consumption by public passenger transport,228.8202,TJ,CH4,3.9,kg/TJ,892.39878,kg -993c1344-76a4-330b-bc6c-307412e1e604,SESCO,II.1.1,Salta,AR-A,annual,2018,gas oil combustion consumption by public passenger transport,228.8202,TJ,N2O,3.9,kg/TJ,892.39878,kg -78167729-5f34-3a23-b0ce-53dd6befdad9,SESCO,II.1.1,San Juan,AR-J,annual,2018,gas oil combustion consumption by public passenger transport,146.53884,TJ,CO2,74100.0,kg/TJ,10858528.044,kg -a7a5b952-49ce-3ff7-9b63-2fbc0ed66ea1,SESCO,II.1.1,San Juan,AR-J,annual,2018,gas oil combustion consumption by public passenger transport,146.53884,TJ,CH4,3.9,kg/TJ,571.5014759999999,kg -a7a5b952-49ce-3ff7-9b63-2fbc0ed66ea1,SESCO,II.1.1,San Juan,AR-J,annual,2018,gas oil combustion consumption by public passenger transport,146.53884,TJ,N2O,3.9,kg/TJ,571.5014759999999,kg -be1dc58b-b0b8-35ad-866c-dd0b6a38a0fd,SESCO,II.1.1,San Luis,AR-D,annual,2018,gas oil combustion consumption by public passenger transport,43.66908,TJ,CO2,74100.0,kg/TJ,3235878.828,kg -11091680-4380-341b-98b7-833ad496f639,SESCO,II.1.1,San Luis,AR-D,annual,2018,gas oil combustion consumption by public passenger transport,43.66908,TJ,CH4,3.9,kg/TJ,170.309412,kg -11091680-4380-341b-98b7-833ad496f639,SESCO,II.1.1,San Luis,AR-D,annual,2018,gas oil combustion consumption by public passenger transport,43.66908,TJ,N2O,3.9,kg/TJ,170.309412,kg -bac01d6a-7e86-3376-8241-e1b377fbfb59,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2018,gas oil combustion consumption by public passenger transport,2.23944,TJ,CO2,74100.0,kg/TJ,165942.50400000002,kg -f0f38c01-5017-307a-a4c3-a24fb5224c11,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2018,gas oil combustion consumption by public passenger transport,2.23944,TJ,CH4,3.9,kg/TJ,8.733816000000001,kg -f0f38c01-5017-307a-a4c3-a24fb5224c11,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2018,gas oil combustion consumption by public passenger transport,2.23944,TJ,N2O,3.9,kg/TJ,8.733816000000001,kg -1cd2ee89-7a3b-327a-b3c3-1db633d171fa,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,gas oil combustion consumption by public passenger transport,345.4878,TJ,CO2,74100.0,kg/TJ,25600645.98,kg -0f60873e-8abb-3e81-9d18-1220b7316a00,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,gas oil combustion consumption by public passenger transport,345.4878,TJ,CH4,3.9,kg/TJ,1347.40242,kg -0f60873e-8abb-3e81-9d18-1220b7316a00,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,gas oil combustion consumption by public passenger transport,345.4878,TJ,N2O,3.9,kg/TJ,1347.40242,kg -e1465b78-9956-34bd-af86-5ff24e4d93d1,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2018,gas oil combustion consumption by public passenger transport,38.61228,TJ,CO2,74100.0,kg/TJ,2861169.948,kg -f45af029-2994-3a1c-810c-053a035ad0ca,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2018,gas oil combustion consumption by public passenger transport,38.61228,TJ,CH4,3.9,kg/TJ,150.58789199999998,kg -f45af029-2994-3a1c-810c-053a035ad0ca,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2018,gas oil combustion consumption by public passenger transport,38.61228,TJ,N2O,3.9,kg/TJ,150.58789199999998,kg -7f9cc7d5-dc5d-3e9d-8806-9c8d478fbe57,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2018,gas oil combustion consumption by public passenger transport,21.81648,TJ,CO2,74100.0,kg/TJ,1616601.1679999998,kg -3335dfad-2af3-34b9-91a5-ce8480e48329,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2018,gas oil combustion consumption by public passenger transport,21.81648,TJ,CH4,3.9,kg/TJ,85.084272,kg -3335dfad-2af3-34b9-91a5-ce8480e48329,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2018,gas oil combustion consumption by public passenger transport,21.81648,TJ,N2O,3.9,kg/TJ,85.084272,kg -7ea3ce4a-4a6f-36cb-8c12-2f15177c5bb7,SESCO,II.1.1,Tucuman,AR-T,annual,2018,gas oil combustion consumption by public passenger transport,196.45668,TJ,CO2,74100.0,kg/TJ,14557439.988,kg -a17324a5-96f0-3653-b5d8-9252e7c7d421,SESCO,II.1.1,Tucuman,AR-T,annual,2018,gas oil combustion consumption by public passenger transport,196.45668,TJ,CH4,3.9,kg/TJ,766.181052,kg -a17324a5-96f0-3653-b5d8-9252e7c7d421,SESCO,II.1.1,Tucuman,AR-T,annual,2018,gas oil combustion consumption by public passenger transport,196.45668,TJ,N2O,3.9,kg/TJ,766.181052,kg -aa108c54-5765-3352-865d-63a3f4d8fa11,SESCO,II.5.1,Buenos Aires,AR-B,annual,2019,gas oil combustion consumption by agriculture machines,266.67396,TJ,CO2,74100.0,kg/TJ,19760540.436,kg -2a4091d5-ea97-32d6-ba2b-9c05a0ce86b6,SESCO,II.5.1,Buenos Aires,AR-B,annual,2019,gas oil combustion consumption by agriculture machines,266.67396,TJ,CH4,3.9,kg/TJ,1040.028444,kg -2a4091d5-ea97-32d6-ba2b-9c05a0ce86b6,SESCO,II.5.1,Buenos Aires,AR-B,annual,2019,gas oil combustion consumption by agriculture machines,266.67396,TJ,N2O,3.9,kg/TJ,1040.028444,kg -9f668290-840d-3fbd-8f5d-4865a660c98b,SESCO,II.5.1,Chaco,AR-H,annual,2019,gas oil combustion consumption by agriculture machines,19.57704,TJ,CO2,74100.0,kg/TJ,1450658.664,kg -d135a61d-6736-318c-8c7f-bb503be60d33,SESCO,II.5.1,Chaco,AR-H,annual,2019,gas oil combustion consumption by agriculture machines,19.57704,TJ,CH4,3.9,kg/TJ,76.350456,kg -d135a61d-6736-318c-8c7f-bb503be60d33,SESCO,II.5.1,Chaco,AR-H,annual,2019,gas oil combustion consumption by agriculture machines,19.57704,TJ,N2O,3.9,kg/TJ,76.350456,kg -c0df4ad6-63a4-3755-81ba-909d8b30a49e,SESCO,II.5.1,Córdoba,AR-X,annual,2019,gas oil combustion consumption by agriculture machines,118.40136,TJ,CO2,74100.0,kg/TJ,8773540.776,kg -bb917a39-2f28-3f73-a7cf-69c44bd56f3e,SESCO,II.5.1,Córdoba,AR-X,annual,2019,gas oil combustion consumption by agriculture machines,118.40136,TJ,CH4,3.9,kg/TJ,461.76530399999996,kg -bb917a39-2f28-3f73-a7cf-69c44bd56f3e,SESCO,II.5.1,Córdoba,AR-X,annual,2019,gas oil combustion consumption by agriculture machines,118.40136,TJ,N2O,3.9,kg/TJ,461.76530399999996,kg -4c688315-86ba-3f5e-9059-9b225c11f3dd,SESCO,II.5.1,Entre Rios,AR-E,annual,2019,gas oil combustion consumption by agriculture machines,18.09612,TJ,CO2,74100.0,kg/TJ,1340922.4919999999,kg -cb28000d-7c25-3f67-b2ee-48d23476adf7,SESCO,II.5.1,Entre Rios,AR-E,annual,2019,gas oil combustion consumption by agriculture machines,18.09612,TJ,CH4,3.9,kg/TJ,70.574868,kg -cb28000d-7c25-3f67-b2ee-48d23476adf7,SESCO,II.5.1,Entre Rios,AR-E,annual,2019,gas oil combustion consumption by agriculture machines,18.09612,TJ,N2O,3.9,kg/TJ,70.574868,kg -dc4edb83-3e7e-3d20-999c-ed42a6ae84c4,SESCO,II.5.1,La Pampa,AR-L,annual,2019,gas oil combustion consumption by agriculture machines,2.13108,TJ,CO2,74100.0,kg/TJ,157913.028,kg -262a6089-179b-34e5-8673-7e85709f08f6,SESCO,II.5.1,La Pampa,AR-L,annual,2019,gas oil combustion consumption by agriculture machines,2.13108,TJ,CH4,3.9,kg/TJ,8.311212,kg -262a6089-179b-34e5-8673-7e85709f08f6,SESCO,II.5.1,La Pampa,AR-L,annual,2019,gas oil combustion consumption by agriculture machines,2.13108,TJ,N2O,3.9,kg/TJ,8.311212,kg -73a9eb31-c5e3-3b40-bbb0-584797616237,SESCO,II.5.1,Santa Fe,AR-S,annual,2019,gas oil combustion consumption by agriculture machines,209.56824,TJ,CO2,74100.0,kg/TJ,15529006.584,kg -a765db81-1046-3f47-9039-7aeefdd32a7f,SESCO,II.5.1,Santa Fe,AR-S,annual,2019,gas oil combustion consumption by agriculture machines,209.56824,TJ,CH4,3.9,kg/TJ,817.316136,kg -a765db81-1046-3f47-9039-7aeefdd32a7f,SESCO,II.5.1,Santa Fe,AR-S,annual,2019,gas oil combustion consumption by agriculture machines,209.56824,TJ,N2O,3.9,kg/TJ,817.316136,kg -cc49f3cb-fe5a-3d31-95f9-3667f555be25,SESCO,II.5.1,Buenos Aires,AR-B,annual,2019,gas oil combustion consumption by agriculture machines,8.01864,TJ,CO2,74100.0,kg/TJ,594181.2239999999,kg -aebde593-fdf2-3bae-b8fd-ebcedc0acc08,SESCO,II.5.1,Buenos Aires,AR-B,annual,2019,gas oil combustion consumption by agriculture machines,8.01864,TJ,CH4,3.9,kg/TJ,31.272695999999996,kg -aebde593-fdf2-3bae-b8fd-ebcedc0acc08,SESCO,II.5.1,Buenos Aires,AR-B,annual,2019,gas oil combustion consumption by agriculture machines,8.01864,TJ,N2O,3.9,kg/TJ,31.272695999999996,kg -ea3f7b31-0556-39be-bb30-d678d2856e58,SESCO,II.5.1,Córdoba,AR-X,annual,2019,gas oil combustion consumption by agriculture machines,2.4200399999999997,TJ,CO2,74100.0,kg/TJ,179324.96399999998,kg -af8a0089-03af-3d4a-ab17-0a097fc20427,SESCO,II.5.1,Córdoba,AR-X,annual,2019,gas oil combustion consumption by agriculture machines,2.4200399999999997,TJ,CH4,3.9,kg/TJ,9.438156,kg -af8a0089-03af-3d4a-ab17-0a097fc20427,SESCO,II.5.1,Córdoba,AR-X,annual,2019,gas oil combustion consumption by agriculture machines,2.4200399999999997,TJ,N2O,3.9,kg/TJ,9.438156,kg -ab4ab5cd-dfa9-3126-ac50-d5b0f0272258,SESCO,II.5.1,La Pampa,AR-L,annual,2019,gas oil combustion consumption by agriculture machines,0.46956,TJ,CO2,74100.0,kg/TJ,34794.396,kg -725141c8-0815-38d8-9ad4-f4fd01dce5e8,SESCO,II.5.1,La Pampa,AR-L,annual,2019,gas oil combustion consumption by agriculture machines,0.46956,TJ,CH4,3.9,kg/TJ,1.831284,kg -725141c8-0815-38d8-9ad4-f4fd01dce5e8,SESCO,II.5.1,La Pampa,AR-L,annual,2019,gas oil combustion consumption by agriculture machines,0.46956,TJ,N2O,3.9,kg/TJ,1.831284,kg -c92edaa4-423e-325b-bb98-ca1d40712df9,SESCO,II.5.1,Santa Fe,AR-S,annual,2019,gas oil combustion consumption by agriculture machines,11.70288,TJ,CO2,74100.0,kg/TJ,867183.408,kg -8e497bdb-dbe8-3d56-b691-a5890fdb1f59,SESCO,II.5.1,Santa Fe,AR-S,annual,2019,gas oil combustion consumption by agriculture machines,11.70288,TJ,CH4,3.9,kg/TJ,45.641232,kg -8e497bdb-dbe8-3d56-b691-a5890fdb1f59,SESCO,II.5.1,Santa Fe,AR-S,annual,2019,gas oil combustion consumption by agriculture machines,11.70288,TJ,N2O,3.9,kg/TJ,45.641232,kg -a8ded0cc-4cef-3af9-9921-6c9063164f66,SESCO,II.1.1,Buenos Aires,AR-B,annual,2019,gas oil combustion consumption by to the public,1054.81236,TJ,CO2,74100.0,kg/TJ,78161595.87599999,kg -691b9fe8-42db-3f24-a129-0e82e8708263,SESCO,II.1.1,Buenos Aires,AR-B,annual,2019,gas oil combustion consumption by to the public,1054.81236,TJ,CH4,3.9,kg/TJ,4113.768203999999,kg -691b9fe8-42db-3f24-a129-0e82e8708263,SESCO,II.1.1,Buenos Aires,AR-B,annual,2019,gas oil combustion consumption by to the public,1054.81236,TJ,N2O,3.9,kg/TJ,4113.768203999999,kg -450d0562-48b1-3c42-97de-b8e150150958,SESCO,II.1.1,Capital Federal,AR-C,annual,2019,gas oil combustion consumption by to the public,72.6012,TJ,CO2,74100.0,kg/TJ,5379748.920000001,kg -d34031eb-ed86-32d3-86a8-735ed9883cc0,SESCO,II.1.1,Capital Federal,AR-C,annual,2019,gas oil combustion consumption by to the public,72.6012,TJ,CH4,3.9,kg/TJ,283.14468,kg -d34031eb-ed86-32d3-86a8-735ed9883cc0,SESCO,II.1.1,Capital Federal,AR-C,annual,2019,gas oil combustion consumption by to the public,72.6012,TJ,N2O,3.9,kg/TJ,283.14468,kg -39f54cee-92bd-35dd-b508-8fa39df7ae74,SESCO,II.1.1,Catamarca,AR-K,annual,2019,gas oil combustion consumption by to the public,9.06612,TJ,CO2,74100.0,kg/TJ,671799.492,kg -779bf52a-2f2b-3154-b6ed-a09ba6bb5e6a,SESCO,II.1.1,Catamarca,AR-K,annual,2019,gas oil combustion consumption by to the public,9.06612,TJ,CH4,3.9,kg/TJ,35.357867999999996,kg -779bf52a-2f2b-3154-b6ed-a09ba6bb5e6a,SESCO,II.1.1,Catamarca,AR-K,annual,2019,gas oil combustion consumption by to the public,9.06612,TJ,N2O,3.9,kg/TJ,35.357867999999996,kg -c95ba2bd-61ab-3026-b6f0-a10bb8445c20,SESCO,II.1.1,Chaco,AR-H,annual,2019,gas oil combustion consumption by to the public,22.791719999999998,TJ,CO2,74100.0,kg/TJ,1688866.4519999998,kg -4034dd6a-1ba8-3924-9bb3-6d8151c9c07a,SESCO,II.1.1,Chaco,AR-H,annual,2019,gas oil combustion consumption by to the public,22.791719999999998,TJ,CH4,3.9,kg/TJ,88.88770799999999,kg -4034dd6a-1ba8-3924-9bb3-6d8151c9c07a,SESCO,II.1.1,Chaco,AR-H,annual,2019,gas oil combustion consumption by to the public,22.791719999999998,TJ,N2O,3.9,kg/TJ,88.88770799999999,kg -f28bc249-552f-37c8-b727-9d7f88cd477e,SESCO,II.1.1,Corrientes,AR-W,annual,2019,gas oil combustion consumption by to the public,2.92572,TJ,CO2,74100.0,kg/TJ,216795.852,kg -e6d4109d-38fd-3524-ab0d-c52d639781e5,SESCO,II.1.1,Corrientes,AR-W,annual,2019,gas oil combustion consumption by to the public,2.92572,TJ,CH4,3.9,kg/TJ,11.410308,kg -e6d4109d-38fd-3524-ab0d-c52d639781e5,SESCO,II.1.1,Corrientes,AR-W,annual,2019,gas oil combustion consumption by to the public,2.92572,TJ,N2O,3.9,kg/TJ,11.410308,kg -c614e03b-083f-32ec-85d0-35ad079ce6d4,SESCO,II.1.1,Córdoba,AR-X,annual,2019,gas oil combustion consumption by to the public,887.1072,TJ,CO2,74100.0,kg/TJ,65734643.52,kg -1b256b88-cfba-3342-9fd1-d76e46bb1d6b,SESCO,II.1.1,Córdoba,AR-X,annual,2019,gas oil combustion consumption by to the public,887.1072,TJ,CH4,3.9,kg/TJ,3459.71808,kg -1b256b88-cfba-3342-9fd1-d76e46bb1d6b,SESCO,II.1.1,Córdoba,AR-X,annual,2019,gas oil combustion consumption by to the public,887.1072,TJ,N2O,3.9,kg/TJ,3459.71808,kg -488d863f-6623-3789-8d9f-25caef781f1c,SESCO,II.1.1,Entre Rios,AR-E,annual,2019,gas oil combustion consumption by to the public,91.34748,TJ,CO2,74100.0,kg/TJ,6768848.268,kg -abfe58ec-7c1b-3683-bf1e-dc1b6c679760,SESCO,II.1.1,Entre Rios,AR-E,annual,2019,gas oil combustion consumption by to the public,91.34748,TJ,CH4,3.9,kg/TJ,356.255172,kg -abfe58ec-7c1b-3683-bf1e-dc1b6c679760,SESCO,II.1.1,Entre Rios,AR-E,annual,2019,gas oil combustion consumption by to the public,91.34748,TJ,N2O,3.9,kg/TJ,356.255172,kg -de3dc1f3-0c65-3fa4-b192-da0daf9a68b3,SESCO,II.1.1,La Pampa,AR-L,annual,2019,gas oil combustion consumption by to the public,1.48092,TJ,CO2,74100.0,kg/TJ,109736.172,kg -15f148aa-11ce-34ba-896c-642f48dfd274,SESCO,II.1.1,La Pampa,AR-L,annual,2019,gas oil combustion consumption by to the public,1.48092,TJ,CH4,3.9,kg/TJ,5.775588,kg -15f148aa-11ce-34ba-896c-642f48dfd274,SESCO,II.1.1,La Pampa,AR-L,annual,2019,gas oil combustion consumption by to the public,1.48092,TJ,N2O,3.9,kg/TJ,5.775588,kg -f50c4d5d-b8e1-3452-b402-b4f68dab72dd,SESCO,II.1.1,La Rioja,AR-F,annual,2019,gas oil combustion consumption by to the public,0.21672,TJ,CO2,74100.0,kg/TJ,16058.952,kg -f6d41ec4-5e64-3a97-98a5-1b3163bf62a4,SESCO,II.1.1,La Rioja,AR-F,annual,2019,gas oil combustion consumption by to the public,0.21672,TJ,CH4,3.9,kg/TJ,0.845208,kg -f6d41ec4-5e64-3a97-98a5-1b3163bf62a4,SESCO,II.1.1,La Rioja,AR-F,annual,2019,gas oil combustion consumption by to the public,0.21672,TJ,N2O,3.9,kg/TJ,0.845208,kg -2e34fdbc-bf68-3949-94b9-b3927ff9e146,SESCO,II.1.1,Mendoza,AR-M,annual,2019,gas oil combustion consumption by to the public,110.92452,TJ,CO2,74100.0,kg/TJ,8219506.932,kg -c9eeecfa-53a5-381c-b204-7997ee591db1,SESCO,II.1.1,Mendoza,AR-M,annual,2019,gas oil combustion consumption by to the public,110.92452,TJ,CH4,3.9,kg/TJ,432.60562799999997,kg -c9eeecfa-53a5-381c-b204-7997ee591db1,SESCO,II.1.1,Mendoza,AR-M,annual,2019,gas oil combustion consumption by to the public,110.92452,TJ,N2O,3.9,kg/TJ,432.60562799999997,kg -db658ebe-4319-3b31-a907-609e2aed6319,SESCO,II.1.1,Misiones,AR-N,annual,2019,gas oil combustion consumption by to the public,0.93912,TJ,CO2,74100.0,kg/TJ,69588.792,kg -7b23b2b8-0e56-3b8e-bc88-30f62b583718,SESCO,II.1.1,Misiones,AR-N,annual,2019,gas oil combustion consumption by to the public,0.93912,TJ,CH4,3.9,kg/TJ,3.662568,kg -7b23b2b8-0e56-3b8e-bc88-30f62b583718,SESCO,II.1.1,Misiones,AR-N,annual,2019,gas oil combustion consumption by to the public,0.93912,TJ,N2O,3.9,kg/TJ,3.662568,kg -3d4fbe93-4ee5-3a1f-ab82-a394f3f37563,SESCO,II.1.1,San Juan,AR-J,annual,2019,gas oil combustion consumption by to the public,62.054159999999996,TJ,CO2,74100.0,kg/TJ,4598213.256,kg -6d7b68cb-3c77-32df-b66c-128329143d06,SESCO,II.1.1,San Juan,AR-J,annual,2019,gas oil combustion consumption by to the public,62.054159999999996,TJ,CH4,3.9,kg/TJ,242.01122399999997,kg -6d7b68cb-3c77-32df-b66c-128329143d06,SESCO,II.1.1,San Juan,AR-J,annual,2019,gas oil combustion consumption by to the public,62.054159999999996,TJ,N2O,3.9,kg/TJ,242.01122399999997,kg -6259deef-c9a6-358d-a5cd-fc260295c153,SESCO,II.1.1,San Luis,AR-D,annual,2019,gas oil combustion consumption by to the public,10.18584,TJ,CO2,74100.0,kg/TJ,754770.7440000001,kg -25d8b305-c039-3358-bf5e-b60d694dfb2c,SESCO,II.1.1,San Luis,AR-D,annual,2019,gas oil combustion consumption by to the public,10.18584,TJ,CH4,3.9,kg/TJ,39.724776,kg -25d8b305-c039-3358-bf5e-b60d694dfb2c,SESCO,II.1.1,San Luis,AR-D,annual,2019,gas oil combustion consumption by to the public,10.18584,TJ,N2O,3.9,kg/TJ,39.724776,kg -98ce0fcd-5ef6-3590-ac9d-8577c6f1d4d3,SESCO,II.1.1,Santa Fe,AR-S,annual,2019,gas oil combustion consumption by to the public,580.48452,TJ,CO2,74100.0,kg/TJ,43013902.932,kg -7db83c5d-258a-3852-a765-bec7ded33413,SESCO,II.1.1,Santa Fe,AR-S,annual,2019,gas oil combustion consumption by to the public,580.48452,TJ,CH4,3.9,kg/TJ,2263.889628,kg -7db83c5d-258a-3852-a765-bec7ded33413,SESCO,II.1.1,Santa Fe,AR-S,annual,2019,gas oil combustion consumption by to the public,580.48452,TJ,N2O,3.9,kg/TJ,2263.889628,kg -48fa8b2c-9678-3da3-bb38-a7bd118e3b57,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2019,gas oil combustion consumption by to the public,71.48148,TJ,CO2,74100.0,kg/TJ,5296777.6680000005,kg -e11854f8-fa6e-3069-b279-a9bc3ae10fb6,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2019,gas oil combustion consumption by to the public,71.48148,TJ,CH4,3.9,kg/TJ,278.777772,kg -e11854f8-fa6e-3069-b279-a9bc3ae10fb6,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2019,gas oil combustion consumption by to the public,71.48148,TJ,N2O,3.9,kg/TJ,278.777772,kg -184ced0e-3aca-3865-af10-7af5055bd804,SESCO,II.1.1,Tucuman,AR-T,annual,2019,gas oil combustion consumption by to the public,55.986,TJ,CO2,74100.0,kg/TJ,4148562.5999999996,kg -06fd6967-9a36-3fb0-bc51-280dfdcbf3a8,SESCO,II.1.1,Tucuman,AR-T,annual,2019,gas oil combustion consumption by to the public,55.986,TJ,CH4,3.9,kg/TJ,218.34539999999998,kg -06fd6967-9a36-3fb0-bc51-280dfdcbf3a8,SESCO,II.1.1,Tucuman,AR-T,annual,2019,gas oil combustion consumption by to the public,55.986,TJ,N2O,3.9,kg/TJ,218.34539999999998,kg -6709f46c-c646-365a-871b-387c492af23c,SESCO,II.1.1,Buenos Aires,AR-B,annual,2019,gas oil combustion consumption by to the public,121.5438,TJ,CO2,74100.0,kg/TJ,9006395.58,kg -3a4d3849-3f42-377e-b8d6-29220f4d6612,SESCO,II.1.1,Buenos Aires,AR-B,annual,2019,gas oil combustion consumption by to the public,121.5438,TJ,CH4,3.9,kg/TJ,474.02082,kg -3a4d3849-3f42-377e-b8d6-29220f4d6612,SESCO,II.1.1,Buenos Aires,AR-B,annual,2019,gas oil combustion consumption by to the public,121.5438,TJ,N2O,3.9,kg/TJ,474.02082,kg -8aac438f-7d20-3bc6-8551-5a6b45f0a367,SESCO,II.1.1,Capital Federal,AR-C,annual,2019,gas oil combustion consumption by to the public,8.59656,TJ,CO2,74100.0,kg/TJ,637005.096,kg -07c8c2d5-5a66-32ab-981e-e715d0d870e6,SESCO,II.1.1,Capital Federal,AR-C,annual,2019,gas oil combustion consumption by to the public,8.59656,TJ,CH4,3.9,kg/TJ,33.526584,kg -07c8c2d5-5a66-32ab-981e-e715d0d870e6,SESCO,II.1.1,Capital Federal,AR-C,annual,2019,gas oil combustion consumption by to the public,8.59656,TJ,N2O,3.9,kg/TJ,33.526584,kg -4bd8004c-33a3-3315-88db-75957d52d7eb,SESCO,II.1.1,Catamarca,AR-K,annual,2019,gas oil combustion consumption by to the public,5.30964,TJ,CO2,74100.0,kg/TJ,393444.324,kg -12a32535-eaca-302d-968c-b2045bb28f46,SESCO,II.1.1,Catamarca,AR-K,annual,2019,gas oil combustion consumption by to the public,5.30964,TJ,CH4,3.9,kg/TJ,20.707596,kg -12a32535-eaca-302d-968c-b2045bb28f46,SESCO,II.1.1,Catamarca,AR-K,annual,2019,gas oil combustion consumption by to the public,5.30964,TJ,N2O,3.9,kg/TJ,20.707596,kg -f20bceb0-2ee9-3b9b-91b3-25250f7032d6,SESCO,II.1.1,Chaco,AR-H,annual,2019,gas oil combustion consumption by to the public,4.5872399999999995,TJ,CO2,74100.0,kg/TJ,339914.48399999994,kg -a685e52d-8555-3cc8-8880-8010aba607ba,SESCO,II.1.1,Chaco,AR-H,annual,2019,gas oil combustion consumption by to the public,4.5872399999999995,TJ,CH4,3.9,kg/TJ,17.890235999999998,kg -a685e52d-8555-3cc8-8880-8010aba607ba,SESCO,II.1.1,Chaco,AR-H,annual,2019,gas oil combustion consumption by to the public,4.5872399999999995,TJ,N2O,3.9,kg/TJ,17.890235999999998,kg -95181b30-9143-362a-a65b-2443fbcd1adf,SESCO,II.1.1,Corrientes,AR-W,annual,2019,gas oil combustion consumption by to the public,3.612,TJ,CO2,74100.0,kg/TJ,267649.2,kg -daa7a51e-d5a1-324e-b9bb-fd90223a6288,SESCO,II.1.1,Corrientes,AR-W,annual,2019,gas oil combustion consumption by to the public,3.612,TJ,CH4,3.9,kg/TJ,14.0868,kg -daa7a51e-d5a1-324e-b9bb-fd90223a6288,SESCO,II.1.1,Corrientes,AR-W,annual,2019,gas oil combustion consumption by to the public,3.612,TJ,N2O,3.9,kg/TJ,14.0868,kg -a01d1ae8-8b67-3314-91c4-8ff02335185b,SESCO,II.1.1,Córdoba,AR-X,annual,2019,gas oil combustion consumption by to the public,95.79024,TJ,CO2,74100.0,kg/TJ,7098056.784,kg -ac880676-b931-3d82-a781-92ba0f713d06,SESCO,II.1.1,Córdoba,AR-X,annual,2019,gas oil combustion consumption by to the public,95.79024,TJ,CH4,3.9,kg/TJ,373.581936,kg -ac880676-b931-3d82-a781-92ba0f713d06,SESCO,II.1.1,Córdoba,AR-X,annual,2019,gas oil combustion consumption by to the public,95.79024,TJ,N2O,3.9,kg/TJ,373.581936,kg -e2493115-44fd-33bd-83c9-c8598e45142a,SESCO,II.1.1,Entre Rios,AR-E,annual,2019,gas oil combustion consumption by to the public,11.66676,TJ,CO2,74100.0,kg/TJ,864506.916,kg -4e877117-1265-366e-a32f-3cf82244c323,SESCO,II.1.1,Entre Rios,AR-E,annual,2019,gas oil combustion consumption by to the public,11.66676,TJ,CH4,3.9,kg/TJ,45.500364,kg -4e877117-1265-366e-a32f-3cf82244c323,SESCO,II.1.1,Entre Rios,AR-E,annual,2019,gas oil combustion consumption by to the public,11.66676,TJ,N2O,3.9,kg/TJ,45.500364,kg -f50c4d5d-b8e1-3452-b402-b4f68dab72dd,SESCO,II.1.1,La Rioja,AR-F,annual,2019,gas oil combustion consumption by to the public,0.21672,TJ,CO2,74100.0,kg/TJ,16058.952,kg -f6d41ec4-5e64-3a97-98a5-1b3163bf62a4,SESCO,II.1.1,La Rioja,AR-F,annual,2019,gas oil combustion consumption by to the public,0.21672,TJ,CH4,3.9,kg/TJ,0.845208,kg -f6d41ec4-5e64-3a97-98a5-1b3163bf62a4,SESCO,II.1.1,La Rioja,AR-F,annual,2019,gas oil combustion consumption by to the public,0.21672,TJ,N2O,3.9,kg/TJ,0.845208,kg -bdf96291-a0f5-3905-92fd-816e0381e9f4,SESCO,II.1.1,Mendoza,AR-M,annual,2019,gas oil combustion consumption by to the public,21.81648,TJ,CO2,74100.0,kg/TJ,1616601.1679999998,kg -47232a7c-0243-3089-a3a8-94c1637feaab,SESCO,II.1.1,Mendoza,AR-M,annual,2019,gas oil combustion consumption by to the public,21.81648,TJ,CH4,3.9,kg/TJ,85.084272,kg -47232a7c-0243-3089-a3a8-94c1637feaab,SESCO,II.1.1,Mendoza,AR-M,annual,2019,gas oil combustion consumption by to the public,21.81648,TJ,N2O,3.9,kg/TJ,85.084272,kg -59d111db-11ed-37a8-bdc2-84e9f9680636,SESCO,II.1.1,San Juan,AR-J,annual,2019,gas oil combustion consumption by to the public,17.3376,TJ,CO2,74100.0,kg/TJ,1284716.16,kg -840582af-bdae-399c-96a3-899c60313c74,SESCO,II.1.1,San Juan,AR-J,annual,2019,gas oil combustion consumption by to the public,17.3376,TJ,CH4,3.9,kg/TJ,67.61663999999999,kg -840582af-bdae-399c-96a3-899c60313c74,SESCO,II.1.1,San Juan,AR-J,annual,2019,gas oil combustion consumption by to the public,17.3376,TJ,N2O,3.9,kg/TJ,67.61663999999999,kg -d9ca20aa-3e63-3105-ae37-e8a6552a97aa,SESCO,II.1.1,San Luis,AR-D,annual,2019,gas oil combustion consumption by to the public,1.91436,TJ,CO2,74100.0,kg/TJ,141854.076,kg -de35df31-87a7-3d21-8151-fe129e329cb2,SESCO,II.1.1,San Luis,AR-D,annual,2019,gas oil combustion consumption by to the public,1.91436,TJ,CH4,3.9,kg/TJ,7.466004,kg -de35df31-87a7-3d21-8151-fe129e329cb2,SESCO,II.1.1,San Luis,AR-D,annual,2019,gas oil combustion consumption by to the public,1.91436,TJ,N2O,3.9,kg/TJ,7.466004,kg -991ea9df-1255-37b7-b474-f7c021ab3457,SESCO,II.1.1,Santa Fe,AR-S,annual,2019,gas oil combustion consumption by to the public,82.13688,TJ,CO2,74100.0,kg/TJ,6086342.808,kg -01724905-0cb1-3152-a833-74ed06f8a222,SESCO,II.1.1,Santa Fe,AR-S,annual,2019,gas oil combustion consumption by to the public,82.13688,TJ,CH4,3.9,kg/TJ,320.33383200000003,kg -01724905-0cb1-3152-a833-74ed06f8a222,SESCO,II.1.1,Santa Fe,AR-S,annual,2019,gas oil combustion consumption by to the public,82.13688,TJ,N2O,3.9,kg/TJ,320.33383200000003,kg -da8f2df0-3d23-3ae6-8ae8-461c1d001b4f,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2019,gas oil combustion consumption by to the public,8.488199999999999,TJ,CO2,74100.0,kg/TJ,628975.6199999999,kg -40d02920-e40c-3e20-971c-c55fc2da38f9,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2019,gas oil combustion consumption by to the public,8.488199999999999,TJ,CH4,3.9,kg/TJ,33.10397999999999,kg -40d02920-e40c-3e20-971c-c55fc2da38f9,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2019,gas oil combustion consumption by to the public,8.488199999999999,TJ,N2O,3.9,kg/TJ,33.10397999999999,kg -607a9ef0-2742-32d8-b393-f4510702d223,SESCO,II.1.1,Tucuman,AR-T,annual,2019,gas oil combustion consumption by to the public,1.37256,TJ,CO2,74100.0,kg/TJ,101706.696,kg -46e7b4bd-06de-30e7-a90f-f652f41928ba,SESCO,II.1.1,Tucuman,AR-T,annual,2019,gas oil combustion consumption by to the public,1.37256,TJ,CH4,3.9,kg/TJ,5.352984,kg -46e7b4bd-06de-30e7-a90f-f652f41928ba,SESCO,II.1.1,Tucuman,AR-T,annual,2019,gas oil combustion consumption by to the public,1.37256,TJ,N2O,3.9,kg/TJ,5.352984,kg -d80eee47-3bdf-3de1-ae3b-447400f441a2,SESCO,II.5.1,Buenos Aires,AR-B,annual,2019,gas oil combustion consumption by agriculture machines,245.14643999999998,TJ,CO2,74100.0,kg/TJ,18165351.204,kg -0e7d8a37-902d-31fd-b1d5-eab6636109a3,SESCO,II.5.1,Buenos Aires,AR-B,annual,2019,gas oil combustion consumption by agriculture machines,245.14643999999998,TJ,CH4,3.9,kg/TJ,956.071116,kg -0e7d8a37-902d-31fd-b1d5-eab6636109a3,SESCO,II.5.1,Buenos Aires,AR-B,annual,2019,gas oil combustion consumption by agriculture machines,245.14643999999998,TJ,N2O,3.9,kg/TJ,956.071116,kg -6e1829ac-8fe0-36ab-87d0-c4c4495a5b82,SESCO,II.5.1,Capital Federal,AR-C,annual,2019,gas oil combustion consumption by agriculture machines,4.40664,TJ,CO2,74100.0,kg/TJ,326532.02400000003,kg -1acff2ea-22cb-39d1-8eeb-dc3a54b2f04f,SESCO,II.5.1,Capital Federal,AR-C,annual,2019,gas oil combustion consumption by agriculture machines,4.40664,TJ,CH4,3.9,kg/TJ,17.185896,kg -1acff2ea-22cb-39d1-8eeb-dc3a54b2f04f,SESCO,II.5.1,Capital Federal,AR-C,annual,2019,gas oil combustion consumption by agriculture machines,4.40664,TJ,N2O,3.9,kg/TJ,17.185896,kg -be751543-a181-3e77-9d6a-92b5a3f2d916,SESCO,II.5.1,Córdoba,AR-X,annual,2019,gas oil combustion consumption by agriculture machines,819.81564,TJ,CO2,74100.0,kg/TJ,60748338.924,kg -0c5101f3-c064-3f87-91b4-12311fb9c8b9,SESCO,II.5.1,Córdoba,AR-X,annual,2019,gas oil combustion consumption by agriculture machines,819.81564,TJ,CH4,3.9,kg/TJ,3197.280996,kg -0c5101f3-c064-3f87-91b4-12311fb9c8b9,SESCO,II.5.1,Córdoba,AR-X,annual,2019,gas oil combustion consumption by agriculture machines,819.81564,TJ,N2O,3.9,kg/TJ,3197.280996,kg -a8858671-5bac-33e7-b484-ef585769cbe7,SESCO,II.5.1,Entre Rios,AR-E,annual,2019,gas oil combustion consumption by agriculture machines,124.86684,TJ,CO2,74100.0,kg/TJ,9252632.844,kg -1fd9da04-8b19-37a5-8f1e-8fdaa4a291bd,SESCO,II.5.1,Entre Rios,AR-E,annual,2019,gas oil combustion consumption by agriculture machines,124.86684,TJ,CH4,3.9,kg/TJ,486.98067599999996,kg -1fd9da04-8b19-37a5-8f1e-8fdaa4a291bd,SESCO,II.5.1,Entre Rios,AR-E,annual,2019,gas oil combustion consumption by agriculture machines,124.86684,TJ,N2O,3.9,kg/TJ,486.98067599999996,kg -3478842e-7634-390a-addd-25f7a26a715e,SESCO,II.5.1,La Pampa,AR-L,annual,2019,gas oil combustion consumption by agriculture machines,95.32068,TJ,CO2,74100.0,kg/TJ,7063262.387999999,kg -0d822519-5d8c-3b61-9029-a3f9588395c6,SESCO,II.5.1,La Pampa,AR-L,annual,2019,gas oil combustion consumption by agriculture machines,95.32068,TJ,CH4,3.9,kg/TJ,371.750652,kg -0d822519-5d8c-3b61-9029-a3f9588395c6,SESCO,II.5.1,La Pampa,AR-L,annual,2019,gas oil combustion consumption by agriculture machines,95.32068,TJ,N2O,3.9,kg/TJ,371.750652,kg -e876da40-68c9-389b-a43d-8675c787e583,SESCO,II.5.1,Santa Fe,AR-S,annual,2019,gas oil combustion consumption by agriculture machines,176.77128,TJ,CO2,74100.0,kg/TJ,13098751.848,kg -7f5c719d-efd7-33cc-a032-48185ffcadce,SESCO,II.5.1,Santa Fe,AR-S,annual,2019,gas oil combustion consumption by agriculture machines,176.77128,TJ,CH4,3.9,kg/TJ,689.4079919999999,kg -7f5c719d-efd7-33cc-a032-48185ffcadce,SESCO,II.5.1,Santa Fe,AR-S,annual,2019,gas oil combustion consumption by agriculture machines,176.77128,TJ,N2O,3.9,kg/TJ,689.4079919999999,kg -9976a8f3-9e90-3d94-9f15-fe685c3d22f7,SESCO,II.1.1,Buenos Aires,AR-B,annual,2019,gasoline combustion consumption by to the public,6.2905999999999995,TJ,CO2,69300.0,kg/TJ,435938.57999999996,kg -8f591d60-462e-39eb-ad2f-c5ef44711400,SESCO,II.1.1,Buenos Aires,AR-B,annual,2019,gasoline combustion consumption by to the public,6.2905999999999995,TJ,CH4,33.0,kg/TJ,207.5898,kg -415f0faf-73e9-3975-b9d3-5e9deb5c62fe,SESCO,II.1.1,Buenos Aires,AR-B,annual,2019,gasoline combustion consumption by to the public,6.2905999999999995,TJ,N2O,3.2,kg/TJ,20.12992,kg -65ee0c57-478a-352c-b0cd-2914755b5fda,SESCO,II.1.1,Buenos Aires,AR-B,annual,2019,gas oil combustion consumption by to the public,11.52228,TJ,CO2,74100.0,kg/TJ,853800.948,kg -deaf0c67-bc0e-34a9-a449-db092843eeb1,SESCO,II.1.1,Buenos Aires,AR-B,annual,2019,gas oil combustion consumption by to the public,11.52228,TJ,CH4,3.9,kg/TJ,44.936892,kg -deaf0c67-bc0e-34a9-a449-db092843eeb1,SESCO,II.1.1,Buenos Aires,AR-B,annual,2019,gas oil combustion consumption by to the public,11.52228,TJ,N2O,3.9,kg/TJ,44.936892,kg -0667300f-45f8-300c-996a-f31db14fe2d2,SESCO,II.1.1,Buenos Aires,AR-B,annual,2019,gas oil combustion consumption by to the public,3259.54104,TJ,CO2,74100.0,kg/TJ,241531991.064,kg -b97477f2-2cce-3905-9045-97bb9770ac05,SESCO,II.1.1,Buenos Aires,AR-B,annual,2019,gas oil combustion consumption by to the public,3259.54104,TJ,CH4,3.9,kg/TJ,12712.210056,kg -b97477f2-2cce-3905-9045-97bb9770ac05,SESCO,II.1.1,Buenos Aires,AR-B,annual,2019,gas oil combustion consumption by to the public,3259.54104,TJ,N2O,3.9,kg/TJ,12712.210056,kg -96d56bd9-73a0-3a57-9a0d-9911f8646a2e,SESCO,II.1.1,Capital Federal,AR-C,annual,2019,gas oil combustion consumption by to the public,100.73868,TJ,CO2,74100.0,kg/TJ,7464736.188,kg -06a4f429-5c1b-3fc5-b5fd-1c5e7752f192,SESCO,II.1.1,Capital Federal,AR-C,annual,2019,gas oil combustion consumption by to the public,100.73868,TJ,CH4,3.9,kg/TJ,392.880852,kg -06a4f429-5c1b-3fc5-b5fd-1c5e7752f192,SESCO,II.1.1,Capital Federal,AR-C,annual,2019,gas oil combustion consumption by to the public,100.73868,TJ,N2O,3.9,kg/TJ,392.880852,kg -addbd6f5-eaee-3654-b113-8290a3d9ea35,SESCO,II.1.1,Catamarca,AR-K,annual,2019,gas oil combustion consumption by to the public,0.46956,TJ,CO2,74100.0,kg/TJ,34794.396,kg -ad29b53f-5abf-3bda-bd72-72399974dca9,SESCO,II.1.1,Catamarca,AR-K,annual,2019,gas oil combustion consumption by to the public,0.46956,TJ,CH4,3.9,kg/TJ,1.831284,kg -ad29b53f-5abf-3bda-bd72-72399974dca9,SESCO,II.1.1,Catamarca,AR-K,annual,2019,gas oil combustion consumption by to the public,0.46956,TJ,N2O,3.9,kg/TJ,1.831284,kg -72a28378-f0d8-3540-9ed6-f2d4f072854a,SESCO,II.1.1,Chaco,AR-H,annual,2019,gas oil combustion consumption by to the public,207.83447999999999,TJ,CO2,74100.0,kg/TJ,15400534.967999998,kg -c1e943b0-15c5-3354-b5e6-cba4271e676a,SESCO,II.1.1,Chaco,AR-H,annual,2019,gas oil combustion consumption by to the public,207.83447999999999,TJ,CH4,3.9,kg/TJ,810.5544719999999,kg -c1e943b0-15c5-3354-b5e6-cba4271e676a,SESCO,II.1.1,Chaco,AR-H,annual,2019,gas oil combustion consumption by to the public,207.83447999999999,TJ,N2O,3.9,kg/TJ,810.5544719999999,kg -fdb82e3f-46b5-3b86-bbe6-d0781fd14424,SESCO,II.1.1,Corrientes,AR-W,annual,2019,gas oil combustion consumption by to the public,21.672,TJ,CO2,74100.0,kg/TJ,1605895.2,kg -36bb7a6f-754c-37af-86a4-467470b9c5ca,SESCO,II.1.1,Corrientes,AR-W,annual,2019,gas oil combustion consumption by to the public,21.672,TJ,CH4,3.9,kg/TJ,84.5208,kg -36bb7a6f-754c-37af-86a4-467470b9c5ca,SESCO,II.1.1,Corrientes,AR-W,annual,2019,gas oil combustion consumption by to the public,21.672,TJ,N2O,3.9,kg/TJ,84.5208,kg -1ea02f74-f40c-3278-8a26-d0be3f3bb772,SESCO,II.1.1,Córdoba,AR-X,annual,2019,gas oil combustion consumption by to the public,1313.72052,TJ,CO2,74100.0,kg/TJ,97346690.532,kg -cda210d1-d341-37f8-9db2-bb596def738a,SESCO,II.1.1,Córdoba,AR-X,annual,2019,gas oil combustion consumption by to the public,1313.72052,TJ,CH4,3.9,kg/TJ,5123.510028000001,kg -cda210d1-d341-37f8-9db2-bb596def738a,SESCO,II.1.1,Córdoba,AR-X,annual,2019,gas oil combustion consumption by to the public,1313.72052,TJ,N2O,3.9,kg/TJ,5123.510028000001,kg -3137fe64-0608-36e1-81d4-f7f3e10d9d50,SESCO,II.1.1,Entre Rios,AR-E,annual,2019,gas oil combustion consumption by to the public,31.713359999999998,TJ,CO2,74100.0,kg/TJ,2349959.976,kg -814e7c61-40a6-3ccc-a69c-166fa7d05094,SESCO,II.1.1,Entre Rios,AR-E,annual,2019,gas oil combustion consumption by to the public,31.713359999999998,TJ,CH4,3.9,kg/TJ,123.682104,kg -814e7c61-40a6-3ccc-a69c-166fa7d05094,SESCO,II.1.1,Entre Rios,AR-E,annual,2019,gas oil combustion consumption by to the public,31.713359999999998,TJ,N2O,3.9,kg/TJ,123.682104,kg -bb89abdd-df1d-3f71-bada-cf9d6cd6db03,SESCO,II.1.1,Formosa,AR-P,annual,2019,gas oil combustion consumption by to the public,0.36119999999999997,TJ,CO2,74100.0,kg/TJ,26764.92,kg -454aa7ee-5023-3d4b-8f5b-bbf0e142d23f,SESCO,II.1.1,Formosa,AR-P,annual,2019,gas oil combustion consumption by to the public,0.36119999999999997,TJ,CH4,3.9,kg/TJ,1.40868,kg -454aa7ee-5023-3d4b-8f5b-bbf0e142d23f,SESCO,II.1.1,Formosa,AR-P,annual,2019,gas oil combustion consumption by to the public,0.36119999999999997,TJ,N2O,3.9,kg/TJ,1.40868,kg -844ce005-e431-3421-9b32-edc4515e19a3,SESCO,II.1.1,La Rioja,AR-F,annual,2019,gas oil combustion consumption by to the public,1.69764,TJ,CO2,74100.0,kg/TJ,125795.124,kg -d50e09c9-472e-3fb3-86b9-c0769cc09c0d,SESCO,II.1.1,La Rioja,AR-F,annual,2019,gas oil combustion consumption by to the public,1.69764,TJ,CH4,3.9,kg/TJ,6.620796,kg -d50e09c9-472e-3fb3-86b9-c0769cc09c0d,SESCO,II.1.1,La Rioja,AR-F,annual,2019,gas oil combustion consumption by to the public,1.69764,TJ,N2O,3.9,kg/TJ,6.620796,kg -a1829438-96f4-3629-90b6-e13299072e74,SESCO,II.1.1,Mendoza,AR-M,annual,2019,gas oil combustion consumption by to the public,449.54952,TJ,CO2,74100.0,kg/TJ,33311619.431999996,kg -62f43ea8-fff1-30ec-9ebe-5bf2e2dc84f5,SESCO,II.1.1,Mendoza,AR-M,annual,2019,gas oil combustion consumption by to the public,449.54952,TJ,CH4,3.9,kg/TJ,1753.2431279999998,kg -62f43ea8-fff1-30ec-9ebe-5bf2e2dc84f5,SESCO,II.1.1,Mendoza,AR-M,annual,2019,gas oil combustion consumption by to the public,449.54952,TJ,N2O,3.9,kg/TJ,1753.2431279999998,kg -224c9d1f-be70-327e-9bd9-400c4cb2697b,SESCO,II.1.1,Misiones,AR-N,annual,2019,gas oil combustion consumption by to the public,122.95248,TJ,CO2,74100.0,kg/TJ,9110778.768,kg -e6ce5f8f-bf05-305a-a336-76cccd6437ff,SESCO,II.1.1,Misiones,AR-N,annual,2019,gas oil combustion consumption by to the public,122.95248,TJ,CH4,3.9,kg/TJ,479.51467199999996,kg -e6ce5f8f-bf05-305a-a336-76cccd6437ff,SESCO,II.1.1,Misiones,AR-N,annual,2019,gas oil combustion consumption by to the public,122.95248,TJ,N2O,3.9,kg/TJ,479.51467199999996,kg -93c28e86-9ece-3307-9a13-8061184d52d4,SESCO,II.1.1,San Juan,AR-J,annual,2019,gas oil combustion consumption by to the public,1.33644,TJ,CO2,74100.0,kg/TJ,99030.20400000001,kg -b121ab16-c847-3ad8-89d1-c15f5d2a64d5,SESCO,II.1.1,San Juan,AR-J,annual,2019,gas oil combustion consumption by to the public,1.33644,TJ,CH4,3.9,kg/TJ,5.212116,kg -b121ab16-c847-3ad8-89d1-c15f5d2a64d5,SESCO,II.1.1,San Juan,AR-J,annual,2019,gas oil combustion consumption by to the public,1.33644,TJ,N2O,3.9,kg/TJ,5.212116,kg -d2122981-496c-3175-8c93-bc894d9ad32f,SESCO,II.1.1,San Luis,AR-D,annual,2019,gas oil combustion consumption by to the public,0.86688,TJ,CO2,74100.0,kg/TJ,64235.808,kg -67dd1776-6b7f-322f-b290-0a26543b9c1b,SESCO,II.1.1,San Luis,AR-D,annual,2019,gas oil combustion consumption by to the public,0.86688,TJ,CH4,3.9,kg/TJ,3.380832,kg -67dd1776-6b7f-322f-b290-0a26543b9c1b,SESCO,II.1.1,San Luis,AR-D,annual,2019,gas oil combustion consumption by to the public,0.86688,TJ,N2O,3.9,kg/TJ,3.380832,kg -0ad379b5-fcf4-3e25-889c-eee22e3068c7,SESCO,II.1.1,Santa Fe,AR-S,annual,2019,gas oil combustion consumption by to the public,1656.2826,TJ,CO2,74100.0,kg/TJ,122730540.66,kg -1e33e9c2-14c1-386b-87ab-ab4a6d7e55b5,SESCO,II.1.1,Santa Fe,AR-S,annual,2019,gas oil combustion consumption by to the public,1656.2826,TJ,CH4,3.9,kg/TJ,6459.50214,kg -1e33e9c2-14c1-386b-87ab-ab4a6d7e55b5,SESCO,II.1.1,Santa Fe,AR-S,annual,2019,gas oil combustion consumption by to the public,1656.2826,TJ,N2O,3.9,kg/TJ,6459.50214,kg -df759eea-95c1-3839-8bf1-3e0c95bb37c0,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2019,gas oil combustion consumption by to the public,13.94232,TJ,CO2,74100.0,kg/TJ,1033125.912,kg -4bff9dca-f84c-3905-b873-d61a85574356,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2019,gas oil combustion consumption by to the public,13.94232,TJ,CH4,3.9,kg/TJ,54.375048,kg -4bff9dca-f84c-3905-b873-d61a85574356,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2019,gas oil combustion consumption by to the public,13.94232,TJ,N2O,3.9,kg/TJ,54.375048,kg -abbfcc0c-6bcd-3a3e-96ca-1e82647c462c,SESCO,II.1.1,Tucuman,AR-T,annual,2019,gas oil combustion consumption by to the public,3.90096,TJ,CO2,74100.0,kg/TJ,289061.136,kg -d81dddce-31c6-3c07-b430-bbe875724af0,SESCO,II.1.1,Tucuman,AR-T,annual,2019,gas oil combustion consumption by to the public,3.90096,TJ,CH4,3.9,kg/TJ,15.213744,kg -d81dddce-31c6-3c07-b430-bbe875724af0,SESCO,II.1.1,Tucuman,AR-T,annual,2019,gas oil combustion consumption by to the public,3.90096,TJ,N2O,3.9,kg/TJ,15.213744,kg -c835af05-65f4-312f-bc31-76384f6c77c1,SESCO,II.1.1,Buenos Aires,AR-B,annual,2019,gas oil combustion consumption by to the public,374.78112,TJ,CO2,74100.0,kg/TJ,27771280.992,kg -6dad6bbb-e604-374d-8d2e-cb8f30201285,SESCO,II.1.1,Buenos Aires,AR-B,annual,2019,gas oil combustion consumption by to the public,374.78112,TJ,CH4,3.9,kg/TJ,1461.646368,kg -6dad6bbb-e604-374d-8d2e-cb8f30201285,SESCO,II.1.1,Buenos Aires,AR-B,annual,2019,gas oil combustion consumption by to the public,374.78112,TJ,N2O,3.9,kg/TJ,1461.646368,kg -896ab571-f908-35f1-b130-06cd9af4835c,SESCO,II.1.1,Capital Federal,AR-C,annual,2019,gas oil combustion consumption by to the public,13.0032,TJ,CO2,74100.0,kg/TJ,963537.12,kg -30e54ee4-4e96-3f90-aaf6-3155ceb1f0d3,SESCO,II.1.1,Capital Federal,AR-C,annual,2019,gas oil combustion consumption by to the public,13.0032,TJ,CH4,3.9,kg/TJ,50.71248,kg -30e54ee4-4e96-3f90-aaf6-3155ceb1f0d3,SESCO,II.1.1,Capital Federal,AR-C,annual,2019,gas oil combustion consumption by to the public,13.0032,TJ,N2O,3.9,kg/TJ,50.71248,kg -85a645da-c038-35a6-a5fd-0ac40b2ec5f6,SESCO,II.1.1,Catamarca,AR-K,annual,2019,gas oil combustion consumption by to the public,0.39732,TJ,CO2,74100.0,kg/TJ,29441.412,kg -476f10f9-2789-32e6-bbd6-1a673558b1f6,SESCO,II.1.1,Catamarca,AR-K,annual,2019,gas oil combustion consumption by to the public,0.39732,TJ,CH4,3.9,kg/TJ,1.549548,kg -476f10f9-2789-32e6-bbd6-1a673558b1f6,SESCO,II.1.1,Catamarca,AR-K,annual,2019,gas oil combustion consumption by to the public,0.39732,TJ,N2O,3.9,kg/TJ,1.549548,kg -75937765-9ecd-35af-abcb-4fe98205d537,SESCO,II.1.1,Chaco,AR-H,annual,2019,gas oil combustion consumption by to the public,15.56772,TJ,CO2,74100.0,kg/TJ,1153568.052,kg -70ea655b-3e89-3f81-a61f-8fc3d1ee9700,SESCO,II.1.1,Chaco,AR-H,annual,2019,gas oil combustion consumption by to the public,15.56772,TJ,CH4,3.9,kg/TJ,60.714107999999996,kg -70ea655b-3e89-3f81-a61f-8fc3d1ee9700,SESCO,II.1.1,Chaco,AR-H,annual,2019,gas oil combustion consumption by to the public,15.56772,TJ,N2O,3.9,kg/TJ,60.714107999999996,kg -1e9c8c7d-9e0b-33b9-a9f7-da9c0f16355d,SESCO,II.1.1,Corrientes,AR-W,annual,2019,gas oil combustion consumption by to the public,5.30964,TJ,CO2,74100.0,kg/TJ,393444.324,kg -e98ce461-0ad1-3b0e-a8cc-28676e9e3ca4,SESCO,II.1.1,Corrientes,AR-W,annual,2019,gas oil combustion consumption by to the public,5.30964,TJ,CH4,3.9,kg/TJ,20.707596,kg -e98ce461-0ad1-3b0e-a8cc-28676e9e3ca4,SESCO,II.1.1,Corrientes,AR-W,annual,2019,gas oil combustion consumption by to the public,5.30964,TJ,N2O,3.9,kg/TJ,20.707596,kg -cb66139c-ef1f-3a1e-8a71-01647f266219,SESCO,II.1.1,Córdoba,AR-X,annual,2019,gas oil combustion consumption by to the public,269.8164,TJ,CO2,74100.0,kg/TJ,19993395.24,kg -1dc32401-7f2e-3119-acb5-49d7968a7997,SESCO,II.1.1,Córdoba,AR-X,annual,2019,gas oil combustion consumption by to the public,269.8164,TJ,CH4,3.9,kg/TJ,1052.28396,kg -1dc32401-7f2e-3119-acb5-49d7968a7997,SESCO,II.1.1,Córdoba,AR-X,annual,2019,gas oil combustion consumption by to the public,269.8164,TJ,N2O,3.9,kg/TJ,1052.28396,kg -b54f7c49-1278-3443-9bf4-2be9eeba9651,SESCO,II.1.1,Entre Rios,AR-E,annual,2019,gas oil combustion consumption by to the public,9.06612,TJ,CO2,74100.0,kg/TJ,671799.492,kg -836ce3e6-16ab-3925-b8dc-495a69103743,SESCO,II.1.1,Entre Rios,AR-E,annual,2019,gas oil combustion consumption by to the public,9.06612,TJ,CH4,3.9,kg/TJ,35.357867999999996,kg -836ce3e6-16ab-3925-b8dc-495a69103743,SESCO,II.1.1,Entre Rios,AR-E,annual,2019,gas oil combustion consumption by to the public,9.06612,TJ,N2O,3.9,kg/TJ,35.357867999999996,kg -d75eb030-93ca-3ec5-9d7e-1ee4eac8df94,SESCO,II.1.1,Mendoza,AR-M,annual,2019,gas oil combustion consumption by to the public,78.52488,TJ,CO2,74100.0,kg/TJ,5818693.608,kg -af46014a-a434-3a52-a6d2-b174ca1df01d,SESCO,II.1.1,Mendoza,AR-M,annual,2019,gas oil combustion consumption by to the public,78.52488,TJ,CH4,3.9,kg/TJ,306.247032,kg -af46014a-a434-3a52-a6d2-b174ca1df01d,SESCO,II.1.1,Mendoza,AR-M,annual,2019,gas oil combustion consumption by to the public,78.52488,TJ,N2O,3.9,kg/TJ,306.247032,kg -d5216da4-1667-36ef-8e66-778d923d4dcc,SESCO,II.1.1,Misiones,AR-N,annual,2019,gas oil combustion consumption by to the public,13.545,TJ,CO2,74100.0,kg/TJ,1003684.5,kg -553816eb-f42f-34c9-b2c4-1f6334b632ee,SESCO,II.1.1,Misiones,AR-N,annual,2019,gas oil combustion consumption by to the public,13.545,TJ,CH4,3.9,kg/TJ,52.8255,kg -553816eb-f42f-34c9-b2c4-1f6334b632ee,SESCO,II.1.1,Misiones,AR-N,annual,2019,gas oil combustion consumption by to the public,13.545,TJ,N2O,3.9,kg/TJ,52.8255,kg -1f9b135f-02ca-3440-8566-156f5f683785,SESCO,II.1.1,Santa Fe,AR-S,annual,2019,gas oil combustion consumption by to the public,188.727,TJ,CO2,74100.0,kg/TJ,13984670.700000001,kg -8d56c633-8d69-3f50-89be-3d4b3a5ace87,SESCO,II.1.1,Santa Fe,AR-S,annual,2019,gas oil combustion consumption by to the public,188.727,TJ,CH4,3.9,kg/TJ,736.0353,kg -8d56c633-8d69-3f50-89be-3d4b3a5ace87,SESCO,II.1.1,Santa Fe,AR-S,annual,2019,gas oil combustion consumption by to the public,188.727,TJ,N2O,3.9,kg/TJ,736.0353,kg -ef5e0ad5-0a67-3801-9587-c709bad4ce56,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2019,gas oil combustion consumption by to the public,4.44276,TJ,CO2,74100.0,kg/TJ,329208.516,kg -836066f3-46dd-3847-b3be-9cf024a9fe6f,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2019,gas oil combustion consumption by to the public,4.44276,TJ,CH4,3.9,kg/TJ,17.326763999999997,kg -836066f3-46dd-3847-b3be-9cf024a9fe6f,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2019,gas oil combustion consumption by to the public,4.44276,TJ,N2O,3.9,kg/TJ,17.326763999999997,kg -b9fa39fa-e512-3d9a-bc25-0be2e90dbea0,SESCO,II.1.1,Tucuman,AR-T,annual,2019,gas oil combustion consumption by to the public,0.79464,TJ,CO2,74100.0,kg/TJ,58882.824,kg -c5c04d8e-1cb1-3ce6-adf2-d2d24c6a064b,SESCO,II.1.1,Tucuman,AR-T,annual,2019,gas oil combustion consumption by to the public,0.79464,TJ,CH4,3.9,kg/TJ,3.099096,kg -c5c04d8e-1cb1-3ce6-adf2-d2d24c6a064b,SESCO,II.1.1,Tucuman,AR-T,annual,2019,gas oil combustion consumption by to the public,0.79464,TJ,N2O,3.9,kg/TJ,3.099096,kg -e830a96f-1bec-3e49-86ea-ba3c2c910593,SESCO,II.1.1,Santa Fe,AR-S,annual,2019,jet kerosene combustion consumption by to the public,3.5856419999999996,TJ,CO2,71500.0,kg/TJ,256373.40299999996,kg -af271562-9db7-3db6-aaa2-337be2a7cf87,SESCO,II.1.1,Santa Fe,AR-S,annual,2019,jet kerosene combustion consumption by to the public,3.5856419999999996,TJ,CH4,0.5,kg/TJ,1.7928209999999998,kg -a1280ca4-9d42-3c3e-b381-b07cc0abc4d7,SESCO,II.1.1,Santa Fe,AR-S,annual,2019,jet kerosene combustion consumption by to the public,3.5856419999999996,TJ,N2O,2.0,kg/TJ,7.171283999999999,kg -42e3c708-5be6-3955-b9d0-1e43173d8e4a,SESCO,I.3.1,Buenos Aires,AR-B,annual,2019,gas oil combustion consumption by petrochemical industries,27.234479999999998,TJ,CO2,74100.0,kg/TJ,2018074.9679999999,kg -a413af96-53f5-3a61-b0ad-0f43b1817a1e,SESCO,I.3.1,Buenos Aires,AR-B,annual,2019,gas oil combustion consumption by petrochemical industries,27.234479999999998,TJ,CH4,3.9,kg/TJ,106.21447199999999,kg -a413af96-53f5-3a61-b0ad-0f43b1817a1e,SESCO,I.3.1,Buenos Aires,AR-B,annual,2019,gas oil combustion consumption by petrochemical industries,27.234479999999998,TJ,N2O,3.9,kg/TJ,106.21447199999999,kg -bacc9905-1153-32b2-8303-b1ad786252e3,SESCO,I.3.1,Capital Federal,AR-C,annual,2019,gas oil combustion consumption by petrochemical industries,1.4447999999999999,TJ,CO2,74100.0,kg/TJ,107059.68,kg -1bb00c0a-5bd4-3908-8095-9e5500cdfd53,SESCO,I.3.1,Capital Federal,AR-C,annual,2019,gas oil combustion consumption by petrochemical industries,1.4447999999999999,TJ,CH4,3.9,kg/TJ,5.63472,kg -1bb00c0a-5bd4-3908-8095-9e5500cdfd53,SESCO,I.3.1,Capital Federal,AR-C,annual,2019,gas oil combustion consumption by petrochemical industries,1.4447999999999999,TJ,N2O,3.9,kg/TJ,5.63472,kg -42bcfec2-08aa-3d5a-8467-bb48a4cdc683,SESCO,II.1.1,Chubut,AR-U,annual,2019,gas oil combustion consumption by freight transport,1.1706492,TJ,CO2,74100.0,kg/TJ,86745.10571999999,kg -01025cc4-9226-345b-a16f-eb8f04128053,SESCO,II.1.1,Chubut,AR-U,annual,2019,gas oil combustion consumption by freight transport,1.1706492,TJ,CH4,3.9,kg/TJ,4.56553188,kg -01025cc4-9226-345b-a16f-eb8f04128053,SESCO,II.1.1,Chubut,AR-U,annual,2019,gas oil combustion consumption by freight transport,1.1706492,TJ,N2O,3.9,kg/TJ,4.56553188,kg -e21dc272-d7b5-3e95-931d-3d1e3f6ea6ff,SESCO,II.5.1,Buenos Aires,AR-B,annual,2019,gas oil combustion consumption by agriculture machines,459.19356,TJ,CO2,74100.0,kg/TJ,34026242.796,kg -93665390-0083-3e5a-a611-71f7415f4d19,SESCO,II.5.1,Buenos Aires,AR-B,annual,2019,gas oil combustion consumption by agriculture machines,459.19356,TJ,CH4,3.9,kg/TJ,1790.8548839999999,kg -93665390-0083-3e5a-a611-71f7415f4d19,SESCO,II.5.1,Buenos Aires,AR-B,annual,2019,gas oil combustion consumption by agriculture machines,459.19356,TJ,N2O,3.9,kg/TJ,1790.8548839999999,kg -aa824116-9ea4-3007-8edd-4b15a0da7e9c,SESCO,II.5.1,Chaco,AR-H,annual,2019,gas oil combustion consumption by agriculture machines,103.98948,TJ,CO2,74100.0,kg/TJ,7705620.468,kg -cbd98cbf-a25f-3c6a-841e-d0e87e1ec1ee,SESCO,II.5.1,Chaco,AR-H,annual,2019,gas oil combustion consumption by agriculture machines,103.98948,TJ,CH4,3.9,kg/TJ,405.558972,kg -cbd98cbf-a25f-3c6a-841e-d0e87e1ec1ee,SESCO,II.5.1,Chaco,AR-H,annual,2019,gas oil combustion consumption by agriculture machines,103.98948,TJ,N2O,3.9,kg/TJ,405.558972,kg -62c53aae-8911-3d92-bae4-33755ebff699,SESCO,II.5.1,Corrientes,AR-W,annual,2019,gas oil combustion consumption by agriculture machines,30.55752,TJ,CO2,74100.0,kg/TJ,2264312.232,kg -cd60f2e7-e016-3bc5-861c-eb8564c2fab6,SESCO,II.5.1,Corrientes,AR-W,annual,2019,gas oil combustion consumption by agriculture machines,30.55752,TJ,CH4,3.9,kg/TJ,119.174328,kg -cd60f2e7-e016-3bc5-861c-eb8564c2fab6,SESCO,II.5.1,Corrientes,AR-W,annual,2019,gas oil combustion consumption by agriculture machines,30.55752,TJ,N2O,3.9,kg/TJ,119.174328,kg -af74961a-9edc-3def-b1b0-0a442be74361,SESCO,II.5.1,Córdoba,AR-X,annual,2019,gas oil combustion consumption by agriculture machines,485.34443999999996,TJ,CO2,74100.0,kg/TJ,35964023.004,kg -f43fecf1-047f-30ac-a191-b77cc4396f30,SESCO,II.5.1,Córdoba,AR-X,annual,2019,gas oil combustion consumption by agriculture machines,485.34443999999996,TJ,CH4,3.9,kg/TJ,1892.8433159999997,kg -f43fecf1-047f-30ac-a191-b77cc4396f30,SESCO,II.5.1,Córdoba,AR-X,annual,2019,gas oil combustion consumption by agriculture machines,485.34443999999996,TJ,N2O,3.9,kg/TJ,1892.8433159999997,kg -9d5f5eed-9ba7-3321-91fa-d3d5fe178787,SESCO,II.5.1,Entre Rios,AR-E,annual,2019,gas oil combustion consumption by agriculture machines,24.41712,TJ,CO2,74100.0,kg/TJ,1809308.592,kg -9cd29067-175d-37e0-b36b-56fb0d15f826,SESCO,II.5.1,Entre Rios,AR-E,annual,2019,gas oil combustion consumption by agriculture machines,24.41712,TJ,CH4,3.9,kg/TJ,95.226768,kg -9cd29067-175d-37e0-b36b-56fb0d15f826,SESCO,II.5.1,Entre Rios,AR-E,annual,2019,gas oil combustion consumption by agriculture machines,24.41712,TJ,N2O,3.9,kg/TJ,95.226768,kg -a9470864-6d9c-37a4-ae3b-cbdd85ebd5ba,SESCO,II.5.1,Mendoza,AR-M,annual,2019,gas oil combustion consumption by agriculture machines,252.18984,TJ,CO2,74100.0,kg/TJ,18687267.144,kg -fcddc887-de64-3ff7-98c2-55467f449e0f,SESCO,II.5.1,Mendoza,AR-M,annual,2019,gas oil combustion consumption by agriculture machines,252.18984,TJ,CH4,3.9,kg/TJ,983.540376,kg -fcddc887-de64-3ff7-98c2-55467f449e0f,SESCO,II.5.1,Mendoza,AR-M,annual,2019,gas oil combustion consumption by agriculture machines,252.18984,TJ,N2O,3.9,kg/TJ,983.540376,kg -0da67008-7bd6-3576-bfc2-6f40b6adf41e,SESCO,II.5.1,Santa Fe,AR-S,annual,2019,gas oil combustion consumption by agriculture machines,621.30012,TJ,CO2,74100.0,kg/TJ,46038338.892,kg -fbcb9a5e-0d02-3756-a1c1-689923cb386a,SESCO,II.5.1,Santa Fe,AR-S,annual,2019,gas oil combustion consumption by agriculture machines,621.30012,TJ,CH4,3.9,kg/TJ,2423.070468,kg -fbcb9a5e-0d02-3756-a1c1-689923cb386a,SESCO,II.5.1,Santa Fe,AR-S,annual,2019,gas oil combustion consumption by agriculture machines,621.30012,TJ,N2O,3.9,kg/TJ,2423.070468,kg -fd251cc3-8926-33f9-8fc6-c7676c04e9a1,SESCO,II.5.1,Santiago del Estero,AR-G,annual,2019,gas oil combustion consumption by agriculture machines,42.00756,TJ,CO2,74100.0,kg/TJ,3112760.196,kg -b7519c6b-d122-32c5-8abf-8a831a8a90f5,SESCO,II.5.1,Santiago del Estero,AR-G,annual,2019,gas oil combustion consumption by agriculture machines,42.00756,TJ,CH4,3.9,kg/TJ,163.82948399999998,kg -b7519c6b-d122-32c5-8abf-8a831a8a90f5,SESCO,II.5.1,Santiago del Estero,AR-G,annual,2019,gas oil combustion consumption by agriculture machines,42.00756,TJ,N2O,3.9,kg/TJ,163.82948399999998,kg -20d3c8bd-9a9c-31d6-9b28-1ae356b22990,SESCO,II.5.1,Tucuman,AR-T,annual,2019,gas oil combustion consumption by agriculture machines,26.62044,TJ,CO2,74100.0,kg/TJ,1972574.6039999998,kg -51e5326e-ca20-3e09-88e5-05b2ac2cd122,SESCO,II.5.1,Tucuman,AR-T,annual,2019,gas oil combustion consumption by agriculture machines,26.62044,TJ,CH4,3.9,kg/TJ,103.81971599999999,kg -51e5326e-ca20-3e09-88e5-05b2ac2cd122,SESCO,II.5.1,Tucuman,AR-T,annual,2019,gas oil combustion consumption by agriculture machines,26.62044,TJ,N2O,3.9,kg/TJ,103.81971599999999,kg -9af981e4-54f7-3881-9c59-eb874c4e5927,SESCO,II.5.1,Buenos Aires,AR-B,annual,2019,gas oil combustion consumption by agriculture machines,17.80716,TJ,CO2,74100.0,kg/TJ,1319510.5559999999,kg -399560fd-e972-3d51-82c2-52dc9c4bf85a,SESCO,II.5.1,Buenos Aires,AR-B,annual,2019,gas oil combustion consumption by agriculture machines,17.80716,TJ,CH4,3.9,kg/TJ,69.447924,kg -399560fd-e972-3d51-82c2-52dc9c4bf85a,SESCO,II.5.1,Buenos Aires,AR-B,annual,2019,gas oil combustion consumption by agriculture machines,17.80716,TJ,N2O,3.9,kg/TJ,69.447924,kg -09c82553-218f-33c1-a726-c27fdfa5c93b,SESCO,II.5.1,Chaco,AR-H,annual,2019,gas oil combustion consumption by agriculture machines,23.40576,TJ,CO2,74100.0,kg/TJ,1734366.816,kg -617d4aaf-e75d-359f-9453-ad269e7b75c8,SESCO,II.5.1,Chaco,AR-H,annual,2019,gas oil combustion consumption by agriculture machines,23.40576,TJ,CH4,3.9,kg/TJ,91.282464,kg -617d4aaf-e75d-359f-9453-ad269e7b75c8,SESCO,II.5.1,Chaco,AR-H,annual,2019,gas oil combustion consumption by agriculture machines,23.40576,TJ,N2O,3.9,kg/TJ,91.282464,kg -3f2eebf7-42db-38e9-a676-fce8cf3ffe2e,SESCO,II.5.1,Corrientes,AR-W,annual,2019,gas oil combustion consumption by agriculture machines,11.26944,TJ,CO2,74100.0,kg/TJ,835065.504,kg -ffe5c9c6-6c0f-31f1-9df8-ca831424fed0,SESCO,II.5.1,Corrientes,AR-W,annual,2019,gas oil combustion consumption by agriculture machines,11.26944,TJ,CH4,3.9,kg/TJ,43.950815999999996,kg -ffe5c9c6-6c0f-31f1-9df8-ca831424fed0,SESCO,II.5.1,Corrientes,AR-W,annual,2019,gas oil combustion consumption by agriculture machines,11.26944,TJ,N2O,3.9,kg/TJ,43.950815999999996,kg -f02c745c-591d-338b-b5c0-ceaae65c492a,SESCO,II.5.1,Córdoba,AR-X,annual,2019,gas oil combustion consumption by agriculture machines,34.78356,TJ,CO2,74100.0,kg/TJ,2577461.796,kg -a0bb699e-dc34-35cb-9e28-907ef759d7bc,SESCO,II.5.1,Córdoba,AR-X,annual,2019,gas oil combustion consumption by agriculture machines,34.78356,TJ,CH4,3.9,kg/TJ,135.65588400000001,kg -a0bb699e-dc34-35cb-9e28-907ef759d7bc,SESCO,II.5.1,Córdoba,AR-X,annual,2019,gas oil combustion consumption by agriculture machines,34.78356,TJ,N2O,3.9,kg/TJ,135.65588400000001,kg -eb4a2748-740c-3ea7-a9f4-ee01e0740338,SESCO,II.5.1,Mendoza,AR-M,annual,2019,gas oil combustion consumption by agriculture machines,68.2668,TJ,CO2,74100.0,kg/TJ,5058569.88,kg -1e7d1a83-afa6-3372-a9de-e9394be318d6,SESCO,II.5.1,Mendoza,AR-M,annual,2019,gas oil combustion consumption by agriculture machines,68.2668,TJ,CH4,3.9,kg/TJ,266.24052,kg -1e7d1a83-afa6-3372-a9de-e9394be318d6,SESCO,II.5.1,Mendoza,AR-M,annual,2019,gas oil combustion consumption by agriculture machines,68.2668,TJ,N2O,3.9,kg/TJ,266.24052,kg -4d5e2cf3-7df7-3878-bdac-8396c95ceca4,SESCO,II.5.1,Santa Fe,AR-S,annual,2019,gas oil combustion consumption by agriculture machines,19.39644,TJ,CO2,74100.0,kg/TJ,1437276.204,kg -cf33c530-a42c-3e8d-b672-cd00aa922598,SESCO,II.5.1,Santa Fe,AR-S,annual,2019,gas oil combustion consumption by agriculture machines,19.39644,TJ,CH4,3.9,kg/TJ,75.64611599999999,kg -cf33c530-a42c-3e8d-b672-cd00aa922598,SESCO,II.5.1,Santa Fe,AR-S,annual,2019,gas oil combustion consumption by agriculture machines,19.39644,TJ,N2O,3.9,kg/TJ,75.64611599999999,kg -a2d56b19-f66f-3a84-8d72-88833e0cba8e,SESCO,II.5.1,Santiago del Estero,AR-G,annual,2019,gas oil combustion consumption by agriculture machines,3.68424,TJ,CO2,74100.0,kg/TJ,273002.184,kg -dd1034fd-ce41-3f2e-b6b4-5b6b4e068756,SESCO,II.5.1,Santiago del Estero,AR-G,annual,2019,gas oil combustion consumption by agriculture machines,3.68424,TJ,CH4,3.9,kg/TJ,14.368535999999999,kg -dd1034fd-ce41-3f2e-b6b4-5b6b4e068756,SESCO,II.5.1,Santiago del Estero,AR-G,annual,2019,gas oil combustion consumption by agriculture machines,3.68424,TJ,N2O,3.9,kg/TJ,14.368535999999999,kg -01c9cb95-ce75-373c-bfec-961234a9e2ab,SESCO,II.5.1,Tucuman,AR-T,annual,2019,gas oil combustion consumption by agriculture machines,7.29624,TJ,CO2,74100.0,kg/TJ,540651.384,kg -572cd37f-688f-3a78-af4c-451bfa478492,SESCO,II.5.1,Tucuman,AR-T,annual,2019,gas oil combustion consumption by agriculture machines,7.29624,TJ,CH4,3.9,kg/TJ,28.455336,kg -572cd37f-688f-3a78-af4c-451bfa478492,SESCO,II.5.1,Tucuman,AR-T,annual,2019,gas oil combustion consumption by agriculture machines,7.29624,TJ,N2O,3.9,kg/TJ,28.455336,kg -c258b39c-21a2-33b6-93a4-ebee60d9d02f,SESCO,II.1.1,Buenos Aires,AR-B,annual,2019,gas oil combustion consumption by to the public,2149.28448,TJ,CO2,74100.0,kg/TJ,159261979.968,kg -89fef529-1c12-31e8-ba84-dc0d62f6f199,SESCO,II.1.1,Buenos Aires,AR-B,annual,2019,gas oil combustion consumption by to the public,2149.28448,TJ,CH4,3.9,kg/TJ,8382.209471999999,kg -89fef529-1c12-31e8-ba84-dc0d62f6f199,SESCO,II.1.1,Buenos Aires,AR-B,annual,2019,gas oil combustion consumption by to the public,2149.28448,TJ,N2O,3.9,kg/TJ,8382.209471999999,kg -521a527f-08a7-3fa4-b122-25117bf3541c,SESCO,II.1.1,Capital Federal,AR-C,annual,2019,gas oil combustion consumption by to the public,195.98712,TJ,CO2,74100.0,kg/TJ,14522645.592,kg -7e12bc3d-ac74-35c8-aebb-699492889140,SESCO,II.1.1,Capital Federal,AR-C,annual,2019,gas oil combustion consumption by to the public,195.98712,TJ,CH4,3.9,kg/TJ,764.349768,kg -7e12bc3d-ac74-35c8-aebb-699492889140,SESCO,II.1.1,Capital Federal,AR-C,annual,2019,gas oil combustion consumption by to the public,195.98712,TJ,N2O,3.9,kg/TJ,764.349768,kg -e429ea82-d066-3fb9-a040-cb740d1112a3,SESCO,II.1.1,Catamarca,AR-K,annual,2019,gas oil combustion consumption by to the public,69.45876,TJ,CO2,74100.0,kg/TJ,5146894.115999999,kg -5045a269-f963-3e95-b8c9-1314c5069b98,SESCO,II.1.1,Catamarca,AR-K,annual,2019,gas oil combustion consumption by to the public,69.45876,TJ,CH4,3.9,kg/TJ,270.889164,kg -5045a269-f963-3e95-b8c9-1314c5069b98,SESCO,II.1.1,Catamarca,AR-K,annual,2019,gas oil combustion consumption by to the public,69.45876,TJ,N2O,3.9,kg/TJ,270.889164,kg -29e359e4-82ae-3cf3-a2a5-df4c468eff11,SESCO,II.1.1,Chaco,AR-H,annual,2019,gas oil combustion consumption by to the public,71.40924,TJ,CO2,74100.0,kg/TJ,5291424.683999999,kg -b8915d5c-c863-347e-b959-907a2ea8117f,SESCO,II.1.1,Chaco,AR-H,annual,2019,gas oil combustion consumption by to the public,71.40924,TJ,CH4,3.9,kg/TJ,278.496036,kg -b8915d5c-c863-347e-b959-907a2ea8117f,SESCO,II.1.1,Chaco,AR-H,annual,2019,gas oil combustion consumption by to the public,71.40924,TJ,N2O,3.9,kg/TJ,278.496036,kg -af043df3-2cc2-3b43-89cd-f430b63978cc,SESCO,II.1.1,Chubut,AR-U,annual,2019,gas oil combustion consumption by to the public,427.26348,TJ,CO2,74100.0,kg/TJ,31660223.868,kg -b91330aa-a84c-3cfa-9cc7-35e077244212,SESCO,II.1.1,Chubut,AR-U,annual,2019,gas oil combustion consumption by to the public,427.26348,TJ,CH4,3.9,kg/TJ,1666.327572,kg -b91330aa-a84c-3cfa-9cc7-35e077244212,SESCO,II.1.1,Chubut,AR-U,annual,2019,gas oil combustion consumption by to the public,427.26348,TJ,N2O,3.9,kg/TJ,1666.327572,kg -25124378-8846-3a63-aa63-11a72b86f9e3,SESCO,II.1.1,Corrientes,AR-W,annual,2019,gas oil combustion consumption by to the public,149.3562,TJ,CO2,74100.0,kg/TJ,11067294.42,kg -b091107b-6f46-3143-b443-b74365159ba1,SESCO,II.1.1,Corrientes,AR-W,annual,2019,gas oil combustion consumption by to the public,149.3562,TJ,CH4,3.9,kg/TJ,582.48918,kg -b091107b-6f46-3143-b443-b74365159ba1,SESCO,II.1.1,Corrientes,AR-W,annual,2019,gas oil combustion consumption by to the public,149.3562,TJ,N2O,3.9,kg/TJ,582.48918,kg -322d9719-fd33-3f9c-a44b-05d8b58bfba9,SESCO,II.1.1,Córdoba,AR-X,annual,2019,gas oil combustion consumption by to the public,931.60704,TJ,CO2,74100.0,kg/TJ,69032081.664,kg -05145efc-37ad-3cb1-8b80-f67236ec94d4,SESCO,II.1.1,Córdoba,AR-X,annual,2019,gas oil combustion consumption by to the public,931.60704,TJ,CH4,3.9,kg/TJ,3633.267456,kg -05145efc-37ad-3cb1-8b80-f67236ec94d4,SESCO,II.1.1,Córdoba,AR-X,annual,2019,gas oil combustion consumption by to the public,931.60704,TJ,N2O,3.9,kg/TJ,3633.267456,kg -6233c910-9d78-308d-82fb-7578d5eccc1c,SESCO,II.1.1,Entre Rios,AR-E,annual,2019,gas oil combustion consumption by to the public,326.84988,TJ,CO2,74100.0,kg/TJ,24219576.108,kg -58772162-1d61-3829-857d-26556fd3e7fc,SESCO,II.1.1,Entre Rios,AR-E,annual,2019,gas oil combustion consumption by to the public,326.84988,TJ,CH4,3.9,kg/TJ,1274.714532,kg -58772162-1d61-3829-857d-26556fd3e7fc,SESCO,II.1.1,Entre Rios,AR-E,annual,2019,gas oil combustion consumption by to the public,326.84988,TJ,N2O,3.9,kg/TJ,1274.714532,kg -b7cbc94d-0739-39c9-b0bf-b143f021f15f,SESCO,II.1.1,Formosa,AR-P,annual,2019,gas oil combustion consumption by to the public,94.6344,TJ,CO2,74100.0,kg/TJ,7012409.04,kg -cc5da877-c164-3968-b6ce-8c568a4e30ca,SESCO,II.1.1,Formosa,AR-P,annual,2019,gas oil combustion consumption by to the public,94.6344,TJ,CH4,3.9,kg/TJ,369.07416,kg -cc5da877-c164-3968-b6ce-8c568a4e30ca,SESCO,II.1.1,Formosa,AR-P,annual,2019,gas oil combustion consumption by to the public,94.6344,TJ,N2O,3.9,kg/TJ,369.07416,kg -7683bc6e-696e-35df-b1f7-7d5894108fa0,SESCO,II.1.1,Jujuy,AR-Y,annual,2019,gas oil combustion consumption by to the public,40.77948,TJ,CO2,74100.0,kg/TJ,3021759.468,kg -b10f2244-02fb-3601-ad89-47d8ac26c60e,SESCO,II.1.1,Jujuy,AR-Y,annual,2019,gas oil combustion consumption by to the public,40.77948,TJ,CH4,3.9,kg/TJ,159.039972,kg -b10f2244-02fb-3601-ad89-47d8ac26c60e,SESCO,II.1.1,Jujuy,AR-Y,annual,2019,gas oil combustion consumption by to the public,40.77948,TJ,N2O,3.9,kg/TJ,159.039972,kg -89dc2f02-3401-37f9-9be6-fa43d00b0aed,SESCO,II.1.1,La Pampa,AR-L,annual,2019,gas oil combustion consumption by to the public,96.83772,TJ,CO2,74100.0,kg/TJ,7175675.052,kg -4990da5f-0402-3755-8503-55a98797cea5,SESCO,II.1.1,La Pampa,AR-L,annual,2019,gas oil combustion consumption by to the public,96.83772,TJ,CH4,3.9,kg/TJ,377.667108,kg -4990da5f-0402-3755-8503-55a98797cea5,SESCO,II.1.1,La Pampa,AR-L,annual,2019,gas oil combustion consumption by to the public,96.83772,TJ,N2O,3.9,kg/TJ,377.667108,kg -c22087e8-ec0a-3df8-9b0a-cc082e87dc04,SESCO,II.1.1,La Rioja,AR-F,annual,2019,gas oil combustion consumption by to the public,13.1838,TJ,CO2,74100.0,kg/TJ,976919.58,kg -eb243e8e-7ca7-3678-af28-c0ff91754f80,SESCO,II.1.1,La Rioja,AR-F,annual,2019,gas oil combustion consumption by to the public,13.1838,TJ,CH4,3.9,kg/TJ,51.41682,kg -eb243e8e-7ca7-3678-af28-c0ff91754f80,SESCO,II.1.1,La Rioja,AR-F,annual,2019,gas oil combustion consumption by to the public,13.1838,TJ,N2O,3.9,kg/TJ,51.41682,kg -4e2d93a8-4478-3dae-b922-eb292f01979b,SESCO,II.1.1,Mendoza,AR-M,annual,2019,gas oil combustion consumption by to the public,286.75668,TJ,CO2,74100.0,kg/TJ,21248669.988,kg -66d3514f-7666-3a40-93cd-e1ce775abfc2,SESCO,II.1.1,Mendoza,AR-M,annual,2019,gas oil combustion consumption by to the public,286.75668,TJ,CH4,3.9,kg/TJ,1118.351052,kg -66d3514f-7666-3a40-93cd-e1ce775abfc2,SESCO,II.1.1,Mendoza,AR-M,annual,2019,gas oil combustion consumption by to the public,286.75668,TJ,N2O,3.9,kg/TJ,1118.351052,kg -38f3c091-18de-32bb-bcda-d6c8673841ca,SESCO,II.1.1,Misiones,AR-N,annual,2019,gas oil combustion consumption by to the public,171.28104,TJ,CO2,74100.0,kg/TJ,12691925.064,kg -065cb8ef-639f-3899-aaf5-1af35323743a,SESCO,II.1.1,Misiones,AR-N,annual,2019,gas oil combustion consumption by to the public,171.28104,TJ,CH4,3.9,kg/TJ,667.996056,kg -065cb8ef-639f-3899-aaf5-1af35323743a,SESCO,II.1.1,Misiones,AR-N,annual,2019,gas oil combustion consumption by to the public,171.28104,TJ,N2O,3.9,kg/TJ,667.996056,kg -396bed3d-a209-3805-8809-17a4308590a1,SESCO,II.1.1,Neuquén,AR-Q,annual,2019,gas oil combustion consumption by to the public,36.77016,TJ,CO2,74100.0,kg/TJ,2724668.8559999997,kg -e1563888-6789-32fa-92cd-4c08cceec7d9,SESCO,II.1.1,Neuquén,AR-Q,annual,2019,gas oil combustion consumption by to the public,36.77016,TJ,CH4,3.9,kg/TJ,143.40362399999998,kg -e1563888-6789-32fa-92cd-4c08cceec7d9,SESCO,II.1.1,Neuquén,AR-Q,annual,2019,gas oil combustion consumption by to the public,36.77016,TJ,N2O,3.9,kg/TJ,143.40362399999998,kg -fadf9c18-3a22-30f8-8042-7d639e49607b,SESCO,II.1.1,Rio Negro,AR-R,annual,2019,gas oil combustion consumption by to the public,134.11356,TJ,CO2,74100.0,kg/TJ,9937814.796,kg -85a49d40-dc97-34c5-bab1-1a7edde59d76,SESCO,II.1.1,Rio Negro,AR-R,annual,2019,gas oil combustion consumption by to the public,134.11356,TJ,CH4,3.9,kg/TJ,523.042884,kg -85a49d40-dc97-34c5-bab1-1a7edde59d76,SESCO,II.1.1,Rio Negro,AR-R,annual,2019,gas oil combustion consumption by to the public,134.11356,TJ,N2O,3.9,kg/TJ,523.042884,kg -85058053-8274-3250-a5a2-5b0a8d28aeeb,SESCO,II.1.1,Salta,AR-A,annual,2019,gas oil combustion consumption by to the public,14.55636,TJ,CO2,74100.0,kg/TJ,1078626.276,kg -ac03da5a-0192-3bfd-a7e3-432d953b70bc,SESCO,II.1.1,Salta,AR-A,annual,2019,gas oil combustion consumption by to the public,14.55636,TJ,CH4,3.9,kg/TJ,56.769804,kg -ac03da5a-0192-3bfd-a7e3-432d953b70bc,SESCO,II.1.1,Salta,AR-A,annual,2019,gas oil combustion consumption by to the public,14.55636,TJ,N2O,3.9,kg/TJ,56.769804,kg -36936686-095f-30fe-8728-2f2ee7f846cf,SESCO,II.1.1,San Juan,AR-J,annual,2019,gas oil combustion consumption by to the public,67.83336,TJ,CO2,74100.0,kg/TJ,5026451.976,kg -4b040d41-bc05-3949-b205-2a54f17ac537,SESCO,II.1.1,San Juan,AR-J,annual,2019,gas oil combustion consumption by to the public,67.83336,TJ,CH4,3.9,kg/TJ,264.550104,kg -4b040d41-bc05-3949-b205-2a54f17ac537,SESCO,II.1.1,San Juan,AR-J,annual,2019,gas oil combustion consumption by to the public,67.83336,TJ,N2O,3.9,kg/TJ,264.550104,kg -3529ba3d-c720-3aa4-a1a8-ca6aa6119dff,SESCO,II.1.1,San Luis,AR-D,annual,2019,gas oil combustion consumption by to the public,156.11064,TJ,CO2,74100.0,kg/TJ,11567798.423999999,kg -dff48eb0-0012-3519-8e9b-bf43f4791fee,SESCO,II.1.1,San Luis,AR-D,annual,2019,gas oil combustion consumption by to the public,156.11064,TJ,CH4,3.9,kg/TJ,608.8314959999999,kg -dff48eb0-0012-3519-8e9b-bf43f4791fee,SESCO,II.1.1,San Luis,AR-D,annual,2019,gas oil combustion consumption by to the public,156.11064,TJ,N2O,3.9,kg/TJ,608.8314959999999,kg -681004b1-1a8a-3140-9435-6750fc182cae,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2019,gas oil combustion consumption by to the public,168.21084,TJ,CO2,74100.0,kg/TJ,12464423.243999999,kg -b526482d-9b5d-3e05-a765-15d9362950dc,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2019,gas oil combustion consumption by to the public,168.21084,TJ,CH4,3.9,kg/TJ,656.0222759999999,kg -b526482d-9b5d-3e05-a765-15d9362950dc,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2019,gas oil combustion consumption by to the public,168.21084,TJ,N2O,3.9,kg/TJ,656.0222759999999,kg -3db297a6-18c0-3ba8-95d3-6aa2ef1af03f,SESCO,II.1.1,Santa Fe,AR-S,annual,2019,gas oil combustion consumption by to the public,538.15188,TJ,CO2,74100.0,kg/TJ,39877054.308,kg -a1563bd6-db5f-37e6-9c3a-06144dd65c77,SESCO,II.1.1,Santa Fe,AR-S,annual,2019,gas oil combustion consumption by to the public,538.15188,TJ,CH4,3.9,kg/TJ,2098.792332,kg -a1563bd6-db5f-37e6-9c3a-06144dd65c77,SESCO,II.1.1,Santa Fe,AR-S,annual,2019,gas oil combustion consumption by to the public,538.15188,TJ,N2O,3.9,kg/TJ,2098.792332,kg -eed87b38-4c69-317e-8d53-876385ee0631,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2019,gas oil combustion consumption by to the public,91.52808,TJ,CO2,74100.0,kg/TJ,6782230.728,kg -62b6edda-fa2d-3a72-87c5-d8922f13ea40,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2019,gas oil combustion consumption by to the public,91.52808,TJ,CH4,3.9,kg/TJ,356.959512,kg -62b6edda-fa2d-3a72-87c5-d8922f13ea40,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2019,gas oil combustion consumption by to the public,91.52808,TJ,N2O,3.9,kg/TJ,356.959512,kg -3b0857ef-30e2-3cf9-bc43-4f7a00fd82e0,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2019,gas oil combustion consumption by to the public,13.32828,TJ,CO2,74100.0,kg/TJ,987625.548,kg -6d25b8f5-d7cb-373f-b7c7-a16e99c12fb0,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2019,gas oil combustion consumption by to the public,13.32828,TJ,CH4,3.9,kg/TJ,51.980292,kg -6d25b8f5-d7cb-373f-b7c7-a16e99c12fb0,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2019,gas oil combustion consumption by to the public,13.32828,TJ,N2O,3.9,kg/TJ,51.980292,kg -5f48fe01-b960-314f-968f-ce337d2b2950,SESCO,II.1.1,Tucuman,AR-T,annual,2019,gas oil combustion consumption by to the public,14.0868,TJ,CO2,74100.0,kg/TJ,1043831.88,kg -9523e05e-c989-3e5a-b0cb-2b9192a23487,SESCO,II.1.1,Tucuman,AR-T,annual,2019,gas oil combustion consumption by to the public,14.0868,TJ,CH4,3.9,kg/TJ,54.93852,kg -9523e05e-c989-3e5a-b0cb-2b9192a23487,SESCO,II.1.1,Tucuman,AR-T,annual,2019,gas oil combustion consumption by to the public,14.0868,TJ,N2O,3.9,kg/TJ,54.93852,kg -afec6c97-985b-345f-9ef3-9f610009d29b,SESCO,II.1.1,Buenos Aires,AR-B,annual,2019,gas oil combustion consumption by to the public,808.65456,TJ,CO2,74100.0,kg/TJ,59921302.896,kg -0635c337-2fc5-3fd9-a344-32a8487ea8fe,SESCO,II.1.1,Buenos Aires,AR-B,annual,2019,gas oil combustion consumption by to the public,808.65456,TJ,CH4,3.9,kg/TJ,3153.752784,kg -0635c337-2fc5-3fd9-a344-32a8487ea8fe,SESCO,II.1.1,Buenos Aires,AR-B,annual,2019,gas oil combustion consumption by to the public,808.65456,TJ,N2O,3.9,kg/TJ,3153.752784,kg -9159f688-6c57-3688-98ee-116499442c57,SESCO,II.1.1,Capital Federal,AR-C,annual,2019,gas oil combustion consumption by to the public,134.40252,TJ,CO2,74100.0,kg/TJ,9959226.732,kg -0a7c7d26-c67b-34af-8f80-4567d464ab70,SESCO,II.1.1,Capital Federal,AR-C,annual,2019,gas oil combustion consumption by to the public,134.40252,TJ,CH4,3.9,kg/TJ,524.169828,kg -0a7c7d26-c67b-34af-8f80-4567d464ab70,SESCO,II.1.1,Capital Federal,AR-C,annual,2019,gas oil combustion consumption by to the public,134.40252,TJ,N2O,3.9,kg/TJ,524.169828,kg -46043828-fb83-3c66-be52-847425a264b5,SESCO,II.1.1,Catamarca,AR-K,annual,2019,gas oil combustion consumption by to the public,38.57616,TJ,CO2,74100.0,kg/TJ,2858493.4560000002,kg -03f91ad6-d6f1-30c1-9b50-d2a6e9157747,SESCO,II.1.1,Catamarca,AR-K,annual,2019,gas oil combustion consumption by to the public,38.57616,TJ,CH4,3.9,kg/TJ,150.447024,kg -03f91ad6-d6f1-30c1-9b50-d2a6e9157747,SESCO,II.1.1,Catamarca,AR-K,annual,2019,gas oil combustion consumption by to the public,38.57616,TJ,N2O,3.9,kg/TJ,150.447024,kg -29af2408-eec1-3daf-bd51-27a2bf8d83a7,SESCO,II.1.1,Chaco,AR-H,annual,2019,gas oil combustion consumption by to the public,27.6318,TJ,CO2,74100.0,kg/TJ,2047516.38,kg -728e677f-ccde-3010-898e-6c126284826b,SESCO,II.1.1,Chaco,AR-H,annual,2019,gas oil combustion consumption by to the public,27.6318,TJ,CH4,3.9,kg/TJ,107.76401999999999,kg -728e677f-ccde-3010-898e-6c126284826b,SESCO,II.1.1,Chaco,AR-H,annual,2019,gas oil combustion consumption by to the public,27.6318,TJ,N2O,3.9,kg/TJ,107.76401999999999,kg -078b9aa4-64e5-3ac7-a57e-7441b0a7481d,SESCO,II.1.1,Chubut,AR-U,annual,2019,gas oil combustion consumption by to the public,181.39464,TJ,CO2,74100.0,kg/TJ,13441342.824000001,kg -8dcd0cb5-785c-3bca-ac8a-299244965818,SESCO,II.1.1,Chubut,AR-U,annual,2019,gas oil combustion consumption by to the public,181.39464,TJ,CH4,3.9,kg/TJ,707.4390960000001,kg -8dcd0cb5-785c-3bca-ac8a-299244965818,SESCO,II.1.1,Chubut,AR-U,annual,2019,gas oil combustion consumption by to the public,181.39464,TJ,N2O,3.9,kg/TJ,707.4390960000001,kg -7a5360ae-35b2-3dc6-98e2-5d37ee94d94e,SESCO,II.1.1,Corrientes,AR-W,annual,2019,gas oil combustion consumption by to the public,54.10776,TJ,CO2,74100.0,kg/TJ,4009385.016,kg -b1c194cf-20ac-34e3-9422-c4c1d39170e7,SESCO,II.1.1,Corrientes,AR-W,annual,2019,gas oil combustion consumption by to the public,54.10776,TJ,CH4,3.9,kg/TJ,211.020264,kg -b1c194cf-20ac-34e3-9422-c4c1d39170e7,SESCO,II.1.1,Corrientes,AR-W,annual,2019,gas oil combustion consumption by to the public,54.10776,TJ,N2O,3.9,kg/TJ,211.020264,kg -d095b867-a520-3a37-834b-a9b7977a854b,SESCO,II.1.1,Córdoba,AR-X,annual,2019,gas oil combustion consumption by to the public,245.65212,TJ,CO2,74100.0,kg/TJ,18202822.092,kg -0a739605-5966-332b-953c-d89b7901e2c1,SESCO,II.1.1,Córdoba,AR-X,annual,2019,gas oil combustion consumption by to the public,245.65212,TJ,CH4,3.9,kg/TJ,958.043268,kg -0a739605-5966-332b-953c-d89b7901e2c1,SESCO,II.1.1,Córdoba,AR-X,annual,2019,gas oil combustion consumption by to the public,245.65212,TJ,N2O,3.9,kg/TJ,958.043268,kg -9fc935db-5af2-326b-8c1e-2d9c277dc144,SESCO,II.1.1,Entre Rios,AR-E,annual,2019,gas oil combustion consumption by to the public,116.84819999999999,TJ,CO2,74100.0,kg/TJ,8658451.62,kg -46824fb4-46af-3a47-8a3a-97f8aeb7c36c,SESCO,II.1.1,Entre Rios,AR-E,annual,2019,gas oil combustion consumption by to the public,116.84819999999999,TJ,CH4,3.9,kg/TJ,455.70797999999996,kg -46824fb4-46af-3a47-8a3a-97f8aeb7c36c,SESCO,II.1.1,Entre Rios,AR-E,annual,2019,gas oil combustion consumption by to the public,116.84819999999999,TJ,N2O,3.9,kg/TJ,455.70797999999996,kg -e81a456c-87c4-3fbf-bd2e-47693348bd0d,SESCO,II.1.1,Formosa,AR-P,annual,2019,gas oil combustion consumption by to the public,58.983959999999996,TJ,CO2,74100.0,kg/TJ,4370711.436,kg -74f3f144-a1db-35dc-939b-20f994648f69,SESCO,II.1.1,Formosa,AR-P,annual,2019,gas oil combustion consumption by to the public,58.983959999999996,TJ,CH4,3.9,kg/TJ,230.037444,kg -74f3f144-a1db-35dc-939b-20f994648f69,SESCO,II.1.1,Formosa,AR-P,annual,2019,gas oil combustion consumption by to the public,58.983959999999996,TJ,N2O,3.9,kg/TJ,230.037444,kg -7fdcfb51-bebf-3b2b-918e-7c5f8c13ee7c,SESCO,II.1.1,Jujuy,AR-Y,annual,2019,gas oil combustion consumption by to the public,16.14564,TJ,CO2,74100.0,kg/TJ,1196391.924,kg -f7ea8a56-eec1-327e-9036-2a2adf4ec15f,SESCO,II.1.1,Jujuy,AR-Y,annual,2019,gas oil combustion consumption by to the public,16.14564,TJ,CH4,3.9,kg/TJ,62.967996,kg -f7ea8a56-eec1-327e-9036-2a2adf4ec15f,SESCO,II.1.1,Jujuy,AR-Y,annual,2019,gas oil combustion consumption by to the public,16.14564,TJ,N2O,3.9,kg/TJ,62.967996,kg -f8013505-2931-3799-9366-a3ad6826e6ee,SESCO,II.1.1,La Pampa,AR-L,annual,2019,gas oil combustion consumption by to the public,36.26448,TJ,CO2,74100.0,kg/TJ,2687197.968,kg -7e699d8d-4b44-37ab-94b7-7f68a025c08b,SESCO,II.1.1,La Pampa,AR-L,annual,2019,gas oil combustion consumption by to the public,36.26448,TJ,CH4,3.9,kg/TJ,141.43147199999999,kg -7e699d8d-4b44-37ab-94b7-7f68a025c08b,SESCO,II.1.1,La Pampa,AR-L,annual,2019,gas oil combustion consumption by to the public,36.26448,TJ,N2O,3.9,kg/TJ,141.43147199999999,kg -a933b02b-610b-3147-9b2d-41f8dbfa26e0,SESCO,II.1.1,La Rioja,AR-F,annual,2019,gas oil combustion consumption by to the public,17.301479999999998,TJ,CO2,74100.0,kg/TJ,1282039.6679999998,kg -d8abcb6c-829c-3889-a782-9589d3ae6cdb,SESCO,II.1.1,La Rioja,AR-F,annual,2019,gas oil combustion consumption by to the public,17.301479999999998,TJ,CH4,3.9,kg/TJ,67.47577199999999,kg -d8abcb6c-829c-3889-a782-9589d3ae6cdb,SESCO,II.1.1,La Rioja,AR-F,annual,2019,gas oil combustion consumption by to the public,17.301479999999998,TJ,N2O,3.9,kg/TJ,67.47577199999999,kg -4c826c9a-de78-350e-ac41-74d25518ace2,SESCO,II.1.1,Mendoza,AR-M,annual,2019,gas oil combustion consumption by to the public,91.27524,TJ,CO2,74100.0,kg/TJ,6763495.284,kg -1d512d82-414a-3c8f-a116-c78a229f8f7a,SESCO,II.1.1,Mendoza,AR-M,annual,2019,gas oil combustion consumption by to the public,91.27524,TJ,CH4,3.9,kg/TJ,355.973436,kg -1d512d82-414a-3c8f-a116-c78a229f8f7a,SESCO,II.1.1,Mendoza,AR-M,annual,2019,gas oil combustion consumption by to the public,91.27524,TJ,N2O,3.9,kg/TJ,355.973436,kg -9fc4a8b0-55f9-3d18-99d3-326341df262b,SESCO,II.1.1,Misiones,AR-N,annual,2019,gas oil combustion consumption by to the public,61.7652,TJ,CO2,74100.0,kg/TJ,4576801.32,kg -2d39961b-6b78-3425-b5f0-3c44054a76a4,SESCO,II.1.1,Misiones,AR-N,annual,2019,gas oil combustion consumption by to the public,61.7652,TJ,CH4,3.9,kg/TJ,240.88428,kg -2d39961b-6b78-3425-b5f0-3c44054a76a4,SESCO,II.1.1,Misiones,AR-N,annual,2019,gas oil combustion consumption by to the public,61.7652,TJ,N2O,3.9,kg/TJ,240.88428,kg -6724ff31-b05a-31ae-8949-52c9507a872b,SESCO,II.1.1,Neuquén,AR-Q,annual,2019,gas oil combustion consumption by to the public,71.40924,TJ,CO2,74100.0,kg/TJ,5291424.683999999,kg -f56e7cba-02e4-379d-8ea7-91fed45d74a6,SESCO,II.1.1,Neuquén,AR-Q,annual,2019,gas oil combustion consumption by to the public,71.40924,TJ,CH4,3.9,kg/TJ,278.496036,kg -f56e7cba-02e4-379d-8ea7-91fed45d74a6,SESCO,II.1.1,Neuquén,AR-Q,annual,2019,gas oil combustion consumption by to the public,71.40924,TJ,N2O,3.9,kg/TJ,278.496036,kg -e03e83c7-ba21-3261-86f2-25ba73f2bd09,SESCO,II.1.1,Rio Negro,AR-R,annual,2019,gas oil combustion consumption by to the public,90.3,TJ,CO2,74100.0,kg/TJ,6691230.0,kg -b04782a3-dad4-3294-b3e8-e2fe1e2c1dd4,SESCO,II.1.1,Rio Negro,AR-R,annual,2019,gas oil combustion consumption by to the public,90.3,TJ,CH4,3.9,kg/TJ,352.16999999999996,kg -b04782a3-dad4-3294-b3e8-e2fe1e2c1dd4,SESCO,II.1.1,Rio Negro,AR-R,annual,2019,gas oil combustion consumption by to the public,90.3,TJ,N2O,3.9,kg/TJ,352.16999999999996,kg -a292d735-f8bb-3c36-a535-969eb250c1e3,SESCO,II.1.1,Salta,AR-A,annual,2019,gas oil combustion consumption by to the public,9.53568,TJ,CO2,74100.0,kg/TJ,706593.8879999999,kg -80b075e2-5b4d-394f-b698-96f28dbc571f,SESCO,II.1.1,Salta,AR-A,annual,2019,gas oil combustion consumption by to the public,9.53568,TJ,CH4,3.9,kg/TJ,37.18915199999999,kg -80b075e2-5b4d-394f-b698-96f28dbc571f,SESCO,II.1.1,Salta,AR-A,annual,2019,gas oil combustion consumption by to the public,9.53568,TJ,N2O,3.9,kg/TJ,37.18915199999999,kg -425dcb76-e38e-3722-ba2a-2cfc6618f500,SESCO,II.1.1,San Juan,AR-J,annual,2019,gas oil combustion consumption by to the public,23.22516,TJ,CO2,74100.0,kg/TJ,1720984.356,kg -c6bcef53-3309-33ea-8f71-657eaa847121,SESCO,II.1.1,San Juan,AR-J,annual,2019,gas oil combustion consumption by to the public,23.22516,TJ,CH4,3.9,kg/TJ,90.57812399999999,kg -c6bcef53-3309-33ea-8f71-657eaa847121,SESCO,II.1.1,San Juan,AR-J,annual,2019,gas oil combustion consumption by to the public,23.22516,TJ,N2O,3.9,kg/TJ,90.57812399999999,kg -e46e8184-cb84-33f8-897b-075855739f42,SESCO,II.1.1,San Luis,AR-D,annual,2019,gas oil combustion consumption by to the public,43.27176,TJ,CO2,74100.0,kg/TJ,3206437.416,kg -7fefba9e-b4c6-3151-8ca3-ba7ef145e2e3,SESCO,II.1.1,San Luis,AR-D,annual,2019,gas oil combustion consumption by to the public,43.27176,TJ,CH4,3.9,kg/TJ,168.759864,kg -7fefba9e-b4c6-3151-8ca3-ba7ef145e2e3,SESCO,II.1.1,San Luis,AR-D,annual,2019,gas oil combustion consumption by to the public,43.27176,TJ,N2O,3.9,kg/TJ,168.759864,kg -2e425e6e-26bb-3931-93b0-eb4355ea292f,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2019,gas oil combustion consumption by to the public,93.98424,TJ,CO2,74100.0,kg/TJ,6964232.184,kg -841bf5d1-940e-3d00-99eb-6430e709c29e,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2019,gas oil combustion consumption by to the public,93.98424,TJ,CH4,3.9,kg/TJ,366.53853599999997,kg -841bf5d1-940e-3d00-99eb-6430e709c29e,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2019,gas oil combustion consumption by to the public,93.98424,TJ,N2O,3.9,kg/TJ,366.53853599999997,kg -8e7efc3f-f59f-3367-b71c-4c619203ed8b,SESCO,II.1.1,Santa Fe,AR-S,annual,2019,gas oil combustion consumption by to the public,221.99352,TJ,CO2,74100.0,kg/TJ,16449719.831999999,kg -a86d8ab8-b189-3344-aee1-7c5c7c3460f7,SESCO,II.1.1,Santa Fe,AR-S,annual,2019,gas oil combustion consumption by to the public,221.99352,TJ,CH4,3.9,kg/TJ,865.774728,kg -a86d8ab8-b189-3344-aee1-7c5c7c3460f7,SESCO,II.1.1,Santa Fe,AR-S,annual,2019,gas oil combustion consumption by to the public,221.99352,TJ,N2O,3.9,kg/TJ,865.774728,kg -f01c41d2-23af-31e7-9dbd-00d4c99ccb33,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2019,gas oil combustion consumption by to the public,44.28312,TJ,CO2,74100.0,kg/TJ,3281379.192,kg -1522918f-2e3b-329c-85b9-a062eb49de44,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2019,gas oil combustion consumption by to the public,44.28312,TJ,CH4,3.9,kg/TJ,172.70416799999998,kg -1522918f-2e3b-329c-85b9-a062eb49de44,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2019,gas oil combustion consumption by to the public,44.28312,TJ,N2O,3.9,kg/TJ,172.70416799999998,kg -4ea263a9-7aae-36bb-a8e9-2d8d9db4f30a,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2019,gas oil combustion consumption by to the public,18.89076,TJ,CO2,74100.0,kg/TJ,1399805.316,kg -4b5e15c7-9f21-3d20-bc9a-766ac0b49ef3,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2019,gas oil combustion consumption by to the public,18.89076,TJ,CH4,3.9,kg/TJ,73.673964,kg -4b5e15c7-9f21-3d20-bc9a-766ac0b49ef3,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2019,gas oil combustion consumption by to the public,18.89076,TJ,N2O,3.9,kg/TJ,73.673964,kg -c84ed089-0997-364b-90b4-6dcc13a633e0,SESCO,II.1.1,Tucuman,AR-T,annual,2019,gas oil combustion consumption by to the public,4.73172,TJ,CO2,74100.0,kg/TJ,350620.452,kg -9efb9b97-37f6-3a27-88b6-5ca53c29165c,SESCO,II.1.1,Tucuman,AR-T,annual,2019,gas oil combustion consumption by to the public,4.73172,TJ,CH4,3.9,kg/TJ,18.453708,kg -9efb9b97-37f6-3a27-88b6-5ca53c29165c,SESCO,II.1.1,Tucuman,AR-T,annual,2019,gas oil combustion consumption by to the public,4.73172,TJ,N2O,3.9,kg/TJ,18.453708,kg -d61b0484-9aa1-3001-8f80-a54cd4778d4f,SESCO,II.1.1,Buenos Aires,AR-B,annual,2019,jet kerosene combustion consumption by to the public,2.0444449999999996,TJ,CO2,71500.0,kg/TJ,146177.81749999998,kg -953798a5-95d0-3444-9958-cdd28f297f8b,SESCO,II.1.1,Buenos Aires,AR-B,annual,2019,jet kerosene combustion consumption by to the public,2.0444449999999996,TJ,CH4,0.5,kg/TJ,1.0222224999999998,kg -e26de3a1-8353-3c28-897b-421e0076fd8a,SESCO,II.1.1,Buenos Aires,AR-B,annual,2019,jet kerosene combustion consumption by to the public,2.0444449999999996,TJ,N2O,2.0,kg/TJ,4.088889999999999,kg -2953645f-46f1-3d74-823b-034dc0d17ddc,SESCO,II.1.1,Córdoba,AR-X,annual,2019,jet kerosene combustion consumption by to the public,0.4403419999999999,TJ,CO2,71500.0,kg/TJ,31484.452999999994,kg -fa645cf1-4b62-3212-8d7f-150fa0132744,SESCO,II.1.1,Córdoba,AR-X,annual,2019,jet kerosene combustion consumption by to the public,0.4403419999999999,TJ,CH4,0.5,kg/TJ,0.22017099999999995,kg -343b1a2f-2fb1-3bc7-83fb-3d2e4f5c93f9,SESCO,II.1.1,Córdoba,AR-X,annual,2019,jet kerosene combustion consumption by to the public,0.4403419999999999,TJ,N2O,2.0,kg/TJ,0.8806839999999998,kg -54438673-1e43-300b-99bc-e0f7a96ab93e,SESCO,II.1.1,Entre Rios,AR-E,annual,2019,jet kerosene combustion consumption by to the public,0.28307699999999997,TJ,CO2,71500.0,kg/TJ,20240.0055,kg -10dbfffe-440c-3ffd-b315-2ed43e6af231,SESCO,II.1.1,Entre Rios,AR-E,annual,2019,jet kerosene combustion consumption by to the public,0.28307699999999997,TJ,CH4,0.5,kg/TJ,0.14153849999999998,kg -1e191bf3-6394-3ce1-904e-16be16a79e3a,SESCO,II.1.1,Entre Rios,AR-E,annual,2019,jet kerosene combustion consumption by to the public,0.28307699999999997,TJ,N2O,2.0,kg/TJ,0.5661539999999999,kg -36b5d004-a844-310e-8c71-cdd30e562628,SESCO,II.1.1,Santa Fe,AR-S,annual,2019,jet kerosene combustion consumption by to the public,0.5032479999999999,TJ,CO2,71500.0,kg/TJ,35982.231999999996,kg -9f512e33-1b81-3dd1-9d95-6d50abfe24bb,SESCO,II.1.1,Santa Fe,AR-S,annual,2019,jet kerosene combustion consumption by to the public,0.5032479999999999,TJ,CH4,0.5,kg/TJ,0.25162399999999996,kg -b8545903-4d07-3743-8b2c-5b0f7bcc4069,SESCO,II.1.1,Santa Fe,AR-S,annual,2019,jet kerosene combustion consumption by to the public,0.5032479999999999,TJ,N2O,2.0,kg/TJ,1.0064959999999998,kg -fd9d39fe-ff44-310d-984a-448f2a6e1968,SESCO,II.2.1,Buenos Aires,AR-B,annual,2019,gas oil combustion consumption by railway transport,88.74683999999999,TJ,CO2,74100.0,kg/TJ,6576140.844,kg -141cea4b-1d9b-3c7d-8f82-43aa7b9f8fc7,SESCO,II.2.1,Buenos Aires,AR-B,annual,2019,gas oil combustion consumption by railway transport,88.74683999999999,TJ,CH4,3.9,kg/TJ,346.11267599999996,kg -141cea4b-1d9b-3c7d-8f82-43aa7b9f8fc7,SESCO,II.2.1,Buenos Aires,AR-B,annual,2019,gas oil combustion consumption by railway transport,88.74683999999999,TJ,N2O,3.9,kg/TJ,346.11267599999996,kg -dbea2138-19cf-3703-b9bf-493d18e10fc2,SESCO,II.2.1,Capital Federal,AR-C,annual,2019,gas oil combustion consumption by railway transport,1.806,TJ,CO2,74100.0,kg/TJ,133824.6,kg -e5f5d861-b06d-3682-bb39-33714989642b,SESCO,II.2.1,Capital Federal,AR-C,annual,2019,gas oil combustion consumption by railway transport,1.806,TJ,CH4,3.9,kg/TJ,7.0434,kg -e5f5d861-b06d-3682-bb39-33714989642b,SESCO,II.2.1,Capital Federal,AR-C,annual,2019,gas oil combustion consumption by railway transport,1.806,TJ,N2O,3.9,kg/TJ,7.0434,kg -a090c5bd-03f1-3210-a08e-310aeeef88f7,SESCO,II.2.1,La Pampa,AR-L,annual,2019,gas oil combustion consumption by railway transport,15.38712,TJ,CO2,74100.0,kg/TJ,1140185.592,kg -26745232-f591-317d-bea8-2cb2ce92808b,SESCO,II.2.1,La Pampa,AR-L,annual,2019,gas oil combustion consumption by railway transport,15.38712,TJ,CH4,3.9,kg/TJ,60.009767999999994,kg -26745232-f591-317d-bea8-2cb2ce92808b,SESCO,II.2.1,La Pampa,AR-L,annual,2019,gas oil combustion consumption by railway transport,15.38712,TJ,N2O,3.9,kg/TJ,60.009767999999994,kg -f4a29bd0-e787-3a85-8a21-7f96aff52e0a,SESCO,II.2.1,Santa Fe,AR-S,annual,2019,gas oil combustion consumption by railway transport,56.60004,TJ,CO2,74100.0,kg/TJ,4194062.964,kg -07a77e91-5f0c-3678-a637-e932a82bf64e,SESCO,II.2.1,Santa Fe,AR-S,annual,2019,gas oil combustion consumption by railway transport,56.60004,TJ,CH4,3.9,kg/TJ,220.74015599999998,kg -07a77e91-5f0c-3678-a637-e932a82bf64e,SESCO,II.2.1,Santa Fe,AR-S,annual,2019,gas oil combustion consumption by railway transport,56.60004,TJ,N2O,3.9,kg/TJ,220.74015599999998,kg -554fcdac-aafb-39b4-bb13-dfe2d23fd2ca,SESCO,II.2.1,Santiago del Estero,AR-G,annual,2019,gas oil combustion consumption by railway transport,12.930959999999999,TJ,CO2,74100.0,kg/TJ,958184.1359999999,kg -0b2681d1-5312-35cc-910e-38fbbff3ae5b,SESCO,II.2.1,Santiago del Estero,AR-G,annual,2019,gas oil combustion consumption by railway transport,12.930959999999999,TJ,CH4,3.9,kg/TJ,50.430744,kg -0b2681d1-5312-35cc-910e-38fbbff3ae5b,SESCO,II.2.1,Santiago del Estero,AR-G,annual,2019,gas oil combustion consumption by railway transport,12.930959999999999,TJ,N2O,3.9,kg/TJ,50.430744,kg -0e461d18-ca02-391f-8965-c4fde762c604,SESCO,II.2.1,Tucuman,AR-T,annual,2019,gas oil combustion consumption by railway transport,5.20128,TJ,CO2,74100.0,kg/TJ,385414.848,kg -524cff89-6643-3e31-90da-41d7357d63dc,SESCO,II.2.1,Tucuman,AR-T,annual,2019,gas oil combustion consumption by railway transport,5.20128,TJ,CH4,3.9,kg/TJ,20.284992,kg -524cff89-6643-3e31-90da-41d7357d63dc,SESCO,II.2.1,Tucuman,AR-T,annual,2019,gas oil combustion consumption by railway transport,5.20128,TJ,N2O,3.9,kg/TJ,20.284992,kg -4f0cb496-bd4d-3fc1-860a-04f97eb69bef,SESCO,II.1.1,Buenos Aires,AR-B,annual,2019,gas oil combustion consumption by freight transport,486.50028,TJ,CO2,74100.0,kg/TJ,36049670.747999996,kg -1d532d41-eb26-30ef-8190-74e58f47766a,SESCO,II.1.1,Buenos Aires,AR-B,annual,2019,gas oil combustion consumption by freight transport,486.50028,TJ,CH4,3.9,kg/TJ,1897.3510919999999,kg -1d532d41-eb26-30ef-8190-74e58f47766a,SESCO,II.1.1,Buenos Aires,AR-B,annual,2019,gas oil combustion consumption by freight transport,486.50028,TJ,N2O,3.9,kg/TJ,1897.3510919999999,kg -0ee63531-e023-3d10-bff0-bf0d2d7b4bab,SESCO,II.1.1,Capital Federal,AR-C,annual,2019,gas oil combustion consumption by freight transport,139.53155999999998,TJ,CO2,74100.0,kg/TJ,10339288.595999999,kg -3fded31a-3a95-3850-a517-9dad38e0e9fb,SESCO,II.1.1,Capital Federal,AR-C,annual,2019,gas oil combustion consumption by freight transport,139.53155999999998,TJ,CH4,3.9,kg/TJ,544.1730839999999,kg -3fded31a-3a95-3850-a517-9dad38e0e9fb,SESCO,II.1.1,Capital Federal,AR-C,annual,2019,gas oil combustion consumption by freight transport,139.53155999999998,TJ,N2O,3.9,kg/TJ,544.1730839999999,kg -93101423-b2c2-3ee9-ab29-732d6e61454e,SESCO,II.1.1,Catamarca,AR-K,annual,2019,gas oil combustion consumption by freight transport,5.20128,TJ,CO2,74100.0,kg/TJ,385414.848,kg -85f51ca5-7b8a-3741-b905-65298a184fb2,SESCO,II.1.1,Catamarca,AR-K,annual,2019,gas oil combustion consumption by freight transport,5.20128,TJ,CH4,3.9,kg/TJ,20.284992,kg -85f51ca5-7b8a-3741-b905-65298a184fb2,SESCO,II.1.1,Catamarca,AR-K,annual,2019,gas oil combustion consumption by freight transport,5.20128,TJ,N2O,3.9,kg/TJ,20.284992,kg -056d5752-4954-35cf-8c14-c55a1c60e654,SESCO,II.1.1,Chaco,AR-H,annual,2019,gas oil combustion consumption by freight transport,1.33644,TJ,CO2,74100.0,kg/TJ,99030.20400000001,kg -43f4cf3f-1301-3511-b586-6f378aeeb743,SESCO,II.1.1,Chaco,AR-H,annual,2019,gas oil combustion consumption by freight transport,1.33644,TJ,CH4,3.9,kg/TJ,5.212116,kg -43f4cf3f-1301-3511-b586-6f378aeeb743,SESCO,II.1.1,Chaco,AR-H,annual,2019,gas oil combustion consumption by freight transport,1.33644,TJ,N2O,3.9,kg/TJ,5.212116,kg -99e8c5d3-f966-380f-9d61-df1bfbbdd452,SESCO,II.1.1,Chubut,AR-U,annual,2019,gas oil combustion consumption by freight transport,4.80396,TJ,CO2,74100.0,kg/TJ,355973.436,kg -01c655c7-3e48-358a-8aff-be40a13d0714,SESCO,II.1.1,Chubut,AR-U,annual,2019,gas oil combustion consumption by freight transport,4.80396,TJ,CH4,3.9,kg/TJ,18.735444,kg -01c655c7-3e48-358a-8aff-be40a13d0714,SESCO,II.1.1,Chubut,AR-U,annual,2019,gas oil combustion consumption by freight transport,4.80396,TJ,N2O,3.9,kg/TJ,18.735444,kg -5d84a0fd-1890-34d2-9cf0-a60bc844d5ce,SESCO,II.1.1,Corrientes,AR-W,annual,2019,gas oil combustion consumption by freight transport,26.187,TJ,CO2,74100.0,kg/TJ,1940456.7000000002,kg -ae5fc9a3-a480-32ed-91bc-ec4b9de4c2da,SESCO,II.1.1,Corrientes,AR-W,annual,2019,gas oil combustion consumption by freight transport,26.187,TJ,CH4,3.9,kg/TJ,102.1293,kg -ae5fc9a3-a480-32ed-91bc-ec4b9de4c2da,SESCO,II.1.1,Corrientes,AR-W,annual,2019,gas oil combustion consumption by freight transport,26.187,TJ,N2O,3.9,kg/TJ,102.1293,kg -d8c3f13b-372b-3f31-b7b8-9d3256df80d1,SESCO,II.1.1,Córdoba,AR-X,annual,2019,gas oil combustion consumption by freight transport,69.92832,TJ,CO2,74100.0,kg/TJ,5181688.512,kg -873fd6dc-15bc-39e7-a6a5-9074d29e6583,SESCO,II.1.1,Córdoba,AR-X,annual,2019,gas oil combustion consumption by freight transport,69.92832,TJ,CH4,3.9,kg/TJ,272.720448,kg -873fd6dc-15bc-39e7-a6a5-9074d29e6583,SESCO,II.1.1,Córdoba,AR-X,annual,2019,gas oil combustion consumption by freight transport,69.92832,TJ,N2O,3.9,kg/TJ,272.720448,kg -ed87a591-51da-3248-a4b5-dfe18ba19847,SESCO,II.1.1,Entre Rios,AR-E,annual,2019,gas oil combustion consumption by freight transport,69.74772,TJ,CO2,74100.0,kg/TJ,5168306.052,kg -53dd9466-1562-30a0-ab64-115cf8950dd7,SESCO,II.1.1,Entre Rios,AR-E,annual,2019,gas oil combustion consumption by freight transport,69.74772,TJ,CH4,3.9,kg/TJ,272.016108,kg -53dd9466-1562-30a0-ab64-115cf8950dd7,SESCO,II.1.1,Entre Rios,AR-E,annual,2019,gas oil combustion consumption by freight transport,69.74772,TJ,N2O,3.9,kg/TJ,272.016108,kg -1a0f8088-76d4-32e3-b6bf-5fc1f0703428,SESCO,II.1.1,Formosa,AR-P,annual,2019,gas oil combustion consumption by freight transport,2.92572,TJ,CO2,74100.0,kg/TJ,216795.852,kg -f8213eb5-0a3d-3303-bcd7-f20d3254e54a,SESCO,II.1.1,Formosa,AR-P,annual,2019,gas oil combustion consumption by freight transport,2.92572,TJ,CH4,3.9,kg/TJ,11.410308,kg -f8213eb5-0a3d-3303-bcd7-f20d3254e54a,SESCO,II.1.1,Formosa,AR-P,annual,2019,gas oil combustion consumption by freight transport,2.92572,TJ,N2O,3.9,kg/TJ,11.410308,kg -5e34b00e-a1c3-35c1-9df5-d8da0e3cc225,SESCO,II.1.1,Jujuy,AR-Y,annual,2019,gas oil combustion consumption by freight transport,2.3478,TJ,CO2,74100.0,kg/TJ,173971.97999999998,kg -eea20926-54fb-38d0-8702-3f6db1243868,SESCO,II.1.1,Jujuy,AR-Y,annual,2019,gas oil combustion consumption by freight transport,2.3478,TJ,CH4,3.9,kg/TJ,9.156419999999999,kg -eea20926-54fb-38d0-8702-3f6db1243868,SESCO,II.1.1,Jujuy,AR-Y,annual,2019,gas oil combustion consumption by freight transport,2.3478,TJ,N2O,3.9,kg/TJ,9.156419999999999,kg -258c1bed-1fb7-334c-bab2-64a8be3d4bc5,SESCO,II.1.1,La Pampa,AR-L,annual,2019,gas oil combustion consumption by freight transport,8.6688,TJ,CO2,74100.0,kg/TJ,642358.08,kg -1df12611-46cc-375a-82c9-e6d3e50ded24,SESCO,II.1.1,La Pampa,AR-L,annual,2019,gas oil combustion consumption by freight transport,8.6688,TJ,CH4,3.9,kg/TJ,33.808319999999995,kg -1df12611-46cc-375a-82c9-e6d3e50ded24,SESCO,II.1.1,La Pampa,AR-L,annual,2019,gas oil combustion consumption by freight transport,8.6688,TJ,N2O,3.9,kg/TJ,33.808319999999995,kg -cb8fdcc9-028f-3d7c-b9b4-b962a6709e87,SESCO,II.1.1,La Rioja,AR-F,annual,2019,gas oil combustion consumption by freight transport,1.19196,TJ,CO2,74100.0,kg/TJ,88324.23599999999,kg -5b7df55e-0f3d-3e29-9b96-627bb0cd7b45,SESCO,II.1.1,La Rioja,AR-F,annual,2019,gas oil combustion consumption by freight transport,1.19196,TJ,CH4,3.9,kg/TJ,4.648643999999999,kg -5b7df55e-0f3d-3e29-9b96-627bb0cd7b45,SESCO,II.1.1,La Rioja,AR-F,annual,2019,gas oil combustion consumption by freight transport,1.19196,TJ,N2O,3.9,kg/TJ,4.648643999999999,kg -a5e34493-1e62-393e-a0fb-8fdebb72509f,SESCO,II.1.1,Mendoza,AR-M,annual,2019,gas oil combustion consumption by freight transport,39.80424,TJ,CO2,74100.0,kg/TJ,2949494.184,kg -1b43f89d-0354-32b0-b20a-a26ed380aaaa,SESCO,II.1.1,Mendoza,AR-M,annual,2019,gas oil combustion consumption by freight transport,39.80424,TJ,CH4,3.9,kg/TJ,155.236536,kg -1b43f89d-0354-32b0-b20a-a26ed380aaaa,SESCO,II.1.1,Mendoza,AR-M,annual,2019,gas oil combustion consumption by freight transport,39.80424,TJ,N2O,3.9,kg/TJ,155.236536,kg -dc007151-9e6e-3dbd-9aa3-1215ebdf825d,SESCO,II.1.1,Misiones,AR-N,annual,2019,gas oil combustion consumption by freight transport,19.5048,TJ,CO2,74100.0,kg/TJ,1445305.68,kg -cc568511-ccf7-3b31-b752-57e85d97d36c,SESCO,II.1.1,Misiones,AR-N,annual,2019,gas oil combustion consumption by freight transport,19.5048,TJ,CH4,3.9,kg/TJ,76.06872,kg -cc568511-ccf7-3b31-b752-57e85d97d36c,SESCO,II.1.1,Misiones,AR-N,annual,2019,gas oil combustion consumption by freight transport,19.5048,TJ,N2O,3.9,kg/TJ,76.06872,kg -9418e70f-9f08-304c-90d1-c5d8c3a3d1e3,SESCO,II.1.1,Neuquén,AR-Q,annual,2019,gas oil combustion consumption by freight transport,0.36119999999999997,TJ,CO2,74100.0,kg/TJ,26764.92,kg -5ecbd7ed-40e8-37d2-8ea0-479066b19388,SESCO,II.1.1,Neuquén,AR-Q,annual,2019,gas oil combustion consumption by freight transport,0.36119999999999997,TJ,CH4,3.9,kg/TJ,1.40868,kg -5ecbd7ed-40e8-37d2-8ea0-479066b19388,SESCO,II.1.1,Neuquén,AR-Q,annual,2019,gas oil combustion consumption by freight transport,0.36119999999999997,TJ,N2O,3.9,kg/TJ,1.40868,kg -7f5080c7-5e29-32f6-97d7-f7b3a1f8668d,SESCO,II.1.1,Rio Negro,AR-R,annual,2019,gas oil combustion consumption by freight transport,31.352159999999998,TJ,CO2,74100.0,kg/TJ,2323195.056,kg -b4b704c7-c42a-363e-92ed-bc94393825af,SESCO,II.1.1,Rio Negro,AR-R,annual,2019,gas oil combustion consumption by freight transport,31.352159999999998,TJ,CH4,3.9,kg/TJ,122.27342399999999,kg -b4b704c7-c42a-363e-92ed-bc94393825af,SESCO,II.1.1,Rio Negro,AR-R,annual,2019,gas oil combustion consumption by freight transport,31.352159999999998,TJ,N2O,3.9,kg/TJ,122.27342399999999,kg -96b3d739-824b-3005-8909-7dfa629b5aca,SESCO,II.1.1,Salta,AR-A,annual,2019,gas oil combustion consumption by freight transport,1.51704,TJ,CO2,74100.0,kg/TJ,112412.66399999999,kg -2933e7af-cb5d-3206-bb56-c9b4f37a6a5b,SESCO,II.1.1,Salta,AR-A,annual,2019,gas oil combustion consumption by freight transport,1.51704,TJ,CH4,3.9,kg/TJ,5.916455999999999,kg -2933e7af-cb5d-3206-bb56-c9b4f37a6a5b,SESCO,II.1.1,Salta,AR-A,annual,2019,gas oil combustion consumption by freight transport,1.51704,TJ,N2O,3.9,kg/TJ,5.916455999999999,kg -f5af85eb-f11a-3384-abcb-6886f3de63b6,SESCO,II.1.1,San Juan,AR-J,annual,2019,gas oil combustion consumption by freight transport,1.806,TJ,CO2,74100.0,kg/TJ,133824.6,kg -7b98ea99-d442-31af-bd43-28e23391052f,SESCO,II.1.1,San Juan,AR-J,annual,2019,gas oil combustion consumption by freight transport,1.806,TJ,CH4,3.9,kg/TJ,7.0434,kg -7b98ea99-d442-31af-bd43-28e23391052f,SESCO,II.1.1,San Juan,AR-J,annual,2019,gas oil combustion consumption by freight transport,1.806,TJ,N2O,3.9,kg/TJ,7.0434,kg -4f111da6-a478-37ca-907f-9b019e8f932a,SESCO,II.1.1,San Luis,AR-D,annual,2019,gas oil combustion consumption by freight transport,16.21788,TJ,CO2,74100.0,kg/TJ,1201744.908,kg -b153934f-b54a-399a-80e2-60adb64c8006,SESCO,II.1.1,San Luis,AR-D,annual,2019,gas oil combustion consumption by freight transport,16.21788,TJ,CH4,3.9,kg/TJ,63.249732,kg -b153934f-b54a-399a-80e2-60adb64c8006,SESCO,II.1.1,San Luis,AR-D,annual,2019,gas oil combustion consumption by freight transport,16.21788,TJ,N2O,3.9,kg/TJ,63.249732,kg -65cf3685-a72b-3c22-97ce-1cf5e6d9c4c4,SESCO,II.1.1,Santa Fe,AR-S,annual,2019,gas oil combustion consumption by freight transport,148.41708,TJ,CO2,74100.0,kg/TJ,10997705.628,kg -a53d8149-b0d9-3fa0-86b9-e0f620e8b05c,SESCO,II.1.1,Santa Fe,AR-S,annual,2019,gas oil combustion consumption by freight transport,148.41708,TJ,CH4,3.9,kg/TJ,578.826612,kg -a53d8149-b0d9-3fa0-86b9-e0f620e8b05c,SESCO,II.1.1,Santa Fe,AR-S,annual,2019,gas oil combustion consumption by freight transport,148.41708,TJ,N2O,3.9,kg/TJ,578.826612,kg -4cc544bb-fa28-38ef-887f-2e1b253a9b9f,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2019,gas oil combustion consumption by freight transport,20.9496,TJ,CO2,74100.0,kg/TJ,1552365.36,kg -e792b28b-d6fc-3278-af91-890c858d88c0,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2019,gas oil combustion consumption by freight transport,20.9496,TJ,CH4,3.9,kg/TJ,81.70344,kg -e792b28b-d6fc-3278-af91-890c858d88c0,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2019,gas oil combustion consumption by freight transport,20.9496,TJ,N2O,3.9,kg/TJ,81.70344,kg -7ff9a212-f683-3bce-a94d-c32ac9541f9a,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2019,gas oil combustion consumption by freight transport,1.4447999999999999,TJ,CO2,74100.0,kg/TJ,107059.68,kg -2f3dc52f-b104-3e89-9363-d1a6dccf06d7,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2019,gas oil combustion consumption by freight transport,1.4447999999999999,TJ,CH4,3.9,kg/TJ,5.63472,kg -2f3dc52f-b104-3e89-9363-d1a6dccf06d7,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2019,gas oil combustion consumption by freight transport,1.4447999999999999,TJ,N2O,3.9,kg/TJ,5.63472,kg -5002a691-d2c7-3fe5-84b6-41d710e8f6b1,SESCO,II.1.1,Tucuman,AR-T,annual,2019,gas oil combustion consumption by freight transport,11.48616,TJ,CO2,74100.0,kg/TJ,851124.456,kg -d4a75ff4-d78b-3c43-a1e8-69342031d994,SESCO,II.1.1,Tucuman,AR-T,annual,2019,gas oil combustion consumption by freight transport,11.48616,TJ,CH4,3.9,kg/TJ,44.796023999999996,kg -d4a75ff4-d78b-3c43-a1e8-69342031d994,SESCO,II.1.1,Tucuman,AR-T,annual,2019,gas oil combustion consumption by freight transport,11.48616,TJ,N2O,3.9,kg/TJ,44.796023999999996,kg -3938dd93-009f-3aea-9295-d411503274d5,SESCO,II.1.1,Buenos Aires,AR-B,annual,2019,gas oil combustion consumption by freight transport,45.18612,TJ,CO2,74100.0,kg/TJ,3348291.492,kg -0cb1f56e-2089-3f85-a24b-4198c8bb57d9,SESCO,II.1.1,Buenos Aires,AR-B,annual,2019,gas oil combustion consumption by freight transport,45.18612,TJ,CH4,3.9,kg/TJ,176.22586800000002,kg -0cb1f56e-2089-3f85-a24b-4198c8bb57d9,SESCO,II.1.1,Buenos Aires,AR-B,annual,2019,gas oil combustion consumption by freight transport,45.18612,TJ,N2O,3.9,kg/TJ,176.22586800000002,kg -1756d6ec-c2f6-3fa6-95be-ed37d37d69e5,SESCO,II.1.1,Capital Federal,AR-C,annual,2019,gas oil combustion consumption by freight transport,3.93708,TJ,CO2,74100.0,kg/TJ,291737.62799999997,kg -71f99725-8fef-36f2-94be-70ad3f8d8e80,SESCO,II.1.1,Capital Federal,AR-C,annual,2019,gas oil combustion consumption by freight transport,3.93708,TJ,CH4,3.9,kg/TJ,15.354612,kg -71f99725-8fef-36f2-94be-70ad3f8d8e80,SESCO,II.1.1,Capital Federal,AR-C,annual,2019,gas oil combustion consumption by freight transport,3.93708,TJ,N2O,3.9,kg/TJ,15.354612,kg -addbd6f5-eaee-3654-b113-8290a3d9ea35,SESCO,II.1.1,Catamarca,AR-K,annual,2019,gas oil combustion consumption by freight transport,0.46956,TJ,CO2,74100.0,kg/TJ,34794.396,kg -ad29b53f-5abf-3bda-bd72-72399974dca9,SESCO,II.1.1,Catamarca,AR-K,annual,2019,gas oil combustion consumption by freight transport,0.46956,TJ,CH4,3.9,kg/TJ,1.831284,kg -ad29b53f-5abf-3bda-bd72-72399974dca9,SESCO,II.1.1,Catamarca,AR-K,annual,2019,gas oil combustion consumption by freight transport,0.46956,TJ,N2O,3.9,kg/TJ,1.831284,kg -6fb60979-cd2a-348e-ae15-06bf3e3eb073,SESCO,II.1.1,Chaco,AR-H,annual,2019,gas oil combustion consumption by freight transport,0.14448,TJ,CO2,74100.0,kg/TJ,10705.967999999999,kg -78f7e4a6-3411-3de1-b33c-81712c29e582,SESCO,II.1.1,Chaco,AR-H,annual,2019,gas oil combustion consumption by freight transport,0.14448,TJ,CH4,3.9,kg/TJ,0.563472,kg -78f7e4a6-3411-3de1-b33c-81712c29e582,SESCO,II.1.1,Chaco,AR-H,annual,2019,gas oil combustion consumption by freight transport,0.14448,TJ,N2O,3.9,kg/TJ,0.563472,kg -c3ffd12d-1717-3782-92f2-c882fcce71f4,SESCO,II.1.1,Chubut,AR-U,annual,2019,gas oil combustion consumption by freight transport,6.17652,TJ,CO2,74100.0,kg/TJ,457680.132,kg -88297c8e-fde3-35ec-87f8-4bc15fd569d6,SESCO,II.1.1,Chubut,AR-U,annual,2019,gas oil combustion consumption by freight transport,6.17652,TJ,CH4,3.9,kg/TJ,24.088428,kg -88297c8e-fde3-35ec-87f8-4bc15fd569d6,SESCO,II.1.1,Chubut,AR-U,annual,2019,gas oil combustion consumption by freight transport,6.17652,TJ,N2O,3.9,kg/TJ,24.088428,kg -47868173-63aa-3273-93c8-cc74a60ea152,SESCO,II.1.1,Corrientes,AR-W,annual,2019,gas oil combustion consumption by freight transport,3.93708,TJ,CO2,74100.0,kg/TJ,291737.62799999997,kg -64c3f5ac-53c6-3eea-a1d2-368e581122f8,SESCO,II.1.1,Corrientes,AR-W,annual,2019,gas oil combustion consumption by freight transport,3.93708,TJ,CH4,3.9,kg/TJ,15.354612,kg -64c3f5ac-53c6-3eea-a1d2-368e581122f8,SESCO,II.1.1,Corrientes,AR-W,annual,2019,gas oil combustion consumption by freight transport,3.93708,TJ,N2O,3.9,kg/TJ,15.354612,kg -1d77179a-27af-3006-b9c7-d84dbdec44b9,SESCO,II.1.1,Córdoba,AR-X,annual,2019,gas oil combustion consumption by freight transport,5.70696,TJ,CO2,74100.0,kg/TJ,422885.736,kg -d4e7f21c-fbe6-301d-a0c4-43f0724c12e9,SESCO,II.1.1,Córdoba,AR-X,annual,2019,gas oil combustion consumption by freight transport,5.70696,TJ,CH4,3.9,kg/TJ,22.257143999999997,kg -d4e7f21c-fbe6-301d-a0c4-43f0724c12e9,SESCO,II.1.1,Córdoba,AR-X,annual,2019,gas oil combustion consumption by freight transport,5.70696,TJ,N2O,3.9,kg/TJ,22.257143999999997,kg -619eeda8-6546-3897-97be-4f0a7163c88a,SESCO,II.1.1,Entre Rios,AR-E,annual,2019,gas oil combustion consumption by freight transport,2.81736,TJ,CO2,74100.0,kg/TJ,208766.376,kg -85a279bf-d30e-3d7c-9507-36b1359642a2,SESCO,II.1.1,Entre Rios,AR-E,annual,2019,gas oil combustion consumption by freight transport,2.81736,TJ,CH4,3.9,kg/TJ,10.987703999999999,kg -85a279bf-d30e-3d7c-9507-36b1359642a2,SESCO,II.1.1,Entre Rios,AR-E,annual,2019,gas oil combustion consumption by freight transport,2.81736,TJ,N2O,3.9,kg/TJ,10.987703999999999,kg -c840ef39-5db3-3991-abbd-12d53405e71c,SESCO,II.1.1,Formosa,AR-P,annual,2019,gas oil combustion consumption by freight transport,0.10836,TJ,CO2,74100.0,kg/TJ,8029.476,kg -4bda966b-5207-3f6e-945c-fa4e606d4620,SESCO,II.1.1,Formosa,AR-P,annual,2019,gas oil combustion consumption by freight transport,0.10836,TJ,CH4,3.9,kg/TJ,0.422604,kg -4bda966b-5207-3f6e-945c-fa4e606d4620,SESCO,II.1.1,Formosa,AR-P,annual,2019,gas oil combustion consumption by freight transport,0.10836,TJ,N2O,3.9,kg/TJ,0.422604,kg -2f2bef49-8cda-3d75-b58f-b70bb7287f1c,SESCO,II.1.1,Jujuy,AR-Y,annual,2019,gas oil combustion consumption by freight transport,0.10836,TJ,CO2,74100.0,kg/TJ,8029.476,kg -425adcec-7882-367e-94d7-8815ba9d4ba0,SESCO,II.1.1,Jujuy,AR-Y,annual,2019,gas oil combustion consumption by freight transport,0.10836,TJ,CH4,3.9,kg/TJ,0.422604,kg -425adcec-7882-367e-94d7-8815ba9d4ba0,SESCO,II.1.1,Jujuy,AR-Y,annual,2019,gas oil combustion consumption by freight transport,0.10836,TJ,N2O,3.9,kg/TJ,0.422604,kg -10a4baa1-2ae6-3186-8249-8b500656a911,SESCO,II.1.1,La Pampa,AR-L,annual,2019,gas oil combustion consumption by freight transport,0.36119999999999997,TJ,CO2,74100.0,kg/TJ,26764.92,kg -bb3aba1c-7027-31ff-bd2e-d4a17dfc2d85,SESCO,II.1.1,La Pampa,AR-L,annual,2019,gas oil combustion consumption by freight transport,0.36119999999999997,TJ,CH4,3.9,kg/TJ,1.40868,kg -bb3aba1c-7027-31ff-bd2e-d4a17dfc2d85,SESCO,II.1.1,La Pampa,AR-L,annual,2019,gas oil combustion consumption by freight transport,0.36119999999999997,TJ,N2O,3.9,kg/TJ,1.40868,kg -71f35628-d461-3d92-908a-4f18ec5c0bb1,SESCO,II.1.1,La Rioja,AR-F,annual,2019,gas oil combustion consumption by freight transport,0.18059999999999998,TJ,CO2,74100.0,kg/TJ,13382.46,kg -248d028d-918f-37d1-8a2c-6a763ef79988,SESCO,II.1.1,La Rioja,AR-F,annual,2019,gas oil combustion consumption by freight transport,0.18059999999999998,TJ,CH4,3.9,kg/TJ,0.70434,kg -248d028d-918f-37d1-8a2c-6a763ef79988,SESCO,II.1.1,La Rioja,AR-F,annual,2019,gas oil combustion consumption by freight transport,0.18059999999999998,TJ,N2O,3.9,kg/TJ,0.70434,kg -b31b5b82-032e-3106-8b5c-3c85d7eca157,SESCO,II.1.1,Mendoza,AR-M,annual,2019,gas oil combustion consumption by freight transport,1.04748,TJ,CO2,74100.0,kg/TJ,77618.268,kg -34da326f-d95f-3dc9-a0fc-4bebc78e0825,SESCO,II.1.1,Mendoza,AR-M,annual,2019,gas oil combustion consumption by freight transport,1.04748,TJ,CH4,3.9,kg/TJ,4.085172,kg -34da326f-d95f-3dc9-a0fc-4bebc78e0825,SESCO,II.1.1,Mendoza,AR-M,annual,2019,gas oil combustion consumption by freight transport,1.04748,TJ,N2O,3.9,kg/TJ,4.085172,kg -d82142b9-bca7-3aa6-924f-e5165cc57818,SESCO,II.1.1,Misiones,AR-N,annual,2019,gas oil combustion consumption by freight transport,2.31168,TJ,CO2,74100.0,kg/TJ,171295.48799999998,kg -e95e6794-bbd1-3530-9042-ddffa5469623,SESCO,II.1.1,Misiones,AR-N,annual,2019,gas oil combustion consumption by freight transport,2.31168,TJ,CH4,3.9,kg/TJ,9.015552,kg -e95e6794-bbd1-3530-9042-ddffa5469623,SESCO,II.1.1,Misiones,AR-N,annual,2019,gas oil combustion consumption by freight transport,2.31168,TJ,N2O,3.9,kg/TJ,9.015552,kg -bd3baad5-0b92-3119-a1c9-b2564c622e28,SESCO,II.1.1,Rio Negro,AR-R,annual,2019,gas oil combustion consumption by freight transport,3.86484,TJ,CO2,74100.0,kg/TJ,286384.64400000003,kg -a295b668-ae59-371d-ab65-c8a57f14dec2,SESCO,II.1.1,Rio Negro,AR-R,annual,2019,gas oil combustion consumption by freight transport,3.86484,TJ,CH4,3.9,kg/TJ,15.072875999999999,kg -a295b668-ae59-371d-ab65-c8a57f14dec2,SESCO,II.1.1,Rio Negro,AR-R,annual,2019,gas oil combustion consumption by freight transport,3.86484,TJ,N2O,3.9,kg/TJ,15.072875999999999,kg -81d68113-d191-36d2-959d-8c44c6334729,SESCO,II.1.1,Salta,AR-A,annual,2019,gas oil combustion consumption by freight transport,0.10836,TJ,CO2,74100.0,kg/TJ,8029.476,kg -53f60864-b496-3d8b-93da-a1aa1518f340,SESCO,II.1.1,Salta,AR-A,annual,2019,gas oil combustion consumption by freight transport,0.10836,TJ,CH4,3.9,kg/TJ,0.422604,kg -53f60864-b496-3d8b-93da-a1aa1518f340,SESCO,II.1.1,Salta,AR-A,annual,2019,gas oil combustion consumption by freight transport,0.10836,TJ,N2O,3.9,kg/TJ,0.422604,kg -f1c36709-d37a-3179-ace9-0637f6c05a1f,SESCO,II.1.1,San Juan,AR-J,annual,2019,gas oil combustion consumption by freight transport,0.03612,TJ,CO2,74100.0,kg/TJ,2676.4919999999997,kg -5e76d161-edcd-3406-a470-b0dd11894374,SESCO,II.1.1,San Juan,AR-J,annual,2019,gas oil combustion consumption by freight transport,0.03612,TJ,CH4,3.9,kg/TJ,0.140868,kg -5e76d161-edcd-3406-a470-b0dd11894374,SESCO,II.1.1,San Juan,AR-J,annual,2019,gas oil combustion consumption by freight transport,0.03612,TJ,N2O,3.9,kg/TJ,0.140868,kg -47c71ad6-d02b-30ff-9eaf-130fb711b834,SESCO,II.1.1,San Luis,AR-D,annual,2019,gas oil combustion consumption by freight transport,1.95048,TJ,CO2,74100.0,kg/TJ,144530.568,kg -40f15b42-fe93-3916-bc7e-4e44bcbda89d,SESCO,II.1.1,San Luis,AR-D,annual,2019,gas oil combustion consumption by freight transport,1.95048,TJ,CH4,3.9,kg/TJ,7.606872,kg -40f15b42-fe93-3916-bc7e-4e44bcbda89d,SESCO,II.1.1,San Luis,AR-D,annual,2019,gas oil combustion consumption by freight transport,1.95048,TJ,N2O,3.9,kg/TJ,7.606872,kg -dc9594a5-526e-38da-bdb6-bb4c60f83c41,SESCO,II.1.1,Santa Fe,AR-S,annual,2019,gas oil combustion consumption by freight transport,12.17244,TJ,CO2,74100.0,kg/TJ,901977.804,kg -2d54d9e4-1136-3df1-829a-2a68a8f96472,SESCO,II.1.1,Santa Fe,AR-S,annual,2019,gas oil combustion consumption by freight transport,12.17244,TJ,CH4,3.9,kg/TJ,47.472516,kg -2d54d9e4-1136-3df1-829a-2a68a8f96472,SESCO,II.1.1,Santa Fe,AR-S,annual,2019,gas oil combustion consumption by freight transport,12.17244,TJ,N2O,3.9,kg/TJ,47.472516,kg -3296a585-761b-3ec3-81db-fcb718acba68,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2019,gas oil combustion consumption by freight transport,2.99796,TJ,CO2,74100.0,kg/TJ,222148.836,kg -9023e776-b97f-391e-84be-c102e36558fa,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2019,gas oil combustion consumption by freight transport,2.99796,TJ,CH4,3.9,kg/TJ,11.692044,kg -9023e776-b97f-391e-84be-c102e36558fa,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2019,gas oil combustion consumption by freight transport,2.99796,TJ,N2O,3.9,kg/TJ,11.692044,kg -ddce9e07-bd60-3e3b-bc29-ceb67f95b8ab,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2019,gas oil combustion consumption by freight transport,0.18059999999999998,TJ,CO2,74100.0,kg/TJ,13382.46,kg -7c744107-015a-3ba4-ad46-e0d215c085a3,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2019,gas oil combustion consumption by freight transport,0.18059999999999998,TJ,CH4,3.9,kg/TJ,0.70434,kg -7c744107-015a-3ba4-ad46-e0d215c085a3,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2019,gas oil combustion consumption by freight transport,0.18059999999999998,TJ,N2O,3.9,kg/TJ,0.70434,kg -d7e99494-d5cf-3c7d-a8a2-d8df26c05292,SESCO,II.1.1,Tucuman,AR-T,annual,2019,gas oil combustion consumption by freight transport,1.91436,TJ,CO2,74100.0,kg/TJ,141854.076,kg -02b8ab09-8f4e-390f-b3ec-fa3e48860cb4,SESCO,II.1.1,Tucuman,AR-T,annual,2019,gas oil combustion consumption by freight transport,1.91436,TJ,CH4,3.9,kg/TJ,7.466004,kg -02b8ab09-8f4e-390f-b3ec-fa3e48860cb4,SESCO,II.1.1,Tucuman,AR-T,annual,2019,gas oil combustion consumption by freight transport,1.91436,TJ,N2O,3.9,kg/TJ,7.466004,kg -a113c7cf-216e-3ebb-bed4-3a67af851575,SESCO,II.1.1,Buenos Aires,AR-B,annual,2019,gas oil combustion consumption by public passenger transport,556.7175599999999,TJ,CO2,74100.0,kg/TJ,41252771.195999995,kg -8a713286-bf18-3b93-9982-dbb596905f3c,SESCO,II.1.1,Buenos Aires,AR-B,annual,2019,gas oil combustion consumption by public passenger transport,556.7175599999999,TJ,CH4,3.9,kg/TJ,2171.1984839999996,kg -8a713286-bf18-3b93-9982-dbb596905f3c,SESCO,II.1.1,Buenos Aires,AR-B,annual,2019,gas oil combustion consumption by public passenger transport,556.7175599999999,TJ,N2O,3.9,kg/TJ,2171.1984839999996,kg -cc3baa2c-7b2a-3ff8-a029-8d2bb77e0b30,SESCO,II.1.1,Capital Federal,AR-C,annual,2019,gas oil combustion consumption by public passenger transport,312.438,TJ,CO2,74100.0,kg/TJ,23151655.8,kg -1b747833-8a0b-3bc1-9bc5-c9e037cca7e0,SESCO,II.1.1,Capital Federal,AR-C,annual,2019,gas oil combustion consumption by public passenger transport,312.438,TJ,CH4,3.9,kg/TJ,1218.5082,kg -1b747833-8a0b-3bc1-9bc5-c9e037cca7e0,SESCO,II.1.1,Capital Federal,AR-C,annual,2019,gas oil combustion consumption by public passenger transport,312.438,TJ,N2O,3.9,kg/TJ,1218.5082,kg -d8de63ec-e525-3cb5-a057-37eb8a8a9f52,SESCO,II.1.1,Chaco,AR-H,annual,2019,gas oil combustion consumption by public passenger transport,5.38188,TJ,CO2,74100.0,kg/TJ,398797.30799999996,kg -422017bb-b8ee-3317-8dc2-0408da8fa9bf,SESCO,II.1.1,Chaco,AR-H,annual,2019,gas oil combustion consumption by public passenger transport,5.38188,TJ,CH4,3.9,kg/TJ,20.989331999999997,kg -422017bb-b8ee-3317-8dc2-0408da8fa9bf,SESCO,II.1.1,Chaco,AR-H,annual,2019,gas oil combustion consumption by public passenger transport,5.38188,TJ,N2O,3.9,kg/TJ,20.989331999999997,kg -cce28f0b-fa95-32c0-951a-aaaebe09d055,SESCO,II.1.1,Chubut,AR-U,annual,2019,gas oil combustion consumption by public passenger transport,1.73376,TJ,CO2,74100.0,kg/TJ,128471.616,kg -47170c8c-e0cf-3924-8e01-d383bdfee478,SESCO,II.1.1,Chubut,AR-U,annual,2019,gas oil combustion consumption by public passenger transport,1.73376,TJ,CH4,3.9,kg/TJ,6.761664,kg -47170c8c-e0cf-3924-8e01-d383bdfee478,SESCO,II.1.1,Chubut,AR-U,annual,2019,gas oil combustion consumption by public passenger transport,1.73376,TJ,N2O,3.9,kg/TJ,6.761664,kg -c5e118e1-115a-3af4-b7e8-aeef6af1e466,SESCO,II.1.1,Corrientes,AR-W,annual,2019,gas oil combustion consumption by public passenger transport,0.03612,TJ,CO2,74100.0,kg/TJ,2676.4919999999997,kg -fe070851-74ff-31b5-8b70-6122da117dd5,SESCO,II.1.1,Corrientes,AR-W,annual,2019,gas oil combustion consumption by public passenger transport,0.03612,TJ,CH4,3.9,kg/TJ,0.140868,kg -fe070851-74ff-31b5-8b70-6122da117dd5,SESCO,II.1.1,Corrientes,AR-W,annual,2019,gas oil combustion consumption by public passenger transport,0.03612,TJ,N2O,3.9,kg/TJ,0.140868,kg -381ff276-b308-3593-8d29-b80bf408bff7,SESCO,II.1.1,Córdoba,AR-X,annual,2019,gas oil combustion consumption by public passenger transport,113.12783999999999,TJ,CO2,74100.0,kg/TJ,8382772.943999999,kg -90a4341d-f36e-39df-b8fe-c51a984feb89,SESCO,II.1.1,Córdoba,AR-X,annual,2019,gas oil combustion consumption by public passenger transport,113.12783999999999,TJ,CH4,3.9,kg/TJ,441.19857599999995,kg -90a4341d-f36e-39df-b8fe-c51a984feb89,SESCO,II.1.1,Córdoba,AR-X,annual,2019,gas oil combustion consumption by public passenger transport,113.12783999999999,TJ,N2O,3.9,kg/TJ,441.19857599999995,kg -8b984235-40e1-3fdc-9791-024fcf713754,SESCO,II.1.1,Entre Rios,AR-E,annual,2019,gas oil combustion consumption by public passenger transport,2.38392,TJ,CO2,74100.0,kg/TJ,176648.47199999998,kg -11d5e27e-6d47-36a9-9d7a-dcd73fd69846,SESCO,II.1.1,Entre Rios,AR-E,annual,2019,gas oil combustion consumption by public passenger transport,2.38392,TJ,CH4,3.9,kg/TJ,9.297287999999998,kg -11d5e27e-6d47-36a9-9d7a-dcd73fd69846,SESCO,II.1.1,Entre Rios,AR-E,annual,2019,gas oil combustion consumption by public passenger transport,2.38392,TJ,N2O,3.9,kg/TJ,9.297287999999998,kg -dd5ae63e-ecb1-318c-a7e3-0d4656cdae44,SESCO,II.1.1,Formosa,AR-P,annual,2019,gas oil combustion consumption by public passenger transport,10.14972,TJ,CO2,74100.0,kg/TJ,752094.252,kg -2f5578c5-aef3-3b9c-8b25-1594e15d3e67,SESCO,II.1.1,Formosa,AR-P,annual,2019,gas oil combustion consumption by public passenger transport,10.14972,TJ,CH4,3.9,kg/TJ,39.583908,kg -2f5578c5-aef3-3b9c-8b25-1594e15d3e67,SESCO,II.1.1,Formosa,AR-P,annual,2019,gas oil combustion consumption by public passenger transport,10.14972,TJ,N2O,3.9,kg/TJ,39.583908,kg -387b3ce5-66fa-311e-aaeb-27732bca7325,SESCO,II.1.1,La Pampa,AR-L,annual,2019,gas oil combustion consumption by public passenger transport,2.96184,TJ,CO2,74100.0,kg/TJ,219472.344,kg -eb450481-2acf-3400-bf8a-6f005fdf170c,SESCO,II.1.1,La Pampa,AR-L,annual,2019,gas oil combustion consumption by public passenger transport,2.96184,TJ,CH4,3.9,kg/TJ,11.551176,kg -eb450481-2acf-3400-bf8a-6f005fdf170c,SESCO,II.1.1,La Pampa,AR-L,annual,2019,gas oil combustion consumption by public passenger transport,2.96184,TJ,N2O,3.9,kg/TJ,11.551176,kg -1e932c80-4ec7-3901-8971-2c9b4b5bb040,SESCO,II.1.1,Misiones,AR-N,annual,2019,gas oil combustion consumption by public passenger transport,81.34224,TJ,CO2,74100.0,kg/TJ,6027459.984,kg -d5aafe30-8de7-3686-86bc-511497c67206,SESCO,II.1.1,Misiones,AR-N,annual,2019,gas oil combustion consumption by public passenger transport,81.34224,TJ,CH4,3.9,kg/TJ,317.234736,kg -d5aafe30-8de7-3686-86bc-511497c67206,SESCO,II.1.1,Misiones,AR-N,annual,2019,gas oil combustion consumption by public passenger transport,81.34224,TJ,N2O,3.9,kg/TJ,317.234736,kg -23b48000-cd0a-30e1-bc7d-791264845570,SESCO,II.1.1,Neuquén,AR-Q,annual,2019,gas oil combustion consumption by public passenger transport,1.9866,TJ,CO2,74100.0,kg/TJ,147207.06,kg -606b00d2-942d-3bc3-b498-139051d08b85,SESCO,II.1.1,Neuquén,AR-Q,annual,2019,gas oil combustion consumption by public passenger transport,1.9866,TJ,CH4,3.9,kg/TJ,7.747739999999999,kg -606b00d2-942d-3bc3-b498-139051d08b85,SESCO,II.1.1,Neuquén,AR-Q,annual,2019,gas oil combustion consumption by public passenger transport,1.9866,TJ,N2O,3.9,kg/TJ,7.747739999999999,kg -3e6c58a8-f731-3f7a-9c87-570a1cce786e,SESCO,II.1.1,Rio Negro,AR-R,annual,2019,gas oil combustion consumption by public passenger transport,14.33964,TJ,CO2,74100.0,kg/TJ,1062567.324,kg -84309e2a-671a-3176-bce5-44336fe83ee6,SESCO,II.1.1,Rio Negro,AR-R,annual,2019,gas oil combustion consumption by public passenger transport,14.33964,TJ,CH4,3.9,kg/TJ,55.924595999999994,kg -84309e2a-671a-3176-bce5-44336fe83ee6,SESCO,II.1.1,Rio Negro,AR-R,annual,2019,gas oil combustion consumption by public passenger transport,14.33964,TJ,N2O,3.9,kg/TJ,55.924595999999994,kg -b50c9312-6cbf-3cc8-afc9-8f4c86f6e93c,SESCO,II.1.1,Santa Fe,AR-S,annual,2019,gas oil combustion consumption by public passenger transport,114.82548,TJ,CO2,74100.0,kg/TJ,8508568.068,kg -5fae92dc-d7fd-344e-b293-bfa80ada0ec6,SESCO,II.1.1,Santa Fe,AR-S,annual,2019,gas oil combustion consumption by public passenger transport,114.82548,TJ,CH4,3.9,kg/TJ,447.819372,kg -5fae92dc-d7fd-344e-b293-bfa80ada0ec6,SESCO,II.1.1,Santa Fe,AR-S,annual,2019,gas oil combustion consumption by public passenger transport,114.82548,TJ,N2O,3.9,kg/TJ,447.819372,kg -d27255e8-11e8-3cee-9b53-d94f61510b66,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2019,gas oil combustion consumption by public passenger transport,0.28896,TJ,CO2,74100.0,kg/TJ,21411.935999999998,kg -e1b3d369-0de6-3861-89b1-d4345d02e101,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2019,gas oil combustion consumption by public passenger transport,0.28896,TJ,CH4,3.9,kg/TJ,1.126944,kg -e1b3d369-0de6-3861-89b1-d4345d02e101,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2019,gas oil combustion consumption by public passenger transport,0.28896,TJ,N2O,3.9,kg/TJ,1.126944,kg -b86c5aa6-bd08-36b7-82e7-5b5676224729,SESCO,II.1.1,Tucuman,AR-T,annual,2019,gas oil combustion consumption by public passenger transport,106.62624,TJ,CO2,74100.0,kg/TJ,7901004.384,kg -814c6384-7be8-3498-9f23-d591cadfb91a,SESCO,II.1.1,Tucuman,AR-T,annual,2019,gas oil combustion consumption by public passenger transport,106.62624,TJ,CH4,3.9,kg/TJ,415.842336,kg -814c6384-7be8-3498-9f23-d591cadfb91a,SESCO,II.1.1,Tucuman,AR-T,annual,2019,gas oil combustion consumption by public passenger transport,106.62624,TJ,N2O,3.9,kg/TJ,415.842336,kg -5d3bbe08-83de-3123-a7b5-5323e3672fb8,SESCO,II.1.1,Buenos Aires,AR-B,annual,2019,gas oil combustion consumption by public passenger transport,131.80188,TJ,CO2,74100.0,kg/TJ,9766519.308,kg -482e18e0-57f6-306e-ad62-5ec626c89174,SESCO,II.1.1,Buenos Aires,AR-B,annual,2019,gas oil combustion consumption by public passenger transport,131.80188,TJ,CH4,3.9,kg/TJ,514.027332,kg -482e18e0-57f6-306e-ad62-5ec626c89174,SESCO,II.1.1,Buenos Aires,AR-B,annual,2019,gas oil combustion consumption by public passenger transport,131.80188,TJ,N2O,3.9,kg/TJ,514.027332,kg -185ee54e-a68f-3fb6-80ac-aead5f559502,SESCO,II.1.1,Capital Federal,AR-C,annual,2019,gas oil combustion consumption by public passenger transport,88.06056,TJ,CO2,74100.0,kg/TJ,6525287.495999999,kg -1974ff72-0296-34ed-9d71-900033f94a70,SESCO,II.1.1,Capital Federal,AR-C,annual,2019,gas oil combustion consumption by public passenger transport,88.06056,TJ,CH4,3.9,kg/TJ,343.43618399999997,kg -1974ff72-0296-34ed-9d71-900033f94a70,SESCO,II.1.1,Capital Federal,AR-C,annual,2019,gas oil combustion consumption by public passenger transport,88.06056,TJ,N2O,3.9,kg/TJ,343.43618399999997,kg -493e083f-6e43-3ff2-ac0b-67de42f6e1ba,SESCO,II.1.1,Chubut,AR-U,annual,2019,gas oil combustion consumption by public passenger transport,0.86688,TJ,CO2,74100.0,kg/TJ,64235.808,kg -9a6b09b5-f25e-3067-a494-92fad8a488fd,SESCO,II.1.1,Chubut,AR-U,annual,2019,gas oil combustion consumption by public passenger transport,0.86688,TJ,CH4,3.9,kg/TJ,3.380832,kg -9a6b09b5-f25e-3067-a494-92fad8a488fd,SESCO,II.1.1,Chubut,AR-U,annual,2019,gas oil combustion consumption by public passenger transport,0.86688,TJ,N2O,3.9,kg/TJ,3.380832,kg -3039ef93-5716-3c76-8068-6f8e1077839b,SESCO,II.1.1,Corrientes,AR-W,annual,2019,gas oil combustion consumption by public passenger transport,0.10836,TJ,CO2,74100.0,kg/TJ,8029.476,kg -24195902-1a05-35a6-a0de-930379f5e7cc,SESCO,II.1.1,Corrientes,AR-W,annual,2019,gas oil combustion consumption by public passenger transport,0.10836,TJ,CH4,3.9,kg/TJ,0.422604,kg -24195902-1a05-35a6-a0de-930379f5e7cc,SESCO,II.1.1,Corrientes,AR-W,annual,2019,gas oil combustion consumption by public passenger transport,0.10836,TJ,N2O,3.9,kg/TJ,0.422604,kg -1c261785-0735-3031-a485-f3e17237e11c,SESCO,II.1.1,Córdoba,AR-X,annual,2019,gas oil combustion consumption by public passenger transport,3.72036,TJ,CO2,74100.0,kg/TJ,275678.676,kg -7de9db90-4128-35a9-aba7-ffcc1ef9c28e,SESCO,II.1.1,Córdoba,AR-X,annual,2019,gas oil combustion consumption by public passenger transport,3.72036,TJ,CH4,3.9,kg/TJ,14.509404,kg -7de9db90-4128-35a9-aba7-ffcc1ef9c28e,SESCO,II.1.1,Córdoba,AR-X,annual,2019,gas oil combustion consumption by public passenger transport,3.72036,TJ,N2O,3.9,kg/TJ,14.509404,kg -75b57c10-f352-33c8-b770-304016d21099,SESCO,II.1.1,Entre Rios,AR-E,annual,2019,gas oil combustion consumption by public passenger transport,2.23944,TJ,CO2,74100.0,kg/TJ,165942.50400000002,kg -a6066018-5ece-3b15-bbbb-61836a7a8d67,SESCO,II.1.1,Entre Rios,AR-E,annual,2019,gas oil combustion consumption by public passenger transport,2.23944,TJ,CH4,3.9,kg/TJ,8.733816000000001,kg -a6066018-5ece-3b15-bbbb-61836a7a8d67,SESCO,II.1.1,Entre Rios,AR-E,annual,2019,gas oil combustion consumption by public passenger transport,2.23944,TJ,N2O,3.9,kg/TJ,8.733816000000001,kg -c5e1b29b-622a-324d-b245-affe0fa8206f,SESCO,II.1.1,La Pampa,AR-L,annual,2019,gas oil combustion consumption by public passenger transport,3.64812,TJ,CO2,74100.0,kg/TJ,270325.692,kg -bfe47d1d-bfb0-370f-be61-060da7fea084,SESCO,II.1.1,La Pampa,AR-L,annual,2019,gas oil combustion consumption by public passenger transport,3.64812,TJ,CH4,3.9,kg/TJ,14.227668,kg -bfe47d1d-bfb0-370f-be61-060da7fea084,SESCO,II.1.1,La Pampa,AR-L,annual,2019,gas oil combustion consumption by public passenger transport,3.64812,TJ,N2O,3.9,kg/TJ,14.227668,kg -8096f219-7d3c-3a5f-8a02-7c991fbb6cd2,SESCO,II.1.1,Neuquén,AR-Q,annual,2019,gas oil combustion consumption by public passenger transport,2.5284,TJ,CO2,74100.0,kg/TJ,187354.44,kg -bf48c769-d642-3148-8ccf-b81cdd421726,SESCO,II.1.1,Neuquén,AR-Q,annual,2019,gas oil combustion consumption by public passenger transport,2.5284,TJ,CH4,3.9,kg/TJ,9.860759999999999,kg -bf48c769-d642-3148-8ccf-b81cdd421726,SESCO,II.1.1,Neuquén,AR-Q,annual,2019,gas oil combustion consumption by public passenger transport,2.5284,TJ,N2O,3.9,kg/TJ,9.860759999999999,kg -10d3269b-77a7-385a-861d-8f086c65092e,SESCO,II.1.1,Rio Negro,AR-R,annual,2019,gas oil combustion consumption by public passenger transport,27.05388,TJ,CO2,74100.0,kg/TJ,2004692.508,kg -738cdf1e-3c59-312e-8df7-1635b6621529,SESCO,II.1.1,Rio Negro,AR-R,annual,2019,gas oil combustion consumption by public passenger transport,27.05388,TJ,CH4,3.9,kg/TJ,105.510132,kg -738cdf1e-3c59-312e-8df7-1635b6621529,SESCO,II.1.1,Rio Negro,AR-R,annual,2019,gas oil combustion consumption by public passenger transport,27.05388,TJ,N2O,3.9,kg/TJ,105.510132,kg -78a32a8f-358e-394a-be00-78fd7a4a6076,SESCO,II.1.1,Santa Fe,AR-S,annual,2019,gas oil combustion consumption by public passenger transport,30.08796,TJ,CO2,74100.0,kg/TJ,2229517.836,kg -36587cb3-f8f2-382a-b2f2-fe8e996bf8a6,SESCO,II.1.1,Santa Fe,AR-S,annual,2019,gas oil combustion consumption by public passenger transport,30.08796,TJ,CH4,3.9,kg/TJ,117.34304399999999,kg -36587cb3-f8f2-382a-b2f2-fe8e996bf8a6,SESCO,II.1.1,Santa Fe,AR-S,annual,2019,gas oil combustion consumption by public passenger transport,30.08796,TJ,N2O,3.9,kg/TJ,117.34304399999999,kg -ae68de93-c898-387f-a0e0-40801a8bee73,SESCO,II.5.1,Buenos Aires,AR-B,annual,2019,gas oil combustion consumption by agriculture machines,1604.70324,TJ,CO2,74100.0,kg/TJ,118908510.084,kg -ffb40d21-6ea0-33c8-ab9e-7595918073e9,SESCO,II.5.1,Buenos Aires,AR-B,annual,2019,gas oil combustion consumption by agriculture machines,1604.70324,TJ,CH4,3.9,kg/TJ,6258.342636,kg -ffb40d21-6ea0-33c8-ab9e-7595918073e9,SESCO,II.5.1,Buenos Aires,AR-B,annual,2019,gas oil combustion consumption by agriculture machines,1604.70324,TJ,N2O,3.9,kg/TJ,6258.342636,kg -fa648806-711b-3d21-8c21-fbf43b2d5522,SESCO,II.5.1,Chaco,AR-H,annual,2019,gas oil combustion consumption by agriculture machines,312.00455999999997,TJ,CO2,74100.0,kg/TJ,23119537.895999998,kg -f99b1e93-7c4a-3338-b813-08007b1e5aca,SESCO,II.5.1,Chaco,AR-H,annual,2019,gas oil combustion consumption by agriculture machines,312.00455999999997,TJ,CH4,3.9,kg/TJ,1216.8177839999998,kg -f99b1e93-7c4a-3338-b813-08007b1e5aca,SESCO,II.5.1,Chaco,AR-H,annual,2019,gas oil combustion consumption by agriculture machines,312.00455999999997,TJ,N2O,3.9,kg/TJ,1216.8177839999998,kg -772c818c-e91f-3d78-b2f4-2f6eaac0bcca,SESCO,II.5.1,Corrientes,AR-W,annual,2019,gas oil combustion consumption by agriculture machines,99.94404,TJ,CO2,74100.0,kg/TJ,7405853.364,kg -53da0c6e-ca0c-3c3f-ab29-0bb08a35cd51,SESCO,II.5.1,Corrientes,AR-W,annual,2019,gas oil combustion consumption by agriculture machines,99.94404,TJ,CH4,3.9,kg/TJ,389.781756,kg -53da0c6e-ca0c-3c3f-ab29-0bb08a35cd51,SESCO,II.5.1,Corrientes,AR-W,annual,2019,gas oil combustion consumption by agriculture machines,99.94404,TJ,N2O,3.9,kg/TJ,389.781756,kg -fa31e505-eb23-375d-bd23-e32f5ecb17d9,SESCO,II.5.1,Córdoba,AR-X,annual,2019,gas oil combustion consumption by agriculture machines,1641.07608,TJ,CO2,74100.0,kg/TJ,121603737.528,kg -e2e546dc-2b9a-32a4-b4d1-59757dd54395,SESCO,II.5.1,Córdoba,AR-X,annual,2019,gas oil combustion consumption by agriculture machines,1641.07608,TJ,CH4,3.9,kg/TJ,6400.196712,kg -e2e546dc-2b9a-32a4-b4d1-59757dd54395,SESCO,II.5.1,Córdoba,AR-X,annual,2019,gas oil combustion consumption by agriculture machines,1641.07608,TJ,N2O,3.9,kg/TJ,6400.196712,kg -0fe382d7-7971-34e9-ab35-a7da667159c7,SESCO,II.5.1,Entre Rios,AR-E,annual,2019,gas oil combustion consumption by agriculture machines,71.1564,TJ,CO2,74100.0,kg/TJ,5272689.24,kg -754dbe5e-b2ca-3742-8ddd-00867f73fc12,SESCO,II.5.1,Entre Rios,AR-E,annual,2019,gas oil combustion consumption by agriculture machines,71.1564,TJ,CH4,3.9,kg/TJ,277.50996000000004,kg -754dbe5e-b2ca-3742-8ddd-00867f73fc12,SESCO,II.5.1,Entre Rios,AR-E,annual,2019,gas oil combustion consumption by agriculture machines,71.1564,TJ,N2O,3.9,kg/TJ,277.50996000000004,kg -0d5de676-bd78-3481-85b0-1fa33ad72109,SESCO,II.5.1,La Pampa,AR-L,annual,2019,gas oil combustion consumption by agriculture machines,86.688,TJ,CO2,74100.0,kg/TJ,6423580.8,kg -39f76f46-1a60-328c-b719-cee5da9c98a8,SESCO,II.5.1,La Pampa,AR-L,annual,2019,gas oil combustion consumption by agriculture machines,86.688,TJ,CH4,3.9,kg/TJ,338.0832,kg -39f76f46-1a60-328c-b719-cee5da9c98a8,SESCO,II.5.1,La Pampa,AR-L,annual,2019,gas oil combustion consumption by agriculture machines,86.688,TJ,N2O,3.9,kg/TJ,338.0832,kg -8566c21d-6b4b-315c-a674-7dead7925ef1,SESCO,II.5.1,Mendoza,AR-M,annual,2019,gas oil combustion consumption by agriculture machines,679.48944,TJ,CO2,74100.0,kg/TJ,50350167.50399999,kg -8c1e4b52-f6c2-3cf2-91a6-a64fe5c7515b,SESCO,II.5.1,Mendoza,AR-M,annual,2019,gas oil combustion consumption by agriculture machines,679.48944,TJ,CH4,3.9,kg/TJ,2650.0088159999996,kg -8c1e4b52-f6c2-3cf2-91a6-a64fe5c7515b,SESCO,II.5.1,Mendoza,AR-M,annual,2019,gas oil combustion consumption by agriculture machines,679.48944,TJ,N2O,3.9,kg/TJ,2650.0088159999996,kg -8f652b6c-04ec-3a7a-963d-8b08e296d21f,SESCO,II.5.1,Neuquén,AR-Q,annual,2019,gas oil combustion consumption by agriculture machines,128.73168,TJ,CO2,74100.0,kg/TJ,9539017.488000002,kg -9594a649-e6b2-304c-8efc-9fd496c064c3,SESCO,II.5.1,Neuquén,AR-Q,annual,2019,gas oil combustion consumption by agriculture machines,128.73168,TJ,CH4,3.9,kg/TJ,502.053552,kg -9594a649-e6b2-304c-8efc-9fd496c064c3,SESCO,II.5.1,Neuquén,AR-Q,annual,2019,gas oil combustion consumption by agriculture machines,128.73168,TJ,N2O,3.9,kg/TJ,502.053552,kg -f6fa66f1-8cff-3171-a6f2-3c33f0c8d9d1,SESCO,II.5.1,Santa Cruz,AR-Z,annual,2019,gas oil combustion consumption by agriculture machines,55.37196,TJ,CO2,74100.0,kg/TJ,4103062.236,kg -a8905203-7f50-3906-a630-ee35e970294a,SESCO,II.5.1,Santa Cruz,AR-Z,annual,2019,gas oil combustion consumption by agriculture machines,55.37196,TJ,CH4,3.9,kg/TJ,215.950644,kg -a8905203-7f50-3906-a630-ee35e970294a,SESCO,II.5.1,Santa Cruz,AR-Z,annual,2019,gas oil combustion consumption by agriculture machines,55.37196,TJ,N2O,3.9,kg/TJ,215.950644,kg -473859b7-3f72-3e38-9fde-d1c49c5f43d0,SESCO,II.5.1,Santa Fe,AR-S,annual,2019,gas oil combustion consumption by agriculture machines,2022.46716,TJ,CO2,74100.0,kg/TJ,149864816.556,kg -520f11f6-0f03-380a-b9ca-067de74413ca,SESCO,II.5.1,Santa Fe,AR-S,annual,2019,gas oil combustion consumption by agriculture machines,2022.46716,TJ,CH4,3.9,kg/TJ,7887.621923999999,kg -520f11f6-0f03-380a-b9ca-067de74413ca,SESCO,II.5.1,Santa Fe,AR-S,annual,2019,gas oil combustion consumption by agriculture machines,2022.46716,TJ,N2O,3.9,kg/TJ,7887.621923999999,kg -37477141-448a-3efb-8fd1-c2c71e05fb06,SESCO,II.5.1,Santiago del Estero,AR-G,annual,2019,gas oil combustion consumption by agriculture machines,170.16132,TJ,CO2,74100.0,kg/TJ,12608953.811999999,kg -d45174b9-30a3-3991-9442-2371792f7c27,SESCO,II.5.1,Santiago del Estero,AR-G,annual,2019,gas oil combustion consumption by agriculture machines,170.16132,TJ,CH4,3.9,kg/TJ,663.629148,kg -d45174b9-30a3-3991-9442-2371792f7c27,SESCO,II.5.1,Santiago del Estero,AR-G,annual,2019,gas oil combustion consumption by agriculture machines,170.16132,TJ,N2O,3.9,kg/TJ,663.629148,kg -815c3168-6bb2-3efd-915d-4e931a239dd7,SESCO,II.5.1,Tucuman,AR-T,annual,2019,gas oil combustion consumption by agriculture machines,142.3128,TJ,CO2,74100.0,kg/TJ,10545378.48,kg -ea9a03e2-d177-3572-b101-ed1d81efa92a,SESCO,II.5.1,Tucuman,AR-T,annual,2019,gas oil combustion consumption by agriculture machines,142.3128,TJ,CH4,3.9,kg/TJ,555.0199200000001,kg -ea9a03e2-d177-3572-b101-ed1d81efa92a,SESCO,II.5.1,Tucuman,AR-T,annual,2019,gas oil combustion consumption by agriculture machines,142.3128,TJ,N2O,3.9,kg/TJ,555.0199200000001,kg -af5ac64c-8ae8-3ffc-b8da-198f8cb0fe06,SESCO,II.5.1,Buenos Aires,AR-B,annual,2019,gas oil combustion consumption by agriculture machines,69.38652,TJ,CO2,74100.0,kg/TJ,5141541.132,kg -984dd0b0-24ce-33b3-b833-fad47830abd6,SESCO,II.5.1,Buenos Aires,AR-B,annual,2019,gas oil combustion consumption by agriculture machines,69.38652,TJ,CH4,3.9,kg/TJ,270.607428,kg -984dd0b0-24ce-33b3-b833-fad47830abd6,SESCO,II.5.1,Buenos Aires,AR-B,annual,2019,gas oil combustion consumption by agriculture machines,69.38652,TJ,N2O,3.9,kg/TJ,270.607428,kg -888a9580-3faa-30c8-b819-02efcabcd605,SESCO,II.5.1,Chaco,AR-H,annual,2019,gas oil combustion consumption by agriculture machines,73.21524,TJ,CO2,74100.0,kg/TJ,5425249.284,kg -f6a150ae-8134-3143-b8b8-e7cbfb01ddd4,SESCO,II.5.1,Chaco,AR-H,annual,2019,gas oil combustion consumption by agriculture machines,73.21524,TJ,CH4,3.9,kg/TJ,285.53943599999997,kg -f6a150ae-8134-3143-b8b8-e7cbfb01ddd4,SESCO,II.5.1,Chaco,AR-H,annual,2019,gas oil combustion consumption by agriculture machines,73.21524,TJ,N2O,3.9,kg/TJ,285.53943599999997,kg -6f81d7c7-bf3e-31bf-bc3b-a08bbc2cd7cd,SESCO,II.5.1,Corrientes,AR-W,annual,2019,gas oil combustion consumption by agriculture machines,23.839199999999998,TJ,CO2,74100.0,kg/TJ,1766484.72,kg -e70e3000-f22d-36b1-a333-a764cb38c3de,SESCO,II.5.1,Corrientes,AR-W,annual,2019,gas oil combustion consumption by agriculture machines,23.839199999999998,TJ,CH4,3.9,kg/TJ,92.97287999999999,kg -e70e3000-f22d-36b1-a333-a764cb38c3de,SESCO,II.5.1,Corrientes,AR-W,annual,2019,gas oil combustion consumption by agriculture machines,23.839199999999998,TJ,N2O,3.9,kg/TJ,92.97287999999999,kg -9b79ad38-21ee-315f-b526-86fba7cf7caa,SESCO,II.5.1,Córdoba,AR-X,annual,2019,gas oil combustion consumption by agriculture machines,79.50012,TJ,CO2,74100.0,kg/TJ,5890958.892,kg -2c741362-7643-3e93-a963-f9aa9ab5f1b9,SESCO,II.5.1,Córdoba,AR-X,annual,2019,gas oil combustion consumption by agriculture machines,79.50012,TJ,CH4,3.9,kg/TJ,310.05046799999997,kg -2c741362-7643-3e93-a963-f9aa9ab5f1b9,SESCO,II.5.1,Córdoba,AR-X,annual,2019,gas oil combustion consumption by agriculture machines,79.50012,TJ,N2O,3.9,kg/TJ,310.05046799999997,kg -aca827d3-d4ff-3235-ae5d-0b1e32c7242a,SESCO,II.5.1,La Pampa,AR-L,annual,2019,gas oil combustion consumption by agriculture machines,7.7658,TJ,CO2,74100.0,kg/TJ,575445.78,kg -bc0469ff-a3a4-3083-84a6-2e3c1aa28d0d,SESCO,II.5.1,La Pampa,AR-L,annual,2019,gas oil combustion consumption by agriculture machines,7.7658,TJ,CH4,3.9,kg/TJ,30.28662,kg -bc0469ff-a3a4-3083-84a6-2e3c1aa28d0d,SESCO,II.5.1,La Pampa,AR-L,annual,2019,gas oil combustion consumption by agriculture machines,7.7658,TJ,N2O,3.9,kg/TJ,30.28662,kg -8f63089d-2806-3bef-bff5-d0571d68c6ff,SESCO,II.5.1,Mendoza,AR-M,annual,2019,gas oil combustion consumption by agriculture machines,165.32124,TJ,CO2,74100.0,kg/TJ,12250303.884,kg -0bd38547-ded4-3b86-a56d-b3c568c5a270,SESCO,II.5.1,Mendoza,AR-M,annual,2019,gas oil combustion consumption by agriculture machines,165.32124,TJ,CH4,3.9,kg/TJ,644.7528359999999,kg -0bd38547-ded4-3b86-a56d-b3c568c5a270,SESCO,II.5.1,Mendoza,AR-M,annual,2019,gas oil combustion consumption by agriculture machines,165.32124,TJ,N2O,3.9,kg/TJ,644.7528359999999,kg -de89cacc-806d-3bb0-990a-30db407a83a3,SESCO,II.5.1,Neuquén,AR-Q,annual,2019,gas oil combustion consumption by agriculture machines,9.28284,TJ,CO2,74100.0,kg/TJ,687858.444,kg -e1ded2ec-2419-381b-8f3a-81de4097dae3,SESCO,II.5.1,Neuquén,AR-Q,annual,2019,gas oil combustion consumption by agriculture machines,9.28284,TJ,CH4,3.9,kg/TJ,36.203076,kg -e1ded2ec-2419-381b-8f3a-81de4097dae3,SESCO,II.5.1,Neuquén,AR-Q,annual,2019,gas oil combustion consumption by agriculture machines,9.28284,TJ,N2O,3.9,kg/TJ,36.203076,kg -2ea59ce5-838a-3311-a648-fcb95b7850e6,SESCO,II.5.1,Santa Cruz,AR-Z,annual,2019,gas oil combustion consumption by agriculture machines,20.69676,TJ,CO2,74100.0,kg/TJ,1533629.9160000002,kg -88e8b607-22ae-35f8-9d43-144e31d69683,SESCO,II.5.1,Santa Cruz,AR-Z,annual,2019,gas oil combustion consumption by agriculture machines,20.69676,TJ,CH4,3.9,kg/TJ,80.717364,kg -88e8b607-22ae-35f8-9d43-144e31d69683,SESCO,II.5.1,Santa Cruz,AR-Z,annual,2019,gas oil combustion consumption by agriculture machines,20.69676,TJ,N2O,3.9,kg/TJ,80.717364,kg -6d460fee-6f32-3d04-90ca-a222df2673ac,SESCO,II.5.1,Santa Fe,AR-S,annual,2019,gas oil combustion consumption by agriculture machines,113.52516,TJ,CO2,74100.0,kg/TJ,8412214.356,kg -67d4d4d2-f243-355d-8441-3f3f7866fd00,SESCO,II.5.1,Santa Fe,AR-S,annual,2019,gas oil combustion consumption by agriculture machines,113.52516,TJ,CH4,3.9,kg/TJ,442.74812399999996,kg -67d4d4d2-f243-355d-8441-3f3f7866fd00,SESCO,II.5.1,Santa Fe,AR-S,annual,2019,gas oil combustion consumption by agriculture machines,113.52516,TJ,N2O,3.9,kg/TJ,442.74812399999996,kg -571e2e02-ef95-3f1e-bc11-e742a6abc2cf,SESCO,II.5.1,Santiago del Estero,AR-G,annual,2019,gas oil combustion consumption by agriculture machines,27.52344,TJ,CO2,74100.0,kg/TJ,2039486.904,kg -b74e18dc-972a-3607-bdf4-d8a9e1a5670f,SESCO,II.5.1,Santiago del Estero,AR-G,annual,2019,gas oil combustion consumption by agriculture machines,27.52344,TJ,CH4,3.9,kg/TJ,107.341416,kg -b74e18dc-972a-3607-bdf4-d8a9e1a5670f,SESCO,II.5.1,Santiago del Estero,AR-G,annual,2019,gas oil combustion consumption by agriculture machines,27.52344,TJ,N2O,3.9,kg/TJ,107.341416,kg -b19fa8e3-7823-346d-ab24-2c1d349ff0f4,SESCO,II.5.1,Tucuman,AR-T,annual,2019,gas oil combustion consumption by agriculture machines,26.87328,TJ,CO2,74100.0,kg/TJ,1991310.0480000002,kg -4c5b0450-06b4-3a15-b4c8-b10aba2eae83,SESCO,II.5.1,Tucuman,AR-T,annual,2019,gas oil combustion consumption by agriculture machines,26.87328,TJ,CH4,3.9,kg/TJ,104.805792,kg -4c5b0450-06b4-3a15-b4c8-b10aba2eae83,SESCO,II.5.1,Tucuman,AR-T,annual,2019,gas oil combustion consumption by agriculture machines,26.87328,TJ,N2O,3.9,kg/TJ,104.805792,kg -c9111535-d053-3db9-a46c-39dad2f7eac7,SESCO,II.1.1,Buenos Aires,AR-B,annual,2019,gas oil combustion consumption by to the public,6533.71068,TJ,CO2,74100.0,kg/TJ,484147961.388,kg -45c44cff-3236-3a48-9b61-6e486202c704,SESCO,II.1.1,Buenos Aires,AR-B,annual,2019,gas oil combustion consumption by to the public,6533.71068,TJ,CH4,3.9,kg/TJ,25481.471652,kg -45c44cff-3236-3a48-9b61-6e486202c704,SESCO,II.1.1,Buenos Aires,AR-B,annual,2019,gas oil combustion consumption by to the public,6533.71068,TJ,N2O,3.9,kg/TJ,25481.471652,kg -f7701347-6e83-3680-ba2a-ba2f51c5785a,SESCO,II.1.1,Capital Federal,AR-C,annual,2019,gas oil combustion consumption by to the public,640.84104,TJ,CO2,74100.0,kg/TJ,47486321.064,kg -79d4c2d3-cdde-3e12-afd4-cb09ec9724ea,SESCO,II.1.1,Capital Federal,AR-C,annual,2019,gas oil combustion consumption by to the public,640.84104,TJ,CH4,3.9,kg/TJ,2499.280056,kg -79d4c2d3-cdde-3e12-afd4-cb09ec9724ea,SESCO,II.1.1,Capital Federal,AR-C,annual,2019,gas oil combustion consumption by to the public,640.84104,TJ,N2O,3.9,kg/TJ,2499.280056,kg -77448e63-3854-311a-9514-78646387856b,SESCO,II.1.1,Catamarca,AR-K,annual,2019,gas oil combustion consumption by to the public,186.30696,TJ,CO2,74100.0,kg/TJ,13805345.736,kg -9b29ab08-c95a-3e4b-a199-008ce2e69414,SESCO,II.1.1,Catamarca,AR-K,annual,2019,gas oil combustion consumption by to the public,186.30696,TJ,CH4,3.9,kg/TJ,726.597144,kg -9b29ab08-c95a-3e4b-a199-008ce2e69414,SESCO,II.1.1,Catamarca,AR-K,annual,2019,gas oil combustion consumption by to the public,186.30696,TJ,N2O,3.9,kg/TJ,726.597144,kg -8a6cd6e1-c3e3-3b22-a902-7765f378d8e6,SESCO,II.1.1,Chaco,AR-H,annual,2019,gas oil combustion consumption by to the public,274.512,TJ,CO2,74100.0,kg/TJ,20341339.2,kg -9e533823-6805-3f99-85a8-cf7b79d42032,SESCO,II.1.1,Chaco,AR-H,annual,2019,gas oil combustion consumption by to the public,274.512,TJ,CH4,3.9,kg/TJ,1070.5968,kg -9e533823-6805-3f99-85a8-cf7b79d42032,SESCO,II.1.1,Chaco,AR-H,annual,2019,gas oil combustion consumption by to the public,274.512,TJ,N2O,3.9,kg/TJ,1070.5968,kg -f05bf604-fb8a-3599-9b72-6d5809f39560,SESCO,II.1.1,Chubut,AR-U,annual,2019,gas oil combustion consumption by to the public,1251.0162,TJ,CO2,74100.0,kg/TJ,92700300.42,kg -efdba0a1-c591-37ab-9384-8ffc95dbee1f,SESCO,II.1.1,Chubut,AR-U,annual,2019,gas oil combustion consumption by to the public,1251.0162,TJ,CH4,3.9,kg/TJ,4878.96318,kg -efdba0a1-c591-37ab-9384-8ffc95dbee1f,SESCO,II.1.1,Chubut,AR-U,annual,2019,gas oil combustion consumption by to the public,1251.0162,TJ,N2O,3.9,kg/TJ,4878.96318,kg -71ff34d0-4f4d-39c0-8e80-f9168b8a4fff,SESCO,II.1.1,Corrientes,AR-W,annual,2019,gas oil combustion consumption by to the public,550.54104,TJ,CO2,74100.0,kg/TJ,40795091.063999996,kg -edfc9dcd-1fed-3d24-a301-453a121e5397,SESCO,II.1.1,Corrientes,AR-W,annual,2019,gas oil combustion consumption by to the public,550.54104,TJ,CH4,3.9,kg/TJ,2147.110056,kg -edfc9dcd-1fed-3d24-a301-453a121e5397,SESCO,II.1.1,Corrientes,AR-W,annual,2019,gas oil combustion consumption by to the public,550.54104,TJ,N2O,3.9,kg/TJ,2147.110056,kg -e3e0694c-c3fa-39ce-a90c-860264cdec04,SESCO,II.1.1,Córdoba,AR-X,annual,2019,gas oil combustion consumption by to the public,3216.16092,TJ,CO2,74100.0,kg/TJ,238317524.172,kg -e31d82b9-49c4-3e34-9a4f-59efd413ce72,SESCO,II.1.1,Córdoba,AR-X,annual,2019,gas oil combustion consumption by to the public,3216.16092,TJ,CH4,3.9,kg/TJ,12543.027587999999,kg -e31d82b9-49c4-3e34-9a4f-59efd413ce72,SESCO,II.1.1,Córdoba,AR-X,annual,2019,gas oil combustion consumption by to the public,3216.16092,TJ,N2O,3.9,kg/TJ,12543.027587999999,kg -1aec03ea-25bf-3a9f-a2b4-81cbb4195166,SESCO,II.1.1,Entre Rios,AR-E,annual,2019,gas oil combustion consumption by to the public,1016.52516,TJ,CO2,74100.0,kg/TJ,75324514.356,kg -5875ff81-f6a7-38e5-97a7-abd48c51f981,SESCO,II.1.1,Entre Rios,AR-E,annual,2019,gas oil combustion consumption by to the public,1016.52516,TJ,CH4,3.9,kg/TJ,3964.448124,kg -5875ff81-f6a7-38e5-97a7-abd48c51f981,SESCO,II.1.1,Entre Rios,AR-E,annual,2019,gas oil combustion consumption by to the public,1016.52516,TJ,N2O,3.9,kg/TJ,3964.448124,kg -33d0f477-d0a6-35bc-917a-0e6f502c5aef,SESCO,II.1.1,Formosa,AR-P,annual,2019,gas oil combustion consumption by to the public,350.68908,TJ,CO2,74100.0,kg/TJ,25986060.827999998,kg -cd799f6a-2b18-32a5-8a22-d91dbca7f337,SESCO,II.1.1,Formosa,AR-P,annual,2019,gas oil combustion consumption by to the public,350.68908,TJ,CH4,3.9,kg/TJ,1367.687412,kg -cd799f6a-2b18-32a5-8a22-d91dbca7f337,SESCO,II.1.1,Formosa,AR-P,annual,2019,gas oil combustion consumption by to the public,350.68908,TJ,N2O,3.9,kg/TJ,1367.687412,kg -8e19202a-8c6e-38cf-8fca-1bbad16176b7,SESCO,II.1.1,Jujuy,AR-Y,annual,2019,gas oil combustion consumption by to the public,139.63992,TJ,CO2,74100.0,kg/TJ,10347318.071999999,kg -84ac57b9-643c-3484-adbf-e4a461897bfb,SESCO,II.1.1,Jujuy,AR-Y,annual,2019,gas oil combustion consumption by to the public,139.63992,TJ,CH4,3.9,kg/TJ,544.595688,kg -84ac57b9-643c-3484-adbf-e4a461897bfb,SESCO,II.1.1,Jujuy,AR-Y,annual,2019,gas oil combustion consumption by to the public,139.63992,TJ,N2O,3.9,kg/TJ,544.595688,kg -82ee1691-f819-3b17-a379-a066c4072f07,SESCO,II.1.1,La Pampa,AR-L,annual,2019,gas oil combustion consumption by to the public,296.83416,TJ,CO2,74100.0,kg/TJ,21995411.256,kg -eb23ced7-3564-3f64-b6eb-164c0dff9360,SESCO,II.1.1,La Pampa,AR-L,annual,2019,gas oil combustion consumption by to the public,296.83416,TJ,CH4,3.9,kg/TJ,1157.653224,kg -eb23ced7-3564-3f64-b6eb-164c0dff9360,SESCO,II.1.1,La Pampa,AR-L,annual,2019,gas oil combustion consumption by to the public,296.83416,TJ,N2O,3.9,kg/TJ,1157.653224,kg -427c83c3-9eeb-39c3-b0de-29815e7e8403,SESCO,II.1.1,La Rioja,AR-F,annual,2019,gas oil combustion consumption by to the public,39.5514,TJ,CO2,74100.0,kg/TJ,2930758.74,kg -2a813c81-5bf9-3f86-9e01-fb5b52e86b16,SESCO,II.1.1,La Rioja,AR-F,annual,2019,gas oil combustion consumption by to the public,39.5514,TJ,CH4,3.9,kg/TJ,154.25046,kg -2a813c81-5bf9-3f86-9e01-fb5b52e86b16,SESCO,II.1.1,La Rioja,AR-F,annual,2019,gas oil combustion consumption by to the public,39.5514,TJ,N2O,3.9,kg/TJ,154.25046,kg -fc8d62e2-8f48-336a-8888-8769bb5ff31f,SESCO,II.1.1,Mendoza,AR-M,annual,2019,gas oil combustion consumption by to the public,880.6056,TJ,CO2,74100.0,kg/TJ,65252874.96,kg -5a7943c6-9501-3479-be7c-8f8060cfd66a,SESCO,II.1.1,Mendoza,AR-M,annual,2019,gas oil combustion consumption by to the public,880.6056,TJ,CH4,3.9,kg/TJ,3434.36184,kg -5a7943c6-9501-3479-be7c-8f8060cfd66a,SESCO,II.1.1,Mendoza,AR-M,annual,2019,gas oil combustion consumption by to the public,880.6056,TJ,N2O,3.9,kg/TJ,3434.36184,kg -a306df34-7155-3657-8cfb-8913217cc060,SESCO,II.1.1,Misiones,AR-N,annual,2019,gas oil combustion consumption by to the public,594.64356,TJ,CO2,74100.0,kg/TJ,44063087.796,kg -8c8a5f86-0f2e-3ddd-be84-7408c92f7344,SESCO,II.1.1,Misiones,AR-N,annual,2019,gas oil combustion consumption by to the public,594.64356,TJ,CH4,3.9,kg/TJ,2319.109884,kg -8c8a5f86-0f2e-3ddd-be84-7408c92f7344,SESCO,II.1.1,Misiones,AR-N,annual,2019,gas oil combustion consumption by to the public,594.64356,TJ,N2O,3.9,kg/TJ,2319.109884,kg -f68f8ca8-4a07-31ba-afa2-f4a5ed33d695,SESCO,II.1.1,Neuquén,AR-Q,annual,2019,gas oil combustion consumption by to the public,166.76604,TJ,CO2,74100.0,kg/TJ,12357363.564000001,kg -466c6ca1-ef4c-37e2-84b9-27aa5a3511e4,SESCO,II.1.1,Neuquén,AR-Q,annual,2019,gas oil combustion consumption by to the public,166.76604,TJ,CH4,3.9,kg/TJ,650.387556,kg -466c6ca1-ef4c-37e2-84b9-27aa5a3511e4,SESCO,II.1.1,Neuquén,AR-Q,annual,2019,gas oil combustion consumption by to the public,166.76604,TJ,N2O,3.9,kg/TJ,650.387556,kg -81a8e885-6a03-35e0-9302-53417fce4d73,SESCO,II.1.1,Rio Negro,AR-R,annual,2019,gas oil combustion consumption by to the public,391.1796,TJ,CO2,74100.0,kg/TJ,28986408.36,kg -6a4fe960-2f17-3498-a952-7f120f5d0440,SESCO,II.1.1,Rio Negro,AR-R,annual,2019,gas oil combustion consumption by to the public,391.1796,TJ,CH4,3.9,kg/TJ,1525.60044,kg -6a4fe960-2f17-3498-a952-7f120f5d0440,SESCO,II.1.1,Rio Negro,AR-R,annual,2019,gas oil combustion consumption by to the public,391.1796,TJ,N2O,3.9,kg/TJ,1525.60044,kg -76079fb9-1681-39c3-8578-c73311f7f098,SESCO,II.1.1,Salta,AR-A,annual,2019,gas oil combustion consumption by to the public,56.09436,TJ,CO2,74100.0,kg/TJ,4156592.0760000004,kg -ef7adef7-22bf-3c91-9e24-a8e5b13df216,SESCO,II.1.1,Salta,AR-A,annual,2019,gas oil combustion consumption by to the public,56.09436,TJ,CH4,3.9,kg/TJ,218.768004,kg -ef7adef7-22bf-3c91-9e24-a8e5b13df216,SESCO,II.1.1,Salta,AR-A,annual,2019,gas oil combustion consumption by to the public,56.09436,TJ,N2O,3.9,kg/TJ,218.768004,kg -453388b4-c415-3abb-8bca-30d2efd200a3,SESCO,II.1.1,San Juan,AR-J,annual,2019,gas oil combustion consumption by to the public,182.65884,TJ,CO2,74100.0,kg/TJ,13535020.044,kg -a1cadcea-8565-3c50-b343-5af3bbdf96db,SESCO,II.1.1,San Juan,AR-J,annual,2019,gas oil combustion consumption by to the public,182.65884,TJ,CH4,3.9,kg/TJ,712.369476,kg -a1cadcea-8565-3c50-b343-5af3bbdf96db,SESCO,II.1.1,San Juan,AR-J,annual,2019,gas oil combustion consumption by to the public,182.65884,TJ,N2O,3.9,kg/TJ,712.369476,kg -90e85cdd-e4e0-3951-b324-09b54f415e0e,SESCO,II.1.1,San Luis,AR-D,annual,2019,gas oil combustion consumption by to the public,618.1938,TJ,CO2,74100.0,kg/TJ,45808160.58,kg -59ef67bf-d626-3d92-8b2d-6ae4d19d953d,SESCO,II.1.1,San Luis,AR-D,annual,2019,gas oil combustion consumption by to the public,618.1938,TJ,CH4,3.9,kg/TJ,2410.95582,kg -59ef67bf-d626-3d92-8b2d-6ae4d19d953d,SESCO,II.1.1,San Luis,AR-D,annual,2019,gas oil combustion consumption by to the public,618.1938,TJ,N2O,3.9,kg/TJ,2410.95582,kg -499a85ec-5909-3477-a31f-891c101991ab,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2019,gas oil combustion consumption by to the public,373.44468,TJ,CO2,74100.0,kg/TJ,27672250.788,kg -48bbb525-824f-351d-bd5c-63c399eaebf2,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2019,gas oil combustion consumption by to the public,373.44468,TJ,CH4,3.9,kg/TJ,1456.434252,kg -48bbb525-824f-351d-bd5c-63c399eaebf2,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2019,gas oil combustion consumption by to the public,373.44468,TJ,N2O,3.9,kg/TJ,1456.434252,kg -ae08ec35-c94b-3059-99f8-0313f542bff3,SESCO,II.1.1,Santa Fe,AR-S,annual,2019,gas oil combustion consumption by to the public,1947.62652,TJ,CO2,74100.0,kg/TJ,144319125.132,kg -98884e56-dd10-3c1e-93c2-91b823fe758f,SESCO,II.1.1,Santa Fe,AR-S,annual,2019,gas oil combustion consumption by to the public,1947.62652,TJ,CH4,3.9,kg/TJ,7595.743428,kg -98884e56-dd10-3c1e-93c2-91b823fe758f,SESCO,II.1.1,Santa Fe,AR-S,annual,2019,gas oil combustion consumption by to the public,1947.62652,TJ,N2O,3.9,kg/TJ,7595.743428,kg -8f00041e-df7a-38d3-b387-d1dd5a53093c,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2019,gas oil combustion consumption by to the public,526.73796,TJ,CO2,74100.0,kg/TJ,39031282.836,kg -12f018e8-be2a-344a-8bf6-3bda42faae63,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2019,gas oil combustion consumption by to the public,526.73796,TJ,CH4,3.9,kg/TJ,2054.278044,kg -12f018e8-be2a-344a-8bf6-3bda42faae63,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2019,gas oil combustion consumption by to the public,526.73796,TJ,N2O,3.9,kg/TJ,2054.278044,kg -29505e3f-1e9d-341f-a32a-f248ccc90098,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2019,gas oil combustion consumption by to the public,44.13864,TJ,CO2,74100.0,kg/TJ,3270673.2240000004,kg -a6502aa1-58e2-32a1-b1b2-d5de169799f5,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2019,gas oil combustion consumption by to the public,44.13864,TJ,CH4,3.9,kg/TJ,172.140696,kg -a6502aa1-58e2-32a1-b1b2-d5de169799f5,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2019,gas oil combustion consumption by to the public,44.13864,TJ,N2O,3.9,kg/TJ,172.140696,kg -174c147e-5d4e-3ae0-9351-48a79d0e52f0,SESCO,II.1.1,Tucuman,AR-T,annual,2019,gas oil combustion consumption by to the public,51.94056,TJ,CO2,74100.0,kg/TJ,3848795.496,kg -8c9288e9-fc0b-307d-a498-f214311fba7e,SESCO,II.1.1,Tucuman,AR-T,annual,2019,gas oil combustion consumption by to the public,51.94056,TJ,CH4,3.9,kg/TJ,202.56818399999997,kg -8c9288e9-fc0b-307d-a498-f214311fba7e,SESCO,II.1.1,Tucuman,AR-T,annual,2019,gas oil combustion consumption by to the public,51.94056,TJ,N2O,3.9,kg/TJ,202.56818399999997,kg -f10d2a6e-3fa8-3b0d-be21-531d0f3b79a5,SESCO,II.1.1,Buenos Aires,AR-B,annual,2019,gas oil combustion consumption by to the public,2464.72044,TJ,CO2,74100.0,kg/TJ,182635784.604,kg -a2605d17-ac9a-3381-ae15-3c10d9b62d0b,SESCO,II.1.1,Buenos Aires,AR-B,annual,2019,gas oil combustion consumption by to the public,2464.72044,TJ,CH4,3.9,kg/TJ,9612.409716,kg -a2605d17-ac9a-3381-ae15-3c10d9b62d0b,SESCO,II.1.1,Buenos Aires,AR-B,annual,2019,gas oil combustion consumption by to the public,2464.72044,TJ,N2O,3.9,kg/TJ,9612.409716,kg -911f11d8-6f84-38c4-854f-0adb0e1342d9,SESCO,II.1.1,Capital Federal,AR-C,annual,2019,gas oil combustion consumption by to the public,447.45456,TJ,CO2,74100.0,kg/TJ,33156382.896,kg -c89c5c14-4c27-3faa-8174-b212758e19df,SESCO,II.1.1,Capital Federal,AR-C,annual,2019,gas oil combustion consumption by to the public,447.45456,TJ,CH4,3.9,kg/TJ,1745.072784,kg -c89c5c14-4c27-3faa-8174-b212758e19df,SESCO,II.1.1,Capital Federal,AR-C,annual,2019,gas oil combustion consumption by to the public,447.45456,TJ,N2O,3.9,kg/TJ,1745.072784,kg -1216f97a-1901-3a33-a8a0-3292de26aa1d,SESCO,II.1.1,Catamarca,AR-K,annual,2019,gas oil combustion consumption by to the public,150.36756,TJ,CO2,74100.0,kg/TJ,11142236.196,kg -c822c3e2-40df-3957-a5f8-7130c1fc54f5,SESCO,II.1.1,Catamarca,AR-K,annual,2019,gas oil combustion consumption by to the public,150.36756,TJ,CH4,3.9,kg/TJ,586.433484,kg -c822c3e2-40df-3957-a5f8-7130c1fc54f5,SESCO,II.1.1,Catamarca,AR-K,annual,2019,gas oil combustion consumption by to the public,150.36756,TJ,N2O,3.9,kg/TJ,586.433484,kg -3e0ad805-3624-3a83-bb06-853f03b5b6a6,SESCO,II.1.1,Chaco,AR-H,annual,2019,gas oil combustion consumption by to the public,99.43836,TJ,CO2,74100.0,kg/TJ,7368382.476,kg -d1675f32-23e5-3936-8101-81e9ec304249,SESCO,II.1.1,Chaco,AR-H,annual,2019,gas oil combustion consumption by to the public,99.43836,TJ,CH4,3.9,kg/TJ,387.809604,kg -d1675f32-23e5-3936-8101-81e9ec304249,SESCO,II.1.1,Chaco,AR-H,annual,2019,gas oil combustion consumption by to the public,99.43836,TJ,N2O,3.9,kg/TJ,387.809604,kg -323aedd9-4da5-3ea9-b020-13c1c417e8f4,SESCO,II.1.1,Chubut,AR-U,annual,2019,gas oil combustion consumption by to the public,516.66048,TJ,CO2,74100.0,kg/TJ,38284541.568,kg -005ab6d4-2fb0-3547-95b3-4a4e445d281c,SESCO,II.1.1,Chubut,AR-U,annual,2019,gas oil combustion consumption by to the public,516.66048,TJ,CH4,3.9,kg/TJ,2014.975872,kg -005ab6d4-2fb0-3547-95b3-4a4e445d281c,SESCO,II.1.1,Chubut,AR-U,annual,2019,gas oil combustion consumption by to the public,516.66048,TJ,N2O,3.9,kg/TJ,2014.975872,kg -fd9d5e03-fb6a-34d4-bcf7-fd81a5b8b914,SESCO,II.1.1,Corrientes,AR-W,annual,2019,gas oil combustion consumption by to the public,165.21287999999998,TJ,CO2,74100.0,kg/TJ,12242274.407999998,kg -e3ac8c69-cee0-3a9a-9140-a6ab41eb6120,SESCO,II.1.1,Corrientes,AR-W,annual,2019,gas oil combustion consumption by to the public,165.21287999999998,TJ,CH4,3.9,kg/TJ,644.3302319999999,kg -e3ac8c69-cee0-3a9a-9140-a6ab41eb6120,SESCO,II.1.1,Corrientes,AR-W,annual,2019,gas oil combustion consumption by to the public,165.21287999999998,TJ,N2O,3.9,kg/TJ,644.3302319999999,kg -bd1694cc-c309-33cb-828a-0ead13ab464a,SESCO,II.1.1,Córdoba,AR-X,annual,2019,gas oil combustion consumption by to the public,821.4410399999999,TJ,CO2,74100.0,kg/TJ,60868781.063999996,kg -a169584a-fb78-38e8-9673-2d0598881357,SESCO,II.1.1,Córdoba,AR-X,annual,2019,gas oil combustion consumption by to the public,821.4410399999999,TJ,CH4,3.9,kg/TJ,3203.6200559999997,kg -a169584a-fb78-38e8-9673-2d0598881357,SESCO,II.1.1,Córdoba,AR-X,annual,2019,gas oil combustion consumption by to the public,821.4410399999999,TJ,N2O,3.9,kg/TJ,3203.6200559999997,kg -a8cc9bec-4ba7-3e0f-98e8-dfc7312a032f,SESCO,II.1.1,Entre Rios,AR-E,annual,2019,gas oil combustion consumption by to the public,338.9862,TJ,CO2,74100.0,kg/TJ,25118877.419999998,kg -df2ecdd9-c3d9-3e97-96b2-6840b530f6d6,SESCO,II.1.1,Entre Rios,AR-E,annual,2019,gas oil combustion consumption by to the public,338.9862,TJ,CH4,3.9,kg/TJ,1322.04618,kg -df2ecdd9-c3d9-3e97-96b2-6840b530f6d6,SESCO,II.1.1,Entre Rios,AR-E,annual,2019,gas oil combustion consumption by to the public,338.9862,TJ,N2O,3.9,kg/TJ,1322.04618,kg -60183474-8577-32bc-834a-da90963ea933,SESCO,II.1.1,Formosa,AR-P,annual,2019,gas oil combustion consumption by to the public,204.6198,TJ,CO2,74100.0,kg/TJ,15162327.18,kg -841b7b7d-9406-346b-aabb-d3cbf4ce34de,SESCO,II.1.1,Formosa,AR-P,annual,2019,gas oil combustion consumption by to the public,204.6198,TJ,CH4,3.9,kg/TJ,798.01722,kg -841b7b7d-9406-346b-aabb-d3cbf4ce34de,SESCO,II.1.1,Formosa,AR-P,annual,2019,gas oil combustion consumption by to the public,204.6198,TJ,N2O,3.9,kg/TJ,798.01722,kg -160d165d-797a-3075-82f1-319f09c2d9c0,SESCO,II.1.1,Jujuy,AR-Y,annual,2019,gas oil combustion consumption by to the public,52.41012,TJ,CO2,74100.0,kg/TJ,3883589.892,kg -126b0401-72d9-30a2-8b56-a90716e400da,SESCO,II.1.1,Jujuy,AR-Y,annual,2019,gas oil combustion consumption by to the public,52.41012,TJ,CH4,3.9,kg/TJ,204.39946799999998,kg -126b0401-72d9-30a2-8b56-a90716e400da,SESCO,II.1.1,Jujuy,AR-Y,annual,2019,gas oil combustion consumption by to the public,52.41012,TJ,N2O,3.9,kg/TJ,204.39946799999998,kg -e8411438-476c-3527-a988-f85dffe80623,SESCO,II.1.1,La Pampa,AR-L,annual,2019,gas oil combustion consumption by to the public,107.89044,TJ,CO2,74100.0,kg/TJ,7994681.604,kg -cc2c5ce9-a5b4-37dc-a28d-77931d2e9a29,SESCO,II.1.1,La Pampa,AR-L,annual,2019,gas oil combustion consumption by to the public,107.89044,TJ,CH4,3.9,kg/TJ,420.772716,kg -cc2c5ce9-a5b4-37dc-a28d-77931d2e9a29,SESCO,II.1.1,La Pampa,AR-L,annual,2019,gas oil combustion consumption by to the public,107.89044,TJ,N2O,3.9,kg/TJ,420.772716,kg -ec288d8d-3180-329a-9ead-ba6b9f0a8877,SESCO,II.1.1,La Rioja,AR-F,annual,2019,gas oil combustion consumption by to the public,44.535959999999996,TJ,CO2,74100.0,kg/TJ,3300114.6359999995,kg -15f776f1-e482-30b2-a414-b934c36727ee,SESCO,II.1.1,La Rioja,AR-F,annual,2019,gas oil combustion consumption by to the public,44.535959999999996,TJ,CH4,3.9,kg/TJ,173.69024399999998,kg -15f776f1-e482-30b2-a414-b934c36727ee,SESCO,II.1.1,La Rioja,AR-F,annual,2019,gas oil combustion consumption by to the public,44.535959999999996,TJ,N2O,3.9,kg/TJ,173.69024399999998,kg -e24c3c3b-dcbe-3437-99dc-3c2b2d282cf6,SESCO,II.1.1,Mendoza,AR-M,annual,2019,gas oil combustion consumption by to the public,290.65764,TJ,CO2,74100.0,kg/TJ,21537731.124,kg -6cfc5545-b31b-384f-8c66-f47c4122cb1d,SESCO,II.1.1,Mendoza,AR-M,annual,2019,gas oil combustion consumption by to the public,290.65764,TJ,CH4,3.9,kg/TJ,1133.5647960000001,kg -6cfc5545-b31b-384f-8c66-f47c4122cb1d,SESCO,II.1.1,Mendoza,AR-M,annual,2019,gas oil combustion consumption by to the public,290.65764,TJ,N2O,3.9,kg/TJ,1133.5647960000001,kg -c864c00b-f0ac-34d7-a53e-58e92f09a126,SESCO,II.1.1,Misiones,AR-N,annual,2019,gas oil combustion consumption by to the public,195.55367999999999,TJ,CO2,74100.0,kg/TJ,14490527.688,kg -9d7a34d3-9b64-37c1-b9bf-894e35957f53,SESCO,II.1.1,Misiones,AR-N,annual,2019,gas oil combustion consumption by to the public,195.55367999999999,TJ,CH4,3.9,kg/TJ,762.6593519999999,kg -9d7a34d3-9b64-37c1-b9bf-894e35957f53,SESCO,II.1.1,Misiones,AR-N,annual,2019,gas oil combustion consumption by to the public,195.55367999999999,TJ,N2O,3.9,kg/TJ,762.6593519999999,kg -f87088f9-7004-3680-86b2-2e2d41e4b69f,SESCO,II.1.1,Neuquén,AR-Q,annual,2019,gas oil combustion consumption by to the public,214.22772,TJ,CO2,74100.0,kg/TJ,15874274.052000001,kg -d63ba5dc-5ba3-3ff8-ac5d-cac52e9e3ebf,SESCO,II.1.1,Neuquén,AR-Q,annual,2019,gas oil combustion consumption by to the public,214.22772,TJ,CH4,3.9,kg/TJ,835.488108,kg -d63ba5dc-5ba3-3ff8-ac5d-cac52e9e3ebf,SESCO,II.1.1,Neuquén,AR-Q,annual,2019,gas oil combustion consumption by to the public,214.22772,TJ,N2O,3.9,kg/TJ,835.488108,kg -a91a57d0-6c81-357b-87ad-06bc43f660f8,SESCO,II.1.1,Rio Negro,AR-R,annual,2019,gas oil combustion consumption by to the public,235.43016,TJ,CO2,74100.0,kg/TJ,17445374.856,kg -d8dac3b3-0a04-30f8-b592-3bd839100157,SESCO,II.1.1,Rio Negro,AR-R,annual,2019,gas oil combustion consumption by to the public,235.43016,TJ,CH4,3.9,kg/TJ,918.177624,kg -d8dac3b3-0a04-30f8-b592-3bd839100157,SESCO,II.1.1,Rio Negro,AR-R,annual,2019,gas oil combustion consumption by to the public,235.43016,TJ,N2O,3.9,kg/TJ,918.177624,kg -ff1a49fa-7fd1-3290-8218-a12440ee0392,SESCO,II.1.1,Salta,AR-A,annual,2019,gas oil combustion consumption by to the public,32.39964,TJ,CO2,74100.0,kg/TJ,2400813.324,kg -76ce02fa-ec4d-395a-999d-bb9b008b071d,SESCO,II.1.1,Salta,AR-A,annual,2019,gas oil combustion consumption by to the public,32.39964,TJ,CH4,3.9,kg/TJ,126.35859599999999,kg -76ce02fa-ec4d-395a-999d-bb9b008b071d,SESCO,II.1.1,Salta,AR-A,annual,2019,gas oil combustion consumption by to the public,32.39964,TJ,N2O,3.9,kg/TJ,126.35859599999999,kg -0d2d5d36-42f3-3427-a478-cf833223b1f7,SESCO,II.1.1,San Juan,AR-J,annual,2019,gas oil combustion consumption by to the public,69.20591999999999,TJ,CO2,74100.0,kg/TJ,5128158.671999999,kg -b555efd8-a6e9-3d3a-b445-a93427207410,SESCO,II.1.1,San Juan,AR-J,annual,2019,gas oil combustion consumption by to the public,69.20591999999999,TJ,CH4,3.9,kg/TJ,269.90308799999997,kg -b555efd8-a6e9-3d3a-b445-a93427207410,SESCO,II.1.1,San Juan,AR-J,annual,2019,gas oil combustion consumption by to the public,69.20591999999999,TJ,N2O,3.9,kg/TJ,269.90308799999997,kg -3195a205-2022-3b8f-8a57-c4938575ab1b,SESCO,II.1.1,San Luis,AR-D,annual,2019,gas oil combustion consumption by to the public,143.25191999999998,TJ,CO2,74100.0,kg/TJ,10614967.271999998,kg -8fb37221-b0cf-3a0e-bf51-95ed1d92a506,SESCO,II.1.1,San Luis,AR-D,annual,2019,gas oil combustion consumption by to the public,143.25191999999998,TJ,CH4,3.9,kg/TJ,558.6824879999999,kg -8fb37221-b0cf-3a0e-bf51-95ed1d92a506,SESCO,II.1.1,San Luis,AR-D,annual,2019,gas oil combustion consumption by to the public,143.25191999999998,TJ,N2O,3.9,kg/TJ,558.6824879999999,kg -0c04e833-6c84-3851-b36a-07004d6d9587,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2019,gas oil combustion consumption by to the public,324.10476,TJ,CO2,74100.0,kg/TJ,24016162.716,kg -23d1e07c-c7b7-32cb-9592-0b6bc30c469b,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2019,gas oil combustion consumption by to the public,324.10476,TJ,CH4,3.9,kg/TJ,1264.008564,kg -23d1e07c-c7b7-32cb-9592-0b6bc30c469b,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2019,gas oil combustion consumption by to the public,324.10476,TJ,N2O,3.9,kg/TJ,1264.008564,kg -2bdafae9-4e82-356a-ae76-dc750f8a7960,SESCO,II.1.1,Santa Fe,AR-S,annual,2019,gas oil combustion consumption by to the public,740.4238799999999,TJ,CO2,74100.0,kg/TJ,54865409.507999994,kg -552cb9e5-206d-36e3-a49e-8a18e83024fb,SESCO,II.1.1,Santa Fe,AR-S,annual,2019,gas oil combustion consumption by to the public,740.4238799999999,TJ,CH4,3.9,kg/TJ,2887.653132,kg -552cb9e5-206d-36e3-a49e-8a18e83024fb,SESCO,II.1.1,Santa Fe,AR-S,annual,2019,gas oil combustion consumption by to the public,740.4238799999999,TJ,N2O,3.9,kg/TJ,2887.653132,kg -a20cfdd3-35bf-3146-9998-764ed08fdeb5,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2019,gas oil combustion consumption by to the public,156.43572,TJ,CO2,74100.0,kg/TJ,11591886.852,kg -756a5c7e-9755-3705-8d01-81c8bcc4c7d5,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2019,gas oil combustion consumption by to the public,156.43572,TJ,CH4,3.9,kg/TJ,610.099308,kg -756a5c7e-9755-3705-8d01-81c8bcc4c7d5,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2019,gas oil combustion consumption by to the public,156.43572,TJ,N2O,3.9,kg/TJ,610.099308,kg -36ff8017-3fdf-3916-834a-b8e36c691fa7,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2019,gas oil combustion consumption by to the public,37.63704,TJ,CO2,74100.0,kg/TJ,2788904.664,kg -6068be5a-b466-36e2-8a78-0c5a2afe160c,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2019,gas oil combustion consumption by to the public,37.63704,TJ,CH4,3.9,kg/TJ,146.784456,kg -6068be5a-b466-36e2-8a78-0c5a2afe160c,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2019,gas oil combustion consumption by to the public,37.63704,TJ,N2O,3.9,kg/TJ,146.784456,kg -7785679b-0d79-322e-88a9-d8da5bfc4994,SESCO,II.1.1,Tucuman,AR-T,annual,2019,gas oil combustion consumption by to the public,22.575,TJ,CO2,74100.0,kg/TJ,1672807.5,kg -c01963f4-f04d-3041-bfa0-83a83a62099d,SESCO,II.1.1,Tucuman,AR-T,annual,2019,gas oil combustion consumption by to the public,22.575,TJ,CH4,3.9,kg/TJ,88.04249999999999,kg -c01963f4-f04d-3041-bfa0-83a83a62099d,SESCO,II.1.1,Tucuman,AR-T,annual,2019,gas oil combustion consumption by to the public,22.575,TJ,N2O,3.9,kg/TJ,88.04249999999999,kg -ebb91929-c529-3940-b438-930e36419927,SESCO,II.1.1,Buenos Aires,AR-B,annual,2019,jet kerosene combustion consumption by to the public,6.668035999999999,TJ,CO2,71500.0,kg/TJ,476764.5739999999,kg -e2d80035-75f3-3d67-9909-d5dc6fed9548,SESCO,II.1.1,Buenos Aires,AR-B,annual,2019,jet kerosene combustion consumption by to the public,6.668035999999999,TJ,CH4,0.5,kg/TJ,3.3340179999999995,kg -db43895a-c5d6-38ec-a42c-87f9d47e082f,SESCO,II.1.1,Buenos Aires,AR-B,annual,2019,jet kerosene combustion consumption by to the public,6.668035999999999,TJ,N2O,2.0,kg/TJ,13.336071999999998,kg -2172a222-1057-3575-b5ad-e90d8a2edce0,SESCO,II.1.1,Córdoba,AR-X,annual,2019,jet kerosene combustion consumption by to the public,2.7678639999999994,TJ,CO2,71500.0,kg/TJ,197902.27599999995,kg -4f494f1f-2bc0-32a6-8579-8e605573e93c,SESCO,II.1.1,Córdoba,AR-X,annual,2019,jet kerosene combustion consumption by to the public,2.7678639999999994,TJ,CH4,0.5,kg/TJ,1.3839319999999997,kg -71a24aff-d029-318b-acfb-b8ef4f0573db,SESCO,II.1.1,Córdoba,AR-X,annual,2019,jet kerosene combustion consumption by to the public,2.7678639999999994,TJ,N2O,2.0,kg/TJ,5.535727999999999,kg -64ace85c-716f-32ff-8f96-aeecb72e2f7c,SESCO,II.1.1,Entre Rios,AR-E,annual,2019,jet kerosene combustion consumption by to the public,1.6041029999999998,TJ,CO2,71500.0,kg/TJ,114693.36449999998,kg -23693ba2-77a4-337d-8e45-023a5146c78e,SESCO,II.1.1,Entre Rios,AR-E,annual,2019,jet kerosene combustion consumption by to the public,1.6041029999999998,TJ,CH4,0.5,kg/TJ,0.8020514999999999,kg -463318a0-8b39-32fd-a021-831355089f13,SESCO,II.1.1,Entre Rios,AR-E,annual,2019,jet kerosene combustion consumption by to the public,1.6041029999999998,TJ,N2O,2.0,kg/TJ,3.2082059999999997,kg -daec74c5-30cf-3421-875f-8d882fa9a518,SESCO,II.1.1,Misiones,AR-N,annual,2019,jet kerosene combustion consumption by to the public,0.157265,TJ,CO2,71500.0,kg/TJ,11244.447499999998,kg -015cd6bb-9906-38b5-b189-28a37a787a15,SESCO,II.1.1,Misiones,AR-N,annual,2019,jet kerosene combustion consumption by to the public,0.157265,TJ,CH4,0.5,kg/TJ,0.0786325,kg -6837d2da-a8e8-32e0-85df-7823659a37f1,SESCO,II.1.1,Misiones,AR-N,annual,2019,jet kerosene combustion consumption by to the public,0.157265,TJ,N2O,2.0,kg/TJ,0.31453,kg -169ee7c9-6be4-3446-a4be-7c4ad0c2ddc7,SESCO,II.1.1,Santa Fe,AR-S,annual,2019,jet kerosene combustion consumption by to the public,2.1702569999999994,TJ,CO2,71500.0,kg/TJ,155173.37549999997,kg -b91f5899-9ba1-33d1-8177-c40e8cc58502,SESCO,II.1.1,Santa Fe,AR-S,annual,2019,jet kerosene combustion consumption by to the public,2.1702569999999994,TJ,CH4,0.5,kg/TJ,1.0851284999999997,kg -cd933b37-5245-3754-8a8e-86b3af3af0ed,SESCO,II.1.1,Santa Fe,AR-S,annual,2019,jet kerosene combustion consumption by to the public,2.1702569999999994,TJ,N2O,2.0,kg/TJ,4.340513999999999,kg -c3aaed93-aa0d-3220-b96e-a60b0d8ab1b0,SESCO,II.2.1,Buenos Aires,AR-B,annual,2019,gas oil combustion consumption by railway transport,377.70684,TJ,CO2,74100.0,kg/TJ,27988076.844,kg -674cfa99-ac9f-344e-81a5-cf1eca19db77,SESCO,II.2.1,Buenos Aires,AR-B,annual,2019,gas oil combustion consumption by railway transport,377.70684,TJ,CH4,3.9,kg/TJ,1473.056676,kg -674cfa99-ac9f-344e-81a5-cf1eca19db77,SESCO,II.2.1,Buenos Aires,AR-B,annual,2019,gas oil combustion consumption by railway transport,377.70684,TJ,N2O,3.9,kg/TJ,1473.056676,kg -16a25b21-2456-36dd-8055-52af05eec202,SESCO,II.2.1,Capital Federal,AR-C,annual,2019,gas oil combustion consumption by railway transport,4.515,TJ,CO2,74100.0,kg/TJ,334561.5,kg -9778eea8-7e00-31e3-8834-c0a2cccc40d7,SESCO,II.2.1,Capital Federal,AR-C,annual,2019,gas oil combustion consumption by railway transport,4.515,TJ,CH4,3.9,kg/TJ,17.6085,kg -9778eea8-7e00-31e3-8834-c0a2cccc40d7,SESCO,II.2.1,Capital Federal,AR-C,annual,2019,gas oil combustion consumption by railway transport,4.515,TJ,N2O,3.9,kg/TJ,17.6085,kg -eae09c84-7be6-3b28-831f-d97ccf1bdd64,SESCO,II.2.1,Córdoba,AR-X,annual,2019,gas oil combustion consumption by railway transport,6.57384,TJ,CO2,74100.0,kg/TJ,487121.544,kg -be10d55a-88eb-338d-b4ec-936e88bd5362,SESCO,II.2.1,Córdoba,AR-X,annual,2019,gas oil combustion consumption by railway transport,6.57384,TJ,CH4,3.9,kg/TJ,25.637976,kg -be10d55a-88eb-338d-b4ec-936e88bd5362,SESCO,II.2.1,Córdoba,AR-X,annual,2019,gas oil combustion consumption by railway transport,6.57384,TJ,N2O,3.9,kg/TJ,25.637976,kg -e11f9de8-60ee-397b-a9e8-d2b3a0a50e9b,SESCO,II.2.1,La Pampa,AR-L,annual,2019,gas oil combustion consumption by railway transport,85.53216,TJ,CO2,74100.0,kg/TJ,6337933.056000001,kg -e352889c-1c00-3b2c-9a50-b48d28093c77,SESCO,II.2.1,La Pampa,AR-L,annual,2019,gas oil combustion consumption by railway transport,85.53216,TJ,CH4,3.9,kg/TJ,333.575424,kg -e352889c-1c00-3b2c-9a50-b48d28093c77,SESCO,II.2.1,La Pampa,AR-L,annual,2019,gas oil combustion consumption by railway transport,85.53216,TJ,N2O,3.9,kg/TJ,333.575424,kg -a096f157-61d9-39df-a45e-d2e570e07946,SESCO,II.2.1,Neuquén,AR-Q,annual,2019,gas oil combustion consumption by railway transport,32.6886,TJ,CO2,74100.0,kg/TJ,2422225.2600000002,kg -aa151621-81e6-3bab-b4f8-f2d2d77cdcc0,SESCO,II.2.1,Neuquén,AR-Q,annual,2019,gas oil combustion consumption by railway transport,32.6886,TJ,CH4,3.9,kg/TJ,127.48554,kg -aa151621-81e6-3bab-b4f8-f2d2d77cdcc0,SESCO,II.2.1,Neuquén,AR-Q,annual,2019,gas oil combustion consumption by railway transport,32.6886,TJ,N2O,3.9,kg/TJ,127.48554,kg -670d5809-dfb8-3a37-af8e-78c460053d51,SESCO,II.2.1,Santa Fe,AR-S,annual,2019,gas oil combustion consumption by railway transport,198.51552,TJ,CO2,74100.0,kg/TJ,14710000.032000002,kg -87e20e3a-3ae8-34fa-9845-724106ed8d06,SESCO,II.2.1,Santa Fe,AR-S,annual,2019,gas oil combustion consumption by railway transport,198.51552,TJ,CH4,3.9,kg/TJ,774.2105280000001,kg -87e20e3a-3ae8-34fa-9845-724106ed8d06,SESCO,II.2.1,Santa Fe,AR-S,annual,2019,gas oil combustion consumption by railway transport,198.51552,TJ,N2O,3.9,kg/TJ,774.2105280000001,kg -b2e614fb-cd93-3a18-8eb9-e80a984cfe5f,SESCO,II.2.1,Santiago del Estero,AR-G,annual,2019,gas oil combustion consumption by railway transport,37.7454,TJ,CO2,74100.0,kg/TJ,2796934.1399999997,kg -59c4fba2-841e-3e09-9882-ea2b6f1d17bb,SESCO,II.2.1,Santiago del Estero,AR-G,annual,2019,gas oil combustion consumption by railway transport,37.7454,TJ,CH4,3.9,kg/TJ,147.20705999999998,kg -59c4fba2-841e-3e09-9882-ea2b6f1d17bb,SESCO,II.2.1,Santiago del Estero,AR-G,annual,2019,gas oil combustion consumption by railway transport,37.7454,TJ,N2O,3.9,kg/TJ,147.20705999999998,kg -7f3fb746-fbed-3492-ab4e-ef3e5bfbc033,SESCO,II.2.1,Tucuman,AR-T,annual,2019,gas oil combustion consumption by railway transport,23.44188,TJ,CO2,74100.0,kg/TJ,1737043.3080000002,kg -fc8a486b-d450-3d12-a5cf-c2a5e0df94ea,SESCO,II.2.1,Tucuman,AR-T,annual,2019,gas oil combustion consumption by railway transport,23.44188,TJ,CH4,3.9,kg/TJ,91.423332,kg -fc8a486b-d450-3d12-a5cf-c2a5e0df94ea,SESCO,II.2.1,Tucuman,AR-T,annual,2019,gas oil combustion consumption by railway transport,23.44188,TJ,N2O,3.9,kg/TJ,91.423332,kg -4c0a53ff-e902-3b25-83df-f4eaff23e074,SESCO,II.1.1,Buenos Aires,AR-B,annual,2019,gas oil combustion consumption by freight transport,1529.93484,TJ,CO2,74100.0,kg/TJ,113368171.644,kg -407ef531-0b36-3f88-94dd-2045c569f0ca,SESCO,II.1.1,Buenos Aires,AR-B,annual,2019,gas oil combustion consumption by freight transport,1529.93484,TJ,CH4,3.9,kg/TJ,5966.745875999999,kg -407ef531-0b36-3f88-94dd-2045c569f0ca,SESCO,II.1.1,Buenos Aires,AR-B,annual,2019,gas oil combustion consumption by freight transport,1529.93484,TJ,N2O,3.9,kg/TJ,5966.745875999999,kg -3bf388d9-098d-3d43-96c7-45c756219d14,SESCO,II.1.1,Capital Federal,AR-C,annual,2019,gas oil combustion consumption by freight transport,380.81316,TJ,CO2,74100.0,kg/TJ,28218255.156,kg -aadd0acf-509d-31de-8932-6d9f9868cd44,SESCO,II.1.1,Capital Federal,AR-C,annual,2019,gas oil combustion consumption by freight transport,380.81316,TJ,CH4,3.9,kg/TJ,1485.171324,kg -aadd0acf-509d-31de-8932-6d9f9868cd44,SESCO,II.1.1,Capital Federal,AR-C,annual,2019,gas oil combustion consumption by freight transport,380.81316,TJ,N2O,3.9,kg/TJ,1485.171324,kg -cdf7a385-bdcc-3c47-9dcb-d27a6e0f8c6b,SESCO,II.1.1,Catamarca,AR-K,annual,2019,gas oil combustion consumption by freight transport,11.45004,TJ,CO2,74100.0,kg/TJ,848447.9639999999,kg -c3b7b627-bf08-3571-91ec-b08fffbdb518,SESCO,II.1.1,Catamarca,AR-K,annual,2019,gas oil combustion consumption by freight transport,11.45004,TJ,CH4,3.9,kg/TJ,44.655156,kg -c3b7b627-bf08-3571-91ec-b08fffbdb518,SESCO,II.1.1,Catamarca,AR-K,annual,2019,gas oil combustion consumption by freight transport,11.45004,TJ,N2O,3.9,kg/TJ,44.655156,kg -1db9fd5d-7d55-3954-9f2c-bfcbb8b4b881,SESCO,II.1.1,Chaco,AR-H,annual,2019,gas oil combustion consumption by freight transport,17.662679999999998,TJ,CO2,74100.0,kg/TJ,1308804.5879999998,kg -1949b241-499f-3e2b-9da9-8c3687c05014,SESCO,II.1.1,Chaco,AR-H,annual,2019,gas oil combustion consumption by freight transport,17.662679999999998,TJ,CH4,3.9,kg/TJ,68.884452,kg -1949b241-499f-3e2b-9da9-8c3687c05014,SESCO,II.1.1,Chaco,AR-H,annual,2019,gas oil combustion consumption by freight transport,17.662679999999998,TJ,N2O,3.9,kg/TJ,68.884452,kg -0a3fad9a-9fc2-3c3e-b829-9bc27549a2f6,SESCO,II.1.1,Chubut,AR-U,annual,2019,gas oil combustion consumption by freight transport,35.14476,TJ,CO2,74100.0,kg/TJ,2604226.716,kg -855b5575-a058-30fb-86f8-ae81a8c1c4e5,SESCO,II.1.1,Chubut,AR-U,annual,2019,gas oil combustion consumption by freight transport,35.14476,TJ,CH4,3.9,kg/TJ,137.064564,kg -855b5575-a058-30fb-86f8-ae81a8c1c4e5,SESCO,II.1.1,Chubut,AR-U,annual,2019,gas oil combustion consumption by freight transport,35.14476,TJ,N2O,3.9,kg/TJ,137.064564,kg -471f5c5f-0ef5-3a44-95ba-5ed22415707a,SESCO,II.1.1,Corrientes,AR-W,annual,2019,gas oil combustion consumption by freight transport,53.6382,TJ,CO2,74100.0,kg/TJ,3974590.6199999996,kg -5cc926ed-4869-3a4f-8c92-58164890df06,SESCO,II.1.1,Corrientes,AR-W,annual,2019,gas oil combustion consumption by freight transport,53.6382,TJ,CH4,3.9,kg/TJ,209.18898,kg -5cc926ed-4869-3a4f-8c92-58164890df06,SESCO,II.1.1,Corrientes,AR-W,annual,2019,gas oil combustion consumption by freight transport,53.6382,TJ,N2O,3.9,kg/TJ,209.18898,kg -348fc757-e3ec-38e8-a715-05b52581275c,SESCO,II.1.1,Córdoba,AR-X,annual,2019,gas oil combustion consumption by freight transport,193.38648,TJ,CO2,74100.0,kg/TJ,14329938.168,kg -5a2a1605-4194-3496-98c5-c6e681a30415,SESCO,II.1.1,Córdoba,AR-X,annual,2019,gas oil combustion consumption by freight transport,193.38648,TJ,CH4,3.9,kg/TJ,754.207272,kg -5a2a1605-4194-3496-98c5-c6e681a30415,SESCO,II.1.1,Córdoba,AR-X,annual,2019,gas oil combustion consumption by freight transport,193.38648,TJ,N2O,3.9,kg/TJ,754.207272,kg -fe688624-be47-31ad-b782-2b958811a402,SESCO,II.1.1,Entre Rios,AR-E,annual,2019,gas oil combustion consumption by freight transport,186.921,TJ,CO2,74100.0,kg/TJ,13850846.1,kg -77743715-1a52-321d-9aef-feefbff2c9f3,SESCO,II.1.1,Entre Rios,AR-E,annual,2019,gas oil combustion consumption by freight transport,186.921,TJ,CH4,3.9,kg/TJ,728.9919,kg -77743715-1a52-321d-9aef-feefbff2c9f3,SESCO,II.1.1,Entre Rios,AR-E,annual,2019,gas oil combustion consumption by freight transport,186.921,TJ,N2O,3.9,kg/TJ,728.9919,kg -1ba9464a-87a0-3705-9425-112c49684b0f,SESCO,II.1.1,Formosa,AR-P,annual,2019,gas oil combustion consumption by freight transport,9.03,TJ,CO2,74100.0,kg/TJ,669123.0,kg -f12a0dd2-e8dd-39fa-b5e2-5a23aa7c2a2d,SESCO,II.1.1,Formosa,AR-P,annual,2019,gas oil combustion consumption by freight transport,9.03,TJ,CH4,3.9,kg/TJ,35.217,kg -f12a0dd2-e8dd-39fa-b5e2-5a23aa7c2a2d,SESCO,II.1.1,Formosa,AR-P,annual,2019,gas oil combustion consumption by freight transport,9.03,TJ,N2O,3.9,kg/TJ,35.217,kg -fadd597a-f3b3-388d-b105-3401a1ef7e4d,SESCO,II.1.1,Jujuy,AR-Y,annual,2019,gas oil combustion consumption by freight transport,8.05476,TJ,CO2,74100.0,kg/TJ,596857.716,kg -9b8af62b-82ec-365c-90d5-4b60eb610334,SESCO,II.1.1,Jujuy,AR-Y,annual,2019,gas oil combustion consumption by freight transport,8.05476,TJ,CH4,3.9,kg/TJ,31.413563999999997,kg -9b8af62b-82ec-365c-90d5-4b60eb610334,SESCO,II.1.1,Jujuy,AR-Y,annual,2019,gas oil combustion consumption by freight transport,8.05476,TJ,N2O,3.9,kg/TJ,31.413563999999997,kg -f3d92a26-9e80-3ec5-b587-b5169293dc30,SESCO,II.1.1,La Pampa,AR-L,annual,2019,gas oil combustion consumption by freight transport,29.6184,TJ,CO2,74100.0,kg/TJ,2194723.44,kg -5c4b8fa1-cc18-3d26-86db-a56ee6dddc50,SESCO,II.1.1,La Pampa,AR-L,annual,2019,gas oil combustion consumption by freight transport,29.6184,TJ,CH4,3.9,kg/TJ,115.51176,kg -5c4b8fa1-cc18-3d26-86db-a56ee6dddc50,SESCO,II.1.1,La Pampa,AR-L,annual,2019,gas oil combustion consumption by freight transport,29.6184,TJ,N2O,3.9,kg/TJ,115.51176,kg -bc89c4b5-2913-3383-9dc0-f8e1f19f7be7,SESCO,II.1.1,La Rioja,AR-F,annual,2019,gas oil combustion consumption by freight transport,3.9732,TJ,CO2,74100.0,kg/TJ,294414.12,kg -fd4f62dc-62d0-3549-8db3-0639378d0de0,SESCO,II.1.1,La Rioja,AR-F,annual,2019,gas oil combustion consumption by freight transport,3.9732,TJ,CH4,3.9,kg/TJ,15.495479999999999,kg -fd4f62dc-62d0-3549-8db3-0639378d0de0,SESCO,II.1.1,La Rioja,AR-F,annual,2019,gas oil combustion consumption by freight transport,3.9732,TJ,N2O,3.9,kg/TJ,15.495479999999999,kg -b6f1e8d6-b3c6-3571-9f1e-058e2c0e833f,SESCO,II.1.1,Mendoza,AR-M,annual,2019,gas oil combustion consumption by freight transport,61.0428,TJ,CO2,74100.0,kg/TJ,4523271.4799999995,kg -4d93f293-8afd-3f84-a474-9a092b4d8171,SESCO,II.1.1,Mendoza,AR-M,annual,2019,gas oil combustion consumption by freight transport,61.0428,TJ,CH4,3.9,kg/TJ,238.06691999999998,kg -4d93f293-8afd-3f84-a474-9a092b4d8171,SESCO,II.1.1,Mendoza,AR-M,annual,2019,gas oil combustion consumption by freight transport,61.0428,TJ,N2O,3.9,kg/TJ,238.06691999999998,kg -df33e6f7-403e-374a-80c3-43bc0a531aa8,SESCO,II.1.1,Misiones,AR-N,annual,2019,gas oil combustion consumption by freight transport,52.121159999999996,TJ,CO2,74100.0,kg/TJ,3862177.956,kg -4b727249-1e56-3a2f-87a6-ca1084f16abf,SESCO,II.1.1,Misiones,AR-N,annual,2019,gas oil combustion consumption by freight transport,52.121159999999996,TJ,CH4,3.9,kg/TJ,203.27252399999998,kg -4b727249-1e56-3a2f-87a6-ca1084f16abf,SESCO,II.1.1,Misiones,AR-N,annual,2019,gas oil combustion consumption by freight transport,52.121159999999996,TJ,N2O,3.9,kg/TJ,203.27252399999998,kg -94e1bafd-2ce0-3b3f-b75a-b1639505ff66,SESCO,II.1.1,Neuquén,AR-Q,annual,2019,gas oil combustion consumption by freight transport,1.37256,TJ,CO2,74100.0,kg/TJ,101706.696,kg -2ff2793b-bf3a-3626-a3d4-09349e8ec42c,SESCO,II.1.1,Neuquén,AR-Q,annual,2019,gas oil combustion consumption by freight transport,1.37256,TJ,CH4,3.9,kg/TJ,5.352984,kg -2ff2793b-bf3a-3626-a3d4-09349e8ec42c,SESCO,II.1.1,Neuquén,AR-Q,annual,2019,gas oil combustion consumption by freight transport,1.37256,TJ,N2O,3.9,kg/TJ,5.352984,kg -fb789e42-dcd4-3878-8e16-0d3fa4e505c6,SESCO,II.1.1,Rio Negro,AR-R,annual,2019,gas oil combustion consumption by freight transport,101.35272,TJ,CO2,74100.0,kg/TJ,7510236.552,kg -da9992c6-4f53-300d-bca2-fb81cd730def,SESCO,II.1.1,Rio Negro,AR-R,annual,2019,gas oil combustion consumption by freight transport,101.35272,TJ,CH4,3.9,kg/TJ,395.27560800000003,kg -da9992c6-4f53-300d-bca2-fb81cd730def,SESCO,II.1.1,Rio Negro,AR-R,annual,2019,gas oil combustion consumption by freight transport,101.35272,TJ,N2O,3.9,kg/TJ,395.27560800000003,kg -acabd128-93ac-3a50-9d7e-c203e5edab3a,SESCO,II.1.1,Salta,AR-A,annual,2019,gas oil combustion consumption by freight transport,4.76784,TJ,CO2,74100.0,kg/TJ,353296.94399999996,kg -e612d646-2904-3558-8c56-5751d97e3639,SESCO,II.1.1,Salta,AR-A,annual,2019,gas oil combustion consumption by freight transport,4.76784,TJ,CH4,3.9,kg/TJ,18.594575999999996,kg -e612d646-2904-3558-8c56-5751d97e3639,SESCO,II.1.1,Salta,AR-A,annual,2019,gas oil combustion consumption by freight transport,4.76784,TJ,N2O,3.9,kg/TJ,18.594575999999996,kg -ee9a7a46-a093-32bd-9561-6c1e3f3f5603,SESCO,II.1.1,San Juan,AR-J,annual,2019,gas oil combustion consumption by freight transport,7.44072,TJ,CO2,74100.0,kg/TJ,551357.352,kg -9cbe1fdb-557b-366f-9da5-9db939f62b5e,SESCO,II.1.1,San Juan,AR-J,annual,2019,gas oil combustion consumption by freight transport,7.44072,TJ,CH4,3.9,kg/TJ,29.018808,kg -9cbe1fdb-557b-366f-9da5-9db939f62b5e,SESCO,II.1.1,San Juan,AR-J,annual,2019,gas oil combustion consumption by freight transport,7.44072,TJ,N2O,3.9,kg/TJ,29.018808,kg -9d917f93-c811-3317-bed4-945da11d5bc7,SESCO,II.1.1,San Luis,AR-D,annual,2019,gas oil combustion consumption by freight transport,63.67956,TJ,CO2,74100.0,kg/TJ,4718655.396,kg -cf5bd0c5-6213-3951-93c8-aaa09c94f1b5,SESCO,II.1.1,San Luis,AR-D,annual,2019,gas oil combustion consumption by freight transport,63.67956,TJ,CH4,3.9,kg/TJ,248.35028400000002,kg -cf5bd0c5-6213-3951-93c8-aaa09c94f1b5,SESCO,II.1.1,San Luis,AR-D,annual,2019,gas oil combustion consumption by freight transport,63.67956,TJ,N2O,3.9,kg/TJ,248.35028400000002,kg -5f3ca0dd-9b49-3a06-8456-ed8effbede62,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2019,gas oil combustion consumption by freight transport,3.9732,TJ,CO2,74100.0,kg/TJ,294414.12,kg -bd2cf906-6593-3d34-9c3b-6f37a151f1fd,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2019,gas oil combustion consumption by freight transport,3.9732,TJ,CH4,3.9,kg/TJ,15.495479999999999,kg -bd2cf906-6593-3d34-9c3b-6f37a151f1fd,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2019,gas oil combustion consumption by freight transport,3.9732,TJ,N2O,3.9,kg/TJ,15.495479999999999,kg -cc96d6f2-7630-3d1f-a529-8cae2a97ec1c,SESCO,II.1.1,Santa Fe,AR-S,annual,2019,gas oil combustion consumption by freight transport,425.60196,TJ,CO2,74100.0,kg/TJ,31537105.236,kg -9c8938b7-a46d-3665-8d8a-a6e6e36d6388,SESCO,II.1.1,Santa Fe,AR-S,annual,2019,gas oil combustion consumption by freight transport,425.60196,TJ,CH4,3.9,kg/TJ,1659.847644,kg -9c8938b7-a46d-3665-8d8a-a6e6e36d6388,SESCO,II.1.1,Santa Fe,AR-S,annual,2019,gas oil combustion consumption by freight transport,425.60196,TJ,N2O,3.9,kg/TJ,1659.847644,kg -6cb2e463-2da8-3d1e-a182-ccc539c1d094,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2019,gas oil combustion consumption by freight transport,76.68276,TJ,CO2,74100.0,kg/TJ,5682192.516,kg -4e0266f8-1005-39ea-b82c-bd51dfea3b88,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2019,gas oil combustion consumption by freight transport,76.68276,TJ,CH4,3.9,kg/TJ,299.062764,kg -4e0266f8-1005-39ea-b82c-bd51dfea3b88,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2019,gas oil combustion consumption by freight transport,76.68276,TJ,N2O,3.9,kg/TJ,299.062764,kg -d1d872e8-0a11-3b67-843d-a47571c09b20,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2019,gas oil combustion consumption by freight transport,5.34576,TJ,CO2,74100.0,kg/TJ,396120.81600000005,kg -c3fbd03c-f0b0-3cf0-8ab7-8cd330423fdb,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2019,gas oil combustion consumption by freight transport,5.34576,TJ,CH4,3.9,kg/TJ,20.848464,kg -c3fbd03c-f0b0-3cf0-8ab7-8cd330423fdb,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2019,gas oil combustion consumption by freight transport,5.34576,TJ,N2O,3.9,kg/TJ,20.848464,kg -e2137792-6453-3e1b-851e-3cc3d1719a3d,SESCO,II.1.1,Tucuman,AR-T,annual,2019,gas oil combustion consumption by freight transport,37.2036,TJ,CO2,74100.0,kg/TJ,2756786.7600000002,kg -e8a1f6c5-3265-35a9-bd55-bf406b25829f,SESCO,II.1.1,Tucuman,AR-T,annual,2019,gas oil combustion consumption by freight transport,37.2036,TJ,CH4,3.9,kg/TJ,145.09404,kg -e8a1f6c5-3265-35a9-bd55-bf406b25829f,SESCO,II.1.1,Tucuman,AR-T,annual,2019,gas oil combustion consumption by freight transport,37.2036,TJ,N2O,3.9,kg/TJ,145.09404,kg -e0cccbe8-8abf-357e-b229-41085e990489,SESCO,II.1.1,Buenos Aires,AR-B,annual,2019,gas oil combustion consumption by freight transport,220.47648,TJ,CO2,74100.0,kg/TJ,16337307.168000001,kg -ac33ce72-8935-3212-8263-c28fb6849bff,SESCO,II.1.1,Buenos Aires,AR-B,annual,2019,gas oil combustion consumption by freight transport,220.47648,TJ,CH4,3.9,kg/TJ,859.858272,kg -ac33ce72-8935-3212-8263-c28fb6849bff,SESCO,II.1.1,Buenos Aires,AR-B,annual,2019,gas oil combustion consumption by freight transport,220.47648,TJ,N2O,3.9,kg/TJ,859.858272,kg -36e28089-5851-30b0-912e-85d186bf22e6,SESCO,II.1.1,Capital Federal,AR-C,annual,2019,gas oil combustion consumption by freight transport,15.42324,TJ,CO2,74100.0,kg/TJ,1142862.084,kg -42b2de08-550f-3c2f-bc50-ea5fc96b531f,SESCO,II.1.1,Capital Federal,AR-C,annual,2019,gas oil combustion consumption by freight transport,15.42324,TJ,CH4,3.9,kg/TJ,60.150636,kg -42b2de08-550f-3c2f-bc50-ea5fc96b531f,SESCO,II.1.1,Capital Federal,AR-C,annual,2019,gas oil combustion consumption by freight transport,15.42324,TJ,N2O,3.9,kg/TJ,60.150636,kg -99a1d017-61c8-3ec8-822f-e9375ac5803c,SESCO,II.1.1,Catamarca,AR-K,annual,2019,gas oil combustion consumption by freight transport,0.903,TJ,CO2,74100.0,kg/TJ,66912.3,kg -d617595d-115e-3f4c-84d1-85ddc59711db,SESCO,II.1.1,Catamarca,AR-K,annual,2019,gas oil combustion consumption by freight transport,0.903,TJ,CH4,3.9,kg/TJ,3.5217,kg -d617595d-115e-3f4c-84d1-85ddc59711db,SESCO,II.1.1,Catamarca,AR-K,annual,2019,gas oil combustion consumption by freight transport,0.903,TJ,N2O,3.9,kg/TJ,3.5217,kg -70f0370f-4362-3e24-9399-2403502c29a2,SESCO,II.1.1,Chaco,AR-H,annual,2019,gas oil combustion consumption by freight transport,2.38392,TJ,CO2,74100.0,kg/TJ,176648.47199999998,kg -6bb66e86-b86f-3dd2-ad9c-e4d11603136c,SESCO,II.1.1,Chaco,AR-H,annual,2019,gas oil combustion consumption by freight transport,2.38392,TJ,CH4,3.9,kg/TJ,9.297287999999998,kg -6bb66e86-b86f-3dd2-ad9c-e4d11603136c,SESCO,II.1.1,Chaco,AR-H,annual,2019,gas oil combustion consumption by freight transport,2.38392,TJ,N2O,3.9,kg/TJ,9.297287999999998,kg -07c1be8b-3113-35be-b888-50023ef002c7,SESCO,II.1.1,Chubut,AR-U,annual,2019,gas oil combustion consumption by freight transport,24.525479999999998,TJ,CO2,74100.0,kg/TJ,1817338.068,kg -d29082b0-f28c-3fc2-ba65-f99bb632d60c,SESCO,II.1.1,Chubut,AR-U,annual,2019,gas oil combustion consumption by freight transport,24.525479999999998,TJ,CH4,3.9,kg/TJ,95.64937199999999,kg -d29082b0-f28c-3fc2-ba65-f99bb632d60c,SESCO,II.1.1,Chubut,AR-U,annual,2019,gas oil combustion consumption by freight transport,24.525479999999998,TJ,N2O,3.9,kg/TJ,95.64937199999999,kg -557c2eff-f4b1-3e28-aaf4-45d8543c4df9,SESCO,II.1.1,Corrientes,AR-W,annual,2019,gas oil combustion consumption by freight transport,6.6460799999999995,TJ,CO2,74100.0,kg/TJ,492474.528,kg -b92c3f3d-f448-3fae-b05f-62bf30dd5976,SESCO,II.1.1,Corrientes,AR-W,annual,2019,gas oil combustion consumption by freight transport,6.6460799999999995,TJ,CH4,3.9,kg/TJ,25.919711999999997,kg -b92c3f3d-f448-3fae-b05f-62bf30dd5976,SESCO,II.1.1,Corrientes,AR-W,annual,2019,gas oil combustion consumption by freight transport,6.6460799999999995,TJ,N2O,3.9,kg/TJ,25.919711999999997,kg -a5ee9135-76a9-3fa3-a5af-c7cac902da9a,SESCO,II.1.1,Córdoba,AR-X,annual,2019,gas oil combustion consumption by freight transport,17.6988,TJ,CO2,74100.0,kg/TJ,1311481.0799999998,kg -a230107e-6e59-38af-aa19-53a4b00a8d00,SESCO,II.1.1,Córdoba,AR-X,annual,2019,gas oil combustion consumption by freight transport,17.6988,TJ,CH4,3.9,kg/TJ,69.02532,kg -a230107e-6e59-38af-aa19-53a4b00a8d00,SESCO,II.1.1,Córdoba,AR-X,annual,2019,gas oil combustion consumption by freight transport,17.6988,TJ,N2O,3.9,kg/TJ,69.02532,kg -adafe3af-0b7f-3186-bdee-16ed0994a726,SESCO,II.1.1,Entre Rios,AR-E,annual,2019,gas oil combustion consumption by freight transport,12.71424,TJ,CO2,74100.0,kg/TJ,942125.184,kg -20713b6b-4691-3f96-9351-2681db66be3a,SESCO,II.1.1,Entre Rios,AR-E,annual,2019,gas oil combustion consumption by freight transport,12.71424,TJ,CH4,3.9,kg/TJ,49.585536,kg -20713b6b-4691-3f96-9351-2681db66be3a,SESCO,II.1.1,Entre Rios,AR-E,annual,2019,gas oil combustion consumption by freight transport,12.71424,TJ,N2O,3.9,kg/TJ,49.585536,kg -b751b380-81d8-3e76-8144-642ee9fc0e30,SESCO,II.1.1,Formosa,AR-P,annual,2019,gas oil combustion consumption by freight transport,0.28896,TJ,CO2,74100.0,kg/TJ,21411.935999999998,kg -2cd82097-6684-3c9f-be50-61ad2dd06ea7,SESCO,II.1.1,Formosa,AR-P,annual,2019,gas oil combustion consumption by freight transport,0.28896,TJ,CH4,3.9,kg/TJ,1.126944,kg -2cd82097-6684-3c9f-be50-61ad2dd06ea7,SESCO,II.1.1,Formosa,AR-P,annual,2019,gas oil combustion consumption by freight transport,0.28896,TJ,N2O,3.9,kg/TJ,1.126944,kg -82fc3e37-b9c3-3b84-a057-aec5bbe2f957,SESCO,II.1.1,Jujuy,AR-Y,annual,2019,gas oil combustion consumption by freight transport,0.68628,TJ,CO2,74100.0,kg/TJ,50853.348,kg -21dee597-20e6-3deb-9201-f71f1ab06f8b,SESCO,II.1.1,Jujuy,AR-Y,annual,2019,gas oil combustion consumption by freight transport,0.68628,TJ,CH4,3.9,kg/TJ,2.676492,kg -21dee597-20e6-3deb-9201-f71f1ab06f8b,SESCO,II.1.1,Jujuy,AR-Y,annual,2019,gas oil combustion consumption by freight transport,0.68628,TJ,N2O,3.9,kg/TJ,2.676492,kg -d072ae01-f524-332e-ab25-afc736063007,SESCO,II.1.1,La Pampa,AR-L,annual,2019,gas oil combustion consumption by freight transport,1.6254,TJ,CO2,74100.0,kg/TJ,120442.14,kg -d3d7ae0a-7bd0-3581-a068-cd1f540abaf6,SESCO,II.1.1,La Pampa,AR-L,annual,2019,gas oil combustion consumption by freight transport,1.6254,TJ,CH4,3.9,kg/TJ,6.33906,kg -d3d7ae0a-7bd0-3581-a068-cd1f540abaf6,SESCO,II.1.1,La Pampa,AR-L,annual,2019,gas oil combustion consumption by freight transport,1.6254,TJ,N2O,3.9,kg/TJ,6.33906,kg -4d0207c8-003a-3070-b823-7bf99abfea90,SESCO,II.1.1,La Rioja,AR-F,annual,2019,gas oil combustion consumption by freight transport,0.32508,TJ,CO2,74100.0,kg/TJ,24088.428,kg -981acc61-5047-3b2a-ba59-7b75c68c3990,SESCO,II.1.1,La Rioja,AR-F,annual,2019,gas oil combustion consumption by freight transport,0.32508,TJ,CH4,3.9,kg/TJ,1.267812,kg -981acc61-5047-3b2a-ba59-7b75c68c3990,SESCO,II.1.1,La Rioja,AR-F,annual,2019,gas oil combustion consumption by freight transport,0.32508,TJ,N2O,3.9,kg/TJ,1.267812,kg -475a7fd8-27be-3b3a-be99-167eb3fc92f4,SESCO,II.1.1,Mendoza,AR-M,annual,2019,gas oil combustion consumption by freight transport,4.26216,TJ,CO2,74100.0,kg/TJ,315826.056,kg -b06eda9d-1ce6-3aff-bf2e-b0773bb6c2cb,SESCO,II.1.1,Mendoza,AR-M,annual,2019,gas oil combustion consumption by freight transport,4.26216,TJ,CH4,3.9,kg/TJ,16.622424,kg -b06eda9d-1ce6-3aff-bf2e-b0773bb6c2cb,SESCO,II.1.1,Mendoza,AR-M,annual,2019,gas oil combustion consumption by freight transport,4.26216,TJ,N2O,3.9,kg/TJ,16.622424,kg -464a0685-9783-36d5-96d6-9137943e55ea,SESCO,II.1.1,Misiones,AR-N,annual,2019,gas oil combustion consumption by freight transport,4.8400799999999995,TJ,CO2,74100.0,kg/TJ,358649.92799999996,kg -195a7ff8-14ab-3c27-b832-df8ae9ddb4f5,SESCO,II.1.1,Misiones,AR-N,annual,2019,gas oil combustion consumption by freight transport,4.8400799999999995,TJ,CH4,3.9,kg/TJ,18.876312,kg -195a7ff8-14ab-3c27-b832-df8ae9ddb4f5,SESCO,II.1.1,Misiones,AR-N,annual,2019,gas oil combustion consumption by freight transport,4.8400799999999995,TJ,N2O,3.9,kg/TJ,18.876312,kg -d88cc33a-e1dc-3611-9574-99ddce4844dc,SESCO,II.1.1,Neuquén,AR-Q,annual,2019,gas oil combustion consumption by freight transport,0.25284,TJ,CO2,74100.0,kg/TJ,18735.444,kg -e00f1981-f6e2-3410-85ad-2c207faf9565,SESCO,II.1.1,Neuquén,AR-Q,annual,2019,gas oil combustion consumption by freight transport,0.25284,TJ,CH4,3.9,kg/TJ,0.9860760000000001,kg -e00f1981-f6e2-3410-85ad-2c207faf9565,SESCO,II.1.1,Neuquén,AR-Q,annual,2019,gas oil combustion consumption by freight transport,0.25284,TJ,N2O,3.9,kg/TJ,0.9860760000000001,kg -31d887c4-2ca2-3289-b22b-28e1bcfabdac,SESCO,II.1.1,Rio Negro,AR-R,annual,2019,gas oil combustion consumption by freight transport,10.33032,TJ,CO2,74100.0,kg/TJ,765476.712,kg -d3b46a3e-6a0e-3fc5-8ec4-3c352f223df7,SESCO,II.1.1,Rio Negro,AR-R,annual,2019,gas oil combustion consumption by freight transport,10.33032,TJ,CH4,3.9,kg/TJ,40.288248,kg -d3b46a3e-6a0e-3fc5-8ec4-3c352f223df7,SESCO,II.1.1,Rio Negro,AR-R,annual,2019,gas oil combustion consumption by freight transport,10.33032,TJ,N2O,3.9,kg/TJ,40.288248,kg -b8b6675a-ff96-387b-88a1-85960185c734,SESCO,II.1.1,Salta,AR-A,annual,2019,gas oil combustion consumption by freight transport,0.65016,TJ,CO2,74100.0,kg/TJ,48176.856,kg -b40389e2-79f7-3f16-b046-a2a65916f5b8,SESCO,II.1.1,Salta,AR-A,annual,2019,gas oil combustion consumption by freight transport,0.65016,TJ,CH4,3.9,kg/TJ,2.535624,kg -b40389e2-79f7-3f16-b046-a2a65916f5b8,SESCO,II.1.1,Salta,AR-A,annual,2019,gas oil combustion consumption by freight transport,0.65016,TJ,N2O,3.9,kg/TJ,2.535624,kg -c19a8881-7868-3df5-bbd5-9b1071ddd210,SESCO,II.1.1,San Juan,AR-J,annual,2019,gas oil combustion consumption by freight transport,0.14448,TJ,CO2,74100.0,kg/TJ,10705.967999999999,kg -0c833d06-71a8-3521-97e1-29fd53d2648b,SESCO,II.1.1,San Juan,AR-J,annual,2019,gas oil combustion consumption by freight transport,0.14448,TJ,CH4,3.9,kg/TJ,0.563472,kg -0c833d06-71a8-3521-97e1-29fd53d2648b,SESCO,II.1.1,San Juan,AR-J,annual,2019,gas oil combustion consumption by freight transport,0.14448,TJ,N2O,3.9,kg/TJ,0.563472,kg -4263e3c1-b6ec-3a34-b06e-8952dfb804c4,SESCO,II.1.1,San Luis,AR-D,annual,2019,gas oil combustion consumption by freight transport,10.61928,TJ,CO2,74100.0,kg/TJ,786888.648,kg -953df006-752a-3ecb-be11-38beea02eb3e,SESCO,II.1.1,San Luis,AR-D,annual,2019,gas oil combustion consumption by freight transport,10.61928,TJ,CH4,3.9,kg/TJ,41.415192,kg -953df006-752a-3ecb-be11-38beea02eb3e,SESCO,II.1.1,San Luis,AR-D,annual,2019,gas oil combustion consumption by freight transport,10.61928,TJ,N2O,3.9,kg/TJ,41.415192,kg -711dc2f0-1077-33fb-8775-940b6b6fb66a,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2019,gas oil combustion consumption by freight transport,1.30032,TJ,CO2,74100.0,kg/TJ,96353.712,kg -dd7ce4c7-8d3e-3892-9d8e-b7bab88ba2e1,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2019,gas oil combustion consumption by freight transport,1.30032,TJ,CH4,3.9,kg/TJ,5.071248,kg -dd7ce4c7-8d3e-3892-9d8e-b7bab88ba2e1,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2019,gas oil combustion consumption by freight transport,1.30032,TJ,N2O,3.9,kg/TJ,5.071248,kg -1aa0eb56-2c35-3563-bead-43aa102b3cbf,SESCO,II.1.1,Santa Fe,AR-S,annual,2019,gas oil combustion consumption by freight transport,43.84968,TJ,CO2,74100.0,kg/TJ,3249261.288,kg -e1062839-86e8-3f9e-b419-5865736fa0d2,SESCO,II.1.1,Santa Fe,AR-S,annual,2019,gas oil combustion consumption by freight transport,43.84968,TJ,CH4,3.9,kg/TJ,171.01375199999998,kg -e1062839-86e8-3f9e-b419-5865736fa0d2,SESCO,II.1.1,Santa Fe,AR-S,annual,2019,gas oil combustion consumption by freight transport,43.84968,TJ,N2O,3.9,kg/TJ,171.01375199999998,kg -fbc5e70b-e3f2-37d4-a3ec-be96d3feedd8,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2019,gas oil combustion consumption by freight transport,6.35712,TJ,CO2,74100.0,kg/TJ,471062.592,kg -acc65f85-f07f-3e5b-97d0-899a035a1693,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2019,gas oil combustion consumption by freight transport,6.35712,TJ,CH4,3.9,kg/TJ,24.792768,kg -acc65f85-f07f-3e5b-97d0-899a035a1693,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2019,gas oil combustion consumption by freight transport,6.35712,TJ,N2O,3.9,kg/TJ,24.792768,kg -f009434b-5391-3b91-8cab-61d1394a80ae,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2019,gas oil combustion consumption by freight transport,0.28896,TJ,CO2,74100.0,kg/TJ,21411.935999999998,kg -a9c6217a-fe4e-3418-ab5e-34f58ad1b625,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2019,gas oil combustion consumption by freight transport,0.28896,TJ,CH4,3.9,kg/TJ,1.126944,kg -a9c6217a-fe4e-3418-ab5e-34f58ad1b625,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2019,gas oil combustion consumption by freight transport,0.28896,TJ,N2O,3.9,kg/TJ,1.126944,kg -08bf5562-0f5e-31ab-a018-23ac2731f45c,SESCO,II.1.1,Tucuman,AR-T,annual,2019,gas oil combustion consumption by freight transport,13.545,TJ,CO2,74100.0,kg/TJ,1003684.5,kg -5ff2fee6-2fb0-34b0-8aa6-fc6faf8cf735,SESCO,II.1.1,Tucuman,AR-T,annual,2019,gas oil combustion consumption by freight transport,13.545,TJ,CH4,3.9,kg/TJ,52.8255,kg -5ff2fee6-2fb0-34b0-8aa6-fc6faf8cf735,SESCO,II.1.1,Tucuman,AR-T,annual,2019,gas oil combustion consumption by freight transport,13.545,TJ,N2O,3.9,kg/TJ,52.8255,kg -c5e547a0-80f2-3ce5-b126-33374fc5b4e2,SESCO,II.1.1,Buenos Aires,AR-B,annual,2019,gas oil combustion consumption by public passenger transport,1675.17336,TJ,CO2,74100.0,kg/TJ,124130345.976,kg -de966c40-ffff-3784-9eff-70829fad0af7,SESCO,II.1.1,Buenos Aires,AR-B,annual,2019,gas oil combustion consumption by public passenger transport,1675.17336,TJ,CH4,3.9,kg/TJ,6533.176104,kg -de966c40-ffff-3784-9eff-70829fad0af7,SESCO,II.1.1,Buenos Aires,AR-B,annual,2019,gas oil combustion consumption by public passenger transport,1675.17336,TJ,N2O,3.9,kg/TJ,6533.176104,kg -f9eaa3d5-4eb9-35d2-8240-54e7f70fc846,SESCO,II.1.1,Capital Federal,AR-C,annual,2019,gas oil combustion consumption by public passenger transport,738.8346,TJ,CO2,74100.0,kg/TJ,54747643.86,kg -58818e04-7498-3329-9d7b-eeffdce46c8d,SESCO,II.1.1,Capital Federal,AR-C,annual,2019,gas oil combustion consumption by public passenger transport,738.8346,TJ,CH4,3.9,kg/TJ,2881.45494,kg -58818e04-7498-3329-9d7b-eeffdce46c8d,SESCO,II.1.1,Capital Federal,AR-C,annual,2019,gas oil combustion consumption by public passenger transport,738.8346,TJ,N2O,3.9,kg/TJ,2881.45494,kg -2e1bf3fb-8d1e-331f-b7a6-c93947813c1c,SESCO,II.1.1,Chaco,AR-H,annual,2019,gas oil combustion consumption by public passenger transport,23.58636,TJ,CO2,74100.0,kg/TJ,1747749.2759999998,kg -907eee34-f15b-3daa-a1fd-cb38eb3bd92e,SESCO,II.1.1,Chaco,AR-H,annual,2019,gas oil combustion consumption by public passenger transport,23.58636,TJ,CH4,3.9,kg/TJ,91.98680399999999,kg -907eee34-f15b-3daa-a1fd-cb38eb3bd92e,SESCO,II.1.1,Chaco,AR-H,annual,2019,gas oil combustion consumption by public passenger transport,23.58636,TJ,N2O,3.9,kg/TJ,91.98680399999999,kg -1ca73b86-005c-323c-9c4c-f552a1f9e3a9,SESCO,II.1.1,Chubut,AR-U,annual,2019,gas oil combustion consumption by public passenger transport,4.76784,TJ,CO2,74100.0,kg/TJ,353296.94399999996,kg -18a65fa4-a5e8-3018-b50c-8e6bed87bcb4,SESCO,II.1.1,Chubut,AR-U,annual,2019,gas oil combustion consumption by public passenger transport,4.76784,TJ,CH4,3.9,kg/TJ,18.594575999999996,kg -18a65fa4-a5e8-3018-b50c-8e6bed87bcb4,SESCO,II.1.1,Chubut,AR-U,annual,2019,gas oil combustion consumption by public passenger transport,4.76784,TJ,N2O,3.9,kg/TJ,18.594575999999996,kg -9ab138d4-546f-33bc-8972-d411d127d675,SESCO,II.1.1,Corrientes,AR-W,annual,2019,gas oil combustion consumption by public passenger transport,0.57792,TJ,CO2,74100.0,kg/TJ,42823.871999999996,kg -4617c8f5-b0e3-39b3-b5f2-4b8d79287972,SESCO,II.1.1,Corrientes,AR-W,annual,2019,gas oil combustion consumption by public passenger transport,0.57792,TJ,CH4,3.9,kg/TJ,2.253888,kg -4617c8f5-b0e3-39b3-b5f2-4b8d79287972,SESCO,II.1.1,Corrientes,AR-W,annual,2019,gas oil combustion consumption by public passenger transport,0.57792,TJ,N2O,3.9,kg/TJ,2.253888,kg -e2c6f16a-9165-385e-b324-6c9186f634b2,SESCO,II.1.1,Córdoba,AR-X,annual,2019,gas oil combustion consumption by public passenger transport,277.83504,TJ,CO2,74100.0,kg/TJ,20587576.463999998,kg -aa3e6710-e169-312e-b0a6-1b34b5781f43,SESCO,II.1.1,Córdoba,AR-X,annual,2019,gas oil combustion consumption by public passenger transport,277.83504,TJ,CH4,3.9,kg/TJ,1083.556656,kg -aa3e6710-e169-312e-b0a6-1b34b5781f43,SESCO,II.1.1,Córdoba,AR-X,annual,2019,gas oil combustion consumption by public passenger transport,277.83504,TJ,N2O,3.9,kg/TJ,1083.556656,kg -207737b4-ed49-3c65-87a0-aa8f06014df0,SESCO,II.1.1,Entre Rios,AR-E,annual,2019,gas oil combustion consumption by public passenger transport,44.68044,TJ,CO2,74100.0,kg/TJ,3310820.604,kg -e74b9afb-646e-3187-a42c-201d6b80fcb9,SESCO,II.1.1,Entre Rios,AR-E,annual,2019,gas oil combustion consumption by public passenger transport,44.68044,TJ,CH4,3.9,kg/TJ,174.253716,kg -e74b9afb-646e-3187-a42c-201d6b80fcb9,SESCO,II.1.1,Entre Rios,AR-E,annual,2019,gas oil combustion consumption by public passenger transport,44.68044,TJ,N2O,3.9,kg/TJ,174.253716,kg -46d97b69-511f-3157-bd1b-3297a2389839,SESCO,II.1.1,Formosa,AR-P,annual,2019,gas oil combustion consumption by public passenger transport,7.80192,TJ,CO2,74100.0,kg/TJ,578122.272,kg -c65dbd18-e00f-3cfe-a74e-27d4f013c07a,SESCO,II.1.1,Formosa,AR-P,annual,2019,gas oil combustion consumption by public passenger transport,7.80192,TJ,CH4,3.9,kg/TJ,30.427488,kg -c65dbd18-e00f-3cfe-a74e-27d4f013c07a,SESCO,II.1.1,Formosa,AR-P,annual,2019,gas oil combustion consumption by public passenger transport,7.80192,TJ,N2O,3.9,kg/TJ,30.427488,kg -27afe1be-e39b-30eb-92f6-d0a7cb2cc795,SESCO,II.1.1,La Pampa,AR-L,annual,2019,gas oil combustion consumption by public passenger transport,4.55112,TJ,CO2,74100.0,kg/TJ,337237.992,kg -3489c499-9c7d-316d-8a8c-ae475d04d7c8,SESCO,II.1.1,La Pampa,AR-L,annual,2019,gas oil combustion consumption by public passenger transport,4.55112,TJ,CH4,3.9,kg/TJ,17.749368,kg -3489c499-9c7d-316d-8a8c-ae475d04d7c8,SESCO,II.1.1,La Pampa,AR-L,annual,2019,gas oil combustion consumption by public passenger transport,4.55112,TJ,N2O,3.9,kg/TJ,17.749368,kg -b3ad4661-5987-3a40-a551-0f930dcdc182,SESCO,II.1.1,Mendoza,AR-M,annual,2019,gas oil combustion consumption by public passenger transport,8.127,TJ,CO2,74100.0,kg/TJ,602210.7000000001,kg -28fcd1db-864b-33ce-bc1d-76edd6104538,SESCO,II.1.1,Mendoza,AR-M,annual,2019,gas oil combustion consumption by public passenger transport,8.127,TJ,CH4,3.9,kg/TJ,31.695300000000003,kg -28fcd1db-864b-33ce-bc1d-76edd6104538,SESCO,II.1.1,Mendoza,AR-M,annual,2019,gas oil combustion consumption by public passenger transport,8.127,TJ,N2O,3.9,kg/TJ,31.695300000000003,kg -8f6ce71a-dd34-3b28-977a-bde4007ff23c,SESCO,II.1.1,Misiones,AR-N,annual,2019,gas oil combustion consumption by public passenger transport,55.48032,TJ,CO2,74100.0,kg/TJ,4111091.712,kg -957b26ee-19b0-38b1-9131-62120ecd356d,SESCO,II.1.1,Misiones,AR-N,annual,2019,gas oil combustion consumption by public passenger transport,55.48032,TJ,CH4,3.9,kg/TJ,216.373248,kg -957b26ee-19b0-38b1-9131-62120ecd356d,SESCO,II.1.1,Misiones,AR-N,annual,2019,gas oil combustion consumption by public passenger transport,55.48032,TJ,N2O,3.9,kg/TJ,216.373248,kg -a813608e-7b68-3729-8a17-21434620c704,SESCO,II.1.1,Neuquén,AR-Q,annual,2019,gas oil combustion consumption by public passenger transport,3.5758799999999997,TJ,CO2,74100.0,kg/TJ,264972.708,kg -07c6cd0a-a684-31fe-b9b7-f0154d71e270,SESCO,II.1.1,Neuquén,AR-Q,annual,2019,gas oil combustion consumption by public passenger transport,3.5758799999999997,TJ,CH4,3.9,kg/TJ,13.945931999999999,kg -07c6cd0a-a684-31fe-b9b7-f0154d71e270,SESCO,II.1.1,Neuquén,AR-Q,annual,2019,gas oil combustion consumption by public passenger transport,3.5758799999999997,TJ,N2O,3.9,kg/TJ,13.945931999999999,kg -754e90b5-1a29-3341-9309-aab37e1f0292,SESCO,II.1.1,Rio Negro,AR-R,annual,2019,gas oil combustion consumption by public passenger transport,12.244679999999999,TJ,CO2,74100.0,kg/TJ,907330.788,kg -94462824-89cd-3e77-aca8-a4ba24a2f75b,SESCO,II.1.1,Rio Negro,AR-R,annual,2019,gas oil combustion consumption by public passenger transport,12.244679999999999,TJ,CH4,3.9,kg/TJ,47.754251999999994,kg -94462824-89cd-3e77-aca8-a4ba24a2f75b,SESCO,II.1.1,Rio Negro,AR-R,annual,2019,gas oil combustion consumption by public passenger transport,12.244679999999999,TJ,N2O,3.9,kg/TJ,47.754251999999994,kg -9b89af07-0a00-308c-a525-5eb9e1b000a8,SESCO,II.1.1,Salta,AR-A,annual,2019,gas oil combustion consumption by public passenger transport,1.19196,TJ,CO2,74100.0,kg/TJ,88324.23599999999,kg -83d70007-07f1-334b-a0fb-ea6a43f9a113,SESCO,II.1.1,Salta,AR-A,annual,2019,gas oil combustion consumption by public passenger transport,1.19196,TJ,CH4,3.9,kg/TJ,4.648643999999999,kg -83d70007-07f1-334b-a0fb-ea6a43f9a113,SESCO,II.1.1,Salta,AR-A,annual,2019,gas oil combustion consumption by public passenger transport,1.19196,TJ,N2O,3.9,kg/TJ,4.648643999999999,kg -d1655122-ba7c-3b9c-b821-23ebd81ca9a2,SESCO,II.1.1,San Luis,AR-D,annual,2019,gas oil combustion consumption by public passenger transport,0.25284,TJ,CO2,74100.0,kg/TJ,18735.444,kg -7093472b-507e-3802-a42b-8c0bf0b5fb6c,SESCO,II.1.1,San Luis,AR-D,annual,2019,gas oil combustion consumption by public passenger transport,0.25284,TJ,CH4,3.9,kg/TJ,0.9860760000000001,kg -7093472b-507e-3802-a42b-8c0bf0b5fb6c,SESCO,II.1.1,San Luis,AR-D,annual,2019,gas oil combustion consumption by public passenger transport,0.25284,TJ,N2O,3.9,kg/TJ,0.9860760000000001,kg -ce0fb43e-f5b1-3107-83a9-1f2b43a6f4d8,SESCO,II.1.1,Santa Fe,AR-S,annual,2019,gas oil combustion consumption by public passenger transport,307.7424,TJ,CO2,74100.0,kg/TJ,22803711.84,kg -380f75a6-4364-330c-838f-c26273baea5c,SESCO,II.1.1,Santa Fe,AR-S,annual,2019,gas oil combustion consumption by public passenger transport,307.7424,TJ,CH4,3.9,kg/TJ,1200.19536,kg -380f75a6-4364-330c-838f-c26273baea5c,SESCO,II.1.1,Santa Fe,AR-S,annual,2019,gas oil combustion consumption by public passenger transport,307.7424,TJ,N2O,3.9,kg/TJ,1200.19536,kg -c38b5acc-d360-32d8-9607-5e85c5d38490,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2019,gas oil combustion consumption by public passenger transport,0.86688,TJ,CO2,74100.0,kg/TJ,64235.808,kg -235031e6-3bfa-34bb-bfa7-87dfe5447339,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2019,gas oil combustion consumption by public passenger transport,0.86688,TJ,CH4,3.9,kg/TJ,3.380832,kg -235031e6-3bfa-34bb-bfa7-87dfe5447339,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2019,gas oil combustion consumption by public passenger transport,0.86688,TJ,N2O,3.9,kg/TJ,3.380832,kg -f68d9cc3-af63-3e8a-8606-64ebe6633bac,SESCO,II.1.1,Tucuman,AR-T,annual,2019,gas oil combustion consumption by public passenger transport,311.67948,TJ,CO2,74100.0,kg/TJ,23095449.468000002,kg -32170180-82f8-3f80-a1dc-450ba3f04ee2,SESCO,II.1.1,Tucuman,AR-T,annual,2019,gas oil combustion consumption by public passenger transport,311.67948,TJ,CH4,3.9,kg/TJ,1215.549972,kg -32170180-82f8-3f80-a1dc-450ba3f04ee2,SESCO,II.1.1,Tucuman,AR-T,annual,2019,gas oil combustion consumption by public passenger transport,311.67948,TJ,N2O,3.9,kg/TJ,1215.549972,kg -f831125d-b713-36a2-802c-9c82d6990177,SESCO,II.1.1,Buenos Aires,AR-B,annual,2019,gas oil combustion consumption by public passenger transport,445.03452,TJ,CO2,74100.0,kg/TJ,32977057.932,kg -4ea8f078-2617-356b-a5b6-0e02b88d83ca,SESCO,II.1.1,Buenos Aires,AR-B,annual,2019,gas oil combustion consumption by public passenger transport,445.03452,TJ,CH4,3.9,kg/TJ,1735.634628,kg -4ea8f078-2617-356b-a5b6-0e02b88d83ca,SESCO,II.1.1,Buenos Aires,AR-B,annual,2019,gas oil combustion consumption by public passenger transport,445.03452,TJ,N2O,3.9,kg/TJ,1735.634628,kg -637a9296-a1f0-37d7-a90f-1c91e6dd31a4,SESCO,II.1.1,Capital Federal,AR-C,annual,2019,gas oil combustion consumption by public passenger transport,252.00924,TJ,CO2,74100.0,kg/TJ,18673884.684,kg -8ef15ae9-f199-32d2-be3b-648499085072,SESCO,II.1.1,Capital Federal,AR-C,annual,2019,gas oil combustion consumption by public passenger transport,252.00924,TJ,CH4,3.9,kg/TJ,982.836036,kg -8ef15ae9-f199-32d2-be3b-648499085072,SESCO,II.1.1,Capital Federal,AR-C,annual,2019,gas oil combustion consumption by public passenger transport,252.00924,TJ,N2O,3.9,kg/TJ,982.836036,kg -2ac08eea-7ebc-3b8e-8052-2c554306fef4,SESCO,II.1.1,Chubut,AR-U,annual,2019,gas oil combustion consumption by public passenger transport,13.1838,TJ,CO2,74100.0,kg/TJ,976919.58,kg -cbc0606b-0910-3480-a798-9f30cf48bfae,SESCO,II.1.1,Chubut,AR-U,annual,2019,gas oil combustion consumption by public passenger transport,13.1838,TJ,CH4,3.9,kg/TJ,51.41682,kg -cbc0606b-0910-3480-a798-9f30cf48bfae,SESCO,II.1.1,Chubut,AR-U,annual,2019,gas oil combustion consumption by public passenger transport,13.1838,TJ,N2O,3.9,kg/TJ,51.41682,kg -0354494c-5c8c-3661-957c-252edf68e61f,SESCO,II.1.1,Corrientes,AR-W,annual,2019,gas oil combustion consumption by public passenger transport,0.25284,TJ,CO2,74100.0,kg/TJ,18735.444,kg -84fe2139-6d90-3674-99aa-dc1595dbd8cd,SESCO,II.1.1,Corrientes,AR-W,annual,2019,gas oil combustion consumption by public passenger transport,0.25284,TJ,CH4,3.9,kg/TJ,0.9860760000000001,kg -84fe2139-6d90-3674-99aa-dc1595dbd8cd,SESCO,II.1.1,Corrientes,AR-W,annual,2019,gas oil combustion consumption by public passenger transport,0.25284,TJ,N2O,3.9,kg/TJ,0.9860760000000001,kg -8b6185d3-d5fc-3d3e-8e45-c5bdd3ce6bd4,SESCO,II.1.1,Córdoba,AR-X,annual,2019,gas oil combustion consumption by public passenger transport,25.861919999999998,TJ,CO2,74100.0,kg/TJ,1916368.2719999999,kg -adf8e685-a98a-3f65-bfc3-ed66f0b3db80,SESCO,II.1.1,Córdoba,AR-X,annual,2019,gas oil combustion consumption by public passenger transport,25.861919999999998,TJ,CH4,3.9,kg/TJ,100.861488,kg -adf8e685-a98a-3f65-bfc3-ed66f0b3db80,SESCO,II.1.1,Córdoba,AR-X,annual,2019,gas oil combustion consumption by public passenger transport,25.861919999999998,TJ,N2O,3.9,kg/TJ,100.861488,kg -699d24ff-b993-36d0-8fdd-6eb5464b26b2,SESCO,II.1.1,Entre Rios,AR-E,annual,2019,gas oil combustion consumption by public passenger transport,1.30032,TJ,CO2,74100.0,kg/TJ,96353.712,kg -9333fda9-3e51-3064-96ad-2e04f2a5c3d6,SESCO,II.1.1,Entre Rios,AR-E,annual,2019,gas oil combustion consumption by public passenger transport,1.30032,TJ,CH4,3.9,kg/TJ,5.071248,kg -9333fda9-3e51-3064-96ad-2e04f2a5c3d6,SESCO,II.1.1,Entre Rios,AR-E,annual,2019,gas oil combustion consumption by public passenger transport,1.30032,TJ,N2O,3.9,kg/TJ,5.071248,kg -0e1735af-c357-39bd-a560-52f3d8fee8ac,SESCO,II.1.1,La Pampa,AR-L,annual,2019,gas oil combustion consumption by public passenger transport,6.1404,TJ,CO2,74100.0,kg/TJ,455003.63999999996,kg -c3c972c5-ff9f-396b-9801-b44f7e7c1187,SESCO,II.1.1,La Pampa,AR-L,annual,2019,gas oil combustion consumption by public passenger transport,6.1404,TJ,CH4,3.9,kg/TJ,23.94756,kg -c3c972c5-ff9f-396b-9801-b44f7e7c1187,SESCO,II.1.1,La Pampa,AR-L,annual,2019,gas oil combustion consumption by public passenger transport,6.1404,TJ,N2O,3.9,kg/TJ,23.94756,kg -2741fac7-9f5e-3547-bea4-c5bfb284ad3b,SESCO,II.1.1,Mendoza,AR-M,annual,2019,gas oil combustion consumption by public passenger transport,0.25284,TJ,CO2,74100.0,kg/TJ,18735.444,kg -fa05482d-d129-397e-8694-6c3c2bf89e39,SESCO,II.1.1,Mendoza,AR-M,annual,2019,gas oil combustion consumption by public passenger transport,0.25284,TJ,CH4,3.9,kg/TJ,0.9860760000000001,kg -fa05482d-d129-397e-8694-6c3c2bf89e39,SESCO,II.1.1,Mendoza,AR-M,annual,2019,gas oil combustion consumption by public passenger transport,0.25284,TJ,N2O,3.9,kg/TJ,0.9860760000000001,kg -10194be2-81ec-3b29-9098-4eb4bd96dd05,SESCO,II.1.1,Misiones,AR-N,annual,2019,gas oil combustion consumption by public passenger transport,22.86396,TJ,CO2,74100.0,kg/TJ,1694219.436,kg -4ce4aeb7-2c9f-3133-a9c8-97284ba14a0c,SESCO,II.1.1,Misiones,AR-N,annual,2019,gas oil combustion consumption by public passenger transport,22.86396,TJ,CH4,3.9,kg/TJ,89.169444,kg -4ce4aeb7-2c9f-3133-a9c8-97284ba14a0c,SESCO,II.1.1,Misiones,AR-N,annual,2019,gas oil combustion consumption by public passenger transport,22.86396,TJ,N2O,3.9,kg/TJ,89.169444,kg -e9d2b28e-0bdf-3ccd-bffa-4f7195a8bafe,SESCO,II.1.1,Neuquén,AR-Q,annual,2019,gas oil combustion consumption by public passenger transport,27.956879999999998,TJ,CO2,74100.0,kg/TJ,2071604.808,kg -7563cfad-5d67-3510-a0fd-6ac0aac31df6,SESCO,II.1.1,Neuquén,AR-Q,annual,2019,gas oil combustion consumption by public passenger transport,27.956879999999998,TJ,CH4,3.9,kg/TJ,109.031832,kg -7563cfad-5d67-3510-a0fd-6ac0aac31df6,SESCO,II.1.1,Neuquén,AR-Q,annual,2019,gas oil combustion consumption by public passenger transport,27.956879999999998,TJ,N2O,3.9,kg/TJ,109.031832,kg -d4988de1-fd94-38b5-b500-b91627aa1538,SESCO,II.1.1,Rio Negro,AR-R,annual,2019,gas oil combustion consumption by public passenger transport,92.06988,TJ,CO2,74100.0,kg/TJ,6822378.108,kg -efbbc200-e945-32cf-8b98-cd07593f09af,SESCO,II.1.1,Rio Negro,AR-R,annual,2019,gas oil combustion consumption by public passenger transport,92.06988,TJ,CH4,3.9,kg/TJ,359.07253199999997,kg -efbbc200-e945-32cf-8b98-cd07593f09af,SESCO,II.1.1,Rio Negro,AR-R,annual,2019,gas oil combustion consumption by public passenger transport,92.06988,TJ,N2O,3.9,kg/TJ,359.07253199999997,kg -5ef3f57a-0596-3e0b-ac04-edb91389ef23,SESCO,II.1.1,Salta,AR-A,annual,2019,gas oil combustion consumption by public passenger transport,0.18059999999999998,TJ,CO2,74100.0,kg/TJ,13382.46,kg -c9f22fc0-245d-3da0-8b4e-b15e0d5c9c8b,SESCO,II.1.1,Salta,AR-A,annual,2019,gas oil combustion consumption by public passenger transport,0.18059999999999998,TJ,CH4,3.9,kg/TJ,0.70434,kg -c9f22fc0-245d-3da0-8b4e-b15e0d5c9c8b,SESCO,II.1.1,Salta,AR-A,annual,2019,gas oil combustion consumption by public passenger transport,0.18059999999999998,TJ,N2O,3.9,kg/TJ,0.70434,kg -ca16f66a-031e-3a06-bbd2-8d2d7e869806,SESCO,II.1.1,Santa Fe,AR-S,annual,2019,gas oil combustion consumption by public passenger transport,20.11884,TJ,CO2,74100.0,kg/TJ,1490806.044,kg -bdd946b5-e803-37b6-a74f-3c8c1add241f,SESCO,II.1.1,Santa Fe,AR-S,annual,2019,gas oil combustion consumption by public passenger transport,20.11884,TJ,CH4,3.9,kg/TJ,78.463476,kg -bdd946b5-e803-37b6-a74f-3c8c1add241f,SESCO,II.1.1,Santa Fe,AR-S,annual,2019,gas oil combustion consumption by public passenger transport,20.11884,TJ,N2O,3.9,kg/TJ,78.463476,kg -4a796876-b32a-34d2-9ec2-57d047fb5e0b,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2019,gas oil combustion consumption by public passenger transport,0.10836,TJ,CO2,74100.0,kg/TJ,8029.476,kg -16848513-cf04-377a-a082-9697c9e54b0e,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2019,gas oil combustion consumption by public passenger transport,0.10836,TJ,CH4,3.9,kg/TJ,0.422604,kg -16848513-cf04-377a-a082-9697c9e54b0e,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2019,gas oil combustion consumption by public passenger transport,0.10836,TJ,N2O,3.9,kg/TJ,0.422604,kg -00c95d1e-e1cb-3200-a1fe-d3e1ddf00380,SESCO,II.1.1,Catamarca,AR-K,annual,2019,gas oil combustion consumption by to the public,101.12805359999999,TJ,CO2,74100.0,kg/TJ,7493588.771759999,kg -21424391-25de-35fe-b067-b438b08c68e4,SESCO,II.1.1,Catamarca,AR-K,annual,2019,gas oil combustion consumption by to the public,101.12805359999999,TJ,CH4,3.9,kg/TJ,394.39940903999997,kg -21424391-25de-35fe-b067-b438b08c68e4,SESCO,II.1.1,Catamarca,AR-K,annual,2019,gas oil combustion consumption by to the public,101.12805359999999,TJ,N2O,3.9,kg/TJ,394.39940903999997,kg -5beac70e-7bdc-33e5-8276-ab14a96b5d5d,SESCO,II.1.1,Chaco,AR-H,annual,2019,gas oil combustion consumption by to the public,88.63848,TJ,CO2,74100.0,kg/TJ,6568111.368,kg -a46c499c-aa4e-3eab-9015-185e5390ef26,SESCO,II.1.1,Chaco,AR-H,annual,2019,gas oil combustion consumption by to the public,88.63848,TJ,CH4,3.9,kg/TJ,345.690072,kg -a46c499c-aa4e-3eab-9015-185e5390ef26,SESCO,II.1.1,Chaco,AR-H,annual,2019,gas oil combustion consumption by to the public,88.63848,TJ,N2O,3.9,kg/TJ,345.690072,kg -5d9575ed-9360-36b7-8907-e4bd54b4b6fe,SESCO,II.1.1,Jujuy,AR-Y,annual,2019,gas oil combustion consumption by to the public,506.83584,TJ,CO2,74100.0,kg/TJ,37556535.744,kg -061db606-8f19-36cb-9091-e4108ed4a010,SESCO,II.1.1,Jujuy,AR-Y,annual,2019,gas oil combustion consumption by to the public,506.83584,TJ,CH4,3.9,kg/TJ,1976.659776,kg -061db606-8f19-36cb-9091-e4108ed4a010,SESCO,II.1.1,Jujuy,AR-Y,annual,2019,gas oil combustion consumption by to the public,506.83584,TJ,N2O,3.9,kg/TJ,1976.659776,kg -2258a476-4049-3466-8f13-dae5d608d0d1,SESCO,II.1.1,La Rioja,AR-F,annual,2019,gas oil combustion consumption by to the public,82.8852864,TJ,CO2,74100.0,kg/TJ,6141799.72224,kg -0aa6f325-6eec-3d92-b925-c8171d0ec577,SESCO,II.1.1,La Rioja,AR-F,annual,2019,gas oil combustion consumption by to the public,82.8852864,TJ,CH4,3.9,kg/TJ,323.25261696,kg -0aa6f325-6eec-3d92-b925-c8171d0ec577,SESCO,II.1.1,La Rioja,AR-F,annual,2019,gas oil combustion consumption by to the public,82.8852864,TJ,N2O,3.9,kg/TJ,323.25261696,kg -2f533b1b-4d10-3061-8c6a-9cddb12e7857,SESCO,II.1.1,Salta,AR-A,annual,2019,gas oil combustion consumption by to the public,1629.3482772,TJ,CO2,74100.0,kg/TJ,120734707.34052,kg -785e29a8-2bb8-3e4d-9ab9-3f269b7a10c3,SESCO,II.1.1,Salta,AR-A,annual,2019,gas oil combustion consumption by to the public,1629.3482772,TJ,CH4,3.9,kg/TJ,6354.45828108,kg -785e29a8-2bb8-3e4d-9ab9-3f269b7a10c3,SESCO,II.1.1,Salta,AR-A,annual,2019,gas oil combustion consumption by to the public,1629.3482772,TJ,N2O,3.9,kg/TJ,6354.45828108,kg -aee16ec3-dedd-3980-bd95-35bcf2d8f06c,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2019,gas oil combustion consumption by to the public,287.0665896,TJ,CO2,74100.0,kg/TJ,21271634.289359998,kg -da81daf3-e9ea-3b2e-aac3-689f48013093,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2019,gas oil combustion consumption by to the public,287.0665896,TJ,CH4,3.9,kg/TJ,1119.55969944,kg -da81daf3-e9ea-3b2e-aac3-689f48013093,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2019,gas oil combustion consumption by to the public,287.0665896,TJ,N2O,3.9,kg/TJ,1119.55969944,kg -abf3532e-2c4d-3b13-acf5-647c62c7becf,SESCO,II.1.1,Tucuman,AR-T,annual,2019,gas oil combustion consumption by to the public,1678.0221444000001,TJ,CO2,74100.0,kg/TJ,124341440.90004002,kg -141f57e4-128e-3023-83fc-170ef9b7fdde,SESCO,II.1.1,Tucuman,AR-T,annual,2019,gas oil combustion consumption by to the public,1678.0221444000001,TJ,CH4,3.9,kg/TJ,6544.28636316,kg -141f57e4-128e-3023-83fc-170ef9b7fdde,SESCO,II.1.1,Tucuman,AR-T,annual,2019,gas oil combustion consumption by to the public,1678.0221444000001,TJ,N2O,3.9,kg/TJ,6544.28636316,kg -0a37be1e-bb9c-3d8e-8e76-bd01846ef9bb,SESCO,II.1.1,Catamarca,AR-K,annual,2019,gas oil combustion consumption by to the public,34.225867199999996,TJ,CO2,74100.0,kg/TJ,2536136.75952,kg -4dc415ac-0e7e-3546-9703-de37c01a20b5,SESCO,II.1.1,Catamarca,AR-K,annual,2019,gas oil combustion consumption by to the public,34.225867199999996,TJ,CH4,3.9,kg/TJ,133.48088208,kg -4dc415ac-0e7e-3546-9703-de37c01a20b5,SESCO,II.1.1,Catamarca,AR-K,annual,2019,gas oil combustion consumption by to the public,34.225867199999996,TJ,N2O,3.9,kg/TJ,133.48088208,kg -7f9fdb9c-3728-38d9-a50c-4c29b488302b,SESCO,II.1.1,Chaco,AR-H,annual,2019,gas oil combustion consumption by to the public,10.00524,TJ,CO2,74100.0,kg/TJ,741388.284,kg -b44c0263-058d-30b9-b1af-4aa95426ef91,SESCO,II.1.1,Chaco,AR-H,annual,2019,gas oil combustion consumption by to the public,10.00524,TJ,CH4,3.9,kg/TJ,39.020436000000004,kg -b44c0263-058d-30b9-b1af-4aa95426ef91,SESCO,II.1.1,Chaco,AR-H,annual,2019,gas oil combustion consumption by to the public,10.00524,TJ,N2O,3.9,kg/TJ,39.020436000000004,kg -f79a34e8-472c-39e2-825c-5b28ee4c26c1,SESCO,II.1.1,Jujuy,AR-Y,annual,2019,gas oil combustion consumption by to the public,166.40484,TJ,CO2,74100.0,kg/TJ,12330598.644000001,kg -9aec0fa0-7d1c-39fb-9b19-89b39d95737f,SESCO,II.1.1,Jujuy,AR-Y,annual,2019,gas oil combustion consumption by to the public,166.40484,TJ,CH4,3.9,kg/TJ,648.978876,kg -9aec0fa0-7d1c-39fb-9b19-89b39d95737f,SESCO,II.1.1,Jujuy,AR-Y,annual,2019,gas oil combustion consumption by to the public,166.40484,TJ,N2O,3.9,kg/TJ,648.978876,kg -9b9e0d88-5693-3dbe-9f91-62734099b611,SESCO,II.1.1,La Rioja,AR-F,annual,2019,gas oil combustion consumption by to the public,27.34284,TJ,CO2,74100.0,kg/TJ,2026104.444,kg -433d2c49-3f3a-364d-97b4-9f8b79998063,SESCO,II.1.1,La Rioja,AR-F,annual,2019,gas oil combustion consumption by to the public,27.34284,TJ,CH4,3.9,kg/TJ,106.637076,kg -433d2c49-3f3a-364d-97b4-9f8b79998063,SESCO,II.1.1,La Rioja,AR-F,annual,2019,gas oil combustion consumption by to the public,27.34284,TJ,N2O,3.9,kg/TJ,106.637076,kg -9c99a7bd-0175-3ac3-b353-9c761da15efb,SESCO,II.1.1,Salta,AR-A,annual,2019,gas oil combustion consumption by to the public,345.012822,TJ,CO2,74100.0,kg/TJ,25565450.110200003,kg -ff69682f-75df-3e09-a7c3-3431c8438cfc,SESCO,II.1.1,Salta,AR-A,annual,2019,gas oil combustion consumption by to the public,345.012822,TJ,CH4,3.9,kg/TJ,1345.5500058,kg -ff69682f-75df-3e09-a7c3-3431c8438cfc,SESCO,II.1.1,Salta,AR-A,annual,2019,gas oil combustion consumption by to the public,345.012822,TJ,N2O,3.9,kg/TJ,1345.5500058,kg -914ed3c2-5bf5-3854-b306-ab5674d1bbfa,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2019,gas oil combustion consumption by to the public,114.84101159999999,TJ,CO2,74100.0,kg/TJ,8509718.95956,kg -8cdb6ff6-21ce-3bd2-ab7a-f27306143273,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2019,gas oil combustion consumption by to the public,114.84101159999999,TJ,CH4,3.9,kg/TJ,447.8799452399999,kg -8cdb6ff6-21ce-3bd2-ab7a-f27306143273,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2019,gas oil combustion consumption by to the public,114.84101159999999,TJ,N2O,3.9,kg/TJ,447.8799452399999,kg -83942a3c-32ad-3a6b-95c7-d1d68558f4a9,SESCO,II.1.1,Tucuman,AR-T,annual,2019,gas oil combustion consumption by to the public,417.36009839999997,TJ,CO2,74100.0,kg/TJ,30926383.29144,kg -77e963da-7333-3262-a52d-ec7b680b8bad,SESCO,II.1.1,Tucuman,AR-T,annual,2019,gas oil combustion consumption by to the public,417.36009839999997,TJ,CH4,3.9,kg/TJ,1627.70438376,kg -77e963da-7333-3262-a52d-ec7b680b8bad,SESCO,II.1.1,Tucuman,AR-T,annual,2019,gas oil combustion consumption by to the public,417.36009839999997,TJ,N2O,3.9,kg/TJ,1627.70438376,kg -8e4cee2c-5efd-37e3-b17a-f4923045dc61,SESCO,I.3.1,Buenos Aires,AR-B,annual,2019,gasoline combustion consumption by petrochemical industries,31.046769,TJ,CO2,69300.0,kg/TJ,2151541.0917,kg -cbf6fd1b-b0ad-3d75-b738-fdac32f21e76,SESCO,I.3.1,Buenos Aires,AR-B,annual,2019,gasoline combustion consumption by petrochemical industries,31.046769,TJ,CH4,33.0,kg/TJ,1024.543377,kg -2de5ad80-6bd6-3df0-8855-bd3ae3754ad3,SESCO,I.3.1,Buenos Aires,AR-B,annual,2019,gasoline combustion consumption by petrochemical industries,31.046769,TJ,N2O,3.2,kg/TJ,99.34966080000001,kg -b7d7ebb0-d40f-366e-b260-f7561d648648,SESCO,II.5.1,Buenos Aires,AR-B,annual,2019,gasoline combustion consumption by agriculture machines,10.9421,TJ,CO2,69300.0,kg/TJ,758287.53,kg -039802b9-036c-321e-b2a2-0b074af514d7,SESCO,II.5.1,Buenos Aires,AR-B,annual,2019,gasoline combustion consumption by agriculture machines,10.9421,TJ,CH4,33.0,kg/TJ,361.0893,kg -6ac9588d-2d14-3b56-8828-db40831dd428,SESCO,II.5.1,Buenos Aires,AR-B,annual,2019,gasoline combustion consumption by agriculture machines,10.9421,TJ,N2O,3.2,kg/TJ,35.014720000000004,kg -9def7f71-ca27-3e67-8705-53f96311507a,SESCO,II.5.1,Buenos Aires,AR-B,annual,2019,gas oil combustion consumption by agriculture machines,373.58916,TJ,CO2,74100.0,kg/TJ,27682956.756,kg -457a20c3-751f-3672-addb-1f9abb2d9235,SESCO,II.5.1,Buenos Aires,AR-B,annual,2019,gas oil combustion consumption by agriculture machines,373.58916,TJ,CH4,3.9,kg/TJ,1456.9977239999998,kg -457a20c3-751f-3672-addb-1f9abb2d9235,SESCO,II.5.1,Buenos Aires,AR-B,annual,2019,gas oil combustion consumption by agriculture machines,373.58916,TJ,N2O,3.9,kg/TJ,1456.9977239999998,kg -e5eae0b2-4aa2-3fc8-a374-f058a3a072c2,SESCO,II.5.1,Córdoba,AR-X,annual,2019,gas oil combustion consumption by agriculture machines,19.3242,TJ,CO2,74100.0,kg/TJ,1431923.22,kg -2449b034-2521-3450-a365-0d1bf32732f5,SESCO,II.5.1,Córdoba,AR-X,annual,2019,gas oil combustion consumption by agriculture machines,19.3242,TJ,CH4,3.9,kg/TJ,75.36438,kg -2449b034-2521-3450-a365-0d1bf32732f5,SESCO,II.5.1,Córdoba,AR-X,annual,2019,gas oil combustion consumption by agriculture machines,19.3242,TJ,N2O,3.9,kg/TJ,75.36438,kg -75e5b74d-cf52-3e0d-a7b9-ec387c58f1c3,SESCO,II.5.1,Entre Rios,AR-E,annual,2019,gas oil combustion consumption by agriculture machines,88.6746,TJ,CO2,74100.0,kg/TJ,6570787.859999999,kg -62fc58cb-021a-34bc-bad1-a78c4de9baee,SESCO,II.5.1,Entre Rios,AR-E,annual,2019,gas oil combustion consumption by agriculture machines,88.6746,TJ,CH4,3.9,kg/TJ,345.83094,kg -62fc58cb-021a-34bc-bad1-a78c4de9baee,SESCO,II.5.1,Entre Rios,AR-E,annual,2019,gas oil combustion consumption by agriculture machines,88.6746,TJ,N2O,3.9,kg/TJ,345.83094,kg -30f4ad56-a346-38e6-94c0-f1a15e72f857,SESCO,II.5.1,Santa Fe,AR-S,annual,2019,gas oil combustion consumption by agriculture machines,33.80832,TJ,CO2,74100.0,kg/TJ,2505196.512,kg -bd5bd7d9-98ce-3cce-a089-0c707071e5fa,SESCO,II.5.1,Santa Fe,AR-S,annual,2019,gas oil combustion consumption by agriculture machines,33.80832,TJ,CH4,3.9,kg/TJ,131.852448,kg -bd5bd7d9-98ce-3cce-a089-0c707071e5fa,SESCO,II.5.1,Santa Fe,AR-S,annual,2019,gas oil combustion consumption by agriculture machines,33.80832,TJ,N2O,3.9,kg/TJ,131.852448,kg -707ff3a8-3a2d-32f1-9371-44e1570ddd8d,SESCO,II.5.1,Tucuman,AR-T,annual,2019,gas oil combustion consumption by agriculture machines,102.61692,TJ,CO2,74100.0,kg/TJ,7603913.772,kg -fdb9f1f8-39cb-32f9-80f8-0cc96b57f8dd,SESCO,II.5.1,Tucuman,AR-T,annual,2019,gas oil combustion consumption by agriculture machines,102.61692,TJ,CH4,3.9,kg/TJ,400.205988,kg -fdb9f1f8-39cb-32f9-80f8-0cc96b57f8dd,SESCO,II.5.1,Tucuman,AR-T,annual,2019,gas oil combustion consumption by agriculture machines,102.61692,TJ,N2O,3.9,kg/TJ,400.205988,kg -d90cb40e-c662-3b79-9334-85bb5765c7c2,SESCO,II.5.1,Buenos Aires,AR-B,annual,2019,gas oil combustion consumption by agriculture machines,14.23128,TJ,CO2,74100.0,kg/TJ,1054537.848,kg -c9716791-9f86-3c06-9e93-c9521e9b3c6f,SESCO,II.5.1,Buenos Aires,AR-B,annual,2019,gas oil combustion consumption by agriculture machines,14.23128,TJ,CH4,3.9,kg/TJ,55.501992,kg -c9716791-9f86-3c06-9e93-c9521e9b3c6f,SESCO,II.5.1,Buenos Aires,AR-B,annual,2019,gas oil combustion consumption by agriculture machines,14.23128,TJ,N2O,3.9,kg/TJ,55.501992,kg -17258df4-8227-3cc6-b243-7feb55df92cf,SESCO,II.5.1,Entre Rios,AR-E,annual,2019,gas oil combustion consumption by agriculture machines,52.15728,TJ,CO2,74100.0,kg/TJ,3864854.448,kg -1a09c922-1754-3ad4-a596-4f8cd545af0d,SESCO,II.5.1,Entre Rios,AR-E,annual,2019,gas oil combustion consumption by agriculture machines,52.15728,TJ,CH4,3.9,kg/TJ,203.413392,kg -1a09c922-1754-3ad4-a596-4f8cd545af0d,SESCO,II.5.1,Entre Rios,AR-E,annual,2019,gas oil combustion consumption by agriculture machines,52.15728,TJ,N2O,3.9,kg/TJ,203.413392,kg -7b1f0fb5-3df0-31c0-9db5-93a954b655e8,SESCO,II.1.1,Buenos Aires,AR-B,annual,2019,gas oil combustion consumption by to the public,12562.536,TJ,CO2,74100.0,kg/TJ,930883917.6,kg -38c890eb-77a8-329f-b7bd-20c556904fc7,SESCO,II.1.1,Buenos Aires,AR-B,annual,2019,gas oil combustion consumption by to the public,12562.536,TJ,CH4,3.9,kg/TJ,48993.8904,kg -38c890eb-77a8-329f-b7bd-20c556904fc7,SESCO,II.1.1,Buenos Aires,AR-B,annual,2019,gas oil combustion consumption by to the public,12562.536,TJ,N2O,3.9,kg/TJ,48993.8904,kg -75fbe3fe-bb0e-39e8-9c29-35a42afcd2cb,SESCO,II.1.1,Capital Federal,AR-C,annual,2019,gas oil combustion consumption by to the public,936.12204,TJ,CO2,74100.0,kg/TJ,69366643.164,kg -93af9023-457a-3275-a58d-4346e7fd5bc9,SESCO,II.1.1,Capital Federal,AR-C,annual,2019,gas oil combustion consumption by to the public,936.12204,TJ,CH4,3.9,kg/TJ,3650.875956,kg -93af9023-457a-3275-a58d-4346e7fd5bc9,SESCO,II.1.1,Capital Federal,AR-C,annual,2019,gas oil combustion consumption by to the public,936.12204,TJ,N2O,3.9,kg/TJ,3650.875956,kg -fe9b115f-a031-38e9-b5c7-06510504c7fd,SESCO,II.1.1,Catamarca,AR-K,annual,2019,gas oil combustion consumption by to the public,9.680159999999999,TJ,CO2,74100.0,kg/TJ,717299.8559999999,kg -a54a3008-7598-3a07-b41b-c4d7d518d3f4,SESCO,II.1.1,Catamarca,AR-K,annual,2019,gas oil combustion consumption by to the public,9.680159999999999,TJ,CH4,3.9,kg/TJ,37.752624,kg -a54a3008-7598-3a07-b41b-c4d7d518d3f4,SESCO,II.1.1,Catamarca,AR-K,annual,2019,gas oil combustion consumption by to the public,9.680159999999999,TJ,N2O,3.9,kg/TJ,37.752624,kg -dc3e985f-86d3-300d-b45f-516b0341152a,SESCO,II.1.1,Chaco,AR-H,annual,2019,gas oil combustion consumption by to the public,1759.83864,TJ,CO2,74100.0,kg/TJ,130404043.22399999,kg -124735eb-8ecc-36d8-8478-af7f0a27a223,SESCO,II.1.1,Chaco,AR-H,annual,2019,gas oil combustion consumption by to the public,1759.83864,TJ,CH4,3.9,kg/TJ,6863.370696,kg -124735eb-8ecc-36d8-8478-af7f0a27a223,SESCO,II.1.1,Chaco,AR-H,annual,2019,gas oil combustion consumption by to the public,1759.83864,TJ,N2O,3.9,kg/TJ,6863.370696,kg -592edb3c-3253-3f9f-9dd7-07e820acf7c3,SESCO,II.1.1,Corrientes,AR-W,annual,2019,gas oil combustion consumption by to the public,760.83168,TJ,CO2,74100.0,kg/TJ,56377627.488,kg -164f4412-34b5-39f9-948b-0eac72d30b07,SESCO,II.1.1,Corrientes,AR-W,annual,2019,gas oil combustion consumption by to the public,760.83168,TJ,CH4,3.9,kg/TJ,2967.243552,kg -164f4412-34b5-39f9-948b-0eac72d30b07,SESCO,II.1.1,Corrientes,AR-W,annual,2019,gas oil combustion consumption by to the public,760.83168,TJ,N2O,3.9,kg/TJ,2967.243552,kg -b640c8bc-9ac8-37f9-8e0d-3f76a5ec5adc,SESCO,II.1.1,Córdoba,AR-X,annual,2019,gas oil combustion consumption by to the public,6776.43708,TJ,CO2,74100.0,kg/TJ,502133987.62799996,kg -0c53eb67-c729-3b9d-8f72-03bf898a2626,SESCO,II.1.1,Córdoba,AR-X,annual,2019,gas oil combustion consumption by to the public,6776.43708,TJ,CH4,3.9,kg/TJ,26428.104612,kg -0c53eb67-c729-3b9d-8f72-03bf898a2626,SESCO,II.1.1,Córdoba,AR-X,annual,2019,gas oil combustion consumption by to the public,6776.43708,TJ,N2O,3.9,kg/TJ,26428.104612,kg -c6eabae6-a23b-3caa-a27e-caff5d2cb773,SESCO,II.1.1,Entre Rios,AR-E,annual,2019,gas oil combustion consumption by to the public,1372.56,TJ,CO2,74100.0,kg/TJ,101706696.0,kg -a703656e-7701-31bb-a0b9-5e5b15f0a86a,SESCO,II.1.1,Entre Rios,AR-E,annual,2019,gas oil combustion consumption by to the public,1372.56,TJ,CH4,3.9,kg/TJ,5352.9839999999995,kg -a703656e-7701-31bb-a0b9-5e5b15f0a86a,SESCO,II.1.1,Entre Rios,AR-E,annual,2019,gas oil combustion consumption by to the public,1372.56,TJ,N2O,3.9,kg/TJ,5352.9839999999995,kg -aa58acf9-dc79-329d-90d2-365735838790,SESCO,II.1.1,Formosa,AR-P,annual,2019,gas oil combustion consumption by to the public,124.93908,TJ,CO2,74100.0,kg/TJ,9257985.828,kg -66125a88-a307-3bb4-a098-96788097dec8,SESCO,II.1.1,Formosa,AR-P,annual,2019,gas oil combustion consumption by to the public,124.93908,TJ,CH4,3.9,kg/TJ,487.262412,kg -66125a88-a307-3bb4-a098-96788097dec8,SESCO,II.1.1,Formosa,AR-P,annual,2019,gas oil combustion consumption by to the public,124.93908,TJ,N2O,3.9,kg/TJ,487.262412,kg -886b53dd-f344-3732-8997-c93b2deae9dd,SESCO,II.1.1,Jujuy,AR-Y,annual,2019,gas oil combustion consumption by to the public,76.68276,TJ,CO2,74100.0,kg/TJ,5682192.516,kg -0af02135-3e71-39f5-84c4-af04398c4343,SESCO,II.1.1,Jujuy,AR-Y,annual,2019,gas oil combustion consumption by to the public,76.68276,TJ,CH4,3.9,kg/TJ,299.062764,kg -0af02135-3e71-39f5-84c4-af04398c4343,SESCO,II.1.1,Jujuy,AR-Y,annual,2019,gas oil combustion consumption by to the public,76.68276,TJ,N2O,3.9,kg/TJ,299.062764,kg -cc9f656e-cd38-3732-b997-0e6d6d2276f5,SESCO,II.1.1,La Pampa,AR-L,annual,2019,gas oil combustion consumption by to the public,710.8416,TJ,CO2,74100.0,kg/TJ,52673362.559999995,kg -2f42d56f-adc5-3ff6-9af7-3a66f020068e,SESCO,II.1.1,La Pampa,AR-L,annual,2019,gas oil combustion consumption by to the public,710.8416,TJ,CH4,3.9,kg/TJ,2772.28224,kg -2f42d56f-adc5-3ff6-9af7-3a66f020068e,SESCO,II.1.1,La Pampa,AR-L,annual,2019,gas oil combustion consumption by to the public,710.8416,TJ,N2O,3.9,kg/TJ,2772.28224,kg -1a93e2c2-b1f4-3ce4-a0f8-4226ef313acd,SESCO,II.1.1,La Rioja,AR-F,annual,2019,gas oil combustion consumption by to the public,198.26268,TJ,CO2,74100.0,kg/TJ,14691264.588,kg -767b251c-3078-37b1-8676-e52214dfb4e2,SESCO,II.1.1,La Rioja,AR-F,annual,2019,gas oil combustion consumption by to the public,198.26268,TJ,CH4,3.9,kg/TJ,773.2244519999999,kg -767b251c-3078-37b1-8676-e52214dfb4e2,SESCO,II.1.1,La Rioja,AR-F,annual,2019,gas oil combustion consumption by to the public,198.26268,TJ,N2O,3.9,kg/TJ,773.2244519999999,kg -3831cbee-1b2d-35c7-9412-b88a3cb0e966,SESCO,II.1.1,Mendoza,AR-M,annual,2019,gas oil combustion consumption by to the public,996.76752,TJ,CO2,74100.0,kg/TJ,73860473.232,kg -bcc491b6-3c85-3d25-a492-2b567af4a84c,SESCO,II.1.1,Mendoza,AR-M,annual,2019,gas oil combustion consumption by to the public,996.76752,TJ,CH4,3.9,kg/TJ,3887.3933279999997,kg -bcc491b6-3c85-3d25-a492-2b567af4a84c,SESCO,II.1.1,Mendoza,AR-M,annual,2019,gas oil combustion consumption by to the public,996.76752,TJ,N2O,3.9,kg/TJ,3887.3933279999997,kg -3b5ad1b6-517e-341e-90ee-accc5b0596f6,SESCO,II.1.1,Misiones,AR-N,annual,2019,gas oil combustion consumption by to the public,1164.47268,TJ,CO2,74100.0,kg/TJ,86287425.588,kg -f9a9aa50-7112-3977-abf0-6d3b1db299d1,SESCO,II.1.1,Misiones,AR-N,annual,2019,gas oil combustion consumption by to the public,1164.47268,TJ,CH4,3.9,kg/TJ,4541.443452,kg -f9a9aa50-7112-3977-abf0-6d3b1db299d1,SESCO,II.1.1,Misiones,AR-N,annual,2019,gas oil combustion consumption by to the public,1164.47268,TJ,N2O,3.9,kg/TJ,4541.443452,kg -37b5d608-f9f4-3f00-af2e-613a3d2f197c,SESCO,II.1.1,Neuquén,AR-Q,annual,2019,gas oil combustion consumption by to the public,787.4159999999999,TJ,CO2,74100.0,kg/TJ,58347525.599999994,kg -4934682e-bfab-3219-916e-716e0e6a0615,SESCO,II.1.1,Neuquén,AR-Q,annual,2019,gas oil combustion consumption by to the public,787.4159999999999,TJ,CH4,3.9,kg/TJ,3070.9223999999995,kg -4934682e-bfab-3219-916e-716e0e6a0615,SESCO,II.1.1,Neuquén,AR-Q,annual,2019,gas oil combustion consumption by to the public,787.4159999999999,TJ,N2O,3.9,kg/TJ,3070.9223999999995,kg -a1c1ea6e-b93f-3f44-9863-946d70a2ad7d,SESCO,II.1.1,Rio Negro,AR-R,annual,2019,gas oil combustion consumption by to the public,237.05555999999999,TJ,CO2,74100.0,kg/TJ,17565816.996,kg -b225b7f5-9dbd-3a8e-9401-43558ded33e3,SESCO,II.1.1,Rio Negro,AR-R,annual,2019,gas oil combustion consumption by to the public,237.05555999999999,TJ,CH4,3.9,kg/TJ,924.5166839999999,kg -b225b7f5-9dbd-3a8e-9401-43558ded33e3,SESCO,II.1.1,Rio Negro,AR-R,annual,2019,gas oil combustion consumption by to the public,237.05555999999999,TJ,N2O,3.9,kg/TJ,924.5166839999999,kg -52496155-08fc-32a8-9a8d-b41ec5907587,SESCO,II.1.1,Salta,AR-A,annual,2019,gas oil combustion consumption by to the public,95.03171999999999,TJ,CO2,74100.0,kg/TJ,7041850.452,kg -d1b43e04-d777-330c-b6e5-2e732916f2a6,SESCO,II.1.1,Salta,AR-A,annual,2019,gas oil combustion consumption by to the public,95.03171999999999,TJ,CH4,3.9,kg/TJ,370.62370799999997,kg -d1b43e04-d777-330c-b6e5-2e732916f2a6,SESCO,II.1.1,Salta,AR-A,annual,2019,gas oil combustion consumption by to the public,95.03171999999999,TJ,N2O,3.9,kg/TJ,370.62370799999997,kg -7e6f2de5-79a3-32bc-9cd0-0ba19402fe32,SESCO,II.1.1,San Juan,AR-J,annual,2019,gas oil combustion consumption by to the public,336.2772,TJ,CO2,74100.0,kg/TJ,24918140.52,kg -7a219683-b1e1-300b-9b8f-499aa09bba8c,SESCO,II.1.1,San Juan,AR-J,annual,2019,gas oil combustion consumption by to the public,336.2772,TJ,CH4,3.9,kg/TJ,1311.48108,kg -7a219683-b1e1-300b-9b8f-499aa09bba8c,SESCO,II.1.1,San Juan,AR-J,annual,2019,gas oil combustion consumption by to the public,336.2772,TJ,N2O,3.9,kg/TJ,1311.48108,kg -81eb336b-1d5e-3d62-a887-5ee176588fe2,SESCO,II.1.1,San Luis,AR-D,annual,2019,gas oil combustion consumption by to the public,233.19072,TJ,CO2,74100.0,kg/TJ,17279432.351999998,kg -1216a243-335f-3cbf-bdbc-ee3309bd811c,SESCO,II.1.1,San Luis,AR-D,annual,2019,gas oil combustion consumption by to the public,233.19072,TJ,CH4,3.9,kg/TJ,909.443808,kg -1216a243-335f-3cbf-bdbc-ee3309bd811c,SESCO,II.1.1,San Luis,AR-D,annual,2019,gas oil combustion consumption by to the public,233.19072,TJ,N2O,3.9,kg/TJ,909.443808,kg -482d86c6-aff5-3e78-bc6a-55def61efbad,SESCO,II.1.1,Santa Fe,AR-S,annual,2019,gas oil combustion consumption by to the public,5190.76908,TJ,CO2,74100.0,kg/TJ,384635988.828,kg -2ae4fa5c-fdfb-3450-875a-77a3e69fc17f,SESCO,II.1.1,Santa Fe,AR-S,annual,2019,gas oil combustion consumption by to the public,5190.76908,TJ,CH4,3.9,kg/TJ,20243.999412,kg -2ae4fa5c-fdfb-3450-875a-77a3e69fc17f,SESCO,II.1.1,Santa Fe,AR-S,annual,2019,gas oil combustion consumption by to the public,5190.76908,TJ,N2O,3.9,kg/TJ,20243.999412,kg -ad1fc68c-2de2-3149-9e46-42f2a847e8c4,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2019,gas oil combustion consumption by to the public,270.43044,TJ,CO2,74100.0,kg/TJ,20038895.604,kg -ece2c204-ad29-3eb2-beaa-1045dcfaa558,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2019,gas oil combustion consumption by to the public,270.43044,TJ,CH4,3.9,kg/TJ,1054.678716,kg -ece2c204-ad29-3eb2-beaa-1045dcfaa558,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2019,gas oil combustion consumption by to the public,270.43044,TJ,N2O,3.9,kg/TJ,1054.678716,kg -d29a23fa-1dbb-3fca-98df-59b6ec9d74de,SESCO,II.1.1,Tucuman,AR-T,annual,2019,gas oil combustion consumption by to the public,952.05096,TJ,CO2,74100.0,kg/TJ,70546976.136,kg -1e3be70a-9375-384a-8a10-f928047f3a98,SESCO,II.1.1,Tucuman,AR-T,annual,2019,gas oil combustion consumption by to the public,952.05096,TJ,CH4,3.9,kg/TJ,3712.998744,kg -1e3be70a-9375-384a-8a10-f928047f3a98,SESCO,II.1.1,Tucuman,AR-T,annual,2019,gas oil combustion consumption by to the public,952.05096,TJ,N2O,3.9,kg/TJ,3712.998744,kg -14e153ed-2443-39e5-ab15-dfff60894180,SESCO,II.1.1,Buenos Aires,AR-B,annual,2019,gas oil combustion consumption by to the public,8496.94104,TJ,CO2,74100.0,kg/TJ,629623331.064,kg -b7c1f6d5-cfc4-36f9-b29a-dcf45cb67370,SESCO,II.1.1,Buenos Aires,AR-B,annual,2019,gas oil combustion consumption by to the public,8496.94104,TJ,CH4,3.9,kg/TJ,33138.070056,kg -b7c1f6d5-cfc4-36f9-b29a-dcf45cb67370,SESCO,II.1.1,Buenos Aires,AR-B,annual,2019,gas oil combustion consumption by to the public,8496.94104,TJ,N2O,3.9,kg/TJ,33138.070056,kg -1cebc496-55e5-3995-888e-7b65f7429ad3,SESCO,II.1.1,Capital Federal,AR-C,annual,2019,gas oil combustion consumption by to the public,1581.73092,TJ,CO2,74100.0,kg/TJ,117206261.17199999,kg -b1879b46-6b22-3510-b36a-f540a2a02ec8,SESCO,II.1.1,Capital Federal,AR-C,annual,2019,gas oil combustion consumption by to the public,1581.73092,TJ,CH4,3.9,kg/TJ,6168.750588,kg -b1879b46-6b22-3510-b36a-f540a2a02ec8,SESCO,II.1.1,Capital Federal,AR-C,annual,2019,gas oil combustion consumption by to the public,1581.73092,TJ,N2O,3.9,kg/TJ,6168.750588,kg -4e29cff1-3d30-3f05-b999-92a8b6544f21,SESCO,II.1.1,Catamarca,AR-K,annual,2019,gas oil combustion consumption by to the public,40.49052,TJ,CO2,74100.0,kg/TJ,3000347.5319999997,kg -88deada0-3df8-3c08-9aef-970e4c6c40e9,SESCO,II.1.1,Catamarca,AR-K,annual,2019,gas oil combustion consumption by to the public,40.49052,TJ,CH4,3.9,kg/TJ,157.91302799999997,kg -88deada0-3df8-3c08-9aef-970e4c6c40e9,SESCO,II.1.1,Catamarca,AR-K,annual,2019,gas oil combustion consumption by to the public,40.49052,TJ,N2O,3.9,kg/TJ,157.91302799999997,kg -8e99342b-944c-36d1-9212-6781e5b41783,SESCO,II.1.1,Chaco,AR-H,annual,2019,gas oil combustion consumption by to the public,535.19004,TJ,CO2,74100.0,kg/TJ,39657581.963999994,kg -1a58db9a-e86a-36f1-ae9f-6fb5fc2c64ea,SESCO,II.1.1,Chaco,AR-H,annual,2019,gas oil combustion consumption by to the public,535.19004,TJ,CH4,3.9,kg/TJ,2087.2411559999996,kg -1a58db9a-e86a-36f1-ae9f-6fb5fc2c64ea,SESCO,II.1.1,Chaco,AR-H,annual,2019,gas oil combustion consumption by to the public,535.19004,TJ,N2O,3.9,kg/TJ,2087.2411559999996,kg -4eee6ce3-7be8-3d6b-a3d4-84e53b972578,SESCO,II.1.1,Corrientes,AR-W,annual,2019,gas oil combustion consumption by to the public,509.1114,TJ,CO2,74100.0,kg/TJ,37725154.74,kg -fee4f678-2da1-37e9-a459-09176c92ba78,SESCO,II.1.1,Corrientes,AR-W,annual,2019,gas oil combustion consumption by to the public,509.1114,TJ,CH4,3.9,kg/TJ,1985.53446,kg -fee4f678-2da1-37e9-a459-09176c92ba78,SESCO,II.1.1,Corrientes,AR-W,annual,2019,gas oil combustion consumption by to the public,509.1114,TJ,N2O,3.9,kg/TJ,1985.53446,kg -2974074f-6d65-3cce-ac62-a1cd83193b03,SESCO,II.1.1,Córdoba,AR-X,annual,2019,gas oil combustion consumption by to the public,2482.20252,TJ,CO2,74100.0,kg/TJ,183931206.732,kg -8d668097-2100-3251-87d0-fe3ffc92f213,SESCO,II.1.1,Córdoba,AR-X,annual,2019,gas oil combustion consumption by to the public,2482.20252,TJ,CH4,3.9,kg/TJ,9680.589827999998,kg -8d668097-2100-3251-87d0-fe3ffc92f213,SESCO,II.1.1,Córdoba,AR-X,annual,2019,gas oil combustion consumption by to the public,2482.20252,TJ,N2O,3.9,kg/TJ,9680.589827999998,kg -bc3ff638-d80b-3d06-8e0b-818637844217,SESCO,II.1.1,Entre Rios,AR-E,annual,2019,gas oil combustion consumption by to the public,653.55528,TJ,CO2,74100.0,kg/TJ,48428446.248,kg -fbe43e8c-ad07-324a-8411-6a5af7513574,SESCO,II.1.1,Entre Rios,AR-E,annual,2019,gas oil combustion consumption by to the public,653.55528,TJ,CH4,3.9,kg/TJ,2548.865592,kg -fbe43e8c-ad07-324a-8411-6a5af7513574,SESCO,II.1.1,Entre Rios,AR-E,annual,2019,gas oil combustion consumption by to the public,653.55528,TJ,N2O,3.9,kg/TJ,2548.865592,kg -64e60a7a-8ed7-3ff2-ae36-0c6f886b59ff,SESCO,II.1.1,Formosa,AR-P,annual,2019,gas oil combustion consumption by to the public,171.06432,TJ,CO2,74100.0,kg/TJ,12675866.112000002,kg -734c582c-4de7-3c56-a5b2-3f64ca9ed5a5,SESCO,II.1.1,Formosa,AR-P,annual,2019,gas oil combustion consumption by to the public,171.06432,TJ,CH4,3.9,kg/TJ,667.150848,kg -734c582c-4de7-3c56-a5b2-3f64ca9ed5a5,SESCO,II.1.1,Formosa,AR-P,annual,2019,gas oil combustion consumption by to the public,171.06432,TJ,N2O,3.9,kg/TJ,667.150848,kg -a25cd480-b335-3a2e-aca0-5c131dbde8da,SESCO,II.1.1,Jujuy,AR-Y,annual,2019,gas oil combustion consumption by to the public,59.92308,TJ,CO2,74100.0,kg/TJ,4440300.228,kg -8331c30e-8153-3418-82be-1690981807ed,SESCO,II.1.1,Jujuy,AR-Y,annual,2019,gas oil combustion consumption by to the public,59.92308,TJ,CH4,3.9,kg/TJ,233.700012,kg -8331c30e-8153-3418-82be-1690981807ed,SESCO,II.1.1,Jujuy,AR-Y,annual,2019,gas oil combustion consumption by to the public,59.92308,TJ,N2O,3.9,kg/TJ,233.700012,kg -283c6f26-1288-3037-9e0d-3c0a8bbcd2b8,SESCO,II.1.1,La Pampa,AR-L,annual,2019,gas oil combustion consumption by to the public,248.1444,TJ,CO2,74100.0,kg/TJ,18387500.04,kg -5694cbe3-c419-3bc7-95d7-1ec67cc6050d,SESCO,II.1.1,La Pampa,AR-L,annual,2019,gas oil combustion consumption by to the public,248.1444,TJ,CH4,3.9,kg/TJ,967.76316,kg -5694cbe3-c419-3bc7-95d7-1ec67cc6050d,SESCO,II.1.1,La Pampa,AR-L,annual,2019,gas oil combustion consumption by to the public,248.1444,TJ,N2O,3.9,kg/TJ,967.76316,kg -868b457d-8b20-31b7-ae8c-d0d5f408032b,SESCO,II.1.1,La Rioja,AR-F,annual,2019,gas oil combustion consumption by to the public,160.33668,TJ,CO2,74100.0,kg/TJ,11880947.988,kg -97ca4e4e-9570-3ade-9bac-10779d94b44b,SESCO,II.1.1,La Rioja,AR-F,annual,2019,gas oil combustion consumption by to the public,160.33668,TJ,CH4,3.9,kg/TJ,625.313052,kg -97ca4e4e-9570-3ade-9bac-10779d94b44b,SESCO,II.1.1,La Rioja,AR-F,annual,2019,gas oil combustion consumption by to the public,160.33668,TJ,N2O,3.9,kg/TJ,625.313052,kg -b9e4e636-cf5e-359c-a098-40c1b8188dbf,SESCO,II.1.1,Mendoza,AR-M,annual,2019,gas oil combustion consumption by to the public,922.2519599999999,TJ,CO2,74100.0,kg/TJ,68338870.236,kg -7723b653-5fb2-3f09-a052-e80f28d1bb8c,SESCO,II.1.1,Mendoza,AR-M,annual,2019,gas oil combustion consumption by to the public,922.2519599999999,TJ,CH4,3.9,kg/TJ,3596.782644,kg -7723b653-5fb2-3f09-a052-e80f28d1bb8c,SESCO,II.1.1,Mendoza,AR-M,annual,2019,gas oil combustion consumption by to the public,922.2519599999999,TJ,N2O,3.9,kg/TJ,3596.782644,kg -b8ad9f78-1ca9-3c5f-8ffc-864710b5b184,SESCO,II.1.1,Misiones,AR-N,annual,2019,gas oil combustion consumption by to the public,443.44524,TJ,CO2,74100.0,kg/TJ,32859292.284,kg -ed660632-7a02-3b15-8ad0-a1e27c71c704,SESCO,II.1.1,Misiones,AR-N,annual,2019,gas oil combustion consumption by to the public,443.44524,TJ,CH4,3.9,kg/TJ,1729.436436,kg -ed660632-7a02-3b15-8ad0-a1e27c71c704,SESCO,II.1.1,Misiones,AR-N,annual,2019,gas oil combustion consumption by to the public,443.44524,TJ,N2O,3.9,kg/TJ,1729.436436,kg -36b49ae3-a5f8-373e-a1b3-989cbcb28baa,SESCO,II.1.1,Neuquén,AR-Q,annual,2019,gas oil combustion consumption by to the public,1447.36452,TJ,CO2,74100.0,kg/TJ,107249710.93200001,kg -42cf7432-ef66-37aa-8e39-1eb0943e38b2,SESCO,II.1.1,Neuquén,AR-Q,annual,2019,gas oil combustion consumption by to the public,1447.36452,TJ,CH4,3.9,kg/TJ,5644.721628,kg -42cf7432-ef66-37aa-8e39-1eb0943e38b2,SESCO,II.1.1,Neuquén,AR-Q,annual,2019,gas oil combustion consumption by to the public,1447.36452,TJ,N2O,3.9,kg/TJ,5644.721628,kg -45a2aa6e-f108-38d4-a042-523077df7799,SESCO,II.1.1,Rio Negro,AR-R,annual,2019,gas oil combustion consumption by to the public,138.98976,TJ,CO2,74100.0,kg/TJ,10299141.216,kg -8cfff63b-dbac-3d0a-9475-6192be8fe12c,SESCO,II.1.1,Rio Negro,AR-R,annual,2019,gas oil combustion consumption by to the public,138.98976,TJ,CH4,3.9,kg/TJ,542.0600639999999,kg -8cfff63b-dbac-3d0a-9475-6192be8fe12c,SESCO,II.1.1,Rio Negro,AR-R,annual,2019,gas oil combustion consumption by to the public,138.98976,TJ,N2O,3.9,kg/TJ,542.0600639999999,kg -ad464c98-fb9e-399f-907e-b34cc96251d0,SESCO,II.1.1,Salta,AR-A,annual,2019,gas oil combustion consumption by to the public,162.93732,TJ,CO2,74100.0,kg/TJ,12073655.412,kg -37bb60c2-6e9c-321c-a772-9f5f29a1ae7d,SESCO,II.1.1,Salta,AR-A,annual,2019,gas oil combustion consumption by to the public,162.93732,TJ,CH4,3.9,kg/TJ,635.455548,kg -37bb60c2-6e9c-321c-a772-9f5f29a1ae7d,SESCO,II.1.1,Salta,AR-A,annual,2019,gas oil combustion consumption by to the public,162.93732,TJ,N2O,3.9,kg/TJ,635.455548,kg -f0b05197-d4d4-37cb-85bd-4444b1234873,SESCO,II.1.1,San Juan,AR-J,annual,2019,gas oil combustion consumption by to the public,125.01132,TJ,CO2,74100.0,kg/TJ,9263338.811999999,kg -a916370e-3de8-35ee-a6d7-4d0edfb782d4,SESCO,II.1.1,San Juan,AR-J,annual,2019,gas oil combustion consumption by to the public,125.01132,TJ,CH4,3.9,kg/TJ,487.544148,kg -a916370e-3de8-35ee-a6d7-4d0edfb782d4,SESCO,II.1.1,San Juan,AR-J,annual,2019,gas oil combustion consumption by to the public,125.01132,TJ,N2O,3.9,kg/TJ,487.544148,kg -3f0b6d26-0c5e-3ff3-98b8-59bf65e44187,SESCO,II.1.1,San Luis,AR-D,annual,2019,gas oil combustion consumption by to the public,117.42612,TJ,CO2,74100.0,kg/TJ,8701275.492,kg -bed23a5b-305b-3eec-9f0c-531732bc3605,SESCO,II.1.1,San Luis,AR-D,annual,2019,gas oil combustion consumption by to the public,117.42612,TJ,CH4,3.9,kg/TJ,457.961868,kg -bed23a5b-305b-3eec-9f0c-531732bc3605,SESCO,II.1.1,San Luis,AR-D,annual,2019,gas oil combustion consumption by to the public,117.42612,TJ,N2O,3.9,kg/TJ,457.961868,kg -c55fa3e9-21f4-3184-9816-059e3f1a7755,SESCO,II.1.1,Santa Fe,AR-S,annual,2019,gas oil combustion consumption by to the public,2164.6716,TJ,CO2,74100.0,kg/TJ,160402165.56,kg -a0666c88-001f-3f43-bd3c-a5e3b7366512,SESCO,II.1.1,Santa Fe,AR-S,annual,2019,gas oil combustion consumption by to the public,2164.6716,TJ,CH4,3.9,kg/TJ,8442.21924,kg -a0666c88-001f-3f43-bd3c-a5e3b7366512,SESCO,II.1.1,Santa Fe,AR-S,annual,2019,gas oil combustion consumption by to the public,2164.6716,TJ,N2O,3.9,kg/TJ,8442.21924,kg -9bf54077-0b8c-3136-b641-f0ea38c926e6,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2019,gas oil combustion consumption by to the public,244.74912,TJ,CO2,74100.0,kg/TJ,18135909.792,kg -3365bf3d-ca59-345c-8869-1a582b7907da,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2019,gas oil combustion consumption by to the public,244.74912,TJ,CH4,3.9,kg/TJ,954.521568,kg -3365bf3d-ca59-345c-8869-1a582b7907da,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2019,gas oil combustion consumption by to the public,244.74912,TJ,N2O,3.9,kg/TJ,954.521568,kg -72fbe5f8-d309-3f04-84d2-0f89438e75c9,SESCO,II.1.1,Tucuman,AR-T,annual,2019,gas oil combustion consumption by to the public,546.89292,TJ,CO2,74100.0,kg/TJ,40524765.372,kg -fb3ba4db-04e9-3e0a-b844-79cca2f6a6e5,SESCO,II.1.1,Tucuman,AR-T,annual,2019,gas oil combustion consumption by to the public,546.89292,TJ,CH4,3.9,kg/TJ,2132.882388,kg -fb3ba4db-04e9-3e0a-b844-79cca2f6a6e5,SESCO,II.1.1,Tucuman,AR-T,annual,2019,gas oil combustion consumption by to the public,546.89292,TJ,N2O,3.9,kg/TJ,2132.882388,kg -53068b17-7f7d-3d66-b6e0-1fe5c20067a1,SESCO,II.1.1,Entre Rios,AR-E,annual,2019,jet kerosene combustion consumption by to the public,2.7993169999999994,TJ,CO2,71500.0,kg/TJ,200151.16549999994,kg -e1abf008-5583-3e8b-9c97-9641b7d76a61,SESCO,II.1.1,Entre Rios,AR-E,annual,2019,jet kerosene combustion consumption by to the public,2.7993169999999994,TJ,CH4,0.5,kg/TJ,1.3996584999999997,kg -1d4d3e98-bc68-3373-b1dc-d7f46f43cafb,SESCO,II.1.1,Entre Rios,AR-E,annual,2019,jet kerosene combustion consumption by to the public,2.7993169999999994,TJ,N2O,2.0,kg/TJ,5.598633999999999,kg -1dbfdf65-3f0c-3d37-ad5f-35cb95e15ada,SESCO,I.3.1,Capital Federal,AR-C,annual,2019,gas oil combustion consumption by petrochemical industries,1.6254,TJ,CO2,74100.0,kg/TJ,120442.14,kg -8a5a880e-76fa-3139-9dd6-8fee00cb56be,SESCO,I.3.1,Capital Federal,AR-C,annual,2019,gas oil combustion consumption by petrochemical industries,1.6254,TJ,CH4,3.9,kg/TJ,6.33906,kg -8a5a880e-76fa-3139-9dd6-8fee00cb56be,SESCO,I.3.1,Capital Federal,AR-C,annual,2019,gas oil combustion consumption by petrochemical industries,1.6254,TJ,N2O,3.9,kg/TJ,6.33906,kg -a585d1a5-81f0-32da-b100-a6a499ccd105,SESCO,II.2.1,Buenos Aires,AR-B,annual,2019,gas oil combustion consumption by railway transport,310.88484,TJ,CO2,74100.0,kg/TJ,23036566.644,kg -f6abcecb-859e-32c3-aa1d-e8bd5a6882ff,SESCO,II.2.1,Buenos Aires,AR-B,annual,2019,gas oil combustion consumption by railway transport,310.88484,TJ,CH4,3.9,kg/TJ,1212.4508759999999,kg -f6abcecb-859e-32c3-aa1d-e8bd5a6882ff,SESCO,II.2.1,Buenos Aires,AR-B,annual,2019,gas oil combustion consumption by railway transport,310.88484,TJ,N2O,3.9,kg/TJ,1212.4508759999999,kg -9ccf3c96-3e1a-3f02-b3cb-bb1001b0cff5,SESCO,II.1.1,Buenos Aires,AR-B,annual,2019,gasoline combustion consumption by freight transport,10.4548,TJ,CO2,69300.0,kg/TJ,724517.64,kg -5679d7a9-54bd-3296-997d-d5e4dd9bbe09,SESCO,II.1.1,Buenos Aires,AR-B,annual,2019,gasoline combustion consumption by freight transport,10.4548,TJ,CH4,33.0,kg/TJ,345.0084,kg -a7c2c5a6-49ff-386a-b8b4-6b16735c7516,SESCO,II.1.1,Buenos Aires,AR-B,annual,2019,gasoline combustion consumption by freight transport,10.4548,TJ,N2O,3.2,kg/TJ,33.455360000000006,kg -a3c9f806-0a99-341d-8644-214c516fc440,SESCO,II.1.1,Santa Fe,AR-S,annual,2019,gasoline combustion consumption by freight transport,13.6001,TJ,CO2,69300.0,kg/TJ,942486.9299999999,kg -96802fc9-5dd0-3656-859b-04b36f6b73c6,SESCO,II.1.1,Santa Fe,AR-S,annual,2019,gasoline combustion consumption by freight transport,13.6001,TJ,CH4,33.0,kg/TJ,448.8033,kg -07e3055f-691f-35d3-b004-f2459ff5b5b8,SESCO,II.1.1,Santa Fe,AR-S,annual,2019,gasoline combustion consumption by freight transport,13.6001,TJ,N2O,3.2,kg/TJ,43.52032,kg -2addce6d-aa09-3284-aa21-aa801a89f69b,SESCO,II.1.1,Buenos Aires,AR-B,annual,2019,gas oil combustion consumption by freight transport,16.50684,TJ,CO2,74100.0,kg/TJ,1223156.844,kg -7541dbe3-2028-3efc-8dd4-696f4453ee03,SESCO,II.1.1,Buenos Aires,AR-B,annual,2019,gas oil combustion consumption by freight transport,16.50684,TJ,CH4,3.9,kg/TJ,64.376676,kg -7541dbe3-2028-3efc-8dd4-696f4453ee03,SESCO,II.1.1,Buenos Aires,AR-B,annual,2019,gas oil combustion consumption by freight transport,16.50684,TJ,N2O,3.9,kg/TJ,64.376676,kg -0bb82d60-dd94-3a05-856e-467dcc819397,SESCO,II.1.1,Capital Federal,AR-C,annual,2019,gas oil combustion consumption by freight transport,80.0058,TJ,CO2,74100.0,kg/TJ,5928429.779999999,kg -e6cefbb2-d3bd-3ab5-88c9-ab20760cfdf9,SESCO,II.1.1,Capital Federal,AR-C,annual,2019,gas oil combustion consumption by freight transport,80.0058,TJ,CH4,3.9,kg/TJ,312.02261999999996,kg -e6cefbb2-d3bd-3ab5-88c9-ab20760cfdf9,SESCO,II.1.1,Capital Federal,AR-C,annual,2019,gas oil combustion consumption by freight transport,80.0058,TJ,N2O,3.9,kg/TJ,312.02261999999996,kg -99030f57-bac2-3c46-a600-e28cd128e04d,SESCO,II.1.1,Córdoba,AR-X,annual,2019,gas oil combustion consumption by freight transport,47.06436,TJ,CO2,74100.0,kg/TJ,3487469.076,kg -5b950dc6-8053-3352-9a83-ec0d87f14e05,SESCO,II.1.1,Córdoba,AR-X,annual,2019,gas oil combustion consumption by freight transport,47.06436,TJ,CH4,3.9,kg/TJ,183.551004,kg -5b950dc6-8053-3352-9a83-ec0d87f14e05,SESCO,II.1.1,Córdoba,AR-X,annual,2019,gas oil combustion consumption by freight transport,47.06436,TJ,N2O,3.9,kg/TJ,183.551004,kg -0acb401a-4f87-3663-9956-d379b895d837,SESCO,II.1.1,Córdoba,AR-X,annual,2019,gas oil combustion consumption by freight transport,1.73376,TJ,CO2,74100.0,kg/TJ,128471.616,kg -13a54ffc-541b-3f8b-9df3-7f7e9fc2629c,SESCO,II.1.1,Córdoba,AR-X,annual,2019,gas oil combustion consumption by freight transport,1.73376,TJ,CH4,3.9,kg/TJ,6.761664,kg -13a54ffc-541b-3f8b-9df3-7f7e9fc2629c,SESCO,II.1.1,Córdoba,AR-X,annual,2019,gas oil combustion consumption by freight transport,1.73376,TJ,N2O,3.9,kg/TJ,6.761664,kg -1036d0e8-27ce-30a3-b4d0-87c3cbf7a1a0,SESCO,II.1.1,Buenos Aires,AR-B,annual,2019,gas oil combustion consumption by public passenger transport,4593.1998,TJ,CO2,74100.0,kg/TJ,340356105.18,kg -d80daf69-512d-34cc-bde9-86eb288d2d1e,SESCO,II.1.1,Buenos Aires,AR-B,annual,2019,gas oil combustion consumption by public passenger transport,4593.1998,TJ,CH4,3.9,kg/TJ,17913.47922,kg -d80daf69-512d-34cc-bde9-86eb288d2d1e,SESCO,II.1.1,Buenos Aires,AR-B,annual,2019,gas oil combustion consumption by public passenger transport,4593.1998,TJ,N2O,3.9,kg/TJ,17913.47922,kg -20395f7e-c89c-3989-a48d-c94e3f4a8880,SESCO,II.1.1,Capital Federal,AR-C,annual,2019,gas oil combustion consumption by public passenger transport,613.17312,TJ,CO2,74100.0,kg/TJ,45436128.192,kg -680d4cbd-9a68-3f9a-9cbd-7bc23f547c57,SESCO,II.1.1,Capital Federal,AR-C,annual,2019,gas oil combustion consumption by public passenger transport,613.17312,TJ,CH4,3.9,kg/TJ,2391.375168,kg -680d4cbd-9a68-3f9a-9cbd-7bc23f547c57,SESCO,II.1.1,Capital Federal,AR-C,annual,2019,gas oil combustion consumption by public passenger transport,613.17312,TJ,N2O,3.9,kg/TJ,2391.375168,kg -3d5e19fe-aaa7-3f2a-b457-d7093f801acc,SESCO,II.1.1,Misiones,AR-N,annual,2019,gas oil combustion consumption by public passenger transport,1.33644,TJ,CO2,74100.0,kg/TJ,99030.20400000001,kg -18e988ff-9101-3ad8-abd9-b0878e0c9fee,SESCO,II.1.1,Misiones,AR-N,annual,2019,gas oil combustion consumption by public passenger transport,1.33644,TJ,CH4,3.9,kg/TJ,5.212116,kg -18e988ff-9101-3ad8-abd9-b0878e0c9fee,SESCO,II.1.1,Misiones,AR-N,annual,2019,gas oil combustion consumption by public passenger transport,1.33644,TJ,N2O,3.9,kg/TJ,5.212116,kg -56d88f1e-207c-3db1-afbd-0a2cafa79c91,SESCO,II.1.1,Santa Fe,AR-S,annual,2019,gas oil combustion consumption by public passenger transport,20.84124,TJ,CO2,74100.0,kg/TJ,1544335.8839999998,kg -fe622026-227e-3a1d-8788-f54a5ccc0ed2,SESCO,II.1.1,Santa Fe,AR-S,annual,2019,gas oil combustion consumption by public passenger transport,20.84124,TJ,CH4,3.9,kg/TJ,81.280836,kg -fe622026-227e-3a1d-8788-f54a5ccc0ed2,SESCO,II.1.1,Santa Fe,AR-S,annual,2019,gas oil combustion consumption by public passenger transport,20.84124,TJ,N2O,3.9,kg/TJ,81.280836,kg -acc66805-6d73-3e98-9891-4841f885faff,SESCO,II.1.1,Buenos Aires,AR-B,annual,2019,gas oil combustion consumption by public passenger transport,1118.49192,TJ,CO2,74100.0,kg/TJ,82880251.272,kg -351c8f35-1d0a-3f0d-ae4c-fb1540825f16,SESCO,II.1.1,Buenos Aires,AR-B,annual,2019,gas oil combustion consumption by public passenger transport,1118.49192,TJ,CH4,3.9,kg/TJ,4362.118488,kg -351c8f35-1d0a-3f0d-ae4c-fb1540825f16,SESCO,II.1.1,Buenos Aires,AR-B,annual,2019,gas oil combustion consumption by public passenger transport,1118.49192,TJ,N2O,3.9,kg/TJ,4362.118488,kg -27998ae0-8112-346f-b5fe-f7d8994ae82d,SESCO,II.1.1,Capital Federal,AR-C,annual,2019,gas oil combustion consumption by public passenger transport,116.73984,TJ,CO2,74100.0,kg/TJ,8650422.144,kg -0cc3f360-27f9-3e24-a235-f8c02a3af675,SESCO,II.1.1,Capital Federal,AR-C,annual,2019,gas oil combustion consumption by public passenger transport,116.73984,TJ,CH4,3.9,kg/TJ,455.285376,kg -0cc3f360-27f9-3e24-a235-f8c02a3af675,SESCO,II.1.1,Capital Federal,AR-C,annual,2019,gas oil combustion consumption by public passenger transport,116.73984,TJ,N2O,3.9,kg/TJ,455.285376,kg -01194648-8f40-367f-a472-e28ab14a64e6,SESCO,II.1.1,Corrientes,AR-W,annual,2019,gas oil combustion consumption by public passenger transport,75.6714,TJ,CO2,74100.0,kg/TJ,5607250.74,kg -c93b47df-84ea-3bc2-9ac8-351757a13bf3,SESCO,II.1.1,Corrientes,AR-W,annual,2019,gas oil combustion consumption by public passenger transport,75.6714,TJ,CH4,3.9,kg/TJ,295.11846,kg -c93b47df-84ea-3bc2-9ac8-351757a13bf3,SESCO,II.1.1,Corrientes,AR-W,annual,2019,gas oil combustion consumption by public passenger transport,75.6714,TJ,N2O,3.9,kg/TJ,295.11846,kg -0aa16a84-f713-3a78-9e82-48d776626718,SESCO,II.1.1,Santa Fe,AR-S,annual,2019,gas oil combustion consumption by public passenger transport,38.50392,TJ,CO2,74100.0,kg/TJ,2853140.472,kg -4983bfc2-cf99-39aa-9b22-be12f13b2cc3,SESCO,II.1.1,Santa Fe,AR-S,annual,2019,gas oil combustion consumption by public passenger transport,38.50392,TJ,CH4,3.9,kg/TJ,150.165288,kg -4983bfc2-cf99-39aa-9b22-be12f13b2cc3,SESCO,II.1.1,Santa Fe,AR-S,annual,2019,gas oil combustion consumption by public passenger transport,38.50392,TJ,N2O,3.9,kg/TJ,150.165288,kg -2ef2d1b1-daa0-30d3-8f42-cb17a163503c,SESCO,II.5.1,Buenos Aires,AR-B,annual,2019,gas oil combustion consumption by agriculture machines,1328.3814473999998,TJ,CO2,74100.0,kg/TJ,98433065.25233999,kg -b8bac0cf-f044-3695-ba70-f4971713e9ff,SESCO,II.5.1,Buenos Aires,AR-B,annual,2019,gas oil combustion consumption by agriculture machines,1328.3814473999998,TJ,CH4,3.9,kg/TJ,5180.68764486,kg -b8bac0cf-f044-3695-ba70-f4971713e9ff,SESCO,II.5.1,Buenos Aires,AR-B,annual,2019,gas oil combustion consumption by agriculture machines,1328.3814473999998,TJ,N2O,3.9,kg/TJ,5180.68764486,kg -489a6051-5c25-30c7-acaa-4470cdcc8be2,SESCO,II.5.1,Capital Federal,AR-C,annual,2019,gas oil combustion consumption by agriculture machines,509.08499628,TJ,CO2,74100.0,kg/TJ,37723198.224348,kg -5a53dce3-7eac-3596-8491-8c95a26b8bbf,SESCO,II.5.1,Capital Federal,AR-C,annual,2019,gas oil combustion consumption by agriculture machines,509.08499628,TJ,CH4,3.9,kg/TJ,1985.4314854919999,kg -5a53dce3-7eac-3596-8491-8c95a26b8bbf,SESCO,II.5.1,Capital Federal,AR-C,annual,2019,gas oil combustion consumption by agriculture machines,509.08499628,TJ,N2O,3.9,kg/TJ,1985.4314854919999,kg -1a8c5da9-e690-34a0-9761-8a2cc0df9f1b,SESCO,II.5.1,Corrientes,AR-W,annual,2019,gas oil combustion consumption by agriculture machines,0.6120534,TJ,CO2,74100.0,kg/TJ,45353.15694,kg -3e42ede9-c747-3694-b18a-c40bd193b580,SESCO,II.5.1,Corrientes,AR-W,annual,2019,gas oil combustion consumption by agriculture machines,0.6120534,TJ,CH4,3.9,kg/TJ,2.38700826,kg -3e42ede9-c747-3694-b18a-c40bd193b580,SESCO,II.5.1,Corrientes,AR-W,annual,2019,gas oil combustion consumption by agriculture machines,0.6120534,TJ,N2O,3.9,kg/TJ,2.38700826,kg -f78d3def-f26d-34cc-8b60-fe320461d5eb,SESCO,II.5.1,Córdoba,AR-X,annual,2019,gas oil combustion consumption by agriculture machines,404.01383064,TJ,CO2,74100.0,kg/TJ,29937424.850424,kg -a72286e4-9456-3371-9b40-5a8ba4384136,SESCO,II.5.1,Córdoba,AR-X,annual,2019,gas oil combustion consumption by agriculture machines,404.01383064,TJ,CH4,3.9,kg/TJ,1575.6539394959998,kg -a72286e4-9456-3371-9b40-5a8ba4384136,SESCO,II.5.1,Córdoba,AR-X,annual,2019,gas oil combustion consumption by agriculture machines,404.01383064,TJ,N2O,3.9,kg/TJ,1575.6539394959998,kg -475a743b-942c-3269-bb79-f78f268fecea,SESCO,II.5.1,Entre Rios,AR-E,annual,2019,gas oil combustion consumption by agriculture machines,198.82969176,TJ,CO2,74100.0,kg/TJ,14733280.159416,kg -567bd4a0-9a8d-369f-847f-ab61b7615ee9,SESCO,II.5.1,Entre Rios,AR-E,annual,2019,gas oil combustion consumption by agriculture machines,198.82969176,TJ,CH4,3.9,kg/TJ,775.4357978639999,kg -567bd4a0-9a8d-369f-847f-ab61b7615ee9,SESCO,II.5.1,Entre Rios,AR-E,annual,2019,gas oil combustion consumption by agriculture machines,198.82969176,TJ,N2O,3.9,kg/TJ,775.4357978639999,kg -8f48579b-6a4e-399e-b372-6090cd39e066,SESCO,II.5.1,Jujuy,AR-Y,annual,2019,gas oil combustion consumption by agriculture machines,11.7288864,TJ,CO2,74100.0,kg/TJ,869110.48224,kg -528af7f9-5044-3936-a365-e1a7c96b1410,SESCO,II.5.1,Jujuy,AR-Y,annual,2019,gas oil combustion consumption by agriculture machines,11.7288864,TJ,CH4,3.9,kg/TJ,45.74265696,kg -528af7f9-5044-3936-a365-e1a7c96b1410,SESCO,II.5.1,Jujuy,AR-Y,annual,2019,gas oil combustion consumption by agriculture machines,11.7288864,TJ,N2O,3.9,kg/TJ,45.74265696,kg -7ef3836f-3783-34e5-a083-a6524bd9ab1b,SESCO,II.5.1,La Pampa,AR-L,annual,2019,gas oil combustion consumption by agriculture machines,74.6914644,TJ,CO2,74100.0,kg/TJ,5534637.51204,kg -6bed319c-a342-3dd1-b25b-ba5d254d2e4e,SESCO,II.5.1,La Pampa,AR-L,annual,2019,gas oil combustion consumption by agriculture machines,74.6914644,TJ,CH4,3.9,kg/TJ,291.29671116,kg -6bed319c-a342-3dd1-b25b-ba5d254d2e4e,SESCO,II.5.1,La Pampa,AR-L,annual,2019,gas oil combustion consumption by agriculture machines,74.6914644,TJ,N2O,3.9,kg/TJ,291.29671116,kg -be8e137d-65de-3c9d-9e88-42b2ea97fd43,SESCO,II.5.1,Rio Negro,AR-R,annual,2019,gas oil combustion consumption by agriculture machines,24.459560999999997,TJ,CO2,74100.0,kg/TJ,1812453.4700999998,kg -9018e132-e0cd-3c84-80df-fa3820662775,SESCO,II.5.1,Rio Negro,AR-R,annual,2019,gas oil combustion consumption by agriculture machines,24.459560999999997,TJ,CH4,3.9,kg/TJ,95.39228789999999,kg -9018e132-e0cd-3c84-80df-fa3820662775,SESCO,II.5.1,Rio Negro,AR-R,annual,2019,gas oil combustion consumption by agriculture machines,24.459560999999997,TJ,N2O,3.9,kg/TJ,95.39228789999999,kg -240261b2-8218-3c79-a2cf-7a8189a7b2eb,SESCO,II.5.1,San Luis,AR-D,annual,2019,gas oil combustion consumption by agriculture machines,14.8568784,TJ,CO2,74100.0,kg/TJ,1100894.6894399999,kg -70a96b8b-316e-3967-8027-162bea18a89d,SESCO,II.5.1,San Luis,AR-D,annual,2019,gas oil combustion consumption by agriculture machines,14.8568784,TJ,CH4,3.9,kg/TJ,57.94182575999999,kg -70a96b8b-316e-3967-8027-162bea18a89d,SESCO,II.5.1,San Luis,AR-D,annual,2019,gas oil combustion consumption by agriculture machines,14.8568784,TJ,N2O,3.9,kg/TJ,57.94182575999999,kg -b9105b38-a3f4-3820-a42c-582f9d7f28df,SESCO,II.5.1,Santa Fe,AR-S,annual,2019,gas oil combustion consumption by agriculture machines,1030.56045288,TJ,CO2,74100.0,kg/TJ,76364529.55840799,kg -5c3c5ec5-22e9-3ce4-bed0-66c5c6406efb,SESCO,II.5.1,Santa Fe,AR-S,annual,2019,gas oil combustion consumption by agriculture machines,1030.56045288,TJ,CH4,3.9,kg/TJ,4019.185766232,kg -5c3c5ec5-22e9-3ce4-bed0-66c5c6406efb,SESCO,II.5.1,Santa Fe,AR-S,annual,2019,gas oil combustion consumption by agriculture machines,1030.56045288,TJ,N2O,3.9,kg/TJ,4019.185766232,kg -2c65636e-bc94-359a-ae1b-93499e7a4eef,SESCO,II.5.1,Santiago del Estero,AR-G,annual,2019,gas oil combustion consumption by agriculture machines,241.14228516,TJ,CO2,74100.0,kg/TJ,17868643.330356,kg -f2290ce5-4970-3c5f-b80f-c8a6cf44ae49,SESCO,II.5.1,Santiago del Estero,AR-G,annual,2019,gas oil combustion consumption by agriculture machines,241.14228516,TJ,CH4,3.9,kg/TJ,940.454912124,kg -f2290ce5-4970-3c5f-b80f-c8a6cf44ae49,SESCO,II.5.1,Santiago del Estero,AR-G,annual,2019,gas oil combustion consumption by agriculture machines,241.14228516,TJ,N2O,3.9,kg/TJ,940.454912124,kg -db359249-6c8d-3e04-85f5-68ac44e92ac9,SESCO,II.5.1,Tucuman,AR-T,annual,2019,gas oil combustion consumption by agriculture machines,150.46396428,TJ,CO2,74100.0,kg/TJ,11149379.753148,kg -57f629da-cabc-3522-85c6-4a0707701b05,SESCO,II.5.1,Tucuman,AR-T,annual,2019,gas oil combustion consumption by agriculture machines,150.46396428,TJ,CH4,3.9,kg/TJ,586.809460692,kg -57f629da-cabc-3522-85c6-4a0707701b05,SESCO,II.5.1,Tucuman,AR-T,annual,2019,gas oil combustion consumption by agriculture machines,150.46396428,TJ,N2O,3.9,kg/TJ,586.809460692,kg -e25b4e9d-5847-3b19-afde-36d75b38049c,SESCO,II.5.1,Buenos Aires,AR-B,annual,2019,gas oil combustion consumption by agriculture machines,171.07602287999998,TJ,CO2,74100.0,kg/TJ,12676733.295408,kg -f7152893-cd73-3777-9913-d48855a5906f,SESCO,II.5.1,Buenos Aires,AR-B,annual,2019,gas oil combustion consumption by agriculture machines,171.07602287999998,TJ,CH4,3.9,kg/TJ,667.1964892319999,kg -f7152893-cd73-3777-9913-d48855a5906f,SESCO,II.5.1,Buenos Aires,AR-B,annual,2019,gas oil combustion consumption by agriculture machines,171.07602287999998,TJ,N2O,3.9,kg/TJ,667.1964892319999,kg -986436a3-d428-3d95-9e39-649f16f0bc6e,SESCO,II.5.1,Capital Federal,AR-C,annual,2019,gas oil combustion consumption by agriculture machines,48.239740919999996,TJ,CO2,74100.0,kg/TJ,3574564.8021719996,kg -6076c811-ca59-3f27-a441-1603d5619e37,SESCO,II.5.1,Capital Federal,AR-C,annual,2019,gas oil combustion consumption by agriculture machines,48.239740919999996,TJ,CH4,3.9,kg/TJ,188.13498958799997,kg -6076c811-ca59-3f27-a441-1603d5619e37,SESCO,II.5.1,Capital Federal,AR-C,annual,2019,gas oil combustion consumption by agriculture machines,48.239740919999996,TJ,N2O,3.9,kg/TJ,188.13498958799997,kg -c6491bf1-1af7-384d-8641-ce0f2555b5e8,SESCO,II.5.1,Corrientes,AR-W,annual,2019,gas oil combustion consumption by agriculture machines,0.7236280799999999,TJ,CO2,74100.0,kg/TJ,53620.840727999996,kg -b26dab7f-4c2a-3d82-b034-a5cbc78fd599,SESCO,II.5.1,Corrientes,AR-W,annual,2019,gas oil combustion consumption by agriculture machines,0.7236280799999999,TJ,CH4,3.9,kg/TJ,2.8221495119999997,kg -b26dab7f-4c2a-3d82-b034-a5cbc78fd599,SESCO,II.5.1,Corrientes,AR-W,annual,2019,gas oil combustion consumption by agriculture machines,0.7236280799999999,TJ,N2O,3.9,kg/TJ,2.8221495119999997,kg -19440ce0-51e4-3b96-b3fc-b7eba8df0e49,SESCO,II.5.1,Córdoba,AR-X,annual,2019,gas oil combustion consumption by agriculture machines,46.075286039999995,TJ,CO2,74100.0,kg/TJ,3414178.6955639995,kg -c2939a18-af12-3a95-8497-198a28b521b6,SESCO,II.5.1,Córdoba,AR-X,annual,2019,gas oil combustion consumption by agriculture machines,46.075286039999995,TJ,CH4,3.9,kg/TJ,179.69361555599997,kg -c2939a18-af12-3a95-8497-198a28b521b6,SESCO,II.5.1,Córdoba,AR-X,annual,2019,gas oil combustion consumption by agriculture machines,46.075286039999995,TJ,N2O,3.9,kg/TJ,179.69361555599997,kg -e744f0d1-9e79-35bf-b73e-3e78179ad562,SESCO,II.5.1,Entre Rios,AR-E,annual,2019,gas oil combustion consumption by agriculture machines,39.83158284,TJ,CO2,74100.0,kg/TJ,2951520.2884440003,kg -5b1aec61-24c1-394d-9d77-9237d145d2e1,SESCO,II.5.1,Entre Rios,AR-E,annual,2019,gas oil combustion consumption by agriculture machines,39.83158284,TJ,CH4,3.9,kg/TJ,155.343173076,kg -5b1aec61-24c1-394d-9d77-9237d145d2e1,SESCO,II.5.1,Entre Rios,AR-E,annual,2019,gas oil combustion consumption by agriculture machines,39.83158284,TJ,N2O,3.9,kg/TJ,155.343173076,kg -d56fe3cc-0fc9-3957-94ec-68ec6022d8e6,SESCO,II.5.1,Jujuy,AR-Y,annual,2019,gas oil combustion consumption by agriculture machines,33.81623028,TJ,CO2,74100.0,kg/TJ,2505782.663748,kg -85de1de1-2b09-3ee2-9515-62fc998bd153,SESCO,II.5.1,Jujuy,AR-Y,annual,2019,gas oil combustion consumption by agriculture machines,33.81623028,TJ,CH4,3.9,kg/TJ,131.883298092,kg -85de1de1-2b09-3ee2-9515-62fc998bd153,SESCO,II.5.1,Jujuy,AR-Y,annual,2019,gas oil combustion consumption by agriculture machines,33.81623028,TJ,N2O,3.9,kg/TJ,131.883298092,kg -5fb9286f-46d5-3b68-9c45-5ab78b94071e,SESCO,II.5.1,La Pampa,AR-L,annual,2019,gas oil combustion consumption by agriculture machines,9.022198079999999,TJ,CO2,74100.0,kg/TJ,668544.8777279999,kg -76f0e621-365b-350a-855d-19029babb7c5,SESCO,II.5.1,La Pampa,AR-L,annual,2019,gas oil combustion consumption by agriculture machines,9.022198079999999,TJ,CH4,3.9,kg/TJ,35.186572512,kg -76f0e621-365b-350a-855d-19029babb7c5,SESCO,II.5.1,La Pampa,AR-L,annual,2019,gas oil combustion consumption by agriculture machines,9.022198079999999,TJ,N2O,3.9,kg/TJ,35.186572512,kg -22de8862-56db-3aef-b5b5-513a0be04c1b,SESCO,II.5.1,Rio Negro,AR-R,annual,2019,gas oil combustion consumption by agriculture machines,44.92999308,TJ,CO2,74100.0,kg/TJ,3329312.487228,kg -3c9e95a9-ccdb-3a26-a8be-707085eb3a2d,SESCO,II.5.1,Rio Negro,AR-R,annual,2019,gas oil combustion consumption by agriculture machines,44.92999308,TJ,CH4,3.9,kg/TJ,175.226973012,kg -3c9e95a9-ccdb-3a26-a8be-707085eb3a2d,SESCO,II.5.1,Rio Negro,AR-R,annual,2019,gas oil combustion consumption by agriculture machines,44.92999308,TJ,N2O,3.9,kg/TJ,175.226973012,kg -1342453f-f844-32a6-bf03-8a0b4c5d618b,SESCO,II.5.1,San Luis,AR-D,annual,2019,gas oil combustion consumption by agriculture machines,4.761266159999999,TJ,CO2,74100.0,kg/TJ,352809.8224559999,kg -5ea44106-cac6-3e1e-b0f4-8966e918b810,SESCO,II.5.1,San Luis,AR-D,annual,2019,gas oil combustion consumption by agriculture machines,4.761266159999999,TJ,CH4,3.9,kg/TJ,18.568938023999994,kg -5ea44106-cac6-3e1e-b0f4-8966e918b810,SESCO,II.5.1,San Luis,AR-D,annual,2019,gas oil combustion consumption by agriculture machines,4.761266159999999,TJ,N2O,3.9,kg/TJ,18.568938023999994,kg -2d668400-14ab-34de-9acd-2d524a37ab80,SESCO,II.5.1,Santa Fe,AR-S,annual,2019,gas oil combustion consumption by agriculture machines,149.04918,TJ,CO2,74100.0,kg/TJ,11044544.238,kg -f203975a-3ef0-3738-b9df-02923ac7185f,SESCO,II.5.1,Santa Fe,AR-S,annual,2019,gas oil combustion consumption by agriculture machines,149.04918,TJ,CH4,3.9,kg/TJ,581.291802,kg -f203975a-3ef0-3738-b9df-02923ac7185f,SESCO,II.5.1,Santa Fe,AR-S,annual,2019,gas oil combustion consumption by agriculture machines,149.04918,TJ,N2O,3.9,kg/TJ,581.291802,kg -c0e47e27-35f1-31d3-883e-3bf872b938fc,SESCO,II.5.1,Santiago del Estero,AR-G,annual,2019,gas oil combustion consumption by agriculture machines,16.39436232,TJ,CO2,74100.0,kg/TJ,1214822.247912,kg -579b8ddf-b396-3982-9f7f-47b78f91da37,SESCO,II.5.1,Santiago del Estero,AR-G,annual,2019,gas oil combustion consumption by agriculture machines,16.39436232,TJ,CH4,3.9,kg/TJ,63.938013047999995,kg -579b8ddf-b396-3982-9f7f-47b78f91da37,SESCO,II.5.1,Santiago del Estero,AR-G,annual,2019,gas oil combustion consumption by agriculture machines,16.39436232,TJ,N2O,3.9,kg/TJ,63.938013047999995,kg -33a7b1cc-725f-3d85-8685-1748259dad00,SESCO,II.5.1,Tucuman,AR-T,annual,2019,gas oil combustion consumption by agriculture machines,38.03566032,TJ,CO2,74100.0,kg/TJ,2818442.429712,kg -6179fcde-802a-3f61-a01d-1e8c809a494a,SESCO,II.5.1,Tucuman,AR-T,annual,2019,gas oil combustion consumption by agriculture machines,38.03566032,TJ,CH4,3.9,kg/TJ,148.339075248,kg -6179fcde-802a-3f61-a01d-1e8c809a494a,SESCO,II.5.1,Tucuman,AR-T,annual,2019,gas oil combustion consumption by agriculture machines,38.03566032,TJ,N2O,3.9,kg/TJ,148.339075248,kg -83cd5b56-ae6b-34f6-997b-08db2be0b4b1,SESCO,II.1.1,Buenos Aires,AR-B,annual,2019,gasoline combustion consumption by to the public,43.893769,TJ,CO2,69300.0,kg/TJ,3041838.1917,kg -ae6cda9a-0a94-3f11-b5c6-14130734cb34,SESCO,II.1.1,Buenos Aires,AR-B,annual,2019,gasoline combustion consumption by to the public,43.893769,TJ,CH4,33.0,kg/TJ,1448.494377,kg -90caf7f8-b5d9-3854-9092-0f052f305ed3,SESCO,II.1.1,Buenos Aires,AR-B,annual,2019,gasoline combustion consumption by to the public,43.893769,TJ,N2O,3.2,kg/TJ,140.4600608,kg -be2746d4-6e64-3f76-a239-fb2d966eb63b,SESCO,II.1.1,Buenos Aires,AR-B,annual,2019,gas oil combustion consumption by to the public,12451.59363672,TJ,CO2,74100.0,kg/TJ,922663088.4809519,kg -8cf97d59-520b-3ec6-82eb-4e60faa27308,SESCO,II.1.1,Buenos Aires,AR-B,annual,2019,gas oil combustion consumption by to the public,12451.59363672,TJ,CH4,3.9,kg/TJ,48561.215183208,kg -8cf97d59-520b-3ec6-82eb-4e60faa27308,SESCO,II.1.1,Buenos Aires,AR-B,annual,2019,gas oil combustion consumption by to the public,12451.59363672,TJ,N2O,3.9,kg/TJ,48561.215183208,kg -e349e031-60ff-35fb-b26c-b0446001c2ee,SESCO,II.1.1,Capital Federal,AR-C,annual,2019,gas oil combustion consumption by to the public,216.08150676,TJ,CO2,74100.0,kg/TJ,16011639.650915999,kg -949dcd4d-3f69-3323-9265-af01c519a2cb,SESCO,II.1.1,Capital Federal,AR-C,annual,2019,gas oil combustion consumption by to the public,216.08150676,TJ,CH4,3.9,kg/TJ,842.717876364,kg -949dcd4d-3f69-3323-9265-af01c519a2cb,SESCO,II.1.1,Capital Federal,AR-C,annual,2019,gas oil combustion consumption by to the public,216.08150676,TJ,N2O,3.9,kg/TJ,842.717876364,kg -95375425-1490-3c33-be1a-629b284911c9,SESCO,II.1.1,Catamarca,AR-K,annual,2019,gas oil combustion consumption by to the public,5.2674879599999995,TJ,CO2,74100.0,kg/TJ,390320.857836,kg -0ffbdab0-f0b6-3f82-b91e-ef600b654c4a,SESCO,II.1.1,Catamarca,AR-K,annual,2019,gas oil combustion consumption by to the public,5.2674879599999995,TJ,CH4,3.9,kg/TJ,20.543203044,kg -0ffbdab0-f0b6-3f82-b91e-ef600b654c4a,SESCO,II.1.1,Catamarca,AR-K,annual,2019,gas oil combustion consumption by to the public,5.2674879599999995,TJ,N2O,3.9,kg/TJ,20.543203044,kg -8a112cf6-62e4-3acc-93d9-ee05fed8ef72,SESCO,II.1.1,Chaco,AR-H,annual,2019,gas oil combustion consumption by to the public,31.63324584,TJ,CO2,74100.0,kg/TJ,2344023.516744,kg -65188525-d4ca-3763-ac07-c5a6bd3e2fb4,SESCO,II.1.1,Chaco,AR-H,annual,2019,gas oil combustion consumption by to the public,31.63324584,TJ,CH4,3.9,kg/TJ,123.369658776,kg -65188525-d4ca-3763-ac07-c5a6bd3e2fb4,SESCO,II.1.1,Chaco,AR-H,annual,2019,gas oil combustion consumption by to the public,31.63324584,TJ,N2O,3.9,kg/TJ,123.369658776,kg -eeb64275-edaa-37b0-9077-21ce001c1bcc,SESCO,II.1.1,Chubut,AR-U,annual,2019,gas oil combustion consumption by to the public,60.56500464,TJ,CO2,74100.0,kg/TJ,4487866.843824,kg -b61af4af-c72a-38c9-9290-575350bdffbb,SESCO,II.1.1,Chubut,AR-U,annual,2019,gas oil combustion consumption by to the public,60.56500464,TJ,CH4,3.9,kg/TJ,236.20351809599998,kg -b61af4af-c72a-38c9-9290-575350bdffbb,SESCO,II.1.1,Chubut,AR-U,annual,2019,gas oil combustion consumption by to the public,60.56500464,TJ,N2O,3.9,kg/TJ,236.20351809599998,kg -4b26193e-0f19-385b-ae5d-c5d5713d6f9b,SESCO,II.1.1,Corrientes,AR-W,annual,2019,gas oil combustion consumption by to the public,143.16537648,TJ,CO2,74100.0,kg/TJ,10608554.397168,kg -563a5b4c-98a3-3a22-950e-ace6156edd2c,SESCO,II.1.1,Corrientes,AR-W,annual,2019,gas oil combustion consumption by to the public,143.16537648,TJ,CH4,3.9,kg/TJ,558.344968272,kg -563a5b4c-98a3-3a22-950e-ace6156edd2c,SESCO,II.1.1,Corrientes,AR-W,annual,2019,gas oil combustion consumption by to the public,143.16537648,TJ,N2O,3.9,kg/TJ,558.344968272,kg -2679e3b8-ccd2-335b-a19c-3ecf2421ece8,SESCO,II.1.1,Córdoba,AR-X,annual,2019,gas oil combustion consumption by to the public,559.4631856799999,TJ,CO2,74100.0,kg/TJ,41456222.058887996,kg -d3269cc7-9f71-3a24-b60a-6ff4fbf95e01,SESCO,II.1.1,Córdoba,AR-X,annual,2019,gas oil combustion consumption by to the public,559.4631856799999,TJ,CH4,3.9,kg/TJ,2181.9064241519995,kg -d3269cc7-9f71-3a24-b60a-6ff4fbf95e01,SESCO,II.1.1,Córdoba,AR-X,annual,2019,gas oil combustion consumption by to the public,559.4631856799999,TJ,N2O,3.9,kg/TJ,2181.9064241519995,kg -3d1e7ff0-f577-30ff-93bb-51690cd83ceb,SESCO,II.1.1,Entre Rios,AR-E,annual,2019,gas oil combustion consumption by to the public,814.4572380000001,TJ,CO2,74100.0,kg/TJ,60351281.33580001,kg -193a0c53-f61e-3d6c-9368-e322bc30eb27,SESCO,II.1.1,Entre Rios,AR-E,annual,2019,gas oil combustion consumption by to the public,814.4572380000001,TJ,CH4,3.9,kg/TJ,3176.3832282000003,kg -193a0c53-f61e-3d6c-9368-e322bc30eb27,SESCO,II.1.1,Entre Rios,AR-E,annual,2019,gas oil combustion consumption by to the public,814.4572380000001,TJ,N2O,3.9,kg/TJ,3176.3832282000003,kg -9a3495a0-87e0-3e39-9ead-cb7b023fd795,SESCO,II.1.1,Formosa,AR-P,annual,2019,gas oil combustion consumption by to the public,33.61063524,TJ,CO2,74100.0,kg/TJ,2490548.071284,kg -2a2201d0-7ad8-3bc2-8805-f9450a0c7bff,SESCO,II.1.1,Formosa,AR-P,annual,2019,gas oil combustion consumption by to the public,33.61063524,TJ,CH4,3.9,kg/TJ,131.081477436,kg -2a2201d0-7ad8-3bc2-8805-f9450a0c7bff,SESCO,II.1.1,Formosa,AR-P,annual,2019,gas oil combustion consumption by to the public,33.61063524,TJ,N2O,3.9,kg/TJ,131.081477436,kg -0469d764-8faf-306a-be4f-08a208dda2ea,SESCO,II.1.1,Jujuy,AR-Y,annual,2019,gas oil combustion consumption by to the public,36.038585520000005,TJ,CO2,74100.0,kg/TJ,2670459.187032,kg -f3b52714-37bb-3278-b4b1-1f5a173d2b6a,SESCO,II.1.1,Jujuy,AR-Y,annual,2019,gas oil combustion consumption by to the public,36.038585520000005,TJ,CH4,3.9,kg/TJ,140.55048352800003,kg -f3b52714-37bb-3278-b4b1-1f5a173d2b6a,SESCO,II.1.1,Jujuy,AR-Y,annual,2019,gas oil combustion consumption by to the public,36.038585520000005,TJ,N2O,3.9,kg/TJ,140.55048352800003,kg -8261aaab-95c8-3965-810e-56741cd9ecff,SESCO,II.1.1,La Pampa,AR-L,annual,2019,gas oil combustion consumption by to the public,720.88433256,TJ,CO2,74100.0,kg/TJ,53417529.042696,kg -02fcf332-7daa-3e2f-9064-c746997492de,SESCO,II.1.1,La Pampa,AR-L,annual,2019,gas oil combustion consumption by to the public,720.88433256,TJ,CH4,3.9,kg/TJ,2811.448896984,kg -02fcf332-7daa-3e2f-9064-c746997492de,SESCO,II.1.1,La Pampa,AR-L,annual,2019,gas oil combustion consumption by to the public,720.88433256,TJ,N2O,3.9,kg/TJ,2811.448896984,kg -70cf22ec-5210-364c-8c6f-ad0dd0b0462d,SESCO,II.1.1,Mendoza,AR-M,annual,2019,gas oil combustion consumption by to the public,85.61761992,TJ,CO2,74100.0,kg/TJ,6344265.636072,kg -1708a104-a24e-38f4-8b80-ae874be98a16,SESCO,II.1.1,Mendoza,AR-M,annual,2019,gas oil combustion consumption by to the public,85.61761992,TJ,CH4,3.9,kg/TJ,333.90871768799997,kg -1708a104-a24e-38f4-8b80-ae874be98a16,SESCO,II.1.1,Mendoza,AR-M,annual,2019,gas oil combustion consumption by to the public,85.61761992,TJ,N2O,3.9,kg/TJ,333.90871768799997,kg -c4af7ed3-b519-376c-88ef-b9339523362c,SESCO,II.1.1,Misiones,AR-N,annual,2019,gas oil combustion consumption by to the public,76.50609707999999,TJ,CO2,74100.0,kg/TJ,5669101.793627999,kg -db3db9c9-7b01-399d-8356-79f0eb6e7b48,SESCO,II.1.1,Misiones,AR-N,annual,2019,gas oil combustion consumption by to the public,76.50609707999999,TJ,CH4,3.9,kg/TJ,298.37377861199997,kg -db3db9c9-7b01-399d-8356-79f0eb6e7b48,SESCO,II.1.1,Misiones,AR-N,annual,2019,gas oil combustion consumption by to the public,76.50609707999999,TJ,N2O,3.9,kg/TJ,298.37377861199997,kg -be7ae4ab-b015-3038-902d-02c077930ee1,SESCO,II.1.1,Neuquén,AR-Q,annual,2019,gas oil combustion consumption by to the public,235.84142231999996,TJ,CO2,74100.0,kg/TJ,17475849.393912,kg -776d303d-6873-3485-a82f-255519c49fd4,SESCO,II.1.1,Neuquén,AR-Q,annual,2019,gas oil combustion consumption by to the public,235.84142231999996,TJ,CH4,3.9,kg/TJ,919.7815470479999,kg -776d303d-6873-3485-a82f-255519c49fd4,SESCO,II.1.1,Neuquén,AR-Q,annual,2019,gas oil combustion consumption by to the public,235.84142231999996,TJ,N2O,3.9,kg/TJ,919.7815470479999,kg -cc44e547-4a0c-3880-9388-1c1cdcce4ba3,SESCO,II.1.1,Rio Negro,AR-R,annual,2019,gas oil combustion consumption by to the public,444.07184975999996,TJ,CO2,74100.0,kg/TJ,32905724.067215998,kg -7e0772a1-7896-359f-9a1b-03abdfcf7c27,SESCO,II.1.1,Rio Negro,AR-R,annual,2019,gas oil combustion consumption by to the public,444.07184975999996,TJ,CH4,3.9,kg/TJ,1731.8802140639998,kg -7e0772a1-7896-359f-9a1b-03abdfcf7c27,SESCO,II.1.1,Rio Negro,AR-R,annual,2019,gas oil combustion consumption by to the public,444.07184975999996,TJ,N2O,3.9,kg/TJ,1731.8802140639998,kg -1bd8d5d6-36e2-38d8-96a8-5e306e35c8ee,SESCO,II.1.1,San Juan,AR-J,annual,2019,gas oil combustion consumption by to the public,53.2356426,TJ,CO2,74100.0,kg/TJ,3944761.11666,kg -5a62aa3e-f5ea-32cb-977a-b1713102792e,SESCO,II.1.1,San Juan,AR-J,annual,2019,gas oil combustion consumption by to the public,53.2356426,TJ,CH4,3.9,kg/TJ,207.61900613999998,kg -5a62aa3e-f5ea-32cb-977a-b1713102792e,SESCO,II.1.1,San Juan,AR-J,annual,2019,gas oil combustion consumption by to the public,53.2356426,TJ,N2O,3.9,kg/TJ,207.61900613999998,kg -d35850ae-5f1e-3673-8dc6-a588859fa7ab,SESCO,II.1.1,San Luis,AR-D,annual,2019,gas oil combustion consumption by to the public,68.78248524,TJ,CO2,74100.0,kg/TJ,5096782.156284,kg -fbd1d610-6e63-3099-83c6-f3a6dfd8c739,SESCO,II.1.1,San Luis,AR-D,annual,2019,gas oil combustion consumption by to the public,68.78248524,TJ,CH4,3.9,kg/TJ,268.251692436,kg -fbd1d610-6e63-3099-83c6-f3a6dfd8c739,SESCO,II.1.1,San Luis,AR-D,annual,2019,gas oil combustion consumption by to the public,68.78248524,TJ,N2O,3.9,kg/TJ,268.251692436,kg -5f8dece2-4c5d-345f-b325-f7825ac6f835,SESCO,II.1.1,Santa Fe,AR-S,annual,2019,gas oil combustion consumption by to the public,1065.35167032,TJ,CO2,74100.0,kg/TJ,78942558.770712,kg -5bc4f2b1-73e8-351d-a100-fc7d405bb8f4,SESCO,II.1.1,Santa Fe,AR-S,annual,2019,gas oil combustion consumption by to the public,1065.35167032,TJ,CH4,3.9,kg/TJ,4154.8715142480005,kg -5bc4f2b1-73e8-351d-a100-fc7d405bb8f4,SESCO,II.1.1,Santa Fe,AR-S,annual,2019,gas oil combustion consumption by to the public,1065.35167032,TJ,N2O,3.9,kg/TJ,4154.8715142480005,kg -142516be-3730-3c7d-b3f2-51ab637c582c,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2019,gas oil combustion consumption by to the public,465.12471684,TJ,CO2,74100.0,kg/TJ,34465741.517844,kg -27b31334-a63f-30ba-bbd2-168716b9664c,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2019,gas oil combustion consumption by to the public,465.12471684,TJ,CH4,3.9,kg/TJ,1813.986395676,kg -27b31334-a63f-30ba-bbd2-168716b9664c,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2019,gas oil combustion consumption by to the public,465.12471684,TJ,N2O,3.9,kg/TJ,1813.986395676,kg -f9cb4a13-03bf-3b97-98b4-034851d6b28e,SESCO,II.1.1,Tucuman,AR-T,annual,2019,gas oil combustion consumption by to the public,30.35214168,TJ,CO2,74100.0,kg/TJ,2249093.698488,kg -97b36e6f-6b8a-381e-aa8d-62782a61bcfe,SESCO,II.1.1,Tucuman,AR-T,annual,2019,gas oil combustion consumption by to the public,30.35214168,TJ,CH4,3.9,kg/TJ,118.373352552,kg -97b36e6f-6b8a-381e-aa8d-62782a61bcfe,SESCO,II.1.1,Tucuman,AR-T,annual,2019,gas oil combustion consumption by to the public,30.35214168,TJ,N2O,3.9,kg/TJ,118.373352552,kg -da15ba16-92fb-3554-afd0-653213b5f8a8,SESCO,II.1.1,Buenos Aires,AR-B,annual,2019,gas oil combustion consumption by to the public,2532.2382918,TJ,CO2,74100.0,kg/TJ,187638857.42238,kg -a9edc5a4-c250-3086-bd22-f5072dd38768,SESCO,II.1.1,Buenos Aires,AR-B,annual,2019,gas oil combustion consumption by to the public,2532.2382918,TJ,CH4,3.9,kg/TJ,9875.729338019999,kg -a9edc5a4-c250-3086-bd22-f5072dd38768,SESCO,II.1.1,Buenos Aires,AR-B,annual,2019,gas oil combustion consumption by to the public,2532.2382918,TJ,N2O,3.9,kg/TJ,9875.729338019999,kg -6b5964ab-2682-30cb-b8df-b46eb9242826,SESCO,II.1.1,Capital Federal,AR-C,annual,2019,gas oil combustion consumption by to the public,35.33626824,TJ,CO2,74100.0,kg/TJ,2618417.476584,kg -3fbaaaff-9c2d-3a98-b405-e128616c3386,SESCO,II.1.1,Capital Federal,AR-C,annual,2019,gas oil combustion consumption by to the public,35.33626824,TJ,CH4,3.9,kg/TJ,137.811446136,kg -3fbaaaff-9c2d-3a98-b405-e128616c3386,SESCO,II.1.1,Capital Federal,AR-C,annual,2019,gas oil combustion consumption by to the public,35.33626824,TJ,N2O,3.9,kg/TJ,137.811446136,kg -9bc285c9-8588-3dfb-ba40-a3f691950406,SESCO,II.1.1,Catamarca,AR-K,annual,2019,gas oil combustion consumption by to the public,1.29735816,TJ,CO2,74100.0,kg/TJ,96134.23965599999,kg -d4a2327f-ebf1-3d7a-98a7-a3c9e8629c45,SESCO,II.1.1,Catamarca,AR-K,annual,2019,gas oil combustion consumption by to the public,1.29735816,TJ,CH4,3.9,kg/TJ,5.0596968239999995,kg -d4a2327f-ebf1-3d7a-98a7-a3c9e8629c45,SESCO,II.1.1,Catamarca,AR-K,annual,2019,gas oil combustion consumption by to the public,1.29735816,TJ,N2O,3.9,kg/TJ,5.0596968239999995,kg -9a8a853d-93f0-3adb-8451-f3d5e257b45e,SESCO,II.1.1,Chaco,AR-H,annual,2019,gas oil combustion consumption by to the public,12.573372,TJ,CO2,74100.0,kg/TJ,931686.8652000001,kg -e6b87225-9066-3217-9b8e-d1813a2c1c14,SESCO,II.1.1,Chaco,AR-H,annual,2019,gas oil combustion consumption by to the public,12.573372,TJ,CH4,3.9,kg/TJ,49.0361508,kg -e6b87225-9066-3217-9b8e-d1813a2c1c14,SESCO,II.1.1,Chaco,AR-H,annual,2019,gas oil combustion consumption by to the public,12.573372,TJ,N2O,3.9,kg/TJ,49.0361508,kg -c2c5c11e-5c31-34f2-b32b-86cc5ccb66d2,SESCO,II.1.1,Chubut,AR-U,annual,2019,gas oil combustion consumption by to the public,20.44457016,TJ,CO2,74100.0,kg/TJ,1514942.648856,kg -e0561449-49dd-3126-91d3-1765e29e6d58,SESCO,II.1.1,Chubut,AR-U,annual,2019,gas oil combustion consumption by to the public,20.44457016,TJ,CH4,3.9,kg/TJ,79.73382362400001,kg -e0561449-49dd-3126-91d3-1765e29e6d58,SESCO,II.1.1,Chubut,AR-U,annual,2019,gas oil combustion consumption by to the public,20.44457016,TJ,N2O,3.9,kg/TJ,79.73382362400001,kg -0eccee66-a1af-3cb4-bbd3-a79b1496d2ec,SESCO,II.1.1,Corrientes,AR-W,annual,2019,gas oil combustion consumption by to the public,29.4020412,TJ,CO2,74100.0,kg/TJ,2178691.25292,kg -5e8f84a3-d805-38cb-b6b0-cf37c0174b38,SESCO,II.1.1,Corrientes,AR-W,annual,2019,gas oil combustion consumption by to the public,29.4020412,TJ,CH4,3.9,kg/TJ,114.66796068,kg -5e8f84a3-d805-38cb-b6b0-cf37c0174b38,SESCO,II.1.1,Corrientes,AR-W,annual,2019,gas oil combustion consumption by to the public,29.4020412,TJ,N2O,3.9,kg/TJ,114.66796068,kg -9f11f1c0-8a0b-3466-a543-a8f2e3fcab6e,SESCO,II.1.1,Córdoba,AR-X,annual,2019,gas oil combustion consumption by to the public,113.71800467999999,TJ,CO2,74100.0,kg/TJ,8426504.146788,kg -0c79808a-0ebc-3c83-93bb-4ef57a2d1357,SESCO,II.1.1,Córdoba,AR-X,annual,2019,gas oil combustion consumption by to the public,113.71800467999999,TJ,CH4,3.9,kg/TJ,443.50021825199997,kg -0c79808a-0ebc-3c83-93bb-4ef57a2d1357,SESCO,II.1.1,Córdoba,AR-X,annual,2019,gas oil combustion consumption by to the public,113.71800467999999,TJ,N2O,3.9,kg/TJ,443.50021825199997,kg -7252cac8-1ee8-3b6f-b747-fda6edbd3c76,SESCO,II.1.1,Entre Rios,AR-E,annual,2019,gas oil combustion consumption by to the public,150.34350408,TJ,CO2,74100.0,kg/TJ,11140453.652328,kg -337824cf-23f9-375b-ab08-fc9be6057666,SESCO,II.1.1,Entre Rios,AR-E,annual,2019,gas oil combustion consumption by to the public,150.34350408,TJ,CH4,3.9,kg/TJ,586.339665912,kg -337824cf-23f9-375b-ab08-fc9be6057666,SESCO,II.1.1,Entre Rios,AR-E,annual,2019,gas oil combustion consumption by to the public,150.34350408,TJ,N2O,3.9,kg/TJ,586.339665912,kg -c3624102-84a7-3f5f-9652-6481329d2ba8,SESCO,II.1.1,Formosa,AR-P,annual,2019,gas oil combustion consumption by to the public,1.2234205200000001,TJ,CO2,74100.0,kg/TJ,90655.46053200001,kg -0656dda9-d7fe-3243-9a4d-e85550ad1e9c,SESCO,II.1.1,Formosa,AR-P,annual,2019,gas oil combustion consumption by to the public,1.2234205200000001,TJ,CH4,3.9,kg/TJ,4.771340028,kg -0656dda9-d7fe-3243-9a4d-e85550ad1e9c,SESCO,II.1.1,Formosa,AR-P,annual,2019,gas oil combustion consumption by to the public,1.2234205200000001,TJ,N2O,3.9,kg/TJ,4.771340028,kg -eaa9a629-1657-3c23-9779-472ea099e90f,SESCO,II.1.1,Jujuy,AR-Y,annual,2019,gas oil combustion consumption by to the public,7.800475199999999,TJ,CO2,74100.0,kg/TJ,578015.2123199999,kg -9da5586c-0c91-30c2-befa-fa57d1d999c3,SESCO,II.1.1,Jujuy,AR-Y,annual,2019,gas oil combustion consumption by to the public,7.800475199999999,TJ,CH4,3.9,kg/TJ,30.421853279999997,kg -9da5586c-0c91-30c2-befa-fa57d1d999c3,SESCO,II.1.1,Jujuy,AR-Y,annual,2019,gas oil combustion consumption by to the public,7.800475199999999,TJ,N2O,3.9,kg/TJ,30.421853279999997,kg -fedf8cec-2252-30eb-97b4-4f72382c6ee0,SESCO,II.1.1,La Pampa,AR-L,annual,2019,gas oil combustion consumption by to the public,105.44594676,TJ,CO2,74100.0,kg/TJ,7813544.654916,kg -15a8a7a6-fce5-3b6a-b61c-4215e2f8e8f5,SESCO,II.1.1,La Pampa,AR-L,annual,2019,gas oil combustion consumption by to the public,105.44594676,TJ,CH4,3.9,kg/TJ,411.23919236399996,kg -15a8a7a6-fce5-3b6a-b61c-4215e2f8e8f5,SESCO,II.1.1,La Pampa,AR-L,annual,2019,gas oil combustion consumption by to the public,105.44594676,TJ,N2O,3.9,kg/TJ,411.23919236399996,kg -ccd824c6-1994-3623-bdf3-935e5ecb056f,SESCO,II.1.1,Mendoza,AR-M,annual,2019,gas oil combustion consumption by to the public,17.41970076,TJ,CO2,74100.0,kg/TJ,1290799.8263160002,kg -f185a604-38ba-3d5a-ae6f-d2b78e1a3d32,SESCO,II.1.1,Mendoza,AR-M,annual,2019,gas oil combustion consumption by to the public,17.41970076,TJ,CH4,3.9,kg/TJ,67.936832964,kg -f185a604-38ba-3d5a-ae6f-d2b78e1a3d32,SESCO,II.1.1,Mendoza,AR-M,annual,2019,gas oil combustion consumption by to the public,17.41970076,TJ,N2O,3.9,kg/TJ,67.936832964,kg -2cf23f20-829e-351b-af7b-76c461fdde41,SESCO,II.1.1,Misiones,AR-N,annual,2019,gas oil combustion consumption by to the public,7.19178096,TJ,CO2,74100.0,kg/TJ,532910.969136,kg -648da51b-14f1-3fba-b6ca-9b6670aa5939,SESCO,II.1.1,Misiones,AR-N,annual,2019,gas oil combustion consumption by to the public,7.19178096,TJ,CH4,3.9,kg/TJ,28.047945744,kg -648da51b-14f1-3fba-b6ca-9b6670aa5939,SESCO,II.1.1,Misiones,AR-N,annual,2019,gas oil combustion consumption by to the public,7.19178096,TJ,N2O,3.9,kg/TJ,28.047945744,kg -4e7913bf-ee1e-393a-b036-a90c30a65079,SESCO,II.1.1,Neuquén,AR-Q,annual,2019,gas oil combustion consumption by to the public,205.66020048,TJ,CO2,74100.0,kg/TJ,15239420.855568,kg -c056de62-5d28-3025-945e-dcbdab1a7218,SESCO,II.1.1,Neuquén,AR-Q,annual,2019,gas oil combustion consumption by to the public,205.66020048,TJ,CH4,3.9,kg/TJ,802.0747818719999,kg -c056de62-5d28-3025-945e-dcbdab1a7218,SESCO,II.1.1,Neuquén,AR-Q,annual,2019,gas oil combustion consumption by to the public,205.66020048,TJ,N2O,3.9,kg/TJ,802.0747818719999,kg -e24ce71c-e230-3e29-bcbb-90a453d4c928,SESCO,II.1.1,Rio Negro,AR-R,annual,2019,gas oil combustion consumption by to the public,142.81327872,TJ,CO2,74100.0,kg/TJ,10582463.953151999,kg -e86f9782-7951-3a06-b7c5-8a9a2a7ec2e5,SESCO,II.1.1,Rio Negro,AR-R,annual,2019,gas oil combustion consumption by to the public,142.81327872,TJ,CH4,3.9,kg/TJ,556.971787008,kg -e86f9782-7951-3a06-b7c5-8a9a2a7ec2e5,SESCO,II.1.1,Rio Negro,AR-R,annual,2019,gas oil combustion consumption by to the public,142.81327872,TJ,N2O,3.9,kg/TJ,556.971787008,kg -c7464c9b-2288-3b35-be1c-f2619e6b45eb,SESCO,II.1.1,San Juan,AR-J,annual,2019,gas oil combustion consumption by to the public,21.01140132,TJ,CO2,74100.0,kg/TJ,1556944.837812,kg -a9d48159-77d2-392a-b519-988ff5ed7c63,SESCO,II.1.1,San Juan,AR-J,annual,2019,gas oil combustion consumption by to the public,21.01140132,TJ,CH4,3.9,kg/TJ,81.944465148,kg -a9d48159-77d2-392a-b519-988ff5ed7c63,SESCO,II.1.1,San Juan,AR-J,annual,2019,gas oil combustion consumption by to the public,21.01140132,TJ,N2O,3.9,kg/TJ,81.944465148,kg -bbdc4d11-6358-3443-af4b-e2ed8c9bc875,SESCO,II.1.1,San Luis,AR-D,annual,2019,gas oil combustion consumption by to the public,35.88821796,TJ,CO2,74100.0,kg/TJ,2659316.950836,kg -88248191-f087-3ab4-b33b-836fd20d3b2e,SESCO,II.1.1,San Luis,AR-D,annual,2019,gas oil combustion consumption by to the public,35.88821796,TJ,CH4,3.9,kg/TJ,139.964050044,kg -88248191-f087-3ab4-b33b-836fd20d3b2e,SESCO,II.1.1,San Luis,AR-D,annual,2019,gas oil combustion consumption by to the public,35.88821796,TJ,N2O,3.9,kg/TJ,139.964050044,kg -cbe48e1c-789d-3393-a284-2c54e689f594,SESCO,II.1.1,Santa Fe,AR-S,annual,2019,gas oil combustion consumption by to the public,230.16090216,TJ,CO2,74100.0,kg/TJ,17054922.850056,kg -7e9183cf-d5b8-3cfc-9e6b-010dc957624d,SESCO,II.1.1,Santa Fe,AR-S,annual,2019,gas oil combustion consumption by to the public,230.16090216,TJ,CH4,3.9,kg/TJ,897.627518424,kg -7e9183cf-d5b8-3cfc-9e6b-010dc957624d,SESCO,II.1.1,Santa Fe,AR-S,annual,2019,gas oil combustion consumption by to the public,230.16090216,TJ,N2O,3.9,kg/TJ,897.627518424,kg -b7bbf996-6c09-3e61-a718-fba4f0b21d40,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2019,gas oil combustion consumption by to the public,42.9121854,TJ,CO2,74100.0,kg/TJ,3179792.9381399998,kg -33315a7e-754a-30ff-afa7-d4a2f2bdd1e7,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2019,gas oil combustion consumption by to the public,42.9121854,TJ,CH4,3.9,kg/TJ,167.35752305999998,kg -33315a7e-754a-30ff-afa7-d4a2f2bdd1e7,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2019,gas oil combustion consumption by to the public,42.9121854,TJ,N2O,3.9,kg/TJ,167.35752305999998,kg -a4e817cd-71f6-3499-9639-f9cbb7ac7b1b,SESCO,II.1.1,Tucuman,AR-T,annual,2019,gas oil combustion consumption by to the public,3.24177,TJ,CO2,74100.0,kg/TJ,240215.15699999998,kg -4402198e-a7a3-38cc-bc18-714ae62b3a20,SESCO,II.1.1,Tucuman,AR-T,annual,2019,gas oil combustion consumption by to the public,3.24177,TJ,CH4,3.9,kg/TJ,12.642902999999999,kg -4402198e-a7a3-38cc-bc18-714ae62b3a20,SESCO,II.1.1,Tucuman,AR-T,annual,2019,gas oil combustion consumption by to the public,3.24177,TJ,N2O,3.9,kg/TJ,12.642902999999999,kg -13a0c585-9002-3b28-996f-104e0da302a8,SESCO,I.3.1,Neuquén,AR-Q,annual,2019,gas oil combustion consumption by petrochemical industries,0.65301348,TJ,CO2,74100.0,kg/TJ,48388.298868000005,kg -ae427a51-2003-3d40-9d9c-a6a62f6eee71,SESCO,I.3.1,Neuquén,AR-Q,annual,2019,gas oil combustion consumption by petrochemical industries,0.65301348,TJ,CH4,3.9,kg/TJ,2.546752572,kg -ae427a51-2003-3d40-9d9c-a6a62f6eee71,SESCO,I.3.1,Neuquén,AR-Q,annual,2019,gas oil combustion consumption by petrochemical industries,0.65301348,TJ,N2O,3.9,kg/TJ,2.546752572,kg -8b24dc96-f4c7-33a4-8fca-2be52288cb0f,SESCO,II.1.1,Buenos Aires,AR-B,annual,2019,gas oil combustion consumption by freight transport,18.32793816,TJ,CO2,74100.0,kg/TJ,1358100.2176559998,kg -c3ce5e42-fa1c-3756-8de5-be965e647f9b,SESCO,II.1.1,Buenos Aires,AR-B,annual,2019,gas oil combustion consumption by freight transport,18.32793816,TJ,CH4,3.9,kg/TJ,71.47895882399999,kg -c3ce5e42-fa1c-3756-8de5-be965e647f9b,SESCO,II.1.1,Buenos Aires,AR-B,annual,2019,gas oil combustion consumption by freight transport,18.32793816,TJ,N2O,3.9,kg/TJ,71.47895882399999,kg -1313222e-0736-324f-b75e-035c6a48f233,SESCO,II.1.1,Capital Federal,AR-C,annual,2019,gas oil combustion consumption by freight transport,4.1593624799999995,TJ,CO2,74100.0,kg/TJ,308208.759768,kg -c012747e-ce2a-387e-b557-f3bf6c122559,SESCO,II.1.1,Capital Federal,AR-C,annual,2019,gas oil combustion consumption by freight transport,4.1593624799999995,TJ,CH4,3.9,kg/TJ,16.221513671999997,kg -c012747e-ce2a-387e-b557-f3bf6c122559,SESCO,II.1.1,Capital Federal,AR-C,annual,2019,gas oil combustion consumption by freight transport,4.1593624799999995,TJ,N2O,3.9,kg/TJ,16.221513671999997,kg -7cf82bfc-3339-3b9f-99bd-6796553e0ef2,SESCO,II.1.1,Neuquén,AR-Q,annual,2019,gas oil combustion consumption by freight transport,2.0096806799999998,TJ,CO2,74100.0,kg/TJ,148917.33838799997,kg -dde510aa-be16-33ce-a5b4-47309ac63a9c,SESCO,II.1.1,Neuquén,AR-Q,annual,2019,gas oil combustion consumption by freight transport,2.0096806799999998,TJ,CH4,3.9,kg/TJ,7.837754651999999,kg -dde510aa-be16-33ce-a5b4-47309ac63a9c,SESCO,II.1.1,Neuquén,AR-Q,annual,2019,gas oil combustion consumption by freight transport,2.0096806799999998,TJ,N2O,3.9,kg/TJ,7.837754651999999,kg -f85fddac-8c6b-3581-aa12-0304ec3c66a2,SESCO,II.1.1,Rio Negro,AR-R,annual,2019,gas oil combustion consumption by freight transport,3.86657376,TJ,CO2,74100.0,kg/TJ,286513.115616,kg -78a20eb4-4a87-38f8-9d02-cac08ce0babc,SESCO,II.1.1,Rio Negro,AR-R,annual,2019,gas oil combustion consumption by freight transport,3.86657376,TJ,CH4,3.9,kg/TJ,15.079637664,kg -78a20eb4-4a87-38f8-9d02-cac08ce0babc,SESCO,II.1.1,Rio Negro,AR-R,annual,2019,gas oil combustion consumption by freight transport,3.86657376,TJ,N2O,3.9,kg/TJ,15.079637664,kg -cf2d90f8-9264-30bd-bddd-79f8abde52e8,SESCO,II.1.1,Santa Fe,AR-S,annual,2019,gas oil combustion consumption by freight transport,5.45690124,TJ,CO2,74100.0,kg/TJ,404356.381884,kg -09ef12eb-10f1-3781-befb-8136f649e9c4,SESCO,II.1.1,Santa Fe,AR-S,annual,2019,gas oil combustion consumption by freight transport,5.45690124,TJ,CH4,3.9,kg/TJ,21.281914836,kg -09ef12eb-10f1-3781-befb-8136f649e9c4,SESCO,II.1.1,Santa Fe,AR-S,annual,2019,gas oil combustion consumption by freight transport,5.45690124,TJ,N2O,3.9,kg/TJ,21.281914836,kg -00dc850c-a899-3331-9bb9-0d84c8c2ff80,SESCO,II.1.1,Tucuman,AR-T,annual,2019,gas oil combustion consumption by freight transport,2.31211344,TJ,CO2,74100.0,kg/TJ,171327.605904,kg -8f977460-da87-36d2-ba77-8324a3420c2a,SESCO,II.1.1,Tucuman,AR-T,annual,2019,gas oil combustion consumption by freight transport,2.31211344,TJ,CH4,3.9,kg/TJ,9.017242416,kg -8f977460-da87-36d2-ba77-8324a3420c2a,SESCO,II.1.1,Tucuman,AR-T,annual,2019,gas oil combustion consumption by freight transport,2.31211344,TJ,N2O,3.9,kg/TJ,9.017242416,kg -0aa24835-6b4d-34cc-a158-171e1d19267c,SESCO,II.1.1,Buenos Aires,AR-B,annual,2019,gas oil combustion consumption by freight transport,7.05506676,TJ,CO2,74100.0,kg/TJ,522780.446916,kg -1051e3d7-93e5-3f7f-8ff1-9399020e72ed,SESCO,II.1.1,Buenos Aires,AR-B,annual,2019,gas oil combustion consumption by freight transport,7.05506676,TJ,CH4,3.9,kg/TJ,27.514760363999997,kg -1051e3d7-93e5-3f7f-8ff1-9399020e72ed,SESCO,II.1.1,Buenos Aires,AR-B,annual,2019,gas oil combustion consumption by freight transport,7.05506676,TJ,N2O,3.9,kg/TJ,27.514760363999997,kg -2d5e04a3-da38-32ea-a90d-88c8678aafba,SESCO,II.1.1,Neuquén,AR-Q,annual,2019,gas oil combustion consumption by freight transport,1.91858604,TJ,CO2,74100.0,kg/TJ,142167.22556400002,kg -710f335a-5cb0-3263-8c44-d0686f4b4359,SESCO,II.1.1,Neuquén,AR-Q,annual,2019,gas oil combustion consumption by freight transport,1.91858604,TJ,CH4,3.9,kg/TJ,7.482485556,kg -710f335a-5cb0-3263-8c44-d0686f4b4359,SESCO,II.1.1,Neuquén,AR-Q,annual,2019,gas oil combustion consumption by freight transport,1.91858604,TJ,N2O,3.9,kg/TJ,7.482485556,kg -5d3992e4-342a-3c01-8f60-1af21aaf6f9c,SESCO,II.1.1,Rio Negro,AR-R,annual,2019,gas oil combustion consumption by freight transport,5.02642308,TJ,CO2,74100.0,kg/TJ,372457.950228,kg -d19081ad-384e-3ef7-a5e7-0112a1823d6f,SESCO,II.1.1,Rio Negro,AR-R,annual,2019,gas oil combustion consumption by freight transport,5.02642308,TJ,CH4,3.9,kg/TJ,19.603050011999997,kg -d19081ad-384e-3ef7-a5e7-0112a1823d6f,SESCO,II.1.1,Rio Negro,AR-R,annual,2019,gas oil combustion consumption by freight transport,5.02642308,TJ,N2O,3.9,kg/TJ,19.603050011999997,kg -7ca359ed-767f-37c1-ad95-b9cb9290f40f,SESCO,II.1.1,Santa Fe,AR-S,annual,2019,gas oil combustion consumption by freight transport,1.19633052,TJ,CO2,74100.0,kg/TJ,88648.091532,kg -4291f986-ceca-3811-a8c1-01598242467f,SESCO,II.1.1,Santa Fe,AR-S,annual,2019,gas oil combustion consumption by freight transport,1.19633052,TJ,CH4,3.9,kg/TJ,4.665689028,kg -4291f986-ceca-3811-a8c1-01598242467f,SESCO,II.1.1,Santa Fe,AR-S,annual,2019,gas oil combustion consumption by freight transport,1.19633052,TJ,N2O,3.9,kg/TJ,4.665689028,kg -13cd81c9-2300-3b21-8e0c-e911a942fa63,SESCO,II.1.1,Tucuman,AR-T,annual,2019,gas oil combustion consumption by freight transport,0.47216063999999996,TJ,CO2,74100.0,kg/TJ,34987.103424,kg -51e8c134-d3c8-33f4-8ef4-65e24ed7cb47,SESCO,II.1.1,Tucuman,AR-T,annual,2019,gas oil combustion consumption by freight transport,0.47216063999999996,TJ,CH4,3.9,kg/TJ,1.8414264959999997,kg -51e8c134-d3c8-33f4-8ef4-65e24ed7cb47,SESCO,II.1.1,Tucuman,AR-T,annual,2019,gas oil combustion consumption by freight transport,0.47216063999999996,TJ,N2O,3.9,kg/TJ,1.8414264959999997,kg -2588b552-8195-380e-8674-2c4ad4c97692,SESCO,II.1.1,Buenos Aires,AR-B,annual,2019,gas oil combustion consumption by public passenger transport,32.2266252,TJ,CO2,74100.0,kg/TJ,2387992.9273200002,kg -5e085532-52cd-33d5-a3e0-1e1f1853df99,SESCO,II.1.1,Buenos Aires,AR-B,annual,2019,gas oil combustion consumption by public passenger transport,32.2266252,TJ,CH4,3.9,kg/TJ,125.68383828,kg -5e085532-52cd-33d5-a3e0-1e1f1853df99,SESCO,II.1.1,Buenos Aires,AR-B,annual,2019,gas oil combustion consumption by public passenger transport,32.2266252,TJ,N2O,3.9,kg/TJ,125.68383828,kg -d1cb54c0-6575-3616-bf36-a56f995f2738,SESCO,II.1.1,Capital Federal,AR-C,annual,2019,gas oil combustion consumption by public passenger transport,4.641383879999999,TJ,CO2,74100.0,kg/TJ,343926.54550799995,kg -cb9497e2-17f1-3701-8a0c-82dd412718f9,SESCO,II.1.1,Capital Federal,AR-C,annual,2019,gas oil combustion consumption by public passenger transport,4.641383879999999,TJ,CH4,3.9,kg/TJ,18.101397131999995,kg -cb9497e2-17f1-3701-8a0c-82dd412718f9,SESCO,II.1.1,Capital Federal,AR-C,annual,2019,gas oil combustion consumption by public passenger transport,4.641383879999999,TJ,N2O,3.9,kg/TJ,18.101397131999995,kg -826882c3-59f4-38e5-8d24-89542cce8398,SESCO,II.1.1,Misiones,AR-N,annual,2019,gas oil combustion consumption by public passenger transport,0.61465404,TJ,CO2,74100.0,kg/TJ,45545.864364,kg -47cde35b-51ce-3ace-856e-cc514ab5910b,SESCO,II.1.1,Misiones,AR-N,annual,2019,gas oil combustion consumption by public passenger transport,0.61465404,TJ,CH4,3.9,kg/TJ,2.397150756,kg -47cde35b-51ce-3ace-856e-cc514ab5910b,SESCO,II.1.1,Misiones,AR-N,annual,2019,gas oil combustion consumption by public passenger transport,0.61465404,TJ,N2O,3.9,kg/TJ,2.397150756,kg -e9ac1974-5a7b-368a-a03f-b7300c4a03b4,SESCO,II.1.1,Neuquén,AR-Q,annual,2019,gas oil combustion consumption by public passenger transport,0.71420076,TJ,CO2,74100.0,kg/TJ,52922.276315999996,kg -aa6f7169-d1d5-33c8-a70d-2868a1a3f6eb,SESCO,II.1.1,Neuquén,AR-Q,annual,2019,gas oil combustion consumption by public passenger transport,0.71420076,TJ,CH4,3.9,kg/TJ,2.785382964,kg -aa6f7169-d1d5-33c8-a70d-2868a1a3f6eb,SESCO,II.1.1,Neuquén,AR-Q,annual,2019,gas oil combustion consumption by public passenger transport,0.71420076,TJ,N2O,3.9,kg/TJ,2.785382964,kg -1b3f12c5-f949-3e81-adfb-cf31a1aa3c3a,SESCO,II.1.1,Rio Negro,AR-R,annual,2019,gas oil combustion consumption by public passenger transport,3.0094100399999997,TJ,CO2,74100.0,kg/TJ,222997.28396399997,kg -19439293-96e1-3c11-a5be-e48f8d26c984,SESCO,II.1.1,Rio Negro,AR-R,annual,2019,gas oil combustion consumption by public passenger transport,3.0094100399999997,TJ,CH4,3.9,kg/TJ,11.736699155999998,kg -19439293-96e1-3c11-a5be-e48f8d26c984,SESCO,II.1.1,Rio Negro,AR-R,annual,2019,gas oil combustion consumption by public passenger transport,3.0094100399999997,TJ,N2O,3.9,kg/TJ,11.736699155999998,kg -3cfc7cac-1ee4-3c8d-843d-4e27fd573cce,SESCO,II.1.1,Santa Fe,AR-S,annual,2019,gas oil combustion consumption by public passenger transport,8.070616679999999,TJ,CO2,74100.0,kg/TJ,598032.6959879999,kg -4e83c883-6dee-323c-bd39-48525d53292d,SESCO,II.1.1,Santa Fe,AR-S,annual,2019,gas oil combustion consumption by public passenger transport,8.070616679999999,TJ,CH4,3.9,kg/TJ,31.475405051999996,kg -4e83c883-6dee-323c-bd39-48525d53292d,SESCO,II.1.1,Santa Fe,AR-S,annual,2019,gas oil combustion consumption by public passenger transport,8.070616679999999,TJ,N2O,3.9,kg/TJ,31.475405051999996,kg -9d9fc13c-8888-38e3-95b9-1d66fffecad8,SESCO,II.1.1,Buenos Aires,AR-B,annual,2019,gas oil combustion consumption by public passenger transport,19.0265712,TJ,CO2,74100.0,kg/TJ,1409868.92592,kg -0f5cb65e-108e-3b15-8cb0-94d5e32a1286,SESCO,II.1.1,Buenos Aires,AR-B,annual,2019,gas oil combustion consumption by public passenger transport,19.0265712,TJ,CH4,3.9,kg/TJ,74.20362768,kg -0f5cb65e-108e-3b15-8cb0-94d5e32a1286,SESCO,II.1.1,Buenos Aires,AR-B,annual,2019,gas oil combustion consumption by public passenger transport,19.0265712,TJ,N2O,3.9,kg/TJ,74.20362768,kg -870910fd-e614-3664-8b6f-616774cf392d,SESCO,II.1.1,Córdoba,AR-X,annual,2019,gas oil combustion consumption by public passenger transport,2.3454883200000003,TJ,CO2,74100.0,kg/TJ,173800.68451200004,kg -bb09dbfb-0ef6-35d4-94d7-3b5628869278,SESCO,II.1.1,Córdoba,AR-X,annual,2019,gas oil combustion consumption by public passenger transport,2.3454883200000003,TJ,CH4,3.9,kg/TJ,9.147404448000001,kg -bb09dbfb-0ef6-35d4-94d7-3b5628869278,SESCO,II.1.1,Córdoba,AR-X,annual,2019,gas oil combustion consumption by public passenger transport,2.3454883200000003,TJ,N2O,3.9,kg/TJ,9.147404448000001,kg -a2737738-a4fe-39d0-b506-c6ce46fcb03a,SESCO,II.1.1,Misiones,AR-N,annual,2019,gas oil combustion consumption by public passenger transport,1.9766308799999999,TJ,CO2,74100.0,kg/TJ,146468.34820799998,kg -717dd81f-3b6c-33e4-be4d-bed5d23d6a0f,SESCO,II.1.1,Misiones,AR-N,annual,2019,gas oil combustion consumption by public passenger transport,1.9766308799999999,TJ,CH4,3.9,kg/TJ,7.708860431999999,kg -717dd81f-3b6c-33e4-be4d-bed5d23d6a0f,SESCO,II.1.1,Misiones,AR-N,annual,2019,gas oil combustion consumption by public passenger transport,1.9766308799999999,TJ,N2O,3.9,kg/TJ,7.708860431999999,kg -9b5e5bee-cbdd-3fff-ad8d-79062806b9dd,SESCO,II.1.1,Neuquén,AR-Q,annual,2019,gas oil combustion consumption by public passenger transport,0.57748656,TJ,CO2,74100.0,kg/TJ,42791.754096,kg -cf9f3c43-7fc3-3461-a9c6-b281ac76910d,SESCO,II.1.1,Neuquén,AR-Q,annual,2019,gas oil combustion consumption by public passenger transport,0.57748656,TJ,CH4,3.9,kg/TJ,2.2521975839999997,kg -cf9f3c43-7fc3-3461-a9c6-b281ac76910d,SESCO,II.1.1,Neuquén,AR-Q,annual,2019,gas oil combustion consumption by public passenger transport,0.57748656,TJ,N2O,3.9,kg/TJ,2.2521975839999997,kg -bfcfe088-5db0-389d-91f5-93e420663942,SESCO,II.1.1,Rio Negro,AR-R,annual,2019,gas oil combustion consumption by public passenger transport,10.73598372,TJ,CO2,74100.0,kg/TJ,795536.393652,kg -f39d12b2-3fc7-394a-9408-313b3a29bd77,SESCO,II.1.1,Rio Negro,AR-R,annual,2019,gas oil combustion consumption by public passenger transport,10.73598372,TJ,CH4,3.9,kg/TJ,41.870336508,kg -f39d12b2-3fc7-394a-9408-313b3a29bd77,SESCO,II.1.1,Rio Negro,AR-R,annual,2019,gas oil combustion consumption by public passenger transport,10.73598372,TJ,N2O,3.9,kg/TJ,41.870336508,kg -9386d7e5-ce57-308b-8e2e-6e5c1f340a2a,SESCO,II.1.1,Santa Fe,AR-S,annual,2019,gas oil combustion consumption by public passenger transport,1.26264684,TJ,CO2,74100.0,kg/TJ,93562.130844,kg -e11fe348-bcf5-3250-97e3-147a0cc20443,SESCO,II.1.1,Santa Fe,AR-S,annual,2019,gas oil combustion consumption by public passenger transport,1.26264684,TJ,CH4,3.9,kg/TJ,4.924322676,kg -e11fe348-bcf5-3250-97e3-147a0cc20443,SESCO,II.1.1,Santa Fe,AR-S,annual,2019,gas oil combustion consumption by public passenger transport,1.26264684,TJ,N2O,3.9,kg/TJ,4.924322676,kg -1918616b-dde7-346a-a1dd-38f45320e7fa,SESCO,II.5.1,Buenos Aires,AR-B,annual,2019,gas oil combustion consumption by agriculture machines,8651.20956,TJ,CO2,74100.0,kg/TJ,641054628.3959999,kg -0f1857cc-587c-308b-bc6d-f22c0871584c,SESCO,II.5.1,Buenos Aires,AR-B,annual,2019,gas oil combustion consumption by agriculture machines,8651.20956,TJ,CH4,3.9,kg/TJ,33739.717284,kg -0f1857cc-587c-308b-bc6d-f22c0871584c,SESCO,II.5.1,Buenos Aires,AR-B,annual,2019,gas oil combustion consumption by agriculture machines,8651.20956,TJ,N2O,3.9,kg/TJ,33739.717284,kg -5354b64a-e011-3b02-9d05-2a56bb74ee8f,SESCO,II.5.1,Capital Federal,AR-C,annual,2019,gas oil combustion consumption by agriculture machines,265.98768,TJ,CO2,74100.0,kg/TJ,19709687.088,kg -88cad355-1057-3816-bda5-4273859d700c,SESCO,II.5.1,Capital Federal,AR-C,annual,2019,gas oil combustion consumption by agriculture machines,265.98768,TJ,CH4,3.9,kg/TJ,1037.351952,kg -88cad355-1057-3816-bda5-4273859d700c,SESCO,II.5.1,Capital Federal,AR-C,annual,2019,gas oil combustion consumption by agriculture machines,265.98768,TJ,N2O,3.9,kg/TJ,1037.351952,kg -f5fd2d5f-1dad-3374-b2a1-1ec5d6d0e8bd,SESCO,II.5.1,Catamarca,AR-K,annual,2019,gas oil combustion consumption by agriculture machines,201.29676,TJ,CO2,74100.0,kg/TJ,14916089.916000001,kg -220dd60d-e070-3437-a6c6-6988cc55e5ab,SESCO,II.5.1,Catamarca,AR-K,annual,2019,gas oil combustion consumption by agriculture machines,201.29676,TJ,CH4,3.9,kg/TJ,785.057364,kg -220dd60d-e070-3437-a6c6-6988cc55e5ab,SESCO,II.5.1,Catamarca,AR-K,annual,2019,gas oil combustion consumption by agriculture machines,201.29676,TJ,N2O,3.9,kg/TJ,785.057364,kg -747fc2b2-fb2f-3e08-a978-32ddd00cb379,SESCO,II.5.1,Chaco,AR-H,annual,2019,gas oil combustion consumption by agriculture machines,1043.3262,TJ,CO2,74100.0,kg/TJ,77310471.42,kg -e81cd35d-9be7-317f-a1cd-4e4d50bd928f,SESCO,II.5.1,Chaco,AR-H,annual,2019,gas oil combustion consumption by agriculture machines,1043.3262,TJ,CH4,3.9,kg/TJ,4068.9721799999998,kg -e81cd35d-9be7-317f-a1cd-4e4d50bd928f,SESCO,II.5.1,Chaco,AR-H,annual,2019,gas oil combustion consumption by agriculture machines,1043.3262,TJ,N2O,3.9,kg/TJ,4068.9721799999998,kg -b658273a-b701-395c-ba27-e1b6c46f2106,SESCO,II.5.1,Corrientes,AR-W,annual,2019,gas oil combustion consumption by agriculture machines,499.46736,TJ,CO2,74100.0,kg/TJ,37010531.376,kg -43d5b4ba-47b5-3c84-9fcb-43e10a8d873e,SESCO,II.5.1,Corrientes,AR-W,annual,2019,gas oil combustion consumption by agriculture machines,499.46736,TJ,CH4,3.9,kg/TJ,1947.9227039999998,kg -43d5b4ba-47b5-3c84-9fcb-43e10a8d873e,SESCO,II.5.1,Corrientes,AR-W,annual,2019,gas oil combustion consumption by agriculture machines,499.46736,TJ,N2O,3.9,kg/TJ,1947.9227039999998,kg -8146da84-3672-3930-be22-17c0534c4786,SESCO,II.5.1,Córdoba,AR-X,annual,2019,gas oil combustion consumption by agriculture machines,7613.59032,TJ,CO2,74100.0,kg/TJ,564167042.712,kg -57f52a61-8214-379a-9538-af44f7a6731c,SESCO,II.5.1,Córdoba,AR-X,annual,2019,gas oil combustion consumption by agriculture machines,7613.59032,TJ,CH4,3.9,kg/TJ,29693.002248,kg -57f52a61-8214-379a-9538-af44f7a6731c,SESCO,II.5.1,Córdoba,AR-X,annual,2019,gas oil combustion consumption by agriculture machines,7613.59032,TJ,N2O,3.9,kg/TJ,29693.002248,kg -5d445cbb-ef85-337d-bfc8-57c139e9d09b,SESCO,II.5.1,Entre Rios,AR-E,annual,2019,gas oil combustion consumption by agriculture machines,1888.28136,TJ,CO2,74100.0,kg/TJ,139921648.776,kg -1e0eb7cd-6196-3cdf-a245-43ba67c4efac,SESCO,II.5.1,Entre Rios,AR-E,annual,2019,gas oil combustion consumption by agriculture machines,1888.28136,TJ,CH4,3.9,kg/TJ,7364.297304,kg -1e0eb7cd-6196-3cdf-a245-43ba67c4efac,SESCO,II.5.1,Entre Rios,AR-E,annual,2019,gas oil combustion consumption by agriculture machines,1888.28136,TJ,N2O,3.9,kg/TJ,7364.297304,kg -632e8bdc-33e6-30e6-bd14-db4fc319f840,SESCO,II.5.1,Formosa,AR-P,annual,2019,gas oil combustion consumption by agriculture machines,240.41472,TJ,CO2,74100.0,kg/TJ,17814730.752,kg -f9eef900-2732-3ec8-89b6-0c0ed10ab307,SESCO,II.5.1,Formosa,AR-P,annual,2019,gas oil combustion consumption by agriculture machines,240.41472,TJ,CH4,3.9,kg/TJ,937.617408,kg -f9eef900-2732-3ec8-89b6-0c0ed10ab307,SESCO,II.5.1,Formosa,AR-P,annual,2019,gas oil combustion consumption by agriculture machines,240.41472,TJ,N2O,3.9,kg/TJ,937.617408,kg -8fb99443-13cf-342f-a9ff-be93ddf6730e,SESCO,II.5.1,Jujuy,AR-Y,annual,2019,gas oil combustion consumption by agriculture machines,586.4082,TJ,CO2,74100.0,kg/TJ,43452847.62,kg -623dcc0e-921d-3a6a-b12b-76877d47db6c,SESCO,II.5.1,Jujuy,AR-Y,annual,2019,gas oil combustion consumption by agriculture machines,586.4082,TJ,CH4,3.9,kg/TJ,2286.99198,kg -623dcc0e-921d-3a6a-b12b-76877d47db6c,SESCO,II.5.1,Jujuy,AR-Y,annual,2019,gas oil combustion consumption by agriculture machines,586.4082,TJ,N2O,3.9,kg/TJ,2286.99198,kg -4baf1cfd-35f2-3308-8068-c8eba3c84f3b,SESCO,II.5.1,La Pampa,AR-L,annual,2019,gas oil combustion consumption by agriculture machines,1603.07784,TJ,CO2,74100.0,kg/TJ,118788067.94399999,kg -312ec46a-d34b-326d-95c3-870e22a07b9c,SESCO,II.5.1,La Pampa,AR-L,annual,2019,gas oil combustion consumption by agriculture machines,1603.07784,TJ,CH4,3.9,kg/TJ,6252.003575999999,kg -312ec46a-d34b-326d-95c3-870e22a07b9c,SESCO,II.5.1,La Pampa,AR-L,annual,2019,gas oil combustion consumption by agriculture machines,1603.07784,TJ,N2O,3.9,kg/TJ,6252.003575999999,kg -9a9374f4-3b99-3230-98a3-fef24b7b0c2a,SESCO,II.5.1,La Rioja,AR-F,annual,2019,gas oil combustion consumption by agriculture machines,132.48816,TJ,CO2,74100.0,kg/TJ,9817372.656,kg -ad4135ee-55d7-3b85-8ca3-457f64b61779,SESCO,II.5.1,La Rioja,AR-F,annual,2019,gas oil combustion consumption by agriculture machines,132.48816,TJ,CH4,3.9,kg/TJ,516.7038239999999,kg -ad4135ee-55d7-3b85-8ca3-457f64b61779,SESCO,II.5.1,La Rioja,AR-F,annual,2019,gas oil combustion consumption by agriculture machines,132.48816,TJ,N2O,3.9,kg/TJ,516.7038239999999,kg -eca5b231-8ff3-35f1-b524-00ed811c64fb,SESCO,II.5.1,Mendoza,AR-M,annual,2019,gas oil combustion consumption by agriculture machines,2022.6116399999999,TJ,CO2,74100.0,kg/TJ,149875522.524,kg -9d18051c-bca1-3be8-afed-c7bcef52fe80,SESCO,II.5.1,Mendoza,AR-M,annual,2019,gas oil combustion consumption by agriculture machines,2022.6116399999999,TJ,CH4,3.9,kg/TJ,7888.185395999999,kg -9d18051c-bca1-3be8-afed-c7bcef52fe80,SESCO,II.5.1,Mendoza,AR-M,annual,2019,gas oil combustion consumption by agriculture machines,2022.6116399999999,TJ,N2O,3.9,kg/TJ,7888.185395999999,kg -f8099db1-e300-3ed1-b7af-48a1a13f6778,SESCO,II.5.1,Misiones,AR-N,annual,2019,gas oil combustion consumption by agriculture machines,1063.58952,TJ,CO2,74100.0,kg/TJ,78811983.432,kg -2a086791-9f7f-3f81-9b6f-c7dece386855,SESCO,II.5.1,Misiones,AR-N,annual,2019,gas oil combustion consumption by agriculture machines,1063.58952,TJ,CH4,3.9,kg/TJ,4147.9991279999995,kg -2a086791-9f7f-3f81-9b6f-c7dece386855,SESCO,II.5.1,Misiones,AR-N,annual,2019,gas oil combustion consumption by agriculture machines,1063.58952,TJ,N2O,3.9,kg/TJ,4147.9991279999995,kg -1c3d2384-4642-385c-8285-47414363bae2,SESCO,II.5.1,Rio Negro,AR-R,annual,2019,gas oil combustion consumption by agriculture machines,212.85515999999998,TJ,CO2,74100.0,kg/TJ,15772567.355999999,kg -22b4d8d7-5161-32c6-9892-35d7ee8dde10,SESCO,II.5.1,Rio Negro,AR-R,annual,2019,gas oil combustion consumption by agriculture machines,212.85515999999998,TJ,CH4,3.9,kg/TJ,830.1351239999999,kg -22b4d8d7-5161-32c6-9892-35d7ee8dde10,SESCO,II.5.1,Rio Negro,AR-R,annual,2019,gas oil combustion consumption by agriculture machines,212.85515999999998,TJ,N2O,3.9,kg/TJ,830.1351239999999,kg -162f43cb-5334-3681-a513-189571a4e215,SESCO,II.5.1,Salta,AR-A,annual,2019,gas oil combustion consumption by agriculture machines,1617.92316,TJ,CO2,74100.0,kg/TJ,119888106.156,kg -0838d0ff-5e42-340b-a9b4-7061ae80c468,SESCO,II.5.1,Salta,AR-A,annual,2019,gas oil combustion consumption by agriculture machines,1617.92316,TJ,CH4,3.9,kg/TJ,6309.900324,kg -0838d0ff-5e42-340b-a9b4-7061ae80c468,SESCO,II.5.1,Salta,AR-A,annual,2019,gas oil combustion consumption by agriculture machines,1617.92316,TJ,N2O,3.9,kg/TJ,6309.900324,kg -d91e9969-3a7b-3f30-8092-d50d860f604e,SESCO,II.5.1,San Juan,AR-J,annual,2019,gas oil combustion consumption by agriculture machines,583.22964,TJ,CO2,74100.0,kg/TJ,43217316.324,kg -233f05be-3732-3016-bda5-f07658ab00e5,SESCO,II.5.1,San Juan,AR-J,annual,2019,gas oil combustion consumption by agriculture machines,583.22964,TJ,CH4,3.9,kg/TJ,2274.595596,kg -233f05be-3732-3016-bda5-f07658ab00e5,SESCO,II.5.1,San Juan,AR-J,annual,2019,gas oil combustion consumption by agriculture machines,583.22964,TJ,N2O,3.9,kg/TJ,2274.595596,kg -4095e60d-9e01-3841-93f2-6d426c3971d1,SESCO,II.5.1,San Luis,AR-D,annual,2019,gas oil combustion consumption by agriculture machines,388.32612,TJ,CO2,74100.0,kg/TJ,28774965.492,kg -2de3f7e8-1db7-30bb-bee4-16c61e5a30d0,SESCO,II.5.1,San Luis,AR-D,annual,2019,gas oil combustion consumption by agriculture machines,388.32612,TJ,CH4,3.9,kg/TJ,1514.471868,kg -2de3f7e8-1db7-30bb-bee4-16c61e5a30d0,SESCO,II.5.1,San Luis,AR-D,annual,2019,gas oil combustion consumption by agriculture machines,388.32612,TJ,N2O,3.9,kg/TJ,1514.471868,kg -cfabf44b-ebb6-3925-a91b-53197306221d,SESCO,II.5.1,Santa Fe,AR-S,annual,2019,gas oil combustion consumption by agriculture machines,6961.0102799999995,TJ,CO2,74100.0,kg/TJ,515810861.74799997,kg -0be64889-426a-3130-bf14-dad7db5d10a1,SESCO,II.5.1,Santa Fe,AR-S,annual,2019,gas oil combustion consumption by agriculture machines,6961.0102799999995,TJ,CH4,3.9,kg/TJ,27147.940091999997,kg -0be64889-426a-3130-bf14-dad7db5d10a1,SESCO,II.5.1,Santa Fe,AR-S,annual,2019,gas oil combustion consumption by agriculture machines,6961.0102799999995,TJ,N2O,3.9,kg/TJ,27147.940091999997,kg -993dc037-85e5-3d08-873a-0eb7ad4a327f,SESCO,II.5.1,Santiago del Estero,AR-G,annual,2019,gas oil combustion consumption by agriculture machines,1817.08884,TJ,CO2,74100.0,kg/TJ,134646283.044,kg -45b0d4f4-4ac8-38af-9c2a-c915734af6be,SESCO,II.5.1,Santiago del Estero,AR-G,annual,2019,gas oil combustion consumption by agriculture machines,1817.08884,TJ,CH4,3.9,kg/TJ,7086.646475999999,kg -45b0d4f4-4ac8-38af-9c2a-c915734af6be,SESCO,II.5.1,Santiago del Estero,AR-G,annual,2019,gas oil combustion consumption by agriculture machines,1817.08884,TJ,N2O,3.9,kg/TJ,7086.646475999999,kg -efd6a92d-6c2c-3b85-a0cc-0e4d67e206d4,SESCO,II.5.1,Tucuman,AR-T,annual,2019,gas oil combustion consumption by agriculture machines,1061.13336,TJ,CO2,74100.0,kg/TJ,78629981.976,kg -2c19dba0-0203-3147-9f72-12dda9d4cdaf,SESCO,II.5.1,Tucuman,AR-T,annual,2019,gas oil combustion consumption by agriculture machines,1061.13336,TJ,CH4,3.9,kg/TJ,4138.420104,kg -2c19dba0-0203-3147-9f72-12dda9d4cdaf,SESCO,II.5.1,Tucuman,AR-T,annual,2019,gas oil combustion consumption by agriculture machines,1061.13336,TJ,N2O,3.9,kg/TJ,4138.420104,kg -7c406654-8a3d-3078-ae32-6f8d09fe7349,SESCO,II.5.1,Buenos Aires,AR-B,annual,2019,gas oil combustion consumption by agriculture machines,627.62112,TJ,CO2,74100.0,kg/TJ,46506724.992,kg -7e53c6e2-488a-33d9-a433-42a514bfbbe7,SESCO,II.5.1,Buenos Aires,AR-B,annual,2019,gas oil combustion consumption by agriculture machines,627.62112,TJ,CH4,3.9,kg/TJ,2447.722368,kg -7e53c6e2-488a-33d9-a433-42a514bfbbe7,SESCO,II.5.1,Buenos Aires,AR-B,annual,2019,gas oil combustion consumption by agriculture machines,627.62112,TJ,N2O,3.9,kg/TJ,2447.722368,kg -4b7df076-85f9-38cf-91af-92b980da1b92,SESCO,II.5.1,Capital Federal,AR-C,annual,2019,gas oil combustion consumption by agriculture machines,3.72036,TJ,CO2,74100.0,kg/TJ,275678.676,kg -e162d133-7c9d-3f7d-8e13-445b383c1047,SESCO,II.5.1,Capital Federal,AR-C,annual,2019,gas oil combustion consumption by agriculture machines,3.72036,TJ,CH4,3.9,kg/TJ,14.509404,kg -e162d133-7c9d-3f7d-8e13-445b383c1047,SESCO,II.5.1,Capital Federal,AR-C,annual,2019,gas oil combustion consumption by agriculture machines,3.72036,TJ,N2O,3.9,kg/TJ,14.509404,kg -7fdbff2b-2ca3-35c6-a643-145a24ca0213,SESCO,II.5.1,Catamarca,AR-K,annual,2019,gas oil combustion consumption by agriculture machines,20.48004,TJ,CO2,74100.0,kg/TJ,1517570.964,kg -86af5e03-58a3-3bad-b397-7e783ff4b308,SESCO,II.5.1,Catamarca,AR-K,annual,2019,gas oil combustion consumption by agriculture machines,20.48004,TJ,CH4,3.9,kg/TJ,79.87215599999999,kg -86af5e03-58a3-3bad-b397-7e783ff4b308,SESCO,II.5.1,Catamarca,AR-K,annual,2019,gas oil combustion consumption by agriculture machines,20.48004,TJ,N2O,3.9,kg/TJ,79.87215599999999,kg -31d8f175-3f9c-3dc0-9645-d5002582ef51,SESCO,II.5.1,Chaco,AR-H,annual,2019,gas oil combustion consumption by agriculture machines,74.2266,TJ,CO2,74100.0,kg/TJ,5500191.0600000005,kg -f1cb2b6b-a103-3861-a80e-ed01d4d40892,SESCO,II.5.1,Chaco,AR-H,annual,2019,gas oil combustion consumption by agriculture machines,74.2266,TJ,CH4,3.9,kg/TJ,289.48374,kg -f1cb2b6b-a103-3861-a80e-ed01d4d40892,SESCO,II.5.1,Chaco,AR-H,annual,2019,gas oil combustion consumption by agriculture machines,74.2266,TJ,N2O,3.9,kg/TJ,289.48374,kg -516f3a17-a4cd-3b8f-9467-6df247a2068a,SESCO,II.5.1,Corrientes,AR-W,annual,2019,gas oil combustion consumption by agriculture machines,34.89192,TJ,CO2,74100.0,kg/TJ,2585491.272,kg -aa2b233b-5479-3f2b-b5e8-d4f849f75576,SESCO,II.5.1,Corrientes,AR-W,annual,2019,gas oil combustion consumption by agriculture machines,34.89192,TJ,CH4,3.9,kg/TJ,136.078488,kg -aa2b233b-5479-3f2b-b5e8-d4f849f75576,SESCO,II.5.1,Corrientes,AR-W,annual,2019,gas oil combustion consumption by agriculture machines,34.89192,TJ,N2O,3.9,kg/TJ,136.078488,kg -5839820b-bcd8-33e3-91d9-4503d7205718,SESCO,II.5.1,Córdoba,AR-X,annual,2019,gas oil combustion consumption by agriculture machines,452.5836,TJ,CO2,74100.0,kg/TJ,33536444.759999998,kg -304aabb4-ed20-35d9-bfc2-943eadc07439,SESCO,II.5.1,Córdoba,AR-X,annual,2019,gas oil combustion consumption by agriculture machines,452.5836,TJ,CH4,3.9,kg/TJ,1765.07604,kg -304aabb4-ed20-35d9-bfc2-943eadc07439,SESCO,II.5.1,Córdoba,AR-X,annual,2019,gas oil combustion consumption by agriculture machines,452.5836,TJ,N2O,3.9,kg/TJ,1765.07604,kg -73d19a93-2c29-3295-b14a-f0346404c83d,SESCO,II.5.1,Entre Rios,AR-E,annual,2019,gas oil combustion consumption by agriculture machines,38.17884,TJ,CO2,74100.0,kg/TJ,2829052.044,kg -497eef85-a8bb-34d6-9077-083a2b3d6547,SESCO,II.5.1,Entre Rios,AR-E,annual,2019,gas oil combustion consumption by agriculture machines,38.17884,TJ,CH4,3.9,kg/TJ,148.897476,kg -497eef85-a8bb-34d6-9077-083a2b3d6547,SESCO,II.5.1,Entre Rios,AR-E,annual,2019,gas oil combustion consumption by agriculture machines,38.17884,TJ,N2O,3.9,kg/TJ,148.897476,kg -cd44232e-abf8-31cb-850b-00e476c1fc4f,SESCO,II.5.1,Formosa,AR-P,annual,2019,gas oil combustion consumption by agriculture machines,17.62656,TJ,CO2,74100.0,kg/TJ,1306128.0960000001,kg -21dea66b-8d48-3b92-a245-6a1d7d3d5dba,SESCO,II.5.1,Formosa,AR-P,annual,2019,gas oil combustion consumption by agriculture machines,17.62656,TJ,CH4,3.9,kg/TJ,68.743584,kg -21dea66b-8d48-3b92-a245-6a1d7d3d5dba,SESCO,II.5.1,Formosa,AR-P,annual,2019,gas oil combustion consumption by agriculture machines,17.62656,TJ,N2O,3.9,kg/TJ,68.743584,kg -ad4c02e9-92b4-3a21-bab4-a80fe9ff5935,SESCO,II.5.1,Jujuy,AR-Y,annual,2019,gas oil combustion consumption by agriculture machines,90.44448,TJ,CO2,74100.0,kg/TJ,6701935.968,kg -4f838bb8-2287-35ea-9b92-d88ddb432ad5,SESCO,II.5.1,Jujuy,AR-Y,annual,2019,gas oil combustion consumption by agriculture machines,90.44448,TJ,CH4,3.9,kg/TJ,352.733472,kg -4f838bb8-2287-35ea-9b92-d88ddb432ad5,SESCO,II.5.1,Jujuy,AR-Y,annual,2019,gas oil combustion consumption by agriculture machines,90.44448,TJ,N2O,3.9,kg/TJ,352.733472,kg -c823c75b-7a50-3877-9bb5-47da37cc7785,SESCO,II.5.1,La Pampa,AR-L,annual,2019,gas oil combustion consumption by agriculture machines,136.28076,TJ,CO2,74100.0,kg/TJ,10098404.316,kg -0317e3bb-186d-3bbf-8298-2ec4173f5d7b,SESCO,II.5.1,La Pampa,AR-L,annual,2019,gas oil combustion consumption by agriculture machines,136.28076,TJ,CH4,3.9,kg/TJ,531.494964,kg -0317e3bb-186d-3bbf-8298-2ec4173f5d7b,SESCO,II.5.1,La Pampa,AR-L,annual,2019,gas oil combustion consumption by agriculture machines,136.28076,TJ,N2O,3.9,kg/TJ,531.494964,kg -2def77de-d827-3a91-8c7b-01781a339f64,SESCO,II.5.1,Mendoza,AR-M,annual,2019,gas oil combustion consumption by agriculture machines,422.64011999999997,TJ,CO2,74100.0,kg/TJ,31317632.891999997,kg -bd2772c8-a006-380f-b692-0c00ed977522,SESCO,II.5.1,Mendoza,AR-M,annual,2019,gas oil combustion consumption by agriculture machines,422.64011999999997,TJ,CH4,3.9,kg/TJ,1648.2964679999998,kg -bd2772c8-a006-380f-b692-0c00ed977522,SESCO,II.5.1,Mendoza,AR-M,annual,2019,gas oil combustion consumption by agriculture machines,422.64011999999997,TJ,N2O,3.9,kg/TJ,1648.2964679999998,kg -a1d91659-b6d7-3a49-a507-fd9dc4263c6b,SESCO,II.5.1,Misiones,AR-N,annual,2019,gas oil combustion consumption by agriculture machines,105.86771999999999,TJ,CO2,74100.0,kg/TJ,7844798.051999999,kg -c941d19d-07f1-3e27-8c1c-f84927eb5c95,SESCO,II.5.1,Misiones,AR-N,annual,2019,gas oil combustion consumption by agriculture machines,105.86771999999999,TJ,CH4,3.9,kg/TJ,412.88410799999997,kg -c941d19d-07f1-3e27-8c1c-f84927eb5c95,SESCO,II.5.1,Misiones,AR-N,annual,2019,gas oil combustion consumption by agriculture machines,105.86771999999999,TJ,N2O,3.9,kg/TJ,412.88410799999997,kg -4b182174-d83b-3641-afb9-f736d0863df5,SESCO,II.5.1,Rio Negro,AR-R,annual,2019,gas oil combustion consumption by agriculture machines,45.583439999999996,TJ,CO2,74100.0,kg/TJ,3377732.9039999996,kg -88550b19-e6ed-36ec-8a17-bf280dacfced,SESCO,II.5.1,Rio Negro,AR-R,annual,2019,gas oil combustion consumption by agriculture machines,45.583439999999996,TJ,CH4,3.9,kg/TJ,177.77541599999998,kg -88550b19-e6ed-36ec-8a17-bf280dacfced,SESCO,II.5.1,Rio Negro,AR-R,annual,2019,gas oil combustion consumption by agriculture machines,45.583439999999996,TJ,N2O,3.9,kg/TJ,177.77541599999998,kg -928745e1-ce4e-3135-8551-9e259500be4e,SESCO,II.5.1,Salta,AR-A,annual,2019,gas oil combustion consumption by agriculture machines,180.70836,TJ,CO2,74100.0,kg/TJ,13390489.476,kg -27b0b13c-cdd5-37a9-b73f-4cd5f38eaee4,SESCO,II.5.1,Salta,AR-A,annual,2019,gas oil combustion consumption by agriculture machines,180.70836,TJ,CH4,3.9,kg/TJ,704.762604,kg -27b0b13c-cdd5-37a9-b73f-4cd5f38eaee4,SESCO,II.5.1,Salta,AR-A,annual,2019,gas oil combustion consumption by agriculture machines,180.70836,TJ,N2O,3.9,kg/TJ,704.762604,kg -7f193878-0fdd-3438-84a6-72c2014ce72e,SESCO,II.5.1,San Juan,AR-J,annual,2019,gas oil combustion consumption by agriculture machines,116.77596,TJ,CO2,74100.0,kg/TJ,8653098.636,kg -bd06e004-ba43-38c8-91cd-ea092d3b8f92,SESCO,II.5.1,San Juan,AR-J,annual,2019,gas oil combustion consumption by agriculture machines,116.77596,TJ,CH4,3.9,kg/TJ,455.426244,kg -bd06e004-ba43-38c8-91cd-ea092d3b8f92,SESCO,II.5.1,San Juan,AR-J,annual,2019,gas oil combustion consumption by agriculture machines,116.77596,TJ,N2O,3.9,kg/TJ,455.426244,kg -507c71f5-fa87-30ff-83c4-8f5eb7a3e101,SESCO,II.5.1,San Luis,AR-D,annual,2019,gas oil combustion consumption by agriculture machines,40.88784,TJ,CO2,74100.0,kg/TJ,3029788.9439999997,kg -32444d93-32cb-3be5-937d-2d64454de4f0,SESCO,II.5.1,San Luis,AR-D,annual,2019,gas oil combustion consumption by agriculture machines,40.88784,TJ,CH4,3.9,kg/TJ,159.46257599999998,kg -32444d93-32cb-3be5-937d-2d64454de4f0,SESCO,II.5.1,San Luis,AR-D,annual,2019,gas oil combustion consumption by agriculture machines,40.88784,TJ,N2O,3.9,kg/TJ,159.46257599999998,kg -0e2d9bfa-c814-35ae-aaf3-e3a805ffaba4,SESCO,II.5.1,Santa Fe,AR-S,annual,2019,gas oil combustion consumption by agriculture machines,395.94744,TJ,CO2,74100.0,kg/TJ,29339705.303999998,kg -b5b0784b-5664-346b-8623-f1d06d80afef,SESCO,II.5.1,Santa Fe,AR-S,annual,2019,gas oil combustion consumption by agriculture machines,395.94744,TJ,CH4,3.9,kg/TJ,1544.195016,kg -b5b0784b-5664-346b-8623-f1d06d80afef,SESCO,II.5.1,Santa Fe,AR-S,annual,2019,gas oil combustion consumption by agriculture machines,395.94744,TJ,N2O,3.9,kg/TJ,1544.195016,kg -f25c682e-49b0-3012-83e6-740c510efd58,SESCO,II.5.1,Santiago del Estero,AR-G,annual,2019,gas oil combustion consumption by agriculture machines,107.60148,TJ,CO2,74100.0,kg/TJ,7973269.668,kg -6ced76c4-f2d2-3fb4-b34b-b345490412ef,SESCO,II.5.1,Santiago del Estero,AR-G,annual,2019,gas oil combustion consumption by agriculture machines,107.60148,TJ,CH4,3.9,kg/TJ,419.64577199999997,kg -6ced76c4-f2d2-3fb4-b34b-b345490412ef,SESCO,II.5.1,Santiago del Estero,AR-G,annual,2019,gas oil combustion consumption by agriculture machines,107.60148,TJ,N2O,3.9,kg/TJ,419.64577199999997,kg -4663c7a7-2418-397d-ad79-b181c88f9a92,SESCO,II.5.1,Tucuman,AR-T,annual,2019,gas oil combustion consumption by agriculture machines,140.25396,TJ,CO2,74100.0,kg/TJ,10392818.436,kg -a828bdea-69ac-3e93-874a-32ea41db91d2,SESCO,II.5.1,Tucuman,AR-T,annual,2019,gas oil combustion consumption by agriculture machines,140.25396,TJ,CH4,3.9,kg/TJ,546.990444,kg -a828bdea-69ac-3e93-874a-32ea41db91d2,SESCO,II.5.1,Tucuman,AR-T,annual,2019,gas oil combustion consumption by agriculture machines,140.25396,TJ,N2O,3.9,kg/TJ,546.990444,kg -9f8b99e0-ddd2-3b0c-9f91-26e7dd3427ed,SESCO,II.5.1,Buenos Aires,AR-B,annual,2019,jet kerosene combustion consumption by agriculture machines,3.3969239999999994,TJ,CO2,71500.0,kg/TJ,242880.06599999996,kg -93ab0312-adfe-302c-8417-53b80290b4bc,SESCO,II.5.1,Buenos Aires,AR-B,annual,2019,jet kerosene combustion consumption by agriculture machines,3.3969239999999994,TJ,CH4,0.5,kg/TJ,1.6984619999999997,kg -0e5d1936-47e1-3ec4-a56e-13622f889997,SESCO,II.5.1,Buenos Aires,AR-B,annual,2019,jet kerosene combustion consumption by agriculture machines,3.3969239999999994,TJ,N2O,2.0,kg/TJ,6.793847999999999,kg -5a9ffcf1-b91f-36e8-89f1-3fb0028a1a19,SESCO,II.5.1,La Pampa,AR-L,annual,2019,jet kerosene combustion consumption by agriculture machines,0.25162399999999996,TJ,CO2,71500.0,kg/TJ,17991.115999999998,kg -9410b4d8-6c4a-3e6a-9be6-be1260d0e734,SESCO,II.5.1,La Pampa,AR-L,annual,2019,jet kerosene combustion consumption by agriculture machines,0.25162399999999996,TJ,CH4,0.5,kg/TJ,0.12581199999999998,kg -92c7eb1e-9101-3896-a91f-7fea236f6ab3,SESCO,II.5.1,La Pampa,AR-L,annual,2019,jet kerosene combustion consumption by agriculture machines,0.25162399999999996,TJ,N2O,2.0,kg/TJ,0.5032479999999999,kg -7611ed35-d2b6-3d56-a761-5cbcb7761925,SESCO,II.5.1,Rio Negro,AR-R,annual,2019,jet kerosene combustion consumption by agriculture machines,0.157265,TJ,CO2,71500.0,kg/TJ,11244.447499999998,kg -ffbd7c2c-8a92-3ee6-81fa-4a55d0d621d6,SESCO,II.5.1,Rio Negro,AR-R,annual,2019,jet kerosene combustion consumption by agriculture machines,0.157265,TJ,CH4,0.5,kg/TJ,0.0786325,kg -def8e062-54d5-3d9b-940d-c6228d4dd2f5,SESCO,II.5.1,Rio Negro,AR-R,annual,2019,jet kerosene combustion consumption by agriculture machines,0.157265,TJ,N2O,2.0,kg/TJ,0.31453,kg -539092fd-323a-3251-b258-8f24c9244356,SESCO,II.5.1,Santa Fe,AR-S,annual,2019,jet kerosene combustion consumption by agriculture machines,5.347009999999999,TJ,CO2,71500.0,kg/TJ,382311.21499999997,kg -21a7b5e0-dff2-358a-b2bf-5e190d19f789,SESCO,II.5.1,Santa Fe,AR-S,annual,2019,jet kerosene combustion consumption by agriculture machines,5.347009999999999,TJ,CH4,0.5,kg/TJ,2.6735049999999996,kg -82c9a8a8-dc30-3c97-be59-e62687458c5a,SESCO,II.5.1,Santa Fe,AR-S,annual,2019,jet kerosene combustion consumption by agriculture machines,5.347009999999999,TJ,N2O,2.0,kg/TJ,10.694019999999998,kg -8e7ad5e5-269e-3bfc-9ea9-3ac1e644574e,SESCO,II.1.1,Buenos Aires,AR-B,annual,2019,gas oil combustion consumption by to the public,28544.624639999998,TJ,CO2,74100.0,kg/TJ,2115156685.824,kg -11f6d6ee-6e27-3b0e-8a94-f0865ce5e0d3,SESCO,II.1.1,Buenos Aires,AR-B,annual,2019,gas oil combustion consumption by to the public,28544.624639999998,TJ,CH4,3.9,kg/TJ,111324.036096,kg -11f6d6ee-6e27-3b0e-8a94-f0865ce5e0d3,SESCO,II.1.1,Buenos Aires,AR-B,annual,2019,gas oil combustion consumption by to the public,28544.624639999998,TJ,N2O,3.9,kg/TJ,111324.036096,kg -4962fe78-56cf-3ca3-9a36-321a83ad88af,SESCO,II.1.1,Capital Federal,AR-C,annual,2019,gas oil combustion consumption by to the public,2926.47852,TJ,CO2,74100.0,kg/TJ,216852058.33200002,kg -17b09757-a1d9-37fe-a630-dd4b18cf016c,SESCO,II.1.1,Capital Federal,AR-C,annual,2019,gas oil combustion consumption by to the public,2926.47852,TJ,CH4,3.9,kg/TJ,11413.266228,kg -17b09757-a1d9-37fe-a630-dd4b18cf016c,SESCO,II.1.1,Capital Federal,AR-C,annual,2019,gas oil combustion consumption by to the public,2926.47852,TJ,N2O,3.9,kg/TJ,11413.266228,kg -542e6f56-5e01-336e-b974-1ba8bb0c671d,SESCO,II.1.1,Catamarca,AR-K,annual,2019,gas oil combustion consumption by to the public,281.69988,TJ,CO2,74100.0,kg/TJ,20873961.108,kg -37bafac4-1ad6-3c74-968a-d9ef261aaa28,SESCO,II.1.1,Catamarca,AR-K,annual,2019,gas oil combustion consumption by to the public,281.69988,TJ,CH4,3.9,kg/TJ,1098.629532,kg -37bafac4-1ad6-3c74-968a-d9ef261aaa28,SESCO,II.1.1,Catamarca,AR-K,annual,2019,gas oil combustion consumption by to the public,281.69988,TJ,N2O,3.9,kg/TJ,1098.629532,kg -46a6c6ad-74a1-3d60-8088-008180a81070,SESCO,II.1.1,Chaco,AR-H,annual,2019,gas oil combustion consumption by to the public,1716.0611999999999,TJ,CO2,74100.0,kg/TJ,127160134.91999999,kg -480f05cf-0c6a-3cd1-a1d7-35cf47fd8a43,SESCO,II.1.1,Chaco,AR-H,annual,2019,gas oil combustion consumption by to the public,1716.0611999999999,TJ,CH4,3.9,kg/TJ,6692.638679999999,kg -480f05cf-0c6a-3cd1-a1d7-35cf47fd8a43,SESCO,II.1.1,Chaco,AR-H,annual,2019,gas oil combustion consumption by to the public,1716.0611999999999,TJ,N2O,3.9,kg/TJ,6692.638679999999,kg -2f2631a5-6696-3fd6-b28a-4d1347a437c7,SESCO,II.1.1,Chubut,AR-U,annual,2019,gas oil combustion consumption by to the public,2691.5901599999997,TJ,CO2,74100.0,kg/TJ,199446830.85599998,kg -bb30f882-e19b-3c51-add8-cbb751fb4afa,SESCO,II.1.1,Chubut,AR-U,annual,2019,gas oil combustion consumption by to the public,2691.5901599999997,TJ,CH4,3.9,kg/TJ,10497.201624,kg -bb30f882-e19b-3c51-add8-cbb751fb4afa,SESCO,II.1.1,Chubut,AR-U,annual,2019,gas oil combustion consumption by to the public,2691.5901599999997,TJ,N2O,3.9,kg/TJ,10497.201624,kg -cf226f55-a467-3483-ad28-02c769494337,SESCO,II.1.1,Corrientes,AR-W,annual,2019,gas oil combustion consumption by to the public,1579.78044,TJ,CO2,74100.0,kg/TJ,117061730.604,kg -211c8a50-ba44-3f4b-98c8-20a936f37fbc,SESCO,II.1.1,Corrientes,AR-W,annual,2019,gas oil combustion consumption by to the public,1579.78044,TJ,CH4,3.9,kg/TJ,6161.143716,kg -211c8a50-ba44-3f4b-98c8-20a936f37fbc,SESCO,II.1.1,Corrientes,AR-W,annual,2019,gas oil combustion consumption by to the public,1579.78044,TJ,N2O,3.9,kg/TJ,6161.143716,kg -57e8fea7-3879-358d-a09a-72a6c98ee9d9,SESCO,II.1.1,Córdoba,AR-X,annual,2019,gas oil combustion consumption by to the public,10505.1408,TJ,CO2,74100.0,kg/TJ,778430933.28,kg -31223815-d3c7-3a3a-9164-a99c019410ae,SESCO,II.1.1,Córdoba,AR-X,annual,2019,gas oil combustion consumption by to the public,10505.1408,TJ,CH4,3.9,kg/TJ,40970.049119999996,kg -31223815-d3c7-3a3a-9164-a99c019410ae,SESCO,II.1.1,Córdoba,AR-X,annual,2019,gas oil combustion consumption by to the public,10505.1408,TJ,N2O,3.9,kg/TJ,40970.049119999996,kg -8898ade4-c0c4-32eb-9a22-d5ca9dbcf106,SESCO,II.1.1,Entre Rios,AR-E,annual,2019,gas oil combustion consumption by to the public,3753.5904,TJ,CO2,74100.0,kg/TJ,278141048.64,kg -ba2843b2-f1a7-364f-a3f1-e3f3a5dddac8,SESCO,II.1.1,Entre Rios,AR-E,annual,2019,gas oil combustion consumption by to the public,3753.5904,TJ,CH4,3.9,kg/TJ,14639.002559999999,kg -ba2843b2-f1a7-364f-a3f1-e3f3a5dddac8,SESCO,II.1.1,Entre Rios,AR-E,annual,2019,gas oil combustion consumption by to the public,3753.5904,TJ,N2O,3.9,kg/TJ,14639.002559999999,kg -9bce67fc-927b-3c44-82fc-3e265d7af7e9,SESCO,II.1.1,Formosa,AR-P,annual,2019,gas oil combustion consumption by to the public,556.2479999999999,TJ,CO2,74100.0,kg/TJ,41217976.8,kg -16f81f2e-1630-3fe9-a25a-635eca79564d,SESCO,II.1.1,Formosa,AR-P,annual,2019,gas oil combustion consumption by to the public,556.2479999999999,TJ,CH4,3.9,kg/TJ,2169.3671999999997,kg -16f81f2e-1630-3fe9-a25a-635eca79564d,SESCO,II.1.1,Formosa,AR-P,annual,2019,gas oil combustion consumption by to the public,556.2479999999999,TJ,N2O,3.9,kg/TJ,2169.3671999999997,kg -3a87c427-00c1-3591-bfa7-7f697e63ddc4,SESCO,II.1.1,Jujuy,AR-Y,annual,2019,gas oil combustion consumption by to the public,1386.105,TJ,CO2,74100.0,kg/TJ,102710380.5,kg -8c88ff75-e557-30e0-834e-796e05a77fff,SESCO,II.1.1,Jujuy,AR-Y,annual,2019,gas oil combustion consumption by to the public,1386.105,TJ,CH4,3.9,kg/TJ,5405.8095,kg -8c88ff75-e557-30e0-834e-796e05a77fff,SESCO,II.1.1,Jujuy,AR-Y,annual,2019,gas oil combustion consumption by to the public,1386.105,TJ,N2O,3.9,kg/TJ,5405.8095,kg -a3200b8d-15cf-35de-bb28-3ebc49d22873,SESCO,II.1.1,La Pampa,AR-L,annual,2019,gas oil combustion consumption by to the public,2559.60768,TJ,CO2,74100.0,kg/TJ,189666929.088,kg -4393a859-2354-352d-8504-80d3ef18ef30,SESCO,II.1.1,La Pampa,AR-L,annual,2019,gas oil combustion consumption by to the public,2559.60768,TJ,CH4,3.9,kg/TJ,9982.469952,kg -4393a859-2354-352d-8504-80d3ef18ef30,SESCO,II.1.1,La Pampa,AR-L,annual,2019,gas oil combustion consumption by to the public,2559.60768,TJ,N2O,3.9,kg/TJ,9982.469952,kg -ca9566d2-0232-33e8-94fb-b030428b7d6f,SESCO,II.1.1,La Rioja,AR-F,annual,2019,gas oil combustion consumption by to the public,525.7266,TJ,CO2,74100.0,kg/TJ,38956341.059999995,kg -36121239-4b65-3063-b36a-9d39be3fd99a,SESCO,II.1.1,La Rioja,AR-F,annual,2019,gas oil combustion consumption by to the public,525.7266,TJ,CH4,3.9,kg/TJ,2050.3337399999996,kg -36121239-4b65-3063-b36a-9d39be3fd99a,SESCO,II.1.1,La Rioja,AR-F,annual,2019,gas oil combustion consumption by to the public,525.7266,TJ,N2O,3.9,kg/TJ,2050.3337399999996,kg -dc5875aa-5eff-372a-a709-b8beca04454f,SESCO,II.1.1,Mendoza,AR-M,annual,2019,gas oil combustion consumption by to the public,7482.54696,TJ,CO2,74100.0,kg/TJ,554456729.736,kg -4bda9460-aeff-3365-95c5-ad800fa2042e,SESCO,II.1.1,Mendoza,AR-M,annual,2019,gas oil combustion consumption by to the public,7482.54696,TJ,CH4,3.9,kg/TJ,29181.933144,kg -4bda9460-aeff-3365-95c5-ad800fa2042e,SESCO,II.1.1,Mendoza,AR-M,annual,2019,gas oil combustion consumption by to the public,7482.54696,TJ,N2O,3.9,kg/TJ,29181.933144,kg -f32aa4c7-043a-363f-ba86-5f7e0f805b3f,SESCO,II.1.1,Misiones,AR-N,annual,2019,gas oil combustion consumption by to the public,2586.2281199999998,TJ,CO2,74100.0,kg/TJ,191639503.69199997,kg -df2f0191-8f67-36d8-b532-954ea27f3cde,SESCO,II.1.1,Misiones,AR-N,annual,2019,gas oil combustion consumption by to the public,2586.2281199999998,TJ,CH4,3.9,kg/TJ,10086.289668,kg -df2f0191-8f67-36d8-b532-954ea27f3cde,SESCO,II.1.1,Misiones,AR-N,annual,2019,gas oil combustion consumption by to the public,2586.2281199999998,TJ,N2O,3.9,kg/TJ,10086.289668,kg -debff3ec-2a8d-3fbf-a802-9f23551c1b48,SESCO,II.1.1,Neuquén,AR-Q,annual,2019,gas oil combustion consumption by to the public,1727.04168,TJ,CO2,74100.0,kg/TJ,127973788.488,kg -1aea934c-194c-3c48-9dbe-f22f09667ebc,SESCO,II.1.1,Neuquén,AR-Q,annual,2019,gas oil combustion consumption by to the public,1727.04168,TJ,CH4,3.9,kg/TJ,6735.462552,kg -1aea934c-194c-3c48-9dbe-f22f09667ebc,SESCO,II.1.1,Neuquén,AR-Q,annual,2019,gas oil combustion consumption by to the public,1727.04168,TJ,N2O,3.9,kg/TJ,6735.462552,kg -499999fc-8c19-361b-9c28-75892235f752,SESCO,II.1.1,Rio Negro,AR-R,annual,2019,gas oil combustion consumption by to the public,3650.14272,TJ,CO2,74100.0,kg/TJ,270475575.552,kg -dd3580f8-5e9f-34b5-aef7-592294930324,SESCO,II.1.1,Rio Negro,AR-R,annual,2019,gas oil combustion consumption by to the public,3650.14272,TJ,CH4,3.9,kg/TJ,14235.556607999999,kg -dd3580f8-5e9f-34b5-aef7-592294930324,SESCO,II.1.1,Rio Negro,AR-R,annual,2019,gas oil combustion consumption by to the public,3650.14272,TJ,N2O,3.9,kg/TJ,14235.556607999999,kg -66307471-8ea8-3b1e-8033-9ab5938749df,SESCO,II.1.1,Salta,AR-A,annual,2019,gas oil combustion consumption by to the public,3281.82708,TJ,CO2,74100.0,kg/TJ,243183386.628,kg -36440375-9b23-3431-90eb-8b310982ed5a,SESCO,II.1.1,Salta,AR-A,annual,2019,gas oil combustion consumption by to the public,3281.82708,TJ,CH4,3.9,kg/TJ,12799.125612,kg -36440375-9b23-3431-90eb-8b310982ed5a,SESCO,II.1.1,Salta,AR-A,annual,2019,gas oil combustion consumption by to the public,3281.82708,TJ,N2O,3.9,kg/TJ,12799.125612,kg -960dcf83-4b19-39fc-9c4b-482a7c357f23,SESCO,II.1.1,San Juan,AR-J,annual,2019,gas oil combustion consumption by to the public,1619.00676,TJ,CO2,74100.0,kg/TJ,119968400.916,kg -2284a9f8-4494-35c1-bee9-07a7c38a208f,SESCO,II.1.1,San Juan,AR-J,annual,2019,gas oil combustion consumption by to the public,1619.00676,TJ,CH4,3.9,kg/TJ,6314.126364,kg -2284a9f8-4494-35c1-bee9-07a7c38a208f,SESCO,II.1.1,San Juan,AR-J,annual,2019,gas oil combustion consumption by to the public,1619.00676,TJ,N2O,3.9,kg/TJ,6314.126364,kg -ae540870-496f-32f3-ab2d-4837fb804258,SESCO,II.1.1,San Luis,AR-D,annual,2019,gas oil combustion consumption by to the public,1390.04208,TJ,CO2,74100.0,kg/TJ,103002118.12799999,kg -edb9780a-0919-36aa-b164-b4adb3775a7d,SESCO,II.1.1,San Luis,AR-D,annual,2019,gas oil combustion consumption by to the public,1390.04208,TJ,CH4,3.9,kg/TJ,5421.1641119999995,kg -edb9780a-0919-36aa-b164-b4adb3775a7d,SESCO,II.1.1,San Luis,AR-D,annual,2019,gas oil combustion consumption by to the public,1390.04208,TJ,N2O,3.9,kg/TJ,5421.1641119999995,kg -e6a811ff-eb26-3e52-b5ad-59abd9b8c2c3,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2019,gas oil combustion consumption by to the public,1740.00876,TJ,CO2,74100.0,kg/TJ,128934649.116,kg -3f29298c-88b7-3ae6-907b-099ea3129456,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2019,gas oil combustion consumption by to the public,1740.00876,TJ,CH4,3.9,kg/TJ,6786.034164,kg -3f29298c-88b7-3ae6-907b-099ea3129456,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2019,gas oil combustion consumption by to the public,1740.00876,TJ,N2O,3.9,kg/TJ,6786.034164,kg -170a77f1-303d-395f-b082-bb881495c337,SESCO,II.1.1,Santa Fe,AR-S,annual,2019,gas oil combustion consumption by to the public,7765.54716,TJ,CO2,74100.0,kg/TJ,575427044.556,kg -685cc168-998c-3ff9-84cd-16b42f9a6867,SESCO,II.1.1,Santa Fe,AR-S,annual,2019,gas oil combustion consumption by to the public,7765.54716,TJ,CH4,3.9,kg/TJ,30285.633923999998,kg -685cc168-998c-3ff9-84cd-16b42f9a6867,SESCO,II.1.1,Santa Fe,AR-S,annual,2019,gas oil combustion consumption by to the public,7765.54716,TJ,N2O,3.9,kg/TJ,30285.633923999998,kg -a81096bf-6027-3e4a-ab97-778e776c1861,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2019,gas oil combustion consumption by to the public,2153.61888,TJ,CO2,74100.0,kg/TJ,159583159.008,kg -a2c731c8-4f5a-3c9c-aa1e-d7a127da6ad4,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2019,gas oil combustion consumption by to the public,2153.61888,TJ,CH4,3.9,kg/TJ,8399.113632,kg -a2c731c8-4f5a-3c9c-aa1e-d7a127da6ad4,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2019,gas oil combustion consumption by to the public,2153.61888,TJ,N2O,3.9,kg/TJ,8399.113632,kg -9192581e-0cdf-3b38-bcca-630494e54f19,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2019,gas oil combustion consumption by to the public,679.70616,TJ,CO2,74100.0,kg/TJ,50366226.456,kg -c3606cbf-c7f7-3e38-88b3-2c77133a4d5d,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2019,gas oil combustion consumption by to the public,679.70616,TJ,CH4,3.9,kg/TJ,2650.8540239999998,kg -c3606cbf-c7f7-3e38-88b3-2c77133a4d5d,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2019,gas oil combustion consumption by to the public,679.70616,TJ,N2O,3.9,kg/TJ,2650.8540239999998,kg -9743535b-14ca-34dd-b900-576e7cc4b16b,SESCO,II.1.1,Tucuman,AR-T,annual,2019,gas oil combustion consumption by to the public,1979.05092,TJ,CO2,74100.0,kg/TJ,146647673.172,kg -5c406bc8-9c0a-34f1-a1e7-7585c712fce1,SESCO,II.1.1,Tucuman,AR-T,annual,2019,gas oil combustion consumption by to the public,1979.05092,TJ,CH4,3.9,kg/TJ,7718.298588,kg -5c406bc8-9c0a-34f1-a1e7-7585c712fce1,SESCO,II.1.1,Tucuman,AR-T,annual,2019,gas oil combustion consumption by to the public,1979.05092,TJ,N2O,3.9,kg/TJ,7718.298588,kg -d3c53bdc-6a61-358d-aab8-7b9d44054d24,SESCO,II.1.1,Buenos Aires,AR-B,annual,2019,gas oil combustion consumption by to the public,15784.04268,TJ,CO2,74100.0,kg/TJ,1169597562.588,kg -6fe4e1f2-6340-354e-a267-c229dd3770e8,SESCO,II.1.1,Buenos Aires,AR-B,annual,2019,gas oil combustion consumption by to the public,15784.04268,TJ,CH4,3.9,kg/TJ,61557.766452,kg -6fe4e1f2-6340-354e-a267-c229dd3770e8,SESCO,II.1.1,Buenos Aires,AR-B,annual,2019,gas oil combustion consumption by to the public,15784.04268,TJ,N2O,3.9,kg/TJ,61557.766452,kg -eeb8484f-44e3-3950-9c13-692cc5d4c60c,SESCO,II.1.1,Capital Federal,AR-C,annual,2019,gas oil combustion consumption by to the public,2196.1321199999998,TJ,CO2,74100.0,kg/TJ,162733390.09199998,kg -9503455a-7a06-3579-956a-eeaba3f0bdff,SESCO,II.1.1,Capital Federal,AR-C,annual,2019,gas oil combustion consumption by to the public,2196.1321199999998,TJ,CH4,3.9,kg/TJ,8564.915267999999,kg -9503455a-7a06-3579-956a-eeaba3f0bdff,SESCO,II.1.1,Capital Federal,AR-C,annual,2019,gas oil combustion consumption by to the public,2196.1321199999998,TJ,N2O,3.9,kg/TJ,8564.915267999999,kg -5de81605-20cd-3b09-a02c-003f027a36aa,SESCO,II.1.1,Catamarca,AR-K,annual,2019,gas oil combustion consumption by to the public,390.71004,TJ,CO2,74100.0,kg/TJ,28951613.963999998,kg -fc9653ab-003c-36e5-a52d-6fdde944b9f8,SESCO,II.1.1,Catamarca,AR-K,annual,2019,gas oil combustion consumption by to the public,390.71004,TJ,CH4,3.9,kg/TJ,1523.7691559999998,kg -fc9653ab-003c-36e5-a52d-6fdde944b9f8,SESCO,II.1.1,Catamarca,AR-K,annual,2019,gas oil combustion consumption by to the public,390.71004,TJ,N2O,3.9,kg/TJ,1523.7691559999998,kg -530b3a2a-abb3-3a72-8a58-00a1fa75ce6f,SESCO,II.1.1,Chaco,AR-H,annual,2019,gas oil combustion consumption by to the public,1184.3748,TJ,CO2,74100.0,kg/TJ,87762172.68,kg -c69564a7-7631-32db-b770-e895b577b02d,SESCO,II.1.1,Chaco,AR-H,annual,2019,gas oil combustion consumption by to the public,1184.3748,TJ,CH4,3.9,kg/TJ,4619.06172,kg -c69564a7-7631-32db-b770-e895b577b02d,SESCO,II.1.1,Chaco,AR-H,annual,2019,gas oil combustion consumption by to the public,1184.3748,TJ,N2O,3.9,kg/TJ,4619.06172,kg -a5f313df-1fc0-3cb9-9255-e2d2be86adb4,SESCO,II.1.1,Chubut,AR-U,annual,2019,gas oil combustion consumption by to the public,1981.83216,TJ,CO2,74100.0,kg/TJ,146853763.056,kg -76b546c8-aa7f-35aa-9835-1e62f5d40457,SESCO,II.1.1,Chubut,AR-U,annual,2019,gas oil combustion consumption by to the public,1981.83216,TJ,CH4,3.9,kg/TJ,7729.145423999999,kg -76b546c8-aa7f-35aa-9835-1e62f5d40457,SESCO,II.1.1,Chubut,AR-U,annual,2019,gas oil combustion consumption by to the public,1981.83216,TJ,N2O,3.9,kg/TJ,7729.145423999999,kg -ffab2ca7-ad15-3756-a94f-b6be1cd12b64,SESCO,II.1.1,Corrientes,AR-W,annual,2019,gas oil combustion consumption by to the public,1166.71212,TJ,CO2,74100.0,kg/TJ,86453368.092,kg -24c273ca-e6b7-3b0e-8980-a45a98994921,SESCO,II.1.1,Corrientes,AR-W,annual,2019,gas oil combustion consumption by to the public,1166.71212,TJ,CH4,3.9,kg/TJ,4550.1772679999995,kg -24c273ca-e6b7-3b0e-8980-a45a98994921,SESCO,II.1.1,Corrientes,AR-W,annual,2019,gas oil combustion consumption by to the public,1166.71212,TJ,N2O,3.9,kg/TJ,4550.1772679999995,kg -ddce7857-f65e-3eb9-8877-eec367f66bb3,SESCO,II.1.1,Córdoba,AR-X,annual,2019,gas oil combustion consumption by to the public,5120.40732,TJ,CO2,74100.0,kg/TJ,379422182.412,kg -b891ebfc-d4c9-32dc-ad81-ba7ce71f010a,SESCO,II.1.1,Córdoba,AR-X,annual,2019,gas oil combustion consumption by to the public,5120.40732,TJ,CH4,3.9,kg/TJ,19969.588548,kg -b891ebfc-d4c9-32dc-ad81-ba7ce71f010a,SESCO,II.1.1,Córdoba,AR-X,annual,2019,gas oil combustion consumption by to the public,5120.40732,TJ,N2O,3.9,kg/TJ,19969.588548,kg -aa698c76-1f39-3eca-bab7-5b8489e477a9,SESCO,II.1.1,Entre Rios,AR-E,annual,2019,gas oil combustion consumption by to the public,1699.37376,TJ,CO2,74100.0,kg/TJ,125923595.616,kg -cd5d6241-5db4-324c-a18f-1c189beedd22,SESCO,II.1.1,Entre Rios,AR-E,annual,2019,gas oil combustion consumption by to the public,1699.37376,TJ,CH4,3.9,kg/TJ,6627.557664,kg -cd5d6241-5db4-324c-a18f-1c189beedd22,SESCO,II.1.1,Entre Rios,AR-E,annual,2019,gas oil combustion consumption by to the public,1699.37376,TJ,N2O,3.9,kg/TJ,6627.557664,kg -eee0cda4-8363-390e-8df7-fc7461c8d1a0,SESCO,II.1.1,Formosa,AR-P,annual,2019,gas oil combustion consumption by to the public,406.42224,TJ,CO2,74100.0,kg/TJ,30115887.983999997,kg -a1632393-e030-3a52-b623-c8b3347e5f23,SESCO,II.1.1,Formosa,AR-P,annual,2019,gas oil combustion consumption by to the public,406.42224,TJ,CH4,3.9,kg/TJ,1585.046736,kg -a1632393-e030-3a52-b623-c8b3347e5f23,SESCO,II.1.1,Formosa,AR-P,annual,2019,gas oil combustion consumption by to the public,406.42224,TJ,N2O,3.9,kg/TJ,1585.046736,kg -32971052-8622-3200-a302-8ab81543493b,SESCO,II.1.1,Jujuy,AR-Y,annual,2019,gas oil combustion consumption by to the public,885.62628,TJ,CO2,74100.0,kg/TJ,65624907.348,kg -c3185d0d-3fc2-314e-8e07-5a006d61a0d2,SESCO,II.1.1,Jujuy,AR-Y,annual,2019,gas oil combustion consumption by to the public,885.62628,TJ,CH4,3.9,kg/TJ,3453.9424919999997,kg -c3185d0d-3fc2-314e-8e07-5a006d61a0d2,SESCO,II.1.1,Jujuy,AR-Y,annual,2019,gas oil combustion consumption by to the public,885.62628,TJ,N2O,3.9,kg/TJ,3453.9424919999997,kg -096027cf-0420-3e28-8296-f45908aad03c,SESCO,II.1.1,La Pampa,AR-L,annual,2019,gas oil combustion consumption by to the public,1414.85652,TJ,CO2,74100.0,kg/TJ,104840868.132,kg -5db14e90-e261-3b02-a503-a6bdd40fc0c1,SESCO,II.1.1,La Pampa,AR-L,annual,2019,gas oil combustion consumption by to the public,1414.85652,TJ,CH4,3.9,kg/TJ,5517.940428,kg -5db14e90-e261-3b02-a503-a6bdd40fc0c1,SESCO,II.1.1,La Pampa,AR-L,annual,2019,gas oil combustion consumption by to the public,1414.85652,TJ,N2O,3.9,kg/TJ,5517.940428,kg -acd72d29-1729-3aeb-8b33-992436ae80bb,SESCO,II.1.1,La Rioja,AR-F,annual,2019,gas oil combustion consumption by to the public,518.5026,TJ,CO2,74100.0,kg/TJ,38421042.660000004,kg -6a8c23fb-3251-3e32-8004-273537bf2f7b,SESCO,II.1.1,La Rioja,AR-F,annual,2019,gas oil combustion consumption by to the public,518.5026,TJ,CH4,3.9,kg/TJ,2022.16014,kg -6a8c23fb-3251-3e32-8004-273537bf2f7b,SESCO,II.1.1,La Rioja,AR-F,annual,2019,gas oil combustion consumption by to the public,518.5026,TJ,N2O,3.9,kg/TJ,2022.16014,kg -c085f4e9-2763-3467-9e3b-6767e50dc68c,SESCO,II.1.1,Mendoza,AR-M,annual,2019,gas oil combustion consumption by to the public,3492.47892,TJ,CO2,74100.0,kg/TJ,258792687.972,kg -041ec0c2-5dfa-3b8f-b57c-8516b4ef8d4e,SESCO,II.1.1,Mendoza,AR-M,annual,2019,gas oil combustion consumption by to the public,3492.47892,TJ,CH4,3.9,kg/TJ,13620.667788,kg -041ec0c2-5dfa-3b8f-b57c-8516b4ef8d4e,SESCO,II.1.1,Mendoza,AR-M,annual,2019,gas oil combustion consumption by to the public,3492.47892,TJ,N2O,3.9,kg/TJ,13620.667788,kg -1aa2562c-8242-3fe7-9e21-d8558f0d3492,SESCO,II.1.1,Misiones,AR-N,annual,2019,gas oil combustion consumption by to the public,1222.44528,TJ,CO2,74100.0,kg/TJ,90583195.248,kg -a9544c52-274d-31fe-9523-0777f0982c89,SESCO,II.1.1,Misiones,AR-N,annual,2019,gas oil combustion consumption by to the public,1222.44528,TJ,CH4,3.9,kg/TJ,4767.5365919999995,kg -a9544c52-274d-31fe-9523-0777f0982c89,SESCO,II.1.1,Misiones,AR-N,annual,2019,gas oil combustion consumption by to the public,1222.44528,TJ,N2O,3.9,kg/TJ,4767.5365919999995,kg -2087508a-fda5-332d-833e-3f9d2cc2fb3a,SESCO,II.1.1,Neuquén,AR-Q,annual,2019,gas oil combustion consumption by to the public,2436.69132,TJ,CO2,74100.0,kg/TJ,180558826.812,kg -dc1d734f-bd82-36a3-940a-adda913329c2,SESCO,II.1.1,Neuquén,AR-Q,annual,2019,gas oil combustion consumption by to the public,2436.69132,TJ,CH4,3.9,kg/TJ,9503.096147999999,kg -dc1d734f-bd82-36a3-940a-adda913329c2,SESCO,II.1.1,Neuquén,AR-Q,annual,2019,gas oil combustion consumption by to the public,2436.69132,TJ,N2O,3.9,kg/TJ,9503.096147999999,kg -18b2b01f-9415-303d-8118-8abda23469b3,SESCO,II.1.1,Rio Negro,AR-R,annual,2019,gas oil combustion consumption by to the public,1782.7026,TJ,CO2,74100.0,kg/TJ,132098262.66000001,kg -67230c04-f808-38da-8867-3412c5a287df,SESCO,II.1.1,Rio Negro,AR-R,annual,2019,gas oil combustion consumption by to the public,1782.7026,TJ,CH4,3.9,kg/TJ,6952.54014,kg -67230c04-f808-38da-8867-3412c5a287df,SESCO,II.1.1,Rio Negro,AR-R,annual,2019,gas oil combustion consumption by to the public,1782.7026,TJ,N2O,3.9,kg/TJ,6952.54014,kg -90875714-86a8-37d0-9893-ec2d500bcaf3,SESCO,II.1.1,Salta,AR-A,annual,2019,gas oil combustion consumption by to the public,1848.3326399999999,TJ,CO2,74100.0,kg/TJ,136961448.62399998,kg -ea6aa994-e290-3cd4-82cc-00776e6377aa,SESCO,II.1.1,Salta,AR-A,annual,2019,gas oil combustion consumption by to the public,1848.3326399999999,TJ,CH4,3.9,kg/TJ,7208.497296,kg -ea6aa994-e290-3cd4-82cc-00776e6377aa,SESCO,II.1.1,Salta,AR-A,annual,2019,gas oil combustion consumption by to the public,1848.3326399999999,TJ,N2O,3.9,kg/TJ,7208.497296,kg -2ecd758c-2545-3509-b97e-689cf3564d72,SESCO,II.1.1,San Juan,AR-J,annual,2019,gas oil combustion consumption by to the public,840.693,TJ,CO2,74100.0,kg/TJ,62295351.3,kg -b7f2ae85-deb6-3d3b-8547-a5072aef06b3,SESCO,II.1.1,San Juan,AR-J,annual,2019,gas oil combustion consumption by to the public,840.693,TJ,CH4,3.9,kg/TJ,3278.7027,kg -b7f2ae85-deb6-3d3b-8547-a5072aef06b3,SESCO,II.1.1,San Juan,AR-J,annual,2019,gas oil combustion consumption by to the public,840.693,TJ,N2O,3.9,kg/TJ,3278.7027,kg -453e3091-12af-3d85-ad2e-433bb53bea6f,SESCO,II.1.1,San Luis,AR-D,annual,2019,gas oil combustion consumption by to the public,730.49088,TJ,CO2,74100.0,kg/TJ,54129374.208,kg -f23f4484-b52f-3ae6-9ebb-6fafac349474,SESCO,II.1.1,San Luis,AR-D,annual,2019,gas oil combustion consumption by to the public,730.49088,TJ,CH4,3.9,kg/TJ,2848.9144319999996,kg -f23f4484-b52f-3ae6-9ebb-6fafac349474,SESCO,II.1.1,San Luis,AR-D,annual,2019,gas oil combustion consumption by to the public,730.49088,TJ,N2O,3.9,kg/TJ,2848.9144319999996,kg -4f9b8889-3684-399b-a746-940455259e9e,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2019,gas oil combustion consumption by to the public,1529.93484,TJ,CO2,74100.0,kg/TJ,113368171.644,kg -39433d24-d85b-3e9d-8c8a-8c378acf49bf,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2019,gas oil combustion consumption by to the public,1529.93484,TJ,CH4,3.9,kg/TJ,5966.745875999999,kg -39433d24-d85b-3e9d-8c8a-8c378acf49bf,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2019,gas oil combustion consumption by to the public,1529.93484,TJ,N2O,3.9,kg/TJ,5966.745875999999,kg -8fefe397-a9ac-36a6-8dcf-bdcc6b6b43d6,SESCO,II.1.1,Santa Fe,AR-S,annual,2019,gas oil combustion consumption by to the public,3854.69028,TJ,CO2,74100.0,kg/TJ,285632549.74799997,kg -8c5c8398-8e2e-3c42-8096-02da6de68ebf,SESCO,II.1.1,Santa Fe,AR-S,annual,2019,gas oil combustion consumption by to the public,3854.69028,TJ,CH4,3.9,kg/TJ,15033.292092,kg -8c5c8398-8e2e-3c42-8096-02da6de68ebf,SESCO,II.1.1,Santa Fe,AR-S,annual,2019,gas oil combustion consumption by to the public,3854.69028,TJ,N2O,3.9,kg/TJ,15033.292092,kg -5a4a7a87-c49c-3386-be6c-08fd562e59ec,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2019,gas oil combustion consumption by to the public,994.96152,TJ,CO2,74100.0,kg/TJ,73726648.632,kg -05e0ceea-d5c7-3c5a-9019-70cd4bf8b5ff,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2019,gas oil combustion consumption by to the public,994.96152,TJ,CH4,3.9,kg/TJ,3880.3499279999996,kg -05e0ceea-d5c7-3c5a-9019-70cd4bf8b5ff,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2019,gas oil combustion consumption by to the public,994.96152,TJ,N2O,3.9,kg/TJ,3880.3499279999996,kg -4c65195f-c3bf-3456-8975-7813c0c9e218,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2019,gas oil combustion consumption by to the public,425.02404,TJ,CO2,74100.0,kg/TJ,31494281.364,kg -efbfce18-421d-385e-8763-70b50b92c93d,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2019,gas oil combustion consumption by to the public,425.02404,TJ,CH4,3.9,kg/TJ,1657.593756,kg -efbfce18-421d-385e-8763-70b50b92c93d,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2019,gas oil combustion consumption by to the public,425.02404,TJ,N2O,3.9,kg/TJ,1657.593756,kg -abeb6f38-d934-36cb-a522-05f2d6a83de6,SESCO,II.1.1,Tucuman,AR-T,annual,2019,gas oil combustion consumption by to the public,1264.70568,TJ,CO2,74100.0,kg/TJ,93714690.888,kg -e3619b9e-018d-340c-95bd-29a9458e7edb,SESCO,II.1.1,Tucuman,AR-T,annual,2019,gas oil combustion consumption by to the public,1264.70568,TJ,CH4,3.9,kg/TJ,4932.352152,kg -e3619b9e-018d-340c-95bd-29a9458e7edb,SESCO,II.1.1,Tucuman,AR-T,annual,2019,gas oil combustion consumption by to the public,1264.70568,TJ,N2O,3.9,kg/TJ,4932.352152,kg -d47a891f-bf06-35d5-abe4-844656ba95ac,SESCO,II.1.1,Buenos Aires,AR-B,annual,2019,jet kerosene combustion consumption by to the public,85.48925399999999,TJ,CO2,71500.0,kg/TJ,6112481.660999999,kg -0f55097f-d45c-3f9c-af3a-9090e266aaea,SESCO,II.1.1,Buenos Aires,AR-B,annual,2019,jet kerosene combustion consumption by to the public,85.48925399999999,TJ,CH4,0.5,kg/TJ,42.744626999999994,kg -3a94e90c-e022-3b54-b35a-1a2bf5f17bab,SESCO,II.1.1,Buenos Aires,AR-B,annual,2019,jet kerosene combustion consumption by to the public,85.48925399999999,TJ,N2O,2.0,kg/TJ,170.97850799999998,kg -a50e3975-23ff-39df-a56c-bb1bd4e48566,SESCO,II.1.1,Capital Federal,AR-C,annual,2019,jet kerosene combustion consumption by to the public,2.7993169999999994,TJ,CO2,71500.0,kg/TJ,200151.16549999994,kg -bf3c4f24-e96e-3f7b-a696-65d587e21175,SESCO,II.1.1,Capital Federal,AR-C,annual,2019,jet kerosene combustion consumption by to the public,2.7993169999999994,TJ,CH4,0.5,kg/TJ,1.3996584999999997,kg -c62183cb-f8ad-33da-82ff-a0a8b170cfee,SESCO,II.1.1,Capital Federal,AR-C,annual,2019,jet kerosene combustion consumption by to the public,2.7993169999999994,TJ,N2O,2.0,kg/TJ,5.598633999999999,kg -6d643bc7-1212-31e9-9599-3613a2080e47,SESCO,II.1.1,Catamarca,AR-K,annual,2019,jet kerosene combustion consumption by to the public,3.3340179999999995,TJ,CO2,71500.0,kg/TJ,238382.28699999995,kg -46819bb7-092a-3fce-b953-2647a7c36b88,SESCO,II.1.1,Catamarca,AR-K,annual,2019,jet kerosene combustion consumption by to the public,3.3340179999999995,TJ,CH4,0.5,kg/TJ,1.6670089999999997,kg -ee76b77a-ed7a-319b-a85e-244a255edf55,SESCO,II.1.1,Catamarca,AR-K,annual,2019,jet kerosene combustion consumption by to the public,3.3340179999999995,TJ,N2O,2.0,kg/TJ,6.668035999999999,kg -fd907a0e-d28c-3e15-a790-feb321d79297,SESCO,II.1.1,Chubut,AR-U,annual,2019,jet kerosene combustion consumption by to the public,10.316583999999999,TJ,CO2,71500.0,kg/TJ,737635.7559999999,kg -99ff5d43-b125-39db-b3c3-e9064660c77d,SESCO,II.1.1,Chubut,AR-U,annual,2019,jet kerosene combustion consumption by to the public,10.316583999999999,TJ,CH4,0.5,kg/TJ,5.158291999999999,kg -beb2e7d9-83d4-3423-8892-617a4125aac0,SESCO,II.1.1,Chubut,AR-U,annual,2019,jet kerosene combustion consumption by to the public,10.316583999999999,TJ,N2O,2.0,kg/TJ,20.633167999999998,kg -cd88dc8d-d876-3446-a1e0-fb95dce9a986,SESCO,II.1.1,Corrientes,AR-W,annual,2019,jet kerosene combustion consumption by to the public,1.4153849999999997,TJ,CO2,71500.0,kg/TJ,101200.02749999998,kg -17257bda-b3ff-3d73-a24b-053c5175121b,SESCO,II.1.1,Corrientes,AR-W,annual,2019,jet kerosene combustion consumption by to the public,1.4153849999999997,TJ,CH4,0.5,kg/TJ,0.7076924999999998,kg -5381b44b-754c-3906-8f5a-e42252165e0d,SESCO,II.1.1,Corrientes,AR-W,annual,2019,jet kerosene combustion consumption by to the public,1.4153849999999997,TJ,N2O,2.0,kg/TJ,2.8307699999999993,kg -7845d628-f005-30f3-a8b0-4995230137ed,SESCO,II.1.1,Córdoba,AR-X,annual,2019,jet kerosene combustion consumption by to the public,30.603768999999996,TJ,CO2,71500.0,kg/TJ,2188169.4834999996,kg -9bd5e4ca-7143-33d9-a3b0-89093f825425,SESCO,II.1.1,Córdoba,AR-X,annual,2019,jet kerosene combustion consumption by to the public,30.603768999999996,TJ,CH4,0.5,kg/TJ,15.301884499999998,kg -d60ecdcd-7023-3d3f-9891-3f042be0c28f,SESCO,II.1.1,Córdoba,AR-X,annual,2019,jet kerosene combustion consumption by to the public,30.603768999999996,TJ,N2O,2.0,kg/TJ,61.20753799999999,kg -d2c6be9a-6968-3592-b950-262828a6ae26,SESCO,II.1.1,Entre Rios,AR-E,annual,2019,jet kerosene combustion consumption by to the public,4.843761999999999,TJ,CO2,71500.0,kg/TJ,346328.98299999995,kg -007c51a8-8204-35fc-9876-5667fb9de548,SESCO,II.1.1,Entre Rios,AR-E,annual,2019,jet kerosene combustion consumption by to the public,4.843761999999999,TJ,CH4,0.5,kg/TJ,2.4218809999999995,kg -345d1de4-65c0-3cd5-be3b-8a3f8688636e,SESCO,II.1.1,Entre Rios,AR-E,annual,2019,jet kerosene combustion consumption by to the public,4.843761999999999,TJ,N2O,2.0,kg/TJ,9.687523999999998,kg -75dd2ea3-5d7c-3bb1-9cbb-b8ebcb700545,SESCO,II.1.1,Jujuy,AR-Y,annual,2019,jet kerosene combustion consumption by to the public,1.1637609999999998,TJ,CO2,71500.0,kg/TJ,83208.91149999999,kg -13ed09de-8b51-3514-bcf8-89e5761f0bd7,SESCO,II.1.1,Jujuy,AR-Y,annual,2019,jet kerosene combustion consumption by to the public,1.1637609999999998,TJ,CH4,0.5,kg/TJ,0.5818804999999999,kg -5a4a1ff4-e3ca-370b-8fb5-ded21caf3483,SESCO,II.1.1,Jujuy,AR-Y,annual,2019,jet kerosene combustion consumption by to the public,1.1637609999999998,TJ,N2O,2.0,kg/TJ,2.3275219999999996,kg -ca15686c-3875-37a0-8733-cad75b0cfd82,SESCO,II.1.1,La Pampa,AR-L,annual,2019,jet kerosene combustion consumption by to the public,2.51624,TJ,CO2,71500.0,kg/TJ,179911.15999999997,kg -99c9e707-d3b8-3f91-a110-affcbfe75880,SESCO,II.1.1,La Pampa,AR-L,annual,2019,jet kerosene combustion consumption by to the public,2.51624,TJ,CH4,0.5,kg/TJ,1.25812,kg -fe54aab4-03bb-3673-bdee-9358c7a969fc,SESCO,II.1.1,La Pampa,AR-L,annual,2019,jet kerosene combustion consumption by to the public,2.51624,TJ,N2O,2.0,kg/TJ,5.03248,kg -d14ecf03-66e1-321a-aa3d-ff401d52cd16,SESCO,II.1.1,La Rioja,AR-F,annual,2019,jet kerosene combustion consumption by to the public,1.1952139999999998,TJ,CO2,71500.0,kg/TJ,85457.80099999998,kg -e48147a6-6f66-3a96-b1c8-09965b2f3caf,SESCO,II.1.1,La Rioja,AR-F,annual,2019,jet kerosene combustion consumption by to the public,1.1952139999999998,TJ,CH4,0.5,kg/TJ,0.5976069999999999,kg -7e6e53f9-8774-35e5-a287-ac17b0331a02,SESCO,II.1.1,La Rioja,AR-F,annual,2019,jet kerosene combustion consumption by to the public,1.1952139999999998,TJ,N2O,2.0,kg/TJ,2.3904279999999996,kg -8d1100ed-0343-3d7f-8819-022d70d18a06,SESCO,II.1.1,Mendoza,AR-M,annual,2019,jet kerosene combustion consumption by to the public,13.619148999999998,TJ,CO2,71500.0,kg/TJ,973769.1534999999,kg -72fe8992-63e6-39a5-aeeb-409802a0a9ec,SESCO,II.1.1,Mendoza,AR-M,annual,2019,jet kerosene combustion consumption by to the public,13.619148999999998,TJ,CH4,0.5,kg/TJ,6.809574499999999,kg -e126c9ed-bd83-3668-b6d5-dc589f257565,SESCO,II.1.1,Mendoza,AR-M,annual,2019,jet kerosene combustion consumption by to the public,13.619148999999998,TJ,N2O,2.0,kg/TJ,27.238297999999997,kg -f7964513-e92c-3a7c-b692-462d887ffa4d,SESCO,II.1.1,Neuquén,AR-Q,annual,2019,jet kerosene combustion consumption by to the public,7.202736999999999,TJ,CO2,71500.0,kg/TJ,514995.6954999999,kg -f9eaf768-ea21-3746-a66e-70d62097b143,SESCO,II.1.1,Neuquén,AR-Q,annual,2019,jet kerosene combustion consumption by to the public,7.202736999999999,TJ,CH4,0.5,kg/TJ,3.6013684999999995,kg -04f00e5e-5657-3f14-a87e-eaec0560c1c0,SESCO,II.1.1,Neuquén,AR-Q,annual,2019,jet kerosene combustion consumption by to the public,7.202736999999999,TJ,N2O,2.0,kg/TJ,14.405473999999998,kg -1c433326-b64a-3df8-b542-b4630d79f8d9,SESCO,II.1.1,San Juan,AR-J,annual,2019,jet kerosene combustion consumption by to the public,4.088889999999999,TJ,CO2,71500.0,kg/TJ,292355.63499999995,kg -2b54ef4b-e36e-3404-a7cf-e36db229b5f4,SESCO,II.1.1,San Juan,AR-J,annual,2019,jet kerosene combustion consumption by to the public,4.088889999999999,TJ,CH4,0.5,kg/TJ,2.0444449999999996,kg -3e77b802-6132-38b6-88cf-d3d4bbee1bcc,SESCO,II.1.1,San Juan,AR-J,annual,2019,jet kerosene combustion consumption by to the public,4.088889999999999,TJ,N2O,2.0,kg/TJ,8.177779999999998,kg -8e8f16ef-edd5-312d-ba0c-faec2c597c2d,SESCO,II.1.1,San Luis,AR-D,annual,2019,jet kerosene combustion consumption by to the public,4.749402999999999,TJ,CO2,71500.0,kg/TJ,339582.3144999999,kg -35e1961c-a126-3fbd-a20c-f2e74e3696ab,SESCO,II.1.1,San Luis,AR-D,annual,2019,jet kerosene combustion consumption by to the public,4.749402999999999,TJ,CH4,0.5,kg/TJ,2.3747014999999996,kg -c5f2df78-d828-3eb0-ad89-232798df0697,SESCO,II.1.1,San Luis,AR-D,annual,2019,jet kerosene combustion consumption by to the public,4.749402999999999,TJ,N2O,2.0,kg/TJ,9.498805999999998,kg -98bc5610-9218-3d75-b436-4034b0912404,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2019,jet kerosene combustion consumption by to the public,9.027010999999998,TJ,CO2,71500.0,kg/TJ,645431.2864999998,kg -d742c821-d5ed-3c47-af5d-eca356cac495,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2019,jet kerosene combustion consumption by to the public,9.027010999999998,TJ,CH4,0.5,kg/TJ,4.513505499999999,kg -ba8668e6-e690-3123-8adc-0d1012439323,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2019,jet kerosene combustion consumption by to the public,9.027010999999998,TJ,N2O,2.0,kg/TJ,18.054021999999996,kg -85a547a1-a8b6-399b-926f-bdbcb5360f3f,SESCO,II.1.1,Santa Fe,AR-S,annual,2019,jet kerosene combustion consumption by to the public,24.030091999999996,TJ,CO2,71500.0,kg/TJ,1718151.5779999997,kg -e736e0b8-f7b7-393e-9c10-62d4657b4dbd,SESCO,II.1.1,Santa Fe,AR-S,annual,2019,jet kerosene combustion consumption by to the public,24.030091999999996,TJ,CH4,0.5,kg/TJ,12.015045999999998,kg -833bbaaf-e254-3a05-a18e-76b7f885c37c,SESCO,II.1.1,Santa Fe,AR-S,annual,2019,jet kerosene combustion consumption by to the public,24.030091999999996,TJ,N2O,2.0,kg/TJ,48.06018399999999,kg -e2c2450f-0371-37bd-8fb7-ba8c14d42509,SESCO,II.1.1,Tucuman,AR-T,annual,2019,jet kerosene combustion consumption by to the public,8.366497999999998,TJ,CO2,71500.0,kg/TJ,598204.6069999998,kg -db59b750-2b99-36e0-a3f0-49451e21f079,SESCO,II.1.1,Tucuman,AR-T,annual,2019,jet kerosene combustion consumption by to the public,8.366497999999998,TJ,CH4,0.5,kg/TJ,4.183248999999999,kg -007ea531-5ce1-3e67-81b8-a124a036531d,SESCO,II.1.1,Tucuman,AR-T,annual,2019,jet kerosene combustion consumption by to the public,8.366497999999998,TJ,N2O,2.0,kg/TJ,16.732995999999996,kg -4b3782f8-94ce-32e4-91cd-9a90bb7ec21f,SESCO,II.1.1,Buenos Aires,AR-B,annual,2019,gas oil combustion consumption by freight transport,10360.2996,TJ,CO2,74100.0,kg/TJ,767698200.36,kg -d893865e-de42-31f3-bf64-f5151fc62e87,SESCO,II.1.1,Buenos Aires,AR-B,annual,2019,gas oil combustion consumption by freight transport,10360.2996,TJ,CH4,3.9,kg/TJ,40405.16844,kg -d893865e-de42-31f3-bf64-f5151fc62e87,SESCO,II.1.1,Buenos Aires,AR-B,annual,2019,gas oil combustion consumption by freight transport,10360.2996,TJ,N2O,3.9,kg/TJ,40405.16844,kg -add1b791-641e-3a27-86b3-8e9f3b8329ef,SESCO,II.1.1,Capital Federal,AR-C,annual,2019,gas oil combustion consumption by freight transport,3542.54124,TJ,CO2,74100.0,kg/TJ,262502305.884,kg -64478c71-82e0-3a51-8460-88a9afcf19a1,SESCO,II.1.1,Capital Federal,AR-C,annual,2019,gas oil combustion consumption by freight transport,3542.54124,TJ,CH4,3.9,kg/TJ,13815.910836,kg -64478c71-82e0-3a51-8460-88a9afcf19a1,SESCO,II.1.1,Capital Federal,AR-C,annual,2019,gas oil combustion consumption by freight transport,3542.54124,TJ,N2O,3.9,kg/TJ,13815.910836,kg -c67f54d5-b6f4-3b75-a08d-2f3decb33b25,SESCO,II.1.1,Catamarca,AR-K,annual,2019,gas oil combustion consumption by freight transport,19.6854,TJ,CO2,74100.0,kg/TJ,1458688.1400000001,kg -4beb7e19-80e2-3a9d-aa0a-0bcd0fcabc74,SESCO,II.1.1,Catamarca,AR-K,annual,2019,gas oil combustion consumption by freight transport,19.6854,TJ,CH4,3.9,kg/TJ,76.77306,kg -4beb7e19-80e2-3a9d-aa0a-0bcd0fcabc74,SESCO,II.1.1,Catamarca,AR-K,annual,2019,gas oil combustion consumption by freight transport,19.6854,TJ,N2O,3.9,kg/TJ,76.77306,kg -41800442-98dd-33bc-ba3c-0188119fd4c1,SESCO,II.1.1,Chaco,AR-H,annual,2019,gas oil combustion consumption by freight transport,263.71211999999997,TJ,CO2,74100.0,kg/TJ,19541068.091999996,kg -ea116540-40d8-31b9-ae8a-84b9d2a6af6c,SESCO,II.1.1,Chaco,AR-H,annual,2019,gas oil combustion consumption by freight transport,263.71211999999997,TJ,CH4,3.9,kg/TJ,1028.4772679999999,kg -ea116540-40d8-31b9-ae8a-84b9d2a6af6c,SESCO,II.1.1,Chaco,AR-H,annual,2019,gas oil combustion consumption by freight transport,263.71211999999997,TJ,N2O,3.9,kg/TJ,1028.4772679999999,kg -688ab315-d122-377e-a7ec-fa41465d67af,SESCO,II.1.1,Chubut,AR-U,annual,2019,gas oil combustion consumption by freight transport,212.20499999999998,TJ,CO2,74100.0,kg/TJ,15724390.499999998,kg -31d3657b-02d1-33cb-940f-017d58807fc4,SESCO,II.1.1,Chubut,AR-U,annual,2019,gas oil combustion consumption by freight transport,212.20499999999998,TJ,CH4,3.9,kg/TJ,827.5994999999999,kg -31d3657b-02d1-33cb-940f-017d58807fc4,SESCO,II.1.1,Chubut,AR-U,annual,2019,gas oil combustion consumption by freight transport,212.20499999999998,TJ,N2O,3.9,kg/TJ,827.5994999999999,kg -cc34a216-b789-3ab2-823e-9616c97f5c07,SESCO,II.1.1,Corrientes,AR-W,annual,2019,gas oil combustion consumption by freight transport,426.3966,TJ,CO2,74100.0,kg/TJ,31595988.06,kg -969b376e-f013-36b0-bd9c-8a1a69d6a0f0,SESCO,II.1.1,Corrientes,AR-W,annual,2019,gas oil combustion consumption by freight transport,426.3966,TJ,CH4,3.9,kg/TJ,1662.9467399999999,kg -969b376e-f013-36b0-bd9c-8a1a69d6a0f0,SESCO,II.1.1,Corrientes,AR-W,annual,2019,gas oil combustion consumption by freight transport,426.3966,TJ,N2O,3.9,kg/TJ,1662.9467399999999,kg -f5820960-ff55-3798-a757-350b65655fec,SESCO,II.1.1,Córdoba,AR-X,annual,2019,gas oil combustion consumption by freight transport,3059.0027999999998,TJ,CO2,74100.0,kg/TJ,226672107.48,kg -b403fc25-3f68-37b6-a842-8f1b7c87ad12,SESCO,II.1.1,Córdoba,AR-X,annual,2019,gas oil combustion consumption by freight transport,3059.0027999999998,TJ,CH4,3.9,kg/TJ,11930.11092,kg -b403fc25-3f68-37b6-a842-8f1b7c87ad12,SESCO,II.1.1,Córdoba,AR-X,annual,2019,gas oil combustion consumption by freight transport,3059.0027999999998,TJ,N2O,3.9,kg/TJ,11930.11092,kg -c6801825-5a65-3363-9a24-9860f34e4471,SESCO,II.1.1,Entre Rios,AR-E,annual,2019,gas oil combustion consumption by freight transport,872.9120399999999,TJ,CO2,74100.0,kg/TJ,64682782.164,kg -1599b35d-bbac-3c59-bc5c-908e3fb70856,SESCO,II.1.1,Entre Rios,AR-E,annual,2019,gas oil combustion consumption by freight transport,872.9120399999999,TJ,CH4,3.9,kg/TJ,3404.3569559999996,kg -1599b35d-bbac-3c59-bc5c-908e3fb70856,SESCO,II.1.1,Entre Rios,AR-E,annual,2019,gas oil combustion consumption by freight transport,872.9120399999999,TJ,N2O,3.9,kg/TJ,3404.3569559999996,kg -bb9e237a-d400-3466-9372-3561afd4aeac,SESCO,II.1.1,Formosa,AR-P,annual,2019,gas oil combustion consumption by freight transport,51.03756,TJ,CO2,74100.0,kg/TJ,3781883.196,kg -5b7de83d-ad98-3ecc-a422-335c197cedf1,SESCO,II.1.1,Formosa,AR-P,annual,2019,gas oil combustion consumption by freight transport,51.03756,TJ,CH4,3.9,kg/TJ,199.046484,kg -5b7de83d-ad98-3ecc-a422-335c197cedf1,SESCO,II.1.1,Formosa,AR-P,annual,2019,gas oil combustion consumption by freight transport,51.03756,TJ,N2O,3.9,kg/TJ,199.046484,kg -685c529e-92f4-3794-a67c-90a9c8de8fd5,SESCO,II.1.1,Jujuy,AR-Y,annual,2019,gas oil combustion consumption by freight transport,228.459,TJ,CO2,74100.0,kg/TJ,16928811.9,kg -76b5be59-6b56-3260-93a0-8a1269348dc3,SESCO,II.1.1,Jujuy,AR-Y,annual,2019,gas oil combustion consumption by freight transport,228.459,TJ,CH4,3.9,kg/TJ,890.9901,kg -76b5be59-6b56-3260-93a0-8a1269348dc3,SESCO,II.1.1,Jujuy,AR-Y,annual,2019,gas oil combustion consumption by freight transport,228.459,TJ,N2O,3.9,kg/TJ,890.9901,kg -7ffa5cdb-6e0f-3e97-8e6a-efcfb25e773e,SESCO,II.1.1,La Pampa,AR-L,annual,2019,gas oil combustion consumption by freight transport,226.14732,TJ,CO2,74100.0,kg/TJ,16757516.412,kg -ff75ad58-b60b-30f1-9ccf-133ca94be216,SESCO,II.1.1,La Pampa,AR-L,annual,2019,gas oil combustion consumption by freight transport,226.14732,TJ,CH4,3.9,kg/TJ,881.974548,kg -ff75ad58-b60b-30f1-9ccf-133ca94be216,SESCO,II.1.1,La Pampa,AR-L,annual,2019,gas oil combustion consumption by freight transport,226.14732,TJ,N2O,3.9,kg/TJ,881.974548,kg -8cc4e55a-4646-3e6a-b3c8-555fd44900af,SESCO,II.1.1,La Rioja,AR-F,annual,2019,gas oil combustion consumption by freight transport,11.45004,TJ,CO2,74100.0,kg/TJ,848447.9639999999,kg -fdebbb8a-296c-349a-b50f-23df81f98809,SESCO,II.1.1,La Rioja,AR-F,annual,2019,gas oil combustion consumption by freight transport,11.45004,TJ,CH4,3.9,kg/TJ,44.655156,kg -fdebbb8a-296c-349a-b50f-23df81f98809,SESCO,II.1.1,La Rioja,AR-F,annual,2019,gas oil combustion consumption by freight transport,11.45004,TJ,N2O,3.9,kg/TJ,44.655156,kg -fec03883-65fc-3ba2-9494-8ebeb98008ac,SESCO,II.1.1,Mendoza,AR-M,annual,2019,gas oil combustion consumption by freight transport,1947.9515999999999,TJ,CO2,74100.0,kg/TJ,144343213.56,kg -96ae2b25-41c3-3b35-9f44-ecba34316cbf,SESCO,II.1.1,Mendoza,AR-M,annual,2019,gas oil combustion consumption by freight transport,1947.9515999999999,TJ,CH4,3.9,kg/TJ,7597.011239999999,kg -96ae2b25-41c3-3b35-9f44-ecba34316cbf,SESCO,II.1.1,Mendoza,AR-M,annual,2019,gas oil combustion consumption by freight transport,1947.9515999999999,TJ,N2O,3.9,kg/TJ,7597.011239999999,kg -b1628353-b883-329c-b35d-e5dee1015dba,SESCO,II.1.1,Misiones,AR-N,annual,2019,gas oil combustion consumption by freight transport,1132.68708,TJ,CO2,74100.0,kg/TJ,83932112.62799999,kg -1c1e6a2c-83c5-3348-ab3d-95d59384ff99,SESCO,II.1.1,Misiones,AR-N,annual,2019,gas oil combustion consumption by freight transport,1132.68708,TJ,CH4,3.9,kg/TJ,4417.479611999999,kg -1c1e6a2c-83c5-3348-ab3d-95d59384ff99,SESCO,II.1.1,Misiones,AR-N,annual,2019,gas oil combustion consumption by freight transport,1132.68708,TJ,N2O,3.9,kg/TJ,4417.479611999999,kg -443f494c-b157-3067-9433-b06b20e0953a,SESCO,II.1.1,Neuquén,AR-Q,annual,2019,gas oil combustion consumption by freight transport,915.35304,TJ,CO2,74100.0,kg/TJ,67827660.264,kg -b775d86c-3bf3-3d80-8334-b5ff2af356db,SESCO,II.1.1,Neuquén,AR-Q,annual,2019,gas oil combustion consumption by freight transport,915.35304,TJ,CH4,3.9,kg/TJ,3569.876856,kg -b775d86c-3bf3-3d80-8334-b5ff2af356db,SESCO,II.1.1,Neuquén,AR-Q,annual,2019,gas oil combustion consumption by freight transport,915.35304,TJ,N2O,3.9,kg/TJ,3569.876856,kg -0983244f-7cc1-3696-aa7b-65db173dc90c,SESCO,II.1.1,Rio Negro,AR-R,annual,2019,gas oil combustion consumption by freight transport,452.72808,TJ,CO2,74100.0,kg/TJ,33547150.728,kg -2b52f489-8877-3734-a353-397b1c16d704,SESCO,II.1.1,Rio Negro,AR-R,annual,2019,gas oil combustion consumption by freight transport,452.72808,TJ,CH4,3.9,kg/TJ,1765.639512,kg -2b52f489-8877-3734-a353-397b1c16d704,SESCO,II.1.1,Rio Negro,AR-R,annual,2019,gas oil combustion consumption by freight transport,452.72808,TJ,N2O,3.9,kg/TJ,1765.639512,kg -aee0170a-80a1-32df-b046-e536baedc041,SESCO,II.1.1,Salta,AR-A,annual,2019,gas oil combustion consumption by freight transport,393.3468,TJ,CO2,74100.0,kg/TJ,29146997.88,kg -0740596d-4e4f-3d4c-9142-c56a1103a04f,SESCO,II.1.1,Salta,AR-A,annual,2019,gas oil combustion consumption by freight transport,393.3468,TJ,CH4,3.9,kg/TJ,1534.05252,kg -0740596d-4e4f-3d4c-9142-c56a1103a04f,SESCO,II.1.1,Salta,AR-A,annual,2019,gas oil combustion consumption by freight transport,393.3468,TJ,N2O,3.9,kg/TJ,1534.05252,kg -7b5d39f3-7964-3345-9393-99fbe34cef22,SESCO,II.1.1,San Juan,AR-J,annual,2019,gas oil combustion consumption by freight transport,184.3926,TJ,CO2,74100.0,kg/TJ,13663491.659999998,kg -e7e6ebd0-b26b-3073-bee1-a3030771520a,SESCO,II.1.1,San Juan,AR-J,annual,2019,gas oil combustion consumption by freight transport,184.3926,TJ,CH4,3.9,kg/TJ,719.13114,kg -e7e6ebd0-b26b-3073-bee1-a3030771520a,SESCO,II.1.1,San Juan,AR-J,annual,2019,gas oil combustion consumption by freight transport,184.3926,TJ,N2O,3.9,kg/TJ,719.13114,kg -4adfec5b-e57a-3419-b0df-d4499cd6dd27,SESCO,II.1.1,San Luis,AR-D,annual,2019,gas oil combustion consumption by freight transport,226.79748,TJ,CO2,74100.0,kg/TJ,16805693.268,kg -de4e8dc8-4cb6-3060-acf3-3fabd02bb0e8,SESCO,II.1.1,San Luis,AR-D,annual,2019,gas oil combustion consumption by freight transport,226.79748,TJ,CH4,3.9,kg/TJ,884.510172,kg -de4e8dc8-4cb6-3060-acf3-3fabd02bb0e8,SESCO,II.1.1,San Luis,AR-D,annual,2019,gas oil combustion consumption by freight transport,226.79748,TJ,N2O,3.9,kg/TJ,884.510172,kg -860b05e8-0b8c-31a5-bfbb-95b2460c2e6c,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2019,gas oil combustion consumption by freight transport,192.48348,TJ,CO2,74100.0,kg/TJ,14263025.867999999,kg -f5e43348-b361-3b52-bad9-d1e7a27daae7,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2019,gas oil combustion consumption by freight transport,192.48348,TJ,CH4,3.9,kg/TJ,750.685572,kg -f5e43348-b361-3b52-bad9-d1e7a27daae7,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2019,gas oil combustion consumption by freight transport,192.48348,TJ,N2O,3.9,kg/TJ,750.685572,kg -12df789c-62bd-3868-b527-e67913cacaed,SESCO,II.1.1,Santa Fe,AR-S,annual,2019,gas oil combustion consumption by freight transport,3022.19652,TJ,CO2,74100.0,kg/TJ,223944762.132,kg -85654396-bead-3cfe-9029-a8346ee61da9,SESCO,II.1.1,Santa Fe,AR-S,annual,2019,gas oil combustion consumption by freight transport,3022.19652,TJ,CH4,3.9,kg/TJ,11786.566428,kg -85654396-bead-3cfe-9029-a8346ee61da9,SESCO,II.1.1,Santa Fe,AR-S,annual,2019,gas oil combustion consumption by freight transport,3022.19652,TJ,N2O,3.9,kg/TJ,11786.566428,kg -ddeebddd-9cb9-35db-a1b4-d15b1b494cd0,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2019,gas oil combustion consumption by freight transport,286.90116,TJ,CO2,74100.0,kg/TJ,21259375.956,kg -22a2aa90-210c-346c-9579-a28003277917,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2019,gas oil combustion consumption by freight transport,286.90116,TJ,CH4,3.9,kg/TJ,1118.914524,kg -22a2aa90-210c-346c-9579-a28003277917,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2019,gas oil combustion consumption by freight transport,286.90116,TJ,N2O,3.9,kg/TJ,1118.914524,kg -320f3bab-8cb5-31c4-abfd-6913bfa74c9c,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2019,gas oil combustion consumption by freight transport,312.94368,TJ,CO2,74100.0,kg/TJ,23189126.687999997,kg -2ffd81a2-0b9f-323f-bc20-212c8b337e26,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2019,gas oil combustion consumption by freight transport,312.94368,TJ,CH4,3.9,kg/TJ,1220.4803519999998,kg -2ffd81a2-0b9f-323f-bc20-212c8b337e26,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2019,gas oil combustion consumption by freight transport,312.94368,TJ,N2O,3.9,kg/TJ,1220.4803519999998,kg -a62bf3fd-156e-36e0-99f7-d5dd27340f14,SESCO,II.1.1,Tucuman,AR-T,annual,2019,gas oil combustion consumption by freight transport,602.37324,TJ,CO2,74100.0,kg/TJ,44635857.084,kg -ef46c312-30ad-3771-ba67-2f5e8882a6c9,SESCO,II.1.1,Tucuman,AR-T,annual,2019,gas oil combustion consumption by freight transport,602.37324,TJ,CH4,3.9,kg/TJ,2349.255636,kg -ef46c312-30ad-3771-ba67-2f5e8882a6c9,SESCO,II.1.1,Tucuman,AR-T,annual,2019,gas oil combustion consumption by freight transport,602.37324,TJ,N2O,3.9,kg/TJ,2349.255636,kg -60625f0a-cc4c-30b0-ab72-95a696a76099,SESCO,II.1.1,Buenos Aires,AR-B,annual,2019,gas oil combustion consumption by freight transport,2229.57924,TJ,CO2,74100.0,kg/TJ,165211821.68400002,kg -6e18fa89-4cd0-3e52-9d09-e9bc9bfe96f1,SESCO,II.1.1,Buenos Aires,AR-B,annual,2019,gas oil combustion consumption by freight transport,2229.57924,TJ,CH4,3.9,kg/TJ,8695.359036,kg -6e18fa89-4cd0-3e52-9d09-e9bc9bfe96f1,SESCO,II.1.1,Buenos Aires,AR-B,annual,2019,gas oil combustion consumption by freight transport,2229.57924,TJ,N2O,3.9,kg/TJ,8695.359036,kg -670e9da6-dfd3-314c-997a-45186b6d61f8,SESCO,II.1.1,Capital Federal,AR-C,annual,2019,gas oil combustion consumption by freight transport,2349.9672,TJ,CO2,74100.0,kg/TJ,174132569.52,kg -5a5b4e1e-3ac9-3aed-ae5d-c857ad23d49c,SESCO,II.1.1,Capital Federal,AR-C,annual,2019,gas oil combustion consumption by freight transport,2349.9672,TJ,CH4,3.9,kg/TJ,9164.87208,kg -5a5b4e1e-3ac9-3aed-ae5d-c857ad23d49c,SESCO,II.1.1,Capital Federal,AR-C,annual,2019,gas oil combustion consumption by freight transport,2349.9672,TJ,N2O,3.9,kg/TJ,9164.87208,kg -1748feeb-395c-3b9c-8df9-1934cf8e8b3c,SESCO,II.1.1,Catamarca,AR-K,annual,2019,gas oil combustion consumption by freight transport,7.07952,TJ,CO2,74100.0,kg/TJ,524592.4319999999,kg -c091a547-dd48-371d-a7f8-43546148ea96,SESCO,II.1.1,Catamarca,AR-K,annual,2019,gas oil combustion consumption by freight transport,7.07952,TJ,CH4,3.9,kg/TJ,27.610127999999996,kg -c091a547-dd48-371d-a7f8-43546148ea96,SESCO,II.1.1,Catamarca,AR-K,annual,2019,gas oil combustion consumption by freight transport,7.07952,TJ,N2O,3.9,kg/TJ,27.610127999999996,kg -d4726b94-b74b-3e68-abf1-1811dec21cfd,SESCO,II.1.1,Chaco,AR-H,annual,2019,gas oil combustion consumption by freight transport,96.90996,TJ,CO2,74100.0,kg/TJ,7181028.036,kg -04625287-3400-3c75-b5ea-70064565c6aa,SESCO,II.1.1,Chaco,AR-H,annual,2019,gas oil combustion consumption by freight transport,96.90996,TJ,CH4,3.9,kg/TJ,377.948844,kg -04625287-3400-3c75-b5ea-70064565c6aa,SESCO,II.1.1,Chaco,AR-H,annual,2019,gas oil combustion consumption by freight transport,96.90996,TJ,N2O,3.9,kg/TJ,377.948844,kg -71cd0b3c-e7f6-3b71-aa7e-be67ed2553f3,SESCO,II.1.1,Chubut,AR-U,annual,2019,gas oil combustion consumption by freight transport,284.55336,TJ,CO2,74100.0,kg/TJ,21085403.976,kg -1f2335db-a7a2-3196-a1c9-3ffdd20618a2,SESCO,II.1.1,Chubut,AR-U,annual,2019,gas oil combustion consumption by freight transport,284.55336,TJ,CH4,3.9,kg/TJ,1109.758104,kg -1f2335db-a7a2-3196-a1c9-3ffdd20618a2,SESCO,II.1.1,Chubut,AR-U,annual,2019,gas oil combustion consumption by freight transport,284.55336,TJ,N2O,3.9,kg/TJ,1109.758104,kg -c078b943-7475-3083-90f4-93fd38949001,SESCO,II.1.1,Corrientes,AR-W,annual,2019,gas oil combustion consumption by freight transport,107.60148,TJ,CO2,74100.0,kg/TJ,7973269.668,kg -c255f626-c164-3631-8b4d-59bb897c0aeb,SESCO,II.1.1,Corrientes,AR-W,annual,2019,gas oil combustion consumption by freight transport,107.60148,TJ,CH4,3.9,kg/TJ,419.64577199999997,kg -c255f626-c164-3631-8b4d-59bb897c0aeb,SESCO,II.1.1,Corrientes,AR-W,annual,2019,gas oil combustion consumption by freight transport,107.60148,TJ,N2O,3.9,kg/TJ,419.64577199999997,kg -fdc61be8-397c-34db-a2b9-825f94c35206,SESCO,II.1.1,Córdoba,AR-X,annual,2019,gas oil combustion consumption by freight transport,411.37068,TJ,CO2,74100.0,kg/TJ,30482567.388,kg -eb9450c5-7315-36e7-b04d-8ec48217589e,SESCO,II.1.1,Córdoba,AR-X,annual,2019,gas oil combustion consumption by freight transport,411.37068,TJ,CH4,3.9,kg/TJ,1604.345652,kg -eb9450c5-7315-36e7-b04d-8ec48217589e,SESCO,II.1.1,Córdoba,AR-X,annual,2019,gas oil combustion consumption by freight transport,411.37068,TJ,N2O,3.9,kg/TJ,1604.345652,kg -1f4f525b-92d6-3f73-acdc-55f9f6af0bc0,SESCO,II.1.1,Entre Rios,AR-E,annual,2019,gas oil combustion consumption by freight transport,229.97603999999998,TJ,CO2,74100.0,kg/TJ,17041224.564,kg -e69c4ce0-7b36-33a1-ae90-feedd7da10cc,SESCO,II.1.1,Entre Rios,AR-E,annual,2019,gas oil combustion consumption by freight transport,229.97603999999998,TJ,CH4,3.9,kg/TJ,896.9065559999999,kg -e69c4ce0-7b36-33a1-ae90-feedd7da10cc,SESCO,II.1.1,Entre Rios,AR-E,annual,2019,gas oil combustion consumption by freight transport,229.97603999999998,TJ,N2O,3.9,kg/TJ,896.9065559999999,kg -5af0ae02-37da-385a-b793-fdbfbe48e8cb,SESCO,II.1.1,Formosa,AR-P,annual,2019,gas oil combustion consumption by freight transport,14.91756,TJ,CO2,74100.0,kg/TJ,1105391.196,kg -a58f527f-53c2-3b9f-95b9-44aaba946b9b,SESCO,II.1.1,Formosa,AR-P,annual,2019,gas oil combustion consumption by freight transport,14.91756,TJ,CH4,3.9,kg/TJ,58.178484,kg -a58f527f-53c2-3b9f-95b9-44aaba946b9b,SESCO,II.1.1,Formosa,AR-P,annual,2019,gas oil combustion consumption by freight transport,14.91756,TJ,N2O,3.9,kg/TJ,58.178484,kg -cd8fff05-6658-38b3-86aa-65ec148fadb4,SESCO,II.1.1,Jujuy,AR-Y,annual,2019,gas oil combustion consumption by freight transport,25.175639999999998,TJ,CO2,74100.0,kg/TJ,1865514.9239999999,kg -2f42e92d-5068-3e02-b579-dbfdec495e61,SESCO,II.1.1,Jujuy,AR-Y,annual,2019,gas oil combustion consumption by freight transport,25.175639999999998,TJ,CH4,3.9,kg/TJ,98.18499599999998,kg -2f42e92d-5068-3e02-b579-dbfdec495e61,SESCO,II.1.1,Jujuy,AR-Y,annual,2019,gas oil combustion consumption by freight transport,25.175639999999998,TJ,N2O,3.9,kg/TJ,98.18499599999998,kg -16053e1b-400d-3b2f-a7e1-1fe46143b782,SESCO,II.1.1,La Pampa,AR-L,annual,2019,gas oil combustion consumption by freight transport,68.66412,TJ,CO2,74100.0,kg/TJ,5088011.291999999,kg -102e85b2-7454-3187-a124-71228d7d983e,SESCO,II.1.1,La Pampa,AR-L,annual,2019,gas oil combustion consumption by freight transport,68.66412,TJ,CH4,3.9,kg/TJ,267.79006799999996,kg -102e85b2-7454-3187-a124-71228d7d983e,SESCO,II.1.1,La Pampa,AR-L,annual,2019,gas oil combustion consumption by freight transport,68.66412,TJ,N2O,3.9,kg/TJ,267.79006799999996,kg -6a414507-bfb0-336e-bdb9-80a8916c7064,SESCO,II.1.1,La Rioja,AR-F,annual,2019,gas oil combustion consumption by freight transport,13.58112,TJ,CO2,74100.0,kg/TJ,1006360.992,kg -a3ff107d-95e8-37f2-81c4-93f1029cb2d2,SESCO,II.1.1,La Rioja,AR-F,annual,2019,gas oil combustion consumption by freight transport,13.58112,TJ,CH4,3.9,kg/TJ,52.966368,kg -a3ff107d-95e8-37f2-81c4-93f1029cb2d2,SESCO,II.1.1,La Rioja,AR-F,annual,2019,gas oil combustion consumption by freight transport,13.58112,TJ,N2O,3.9,kg/TJ,52.966368,kg -47ed6ab4-fbd6-3e3c-b4a7-cb8545880db0,SESCO,II.1.1,Mendoza,AR-M,annual,2019,gas oil combustion consumption by freight transport,461.64972,TJ,CO2,74100.0,kg/TJ,34208244.252,kg -fbc29fef-e7c4-3587-b8c9-6ec98929d3c7,SESCO,II.1.1,Mendoza,AR-M,annual,2019,gas oil combustion consumption by freight transport,461.64972,TJ,CH4,3.9,kg/TJ,1800.433908,kg -fbc29fef-e7c4-3587-b8c9-6ec98929d3c7,SESCO,II.1.1,Mendoza,AR-M,annual,2019,gas oil combustion consumption by freight transport,461.64972,TJ,N2O,3.9,kg/TJ,1800.433908,kg -a4726737-d9e2-3ca6-a017-c2acd1719941,SESCO,II.1.1,Misiones,AR-N,annual,2019,gas oil combustion consumption by freight transport,136.64196,TJ,CO2,74100.0,kg/TJ,10125169.236000001,kg -f09cd70d-706c-3622-9e7b-9fb38e1bc22f,SESCO,II.1.1,Misiones,AR-N,annual,2019,gas oil combustion consumption by freight transport,136.64196,TJ,CH4,3.9,kg/TJ,532.903644,kg -f09cd70d-706c-3622-9e7b-9fb38e1bc22f,SESCO,II.1.1,Misiones,AR-N,annual,2019,gas oil combustion consumption by freight transport,136.64196,TJ,N2O,3.9,kg/TJ,532.903644,kg -39f6ea4c-a7b8-3830-8af7-c888daeb019c,SESCO,II.1.1,Neuquén,AR-Q,annual,2019,gas oil combustion consumption by freight transport,973.2533999999999,TJ,CO2,74100.0,kg/TJ,72118076.94,kg -d0d4a5d9-a150-3a42-a85a-9c0fe6cb7f23,SESCO,II.1.1,Neuquén,AR-Q,annual,2019,gas oil combustion consumption by freight transport,973.2533999999999,TJ,CH4,3.9,kg/TJ,3795.68826,kg -d0d4a5d9-a150-3a42-a85a-9c0fe6cb7f23,SESCO,II.1.1,Neuquén,AR-Q,annual,2019,gas oil combustion consumption by freight transport,973.2533999999999,TJ,N2O,3.9,kg/TJ,3795.68826,kg -7d6286b8-c70c-361e-86f2-402c349b19d8,SESCO,II.1.1,Rio Negro,AR-R,annual,2019,gas oil combustion consumption by freight transport,267.43248,TJ,CO2,74100.0,kg/TJ,19816746.768,kg -967ddba7-1924-374c-a18a-e5d723ed5d81,SESCO,II.1.1,Rio Negro,AR-R,annual,2019,gas oil combustion consumption by freight transport,267.43248,TJ,CH4,3.9,kg/TJ,1042.986672,kg -967ddba7-1924-374c-a18a-e5d723ed5d81,SESCO,II.1.1,Rio Negro,AR-R,annual,2019,gas oil combustion consumption by freight transport,267.43248,TJ,N2O,3.9,kg/TJ,1042.986672,kg -7729faef-9512-34ef-91bd-9053ed93d137,SESCO,II.1.1,Salta,AR-A,annual,2019,gas oil combustion consumption by freight transport,151.8846,TJ,CO2,74100.0,kg/TJ,11254648.860000001,kg -1acdc6dd-5754-3cfd-ae6a-b8220c994c83,SESCO,II.1.1,Salta,AR-A,annual,2019,gas oil combustion consumption by freight transport,151.8846,TJ,CH4,3.9,kg/TJ,592.3499400000001,kg -1acdc6dd-5754-3cfd-ae6a-b8220c994c83,SESCO,II.1.1,Salta,AR-A,annual,2019,gas oil combustion consumption by freight transport,151.8846,TJ,N2O,3.9,kg/TJ,592.3499400000001,kg -14edbfec-2673-3af6-8cac-c0c830c1b53b,SESCO,II.1.1,San Juan,AR-J,annual,2019,gas oil combustion consumption by freight transport,26.98164,TJ,CO2,74100.0,kg/TJ,1999339.524,kg -10a870e3-13bc-3c32-b8c9-2b0420b8ca40,SESCO,II.1.1,San Juan,AR-J,annual,2019,gas oil combustion consumption by freight transport,26.98164,TJ,CH4,3.9,kg/TJ,105.22839599999999,kg -10a870e3-13bc-3c32-b8c9-2b0420b8ca40,SESCO,II.1.1,San Juan,AR-J,annual,2019,gas oil combustion consumption by freight transport,26.98164,TJ,N2O,3.9,kg/TJ,105.22839599999999,kg -fe67abf1-28b8-3887-ad88-da25ee732556,SESCO,II.1.1,San Luis,AR-D,annual,2019,gas oil combustion consumption by freight transport,56.92512,TJ,CO2,74100.0,kg/TJ,4218151.392,kg -d84695a3-7bcd-31fa-8f7d-50d02c5f97d3,SESCO,II.1.1,San Luis,AR-D,annual,2019,gas oil combustion consumption by freight transport,56.92512,TJ,CH4,3.9,kg/TJ,222.007968,kg -d84695a3-7bcd-31fa-8f7d-50d02c5f97d3,SESCO,II.1.1,San Luis,AR-D,annual,2019,gas oil combustion consumption by freight transport,56.92512,TJ,N2O,3.9,kg/TJ,222.007968,kg -200a0f2c-2b80-37fb-9112-07e2bf5f26b9,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2019,gas oil combustion consumption by freight transport,73.143,TJ,CO2,74100.0,kg/TJ,5419896.3,kg -22950bba-d1e9-3628-aa5f-7f7fb9b1599a,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2019,gas oil combustion consumption by freight transport,73.143,TJ,CH4,3.9,kg/TJ,285.2577,kg -22950bba-d1e9-3628-aa5f-7f7fb9b1599a,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2019,gas oil combustion consumption by freight transport,73.143,TJ,N2O,3.9,kg/TJ,285.2577,kg -e9a1b4df-6043-327e-8848-14ab9cf5df59,SESCO,II.1.1,Santa Fe,AR-S,annual,2019,gas oil combustion consumption by freight transport,608.91096,TJ,CO2,74100.0,kg/TJ,45120302.136,kg -af20c2b4-49f0-3d21-9252-29ce967b4ec6,SESCO,II.1.1,Santa Fe,AR-S,annual,2019,gas oil combustion consumption by freight transport,608.91096,TJ,CH4,3.9,kg/TJ,2374.7527440000003,kg -af20c2b4-49f0-3d21-9252-29ce967b4ec6,SESCO,II.1.1,Santa Fe,AR-S,annual,2019,gas oil combustion consumption by freight transport,608.91096,TJ,N2O,3.9,kg/TJ,2374.7527440000003,kg -c1d42dda-e5eb-38ca-b956-d8af5fcec4f1,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2019,gas oil combustion consumption by freight transport,32.11068,TJ,CO2,74100.0,kg/TJ,2379401.3880000003,kg -3c3b53ab-981b-3b24-9f38-824486a4a2aa,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2019,gas oil combustion consumption by freight transport,32.11068,TJ,CH4,3.9,kg/TJ,125.23165200000001,kg -3c3b53ab-981b-3b24-9f38-824486a4a2aa,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2019,gas oil combustion consumption by freight transport,32.11068,TJ,N2O,3.9,kg/TJ,125.23165200000001,kg -4eea6358-68c6-384e-b866-6f9bcc498501,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2019,gas oil combustion consumption by freight transport,105.03696,TJ,CO2,74100.0,kg/TJ,7783238.736,kg -82a3e946-9772-3a93-a933-f6b2b02225de,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2019,gas oil combustion consumption by freight transport,105.03696,TJ,CH4,3.9,kg/TJ,409.644144,kg -82a3e946-9772-3a93-a933-f6b2b02225de,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2019,gas oil combustion consumption by freight transport,105.03696,TJ,N2O,3.9,kg/TJ,409.644144,kg -2351e9b9-f3a8-33ae-9fb7-274ce69173ba,SESCO,II.1.1,Tucuman,AR-T,annual,2019,gas oil combustion consumption by freight transport,116.1258,TJ,CO2,74100.0,kg/TJ,8604921.78,kg -92e56c74-2abd-3e6a-8351-b2041851817d,SESCO,II.1.1,Tucuman,AR-T,annual,2019,gas oil combustion consumption by freight transport,116.1258,TJ,CH4,3.9,kg/TJ,452.89061999999996,kg -92e56c74-2abd-3e6a-8351-b2041851817d,SESCO,II.1.1,Tucuman,AR-T,annual,2019,gas oil combustion consumption by freight transport,116.1258,TJ,N2O,3.9,kg/TJ,452.89061999999996,kg -27fe5466-574e-3ffd-ad5a-7a3ceadb48f2,SESCO,II.1.1,Neuquén,AR-Q,annual,2019,jet kerosene combustion consumption by freight transport,0.031452999999999995,TJ,CO2,71500.0,kg/TJ,2248.8894999999998,kg -81569fb2-0cd1-3fb9-94d1-d24e9d287347,SESCO,II.1.1,Neuquén,AR-Q,annual,2019,jet kerosene combustion consumption by freight transport,0.031452999999999995,TJ,CH4,0.5,kg/TJ,0.015726499999999997,kg -5d0c3f55-2d4d-3ec2-a6e1-a958a0138e84,SESCO,II.1.1,Neuquén,AR-Q,annual,2019,jet kerosene combustion consumption by freight transport,0.031452999999999995,TJ,N2O,2.0,kg/TJ,0.06290599999999999,kg -e41c87ae-7a9f-3f43-9dd4-07b659f08a21,SESCO,II.1.1,Santa Fe,AR-S,annual,2019,jet kerosene combustion consumption by freight transport,0.031452999999999995,TJ,CO2,71500.0,kg/TJ,2248.8894999999998,kg -4d15ecf2-03f8-30f4-bf52-ba6ebaabf8af,SESCO,II.1.1,Santa Fe,AR-S,annual,2019,jet kerosene combustion consumption by freight transport,0.031452999999999995,TJ,CH4,0.5,kg/TJ,0.015726499999999997,kg -5ee6b309-fa7b-365d-b049-cfabf52dbfc2,SESCO,II.1.1,Santa Fe,AR-S,annual,2019,jet kerosene combustion consumption by freight transport,0.031452999999999995,TJ,N2O,2.0,kg/TJ,0.06290599999999999,kg -d1fdce23-d148-33f0-90e7-dfd9c15142da,SESCO,II.1.1,Buenos Aires,AR-B,annual,2019,gas oil combustion consumption by public passenger transport,7815.8261999999995,TJ,CO2,74100.0,kg/TJ,579152721.42,kg -b63b8160-9fbd-34b6-abf8-1526899feb36,SESCO,II.1.1,Buenos Aires,AR-B,annual,2019,gas oil combustion consumption by public passenger transport,7815.8261999999995,TJ,CH4,3.9,kg/TJ,30481.722179999997,kg -b63b8160-9fbd-34b6-abf8-1526899feb36,SESCO,II.1.1,Buenos Aires,AR-B,annual,2019,gas oil combustion consumption by public passenger transport,7815.8261999999995,TJ,N2O,3.9,kg/TJ,30481.722179999997,kg -f702140e-725d-39ed-9f7b-ebe7c172b7c2,SESCO,II.1.1,Capital Federal,AR-C,annual,2019,gas oil combustion consumption by public passenger transport,1601.7775199999999,TJ,CO2,74100.0,kg/TJ,118691714.232,kg -d73236aa-2f82-337c-83b3-1b956f55f8f5,SESCO,II.1.1,Capital Federal,AR-C,annual,2019,gas oil combustion consumption by public passenger transport,1601.7775199999999,TJ,CH4,3.9,kg/TJ,6246.932327999999,kg -d73236aa-2f82-337c-83b3-1b956f55f8f5,SESCO,II.1.1,Capital Federal,AR-C,annual,2019,gas oil combustion consumption by public passenger transport,1601.7775199999999,TJ,N2O,3.9,kg/TJ,6246.932327999999,kg -820e4d48-ea80-3827-9c14-df815c22ddbb,SESCO,II.1.1,Catamarca,AR-K,annual,2019,gas oil combustion consumption by public passenger transport,62.34312,TJ,CO2,74100.0,kg/TJ,4619625.192,kg -357aec11-f37e-3b6d-9a50-0ff8d8b81fad,SESCO,II.1.1,Catamarca,AR-K,annual,2019,gas oil combustion consumption by public passenger transport,62.34312,TJ,CH4,3.9,kg/TJ,243.13816799999998,kg -357aec11-f37e-3b6d-9a50-0ff8d8b81fad,SESCO,II.1.1,Catamarca,AR-K,annual,2019,gas oil combustion consumption by public passenger transport,62.34312,TJ,N2O,3.9,kg/TJ,243.13816799999998,kg -732ea08f-2065-37a1-a6d4-ff8635d838be,SESCO,II.1.1,Chaco,AR-H,annual,2019,gas oil combustion consumption by public passenger transport,142.56564,TJ,CO2,74100.0,kg/TJ,10564113.924,kg -524cc0e1-757d-37b0-82bb-3d4dbf7500da,SESCO,II.1.1,Chaco,AR-H,annual,2019,gas oil combustion consumption by public passenger transport,142.56564,TJ,CH4,3.9,kg/TJ,556.005996,kg -524cc0e1-757d-37b0-82bb-3d4dbf7500da,SESCO,II.1.1,Chaco,AR-H,annual,2019,gas oil combustion consumption by public passenger transport,142.56564,TJ,N2O,3.9,kg/TJ,556.005996,kg -3f9a2747-01a1-3886-8209-f82dea56e593,SESCO,II.1.1,Chubut,AR-U,annual,2019,gas oil combustion consumption by public passenger transport,110.67168,TJ,CO2,74100.0,kg/TJ,8200771.488,kg -9a680c6b-6bd5-36e5-be0f-c3aed527a911,SESCO,II.1.1,Chubut,AR-U,annual,2019,gas oil combustion consumption by public passenger transport,110.67168,TJ,CH4,3.9,kg/TJ,431.619552,kg -9a680c6b-6bd5-36e5-be0f-c3aed527a911,SESCO,II.1.1,Chubut,AR-U,annual,2019,gas oil combustion consumption by public passenger transport,110.67168,TJ,N2O,3.9,kg/TJ,431.619552,kg -7ae45d96-eeb6-30ce-9c72-c45d944cc23a,SESCO,II.1.1,Corrientes,AR-W,annual,2019,gas oil combustion consumption by public passenger transport,90.91404,TJ,CO2,74100.0,kg/TJ,6736730.364,kg -b191df0e-0932-3fd9-8664-60fa57544bc9,SESCO,II.1.1,Corrientes,AR-W,annual,2019,gas oil combustion consumption by public passenger transport,90.91404,TJ,CH4,3.9,kg/TJ,354.564756,kg -b191df0e-0932-3fd9-8664-60fa57544bc9,SESCO,II.1.1,Corrientes,AR-W,annual,2019,gas oil combustion consumption by public passenger transport,90.91404,TJ,N2O,3.9,kg/TJ,354.564756,kg -7321865f-d7d5-37a7-83b7-29c2922aebcc,SESCO,II.1.1,Córdoba,AR-X,annual,2019,gas oil combustion consumption by public passenger transport,755.70264,TJ,CO2,74100.0,kg/TJ,55997565.624,kg -fa9cd323-1abb-3293-b21d-fa431d4d1204,SESCO,II.1.1,Córdoba,AR-X,annual,2019,gas oil combustion consumption by public passenger transport,755.70264,TJ,CH4,3.9,kg/TJ,2947.240296,kg -fa9cd323-1abb-3293-b21d-fa431d4d1204,SESCO,II.1.1,Córdoba,AR-X,annual,2019,gas oil combustion consumption by public passenger transport,755.70264,TJ,N2O,3.9,kg/TJ,2947.240296,kg -d849dee5-b903-3650-a473-1a40ab92b27e,SESCO,II.1.1,Entre Rios,AR-E,annual,2019,gas oil combustion consumption by public passenger transport,316.5918,TJ,CO2,74100.0,kg/TJ,23459452.38,kg -8db13ac0-d2f7-3527-870b-18a0bce96133,SESCO,II.1.1,Entre Rios,AR-E,annual,2019,gas oil combustion consumption by public passenger transport,316.5918,TJ,CH4,3.9,kg/TJ,1234.7080199999998,kg -8db13ac0-d2f7-3527-870b-18a0bce96133,SESCO,II.1.1,Entre Rios,AR-E,annual,2019,gas oil combustion consumption by public passenger transport,316.5918,TJ,N2O,3.9,kg/TJ,1234.7080199999998,kg -6b56a770-2b09-335a-a669-70a7837d6d82,SESCO,II.1.1,Formosa,AR-P,annual,2019,gas oil combustion consumption by public passenger transport,19.82988,TJ,CO2,74100.0,kg/TJ,1469394.108,kg -5d60d315-2117-34bf-94d5-abf103cc9262,SESCO,II.1.1,Formosa,AR-P,annual,2019,gas oil combustion consumption by public passenger transport,19.82988,TJ,CH4,3.9,kg/TJ,77.33653199999999,kg -5d60d315-2117-34bf-94d5-abf103cc9262,SESCO,II.1.1,Formosa,AR-P,annual,2019,gas oil combustion consumption by public passenger transport,19.82988,TJ,N2O,3.9,kg/TJ,77.33653199999999,kg -a3f41725-294b-3d44-8987-0bf6d4deae33,SESCO,II.1.1,Jujuy,AR-Y,annual,2019,gas oil combustion consumption by public passenger transport,290.11584,TJ,CO2,74100.0,kg/TJ,21497583.744,kg -7174a2b9-c5fb-3f74-b921-0b1b3d67616a,SESCO,II.1.1,Jujuy,AR-Y,annual,2019,gas oil combustion consumption by public passenger transport,290.11584,TJ,CH4,3.9,kg/TJ,1131.4517759999999,kg -7174a2b9-c5fb-3f74-b921-0b1b3d67616a,SESCO,II.1.1,Jujuy,AR-Y,annual,2019,gas oil combustion consumption by public passenger transport,290.11584,TJ,N2O,3.9,kg/TJ,1131.4517759999999,kg -3ad68a93-3da8-347c-b6c3-37227698da2e,SESCO,II.1.1,La Pampa,AR-L,annual,2019,gas oil combustion consumption by public passenger transport,9.60792,TJ,CO2,74100.0,kg/TJ,711946.872,kg -0730c04a-e813-3932-ae58-ff206fc5b41c,SESCO,II.1.1,La Pampa,AR-L,annual,2019,gas oil combustion consumption by public passenger transport,9.60792,TJ,CH4,3.9,kg/TJ,37.470888,kg -0730c04a-e813-3932-ae58-ff206fc5b41c,SESCO,II.1.1,La Pampa,AR-L,annual,2019,gas oil combustion consumption by public passenger transport,9.60792,TJ,N2O,3.9,kg/TJ,37.470888,kg -8ad02379-a152-3965-a788-0ce3360450c8,SESCO,II.1.1,La Rioja,AR-F,annual,2019,gas oil combustion consumption by public passenger transport,23.58636,TJ,CO2,74100.0,kg/TJ,1747749.2759999998,kg -ee4cd55a-9251-3e67-8e27-cae09faed26b,SESCO,II.1.1,La Rioja,AR-F,annual,2019,gas oil combustion consumption by public passenger transport,23.58636,TJ,CH4,3.9,kg/TJ,91.98680399999999,kg -ee4cd55a-9251-3e67-8e27-cae09faed26b,SESCO,II.1.1,La Rioja,AR-F,annual,2019,gas oil combustion consumption by public passenger transport,23.58636,TJ,N2O,3.9,kg/TJ,91.98680399999999,kg -d94c0799-b2f1-3513-8491-16c6f8471245,SESCO,II.1.1,Mendoza,AR-M,annual,2019,gas oil combustion consumption by public passenger transport,581.78484,TJ,CO2,74100.0,kg/TJ,43110256.644,kg -6e7232be-a364-3161-8f36-2ac131107685,SESCO,II.1.1,Mendoza,AR-M,annual,2019,gas oil combustion consumption by public passenger transport,581.78484,TJ,CH4,3.9,kg/TJ,2268.960876,kg -6e7232be-a364-3161-8f36-2ac131107685,SESCO,II.1.1,Mendoza,AR-M,annual,2019,gas oil combustion consumption by public passenger transport,581.78484,TJ,N2O,3.9,kg/TJ,2268.960876,kg -9af098f0-36b5-3751-b0eb-4e5a3dde7e83,SESCO,II.1.1,Misiones,AR-N,annual,2019,gas oil combustion consumption by public passenger transport,555.81456,TJ,CO2,74100.0,kg/TJ,41185858.896000005,kg -18105cd7-d536-31ee-8b45-805f70b0f260,SESCO,II.1.1,Misiones,AR-N,annual,2019,gas oil combustion consumption by public passenger transport,555.81456,TJ,CH4,3.9,kg/TJ,2167.676784,kg -18105cd7-d536-31ee-8b45-805f70b0f260,SESCO,II.1.1,Misiones,AR-N,annual,2019,gas oil combustion consumption by public passenger transport,555.81456,TJ,N2O,3.9,kg/TJ,2167.676784,kg -e5225983-f690-3e35-a584-f0aa46cdd62c,SESCO,II.1.1,Neuquén,AR-Q,annual,2019,gas oil combustion consumption by public passenger transport,184.06752,TJ,CO2,74100.0,kg/TJ,13639403.232,kg -d0f42e48-3ecf-3af2-9434-2734c04f4957,SESCO,II.1.1,Neuquén,AR-Q,annual,2019,gas oil combustion consumption by public passenger transport,184.06752,TJ,CH4,3.9,kg/TJ,717.863328,kg -d0f42e48-3ecf-3af2-9434-2734c04f4957,SESCO,II.1.1,Neuquén,AR-Q,annual,2019,gas oil combustion consumption by public passenger transport,184.06752,TJ,N2O,3.9,kg/TJ,717.863328,kg -185d2f09-b8ed-369c-bf45-f2a023cd6973,SESCO,II.1.1,Rio Negro,AR-R,annual,2019,gas oil combustion consumption by public passenger transport,138.91752,TJ,CO2,74100.0,kg/TJ,10293788.231999999,kg -99723dac-6d57-3c65-a462-eb7dd2c2585f,SESCO,II.1.1,Rio Negro,AR-R,annual,2019,gas oil combustion consumption by public passenger transport,138.91752,TJ,CH4,3.9,kg/TJ,541.778328,kg -99723dac-6d57-3c65-a462-eb7dd2c2585f,SESCO,II.1.1,Rio Negro,AR-R,annual,2019,gas oil combustion consumption by public passenger transport,138.91752,TJ,N2O,3.9,kg/TJ,541.778328,kg -0891698a-9a2a-3e24-8902-11e85fadf538,SESCO,II.1.1,Salta,AR-A,annual,2019,gas oil combustion consumption by public passenger transport,161.9982,TJ,CO2,74100.0,kg/TJ,12004066.62,kg -0796a414-0662-3600-a079-cb29c5137ebb,SESCO,II.1.1,Salta,AR-A,annual,2019,gas oil combustion consumption by public passenger transport,161.9982,TJ,CH4,3.9,kg/TJ,631.79298,kg -0796a414-0662-3600-a079-cb29c5137ebb,SESCO,II.1.1,Salta,AR-A,annual,2019,gas oil combustion consumption by public passenger transport,161.9982,TJ,N2O,3.9,kg/TJ,631.79298,kg -390e4c2c-eb54-33c1-8422-ce675321c903,SESCO,II.1.1,San Juan,AR-J,annual,2019,gas oil combustion consumption by public passenger transport,152.75148,TJ,CO2,74100.0,kg/TJ,11318884.668,kg -d7d6393a-b5b4-3982-b21b-a6c8432763fd,SESCO,II.1.1,San Juan,AR-J,annual,2019,gas oil combustion consumption by public passenger transport,152.75148,TJ,CH4,3.9,kg/TJ,595.7307719999999,kg -d7d6393a-b5b4-3982-b21b-a6c8432763fd,SESCO,II.1.1,San Juan,AR-J,annual,2019,gas oil combustion consumption by public passenger transport,152.75148,TJ,N2O,3.9,kg/TJ,595.7307719999999,kg -96053b10-8e79-3a3a-bdb1-6c67a6ed65ec,SESCO,II.1.1,San Luis,AR-D,annual,2019,gas oil combustion consumption by public passenger transport,0.43344,TJ,CO2,74100.0,kg/TJ,32117.904,kg -dbdfd19c-3252-3a16-b67d-d3be159ce44e,SESCO,II.1.1,San Luis,AR-D,annual,2019,gas oil combustion consumption by public passenger transport,0.43344,TJ,CH4,3.9,kg/TJ,1.690416,kg -dbdfd19c-3252-3a16-b67d-d3be159ce44e,SESCO,II.1.1,San Luis,AR-D,annual,2019,gas oil combustion consumption by public passenger transport,0.43344,TJ,N2O,3.9,kg/TJ,1.690416,kg -39bbf491-28db-33e6-a7e8-300990d78632,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2019,gas oil combustion consumption by public passenger transport,0.25284,TJ,CO2,74100.0,kg/TJ,18735.444,kg -1be62ce1-8447-33c9-aa15-0f5306466980,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2019,gas oil combustion consumption by public passenger transport,0.25284,TJ,CH4,3.9,kg/TJ,0.9860760000000001,kg -1be62ce1-8447-33c9-aa15-0f5306466980,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2019,gas oil combustion consumption by public passenger transport,0.25284,TJ,N2O,3.9,kg/TJ,0.9860760000000001,kg -5a04b818-9701-3cba-bb07-6d9be467242c,SESCO,II.1.1,Santa Fe,AR-S,annual,2019,gas oil combustion consumption by public passenger transport,251.61192,TJ,CO2,74100.0,kg/TJ,18644443.272,kg -6736ee52-7108-3f12-bf0a-29a66cacca13,SESCO,II.1.1,Santa Fe,AR-S,annual,2019,gas oil combustion consumption by public passenger transport,251.61192,TJ,CH4,3.9,kg/TJ,981.286488,kg -6736ee52-7108-3f12-bf0a-29a66cacca13,SESCO,II.1.1,Santa Fe,AR-S,annual,2019,gas oil combustion consumption by public passenger transport,251.61192,TJ,N2O,3.9,kg/TJ,981.286488,kg -b8da899e-a156-3ef4-b1c7-0fea1006cd58,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2019,gas oil combustion consumption by public passenger transport,2.13108,TJ,CO2,74100.0,kg/TJ,157913.028,kg -6b499aa8-87f9-31d2-a311-dd7b61f5b1cf,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2019,gas oil combustion consumption by public passenger transport,2.13108,TJ,CH4,3.9,kg/TJ,8.311212,kg -6b499aa8-87f9-31d2-a311-dd7b61f5b1cf,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2019,gas oil combustion consumption by public passenger transport,2.13108,TJ,N2O,3.9,kg/TJ,8.311212,kg -37cbb780-f700-389e-af91-59842a421b16,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2019,gas oil combustion consumption by public passenger transport,10.72764,TJ,CO2,74100.0,kg/TJ,794918.124,kg -7273c0ff-9e71-3101-aa07-633b72c7ef61,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2019,gas oil combustion consumption by public passenger transport,10.72764,TJ,CH4,3.9,kg/TJ,41.837796,kg -7273c0ff-9e71-3101-aa07-633b72c7ef61,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2019,gas oil combustion consumption by public passenger transport,10.72764,TJ,N2O,3.9,kg/TJ,41.837796,kg -52a8cb50-a968-3b15-a33d-206ea2cb9193,SESCO,II.1.1,Tucuman,AR-T,annual,2019,gas oil combustion consumption by public passenger transport,22.3944,TJ,CO2,74100.0,kg/TJ,1659425.04,kg -5789d964-0c0b-3e67-a845-9b42b8715100,SESCO,II.1.1,Tucuman,AR-T,annual,2019,gas oil combustion consumption by public passenger transport,22.3944,TJ,CH4,3.9,kg/TJ,87.33816,kg -5789d964-0c0b-3e67-a845-9b42b8715100,SESCO,II.1.1,Tucuman,AR-T,annual,2019,gas oil combustion consumption by public passenger transport,22.3944,TJ,N2O,3.9,kg/TJ,87.33816,kg -9de3a566-1e22-3156-8a77-e304a799ec9b,SESCO,II.1.1,Buenos Aires,AR-B,annual,2019,gas oil combustion consumption by public passenger transport,2418.01728,TJ,CO2,74100.0,kg/TJ,179175080.448,kg -e3eaff03-021c-32cf-9640-cd04896d80fe,SESCO,II.1.1,Buenos Aires,AR-B,annual,2019,gas oil combustion consumption by public passenger transport,2418.01728,TJ,CH4,3.9,kg/TJ,9430.267392,kg -e3eaff03-021c-32cf-9640-cd04896d80fe,SESCO,II.1.1,Buenos Aires,AR-B,annual,2019,gas oil combustion consumption by public passenger transport,2418.01728,TJ,N2O,3.9,kg/TJ,9430.267392,kg -dc6d1da7-4b25-3c97-a549-092b142e6199,SESCO,II.1.1,Capital Federal,AR-C,annual,2019,gas oil combustion consumption by public passenger transport,382.25795999999997,TJ,CO2,74100.0,kg/TJ,28325314.836,kg -f5044372-64d9-3e8c-a8bf-6cfbf1a6f41a,SESCO,II.1.1,Capital Federal,AR-C,annual,2019,gas oil combustion consumption by public passenger transport,382.25795999999997,TJ,CH4,3.9,kg/TJ,1490.806044,kg -f5044372-64d9-3e8c-a8bf-6cfbf1a6f41a,SESCO,II.1.1,Capital Federal,AR-C,annual,2019,gas oil combustion consumption by public passenger transport,382.25795999999997,TJ,N2O,3.9,kg/TJ,1490.806044,kg -140c2e54-8df5-3d8a-b1d9-d5696587ecec,SESCO,II.1.1,Catamarca,AR-K,annual,2019,gas oil combustion consumption by public passenger transport,0.03612,TJ,CO2,74100.0,kg/TJ,2676.4919999999997,kg -225e3c3d-be2d-39ad-9ca1-9a35df58990a,SESCO,II.1.1,Catamarca,AR-K,annual,2019,gas oil combustion consumption by public passenger transport,0.03612,TJ,CH4,3.9,kg/TJ,0.140868,kg -225e3c3d-be2d-39ad-9ca1-9a35df58990a,SESCO,II.1.1,Catamarca,AR-K,annual,2019,gas oil combustion consumption by public passenger transport,0.03612,TJ,N2O,3.9,kg/TJ,0.140868,kg -b68a4110-b345-354b-897b-c969815a7fea,SESCO,II.1.1,Chaco,AR-H,annual,2019,gas oil combustion consumption by public passenger transport,27.52344,TJ,CO2,74100.0,kg/TJ,2039486.904,kg -8a46503c-cbe1-3535-8eb3-2003e7b7ccbd,SESCO,II.1.1,Chaco,AR-H,annual,2019,gas oil combustion consumption by public passenger transport,27.52344,TJ,CH4,3.9,kg/TJ,107.341416,kg -8a46503c-cbe1-3535-8eb3-2003e7b7ccbd,SESCO,II.1.1,Chaco,AR-H,annual,2019,gas oil combustion consumption by public passenger transport,27.52344,TJ,N2O,3.9,kg/TJ,107.341416,kg -65ea0d89-0e81-301e-b2be-2d2a03132c13,SESCO,II.1.1,Chubut,AR-U,annual,2019,gas oil combustion consumption by public passenger transport,24.45324,TJ,CO2,74100.0,kg/TJ,1811985.084,kg -7a515e5c-1eb0-3b5a-9d4c-a8a27c50b1b1,SESCO,II.1.1,Chubut,AR-U,annual,2019,gas oil combustion consumption by public passenger transport,24.45324,TJ,CH4,3.9,kg/TJ,95.367636,kg -7a515e5c-1eb0-3b5a-9d4c-a8a27c50b1b1,SESCO,II.1.1,Chubut,AR-U,annual,2019,gas oil combustion consumption by public passenger transport,24.45324,TJ,N2O,3.9,kg/TJ,95.367636,kg -46291356-75f5-3121-ab7d-d13e9c57830a,SESCO,II.1.1,Corrientes,AR-W,annual,2019,gas oil combustion consumption by public passenger transport,33.411,TJ,CO2,74100.0,kg/TJ,2475755.1,kg -685beb72-320e-3b1b-8548-3974d0259a21,SESCO,II.1.1,Corrientes,AR-W,annual,2019,gas oil combustion consumption by public passenger transport,33.411,TJ,CH4,3.9,kg/TJ,130.3029,kg -685beb72-320e-3b1b-8548-3974d0259a21,SESCO,II.1.1,Corrientes,AR-W,annual,2019,gas oil combustion consumption by public passenger transport,33.411,TJ,N2O,3.9,kg/TJ,130.3029,kg -46976f56-1a66-3385-b6b4-8415aff385fe,SESCO,II.1.1,Córdoba,AR-X,annual,2019,gas oil combustion consumption by public passenger transport,253.743,TJ,CO2,74100.0,kg/TJ,18802356.3,kg -267e142f-b7e5-3c22-b226-0c5e306d2387,SESCO,II.1.1,Córdoba,AR-X,annual,2019,gas oil combustion consumption by public passenger transport,253.743,TJ,CH4,3.9,kg/TJ,989.5976999999999,kg -267e142f-b7e5-3c22-b226-0c5e306d2387,SESCO,II.1.1,Córdoba,AR-X,annual,2019,gas oil combustion consumption by public passenger transport,253.743,TJ,N2O,3.9,kg/TJ,989.5976999999999,kg -9f49d432-54a9-39e3-a175-d0f0b0794b45,SESCO,II.1.1,Entre Rios,AR-E,annual,2019,gas oil combustion consumption by public passenger transport,38.79288,TJ,CO2,74100.0,kg/TJ,2874552.408,kg -11e2808d-23bd-3ac4-a15f-1ac62afedc24,SESCO,II.1.1,Entre Rios,AR-E,annual,2019,gas oil combustion consumption by public passenger transport,38.79288,TJ,CH4,3.9,kg/TJ,151.29223199999998,kg -11e2808d-23bd-3ac4-a15f-1ac62afedc24,SESCO,II.1.1,Entre Rios,AR-E,annual,2019,gas oil combustion consumption by public passenger transport,38.79288,TJ,N2O,3.9,kg/TJ,151.29223199999998,kg -a083552d-1b09-3c36-bb89-35c021a7774c,SESCO,II.1.1,Formosa,AR-P,annual,2019,gas oil combustion consumption by public passenger transport,0.18059999999999998,TJ,CO2,74100.0,kg/TJ,13382.46,kg -ceb633e2-1818-3602-aff1-9b3c4df5859e,SESCO,II.1.1,Formosa,AR-P,annual,2019,gas oil combustion consumption by public passenger transport,0.18059999999999998,TJ,CH4,3.9,kg/TJ,0.70434,kg -ceb633e2-1818-3602-aff1-9b3c4df5859e,SESCO,II.1.1,Formosa,AR-P,annual,2019,gas oil combustion consumption by public passenger transport,0.18059999999999998,TJ,N2O,3.9,kg/TJ,0.70434,kg -63e8a57b-41a7-3ee2-9758-f56c16bcb744,SESCO,II.1.1,Jujuy,AR-Y,annual,2019,gas oil combustion consumption by public passenger transport,1.15584,TJ,CO2,74100.0,kg/TJ,85647.74399999999,kg -582fd3d4-7c10-37b5-923f-ff315fecf0a8,SESCO,II.1.1,Jujuy,AR-Y,annual,2019,gas oil combustion consumption by public passenger transport,1.15584,TJ,CH4,3.9,kg/TJ,4.507776,kg -582fd3d4-7c10-37b5-923f-ff315fecf0a8,SESCO,II.1.1,Jujuy,AR-Y,annual,2019,gas oil combustion consumption by public passenger transport,1.15584,TJ,N2O,3.9,kg/TJ,4.507776,kg -5884722f-e6d9-3c84-8179-7b03d417a628,SESCO,II.1.1,La Rioja,AR-F,annual,2019,gas oil combustion consumption by public passenger transport,3.5758799999999997,TJ,CO2,74100.0,kg/TJ,264972.708,kg -55adfe74-542c-37b5-813c-b1f445fe3d71,SESCO,II.1.1,La Rioja,AR-F,annual,2019,gas oil combustion consumption by public passenger transport,3.5758799999999997,TJ,CH4,3.9,kg/TJ,13.945931999999999,kg -55adfe74-542c-37b5-813c-b1f445fe3d71,SESCO,II.1.1,La Rioja,AR-F,annual,2019,gas oil combustion consumption by public passenger transport,3.5758799999999997,TJ,N2O,3.9,kg/TJ,13.945931999999999,kg -b0101a51-b29b-3a0d-9f04-6874a3f2f9f5,SESCO,II.1.1,Mendoza,AR-M,annual,2019,gas oil combustion consumption by public passenger transport,169.33056,TJ,CO2,74100.0,kg/TJ,12547394.496,kg -dafc1967-da74-311d-879b-b95cc19efff7,SESCO,II.1.1,Mendoza,AR-M,annual,2019,gas oil combustion consumption by public passenger transport,169.33056,TJ,CH4,3.9,kg/TJ,660.389184,kg -dafc1967-da74-311d-879b-b95cc19efff7,SESCO,II.1.1,Mendoza,AR-M,annual,2019,gas oil combustion consumption by public passenger transport,169.33056,TJ,N2O,3.9,kg/TJ,660.389184,kg -908ba98e-cbe7-3add-923c-bcddd142d59f,SESCO,II.1.1,Misiones,AR-N,annual,2019,gas oil combustion consumption by public passenger transport,90.98628,TJ,CO2,74100.0,kg/TJ,6742083.347999999,kg -05a4b105-5546-3985-9140-85cfa1cf4791,SESCO,II.1.1,Misiones,AR-N,annual,2019,gas oil combustion consumption by public passenger transport,90.98628,TJ,CH4,3.9,kg/TJ,354.84649199999996,kg -05a4b105-5546-3985-9140-85cfa1cf4791,SESCO,II.1.1,Misiones,AR-N,annual,2019,gas oil combustion consumption by public passenger transport,90.98628,TJ,N2O,3.9,kg/TJ,354.84649199999996,kg -e1c43453-3e68-3517-b7cd-1a101957e180,SESCO,II.1.1,Neuquén,AR-Q,annual,2019,gas oil combustion consumption by public passenger transport,29.979599999999998,TJ,CO2,74100.0,kg/TJ,2221488.36,kg -4d1b979d-0c57-3723-94ae-f2786d4c6fc0,SESCO,II.1.1,Neuquén,AR-Q,annual,2019,gas oil combustion consumption by public passenger transport,29.979599999999998,TJ,CH4,3.9,kg/TJ,116.92043999999999,kg -4d1b979d-0c57-3723-94ae-f2786d4c6fc0,SESCO,II.1.1,Neuquén,AR-Q,annual,2019,gas oil combustion consumption by public passenger transport,29.979599999999998,TJ,N2O,3.9,kg/TJ,116.92043999999999,kg -78025e22-2120-33d9-bcf5-0465b28ee012,SESCO,II.1.1,Rio Negro,AR-R,annual,2019,gas oil combustion consumption by public passenger transport,178.64952,TJ,CO2,74100.0,kg/TJ,13237929.432,kg -c65370b2-bd85-3ccb-aa48-2be4bfa87398,SESCO,II.1.1,Rio Negro,AR-R,annual,2019,gas oil combustion consumption by public passenger transport,178.64952,TJ,CH4,3.9,kg/TJ,696.733128,kg -c65370b2-bd85-3ccb-aa48-2be4bfa87398,SESCO,II.1.1,Rio Negro,AR-R,annual,2019,gas oil combustion consumption by public passenger transport,178.64952,TJ,N2O,3.9,kg/TJ,696.733128,kg -312ffdb5-9706-3174-864e-88d37f10a59d,SESCO,II.1.1,Salta,AR-A,annual,2019,gas oil combustion consumption by public passenger transport,70.434,TJ,CO2,74100.0,kg/TJ,5219159.399999999,kg -7119b1e3-db76-37d0-ba63-43a2470bced5,SESCO,II.1.1,Salta,AR-A,annual,2019,gas oil combustion consumption by public passenger transport,70.434,TJ,CH4,3.9,kg/TJ,274.69259999999997,kg -7119b1e3-db76-37d0-ba63-43a2470bced5,SESCO,II.1.1,Salta,AR-A,annual,2019,gas oil combustion consumption by public passenger transport,70.434,TJ,N2O,3.9,kg/TJ,274.69259999999997,kg -106ec212-e22e-30c8-9601-b5f966d667cc,SESCO,II.1.1,San Juan,AR-J,annual,2019,gas oil combustion consumption by public passenger transport,108.21552,TJ,CO2,74100.0,kg/TJ,8018770.032,kg -cc4e2452-8fd7-344c-a701-12922823c4fd,SESCO,II.1.1,San Juan,AR-J,annual,2019,gas oil combustion consumption by public passenger transport,108.21552,TJ,CH4,3.9,kg/TJ,422.040528,kg -cc4e2452-8fd7-344c-a701-12922823c4fd,SESCO,II.1.1,San Juan,AR-J,annual,2019,gas oil combustion consumption by public passenger transport,108.21552,TJ,N2O,3.9,kg/TJ,422.040528,kg -7dfdc783-fa17-35e5-92fa-45d5ab69436e,SESCO,II.1.1,San Luis,AR-D,annual,2019,gas oil combustion consumption by public passenger transport,1.30032,TJ,CO2,74100.0,kg/TJ,96353.712,kg -66fcab3a-a8ce-3e45-8c9b-7ed8bdc3ab69,SESCO,II.1.1,San Luis,AR-D,annual,2019,gas oil combustion consumption by public passenger transport,1.30032,TJ,CH4,3.9,kg/TJ,5.071248,kg -66fcab3a-a8ce-3e45-8c9b-7ed8bdc3ab69,SESCO,II.1.1,San Luis,AR-D,annual,2019,gas oil combustion consumption by public passenger transport,1.30032,TJ,N2O,3.9,kg/TJ,5.071248,kg -0a4f77ce-5e6c-3e44-ae37-2d8392a0fda4,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2019,gas oil combustion consumption by public passenger transport,0.03612,TJ,CO2,74100.0,kg/TJ,2676.4919999999997,kg -f44d0187-48a6-3dee-8e71-89c418ca2cbb,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2019,gas oil combustion consumption by public passenger transport,0.03612,TJ,CH4,3.9,kg/TJ,0.140868,kg -f44d0187-48a6-3dee-8e71-89c418ca2cbb,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2019,gas oil combustion consumption by public passenger transport,0.03612,TJ,N2O,3.9,kg/TJ,0.140868,kg -fa9264af-56ce-3666-82b1-3932f92566de,SESCO,II.1.1,Santa Fe,AR-S,annual,2019,gas oil combustion consumption by public passenger transport,107.0958,TJ,CO2,74100.0,kg/TJ,7935798.779999999,kg -c976ca01-fbc6-35ec-805e-98ac0160ddc7,SESCO,II.1.1,Santa Fe,AR-S,annual,2019,gas oil combustion consumption by public passenger transport,107.0958,TJ,CH4,3.9,kg/TJ,417.67361999999997,kg -c976ca01-fbc6-35ec-805e-98ac0160ddc7,SESCO,II.1.1,Santa Fe,AR-S,annual,2019,gas oil combustion consumption by public passenger transport,107.0958,TJ,N2O,3.9,kg/TJ,417.67361999999997,kg -c7f526d4-ac8e-3c70-9e68-f08d00e98648,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2019,gas oil combustion consumption by public passenger transport,0.25284,TJ,CO2,74100.0,kg/TJ,18735.444,kg -342a07b4-7879-3cca-9b00-0750ddb1106d,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2019,gas oil combustion consumption by public passenger transport,0.25284,TJ,CH4,3.9,kg/TJ,0.9860760000000001,kg -342a07b4-7879-3cca-9b00-0750ddb1106d,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2019,gas oil combustion consumption by public passenger transport,0.25284,TJ,N2O,3.9,kg/TJ,0.9860760000000001,kg -4ef96b29-c32b-3a3e-95d2-98274c169e7b,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2019,gas oil combustion consumption by public passenger transport,0.14448,TJ,CO2,74100.0,kg/TJ,10705.967999999999,kg -54ef623a-9bab-3973-bbac-b2f52529085b,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2019,gas oil combustion consumption by public passenger transport,0.14448,TJ,CH4,3.9,kg/TJ,0.563472,kg -54ef623a-9bab-3973-bbac-b2f52529085b,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2019,gas oil combustion consumption by public passenger transport,0.14448,TJ,N2O,3.9,kg/TJ,0.563472,kg -26ca530e-2f69-3315-8a4f-7645b3d2aa98,SESCO,II.1.1,Tucuman,AR-T,annual,2019,gas oil combustion consumption by public passenger transport,1.9866,TJ,CO2,74100.0,kg/TJ,147207.06,kg -724e8652-b7e8-3281-b85c-55cd084c1570,SESCO,II.1.1,Tucuman,AR-T,annual,2019,gas oil combustion consumption by public passenger transport,1.9866,TJ,CH4,3.9,kg/TJ,7.747739999999999,kg -724e8652-b7e8-3281-b85c-55cd084c1570,SESCO,II.1.1,Tucuman,AR-T,annual,2019,gas oil combustion consumption by public passenger transport,1.9866,TJ,N2O,3.9,kg/TJ,7.747739999999999,kg -1d81e84d-792f-3120-94f5-4399d55c8073,SESCO,II.5.1,Buenos Aires,AR-B,annual,2020,gas oil combustion consumption by agriculture machines,557.346048,TJ,CO2,74100.0,kg/TJ,41299342.1568,kg -592f684c-6c79-3429-b770-6998bb6565de,SESCO,II.5.1,Buenos Aires,AR-B,annual,2020,gas oil combustion consumption by agriculture machines,557.346048,TJ,CH4,3.9,kg/TJ,2173.6495872,kg -592f684c-6c79-3429-b770-6998bb6565de,SESCO,II.5.1,Buenos Aires,AR-B,annual,2020,gas oil combustion consumption by agriculture machines,557.346048,TJ,N2O,3.9,kg/TJ,2173.6495872,kg -76df893b-96b7-38a6-a3dc-b03ab1e7d58f,SESCO,II.5.1,Chaco,AR-H,annual,2020,gas oil combustion consumption by agriculture machines,1.33644,TJ,CO2,74100.0,kg/TJ,99030.20400000001,kg -b49d2130-236e-3ba1-bc06-aa4a86017039,SESCO,II.5.1,Chaco,AR-H,annual,2020,gas oil combustion consumption by agriculture machines,1.33644,TJ,CH4,3.9,kg/TJ,5.212116,kg -b49d2130-236e-3ba1-bc06-aa4a86017039,SESCO,II.5.1,Chaco,AR-H,annual,2020,gas oil combustion consumption by agriculture machines,1.33644,TJ,N2O,3.9,kg/TJ,5.212116,kg -10fd97a3-c4b8-34b9-91b0-9625ae5f20c8,SESCO,II.5.1,Córdoba,AR-X,annual,2020,gas oil combustion consumption by agriculture machines,128.771412,TJ,CO2,74100.0,kg/TJ,9541961.6292,kg -0158f0dc-ad29-3f77-9bcf-bc9b72a0bb53,SESCO,II.5.1,Córdoba,AR-X,annual,2020,gas oil combustion consumption by agriculture machines,128.771412,TJ,CH4,3.9,kg/TJ,502.20850679999995,kg -0158f0dc-ad29-3f77-9bcf-bc9b72a0bb53,SESCO,II.5.1,Córdoba,AR-X,annual,2020,gas oil combustion consumption by agriculture machines,128.771412,TJ,N2O,3.9,kg/TJ,502.20850679999995,kg -59a7b395-9422-3c86-a656-075c034cf8ec,SESCO,II.5.1,Entre Rios,AR-E,annual,2020,gas oil combustion consumption by agriculture machines,8.488199999999999,TJ,CO2,74100.0,kg/TJ,628975.6199999999,kg -8340b94a-7289-3bd3-bb2b-79d9797ebffb,SESCO,II.5.1,Entre Rios,AR-E,annual,2020,gas oil combustion consumption by agriculture machines,8.488199999999999,TJ,CH4,3.9,kg/TJ,33.10397999999999,kg -8340b94a-7289-3bd3-bb2b-79d9797ebffb,SESCO,II.5.1,Entre Rios,AR-E,annual,2020,gas oil combustion consumption by agriculture machines,8.488199999999999,TJ,N2O,3.9,kg/TJ,33.10397999999999,kg -e0a18223-f0c7-3cc1-9ee0-1701d69eae26,SESCO,II.5.1,La Pampa,AR-L,annual,2020,gas oil combustion consumption by agriculture machines,51.861095999999996,TJ,CO2,74100.0,kg/TJ,3842907.2136,kg -c9ea5e9f-51e1-37e4-a291-00b03c3e7054,SESCO,II.5.1,La Pampa,AR-L,annual,2020,gas oil combustion consumption by agriculture machines,51.861095999999996,TJ,CH4,3.9,kg/TJ,202.25827439999998,kg -c9ea5e9f-51e1-37e4-a291-00b03c3e7054,SESCO,II.5.1,La Pampa,AR-L,annual,2020,gas oil combustion consumption by agriculture machines,51.861095999999996,TJ,N2O,3.9,kg/TJ,202.25827439999998,kg -5942317b-1d92-3cac-b1d0-7b97e59c9990,SESCO,II.5.1,Santa Fe,AR-S,annual,2020,gas oil combustion consumption by agriculture machines,212.118312,TJ,CO2,74100.0,kg/TJ,15717966.9192,kg -90463ba7-93e7-3375-8217-282f3dee3983,SESCO,II.5.1,Santa Fe,AR-S,annual,2020,gas oil combustion consumption by agriculture machines,212.118312,TJ,CH4,3.9,kg/TJ,827.2614168,kg -90463ba7-93e7-3375-8217-282f3dee3983,SESCO,II.5.1,Santa Fe,AR-S,annual,2020,gas oil combustion consumption by agriculture machines,212.118312,TJ,N2O,3.9,kg/TJ,827.2614168,kg -d96e43fe-9786-3d87-bb82-ffa1715906aa,SESCO,II.5.1,Buenos Aires,AR-B,annual,2020,gas oil combustion consumption by agriculture machines,12.06408,TJ,CO2,74100.0,kg/TJ,893948.3280000001,kg -e50d4a4d-1d00-31a6-a55d-1e65c3fb535b,SESCO,II.5.1,Buenos Aires,AR-B,annual,2020,gas oil combustion consumption by agriculture machines,12.06408,TJ,CH4,3.9,kg/TJ,47.049912,kg -e50d4a4d-1d00-31a6-a55d-1e65c3fb535b,SESCO,II.5.1,Buenos Aires,AR-B,annual,2020,gas oil combustion consumption by agriculture machines,12.06408,TJ,N2O,3.9,kg/TJ,47.049912,kg -d43cf989-e052-3289-9fe7-d9de62211b45,SESCO,II.5.1,Córdoba,AR-X,annual,2020,gas oil combustion consumption by agriculture machines,1.8385079999999998,TJ,CO2,74100.0,kg/TJ,136233.4428,kg -5dfa3c58-7bee-3358-8aaf-640b64a8d3ea,SESCO,II.5.1,Córdoba,AR-X,annual,2020,gas oil combustion consumption by agriculture machines,1.8385079999999998,TJ,CH4,3.9,kg/TJ,7.170181199999999,kg -5dfa3c58-7bee-3358-8aaf-640b64a8d3ea,SESCO,II.5.1,Córdoba,AR-X,annual,2020,gas oil combustion consumption by agriculture machines,1.8385079999999998,TJ,N2O,3.9,kg/TJ,7.170181199999999,kg -8e098029-7203-30cf-9afa-91fd9c976a3e,SESCO,II.5.1,Santa Fe,AR-S,annual,2020,gas oil combustion consumption by agriculture machines,3.21468,TJ,CO2,74100.0,kg/TJ,238207.788,kg -cbecbe1b-5469-377c-baf6-9a5fe1d68181,SESCO,II.5.1,Santa Fe,AR-S,annual,2020,gas oil combustion consumption by agriculture machines,3.21468,TJ,CH4,3.9,kg/TJ,12.537252,kg -cbecbe1b-5469-377c-baf6-9a5fe1d68181,SESCO,II.5.1,Santa Fe,AR-S,annual,2020,gas oil combustion consumption by agriculture machines,3.21468,TJ,N2O,3.9,kg/TJ,12.537252,kg -5bf31364-3dbf-394c-a7eb-74f33105a82d,SESCO,II.1.1,Buenos Aires,AR-B,annual,2020,gas oil combustion consumption by to the public,1646.3496,TJ,CO2,74100.0,kg/TJ,121994505.36,kg -fe6f1d34-6ac7-33bc-be67-2ad78194773e,SESCO,II.1.1,Buenos Aires,AR-B,annual,2020,gas oil combustion consumption by to the public,1646.3496,TJ,CH4,3.9,kg/TJ,6420.76344,kg -fe6f1d34-6ac7-33bc-be67-2ad78194773e,SESCO,II.1.1,Buenos Aires,AR-B,annual,2020,gas oil combustion consumption by to the public,1646.3496,TJ,N2O,3.9,kg/TJ,6420.76344,kg -833c0f7a-9fef-3301-b6cc-af6bb7bec413,SESCO,II.1.1,Capital Federal,AR-C,annual,2020,gas oil combustion consumption by to the public,72.102744,TJ,CO2,74100.0,kg/TJ,5342813.3304,kg -25180c3d-e2ef-3d00-96a1-8225ca45c2b5,SESCO,II.1.1,Capital Federal,AR-C,annual,2020,gas oil combustion consumption by to the public,72.102744,TJ,CH4,3.9,kg/TJ,281.2007016,kg -25180c3d-e2ef-3d00-96a1-8225ca45c2b5,SESCO,II.1.1,Capital Federal,AR-C,annual,2020,gas oil combustion consumption by to the public,72.102744,TJ,N2O,3.9,kg/TJ,281.2007016,kg -b08c6250-0fa8-32f3-a7a0-ac47b4ef0a39,SESCO,II.1.1,Catamarca,AR-K,annual,2020,gas oil combustion consumption by to the public,12.930959999999999,TJ,CO2,74100.0,kg/TJ,958184.1359999999,kg -fe195956-f6f8-3978-a8b7-80b2c6baddb3,SESCO,II.1.1,Catamarca,AR-K,annual,2020,gas oil combustion consumption by to the public,12.930959999999999,TJ,CH4,3.9,kg/TJ,50.430744,kg -fe195956-f6f8-3978-a8b7-80b2c6baddb3,SESCO,II.1.1,Catamarca,AR-K,annual,2020,gas oil combustion consumption by to the public,12.930959999999999,TJ,N2O,3.9,kg/TJ,50.430744,kg -25a57540-a9a8-3004-b6d5-ea591b4297c6,SESCO,II.1.1,Chaco,AR-H,annual,2020,gas oil combustion consumption by to the public,13.14768,TJ,CO2,74100.0,kg/TJ,974243.088,kg -2f4dba9c-4ad4-369d-80ab-59ab678445d8,SESCO,II.1.1,Chaco,AR-H,annual,2020,gas oil combustion consumption by to the public,13.14768,TJ,CH4,3.9,kg/TJ,51.275952,kg -2f4dba9c-4ad4-369d-80ab-59ab678445d8,SESCO,II.1.1,Chaco,AR-H,annual,2020,gas oil combustion consumption by to the public,13.14768,TJ,N2O,3.9,kg/TJ,51.275952,kg -dd0a6f5f-045d-3a3c-8491-576623775bce,SESCO,II.1.1,Corrientes,AR-W,annual,2020,gas oil combustion consumption by to the public,4.29828,TJ,CO2,74100.0,kg/TJ,318502.548,kg -111f7d0e-b2c7-3739-bc61-6d3e46f5167e,SESCO,II.1.1,Corrientes,AR-W,annual,2020,gas oil combustion consumption by to the public,4.29828,TJ,CH4,3.9,kg/TJ,16.763292,kg -111f7d0e-b2c7-3739-bc61-6d3e46f5167e,SESCO,II.1.1,Corrientes,AR-W,annual,2020,gas oil combustion consumption by to the public,4.29828,TJ,N2O,3.9,kg/TJ,16.763292,kg -e0c02462-603c-3a21-b237-f94320307b5e,SESCO,II.1.1,Córdoba,AR-X,annual,2020,gas oil combustion consumption by to the public,871.644228,TJ,CO2,74100.0,kg/TJ,64588837.2948,kg -344aa49c-0197-3cc3-b6dd-65d031cc387d,SESCO,II.1.1,Córdoba,AR-X,annual,2020,gas oil combustion consumption by to the public,871.644228,TJ,CH4,3.9,kg/TJ,3399.4124892,kg -344aa49c-0197-3cc3-b6dd-65d031cc387d,SESCO,II.1.1,Córdoba,AR-X,annual,2020,gas oil combustion consumption by to the public,871.644228,TJ,N2O,3.9,kg/TJ,3399.4124892,kg -272b6151-5052-3a56-85f7-8b3b1253ab82,SESCO,II.1.1,Entre Rios,AR-E,annual,2020,gas oil combustion consumption by to the public,153.542508,TJ,CO2,74100.0,kg/TJ,11377499.8428,kg -b6471920-b37f-35f3-8147-81121da99430,SESCO,II.1.1,Entre Rios,AR-E,annual,2020,gas oil combustion consumption by to the public,153.542508,TJ,CH4,3.9,kg/TJ,598.8157812,kg -b6471920-b37f-35f3-8147-81121da99430,SESCO,II.1.1,Entre Rios,AR-E,annual,2020,gas oil combustion consumption by to the public,153.542508,TJ,N2O,3.9,kg/TJ,598.8157812,kg -ab0e9b2b-1767-3fcc-a7e9-5a8c96ef673f,SESCO,II.1.1,Mendoza,AR-M,annual,2020,gas oil combustion consumption by to the public,286.68444,TJ,CO2,74100.0,kg/TJ,21243317.004,kg -abc3ac14-448f-3e0e-958c-3e2fca422c25,SESCO,II.1.1,Mendoza,AR-M,annual,2020,gas oil combustion consumption by to the public,286.68444,TJ,CH4,3.9,kg/TJ,1118.0693159999998,kg -abc3ac14-448f-3e0e-958c-3e2fca422c25,SESCO,II.1.1,Mendoza,AR-M,annual,2020,gas oil combustion consumption by to the public,286.68444,TJ,N2O,3.9,kg/TJ,1118.0693159999998,kg -dd7eec8c-fbde-39ed-a743-27f6c90441cb,SESCO,II.1.1,San Juan,AR-J,annual,2020,gas oil combustion consumption by to the public,10.2942,TJ,CO2,74100.0,kg/TJ,762800.22,kg -674329aa-6e4d-3572-be1c-a9d18719fc4f,SESCO,II.1.1,San Juan,AR-J,annual,2020,gas oil combustion consumption by to the public,10.2942,TJ,CH4,3.9,kg/TJ,40.14738,kg -674329aa-6e4d-3572-be1c-a9d18719fc4f,SESCO,II.1.1,San Juan,AR-J,annual,2020,gas oil combustion consumption by to the public,10.2942,TJ,N2O,3.9,kg/TJ,40.14738,kg -8c8e919b-002c-3567-9dbe-2c884ee748c2,SESCO,II.1.1,San Luis,AR-D,annual,2020,gas oil combustion consumption by to the public,11.70288,TJ,CO2,74100.0,kg/TJ,867183.408,kg -c7921872-9042-3300-a142-f8a7f68a4e91,SESCO,II.1.1,San Luis,AR-D,annual,2020,gas oil combustion consumption by to the public,11.70288,TJ,CH4,3.9,kg/TJ,45.641232,kg -c7921872-9042-3300-a142-f8a7f68a4e91,SESCO,II.1.1,San Luis,AR-D,annual,2020,gas oil combustion consumption by to the public,11.70288,TJ,N2O,3.9,kg/TJ,45.641232,kg -98ff5448-d682-3810-845e-2de6d994e1d2,SESCO,II.1.1,Santa Fe,AR-S,annual,2020,gas oil combustion consumption by to the public,1362.161052,TJ,CO2,74100.0,kg/TJ,100936133.9532,kg -66111f52-e77a-3f9f-899c-79d989b50f5c,SESCO,II.1.1,Santa Fe,AR-S,annual,2020,gas oil combustion consumption by to the public,1362.161052,TJ,CH4,3.9,kg/TJ,5312.4281028,kg -66111f52-e77a-3f9f-899c-79d989b50f5c,SESCO,II.1.1,Santa Fe,AR-S,annual,2020,gas oil combustion consumption by to the public,1362.161052,TJ,N2O,3.9,kg/TJ,5312.4281028,kg -275db23b-4c48-338d-b64f-afb5c7a2c63b,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2020,gas oil combustion consumption by to the public,41.03232,TJ,CO2,74100.0,kg/TJ,3040494.912,kg -4f6f3f85-d500-3fc2-8fcb-3ec60698f05c,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2020,gas oil combustion consumption by to the public,41.03232,TJ,CH4,3.9,kg/TJ,160.026048,kg -4f6f3f85-d500-3fc2-8fcb-3ec60698f05c,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2020,gas oil combustion consumption by to the public,41.03232,TJ,N2O,3.9,kg/TJ,160.026048,kg -13d0e52d-76a0-3c35-8149-6af9c759f82a,SESCO,II.1.1,Tucuman,AR-T,annual,2020,gas oil combustion consumption by to the public,232.45387200000002,TJ,CO2,74100.0,kg/TJ,17224831.915200002,kg -2256f07a-aae7-34a8-8715-a72c8e16e654,SESCO,II.1.1,Tucuman,AR-T,annual,2020,gas oil combustion consumption by to the public,232.45387200000002,TJ,CH4,3.9,kg/TJ,906.5701008000001,kg -2256f07a-aae7-34a8-8715-a72c8e16e654,SESCO,II.1.1,Tucuman,AR-T,annual,2020,gas oil combustion consumption by to the public,232.45387200000002,TJ,N2O,3.9,kg/TJ,906.5701008000001,kg -606f4070-9011-3052-8ee7-6281730105ae,SESCO,II.1.1,Buenos Aires,AR-B,annual,2020,gas oil combustion consumption by to the public,112.11648,TJ,CO2,74100.0,kg/TJ,8307831.168,kg -f9d718b8-f419-358f-96eb-95600221ece6,SESCO,II.1.1,Buenos Aires,AR-B,annual,2020,gas oil combustion consumption by to the public,112.11648,TJ,CH4,3.9,kg/TJ,437.25427199999996,kg -f9d718b8-f419-358f-96eb-95600221ece6,SESCO,II.1.1,Buenos Aires,AR-B,annual,2020,gas oil combustion consumption by to the public,112.11648,TJ,N2O,3.9,kg/TJ,437.25427199999996,kg -896ab571-f908-35f1-b130-06cd9af4835c,SESCO,II.1.1,Capital Federal,AR-C,annual,2020,gas oil combustion consumption by to the public,13.0032,TJ,CO2,74100.0,kg/TJ,963537.12,kg -30e54ee4-4e96-3f90-aaf6-3155ceb1f0d3,SESCO,II.1.1,Capital Federal,AR-C,annual,2020,gas oil combustion consumption by to the public,13.0032,TJ,CH4,3.9,kg/TJ,50.71248,kg -30e54ee4-4e96-3f90-aaf6-3155ceb1f0d3,SESCO,II.1.1,Capital Federal,AR-C,annual,2020,gas oil combustion consumption by to the public,13.0032,TJ,N2O,3.9,kg/TJ,50.71248,kg -b6a3402b-0578-3767-8316-1a901f65832f,SESCO,II.1.1,Catamarca,AR-K,annual,2020,gas oil combustion consumption by to the public,10.07748,TJ,CO2,74100.0,kg/TJ,746741.2679999999,kg -f9585115-c258-3f10-ac3e-da5bcda51eb1,SESCO,II.1.1,Catamarca,AR-K,annual,2020,gas oil combustion consumption by to the public,10.07748,TJ,CH4,3.9,kg/TJ,39.302172,kg -f9585115-c258-3f10-ac3e-da5bcda51eb1,SESCO,II.1.1,Catamarca,AR-K,annual,2020,gas oil combustion consumption by to the public,10.07748,TJ,N2O,3.9,kg/TJ,39.302172,kg -dad7f271-2280-3787-8b79-2bca2949598b,SESCO,II.1.1,Chaco,AR-H,annual,2020,gas oil combustion consumption by to the public,2.3478,TJ,CO2,74100.0,kg/TJ,173971.97999999998,kg -4797ce86-f0dd-313e-9771-0abddc9af794,SESCO,II.1.1,Chaco,AR-H,annual,2020,gas oil combustion consumption by to the public,2.3478,TJ,CH4,3.9,kg/TJ,9.156419999999999,kg -4797ce86-f0dd-313e-9771-0abddc9af794,SESCO,II.1.1,Chaco,AR-H,annual,2020,gas oil combustion consumption by to the public,2.3478,TJ,N2O,3.9,kg/TJ,9.156419999999999,kg -dbf8f640-32db-383b-8b7d-4a4d84ddeedd,SESCO,II.1.1,Corrientes,AR-W,annual,2020,gas oil combustion consumption by to the public,4.40664,TJ,CO2,74100.0,kg/TJ,326532.02400000003,kg -999cdf2e-3c06-313d-aab6-5c2e92c9834d,SESCO,II.1.1,Corrientes,AR-W,annual,2020,gas oil combustion consumption by to the public,4.40664,TJ,CH4,3.9,kg/TJ,17.185896,kg -999cdf2e-3c06-313d-aab6-5c2e92c9834d,SESCO,II.1.1,Corrientes,AR-W,annual,2020,gas oil combustion consumption by to the public,4.40664,TJ,N2O,3.9,kg/TJ,17.185896,kg -9323f420-d671-33be-88c7-c19bf1f6caac,SESCO,II.1.1,Córdoba,AR-X,annual,2020,gas oil combustion consumption by to the public,132.155856,TJ,CO2,74100.0,kg/TJ,9792748.9296,kg -1bee1e50-fc8d-3e0a-9fe5-803012930ea4,SESCO,II.1.1,Córdoba,AR-X,annual,2020,gas oil combustion consumption by to the public,132.155856,TJ,CH4,3.9,kg/TJ,515.4078384,kg -1bee1e50-fc8d-3e0a-9fe5-803012930ea4,SESCO,II.1.1,Córdoba,AR-X,annual,2020,gas oil combustion consumption by to the public,132.155856,TJ,N2O,3.9,kg/TJ,515.4078384,kg -c233b7e9-08c5-3792-9520-778c770caedd,SESCO,II.1.1,Entre Rios,AR-E,annual,2020,gas oil combustion consumption by to the public,19.475904,TJ,CO2,74100.0,kg/TJ,1443164.4864,kg -7ddb2d36-d13a-3718-b012-cb758feadd50,SESCO,II.1.1,Entre Rios,AR-E,annual,2020,gas oil combustion consumption by to the public,19.475904,TJ,CH4,3.9,kg/TJ,75.9560256,kg -7ddb2d36-d13a-3718-b012-cb758feadd50,SESCO,II.1.1,Entre Rios,AR-E,annual,2020,gas oil combustion consumption by to the public,19.475904,TJ,N2O,3.9,kg/TJ,75.9560256,kg -9b7d2a64-6f0c-37c2-821f-d18387d33f49,SESCO,II.1.1,Mendoza,AR-M,annual,2020,gas oil combustion consumption by to the public,66.91591199999999,TJ,CO2,74100.0,kg/TJ,4958469.0792,kg -df0d3514-49f8-3cbe-85d1-a5f3faf3a335,SESCO,II.1.1,Mendoza,AR-M,annual,2020,gas oil combustion consumption by to the public,66.91591199999999,TJ,CH4,3.9,kg/TJ,260.97205679999996,kg -df0d3514-49f8-3cbe-85d1-a5f3faf3a335,SESCO,II.1.1,Mendoza,AR-M,annual,2020,gas oil combustion consumption by to the public,66.91591199999999,TJ,N2O,3.9,kg/TJ,260.97205679999996,kg -39e3371b-ef23-3cf2-9c31-68a61f80455f,SESCO,II.1.1,San Juan,AR-J,annual,2020,gas oil combustion consumption by to the public,2.45616,TJ,CO2,74100.0,kg/TJ,182001.456,kg -b46a676d-32ce-390e-9d4b-f7f08376cc29,SESCO,II.1.1,San Juan,AR-J,annual,2020,gas oil combustion consumption by to the public,2.45616,TJ,CH4,3.9,kg/TJ,9.579024,kg -b46a676d-32ce-390e-9d4b-f7f08376cc29,SESCO,II.1.1,San Juan,AR-J,annual,2020,gas oil combustion consumption by to the public,2.45616,TJ,N2O,3.9,kg/TJ,9.579024,kg -d21c5688-d19a-3c68-a4ef-1b4b45171358,SESCO,II.1.1,San Luis,AR-D,annual,2020,gas oil combustion consumption by to the public,2.74512,TJ,CO2,74100.0,kg/TJ,203413.392,kg -c10bfa31-e197-358e-ba42-51107143036b,SESCO,II.1.1,San Luis,AR-D,annual,2020,gas oil combustion consumption by to the public,2.74512,TJ,CH4,3.9,kg/TJ,10.705968,kg -c10bfa31-e197-358e-ba42-51107143036b,SESCO,II.1.1,San Luis,AR-D,annual,2020,gas oil combustion consumption by to the public,2.74512,TJ,N2O,3.9,kg/TJ,10.705968,kg -f3e33dde-5e3d-31b7-bc78-aca79fbfb12f,SESCO,II.1.1,Santa Fe,AR-S,annual,2020,gas oil combustion consumption by to the public,97.845468,TJ,CO2,74100.0,kg/TJ,7250349.1788,kg -8290e9e6-b086-3094-83fb-4ee31e911e3c,SESCO,II.1.1,Santa Fe,AR-S,annual,2020,gas oil combustion consumption by to the public,97.845468,TJ,CH4,3.9,kg/TJ,381.5973252,kg -8290e9e6-b086-3094-83fb-4ee31e911e3c,SESCO,II.1.1,Santa Fe,AR-S,annual,2020,gas oil combustion consumption by to the public,97.845468,TJ,N2O,3.9,kg/TJ,381.5973252,kg -98ba8be2-ec4d-3f75-884f-a7ee3246b8a8,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2020,gas oil combustion consumption by to the public,9.03,TJ,CO2,74100.0,kg/TJ,669123.0,kg -269e6de1-426a-342d-9acb-828876ff76d8,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2020,gas oil combustion consumption by to the public,9.03,TJ,CH4,3.9,kg/TJ,35.217,kg -269e6de1-426a-342d-9acb-828876ff76d8,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2020,gas oil combustion consumption by to the public,9.03,TJ,N2O,3.9,kg/TJ,35.217,kg -a83ba660-105e-311a-8643-1c34e7ac27bf,SESCO,II.1.1,Tucuman,AR-T,annual,2020,gas oil combustion consumption by to the public,22.32216,TJ,CO2,74100.0,kg/TJ,1654072.056,kg -620df14d-2d3b-3ba2-8009-2bb5cbf297f7,SESCO,II.1.1,Tucuman,AR-T,annual,2020,gas oil combustion consumption by to the public,22.32216,TJ,CH4,3.9,kg/TJ,87.05642399999999,kg -620df14d-2d3b-3ba2-8009-2bb5cbf297f7,SESCO,II.1.1,Tucuman,AR-T,annual,2020,gas oil combustion consumption by to the public,22.32216,TJ,N2O,3.9,kg/TJ,87.05642399999999,kg -58c7eb34-01e8-3406-b87f-69472e197da9,SESCO,II.1.1,Buenos Aires,AR-B,annual,2020,jet kerosene combustion consumption by to the public,0.157265,TJ,CO2,71500.0,kg/TJ,11244.447499999998,kg -0e9b496b-171a-3076-95ef-40b0c4632a69,SESCO,II.1.1,Buenos Aires,AR-B,annual,2020,jet kerosene combustion consumption by to the public,0.157265,TJ,CH4,0.5,kg/TJ,0.0786325,kg -a166714a-d954-3d9e-87f2-6ca9ac8a9f35,SESCO,II.1.1,Buenos Aires,AR-B,annual,2020,jet kerosene combustion consumption by to the public,0.157265,TJ,N2O,2.0,kg/TJ,0.31453,kg -b493337a-1125-3b4b-922a-6e236de4259c,SESCO,II.1.1,Córdoba,AR-X,annual,2020,jet kerosene combustion consumption by to the public,0.62906,TJ,CO2,71500.0,kg/TJ,44977.78999999999,kg -e2750b84-1bf2-38d9-8e23-3af57920c4d3,SESCO,II.1.1,Córdoba,AR-X,annual,2020,jet kerosene combustion consumption by to the public,0.62906,TJ,CH4,0.5,kg/TJ,0.31453,kg -c95f961c-2a3a-3ede-a79d-a254176867ab,SESCO,II.1.1,Córdoba,AR-X,annual,2020,jet kerosene combustion consumption by to the public,0.62906,TJ,N2O,2.0,kg/TJ,1.25812,kg -8f042073-0675-325b-872c-aa2df7d07e95,SESCO,II.1.1,Santa Fe,AR-S,annual,2020,jet kerosene combustion consumption by to the public,0.37743599999999994,TJ,CO2,71500.0,kg/TJ,26986.673999999995,kg -5eac0cc8-0474-36d0-bc0a-62eea393ff9a,SESCO,II.1.1,Santa Fe,AR-S,annual,2020,jet kerosene combustion consumption by to the public,0.37743599999999994,TJ,CH4,0.5,kg/TJ,0.18871799999999997,kg -b24063ef-f9e2-38a2-8b9d-9a9cfc77b6e2,SESCO,II.1.1,Santa Fe,AR-S,annual,2020,jet kerosene combustion consumption by to the public,0.37743599999999994,TJ,N2O,2.0,kg/TJ,0.7548719999999999,kg -f8cf024d-6b80-332e-bfa3-376e91a3d2be,SESCO,I.3.1,Santa Fe,AR-S,annual,2020,gasoline combustion consumption by petrochemical industries,22.353337,TJ,CO2,69300.0,kg/TJ,1549086.2541,kg -e8a534c4-4803-367f-824e-a653f4738efc,SESCO,I.3.1,Santa Fe,AR-S,annual,2020,gasoline combustion consumption by petrochemical industries,22.353337,TJ,CH4,33.0,kg/TJ,737.660121,kg -a674e30a-b93c-32ba-99f8-46d60ad5a223,SESCO,I.3.1,Santa Fe,AR-S,annual,2020,gasoline combustion consumption by petrochemical industries,22.353337,TJ,N2O,3.2,kg/TJ,71.5306784,kg -a2b36bea-3b22-339f-b236-bb0d1ea790c6,SESCO,II.5.1,Buenos Aires,AR-B,annual,2020,gas oil combustion consumption by agriculture machines,3.86484,TJ,CO2,74100.0,kg/TJ,286384.64400000003,kg -2e7fcdb4-93bd-3b39-8690-162ae53153ed,SESCO,II.5.1,Buenos Aires,AR-B,annual,2020,gas oil combustion consumption by agriculture machines,3.86484,TJ,CH4,3.9,kg/TJ,15.072875999999999,kg -2e7fcdb4-93bd-3b39-8690-162ae53153ed,SESCO,II.5.1,Buenos Aires,AR-B,annual,2020,gas oil combustion consumption by agriculture machines,3.86484,TJ,N2O,3.9,kg/TJ,15.072875999999999,kg -26ca6970-5091-3b9a-8a39-33ef7b2ab8b6,SESCO,II.5.1,Buenos Aires,AR-B,annual,2020,gas oil combustion consumption by agriculture machines,394.9722,TJ,CO2,74100.0,kg/TJ,29267440.02,kg -4e1b105c-bf30-350d-8003-b45eeb74b6d0,SESCO,II.5.1,Buenos Aires,AR-B,annual,2020,gas oil combustion consumption by agriculture machines,394.9722,TJ,CH4,3.9,kg/TJ,1540.39158,kg -4e1b105c-bf30-350d-8003-b45eeb74b6d0,SESCO,II.5.1,Buenos Aires,AR-B,annual,2020,gas oil combustion consumption by agriculture machines,394.9722,TJ,N2O,3.9,kg/TJ,1540.39158,kg -2eef4a35-9228-3aed-99c1-bed99aeb7733,SESCO,II.5.1,Chaco,AR-H,annual,2020,gas oil combustion consumption by agriculture machines,46.66704,TJ,CO2,74100.0,kg/TJ,3458027.664,kg -6cedeb47-f754-314c-b42f-6bb859341bab,SESCO,II.5.1,Chaco,AR-H,annual,2020,gas oil combustion consumption by agriculture machines,46.66704,TJ,CH4,3.9,kg/TJ,182.001456,kg -6cedeb47-f754-314c-b42f-6bb859341bab,SESCO,II.5.1,Chaco,AR-H,annual,2020,gas oil combustion consumption by agriculture machines,46.66704,TJ,N2O,3.9,kg/TJ,182.001456,kg -65d860bb-ff96-3d46-b3ae-9c392b6e639b,SESCO,II.5.1,Córdoba,AR-X,annual,2020,gas oil combustion consumption by agriculture machines,888.0101999999999,TJ,CO2,74100.0,kg/TJ,65801555.81999999,kg -e5658a0b-77cc-3728-a2e8-1091e3fb8a4c,SESCO,II.5.1,Córdoba,AR-X,annual,2020,gas oil combustion consumption by agriculture machines,888.0101999999999,TJ,CH4,3.9,kg/TJ,3463.23978,kg -e5658a0b-77cc-3728-a2e8-1091e3fb8a4c,SESCO,II.5.1,Córdoba,AR-X,annual,2020,gas oil combustion consumption by agriculture machines,888.0101999999999,TJ,N2O,3.9,kg/TJ,3463.23978,kg -254b9aa4-2d9a-3dfa-abac-a8f19ea01075,SESCO,II.5.1,Entre Rios,AR-E,annual,2020,gas oil combustion consumption by agriculture machines,190.82196,TJ,CO2,74100.0,kg/TJ,14139907.236,kg -8bd4edbf-d9ab-3d0c-8d14-3fae05be2ebc,SESCO,II.5.1,Entre Rios,AR-E,annual,2020,gas oil combustion consumption by agriculture machines,190.82196,TJ,CH4,3.9,kg/TJ,744.2056439999999,kg -8bd4edbf-d9ab-3d0c-8d14-3fae05be2ebc,SESCO,II.5.1,Entre Rios,AR-E,annual,2020,gas oil combustion consumption by agriculture machines,190.82196,TJ,N2O,3.9,kg/TJ,744.2056439999999,kg -2576cf7e-22a2-39e2-894e-02eb9f5f126a,SESCO,II.5.1,Mendoza,AR-M,annual,2020,gas oil combustion consumption by agriculture machines,0.86688,TJ,CO2,74100.0,kg/TJ,64235.808,kg -da7296c1-f429-32d7-814f-64d319b240ce,SESCO,II.5.1,Mendoza,AR-M,annual,2020,gas oil combustion consumption by agriculture machines,0.86688,TJ,CH4,3.9,kg/TJ,3.380832,kg -da7296c1-f429-32d7-814f-64d319b240ce,SESCO,II.5.1,Mendoza,AR-M,annual,2020,gas oil combustion consumption by agriculture machines,0.86688,TJ,N2O,3.9,kg/TJ,3.380832,kg -ff3c55c7-4c81-3685-b579-3c9c3dc86517,SESCO,II.5.1,Salta,AR-A,annual,2020,gas oil combustion consumption by agriculture machines,90.3,TJ,CO2,74100.0,kg/TJ,6691230.0,kg -b825383b-89dd-368e-822b-067b57ed900c,SESCO,II.5.1,Salta,AR-A,annual,2020,gas oil combustion consumption by agriculture machines,90.3,TJ,CH4,3.9,kg/TJ,352.16999999999996,kg -b825383b-89dd-368e-822b-067b57ed900c,SESCO,II.5.1,Salta,AR-A,annual,2020,gas oil combustion consumption by agriculture machines,90.3,TJ,N2O,3.9,kg/TJ,352.16999999999996,kg -37c1c0b8-4fe1-3c86-9e09-e9158589a8ef,SESCO,II.5.1,Santa Cruz,AR-Z,annual,2020,gas oil combustion consumption by agriculture machines,9.7524,TJ,CO2,74100.0,kg/TJ,722652.84,kg -18a5e169-0f81-33e4-994d-89782494e503,SESCO,II.5.1,Santa Cruz,AR-Z,annual,2020,gas oil combustion consumption by agriculture machines,9.7524,TJ,CH4,3.9,kg/TJ,38.03436,kg -18a5e169-0f81-33e4-994d-89782494e503,SESCO,II.5.1,Santa Cruz,AR-Z,annual,2020,gas oil combustion consumption by agriculture machines,9.7524,TJ,N2O,3.9,kg/TJ,38.03436,kg -64c69aa6-1661-3584-9292-d56009b9f062,SESCO,II.5.1,Santa Fe,AR-S,annual,2020,gas oil combustion consumption by agriculture machines,113.27232,TJ,CO2,74100.0,kg/TJ,8393478.911999999,kg -d424dd51-a568-3416-9f10-be5737243e0e,SESCO,II.5.1,Santa Fe,AR-S,annual,2020,gas oil combustion consumption by agriculture machines,113.27232,TJ,CH4,3.9,kg/TJ,441.76204799999994,kg -d424dd51-a568-3416-9f10-be5737243e0e,SESCO,II.5.1,Santa Fe,AR-S,annual,2020,gas oil combustion consumption by agriculture machines,113.27232,TJ,N2O,3.9,kg/TJ,441.76204799999994,kg -45ec0113-eb15-3e05-9a0d-cf8cb1982d0f,SESCO,II.5.1,Buenos Aires,AR-B,annual,2020,gas oil combustion consumption by agriculture machines,6.321,TJ,CO2,74100.0,kg/TJ,468386.1,kg -a31662e9-bde3-3fe4-84b5-e311734dc31e,SESCO,II.5.1,Buenos Aires,AR-B,annual,2020,gas oil combustion consumption by agriculture machines,6.321,TJ,CH4,3.9,kg/TJ,24.651899999999998,kg -a31662e9-bde3-3fe4-84b5-e311734dc31e,SESCO,II.5.1,Buenos Aires,AR-B,annual,2020,gas oil combustion consumption by agriculture machines,6.321,TJ,N2O,3.9,kg/TJ,24.651899999999998,kg -286d5568-56a7-3917-a03c-91822548755b,SESCO,II.5.1,Chaco,AR-H,annual,2020,gas oil combustion consumption by agriculture machines,4.94844,TJ,CO2,74100.0,kg/TJ,366679.404,kg -1226241e-1961-3b4c-b143-e93f8766ea44,SESCO,II.5.1,Chaco,AR-H,annual,2020,gas oil combustion consumption by agriculture machines,4.94844,TJ,CH4,3.9,kg/TJ,19.298916,kg -1226241e-1961-3b4c-b143-e93f8766ea44,SESCO,II.5.1,Chaco,AR-H,annual,2020,gas oil combustion consumption by agriculture machines,4.94844,TJ,N2O,3.9,kg/TJ,19.298916,kg -96b4a61d-bca2-3d74-9cb6-65b732a1d7e7,SESCO,II.5.1,Córdoba,AR-X,annual,2020,gas oil combustion consumption by agriculture machines,8.27148,TJ,CO2,74100.0,kg/TJ,612916.6680000001,kg -df8a1658-99de-3194-ba56-f7dd53c74347,SESCO,II.5.1,Córdoba,AR-X,annual,2020,gas oil combustion consumption by agriculture machines,8.27148,TJ,CH4,3.9,kg/TJ,32.258772,kg -df8a1658-99de-3194-ba56-f7dd53c74347,SESCO,II.5.1,Córdoba,AR-X,annual,2020,gas oil combustion consumption by agriculture machines,8.27148,TJ,N2O,3.9,kg/TJ,32.258772,kg -bc6f3940-95da-367c-9f0e-c141b5f09022,SESCO,II.5.1,Entre Rios,AR-E,annual,2020,gas oil combustion consumption by agriculture machines,3.50364,TJ,CO2,74100.0,kg/TJ,259619.724,kg -4ee88f00-2fbf-3c9e-90c9-b88144c1b68e,SESCO,II.5.1,Entre Rios,AR-E,annual,2020,gas oil combustion consumption by agriculture machines,3.50364,TJ,CH4,3.9,kg/TJ,13.664195999999999,kg -4ee88f00-2fbf-3c9e-90c9-b88144c1b68e,SESCO,II.5.1,Entre Rios,AR-E,annual,2020,gas oil combustion consumption by agriculture machines,3.50364,TJ,N2O,3.9,kg/TJ,13.664195999999999,kg -28483856-f024-394b-89ce-546ad736eecc,SESCO,II.5.1,Mendoza,AR-M,annual,2020,gas oil combustion consumption by agriculture machines,0.14448,TJ,CO2,74100.0,kg/TJ,10705.967999999999,kg -6d268421-959e-3eb8-8ba8-9e01783c0981,SESCO,II.5.1,Mendoza,AR-M,annual,2020,gas oil combustion consumption by agriculture machines,0.14448,TJ,CH4,3.9,kg/TJ,0.563472,kg -6d268421-959e-3eb8-8ba8-9e01783c0981,SESCO,II.5.1,Mendoza,AR-M,annual,2020,gas oil combustion consumption by agriculture machines,0.14448,TJ,N2O,3.9,kg/TJ,0.563472,kg -9399cb42-b9fb-32c2-a73d-40a4f3d02d33,SESCO,II.5.1,Santa Cruz,AR-Z,annual,2020,gas oil combustion consumption by agriculture machines,0.36119999999999997,TJ,CO2,74100.0,kg/TJ,26764.92,kg -62277ce9-acb6-3f4e-b743-b0dfe9954d5c,SESCO,II.5.1,Santa Cruz,AR-Z,annual,2020,gas oil combustion consumption by agriculture machines,0.36119999999999997,TJ,CH4,3.9,kg/TJ,1.40868,kg -62277ce9-acb6-3f4e-b743-b0dfe9954d5c,SESCO,II.5.1,Santa Cruz,AR-Z,annual,2020,gas oil combustion consumption by agriculture machines,0.36119999999999997,TJ,N2O,3.9,kg/TJ,1.40868,kg -f5cac53c-5a26-3804-8f9f-c6e2052a639a,SESCO,II.5.1,Santa Fe,AR-S,annual,2020,gas oil combustion consumption by agriculture machines,3.64812,TJ,CO2,74100.0,kg/TJ,270325.692,kg -2fbd3690-290f-3e85-bb94-f8df0d44ecf9,SESCO,II.5.1,Santa Fe,AR-S,annual,2020,gas oil combustion consumption by agriculture machines,3.64812,TJ,CH4,3.9,kg/TJ,14.227668,kg -2fbd3690-290f-3e85-bb94-f8df0d44ecf9,SESCO,II.5.1,Santa Fe,AR-S,annual,2020,gas oil combustion consumption by agriculture machines,3.64812,TJ,N2O,3.9,kg/TJ,14.227668,kg -947787ca-a013-3ef4-a1dc-100494af4914,SESCO,II.1.1,Buenos Aires,AR-B,annual,2020,gas oil combustion consumption by to the public,2196.56556,TJ,CO2,74100.0,kg/TJ,162765507.996,kg -3d44026a-8a8f-325f-942f-538856b4a82c,SESCO,II.1.1,Buenos Aires,AR-B,annual,2020,gas oil combustion consumption by to the public,2196.56556,TJ,CH4,3.9,kg/TJ,8566.605684,kg -3d44026a-8a8f-325f-942f-538856b4a82c,SESCO,II.1.1,Buenos Aires,AR-B,annual,2020,gas oil combustion consumption by to the public,2196.56556,TJ,N2O,3.9,kg/TJ,8566.605684,kg -661a9072-014c-3df9-a941-d7b6c503c6e2,SESCO,II.1.1,Capital Federal,AR-C,annual,2020,gas oil combustion consumption by to the public,420.87023999999997,TJ,CO2,74100.0,kg/TJ,31186484.783999998,kg -ffb102d7-eed9-32dc-936c-e77ed2f9fd67,SESCO,II.1.1,Capital Federal,AR-C,annual,2020,gas oil combustion consumption by to the public,420.87023999999997,TJ,CH4,3.9,kg/TJ,1641.393936,kg -ffb102d7-eed9-32dc-936c-e77ed2f9fd67,SESCO,II.1.1,Capital Federal,AR-C,annual,2020,gas oil combustion consumption by to the public,420.87023999999997,TJ,N2O,3.9,kg/TJ,1641.393936,kg -4a2ffc08-e0e9-3bf9-9fc9-e76c454be507,SESCO,II.1.1,Catamarca,AR-K,annual,2020,gas oil combustion consumption by to the public,48.5814,TJ,CO2,74100.0,kg/TJ,3599881.74,kg -60315f67-c913-3659-ae64-64fb88f75022,SESCO,II.1.1,Catamarca,AR-K,annual,2020,gas oil combustion consumption by to the public,48.5814,TJ,CH4,3.9,kg/TJ,189.46746000000002,kg -60315f67-c913-3659-ae64-64fb88f75022,SESCO,II.1.1,Catamarca,AR-K,annual,2020,gas oil combustion consumption by to the public,48.5814,TJ,N2O,3.9,kg/TJ,189.46746000000002,kg -c6953c37-65b3-39c0-80b5-a7d9685a2c38,SESCO,II.1.1,Chaco,AR-H,annual,2020,gas oil combustion consumption by to the public,294.1974,TJ,CO2,74100.0,kg/TJ,21800027.34,kg -1bd493a6-16cd-335b-b841-ff5d77799b7f,SESCO,II.1.1,Chaco,AR-H,annual,2020,gas oil combustion consumption by to the public,294.1974,TJ,CH4,3.9,kg/TJ,1147.36986,kg -1bd493a6-16cd-335b-b841-ff5d77799b7f,SESCO,II.1.1,Chaco,AR-H,annual,2020,gas oil combustion consumption by to the public,294.1974,TJ,N2O,3.9,kg/TJ,1147.36986,kg -66c981e8-0253-36ee-8b84-454c34ac6960,SESCO,II.1.1,Corrientes,AR-W,annual,2020,gas oil combustion consumption by to the public,400.28184,TJ,CO2,74100.0,kg/TJ,29660884.344,kg -7195b901-b537-3c0b-b676-cb24d1bbec17,SESCO,II.1.1,Corrientes,AR-W,annual,2020,gas oil combustion consumption by to the public,400.28184,TJ,CH4,3.9,kg/TJ,1561.099176,kg -7195b901-b537-3c0b-b676-cb24d1bbec17,SESCO,II.1.1,Corrientes,AR-W,annual,2020,gas oil combustion consumption by to the public,400.28184,TJ,N2O,3.9,kg/TJ,1561.099176,kg -01fa66af-c5c7-3abc-abf7-77ced9992e91,SESCO,II.1.1,Córdoba,AR-X,annual,2020,gas oil combustion consumption by to the public,1181.55744,TJ,CO2,74100.0,kg/TJ,87553406.304,kg -b33b5d5e-388b-3f27-9209-238b39a7af37,SESCO,II.1.1,Córdoba,AR-X,annual,2020,gas oil combustion consumption by to the public,1181.55744,TJ,CH4,3.9,kg/TJ,4608.0740160000005,kg -b33b5d5e-388b-3f27-9209-238b39a7af37,SESCO,II.1.1,Córdoba,AR-X,annual,2020,gas oil combustion consumption by to the public,1181.55744,TJ,N2O,3.9,kg/TJ,4608.0740160000005,kg -15293781-db03-343a-aeee-1cb7f5e886f8,SESCO,II.1.1,Entre Rios,AR-E,annual,2020,gas oil combustion consumption by to the public,248.90292,TJ,CO2,74100.0,kg/TJ,18443706.372,kg -d473776c-fd54-37aa-80ab-581aba7d33a9,SESCO,II.1.1,Entre Rios,AR-E,annual,2020,gas oil combustion consumption by to the public,248.90292,TJ,CH4,3.9,kg/TJ,970.7213879999999,kg -d473776c-fd54-37aa-80ab-581aba7d33a9,SESCO,II.1.1,Entre Rios,AR-E,annual,2020,gas oil combustion consumption by to the public,248.90292,TJ,N2O,3.9,kg/TJ,970.7213879999999,kg -4cc09750-ed15-3bf1-9397-4cc6cf1b88ff,SESCO,II.1.1,Formosa,AR-P,annual,2020,gas oil combustion consumption by to the public,41.93532,TJ,CO2,74100.0,kg/TJ,3107407.212,kg -9f13b589-d4b5-3e5e-a13c-1cb3ffa74ccc,SESCO,II.1.1,Formosa,AR-P,annual,2020,gas oil combustion consumption by to the public,41.93532,TJ,CH4,3.9,kg/TJ,163.54774799999998,kg -9f13b589-d4b5-3e5e-a13c-1cb3ffa74ccc,SESCO,II.1.1,Formosa,AR-P,annual,2020,gas oil combustion consumption by to the public,41.93532,TJ,N2O,3.9,kg/TJ,163.54774799999998,kg -4d20c1ff-5f3f-327a-99da-1156a1e8adab,SESCO,II.1.1,Jujuy,AR-Y,annual,2020,gas oil combustion consumption by to the public,3.90096,TJ,CO2,74100.0,kg/TJ,289061.136,kg -7c49547c-65c4-329f-89c2-ee6c036db2d2,SESCO,II.1.1,Jujuy,AR-Y,annual,2020,gas oil combustion consumption by to the public,3.90096,TJ,CH4,3.9,kg/TJ,15.213744,kg -7c49547c-65c4-329f-89c2-ee6c036db2d2,SESCO,II.1.1,Jujuy,AR-Y,annual,2020,gas oil combustion consumption by to the public,3.90096,TJ,N2O,3.9,kg/TJ,15.213744,kg -16b31b7e-f892-3137-8718-6bd97c3b78c0,SESCO,II.1.1,La Rioja,AR-F,annual,2020,gas oil combustion consumption by to the public,35.43372,TJ,CO2,74100.0,kg/TJ,2625638.6520000002,kg -2c204548-b55a-387d-b075-5417c17ae61f,SESCO,II.1.1,La Rioja,AR-F,annual,2020,gas oil combustion consumption by to the public,35.43372,TJ,CH4,3.9,kg/TJ,138.191508,kg -2c204548-b55a-387d-b075-5417c17ae61f,SESCO,II.1.1,La Rioja,AR-F,annual,2020,gas oil combustion consumption by to the public,35.43372,TJ,N2O,3.9,kg/TJ,138.191508,kg -47a4a950-0ea2-3e52-adb3-ac135fc0d72b,SESCO,II.1.1,Mendoza,AR-M,annual,2020,gas oil combustion consumption by to the public,672.6627599999999,TJ,CO2,74100.0,kg/TJ,49844310.515999995,kg -d0c68914-d678-3fa2-b3e8-386a6e315f69,SESCO,II.1.1,Mendoza,AR-M,annual,2020,gas oil combustion consumption by to the public,672.6627599999999,TJ,CH4,3.9,kg/TJ,2623.384764,kg -d0c68914-d678-3fa2-b3e8-386a6e315f69,SESCO,II.1.1,Mendoza,AR-M,annual,2020,gas oil combustion consumption by to the public,672.6627599999999,TJ,N2O,3.9,kg/TJ,2623.384764,kg -626b27ba-ecac-3785-ab7e-b2263ff4050f,SESCO,II.1.1,Misiones,AR-N,annual,2020,gas oil combustion consumption by to the public,76.71888,TJ,CO2,74100.0,kg/TJ,5684869.007999999,kg -b5c3e946-bcee-33f0-865f-1d0506a6fab3,SESCO,II.1.1,Misiones,AR-N,annual,2020,gas oil combustion consumption by to the public,76.71888,TJ,CH4,3.9,kg/TJ,299.20363199999997,kg -b5c3e946-bcee-33f0-865f-1d0506a6fab3,SESCO,II.1.1,Misiones,AR-N,annual,2020,gas oil combustion consumption by to the public,76.71888,TJ,N2O,3.9,kg/TJ,299.20363199999997,kg -6ff350e3-aaf6-3274-bce0-ad820f03ebe6,SESCO,II.1.1,San Juan,AR-J,annual,2020,gas oil combustion consumption by to the public,119.48496,TJ,CO2,74100.0,kg/TJ,8853835.536,kg -363395f6-5b75-327c-984b-438bdbfd1082,SESCO,II.1.1,San Juan,AR-J,annual,2020,gas oil combustion consumption by to the public,119.48496,TJ,CH4,3.9,kg/TJ,465.99134399999997,kg -363395f6-5b75-327c-984b-438bdbfd1082,SESCO,II.1.1,San Juan,AR-J,annual,2020,gas oil combustion consumption by to the public,119.48496,TJ,N2O,3.9,kg/TJ,465.99134399999997,kg -5f43ed99-3fec-3080-bc88-38d5fbd8ec52,SESCO,II.1.1,San Luis,AR-D,annual,2020,gas oil combustion consumption by to the public,11.30556,TJ,CO2,74100.0,kg/TJ,837741.996,kg -650f2254-f1b3-3e62-8017-f3c4d60c8396,SESCO,II.1.1,San Luis,AR-D,annual,2020,gas oil combustion consumption by to the public,11.30556,TJ,CH4,3.9,kg/TJ,44.091684,kg -650f2254-f1b3-3e62-8017-f3c4d60c8396,SESCO,II.1.1,San Luis,AR-D,annual,2020,gas oil combustion consumption by to the public,11.30556,TJ,N2O,3.9,kg/TJ,44.091684,kg -c12704f0-a090-3dc2-99c6-1b2a905de462,SESCO,II.1.1,Santa Fe,AR-S,annual,2020,gas oil combustion consumption by to the public,1202.36256,TJ,CO2,74100.0,kg/TJ,89095065.696,kg -685793aa-2ab0-3a20-a686-90f8f752af57,SESCO,II.1.1,Santa Fe,AR-S,annual,2020,gas oil combustion consumption by to the public,1202.36256,TJ,CH4,3.9,kg/TJ,4689.213984,kg -685793aa-2ab0-3a20-a686-90f8f752af57,SESCO,II.1.1,Santa Fe,AR-S,annual,2020,gas oil combustion consumption by to the public,1202.36256,TJ,N2O,3.9,kg/TJ,4689.213984,kg -639dd10e-7c8b-3992-a0a8-272436a1e05f,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2020,gas oil combustion consumption by to the public,106.84296,TJ,CO2,74100.0,kg/TJ,7917063.336,kg -7293cf32-d630-3a85-8e3f-ce092e202f2c,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2020,gas oil combustion consumption by to the public,106.84296,TJ,CH4,3.9,kg/TJ,416.687544,kg -7293cf32-d630-3a85-8e3f-ce092e202f2c,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2020,gas oil combustion consumption by to the public,106.84296,TJ,N2O,3.9,kg/TJ,416.687544,kg -aec65555-aca8-3fbd-beac-5d844f95aed0,SESCO,II.1.1,Tucuman,AR-T,annual,2020,gas oil combustion consumption by to the public,215.817,TJ,CO2,74100.0,kg/TJ,15992039.700000001,kg -110550ed-2da8-393a-bf65-8c0c021fd818,SESCO,II.1.1,Tucuman,AR-T,annual,2020,gas oil combustion consumption by to the public,215.817,TJ,CH4,3.9,kg/TJ,841.6863,kg -110550ed-2da8-393a-bf65-8c0c021fd818,SESCO,II.1.1,Tucuman,AR-T,annual,2020,gas oil combustion consumption by to the public,215.817,TJ,N2O,3.9,kg/TJ,841.6863,kg -15aa65d9-0508-391c-aa55-057124f1db21,SESCO,II.1.1,Buenos Aires,AR-B,annual,2020,gas oil combustion consumption by to the public,299.9766,TJ,CO2,74100.0,kg/TJ,22228266.060000002,kg -c9489f15-cd50-3055-b112-f38be58f98c5,SESCO,II.1.1,Buenos Aires,AR-B,annual,2020,gas oil combustion consumption by to the public,299.9766,TJ,CH4,3.9,kg/TJ,1169.90874,kg -c9489f15-cd50-3055-b112-f38be58f98c5,SESCO,II.1.1,Buenos Aires,AR-B,annual,2020,gas oil combustion consumption by to the public,299.9766,TJ,N2O,3.9,kg/TJ,1169.90874,kg -40cbd94b-8790-3a9f-a7b6-7c2974f389c2,SESCO,II.1.1,Capital Federal,AR-C,annual,2020,gas oil combustion consumption by to the public,80.04192,TJ,CO2,74100.0,kg/TJ,5931106.272,kg -ea7de60d-62cd-359e-839e-15c3627ff842,SESCO,II.1.1,Capital Federal,AR-C,annual,2020,gas oil combustion consumption by to the public,80.04192,TJ,CH4,3.9,kg/TJ,312.16348800000003,kg -ea7de60d-62cd-359e-839e-15c3627ff842,SESCO,II.1.1,Capital Federal,AR-C,annual,2020,gas oil combustion consumption by to the public,80.04192,TJ,N2O,3.9,kg/TJ,312.16348800000003,kg -322135cc-6068-388f-8844-1a44d8e60e82,SESCO,II.1.1,Catamarca,AR-K,annual,2020,gas oil combustion consumption by to the public,34.53072,TJ,CO2,74100.0,kg/TJ,2558726.352,kg -81a1a39a-65f5-31aa-a21a-f34e491dcc02,SESCO,II.1.1,Catamarca,AR-K,annual,2020,gas oil combustion consumption by to the public,34.53072,TJ,CH4,3.9,kg/TJ,134.66980800000002,kg -81a1a39a-65f5-31aa-a21a-f34e491dcc02,SESCO,II.1.1,Catamarca,AR-K,annual,2020,gas oil combustion consumption by to the public,34.53072,TJ,N2O,3.9,kg/TJ,134.66980800000002,kg -f4e11e04-cf12-3b96-9033-5d19b307c43d,SESCO,II.1.1,Chaco,AR-H,annual,2020,gas oil combustion consumption by to the public,36.40896,TJ,CO2,74100.0,kg/TJ,2697903.936,kg -5105543a-6e9b-39c4-b314-77c928193285,SESCO,II.1.1,Chaco,AR-H,annual,2020,gas oil combustion consumption by to the public,36.40896,TJ,CH4,3.9,kg/TJ,141.994944,kg -5105543a-6e9b-39c4-b314-77c928193285,SESCO,II.1.1,Chaco,AR-H,annual,2020,gas oil combustion consumption by to the public,36.40896,TJ,N2O,3.9,kg/TJ,141.994944,kg -c10f781f-02f9-3bec-ae9a-08f82c02744b,SESCO,II.1.1,Corrientes,AR-W,annual,2020,gas oil combustion consumption by to the public,13.111559999999999,TJ,CO2,74100.0,kg/TJ,971566.5959999999,kg -198f9aca-b987-3809-998e-f430408cface,SESCO,II.1.1,Corrientes,AR-W,annual,2020,gas oil combustion consumption by to the public,13.111559999999999,TJ,CH4,3.9,kg/TJ,51.13508399999999,kg -198f9aca-b987-3809-998e-f430408cface,SESCO,II.1.1,Corrientes,AR-W,annual,2020,gas oil combustion consumption by to the public,13.111559999999999,TJ,N2O,3.9,kg/TJ,51.13508399999999,kg -ff335190-be61-3b3a-9c82-668b1a249358,SESCO,II.1.1,Córdoba,AR-X,annual,2020,gas oil combustion consumption by to the public,148.41708,TJ,CO2,74100.0,kg/TJ,10997705.628,kg -bde8009f-cea6-3472-84a2-21a91ea134fd,SESCO,II.1.1,Córdoba,AR-X,annual,2020,gas oil combustion consumption by to the public,148.41708,TJ,CH4,3.9,kg/TJ,578.826612,kg -bde8009f-cea6-3472-84a2-21a91ea134fd,SESCO,II.1.1,Córdoba,AR-X,annual,2020,gas oil combustion consumption by to the public,148.41708,TJ,N2O,3.9,kg/TJ,578.826612,kg -b67b83e7-faf4-338d-a862-2534474e6b51,SESCO,II.1.1,Entre Rios,AR-E,annual,2020,gas oil combustion consumption by to the public,42.91056,TJ,CO2,74100.0,kg/TJ,3179672.496,kg -461bd96c-c430-3aea-be60-87989668d931,SESCO,II.1.1,Entre Rios,AR-E,annual,2020,gas oil combustion consumption by to the public,42.91056,TJ,CH4,3.9,kg/TJ,167.351184,kg -461bd96c-c430-3aea-be60-87989668d931,SESCO,II.1.1,Entre Rios,AR-E,annual,2020,gas oil combustion consumption by to the public,42.91056,TJ,N2O,3.9,kg/TJ,167.351184,kg -ca4daefe-e4f0-3aa7-8007-c238a23e5ce4,SESCO,II.1.1,Formosa,AR-P,annual,2020,gas oil combustion consumption by to the public,13.7256,TJ,CO2,74100.0,kg/TJ,1017066.96,kg -9ca2b3c3-7cc0-39d2-bbeb-ed033c847649,SESCO,II.1.1,Formosa,AR-P,annual,2020,gas oil combustion consumption by to the public,13.7256,TJ,CH4,3.9,kg/TJ,53.52984,kg -9ca2b3c3-7cc0-39d2-bbeb-ed033c847649,SESCO,II.1.1,Formosa,AR-P,annual,2020,gas oil combustion consumption by to the public,13.7256,TJ,N2O,3.9,kg/TJ,53.52984,kg -8b1ecf04-1a0b-37c1-a06b-78f419ba8d95,SESCO,II.1.1,La Rioja,AR-F,annual,2020,gas oil combustion consumption by to the public,11.34168,TJ,CO2,74100.0,kg/TJ,840418.488,kg -59431dbe-f305-3619-8d12-36f80eba3d35,SESCO,II.1.1,La Rioja,AR-F,annual,2020,gas oil combustion consumption by to the public,11.34168,TJ,CH4,3.9,kg/TJ,44.232552,kg -59431dbe-f305-3619-8d12-36f80eba3d35,SESCO,II.1.1,La Rioja,AR-F,annual,2020,gas oil combustion consumption by to the public,11.34168,TJ,N2O,3.9,kg/TJ,44.232552,kg -e5866650-1b89-3458-a51f-90cebc07577b,SESCO,II.1.1,Mendoza,AR-M,annual,2020,gas oil combustion consumption by to the public,99.18552,TJ,CO2,74100.0,kg/TJ,7349647.032,kg -335c99c5-5ab0-3c8c-ac05-860f9f4421d2,SESCO,II.1.1,Mendoza,AR-M,annual,2020,gas oil combustion consumption by to the public,99.18552,TJ,CH4,3.9,kg/TJ,386.82352799999995,kg -335c99c5-5ab0-3c8c-ac05-860f9f4421d2,SESCO,II.1.1,Mendoza,AR-M,annual,2020,gas oil combustion consumption by to the public,99.18552,TJ,N2O,3.9,kg/TJ,386.82352799999995,kg -dc9b42c8-553d-3e25-a57b-d63f769e857e,SESCO,II.1.1,Misiones,AR-N,annual,2020,gas oil combustion consumption by to the public,15.06204,TJ,CO2,74100.0,kg/TJ,1116097.1639999999,kg -54d69515-5423-3132-ae61-12bcaefc56be,SESCO,II.1.1,Misiones,AR-N,annual,2020,gas oil combustion consumption by to the public,15.06204,TJ,CH4,3.9,kg/TJ,58.741955999999995,kg -54d69515-5423-3132-ae61-12bcaefc56be,SESCO,II.1.1,Misiones,AR-N,annual,2020,gas oil combustion consumption by to the public,15.06204,TJ,N2O,3.9,kg/TJ,58.741955999999995,kg -26851228-0cae-378c-8fe4-8a72f1098f4f,SESCO,II.1.1,Salta,AR-A,annual,2020,gas oil combustion consumption by to the public,2.13108,TJ,CO2,74100.0,kg/TJ,157913.028,kg -730f5344-0ca9-3737-b097-525cbd7196be,SESCO,II.1.1,Salta,AR-A,annual,2020,gas oil combustion consumption by to the public,2.13108,TJ,CH4,3.9,kg/TJ,8.311212,kg -730f5344-0ca9-3737-b097-525cbd7196be,SESCO,II.1.1,Salta,AR-A,annual,2020,gas oil combustion consumption by to the public,2.13108,TJ,N2O,3.9,kg/TJ,8.311212,kg -f0e9b675-3b5b-3a73-8c35-c77f5346f1b6,SESCO,II.1.1,San Juan,AR-J,annual,2020,gas oil combustion consumption by to the public,6.1404,TJ,CO2,74100.0,kg/TJ,455003.63999999996,kg -d081c05d-0db3-327f-b99d-2734d76562e0,SESCO,II.1.1,San Juan,AR-J,annual,2020,gas oil combustion consumption by to the public,6.1404,TJ,CH4,3.9,kg/TJ,23.94756,kg -d081c05d-0db3-327f-b99d-2734d76562e0,SESCO,II.1.1,San Juan,AR-J,annual,2020,gas oil combustion consumption by to the public,6.1404,TJ,N2O,3.9,kg/TJ,23.94756,kg -5582d815-ab80-32f0-a5a7-125d97b0d777,SESCO,II.1.1,San Luis,AR-D,annual,2020,gas oil combustion consumption by to the public,4.1537999999999995,TJ,CO2,74100.0,kg/TJ,307796.57999999996,kg -2c51b7dc-11f2-3c53-aa69-03accbdc46e4,SESCO,II.1.1,San Luis,AR-D,annual,2020,gas oil combustion consumption by to the public,4.1537999999999995,TJ,CH4,3.9,kg/TJ,16.19982,kg -2c51b7dc-11f2-3c53-aa69-03accbdc46e4,SESCO,II.1.1,San Luis,AR-D,annual,2020,gas oil combustion consumption by to the public,4.1537999999999995,TJ,N2O,3.9,kg/TJ,16.19982,kg -cfb90f5b-21c5-3a27-b630-415251dedd69,SESCO,II.1.1,Santa Fe,AR-S,annual,2020,gas oil combustion consumption by to the public,121.79664,TJ,CO2,74100.0,kg/TJ,9025131.024,kg -57f981f0-b758-35a3-a814-321c0c8a1947,SESCO,II.1.1,Santa Fe,AR-S,annual,2020,gas oil combustion consumption by to the public,121.79664,TJ,CH4,3.9,kg/TJ,475.006896,kg -57f981f0-b758-35a3-a814-321c0c8a1947,SESCO,II.1.1,Santa Fe,AR-S,annual,2020,gas oil combustion consumption by to the public,121.79664,TJ,N2O,3.9,kg/TJ,475.006896,kg -7031e926-e61b-3c7c-8ef0-a73b9103bd3e,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2020,gas oil combustion consumption by to the public,13.9062,TJ,CO2,74100.0,kg/TJ,1030449.42,kg -9ea080e2-f5e9-34a6-899c-f3b3a3e22edb,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2020,gas oil combustion consumption by to the public,13.9062,TJ,CH4,3.9,kg/TJ,54.23418,kg -9ea080e2-f5e9-34a6-899c-f3b3a3e22edb,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2020,gas oil combustion consumption by to the public,13.9062,TJ,N2O,3.9,kg/TJ,54.23418,kg -32fc658c-1c35-3bd4-ae09-4a2f438a02e7,SESCO,II.1.1,Tucuman,AR-T,annual,2020,gas oil combustion consumption by to the public,18.63792,TJ,CO2,74100.0,kg/TJ,1381069.872,kg -fdd22b14-eb1d-3905-864d-f5315b10d329,SESCO,II.1.1,Tucuman,AR-T,annual,2020,gas oil combustion consumption by to the public,18.63792,TJ,CH4,3.9,kg/TJ,72.687888,kg -fdd22b14-eb1d-3905-864d-f5315b10d329,SESCO,II.1.1,Tucuman,AR-T,annual,2020,gas oil combustion consumption by to the public,18.63792,TJ,N2O,3.9,kg/TJ,72.687888,kg -02fa4e37-867b-3713-8a76-0db2d8a5bab8,SESCO,II.1.1,Corrientes,AR-W,annual,2020,jet kerosene combustion consumption by to the public,0.5032479999999999,TJ,CO2,71500.0,kg/TJ,35982.231999999996,kg -51956f52-6eea-3020-b495-1f50b8b2e04f,SESCO,II.1.1,Corrientes,AR-W,annual,2020,jet kerosene combustion consumption by to the public,0.5032479999999999,TJ,CH4,0.5,kg/TJ,0.25162399999999996,kg -7470daaf-a3c7-3543-9823-2f4a4ce49328,SESCO,II.1.1,Corrientes,AR-W,annual,2020,jet kerosene combustion consumption by to the public,0.5032479999999999,TJ,N2O,2.0,kg/TJ,1.0064959999999998,kg -00517090-08a1-3a16-9ac6-99b5b896125b,SESCO,II.1.1,Córdoba,AR-X,annual,2020,jet kerosene combustion consumption by to the public,1.0694019999999997,TJ,CO2,71500.0,kg/TJ,76462.24299999999,kg -065bd601-816a-32b3-ac29-74ddb2bfd4d1,SESCO,II.1.1,Córdoba,AR-X,annual,2020,jet kerosene combustion consumption by to the public,1.0694019999999997,TJ,CH4,0.5,kg/TJ,0.5347009999999999,kg -4951de93-0f76-3786-a91f-d263b1aa93f9,SESCO,II.1.1,Córdoba,AR-X,annual,2020,jet kerosene combustion consumption by to the public,1.0694019999999997,TJ,N2O,2.0,kg/TJ,2.1388039999999995,kg -02d2638c-0c03-3378-a44f-152975715032,SESCO,II.1.1,Entre Rios,AR-E,annual,2020,jet kerosene combustion consumption by to the public,0.62906,TJ,CO2,71500.0,kg/TJ,44977.78999999999,kg -853ae6de-c210-3826-943a-70efedd2c188,SESCO,II.1.1,Entre Rios,AR-E,annual,2020,jet kerosene combustion consumption by to the public,0.62906,TJ,CH4,0.5,kg/TJ,0.31453,kg -f64c4371-d6df-347c-a461-b16c33ca3696,SESCO,II.1.1,Entre Rios,AR-E,annual,2020,jet kerosene combustion consumption by to the public,0.62906,TJ,N2O,2.0,kg/TJ,1.25812,kg -09914c7d-b7b4-3c90-8f7a-74befc5de75c,SESCO,II.1.1,Santa Fe,AR-S,annual,2020,jet kerosene combustion consumption by to the public,1.9500859999999998,TJ,CO2,71500.0,kg/TJ,139431.14899999998,kg -eeec8ed0-6ab6-358f-87a9-09be1904dc9a,SESCO,II.1.1,Santa Fe,AR-S,annual,2020,jet kerosene combustion consumption by to the public,1.9500859999999998,TJ,CH4,0.5,kg/TJ,0.9750429999999999,kg -b7ab84bd-cfae-3d16-96e9-eeb8d5bd97c0,SESCO,II.1.1,Santa Fe,AR-S,annual,2020,jet kerosene combustion consumption by to the public,1.9500859999999998,TJ,N2O,2.0,kg/TJ,3.9001719999999995,kg -94e605c0-5d95-37a8-a395-cbb8521f941c,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2020,jet kerosene combustion consumption by to the public,0.7548719999999999,TJ,CO2,71500.0,kg/TJ,53973.34799999999,kg -8829b2fa-6263-3035-8fc2-ba8f6f105d3f,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2020,jet kerosene combustion consumption by to the public,0.7548719999999999,TJ,CH4,0.5,kg/TJ,0.37743599999999994,kg -12da2f96-3a73-3147-b2cc-2f2941797027,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2020,jet kerosene combustion consumption by to the public,0.7548719999999999,TJ,N2O,2.0,kg/TJ,1.5097439999999998,kg -42dbda09-c0b9-3e28-80fe-a2ed4b5c846f,SESCO,I.3.1,Buenos Aires,AR-B,annual,2020,gas oil combustion consumption by petrochemical industries,11.59452,TJ,CO2,74100.0,kg/TJ,859153.9319999999,kg -88e64c0a-bd94-3108-8340-2d0a4b985c24,SESCO,I.3.1,Buenos Aires,AR-B,annual,2020,gas oil combustion consumption by petrochemical industries,11.59452,TJ,CH4,3.9,kg/TJ,45.218627999999995,kg -88e64c0a-bd94-3108-8340-2d0a4b985c24,SESCO,I.3.1,Buenos Aires,AR-B,annual,2020,gas oil combustion consumption by petrochemical industries,11.59452,TJ,N2O,3.9,kg/TJ,45.218627999999995,kg -d8154348-900e-3622-a481-c899293659f7,SESCO,I.3.1,Capital Federal,AR-C,annual,2020,gas oil combustion consumption by petrochemical industries,1.2642,TJ,CO2,74100.0,kg/TJ,93677.22,kg -5c4b668e-7090-341a-988e-1bf119d9407b,SESCO,I.3.1,Capital Federal,AR-C,annual,2020,gas oil combustion consumption by petrochemical industries,1.2642,TJ,CH4,3.9,kg/TJ,4.9303799999999995,kg -5c4b668e-7090-341a-988e-1bf119d9407b,SESCO,I.3.1,Capital Federal,AR-C,annual,2020,gas oil combustion consumption by petrochemical industries,1.2642,TJ,N2O,3.9,kg/TJ,4.9303799999999995,kg -60759001-0c8e-3de3-b13a-3fe4b9843bfc,SESCO,I.3.1,La Rioja,AR-F,annual,2020,gas oil combustion consumption by petrochemical industries,0.50568,TJ,CO2,74100.0,kg/TJ,37470.888,kg -e0ffe2ba-5663-3f94-be73-d4d0397e6958,SESCO,I.3.1,La Rioja,AR-F,annual,2020,gas oil combustion consumption by petrochemical industries,0.50568,TJ,CH4,3.9,kg/TJ,1.9721520000000001,kg -e0ffe2ba-5663-3f94-be73-d4d0397e6958,SESCO,I.3.1,La Rioja,AR-F,annual,2020,gas oil combustion consumption by petrochemical industries,0.50568,TJ,N2O,3.9,kg/TJ,1.9721520000000001,kg -62beaf4d-b4af-3a6f-b946-c95ad8d1e0b7,SESCO,I.3.1,Buenos Aires,AR-B,annual,2020,gas oil combustion consumption by petrochemical industries,0.50568,TJ,CO2,74100.0,kg/TJ,37470.888,kg -8733cab7-7ed7-3466-b9cf-44c5a4b37cc2,SESCO,I.3.1,Buenos Aires,AR-B,annual,2020,gas oil combustion consumption by petrochemical industries,0.50568,TJ,CH4,3.9,kg/TJ,1.9721520000000001,kg -8733cab7-7ed7-3466-b9cf-44c5a4b37cc2,SESCO,I.3.1,Buenos Aires,AR-B,annual,2020,gas oil combustion consumption by petrochemical industries,0.50568,TJ,N2O,3.9,kg/TJ,1.9721520000000001,kg -b065cd7c-9b5b-3887-8a96-1fdc00123825,SESCO,II.1.1,Chubut,AR-U,annual,2020,gas oil combustion consumption by freight transport,2.1930258,TJ,CO2,74100.0,kg/TJ,162503.21178,kg -2e1bbdc5-d1a0-334d-ab30-0a275bc3a392,SESCO,II.1.1,Chubut,AR-U,annual,2020,gas oil combustion consumption by freight transport,2.1930258,TJ,CH4,3.9,kg/TJ,8.55280062,kg -2e1bbdc5-d1a0-334d-ab30-0a275bc3a392,SESCO,II.1.1,Chubut,AR-U,annual,2020,gas oil combustion consumption by freight transport,2.1930258,TJ,N2O,3.9,kg/TJ,8.55280062,kg -c3ba86ec-683e-3f5d-9302-847e4be21ec5,SESCO,II.5.1,Buenos Aires,AR-B,annual,2020,gas oil combustion consumption by agriculture machines,2609.34492,TJ,CO2,74100.0,kg/TJ,193352458.572,kg -2f4f1dad-e3bf-3f82-b659-f3b866a6188f,SESCO,II.5.1,Buenos Aires,AR-B,annual,2020,gas oil combustion consumption by agriculture machines,2609.34492,TJ,CH4,3.9,kg/TJ,10176.445188,kg -2f4f1dad-e3bf-3f82-b659-f3b866a6188f,SESCO,II.5.1,Buenos Aires,AR-B,annual,2020,gas oil combustion consumption by agriculture machines,2609.34492,TJ,N2O,3.9,kg/TJ,10176.445188,kg -8274c950-22ed-3273-98e5-8e92309295f2,SESCO,II.5.1,Capital Federal,AR-C,annual,2020,gas oil combustion consumption by agriculture machines,1.87824,TJ,CO2,74100.0,kg/TJ,139177.584,kg -a8d84d43-d767-3ad2-aeeb-a5dbcc6c9866,SESCO,II.5.1,Capital Federal,AR-C,annual,2020,gas oil combustion consumption by agriculture machines,1.87824,TJ,CH4,3.9,kg/TJ,7.325136,kg -a8d84d43-d767-3ad2-aeeb-a5dbcc6c9866,SESCO,II.5.1,Capital Federal,AR-C,annual,2020,gas oil combustion consumption by agriculture machines,1.87824,TJ,N2O,3.9,kg/TJ,7.325136,kg -3f880a7b-31a7-3348-a215-2fb4f4372ea8,SESCO,II.5.1,Chaco,AR-H,annual,2020,gas oil combustion consumption by agriculture machines,451.93344,TJ,CO2,74100.0,kg/TJ,33488267.904000003,kg -0533495c-1b81-3ff9-900f-f2db49ee5b99,SESCO,II.5.1,Chaco,AR-H,annual,2020,gas oil combustion consumption by agriculture machines,451.93344,TJ,CH4,3.9,kg/TJ,1762.540416,kg -0533495c-1b81-3ff9-900f-f2db49ee5b99,SESCO,II.5.1,Chaco,AR-H,annual,2020,gas oil combustion consumption by agriculture machines,451.93344,TJ,N2O,3.9,kg/TJ,1762.540416,kg -1129373d-f3a1-3ca2-94b1-4c7e1b090dc9,SESCO,II.5.1,Corrientes,AR-W,annual,2020,gas oil combustion consumption by agriculture machines,122.23008,TJ,CO2,74100.0,kg/TJ,9057248.928,kg -72a94b53-a9e0-3988-a1ba-0ba34a714daf,SESCO,II.5.1,Corrientes,AR-W,annual,2020,gas oil combustion consumption by agriculture machines,122.23008,TJ,CH4,3.9,kg/TJ,476.697312,kg -72a94b53-a9e0-3988-a1ba-0ba34a714daf,SESCO,II.5.1,Corrientes,AR-W,annual,2020,gas oil combustion consumption by agriculture machines,122.23008,TJ,N2O,3.9,kg/TJ,476.697312,kg -b5bdd126-2a6b-392a-aefb-534bf462ceb6,SESCO,II.5.1,Córdoba,AR-X,annual,2020,gas oil combustion consumption by agriculture machines,2507.8116,TJ,CO2,74100.0,kg/TJ,185828839.56,kg -67caacf1-c663-364b-935c-81ed13bc345d,SESCO,II.5.1,Córdoba,AR-X,annual,2020,gas oil combustion consumption by agriculture machines,2507.8116,TJ,CH4,3.9,kg/TJ,9780.46524,kg -67caacf1-c663-364b-935c-81ed13bc345d,SESCO,II.5.1,Córdoba,AR-X,annual,2020,gas oil combustion consumption by agriculture machines,2507.8116,TJ,N2O,3.9,kg/TJ,9780.46524,kg -5c000735-3d33-3be9-919e-2b7a555df28b,SESCO,II.5.1,Entre Rios,AR-E,annual,2020,gas oil combustion consumption by agriculture machines,556.2479999999999,TJ,CO2,74100.0,kg/TJ,41217976.8,kg -1686bee6-d3c5-3501-bf84-99412b77b51d,SESCO,II.5.1,Entre Rios,AR-E,annual,2020,gas oil combustion consumption by agriculture machines,556.2479999999999,TJ,CH4,3.9,kg/TJ,2169.3671999999997,kg -1686bee6-d3c5-3501-bf84-99412b77b51d,SESCO,II.5.1,Entre Rios,AR-E,annual,2020,gas oil combustion consumption by agriculture machines,556.2479999999999,TJ,N2O,3.9,kg/TJ,2169.3671999999997,kg -213cdc6f-716b-36ea-ae8a-debed8d83490,SESCO,II.5.1,La Pampa,AR-L,annual,2020,gas oil combustion consumption by agriculture machines,195.19248,TJ,CO2,74100.0,kg/TJ,14463762.768,kg -3f96745c-eacd-3959-bd09-bd4998fc7066,SESCO,II.5.1,La Pampa,AR-L,annual,2020,gas oil combustion consumption by agriculture machines,195.19248,TJ,CH4,3.9,kg/TJ,761.2506719999999,kg -3f96745c-eacd-3959-bd09-bd4998fc7066,SESCO,II.5.1,La Pampa,AR-L,annual,2020,gas oil combustion consumption by agriculture machines,195.19248,TJ,N2O,3.9,kg/TJ,761.2506719999999,kg -84bdaa94-07dc-3e0b-85d0-48a663aef082,SESCO,II.5.1,Mendoza,AR-M,annual,2020,gas oil combustion consumption by agriculture machines,630.00504,TJ,CO2,74100.0,kg/TJ,46683373.464,kg -3f126b0c-e64d-31ee-a4b8-e16383e811a2,SESCO,II.5.1,Mendoza,AR-M,annual,2020,gas oil combustion consumption by agriculture machines,630.00504,TJ,CH4,3.9,kg/TJ,2457.019656,kg -3f126b0c-e64d-31ee-a4b8-e16383e811a2,SESCO,II.5.1,Mendoza,AR-M,annual,2020,gas oil combustion consumption by agriculture machines,630.00504,TJ,N2O,3.9,kg/TJ,2457.019656,kg -a1c2ae2c-e089-392e-b7d2-c7efefe8a9e7,SESCO,II.5.1,Neuquén,AR-Q,annual,2020,gas oil combustion consumption by agriculture machines,203.96964,TJ,CO2,74100.0,kg/TJ,15114150.324,kg -154e3205-a3a3-354f-99ad-927d40cce352,SESCO,II.5.1,Neuquén,AR-Q,annual,2020,gas oil combustion consumption by agriculture machines,203.96964,TJ,CH4,3.9,kg/TJ,795.481596,kg -154e3205-a3a3-354f-99ad-927d40cce352,SESCO,II.5.1,Neuquén,AR-Q,annual,2020,gas oil combustion consumption by agriculture machines,203.96964,TJ,N2O,3.9,kg/TJ,795.481596,kg -5ba4cf84-dacf-3b7f-a146-f8e4877cccfe,SESCO,II.5.1,San Luis,AR-D,annual,2020,gas oil combustion consumption by agriculture machines,5.7791999999999994,TJ,CO2,74100.0,kg/TJ,428238.72,kg -c198ad6d-939c-330f-b1d6-b88304c2016b,SESCO,II.5.1,San Luis,AR-D,annual,2020,gas oil combustion consumption by agriculture machines,5.7791999999999994,TJ,CH4,3.9,kg/TJ,22.53888,kg -c198ad6d-939c-330f-b1d6-b88304c2016b,SESCO,II.5.1,San Luis,AR-D,annual,2020,gas oil combustion consumption by agriculture machines,5.7791999999999994,TJ,N2O,3.9,kg/TJ,22.53888,kg -e6fd848e-5742-33f2-a450-94c6a0e1b451,SESCO,II.5.1,Santa Cruz,AR-Z,annual,2020,gas oil combustion consumption by agriculture machines,22.90008,TJ,CO2,74100.0,kg/TJ,1696895.9279999998,kg -dfa95e28-b1ec-3538-8309-e6e6aa36a8f5,SESCO,II.5.1,Santa Cruz,AR-Z,annual,2020,gas oil combustion consumption by agriculture machines,22.90008,TJ,CH4,3.9,kg/TJ,89.310312,kg -dfa95e28-b1ec-3538-8309-e6e6aa36a8f5,SESCO,II.5.1,Santa Cruz,AR-Z,annual,2020,gas oil combustion consumption by agriculture machines,22.90008,TJ,N2O,3.9,kg/TJ,89.310312,kg -aef4c7f2-5685-38de-8ba9-31c1c4675224,SESCO,II.5.1,Santa Fe,AR-S,annual,2020,gas oil combustion consumption by agriculture machines,3499.05276,TJ,CO2,74100.0,kg/TJ,259279809.516,kg -872aefd7-cc40-34ad-89d1-af2ba960d1e0,SESCO,II.5.1,Santa Fe,AR-S,annual,2020,gas oil combustion consumption by agriculture machines,3499.05276,TJ,CH4,3.9,kg/TJ,13646.305764,kg -872aefd7-cc40-34ad-89d1-af2ba960d1e0,SESCO,II.5.1,Santa Fe,AR-S,annual,2020,gas oil combustion consumption by agriculture machines,3499.05276,TJ,N2O,3.9,kg/TJ,13646.305764,kg -424caa6a-e85c-35ff-8a84-8015d3a16428,SESCO,II.5.1,Santiago del Estero,AR-G,annual,2020,gas oil combustion consumption by agriculture machines,210.54348,TJ,CO2,74100.0,kg/TJ,15601271.867999999,kg -a33fa547-7125-399b-815c-d0ecf88611d2,SESCO,II.5.1,Santiago del Estero,AR-G,annual,2020,gas oil combustion consumption by agriculture machines,210.54348,TJ,CH4,3.9,kg/TJ,821.119572,kg -a33fa547-7125-399b-815c-d0ecf88611d2,SESCO,II.5.1,Santiago del Estero,AR-G,annual,2020,gas oil combustion consumption by agriculture machines,210.54348,TJ,N2O,3.9,kg/TJ,821.119572,kg -b01af474-ddaa-3270-8f4e-5df5689da09d,SESCO,II.5.1,Tucuman,AR-T,annual,2020,gas oil combustion consumption by agriculture machines,209.6766,TJ,CO2,74100.0,kg/TJ,15537036.06,kg -88bd48e4-0f2b-3377-9963-d86ed24ccbd4,SESCO,II.5.1,Tucuman,AR-T,annual,2020,gas oil combustion consumption by agriculture machines,209.6766,TJ,CH4,3.9,kg/TJ,817.73874,kg -88bd48e4-0f2b-3377-9963-d86ed24ccbd4,SESCO,II.5.1,Tucuman,AR-T,annual,2020,gas oil combustion consumption by agriculture machines,209.6766,TJ,N2O,3.9,kg/TJ,817.73874,kg -a5905620-ddf1-3e41-88c2-861b0bfd520a,SESCO,II.5.1,Buenos Aires,AR-B,annual,2020,gas oil combustion consumption by agriculture machines,189.01596,TJ,CO2,74100.0,kg/TJ,14006082.636,kg -f3027518-e1d9-3351-a818-7ebc7115e118,SESCO,II.5.1,Buenos Aires,AR-B,annual,2020,gas oil combustion consumption by agriculture machines,189.01596,TJ,CH4,3.9,kg/TJ,737.162244,kg -f3027518-e1d9-3351-a818-7ebc7115e118,SESCO,II.5.1,Buenos Aires,AR-B,annual,2020,gas oil combustion consumption by agriculture machines,189.01596,TJ,N2O,3.9,kg/TJ,737.162244,kg -f056b303-fc90-3a0a-b259-51a1d44abe0a,SESCO,II.5.1,Capital Federal,AR-C,annual,2020,gas oil combustion consumption by agriculture machines,0.7223999999999999,TJ,CO2,74100.0,kg/TJ,53529.84,kg -0c2af07a-846a-3b63-bbdf-a58dfea3ff21,SESCO,II.5.1,Capital Federal,AR-C,annual,2020,gas oil combustion consumption by agriculture machines,0.7223999999999999,TJ,CH4,3.9,kg/TJ,2.81736,kg -0c2af07a-846a-3b63-bbdf-a58dfea3ff21,SESCO,II.5.1,Capital Federal,AR-C,annual,2020,gas oil combustion consumption by agriculture machines,0.7223999999999999,TJ,N2O,3.9,kg/TJ,2.81736,kg -f85f6495-da0d-3510-b146-24fd900bffff,SESCO,II.5.1,Chaco,AR-H,annual,2020,gas oil combustion consumption by agriculture machines,90.44448,TJ,CO2,74100.0,kg/TJ,6701935.968,kg -946598e9-8e0a-3230-87e3-86522741f525,SESCO,II.5.1,Chaco,AR-H,annual,2020,gas oil combustion consumption by agriculture machines,90.44448,TJ,CH4,3.9,kg/TJ,352.733472,kg -946598e9-8e0a-3230-87e3-86522741f525,SESCO,II.5.1,Chaco,AR-H,annual,2020,gas oil combustion consumption by agriculture machines,90.44448,TJ,N2O,3.9,kg/TJ,352.733472,kg -0561244a-9d9c-33f9-bf8d-17686ad9fcea,SESCO,II.5.1,Corrientes,AR-W,annual,2020,gas oil combustion consumption by agriculture machines,14.484119999999999,TJ,CO2,74100.0,kg/TJ,1073273.292,kg -06016544-ce43-3b81-b27a-081efb65b6d3,SESCO,II.5.1,Corrientes,AR-W,annual,2020,gas oil combustion consumption by agriculture machines,14.484119999999999,TJ,CH4,3.9,kg/TJ,56.48806799999999,kg -06016544-ce43-3b81-b27a-081efb65b6d3,SESCO,II.5.1,Corrientes,AR-W,annual,2020,gas oil combustion consumption by agriculture machines,14.484119999999999,TJ,N2O,3.9,kg/TJ,56.48806799999999,kg -f6700944-7333-3c50-b7ba-d778c1ec3ce5,SESCO,II.5.1,Córdoba,AR-X,annual,2020,gas oil combustion consumption by agriculture machines,250.3116,TJ,CO2,74100.0,kg/TJ,18548089.56,kg -ca659abc-8888-3fc2-8ba6-89685e175824,SESCO,II.5.1,Córdoba,AR-X,annual,2020,gas oil combustion consumption by agriculture machines,250.3116,TJ,CH4,3.9,kg/TJ,976.21524,kg -ca659abc-8888-3fc2-8ba6-89685e175824,SESCO,II.5.1,Córdoba,AR-X,annual,2020,gas oil combustion consumption by agriculture machines,250.3116,TJ,N2O,3.9,kg/TJ,976.21524,kg -f9e256a0-ed9e-3801-9b71-e68a0e956830,SESCO,II.5.1,Entre Rios,AR-E,annual,2020,gas oil combustion consumption by agriculture machines,16.57908,TJ,CO2,74100.0,kg/TJ,1228509.828,kg -916098bd-84cc-3faa-bc56-cf73d6eb480d,SESCO,II.5.1,Entre Rios,AR-E,annual,2020,gas oil combustion consumption by agriculture machines,16.57908,TJ,CH4,3.9,kg/TJ,64.658412,kg -916098bd-84cc-3faa-bc56-cf73d6eb480d,SESCO,II.5.1,Entre Rios,AR-E,annual,2020,gas oil combustion consumption by agriculture machines,16.57908,TJ,N2O,3.9,kg/TJ,64.658412,kg -c3dce7ca-7336-3384-a7d8-ad9ba8c114a1,SESCO,II.5.1,La Pampa,AR-L,annual,2020,gas oil combustion consumption by agriculture machines,34.38624,TJ,CO2,74100.0,kg/TJ,2548020.384,kg -9766f5db-2634-3e68-ae71-d8491bb8a072,SESCO,II.5.1,La Pampa,AR-L,annual,2020,gas oil combustion consumption by agriculture machines,34.38624,TJ,CH4,3.9,kg/TJ,134.106336,kg -9766f5db-2634-3e68-ae71-d8491bb8a072,SESCO,II.5.1,La Pampa,AR-L,annual,2020,gas oil combustion consumption by agriculture machines,34.38624,TJ,N2O,3.9,kg/TJ,134.106336,kg -396e95a9-f96a-3e06-8c68-ea64a9f06f6a,SESCO,II.5.1,Mendoza,AR-M,annual,2020,gas oil combustion consumption by agriculture machines,78.88607999999999,TJ,CO2,74100.0,kg/TJ,5845458.527999999,kg -7b833326-68ab-3c3b-a3a6-dfbd105d7d6d,SESCO,II.5.1,Mendoza,AR-M,annual,2020,gas oil combustion consumption by agriculture machines,78.88607999999999,TJ,CH4,3.9,kg/TJ,307.65571199999994,kg -7b833326-68ab-3c3b-a3a6-dfbd105d7d6d,SESCO,II.5.1,Mendoza,AR-M,annual,2020,gas oil combustion consumption by agriculture machines,78.88607999999999,TJ,N2O,3.9,kg/TJ,307.65571199999994,kg -69f020cb-05a2-3c94-8a9e-cbadf5204651,SESCO,II.5.1,Neuquén,AR-Q,annual,2020,gas oil combustion consumption by agriculture machines,29.58228,TJ,CO2,74100.0,kg/TJ,2192046.948,kg -3127ebff-a3d2-3bfc-8b3b-b8bf9eb5a41b,SESCO,II.5.1,Neuquén,AR-Q,annual,2020,gas oil combustion consumption by agriculture machines,29.58228,TJ,CH4,3.9,kg/TJ,115.370892,kg -3127ebff-a3d2-3bfc-8b3b-b8bf9eb5a41b,SESCO,II.5.1,Neuquén,AR-Q,annual,2020,gas oil combustion consumption by agriculture machines,29.58228,TJ,N2O,3.9,kg/TJ,115.370892,kg -9f289720-a6d3-34b2-ac3b-4c6c615906d7,SESCO,II.5.1,San Luis,AR-D,annual,2020,gas oil combustion consumption by agriculture machines,1.33644,TJ,CO2,74100.0,kg/TJ,99030.20400000001,kg -940638db-169f-3866-9cb4-cff4e4a9bd3f,SESCO,II.5.1,San Luis,AR-D,annual,2020,gas oil combustion consumption by agriculture machines,1.33644,TJ,CH4,3.9,kg/TJ,5.212116,kg -940638db-169f-3866-9cb4-cff4e4a9bd3f,SESCO,II.5.1,San Luis,AR-D,annual,2020,gas oil combustion consumption by agriculture machines,1.33644,TJ,N2O,3.9,kg/TJ,5.212116,kg -70ea49ef-616b-3f16-95e1-aa700cf8a293,SESCO,II.5.1,Santa Cruz,AR-Z,annual,2020,gas oil combustion consumption by agriculture machines,133.68012,TJ,CO2,74100.0,kg/TJ,9905696.891999999,kg -e2d21bfd-b665-346e-8263-64ee4cd382b1,SESCO,II.5.1,Santa Cruz,AR-Z,annual,2020,gas oil combustion consumption by agriculture machines,133.68012,TJ,CH4,3.9,kg/TJ,521.3524679999999,kg -e2d21bfd-b665-346e-8263-64ee4cd382b1,SESCO,II.5.1,Santa Cruz,AR-Z,annual,2020,gas oil combustion consumption by agriculture machines,133.68012,TJ,N2O,3.9,kg/TJ,521.3524679999999,kg -aab7d1c1-3ecb-3fd3-9aa7-24e13a08e878,SESCO,II.5.1,Santa Fe,AR-S,annual,2020,gas oil combustion consumption by agriculture machines,355.09572,TJ,CO2,74100.0,kg/TJ,26312592.851999998,kg -39e1d610-7bc9-3717-b9a6-8d62d7844aa2,SESCO,II.5.1,Santa Fe,AR-S,annual,2020,gas oil combustion consumption by agriculture machines,355.09572,TJ,CH4,3.9,kg/TJ,1384.873308,kg -39e1d610-7bc9-3717-b9a6-8d62d7844aa2,SESCO,II.5.1,Santa Fe,AR-S,annual,2020,gas oil combustion consumption by agriculture machines,355.09572,TJ,N2O,3.9,kg/TJ,1384.873308,kg -9545de64-69b0-3f93-ab10-c4e4b9974e06,SESCO,II.5.1,Santiago del Estero,AR-G,annual,2020,gas oil combustion consumption by agriculture machines,83.40108,TJ,CO2,74100.0,kg/TJ,6180020.028,kg -229aa0c9-6572-3ede-bdd4-9b5da1bac315,SESCO,II.5.1,Santiago del Estero,AR-G,annual,2020,gas oil combustion consumption by agriculture machines,83.40108,TJ,CH4,3.9,kg/TJ,325.264212,kg -229aa0c9-6572-3ede-bdd4-9b5da1bac315,SESCO,II.5.1,Santiago del Estero,AR-G,annual,2020,gas oil combustion consumption by agriculture machines,83.40108,TJ,N2O,3.9,kg/TJ,325.264212,kg -7cefec94-7c62-3f2f-ba2b-7839d761c7af,SESCO,II.5.1,Tucuman,AR-T,annual,2020,gas oil combustion consumption by agriculture machines,46.81152,TJ,CO2,74100.0,kg/TJ,3468733.632,kg -aa3c46b7-2d77-3827-a275-7f06a5746901,SESCO,II.5.1,Tucuman,AR-T,annual,2020,gas oil combustion consumption by agriculture machines,46.81152,TJ,CH4,3.9,kg/TJ,182.564928,kg -aa3c46b7-2d77-3827-a275-7f06a5746901,SESCO,II.5.1,Tucuman,AR-T,annual,2020,gas oil combustion consumption by agriculture machines,46.81152,TJ,N2O,3.9,kg/TJ,182.564928,kg -74ff3101-3b86-3654-bb2c-3765f8d59842,SESCO,II.1.1,Buenos Aires,AR-B,annual,2020,gas oil combustion consumption by to the public,7392.03024,TJ,CO2,74100.0,kg/TJ,547749440.784,kg -965be6a6-81b1-373c-9ff4-2d2604793980,SESCO,II.1.1,Buenos Aires,AR-B,annual,2020,gas oil combustion consumption by to the public,7392.03024,TJ,CH4,3.9,kg/TJ,28828.917935999998,kg -965be6a6-81b1-373c-9ff4-2d2604793980,SESCO,II.1.1,Buenos Aires,AR-B,annual,2020,gas oil combustion consumption by to the public,7392.03024,TJ,N2O,3.9,kg/TJ,28828.917935999998,kg -9f651c50-c457-3292-abc6-66a9a6afdbfe,SESCO,II.1.1,Capital Federal,AR-C,annual,2020,gas oil combustion consumption by to the public,597.67764,TJ,CO2,74100.0,kg/TJ,44287913.124,kg -96a09b2c-1685-3542-92d1-d71edb5a81a1,SESCO,II.1.1,Capital Federal,AR-C,annual,2020,gas oil combustion consumption by to the public,597.67764,TJ,CH4,3.9,kg/TJ,2330.942796,kg -96a09b2c-1685-3542-92d1-d71edb5a81a1,SESCO,II.1.1,Capital Federal,AR-C,annual,2020,gas oil combustion consumption by to the public,597.67764,TJ,N2O,3.9,kg/TJ,2330.942796,kg -b65f3a49-f36d-352a-9f9e-9a814036f021,SESCO,II.1.1,Catamarca,AR-K,annual,2020,gas oil combustion consumption by to the public,266.05992,TJ,CO2,74100.0,kg/TJ,19715040.071999997,kg -cd71552c-f263-30ca-8586-9af2096e2d16,SESCO,II.1.1,Catamarca,AR-K,annual,2020,gas oil combustion consumption by to the public,266.05992,TJ,CH4,3.9,kg/TJ,1037.633688,kg -cd71552c-f263-30ca-8586-9af2096e2d16,SESCO,II.1.1,Catamarca,AR-K,annual,2020,gas oil combustion consumption by to the public,266.05992,TJ,N2O,3.9,kg/TJ,1037.633688,kg -10897abd-ba73-3516-806f-1e012fd2f9d3,SESCO,II.1.1,Chaco,AR-H,annual,2020,gas oil combustion consumption by to the public,354.01212,TJ,CO2,74100.0,kg/TJ,26232298.092,kg -b4c3b78b-6b9d-30e8-b0a3-73d63af5c40e,SESCO,II.1.1,Chaco,AR-H,annual,2020,gas oil combustion consumption by to the public,354.01212,TJ,CH4,3.9,kg/TJ,1380.647268,kg -b4c3b78b-6b9d-30e8-b0a3-73d63af5c40e,SESCO,II.1.1,Chaco,AR-H,annual,2020,gas oil combustion consumption by to the public,354.01212,TJ,N2O,3.9,kg/TJ,1380.647268,kg -a9303848-1b75-3f6a-8e6b-88b2a965ba16,SESCO,II.1.1,Chubut,AR-U,annual,2020,gas oil combustion consumption by to the public,1048.41912,TJ,CO2,74100.0,kg/TJ,77687856.792,kg -1bed8c31-780f-3dff-af24-4a96c7ccc5b2,SESCO,II.1.1,Chubut,AR-U,annual,2020,gas oil combustion consumption by to the public,1048.41912,TJ,CH4,3.9,kg/TJ,4088.8345679999998,kg -1bed8c31-780f-3dff-af24-4a96c7ccc5b2,SESCO,II.1.1,Chubut,AR-U,annual,2020,gas oil combustion consumption by to the public,1048.41912,TJ,N2O,3.9,kg/TJ,4088.8345679999998,kg -87836d5a-9541-3ca2-bb65-a92e5f265199,SESCO,II.1.1,Corrientes,AR-W,annual,2020,gas oil combustion consumption by to the public,760.9761599999999,TJ,CO2,74100.0,kg/TJ,56388333.45599999,kg -d28d525b-e4eb-3292-90bc-dff456e52426,SESCO,II.1.1,Corrientes,AR-W,annual,2020,gas oil combustion consumption by to the public,760.9761599999999,TJ,CH4,3.9,kg/TJ,2967.8070239999997,kg -d28d525b-e4eb-3292-90bc-dff456e52426,SESCO,II.1.1,Corrientes,AR-W,annual,2020,gas oil combustion consumption by to the public,760.9761599999999,TJ,N2O,3.9,kg/TJ,2967.8070239999997,kg -b080ddcd-951c-3755-8093-ca611226fcc2,SESCO,II.1.1,Córdoba,AR-X,annual,2020,gas oil combustion consumption by to the public,3812.68272,TJ,CO2,74100.0,kg/TJ,282519789.552,kg -1426df1d-7d43-3399-a45a-8f827ff96b7f,SESCO,II.1.1,Córdoba,AR-X,annual,2020,gas oil combustion consumption by to the public,3812.68272,TJ,CH4,3.9,kg/TJ,14869.462607999998,kg -1426df1d-7d43-3399-a45a-8f827ff96b7f,SESCO,II.1.1,Córdoba,AR-X,annual,2020,gas oil combustion consumption by to the public,3812.68272,TJ,N2O,3.9,kg/TJ,14869.462607999998,kg -ab89a31b-89e9-3819-9551-09a601105f33,SESCO,II.1.1,Entre Rios,AR-E,annual,2020,gas oil combustion consumption by to the public,1301.83704,TJ,CO2,74100.0,kg/TJ,96466124.66399999,kg -698bfebf-a008-3cdd-b0f0-d653375987b7,SESCO,II.1.1,Entre Rios,AR-E,annual,2020,gas oil combustion consumption by to the public,1301.83704,TJ,CH4,3.9,kg/TJ,5077.1644559999995,kg -698bfebf-a008-3cdd-b0f0-d653375987b7,SESCO,II.1.1,Entre Rios,AR-E,annual,2020,gas oil combustion consumption by to the public,1301.83704,TJ,N2O,3.9,kg/TJ,5077.1644559999995,kg -2a585c15-54a0-332c-993c-06c7ee130cd4,SESCO,II.1.1,Formosa,AR-P,annual,2020,gas oil combustion consumption by to the public,456.52067999999997,TJ,CO2,74100.0,kg/TJ,33828182.388,kg -c41662dc-1adc-3bd8-aaee-c822d32f6012,SESCO,II.1.1,Formosa,AR-P,annual,2020,gas oil combustion consumption by to the public,456.52067999999997,TJ,CH4,3.9,kg/TJ,1780.4306519999998,kg -c41662dc-1adc-3bd8-aaee-c822d32f6012,SESCO,II.1.1,Formosa,AR-P,annual,2020,gas oil combustion consumption by to the public,456.52067999999997,TJ,N2O,3.9,kg/TJ,1780.4306519999998,kg -110c5324-287d-3df6-9a44-3023993c5baa,SESCO,II.1.1,Jujuy,AR-Y,annual,2020,gas oil combustion consumption by to the public,215.817,TJ,CO2,74100.0,kg/TJ,15992039.700000001,kg -28a7aaf6-ab6c-3639-83fd-d84fca41a7f0,SESCO,II.1.1,Jujuy,AR-Y,annual,2020,gas oil combustion consumption by to the public,215.817,TJ,CH4,3.9,kg/TJ,841.6863,kg -28a7aaf6-ab6c-3639-83fd-d84fca41a7f0,SESCO,II.1.1,Jujuy,AR-Y,annual,2020,gas oil combustion consumption by to the public,215.817,TJ,N2O,3.9,kg/TJ,841.6863,kg -c9932bb8-2c28-3c32-a704-b119c315904d,SESCO,II.1.1,La Pampa,AR-L,annual,2020,gas oil combustion consumption by to the public,306.55044,TJ,CO2,74100.0,kg/TJ,22715387.604,kg -584552ce-45ff-39c0-9cda-726db875d7eb,SESCO,II.1.1,La Pampa,AR-L,annual,2020,gas oil combustion consumption by to the public,306.55044,TJ,CH4,3.9,kg/TJ,1195.5467159999998,kg -584552ce-45ff-39c0-9cda-726db875d7eb,SESCO,II.1.1,La Pampa,AR-L,annual,2020,gas oil combustion consumption by to the public,306.55044,TJ,N2O,3.9,kg/TJ,1195.5467159999998,kg -52012348-4c1d-3496-9e3e-26597959a708,SESCO,II.1.1,La Rioja,AR-F,annual,2020,gas oil combustion consumption by to the public,44.247,TJ,CO2,74100.0,kg/TJ,3278702.7,kg -7732aa79-267f-34ea-9132-ba994af32426,SESCO,II.1.1,La Rioja,AR-F,annual,2020,gas oil combustion consumption by to the public,44.247,TJ,CH4,3.9,kg/TJ,172.5633,kg -7732aa79-267f-34ea-9132-ba994af32426,SESCO,II.1.1,La Rioja,AR-F,annual,2020,gas oil combustion consumption by to the public,44.247,TJ,N2O,3.9,kg/TJ,172.5633,kg -471144bb-524a-355c-8fb1-a5c3944b8098,SESCO,II.1.1,Mendoza,AR-M,annual,2020,gas oil combustion consumption by to the public,1213.92096,TJ,CO2,74100.0,kg/TJ,89951543.13599999,kg -021d1d5d-0cd3-3b2d-9425-f027c6f8175c,SESCO,II.1.1,Mendoza,AR-M,annual,2020,gas oil combustion consumption by to the public,1213.92096,TJ,CH4,3.9,kg/TJ,4734.291743999999,kg -021d1d5d-0cd3-3b2d-9425-f027c6f8175c,SESCO,II.1.1,Mendoza,AR-M,annual,2020,gas oil combustion consumption by to the public,1213.92096,TJ,N2O,3.9,kg/TJ,4734.291743999999,kg -033e38f8-db04-3269-9f43-f8237a4310c3,SESCO,II.1.1,Misiones,AR-N,annual,2020,gas oil combustion consumption by to the public,833.14392,TJ,CO2,74100.0,kg/TJ,61735964.471999995,kg -e7fddef1-e69e-317e-8fac-c7574d06adf2,SESCO,II.1.1,Misiones,AR-N,annual,2020,gas oil combustion consumption by to the public,833.14392,TJ,CH4,3.9,kg/TJ,3249.2612879999997,kg -e7fddef1-e69e-317e-8fac-c7574d06adf2,SESCO,II.1.1,Misiones,AR-N,annual,2020,gas oil combustion consumption by to the public,833.14392,TJ,N2O,3.9,kg/TJ,3249.2612879999997,kg -68ca512b-5153-3bcb-ac82-efce6d34bab4,SESCO,II.1.1,Neuquén,AR-Q,annual,2020,gas oil combustion consumption by to the public,170.19744,TJ,CO2,74100.0,kg/TJ,12611630.304,kg -1d4d36d8-fd1e-30ac-a8de-2efe6709d3af,SESCO,II.1.1,Neuquén,AR-Q,annual,2020,gas oil combustion consumption by to the public,170.19744,TJ,CH4,3.9,kg/TJ,663.7700159999999,kg -1d4d36d8-fd1e-30ac-a8de-2efe6709d3af,SESCO,II.1.1,Neuquén,AR-Q,annual,2020,gas oil combustion consumption by to the public,170.19744,TJ,N2O,3.9,kg/TJ,663.7700159999999,kg -3debee2b-6fd0-3f28-adcc-4975fc6c5286,SESCO,II.1.1,Rio Negro,AR-R,annual,2020,gas oil combustion consumption by to the public,462.6972,TJ,CO2,74100.0,kg/TJ,34285862.52,kg -1c2c2317-1a3d-3813-9941-825c7f67be5e,SESCO,II.1.1,Rio Negro,AR-R,annual,2020,gas oil combustion consumption by to the public,462.6972,TJ,CH4,3.9,kg/TJ,1804.51908,kg -1c2c2317-1a3d-3813-9941-825c7f67be5e,SESCO,II.1.1,Rio Negro,AR-R,annual,2020,gas oil combustion consumption by to the public,462.6972,TJ,N2O,3.9,kg/TJ,1804.51908,kg -83bb315e-7906-3443-89cb-12625a9ee128,SESCO,II.1.1,Salta,AR-A,annual,2020,gas oil combustion consumption by to the public,53.85492,TJ,CO2,74100.0,kg/TJ,3990649.572,kg -86936c01-7137-3958-bdc6-9b24d9edff96,SESCO,II.1.1,Salta,AR-A,annual,2020,gas oil combustion consumption by to the public,53.85492,TJ,CH4,3.9,kg/TJ,210.034188,kg -86936c01-7137-3958-bdc6-9b24d9edff96,SESCO,II.1.1,Salta,AR-A,annual,2020,gas oil combustion consumption by to the public,53.85492,TJ,N2O,3.9,kg/TJ,210.034188,kg -fbd03dd2-b790-3568-9cc1-2331d6b7092d,SESCO,II.1.1,San Juan,AR-J,annual,2020,gas oil combustion consumption by to the public,227.59212,TJ,CO2,74100.0,kg/TJ,16864576.092,kg -4c6c881b-3639-3a29-b2b9-8e03672ac785,SESCO,II.1.1,San Juan,AR-J,annual,2020,gas oil combustion consumption by to the public,227.59212,TJ,CH4,3.9,kg/TJ,887.6092679999999,kg -4c6c881b-3639-3a29-b2b9-8e03672ac785,SESCO,II.1.1,San Juan,AR-J,annual,2020,gas oil combustion consumption by to the public,227.59212,TJ,N2O,3.9,kg/TJ,887.6092679999999,kg -475ff580-d6d5-36ea-ab1e-b3b5a8ce1157,SESCO,II.1.1,San Luis,AR-D,annual,2020,gas oil combustion consumption by to the public,546.6762,TJ,CO2,74100.0,kg/TJ,40508706.42,kg -79cf905e-b492-350b-90b7-328988ea57f1,SESCO,II.1.1,San Luis,AR-D,annual,2020,gas oil combustion consumption by to the public,546.6762,TJ,CH4,3.9,kg/TJ,2132.03718,kg -79cf905e-b492-350b-90b7-328988ea57f1,SESCO,II.1.1,San Luis,AR-D,annual,2020,gas oil combustion consumption by to the public,546.6762,TJ,N2O,3.9,kg/TJ,2132.03718,kg -18a2fb32-0608-3d6f-87b5-162520d6daba,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2020,gas oil combustion consumption by to the public,314.56908,TJ,CO2,74100.0,kg/TJ,23309568.827999998,kg -62ad449b-b55b-330b-a284-fc0fea7b06b7,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2020,gas oil combustion consumption by to the public,314.56908,TJ,CH4,3.9,kg/TJ,1226.8194119999998,kg -62ad449b-b55b-330b-a284-fc0fea7b06b7,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2020,gas oil combustion consumption by to the public,314.56908,TJ,N2O,3.9,kg/TJ,1226.8194119999998,kg -fc010549-acc3-3bfb-8ec3-d0d1e1a9dca9,SESCO,II.1.1,Santa Fe,AR-S,annual,2020,gas oil combustion consumption by to the public,2281.19472,TJ,CO2,74100.0,kg/TJ,169036528.752,kg -ec067d2f-cc0d-3382-865a-81c40545d780,SESCO,II.1.1,Santa Fe,AR-S,annual,2020,gas oil combustion consumption by to the public,2281.19472,TJ,CH4,3.9,kg/TJ,8896.659408,kg -ec067d2f-cc0d-3382-865a-81c40545d780,SESCO,II.1.1,Santa Fe,AR-S,annual,2020,gas oil combustion consumption by to the public,2281.19472,TJ,N2O,3.9,kg/TJ,8896.659408,kg -bccf3a80-62e8-36ab-a1e8-aa545ddb5d7b,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2020,gas oil combustion consumption by to the public,482.77992,TJ,CO2,74100.0,kg/TJ,35773992.072,kg -a8cce152-8d7a-3552-84bc-6854579511ea,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2020,gas oil combustion consumption by to the public,482.77992,TJ,CH4,3.9,kg/TJ,1882.841688,kg -a8cce152-8d7a-3552-84bc-6854579511ea,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2020,gas oil combustion consumption by to the public,482.77992,TJ,N2O,3.9,kg/TJ,1882.841688,kg -182ff897-c273-348e-81ad-cf4aa4c83707,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2020,gas oil combustion consumption by to the public,45.5112,TJ,CO2,74100.0,kg/TJ,3372379.9200000004,kg -1275b2d8-15af-363e-9b69-11b84d703613,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2020,gas oil combustion consumption by to the public,45.5112,TJ,CH4,3.9,kg/TJ,177.49368,kg -1275b2d8-15af-363e-9b69-11b84d703613,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2020,gas oil combustion consumption by to the public,45.5112,TJ,N2O,3.9,kg/TJ,177.49368,kg -6ebf6582-9308-374b-9a9f-c353b9f0e41f,SESCO,II.1.1,Tucuman,AR-T,annual,2020,gas oil combustion consumption by to the public,74.29884,TJ,CO2,74100.0,kg/TJ,5505544.044,kg -c67889e2-836b-35e1-bb93-2086df8d3173,SESCO,II.1.1,Tucuman,AR-T,annual,2020,gas oil combustion consumption by to the public,74.29884,TJ,CH4,3.9,kg/TJ,289.765476,kg -c67889e2-836b-35e1-bb93-2086df8d3173,SESCO,II.1.1,Tucuman,AR-T,annual,2020,gas oil combustion consumption by to the public,74.29884,TJ,N2O,3.9,kg/TJ,289.765476,kg -d74d2b0c-0a37-3e9f-a3c2-ac9068b69b5c,SESCO,II.1.1,Buenos Aires,AR-B,annual,2020,gas oil combustion consumption by to the public,2842.53564,TJ,CO2,74100.0,kg/TJ,210631890.924,kg -8a8e63a7-434f-3b13-ad09-1cdda76857b1,SESCO,II.1.1,Buenos Aires,AR-B,annual,2020,gas oil combustion consumption by to the public,2842.53564,TJ,CH4,3.9,kg/TJ,11085.888996,kg -8a8e63a7-434f-3b13-ad09-1cdda76857b1,SESCO,II.1.1,Buenos Aires,AR-B,annual,2020,gas oil combustion consumption by to the public,2842.53564,TJ,N2O,3.9,kg/TJ,11085.888996,kg -71b329ab-6b6f-3435-af61-0bba16bbf81a,SESCO,II.1.1,Capital Federal,AR-C,annual,2020,gas oil combustion consumption by to the public,429.35844,TJ,CO2,74100.0,kg/TJ,31815460.404,kg -fa5488cb-ae3a-3707-9bf9-50b94980a2fd,SESCO,II.1.1,Capital Federal,AR-C,annual,2020,gas oil combustion consumption by to the public,429.35844,TJ,CH4,3.9,kg/TJ,1674.4979159999998,kg -fa5488cb-ae3a-3707-9bf9-50b94980a2fd,SESCO,II.1.1,Capital Federal,AR-C,annual,2020,gas oil combustion consumption by to the public,429.35844,TJ,N2O,3.9,kg/TJ,1674.4979159999998,kg -a80a3412-252c-3aea-9404-b0326da6959e,SESCO,II.1.1,Catamarca,AR-K,annual,2020,gas oil combustion consumption by to the public,170.55864,TJ,CO2,74100.0,kg/TJ,12638395.224,kg -44964d34-5d98-32e7-b031-ba49c043dc15,SESCO,II.1.1,Catamarca,AR-K,annual,2020,gas oil combustion consumption by to the public,170.55864,TJ,CH4,3.9,kg/TJ,665.178696,kg -44964d34-5d98-32e7-b031-ba49c043dc15,SESCO,II.1.1,Catamarca,AR-K,annual,2020,gas oil combustion consumption by to the public,170.55864,TJ,N2O,3.9,kg/TJ,665.178696,kg -1704b5f4-0800-3c32-ba05-e764b238f2e3,SESCO,II.1.1,Chaco,AR-H,annual,2020,gas oil combustion consumption by to the public,126.09492,TJ,CO2,74100.0,kg/TJ,9343633.572,kg -f1fd8a10-bdd1-3bc9-a397-e785a25ca8b2,SESCO,II.1.1,Chaco,AR-H,annual,2020,gas oil combustion consumption by to the public,126.09492,TJ,CH4,3.9,kg/TJ,491.770188,kg -f1fd8a10-bdd1-3bc9-a397-e785a25ca8b2,SESCO,II.1.1,Chaco,AR-H,annual,2020,gas oil combustion consumption by to the public,126.09492,TJ,N2O,3.9,kg/TJ,491.770188,kg -b82e12fd-6bb2-3d6a-85af-19172a517a99,SESCO,II.1.1,Chubut,AR-U,annual,2020,gas oil combustion consumption by to the public,510.48395999999997,TJ,CO2,74100.0,kg/TJ,37826861.436,kg -7371d506-1245-33e7-b802-890ac770857b,SESCO,II.1.1,Chubut,AR-U,annual,2020,gas oil combustion consumption by to the public,510.48395999999997,TJ,CH4,3.9,kg/TJ,1990.8874439999997,kg -7371d506-1245-33e7-b802-890ac770857b,SESCO,II.1.1,Chubut,AR-U,annual,2020,gas oil combustion consumption by to the public,510.48395999999997,TJ,N2O,3.9,kg/TJ,1990.8874439999997,kg -5d95915f-8192-36d9-8e06-4be3e9f3cae1,SESCO,II.1.1,Corrientes,AR-W,annual,2020,gas oil combustion consumption by to the public,212.38559999999998,TJ,CO2,74100.0,kg/TJ,15737772.959999999,kg -80379c15-fcb0-30b7-97ad-8bb2ce824ec6,SESCO,II.1.1,Corrientes,AR-W,annual,2020,gas oil combustion consumption by to the public,212.38559999999998,TJ,CH4,3.9,kg/TJ,828.3038399999999,kg -80379c15-fcb0-30b7-97ad-8bb2ce824ec6,SESCO,II.1.1,Corrientes,AR-W,annual,2020,gas oil combustion consumption by to the public,212.38559999999998,TJ,N2O,3.9,kg/TJ,828.3038399999999,kg -6b7f4023-267c-3cbf-b8c1-d3b5d41a4aaf,SESCO,II.1.1,Córdoba,AR-X,annual,2020,gas oil combustion consumption by to the public,894.98136,TJ,CO2,74100.0,kg/TJ,66318118.776,kg -d8dbe969-fe6f-3b2e-a91a-3c12ed161b65,SESCO,II.1.1,Córdoba,AR-X,annual,2020,gas oil combustion consumption by to the public,894.98136,TJ,CH4,3.9,kg/TJ,3490.427304,kg -d8dbe969-fe6f-3b2e-a91a-3c12ed161b65,SESCO,II.1.1,Córdoba,AR-X,annual,2020,gas oil combustion consumption by to the public,894.98136,TJ,N2O,3.9,kg/TJ,3490.427304,kg -d0c89ef0-5980-3f97-8e1e-36d93af8c466,SESCO,II.1.1,Entre Rios,AR-E,annual,2020,gas oil combustion consumption by to the public,387.96492,TJ,CO2,74100.0,kg/TJ,28748200.572,kg -cc655e13-c209-3664-89f2-4476756e7cb7,SESCO,II.1.1,Entre Rios,AR-E,annual,2020,gas oil combustion consumption by to the public,387.96492,TJ,CH4,3.9,kg/TJ,1513.063188,kg -cc655e13-c209-3664-89f2-4476756e7cb7,SESCO,II.1.1,Entre Rios,AR-E,annual,2020,gas oil combustion consumption by to the public,387.96492,TJ,N2O,3.9,kg/TJ,1513.063188,kg -b1136971-458f-3c67-bb1c-016c72102c76,SESCO,II.1.1,Formosa,AR-P,annual,2020,gas oil combustion consumption by to the public,249.7698,TJ,CO2,74100.0,kg/TJ,18507942.18,kg -fa7127a2-4f26-3e2c-b0cd-f6eaecf6bdbd,SESCO,II.1.1,Formosa,AR-P,annual,2020,gas oil combustion consumption by to the public,249.7698,TJ,CH4,3.9,kg/TJ,974.10222,kg -fa7127a2-4f26-3e2c-b0cd-f6eaecf6bdbd,SESCO,II.1.1,Formosa,AR-P,annual,2020,gas oil combustion consumption by to the public,249.7698,TJ,N2O,3.9,kg/TJ,974.10222,kg -8fc47cd0-a4e1-334e-afc2-fa8509006f28,SESCO,II.1.1,Jujuy,AR-Y,annual,2020,gas oil combustion consumption by to the public,68.70024,TJ,CO2,74100.0,kg/TJ,5090687.784,kg -d19aa552-d232-38a7-9b59-b9357bab7536,SESCO,II.1.1,Jujuy,AR-Y,annual,2020,gas oil combustion consumption by to the public,68.70024,TJ,CH4,3.9,kg/TJ,267.930936,kg -d19aa552-d232-38a7-9b59-b9357bab7536,SESCO,II.1.1,Jujuy,AR-Y,annual,2020,gas oil combustion consumption by to the public,68.70024,TJ,N2O,3.9,kg/TJ,267.930936,kg -762f685a-4ee2-32be-bd1f-ad4dbf8d9ab3,SESCO,II.1.1,La Pampa,AR-L,annual,2020,gas oil combustion consumption by to the public,120.2796,TJ,CO2,74100.0,kg/TJ,8912718.36,kg -dd9c5daa-6309-3a15-b781-bbcc8d374c67,SESCO,II.1.1,La Pampa,AR-L,annual,2020,gas oil combustion consumption by to the public,120.2796,TJ,CH4,3.9,kg/TJ,469.09044,kg -dd9c5daa-6309-3a15-b781-bbcc8d374c67,SESCO,II.1.1,La Pampa,AR-L,annual,2020,gas oil combustion consumption by to the public,120.2796,TJ,N2O,3.9,kg/TJ,469.09044,kg -6cefdacc-1084-3192-a990-405c6579e6b5,SESCO,II.1.1,La Rioja,AR-F,annual,2020,gas oil combustion consumption by to the public,40.418279999999996,TJ,CO2,74100.0,kg/TJ,2994994.5479999995,kg -8b17b727-2465-392c-b764-b6dfbae23c6d,SESCO,II.1.1,La Rioja,AR-F,annual,2020,gas oil combustion consumption by to the public,40.418279999999996,TJ,CH4,3.9,kg/TJ,157.63129199999997,kg -8b17b727-2465-392c-b764-b6dfbae23c6d,SESCO,II.1.1,La Rioja,AR-F,annual,2020,gas oil combustion consumption by to the public,40.418279999999996,TJ,N2O,3.9,kg/TJ,157.63129199999997,kg -37e245a3-3d32-3dfa-b692-745e1a2fe16a,SESCO,II.1.1,Mendoza,AR-M,annual,2020,gas oil combustion consumption by to the public,285.27576,TJ,CO2,74100.0,kg/TJ,21138933.816,kg -79e903e6-cf33-37bb-a5e3-602e8b494464,SESCO,II.1.1,Mendoza,AR-M,annual,2020,gas oil combustion consumption by to the public,285.27576,TJ,CH4,3.9,kg/TJ,1112.575464,kg -79e903e6-cf33-37bb-a5e3-602e8b494464,SESCO,II.1.1,Mendoza,AR-M,annual,2020,gas oil combustion consumption by to the public,285.27576,TJ,N2O,3.9,kg/TJ,1112.575464,kg -a2f87963-5167-3f5f-af81-2da548a4a870,SESCO,II.1.1,Misiones,AR-N,annual,2020,gas oil combustion consumption by to the public,232.90176,TJ,CO2,74100.0,kg/TJ,17258020.416,kg -a4778c7b-1f45-376e-bfa1-a5c20dc6c6e1,SESCO,II.1.1,Misiones,AR-N,annual,2020,gas oil combustion consumption by to the public,232.90176,TJ,CH4,3.9,kg/TJ,908.316864,kg -a4778c7b-1f45-376e-bfa1-a5c20dc6c6e1,SESCO,II.1.1,Misiones,AR-N,annual,2020,gas oil combustion consumption by to the public,232.90176,TJ,N2O,3.9,kg/TJ,908.316864,kg -539dbcda-75e5-310b-8a87-adecc7d1266d,SESCO,II.1.1,Neuquén,AR-Q,annual,2020,gas oil combustion consumption by to the public,193.67544,TJ,CO2,74100.0,kg/TJ,14351350.104,kg -0df3171c-6626-357c-abd6-5f82a8226f5b,SESCO,II.1.1,Neuquén,AR-Q,annual,2020,gas oil combustion consumption by to the public,193.67544,TJ,CH4,3.9,kg/TJ,755.334216,kg -0df3171c-6626-357c-abd6-5f82a8226f5b,SESCO,II.1.1,Neuquén,AR-Q,annual,2020,gas oil combustion consumption by to the public,193.67544,TJ,N2O,3.9,kg/TJ,755.334216,kg -266f641f-1718-3d67-89b5-78736a9985ae,SESCO,II.1.1,Rio Negro,AR-R,annual,2020,gas oil combustion consumption by to the public,246.91631999999998,TJ,CO2,74100.0,kg/TJ,18296499.312,kg -f12b7ed0-f3d7-3c86-b40d-f5c92dd0792c,SESCO,II.1.1,Rio Negro,AR-R,annual,2020,gas oil combustion consumption by to the public,246.91631999999998,TJ,CH4,3.9,kg/TJ,962.9736479999999,kg -f12b7ed0-f3d7-3c86-b40d-f5c92dd0792c,SESCO,II.1.1,Rio Negro,AR-R,annual,2020,gas oil combustion consumption by to the public,246.91631999999998,TJ,N2O,3.9,kg/TJ,962.9736479999999,kg -4553c6bf-0d51-357f-b540-ab9a27f3a9ed,SESCO,II.1.1,Salta,AR-A,annual,2020,gas oil combustion consumption by to the public,40.70724,TJ,CO2,74100.0,kg/TJ,3016406.4839999997,kg -60fff1f3-d9e3-3a39-b347-525bece36592,SESCO,II.1.1,Salta,AR-A,annual,2020,gas oil combustion consumption by to the public,40.70724,TJ,CH4,3.9,kg/TJ,158.75823599999998,kg -60fff1f3-d9e3-3a39-b347-525bece36592,SESCO,II.1.1,Salta,AR-A,annual,2020,gas oil combustion consumption by to the public,40.70724,TJ,N2O,3.9,kg/TJ,158.75823599999998,kg -327bb224-ffe2-3925-9579-c9b99c8cd256,SESCO,II.1.1,San Juan,AR-J,annual,2020,gas oil combustion consumption by to the public,76.53828,TJ,CO2,74100.0,kg/TJ,5671486.548,kg -aea1d2f3-f2f2-3c3c-9bf9-1e7d214078b0,SESCO,II.1.1,San Juan,AR-J,annual,2020,gas oil combustion consumption by to the public,76.53828,TJ,CH4,3.9,kg/TJ,298.49929199999997,kg -aea1d2f3-f2f2-3c3c-9bf9-1e7d214078b0,SESCO,II.1.1,San Juan,AR-J,annual,2020,gas oil combustion consumption by to the public,76.53828,TJ,N2O,3.9,kg/TJ,298.49929199999997,kg -8204c288-fbe8-3289-b7a6-b32d7e4426a7,SESCO,II.1.1,San Luis,AR-D,annual,2020,gas oil combustion consumption by to the public,168.06636,TJ,CO2,74100.0,kg/TJ,12453717.276,kg -e7c307ee-e549-38e4-94a0-b4e442acaeee,SESCO,II.1.1,San Luis,AR-D,annual,2020,gas oil combustion consumption by to the public,168.06636,TJ,CH4,3.9,kg/TJ,655.458804,kg -e7c307ee-e549-38e4-94a0-b4e442acaeee,SESCO,II.1.1,San Luis,AR-D,annual,2020,gas oil combustion consumption by to the public,168.06636,TJ,N2O,3.9,kg/TJ,655.458804,kg -66fbb56a-ca37-361c-9323-689b4e114752,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2020,gas oil combustion consumption by to the public,289.10447999999997,TJ,CO2,74100.0,kg/TJ,21422641.968,kg -c53c2fa6-4d04-346f-b804-c8136218ae62,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2020,gas oil combustion consumption by to the public,289.10447999999997,TJ,CH4,3.9,kg/TJ,1127.5074719999998,kg -c53c2fa6-4d04-346f-b804-c8136218ae62,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2020,gas oil combustion consumption by to the public,289.10447999999997,TJ,N2O,3.9,kg/TJ,1127.5074719999998,kg -553fd0f6-981e-39c3-912a-eb8d0dde8159,SESCO,II.1.1,Santa Fe,AR-S,annual,2020,gas oil combustion consumption by to the public,833.8302,TJ,CO2,74100.0,kg/TJ,61786817.82,kg -93733131-bc1c-32bb-b179-abe2e06f2808,SESCO,II.1.1,Santa Fe,AR-S,annual,2020,gas oil combustion consumption by to the public,833.8302,TJ,CH4,3.9,kg/TJ,3251.9377799999997,kg -93733131-bc1c-32bb-b179-abe2e06f2808,SESCO,II.1.1,Santa Fe,AR-S,annual,2020,gas oil combustion consumption by to the public,833.8302,TJ,N2O,3.9,kg/TJ,3251.9377799999997,kg -02354b2b-7d11-37c5-bc09-2f7aa5563d91,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2020,gas oil combustion consumption by to the public,173.84556,TJ,CO2,74100.0,kg/TJ,12881955.996000001,kg -88eee133-03ee-34b5-9a87-2124f75cb799,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2020,gas oil combustion consumption by to the public,173.84556,TJ,CH4,3.9,kg/TJ,677.997684,kg -88eee133-03ee-34b5-9a87-2124f75cb799,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2020,gas oil combustion consumption by to the public,173.84556,TJ,N2O,3.9,kg/TJ,677.997684,kg -bf676bc1-927e-3e1f-9c69-67e9f2fcdb0c,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2020,gas oil combustion consumption by to the public,36.87852,TJ,CO2,74100.0,kg/TJ,2732698.332,kg -8c590bba-2eb1-3d8f-8035-f6959a3e152f,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2020,gas oil combustion consumption by to the public,36.87852,TJ,CH4,3.9,kg/TJ,143.82622800000001,kg -8c590bba-2eb1-3d8f-8035-f6959a3e152f,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2020,gas oil combustion consumption by to the public,36.87852,TJ,N2O,3.9,kg/TJ,143.82622800000001,kg -f6128761-6bc6-3cd0-9de7-da28ccce6e72,SESCO,II.1.1,Tucuman,AR-T,annual,2020,gas oil combustion consumption by to the public,28.607039999999998,TJ,CO2,74100.0,kg/TJ,2119781.664,kg -87a8879a-68c9-39e6-aaae-d977caab9e24,SESCO,II.1.1,Tucuman,AR-T,annual,2020,gas oil combustion consumption by to the public,28.607039999999998,TJ,CH4,3.9,kg/TJ,111.56745599999999,kg -87a8879a-68c9-39e6-aaae-d977caab9e24,SESCO,II.1.1,Tucuman,AR-T,annual,2020,gas oil combustion consumption by to the public,28.607039999999998,TJ,N2O,3.9,kg/TJ,111.56745599999999,kg -d87d26be-e6cc-36f9-9521-5ba9e635c318,SESCO,II.1.1,Buenos Aires,AR-B,annual,2020,jet kerosene combustion consumption by to the public,7.800343999999999,TJ,CO2,71500.0,kg/TJ,557724.5959999999,kg -34d51958-0648-3e73-bcd4-d65c06959ca8,SESCO,II.1.1,Buenos Aires,AR-B,annual,2020,jet kerosene combustion consumption by to the public,7.800343999999999,TJ,CH4,0.5,kg/TJ,3.9001719999999995,kg -cfe3355c-db11-3e5d-9d56-e7f9ec22ff4d,SESCO,II.1.1,Buenos Aires,AR-B,annual,2020,jet kerosene combustion consumption by to the public,7.800343999999999,TJ,N2O,2.0,kg/TJ,15.600687999999998,kg -8d9e4622-e361-3f4e-bc56-4101b4293d7c,SESCO,II.1.1,Córdoba,AR-X,annual,2020,jet kerosene combustion consumption by to the public,3.5541889999999996,TJ,CO2,71500.0,kg/TJ,254124.51349999997,kg -3d562cf8-09d0-393f-beed-2b18f0ca0843,SESCO,II.1.1,Córdoba,AR-X,annual,2020,jet kerosene combustion consumption by to the public,3.5541889999999996,TJ,CH4,0.5,kg/TJ,1.7770944999999998,kg -6dbea9cb-1ab1-3cff-b1c4-8fe3b0df63a4,SESCO,II.1.1,Córdoba,AR-X,annual,2020,jet kerosene combustion consumption by to the public,3.5541889999999996,TJ,N2O,2.0,kg/TJ,7.108377999999999,kg -9e304b22-8382-37ff-a499-8ec94545102d,SESCO,II.1.1,Entre Rios,AR-E,annual,2020,jet kerosene combustion consumption by to the public,2.1073509999999995,TJ,CO2,71500.0,kg/TJ,150675.59649999996,kg -9c9a8306-195f-3987-8b19-fb609c37e58c,SESCO,II.1.1,Entre Rios,AR-E,annual,2020,jet kerosene combustion consumption by to the public,2.1073509999999995,TJ,CH4,0.5,kg/TJ,1.0536754999999998,kg -28b8973a-912f-3d27-89bb-478f2ddf91a3,SESCO,II.1.1,Entre Rios,AR-E,annual,2020,jet kerosene combustion consumption by to the public,2.1073509999999995,TJ,N2O,2.0,kg/TJ,4.214701999999999,kg -4e4f5b09-349c-3a7a-af4b-4458338f7f34,SESCO,II.1.1,Misiones,AR-N,annual,2020,jet kerosene combustion consumption by to the public,0.5032479999999999,TJ,CO2,71500.0,kg/TJ,35982.231999999996,kg -1c040b32-6845-3b87-8a45-076e7bbf3312,SESCO,II.1.1,Misiones,AR-N,annual,2020,jet kerosene combustion consumption by to the public,0.5032479999999999,TJ,CH4,0.5,kg/TJ,0.25162399999999996,kg -9c7ce6fd-d1d6-341e-a482-b6ab5bbcd5c4,SESCO,II.1.1,Misiones,AR-N,annual,2020,jet kerosene combustion consumption by to the public,0.5032479999999999,TJ,N2O,2.0,kg/TJ,1.0064959999999998,kg -c788e8de-3079-34ed-9f49-2b5bac83b5a5,SESCO,II.1.1,Santa Fe,AR-S,annual,2020,jet kerosene combustion consumption by to the public,3.2082059999999997,TJ,CO2,71500.0,kg/TJ,229386.72899999996,kg -c02fc105-9e18-354b-8eef-975d58ccda6c,SESCO,II.1.1,Santa Fe,AR-S,annual,2020,jet kerosene combustion consumption by to the public,3.2082059999999997,TJ,CH4,0.5,kg/TJ,1.6041029999999998,kg -95bf6e03-3bd3-3af4-83d6-f6946045c8de,SESCO,II.1.1,Santa Fe,AR-S,annual,2020,jet kerosene combustion consumption by to the public,3.2082059999999997,TJ,N2O,2.0,kg/TJ,6.416411999999999,kg -3b1470f0-1090-32c8-bc33-079aec192171,SESCO,II.2.1,Buenos Aires,AR-B,annual,2020,gas oil combustion consumption by railway transport,98.0658,TJ,CO2,74100.0,kg/TJ,7266675.779999999,kg -c6c87b8a-ee81-39f8-bda8-7a9951e6e63e,SESCO,II.2.1,Buenos Aires,AR-B,annual,2020,gas oil combustion consumption by railway transport,98.0658,TJ,CH4,3.9,kg/TJ,382.45662,kg -c6c87b8a-ee81-39f8-bda8-7a9951e6e63e,SESCO,II.2.1,Buenos Aires,AR-B,annual,2020,gas oil combustion consumption by railway transport,98.0658,TJ,N2O,3.9,kg/TJ,382.45662,kg -23a5ada7-6b1a-31a0-91f7-1be76e2da253,SESCO,II.2.1,Capital Federal,AR-C,annual,2020,gas oil combustion consumption by railway transport,2.709,TJ,CO2,74100.0,kg/TJ,200736.9,kg -3b642f3e-23d3-3976-8709-314b4c84e4ab,SESCO,II.2.1,Capital Federal,AR-C,annual,2020,gas oil combustion consumption by railway transport,2.709,TJ,CH4,3.9,kg/TJ,10.5651,kg -3b642f3e-23d3-3976-8709-314b4c84e4ab,SESCO,II.2.1,Capital Federal,AR-C,annual,2020,gas oil combustion consumption by railway transport,2.709,TJ,N2O,3.9,kg/TJ,10.5651,kg -796cb9ec-3bf6-370d-8d1e-15606091b8e2,SESCO,II.2.1,Córdoba,AR-X,annual,2020,gas oil combustion consumption by railway transport,10.61928,TJ,CO2,74100.0,kg/TJ,786888.648,kg -c8671e01-46a4-3e66-9301-6c92a18a8448,SESCO,II.2.1,Córdoba,AR-X,annual,2020,gas oil combustion consumption by railway transport,10.61928,TJ,CH4,3.9,kg/TJ,41.415192,kg -c8671e01-46a4-3e66-9301-6c92a18a8448,SESCO,II.2.1,Córdoba,AR-X,annual,2020,gas oil combustion consumption by railway transport,10.61928,TJ,N2O,3.9,kg/TJ,41.415192,kg -df1f06d6-ce50-34ef-b8cf-b00eca7cbd29,SESCO,II.2.1,La Pampa,AR-L,annual,2020,gas oil combustion consumption by railway transport,29.654519999999998,TJ,CO2,74100.0,kg/TJ,2197399.932,kg -74dd5a79-cb5e-381e-ba33-f4e1c39687aa,SESCO,II.2.1,La Pampa,AR-L,annual,2020,gas oil combustion consumption by railway transport,29.654519999999998,TJ,CH4,3.9,kg/TJ,115.65262799999999,kg -74dd5a79-cb5e-381e-ba33-f4e1c39687aa,SESCO,II.2.1,La Pampa,AR-L,annual,2020,gas oil combustion consumption by railway transport,29.654519999999998,TJ,N2O,3.9,kg/TJ,115.65262799999999,kg -41032091-5c78-3534-aa7b-a9de0cdacec3,SESCO,II.2.1,Neuquén,AR-Q,annual,2020,gas oil combustion consumption by railway transport,7.80192,TJ,CO2,74100.0,kg/TJ,578122.272,kg -1916553e-eddf-337d-8c08-23a2b2810de7,SESCO,II.2.1,Neuquén,AR-Q,annual,2020,gas oil combustion consumption by railway transport,7.80192,TJ,CH4,3.9,kg/TJ,30.427488,kg -1916553e-eddf-337d-8c08-23a2b2810de7,SESCO,II.2.1,Neuquén,AR-Q,annual,2020,gas oil combustion consumption by railway transport,7.80192,TJ,N2O,3.9,kg/TJ,30.427488,kg -2b892a36-2413-3b42-a81d-b95144626173,SESCO,II.2.1,Santa Fe,AR-S,annual,2020,gas oil combustion consumption by railway transport,122.48292,TJ,CO2,74100.0,kg/TJ,9075984.372,kg -240e991a-c7b1-33d4-af2e-58d97f5f3356,SESCO,II.2.1,Santa Fe,AR-S,annual,2020,gas oil combustion consumption by railway transport,122.48292,TJ,CH4,3.9,kg/TJ,477.683388,kg -240e991a-c7b1-33d4-af2e-58d97f5f3356,SESCO,II.2.1,Santa Fe,AR-S,annual,2020,gas oil combustion consumption by railway transport,122.48292,TJ,N2O,3.9,kg/TJ,477.683388,kg -e6cb4961-994d-3f5b-b619-8dbbd5180157,SESCO,II.2.1,Santiago del Estero,AR-G,annual,2020,gas oil combustion consumption by railway transport,22.24992,TJ,CO2,74100.0,kg/TJ,1648719.072,kg -0ebaba5d-aa7d-3085-b496-13a2688637ec,SESCO,II.2.1,Santiago del Estero,AR-G,annual,2020,gas oil combustion consumption by railway transport,22.24992,TJ,CH4,3.9,kg/TJ,86.774688,kg -0ebaba5d-aa7d-3085-b496-13a2688637ec,SESCO,II.2.1,Santiago del Estero,AR-G,annual,2020,gas oil combustion consumption by railway transport,22.24992,TJ,N2O,3.9,kg/TJ,86.774688,kg -9afc208c-2d7c-3f5e-9bec-364f36899c38,SESCO,II.2.1,Tucuman,AR-T,annual,2020,gas oil combustion consumption by railway transport,13.03932,TJ,CO2,74100.0,kg/TJ,966213.612,kg -4097b250-decf-36a2-b910-39f1b2954757,SESCO,II.2.1,Tucuman,AR-T,annual,2020,gas oil combustion consumption by railway transport,13.03932,TJ,CH4,3.9,kg/TJ,50.853348,kg -4097b250-decf-36a2-b910-39f1b2954757,SESCO,II.2.1,Tucuman,AR-T,annual,2020,gas oil combustion consumption by railway transport,13.03932,TJ,N2O,3.9,kg/TJ,50.853348,kg -26247cd4-061e-3d51-8d5c-f59aa506dfcc,SESCO,II.1.1,Buenos Aires,AR-B,annual,2020,gas oil combustion consumption by freight transport,1387.3330799999999,TJ,CO2,74100.0,kg/TJ,102801381.22799999,kg -17f5fc31-16f1-3cd8-9493-9549882d009f,SESCO,II.1.1,Buenos Aires,AR-B,annual,2020,gas oil combustion consumption by freight transport,1387.3330799999999,TJ,CH4,3.9,kg/TJ,5410.599012,kg -17f5fc31-16f1-3cd8-9493-9549882d009f,SESCO,II.1.1,Buenos Aires,AR-B,annual,2020,gas oil combustion consumption by freight transport,1387.3330799999999,TJ,N2O,3.9,kg/TJ,5410.599012,kg -823a7452-f946-3530-80ed-549a45b928ae,SESCO,II.1.1,Capital Federal,AR-C,annual,2020,gas oil combustion consumption by freight transport,275.5956,TJ,CO2,74100.0,kg/TJ,20421633.96,kg -4530fb51-1f4f-3f16-a23e-58bda6984116,SESCO,II.1.1,Capital Federal,AR-C,annual,2020,gas oil combustion consumption by freight transport,275.5956,TJ,CH4,3.9,kg/TJ,1074.82284,kg -4530fb51-1f4f-3f16-a23e-58bda6984116,SESCO,II.1.1,Capital Federal,AR-C,annual,2020,gas oil combustion consumption by freight transport,275.5956,TJ,N2O,3.9,kg/TJ,1074.82284,kg -318f23b9-69d8-3d0e-9a71-cf9c29f5c9d9,SESCO,II.1.1,Catamarca,AR-K,annual,2020,gas oil combustion consumption by freight transport,10.61928,TJ,CO2,74100.0,kg/TJ,786888.648,kg -72b82c26-6046-39bf-a399-3faac082c7fd,SESCO,II.1.1,Catamarca,AR-K,annual,2020,gas oil combustion consumption by freight transport,10.61928,TJ,CH4,3.9,kg/TJ,41.415192,kg -72b82c26-6046-39bf-a399-3faac082c7fd,SESCO,II.1.1,Catamarca,AR-K,annual,2020,gas oil combustion consumption by freight transport,10.61928,TJ,N2O,3.9,kg/TJ,41.415192,kg -ffad3218-4090-380d-84fc-5ca027d2a1c8,SESCO,II.1.1,Chaco,AR-H,annual,2020,gas oil combustion consumption by freight transport,25.175639999999998,TJ,CO2,74100.0,kg/TJ,1865514.9239999999,kg -43337036-54b5-3dcb-b2c5-263fd3b50dcd,SESCO,II.1.1,Chaco,AR-H,annual,2020,gas oil combustion consumption by freight transport,25.175639999999998,TJ,CH4,3.9,kg/TJ,98.18499599999998,kg -43337036-54b5-3dcb-b2c5-263fd3b50dcd,SESCO,II.1.1,Chaco,AR-H,annual,2020,gas oil combustion consumption by freight transport,25.175639999999998,TJ,N2O,3.9,kg/TJ,98.18499599999998,kg -d5d65e52-14a9-3cff-935f-021bbca1a771,SESCO,II.1.1,Chubut,AR-U,annual,2020,gas oil combustion consumption by freight transport,48.14796,TJ,CO2,74100.0,kg/TJ,3567763.8359999997,kg -98c6a4f6-fe71-379e-bd78-2b8f4a318e84,SESCO,II.1.1,Chubut,AR-U,annual,2020,gas oil combustion consumption by freight transport,48.14796,TJ,CH4,3.9,kg/TJ,187.777044,kg -98c6a4f6-fe71-379e-bd78-2b8f4a318e84,SESCO,II.1.1,Chubut,AR-U,annual,2020,gas oil combustion consumption by freight transport,48.14796,TJ,N2O,3.9,kg/TJ,187.777044,kg -bc1fe25f-d6c2-3f42-9c69-b692689ad9c6,SESCO,II.1.1,Corrientes,AR-W,annual,2020,gas oil combustion consumption by freight transport,56.13048,TJ,CO2,74100.0,kg/TJ,4159268.568,kg -2c268696-3c32-365f-b8c2-f90a567f5960,SESCO,II.1.1,Corrientes,AR-W,annual,2020,gas oil combustion consumption by freight transport,56.13048,TJ,CH4,3.9,kg/TJ,218.908872,kg -2c268696-3c32-365f-b8c2-f90a567f5960,SESCO,II.1.1,Corrientes,AR-W,annual,2020,gas oil combustion consumption by freight transport,56.13048,TJ,N2O,3.9,kg/TJ,218.908872,kg -af38f8fc-d196-3a52-a449-f6b848a433ce,SESCO,II.1.1,Córdoba,AR-X,annual,2020,gas oil combustion consumption by freight transport,197.68475999999998,TJ,CO2,74100.0,kg/TJ,14648440.715999998,kg -aa15a0ac-5368-38a4-ac5d-d624ea01ae11,SESCO,II.1.1,Córdoba,AR-X,annual,2020,gas oil combustion consumption by freight transport,197.68475999999998,TJ,CH4,3.9,kg/TJ,770.970564,kg -aa15a0ac-5368-38a4-ac5d-d624ea01ae11,SESCO,II.1.1,Córdoba,AR-X,annual,2020,gas oil combustion consumption by freight transport,197.68475999999998,TJ,N2O,3.9,kg/TJ,770.970564,kg -d86ea670-89a6-30c9-8b09-f29ce9f8a542,SESCO,II.1.1,Entre Rios,AR-E,annual,2020,gas oil combustion consumption by freight transport,107.70984,TJ,CO2,74100.0,kg/TJ,7981299.144,kg -f46f494e-56c6-3ba6-a0f1-35579994ed0a,SESCO,II.1.1,Entre Rios,AR-E,annual,2020,gas oil combustion consumption by freight transport,107.70984,TJ,CH4,3.9,kg/TJ,420.068376,kg -f46f494e-56c6-3ba6-a0f1-35579994ed0a,SESCO,II.1.1,Entre Rios,AR-E,annual,2020,gas oil combustion consumption by freight transport,107.70984,TJ,N2O,3.9,kg/TJ,420.068376,kg -dd5ae63e-ecb1-318c-a7e3-0d4656cdae44,SESCO,II.1.1,Formosa,AR-P,annual,2020,gas oil combustion consumption by freight transport,10.14972,TJ,CO2,74100.0,kg/TJ,752094.252,kg -2f5578c5-aef3-3b9c-8b25-1594e15d3e67,SESCO,II.1.1,Formosa,AR-P,annual,2020,gas oil combustion consumption by freight transport,10.14972,TJ,CH4,3.9,kg/TJ,39.583908,kg -2f5578c5-aef3-3b9c-8b25-1594e15d3e67,SESCO,II.1.1,Formosa,AR-P,annual,2020,gas oil combustion consumption by freight transport,10.14972,TJ,N2O,3.9,kg/TJ,39.583908,kg -a5b31e4e-8cc1-38d8-873a-b6144c1488fc,SESCO,II.1.1,Jujuy,AR-Y,annual,2020,gas oil combustion consumption by freight transport,8.27148,TJ,CO2,74100.0,kg/TJ,612916.6680000001,kg -3c780bfd-d48e-360a-b24e-f4a09fef7374,SESCO,II.1.1,Jujuy,AR-Y,annual,2020,gas oil combustion consumption by freight transport,8.27148,TJ,CH4,3.9,kg/TJ,32.258772,kg -3c780bfd-d48e-360a-b24e-f4a09fef7374,SESCO,II.1.1,Jujuy,AR-Y,annual,2020,gas oil combustion consumption by freight transport,8.27148,TJ,N2O,3.9,kg/TJ,32.258772,kg -4fba5dc1-b7a3-3142-bac0-78a6343fbbc0,SESCO,II.1.1,La Pampa,AR-L,annual,2020,gas oil combustion consumption by freight transport,20.84124,TJ,CO2,74100.0,kg/TJ,1544335.8839999998,kg -4d9572b0-b087-3653-9cbf-1a7b691f5cfc,SESCO,II.1.1,La Pampa,AR-L,annual,2020,gas oil combustion consumption by freight transport,20.84124,TJ,CH4,3.9,kg/TJ,81.280836,kg -4d9572b0-b087-3653-9cbf-1a7b691f5cfc,SESCO,II.1.1,La Pampa,AR-L,annual,2020,gas oil combustion consumption by freight transport,20.84124,TJ,N2O,3.9,kg/TJ,81.280836,kg -d8b548d2-dcf2-33da-bdef-e31fdf687bd4,SESCO,II.1.1,La Rioja,AR-F,annual,2020,gas oil combustion consumption by freight transport,2.6367599999999998,TJ,CO2,74100.0,kg/TJ,195383.916,kg -9cb57cc4-e3fe-391c-895a-26c723c5914f,SESCO,II.1.1,La Rioja,AR-F,annual,2020,gas oil combustion consumption by freight transport,2.6367599999999998,TJ,CH4,3.9,kg/TJ,10.283363999999999,kg -9cb57cc4-e3fe-391c-895a-26c723c5914f,SESCO,II.1.1,La Rioja,AR-F,annual,2020,gas oil combustion consumption by freight transport,2.6367599999999998,TJ,N2O,3.9,kg/TJ,10.283363999999999,kg -05a7a4c0-d0d6-3072-b2c9-0a715d199074,SESCO,II.1.1,Mendoza,AR-M,annual,2020,gas oil combustion consumption by freight transport,72.45672,TJ,CO2,74100.0,kg/TJ,5369042.9520000005,kg -2be0e009-b39b-3c8d-b41b-32b7fdfcb342,SESCO,II.1.1,Mendoza,AR-M,annual,2020,gas oil combustion consumption by freight transport,72.45672,TJ,CH4,3.9,kg/TJ,282.581208,kg -2be0e009-b39b-3c8d-b41b-32b7fdfcb342,SESCO,II.1.1,Mendoza,AR-M,annual,2020,gas oil combustion consumption by freight transport,72.45672,TJ,N2O,3.9,kg/TJ,282.581208,kg -9aab5f13-1746-3554-a6b0-eef2ab5fc6de,SESCO,II.1.1,Misiones,AR-N,annual,2020,gas oil combustion consumption by freight transport,89.7582,TJ,CO2,74100.0,kg/TJ,6651082.62,kg -64d9d7d7-d0ff-3360-91bb-de929b3edbf2,SESCO,II.1.1,Misiones,AR-N,annual,2020,gas oil combustion consumption by freight transport,89.7582,TJ,CH4,3.9,kg/TJ,350.05698,kg -64d9d7d7-d0ff-3360-91bb-de929b3edbf2,SESCO,II.1.1,Misiones,AR-N,annual,2020,gas oil combustion consumption by freight transport,89.7582,TJ,N2O,3.9,kg/TJ,350.05698,kg -20e0f8a4-08dc-3695-a68d-cd5570e74c16,SESCO,II.1.1,Neuquén,AR-Q,annual,2020,gas oil combustion consumption by freight transport,1.73376,TJ,CO2,74100.0,kg/TJ,128471.616,kg -d1e5be0f-83fb-3f5d-ac2b-ad198e50d8ab,SESCO,II.1.1,Neuquén,AR-Q,annual,2020,gas oil combustion consumption by freight transport,1.73376,TJ,CH4,3.9,kg/TJ,6.761664,kg -d1e5be0f-83fb-3f5d-ac2b-ad198e50d8ab,SESCO,II.1.1,Neuquén,AR-Q,annual,2020,gas oil combustion consumption by freight transport,1.73376,TJ,N2O,3.9,kg/TJ,6.761664,kg -73c32dd7-d85f-321a-8a2f-4c3485719722,SESCO,II.1.1,Rio Negro,AR-R,annual,2020,gas oil combustion consumption by freight transport,90.76956,TJ,CO2,74100.0,kg/TJ,6726024.396,kg -f7f40adc-6676-3708-8574-21af7bd2ff26,SESCO,II.1.1,Rio Negro,AR-R,annual,2020,gas oil combustion consumption by freight transport,90.76956,TJ,CH4,3.9,kg/TJ,354.001284,kg -f7f40adc-6676-3708-8574-21af7bd2ff26,SESCO,II.1.1,Rio Negro,AR-R,annual,2020,gas oil combustion consumption by freight transport,90.76956,TJ,N2O,3.9,kg/TJ,354.001284,kg -acabd128-93ac-3a50-9d7e-c203e5edab3a,SESCO,II.1.1,Salta,AR-A,annual,2020,gas oil combustion consumption by freight transport,4.76784,TJ,CO2,74100.0,kg/TJ,353296.94399999996,kg -e612d646-2904-3558-8c56-5751d97e3639,SESCO,II.1.1,Salta,AR-A,annual,2020,gas oil combustion consumption by freight transport,4.76784,TJ,CH4,3.9,kg/TJ,18.594575999999996,kg -e612d646-2904-3558-8c56-5751d97e3639,SESCO,II.1.1,Salta,AR-A,annual,2020,gas oil combustion consumption by freight transport,4.76784,TJ,N2O,3.9,kg/TJ,18.594575999999996,kg -169a167f-60ec-3a44-9053-99d9a47a80cd,SESCO,II.1.1,San Juan,AR-J,annual,2020,gas oil combustion consumption by freight transport,6.06816,TJ,CO2,74100.0,kg/TJ,449650.65599999996,kg -77629aa5-eb7e-37d0-a9ae-2d8c9edd8925,SESCO,II.1.1,San Juan,AR-J,annual,2020,gas oil combustion consumption by freight transport,6.06816,TJ,CH4,3.9,kg/TJ,23.665823999999997,kg -77629aa5-eb7e-37d0-a9ae-2d8c9edd8925,SESCO,II.1.1,San Juan,AR-J,annual,2020,gas oil combustion consumption by freight transport,6.06816,TJ,N2O,3.9,kg/TJ,23.665823999999997,kg -aac50db3-d966-31e2-8532-373dc0f01a05,SESCO,II.1.1,San Luis,AR-D,annual,2020,gas oil combustion consumption by freight transport,33.62772,TJ,CO2,74100.0,kg/TJ,2491814.0519999997,kg -441712e4-1361-3103-92d6-140a1f303f3b,SESCO,II.1.1,San Luis,AR-D,annual,2020,gas oil combustion consumption by freight transport,33.62772,TJ,CH4,3.9,kg/TJ,131.14810799999998,kg -441712e4-1361-3103-92d6-140a1f303f3b,SESCO,II.1.1,San Luis,AR-D,annual,2020,gas oil combustion consumption by freight transport,33.62772,TJ,N2O,3.9,kg/TJ,131.14810799999998,kg -19525495-191e-3410-9c28-bd0f6aad2c9d,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2020,gas oil combustion consumption by freight transport,12.71424,TJ,CO2,74100.0,kg/TJ,942125.184,kg -fa1b8fe7-b439-3225-93fb-84c1fef07477,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2020,gas oil combustion consumption by freight transport,12.71424,TJ,CH4,3.9,kg/TJ,49.585536,kg -fa1b8fe7-b439-3225-93fb-84c1fef07477,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2020,gas oil combustion consumption by freight transport,12.71424,TJ,N2O,3.9,kg/TJ,49.585536,kg -761f2f73-45b7-3269-941e-6ad818b4ca07,SESCO,II.1.1,Santa Fe,AR-S,annual,2020,gas oil combustion consumption by freight transport,364.9926,TJ,CO2,74100.0,kg/TJ,27045951.66,kg -a8f1db3c-1163-3694-87c5-c17813e988f4,SESCO,II.1.1,Santa Fe,AR-S,annual,2020,gas oil combustion consumption by freight transport,364.9926,TJ,CH4,3.9,kg/TJ,1423.4711399999999,kg -a8f1db3c-1163-3694-87c5-c17813e988f4,SESCO,II.1.1,Santa Fe,AR-S,annual,2020,gas oil combustion consumption by freight transport,364.9926,TJ,N2O,3.9,kg/TJ,1423.4711399999999,kg -81b395cf-85d7-3f43-bfbe-e873197d9401,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2020,gas oil combustion consumption by freight transport,84.55692,TJ,CO2,74100.0,kg/TJ,6265667.772000001,kg -3f2858b9-3ee2-389a-b299-2d5deeb75136,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2020,gas oil combustion consumption by freight transport,84.55692,TJ,CH4,3.9,kg/TJ,329.771988,kg -3f2858b9-3ee2-389a-b299-2d5deeb75136,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2020,gas oil combustion consumption by freight transport,84.55692,TJ,N2O,3.9,kg/TJ,329.771988,kg -c1674e3b-af12-36f2-a439-037b3401c585,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2020,gas oil combustion consumption by freight transport,5.02068,TJ,CO2,74100.0,kg/TJ,372032.388,kg -f543ca3b-2a2e-3f8f-be82-18fa805a756a,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2020,gas oil combustion consumption by freight transport,5.02068,TJ,CH4,3.9,kg/TJ,19.580651999999997,kg -f543ca3b-2a2e-3f8f-be82-18fa805a756a,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2020,gas oil combustion consumption by freight transport,5.02068,TJ,N2O,3.9,kg/TJ,19.580651999999997,kg -271f5fc5-aa25-3d64-b617-d3f35869deb0,SESCO,II.1.1,Tucuman,AR-T,annual,2020,gas oil combustion consumption by freight transport,40.74336,TJ,CO2,74100.0,kg/TJ,3019082.9760000003,kg -4bb21669-9f0b-3f47-a340-954cf363d9c7,SESCO,II.1.1,Tucuman,AR-T,annual,2020,gas oil combustion consumption by freight transport,40.74336,TJ,CH4,3.9,kg/TJ,158.899104,kg -4bb21669-9f0b-3f47-a340-954cf363d9c7,SESCO,II.1.1,Tucuman,AR-T,annual,2020,gas oil combustion consumption by freight transport,40.74336,TJ,N2O,3.9,kg/TJ,158.899104,kg -14374457-fdb1-3acb-91d6-791413fd4e55,SESCO,II.1.1,Buenos Aires,AR-B,annual,2020,gas oil combustion consumption by freight transport,170.26968,TJ,CO2,74100.0,kg/TJ,12616983.287999999,kg -6f2ded01-45cf-3244-b284-35c4977d5d05,SESCO,II.1.1,Buenos Aires,AR-B,annual,2020,gas oil combustion consumption by freight transport,170.26968,TJ,CH4,3.9,kg/TJ,664.051752,kg -6f2ded01-45cf-3244-b284-35c4977d5d05,SESCO,II.1.1,Buenos Aires,AR-B,annual,2020,gas oil combustion consumption by freight transport,170.26968,TJ,N2O,3.9,kg/TJ,664.051752,kg -49dfac0a-b3c5-3ac4-ae9a-f5dacd5a56a5,SESCO,II.1.1,Capital Federal,AR-C,annual,2020,gas oil combustion consumption by freight transport,18.71016,TJ,CO2,74100.0,kg/TJ,1386422.856,kg -a3ff9675-8577-3ab0-8220-949ca7407a4d,SESCO,II.1.1,Capital Federal,AR-C,annual,2020,gas oil combustion consumption by freight transport,18.71016,TJ,CH4,3.9,kg/TJ,72.969624,kg -a3ff9675-8577-3ab0-8220-949ca7407a4d,SESCO,II.1.1,Capital Federal,AR-C,annual,2020,gas oil combustion consumption by freight transport,18.71016,TJ,N2O,3.9,kg/TJ,72.969624,kg -eb679c9a-d539-30db-90f8-a57a75d6b13f,SESCO,II.1.1,Catamarca,AR-K,annual,2020,gas oil combustion consumption by freight transport,0.8307599999999999,TJ,CO2,74100.0,kg/TJ,61559.316,kg -0495770d-ab03-3029-98ab-c70fb813319e,SESCO,II.1.1,Catamarca,AR-K,annual,2020,gas oil combustion consumption by freight transport,0.8307599999999999,TJ,CH4,3.9,kg/TJ,3.2399639999999996,kg -0495770d-ab03-3029-98ab-c70fb813319e,SESCO,II.1.1,Catamarca,AR-K,annual,2020,gas oil combustion consumption by freight transport,0.8307599999999999,TJ,N2O,3.9,kg/TJ,3.2399639999999996,kg -01f3c2e1-2ae3-3c96-b4b6-2ade12362cba,SESCO,II.1.1,Chaco,AR-H,annual,2020,gas oil combustion consumption by freight transport,4.55112,TJ,CO2,74100.0,kg/TJ,337237.992,kg -db5733e3-eb1f-36d2-86e3-0d6d1af9ac28,SESCO,II.1.1,Chaco,AR-H,annual,2020,gas oil combustion consumption by freight transport,4.55112,TJ,CH4,3.9,kg/TJ,17.749368,kg -db5733e3-eb1f-36d2-86e3-0d6d1af9ac28,SESCO,II.1.1,Chaco,AR-H,annual,2020,gas oil combustion consumption by freight transport,4.55112,TJ,N2O,3.9,kg/TJ,17.749368,kg -21093fe2-7448-304e-a290-96b9688341f6,SESCO,II.1.1,Chubut,AR-U,annual,2020,gas oil combustion consumption by freight transport,14.59248,TJ,CO2,74100.0,kg/TJ,1081302.768,kg -e9be97f2-8df0-3fdc-a973-b272cf24d723,SESCO,II.1.1,Chubut,AR-U,annual,2020,gas oil combustion consumption by freight transport,14.59248,TJ,CH4,3.9,kg/TJ,56.910672,kg -e9be97f2-8df0-3fdc-a973-b272cf24d723,SESCO,II.1.1,Chubut,AR-U,annual,2020,gas oil combustion consumption by freight transport,14.59248,TJ,N2O,3.9,kg/TJ,56.910672,kg -02598de4-e8ce-3d3c-8b23-25b6cd2206e9,SESCO,II.1.1,Corrientes,AR-W,annual,2020,gas oil combustion consumption by freight transport,10.18584,TJ,CO2,74100.0,kg/TJ,754770.7440000001,kg -2fc4395e-5fc2-3782-8925-38ecb073c8df,SESCO,II.1.1,Corrientes,AR-W,annual,2020,gas oil combustion consumption by freight transport,10.18584,TJ,CH4,3.9,kg/TJ,39.724776,kg -2fc4395e-5fc2-3782-8925-38ecb073c8df,SESCO,II.1.1,Corrientes,AR-W,annual,2020,gas oil combustion consumption by freight transport,10.18584,TJ,N2O,3.9,kg/TJ,39.724776,kg -050cff94-b3ba-3fcf-b958-32b71fc0b5d0,SESCO,II.1.1,Córdoba,AR-X,annual,2020,gas oil combustion consumption by freight transport,17.37372,TJ,CO2,74100.0,kg/TJ,1287392.652,kg -b3d9d619-aa7c-3e04-9ed2-9d122afbfb83,SESCO,II.1.1,Córdoba,AR-X,annual,2020,gas oil combustion consumption by freight transport,17.37372,TJ,CH4,3.9,kg/TJ,67.75750799999999,kg -b3d9d619-aa7c-3e04-9ed2-9d122afbfb83,SESCO,II.1.1,Córdoba,AR-X,annual,2020,gas oil combustion consumption by freight transport,17.37372,TJ,N2O,3.9,kg/TJ,67.75750799999999,kg -3f0d7fb5-870d-3622-b8bf-477fb91a8b1a,SESCO,II.1.1,Entre Rios,AR-E,annual,2020,gas oil combustion consumption by freight transport,13.32828,TJ,CO2,74100.0,kg/TJ,987625.548,kg -2917f4a2-a433-33db-8814-8b93eec3527d,SESCO,II.1.1,Entre Rios,AR-E,annual,2020,gas oil combustion consumption by freight transport,13.32828,TJ,CH4,3.9,kg/TJ,51.980292,kg -2917f4a2-a433-33db-8814-8b93eec3527d,SESCO,II.1.1,Entre Rios,AR-E,annual,2020,gas oil combustion consumption by freight transport,13.32828,TJ,N2O,3.9,kg/TJ,51.980292,kg -f7d0fc73-b46e-346d-8f12-8fa3fec0c5ac,SESCO,II.1.1,Formosa,AR-P,annual,2020,gas oil combustion consumption by freight transport,0.39732,TJ,CO2,74100.0,kg/TJ,29441.412,kg -83498105-6c41-36ad-b581-bb69b5c8d561,SESCO,II.1.1,Formosa,AR-P,annual,2020,gas oil combustion consumption by freight transport,0.39732,TJ,CH4,3.9,kg/TJ,1.549548,kg -83498105-6c41-36ad-b581-bb69b5c8d561,SESCO,II.1.1,Formosa,AR-P,annual,2020,gas oil combustion consumption by freight transport,0.39732,TJ,N2O,3.9,kg/TJ,1.549548,kg -17979128-e8bc-3d5c-ac73-cb002390c93c,SESCO,II.1.1,Jujuy,AR-Y,annual,2020,gas oil combustion consumption by freight transport,3.17856,TJ,CO2,74100.0,kg/TJ,235531.296,kg -9d6aa97e-8199-3f61-bc87-27cd37396c88,SESCO,II.1.1,Jujuy,AR-Y,annual,2020,gas oil combustion consumption by freight transport,3.17856,TJ,CH4,3.9,kg/TJ,12.396384,kg -9d6aa97e-8199-3f61-bc87-27cd37396c88,SESCO,II.1.1,Jujuy,AR-Y,annual,2020,gas oil combustion consumption by freight transport,3.17856,TJ,N2O,3.9,kg/TJ,12.396384,kg -0d0f3400-0d0a-3d9f-8fe6-55f9d0171cb6,SESCO,II.1.1,La Pampa,AR-L,annual,2020,gas oil combustion consumption by freight transport,1.37256,TJ,CO2,74100.0,kg/TJ,101706.696,kg -0988c533-39ec-38e2-8e1c-74ae436b913f,SESCO,II.1.1,La Pampa,AR-L,annual,2020,gas oil combustion consumption by freight transport,1.37256,TJ,CH4,3.9,kg/TJ,5.352984,kg -0988c533-39ec-38e2-8e1c-74ae436b913f,SESCO,II.1.1,La Pampa,AR-L,annual,2020,gas oil combustion consumption by freight transport,1.37256,TJ,N2O,3.9,kg/TJ,5.352984,kg -e07b9a20-8fa8-3e7c-a9d5-2e54dc7741fa,SESCO,II.1.1,La Rioja,AR-F,annual,2020,gas oil combustion consumption by freight transport,0.10836,TJ,CO2,74100.0,kg/TJ,8029.476,kg -6788104c-c872-3539-869a-ed0f648f867f,SESCO,II.1.1,La Rioja,AR-F,annual,2020,gas oil combustion consumption by freight transport,0.10836,TJ,CH4,3.9,kg/TJ,0.422604,kg -6788104c-c872-3539-869a-ed0f648f867f,SESCO,II.1.1,La Rioja,AR-F,annual,2020,gas oil combustion consumption by freight transport,0.10836,TJ,N2O,3.9,kg/TJ,0.422604,kg -0d07290e-6980-3df1-9bb3-aa92fb581ef5,SESCO,II.1.1,Mendoza,AR-M,annual,2020,gas oil combustion consumption by freight transport,7.3323599999999995,TJ,CO2,74100.0,kg/TJ,543327.8759999999,kg -63c1dcef-6b95-3fab-8b5a-da7726dfe911,SESCO,II.1.1,Mendoza,AR-M,annual,2020,gas oil combustion consumption by freight transport,7.3323599999999995,TJ,CH4,3.9,kg/TJ,28.596203999999997,kg -63c1dcef-6b95-3fab-8b5a-da7726dfe911,SESCO,II.1.1,Mendoza,AR-M,annual,2020,gas oil combustion consumption by freight transport,7.3323599999999995,TJ,N2O,3.9,kg/TJ,28.596203999999997,kg -f978e1e1-d9bb-3850-9c27-dcee126ad90b,SESCO,II.1.1,Misiones,AR-N,annual,2020,gas oil combustion consumption by freight transport,2.6367599999999998,TJ,CO2,74100.0,kg/TJ,195383.916,kg -b0b5c66d-6f91-3512-8de3-2981a499f31a,SESCO,II.1.1,Misiones,AR-N,annual,2020,gas oil combustion consumption by freight transport,2.6367599999999998,TJ,CH4,3.9,kg/TJ,10.283363999999999,kg -b0b5c66d-6f91-3512-8de3-2981a499f31a,SESCO,II.1.1,Misiones,AR-N,annual,2020,gas oil combustion consumption by freight transport,2.6367599999999998,TJ,N2O,3.9,kg/TJ,10.283363999999999,kg -71ae0bff-dd97-36ac-b622-8c735ba56efd,SESCO,II.1.1,Neuquén,AR-Q,annual,2020,gas oil combustion consumption by freight transport,0.93912,TJ,CO2,74100.0,kg/TJ,69588.792,kg -559a2c6f-82be-3596-b2ad-3e8d7529e388,SESCO,II.1.1,Neuquén,AR-Q,annual,2020,gas oil combustion consumption by freight transport,0.93912,TJ,CH4,3.9,kg/TJ,3.662568,kg -559a2c6f-82be-3596-b2ad-3e8d7529e388,SESCO,II.1.1,Neuquén,AR-Q,annual,2020,gas oil combustion consumption by freight transport,0.93912,TJ,N2O,3.9,kg/TJ,3.662568,kg -67c3d9a6-382a-342e-89bc-48f62aebdbe6,SESCO,II.1.1,Rio Negro,AR-R,annual,2020,gas oil combustion consumption by freight transport,10.14972,TJ,CO2,74100.0,kg/TJ,752094.252,kg -5c76f59d-a26c-376f-927b-3659ae4fe836,SESCO,II.1.1,Rio Negro,AR-R,annual,2020,gas oil combustion consumption by freight transport,10.14972,TJ,CH4,3.9,kg/TJ,39.583908,kg -5c76f59d-a26c-376f-927b-3659ae4fe836,SESCO,II.1.1,Rio Negro,AR-R,annual,2020,gas oil combustion consumption by freight transport,10.14972,TJ,N2O,3.9,kg/TJ,39.583908,kg -52340fee-ff2d-3165-90bd-b4c9320b45d4,SESCO,II.1.1,Salta,AR-A,annual,2020,gas oil combustion consumption by freight transport,0.7223999999999999,TJ,CO2,74100.0,kg/TJ,53529.84,kg -3f415a71-9139-3a3f-a565-30a329c8e397,SESCO,II.1.1,Salta,AR-A,annual,2020,gas oil combustion consumption by freight transport,0.7223999999999999,TJ,CH4,3.9,kg/TJ,2.81736,kg -3f415a71-9139-3a3f-a565-30a329c8e397,SESCO,II.1.1,Salta,AR-A,annual,2020,gas oil combustion consumption by freight transport,0.7223999999999999,TJ,N2O,3.9,kg/TJ,2.81736,kg -a36341f0-2deb-3be0-be3c-127b591e8f2e,SESCO,II.1.1,San Juan,AR-J,annual,2020,gas oil combustion consumption by freight transport,0.07224,TJ,CO2,74100.0,kg/TJ,5352.9839999999995,kg -f0c602d8-00e1-34de-9792-455335f749d0,SESCO,II.1.1,San Juan,AR-J,annual,2020,gas oil combustion consumption by freight transport,0.07224,TJ,CH4,3.9,kg/TJ,0.281736,kg -f0c602d8-00e1-34de-9792-455335f749d0,SESCO,II.1.1,San Juan,AR-J,annual,2020,gas oil combustion consumption by freight transport,0.07224,TJ,N2O,3.9,kg/TJ,0.281736,kg -9f864eef-8f17-3c89-bc53-0a9df259198c,SESCO,II.1.1,San Luis,AR-D,annual,2020,gas oil combustion consumption by freight transport,3.68424,TJ,CO2,74100.0,kg/TJ,273002.184,kg -1201eb33-8ba9-391e-ac45-5c001a5ae8aa,SESCO,II.1.1,San Luis,AR-D,annual,2020,gas oil combustion consumption by freight transport,3.68424,TJ,CH4,3.9,kg/TJ,14.368535999999999,kg -1201eb33-8ba9-391e-ac45-5c001a5ae8aa,SESCO,II.1.1,San Luis,AR-D,annual,2020,gas oil combustion consumption by freight transport,3.68424,TJ,N2O,3.9,kg/TJ,14.368535999999999,kg -5a765290-9dc7-368c-9efb-41bdddc215a6,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2020,gas oil combustion consumption by freight transport,3.2508,TJ,CO2,74100.0,kg/TJ,240884.28,kg -7adba211-9c62-31db-806f-e4b7e316edcb,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2020,gas oil combustion consumption by freight transport,3.2508,TJ,CH4,3.9,kg/TJ,12.67812,kg -7adba211-9c62-31db-806f-e4b7e316edcb,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2020,gas oil combustion consumption by freight transport,3.2508,TJ,N2O,3.9,kg/TJ,12.67812,kg -902567fd-a7d0-3aeb-8ff3-d1ea36c2469e,SESCO,II.1.1,Santa Fe,AR-S,annual,2020,gas oil combustion consumption by freight transport,40.92396,TJ,CO2,74100.0,kg/TJ,3032465.436,kg -bd773019-e73a-3d85-8799-b25944cb9688,SESCO,II.1.1,Santa Fe,AR-S,annual,2020,gas oil combustion consumption by freight transport,40.92396,TJ,CH4,3.9,kg/TJ,159.603444,kg -bd773019-e73a-3d85-8799-b25944cb9688,SESCO,II.1.1,Santa Fe,AR-S,annual,2020,gas oil combustion consumption by freight transport,40.92396,TJ,N2O,3.9,kg/TJ,159.603444,kg -65fffa51-1aa0-338c-b43b-3aac0bdb3814,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2020,gas oil combustion consumption by freight transport,5.34576,TJ,CO2,74100.0,kg/TJ,396120.81600000005,kg -d33d156b-a177-3107-985f-b8ffb780ab58,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2020,gas oil combustion consumption by freight transport,5.34576,TJ,CH4,3.9,kg/TJ,20.848464,kg -d33d156b-a177-3107-985f-b8ffb780ab58,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2020,gas oil combustion consumption by freight transport,5.34576,TJ,N2O,3.9,kg/TJ,20.848464,kg -9538ea72-cb1a-31e8-a3c1-d6e09531b470,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2020,gas oil combustion consumption by freight transport,0.07224,TJ,CO2,74100.0,kg/TJ,5352.9839999999995,kg -bac7c95d-2ce8-3ad1-87f4-8e0804123eab,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2020,gas oil combustion consumption by freight transport,0.07224,TJ,CH4,3.9,kg/TJ,0.281736,kg -bac7c95d-2ce8-3ad1-87f4-8e0804123eab,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2020,gas oil combustion consumption by freight transport,0.07224,TJ,N2O,3.9,kg/TJ,0.281736,kg -a8963765-3a3b-3c23-8d59-2b856560adbe,SESCO,II.1.1,Tucuman,AR-T,annual,2020,gas oil combustion consumption by freight transport,21.05796,TJ,CO2,74100.0,kg/TJ,1560394.8360000001,kg -4581f3a4-8f82-3960-87d3-8c81dfcf3da4,SESCO,II.1.1,Tucuman,AR-T,annual,2020,gas oil combustion consumption by freight transport,21.05796,TJ,CH4,3.9,kg/TJ,82.12604400000001,kg -4581f3a4-8f82-3960-87d3-8c81dfcf3da4,SESCO,II.1.1,Tucuman,AR-T,annual,2020,gas oil combustion consumption by freight transport,21.05796,TJ,N2O,3.9,kg/TJ,82.12604400000001,kg -8f49c4a4-ea8d-3072-9675-1ced19b9c3df,SESCO,II.1.1,Buenos Aires,AR-B,annual,2020,gas oil combustion consumption by public passenger transport,1113.79632,TJ,CO2,74100.0,kg/TJ,82532307.31199999,kg -9a06128a-3aa4-35f3-9ca4-a9925798b28e,SESCO,II.1.1,Buenos Aires,AR-B,annual,2020,gas oil combustion consumption by public passenger transport,1113.79632,TJ,CH4,3.9,kg/TJ,4343.805648,kg -9a06128a-3aa4-35f3-9ca4-a9925798b28e,SESCO,II.1.1,Buenos Aires,AR-B,annual,2020,gas oil combustion consumption by public passenger transport,1113.79632,TJ,N2O,3.9,kg/TJ,4343.805648,kg -5ee76078-f211-35c1-bcb0-d2b7d0ebfcf2,SESCO,II.1.1,Capital Federal,AR-C,annual,2020,gas oil combustion consumption by public passenger transport,324.75491999999997,TJ,CO2,74100.0,kg/TJ,24064339.571999997,kg -fa41c195-e846-3391-b1e6-1a00cd099d27,SESCO,II.1.1,Capital Federal,AR-C,annual,2020,gas oil combustion consumption by public passenger transport,324.75491999999997,TJ,CH4,3.9,kg/TJ,1266.5441879999998,kg -fa41c195-e846-3391-b1e6-1a00cd099d27,SESCO,II.1.1,Capital Federal,AR-C,annual,2020,gas oil combustion consumption by public passenger transport,324.75491999999997,TJ,N2O,3.9,kg/TJ,1266.5441879999998,kg -c1ce5347-a3e4-3fb3-8394-fae7e0ced57d,SESCO,II.1.1,Chaco,AR-H,annual,2020,gas oil combustion consumption by public passenger transport,12.67812,TJ,CO2,74100.0,kg/TJ,939448.692,kg -4329599a-f4e9-3d8e-8a50-db4875c44a47,SESCO,II.1.1,Chaco,AR-H,annual,2020,gas oil combustion consumption by public passenger transport,12.67812,TJ,CH4,3.9,kg/TJ,49.444668,kg -4329599a-f4e9-3d8e-8a50-db4875c44a47,SESCO,II.1.1,Chaco,AR-H,annual,2020,gas oil combustion consumption by public passenger transport,12.67812,TJ,N2O,3.9,kg/TJ,49.444668,kg -f8ea51f2-ad32-37c2-8253-69119787893a,SESCO,II.1.1,Chubut,AR-U,annual,2020,gas oil combustion consumption by public passenger transport,1.48092,TJ,CO2,74100.0,kg/TJ,109736.172,kg -4b542583-ca65-3950-91c8-79583ff5f720,SESCO,II.1.1,Chubut,AR-U,annual,2020,gas oil combustion consumption by public passenger transport,1.48092,TJ,CH4,3.9,kg/TJ,5.775588,kg -4b542583-ca65-3950-91c8-79583ff5f720,SESCO,II.1.1,Chubut,AR-U,annual,2020,gas oil combustion consumption by public passenger transport,1.48092,TJ,N2O,3.9,kg/TJ,5.775588,kg -5ad20a83-150d-30c6-ae1b-7e97cc020914,SESCO,II.1.1,Corrientes,AR-W,annual,2020,gas oil combustion consumption by public passenger transport,0.903,TJ,CO2,74100.0,kg/TJ,66912.3,kg -cf44dc3f-b186-34c5-844a-fc724ec55fac,SESCO,II.1.1,Corrientes,AR-W,annual,2020,gas oil combustion consumption by public passenger transport,0.903,TJ,CH4,3.9,kg/TJ,3.5217,kg -cf44dc3f-b186-34c5-844a-fc724ec55fac,SESCO,II.1.1,Corrientes,AR-W,annual,2020,gas oil combustion consumption by public passenger transport,0.903,TJ,N2O,3.9,kg/TJ,3.5217,kg -c7bd108f-d628-3b87-9230-081abe02a7fa,SESCO,II.1.1,Córdoba,AR-X,annual,2020,gas oil combustion consumption by public passenger transport,96.94608,TJ,CO2,74100.0,kg/TJ,7183704.528,kg -0d699e5e-6b8f-3d7b-9a23-c0dbb5c54bb5,SESCO,II.1.1,Córdoba,AR-X,annual,2020,gas oil combustion consumption by public passenger transport,96.94608,TJ,CH4,3.9,kg/TJ,378.08971199999996,kg -0d699e5e-6b8f-3d7b-9a23-c0dbb5c54bb5,SESCO,II.1.1,Córdoba,AR-X,annual,2020,gas oil combustion consumption by public passenger transport,96.94608,TJ,N2O,3.9,kg/TJ,378.08971199999996,kg -71ed92c7-f6c2-3ece-a149-5b13a16a155b,SESCO,II.1.1,Entre Rios,AR-E,annual,2020,gas oil combustion consumption by public passenger transport,33.62772,TJ,CO2,74100.0,kg/TJ,2491814.0519999997,kg -d7edf399-f96f-35b7-b822-c7b61c79b734,SESCO,II.1.1,Entre Rios,AR-E,annual,2020,gas oil combustion consumption by public passenger transport,33.62772,TJ,CH4,3.9,kg/TJ,131.14810799999998,kg -d7edf399-f96f-35b7-b822-c7b61c79b734,SESCO,II.1.1,Entre Rios,AR-E,annual,2020,gas oil combustion consumption by public passenger transport,33.62772,TJ,N2O,3.9,kg/TJ,131.14810799999998,kg -c840ef39-5db3-3991-abbd-12d53405e71c,SESCO,II.1.1,Formosa,AR-P,annual,2020,gas oil combustion consumption by public passenger transport,0.10836,TJ,CO2,74100.0,kg/TJ,8029.476,kg -4bda966b-5207-3f6e-945c-fa4e606d4620,SESCO,II.1.1,Formosa,AR-P,annual,2020,gas oil combustion consumption by public passenger transport,0.10836,TJ,CH4,3.9,kg/TJ,0.422604,kg -4bda966b-5207-3f6e-945c-fa4e606d4620,SESCO,II.1.1,Formosa,AR-P,annual,2020,gas oil combustion consumption by public passenger transport,0.10836,TJ,N2O,3.9,kg/TJ,0.422604,kg -5ba0f049-0653-35a9-8d48-7459ba7d4c3d,SESCO,II.1.1,La Pampa,AR-L,annual,2020,gas oil combustion consumption by public passenger transport,0.28896,TJ,CO2,74100.0,kg/TJ,21411.935999999998,kg -5dc698ce-7188-38fe-8b00-db5ec8b4c379,SESCO,II.1.1,La Pampa,AR-L,annual,2020,gas oil combustion consumption by public passenger transport,0.28896,TJ,CH4,3.9,kg/TJ,1.126944,kg -5dc698ce-7188-38fe-8b00-db5ec8b4c379,SESCO,II.1.1,La Pampa,AR-L,annual,2020,gas oil combustion consumption by public passenger transport,0.28896,TJ,N2O,3.9,kg/TJ,1.126944,kg -dce0284c-2a11-30fa-bd0d-06abdd8dd1f9,SESCO,II.1.1,Mendoza,AR-M,annual,2020,gas oil combustion consumption by public passenger transport,2.56452,TJ,CO2,74100.0,kg/TJ,190030.932,kg -48ef0c12-4f1a-3c7c-8823-54f3202cc1a9,SESCO,II.1.1,Mendoza,AR-M,annual,2020,gas oil combustion consumption by public passenger transport,2.56452,TJ,CH4,3.9,kg/TJ,10.001628,kg -48ef0c12-4f1a-3c7c-8823-54f3202cc1a9,SESCO,II.1.1,Mendoza,AR-M,annual,2020,gas oil combustion consumption by public passenger transport,2.56452,TJ,N2O,3.9,kg/TJ,10.001628,kg -27c84913-bf89-30d4-bba2-9044bda805d2,SESCO,II.1.1,Misiones,AR-N,annual,2020,gas oil combustion consumption by public passenger transport,1.76988,TJ,CO2,74100.0,kg/TJ,131148.10799999998,kg -9422ae97-c7b7-3b83-8301-5d8a9d37099b,SESCO,II.1.1,Misiones,AR-N,annual,2020,gas oil combustion consumption by public passenger transport,1.76988,TJ,CH4,3.9,kg/TJ,6.902531999999999,kg -9422ae97-c7b7-3b83-8301-5d8a9d37099b,SESCO,II.1.1,Misiones,AR-N,annual,2020,gas oil combustion consumption by public passenger transport,1.76988,TJ,N2O,3.9,kg/TJ,6.902531999999999,kg -651f46be-3bca-3a10-8f79-12a6c806cbbf,SESCO,II.1.1,Neuquén,AR-Q,annual,2020,gas oil combustion consumption by public passenger transport,2.20332,TJ,CO2,74100.0,kg/TJ,163266.01200000002,kg -6aef069e-d027-34a3-bd2d-d79943a55c2e,SESCO,II.1.1,Neuquén,AR-Q,annual,2020,gas oil combustion consumption by public passenger transport,2.20332,TJ,CH4,3.9,kg/TJ,8.592948,kg -6aef069e-d027-34a3-bd2d-d79943a55c2e,SESCO,II.1.1,Neuquén,AR-Q,annual,2020,gas oil combustion consumption by public passenger transport,2.20332,TJ,N2O,3.9,kg/TJ,8.592948,kg -40122746-4a83-3388-9591-4432edb6646a,SESCO,II.1.1,Rio Negro,AR-R,annual,2020,gas oil combustion consumption by public passenger transport,4.18992,TJ,CO2,74100.0,kg/TJ,310473.072,kg -67ae295c-5842-3c97-826c-69319f89518e,SESCO,II.1.1,Rio Negro,AR-R,annual,2020,gas oil combustion consumption by public passenger transport,4.18992,TJ,CH4,3.9,kg/TJ,16.340688,kg -67ae295c-5842-3c97-826c-69319f89518e,SESCO,II.1.1,Rio Negro,AR-R,annual,2020,gas oil combustion consumption by public passenger transport,4.18992,TJ,N2O,3.9,kg/TJ,16.340688,kg -81296f89-4149-3b13-9ba8-1564e5e896b6,SESCO,II.1.1,Salta,AR-A,annual,2020,gas oil combustion consumption by public passenger transport,8.16312,TJ,CO2,74100.0,kg/TJ,604887.1919999999,kg -f2bdcc34-f676-3c93-8fb5-77d3b015db7a,SESCO,II.1.1,Salta,AR-A,annual,2020,gas oil combustion consumption by public passenger transport,8.16312,TJ,CH4,3.9,kg/TJ,31.836167999999997,kg -f2bdcc34-f676-3c93-8fb5-77d3b015db7a,SESCO,II.1.1,Salta,AR-A,annual,2020,gas oil combustion consumption by public passenger transport,8.16312,TJ,N2O,3.9,kg/TJ,31.836167999999997,kg -f1c36709-d37a-3179-ace9-0637f6c05a1f,SESCO,II.1.1,San Juan,AR-J,annual,2020,gas oil combustion consumption by public passenger transport,0.03612,TJ,CO2,74100.0,kg/TJ,2676.4919999999997,kg -5e76d161-edcd-3406-a470-b0dd11894374,SESCO,II.1.1,San Juan,AR-J,annual,2020,gas oil combustion consumption by public passenger transport,0.03612,TJ,CH4,3.9,kg/TJ,0.140868,kg -5e76d161-edcd-3406-a470-b0dd11894374,SESCO,II.1.1,San Juan,AR-J,annual,2020,gas oil combustion consumption by public passenger transport,0.03612,TJ,N2O,3.9,kg/TJ,0.140868,kg -1444492f-24a0-380a-a63c-f2bb35b8ba57,SESCO,II.1.1,Santa Fe,AR-S,annual,2020,gas oil combustion consumption by public passenger transport,135.2694,TJ,CO2,74100.0,kg/TJ,10023462.54,kg -6fc38ef6-b93e-3a95-b810-8a97f7628cf4,SESCO,II.1.1,Santa Fe,AR-S,annual,2020,gas oil combustion consumption by public passenger transport,135.2694,TJ,CH4,3.9,kg/TJ,527.55066,kg -6fc38ef6-b93e-3a95-b810-8a97f7628cf4,SESCO,II.1.1,Santa Fe,AR-S,annual,2020,gas oil combustion consumption by public passenger transport,135.2694,TJ,N2O,3.9,kg/TJ,527.55066,kg -02b10c80-f015-39cb-aa5e-0fa5fb8fab17,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2020,gas oil combustion consumption by public passenger transport,0.07224,TJ,CO2,74100.0,kg/TJ,5352.9839999999995,kg -e5567771-8320-33a5-9f80-456ff2ef92f1,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2020,gas oil combustion consumption by public passenger transport,0.07224,TJ,CH4,3.9,kg/TJ,0.281736,kg -e5567771-8320-33a5-9f80-456ff2ef92f1,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2020,gas oil combustion consumption by public passenger transport,0.07224,TJ,N2O,3.9,kg/TJ,0.281736,kg -94534576-0a83-381a-a4bc-b0df5bf35101,SESCO,II.1.1,Tucuman,AR-T,annual,2020,gas oil combustion consumption by public passenger transport,114.24756,TJ,CO2,74100.0,kg/TJ,8465744.195999999,kg -9355f86d-f6f6-3fd5-95c3-6daed44291e1,SESCO,II.1.1,Tucuman,AR-T,annual,2020,gas oil combustion consumption by public passenger transport,114.24756,TJ,CH4,3.9,kg/TJ,445.56548399999997,kg -9355f86d-f6f6-3fd5-95c3-6daed44291e1,SESCO,II.1.1,Tucuman,AR-T,annual,2020,gas oil combustion consumption by public passenger transport,114.24756,TJ,N2O,3.9,kg/TJ,445.56548399999997,kg -1ad0f220-3597-3f67-9c83-b71dd91d02e8,SESCO,II.1.1,Buenos Aires,AR-B,annual,2020,gas oil combustion consumption by public passenger transport,414.8382,TJ,CO2,74100.0,kg/TJ,30739510.619999997,kg -4d2c8337-1e73-374b-8acd-0f11e183f9e4,SESCO,II.1.1,Buenos Aires,AR-B,annual,2020,gas oil combustion consumption by public passenger transport,414.8382,TJ,CH4,3.9,kg/TJ,1617.86898,kg -4d2c8337-1e73-374b-8acd-0f11e183f9e4,SESCO,II.1.1,Buenos Aires,AR-B,annual,2020,gas oil combustion consumption by public passenger transport,414.8382,TJ,N2O,3.9,kg/TJ,1617.86898,kg -b4703c48-c7c3-3f65-bd70-71cfd476d0db,SESCO,II.1.1,Capital Federal,AR-C,annual,2020,gas oil combustion consumption by public passenger transport,232.72116,TJ,CO2,74100.0,kg/TJ,17244637.956,kg -c0bfe0b7-5599-338b-a285-f1b143b67ac0,SESCO,II.1.1,Capital Federal,AR-C,annual,2020,gas oil combustion consumption by public passenger transport,232.72116,TJ,CH4,3.9,kg/TJ,907.612524,kg -c0bfe0b7-5599-338b-a285-f1b143b67ac0,SESCO,II.1.1,Capital Federal,AR-C,annual,2020,gas oil combustion consumption by public passenger transport,232.72116,TJ,N2O,3.9,kg/TJ,907.612524,kg -0018d26a-3f3a-3ed0-a113-24f50a4bca7b,SESCO,II.1.1,Chubut,AR-U,annual,2020,gas oil combustion consumption by public passenger transport,0.03612,TJ,CO2,74100.0,kg/TJ,2676.4919999999997,kg -c935cdd5-ed88-35ce-8d68-c14891c9caad,SESCO,II.1.1,Chubut,AR-U,annual,2020,gas oil combustion consumption by public passenger transport,0.03612,TJ,CH4,3.9,kg/TJ,0.140868,kg -c935cdd5-ed88-35ce-8d68-c14891c9caad,SESCO,II.1.1,Chubut,AR-U,annual,2020,gas oil combustion consumption by public passenger transport,0.03612,TJ,N2O,3.9,kg/TJ,0.140868,kg -ee69e8ca-aa88-3d23-a14a-edb9b655aa89,SESCO,II.1.1,Corrientes,AR-W,annual,2020,gas oil combustion consumption by public passenger transport,0.36119999999999997,TJ,CO2,74100.0,kg/TJ,26764.92,kg -33a05aff-5b9a-302a-825b-f010a9451d19,SESCO,II.1.1,Corrientes,AR-W,annual,2020,gas oil combustion consumption by public passenger transport,0.36119999999999997,TJ,CH4,3.9,kg/TJ,1.40868,kg -33a05aff-5b9a-302a-825b-f010a9451d19,SESCO,II.1.1,Corrientes,AR-W,annual,2020,gas oil combustion consumption by public passenger transport,0.36119999999999997,TJ,N2O,3.9,kg/TJ,1.40868,kg -d48b08ac-dbe5-3b5b-98e5-4bfd86f39a25,SESCO,II.1.1,Córdoba,AR-X,annual,2020,gas oil combustion consumption by public passenger transport,0.46956,TJ,CO2,74100.0,kg/TJ,34794.396,kg -ba9825fb-0d5c-3509-9dea-a95e47bc0463,SESCO,II.1.1,Córdoba,AR-X,annual,2020,gas oil combustion consumption by public passenger transport,0.46956,TJ,CH4,3.9,kg/TJ,1.831284,kg -ba9825fb-0d5c-3509-9dea-a95e47bc0463,SESCO,II.1.1,Córdoba,AR-X,annual,2020,gas oil combustion consumption by public passenger transport,0.46956,TJ,N2O,3.9,kg/TJ,1.831284,kg -f6ae5b98-0c58-3284-885a-bd39003c050b,SESCO,II.1.1,Entre Rios,AR-E,annual,2020,gas oil combustion consumption by public passenger transport,1.91436,TJ,CO2,74100.0,kg/TJ,141854.076,kg -024e59fb-a80f-34e6-8df1-24b4a10d39d2,SESCO,II.1.1,Entre Rios,AR-E,annual,2020,gas oil combustion consumption by public passenger transport,1.91436,TJ,CH4,3.9,kg/TJ,7.466004,kg -024e59fb-a80f-34e6-8df1-24b4a10d39d2,SESCO,II.1.1,Entre Rios,AR-E,annual,2020,gas oil combustion consumption by public passenger transport,1.91436,TJ,N2O,3.9,kg/TJ,7.466004,kg -5fa51960-36e1-3a0d-bce5-0dd2a833e98e,SESCO,II.1.1,La Pampa,AR-L,annual,2020,gas oil combustion consumption by public passenger transport,0.03612,TJ,CO2,74100.0,kg/TJ,2676.4919999999997,kg -9bffa227-caae-3d79-9202-c83612263ab2,SESCO,II.1.1,La Pampa,AR-L,annual,2020,gas oil combustion consumption by public passenger transport,0.03612,TJ,CH4,3.9,kg/TJ,0.140868,kg -9bffa227-caae-3d79-9202-c83612263ab2,SESCO,II.1.1,La Pampa,AR-L,annual,2020,gas oil combustion consumption by public passenger transport,0.03612,TJ,N2O,3.9,kg/TJ,0.140868,kg -ddf36c8e-bb57-3c74-9b97-7899194c8e2e,SESCO,II.1.1,Misiones,AR-N,annual,2020,gas oil combustion consumption by public passenger transport,7.98252,TJ,CO2,74100.0,kg/TJ,591504.732,kg -273bc418-1d5b-3fbe-80b8-0164d6c53398,SESCO,II.1.1,Misiones,AR-N,annual,2020,gas oil combustion consumption by public passenger transport,7.98252,TJ,CH4,3.9,kg/TJ,31.131828,kg -273bc418-1d5b-3fbe-80b8-0164d6c53398,SESCO,II.1.1,Misiones,AR-N,annual,2020,gas oil combustion consumption by public passenger transport,7.98252,TJ,N2O,3.9,kg/TJ,31.131828,kg -0cd58816-a371-3edd-bad4-18b7c1603d71,SESCO,II.1.1,Neuquén,AR-Q,annual,2020,gas oil combustion consumption by public passenger transport,11.738999999999999,TJ,CO2,74100.0,kg/TJ,869859.8999999999,kg -c9546000-689b-3c02-be0e-c65d37fe1ce9,SESCO,II.1.1,Neuquén,AR-Q,annual,2020,gas oil combustion consumption by public passenger transport,11.738999999999999,TJ,CH4,3.9,kg/TJ,45.78209999999999,kg -c9546000-689b-3c02-be0e-c65d37fe1ce9,SESCO,II.1.1,Neuquén,AR-Q,annual,2020,gas oil combustion consumption by public passenger transport,11.738999999999999,TJ,N2O,3.9,kg/TJ,45.78209999999999,kg -beb33958-10b8-389a-9467-116d4c22e97b,SESCO,II.1.1,Rio Negro,AR-R,annual,2020,gas oil combustion consumption by public passenger transport,26.909399999999998,TJ,CO2,74100.0,kg/TJ,1993986.5399999998,kg -fb97bcd7-55e8-3402-bd4f-5fa497cdecd9,SESCO,II.1.1,Rio Negro,AR-R,annual,2020,gas oil combustion consumption by public passenger transport,26.909399999999998,TJ,CH4,3.9,kg/TJ,104.94666,kg -fb97bcd7-55e8-3402-bd4f-5fa497cdecd9,SESCO,II.1.1,Rio Negro,AR-R,annual,2020,gas oil combustion consumption by public passenger transport,26.909399999999998,TJ,N2O,3.9,kg/TJ,104.94666,kg -abce6ba7-da1f-37fc-984d-4206c995f8c8,SESCO,II.1.1,Santa Fe,AR-S,annual,2020,gas oil combustion consumption by public passenger transport,31.027079999999998,TJ,CO2,74100.0,kg/TJ,2299106.628,kg -ce7b7ee3-257b-3e2f-8131-bc4f8787ff1c,SESCO,II.1.1,Santa Fe,AR-S,annual,2020,gas oil combustion consumption by public passenger transport,31.027079999999998,TJ,CH4,3.9,kg/TJ,121.00561199999999,kg -ce7b7ee3-257b-3e2f-8131-bc4f8787ff1c,SESCO,II.1.1,Santa Fe,AR-S,annual,2020,gas oil combustion consumption by public passenger transport,31.027079999999998,TJ,N2O,3.9,kg/TJ,121.00561199999999,kg -02b10c80-f015-39cb-aa5e-0fa5fb8fab17,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2020,gas oil combustion consumption by public passenger transport,0.07224,TJ,CO2,74100.0,kg/TJ,5352.9839999999995,kg -e5567771-8320-33a5-9f80-456ff2ef92f1,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2020,gas oil combustion consumption by public passenger transport,0.07224,TJ,CH4,3.9,kg/TJ,0.281736,kg -e5567771-8320-33a5-9f80-456ff2ef92f1,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2020,gas oil combustion consumption by public passenger transport,0.07224,TJ,N2O,3.9,kg/TJ,0.281736,kg -6e3be224-38fc-3df2-a219-4828f0be9059,SESCO,II.1.1,Catamarca,AR-K,annual,2020,gas oil combustion consumption by to the public,76.42992,TJ,CO2,74100.0,kg/TJ,5663457.072,kg -d498281c-3cb5-32b2-90eb-504cc9837080,SESCO,II.1.1,Catamarca,AR-K,annual,2020,gas oil combustion consumption by to the public,76.42992,TJ,CH4,3.9,kg/TJ,298.076688,kg -d498281c-3cb5-32b2-90eb-504cc9837080,SESCO,II.1.1,Catamarca,AR-K,annual,2020,gas oil combustion consumption by to the public,76.42992,TJ,N2O,3.9,kg/TJ,298.076688,kg -c5b665b2-128c-344b-bce4-56f87d1c1326,SESCO,II.1.1,Chaco,AR-H,annual,2020,gas oil combustion consumption by to the public,105.90384,TJ,CO2,74100.0,kg/TJ,7847474.544,kg -e9f3dc4b-bfcf-3ad3-890b-c841f5e9fbb7,SESCO,II.1.1,Chaco,AR-H,annual,2020,gas oil combustion consumption by to the public,105.90384,TJ,CH4,3.9,kg/TJ,413.024976,kg -e9f3dc4b-bfcf-3ad3-890b-c841f5e9fbb7,SESCO,II.1.1,Chaco,AR-H,annual,2020,gas oil combustion consumption by to the public,105.90384,TJ,N2O,3.9,kg/TJ,413.024976,kg -052ce0db-3c40-39cc-afbe-10ab0cef4994,SESCO,II.1.1,Jujuy,AR-Y,annual,2020,gas oil combustion consumption by to the public,398.2222776,TJ,CO2,74100.0,kg/TJ,29508270.770159997,kg -3a4d4d5e-f6f8-35ce-9e5d-a5660c4a47b8,SESCO,II.1.1,Jujuy,AR-Y,annual,2020,gas oil combustion consumption by to the public,398.2222776,TJ,CH4,3.9,kg/TJ,1553.06688264,kg -3a4d4d5e-f6f8-35ce-9e5d-a5660c4a47b8,SESCO,II.1.1,Jujuy,AR-Y,annual,2020,gas oil combustion consumption by to the public,398.2222776,TJ,N2O,3.9,kg/TJ,1553.06688264,kg -093b7210-e3e0-334f-b1e0-86bab6bc1488,SESCO,II.1.1,La Rioja,AR-F,annual,2020,gas oil combustion consumption by to the public,72.34836,TJ,CO2,74100.0,kg/TJ,5361013.476,kg -b30e7e3a-9dc6-3081-bebb-fa10bc195082,SESCO,II.1.1,La Rioja,AR-F,annual,2020,gas oil combustion consumption by to the public,72.34836,TJ,CH4,3.9,kg/TJ,282.15860399999997,kg -b30e7e3a-9dc6-3081-bebb-fa10bc195082,SESCO,II.1.1,La Rioja,AR-F,annual,2020,gas oil combustion consumption by to the public,72.34836,TJ,N2O,3.9,kg/TJ,282.15860399999997,kg -71382317-4e5f-34cd-bcc0-6faa4d270ef9,SESCO,II.1.1,Salta,AR-A,annual,2020,gas oil combustion consumption by to the public,1441.2010032,TJ,CO2,74100.0,kg/TJ,106792994.33712001,kg -79a4d56d-7512-32dc-ab45-bf656d8080ea,SESCO,II.1.1,Salta,AR-A,annual,2020,gas oil combustion consumption by to the public,1441.2010032,TJ,CH4,3.9,kg/TJ,5620.68391248,kg -79a4d56d-7512-32dc-ab45-bf656d8080ea,SESCO,II.1.1,Salta,AR-A,annual,2020,gas oil combustion consumption by to the public,1441.2010032,TJ,N2O,3.9,kg/TJ,5620.68391248,kg -2bd0fe6a-5af6-3a82-a4b2-d8730440f02f,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2020,gas oil combustion consumption by to the public,156.7608,TJ,CO2,74100.0,kg/TJ,11615975.28,kg -15ede32a-c729-3fc4-9b4a-9a7b712a3ff1,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2020,gas oil combustion consumption by to the public,156.7608,TJ,CH4,3.9,kg/TJ,611.36712,kg -15ede32a-c729-3fc4-9b4a-9a7b712a3ff1,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2020,gas oil combustion consumption by to the public,156.7608,TJ,N2O,3.9,kg/TJ,611.36712,kg -33b14dc4-7382-306b-8ea1-7f76c21ec4ec,SESCO,II.1.1,Tucuman,AR-T,annual,2020,gas oil combustion consumption by to the public,1366.9025244000002,TJ,CO2,74100.0,kg/TJ,101287477.05804001,kg -590f0391-44e9-3789-8435-e487e48f8c19,SESCO,II.1.1,Tucuman,AR-T,annual,2020,gas oil combustion consumption by to the public,1366.9025244000002,TJ,CH4,3.9,kg/TJ,5330.9198451600005,kg -590f0391-44e9-3789-8435-e487e48f8c19,SESCO,II.1.1,Tucuman,AR-T,annual,2020,gas oil combustion consumption by to the public,1366.9025244000002,TJ,N2O,3.9,kg/TJ,5330.9198451600005,kg -e704d098-f371-355f-aaf0-88639fc57564,SESCO,II.1.1,Catamarca,AR-K,annual,2020,gas oil combustion consumption by to the public,21.1302,TJ,CO2,74100.0,kg/TJ,1565747.8199999998,kg -a29ee563-9b1b-3ad2-9441-7edfec24d69c,SESCO,II.1.1,Catamarca,AR-K,annual,2020,gas oil combustion consumption by to the public,21.1302,TJ,CH4,3.9,kg/TJ,82.40777999999999,kg -a29ee563-9b1b-3ad2-9441-7edfec24d69c,SESCO,II.1.1,Catamarca,AR-K,annual,2020,gas oil combustion consumption by to the public,21.1302,TJ,N2O,3.9,kg/TJ,82.40777999999999,kg -e4d1a888-8d7e-3c52-9130-3baefd8f33a7,SESCO,II.1.1,Chaco,AR-H,annual,2020,gas oil combustion consumption by to the public,8.23536,TJ,CO2,74100.0,kg/TJ,610240.176,kg -6d9d4af0-7cd5-310a-bc24-9b8d408075cb,SESCO,II.1.1,Chaco,AR-H,annual,2020,gas oil combustion consumption by to the public,8.23536,TJ,CH4,3.9,kg/TJ,32.117903999999996,kg -6d9d4af0-7cd5-310a-bc24-9b8d408075cb,SESCO,II.1.1,Chaco,AR-H,annual,2020,gas oil combustion consumption by to the public,8.23536,TJ,N2O,3.9,kg/TJ,32.117903999999996,kg -bc832c67-3aa0-3e86-98cd-80cbdf854260,SESCO,II.1.1,Jujuy,AR-Y,annual,2020,gas oil combustion consumption by to the public,129.09288,TJ,CO2,74100.0,kg/TJ,9565782.408,kg -caeb0e87-d8cc-34fd-b084-8730c0eaa0f3,SESCO,II.1.1,Jujuy,AR-Y,annual,2020,gas oil combustion consumption by to the public,129.09288,TJ,CH4,3.9,kg/TJ,503.46223200000003,kg -caeb0e87-d8cc-34fd-b084-8730c0eaa0f3,SESCO,II.1.1,Jujuy,AR-Y,annual,2020,gas oil combustion consumption by to the public,129.09288,TJ,N2O,3.9,kg/TJ,503.46223200000003,kg -60f91b5f-405e-3187-bcb7-896510c65715,SESCO,II.1.1,La Rioja,AR-F,annual,2020,gas oil combustion consumption by to the public,47.75064,TJ,CO2,74100.0,kg/TJ,3538322.4239999996,kg -476bc3e6-dcfc-3f48-b1af-1dc69612d8a4,SESCO,II.1.1,La Rioja,AR-F,annual,2020,gas oil combustion consumption by to the public,47.75064,TJ,CH4,3.9,kg/TJ,186.22749599999997,kg -476bc3e6-dcfc-3f48-b1af-1dc69612d8a4,SESCO,II.1.1,La Rioja,AR-F,annual,2020,gas oil combustion consumption by to the public,47.75064,TJ,N2O,3.9,kg/TJ,186.22749599999997,kg -5aff70d2-3e7e-391d-9616-78ed4b9b3756,SESCO,II.1.1,Salta,AR-A,annual,2020,gas oil combustion consumption by to the public,249.6148452,TJ,CO2,74100.0,kg/TJ,18496460.029319998,kg -24fec4cd-19bb-3774-ad2a-6b939f7a3f3d,SESCO,II.1.1,Salta,AR-A,annual,2020,gas oil combustion consumption by to the public,249.6148452,TJ,CH4,3.9,kg/TJ,973.49789628,kg -24fec4cd-19bb-3774-ad2a-6b939f7a3f3d,SESCO,II.1.1,Salta,AR-A,annual,2020,gas oil combustion consumption by to the public,249.6148452,TJ,N2O,3.9,kg/TJ,973.49789628,kg -2d28a56b-9d67-393a-ad8d-c84c2466541c,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2020,gas oil combustion consumption by to the public,72.38448,TJ,CO2,74100.0,kg/TJ,5363689.967999999,kg -5c5c8c54-0e19-39fa-a2a8-85aa17fc91eb,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2020,gas oil combustion consumption by to the public,72.38448,TJ,CH4,3.9,kg/TJ,282.299472,kg -5c5c8c54-0e19-39fa-a2a8-85aa17fc91eb,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2020,gas oil combustion consumption by to the public,72.38448,TJ,N2O,3.9,kg/TJ,282.299472,kg -2ae03f8a-ce02-3d38-9992-6e9d895a80e6,SESCO,II.1.1,Tucuman,AR-T,annual,2020,gas oil combustion consumption by to the public,416.3812464,TJ,CO2,74100.0,kg/TJ,30853850.35824,kg -381f23e0-0af7-3aea-b6cf-461d8b656034,SESCO,II.1.1,Tucuman,AR-T,annual,2020,gas oil combustion consumption by to the public,416.3812464,TJ,CH4,3.9,kg/TJ,1623.88686096,kg -381f23e0-0af7-3aea-b6cf-461d8b656034,SESCO,II.1.1,Tucuman,AR-T,annual,2020,gas oil combustion consumption by to the public,416.3812464,TJ,N2O,3.9,kg/TJ,1623.88686096,kg -ea9e0970-8e25-3c01-8ed5-398484ccbf48,SESCO,I.3.1,Buenos Aires,AR-B,annual,2020,gasoline combustion consumption by petrochemical industries,7.186788999999999,TJ,CO2,69300.0,kg/TJ,498044.47769999993,kg -5cd356e2-2cc6-3c36-b69b-5944b0d5278e,SESCO,I.3.1,Buenos Aires,AR-B,annual,2020,gasoline combustion consumption by petrochemical industries,7.186788999999999,TJ,CH4,33.0,kg/TJ,237.16403699999998,kg -6b286190-d3a3-37db-9c8d-469566330b06,SESCO,I.3.1,Buenos Aires,AR-B,annual,2020,gasoline combustion consumption by petrochemical industries,7.186788999999999,TJ,N2O,3.2,kg/TJ,22.9977248,kg -b9b84e85-9e59-376c-abd1-93dc30371bcf,SESCO,I.3.1,Jujuy,AR-Y,annual,2020,gas oil combustion consumption by petrochemical industries,0.25284,TJ,CO2,74100.0,kg/TJ,18735.444,kg -04b9cf43-1a03-3e41-8fa1-428b15a054f5,SESCO,I.3.1,Jujuy,AR-Y,annual,2020,gas oil combustion consumption by petrochemical industries,0.25284,TJ,CH4,3.9,kg/TJ,0.9860760000000001,kg -04b9cf43-1a03-3e41-8fa1-428b15a054f5,SESCO,I.3.1,Jujuy,AR-Y,annual,2020,gas oil combustion consumption by petrochemical industries,0.25284,TJ,N2O,3.9,kg/TJ,0.9860760000000001,kg -fb0cd7a4-ee4e-343d-9e63-981650a37518,SESCO,II.5.1,Buenos Aires,AR-B,annual,2020,gas oil combustion consumption by agriculture machines,260.13624,TJ,CO2,74100.0,kg/TJ,19276095.384,kg -28d8e919-99ed-35dd-bfbd-c663848ad99c,SESCO,II.5.1,Buenos Aires,AR-B,annual,2020,gas oil combustion consumption by agriculture machines,260.13624,TJ,CH4,3.9,kg/TJ,1014.5313359999999,kg -28d8e919-99ed-35dd-bfbd-c663848ad99c,SESCO,II.5.1,Buenos Aires,AR-B,annual,2020,gas oil combustion consumption by agriculture machines,260.13624,TJ,N2O,3.9,kg/TJ,1014.5313359999999,kg -039a3859-ff2b-3768-ad2e-09ab25d52912,SESCO,II.5.1,Corrientes,AR-W,annual,2020,gas oil combustion consumption by agriculture machines,7.98252,TJ,CO2,74100.0,kg/TJ,591504.732,kg -5bfff8c8-7236-3d9f-93b8-de29c3b4b7ea,SESCO,II.5.1,Corrientes,AR-W,annual,2020,gas oil combustion consumption by agriculture machines,7.98252,TJ,CH4,3.9,kg/TJ,31.131828,kg -5bfff8c8-7236-3d9f-93b8-de29c3b4b7ea,SESCO,II.5.1,Corrientes,AR-W,annual,2020,gas oil combustion consumption by agriculture machines,7.98252,TJ,N2O,3.9,kg/TJ,31.131828,kg -94f9ab9b-53e6-3bde-8515-b20baf889dae,SESCO,II.5.1,Córdoba,AR-X,annual,2020,gas oil combustion consumption by agriculture machines,16.86804,TJ,CO2,74100.0,kg/TJ,1249921.764,kg -7dbc93ba-b74b-344a-9826-3aa9124bf47e,SESCO,II.5.1,Córdoba,AR-X,annual,2020,gas oil combustion consumption by agriculture machines,16.86804,TJ,CH4,3.9,kg/TJ,65.78535600000001,kg -7dbc93ba-b74b-344a-9826-3aa9124bf47e,SESCO,II.5.1,Córdoba,AR-X,annual,2020,gas oil combustion consumption by agriculture machines,16.86804,TJ,N2O,3.9,kg/TJ,65.78535600000001,kg -cf2701fc-0d20-30d6-8801-27871b184bcc,SESCO,II.5.1,Entre Rios,AR-E,annual,2020,gas oil combustion consumption by agriculture machines,78.59712,TJ,CO2,74100.0,kg/TJ,5824046.592,kg -d80d7b59-ae01-368b-9098-5fe060c72afd,SESCO,II.5.1,Entre Rios,AR-E,annual,2020,gas oil combustion consumption by agriculture machines,78.59712,TJ,CH4,3.9,kg/TJ,306.528768,kg -d80d7b59-ae01-368b-9098-5fe060c72afd,SESCO,II.5.1,Entre Rios,AR-E,annual,2020,gas oil combustion consumption by agriculture machines,78.59712,TJ,N2O,3.9,kg/TJ,306.528768,kg -400d7078-4735-304f-b188-56876790c9a0,SESCO,II.5.1,Santa Fe,AR-S,annual,2020,gas oil combustion consumption by agriculture machines,39.62364,TJ,CO2,74100.0,kg/TJ,2936111.724,kg -0edfa362-b029-35fa-9f4c-605e293428e6,SESCO,II.5.1,Santa Fe,AR-S,annual,2020,gas oil combustion consumption by agriculture machines,39.62364,TJ,CH4,3.9,kg/TJ,154.532196,kg -0edfa362-b029-35fa-9f4c-605e293428e6,SESCO,II.5.1,Santa Fe,AR-S,annual,2020,gas oil combustion consumption by agriculture machines,39.62364,TJ,N2O,3.9,kg/TJ,154.532196,kg -5f0008cf-184c-3cfa-9a4e-2c77bb931925,SESCO,II.5.1,Tucuman,AR-T,annual,2020,gas oil combustion consumption by agriculture machines,30.91872,TJ,CO2,74100.0,kg/TJ,2291077.1520000002,kg -7ce66a2e-1b36-35ba-a33f-df0902a0c88e,SESCO,II.5.1,Tucuman,AR-T,annual,2020,gas oil combustion consumption by agriculture machines,30.91872,TJ,CH4,3.9,kg/TJ,120.58300799999999,kg -7ce66a2e-1b36-35ba-a33f-df0902a0c88e,SESCO,II.5.1,Tucuman,AR-T,annual,2020,gas oil combustion consumption by agriculture machines,30.91872,TJ,N2O,3.9,kg/TJ,120.58300799999999,kg -2aa2803c-ea3d-3271-b373-2dbc9e7b1cd9,SESCO,II.5.1,Buenos Aires,AR-B,annual,2020,gas oil combustion consumption by agriculture machines,11.77512,TJ,CO2,74100.0,kg/TJ,872536.392,kg -aac77cee-9368-3407-85d0-3ffddfce7de0,SESCO,II.5.1,Buenos Aires,AR-B,annual,2020,gas oil combustion consumption by agriculture machines,11.77512,TJ,CH4,3.9,kg/TJ,45.922968,kg -aac77cee-9368-3407-85d0-3ffddfce7de0,SESCO,II.5.1,Buenos Aires,AR-B,annual,2020,gas oil combustion consumption by agriculture machines,11.77512,TJ,N2O,3.9,kg/TJ,45.922968,kg -38f1c27e-d2ac-3339-add1-62256732d356,SESCO,II.5.1,Entre Rios,AR-E,annual,2020,gas oil combustion consumption by agriculture machines,42.15204,TJ,CO2,74100.0,kg/TJ,3123466.164,kg -6489dbff-5cfa-3934-b3e7-a3f7b3fc10c1,SESCO,II.5.1,Entre Rios,AR-E,annual,2020,gas oil combustion consumption by agriculture machines,42.15204,TJ,CH4,3.9,kg/TJ,164.392956,kg -6489dbff-5cfa-3934-b3e7-a3f7b3fc10c1,SESCO,II.5.1,Entre Rios,AR-E,annual,2020,gas oil combustion consumption by agriculture machines,42.15204,TJ,N2O,3.9,kg/TJ,164.392956,kg -8e098029-7203-30cf-9afa-91fd9c976a3e,SESCO,II.5.1,Santa Fe,AR-S,annual,2020,gas oil combustion consumption by agriculture machines,3.21468,TJ,CO2,74100.0,kg/TJ,238207.788,kg -cbecbe1b-5469-377c-baf6-9a5fe1d68181,SESCO,II.5.1,Santa Fe,AR-S,annual,2020,gas oil combustion consumption by agriculture machines,3.21468,TJ,CH4,3.9,kg/TJ,12.537252,kg -cbecbe1b-5469-377c-baf6-9a5fe1d68181,SESCO,II.5.1,Santa Fe,AR-S,annual,2020,gas oil combustion consumption by agriculture machines,3.21468,TJ,N2O,3.9,kg/TJ,12.537252,kg -50635a08-13ee-3e0f-8dd3-cd5f7297bceb,SESCO,II.1.1,Buenos Aires,AR-B,annual,2020,gas oil combustion consumption by to the public,12366.079319999999,TJ,CO2,74100.0,kg/TJ,916326477.6119999,kg -96e56db4-d53a-3b1b-959e-1d7a69347987,SESCO,II.1.1,Buenos Aires,AR-B,annual,2020,gas oil combustion consumption by to the public,12366.079319999999,TJ,CH4,3.9,kg/TJ,48227.709348,kg -96e56db4-d53a-3b1b-959e-1d7a69347987,SESCO,II.1.1,Buenos Aires,AR-B,annual,2020,gas oil combustion consumption by to the public,12366.079319999999,TJ,N2O,3.9,kg/TJ,48227.709348,kg -e5b01c67-5fc0-3b7d-bb60-11408722aab4,SESCO,II.1.1,Capital Federal,AR-C,annual,2020,gas oil combustion consumption by to the public,722.7250799999999,TJ,CO2,74100.0,kg/TJ,53553928.427999996,kg -0d0ae5bf-9802-361a-ba58-2255692384cf,SESCO,II.1.1,Capital Federal,AR-C,annual,2020,gas oil combustion consumption by to the public,722.7250799999999,TJ,CH4,3.9,kg/TJ,2818.6278119999997,kg -0d0ae5bf-9802-361a-ba58-2255692384cf,SESCO,II.1.1,Capital Federal,AR-C,annual,2020,gas oil combustion consumption by to the public,722.7250799999999,TJ,N2O,3.9,kg/TJ,2818.6278119999997,kg -845559d7-99a5-3d6a-86d3-3418ff50b51e,SESCO,II.1.1,Catamarca,AR-K,annual,2020,gas oil combustion consumption by to the public,13.32828,TJ,CO2,74100.0,kg/TJ,987625.548,kg -21bedb80-3006-3b0d-aad1-b1be067b6b62,SESCO,II.1.1,Catamarca,AR-K,annual,2020,gas oil combustion consumption by to the public,13.32828,TJ,CH4,3.9,kg/TJ,51.980292,kg -21bedb80-3006-3b0d-aad1-b1be067b6b62,SESCO,II.1.1,Catamarca,AR-K,annual,2020,gas oil combustion consumption by to the public,13.32828,TJ,N2O,3.9,kg/TJ,51.980292,kg -18ce87da-be57-3823-8581-a64674f0544e,SESCO,II.1.1,Chaco,AR-H,annual,2020,gas oil combustion consumption by to the public,1653.9348,TJ,CO2,74100.0,kg/TJ,122556568.67999999,kg -53e6c781-89cf-374f-b6d2-0fe37f4181a3,SESCO,II.1.1,Chaco,AR-H,annual,2020,gas oil combustion consumption by to the public,1653.9348,TJ,CH4,3.9,kg/TJ,6450.34572,kg -53e6c781-89cf-374f-b6d2-0fe37f4181a3,SESCO,II.1.1,Chaco,AR-H,annual,2020,gas oil combustion consumption by to the public,1653.9348,TJ,N2O,3.9,kg/TJ,6450.34572,kg -6fa6916b-d691-33da-9632-979f96df39d4,SESCO,II.1.1,Corrientes,AR-W,annual,2020,gas oil combustion consumption by to the public,830.0376,TJ,CO2,74100.0,kg/TJ,61505786.16,kg -3cd12e70-f110-3930-9779-f965644c4adf,SESCO,II.1.1,Corrientes,AR-W,annual,2020,gas oil combustion consumption by to the public,830.0376,TJ,CH4,3.9,kg/TJ,3237.14664,kg -3cd12e70-f110-3930-9779-f965644c4adf,SESCO,II.1.1,Corrientes,AR-W,annual,2020,gas oil combustion consumption by to the public,830.0376,TJ,N2O,3.9,kg/TJ,3237.14664,kg -57f4c33e-5658-3091-b140-1f7b733048ad,SESCO,II.1.1,Córdoba,AR-X,annual,2020,gas oil combustion consumption by to the public,6395.87676,TJ,CO2,74100.0,kg/TJ,473934467.916,kg -643e4775-0bba-3d85-a67e-ad522f8758bd,SESCO,II.1.1,Córdoba,AR-X,annual,2020,gas oil combustion consumption by to the public,6395.87676,TJ,CH4,3.9,kg/TJ,24943.919364,kg -643e4775-0bba-3d85-a67e-ad522f8758bd,SESCO,II.1.1,Córdoba,AR-X,annual,2020,gas oil combustion consumption by to the public,6395.87676,TJ,N2O,3.9,kg/TJ,24943.919364,kg -8628f786-3d7f-30c6-b5e3-a5e0c2e1776c,SESCO,II.1.1,Entre Rios,AR-E,annual,2020,gas oil combustion consumption by to the public,1221.25332,TJ,CO2,74100.0,kg/TJ,90494871.01200001,kg -4d788277-fb76-3d9e-8bda-3df326b130b1,SESCO,II.1.1,Entre Rios,AR-E,annual,2020,gas oil combustion consumption by to the public,1221.25332,TJ,CH4,3.9,kg/TJ,4762.887948,kg -4d788277-fb76-3d9e-8bda-3df326b130b1,SESCO,II.1.1,Entre Rios,AR-E,annual,2020,gas oil combustion consumption by to the public,1221.25332,TJ,N2O,3.9,kg/TJ,4762.887948,kg -3630ee4e-217b-3b8e-89e9-c535bdc9e5d6,SESCO,II.1.1,Formosa,AR-P,annual,2020,gas oil combustion consumption by to the public,103.59215999999999,TJ,CO2,74100.0,kg/TJ,7676179.056,kg -396b092b-3598-35fa-8693-088e34e9b6dd,SESCO,II.1.1,Formosa,AR-P,annual,2020,gas oil combustion consumption by to the public,103.59215999999999,TJ,CH4,3.9,kg/TJ,404.00942399999997,kg -396b092b-3598-35fa-8693-088e34e9b6dd,SESCO,II.1.1,Formosa,AR-P,annual,2020,gas oil combustion consumption by to the public,103.59215999999999,TJ,N2O,3.9,kg/TJ,404.00942399999997,kg -e1d3f406-ea25-37b7-b533-6de45dfd7bcb,SESCO,II.1.1,Jujuy,AR-Y,annual,2020,gas oil combustion consumption by to the public,114.10307999999999,TJ,CO2,74100.0,kg/TJ,8455038.228,kg -2992f24d-66f4-3ba9-aa0b-fa23e24b9d41,SESCO,II.1.1,Jujuy,AR-Y,annual,2020,gas oil combustion consumption by to the public,114.10307999999999,TJ,CH4,3.9,kg/TJ,445.002012,kg -2992f24d-66f4-3ba9-aa0b-fa23e24b9d41,SESCO,II.1.1,Jujuy,AR-Y,annual,2020,gas oil combustion consumption by to the public,114.10307999999999,TJ,N2O,3.9,kg/TJ,445.002012,kg -0faa77a8-ea29-38b1-b9ff-7abb17d4d983,SESCO,II.1.1,La Pampa,AR-L,annual,2020,gas oil combustion consumption by to the public,676.23864,TJ,CO2,74100.0,kg/TJ,50109283.224,kg -e2519dba-8448-3496-9b11-7688aa41ffb4,SESCO,II.1.1,La Pampa,AR-L,annual,2020,gas oil combustion consumption by to the public,676.23864,TJ,CH4,3.9,kg/TJ,2637.330696,kg -e2519dba-8448-3496-9b11-7688aa41ffb4,SESCO,II.1.1,La Pampa,AR-L,annual,2020,gas oil combustion consumption by to the public,676.23864,TJ,N2O,3.9,kg/TJ,2637.330696,kg -3c3585ba-4d7a-36ac-9cac-b5128ae654c6,SESCO,II.1.1,La Rioja,AR-F,annual,2020,gas oil combustion consumption by to the public,139.71216,TJ,CO2,74100.0,kg/TJ,10352671.056000002,kg -9cedb802-34fa-31a6-abf1-bc977f67c6f9,SESCO,II.1.1,La Rioja,AR-F,annual,2020,gas oil combustion consumption by to the public,139.71216,TJ,CH4,3.9,kg/TJ,544.877424,kg -9cedb802-34fa-31a6-abf1-bc977f67c6f9,SESCO,II.1.1,La Rioja,AR-F,annual,2020,gas oil combustion consumption by to the public,139.71216,TJ,N2O,3.9,kg/TJ,544.877424,kg -5695b716-09d7-3d3f-9ee3-8955a197784f,SESCO,II.1.1,Mendoza,AR-M,annual,2020,gas oil combustion consumption by to the public,1557.16932,TJ,CO2,74100.0,kg/TJ,115386246.612,kg -63dc1fe5-b1cb-3590-b165-3cfaa3c74e06,SESCO,II.1.1,Mendoza,AR-M,annual,2020,gas oil combustion consumption by to the public,1557.16932,TJ,CH4,3.9,kg/TJ,6072.960348,kg -63dc1fe5-b1cb-3590-b165-3cfaa3c74e06,SESCO,II.1.1,Mendoza,AR-M,annual,2020,gas oil combustion consumption by to the public,1557.16932,TJ,N2O,3.9,kg/TJ,6072.960348,kg -f8d47817-2bf7-3b0f-9a3d-ef63b898fd0f,SESCO,II.1.1,Misiones,AR-N,annual,2020,gas oil combustion consumption by to the public,1077.92916,TJ,CO2,74100.0,kg/TJ,79874550.756,kg -9cc1f005-7a56-3bca-a64c-2908856c16ea,SESCO,II.1.1,Misiones,AR-N,annual,2020,gas oil combustion consumption by to the public,1077.92916,TJ,CH4,3.9,kg/TJ,4203.923723999999,kg -9cc1f005-7a56-3bca-a64c-2908856c16ea,SESCO,II.1.1,Misiones,AR-N,annual,2020,gas oil combustion consumption by to the public,1077.92916,TJ,N2O,3.9,kg/TJ,4203.923723999999,kg -07f658c8-4bf0-3244-976c-776f8bd13b47,SESCO,II.1.1,Neuquén,AR-Q,annual,2020,gas oil combustion consumption by to the public,540.68028,TJ,CO2,74100.0,kg/TJ,40064408.748,kg -a5277542-1ebc-3132-a07b-90ab0df559a6,SESCO,II.1.1,Neuquén,AR-Q,annual,2020,gas oil combustion consumption by to the public,540.68028,TJ,CH4,3.9,kg/TJ,2108.653092,kg -a5277542-1ebc-3132-a07b-90ab0df559a6,SESCO,II.1.1,Neuquén,AR-Q,annual,2020,gas oil combustion consumption by to the public,540.68028,TJ,N2O,3.9,kg/TJ,2108.653092,kg -829a7e76-e50c-3f1e-a333-6bc01cafcd70,SESCO,II.1.1,Rio Negro,AR-R,annual,2020,gas oil combustion consumption by to the public,241.49832,TJ,CO2,74100.0,kg/TJ,17895025.512000002,kg -123bc1eb-ebda-3f26-a671-478a0ff26417,SESCO,II.1.1,Rio Negro,AR-R,annual,2020,gas oil combustion consumption by to the public,241.49832,TJ,CH4,3.9,kg/TJ,941.843448,kg -123bc1eb-ebda-3f26-a671-478a0ff26417,SESCO,II.1.1,Rio Negro,AR-R,annual,2020,gas oil combustion consumption by to the public,241.49832,TJ,N2O,3.9,kg/TJ,941.843448,kg -08af010c-cb64-3e48-809f-3090235c7a80,SESCO,II.1.1,Salta,AR-A,annual,2020,gas oil combustion consumption by to the public,103.70052,TJ,CO2,74100.0,kg/TJ,7684208.532,kg -2db7209c-a04e-30fc-b8b2-18c9a0feaab7,SESCO,II.1.1,Salta,AR-A,annual,2020,gas oil combustion consumption by to the public,103.70052,TJ,CH4,3.9,kg/TJ,404.432028,kg -2db7209c-a04e-30fc-b8b2-18c9a0feaab7,SESCO,II.1.1,Salta,AR-A,annual,2020,gas oil combustion consumption by to the public,103.70052,TJ,N2O,3.9,kg/TJ,404.432028,kg -4b07ae9f-48e3-3666-870d-038bd79a2b4d,SESCO,II.1.1,San Juan,AR-J,annual,2020,gas oil combustion consumption by to the public,308.39256,TJ,CO2,74100.0,kg/TJ,22851888.696,kg -2175202c-77de-3b7e-8b73-b4b2db843274,SESCO,II.1.1,San Juan,AR-J,annual,2020,gas oil combustion consumption by to the public,308.39256,TJ,CH4,3.9,kg/TJ,1202.730984,kg -2175202c-77de-3b7e-8b73-b4b2db843274,SESCO,II.1.1,San Juan,AR-J,annual,2020,gas oil combustion consumption by to the public,308.39256,TJ,N2O,3.9,kg/TJ,1202.730984,kg -2780b064-177e-338f-93a9-57c513217fdf,SESCO,II.1.1,San Luis,AR-D,annual,2020,gas oil combustion consumption by to the public,265.87932,TJ,CO2,74100.0,kg/TJ,19701657.612,kg -32631566-d52f-39ab-9f1e-70cef4fb67fd,SESCO,II.1.1,San Luis,AR-D,annual,2020,gas oil combustion consumption by to the public,265.87932,TJ,CH4,3.9,kg/TJ,1036.929348,kg -32631566-d52f-39ab-9f1e-70cef4fb67fd,SESCO,II.1.1,San Luis,AR-D,annual,2020,gas oil combustion consumption by to the public,265.87932,TJ,N2O,3.9,kg/TJ,1036.929348,kg -e2baafc3-e7b2-3ab8-94af-407758d1b8b9,SESCO,II.1.1,Santa Fe,AR-S,annual,2020,gas oil combustion consumption by to the public,5178.30768,TJ,CO2,74100.0,kg/TJ,383712599.088,kg -8bcb7066-8817-3768-bfec-2c7c1e4439b6,SESCO,II.1.1,Santa Fe,AR-S,annual,2020,gas oil combustion consumption by to the public,5178.30768,TJ,CH4,3.9,kg/TJ,20195.399952,kg -8bcb7066-8817-3768-bfec-2c7c1e4439b6,SESCO,II.1.1,Santa Fe,AR-S,annual,2020,gas oil combustion consumption by to the public,5178.30768,TJ,N2O,3.9,kg/TJ,20195.399952,kg -d101cf3a-3c5f-315b-a473-788bc97362a2,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2020,gas oil combustion consumption by to the public,256.452,TJ,CO2,74100.0,kg/TJ,19003093.2,kg -15e91f3b-32f8-3cf3-9d84-b91f454a1742,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2020,gas oil combustion consumption by to the public,256.452,TJ,CH4,3.9,kg/TJ,1000.1628,kg -15e91f3b-32f8-3cf3-9d84-b91f454a1742,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2020,gas oil combustion consumption by to the public,256.452,TJ,N2O,3.9,kg/TJ,1000.1628,kg -8aaa962a-c1b7-3221-9fcb-11d587a7017d,SESCO,II.1.1,Tucuman,AR-T,annual,2020,gas oil combustion consumption by to the public,944.61024,TJ,CO2,74100.0,kg/TJ,69995618.784,kg -997d9c2f-f241-31c1-b096-4d1f9034930b,SESCO,II.1.1,Tucuman,AR-T,annual,2020,gas oil combustion consumption by to the public,944.61024,TJ,CH4,3.9,kg/TJ,3683.9799359999997,kg -997d9c2f-f241-31c1-b096-4d1f9034930b,SESCO,II.1.1,Tucuman,AR-T,annual,2020,gas oil combustion consumption by to the public,944.61024,TJ,N2O,3.9,kg/TJ,3683.9799359999997,kg -e4d1f42c-d5b1-34b1-8296-81de8efb7c29,SESCO,II.1.1,Buenos Aires,AR-B,annual,2020,gas oil combustion consumption by to the public,7061.8212,TJ,CO2,74100.0,kg/TJ,523280950.92,kg -977f1ba4-2c79-3334-b041-390b8d496043,SESCO,II.1.1,Buenos Aires,AR-B,annual,2020,gas oil combustion consumption by to the public,7061.8212,TJ,CH4,3.9,kg/TJ,27541.10268,kg -977f1ba4-2c79-3334-b041-390b8d496043,SESCO,II.1.1,Buenos Aires,AR-B,annual,2020,gas oil combustion consumption by to the public,7061.8212,TJ,N2O,3.9,kg/TJ,27541.10268,kg -d081d0c2-4593-3da5-894f-1a3726f87b21,SESCO,II.1.1,Capital Federal,AR-C,annual,2020,gas oil combustion consumption by to the public,1197.41412,TJ,CO2,74100.0,kg/TJ,88728386.292,kg -d2e74216-89d0-3bd0-b35f-d197e21c8f1c,SESCO,II.1.1,Capital Federal,AR-C,annual,2020,gas oil combustion consumption by to the public,1197.41412,TJ,CH4,3.9,kg/TJ,4669.915067999999,kg -d2e74216-89d0-3bd0-b35f-d197e21c8f1c,SESCO,II.1.1,Capital Federal,AR-C,annual,2020,gas oil combustion consumption by to the public,1197.41412,TJ,N2O,3.9,kg/TJ,4669.915067999999,kg -555ac185-50da-3ba7-9936-bf5d9a2438e4,SESCO,II.1.1,Catamarca,AR-K,annual,2020,gas oil combustion consumption by to the public,31.09932,TJ,CO2,74100.0,kg/TJ,2304459.6119999997,kg -c0cd2862-7440-370e-bb4c-43e11c29a8bf,SESCO,II.1.1,Catamarca,AR-K,annual,2020,gas oil combustion consumption by to the public,31.09932,TJ,CH4,3.9,kg/TJ,121.287348,kg -c0cd2862-7440-370e-bb4c-43e11c29a8bf,SESCO,II.1.1,Catamarca,AR-K,annual,2020,gas oil combustion consumption by to the public,31.09932,TJ,N2O,3.9,kg/TJ,121.287348,kg -60cd2c8d-404f-317c-ad11-c3853e6a5ebd,SESCO,II.1.1,Chaco,AR-H,annual,2020,gas oil combustion consumption by to the public,428.41931999999997,TJ,CO2,74100.0,kg/TJ,31745871.611999996,kg -c03f9675-882c-3fc0-9b16-e0ea22697d43,SESCO,II.1.1,Chaco,AR-H,annual,2020,gas oil combustion consumption by to the public,428.41931999999997,TJ,CH4,3.9,kg/TJ,1670.8353479999998,kg -c03f9675-882c-3fc0-9b16-e0ea22697d43,SESCO,II.1.1,Chaco,AR-H,annual,2020,gas oil combustion consumption by to the public,428.41931999999997,TJ,N2O,3.9,kg/TJ,1670.8353479999998,kg -de61719e-e196-3a2e-b2cc-ca43fa9f80f8,SESCO,II.1.1,Corrientes,AR-W,annual,2020,gas oil combustion consumption by to the public,417.04152,TJ,CO2,74100.0,kg/TJ,30902776.632,kg -f5728009-a088-3d45-a8cc-727ab063ba24,SESCO,II.1.1,Corrientes,AR-W,annual,2020,gas oil combustion consumption by to the public,417.04152,TJ,CH4,3.9,kg/TJ,1626.461928,kg -f5728009-a088-3d45-a8cc-727ab063ba24,SESCO,II.1.1,Corrientes,AR-W,annual,2020,gas oil combustion consumption by to the public,417.04152,TJ,N2O,3.9,kg/TJ,1626.461928,kg -b2dee434-5c11-35e0-935d-bb54ab534a39,SESCO,II.1.1,Córdoba,AR-X,annual,2020,gas oil combustion consumption by to the public,1989.45348,TJ,CO2,74100.0,kg/TJ,147418502.868,kg -a0c5bd41-e905-3f99-8bb8-703b5cf18d80,SESCO,II.1.1,Córdoba,AR-X,annual,2020,gas oil combustion consumption by to the public,1989.45348,TJ,CH4,3.9,kg/TJ,7758.868571999999,kg -a0c5bd41-e905-3f99-8bb8-703b5cf18d80,SESCO,II.1.1,Córdoba,AR-X,annual,2020,gas oil combustion consumption by to the public,1989.45348,TJ,N2O,3.9,kg/TJ,7758.868571999999,kg -e170e7f1-2de2-3dd7-8ae1-ad288ccdbeae,SESCO,II.1.1,Entre Rios,AR-E,annual,2020,gas oil combustion consumption by to the public,572.502,TJ,CO2,74100.0,kg/TJ,42422398.199999996,kg -63da435e-e5ab-353f-8e77-568292467744,SESCO,II.1.1,Entre Rios,AR-E,annual,2020,gas oil combustion consumption by to the public,572.502,TJ,CH4,3.9,kg/TJ,2232.7578,kg -63da435e-e5ab-353f-8e77-568292467744,SESCO,II.1.1,Entre Rios,AR-E,annual,2020,gas oil combustion consumption by to the public,572.502,TJ,N2O,3.9,kg/TJ,2232.7578,kg -8901e21d-fa20-329a-89b9-0740933bc8e8,SESCO,II.1.1,Formosa,AR-P,annual,2020,gas oil combustion consumption by to the public,129.20123999999998,TJ,CO2,74100.0,kg/TJ,9573811.884,kg -71e5bb3b-a959-326a-8f48-603fdce1acec,SESCO,II.1.1,Formosa,AR-P,annual,2020,gas oil combustion consumption by to the public,129.20123999999998,TJ,CH4,3.9,kg/TJ,503.88483599999995,kg -71e5bb3b-a959-326a-8f48-603fdce1acec,SESCO,II.1.1,Formosa,AR-P,annual,2020,gas oil combustion consumption by to the public,129.20123999999998,TJ,N2O,3.9,kg/TJ,503.88483599999995,kg -66927127-9e7a-3336-a7ef-d4dd7d4880d4,SESCO,II.1.1,Jujuy,AR-Y,annual,2020,gas oil combustion consumption by to the public,60.681599999999996,TJ,CO2,74100.0,kg/TJ,4496506.56,kg -bff94a2f-9ba0-3398-a526-065d7397c24e,SESCO,II.1.1,Jujuy,AR-Y,annual,2020,gas oil combustion consumption by to the public,60.681599999999996,TJ,CH4,3.9,kg/TJ,236.65823999999998,kg -bff94a2f-9ba0-3398-a526-065d7397c24e,SESCO,II.1.1,Jujuy,AR-Y,annual,2020,gas oil combustion consumption by to the public,60.681599999999996,TJ,N2O,3.9,kg/TJ,236.65823999999998,kg -78cd6485-7497-34ab-9223-821fe5330d16,SESCO,II.1.1,La Pampa,AR-L,annual,2020,gas oil combustion consumption by to the public,185.00664,TJ,CO2,74100.0,kg/TJ,13708992.024,kg -3352e5c6-1d37-317d-b0d7-f7f7ee98aeb6,SESCO,II.1.1,La Pampa,AR-L,annual,2020,gas oil combustion consumption by to the public,185.00664,TJ,CH4,3.9,kg/TJ,721.525896,kg -3352e5c6-1d37-317d-b0d7-f7f7ee98aeb6,SESCO,II.1.1,La Pampa,AR-L,annual,2020,gas oil combustion consumption by to the public,185.00664,TJ,N2O,3.9,kg/TJ,721.525896,kg -25a0630e-68ee-3304-a844-c37556cd336c,SESCO,II.1.1,La Rioja,AR-F,annual,2020,gas oil combustion consumption by to the public,105.68712,TJ,CO2,74100.0,kg/TJ,7831415.591999999,kg -9fa1dcfd-3fc3-3bb2-9b82-b4bddc8b8366,SESCO,II.1.1,La Rioja,AR-F,annual,2020,gas oil combustion consumption by to the public,105.68712,TJ,CH4,3.9,kg/TJ,412.17976799999997,kg -9fa1dcfd-3fc3-3bb2-9b82-b4bddc8b8366,SESCO,II.1.1,La Rioja,AR-F,annual,2020,gas oil combustion consumption by to the public,105.68712,TJ,N2O,3.9,kg/TJ,412.17976799999997,kg -08acfedc-90c9-35ac-9e98-6348f402efd7,SESCO,II.1.1,Mendoza,AR-M,annual,2020,gas oil combustion consumption by to the public,774.99072,TJ,CO2,74100.0,kg/TJ,57426812.352,kg -0242265a-36ad-31ec-b7ff-c73e07580ae6,SESCO,II.1.1,Mendoza,AR-M,annual,2020,gas oil combustion consumption by to the public,774.99072,TJ,CH4,3.9,kg/TJ,3022.463808,kg -0242265a-36ad-31ec-b7ff-c73e07580ae6,SESCO,II.1.1,Mendoza,AR-M,annual,2020,gas oil combustion consumption by to the public,774.99072,TJ,N2O,3.9,kg/TJ,3022.463808,kg -ec3a1c90-5779-314d-85db-7ccffeda5652,SESCO,II.1.1,Misiones,AR-N,annual,2020,gas oil combustion consumption by to the public,424.37388,TJ,CO2,74100.0,kg/TJ,31446104.507999998,kg -3dcfb7a7-93f1-3a13-96b2-8cf60be49408,SESCO,II.1.1,Misiones,AR-N,annual,2020,gas oil combustion consumption by to the public,424.37388,TJ,CH4,3.9,kg/TJ,1655.058132,kg -3dcfb7a7-93f1-3a13-96b2-8cf60be49408,SESCO,II.1.1,Misiones,AR-N,annual,2020,gas oil combustion consumption by to the public,424.37388,TJ,N2O,3.9,kg/TJ,1655.058132,kg -a103f13c-a1f2-32eb-a1e8-d9437042028d,SESCO,II.1.1,Neuquén,AR-Q,annual,2020,gas oil combustion consumption by to the public,864.06264,TJ,CO2,74100.0,kg/TJ,64027041.624,kg -9f04162e-b64a-383e-a7a4-84b7f81b6418,SESCO,II.1.1,Neuquén,AR-Q,annual,2020,gas oil combustion consumption by to the public,864.06264,TJ,CH4,3.9,kg/TJ,3369.8442959999998,kg -9f04162e-b64a-383e-a7a4-84b7f81b6418,SESCO,II.1.1,Neuquén,AR-Q,annual,2020,gas oil combustion consumption by to the public,864.06264,TJ,N2O,3.9,kg/TJ,3369.8442959999998,kg -67be8409-8836-306d-b57b-b7607b2f0458,SESCO,II.1.1,Rio Negro,AR-R,annual,2020,gas oil combustion consumption by to the public,173.77331999999998,TJ,CO2,74100.0,kg/TJ,12876603.011999998,kg -eedf473e-8d25-3d9a-9b1f-437c75292a09,SESCO,II.1.1,Rio Negro,AR-R,annual,2020,gas oil combustion consumption by to the public,173.77331999999998,TJ,CH4,3.9,kg/TJ,677.7159479999999,kg -eedf473e-8d25-3d9a-9b1f-437c75292a09,SESCO,II.1.1,Rio Negro,AR-R,annual,2020,gas oil combustion consumption by to the public,173.77331999999998,TJ,N2O,3.9,kg/TJ,677.7159479999999,kg -d0674ba3-bd14-3627-bf3c-2ae8937994b2,SESCO,II.1.1,Salta,AR-A,annual,2020,gas oil combustion consumption by to the public,157.44708,TJ,CO2,74100.0,kg/TJ,11666828.628,kg -66453d3d-b7e1-3391-b808-e4190b0bc1f7,SESCO,II.1.1,Salta,AR-A,annual,2020,gas oil combustion consumption by to the public,157.44708,TJ,CH4,3.9,kg/TJ,614.0436119999999,kg -66453d3d-b7e1-3391-b808-e4190b0bc1f7,SESCO,II.1.1,Salta,AR-A,annual,2020,gas oil combustion consumption by to the public,157.44708,TJ,N2O,3.9,kg/TJ,614.0436119999999,kg -71db6f41-a37a-39f9-abdf-d2f062b80724,SESCO,II.1.1,San Juan,AR-J,annual,2020,gas oil combustion consumption by to the public,128.91228,TJ,CO2,74100.0,kg/TJ,9552399.948,kg -e7248833-1042-3b58-a003-94e947c999fa,SESCO,II.1.1,San Juan,AR-J,annual,2020,gas oil combustion consumption by to the public,128.91228,TJ,CH4,3.9,kg/TJ,502.757892,kg -e7248833-1042-3b58-a003-94e947c999fa,SESCO,II.1.1,San Juan,AR-J,annual,2020,gas oil combustion consumption by to the public,128.91228,TJ,N2O,3.9,kg/TJ,502.757892,kg -a4592456-9644-31bd-aa1d-38692a7f5e2c,SESCO,II.1.1,San Luis,AR-D,annual,2020,gas oil combustion consumption by to the public,119.15988,TJ,CO2,74100.0,kg/TJ,8829747.108000001,kg -351cd249-6a1d-3e30-b553-c613198ca21b,SESCO,II.1.1,San Luis,AR-D,annual,2020,gas oil combustion consumption by to the public,119.15988,TJ,CH4,3.9,kg/TJ,464.723532,kg -351cd249-6a1d-3e30-b553-c613198ca21b,SESCO,II.1.1,San Luis,AR-D,annual,2020,gas oil combustion consumption by to the public,119.15988,TJ,N2O,3.9,kg/TJ,464.723532,kg -3c1fa1fa-b080-3552-b53b-37f9ff1c8ada,SESCO,II.1.1,Santa Fe,AR-S,annual,2020,gas oil combustion consumption by to the public,1774.43112,TJ,CO2,74100.0,kg/TJ,131485345.992,kg -8ec00f9e-3f5a-3c7b-95e1-e1368a73297a,SESCO,II.1.1,Santa Fe,AR-S,annual,2020,gas oil combustion consumption by to the public,1774.43112,TJ,CH4,3.9,kg/TJ,6920.281368,kg -8ec00f9e-3f5a-3c7b-95e1-e1368a73297a,SESCO,II.1.1,Santa Fe,AR-S,annual,2020,gas oil combustion consumption by to the public,1774.43112,TJ,N2O,3.9,kg/TJ,6920.281368,kg -890197f7-f8c7-378a-a7b6-5d50ca784949,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2020,gas oil combustion consumption by to the public,199.77972,TJ,CO2,74100.0,kg/TJ,14803677.252,kg -de31146d-6bd9-38e7-a265-1d1bb56d157b,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2020,gas oil combustion consumption by to the public,199.77972,TJ,CH4,3.9,kg/TJ,779.140908,kg -de31146d-6bd9-38e7-a265-1d1bb56d157b,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2020,gas oil combustion consumption by to the public,199.77972,TJ,N2O,3.9,kg/TJ,779.140908,kg -5166f210-57d9-3090-b777-42248e555589,SESCO,II.1.1,Tucuman,AR-T,annual,2020,gas oil combustion consumption by to the public,461.57748,TJ,CO2,74100.0,kg/TJ,34202891.268,kg -872d51eb-26e6-32ce-9e8d-3bb88b4674c9,SESCO,II.1.1,Tucuman,AR-T,annual,2020,gas oil combustion consumption by to the public,461.57748,TJ,CH4,3.9,kg/TJ,1800.1521719999998,kg -872d51eb-26e6-32ce-9e8d-3bb88b4674c9,SESCO,II.1.1,Tucuman,AR-T,annual,2020,gas oil combustion consumption by to the public,461.57748,TJ,N2O,3.9,kg/TJ,1800.1521719999998,kg -17c462e9-ea01-3ecc-a7df-e07564987057,SESCO,II.1.1,Buenos Aires,AR-B,annual,2020,jet kerosene combustion consumption by to the public,1.1323079999999999,TJ,CO2,71500.0,kg/TJ,80960.022,kg -f419fbcc-c7e0-34cc-a01f-0887f53858a0,SESCO,II.1.1,Buenos Aires,AR-B,annual,2020,jet kerosene combustion consumption by to the public,1.1323079999999999,TJ,CH4,0.5,kg/TJ,0.5661539999999999,kg -d61792fc-a186-3544-9920-798ca5921816,SESCO,II.1.1,Buenos Aires,AR-B,annual,2020,jet kerosene combustion consumption by to the public,1.1323079999999999,TJ,N2O,2.0,kg/TJ,2.2646159999999997,kg -297a4a2c-4f18-3fad-89f0-e39e971abf68,SESCO,II.1.1,Entre Rios,AR-E,annual,2020,jet kerosene combustion consumption by to the public,3.3340179999999995,TJ,CO2,71500.0,kg/TJ,238382.28699999995,kg -17b9169a-9c38-3839-9eff-225759002adb,SESCO,II.1.1,Entre Rios,AR-E,annual,2020,jet kerosene combustion consumption by to the public,3.3340179999999995,TJ,CH4,0.5,kg/TJ,1.6670089999999997,kg -ec7ac5ef-c1ae-3b82-99c5-03b78677f0ef,SESCO,II.1.1,Entre Rios,AR-E,annual,2020,jet kerosene combustion consumption by to the public,3.3340179999999995,TJ,N2O,2.0,kg/TJ,6.668035999999999,kg -43ce6b81-84e9-3d14-9b3d-895697be0d64,SESCO,II.1.1,Mendoza,AR-M,annual,2020,jet kerosene combustion consumption by to the public,0.157265,TJ,CO2,71500.0,kg/TJ,11244.447499999998,kg -6854e353-c525-3968-98e1-57d136212235,SESCO,II.1.1,Mendoza,AR-M,annual,2020,jet kerosene combustion consumption by to the public,0.157265,TJ,CH4,0.5,kg/TJ,0.0786325,kg -b2657b9f-dd87-360c-a6dd-8e846c102a8f,SESCO,II.1.1,Mendoza,AR-M,annual,2020,jet kerosene combustion consumption by to the public,0.157265,TJ,N2O,2.0,kg/TJ,0.31453,kg -94f76054-960d-3740-8e1c-62526446c784,SESCO,I.3.1,Buenos Aires,AR-B,annual,2020,gasoline combustion consumption by petrochemical industries,4.5629,TJ,CO2,69300.0,kg/TJ,316208.97,kg -a94bbb9b-1a96-3afa-a615-e80a5bf81148,SESCO,I.3.1,Buenos Aires,AR-B,annual,2020,gasoline combustion consumption by petrochemical industries,4.5629,TJ,CH4,33.0,kg/TJ,150.5757,kg -7695ba0b-6b3a-3b67-8450-4f6912906c8a,SESCO,I.3.1,Buenos Aires,AR-B,annual,2020,gasoline combustion consumption by petrochemical industries,4.5629,TJ,N2O,3.2,kg/TJ,14.601280000000001,kg -4d6b7cf9-640a-3ca2-b27c-c3422b79fa9a,SESCO,I.3.1,Capital Federal,AR-C,annual,2020,gasoline combustion consumption by petrochemical industries,98.6118,TJ,CO2,69300.0,kg/TJ,6833797.74,kg -c051e2a8-3b45-30b3-ac32-662a9d0c921c,SESCO,I.3.1,Capital Federal,AR-C,annual,2020,gasoline combustion consumption by petrochemical industries,98.6118,TJ,CH4,33.0,kg/TJ,3254.1894,kg -52c6e127-063f-301b-bb66-8b4035087c9c,SESCO,I.3.1,Capital Federal,AR-C,annual,2020,gasoline combustion consumption by petrochemical industries,98.6118,TJ,N2O,3.2,kg/TJ,315.55776000000003,kg -9977d788-9388-3dc3-b9ad-0ce66c34d9f8,SESCO,I.3.1,Córdoba,AR-X,annual,2020,gasoline combustion consumption by petrochemical industries,192.262,TJ,CO2,69300.0,kg/TJ,13323756.6,kg -52a5d087-3788-34dd-a2fc-97a0cccd49ba,SESCO,I.3.1,Córdoba,AR-X,annual,2020,gasoline combustion consumption by petrochemical industries,192.262,TJ,CH4,33.0,kg/TJ,6344.646,kg -99c92850-cae6-3cd1-b7b4-ffbf9158fcd8,SESCO,I.3.1,Córdoba,AR-X,annual,2020,gasoline combustion consumption by petrochemical industries,192.262,TJ,N2O,3.2,kg/TJ,615.2384000000001,kg -a6a7138f-ae3d-3d1f-b728-38fae6ccdb17,SESCO,I.3.1,Entre Rios,AR-E,annual,2020,gasoline combustion consumption by petrochemical industries,28.086199999999998,TJ,CO2,69300.0,kg/TJ,1946373.66,kg -1904d544-e6d0-3abe-8eed-96c374f9450b,SESCO,I.3.1,Entre Rios,AR-E,annual,2020,gasoline combustion consumption by petrochemical industries,28.086199999999998,TJ,CH4,33.0,kg/TJ,926.8445999999999,kg -0e603071-c9b1-3347-92f1-967d3d97ed64,SESCO,I.3.1,Entre Rios,AR-E,annual,2020,gasoline combustion consumption by petrochemical industries,28.086199999999998,TJ,N2O,3.2,kg/TJ,89.87584,kg -69a574a3-5c75-33bf-a08e-6f4913507420,SESCO,I.3.1,Misiones,AR-N,annual,2020,gasoline combustion consumption by petrochemical industries,119.83149999999999,TJ,CO2,69300.0,kg/TJ,8304322.949999999,kg -f9e78d99-e0b8-33d9-a0e4-533593a984a3,SESCO,I.3.1,Misiones,AR-N,annual,2020,gasoline combustion consumption by petrochemical industries,119.83149999999999,TJ,CH4,33.0,kg/TJ,3954.4394999999995,kg -e7ab7179-b914-3a43-b53d-11339cc79ba7,SESCO,I.3.1,Misiones,AR-N,annual,2020,gasoline combustion consumption by petrochemical industries,119.83149999999999,TJ,N2O,3.2,kg/TJ,383.4608,kg -4786eb58-44fe-36ef-a1bc-557c171366e8,SESCO,I.3.1,Neuquén,AR-Q,annual,2020,gasoline combustion consumption by petrochemical industries,13.9102,TJ,CO2,69300.0,kg/TJ,963976.86,kg -0c9cc54a-df94-3252-9b18-53023ba9160c,SESCO,I.3.1,Neuquén,AR-Q,annual,2020,gasoline combustion consumption by petrochemical industries,13.9102,TJ,CH4,33.0,kg/TJ,459.03659999999996,kg -51b4ffc8-0f2f-3646-9b33-6a7ee8ea4b9f,SESCO,I.3.1,Neuquén,AR-Q,annual,2020,gasoline combustion consumption by petrochemical industries,13.9102,TJ,N2O,3.2,kg/TJ,44.512640000000005,kg -8367c190-efcf-3ddc-b380-ba1dcf757ab2,SESCO,I.3.1,Santa Fe,AR-S,annual,2020,gasoline combustion consumption by petrochemical industries,1.1961,TJ,CO2,69300.0,kg/TJ,82889.73,kg -5f36df09-7c07-3f40-b895-16cc3953c2bb,SESCO,I.3.1,Santa Fe,AR-S,annual,2020,gasoline combustion consumption by petrochemical industries,1.1961,TJ,CH4,33.0,kg/TJ,39.4713,kg -3d6d6b67-f48e-3f77-891e-3affb316897f,SESCO,I.3.1,Santa Fe,AR-S,annual,2020,gasoline combustion consumption by petrochemical industries,1.1961,TJ,N2O,3.2,kg/TJ,3.82752,kg -8214ce23-cfa3-3193-b60f-1a97865a7143,SESCO,I.3.1,Buenos Aires,AR-B,annual,2020,gas oil combustion consumption by petrochemical industries,70.86744,TJ,CO2,74100.0,kg/TJ,5251277.3040000005,kg -f24b7909-ce39-39fe-a44c-836774823d2f,SESCO,I.3.1,Buenos Aires,AR-B,annual,2020,gas oil combustion consumption by petrochemical industries,70.86744,TJ,CH4,3.9,kg/TJ,276.383016,kg -f24b7909-ce39-39fe-a44c-836774823d2f,SESCO,I.3.1,Buenos Aires,AR-B,annual,2020,gas oil combustion consumption by petrochemical industries,70.86744,TJ,N2O,3.9,kg/TJ,276.383016,kg -973aafdf-5f8c-3fc6-a349-0c2cbbef1f0c,SESCO,I.3.1,Capital Federal,AR-C,annual,2020,gas oil combustion consumption by petrochemical industries,5.0568,TJ,CO2,74100.0,kg/TJ,374708.88,kg -f9fb3e21-74de-3b2b-a676-237b7bb48508,SESCO,I.3.1,Capital Federal,AR-C,annual,2020,gas oil combustion consumption by petrochemical industries,5.0568,TJ,CH4,3.9,kg/TJ,19.721519999999998,kg -f9fb3e21-74de-3b2b-a676-237b7bb48508,SESCO,I.3.1,Capital Federal,AR-C,annual,2020,gas oil combustion consumption by petrochemical industries,5.0568,TJ,N2O,3.9,kg/TJ,19.721519999999998,kg -a9aa0d22-9414-3300-a956-f2d1499cbffb,SESCO,I.3.1,Córdoba,AR-X,annual,2020,gas oil combustion consumption by petrochemical industries,15.78444,TJ,CO2,74100.0,kg/TJ,1169627.004,kg -3e0a506f-7be8-31ee-8715-2b86e3a12698,SESCO,I.3.1,Córdoba,AR-X,annual,2020,gas oil combustion consumption by petrochemical industries,15.78444,TJ,CH4,3.9,kg/TJ,61.559315999999995,kg -3e0a506f-7be8-31ee-8715-2b86e3a12698,SESCO,I.3.1,Córdoba,AR-X,annual,2020,gas oil combustion consumption by petrochemical industries,15.78444,TJ,N2O,3.9,kg/TJ,61.559315999999995,kg -6f783b40-754e-30ee-a0ef-2790ebfea410,SESCO,I.3.1,Entre Rios,AR-E,annual,2020,gas oil combustion consumption by petrochemical industries,10.58316,TJ,CO2,74100.0,kg/TJ,784212.156,kg -0c8d4661-1168-3931-8d8d-f6ddc4809f6a,SESCO,I.3.1,Entre Rios,AR-E,annual,2020,gas oil combustion consumption by petrochemical industries,10.58316,TJ,CH4,3.9,kg/TJ,41.274324,kg -0c8d4661-1168-3931-8d8d-f6ddc4809f6a,SESCO,I.3.1,Entre Rios,AR-E,annual,2020,gas oil combustion consumption by petrochemical industries,10.58316,TJ,N2O,3.9,kg/TJ,41.274324,kg -ddb8b773-7712-3c69-898b-e4b6c8bc177f,SESCO,I.3.1,Jujuy,AR-Y,annual,2020,gas oil combustion consumption by petrochemical industries,27.270599999999998,TJ,CO2,74100.0,kg/TJ,2020751.46,kg -45c08d73-487d-3bf3-8a50-282ab5e4215d,SESCO,I.3.1,Jujuy,AR-Y,annual,2020,gas oil combustion consumption by petrochemical industries,27.270599999999998,TJ,CH4,3.9,kg/TJ,106.35533999999998,kg -45c08d73-487d-3bf3-8a50-282ab5e4215d,SESCO,I.3.1,Jujuy,AR-Y,annual,2020,gas oil combustion consumption by petrochemical industries,27.270599999999998,TJ,N2O,3.9,kg/TJ,106.35533999999998,kg -b3636ae9-eb78-34a2-bf42-3ee615ec0ee4,SESCO,I.3.1,Mendoza,AR-M,annual,2020,gas oil combustion consumption by petrochemical industries,9.10224,TJ,CO2,74100.0,kg/TJ,674475.984,kg -1b0b14c3-d4c8-3dd9-b40c-2b946122b1e0,SESCO,I.3.1,Mendoza,AR-M,annual,2020,gas oil combustion consumption by petrochemical industries,9.10224,TJ,CH4,3.9,kg/TJ,35.498736,kg -1b0b14c3-d4c8-3dd9-b40c-2b946122b1e0,SESCO,I.3.1,Mendoza,AR-M,annual,2020,gas oil combustion consumption by petrochemical industries,9.10224,TJ,N2O,3.9,kg/TJ,35.498736,kg -501330f5-f793-3bc5-9d4b-6ef6163a524b,SESCO,I.3.1,Misiones,AR-N,annual,2020,gas oil combustion consumption by petrochemical industries,9.10224,TJ,CO2,74100.0,kg/TJ,674475.984,kg -21595c44-d583-3829-b908-ab26232b4477,SESCO,I.3.1,Misiones,AR-N,annual,2020,gas oil combustion consumption by petrochemical industries,9.10224,TJ,CH4,3.9,kg/TJ,35.498736,kg -21595c44-d583-3829-b908-ab26232b4477,SESCO,I.3.1,Misiones,AR-N,annual,2020,gas oil combustion consumption by petrochemical industries,9.10224,TJ,N2O,3.9,kg/TJ,35.498736,kg -99af1ee8-2a8c-3e9d-871c-ece4b4020a88,SESCO,I.3.1,Neuquén,AR-Q,annual,2020,gas oil combustion consumption by petrochemical industries,63.82404,TJ,CO2,74100.0,kg/TJ,4729361.364,kg -f9749ed6-8f46-3e44-a225-c1efa67418d5,SESCO,I.3.1,Neuquén,AR-Q,annual,2020,gas oil combustion consumption by petrochemical industries,63.82404,TJ,CH4,3.9,kg/TJ,248.91375599999998,kg -f9749ed6-8f46-3e44-a225-c1efa67418d5,SESCO,I.3.1,Neuquén,AR-Q,annual,2020,gas oil combustion consumption by petrochemical industries,63.82404,TJ,N2O,3.9,kg/TJ,248.91375599999998,kg -3e94a55c-1e70-3516-a50b-5c0d880688fa,SESCO,I.3.1,Salta,AR-A,annual,2020,gas oil combustion consumption by petrochemical industries,102.54468,TJ,CO2,74100.0,kg/TJ,7598560.788,kg -9f0c12e0-ed72-3655-83ff-6e8d29f14857,SESCO,I.3.1,Salta,AR-A,annual,2020,gas oil combustion consumption by petrochemical industries,102.54468,TJ,CH4,3.9,kg/TJ,399.92425199999997,kg -9f0c12e0-ed72-3655-83ff-6e8d29f14857,SESCO,I.3.1,Salta,AR-A,annual,2020,gas oil combustion consumption by petrochemical industries,102.54468,TJ,N2O,3.9,kg/TJ,399.92425199999997,kg -7ae2a0a0-a4d4-3a06-a5e8-d1e73ec81acd,SESCO,I.3.1,San Juan,AR-J,annual,2020,gas oil combustion consumption by petrochemical industries,22.35828,TJ,CO2,74100.0,kg/TJ,1656748.548,kg -66d8ff2c-de46-3124-87b2-772eccd85511,SESCO,I.3.1,San Juan,AR-J,annual,2020,gas oil combustion consumption by petrochemical industries,22.35828,TJ,CH4,3.9,kg/TJ,87.197292,kg -66d8ff2c-de46-3124-87b2-772eccd85511,SESCO,I.3.1,San Juan,AR-J,annual,2020,gas oil combustion consumption by petrochemical industries,22.35828,TJ,N2O,3.9,kg/TJ,87.197292,kg -d9b2e201-b028-34fc-9cbc-712bfec7dfd8,SESCO,I.3.1,Santa Fe,AR-S,annual,2020,gas oil combustion consumption by petrochemical industries,17.26536,TJ,CO2,74100.0,kg/TJ,1279363.176,kg -20a2bb94-6c98-349b-8a6e-6f0d1ddd2e0d,SESCO,I.3.1,Santa Fe,AR-S,annual,2020,gas oil combustion consumption by petrochemical industries,17.26536,TJ,CH4,3.9,kg/TJ,67.33490400000001,kg -20a2bb94-6c98-349b-8a6e-6f0d1ddd2e0d,SESCO,I.3.1,Santa Fe,AR-S,annual,2020,gas oil combustion consumption by petrochemical industries,17.26536,TJ,N2O,3.9,kg/TJ,67.33490400000001,kg -bcd68f11-ba3c-3f00-9822-1b06d47cf6c4,SESCO,I.3.1,Tucuman,AR-T,annual,2020,gas oil combustion consumption by petrochemical industries,109.9854,TJ,CO2,74100.0,kg/TJ,8149918.14,kg -6d4357d2-2249-34ce-b2c5-c61a9769f2f1,SESCO,I.3.1,Tucuman,AR-T,annual,2020,gas oil combustion consumption by petrochemical industries,109.9854,TJ,CH4,3.9,kg/TJ,428.94306,kg -6d4357d2-2249-34ce-b2c5-c61a9769f2f1,SESCO,I.3.1,Tucuman,AR-T,annual,2020,gas oil combustion consumption by petrochemical industries,109.9854,TJ,N2O,3.9,kg/TJ,428.94306,kg -d7d3b0f4-718d-3c6d-bc7e-5bccc8ef1924,SESCO,I.3.1,Buenos Aires,AR-B,annual,2020,gas oil combustion consumption by petrochemical industries,14.95368,TJ,CO2,74100.0,kg/TJ,1108067.688,kg -fe13393e-7c25-3a88-9fb6-4ef51d61b474,SESCO,I.3.1,Buenos Aires,AR-B,annual,2020,gas oil combustion consumption by petrochemical industries,14.95368,TJ,CH4,3.9,kg/TJ,58.319352,kg -fe13393e-7c25-3a88-9fb6-4ef51d61b474,SESCO,I.3.1,Buenos Aires,AR-B,annual,2020,gas oil combustion consumption by petrochemical industries,14.95368,TJ,N2O,3.9,kg/TJ,58.319352,kg -effc26e8-1e44-3feb-89c8-1931c98daa56,SESCO,I.3.1,Capital Federal,AR-C,annual,2020,gas oil combustion consumption by petrochemical industries,1.30032,TJ,CO2,74100.0,kg/TJ,96353.712,kg -d1cc3170-1fb3-3d62-98ae-69f2ea114da8,SESCO,I.3.1,Capital Federal,AR-C,annual,2020,gas oil combustion consumption by petrochemical industries,1.30032,TJ,CH4,3.9,kg/TJ,5.071248,kg -d1cc3170-1fb3-3d62-98ae-69f2ea114da8,SESCO,I.3.1,Capital Federal,AR-C,annual,2020,gas oil combustion consumption by petrochemical industries,1.30032,TJ,N2O,3.9,kg/TJ,5.071248,kg -edecf887-be74-3fa5-ab88-ea03933a8fa3,SESCO,I.3.1,Córdoba,AR-X,annual,2020,gas oil combustion consumption by petrochemical industries,0.65016,TJ,CO2,74100.0,kg/TJ,48176.856,kg -eb7d8d1f-3c4f-3c45-b0ee-c8ab67888fc9,SESCO,I.3.1,Córdoba,AR-X,annual,2020,gas oil combustion consumption by petrochemical industries,0.65016,TJ,CH4,3.9,kg/TJ,2.535624,kg -eb7d8d1f-3c4f-3c45-b0ee-c8ab67888fc9,SESCO,I.3.1,Córdoba,AR-X,annual,2020,gas oil combustion consumption by petrochemical industries,0.65016,TJ,N2O,3.9,kg/TJ,2.535624,kg -f6b79873-9309-3bf4-93e5-e7e19ada4b74,SESCO,I.3.1,Mendoza,AR-M,annual,2020,gas oil combustion consumption by petrochemical industries,0.21672,TJ,CO2,74100.0,kg/TJ,16058.952,kg -9489675b-be79-37fb-ac2a-c7b4d2e296dc,SESCO,I.3.1,Mendoza,AR-M,annual,2020,gas oil combustion consumption by petrochemical industries,0.21672,TJ,CH4,3.9,kg/TJ,0.845208,kg -9489675b-be79-37fb-ac2a-c7b4d2e296dc,SESCO,I.3.1,Mendoza,AR-M,annual,2020,gas oil combustion consumption by petrochemical industries,0.21672,TJ,N2O,3.9,kg/TJ,0.845208,kg -f39f5be5-9ad0-3f84-86d9-6834a2eba0c4,SESCO,I.3.1,Neuquén,AR-Q,annual,2020,gas oil combustion consumption by petrochemical industries,8.16312,TJ,CO2,74100.0,kg/TJ,604887.1919999999,kg -77b3149d-1751-38c6-9a5b-bad7d573ae71,SESCO,I.3.1,Neuquén,AR-Q,annual,2020,gas oil combustion consumption by petrochemical industries,8.16312,TJ,CH4,3.9,kg/TJ,31.836167999999997,kg -77b3149d-1751-38c6-9a5b-bad7d573ae71,SESCO,I.3.1,Neuquén,AR-Q,annual,2020,gas oil combustion consumption by petrochemical industries,8.16312,TJ,N2O,3.9,kg/TJ,31.836167999999997,kg -f71bb661-69dd-358d-9725-7b9f3c3e02aa,SESCO,I.3.1,San Luis,AR-D,annual,2020,gas oil combustion consumption by petrochemical industries,1.33644,TJ,CO2,74100.0,kg/TJ,99030.20400000001,kg -5bcb3c7e-9e39-38eb-956b-e34a10235853,SESCO,I.3.1,San Luis,AR-D,annual,2020,gas oil combustion consumption by petrochemical industries,1.33644,TJ,CH4,3.9,kg/TJ,5.212116,kg -5bcb3c7e-9e39-38eb-956b-e34a10235853,SESCO,I.3.1,San Luis,AR-D,annual,2020,gas oil combustion consumption by petrochemical industries,1.33644,TJ,N2O,3.9,kg/TJ,5.212116,kg -73d1b5e5-c1d2-3689-8b82-2b15577453ab,SESCO,I.3.1,Santiago del Estero,AR-G,annual,2020,gas oil combustion consumption by petrochemical industries,6.321,TJ,CO2,74100.0,kg/TJ,468386.1,kg -0725473e-85bb-3ee1-8f88-62eb6802feb4,SESCO,I.3.1,Santiago del Estero,AR-G,annual,2020,gas oil combustion consumption by petrochemical industries,6.321,TJ,CH4,3.9,kg/TJ,24.651899999999998,kg -0725473e-85bb-3ee1-8f88-62eb6802feb4,SESCO,I.3.1,Santiago del Estero,AR-G,annual,2020,gas oil combustion consumption by petrochemical industries,6.321,TJ,N2O,3.9,kg/TJ,24.651899999999998,kg -be0402a7-03e7-3c24-8af4-d8e896d52740,SESCO,I.3.1,Tucuman,AR-T,annual,2020,gas oil combustion consumption by petrochemical industries,1.22808,TJ,CO2,74100.0,kg/TJ,91000.728,kg -c5b79ac7-864d-3607-bba4-753b51ca6039,SESCO,I.3.1,Tucuman,AR-T,annual,2020,gas oil combustion consumption by petrochemical industries,1.22808,TJ,CH4,3.9,kg/TJ,4.789512,kg -c5b79ac7-864d-3607-bba4-753b51ca6039,SESCO,I.3.1,Tucuman,AR-T,annual,2020,gas oil combustion consumption by petrochemical industries,1.22808,TJ,N2O,3.9,kg/TJ,4.789512,kg -0c89442c-4b2a-3872-81e2-d425ae55d24c,SESCO,II.2.1,Buenos Aires,AR-B,annual,2020,gasoline combustion consumption by railway transport,1.1518,TJ,CO2,69300.0,kg/TJ,79819.73999999999,kg -babe8889-c68c-3e81-9faa-04cf042fff33,SESCO,II.2.1,Buenos Aires,AR-B,annual,2020,gasoline combustion consumption by railway transport,1.1518,TJ,CH4,33.0,kg/TJ,38.0094,kg -eb503a98-0463-37b1-b67a-6fa9ba8a5e52,SESCO,II.2.1,Buenos Aires,AR-B,annual,2020,gasoline combustion consumption by railway transport,1.1518,TJ,N2O,3.2,kg/TJ,3.68576,kg -9f97c164-9f66-3b0c-a955-6e7ae54a048c,SESCO,II.2.1,Córdoba,AR-X,annual,2020,gasoline combustion consumption by railway transport,14.1317,TJ,CO2,69300.0,kg/TJ,979326.81,kg -1f74ea14-e4a2-3d73-b101-33a26cb9e361,SESCO,II.2.1,Córdoba,AR-X,annual,2020,gasoline combustion consumption by railway transport,14.1317,TJ,CH4,33.0,kg/TJ,466.34610000000004,kg -35106991-4907-373f-b5fc-2be78bc68ef4,SESCO,II.2.1,Córdoba,AR-X,annual,2020,gasoline combustion consumption by railway transport,14.1317,TJ,N2O,3.2,kg/TJ,45.22144,kg -b1fa1c56-bde4-39b8-ac3e-da8a16ea655c,SESCO,II.2.1,Buenos Aires,AR-B,annual,2020,gas oil combustion consumption by railway transport,188.9076,TJ,CO2,74100.0,kg/TJ,13998053.16,kg -1336cb9a-9226-3970-9c3e-8dd1216db45e,SESCO,II.2.1,Buenos Aires,AR-B,annual,2020,gas oil combustion consumption by railway transport,188.9076,TJ,CH4,3.9,kg/TJ,736.73964,kg -1336cb9a-9226-3970-9c3e-8dd1216db45e,SESCO,II.2.1,Buenos Aires,AR-B,annual,2020,gas oil combustion consumption by railway transport,188.9076,TJ,N2O,3.9,kg/TJ,736.73964,kg -02f87fde-ce24-38f5-966e-c6308862ee2d,SESCO,II.2.1,Misiones,AR-N,annual,2020,gas oil combustion consumption by railway transport,1.30032,TJ,CO2,74100.0,kg/TJ,96353.712,kg -93d63a17-5dee-3cfd-ac8d-47b9fff06a39,SESCO,II.2.1,Misiones,AR-N,annual,2020,gas oil combustion consumption by railway transport,1.30032,TJ,CH4,3.9,kg/TJ,5.071248,kg -93d63a17-5dee-3cfd-ac8d-47b9fff06a39,SESCO,II.2.1,Misiones,AR-N,annual,2020,gas oil combustion consumption by railway transport,1.30032,TJ,N2O,3.9,kg/TJ,5.071248,kg -8e707d1c-a392-3064-b75b-e5c4bad04d45,SESCO,II.1.1,Buenos Aires,AR-B,annual,2020,gasoline combustion consumption by freight transport,7.088,TJ,CO2,69300.0,kg/TJ,491198.4,kg -83109a72-f15b-37e8-841c-c1a25c10a1bb,SESCO,II.1.1,Buenos Aires,AR-B,annual,2020,gasoline combustion consumption by freight transport,7.088,TJ,CH4,33.0,kg/TJ,233.904,kg -d92943ab-817a-38f9-8555-6f3785e77711,SESCO,II.1.1,Buenos Aires,AR-B,annual,2020,gasoline combustion consumption by freight transport,7.088,TJ,N2O,3.2,kg/TJ,22.681600000000003,kg -cdcee7ca-84a6-345b-8467-fdf5c8484ec0,SESCO,II.1.1,Santa Fe,AR-S,annual,2020,gasoline combustion consumption by freight transport,4.7401,TJ,CO2,69300.0,kg/TJ,328488.93,kg -df8985f7-9c79-37fb-beca-468f3ef5dbfd,SESCO,II.1.1,Santa Fe,AR-S,annual,2020,gasoline combustion consumption by freight transport,4.7401,TJ,CH4,33.0,kg/TJ,156.4233,kg -14881176-4a2b-3181-8d40-172a2bc2b3b2,SESCO,II.1.1,Santa Fe,AR-S,annual,2020,gasoline combustion consumption by freight transport,4.7401,TJ,N2O,3.2,kg/TJ,15.168320000000001,kg -f9a06005-db9d-349a-9773-f25f900c4f31,SESCO,II.1.1,Buenos Aires,AR-B,annual,2020,gas oil combustion consumption by freight transport,75.27408,TJ,CO2,74100.0,kg/TJ,5577809.328,kg -bc849ce7-7356-3b79-a4db-33fd09df11d7,SESCO,II.1.1,Buenos Aires,AR-B,annual,2020,gas oil combustion consumption by freight transport,75.27408,TJ,CH4,3.9,kg/TJ,293.568912,kg -bc849ce7-7356-3b79-a4db-33fd09df11d7,SESCO,II.1.1,Buenos Aires,AR-B,annual,2020,gas oil combustion consumption by freight transport,75.27408,TJ,N2O,3.9,kg/TJ,293.568912,kg -647b1478-4fbd-3e8a-9dbc-65941134796b,SESCO,II.1.1,Capital Federal,AR-C,annual,2020,gas oil combustion consumption by freight transport,37.2036,TJ,CO2,74100.0,kg/TJ,2756786.7600000002,kg -1432df7c-8cb8-3269-ae30-044bc2c40e7f,SESCO,II.1.1,Capital Federal,AR-C,annual,2020,gas oil combustion consumption by freight transport,37.2036,TJ,CH4,3.9,kg/TJ,145.09404,kg -1432df7c-8cb8-3269-ae30-044bc2c40e7f,SESCO,II.1.1,Capital Federal,AR-C,annual,2020,gas oil combustion consumption by freight transport,37.2036,TJ,N2O,3.9,kg/TJ,145.09404,kg -db509f9d-8087-33f3-b3fb-c9a04dc75291,SESCO,II.1.1,Córdoba,AR-X,annual,2020,gas oil combustion consumption by freight transport,26.909399999999998,TJ,CO2,74100.0,kg/TJ,1993986.5399999998,kg -a0443a2c-6883-3e47-b42e-56dbc1c5b3ae,SESCO,II.1.1,Córdoba,AR-X,annual,2020,gas oil combustion consumption by freight transport,26.909399999999998,TJ,CH4,3.9,kg/TJ,104.94666,kg -a0443a2c-6883-3e47-b42e-56dbc1c5b3ae,SESCO,II.1.1,Córdoba,AR-X,annual,2020,gas oil combustion consumption by freight transport,26.909399999999998,TJ,N2O,3.9,kg/TJ,104.94666,kg -933c5de6-ec37-375f-997c-ab0e9f1975c0,SESCO,II.1.1,Capital Federal,AR-C,annual,2020,gas oil combustion consumption by freight transport,2.4200399999999997,TJ,CO2,74100.0,kg/TJ,179324.96399999998,kg -638c8236-87da-37f8-b086-09308e5df304,SESCO,II.1.1,Capital Federal,AR-C,annual,2020,gas oil combustion consumption by freight transport,2.4200399999999997,TJ,CH4,3.9,kg/TJ,9.438156,kg -638c8236-87da-37f8-b086-09308e5df304,SESCO,II.1.1,Capital Federal,AR-C,annual,2020,gas oil combustion consumption by freight transport,2.4200399999999997,TJ,N2O,3.9,kg/TJ,9.438156,kg -3dbb8bb0-e53e-372a-ae36-d05239d8ee92,SESCO,II.1.1,Córdoba,AR-X,annual,2020,gas oil combustion consumption by freight transport,0.93912,TJ,CO2,74100.0,kg/TJ,69588.792,kg -86c6cc29-b47e-3cb2-9d98-06d92eec75fa,SESCO,II.1.1,Córdoba,AR-X,annual,2020,gas oil combustion consumption by freight transport,0.93912,TJ,CH4,3.9,kg/TJ,3.662568,kg -86c6cc29-b47e-3cb2-9d98-06d92eec75fa,SESCO,II.1.1,Córdoba,AR-X,annual,2020,gas oil combustion consumption by freight transport,0.93912,TJ,N2O,3.9,kg/TJ,3.662568,kg -62afde42-3063-301e-85f1-4065eb644840,SESCO,II.1.1,Buenos Aires,AR-B,annual,2020,gasoline combustion consumption by public passenger transport,1.1961,TJ,CO2,69300.0,kg/TJ,82889.73,kg -786ebfd4-c51f-35df-9c5b-e8a871a86484,SESCO,II.1.1,Buenos Aires,AR-B,annual,2020,gasoline combustion consumption by public passenger transport,1.1961,TJ,CH4,33.0,kg/TJ,39.4713,kg -19a14e4d-1496-3233-be72-a0d23f54fa09,SESCO,II.1.1,Buenos Aires,AR-B,annual,2020,gasoline combustion consumption by public passenger transport,1.1961,TJ,N2O,3.2,kg/TJ,3.82752,kg -6ef2b1e3-1ff1-3092-8d33-613b9d44ccd9,SESCO,II.1.1,Buenos Aires,AR-B,annual,2020,gas oil combustion consumption by public passenger transport,3339.6552,TJ,CO2,74100.0,kg/TJ,247468450.32000002,kg -434b4c43-4ca8-37dd-b994-73fc05ee8fb3,SESCO,II.1.1,Buenos Aires,AR-B,annual,2020,gas oil combustion consumption by public passenger transport,3339.6552,TJ,CH4,3.9,kg/TJ,13024.65528,kg -434b4c43-4ca8-37dd-b994-73fc05ee8fb3,SESCO,II.1.1,Buenos Aires,AR-B,annual,2020,gas oil combustion consumption by public passenger transport,3339.6552,TJ,N2O,3.9,kg/TJ,13024.65528,kg -c1cb8f59-ead4-3cfa-891a-7f74226ff227,SESCO,II.1.1,Capital Federal,AR-C,annual,2020,gas oil combustion consumption by public passenger transport,268.47996,TJ,CO2,74100.0,kg/TJ,19894365.036000002,kg -76dfb461-a691-3dc2-9052-347cd9d3e985,SESCO,II.1.1,Capital Federal,AR-C,annual,2020,gas oil combustion consumption by public passenger transport,268.47996,TJ,CH4,3.9,kg/TJ,1047.071844,kg -76dfb461-a691-3dc2-9052-347cd9d3e985,SESCO,II.1.1,Capital Federal,AR-C,annual,2020,gas oil combustion consumption by public passenger transport,268.47996,TJ,N2O,3.9,kg/TJ,1047.071844,kg -8cef939a-dea9-3e05-a406-2baeb2f02176,SESCO,II.1.1,Buenos Aires,AR-B,annual,2020,gas oil combustion consumption by public passenger transport,1078.50708,TJ,CO2,74100.0,kg/TJ,79917374.628,kg -108a1459-f034-3acd-aea6-7824209ff64e,SESCO,II.1.1,Buenos Aires,AR-B,annual,2020,gas oil combustion consumption by public passenger transport,1078.50708,TJ,CH4,3.9,kg/TJ,4206.177612,kg -108a1459-f034-3acd-aea6-7824209ff64e,SESCO,II.1.1,Buenos Aires,AR-B,annual,2020,gas oil combustion consumption by public passenger transport,1078.50708,TJ,N2O,3.9,kg/TJ,4206.177612,kg -509e850f-160d-3629-abbd-ecf81b50e018,SESCO,II.1.1,Capital Federal,AR-C,annual,2020,gas oil combustion consumption by public passenger transport,70.18116,TJ,CO2,74100.0,kg/TJ,5200423.956,kg -f6f3897e-833c-3f3a-9694-2d3c3dec5860,SESCO,II.1.1,Capital Federal,AR-C,annual,2020,gas oil combustion consumption by public passenger transport,70.18116,TJ,CH4,3.9,kg/TJ,273.706524,kg -f6f3897e-833c-3f3a-9694-2d3c3dec5860,SESCO,II.1.1,Capital Federal,AR-C,annual,2020,gas oil combustion consumption by public passenger transport,70.18116,TJ,N2O,3.9,kg/TJ,273.706524,kg -d3e3858d-c1b4-33dd-9375-21d2e90136b2,SESCO,II.1.1,Corrientes,AR-W,annual,2020,gas oil combustion consumption by public passenger transport,101.89452,TJ,CO2,74100.0,kg/TJ,7550383.932,kg -93309b64-66c8-3a3c-a4a3-61c78c03b23b,SESCO,II.1.1,Corrientes,AR-W,annual,2020,gas oil combustion consumption by public passenger transport,101.89452,TJ,CH4,3.9,kg/TJ,397.388628,kg -93309b64-66c8-3a3c-a4a3-61c78c03b23b,SESCO,II.1.1,Corrientes,AR-W,annual,2020,gas oil combustion consumption by public passenger transport,101.89452,TJ,N2O,3.9,kg/TJ,397.388628,kg -38f7cfa7-a199-3db9-ba70-b35cae833510,SESCO,II.5.1,Buenos Aires,AR-B,annual,2020,gas oil combustion consumption by agriculture machines,2871.37500384,TJ,CO2,74100.0,kg/TJ,212768887.784544,kg -35adc964-5669-342c-a3e8-4fe7b5646350,SESCO,II.5.1,Buenos Aires,AR-B,annual,2020,gas oil combustion consumption by agriculture machines,2871.37500384,TJ,CH4,3.9,kg/TJ,11198.362514976,kg -35adc964-5669-342c-a3e8-4fe7b5646350,SESCO,II.5.1,Buenos Aires,AR-B,annual,2020,gas oil combustion consumption by agriculture machines,2871.37500384,TJ,N2O,3.9,kg/TJ,11198.362514976,kg -8ebf6c4b-2059-3e3d-9136-91f3cdd704d4,SESCO,II.5.1,Capital Federal,AR-C,annual,2020,gas oil combustion consumption by agriculture machines,462.5476632,TJ,CO2,74100.0,kg/TJ,34274781.84312,kg -2d38d78b-0e9d-3d27-8860-6dc4edd38a12,SESCO,II.5.1,Capital Federal,AR-C,annual,2020,gas oil combustion consumption by agriculture machines,462.5476632,TJ,CH4,3.9,kg/TJ,1803.93588648,kg -2d38d78b-0e9d-3d27-8860-6dc4edd38a12,SESCO,II.5.1,Capital Federal,AR-C,annual,2020,gas oil combustion consumption by agriculture machines,462.5476632,TJ,N2O,3.9,kg/TJ,1803.93588648,kg -9fd6daad-bf4e-319d-b1f1-9ebf4097d3cf,SESCO,II.5.1,Chaco,AR-H,annual,2020,gas oil combustion consumption by agriculture machines,14.13939072,TJ,CO2,74100.0,kg/TJ,1047728.852352,kg -bab9e774-f34e-3a35-bca0-658182ec00e0,SESCO,II.5.1,Chaco,AR-H,annual,2020,gas oil combustion consumption by agriculture machines,14.13939072,TJ,CH4,3.9,kg/TJ,55.143623808,kg -bab9e774-f34e-3a35-bca0-658182ec00e0,SESCO,II.5.1,Chaco,AR-H,annual,2020,gas oil combustion consumption by agriculture machines,14.13939072,TJ,N2O,3.9,kg/TJ,55.143623808,kg -5786b3bd-39eb-3c87-ac2d-f6fff704db32,SESCO,II.5.1,Corrientes,AR-W,annual,2020,gas oil combustion consumption by agriculture machines,8.96530908,TJ,CO2,74100.0,kg/TJ,664329.402828,kg -f538cf75-46bc-3272-b17f-71ccb6e08c3e,SESCO,II.5.1,Corrientes,AR-W,annual,2020,gas oil combustion consumption by agriculture machines,8.96530908,TJ,CH4,3.9,kg/TJ,34.964705412,kg -f538cf75-46bc-3272-b17f-71ccb6e08c3e,SESCO,II.5.1,Corrientes,AR-W,annual,2020,gas oil combustion consumption by agriculture machines,8.96530908,TJ,N2O,3.9,kg/TJ,34.964705412,kg -a43a7114-c3bc-3146-8787-de08b87cdbed,SESCO,II.5.1,Córdoba,AR-X,annual,2020,gas oil combustion consumption by agriculture machines,1140.8600246400001,TJ,CO2,74100.0,kg/TJ,84537727.825824,kg -ccc0c955-040a-387e-a351-7a13fd94ae6d,SESCO,II.5.1,Córdoba,AR-X,annual,2020,gas oil combustion consumption by agriculture machines,1140.8600246400001,TJ,CH4,3.9,kg/TJ,4449.354096096,kg -ccc0c955-040a-387e-a351-7a13fd94ae6d,SESCO,II.5.1,Córdoba,AR-X,annual,2020,gas oil combustion consumption by agriculture machines,1140.8600246400001,TJ,N2O,3.9,kg/TJ,4449.354096096,kg -a1eb88e4-cd42-3d80-bad5-01449d89f449,SESCO,II.5.1,Entre Rios,AR-E,annual,2020,gas oil combustion consumption by agriculture machines,664.05478608,TJ,CO2,74100.0,kg/TJ,49206459.648528,kg -6933fd66-192b-3fbd-b143-6d01aa5ff234,SESCO,II.5.1,Entre Rios,AR-E,annual,2020,gas oil combustion consumption by agriculture machines,664.05478608,TJ,CH4,3.9,kg/TJ,2589.813665712,kg -6933fd66-192b-3fbd-b143-6d01aa5ff234,SESCO,II.5.1,Entre Rios,AR-E,annual,2020,gas oil combustion consumption by agriculture machines,664.05478608,TJ,N2O,3.9,kg/TJ,2589.813665712,kg -88b21c9d-d9f2-398f-b743-bc087a88c1ef,SESCO,II.5.1,Jujuy,AR-Y,annual,2020,gas oil combustion consumption by agriculture machines,22.556109239999998,TJ,CO2,74100.0,kg/TJ,1671407.6946839998,kg -79dcf9ab-04e3-393f-878d-e513e339c443,SESCO,II.5.1,Jujuy,AR-Y,annual,2020,gas oil combustion consumption by agriculture machines,22.556109239999998,TJ,CH4,3.9,kg/TJ,87.968826036,kg -79dcf9ab-04e3-393f-878d-e513e339c443,SESCO,II.5.1,Jujuy,AR-Y,annual,2020,gas oil combustion consumption by agriculture machines,22.556109239999998,TJ,N2O,3.9,kg/TJ,87.968826036,kg -7e58628a-9a75-3d3c-9d7e-1d89e585aa86,SESCO,II.5.1,La Pampa,AR-L,annual,2020,gas oil combustion consumption by agriculture machines,187.75064028,TJ,CO2,74100.0,kg/TJ,13912322.444748,kg -31a330c5-c3e6-3c49-9ece-8997b67ddf29,SESCO,II.5.1,La Pampa,AR-L,annual,2020,gas oil combustion consumption by agriculture machines,187.75064028,TJ,CH4,3.9,kg/TJ,732.227497092,kg -31a330c5-c3e6-3c49-9ece-8997b67ddf29,SESCO,II.5.1,La Pampa,AR-L,annual,2020,gas oil combustion consumption by agriculture machines,187.75064028,TJ,N2O,3.9,kg/TJ,732.227497092,kg -3cf9bab5-7678-397e-bc5b-34354b4846ef,SESCO,II.5.1,Mendoza,AR-M,annual,2020,gas oil combustion consumption by agriculture machines,1.1418254399999999,TJ,CO2,74100.0,kg/TJ,84609.26510399999,kg -90507691-9a84-37fb-ae14-b13fdf01742d,SESCO,II.5.1,Mendoza,AR-M,annual,2020,gas oil combustion consumption by agriculture machines,1.1418254399999999,TJ,CH4,3.9,kg/TJ,4.453119215999999,kg -90507691-9a84-37fb-ae14-b13fdf01742d,SESCO,II.5.1,Mendoza,AR-M,annual,2020,gas oil combustion consumption by agriculture machines,1.1418254399999999,TJ,N2O,3.9,kg/TJ,4.453119215999999,kg -324c36c7-d9b6-328d-8d01-4f9e61bb5364,SESCO,II.5.1,Neuquén,AR-Q,annual,2020,gas oil combustion consumption by agriculture machines,68.09808348,TJ,CO2,74100.0,kg/TJ,5046067.985868,kg -a7af5720-72d9-3f77-8056-e580ceec0b52,SESCO,II.5.1,Neuquén,AR-Q,annual,2020,gas oil combustion consumption by agriculture machines,68.09808348,TJ,CH4,3.9,kg/TJ,265.582525572,kg -a7af5720-72d9-3f77-8056-e580ceec0b52,SESCO,II.5.1,Neuquén,AR-Q,annual,2020,gas oil combustion consumption by agriculture machines,68.09808348,TJ,N2O,3.9,kg/TJ,265.582525572,kg -34c1d195-7eda-3368-a4af-a7631f6995e3,SESCO,II.5.1,Rio Negro,AR-R,annual,2020,gas oil combustion consumption by agriculture machines,124.15639572,TJ,CO2,74100.0,kg/TJ,9199988.922852,kg -45da6613-fb02-3efb-9db3-469703ce19c5,SESCO,II.5.1,Rio Negro,AR-R,annual,2020,gas oil combustion consumption by agriculture machines,124.15639572,TJ,CH4,3.9,kg/TJ,484.209943308,kg -45da6613-fb02-3efb-9db3-469703ce19c5,SESCO,II.5.1,Rio Negro,AR-R,annual,2020,gas oil combustion consumption by agriculture machines,124.15639572,TJ,N2O,3.9,kg/TJ,484.209943308,kg -cbdafa0d-74f4-37ba-b77d-eca6906b4106,SESCO,II.5.1,San Juan,AR-J,annual,2020,gas oil combustion consumption by agriculture machines,1.28489676,TJ,CO2,74100.0,kg/TJ,95210.849916,kg -6c029760-2766-3d51-817b-1b7a4fe31011,SESCO,II.5.1,San Juan,AR-J,annual,2020,gas oil combustion consumption by agriculture machines,1.28489676,TJ,CH4,3.9,kg/TJ,5.011097364,kg -6c029760-2766-3d51-817b-1b7a4fe31011,SESCO,II.5.1,San Juan,AR-J,annual,2020,gas oil combustion consumption by agriculture machines,1.28489676,TJ,N2O,3.9,kg/TJ,5.011097364,kg -cba53c7a-2555-3cea-81b6-2b2b9a4a0384,SESCO,II.5.1,San Luis,AR-D,annual,2020,gas oil combustion consumption by agriculture machines,25.74070128,TJ,CO2,74100.0,kg/TJ,1907385.964848,kg -dea82674-5752-3a27-83a2-a7953a46609e,SESCO,II.5.1,San Luis,AR-D,annual,2020,gas oil combustion consumption by agriculture machines,25.74070128,TJ,CH4,3.9,kg/TJ,100.388734992,kg -dea82674-5752-3a27-83a2-a7953a46609e,SESCO,II.5.1,San Luis,AR-D,annual,2020,gas oil combustion consumption by agriculture machines,25.74070128,TJ,N2O,3.9,kg/TJ,100.388734992,kg -1354ab28-f10c-39e7-b041-8f6a922ea40b,SESCO,II.5.1,Santa Fe,AR-S,annual,2020,gas oil combustion consumption by agriculture machines,2519.18871372,TJ,CO2,74100.0,kg/TJ,186671883.686652,kg -eae57c71-14f7-3f33-949e-2462a5f618ba,SESCO,II.5.1,Santa Fe,AR-S,annual,2020,gas oil combustion consumption by agriculture machines,2519.18871372,TJ,CH4,3.9,kg/TJ,9824.835983508001,kg -eae57c71-14f7-3f33-949e-2462a5f618ba,SESCO,II.5.1,Santa Fe,AR-S,annual,2020,gas oil combustion consumption by agriculture machines,2519.18871372,TJ,N2O,3.9,kg/TJ,9824.835983508001,kg -0306b232-2751-3c79-8972-09b2f65844e8,SESCO,II.5.1,Santiago del Estero,AR-G,annual,2020,gas oil combustion consumption by agriculture machines,353.4291432,TJ,CO2,74100.0,kg/TJ,26189099.51112,kg -03275f94-0b5d-3fc3-8c61-87f86a8b809d,SESCO,II.5.1,Santiago del Estero,AR-G,annual,2020,gas oil combustion consumption by agriculture machines,353.4291432,TJ,CH4,3.9,kg/TJ,1378.37365848,kg -03275f94-0b5d-3fc3-8c61-87f86a8b809d,SESCO,II.5.1,Santiago del Estero,AR-G,annual,2020,gas oil combustion consumption by agriculture machines,353.4291432,TJ,N2O,3.9,kg/TJ,1378.37365848,kg -387e22fc-bd43-381a-9ca4-4e3eb035833f,SESCO,II.5.1,Tucuman,AR-T,annual,2020,gas oil combustion consumption by agriculture machines,94.76909147999999,TJ,CO2,74100.0,kg/TJ,7022389.678667999,kg -5c05f25e-dcda-3a95-8f6c-f6f06be7d7bd,SESCO,II.5.1,Tucuman,AR-T,annual,2020,gas oil combustion consumption by agriculture machines,94.76909147999999,TJ,CH4,3.9,kg/TJ,369.59945677199994,kg -5c05f25e-dcda-3a95-8f6c-f6f06be7d7bd,SESCO,II.5.1,Tucuman,AR-T,annual,2020,gas oil combustion consumption by agriculture machines,94.76909147999999,TJ,N2O,3.9,kg/TJ,369.59945677199994,kg -703bb5fd-c012-372c-9d9e-8e0abfda950f,SESCO,II.5.1,Buenos Aires,AR-B,annual,2020,gas oil combustion consumption by agriculture machines,250.87879235999998,TJ,CO2,74100.0,kg/TJ,18590118.513876,kg -335771a2-27ac-3d8e-b7ea-1ae824567291,SESCO,II.5.1,Buenos Aires,AR-B,annual,2020,gas oil combustion consumption by agriculture machines,250.87879235999998,TJ,CH4,3.9,kg/TJ,978.4272902039999,kg -335771a2-27ac-3d8e-b7ea-1ae824567291,SESCO,II.5.1,Buenos Aires,AR-B,annual,2020,gas oil combustion consumption by agriculture machines,250.87879235999998,TJ,N2O,3.9,kg/TJ,978.4272902039999,kg -78d6f2ee-02f3-32be-9959-d35444ba7380,SESCO,II.5.1,Capital Federal,AR-C,annual,2020,gas oil combustion consumption by agriculture machines,45.21400464,TJ,CO2,74100.0,kg/TJ,3350357.743824,kg -6f209643-3e55-3874-b58e-95fe9e4b51d9,SESCO,II.5.1,Capital Federal,AR-C,annual,2020,gas oil combustion consumption by agriculture machines,45.21400464,TJ,CH4,3.9,kg/TJ,176.33461809599999,kg -6f209643-3e55-3874-b58e-95fe9e4b51d9,SESCO,II.5.1,Capital Federal,AR-C,annual,2020,gas oil combustion consumption by agriculture machines,45.21400464,TJ,N2O,3.9,kg/TJ,176.33461809599999,kg -fa8350a2-cd7e-3956-8420-ed9ab7fbc108,SESCO,II.5.1,Chaco,AR-H,annual,2020,gas oil combustion consumption by agriculture machines,3.9029465999999995,TJ,CO2,74100.0,kg/TJ,289208.34306,kg -291e1e24-9df6-343a-acb3-9f57dafd339b,SESCO,II.5.1,Chaco,AR-H,annual,2020,gas oil combustion consumption by agriculture machines,3.9029465999999995,TJ,CH4,3.9,kg/TJ,15.221491739999998,kg -291e1e24-9df6-343a-acb3-9f57dafd339b,SESCO,II.5.1,Chaco,AR-H,annual,2020,gas oil combustion consumption by agriculture machines,3.9029465999999995,TJ,N2O,3.9,kg/TJ,15.221491739999998,kg -7934a7b0-dce8-332d-ae97-ae3d4e554fcf,SESCO,II.5.1,Corrientes,AR-W,annual,2020,gas oil combustion consumption by agriculture machines,0.17948028000000002,TJ,CO2,74100.0,kg/TJ,13299.488748000002,kg -113a0f65-2149-3058-af23-0d9bc34a39c9,SESCO,II.5.1,Corrientes,AR-W,annual,2020,gas oil combustion consumption by agriculture machines,0.17948028000000002,TJ,CH4,3.9,kg/TJ,0.699973092,kg -113a0f65-2149-3058-af23-0d9bc34a39c9,SESCO,II.5.1,Corrientes,AR-W,annual,2020,gas oil combustion consumption by agriculture machines,0.17948028000000002,TJ,N2O,3.9,kg/TJ,0.699973092,kg -eea2451a-f315-3f26-86f0-ab8950da21f5,SESCO,II.5.1,Córdoba,AR-X,annual,2020,gas oil combustion consumption by agriculture machines,89.39010108000001,TJ,CO2,74100.0,kg/TJ,6623806.490028,kg -3dd10052-9618-3556-a52b-cd2933a147d3,SESCO,II.5.1,Córdoba,AR-X,annual,2020,gas oil combustion consumption by agriculture machines,89.39010108000001,TJ,CH4,3.9,kg/TJ,348.62139421200004,kg -3dd10052-9618-3556-a52b-cd2933a147d3,SESCO,II.5.1,Córdoba,AR-X,annual,2020,gas oil combustion consumption by agriculture machines,89.39010108000001,TJ,N2O,3.9,kg/TJ,348.62139421200004,kg -1a859b8e-025d-3b1c-9228-63eb6867f10c,SESCO,II.5.1,Entre Rios,AR-E,annual,2020,gas oil combustion consumption by agriculture machines,114.33923256,TJ,CO2,74100.0,kg/TJ,8472537.132696,kg -be91846c-eb13-3e1e-93af-0e1fcaf83a3b,SESCO,II.5.1,Entre Rios,AR-E,annual,2020,gas oil combustion consumption by agriculture machines,114.33923256,TJ,CH4,3.9,kg/TJ,445.923006984,kg -be91846c-eb13-3e1e-93af-0e1fcaf83a3b,SESCO,II.5.1,Entre Rios,AR-E,annual,2020,gas oil combustion consumption by agriculture machines,114.33923256,TJ,N2O,3.9,kg/TJ,445.923006984,kg -3b73bd65-12c6-316c-8617-e4043ddaabeb,SESCO,II.5.1,Jujuy,AR-Y,annual,2020,gas oil combustion consumption by agriculture machines,49.900574639999995,TJ,CO2,74100.0,kg/TJ,3697632.580824,kg -ee244a97-0327-3ffb-b2f4-8ca0ea765cd4,SESCO,II.5.1,Jujuy,AR-Y,annual,2020,gas oil combustion consumption by agriculture machines,49.900574639999995,TJ,CH4,3.9,kg/TJ,194.61224109599996,kg -ee244a97-0327-3ffb-b2f4-8ca0ea765cd4,SESCO,II.5.1,Jujuy,AR-Y,annual,2020,gas oil combustion consumption by agriculture machines,49.900574639999995,TJ,N2O,3.9,kg/TJ,194.61224109599996,kg -c068fa16-075c-350d-943d-848485c30da9,SESCO,II.5.1,La Pampa,AR-L,annual,2020,gas oil combustion consumption by agriculture machines,10.93800288,TJ,CO2,74100.0,kg/TJ,810506.0134080001,kg -17e6aef7-d302-3cb2-86d3-51543561fe50,SESCO,II.5.1,La Pampa,AR-L,annual,2020,gas oil combustion consumption by agriculture machines,10.93800288,TJ,CH4,3.9,kg/TJ,42.658211232,kg -17e6aef7-d302-3cb2-86d3-51543561fe50,SESCO,II.5.1,La Pampa,AR-L,annual,2020,gas oil combustion consumption by agriculture machines,10.93800288,TJ,N2O,3.9,kg/TJ,42.658211232,kg -cf5424de-5a45-31ee-8acf-bd845a5a47b8,SESCO,II.5.1,Mendoza,AR-M,annual,2020,gas oil combustion consumption by agriculture machines,0.25291224,TJ,CO2,74100.0,kg/TJ,18740.796984,kg -e62cdb16-eb87-317c-972f-2e164edf17e5,SESCO,II.5.1,Mendoza,AR-M,annual,2020,gas oil combustion consumption by agriculture machines,0.25291224,TJ,CH4,3.9,kg/TJ,0.986357736,kg -e62cdb16-eb87-317c-972f-2e164edf17e5,SESCO,II.5.1,Mendoza,AR-M,annual,2020,gas oil combustion consumption by agriculture machines,0.25291224,TJ,N2O,3.9,kg/TJ,0.986357736,kg -deed7f5a-158f-3b03-8fb5-3408279f5f4d,SESCO,II.5.1,Neuquén,AR-Q,annual,2020,gas oil combustion consumption by agriculture machines,34.22796216,TJ,CO2,74100.0,kg/TJ,2536291.996056,kg -329733a2-6bef-3819-979e-2f85ac6b0141,SESCO,II.5.1,Neuquén,AR-Q,annual,2020,gas oil combustion consumption by agriculture machines,34.22796216,TJ,CH4,3.9,kg/TJ,133.489052424,kg -329733a2-6bef-3819-979e-2f85ac6b0141,SESCO,II.5.1,Neuquén,AR-Q,annual,2020,gas oil combustion consumption by agriculture machines,34.22796216,TJ,N2O,3.9,kg/TJ,133.489052424,kg -d7b16ed7-ebb1-3f39-bed9-c735dbe4cfe5,SESCO,II.5.1,Rio Negro,AR-R,annual,2020,gas oil combustion consumption by agriculture machines,48.73819692,TJ,CO2,74100.0,kg/TJ,3611500.391772,kg -fc570e8a-690e-375f-a2b8-b70ca0e865e7,SESCO,II.5.1,Rio Negro,AR-R,annual,2020,gas oil combustion consumption by agriculture machines,48.73819692,TJ,CH4,3.9,kg/TJ,190.078967988,kg -fc570e8a-690e-375f-a2b8-b70ca0e865e7,SESCO,II.5.1,Rio Negro,AR-R,annual,2020,gas oil combustion consumption by agriculture machines,48.73819692,TJ,N2O,3.9,kg/TJ,190.078967988,kg -90a2b299-27ec-3097-b9c7-d0f6c43c997c,SESCO,II.5.1,San Luis,AR-D,annual,2020,gas oil combustion consumption by agriculture machines,13.816983599999999,TJ,CO2,74100.0,kg/TJ,1023838.4847599999,kg -d49544f2-2e1a-3ff7-bf6c-b5cc2726175b,SESCO,II.5.1,San Luis,AR-D,annual,2020,gas oil combustion consumption by agriculture machines,13.816983599999999,TJ,CH4,3.9,kg/TJ,53.88623603999999,kg -d49544f2-2e1a-3ff7-bf6c-b5cc2726175b,SESCO,II.5.1,San Luis,AR-D,annual,2020,gas oil combustion consumption by agriculture machines,13.816983599999999,TJ,N2O,3.9,kg/TJ,53.88623603999999,kg -4586fb09-e1f7-3a83-b165-14b8db3ed390,SESCO,II.5.1,Santa Fe,AR-S,annual,2020,gas oil combustion consumption by agriculture machines,179.15259935999998,TJ,CO2,74100.0,kg/TJ,13275207.612575999,kg -cbcf7730-cb84-3b8d-b684-c663b192589b,SESCO,II.5.1,Santa Fe,AR-S,annual,2020,gas oil combustion consumption by agriculture machines,179.15259935999998,TJ,CH4,3.9,kg/TJ,698.695137504,kg -cbcf7730-cb84-3b8d-b684-c663b192589b,SESCO,II.5.1,Santa Fe,AR-S,annual,2020,gas oil combustion consumption by agriculture machines,179.15259935999998,TJ,N2O,3.9,kg/TJ,698.695137504,kg -2aa3bbeb-f767-333d-aed5-a43002a703a9,SESCO,II.5.1,Santiago del Estero,AR-G,annual,2020,gas oil combustion consumption by agriculture machines,20.880538559999998,TJ,CO2,74100.0,kg/TJ,1547247.9072959998,kg -7b0e1d3d-d0af-33e1-a423-aa9693392123,SESCO,II.5.1,Santiago del Estero,AR-G,annual,2020,gas oil combustion consumption by agriculture machines,20.880538559999998,TJ,CH4,3.9,kg/TJ,81.43410038399999,kg -7b0e1d3d-d0af-33e1-a423-aa9693392123,SESCO,II.5.1,Santiago del Estero,AR-G,annual,2020,gas oil combustion consumption by agriculture machines,20.880538559999998,TJ,N2O,3.9,kg/TJ,81.43410038399999,kg -270e5243-53a5-3ed8-8c48-c8d75164c238,SESCO,II.5.1,Tucuman,AR-T,annual,2020,gas oil combustion consumption by agriculture machines,20.294816639999997,TJ,CO2,74100.0,kg/TJ,1503845.9130239997,kg -e24093f4-5e1f-3b63-a60d-466a0fd53fce,SESCO,II.5.1,Tucuman,AR-T,annual,2020,gas oil combustion consumption by agriculture machines,20.294816639999997,TJ,CH4,3.9,kg/TJ,79.14978489599999,kg -e24093f4-5e1f-3b63-a60d-466a0fd53fce,SESCO,II.5.1,Tucuman,AR-T,annual,2020,gas oil combustion consumption by agriculture machines,20.294816639999997,TJ,N2O,3.9,kg/TJ,79.14978489599999,kg -5cdff0cf-e044-36f1-b109-31eb7397d89f,SESCO,II.1.1,Buenos Aires,AR-B,annual,2020,gas oil combustion consumption by to the public,5395.08045132,TJ,CO2,74100.0,kg/TJ,399775461.442812,kg -1364bb48-0e5f-3726-a8fc-e735c928bfbc,SESCO,II.1.1,Buenos Aires,AR-B,annual,2020,gas oil combustion consumption by to the public,5395.08045132,TJ,CH4,3.9,kg/TJ,21040.813760148,kg -1364bb48-0e5f-3726-a8fc-e735c928bfbc,SESCO,II.1.1,Buenos Aires,AR-B,annual,2020,gas oil combustion consumption by to the public,5395.08045132,TJ,N2O,3.9,kg/TJ,21040.813760148,kg -0af827ea-ccd1-3a21-9268-2ddbebaab579,SESCO,II.1.1,Capital Federal,AR-C,annual,2020,gas oil combustion consumption by to the public,281.32491827999996,TJ,CO2,74100.0,kg/TJ,20846176.444547996,kg -8fb48772-a26f-38a7-a72e-ef94a302e94f,SESCO,II.1.1,Capital Federal,AR-C,annual,2020,gas oil combustion consumption by to the public,281.32491827999996,TJ,CH4,3.9,kg/TJ,1097.167181292,kg -8fb48772-a26f-38a7-a72e-ef94a302e94f,SESCO,II.1.1,Capital Federal,AR-C,annual,2020,gas oil combustion consumption by to the public,281.32491827999996,TJ,N2O,3.9,kg/TJ,1097.167181292,kg -09b7ce84-cde5-3fae-910d-22e081a56a49,SESCO,II.1.1,Catamarca,AR-K,annual,2020,gas oil combustion consumption by to the public,6.2908398,TJ,CO2,74100.0,kg/TJ,466151.22917999997,kg -9507f18a-7941-3e07-9033-35db1ee28aea,SESCO,II.1.1,Catamarca,AR-K,annual,2020,gas oil combustion consumption by to the public,6.2908398,TJ,CH4,3.9,kg/TJ,24.534275219999998,kg -9507f18a-7941-3e07-9033-35db1ee28aea,SESCO,II.1.1,Catamarca,AR-K,annual,2020,gas oil combustion consumption by to the public,6.2908398,TJ,N2O,3.9,kg/TJ,24.534275219999998,kg -6e6ad18d-f6a4-3f2a-b98a-ae625a9bd379,SESCO,II.1.1,Chaco,AR-H,annual,2020,gas oil combustion consumption by to the public,38.466608040000004,TJ,CO2,74100.0,kg/TJ,2850375.6557640005,kg -b1a8bacb-9216-32e7-a9ce-4570e3f6a595,SESCO,II.1.1,Chaco,AR-H,annual,2020,gas oil combustion consumption by to the public,38.466608040000004,TJ,CH4,3.9,kg/TJ,150.019771356,kg -b1a8bacb-9216-32e7-a9ce-4570e3f6a595,SESCO,II.1.1,Chaco,AR-H,annual,2020,gas oil combustion consumption by to the public,38.466608040000004,TJ,N2O,3.9,kg/TJ,150.019771356,kg -f03ad794-e051-3164-8550-0e8be60facfe,SESCO,II.1.1,Chubut,AR-U,annual,2020,gas oil combustion consumption by to the public,172.63088052,TJ,CO2,74100.0,kg/TJ,12791948.246532,kg -7430dab2-39a8-37fd-ab3a-938498b9f454,SESCO,II.1.1,Chubut,AR-U,annual,2020,gas oil combustion consumption by to the public,172.63088052,TJ,CH4,3.9,kg/TJ,673.260434028,kg -7430dab2-39a8-37fd-ab3a-938498b9f454,SESCO,II.1.1,Chubut,AR-U,annual,2020,gas oil combustion consumption by to the public,172.63088052,TJ,N2O,3.9,kg/TJ,673.260434028,kg -f8e477fc-8673-3711-a09a-4dc8dc5400fc,SESCO,II.1.1,Corrientes,AR-W,annual,2020,gas oil combustion consumption by to the public,388.39911852,TJ,CO2,74100.0,kg/TJ,28780374.682332,kg -fd3cd1b9-c135-363d-914b-38caaadb8071,SESCO,II.1.1,Corrientes,AR-W,annual,2020,gas oil combustion consumption by to the public,388.39911852,TJ,CH4,3.9,kg/TJ,1514.756562228,kg -fd3cd1b9-c135-363d-914b-38caaadb8071,SESCO,II.1.1,Corrientes,AR-W,annual,2020,gas oil combustion consumption by to the public,388.39911852,TJ,N2O,3.9,kg/TJ,1514.756562228,kg -09a59dad-a05c-3dcc-9c99-9f398061f5e4,SESCO,II.1.1,Córdoba,AR-X,annual,2020,gas oil combustion consumption by to the public,838.60909272,TJ,CO2,74100.0,kg/TJ,62140933.770552,kg -5a5988f8-6f91-3767-94e1-2aa3781142f9,SESCO,II.1.1,Córdoba,AR-X,annual,2020,gas oil combustion consumption by to the public,838.60909272,TJ,CH4,3.9,kg/TJ,3270.575461608,kg -5a5988f8-6f91-3767-94e1-2aa3781142f9,SESCO,II.1.1,Córdoba,AR-X,annual,2020,gas oil combustion consumption by to the public,838.60909272,TJ,N2O,3.9,kg/TJ,3270.575461608,kg -56336670-e4ed-3174-a218-c666efec7908,SESCO,II.1.1,Entre Rios,AR-E,annual,2020,gas oil combustion consumption by to the public,872.5216550399999,TJ,CO2,74100.0,kg/TJ,64653854.638464,kg -4172cd98-3553-39a8-845b-6d97a26c8c4a,SESCO,II.1.1,Entre Rios,AR-E,annual,2020,gas oil combustion consumption by to the public,872.5216550399999,TJ,CH4,3.9,kg/TJ,3402.8344546559997,kg -4172cd98-3553-39a8-845b-6d97a26c8c4a,SESCO,II.1.1,Entre Rios,AR-E,annual,2020,gas oil combustion consumption by to the public,872.5216550399999,TJ,N2O,3.9,kg/TJ,3402.8344546559997,kg -72df585c-008d-324e-95c2-773ed5116835,SESCO,II.1.1,Formosa,AR-P,annual,2020,gas oil combustion consumption by to the public,14.39587884,TJ,CO2,74100.0,kg/TJ,1066734.622044,kg -eefe9b46-750c-3905-bff7-8de29c547e27,SESCO,II.1.1,Formosa,AR-P,annual,2020,gas oil combustion consumption by to the public,14.39587884,TJ,CH4,3.9,kg/TJ,56.143927476,kg -eefe9b46-750c-3905-bff7-8de29c547e27,SESCO,II.1.1,Formosa,AR-P,annual,2020,gas oil combustion consumption by to the public,14.39587884,TJ,N2O,3.9,kg/TJ,56.143927476,kg -5cfb037d-2dd3-380b-b7e7-d539a4a136df,SESCO,II.1.1,Jujuy,AR-Y,annual,2020,gas oil combustion consumption by to the public,35.32550448,TJ,CO2,74100.0,kg/TJ,2617619.881968,kg -c51122ad-f2a5-3419-8ede-9ea6d4d43bc8,SESCO,II.1.1,Jujuy,AR-Y,annual,2020,gas oil combustion consumption by to the public,35.32550448,TJ,CH4,3.9,kg/TJ,137.769467472,kg -c51122ad-f2a5-3419-8ede-9ea6d4d43bc8,SESCO,II.1.1,Jujuy,AR-Y,annual,2020,gas oil combustion consumption by to the public,35.32550448,TJ,N2O,3.9,kg/TJ,137.769467472,kg -dc180654-a102-368c-b128-d0a29b5f1621,SESCO,II.1.1,La Pampa,AR-L,annual,2020,gas oil combustion consumption by to the public,943.0346856,TJ,CO2,74100.0,kg/TJ,69878870.20296,kg -4ab4fa9e-a5eb-3efd-b31e-d676996cc4b6,SESCO,II.1.1,La Pampa,AR-L,annual,2020,gas oil combustion consumption by to the public,943.0346856,TJ,CH4,3.9,kg/TJ,3677.83527384,kg -4ab4fa9e-a5eb-3efd-b31e-d676996cc4b6,SESCO,II.1.1,La Pampa,AR-L,annual,2020,gas oil combustion consumption by to the public,943.0346856,TJ,N2O,3.9,kg/TJ,3677.83527384,kg -46da413b-74b6-3ccf-a5dd-704b1aeba7c6,SESCO,II.1.1,Mendoza,AR-M,annual,2020,gas oil combustion consumption by to the public,134.50315032,TJ,CO2,74100.0,kg/TJ,9966683.438712,kg -f24f0749-b22a-3e6f-b936-9d52c557807f,SESCO,II.1.1,Mendoza,AR-M,annual,2020,gas oil combustion consumption by to the public,134.50315032,TJ,CH4,3.9,kg/TJ,524.562286248,kg -f24f0749-b22a-3e6f-b936-9d52c557807f,SESCO,II.1.1,Mendoza,AR-M,annual,2020,gas oil combustion consumption by to the public,134.50315032,TJ,N2O,3.9,kg/TJ,524.562286248,kg -e9f4c597-ab7c-3ed4-ac46-3599b352a9d3,SESCO,II.1.1,Misiones,AR-N,annual,2020,gas oil combustion consumption by to the public,40.419399719999994,TJ,CO2,74100.0,kg/TJ,2995077.5192519994,kg -c823d456-251d-34f9-8282-66f4c02dec2f,SESCO,II.1.1,Misiones,AR-N,annual,2020,gas oil combustion consumption by to the public,40.419399719999994,TJ,CH4,3.9,kg/TJ,157.63565890799998,kg -c823d456-251d-34f9-8282-66f4c02dec2f,SESCO,II.1.1,Misiones,AR-N,annual,2020,gas oil combustion consumption by to the public,40.419399719999994,TJ,N2O,3.9,kg/TJ,157.63565890799998,kg -a7ebc12e-716a-3bbb-b8de-e60cab613360,SESCO,II.1.1,Neuquén,AR-Q,annual,2020,gas oil combustion consumption by to the public,188.38909740000003,TJ,CO2,74100.0,kg/TJ,13959632.117340002,kg -602ca2b7-b16a-3d21-b016-5a350baa6d62,SESCO,II.1.1,Neuquén,AR-Q,annual,2020,gas oil combustion consumption by to the public,188.38909740000003,TJ,CH4,3.9,kg/TJ,734.7174798600001,kg -602ca2b7-b16a-3d21-b016-5a350baa6d62,SESCO,II.1.1,Neuquén,AR-Q,annual,2020,gas oil combustion consumption by to the public,188.38909740000003,TJ,N2O,3.9,kg/TJ,734.7174798600001,kg -3bb2540d-d3b4-308b-9951-21d2f0438b4e,SESCO,II.1.1,Rio Negro,AR-R,annual,2020,gas oil combustion consumption by to the public,625.66384944,TJ,CO2,74100.0,kg/TJ,46361691.243504,kg -80bfe889-8985-39e0-a356-b3380ae5c5ec,SESCO,II.1.1,Rio Negro,AR-R,annual,2020,gas oil combustion consumption by to the public,625.66384944,TJ,CH4,3.9,kg/TJ,2440.089012816,kg -80bfe889-8985-39e0-a356-b3380ae5c5ec,SESCO,II.1.1,Rio Negro,AR-R,annual,2020,gas oil combustion consumption by to the public,625.66384944,TJ,N2O,3.9,kg/TJ,2440.089012816,kg -2a571c2d-15cb-392e-906d-1f0b1cb5a052,SESCO,II.1.1,San Juan,AR-J,annual,2020,gas oil combustion consumption by to the public,94.48377959999999,TJ,CO2,74100.0,kg/TJ,7001248.068359999,kg -fc242404-e2f5-3e53-b3f8-1039faf27a34,SESCO,II.1.1,San Juan,AR-J,annual,2020,gas oil combustion consumption by to the public,94.48377959999999,TJ,CH4,3.9,kg/TJ,368.48674043999995,kg -fc242404-e2f5-3e53-b3f8-1039faf27a34,SESCO,II.1.1,San Juan,AR-J,annual,2020,gas oil combustion consumption by to the public,94.48377959999999,TJ,N2O,3.9,kg/TJ,368.48674043999995,kg -15420aa5-49b2-3f05-98a1-192bdf255e07,SESCO,II.1.1,San Luis,AR-D,annual,2020,gas oil combustion consumption by to the public,65.09387472,TJ,CO2,74100.0,kg/TJ,4823456.1167520005,kg -454a31e5-0e54-328e-8335-6f8e9e2890e7,SESCO,II.1.1,San Luis,AR-D,annual,2020,gas oil combustion consumption by to the public,65.09387472,TJ,CH4,3.9,kg/TJ,253.866111408,kg -454a31e5-0e54-328e-8335-6f8e9e2890e7,SESCO,II.1.1,San Luis,AR-D,annual,2020,gas oil combustion consumption by to the public,65.09387472,TJ,N2O,3.9,kg/TJ,253.866111408,kg -03f821f3-33db-35e4-822d-684a724099cb,SESCO,II.1.1,Santa Fe,AR-S,annual,2020,gas oil combustion consumption by to the public,1323.5621002799999,TJ,CO2,74100.0,kg/TJ,98075951.63074799,kg -3b06446a-28ae-3625-89a8-02fd578025d1,SESCO,II.1.1,Santa Fe,AR-S,annual,2020,gas oil combustion consumption by to the public,1323.5621002799999,TJ,CH4,3.9,kg/TJ,5161.892191091999,kg -3b06446a-28ae-3625-89a8-02fd578025d1,SESCO,II.1.1,Santa Fe,AR-S,annual,2020,gas oil combustion consumption by to the public,1323.5621002799999,TJ,N2O,3.9,kg/TJ,5161.892191091999,kg -c5fd334b-ea4f-30bf-af24-46077cb8d3f3,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2020,gas oil combustion consumption by to the public,397.66093668,TJ,CO2,74100.0,kg/TJ,29466675.407988,kg -bdfe558c-d308-358b-bc1a-dcd0017a8186,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2020,gas oil combustion consumption by to the public,397.66093668,TJ,CH4,3.9,kg/TJ,1550.8776530520001,kg -bdfe558c-d308-358b-bc1a-dcd0017a8186,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2020,gas oil combustion consumption by to the public,397.66093668,TJ,N2O,3.9,kg/TJ,1550.8776530520001,kg -8becb11e-7c2d-39d9-9ba5-338fe0774331,SESCO,II.1.1,Tucuman,AR-T,annual,2020,gas oil combustion consumption by to the public,31.0265382,TJ,CO2,74100.0,kg/TJ,2299066.48062,kg -3302516c-a796-390a-b756-2b89bbc19e71,SESCO,II.1.1,Tucuman,AR-T,annual,2020,gas oil combustion consumption by to the public,31.0265382,TJ,CH4,3.9,kg/TJ,121.00349898,kg -3302516c-a796-390a-b756-2b89bbc19e71,SESCO,II.1.1,Tucuman,AR-T,annual,2020,gas oil combustion consumption by to the public,31.0265382,TJ,N2O,3.9,kg/TJ,121.00349898,kg -ff2f3d0c-e2ad-30d4-a061-d67b7fc81f7b,SESCO,II.1.1,Buenos Aires,AR-B,annual,2020,gas oil combustion consumption by to the public,1108.16423676,TJ,CO2,74100.0,kg/TJ,82114969.943916,kg -d7156be9-5c65-31f0-9596-e1bbc7514550,SESCO,II.1.1,Buenos Aires,AR-B,annual,2020,gas oil combustion consumption by to the public,1108.16423676,TJ,CH4,3.9,kg/TJ,4321.840523364,kg -d7156be9-5c65-31f0-9596-e1bbc7514550,SESCO,II.1.1,Buenos Aires,AR-B,annual,2020,gas oil combustion consumption by to the public,1108.16423676,TJ,N2O,3.9,kg/TJ,4321.840523364,kg -4b5a300e-2499-311f-a75e-0040e301ea04,SESCO,II.1.1,Capital Federal,AR-C,annual,2020,gas oil combustion consumption by to the public,40.36583376,TJ,CO2,74100.0,kg/TJ,2991108.281616,kg -a22f09e4-07a3-3370-b54f-f273ad0b9e7f,SESCO,II.1.1,Capital Federal,AR-C,annual,2020,gas oil combustion consumption by to the public,40.36583376,TJ,CH4,3.9,kg/TJ,157.426751664,kg -a22f09e4-07a3-3370-b54f-f273ad0b9e7f,SESCO,II.1.1,Capital Federal,AR-C,annual,2020,gas oil combustion consumption by to the public,40.36583376,TJ,N2O,3.9,kg/TJ,157.426751664,kg -029e62f1-8c10-3c9b-86b4-2a85976958c7,SESCO,II.1.1,Catamarca,AR-K,annual,2020,gas oil combustion consumption by to the public,2.59998984,TJ,CO2,74100.0,kg/TJ,192659.247144,kg -1a45868c-7f6c-348a-b8cb-56e9b7c35f44,SESCO,II.1.1,Catamarca,AR-K,annual,2020,gas oil combustion consumption by to the public,2.59998984,TJ,CH4,3.9,kg/TJ,10.139960376,kg -1a45868c-7f6c-348a-b8cb-56e9b7c35f44,SESCO,II.1.1,Catamarca,AR-K,annual,2020,gas oil combustion consumption by to the public,2.59998984,TJ,N2O,3.9,kg/TJ,10.139960376,kg -89fa58b9-a266-37fc-8ed4-b5f7b712b4a5,SESCO,II.1.1,Chaco,AR-H,annual,2020,gas oil combustion consumption by to the public,18.46541088,TJ,CO2,74100.0,kg/TJ,1368286.946208,kg -fe41d637-c0e9-3ae6-9367-b9fb49e28d7e,SESCO,II.1.1,Chaco,AR-H,annual,2020,gas oil combustion consumption by to the public,18.46541088,TJ,CH4,3.9,kg/TJ,72.015102432,kg -fe41d637-c0e9-3ae6-9367-b9fb49e28d7e,SESCO,II.1.1,Chaco,AR-H,annual,2020,gas oil combustion consumption by to the public,18.46541088,TJ,N2O,3.9,kg/TJ,72.015102432,kg -48854b64-402e-3828-b7c1-314d0f4c8e6d,SESCO,II.1.1,Chubut,AR-U,annual,2020,gas oil combustion consumption by to the public,63.31825164,TJ,CO2,74100.0,kg/TJ,4691882.446524,kg -fd9e46c7-d2f9-37b1-907e-a60d3bcdedd4,SESCO,II.1.1,Chubut,AR-U,annual,2020,gas oil combustion consumption by to the public,63.31825164,TJ,CH4,3.9,kg/TJ,246.941181396,kg -fd9e46c7-d2f9-37b1-907e-a60d3bcdedd4,SESCO,II.1.1,Chubut,AR-U,annual,2020,gas oil combustion consumption by to the public,63.31825164,TJ,N2O,3.9,kg/TJ,246.941181396,kg -8abae4d3-670f-3a87-ac32-183f8b8f0da5,SESCO,II.1.1,Corrientes,AR-W,annual,2020,gas oil combustion consumption by to the public,47.55064356,TJ,CO2,74100.0,kg/TJ,3523502.687796,kg -e8cd75e9-a18d-3b7b-b275-ee179ca7fa2a,SESCO,II.1.1,Corrientes,AR-W,annual,2020,gas oil combustion consumption by to the public,47.55064356,TJ,CH4,3.9,kg/TJ,185.447509884,kg -e8cd75e9-a18d-3b7b-b275-ee179ca7fa2a,SESCO,II.1.1,Corrientes,AR-W,annual,2020,gas oil combustion consumption by to the public,47.55064356,TJ,N2O,3.9,kg/TJ,185.447509884,kg -eca5dfd6-93d4-3810-bf01-fac18cf6e4b3,SESCO,II.1.1,Córdoba,AR-X,annual,2020,gas oil combustion consumption by to the public,143.90887056,TJ,CO2,74100.0,kg/TJ,10663647.308496,kg -02e6fe6e-02db-3fdd-8c0f-da9fcc2543f4,SESCO,II.1.1,Córdoba,AR-X,annual,2020,gas oil combustion consumption by to the public,143.90887056,TJ,CH4,3.9,kg/TJ,561.244595184,kg -02e6fe6e-02db-3fdd-8c0f-da9fcc2543f4,SESCO,II.1.1,Córdoba,AR-X,annual,2020,gas oil combustion consumption by to the public,143.90887056,TJ,N2O,3.9,kg/TJ,561.244595184,kg -e131cc02-f92c-3c99-889c-42ad1ea2e409,SESCO,II.1.1,Entre Rios,AR-E,annual,2020,gas oil combustion consumption by to the public,177.87539616,TJ,CO2,74100.0,kg/TJ,13180566.855456,kg -4a69e9f5-289f-356d-bd68-0d8028181eea,SESCO,II.1.1,Entre Rios,AR-E,annual,2020,gas oil combustion consumption by to the public,177.87539616,TJ,CH4,3.9,kg/TJ,693.714045024,kg -4a69e9f5-289f-356d-bd68-0d8028181eea,SESCO,II.1.1,Entre Rios,AR-E,annual,2020,gas oil combustion consumption by to the public,177.87539616,TJ,N2O,3.9,kg/TJ,693.714045024,kg -9da0f45c-539b-3e2b-bf2e-541f6c813e82,SESCO,II.1.1,Formosa,AR-P,annual,2020,gas oil combustion consumption by to the public,1.64071488,TJ,CO2,74100.0,kg/TJ,121576.972608,kg -58694d46-b654-3a75-affc-2d84e3be0dab,SESCO,II.1.1,Formosa,AR-P,annual,2020,gas oil combustion consumption by to the public,1.64071488,TJ,CH4,3.9,kg/TJ,6.398788032,kg -58694d46-b654-3a75-affc-2d84e3be0dab,SESCO,II.1.1,Formosa,AR-P,annual,2020,gas oil combustion consumption by to the public,1.64071488,TJ,N2O,3.9,kg/TJ,6.398788032,kg -8f8b0d47-93ff-3baa-9dfa-53403dd6bc31,SESCO,II.1.1,Jujuy,AR-Y,annual,2020,gas oil combustion consumption by to the public,4.42116024,TJ,CO2,74100.0,kg/TJ,327607.973784,kg -13e58a0a-f960-3d5d-ac07-2baee53b5f4d,SESCO,II.1.1,Jujuy,AR-Y,annual,2020,gas oil combustion consumption by to the public,4.42116024,TJ,CH4,3.9,kg/TJ,17.242524936,kg -13e58a0a-f960-3d5d-ac07-2baee53b5f4d,SESCO,II.1.1,Jujuy,AR-Y,annual,2020,gas oil combustion consumption by to the public,4.42116024,TJ,N2O,3.9,kg/TJ,17.242524936,kg -ddf4d65b-4426-3686-8921-53d3ca62ed14,SESCO,II.1.1,La Pampa,AR-L,annual,2020,gas oil combustion consumption by to the public,147.13601196,TJ,CO2,74100.0,kg/TJ,10902778.486235999,kg -cf03b8e1-f58c-3633-a21a-22852b0f9829,SESCO,II.1.1,La Pampa,AR-L,annual,2020,gas oil combustion consumption by to the public,147.13601196,TJ,CH4,3.9,kg/TJ,573.830446644,kg -cf03b8e1-f58c-3633-a21a-22852b0f9829,SESCO,II.1.1,La Pampa,AR-L,annual,2020,gas oil combustion consumption by to the public,147.13601196,TJ,N2O,3.9,kg/TJ,573.830446644,kg -1596de9c-6be2-374f-8c9e-3a0f612faaa6,SESCO,II.1.1,Mendoza,AR-M,annual,2020,gas oil combustion consumption by to the public,23.63013744,TJ,CO2,74100.0,kg/TJ,1750993.1843039999,kg -71a80179-0f51-3e7d-9fe9-63fdbcaccbe1,SESCO,II.1.1,Mendoza,AR-M,annual,2020,gas oil combustion consumption by to the public,23.63013744,TJ,CH4,3.9,kg/TJ,92.157536016,kg -71a80179-0f51-3e7d-9fe9-63fdbcaccbe1,SESCO,II.1.1,Mendoza,AR-M,annual,2020,gas oil combustion consumption by to the public,23.63013744,TJ,N2O,3.9,kg/TJ,92.157536016,kg -ed674f13-6eab-35a3-801f-057ad6fb03c8,SESCO,II.1.1,Misiones,AR-N,annual,2020,gas oil combustion consumption by to the public,3.4841352000000003,TJ,CO2,74100.0,kg/TJ,258174.41832000003,kg -e74d7729-937b-36ca-99f7-3156a380b8a9,SESCO,II.1.1,Misiones,AR-N,annual,2020,gas oil combustion consumption by to the public,3.4841352000000003,TJ,CH4,3.9,kg/TJ,13.58812728,kg -e74d7729-937b-36ca-99f7-3156a380b8a9,SESCO,II.1.1,Misiones,AR-N,annual,2020,gas oil combustion consumption by to the public,3.4841352000000003,TJ,N2O,3.9,kg/TJ,13.58812728,kg -63a3d2b9-940e-3567-9024-30aaa80d4e66,SESCO,II.1.1,Neuquén,AR-Q,annual,2020,gas oil combustion consumption by to the public,183.35660616,TJ,CO2,74100.0,kg/TJ,13586724.516456,kg -76dfda21-0d34-3d72-b8b8-365ca300b554,SESCO,II.1.1,Neuquén,AR-Q,annual,2020,gas oil combustion consumption by to the public,183.35660616,TJ,CH4,3.9,kg/TJ,715.090764024,kg -76dfda21-0d34-3d72-b8b8-365ca300b554,SESCO,II.1.1,Neuquén,AR-Q,annual,2020,gas oil combustion consumption by to the public,183.35660616,TJ,N2O,3.9,kg/TJ,715.090764024,kg -71e789a4-0bf2-34be-b1cf-5ab303d2766b,SESCO,II.1.1,Rio Negro,AR-R,annual,2020,gas oil combustion consumption by to the public,206.69117364,TJ,CO2,74100.0,kg/TJ,15315815.966723999,kg -8b19c346-cff8-385d-99ca-3ba61db1dfbd,SESCO,II.1.1,Rio Negro,AR-R,annual,2020,gas oil combustion consumption by to the public,206.69117364,TJ,CH4,3.9,kg/TJ,806.0955771959999,kg -8b19c346-cff8-385d-99ca-3ba61db1dfbd,SESCO,II.1.1,Rio Negro,AR-R,annual,2020,gas oil combustion consumption by to the public,206.69117364,TJ,N2O,3.9,kg/TJ,806.0955771959999,kg -a47c3bab-f965-3dcd-b64a-84be72c85cc4,SESCO,II.1.1,San Juan,AR-J,annual,2020,gas oil combustion consumption by to the public,27.337313639999998,TJ,CO2,74100.0,kg/TJ,2025694.9407239999,kg -b82ec7d0-f9b7-3ea8-8834-21d7a7f7bc68,SESCO,II.1.1,San Juan,AR-J,annual,2020,gas oil combustion consumption by to the public,27.337313639999998,TJ,CH4,3.9,kg/TJ,106.61552319599998,kg -b82ec7d0-f9b7-3ea8-8834-21d7a7f7bc68,SESCO,II.1.1,San Juan,AR-J,annual,2020,gas oil combustion consumption by to the public,27.337313639999998,TJ,N2O,3.9,kg/TJ,106.61552319599998,kg -c126c3a4-309f-395f-9937-53190fb4b45f,SESCO,II.1.1,San Luis,AR-D,annual,2020,gas oil combustion consumption by to the public,22.45450368,TJ,CO2,74100.0,kg/TJ,1663878.722688,kg -0a48fc29-1bb1-311d-9381-b00699de5a18,SESCO,II.1.1,San Luis,AR-D,annual,2020,gas oil combustion consumption by to the public,22.45450368,TJ,CH4,3.9,kg/TJ,87.57256435199999,kg -0a48fc29-1bb1-311d-9381-b00699de5a18,SESCO,II.1.1,San Luis,AR-D,annual,2020,gas oil combustion consumption by to the public,22.45450368,TJ,N2O,3.9,kg/TJ,87.57256435199999,kg -fb4faa5a-dbb1-357a-b489-b59db6751706,SESCO,II.1.1,Santa Fe,AR-S,annual,2020,gas oil combustion consumption by to the public,305.41291284,TJ,CO2,74100.0,kg/TJ,22631096.841444,kg -0854e19a-e3e4-371e-9fdb-d47b636102e8,SESCO,II.1.1,Santa Fe,AR-S,annual,2020,gas oil combustion consumption by to the public,305.41291284,TJ,CH4,3.9,kg/TJ,1191.110360076,kg -0854e19a-e3e4-371e-9fdb-d47b636102e8,SESCO,II.1.1,Santa Fe,AR-S,annual,2020,gas oil combustion consumption by to the public,305.41291284,TJ,N2O,3.9,kg/TJ,1191.110360076,kg -85083910-81b6-3abf-b3ee-04da58bbaf92,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2020,gas oil combustion consumption by to the public,45.68345628,TJ,CO2,74100.0,kg/TJ,3385144.110348,kg -5997d353-83a8-385a-85bd-bac754b6993b,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2020,gas oil combustion consumption by to the public,45.68345628,TJ,CH4,3.9,kg/TJ,178.165479492,kg -5997d353-83a8-385a-85bd-bac754b6993b,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2020,gas oil combustion consumption by to the public,45.68345628,TJ,N2O,3.9,kg/TJ,178.165479492,kg -a6b6fe58-fae1-3aa7-85fc-3fd47d1a5d4b,SESCO,II.1.1,Tucuman,AR-T,annual,2020,gas oil combustion consumption by to the public,4.8497962800000005,TJ,CO2,74100.0,kg/TJ,359369.904348,kg -19aa128d-53b7-31ba-9283-05a20b6f7dca,SESCO,II.1.1,Tucuman,AR-T,annual,2020,gas oil combustion consumption by to the public,4.8497962800000005,TJ,CH4,3.9,kg/TJ,18.914205492,kg -19aa128d-53b7-31ba-9283-05a20b6f7dca,SESCO,II.1.1,Tucuman,AR-T,annual,2020,gas oil combustion consumption by to the public,4.8497962800000005,TJ,N2O,3.9,kg/TJ,18.914205492,kg -63f6f71f-3ad0-356b-84fc-14a49b200ebd,SESCO,I.3.1,Buenos Aires,AR-B,annual,2020,gas oil combustion consumption by petrochemical industries,28.073367,TJ,CO2,74100.0,kg/TJ,2080236.4947000002,kg -aa7ec93f-1135-3ec8-bc30-5070755a189d,SESCO,I.3.1,Buenos Aires,AR-B,annual,2020,gas oil combustion consumption by petrochemical industries,28.073367,TJ,CH4,3.9,kg/TJ,109.4861313,kg -aa7ec93f-1135-3ec8-bc30-5070755a189d,SESCO,I.3.1,Buenos Aires,AR-B,annual,2020,gas oil combustion consumption by petrochemical industries,28.073367,TJ,N2O,3.9,kg/TJ,109.4861313,kg -9b13c509-1b2d-3a3e-8571-7f85a8189389,SESCO,I.3.1,Capital Federal,AR-C,annual,2020,gas oil combustion consumption by petrochemical industries,1.69579788,TJ,CO2,74100.0,kg/TJ,125658.622908,kg -bdbd359b-9aec-3f46-880a-3853b25bc987,SESCO,I.3.1,Capital Federal,AR-C,annual,2020,gas oil combustion consumption by petrochemical industries,1.69579788,TJ,CH4,3.9,kg/TJ,6.613611732,kg -bdbd359b-9aec-3f46-880a-3853b25bc987,SESCO,I.3.1,Capital Federal,AR-C,annual,2020,gas oil combustion consumption by petrochemical industries,1.69579788,TJ,N2O,3.9,kg/TJ,6.613611732,kg -c482c626-e549-34f0-8903-6b3bc3ac78bd,SESCO,I.3.1,Catamarca,AR-K,annual,2020,gas oil combustion consumption by petrochemical industries,0.36163344000000003,TJ,CO2,74100.0,kg/TJ,26797.037904,kg -a54e5804-6dc7-3820-a01f-60af8b65517d,SESCO,I.3.1,Catamarca,AR-K,annual,2020,gas oil combustion consumption by petrochemical industries,0.36163344000000003,TJ,CH4,3.9,kg/TJ,1.4103704160000001,kg -a54e5804-6dc7-3820-a01f-60af8b65517d,SESCO,I.3.1,Catamarca,AR-K,annual,2020,gas oil combustion consumption by petrochemical industries,0.36163344000000003,TJ,N2O,3.9,kg/TJ,1.4103704160000001,kg -ad49b0c6-56bc-3659-be2b-3eb5295ecbb5,SESCO,I.3.1,Chaco,AR-H,annual,2020,gas oil combustion consumption by petrochemical industries,1.9492880399999999,TJ,CO2,74100.0,kg/TJ,144442.24376399998,kg -fb78261d-43ce-3e6c-8efe-d50cd7eabf73,SESCO,I.3.1,Chaco,AR-H,annual,2020,gas oil combustion consumption by petrochemical industries,1.9492880399999999,TJ,CH4,3.9,kg/TJ,7.602223356,kg -fb78261d-43ce-3e6c-8efe-d50cd7eabf73,SESCO,I.3.1,Chaco,AR-H,annual,2020,gas oil combustion consumption by petrochemical industries,1.9492880399999999,TJ,N2O,3.9,kg/TJ,7.602223356,kg -5f87bc61-846a-3ce1-b167-d2a50869f5e7,SESCO,I.3.1,Chubut,AR-U,annual,2020,gas oil combustion consumption by petrochemical industries,0.54281136,TJ,CO2,74100.0,kg/TJ,40222.321776,kg -4412e98d-5ac7-3ec5-9b8f-9a4a3490195f,SESCO,I.3.1,Chubut,AR-U,annual,2020,gas oil combustion consumption by petrochemical industries,0.54281136,TJ,CH4,3.9,kg/TJ,2.1169643039999997,kg -4412e98d-5ac7-3ec5-9b8f-9a4a3490195f,SESCO,I.3.1,Chubut,AR-U,annual,2020,gas oil combustion consumption by petrochemical industries,0.54281136,TJ,N2O,3.9,kg/TJ,2.1169643039999997,kg -b6660d10-f470-3ea2-ba86-a2f8d628572c,SESCO,I.3.1,Corrientes,AR-W,annual,2020,gas oil combustion consumption by petrochemical industries,1.2976471200000002,TJ,CO2,74100.0,kg/TJ,96155.65159200001,kg -e5ef84a5-2e3d-33a3-8210-a47ea827f117,SESCO,I.3.1,Corrientes,AR-W,annual,2020,gas oil combustion consumption by petrochemical industries,1.2976471200000002,TJ,CH4,3.9,kg/TJ,5.0608237680000006,kg -e5ef84a5-2e3d-33a3-8210-a47ea827f117,SESCO,I.3.1,Corrientes,AR-W,annual,2020,gas oil combustion consumption by petrochemical industries,1.2976471200000002,TJ,N2O,3.9,kg/TJ,5.0608237680000006,kg -84ef5267-c5ac-3f96-a3a9-4bfbe848c599,SESCO,I.3.1,Córdoba,AR-X,annual,2020,gas oil combustion consumption by petrochemical industries,6.88923984,TJ,CO2,74100.0,kg/TJ,510492.672144,kg -461ea079-c761-3ada-af04-07b355c309eb,SESCO,I.3.1,Córdoba,AR-X,annual,2020,gas oil combustion consumption by petrochemical industries,6.88923984,TJ,CH4,3.9,kg/TJ,26.868035375999998,kg -461ea079-c761-3ada-af04-07b355c309eb,SESCO,I.3.1,Córdoba,AR-X,annual,2020,gas oil combustion consumption by petrochemical industries,6.88923984,TJ,N2O,3.9,kg/TJ,26.868035375999998,kg -0c4395b6-8b30-3d3a-9929-d4d1d3feb9a2,SESCO,I.3.1,Entre Rios,AR-E,annual,2020,gas oil combustion consumption by petrochemical industries,4.903037159999999,TJ,CO2,74100.0,kg/TJ,363315.05355599994,kg -a36af947-cb86-3241-871a-0d0da0bee58a,SESCO,I.3.1,Entre Rios,AR-E,annual,2020,gas oil combustion consumption by petrochemical industries,4.903037159999999,TJ,CH4,3.9,kg/TJ,19.121844923999998,kg -a36af947-cb86-3241-871a-0d0da0bee58a,SESCO,I.3.1,Entre Rios,AR-E,annual,2020,gas oil combustion consumption by petrochemical industries,4.903037159999999,TJ,N2O,3.9,kg/TJ,19.121844923999998,kg -db0eeb04-3b05-3d6e-8de2-3094ec1b5182,SESCO,I.3.1,La Pampa,AR-L,annual,2020,gas oil combustion consumption by petrochemical industries,11.56298724,TJ,CO2,74100.0,kg/TJ,856817.354484,kg -0761a59a-e2d3-323a-bdd8-f1943c841153,SESCO,I.3.1,La Pampa,AR-L,annual,2020,gas oil combustion consumption by petrochemical industries,11.56298724,TJ,CH4,3.9,kg/TJ,45.095650236,kg -0761a59a-e2d3-323a-bdd8-f1943c841153,SESCO,I.3.1,La Pampa,AR-L,annual,2020,gas oil combustion consumption by petrochemical industries,11.56298724,TJ,N2O,3.9,kg/TJ,45.095650236,kg -fb22e6eb-00ba-3224-9fa7-4d43b08cd5d3,SESCO,I.3.1,Mendoza,AR-M,annual,2020,gas oil combustion consumption by petrochemical industries,0.18110568000000002,TJ,CO2,74100.0,kg/TJ,13419.930888,kg -78f1c355-933f-3328-a585-b426e15f7145,SESCO,I.3.1,Mendoza,AR-M,annual,2020,gas oil combustion consumption by petrochemical industries,0.18110568000000002,TJ,CH4,3.9,kg/TJ,0.7063121520000001,kg -78f1c355-933f-3328-a585-b426e15f7145,SESCO,I.3.1,Mendoza,AR-M,annual,2020,gas oil combustion consumption by petrochemical industries,0.18110568000000002,TJ,N2O,3.9,kg/TJ,0.7063121520000001,kg -6d4a6a8e-e6f1-38e6-99a1-2d8e028b76b1,SESCO,I.3.1,Rio Negro,AR-R,annual,2020,gas oil combustion consumption by petrochemical industries,0.79464,TJ,CO2,74100.0,kg/TJ,58882.824,kg -4da50249-418d-33e6-8f24-e505096ab136,SESCO,I.3.1,Rio Negro,AR-R,annual,2020,gas oil combustion consumption by petrochemical industries,0.79464,TJ,CH4,3.9,kg/TJ,3.099096,kg -4da50249-418d-33e6-8f24-e505096ab136,SESCO,I.3.1,Rio Negro,AR-R,annual,2020,gas oil combustion consumption by petrochemical industries,0.79464,TJ,N2O,3.9,kg/TJ,3.099096,kg -efcd8d87-3593-3dad-9958-6ff24b4ee801,SESCO,I.3.1,Santa Fe,AR-S,annual,2020,gas oil combustion consumption by petrochemical industries,25.3654506,TJ,CO2,74100.0,kg/TJ,1879579.88946,kg -38d13f24-b3cb-3bc7-bf5a-107634573b44,SESCO,I.3.1,Santa Fe,AR-S,annual,2020,gas oil combustion consumption by petrochemical industries,25.3654506,TJ,CH4,3.9,kg/TJ,98.92525733999999,kg -38d13f24-b3cb-3bc7-bf5a-107634573b44,SESCO,I.3.1,Santa Fe,AR-S,annual,2020,gas oil combustion consumption by petrochemical industries,25.3654506,TJ,N2O,3.9,kg/TJ,98.92525733999999,kg -a8d9decd-f751-3244-977d-58311fe3397d,SESCO,I.3.1,Santiago del Estero,AR-G,annual,2020,gas oil combustion consumption by petrochemical industries,0.14386596,TJ,CO2,74100.0,kg/TJ,10660.467636,kg -a705c856-9437-35d5-8a62-0c5f28af0870,SESCO,I.3.1,Santiago del Estero,AR-G,annual,2020,gas oil combustion consumption by petrochemical industries,0.14386596,TJ,CH4,3.9,kg/TJ,0.5610772439999999,kg -a705c856-9437-35d5-8a62-0c5f28af0870,SESCO,I.3.1,Santiago del Estero,AR-G,annual,2020,gas oil combustion consumption by petrochemical industries,0.14386596,TJ,N2O,3.9,kg/TJ,0.5610772439999999,kg -883bd798-692c-3301-b427-2b82f4c310fd,SESCO,I.3.1,Tucuman,AR-T,annual,2020,gas oil combustion consumption by petrochemical industries,0.2526594,TJ,CO2,74100.0,kg/TJ,18722.06154,kg -a148f897-dac1-3787-a93b-3e762e6dd938,SESCO,I.3.1,Tucuman,AR-T,annual,2020,gas oil combustion consumption by petrochemical industries,0.2526594,TJ,CH4,3.9,kg/TJ,0.9853716599999999,kg -a148f897-dac1-3787-a93b-3e762e6dd938,SESCO,I.3.1,Tucuman,AR-T,annual,2020,gas oil combustion consumption by petrochemical industries,0.2526594,TJ,N2O,3.9,kg/TJ,0.9853716599999999,kg -63eb9345-76a0-3d69-896d-7012eacc8fe0,SESCO,II.5.1,Buenos Aires,AR-B,annual,2020,gas oil combustion consumption by agriculture machines,9292.773,TJ,CO2,74100.0,kg/TJ,688594479.3,kg -bece1ecc-fb9f-3d8b-b1a0-f71e9f2bb65a,SESCO,II.5.1,Buenos Aires,AR-B,annual,2020,gas oil combustion consumption by agriculture machines,9292.773,TJ,CH4,3.9,kg/TJ,36241.814699999995,kg -bece1ecc-fb9f-3d8b-b1a0-f71e9f2bb65a,SESCO,II.5.1,Buenos Aires,AR-B,annual,2020,gas oil combustion consumption by agriculture machines,9292.773,TJ,N2O,3.9,kg/TJ,36241.814699999995,kg -c57abf0a-4949-32d9-ad88-05799bad5068,SESCO,II.5.1,Capital Federal,AR-C,annual,2020,gas oil combustion consumption by agriculture machines,35.79492,TJ,CO2,74100.0,kg/TJ,2652403.5719999997,kg -e2caec47-f001-35dd-a79b-56333bd7b5b6,SESCO,II.5.1,Capital Federal,AR-C,annual,2020,gas oil combustion consumption by agriculture machines,35.79492,TJ,CH4,3.9,kg/TJ,139.60018799999997,kg -e2caec47-f001-35dd-a79b-56333bd7b5b6,SESCO,II.5.1,Capital Federal,AR-C,annual,2020,gas oil combustion consumption by agriculture machines,35.79492,TJ,N2O,3.9,kg/TJ,139.60018799999997,kg -8dcf0c47-78b7-3737-905a-0d01642c6381,SESCO,II.5.1,Catamarca,AR-K,annual,2020,gas oil combustion consumption by agriculture machines,149.13948,TJ,CO2,74100.0,kg/TJ,11051235.467999998,kg -03fd7440-c5e5-3c89-bf92-33155e1a3015,SESCO,II.5.1,Catamarca,AR-K,annual,2020,gas oil combustion consumption by agriculture machines,149.13948,TJ,CH4,3.9,kg/TJ,581.643972,kg -03fd7440-c5e5-3c89-bf92-33155e1a3015,SESCO,II.5.1,Catamarca,AR-K,annual,2020,gas oil combustion consumption by agriculture machines,149.13948,TJ,N2O,3.9,kg/TJ,581.643972,kg -a8ce750e-50c7-3080-955a-c58377d41d86,SESCO,II.5.1,Chaco,AR-H,annual,2020,gas oil combustion consumption by agriculture machines,954.32652,TJ,CO2,74100.0,kg/TJ,70715595.132,kg -1f526ee9-caa7-3329-883f-dab7193f5117,SESCO,II.5.1,Chaco,AR-H,annual,2020,gas oil combustion consumption by agriculture machines,954.32652,TJ,CH4,3.9,kg/TJ,3721.873428,kg -1f526ee9-caa7-3329-883f-dab7193f5117,SESCO,II.5.1,Chaco,AR-H,annual,2020,gas oil combustion consumption by agriculture machines,954.32652,TJ,N2O,3.9,kg/TJ,3721.873428,kg -12c68bf5-139e-3cca-a028-68330950465a,SESCO,II.5.1,Corrientes,AR-W,annual,2020,gas oil combustion consumption by agriculture machines,521.60892,TJ,CO2,74100.0,kg/TJ,38651220.972,kg -accdfa4f-0bf3-330e-a226-58de9a3f040b,SESCO,II.5.1,Corrientes,AR-W,annual,2020,gas oil combustion consumption by agriculture machines,521.60892,TJ,CH4,3.9,kg/TJ,2034.274788,kg -accdfa4f-0bf3-330e-a226-58de9a3f040b,SESCO,II.5.1,Corrientes,AR-W,annual,2020,gas oil combustion consumption by agriculture machines,521.60892,TJ,N2O,3.9,kg/TJ,2034.274788,kg -99c854ae-1203-3ac0-a209-5b0e48817cc1,SESCO,II.5.1,Córdoba,AR-X,annual,2020,gas oil combustion consumption by agriculture machines,6933.99252,TJ,CO2,74100.0,kg/TJ,513808845.732,kg -6926366d-055a-3089-815f-3cf0ab8c57cc,SESCO,II.5.1,Córdoba,AR-X,annual,2020,gas oil combustion consumption by agriculture machines,6933.99252,TJ,CH4,3.9,kg/TJ,27042.570828,kg -6926366d-055a-3089-815f-3cf0ab8c57cc,SESCO,II.5.1,Córdoba,AR-X,annual,2020,gas oil combustion consumption by agriculture machines,6933.99252,TJ,N2O,3.9,kg/TJ,27042.570828,kg -d179b54c-f470-3af2-91b5-87b051716188,SESCO,II.5.1,Entre Rios,AR-E,annual,2020,gas oil combustion consumption by agriculture machines,1840.35012,TJ,CO2,74100.0,kg/TJ,136369943.892,kg -8119c3da-979b-380c-bb25-61bf81e1d739,SESCO,II.5.1,Entre Rios,AR-E,annual,2020,gas oil combustion consumption by agriculture machines,1840.35012,TJ,CH4,3.9,kg/TJ,7177.365468,kg -8119c3da-979b-380c-bb25-61bf81e1d739,SESCO,II.5.1,Entre Rios,AR-E,annual,2020,gas oil combustion consumption by agriculture machines,1840.35012,TJ,N2O,3.9,kg/TJ,7177.365468,kg -dc500619-c7a6-350a-819b-f098c11fee64,SESCO,II.5.1,Formosa,AR-P,annual,2020,gas oil combustion consumption by agriculture machines,232.90176,TJ,CO2,74100.0,kg/TJ,17258020.416,kg -79be7970-4e48-3eca-89b2-7ac11d963c8a,SESCO,II.5.1,Formosa,AR-P,annual,2020,gas oil combustion consumption by agriculture machines,232.90176,TJ,CH4,3.9,kg/TJ,908.316864,kg -79be7970-4e48-3eca-89b2-7ac11d963c8a,SESCO,II.5.1,Formosa,AR-P,annual,2020,gas oil combustion consumption by agriculture machines,232.90176,TJ,N2O,3.9,kg/TJ,908.316864,kg -06c4c92e-e6df-3bd2-8923-7a4e053cc2fe,SESCO,II.5.1,Jujuy,AR-Y,annual,2020,gas oil combustion consumption by agriculture machines,961.0087199999999,TJ,CO2,74100.0,kg/TJ,71210746.152,kg -9d0a17f5-d49e-3bd6-bc98-9f8172a4ab34,SESCO,II.5.1,Jujuy,AR-Y,annual,2020,gas oil combustion consumption by agriculture machines,961.0087199999999,TJ,CH4,3.9,kg/TJ,3747.9340079999997,kg -9d0a17f5-d49e-3bd6-bc98-9f8172a4ab34,SESCO,II.5.1,Jujuy,AR-Y,annual,2020,gas oil combustion consumption by agriculture machines,961.0087199999999,TJ,N2O,3.9,kg/TJ,3747.9340079999997,kg -6d6af92b-aa9a-3ef4-96f4-ee4078fe777b,SESCO,II.5.1,La Pampa,AR-L,annual,2020,gas oil combustion consumption by agriculture machines,1478.71668,TJ,CO2,74100.0,kg/TJ,109572905.988,kg -be2659f9-7fbc-3677-b4e6-095418e43bac,SESCO,II.5.1,La Pampa,AR-L,annual,2020,gas oil combustion consumption by agriculture machines,1478.71668,TJ,CH4,3.9,kg/TJ,5766.995052,kg -be2659f9-7fbc-3677-b4e6-095418e43bac,SESCO,II.5.1,La Pampa,AR-L,annual,2020,gas oil combustion consumption by agriculture machines,1478.71668,TJ,N2O,3.9,kg/TJ,5766.995052,kg -a64454f2-6e91-39dd-9d16-4a500eba954e,SESCO,II.5.1,La Rioja,AR-F,annual,2020,gas oil combustion consumption by agriculture machines,88.34952,TJ,CO2,74100.0,kg/TJ,6546699.432,kg -dbb5f89b-89b4-3615-afa3-6e586a0f0fee,SESCO,II.5.1,La Rioja,AR-F,annual,2020,gas oil combustion consumption by agriculture machines,88.34952,TJ,CH4,3.9,kg/TJ,344.563128,kg -dbb5f89b-89b4-3615-afa3-6e586a0f0fee,SESCO,II.5.1,La Rioja,AR-F,annual,2020,gas oil combustion consumption by agriculture machines,88.34952,TJ,N2O,3.9,kg/TJ,344.563128,kg -237bf474-71b1-331e-b5ec-e977a7fdf471,SESCO,II.5.1,Mendoza,AR-M,annual,2020,gas oil combustion consumption by agriculture machines,1603.47516,TJ,CO2,74100.0,kg/TJ,118817509.35599999,kg -0aa36b6d-b75e-3626-8f14-6c6add34fdd3,SESCO,II.5.1,Mendoza,AR-M,annual,2020,gas oil combustion consumption by agriculture machines,1603.47516,TJ,CH4,3.9,kg/TJ,6253.553124,kg -0aa36b6d-b75e-3626-8f14-6c6add34fdd3,SESCO,II.5.1,Mendoza,AR-M,annual,2020,gas oil combustion consumption by agriculture machines,1603.47516,TJ,N2O,3.9,kg/TJ,6253.553124,kg -26ff9528-4a3a-31ab-9b0c-28325ccd41db,SESCO,II.5.1,Misiones,AR-N,annual,2020,gas oil combustion consumption by agriculture machines,853.44336,TJ,CO2,74100.0,kg/TJ,63240152.975999996,kg -e792df68-0fcb-33b7-b133-53bb971d22bb,SESCO,II.5.1,Misiones,AR-N,annual,2020,gas oil combustion consumption by agriculture machines,853.44336,TJ,CH4,3.9,kg/TJ,3328.429104,kg -e792df68-0fcb-33b7-b133-53bb971d22bb,SESCO,II.5.1,Misiones,AR-N,annual,2020,gas oil combustion consumption by agriculture machines,853.44336,TJ,N2O,3.9,kg/TJ,3328.429104,kg -f30e5911-4bb6-3588-9dca-388e9a29b35e,SESCO,II.5.1,Rio Negro,AR-R,annual,2020,gas oil combustion consumption by agriculture machines,222.93264,TJ,CO2,74100.0,kg/TJ,16519308.624,kg -b05ff935-52e1-38ac-a4e7-edd699ed63b3,SESCO,II.5.1,Rio Negro,AR-R,annual,2020,gas oil combustion consumption by agriculture machines,222.93264,TJ,CH4,3.9,kg/TJ,869.437296,kg -b05ff935-52e1-38ac-a4e7-edd699ed63b3,SESCO,II.5.1,Rio Negro,AR-R,annual,2020,gas oil combustion consumption by agriculture machines,222.93264,TJ,N2O,3.9,kg/TJ,869.437296,kg -31e01f32-65e2-30f1-b384-b670b13d3a97,SESCO,II.5.1,Salta,AR-A,annual,2020,gas oil combustion consumption by agriculture machines,1250.94396,TJ,CO2,74100.0,kg/TJ,92694947.436,kg -1cf61e18-6a20-3fc8-b102-851aae4ac054,SESCO,II.5.1,Salta,AR-A,annual,2020,gas oil combustion consumption by agriculture machines,1250.94396,TJ,CH4,3.9,kg/TJ,4878.681444,kg -1cf61e18-6a20-3fc8-b102-851aae4ac054,SESCO,II.5.1,Salta,AR-A,annual,2020,gas oil combustion consumption by agriculture machines,1250.94396,TJ,N2O,3.9,kg/TJ,4878.681444,kg -52c993ad-a47e-3726-9636-e06ce49664c7,SESCO,II.5.1,San Juan,AR-J,annual,2020,gas oil combustion consumption by agriculture machines,321.90144,TJ,CO2,74100.0,kg/TJ,23852896.704,kg -d482c0aa-2199-382f-847f-fca8cfd3a3c0,SESCO,II.5.1,San Juan,AR-J,annual,2020,gas oil combustion consumption by agriculture machines,321.90144,TJ,CH4,3.9,kg/TJ,1255.415616,kg -d482c0aa-2199-382f-847f-fca8cfd3a3c0,SESCO,II.5.1,San Juan,AR-J,annual,2020,gas oil combustion consumption by agriculture machines,321.90144,TJ,N2O,3.9,kg/TJ,1255.415616,kg -71cecccd-67cf-34b9-9d53-6db895b0e4b3,SESCO,II.5.1,San Luis,AR-D,annual,2020,gas oil combustion consumption by agriculture machines,315.6888,TJ,CO2,74100.0,kg/TJ,23392540.080000002,kg -15cedf16-5d04-3c1d-9e4f-0f7b350307a6,SESCO,II.5.1,San Luis,AR-D,annual,2020,gas oil combustion consumption by agriculture machines,315.6888,TJ,CH4,3.9,kg/TJ,1231.18632,kg -15cedf16-5d04-3c1d-9e4f-0f7b350307a6,SESCO,II.5.1,San Luis,AR-D,annual,2020,gas oil combustion consumption by agriculture machines,315.6888,TJ,N2O,3.9,kg/TJ,1231.18632,kg -4e38fbb7-65b7-32ba-a403-10767922cd0f,SESCO,II.5.1,Santa Fe,AR-S,annual,2020,gas oil combustion consumption by agriculture machines,6512.50824,TJ,CO2,74100.0,kg/TJ,482576860.584,kg -b240ccba-5b5b-36f7-8836-80d3e36174bb,SESCO,II.5.1,Santa Fe,AR-S,annual,2020,gas oil combustion consumption by agriculture machines,6512.50824,TJ,CH4,3.9,kg/TJ,25398.782136,kg -b240ccba-5b5b-36f7-8836-80d3e36174bb,SESCO,II.5.1,Santa Fe,AR-S,annual,2020,gas oil combustion consumption by agriculture machines,6512.50824,TJ,N2O,3.9,kg/TJ,25398.782136,kg -ca08f67c-1f37-3159-9db7-9812c40a95e0,SESCO,II.5.1,Santiago del Estero,AR-G,annual,2020,gas oil combustion consumption by agriculture machines,1623.30504,TJ,CO2,74100.0,kg/TJ,120286903.464,kg -faed062f-8b48-3a25-87cf-5dac7e26c979,SESCO,II.5.1,Santiago del Estero,AR-G,annual,2020,gas oil combustion consumption by agriculture machines,1623.30504,TJ,CH4,3.9,kg/TJ,6330.889655999999,kg -faed062f-8b48-3a25-87cf-5dac7e26c979,SESCO,II.5.1,Santiago del Estero,AR-G,annual,2020,gas oil combustion consumption by agriculture machines,1623.30504,TJ,N2O,3.9,kg/TJ,6330.889655999999,kg -a01978a7-bd4f-3ba5-b7a5-9249c0c15fdf,SESCO,II.5.1,Tucuman,AR-T,annual,2020,gas oil combustion consumption by agriculture machines,1171.44384,TJ,CO2,74100.0,kg/TJ,86803988.544,kg -578f12e3-b601-3da1-899f-7be45abeb861,SESCO,II.5.1,Tucuman,AR-T,annual,2020,gas oil combustion consumption by agriculture machines,1171.44384,TJ,CH4,3.9,kg/TJ,4568.6309759999995,kg -578f12e3-b601-3da1-899f-7be45abeb861,SESCO,II.5.1,Tucuman,AR-T,annual,2020,gas oil combustion consumption by agriculture machines,1171.44384,TJ,N2O,3.9,kg/TJ,4568.6309759999995,kg -673ae18d-d0ca-3552-9de1-097b32e9df19,SESCO,II.5.1,Buenos Aires,AR-B,annual,2020,gas oil combustion consumption by agriculture machines,806.66796,TJ,CO2,74100.0,kg/TJ,59774095.836,kg -9be0dc30-c66c-3972-abf8-15a1067d2483,SESCO,II.5.1,Buenos Aires,AR-B,annual,2020,gas oil combustion consumption by agriculture machines,806.66796,TJ,CH4,3.9,kg/TJ,3146.005044,kg -9be0dc30-c66c-3972-abf8-15a1067d2483,SESCO,II.5.1,Buenos Aires,AR-B,annual,2020,gas oil combustion consumption by agriculture machines,806.66796,TJ,N2O,3.9,kg/TJ,3146.005044,kg -9ab24a0a-1dfb-3236-bdb3-8fc8f1723f30,SESCO,II.5.1,Capital Federal,AR-C,annual,2020,gas oil combustion consumption by agriculture machines,3.86484,TJ,CO2,74100.0,kg/TJ,286384.64400000003,kg -438558e4-8371-3a20-b88a-d0dc04a63cc6,SESCO,II.5.1,Capital Federal,AR-C,annual,2020,gas oil combustion consumption by agriculture machines,3.86484,TJ,CH4,3.9,kg/TJ,15.072875999999999,kg -438558e4-8371-3a20-b88a-d0dc04a63cc6,SESCO,II.5.1,Capital Federal,AR-C,annual,2020,gas oil combustion consumption by agriculture machines,3.86484,TJ,N2O,3.9,kg/TJ,15.072875999999999,kg -4588b479-4886-3793-8f3e-762ea0386777,SESCO,II.5.1,Catamarca,AR-K,annual,2020,gas oil combustion consumption by agriculture machines,20.62452,TJ,CO2,74100.0,kg/TJ,1528276.932,kg -7e8e9dfe-4deb-3551-9670-db0c1aa2ab4a,SESCO,II.5.1,Catamarca,AR-K,annual,2020,gas oil combustion consumption by agriculture machines,20.62452,TJ,CH4,3.9,kg/TJ,80.435628,kg -7e8e9dfe-4deb-3551-9670-db0c1aa2ab4a,SESCO,II.5.1,Catamarca,AR-K,annual,2020,gas oil combustion consumption by agriculture machines,20.62452,TJ,N2O,3.9,kg/TJ,80.435628,kg -840f559f-2a26-3883-9c17-1f44e07f8319,SESCO,II.5.1,Chaco,AR-H,annual,2020,gas oil combustion consumption by agriculture machines,43.48848,TJ,CO2,74100.0,kg/TJ,3222496.3680000002,kg -453eb875-96ea-3576-8b1e-6bffe007d58d,SESCO,II.5.1,Chaco,AR-H,annual,2020,gas oil combustion consumption by agriculture machines,43.48848,TJ,CH4,3.9,kg/TJ,169.605072,kg -453eb875-96ea-3576-8b1e-6bffe007d58d,SESCO,II.5.1,Chaco,AR-H,annual,2020,gas oil combustion consumption by agriculture machines,43.48848,TJ,N2O,3.9,kg/TJ,169.605072,kg -92ada96e-7d23-3a46-a148-becab486031c,SESCO,II.5.1,Corrientes,AR-W,annual,2020,gas oil combustion consumption by agriculture machines,39.1902,TJ,CO2,74100.0,kg/TJ,2903993.82,kg -a4db8cc9-7be0-35b4-a759-df9ddf51e5c2,SESCO,II.5.1,Corrientes,AR-W,annual,2020,gas oil combustion consumption by agriculture machines,39.1902,TJ,CH4,3.9,kg/TJ,152.84178,kg -a4db8cc9-7be0-35b4-a759-df9ddf51e5c2,SESCO,II.5.1,Corrientes,AR-W,annual,2020,gas oil combustion consumption by agriculture machines,39.1902,TJ,N2O,3.9,kg/TJ,152.84178,kg -7b7192ec-c069-3bfe-a1df-16dee08cb72e,SESCO,II.5.1,Córdoba,AR-X,annual,2020,gas oil combustion consumption by agriculture machines,493.14636,TJ,CO2,74100.0,kg/TJ,36542145.276,kg -36dffcb8-3963-3f2f-93f8-5eb8aa999d6a,SESCO,II.5.1,Córdoba,AR-X,annual,2020,gas oil combustion consumption by agriculture machines,493.14636,TJ,CH4,3.9,kg/TJ,1923.270804,kg -36dffcb8-3963-3f2f-93f8-5eb8aa999d6a,SESCO,II.5.1,Córdoba,AR-X,annual,2020,gas oil combustion consumption by agriculture machines,493.14636,TJ,N2O,3.9,kg/TJ,1923.270804,kg -24f0ee62-21c8-3195-aa83-271cf16ea6f8,SESCO,II.5.1,Entre Rios,AR-E,annual,2020,gas oil combustion consumption by agriculture machines,36.87852,TJ,CO2,74100.0,kg/TJ,2732698.332,kg -5c0cfb73-af3f-3a48-a14d-4948b2693d55,SESCO,II.5.1,Entre Rios,AR-E,annual,2020,gas oil combustion consumption by agriculture machines,36.87852,TJ,CH4,3.9,kg/TJ,143.82622800000001,kg -5c0cfb73-af3f-3a48-a14d-4948b2693d55,SESCO,II.5.1,Entre Rios,AR-E,annual,2020,gas oil combustion consumption by agriculture machines,36.87852,TJ,N2O,3.9,kg/TJ,143.82622800000001,kg -38f69280-d3f8-3c35-9701-25b16ef10289,SESCO,II.5.1,Formosa,AR-P,annual,2020,gas oil combustion consumption by agriculture machines,27.16224,TJ,CO2,74100.0,kg/TJ,2012721.984,kg -28dc202e-c8d9-3445-b12f-83af99255ed3,SESCO,II.5.1,Formosa,AR-P,annual,2020,gas oil combustion consumption by agriculture machines,27.16224,TJ,CH4,3.9,kg/TJ,105.932736,kg -28dc202e-c8d9-3445-b12f-83af99255ed3,SESCO,II.5.1,Formosa,AR-P,annual,2020,gas oil combustion consumption by agriculture machines,27.16224,TJ,N2O,3.9,kg/TJ,105.932736,kg -b84657e7-5367-3a71-b98e-7905f62fa8d2,SESCO,II.5.1,Jujuy,AR-Y,annual,2020,gas oil combustion consumption by agriculture machines,44.933279999999996,TJ,CO2,74100.0,kg/TJ,3329556.048,kg -65923aa6-618d-32d9-be98-02a279c3a514,SESCO,II.5.1,Jujuy,AR-Y,annual,2020,gas oil combustion consumption by agriculture machines,44.933279999999996,TJ,CH4,3.9,kg/TJ,175.239792,kg -65923aa6-618d-32d9-be98-02a279c3a514,SESCO,II.5.1,Jujuy,AR-Y,annual,2020,gas oil combustion consumption by agriculture machines,44.933279999999996,TJ,N2O,3.9,kg/TJ,175.239792,kg -43f891e4-fac0-33ab-ba05-ef10821ec571,SESCO,II.5.1,La Pampa,AR-L,annual,2020,gas oil combustion consumption by agriculture machines,140.00112,TJ,CO2,74100.0,kg/TJ,10374082.991999999,kg -af144b9c-0e28-3888-8897-841d37ea9891,SESCO,II.5.1,La Pampa,AR-L,annual,2020,gas oil combustion consumption by agriculture machines,140.00112,TJ,CH4,3.9,kg/TJ,546.0043679999999,kg -af144b9c-0e28-3888-8897-841d37ea9891,SESCO,II.5.1,La Pampa,AR-L,annual,2020,gas oil combustion consumption by agriculture machines,140.00112,TJ,N2O,3.9,kg/TJ,546.0043679999999,kg -2b7b8059-af6f-3a5b-ab80-bcfe3394b617,SESCO,II.5.1,La Rioja,AR-F,annual,2020,gas oil combustion consumption by agriculture machines,1.33644,TJ,CO2,74100.0,kg/TJ,99030.20400000001,kg -4a3b5d18-dd7a-35d0-b832-44a7c0140d83,SESCO,II.5.1,La Rioja,AR-F,annual,2020,gas oil combustion consumption by agriculture machines,1.33644,TJ,CH4,3.9,kg/TJ,5.212116,kg -4a3b5d18-dd7a-35d0-b832-44a7c0140d83,SESCO,II.5.1,La Rioja,AR-F,annual,2020,gas oil combustion consumption by agriculture machines,1.33644,TJ,N2O,3.9,kg/TJ,5.212116,kg -e3823fe4-2015-39d0-8777-d00e9d3d6520,SESCO,II.5.1,Mendoza,AR-M,annual,2020,gas oil combustion consumption by agriculture machines,242.79864,TJ,CO2,74100.0,kg/TJ,17991379.224,kg -45be8551-783d-3f9e-90a5-df80ccdf7800,SESCO,II.5.1,Mendoza,AR-M,annual,2020,gas oil combustion consumption by agriculture machines,242.79864,TJ,CH4,3.9,kg/TJ,946.914696,kg -45be8551-783d-3f9e-90a5-df80ccdf7800,SESCO,II.5.1,Mendoza,AR-M,annual,2020,gas oil combustion consumption by agriculture machines,242.79864,TJ,N2O,3.9,kg/TJ,946.914696,kg -d8830b46-ec3a-36ef-acc5-6d9f8b40c1c8,SESCO,II.5.1,Misiones,AR-N,annual,2020,gas oil combustion consumption by agriculture machines,80.367,TJ,CO2,74100.0,kg/TJ,5955194.7,kg -5c65978b-98bc-36ef-a4a2-3bf28bcacd7b,SESCO,II.5.1,Misiones,AR-N,annual,2020,gas oil combustion consumption by agriculture machines,80.367,TJ,CH4,3.9,kg/TJ,313.4313,kg -5c65978b-98bc-36ef-a4a2-3bf28bcacd7b,SESCO,II.5.1,Misiones,AR-N,annual,2020,gas oil combustion consumption by agriculture machines,80.367,TJ,N2O,3.9,kg/TJ,313.4313,kg -76f8a79e-6966-350c-985e-d494bfd6401d,SESCO,II.5.1,Rio Negro,AR-R,annual,2020,gas oil combustion consumption by agriculture machines,39.3708,TJ,CO2,74100.0,kg/TJ,2917376.2800000003,kg -27c7307a-3025-356c-bad5-9841d2bd2f0f,SESCO,II.5.1,Rio Negro,AR-R,annual,2020,gas oil combustion consumption by agriculture machines,39.3708,TJ,CH4,3.9,kg/TJ,153.54612,kg -27c7307a-3025-356c-bad5-9841d2bd2f0f,SESCO,II.5.1,Rio Negro,AR-R,annual,2020,gas oil combustion consumption by agriculture machines,39.3708,TJ,N2O,3.9,kg/TJ,153.54612,kg -05a43bd6-e213-3d25-beda-438cce6d9ba0,SESCO,II.5.1,Salta,AR-A,annual,2020,gas oil combustion consumption by agriculture machines,189.55776,TJ,CO2,74100.0,kg/TJ,14046230.016,kg -bbf934d6-e7ea-320c-8489-51deeee9da71,SESCO,II.5.1,Salta,AR-A,annual,2020,gas oil combustion consumption by agriculture machines,189.55776,TJ,CH4,3.9,kg/TJ,739.275264,kg -bbf934d6-e7ea-320c-8489-51deeee9da71,SESCO,II.5.1,Salta,AR-A,annual,2020,gas oil combustion consumption by agriculture machines,189.55776,TJ,N2O,3.9,kg/TJ,739.275264,kg -acbb9efe-fa82-3071-a436-94cd0e59b4ca,SESCO,II.5.1,San Juan,AR-J,annual,2020,gas oil combustion consumption by agriculture machines,66.35244,TJ,CO2,74100.0,kg/TJ,4916715.8040000005,kg -b6a55c1b-41c0-3035-805f-8f7171d0867c,SESCO,II.5.1,San Juan,AR-J,annual,2020,gas oil combustion consumption by agriculture machines,66.35244,TJ,CH4,3.9,kg/TJ,258.774516,kg -b6a55c1b-41c0-3035-805f-8f7171d0867c,SESCO,II.5.1,San Juan,AR-J,annual,2020,gas oil combustion consumption by agriculture machines,66.35244,TJ,N2O,3.9,kg/TJ,258.774516,kg -1b48a316-be22-306e-8081-a1b95b3037eb,SESCO,II.5.1,San Luis,AR-D,annual,2020,gas oil combustion consumption by agriculture machines,38.90124,TJ,CO2,74100.0,kg/TJ,2882581.884,kg -42d2c456-1307-3d9c-9fc3-5f9038bc3194,SESCO,II.5.1,San Luis,AR-D,annual,2020,gas oil combustion consumption by agriculture machines,38.90124,TJ,CH4,3.9,kg/TJ,151.714836,kg -42d2c456-1307-3d9c-9fc3-5f9038bc3194,SESCO,II.5.1,San Luis,AR-D,annual,2020,gas oil combustion consumption by agriculture machines,38.90124,TJ,N2O,3.9,kg/TJ,151.714836,kg -b7bf0bdc-d9b9-3bd3-a3bd-f8720ee40b07,SESCO,II.5.1,Santa Fe,AR-S,annual,2020,gas oil combustion consumption by agriculture machines,654.74724,TJ,CO2,74100.0,kg/TJ,48516770.484000005,kg -c7c92d17-d604-3be2-a467-9d16c2ee6de3,SESCO,II.5.1,Santa Fe,AR-S,annual,2020,gas oil combustion consumption by agriculture machines,654.74724,TJ,CH4,3.9,kg/TJ,2553.514236,kg -c7c92d17-d604-3be2-a467-9d16c2ee6de3,SESCO,II.5.1,Santa Fe,AR-S,annual,2020,gas oil combustion consumption by agriculture machines,654.74724,TJ,N2O,3.9,kg/TJ,2553.514236,kg -ae59cf59-8186-34f0-ba85-3f8589daf7ae,SESCO,II.5.1,Santiago del Estero,AR-G,annual,2020,gas oil combustion consumption by agriculture machines,203.57232,TJ,CO2,74100.0,kg/TJ,15084708.911999999,kg -093d38a4-ea2f-300c-bb2f-4048eb535927,SESCO,II.5.1,Santiago del Estero,AR-G,annual,2020,gas oil combustion consumption by agriculture machines,203.57232,TJ,CH4,3.9,kg/TJ,793.9320479999999,kg -093d38a4-ea2f-300c-bb2f-4048eb535927,SESCO,II.5.1,Santiago del Estero,AR-G,annual,2020,gas oil combustion consumption by agriculture machines,203.57232,TJ,N2O,3.9,kg/TJ,793.9320479999999,kg -72ce0191-ff44-3b8b-b2e2-0f4a9c986993,SESCO,II.5.1,Tucuman,AR-T,annual,2020,gas oil combustion consumption by agriculture machines,129.56244,TJ,CO2,74100.0,kg/TJ,9600576.804000001,kg -f6b2bb84-35fc-309a-87d9-40bc7dd7de72,SESCO,II.5.1,Tucuman,AR-T,annual,2020,gas oil combustion consumption by agriculture machines,129.56244,TJ,CH4,3.9,kg/TJ,505.293516,kg -f6b2bb84-35fc-309a-87d9-40bc7dd7de72,SESCO,II.5.1,Tucuman,AR-T,annual,2020,gas oil combustion consumption by agriculture machines,129.56244,TJ,N2O,3.9,kg/TJ,505.293516,kg -18d693ff-6f6d-33a2-ac33-d9f99d252ae4,SESCO,II.5.1,Buenos Aires,AR-B,annual,2020,jet kerosene combustion consumption by agriculture machines,5.158291999999999,TJ,CO2,71500.0,kg/TJ,368817.87799999997,kg -812afa24-741e-3926-865a-68d2dfed32b5,SESCO,II.5.1,Buenos Aires,AR-B,annual,2020,jet kerosene combustion consumption by agriculture machines,5.158291999999999,TJ,CH4,0.5,kg/TJ,2.5791459999999997,kg -7a77c70c-fa99-341f-bdc9-44a0e2a95d9e,SESCO,II.5.1,Buenos Aires,AR-B,annual,2020,jet kerosene combustion consumption by agriculture machines,5.158291999999999,TJ,N2O,2.0,kg/TJ,10.316583999999999,kg -11b9baef-3706-3fd4-9f1c-cb581ac4b75b,SESCO,II.5.1,Córdoba,AR-X,annual,2020,jet kerosene combustion consumption by agriculture machines,0.62906,TJ,CO2,71500.0,kg/TJ,44977.78999999999,kg -e4a00eb6-4649-3045-a36c-a3da6a04d8c6,SESCO,II.5.1,Córdoba,AR-X,annual,2020,jet kerosene combustion consumption by agriculture machines,0.62906,TJ,CH4,0.5,kg/TJ,0.31453,kg -845cbfb1-a493-3cfb-80e7-7a024903736c,SESCO,II.5.1,Córdoba,AR-X,annual,2020,jet kerosene combustion consumption by agriculture machines,0.62906,TJ,N2O,2.0,kg/TJ,1.25812,kg -fe5fc053-21ef-34d8-a49d-f7ca64f8c5b4,SESCO,II.5.1,Santa Fe,AR-S,annual,2020,jet kerosene combustion consumption by agriculture machines,0.8492309999999998,TJ,CO2,71500.0,kg/TJ,60720.01649999999,kg -8876fb04-a500-35d7-abe9-b8d6f9fae2bf,SESCO,II.5.1,Santa Fe,AR-S,annual,2020,jet kerosene combustion consumption by agriculture machines,0.8492309999999998,TJ,CH4,0.5,kg/TJ,0.4246154999999999,kg -f184909f-18e4-3e93-822e-727937d000e7,SESCO,II.5.1,Santa Fe,AR-S,annual,2020,jet kerosene combustion consumption by agriculture machines,0.8492309999999998,TJ,N2O,2.0,kg/TJ,1.6984619999999997,kg -1938c5fe-4efc-3ac4-88d3-fdcfac0a4799,SESCO,II.1.1,Buenos Aires,AR-B,annual,2020,gas oil combustion consumption by to the public,22938.25884,TJ,CO2,74100.0,kg/TJ,1699724980.044,kg -4fcb34a2-d154-3e4c-a2e8-b365398e57ee,SESCO,II.1.1,Buenos Aires,AR-B,annual,2020,gas oil combustion consumption by to the public,22938.25884,TJ,CH4,3.9,kg/TJ,89459.20947599999,kg -4fcb34a2-d154-3e4c-a2e8-b365398e57ee,SESCO,II.1.1,Buenos Aires,AR-B,annual,2020,gas oil combustion consumption by to the public,22938.25884,TJ,N2O,3.9,kg/TJ,89459.20947599999,kg -561f38fc-756a-3227-bf66-a5f1d9e9f267,SESCO,II.1.1,Capital Federal,AR-C,annual,2020,gas oil combustion consumption by to the public,2239.44,TJ,CO2,74100.0,kg/TJ,165942504.0,kg -5d0dca6b-745d-34a9-9ea9-2c3adb5934f8,SESCO,II.1.1,Capital Federal,AR-C,annual,2020,gas oil combustion consumption by to the public,2239.44,TJ,CH4,3.9,kg/TJ,8733.816,kg -5d0dca6b-745d-34a9-9ea9-2c3adb5934f8,SESCO,II.1.1,Capital Federal,AR-C,annual,2020,gas oil combustion consumption by to the public,2239.44,TJ,N2O,3.9,kg/TJ,8733.816,kg -de644eb7-6798-3337-8cec-365ad18fd669,SESCO,II.1.1,Catamarca,AR-K,annual,2020,gas oil combustion consumption by to the public,220.76543999999998,TJ,CO2,74100.0,kg/TJ,16358719.103999998,kg -216c1361-45a8-395c-9a20-cdf53c6785cd,SESCO,II.1.1,Catamarca,AR-K,annual,2020,gas oil combustion consumption by to the public,220.76543999999998,TJ,CH4,3.9,kg/TJ,860.9852159999999,kg -216c1361-45a8-395c-9a20-cdf53c6785cd,SESCO,II.1.1,Catamarca,AR-K,annual,2020,gas oil combustion consumption by to the public,220.76543999999998,TJ,N2O,3.9,kg/TJ,860.9852159999999,kg -16c7fa77-cfdb-331d-af06-0abed71e8f2d,SESCO,II.1.1,Chaco,AR-H,annual,2020,gas oil combustion consumption by to the public,1724.47716,TJ,CO2,74100.0,kg/TJ,127783757.556,kg -a6705d54-23bd-368c-b7c0-ca7a81d78942,SESCO,II.1.1,Chaco,AR-H,annual,2020,gas oil combustion consumption by to the public,1724.47716,TJ,CH4,3.9,kg/TJ,6725.460923999999,kg -a6705d54-23bd-368c-b7c0-ca7a81d78942,SESCO,II.1.1,Chaco,AR-H,annual,2020,gas oil combustion consumption by to the public,1724.47716,TJ,N2O,3.9,kg/TJ,6725.460923999999,kg -5d04fe82-5579-3658-8aef-787853d931ff,SESCO,II.1.1,Chubut,AR-U,annual,2020,gas oil combustion consumption by to the public,2281.30308,TJ,CO2,74100.0,kg/TJ,169044558.22800002,kg -19aef273-425e-3671-9b68-810f89384340,SESCO,II.1.1,Chubut,AR-U,annual,2020,gas oil combustion consumption by to the public,2281.30308,TJ,CH4,3.9,kg/TJ,8897.082012,kg -19aef273-425e-3671-9b68-810f89384340,SESCO,II.1.1,Chubut,AR-U,annual,2020,gas oil combustion consumption by to the public,2281.30308,TJ,N2O,3.9,kg/TJ,8897.082012,kg -65ba4503-1696-3521-a07a-08be62b6eea0,SESCO,II.1.1,Corrientes,AR-W,annual,2020,gas oil combustion consumption by to the public,1616.94792,TJ,CO2,74100.0,kg/TJ,119815840.87200001,kg -2fd7bc31-54eb-34ab-b5b5-c1f69e00f773,SESCO,II.1.1,Corrientes,AR-W,annual,2020,gas oil combustion consumption by to the public,1616.94792,TJ,CH4,3.9,kg/TJ,6306.096888,kg -2fd7bc31-54eb-34ab-b5b5-c1f69e00f773,SESCO,II.1.1,Corrientes,AR-W,annual,2020,gas oil combustion consumption by to the public,1616.94792,TJ,N2O,3.9,kg/TJ,6306.096888,kg -cd719fc8-1c26-3e9f-8b99-6c015fb0c758,SESCO,II.1.1,Córdoba,AR-X,annual,2020,gas oil combustion consumption by to the public,8539.45428,TJ,CO2,74100.0,kg/TJ,632773562.148,kg -000a9c52-71c8-3a06-a780-da31025de1bd,SESCO,II.1.1,Córdoba,AR-X,annual,2020,gas oil combustion consumption by to the public,8539.45428,TJ,CH4,3.9,kg/TJ,33303.871692,kg -000a9c52-71c8-3a06-a780-da31025de1bd,SESCO,II.1.1,Córdoba,AR-X,annual,2020,gas oil combustion consumption by to the public,8539.45428,TJ,N2O,3.9,kg/TJ,33303.871692,kg -9164b654-f3d0-3590-8caf-902295de24ba,SESCO,II.1.1,Entre Rios,AR-E,annual,2020,gas oil combustion consumption by to the public,3077.82132,TJ,CO2,74100.0,kg/TJ,228066559.812,kg -f9c5fc9e-7d46-3e67-b328-d4fb8ddda7fb,SESCO,II.1.1,Entre Rios,AR-E,annual,2020,gas oil combustion consumption by to the public,3077.82132,TJ,CH4,3.9,kg/TJ,12003.503148,kg -f9c5fc9e-7d46-3e67-b328-d4fb8ddda7fb,SESCO,II.1.1,Entre Rios,AR-E,annual,2020,gas oil combustion consumption by to the public,3077.82132,TJ,N2O,3.9,kg/TJ,12003.503148,kg -55a098b4-7fea-3848-9f9a-fee8d10b0070,SESCO,II.1.1,Formosa,AR-P,annual,2020,gas oil combustion consumption by to the public,532.11984,TJ,CO2,74100.0,kg/TJ,39430080.143999994,kg -24b4fe91-4c7d-3029-b574-3e3a7746345c,SESCO,II.1.1,Formosa,AR-P,annual,2020,gas oil combustion consumption by to the public,532.11984,TJ,CH4,3.9,kg/TJ,2075.267376,kg -24b4fe91-4c7d-3029-b574-3e3a7746345c,SESCO,II.1.1,Formosa,AR-P,annual,2020,gas oil combustion consumption by to the public,532.11984,TJ,N2O,3.9,kg/TJ,2075.267376,kg -c9583c9c-7ce0-3b48-8848-49d978782455,SESCO,II.1.1,Jujuy,AR-Y,annual,2020,gas oil combustion consumption by to the public,1188.74532,TJ,CO2,74100.0,kg/TJ,88086028.212,kg -d931880f-657c-31bc-b67f-2a99a358c0b8,SESCO,II.1.1,Jujuy,AR-Y,annual,2020,gas oil combustion consumption by to the public,1188.74532,TJ,CH4,3.9,kg/TJ,4636.106748,kg -d931880f-657c-31bc-b67f-2a99a358c0b8,SESCO,II.1.1,Jujuy,AR-Y,annual,2020,gas oil combustion consumption by to the public,1188.74532,TJ,N2O,3.9,kg/TJ,4636.106748,kg -fee62b1f-2b09-3062-b213-3886e5b130be,SESCO,II.1.1,La Pampa,AR-L,annual,2020,gas oil combustion consumption by to the public,1983.06024,TJ,CO2,74100.0,kg/TJ,146944763.784,kg -f04d5992-44c3-368b-9586-5453d53b16c0,SESCO,II.1.1,La Pampa,AR-L,annual,2020,gas oil combustion consumption by to the public,1983.06024,TJ,CH4,3.9,kg/TJ,7733.934936,kg -f04d5992-44c3-368b-9586-5453d53b16c0,SESCO,II.1.1,La Pampa,AR-L,annual,2020,gas oil combustion consumption by to the public,1983.06024,TJ,N2O,3.9,kg/TJ,7733.934936,kg -8a81d5bf-644f-3d6f-b218-83eedc24e284,SESCO,II.1.1,La Rioja,AR-F,annual,2020,gas oil combustion consumption by to the public,403.49652,TJ,CO2,74100.0,kg/TJ,29899092.132,kg -40991c8d-164b-3ea3-8d5c-8777a88c533a,SESCO,II.1.1,La Rioja,AR-F,annual,2020,gas oil combustion consumption by to the public,403.49652,TJ,CH4,3.9,kg/TJ,1573.6364279999998,kg -40991c8d-164b-3ea3-8d5c-8777a88c533a,SESCO,II.1.1,La Rioja,AR-F,annual,2020,gas oil combustion consumption by to the public,403.49652,TJ,N2O,3.9,kg/TJ,1573.6364279999998,kg -60e91bfd-a725-31a5-8ad5-a59fd725a439,SESCO,II.1.1,Mendoza,AR-M,annual,2020,gas oil combustion consumption by to the public,6946.0566,TJ,CO2,74100.0,kg/TJ,514702794.06,kg -b660a5ef-1a75-35f4-b2d9-768dea148c56,SESCO,II.1.1,Mendoza,AR-M,annual,2020,gas oil combustion consumption by to the public,6946.0566,TJ,CH4,3.9,kg/TJ,27089.62074,kg -b660a5ef-1a75-35f4-b2d9-768dea148c56,SESCO,II.1.1,Mendoza,AR-M,annual,2020,gas oil combustion consumption by to the public,6946.0566,TJ,N2O,3.9,kg/TJ,27089.62074,kg -e1979dfa-aafa-3aa2-b3ed-3267ad1cdb1c,SESCO,II.1.1,Misiones,AR-N,annual,2020,gas oil combustion consumption by to the public,2410.57656,TJ,CO2,74100.0,kg/TJ,178623723.096,kg -3fdb18ae-7aed-36a4-bfe1-ff909b22fbd1,SESCO,II.1.1,Misiones,AR-N,annual,2020,gas oil combustion consumption by to the public,2410.57656,TJ,CH4,3.9,kg/TJ,9401.248583999999,kg -3fdb18ae-7aed-36a4-bfe1-ff909b22fbd1,SESCO,II.1.1,Misiones,AR-N,annual,2020,gas oil combustion consumption by to the public,2410.57656,TJ,N2O,3.9,kg/TJ,9401.248583999999,kg -d270ccee-32b7-337f-96e3-f7ce278e86f0,SESCO,II.1.1,Neuquén,AR-Q,annual,2020,gas oil combustion consumption by to the public,1225.3709999999999,TJ,CO2,74100.0,kg/TJ,90799991.1,kg -beec72da-9a7d-3eff-96ee-7edd9ad19cf2,SESCO,II.1.1,Neuquén,AR-Q,annual,2020,gas oil combustion consumption by to the public,1225.3709999999999,TJ,CH4,3.9,kg/TJ,4778.946899999999,kg -beec72da-9a7d-3eff-96ee-7edd9ad19cf2,SESCO,II.1.1,Neuquén,AR-Q,annual,2020,gas oil combustion consumption by to the public,1225.3709999999999,TJ,N2O,3.9,kg/TJ,4778.946899999999,kg -e88eca33-b4c3-3dd9-91b0-c94caa4d0c46,SESCO,II.1.1,Rio Negro,AR-R,annual,2020,gas oil combustion consumption by to the public,2818.29912,TJ,CO2,74100.0,kg/TJ,208835964.792,kg -aa101629-a8f2-3038-abfd-be7b2446eae6,SESCO,II.1.1,Rio Negro,AR-R,annual,2020,gas oil combustion consumption by to the public,2818.29912,TJ,CH4,3.9,kg/TJ,10991.366568,kg -aa101629-a8f2-3038-abfd-be7b2446eae6,SESCO,II.1.1,Rio Negro,AR-R,annual,2020,gas oil combustion consumption by to the public,2818.29912,TJ,N2O,3.9,kg/TJ,10991.366568,kg -61be544c-3e4b-3ca2-a52f-872337ab6a96,SESCO,II.1.1,Salta,AR-A,annual,2020,gas oil combustion consumption by to the public,2887.83012,TJ,CO2,74100.0,kg/TJ,213988211.89200002,kg -3f28e7ce-0f61-3248-a9e6-a147ad4af771,SESCO,II.1.1,Salta,AR-A,annual,2020,gas oil combustion consumption by to the public,2887.83012,TJ,CH4,3.9,kg/TJ,11262.537468,kg -3f28e7ce-0f61-3248-a9e6-a147ad4af771,SESCO,II.1.1,Salta,AR-A,annual,2020,gas oil combustion consumption by to the public,2887.83012,TJ,N2O,3.9,kg/TJ,11262.537468,kg -0db8e212-8b65-3afb-89e8-916a1c09fd4f,SESCO,II.1.1,San Juan,AR-J,annual,2020,gas oil combustion consumption by to the public,1331.81664,TJ,CO2,74100.0,kg/TJ,98687613.024,kg -d920931d-8712-38b1-9b94-6f79ea7fc089,SESCO,II.1.1,San Juan,AR-J,annual,2020,gas oil combustion consumption by to the public,1331.81664,TJ,CH4,3.9,kg/TJ,5194.084896,kg -d920931d-8712-38b1-9b94-6f79ea7fc089,SESCO,II.1.1,San Juan,AR-J,annual,2020,gas oil combustion consumption by to the public,1331.81664,TJ,N2O,3.9,kg/TJ,5194.084896,kg -c5065b98-f6fd-3982-8bf3-b25141584f84,SESCO,II.1.1,San Luis,AR-D,annual,2020,gas oil combustion consumption by to the public,1007.3868,TJ,CO2,74100.0,kg/TJ,74647361.88,kg -3a00faf5-a4ff-38fc-b51a-e47e6eee32d3,SESCO,II.1.1,San Luis,AR-D,annual,2020,gas oil combustion consumption by to the public,1007.3868,TJ,CH4,3.9,kg/TJ,3928.80852,kg -3a00faf5-a4ff-38fc-b51a-e47e6eee32d3,SESCO,II.1.1,San Luis,AR-D,annual,2020,gas oil combustion consumption by to the public,1007.3868,TJ,N2O,3.9,kg/TJ,3928.80852,kg -38ef8ba8-182a-3f2a-8a26-ab335d853293,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2020,gas oil combustion consumption by to the public,1343.4472799999999,TJ,CO2,74100.0,kg/TJ,99549443.44799998,kg -2455b892-3dab-375d-bd54-e431ed93e9aa,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2020,gas oil combustion consumption by to the public,1343.4472799999999,TJ,CH4,3.9,kg/TJ,5239.444391999999,kg -2455b892-3dab-375d-bd54-e431ed93e9aa,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2020,gas oil combustion consumption by to the public,1343.4472799999999,TJ,N2O,3.9,kg/TJ,5239.444391999999,kg -484ec19c-c70e-3bef-b6b4-f35bf0081052,SESCO,II.1.1,Santa Fe,AR-S,annual,2020,gas oil combustion consumption by to the public,6775.5702,TJ,CO2,74100.0,kg/TJ,502069751.82,kg -e96c233e-9936-31a7-8810-161e0e6d2d45,SESCO,II.1.1,Santa Fe,AR-S,annual,2020,gas oil combustion consumption by to the public,6775.5702,TJ,CH4,3.9,kg/TJ,26424.72378,kg -e96c233e-9936-31a7-8810-161e0e6d2d45,SESCO,II.1.1,Santa Fe,AR-S,annual,2020,gas oil combustion consumption by to the public,6775.5702,TJ,N2O,3.9,kg/TJ,26424.72378,kg -9ecb4556-c5aa-3b95-9640-b38fbde736e6,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2020,gas oil combustion consumption by to the public,2029.36608,TJ,CO2,74100.0,kg/TJ,150376026.528,kg -cc47dd12-6cd3-38f7-a50e-6595c4b207cb,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2020,gas oil combustion consumption by to the public,2029.36608,TJ,CH4,3.9,kg/TJ,7914.527712,kg -cc47dd12-6cd3-38f7-a50e-6595c4b207cb,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2020,gas oil combustion consumption by to the public,2029.36608,TJ,N2O,3.9,kg/TJ,7914.527712,kg -c2a0f302-361b-3566-894c-5f68437e555d,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2020,gas oil combustion consumption by to the public,583.12128,TJ,CO2,74100.0,kg/TJ,43209286.848,kg -e4a7201b-cc68-37ea-972c-9ba41894d6e6,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2020,gas oil combustion consumption by to the public,583.12128,TJ,CH4,3.9,kg/TJ,2274.172992,kg -e4a7201b-cc68-37ea-972c-9ba41894d6e6,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2020,gas oil combustion consumption by to the public,583.12128,TJ,N2O,3.9,kg/TJ,2274.172992,kg -a5b89033-a547-36a4-9539-bd5e985a9239,SESCO,II.1.1,Tucuman,AR-T,annual,2020,gas oil combustion consumption by to the public,1720.10664,TJ,CO2,74100.0,kg/TJ,127459902.024,kg -48ddfcdb-3315-3b3a-9eca-adba9d3bb83d,SESCO,II.1.1,Tucuman,AR-T,annual,2020,gas oil combustion consumption by to the public,1720.10664,TJ,CH4,3.9,kg/TJ,6708.4158959999995,kg -48ddfcdb-3315-3b3a-9eca-adba9d3bb83d,SESCO,II.1.1,Tucuman,AR-T,annual,2020,gas oil combustion consumption by to the public,1720.10664,TJ,N2O,3.9,kg/TJ,6708.4158959999995,kg -04e23bc3-e1e1-30cb-b1ef-98b63aed02e3,SESCO,II.1.1,Buenos Aires,AR-B,annual,2020,gas oil combustion consumption by to the public,12036.99,TJ,CO2,74100.0,kg/TJ,891940959.0,kg -1f5e23c4-ce0f-3019-b529-894d3342b0ad,SESCO,II.1.1,Buenos Aires,AR-B,annual,2020,gas oil combustion consumption by to the public,12036.99,TJ,CH4,3.9,kg/TJ,46944.261,kg -1f5e23c4-ce0f-3019-b529-894d3342b0ad,SESCO,II.1.1,Buenos Aires,AR-B,annual,2020,gas oil combustion consumption by to the public,12036.99,TJ,N2O,3.9,kg/TJ,46944.261,kg -49a21dc6-bade-3e46-aa98-4cdd2a45fc62,SESCO,II.1.1,Capital Federal,AR-C,annual,2020,gas oil combustion consumption by to the public,1523.1804,TJ,CO2,74100.0,kg/TJ,112867667.64,kg -0da52e38-03f4-37a4-a3b4-756b99f1e86c,SESCO,II.1.1,Capital Federal,AR-C,annual,2020,gas oil combustion consumption by to the public,1523.1804,TJ,CH4,3.9,kg/TJ,5940.40356,kg -0da52e38-03f4-37a4-a3b4-756b99f1e86c,SESCO,II.1.1,Capital Federal,AR-C,annual,2020,gas oil combustion consumption by to the public,1523.1804,TJ,N2O,3.9,kg/TJ,5940.40356,kg -a3a929e4-5d0f-3303-a250-d057eeb7eed5,SESCO,II.1.1,Catamarca,AR-K,annual,2020,gas oil combustion consumption by to the public,266.16828,TJ,CO2,74100.0,kg/TJ,19723069.548,kg -4fc619f5-2ce1-3f57-a1b5-2cd8834a7086,SESCO,II.1.1,Catamarca,AR-K,annual,2020,gas oil combustion consumption by to the public,266.16828,TJ,CH4,3.9,kg/TJ,1038.056292,kg -4fc619f5-2ce1-3f57-a1b5-2cd8834a7086,SESCO,II.1.1,Catamarca,AR-K,annual,2020,gas oil combustion consumption by to the public,266.16828,TJ,N2O,3.9,kg/TJ,1038.056292,kg -e31c8508-cdc9-3341-8b86-2a159f1999c7,SESCO,II.1.1,Chaco,AR-H,annual,2020,gas oil combustion consumption by to the public,870.02244,TJ,CO2,74100.0,kg/TJ,64468662.804,kg -48f657d4-3b76-32ad-8d76-74a61d20af1d,SESCO,II.1.1,Chaco,AR-H,annual,2020,gas oil combustion consumption by to the public,870.02244,TJ,CH4,3.9,kg/TJ,3393.0875159999996,kg -48f657d4-3b76-32ad-8d76-74a61d20af1d,SESCO,II.1.1,Chaco,AR-H,annual,2020,gas oil combustion consumption by to the public,870.02244,TJ,N2O,3.9,kg/TJ,3393.0875159999996,kg -9e2af05d-f132-354f-8efb-8fb83bf6ff9a,SESCO,II.1.1,Chubut,AR-U,annual,2020,gas oil combustion consumption by to the public,1479.36684,TJ,CO2,74100.0,kg/TJ,109621082.844,kg -d389c2b0-7ad6-3b98-8a78-7da7541345d1,SESCO,II.1.1,Chubut,AR-U,annual,2020,gas oil combustion consumption by to the public,1479.36684,TJ,CH4,3.9,kg/TJ,5769.530675999999,kg -d389c2b0-7ad6-3b98-8a78-7da7541345d1,SESCO,II.1.1,Chubut,AR-U,annual,2020,gas oil combustion consumption by to the public,1479.36684,TJ,N2O,3.9,kg/TJ,5769.530675999999,kg -590d5da5-57e0-345f-8898-2472a7789930,SESCO,II.1.1,Corrientes,AR-W,annual,2020,gas oil combustion consumption by to the public,914.4861599999999,TJ,CO2,74100.0,kg/TJ,67763424.456,kg -bb323e78-8d87-3d03-adca-64823070a982,SESCO,II.1.1,Corrientes,AR-W,annual,2020,gas oil combustion consumption by to the public,914.4861599999999,TJ,CH4,3.9,kg/TJ,3566.4960239999996,kg -bb323e78-8d87-3d03-adca-64823070a982,SESCO,II.1.1,Corrientes,AR-W,annual,2020,gas oil combustion consumption by to the public,914.4861599999999,TJ,N2O,3.9,kg/TJ,3566.4960239999996,kg -e2a0ff2c-2f96-3eaf-b364-ece9dfd12972,SESCO,II.1.1,Córdoba,AR-X,annual,2020,gas oil combustion consumption by to the public,3753.0486,TJ,CO2,74100.0,kg/TJ,278100901.26,kg -60fbaf7d-10e2-3de6-8566-c72b9088a471,SESCO,II.1.1,Córdoba,AR-X,annual,2020,gas oil combustion consumption by to the public,3753.0486,TJ,CH4,3.9,kg/TJ,14636.88954,kg -60fbaf7d-10e2-3de6-8566-c72b9088a471,SESCO,II.1.1,Córdoba,AR-X,annual,2020,gas oil combustion consumption by to the public,3753.0486,TJ,N2O,3.9,kg/TJ,14636.88954,kg -d57a8f59-aa2a-395f-ac2f-f37d9cfce4ed,SESCO,II.1.1,Entre Rios,AR-E,annual,2020,gas oil combustion consumption by to the public,1261.81608,TJ,CO2,74100.0,kg/TJ,93500571.528,kg -730683d8-b923-310f-aab1-9566c33f0b06,SESCO,II.1.1,Entre Rios,AR-E,annual,2020,gas oil combustion consumption by to the public,1261.81608,TJ,CH4,3.9,kg/TJ,4921.082712,kg -730683d8-b923-310f-aab1-9566c33f0b06,SESCO,II.1.1,Entre Rios,AR-E,annual,2020,gas oil combustion consumption by to the public,1261.81608,TJ,N2O,3.9,kg/TJ,4921.082712,kg -6ce7c612-c5b8-3d86-b7de-f52b80d2d54d,SESCO,II.1.1,Formosa,AR-P,annual,2020,gas oil combustion consumption by to the public,324.64656,TJ,CO2,74100.0,kg/TJ,24056310.096,kg -16a9c257-5bb8-31c1-94c6-1ca40e0d933c,SESCO,II.1.1,Formosa,AR-P,annual,2020,gas oil combustion consumption by to the public,324.64656,TJ,CH4,3.9,kg/TJ,1266.121584,kg -16a9c257-5bb8-31c1-94c6-1ca40e0d933c,SESCO,II.1.1,Formosa,AR-P,annual,2020,gas oil combustion consumption by to the public,324.64656,TJ,N2O,3.9,kg/TJ,1266.121584,kg -9eddc1d1-8862-35ff-b7e5-a4f1afb07cda,SESCO,II.1.1,Jujuy,AR-Y,annual,2020,gas oil combustion consumption by to the public,684.6546,TJ,CO2,74100.0,kg/TJ,50732905.86,kg -1b30c1e5-53b5-3be5-9efe-6653b267e2dd,SESCO,II.1.1,Jujuy,AR-Y,annual,2020,gas oil combustion consumption by to the public,684.6546,TJ,CH4,3.9,kg/TJ,2670.15294,kg -1b30c1e5-53b5-3be5-9efe-6653b267e2dd,SESCO,II.1.1,Jujuy,AR-Y,annual,2020,gas oil combustion consumption by to the public,684.6546,TJ,N2O,3.9,kg/TJ,2670.15294,kg -de40da33-a7aa-3699-a5bd-8224ebc7a556,SESCO,II.1.1,La Pampa,AR-L,annual,2020,gas oil combustion consumption by to the public,941.35944,TJ,CO2,74100.0,kg/TJ,69754734.504,kg -eb21cc64-88ed-37c7-8f3d-042839b1ccaa,SESCO,II.1.1,La Pampa,AR-L,annual,2020,gas oil combustion consumption by to the public,941.35944,TJ,CH4,3.9,kg/TJ,3671.3018159999997,kg -eb21cc64-88ed-37c7-8f3d-042839b1ccaa,SESCO,II.1.1,La Pampa,AR-L,annual,2020,gas oil combustion consumption by to the public,941.35944,TJ,N2O,3.9,kg/TJ,3671.3018159999997,kg -b8eb82f1-60f5-3dcd-83d1-eca8e869b041,SESCO,II.1.1,La Rioja,AR-F,annual,2020,gas oil combustion consumption by to the public,351.19476,TJ,CO2,74100.0,kg/TJ,26023531.716,kg -1c873c9a-d9c1-3cc4-aaaa-761ed2755d8b,SESCO,II.1.1,La Rioja,AR-F,annual,2020,gas oil combustion consumption by to the public,351.19476,TJ,CH4,3.9,kg/TJ,1369.6595639999998,kg -1c873c9a-d9c1-3cc4-aaaa-761ed2755d8b,SESCO,II.1.1,La Rioja,AR-F,annual,2020,gas oil combustion consumption by to the public,351.19476,TJ,N2O,3.9,kg/TJ,1369.6595639999998,kg -0b1da162-e857-3be2-83ad-82ec47704fbc,SESCO,II.1.1,Mendoza,AR-M,annual,2020,gas oil combustion consumption by to the public,2767.80336,TJ,CO2,74100.0,kg/TJ,205094228.97599998,kg -164b3338-b6bf-3b5b-8ea2-e50552c168a1,SESCO,II.1.1,Mendoza,AR-M,annual,2020,gas oil combustion consumption by to the public,2767.80336,TJ,CH4,3.9,kg/TJ,10794.433104,kg -164b3338-b6bf-3b5b-8ea2-e50552c168a1,SESCO,II.1.1,Mendoza,AR-M,annual,2020,gas oil combustion consumption by to the public,2767.80336,TJ,N2O,3.9,kg/TJ,10794.433104,kg -68a98535-0293-3dcf-9824-d8cba51fc49e,SESCO,II.1.1,Misiones,AR-N,annual,2020,gas oil combustion consumption by to the public,1057.12404,TJ,CO2,74100.0,kg/TJ,78332891.364,kg -302502e0-57f9-3fe3-b566-b2903727267c,SESCO,II.1.1,Misiones,AR-N,annual,2020,gas oil combustion consumption by to the public,1057.12404,TJ,CH4,3.9,kg/TJ,4122.783756,kg -302502e0-57f9-3fe3-b566-b2903727267c,SESCO,II.1.1,Misiones,AR-N,annual,2020,gas oil combustion consumption by to the public,1057.12404,TJ,N2O,3.9,kg/TJ,4122.783756,kg -ddf4c9c2-7c53-3709-9e04-9cda972f5771,SESCO,II.1.1,Neuquén,AR-Q,annual,2020,gas oil combustion consumption by to the public,1716.09732,TJ,CO2,74100.0,kg/TJ,127162811.412,kg -1a7fe81d-0b24-350e-9fe3-e94f035be7fb,SESCO,II.1.1,Neuquén,AR-Q,annual,2020,gas oil combustion consumption by to the public,1716.09732,TJ,CH4,3.9,kg/TJ,6692.779548,kg -1a7fe81d-0b24-350e-9fe3-e94f035be7fb,SESCO,II.1.1,Neuquén,AR-Q,annual,2020,gas oil combustion consumption by to the public,1716.09732,TJ,N2O,3.9,kg/TJ,6692.779548,kg -5a3911d5-af1e-3638-bf57-8ad659866960,SESCO,II.1.1,Rio Negro,AR-R,annual,2020,gas oil combustion consumption by to the public,1289.23116,TJ,CO2,74100.0,kg/TJ,95532028.956,kg -bb0699d5-7f23-3f71-a115-f6aa4085e98c,SESCO,II.1.1,Rio Negro,AR-R,annual,2020,gas oil combustion consumption by to the public,1289.23116,TJ,CH4,3.9,kg/TJ,5028.001524,kg -bb0699d5-7f23-3f71-a115-f6aa4085e98c,SESCO,II.1.1,Rio Negro,AR-R,annual,2020,gas oil combustion consumption by to the public,1289.23116,TJ,N2O,3.9,kg/TJ,5028.001524,kg -ce570e24-0514-3e55-abd9-ced18e01a3ec,SESCO,II.1.1,Salta,AR-A,annual,2020,gas oil combustion consumption by to the public,1495.9820399999999,TJ,CO2,74100.0,kg/TJ,110852269.16399999,kg -ab49da67-ed8e-3bc4-9e5c-f7222457aaa8,SESCO,II.1.1,Salta,AR-A,annual,2020,gas oil combustion consumption by to the public,1495.9820399999999,TJ,CH4,3.9,kg/TJ,5834.329956,kg -ab49da67-ed8e-3bc4-9e5c-f7222457aaa8,SESCO,II.1.1,Salta,AR-A,annual,2020,gas oil combustion consumption by to the public,1495.9820399999999,TJ,N2O,3.9,kg/TJ,5834.329956,kg -a25e4715-d7f5-3385-9b86-51870002fbb1,SESCO,II.1.1,San Juan,AR-J,annual,2020,gas oil combustion consumption by to the public,658.7204399999999,TJ,CO2,74100.0,kg/TJ,48811184.603999995,kg -31090056-1a1a-35f3-8e1e-87b0b2f3eebb,SESCO,II.1.1,San Juan,AR-J,annual,2020,gas oil combustion consumption by to the public,658.7204399999999,TJ,CH4,3.9,kg/TJ,2569.0097159999996,kg -31090056-1a1a-35f3-8e1e-87b0b2f3eebb,SESCO,II.1.1,San Juan,AR-J,annual,2020,gas oil combustion consumption by to the public,658.7204399999999,TJ,N2O,3.9,kg/TJ,2569.0097159999996,kg -40c41146-8416-3445-adce-87a6cab2aebc,SESCO,II.1.1,San Luis,AR-D,annual,2020,gas oil combustion consumption by to the public,475.55592,TJ,CO2,74100.0,kg/TJ,35238693.672,kg -d7907047-f995-3f69-81a3-df7871cd462b,SESCO,II.1.1,San Luis,AR-D,annual,2020,gas oil combustion consumption by to the public,475.55592,TJ,CH4,3.9,kg/TJ,1854.6680880000001,kg -d7907047-f995-3f69-81a3-df7871cd462b,SESCO,II.1.1,San Luis,AR-D,annual,2020,gas oil combustion consumption by to the public,475.55592,TJ,N2O,3.9,kg/TJ,1854.6680880000001,kg -0d37da98-317d-39dc-9a2a-86e542297cb6,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2020,gas oil combustion consumption by to the public,989.1462,TJ,CO2,74100.0,kg/TJ,73295733.42,kg -97c260a0-b8ea-3ad3-85d2-e5865b44dff7,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2020,gas oil combustion consumption by to the public,989.1462,TJ,CH4,3.9,kg/TJ,3857.67018,kg -97c260a0-b8ea-3ad3-85d2-e5865b44dff7,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2020,gas oil combustion consumption by to the public,989.1462,TJ,N2O,3.9,kg/TJ,3857.67018,kg -80eab6a1-be86-3a6c-adb5-2ebd622d15f3,SESCO,II.1.1,Santa Fe,AR-S,annual,2020,gas oil combustion consumption by to the public,2903.5062,TJ,CO2,74100.0,kg/TJ,215149809.42,kg -d5915a33-0eab-388f-9e7d-0bbf14485118,SESCO,II.1.1,Santa Fe,AR-S,annual,2020,gas oil combustion consumption by to the public,2903.5062,TJ,CH4,3.9,kg/TJ,11323.674179999998,kg -d5915a33-0eab-388f-9e7d-0bbf14485118,SESCO,II.1.1,Santa Fe,AR-S,annual,2020,gas oil combustion consumption by to the public,2903.5062,TJ,N2O,3.9,kg/TJ,11323.674179999998,kg -72a982a7-2abb-3f63-a909-a3d20edb3a69,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2020,gas oil combustion consumption by to the public,744.83052,TJ,CO2,74100.0,kg/TJ,55191941.532,kg -907e4ff6-bccf-3e2e-9a70-fef7139d3c9e,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2020,gas oil combustion consumption by to the public,744.83052,TJ,CH4,3.9,kg/TJ,2904.839028,kg -907e4ff6-bccf-3e2e-9a70-fef7139d3c9e,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2020,gas oil combustion consumption by to the public,744.83052,TJ,N2O,3.9,kg/TJ,2904.839028,kg -7950a466-72b8-3eac-807c-164e73a3df00,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2020,gas oil combustion consumption by to the public,289.64628,TJ,CO2,74100.0,kg/TJ,21462789.347999997,kg -8c0d19fe-c803-37b7-8b3f-57fab9553d49,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2020,gas oil combustion consumption by to the public,289.64628,TJ,CH4,3.9,kg/TJ,1129.620492,kg -8c0d19fe-c803-37b7-8b3f-57fab9553d49,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2020,gas oil combustion consumption by to the public,289.64628,TJ,N2O,3.9,kg/TJ,1129.620492,kg -84e1fe65-94ad-30c2-962a-0ffdac03545c,SESCO,II.1.1,Tucuman,AR-T,annual,2020,gas oil combustion consumption by to the public,1012.04628,TJ,CO2,74100.0,kg/TJ,74992629.348,kg -3a27c432-3f73-31a6-84d5-6e43fda64d2c,SESCO,II.1.1,Tucuman,AR-T,annual,2020,gas oil combustion consumption by to the public,1012.04628,TJ,CH4,3.9,kg/TJ,3946.980492,kg -3a27c432-3f73-31a6-84d5-6e43fda64d2c,SESCO,II.1.1,Tucuman,AR-T,annual,2020,gas oil combustion consumption by to the public,1012.04628,TJ,N2O,3.9,kg/TJ,3946.980492,kg -befde466-2906-3dc5-af6e-50561e590fcf,SESCO,II.1.1,Buenos Aires,AR-B,annual,2020,jet kerosene combustion consumption by to the public,81.55762899999999,TJ,CO2,71500.0,kg/TJ,5831370.473499999,kg -2dd04fcb-0b2b-3537-b3ab-57a3f79e4793,SESCO,II.1.1,Buenos Aires,AR-B,annual,2020,jet kerosene combustion consumption by to the public,81.55762899999999,TJ,CH4,0.5,kg/TJ,40.778814499999996,kg -b2d04abb-aae8-33c1-9fa6-6aa2a94e680d,SESCO,II.1.1,Buenos Aires,AR-B,annual,2020,jet kerosene combustion consumption by to the public,81.55762899999999,TJ,N2O,2.0,kg/TJ,163.11525799999998,kg -22f52efe-c76d-3b6d-9727-38b61a37a378,SESCO,II.1.1,Capital Federal,AR-C,annual,2020,jet kerosene combustion consumption by to the public,2.4218809999999995,TJ,CO2,71500.0,kg/TJ,173164.49149999997,kg -a673fdb1-2549-31a9-ba39-eca46fcc5552,SESCO,II.1.1,Capital Federal,AR-C,annual,2020,jet kerosene combustion consumption by to the public,2.4218809999999995,TJ,CH4,0.5,kg/TJ,1.2109404999999998,kg -f95a2184-700b-379a-ac83-3240662405ed,SESCO,II.1.1,Capital Federal,AR-C,annual,2020,jet kerosene combustion consumption by to the public,2.4218809999999995,TJ,N2O,2.0,kg/TJ,4.843761999999999,kg -582020bb-c93e-3dfe-afb3-8a19f3ed7b58,SESCO,II.1.1,Catamarca,AR-K,annual,2020,jet kerosene combustion consumption by to the public,3.2082059999999997,TJ,CO2,71500.0,kg/TJ,229386.72899999996,kg -fbbe206c-f91e-3002-b56d-0bdc6b4a4034,SESCO,II.1.1,Catamarca,AR-K,annual,2020,jet kerosene combustion consumption by to the public,3.2082059999999997,TJ,CH4,0.5,kg/TJ,1.6041029999999998,kg -bf171c1d-ff8f-3da7-be87-821f29465fe5,SESCO,II.1.1,Catamarca,AR-K,annual,2020,jet kerosene combustion consumption by to the public,3.2082059999999997,TJ,N2O,2.0,kg/TJ,6.416411999999999,kg -48639cdf-4a18-3760-b875-c41a138480c4,SESCO,II.1.1,Chubut,AR-U,annual,2020,jet kerosene combustion consumption by to the public,8.649574999999999,TJ,CO2,71500.0,kg/TJ,618444.6124999999,kg -e6d82f26-cf27-3c28-92c6-7dc3849cfac5,SESCO,II.1.1,Chubut,AR-U,annual,2020,jet kerosene combustion consumption by to the public,8.649574999999999,TJ,CH4,0.5,kg/TJ,4.324787499999999,kg -68259324-2dae-3846-b20c-b39b786c3a0d,SESCO,II.1.1,Chubut,AR-U,annual,2020,jet kerosene combustion consumption by to the public,8.649574999999999,TJ,N2O,2.0,kg/TJ,17.299149999999997,kg -5a0f8c3f-6910-37ed-bf9d-136ab380959f,SESCO,II.1.1,Corrientes,AR-W,annual,2020,jet kerosene combustion consumption by to the public,0.9750429999999999,TJ,CO2,71500.0,kg/TJ,69715.57449999999,kg -44dcc40c-9dbb-31b3-b675-643162367e71,SESCO,II.1.1,Corrientes,AR-W,annual,2020,jet kerosene combustion consumption by to the public,0.9750429999999999,TJ,CH4,0.5,kg/TJ,0.48752149999999994,kg -86422a08-1807-3ba0-9ca4-9663bb897741,SESCO,II.1.1,Corrientes,AR-W,annual,2020,jet kerosene combustion consumption by to the public,0.9750429999999999,TJ,N2O,2.0,kg/TJ,1.9500859999999998,kg -b0b99c1b-1a4b-3c63-a1b1-c1249e764f7a,SESCO,II.1.1,Córdoba,AR-X,annual,2020,jet kerosene combustion consumption by to the public,29.408554999999996,TJ,CO2,71500.0,kg/TJ,2102711.6824999996,kg -12844e80-2abd-3e79-ac6b-65a8a721e2d2,SESCO,II.1.1,Córdoba,AR-X,annual,2020,jet kerosene combustion consumption by to the public,29.408554999999996,TJ,CH4,0.5,kg/TJ,14.704277499999998,kg -ca6f5ca4-7403-31c7-a629-ce6a3e0ab1cc,SESCO,II.1.1,Córdoba,AR-X,annual,2020,jet kerosene combustion consumption by to the public,29.408554999999996,TJ,N2O,2.0,kg/TJ,58.81710999999999,kg -85f6ddbd-debb-38f4-ad3a-cf2f6200a88c,SESCO,II.1.1,Entre Rios,AR-E,annual,2020,jet kerosene combustion consumption by to the public,4.655043999999999,TJ,CO2,71500.0,kg/TJ,332835.64599999995,kg -6e204c51-f3b5-3bcb-b679-58a3e088ded8,SESCO,II.1.1,Entre Rios,AR-E,annual,2020,jet kerosene combustion consumption by to the public,4.655043999999999,TJ,CH4,0.5,kg/TJ,2.3275219999999996,kg -58eaa138-e2a1-3826-8bf2-8446c8072f85,SESCO,II.1.1,Entre Rios,AR-E,annual,2020,jet kerosene combustion consumption by to the public,4.655043999999999,TJ,N2O,2.0,kg/TJ,9.310087999999999,kg -3313a732-9021-33cf-bc69-58a577d0a294,SESCO,II.1.1,La Pampa,AR-L,annual,2020,jet kerosene combustion consumption by to the public,2.4847869999999994,TJ,CO2,71500.0,kg/TJ,177662.27049999996,kg -3f94a097-d012-3bfa-8254-3b67718e0bbf,SESCO,II.1.1,La Pampa,AR-L,annual,2020,jet kerosene combustion consumption by to the public,2.4847869999999994,TJ,CH4,0.5,kg/TJ,1.2423934999999997,kg -5cfaaa57-1cc2-3b7a-82a9-7b65e906e20d,SESCO,II.1.1,La Pampa,AR-L,annual,2020,jet kerosene combustion consumption by to the public,2.4847869999999994,TJ,N2O,2.0,kg/TJ,4.969573999999999,kg -04beaf8c-16c6-346f-a1a1-9cce874aacb9,SESCO,II.1.1,La Rioja,AR-F,annual,2020,jet kerosene combustion consumption by to the public,1.0064959999999998,TJ,CO2,71500.0,kg/TJ,71964.46399999999,kg -f8ddd83f-2c0c-3e76-a6fe-b5341d1086ee,SESCO,II.1.1,La Rioja,AR-F,annual,2020,jet kerosene combustion consumption by to the public,1.0064959999999998,TJ,CH4,0.5,kg/TJ,0.5032479999999999,kg -079bb35b-b01a-3021-afd5-16062ab5839f,SESCO,II.1.1,La Rioja,AR-F,annual,2020,jet kerosene combustion consumption by to the public,1.0064959999999998,TJ,N2O,2.0,kg/TJ,2.0129919999999997,kg -c9c48108-28ee-3a80-8450-c2feaa8f931e,SESCO,II.1.1,Mendoza,AR-M,annual,2020,jet kerosene combustion consumption by to the public,11.448891999999999,TJ,CO2,71500.0,kg/TJ,818595.7779999999,kg -3a04d1c1-ac62-39ea-9b42-25c508139d26,SESCO,II.1.1,Mendoza,AR-M,annual,2020,jet kerosene combustion consumption by to the public,11.448891999999999,TJ,CH4,0.5,kg/TJ,5.7244459999999995,kg -f55ec707-9359-3fe8-88da-213a173938e2,SESCO,II.1.1,Mendoza,AR-M,annual,2020,jet kerosene combustion consumption by to the public,11.448891999999999,TJ,N2O,2.0,kg/TJ,22.897783999999998,kg -2922812a-d2f2-3bca-913e-c8ac82bbf696,SESCO,II.1.1,Neuquén,AR-Q,annual,2020,jet kerosene combustion consumption by to the public,5.0953859999999995,TJ,CO2,71500.0,kg/TJ,364320.099,kg -a496dd78-14f5-38cf-9353-ae6c2487fba9,SESCO,II.1.1,Neuquén,AR-Q,annual,2020,jet kerosene combustion consumption by to the public,5.0953859999999995,TJ,CH4,0.5,kg/TJ,2.5476929999999998,kg -cd2c719e-00d7-3f54-bd5d-0548e37963e7,SESCO,II.1.1,Neuquén,AR-Q,annual,2020,jet kerosene combustion consumption by to the public,5.0953859999999995,TJ,N2O,2.0,kg/TJ,10.190771999999999,kg -1c58334c-5994-36ed-a237-047eff2d260e,SESCO,II.1.1,San Juan,AR-J,annual,2020,jet kerosene combustion consumption by to the public,3.6800009999999994,TJ,CO2,71500.0,kg/TJ,263120.07149999996,kg -838acfb7-4d6f-3684-a6ef-b5bd46c62336,SESCO,II.1.1,San Juan,AR-J,annual,2020,jet kerosene combustion consumption by to the public,3.6800009999999994,TJ,CH4,0.5,kg/TJ,1.8400004999999997,kg -18e9e6ad-7970-3b98-8c61-a67843565b43,SESCO,II.1.1,San Juan,AR-J,annual,2020,jet kerosene combustion consumption by to the public,3.6800009999999994,TJ,N2O,2.0,kg/TJ,7.360001999999999,kg -7ecf092d-150d-3b3f-a2e8-bf5695ae535c,SESCO,II.1.1,San Luis,AR-D,annual,2020,jet kerosene combustion consumption by to the public,5.1268389999999995,TJ,CO2,71500.0,kg/TJ,366568.9885,kg -30dc4976-97a1-3bde-a8e7-c2146f02a0db,SESCO,II.1.1,San Luis,AR-D,annual,2020,jet kerosene combustion consumption by to the public,5.1268389999999995,TJ,CH4,0.5,kg/TJ,2.5634194999999997,kg -f6d2ea1b-12d8-3e3c-b3d6-fb2c82969034,SESCO,II.1.1,San Luis,AR-D,annual,2020,jet kerosene combustion consumption by to the public,5.1268389999999995,TJ,N2O,2.0,kg/TJ,10.253677999999999,kg -ffaf6c9b-75cf-3ee0-9c2d-2585cbfdc2c4,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2020,jet kerosene combustion consumption by to the public,3.5856419999999996,TJ,CO2,71500.0,kg/TJ,256373.40299999996,kg -7efbb965-8b7e-3cd9-ac5c-f4731db873d6,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2020,jet kerosene combustion consumption by to the public,3.5856419999999996,TJ,CH4,0.5,kg/TJ,1.7928209999999998,kg -2696e191-18df-3149-a57f-af3dcc22d646,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2020,jet kerosene combustion consumption by to the public,3.5856419999999996,TJ,N2O,2.0,kg/TJ,7.171283999999999,kg -9c656434-3956-34e8-940c-f12c83c401bf,SESCO,II.1.1,Santa Fe,AR-S,annual,2020,jet kerosene combustion consumption by to the public,19.595218999999997,TJ,CO2,71500.0,kg/TJ,1401058.1584999997,kg -ec31f870-bf14-3996-9f9a-2fada03ebb55,SESCO,II.1.1,Santa Fe,AR-S,annual,2020,jet kerosene combustion consumption by to the public,19.595218999999997,TJ,CH4,0.5,kg/TJ,9.797609499999998,kg -6b5ef0f1-45a9-3cba-bc8c-be9b0a0cf5f5,SESCO,II.1.1,Santa Fe,AR-S,annual,2020,jet kerosene combustion consumption by to the public,19.595218999999997,TJ,N2O,2.0,kg/TJ,39.19043799999999,kg -04eb795d-a9ab-37c7-965a-8ced830cb51b,SESCO,II.1.1,Tucuman,AR-T,annual,2020,jet kerosene combustion consumption by to the public,9.467353,TJ,CO2,71500.0,kg/TJ,676915.7394999999,kg -37ba76ab-0475-3735-b2e8-97ef4d5ee20a,SESCO,II.1.1,Tucuman,AR-T,annual,2020,jet kerosene combustion consumption by to the public,9.467353,TJ,CH4,0.5,kg/TJ,4.7336765,kg -cbf90c67-fc03-3ecb-ae66-d9663ddcc2e1,SESCO,II.1.1,Tucuman,AR-T,annual,2020,jet kerosene combustion consumption by to the public,9.467353,TJ,N2O,2.0,kg/TJ,18.934706,kg -9acfcf4d-7f2a-302d-8d8d-2e7f424784b2,SESCO,II.1.1,Buenos Aires,AR-B,annual,2020,gas oil combustion consumption by freight transport,8155.534799999999,TJ,CO2,74100.0,kg/TJ,604325128.68,kg -4756b67d-8868-3b73-9537-cdf068ea3ade,SESCO,II.1.1,Buenos Aires,AR-B,annual,2020,gas oil combustion consumption by freight transport,8155.534799999999,TJ,CH4,3.9,kg/TJ,31806.585719999995,kg -4756b67d-8868-3b73-9537-cdf068ea3ade,SESCO,II.1.1,Buenos Aires,AR-B,annual,2020,gas oil combustion consumption by freight transport,8155.534799999999,TJ,N2O,3.9,kg/TJ,31806.585719999995,kg -3047e72b-c7b3-31a3-bdb2-a3e318a09060,SESCO,II.1.1,Capital Federal,AR-C,annual,2020,gas oil combustion consumption by freight transport,3115.06104,TJ,CO2,74100.0,kg/TJ,230826023.064,kg -366327a7-4812-3e12-a308-07fe22c7f136,SESCO,II.1.1,Capital Federal,AR-C,annual,2020,gas oil combustion consumption by freight transport,3115.06104,TJ,CH4,3.9,kg/TJ,12148.738056,kg -366327a7-4812-3e12-a308-07fe22c7f136,SESCO,II.1.1,Capital Federal,AR-C,annual,2020,gas oil combustion consumption by freight transport,3115.06104,TJ,N2O,3.9,kg/TJ,12148.738056,kg -fd2e4ef3-5cbf-3112-a108-32c077237207,SESCO,II.1.1,Catamarca,AR-K,annual,2020,gas oil combustion consumption by freight transport,22.90008,TJ,CO2,74100.0,kg/TJ,1696895.9279999998,kg -6fd2f12f-1c9b-3398-86bd-3f4b4cab810f,SESCO,II.1.1,Catamarca,AR-K,annual,2020,gas oil combustion consumption by freight transport,22.90008,TJ,CH4,3.9,kg/TJ,89.310312,kg -6fd2f12f-1c9b-3398-86bd-3f4b4cab810f,SESCO,II.1.1,Catamarca,AR-K,annual,2020,gas oil combustion consumption by freight transport,22.90008,TJ,N2O,3.9,kg/TJ,89.310312,kg -3ddc19c0-97cc-3f45-988c-e951ac9132d6,SESCO,II.1.1,Chaco,AR-H,annual,2020,gas oil combustion consumption by freight transport,280.1106,TJ,CO2,74100.0,kg/TJ,20756195.459999997,kg -b9ab91d1-ecc8-34f6-a356-7c652bb11c7d,SESCO,II.1.1,Chaco,AR-H,annual,2020,gas oil combustion consumption by freight transport,280.1106,TJ,CH4,3.9,kg/TJ,1092.4313399999999,kg -b9ab91d1-ecc8-34f6-a356-7c652bb11c7d,SESCO,II.1.1,Chaco,AR-H,annual,2020,gas oil combustion consumption by freight transport,280.1106,TJ,N2O,3.9,kg/TJ,1092.4313399999999,kg -994a0d9b-9ed3-308b-ba13-1a056e73b573,SESCO,II.1.1,Chubut,AR-U,annual,2020,gas oil combustion consumption by freight transport,198.40716,TJ,CO2,74100.0,kg/TJ,14701970.556,kg -273445bc-69e9-3b36-96fd-09df897c903e,SESCO,II.1.1,Chubut,AR-U,annual,2020,gas oil combustion consumption by freight transport,198.40716,TJ,CH4,3.9,kg/TJ,773.787924,kg -273445bc-69e9-3b36-96fd-09df897c903e,SESCO,II.1.1,Chubut,AR-U,annual,2020,gas oil combustion consumption by freight transport,198.40716,TJ,N2O,3.9,kg/TJ,773.787924,kg -53a28b73-0c58-3028-b533-09be3b5ef77b,SESCO,II.1.1,Corrientes,AR-W,annual,2020,gas oil combustion consumption by freight transport,409.2396,TJ,CO2,74100.0,kg/TJ,30324654.36,kg -4c92c881-5ece-326d-af1c-b343454f3034,SESCO,II.1.1,Corrientes,AR-W,annual,2020,gas oil combustion consumption by freight transport,409.2396,TJ,CH4,3.9,kg/TJ,1596.03444,kg -4c92c881-5ece-326d-af1c-b343454f3034,SESCO,II.1.1,Corrientes,AR-W,annual,2020,gas oil combustion consumption by freight transport,409.2396,TJ,N2O,3.9,kg/TJ,1596.03444,kg -2adfba99-c59a-3869-a456-23c7fb2ea41a,SESCO,II.1.1,Córdoba,AR-X,annual,2020,gas oil combustion consumption by freight transport,2655.43404,TJ,CO2,74100.0,kg/TJ,196767662.364,kg -dcaae37e-42fb-3dbd-8189-a7c921ecd17c,SESCO,II.1.1,Córdoba,AR-X,annual,2020,gas oil combustion consumption by freight transport,2655.43404,TJ,CH4,3.9,kg/TJ,10356.192756,kg -dcaae37e-42fb-3dbd-8189-a7c921ecd17c,SESCO,II.1.1,Córdoba,AR-X,annual,2020,gas oil combustion consumption by freight transport,2655.43404,TJ,N2O,3.9,kg/TJ,10356.192756,kg -4bab3385-6fe5-3591-b417-e548ff19d226,SESCO,II.1.1,Entre Rios,AR-E,annual,2020,gas oil combustion consumption by freight transport,903.3611999999999,TJ,CO2,74100.0,kg/TJ,66939064.919999994,kg -e5efa5e4-d638-3792-8270-7d3d89fc27b4,SESCO,II.1.1,Entre Rios,AR-E,annual,2020,gas oil combustion consumption by freight transport,903.3611999999999,TJ,CH4,3.9,kg/TJ,3523.10868,kg -e5efa5e4-d638-3792-8270-7d3d89fc27b4,SESCO,II.1.1,Entre Rios,AR-E,annual,2020,gas oil combustion consumption by freight transport,903.3611999999999,TJ,N2O,3.9,kg/TJ,3523.10868,kg -0d0437bd-1067-3e4d-bae2-f57c8e1fe4c5,SESCO,II.1.1,Formosa,AR-P,annual,2020,gas oil combustion consumption by freight transport,42.0798,TJ,CO2,74100.0,kg/TJ,3118113.1799999997,kg -c4d3f679-d5ca-3df0-acf8-fe020390402c,SESCO,II.1.1,Formosa,AR-P,annual,2020,gas oil combustion consumption by freight transport,42.0798,TJ,CH4,3.9,kg/TJ,164.11122,kg -c4d3f679-d5ca-3df0-acf8-fe020390402c,SESCO,II.1.1,Formosa,AR-P,annual,2020,gas oil combustion consumption by freight transport,42.0798,TJ,N2O,3.9,kg/TJ,164.11122,kg -9dada357-ad63-35f9-96a3-345dcaf0a1c3,SESCO,II.1.1,Jujuy,AR-Y,annual,2020,gas oil combustion consumption by freight transport,202.95828,TJ,CO2,74100.0,kg/TJ,15039208.548,kg -26274984-8c21-3adc-b388-e4b8088a04a0,SESCO,II.1.1,Jujuy,AR-Y,annual,2020,gas oil combustion consumption by freight transport,202.95828,TJ,CH4,3.9,kg/TJ,791.537292,kg -26274984-8c21-3adc-b388-e4b8088a04a0,SESCO,II.1.1,Jujuy,AR-Y,annual,2020,gas oil combustion consumption by freight transport,202.95828,TJ,N2O,3.9,kg/TJ,791.537292,kg -6277b64a-de36-33af-b04c-5030733ea650,SESCO,II.1.1,La Pampa,AR-L,annual,2020,gas oil combustion consumption by freight transport,269.2746,TJ,CO2,74100.0,kg/TJ,19953247.860000003,kg -e9763dbb-b94e-37b1-8d52-77fe31a9aed1,SESCO,II.1.1,La Pampa,AR-L,annual,2020,gas oil combustion consumption by freight transport,269.2746,TJ,CH4,3.9,kg/TJ,1050.17094,kg -e9763dbb-b94e-37b1-8d52-77fe31a9aed1,SESCO,II.1.1,La Pampa,AR-L,annual,2020,gas oil combustion consumption by freight transport,269.2746,TJ,N2O,3.9,kg/TJ,1050.17094,kg -5f2f50c0-1b2c-3002-ab33-c1e00de67213,SESCO,II.1.1,La Rioja,AR-F,annual,2020,gas oil combustion consumption by freight transport,17.37372,TJ,CO2,74100.0,kg/TJ,1287392.652,kg -9de29fa1-5464-3013-b04e-bcd9ce9750c3,SESCO,II.1.1,La Rioja,AR-F,annual,2020,gas oil combustion consumption by freight transport,17.37372,TJ,CH4,3.9,kg/TJ,67.75750799999999,kg -9de29fa1-5464-3013-b04e-bcd9ce9750c3,SESCO,II.1.1,La Rioja,AR-F,annual,2020,gas oil combustion consumption by freight transport,17.37372,TJ,N2O,3.9,kg/TJ,67.75750799999999,kg -03c57cd6-44a7-3df8-967d-4e9cc40c6d15,SESCO,II.1.1,Mendoza,AR-M,annual,2020,gas oil combustion consumption by freight transport,1659.64176,TJ,CO2,74100.0,kg/TJ,122979454.416,kg -4584c526-ba02-35e6-a356-6a937a34fdf1,SESCO,II.1.1,Mendoza,AR-M,annual,2020,gas oil combustion consumption by freight transport,1659.64176,TJ,CH4,3.9,kg/TJ,6472.6028639999995,kg -4584c526-ba02-35e6-a356-6a937a34fdf1,SESCO,II.1.1,Mendoza,AR-M,annual,2020,gas oil combustion consumption by freight transport,1659.64176,TJ,N2O,3.9,kg/TJ,6472.6028639999995,kg -b901373a-552d-3f78-8a72-30a71879d59e,SESCO,II.1.1,Misiones,AR-N,annual,2020,gas oil combustion consumption by freight transport,1016.12784,TJ,CO2,74100.0,kg/TJ,75295072.944,kg -f05454ed-bf01-329c-823c-7611a73c5988,SESCO,II.1.1,Misiones,AR-N,annual,2020,gas oil combustion consumption by freight transport,1016.12784,TJ,CH4,3.9,kg/TJ,3962.898576,kg -f05454ed-bf01-329c-823c-7611a73c5988,SESCO,II.1.1,Misiones,AR-N,annual,2020,gas oil combustion consumption by freight transport,1016.12784,TJ,N2O,3.9,kg/TJ,3962.898576,kg -1b8cb0a7-4c6b-3cf6-9ede-7c7dcfe85985,SESCO,II.1.1,Neuquén,AR-Q,annual,2020,gas oil combustion consumption by freight transport,571.4184,TJ,CO2,74100.0,kg/TJ,42342103.440000005,kg -7f2a7ab8-be5a-3fe3-a10b-a5c8c451bdca,SESCO,II.1.1,Neuquén,AR-Q,annual,2020,gas oil combustion consumption by freight transport,571.4184,TJ,CH4,3.9,kg/TJ,2228.53176,kg -7f2a7ab8-be5a-3fe3-a10b-a5c8c451bdca,SESCO,II.1.1,Neuquén,AR-Q,annual,2020,gas oil combustion consumption by freight transport,571.4184,TJ,N2O,3.9,kg/TJ,2228.53176,kg -a8229873-fa83-34f5-82ac-833c4169c8da,SESCO,II.1.1,Rio Negro,AR-R,annual,2020,gas oil combustion consumption by freight transport,379.26,TJ,CO2,74100.0,kg/TJ,28103166.0,kg -3a340795-4de5-3ff4-9f37-9fe1f4461de1,SESCO,II.1.1,Rio Negro,AR-R,annual,2020,gas oil combustion consumption by freight transport,379.26,TJ,CH4,3.9,kg/TJ,1479.114,kg -3a340795-4de5-3ff4-9f37-9fe1f4461de1,SESCO,II.1.1,Rio Negro,AR-R,annual,2020,gas oil combustion consumption by freight transport,379.26,TJ,N2O,3.9,kg/TJ,1479.114,kg -265a7a46-0948-3920-a181-589ba497f6fd,SESCO,II.1.1,Salta,AR-A,annual,2020,gas oil combustion consumption by freight transport,385.07532,TJ,CO2,74100.0,kg/TJ,28534081.211999997,kg -734f7f02-4e33-3960-a2d9-a41babf152f7,SESCO,II.1.1,Salta,AR-A,annual,2020,gas oil combustion consumption by freight transport,385.07532,TJ,CH4,3.9,kg/TJ,1501.7937479999998,kg -734f7f02-4e33-3960-a2d9-a41babf152f7,SESCO,II.1.1,Salta,AR-A,annual,2020,gas oil combustion consumption by freight transport,385.07532,TJ,N2O,3.9,kg/TJ,1501.7937479999998,kg -134f69d6-997a-3bb3-865f-5236e7c225ec,SESCO,II.1.1,San Juan,AR-J,annual,2020,gas oil combustion consumption by freight transport,163.26239999999999,TJ,CO2,74100.0,kg/TJ,12097743.839999998,kg -e30d8556-41b7-3fcc-8076-cce4ad2b3f1a,SESCO,II.1.1,San Juan,AR-J,annual,2020,gas oil combustion consumption by freight transport,163.26239999999999,TJ,CH4,3.9,kg/TJ,636.72336,kg -e30d8556-41b7-3fcc-8076-cce4ad2b3f1a,SESCO,II.1.1,San Juan,AR-J,annual,2020,gas oil combustion consumption by freight transport,163.26239999999999,TJ,N2O,3.9,kg/TJ,636.72336,kg -314486e7-8f1d-3903-b223-4eed8953a6b0,SESCO,II.1.1,San Luis,AR-D,annual,2020,gas oil combustion consumption by freight transport,331.5816,TJ,CO2,74100.0,kg/TJ,24570196.56,kg -bbb0ef4e-1a7c-3c61-a3d8-e5a20c1d95ac,SESCO,II.1.1,San Luis,AR-D,annual,2020,gas oil combustion consumption by freight transport,331.5816,TJ,CH4,3.9,kg/TJ,1293.16824,kg -bbb0ef4e-1a7c-3c61-a3d8-e5a20c1d95ac,SESCO,II.1.1,San Luis,AR-D,annual,2020,gas oil combustion consumption by freight transport,331.5816,TJ,N2O,3.9,kg/TJ,1293.16824,kg -3def2949-a1f2-3542-adde-31eef5c7cdc6,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2020,gas oil combustion consumption by freight transport,157.26648,TJ,CO2,74100.0,kg/TJ,11653446.168,kg -a7ce0e26-0b38-39f9-ae57-63f8e5d40948,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2020,gas oil combustion consumption by freight transport,157.26648,TJ,CH4,3.9,kg/TJ,613.3392719999999,kg -a7ce0e26-0b38-39f9-ae57-63f8e5d40948,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2020,gas oil combustion consumption by freight transport,157.26648,TJ,N2O,3.9,kg/TJ,613.3392719999999,kg -9b2cff47-903b-304d-8d92-92e96c6876bb,SESCO,II.1.1,Santa Fe,AR-S,annual,2020,gas oil combustion consumption by freight transport,3016.27284,TJ,CO2,74100.0,kg/TJ,223505817.444,kg -c107700c-4f4d-3481-8a29-1ee459148283,SESCO,II.1.1,Santa Fe,AR-S,annual,2020,gas oil combustion consumption by freight transport,3016.27284,TJ,CH4,3.9,kg/TJ,11763.464076,kg -c107700c-4f4d-3481-8a29-1ee459148283,SESCO,II.1.1,Santa Fe,AR-S,annual,2020,gas oil combustion consumption by freight transport,3016.27284,TJ,N2O,3.9,kg/TJ,11763.464076,kg -19b38b65-d7fc-374d-bca6-83c6c6f078c8,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2020,gas oil combustion consumption by freight transport,326.27196,TJ,CO2,74100.0,kg/TJ,24176752.235999998,kg -6b5432fe-76ff-3210-9352-0cf835437166,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2020,gas oil combustion consumption by freight transport,326.27196,TJ,CH4,3.9,kg/TJ,1272.4606439999998,kg -6b5432fe-76ff-3210-9352-0cf835437166,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2020,gas oil combustion consumption by freight transport,326.27196,TJ,N2O,3.9,kg/TJ,1272.4606439999998,kg -6a6d4c61-1487-3453-b1ec-79fee3c7f6ab,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2020,gas oil combustion consumption by freight transport,285.45636,TJ,CO2,74100.0,kg/TJ,21152316.276,kg -747b8973-d1db-3f77-80ec-70abc0c84ef8,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2020,gas oil combustion consumption by freight transport,285.45636,TJ,CH4,3.9,kg/TJ,1113.279804,kg -747b8973-d1db-3f77-80ec-70abc0c84ef8,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2020,gas oil combustion consumption by freight transport,285.45636,TJ,N2O,3.9,kg/TJ,1113.279804,kg -a69fb53a-c311-3d76-b620-cc4a81fb1ab3,SESCO,II.1.1,Tucuman,AR-T,annual,2020,gas oil combustion consumption by freight transport,571.4184,TJ,CO2,74100.0,kg/TJ,42342103.440000005,kg -d864443a-de76-367a-a3b6-a73e9e0d141e,SESCO,II.1.1,Tucuman,AR-T,annual,2020,gas oil combustion consumption by freight transport,571.4184,TJ,CH4,3.9,kg/TJ,2228.53176,kg -d864443a-de76-367a-a3b6-a73e9e0d141e,SESCO,II.1.1,Tucuman,AR-T,annual,2020,gas oil combustion consumption by freight transport,571.4184,TJ,N2O,3.9,kg/TJ,2228.53176,kg -19033275-d0f6-3467-9641-8504ccd2b7d3,SESCO,II.1.1,Buenos Aires,AR-B,annual,2020,gas oil combustion consumption by freight transport,2104.74852,TJ,CO2,74100.0,kg/TJ,155961865.33200002,kg -9141ec14-f721-3f78-97e5-9431f77a3278,SESCO,II.1.1,Buenos Aires,AR-B,annual,2020,gas oil combustion consumption by freight transport,2104.74852,TJ,CH4,3.9,kg/TJ,8208.519228000001,kg -9141ec14-f721-3f78-97e5-9431f77a3278,SESCO,II.1.1,Buenos Aires,AR-B,annual,2020,gas oil combustion consumption by freight transport,2104.74852,TJ,N2O,3.9,kg/TJ,8208.519228000001,kg -057dd5f1-8321-39d1-ad7b-928997f0ac1f,SESCO,II.1.1,Capital Federal,AR-C,annual,2020,gas oil combustion consumption by freight transport,1857.6516,TJ,CO2,74100.0,kg/TJ,137651983.56,kg -9951d2d0-2e34-33d5-9b24-85ae9438bb9f,SESCO,II.1.1,Capital Federal,AR-C,annual,2020,gas oil combustion consumption by freight transport,1857.6516,TJ,CH4,3.9,kg/TJ,7244.84124,kg -9951d2d0-2e34-33d5-9b24-85ae9438bb9f,SESCO,II.1.1,Capital Federal,AR-C,annual,2020,gas oil combustion consumption by freight transport,1857.6516,TJ,N2O,3.9,kg/TJ,7244.84124,kg -5ddc5b3b-6969-33f9-bcbe-2703daa089ef,SESCO,II.1.1,Catamarca,AR-K,annual,2020,gas oil combustion consumption by freight transport,9.64404,TJ,CO2,74100.0,kg/TJ,714623.3640000001,kg -633e3246-61f4-309e-bb81-012d0050e751,SESCO,II.1.1,Catamarca,AR-K,annual,2020,gas oil combustion consumption by freight transport,9.64404,TJ,CH4,3.9,kg/TJ,37.611756,kg -633e3246-61f4-309e-bb81-012d0050e751,SESCO,II.1.1,Catamarca,AR-K,annual,2020,gas oil combustion consumption by freight transport,9.64404,TJ,N2O,3.9,kg/TJ,37.611756,kg -ef2d368e-4b84-36c2-a069-4949afaafaab,SESCO,II.1.1,Chaco,AR-H,annual,2020,gas oil combustion consumption by freight transport,79.6446,TJ,CO2,74100.0,kg/TJ,5901664.859999999,kg -160cb0d5-f17d-328f-b276-6aeab9232ab1,SESCO,II.1.1,Chaco,AR-H,annual,2020,gas oil combustion consumption by freight transport,79.6446,TJ,CH4,3.9,kg/TJ,310.61393999999996,kg -160cb0d5-f17d-328f-b276-6aeab9232ab1,SESCO,II.1.1,Chaco,AR-H,annual,2020,gas oil combustion consumption by freight transport,79.6446,TJ,N2O,3.9,kg/TJ,310.61393999999996,kg -179e51a5-e7b6-30da-9271-42c9d5fd1c88,SESCO,II.1.1,Chubut,AR-U,annual,2020,gas oil combustion consumption by freight transport,268.3716,TJ,CO2,74100.0,kg/TJ,19886335.56,kg -c2cd8c0e-187b-39d3-95b2-773fc4744c51,SESCO,II.1.1,Chubut,AR-U,annual,2020,gas oil combustion consumption by freight transport,268.3716,TJ,CH4,3.9,kg/TJ,1046.64924,kg -c2cd8c0e-187b-39d3-95b2-773fc4744c51,SESCO,II.1.1,Chubut,AR-U,annual,2020,gas oil combustion consumption by freight transport,268.3716,TJ,N2O,3.9,kg/TJ,1046.64924,kg -ed0f749f-13c7-3ee8-acda-35086600e255,SESCO,II.1.1,Corrientes,AR-W,annual,2020,gas oil combustion consumption by freight transport,126.27552,TJ,CO2,74100.0,kg/TJ,9357016.032,kg -5846b3c8-2653-3f4c-aa8c-1c31a4acb356,SESCO,II.1.1,Corrientes,AR-W,annual,2020,gas oil combustion consumption by freight transport,126.27552,TJ,CH4,3.9,kg/TJ,492.47452799999996,kg -5846b3c8-2653-3f4c-aa8c-1c31a4acb356,SESCO,II.1.1,Corrientes,AR-W,annual,2020,gas oil combustion consumption by freight transport,126.27552,TJ,N2O,3.9,kg/TJ,492.47452799999996,kg -5e2fef8c-abe2-348e-ac44-288e452eb864,SESCO,II.1.1,Córdoba,AR-X,annual,2020,gas oil combustion consumption by freight transport,552.20256,TJ,CO2,74100.0,kg/TJ,40918209.695999995,kg -2a887606-ff38-3ed1-be05-a025dc7b427e,SESCO,II.1.1,Córdoba,AR-X,annual,2020,gas oil combustion consumption by freight transport,552.20256,TJ,CH4,3.9,kg/TJ,2153.5899839999997,kg -2a887606-ff38-3ed1-be05-a025dc7b427e,SESCO,II.1.1,Córdoba,AR-X,annual,2020,gas oil combustion consumption by freight transport,552.20256,TJ,N2O,3.9,kg/TJ,2153.5899839999997,kg -bc8e7a30-26c1-33b7-af10-45fb7e3fdfd2,SESCO,II.1.1,Entre Rios,AR-E,annual,2020,gas oil combustion consumption by freight transport,208.62912,TJ,CO2,74100.0,kg/TJ,15459417.792,kg -d4158d0d-7d7a-3683-862d-b36c98fc9a97,SESCO,II.1.1,Entre Rios,AR-E,annual,2020,gas oil combustion consumption by freight transport,208.62912,TJ,CH4,3.9,kg/TJ,813.653568,kg -d4158d0d-7d7a-3683-862d-b36c98fc9a97,SESCO,II.1.1,Entre Rios,AR-E,annual,2020,gas oil combustion consumption by freight transport,208.62912,TJ,N2O,3.9,kg/TJ,813.653568,kg -ae5b042d-d8b4-33c5-a227-4d9362c8585f,SESCO,II.1.1,Formosa,AR-P,annual,2020,gas oil combustion consumption by freight transport,14.19516,TJ,CO2,74100.0,kg/TJ,1051861.356,kg -63df1291-18e5-34d0-9482-9b18230a0f90,SESCO,II.1.1,Formosa,AR-P,annual,2020,gas oil combustion consumption by freight transport,14.19516,TJ,CH4,3.9,kg/TJ,55.361124,kg -63df1291-18e5-34d0-9482-9b18230a0f90,SESCO,II.1.1,Formosa,AR-P,annual,2020,gas oil combustion consumption by freight transport,14.19516,TJ,N2O,3.9,kg/TJ,55.361124,kg -117d8350-6d31-3bd9-b5ad-ca3cf9fb8341,SESCO,II.1.1,Jujuy,AR-Y,annual,2020,gas oil combustion consumption by freight transport,25.39236,TJ,CO2,74100.0,kg/TJ,1881573.876,kg -e3e4e3e8-24ed-36d8-9646-1f06af3d54c4,SESCO,II.1.1,Jujuy,AR-Y,annual,2020,gas oil combustion consumption by freight transport,25.39236,TJ,CH4,3.9,kg/TJ,99.030204,kg -e3e4e3e8-24ed-36d8-9646-1f06af3d54c4,SESCO,II.1.1,Jujuy,AR-Y,annual,2020,gas oil combustion consumption by freight transport,25.39236,TJ,N2O,3.9,kg/TJ,99.030204,kg -35306b90-a242-3188-a703-a56bfe07cdc5,SESCO,II.1.1,La Pampa,AR-L,annual,2020,gas oil combustion consumption by freight transport,74.80452,TJ,CO2,74100.0,kg/TJ,5543014.932,kg -586ba00e-9b4f-3f17-96ca-33e986ef28c6,SESCO,II.1.1,La Pampa,AR-L,annual,2020,gas oil combustion consumption by freight transport,74.80452,TJ,CH4,3.9,kg/TJ,291.737628,kg -586ba00e-9b4f-3f17-96ca-33e986ef28c6,SESCO,II.1.1,La Pampa,AR-L,annual,2020,gas oil combustion consumption by freight transport,74.80452,TJ,N2O,3.9,kg/TJ,291.737628,kg -b9825eb4-a55a-3f95-beff-17b3ce8b1b00,SESCO,II.1.1,La Rioja,AR-F,annual,2020,gas oil combustion consumption by freight transport,14.989799999999999,TJ,CO2,74100.0,kg/TJ,1110744.18,kg -2958955a-5326-33e6-90fd-095f9e4f8eb9,SESCO,II.1.1,La Rioja,AR-F,annual,2020,gas oil combustion consumption by freight transport,14.989799999999999,TJ,CH4,3.9,kg/TJ,58.46021999999999,kg -2958955a-5326-33e6-90fd-095f9e4f8eb9,SESCO,II.1.1,La Rioja,AR-F,annual,2020,gas oil combustion consumption by freight transport,14.989799999999999,TJ,N2O,3.9,kg/TJ,58.46021999999999,kg -a9bdf671-278e-33cc-b5a4-095e8e3d5e8a,SESCO,II.1.1,Mendoza,AR-M,annual,2020,gas oil combustion consumption by freight transport,419.13648,TJ,CO2,74100.0,kg/TJ,31058013.168,kg -876470be-ea82-3719-a108-ad70b12a19ec,SESCO,II.1.1,Mendoza,AR-M,annual,2020,gas oil combustion consumption by freight transport,419.13648,TJ,CH4,3.9,kg/TJ,1634.632272,kg -876470be-ea82-3719-a108-ad70b12a19ec,SESCO,II.1.1,Mendoza,AR-M,annual,2020,gas oil combustion consumption by freight transport,419.13648,TJ,N2O,3.9,kg/TJ,1634.632272,kg -bd233bdd-f031-3edb-a061-dbf9f76e34e2,SESCO,II.1.1,Misiones,AR-N,annual,2020,gas oil combustion consumption by freight transport,115.80072,TJ,CO2,74100.0,kg/TJ,8580833.352,kg -fd7bfd44-fc08-30a6-942f-ef4db5035a8a,SESCO,II.1.1,Misiones,AR-N,annual,2020,gas oil combustion consumption by freight transport,115.80072,TJ,CH4,3.9,kg/TJ,451.62280799999996,kg -fd7bfd44-fc08-30a6-942f-ef4db5035a8a,SESCO,II.1.1,Misiones,AR-N,annual,2020,gas oil combustion consumption by freight transport,115.80072,TJ,N2O,3.9,kg/TJ,451.62280799999996,kg -4aaa14ed-7fc4-3171-b606-6167b6558cfc,SESCO,II.1.1,Neuquén,AR-Q,annual,2020,gas oil combustion consumption by freight transport,739.30416,TJ,CO2,74100.0,kg/TJ,54782438.256000005,kg -8c8e09a1-35ea-3ad6-ae09-83fa6ce2645a,SESCO,II.1.1,Neuquén,AR-Q,annual,2020,gas oil combustion consumption by freight transport,739.30416,TJ,CH4,3.9,kg/TJ,2883.286224,kg -8c8e09a1-35ea-3ad6-ae09-83fa6ce2645a,SESCO,II.1.1,Neuquén,AR-Q,annual,2020,gas oil combustion consumption by freight transport,739.30416,TJ,N2O,3.9,kg/TJ,2883.286224,kg -bb0c8bb3-2027-3619-8ac6-9ed0e88a8ccb,SESCO,II.1.1,Rio Negro,AR-R,annual,2020,gas oil combustion consumption by freight transport,254.82659999999998,TJ,CO2,74100.0,kg/TJ,18882651.06,kg -a7ae737f-93eb-3446-8c21-61b379563306,SESCO,II.1.1,Rio Negro,AR-R,annual,2020,gas oil combustion consumption by freight transport,254.82659999999998,TJ,CH4,3.9,kg/TJ,993.8237399999999,kg -a7ae737f-93eb-3446-8c21-61b379563306,SESCO,II.1.1,Rio Negro,AR-R,annual,2020,gas oil combustion consumption by freight transport,254.82659999999998,TJ,N2O,3.9,kg/TJ,993.8237399999999,kg -337bb958-5796-3313-a850-f9ed70e9948c,SESCO,II.1.1,Salta,AR-A,annual,2020,gas oil combustion consumption by freight transport,160.44504,TJ,CO2,74100.0,kg/TJ,11888977.464,kg -a0bee2e2-40da-3b61-81e9-2328132fd9f6,SESCO,II.1.1,Salta,AR-A,annual,2020,gas oil combustion consumption by freight transport,160.44504,TJ,CH4,3.9,kg/TJ,625.7356560000001,kg -a0bee2e2-40da-3b61-81e9-2328132fd9f6,SESCO,II.1.1,Salta,AR-A,annual,2020,gas oil combustion consumption by freight transport,160.44504,TJ,N2O,3.9,kg/TJ,625.7356560000001,kg -ff1a12f9-ad57-3b74-8979-8f214191bbe4,SESCO,II.1.1,San Juan,AR-J,annual,2020,gas oil combustion consumption by freight transport,34.96416,TJ,CO2,74100.0,kg/TJ,2590844.256,kg -8d7a2f0c-6559-32d4-a291-eade27e84544,SESCO,II.1.1,San Juan,AR-J,annual,2020,gas oil combustion consumption by freight transport,34.96416,TJ,CH4,3.9,kg/TJ,136.360224,kg -8d7a2f0c-6559-32d4-a291-eade27e84544,SESCO,II.1.1,San Juan,AR-J,annual,2020,gas oil combustion consumption by freight transport,34.96416,TJ,N2O,3.9,kg/TJ,136.360224,kg -d558c730-0e29-3d53-acca-5b63cb56b0a6,SESCO,II.1.1,San Luis,AR-D,annual,2020,gas oil combustion consumption by freight transport,73.21524,TJ,CO2,74100.0,kg/TJ,5425249.284,kg -30ec6655-7c61-362c-9554-4e8dbae38b53,SESCO,II.1.1,San Luis,AR-D,annual,2020,gas oil combustion consumption by freight transport,73.21524,TJ,CH4,3.9,kg/TJ,285.53943599999997,kg -30ec6655-7c61-362c-9554-4e8dbae38b53,SESCO,II.1.1,San Luis,AR-D,annual,2020,gas oil combustion consumption by freight transport,73.21524,TJ,N2O,3.9,kg/TJ,285.53943599999997,kg -fe26b398-ece3-3daa-86e5-3245348d508a,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2020,gas oil combustion consumption by freight transport,79.68072,TJ,CO2,74100.0,kg/TJ,5904341.352,kg -da965319-1e93-3847-aa09-e711990b162a,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2020,gas oil combustion consumption by freight transport,79.68072,TJ,CH4,3.9,kg/TJ,310.75480799999997,kg -da965319-1e93-3847-aa09-e711990b162a,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2020,gas oil combustion consumption by freight transport,79.68072,TJ,N2O,3.9,kg/TJ,310.75480799999997,kg -79bb1741-b9fe-3d57-98ba-dbeaf96ba4b8,SESCO,II.1.1,Santa Fe,AR-S,annual,2020,gas oil combustion consumption by freight transport,605.01,TJ,CO2,74100.0,kg/TJ,44831241.0,kg -f5018d33-9b2b-3bf4-be9a-d200974fcd35,SESCO,II.1.1,Santa Fe,AR-S,annual,2020,gas oil combustion consumption by freight transport,605.01,TJ,CH4,3.9,kg/TJ,2359.5389999999998,kg -f5018d33-9b2b-3bf4-be9a-d200974fcd35,SESCO,II.1.1,Santa Fe,AR-S,annual,2020,gas oil combustion consumption by freight transport,605.01,TJ,N2O,3.9,kg/TJ,2359.5389999999998,kg -61d9576c-f2fe-33f9-b852-6f6a3d8b4a29,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2020,gas oil combustion consumption by freight transport,31.20768,TJ,CO2,74100.0,kg/TJ,2312489.088,kg -0022d649-63b2-3576-b8fd-5e59276e8ec1,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2020,gas oil combustion consumption by freight transport,31.20768,TJ,CH4,3.9,kg/TJ,121.709952,kg -0022d649-63b2-3576-b8fd-5e59276e8ec1,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2020,gas oil combustion consumption by freight transport,31.20768,TJ,N2O,3.9,kg/TJ,121.709952,kg -ad358f4f-6341-3d69-8a5d-c589aeca16ad,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2020,gas oil combustion consumption by freight transport,76.50216,TJ,CO2,74100.0,kg/TJ,5668810.056,kg -55263a89-391b-353e-b1c7-5fd36fac3337,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2020,gas oil combustion consumption by freight transport,76.50216,TJ,CH4,3.9,kg/TJ,298.358424,kg -55263a89-391b-353e-b1c7-5fd36fac3337,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2020,gas oil combustion consumption by freight transport,76.50216,TJ,N2O,3.9,kg/TJ,298.358424,kg -e9cc83fd-0c4c-35d9-8fce-1caa7b51797d,SESCO,II.1.1,Tucuman,AR-T,annual,2020,gas oil combustion consumption by freight transport,119.15988,TJ,CO2,74100.0,kg/TJ,8829747.108000001,kg -40218d9d-0704-3270-9cc3-0d49cc8a7801,SESCO,II.1.1,Tucuman,AR-T,annual,2020,gas oil combustion consumption by freight transport,119.15988,TJ,CH4,3.9,kg/TJ,464.723532,kg -40218d9d-0704-3270-9cc3-0d49cc8a7801,SESCO,II.1.1,Tucuman,AR-T,annual,2020,gas oil combustion consumption by freight transport,119.15988,TJ,N2O,3.9,kg/TJ,464.723532,kg -b81c3d27-785e-356b-81d2-c35e821a0855,SESCO,II.1.1,Buenos Aires,AR-B,annual,2020,jet kerosene combustion consumption by freight transport,0.22017099999999995,TJ,CO2,71500.0,kg/TJ,15742.226499999997,kg -3707691b-57ef-3f0a-ad3b-2f0eadc5facb,SESCO,II.1.1,Buenos Aires,AR-B,annual,2020,jet kerosene combustion consumption by freight transport,0.22017099999999995,TJ,CH4,0.5,kg/TJ,0.11008549999999998,kg -8419baf7-bad4-3f75-b9a3-4a88b12c85aa,SESCO,II.1.1,Buenos Aires,AR-B,annual,2020,jet kerosene combustion consumption by freight transport,0.22017099999999995,TJ,N2O,2.0,kg/TJ,0.4403419999999999,kg -744178a3-0c4a-3601-aa75-6e0f2f5ab45f,SESCO,II.1.1,Buenos Aires,AR-B,annual,2020,gas oil combustion consumption by public passenger transport,5307.00324,TJ,CO2,74100.0,kg/TJ,393248940.084,kg -64f28b26-35ac-30d9-b4eb-1cd4bf9add23,SESCO,II.1.1,Buenos Aires,AR-B,annual,2020,gas oil combustion consumption by public passenger transport,5307.00324,TJ,CH4,3.9,kg/TJ,20697.312636,kg -64f28b26-35ac-30d9-b4eb-1cd4bf9add23,SESCO,II.1.1,Buenos Aires,AR-B,annual,2020,gas oil combustion consumption by public passenger transport,5307.00324,TJ,N2O,3.9,kg/TJ,20697.312636,kg -e527ca7b-6e6f-3299-b317-1cf957f7c02a,SESCO,II.1.1,Capital Federal,AR-C,annual,2020,gas oil combustion consumption by public passenger transport,868.36092,TJ,CO2,74100.0,kg/TJ,64345544.172,kg -b96751f5-1363-398c-bd72-2250c406eeed,SESCO,II.1.1,Capital Federal,AR-C,annual,2020,gas oil combustion consumption by public passenger transport,868.36092,TJ,CH4,3.9,kg/TJ,3386.607588,kg -b96751f5-1363-398c-bd72-2250c406eeed,SESCO,II.1.1,Capital Federal,AR-C,annual,2020,gas oil combustion consumption by public passenger transport,868.36092,TJ,N2O,3.9,kg/TJ,3386.607588,kg -ee89927e-93ab-39dc-b2de-1a91a878e7bf,SESCO,II.1.1,Catamarca,AR-K,annual,2020,gas oil combustion consumption by public passenger transport,28.281959999999998,TJ,CO2,74100.0,kg/TJ,2095693.2359999998,kg -7cf240db-de0a-3aee-bb2d-f9286224ab11,SESCO,II.1.1,Catamarca,AR-K,annual,2020,gas oil combustion consumption by public passenger transport,28.281959999999998,TJ,CH4,3.9,kg/TJ,110.29964399999999,kg -7cf240db-de0a-3aee-bb2d-f9286224ab11,SESCO,II.1.1,Catamarca,AR-K,annual,2020,gas oil combustion consumption by public passenger transport,28.281959999999998,TJ,N2O,3.9,kg/TJ,110.29964399999999,kg -e4d3fe48-d5f5-3ba1-8502-7cae9bf50524,SESCO,II.1.1,Chaco,AR-H,annual,2020,gas oil combustion consumption by public passenger transport,45.98076,TJ,CO2,74100.0,kg/TJ,3407174.3159999996,kg -1f1dac85-d104-3548-9ede-3dc0b8e015c1,SESCO,II.1.1,Chaco,AR-H,annual,2020,gas oil combustion consumption by public passenger transport,45.98076,TJ,CH4,3.9,kg/TJ,179.324964,kg -1f1dac85-d104-3548-9ede-3dc0b8e015c1,SESCO,II.1.1,Chaco,AR-H,annual,2020,gas oil combustion consumption by public passenger transport,45.98076,TJ,N2O,3.9,kg/TJ,179.324964,kg -6099c17a-5381-3559-baca-af93de667d79,SESCO,II.1.1,Chubut,AR-U,annual,2020,gas oil combustion consumption by public passenger transport,18.49344,TJ,CO2,74100.0,kg/TJ,1370363.9039999999,kg -37a5065c-701e-35ea-898e-e854fea8ab52,SESCO,II.1.1,Chubut,AR-U,annual,2020,gas oil combustion consumption by public passenger transport,18.49344,TJ,CH4,3.9,kg/TJ,72.124416,kg -37a5065c-701e-35ea-898e-e854fea8ab52,SESCO,II.1.1,Chubut,AR-U,annual,2020,gas oil combustion consumption by public passenger transport,18.49344,TJ,N2O,3.9,kg/TJ,72.124416,kg -0e85c3a1-2b01-3082-973b-e99f26225018,SESCO,II.1.1,Corrientes,AR-W,annual,2020,gas oil combustion consumption by public passenger transport,17.77104,TJ,CO2,74100.0,kg/TJ,1316834.064,kg -a12b0023-41c1-302b-b8e2-5b09c7684f91,SESCO,II.1.1,Corrientes,AR-W,annual,2020,gas oil combustion consumption by public passenger transport,17.77104,TJ,CH4,3.9,kg/TJ,69.30705599999999,kg -a12b0023-41c1-302b-b8e2-5b09c7684f91,SESCO,II.1.1,Corrientes,AR-W,annual,2020,gas oil combustion consumption by public passenger transport,17.77104,TJ,N2O,3.9,kg/TJ,69.30705599999999,kg -19acfadc-ea4a-33b9-b58b-451f458984a0,SESCO,II.1.1,Córdoba,AR-X,annual,2020,gas oil combustion consumption by public passenger transport,279.17148,TJ,CO2,74100.0,kg/TJ,20686606.667999998,kg -f927c891-d72a-3b8e-850d-bb9d03aaf550,SESCO,II.1.1,Córdoba,AR-X,annual,2020,gas oil combustion consumption by public passenger transport,279.17148,TJ,CH4,3.9,kg/TJ,1088.768772,kg -f927c891-d72a-3b8e-850d-bb9d03aaf550,SESCO,II.1.1,Córdoba,AR-X,annual,2020,gas oil combustion consumption by public passenger transport,279.17148,TJ,N2O,3.9,kg/TJ,1088.768772,kg -0d58aef9-e959-30c1-9aa2-c36016175c6a,SESCO,II.1.1,Entre Rios,AR-E,annual,2020,gas oil combustion consumption by public passenger transport,66.0996,TJ,CO2,74100.0,kg/TJ,4897980.359999999,kg -1c8bef34-0fb9-3d72-90ca-17fbb47d7232,SESCO,II.1.1,Entre Rios,AR-E,annual,2020,gas oil combustion consumption by public passenger transport,66.0996,TJ,CH4,3.9,kg/TJ,257.78844,kg -1c8bef34-0fb9-3d72-90ca-17fbb47d7232,SESCO,II.1.1,Entre Rios,AR-E,annual,2020,gas oil combustion consumption by public passenger transport,66.0996,TJ,N2O,3.9,kg/TJ,257.78844,kg -05323c30-33fc-35fd-bec9-be991632e34d,SESCO,II.1.1,Formosa,AR-P,annual,2020,gas oil combustion consumption by public passenger transport,5.02068,TJ,CO2,74100.0,kg/TJ,372032.388,kg -7da50b21-e173-3c6a-b44d-56be0be24a1e,SESCO,II.1.1,Formosa,AR-P,annual,2020,gas oil combustion consumption by public passenger transport,5.02068,TJ,CH4,3.9,kg/TJ,19.580651999999997,kg -7da50b21-e173-3c6a-b44d-56be0be24a1e,SESCO,II.1.1,Formosa,AR-P,annual,2020,gas oil combustion consumption by public passenger transport,5.02068,TJ,N2O,3.9,kg/TJ,19.580651999999997,kg -44d971cd-90e0-381b-95b8-eb6e9f3f03c5,SESCO,II.1.1,Jujuy,AR-Y,annual,2020,gas oil combustion consumption by public passenger transport,59.598,TJ,CO2,74100.0,kg/TJ,4416211.8,kg -824e93ae-f522-3aa6-bea1-2c819e14bec6,SESCO,II.1.1,Jujuy,AR-Y,annual,2020,gas oil combustion consumption by public passenger transport,59.598,TJ,CH4,3.9,kg/TJ,232.4322,kg -824e93ae-f522-3aa6-bea1-2c819e14bec6,SESCO,II.1.1,Jujuy,AR-Y,annual,2020,gas oil combustion consumption by public passenger transport,59.598,TJ,N2O,3.9,kg/TJ,232.4322,kg -d288d346-3d4b-3a46-8ff4-390d1b502f90,SESCO,II.1.1,La Rioja,AR-F,annual,2020,gas oil combustion consumption by public passenger transport,10.22196,TJ,CO2,74100.0,kg/TJ,757447.2359999999,kg -172a6e2e-c4d9-3ae7-89b8-cba04eb8bfbf,SESCO,II.1.1,La Rioja,AR-F,annual,2020,gas oil combustion consumption by public passenger transport,10.22196,TJ,CH4,3.9,kg/TJ,39.865643999999996,kg -172a6e2e-c4d9-3ae7-89b8-cba04eb8bfbf,SESCO,II.1.1,La Rioja,AR-F,annual,2020,gas oil combustion consumption by public passenger transport,10.22196,TJ,N2O,3.9,kg/TJ,39.865643999999996,kg -8d754026-f4f8-398e-be64-569cd3abdc8b,SESCO,II.1.1,Mendoza,AR-M,annual,2020,gas oil combustion consumption by public passenger transport,314.28012,TJ,CO2,74100.0,kg/TJ,23288156.892,kg -cc285397-5351-337b-9fec-71e489e99cbc,SESCO,II.1.1,Mendoza,AR-M,annual,2020,gas oil combustion consumption by public passenger transport,314.28012,TJ,CH4,3.9,kg/TJ,1225.692468,kg -cc285397-5351-337b-9fec-71e489e99cbc,SESCO,II.1.1,Mendoza,AR-M,annual,2020,gas oil combustion consumption by public passenger transport,314.28012,TJ,N2O,3.9,kg/TJ,1225.692468,kg -0bed0900-a1fa-369d-ac94-83460cb58cc9,SESCO,II.1.1,Misiones,AR-N,annual,2020,gas oil combustion consumption by public passenger transport,200.6466,TJ,CO2,74100.0,kg/TJ,14867913.06,kg -8b20d10a-5d02-3cad-b664-014b386de6bc,SESCO,II.1.1,Misiones,AR-N,annual,2020,gas oil combustion consumption by public passenger transport,200.6466,TJ,CH4,3.9,kg/TJ,782.52174,kg -8b20d10a-5d02-3cad-b664-014b386de6bc,SESCO,II.1.1,Misiones,AR-N,annual,2020,gas oil combustion consumption by public passenger transport,200.6466,TJ,N2O,3.9,kg/TJ,782.52174,kg -8b8c406a-9d87-3c45-bc9e-5e3768d0fda5,SESCO,II.1.1,Neuquén,AR-Q,annual,2020,gas oil combustion consumption by public passenger transport,27.595679999999998,TJ,CO2,74100.0,kg/TJ,2044839.8879999998,kg -4bca05d3-a1e2-33cf-889c-a1a9b303478c,SESCO,II.1.1,Neuquén,AR-Q,annual,2020,gas oil combustion consumption by public passenger transport,27.595679999999998,TJ,CH4,3.9,kg/TJ,107.62315199999999,kg -4bca05d3-a1e2-33cf-889c-a1a9b303478c,SESCO,II.1.1,Neuquén,AR-Q,annual,2020,gas oil combustion consumption by public passenger transport,27.595679999999998,TJ,N2O,3.9,kg/TJ,107.62315199999999,kg -f7deef0d-c8ab-3b5e-9d02-23c73e122d0a,SESCO,II.1.1,Rio Negro,AR-R,annual,2020,gas oil combustion consumption by public passenger transport,30.23244,TJ,CO2,74100.0,kg/TJ,2240223.804,kg -75052281-aea7-387c-8ab9-78affdd0694f,SESCO,II.1.1,Rio Negro,AR-R,annual,2020,gas oil combustion consumption by public passenger transport,30.23244,TJ,CH4,3.9,kg/TJ,117.906516,kg -75052281-aea7-387c-8ab9-78affdd0694f,SESCO,II.1.1,Rio Negro,AR-R,annual,2020,gas oil combustion consumption by public passenger transport,30.23244,TJ,N2O,3.9,kg/TJ,117.906516,kg -d59c6068-2bbc-32c5-80e4-fb4e04d5c78d,SESCO,II.1.1,Salta,AR-A,annual,2020,gas oil combustion consumption by public passenger transport,48.18408,TJ,CO2,74100.0,kg/TJ,3570440.328,kg -99b4f7a4-e104-3a56-9c95-4c0a79677393,SESCO,II.1.1,Salta,AR-A,annual,2020,gas oil combustion consumption by public passenger transport,48.18408,TJ,CH4,3.9,kg/TJ,187.917912,kg -99b4f7a4-e104-3a56-9c95-4c0a79677393,SESCO,II.1.1,Salta,AR-A,annual,2020,gas oil combustion consumption by public passenger transport,48.18408,TJ,N2O,3.9,kg/TJ,187.917912,kg -73dec076-4d24-3d84-a4cd-90519827fa0f,SESCO,II.1.1,San Juan,AR-J,annual,2020,gas oil combustion consumption by public passenger transport,34.45848,TJ,CO2,74100.0,kg/TJ,2553373.3680000002,kg -c061d027-8413-3829-b829-325476e8777a,SESCO,II.1.1,San Juan,AR-J,annual,2020,gas oil combustion consumption by public passenger transport,34.45848,TJ,CH4,3.9,kg/TJ,134.388072,kg -c061d027-8413-3829-b829-325476e8777a,SESCO,II.1.1,San Juan,AR-J,annual,2020,gas oil combustion consumption by public passenger transport,34.45848,TJ,N2O,3.9,kg/TJ,134.388072,kg -34e2d110-242b-3d95-baa0-39afd8c88617,SESCO,II.1.1,Santa Fe,AR-S,annual,2020,gas oil combustion consumption by public passenger transport,238.53647999999998,TJ,CO2,74100.0,kg/TJ,17675553.167999998,kg -f257aeb0-9626-34bd-b671-ca6cf9e73319,SESCO,II.1.1,Santa Fe,AR-S,annual,2020,gas oil combustion consumption by public passenger transport,238.53647999999998,TJ,CH4,3.9,kg/TJ,930.2922719999999,kg -f257aeb0-9626-34bd-b671-ca6cf9e73319,SESCO,II.1.1,Santa Fe,AR-S,annual,2020,gas oil combustion consumption by public passenger transport,238.53647999999998,TJ,N2O,3.9,kg/TJ,930.2922719999999,kg -d7749bdb-785d-34a8-b7d0-1f38c1aff197,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2020,gas oil combustion consumption by public passenger transport,3.50364,TJ,CO2,74100.0,kg/TJ,259619.724,kg -4015280e-4d55-38d2-bedd-bc3ed16aa8d2,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2020,gas oil combustion consumption by public passenger transport,3.50364,TJ,CH4,3.9,kg/TJ,13.664195999999999,kg -4015280e-4d55-38d2-bedd-bc3ed16aa8d2,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2020,gas oil combustion consumption by public passenger transport,3.50364,TJ,N2O,3.9,kg/TJ,13.664195999999999,kg -176e1e9e-8610-3cdc-9a6a-da479aabb356,SESCO,II.1.1,Tucuman,AR-T,annual,2020,gas oil combustion consumption by public passenger transport,2.60064,TJ,CO2,74100.0,kg/TJ,192707.424,kg -fc11201c-29b5-3996-ae33-9fed88af63eb,SESCO,II.1.1,Tucuman,AR-T,annual,2020,gas oil combustion consumption by public passenger transport,2.60064,TJ,CH4,3.9,kg/TJ,10.142496,kg -fc11201c-29b5-3996-ae33-9fed88af63eb,SESCO,II.1.1,Tucuman,AR-T,annual,2020,gas oil combustion consumption by public passenger transport,2.60064,TJ,N2O,3.9,kg/TJ,10.142496,kg -05059401-7c51-33ef-af25-bcd2c3c5a6a9,SESCO,II.1.1,Buenos Aires,AR-B,annual,2020,gas oil combustion consumption by public passenger transport,1958.28192,TJ,CO2,74100.0,kg/TJ,145108690.27199998,kg -da5efebe-294b-332a-a50d-ebefbb8b3088,SESCO,II.1.1,Buenos Aires,AR-B,annual,2020,gas oil combustion consumption by public passenger transport,1958.28192,TJ,CH4,3.9,kg/TJ,7637.299488,kg -da5efebe-294b-332a-a50d-ebefbb8b3088,SESCO,II.1.1,Buenos Aires,AR-B,annual,2020,gas oil combustion consumption by public passenger transport,1958.28192,TJ,N2O,3.9,kg/TJ,7637.299488,kg -054201d4-806d-3c3b-9f04-eb1d2180958b,SESCO,II.1.1,Capital Federal,AR-C,annual,2020,gas oil combustion consumption by public passenger transport,415.45224,TJ,CO2,74100.0,kg/TJ,30785010.984,kg -e263410e-897b-3f8f-a1bc-84d44c167e17,SESCO,II.1.1,Capital Federal,AR-C,annual,2020,gas oil combustion consumption by public passenger transport,415.45224,TJ,CH4,3.9,kg/TJ,1620.263736,kg -e263410e-897b-3f8f-a1bc-84d44c167e17,SESCO,II.1.1,Capital Federal,AR-C,annual,2020,gas oil combustion consumption by public passenger transport,415.45224,TJ,N2O,3.9,kg/TJ,1620.263736,kg -7b0e2833-78ce-34e5-8fe2-8f11f2baf3d3,SESCO,II.1.1,Chaco,AR-H,annual,2020,gas oil combustion consumption by public passenger transport,6.24876,TJ,CO2,74100.0,kg/TJ,463033.116,kg -247bb280-bcc2-30b6-9b4b-773800050630,SESCO,II.1.1,Chaco,AR-H,annual,2020,gas oil combustion consumption by public passenger transport,6.24876,TJ,CH4,3.9,kg/TJ,24.370164,kg -247bb280-bcc2-30b6-9b4b-773800050630,SESCO,II.1.1,Chaco,AR-H,annual,2020,gas oil combustion consumption by public passenger transport,6.24876,TJ,N2O,3.9,kg/TJ,24.370164,kg -10fd2cf9-f20c-3a2f-b13f-b6b3cb78ef6d,SESCO,II.1.1,Chubut,AR-U,annual,2020,gas oil combustion consumption by public passenger transport,31.64112,TJ,CO2,74100.0,kg/TJ,2344606.992,kg -7b5cd093-b837-3b05-a175-e7e33572d833,SESCO,II.1.1,Chubut,AR-U,annual,2020,gas oil combustion consumption by public passenger transport,31.64112,TJ,CH4,3.9,kg/TJ,123.400368,kg -7b5cd093-b837-3b05-a175-e7e33572d833,SESCO,II.1.1,Chubut,AR-U,annual,2020,gas oil combustion consumption by public passenger transport,31.64112,TJ,N2O,3.9,kg/TJ,123.400368,kg -31939546-de6c-3f63-803c-96114a357038,SESCO,II.1.1,Corrientes,AR-W,annual,2020,gas oil combustion consumption by public passenger transport,9.2106,TJ,CO2,74100.0,kg/TJ,682505.46,kg -06e2c62d-c263-3d08-a176-a653274d4fdd,SESCO,II.1.1,Corrientes,AR-W,annual,2020,gas oil combustion consumption by public passenger transport,9.2106,TJ,CH4,3.9,kg/TJ,35.921339999999994,kg -06e2c62d-c263-3d08-a176-a653274d4fdd,SESCO,II.1.1,Corrientes,AR-W,annual,2020,gas oil combustion consumption by public passenger transport,9.2106,TJ,N2O,3.9,kg/TJ,35.921339999999994,kg -12f500e8-9fe7-36a4-9191-0f08ff3ee9b9,SESCO,II.1.1,Córdoba,AR-X,annual,2020,gas oil combustion consumption by public passenger transport,132.09084,TJ,CO2,74100.0,kg/TJ,9787931.243999999,kg -d65083e4-f749-3600-93a3-16918a6f3265,SESCO,II.1.1,Córdoba,AR-X,annual,2020,gas oil combustion consumption by public passenger transport,132.09084,TJ,CH4,3.9,kg/TJ,515.154276,kg -d65083e4-f749-3600-93a3-16918a6f3265,SESCO,II.1.1,Córdoba,AR-X,annual,2020,gas oil combustion consumption by public passenger transport,132.09084,TJ,N2O,3.9,kg/TJ,515.154276,kg -255a012c-2c36-30be-9007-28b7a3fe216c,SESCO,II.1.1,Entre Rios,AR-E,annual,2020,gas oil combustion consumption by public passenger transport,14.88144,TJ,CO2,74100.0,kg/TJ,1102714.704,kg -799ca722-d0d5-36ca-b81b-3798a6b06393,SESCO,II.1.1,Entre Rios,AR-E,annual,2020,gas oil combustion consumption by public passenger transport,14.88144,TJ,CH4,3.9,kg/TJ,58.037616,kg -799ca722-d0d5-36ca-b81b-3798a6b06393,SESCO,II.1.1,Entre Rios,AR-E,annual,2020,gas oil combustion consumption by public passenger transport,14.88144,TJ,N2O,3.9,kg/TJ,58.037616,kg -cfb16bff-278f-3b65-b51b-4a4ba3bfc4de,SESCO,II.1.1,Mendoza,AR-M,annual,2020,gas oil combustion consumption by public passenger transport,83.4372,TJ,CO2,74100.0,kg/TJ,6182696.5200000005,kg -79eb32df-cb47-3779-aa5f-2deaa610b618,SESCO,II.1.1,Mendoza,AR-M,annual,2020,gas oil combustion consumption by public passenger transport,83.4372,TJ,CH4,3.9,kg/TJ,325.40508,kg -79eb32df-cb47-3779-aa5f-2deaa610b618,SESCO,II.1.1,Mendoza,AR-M,annual,2020,gas oil combustion consumption by public passenger transport,83.4372,TJ,N2O,3.9,kg/TJ,325.40508,kg -21ccdea5-97a9-3576-83c4-9ac82fd5206d,SESCO,II.1.1,Misiones,AR-N,annual,2020,gas oil combustion consumption by public passenger transport,29.72676,TJ,CO2,74100.0,kg/TJ,2202752.9159999997,kg -c9ac5860-8860-3fda-ae65-52929e3b8c27,SESCO,II.1.1,Misiones,AR-N,annual,2020,gas oil combustion consumption by public passenger transport,29.72676,TJ,CH4,3.9,kg/TJ,115.93436399999999,kg -c9ac5860-8860-3fda-ae65-52929e3b8c27,SESCO,II.1.1,Misiones,AR-N,annual,2020,gas oil combustion consumption by public passenger transport,29.72676,TJ,N2O,3.9,kg/TJ,115.93436399999999,kg -1c2d185f-f8bd-3467-80bd-842fb59cb2e1,SESCO,II.1.1,Neuquén,AR-Q,annual,2020,gas oil combustion consumption by public passenger transport,15.45936,TJ,CO2,74100.0,kg/TJ,1145538.5760000001,kg -df3edd88-f4cb-3e82-a3a9-7dfa737e7cc5,SESCO,II.1.1,Neuquén,AR-Q,annual,2020,gas oil combustion consumption by public passenger transport,15.45936,TJ,CH4,3.9,kg/TJ,60.291503999999996,kg -df3edd88-f4cb-3e82-a3a9-7dfa737e7cc5,SESCO,II.1.1,Neuquén,AR-Q,annual,2020,gas oil combustion consumption by public passenger transport,15.45936,TJ,N2O,3.9,kg/TJ,60.291503999999996,kg -d032dca9-c1b8-3f21-9414-218f12d44ac2,SESCO,II.1.1,Rio Negro,AR-R,annual,2020,gas oil combustion consumption by public passenger transport,80.11416,TJ,CO2,74100.0,kg/TJ,5936459.256,kg -06746c9b-b17d-3257-bf6c-6a03a41cde4b,SESCO,II.1.1,Rio Negro,AR-R,annual,2020,gas oil combustion consumption by public passenger transport,80.11416,TJ,CH4,3.9,kg/TJ,312.445224,kg -06746c9b-b17d-3257-bf6c-6a03a41cde4b,SESCO,II.1.1,Rio Negro,AR-R,annual,2020,gas oil combustion consumption by public passenger transport,80.11416,TJ,N2O,3.9,kg/TJ,312.445224,kg -f346bb5b-8f81-382b-ac8a-4700e50f39ba,SESCO,II.1.1,Salta,AR-A,annual,2020,gas oil combustion consumption by public passenger transport,41.97144,TJ,CO2,74100.0,kg/TJ,3110083.704,kg -335baaeb-6c38-3259-9cd0-825c8aa678c7,SESCO,II.1.1,Salta,AR-A,annual,2020,gas oil combustion consumption by public passenger transport,41.97144,TJ,CH4,3.9,kg/TJ,163.688616,kg -335baaeb-6c38-3259-9cd0-825c8aa678c7,SESCO,II.1.1,Salta,AR-A,annual,2020,gas oil combustion consumption by public passenger transport,41.97144,TJ,N2O,3.9,kg/TJ,163.688616,kg -2fd403dc-1837-3e06-93e6-87b72230f2aa,SESCO,II.1.1,San Juan,AR-J,annual,2020,gas oil combustion consumption by public passenger transport,43.19952,TJ,CO2,74100.0,kg/TJ,3201084.432,kg -563facd3-fca1-344f-8039-67af33ac0e77,SESCO,II.1.1,San Juan,AR-J,annual,2020,gas oil combustion consumption by public passenger transport,43.19952,TJ,CH4,3.9,kg/TJ,168.478128,kg -563facd3-fca1-344f-8039-67af33ac0e77,SESCO,II.1.1,San Juan,AR-J,annual,2020,gas oil combustion consumption by public passenger transport,43.19952,TJ,N2O,3.9,kg/TJ,168.478128,kg -cb9ccf94-63e6-380a-8df8-670a8fae5d29,SESCO,II.1.1,Santa Fe,AR-S,annual,2020,gas oil combustion consumption by public passenger transport,115.51176,TJ,CO2,74100.0,kg/TJ,8559421.416,kg -5184025b-1136-31eb-b0ca-837e7a609d9e,SESCO,II.1.1,Santa Fe,AR-S,annual,2020,gas oil combustion consumption by public passenger transport,115.51176,TJ,CH4,3.9,kg/TJ,450.495864,kg -5184025b-1136-31eb-b0ca-837e7a609d9e,SESCO,II.1.1,Santa Fe,AR-S,annual,2020,gas oil combustion consumption by public passenger transport,115.51176,TJ,N2O,3.9,kg/TJ,450.495864,kg -a74ed51b-db87-36ae-a815-65c0c266aaf9,SESCO,II.1.1,Tucuman,AR-T,annual,2020,gas oil combustion consumption by public passenger transport,0.18059999999999998,TJ,CO2,74100.0,kg/TJ,13382.46,kg -1d24498c-aa42-3cd5-b833-a0fd59b7614c,SESCO,II.1.1,Tucuman,AR-T,annual,2020,gas oil combustion consumption by public passenger transport,0.18059999999999998,TJ,CH4,3.9,kg/TJ,0.70434,kg -1d24498c-aa42-3cd5-b833-a0fd59b7614c,SESCO,II.1.1,Tucuman,AR-T,annual,2020,gas oil combustion consumption by public passenger transport,0.18059999999999998,TJ,N2O,3.9,kg/TJ,0.70434,kg -38739a1c-4c8c-3e71-ad57-56c636eaf7df,SESCO,II.5.1,Buenos Aires,AR-B,annual,2021,gas oil combustion consumption by agriculture machines,567.3368399999999,TJ,CO2,74100.0,kg/TJ,42039659.844,kg -14e30095-1091-36ea-9d8e-fdec2e071c93,SESCO,II.5.1,Buenos Aires,AR-B,annual,2021,gas oil combustion consumption by agriculture machines,567.3368399999999,TJ,CH4,3.9,kg/TJ,2212.6136759999995,kg -14e30095-1091-36ea-9d8e-fdec2e071c93,SESCO,II.5.1,Buenos Aires,AR-B,annual,2021,gas oil combustion consumption by agriculture machines,567.3368399999999,TJ,N2O,3.9,kg/TJ,2212.6136759999995,kg -66494737-c341-35c7-a588-af948b76553b,SESCO,II.5.1,Córdoba,AR-X,annual,2021,gas oil combustion consumption by agriculture machines,146.24988,TJ,CO2,74100.0,kg/TJ,10837116.108,kg -b07237e0-597f-30e1-beee-6157e087e201,SESCO,II.5.1,Córdoba,AR-X,annual,2021,gas oil combustion consumption by agriculture machines,146.24988,TJ,CH4,3.9,kg/TJ,570.3745319999999,kg -b07237e0-597f-30e1-beee-6157e087e201,SESCO,II.5.1,Córdoba,AR-X,annual,2021,gas oil combustion consumption by agriculture machines,146.24988,TJ,N2O,3.9,kg/TJ,570.3745319999999,kg -3378e608-96bc-35a4-8a6c-4f106520a551,SESCO,II.5.1,Entre Rios,AR-E,annual,2021,gas oil combustion consumption by agriculture machines,24.09204,TJ,CO2,74100.0,kg/TJ,1785220.164,kg -3485cac7-0d5e-3791-b916-6a38f60149bf,SESCO,II.5.1,Entre Rios,AR-E,annual,2021,gas oil combustion consumption by agriculture machines,24.09204,TJ,CH4,3.9,kg/TJ,93.958956,kg -3485cac7-0d5e-3791-b916-6a38f60149bf,SESCO,II.5.1,Entre Rios,AR-E,annual,2021,gas oil combustion consumption by agriculture machines,24.09204,TJ,N2O,3.9,kg/TJ,93.958956,kg -29721295-2531-331c-a609-99a2de04a05a,SESCO,II.5.1,La Pampa,AR-L,annual,2021,gas oil combustion consumption by agriculture machines,17.8794,TJ,CO2,74100.0,kg/TJ,1324863.54,kg -fa58962f-289b-3bee-b63f-92c6fa2059eb,SESCO,II.5.1,La Pampa,AR-L,annual,2021,gas oil combustion consumption by agriculture machines,17.8794,TJ,CH4,3.9,kg/TJ,69.72966,kg -fa58962f-289b-3bee-b63f-92c6fa2059eb,SESCO,II.5.1,La Pampa,AR-L,annual,2021,gas oil combustion consumption by agriculture machines,17.8794,TJ,N2O,3.9,kg/TJ,69.72966,kg -fcddbf27-87e0-34d5-8d5a-150dd295bead,SESCO,II.5.1,Santa Fe,AR-S,annual,2021,gas oil combustion consumption by agriculture machines,372.65004,TJ,CO2,74100.0,kg/TJ,27613367.963999998,kg -37409be0-6fbe-3e25-ab3f-ba84a26f1bf3,SESCO,II.5.1,Santa Fe,AR-S,annual,2021,gas oil combustion consumption by agriculture machines,372.65004,TJ,CH4,3.9,kg/TJ,1453.3351559999999,kg -37409be0-6fbe-3e25-ab3f-ba84a26f1bf3,SESCO,II.5.1,Santa Fe,AR-S,annual,2021,gas oil combustion consumption by agriculture machines,372.65004,TJ,N2O,3.9,kg/TJ,1453.3351559999999,kg -257ffa8b-5e3b-338c-b712-ca34fdfc8a5a,SESCO,II.5.1,Buenos Aires,AR-B,annual,2021,gas oil combustion consumption by agriculture machines,20.06466,TJ,CO2,74100.0,kg/TJ,1486791.306,kg -9fcd37e3-803e-35ab-b135-417b3e450148,SESCO,II.5.1,Buenos Aires,AR-B,annual,2021,gas oil combustion consumption by agriculture machines,20.06466,TJ,CH4,3.9,kg/TJ,78.252174,kg -9fcd37e3-803e-35ab-b135-417b3e450148,SESCO,II.5.1,Buenos Aires,AR-B,annual,2021,gas oil combustion consumption by agriculture machines,20.06466,TJ,N2O,3.9,kg/TJ,78.252174,kg -f1b09d03-f880-3820-9011-d44884ed6779,SESCO,II.5.1,Córdoba,AR-X,annual,2021,gas oil combustion consumption by agriculture machines,4.11768,TJ,CO2,74100.0,kg/TJ,305120.088,kg -4d3c5302-5def-3aab-9c7a-b5d9b019c49e,SESCO,II.5.1,Córdoba,AR-X,annual,2021,gas oil combustion consumption by agriculture machines,4.11768,TJ,CH4,3.9,kg/TJ,16.058951999999998,kg -4d3c5302-5def-3aab-9c7a-b5d9b019c49e,SESCO,II.5.1,Córdoba,AR-X,annual,2021,gas oil combustion consumption by agriculture machines,4.11768,TJ,N2O,3.9,kg/TJ,16.058951999999998,kg -61265b96-e74a-3aab-a847-7a4dc048f1b0,SESCO,II.5.1,Santa Fe,AR-S,annual,2021,gas oil combustion consumption by agriculture machines,6.10428,TJ,CO2,74100.0,kg/TJ,452327.148,kg -43cf9ab5-e596-3759-a523-2f633b6aeb70,SESCO,II.5.1,Santa Fe,AR-S,annual,2021,gas oil combustion consumption by agriculture machines,6.10428,TJ,CH4,3.9,kg/TJ,23.806692,kg -43cf9ab5-e596-3759-a523-2f633b6aeb70,SESCO,II.5.1,Santa Fe,AR-S,annual,2021,gas oil combustion consumption by agriculture machines,6.10428,TJ,N2O,3.9,kg/TJ,23.806692,kg -62417eb9-a58c-3976-b47e-6dc27e37d570,SESCO,II.1.1,Buenos Aires,AR-B,annual,2021,gas oil combustion consumption by to the public,1911.07308,TJ,CO2,74100.0,kg/TJ,141610515.228,kg -bb9477aa-7c1f-3b4f-8e76-1808abccfa6d,SESCO,II.1.1,Buenos Aires,AR-B,annual,2021,gas oil combustion consumption by to the public,1911.07308,TJ,CH4,3.9,kg/TJ,7453.185011999999,kg -bb9477aa-7c1f-3b4f-8e76-1808abccfa6d,SESCO,II.1.1,Buenos Aires,AR-B,annual,2021,gas oil combustion consumption by to the public,1911.07308,TJ,N2O,3.9,kg/TJ,7453.185011999999,kg -e6640593-b933-3d37-bd57-28f195d362f7,SESCO,II.1.1,Capital Federal,AR-C,annual,2021,gas oil combustion consumption by to the public,91.41972,TJ,CO2,74100.0,kg/TJ,6774201.251999999,kg -2b5b1e84-3883-3741-aa46-4f839b289104,SESCO,II.1.1,Capital Federal,AR-C,annual,2021,gas oil combustion consumption by to the public,91.41972,TJ,CH4,3.9,kg/TJ,356.536908,kg -2b5b1e84-3883-3741-aa46-4f839b289104,SESCO,II.1.1,Capital Federal,AR-C,annual,2021,gas oil combustion consumption by to the public,91.41972,TJ,N2O,3.9,kg/TJ,356.536908,kg -1e04c5cf-1045-3b38-91ac-25c7df1c0d57,SESCO,II.1.1,Catamarca,AR-K,annual,2021,gas oil combustion consumption by to the public,8.92164,TJ,CO2,74100.0,kg/TJ,661093.524,kg -1b02fa39-1b51-346f-87a2-89377cfa86e3,SESCO,II.1.1,Catamarca,AR-K,annual,2021,gas oil combustion consumption by to the public,8.92164,TJ,CH4,3.9,kg/TJ,34.794396,kg -1b02fa39-1b51-346f-87a2-89377cfa86e3,SESCO,II.1.1,Catamarca,AR-K,annual,2021,gas oil combustion consumption by to the public,8.92164,TJ,N2O,3.9,kg/TJ,34.794396,kg -561d3bc1-4a10-34bc-a3de-f118cc1551ff,SESCO,II.1.1,Chaco,AR-H,annual,2021,gas oil combustion consumption by to the public,34.4946,TJ,CO2,74100.0,kg/TJ,2556049.86,kg -fcd7906d-d0ac-39f7-94c9-a118b05d9517,SESCO,II.1.1,Chaco,AR-H,annual,2021,gas oil combustion consumption by to the public,34.4946,TJ,CH4,3.9,kg/TJ,134.52893999999998,kg -fcd7906d-d0ac-39f7-94c9-a118b05d9517,SESCO,II.1.1,Chaco,AR-H,annual,2021,gas oil combustion consumption by to the public,34.4946,TJ,N2O,3.9,kg/TJ,134.52893999999998,kg -845c039e-f21e-354d-b582-0e4d63aff749,SESCO,II.1.1,Corrientes,AR-W,annual,2021,gas oil combustion consumption by to the public,1.91436,TJ,CO2,74100.0,kg/TJ,141854.076,kg -46eafcd1-b9b5-3fc7-9502-a3768edf1f48,SESCO,II.1.1,Corrientes,AR-W,annual,2021,gas oil combustion consumption by to the public,1.91436,TJ,CH4,3.9,kg/TJ,7.466004,kg -46eafcd1-b9b5-3fc7-9502-a3768edf1f48,SESCO,II.1.1,Corrientes,AR-W,annual,2021,gas oil combustion consumption by to the public,1.91436,TJ,N2O,3.9,kg/TJ,7.466004,kg -8fffaf38-5924-3fba-aa44-83588ee99ab7,SESCO,II.1.1,Córdoba,AR-X,annual,2021,gas oil combustion consumption by to the public,1512.45276,TJ,CO2,74100.0,kg/TJ,112072749.51599999,kg -1dec36ab-4e86-3fc5-8819-452528376257,SESCO,II.1.1,Córdoba,AR-X,annual,2021,gas oil combustion consumption by to the public,1512.45276,TJ,CH4,3.9,kg/TJ,5898.565763999999,kg -1dec36ab-4e86-3fc5-8819-452528376257,SESCO,II.1.1,Córdoba,AR-X,annual,2021,gas oil combustion consumption by to the public,1512.45276,TJ,N2O,3.9,kg/TJ,5898.565763999999,kg -cc65630e-f047-34cd-bac1-ebe586dda636,SESCO,II.1.1,Entre Rios,AR-E,annual,2021,gas oil combustion consumption by to the public,228.2784,TJ,CO2,74100.0,kg/TJ,16915429.44,kg -4431f700-e162-3a29-b310-590727d91f8a,SESCO,II.1.1,Entre Rios,AR-E,annual,2021,gas oil combustion consumption by to the public,228.2784,TJ,CH4,3.9,kg/TJ,890.28576,kg -4431f700-e162-3a29-b310-590727d91f8a,SESCO,II.1.1,Entre Rios,AR-E,annual,2021,gas oil combustion consumption by to the public,228.2784,TJ,N2O,3.9,kg/TJ,890.28576,kg -9cd64c8c-20b2-3246-b80e-392a52d21e46,SESCO,II.1.1,Mendoza,AR-M,annual,2021,gas oil combustion consumption by to the public,331.9428,TJ,CO2,74100.0,kg/TJ,24596961.479999997,kg -af236463-5776-3b4e-8692-fc08efd2ba48,SESCO,II.1.1,Mendoza,AR-M,annual,2021,gas oil combustion consumption by to the public,331.9428,TJ,CH4,3.9,kg/TJ,1294.57692,kg -af236463-5776-3b4e-8692-fc08efd2ba48,SESCO,II.1.1,Mendoza,AR-M,annual,2021,gas oil combustion consumption by to the public,331.9428,TJ,N2O,3.9,kg/TJ,1294.57692,kg -81a4bee8-6f24-3b97-9c93-625c77094644,SESCO,II.1.1,San Juan,AR-J,annual,2021,gas oil combustion consumption by to the public,4.04544,TJ,CO2,74100.0,kg/TJ,299767.104,kg -f1eed927-4bc8-377e-9279-24886b325d53,SESCO,II.1.1,San Juan,AR-J,annual,2021,gas oil combustion consumption by to the public,4.04544,TJ,CH4,3.9,kg/TJ,15.777216000000001,kg -f1eed927-4bc8-377e-9279-24886b325d53,SESCO,II.1.1,San Juan,AR-J,annual,2021,gas oil combustion consumption by to the public,4.04544,TJ,N2O,3.9,kg/TJ,15.777216000000001,kg -8b09cdd2-0d0d-3f9a-a512-b0a28a998c1f,SESCO,II.1.1,San Luis,AR-D,annual,2021,gas oil combustion consumption by to the public,11.26944,TJ,CO2,74100.0,kg/TJ,835065.504,kg -b1595724-b09c-3b6a-8726-2ee6f0fe9f18,SESCO,II.1.1,San Luis,AR-D,annual,2021,gas oil combustion consumption by to the public,11.26944,TJ,CH4,3.9,kg/TJ,43.950815999999996,kg -b1595724-b09c-3b6a-8726-2ee6f0fe9f18,SESCO,II.1.1,San Luis,AR-D,annual,2021,gas oil combustion consumption by to the public,11.26944,TJ,N2O,3.9,kg/TJ,43.950815999999996,kg -553fcf7b-9630-3112-8807-3505e4334d9d,SESCO,II.1.1,Santa Fe,AR-S,annual,2021,gas oil combustion consumption by to the public,1337.19852,TJ,CO2,74100.0,kg/TJ,99086410.33199999,kg -a4069c15-0ce1-30ec-9268-e63ea1bfaa32,SESCO,II.1.1,Santa Fe,AR-S,annual,2021,gas oil combustion consumption by to the public,1337.19852,TJ,CH4,3.9,kg/TJ,5215.0742279999995,kg -a4069c15-0ce1-30ec-9268-e63ea1bfaa32,SESCO,II.1.1,Santa Fe,AR-S,annual,2021,gas oil combustion consumption by to the public,1337.19852,TJ,N2O,3.9,kg/TJ,5215.0742279999995,kg -7684bd35-ab04-30a3-af71-ec6116656b0d,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2021,gas oil combustion consumption by to the public,12.13632,TJ,CO2,74100.0,kg/TJ,899301.3119999999,kg -c0770270-da5a-324a-b34e-0ca7895018cf,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2021,gas oil combustion consumption by to the public,12.13632,TJ,CH4,3.9,kg/TJ,47.331647999999994,kg -c0770270-da5a-324a-b34e-0ca7895018cf,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2021,gas oil combustion consumption by to the public,12.13632,TJ,N2O,3.9,kg/TJ,47.331647999999994,kg -e0fc65c6-2fb1-3bbd-b4d5-a7cb83d48043,SESCO,II.1.1,Tucuman,AR-T,annual,2021,gas oil combustion consumption by to the public,180.81672,TJ,CO2,74100.0,kg/TJ,13398518.952,kg -da531709-58bb-38b2-bba2-04f2cb1f8e89,SESCO,II.1.1,Tucuman,AR-T,annual,2021,gas oil combustion consumption by to the public,180.81672,TJ,CH4,3.9,kg/TJ,705.185208,kg -da531709-58bb-38b2-bba2-04f2cb1f8e89,SESCO,II.1.1,Tucuman,AR-T,annual,2021,gas oil combustion consumption by to the public,180.81672,TJ,N2O,3.9,kg/TJ,705.185208,kg -92999fa5-cc11-3f04-bd01-45420a7531a9,SESCO,II.1.1,Buenos Aires,AR-B,annual,2021,gas oil combustion consumption by to the public,118.04016,TJ,CO2,74100.0,kg/TJ,8746775.856,kg -c2ae23f4-ce8a-35e6-9216-db0e7ec65737,SESCO,II.1.1,Buenos Aires,AR-B,annual,2021,gas oil combustion consumption by to the public,118.04016,TJ,CH4,3.9,kg/TJ,460.356624,kg -c2ae23f4-ce8a-35e6-9216-db0e7ec65737,SESCO,II.1.1,Buenos Aires,AR-B,annual,2021,gas oil combustion consumption by to the public,118.04016,TJ,N2O,3.9,kg/TJ,460.356624,kg -ae95323d-0cfe-347f-b89b-655afbec52ea,SESCO,II.1.1,Capital Federal,AR-C,annual,2021,gas oil combustion consumption by to the public,15.24264,TJ,CO2,74100.0,kg/TJ,1129479.624,kg -880be51e-7bf0-32a9-8b90-48ecd534ed05,SESCO,II.1.1,Capital Federal,AR-C,annual,2021,gas oil combustion consumption by to the public,15.24264,TJ,CH4,3.9,kg/TJ,59.446296,kg -880be51e-7bf0-32a9-8b90-48ecd534ed05,SESCO,II.1.1,Capital Federal,AR-C,annual,2021,gas oil combustion consumption by to the public,15.24264,TJ,N2O,3.9,kg/TJ,59.446296,kg -3f83dec1-d4ea-353b-94aa-977e6161eb13,SESCO,II.1.1,Catamarca,AR-K,annual,2021,gas oil combustion consumption by to the public,8.307599999999999,TJ,CO2,74100.0,kg/TJ,615593.1599999999,kg -52a15292-81d3-3a1a-ae06-482b0bd4e33f,SESCO,II.1.1,Catamarca,AR-K,annual,2021,gas oil combustion consumption by to the public,8.307599999999999,TJ,CH4,3.9,kg/TJ,32.39964,kg -52a15292-81d3-3a1a-ae06-482b0bd4e33f,SESCO,II.1.1,Catamarca,AR-K,annual,2021,gas oil combustion consumption by to the public,8.307599999999999,TJ,N2O,3.9,kg/TJ,32.39964,kg -570d631c-26e4-377e-afea-cf37398a347c,SESCO,II.1.1,Chaco,AR-H,annual,2021,gas oil combustion consumption by to the public,0.39732,TJ,CO2,74100.0,kg/TJ,29441.412,kg -cea9d944-995e-3ccf-aaac-5a5c348ca242,SESCO,II.1.1,Chaco,AR-H,annual,2021,gas oil combustion consumption by to the public,0.39732,TJ,CH4,3.9,kg/TJ,1.549548,kg -cea9d944-995e-3ccf-aaac-5a5c348ca242,SESCO,II.1.1,Chaco,AR-H,annual,2021,gas oil combustion consumption by to the public,0.39732,TJ,N2O,3.9,kg/TJ,1.549548,kg -dc08d5f2-276c-37cb-ab46-ec83e157de83,SESCO,II.1.1,Corrientes,AR-W,annual,2021,gas oil combustion consumption by to the public,1.30032,TJ,CO2,74100.0,kg/TJ,96353.712,kg -216b6cd7-55d8-37e5-b2f3-b1a79864eb2d,SESCO,II.1.1,Corrientes,AR-W,annual,2021,gas oil combustion consumption by to the public,1.30032,TJ,CH4,3.9,kg/TJ,5.071248,kg -216b6cd7-55d8-37e5-b2f3-b1a79864eb2d,SESCO,II.1.1,Corrientes,AR-W,annual,2021,gas oil combustion consumption by to the public,1.30032,TJ,N2O,3.9,kg/TJ,5.071248,kg -2ebc4e67-5eb5-3e93-9da2-3d10b707fd53,SESCO,II.1.1,Córdoba,AR-X,annual,2021,gas oil combustion consumption by to the public,218.27316,TJ,CO2,74100.0,kg/TJ,16174041.156,kg -ae132989-de21-3f4f-8961-ac4586c6b8de,SESCO,II.1.1,Córdoba,AR-X,annual,2021,gas oil combustion consumption by to the public,218.27316,TJ,CH4,3.9,kg/TJ,851.265324,kg -ae132989-de21-3f4f-8961-ac4586c6b8de,SESCO,II.1.1,Córdoba,AR-X,annual,2021,gas oil combustion consumption by to the public,218.27316,TJ,N2O,3.9,kg/TJ,851.265324,kg -d54798cb-3c53-3096-9fe4-550ae1a18a5b,SESCO,II.1.1,Entre Rios,AR-E,annual,2021,gas oil combustion consumption by to the public,30.05184,TJ,CO2,74100.0,kg/TJ,2226841.344,kg -0df74e86-a689-355e-b43a-00c671615dc5,SESCO,II.1.1,Entre Rios,AR-E,annual,2021,gas oil combustion consumption by to the public,30.05184,TJ,CH4,3.9,kg/TJ,117.202176,kg -0df74e86-a689-355e-b43a-00c671615dc5,SESCO,II.1.1,Entre Rios,AR-E,annual,2021,gas oil combustion consumption by to the public,30.05184,TJ,N2O,3.9,kg/TJ,117.202176,kg -52c17393-a0a7-3162-89a7-d23f4d4f8d6e,SESCO,II.1.1,Mendoza,AR-M,annual,2021,gas oil combustion consumption by to the public,79.39176,TJ,CO2,74100.0,kg/TJ,5882929.416,kg -d2d10431-3b07-3ab4-b275-a56e51554a21,SESCO,II.1.1,Mendoza,AR-M,annual,2021,gas oil combustion consumption by to the public,79.39176,TJ,CH4,3.9,kg/TJ,309.627864,kg -d2d10431-3b07-3ab4-b275-a56e51554a21,SESCO,II.1.1,Mendoza,AR-M,annual,2021,gas oil combustion consumption by to the public,79.39176,TJ,N2O,3.9,kg/TJ,309.627864,kg -196d73f1-7dda-39b8-870f-15abb9826b99,SESCO,II.1.1,San Juan,AR-J,annual,2021,gas oil combustion consumption by to the public,0.39732,TJ,CO2,74100.0,kg/TJ,29441.412,kg -ba9dd283-8d48-3b77-ae48-52cdddf9e349,SESCO,II.1.1,San Juan,AR-J,annual,2021,gas oil combustion consumption by to the public,0.39732,TJ,CH4,3.9,kg/TJ,1.549548,kg -ba9dd283-8d48-3b77-ae48-52cdddf9e349,SESCO,II.1.1,San Juan,AR-J,annual,2021,gas oil combustion consumption by to the public,0.39732,TJ,N2O,3.9,kg/TJ,1.549548,kg -c76ee12b-ec6f-3b78-8034-83582e701ca8,SESCO,II.1.1,San Luis,AR-D,annual,2021,gas oil combustion consumption by to the public,2.4200399999999997,TJ,CO2,74100.0,kg/TJ,179324.96399999998,kg -3c77fae6-68b9-30fb-b202-2917014ba56c,SESCO,II.1.1,San Luis,AR-D,annual,2021,gas oil combustion consumption by to the public,2.4200399999999997,TJ,CH4,3.9,kg/TJ,9.438156,kg -3c77fae6-68b9-30fb-b202-2917014ba56c,SESCO,II.1.1,San Luis,AR-D,annual,2021,gas oil combustion consumption by to the public,2.4200399999999997,TJ,N2O,3.9,kg/TJ,9.438156,kg -e72d18f4-6aeb-3ffb-a6fb-db88b80fc08c,SESCO,II.1.1,Santa Fe,AR-S,annual,2021,gas oil combustion consumption by to the public,126.63672,TJ,CO2,74100.0,kg/TJ,9383780.952,kg -072d4955-4a41-3f00-99a9-9220a85f8ccb,SESCO,II.1.1,Santa Fe,AR-S,annual,2021,gas oil combustion consumption by to the public,126.63672,TJ,CH4,3.9,kg/TJ,493.88320799999997,kg -072d4955-4a41-3f00-99a9-9220a85f8ccb,SESCO,II.1.1,Santa Fe,AR-S,annual,2021,gas oil combustion consumption by to the public,126.63672,TJ,N2O,3.9,kg/TJ,493.88320799999997,kg -d67dac80-faa2-3c44-8acc-b66d4f2b443e,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2021,gas oil combustion consumption by to the public,9.680159999999999,TJ,CO2,74100.0,kg/TJ,717299.8559999999,kg -e8ee6700-c437-3eae-a9df-2f072e3ce913,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2021,gas oil combustion consumption by to the public,9.680159999999999,TJ,CH4,3.9,kg/TJ,37.752624,kg -e8ee6700-c437-3eae-a9df-2f072e3ce913,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2021,gas oil combustion consumption by to the public,9.680159999999999,TJ,N2O,3.9,kg/TJ,37.752624,kg -0f5b2ced-0936-3abd-b1f2-55bf152a2fbc,SESCO,II.1.1,Tucuman,AR-T,annual,2021,gas oil combustion consumption by to the public,11.70288,TJ,CO2,74100.0,kg/TJ,867183.408,kg -46325e83-93e3-3a00-8e6c-1659d3d85c54,SESCO,II.1.1,Tucuman,AR-T,annual,2021,gas oil combustion consumption by to the public,11.70288,TJ,CH4,3.9,kg/TJ,45.641232,kg -46325e83-93e3-3a00-8e6c-1659d3d85c54,SESCO,II.1.1,Tucuman,AR-T,annual,2021,gas oil combustion consumption by to the public,11.70288,TJ,N2O,3.9,kg/TJ,45.641232,kg -760070ad-0ddc-3ee2-bf2b-ee32ddcfd1ab,SESCO,II.1.1,Buenos Aires,AR-B,annual,2021,jet kerosene combustion consumption by to the public,0.31453,TJ,CO2,71500.0,kg/TJ,22488.894999999997,kg -14c3d360-c3f9-3a44-aa9c-d7a23f0be055,SESCO,II.1.1,Buenos Aires,AR-B,annual,2021,jet kerosene combustion consumption by to the public,0.31453,TJ,CH4,0.5,kg/TJ,0.157265,kg -3cbb27cd-15a8-30d0-a77a-e64d675f20a7,SESCO,II.1.1,Buenos Aires,AR-B,annual,2021,jet kerosene combustion consumption by to the public,0.31453,TJ,N2O,2.0,kg/TJ,0.62906,kg -77bacd10-66e5-3e65-9ec1-300c3dac0bca,SESCO,II.1.1,Córdoba,AR-X,annual,2021,jet kerosene combustion consumption by to the public,1.3839319999999997,TJ,CO2,71500.0,kg/TJ,98951.13799999998,kg -dca7ba9a-ecbd-39e0-814f-9307736f0f48,SESCO,II.1.1,Córdoba,AR-X,annual,2021,jet kerosene combustion consumption by to the public,1.3839319999999997,TJ,CH4,0.5,kg/TJ,0.6919659999999999,kg -822e0e2c-14d4-364b-b48b-de8e05f7baa1,SESCO,II.1.1,Córdoba,AR-X,annual,2021,jet kerosene combustion consumption by to the public,1.3839319999999997,TJ,N2O,2.0,kg/TJ,2.7678639999999994,kg -33a6f3ae-d6e0-3ce0-af12-2a5a9449e9c3,SESCO,II.1.1,Santa Fe,AR-S,annual,2021,jet kerosene combustion consumption by to the public,0.4717949999999999,TJ,CO2,71500.0,kg/TJ,33733.34249999999,kg -73367160-5971-3a65-9d12-0e80d258692c,SESCO,II.1.1,Santa Fe,AR-S,annual,2021,jet kerosene combustion consumption by to the public,0.4717949999999999,TJ,CH4,0.5,kg/TJ,0.23589749999999995,kg -eb9aa8fe-ebcd-3bfc-844d-cf76c0f4061c,SESCO,II.1.1,Santa Fe,AR-S,annual,2021,jet kerosene combustion consumption by to the public,0.4717949999999999,TJ,N2O,2.0,kg/TJ,0.9435899999999998,kg -fd6c0f8c-406e-3e59-84cb-b575f4d0c9ab,SESCO,II.5.1,Buenos Aires,AR-B,annual,2021,gas oil combustion consumption by agriculture machines,359.71908,TJ,CO2,74100.0,kg/TJ,26655183.828,kg -d952def6-1215-3c03-bf9e-bdc052daaa7d,SESCO,II.5.1,Buenos Aires,AR-B,annual,2021,gas oil combustion consumption by agriculture machines,359.71908,TJ,CH4,3.9,kg/TJ,1402.904412,kg -d952def6-1215-3c03-bf9e-bdc052daaa7d,SESCO,II.5.1,Buenos Aires,AR-B,annual,2021,gas oil combustion consumption by agriculture machines,359.71908,TJ,N2O,3.9,kg/TJ,1402.904412,kg -054f5c93-383f-3c91-8523-f61e49e4cf08,SESCO,II.5.1,Corrientes,AR-W,annual,2021,gas oil combustion consumption by agriculture machines,0.7223999999999999,TJ,CO2,74100.0,kg/TJ,53529.84,kg -930c9e36-d09e-31a8-a4e3-0e2b15c406c2,SESCO,II.5.1,Corrientes,AR-W,annual,2021,gas oil combustion consumption by agriculture machines,0.7223999999999999,TJ,CH4,3.9,kg/TJ,2.81736,kg -930c9e36-d09e-31a8-a4e3-0e2b15c406c2,SESCO,II.5.1,Corrientes,AR-W,annual,2021,gas oil combustion consumption by agriculture machines,0.7223999999999999,TJ,N2O,3.9,kg/TJ,2.81736,kg -8caa51c6-f688-3f55-9c77-cd985209c8a2,SESCO,II.5.1,Córdoba,AR-X,annual,2021,gas oil combustion consumption by agriculture machines,288.38208,TJ,CO2,74100.0,kg/TJ,21369112.128,kg -59e2bb27-f0da-3b7e-a7d8-c2622481ac53,SESCO,II.5.1,Córdoba,AR-X,annual,2021,gas oil combustion consumption by agriculture machines,288.38208,TJ,CH4,3.9,kg/TJ,1124.6901119999998,kg -59e2bb27-f0da-3b7e-a7d8-c2622481ac53,SESCO,II.5.1,Córdoba,AR-X,annual,2021,gas oil combustion consumption by agriculture machines,288.38208,TJ,N2O,3.9,kg/TJ,1124.6901119999998,kg -c4aaac14-10d6-36aa-ae95-ab4e8b9c341d,SESCO,II.5.1,Entre Rios,AR-E,annual,2021,gas oil combustion consumption by agriculture machines,279.027,TJ,CO2,74100.0,kg/TJ,20675900.7,kg -7078aba7-351b-380a-bd31-7a60cdec13d7,SESCO,II.5.1,Entre Rios,AR-E,annual,2021,gas oil combustion consumption by agriculture machines,279.027,TJ,CH4,3.9,kg/TJ,1088.2052999999999,kg -7078aba7-351b-380a-bd31-7a60cdec13d7,SESCO,II.5.1,Entre Rios,AR-E,annual,2021,gas oil combustion consumption by agriculture machines,279.027,TJ,N2O,3.9,kg/TJ,1088.2052999999999,kg -69fbb83b-66d7-3ce3-97b2-ba174abc8743,SESCO,II.5.1,Mendoza,AR-M,annual,2021,gas oil combustion consumption by agriculture machines,2.38392,TJ,CO2,74100.0,kg/TJ,176648.47199999998,kg -1597884b-aa42-3ae7-95cb-5d3ab454445f,SESCO,II.5.1,Mendoza,AR-M,annual,2021,gas oil combustion consumption by agriculture machines,2.38392,TJ,CH4,3.9,kg/TJ,9.297287999999998,kg -1597884b-aa42-3ae7-95cb-5d3ab454445f,SESCO,II.5.1,Mendoza,AR-M,annual,2021,gas oil combustion consumption by agriculture machines,2.38392,TJ,N2O,3.9,kg/TJ,9.297287999999998,kg -d106809a-53a1-3986-8b9f-c45a93090936,SESCO,II.5.1,Salta,AR-A,annual,2021,gas oil combustion consumption by agriculture machines,463.56408,TJ,CO2,74100.0,kg/TJ,34350098.328,kg -b1157bc1-328f-36ff-bb74-ff648a667f7b,SESCO,II.5.1,Salta,AR-A,annual,2021,gas oil combustion consumption by agriculture machines,463.56408,TJ,CH4,3.9,kg/TJ,1807.8999119999999,kg -b1157bc1-328f-36ff-bb74-ff648a667f7b,SESCO,II.5.1,Salta,AR-A,annual,2021,gas oil combustion consumption by agriculture machines,463.56408,TJ,N2O,3.9,kg/TJ,1807.8999119999999,kg -98ead2d6-c662-3c69-a4ac-3ae844580206,SESCO,II.5.1,Santa Cruz,AR-Z,annual,2021,gas oil combustion consumption by agriculture machines,13.14768,TJ,CO2,74100.0,kg/TJ,974243.088,kg -004cf539-5352-3341-b3e5-a08c2bc5a2ce,SESCO,II.5.1,Santa Cruz,AR-Z,annual,2021,gas oil combustion consumption by agriculture machines,13.14768,TJ,CH4,3.9,kg/TJ,51.275952,kg -004cf539-5352-3341-b3e5-a08c2bc5a2ce,SESCO,II.5.1,Santa Cruz,AR-Z,annual,2021,gas oil combustion consumption by agriculture machines,13.14768,TJ,N2O,3.9,kg/TJ,51.275952,kg -84219182-5c03-3c4e-9e2c-0ee587f7ef69,SESCO,II.5.1,Santa Fe,AR-S,annual,2021,gas oil combustion consumption by agriculture machines,157.15812,TJ,CO2,74100.0,kg/TJ,11645416.692,kg -500ceda6-d7a7-30c2-ab84-2c34773ddedc,SESCO,II.5.1,Santa Fe,AR-S,annual,2021,gas oil combustion consumption by agriculture machines,157.15812,TJ,CH4,3.9,kg/TJ,612.916668,kg -500ceda6-d7a7-30c2-ab84-2c34773ddedc,SESCO,II.5.1,Santa Fe,AR-S,annual,2021,gas oil combustion consumption by agriculture machines,157.15812,TJ,N2O,3.9,kg/TJ,612.916668,kg -c36d346a-db9b-3004-a55c-f23c3821aaed,SESCO,II.5.1,Buenos Aires,AR-B,annual,2021,gas oil combustion consumption by agriculture machines,4.37052,TJ,CO2,74100.0,kg/TJ,323855.532,kg -e49d7bfe-39de-3668-ac19-2f4eee53d0ac,SESCO,II.5.1,Buenos Aires,AR-B,annual,2021,gas oil combustion consumption by agriculture machines,4.37052,TJ,CH4,3.9,kg/TJ,17.045028,kg -e49d7bfe-39de-3668-ac19-2f4eee53d0ac,SESCO,II.5.1,Buenos Aires,AR-B,annual,2021,gas oil combustion consumption by agriculture machines,4.37052,TJ,N2O,3.9,kg/TJ,17.045028,kg -c9074328-0739-3f19-8419-0bacb52f1ced,SESCO,II.5.1,Córdoba,AR-X,annual,2021,gas oil combustion consumption by agriculture machines,3.53976,TJ,CO2,74100.0,kg/TJ,262296.21599999996,kg -6520de76-dd23-366a-aa20-a1cfcf7d1947,SESCO,II.5.1,Córdoba,AR-X,annual,2021,gas oil combustion consumption by agriculture machines,3.53976,TJ,CH4,3.9,kg/TJ,13.805063999999998,kg -6520de76-dd23-366a-aa20-a1cfcf7d1947,SESCO,II.5.1,Córdoba,AR-X,annual,2021,gas oil combustion consumption by agriculture machines,3.53976,TJ,N2O,3.9,kg/TJ,13.805063999999998,kg -7f4e18c7-19b2-374e-a183-ab61a951f4d0,SESCO,II.5.1,Entre Rios,AR-E,annual,2021,gas oil combustion consumption by agriculture machines,3.03408,TJ,CO2,74100.0,kg/TJ,224825.32799999998,kg -360740e7-ca0d-33d2-ba54-46dfdad2cb6c,SESCO,II.5.1,Entre Rios,AR-E,annual,2021,gas oil combustion consumption by agriculture machines,3.03408,TJ,CH4,3.9,kg/TJ,11.832911999999999,kg -360740e7-ca0d-33d2-ba54-46dfdad2cb6c,SESCO,II.5.1,Entre Rios,AR-E,annual,2021,gas oil combustion consumption by agriculture machines,3.03408,TJ,N2O,3.9,kg/TJ,11.832911999999999,kg -994b1bce-2527-3f7d-9978-aa3e1ecfa834,SESCO,II.5.1,Salta,AR-A,annual,2021,gas oil combustion consumption by agriculture machines,0.46956,TJ,CO2,74100.0,kg/TJ,34794.396,kg -6e640d6c-c4e8-338d-8432-b751cf2a13a4,SESCO,II.5.1,Salta,AR-A,annual,2021,gas oil combustion consumption by agriculture machines,0.46956,TJ,CH4,3.9,kg/TJ,1.831284,kg -6e640d6c-c4e8-338d-8432-b751cf2a13a4,SESCO,II.5.1,Salta,AR-A,annual,2021,gas oil combustion consumption by agriculture machines,0.46956,TJ,N2O,3.9,kg/TJ,1.831284,kg -2f3a9191-03a3-3dbb-9951-f6eee56e65e0,SESCO,II.5.1,Santa Fe,AR-S,annual,2021,gas oil combustion consumption by agriculture machines,1.2642,TJ,CO2,74100.0,kg/TJ,93677.22,kg -a231cce5-e1d2-3a36-85af-b2907160379b,SESCO,II.5.1,Santa Fe,AR-S,annual,2021,gas oil combustion consumption by agriculture machines,1.2642,TJ,CH4,3.9,kg/TJ,4.9303799999999995,kg -a231cce5-e1d2-3a36-85af-b2907160379b,SESCO,II.5.1,Santa Fe,AR-S,annual,2021,gas oil combustion consumption by agriculture machines,1.2642,TJ,N2O,3.9,kg/TJ,4.9303799999999995,kg -5860db89-8cad-3c31-9619-380105d80db2,SESCO,II.1.1,Buenos Aires,AR-B,annual,2021,gas oil combustion consumption by to the public,2175.83268,TJ,CO2,74100.0,kg/TJ,161229201.588,kg -cccdc60a-dea7-3e71-a9cb-69bd8f7b3701,SESCO,II.1.1,Buenos Aires,AR-B,annual,2021,gas oil combustion consumption by to the public,2175.83268,TJ,CH4,3.9,kg/TJ,8485.747452,kg -cccdc60a-dea7-3e71-a9cb-69bd8f7b3701,SESCO,II.1.1,Buenos Aires,AR-B,annual,2021,gas oil combustion consumption by to the public,2175.83268,TJ,N2O,3.9,kg/TJ,8485.747452,kg -5f921502-17fc-3b00-bdce-1ffcbae2cbdf,SESCO,II.1.1,Capital Federal,AR-C,annual,2021,gas oil combustion consumption by to the public,436.149,TJ,CO2,74100.0,kg/TJ,32318640.9,kg -b92dd709-57cb-3820-a8f7-89718dbda28d,SESCO,II.1.1,Capital Federal,AR-C,annual,2021,gas oil combustion consumption by to the public,436.149,TJ,CH4,3.9,kg/TJ,1700.9811,kg -b92dd709-57cb-3820-a8f7-89718dbda28d,SESCO,II.1.1,Capital Federal,AR-C,annual,2021,gas oil combustion consumption by to the public,436.149,TJ,N2O,3.9,kg/TJ,1700.9811,kg -f1f01236-baac-3969-9a6b-698ba0a194fa,SESCO,II.1.1,Catamarca,AR-K,annual,2021,gas oil combustion consumption by to the public,45.65568,TJ,CO2,74100.0,kg/TJ,3383085.888,kg -cc1708d6-ce26-3219-9599-1f35548c9bdd,SESCO,II.1.1,Catamarca,AR-K,annual,2021,gas oil combustion consumption by to the public,45.65568,TJ,CH4,3.9,kg/TJ,178.05715199999997,kg -cc1708d6-ce26-3219-9599-1f35548c9bdd,SESCO,II.1.1,Catamarca,AR-K,annual,2021,gas oil combustion consumption by to the public,45.65568,TJ,N2O,3.9,kg/TJ,178.05715199999997,kg -ba587f90-7f72-3e0a-96ee-2d2df77ddd7a,SESCO,II.1.1,Chaco,AR-H,annual,2021,gas oil combustion consumption by to the public,321.93756,TJ,CO2,74100.0,kg/TJ,23855573.196000002,kg -cb73035a-c429-3706-99f4-2a2178724ced,SESCO,II.1.1,Chaco,AR-H,annual,2021,gas oil combustion consumption by to the public,321.93756,TJ,CH4,3.9,kg/TJ,1255.556484,kg -cb73035a-c429-3706-99f4-2a2178724ced,SESCO,II.1.1,Chaco,AR-H,annual,2021,gas oil combustion consumption by to the public,321.93756,TJ,N2O,3.9,kg/TJ,1255.556484,kg -b8e697bf-cbd5-379b-8ae5-13555f664ebc,SESCO,II.1.1,Corrientes,AR-W,annual,2021,gas oil combustion consumption by to the public,564.04992,TJ,CO2,74100.0,kg/TJ,41796099.072000004,kg -61b5e75b-6ff7-30a7-9af3-302ccbe01fa7,SESCO,II.1.1,Corrientes,AR-W,annual,2021,gas oil combustion consumption by to the public,564.04992,TJ,CH4,3.9,kg/TJ,2199.794688,kg -61b5e75b-6ff7-30a7-9af3-302ccbe01fa7,SESCO,II.1.1,Corrientes,AR-W,annual,2021,gas oil combustion consumption by to the public,564.04992,TJ,N2O,3.9,kg/TJ,2199.794688,kg -34e5e8c6-8346-371d-ab7a-e291a0f2d991,SESCO,II.1.1,Córdoba,AR-X,annual,2021,gas oil combustion consumption by to the public,1032.02064,TJ,CO2,74100.0,kg/TJ,76472729.424,kg -c8150bf7-adee-3072-b147-f45f44499e94,SESCO,II.1.1,Córdoba,AR-X,annual,2021,gas oil combustion consumption by to the public,1032.02064,TJ,CH4,3.9,kg/TJ,4024.8804959999998,kg -c8150bf7-adee-3072-b147-f45f44499e94,SESCO,II.1.1,Córdoba,AR-X,annual,2021,gas oil combustion consumption by to the public,1032.02064,TJ,N2O,3.9,kg/TJ,4024.8804959999998,kg -b3f66bf5-1a07-3d5b-84e5-b5e408348897,SESCO,II.1.1,Entre Rios,AR-E,annual,2021,gas oil combustion consumption by to the public,754.51068,TJ,CO2,74100.0,kg/TJ,55909241.388,kg -f9c15362-c283-3edf-b6d1-b62277a466d2,SESCO,II.1.1,Entre Rios,AR-E,annual,2021,gas oil combustion consumption by to the public,754.51068,TJ,CH4,3.9,kg/TJ,2942.591652,kg -f9c15362-c283-3edf-b6d1-b62277a466d2,SESCO,II.1.1,Entre Rios,AR-E,annual,2021,gas oil combustion consumption by to the public,754.51068,TJ,N2O,3.9,kg/TJ,2942.591652,kg -d1f79ab4-ba9a-3355-8e23-380b5b82207f,SESCO,II.1.1,Formosa,AR-P,annual,2021,gas oil combustion consumption by to the public,17.662679999999998,TJ,CO2,74100.0,kg/TJ,1308804.5879999998,kg -b2c75ed7-6a4e-3f3f-9d23-89809883f256,SESCO,II.1.1,Formosa,AR-P,annual,2021,gas oil combustion consumption by to the public,17.662679999999998,TJ,CH4,3.9,kg/TJ,68.884452,kg -b2c75ed7-6a4e-3f3f-9d23-89809883f256,SESCO,II.1.1,Formosa,AR-P,annual,2021,gas oil combustion consumption by to the public,17.662679999999998,TJ,N2O,3.9,kg/TJ,68.884452,kg -266f6f30-6739-3645-b0f4-59cc1f4ff00e,SESCO,II.1.1,La Rioja,AR-F,annual,2021,gas oil combustion consumption by to the public,47.35332,TJ,CO2,74100.0,kg/TJ,3508881.0119999996,kg -64f050fc-3d53-3b3d-a5e5-dd281d665009,SESCO,II.1.1,La Rioja,AR-F,annual,2021,gas oil combustion consumption by to the public,47.35332,TJ,CH4,3.9,kg/TJ,184.677948,kg -64f050fc-3d53-3b3d-a5e5-dd281d665009,SESCO,II.1.1,La Rioja,AR-F,annual,2021,gas oil combustion consumption by to the public,47.35332,TJ,N2O,3.9,kg/TJ,184.677948,kg -3e5e6a75-e42c-320b-80b1-95b443dbef61,SESCO,II.1.1,Mendoza,AR-M,annual,2021,gas oil combustion consumption by to the public,1159.19916,TJ,CO2,74100.0,kg/TJ,85896657.756,kg -118993cd-9576-3586-87bf-eb80f8683a05,SESCO,II.1.1,Mendoza,AR-M,annual,2021,gas oil combustion consumption by to the public,1159.19916,TJ,CH4,3.9,kg/TJ,4520.876724,kg -118993cd-9576-3586-87bf-eb80f8683a05,SESCO,II.1.1,Mendoza,AR-M,annual,2021,gas oil combustion consumption by to the public,1159.19916,TJ,N2O,3.9,kg/TJ,4520.876724,kg -74799781-3e56-388d-b3d7-49dcb1dd15bf,SESCO,II.1.1,Misiones,AR-N,annual,2021,gas oil combustion consumption by to the public,346.46304,TJ,CO2,74100.0,kg/TJ,25672911.264,kg -d4b5cdcc-8833-3697-b98b-f6b85bc65b50,SESCO,II.1.1,Misiones,AR-N,annual,2021,gas oil combustion consumption by to the public,346.46304,TJ,CH4,3.9,kg/TJ,1351.2058559999998,kg -d4b5cdcc-8833-3697-b98b-f6b85bc65b50,SESCO,II.1.1,Misiones,AR-N,annual,2021,gas oil combustion consumption by to the public,346.46304,TJ,N2O,3.9,kg/TJ,1351.2058559999998,kg -263a3293-cca5-3fad-afa4-ff58c161db56,SESCO,II.1.1,San Juan,AR-J,annual,2021,gas oil combustion consumption by to the public,43.05504,TJ,CO2,74100.0,kg/TJ,3190378.4639999997,kg -645e6775-98b7-3404-82f6-2b33101deadd,SESCO,II.1.1,San Juan,AR-J,annual,2021,gas oil combustion consumption by to the public,43.05504,TJ,CH4,3.9,kg/TJ,167.91465599999998,kg -645e6775-98b7-3404-82f6-2b33101deadd,SESCO,II.1.1,San Juan,AR-J,annual,2021,gas oil combustion consumption by to the public,43.05504,TJ,N2O,3.9,kg/TJ,167.91465599999998,kg -1c99c22b-2e43-3e5d-8a77-999cc070ff4c,SESCO,II.1.1,San Luis,AR-D,annual,2021,gas oil combustion consumption by to the public,3.0702,TJ,CO2,74100.0,kg/TJ,227501.81999999998,kg -f5b4bd91-1764-3969-80de-23ea3f05e4eb,SESCO,II.1.1,San Luis,AR-D,annual,2021,gas oil combustion consumption by to the public,3.0702,TJ,CH4,3.9,kg/TJ,11.97378,kg -f5b4bd91-1764-3969-80de-23ea3f05e4eb,SESCO,II.1.1,San Luis,AR-D,annual,2021,gas oil combustion consumption by to the public,3.0702,TJ,N2O,3.9,kg/TJ,11.97378,kg -7dda8051-b258-3d39-bf49-155a61449b2e,SESCO,II.1.1,Santa Fe,AR-S,annual,2021,gas oil combustion consumption by to the public,1082.7331199999999,TJ,CO2,74100.0,kg/TJ,80230524.19199999,kg -efa30b49-ef51-351a-9723-9ceab82ede7f,SESCO,II.1.1,Santa Fe,AR-S,annual,2021,gas oil combustion consumption by to the public,1082.7331199999999,TJ,CH4,3.9,kg/TJ,4222.659167999999,kg -efa30b49-ef51-351a-9723-9ceab82ede7f,SESCO,II.1.1,Santa Fe,AR-S,annual,2021,gas oil combustion consumption by to the public,1082.7331199999999,TJ,N2O,3.9,kg/TJ,4222.659167999999,kg -fafa9801-f305-30cd-a8a4-b859e1d8db01,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2021,gas oil combustion consumption by to the public,96.15144,TJ,CO2,74100.0,kg/TJ,7124821.704,kg -b9aede4f-ae09-34b8-bb18-d7136884c7af,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2021,gas oil combustion consumption by to the public,96.15144,TJ,CH4,3.9,kg/TJ,374.990616,kg -b9aede4f-ae09-34b8-bb18-d7136884c7af,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2021,gas oil combustion consumption by to the public,96.15144,TJ,N2O,3.9,kg/TJ,374.990616,kg -f5c2982a-e54d-33f1-ac0d-34fb783dc659,SESCO,II.1.1,Tucuman,AR-T,annual,2021,gas oil combustion consumption by to the public,204.90876,TJ,CO2,74100.0,kg/TJ,15183739.116,kg -ea81e229-5096-3a43-bb2e-6adb4ff241cb,SESCO,II.1.1,Tucuman,AR-T,annual,2021,gas oil combustion consumption by to the public,204.90876,TJ,CH4,3.9,kg/TJ,799.1441639999999,kg -ea81e229-5096-3a43-bb2e-6adb4ff241cb,SESCO,II.1.1,Tucuman,AR-T,annual,2021,gas oil combustion consumption by to the public,204.90876,TJ,N2O,3.9,kg/TJ,799.1441639999999,kg -5c6c47f9-2457-35ef-a034-48101afec243,SESCO,II.1.1,Buenos Aires,AR-B,annual,2021,gas oil combustion consumption by to the public,299.6154,TJ,CO2,74100.0,kg/TJ,22201501.14,kg -ba95c102-24ba-3fe7-be40-432d7609d552,SESCO,II.1.1,Buenos Aires,AR-B,annual,2021,gas oil combustion consumption by to the public,299.6154,TJ,CH4,3.9,kg/TJ,1168.50006,kg -ba95c102-24ba-3fe7-be40-432d7609d552,SESCO,II.1.1,Buenos Aires,AR-B,annual,2021,gas oil combustion consumption by to the public,299.6154,TJ,N2O,3.9,kg/TJ,1168.50006,kg -04a62a9b-51eb-3712-ad3c-46a5a3e69433,SESCO,II.1.1,Capital Federal,AR-C,annual,2021,gas oil combustion consumption by to the public,53.67432,TJ,CO2,74100.0,kg/TJ,3977267.112,kg -b81308b0-4f1c-3a6b-b3f1-f9636e568e14,SESCO,II.1.1,Capital Federal,AR-C,annual,2021,gas oil combustion consumption by to the public,53.67432,TJ,CH4,3.9,kg/TJ,209.329848,kg -b81308b0-4f1c-3a6b-b3f1-f9636e568e14,SESCO,II.1.1,Capital Federal,AR-C,annual,2021,gas oil combustion consumption by to the public,53.67432,TJ,N2O,3.9,kg/TJ,209.329848,kg -680bb599-cd90-378e-a78f-c474ffdbad42,SESCO,II.1.1,Catamarca,AR-K,annual,2021,gas oil combustion consumption by to the public,40.2738,TJ,CO2,74100.0,kg/TJ,2984288.58,kg -c0fde969-21ad-36af-b00f-caa8266bbdee,SESCO,II.1.1,Catamarca,AR-K,annual,2021,gas oil combustion consumption by to the public,40.2738,TJ,CH4,3.9,kg/TJ,157.06782,kg -c0fde969-21ad-36af-b00f-caa8266bbdee,SESCO,II.1.1,Catamarca,AR-K,annual,2021,gas oil combustion consumption by to the public,40.2738,TJ,N2O,3.9,kg/TJ,157.06782,kg -b8652771-7057-36f8-a8ea-336409cc6b69,SESCO,II.1.1,Chaco,AR-H,annual,2021,gas oil combustion consumption by to the public,67.43604,TJ,CO2,74100.0,kg/TJ,4997010.564,kg -8d626293-dede-30ab-9c0f-48bed7b24568,SESCO,II.1.1,Chaco,AR-H,annual,2021,gas oil combustion consumption by to the public,67.43604,TJ,CH4,3.9,kg/TJ,263.000556,kg -8d626293-dede-30ab-9c0f-48bed7b24568,SESCO,II.1.1,Chaco,AR-H,annual,2021,gas oil combustion consumption by to the public,67.43604,TJ,N2O,3.9,kg/TJ,263.000556,kg -109903c0-3fdc-3929-bce3-39b557636951,SESCO,II.1.1,Corrientes,AR-W,annual,2021,gas oil combustion consumption by to the public,18.31284,TJ,CO2,74100.0,kg/TJ,1356981.4440000001,kg -3e1cc5a6-4ba6-347a-984e-63ba06823c1e,SESCO,II.1.1,Corrientes,AR-W,annual,2021,gas oil combustion consumption by to the public,18.31284,TJ,CH4,3.9,kg/TJ,71.42007600000001,kg -3e1cc5a6-4ba6-347a-984e-63ba06823c1e,SESCO,II.1.1,Corrientes,AR-W,annual,2021,gas oil combustion consumption by to the public,18.31284,TJ,N2O,3.9,kg/TJ,71.42007600000001,kg -d578b730-dabf-3cd5-9dd4-e400567cac21,SESCO,II.1.1,Córdoba,AR-X,annual,2021,gas oil combustion consumption by to the public,161.88984,TJ,CO2,74100.0,kg/TJ,11996037.144,kg -88aed5d8-a823-3dbb-9596-b77199df6c58,SESCO,II.1.1,Córdoba,AR-X,annual,2021,gas oil combustion consumption by to the public,161.88984,TJ,CH4,3.9,kg/TJ,631.370376,kg -88aed5d8-a823-3dbb-9596-b77199df6c58,SESCO,II.1.1,Córdoba,AR-X,annual,2021,gas oil combustion consumption by to the public,161.88984,TJ,N2O,3.9,kg/TJ,631.370376,kg -77712bb8-8ccf-312b-9794-4721c8050f8f,SESCO,II.1.1,Entre Rios,AR-E,annual,2021,gas oil combustion consumption by to the public,96.47652,TJ,CO2,74100.0,kg/TJ,7148910.131999999,kg -e91cbcb6-1507-35e3-9a87-1f33b31548e8,SESCO,II.1.1,Entre Rios,AR-E,annual,2021,gas oil combustion consumption by to the public,96.47652,TJ,CH4,3.9,kg/TJ,376.258428,kg -e91cbcb6-1507-35e3-9a87-1f33b31548e8,SESCO,II.1.1,Entre Rios,AR-E,annual,2021,gas oil combustion consumption by to the public,96.47652,TJ,N2O,3.9,kg/TJ,376.258428,kg -c88450b7-fe15-334a-a877-de5de7ded287,SESCO,II.1.1,Formosa,AR-P,annual,2021,gas oil combustion consumption by to the public,9.64404,TJ,CO2,74100.0,kg/TJ,714623.3640000001,kg -6983249a-9e7c-3ee1-a20e-8b594b9b411b,SESCO,II.1.1,Formosa,AR-P,annual,2021,gas oil combustion consumption by to the public,9.64404,TJ,CH4,3.9,kg/TJ,37.611756,kg -6983249a-9e7c-3ee1-a20e-8b594b9b411b,SESCO,II.1.1,Formosa,AR-P,annual,2021,gas oil combustion consumption by to the public,9.64404,TJ,N2O,3.9,kg/TJ,37.611756,kg -a7f8c277-b567-3a6c-adbc-1958825b2757,SESCO,II.1.1,La Rioja,AR-F,annual,2021,gas oil combustion consumption by to the public,23.69472,TJ,CO2,74100.0,kg/TJ,1755778.752,kg -8b830baf-4bcd-3f04-bd00-da573877185c,SESCO,II.1.1,La Rioja,AR-F,annual,2021,gas oil combustion consumption by to the public,23.69472,TJ,CH4,3.9,kg/TJ,92.409408,kg -8b830baf-4bcd-3f04-bd00-da573877185c,SESCO,II.1.1,La Rioja,AR-F,annual,2021,gas oil combustion consumption by to the public,23.69472,TJ,N2O,3.9,kg/TJ,92.409408,kg -dd13b99a-b61a-3de1-8456-7aeb2345a1bb,SESCO,II.1.1,Mendoza,AR-M,annual,2021,gas oil combustion consumption by to the public,128.91228,TJ,CO2,74100.0,kg/TJ,9552399.948,kg -6d518e0f-06e9-394b-9f13-f2fb802e4231,SESCO,II.1.1,Mendoza,AR-M,annual,2021,gas oil combustion consumption by to the public,128.91228,TJ,CH4,3.9,kg/TJ,502.757892,kg -6d518e0f-06e9-394b-9f13-f2fb802e4231,SESCO,II.1.1,Mendoza,AR-M,annual,2021,gas oil combustion consumption by to the public,128.91228,TJ,N2O,3.9,kg/TJ,502.757892,kg -6ffab669-0695-3cd7-a8a4-aabf083023c8,SESCO,II.1.1,Misiones,AR-N,annual,2021,gas oil combustion consumption by to the public,36.15612,TJ,CO2,74100.0,kg/TJ,2679168.492,kg -eaa66416-6495-332f-a298-bdf7313b1914,SESCO,II.1.1,Misiones,AR-N,annual,2021,gas oil combustion consumption by to the public,36.15612,TJ,CH4,3.9,kg/TJ,141.008868,kg -eaa66416-6495-332f-a298-bdf7313b1914,SESCO,II.1.1,Misiones,AR-N,annual,2021,gas oil combustion consumption by to the public,36.15612,TJ,N2O,3.9,kg/TJ,141.008868,kg -bdbbdb80-dcd0-353b-bf8c-6ec87efcce49,SESCO,II.1.1,Salta,AR-A,annual,2021,gas oil combustion consumption by to the public,3.39528,TJ,CO2,74100.0,kg/TJ,251590.248,kg -db79aa63-f22a-3cef-ab66-a6142ff6c41f,SESCO,II.1.1,Salta,AR-A,annual,2021,gas oil combustion consumption by to the public,3.39528,TJ,CH4,3.9,kg/TJ,13.241592,kg -db79aa63-f22a-3cef-ab66-a6142ff6c41f,SESCO,II.1.1,Salta,AR-A,annual,2021,gas oil combustion consumption by to the public,3.39528,TJ,N2O,3.9,kg/TJ,13.241592,kg -caf7464a-4ad0-37be-aa2d-fe143ab94ce5,SESCO,II.1.1,San Juan,AR-J,annual,2021,gas oil combustion consumption by to the public,6.24876,TJ,CO2,74100.0,kg/TJ,463033.116,kg -6d210c6e-e7b8-3c5d-8aea-8dc7d2d1d838,SESCO,II.1.1,San Juan,AR-J,annual,2021,gas oil combustion consumption by to the public,6.24876,TJ,CH4,3.9,kg/TJ,24.370164,kg -6d210c6e-e7b8-3c5d-8aea-8dc7d2d1d838,SESCO,II.1.1,San Juan,AR-J,annual,2021,gas oil combustion consumption by to the public,6.24876,TJ,N2O,3.9,kg/TJ,24.370164,kg -d8033229-7cb8-3367-837a-d72bb099a3ff,SESCO,II.1.1,San Luis,AR-D,annual,2021,gas oil combustion consumption by to the public,1.6615199999999999,TJ,CO2,74100.0,kg/TJ,123118.632,kg -ddcfa39a-09c1-3ee4-a47e-24dc06f97414,SESCO,II.1.1,San Luis,AR-D,annual,2021,gas oil combustion consumption by to the public,1.6615199999999999,TJ,CH4,3.9,kg/TJ,6.479927999999999,kg -ddcfa39a-09c1-3ee4-a47e-24dc06f97414,SESCO,II.1.1,San Luis,AR-D,annual,2021,gas oil combustion consumption by to the public,1.6615199999999999,TJ,N2O,3.9,kg/TJ,6.479927999999999,kg -c1c53ca4-4fe9-3d00-82d0-46db21f64520,SESCO,II.1.1,Santa Fe,AR-S,annual,2021,gas oil combustion consumption by to the public,148.38096,TJ,CO2,74100.0,kg/TJ,10995029.136,kg -a04dfcfe-f48a-3108-9117-644759068d86,SESCO,II.1.1,Santa Fe,AR-S,annual,2021,gas oil combustion consumption by to the public,148.38096,TJ,CH4,3.9,kg/TJ,578.6857439999999,kg -a04dfcfe-f48a-3108-9117-644759068d86,SESCO,II.1.1,Santa Fe,AR-S,annual,2021,gas oil combustion consumption by to the public,148.38096,TJ,N2O,3.9,kg/TJ,578.6857439999999,kg -4aa614b7-7d52-31d5-a193-1f8ce7f5f29d,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2021,gas oil combustion consumption by to the public,16.68744,TJ,CO2,74100.0,kg/TJ,1236539.304,kg -ece5519b-1a8f-3be8-a199-0b324e39efd3,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2021,gas oil combustion consumption by to the public,16.68744,TJ,CH4,3.9,kg/TJ,65.08101599999999,kg -ece5519b-1a8f-3be8-a199-0b324e39efd3,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2021,gas oil combustion consumption by to the public,16.68744,TJ,N2O,3.9,kg/TJ,65.08101599999999,kg -b4247e23-1732-3f00-aa07-6d2fac5a856e,SESCO,II.1.1,Tucuman,AR-T,annual,2021,gas oil combustion consumption by to the public,21.81648,TJ,CO2,74100.0,kg/TJ,1616601.1679999998,kg -d87ffd80-7263-3606-a990-cd82e3f53720,SESCO,II.1.1,Tucuman,AR-T,annual,2021,gas oil combustion consumption by to the public,21.81648,TJ,CH4,3.9,kg/TJ,85.084272,kg -d87ffd80-7263-3606-a990-cd82e3f53720,SESCO,II.1.1,Tucuman,AR-T,annual,2021,gas oil combustion consumption by to the public,21.81648,TJ,N2O,3.9,kg/TJ,85.084272,kg -f5954adc-3e24-3550-bb44-9291133a8492,SESCO,II.1.1,Corrientes,AR-W,annual,2021,jet kerosene combustion consumption by to the public,0.22017099999999995,TJ,CO2,71500.0,kg/TJ,15742.226499999997,kg -9397eed2-68ac-3113-8fc6-183166b85436,SESCO,II.1.1,Corrientes,AR-W,annual,2021,jet kerosene combustion consumption by to the public,0.22017099999999995,TJ,CH4,0.5,kg/TJ,0.11008549999999998,kg -8048d840-3ba7-353b-ac65-dbd83534c0b4,SESCO,II.1.1,Corrientes,AR-W,annual,2021,jet kerosene combustion consumption by to the public,0.22017099999999995,TJ,N2O,2.0,kg/TJ,0.4403419999999999,kg -5bee6964-7626-35ea-bb08-ff6e6f43d15d,SESCO,II.1.1,Entre Rios,AR-E,annual,2021,jet kerosene combustion consumption by to the public,0.31453,TJ,CO2,71500.0,kg/TJ,22488.894999999997,kg -8087ef65-c490-392f-9423-751ecce1f826,SESCO,II.1.1,Entre Rios,AR-E,annual,2021,jet kerosene combustion consumption by to the public,0.31453,TJ,CH4,0.5,kg/TJ,0.157265,kg -78265cbd-9b82-3a51-be1a-7fe5fe67525d,SESCO,II.1.1,Entre Rios,AR-E,annual,2021,jet kerosene combustion consumption by to the public,0.31453,TJ,N2O,2.0,kg/TJ,0.62906,kg -01f9bb52-ce69-3172-855e-d556ff8d64c6,SESCO,II.1.1,Santa Fe,AR-S,annual,2021,jet kerosene combustion consumption by to the public,0.6919659999999999,TJ,CO2,71500.0,kg/TJ,49475.56899999999,kg -79060ad2-42c1-3925-b913-9364dd7cff90,SESCO,II.1.1,Santa Fe,AR-S,annual,2021,jet kerosene combustion consumption by to the public,0.6919659999999999,TJ,CH4,0.5,kg/TJ,0.34598299999999993,kg -b3d2e131-24e1-3c60-aa71-3e6fde96375f,SESCO,II.1.1,Santa Fe,AR-S,annual,2021,jet kerosene combustion consumption by to the public,0.6919659999999999,TJ,N2O,2.0,kg/TJ,1.3839319999999997,kg -1f585707-b050-3641-9b7b-8ae312504ed7,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2021,jet kerosene combustion consumption by to the public,0.9750429999999999,TJ,CO2,71500.0,kg/TJ,69715.57449999999,kg -fc44b6ae-a802-3569-9a85-6b69a4620c25,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2021,jet kerosene combustion consumption by to the public,0.9750429999999999,TJ,CH4,0.5,kg/TJ,0.48752149999999994,kg -5ffe46e7-22b2-392b-a85e-629d915c3684,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2021,jet kerosene combustion consumption by to the public,0.9750429999999999,TJ,N2O,2.0,kg/TJ,1.9500859999999998,kg -0e102e6b-dcee-3618-874d-fede17c2982c,SESCO,I.3.1,Buenos Aires,AR-B,annual,2021,gas oil combustion consumption by petrochemical industries,7.65744,TJ,CO2,74100.0,kg/TJ,567416.304,kg -a0a7bc35-bae1-33a9-ac73-25c66fcd42ca,SESCO,I.3.1,Buenos Aires,AR-B,annual,2021,gas oil combustion consumption by petrochemical industries,7.65744,TJ,CH4,3.9,kg/TJ,29.864016,kg -a0a7bc35-bae1-33a9-ac73-25c66fcd42ca,SESCO,I.3.1,Buenos Aires,AR-B,annual,2021,gas oil combustion consumption by petrochemical industries,7.65744,TJ,N2O,3.9,kg/TJ,29.864016,kg -3a201c79-d207-324e-b2b6-5385cdb73a1e,SESCO,I.3.1,Buenos Aires,AR-B,annual,2021,gas oil combustion consumption by petrochemical industries,2.45616,TJ,CO2,74100.0,kg/TJ,182001.456,kg -100a226b-0ffe-3da1-a25a-01a22994465a,SESCO,I.3.1,Buenos Aires,AR-B,annual,2021,gas oil combustion consumption by petrochemical industries,2.45616,TJ,CH4,3.9,kg/TJ,9.579024,kg -100a226b-0ffe-3da1-a25a-01a22994465a,SESCO,I.3.1,Buenos Aires,AR-B,annual,2021,gas oil combustion consumption by petrochemical industries,2.45616,TJ,N2O,3.9,kg/TJ,9.579024,kg -c4fc5e6c-066e-3daa-b4bd-6e969e917a50,SESCO,I.3.1,Capital Federal,AR-C,annual,2021,gas oil combustion consumption by petrochemical industries,1.01136,TJ,CO2,74100.0,kg/TJ,74941.776,kg -687bd17c-d87e-3215-8e4a-4cf6042a0efc,SESCO,I.3.1,Capital Federal,AR-C,annual,2021,gas oil combustion consumption by petrochemical industries,1.01136,TJ,CH4,3.9,kg/TJ,3.9443040000000003,kg -687bd17c-d87e-3215-8e4a-4cf6042a0efc,SESCO,I.3.1,Capital Federal,AR-C,annual,2021,gas oil combustion consumption by petrochemical industries,1.01136,TJ,N2O,3.9,kg/TJ,3.9443040000000003,kg -67b4a931-4b71-36f0-b19c-cdf4d1d2be84,SESCO,II.1.1,Chubut,AR-U,annual,2021,gas oil combustion consumption by freight transport,0.1618176,TJ,CO2,74100.0,kg/TJ,11990.68416,kg -d49f9753-61be-306c-8550-aa7e04e1e5ca,SESCO,II.1.1,Chubut,AR-U,annual,2021,gas oil combustion consumption by freight transport,0.1618176,TJ,CH4,3.9,kg/TJ,0.63108864,kg -d49f9753-61be-306c-8550-aa7e04e1e5ca,SESCO,II.1.1,Chubut,AR-U,annual,2021,gas oil combustion consumption by freight transport,0.1618176,TJ,N2O,3.9,kg/TJ,0.63108864,kg -4c0456a7-5f10-36f1-aa69-bdec7e0804ee,SESCO,II.5.1,Buenos Aires,AR-B,annual,2021,gas oil combustion consumption by agriculture machines,3872.20848,TJ,CO2,74100.0,kg/TJ,286930648.368,kg -fa6b3d83-40d4-3c34-946e-83678f59750e,SESCO,II.5.1,Buenos Aires,AR-B,annual,2021,gas oil combustion consumption by agriculture machines,3872.20848,TJ,CH4,3.9,kg/TJ,15101.613071999998,kg -fa6b3d83-40d4-3c34-946e-83678f59750e,SESCO,II.5.1,Buenos Aires,AR-B,annual,2021,gas oil combustion consumption by agriculture machines,3872.20848,TJ,N2O,3.9,kg/TJ,15101.613071999998,kg -a123ef87-3d72-3efc-a07d-d1169067c6b2,SESCO,II.5.1,Catamarca,AR-K,annual,2021,gas oil combustion consumption by agriculture machines,78.09143999999999,TJ,CO2,74100.0,kg/TJ,5786575.703999999,kg -336f76aa-3e5f-3972-b4e7-adcd2ddfc063,SESCO,II.5.1,Catamarca,AR-K,annual,2021,gas oil combustion consumption by agriculture machines,78.09143999999999,TJ,CH4,3.9,kg/TJ,304.55661599999996,kg -336f76aa-3e5f-3972-b4e7-adcd2ddfc063,SESCO,II.5.1,Catamarca,AR-K,annual,2021,gas oil combustion consumption by agriculture machines,78.09143999999999,TJ,N2O,3.9,kg/TJ,304.55661599999996,kg -5cf95378-995d-3edf-8f74-ece5dde1fafd,SESCO,II.5.1,Chaco,AR-H,annual,2021,gas oil combustion consumption by agriculture machines,581.85708,TJ,CO2,74100.0,kg/TJ,43115609.628,kg -ea9dc890-f5a1-3dde-9ad0-4a00cd66141f,SESCO,II.5.1,Chaco,AR-H,annual,2021,gas oil combustion consumption by agriculture machines,581.85708,TJ,CH4,3.9,kg/TJ,2269.242612,kg -ea9dc890-f5a1-3dde-9ad0-4a00cd66141f,SESCO,II.5.1,Chaco,AR-H,annual,2021,gas oil combustion consumption by agriculture machines,581.85708,TJ,N2O,3.9,kg/TJ,2269.242612,kg -9265482c-33b3-3163-b56c-2038a736cfa6,SESCO,II.5.1,Corrientes,AR-W,annual,2021,gas oil combustion consumption by agriculture machines,1332.32232,TJ,CO2,74100.0,kg/TJ,98725083.912,kg -0d78037c-bdaa-3661-817c-2dc608e7ee09,SESCO,II.5.1,Corrientes,AR-W,annual,2021,gas oil combustion consumption by agriculture machines,1332.32232,TJ,CH4,3.9,kg/TJ,5196.057048,kg -0d78037c-bdaa-3661-817c-2dc608e7ee09,SESCO,II.5.1,Corrientes,AR-W,annual,2021,gas oil combustion consumption by agriculture machines,1332.32232,TJ,N2O,3.9,kg/TJ,5196.057048,kg -71bb08d4-19c2-3119-971b-c3ee5ac964be,SESCO,II.5.1,Córdoba,AR-X,annual,2021,gas oil combustion consumption by agriculture machines,3175.1647199999998,TJ,CO2,74100.0,kg/TJ,235279705.75199997,kg -6b4403e2-5027-32eb-a189-ab39ef38c558,SESCO,II.5.1,Córdoba,AR-X,annual,2021,gas oil combustion consumption by agriculture machines,3175.1647199999998,TJ,CH4,3.9,kg/TJ,12383.142407999998,kg -6b4403e2-5027-32eb-a189-ab39ef38c558,SESCO,II.5.1,Córdoba,AR-X,annual,2021,gas oil combustion consumption by agriculture machines,3175.1647199999998,TJ,N2O,3.9,kg/TJ,12383.142407999998,kg -8a1ddb17-ded6-3a4d-8bc0-dc44db37491b,SESCO,II.5.1,Entre Rios,AR-E,annual,2021,gas oil combustion consumption by agriculture machines,996.62304,TJ,CO2,74100.0,kg/TJ,73849767.264,kg -fe7856d5-a226-387d-b0f8-152c240d7b38,SESCO,II.5.1,Entre Rios,AR-E,annual,2021,gas oil combustion consumption by agriculture machines,996.62304,TJ,CH4,3.9,kg/TJ,3886.829856,kg -fe7856d5-a226-387d-b0f8-152c240d7b38,SESCO,II.5.1,Entre Rios,AR-E,annual,2021,gas oil combustion consumption by agriculture machines,996.62304,TJ,N2O,3.9,kg/TJ,3886.829856,kg -a1e13cf3-bd21-3815-875f-3717b8d32f5a,SESCO,II.5.1,Jujuy,AR-Y,annual,2021,gas oil combustion consumption by agriculture machines,11.052719999999999,TJ,CO2,74100.0,kg/TJ,819006.5519999999,kg -591739fc-b912-3db8-8b08-0de2cfffde87,SESCO,II.5.1,Jujuy,AR-Y,annual,2021,gas oil combustion consumption by agriculture machines,11.052719999999999,TJ,CH4,3.9,kg/TJ,43.105608,kg -591739fc-b912-3db8-8b08-0de2cfffde87,SESCO,II.5.1,Jujuy,AR-Y,annual,2021,gas oil combustion consumption by agriculture machines,11.052719999999999,TJ,N2O,3.9,kg/TJ,43.105608,kg -4f6ec277-1c7d-3f61-821d-91643b6f5c1d,SESCO,II.5.1,La Pampa,AR-L,annual,2021,gas oil combustion consumption by agriculture machines,186.921,TJ,CO2,74100.0,kg/TJ,13850846.1,kg -c9f04cd3-f43c-3721-9625-ec15aad95089,SESCO,II.5.1,La Pampa,AR-L,annual,2021,gas oil combustion consumption by agriculture machines,186.921,TJ,CH4,3.9,kg/TJ,728.9919,kg -c9f04cd3-f43c-3721-9625-ec15aad95089,SESCO,II.5.1,La Pampa,AR-L,annual,2021,gas oil combustion consumption by agriculture machines,186.921,TJ,N2O,3.9,kg/TJ,728.9919,kg -817d9e4c-db57-35e6-92d8-f8dca17550f3,SESCO,II.5.1,Mendoza,AR-M,annual,2021,gas oil combustion consumption by agriculture machines,433.00656,TJ,CO2,74100.0,kg/TJ,32085786.095999997,kg -6be5f80a-903c-30fd-bb15-fb3589d1bbf2,SESCO,II.5.1,Mendoza,AR-M,annual,2021,gas oil combustion consumption by agriculture machines,433.00656,TJ,CH4,3.9,kg/TJ,1688.7255839999998,kg -6be5f80a-903c-30fd-bb15-fb3589d1bbf2,SESCO,II.5.1,Mendoza,AR-M,annual,2021,gas oil combustion consumption by agriculture machines,433.00656,TJ,N2O,3.9,kg/TJ,1688.7255839999998,kg -6435e098-f31b-3aeb-8d36-6294c83d61a8,SESCO,II.5.1,Misiones,AR-N,annual,2021,gas oil combustion consumption by agriculture machines,42.36876,TJ,CO2,74100.0,kg/TJ,3139525.116,kg -17931aeb-1206-3ee0-849b-e373c0009ad6,SESCO,II.5.1,Misiones,AR-N,annual,2021,gas oil combustion consumption by agriculture machines,42.36876,TJ,CH4,3.9,kg/TJ,165.238164,kg -17931aeb-1206-3ee0-849b-e373c0009ad6,SESCO,II.5.1,Misiones,AR-N,annual,2021,gas oil combustion consumption by agriculture machines,42.36876,TJ,N2O,3.9,kg/TJ,165.238164,kg -6660d61b-2aeb-3dff-a2c3-582e919ac92b,SESCO,II.5.1,Neuquén,AR-Q,annual,2021,gas oil combustion consumption by agriculture machines,239.94516,TJ,CO2,74100.0,kg/TJ,17779936.356,kg -ba3f6c3d-5f9a-39bf-947a-131db54ee3a1,SESCO,II.5.1,Neuquén,AR-Q,annual,2021,gas oil combustion consumption by agriculture machines,239.94516,TJ,CH4,3.9,kg/TJ,935.786124,kg -ba3f6c3d-5f9a-39bf-947a-131db54ee3a1,SESCO,II.5.1,Neuquén,AR-Q,annual,2021,gas oil combustion consumption by agriculture machines,239.94516,TJ,N2O,3.9,kg/TJ,935.786124,kg -36ca6cef-40d6-38d4-980e-dfbbce31b4e1,SESCO,II.5.1,Salta,AR-A,annual,2021,gas oil combustion consumption by agriculture machines,99.90792,TJ,CO2,74100.0,kg/TJ,7403176.872,kg -91b530af-874d-3923-9b22-f76e70094e97,SESCO,II.5.1,Salta,AR-A,annual,2021,gas oil combustion consumption by agriculture machines,99.90792,TJ,CH4,3.9,kg/TJ,389.640888,kg -91b530af-874d-3923-9b22-f76e70094e97,SESCO,II.5.1,Salta,AR-A,annual,2021,gas oil combustion consumption by agriculture machines,99.90792,TJ,N2O,3.9,kg/TJ,389.640888,kg -ae05a399-9fc1-3fe8-a9c4-44f207357424,SESCO,II.5.1,San Juan,AR-J,annual,2021,gas oil combustion consumption by agriculture machines,44.535959999999996,TJ,CO2,74100.0,kg/TJ,3300114.6359999995,kg -21d567a7-3fb4-387f-b03f-bd3fc72b118f,SESCO,II.5.1,San Juan,AR-J,annual,2021,gas oil combustion consumption by agriculture machines,44.535959999999996,TJ,CH4,3.9,kg/TJ,173.69024399999998,kg -21d567a7-3fb4-387f-b03f-bd3fc72b118f,SESCO,II.5.1,San Juan,AR-J,annual,2021,gas oil combustion consumption by agriculture machines,44.535959999999996,TJ,N2O,3.9,kg/TJ,173.69024399999998,kg -2ac5d8c2-5ef7-34f8-bc8a-526deff9cb0d,SESCO,II.5.1,San Luis,AR-D,annual,2021,gas oil combustion consumption by agriculture machines,159.43368,TJ,CO2,74100.0,kg/TJ,11814035.688000001,kg -34fd36d8-ac29-3e4a-a498-601dcf7829aa,SESCO,II.5.1,San Luis,AR-D,annual,2021,gas oil combustion consumption by agriculture machines,159.43368,TJ,CH4,3.9,kg/TJ,621.7913520000001,kg -34fd36d8-ac29-3e4a-a498-601dcf7829aa,SESCO,II.5.1,San Luis,AR-D,annual,2021,gas oil combustion consumption by agriculture machines,159.43368,TJ,N2O,3.9,kg/TJ,621.7913520000001,kg -5288fa8f-fe09-3db9-a1b7-023797e8525c,SESCO,II.5.1,Santa Cruz,AR-Z,annual,2021,gas oil combustion consumption by agriculture machines,129.67079999999999,TJ,CO2,74100.0,kg/TJ,9608606.28,kg -99b11259-bfa8-32b5-9ee8-0bb5298a1f1d,SESCO,II.5.1,Santa Cruz,AR-Z,annual,2021,gas oil combustion consumption by agriculture machines,129.67079999999999,TJ,CH4,3.9,kg/TJ,505.71611999999993,kg -99b11259-bfa8-32b5-9ee8-0bb5298a1f1d,SESCO,II.5.1,Santa Cruz,AR-Z,annual,2021,gas oil combustion consumption by agriculture machines,129.67079999999999,TJ,N2O,3.9,kg/TJ,505.71611999999993,kg -02b6dcc7-94b9-3f26-bcfb-5b3d5599ae77,SESCO,II.5.1,Santa Fe,AR-S,annual,2021,gas oil combustion consumption by agriculture machines,5361.00264,TJ,CO2,74100.0,kg/TJ,397250295.62399995,kg -cd125830-aa43-31e4-a3a7-292f35f00320,SESCO,II.5.1,Santa Fe,AR-S,annual,2021,gas oil combustion consumption by agriculture machines,5361.00264,TJ,CH4,3.9,kg/TJ,20907.910296,kg -cd125830-aa43-31e4-a3a7-292f35f00320,SESCO,II.5.1,Santa Fe,AR-S,annual,2021,gas oil combustion consumption by agriculture machines,5361.00264,TJ,N2O,3.9,kg/TJ,20907.910296,kg -04f19271-30fb-3aaa-a42b-ec36777c0101,SESCO,II.5.1,Santiago del Estero,AR-G,annual,2021,gas oil combustion consumption by agriculture machines,471.98004,TJ,CO2,74100.0,kg/TJ,34973720.964,kg -729bd52a-fc8a-3443-9d1c-933e3ed26fde,SESCO,II.5.1,Santiago del Estero,AR-G,annual,2021,gas oil combustion consumption by agriculture machines,471.98004,TJ,CH4,3.9,kg/TJ,1840.7221559999998,kg -729bd52a-fc8a-3443-9d1c-933e3ed26fde,SESCO,II.5.1,Santiago del Estero,AR-G,annual,2021,gas oil combustion consumption by agriculture machines,471.98004,TJ,N2O,3.9,kg/TJ,1840.7221559999998,kg -285bad75-1060-3b95-a882-422303434981,SESCO,II.5.1,Tucuman,AR-T,annual,2021,gas oil combustion consumption by agriculture machines,196.20383999999999,TJ,CO2,74100.0,kg/TJ,14538704.544,kg -e63086a1-f556-398a-9a86-0ba6097fda85,SESCO,II.5.1,Tucuman,AR-T,annual,2021,gas oil combustion consumption by agriculture machines,196.20383999999999,TJ,CH4,3.9,kg/TJ,765.1949759999999,kg -e63086a1-f556-398a-9a86-0ba6097fda85,SESCO,II.5.1,Tucuman,AR-T,annual,2021,gas oil combustion consumption by agriculture machines,196.20383999999999,TJ,N2O,3.9,kg/TJ,765.1949759999999,kg -b5eaae7d-830a-3acf-8c17-c7baf216e7c2,SESCO,II.5.1,Buenos Aires,AR-B,annual,2021,gas oil combustion consumption by agriculture machines,429.97248,TJ,CO2,74100.0,kg/TJ,31860960.768000003,kg -4d13288a-4b19-3069-befc-3efedfb1704c,SESCO,II.5.1,Buenos Aires,AR-B,annual,2021,gas oil combustion consumption by agriculture machines,429.97248,TJ,CH4,3.9,kg/TJ,1676.892672,kg -4d13288a-4b19-3069-befc-3efedfb1704c,SESCO,II.5.1,Buenos Aires,AR-B,annual,2021,gas oil combustion consumption by agriculture machines,429.97248,TJ,N2O,3.9,kg/TJ,1676.892672,kg -44464d25-3811-325e-87d0-39fea217108f,SESCO,II.5.1,Catamarca,AR-K,annual,2021,gas oil combustion consumption by agriculture machines,26.87328,TJ,CO2,74100.0,kg/TJ,1991310.0480000002,kg -5379aed5-da00-3da4-aac6-025805d5c625,SESCO,II.5.1,Catamarca,AR-K,annual,2021,gas oil combustion consumption by agriculture machines,26.87328,TJ,CH4,3.9,kg/TJ,104.805792,kg -5379aed5-da00-3da4-aac6-025805d5c625,SESCO,II.5.1,Catamarca,AR-K,annual,2021,gas oil combustion consumption by agriculture machines,26.87328,TJ,N2O,3.9,kg/TJ,104.805792,kg -f7208f83-dcfe-353b-82a5-af05a91fa137,SESCO,II.5.1,Chaco,AR-H,annual,2021,gas oil combustion consumption by agriculture machines,151.19832,TJ,CO2,74100.0,kg/TJ,11203795.512,kg -1f53b2a3-78f4-3060-85f5-ca79a4396904,SESCO,II.5.1,Chaco,AR-H,annual,2021,gas oil combustion consumption by agriculture machines,151.19832,TJ,CH4,3.9,kg/TJ,589.673448,kg -1f53b2a3-78f4-3060-85f5-ca79a4396904,SESCO,II.5.1,Chaco,AR-H,annual,2021,gas oil combustion consumption by agriculture machines,151.19832,TJ,N2O,3.9,kg/TJ,589.673448,kg -17f9a67e-1b16-3a26-8b17-2421173aaf8d,SESCO,II.5.1,Corrientes,AR-W,annual,2021,gas oil combustion consumption by agriculture machines,112.04424,TJ,CO2,74100.0,kg/TJ,8302478.184,kg -41a29924-c38b-3b37-b83f-54ddfa45c57e,SESCO,II.5.1,Corrientes,AR-W,annual,2021,gas oil combustion consumption by agriculture machines,112.04424,TJ,CH4,3.9,kg/TJ,436.972536,kg -41a29924-c38b-3b37-b83f-54ddfa45c57e,SESCO,II.5.1,Corrientes,AR-W,annual,2021,gas oil combustion consumption by agriculture machines,112.04424,TJ,N2O,3.9,kg/TJ,436.972536,kg -00b11d38-1bfb-3604-ae66-4855e80eb8c1,SESCO,II.5.1,Córdoba,AR-X,annual,2021,gas oil combustion consumption by agriculture machines,315.47208,TJ,CO2,74100.0,kg/TJ,23376481.128,kg -785f0bcc-fd6e-3d8a-86c4-9d2f1e55c8b8,SESCO,II.5.1,Córdoba,AR-X,annual,2021,gas oil combustion consumption by agriculture machines,315.47208,TJ,CH4,3.9,kg/TJ,1230.341112,kg -785f0bcc-fd6e-3d8a-86c4-9d2f1e55c8b8,SESCO,II.5.1,Córdoba,AR-X,annual,2021,gas oil combustion consumption by agriculture machines,315.47208,TJ,N2O,3.9,kg/TJ,1230.341112,kg -9a3b9648-6f44-3827-8bff-b172c88455f1,SESCO,II.5.1,Entre Rios,AR-E,annual,2021,gas oil combustion consumption by agriculture machines,21.45528,TJ,CO2,74100.0,kg/TJ,1589836.248,kg -c8c5be3c-8191-3e7f-9872-0eb0eb49c5fc,SESCO,II.5.1,Entre Rios,AR-E,annual,2021,gas oil combustion consumption by agriculture machines,21.45528,TJ,CH4,3.9,kg/TJ,83.675592,kg -c8c5be3c-8191-3e7f-9872-0eb0eb49c5fc,SESCO,II.5.1,Entre Rios,AR-E,annual,2021,gas oil combustion consumption by agriculture machines,21.45528,TJ,N2O,3.9,kg/TJ,83.675592,kg -eaf129d9-dd96-35d1-a081-c6a50387e1d2,SESCO,II.5.1,Jujuy,AR-Y,annual,2021,gas oil combustion consumption by agriculture machines,8.95776,TJ,CO2,74100.0,kg/TJ,663770.0160000001,kg -2a0997e7-6976-354e-a0a5-4a9db39e6a4e,SESCO,II.5.1,Jujuy,AR-Y,annual,2021,gas oil combustion consumption by agriculture machines,8.95776,TJ,CH4,3.9,kg/TJ,34.935264000000004,kg -2a0997e7-6976-354e-a0a5-4a9db39e6a4e,SESCO,II.5.1,Jujuy,AR-Y,annual,2021,gas oil combustion consumption by agriculture machines,8.95776,TJ,N2O,3.9,kg/TJ,34.935264000000004,kg -720e75fc-cae8-3f64-995d-5099f6797cc8,SESCO,II.5.1,La Pampa,AR-L,annual,2021,gas oil combustion consumption by agriculture machines,67.29156,TJ,CO2,74100.0,kg/TJ,4986304.596,kg -05fb3dcd-61e5-38a1-b38d-af0b32be5ef9,SESCO,II.5.1,La Pampa,AR-L,annual,2021,gas oil combustion consumption by agriculture machines,67.29156,TJ,CH4,3.9,kg/TJ,262.437084,kg -05fb3dcd-61e5-38a1-b38d-af0b32be5ef9,SESCO,II.5.1,La Pampa,AR-L,annual,2021,gas oil combustion consumption by agriculture machines,67.29156,TJ,N2O,3.9,kg/TJ,262.437084,kg -20be34ee-8db2-3a2b-9f36-f0a1f55f1224,SESCO,II.5.1,Mendoza,AR-M,annual,2021,gas oil combustion consumption by agriculture machines,82.02852,TJ,CO2,74100.0,kg/TJ,6078313.332,kg -fc6a55bb-9083-3186-af7a-af0248f3f73a,SESCO,II.5.1,Mendoza,AR-M,annual,2021,gas oil combustion consumption by agriculture machines,82.02852,TJ,CH4,3.9,kg/TJ,319.911228,kg -fc6a55bb-9083-3186-af7a-af0248f3f73a,SESCO,II.5.1,Mendoza,AR-M,annual,2021,gas oil combustion consumption by agriculture machines,82.02852,TJ,N2O,3.9,kg/TJ,319.911228,kg -d293994a-4ff9-3c62-96f9-cb13278d034a,SESCO,II.5.1,Misiones,AR-N,annual,2021,gas oil combustion consumption by agriculture machines,1.6615199999999999,TJ,CO2,74100.0,kg/TJ,123118.632,kg -46a2e9fb-cb14-353a-953f-0146c408a749,SESCO,II.5.1,Misiones,AR-N,annual,2021,gas oil combustion consumption by agriculture machines,1.6615199999999999,TJ,CH4,3.9,kg/TJ,6.479927999999999,kg -46a2e9fb-cb14-353a-953f-0146c408a749,SESCO,II.5.1,Misiones,AR-N,annual,2021,gas oil combustion consumption by agriculture machines,1.6615199999999999,TJ,N2O,3.9,kg/TJ,6.479927999999999,kg -cf9ac957-98ac-3017-8b81-2ac44bf644cc,SESCO,II.5.1,Neuquén,AR-Q,annual,2021,gas oil combustion consumption by agriculture machines,145.96092,TJ,CO2,74100.0,kg/TJ,10815704.171999998,kg -280674fd-5f3b-3289-8008-d10ef06b95cf,SESCO,II.5.1,Neuquén,AR-Q,annual,2021,gas oil combustion consumption by agriculture machines,145.96092,TJ,CH4,3.9,kg/TJ,569.247588,kg -280674fd-5f3b-3289-8008-d10ef06b95cf,SESCO,II.5.1,Neuquén,AR-Q,annual,2021,gas oil combustion consumption by agriculture machines,145.96092,TJ,N2O,3.9,kg/TJ,569.247588,kg -829c0645-232c-3d93-b3c3-0790cc74373e,SESCO,II.5.1,Salta,AR-A,annual,2021,gas oil combustion consumption by agriculture machines,36.697919999999996,TJ,CO2,74100.0,kg/TJ,2719315.8719999995,kg -7539089c-db24-3085-ad37-a949a9925b05,SESCO,II.5.1,Salta,AR-A,annual,2021,gas oil combustion consumption by agriculture machines,36.697919999999996,TJ,CH4,3.9,kg/TJ,143.12188799999998,kg -7539089c-db24-3085-ad37-a949a9925b05,SESCO,II.5.1,Salta,AR-A,annual,2021,gas oil combustion consumption by agriculture machines,36.697919999999996,TJ,N2O,3.9,kg/TJ,143.12188799999998,kg -7b78d8a4-6ce6-3996-9bdb-abc206024c89,SESCO,II.5.1,San Juan,AR-J,annual,2021,gas oil combustion consumption by agriculture machines,11.052719999999999,TJ,CO2,74100.0,kg/TJ,819006.5519999999,kg -5d029e60-9862-34cb-8e0c-55e57bf95620,SESCO,II.5.1,San Juan,AR-J,annual,2021,gas oil combustion consumption by agriculture machines,11.052719999999999,TJ,CH4,3.9,kg/TJ,43.105608,kg -5d029e60-9862-34cb-8e0c-55e57bf95620,SESCO,II.5.1,San Juan,AR-J,annual,2021,gas oil combustion consumption by agriculture machines,11.052719999999999,TJ,N2O,3.9,kg/TJ,43.105608,kg -8ed35ffa-8616-3fd1-b219-8fe9550994be,SESCO,II.5.1,San Luis,AR-D,annual,2021,gas oil combustion consumption by agriculture machines,9.89688,TJ,CO2,74100.0,kg/TJ,733358.808,kg -7c8e5a3b-5fe6-32cf-b007-a4b8190920cb,SESCO,II.5.1,San Luis,AR-D,annual,2021,gas oil combustion consumption by agriculture machines,9.89688,TJ,CH4,3.9,kg/TJ,38.597832,kg -7c8e5a3b-5fe6-32cf-b007-a4b8190920cb,SESCO,II.5.1,San Luis,AR-D,annual,2021,gas oil combustion consumption by agriculture machines,9.89688,TJ,N2O,3.9,kg/TJ,38.597832,kg -eff5591f-db5d-34f8-847b-de44881b9f35,SESCO,II.5.1,Santa Cruz,AR-Z,annual,2021,gas oil combustion consumption by agriculture machines,107.70984,TJ,CO2,74100.0,kg/TJ,7981299.144,kg -cf52e543-4230-31cb-8473-418aa1c6d2d8,SESCO,II.5.1,Santa Cruz,AR-Z,annual,2021,gas oil combustion consumption by agriculture machines,107.70984,TJ,CH4,3.9,kg/TJ,420.068376,kg -cf52e543-4230-31cb-8473-418aa1c6d2d8,SESCO,II.5.1,Santa Cruz,AR-Z,annual,2021,gas oil combustion consumption by agriculture machines,107.70984,TJ,N2O,3.9,kg/TJ,420.068376,kg -0c343038-b468-397a-8a28-d8b69db69950,SESCO,II.5.1,Santa Fe,AR-S,annual,2021,gas oil combustion consumption by agriculture machines,434.1624,TJ,CO2,74100.0,kg/TJ,32171433.84,kg -58e41eaf-8795-3107-9660-6a333a531582,SESCO,II.5.1,Santa Fe,AR-S,annual,2021,gas oil combustion consumption by agriculture machines,434.1624,TJ,CH4,3.9,kg/TJ,1693.23336,kg -58e41eaf-8795-3107-9660-6a333a531582,SESCO,II.5.1,Santa Fe,AR-S,annual,2021,gas oil combustion consumption by agriculture machines,434.1624,TJ,N2O,3.9,kg/TJ,1693.23336,kg -d119f761-48d4-3d35-aa9e-458376282da8,SESCO,II.5.1,Santiago del Estero,AR-G,annual,2021,gas oil combustion consumption by agriculture machines,145.34688,TJ,CO2,74100.0,kg/TJ,10770203.808,kg -f7ff8384-d65f-3528-a813-88df29e860ff,SESCO,II.5.1,Santiago del Estero,AR-G,annual,2021,gas oil combustion consumption by agriculture machines,145.34688,TJ,CH4,3.9,kg/TJ,566.852832,kg -f7ff8384-d65f-3528-a813-88df29e860ff,SESCO,II.5.1,Santiago del Estero,AR-G,annual,2021,gas oil combustion consumption by agriculture machines,145.34688,TJ,N2O,3.9,kg/TJ,566.852832,kg -2f86e137-a284-3026-bb39-d429c5302c6c,SESCO,II.5.1,Tucuman,AR-T,annual,2021,gas oil combustion consumption by agriculture machines,70.75908,TJ,CO2,74100.0,kg/TJ,5243247.828,kg -911f5356-8fd3-3aa1-8778-98647a95d802,SESCO,II.5.1,Tucuman,AR-T,annual,2021,gas oil combustion consumption by agriculture machines,70.75908,TJ,CH4,3.9,kg/TJ,275.96041199999996,kg -911f5356-8fd3-3aa1-8778-98647a95d802,SESCO,II.5.1,Tucuman,AR-T,annual,2021,gas oil combustion consumption by agriculture machines,70.75908,TJ,N2O,3.9,kg/TJ,275.96041199999996,kg -9128f9ee-95c4-3e56-9a64-330d0225a64c,SESCO,II.1.1,Buenos Aires,AR-B,annual,2021,gas oil combustion consumption by to the public,7899.66072,TJ,CO2,74100.0,kg/TJ,585364859.352,kg -2fc2fd5f-c664-3fc1-8bb8-0475bf2d905b,SESCO,II.1.1,Buenos Aires,AR-B,annual,2021,gas oil combustion consumption by to the public,7899.66072,TJ,CH4,3.9,kg/TJ,30808.676808,kg -2fc2fd5f-c664-3fc1-8bb8-0475bf2d905b,SESCO,II.1.1,Buenos Aires,AR-B,annual,2021,gas oil combustion consumption by to the public,7899.66072,TJ,N2O,3.9,kg/TJ,30808.676808,kg -bcbd3cd6-3abf-3e29-817d-98d66bbd77d8,SESCO,II.1.1,Capital Federal,AR-C,annual,2021,gas oil combustion consumption by to the public,682.1262,TJ,CO2,74100.0,kg/TJ,50545551.42,kg -b3465c8b-24af-38cd-8db1-aa7096e31973,SESCO,II.1.1,Capital Federal,AR-C,annual,2021,gas oil combustion consumption by to the public,682.1262,TJ,CH4,3.9,kg/TJ,2660.29218,kg -b3465c8b-24af-38cd-8db1-aa7096e31973,SESCO,II.1.1,Capital Federal,AR-C,annual,2021,gas oil combustion consumption by to the public,682.1262,TJ,N2O,3.9,kg/TJ,2660.29218,kg -459801c3-eff3-32ef-a079-b0b95963378e,SESCO,II.1.1,Catamarca,AR-K,annual,2021,gas oil combustion consumption by to the public,311.96844,TJ,CO2,74100.0,kg/TJ,23116861.404,kg -5d262449-ccdb-32f6-ba32-2780b9df77e3,SESCO,II.1.1,Catamarca,AR-K,annual,2021,gas oil combustion consumption by to the public,311.96844,TJ,CH4,3.9,kg/TJ,1216.676916,kg -5d262449-ccdb-32f6-ba32-2780b9df77e3,SESCO,II.1.1,Catamarca,AR-K,annual,2021,gas oil combustion consumption by to the public,311.96844,TJ,N2O,3.9,kg/TJ,1216.676916,kg -c525163b-40b5-3790-8a9b-8dbf329546f4,SESCO,II.1.1,Chaco,AR-H,annual,2021,gas oil combustion consumption by to the public,346.64364,TJ,CO2,74100.0,kg/TJ,25686293.724,kg -16d056f0-a3fa-3070-b2f9-791e9ba88d38,SESCO,II.1.1,Chaco,AR-H,annual,2021,gas oil combustion consumption by to the public,346.64364,TJ,CH4,3.9,kg/TJ,1351.910196,kg -16d056f0-a3fa-3070-b2f9-791e9ba88d38,SESCO,II.1.1,Chaco,AR-H,annual,2021,gas oil combustion consumption by to the public,346.64364,TJ,N2O,3.9,kg/TJ,1351.910196,kg -7d133164-b9be-3815-89bb-165e32a8b402,SESCO,II.1.1,Chubut,AR-U,annual,2021,gas oil combustion consumption by to the public,1135.75728,TJ,CO2,74100.0,kg/TJ,84159614.448,kg -2c881aea-4ea1-37de-979c-c9dc8dfcae21,SESCO,II.1.1,Chubut,AR-U,annual,2021,gas oil combustion consumption by to the public,1135.75728,TJ,CH4,3.9,kg/TJ,4429.453392,kg -2c881aea-4ea1-37de-979c-c9dc8dfcae21,SESCO,II.1.1,Chubut,AR-U,annual,2021,gas oil combustion consumption by to the public,1135.75728,TJ,N2O,3.9,kg/TJ,4429.453392,kg -ca2974f7-5235-3fcb-bef1-ecf2d643c4bb,SESCO,II.1.1,Corrientes,AR-W,annual,2021,gas oil combustion consumption by to the public,880.75008,TJ,CO2,74100.0,kg/TJ,65263580.928,kg -1e07aac7-999f-3258-af60-fd195bb3aeae,SESCO,II.1.1,Corrientes,AR-W,annual,2021,gas oil combustion consumption by to the public,880.75008,TJ,CH4,3.9,kg/TJ,3434.925312,kg -1e07aac7-999f-3258-af60-fd195bb3aeae,SESCO,II.1.1,Corrientes,AR-W,annual,2021,gas oil combustion consumption by to the public,880.75008,TJ,N2O,3.9,kg/TJ,3434.925312,kg -2e6f80f9-1107-3bf8-854c-a8a9a23294b6,SESCO,II.1.1,Córdoba,AR-X,annual,2021,gas oil combustion consumption by to the public,3453.57768,TJ,CO2,74100.0,kg/TJ,255910106.088,kg -433529de-f295-3d4a-8b87-434ad3c19cc3,SESCO,II.1.1,Córdoba,AR-X,annual,2021,gas oil combustion consumption by to the public,3453.57768,TJ,CH4,3.9,kg/TJ,13468.952952,kg -433529de-f295-3d4a-8b87-434ad3c19cc3,SESCO,II.1.1,Córdoba,AR-X,annual,2021,gas oil combustion consumption by to the public,3453.57768,TJ,N2O,3.9,kg/TJ,13468.952952,kg -7190ffbe-592f-359c-a8e5-1a1eb2dffb47,SESCO,II.1.1,Entre Rios,AR-E,annual,2021,gas oil combustion consumption by to the public,1248.0182399999999,TJ,CO2,74100.0,kg/TJ,92478151.58399999,kg -15a0ddb4-e87d-3f6a-8880-50ec9bb6ce98,SESCO,II.1.1,Entre Rios,AR-E,annual,2021,gas oil combustion consumption by to the public,1248.0182399999999,TJ,CH4,3.9,kg/TJ,4867.271135999999,kg -15a0ddb4-e87d-3f6a-8880-50ec9bb6ce98,SESCO,II.1.1,Entre Rios,AR-E,annual,2021,gas oil combustion consumption by to the public,1248.0182399999999,TJ,N2O,3.9,kg/TJ,4867.271135999999,kg -30c708df-0bf6-3eb7-bb64-254754573948,SESCO,II.1.1,Formosa,AR-P,annual,2021,gas oil combustion consumption by to the public,571.8157199999999,TJ,CO2,74100.0,kg/TJ,42371544.852,kg -8fe33dcb-42ff-3307-9b49-3cc6fd1303be,SESCO,II.1.1,Formosa,AR-P,annual,2021,gas oil combustion consumption by to the public,571.8157199999999,TJ,CH4,3.9,kg/TJ,2230.081308,kg -8fe33dcb-42ff-3307-9b49-3cc6fd1303be,SESCO,II.1.1,Formosa,AR-P,annual,2021,gas oil combustion consumption by to the public,571.8157199999999,TJ,N2O,3.9,kg/TJ,2230.081308,kg -60c67ed4-f0ad-3a78-8d38-c6c155069ff9,SESCO,II.1.1,Jujuy,AR-Y,annual,2021,gas oil combustion consumption by to the public,301.13244,TJ,CO2,74100.0,kg/TJ,22313913.803999998,kg -4512f9f6-0e92-371b-923b-a1e2b1cefa25,SESCO,II.1.1,Jujuy,AR-Y,annual,2021,gas oil combustion consumption by to the public,301.13244,TJ,CH4,3.9,kg/TJ,1174.4165159999998,kg -4512f9f6-0e92-371b-923b-a1e2b1cefa25,SESCO,II.1.1,Jujuy,AR-Y,annual,2021,gas oil combustion consumption by to the public,301.13244,TJ,N2O,3.9,kg/TJ,1174.4165159999998,kg -8b6008e8-6828-3131-b6ae-12d3a1fe7a3b,SESCO,II.1.1,La Pampa,AR-L,annual,2021,gas oil combustion consumption by to the public,373.33632,TJ,CO2,74100.0,kg/TJ,27664221.312,kg -0531f4b6-ddea-3fd1-ae5a-970aae93e55a,SESCO,II.1.1,La Pampa,AR-L,annual,2021,gas oil combustion consumption by to the public,373.33632,TJ,CH4,3.9,kg/TJ,1456.011648,kg -0531f4b6-ddea-3fd1-ae5a-970aae93e55a,SESCO,II.1.1,La Pampa,AR-L,annual,2021,gas oil combustion consumption by to the public,373.33632,TJ,N2O,3.9,kg/TJ,1456.011648,kg -7e91be83-4205-396d-b471-05a4c377f756,SESCO,II.1.1,La Rioja,AR-F,annual,2021,gas oil combustion consumption by to the public,48.003479999999996,TJ,CO2,74100.0,kg/TJ,3557057.868,kg -8d1ae042-9746-330c-accb-3a95ce1ffb97,SESCO,II.1.1,La Rioja,AR-F,annual,2021,gas oil combustion consumption by to the public,48.003479999999996,TJ,CH4,3.9,kg/TJ,187.21357199999997,kg -8d1ae042-9746-330c-accb-3a95ce1ffb97,SESCO,II.1.1,La Rioja,AR-F,annual,2021,gas oil combustion consumption by to the public,48.003479999999996,TJ,N2O,3.9,kg/TJ,187.21357199999997,kg -65c8f583-b51d-396c-9199-f013bfe7dfb7,SESCO,II.1.1,Mendoza,AR-M,annual,2021,gas oil combustion consumption by to the public,1529.9709599999999,TJ,CO2,74100.0,kg/TJ,113370848.13599999,kg -38b753cb-b794-3b61-a584-cba1b9977e24,SESCO,II.1.1,Mendoza,AR-M,annual,2021,gas oil combustion consumption by to the public,1529.9709599999999,TJ,CH4,3.9,kg/TJ,5966.886743999999,kg -38b753cb-b794-3b61-a584-cba1b9977e24,SESCO,II.1.1,Mendoza,AR-M,annual,2021,gas oil combustion consumption by to the public,1529.9709599999999,TJ,N2O,3.9,kg/TJ,5966.886743999999,kg -1e830fe6-0943-38e4-a67e-34a91e571094,SESCO,II.1.1,Misiones,AR-N,annual,2021,gas oil combustion consumption by to the public,1040.65332,TJ,CO2,74100.0,kg/TJ,77112411.012,kg -109fd880-a264-34cc-bdf7-8df3794b5f9c,SESCO,II.1.1,Misiones,AR-N,annual,2021,gas oil combustion consumption by to the public,1040.65332,TJ,CH4,3.9,kg/TJ,4058.5479479999995,kg -109fd880-a264-34cc-bdf7-8df3794b5f9c,SESCO,II.1.1,Misiones,AR-N,annual,2021,gas oil combustion consumption by to the public,1040.65332,TJ,N2O,3.9,kg/TJ,4058.5479479999995,kg -4ebd38c8-0d7d-36d7-8aaa-e6443340e680,SESCO,II.1.1,Neuquén,AR-Q,annual,2021,gas oil combustion consumption by to the public,222.82428,TJ,CO2,74100.0,kg/TJ,16511279.147999998,kg -6ecf0f25-5a2a-3953-9f6c-09fabea3cfa3,SESCO,II.1.1,Neuquén,AR-Q,annual,2021,gas oil combustion consumption by to the public,222.82428,TJ,CH4,3.9,kg/TJ,869.014692,kg -6ecf0f25-5a2a-3953-9f6c-09fabea3cfa3,SESCO,II.1.1,Neuquén,AR-Q,annual,2021,gas oil combustion consumption by to the public,222.82428,TJ,N2O,3.9,kg/TJ,869.014692,kg -94dee217-410b-33f4-a2ae-85dbd42d13de,SESCO,II.1.1,Rio Negro,AR-R,annual,2021,gas oil combustion consumption by to the public,560.65464,TJ,CO2,74100.0,kg/TJ,41544508.824,kg -049ba900-0bf2-36aa-8193-97b9aca41eec,SESCO,II.1.1,Rio Negro,AR-R,annual,2021,gas oil combustion consumption by to the public,560.65464,TJ,CH4,3.9,kg/TJ,2186.5530959999996,kg -049ba900-0bf2-36aa-8193-97b9aca41eec,SESCO,II.1.1,Rio Negro,AR-R,annual,2021,gas oil combustion consumption by to the public,560.65464,TJ,N2O,3.9,kg/TJ,2186.5530959999996,kg -ed655b7f-8106-3289-b122-fede1b8ba289,SESCO,II.1.1,Salta,AR-A,annual,2021,gas oil combustion consumption by to the public,99.58284,TJ,CO2,74100.0,kg/TJ,7379088.444,kg -9dfeb685-107e-3227-9b30-b4c8441236f1,SESCO,II.1.1,Salta,AR-A,annual,2021,gas oil combustion consumption by to the public,99.58284,TJ,CH4,3.9,kg/TJ,388.373076,kg -9dfeb685-107e-3227-9b30-b4c8441236f1,SESCO,II.1.1,Salta,AR-A,annual,2021,gas oil combustion consumption by to the public,99.58284,TJ,N2O,3.9,kg/TJ,388.373076,kg -4e0d8572-ed55-35e9-8247-48fb11a8ac60,SESCO,II.1.1,San Juan,AR-J,annual,2021,gas oil combustion consumption by to the public,304.74444,TJ,CO2,74100.0,kg/TJ,22581563.004,kg -d82fd677-dd12-31d1-bfda-634fce4eee80,SESCO,II.1.1,San Juan,AR-J,annual,2021,gas oil combustion consumption by to the public,304.74444,TJ,CH4,3.9,kg/TJ,1188.503316,kg -d82fd677-dd12-31d1-bfda-634fce4eee80,SESCO,II.1.1,San Juan,AR-J,annual,2021,gas oil combustion consumption by to the public,304.74444,TJ,N2O,3.9,kg/TJ,1188.503316,kg -0ccc5da9-3b2c-3d21-94f6-5a4ec343a63d,SESCO,II.1.1,San Luis,AR-D,annual,2021,gas oil combustion consumption by to the public,578.31732,TJ,CO2,74100.0,kg/TJ,42853313.412,kg -bad468ed-c5d1-37b4-b0c4-f62fccde33f7,SESCO,II.1.1,San Luis,AR-D,annual,2021,gas oil combustion consumption by to the public,578.31732,TJ,CH4,3.9,kg/TJ,2255.437548,kg -bad468ed-c5d1-37b4-b0c4-f62fccde33f7,SESCO,II.1.1,San Luis,AR-D,annual,2021,gas oil combustion consumption by to the public,578.31732,TJ,N2O,3.9,kg/TJ,2255.437548,kg -efeabdb1-ef4f-39ba-bfd3-15755f0e772f,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2021,gas oil combustion consumption by to the public,490.43736,TJ,CO2,74100.0,kg/TJ,36341408.376,kg -d856a400-38fb-36bf-8fe4-a2a48a10adce,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2021,gas oil combustion consumption by to the public,490.43736,TJ,CH4,3.9,kg/TJ,1912.705704,kg -d856a400-38fb-36bf-8fe4-a2a48a10adce,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2021,gas oil combustion consumption by to the public,490.43736,TJ,N2O,3.9,kg/TJ,1912.705704,kg -3b7c2a11-fc7b-3e40-81c7-0c220123c17f,SESCO,II.1.1,Santa Fe,AR-S,annual,2021,gas oil combustion consumption by to the public,2058.40656,TJ,CO2,74100.0,kg/TJ,152527926.096,kg -5e9c99f2-1afc-3f7d-bd52-18e0ad97ca59,SESCO,II.1.1,Santa Fe,AR-S,annual,2021,gas oil combustion consumption by to the public,2058.40656,TJ,CH4,3.9,kg/TJ,8027.785583999999,kg -5e9c99f2-1afc-3f7d-bd52-18e0ad97ca59,SESCO,II.1.1,Santa Fe,AR-S,annual,2021,gas oil combustion consumption by to the public,2058.40656,TJ,N2O,3.9,kg/TJ,8027.785583999999,kg -5d87f054-f2e7-31d7-950a-551588ca1530,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2021,gas oil combustion consumption by to the public,400.20959999999997,TJ,CO2,74100.0,kg/TJ,29655531.359999996,kg -4886e4d7-22af-3f80-8df5-49721da2e613,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2021,gas oil combustion consumption by to the public,400.20959999999997,TJ,CH4,3.9,kg/TJ,1560.8174399999998,kg -4886e4d7-22af-3f80-8df5-49721da2e613,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2021,gas oil combustion consumption by to the public,400.20959999999997,TJ,N2O,3.9,kg/TJ,1560.8174399999998,kg -53babd71-2ef8-3b78-b337-cbe4744dccfb,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2021,gas oil combustion consumption by to the public,68.4474,TJ,CO2,74100.0,kg/TJ,5071952.34,kg -21d8b724-0ef9-3b28-a3f4-f07869575faa,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2021,gas oil combustion consumption by to the public,68.4474,TJ,CH4,3.9,kg/TJ,266.94486,kg -21d8b724-0ef9-3b28-a3f4-f07869575faa,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2021,gas oil combustion consumption by to the public,68.4474,TJ,N2O,3.9,kg/TJ,266.94486,kg -003acc7e-ccf5-363e-bd35-64967dfa445a,SESCO,II.1.1,Tucuman,AR-T,annual,2021,gas oil combustion consumption by to the public,101.64168,TJ,CO2,74100.0,kg/TJ,7531648.488,kg -0600e4ec-897c-3706-bd7b-3e52635fa0ae,SESCO,II.1.1,Tucuman,AR-T,annual,2021,gas oil combustion consumption by to the public,101.64168,TJ,CH4,3.9,kg/TJ,396.40255199999996,kg -0600e4ec-897c-3706-bd7b-3e52635fa0ae,SESCO,II.1.1,Tucuman,AR-T,annual,2021,gas oil combustion consumption by to the public,101.64168,TJ,N2O,3.9,kg/TJ,396.40255199999996,kg -fb7e4af3-be9b-3e3b-8a31-5bb3f184e217,SESCO,II.1.1,Buenos Aires,AR-B,annual,2021,gas oil combustion consumption by to the public,3528.05712,TJ,CO2,74100.0,kg/TJ,261429032.592,kg -909b787b-011a-37f7-b82a-78d0f9ab3256,SESCO,II.1.1,Buenos Aires,AR-B,annual,2021,gas oil combustion consumption by to the public,3528.05712,TJ,CH4,3.9,kg/TJ,13759.422768,kg -909b787b-011a-37f7-b82a-78d0f9ab3256,SESCO,II.1.1,Buenos Aires,AR-B,annual,2021,gas oil combustion consumption by to the public,3528.05712,TJ,N2O,3.9,kg/TJ,13759.422768,kg -34f3e996-5914-3e85-95ef-ba796cef918f,SESCO,II.1.1,Capital Federal,AR-C,annual,2021,gas oil combustion consumption by to the public,571.7796,TJ,CO2,74100.0,kg/TJ,42368868.36,kg -d84bc3d1-c872-33bc-a0ca-0afe6f19f64d,SESCO,II.1.1,Capital Federal,AR-C,annual,2021,gas oil combustion consumption by to the public,571.7796,TJ,CH4,3.9,kg/TJ,2229.94044,kg -d84bc3d1-c872-33bc-a0ca-0afe6f19f64d,SESCO,II.1.1,Capital Federal,AR-C,annual,2021,gas oil combustion consumption by to the public,571.7796,TJ,N2O,3.9,kg/TJ,2229.94044,kg -1baa9a4d-96a1-3117-ba3b-865bd823b2e4,SESCO,II.1.1,Catamarca,AR-K,annual,2021,gas oil combustion consumption by to the public,165.17676,TJ,CO2,74100.0,kg/TJ,12239597.916,kg -c2846628-a171-3174-92e0-f537408cc961,SESCO,II.1.1,Catamarca,AR-K,annual,2021,gas oil combustion consumption by to the public,165.17676,TJ,CH4,3.9,kg/TJ,644.189364,kg -c2846628-a171-3174-92e0-f537408cc961,SESCO,II.1.1,Catamarca,AR-K,annual,2021,gas oil combustion consumption by to the public,165.17676,TJ,N2O,3.9,kg/TJ,644.189364,kg -b4a83efc-58be-3a33-a254-e8c5c224ec1c,SESCO,II.1.1,Chaco,AR-H,annual,2021,gas oil combustion consumption by to the public,166.65768,TJ,CO2,74100.0,kg/TJ,12349334.088,kg -7520cf08-87cd-31e5-84ad-84ad4bc7a805,SESCO,II.1.1,Chaco,AR-H,annual,2021,gas oil combustion consumption by to the public,166.65768,TJ,CH4,3.9,kg/TJ,649.9649519999999,kg -7520cf08-87cd-31e5-84ad-84ad4bc7a805,SESCO,II.1.1,Chaco,AR-H,annual,2021,gas oil combustion consumption by to the public,166.65768,TJ,N2O,3.9,kg/TJ,649.9649519999999,kg -cba5d278-a8d4-35a8-aa44-a49aaab47185,SESCO,II.1.1,Chubut,AR-U,annual,2021,gas oil combustion consumption by to the public,637.55412,TJ,CO2,74100.0,kg/TJ,47242760.292,kg -2b21c9e4-c287-38b5-8ba1-4875950d3ad0,SESCO,II.1.1,Chubut,AR-U,annual,2021,gas oil combustion consumption by to the public,637.55412,TJ,CH4,3.9,kg/TJ,2486.461068,kg -2b21c9e4-c287-38b5-8ba1-4875950d3ad0,SESCO,II.1.1,Chubut,AR-U,annual,2021,gas oil combustion consumption by to the public,637.55412,TJ,N2O,3.9,kg/TJ,2486.461068,kg -d69b8a17-5948-369b-8f48-5dac70cec719,SESCO,II.1.1,Corrientes,AR-W,annual,2021,gas oil combustion consumption by to the public,216.39491999999998,TJ,CO2,74100.0,kg/TJ,16034863.571999999,kg -c05e0e71-024c-303c-930a-e3a584e89974,SESCO,II.1.1,Corrientes,AR-W,annual,2021,gas oil combustion consumption by to the public,216.39491999999998,TJ,CH4,3.9,kg/TJ,843.9401879999999,kg -c05e0e71-024c-303c-930a-e3a584e89974,SESCO,II.1.1,Corrientes,AR-W,annual,2021,gas oil combustion consumption by to the public,216.39491999999998,TJ,N2O,3.9,kg/TJ,843.9401879999999,kg -476947b1-3201-3df2-9aea-daf9ed891945,SESCO,II.1.1,Córdoba,AR-X,annual,2021,gas oil combustion consumption by to the public,1058.6410799999999,TJ,CO2,74100.0,kg/TJ,78445304.028,kg -ab4642c8-23d7-3674-b237-76e704662b8f,SESCO,II.1.1,Córdoba,AR-X,annual,2021,gas oil combustion consumption by to the public,1058.6410799999999,TJ,CH4,3.9,kg/TJ,4128.700212,kg -ab4642c8-23d7-3674-b237-76e704662b8f,SESCO,II.1.1,Córdoba,AR-X,annual,2021,gas oil combustion consumption by to the public,1058.6410799999999,TJ,N2O,3.9,kg/TJ,4128.700212,kg -f30761cb-ca6f-352c-a706-fdbcf4248945,SESCO,II.1.1,Entre Rios,AR-E,annual,2021,gas oil combustion consumption by to the public,486.13908,TJ,CO2,74100.0,kg/TJ,36022905.828,kg -420b39cd-332a-3897-9f68-0d857b62ac3f,SESCO,II.1.1,Entre Rios,AR-E,annual,2021,gas oil combustion consumption by to the public,486.13908,TJ,CH4,3.9,kg/TJ,1895.9424119999999,kg -420b39cd-332a-3897-9f68-0d857b62ac3f,SESCO,II.1.1,Entre Rios,AR-E,annual,2021,gas oil combustion consumption by to the public,486.13908,TJ,N2O,3.9,kg/TJ,1895.9424119999999,kg -4faa42b2-2b77-35fe-abd0-785ec14f4afb,SESCO,II.1.1,Formosa,AR-P,annual,2021,gas oil combustion consumption by to the public,268.84116,TJ,CO2,74100.0,kg/TJ,19921129.956,kg -b1512ce1-85fd-3cd4-b996-136b5da5890f,SESCO,II.1.1,Formosa,AR-P,annual,2021,gas oil combustion consumption by to the public,268.84116,TJ,CH4,3.9,kg/TJ,1048.480524,kg -b1512ce1-85fd-3cd4-b996-136b5da5890f,SESCO,II.1.1,Formosa,AR-P,annual,2021,gas oil combustion consumption by to the public,268.84116,TJ,N2O,3.9,kg/TJ,1048.480524,kg -5ba90116-4c6b-3e15-b873-63e91b7cdda5,SESCO,II.1.1,Jujuy,AR-Y,annual,2021,gas oil combustion consumption by to the public,93.22572,TJ,CO2,74100.0,kg/TJ,6908025.852,kg -c5cbe6fa-6b91-38a1-b185-f8e48225b9a5,SESCO,II.1.1,Jujuy,AR-Y,annual,2021,gas oil combustion consumption by to the public,93.22572,TJ,CH4,3.9,kg/TJ,363.580308,kg -c5cbe6fa-6b91-38a1-b185-f8e48225b9a5,SESCO,II.1.1,Jujuy,AR-Y,annual,2021,gas oil combustion consumption by to the public,93.22572,TJ,N2O,3.9,kg/TJ,363.580308,kg -67482e5b-f2e6-37fa-a7d0-3897f9d54afc,SESCO,II.1.1,La Pampa,AR-L,annual,2021,gas oil combustion consumption by to the public,142.4934,TJ,CO2,74100.0,kg/TJ,10558760.940000001,kg -3dc0635b-eef3-33d6-aaed-dc83fd11fc6b,SESCO,II.1.1,La Pampa,AR-L,annual,2021,gas oil combustion consumption by to the public,142.4934,TJ,CH4,3.9,kg/TJ,555.7242600000001,kg -3dc0635b-eef3-33d6-aaed-dc83fd11fc6b,SESCO,II.1.1,La Pampa,AR-L,annual,2021,gas oil combustion consumption by to the public,142.4934,TJ,N2O,3.9,kg/TJ,555.7242600000001,kg -19bbdfde-3317-3430-a89f-0006212efdd6,SESCO,II.1.1,La Rioja,AR-F,annual,2021,gas oil combustion consumption by to the public,56.27496,TJ,CO2,74100.0,kg/TJ,4169974.536,kg -ca867557-a442-337b-a01d-e5cef9a417e8,SESCO,II.1.1,La Rioja,AR-F,annual,2021,gas oil combustion consumption by to the public,56.27496,TJ,CH4,3.9,kg/TJ,219.472344,kg -ca867557-a442-337b-a01d-e5cef9a417e8,SESCO,II.1.1,La Rioja,AR-F,annual,2021,gas oil combustion consumption by to the public,56.27496,TJ,N2O,3.9,kg/TJ,219.472344,kg -a21f4d93-2016-36d9-8ddb-9f0fff9ba745,SESCO,II.1.1,Mendoza,AR-M,annual,2021,gas oil combustion consumption by to the public,413.2128,TJ,CO2,74100.0,kg/TJ,30619068.48,kg -6fd729f7-cb05-3257-bc4a-36e73a969ec0,SESCO,II.1.1,Mendoza,AR-M,annual,2021,gas oil combustion consumption by to the public,413.2128,TJ,CH4,3.9,kg/TJ,1611.52992,kg -6fd729f7-cb05-3257-bc4a-36e73a969ec0,SESCO,II.1.1,Mendoza,AR-M,annual,2021,gas oil combustion consumption by to the public,413.2128,TJ,N2O,3.9,kg/TJ,1611.52992,kg -bffed5fe-e28e-39d7-974a-af30d0f0e820,SESCO,II.1.1,Misiones,AR-N,annual,2021,gas oil combustion consumption by to the public,289.28508,TJ,CO2,74100.0,kg/TJ,21436024.428,kg -336141b3-6463-3d7b-a1b8-db6a0775f8ed,SESCO,II.1.1,Misiones,AR-N,annual,2021,gas oil combustion consumption by to the public,289.28508,TJ,CH4,3.9,kg/TJ,1128.211812,kg -336141b3-6463-3d7b-a1b8-db6a0775f8ed,SESCO,II.1.1,Misiones,AR-N,annual,2021,gas oil combustion consumption by to the public,289.28508,TJ,N2O,3.9,kg/TJ,1128.211812,kg -be6ba68d-ee36-3189-b68e-7e100e66abcf,SESCO,II.1.1,Neuquén,AR-Q,annual,2021,gas oil combustion consumption by to the public,271.33344,TJ,CO2,74100.0,kg/TJ,20105807.904,kg -3b4dcfa0-1376-350c-8733-57b0f73ce0ce,SESCO,II.1.1,Neuquén,AR-Q,annual,2021,gas oil combustion consumption by to the public,271.33344,TJ,CH4,3.9,kg/TJ,1058.200416,kg -3b4dcfa0-1376-350c-8733-57b0f73ce0ce,SESCO,II.1.1,Neuquén,AR-Q,annual,2021,gas oil combustion consumption by to the public,271.33344,TJ,N2O,3.9,kg/TJ,1058.200416,kg -5eb3e716-9757-3f95-9542-c8be4db127c9,SESCO,II.1.1,Rio Negro,AR-R,annual,2021,gas oil combustion consumption by to the public,361.7418,TJ,CO2,74100.0,kg/TJ,26805067.380000003,kg -8b4da60b-9450-3c6e-97dc-2d4a3bddaf5e,SESCO,II.1.1,Rio Negro,AR-R,annual,2021,gas oil combustion consumption by to the public,361.7418,TJ,CH4,3.9,kg/TJ,1410.79302,kg -8b4da60b-9450-3c6e-97dc-2d4a3bddaf5e,SESCO,II.1.1,Rio Negro,AR-R,annual,2021,gas oil combustion consumption by to the public,361.7418,TJ,N2O,3.9,kg/TJ,1410.79302,kg -08fe332c-2e29-353a-8aa2-a9c1b3c8baa7,SESCO,II.1.1,Salta,AR-A,annual,2021,gas oil combustion consumption by to the public,66.56916,TJ,CO2,74100.0,kg/TJ,4932774.756,kg -946d9a38-fe03-3ab3-8c65-232f5bce6b23,SESCO,II.1.1,Salta,AR-A,annual,2021,gas oil combustion consumption by to the public,66.56916,TJ,CH4,3.9,kg/TJ,259.61972399999996,kg -946d9a38-fe03-3ab3-8c65-232f5bce6b23,SESCO,II.1.1,Salta,AR-A,annual,2021,gas oil combustion consumption by to the public,66.56916,TJ,N2O,3.9,kg/TJ,259.61972399999996,kg -f03208ef-783f-3174-93a2-25f15f5352be,SESCO,II.1.1,San Juan,AR-J,annual,2021,gas oil combustion consumption by to the public,79.06668,TJ,CO2,74100.0,kg/TJ,5858840.988000001,kg -ff7e1355-9fea-3f39-a057-8e8a463a9101,SESCO,II.1.1,San Juan,AR-J,annual,2021,gas oil combustion consumption by to the public,79.06668,TJ,CH4,3.9,kg/TJ,308.360052,kg -ff7e1355-9fea-3f39-a057-8e8a463a9101,SESCO,II.1.1,San Juan,AR-J,annual,2021,gas oil combustion consumption by to the public,79.06668,TJ,N2O,3.9,kg/TJ,308.360052,kg -b6c36a67-7c51-30ef-afe9-0649ea8e2e27,SESCO,II.1.1,San Luis,AR-D,annual,2021,gas oil combustion consumption by to the public,213.8304,TJ,CO2,74100.0,kg/TJ,15844832.64,kg -3a9e4033-b5cf-376e-830e-b2ce51de8b18,SESCO,II.1.1,San Luis,AR-D,annual,2021,gas oil combustion consumption by to the public,213.8304,TJ,CH4,3.9,kg/TJ,833.9385599999999,kg -3a9e4033-b5cf-376e-830e-b2ce51de8b18,SESCO,II.1.1,San Luis,AR-D,annual,2021,gas oil combustion consumption by to the public,213.8304,TJ,N2O,3.9,kg/TJ,833.9385599999999,kg -bae2dce6-1de3-3326-8e2b-e89fe4b544e4,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2021,gas oil combustion consumption by to the public,332.19563999999997,TJ,CO2,74100.0,kg/TJ,24615696.924,kg -600a4c55-f07d-38a2-bdcf-f73782bba2bc,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2021,gas oil combustion consumption by to the public,332.19563999999997,TJ,CH4,3.9,kg/TJ,1295.5629959999999,kg -600a4c55-f07d-38a2-bdcf-f73782bba2bc,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2021,gas oil combustion consumption by to the public,332.19563999999997,TJ,N2O,3.9,kg/TJ,1295.5629959999999,kg -28e37aef-9970-3d82-958e-2e14ca4817df,SESCO,II.1.1,Santa Fe,AR-S,annual,2021,gas oil combustion consumption by to the public,941.1427199999999,TJ,CO2,74100.0,kg/TJ,69738675.552,kg -147c63fb-fdd3-3064-b621-09b8cf2e6024,SESCO,II.1.1,Santa Fe,AR-S,annual,2021,gas oil combustion consumption by to the public,941.1427199999999,TJ,CH4,3.9,kg/TJ,3670.4566079999995,kg -147c63fb-fdd3-3064-b621-09b8cf2e6024,SESCO,II.1.1,Santa Fe,AR-S,annual,2021,gas oil combustion consumption by to the public,941.1427199999999,TJ,N2O,3.9,kg/TJ,3670.4566079999995,kg -2386ca5e-a544-384c-aefc-542cd62a6467,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2021,gas oil combustion consumption by to the public,242.97924,TJ,CO2,74100.0,kg/TJ,18004761.684,kg -d3027dc7-6ca6-3aa1-9b41-5084381b71b5,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2021,gas oil combustion consumption by to the public,242.97924,TJ,CH4,3.9,kg/TJ,947.619036,kg -d3027dc7-6ca6-3aa1-9b41-5084381b71b5,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2021,gas oil combustion consumption by to the public,242.97924,TJ,N2O,3.9,kg/TJ,947.619036,kg -6a331d45-4a89-3c39-b806-ec2a3b9264e5,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2021,gas oil combustion consumption by to the public,42.513239999999996,TJ,CO2,74100.0,kg/TJ,3150231.084,kg -ecc2e640-c863-3ae0-9969-02998253254c,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2021,gas oil combustion consumption by to the public,42.513239999999996,TJ,CH4,3.9,kg/TJ,165.80163599999997,kg -ecc2e640-c863-3ae0-9969-02998253254c,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2021,gas oil combustion consumption by to the public,42.513239999999996,TJ,N2O,3.9,kg/TJ,165.80163599999997,kg -62fea93b-bb2a-3bb9-b9f3-65570a96f6f1,SESCO,II.1.1,Tucuman,AR-T,annual,2021,gas oil combustion consumption by to the public,45.40284,TJ,CO2,74100.0,kg/TJ,3364350.4439999997,kg -fa6a4d94-c524-3948-8f02-20fe400d6f52,SESCO,II.1.1,Tucuman,AR-T,annual,2021,gas oil combustion consumption by to the public,45.40284,TJ,CH4,3.9,kg/TJ,177.07107599999998,kg -fa6a4d94-c524-3948-8f02-20fe400d6f52,SESCO,II.1.1,Tucuman,AR-T,annual,2021,gas oil combustion consumption by to the public,45.40284,TJ,N2O,3.9,kg/TJ,177.07107599999998,kg -2c8132ad-7241-3bbd-88b4-2e3397503212,SESCO,II.1.1,Buenos Aires,AR-B,annual,2021,jet kerosene combustion consumption by to the public,2.3589749999999996,TJ,CO2,71500.0,kg/TJ,168666.71249999997,kg -69c2da50-1e6c-335d-bbba-cfc03cc6582e,SESCO,II.1.1,Buenos Aires,AR-B,annual,2021,jet kerosene combustion consumption by to the public,2.3589749999999996,TJ,CH4,0.5,kg/TJ,1.1794874999999998,kg -ccac4abe-2eae-3321-ba72-eec14350204b,SESCO,II.1.1,Buenos Aires,AR-B,annual,2021,jet kerosene combustion consumption by to the public,2.3589749999999996,TJ,N2O,2.0,kg/TJ,4.717949999999999,kg -feda1785-ea9f-38e3-a357-60256bc7e73e,SESCO,II.1.1,Córdoba,AR-X,annual,2021,jet kerosene combustion consumption by to the public,2.233163,TJ,CO2,71500.0,kg/TJ,159671.15449999998,kg -3076db6b-a01c-39d1-ba12-baf12e18695d,SESCO,II.1.1,Córdoba,AR-X,annual,2021,jet kerosene combustion consumption by to the public,2.233163,TJ,CH4,0.5,kg/TJ,1.1165815,kg -5a9ba29e-c896-3176-bfb2-2f200bd23965,SESCO,II.1.1,Córdoba,AR-X,annual,2021,jet kerosene combustion consumption by to the public,2.233163,TJ,N2O,2.0,kg/TJ,4.466326,kg -bdf244a6-22f6-3d1c-bb59-8ee75a9bbbd4,SESCO,II.1.1,Entre Rios,AR-E,annual,2021,jet kerosene combustion consumption by to the public,2.20171,TJ,CO2,71500.0,kg/TJ,157422.26499999998,kg -15fbd5e0-fd00-3232-a17b-8ee2cb61dfeb,SESCO,II.1.1,Entre Rios,AR-E,annual,2021,jet kerosene combustion consumption by to the public,2.20171,TJ,CH4,0.5,kg/TJ,1.100855,kg -88bb5813-e027-3b3d-9a87-7c48581cf71e,SESCO,II.1.1,Entre Rios,AR-E,annual,2021,jet kerosene combustion consumption by to the public,2.20171,TJ,N2O,2.0,kg/TJ,4.40342,kg -1573b4c9-91e7-3999-b169-c1571b8b33f8,SESCO,II.1.1,Misiones,AR-N,annual,2021,jet kerosene combustion consumption by to the public,0.34598299999999993,TJ,CO2,71500.0,kg/TJ,24737.784499999994,kg -3224d0a5-067b-3f49-90d2-b318cb7e111e,SESCO,II.1.1,Misiones,AR-N,annual,2021,jet kerosene combustion consumption by to the public,0.34598299999999993,TJ,CH4,0.5,kg/TJ,0.17299149999999996,kg -cd818895-1a0e-303d-bcae-10afe0148f12,SESCO,II.1.1,Misiones,AR-N,annual,2021,jet kerosene combustion consumption by to the public,0.34598299999999993,TJ,N2O,2.0,kg/TJ,0.6919659999999999,kg -d22f3dfd-8fe9-3b47-897a-e990d250d90c,SESCO,II.1.1,Santa Fe,AR-S,annual,2021,jet kerosene combustion consumption by to the public,3.4598299999999993,TJ,CO2,71500.0,kg/TJ,247377.84499999994,kg -19eb7ebf-dc3d-3c79-beab-ed8179c1f3e4,SESCO,II.1.1,Santa Fe,AR-S,annual,2021,jet kerosene combustion consumption by to the public,3.4598299999999993,TJ,CH4,0.5,kg/TJ,1.7299149999999996,kg -1c556757-155c-3520-938e-5f289a7573b6,SESCO,II.1.1,Santa Fe,AR-S,annual,2021,jet kerosene combustion consumption by to the public,3.4598299999999993,TJ,N2O,2.0,kg/TJ,6.919659999999999,kg -0e716105-32bf-374f-a9e1-aa20703c5be3,SESCO,II.2.1,Buenos Aires,AR-B,annual,2021,gas oil combustion consumption by railway transport,101.136,TJ,CO2,74100.0,kg/TJ,7494177.6,kg -7b22458c-449f-38f1-a556-6f5caa3954f9,SESCO,II.2.1,Buenos Aires,AR-B,annual,2021,gas oil combustion consumption by railway transport,101.136,TJ,CH4,3.9,kg/TJ,394.43039999999996,kg -7b22458c-449f-38f1-a556-6f5caa3954f9,SESCO,II.2.1,Buenos Aires,AR-B,annual,2021,gas oil combustion consumption by railway transport,101.136,TJ,N2O,3.9,kg/TJ,394.43039999999996,kg -f2f9e289-544b-37dc-8518-6f702c310812,SESCO,II.2.1,Capital Federal,AR-C,annual,2021,gas oil combustion consumption by railway transport,0.903,TJ,CO2,74100.0,kg/TJ,66912.3,kg -4dd6ec88-291a-39f9-900d-2ffeb24dda48,SESCO,II.2.1,Capital Federal,AR-C,annual,2021,gas oil combustion consumption by railway transport,0.903,TJ,CH4,3.9,kg/TJ,3.5217,kg -4dd6ec88-291a-39f9-900d-2ffeb24dda48,SESCO,II.2.1,Capital Federal,AR-C,annual,2021,gas oil combustion consumption by railway transport,0.903,TJ,N2O,3.9,kg/TJ,3.5217,kg -35b7048c-f187-36a2-a922-a8779872b195,SESCO,II.2.1,Córdoba,AR-X,annual,2021,gas oil combustion consumption by railway transport,2.6367599999999998,TJ,CO2,74100.0,kg/TJ,195383.916,kg -89c37af0-f2c6-3ba3-987b-a809ea562587,SESCO,II.2.1,Córdoba,AR-X,annual,2021,gas oil combustion consumption by railway transport,2.6367599999999998,TJ,CH4,3.9,kg/TJ,10.283363999999999,kg -89c37af0-f2c6-3ba3-987b-a809ea562587,SESCO,II.2.1,Córdoba,AR-X,annual,2021,gas oil combustion consumption by railway transport,2.6367599999999998,TJ,N2O,3.9,kg/TJ,10.283363999999999,kg -3d53988e-3280-3593-8fc8-97e919c328ed,SESCO,II.2.1,La Pampa,AR-L,annual,2021,gas oil combustion consumption by railway transport,3.93708,TJ,CO2,74100.0,kg/TJ,291737.62799999997,kg -3a2390dc-30c4-34de-8960-6bf37de58289,SESCO,II.2.1,La Pampa,AR-L,annual,2021,gas oil combustion consumption by railway transport,3.93708,TJ,CH4,3.9,kg/TJ,15.354612,kg -3a2390dc-30c4-34de-8960-6bf37de58289,SESCO,II.2.1,La Pampa,AR-L,annual,2021,gas oil combustion consumption by railway transport,3.93708,TJ,N2O,3.9,kg/TJ,15.354612,kg -9b95ac47-8e5e-33eb-875a-4da097391810,SESCO,II.2.1,Neuquén,AR-Q,annual,2021,gas oil combustion consumption by railway transport,2.709,TJ,CO2,74100.0,kg/TJ,200736.9,kg -612d3c4b-b817-3f2f-bbbc-158f57b51c8b,SESCO,II.2.1,Neuquén,AR-Q,annual,2021,gas oil combustion consumption by railway transport,2.709,TJ,CH4,3.9,kg/TJ,10.5651,kg -612d3c4b-b817-3f2f-bbbc-158f57b51c8b,SESCO,II.2.1,Neuquén,AR-Q,annual,2021,gas oil combustion consumption by railway transport,2.709,TJ,N2O,3.9,kg/TJ,10.5651,kg -d86fe2a3-40b7-36bd-b6cb-1a1509c83e35,SESCO,II.2.1,Santa Fe,AR-S,annual,2021,gas oil combustion consumption by railway transport,39.5514,TJ,CO2,74100.0,kg/TJ,2930758.74,kg -e4fcb35d-0628-3596-89c3-ffa97c1a1f6b,SESCO,II.2.1,Santa Fe,AR-S,annual,2021,gas oil combustion consumption by railway transport,39.5514,TJ,CH4,3.9,kg/TJ,154.25046,kg -e4fcb35d-0628-3596-89c3-ffa97c1a1f6b,SESCO,II.2.1,Santa Fe,AR-S,annual,2021,gas oil combustion consumption by railway transport,39.5514,TJ,N2O,3.9,kg/TJ,154.25046,kg -cba14561-32e4-351b-9fe5-ea6b47375172,SESCO,II.2.1,Santiago del Estero,AR-G,annual,2021,gas oil combustion consumption by railway transport,4.11768,TJ,CO2,74100.0,kg/TJ,305120.088,kg -c67f9d40-0fea-3367-bb19-df40bb693025,SESCO,II.2.1,Santiago del Estero,AR-G,annual,2021,gas oil combustion consumption by railway transport,4.11768,TJ,CH4,3.9,kg/TJ,16.058951999999998,kg -c67f9d40-0fea-3367-bb19-df40bb693025,SESCO,II.2.1,Santiago del Estero,AR-G,annual,2021,gas oil combustion consumption by railway transport,4.11768,TJ,N2O,3.9,kg/TJ,16.058951999999998,kg -4828952c-857f-33c0-970f-d626c0f2ddee,SESCO,II.2.1,Tucuman,AR-T,annual,2021,gas oil combustion consumption by railway transport,1.48092,TJ,CO2,74100.0,kg/TJ,109736.172,kg -1bdb27ea-7eb2-345a-9ff5-2ce79238ebb3,SESCO,II.2.1,Tucuman,AR-T,annual,2021,gas oil combustion consumption by railway transport,1.48092,TJ,CH4,3.9,kg/TJ,5.775588,kg -1bdb27ea-7eb2-345a-9ff5-2ce79238ebb3,SESCO,II.2.1,Tucuman,AR-T,annual,2021,gas oil combustion consumption by railway transport,1.48092,TJ,N2O,3.9,kg/TJ,5.775588,kg -f7f4286e-221b-3576-8afe-a64e5018e0e9,SESCO,II.2.1,Buenos Aires,AR-B,annual,2021,gas oil combustion consumption by railway transport,22.9362,TJ,CO2,74100.0,kg/TJ,1699572.42,kg -03b9d782-9994-34f8-9630-99914872694a,SESCO,II.2.1,Buenos Aires,AR-B,annual,2021,gas oil combustion consumption by railway transport,22.9362,TJ,CH4,3.9,kg/TJ,89.45118,kg -03b9d782-9994-34f8-9630-99914872694a,SESCO,II.2.1,Buenos Aires,AR-B,annual,2021,gas oil combustion consumption by railway transport,22.9362,TJ,N2O,3.9,kg/TJ,89.45118,kg -7cc89b45-445b-323d-8f31-17fd983cb558,SESCO,II.2.1,Capital Federal,AR-C,annual,2021,gas oil combustion consumption by railway transport,2.8895999999999997,TJ,CO2,74100.0,kg/TJ,214119.36,kg -782ae6e8-ad35-3b0a-99ee-f0d48a0645b9,SESCO,II.2.1,Capital Federal,AR-C,annual,2021,gas oil combustion consumption by railway transport,2.8895999999999997,TJ,CH4,3.9,kg/TJ,11.26944,kg -782ae6e8-ad35-3b0a-99ee-f0d48a0645b9,SESCO,II.2.1,Capital Federal,AR-C,annual,2021,gas oil combustion consumption by railway transport,2.8895999999999997,TJ,N2O,3.9,kg/TJ,11.26944,kg -7ed12186-34c0-3d02-99ad-48c9ca865493,SESCO,II.1.1,Buenos Aires,AR-B,annual,2021,gas oil combustion consumption by freight transport,1279.04532,TJ,CO2,74100.0,kg/TJ,94777258.212,kg -d48bb42e-54e9-308f-8314-9a51c9577c7a,SESCO,II.1.1,Buenos Aires,AR-B,annual,2021,gas oil combustion consumption by freight transport,1279.04532,TJ,CH4,3.9,kg/TJ,4988.276747999999,kg -d48bb42e-54e9-308f-8314-9a51c9577c7a,SESCO,II.1.1,Buenos Aires,AR-B,annual,2021,gas oil combustion consumption by freight transport,1279.04532,TJ,N2O,3.9,kg/TJ,4988.276747999999,kg -f73fd212-433d-3f4e-8b89-d7e7a40049d0,SESCO,II.1.1,Capital Federal,AR-C,annual,2021,gas oil combustion consumption by freight transport,320.45664,TJ,CO2,74100.0,kg/TJ,23745837.024,kg -020963f4-ffcd-37ca-a31a-3890f241ddf9,SESCO,II.1.1,Capital Federal,AR-C,annual,2021,gas oil combustion consumption by freight transport,320.45664,TJ,CH4,3.9,kg/TJ,1249.780896,kg -020963f4-ffcd-37ca-a31a-3890f241ddf9,SESCO,II.1.1,Capital Federal,AR-C,annual,2021,gas oil combustion consumption by freight transport,320.45664,TJ,N2O,3.9,kg/TJ,1249.780896,kg -15f56ae1-582e-350d-acf2-039547b9724f,SESCO,II.1.1,Catamarca,AR-K,annual,2021,gas oil combustion consumption by freight transport,9.10224,TJ,CO2,74100.0,kg/TJ,674475.984,kg -517ecd64-b352-33ae-a971-809d899fc129,SESCO,II.1.1,Catamarca,AR-K,annual,2021,gas oil combustion consumption by freight transport,9.10224,TJ,CH4,3.9,kg/TJ,35.498736,kg -517ecd64-b352-33ae-a971-809d899fc129,SESCO,II.1.1,Catamarca,AR-K,annual,2021,gas oil combustion consumption by freight transport,9.10224,TJ,N2O,3.9,kg/TJ,35.498736,kg -13a1fd99-6ea2-3332-b73d-e21136dcdd7a,SESCO,II.1.1,Chaco,AR-H,annual,2021,gas oil combustion consumption by freight transport,23.73084,TJ,CO2,74100.0,kg/TJ,1758455.244,kg -d89ca209-8648-3905-8383-edce2fcdd175,SESCO,II.1.1,Chaco,AR-H,annual,2021,gas oil combustion consumption by freight transport,23.73084,TJ,CH4,3.9,kg/TJ,92.550276,kg -d89ca209-8648-3905-8383-edce2fcdd175,SESCO,II.1.1,Chaco,AR-H,annual,2021,gas oil combustion consumption by freight transport,23.73084,TJ,N2O,3.9,kg/TJ,92.550276,kg -46031eeb-54f2-3394-a5b5-9b1428d4762b,SESCO,II.1.1,Chubut,AR-U,annual,2021,gas oil combustion consumption by freight transport,53.096399999999996,TJ,CO2,74100.0,kg/TJ,3934443.2399999998,kg -f9f17796-0684-3bdb-9411-5e61b06ee1c0,SESCO,II.1.1,Chubut,AR-U,annual,2021,gas oil combustion consumption by freight transport,53.096399999999996,TJ,CH4,3.9,kg/TJ,207.07595999999998,kg -f9f17796-0684-3bdb-9411-5e61b06ee1c0,SESCO,II.1.1,Chubut,AR-U,annual,2021,gas oil combustion consumption by freight transport,53.096399999999996,TJ,N2O,3.9,kg/TJ,207.07595999999998,kg -3728cd35-2577-3a2f-8b9d-4fe9ef4f4d0d,SESCO,II.1.1,Corrientes,AR-W,annual,2021,gas oil combustion consumption by freight transport,63.46284,TJ,CO2,74100.0,kg/TJ,4702596.444,kg -df780de8-27e0-3fb2-91b1-25b1764f49c9,SESCO,II.1.1,Corrientes,AR-W,annual,2021,gas oil combustion consumption by freight transport,63.46284,TJ,CH4,3.9,kg/TJ,247.505076,kg -df780de8-27e0-3fb2-91b1-25b1764f49c9,SESCO,II.1.1,Corrientes,AR-W,annual,2021,gas oil combustion consumption by freight transport,63.46284,TJ,N2O,3.9,kg/TJ,247.505076,kg -06155b3f-c823-3372-8357-4483ed314d04,SESCO,II.1.1,Córdoba,AR-X,annual,2021,gas oil combustion consumption by freight transport,184.97052,TJ,CO2,74100.0,kg/TJ,13706315.532,kg -061413ad-ae74-3f29-addf-6a6c17dad3eb,SESCO,II.1.1,Córdoba,AR-X,annual,2021,gas oil combustion consumption by freight transport,184.97052,TJ,CH4,3.9,kg/TJ,721.3850279999999,kg -061413ad-ae74-3f29-addf-6a6c17dad3eb,SESCO,II.1.1,Córdoba,AR-X,annual,2021,gas oil combustion consumption by freight transport,184.97052,TJ,N2O,3.9,kg/TJ,721.3850279999999,kg -81eded8d-4d5c-3e8e-a419-fadd0086eab2,SESCO,II.1.1,Entre Rios,AR-E,annual,2021,gas oil combustion consumption by freight transport,106.15668,TJ,CO2,74100.0,kg/TJ,7866209.988,kg -ef24c252-cbee-353b-b8d0-83d40cad1ac1,SESCO,II.1.1,Entre Rios,AR-E,annual,2021,gas oil combustion consumption by freight transport,106.15668,TJ,CH4,3.9,kg/TJ,414.01105199999995,kg -ef24c252-cbee-353b-b8d0-83d40cad1ac1,SESCO,II.1.1,Entre Rios,AR-E,annual,2021,gas oil combustion consumption by freight transport,106.15668,TJ,N2O,3.9,kg/TJ,414.01105199999995,kg -199724b1-129e-369a-878b-c7ba4c621768,SESCO,II.1.1,Formosa,AR-P,annual,2021,gas oil combustion consumption by freight transport,10.6554,TJ,CO2,74100.0,kg/TJ,789565.14,kg -8701830f-4aa2-36a8-a9a8-fdfc2ecbd1af,SESCO,II.1.1,Formosa,AR-P,annual,2021,gas oil combustion consumption by freight transport,10.6554,TJ,CH4,3.9,kg/TJ,41.55606,kg -8701830f-4aa2-36a8-a9a8-fdfc2ecbd1af,SESCO,II.1.1,Formosa,AR-P,annual,2021,gas oil combustion consumption by freight transport,10.6554,TJ,N2O,3.9,kg/TJ,41.55606,kg -cd901963-94b0-395b-a67d-44f41aca9a32,SESCO,II.1.1,Jujuy,AR-Y,annual,2021,gas oil combustion consumption by freight transport,7.7658,TJ,CO2,74100.0,kg/TJ,575445.78,kg -01ac5490-6559-365c-880b-79207a82540f,SESCO,II.1.1,Jujuy,AR-Y,annual,2021,gas oil combustion consumption by freight transport,7.7658,TJ,CH4,3.9,kg/TJ,30.28662,kg -01ac5490-6559-365c-880b-79207a82540f,SESCO,II.1.1,Jujuy,AR-Y,annual,2021,gas oil combustion consumption by freight transport,7.7658,TJ,N2O,3.9,kg/TJ,30.28662,kg -5dd187e4-3218-3637-bd97-f59ae20cd8a6,SESCO,II.1.1,La Pampa,AR-L,annual,2021,gas oil combustion consumption by freight transport,25.8258,TJ,CO2,74100.0,kg/TJ,1913691.78,kg -f8cecf70-c318-386e-9733-8a3339b8d312,SESCO,II.1.1,La Pampa,AR-L,annual,2021,gas oil combustion consumption by freight transport,25.8258,TJ,CH4,3.9,kg/TJ,100.72062,kg -f8cecf70-c318-386e-9733-8a3339b8d312,SESCO,II.1.1,La Pampa,AR-L,annual,2021,gas oil combustion consumption by freight transport,25.8258,TJ,N2O,3.9,kg/TJ,100.72062,kg -b68b5340-4082-3305-9537-42be7a1ed33e,SESCO,II.1.1,La Rioja,AR-F,annual,2021,gas oil combustion consumption by freight transport,3.28692,TJ,CO2,74100.0,kg/TJ,243560.772,kg -545ac012-46dd-339f-8b2f-743feaa33a67,SESCO,II.1.1,La Rioja,AR-F,annual,2021,gas oil combustion consumption by freight transport,3.28692,TJ,CH4,3.9,kg/TJ,12.818988,kg -545ac012-46dd-339f-8b2f-743feaa33a67,SESCO,II.1.1,La Rioja,AR-F,annual,2021,gas oil combustion consumption by freight transport,3.28692,TJ,N2O,3.9,kg/TJ,12.818988,kg -995928d3-55e1-32ef-88ff-61bedef34d39,SESCO,II.1.1,Mendoza,AR-M,annual,2021,gas oil combustion consumption by freight transport,46.55868,TJ,CO2,74100.0,kg/TJ,3449998.188,kg -9459935f-13d8-3d0b-b532-f8f75b314258,SESCO,II.1.1,Mendoza,AR-M,annual,2021,gas oil combustion consumption by freight transport,46.55868,TJ,CH4,3.9,kg/TJ,181.578852,kg -9459935f-13d8-3d0b-b532-f8f75b314258,SESCO,II.1.1,Mendoza,AR-M,annual,2021,gas oil combustion consumption by freight transport,46.55868,TJ,N2O,3.9,kg/TJ,181.578852,kg -3e6793e5-3b63-39e9-9f5a-03c6489797d4,SESCO,II.1.1,Misiones,AR-N,annual,2021,gas oil combustion consumption by freight transport,102.4002,TJ,CO2,74100.0,kg/TJ,7587854.82,kg -d68925b4-68d1-334b-8524-ecca45a5261a,SESCO,II.1.1,Misiones,AR-N,annual,2021,gas oil combustion consumption by freight transport,102.4002,TJ,CH4,3.9,kg/TJ,399.36078,kg -d68925b4-68d1-334b-8524-ecca45a5261a,SESCO,II.1.1,Misiones,AR-N,annual,2021,gas oil combustion consumption by freight transport,102.4002,TJ,N2O,3.9,kg/TJ,399.36078,kg -374c5c0b-63ab-3c52-acd8-b1639f69a650,SESCO,II.1.1,Neuquén,AR-Q,annual,2021,gas oil combustion consumption by freight transport,3.17856,TJ,CO2,74100.0,kg/TJ,235531.296,kg -a5fcfe8b-3614-36fa-a714-4441399a2603,SESCO,II.1.1,Neuquén,AR-Q,annual,2021,gas oil combustion consumption by freight transport,3.17856,TJ,CH4,3.9,kg/TJ,12.396384,kg -a5fcfe8b-3614-36fa-a714-4441399a2603,SESCO,II.1.1,Neuquén,AR-Q,annual,2021,gas oil combustion consumption by freight transport,3.17856,TJ,N2O,3.9,kg/TJ,12.396384,kg -1e2d7d49-e7ac-3b94-b1e8-c8039fcb5b12,SESCO,II.1.1,Rio Negro,AR-R,annual,2021,gas oil combustion consumption by freight transport,111.17736,TJ,CO2,74100.0,kg/TJ,8238242.375999999,kg -fd07f225-e2d9-3a8e-8862-98b6cea21903,SESCO,II.1.1,Rio Negro,AR-R,annual,2021,gas oil combustion consumption by freight transport,111.17736,TJ,CH4,3.9,kg/TJ,433.59170399999994,kg -fd07f225-e2d9-3a8e-8862-98b6cea21903,SESCO,II.1.1,Rio Negro,AR-R,annual,2021,gas oil combustion consumption by freight transport,111.17736,TJ,N2O,3.9,kg/TJ,433.59170399999994,kg -d7825e1b-d587-3894-a49f-50954c914175,SESCO,II.1.1,Salta,AR-A,annual,2021,gas oil combustion consumption by freight transport,5.20128,TJ,CO2,74100.0,kg/TJ,385414.848,kg -de2dab8d-7c8e-3f14-ae39-ce804d7664e4,SESCO,II.1.1,Salta,AR-A,annual,2021,gas oil combustion consumption by freight transport,5.20128,TJ,CH4,3.9,kg/TJ,20.284992,kg -de2dab8d-7c8e-3f14-ae39-ce804d7664e4,SESCO,II.1.1,Salta,AR-A,annual,2021,gas oil combustion consumption by freight transport,5.20128,TJ,N2O,3.9,kg/TJ,20.284992,kg -3e0f075c-6159-306f-a57f-c25f6196a204,SESCO,II.1.1,San Juan,AR-J,annual,2021,gas oil combustion consumption by freight transport,7.00728,TJ,CO2,74100.0,kg/TJ,519239.448,kg -0cfc92b3-e995-339a-8340-20a4d585c4ee,SESCO,II.1.1,San Juan,AR-J,annual,2021,gas oil combustion consumption by freight transport,7.00728,TJ,CH4,3.9,kg/TJ,27.328391999999997,kg -0cfc92b3-e995-339a-8340-20a4d585c4ee,SESCO,II.1.1,San Juan,AR-J,annual,2021,gas oil combustion consumption by freight transport,7.00728,TJ,N2O,3.9,kg/TJ,27.328391999999997,kg -e0ec412a-841b-3016-969f-0621a14a1bef,SESCO,II.1.1,San Luis,AR-D,annual,2021,gas oil combustion consumption by freight transport,54.21612,TJ,CO2,74100.0,kg/TJ,4017414.4919999996,kg -922afda3-99b1-3fbc-adac-2108960bb111,SESCO,II.1.1,San Luis,AR-D,annual,2021,gas oil combustion consumption by freight transport,54.21612,TJ,CH4,3.9,kg/TJ,211.44286799999998,kg -922afda3-99b1-3fbc-adac-2108960bb111,SESCO,II.1.1,San Luis,AR-D,annual,2021,gas oil combustion consumption by freight transport,54.21612,TJ,N2O,3.9,kg/TJ,211.44286799999998,kg -1432e794-e42a-390c-be1a-7b48416b0c67,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2021,gas oil combustion consumption by freight transport,22.0332,TJ,CO2,74100.0,kg/TJ,1632660.12,kg -d508ec99-7304-3b60-83eb-188b652ce9c1,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2021,gas oil combustion consumption by freight transport,22.0332,TJ,CH4,3.9,kg/TJ,85.92948,kg -d508ec99-7304-3b60-83eb-188b652ce9c1,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2021,gas oil combustion consumption by freight transport,22.0332,TJ,N2O,3.9,kg/TJ,85.92948,kg -e79dacc6-1410-30e5-916b-aafc666c165f,SESCO,II.1.1,Santa Fe,AR-S,annual,2021,gas oil combustion consumption by freight transport,406.49448,TJ,CO2,74100.0,kg/TJ,30121240.968000002,kg -4bda5d89-f9e0-3de9-856d-1808a9676af2,SESCO,II.1.1,Santa Fe,AR-S,annual,2021,gas oil combustion consumption by freight transport,406.49448,TJ,CH4,3.9,kg/TJ,1585.328472,kg -4bda5d89-f9e0-3de9-856d-1808a9676af2,SESCO,II.1.1,Santa Fe,AR-S,annual,2021,gas oil combustion consumption by freight transport,406.49448,TJ,N2O,3.9,kg/TJ,1585.328472,kg -a572d272-7275-3058-b45c-ec9b6f154753,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2021,gas oil combustion consumption by freight transport,87.01308,TJ,CO2,74100.0,kg/TJ,6447669.228,kg -d5f65551-9c95-31d0-a1d8-8a0c90f8ea03,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2021,gas oil combustion consumption by freight transport,87.01308,TJ,CH4,3.9,kg/TJ,339.351012,kg -d5f65551-9c95-31d0-a1d8-8a0c90f8ea03,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2021,gas oil combustion consumption by freight transport,87.01308,TJ,N2O,3.9,kg/TJ,339.351012,kg -ad3448c7-13f8-36e0-aa6e-b56f7f51803f,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2021,gas oil combustion consumption by freight transport,4.65948,TJ,CO2,74100.0,kg/TJ,345267.468,kg -5d24e4c0-8f40-3453-a152-756dac7739f2,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2021,gas oil combustion consumption by freight transport,4.65948,TJ,CH4,3.9,kg/TJ,18.171972,kg -5d24e4c0-8f40-3453-a152-756dac7739f2,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2021,gas oil combustion consumption by freight transport,4.65948,TJ,N2O,3.9,kg/TJ,18.171972,kg -0c25fc53-9d1a-3ffa-984d-06a58e1f8ddd,SESCO,II.1.1,Tucuman,AR-T,annual,2021,gas oil combustion consumption by freight transport,59.85084,TJ,CO2,74100.0,kg/TJ,4434947.244,kg -e65caaa0-78f1-31bb-8efd-bfcac8d1b8a8,SESCO,II.1.1,Tucuman,AR-T,annual,2021,gas oil combustion consumption by freight transport,59.85084,TJ,CH4,3.9,kg/TJ,233.418276,kg -e65caaa0-78f1-31bb-8efd-bfcac8d1b8a8,SESCO,II.1.1,Tucuman,AR-T,annual,2021,gas oil combustion consumption by freight transport,59.85084,TJ,N2O,3.9,kg/TJ,233.418276,kg -b6977628-f9c4-32ec-b689-5e497b6ce537,SESCO,II.1.1,Buenos Aires,AR-B,annual,2021,gas oil combustion consumption by freight transport,118.36524,TJ,CO2,74100.0,kg/TJ,8770864.284,kg -8f5d2284-e28c-3b65-ae8c-9c3a824e2940,SESCO,II.1.1,Buenos Aires,AR-B,annual,2021,gas oil combustion consumption by freight transport,118.36524,TJ,CH4,3.9,kg/TJ,461.624436,kg -8f5d2284-e28c-3b65-ae8c-9c3a824e2940,SESCO,II.1.1,Buenos Aires,AR-B,annual,2021,gas oil combustion consumption by freight transport,118.36524,TJ,N2O,3.9,kg/TJ,461.624436,kg -a0e557cb-9b38-39d3-bce0-92119e938ef4,SESCO,II.1.1,Capital Federal,AR-C,annual,2021,gas oil combustion consumption by freight transport,23.18904,TJ,CO2,74100.0,kg/TJ,1718307.8639999998,kg -6122e40e-6082-30a5-a7ac-11b473246e0e,SESCO,II.1.1,Capital Federal,AR-C,annual,2021,gas oil combustion consumption by freight transport,23.18904,TJ,CH4,3.9,kg/TJ,90.43725599999999,kg -6122e40e-6082-30a5-a7ac-11b473246e0e,SESCO,II.1.1,Capital Federal,AR-C,annual,2021,gas oil combustion consumption by freight transport,23.18904,TJ,N2O,3.9,kg/TJ,90.43725599999999,kg -85a645da-c038-35a6-a5fd-0ac40b2ec5f6,SESCO,II.1.1,Catamarca,AR-K,annual,2021,gas oil combustion consumption by freight transport,0.39732,TJ,CO2,74100.0,kg/TJ,29441.412,kg -476f10f9-2789-32e6-bbd6-1a673558b1f6,SESCO,II.1.1,Catamarca,AR-K,annual,2021,gas oil combustion consumption by freight transport,0.39732,TJ,CH4,3.9,kg/TJ,1.549548,kg -476f10f9-2789-32e6-bbd6-1a673558b1f6,SESCO,II.1.1,Catamarca,AR-K,annual,2021,gas oil combustion consumption by freight transport,0.39732,TJ,N2O,3.9,kg/TJ,1.549548,kg -2e62f7dd-9a5b-3bfe-a716-917ee4814950,SESCO,II.1.1,Chaco,AR-H,annual,2021,gas oil combustion consumption by freight transport,3.64812,TJ,CO2,74100.0,kg/TJ,270325.692,kg -e41c5d58-702e-34b0-a689-7d8fbe158ba9,SESCO,II.1.1,Chaco,AR-H,annual,2021,gas oil combustion consumption by freight transport,3.64812,TJ,CH4,3.9,kg/TJ,14.227668,kg -e41c5d58-702e-34b0-a689-7d8fbe158ba9,SESCO,II.1.1,Chaco,AR-H,annual,2021,gas oil combustion consumption by freight transport,3.64812,TJ,N2O,3.9,kg/TJ,14.227668,kg -126aa26c-a4ad-335e-ac57-74323834a81e,SESCO,II.1.1,Chubut,AR-U,annual,2021,gas oil combustion consumption by freight transport,8.993879999999999,TJ,CO2,74100.0,kg/TJ,666446.5079999999,kg -7e64a6a2-b7f7-349f-ba93-b09ac893117d,SESCO,II.1.1,Chubut,AR-U,annual,2021,gas oil combustion consumption by freight transport,8.993879999999999,TJ,CH4,3.9,kg/TJ,35.076131999999994,kg -7e64a6a2-b7f7-349f-ba93-b09ac893117d,SESCO,II.1.1,Chubut,AR-U,annual,2021,gas oil combustion consumption by freight transport,8.993879999999999,TJ,N2O,3.9,kg/TJ,35.076131999999994,kg -0e85c3a1-2b01-3082-973b-e99f26225018,SESCO,II.1.1,Corrientes,AR-W,annual,2021,gas oil combustion consumption by freight transport,17.77104,TJ,CO2,74100.0,kg/TJ,1316834.064,kg -a12b0023-41c1-302b-b8e2-5b09c7684f91,SESCO,II.1.1,Corrientes,AR-W,annual,2021,gas oil combustion consumption by freight transport,17.77104,TJ,CH4,3.9,kg/TJ,69.30705599999999,kg -a12b0023-41c1-302b-b8e2-5b09c7684f91,SESCO,II.1.1,Corrientes,AR-W,annual,2021,gas oil combustion consumption by freight transport,17.77104,TJ,N2O,3.9,kg/TJ,69.30705599999999,kg -0790802a-ab5d-3aff-a109-31e441ec2e5a,SESCO,II.1.1,Córdoba,AR-X,annual,2021,gas oil combustion consumption by freight transport,12.53364,TJ,CO2,74100.0,kg/TJ,928742.724,kg -8c9d7ca9-7845-3429-adb4-ff78f13834e4,SESCO,II.1.1,Córdoba,AR-X,annual,2021,gas oil combustion consumption by freight transport,12.53364,TJ,CH4,3.9,kg/TJ,48.881196,kg -8c9d7ca9-7845-3429-adb4-ff78f13834e4,SESCO,II.1.1,Córdoba,AR-X,annual,2021,gas oil combustion consumption by freight transport,12.53364,TJ,N2O,3.9,kg/TJ,48.881196,kg -b228d64b-30cd-3d4e-9717-f5c62d654fed,SESCO,II.1.1,Entre Rios,AR-E,annual,2021,gas oil combustion consumption by freight transport,10.14972,TJ,CO2,74100.0,kg/TJ,752094.252,kg -fb0f93b0-51f6-38eb-a02d-f6726519d7fe,SESCO,II.1.1,Entre Rios,AR-E,annual,2021,gas oil combustion consumption by freight transport,10.14972,TJ,CH4,3.9,kg/TJ,39.583908,kg -fb0f93b0-51f6-38eb-a02d-f6726519d7fe,SESCO,II.1.1,Entre Rios,AR-E,annual,2021,gas oil combustion consumption by freight transport,10.14972,TJ,N2O,3.9,kg/TJ,39.583908,kg -2381488a-5231-3b02-baa5-49dae9541b34,SESCO,II.1.1,Formosa,AR-P,annual,2021,gas oil combustion consumption by freight transport,2.6367599999999998,TJ,CO2,74100.0,kg/TJ,195383.916,kg -10a0b47c-6e8d-37e5-bc1b-d6a8a0ad8988,SESCO,II.1.1,Formosa,AR-P,annual,2021,gas oil combustion consumption by freight transport,2.6367599999999998,TJ,CH4,3.9,kg/TJ,10.283363999999999,kg -10a0b47c-6e8d-37e5-bc1b-d6a8a0ad8988,SESCO,II.1.1,Formosa,AR-P,annual,2021,gas oil combustion consumption by freight transport,2.6367599999999998,TJ,N2O,3.9,kg/TJ,10.283363999999999,kg -700975ce-d717-3f81-9056-920f8c4fd565,SESCO,II.1.1,Jujuy,AR-Y,annual,2021,gas oil combustion consumption by freight transport,2.23944,TJ,CO2,74100.0,kg/TJ,165942.50400000002,kg -f616c99f-a5ae-3ec8-85fa-411994b7a43e,SESCO,II.1.1,Jujuy,AR-Y,annual,2021,gas oil combustion consumption by freight transport,2.23944,TJ,CH4,3.9,kg/TJ,8.733816000000001,kg -f616c99f-a5ae-3ec8-85fa-411994b7a43e,SESCO,II.1.1,Jujuy,AR-Y,annual,2021,gas oil combustion consumption by freight transport,2.23944,TJ,N2O,3.9,kg/TJ,8.733816000000001,kg -de3dc1f3-0c65-3fa4-b192-da0daf9a68b3,SESCO,II.1.1,La Pampa,AR-L,annual,2021,gas oil combustion consumption by freight transport,1.48092,TJ,CO2,74100.0,kg/TJ,109736.172,kg -15f148aa-11ce-34ba-896c-642f48dfd274,SESCO,II.1.1,La Pampa,AR-L,annual,2021,gas oil combustion consumption by freight transport,1.48092,TJ,CH4,3.9,kg/TJ,5.775588,kg -15f148aa-11ce-34ba-896c-642f48dfd274,SESCO,II.1.1,La Pampa,AR-L,annual,2021,gas oil combustion consumption by freight transport,1.48092,TJ,N2O,3.9,kg/TJ,5.775588,kg -49db72b4-e7a3-3d71-add8-5fa07912b723,SESCO,II.1.1,La Rioja,AR-F,annual,2021,gas oil combustion consumption by freight transport,0.25284,TJ,CO2,74100.0,kg/TJ,18735.444,kg -6abff1db-b6ac-3845-aef3-4514f1a3fdaf,SESCO,II.1.1,La Rioja,AR-F,annual,2021,gas oil combustion consumption by freight transport,0.25284,TJ,CH4,3.9,kg/TJ,0.9860760000000001,kg -6abff1db-b6ac-3845-aef3-4514f1a3fdaf,SESCO,II.1.1,La Rioja,AR-F,annual,2021,gas oil combustion consumption by freight transport,0.25284,TJ,N2O,3.9,kg/TJ,0.9860760000000001,kg -c780afc5-1c5b-3300-878f-248c830393d8,SESCO,II.1.1,Mendoza,AR-M,annual,2021,gas oil combustion consumption by freight transport,9.78852,TJ,CO2,74100.0,kg/TJ,725329.332,kg -6b79507b-a7c3-300f-9863-e26e6aeea6b8,SESCO,II.1.1,Mendoza,AR-M,annual,2021,gas oil combustion consumption by freight transport,9.78852,TJ,CH4,3.9,kg/TJ,38.175228,kg -6b79507b-a7c3-300f-9863-e26e6aeea6b8,SESCO,II.1.1,Mendoza,AR-M,annual,2021,gas oil combustion consumption by freight transport,9.78852,TJ,N2O,3.9,kg/TJ,38.175228,kg -d2695a60-f5b2-31b9-9061-a352b1c3941b,SESCO,II.1.1,Misiones,AR-N,annual,2021,gas oil combustion consumption by freight transport,1.30032,TJ,CO2,74100.0,kg/TJ,96353.712,kg -f7dba43f-d130-3573-b2e3-c4ad187aa377,SESCO,II.1.1,Misiones,AR-N,annual,2021,gas oil combustion consumption by freight transport,1.30032,TJ,CH4,3.9,kg/TJ,5.071248,kg -f7dba43f-d130-3573-b2e3-c4ad187aa377,SESCO,II.1.1,Misiones,AR-N,annual,2021,gas oil combustion consumption by freight transport,1.30032,TJ,N2O,3.9,kg/TJ,5.071248,kg -42bc86c0-3e60-38cf-9617-d938044bbad4,SESCO,II.1.1,Neuquén,AR-Q,annual,2021,gas oil combustion consumption by freight transport,0.86688,TJ,CO2,74100.0,kg/TJ,64235.808,kg -0a85f544-5eb4-33da-83e1-c902397dc29e,SESCO,II.1.1,Neuquén,AR-Q,annual,2021,gas oil combustion consumption by freight transport,0.86688,TJ,CH4,3.9,kg/TJ,3.380832,kg -0a85f544-5eb4-33da-83e1-c902397dc29e,SESCO,II.1.1,Neuquén,AR-Q,annual,2021,gas oil combustion consumption by freight transport,0.86688,TJ,N2O,3.9,kg/TJ,3.380832,kg -c519f432-0620-3e3b-a485-29d27d241294,SESCO,II.1.1,Rio Negro,AR-R,annual,2021,gas oil combustion consumption by freight transport,9.49956,TJ,CO2,74100.0,kg/TJ,703917.3960000001,kg -69a65788-6e39-3053-9b40-21e1899353c7,SESCO,II.1.1,Rio Negro,AR-R,annual,2021,gas oil combustion consumption by freight transport,9.49956,TJ,CH4,3.9,kg/TJ,37.048284,kg -69a65788-6e39-3053-9b40-21e1899353c7,SESCO,II.1.1,Rio Negro,AR-R,annual,2021,gas oil combustion consumption by freight transport,9.49956,TJ,N2O,3.9,kg/TJ,37.048284,kg -d4c0b49e-624e-3128-b009-3fe999b9a7f7,SESCO,II.1.1,Salta,AR-A,annual,2021,gas oil combustion consumption by freight transport,1.33644,TJ,CO2,74100.0,kg/TJ,99030.20400000001,kg -ac26433e-cbbc-3ff6-95a7-3c2e79aba431,SESCO,II.1.1,Salta,AR-A,annual,2021,gas oil combustion consumption by freight transport,1.33644,TJ,CH4,3.9,kg/TJ,5.212116,kg -ac26433e-cbbc-3ff6-95a7-3c2e79aba431,SESCO,II.1.1,Salta,AR-A,annual,2021,gas oil combustion consumption by freight transport,1.33644,TJ,N2O,3.9,kg/TJ,5.212116,kg -a36341f0-2deb-3be0-be3c-127b591e8f2e,SESCO,II.1.1,San Juan,AR-J,annual,2021,gas oil combustion consumption by freight transport,0.07224,TJ,CO2,74100.0,kg/TJ,5352.9839999999995,kg -f0c602d8-00e1-34de-9792-455335f749d0,SESCO,II.1.1,San Juan,AR-J,annual,2021,gas oil combustion consumption by freight transport,0.07224,TJ,CH4,3.9,kg/TJ,0.281736,kg -f0c602d8-00e1-34de-9792-455335f749d0,SESCO,II.1.1,San Juan,AR-J,annual,2021,gas oil combustion consumption by freight transport,0.07224,TJ,N2O,3.9,kg/TJ,0.281736,kg -03885528-4701-3ffb-a2f1-8723258d00bf,SESCO,II.1.1,San Luis,AR-D,annual,2021,gas oil combustion consumption by freight transport,3.612,TJ,CO2,74100.0,kg/TJ,267649.2,kg -5ca3cb4a-8e5a-3ccf-95f1-9e7e07611e7f,SESCO,II.1.1,San Luis,AR-D,annual,2021,gas oil combustion consumption by freight transport,3.612,TJ,CH4,3.9,kg/TJ,14.0868,kg -5ca3cb4a-8e5a-3ccf-95f1-9e7e07611e7f,SESCO,II.1.1,San Luis,AR-D,annual,2021,gas oil combustion consumption by freight transport,3.612,TJ,N2O,3.9,kg/TJ,14.0868,kg -1cbb3439-ec07-3e49-ad66-48961cb7f975,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2021,gas oil combustion consumption by freight transport,2.60064,TJ,CO2,74100.0,kg/TJ,192707.424,kg -b69bcf9b-af15-32f2-84a5-4b0a0f1b4e05,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2021,gas oil combustion consumption by freight transport,2.60064,TJ,CH4,3.9,kg/TJ,10.142496,kg -b69bcf9b-af15-32f2-84a5-4b0a0f1b4e05,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2021,gas oil combustion consumption by freight transport,2.60064,TJ,N2O,3.9,kg/TJ,10.142496,kg -ba96ed6d-e178-3e71-aaec-43acd23151be,SESCO,II.1.1,Santa Fe,AR-S,annual,2021,gas oil combustion consumption by freight transport,25.42848,TJ,CO2,74100.0,kg/TJ,1884250.368,kg -41b8a768-fabe-34e2-b206-94ab4ba0ce0b,SESCO,II.1.1,Santa Fe,AR-S,annual,2021,gas oil combustion consumption by freight transport,25.42848,TJ,CH4,3.9,kg/TJ,99.171072,kg -41b8a768-fabe-34e2-b206-94ab4ba0ce0b,SESCO,II.1.1,Santa Fe,AR-S,annual,2021,gas oil combustion consumption by freight transport,25.42848,TJ,N2O,3.9,kg/TJ,99.171072,kg -a63b7ca7-32c0-3333-83bc-ca30857698a8,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2021,gas oil combustion consumption by freight transport,2.56452,TJ,CO2,74100.0,kg/TJ,190030.932,kg -bb0c6b8e-4ad9-3e10-93ed-8a5a8f89fd93,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2021,gas oil combustion consumption by freight transport,2.56452,TJ,CH4,3.9,kg/TJ,10.001628,kg -bb0c6b8e-4ad9-3e10-93ed-8a5a8f89fd93,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2021,gas oil combustion consumption by freight transport,2.56452,TJ,N2O,3.9,kg/TJ,10.001628,kg -9538ea72-cb1a-31e8-a3c1-d6e09531b470,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2021,gas oil combustion consumption by freight transport,0.07224,TJ,CO2,74100.0,kg/TJ,5352.9839999999995,kg -bac7c95d-2ce8-3ad1-87f4-8e0804123eab,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2021,gas oil combustion consumption by freight transport,0.07224,TJ,CH4,3.9,kg/TJ,0.281736,kg -bac7c95d-2ce8-3ad1-87f4-8e0804123eab,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2021,gas oil combustion consumption by freight transport,0.07224,TJ,N2O,3.9,kg/TJ,0.281736,kg -75ed60f2-2e93-3fd7-953c-b44c19f7165b,SESCO,II.1.1,Tucuman,AR-T,annual,2021,gas oil combustion consumption by freight transport,5.34576,TJ,CO2,74100.0,kg/TJ,396120.81600000005,kg -fb37fab5-91fa-3587-a816-34ff31fed34f,SESCO,II.1.1,Tucuman,AR-T,annual,2021,gas oil combustion consumption by freight transport,5.34576,TJ,CH4,3.9,kg/TJ,20.848464,kg -fb37fab5-91fa-3587-a816-34ff31fed34f,SESCO,II.1.1,Tucuman,AR-T,annual,2021,gas oil combustion consumption by freight transport,5.34576,TJ,N2O,3.9,kg/TJ,20.848464,kg -11156204-46a3-3045-908b-fc5d57bc67ea,SESCO,II.1.1,Buenos Aires,AR-B,annual,2021,gas oil combustion consumption by public passenger transport,966.5712,TJ,CO2,74100.0,kg/TJ,71622925.92,kg -c98f9055-4b11-384f-95be-3d935fc31bc8,SESCO,II.1.1,Buenos Aires,AR-B,annual,2021,gas oil combustion consumption by public passenger transport,966.5712,TJ,CH4,3.9,kg/TJ,3769.6276799999996,kg -c98f9055-4b11-384f-95be-3d935fc31bc8,SESCO,II.1.1,Buenos Aires,AR-B,annual,2021,gas oil combustion consumption by public passenger transport,966.5712,TJ,N2O,3.9,kg/TJ,3769.6276799999996,kg -cea52dde-d1c2-3836-9aa6-ae8c01ab4025,SESCO,II.1.1,Capital Federal,AR-C,annual,2021,gas oil combustion consumption by public passenger transport,577.7394,TJ,CO2,74100.0,kg/TJ,42810489.54000001,kg -420557bc-47d0-3d9c-86ac-e1882c30c651,SESCO,II.1.1,Capital Federal,AR-C,annual,2021,gas oil combustion consumption by public passenger transport,577.7394,TJ,CH4,3.9,kg/TJ,2253.18366,kg -420557bc-47d0-3d9c-86ac-e1882c30c651,SESCO,II.1.1,Capital Federal,AR-C,annual,2021,gas oil combustion consumption by public passenger transport,577.7394,TJ,N2O,3.9,kg/TJ,2253.18366,kg -231ce26e-ab5f-3097-a865-9a2889f34ebf,SESCO,II.1.1,Chaco,AR-H,annual,2021,gas oil combustion consumption by public passenger transport,49.050959999999996,TJ,CO2,74100.0,kg/TJ,3634676.136,kg -1e7bb337-4944-325d-a012-ff26fd8fdecb,SESCO,II.1.1,Chaco,AR-H,annual,2021,gas oil combustion consumption by public passenger transport,49.050959999999996,TJ,CH4,3.9,kg/TJ,191.29874399999997,kg -1e7bb337-4944-325d-a012-ff26fd8fdecb,SESCO,II.1.1,Chaco,AR-H,annual,2021,gas oil combustion consumption by public passenger transport,49.050959999999996,TJ,N2O,3.9,kg/TJ,191.29874399999997,kg -9076b835-e3db-359b-b797-9d43d096c8bb,SESCO,II.1.1,Chubut,AR-U,annual,2021,gas oil combustion consumption by public passenger transport,3.4314,TJ,CO2,74100.0,kg/TJ,254266.74,kg -ca28291c-36ba-368e-b463-c964ccd9413c,SESCO,II.1.1,Chubut,AR-U,annual,2021,gas oil combustion consumption by public passenger transport,3.4314,TJ,CH4,3.9,kg/TJ,13.38246,kg -ca28291c-36ba-368e-b463-c964ccd9413c,SESCO,II.1.1,Chubut,AR-U,annual,2021,gas oil combustion consumption by public passenger transport,3.4314,TJ,N2O,3.9,kg/TJ,13.38246,kg -e7af1dcf-ed91-3a77-a017-6ab8af74a426,SESCO,II.1.1,Corrientes,AR-W,annual,2021,gas oil combustion consumption by public passenger transport,0.18059999999999998,TJ,CO2,74100.0,kg/TJ,13382.46,kg -fc930f5e-3d0d-32fd-9b2b-4e1794e28e4b,SESCO,II.1.1,Corrientes,AR-W,annual,2021,gas oil combustion consumption by public passenger transport,0.18059999999999998,TJ,CH4,3.9,kg/TJ,0.70434,kg -fc930f5e-3d0d-32fd-9b2b-4e1794e28e4b,SESCO,II.1.1,Corrientes,AR-W,annual,2021,gas oil combustion consumption by public passenger transport,0.18059999999999998,TJ,N2O,3.9,kg/TJ,0.70434,kg -3f2461c7-c780-372b-a584-c53efdab2fd6,SESCO,II.1.1,Córdoba,AR-X,annual,2021,gas oil combustion consumption by public passenger transport,143.32416,TJ,CO2,74100.0,kg/TJ,10620320.256000001,kg -cf1b67f4-6353-3a71-bc05-0bbe01bdca74,SESCO,II.1.1,Córdoba,AR-X,annual,2021,gas oil combustion consumption by public passenger transport,143.32416,TJ,CH4,3.9,kg/TJ,558.9642240000001,kg -cf1b67f4-6353-3a71-bc05-0bbe01bdca74,SESCO,II.1.1,Córdoba,AR-X,annual,2021,gas oil combustion consumption by public passenger transport,143.32416,TJ,N2O,3.9,kg/TJ,558.9642240000001,kg -29913773-8fc0-3766-8b66-0c5969e490d3,SESCO,II.1.1,Entre Rios,AR-E,annual,2021,gas oil combustion consumption by public passenger transport,26.62044,TJ,CO2,74100.0,kg/TJ,1972574.6039999998,kg -91727537-6ce1-3153-9b8f-28b4b2301aef,SESCO,II.1.1,Entre Rios,AR-E,annual,2021,gas oil combustion consumption by public passenger transport,26.62044,TJ,CH4,3.9,kg/TJ,103.81971599999999,kg -91727537-6ce1-3153-9b8f-28b4b2301aef,SESCO,II.1.1,Entre Rios,AR-E,annual,2021,gas oil combustion consumption by public passenger transport,26.62044,TJ,N2O,3.9,kg/TJ,103.81971599999999,kg -25c0bb22-0c7d-36b9-8d14-6bb55b21688b,SESCO,II.1.1,Formosa,AR-P,annual,2021,gas oil combustion consumption by public passenger transport,0.03612,TJ,CO2,74100.0,kg/TJ,2676.4919999999997,kg -267aa4a1-dffe-3625-b49d-fa8efdcaa0a5,SESCO,II.1.1,Formosa,AR-P,annual,2021,gas oil combustion consumption by public passenger transport,0.03612,TJ,CH4,3.9,kg/TJ,0.140868,kg -267aa4a1-dffe-3625-b49d-fa8efdcaa0a5,SESCO,II.1.1,Formosa,AR-P,annual,2021,gas oil combustion consumption by public passenger transport,0.03612,TJ,N2O,3.9,kg/TJ,0.140868,kg -3ff4451d-7617-3b97-a080-eaa02a384379,SESCO,II.1.1,Jujuy,AR-Y,annual,2021,gas oil combustion consumption by public passenger transport,0.03612,TJ,CO2,74100.0,kg/TJ,2676.4919999999997,kg -6f4c9fad-dbde-38f3-a1fc-be6512e67ea9,SESCO,II.1.1,Jujuy,AR-Y,annual,2021,gas oil combustion consumption by public passenger transport,0.03612,TJ,CH4,3.9,kg/TJ,0.140868,kg -6f4c9fad-dbde-38f3-a1fc-be6512e67ea9,SESCO,II.1.1,Jujuy,AR-Y,annual,2021,gas oil combustion consumption by public passenger transport,0.03612,TJ,N2O,3.9,kg/TJ,0.140868,kg -f13b35ca-684b-3109-ab9e-a63adb8f1c7d,SESCO,II.1.1,La Pampa,AR-L,annual,2021,gas oil combustion consumption by public passenger transport,0.8307599999999999,TJ,CO2,74100.0,kg/TJ,61559.316,kg -300d52d1-a3e3-3446-bff5-704258a12062,SESCO,II.1.1,La Pampa,AR-L,annual,2021,gas oil combustion consumption by public passenger transport,0.8307599999999999,TJ,CH4,3.9,kg/TJ,3.2399639999999996,kg -300d52d1-a3e3-3446-bff5-704258a12062,SESCO,II.1.1,La Pampa,AR-L,annual,2021,gas oil combustion consumption by public passenger transport,0.8307599999999999,TJ,N2O,3.9,kg/TJ,3.2399639999999996,kg -f07fdaaa-d3a3-3e32-b82c-905a16d38e07,SESCO,II.1.1,Mendoza,AR-M,annual,2021,gas oil combustion consumption by public passenger transport,2.78124,TJ,CO2,74100.0,kg/TJ,206089.884,kg -1f987115-38a2-3436-b857-e6f1fb700dbc,SESCO,II.1.1,Mendoza,AR-M,annual,2021,gas oil combustion consumption by public passenger transport,2.78124,TJ,CH4,3.9,kg/TJ,10.846836,kg -1f987115-38a2-3436-b857-e6f1fb700dbc,SESCO,II.1.1,Mendoza,AR-M,annual,2021,gas oil combustion consumption by public passenger transport,2.78124,TJ,N2O,3.9,kg/TJ,10.846836,kg -83a040ff-cde0-351b-84ce-aeea5b3131e6,SESCO,II.1.1,Misiones,AR-N,annual,2021,gas oil combustion consumption by public passenger transport,83.76228,TJ,CO2,74100.0,kg/TJ,6206784.948,kg -20186414-5a58-3f9f-8543-79800b57e775,SESCO,II.1.1,Misiones,AR-N,annual,2021,gas oil combustion consumption by public passenger transport,83.76228,TJ,CH4,3.9,kg/TJ,326.672892,kg -20186414-5a58-3f9f-8543-79800b57e775,SESCO,II.1.1,Misiones,AR-N,annual,2021,gas oil combustion consumption by public passenger transport,83.76228,TJ,N2O,3.9,kg/TJ,326.672892,kg -79aa7daa-fad2-3168-a157-127d38dcf435,SESCO,II.1.1,Neuquén,AR-Q,annual,2021,gas oil combustion consumption by public passenger transport,2.05884,TJ,CO2,74100.0,kg/TJ,152560.044,kg -bdab5e1b-a72c-3f62-8d0b-a7df665ce8de,SESCO,II.1.1,Neuquén,AR-Q,annual,2021,gas oil combustion consumption by public passenger transport,2.05884,TJ,CH4,3.9,kg/TJ,8.029475999999999,kg -bdab5e1b-a72c-3f62-8d0b-a7df665ce8de,SESCO,II.1.1,Neuquén,AR-Q,annual,2021,gas oil combustion consumption by public passenger transport,2.05884,TJ,N2O,3.9,kg/TJ,8.029475999999999,kg -7abc533f-2fe8-3dfc-b9d1-d4289d78f562,SESCO,II.1.1,Rio Negro,AR-R,annual,2021,gas oil combustion consumption by public passenger transport,4.44276,TJ,CO2,74100.0,kg/TJ,329208.516,kg -0ba59b94-185e-3f2a-b046-423567fda56e,SESCO,II.1.1,Rio Negro,AR-R,annual,2021,gas oil combustion consumption by public passenger transport,4.44276,TJ,CH4,3.9,kg/TJ,17.326763999999997,kg -0ba59b94-185e-3f2a-b046-423567fda56e,SESCO,II.1.1,Rio Negro,AR-R,annual,2021,gas oil combustion consumption by public passenger transport,4.44276,TJ,N2O,3.9,kg/TJ,17.326763999999997,kg -3214a2de-9213-3a72-a34e-8c576b781eca,SESCO,II.1.1,Salta,AR-A,annual,2021,gas oil combustion consumption by public passenger transport,149.46456,TJ,CO2,74100.0,kg/TJ,11075323.896,kg -c39ad814-2bcf-3353-a2c4-f8e69648715c,SESCO,II.1.1,Salta,AR-A,annual,2021,gas oil combustion consumption by public passenger transport,149.46456,TJ,CH4,3.9,kg/TJ,582.911784,kg -c39ad814-2bcf-3353-a2c4-f8e69648715c,SESCO,II.1.1,Salta,AR-A,annual,2021,gas oil combustion consumption by public passenger transport,149.46456,TJ,N2O,3.9,kg/TJ,582.911784,kg -3e15c984-2e8f-3f8d-94e0-6e21824cb623,SESCO,II.1.1,San Luis,AR-D,annual,2021,gas oil combustion consumption by public passenger transport,0.36119999999999997,TJ,CO2,74100.0,kg/TJ,26764.92,kg -166bcf8f-cfca-3d06-a441-bf9b914fed2a,SESCO,II.1.1,San Luis,AR-D,annual,2021,gas oil combustion consumption by public passenger transport,0.36119999999999997,TJ,CH4,3.9,kg/TJ,1.40868,kg -166bcf8f-cfca-3d06-a441-bf9b914fed2a,SESCO,II.1.1,San Luis,AR-D,annual,2021,gas oil combustion consumption by public passenger transport,0.36119999999999997,TJ,N2O,3.9,kg/TJ,1.40868,kg -0a4f77ce-5e6c-3e44-ae37-2d8392a0fda4,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2021,gas oil combustion consumption by public passenger transport,0.03612,TJ,CO2,74100.0,kg/TJ,2676.4919999999997,kg -f44d0187-48a6-3dee-8e71-89c418ca2cbb,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2021,gas oil combustion consumption by public passenger transport,0.03612,TJ,CH4,3.9,kg/TJ,0.140868,kg -f44d0187-48a6-3dee-8e71-89c418ca2cbb,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2021,gas oil combustion consumption by public passenger transport,0.03612,TJ,N2O,3.9,kg/TJ,0.140868,kg -6012a0aa-e725-3ab7-ab2b-8a014c169ea2,SESCO,II.1.1,Santa Fe,AR-S,annual,2021,gas oil combustion consumption by public passenger transport,529.59144,TJ,CO2,74100.0,kg/TJ,39242725.704,kg -44f200e5-44d8-34c9-8bcb-a6458d7b5f84,SESCO,II.1.1,Santa Fe,AR-S,annual,2021,gas oil combustion consumption by public passenger transport,529.59144,TJ,CH4,3.9,kg/TJ,2065.406616,kg -44f200e5-44d8-34c9-8bcb-a6458d7b5f84,SESCO,II.1.1,Santa Fe,AR-S,annual,2021,gas oil combustion consumption by public passenger transport,529.59144,TJ,N2O,3.9,kg/TJ,2065.406616,kg -d42c0fbe-5b51-3d52-ad8f-0379dd78b030,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2021,gas oil combustion consumption by public passenger transport,0.7223999999999999,TJ,CO2,74100.0,kg/TJ,53529.84,kg -bd845e7a-2cf6-3947-82b8-0b31867ec591,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2021,gas oil combustion consumption by public passenger transport,0.7223999999999999,TJ,CH4,3.9,kg/TJ,2.81736,kg -bd845e7a-2cf6-3947-82b8-0b31867ec591,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2021,gas oil combustion consumption by public passenger transport,0.7223999999999999,TJ,N2O,3.9,kg/TJ,2.81736,kg -ce77fec4-b161-3bba-815b-89d29c325fa0,SESCO,II.1.1,Tucuman,AR-T,annual,2021,gas oil combustion consumption by public passenger transport,46.45032,TJ,CO2,74100.0,kg/TJ,3441968.712,kg -ea9def43-1ebf-3192-bbf1-945cdbe7d5ea,SESCO,II.1.1,Tucuman,AR-T,annual,2021,gas oil combustion consumption by public passenger transport,46.45032,TJ,CH4,3.9,kg/TJ,181.15624799999998,kg -ea9def43-1ebf-3192-bbf1-945cdbe7d5ea,SESCO,II.1.1,Tucuman,AR-T,annual,2021,gas oil combustion consumption by public passenger transport,46.45032,TJ,N2O,3.9,kg/TJ,181.15624799999998,kg -04233f7c-5534-35b6-b3fb-544d5fdef9fd,SESCO,II.1.1,Buenos Aires,AR-B,annual,2021,gas oil combustion consumption by public passenger transport,563.6526,TJ,CO2,74100.0,kg/TJ,41766657.660000004,kg -a48848df-40c1-32c4-a629-549b15ab122d,SESCO,II.1.1,Buenos Aires,AR-B,annual,2021,gas oil combustion consumption by public passenger transport,563.6526,TJ,CH4,3.9,kg/TJ,2198.24514,kg -a48848df-40c1-32c4-a629-549b15ab122d,SESCO,II.1.1,Buenos Aires,AR-B,annual,2021,gas oil combustion consumption by public passenger transport,563.6526,TJ,N2O,3.9,kg/TJ,2198.24514,kg -670031d4-4b26-30d2-baa7-f1853a4087d6,SESCO,II.1.1,Capital Federal,AR-C,annual,2021,gas oil combustion consumption by public passenger transport,325.87464,TJ,CO2,74100.0,kg/TJ,24147310.824,kg -2583b3dc-24f5-39a3-bab1-9473987c0d4d,SESCO,II.1.1,Capital Federal,AR-C,annual,2021,gas oil combustion consumption by public passenger transport,325.87464,TJ,CH4,3.9,kg/TJ,1270.911096,kg -2583b3dc-24f5-39a3-bab1-9473987c0d4d,SESCO,II.1.1,Capital Federal,AR-C,annual,2021,gas oil combustion consumption by public passenger transport,325.87464,TJ,N2O,3.9,kg/TJ,1270.911096,kg -ea6544e9-3324-3421-8e1c-8331375dfc2f,SESCO,II.1.1,Chaco,AR-H,annual,2021,gas oil combustion consumption by public passenger transport,0.28896,TJ,CO2,74100.0,kg/TJ,21411.935999999998,kg -004e9435-b770-35ff-b69a-669eb91a2ff9,SESCO,II.1.1,Chaco,AR-H,annual,2021,gas oil combustion consumption by public passenger transport,0.28896,TJ,CH4,3.9,kg/TJ,1.126944,kg -004e9435-b770-35ff-b69a-669eb91a2ff9,SESCO,II.1.1,Chaco,AR-H,annual,2021,gas oil combustion consumption by public passenger transport,0.28896,TJ,N2O,3.9,kg/TJ,1.126944,kg -0354494c-5c8c-3661-957c-252edf68e61f,SESCO,II.1.1,Corrientes,AR-W,annual,2021,gas oil combustion consumption by public passenger transport,0.25284,TJ,CO2,74100.0,kg/TJ,18735.444,kg -84fe2139-6d90-3674-99aa-dc1595dbd8cd,SESCO,II.1.1,Corrientes,AR-W,annual,2021,gas oil combustion consumption by public passenger transport,0.25284,TJ,CH4,3.9,kg/TJ,0.9860760000000001,kg -84fe2139-6d90-3674-99aa-dc1595dbd8cd,SESCO,II.1.1,Corrientes,AR-W,annual,2021,gas oil combustion consumption by public passenger transport,0.25284,TJ,N2O,3.9,kg/TJ,0.9860760000000001,kg -a53e937c-d3c9-3f1b-9015-eeaf84540e7e,SESCO,II.1.1,Córdoba,AR-X,annual,2021,gas oil combustion consumption by public passenger transport,0.97524,TJ,CO2,74100.0,kg/TJ,72265.284,kg -55880b0e-98a4-3a9f-9763-0855eaed1431,SESCO,II.1.1,Córdoba,AR-X,annual,2021,gas oil combustion consumption by public passenger transport,0.97524,TJ,CH4,3.9,kg/TJ,3.803436,kg -55880b0e-98a4-3a9f-9763-0855eaed1431,SESCO,II.1.1,Córdoba,AR-X,annual,2021,gas oil combustion consumption by public passenger transport,0.97524,TJ,N2O,3.9,kg/TJ,3.803436,kg -197cece6-b538-3786-910b-03c87e2380c1,SESCO,II.1.1,Entre Rios,AR-E,annual,2021,gas oil combustion consumption by public passenger transport,0.28896,TJ,CO2,74100.0,kg/TJ,21411.935999999998,kg -d69f8a4b-d332-390d-8aa2-c4247d0ee208,SESCO,II.1.1,Entre Rios,AR-E,annual,2021,gas oil combustion consumption by public passenger transport,0.28896,TJ,CH4,3.9,kg/TJ,1.126944,kg -d69f8a4b-d332-390d-8aa2-c4247d0ee208,SESCO,II.1.1,Entre Rios,AR-E,annual,2021,gas oil combustion consumption by public passenger transport,0.28896,TJ,N2O,3.9,kg/TJ,1.126944,kg -c2612667-eac5-3757-9219-dce0c9e1e3b5,SESCO,II.1.1,La Pampa,AR-L,annual,2021,gas oil combustion consumption by public passenger transport,0.10836,TJ,CO2,74100.0,kg/TJ,8029.476,kg -2d68e128-51fd-370c-b856-57439a5cec48,SESCO,II.1.1,La Pampa,AR-L,annual,2021,gas oil combustion consumption by public passenger transport,0.10836,TJ,CH4,3.9,kg/TJ,0.422604,kg -2d68e128-51fd-370c-b856-57439a5cec48,SESCO,II.1.1,La Pampa,AR-L,annual,2021,gas oil combustion consumption by public passenger transport,0.10836,TJ,N2O,3.9,kg/TJ,0.422604,kg -28a6405b-b0d8-38e6-98eb-1d584c0c0253,SESCO,II.1.1,Mendoza,AR-M,annual,2021,gas oil combustion consumption by public passenger transport,0.07224,TJ,CO2,74100.0,kg/TJ,5352.9839999999995,kg -5f853727-cbde-3135-b2ea-4cc67abc8ce8,SESCO,II.1.1,Mendoza,AR-M,annual,2021,gas oil combustion consumption by public passenger transport,0.07224,TJ,CH4,3.9,kg/TJ,0.281736,kg -5f853727-cbde-3135-b2ea-4cc67abc8ce8,SESCO,II.1.1,Mendoza,AR-M,annual,2021,gas oil combustion consumption by public passenger transport,0.07224,TJ,N2O,3.9,kg/TJ,0.281736,kg -e52556cf-ced2-3a14-9e83-3e0f5ac42e6a,SESCO,II.1.1,Misiones,AR-N,annual,2021,gas oil combustion consumption by public passenger transport,3.21468,TJ,CO2,74100.0,kg/TJ,238207.788,kg -10ba94dd-edb6-3e61-93ff-0b70945e8d94,SESCO,II.1.1,Misiones,AR-N,annual,2021,gas oil combustion consumption by public passenger transport,3.21468,TJ,CH4,3.9,kg/TJ,12.537252,kg -10ba94dd-edb6-3e61-93ff-0b70945e8d94,SESCO,II.1.1,Misiones,AR-N,annual,2021,gas oil combustion consumption by public passenger transport,3.21468,TJ,N2O,3.9,kg/TJ,12.537252,kg -80cbf86c-f8e2-306d-96f2-3eca6207b06f,SESCO,II.1.1,Neuquén,AR-Q,annual,2021,gas oil combustion consumption by public passenger transport,14.6286,TJ,CO2,74100.0,kg/TJ,1083979.26,kg -970cd3f4-12b1-3b50-8a99-b2ab46033cb2,SESCO,II.1.1,Neuquén,AR-Q,annual,2021,gas oil combustion consumption by public passenger transport,14.6286,TJ,CH4,3.9,kg/TJ,57.05154,kg -970cd3f4-12b1-3b50-8a99-b2ab46033cb2,SESCO,II.1.1,Neuquén,AR-Q,annual,2021,gas oil combustion consumption by public passenger transport,14.6286,TJ,N2O,3.9,kg/TJ,57.05154,kg -5b241c06-e142-3f8b-9438-937e22fa5b3c,SESCO,II.1.1,Rio Negro,AR-R,annual,2021,gas oil combustion consumption by public passenger transport,5.56248,TJ,CO2,74100.0,kg/TJ,412179.768,kg -75603481-3ce0-3882-adeb-2f27fb08bd21,SESCO,II.1.1,Rio Negro,AR-R,annual,2021,gas oil combustion consumption by public passenger transport,5.56248,TJ,CH4,3.9,kg/TJ,21.693672,kg -75603481-3ce0-3882-adeb-2f27fb08bd21,SESCO,II.1.1,Rio Negro,AR-R,annual,2021,gas oil combustion consumption by public passenger transport,5.56248,TJ,N2O,3.9,kg/TJ,21.693672,kg -212bd55f-12db-3fb7-bc78-d29ed40064a0,SESCO,II.1.1,Salta,AR-A,annual,2021,gas oil combustion consumption by public passenger transport,0.07224,TJ,CO2,74100.0,kg/TJ,5352.9839999999995,kg -befcb5bb-3354-3370-890f-fd6c6d7ef843,SESCO,II.1.1,Salta,AR-A,annual,2021,gas oil combustion consumption by public passenger transport,0.07224,TJ,CH4,3.9,kg/TJ,0.281736,kg -befcb5bb-3354-3370-890f-fd6c6d7ef843,SESCO,II.1.1,Salta,AR-A,annual,2021,gas oil combustion consumption by public passenger transport,0.07224,TJ,N2O,3.9,kg/TJ,0.281736,kg -f1c36709-d37a-3179-ace9-0637f6c05a1f,SESCO,II.1.1,San Juan,AR-J,annual,2021,gas oil combustion consumption by public passenger transport,0.03612,TJ,CO2,74100.0,kg/TJ,2676.4919999999997,kg -5e76d161-edcd-3406-a470-b0dd11894374,SESCO,II.1.1,San Juan,AR-J,annual,2021,gas oil combustion consumption by public passenger transport,0.03612,TJ,CH4,3.9,kg/TJ,0.140868,kg -5e76d161-edcd-3406-a470-b0dd11894374,SESCO,II.1.1,San Juan,AR-J,annual,2021,gas oil combustion consumption by public passenger transport,0.03612,TJ,N2O,3.9,kg/TJ,0.140868,kg -0297c9e3-32c6-359f-ba87-29ec71f526ee,SESCO,II.1.1,San Luis,AR-D,annual,2021,gas oil combustion consumption by public passenger transport,0.21672,TJ,CO2,74100.0,kg/TJ,16058.952,kg -8e62f738-8bc0-344b-98ad-5c132b233668,SESCO,II.1.1,San Luis,AR-D,annual,2021,gas oil combustion consumption by public passenger transport,0.21672,TJ,CH4,3.9,kg/TJ,0.845208,kg -8e62f738-8bc0-344b-98ad-5c132b233668,SESCO,II.1.1,San Luis,AR-D,annual,2021,gas oil combustion consumption by public passenger transport,0.21672,TJ,N2O,3.9,kg/TJ,0.845208,kg -37557973-4dcd-3be6-bb8a-6a30e5ab732c,SESCO,II.1.1,Santa Fe,AR-S,annual,2021,gas oil combustion consumption by public passenger transport,85.4238,TJ,CO2,74100.0,kg/TJ,6329903.58,kg -bfb16fac-d78f-3eea-b27e-3056e473813a,SESCO,II.1.1,Santa Fe,AR-S,annual,2021,gas oil combustion consumption by public passenger transport,85.4238,TJ,CH4,3.9,kg/TJ,333.15282,kg -bfb16fac-d78f-3eea-b27e-3056e473813a,SESCO,II.1.1,Santa Fe,AR-S,annual,2021,gas oil combustion consumption by public passenger transport,85.4238,TJ,N2O,3.9,kg/TJ,333.15282,kg -ec3cc0ae-daa0-3a13-becf-cc6727f5980f,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2021,gas oil combustion consumption by public passenger transport,0.57792,TJ,CO2,74100.0,kg/TJ,42823.871999999996,kg -04d1d92f-9980-303e-874f-7ec0822d2e5a,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2021,gas oil combustion consumption by public passenger transport,0.57792,TJ,CH4,3.9,kg/TJ,2.253888,kg -04d1d92f-9980-303e-874f-7ec0822d2e5a,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2021,gas oil combustion consumption by public passenger transport,0.57792,TJ,N2O,3.9,kg/TJ,2.253888,kg -4342d217-5966-3509-9295-612f90685c55,SESCO,II.1.1,Tucuman,AR-T,annual,2021,gas oil combustion consumption by public passenger transport,0.07224,TJ,CO2,74100.0,kg/TJ,5352.9839999999995,kg -72b62858-a0a0-30c3-a79c-b52525c6f9e7,SESCO,II.1.1,Tucuman,AR-T,annual,2021,gas oil combustion consumption by public passenger transport,0.07224,TJ,CH4,3.9,kg/TJ,0.281736,kg -72b62858-a0a0-30c3-a79c-b52525c6f9e7,SESCO,II.1.1,Tucuman,AR-T,annual,2021,gas oil combustion consumption by public passenger transport,0.07224,TJ,N2O,3.9,kg/TJ,0.281736,kg -70f75f0b-506d-3a6b-9966-fd1a9c9c49ff,SESCO,II.1.1,Catamarca,AR-K,annual,2021,gas oil combustion consumption by to the public,63.0720216,TJ,CO2,74100.0,kg/TJ,4673636.80056,kg -04c447b8-7943-3744-bac4-160297c0f8e0,SESCO,II.1.1,Catamarca,AR-K,annual,2021,gas oil combustion consumption by to the public,63.0720216,TJ,CH4,3.9,kg/TJ,245.98088424,kg -04c447b8-7943-3744-bac4-160297c0f8e0,SESCO,II.1.1,Catamarca,AR-K,annual,2021,gas oil combustion consumption by to the public,63.0720216,TJ,N2O,3.9,kg/TJ,245.98088424,kg -a21deb9c-d3ac-36b7-9bc2-4db2dec061c9,SESCO,II.1.1,Chaco,AR-H,annual,2021,gas oil combustion consumption by to the public,93.906582,TJ,CO2,74100.0,kg/TJ,6958477.7262,kg -cd414641-a03f-3e07-83c2-9bd551203196,SESCO,II.1.1,Chaco,AR-H,annual,2021,gas oil combustion consumption by to the public,93.906582,TJ,CH4,3.9,kg/TJ,366.2356698,kg -cd414641-a03f-3e07-83c2-9bd551203196,SESCO,II.1.1,Chaco,AR-H,annual,2021,gas oil combustion consumption by to the public,93.906582,TJ,N2O,3.9,kg/TJ,366.2356698,kg -0807423d-d698-3c48-8a48-210ce3eb4186,SESCO,II.1.1,Jujuy,AR-Y,annual,2021,gas oil combustion consumption by to the public,612.844428,TJ,CO2,74100.0,kg/TJ,45411772.1148,kg -67e734ab-bc76-3422-868c-5e6b011648cb,SESCO,II.1.1,Jujuy,AR-Y,annual,2021,gas oil combustion consumption by to the public,612.844428,TJ,CH4,3.9,kg/TJ,2390.0932692,kg -67e734ab-bc76-3422-868c-5e6b011648cb,SESCO,II.1.1,Jujuy,AR-Y,annual,2021,gas oil combustion consumption by to the public,612.844428,TJ,N2O,3.9,kg/TJ,2390.0932692,kg -704bbeba-20df-37f4-81da-4c4a83844fd0,SESCO,II.1.1,La Rioja,AR-F,annual,2021,gas oil combustion consumption by to the public,91.4320008,TJ,CO2,74100.0,kg/TJ,6775111.25928,kg -d7de5d32-a6e4-3224-a527-9301a266f137,SESCO,II.1.1,La Rioja,AR-F,annual,2021,gas oil combustion consumption by to the public,91.4320008,TJ,CH4,3.9,kg/TJ,356.58480312,kg -d7de5d32-a6e4-3224-a527-9301a266f137,SESCO,II.1.1,La Rioja,AR-F,annual,2021,gas oil combustion consumption by to the public,91.4320008,TJ,N2O,3.9,kg/TJ,356.58480312,kg -22338981-f343-322c-bf12-15cf766fcc3a,SESCO,II.1.1,Salta,AR-A,annual,2021,gas oil combustion consumption by to the public,1670.5611972,TJ,CO2,74100.0,kg/TJ,123788584.71251999,kg -febe586b-87eb-3236-b3a7-da69a9e6835e,SESCO,II.1.1,Salta,AR-A,annual,2021,gas oil combustion consumption by to the public,1670.5611972,TJ,CH4,3.9,kg/TJ,6515.188669079999,kg -febe586b-87eb-3236-b3a7-da69a9e6835e,SESCO,II.1.1,Salta,AR-A,annual,2021,gas oil combustion consumption by to the public,1670.5611972,TJ,N2O,3.9,kg/TJ,6515.188669079999,kg -91d1e112-a2ca-3f8c-8a71-fe9881ded79a,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2021,gas oil combustion consumption by to the public,192.33033120000002,TJ,CO2,74100.0,kg/TJ,14251677.54192,kg -ac8b8cb4-7389-3f2c-b62d-73d208e9a205,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2021,gas oil combustion consumption by to the public,192.33033120000002,TJ,CH4,3.9,kg/TJ,750.08829168,kg -ac8b8cb4-7389-3f2c-b62d-73d208e9a205,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2021,gas oil combustion consumption by to the public,192.33033120000002,TJ,N2O,3.9,kg/TJ,750.08829168,kg -36309cb7-a580-3bbd-a89b-71eeb7575887,SESCO,II.1.1,Tucuman,AR-T,annual,2021,gas oil combustion consumption by to the public,1633.6303032,TJ,CO2,74100.0,kg/TJ,121052005.46712,kg -122912cd-6e49-3a4d-9a24-d01d8c76e15e,SESCO,II.1.1,Tucuman,AR-T,annual,2021,gas oil combustion consumption by to the public,1633.6303032,TJ,CH4,3.9,kg/TJ,6371.1581824800005,kg -122912cd-6e49-3a4d-9a24-d01d8c76e15e,SESCO,II.1.1,Tucuman,AR-T,annual,2021,gas oil combustion consumption by to the public,1633.6303032,TJ,N2O,3.9,kg/TJ,6371.1581824800005,kg -b78075f6-bfbc-3465-a869-1b129f1ae810,SESCO,II.1.1,Catamarca,AR-K,annual,2021,gas oil combustion consumption by to the public,22.9820724,TJ,CO2,74100.0,kg/TJ,1702971.56484,kg -8c53ec15-cc0b-3bf3-b727-079fe53a8f8c,SESCO,II.1.1,Catamarca,AR-K,annual,2021,gas oil combustion consumption by to the public,22.9820724,TJ,CH4,3.9,kg/TJ,89.63008236,kg -8c53ec15-cc0b-3bf3-b727-079fe53a8f8c,SESCO,II.1.1,Catamarca,AR-K,annual,2021,gas oil combustion consumption by to the public,22.9820724,TJ,N2O,3.9,kg/TJ,89.63008236,kg -2c322355-8ba8-3423-9c1f-e89ca0cb078b,SESCO,II.1.1,Chaco,AR-H,annual,2021,gas oil combustion consumption by to the public,11.452568399999999,TJ,CO2,74100.0,kg/TJ,848635.31844,kg -ab7860fb-1b62-3496-a89e-9075694a8c3b,SESCO,II.1.1,Chaco,AR-H,annual,2021,gas oil combustion consumption by to the public,11.452568399999999,TJ,CH4,3.9,kg/TJ,44.66501675999999,kg -ab7860fb-1b62-3496-a89e-9075694a8c3b,SESCO,II.1.1,Chaco,AR-H,annual,2021,gas oil combustion consumption by to the public,11.452568399999999,TJ,N2O,3.9,kg/TJ,44.66501675999999,kg -b482dba7-1b32-3c31-85cf-05518dc9bf3b,SESCO,II.1.1,Jujuy,AR-Y,annual,2021,gas oil combustion consumption by to the public,172.30143,TJ,CO2,74100.0,kg/TJ,12767535.963000001,kg -879c001c-11aa-3ff4-bdbc-4cbf213ab9af,SESCO,II.1.1,Jujuy,AR-Y,annual,2021,gas oil combustion consumption by to the public,172.30143,TJ,CH4,3.9,kg/TJ,671.975577,kg -879c001c-11aa-3ff4-bdbc-4cbf213ab9af,SESCO,II.1.1,Jujuy,AR-Y,annual,2021,gas oil combustion consumption by to the public,172.30143,TJ,N2O,3.9,kg/TJ,671.975577,kg -f5cac39a-6850-3fc2-8c1b-97ad7c87f6f7,SESCO,II.1.1,La Rioja,AR-F,annual,2021,gas oil combustion consumption by to the public,140.44395120000001,TJ,CO2,74100.0,kg/TJ,10406896.783920001,kg -c9a7878a-f7f7-38d0-92b2-1525a4fa23c3,SESCO,II.1.1,La Rioja,AR-F,annual,2021,gas oil combustion consumption by to the public,140.44395120000001,TJ,CH4,3.9,kg/TJ,547.7314096800001,kg -c9a7878a-f7f7-38d0-92b2-1525a4fa23c3,SESCO,II.1.1,La Rioja,AR-F,annual,2021,gas oil combustion consumption by to the public,140.44395120000001,TJ,N2O,3.9,kg/TJ,547.7314096800001,kg -865796d1-0910-390e-89cd-d928ef195c17,SESCO,II.1.1,Salta,AR-A,annual,2021,gas oil combustion consumption by to the public,274.9208784,TJ,CO2,74100.0,kg/TJ,20371637.08944,kg -2c83092a-4cbb-324e-a861-752f42696aa7,SESCO,II.1.1,Salta,AR-A,annual,2021,gas oil combustion consumption by to the public,274.9208784,TJ,CH4,3.9,kg/TJ,1072.19142576,kg -2c83092a-4cbb-324e-a861-752f42696aa7,SESCO,II.1.1,Salta,AR-A,annual,2021,gas oil combustion consumption by to the public,274.9208784,TJ,N2O,3.9,kg/TJ,1072.19142576,kg -6466a252-e9c5-3800-ba49-f356b39f428c,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2021,gas oil combustion consumption by to the public,85.20455159999999,TJ,CO2,74100.0,kg/TJ,6313657.273559999,kg -58c4bc24-afdb-30cf-b7f6-b1257cab1e1e,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2021,gas oil combustion consumption by to the public,85.20455159999999,TJ,CH4,3.9,kg/TJ,332.29775123999997,kg -58c4bc24-afdb-30cf-b7f6-b1257cab1e1e,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2021,gas oil combustion consumption by to the public,85.20455159999999,TJ,N2O,3.9,kg/TJ,332.29775123999997,kg -ea9bd003-8d13-312a-8b0c-26a5eecf06de,SESCO,II.1.1,Tucuman,AR-T,annual,2021,gas oil combustion consumption by to the public,443.2093764,TJ,CO2,74100.0,kg/TJ,32841814.79124,kg -c5f4cabd-f8df-3bb9-b519-d227644a7128,SESCO,II.1.1,Tucuman,AR-T,annual,2021,gas oil combustion consumption by to the public,443.2093764,TJ,CH4,3.9,kg/TJ,1728.51656796,kg -c5f4cabd-f8df-3bb9-b519-d227644a7128,SESCO,II.1.1,Tucuman,AR-T,annual,2021,gas oil combustion consumption by to the public,443.2093764,TJ,N2O,3.9,kg/TJ,1728.51656796,kg -f80d0ccc-8823-3db6-9bf7-8fd1c5810a14,SESCO,I.3.1,Buenos Aires,AR-B,annual,2021,gasoline combustion consumption by petrochemical industries,3.6246259999999997,TJ,CO2,69300.0,kg/TJ,251186.58179999999,kg -bd1a986f-e13d-3d46-8580-8d574a2e5ef3,SESCO,I.3.1,Buenos Aires,AR-B,annual,2021,gasoline combustion consumption by petrochemical industries,3.6246259999999997,TJ,CH4,33.0,kg/TJ,119.612658,kg -03bcfe6e-cc91-35ea-83c7-9dbb7e720a5c,SESCO,I.3.1,Buenos Aires,AR-B,annual,2021,gasoline combustion consumption by petrochemical industries,3.6246259999999997,TJ,N2O,3.2,kg/TJ,11.598803199999999,kg -faae3a81-c50d-3edd-8401-80b451af4e17,SESCO,I.3.1,Chaco,AR-H,annual,2021,gasoline combustion consumption by petrochemical industries,14.245994,TJ,CO2,69300.0,kg/TJ,987247.3842,kg -d7d0f854-1a68-34f6-9626-faa2727e7aaa,SESCO,I.3.1,Chaco,AR-H,annual,2021,gasoline combustion consumption by petrochemical industries,14.245994,TJ,CH4,33.0,kg/TJ,470.117802,kg -53ce7571-9440-3994-87f2-d4d4c7bbf285,SESCO,I.3.1,Chaco,AR-H,annual,2021,gasoline combustion consumption by petrochemical industries,14.245994,TJ,N2O,3.2,kg/TJ,45.5871808,kg -41bd5e8e-bfc6-311f-8058-31549b7ddbd3,SESCO,II.1.1,San Luis,AR-D,annual,2021,gas oil combustion consumption by to the public,4.22604,TJ,CO2,74100.0,kg/TJ,313149.564,kg -160b1271-b2b9-3463-927c-dbd6223b0314,SESCO,II.1.1,San Luis,AR-D,annual,2021,gas oil combustion consumption by to the public,4.22604,TJ,CH4,3.9,kg/TJ,16.481556,kg -160b1271-b2b9-3463-927c-dbd6223b0314,SESCO,II.1.1,San Luis,AR-D,annual,2021,gas oil combustion consumption by to the public,4.22604,TJ,N2O,3.9,kg/TJ,16.481556,kg -64645af3-a5ba-30e3-aed8-71e96fc11b63,SESCO,I.3.1,La Pampa,AR-L,annual,2021,gasoline combustion consumption by petrochemical industries,1.1961,TJ,CO2,69300.0,kg/TJ,82889.73,kg -d28cac66-02c0-3dcd-9a00-bba5347635e3,SESCO,I.3.1,La Pampa,AR-L,annual,2021,gasoline combustion consumption by petrochemical industries,1.1961,TJ,CH4,33.0,kg/TJ,39.4713,kg -2ef4d42a-288b-3bd0-8b66-9c7196d05a92,SESCO,I.3.1,La Pampa,AR-L,annual,2021,gasoline combustion consumption by petrochemical industries,1.1961,TJ,N2O,3.2,kg/TJ,3.82752,kg -c580614e-d090-3a3a-9bf4-a7008278d344,SESCO,I.3.1,La Pampa,AR-L,annual,2021,gas oil combustion consumption by petrochemical industries,54.83016,TJ,CO2,74100.0,kg/TJ,4062914.856,kg -25b2cbf8-62f7-3180-857a-a9954ac55069,SESCO,I.3.1,La Pampa,AR-L,annual,2021,gas oil combustion consumption by petrochemical industries,54.83016,TJ,CH4,3.9,kg/TJ,213.837624,kg -25b2cbf8-62f7-3180-857a-a9954ac55069,SESCO,I.3.1,La Pampa,AR-L,annual,2021,gas oil combustion consumption by petrochemical industries,54.83016,TJ,N2O,3.9,kg/TJ,213.837624,kg -901f2b55-a726-3f5e-b92e-24b5b4aa5de2,SESCO,I.3.1,La Pampa,AR-L,annual,2021,gas oil combustion consumption by petrochemical industries,16.21788,TJ,CO2,74100.0,kg/TJ,1201744.908,kg -1b0bede0-1b2e-3b99-9e71-8c00fb45a1e8,SESCO,I.3.1,La Pampa,AR-L,annual,2021,gas oil combustion consumption by petrochemical industries,16.21788,TJ,CH4,3.9,kg/TJ,63.249732,kg -1b0bede0-1b2e-3b99-9e71-8c00fb45a1e8,SESCO,I.3.1,La Pampa,AR-L,annual,2021,gas oil combustion consumption by petrochemical industries,16.21788,TJ,N2O,3.9,kg/TJ,63.249732,kg -a658bc70-3fb2-3149-a071-ad63714f906f,SESCO,II.5.1,Buenos Aires,AR-B,annual,2021,gas oil combustion consumption by agriculture machines,385.7616,TJ,CO2,74100.0,kg/TJ,28584934.56,kg -f7c4d151-09a3-39de-8302-ed3779075148,SESCO,II.5.1,Buenos Aires,AR-B,annual,2021,gas oil combustion consumption by agriculture machines,385.7616,TJ,CH4,3.9,kg/TJ,1504.4702399999999,kg -f7c4d151-09a3-39de-8302-ed3779075148,SESCO,II.5.1,Buenos Aires,AR-B,annual,2021,gas oil combustion consumption by agriculture machines,385.7616,TJ,N2O,3.9,kg/TJ,1504.4702399999999,kg -e752a767-3513-3d15-acb3-9e4d9911fb4a,SESCO,II.5.1,Catamarca,AR-K,annual,2021,gas oil combustion consumption by agriculture machines,0.5418,TJ,CO2,74100.0,kg/TJ,40147.38,kg -9a793ac8-a035-3f6d-b1d6-840f669d6293,SESCO,II.5.1,Catamarca,AR-K,annual,2021,gas oil combustion consumption by agriculture machines,0.5418,TJ,CH4,3.9,kg/TJ,2.1130199999999997,kg -9a793ac8-a035-3f6d-b1d6-840f669d6293,SESCO,II.5.1,Catamarca,AR-K,annual,2021,gas oil combustion consumption by agriculture machines,0.5418,TJ,N2O,3.9,kg/TJ,2.1130199999999997,kg -e78a981d-1780-3589-9908-913314f4531f,SESCO,II.5.1,Corrientes,AR-W,annual,2021,gas oil combustion consumption by agriculture machines,39.5514,TJ,CO2,74100.0,kg/TJ,2930758.74,kg -080f9a03-b230-386f-8afd-58a17c5dedf8,SESCO,II.5.1,Corrientes,AR-W,annual,2021,gas oil combustion consumption by agriculture machines,39.5514,TJ,CH4,3.9,kg/TJ,154.25046,kg -080f9a03-b230-386f-8afd-58a17c5dedf8,SESCO,II.5.1,Corrientes,AR-W,annual,2021,gas oil combustion consumption by agriculture machines,39.5514,TJ,N2O,3.9,kg/TJ,154.25046,kg -a56d6793-1c37-3427-a14a-a3b474f80205,SESCO,II.5.1,Córdoba,AR-X,annual,2021,gas oil combustion consumption by agriculture machines,20.11884,TJ,CO2,74100.0,kg/TJ,1490806.044,kg -c8f4ed8d-4605-32e5-9557-cc04a95a3d26,SESCO,II.5.1,Córdoba,AR-X,annual,2021,gas oil combustion consumption by agriculture machines,20.11884,TJ,CH4,3.9,kg/TJ,78.463476,kg -c8f4ed8d-4605-32e5-9557-cc04a95a3d26,SESCO,II.5.1,Córdoba,AR-X,annual,2021,gas oil combustion consumption by agriculture machines,20.11884,TJ,N2O,3.9,kg/TJ,78.463476,kg -bd03f21d-2444-3a39-811f-a3f5d5c0544c,SESCO,II.5.1,Entre Rios,AR-E,annual,2021,gas oil combustion consumption by agriculture machines,79.57236,TJ,CO2,74100.0,kg/TJ,5896311.876,kg -04df7c75-5456-3176-a097-60fae2e67d82,SESCO,II.5.1,Entre Rios,AR-E,annual,2021,gas oil combustion consumption by agriculture machines,79.57236,TJ,CH4,3.9,kg/TJ,310.332204,kg -04df7c75-5456-3176-a097-60fae2e67d82,SESCO,II.5.1,Entre Rios,AR-E,annual,2021,gas oil combustion consumption by agriculture machines,79.57236,TJ,N2O,3.9,kg/TJ,310.332204,kg -0baa07dd-8ab6-3480-b7ef-d8e829b5d73d,SESCO,II.5.1,La Pampa,AR-L,annual,2021,gas oil combustion consumption by agriculture machines,38.68452,TJ,CO2,74100.0,kg/TJ,2866522.932,kg -9218ce53-dbe1-38d1-833b-da69235b0da2,SESCO,II.5.1,La Pampa,AR-L,annual,2021,gas oil combustion consumption by agriculture machines,38.68452,TJ,CH4,3.9,kg/TJ,150.869628,kg -9218ce53-dbe1-38d1-833b-da69235b0da2,SESCO,II.5.1,La Pampa,AR-L,annual,2021,gas oil combustion consumption by agriculture machines,38.68452,TJ,N2O,3.9,kg/TJ,150.869628,kg -15f07ed3-cd74-3811-8a29-bed1ed349658,SESCO,II.5.1,Santa Fe,AR-S,annual,2021,gas oil combustion consumption by agriculture machines,54.93852,TJ,CO2,74100.0,kg/TJ,4070944.332,kg -c55a4064-a712-3d05-ae11-1b808801c0ec,SESCO,II.5.1,Santa Fe,AR-S,annual,2021,gas oil combustion consumption by agriculture machines,54.93852,TJ,CH4,3.9,kg/TJ,214.26022799999998,kg -c55a4064-a712-3d05-ae11-1b808801c0ec,SESCO,II.5.1,Santa Fe,AR-S,annual,2021,gas oil combustion consumption by agriculture machines,54.93852,TJ,N2O,3.9,kg/TJ,214.26022799999998,kg -9306da24-089d-31a6-853f-9512da1a35f1,SESCO,II.5.1,Buenos Aires,AR-B,annual,2021,gas oil combustion consumption by agriculture machines,23.26128,TJ,CO2,74100.0,kg/TJ,1723660.848,kg -cd83972c-a48f-3105-8f27-64aeb31e2a49,SESCO,II.5.1,Buenos Aires,AR-B,annual,2021,gas oil combustion consumption by agriculture machines,23.26128,TJ,CH4,3.9,kg/TJ,90.718992,kg -cd83972c-a48f-3105-8f27-64aeb31e2a49,SESCO,II.5.1,Buenos Aires,AR-B,annual,2021,gas oil combustion consumption by agriculture machines,23.26128,TJ,N2O,3.9,kg/TJ,90.718992,kg -3d47c105-9175-3643-bcd1-e7b914f10760,SESCO,II.5.1,Entre Rios,AR-E,annual,2021,gas oil combustion consumption by agriculture machines,27.6318,TJ,CO2,74100.0,kg/TJ,2047516.38,kg -5f5006dd-ca9a-3ee0-94fc-e9861dab4d5f,SESCO,II.5.1,Entre Rios,AR-E,annual,2021,gas oil combustion consumption by agriculture machines,27.6318,TJ,CH4,3.9,kg/TJ,107.76401999999999,kg -5f5006dd-ca9a-3ee0-94fc-e9861dab4d5f,SESCO,II.5.1,Entre Rios,AR-E,annual,2021,gas oil combustion consumption by agriculture machines,27.6318,TJ,N2O,3.9,kg/TJ,107.76401999999999,kg -f94de946-d9a4-35ae-ab74-d148434c468e,SESCO,II.5.1,La Pampa,AR-L,annual,2021,gas oil combustion consumption by agriculture machines,5.2735199999999995,TJ,CO2,74100.0,kg/TJ,390767.832,kg -589a05c8-bceb-3e61-8b5c-cdbe93d71f65,SESCO,II.5.1,La Pampa,AR-L,annual,2021,gas oil combustion consumption by agriculture machines,5.2735199999999995,TJ,CH4,3.9,kg/TJ,20.566727999999998,kg -589a05c8-bceb-3e61-8b5c-cdbe93d71f65,SESCO,II.5.1,La Pampa,AR-L,annual,2021,gas oil combustion consumption by agriculture machines,5.2735199999999995,TJ,N2O,3.9,kg/TJ,20.566727999999998,kg -f07daf72-3c04-3c00-a170-68da99f652f4,SESCO,II.5.1,Santa Fe,AR-S,annual,2021,gas oil combustion consumption by agriculture machines,5.5263599999999995,TJ,CO2,74100.0,kg/TJ,409503.27599999995,kg -ca123337-dc89-3355-b3f3-ee98490f40e7,SESCO,II.5.1,Santa Fe,AR-S,annual,2021,gas oil combustion consumption by agriculture machines,5.5263599999999995,TJ,CH4,3.9,kg/TJ,21.552804,kg -ca123337-dc89-3355-b3f3-ee98490f40e7,SESCO,II.5.1,Santa Fe,AR-S,annual,2021,gas oil combustion consumption by agriculture machines,5.5263599999999995,TJ,N2O,3.9,kg/TJ,21.552804,kg -8eba7cf5-8ad4-340d-8f83-1f5b5986e026,SESCO,II.1.1,Buenos Aires,AR-B,annual,2021,gas oil combustion consumption by to the public,14785.21632,TJ,CO2,74100.0,kg/TJ,1095584529.312,kg -d709e9ff-f9cc-3472-b9fa-c2f21a451cd1,SESCO,II.1.1,Buenos Aires,AR-B,annual,2021,gas oil combustion consumption by to the public,14785.21632,TJ,CH4,3.9,kg/TJ,57662.343647999995,kg -d709e9ff-f9cc-3472-b9fa-c2f21a451cd1,SESCO,II.1.1,Buenos Aires,AR-B,annual,2021,gas oil combustion consumption by to the public,14785.21632,TJ,N2O,3.9,kg/TJ,57662.343647999995,kg -51031b5d-09d0-3e18-9b67-09996b841d2f,SESCO,II.1.1,Capital Federal,AR-C,annual,2021,gas oil combustion consumption by to the public,886.5654,TJ,CO2,74100.0,kg/TJ,65694496.13999999,kg -7560f5a8-5789-38cf-b67a-494e4260af31,SESCO,II.1.1,Capital Federal,AR-C,annual,2021,gas oil combustion consumption by to the public,886.5654,TJ,CH4,3.9,kg/TJ,3457.60506,kg -7560f5a8-5789-38cf-b67a-494e4260af31,SESCO,II.1.1,Capital Federal,AR-C,annual,2021,gas oil combustion consumption by to the public,886.5654,TJ,N2O,3.9,kg/TJ,3457.60506,kg -97cf4a6e-04c6-3fda-af3b-2fb15618430f,SESCO,II.1.1,Catamarca,AR-K,annual,2021,gas oil combustion consumption by to the public,11.48616,TJ,CO2,74100.0,kg/TJ,851124.456,kg -e8bde3ea-e5af-371b-83c8-4726cc06b64a,SESCO,II.1.1,Catamarca,AR-K,annual,2021,gas oil combustion consumption by to the public,11.48616,TJ,CH4,3.9,kg/TJ,44.796023999999996,kg -e8bde3ea-e5af-371b-83c8-4726cc06b64a,SESCO,II.1.1,Catamarca,AR-K,annual,2021,gas oil combustion consumption by to the public,11.48616,TJ,N2O,3.9,kg/TJ,44.796023999999996,kg -078844c2-c8c8-33c6-a4a6-6a3328cec3ab,SESCO,II.1.1,Chaco,AR-H,annual,2021,gas oil combustion consumption by to the public,1885.03056,TJ,CO2,74100.0,kg/TJ,139680764.496,kg -c2af367e-e472-378a-826f-4a18b3a21f72,SESCO,II.1.1,Chaco,AR-H,annual,2021,gas oil combustion consumption by to the public,1885.03056,TJ,CH4,3.9,kg/TJ,7351.619183999999,kg -c2af367e-e472-378a-826f-4a18b3a21f72,SESCO,II.1.1,Chaco,AR-H,annual,2021,gas oil combustion consumption by to the public,1885.03056,TJ,N2O,3.9,kg/TJ,7351.619183999999,kg -db123850-ac42-39ff-8041-460b1518354a,SESCO,II.1.1,Corrientes,AR-W,annual,2021,gas oil combustion consumption by to the public,1035.23532,TJ,CO2,74100.0,kg/TJ,76710937.212,kg -e224e264-04f7-3650-80ef-32d57d302fd5,SESCO,II.1.1,Corrientes,AR-W,annual,2021,gas oil combustion consumption by to the public,1035.23532,TJ,CH4,3.9,kg/TJ,4037.417748,kg -e224e264-04f7-3650-80ef-32d57d302fd5,SESCO,II.1.1,Corrientes,AR-W,annual,2021,gas oil combustion consumption by to the public,1035.23532,TJ,N2O,3.9,kg/TJ,4037.417748,kg -52441ac3-77d4-3e14-9ac5-3b23385f4f6e,SESCO,II.1.1,Córdoba,AR-X,annual,2021,gas oil combustion consumption by to the public,7767.0642,TJ,CO2,74100.0,kg/TJ,575539457.22,kg -ae92b26e-ee12-3c5a-959e-8323db194a79,SESCO,II.1.1,Córdoba,AR-X,annual,2021,gas oil combustion consumption by to the public,7767.0642,TJ,CH4,3.9,kg/TJ,30291.550379999997,kg -ae92b26e-ee12-3c5a-959e-8323db194a79,SESCO,II.1.1,Córdoba,AR-X,annual,2021,gas oil combustion consumption by to the public,7767.0642,TJ,N2O,3.9,kg/TJ,30291.550379999997,kg -84c45c23-b4f8-367c-98b9-0973b2a37fe4,SESCO,II.1.1,Entre Rios,AR-E,annual,2021,gas oil combustion consumption by to the public,1434.1084799999999,TJ,CO2,74100.0,kg/TJ,106267438.36799999,kg -8209fa43-3ede-32a0-b575-243c9ad77892,SESCO,II.1.1,Entre Rios,AR-E,annual,2021,gas oil combustion consumption by to the public,1434.1084799999999,TJ,CH4,3.9,kg/TJ,5593.023071999999,kg -8209fa43-3ede-32a0-b575-243c9ad77892,SESCO,II.1.1,Entre Rios,AR-E,annual,2021,gas oil combustion consumption by to the public,1434.1084799999999,TJ,N2O,3.9,kg/TJ,5593.023071999999,kg -8b4ac981-77db-3714-8c08-92f024276d81,SESCO,II.1.1,Formosa,AR-P,annual,2021,gas oil combustion consumption by to the public,113.56128,TJ,CO2,74100.0,kg/TJ,8414890.848,kg -45e35b45-4036-30a8-8006-32025c388fa3,SESCO,II.1.1,Formosa,AR-P,annual,2021,gas oil combustion consumption by to the public,113.56128,TJ,CH4,3.9,kg/TJ,442.888992,kg -45e35b45-4036-30a8-8006-32025c388fa3,SESCO,II.1.1,Formosa,AR-P,annual,2021,gas oil combustion consumption by to the public,113.56128,TJ,N2O,3.9,kg/TJ,442.888992,kg -bd9c1377-5f5b-30b4-9663-6e963d6cea8a,SESCO,II.1.1,Jujuy,AR-Y,annual,2021,gas oil combustion consumption by to the public,239.18663999999998,TJ,CO2,74100.0,kg/TJ,17723730.024,kg -c035dc6e-1b05-3a61-969c-48da9aa4e7b9,SESCO,II.1.1,Jujuy,AR-Y,annual,2021,gas oil combustion consumption by to the public,239.18663999999998,TJ,CH4,3.9,kg/TJ,932.8278959999999,kg -c035dc6e-1b05-3a61-969c-48da9aa4e7b9,SESCO,II.1.1,Jujuy,AR-Y,annual,2021,gas oil combustion consumption by to the public,239.18663999999998,TJ,N2O,3.9,kg/TJ,932.8278959999999,kg -31eb7c92-2f6f-3956-b3ef-4b26c3dab9b6,SESCO,II.1.1,La Pampa,AR-L,annual,2021,gas oil combustion consumption by to the public,758.77284,TJ,CO2,74100.0,kg/TJ,56225067.444,kg -bf8deb86-3022-3a09-9975-291db9d2f315,SESCO,II.1.1,La Pampa,AR-L,annual,2021,gas oil combustion consumption by to the public,758.77284,TJ,CH4,3.9,kg/TJ,2959.2140759999997,kg -bf8deb86-3022-3a09-9975-291db9d2f315,SESCO,II.1.1,La Pampa,AR-L,annual,2021,gas oil combustion consumption by to the public,758.77284,TJ,N2O,3.9,kg/TJ,2959.2140759999997,kg -91fccd59-4dc5-3dfe-a5ce-2d59154544fa,SESCO,II.1.1,La Rioja,AR-F,annual,2021,gas oil combustion consumption by to the public,146.71944,TJ,CO2,74100.0,kg/TJ,10871910.503999999,kg -380041be-ca92-3f18-bbd3-6bb32526e047,SESCO,II.1.1,La Rioja,AR-F,annual,2021,gas oil combustion consumption by to the public,146.71944,TJ,CH4,3.9,kg/TJ,572.2058159999999,kg -380041be-ca92-3f18-bbd3-6bb32526e047,SESCO,II.1.1,La Rioja,AR-F,annual,2021,gas oil combustion consumption by to the public,146.71944,TJ,N2O,3.9,kg/TJ,572.2058159999999,kg -86a91cce-9ed6-37e8-b3d6-a092b3a6a79e,SESCO,II.1.1,Mendoza,AR-M,annual,2021,gas oil combustion consumption by to the public,2265.22968,TJ,CO2,74100.0,kg/TJ,167853519.288,kg -6cc4ecb5-0360-38ad-8bf2-6e4ce70d0951,SESCO,II.1.1,Mendoza,AR-M,annual,2021,gas oil combustion consumption by to the public,2265.22968,TJ,CH4,3.9,kg/TJ,8834.395752,kg -6cc4ecb5-0360-38ad-8bf2-6e4ce70d0951,SESCO,II.1.1,Mendoza,AR-M,annual,2021,gas oil combustion consumption by to the public,2265.22968,TJ,N2O,3.9,kg/TJ,8834.395752,kg -bf688bb9-c45e-3e4a-900f-c801cebb7f20,SESCO,II.1.1,Misiones,AR-N,annual,2021,gas oil combustion consumption by to the public,1334.41728,TJ,CO2,74100.0,kg/TJ,98880320.448,kg -7900b5ec-cb34-3a0b-bf8c-e29f076c1e25,SESCO,II.1.1,Misiones,AR-N,annual,2021,gas oil combustion consumption by to the public,1334.41728,TJ,CH4,3.9,kg/TJ,5204.227392,kg -7900b5ec-cb34-3a0b-bf8c-e29f076c1e25,SESCO,II.1.1,Misiones,AR-N,annual,2021,gas oil combustion consumption by to the public,1334.41728,TJ,N2O,3.9,kg/TJ,5204.227392,kg -935725ca-68fd-32c9-8bd9-4c75e8d7f66d,SESCO,II.1.1,Neuquén,AR-Q,annual,2021,gas oil combustion consumption by to the public,796.0848,TJ,CO2,74100.0,kg/TJ,58989883.68,kg -a0e92d3b-b47d-338e-81b2-fa9d4e87e525,SESCO,II.1.1,Neuquén,AR-Q,annual,2021,gas oil combustion consumption by to the public,796.0848,TJ,CH4,3.9,kg/TJ,3104.73072,kg -a0e92d3b-b47d-338e-81b2-fa9d4e87e525,SESCO,II.1.1,Neuquén,AR-Q,annual,2021,gas oil combustion consumption by to the public,796.0848,TJ,N2O,3.9,kg/TJ,3104.73072,kg -ddc38fc5-01e0-3fc4-b4b2-6c62e7382388,SESCO,II.1.1,Rio Negro,AR-R,annual,2021,gas oil combustion consumption by to the public,295.06428,TJ,CO2,74100.0,kg/TJ,21864263.148,kg -071ea04b-889f-3287-a784-6a8b97536ecb,SESCO,II.1.1,Rio Negro,AR-R,annual,2021,gas oil combustion consumption by to the public,295.06428,TJ,CH4,3.9,kg/TJ,1150.750692,kg -071ea04b-889f-3287-a784-6a8b97536ecb,SESCO,II.1.1,Rio Negro,AR-R,annual,2021,gas oil combustion consumption by to the public,295.06428,TJ,N2O,3.9,kg/TJ,1150.750692,kg -fdc3811b-f8ef-346c-9b06-f42de440e3a9,SESCO,II.1.1,Salta,AR-A,annual,2021,gas oil combustion consumption by to the public,127.07016,TJ,CO2,74100.0,kg/TJ,9415898.856,kg -9586cdf5-1f00-3aac-ad50-e0d7aa98536e,SESCO,II.1.1,Salta,AR-A,annual,2021,gas oil combustion consumption by to the public,127.07016,TJ,CH4,3.9,kg/TJ,495.573624,kg -9586cdf5-1f00-3aac-ad50-e0d7aa98536e,SESCO,II.1.1,Salta,AR-A,annual,2021,gas oil combustion consumption by to the public,127.07016,TJ,N2O,3.9,kg/TJ,495.573624,kg -24d69cb0-852b-3e63-82b9-b92a1676cec6,SESCO,II.1.1,San Juan,AR-J,annual,2021,gas oil combustion consumption by to the public,379.76568,TJ,CO2,74100.0,kg/TJ,28140636.887999997,kg -a32eb725-9ee1-342e-abb3-40312f88f6fc,SESCO,II.1.1,San Juan,AR-J,annual,2021,gas oil combustion consumption by to the public,379.76568,TJ,CH4,3.9,kg/TJ,1481.0861519999999,kg -a32eb725-9ee1-342e-abb3-40312f88f6fc,SESCO,II.1.1,San Juan,AR-J,annual,2021,gas oil combustion consumption by to the public,379.76568,TJ,N2O,3.9,kg/TJ,1481.0861519999999,kg -b1c2441a-34aa-3e7a-bc73-6353a41ba7cb,SESCO,II.1.1,San Luis,AR-D,annual,2021,gas oil combustion consumption by to the public,423.25416,TJ,CO2,74100.0,kg/TJ,31363133.256,kg -b1d1efbc-dcb8-301e-9ed9-23a61eb72404,SESCO,II.1.1,San Luis,AR-D,annual,2021,gas oil combustion consumption by to the public,423.25416,TJ,CH4,3.9,kg/TJ,1650.691224,kg -b1d1efbc-dcb8-301e-9ed9-23a61eb72404,SESCO,II.1.1,San Luis,AR-D,annual,2021,gas oil combustion consumption by to the public,423.25416,TJ,N2O,3.9,kg/TJ,1650.691224,kg -b72d88d3-88c4-3b4a-9223-f02e587a6cd7,SESCO,II.1.1,Santa Fe,AR-S,annual,2021,gas oil combustion consumption by to the public,5807.95152,TJ,CO2,74100.0,kg/TJ,430369207.63199997,kg -419ebf1d-677d-36c7-a808-c693cd011ae3,SESCO,II.1.1,Santa Fe,AR-S,annual,2021,gas oil combustion consumption by to the public,5807.95152,TJ,CH4,3.9,kg/TJ,22651.010928,kg -419ebf1d-677d-36c7-a808-c693cd011ae3,SESCO,II.1.1,Santa Fe,AR-S,annual,2021,gas oil combustion consumption by to the public,5807.95152,TJ,N2O,3.9,kg/TJ,22651.010928,kg -7f79f83f-8f02-35ba-886c-4bf48c0f89a9,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2021,gas oil combustion consumption by to the public,273.9702,TJ,CO2,74100.0,kg/TJ,20301191.819999997,kg -288e4fac-d665-3fbb-a685-3a93b70439c0,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2021,gas oil combustion consumption by to the public,273.9702,TJ,CH4,3.9,kg/TJ,1068.4837799999998,kg -288e4fac-d665-3fbb-a685-3a93b70439c0,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2021,gas oil combustion consumption by to the public,273.9702,TJ,N2O,3.9,kg/TJ,1068.4837799999998,kg -3a8ab7b9-c107-3490-9c82-c6d1600bf1d4,SESCO,II.1.1,Tucuman,AR-T,annual,2021,gas oil combustion consumption by to the public,1126.54668,TJ,CO2,74100.0,kg/TJ,83477108.98799999,kg -05ee99f7-bddb-3e57-8a96-f069187219dd,SESCO,II.1.1,Tucuman,AR-T,annual,2021,gas oil combustion consumption by to the public,1126.54668,TJ,CH4,3.9,kg/TJ,4393.532052,kg -05ee99f7-bddb-3e57-8a96-f069187219dd,SESCO,II.1.1,Tucuman,AR-T,annual,2021,gas oil combustion consumption by to the public,1126.54668,TJ,N2O,3.9,kg/TJ,4393.532052,kg -8739cad1-b569-3742-b65a-ea7c986558db,SESCO,II.1.1,Buenos Aires,AR-B,annual,2021,gas oil combustion consumption by to the public,8957.76,TJ,CO2,74100.0,kg/TJ,663770016.0,kg -c134492d-3aca-34af-bbf3-dfd7e1cfa03b,SESCO,II.1.1,Buenos Aires,AR-B,annual,2021,gas oil combustion consumption by to the public,8957.76,TJ,CH4,3.9,kg/TJ,34935.264,kg -c134492d-3aca-34af-bbf3-dfd7e1cfa03b,SESCO,II.1.1,Buenos Aires,AR-B,annual,2021,gas oil combustion consumption by to the public,8957.76,TJ,N2O,3.9,kg/TJ,34935.264,kg -9795f23b-be17-3bb3-a0d5-a79b5bdb7bc3,SESCO,II.1.1,Capital Federal,AR-C,annual,2021,gas oil combustion consumption by to the public,1611.7105199999999,TJ,CO2,74100.0,kg/TJ,119427749.53199999,kg -bbe02c74-2128-3250-9722-14a2ce83753e,SESCO,II.1.1,Capital Federal,AR-C,annual,2021,gas oil combustion consumption by to the public,1611.7105199999999,TJ,CH4,3.9,kg/TJ,6285.671028,kg -bbe02c74-2128-3250-9722-14a2ce83753e,SESCO,II.1.1,Capital Federal,AR-C,annual,2021,gas oil combustion consumption by to the public,1611.7105199999999,TJ,N2O,3.9,kg/TJ,6285.671028,kg -59effda3-6f29-3d03-ad6b-461745219e4a,SESCO,II.1.1,Catamarca,AR-K,annual,2021,gas oil combustion consumption by to the public,38.2872,TJ,CO2,74100.0,kg/TJ,2837081.52,kg -f116ac7e-6053-3214-abea-83a06fdf268d,SESCO,II.1.1,Catamarca,AR-K,annual,2021,gas oil combustion consumption by to the public,38.2872,TJ,CH4,3.9,kg/TJ,149.32008,kg -f116ac7e-6053-3214-abea-83a06fdf268d,SESCO,II.1.1,Catamarca,AR-K,annual,2021,gas oil combustion consumption by to the public,38.2872,TJ,N2O,3.9,kg/TJ,149.32008,kg -6218fbc6-11c9-3bc1-b3ee-b36e600e8c3e,SESCO,II.1.1,Chaco,AR-H,annual,2021,gas oil combustion consumption by to the public,533.23956,TJ,CO2,74100.0,kg/TJ,39513051.396,kg -df020064-4259-367a-a80d-1d8792d6d1f1,SESCO,II.1.1,Chaco,AR-H,annual,2021,gas oil combustion consumption by to the public,533.23956,TJ,CH4,3.9,kg/TJ,2079.6342839999998,kg -df020064-4259-367a-a80d-1d8792d6d1f1,SESCO,II.1.1,Chaco,AR-H,annual,2021,gas oil combustion consumption by to the public,533.23956,TJ,N2O,3.9,kg/TJ,2079.6342839999998,kg -ddb24bf2-75ec-3b0d-82d0-652a8fdab3a6,SESCO,II.1.1,Corrientes,AR-W,annual,2021,gas oil combustion consumption by to the public,595.58268,TJ,CO2,74100.0,kg/TJ,44132676.588,kg -16b5a22f-7258-306b-acef-f5829df04dd1,SESCO,II.1.1,Corrientes,AR-W,annual,2021,gas oil combustion consumption by to the public,595.58268,TJ,CH4,3.9,kg/TJ,2322.7724519999997,kg -16b5a22f-7258-306b-acef-f5829df04dd1,SESCO,II.1.1,Corrientes,AR-W,annual,2021,gas oil combustion consumption by to the public,595.58268,TJ,N2O,3.9,kg/TJ,2322.7724519999997,kg -1be6eea6-3453-36c2-8016-3b0157648288,SESCO,II.1.1,Córdoba,AR-X,annual,2021,gas oil combustion consumption by to the public,2531.18124,TJ,CO2,74100.0,kg/TJ,187560529.884,kg -36a646ae-0214-3674-951d-ffa541f0b2dc,SESCO,II.1.1,Córdoba,AR-X,annual,2021,gas oil combustion consumption by to the public,2531.18124,TJ,CH4,3.9,kg/TJ,9871.606835999999,kg -36a646ae-0214-3674-951d-ffa541f0b2dc,SESCO,II.1.1,Córdoba,AR-X,annual,2021,gas oil combustion consumption by to the public,2531.18124,TJ,N2O,3.9,kg/TJ,9871.606835999999,kg -95d92f35-4bbe-3d1f-8ba9-4ab139c8090d,SESCO,II.1.1,Entre Rios,AR-E,annual,2021,gas oil combustion consumption by to the public,764.01024,TJ,CO2,74100.0,kg/TJ,56613158.783999994,kg -e05fedef-e2ac-3bc8-8ba8-0648d544a1e4,SESCO,II.1.1,Entre Rios,AR-E,annual,2021,gas oil combustion consumption by to the public,764.01024,TJ,CH4,3.9,kg/TJ,2979.6399359999996,kg -e05fedef-e2ac-3bc8-8ba8-0648d544a1e4,SESCO,II.1.1,Entre Rios,AR-E,annual,2021,gas oil combustion consumption by to the public,764.01024,TJ,N2O,3.9,kg/TJ,2979.6399359999996,kg -ed45f697-5883-3b1c-beac-26beb2788a4a,SESCO,II.1.1,Formosa,AR-P,annual,2021,gas oil combustion consumption by to the public,134.04131999999998,TJ,CO2,74100.0,kg/TJ,9932461.811999999,kg -861d7471-5598-3041-8630-cc66597afdfc,SESCO,II.1.1,Formosa,AR-P,annual,2021,gas oil combustion consumption by to the public,134.04131999999998,TJ,CH4,3.9,kg/TJ,522.7611479999999,kg -861d7471-5598-3041-8630-cc66597afdfc,SESCO,II.1.1,Formosa,AR-P,annual,2021,gas oil combustion consumption by to the public,134.04131999999998,TJ,N2O,3.9,kg/TJ,522.7611479999999,kg -fd0b3fa8-c7b8-38e7-a9e6-98ad40b7a368,SESCO,II.1.1,Jujuy,AR-Y,annual,2021,gas oil combustion consumption by to the public,141.44592,TJ,CO2,74100.0,kg/TJ,10481142.672,kg -d5aa14d2-fbce-3663-a524-de5715fae2da,SESCO,II.1.1,Jujuy,AR-Y,annual,2021,gas oil combustion consumption by to the public,141.44592,TJ,CH4,3.9,kg/TJ,551.639088,kg -d5aa14d2-fbce-3663-a524-de5715fae2da,SESCO,II.1.1,Jujuy,AR-Y,annual,2021,gas oil combustion consumption by to the public,141.44592,TJ,N2O,3.9,kg/TJ,551.639088,kg -0b2d1807-a7d9-3bb2-a975-18eb298468d8,SESCO,II.1.1,La Pampa,AR-L,annual,2021,gas oil combustion consumption by to the public,255.98244,TJ,CO2,74100.0,kg/TJ,18968298.804,kg -a71a065b-9f9e-377a-b17e-bdbc566cde91,SESCO,II.1.1,La Pampa,AR-L,annual,2021,gas oil combustion consumption by to the public,255.98244,TJ,CH4,3.9,kg/TJ,998.331516,kg -a71a065b-9f9e-377a-b17e-bdbc566cde91,SESCO,II.1.1,La Pampa,AR-L,annual,2021,gas oil combustion consumption by to the public,255.98244,TJ,N2O,3.9,kg/TJ,998.331516,kg -fadc1ab7-28b6-3ffd-b0e0-ce123ab4114c,SESCO,II.1.1,La Rioja,AR-F,annual,2021,gas oil combustion consumption by to the public,164.41824,TJ,CO2,74100.0,kg/TJ,12183391.583999999,kg -a7c6f220-0551-3bff-b886-a35ab0fbaa22,SESCO,II.1.1,La Rioja,AR-F,annual,2021,gas oil combustion consumption by to the public,164.41824,TJ,CH4,3.9,kg/TJ,641.231136,kg -a7c6f220-0551-3bff-b886-a35ab0fbaa22,SESCO,II.1.1,La Rioja,AR-F,annual,2021,gas oil combustion consumption by to the public,164.41824,TJ,N2O,3.9,kg/TJ,641.231136,kg -82db241f-fd78-386d-b0ee-7ccfb1aeac26,SESCO,II.1.1,Mendoza,AR-M,annual,2021,gas oil combustion consumption by to the public,1281.8988,TJ,CO2,74100.0,kg/TJ,94988701.08,kg -d643381b-b3d6-3b6c-9e34-e801efa87d1d,SESCO,II.1.1,Mendoza,AR-M,annual,2021,gas oil combustion consumption by to the public,1281.8988,TJ,CH4,3.9,kg/TJ,4999.40532,kg -d643381b-b3d6-3b6c-9e34-e801efa87d1d,SESCO,II.1.1,Mendoza,AR-M,annual,2021,gas oil combustion consumption by to the public,1281.8988,TJ,N2O,3.9,kg/TJ,4999.40532,kg -ab45f938-90d8-3f8b-ba73-fe46190133b7,SESCO,II.1.1,Misiones,AR-N,annual,2021,gas oil combustion consumption by to the public,534.14256,TJ,CO2,74100.0,kg/TJ,39579963.696,kg -73dd8b7f-7266-3c35-bc64-e35ba63054e9,SESCO,II.1.1,Misiones,AR-N,annual,2021,gas oil combustion consumption by to the public,534.14256,TJ,CH4,3.9,kg/TJ,2083.155984,kg -73dd8b7f-7266-3c35-bc64-e35ba63054e9,SESCO,II.1.1,Misiones,AR-N,annual,2021,gas oil combustion consumption by to the public,534.14256,TJ,N2O,3.9,kg/TJ,2083.155984,kg -b62533ad-3c25-3ee4-9b8a-c1f69ef7365f,SESCO,II.1.1,Neuquén,AR-Q,annual,2021,gas oil combustion consumption by to the public,984.27,TJ,CO2,74100.0,kg/TJ,72934407.0,kg -79c4b5ff-2a9f-3776-8512-04917fcbf798,SESCO,II.1.1,Neuquén,AR-Q,annual,2021,gas oil combustion consumption by to the public,984.27,TJ,CH4,3.9,kg/TJ,3838.653,kg -79c4b5ff-2a9f-3776-8512-04917fcbf798,SESCO,II.1.1,Neuquén,AR-Q,annual,2021,gas oil combustion consumption by to the public,984.27,TJ,N2O,3.9,kg/TJ,3838.653,kg -03ffe448-c6f7-3fb1-a3b2-692a55fdd96f,SESCO,II.1.1,Rio Negro,AR-R,annual,2021,gas oil combustion consumption by to the public,271.83912,TJ,CO2,74100.0,kg/TJ,20143278.792,kg -8615e474-b28d-3b78-81c5-fe9dd79d6219,SESCO,II.1.1,Rio Negro,AR-R,annual,2021,gas oil combustion consumption by to the public,271.83912,TJ,CH4,3.9,kg/TJ,1060.172568,kg -8615e474-b28d-3b78-81c5-fe9dd79d6219,SESCO,II.1.1,Rio Negro,AR-R,annual,2021,gas oil combustion consumption by to the public,271.83912,TJ,N2O,3.9,kg/TJ,1060.172568,kg -2f2d6dd9-7ed1-3c11-9e40-6ad83057ad6c,SESCO,II.1.1,Salta,AR-A,annual,2021,gas oil combustion consumption by to the public,227.1948,TJ,CO2,74100.0,kg/TJ,16835134.68,kg -2d69db5b-8b7e-365c-b5ee-6cecb269373a,SESCO,II.1.1,Salta,AR-A,annual,2021,gas oil combustion consumption by to the public,227.1948,TJ,CH4,3.9,kg/TJ,886.05972,kg -2d69db5b-8b7e-365c-b5ee-6cecb269373a,SESCO,II.1.1,Salta,AR-A,annual,2021,gas oil combustion consumption by to the public,227.1948,TJ,N2O,3.9,kg/TJ,886.05972,kg -87892a9f-9e88-3e6f-832b-b2f14022ab13,SESCO,II.1.1,San Juan,AR-J,annual,2021,gas oil combustion consumption by to the public,169.33056,TJ,CO2,74100.0,kg/TJ,12547394.496,kg -ec974991-90ac-38de-af8e-e38eefe75f0d,SESCO,II.1.1,San Juan,AR-J,annual,2021,gas oil combustion consumption by to the public,169.33056,TJ,CH4,3.9,kg/TJ,660.389184,kg -ec974991-90ac-38de-af8e-e38eefe75f0d,SESCO,II.1.1,San Juan,AR-J,annual,2021,gas oil combustion consumption by to the public,169.33056,TJ,N2O,3.9,kg/TJ,660.389184,kg -b359f579-696c-37d4-b2b5-3739590fb6e6,SESCO,II.1.1,San Luis,AR-D,annual,2021,gas oil combustion consumption by to the public,179.84148,TJ,CO2,74100.0,kg/TJ,13326253.668,kg -7482bff7-7ef3-354b-8308-23ef0dcf677f,SESCO,II.1.1,San Luis,AR-D,annual,2021,gas oil combustion consumption by to the public,179.84148,TJ,CH4,3.9,kg/TJ,701.381772,kg -7482bff7-7ef3-354b-8308-23ef0dcf677f,SESCO,II.1.1,San Luis,AR-D,annual,2021,gas oil combustion consumption by to the public,179.84148,TJ,N2O,3.9,kg/TJ,701.381772,kg -783718f6-8572-30c7-82a5-87617a4e6e1a,SESCO,II.1.1,Santa Fe,AR-S,annual,2021,gas oil combustion consumption by to the public,2222.53584,TJ,CO2,74100.0,kg/TJ,164689905.744,kg -bb6f80fa-1a46-3bdd-b26b-20ee128e814c,SESCO,II.1.1,Santa Fe,AR-S,annual,2021,gas oil combustion consumption by to the public,2222.53584,TJ,CH4,3.9,kg/TJ,8667.889776,kg -bb6f80fa-1a46-3bdd-b26b-20ee128e814c,SESCO,II.1.1,Santa Fe,AR-S,annual,2021,gas oil combustion consumption by to the public,2222.53584,TJ,N2O,3.9,kg/TJ,8667.889776,kg -81bc126e-8a86-32c4-a552-c0c6c876181c,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2021,gas oil combustion consumption by to the public,263.27868,TJ,CO2,74100.0,kg/TJ,19508950.188,kg -f4fc1057-d0d0-342e-aeac-8f0d466b0671,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2021,gas oil combustion consumption by to the public,263.27868,TJ,CH4,3.9,kg/TJ,1026.786852,kg -f4fc1057-d0d0-342e-aeac-8f0d466b0671,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2021,gas oil combustion consumption by to the public,263.27868,TJ,N2O,3.9,kg/TJ,1026.786852,kg -fb80bdc3-21be-39cd-8a15-9c3a659a2c8e,SESCO,II.1.1,Tucuman,AR-T,annual,2021,gas oil combustion consumption by to the public,527.27976,TJ,CO2,74100.0,kg/TJ,39071430.216,kg -978e5185-95c9-37ac-8a6b-5c978d933263,SESCO,II.1.1,Tucuman,AR-T,annual,2021,gas oil combustion consumption by to the public,527.27976,TJ,CH4,3.9,kg/TJ,2056.391064,kg -978e5185-95c9-37ac-8a6b-5c978d933263,SESCO,II.1.1,Tucuman,AR-T,annual,2021,gas oil combustion consumption by to the public,527.27976,TJ,N2O,3.9,kg/TJ,2056.391064,kg -58c7eb34-01e8-3406-b87f-69472e197da9,SESCO,II.1.1,Buenos Aires,AR-B,annual,2021,jet kerosene combustion consumption by to the public,0.157265,TJ,CO2,71500.0,kg/TJ,11244.447499999998,kg -0e9b496b-171a-3076-95ef-40b0c4632a69,SESCO,II.1.1,Buenos Aires,AR-B,annual,2021,jet kerosene combustion consumption by to the public,0.157265,TJ,CH4,0.5,kg/TJ,0.0786325,kg -a166714a-d954-3d9e-87f2-6ca9ac8a9f35,SESCO,II.1.1,Buenos Aires,AR-B,annual,2021,jet kerosene combustion consumption by to the public,0.157265,TJ,N2O,2.0,kg/TJ,0.31453,kg -10622715-1ca7-36d7-95e7-907fb0e284f2,SESCO,II.1.1,Entre Rios,AR-E,annual,2021,jet kerosene combustion consumption by to the public,2.5791459999999997,TJ,CO2,71500.0,kg/TJ,184408.93899999998,kg -68b09de0-18d1-3dc9-9f0a-bdf2c07c40ef,SESCO,II.1.1,Entre Rios,AR-E,annual,2021,jet kerosene combustion consumption by to the public,2.5791459999999997,TJ,CH4,0.5,kg/TJ,1.2895729999999999,kg -1b662cf7-9953-3ec6-beff-b089007b872f,SESCO,II.1.1,Entre Rios,AR-E,annual,2021,jet kerosene combustion consumption by to the public,2.5791459999999997,TJ,N2O,2.0,kg/TJ,5.158291999999999,kg -b5b98223-ed65-3e90-9cb8-182d23d63904,SESCO,II.1.1,Santa Fe,AR-S,annual,2021,jet kerosene combustion consumption by to the public,0.31453,TJ,CO2,71500.0,kg/TJ,22488.894999999997,kg -4f70fa38-25bc-3bde-adb8-109bedb763c0,SESCO,II.1.1,Santa Fe,AR-S,annual,2021,jet kerosene combustion consumption by to the public,0.31453,TJ,CH4,0.5,kg/TJ,0.157265,kg -97827aa4-e8f4-3be2-bf2a-fca668b5efb9,SESCO,II.1.1,Santa Fe,AR-S,annual,2021,jet kerosene combustion consumption by to the public,0.31453,TJ,N2O,2.0,kg/TJ,0.62906,kg -f27eae09-84b5-3405-8a01-44a490738c84,SESCO,I.3.1,Buenos Aires,AR-B,annual,2021,gasoline combustion consumption by petrochemical industries,108.04769999999999,TJ,CO2,69300.0,kg/TJ,7487705.609999999,kg -4a3cfb30-7456-3a13-be48-9b741e2f20ee,SESCO,I.3.1,Buenos Aires,AR-B,annual,2021,gasoline combustion consumption by petrochemical industries,108.04769999999999,TJ,CH4,33.0,kg/TJ,3565.5741,kg -decb8f54-c9f8-3c6c-baf6-731b593479f7,SESCO,I.3.1,Buenos Aires,AR-B,annual,2021,gasoline combustion consumption by petrochemical industries,108.04769999999999,TJ,N2O,3.2,kg/TJ,345.75264,kg -7da776ef-38de-358c-9f54-4acd6cc09dbf,SESCO,I.3.1,Capital Federal,AR-C,annual,2021,gasoline combustion consumption by petrochemical industries,89.8847,TJ,CO2,69300.0,kg/TJ,6229009.71,kg -a5104861-9cd6-3aa0-94d7-26236578ac5e,SESCO,I.3.1,Capital Federal,AR-C,annual,2021,gasoline combustion consumption by petrochemical industries,89.8847,TJ,CH4,33.0,kg/TJ,2966.1951,kg -3987c24b-1da8-3cc7-9a70-8a51bc5bcb05,SESCO,I.3.1,Capital Federal,AR-C,annual,2021,gasoline combustion consumption by petrochemical industries,89.8847,TJ,N2O,3.2,kg/TJ,287.63104,kg -42858185-52b5-3b2c-b181-7aa08f9cae32,SESCO,I.3.1,Chaco,AR-H,annual,2021,gasoline combustion consumption by petrochemical industries,26.2699,TJ,CO2,69300.0,kg/TJ,1820504.07,kg -76e9e8f7-f75f-30b6-88ba-eec86652a270,SESCO,I.3.1,Chaco,AR-H,annual,2021,gasoline combustion consumption by petrochemical industries,26.2699,TJ,CH4,33.0,kg/TJ,866.9067,kg -1caf5b6b-c861-3c5c-9558-b1047f40b2de,SESCO,I.3.1,Chaco,AR-H,annual,2021,gasoline combustion consumption by petrochemical industries,26.2699,TJ,N2O,3.2,kg/TJ,84.06368,kg -19dee013-a1fc-34fa-a2e5-95f6b33a2460,SESCO,I.3.1,Córdoba,AR-X,annual,2021,gasoline combustion consumption by petrochemical industries,363.3043,TJ,CO2,69300.0,kg/TJ,25176987.990000002,kg -67a3f21a-5159-3ac4-ad4c-43170a48f612,SESCO,I.3.1,Córdoba,AR-X,annual,2021,gasoline combustion consumption by petrochemical industries,363.3043,TJ,CH4,33.0,kg/TJ,11989.0419,kg -1c2b9342-6a52-3725-b520-cbc4370a56d9,SESCO,I.3.1,Córdoba,AR-X,annual,2021,gasoline combustion consumption by petrochemical industries,363.3043,TJ,N2O,3.2,kg/TJ,1162.57376,kg -854668f6-c056-31fc-bfd4-11c70bee4d88,SESCO,I.3.1,Entre Rios,AR-E,annual,2021,gasoline combustion consumption by petrochemical industries,33.225,TJ,CO2,69300.0,kg/TJ,2302492.5,kg -2a7a5b21-80c2-36c9-b99f-646539607b56,SESCO,I.3.1,Entre Rios,AR-E,annual,2021,gasoline combustion consumption by petrochemical industries,33.225,TJ,CH4,33.0,kg/TJ,1096.425,kg -e41b8eba-bedc-3ac6-9397-b13e84f15d61,SESCO,I.3.1,Entre Rios,AR-E,annual,2021,gasoline combustion consumption by petrochemical industries,33.225,TJ,N2O,3.2,kg/TJ,106.32000000000001,kg -02d4aceb-a78b-3f12-b746-134d84e86220,SESCO,I.3.1,Misiones,AR-N,annual,2021,gasoline combustion consumption by petrochemical industries,258.0475,TJ,CO2,69300.0,kg/TJ,17882691.75,kg -a4ebb759-5ddc-3a34-84a2-25fd0316b3df,SESCO,I.3.1,Misiones,AR-N,annual,2021,gasoline combustion consumption by petrochemical industries,258.0475,TJ,CH4,33.0,kg/TJ,8515.567500000001,kg -ecf40350-2f85-33a7-90a8-53d9343fcd7d,SESCO,I.3.1,Misiones,AR-N,annual,2021,gasoline combustion consumption by petrochemical industries,258.0475,TJ,N2O,3.2,kg/TJ,825.7520000000001,kg -58b892a9-9bb2-3ccc-b5db-6e50b9229a12,SESCO,I.3.1,Neuquén,AR-Q,annual,2021,gasoline combustion consumption by petrochemical industries,37.3449,TJ,CO2,69300.0,kg/TJ,2588001.5700000003,kg -50179a8f-f627-3fa0-9d17-5207d7c2f1a0,SESCO,I.3.1,Neuquén,AR-Q,annual,2021,gasoline combustion consumption by petrochemical industries,37.3449,TJ,CH4,33.0,kg/TJ,1232.3817000000001,kg -b8e65a12-7007-33d3-989a-a28b15bdba60,SESCO,I.3.1,Neuquén,AR-Q,annual,2021,gasoline combustion consumption by petrochemical industries,37.3449,TJ,N2O,3.2,kg/TJ,119.50368000000002,kg -f5ba1eee-0a13-348a-ac4b-f6ba78f4acc3,SESCO,I.3.1,San Juan,AR-J,annual,2021,gasoline combustion consumption by petrochemical industries,3.544,TJ,CO2,69300.0,kg/TJ,245599.2,kg -83b822ac-5328-3a7d-ab69-2b5f3a649e83,SESCO,I.3.1,San Juan,AR-J,annual,2021,gasoline combustion consumption by petrochemical industries,3.544,TJ,CH4,33.0,kg/TJ,116.952,kg -94dde6a9-9a99-3391-8e99-2304086c055f,SESCO,I.3.1,San Juan,AR-J,annual,2021,gasoline combustion consumption by petrochemical industries,3.544,TJ,N2O,3.2,kg/TJ,11.340800000000002,kg -1ac32165-5a94-3125-b58a-e74b07ffa93d,SESCO,I.3.1,Santa Fe,AR-S,annual,2021,gasoline combustion consumption by petrochemical industries,139.0577,TJ,CO2,69300.0,kg/TJ,9636698.610000001,kg -598254cd-3bd1-3be1-8aa4-8e38e2c6e414,SESCO,I.3.1,Santa Fe,AR-S,annual,2021,gasoline combustion consumption by petrochemical industries,139.0577,TJ,CH4,33.0,kg/TJ,4588.904100000001,kg -4ab4b48a-06dd-39cb-9d4b-09a81c065c9a,SESCO,I.3.1,Santa Fe,AR-S,annual,2021,gasoline combustion consumption by petrochemical industries,139.0577,TJ,N2O,3.2,kg/TJ,444.98464000000007,kg -ae01f25c-7c86-3367-bd36-31c4b4261a30,SESCO,I.3.1,Santiago del Estero,AR-G,annual,2021,gasoline combustion consumption by petrochemical industries,1.1961,TJ,CO2,69300.0,kg/TJ,82889.73,kg -56e202c7-3c7a-3959-9077-3635fb178b98,SESCO,I.3.1,Santiago del Estero,AR-G,annual,2021,gasoline combustion consumption by petrochemical industries,1.1961,TJ,CH4,33.0,kg/TJ,39.4713,kg -325bf8dd-fed2-340f-8f59-9eecc5734efb,SESCO,I.3.1,Santiago del Estero,AR-G,annual,2021,gasoline combustion consumption by petrochemical industries,1.1961,TJ,N2O,3.2,kg/TJ,3.82752,kg -46d1cc5e-d64e-3b9b-bc86-d4fcbd1d125c,SESCO,I.3.1,Buenos Aires,AR-B,annual,2021,gas oil combustion consumption by petrochemical industries,352.7118,TJ,CO2,74100.0,kg/TJ,26135944.38,kg -2eeba56a-8f5e-3f9c-8977-1ac47d8764c7,SESCO,I.3.1,Buenos Aires,AR-B,annual,2021,gas oil combustion consumption by petrochemical industries,352.7118,TJ,CH4,3.9,kg/TJ,1375.57602,kg -2eeba56a-8f5e-3f9c-8977-1ac47d8764c7,SESCO,I.3.1,Buenos Aires,AR-B,annual,2021,gas oil combustion consumption by petrochemical industries,352.7118,TJ,N2O,3.9,kg/TJ,1375.57602,kg -20ebbf8b-77bd-3631-b318-7df7579aea9f,SESCO,I.3.1,Capital Federal,AR-C,annual,2021,gas oil combustion consumption by petrochemical industries,37.7454,TJ,CO2,74100.0,kg/TJ,2796934.1399999997,kg -41bda493-171f-32e3-8fd1-7a6b8496bfdf,SESCO,I.3.1,Capital Federal,AR-C,annual,2021,gas oil combustion consumption by petrochemical industries,37.7454,TJ,CH4,3.9,kg/TJ,147.20705999999998,kg -41bda493-171f-32e3-8fd1-7a6b8496bfdf,SESCO,I.3.1,Capital Federal,AR-C,annual,2021,gas oil combustion consumption by petrochemical industries,37.7454,TJ,N2O,3.9,kg/TJ,147.20705999999998,kg -698158ae-c320-3dda-a3d0-93a0f004795f,SESCO,I.3.1,Córdoba,AR-X,annual,2021,gas oil combustion consumption by petrochemical industries,65.48555999999999,TJ,CO2,74100.0,kg/TJ,4852479.995999999,kg -e3c8b2c4-607a-3a6a-850c-e8e8f671626e,SESCO,I.3.1,Córdoba,AR-X,annual,2021,gas oil combustion consumption by petrochemical industries,65.48555999999999,TJ,CH4,3.9,kg/TJ,255.39368399999995,kg -e3c8b2c4-607a-3a6a-850c-e8e8f671626e,SESCO,I.3.1,Córdoba,AR-X,annual,2021,gas oil combustion consumption by petrochemical industries,65.48555999999999,TJ,N2O,3.9,kg/TJ,255.39368399999995,kg -b63d0505-edc8-34de-8441-ad7e34084428,SESCO,I.3.1,Entre Rios,AR-E,annual,2021,gas oil combustion consumption by petrochemical industries,13.111559999999999,TJ,CO2,74100.0,kg/TJ,971566.5959999999,kg -64ac80c2-8107-38a5-889f-f1e08e0ede20,SESCO,I.3.1,Entre Rios,AR-E,annual,2021,gas oil combustion consumption by petrochemical industries,13.111559999999999,TJ,CH4,3.9,kg/TJ,51.13508399999999,kg -64ac80c2-8107-38a5-889f-f1e08e0ede20,SESCO,I.3.1,Entre Rios,AR-E,annual,2021,gas oil combustion consumption by petrochemical industries,13.111559999999999,TJ,N2O,3.9,kg/TJ,51.13508399999999,kg -51b0858a-633a-38b1-8da0-b3cdbf8906c5,SESCO,I.3.1,Mendoza,AR-M,annual,2021,gas oil combustion consumption by petrochemical industries,22.35828,TJ,CO2,74100.0,kg/TJ,1656748.548,kg -ea8c455a-0d62-38ef-9d9f-9d4578e43387,SESCO,I.3.1,Mendoza,AR-M,annual,2021,gas oil combustion consumption by petrochemical industries,22.35828,TJ,CH4,3.9,kg/TJ,87.197292,kg -ea8c455a-0d62-38ef-9d9f-9d4578e43387,SESCO,I.3.1,Mendoza,AR-M,annual,2021,gas oil combustion consumption by petrochemical industries,22.35828,TJ,N2O,3.9,kg/TJ,87.197292,kg -66e79f08-f865-3204-bfaa-e63491bc86fe,SESCO,I.3.1,Misiones,AR-N,annual,2021,gas oil combustion consumption by petrochemical industries,24.489359999999998,TJ,CO2,74100.0,kg/TJ,1814661.576,kg -b9560adb-2a8a-378c-8402-766bb464d6b7,SESCO,I.3.1,Misiones,AR-N,annual,2021,gas oil combustion consumption by petrochemical industries,24.489359999999998,TJ,CH4,3.9,kg/TJ,95.50850399999999,kg -b9560adb-2a8a-378c-8402-766bb464d6b7,SESCO,I.3.1,Misiones,AR-N,annual,2021,gas oil combustion consumption by petrochemical industries,24.489359999999998,TJ,N2O,3.9,kg/TJ,95.50850399999999,kg -e962493d-1736-36a4-a73b-ba09f8955362,SESCO,I.3.1,Neuquén,AR-Q,annual,2021,gas oil combustion consumption by petrochemical industries,50.09844,TJ,CO2,74100.0,kg/TJ,3712294.4039999996,kg -58b99cb3-4c09-3e23-86c3-6e6b3b4a06b9,SESCO,I.3.1,Neuquén,AR-Q,annual,2021,gas oil combustion consumption by petrochemical industries,50.09844,TJ,CH4,3.9,kg/TJ,195.38391599999997,kg -58b99cb3-4c09-3e23-86c3-6e6b3b4a06b9,SESCO,I.3.1,Neuquén,AR-Q,annual,2021,gas oil combustion consumption by petrochemical industries,50.09844,TJ,N2O,3.9,kg/TJ,195.38391599999997,kg -d80d86f4-46bf-3d88-a993-56d740fc07ba,SESCO,I.3.1,Salta,AR-A,annual,2021,gas oil combustion consumption by petrochemical industries,92.75616,TJ,CO2,74100.0,kg/TJ,6873231.455999999,kg -83c0f470-7b5d-3f82-b642-0eebd7b38648,SESCO,I.3.1,Salta,AR-A,annual,2021,gas oil combustion consumption by petrochemical industries,92.75616,TJ,CH4,3.9,kg/TJ,361.74902399999996,kg -83c0f470-7b5d-3f82-b642-0eebd7b38648,SESCO,I.3.1,Salta,AR-A,annual,2021,gas oil combustion consumption by petrochemical industries,92.75616,TJ,N2O,3.9,kg/TJ,361.74902399999996,kg -e63b8a24-dbd7-324f-84bc-5d047facdbfc,SESCO,I.3.1,San Juan,AR-J,annual,2021,gas oil combustion consumption by petrochemical industries,48.47304,TJ,CO2,74100.0,kg/TJ,3591852.264,kg -c98fff47-fcb7-327e-b504-a7c156538eea,SESCO,I.3.1,San Juan,AR-J,annual,2021,gas oil combustion consumption by petrochemical industries,48.47304,TJ,CH4,3.9,kg/TJ,189.04485599999998,kg -c98fff47-fcb7-327e-b504-a7c156538eea,SESCO,I.3.1,San Juan,AR-J,annual,2021,gas oil combustion consumption by petrochemical industries,48.47304,TJ,N2O,3.9,kg/TJ,189.04485599999998,kg -411f8615-5b1c-35fb-aec9-3117f0484a14,SESCO,I.3.1,Santa Fe,AR-S,annual,2021,gas oil combustion consumption by petrochemical industries,113.34456,TJ,CO2,74100.0,kg/TJ,8398831.896,kg -4bf4953e-8c21-3aa9-99ed-50f58867228c,SESCO,I.3.1,Santa Fe,AR-S,annual,2021,gas oil combustion consumption by petrochemical industries,113.34456,TJ,CH4,3.9,kg/TJ,442.043784,kg -4bf4953e-8c21-3aa9-99ed-50f58867228c,SESCO,I.3.1,Santa Fe,AR-S,annual,2021,gas oil combustion consumption by petrochemical industries,113.34456,TJ,N2O,3.9,kg/TJ,442.043784,kg -0b055e61-88c1-38a4-a4d9-81da3d59e77c,SESCO,I.3.1,Tucuman,AR-T,annual,2021,gas oil combustion consumption by petrochemical industries,122.41068,TJ,CO2,74100.0,kg/TJ,9070631.388,kg -0472f925-20de-335b-872e-d46a18b81055,SESCO,I.3.1,Tucuman,AR-T,annual,2021,gas oil combustion consumption by petrochemical industries,122.41068,TJ,CH4,3.9,kg/TJ,477.401652,kg -0472f925-20de-335b-872e-d46a18b81055,SESCO,I.3.1,Tucuman,AR-T,annual,2021,gas oil combustion consumption by petrochemical industries,122.41068,TJ,N2O,3.9,kg/TJ,477.401652,kg -dee0a686-8a98-39bc-9168-56276f423022,SESCO,I.3.1,Buenos Aires,AR-B,annual,2021,gas oil combustion consumption by petrochemical industries,65.30496,TJ,CO2,74100.0,kg/TJ,4839097.535999999,kg -d968ff20-ca46-3470-ae0e-0ecf6ffdcf55,SESCO,I.3.1,Buenos Aires,AR-B,annual,2021,gas oil combustion consumption by petrochemical industries,65.30496,TJ,CH4,3.9,kg/TJ,254.68934399999998,kg -d968ff20-ca46-3470-ae0e-0ecf6ffdcf55,SESCO,I.3.1,Buenos Aires,AR-B,annual,2021,gas oil combustion consumption by petrochemical industries,65.30496,TJ,N2O,3.9,kg/TJ,254.68934399999998,kg -7be25857-5055-3f82-9117-cace117a8dd0,SESCO,I.3.1,Capital Federal,AR-C,annual,2021,gas oil combustion consumption by petrochemical industries,50.09844,TJ,CO2,74100.0,kg/TJ,3712294.4039999996,kg -f87d8ca2-bd51-3061-bbec-dbd8edaa3f7b,SESCO,I.3.1,Capital Federal,AR-C,annual,2021,gas oil combustion consumption by petrochemical industries,50.09844,TJ,CH4,3.9,kg/TJ,195.38391599999997,kg -f87d8ca2-bd51-3061-bbec-dbd8edaa3f7b,SESCO,I.3.1,Capital Federal,AR-C,annual,2021,gas oil combustion consumption by petrochemical industries,50.09844,TJ,N2O,3.9,kg/TJ,195.38391599999997,kg -ad9989e5-3bc8-367d-8dcb-3325d0dc700d,SESCO,I.3.1,Córdoba,AR-X,annual,2021,gas oil combustion consumption by petrochemical industries,5.12904,TJ,CO2,74100.0,kg/TJ,380061.864,kg -3273e6ae-5c79-34e2-8a85-c5f167fe2e0e,SESCO,I.3.1,Córdoba,AR-X,annual,2021,gas oil combustion consumption by petrochemical industries,5.12904,TJ,CH4,3.9,kg/TJ,20.003256,kg -3273e6ae-5c79-34e2-8a85-c5f167fe2e0e,SESCO,I.3.1,Córdoba,AR-X,annual,2021,gas oil combustion consumption by petrochemical industries,5.12904,TJ,N2O,3.9,kg/TJ,20.003256,kg -7979b9f6-d940-374d-8d9a-7e41535203cd,SESCO,I.3.1,Jujuy,AR-Y,annual,2021,gas oil combustion consumption by petrochemical industries,1.33644,TJ,CO2,74100.0,kg/TJ,99030.20400000001,kg -5ee4ee6f-2654-380a-9d3a-f09af7b84fef,SESCO,I.3.1,Jujuy,AR-Y,annual,2021,gas oil combustion consumption by petrochemical industries,1.33644,TJ,CH4,3.9,kg/TJ,5.212116,kg -5ee4ee6f-2654-380a-9d3a-f09af7b84fef,SESCO,I.3.1,Jujuy,AR-Y,annual,2021,gas oil combustion consumption by petrochemical industries,1.33644,TJ,N2O,3.9,kg/TJ,5.212116,kg -5afb96cd-b07e-3295-916d-2f87ba8cd302,SESCO,I.3.1,Salta,AR-A,annual,2021,gas oil combustion consumption by petrochemical industries,4.22604,TJ,CO2,74100.0,kg/TJ,313149.564,kg -bdcb3f1d-02cc-3a57-a2b7-57cca70f9c2e,SESCO,I.3.1,Salta,AR-A,annual,2021,gas oil combustion consumption by petrochemical industries,4.22604,TJ,CH4,3.9,kg/TJ,16.481556,kg -bdcb3f1d-02cc-3a57-a2b7-57cca70f9c2e,SESCO,I.3.1,Salta,AR-A,annual,2021,gas oil combustion consumption by petrochemical industries,4.22604,TJ,N2O,3.9,kg/TJ,16.481556,kg -6e99e3ce-e21c-348f-a9fa-0441fb43e53c,SESCO,I.3.1,Santa Fe,AR-S,annual,2021,gas oil combustion consumption by petrochemical industries,14.15904,TJ,CO2,74100.0,kg/TJ,1049184.8639999998,kg -ab19c087-7310-3a2c-9378-d73e666f30f2,SESCO,I.3.1,Santa Fe,AR-S,annual,2021,gas oil combustion consumption by petrochemical industries,14.15904,TJ,CH4,3.9,kg/TJ,55.22025599999999,kg -ab19c087-7310-3a2c-9378-d73e666f30f2,SESCO,I.3.1,Santa Fe,AR-S,annual,2021,gas oil combustion consumption by petrochemical industries,14.15904,TJ,N2O,3.9,kg/TJ,55.22025599999999,kg -b9f396e5-41bc-3d76-b1c1-a8f813c45dd6,SESCO,I.3.1,Tucuman,AR-T,annual,2021,gas oil combustion consumption by petrochemical industries,1.58928,TJ,CO2,74100.0,kg/TJ,117765.648,kg -5b7bf692-47c8-3c9d-b110-33af5077d4b6,SESCO,I.3.1,Tucuman,AR-T,annual,2021,gas oil combustion consumption by petrochemical industries,1.58928,TJ,CH4,3.9,kg/TJ,6.198192,kg -5b7bf692-47c8-3c9d-b110-33af5077d4b6,SESCO,I.3.1,Tucuman,AR-T,annual,2021,gas oil combustion consumption by petrochemical industries,1.58928,TJ,N2O,3.9,kg/TJ,6.198192,kg -01e8d48b-457b-39ff-822e-fa5a00299028,SESCO,I.3.1,Santa Fe,AR-S,annual,2021,jet kerosene combustion consumption by petrochemical industries,5.661539999999999,TJ,CO2,71500.0,kg/TJ,404800.1099999999,kg -4621137c-3aaf-3661-afab-91ab0c97e0c4,SESCO,I.3.1,Santa Fe,AR-S,annual,2021,jet kerosene combustion consumption by petrochemical industries,5.661539999999999,TJ,CH4,0.5,kg/TJ,2.8307699999999993,kg -be75fcfe-2be1-3f8e-8709-bfabe9887c5c,SESCO,I.3.1,Santa Fe,AR-S,annual,2021,jet kerosene combustion consumption by petrochemical industries,5.661539999999999,TJ,N2O,2.0,kg/TJ,11.323079999999997,kg -19ad0b7e-4054-3fc4-8529-8b48d72d7a65,SESCO,II.2.1,Córdoba,AR-X,annual,2021,gasoline combustion consumption by railway transport,4.3857,TJ,CO2,69300.0,kg/TJ,303929.01,kg -bd006427-6691-36e8-82ef-acbef28149bc,SESCO,II.2.1,Córdoba,AR-X,annual,2021,gasoline combustion consumption by railway transport,4.3857,TJ,CH4,33.0,kg/TJ,144.72809999999998,kg -658b46a2-516d-37f2-8aa0-c92b6f8cd207,SESCO,II.2.1,Córdoba,AR-X,annual,2021,gasoline combustion consumption by railway transport,4.3857,TJ,N2O,3.2,kg/TJ,14.03424,kg -f223c584-8364-3773-87d5-c92d2dfdaf45,SESCO,II.2.1,Buenos Aires,AR-B,annual,2021,gas oil combustion consumption by railway transport,174.78468,TJ,CO2,74100.0,kg/TJ,12951544.788,kg -3dd822da-91ce-35f2-abad-5d5d9234cd1b,SESCO,II.2.1,Buenos Aires,AR-B,annual,2021,gas oil combustion consumption by railway transport,174.78468,TJ,CH4,3.9,kg/TJ,681.660252,kg -3dd822da-91ce-35f2-abad-5d5d9234cd1b,SESCO,II.2.1,Buenos Aires,AR-B,annual,2021,gas oil combustion consumption by railway transport,174.78468,TJ,N2O,3.9,kg/TJ,681.660252,kg -b1573ce6-5542-3b57-a3f8-2d978121952e,SESCO,II.1.1,Santa Fe,AR-S,annual,2021,gasoline combustion consumption by freight transport,5.9805,TJ,CO2,69300.0,kg/TJ,414448.65,kg -12da96c3-b069-39ea-8e05-9239e93582ec,SESCO,II.1.1,Santa Fe,AR-S,annual,2021,gasoline combustion consumption by freight transport,5.9805,TJ,CH4,33.0,kg/TJ,197.3565,kg -93fd11cd-b744-3fde-92a3-601e7cbb3d2b,SESCO,II.1.1,Santa Fe,AR-S,annual,2021,gasoline combustion consumption by freight transport,5.9805,TJ,N2O,3.2,kg/TJ,19.137600000000003,kg -d6af1fe0-f83e-387d-b766-e2da98b70c66,SESCO,II.1.1,Buenos Aires,AR-B,annual,2021,gas oil combustion consumption by freight transport,90.87792,TJ,CO2,74100.0,kg/TJ,6734053.872,kg -4524c1d4-7f32-3a95-aab5-7c1521288f39,SESCO,II.1.1,Buenos Aires,AR-B,annual,2021,gas oil combustion consumption by freight transport,90.87792,TJ,CH4,3.9,kg/TJ,354.423888,kg -4524c1d4-7f32-3a95-aab5-7c1521288f39,SESCO,II.1.1,Buenos Aires,AR-B,annual,2021,gas oil combustion consumption by freight transport,90.87792,TJ,N2O,3.9,kg/TJ,354.423888,kg -b88935a0-03db-33fd-9236-301dd96064a0,SESCO,II.1.1,Capital Federal,AR-C,annual,2021,gas oil combustion consumption by freight transport,3.14244,TJ,CO2,74100.0,kg/TJ,232854.804,kg -ad5a961f-0af4-3535-90aa-f460588a7b7c,SESCO,II.1.1,Capital Federal,AR-C,annual,2021,gas oil combustion consumption by freight transport,3.14244,TJ,CH4,3.9,kg/TJ,12.255516,kg -ad5a961f-0af4-3535-90aa-f460588a7b7c,SESCO,II.1.1,Capital Federal,AR-C,annual,2021,gas oil combustion consumption by freight transport,3.14244,TJ,N2O,3.9,kg/TJ,12.255516,kg -4ccc5fe7-e54f-3ea3-bcaa-0168feae59dc,SESCO,II.1.1,Santa Fe,AR-S,annual,2021,gas oil combustion consumption by freight transport,9.860759999999999,TJ,CO2,74100.0,kg/TJ,730682.3159999999,kg -bd793909-9b45-3c1c-8bf4-1e17e2752771,SESCO,II.1.1,Santa Fe,AR-S,annual,2021,gas oil combustion consumption by freight transport,9.860759999999999,TJ,CH4,3.9,kg/TJ,38.45696399999999,kg -bd793909-9b45-3c1c-8bf4-1e17e2752771,SESCO,II.1.1,Santa Fe,AR-S,annual,2021,gas oil combustion consumption by freight transport,9.860759999999999,TJ,N2O,3.9,kg/TJ,38.45696399999999,kg -697fc95d-9c27-3c9d-a7ae-4721ce2a0e34,SESCO,II.1.1,Buenos Aires,AR-B,annual,2021,gas oil combustion consumption by freight transport,6.4654799999999994,TJ,CO2,74100.0,kg/TJ,479092.06799999997,kg -ff76a210-940c-319d-997c-494aaf975a95,SESCO,II.1.1,Buenos Aires,AR-B,annual,2021,gas oil combustion consumption by freight transport,6.4654799999999994,TJ,CH4,3.9,kg/TJ,25.215372,kg -ff76a210-940c-319d-997c-494aaf975a95,SESCO,II.1.1,Buenos Aires,AR-B,annual,2021,gas oil combustion consumption by freight transport,6.4654799999999994,TJ,N2O,3.9,kg/TJ,25.215372,kg -25186f57-2717-36de-95d3-bea73056acce,SESCO,II.1.1,Capital Federal,AR-C,annual,2021,gas oil combustion consumption by freight transport,1.19196,TJ,CO2,74100.0,kg/TJ,88324.23599999999,kg -93e8b129-246a-362b-9406-1d509e37d694,SESCO,II.1.1,Capital Federal,AR-C,annual,2021,gas oil combustion consumption by freight transport,1.19196,TJ,CH4,3.9,kg/TJ,4.648643999999999,kg -93e8b129-246a-362b-9406-1d509e37d694,SESCO,II.1.1,Capital Federal,AR-C,annual,2021,gas oil combustion consumption by freight transport,1.19196,TJ,N2O,3.9,kg/TJ,4.648643999999999,kg -e2c2e782-3fbc-36aa-bfca-3ab82d24a184,SESCO,II.1.1,Santa Fe,AR-S,annual,2021,gas oil combustion consumption by freight transport,22.53888,TJ,CO2,74100.0,kg/TJ,1670131.008,kg -332e644d-da62-3ef1-aa3f-f1ca847a8b57,SESCO,II.1.1,Santa Fe,AR-S,annual,2021,gas oil combustion consumption by freight transport,22.53888,TJ,CH4,3.9,kg/TJ,87.90163199999999,kg -332e644d-da62-3ef1-aa3f-f1ca847a8b57,SESCO,II.1.1,Santa Fe,AR-S,annual,2021,gas oil combustion consumption by freight transport,22.53888,TJ,N2O,3.9,kg/TJ,87.90163199999999,kg -9d25d177-92da-389f-93f4-01f2ec6f8522,SESCO,II.1.1,Buenos Aires,AR-B,annual,2021,gas oil combustion consumption by public passenger transport,2819.3466,TJ,CO2,74100.0,kg/TJ,208913583.06,kg -dfd1212e-da2b-379a-9e78-0a8eb8a9e2e2,SESCO,II.1.1,Buenos Aires,AR-B,annual,2021,gas oil combustion consumption by public passenger transport,2819.3466,TJ,CH4,3.9,kg/TJ,10995.451739999999,kg -dfd1212e-da2b-379a-9e78-0a8eb8a9e2e2,SESCO,II.1.1,Buenos Aires,AR-B,annual,2021,gas oil combustion consumption by public passenger transport,2819.3466,TJ,N2O,3.9,kg/TJ,10995.451739999999,kg -094b6da0-8eb9-36b8-841a-a26e335ee69e,SESCO,II.1.1,Capital Federal,AR-C,annual,2021,gas oil combustion consumption by public passenger transport,112.54992,TJ,CO2,74100.0,kg/TJ,8339949.072,kg -4e9362d3-4dc9-3afb-868e-af3647833be1,SESCO,II.1.1,Capital Federal,AR-C,annual,2021,gas oil combustion consumption by public passenger transport,112.54992,TJ,CH4,3.9,kg/TJ,438.944688,kg -4e9362d3-4dc9-3afb-868e-af3647833be1,SESCO,II.1.1,Capital Federal,AR-C,annual,2021,gas oil combustion consumption by public passenger transport,112.54992,TJ,N2O,3.9,kg/TJ,438.944688,kg -e8fab258-9c53-34de-baae-ddcf962e651f,SESCO,II.1.1,Córdoba,AR-X,annual,2021,gas oil combustion consumption by public passenger transport,25.4646,TJ,CO2,74100.0,kg/TJ,1886926.86,kg -7c0253e1-130f-3934-93bd-d0d6bb01056a,SESCO,II.1.1,Córdoba,AR-X,annual,2021,gas oil combustion consumption by public passenger transport,25.4646,TJ,CH4,3.9,kg/TJ,99.31194,kg -7c0253e1-130f-3934-93bd-d0d6bb01056a,SESCO,II.1.1,Córdoba,AR-X,annual,2021,gas oil combustion consumption by public passenger transport,25.4646,TJ,N2O,3.9,kg/TJ,99.31194,kg -e82451a6-5ef1-3a55-a0af-583e12b90af3,SESCO,II.1.1,Santa Fe,AR-S,annual,2021,gas oil combustion consumption by public passenger transport,2.4200399999999997,TJ,CO2,74100.0,kg/TJ,179324.96399999998,kg -45c440d9-43b3-31ab-804f-7f3d4c0aa880,SESCO,II.1.1,Santa Fe,AR-S,annual,2021,gas oil combustion consumption by public passenger transport,2.4200399999999997,TJ,CH4,3.9,kg/TJ,9.438156,kg -45c440d9-43b3-31ab-804f-7f3d4c0aa880,SESCO,II.1.1,Santa Fe,AR-S,annual,2021,gas oil combustion consumption by public passenger transport,2.4200399999999997,TJ,N2O,3.9,kg/TJ,9.438156,kg -7a981c40-d72a-3e12-ad81-611ff42404d0,SESCO,II.1.1,Buenos Aires,AR-B,annual,2021,gas oil combustion consumption by public passenger transport,1209.94776,TJ,CO2,74100.0,kg/TJ,89657129.016,kg -f948c60f-6cc1-3ecb-b635-d20323107b1a,SESCO,II.1.1,Buenos Aires,AR-B,annual,2021,gas oil combustion consumption by public passenger transport,1209.94776,TJ,CH4,3.9,kg/TJ,4718.796264,kg -f948c60f-6cc1-3ecb-b635-d20323107b1a,SESCO,II.1.1,Buenos Aires,AR-B,annual,2021,gas oil combustion consumption by public passenger transport,1209.94776,TJ,N2O,3.9,kg/TJ,4718.796264,kg -04e4eb66-f857-3e6d-a58d-dc92ae821188,SESCO,II.1.1,Capital Federal,AR-C,annual,2021,gas oil combustion consumption by public passenger transport,63.89628,TJ,CO2,74100.0,kg/TJ,4734714.348,kg -59d4875b-2a3a-38f6-9116-549331f67df0,SESCO,II.1.1,Capital Federal,AR-C,annual,2021,gas oil combustion consumption by public passenger transport,63.89628,TJ,CH4,3.9,kg/TJ,249.19549199999997,kg -59d4875b-2a3a-38f6-9116-549331f67df0,SESCO,II.1.1,Capital Federal,AR-C,annual,2021,gas oil combustion consumption by public passenger transport,63.89628,TJ,N2O,3.9,kg/TJ,249.19549199999997,kg -2e1bd3a9-d2cf-3831-9e77-7d396e2a20f7,SESCO,II.1.1,Córdoba,AR-X,annual,2021,gas oil combustion consumption by public passenger transport,20.08272,TJ,CO2,74100.0,kg/TJ,1488129.552,kg -2665e42a-4f07-3374-9d3d-c07284500547,SESCO,II.1.1,Córdoba,AR-X,annual,2021,gas oil combustion consumption by public passenger transport,20.08272,TJ,CH4,3.9,kg/TJ,78.32260799999999,kg -2665e42a-4f07-3374-9d3d-c07284500547,SESCO,II.1.1,Córdoba,AR-X,annual,2021,gas oil combustion consumption by public passenger transport,20.08272,TJ,N2O,3.9,kg/TJ,78.32260799999999,kg -c0ab5594-f4fe-31f1-855e-2fdfe2bb578e,SESCO,II.5.1,Buenos Aires,AR-B,annual,2021,gas oil combustion consumption by agriculture machines,3266.7477024,TJ,CO2,74100.0,kg/TJ,242066004.74784,kg -c660be7c-2a99-3d02-89f4-05ba72678432,SESCO,II.5.1,Buenos Aires,AR-B,annual,2021,gas oil combustion consumption by agriculture machines,3266.7477024,TJ,CH4,3.9,kg/TJ,12740.31603936,kg -c660be7c-2a99-3d02-89f4-05ba72678432,SESCO,II.5.1,Buenos Aires,AR-B,annual,2021,gas oil combustion consumption by agriculture machines,3266.7477024,TJ,N2O,3.9,kg/TJ,12740.31603936,kg -b59d1115-a1dd-3825-8ceb-dbd87c5d119e,SESCO,II.5.1,Capital Federal,AR-C,annual,2021,gas oil combustion consumption by agriculture machines,802.72773756,TJ,CO2,74100.0,kg/TJ,59482125.353196,kg -77c08845-41dc-30da-b46d-dc43e63a67e8,SESCO,II.5.1,Capital Federal,AR-C,annual,2021,gas oil combustion consumption by agriculture machines,802.72773756,TJ,CH4,3.9,kg/TJ,3130.6381764840003,kg -77c08845-41dc-30da-b46d-dc43e63a67e8,SESCO,II.5.1,Capital Federal,AR-C,annual,2021,gas oil combustion consumption by agriculture machines,802.72773756,TJ,N2O,3.9,kg/TJ,3130.6381764840003,kg -e58c5e5a-aa95-3563-a8d0-b21f69f33782,SESCO,II.5.1,Córdoba,AR-X,annual,2021,gas oil combustion consumption by agriculture machines,1285.4966048400001,TJ,CO2,74100.0,kg/TJ,95255298.41864401,kg -303fa9f6-454c-3b30-b9f2-6ce42bfc677a,SESCO,II.5.1,Córdoba,AR-X,annual,2021,gas oil combustion consumption by agriculture machines,1285.4966048400001,TJ,CH4,3.9,kg/TJ,5013.436758876001,kg -303fa9f6-454c-3b30-b9f2-6ce42bfc677a,SESCO,II.5.1,Córdoba,AR-X,annual,2021,gas oil combustion consumption by agriculture machines,1285.4966048400001,TJ,N2O,3.9,kg/TJ,5013.436758876001,kg -d2003880-d6ca-3e2c-845d-5ac17d632ead,SESCO,II.5.1,Entre Rios,AR-E,annual,2021,gas oil combustion consumption by agriculture machines,711.66936204,TJ,CO2,74100.0,kg/TJ,52734699.727164,kg -044cfe46-2796-3a10-b76e-13ed0384a802,SESCO,II.5.1,Entre Rios,AR-E,annual,2021,gas oil combustion consumption by agriculture machines,711.66936204,TJ,CH4,3.9,kg/TJ,2775.510511956,kg -044cfe46-2796-3a10-b76e-13ed0384a802,SESCO,II.5.1,Entre Rios,AR-E,annual,2021,gas oil combustion consumption by agriculture machines,711.66936204,TJ,N2O,3.9,kg/TJ,2775.510511956,kg -76568540-2850-3a66-aeaa-6df523f8e562,SESCO,II.5.1,Jujuy,AR-Y,annual,2021,gas oil combustion consumption by agriculture machines,24.464039879999998,TJ,CO2,74100.0,kg/TJ,1812785.3551079999,kg -929b119e-139e-38ef-9e3a-23331b57dd84,SESCO,II.5.1,Jujuy,AR-Y,annual,2021,gas oil combustion consumption by agriculture machines,24.464039879999998,TJ,CH4,3.9,kg/TJ,95.40975553199999,kg -929b119e-139e-38ef-9e3a-23331b57dd84,SESCO,II.5.1,Jujuy,AR-Y,annual,2021,gas oil combustion consumption by agriculture machines,24.464039879999998,TJ,N2O,3.9,kg/TJ,95.40975553199999,kg -96697140-83e0-33ef-974c-8bf46bce825e,SESCO,II.5.1,La Pampa,AR-L,annual,2021,gas oil combustion consumption by agriculture machines,288.98141916,TJ,CO2,74100.0,kg/TJ,21413523.159755997,kg -8593d890-97a9-378d-b574-7b0a88264392,SESCO,II.5.1,La Pampa,AR-L,annual,2021,gas oil combustion consumption by agriculture machines,288.98141916,TJ,CH4,3.9,kg/TJ,1127.027534724,kg -8593d890-97a9-378d-b574-7b0a88264392,SESCO,II.5.1,La Pampa,AR-L,annual,2021,gas oil combustion consumption by agriculture machines,288.98141916,TJ,N2O,3.9,kg/TJ,1127.027534724,kg -a7f06a33-1c18-3a4a-ba5c-0b47e0c36753,SESCO,II.5.1,Neuquén,AR-Q,annual,2021,gas oil combustion consumption by agriculture machines,12.690762000000001,TJ,CO2,74100.0,kg/TJ,940385.4642,kg -e2439598-d3f2-33db-8845-8112e3ec27fa,SESCO,II.5.1,Neuquén,AR-Q,annual,2021,gas oil combustion consumption by agriculture machines,12.690762000000001,TJ,CH4,3.9,kg/TJ,49.493971800000004,kg -e2439598-d3f2-33db-8845-8112e3ec27fa,SESCO,II.5.1,Neuquén,AR-Q,annual,2021,gas oil combustion consumption by agriculture machines,12.690762000000001,TJ,N2O,3.9,kg/TJ,49.493971800000004,kg -60584f80-edbf-3e4a-906f-a3e8989721eb,SESCO,II.5.1,Rio Negro,AR-R,annual,2021,gas oil combustion consumption by agriculture machines,163.48081764000003,TJ,CO2,74100.0,kg/TJ,12113928.587124001,kg -bbb286e8-ea2d-338d-bcaf-2ab8b3fabbc7,SESCO,II.5.1,Rio Negro,AR-R,annual,2021,gas oil combustion consumption by agriculture machines,163.48081764000003,TJ,CH4,3.9,kg/TJ,637.5751887960001,kg -bbb286e8-ea2d-338d-bcaf-2ab8b3fabbc7,SESCO,II.5.1,Rio Negro,AR-R,annual,2021,gas oil combustion consumption by agriculture machines,163.48081764000003,TJ,N2O,3.9,kg/TJ,637.5751887960001,kg -c5cd9a70-f89f-3f53-a247-bbecc7e1e054,SESCO,II.5.1,San Luis,AR-D,annual,2021,gas oil combustion consumption by agriculture machines,13.8796518,TJ,CO2,74100.0,kg/TJ,1028482.19838,kg -b47793a9-d29f-3ee7-b7ab-4455d86a7c3d,SESCO,II.5.1,San Luis,AR-D,annual,2021,gas oil combustion consumption by agriculture machines,13.8796518,TJ,CH4,3.9,kg/TJ,54.130642019999996,kg -b47793a9-d29f-3ee7-b7ab-4455d86a7c3d,SESCO,II.5.1,San Luis,AR-D,annual,2021,gas oil combustion consumption by agriculture machines,13.8796518,TJ,N2O,3.9,kg/TJ,54.130642019999996,kg -bdfec494-feec-3c0d-baa2-d2594ffe1876,SESCO,II.5.1,Santa Fe,AR-S,annual,2021,gas oil combustion consumption by agriculture machines,4073.27995956,TJ,CO2,74100.0,kg/TJ,301830045.003396,kg -85da1155-6b14-305a-9a7a-58c4a683472c,SESCO,II.5.1,Santa Fe,AR-S,annual,2021,gas oil combustion consumption by agriculture machines,4073.27995956,TJ,CH4,3.9,kg/TJ,15885.791842284,kg -85da1155-6b14-305a-9a7a-58c4a683472c,SESCO,II.5.1,Santa Fe,AR-S,annual,2021,gas oil combustion consumption by agriculture machines,4073.27995956,TJ,N2O,3.9,kg/TJ,15885.791842284,kg -0da97056-e81a-38ed-a7b6-e6a188c93a65,SESCO,II.5.1,Santiago del Estero,AR-G,annual,2021,gas oil combustion consumption by agriculture machines,134.31792696,TJ,CO2,74100.0,kg/TJ,9952958.387736,kg -b59488f0-62d9-3fad-9b0d-78a2d987dec1,SESCO,II.5.1,Santiago del Estero,AR-G,annual,2021,gas oil combustion consumption by agriculture machines,134.31792696,TJ,CH4,3.9,kg/TJ,523.839915144,kg -b59488f0-62d9-3fad-9b0d-78a2d987dec1,SESCO,II.5.1,Santiago del Estero,AR-G,annual,2021,gas oil combustion consumption by agriculture machines,134.31792696,TJ,N2O,3.9,kg/TJ,523.839915144,kg -5cd507a9-9589-3c2e-ac40-027265d042dd,SESCO,II.5.1,Tucuman,AR-T,annual,2021,gas oil combustion consumption by agriculture machines,152.84441676,TJ,CO2,74100.0,kg/TJ,11325771.281916,kg -3b1dac29-a209-310f-ad94-bc5f46fe030b,SESCO,II.5.1,Tucuman,AR-T,annual,2021,gas oil combustion consumption by agriculture machines,152.84441676,TJ,CH4,3.9,kg/TJ,596.093225364,kg -3b1dac29-a209-310f-ad94-bc5f46fe030b,SESCO,II.5.1,Tucuman,AR-T,annual,2021,gas oil combustion consumption by agriculture machines,152.84441676,TJ,N2O,3.9,kg/TJ,596.093225364,kg -3c608d25-18ce-3c21-b967-94c43e906b76,SESCO,II.5.1,Buenos Aires,AR-B,annual,2021,gas oil combustion consumption by agriculture machines,370.26626448,TJ,CO2,74100.0,kg/TJ,27436730.197968002,kg -f400db94-ac84-3878-b1b1-f1c5c0391868,SESCO,II.5.1,Buenos Aires,AR-B,annual,2021,gas oil combustion consumption by agriculture machines,370.26626448,TJ,CH4,3.9,kg/TJ,1444.038431472,kg -f400db94-ac84-3878-b1b1-f1c5c0391868,SESCO,II.5.1,Buenos Aires,AR-B,annual,2021,gas oil combustion consumption by agriculture machines,370.26626448,TJ,N2O,3.9,kg/TJ,1444.038431472,kg -85380fa6-34ea-341a-9102-f4b5ea0328ab,SESCO,II.5.1,Capital Federal,AR-C,annual,2021,gas oil combustion consumption by agriculture machines,45.08122752,TJ,CO2,74100.0,kg/TJ,3340518.9592319997,kg -2a4352aa-3a5e-3981-9a02-10fcb62e25be,SESCO,II.5.1,Capital Federal,AR-C,annual,2021,gas oil combustion consumption by agriculture machines,45.08122752,TJ,CH4,3.9,kg/TJ,175.816787328,kg -2a4352aa-3a5e-3981-9a02-10fcb62e25be,SESCO,II.5.1,Capital Federal,AR-C,annual,2021,gas oil combustion consumption by agriculture machines,45.08122752,TJ,N2O,3.9,kg/TJ,175.816787328,kg -9b7cb17f-1bdc-3108-9d96-d688b2cde78e,SESCO,II.5.1,Córdoba,AR-X,annual,2021,gas oil combustion consumption by agriculture machines,104.01631716,TJ,CO2,74100.0,kg/TJ,7707609.101556,kg -5ec285bb-8707-30b1-aac7-94fc4d95ed54,SESCO,II.5.1,Córdoba,AR-X,annual,2021,gas oil combustion consumption by agriculture machines,104.01631716,TJ,CH4,3.9,kg/TJ,405.663636924,kg -5ec285bb-8707-30b1-aac7-94fc4d95ed54,SESCO,II.5.1,Córdoba,AR-X,annual,2021,gas oil combustion consumption by agriculture machines,104.01631716,TJ,N2O,3.9,kg/TJ,405.663636924,kg -d7eced9a-6d35-3aab-964c-5bf4d44ad948,SESCO,II.5.1,Entre Rios,AR-E,annual,2021,gas oil combustion consumption by agriculture machines,137.44927812,TJ,CO2,74100.0,kg/TJ,10184991.508692,kg -68162895-9a77-3375-b03e-fb5d1fdca84a,SESCO,II.5.1,Entre Rios,AR-E,annual,2021,gas oil combustion consumption by agriculture machines,137.44927812,TJ,CH4,3.9,kg/TJ,536.052184668,kg -68162895-9a77-3375-b03e-fb5d1fdca84a,SESCO,II.5.1,Entre Rios,AR-E,annual,2021,gas oil combustion consumption by agriculture machines,137.44927812,TJ,N2O,3.9,kg/TJ,536.052184668,kg -6770e8a0-a39f-3f0c-963e-2bcc9261652d,SESCO,II.5.1,Jujuy,AR-Y,annual,2021,gas oil combustion consumption by agriculture machines,58.00608324,TJ,CO2,74100.0,kg/TJ,4298250.768084,kg -c8134580-72dc-34b3-ad99-fa304021de7e,SESCO,II.5.1,Jujuy,AR-Y,annual,2021,gas oil combustion consumption by agriculture machines,58.00608324,TJ,CH4,3.9,kg/TJ,226.22372463600001,kg -c8134580-72dc-34b3-ad99-fa304021de7e,SESCO,II.5.1,Jujuy,AR-Y,annual,2021,gas oil combustion consumption by agriculture machines,58.00608324,TJ,N2O,3.9,kg/TJ,226.22372463600001,kg -51d00916-9a65-3111-8c28-3b63077bdf45,SESCO,II.5.1,La Pampa,AR-L,annual,2021,gas oil combustion consumption by agriculture machines,51.71885544,TJ,CO2,74100.0,kg/TJ,3832367.188104,kg -3595371b-c9a6-3cc1-8d7e-52f8a3ed1d4e,SESCO,II.5.1,La Pampa,AR-L,annual,2021,gas oil combustion consumption by agriculture machines,51.71885544,TJ,CH4,3.9,kg/TJ,201.703536216,kg -3595371b-c9a6-3cc1-8d7e-52f8a3ed1d4e,SESCO,II.5.1,La Pampa,AR-L,annual,2021,gas oil combustion consumption by agriculture machines,51.71885544,TJ,N2O,3.9,kg/TJ,201.703536216,kg -c3d6b5b0-5916-3d62-9dd6-988c5dfa526e,SESCO,II.5.1,Neuquén,AR-Q,annual,2021,gas oil combustion consumption by agriculture machines,7.1268372,TJ,CO2,74100.0,kg/TJ,528098.63652,kg -9a249897-4b6b-3eef-8466-0feff4607223,SESCO,II.5.1,Neuquén,AR-Q,annual,2021,gas oil combustion consumption by agriculture machines,7.1268372,TJ,CH4,3.9,kg/TJ,27.794665079999998,kg -9a249897-4b6b-3eef-8466-0feff4607223,SESCO,II.5.1,Neuquén,AR-Q,annual,2021,gas oil combustion consumption by agriculture machines,7.1268372,TJ,N2O,3.9,kg/TJ,27.794665079999998,kg -1673b087-6db4-37d8-94f4-ec6f41055663,SESCO,II.5.1,Rio Negro,AR-R,annual,2021,gas oil combustion consumption by agriculture machines,134.4841512,TJ,CO2,74100.0,kg/TJ,9965275.603920002,kg -1ba13efd-796b-3656-8288-4782c63e35ba,SESCO,II.5.1,Rio Negro,AR-R,annual,2021,gas oil combustion consumption by agriculture machines,134.4841512,TJ,CH4,3.9,kg/TJ,524.48818968,kg -1ba13efd-796b-3656-8288-4782c63e35ba,SESCO,II.5.1,Rio Negro,AR-R,annual,2021,gas oil combustion consumption by agriculture machines,134.4841512,TJ,N2O,3.9,kg/TJ,524.48818968,kg -737ebda9-eb2d-3874-b94f-390defcaaa8e,SESCO,II.5.1,San Luis,AR-D,annual,2021,gas oil combustion consumption by agriculture machines,17.00153952,TJ,CO2,74100.0,kg/TJ,1259814.078432,kg -ab901bb6-c475-382f-a1f3-1ce80e63eb51,SESCO,II.5.1,San Luis,AR-D,annual,2021,gas oil combustion consumption by agriculture machines,17.00153952,TJ,CH4,3.9,kg/TJ,66.306004128,kg -ab901bb6-c475-382f-a1f3-1ce80e63eb51,SESCO,II.5.1,San Luis,AR-D,annual,2021,gas oil combustion consumption by agriculture machines,17.00153952,TJ,N2O,3.9,kg/TJ,66.306004128,kg -c0412dc1-85d1-3acc-a9eb-6570acbc6f1c,SESCO,II.5.1,Santa Fe,AR-S,annual,2021,gas oil combustion consumption by agriculture machines,282.68169384,TJ,CO2,74100.0,kg/TJ,20946713.513543997,kg -f0c3bd69-93ce-3469-a6ea-f2303b12745e,SESCO,II.5.1,Santa Fe,AR-S,annual,2021,gas oil combustion consumption by agriculture machines,282.68169384,TJ,CH4,3.9,kg/TJ,1102.458605976,kg -f0c3bd69-93ce-3469-a6ea-f2303b12745e,SESCO,II.5.1,Santa Fe,AR-S,annual,2021,gas oil combustion consumption by agriculture machines,282.68169384,TJ,N2O,3.9,kg/TJ,1102.458605976,kg -329f3e44-03c3-38eb-9941-23c235f888cc,SESCO,II.5.1,Santiago del Estero,AR-G,annual,2021,gas oil combustion consumption by agriculture machines,30.05379048,TJ,CO2,74100.0,kg/TJ,2226985.874568,kg -7fd7dc37-d1b3-395f-942b-52d22eb991b6,SESCO,II.5.1,Santiago del Estero,AR-G,annual,2021,gas oil combustion consumption by agriculture machines,30.05379048,TJ,CH4,3.9,kg/TJ,117.20978287199999,kg -7fd7dc37-d1b3-395f-942b-52d22eb991b6,SESCO,II.5.1,Santiago del Estero,AR-G,annual,2021,gas oil combustion consumption by agriculture machines,30.05379048,TJ,N2O,3.9,kg/TJ,117.20978287199999,kg -dc678d18-cbbc-37e2-8fec-722f50596d48,SESCO,II.5.1,Tucuman,AR-T,annual,2021,gas oil combustion consumption by agriculture machines,18.41599872,TJ,CO2,74100.0,kg/TJ,1364625.505152,kg -cb399abc-a2df-32e4-b43a-402286e04acc,SESCO,II.5.1,Tucuman,AR-T,annual,2021,gas oil combustion consumption by agriculture machines,18.41599872,TJ,CH4,3.9,kg/TJ,71.822395008,kg -cb399abc-a2df-32e4-b43a-402286e04acc,SESCO,II.5.1,Tucuman,AR-T,annual,2021,gas oil combustion consumption by agriculture machines,18.41599872,TJ,N2O,3.9,kg/TJ,71.822395008,kg -6664e4ba-a2c2-3aaf-8782-ec590b9440db,SESCO,II.1.1,Santa Fe,AR-S,annual,2021,gasoline combustion consumption by to the public,135.710835,TJ,CO2,69300.0,kg/TJ,9404760.8655,kg -40658735-96c4-35c3-b5df-8cdd2e1f7aa3,SESCO,II.1.1,Santa Fe,AR-S,annual,2021,gasoline combustion consumption by to the public,135.710835,TJ,CH4,33.0,kg/TJ,4478.457555,kg -408df1ed-b057-3c83-be59-85c62ea82ccc,SESCO,II.1.1,Santa Fe,AR-S,annual,2021,gasoline combustion consumption by to the public,135.710835,TJ,N2O,3.2,kg/TJ,434.274672,kg -a114d05e-48a2-3cb2-9583-15d65150d68a,SESCO,II.1.1,Buenos Aires,AR-B,annual,2021,gas oil combustion consumption by to the public,5847.12626064,TJ,CO2,74100.0,kg/TJ,433272055.91342396,kg -7de129bf-31f9-3896-bc62-fbe51ade73b7,SESCO,II.1.1,Buenos Aires,AR-B,annual,2021,gas oil combustion consumption by to the public,5847.12626064,TJ,CH4,3.9,kg/TJ,22803.792416496,kg -7de129bf-31f9-3896-bc62-fbe51ade73b7,SESCO,II.1.1,Buenos Aires,AR-B,annual,2021,gas oil combustion consumption by to the public,5847.12626064,TJ,N2O,3.9,kg/TJ,22803.792416496,kg -45293a57-d24f-3613-b76c-956ea9103196,SESCO,II.1.1,Capital Federal,AR-C,annual,2021,gas oil combustion consumption by to the public,263.868339,TJ,CO2,74100.0,kg/TJ,19552643.9199,kg -4fd42b06-ec68-3a82-9127-169cf4034164,SESCO,II.1.1,Capital Federal,AR-C,annual,2021,gas oil combustion consumption by to the public,263.868339,TJ,CH4,3.9,kg/TJ,1029.0865221,kg -4fd42b06-ec68-3a82-9127-169cf4034164,SESCO,II.1.1,Capital Federal,AR-C,annual,2021,gas oil combustion consumption by to the public,263.868339,TJ,N2O,3.9,kg/TJ,1029.0865221,kg -c8e73821-a0ec-3983-a694-decb0f2b8421,SESCO,II.1.1,Catamarca,AR-K,annual,2021,gas oil combustion consumption by to the public,10.30077384,TJ,CO2,74100.0,kg/TJ,763287.341544,kg -02787c0e-e0bd-3c15-9fda-5dfa9145b197,SESCO,II.1.1,Catamarca,AR-K,annual,2021,gas oil combustion consumption by to the public,10.30077384,TJ,CH4,3.9,kg/TJ,40.173017976,kg -02787c0e-e0bd-3c15-9fda-5dfa9145b197,SESCO,II.1.1,Catamarca,AR-K,annual,2021,gas oil combustion consumption by to the public,10.30077384,TJ,N2O,3.9,kg/TJ,40.173017976,kg -9bc0b1f6-3d10-3872-b348-e6b414819a37,SESCO,II.1.1,Chaco,AR-H,annual,2021,gas oil combustion consumption by to the public,45.724308,TJ,CO2,74100.0,kg/TJ,3388171.2228,kg -6fa26cea-2e85-37da-ac9a-05f969324785,SESCO,II.1.1,Chaco,AR-H,annual,2021,gas oil combustion consumption by to the public,45.724308,TJ,CH4,3.9,kg/TJ,178.3248012,kg -6fa26cea-2e85-37da-ac9a-05f969324785,SESCO,II.1.1,Chaco,AR-H,annual,2021,gas oil combustion consumption by to the public,45.724308,TJ,N2O,3.9,kg/TJ,178.3248012,kg -08558ced-b1a8-3d6a-9d20-596ed5b872d5,SESCO,II.1.1,Chubut,AR-U,annual,2021,gas oil combustion consumption by to the public,277.51689504,TJ,CO2,74100.0,kg/TJ,20564001.922464002,kg -503f744d-b84c-3a3d-a1d4-35040f4aeee2,SESCO,II.1.1,Chubut,AR-U,annual,2021,gas oil combustion consumption by to the public,277.51689504,TJ,CH4,3.9,kg/TJ,1082.315890656,kg -503f744d-b84c-3a3d-a1d4-35040f4aeee2,SESCO,II.1.1,Chubut,AR-U,annual,2021,gas oil combustion consumption by to the public,277.51689504,TJ,N2O,3.9,kg/TJ,1082.315890656,kg -a0c20c59-86cf-3dd2-8098-209c0f5ae260,SESCO,II.1.1,Corrientes,AR-W,annual,2021,gas oil combustion consumption by to the public,670.88934024,TJ,CO2,74100.0,kg/TJ,49712900.111784,kg -4d4cb9b1-59a6-3bd9-9501-62f70bb2b75f,SESCO,II.1.1,Corrientes,AR-W,annual,2021,gas oil combustion consumption by to the public,670.88934024,TJ,CH4,3.9,kg/TJ,2616.468426936,kg -4d4cb9b1-59a6-3bd9-9501-62f70bb2b75f,SESCO,II.1.1,Corrientes,AR-W,annual,2021,gas oil combustion consumption by to the public,670.88934024,TJ,N2O,3.9,kg/TJ,2616.468426936,kg -7f89fa1f-d8e8-34e7-812e-1bae5be7c433,SESCO,II.1.1,Córdoba,AR-X,annual,2021,gas oil combustion consumption by to the public,1481.0047014,TJ,CO2,74100.0,kg/TJ,109742448.37373999,kg -8234843e-ecbb-3c13-a54f-1cf2538b9c51,SESCO,II.1.1,Córdoba,AR-X,annual,2021,gas oil combustion consumption by to the public,1481.0047014,TJ,CH4,3.9,kg/TJ,5775.91833546,kg -8234843e-ecbb-3c13-a54f-1cf2538b9c51,SESCO,II.1.1,Córdoba,AR-X,annual,2021,gas oil combustion consumption by to the public,1481.0047014,TJ,N2O,3.9,kg/TJ,5775.91833546,kg -3b82ecf0-f533-3c28-a061-e563f1791740,SESCO,II.1.1,Entre Rios,AR-E,annual,2021,gas oil combustion consumption by to the public,1236.6283398,TJ,CO2,74100.0,kg/TJ,91634159.97918001,kg -a438cca2-08c3-3fa7-af10-604b9700802a,SESCO,II.1.1,Entre Rios,AR-E,annual,2021,gas oil combustion consumption by to the public,1236.6283398,TJ,CH4,3.9,kg/TJ,4822.85052522,kg -a438cca2-08c3-3fa7-af10-604b9700802a,SESCO,II.1.1,Entre Rios,AR-E,annual,2021,gas oil combustion consumption by to the public,1236.6283398,TJ,N2O,3.9,kg/TJ,4822.85052522,kg -9dc102f6-050c-3a69-9912-d75c33bc2d39,SESCO,II.1.1,Jujuy,AR-Y,annual,2021,gas oil combustion consumption by to the public,31.751647199999997,TJ,CO2,74100.0,kg/TJ,2352797.05752,kg -940861e8-32b3-35d7-94fd-0d93059fcd51,SESCO,II.1.1,Jujuy,AR-Y,annual,2021,gas oil combustion consumption by to the public,31.751647199999997,TJ,CH4,3.9,kg/TJ,123.83142407999999,kg -940861e8-32b3-35d7-94fd-0d93059fcd51,SESCO,II.1.1,Jujuy,AR-Y,annual,2021,gas oil combustion consumption by to the public,31.751647199999997,TJ,N2O,3.9,kg/TJ,123.83142407999999,kg -41dd75c0-d808-3925-8a44-594082359894,SESCO,II.1.1,La Pampa,AR-L,annual,2021,gas oil combustion consumption by to the public,912.2779999200001,TJ,CO2,74100.0,kg/TJ,67599799.794072,kg -06fef4c5-c64c-36b2-999c-e720b5746e83,SESCO,II.1.1,La Pampa,AR-L,annual,2021,gas oil combustion consumption by to the public,912.2779999200001,TJ,CH4,3.9,kg/TJ,3557.884199688,kg -06fef4c5-c64c-36b2-999c-e720b5746e83,SESCO,II.1.1,La Pampa,AR-L,annual,2021,gas oil combustion consumption by to the public,912.2779999200001,TJ,N2O,3.9,kg/TJ,3557.884199688,kg -0dba0ddc-679a-3f74-9c6c-74500860bc69,SESCO,II.1.1,Mendoza,AR-M,annual,2021,gas oil combustion consumption by to the public,141.89366352,TJ,CO2,74100.0,kg/TJ,10514320.466831999,kg -02bdd647-750d-3cdc-ae44-52e3f9054899,SESCO,II.1.1,Mendoza,AR-M,annual,2021,gas oil combustion consumption by to the public,141.89366352,TJ,CH4,3.9,kg/TJ,553.385287728,kg -02bdd647-750d-3cdc-ae44-52e3f9054899,SESCO,II.1.1,Mendoza,AR-M,annual,2021,gas oil combustion consumption by to the public,141.89366352,TJ,N2O,3.9,kg/TJ,553.385287728,kg -cc438d02-aaac-35bb-aa53-586fc5a27819,SESCO,II.1.1,Neuquén,AR-Q,annual,2021,gas oil combustion consumption by to the public,190.46538335999998,TJ,CO2,74100.0,kg/TJ,14113484.906975998,kg -cc9fd34c-5098-398d-b18e-defc4e3db187,SESCO,II.1.1,Neuquén,AR-Q,annual,2021,gas oil combustion consumption by to the public,190.46538335999998,TJ,CH4,3.9,kg/TJ,742.8149951039999,kg -cc9fd34c-5098-398d-b18e-defc4e3db187,SESCO,II.1.1,Neuquén,AR-Q,annual,2021,gas oil combustion consumption by to the public,190.46538335999998,TJ,N2O,3.9,kg/TJ,742.8149951039999,kg -7e5e58a5-50de-3411-819a-708a4010cdc6,SESCO,II.1.1,Rio Negro,AR-R,annual,2021,gas oil combustion consumption by to the public,654.1678390799999,TJ,CO2,74100.0,kg/TJ,48473836.87582799,kg -53cc4abf-25cd-3ce4-a3bf-7bcb0ba49f81,SESCO,II.1.1,Rio Negro,AR-R,annual,2021,gas oil combustion consumption by to the public,654.1678390799999,TJ,CH4,3.9,kg/TJ,2551.2545724119996,kg -53cc4abf-25cd-3ce4-a3bf-7bcb0ba49f81,SESCO,II.1.1,Rio Negro,AR-R,annual,2021,gas oil combustion consumption by to the public,654.1678390799999,TJ,N2O,3.9,kg/TJ,2551.2545724119996,kg -e252aeee-054e-3ce7-9869-d9663d053e2c,SESCO,II.1.1,San Juan,AR-J,annual,2021,gas oil combustion consumption by to the public,136.1364606,TJ,CO2,74100.0,kg/TJ,10087711.73046,kg -a88f8eba-b624-3265-9a6e-6efe1299d1c2,SESCO,II.1.1,San Juan,AR-J,annual,2021,gas oil combustion consumption by to the public,136.1364606,TJ,CH4,3.9,kg/TJ,530.9321963399999,kg -a88f8eba-b624-3265-9a6e-6efe1299d1c2,SESCO,II.1.1,San Juan,AR-J,annual,2021,gas oil combustion consumption by to the public,136.1364606,TJ,N2O,3.9,kg/TJ,530.9321963399999,kg -3d8558f4-39c4-383b-9ea1-0abdceadf41b,SESCO,II.1.1,San Luis,AR-D,annual,2021,gas oil combustion consumption by to the public,69.0363366,TJ,CO2,74100.0,kg/TJ,5115592.54206,kg -4255e770-e9c8-3816-849c-71593c70a15a,SESCO,II.1.1,San Luis,AR-D,annual,2021,gas oil combustion consumption by to the public,69.0363366,TJ,CH4,3.9,kg/TJ,269.24171273999997,kg -4255e770-e9c8-3816-849c-71593c70a15a,SESCO,II.1.1,San Luis,AR-D,annual,2021,gas oil combustion consumption by to the public,69.0363366,TJ,N2O,3.9,kg/TJ,269.24171273999997,kg -b1ffebd4-0161-350c-9754-2229b6460ed5,SESCO,II.1.1,Santa Fe,AR-S,annual,2021,gas oil combustion consumption by to the public,1424.25776136,TJ,CO2,74100.0,kg/TJ,105537500.11677599,kg -bc9cfd48-8869-3e23-8a12-cf01ef338682,SESCO,II.1.1,Santa Fe,AR-S,annual,2021,gas oil combustion consumption by to the public,1424.25776136,TJ,CH4,3.9,kg/TJ,5554.605269303999,kg -bc9cfd48-8869-3e23-8a12-cf01ef338682,SESCO,II.1.1,Santa Fe,AR-S,annual,2021,gas oil combustion consumption by to the public,1424.25776136,TJ,N2O,3.9,kg/TJ,5554.605269303999,kg -b749c4dc-26ea-3480-8239-db0c5d80ad1b,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2021,gas oil combustion consumption by to the public,381.95559947999993,TJ,CO2,74100.0,kg/TJ,28302909.921467993,kg -5f4572c6-7030-3e1f-8ccd-9ab8ab981170,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2021,gas oil combustion consumption by to the public,381.95559947999993,TJ,CH4,3.9,kg/TJ,1489.6268379719997,kg -5f4572c6-7030-3e1f-8ccd-9ab8ab981170,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2021,gas oil combustion consumption by to the public,381.95559947999993,TJ,N2O,3.9,kg/TJ,1489.6268379719997,kg -eec884b4-8ed9-3e1b-b7db-482f050ec6f5,SESCO,II.1.1,Buenos Aires,AR-B,annual,2021,gas oil combustion consumption by to the public,1402.98427332,TJ,CO2,74100.0,kg/TJ,103961134.65301201,kg -91e6e67c-cdd5-30af-bb40-b7de0177fe7b,SESCO,II.1.1,Buenos Aires,AR-B,annual,2021,gas oil combustion consumption by to the public,1402.98427332,TJ,CH4,3.9,kg/TJ,5471.638665948,kg -91e6e67c-cdd5-30af-bb40-b7de0177fe7b,SESCO,II.1.1,Buenos Aires,AR-B,annual,2021,gas oil combustion consumption by to the public,1402.98427332,TJ,N2O,3.9,kg/TJ,5471.638665948,kg -520c9cfa-07fa-3041-9b63-bbba4dca844e,SESCO,II.1.1,Capital Federal,AR-C,annual,2021,gas oil combustion consumption by to the public,41.35591908,TJ,CO2,74100.0,kg/TJ,3064473.603828,kg -a3b114c5-de0c-38d1-8d33-cfba8b6918b8,SESCO,II.1.1,Capital Federal,AR-C,annual,2021,gas oil combustion consumption by to the public,41.35591908,TJ,CH4,3.9,kg/TJ,161.288084412,kg -a3b114c5-de0c-38d1-8d33-cfba8b6918b8,SESCO,II.1.1,Capital Federal,AR-C,annual,2021,gas oil combustion consumption by to the public,41.35591908,TJ,N2O,3.9,kg/TJ,161.288084412,kg -27b435f8-c3b4-3122-a6d9-5b68de9530db,SESCO,II.1.1,Catamarca,AR-K,annual,2021,gas oil combustion consumption by to the public,5.79830748,TJ,CO2,74100.0,kg/TJ,429654.584268,kg -fb529d69-f209-3c97-80bf-7c77e7b773eb,SESCO,II.1.1,Catamarca,AR-K,annual,2021,gas oil combustion consumption by to the public,5.79830748,TJ,CH4,3.9,kg/TJ,22.613399172,kg -fb529d69-f209-3c97-80bf-7c77e7b773eb,SESCO,II.1.1,Catamarca,AR-K,annual,2021,gas oil combustion consumption by to the public,5.79830748,TJ,N2O,3.9,kg/TJ,22.613399172,kg -641afc3b-161f-3f00-81c7-9cbd26dc2697,SESCO,II.1.1,Chaco,AR-H,annual,2021,gas oil combustion consumption by to the public,28.10609172,TJ,CO2,74100.0,kg/TJ,2082661.396452,kg -be905b36-dbb4-3492-889c-b158f1fe1eef,SESCO,II.1.1,Chaco,AR-H,annual,2021,gas oil combustion consumption by to the public,28.10609172,TJ,CH4,3.9,kg/TJ,109.613757708,kg -be905b36-dbb4-3492-889c-b158f1fe1eef,SESCO,II.1.1,Chaco,AR-H,annual,2021,gas oil combustion consumption by to the public,28.10609172,TJ,N2O,3.9,kg/TJ,109.613757708,kg -65b6cf9c-dfb0-375f-b0a5-b3952c335285,SESCO,II.1.1,Chubut,AR-U,annual,2021,gas oil combustion consumption by to the public,222.57422124,TJ,CO2,74100.0,kg/TJ,16492749.793884002,kg -a697d3d0-61bf-30e6-ae4d-a72b0c8dde5a,SESCO,II.1.1,Chubut,AR-U,annual,2021,gas oil combustion consumption by to the public,222.57422124,TJ,CH4,3.9,kg/TJ,868.039462836,kg -a697d3d0-61bf-30e6-ae4d-a72b0c8dde5a,SESCO,II.1.1,Chubut,AR-U,annual,2021,gas oil combustion consumption by to the public,222.57422124,TJ,N2O,3.9,kg/TJ,868.039462836,kg -56d379ef-9a38-36ee-adc9-d8e6cfd77db3,SESCO,II.1.1,Corrientes,AR-W,annual,2021,gas oil combustion consumption by to the public,87.86908788,TJ,CO2,74100.0,kg/TJ,6511099.411908,kg -e44a9756-edfb-33d9-9fc3-9d482386e280,SESCO,II.1.1,Corrientes,AR-W,annual,2021,gas oil combustion consumption by to the public,87.86908788,TJ,CH4,3.9,kg/TJ,342.689442732,kg -e44a9756-edfb-33d9-9fc3-9d482386e280,SESCO,II.1.1,Corrientes,AR-W,annual,2021,gas oil combustion consumption by to the public,87.86908788,TJ,N2O,3.9,kg/TJ,342.689442732,kg -cf1aac33-83a3-3cee-853b-547fca416b16,SESCO,II.1.1,Córdoba,AR-X,annual,2021,gas oil combustion consumption by to the public,227.91626088,TJ,CO2,74100.0,kg/TJ,16888594.931208,kg -d9423eba-4f52-37c9-a2ce-37ac32e32401,SESCO,II.1.1,Córdoba,AR-X,annual,2021,gas oil combustion consumption by to the public,227.91626088,TJ,CH4,3.9,kg/TJ,888.873417432,kg -d9423eba-4f52-37c9-a2ce-37ac32e32401,SESCO,II.1.1,Córdoba,AR-X,annual,2021,gas oil combustion consumption by to the public,227.91626088,TJ,N2O,3.9,kg/TJ,888.873417432,kg -7e1f4763-3df5-34d7-884a-5932fcede7e6,SESCO,II.1.1,Entre Rios,AR-E,annual,2021,gas oil combustion consumption by to the public,218.63605764000002,TJ,CO2,74100.0,kg/TJ,16200931.871124001,kg -31e7b334-02f3-34a7-8738-c75cfb2b94f8,SESCO,II.1.1,Entre Rios,AR-E,annual,2021,gas oil combustion consumption by to the public,218.63605764000002,TJ,CH4,3.9,kg/TJ,852.6806247960001,kg -31e7b334-02f3-34a7-8738-c75cfb2b94f8,SESCO,II.1.1,Entre Rios,AR-E,annual,2021,gas oil combustion consumption by to the public,218.63605764000002,TJ,N2O,3.9,kg/TJ,852.6806247960001,kg -ac10e5ce-b35c-3170-8935-c1f5caf4eab3,SESCO,II.1.1,Jujuy,AR-Y,annual,2021,gas oil combustion consumption by to the public,15.94206768,TJ,CO2,74100.0,kg/TJ,1181307.215088,kg -4257ba2b-e82a-3864-8470-715d4721fe18,SESCO,II.1.1,Jujuy,AR-Y,annual,2021,gas oil combustion consumption by to the public,15.94206768,TJ,CH4,3.9,kg/TJ,62.174063952,kg -4257ba2b-e82a-3864-8470-715d4721fe18,SESCO,II.1.1,Jujuy,AR-Y,annual,2021,gas oil combustion consumption by to the public,15.94206768,TJ,N2O,3.9,kg/TJ,62.174063952,kg -19e4d59a-35a2-34dc-a39e-eac104ddce9d,SESCO,II.1.1,La Pampa,AR-L,annual,2021,gas oil combustion consumption by to the public,135.37544831999998,TJ,CO2,74100.0,kg/TJ,10031320.720511999,kg -706a8841-7106-3009-88e5-2f983ac08337,SESCO,II.1.1,La Pampa,AR-L,annual,2021,gas oil combustion consumption by to the public,135.37544831999998,TJ,CH4,3.9,kg/TJ,527.9642484479999,kg -706a8841-7106-3009-88e5-2f983ac08337,SESCO,II.1.1,La Pampa,AR-L,annual,2021,gas oil combustion consumption by to the public,135.37544831999998,TJ,N2O,3.9,kg/TJ,527.9642484479999,kg -bd127eb5-47e8-306e-b8f4-903505283b0c,SESCO,II.1.1,Mendoza,AR-M,annual,2021,gas oil combustion consumption by to the public,29.954604959999998,TJ,CO2,74100.0,kg/TJ,2219636.227536,kg -57b60ff2-bb84-3bc3-9751-c3a902fa98b9,SESCO,II.1.1,Mendoza,AR-M,annual,2021,gas oil combustion consumption by to the public,29.954604959999998,TJ,CH4,3.9,kg/TJ,116.82295934399998,kg -57b60ff2-bb84-3bc3-9751-c3a902fa98b9,SESCO,II.1.1,Mendoza,AR-M,annual,2021,gas oil combustion consumption by to the public,29.954604959999998,TJ,N2O,3.9,kg/TJ,116.82295934399998,kg -be736e7f-d382-3682-946e-266037ac9804,SESCO,II.1.1,Neuquén,AR-Q,annual,2021,gas oil combustion consumption by to the public,231.50091804000002,TJ,CO2,74100.0,kg/TJ,17154218.026764,kg -a3d2283d-8ccb-3e62-8d90-8dae92b26e30,SESCO,II.1.1,Neuquén,AR-Q,annual,2021,gas oil combustion consumption by to the public,231.50091804000002,TJ,CH4,3.9,kg/TJ,902.8535803560001,kg -a3d2283d-8ccb-3e62-8d90-8dae92b26e30,SESCO,II.1.1,Neuquén,AR-Q,annual,2021,gas oil combustion consumption by to the public,231.50091804000002,TJ,N2O,3.9,kg/TJ,902.8535803560001,kg -4ffa2919-a95b-3b65-ba09-afabee06ee5d,SESCO,II.1.1,Rio Negro,AR-R,annual,2021,gas oil combustion consumption by to the public,298.99717008,TJ,CO2,74100.0,kg/TJ,22155690.302928,kg -f9681f2b-b2e5-32c1-86ca-f39b19ebf9e7,SESCO,II.1.1,Rio Negro,AR-R,annual,2021,gas oil combustion consumption by to the public,298.99717008,TJ,CH4,3.9,kg/TJ,1166.088963312,kg -f9681f2b-b2e5-32c1-86ca-f39b19ebf9e7,SESCO,II.1.1,Rio Negro,AR-R,annual,2021,gas oil combustion consumption by to the public,298.99717008,TJ,N2O,3.9,kg/TJ,1166.088963312,kg -7d53814c-055b-3da9-b31a-d245a4881249,SESCO,II.1.1,San Juan,AR-J,annual,2021,gas oil combustion consumption by to the public,37.533195,TJ,CO2,74100.0,kg/TJ,2781209.7495,kg -0dc27725-89b7-3e3d-8dab-8a5bf8d0192d,SESCO,II.1.1,San Juan,AR-J,annual,2021,gas oil combustion consumption by to the public,37.533195,TJ,CH4,3.9,kg/TJ,146.3794605,kg -0dc27725-89b7-3e3d-8dab-8a5bf8d0192d,SESCO,II.1.1,San Juan,AR-J,annual,2021,gas oil combustion consumption by to the public,37.533195,TJ,N2O,3.9,kg/TJ,146.3794605,kg -d6099a96-f21f-3ddf-aae6-ccf2ffc11999,SESCO,II.1.1,San Luis,AR-D,annual,2021,gas oil combustion consumption by to the public,18.05703816,TJ,CO2,74100.0,kg/TJ,1338026.527656,kg -f9a4ca30-1316-38c1-a3ac-0393c97c81c1,SESCO,II.1.1,San Luis,AR-D,annual,2021,gas oil combustion consumption by to the public,18.05703816,TJ,CH4,3.9,kg/TJ,70.422448824,kg -f9a4ca30-1316-38c1-a3ac-0393c97c81c1,SESCO,II.1.1,San Luis,AR-D,annual,2021,gas oil combustion consumption by to the public,18.05703816,TJ,N2O,3.9,kg/TJ,70.422448824,kg -452bdede-f856-3787-8990-97c2c36f0299,SESCO,II.1.1,Santa Fe,AR-S,annual,2021,gas oil combustion consumption by to the public,371.15499708,TJ,CO2,74100.0,kg/TJ,27502585.283627998,kg -fc9fc319-e88d-39ab-acf5-4528c2c8619b,SESCO,II.1.1,Santa Fe,AR-S,annual,2021,gas oil combustion consumption by to the public,371.15499708,TJ,CH4,3.9,kg/TJ,1447.504488612,kg -fc9fc319-e88d-39ab-acf5-4528c2c8619b,SESCO,II.1.1,Santa Fe,AR-S,annual,2021,gas oil combustion consumption by to the public,371.15499708,TJ,N2O,3.9,kg/TJ,1447.504488612,kg -c4ab6e5e-0212-3adc-bc31-37f78226dd05,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2021,gas oil combustion consumption by to the public,34.67920932,TJ,CO2,74100.0,kg/TJ,2569729.4106119997,kg -35476e2a-2abb-3642-baa9-7cd295035c24,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2021,gas oil combustion consumption by to the public,34.67920932,TJ,CH4,3.9,kg/TJ,135.248916348,kg -35476e2a-2abb-3642-baa9-7cd295035c24,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2021,gas oil combustion consumption by to the public,34.67920932,TJ,N2O,3.9,kg/TJ,135.248916348,kg -3c0ba326-5f62-3458-84d2-1f30ffa2068e,SESCO,II.5.1,Buenos Aires,AR-B,annual,2021,gasoline combustion consumption by agriculture machines,40.6674,TJ,CO2,69300.0,kg/TJ,2818250.82,kg -82c88186-f412-356e-b690-1fb6a18f4148,SESCO,II.5.1,Buenos Aires,AR-B,annual,2021,gasoline combustion consumption by agriculture machines,40.6674,TJ,CH4,33.0,kg/TJ,1342.0242,kg -7bdacd97-1717-3a70-9734-456bf1614e05,SESCO,II.5.1,Buenos Aires,AR-B,annual,2021,gasoline combustion consumption by agriculture machines,40.6674,TJ,N2O,3.2,kg/TJ,130.13568,kg -a248e754-2b25-3484-8fa0-7ff73fdfb61b,SESCO,II.5.1,Buenos Aires,AR-B,annual,2021,gas oil combustion consumption by agriculture machines,9945.75036,TJ,CO2,74100.0,kg/TJ,736980101.676,kg -73207639-5891-3340-99e2-1b045f2ccd81,SESCO,II.5.1,Buenos Aires,AR-B,annual,2021,gas oil combustion consumption by agriculture machines,9945.75036,TJ,CH4,3.9,kg/TJ,38788.426404,kg -73207639-5891-3340-99e2-1b045f2ccd81,SESCO,II.5.1,Buenos Aires,AR-B,annual,2021,gas oil combustion consumption by agriculture machines,9945.75036,TJ,N2O,3.9,kg/TJ,38788.426404,kg -3e7e2e13-89c2-373a-82de-ea51276c781d,SESCO,II.5.1,Capital Federal,AR-C,annual,2021,gas oil combustion consumption by agriculture machines,59.85084,TJ,CO2,74100.0,kg/TJ,4434947.244,kg -7c3f423f-aa2d-3e22-a6c6-c92b4b01567f,SESCO,II.5.1,Capital Federal,AR-C,annual,2021,gas oil combustion consumption by agriculture machines,59.85084,TJ,CH4,3.9,kg/TJ,233.418276,kg -7c3f423f-aa2d-3e22-a6c6-c92b4b01567f,SESCO,II.5.1,Capital Federal,AR-C,annual,2021,gas oil combustion consumption by agriculture machines,59.85084,TJ,N2O,3.9,kg/TJ,233.418276,kg -5919b280-7167-3fb7-82e6-9201eae2a7e1,SESCO,II.5.1,Catamarca,AR-K,annual,2021,gas oil combustion consumption by agriculture machines,186.5598,TJ,CO2,74100.0,kg/TJ,13824081.18,kg -4b93191c-5b5e-32f8-ac33-bfde77d4ef85,SESCO,II.5.1,Catamarca,AR-K,annual,2021,gas oil combustion consumption by agriculture machines,186.5598,TJ,CH4,3.9,kg/TJ,727.58322,kg -4b93191c-5b5e-32f8-ac33-bfde77d4ef85,SESCO,II.5.1,Catamarca,AR-K,annual,2021,gas oil combustion consumption by agriculture machines,186.5598,TJ,N2O,3.9,kg/TJ,727.58322,kg -ede8d717-69f8-39c6-ab94-78ea73da5ddf,SESCO,II.5.1,Chaco,AR-H,annual,2021,gas oil combustion consumption by agriculture machines,869.8418399999999,TJ,CO2,74100.0,kg/TJ,64455280.344,kg -676bbd01-1f99-34a1-b603-4b473de9176e,SESCO,II.5.1,Chaco,AR-H,annual,2021,gas oil combustion consumption by agriculture machines,869.8418399999999,TJ,CH4,3.9,kg/TJ,3392.383176,kg -676bbd01-1f99-34a1-b603-4b473de9176e,SESCO,II.5.1,Chaco,AR-H,annual,2021,gas oil combustion consumption by agriculture machines,869.8418399999999,TJ,N2O,3.9,kg/TJ,3392.383176,kg -51d6eecc-6bf1-3069-b000-335f4876f388,SESCO,II.5.1,Chubut,AR-U,annual,2021,gas oil combustion consumption by agriculture machines,0.03612,TJ,CO2,74100.0,kg/TJ,2676.4919999999997,kg -04b2eb3f-6357-332f-88bd-75395b880319,SESCO,II.5.1,Chubut,AR-U,annual,2021,gas oil combustion consumption by agriculture machines,0.03612,TJ,CH4,3.9,kg/TJ,0.140868,kg -04b2eb3f-6357-332f-88bd-75395b880319,SESCO,II.5.1,Chubut,AR-U,annual,2021,gas oil combustion consumption by agriculture machines,0.03612,TJ,N2O,3.9,kg/TJ,0.140868,kg -63dbad72-b037-3475-91e3-846b9aed0ba8,SESCO,II.5.1,Corrientes,AR-W,annual,2021,gas oil combustion consumption by agriculture machines,738.5456399999999,TJ,CO2,74100.0,kg/TJ,54726231.923999995,kg -2cee9e09-9b22-3fcc-beba-9a9f7a2869b7,SESCO,II.5.1,Corrientes,AR-W,annual,2021,gas oil combustion consumption by agriculture machines,738.5456399999999,TJ,CH4,3.9,kg/TJ,2880.3279959999995,kg -2cee9e09-9b22-3fcc-beba-9a9f7a2869b7,SESCO,II.5.1,Corrientes,AR-W,annual,2021,gas oil combustion consumption by agriculture machines,738.5456399999999,TJ,N2O,3.9,kg/TJ,2880.3279959999995,kg -90bf2d74-89c8-3502-a1dc-dc1a9d8abd89,SESCO,II.5.1,Córdoba,AR-X,annual,2021,gas oil combustion consumption by agriculture machines,7531.48956,TJ,CO2,74100.0,kg/TJ,558083376.396,kg -7293f213-3f87-3800-81f3-fd19420ca93d,SESCO,II.5.1,Córdoba,AR-X,annual,2021,gas oil combustion consumption by agriculture machines,7531.48956,TJ,CH4,3.9,kg/TJ,29372.809284,kg -7293f213-3f87-3800-81f3-fd19420ca93d,SESCO,II.5.1,Córdoba,AR-X,annual,2021,gas oil combustion consumption by agriculture machines,7531.48956,TJ,N2O,3.9,kg/TJ,29372.809284,kg -5977e7c9-bc40-3d44-b833-de6ea357a938,SESCO,II.5.1,Entre Rios,AR-E,annual,2021,gas oil combustion consumption by agriculture machines,2215.962,TJ,CO2,74100.0,kg/TJ,164202784.2,kg -b4ca981e-22d6-3552-9df9-d2383c1c0b06,SESCO,II.5.1,Entre Rios,AR-E,annual,2021,gas oil combustion consumption by agriculture machines,2215.962,TJ,CH4,3.9,kg/TJ,8642.2518,kg -b4ca981e-22d6-3552-9df9-d2383c1c0b06,SESCO,II.5.1,Entre Rios,AR-E,annual,2021,gas oil combustion consumption by agriculture machines,2215.962,TJ,N2O,3.9,kg/TJ,8642.2518,kg -3d594888-1633-3b91-95d0-b6b90e65f524,SESCO,II.5.1,Formosa,AR-P,annual,2021,gas oil combustion consumption by agriculture machines,285.60084,TJ,CO2,74100.0,kg/TJ,21163022.244,kg -2c4aed0c-c426-36df-9c29-b3285a6f5d94,SESCO,II.5.1,Formosa,AR-P,annual,2021,gas oil combustion consumption by agriculture machines,285.60084,TJ,CH4,3.9,kg/TJ,1113.843276,kg -2c4aed0c-c426-36df-9c29-b3285a6f5d94,SESCO,II.5.1,Formosa,AR-P,annual,2021,gas oil combustion consumption by agriculture machines,285.60084,TJ,N2O,3.9,kg/TJ,1113.843276,kg -21679a9a-8373-3188-a98a-4ea278dacb5f,SESCO,II.5.1,Jujuy,AR-Y,annual,2021,gas oil combustion consumption by agriculture machines,1030.53972,TJ,CO2,74100.0,kg/TJ,76362993.252,kg -82b298c6-8ea8-31cd-aaf4-d7dc8e5b10cc,SESCO,II.5.1,Jujuy,AR-Y,annual,2021,gas oil combustion consumption by agriculture machines,1030.53972,TJ,CH4,3.9,kg/TJ,4019.104908,kg -82b298c6-8ea8-31cd-aaf4-d7dc8e5b10cc,SESCO,II.5.1,Jujuy,AR-Y,annual,2021,gas oil combustion consumption by agriculture machines,1030.53972,TJ,N2O,3.9,kg/TJ,4019.104908,kg -dfd2d573-480b-3426-801c-541984a74bff,SESCO,II.5.1,La Pampa,AR-L,annual,2021,gas oil combustion consumption by agriculture machines,1548.53664,TJ,CO2,74100.0,kg/TJ,114746565.024,kg -f85994ae-1b71-3759-92f1-07f4e8df2231,SESCO,II.5.1,La Pampa,AR-L,annual,2021,gas oil combustion consumption by agriculture machines,1548.53664,TJ,CH4,3.9,kg/TJ,6039.292896,kg -f85994ae-1b71-3759-92f1-07f4e8df2231,SESCO,II.5.1,La Pampa,AR-L,annual,2021,gas oil combustion consumption by agriculture machines,1548.53664,TJ,N2O,3.9,kg/TJ,6039.292896,kg -d58a7436-39c3-35ef-af5f-cd2a4b00eee4,SESCO,II.5.1,La Rioja,AR-F,annual,2021,gas oil combustion consumption by agriculture machines,141.26532,TJ,CO2,74100.0,kg/TJ,10467760.212,kg -d182fba2-8694-3f58-876e-673d5481ec26,SESCO,II.5.1,La Rioja,AR-F,annual,2021,gas oil combustion consumption by agriculture machines,141.26532,TJ,CH4,3.9,kg/TJ,550.934748,kg -d182fba2-8694-3f58-876e-673d5481ec26,SESCO,II.5.1,La Rioja,AR-F,annual,2021,gas oil combustion consumption by agriculture machines,141.26532,TJ,N2O,3.9,kg/TJ,550.934748,kg -9224f984-dd5c-38ce-9826-f240d4e2b89e,SESCO,II.5.1,Mendoza,AR-M,annual,2021,gas oil combustion consumption by agriculture machines,2160.59004,TJ,CO2,74100.0,kg/TJ,160099721.96400002,kg -219b3984-23fb-3748-ad8d-458391413d8f,SESCO,II.5.1,Mendoza,AR-M,annual,2021,gas oil combustion consumption by agriculture machines,2160.59004,TJ,CH4,3.9,kg/TJ,8426.301156,kg -219b3984-23fb-3748-ad8d-458391413d8f,SESCO,II.5.1,Mendoza,AR-M,annual,2021,gas oil combustion consumption by agriculture machines,2160.59004,TJ,N2O,3.9,kg/TJ,8426.301156,kg -74a3cf64-6f8c-359f-89b4-6ec0f52d897a,SESCO,II.5.1,Misiones,AR-N,annual,2021,gas oil combustion consumption by agriculture machines,1116.61368,TJ,CO2,74100.0,kg/TJ,82741073.688,kg -4adf9e33-63a7-3576-9424-239142dbf077,SESCO,II.5.1,Misiones,AR-N,annual,2021,gas oil combustion consumption by agriculture machines,1116.61368,TJ,CH4,3.9,kg/TJ,4354.793352,kg -4adf9e33-63a7-3576-9424-239142dbf077,SESCO,II.5.1,Misiones,AR-N,annual,2021,gas oil combustion consumption by agriculture machines,1116.61368,TJ,N2O,3.9,kg/TJ,4354.793352,kg -15811c84-9a75-35f4-ba79-8f6b70664bb1,SESCO,II.5.1,Rio Negro,AR-R,annual,2021,gas oil combustion consumption by agriculture machines,253.3818,TJ,CO2,74100.0,kg/TJ,18775591.38,kg -5a592aa2-0833-3988-8a1b-f49388815342,SESCO,II.5.1,Rio Negro,AR-R,annual,2021,gas oil combustion consumption by agriculture machines,253.3818,TJ,CH4,3.9,kg/TJ,988.18902,kg -5a592aa2-0833-3988-8a1b-f49388815342,SESCO,II.5.1,Rio Negro,AR-R,annual,2021,gas oil combustion consumption by agriculture machines,253.3818,TJ,N2O,3.9,kg/TJ,988.18902,kg -3aed6ef1-4512-3912-85d2-0a8605790bad,SESCO,II.5.1,Salta,AR-A,annual,2021,gas oil combustion consumption by agriculture machines,1486.73532,TJ,CO2,74100.0,kg/TJ,110167087.212,kg -8d987d7b-3eaf-38a7-a398-55bddb3933f4,SESCO,II.5.1,Salta,AR-A,annual,2021,gas oil combustion consumption by agriculture machines,1486.73532,TJ,CH4,3.9,kg/TJ,5798.267748,kg -8d987d7b-3eaf-38a7-a398-55bddb3933f4,SESCO,II.5.1,Salta,AR-A,annual,2021,gas oil combustion consumption by agriculture machines,1486.73532,TJ,N2O,3.9,kg/TJ,5798.267748,kg -1e5d7e8a-f39c-3ac4-b664-202011c3cbf7,SESCO,II.5.1,San Juan,AR-J,annual,2021,gas oil combustion consumption by agriculture machines,452.72808,TJ,CO2,74100.0,kg/TJ,33547150.728,kg -41cb1d5b-307e-30a2-8ff3-1acbba4f709b,SESCO,II.5.1,San Juan,AR-J,annual,2021,gas oil combustion consumption by agriculture machines,452.72808,TJ,CH4,3.9,kg/TJ,1765.639512,kg -41cb1d5b-307e-30a2-8ff3-1acbba4f709b,SESCO,II.5.1,San Juan,AR-J,annual,2021,gas oil combustion consumption by agriculture machines,452.72808,TJ,N2O,3.9,kg/TJ,1765.639512,kg -14b8398e-7777-3909-b62c-f66a10695d28,SESCO,II.5.1,San Luis,AR-D,annual,2021,gas oil combustion consumption by agriculture machines,326.95824,TJ,CO2,74100.0,kg/TJ,24227605.584,kg -6be77171-8613-3e9c-90e6-5349af0ea0e6,SESCO,II.5.1,San Luis,AR-D,annual,2021,gas oil combustion consumption by agriculture machines,326.95824,TJ,CH4,3.9,kg/TJ,1275.1371359999998,kg -6be77171-8613-3e9c-90e6-5349af0ea0e6,SESCO,II.5.1,San Luis,AR-D,annual,2021,gas oil combustion consumption by agriculture machines,326.95824,TJ,N2O,3.9,kg/TJ,1275.1371359999998,kg -4f70296a-3e0c-3c93-a833-2329ecfb024f,SESCO,II.5.1,Santa Fe,AR-S,annual,2021,gas oil combustion consumption by agriculture machines,7490.27664,TJ,CO2,74100.0,kg/TJ,555029499.024,kg -af6c0b34-ce90-3021-acbf-be3921a3a411,SESCO,II.5.1,Santa Fe,AR-S,annual,2021,gas oil combustion consumption by agriculture machines,7490.27664,TJ,CH4,3.9,kg/TJ,29212.078896,kg -af6c0b34-ce90-3021-acbf-be3921a3a411,SESCO,II.5.1,Santa Fe,AR-S,annual,2021,gas oil combustion consumption by agriculture machines,7490.27664,TJ,N2O,3.9,kg/TJ,29212.078896,kg -f61eaec0-c734-3697-a8e1-66a50aca5f91,SESCO,II.5.1,Santiago del Estero,AR-G,annual,2021,gas oil combustion consumption by agriculture machines,1627.3866,TJ,CO2,74100.0,kg/TJ,120589347.06,kg -1c099f8f-420b-38c5-9727-6dc78e1d0f7e,SESCO,II.5.1,Santiago del Estero,AR-G,annual,2021,gas oil combustion consumption by agriculture machines,1627.3866,TJ,CH4,3.9,kg/TJ,6346.80774,kg -1c099f8f-420b-38c5-9727-6dc78e1d0f7e,SESCO,II.5.1,Santiago del Estero,AR-G,annual,2021,gas oil combustion consumption by agriculture machines,1627.3866,TJ,N2O,3.9,kg/TJ,6346.80774,kg -1d54fe75-9047-36b7-bea4-6f6a2f76b456,SESCO,II.5.1,Tucuman,AR-T,annual,2021,gas oil combustion consumption by agriculture machines,1323.68964,TJ,CO2,74100.0,kg/TJ,98085402.324,kg -5c530932-c8e9-3c6e-b59f-fb8e62b80225,SESCO,II.5.1,Tucuman,AR-T,annual,2021,gas oil combustion consumption by agriculture machines,1323.68964,TJ,CH4,3.9,kg/TJ,5162.389596,kg -5c530932-c8e9-3c6e-b59f-fb8e62b80225,SESCO,II.5.1,Tucuman,AR-T,annual,2021,gas oil combustion consumption by agriculture machines,1323.68964,TJ,N2O,3.9,kg/TJ,5162.389596,kg -25696e11-71f4-3379-a067-7b3413a63844,SESCO,II.5.1,Buenos Aires,AR-B,annual,2021,gas oil combustion consumption by agriculture machines,929.25924,TJ,CO2,74100.0,kg/TJ,68858109.684,kg -a828e021-983c-3239-8e6d-1e1be912f1be,SESCO,II.5.1,Buenos Aires,AR-B,annual,2021,gas oil combustion consumption by agriculture machines,929.25924,TJ,CH4,3.9,kg/TJ,3624.111036,kg -a828e021-983c-3239-8e6d-1e1be912f1be,SESCO,II.5.1,Buenos Aires,AR-B,annual,2021,gas oil combustion consumption by agriculture machines,929.25924,TJ,N2O,3.9,kg/TJ,3624.111036,kg -af5703e1-faeb-38d1-adc2-ab86dde16bc7,SESCO,II.5.1,Capital Federal,AR-C,annual,2021,gas oil combustion consumption by agriculture machines,7.72968,TJ,CO2,74100.0,kg/TJ,572769.2880000001,kg -ce4133ae-5ba1-38c5-a264-f62b47c1aeee,SESCO,II.5.1,Capital Federal,AR-C,annual,2021,gas oil combustion consumption by agriculture machines,7.72968,TJ,CH4,3.9,kg/TJ,30.145751999999998,kg -ce4133ae-5ba1-38c5-a264-f62b47c1aeee,SESCO,II.5.1,Capital Federal,AR-C,annual,2021,gas oil combustion consumption by agriculture machines,7.72968,TJ,N2O,3.9,kg/TJ,30.145751999999998,kg -089d7448-ec84-3315-b1a8-ff89c522838a,SESCO,II.5.1,Catamarca,AR-K,annual,2021,gas oil combustion consumption by agriculture machines,58.8756,TJ,CO2,74100.0,kg/TJ,4362681.96,kg -a93a1099-3d9d-386d-84e3-015352ae6190,SESCO,II.5.1,Catamarca,AR-K,annual,2021,gas oil combustion consumption by agriculture machines,58.8756,TJ,CH4,3.9,kg/TJ,229.61484,kg -a93a1099-3d9d-386d-84e3-015352ae6190,SESCO,II.5.1,Catamarca,AR-K,annual,2021,gas oil combustion consumption by agriculture machines,58.8756,TJ,N2O,3.9,kg/TJ,229.61484,kg -0e29ffe1-3af8-3dda-a4f2-d36bfb134ba1,SESCO,II.5.1,Chaco,AR-H,annual,2021,gas oil combustion consumption by agriculture machines,65.44944,TJ,CO2,74100.0,kg/TJ,4849803.504,kg -3ee6e21d-78f0-36f2-b089-4b36cbb38171,SESCO,II.5.1,Chaco,AR-H,annual,2021,gas oil combustion consumption by agriculture machines,65.44944,TJ,CH4,3.9,kg/TJ,255.25281599999997,kg -3ee6e21d-78f0-36f2-b089-4b36cbb38171,SESCO,II.5.1,Chaco,AR-H,annual,2021,gas oil combustion consumption by agriculture machines,65.44944,TJ,N2O,3.9,kg/TJ,255.25281599999997,kg -b81e13cf-4e4a-3aaa-87c3-61c91235e23a,SESCO,II.5.1,Corrientes,AR-W,annual,2021,gas oil combustion consumption by agriculture machines,58.83948,TJ,CO2,74100.0,kg/TJ,4360005.468,kg -0a0206f1-8170-30b9-9a8e-edaea96270b5,SESCO,II.5.1,Corrientes,AR-W,annual,2021,gas oil combustion consumption by agriculture machines,58.83948,TJ,CH4,3.9,kg/TJ,229.473972,kg -0a0206f1-8170-30b9-9a8e-edaea96270b5,SESCO,II.5.1,Corrientes,AR-W,annual,2021,gas oil combustion consumption by agriculture machines,58.83948,TJ,N2O,3.9,kg/TJ,229.473972,kg -d6047409-6278-3241-b8ab-62d9a0e8a4ed,SESCO,II.5.1,Córdoba,AR-X,annual,2021,gas oil combustion consumption by agriculture machines,764.73264,TJ,CO2,74100.0,kg/TJ,56666688.624,kg -2ba21859-f503-3717-a5ba-d62c7a6b9947,SESCO,II.5.1,Córdoba,AR-X,annual,2021,gas oil combustion consumption by agriculture machines,764.73264,TJ,CH4,3.9,kg/TJ,2982.4572959999996,kg -2ba21859-f503-3717-a5ba-d62c7a6b9947,SESCO,II.5.1,Córdoba,AR-X,annual,2021,gas oil combustion consumption by agriculture machines,764.73264,TJ,N2O,3.9,kg/TJ,2982.4572959999996,kg -f379576b-6eba-3fa3-b8f3-f7c9d332f21f,SESCO,II.5.1,Entre Rios,AR-E,annual,2021,gas oil combustion consumption by agriculture machines,87.591,TJ,CO2,74100.0,kg/TJ,6490493.1,kg -123e2523-d0d4-3ee8-aada-c20dab0decb0,SESCO,II.5.1,Entre Rios,AR-E,annual,2021,gas oil combustion consumption by agriculture machines,87.591,TJ,CH4,3.9,kg/TJ,341.6049,kg -123e2523-d0d4-3ee8-aada-c20dab0decb0,SESCO,II.5.1,Entre Rios,AR-E,annual,2021,gas oil combustion consumption by agriculture machines,87.591,TJ,N2O,3.9,kg/TJ,341.6049,kg -ea151082-bab8-3804-aa4b-64224791d3d4,SESCO,II.5.1,Formosa,AR-P,annual,2021,gas oil combustion consumption by agriculture machines,50.78472,TJ,CO2,74100.0,kg/TJ,3763147.752,kg -915d31b3-c91a-33c1-a5e7-2a8def0eb6a7,SESCO,II.5.1,Formosa,AR-P,annual,2021,gas oil combustion consumption by agriculture machines,50.78472,TJ,CH4,3.9,kg/TJ,198.060408,kg -915d31b3-c91a-33c1-a5e7-2a8def0eb6a7,SESCO,II.5.1,Formosa,AR-P,annual,2021,gas oil combustion consumption by agriculture machines,50.78472,TJ,N2O,3.9,kg/TJ,198.060408,kg -6f21b1ff-f903-3fd6-8c1f-5f32377ace4b,SESCO,II.5.1,Jujuy,AR-Y,annual,2021,gas oil combustion consumption by agriculture machines,48.50916,TJ,CO2,74100.0,kg/TJ,3594528.756,kg -baf03f19-1063-3d08-9813-82d50a1da787,SESCO,II.5.1,Jujuy,AR-Y,annual,2021,gas oil combustion consumption by agriculture machines,48.50916,TJ,CH4,3.9,kg/TJ,189.185724,kg -baf03f19-1063-3d08-9813-82d50a1da787,SESCO,II.5.1,Jujuy,AR-Y,annual,2021,gas oil combustion consumption by agriculture machines,48.50916,TJ,N2O,3.9,kg/TJ,189.185724,kg -b9b610e5-a2ab-3717-a46e-0ae3cafb6c0a,SESCO,II.5.1,La Pampa,AR-L,annual,2021,gas oil combustion consumption by agriculture machines,200.35764,TJ,CO2,74100.0,kg/TJ,14846501.124,kg -8133a3a0-0a1c-392d-97ee-954d06808857,SESCO,II.5.1,La Pampa,AR-L,annual,2021,gas oil combustion consumption by agriculture machines,200.35764,TJ,CH4,3.9,kg/TJ,781.394796,kg -8133a3a0-0a1c-392d-97ee-954d06808857,SESCO,II.5.1,La Pampa,AR-L,annual,2021,gas oil combustion consumption by agriculture machines,200.35764,TJ,N2O,3.9,kg/TJ,781.394796,kg -11bc756a-69b6-3999-a36e-95eff748880c,SESCO,II.5.1,La Rioja,AR-F,annual,2021,gas oil combustion consumption by agriculture machines,22.90008,TJ,CO2,74100.0,kg/TJ,1696895.9279999998,kg -be13f099-7be5-3309-b7f6-f95aee1e03d3,SESCO,II.5.1,La Rioja,AR-F,annual,2021,gas oil combustion consumption by agriculture machines,22.90008,TJ,CH4,3.9,kg/TJ,89.310312,kg -be13f099-7be5-3309-b7f6-f95aee1e03d3,SESCO,II.5.1,La Rioja,AR-F,annual,2021,gas oil combustion consumption by agriculture machines,22.90008,TJ,N2O,3.9,kg/TJ,89.310312,kg -5d9df962-7f28-3bb7-a2fa-facee09a06e0,SESCO,II.5.1,Mendoza,AR-M,annual,2021,gas oil combustion consumption by agriculture machines,327.9696,TJ,CO2,74100.0,kg/TJ,24302547.36,kg -bb0c6f9e-ea16-32e7-969e-7241718228b0,SESCO,II.5.1,Mendoza,AR-M,annual,2021,gas oil combustion consumption by agriculture machines,327.9696,TJ,CH4,3.9,kg/TJ,1279.08144,kg -bb0c6f9e-ea16-32e7-969e-7241718228b0,SESCO,II.5.1,Mendoza,AR-M,annual,2021,gas oil combustion consumption by agriculture machines,327.9696,TJ,N2O,3.9,kg/TJ,1279.08144,kg -4624d6f6-3269-34f3-85e5-a0fcc9559056,SESCO,II.5.1,Misiones,AR-N,annual,2021,gas oil combustion consumption by agriculture machines,149.78964,TJ,CO2,74100.0,kg/TJ,11099412.324,kg -c546682e-6879-32e7-87ea-b6dcc48755ac,SESCO,II.5.1,Misiones,AR-N,annual,2021,gas oil combustion consumption by agriculture machines,149.78964,TJ,CH4,3.9,kg/TJ,584.179596,kg -c546682e-6879-32e7-87ea-b6dcc48755ac,SESCO,II.5.1,Misiones,AR-N,annual,2021,gas oil combustion consumption by agriculture machines,149.78964,TJ,N2O,3.9,kg/TJ,584.179596,kg -50a855e4-4512-340e-8e4a-5bea50c7ac7a,SESCO,II.5.1,Neuquén,AR-Q,annual,2021,gas oil combustion consumption by agriculture machines,20.732879999999998,TJ,CO2,74100.0,kg/TJ,1536306.4079999998,kg -2c877421-832e-3669-bab6-5bb01143ae22,SESCO,II.5.1,Neuquén,AR-Q,annual,2021,gas oil combustion consumption by agriculture machines,20.732879999999998,TJ,CH4,3.9,kg/TJ,80.85823199999999,kg -2c877421-832e-3669-bab6-5bb01143ae22,SESCO,II.5.1,Neuquén,AR-Q,annual,2021,gas oil combustion consumption by agriculture machines,20.732879999999998,TJ,N2O,3.9,kg/TJ,80.85823199999999,kg -89faca66-ddcb-3214-b89c-c853922a51a9,SESCO,II.5.1,Rio Negro,AR-R,annual,2021,gas oil combustion consumption by agriculture machines,64.79928,TJ,CO2,74100.0,kg/TJ,4801626.648,kg -1373d0e2-b19d-372f-9aa8-be0d730d7e07,SESCO,II.5.1,Rio Negro,AR-R,annual,2021,gas oil combustion consumption by agriculture machines,64.79928,TJ,CH4,3.9,kg/TJ,252.71719199999998,kg -1373d0e2-b19d-372f-9aa8-be0d730d7e07,SESCO,II.5.1,Rio Negro,AR-R,annual,2021,gas oil combustion consumption by agriculture machines,64.79928,TJ,N2O,3.9,kg/TJ,252.71719199999998,kg -0889f0d1-805c-3c91-a913-75d7834b053a,SESCO,II.5.1,Salta,AR-A,annual,2021,gas oil combustion consumption by agriculture machines,336.06048,TJ,CO2,74100.0,kg/TJ,24902081.568,kg -320b3788-f6f5-3bbd-a641-f3d88909c29a,SESCO,II.5.1,Salta,AR-A,annual,2021,gas oil combustion consumption by agriculture machines,336.06048,TJ,CH4,3.9,kg/TJ,1310.6358719999998,kg -320b3788-f6f5-3bbd-a641-f3d88909c29a,SESCO,II.5.1,Salta,AR-A,annual,2021,gas oil combustion consumption by agriculture machines,336.06048,TJ,N2O,3.9,kg/TJ,1310.6358719999998,kg -88983041-bd15-3dec-a1e8-f694362c6815,SESCO,II.5.1,San Juan,AR-J,annual,2021,gas oil combustion consumption by agriculture machines,80.22252,TJ,CO2,74100.0,kg/TJ,5944488.732,kg -526f8bdf-e9f0-395b-a470-059bea34983a,SESCO,II.5.1,San Juan,AR-J,annual,2021,gas oil combustion consumption by agriculture machines,80.22252,TJ,CH4,3.9,kg/TJ,312.86782800000003,kg -526f8bdf-e9f0-395b-a470-059bea34983a,SESCO,II.5.1,San Juan,AR-J,annual,2021,gas oil combustion consumption by agriculture machines,80.22252,TJ,N2O,3.9,kg/TJ,312.86782800000003,kg -6486d4ce-244f-3ef9-8fea-470be9f585cf,SESCO,II.5.1,San Luis,AR-D,annual,2021,gas oil combustion consumption by agriculture machines,57.90036,TJ,CO2,74100.0,kg/TJ,4290416.676,kg -ad8a48ff-748b-38a2-8b3f-9f403dd621f7,SESCO,II.5.1,San Luis,AR-D,annual,2021,gas oil combustion consumption by agriculture machines,57.90036,TJ,CH4,3.9,kg/TJ,225.81140399999998,kg -ad8a48ff-748b-38a2-8b3f-9f403dd621f7,SESCO,II.5.1,San Luis,AR-D,annual,2021,gas oil combustion consumption by agriculture machines,57.90036,TJ,N2O,3.9,kg/TJ,225.81140399999998,kg -b18835c1-51aa-3109-aabb-808d4a9b554e,SESCO,II.5.1,Santa Fe,AR-S,annual,2021,gas oil combustion consumption by agriculture machines,1012.9492799999999,TJ,CO2,74100.0,kg/TJ,75059541.648,kg -61da16ab-1103-3ce9-8545-29ae9d2556fc,SESCO,II.5.1,Santa Fe,AR-S,annual,2021,gas oil combustion consumption by agriculture machines,1012.9492799999999,TJ,CH4,3.9,kg/TJ,3950.5021919999995,kg -61da16ab-1103-3ce9-8545-29ae9d2556fc,SESCO,II.5.1,Santa Fe,AR-S,annual,2021,gas oil combustion consumption by agriculture machines,1012.9492799999999,TJ,N2O,3.9,kg/TJ,3950.5021919999995,kg -efbef7a6-24b0-3a91-b147-8d0f1a764d1a,SESCO,II.5.1,Santiago del Estero,AR-G,annual,2021,gas oil combustion consumption by agriculture machines,309.1872,TJ,CO2,74100.0,kg/TJ,22910771.52,kg -1ab9a8d5-5fdf-3ee7-bcdb-0210739d9b0e,SESCO,II.5.1,Santiago del Estero,AR-G,annual,2021,gas oil combustion consumption by agriculture machines,309.1872,TJ,CH4,3.9,kg/TJ,1205.83008,kg -1ab9a8d5-5fdf-3ee7-bcdb-0210739d9b0e,SESCO,II.5.1,Santiago del Estero,AR-G,annual,2021,gas oil combustion consumption by agriculture machines,309.1872,TJ,N2O,3.9,kg/TJ,1205.83008,kg -7fcf63c2-d664-3d12-a242-41cf7cc6098d,SESCO,II.5.1,Tucuman,AR-T,annual,2021,gas oil combustion consumption by agriculture machines,150.2592,TJ,CO2,74100.0,kg/TJ,11134206.719999999,kg -3eb81cab-55c1-393d-84d7-2c55a4a4ea78,SESCO,II.5.1,Tucuman,AR-T,annual,2021,gas oil combustion consumption by agriculture machines,150.2592,TJ,CH4,3.9,kg/TJ,586.0108799999999,kg -3eb81cab-55c1-393d-84d7-2c55a4a4ea78,SESCO,II.5.1,Tucuman,AR-T,annual,2021,gas oil combustion consumption by agriculture machines,150.2592,TJ,N2O,3.9,kg/TJ,586.0108799999999,kg -c88bd33a-dfe1-3e24-b88d-924a27d60fc1,SESCO,II.5.1,Buenos Aires,AR-B,annual,2021,jet kerosene combustion consumption by agriculture machines,6.322052999999999,TJ,CO2,71500.0,kg/TJ,452026.7894999999,kg -0d1b6f37-97d1-3c45-bb84-d738f467125c,SESCO,II.5.1,Buenos Aires,AR-B,annual,2021,jet kerosene combustion consumption by agriculture machines,6.322052999999999,TJ,CH4,0.5,kg/TJ,3.1610264999999993,kg -39d15425-a567-36cc-9bef-99b083056dbc,SESCO,II.5.1,Buenos Aires,AR-B,annual,2021,jet kerosene combustion consumption by agriculture machines,6.322052999999999,TJ,N2O,2.0,kg/TJ,12.644105999999997,kg -f15cf9af-afeb-31b9-a32e-757a60ba7346,SESCO,II.5.1,Córdoba,AR-X,annual,2021,jet kerosene combustion consumption by agriculture machines,0.31453,TJ,CO2,71500.0,kg/TJ,22488.894999999997,kg -cf48b8c3-2f61-3dd0-b123-b5d477ee9603,SESCO,II.5.1,Córdoba,AR-X,annual,2021,jet kerosene combustion consumption by agriculture machines,0.31453,TJ,CH4,0.5,kg/TJ,0.157265,kg -ba1ec442-4a67-3a2f-9a40-c16e4a8f5665,SESCO,II.5.1,Córdoba,AR-X,annual,2021,jet kerosene combustion consumption by agriculture machines,0.31453,TJ,N2O,2.0,kg/TJ,0.62906,kg -d891a249-0d3b-35be-a5cc-ef04c9a98509,SESCO,II.5.1,La Pampa,AR-L,annual,2021,jet kerosene combustion consumption by agriculture machines,0.22017099999999995,TJ,CO2,71500.0,kg/TJ,15742.226499999997,kg -ee03073d-9725-3ef3-ab35-e110df465517,SESCO,II.5.1,La Pampa,AR-L,annual,2021,jet kerosene combustion consumption by agriculture machines,0.22017099999999995,TJ,CH4,0.5,kg/TJ,0.11008549999999998,kg -d3dcdefd-96ac-303f-b0e8-ba6f4b286079,SESCO,II.5.1,La Pampa,AR-L,annual,2021,jet kerosene combustion consumption by agriculture machines,0.22017099999999995,TJ,N2O,2.0,kg/TJ,0.4403419999999999,kg -9f968c3e-cbe5-3315-bc81-a6a88ff259f2,SESCO,II.5.1,Santa Fe,AR-S,annual,2021,jet kerosene combustion consumption by agriculture machines,0.25162399999999996,TJ,CO2,71500.0,kg/TJ,17991.115999999998,kg -00ff08c4-4804-379c-97b3-2b1ae630872a,SESCO,II.5.1,Santa Fe,AR-S,annual,2021,jet kerosene combustion consumption by agriculture machines,0.25162399999999996,TJ,CH4,0.5,kg/TJ,0.12581199999999998,kg -a0907ad1-e862-3abd-a013-011f9aebfb24,SESCO,II.5.1,Santa Fe,AR-S,annual,2021,jet kerosene combustion consumption by agriculture machines,0.25162399999999996,TJ,N2O,2.0,kg/TJ,0.5032479999999999,kg -adbf8ebb-4c8d-3074-a215-b7825688f006,SESCO,II.1.1,Buenos Aires,AR-B,annual,2021,gas oil combustion consumption by to the public,22964.33748,TJ,CO2,74100.0,kg/TJ,1701657407.268,kg -888da79b-a7b1-322f-9716-8f05ca14a04d,SESCO,II.1.1,Buenos Aires,AR-B,annual,2021,gas oil combustion consumption by to the public,22964.33748,TJ,CH4,3.9,kg/TJ,89560.916172,kg -888da79b-a7b1-322f-9716-8f05ca14a04d,SESCO,II.1.1,Buenos Aires,AR-B,annual,2021,gas oil combustion consumption by to the public,22964.33748,TJ,N2O,3.9,kg/TJ,89560.916172,kg -4af4fabb-1a58-360e-806c-f4319493f6bc,SESCO,II.1.1,Capital Federal,AR-C,annual,2021,gas oil combustion consumption by to the public,2631.41424,TJ,CO2,74100.0,kg/TJ,194987795.18400002,kg -2b64f168-6de9-30c6-8a29-4db4968a9f81,SESCO,II.1.1,Capital Federal,AR-C,annual,2021,gas oil combustion consumption by to the public,2631.41424,TJ,CH4,3.9,kg/TJ,10262.515536,kg -2b64f168-6de9-30c6-8a29-4db4968a9f81,SESCO,II.1.1,Capital Federal,AR-C,annual,2021,gas oil combustion consumption by to the public,2631.41424,TJ,N2O,3.9,kg/TJ,10262.515536,kg -b2ad4701-c2df-3dff-af3d-17709a6d22f5,SESCO,II.1.1,Catamarca,AR-K,annual,2021,gas oil combustion consumption by to the public,275.05379999999997,TJ,CO2,74100.0,kg/TJ,20381486.58,kg -5555dbf0-353d-3fee-b7a3-a554bd013cc8,SESCO,II.1.1,Catamarca,AR-K,annual,2021,gas oil combustion consumption by to the public,275.05379999999997,TJ,CH4,3.9,kg/TJ,1072.7098199999998,kg -5555dbf0-353d-3fee-b7a3-a554bd013cc8,SESCO,II.1.1,Catamarca,AR-K,annual,2021,gas oil combustion consumption by to the public,275.05379999999997,TJ,N2O,3.9,kg/TJ,1072.7098199999998,kg -11f12227-b814-3420-9c28-724b5239014c,SESCO,II.1.1,Chaco,AR-H,annual,2021,gas oil combustion consumption by to the public,1884.41652,TJ,CO2,74100.0,kg/TJ,139635264.132,kg -673ecc32-f9cf-37ff-8f04-831135f654df,SESCO,II.1.1,Chaco,AR-H,annual,2021,gas oil combustion consumption by to the public,1884.41652,TJ,CH4,3.9,kg/TJ,7349.2244279999995,kg -673ecc32-f9cf-37ff-8f04-831135f654df,SESCO,II.1.1,Chaco,AR-H,annual,2021,gas oil combustion consumption by to the public,1884.41652,TJ,N2O,3.9,kg/TJ,7349.2244279999995,kg -da5e00c0-91b9-3a6e-9964-c38d598b6015,SESCO,II.1.1,Chubut,AR-U,annual,2021,gas oil combustion consumption by to the public,2571.5634,TJ,CO2,74100.0,kg/TJ,190552847.94,kg -0d3b4a14-d976-36ee-9925-ebbeafab5653,SESCO,II.1.1,Chubut,AR-U,annual,2021,gas oil combustion consumption by to the public,2571.5634,TJ,CH4,3.9,kg/TJ,10029.09726,kg -0d3b4a14-d976-36ee-9925-ebbeafab5653,SESCO,II.1.1,Chubut,AR-U,annual,2021,gas oil combustion consumption by to the public,2571.5634,TJ,N2O,3.9,kg/TJ,10029.09726,kg -5b15b0f4-eb79-3494-95db-e6923c7ed9b4,SESCO,II.1.1,Corrientes,AR-W,annual,2021,gas oil combustion consumption by to the public,1802.17128,TJ,CO2,74100.0,kg/TJ,133540891.848,kg -4cfaad03-1fe4-318e-865f-878244dfcdce,SESCO,II.1.1,Corrientes,AR-W,annual,2021,gas oil combustion consumption by to the public,1802.17128,TJ,CH4,3.9,kg/TJ,7028.467992,kg -4cfaad03-1fe4-318e-865f-878244dfcdce,SESCO,II.1.1,Corrientes,AR-W,annual,2021,gas oil combustion consumption by to the public,1802.17128,TJ,N2O,3.9,kg/TJ,7028.467992,kg -4b3728ab-c1d8-37eb-b5ef-0875fcb2c3fc,SESCO,II.1.1,Córdoba,AR-X,annual,2021,gas oil combustion consumption by to the public,8588.32464,TJ,CO2,74100.0,kg/TJ,636394855.824,kg -fa00db55-ce3a-3e1c-9cd3-e46734ca1bc8,SESCO,II.1.1,Córdoba,AR-X,annual,2021,gas oil combustion consumption by to the public,8588.32464,TJ,CH4,3.9,kg/TJ,33494.466096000004,kg -fa00db55-ce3a-3e1c-9cd3-e46734ca1bc8,SESCO,II.1.1,Córdoba,AR-X,annual,2021,gas oil combustion consumption by to the public,8588.32464,TJ,N2O,3.9,kg/TJ,33494.466096000004,kg -6a9896fc-5e12-34fe-8e04-4be06bd4c3d5,SESCO,II.1.1,Entre Rios,AR-E,annual,2021,gas oil combustion consumption by to the public,3093.78636,TJ,CO2,74100.0,kg/TJ,229249569.276,kg -1d424211-fe71-3504-80b0-e614c9b9d2bf,SESCO,II.1.1,Entre Rios,AR-E,annual,2021,gas oil combustion consumption by to the public,3093.78636,TJ,CH4,3.9,kg/TJ,12065.766804,kg -1d424211-fe71-3504-80b0-e614c9b9d2bf,SESCO,II.1.1,Entre Rios,AR-E,annual,2021,gas oil combustion consumption by to the public,3093.78636,TJ,N2O,3.9,kg/TJ,12065.766804,kg -1a0cee0c-9218-31f6-b2be-17c6ca925a1e,SESCO,II.1.1,Formosa,AR-P,annual,2021,gas oil combustion consumption by to the public,561.70212,TJ,CO2,74100.0,kg/TJ,41622127.092,kg -a5b1e777-bb4e-32cc-be06-484c4a7b95f4,SESCO,II.1.1,Formosa,AR-P,annual,2021,gas oil combustion consumption by to the public,561.70212,TJ,CH4,3.9,kg/TJ,2190.638268,kg -a5b1e777-bb4e-32cc-be06-484c4a7b95f4,SESCO,II.1.1,Formosa,AR-P,annual,2021,gas oil combustion consumption by to the public,561.70212,TJ,N2O,3.9,kg/TJ,2190.638268,kg -02841203-cdc2-3925-a4a1-95feaf3c8f56,SESCO,II.1.1,Jujuy,AR-Y,annual,2021,gas oil combustion consumption by to the public,1256.83152,TJ,CO2,74100.0,kg/TJ,93131215.632,kg -578a24ce-78d8-363c-a679-80432637534b,SESCO,II.1.1,Jujuy,AR-Y,annual,2021,gas oil combustion consumption by to the public,1256.83152,TJ,CH4,3.9,kg/TJ,4901.642927999999,kg -578a24ce-78d8-363c-a679-80432637534b,SESCO,II.1.1,Jujuy,AR-Y,annual,2021,gas oil combustion consumption by to the public,1256.83152,TJ,N2O,3.9,kg/TJ,4901.642927999999,kg -07662e52-270f-3746-825f-6ab0c53fdb66,SESCO,II.1.1,La Pampa,AR-L,annual,2021,gas oil combustion consumption by to the public,2324.71932,TJ,CO2,74100.0,kg/TJ,172261701.61200002,kg -1d8f3031-970e-31c2-ac91-a72feb6784a9,SESCO,II.1.1,La Pampa,AR-L,annual,2021,gas oil combustion consumption by to the public,2324.71932,TJ,CH4,3.9,kg/TJ,9066.405348,kg -1d8f3031-970e-31c2-ac91-a72feb6784a9,SESCO,II.1.1,La Pampa,AR-L,annual,2021,gas oil combustion consumption by to the public,2324.71932,TJ,N2O,3.9,kg/TJ,9066.405348,kg -3589940e-f269-3332-a075-16c9151346d3,SESCO,II.1.1,La Rioja,AR-F,annual,2021,gas oil combustion consumption by to the public,451.71672,TJ,CO2,74100.0,kg/TJ,33472208.952,kg -41c9e02c-e944-300e-ad64-e7e46cd69cdb,SESCO,II.1.1,La Rioja,AR-F,annual,2021,gas oil combustion consumption by to the public,451.71672,TJ,CH4,3.9,kg/TJ,1761.695208,kg -41c9e02c-e944-300e-ad64-e7e46cd69cdb,SESCO,II.1.1,La Rioja,AR-F,annual,2021,gas oil combustion consumption by to the public,451.71672,TJ,N2O,3.9,kg/TJ,1761.695208,kg -f26a300c-77e6-3eaf-8146-b51c24c80b1a,SESCO,II.1.1,Mendoza,AR-M,annual,2021,gas oil combustion consumption by to the public,7909.84656,TJ,CO2,74100.0,kg/TJ,586119630.096,kg -11ed71d0-0f80-3750-9247-e60d054cefeb,SESCO,II.1.1,Mendoza,AR-M,annual,2021,gas oil combustion consumption by to the public,7909.84656,TJ,CH4,3.9,kg/TJ,30848.401584,kg -11ed71d0-0f80-3750-9247-e60d054cefeb,SESCO,II.1.1,Mendoza,AR-M,annual,2021,gas oil combustion consumption by to the public,7909.84656,TJ,N2O,3.9,kg/TJ,30848.401584,kg -67906208-fab2-3a5a-a964-f1ce29e2cf36,SESCO,II.1.1,Misiones,AR-N,annual,2021,gas oil combustion consumption by to the public,2910.15228,TJ,CO2,74100.0,kg/TJ,215642283.94799998,kg -a9f84749-e71d-3811-96b4-606446e2fdd7,SESCO,II.1.1,Misiones,AR-N,annual,2021,gas oil combustion consumption by to the public,2910.15228,TJ,CH4,3.9,kg/TJ,11349.593891999999,kg -a9f84749-e71d-3811-96b4-606446e2fdd7,SESCO,II.1.1,Misiones,AR-N,annual,2021,gas oil combustion consumption by to the public,2910.15228,TJ,N2O,3.9,kg/TJ,11349.593891999999,kg -f238c4bc-70ba-3992-a45d-e65676116088,SESCO,II.1.1,Neuquén,AR-Q,annual,2021,gas oil combustion consumption by to the public,1421.10528,TJ,CO2,74100.0,kg/TJ,105303901.248,kg -fb362265-4e5f-3fe9-a472-16bae018da20,SESCO,II.1.1,Neuquén,AR-Q,annual,2021,gas oil combustion consumption by to the public,1421.10528,TJ,CH4,3.9,kg/TJ,5542.310592,kg -fb362265-4e5f-3fe9-a472-16bae018da20,SESCO,II.1.1,Neuquén,AR-Q,annual,2021,gas oil combustion consumption by to the public,1421.10528,TJ,N2O,3.9,kg/TJ,5542.310592,kg -e3a1a7b5-5019-38b5-84df-71ed57841ec9,SESCO,II.1.1,Rio Negro,AR-R,annual,2021,gas oil combustion consumption by to the public,2818.33524,TJ,CO2,74100.0,kg/TJ,208838641.28399998,kg -85ece170-4e29-3200-baf1-b2cfe692a754,SESCO,II.1.1,Rio Negro,AR-R,annual,2021,gas oil combustion consumption by to the public,2818.33524,TJ,CH4,3.9,kg/TJ,10991.507436,kg -85ece170-4e29-3200-baf1-b2cfe692a754,SESCO,II.1.1,Rio Negro,AR-R,annual,2021,gas oil combustion consumption by to the public,2818.33524,TJ,N2O,3.9,kg/TJ,10991.507436,kg -852c44ba-02f6-3312-a692-0459f2c06839,SESCO,II.1.1,Salta,AR-A,annual,2021,gas oil combustion consumption by to the public,2977.11876,TJ,CO2,74100.0,kg/TJ,220604500.116,kg -0227dc7e-689a-3677-a316-6157ba9bd884,SESCO,II.1.1,Salta,AR-A,annual,2021,gas oil combustion consumption by to the public,2977.11876,TJ,CH4,3.9,kg/TJ,11610.763164,kg -0227dc7e-689a-3677-a316-6157ba9bd884,SESCO,II.1.1,Salta,AR-A,annual,2021,gas oil combustion consumption by to the public,2977.11876,TJ,N2O,3.9,kg/TJ,11610.763164,kg -da89d084-2ec3-3584-b91c-61cb0feabb5b,SESCO,II.1.1,San Juan,AR-J,annual,2021,gas oil combustion consumption by to the public,1342.83324,TJ,CO2,74100.0,kg/TJ,99503943.08399999,kg -55dafa40-1d80-36ef-9b33-573fa1413576,SESCO,II.1.1,San Juan,AR-J,annual,2021,gas oil combustion consumption by to the public,1342.83324,TJ,CH4,3.9,kg/TJ,5237.049636,kg -55dafa40-1d80-36ef-9b33-573fa1413576,SESCO,II.1.1,San Juan,AR-J,annual,2021,gas oil combustion consumption by to the public,1342.83324,TJ,N2O,3.9,kg/TJ,5237.049636,kg -3cce1071-f7b7-36d7-b53e-2ba73aa7e1d1,SESCO,II.1.1,San Luis,AR-D,annual,2021,gas oil combustion consumption by to the public,1059.68856,TJ,CO2,74100.0,kg/TJ,78522922.296,kg -c8b25ca9-a004-3e9e-9ff3-fa4814564509,SESCO,II.1.1,San Luis,AR-D,annual,2021,gas oil combustion consumption by to the public,1059.68856,TJ,CH4,3.9,kg/TJ,4132.785384,kg -c8b25ca9-a004-3e9e-9ff3-fa4814564509,SESCO,II.1.1,San Luis,AR-D,annual,2021,gas oil combustion consumption by to the public,1059.68856,TJ,N2O,3.9,kg/TJ,4132.785384,kg -5fcf6500-eca1-3a50-b77c-d69a3686d460,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2021,gas oil combustion consumption by to the public,1398.96372,TJ,CO2,74100.0,kg/TJ,103663211.652,kg -6f48db94-15de-34b2-8fd6-75b3549b2e4e,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2021,gas oil combustion consumption by to the public,1398.96372,TJ,CH4,3.9,kg/TJ,5455.958508,kg -6f48db94-15de-34b2-8fd6-75b3549b2e4e,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2021,gas oil combustion consumption by to the public,1398.96372,TJ,N2O,3.9,kg/TJ,5455.958508,kg -7a29226a-65d4-3a4e-98cf-a0a5ac08e60b,SESCO,II.1.1,Santa Fe,AR-S,annual,2021,gas oil combustion consumption by to the public,6497.15724,TJ,CO2,74100.0,kg/TJ,481439351.48399997,kg -cd03add9-b6d5-3cd7-a7a3-3581eb112ec3,SESCO,II.1.1,Santa Fe,AR-S,annual,2021,gas oil combustion consumption by to the public,6497.15724,TJ,CH4,3.9,kg/TJ,25338.913235999997,kg -cd03add9-b6d5-3cd7-a7a3-3581eb112ec3,SESCO,II.1.1,Santa Fe,AR-S,annual,2021,gas oil combustion consumption by to the public,6497.15724,TJ,N2O,3.9,kg/TJ,25338.913235999997,kg -eb932fa3-0666-35c8-a187-ffb057be7ea2,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2021,gas oil combustion consumption by to the public,1980.89304,TJ,CO2,74100.0,kg/TJ,146784174.264,kg -0e5a4031-6301-3d80-ae6f-e9898d23f4f5,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2021,gas oil combustion consumption by to the public,1980.89304,TJ,CH4,3.9,kg/TJ,7725.482856,kg -0e5a4031-6301-3d80-ae6f-e9898d23f4f5,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2021,gas oil combustion consumption by to the public,1980.89304,TJ,N2O,3.9,kg/TJ,7725.482856,kg -e578f347-87f3-3449-b572-afe2e157339c,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2021,gas oil combustion consumption by to the public,686.74956,TJ,CO2,74100.0,kg/TJ,50888142.396,kg -eeb5e66e-f9e4-33fd-abe0-e622df455da8,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2021,gas oil combustion consumption by to the public,686.74956,TJ,CH4,3.9,kg/TJ,2678.323284,kg -eeb5e66e-f9e4-33fd-abe0-e622df455da8,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2021,gas oil combustion consumption by to the public,686.74956,TJ,N2O,3.9,kg/TJ,2678.323284,kg -57faed90-e99f-349e-94fa-f0a2f56267f3,SESCO,II.1.1,Tucuman,AR-T,annual,2021,gas oil combustion consumption by to the public,1789.7098799999999,TJ,CO2,74100.0,kg/TJ,132617502.108,kg -c9f33d83-6756-38d7-9d94-43b37e5b0a41,SESCO,II.1.1,Tucuman,AR-T,annual,2021,gas oil combustion consumption by to the public,1789.7098799999999,TJ,CH4,3.9,kg/TJ,6979.8685319999995,kg -c9f33d83-6756-38d7-9d94-43b37e5b0a41,SESCO,II.1.1,Tucuman,AR-T,annual,2021,gas oil combustion consumption by to the public,1789.7098799999999,TJ,N2O,3.9,kg/TJ,6979.8685319999995,kg -363c4aa0-69ee-3901-a6df-175431d39ced,SESCO,II.1.1,Buenos Aires,AR-B,annual,2021,gas oil combustion consumption by to the public,14805.98532,TJ,CO2,74100.0,kg/TJ,1097123512.212,kg -57a7081d-dd8f-3856-9a78-ad139080fca5,SESCO,II.1.1,Buenos Aires,AR-B,annual,2021,gas oil combustion consumption by to the public,14805.98532,TJ,CH4,3.9,kg/TJ,57743.342747999995,kg -57a7081d-dd8f-3856-9a78-ad139080fca5,SESCO,II.1.1,Buenos Aires,AR-B,annual,2021,gas oil combustion consumption by to the public,14805.98532,TJ,N2O,3.9,kg/TJ,57743.342747999995,kg -257c799b-29fe-3abc-9fea-3a8dcb454df6,SESCO,II.1.1,Capital Federal,AR-C,annual,2021,gas oil combustion consumption by to the public,2056.45608,TJ,CO2,74100.0,kg/TJ,152383395.528,kg -4b47261e-a31e-3819-8ba5-235a1ece7a3d,SESCO,II.1.1,Capital Federal,AR-C,annual,2021,gas oil combustion consumption by to the public,2056.45608,TJ,CH4,3.9,kg/TJ,8020.178712,kg -4b47261e-a31e-3819-8ba5-235a1ece7a3d,SESCO,II.1.1,Capital Federal,AR-C,annual,2021,gas oil combustion consumption by to the public,2056.45608,TJ,N2O,3.9,kg/TJ,8020.178712,kg -ab46a8f7-463c-31aa-84a6-91c7da9e9669,SESCO,II.1.1,Catamarca,AR-K,annual,2021,gas oil combustion consumption by to the public,361.52508,TJ,CO2,74100.0,kg/TJ,26789008.428,kg -320159ac-291a-390b-8091-9eca519fbd8b,SESCO,II.1.1,Catamarca,AR-K,annual,2021,gas oil combustion consumption by to the public,361.52508,TJ,CH4,3.9,kg/TJ,1409.9478119999999,kg -320159ac-291a-390b-8091-9eca519fbd8b,SESCO,II.1.1,Catamarca,AR-K,annual,2021,gas oil combustion consumption by to the public,361.52508,TJ,N2O,3.9,kg/TJ,1409.9478119999999,kg -47b0ec21-d10e-344f-a3e9-f458218ad070,SESCO,II.1.1,Chaco,AR-H,annual,2021,gas oil combustion consumption by to the public,1138.10508,TJ,CO2,74100.0,kg/TJ,84333586.428,kg -ca850f2b-f235-3038-bcfa-16a885c650bc,SESCO,II.1.1,Chaco,AR-H,annual,2021,gas oil combustion consumption by to the public,1138.10508,TJ,CH4,3.9,kg/TJ,4438.609812,kg -ca850f2b-f235-3038-bcfa-16a885c650bc,SESCO,II.1.1,Chaco,AR-H,annual,2021,gas oil combustion consumption by to the public,1138.10508,TJ,N2O,3.9,kg/TJ,4438.609812,kg -0ad5bcdc-a7d4-31ee-a3ff-75471a5caa38,SESCO,II.1.1,Chubut,AR-U,annual,2021,gas oil combustion consumption by to the public,1892.57964,TJ,CO2,74100.0,kg/TJ,140240151.324,kg -c7724bee-5293-3f88-8528-760654106940,SESCO,II.1.1,Chubut,AR-U,annual,2021,gas oil combustion consumption by to the public,1892.57964,TJ,CH4,3.9,kg/TJ,7381.060595999999,kg -c7724bee-5293-3f88-8528-760654106940,SESCO,II.1.1,Chubut,AR-U,annual,2021,gas oil combustion consumption by to the public,1892.57964,TJ,N2O,3.9,kg/TJ,7381.060595999999,kg -b816b594-095e-3fcd-90c4-f927021c92cf,SESCO,II.1.1,Corrientes,AR-W,annual,2021,gas oil combustion consumption by to the public,1161.51084,TJ,CO2,74100.0,kg/TJ,86067953.24399999,kg -925b8b08-4ada-3647-9541-e890f82e828d,SESCO,II.1.1,Corrientes,AR-W,annual,2021,gas oil combustion consumption by to the public,1161.51084,TJ,CH4,3.9,kg/TJ,4529.892276,kg -925b8b08-4ada-3647-9541-e890f82e828d,SESCO,II.1.1,Corrientes,AR-W,annual,2021,gas oil combustion consumption by to the public,1161.51084,TJ,N2O,3.9,kg/TJ,4529.892276,kg -4a969603-b106-31a7-aaa3-0c71db5bfef9,SESCO,II.1.1,Córdoba,AR-X,annual,2021,gas oil combustion consumption by to the public,5050.8402,TJ,CO2,74100.0,kg/TJ,374267258.82,kg -fdd1a2f7-7e1f-3cf0-95f0-04fb1ea4c6bb,SESCO,II.1.1,Córdoba,AR-X,annual,2021,gas oil combustion consumption by to the public,5050.8402,TJ,CH4,3.9,kg/TJ,19698.276779999997,kg -fdd1a2f7-7e1f-3cf0-95f0-04fb1ea4c6bb,SESCO,II.1.1,Córdoba,AR-X,annual,2021,gas oil combustion consumption by to the public,5050.8402,TJ,N2O,3.9,kg/TJ,19698.276779999997,kg -c386bc2e-8ffd-3f55-a7c3-3fdd49e833d2,SESCO,II.1.1,Entre Rios,AR-E,annual,2021,gas oil combustion consumption by to the public,1613.76936,TJ,CO2,74100.0,kg/TJ,119580309.576,kg -b846229f-e902-38bc-98c1-357f971cab6c,SESCO,II.1.1,Entre Rios,AR-E,annual,2021,gas oil combustion consumption by to the public,1613.76936,TJ,CH4,3.9,kg/TJ,6293.7005039999995,kg -b846229f-e902-38bc-98c1-357f971cab6c,SESCO,II.1.1,Entre Rios,AR-E,annual,2021,gas oil combustion consumption by to the public,1613.76936,TJ,N2O,3.9,kg/TJ,6293.7005039999995,kg -059cd0f2-d4e9-332b-88c8-764690063fde,SESCO,II.1.1,Formosa,AR-P,annual,2021,gas oil combustion consumption by to the public,359.79132,TJ,CO2,74100.0,kg/TJ,26660536.812,kg -15db86ed-f44b-36b7-939a-aad2bf647712,SESCO,II.1.1,Formosa,AR-P,annual,2021,gas oil combustion consumption by to the public,359.79132,TJ,CH4,3.9,kg/TJ,1403.186148,kg -15db86ed-f44b-36b7-939a-aad2bf647712,SESCO,II.1.1,Formosa,AR-P,annual,2021,gas oil combustion consumption by to the public,359.79132,TJ,N2O,3.9,kg/TJ,1403.186148,kg -bf468149-4578-367d-9a06-4a2f3bbdafac,SESCO,II.1.1,Jujuy,AR-Y,annual,2021,gas oil combustion consumption by to the public,917.0868,TJ,CO2,74100.0,kg/TJ,67956131.88000001,kg -1b3a48ea-0855-3010-9ff7-55906f20f551,SESCO,II.1.1,Jujuy,AR-Y,annual,2021,gas oil combustion consumption by to the public,917.0868,TJ,CH4,3.9,kg/TJ,3576.63852,kg -1b3a48ea-0855-3010-9ff7-55906f20f551,SESCO,II.1.1,Jujuy,AR-Y,annual,2021,gas oil combustion consumption by to the public,917.0868,TJ,N2O,3.9,kg/TJ,3576.63852,kg -f1698e30-0c57-3f0d-b6c8-19dadda6a7dd,SESCO,II.1.1,La Pampa,AR-L,annual,2021,gas oil combustion consumption by to the public,1293.42108,TJ,CO2,74100.0,kg/TJ,95842502.02800001,kg -c5dfadc0-0db8-3cad-b28a-8070d4822990,SESCO,II.1.1,La Pampa,AR-L,annual,2021,gas oil combustion consumption by to the public,1293.42108,TJ,CH4,3.9,kg/TJ,5044.3422120000005,kg -c5dfadc0-0db8-3cad-b28a-8070d4822990,SESCO,II.1.1,La Pampa,AR-L,annual,2021,gas oil combustion consumption by to the public,1293.42108,TJ,N2O,3.9,kg/TJ,5044.3422120000005,kg -c3794120-ff82-3a5d-9b11-471e1da61257,SESCO,II.1.1,La Rioja,AR-F,annual,2021,gas oil combustion consumption by to the public,498.6366,TJ,CO2,74100.0,kg/TJ,36948972.06,kg -ecd83ca1-190f-3b01-aeae-e9a473c74432,SESCO,II.1.1,La Rioja,AR-F,annual,2021,gas oil combustion consumption by to the public,498.6366,TJ,CH4,3.9,kg/TJ,1944.68274,kg -ecd83ca1-190f-3b01-aeae-e9a473c74432,SESCO,II.1.1,La Rioja,AR-F,annual,2021,gas oil combustion consumption by to the public,498.6366,TJ,N2O,3.9,kg/TJ,1944.68274,kg -d067528f-7d50-3923-90e4-5597724c308a,SESCO,II.1.1,Mendoza,AR-M,annual,2021,gas oil combustion consumption by to the public,3829.91196,TJ,CO2,74100.0,kg/TJ,283796476.236,kg -d87da4df-6e72-3fe6-a2d4-8f022bd33de4,SESCO,II.1.1,Mendoza,AR-M,annual,2021,gas oil combustion consumption by to the public,3829.91196,TJ,CH4,3.9,kg/TJ,14936.656643999999,kg -d87da4df-6e72-3fe6-a2d4-8f022bd33de4,SESCO,II.1.1,Mendoza,AR-M,annual,2021,gas oil combustion consumption by to the public,3829.91196,TJ,N2O,3.9,kg/TJ,14936.656643999999,kg -eca3bd23-af58-34d3-aa6e-d7dd3f2ca935,SESCO,II.1.1,Misiones,AR-N,annual,2021,gas oil combustion consumption by to the public,1428.47376,TJ,CO2,74100.0,kg/TJ,105849905.61600001,kg -6f197032-ef38-360b-93f3-62518a132098,SESCO,II.1.1,Misiones,AR-N,annual,2021,gas oil combustion consumption by to the public,1428.47376,TJ,CH4,3.9,kg/TJ,5571.047664000001,kg -6f197032-ef38-360b-93f3-62518a132098,SESCO,II.1.1,Misiones,AR-N,annual,2021,gas oil combustion consumption by to the public,1428.47376,TJ,N2O,3.9,kg/TJ,5571.047664000001,kg -94425014-bd2c-3767-89f6-f759f8819a39,SESCO,II.1.1,Neuquén,AR-Q,annual,2021,gas oil combustion consumption by to the public,2386.4483999999998,TJ,CO2,74100.0,kg/TJ,176835826.43999997,kg -21a47542-8696-3021-ad15-ea856129356a,SESCO,II.1.1,Neuquén,AR-Q,annual,2021,gas oil combustion consumption by to the public,2386.4483999999998,TJ,CH4,3.9,kg/TJ,9307.148759999998,kg -21a47542-8696-3021-ad15-ea856129356a,SESCO,II.1.1,Neuquén,AR-Q,annual,2021,gas oil combustion consumption by to the public,2386.4483999999998,TJ,N2O,3.9,kg/TJ,9307.148759999998,kg -88c05208-eb5d-3662-a6e8-8266b0385794,SESCO,II.1.1,Rio Negro,AR-R,annual,2021,gas oil combustion consumption by to the public,1853.06436,TJ,CO2,74100.0,kg/TJ,137312069.076,kg -2a009a24-c673-354f-bc06-9a8bfcaf21ed,SESCO,II.1.1,Rio Negro,AR-R,annual,2021,gas oil combustion consumption by to the public,1853.06436,TJ,CH4,3.9,kg/TJ,7226.9510040000005,kg -2a009a24-c673-354f-bc06-9a8bfcaf21ed,SESCO,II.1.1,Rio Negro,AR-R,annual,2021,gas oil combustion consumption by to the public,1853.06436,TJ,N2O,3.9,kg/TJ,7226.9510040000005,kg -09563c27-0a86-33ce-9fe6-09c6ae48d992,SESCO,II.1.1,Salta,AR-A,annual,2021,gas oil combustion consumption by to the public,1967.3480399999999,TJ,CO2,74100.0,kg/TJ,145780489.764,kg -e2168588-8585-35cd-b827-d3d749b94d0e,SESCO,II.1.1,Salta,AR-A,annual,2021,gas oil combustion consumption by to the public,1967.3480399999999,TJ,CH4,3.9,kg/TJ,7672.657356,kg -e2168588-8585-35cd-b827-d3d749b94d0e,SESCO,II.1.1,Salta,AR-A,annual,2021,gas oil combustion consumption by to the public,1967.3480399999999,TJ,N2O,3.9,kg/TJ,7672.657356,kg -70cbc907-4017-331e-8201-dcf4be5e8905,SESCO,II.1.1,San Juan,AR-J,annual,2021,gas oil combustion consumption by to the public,822.77748,TJ,CO2,74100.0,kg/TJ,60967811.268,kg -6513a002-8b0b-3bda-b98c-975a68b7322c,SESCO,II.1.1,San Juan,AR-J,annual,2021,gas oil combustion consumption by to the public,822.77748,TJ,CH4,3.9,kg/TJ,3208.832172,kg -6513a002-8b0b-3bda-b98c-975a68b7322c,SESCO,II.1.1,San Juan,AR-J,annual,2021,gas oil combustion consumption by to the public,822.77748,TJ,N2O,3.9,kg/TJ,3208.832172,kg -172df2d8-c49b-38f5-bb38-8ac04c057aa9,SESCO,II.1.1,San Luis,AR-D,annual,2021,gas oil combustion consumption by to the public,639.25176,TJ,CO2,74100.0,kg/TJ,47368555.416,kg -68f4531f-c940-3076-b900-d8d985212931,SESCO,II.1.1,San Luis,AR-D,annual,2021,gas oil combustion consumption by to the public,639.25176,TJ,CH4,3.9,kg/TJ,2493.0818639999998,kg -68f4531f-c940-3076-b900-d8d985212931,SESCO,II.1.1,San Luis,AR-D,annual,2021,gas oil combustion consumption by to the public,639.25176,TJ,N2O,3.9,kg/TJ,2493.0818639999998,kg -1503e0bd-18ee-3b95-9e11-e923b515855a,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2021,gas oil combustion consumption by to the public,1296.85248,TJ,CO2,74100.0,kg/TJ,96096768.768,kg -d170aa72-fae9-3b10-a10b-54e5a1307077,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2021,gas oil combustion consumption by to the public,1296.85248,TJ,CH4,3.9,kg/TJ,5057.724672,kg -d170aa72-fae9-3b10-a10b-54e5a1307077,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2021,gas oil combustion consumption by to the public,1296.85248,TJ,N2O,3.9,kg/TJ,5057.724672,kg -9e91beac-eb95-3bf9-90a5-bfb725af2a2d,SESCO,II.1.1,Santa Fe,AR-S,annual,2021,gas oil combustion consumption by to the public,3585.813,TJ,CO2,74100.0,kg/TJ,265708743.3,kg -cb247aaa-4007-3945-9ef6-3e19fe7d59b4,SESCO,II.1.1,Santa Fe,AR-S,annual,2021,gas oil combustion consumption by to the public,3585.813,TJ,CH4,3.9,kg/TJ,13984.6707,kg -cb247aaa-4007-3945-9ef6-3e19fe7d59b4,SESCO,II.1.1,Santa Fe,AR-S,annual,2021,gas oil combustion consumption by to the public,3585.813,TJ,N2O,3.9,kg/TJ,13984.6707,kg -11433683-3325-3ba1-b30d-9c7562a9b61c,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2021,gas oil combustion consumption by to the public,963.75384,TJ,CO2,74100.0,kg/TJ,71414159.544,kg -cc28e47f-7484-349d-9e26-ac88f46e4bba,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2021,gas oil combustion consumption by to the public,963.75384,TJ,CH4,3.9,kg/TJ,3758.639976,kg -cc28e47f-7484-349d-9e26-ac88f46e4bba,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2021,gas oil combustion consumption by to the public,963.75384,TJ,N2O,3.9,kg/TJ,3758.639976,kg -cf7858f1-2547-3cde-8336-350fbbfbe29a,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2021,gas oil combustion consumption by to the public,360.51372,TJ,CO2,74100.0,kg/TJ,26714066.652,kg -9642df7c-f6be-325f-ab47-d5351e252987,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2021,gas oil combustion consumption by to the public,360.51372,TJ,CH4,3.9,kg/TJ,1406.0035079999998,kg -9642df7c-f6be-325f-ab47-d5351e252987,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2021,gas oil combustion consumption by to the public,360.51372,TJ,N2O,3.9,kg/TJ,1406.0035079999998,kg -cda0fa19-49ac-306b-b939-65e2504ff4cc,SESCO,II.1.1,Tucuman,AR-T,annual,2021,gas oil combustion consumption by to the public,1278.03396,TJ,CO2,74100.0,kg/TJ,94702316.436,kg -26d7685f-fcfd-3d8c-9cf5-29fd5efc30bf,SESCO,II.1.1,Tucuman,AR-T,annual,2021,gas oil combustion consumption by to the public,1278.03396,TJ,CH4,3.9,kg/TJ,4984.332444,kg -26d7685f-fcfd-3d8c-9cf5-29fd5efc30bf,SESCO,II.1.1,Tucuman,AR-T,annual,2021,gas oil combustion consumption by to the public,1278.03396,TJ,N2O,3.9,kg/TJ,4984.332444,kg -9c0d7b88-1639-3e16-8c49-8d39d64a1ee0,SESCO,II.1.1,Buenos Aires,AR-B,annual,2021,jet kerosene combustion consumption by to the public,92.40891399999998,TJ,CO2,71500.0,kg/TJ,6607237.350999999,kg -fce64ae9-05be-3cba-9b28-6a42ac05d2a9,SESCO,II.1.1,Buenos Aires,AR-B,annual,2021,jet kerosene combustion consumption by to the public,92.40891399999998,TJ,CH4,0.5,kg/TJ,46.20445699999999,kg -06672f50-f9e9-34fb-8b9d-00544e92dee2,SESCO,II.1.1,Buenos Aires,AR-B,annual,2021,jet kerosene combustion consumption by to the public,92.40891399999998,TJ,N2O,2.0,kg/TJ,184.81782799999996,kg -3d13aacc-e7e1-3083-80d5-0a2b69128f1f,SESCO,II.1.1,Capital Federal,AR-C,annual,2021,jet kerosene combustion consumption by to the public,2.7364109999999995,TJ,CO2,71500.0,kg/TJ,195653.38649999996,kg -429ca01b-4a99-324d-8ef9-cf55d7400fa3,SESCO,II.1.1,Capital Federal,AR-C,annual,2021,jet kerosene combustion consumption by to the public,2.7364109999999995,TJ,CH4,0.5,kg/TJ,1.3682054999999997,kg -325cb057-4993-37c6-9291-e74d266e8f60,SESCO,II.1.1,Capital Federal,AR-C,annual,2021,jet kerosene combustion consumption by to the public,2.7364109999999995,TJ,N2O,2.0,kg/TJ,5.472821999999999,kg -e4c97ef5-eab2-31ef-ba84-a284b2452d65,SESCO,II.1.1,Catamarca,AR-K,annual,2021,jet kerosene combustion consumption by to the public,3.0509409999999995,TJ,CO2,71500.0,kg/TJ,218142.28149999995,kg -cd8647a0-804d-3c95-94fb-65afc83c18b5,SESCO,II.1.1,Catamarca,AR-K,annual,2021,jet kerosene combustion consumption by to the public,3.0509409999999995,TJ,CH4,0.5,kg/TJ,1.5254704999999997,kg -a1abc769-0c4e-3829-b693-049c7039a429,SESCO,II.1.1,Catamarca,AR-K,annual,2021,jet kerosene combustion consumption by to the public,3.0509409999999995,TJ,N2O,2.0,kg/TJ,6.101881999999999,kg -0e65416d-3a85-38b6-ab95-c193fccd4fa0,SESCO,II.1.1,Chubut,AR-U,annual,2021,jet kerosene combustion consumption by to the public,8.712480999999999,TJ,CO2,71500.0,kg/TJ,622942.3914999999,kg -60c71f86-9128-36bf-851a-1fe73a8e36c0,SESCO,II.1.1,Chubut,AR-U,annual,2021,jet kerosene combustion consumption by to the public,8.712480999999999,TJ,CH4,0.5,kg/TJ,4.356240499999999,kg -d10c2735-1925-39c7-96a9-d76a3a7b21f1,SESCO,II.1.1,Chubut,AR-U,annual,2021,jet kerosene combustion consumption by to the public,8.712480999999999,TJ,N2O,2.0,kg/TJ,17.424961999999997,kg -937f54af-6708-34b5-8481-84c107d8fcbd,SESCO,II.1.1,Corrientes,AR-W,annual,2021,jet kerosene combustion consumption by to the public,0.8177779999999999,TJ,CO2,71500.0,kg/TJ,58471.12699999999,kg -e2900598-c5bb-380c-b400-16f4e7f9b51d,SESCO,II.1.1,Corrientes,AR-W,annual,2021,jet kerosene combustion consumption by to the public,0.8177779999999999,TJ,CH4,0.5,kg/TJ,0.40888899999999995,kg -179c81df-e72d-30a5-a99e-cb3c948b760b,SESCO,II.1.1,Corrientes,AR-W,annual,2021,jet kerosene combustion consumption by to the public,0.8177779999999999,TJ,N2O,2.0,kg/TJ,1.6355559999999998,kg -2a9dca06-2497-3f01-9b15-a778294c3efd,SESCO,II.1.1,Córdoba,AR-X,annual,2021,jet kerosene combustion consumption by to the public,29.660178999999996,TJ,CO2,71500.0,kg/TJ,2120702.7984999996,kg -f4b09924-8fb7-3f04-b41a-ea21ed6f314c,SESCO,II.1.1,Córdoba,AR-X,annual,2021,jet kerosene combustion consumption by to the public,29.660178999999996,TJ,CH4,0.5,kg/TJ,14.830089499999998,kg -b7ca16b7-90cd-310e-9522-9fd5ec7dc2b8,SESCO,II.1.1,Córdoba,AR-X,annual,2021,jet kerosene combustion consumption by to the public,29.660178999999996,TJ,N2O,2.0,kg/TJ,59.32035799999999,kg -74745fe9-bf3a-3aef-847c-5f09b512132f,SESCO,II.1.1,Entre Rios,AR-E,annual,2021,jet kerosene combustion consumption by to the public,4.434873,TJ,CO2,71500.0,kg/TJ,317093.41949999996,kg -566e7963-0d90-3fc9-bc4a-c91f29fb49d2,SESCO,II.1.1,Entre Rios,AR-E,annual,2021,jet kerosene combustion consumption by to the public,4.434873,TJ,CH4,0.5,kg/TJ,2.2174365,kg -a2301ac6-1023-30a6-88c3-86db563b5032,SESCO,II.1.1,Entre Rios,AR-E,annual,2021,jet kerosene combustion consumption by to the public,4.434873,TJ,N2O,2.0,kg/TJ,8.869746,kg -6bcb3301-1419-364b-bf1b-87fe4420dd15,SESCO,II.1.1,La Pampa,AR-L,annual,2021,jet kerosene combustion consumption by to the public,1.8871799999999996,TJ,CO2,71500.0,kg/TJ,134933.36999999997,kg -fd75dd9b-0b82-3f7d-95de-e27f4841448d,SESCO,II.1.1,La Pampa,AR-L,annual,2021,jet kerosene combustion consumption by to the public,1.8871799999999996,TJ,CH4,0.5,kg/TJ,0.9435899999999998,kg -19495348-368a-3384-a9f2-55b615a02479,SESCO,II.1.1,La Pampa,AR-L,annual,2021,jet kerosene combustion consumption by to the public,1.8871799999999996,TJ,N2O,2.0,kg/TJ,3.7743599999999993,kg -6c7fb95c-7d6e-3e02-9720-417cbe12b138,SESCO,II.1.1,La Rioja,AR-F,annual,2021,jet kerosene combustion consumption by to the public,1.2266669999999997,TJ,CO2,71500.0,kg/TJ,87706.69049999998,kg -b7c86dfd-da1b-3f73-a313-abff94ab89bd,SESCO,II.1.1,La Rioja,AR-F,annual,2021,jet kerosene combustion consumption by to the public,1.2266669999999997,TJ,CH4,0.5,kg/TJ,0.6133334999999999,kg -22bc982e-3b58-3629-834d-53e2854f6d1c,SESCO,II.1.1,La Rioja,AR-F,annual,2021,jet kerosene combustion consumption by to the public,1.2266669999999997,TJ,N2O,2.0,kg/TJ,2.4533339999999995,kg -7de54fa9-d227-33ef-bc04-3f4825be5b5f,SESCO,II.1.1,Mendoza,AR-M,annual,2021,jet kerosene combustion consumption by to the public,10.473848999999998,TJ,CO2,71500.0,kg/TJ,748880.2034999998,kg -1e7782b4-6360-3df1-96e6-c2cd5437c897,SESCO,II.1.1,Mendoza,AR-M,annual,2021,jet kerosene combustion consumption by to the public,10.473848999999998,TJ,CH4,0.5,kg/TJ,5.236924499999999,kg -de49b96a-2043-3e63-9256-2df7928826e9,SESCO,II.1.1,Mendoza,AR-M,annual,2021,jet kerosene combustion consumption by to the public,10.473848999999998,TJ,N2O,2.0,kg/TJ,20.947697999999995,kg -a2703384-2e2b-3671-a117-4ebad087fc8d,SESCO,II.1.1,Neuquén,AR-Q,annual,2021,jet kerosene combustion consumption by to the public,4.623590999999999,TJ,CO2,71500.0,kg/TJ,330586.75649999996,kg -71598fe0-c00d-3300-a023-450feb96add6,SESCO,II.1.1,Neuquén,AR-Q,annual,2021,jet kerosene combustion consumption by to the public,4.623590999999999,TJ,CH4,0.5,kg/TJ,2.3117954999999997,kg -6ae03025-7f6c-3dca-bdca-8bebddea0bd1,SESCO,II.1.1,Neuquén,AR-Q,annual,2021,jet kerosene combustion consumption by to the public,4.623590999999999,TJ,N2O,2.0,kg/TJ,9.247181999999999,kg -26c7c2f4-d442-3eda-a620-559f6aef0226,SESCO,II.1.1,San Juan,AR-J,annual,2021,jet kerosene combustion consumption by to the public,4.749402999999999,TJ,CO2,71500.0,kg/TJ,339582.3144999999,kg -daa9a9b2-63b4-3d14-b626-8e1765a56b5a,SESCO,II.1.1,San Juan,AR-J,annual,2021,jet kerosene combustion consumption by to the public,4.749402999999999,TJ,CH4,0.5,kg/TJ,2.3747014999999996,kg -c5287f4c-27eb-37c6-900f-c1688705dc61,SESCO,II.1.1,San Juan,AR-J,annual,2021,jet kerosene combustion consumption by to the public,4.749402999999999,TJ,N2O,2.0,kg/TJ,9.498805999999998,kg -6551c2f5-7423-36b4-b276-4673e0872dfb,SESCO,II.1.1,San Luis,AR-D,annual,2021,jet kerosene combustion consumption by to the public,4.466326,TJ,CO2,71500.0,kg/TJ,319342.30899999995,kg -2a774c69-cd73-3a93-8a40-3a016b0e8ae3,SESCO,II.1.1,San Luis,AR-D,annual,2021,jet kerosene combustion consumption by to the public,4.466326,TJ,CH4,0.5,kg/TJ,2.233163,kg -9fd27f2b-e757-3546-8325-074bd549048c,SESCO,II.1.1,San Luis,AR-D,annual,2021,jet kerosene combustion consumption by to the public,4.466326,TJ,N2O,2.0,kg/TJ,8.932652,kg -9ae1e380-49f7-3552-932c-88ce1351cda3,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2021,jet kerosene combustion consumption by to the public,4.434873,TJ,CO2,71500.0,kg/TJ,317093.41949999996,kg -11d47033-6357-3db1-b78d-1aae8ad09b38,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2021,jet kerosene combustion consumption by to the public,4.434873,TJ,CH4,0.5,kg/TJ,2.2174365,kg -c917c9f7-04ca-3372-8f9c-f4d1dd8a3174,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2021,jet kerosene combustion consumption by to the public,4.434873,TJ,N2O,2.0,kg/TJ,8.869746,kg -f1687561-dbab-3b24-a01f-b921dd7a235a,SESCO,II.1.1,Santa Fe,AR-S,annual,2021,jet kerosene combustion consumption by to the public,19.846842999999996,TJ,CO2,71500.0,kg/TJ,1419049.2744999998,kg -5d04cd00-d022-39e5-9485-1bf839898bcc,SESCO,II.1.1,Santa Fe,AR-S,annual,2021,jet kerosene combustion consumption by to the public,19.846842999999996,TJ,CH4,0.5,kg/TJ,9.923421499999998,kg -453ed98c-78e2-31a4-9c8c-7710f3317861,SESCO,II.1.1,Santa Fe,AR-S,annual,2021,jet kerosene combustion consumption by to the public,19.846842999999996,TJ,N2O,2.0,kg/TJ,39.69368599999999,kg -a8a89b98-85a1-3826-ac67-74586b3f978b,SESCO,II.1.1,Tucuman,AR-T,annual,2021,jet kerosene combustion consumption by to the public,9.530259,TJ,CO2,71500.0,kg/TJ,681413.5184999999,kg -d03efe11-5c5b-3c70-b58b-7254363fa376,SESCO,II.1.1,Tucuman,AR-T,annual,2021,jet kerosene combustion consumption by to the public,9.530259,TJ,CH4,0.5,kg/TJ,4.7651295,kg -e2d76f23-9e18-3d27-94bb-cee6617800de,SESCO,II.1.1,Tucuman,AR-T,annual,2021,jet kerosene combustion consumption by to the public,9.530259,TJ,N2O,2.0,kg/TJ,19.060518,kg -4de4ae97-b5bf-359c-93c4-db82289a5d94,SESCO,II.2.1,San Juan,AR-J,annual,2021,gas oil combustion consumption by railway transport,3.0702,TJ,CO2,74100.0,kg/TJ,227501.81999999998,kg -f4458fcb-f8a8-319e-bfe4-0182e1ff1f87,SESCO,II.2.1,San Juan,AR-J,annual,2021,gas oil combustion consumption by railway transport,3.0702,TJ,CH4,3.9,kg/TJ,11.97378,kg -f4458fcb-f8a8-319e-bfe4-0182e1ff1f87,SESCO,II.2.1,San Juan,AR-J,annual,2021,gas oil combustion consumption by railway transport,3.0702,TJ,N2O,3.9,kg/TJ,11.97378,kg -fe84da45-a4ba-39af-ab1c-749d38676f07,SESCO,II.2.1,San Juan,AR-J,annual,2021,gas oil combustion consumption by railway transport,4.98456,TJ,CO2,74100.0,kg/TJ,369355.896,kg -aacd1e09-3953-3876-a0d4-0eebbd4e1b38,SESCO,II.2.1,San Juan,AR-J,annual,2021,gas oil combustion consumption by railway transport,4.98456,TJ,CH4,3.9,kg/TJ,19.439784,kg -aacd1e09-3953-3876-a0d4-0eebbd4e1b38,SESCO,II.2.1,San Juan,AR-J,annual,2021,gas oil combustion consumption by railway transport,4.98456,TJ,N2O,3.9,kg/TJ,19.439784,kg -bd7d49e6-0607-3671-9548-91df665fab01,SESCO,II.1.1,Buenos Aires,AR-B,annual,2021,gas oil combustion consumption by freight transport,11169.96552,TJ,CO2,74100.0,kg/TJ,827694445.032,kg -a9fa3f54-4c58-3a52-adfe-8a0225761b9d,SESCO,II.1.1,Buenos Aires,AR-B,annual,2021,gas oil combustion consumption by freight transport,11169.96552,TJ,CH4,3.9,kg/TJ,43562.865527999995,kg -a9fa3f54-4c58-3a52-adfe-8a0225761b9d,SESCO,II.1.1,Buenos Aires,AR-B,annual,2021,gas oil combustion consumption by freight transport,11169.96552,TJ,N2O,3.9,kg/TJ,43562.865527999995,kg -c84cdac8-094c-3046-89d9-d094ba56b145,SESCO,II.1.1,Capital Federal,AR-C,annual,2021,gas oil combustion consumption by freight transport,884.14536,TJ,CO2,74100.0,kg/TJ,65515171.176,kg -55b03431-2813-3909-aac9-2be770cfde56,SESCO,II.1.1,Capital Federal,AR-C,annual,2021,gas oil combustion consumption by freight transport,884.14536,TJ,CH4,3.9,kg/TJ,3448.1669039999997,kg -55b03431-2813-3909-aac9-2be770cfde56,SESCO,II.1.1,Capital Federal,AR-C,annual,2021,gas oil combustion consumption by freight transport,884.14536,TJ,N2O,3.9,kg/TJ,3448.1669039999997,kg -4458cbba-0265-38d3-bca6-69260b833beb,SESCO,II.1.1,Catamarca,AR-K,annual,2021,gas oil combustion consumption by freight transport,37.2036,TJ,CO2,74100.0,kg/TJ,2756786.7600000002,kg -9ba433a8-4633-3f7b-af7b-56bb2a9f71ea,SESCO,II.1.1,Catamarca,AR-K,annual,2021,gas oil combustion consumption by freight transport,37.2036,TJ,CH4,3.9,kg/TJ,145.09404,kg -9ba433a8-4633-3f7b-af7b-56bb2a9f71ea,SESCO,II.1.1,Catamarca,AR-K,annual,2021,gas oil combustion consumption by freight transport,37.2036,TJ,N2O,3.9,kg/TJ,145.09404,kg -d7ddde96-7826-30cc-8f72-318d4752f84a,SESCO,II.1.1,Chaco,AR-H,annual,2021,gas oil combustion consumption by freight transport,418.19736,TJ,CO2,74100.0,kg/TJ,30988424.376000002,kg -c44c25d7-c2ae-3db2-a7d8-772820101460,SESCO,II.1.1,Chaco,AR-H,annual,2021,gas oil combustion consumption by freight transport,418.19736,TJ,CH4,3.9,kg/TJ,1630.9697039999999,kg -c44c25d7-c2ae-3db2-a7d8-772820101460,SESCO,II.1.1,Chaco,AR-H,annual,2021,gas oil combustion consumption by freight transport,418.19736,TJ,N2O,3.9,kg/TJ,1630.9697039999999,kg -92228826-7fcd-33b8-9355-817f12899958,SESCO,II.1.1,Chubut,AR-U,annual,2021,gas oil combustion consumption by freight transport,830.36268,TJ,CO2,74100.0,kg/TJ,61529874.588,kg -09c5e210-186a-3cea-8388-4e217fd47df6,SESCO,II.1.1,Chubut,AR-U,annual,2021,gas oil combustion consumption by freight transport,830.36268,TJ,CH4,3.9,kg/TJ,3238.4144519999995,kg -09c5e210-186a-3cea-8388-4e217fd47df6,SESCO,II.1.1,Chubut,AR-U,annual,2021,gas oil combustion consumption by freight transport,830.36268,TJ,N2O,3.9,kg/TJ,3238.4144519999995,kg -32a87713-b381-3429-839b-97ca15d6c4ae,SESCO,II.1.1,Corrientes,AR-W,annual,2021,gas oil combustion consumption by freight transport,754.908,TJ,CO2,74100.0,kg/TJ,55938682.800000004,kg -4f879946-fa2e-3bbe-a549-696684d3e62f,SESCO,II.1.1,Corrientes,AR-W,annual,2021,gas oil combustion consumption by freight transport,754.908,TJ,CH4,3.9,kg/TJ,2944.1412,kg -4f879946-fa2e-3bbe-a549-696684d3e62f,SESCO,II.1.1,Corrientes,AR-W,annual,2021,gas oil combustion consumption by freight transport,754.908,TJ,N2O,3.9,kg/TJ,2944.1412,kg -bf4022bf-b14e-33bf-811b-fc0a01936498,SESCO,II.1.1,Córdoba,AR-X,annual,2021,gas oil combustion consumption by freight transport,2924.96148,TJ,CO2,74100.0,kg/TJ,216739645.66799998,kg -6bc2566d-dbde-3829-8f04-ee3fa7c012de,SESCO,II.1.1,Córdoba,AR-X,annual,2021,gas oil combustion consumption by freight transport,2924.96148,TJ,CH4,3.9,kg/TJ,11407.349772,kg -6bc2566d-dbde-3829-8f04-ee3fa7c012de,SESCO,II.1.1,Córdoba,AR-X,annual,2021,gas oil combustion consumption by freight transport,2924.96148,TJ,N2O,3.9,kg/TJ,11407.349772,kg -ab4f97ef-ef1e-34d6-9d4d-f69dca4e843b,SESCO,II.1.1,Entre Rios,AR-E,annual,2021,gas oil combustion consumption by freight transport,1238.66316,TJ,CO2,74100.0,kg/TJ,91784940.156,kg -3218372d-e197-364b-85b6-473936956f69,SESCO,II.1.1,Entre Rios,AR-E,annual,2021,gas oil combustion consumption by freight transport,1238.66316,TJ,CH4,3.9,kg/TJ,4830.786324,kg -3218372d-e197-364b-85b6-473936956f69,SESCO,II.1.1,Entre Rios,AR-E,annual,2021,gas oil combustion consumption by freight transport,1238.66316,TJ,N2O,3.9,kg/TJ,4830.786324,kg -ef560526-c4d4-3a01-b280-c8839e0b9823,SESCO,II.1.1,Formosa,AR-P,annual,2021,gas oil combustion consumption by freight transport,61.7652,TJ,CO2,74100.0,kg/TJ,4576801.32,kg -8dc95a28-da09-30b6-8eb2-7d7ff21780bf,SESCO,II.1.1,Formosa,AR-P,annual,2021,gas oil combustion consumption by freight transport,61.7652,TJ,CH4,3.9,kg/TJ,240.88428,kg -8dc95a28-da09-30b6-8eb2-7d7ff21780bf,SESCO,II.1.1,Formosa,AR-P,annual,2021,gas oil combustion consumption by freight transport,61.7652,TJ,N2O,3.9,kg/TJ,240.88428,kg -93bd7040-87ac-38bb-8626-8b6d233c33d8,SESCO,II.1.1,Jujuy,AR-Y,annual,2021,gas oil combustion consumption by freight transport,199.16568,TJ,CO2,74100.0,kg/TJ,14758176.888,kg -c72f84b0-1537-322a-ac80-a2afc22dc30a,SESCO,II.1.1,Jujuy,AR-Y,annual,2021,gas oil combustion consumption by freight transport,199.16568,TJ,CH4,3.9,kg/TJ,776.746152,kg -c72f84b0-1537-322a-ac80-a2afc22dc30a,SESCO,II.1.1,Jujuy,AR-Y,annual,2021,gas oil combustion consumption by freight transport,199.16568,TJ,N2O,3.9,kg/TJ,776.746152,kg -d16780d5-e756-341e-b7fa-c349c5b02183,SESCO,II.1.1,La Pampa,AR-L,annual,2021,gas oil combustion consumption by freight transport,1079.84352,TJ,CO2,74100.0,kg/TJ,80016404.83199999,kg -7382be68-4a2a-3380-bd7a-9960059c81a5,SESCO,II.1.1,La Pampa,AR-L,annual,2021,gas oil combustion consumption by freight transport,1079.84352,TJ,CH4,3.9,kg/TJ,4211.389727999999,kg -7382be68-4a2a-3380-bd7a-9960059c81a5,SESCO,II.1.1,La Pampa,AR-L,annual,2021,gas oil combustion consumption by freight transport,1079.84352,TJ,N2O,3.9,kg/TJ,4211.389727999999,kg -f3ccf743-1036-38dc-b0f8-69050adca500,SESCO,II.1.1,La Rioja,AR-F,annual,2021,gas oil combustion consumption by freight transport,91.78092,TJ,CO2,74100.0,kg/TJ,6800966.171999999,kg -f02dc9ae-aa2b-3e92-88c2-6ec741327058,SESCO,II.1.1,La Rioja,AR-F,annual,2021,gas oil combustion consumption by freight transport,91.78092,TJ,CH4,3.9,kg/TJ,357.945588,kg -f02dc9ae-aa2b-3e92-88c2-6ec741327058,SESCO,II.1.1,La Rioja,AR-F,annual,2021,gas oil combustion consumption by freight transport,91.78092,TJ,N2O,3.9,kg/TJ,357.945588,kg -5391057a-0518-3813-9be1-fccec69c18ba,SESCO,II.1.1,Mendoza,AR-M,annual,2021,gas oil combustion consumption by freight transport,1813.54908,TJ,CO2,74100.0,kg/TJ,134383986.828,kg -149cfa6e-1b42-3daa-906b-fc55b3e2bbc0,SESCO,II.1.1,Mendoza,AR-M,annual,2021,gas oil combustion consumption by freight transport,1813.54908,TJ,CH4,3.9,kg/TJ,7072.841412,kg -149cfa6e-1b42-3daa-906b-fc55b3e2bbc0,SESCO,II.1.1,Mendoza,AR-M,annual,2021,gas oil combustion consumption by freight transport,1813.54908,TJ,N2O,3.9,kg/TJ,7072.841412,kg -1d2da580-f768-342c-895a-29979e5d4a81,SESCO,II.1.1,Misiones,AR-N,annual,2021,gas oil combustion consumption by freight transport,689.92812,TJ,CO2,74100.0,kg/TJ,51123673.692,kg -08bcf7ca-fe33-3fa7-a9b0-5c80b462f2f9,SESCO,II.1.1,Misiones,AR-N,annual,2021,gas oil combustion consumption by freight transport,689.92812,TJ,CH4,3.9,kg/TJ,2690.719668,kg -08bcf7ca-fe33-3fa7-a9b0-5c80b462f2f9,SESCO,II.1.1,Misiones,AR-N,annual,2021,gas oil combustion consumption by freight transport,689.92812,TJ,N2O,3.9,kg/TJ,2690.719668,kg -b777a0de-de2f-333e-81cc-f41b042cb67c,SESCO,II.1.1,Neuquén,AR-Q,annual,2021,gas oil combustion consumption by freight transport,831.8436,TJ,CO2,74100.0,kg/TJ,61639610.760000005,kg -ea89ff33-ae27-33bd-abed-85dc0dd5990b,SESCO,II.1.1,Neuquén,AR-Q,annual,2021,gas oil combustion consumption by freight transport,831.8436,TJ,CH4,3.9,kg/TJ,3244.19004,kg -ea89ff33-ae27-33bd-abed-85dc0dd5990b,SESCO,II.1.1,Neuquén,AR-Q,annual,2021,gas oil combustion consumption by freight transport,831.8436,TJ,N2O,3.9,kg/TJ,3244.19004,kg -053346e2-35ca-3cb3-b92b-a122bc695660,SESCO,II.1.1,Rio Negro,AR-R,annual,2021,gas oil combustion consumption by freight transport,887.93796,TJ,CO2,74100.0,kg/TJ,65796202.835999995,kg -dd116e92-2788-3056-a189-f1656f1cbf3b,SESCO,II.1.1,Rio Negro,AR-R,annual,2021,gas oil combustion consumption by freight transport,887.93796,TJ,CH4,3.9,kg/TJ,3462.958044,kg -dd116e92-2788-3056-a189-f1656f1cbf3b,SESCO,II.1.1,Rio Negro,AR-R,annual,2021,gas oil combustion consumption by freight transport,887.93796,TJ,N2O,3.9,kg/TJ,3462.958044,kg -131b7e17-34ce-3e4d-a9e2-af20c5b7782a,SESCO,II.1.1,Salta,AR-A,annual,2021,gas oil combustion consumption by freight transport,805.1509199999999,TJ,CO2,74100.0,kg/TJ,59661683.172,kg -79896d3a-b7f1-39d9-990f-ca060e037b83,SESCO,II.1.1,Salta,AR-A,annual,2021,gas oil combustion consumption by freight transport,805.1509199999999,TJ,CH4,3.9,kg/TJ,3140.0885879999996,kg -79896d3a-b7f1-39d9-990f-ca060e037b83,SESCO,II.1.1,Salta,AR-A,annual,2021,gas oil combustion consumption by freight transport,805.1509199999999,TJ,N2O,3.9,kg/TJ,3140.0885879999996,kg -adcd7a8c-2568-34e8-b553-20e3f93a066d,SESCO,II.1.1,San Juan,AR-J,annual,2021,gas oil combustion consumption by freight transport,138.55632,TJ,CO2,74100.0,kg/TJ,10267023.312,kg -fa5a466b-2caa-336f-84ae-2d401c86347b,SESCO,II.1.1,San Juan,AR-J,annual,2021,gas oil combustion consumption by freight transport,138.55632,TJ,CH4,3.9,kg/TJ,540.369648,kg -fa5a466b-2caa-336f-84ae-2d401c86347b,SESCO,II.1.1,San Juan,AR-J,annual,2021,gas oil combustion consumption by freight transport,138.55632,TJ,N2O,3.9,kg/TJ,540.369648,kg -dbe1a8f3-9fb5-32c5-8f42-6a037aa48a4c,SESCO,II.1.1,San Luis,AR-D,annual,2021,gas oil combustion consumption by freight transport,571.09332,TJ,CO2,74100.0,kg/TJ,42318015.011999995,kg -2eccf46e-23a8-3d70-9b83-7bdb158766a0,SESCO,II.1.1,San Luis,AR-D,annual,2021,gas oil combustion consumption by freight transport,571.09332,TJ,CH4,3.9,kg/TJ,2227.263948,kg -2eccf46e-23a8-3d70-9b83-7bdb158766a0,SESCO,II.1.1,San Luis,AR-D,annual,2021,gas oil combustion consumption by freight transport,571.09332,TJ,N2O,3.9,kg/TJ,2227.263948,kg -10ec8f51-e5ab-348d-8a5f-38325bcf8a5b,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2021,gas oil combustion consumption by freight transport,592.15128,TJ,CO2,74100.0,kg/TJ,43878409.848000005,kg -2784913c-883b-311c-ac37-7c0dd0d79fae,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2021,gas oil combustion consumption by freight transport,592.15128,TJ,CH4,3.9,kg/TJ,2309.389992,kg -2784913c-883b-311c-ac37-7c0dd0d79fae,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2021,gas oil combustion consumption by freight transport,592.15128,TJ,N2O,3.9,kg/TJ,2309.389992,kg -027bcb8c-1299-3798-939c-84224a9befed,SESCO,II.1.1,Santa Fe,AR-S,annual,2021,gas oil combustion consumption by freight transport,3219.48396,TJ,CO2,74100.0,kg/TJ,238563761.436,kg -2a3b9f42-cea1-303c-a378-5af62ba8dcdc,SESCO,II.1.1,Santa Fe,AR-S,annual,2021,gas oil combustion consumption by freight transport,3219.48396,TJ,CH4,3.9,kg/TJ,12555.987444,kg -2a3b9f42-cea1-303c-a378-5af62ba8dcdc,SESCO,II.1.1,Santa Fe,AR-S,annual,2021,gas oil combustion consumption by freight transport,3219.48396,TJ,N2O,3.9,kg/TJ,12555.987444,kg -32002838-434f-3106-809a-48e2fb6fe8b8,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2021,gas oil combustion consumption by freight transport,702.3534,TJ,CO2,74100.0,kg/TJ,52044386.94,kg -6ff3dfda-936b-3597-a36e-f7d595ba56b8,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2021,gas oil combustion consumption by freight transport,702.3534,TJ,CH4,3.9,kg/TJ,2739.1782599999997,kg -6ff3dfda-936b-3597-a36e-f7d595ba56b8,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2021,gas oil combustion consumption by freight transport,702.3534,TJ,N2O,3.9,kg/TJ,2739.1782599999997,kg -4a223a14-3e38-3085-a173-4df9f76e6dac,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2021,gas oil combustion consumption by freight transport,285.05904,TJ,CO2,74100.0,kg/TJ,21122874.864,kg -a09dabda-3554-3f11-88ff-0f4eafca62eb,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2021,gas oil combustion consumption by freight transport,285.05904,TJ,CH4,3.9,kg/TJ,1111.7302559999998,kg -a09dabda-3554-3f11-88ff-0f4eafca62eb,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2021,gas oil combustion consumption by freight transport,285.05904,TJ,N2O,3.9,kg/TJ,1111.7302559999998,kg -b8bf00bd-c4cd-3d43-82f4-6d953bfe440c,SESCO,II.1.1,Tucuman,AR-T,annual,2021,gas oil combustion consumption by freight transport,405.2664,TJ,CO2,74100.0,kg/TJ,30030240.24,kg -1811159b-4156-3c8f-92d4-60689e0671c6,SESCO,II.1.1,Tucuman,AR-T,annual,2021,gas oil combustion consumption by freight transport,405.2664,TJ,CH4,3.9,kg/TJ,1580.5389599999999,kg -1811159b-4156-3c8f-92d4-60689e0671c6,SESCO,II.1.1,Tucuman,AR-T,annual,2021,gas oil combustion consumption by freight transport,405.2664,TJ,N2O,3.9,kg/TJ,1580.5389599999999,kg -5cdf3a4b-f2d8-3d7d-a2b5-5cfedf3e65de,SESCO,II.1.1,Buenos Aires,AR-B,annual,2021,gas oil combustion consumption by freight transport,4004.84112,TJ,CO2,74100.0,kg/TJ,296758726.992,kg -5c5103da-a151-3a53-9af1-0f14d70ea713,SESCO,II.1.1,Buenos Aires,AR-B,annual,2021,gas oil combustion consumption by freight transport,4004.84112,TJ,CH4,3.9,kg/TJ,15618.880368,kg -5c5103da-a151-3a53-9af1-0f14d70ea713,SESCO,II.1.1,Buenos Aires,AR-B,annual,2021,gas oil combustion consumption by freight transport,4004.84112,TJ,N2O,3.9,kg/TJ,15618.880368,kg -6433dbae-ec3e-366b-8d8e-3111f621f7a3,SESCO,II.1.1,Capital Federal,AR-C,annual,2021,gas oil combustion consumption by freight transport,495.13295999999997,TJ,CO2,74100.0,kg/TJ,36689352.335999995,kg -146af22d-c0fd-3120-ba58-c50ed64cb84b,SESCO,II.1.1,Capital Federal,AR-C,annual,2021,gas oil combustion consumption by freight transport,495.13295999999997,TJ,CH4,3.9,kg/TJ,1931.0185439999998,kg -146af22d-c0fd-3120-ba58-c50ed64cb84b,SESCO,II.1.1,Capital Federal,AR-C,annual,2021,gas oil combustion consumption by freight transport,495.13295999999997,TJ,N2O,3.9,kg/TJ,1931.0185439999998,kg -fb1a49b3-5dc9-374e-8241-ed3ddc8dba77,SESCO,II.1.1,Catamarca,AR-K,annual,2021,gas oil combustion consumption by freight transport,20.44392,TJ,CO2,74100.0,kg/TJ,1514894.4719999998,kg -608e6c4e-0172-3086-8ded-a3054a75bb51,SESCO,II.1.1,Catamarca,AR-K,annual,2021,gas oil combustion consumption by freight transport,20.44392,TJ,CH4,3.9,kg/TJ,79.73128799999999,kg -608e6c4e-0172-3086-8ded-a3054a75bb51,SESCO,II.1.1,Catamarca,AR-K,annual,2021,gas oil combustion consumption by freight transport,20.44392,TJ,N2O,3.9,kg/TJ,79.73128799999999,kg -6bb89b8d-2350-3620-a372-39f632e5465d,SESCO,II.1.1,Chaco,AR-H,annual,2021,gas oil combustion consumption by freight transport,160.58952,TJ,CO2,74100.0,kg/TJ,11899683.432,kg -d16dffaa-6d05-3f95-b057-fa804a043a08,SESCO,II.1.1,Chaco,AR-H,annual,2021,gas oil combustion consumption by freight transport,160.58952,TJ,CH4,3.9,kg/TJ,626.299128,kg -d16dffaa-6d05-3f95-b057-fa804a043a08,SESCO,II.1.1,Chaco,AR-H,annual,2021,gas oil combustion consumption by freight transport,160.58952,TJ,N2O,3.9,kg/TJ,626.299128,kg -3a652a09-8e0a-352e-9cbc-88e54f3261f3,SESCO,II.1.1,Chubut,AR-U,annual,2021,gas oil combustion consumption by freight transport,435.9684,TJ,CO2,74100.0,kg/TJ,32305258.439999998,kg -1d38fd49-c46c-3fa6-b586-d15c24027df3,SESCO,II.1.1,Chubut,AR-U,annual,2021,gas oil combustion consumption by freight transport,435.9684,TJ,CH4,3.9,kg/TJ,1700.27676,kg -1d38fd49-c46c-3fa6-b586-d15c24027df3,SESCO,II.1.1,Chubut,AR-U,annual,2021,gas oil combustion consumption by freight transport,435.9684,TJ,N2O,3.9,kg/TJ,1700.27676,kg -0f6ae104-5a08-33ac-92fa-66d0864501d6,SESCO,II.1.1,Corrientes,AR-W,annual,2021,gas oil combustion consumption by freight transport,208.91808,TJ,CO2,74100.0,kg/TJ,15480829.728,kg -6bbbe7f2-4b04-36dc-ade6-898ad92d9086,SESCO,II.1.1,Corrientes,AR-W,annual,2021,gas oil combustion consumption by freight transport,208.91808,TJ,CH4,3.9,kg/TJ,814.780512,kg -6bbbe7f2-4b04-36dc-ade6-898ad92d9086,SESCO,II.1.1,Corrientes,AR-W,annual,2021,gas oil combustion consumption by freight transport,208.91808,TJ,N2O,3.9,kg/TJ,814.780512,kg -f70fe27c-447f-3444-8018-f93e205ae3ba,SESCO,II.1.1,Córdoba,AR-X,annual,2021,gas oil combustion consumption by freight transport,819.7795199999999,TJ,CO2,74100.0,kg/TJ,60745662.432,kg -2861b0a0-0458-3a9c-8433-ba9d16ff91f8,SESCO,II.1.1,Córdoba,AR-X,annual,2021,gas oil combustion consumption by freight transport,819.7795199999999,TJ,CH4,3.9,kg/TJ,3197.1401279999995,kg -2861b0a0-0458-3a9c-8433-ba9d16ff91f8,SESCO,II.1.1,Córdoba,AR-X,annual,2021,gas oil combustion consumption by freight transport,819.7795199999999,TJ,N2O,3.9,kg/TJ,3197.1401279999995,kg -4ce558d7-6343-3a1a-af8f-7fb3d31cbffd,SESCO,II.1.1,Entre Rios,AR-E,annual,2021,gas oil combustion consumption by freight transport,315.147,TJ,CO2,74100.0,kg/TJ,23352392.7,kg -468b0ebd-11b4-3a2d-a53e-f59a39967bcc,SESCO,II.1.1,Entre Rios,AR-E,annual,2021,gas oil combustion consumption by freight transport,315.147,TJ,CH4,3.9,kg/TJ,1229.0733,kg -468b0ebd-11b4-3a2d-a53e-f59a39967bcc,SESCO,II.1.1,Entre Rios,AR-E,annual,2021,gas oil combustion consumption by freight transport,315.147,TJ,N2O,3.9,kg/TJ,1229.0733,kg -6bff51b0-2331-3ea4-af6e-72343a2589d1,SESCO,II.1.1,Formosa,AR-P,annual,2021,gas oil combustion consumption by freight transport,39.9126,TJ,CO2,74100.0,kg/TJ,2957523.6599999997,kg -646ad33a-2235-38cd-b2dc-a0e6794b8376,SESCO,II.1.1,Formosa,AR-P,annual,2021,gas oil combustion consumption by freight transport,39.9126,TJ,CH4,3.9,kg/TJ,155.65913999999998,kg -646ad33a-2235-38cd-b2dc-a0e6794b8376,SESCO,II.1.1,Formosa,AR-P,annual,2021,gas oil combustion consumption by freight transport,39.9126,TJ,N2O,3.9,kg/TJ,155.65913999999998,kg -9d6fd374-6d52-3b20-8b88-e12982887c7e,SESCO,II.1.1,Jujuy,AR-Y,annual,2021,gas oil combustion consumption by freight transport,60.17592,TJ,CO2,74100.0,kg/TJ,4459035.672,kg -66ac95bd-9537-3197-a9f7-783ca538fdd7,SESCO,II.1.1,Jujuy,AR-Y,annual,2021,gas oil combustion consumption by freight transport,60.17592,TJ,CH4,3.9,kg/TJ,234.68608799999998,kg -66ac95bd-9537-3197-a9f7-783ca538fdd7,SESCO,II.1.1,Jujuy,AR-Y,annual,2021,gas oil combustion consumption by freight transport,60.17592,TJ,N2O,3.9,kg/TJ,234.68608799999998,kg -26c71165-631d-3c39-869e-09fd7c897a86,SESCO,II.1.1,La Pampa,AR-L,annual,2021,gas oil combustion consumption by freight transport,203.64455999999998,TJ,CO2,74100.0,kg/TJ,15090061.896,kg -409048b5-a109-3644-bb56-5f451ed7b2cb,SESCO,II.1.1,La Pampa,AR-L,annual,2021,gas oil combustion consumption by freight transport,203.64455999999998,TJ,CH4,3.9,kg/TJ,794.2137839999999,kg -409048b5-a109-3644-bb56-5f451ed7b2cb,SESCO,II.1.1,La Pampa,AR-L,annual,2021,gas oil combustion consumption by freight transport,203.64455999999998,TJ,N2O,3.9,kg/TJ,794.2137839999999,kg -b389a5de-9ec3-3353-a10f-d5ce1f86a66c,SESCO,II.1.1,La Rioja,AR-F,annual,2021,gas oil combustion consumption by freight transport,47.281079999999996,TJ,CO2,74100.0,kg/TJ,3503528.0279999995,kg -89dabcf6-f951-398b-b925-781796b1c69a,SESCO,II.1.1,La Rioja,AR-F,annual,2021,gas oil combustion consumption by freight transport,47.281079999999996,TJ,CH4,3.9,kg/TJ,184.396212,kg -89dabcf6-f951-398b-b925-781796b1c69a,SESCO,II.1.1,La Rioja,AR-F,annual,2021,gas oil combustion consumption by freight transport,47.281079999999996,TJ,N2O,3.9,kg/TJ,184.396212,kg -0cc9b29d-339a-39e7-8cb4-662c604aa3d1,SESCO,II.1.1,Mendoza,AR-M,annual,2021,gas oil combustion consumption by freight transport,556.39248,TJ,CO2,74100.0,kg/TJ,41228682.768,kg -d23848b8-28ed-3c7f-b537-a87a820ac9b8,SESCO,II.1.1,Mendoza,AR-M,annual,2021,gas oil combustion consumption by freight transport,556.39248,TJ,CH4,3.9,kg/TJ,2169.930672,kg -d23848b8-28ed-3c7f-b537-a87a820ac9b8,SESCO,II.1.1,Mendoza,AR-M,annual,2021,gas oil combustion consumption by freight transport,556.39248,TJ,N2O,3.9,kg/TJ,2169.930672,kg -a2b7af1e-8e5d-3a66-bdf6-f6ad722ca8fc,SESCO,II.1.1,Misiones,AR-N,annual,2021,gas oil combustion consumption by freight transport,164.59884,TJ,CO2,74100.0,kg/TJ,12196774.044,kg -3bb5e42a-b84e-3d27-8ea4-7c7ad4fbc394,SESCO,II.1.1,Misiones,AR-N,annual,2021,gas oil combustion consumption by freight transport,164.59884,TJ,CH4,3.9,kg/TJ,641.935476,kg -3bb5e42a-b84e-3d27-8ea4-7c7ad4fbc394,SESCO,II.1.1,Misiones,AR-N,annual,2021,gas oil combustion consumption by freight transport,164.59884,TJ,N2O,3.9,kg/TJ,641.935476,kg -997039f6-f33d-38a1-b502-c8bca0ad4586,SESCO,II.1.1,Neuquén,AR-Q,annual,2021,gas oil combustion consumption by freight transport,1197.41412,TJ,CO2,74100.0,kg/TJ,88728386.292,kg -09e4d48e-987b-3fc1-b628-61e3904b08c5,SESCO,II.1.1,Neuquén,AR-Q,annual,2021,gas oil combustion consumption by freight transport,1197.41412,TJ,CH4,3.9,kg/TJ,4669.915067999999,kg -09e4d48e-987b-3fc1-b628-61e3904b08c5,SESCO,II.1.1,Neuquén,AR-Q,annual,2021,gas oil combustion consumption by freight transport,1197.41412,TJ,N2O,3.9,kg/TJ,4669.915067999999,kg -cd19faff-765c-3220-b6d8-f349c4c3c311,SESCO,II.1.1,Rio Negro,AR-R,annual,2021,gas oil combustion consumption by freight transport,412.02083999999996,TJ,CO2,74100.0,kg/TJ,30530744.244,kg -a5a4560a-a0f5-3ec6-b1cf-91e78d786d23,SESCO,II.1.1,Rio Negro,AR-R,annual,2021,gas oil combustion consumption by freight transport,412.02083999999996,TJ,CH4,3.9,kg/TJ,1606.8812759999998,kg -a5a4560a-a0f5-3ec6-b1cf-91e78d786d23,SESCO,II.1.1,Rio Negro,AR-R,annual,2021,gas oil combustion consumption by freight transport,412.02083999999996,TJ,N2O,3.9,kg/TJ,1606.8812759999998,kg -71fa6f15-3e04-3b7c-b7e9-759fde469f52,SESCO,II.1.1,Salta,AR-A,annual,2021,gas oil combustion consumption by freight transport,287.98476,TJ,CO2,74100.0,kg/TJ,21339670.716,kg -d1128c8d-f6d5-36d5-9b81-fd388c4c31da,SESCO,II.1.1,Salta,AR-A,annual,2021,gas oil combustion consumption by freight transport,287.98476,TJ,CH4,3.9,kg/TJ,1123.140564,kg -d1128c8d-f6d5-36d5-9b81-fd388c4c31da,SESCO,II.1.1,Salta,AR-A,annual,2021,gas oil combustion consumption by freight transport,287.98476,TJ,N2O,3.9,kg/TJ,1123.140564,kg -6d0ef19c-af67-3471-a5fa-38371b933f0d,SESCO,II.1.1,San Juan,AR-J,annual,2021,gas oil combustion consumption by freight transport,66.85812,TJ,CO2,74100.0,kg/TJ,4954186.692,kg -deecda7b-1daf-3a72-8197-d59b337e1f79,SESCO,II.1.1,San Juan,AR-J,annual,2021,gas oil combustion consumption by freight transport,66.85812,TJ,CH4,3.9,kg/TJ,260.746668,kg -deecda7b-1daf-3a72-8197-d59b337e1f79,SESCO,II.1.1,San Juan,AR-J,annual,2021,gas oil combustion consumption by freight transport,66.85812,TJ,N2O,3.9,kg/TJ,260.746668,kg -ebc83cba-b501-3aae-83c8-06a62528076a,SESCO,II.1.1,San Luis,AR-D,annual,2021,gas oil combustion consumption by freight transport,116.41476,TJ,CO2,74100.0,kg/TJ,8626333.716,kg -f8d3923f-6008-3c01-b81a-c4630477f18f,SESCO,II.1.1,San Luis,AR-D,annual,2021,gas oil combustion consumption by freight transport,116.41476,TJ,CH4,3.9,kg/TJ,454.017564,kg -f8d3923f-6008-3c01-b81a-c4630477f18f,SESCO,II.1.1,San Luis,AR-D,annual,2021,gas oil combustion consumption by freight transport,116.41476,TJ,N2O,3.9,kg/TJ,454.017564,kg -98f9c6e3-52d5-3f76-8901-58054a1132a6,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2021,gas oil combustion consumption by freight transport,299.18196,TJ,CO2,74100.0,kg/TJ,22169383.236,kg -30c4ef92-69e5-3ba5-af91-9b4b85a0c68a,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2021,gas oil combustion consumption by freight transport,299.18196,TJ,CH4,3.9,kg/TJ,1166.809644,kg -30c4ef92-69e5-3ba5-af91-9b4b85a0c68a,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2021,gas oil combustion consumption by freight transport,299.18196,TJ,N2O,3.9,kg/TJ,1166.809644,kg -9d0812d6-59d5-38ec-a7c7-b362265959ba,SESCO,II.1.1,Santa Fe,AR-S,annual,2021,gas oil combustion consumption by freight transport,792.72564,TJ,CO2,74100.0,kg/TJ,58740969.924,kg -5b20936d-826b-326e-b72b-8955bfb0411d,SESCO,II.1.1,Santa Fe,AR-S,annual,2021,gas oil combustion consumption by freight transport,792.72564,TJ,CH4,3.9,kg/TJ,3091.629996,kg -5b20936d-826b-326e-b72b-8955bfb0411d,SESCO,II.1.1,Santa Fe,AR-S,annual,2021,gas oil combustion consumption by freight transport,792.72564,TJ,N2O,3.9,kg/TJ,3091.629996,kg -d0cac68d-1f0b-3df7-bcc7-2ed75e9e5783,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2021,gas oil combustion consumption by freight transport,142.38504,TJ,CO2,74100.0,kg/TJ,10550731.464,kg -f13479f7-0577-37a1-b9ca-de84a59b27c4,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2021,gas oil combustion consumption by freight transport,142.38504,TJ,CH4,3.9,kg/TJ,555.301656,kg -f13479f7-0577-37a1-b9ca-de84a59b27c4,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2021,gas oil combustion consumption by freight transport,142.38504,TJ,N2O,3.9,kg/TJ,555.301656,kg -76cbdca2-c8f8-30b4-b63f-30f7c4d4db54,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2021,gas oil combustion consumption by freight transport,109.69644,TJ,CO2,74100.0,kg/TJ,8128506.204,kg -11a99b5c-4209-34ad-a989-aeb855ec24b3,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2021,gas oil combustion consumption by freight transport,109.69644,TJ,CH4,3.9,kg/TJ,427.81611599999997,kg -11a99b5c-4209-34ad-a989-aeb855ec24b3,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2021,gas oil combustion consumption by freight transport,109.69644,TJ,N2O,3.9,kg/TJ,427.81611599999997,kg -2f4b47fa-27e8-3950-ad92-10d99ab3be2c,SESCO,II.1.1,Tucuman,AR-T,annual,2021,gas oil combustion consumption by freight transport,155.24376,TJ,CO2,74100.0,kg/TJ,11503562.616,kg -f4c6f887-4e22-36e1-83b9-27c359ad8d07,SESCO,II.1.1,Tucuman,AR-T,annual,2021,gas oil combustion consumption by freight transport,155.24376,TJ,CH4,3.9,kg/TJ,605.4506640000001,kg -f4c6f887-4e22-36e1-83b9-27c359ad8d07,SESCO,II.1.1,Tucuman,AR-T,annual,2021,gas oil combustion consumption by freight transport,155.24376,TJ,N2O,3.9,kg/TJ,605.4506640000001,kg -9b07f1ef-de2b-385b-bcf0-90e06a4ce8fe,SESCO,II.1.1,Buenos Aires,AR-B,annual,2021,gas oil combustion consumption by public passenger transport,6476.53272,TJ,CO2,74100.0,kg/TJ,479911074.552,kg -b515c49d-eb27-3806-bbe2-4715453dd0a0,SESCO,II.1.1,Buenos Aires,AR-B,annual,2021,gas oil combustion consumption by public passenger transport,6476.53272,TJ,CH4,3.9,kg/TJ,25258.477608,kg -b515c49d-eb27-3806-bbe2-4715453dd0a0,SESCO,II.1.1,Buenos Aires,AR-B,annual,2021,gas oil combustion consumption by public passenger transport,6476.53272,TJ,N2O,3.9,kg/TJ,25258.477608,kg -e2d05f9f-c733-3837-b086-c30191974373,SESCO,II.1.1,Capital Federal,AR-C,annual,2021,gas oil combustion consumption by public passenger transport,1002.47448,TJ,CO2,74100.0,kg/TJ,74283358.968,kg -39774e48-9bbb-3120-9be2-a9a6be417b60,SESCO,II.1.1,Capital Federal,AR-C,annual,2021,gas oil combustion consumption by public passenger transport,1002.47448,TJ,CH4,3.9,kg/TJ,3909.650472,kg -39774e48-9bbb-3120-9be2-a9a6be417b60,SESCO,II.1.1,Capital Federal,AR-C,annual,2021,gas oil combustion consumption by public passenger transport,1002.47448,TJ,N2O,3.9,kg/TJ,3909.650472,kg -4523dc5d-d822-32bd-beda-c5124ac757b9,SESCO,II.1.1,Catamarca,AR-K,annual,2021,gas oil combustion consumption by public passenger transport,45.76404,TJ,CO2,74100.0,kg/TJ,3391115.364,kg -138ce513-1b1f-3b95-8bd5-bdbb6e946979,SESCO,II.1.1,Catamarca,AR-K,annual,2021,gas oil combustion consumption by public passenger transport,45.76404,TJ,CH4,3.9,kg/TJ,178.479756,kg -138ce513-1b1f-3b95-8bd5-bdbb6e946979,SESCO,II.1.1,Catamarca,AR-K,annual,2021,gas oil combustion consumption by public passenger transport,45.76404,TJ,N2O,3.9,kg/TJ,178.479756,kg -28954c0c-905a-346c-bb94-61451106ab61,SESCO,II.1.1,Chaco,AR-H,annual,2021,gas oil combustion consumption by public passenger transport,72.27611999999999,TJ,CO2,74100.0,kg/TJ,5355660.492,kg -c81d0206-e1c5-33fd-b3a5-23af6edf11f9,SESCO,II.1.1,Chaco,AR-H,annual,2021,gas oil combustion consumption by public passenger transport,72.27611999999999,TJ,CH4,3.9,kg/TJ,281.87686799999994,kg -c81d0206-e1c5-33fd-b3a5-23af6edf11f9,SESCO,II.1.1,Chaco,AR-H,annual,2021,gas oil combustion consumption by public passenger transport,72.27611999999999,TJ,N2O,3.9,kg/TJ,281.87686799999994,kg -e98b7f4c-cb45-36d0-8fae-0e7518ac0f33,SESCO,II.1.1,Chubut,AR-U,annual,2021,gas oil combustion consumption by public passenger transport,17.5182,TJ,CO2,74100.0,kg/TJ,1298098.62,kg -d3a4e832-0eee-3319-9c87-6ee851567652,SESCO,II.1.1,Chubut,AR-U,annual,2021,gas oil combustion consumption by public passenger transport,17.5182,TJ,CH4,3.9,kg/TJ,68.32098,kg -d3a4e832-0eee-3319-9c87-6ee851567652,SESCO,II.1.1,Chubut,AR-U,annual,2021,gas oil combustion consumption by public passenger transport,17.5182,TJ,N2O,3.9,kg/TJ,68.32098,kg -087f839a-2fbd-391a-845e-0ee6b53f8e99,SESCO,II.1.1,Corrientes,AR-W,annual,2021,gas oil combustion consumption by public passenger transport,58.11708,TJ,CO2,74100.0,kg/TJ,4306475.6280000005,kg -2070a38f-3377-3ebb-8cec-86cf3b28e2c3,SESCO,II.1.1,Corrientes,AR-W,annual,2021,gas oil combustion consumption by public passenger transport,58.11708,TJ,CH4,3.9,kg/TJ,226.656612,kg -2070a38f-3377-3ebb-8cec-86cf3b28e2c3,SESCO,II.1.1,Corrientes,AR-W,annual,2021,gas oil combustion consumption by public passenger transport,58.11708,TJ,N2O,3.9,kg/TJ,226.656612,kg -b6cb226c-98f9-34dc-a627-f9fe313cefbe,SESCO,II.1.1,Córdoba,AR-X,annual,2021,gas oil combustion consumption by public passenger transport,482.9244,TJ,CO2,74100.0,kg/TJ,35784698.04,kg -9b647cb0-81af-3e7e-9a0c-92aab65008d6,SESCO,II.1.1,Córdoba,AR-X,annual,2021,gas oil combustion consumption by public passenger transport,482.9244,TJ,CH4,3.9,kg/TJ,1883.40516,kg -9b647cb0-81af-3e7e-9a0c-92aab65008d6,SESCO,II.1.1,Córdoba,AR-X,annual,2021,gas oil combustion consumption by public passenger transport,482.9244,TJ,N2O,3.9,kg/TJ,1883.40516,kg -40c8309d-106d-3fd9-bd2f-23a3dfe696ab,SESCO,II.1.1,Entre Rios,AR-E,annual,2021,gas oil combustion consumption by public passenger transport,131.4768,TJ,CO2,74100.0,kg/TJ,9742430.879999999,kg -bd0ebf9b-0d8e-3d86-8ff7-6ca49491a77c,SESCO,II.1.1,Entre Rios,AR-E,annual,2021,gas oil combustion consumption by public passenger transport,131.4768,TJ,CH4,3.9,kg/TJ,512.75952,kg -bd0ebf9b-0d8e-3d86-8ff7-6ca49491a77c,SESCO,II.1.1,Entre Rios,AR-E,annual,2021,gas oil combustion consumption by public passenger transport,131.4768,TJ,N2O,3.9,kg/TJ,512.75952,kg -de7c6587-4e3d-37a4-bd5c-2c2305e01016,SESCO,II.1.1,Formosa,AR-P,annual,2021,gas oil combustion consumption by public passenger transport,1.4447999999999999,TJ,CO2,74100.0,kg/TJ,107059.68,kg -77c7a571-2292-3916-afc6-9aadbce7119e,SESCO,II.1.1,Formosa,AR-P,annual,2021,gas oil combustion consumption by public passenger transport,1.4447999999999999,TJ,CH4,3.9,kg/TJ,5.63472,kg -77c7a571-2292-3916-afc6-9aadbce7119e,SESCO,II.1.1,Formosa,AR-P,annual,2021,gas oil combustion consumption by public passenger transport,1.4447999999999999,TJ,N2O,3.9,kg/TJ,5.63472,kg -dd07ae24-5236-3e8b-ad8e-aad374fb5c0e,SESCO,II.1.1,Jujuy,AR-Y,annual,2021,gas oil combustion consumption by public passenger transport,154.23239999999998,TJ,CO2,74100.0,kg/TJ,11428620.839999998,kg -b65b2cd8-b75b-3254-9c63-d33f9f91e5e0,SESCO,II.1.1,Jujuy,AR-Y,annual,2021,gas oil combustion consumption by public passenger transport,154.23239999999998,TJ,CH4,3.9,kg/TJ,601.50636,kg -b65b2cd8-b75b-3254-9c63-d33f9f91e5e0,SESCO,II.1.1,Jujuy,AR-Y,annual,2021,gas oil combustion consumption by public passenger transport,154.23239999999998,TJ,N2O,3.9,kg/TJ,601.50636,kg -bc963fa9-fc30-3d65-b7cf-26309a2ee4bd,SESCO,II.1.1,Mendoza,AR-M,annual,2021,gas oil combustion consumption by public passenger transport,691.48128,TJ,CO2,74100.0,kg/TJ,51238762.848,kg -f0490b93-705c-361d-af30-07058073e354,SESCO,II.1.1,Mendoza,AR-M,annual,2021,gas oil combustion consumption by public passenger transport,691.48128,TJ,CH4,3.9,kg/TJ,2696.7769919999996,kg -f0490b93-705c-361d-af30-07058073e354,SESCO,II.1.1,Mendoza,AR-M,annual,2021,gas oil combustion consumption by public passenger transport,691.48128,TJ,N2O,3.9,kg/TJ,2696.7769919999996,kg -ac879865-7757-3bab-a652-edce5d021f80,SESCO,II.1.1,Misiones,AR-N,annual,2021,gas oil combustion consumption by public passenger transport,303.11904,TJ,CO2,74100.0,kg/TJ,22461120.864,kg -53411895-8d85-343d-b4f0-9c8f3d2820b1,SESCO,II.1.1,Misiones,AR-N,annual,2021,gas oil combustion consumption by public passenger transport,303.11904,TJ,CH4,3.9,kg/TJ,1182.164256,kg -53411895-8d85-343d-b4f0-9c8f3d2820b1,SESCO,II.1.1,Misiones,AR-N,annual,2021,gas oil combustion consumption by public passenger transport,303.11904,TJ,N2O,3.9,kg/TJ,1182.164256,kg -356a3c1d-0cfd-3ddd-aa39-a3b1e56779e4,SESCO,II.1.1,Neuquén,AR-Q,annual,2021,gas oil combustion consumption by public passenger transport,26.62044,TJ,CO2,74100.0,kg/TJ,1972574.6039999998,kg -e04c4681-02a7-34b6-b029-ed49b2aa973f,SESCO,II.1.1,Neuquén,AR-Q,annual,2021,gas oil combustion consumption by public passenger transport,26.62044,TJ,CH4,3.9,kg/TJ,103.81971599999999,kg -e04c4681-02a7-34b6-b029-ed49b2aa973f,SESCO,II.1.1,Neuquén,AR-Q,annual,2021,gas oil combustion consumption by public passenger transport,26.62044,TJ,N2O,3.9,kg/TJ,103.81971599999999,kg -17a4f9e4-d5c4-327c-baae-c7c98e04921b,SESCO,II.1.1,Rio Negro,AR-R,annual,2021,gas oil combustion consumption by public passenger transport,15.60384,TJ,CO2,74100.0,kg/TJ,1156244.544,kg -17ecd8c0-5b5d-3fca-9f74-cae0cbf16c4f,SESCO,II.1.1,Rio Negro,AR-R,annual,2021,gas oil combustion consumption by public passenger transport,15.60384,TJ,CH4,3.9,kg/TJ,60.854976,kg -17ecd8c0-5b5d-3fca-9f74-cae0cbf16c4f,SESCO,II.1.1,Rio Negro,AR-R,annual,2021,gas oil combustion consumption by public passenger transport,15.60384,TJ,N2O,3.9,kg/TJ,60.854976,kg -b74c50df-a250-38ab-9712-da7427b78dab,SESCO,II.1.1,Salta,AR-A,annual,2021,gas oil combustion consumption by public passenger transport,175.75992,TJ,CO2,74100.0,kg/TJ,13023810.071999999,kg -b29d53a8-8318-3ba3-9300-4dd2f4bc5836,SESCO,II.1.1,Salta,AR-A,annual,2021,gas oil combustion consumption by public passenger transport,175.75992,TJ,CH4,3.9,kg/TJ,685.4636879999999,kg -b29d53a8-8318-3ba3-9300-4dd2f4bc5836,SESCO,II.1.1,Salta,AR-A,annual,2021,gas oil combustion consumption by public passenger transport,175.75992,TJ,N2O,3.9,kg/TJ,685.4636879999999,kg -8126fea2-3f62-3fab-997a-c7c2bde41f00,SESCO,II.1.1,San Juan,AR-J,annual,2021,gas oil combustion consumption by public passenger transport,36.58956,TJ,CO2,74100.0,kg/TJ,2711286.3959999997,kg -d9e7f6bf-d2ce-3291-bc39-4ed9dae8cae9,SESCO,II.1.1,San Juan,AR-J,annual,2021,gas oil combustion consumption by public passenger transport,36.58956,TJ,CH4,3.9,kg/TJ,142.699284,kg -d9e7f6bf-d2ce-3291-bc39-4ed9dae8cae9,SESCO,II.1.1,San Juan,AR-J,annual,2021,gas oil combustion consumption by public passenger transport,36.58956,TJ,N2O,3.9,kg/TJ,142.699284,kg -cc83a842-3ffa-36d9-9689-fd3e0ef1dfb4,SESCO,II.1.1,Santa Fe,AR-S,annual,2021,gas oil combustion consumption by public passenger transport,471.04091999999997,TJ,CO2,74100.0,kg/TJ,34904132.172,kg -a299960c-01e2-3101-ae2f-33bfacefc2bb,SESCO,II.1.1,Santa Fe,AR-S,annual,2021,gas oil combustion consumption by public passenger transport,471.04091999999997,TJ,CH4,3.9,kg/TJ,1837.0595879999998,kg -a299960c-01e2-3101-ae2f-33bfacefc2bb,SESCO,II.1.1,Santa Fe,AR-S,annual,2021,gas oil combustion consumption by public passenger transport,471.04091999999997,TJ,N2O,3.9,kg/TJ,1837.0595879999998,kg -0cb7c4c3-21df-306f-9250-e5cbe049a17c,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2021,gas oil combustion consumption by public passenger transport,6.321,TJ,CO2,74100.0,kg/TJ,468386.1,kg -b157c2e9-54b2-3dcb-82bf-6a1dc9a7a249,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2021,gas oil combustion consumption by public passenger transport,6.321,TJ,CH4,3.9,kg/TJ,24.651899999999998,kg -b157c2e9-54b2-3dcb-82bf-6a1dc9a7a249,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2021,gas oil combustion consumption by public passenger transport,6.321,TJ,N2O,3.9,kg/TJ,24.651899999999998,kg -4ec928d5-7a96-3c04-a605-3bc91c3933f8,SESCO,II.1.1,Tucuman,AR-T,annual,2021,gas oil combustion consumption by public passenger transport,38.829,TJ,CO2,74100.0,kg/TJ,2877228.9,kg -a22d6acf-6a82-32d5-9ae3-d72d5ce7deda,SESCO,II.1.1,Tucuman,AR-T,annual,2021,gas oil combustion consumption by public passenger transport,38.829,TJ,CH4,3.9,kg/TJ,151.4331,kg -a22d6acf-6a82-32d5-9ae3-d72d5ce7deda,SESCO,II.1.1,Tucuman,AR-T,annual,2021,gas oil combustion consumption by public passenger transport,38.829,TJ,N2O,3.9,kg/TJ,151.4331,kg -3a1be204-7b49-3a36-aae0-3bfca96351f6,SESCO,II.1.1,Buenos Aires,AR-B,annual,2021,gas oil combustion consumption by public passenger transport,3687.99648,TJ,CO2,74100.0,kg/TJ,273280539.168,kg -12676e90-8781-375f-ac66-3abef1bfa206,SESCO,II.1.1,Buenos Aires,AR-B,annual,2021,gas oil combustion consumption by public passenger transport,3687.99648,TJ,CH4,3.9,kg/TJ,14383.186271999999,kg -12676e90-8781-375f-ac66-3abef1bfa206,SESCO,II.1.1,Buenos Aires,AR-B,annual,2021,gas oil combustion consumption by public passenger transport,3687.99648,TJ,N2O,3.9,kg/TJ,14383.186271999999,kg -99d9acb8-b5f5-3dc8-bb09-7fd75c673492,SESCO,II.1.1,Capital Federal,AR-C,annual,2021,gas oil combustion consumption by public passenger transport,710.4804,TJ,CO2,74100.0,kg/TJ,52646597.64,kg -6355da38-528d-3539-a654-3fd5be142291,SESCO,II.1.1,Capital Federal,AR-C,annual,2021,gas oil combustion consumption by public passenger transport,710.4804,TJ,CH4,3.9,kg/TJ,2770.87356,kg -6355da38-528d-3539-a654-3fd5be142291,SESCO,II.1.1,Capital Federal,AR-C,annual,2021,gas oil combustion consumption by public passenger transport,710.4804,TJ,N2O,3.9,kg/TJ,2770.87356,kg -ed3065a7-69f7-3f4e-ba87-983816f649d0,SESCO,II.1.1,Chaco,AR-H,annual,2021,gas oil combustion consumption by public passenger transport,11.738999999999999,TJ,CO2,74100.0,kg/TJ,869859.8999999999,kg -aa35a296-575a-3a7b-adb3-cfa66608268f,SESCO,II.1.1,Chaco,AR-H,annual,2021,gas oil combustion consumption by public passenger transport,11.738999999999999,TJ,CH4,3.9,kg/TJ,45.78209999999999,kg -aa35a296-575a-3a7b-adb3-cfa66608268f,SESCO,II.1.1,Chaco,AR-H,annual,2021,gas oil combustion consumption by public passenger transport,11.738999999999999,TJ,N2O,3.9,kg/TJ,45.78209999999999,kg -d6136f01-4864-31aa-ac78-13eb299b03bf,SESCO,II.1.1,Chubut,AR-U,annual,2021,gas oil combustion consumption by public passenger transport,52.04892,TJ,CO2,74100.0,kg/TJ,3856824.972,kg -d79da8b0-3a79-3256-986a-6fa531c5924f,SESCO,II.1.1,Chubut,AR-U,annual,2021,gas oil combustion consumption by public passenger transport,52.04892,TJ,CH4,3.9,kg/TJ,202.990788,kg -d79da8b0-3a79-3256-986a-6fa531c5924f,SESCO,II.1.1,Chubut,AR-U,annual,2021,gas oil combustion consumption by public passenger transport,52.04892,TJ,N2O,3.9,kg/TJ,202.990788,kg -4d593498-da44-359f-addc-1c18d7d4b38d,SESCO,II.1.1,Corrientes,AR-W,annual,2021,gas oil combustion consumption by public passenger transport,33.66384,TJ,CO2,74100.0,kg/TJ,2494490.544,kg -33cfb358-ad3f-3f30-afcd-37c93e099e24,SESCO,II.1.1,Corrientes,AR-W,annual,2021,gas oil combustion consumption by public passenger transport,33.66384,TJ,CH4,3.9,kg/TJ,131.288976,kg -33cfb358-ad3f-3f30-afcd-37c93e099e24,SESCO,II.1.1,Corrientes,AR-W,annual,2021,gas oil combustion consumption by public passenger transport,33.66384,TJ,N2O,3.9,kg/TJ,131.288976,kg -bafdaa5c-003e-3c1a-a9aa-effc0cd92aee,SESCO,II.1.1,Córdoba,AR-X,annual,2021,gas oil combustion consumption by public passenger transport,181.10568,TJ,CO2,74100.0,kg/TJ,13419930.888,kg -3bb54310-ea28-37f7-9e65-d022477f028b,SESCO,II.1.1,Córdoba,AR-X,annual,2021,gas oil combustion consumption by public passenger transport,181.10568,TJ,CH4,3.9,kg/TJ,706.312152,kg -3bb54310-ea28-37f7-9e65-d022477f028b,SESCO,II.1.1,Córdoba,AR-X,annual,2021,gas oil combustion consumption by public passenger transport,181.10568,TJ,N2O,3.9,kg/TJ,706.312152,kg -6b7a148b-825a-3bb7-a875-758e7377530e,SESCO,II.1.1,Entre Rios,AR-E,annual,2021,gas oil combustion consumption by public passenger transport,31.027079999999998,TJ,CO2,74100.0,kg/TJ,2299106.628,kg -996bed3b-cdca-39b9-8639-00f93f8d24d7,SESCO,II.1.1,Entre Rios,AR-E,annual,2021,gas oil combustion consumption by public passenger transport,31.027079999999998,TJ,CH4,3.9,kg/TJ,121.00561199999999,kg -996bed3b-cdca-39b9-8639-00f93f8d24d7,SESCO,II.1.1,Entre Rios,AR-E,annual,2021,gas oil combustion consumption by public passenger transport,31.027079999999998,TJ,N2O,3.9,kg/TJ,121.00561199999999,kg -9d7861b0-b146-321d-aaf6-9a1185481d12,SESCO,II.1.1,Mendoza,AR-M,annual,2021,gas oil combustion consumption by public passenger transport,163.94868,TJ,CO2,74100.0,kg/TJ,12148597.188,kg -16956f5e-5c93-37dc-8f46-eb6910f329df,SESCO,II.1.1,Mendoza,AR-M,annual,2021,gas oil combustion consumption by public passenger transport,163.94868,TJ,CH4,3.9,kg/TJ,639.399852,kg -16956f5e-5c93-37dc-8f46-eb6910f329df,SESCO,II.1.1,Mendoza,AR-M,annual,2021,gas oil combustion consumption by public passenger transport,163.94868,TJ,N2O,3.9,kg/TJ,639.399852,kg -17309640-4b25-3e98-9c7f-d925259ef942,SESCO,II.1.1,Misiones,AR-N,annual,2021,gas oil combustion consumption by public passenger transport,59.45352,TJ,CO2,74100.0,kg/TJ,4405505.8319999995,kg -b8ece898-0ec3-3476-bb63-21f12e52d5a2,SESCO,II.1.1,Misiones,AR-N,annual,2021,gas oil combustion consumption by public passenger transport,59.45352,TJ,CH4,3.9,kg/TJ,231.86872799999998,kg -b8ece898-0ec3-3476-bb63-21f12e52d5a2,SESCO,II.1.1,Misiones,AR-N,annual,2021,gas oil combustion consumption by public passenger transport,59.45352,TJ,N2O,3.9,kg/TJ,231.86872799999998,kg -c646b7b9-c11f-3190-89a0-44cab804b22a,SESCO,II.1.1,Neuquén,AR-Q,annual,2021,gas oil combustion consumption by public passenger transport,12.20856,TJ,CO2,74100.0,kg/TJ,904654.296,kg -e1dc3fb3-f30d-3db5-870b-2454d64ae3d9,SESCO,II.1.1,Neuquén,AR-Q,annual,2021,gas oil combustion consumption by public passenger transport,12.20856,TJ,CH4,3.9,kg/TJ,47.613384,kg -e1dc3fb3-f30d-3db5-870b-2454d64ae3d9,SESCO,II.1.1,Neuquén,AR-Q,annual,2021,gas oil combustion consumption by public passenger transport,12.20856,TJ,N2O,3.9,kg/TJ,47.613384,kg -0559d741-53ef-3684-b7ba-f1601511dd36,SESCO,II.1.1,Rio Negro,AR-R,annual,2021,gas oil combustion consumption by public passenger transport,140.83187999999998,TJ,CO2,74100.0,kg/TJ,10435642.307999998,kg -be5b77f4-1162-3bf7-ad96-e529cd0d3e5a,SESCO,II.1.1,Rio Negro,AR-R,annual,2021,gas oil combustion consumption by public passenger transport,140.83187999999998,TJ,CH4,3.9,kg/TJ,549.2443319999999,kg -be5b77f4-1162-3bf7-ad96-e529cd0d3e5a,SESCO,II.1.1,Rio Negro,AR-R,annual,2021,gas oil combustion consumption by public passenger transport,140.83187999999998,TJ,N2O,3.9,kg/TJ,549.2443319999999,kg -dac70011-de87-3c7d-b121-d9ace9dedfb2,SESCO,II.1.1,Salta,AR-A,annual,2021,gas oil combustion consumption by public passenger transport,106.15668,TJ,CO2,74100.0,kg/TJ,7866209.988,kg -7f669601-7392-38da-b3c0-de84eca19444,SESCO,II.1.1,Salta,AR-A,annual,2021,gas oil combustion consumption by public passenger transport,106.15668,TJ,CH4,3.9,kg/TJ,414.01105199999995,kg -7f669601-7392-38da-b3c0-de84eca19444,SESCO,II.1.1,Salta,AR-A,annual,2021,gas oil combustion consumption by public passenger transport,106.15668,TJ,N2O,3.9,kg/TJ,414.01105199999995,kg -0b73ef53-08cf-3d61-a06e-53fde30a2af9,SESCO,II.1.1,San Juan,AR-J,annual,2021,gas oil combustion consumption by public passenger transport,59.52576,TJ,CO2,74100.0,kg/TJ,4410858.816,kg -3fed6664-1a53-3d6d-b0a4-6c06dc4ffb0b,SESCO,II.1.1,San Juan,AR-J,annual,2021,gas oil combustion consumption by public passenger transport,59.52576,TJ,CH4,3.9,kg/TJ,232.150464,kg -3fed6664-1a53-3d6d-b0a4-6c06dc4ffb0b,SESCO,II.1.1,San Juan,AR-J,annual,2021,gas oil combustion consumption by public passenger transport,59.52576,TJ,N2O,3.9,kg/TJ,232.150464,kg -6d7b71d0-ac2a-3606-92d2-754595ff0f5c,SESCO,II.1.1,Santa Fe,AR-S,annual,2021,gas oil combustion consumption by public passenger transport,242.04012,TJ,CO2,74100.0,kg/TJ,17935172.892,kg -73196694-bfaa-3602-a9d5-be895144a290,SESCO,II.1.1,Santa Fe,AR-S,annual,2021,gas oil combustion consumption by public passenger transport,242.04012,TJ,CH4,3.9,kg/TJ,943.956468,kg -73196694-bfaa-3602-a9d5-be895144a290,SESCO,II.1.1,Santa Fe,AR-S,annual,2021,gas oil combustion consumption by public passenger transport,242.04012,TJ,N2O,3.9,kg/TJ,943.956468,kg -5aad2194-1c91-392e-8365-4b74a8793edd,SESCO,II.1.1,Tucuman,AR-T,annual,2021,gas oil combustion consumption by public passenger transport,13.68948,TJ,CO2,74100.0,kg/TJ,1014390.468,kg -76e40e5d-e089-3866-bf9d-69165cc1b5c7,SESCO,II.1.1,Tucuman,AR-T,annual,2021,gas oil combustion consumption by public passenger transport,13.68948,TJ,CH4,3.9,kg/TJ,53.388971999999995,kg -76e40e5d-e089-3866-bf9d-69165cc1b5c7,SESCO,II.1.1,Tucuman,AR-T,annual,2021,gas oil combustion consumption by public passenger transport,13.68948,TJ,N2O,3.9,kg/TJ,53.388971999999995,kg -7cccbe8d-0a5c-3e5a-b716-ab4e56de3f99,SESCO,II.5.1,Buenos Aires,AR-B,annual,2022,gas oil combustion consumption by agriculture machines,720.16056,TJ,CO2,74100.0,kg/TJ,53363897.496,kg -d32b2dba-0b5b-348f-beaa-62dc00659b6d,SESCO,II.5.1,Buenos Aires,AR-B,annual,2022,gas oil combustion consumption by agriculture machines,720.16056,TJ,CH4,3.9,kg/TJ,2808.626184,kg -d32b2dba-0b5b-348f-beaa-62dc00659b6d,SESCO,II.5.1,Buenos Aires,AR-B,annual,2022,gas oil combustion consumption by agriculture machines,720.16056,TJ,N2O,3.9,kg/TJ,2808.626184,kg -14769f95-61b8-3e8e-bf4d-2e301b2a84fe,SESCO,II.5.1,Córdoba,AR-X,annual,2022,gas oil combustion consumption by agriculture machines,129.95976,TJ,CO2,74100.0,kg/TJ,9630018.216,kg -842c2126-ccb3-3ef7-b97d-b3f46ac18343,SESCO,II.5.1,Córdoba,AR-X,annual,2022,gas oil combustion consumption by agriculture machines,129.95976,TJ,CH4,3.9,kg/TJ,506.84306399999997,kg -842c2126-ccb3-3ef7-b97d-b3f46ac18343,SESCO,II.5.1,Córdoba,AR-X,annual,2022,gas oil combustion consumption by agriculture machines,129.95976,TJ,N2O,3.9,kg/TJ,506.84306399999997,kg -b1373625-ebe1-3de8-b8e0-7dacc3a928cd,SESCO,II.5.1,Entre Rios,AR-E,annual,2022,gas oil combustion consumption by agriculture machines,16.03728,TJ,CO2,74100.0,kg/TJ,1188362.4479999999,kg -c252d8a2-9e5c-3aa0-abc2-0bf879218fc3,SESCO,II.5.1,Entre Rios,AR-E,annual,2022,gas oil combustion consumption by agriculture machines,16.03728,TJ,CH4,3.9,kg/TJ,62.54539199999999,kg -c252d8a2-9e5c-3aa0-abc2-0bf879218fc3,SESCO,II.5.1,Entre Rios,AR-E,annual,2022,gas oil combustion consumption by agriculture machines,16.03728,TJ,N2O,3.9,kg/TJ,62.54539199999999,kg -e7946e55-a306-3f55-98a1-7fdc95988425,SESCO,II.5.1,La Pampa,AR-L,annual,2022,gas oil combustion consumption by agriculture machines,25.78968,TJ,CO2,74100.0,kg/TJ,1911015.288,kg -1a650d84-fd88-3ea7-a2d0-e138ad0710a5,SESCO,II.5.1,La Pampa,AR-L,annual,2022,gas oil combustion consumption by agriculture machines,25.78968,TJ,CH4,3.9,kg/TJ,100.579752,kg -1a650d84-fd88-3ea7-a2d0-e138ad0710a5,SESCO,II.5.1,La Pampa,AR-L,annual,2022,gas oil combustion consumption by agriculture machines,25.78968,TJ,N2O,3.9,kg/TJ,100.579752,kg -5960c84b-c31d-3859-9741-3d9559fa5e75,SESCO,II.5.1,Santa Fe,AR-S,annual,2022,gas oil combustion consumption by agriculture machines,173.80944,TJ,CO2,74100.0,kg/TJ,12879279.503999999,kg -db3639b1-e99d-3f01-a9e6-663ed76a8ff4,SESCO,II.5.1,Santa Fe,AR-S,annual,2022,gas oil combustion consumption by agriculture machines,173.80944,TJ,CH4,3.9,kg/TJ,677.856816,kg -db3639b1-e99d-3f01-a9e6-663ed76a8ff4,SESCO,II.5.1,Santa Fe,AR-S,annual,2022,gas oil combustion consumption by agriculture machines,173.80944,TJ,N2O,3.9,kg/TJ,677.856816,kg -089bee9b-35c5-31ca-94b8-897ae887028f,SESCO,II.5.1,Buenos Aires,AR-B,annual,2022,gas oil combustion consumption by agriculture machines,30.59364,TJ,CO2,74100.0,kg/TJ,2266988.724,kg -ef220c5f-4b84-31fe-a431-4bced89afe51,SESCO,II.5.1,Buenos Aires,AR-B,annual,2022,gas oil combustion consumption by agriculture machines,30.59364,TJ,CH4,3.9,kg/TJ,119.315196,kg -ef220c5f-4b84-31fe-a431-4bced89afe51,SESCO,II.5.1,Buenos Aires,AR-B,annual,2022,gas oil combustion consumption by agriculture machines,30.59364,TJ,N2O,3.9,kg/TJ,119.315196,kg -3ccd8fbf-f69a-385a-afde-f6bc461fbefd,SESCO,II.5.1,Córdoba,AR-X,annual,2022,gas oil combustion consumption by agriculture machines,10.69152,TJ,CO2,74100.0,kg/TJ,792241.6320000001,kg -2f375e7b-c64a-3cb8-9c5d-e93ee090be80,SESCO,II.5.1,Córdoba,AR-X,annual,2022,gas oil combustion consumption by agriculture machines,10.69152,TJ,CH4,3.9,kg/TJ,41.696928,kg -2f375e7b-c64a-3cb8-9c5d-e93ee090be80,SESCO,II.5.1,Córdoba,AR-X,annual,2022,gas oil combustion consumption by agriculture machines,10.69152,TJ,N2O,3.9,kg/TJ,41.696928,kg -7e025b7e-0932-355b-8403-205a08761cca,SESCO,II.5.1,Santa Fe,AR-S,annual,2022,gas oil combustion consumption by agriculture machines,18.31284,TJ,CO2,74100.0,kg/TJ,1356981.4440000001,kg -d53b7b45-a4a3-32ce-a3d7-c1fb9f7eb4af,SESCO,II.5.1,Santa Fe,AR-S,annual,2022,gas oil combustion consumption by agriculture machines,18.31284,TJ,CH4,3.9,kg/TJ,71.42007600000001,kg -d53b7b45-a4a3-32ce-a3d7-c1fb9f7eb4af,SESCO,II.5.1,Santa Fe,AR-S,annual,2022,gas oil combustion consumption by agriculture machines,18.31284,TJ,N2O,3.9,kg/TJ,71.42007600000001,kg -33766f41-caa4-32d5-b556-6f33feb1d9d4,SESCO,II.1.1,Buenos Aires,AR-B,annual,2022,gas oil combustion consumption by to the public,1718.7702,TJ,CO2,74100.0,kg/TJ,127360871.82,kg -8751ddac-8f0a-3806-b5d4-db2ce8496dc3,SESCO,II.1.1,Buenos Aires,AR-B,annual,2022,gas oil combustion consumption by to the public,1718.7702,TJ,CH4,3.9,kg/TJ,6703.20378,kg -8751ddac-8f0a-3806-b5d4-db2ce8496dc3,SESCO,II.1.1,Buenos Aires,AR-B,annual,2022,gas oil combustion consumption by to the public,1718.7702,TJ,N2O,3.9,kg/TJ,6703.20378,kg -cbf07cf6-2134-345c-8917-3e6805077d89,SESCO,II.1.1,Capital Federal,AR-C,annual,2022,gas oil combustion consumption by to the public,136.06404,TJ,CO2,74100.0,kg/TJ,10082345.364,kg -c65ec392-969d-3258-bd61-e5db26484fbf,SESCO,II.1.1,Capital Federal,AR-C,annual,2022,gas oil combustion consumption by to the public,136.06404,TJ,CH4,3.9,kg/TJ,530.649756,kg -c65ec392-969d-3258-bd61-e5db26484fbf,SESCO,II.1.1,Capital Federal,AR-C,annual,2022,gas oil combustion consumption by to the public,136.06404,TJ,N2O,3.9,kg/TJ,530.649756,kg -cda89dc2-6073-36bc-a046-3acb2da9dc17,SESCO,II.1.1,Catamarca,AR-K,annual,2022,gas oil combustion consumption by to the public,7.29624,TJ,CO2,74100.0,kg/TJ,540651.384,kg -3637e9dd-7dda-3d1b-94c2-9ec648a458ad,SESCO,II.1.1,Catamarca,AR-K,annual,2022,gas oil combustion consumption by to the public,7.29624,TJ,CH4,3.9,kg/TJ,28.455336,kg -3637e9dd-7dda-3d1b-94c2-9ec648a458ad,SESCO,II.1.1,Catamarca,AR-K,annual,2022,gas oil combustion consumption by to the public,7.29624,TJ,N2O,3.9,kg/TJ,28.455336,kg -fb8452dd-7322-3b28-a918-9c2d55fec75a,SESCO,II.1.1,Chaco,AR-H,annual,2022,gas oil combustion consumption by to the public,4.26216,TJ,CO2,74100.0,kg/TJ,315826.056,kg -b196ac4a-ea82-3e38-88be-fd9a1ddc28a7,SESCO,II.1.1,Chaco,AR-H,annual,2022,gas oil combustion consumption by to the public,4.26216,TJ,CH4,3.9,kg/TJ,16.622424,kg -b196ac4a-ea82-3e38-88be-fd9a1ddc28a7,SESCO,II.1.1,Chaco,AR-H,annual,2022,gas oil combustion consumption by to the public,4.26216,TJ,N2O,3.9,kg/TJ,16.622424,kg -95ff5cd7-aad4-3e2f-9c80-cb872a071a67,SESCO,II.1.1,Corrientes,AR-W,annual,2022,gas oil combustion consumption by to the public,6.1404,TJ,CO2,74100.0,kg/TJ,455003.63999999996,kg -acf21131-aa8a-32a8-a3f5-0f2cf95db8fd,SESCO,II.1.1,Corrientes,AR-W,annual,2022,gas oil combustion consumption by to the public,6.1404,TJ,CH4,3.9,kg/TJ,23.94756,kg -acf21131-aa8a-32a8-a3f5-0f2cf95db8fd,SESCO,II.1.1,Corrientes,AR-W,annual,2022,gas oil combustion consumption by to the public,6.1404,TJ,N2O,3.9,kg/TJ,23.94756,kg -0e553af5-164a-3014-8399-0d8d3e4d5923,SESCO,II.1.1,Córdoba,AR-X,annual,2022,gas oil combustion consumption by to the public,1261.3104,TJ,CO2,74100.0,kg/TJ,93463100.64,kg -c0a2d859-73a2-3bd2-bcd7-ad0a13cd1c0d,SESCO,II.1.1,Córdoba,AR-X,annual,2022,gas oil combustion consumption by to the public,1261.3104,TJ,CH4,3.9,kg/TJ,4919.11056,kg -c0a2d859-73a2-3bd2-bcd7-ad0a13cd1c0d,SESCO,II.1.1,Córdoba,AR-X,annual,2022,gas oil combustion consumption by to the public,1261.3104,TJ,N2O,3.9,kg/TJ,4919.11056,kg -17802e2e-9c8e-3ed7-b97c-cc092f7afd98,SESCO,II.1.1,Entre Rios,AR-E,annual,2022,gas oil combustion consumption by to the public,333.89328,TJ,CO2,74100.0,kg/TJ,24741492.048,kg -d1c75765-c7ef-32a2-b8fc-488db61a9dcd,SESCO,II.1.1,Entre Rios,AR-E,annual,2022,gas oil combustion consumption by to the public,333.89328,TJ,CH4,3.9,kg/TJ,1302.183792,kg -d1c75765-c7ef-32a2-b8fc-488db61a9dcd,SESCO,II.1.1,Entre Rios,AR-E,annual,2022,gas oil combustion consumption by to the public,333.89328,TJ,N2O,3.9,kg/TJ,1302.183792,kg -d0002f25-a2de-3e7b-8e64-dfd8d9a0b6df,SESCO,II.1.1,Mendoza,AR-M,annual,2022,gas oil combustion consumption by to the public,451.89732,TJ,CO2,74100.0,kg/TJ,33485591.411999997,kg -ae2ec688-6e21-36c1-b801-6782b0891bda,SESCO,II.1.1,Mendoza,AR-M,annual,2022,gas oil combustion consumption by to the public,451.89732,TJ,CH4,3.9,kg/TJ,1762.3995479999999,kg -ae2ec688-6e21-36c1-b801-6782b0891bda,SESCO,II.1.1,Mendoza,AR-M,annual,2022,gas oil combustion consumption by to the public,451.89732,TJ,N2O,3.9,kg/TJ,1762.3995479999999,kg -d77e0801-6a5a-34f8-aacc-f3c5f283d1e7,SESCO,II.1.1,San Luis,AR-D,annual,2022,gas oil combustion consumption by to the public,23.00844,TJ,CO2,74100.0,kg/TJ,1704925.404,kg -4f4f8423-8b17-3769-8d11-898424142b91,SESCO,II.1.1,San Luis,AR-D,annual,2022,gas oil combustion consumption by to the public,23.00844,TJ,CH4,3.9,kg/TJ,89.732916,kg -4f4f8423-8b17-3769-8d11-898424142b91,SESCO,II.1.1,San Luis,AR-D,annual,2022,gas oil combustion consumption by to the public,23.00844,TJ,N2O,3.9,kg/TJ,89.732916,kg -f134b607-6517-3ade-9049-35f551ea16f6,SESCO,II.1.1,Santa Fe,AR-S,annual,2022,gas oil combustion consumption by to the public,1271.92968,TJ,CO2,74100.0,kg/TJ,94249989.288,kg -72bfc37d-f836-34d4-bedd-87870fa00f0d,SESCO,II.1.1,Santa Fe,AR-S,annual,2022,gas oil combustion consumption by to the public,1271.92968,TJ,CH4,3.9,kg/TJ,4960.525752,kg -72bfc37d-f836-34d4-bedd-87870fa00f0d,SESCO,II.1.1,Santa Fe,AR-S,annual,2022,gas oil combustion consumption by to the public,1271.92968,TJ,N2O,3.9,kg/TJ,4960.525752,kg -f62ab9a1-d985-38f9-926b-44007b6aa263,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2022,gas oil combustion consumption by to the public,13.40052,TJ,CO2,74100.0,kg/TJ,992978.532,kg -5f8bef4d-3815-3b2a-a65d-33e88b533791,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2022,gas oil combustion consumption by to the public,13.40052,TJ,CH4,3.9,kg/TJ,52.262028,kg -5f8bef4d-3815-3b2a-a65d-33e88b533791,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2022,gas oil combustion consumption by to the public,13.40052,TJ,N2O,3.9,kg/TJ,52.262028,kg -fb56e19c-86cd-33e6-b0e4-14941020df74,SESCO,II.1.1,Tucuman,AR-T,annual,2022,gas oil combustion consumption by to the public,93.1896,TJ,CO2,74100.0,kg/TJ,6905349.36,kg -0dfbae56-a770-302e-bf09-9077be6a2c7a,SESCO,II.1.1,Tucuman,AR-T,annual,2022,gas oil combustion consumption by to the public,93.1896,TJ,CH4,3.9,kg/TJ,363.43944,kg -0dfbae56-a770-302e-bf09-9077be6a2c7a,SESCO,II.1.1,Tucuman,AR-T,annual,2022,gas oil combustion consumption by to the public,93.1896,TJ,N2O,3.9,kg/TJ,363.43944,kg -6d5c39f9-7508-3e4c-86fa-49108f66b2bf,SESCO,II.1.1,Buenos Aires,AR-B,annual,2022,gas oil combustion consumption by to the public,229.362,TJ,CO2,74100.0,kg/TJ,16995724.2,kg -7e856cde-efc8-3939-af4b-7325475df8c5,SESCO,II.1.1,Buenos Aires,AR-B,annual,2022,gas oil combustion consumption by to the public,229.362,TJ,CH4,3.9,kg/TJ,894.5118,kg -7e856cde-efc8-3939-af4b-7325475df8c5,SESCO,II.1.1,Buenos Aires,AR-B,annual,2022,gas oil combustion consumption by to the public,229.362,TJ,N2O,3.9,kg/TJ,894.5118,kg -67592c23-1ba0-332d-b70f-91cde3d3a206,SESCO,II.1.1,Capital Federal,AR-C,annual,2022,gas oil combustion consumption by to the public,16.254,TJ,CO2,74100.0,kg/TJ,1204421.4000000001,kg -95196021-a6e1-396b-b660-55a704cda8fb,SESCO,II.1.1,Capital Federal,AR-C,annual,2022,gas oil combustion consumption by to the public,16.254,TJ,CH4,3.9,kg/TJ,63.390600000000006,kg -95196021-a6e1-396b-b660-55a704cda8fb,SESCO,II.1.1,Capital Federal,AR-C,annual,2022,gas oil combustion consumption by to the public,16.254,TJ,N2O,3.9,kg/TJ,63.390600000000006,kg -ffc00ae6-8193-3247-9fc3-09f75979cc10,SESCO,II.1.1,Catamarca,AR-K,annual,2022,gas oil combustion consumption by to the public,7.7658,TJ,CO2,74100.0,kg/TJ,575445.78,kg -b635b28b-1ead-3103-b916-f8401762ec2f,SESCO,II.1.1,Catamarca,AR-K,annual,2022,gas oil combustion consumption by to the public,7.7658,TJ,CH4,3.9,kg/TJ,30.28662,kg -b635b28b-1ead-3103-b916-f8401762ec2f,SESCO,II.1.1,Catamarca,AR-K,annual,2022,gas oil combustion consumption by to the public,7.7658,TJ,N2O,3.9,kg/TJ,30.28662,kg -afd9334c-8bee-300f-863f-166c0b52f94c,SESCO,II.1.1,Chaco,AR-H,annual,2022,gas oil combustion consumption by to the public,0.75852,TJ,CO2,74100.0,kg/TJ,56206.331999999995,kg -9618bbc2-0871-306d-8702-a0b4e5443645,SESCO,II.1.1,Chaco,AR-H,annual,2022,gas oil combustion consumption by to the public,0.75852,TJ,CH4,3.9,kg/TJ,2.9582279999999996,kg -9618bbc2-0871-306d-8702-a0b4e5443645,SESCO,II.1.1,Chaco,AR-H,annual,2022,gas oil combustion consumption by to the public,0.75852,TJ,N2O,3.9,kg/TJ,2.9582279999999996,kg -1aac9608-666d-3d78-898c-4f2847796b78,SESCO,II.1.1,Corrientes,AR-W,annual,2022,gas oil combustion consumption by to the public,2.13108,TJ,CO2,74100.0,kg/TJ,157913.028,kg -d9511ad4-5dab-338c-bb53-aeb0a28b23ad,SESCO,II.1.1,Corrientes,AR-W,annual,2022,gas oil combustion consumption by to the public,2.13108,TJ,CH4,3.9,kg/TJ,8.311212,kg -d9511ad4-5dab-338c-bb53-aeb0a28b23ad,SESCO,II.1.1,Corrientes,AR-W,annual,2022,gas oil combustion consumption by to the public,2.13108,TJ,N2O,3.9,kg/TJ,8.311212,kg -13b6ab65-65ff-3a5e-b7c6-dc4ceb30b503,SESCO,II.1.1,Córdoba,AR-X,annual,2022,gas oil combustion consumption by to the public,172.43688,TJ,CO2,74100.0,kg/TJ,12777572.808,kg -9b4a80a1-bd98-3612-8e92-4cea030df88d,SESCO,II.1.1,Córdoba,AR-X,annual,2022,gas oil combustion consumption by to the public,172.43688,TJ,CH4,3.9,kg/TJ,672.503832,kg -9b4a80a1-bd98-3612-8e92-4cea030df88d,SESCO,II.1.1,Córdoba,AR-X,annual,2022,gas oil combustion consumption by to the public,172.43688,TJ,N2O,3.9,kg/TJ,672.503832,kg -8d589b8a-6772-3bd5-82db-ec668e0e57ac,SESCO,II.1.1,Entre Rios,AR-E,annual,2022,gas oil combustion consumption by to the public,53.168639999999996,TJ,CO2,74100.0,kg/TJ,3939796.224,kg -56bc50f9-f511-3b00-9c89-a456e1329c3b,SESCO,II.1.1,Entre Rios,AR-E,annual,2022,gas oil combustion consumption by to the public,53.168639999999996,TJ,CH4,3.9,kg/TJ,207.35769599999998,kg -56bc50f9-f511-3b00-9c89-a456e1329c3b,SESCO,II.1.1,Entre Rios,AR-E,annual,2022,gas oil combustion consumption by to the public,53.168639999999996,TJ,N2O,3.9,kg/TJ,207.35769599999998,kg -e7c0e0a5-ebf6-3738-9acd-7a02e44c423f,SESCO,II.1.1,Mendoza,AR-M,annual,2022,gas oil combustion consumption by to the public,95.39292,TJ,CO2,74100.0,kg/TJ,7068615.372,kg -f2ed3a5a-40d8-3710-8e69-a7b813e9d0f0,SESCO,II.1.1,Mendoza,AR-M,annual,2022,gas oil combustion consumption by to the public,95.39292,TJ,CH4,3.9,kg/TJ,372.032388,kg -f2ed3a5a-40d8-3710-8e69-a7b813e9d0f0,SESCO,II.1.1,Mendoza,AR-M,annual,2022,gas oil combustion consumption by to the public,95.39292,TJ,N2O,3.9,kg/TJ,372.032388,kg -5b962d66-3f6f-304f-a5f4-f5c284ea5394,SESCO,II.1.1,San Juan,AR-J,annual,2022,gas oil combustion consumption by to the public,0.65016,TJ,CO2,74100.0,kg/TJ,48176.856,kg -547a96f0-53fc-34a6-9405-f5c1800f924e,SESCO,II.1.1,San Juan,AR-J,annual,2022,gas oil combustion consumption by to the public,0.65016,TJ,CH4,3.9,kg/TJ,2.535624,kg -547a96f0-53fc-34a6-9405-f5c1800f924e,SESCO,II.1.1,San Juan,AR-J,annual,2022,gas oil combustion consumption by to the public,0.65016,TJ,N2O,3.9,kg/TJ,2.535624,kg -a6abc454-3a09-345c-a0ee-4bc561f345ea,SESCO,II.1.1,San Luis,AR-D,annual,2022,gas oil combustion consumption by to the public,4.11768,TJ,CO2,74100.0,kg/TJ,305120.088,kg -9f3e00a3-3ec5-3104-bab3-300f443d81e6,SESCO,II.1.1,San Luis,AR-D,annual,2022,gas oil combustion consumption by to the public,4.11768,TJ,CH4,3.9,kg/TJ,16.058951999999998,kg -9f3e00a3-3ec5-3104-bab3-300f443d81e6,SESCO,II.1.1,San Luis,AR-D,annual,2022,gas oil combustion consumption by to the public,4.11768,TJ,N2O,3.9,kg/TJ,16.058951999999998,kg -4bf40a6a-195e-3d2f-b800-7e10bd8928c0,SESCO,II.1.1,Santa Fe,AR-S,annual,2022,gas oil combustion consumption by to the public,170.70311999999998,TJ,CO2,74100.0,kg/TJ,12649101.191999998,kg -a0a11a7c-d9f9-3580-8c00-d5f4bda70b4c,SESCO,II.1.1,Santa Fe,AR-S,annual,2022,gas oil combustion consumption by to the public,170.70311999999998,TJ,CH4,3.9,kg/TJ,665.7421679999999,kg -a0a11a7c-d9f9-3580-8c00-d5f4bda70b4c,SESCO,II.1.1,Santa Fe,AR-S,annual,2022,gas oil combustion consumption by to the public,170.70311999999998,TJ,N2O,3.9,kg/TJ,665.7421679999999,kg -0091e430-3bbd-3352-8d82-224d6585579c,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2022,gas oil combustion consumption by to the public,7.51296,TJ,CO2,74100.0,kg/TJ,556710.336,kg -8be4babf-87dd-33db-ba5f-3dc575b02933,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2022,gas oil combustion consumption by to the public,7.51296,TJ,CH4,3.9,kg/TJ,29.300544,kg -8be4babf-87dd-33db-ba5f-3dc575b02933,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2022,gas oil combustion consumption by to the public,7.51296,TJ,N2O,3.9,kg/TJ,29.300544,kg -ee21ab8b-ed27-37f0-b320-493452b5e2dc,SESCO,II.1.1,Tucuman,AR-T,annual,2022,gas oil combustion consumption by to the public,2.5284,TJ,CO2,74100.0,kg/TJ,187354.44,kg -a0cb5e92-0ce9-3a03-a56b-6fcc5876ab20,SESCO,II.1.1,Tucuman,AR-T,annual,2022,gas oil combustion consumption by to the public,2.5284,TJ,CH4,3.9,kg/TJ,9.860759999999999,kg -a0cb5e92-0ce9-3a03-a56b-6fcc5876ab20,SESCO,II.1.1,Tucuman,AR-T,annual,2022,gas oil combustion consumption by to the public,2.5284,TJ,N2O,3.9,kg/TJ,9.860759999999999,kg -760070ad-0ddc-3ee2-bf2b-ee32ddcfd1ab,SESCO,II.1.1,Buenos Aires,AR-B,annual,2022,jet kerosene combustion consumption by to the public,0.31453,TJ,CO2,71500.0,kg/TJ,22488.894999999997,kg -14c3d360-c3f9-3a44-aa9c-d7a23f0be055,SESCO,II.1.1,Buenos Aires,AR-B,annual,2022,jet kerosene combustion consumption by to the public,0.31453,TJ,CH4,0.5,kg/TJ,0.157265,kg -3cbb27cd-15a8-30d0-a77a-e64d675f20a7,SESCO,II.1.1,Buenos Aires,AR-B,annual,2022,jet kerosene combustion consumption by to the public,0.31453,TJ,N2O,2.0,kg/TJ,0.62906,kg -aacdb00d-08d7-342c-8779-0a6d170ad7a5,SESCO,II.1.1,Córdoba,AR-X,annual,2022,jet kerosene combustion consumption by to the public,0.9121369999999999,TJ,CO2,71500.0,kg/TJ,65217.79549999999,kg -f6e22f93-a102-3ea1-b47f-d200b5cff1a2,SESCO,II.1.1,Córdoba,AR-X,annual,2022,jet kerosene combustion consumption by to the public,0.9121369999999999,TJ,CH4,0.5,kg/TJ,0.45606849999999993,kg -510c9156-ea05-3687-ab56-e5fb68f2c204,SESCO,II.1.1,Córdoba,AR-X,annual,2022,jet kerosene combustion consumption by to the public,0.9121369999999999,TJ,N2O,2.0,kg/TJ,1.8242739999999997,kg -36b5d004-a844-310e-8c71-cdd30e562628,SESCO,II.1.1,Santa Fe,AR-S,annual,2022,jet kerosene combustion consumption by to the public,0.5032479999999999,TJ,CO2,71500.0,kg/TJ,35982.231999999996,kg -9f512e33-1b81-3dd1-9d95-6d50abfe24bb,SESCO,II.1.1,Santa Fe,AR-S,annual,2022,jet kerosene combustion consumption by to the public,0.5032479999999999,TJ,CH4,0.5,kg/TJ,0.25162399999999996,kg -b8545903-4d07-3743-8b2c-5b0f7bcc4069,SESCO,II.1.1,Santa Fe,AR-S,annual,2022,jet kerosene combustion consumption by to the public,0.5032479999999999,TJ,N2O,2.0,kg/TJ,1.0064959999999998,kg -28ebeabb-506e-3983-80cc-14d493d3051b,SESCO,II.5.1,Buenos Aires,AR-B,annual,2022,gas oil combustion consumption by agriculture machines,337.75812,TJ,CO2,74100.0,kg/TJ,25027876.692,kg -5478ea20-7804-3c7b-a9a7-349521e52c07,SESCO,II.5.1,Buenos Aires,AR-B,annual,2022,gas oil combustion consumption by agriculture machines,337.75812,TJ,CH4,3.9,kg/TJ,1317.256668,kg -5478ea20-7804-3c7b-a9a7-349521e52c07,SESCO,II.5.1,Buenos Aires,AR-B,annual,2022,gas oil combustion consumption by agriculture machines,337.75812,TJ,N2O,3.9,kg/TJ,1317.256668,kg -003831e7-8530-343e-a9f7-c5cf8f22aec1,SESCO,II.5.1,Capital Federal,AR-C,annual,2022,gas oil combustion consumption by agriculture machines,2.60064,TJ,CO2,74100.0,kg/TJ,192707.424,kg -7590ccc9-113e-3d75-a4fd-67608737eec0,SESCO,II.5.1,Capital Federal,AR-C,annual,2022,gas oil combustion consumption by agriculture machines,2.60064,TJ,CH4,3.9,kg/TJ,10.142496,kg -7590ccc9-113e-3d75-a4fd-67608737eec0,SESCO,II.5.1,Capital Federal,AR-C,annual,2022,gas oil combustion consumption by agriculture machines,2.60064,TJ,N2O,3.9,kg/TJ,10.142496,kg -55d4d8c5-a3a7-3ef8-b82b-f3f7095f9229,SESCO,II.5.1,Córdoba,AR-X,annual,2022,gas oil combustion consumption by agriculture machines,201.98304,TJ,CO2,74100.0,kg/TJ,14966943.263999999,kg -d7cc065a-24ab-3f28-a6d0-a5bc433e386c,SESCO,II.5.1,Córdoba,AR-X,annual,2022,gas oil combustion consumption by agriculture machines,201.98304,TJ,CH4,3.9,kg/TJ,787.733856,kg -d7cc065a-24ab-3f28-a6d0-a5bc433e386c,SESCO,II.5.1,Córdoba,AR-X,annual,2022,gas oil combustion consumption by agriculture machines,201.98304,TJ,N2O,3.9,kg/TJ,787.733856,kg -3162fb28-aef7-3c5f-916d-f59fc05e1274,SESCO,II.5.1,Entre Rios,AR-E,annual,2022,gas oil combustion consumption by agriculture machines,246.01332,TJ,CO2,74100.0,kg/TJ,18229587.012,kg -9adc8d30-aecd-30ca-9428-0b7b398bac07,SESCO,II.5.1,Entre Rios,AR-E,annual,2022,gas oil combustion consumption by agriculture machines,246.01332,TJ,CH4,3.9,kg/TJ,959.4519479999999,kg -9adc8d30-aecd-30ca-9428-0b7b398bac07,SESCO,II.5.1,Entre Rios,AR-E,annual,2022,gas oil combustion consumption by agriculture machines,246.01332,TJ,N2O,3.9,kg/TJ,959.4519479999999,kg -def3834e-12a9-3ef4-8c0b-1508434691f8,SESCO,II.5.1,Salta,AR-A,annual,2022,gas oil combustion consumption by agriculture machines,321.17904,TJ,CO2,74100.0,kg/TJ,23799366.864,kg -95671294-c189-3ecb-9e74-fc57975f0c83,SESCO,II.5.1,Salta,AR-A,annual,2022,gas oil combustion consumption by agriculture machines,321.17904,TJ,CH4,3.9,kg/TJ,1252.598256,kg -95671294-c189-3ecb-9e74-fc57975f0c83,SESCO,II.5.1,Salta,AR-A,annual,2022,gas oil combustion consumption by agriculture machines,321.17904,TJ,N2O,3.9,kg/TJ,1252.598256,kg -500eef46-f2fd-35de-a300-e0c591661449,SESCO,II.5.1,Santa Fe,AR-S,annual,2022,gas oil combustion consumption by agriculture machines,169.98072,TJ,CO2,74100.0,kg/TJ,12595571.352,kg -1bbc79d9-8fa8-3ad6-9984-b5ca313301f2,SESCO,II.5.1,Santa Fe,AR-S,annual,2022,gas oil combustion consumption by agriculture machines,169.98072,TJ,CH4,3.9,kg/TJ,662.924808,kg -1bbc79d9-8fa8-3ad6-9984-b5ca313301f2,SESCO,II.5.1,Santa Fe,AR-S,annual,2022,gas oil combustion consumption by agriculture machines,169.98072,TJ,N2O,3.9,kg/TJ,662.924808,kg -61624599-7100-34d1-be3d-6b8b54188085,SESCO,II.5.1,Buenos Aires,AR-B,annual,2022,gas oil combustion consumption by agriculture machines,20.046599999999998,TJ,CO2,74100.0,kg/TJ,1485453.0599999998,kg -8cd36c6e-8896-3b9f-9bba-961452c3a88e,SESCO,II.5.1,Buenos Aires,AR-B,annual,2022,gas oil combustion consumption by agriculture machines,20.046599999999998,TJ,CH4,3.9,kg/TJ,78.18173999999999,kg -8cd36c6e-8896-3b9f-9bba-961452c3a88e,SESCO,II.5.1,Buenos Aires,AR-B,annual,2022,gas oil combustion consumption by agriculture machines,20.046599999999998,TJ,N2O,3.9,kg/TJ,78.18173999999999,kg -68795360-e27d-34bd-a5ea-ac906bacead9,SESCO,II.5.1,Córdoba,AR-X,annual,2022,gas oil combustion consumption by agriculture machines,18.20448,TJ,CO2,74100.0,kg/TJ,1348951.968,kg -4071a909-697f-3905-8599-452f63a85782,SESCO,II.5.1,Córdoba,AR-X,annual,2022,gas oil combustion consumption by agriculture machines,18.20448,TJ,CH4,3.9,kg/TJ,70.997472,kg -4071a909-697f-3905-8599-452f63a85782,SESCO,II.5.1,Córdoba,AR-X,annual,2022,gas oil combustion consumption by agriculture machines,18.20448,TJ,N2O,3.9,kg/TJ,70.997472,kg -5bba0ab6-c84d-36f6-9e1a-adcd0cbecdf1,SESCO,II.5.1,Entre Rios,AR-E,annual,2022,gas oil combustion consumption by agriculture machines,7.91028,TJ,CO2,74100.0,kg/TJ,586151.748,kg -52847f67-f7fd-3a3d-a2c8-b23afb523a5c,SESCO,II.5.1,Entre Rios,AR-E,annual,2022,gas oil combustion consumption by agriculture machines,7.91028,TJ,CH4,3.9,kg/TJ,30.850092,kg -52847f67-f7fd-3a3d-a2c8-b23afb523a5c,SESCO,II.5.1,Entre Rios,AR-E,annual,2022,gas oil combustion consumption by agriculture machines,7.91028,TJ,N2O,3.9,kg/TJ,30.850092,kg -4f9498cd-d48f-390c-8fda-4c9fe84a0d34,SESCO,II.5.1,Salta,AR-A,annual,2022,gas oil combustion consumption by agriculture machines,0.43344,TJ,CO2,74100.0,kg/TJ,32117.904,kg -a7996e8e-e586-33ea-bed5-96a03024f0ea,SESCO,II.5.1,Salta,AR-A,annual,2022,gas oil combustion consumption by agriculture machines,0.43344,TJ,CH4,3.9,kg/TJ,1.690416,kg -a7996e8e-e586-33ea-bed5-96a03024f0ea,SESCO,II.5.1,Salta,AR-A,annual,2022,gas oil combustion consumption by agriculture machines,0.43344,TJ,N2O,3.9,kg/TJ,1.690416,kg -ef1eba40-11a1-3d1a-9daf-0b01bc2166cc,SESCO,II.5.1,Santa Fe,AR-S,annual,2022,gas oil combustion consumption by agriculture machines,6.6822,TJ,CO2,74100.0,kg/TJ,495151.02,kg -e366a7cb-9594-31a8-8d1f-b0200c437154,SESCO,II.5.1,Santa Fe,AR-S,annual,2022,gas oil combustion consumption by agriculture machines,6.6822,TJ,CH4,3.9,kg/TJ,26.060579999999998,kg -e366a7cb-9594-31a8-8d1f-b0200c437154,SESCO,II.5.1,Santa Fe,AR-S,annual,2022,gas oil combustion consumption by agriculture machines,6.6822,TJ,N2O,3.9,kg/TJ,26.060579999999998,kg -1288cf1d-8615-39e4-91a3-8db9d0a2bdba,SESCO,II.1.1,Buenos Aires,AR-B,annual,2022,gasoline combustion consumption by to the public,1.1518,TJ,CO2,69300.0,kg/TJ,79819.73999999999,kg -5e91d168-9c27-3ee2-b1ff-1caa7acbc17e,SESCO,II.1.1,Buenos Aires,AR-B,annual,2022,gasoline combustion consumption by to the public,1.1518,TJ,CH4,33.0,kg/TJ,38.0094,kg -73471a8b-f2c9-357d-a1a4-c53227f8db6d,SESCO,II.1.1,Buenos Aires,AR-B,annual,2022,gasoline combustion consumption by to the public,1.1518,TJ,N2O,3.2,kg/TJ,3.68576,kg -72d25d88-14f0-3991-a05e-fa65e47d7d4e,SESCO,II.1.1,Buenos Aires,AR-B,annual,2022,gas oil combustion consumption by to the public,1925.48496,TJ,CO2,74100.0,kg/TJ,142678435.536,kg -95cd6c86-06a5-3729-9bf4-02c7bfdba6f7,SESCO,II.1.1,Buenos Aires,AR-B,annual,2022,gas oil combustion consumption by to the public,1925.48496,TJ,CH4,3.9,kg/TJ,7509.391344,kg -95cd6c86-06a5-3729-9bf4-02c7bfdba6f7,SESCO,II.1.1,Buenos Aires,AR-B,annual,2022,gas oil combustion consumption by to the public,1925.48496,TJ,N2O,3.9,kg/TJ,7509.391344,kg -55130c48-400b-3b69-8179-74384c54a7ba,SESCO,II.1.1,Capital Federal,AR-C,annual,2022,gas oil combustion consumption by to the public,360.54984,TJ,CO2,74100.0,kg/TJ,26716743.144,kg -e38e4d8c-6419-32c2-99a4-5e9558aaad7a,SESCO,II.1.1,Capital Federal,AR-C,annual,2022,gas oil combustion consumption by to the public,360.54984,TJ,CH4,3.9,kg/TJ,1406.144376,kg -e38e4d8c-6419-32c2-99a4-5e9558aaad7a,SESCO,II.1.1,Capital Federal,AR-C,annual,2022,gas oil combustion consumption by to the public,360.54984,TJ,N2O,3.9,kg/TJ,1406.144376,kg -e43bb896-c56c-31d1-95c0-882bfd75eba6,SESCO,II.1.1,Catamarca,AR-K,annual,2022,gas oil combustion consumption by to the public,39.1902,TJ,CO2,74100.0,kg/TJ,2903993.82,kg -4f22184b-5369-3dca-a1d7-abc29488b7b1,SESCO,II.1.1,Catamarca,AR-K,annual,2022,gas oil combustion consumption by to the public,39.1902,TJ,CH4,3.9,kg/TJ,152.84178,kg -4f22184b-5369-3dca-a1d7-abc29488b7b1,SESCO,II.1.1,Catamarca,AR-K,annual,2022,gas oil combustion consumption by to the public,39.1902,TJ,N2O,3.9,kg/TJ,152.84178,kg -56668dec-c9f1-3d90-aef5-74029c0995d1,SESCO,II.1.1,Chaco,AR-H,annual,2022,gas oil combustion consumption by to the public,258.0774,TJ,CO2,74100.0,kg/TJ,19123535.34,kg -4a9eb9c1-8458-3023-a6d3-52b49cbb56d7,SESCO,II.1.1,Chaco,AR-H,annual,2022,gas oil combustion consumption by to the public,258.0774,TJ,CH4,3.9,kg/TJ,1006.50186,kg -4a9eb9c1-8458-3023-a6d3-52b49cbb56d7,SESCO,II.1.1,Chaco,AR-H,annual,2022,gas oil combustion consumption by to the public,258.0774,TJ,N2O,3.9,kg/TJ,1006.50186,kg -d2b3b8cb-1451-3afd-bc66-9b64837bf2c5,SESCO,II.1.1,Corrientes,AR-W,annual,2022,gas oil combustion consumption by to the public,417.7278,TJ,CO2,74100.0,kg/TJ,30953629.98,kg -5a56d7c8-ab0c-3b97-ab1d-e68b5641717e,SESCO,II.1.1,Corrientes,AR-W,annual,2022,gas oil combustion consumption by to the public,417.7278,TJ,CH4,3.9,kg/TJ,1629.13842,kg -5a56d7c8-ab0c-3b97-ab1d-e68b5641717e,SESCO,II.1.1,Corrientes,AR-W,annual,2022,gas oil combustion consumption by to the public,417.7278,TJ,N2O,3.9,kg/TJ,1629.13842,kg -4ad81252-93ef-3a98-8c75-c0b5fa9abc81,SESCO,II.1.1,Córdoba,AR-X,annual,2022,gas oil combustion consumption by to the public,856.7664,TJ,CO2,74100.0,kg/TJ,63486390.239999995,kg -fbbafedb-9313-3ea8-b355-c1cde793bd4d,SESCO,II.1.1,Córdoba,AR-X,annual,2022,gas oil combustion consumption by to the public,856.7664,TJ,CH4,3.9,kg/TJ,3341.3889599999998,kg -fbbafedb-9313-3ea8-b355-c1cde793bd4d,SESCO,II.1.1,Córdoba,AR-X,annual,2022,gas oil combustion consumption by to the public,856.7664,TJ,N2O,3.9,kg/TJ,3341.3889599999998,kg -19d66045-079c-37b8-bd53-88e3b7b7cc0d,SESCO,II.1.1,Entre Rios,AR-E,annual,2022,gas oil combustion consumption by to the public,595.077,TJ,CO2,74100.0,kg/TJ,44095205.7,kg -68ec1f23-e022-3eae-9dcd-021d87bf8def,SESCO,II.1.1,Entre Rios,AR-E,annual,2022,gas oil combustion consumption by to the public,595.077,TJ,CH4,3.9,kg/TJ,2320.8003,kg -68ec1f23-e022-3eae-9dcd-021d87bf8def,SESCO,II.1.1,Entre Rios,AR-E,annual,2022,gas oil combustion consumption by to the public,595.077,TJ,N2O,3.9,kg/TJ,2320.8003,kg -3a0f7cd9-4c82-37fc-a813-078833b11033,SESCO,II.1.1,Formosa,AR-P,annual,2022,gas oil combustion consumption by to the public,22.82784,TJ,CO2,74100.0,kg/TJ,1691542.944,kg -62ee7358-576b-3334-92d4-7840ae307e9b,SESCO,II.1.1,Formosa,AR-P,annual,2022,gas oil combustion consumption by to the public,22.82784,TJ,CH4,3.9,kg/TJ,89.02857599999999,kg -62ee7358-576b-3334-92d4-7840ae307e9b,SESCO,II.1.1,Formosa,AR-P,annual,2022,gas oil combustion consumption by to the public,22.82784,TJ,N2O,3.9,kg/TJ,89.02857599999999,kg -e604d8f3-5110-3c20-8aac-78e464e3994b,SESCO,II.1.1,La Rioja,AR-F,annual,2022,gas oil combustion consumption by to the public,57.75588,TJ,CO2,74100.0,kg/TJ,4279710.708,kg -28c38c58-6a61-3a6c-848a-57c8d6e6e0fd,SESCO,II.1.1,La Rioja,AR-F,annual,2022,gas oil combustion consumption by to the public,57.75588,TJ,CH4,3.9,kg/TJ,225.247932,kg -28c38c58-6a61-3a6c-848a-57c8d6e6e0fd,SESCO,II.1.1,La Rioja,AR-F,annual,2022,gas oil combustion consumption by to the public,57.75588,TJ,N2O,3.9,kg/TJ,225.247932,kg -72b99d94-4842-36fe-8550-3cfd2f0d37d3,SESCO,II.1.1,Mendoza,AR-M,annual,2022,gas oil combustion consumption by to the public,1065.43164,TJ,CO2,74100.0,kg/TJ,78948484.524,kg -53e58e6a-e3b1-36d7-a876-77e4c3b74d36,SESCO,II.1.1,Mendoza,AR-M,annual,2022,gas oil combustion consumption by to the public,1065.43164,TJ,CH4,3.9,kg/TJ,4155.183396,kg -53e58e6a-e3b1-36d7-a876-77e4c3b74d36,SESCO,II.1.1,Mendoza,AR-M,annual,2022,gas oil combustion consumption by to the public,1065.43164,TJ,N2O,3.9,kg/TJ,4155.183396,kg -af8368f7-e86b-3ffb-9b95-771e0f43d6f8,SESCO,II.1.1,Misiones,AR-N,annual,2022,gas oil combustion consumption by to the public,375.97308,TJ,CO2,74100.0,kg/TJ,27859605.228,kg -f7d3673a-0fa8-32e7-96f8-801d0e6bef3b,SESCO,II.1.1,Misiones,AR-N,annual,2022,gas oil combustion consumption by to the public,375.97308,TJ,CH4,3.9,kg/TJ,1466.2950119999998,kg -f7d3673a-0fa8-32e7-96f8-801d0e6bef3b,SESCO,II.1.1,Misiones,AR-N,annual,2022,gas oil combustion consumption by to the public,375.97308,TJ,N2O,3.9,kg/TJ,1466.2950119999998,kg -03be9a6c-0018-348d-b373-579104e03301,SESCO,II.1.1,San Juan,AR-J,annual,2022,gas oil combustion consumption by to the public,90.22776,TJ,CO2,74100.0,kg/TJ,6685877.016,kg -c17d45ac-9cef-376b-8126-8b5c96d906c3,SESCO,II.1.1,San Juan,AR-J,annual,2022,gas oil combustion consumption by to the public,90.22776,TJ,CH4,3.9,kg/TJ,351.888264,kg -c17d45ac-9cef-376b-8126-8b5c96d906c3,SESCO,II.1.1,San Juan,AR-J,annual,2022,gas oil combustion consumption by to the public,90.22776,TJ,N2O,3.9,kg/TJ,351.888264,kg -85e344d6-3b49-3985-a15c-ad8d4b64d8e8,SESCO,II.1.1,San Luis,AR-D,annual,2022,gas oil combustion consumption by to the public,18.99912,TJ,CO2,74100.0,kg/TJ,1407834.7920000001,kg -fa7404db-fc7f-3def-9b77-78684915efa2,SESCO,II.1.1,San Luis,AR-D,annual,2022,gas oil combustion consumption by to the public,18.99912,TJ,CH4,3.9,kg/TJ,74.096568,kg -fa7404db-fc7f-3def-9b77-78684915efa2,SESCO,II.1.1,San Luis,AR-D,annual,2022,gas oil combustion consumption by to the public,18.99912,TJ,N2O,3.9,kg/TJ,74.096568,kg -5c2b0997-45a2-37ae-890f-be2596f0987d,SESCO,II.1.1,Santa Fe,AR-S,annual,2022,gas oil combustion consumption by to the public,1061.2056,TJ,CO2,74100.0,kg/TJ,78635334.96,kg -ab51b4b1-6c29-3adb-a867-a582e4d8b6a8,SESCO,II.1.1,Santa Fe,AR-S,annual,2022,gas oil combustion consumption by to the public,1061.2056,TJ,CH4,3.9,kg/TJ,4138.70184,kg -ab51b4b1-6c29-3adb-a867-a582e4d8b6a8,SESCO,II.1.1,Santa Fe,AR-S,annual,2022,gas oil combustion consumption by to the public,1061.2056,TJ,N2O,3.9,kg/TJ,4138.70184,kg -d1f28f65-a527-3dea-9a5d-434388cb604c,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2022,gas oil combustion consumption by to the public,79.68072,TJ,CO2,74100.0,kg/TJ,5904341.352,kg -af83c27d-7fa3-3179-b4ca-b2e0d89aa625,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2022,gas oil combustion consumption by to the public,79.68072,TJ,CH4,3.9,kg/TJ,310.75480799999997,kg -af83c27d-7fa3-3179-b4ca-b2e0d89aa625,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2022,gas oil combustion consumption by to the public,79.68072,TJ,N2O,3.9,kg/TJ,310.75480799999997,kg -764b1ef9-0952-38a8-966e-b3866dfc66db,SESCO,II.1.1,Tucuman,AR-T,annual,2022,gas oil combustion consumption by to the public,220.72932,TJ,CO2,74100.0,kg/TJ,16356042.612,kg -11d665e1-1149-3c11-bb4f-6f5f4c79f754,SESCO,II.1.1,Tucuman,AR-T,annual,2022,gas oil combustion consumption by to the public,220.72932,TJ,CH4,3.9,kg/TJ,860.844348,kg -11d665e1-1149-3c11-bb4f-6f5f4c79f754,SESCO,II.1.1,Tucuman,AR-T,annual,2022,gas oil combustion consumption by to the public,220.72932,TJ,N2O,3.9,kg/TJ,860.844348,kg -27260785-50d3-3384-b65c-513478081782,SESCO,II.1.1,Buenos Aires,AR-B,annual,2022,gas oil combustion consumption by to the public,302.75784,TJ,CO2,74100.0,kg/TJ,22434355.944,kg -4383a02b-2f88-388e-9b29-acaf83a871ce,SESCO,II.1.1,Buenos Aires,AR-B,annual,2022,gas oil combustion consumption by to the public,302.75784,TJ,CH4,3.9,kg/TJ,1180.755576,kg -4383a02b-2f88-388e-9b29-acaf83a871ce,SESCO,II.1.1,Buenos Aires,AR-B,annual,2022,gas oil combustion consumption by to the public,302.75784,TJ,N2O,3.9,kg/TJ,1180.755576,kg -8a030f91-4bbc-39f5-8600-99b27f2c1566,SESCO,II.1.1,Capital Federal,AR-C,annual,2022,gas oil combustion consumption by to the public,47.78676,TJ,CO2,74100.0,kg/TJ,3540998.916,kg -c390e91f-b18c-3c27-b7eb-4f5a5090489e,SESCO,II.1.1,Capital Federal,AR-C,annual,2022,gas oil combustion consumption by to the public,47.78676,TJ,CH4,3.9,kg/TJ,186.368364,kg -c390e91f-b18c-3c27-b7eb-4f5a5090489e,SESCO,II.1.1,Capital Federal,AR-C,annual,2022,gas oil combustion consumption by to the public,47.78676,TJ,N2O,3.9,kg/TJ,186.368364,kg -174fb43a-49d1-3124-8934-5f6326e2c831,SESCO,II.1.1,Catamarca,AR-K,annual,2022,gas oil combustion consumption by to the public,18.348959999999998,TJ,CO2,74100.0,kg/TJ,1359657.9359999998,kg -e95d8dd3-c2d1-3e5d-96c3-af2157a1186e,SESCO,II.1.1,Catamarca,AR-K,annual,2022,gas oil combustion consumption by to the public,18.348959999999998,TJ,CH4,3.9,kg/TJ,71.56094399999999,kg -e95d8dd3-c2d1-3e5d-96c3-af2157a1186e,SESCO,II.1.1,Catamarca,AR-K,annual,2022,gas oil combustion consumption by to the public,18.348959999999998,TJ,N2O,3.9,kg/TJ,71.56094399999999,kg -6e9e9e7c-a213-3d3a-a9d9-3d69d25eee13,SESCO,II.1.1,Chaco,AR-H,annual,2022,gas oil combustion consumption by to the public,59.88696,TJ,CO2,74100.0,kg/TJ,4437623.7360000005,kg -213eca1d-c2c1-3ea5-984d-9ed57d54707e,SESCO,II.1.1,Chaco,AR-H,annual,2022,gas oil combustion consumption by to the public,59.88696,TJ,CH4,3.9,kg/TJ,233.559144,kg -213eca1d-c2c1-3ea5-984d-9ed57d54707e,SESCO,II.1.1,Chaco,AR-H,annual,2022,gas oil combustion consumption by to the public,59.88696,TJ,N2O,3.9,kg/TJ,233.559144,kg -f5de4ef5-8e55-362b-847c-9a3d81a26808,SESCO,II.1.1,Corrientes,AR-W,annual,2022,gas oil combustion consumption by to the public,27.70404,TJ,CO2,74100.0,kg/TJ,2052869.3639999998,kg -792f627a-014d-3c01-ae3e-247eda43a2ee,SESCO,II.1.1,Corrientes,AR-W,annual,2022,gas oil combustion consumption by to the public,27.70404,TJ,CH4,3.9,kg/TJ,108.045756,kg -792f627a-014d-3c01-ae3e-247eda43a2ee,SESCO,II.1.1,Corrientes,AR-W,annual,2022,gas oil combustion consumption by to the public,27.70404,TJ,N2O,3.9,kg/TJ,108.045756,kg -60336c79-840a-3807-b42c-758fc82c4369,SESCO,II.1.1,Córdoba,AR-X,annual,2022,gas oil combustion consumption by to the public,143.79372,TJ,CO2,74100.0,kg/TJ,10655114.652,kg -1901d93d-7851-3718-ad30-40bf9d52142f,SESCO,II.1.1,Córdoba,AR-X,annual,2022,gas oil combustion consumption by to the public,143.79372,TJ,CH4,3.9,kg/TJ,560.795508,kg -1901d93d-7851-3718-ad30-40bf9d52142f,SESCO,II.1.1,Córdoba,AR-X,annual,2022,gas oil combustion consumption by to the public,143.79372,TJ,N2O,3.9,kg/TJ,560.795508,kg -5b4f9da7-8567-3020-95ae-4cd024dd2013,SESCO,II.1.1,Entre Rios,AR-E,annual,2022,gas oil combustion consumption by to the public,102.65304,TJ,CO2,74100.0,kg/TJ,7606590.264,kg -f71c7cb4-d1c1-338b-aa71-f72028c49325,SESCO,II.1.1,Entre Rios,AR-E,annual,2022,gas oil combustion consumption by to the public,102.65304,TJ,CH4,3.9,kg/TJ,400.346856,kg -f71c7cb4-d1c1-338b-aa71-f72028c49325,SESCO,II.1.1,Entre Rios,AR-E,annual,2022,gas oil combustion consumption by to the public,102.65304,TJ,N2O,3.9,kg/TJ,400.346856,kg -7ef4d524-5039-3466-9a1f-4f4eaf394cb9,SESCO,II.1.1,Formosa,AR-P,annual,2022,gas oil combustion consumption by to the public,5.12904,TJ,CO2,74100.0,kg/TJ,380061.864,kg -cc24f576-cff0-3eca-bfd5-4a0194c8a6e8,SESCO,II.1.1,Formosa,AR-P,annual,2022,gas oil combustion consumption by to the public,5.12904,TJ,CH4,3.9,kg/TJ,20.003256,kg -cc24f576-cff0-3eca-bfd5-4a0194c8a6e8,SESCO,II.1.1,Formosa,AR-P,annual,2022,gas oil combustion consumption by to the public,5.12904,TJ,N2O,3.9,kg/TJ,20.003256,kg -eda40ee5-4a7d-39e5-8413-dfc3d81b1bd1,SESCO,II.1.1,La Rioja,AR-F,annual,2022,gas oil combustion consumption by to the public,25.97028,TJ,CO2,74100.0,kg/TJ,1924397.748,kg -c0619b02-a3ba-3c5f-827b-32d087b2e6f8,SESCO,II.1.1,La Rioja,AR-F,annual,2022,gas oil combustion consumption by to the public,25.97028,TJ,CH4,3.9,kg/TJ,101.28409199999999,kg -c0619b02-a3ba-3c5f-827b-32d087b2e6f8,SESCO,II.1.1,La Rioja,AR-F,annual,2022,gas oil combustion consumption by to the public,25.97028,TJ,N2O,3.9,kg/TJ,101.28409199999999,kg -6b2c2b37-d10f-3f3d-b64b-5da7d0c3c9a1,SESCO,II.1.1,Mendoza,AR-M,annual,2022,gas oil combustion consumption by to the public,161.16744,TJ,CO2,74100.0,kg/TJ,11942507.304,kg -f2ede501-4ff8-341d-b84f-f4ed54ce27fa,SESCO,II.1.1,Mendoza,AR-M,annual,2022,gas oil combustion consumption by to the public,161.16744,TJ,CH4,3.9,kg/TJ,628.553016,kg -f2ede501-4ff8-341d-b84f-f4ed54ce27fa,SESCO,II.1.1,Mendoza,AR-M,annual,2022,gas oil combustion consumption by to the public,161.16744,TJ,N2O,3.9,kg/TJ,628.553016,kg -354ba4f4-57aa-3c69-bf33-29533861cf17,SESCO,II.1.1,Misiones,AR-N,annual,2022,gas oil combustion consumption by to the public,41.140679999999996,TJ,CO2,74100.0,kg/TJ,3048524.388,kg -e8ef3321-a35e-3897-9979-0087dc6df99a,SESCO,II.1.1,Misiones,AR-N,annual,2022,gas oil combustion consumption by to the public,41.140679999999996,TJ,CH4,3.9,kg/TJ,160.44865199999998,kg -e8ef3321-a35e-3897-9979-0087dc6df99a,SESCO,II.1.1,Misiones,AR-N,annual,2022,gas oil combustion consumption by to the public,41.140679999999996,TJ,N2O,3.9,kg/TJ,160.44865199999998,kg -cc966a44-498b-3159-96a0-5844752778c8,SESCO,II.1.1,San Juan,AR-J,annual,2022,gas oil combustion consumption by to the public,21.27468,TJ,CO2,74100.0,kg/TJ,1576453.788,kg -68a05b7e-68fe-3255-828a-02ea514b5a2d,SESCO,II.1.1,San Juan,AR-J,annual,2022,gas oil combustion consumption by to the public,21.27468,TJ,CH4,3.9,kg/TJ,82.97125199999999,kg -68a05b7e-68fe-3255-828a-02ea514b5a2d,SESCO,II.1.1,San Juan,AR-J,annual,2022,gas oil combustion consumption by to the public,21.27468,TJ,N2O,3.9,kg/TJ,82.97125199999999,kg -5d92405e-6bf4-33bb-9b7a-9069b0eaf169,SESCO,II.1.1,San Luis,AR-D,annual,2022,gas oil combustion consumption by to the public,3.14244,TJ,CO2,74100.0,kg/TJ,232854.804,kg -adcb1357-f037-30b2-80f9-ae016fe6465f,SESCO,II.1.1,San Luis,AR-D,annual,2022,gas oil combustion consumption by to the public,3.14244,TJ,CH4,3.9,kg/TJ,12.255516,kg -adcb1357-f037-30b2-80f9-ae016fe6465f,SESCO,II.1.1,San Luis,AR-D,annual,2022,gas oil combustion consumption by to the public,3.14244,TJ,N2O,3.9,kg/TJ,12.255516,kg -c1c61636-baae-3c62-82f7-b3b55506d737,SESCO,II.1.1,Santa Fe,AR-S,annual,2022,gas oil combustion consumption by to the public,152.53476,TJ,CO2,74100.0,kg/TJ,11302825.716,kg -86875d94-03c8-3714-8f45-08eaa7260948,SESCO,II.1.1,Santa Fe,AR-S,annual,2022,gas oil combustion consumption by to the public,152.53476,TJ,CH4,3.9,kg/TJ,594.885564,kg -86875d94-03c8-3714-8f45-08eaa7260948,SESCO,II.1.1,Santa Fe,AR-S,annual,2022,gas oil combustion consumption by to the public,152.53476,TJ,N2O,3.9,kg/TJ,594.885564,kg -519ade68-b570-3421-a525-853a201fa132,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2022,gas oil combustion consumption by to the public,28.93212,TJ,CO2,74100.0,kg/TJ,2143870.092,kg -f4bfb71d-91c0-3f05-acc2-b27ff703df8f,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2022,gas oil combustion consumption by to the public,28.93212,TJ,CH4,3.9,kg/TJ,112.835268,kg -f4bfb71d-91c0-3f05-acc2-b27ff703df8f,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2022,gas oil combustion consumption by to the public,28.93212,TJ,N2O,3.9,kg/TJ,112.835268,kg -a3cef7eb-d5f2-3c68-b28e-fa13359a3255,SESCO,II.1.1,Tucuman,AR-T,annual,2022,gas oil combustion consumption by to the public,19.64928,TJ,CO2,74100.0,kg/TJ,1456011.648,kg -db6da8f0-353c-3712-8554-2ab1a9ed9297,SESCO,II.1.1,Tucuman,AR-T,annual,2022,gas oil combustion consumption by to the public,19.64928,TJ,CH4,3.9,kg/TJ,76.632192,kg -db6da8f0-353c-3712-8554-2ab1a9ed9297,SESCO,II.1.1,Tucuman,AR-T,annual,2022,gas oil combustion consumption by to the public,19.64928,TJ,N2O,3.9,kg/TJ,76.632192,kg -11e96931-2bef-301f-9991-a34b9a0f1cc7,SESCO,II.1.1,Corrientes,AR-W,annual,2022,jet kerosene combustion consumption by to the public,0.12581199999999998,TJ,CO2,71500.0,kg/TJ,8995.557999999999,kg -b1960a3f-6eec-33dd-8288-cfb164903899,SESCO,II.1.1,Corrientes,AR-W,annual,2022,jet kerosene combustion consumption by to the public,0.12581199999999998,TJ,CH4,0.5,kg/TJ,0.06290599999999999,kg -51956f52-6eea-3020-b495-1f50b8b2e04f,SESCO,II.1.1,Corrientes,AR-W,annual,2022,jet kerosene combustion consumption by to the public,0.12581199999999998,TJ,N2O,2.0,kg/TJ,0.25162399999999996,kg -c56754be-01fc-3609-9927-a86ed742a46d,SESCO,II.1.1,Santa Fe,AR-S,annual,2022,jet kerosene combustion consumption by to the public,0.12581199999999998,TJ,CO2,71500.0,kg/TJ,8995.557999999999,kg -5ee6b309-fa7b-365d-b049-cfabf52dbfc2,SESCO,II.1.1,Santa Fe,AR-S,annual,2022,jet kerosene combustion consumption by to the public,0.12581199999999998,TJ,CH4,0.5,kg/TJ,0.06290599999999999,kg -9f512e33-1b81-3dd1-9d95-6d50abfe24bb,SESCO,II.1.1,Santa Fe,AR-S,annual,2022,jet kerosene combustion consumption by to the public,0.12581199999999998,TJ,N2O,2.0,kg/TJ,0.25162399999999996,kg -09768536-c52a-3b78-afae-7ef129c6240a,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2022,jet kerosene combustion consumption by to the public,0.7234189999999999,TJ,CO2,71500.0,kg/TJ,51724.45849999999,kg -6473525d-6810-315d-8b49-06c914207adf,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2022,jet kerosene combustion consumption by to the public,0.7234189999999999,TJ,CH4,0.5,kg/TJ,0.36170949999999996,kg -cd0c6b2f-951b-3a4e-a5af-4507e038e069,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2022,jet kerosene combustion consumption by to the public,0.7234189999999999,TJ,N2O,2.0,kg/TJ,1.4468379999999998,kg -12d92b52-e861-3df7-84bf-625db1105b65,SESCO,I.3.1,Buenos Aires,AR-B,annual,2022,gas oil combustion consumption by petrochemical industries,7.8380399999999995,TJ,CO2,74100.0,kg/TJ,580798.764,kg -5d5c451a-254f-3680-aaff-25d5176caceb,SESCO,I.3.1,Buenos Aires,AR-B,annual,2022,gas oil combustion consumption by petrochemical industries,7.8380399999999995,TJ,CH4,3.9,kg/TJ,30.568355999999998,kg -5d5c451a-254f-3680-aaff-25d5176caceb,SESCO,I.3.1,Buenos Aires,AR-B,annual,2022,gas oil combustion consumption by petrochemical industries,7.8380399999999995,TJ,N2O,3.9,kg/TJ,30.568355999999998,kg -a25781ac-b61f-3a4a-91e0-8a0acf9144df,SESCO,II.5.1,Buenos Aires,AR-B,annual,2022,gas oil combustion consumption by agriculture machines,4489.21032,TJ,CO2,74100.0,kg/TJ,332650484.712,kg -5ab91e62-7c35-3250-92de-6718d8fbb333,SESCO,II.5.1,Buenos Aires,AR-B,annual,2022,gas oil combustion consumption by agriculture machines,4489.21032,TJ,CH4,3.9,kg/TJ,17507.920248,kg -5ab91e62-7c35-3250-92de-6718d8fbb333,SESCO,II.5.1,Buenos Aires,AR-B,annual,2022,gas oil combustion consumption by agriculture machines,4489.21032,TJ,N2O,3.9,kg/TJ,17507.920248,kg -7631bbb9-21b8-3859-95f5-7e48a6d6142a,SESCO,II.5.1,Catamarca,AR-K,annual,2022,gas oil combustion consumption by agriculture machines,108.32388,TJ,CO2,74100.0,kg/TJ,8026799.508,kg -811b91fb-4843-3c74-a2af-8e376873646d,SESCO,II.5.1,Catamarca,AR-K,annual,2022,gas oil combustion consumption by agriculture machines,108.32388,TJ,CH4,3.9,kg/TJ,422.463132,kg -811b91fb-4843-3c74-a2af-8e376873646d,SESCO,II.5.1,Catamarca,AR-K,annual,2022,gas oil combustion consumption by agriculture machines,108.32388,TJ,N2O,3.9,kg/TJ,422.463132,kg -0a1e8c97-f117-3bcc-8f9c-007d5fbf7192,SESCO,II.5.1,Chaco,AR-H,annual,2022,gas oil combustion consumption by agriculture machines,612.01728,TJ,CO2,74100.0,kg/TJ,45350480.448,kg -f79dfa34-67ce-3fd5-b8e5-1325be0731ae,SESCO,II.5.1,Chaco,AR-H,annual,2022,gas oil combustion consumption by agriculture machines,612.01728,TJ,CH4,3.9,kg/TJ,2386.867392,kg -f79dfa34-67ce-3fd5-b8e5-1325be0731ae,SESCO,II.5.1,Chaco,AR-H,annual,2022,gas oil combustion consumption by agriculture machines,612.01728,TJ,N2O,3.9,kg/TJ,2386.867392,kg -98aa3b2c-639e-3e4c-9a7b-cb7b89ef67df,SESCO,II.5.1,Corrientes,AR-W,annual,2022,gas oil combustion consumption by agriculture machines,1214.535,TJ,CO2,74100.0,kg/TJ,89997043.5,kg -12bfa28a-03fc-359a-afc3-2efca67f5873,SESCO,II.5.1,Corrientes,AR-W,annual,2022,gas oil combustion consumption by agriculture machines,1214.535,TJ,CH4,3.9,kg/TJ,4736.6865,kg -12bfa28a-03fc-359a-afc3-2efca67f5873,SESCO,II.5.1,Corrientes,AR-W,annual,2022,gas oil combustion consumption by agriculture machines,1214.535,TJ,N2O,3.9,kg/TJ,4736.6865,kg -23398214-e2f8-3615-82eb-307855182a88,SESCO,II.5.1,Córdoba,AR-X,annual,2022,gas oil combustion consumption by agriculture machines,2632.245,TJ,CO2,74100.0,kg/TJ,195049354.5,kg -ea7fbfb6-a5f9-33ac-a935-21a5b36d4a4d,SESCO,II.5.1,Córdoba,AR-X,annual,2022,gas oil combustion consumption by agriculture machines,2632.245,TJ,CH4,3.9,kg/TJ,10265.7555,kg -ea7fbfb6-a5f9-33ac-a935-21a5b36d4a4d,SESCO,II.5.1,Córdoba,AR-X,annual,2022,gas oil combustion consumption by agriculture machines,2632.245,TJ,N2O,3.9,kg/TJ,10265.7555,kg -51e93c77-6da2-3204-93b0-7206c7e4235f,SESCO,II.5.1,Entre Rios,AR-E,annual,2022,gas oil combustion consumption by agriculture machines,764.6604,TJ,CO2,74100.0,kg/TJ,56661335.64,kg -0cc1bfa8-7d35-334b-a88a-74a9f9da1641,SESCO,II.5.1,Entre Rios,AR-E,annual,2022,gas oil combustion consumption by agriculture machines,764.6604,TJ,CH4,3.9,kg/TJ,2982.1755599999997,kg -0cc1bfa8-7d35-334b-a88a-74a9f9da1641,SESCO,II.5.1,Entre Rios,AR-E,annual,2022,gas oil combustion consumption by agriculture machines,764.6604,TJ,N2O,3.9,kg/TJ,2982.1755599999997,kg -16d8ecf7-af54-39dd-85a5-15376ad42a30,SESCO,II.5.1,Jujuy,AR-Y,annual,2022,gas oil combustion consumption by agriculture machines,93.5508,TJ,CO2,74100.0,kg/TJ,6932114.279999999,kg -e89827ac-8ec3-32e1-a005-9ebee8600bc7,SESCO,II.5.1,Jujuy,AR-Y,annual,2022,gas oil combustion consumption by agriculture machines,93.5508,TJ,CH4,3.9,kg/TJ,364.84812,kg -e89827ac-8ec3-32e1-a005-9ebee8600bc7,SESCO,II.5.1,Jujuy,AR-Y,annual,2022,gas oil combustion consumption by agriculture machines,93.5508,TJ,N2O,3.9,kg/TJ,364.84812,kg -df2fc841-b41e-3614-a6d3-d52e4e304774,SESCO,II.5.1,La Pampa,AR-L,annual,2022,gas oil combustion consumption by agriculture machines,198.94896,TJ,CO2,74100.0,kg/TJ,14742117.936,kg -2d5dedd8-2132-3ea8-b593-319cb6902a80,SESCO,II.5.1,La Pampa,AR-L,annual,2022,gas oil combustion consumption by agriculture machines,198.94896,TJ,CH4,3.9,kg/TJ,775.900944,kg -2d5dedd8-2132-3ea8-b593-319cb6902a80,SESCO,II.5.1,La Pampa,AR-L,annual,2022,gas oil combustion consumption by agriculture machines,198.94896,TJ,N2O,3.9,kg/TJ,775.900944,kg -7b1ad8a7-6745-3b74-a26c-5f3ccfcd79f4,SESCO,II.5.1,Mendoza,AR-M,annual,2022,gas oil combustion consumption by agriculture machines,330.3174,TJ,CO2,74100.0,kg/TJ,24476519.34,kg -ea96c8b4-16a1-3eea-bb24-31eae04651b0,SESCO,II.5.1,Mendoza,AR-M,annual,2022,gas oil combustion consumption by agriculture machines,330.3174,TJ,CH4,3.9,kg/TJ,1288.23786,kg -ea96c8b4-16a1-3eea-bb24-31eae04651b0,SESCO,II.5.1,Mendoza,AR-M,annual,2022,gas oil combustion consumption by agriculture machines,330.3174,TJ,N2O,3.9,kg/TJ,1288.23786,kg -621b5510-5513-3284-8ba8-5315741b884f,SESCO,II.5.1,Misiones,AR-N,annual,2022,gas oil combustion consumption by agriculture machines,143.25191999999998,TJ,CO2,74100.0,kg/TJ,10614967.271999998,kg -7601801f-7da7-336b-9742-c5dbe9677497,SESCO,II.5.1,Misiones,AR-N,annual,2022,gas oil combustion consumption by agriculture machines,143.25191999999998,TJ,CH4,3.9,kg/TJ,558.6824879999999,kg -7601801f-7da7-336b-9742-c5dbe9677497,SESCO,II.5.1,Misiones,AR-N,annual,2022,gas oil combustion consumption by agriculture machines,143.25191999999998,TJ,N2O,3.9,kg/TJ,558.6824879999999,kg -f3e77c12-48a3-3e95-80ee-b022059bfab8,SESCO,II.5.1,Neuquén,AR-Q,annual,2022,gas oil combustion consumption by agriculture machines,286.97339999999997,TJ,CO2,74100.0,kg/TJ,21264728.939999998,kg -00abbdd4-78aa-3b4a-858f-a262be1b4266,SESCO,II.5.1,Neuquén,AR-Q,annual,2022,gas oil combustion consumption by agriculture machines,286.97339999999997,TJ,CH4,3.9,kg/TJ,1119.19626,kg -00abbdd4-78aa-3b4a-858f-a262be1b4266,SESCO,II.5.1,Neuquén,AR-Q,annual,2022,gas oil combustion consumption by agriculture machines,286.97339999999997,TJ,N2O,3.9,kg/TJ,1119.19626,kg -093ff900-28ad-3fbb-aed4-ddfa6b37588d,SESCO,II.5.1,Salta,AR-A,annual,2022,gas oil combustion consumption by agriculture machines,255.9102,TJ,CO2,74100.0,kg/TJ,18962945.82,kg -1c97d3c9-a777-3eb9-a19c-f0cb1db6d2b3,SESCO,II.5.1,Salta,AR-A,annual,2022,gas oil combustion consumption by agriculture machines,255.9102,TJ,CH4,3.9,kg/TJ,998.0497799999999,kg -1c97d3c9-a777-3eb9-a19c-f0cb1db6d2b3,SESCO,II.5.1,Salta,AR-A,annual,2022,gas oil combustion consumption by agriculture machines,255.9102,TJ,N2O,3.9,kg/TJ,998.0497799999999,kg -a39079a8-02a3-3500-a7cb-2017ecc0d2c7,SESCO,II.5.1,San Juan,AR-J,annual,2022,gas oil combustion consumption by agriculture machines,221.88515999999998,TJ,CO2,74100.0,kg/TJ,16441690.355999999,kg -9547e222-e09c-36e8-8d49-6c2d0b10631a,SESCO,II.5.1,San Juan,AR-J,annual,2022,gas oil combustion consumption by agriculture machines,221.88515999999998,TJ,CH4,3.9,kg/TJ,865.3521239999999,kg -9547e222-e09c-36e8-8d49-6c2d0b10631a,SESCO,II.5.1,San Juan,AR-J,annual,2022,gas oil combustion consumption by agriculture machines,221.88515999999998,TJ,N2O,3.9,kg/TJ,865.3521239999999,kg -b56c6fa4-c719-3de5-a3de-912c2f7dfd54,SESCO,II.5.1,San Luis,AR-D,annual,2022,gas oil combustion consumption by agriculture machines,177.13248,TJ,CO2,74100.0,kg/TJ,13125516.768,kg -a6a3294c-64f1-3d0a-8dab-333a68e1e7a7,SESCO,II.5.1,San Luis,AR-D,annual,2022,gas oil combustion consumption by agriculture machines,177.13248,TJ,CH4,3.9,kg/TJ,690.8166719999999,kg -a6a3294c-64f1-3d0a-8dab-333a68e1e7a7,SESCO,II.5.1,San Luis,AR-D,annual,2022,gas oil combustion consumption by agriculture machines,177.13248,TJ,N2O,3.9,kg/TJ,690.8166719999999,kg -9701d3dd-fef7-344d-b2bc-38dbec731689,SESCO,II.5.1,Santa Cruz,AR-Z,annual,2022,gas oil combustion consumption by agriculture machines,164.45436,TJ,CO2,74100.0,kg/TJ,12186068.076000001,kg -c1fb101a-f16c-3bec-9af9-0892b8f4e0e4,SESCO,II.5.1,Santa Cruz,AR-Z,annual,2022,gas oil combustion consumption by agriculture machines,164.45436,TJ,CH4,3.9,kg/TJ,641.3720040000001,kg -c1fb101a-f16c-3bec-9af9-0892b8f4e0e4,SESCO,II.5.1,Santa Cruz,AR-Z,annual,2022,gas oil combustion consumption by agriculture machines,164.45436,TJ,N2O,3.9,kg/TJ,641.3720040000001,kg -3d85771f-6b72-340a-bbd4-93ab411cacef,SESCO,II.5.1,Santa Fe,AR-S,annual,2022,gas oil combustion consumption by agriculture machines,5091.69192,TJ,CO2,74100.0,kg/TJ,377294371.272,kg -0779d1d3-f70a-35cc-ad25-637229dc60a0,SESCO,II.5.1,Santa Fe,AR-S,annual,2022,gas oil combustion consumption by agriculture machines,5091.69192,TJ,CH4,3.9,kg/TJ,19857.598488,kg -0779d1d3-f70a-35cc-ad25-637229dc60a0,SESCO,II.5.1,Santa Fe,AR-S,annual,2022,gas oil combustion consumption by agriculture machines,5091.69192,TJ,N2O,3.9,kg/TJ,19857.598488,kg -0ee1e731-10c5-3633-9de7-6a234dbcdb2b,SESCO,II.5.1,Santiago del Estero,AR-G,annual,2022,gas oil combustion consumption by agriculture machines,604.2876,TJ,CO2,74100.0,kg/TJ,44777711.16,kg -32880c49-3921-303f-95e2-39524c6adf60,SESCO,II.5.1,Santiago del Estero,AR-G,annual,2022,gas oil combustion consumption by agriculture machines,604.2876,TJ,CH4,3.9,kg/TJ,2356.7216399999998,kg -32880c49-3921-303f-95e2-39524c6adf60,SESCO,II.5.1,Santiago del Estero,AR-G,annual,2022,gas oil combustion consumption by agriculture machines,604.2876,TJ,N2O,3.9,kg/TJ,2356.7216399999998,kg -2a88e784-c1b4-3128-ae09-4bc197124b00,SESCO,II.5.1,Tucuman,AR-T,annual,2022,gas oil combustion consumption by agriculture machines,256.59648,TJ,CO2,74100.0,kg/TJ,19013799.167999998,kg -99700534-b1ca-3e21-8e1f-682368515795,SESCO,II.5.1,Tucuman,AR-T,annual,2022,gas oil combustion consumption by agriculture machines,256.59648,TJ,CH4,3.9,kg/TJ,1000.7262719999999,kg -99700534-b1ca-3e21-8e1f-682368515795,SESCO,II.5.1,Tucuman,AR-T,annual,2022,gas oil combustion consumption by agriculture machines,256.59648,TJ,N2O,3.9,kg/TJ,1000.7262719999999,kg -34d152d5-8200-34ff-949c-39990a6ef0f2,SESCO,II.5.1,Buenos Aires,AR-B,annual,2022,gas oil combustion consumption by agriculture machines,434.41524,TJ,CO2,74100.0,kg/TJ,32190169.283999998,kg -ee82aa8a-a6af-377d-a1b8-0c1b8a585eb8,SESCO,II.5.1,Buenos Aires,AR-B,annual,2022,gas oil combustion consumption by agriculture machines,434.41524,TJ,CH4,3.9,kg/TJ,1694.2194359999999,kg -ee82aa8a-a6af-377d-a1b8-0c1b8a585eb8,SESCO,II.5.1,Buenos Aires,AR-B,annual,2022,gas oil combustion consumption by agriculture machines,434.41524,TJ,N2O,3.9,kg/TJ,1694.2194359999999,kg -c6285261-91f7-3ee9-9ca3-804e7c72af99,SESCO,II.5.1,Catamarca,AR-K,annual,2022,gas oil combustion consumption by agriculture machines,26.76492,TJ,CO2,74100.0,kg/TJ,1983280.572,kg -85a1655d-bbaf-3bd2-8dff-869b3bf55f7e,SESCO,II.5.1,Catamarca,AR-K,annual,2022,gas oil combustion consumption by agriculture machines,26.76492,TJ,CH4,3.9,kg/TJ,104.383188,kg -85a1655d-bbaf-3bd2-8dff-869b3bf55f7e,SESCO,II.5.1,Catamarca,AR-K,annual,2022,gas oil combustion consumption by agriculture machines,26.76492,TJ,N2O,3.9,kg/TJ,104.383188,kg -70d66ecc-4a0c-3e81-9855-17e4308622b5,SESCO,II.5.1,Chaco,AR-H,annual,2022,gas oil combustion consumption by agriculture machines,143.54088,TJ,CO2,74100.0,kg/TJ,10636379.207999999,kg -ef74d3ed-f834-336d-8199-17ea126cdbe4,SESCO,II.5.1,Chaco,AR-H,annual,2022,gas oil combustion consumption by agriculture machines,143.54088,TJ,CH4,3.9,kg/TJ,559.8094319999999,kg -ef74d3ed-f834-336d-8199-17ea126cdbe4,SESCO,II.5.1,Chaco,AR-H,annual,2022,gas oil combustion consumption by agriculture machines,143.54088,TJ,N2O,3.9,kg/TJ,559.8094319999999,kg -e0315b59-050c-3899-ac07-bd1e43aa046b,SESCO,II.5.1,Corrientes,AR-W,annual,2022,gas oil combustion consumption by agriculture machines,135.84732,TJ,CO2,74100.0,kg/TJ,10066286.412,kg -47fbd209-c781-3c3d-8f6c-4cdba6659c17,SESCO,II.5.1,Corrientes,AR-W,annual,2022,gas oil combustion consumption by agriculture machines,135.84732,TJ,CH4,3.9,kg/TJ,529.804548,kg -47fbd209-c781-3c3d-8f6c-4cdba6659c17,SESCO,II.5.1,Corrientes,AR-W,annual,2022,gas oil combustion consumption by agriculture machines,135.84732,TJ,N2O,3.9,kg/TJ,529.804548,kg -c879712d-f3dd-382e-b3c9-961f0396cda9,SESCO,II.5.1,Córdoba,AR-X,annual,2022,gas oil combustion consumption by agriculture machines,203.17499999999998,TJ,CO2,74100.0,kg/TJ,15055267.499999998,kg -7e047d84-06a5-35c8-87ca-ab808126a210,SESCO,II.5.1,Córdoba,AR-X,annual,2022,gas oil combustion consumption by agriculture machines,203.17499999999998,TJ,CH4,3.9,kg/TJ,792.3824999999999,kg -7e047d84-06a5-35c8-87ca-ab808126a210,SESCO,II.5.1,Córdoba,AR-X,annual,2022,gas oil combustion consumption by agriculture machines,203.17499999999998,TJ,N2O,3.9,kg/TJ,792.3824999999999,kg -5f604852-43eb-3206-836b-0dabb2dda811,SESCO,II.5.1,Entre Rios,AR-E,annual,2022,gas oil combustion consumption by agriculture machines,52.26564,TJ,CO2,74100.0,kg/TJ,3872883.9239999996,kg -f9f64da1-d495-343a-a0fd-d46a51c37ba1,SESCO,II.5.1,Entre Rios,AR-E,annual,2022,gas oil combustion consumption by agriculture machines,52.26564,TJ,CH4,3.9,kg/TJ,203.835996,kg -f9f64da1-d495-343a-a0fd-d46a51c37ba1,SESCO,II.5.1,Entre Rios,AR-E,annual,2022,gas oil combustion consumption by agriculture machines,52.26564,TJ,N2O,3.9,kg/TJ,203.835996,kg -a57bea38-d7e4-3c6e-be06-7941db26ebab,SESCO,II.5.1,Jujuy,AR-Y,annual,2022,gas oil combustion consumption by agriculture machines,28.281959999999998,TJ,CO2,74100.0,kg/TJ,2095693.2359999998,kg -d8490651-1ae7-38f6-830e-df4840c54b14,SESCO,II.5.1,Jujuy,AR-Y,annual,2022,gas oil combustion consumption by agriculture machines,28.281959999999998,TJ,CH4,3.9,kg/TJ,110.29964399999999,kg -d8490651-1ae7-38f6-830e-df4840c54b14,SESCO,II.5.1,Jujuy,AR-Y,annual,2022,gas oil combustion consumption by agriculture machines,28.281959999999998,TJ,N2O,3.9,kg/TJ,110.29964399999999,kg -061e150b-c134-3c12-a8ab-52650cad245f,SESCO,II.5.1,La Pampa,AR-L,annual,2022,gas oil combustion consumption by agriculture machines,24.77832,TJ,CO2,74100.0,kg/TJ,1836073.512,kg -d75543a8-b086-3b00-a3dc-e7d4cab50f53,SESCO,II.5.1,La Pampa,AR-L,annual,2022,gas oil combustion consumption by agriculture machines,24.77832,TJ,CH4,3.9,kg/TJ,96.635448,kg -d75543a8-b086-3b00-a3dc-e7d4cab50f53,SESCO,II.5.1,La Pampa,AR-L,annual,2022,gas oil combustion consumption by agriculture machines,24.77832,TJ,N2O,3.9,kg/TJ,96.635448,kg -0588a943-9a20-34cf-9828-c00c48325dda,SESCO,II.5.1,Mendoza,AR-M,annual,2022,gas oil combustion consumption by agriculture machines,99.58284,TJ,CO2,74100.0,kg/TJ,7379088.444,kg -326e3ca1-72ab-325b-9e30-cabf87e49b17,SESCO,II.5.1,Mendoza,AR-M,annual,2022,gas oil combustion consumption by agriculture machines,99.58284,TJ,CH4,3.9,kg/TJ,388.373076,kg -326e3ca1-72ab-325b-9e30-cabf87e49b17,SESCO,II.5.1,Mendoza,AR-M,annual,2022,gas oil combustion consumption by agriculture machines,99.58284,TJ,N2O,3.9,kg/TJ,388.373076,kg -f7f107a2-8f9e-3147-b26b-fcf16cd8bee9,SESCO,II.5.1,Misiones,AR-N,annual,2022,gas oil combustion consumption by agriculture machines,18.45732,TJ,CO2,74100.0,kg/TJ,1367687.412,kg -777b8b32-e5ad-3a3b-b492-c76598ef4779,SESCO,II.5.1,Misiones,AR-N,annual,2022,gas oil combustion consumption by agriculture machines,18.45732,TJ,CH4,3.9,kg/TJ,71.983548,kg -777b8b32-e5ad-3a3b-b492-c76598ef4779,SESCO,II.5.1,Misiones,AR-N,annual,2022,gas oil combustion consumption by agriculture machines,18.45732,TJ,N2O,3.9,kg/TJ,71.983548,kg -e835bc23-3826-3c6c-b7fb-7f7841079c89,SESCO,II.5.1,Neuquén,AR-Q,annual,2022,gas oil combustion consumption by agriculture machines,73.8654,TJ,CO2,74100.0,kg/TJ,5473426.14,kg -11783656-f905-3ff1-b6e5-6887fd59ee5b,SESCO,II.5.1,Neuquén,AR-Q,annual,2022,gas oil combustion consumption by agriculture machines,73.8654,TJ,CH4,3.9,kg/TJ,288.07505999999995,kg -11783656-f905-3ff1-b6e5-6887fd59ee5b,SESCO,II.5.1,Neuquén,AR-Q,annual,2022,gas oil combustion consumption by agriculture machines,73.8654,TJ,N2O,3.9,kg/TJ,288.07505999999995,kg -a3bb8b65-9b84-3fc4-8aba-775779c58cca,SESCO,II.5.1,Salta,AR-A,annual,2022,gas oil combustion consumption by agriculture machines,48.79812,TJ,CO2,74100.0,kg/TJ,3615940.692,kg -02ee9ab1-3df0-3220-9130-e08e555bff6a,SESCO,II.5.1,Salta,AR-A,annual,2022,gas oil combustion consumption by agriculture machines,48.79812,TJ,CH4,3.9,kg/TJ,190.31266799999997,kg -02ee9ab1-3df0-3220-9130-e08e555bff6a,SESCO,II.5.1,Salta,AR-A,annual,2022,gas oil combustion consumption by agriculture machines,48.79812,TJ,N2O,3.9,kg/TJ,190.31266799999997,kg -63415adb-3ad0-3b85-8d7c-fcd3130e1390,SESCO,II.5.1,San Juan,AR-J,annual,2022,gas oil combustion consumption by agriculture machines,25.71744,TJ,CO2,74100.0,kg/TJ,1905662.304,kg -61bb9db3-1dd0-3216-a9af-28781b01bcdc,SESCO,II.5.1,San Juan,AR-J,annual,2022,gas oil combustion consumption by agriculture machines,25.71744,TJ,CH4,3.9,kg/TJ,100.298016,kg -61bb9db3-1dd0-3216-a9af-28781b01bcdc,SESCO,II.5.1,San Juan,AR-J,annual,2022,gas oil combustion consumption by agriculture machines,25.71744,TJ,N2O,3.9,kg/TJ,100.298016,kg -ada33c5a-71ac-3ff8-ad09-cd336c181b88,SESCO,II.5.1,San Luis,AR-D,annual,2022,gas oil combustion consumption by agriculture machines,14.88144,TJ,CO2,74100.0,kg/TJ,1102714.704,kg -0431522f-7885-3f4e-8951-31a00e0dfdb9,SESCO,II.5.1,San Luis,AR-D,annual,2022,gas oil combustion consumption by agriculture machines,14.88144,TJ,CH4,3.9,kg/TJ,58.037616,kg -0431522f-7885-3f4e-8951-31a00e0dfdb9,SESCO,II.5.1,San Luis,AR-D,annual,2022,gas oil combustion consumption by agriculture machines,14.88144,TJ,N2O,3.9,kg/TJ,58.037616,kg -1ec82b94-3caa-3af9-897b-4d1b0a12dd71,SESCO,II.5.1,Santa Cruz,AR-Z,annual,2022,gas oil combustion consumption by agriculture machines,85.82112,TJ,CO2,74100.0,kg/TJ,6359344.992,kg -2f92f50e-59b8-3028-826e-75d11934ad4d,SESCO,II.5.1,Santa Cruz,AR-Z,annual,2022,gas oil combustion consumption by agriculture machines,85.82112,TJ,CH4,3.9,kg/TJ,334.702368,kg -2f92f50e-59b8-3028-826e-75d11934ad4d,SESCO,II.5.1,Santa Cruz,AR-Z,annual,2022,gas oil combustion consumption by agriculture machines,85.82112,TJ,N2O,3.9,kg/TJ,334.702368,kg -6ce2e390-0151-3424-8713-1535bba0fc9b,SESCO,II.5.1,Santa Fe,AR-S,annual,2022,gas oil combustion consumption by agriculture machines,378.71819999999997,TJ,CO2,74100.0,kg/TJ,28063018.619999997,kg -918af9db-08a7-355c-bceb-ac19e197be69,SESCO,II.5.1,Santa Fe,AR-S,annual,2022,gas oil combustion consumption by agriculture machines,378.71819999999997,TJ,CH4,3.9,kg/TJ,1477.0009799999998,kg -918af9db-08a7-355c-bceb-ac19e197be69,SESCO,II.5.1,Santa Fe,AR-S,annual,2022,gas oil combustion consumption by agriculture machines,378.71819999999997,TJ,N2O,3.9,kg/TJ,1477.0009799999998,kg -148da992-fdf9-3c6d-9346-d62c4f8159ed,SESCO,II.5.1,Santiago del Estero,AR-G,annual,2022,gas oil combustion consumption by agriculture machines,206.4258,TJ,CO2,74100.0,kg/TJ,15296151.780000001,kg -ff1dd1a0-f78b-38d3-957e-48e77981f000,SESCO,II.5.1,Santiago del Estero,AR-G,annual,2022,gas oil combustion consumption by agriculture machines,206.4258,TJ,CH4,3.9,kg/TJ,805.06062,kg -ff1dd1a0-f78b-38d3-957e-48e77981f000,SESCO,II.5.1,Santiago del Estero,AR-G,annual,2022,gas oil combustion consumption by agriculture machines,206.4258,TJ,N2O,3.9,kg/TJ,805.06062,kg -d4ee8671-7606-38ab-b1d5-144150035071,SESCO,II.5.1,Tucuman,AR-T,annual,2022,gas oil combustion consumption by agriculture machines,46.73928,TJ,CO2,74100.0,kg/TJ,3463380.648,kg -b5e6640f-2417-34e5-a19d-9955eeda8b46,SESCO,II.5.1,Tucuman,AR-T,annual,2022,gas oil combustion consumption by agriculture machines,46.73928,TJ,CH4,3.9,kg/TJ,182.28319199999999,kg -b5e6640f-2417-34e5-a19d-9955eeda8b46,SESCO,II.5.1,Tucuman,AR-T,annual,2022,gas oil combustion consumption by agriculture machines,46.73928,TJ,N2O,3.9,kg/TJ,182.28319199999999,kg -c17cb005-61f5-380a-afb6-dd19e6d62498,SESCO,II.1.1,Buenos Aires,AR-B,annual,2022,gas oil combustion consumption by to the public,8505.82656,TJ,CO2,74100.0,kg/TJ,630281748.096,kg -53938a5d-7a1f-31bf-95fd-40882d2598cb,SESCO,II.1.1,Buenos Aires,AR-B,annual,2022,gas oil combustion consumption by to the public,8505.82656,TJ,CH4,3.9,kg/TJ,33172.723584,kg -53938a5d-7a1f-31bf-95fd-40882d2598cb,SESCO,II.1.1,Buenos Aires,AR-B,annual,2022,gas oil combustion consumption by to the public,8505.82656,TJ,N2O,3.9,kg/TJ,33172.723584,kg -4be89ea4-de0f-32f1-8aff-b66de344aba1,SESCO,II.1.1,Capital Federal,AR-C,annual,2022,gas oil combustion consumption by to the public,736.6673999999999,TJ,CO2,74100.0,kg/TJ,54587054.339999996,kg -a5a7df7c-d2d9-3579-94e3-d7dfcba628b9,SESCO,II.1.1,Capital Federal,AR-C,annual,2022,gas oil combustion consumption by to the public,736.6673999999999,TJ,CH4,3.9,kg/TJ,2873.0028599999996,kg -a5a7df7c-d2d9-3579-94e3-d7dfcba628b9,SESCO,II.1.1,Capital Federal,AR-C,annual,2022,gas oil combustion consumption by to the public,736.6673999999999,TJ,N2O,3.9,kg/TJ,2873.0028599999996,kg -ec4cde9f-721b-36fe-aa6a-0f6b1502fa2c,SESCO,II.1.1,Catamarca,AR-K,annual,2022,gas oil combustion consumption by to the public,267.288,TJ,CO2,74100.0,kg/TJ,19806040.8,kg -5fe8488b-9852-3daf-b677-fd62a4467f8a,SESCO,II.1.1,Catamarca,AR-K,annual,2022,gas oil combustion consumption by to the public,267.288,TJ,CH4,3.9,kg/TJ,1042.4232,kg -5fe8488b-9852-3daf-b677-fd62a4467f8a,SESCO,II.1.1,Catamarca,AR-K,annual,2022,gas oil combustion consumption by to the public,267.288,TJ,N2O,3.9,kg/TJ,1042.4232,kg -c1318540-a881-3efa-80cc-270243ee2856,SESCO,II.1.1,Chaco,AR-H,annual,2022,gas oil combustion consumption by to the public,354.77064,TJ,CO2,74100.0,kg/TJ,26288504.424000002,kg -fc14fd0e-82fd-314f-a816-7c801190c89e,SESCO,II.1.1,Chaco,AR-H,annual,2022,gas oil combustion consumption by to the public,354.77064,TJ,CH4,3.9,kg/TJ,1383.6054960000001,kg -fc14fd0e-82fd-314f-a816-7c801190c89e,SESCO,II.1.1,Chaco,AR-H,annual,2022,gas oil combustion consumption by to the public,354.77064,TJ,N2O,3.9,kg/TJ,1383.6054960000001,kg -26056b7d-140a-3c12-97d3-1b808ffe30d3,SESCO,II.1.1,Chubut,AR-U,annual,2022,gas oil combustion consumption by to the public,1217.93028,TJ,CO2,74100.0,kg/TJ,90248633.748,kg -1dac36af-aca8-3c98-9332-3e1dc17dc5bc,SESCO,II.1.1,Chubut,AR-U,annual,2022,gas oil combustion consumption by to the public,1217.93028,TJ,CH4,3.9,kg/TJ,4749.928092,kg -1dac36af-aca8-3c98-9332-3e1dc17dc5bc,SESCO,II.1.1,Chubut,AR-U,annual,2022,gas oil combustion consumption by to the public,1217.93028,TJ,N2O,3.9,kg/TJ,4749.928092,kg -cdc0f878-3497-327f-92ec-2c83d479d20a,SESCO,II.1.1,Corrientes,AR-W,annual,2022,gas oil combustion consumption by to the public,885.6623999999999,TJ,CO2,74100.0,kg/TJ,65627583.839999996,kg -7af5f3f3-12ed-3c07-b33d-1e03e15f68b0,SESCO,II.1.1,Corrientes,AR-W,annual,2022,gas oil combustion consumption by to the public,885.6623999999999,TJ,CH4,3.9,kg/TJ,3454.0833599999996,kg -7af5f3f3-12ed-3c07-b33d-1e03e15f68b0,SESCO,II.1.1,Corrientes,AR-W,annual,2022,gas oil combustion consumption by to the public,885.6623999999999,TJ,N2O,3.9,kg/TJ,3454.0833599999996,kg -660e4b4d-9724-31d1-a60d-d2b0208df386,SESCO,II.1.1,Córdoba,AR-X,annual,2022,gas oil combustion consumption by to the public,3390.9817199999998,TJ,CO2,74100.0,kg/TJ,251271745.452,kg -14d1740b-c0b7-31ad-bc6e-5fff35fa63a3,SESCO,II.1.1,Córdoba,AR-X,annual,2022,gas oil combustion consumption by to the public,3390.9817199999998,TJ,CH4,3.9,kg/TJ,13224.828708,kg -14d1740b-c0b7-31ad-bc6e-5fff35fa63a3,SESCO,II.1.1,Córdoba,AR-X,annual,2022,gas oil combustion consumption by to the public,3390.9817199999998,TJ,N2O,3.9,kg/TJ,13224.828708,kg -6d145fd3-adbb-3068-b7d1-19a1ff6a7d93,SESCO,II.1.1,Entre Rios,AR-E,annual,2022,gas oil combustion consumption by to the public,1233.75084,TJ,CO2,74100.0,kg/TJ,91420937.24399999,kg -c8066cf7-805d-3679-89e0-aa70bca386cf,SESCO,II.1.1,Entre Rios,AR-E,annual,2022,gas oil combustion consumption by to the public,1233.75084,TJ,CH4,3.9,kg/TJ,4811.6282759999995,kg -c8066cf7-805d-3679-89e0-aa70bca386cf,SESCO,II.1.1,Entre Rios,AR-E,annual,2022,gas oil combustion consumption by to the public,1233.75084,TJ,N2O,3.9,kg/TJ,4811.6282759999995,kg -36b6b2e7-9ef5-360f-a549-360f311b6ad2,SESCO,II.1.1,Formosa,AR-P,annual,2022,gas oil combustion consumption by to the public,531.57804,TJ,CO2,74100.0,kg/TJ,39389932.764,kg -3c76ecc1-6041-3797-a126-732870508480,SESCO,II.1.1,Formosa,AR-P,annual,2022,gas oil combustion consumption by to the public,531.57804,TJ,CH4,3.9,kg/TJ,2073.154356,kg -3c76ecc1-6041-3797-a126-732870508480,SESCO,II.1.1,Formosa,AR-P,annual,2022,gas oil combustion consumption by to the public,531.57804,TJ,N2O,3.9,kg/TJ,2073.154356,kg -d50f26ab-d29e-3828-afd7-5abee9d3f68e,SESCO,II.1.1,Jujuy,AR-Y,annual,2022,gas oil combustion consumption by to the public,283.90319999999997,TJ,CO2,74100.0,kg/TJ,21037227.119999997,kg -03e9cf71-79fb-3bd7-8cdb-f5cf6c614148,SESCO,II.1.1,Jujuy,AR-Y,annual,2022,gas oil combustion consumption by to the public,283.90319999999997,TJ,CH4,3.9,kg/TJ,1107.22248,kg -03e9cf71-79fb-3bd7-8cdb-f5cf6c614148,SESCO,II.1.1,Jujuy,AR-Y,annual,2022,gas oil combustion consumption by to the public,283.90319999999997,TJ,N2O,3.9,kg/TJ,1107.22248,kg -77bba135-d4f3-3582-81ef-04fd6999d154,SESCO,II.1.1,La Pampa,AR-L,annual,2022,gas oil combustion consumption by to the public,387.387,TJ,CO2,74100.0,kg/TJ,28705376.7,kg -af9d5b7d-3aea-3b5d-a080-f1d3ec137113,SESCO,II.1.1,La Pampa,AR-L,annual,2022,gas oil combustion consumption by to the public,387.387,TJ,CH4,3.9,kg/TJ,1510.8093,kg -af9d5b7d-3aea-3b5d-a080-f1d3ec137113,SESCO,II.1.1,La Pampa,AR-L,annual,2022,gas oil combustion consumption by to the public,387.387,TJ,N2O,3.9,kg/TJ,1510.8093,kg -47221f05-e5f5-3abe-8df3-5d73d2242af8,SESCO,II.1.1,La Rioja,AR-F,annual,2022,gas oil combustion consumption by to the public,57.57528,TJ,CO2,74100.0,kg/TJ,4266328.248,kg -9e850785-7512-30a7-bce7-61fb433bbddc,SESCO,II.1.1,La Rioja,AR-F,annual,2022,gas oil combustion consumption by to the public,57.57528,TJ,CH4,3.9,kg/TJ,224.543592,kg -9e850785-7512-30a7-bce7-61fb433bbddc,SESCO,II.1.1,La Rioja,AR-F,annual,2022,gas oil combustion consumption by to the public,57.57528,TJ,N2O,3.9,kg/TJ,224.543592,kg -1060a0a4-61cf-3f58-955b-54029c5ddcca,SESCO,II.1.1,Mendoza,AR-M,annual,2022,gas oil combustion consumption by to the public,1439.5626,TJ,CO2,74100.0,kg/TJ,106671588.66,kg -29a1de22-1643-3776-b0d1-656fc49c4ea2,SESCO,II.1.1,Mendoza,AR-M,annual,2022,gas oil combustion consumption by to the public,1439.5626,TJ,CH4,3.9,kg/TJ,5614.29414,kg -29a1de22-1643-3776-b0d1-656fc49c4ea2,SESCO,II.1.1,Mendoza,AR-M,annual,2022,gas oil combustion consumption by to the public,1439.5626,TJ,N2O,3.9,kg/TJ,5614.29414,kg -417acf6d-a40f-3843-a883-90e2e12f43d2,SESCO,II.1.1,Misiones,AR-N,annual,2022,gas oil combustion consumption by to the public,1024.03812,TJ,CO2,74100.0,kg/TJ,75881224.692,kg -c90e36ff-d24e-309c-bd57-3cf40b1a6e6c,SESCO,II.1.1,Misiones,AR-N,annual,2022,gas oil combustion consumption by to the public,1024.03812,TJ,CH4,3.9,kg/TJ,3993.7486679999997,kg -c90e36ff-d24e-309c-bd57-3cf40b1a6e6c,SESCO,II.1.1,Misiones,AR-N,annual,2022,gas oil combustion consumption by to the public,1024.03812,TJ,N2O,3.9,kg/TJ,3993.7486679999997,kg -a090ca2d-f93c-3f21-b4e3-afca7ab4ecfa,SESCO,II.1.1,Neuquén,AR-Q,annual,2022,gas oil combustion consumption by to the public,238.86156,TJ,CO2,74100.0,kg/TJ,17699641.596,kg -7245cb14-37e8-309a-885b-5386637d0aca,SESCO,II.1.1,Neuquén,AR-Q,annual,2022,gas oil combustion consumption by to the public,238.86156,TJ,CH4,3.9,kg/TJ,931.560084,kg -7245cb14-37e8-309a-885b-5386637d0aca,SESCO,II.1.1,Neuquén,AR-Q,annual,2022,gas oil combustion consumption by to the public,238.86156,TJ,N2O,3.9,kg/TJ,931.560084,kg -ae18b33d-efd9-3bd0-9964-98b88c0b19ff,SESCO,II.1.1,Rio Negro,AR-R,annual,2022,gas oil combustion consumption by to the public,614.00388,TJ,CO2,74100.0,kg/TJ,45497687.508,kg -9402cd63-1fc0-3353-ae27-1fb9dd3fac92,SESCO,II.1.1,Rio Negro,AR-R,annual,2022,gas oil combustion consumption by to the public,614.00388,TJ,CH4,3.9,kg/TJ,2394.615132,kg -9402cd63-1fc0-3353-ae27-1fb9dd3fac92,SESCO,II.1.1,Rio Negro,AR-R,annual,2022,gas oil combustion consumption by to the public,614.00388,TJ,N2O,3.9,kg/TJ,2394.615132,kg -48f852c6-7de1-37b5-b017-a47c595ce9ab,SESCO,II.1.1,Salta,AR-A,annual,2022,gas oil combustion consumption by to the public,109.15464,TJ,CO2,74100.0,kg/TJ,8088358.824,kg -334c832b-7b17-3379-b4a1-807f2606fbce,SESCO,II.1.1,Salta,AR-A,annual,2022,gas oil combustion consumption by to the public,109.15464,TJ,CH4,3.9,kg/TJ,425.703096,kg -334c832b-7b17-3379-b4a1-807f2606fbce,SESCO,II.1.1,Salta,AR-A,annual,2022,gas oil combustion consumption by to the public,109.15464,TJ,N2O,3.9,kg/TJ,425.703096,kg -67b41157-d5e0-3142-8717-fc131a0cacc4,SESCO,II.1.1,San Juan,AR-J,annual,2022,gas oil combustion consumption by to the public,291.99408,TJ,CO2,74100.0,kg/TJ,21636761.328,kg -0f4dc242-6c7e-3b2f-844b-364a7abcaed7,SESCO,II.1.1,San Juan,AR-J,annual,2022,gas oil combustion consumption by to the public,291.99408,TJ,CH4,3.9,kg/TJ,1138.776912,kg -0f4dc242-6c7e-3b2f-844b-364a7abcaed7,SESCO,II.1.1,San Juan,AR-J,annual,2022,gas oil combustion consumption by to the public,291.99408,TJ,N2O,3.9,kg/TJ,1138.776912,kg -a67460d4-623b-3f87-bcb0-e03638d5302a,SESCO,II.1.1,San Luis,AR-D,annual,2022,gas oil combustion consumption by to the public,560.43792,TJ,CO2,74100.0,kg/TJ,41528449.871999994,kg -c24c93d0-da2d-377f-9a87-b08b824820a7,SESCO,II.1.1,San Luis,AR-D,annual,2022,gas oil combustion consumption by to the public,560.43792,TJ,CH4,3.9,kg/TJ,2185.707888,kg -c24c93d0-da2d-377f-9a87-b08b824820a7,SESCO,II.1.1,San Luis,AR-D,annual,2022,gas oil combustion consumption by to the public,560.43792,TJ,N2O,3.9,kg/TJ,2185.707888,kg -79c04171-81c6-3c21-b165-97d17b5ab46e,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2022,gas oil combustion consumption by to the public,472.05228,TJ,CO2,74100.0,kg/TJ,34979073.948,kg -ca13926b-ec81-3a95-abf2-cfea7bb03a04,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2022,gas oil combustion consumption by to the public,472.05228,TJ,CH4,3.9,kg/TJ,1841.003892,kg -ca13926b-ec81-3a95-abf2-cfea7bb03a04,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2022,gas oil combustion consumption by to the public,472.05228,TJ,N2O,3.9,kg/TJ,1841.003892,kg -94f3ee1d-ab6c-31e1-8989-cc6b89391201,SESCO,II.1.1,Santa Fe,AR-S,annual,2022,gas oil combustion consumption by to the public,2024.81496,TJ,CO2,74100.0,kg/TJ,150038788.53599998,kg -f704d187-7979-34dd-99c2-ae76bbded0bb,SESCO,II.1.1,Santa Fe,AR-S,annual,2022,gas oil combustion consumption by to the public,2024.81496,TJ,CH4,3.9,kg/TJ,7896.778343999999,kg -f704d187-7979-34dd-99c2-ae76bbded0bb,SESCO,II.1.1,Santa Fe,AR-S,annual,2022,gas oil combustion consumption by to the public,2024.81496,TJ,N2O,3.9,kg/TJ,7896.778343999999,kg -a760c8ff-da09-3a17-a0f9-9b61bc5ce459,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2022,gas oil combustion consumption by to the public,404.3634,TJ,CO2,74100.0,kg/TJ,29963327.94,kg -526a2ee3-6d68-3cda-a33b-057d67811430,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2022,gas oil combustion consumption by to the public,404.3634,TJ,CH4,3.9,kg/TJ,1577.01726,kg -526a2ee3-6d68-3cda-a33b-057d67811430,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2022,gas oil combustion consumption by to the public,404.3634,TJ,N2O,3.9,kg/TJ,1577.01726,kg -16e3657e-081b-3408-b408-007e44914259,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2022,gas oil combustion consumption by to the public,98.9688,TJ,CO2,74100.0,kg/TJ,7333588.08,kg -37c20c36-3e76-3101-bd74-f67b0d571d74,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2022,gas oil combustion consumption by to the public,98.9688,TJ,CH4,3.9,kg/TJ,385.97832,kg -37c20c36-3e76-3101-bd74-f67b0d571d74,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2022,gas oil combustion consumption by to the public,98.9688,TJ,N2O,3.9,kg/TJ,385.97832,kg -5be6af0c-d777-39f6-9896-9a2b8a9e6894,SESCO,II.1.1,Tucuman,AR-T,annual,2022,gas oil combustion consumption by to the public,121.25484,TJ,CO2,74100.0,kg/TJ,8984983.644,kg -6b534b4d-b547-3adb-a472-19487807f9f9,SESCO,II.1.1,Tucuman,AR-T,annual,2022,gas oil combustion consumption by to the public,121.25484,TJ,CH4,3.9,kg/TJ,472.893876,kg -6b534b4d-b547-3adb-a472-19487807f9f9,SESCO,II.1.1,Tucuman,AR-T,annual,2022,gas oil combustion consumption by to the public,121.25484,TJ,N2O,3.9,kg/TJ,472.893876,kg -f093e2dc-791c-308e-8d64-4396c30988ff,SESCO,II.1.1,Buenos Aires,AR-B,annual,2022,gas oil combustion consumption by to the public,3900.45432,TJ,CO2,74100.0,kg/TJ,289023665.112,kg -c6583707-bee9-3cc8-99c9-1445fcdc2764,SESCO,II.1.1,Buenos Aires,AR-B,annual,2022,gas oil combustion consumption by to the public,3900.45432,TJ,CH4,3.9,kg/TJ,15211.771847999998,kg -c6583707-bee9-3cc8-99c9-1445fcdc2764,SESCO,II.1.1,Buenos Aires,AR-B,annual,2022,gas oil combustion consumption by to the public,3900.45432,TJ,N2O,3.9,kg/TJ,15211.771847999998,kg -e028b3ed-6925-3fc6-a7f9-060a0a7edb02,SESCO,II.1.1,Capital Federal,AR-C,annual,2022,gas oil combustion consumption by to the public,565.96428,TJ,CO2,74100.0,kg/TJ,41937953.148,kg -4ffef50b-05f0-34d2-b32c-15fb19e04735,SESCO,II.1.1,Capital Federal,AR-C,annual,2022,gas oil combustion consumption by to the public,565.96428,TJ,CH4,3.9,kg/TJ,2207.2606920000003,kg -4ffef50b-05f0-34d2-b32c-15fb19e04735,SESCO,II.1.1,Capital Federal,AR-C,annual,2022,gas oil combustion consumption by to the public,565.96428,TJ,N2O,3.9,kg/TJ,2207.2606920000003,kg -56339126-d555-37e3-a529-42ec1e4cf3c4,SESCO,II.1.1,Catamarca,AR-K,annual,2022,gas oil combustion consumption by to the public,207.65388,TJ,CO2,74100.0,kg/TJ,15387152.508,kg -9fa16ecd-a395-36ca-ada8-f096439298c8,SESCO,II.1.1,Catamarca,AR-K,annual,2022,gas oil combustion consumption by to the public,207.65388,TJ,CH4,3.9,kg/TJ,809.8501319999999,kg -9fa16ecd-a395-36ca-ada8-f096439298c8,SESCO,II.1.1,Catamarca,AR-K,annual,2022,gas oil combustion consumption by to the public,207.65388,TJ,N2O,3.9,kg/TJ,809.8501319999999,kg -633f36a6-89e1-310a-8192-13163e23ff15,SESCO,II.1.1,Chaco,AR-H,annual,2022,gas oil combustion consumption by to the public,243.77388,TJ,CO2,74100.0,kg/TJ,18063644.507999998,kg -197321d4-2550-379a-8639-aea615bc38b7,SESCO,II.1.1,Chaco,AR-H,annual,2022,gas oil combustion consumption by to the public,243.77388,TJ,CH4,3.9,kg/TJ,950.718132,kg -197321d4-2550-379a-8639-aea615bc38b7,SESCO,II.1.1,Chaco,AR-H,annual,2022,gas oil combustion consumption by to the public,243.77388,TJ,N2O,3.9,kg/TJ,950.718132,kg -025ccedc-5585-3eba-8ef9-dfd2abcc5c65,SESCO,II.1.1,Chubut,AR-U,annual,2022,gas oil combustion consumption by to the public,708.71052,TJ,CO2,74100.0,kg/TJ,52515449.532,kg -65aebb7f-22da-3b3e-8bb8-fe4c0e6e64db,SESCO,II.1.1,Chubut,AR-U,annual,2022,gas oil combustion consumption by to the public,708.71052,TJ,CH4,3.9,kg/TJ,2763.971028,kg -65aebb7f-22da-3b3e-8bb8-fe4c0e6e64db,SESCO,II.1.1,Chubut,AR-U,annual,2022,gas oil combustion consumption by to the public,708.71052,TJ,N2O,3.9,kg/TJ,2763.971028,kg -68e14467-de74-348b-a958-22177ca0dfa3,SESCO,II.1.1,Corrientes,AR-W,annual,2022,gas oil combustion consumption by to the public,391.14348,TJ,CO2,74100.0,kg/TJ,28983731.868,kg -477a3192-6544-3396-ab05-fc198ffe7577,SESCO,II.1.1,Corrientes,AR-W,annual,2022,gas oil combustion consumption by to the public,391.14348,TJ,CH4,3.9,kg/TJ,1525.459572,kg -477a3192-6544-3396-ab05-fc198ffe7577,SESCO,II.1.1,Corrientes,AR-W,annual,2022,gas oil combustion consumption by to the public,391.14348,TJ,N2O,3.9,kg/TJ,1525.459572,kg -99c87e61-8f6e-30f3-a73e-bc224b7284af,SESCO,II.1.1,Córdoba,AR-X,annual,2022,gas oil combustion consumption by to the public,1300.71732,TJ,CO2,74100.0,kg/TJ,96383153.412,kg -2821813c-0ef9-310a-89ff-2a22bd2ad241,SESCO,II.1.1,Córdoba,AR-X,annual,2022,gas oil combustion consumption by to the public,1300.71732,TJ,CH4,3.9,kg/TJ,5072.797548,kg -2821813c-0ef9-310a-89ff-2a22bd2ad241,SESCO,II.1.1,Córdoba,AR-X,annual,2022,gas oil combustion consumption by to the public,1300.71732,TJ,N2O,3.9,kg/TJ,5072.797548,kg -23dbd3e2-62de-30bc-9d6e-72a1a1e91011,SESCO,II.1.1,Entre Rios,AR-E,annual,2022,gas oil combustion consumption by to the public,568.13148,TJ,CO2,74100.0,kg/TJ,42098542.668,kg -33651a37-9c95-3a77-8e42-6c405dcc8d3d,SESCO,II.1.1,Entre Rios,AR-E,annual,2022,gas oil combustion consumption by to the public,568.13148,TJ,CH4,3.9,kg/TJ,2215.712772,kg -33651a37-9c95-3a77-8e42-6c405dcc8d3d,SESCO,II.1.1,Entre Rios,AR-E,annual,2022,gas oil combustion consumption by to the public,568.13148,TJ,N2O,3.9,kg/TJ,2215.712772,kg -ca8b87b8-c70a-31fc-bcbb-06d1d9655fb9,SESCO,II.1.1,Formosa,AR-P,annual,2022,gas oil combustion consumption by to the public,446.15424,TJ,CO2,74100.0,kg/TJ,33060029.184,kg -0887076c-f1c4-3c7e-b471-02a4babc2ac7,SESCO,II.1.1,Formosa,AR-P,annual,2022,gas oil combustion consumption by to the public,446.15424,TJ,CH4,3.9,kg/TJ,1740.001536,kg -0887076c-f1c4-3c7e-b471-02a4babc2ac7,SESCO,II.1.1,Formosa,AR-P,annual,2022,gas oil combustion consumption by to the public,446.15424,TJ,N2O,3.9,kg/TJ,1740.001536,kg -990dabda-bc90-356d-b2b9-73121c1a8e3b,SESCO,II.1.1,Jujuy,AR-Y,annual,2022,gas oil combustion consumption by to the public,106.26504,TJ,CO2,74100.0,kg/TJ,7874239.464,kg -5fbde064-5814-32d9-b0c4-791ff0473d00,SESCO,II.1.1,Jujuy,AR-Y,annual,2022,gas oil combustion consumption by to the public,106.26504,TJ,CH4,3.9,kg/TJ,414.433656,kg -5fbde064-5814-32d9-b0c4-791ff0473d00,SESCO,II.1.1,Jujuy,AR-Y,annual,2022,gas oil combustion consumption by to the public,106.26504,TJ,N2O,3.9,kg/TJ,414.433656,kg -c4762577-1552-33df-aad3-ff100d619127,SESCO,II.1.1,La Pampa,AR-L,annual,2022,gas oil combustion consumption by to the public,190.1718,TJ,CO2,74100.0,kg/TJ,14091730.379999999,kg -9fa10afd-00c1-3e33-9373-5134a862c413,SESCO,II.1.1,La Pampa,AR-L,annual,2022,gas oil combustion consumption by to the public,190.1718,TJ,CH4,3.9,kg/TJ,741.6700199999999,kg -9fa10afd-00c1-3e33-9373-5134a862c413,SESCO,II.1.1,La Pampa,AR-L,annual,2022,gas oil combustion consumption by to the public,190.1718,TJ,N2O,3.9,kg/TJ,741.6700199999999,kg -5662a06e-e174-3c29-8e41-03dcf26a40c3,SESCO,II.1.1,La Rioja,AR-F,annual,2022,gas oil combustion consumption by to the public,64.69092,TJ,CO2,74100.0,kg/TJ,4793597.172,kg -6a973f44-412d-3017-be89-e98aef9d72ef,SESCO,II.1.1,La Rioja,AR-F,annual,2022,gas oil combustion consumption by to the public,64.69092,TJ,CH4,3.9,kg/TJ,252.294588,kg -6a973f44-412d-3017-be89-e98aef9d72ef,SESCO,II.1.1,La Rioja,AR-F,annual,2022,gas oil combustion consumption by to the public,64.69092,TJ,N2O,3.9,kg/TJ,252.294588,kg -812050cf-00c6-3cfc-b34a-1f2f471d277c,SESCO,II.1.1,Mendoza,AR-M,annual,2022,gas oil combustion consumption by to the public,503.58504,TJ,CO2,74100.0,kg/TJ,37315651.464,kg -184b8d8f-e8aa-3162-b137-bf78b1e0f09e,SESCO,II.1.1,Mendoza,AR-M,annual,2022,gas oil combustion consumption by to the public,503.58504,TJ,CH4,3.9,kg/TJ,1963.981656,kg -184b8d8f-e8aa-3162-b137-bf78b1e0f09e,SESCO,II.1.1,Mendoza,AR-M,annual,2022,gas oil combustion consumption by to the public,503.58504,TJ,N2O,3.9,kg/TJ,1963.981656,kg -2681be92-0723-38aa-afe3-49c35a3e2a68,SESCO,II.1.1,Misiones,AR-N,annual,2022,gas oil combustion consumption by to the public,579.43704,TJ,CO2,74100.0,kg/TJ,42936284.664000005,kg -a12205c5-1e3f-3476-8d2d-d4a68f0268ee,SESCO,II.1.1,Misiones,AR-N,annual,2022,gas oil combustion consumption by to the public,579.43704,TJ,CH4,3.9,kg/TJ,2259.804456,kg -a12205c5-1e3f-3476-8d2d-d4a68f0268ee,SESCO,II.1.1,Misiones,AR-N,annual,2022,gas oil combustion consumption by to the public,579.43704,TJ,N2O,3.9,kg/TJ,2259.804456,kg -2140dba7-ff9b-39b7-8126-125808693bae,SESCO,II.1.1,Neuquén,AR-Q,annual,2022,gas oil combustion consumption by to the public,347.2938,TJ,CO2,74100.0,kg/TJ,25734470.58,kg -d11f047e-3f21-3034-98e8-fcfb9621fafd,SESCO,II.1.1,Neuquén,AR-Q,annual,2022,gas oil combustion consumption by to the public,347.2938,TJ,CH4,3.9,kg/TJ,1354.44582,kg -d11f047e-3f21-3034-98e8-fcfb9621fafd,SESCO,II.1.1,Neuquén,AR-Q,annual,2022,gas oil combustion consumption by to the public,347.2938,TJ,N2O,3.9,kg/TJ,1354.44582,kg -d9f99706-9ebe-31a4-a405-1617f53fd58c,SESCO,II.1.1,Rio Negro,AR-R,annual,2022,gas oil combustion consumption by to the public,430.94772,TJ,CO2,74100.0,kg/TJ,31933226.052,kg -c0802e23-b710-3b3b-9d1b-27118e14e002,SESCO,II.1.1,Rio Negro,AR-R,annual,2022,gas oil combustion consumption by to the public,430.94772,TJ,CH4,3.9,kg/TJ,1680.6961079999999,kg -c0802e23-b710-3b3b-9d1b-27118e14e002,SESCO,II.1.1,Rio Negro,AR-R,annual,2022,gas oil combustion consumption by to the public,430.94772,TJ,N2O,3.9,kg/TJ,1680.6961079999999,kg -28e0a523-9237-38db-95e1-eb4debf6b5cc,SESCO,II.1.1,Salta,AR-A,annual,2022,gas oil combustion consumption by to the public,94.48992,TJ,CO2,74100.0,kg/TJ,7001703.072,kg -6aad7644-475f-3fd9-902d-906142bc7b42,SESCO,II.1.1,Salta,AR-A,annual,2022,gas oil combustion consumption by to the public,94.48992,TJ,CH4,3.9,kg/TJ,368.51068799999996,kg -6aad7644-475f-3fd9-902d-906142bc7b42,SESCO,II.1.1,Salta,AR-A,annual,2022,gas oil combustion consumption by to the public,94.48992,TJ,N2O,3.9,kg/TJ,368.51068799999996,kg -f145ffa2-734f-38d5-a1aa-a75e890a2464,SESCO,II.1.1,San Juan,AR-J,annual,2022,gas oil combustion consumption by to the public,106.51787999999999,TJ,CO2,74100.0,kg/TJ,7892974.907999999,kg -df2d983b-3887-36af-8fba-39c31e4b64e6,SESCO,II.1.1,San Juan,AR-J,annual,2022,gas oil combustion consumption by to the public,106.51787999999999,TJ,CH4,3.9,kg/TJ,415.41973199999995,kg -df2d983b-3887-36af-8fba-39c31e4b64e6,SESCO,II.1.1,San Juan,AR-J,annual,2022,gas oil combustion consumption by to the public,106.51787999999999,TJ,N2O,3.9,kg/TJ,415.41973199999995,kg -c4d5b584-6392-3c6f-ae21-dd2be0785096,SESCO,II.1.1,San Luis,AR-D,annual,2022,gas oil combustion consumption by to the public,224.81088,TJ,CO2,74100.0,kg/TJ,16658486.208,kg -7496c735-2746-3ae5-8a76-7d1a78b871bc,SESCO,II.1.1,San Luis,AR-D,annual,2022,gas oil combustion consumption by to the public,224.81088,TJ,CH4,3.9,kg/TJ,876.762432,kg -7496c735-2746-3ae5-8a76-7d1a78b871bc,SESCO,II.1.1,San Luis,AR-D,annual,2022,gas oil combustion consumption by to the public,224.81088,TJ,N2O,3.9,kg/TJ,876.762432,kg -500f47ca-53a6-3332-888d-13ee3842836d,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2022,gas oil combustion consumption by to the public,406.13328,TJ,CO2,74100.0,kg/TJ,30094476.048,kg -88a08ab3-807a-320e-90bc-8a2705aab662,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2022,gas oil combustion consumption by to the public,406.13328,TJ,CH4,3.9,kg/TJ,1583.919792,kg -88a08ab3-807a-320e-90bc-8a2705aab662,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2022,gas oil combustion consumption by to the public,406.13328,TJ,N2O,3.9,kg/TJ,1583.919792,kg -01881dbe-279a-3181-81c8-31a45da9ccb2,SESCO,II.1.1,Santa Fe,AR-S,annual,2022,gas oil combustion consumption by to the public,1063.5534,TJ,CO2,74100.0,kg/TJ,78809306.94,kg -56c58363-26a7-3709-9735-1a2d779f9bda,SESCO,II.1.1,Santa Fe,AR-S,annual,2022,gas oil combustion consumption by to the public,1063.5534,TJ,CH4,3.9,kg/TJ,4147.85826,kg -56c58363-26a7-3709-9735-1a2d779f9bda,SESCO,II.1.1,Santa Fe,AR-S,annual,2022,gas oil combustion consumption by to the public,1063.5534,TJ,N2O,3.9,kg/TJ,4147.85826,kg -6e5073cf-b3f2-3f8f-a49a-d5c9370dfc10,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2022,gas oil combustion consumption by to the public,275.52335999999997,TJ,CO2,74100.0,kg/TJ,20416280.975999996,kg -04c91e4c-9a1e-36e2-a3cc-c7a2028158e4,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2022,gas oil combustion consumption by to the public,275.52335999999997,TJ,CH4,3.9,kg/TJ,1074.541104,kg -04c91e4c-9a1e-36e2-a3cc-c7a2028158e4,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2022,gas oil combustion consumption by to the public,275.52335999999997,TJ,N2O,3.9,kg/TJ,1074.541104,kg -3ef8b114-8c33-3809-924b-f165b52acc48,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2022,gas oil combustion consumption by to the public,42.94668,TJ,CO2,74100.0,kg/TJ,3182348.988,kg -56b2ad9d-0d37-3802-84fb-b7a4658c4245,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2022,gas oil combustion consumption by to the public,42.94668,TJ,CH4,3.9,kg/TJ,167.492052,kg -56b2ad9d-0d37-3802-84fb-b7a4658c4245,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2022,gas oil combustion consumption by to the public,42.94668,TJ,N2O,3.9,kg/TJ,167.492052,kg -812101ca-9dee-3cc6-a44d-668ca6512f11,SESCO,II.1.1,Tucuman,AR-T,annual,2022,gas oil combustion consumption by to the public,49.73724,TJ,CO2,74100.0,kg/TJ,3685529.484,kg -99f62afe-c4b7-3ac7-9e6d-fbd69285711a,SESCO,II.1.1,Tucuman,AR-T,annual,2022,gas oil combustion consumption by to the public,49.73724,TJ,CH4,3.9,kg/TJ,193.975236,kg -99f62afe-c4b7-3ac7-9e6d-fbd69285711a,SESCO,II.1.1,Tucuman,AR-T,annual,2022,gas oil combustion consumption by to the public,49.73724,TJ,N2O,3.9,kg/TJ,193.975236,kg -475ab121-d2db-312c-a137-6f88ee270f5e,SESCO,II.1.1,Buenos Aires,AR-B,annual,2022,jet kerosene combustion consumption by to the public,3.3025649999999995,TJ,CO2,71500.0,kg/TJ,236133.39749999996,kg -43bd096e-4f30-3065-a3fb-92efd4bb909d,SESCO,II.1.1,Buenos Aires,AR-B,annual,2022,jet kerosene combustion consumption by to the public,3.3025649999999995,TJ,CH4,0.5,kg/TJ,1.6512824999999998,kg -764a48de-062d-3538-b5c7-80be304d1958,SESCO,II.1.1,Buenos Aires,AR-B,annual,2022,jet kerosene combustion consumption by to the public,3.3025649999999995,TJ,N2O,2.0,kg/TJ,6.605129999999999,kg -cbda2118-8d11-3631-835a-f5344577b7a9,SESCO,II.1.1,Chaco,AR-H,annual,2022,jet kerosene combustion consumption by to the public,0.157265,TJ,CO2,71500.0,kg/TJ,11244.447499999998,kg -89b1b49e-168f-34d5-8fac-57b37b337b7c,SESCO,II.1.1,Chaco,AR-H,annual,2022,jet kerosene combustion consumption by to the public,0.157265,TJ,CH4,0.5,kg/TJ,0.0786325,kg -b4a89ed2-c2d4-3360-8125-3c5039ae2089,SESCO,II.1.1,Chaco,AR-H,annual,2022,jet kerosene combustion consumption by to the public,0.157265,TJ,N2O,2.0,kg/TJ,0.31453,kg -feda1785-ea9f-38e3-a357-60256bc7e73e,SESCO,II.1.1,Córdoba,AR-X,annual,2022,jet kerosene combustion consumption by to the public,2.233163,TJ,CO2,71500.0,kg/TJ,159671.15449999998,kg -3076db6b-a01c-39d1-ba12-baf12e18695d,SESCO,II.1.1,Córdoba,AR-X,annual,2022,jet kerosene combustion consumption by to the public,2.233163,TJ,CH4,0.5,kg/TJ,1.1165815,kg -5a9ba29e-c896-3176-bfb2-2f200bd23965,SESCO,II.1.1,Córdoba,AR-X,annual,2022,jet kerosene combustion consumption by to the public,2.233163,TJ,N2O,2.0,kg/TJ,4.466326,kg -fd387e7e-1852-3f65-9740-517d6121842a,SESCO,II.1.1,Entre Rios,AR-E,annual,2022,jet kerosene combustion consumption by to the public,1.9186329999999996,TJ,CO2,71500.0,kg/TJ,137182.25949999996,kg -6a87fa75-2e00-3b69-8cd8-64ddfee1548e,SESCO,II.1.1,Entre Rios,AR-E,annual,2022,jet kerosene combustion consumption by to the public,1.9186329999999996,TJ,CH4,0.5,kg/TJ,0.9593164999999998,kg -0e044b8c-54cc-3e7d-a7d6-6c94e570e12a,SESCO,II.1.1,Entre Rios,AR-E,annual,2022,jet kerosene combustion consumption by to the public,1.9186329999999996,TJ,N2O,2.0,kg/TJ,3.837265999999999,kg -89add4c1-b3fb-3642-90c2-bd7dad673f52,SESCO,II.1.1,Santa Fe,AR-S,annual,2022,jet kerosene combustion consumption by to the public,2.9251289999999996,TJ,CO2,71500.0,kg/TJ,209146.72349999996,kg -d5cf54ea-ae1b-3388-a41f-14741e6d7feb,SESCO,II.1.1,Santa Fe,AR-S,annual,2022,jet kerosene combustion consumption by to the public,2.9251289999999996,TJ,CH4,0.5,kg/TJ,1.4625644999999998,kg -d16c16d7-b0ad-3817-be9a-5720a4f4cd36,SESCO,II.1.1,Santa Fe,AR-S,annual,2022,jet kerosene combustion consumption by to the public,2.9251289999999996,TJ,N2O,2.0,kg/TJ,5.850257999999999,kg -b5e4a8dc-92ad-3519-a0a2-c57f23329fc9,SESCO,I.3.1,San Luis,AR-D,annual,2022,gas oil combustion consumption by petrochemical industries,1.30032,TJ,CO2,74100.0,kg/TJ,96353.712,kg -b4038f4a-c6b4-3e0d-a1e0-fa774ea0737d,SESCO,I.3.1,San Luis,AR-D,annual,2022,gas oil combustion consumption by petrochemical industries,1.30032,TJ,CH4,3.9,kg/TJ,5.071248,kg -b4038f4a-c6b4-3e0d-a1e0-fa774ea0737d,SESCO,I.3.1,San Luis,AR-D,annual,2022,gas oil combustion consumption by petrochemical industries,1.30032,TJ,N2O,3.9,kg/TJ,5.071248,kg -62865a33-398c-3e39-bcf5-2a4e18046d58,SESCO,I.3.1,Capital Federal,AR-C,annual,2022,jet kerosene combustion consumption by petrochemical industries,0.25162399999999996,TJ,CO2,71500.0,kg/TJ,17991.115999999998,kg -6d42c8d5-b585-3daa-bea5-3f897ce0ea6f,SESCO,I.3.1,Capital Federal,AR-C,annual,2022,jet kerosene combustion consumption by petrochemical industries,0.25162399999999996,TJ,CH4,0.5,kg/TJ,0.12581199999999998,kg -9450ffb3-7286-31fb-ac93-1c0706c516b7,SESCO,I.3.1,Capital Federal,AR-C,annual,2022,jet kerosene combustion consumption by petrochemical industries,0.25162399999999996,TJ,N2O,2.0,kg/TJ,0.5032479999999999,kg -4d312efb-9dbf-3530-af8c-19340d8ab7c2,SESCO,II.2.1,Buenos Aires,AR-B,annual,2022,gas oil combustion consumption by railway transport,80.367,TJ,CO2,74100.0,kg/TJ,5955194.7,kg -697fe031-81b1-3e10-8d34-bb528f8ed4f0,SESCO,II.2.1,Buenos Aires,AR-B,annual,2022,gas oil combustion consumption by railway transport,80.367,TJ,CH4,3.9,kg/TJ,313.4313,kg -697fe031-81b1-3e10-8d34-bb528f8ed4f0,SESCO,II.2.1,Buenos Aires,AR-B,annual,2022,gas oil combustion consumption by railway transport,80.367,TJ,N2O,3.9,kg/TJ,313.4313,kg -f2f9e289-544b-37dc-8518-6f702c310812,SESCO,II.2.1,Capital Federal,AR-C,annual,2022,gas oil combustion consumption by railway transport,0.903,TJ,CO2,74100.0,kg/TJ,66912.3,kg -4dd6ec88-291a-39f9-900d-2ffeb24dda48,SESCO,II.2.1,Capital Federal,AR-C,annual,2022,gas oil combustion consumption by railway transport,0.903,TJ,CH4,3.9,kg/TJ,3.5217,kg -4dd6ec88-291a-39f9-900d-2ffeb24dda48,SESCO,II.2.1,Capital Federal,AR-C,annual,2022,gas oil combustion consumption by railway transport,0.903,TJ,N2O,3.9,kg/TJ,3.5217,kg -35b7048c-f187-36a2-a922-a8779872b195,SESCO,II.2.1,Córdoba,AR-X,annual,2022,gas oil combustion consumption by railway transport,2.6367599999999998,TJ,CO2,74100.0,kg/TJ,195383.916,kg -89c37af0-f2c6-3ba3-987b-a809ea562587,SESCO,II.2.1,Córdoba,AR-X,annual,2022,gas oil combustion consumption by railway transport,2.6367599999999998,TJ,CH4,3.9,kg/TJ,10.283363999999999,kg -89c37af0-f2c6-3ba3-987b-a809ea562587,SESCO,II.2.1,Córdoba,AR-X,annual,2022,gas oil combustion consumption by railway transport,2.6367599999999998,TJ,N2O,3.9,kg/TJ,10.283363999999999,kg -2dc27361-365d-3d37-bb50-6bc73308e3a0,SESCO,II.2.1,La Pampa,AR-L,annual,2022,gas oil combustion consumption by railway transport,25.97028,TJ,CO2,74100.0,kg/TJ,1924397.748,kg -b3957907-b6c7-3a84-9d12-5b828a1e401d,SESCO,II.2.1,La Pampa,AR-L,annual,2022,gas oil combustion consumption by railway transport,25.97028,TJ,CH4,3.9,kg/TJ,101.28409199999999,kg -b3957907-b6c7-3a84-9d12-5b828a1e401d,SESCO,II.2.1,La Pampa,AR-L,annual,2022,gas oil combustion consumption by railway transport,25.97028,TJ,N2O,3.9,kg/TJ,101.28409199999999,kg -89e7156f-38e5-3984-a459-1c6d6b96ef9b,SESCO,II.2.1,Neuquén,AR-Q,annual,2022,gas oil combustion consumption by railway transport,2.67288,TJ,CO2,74100.0,kg/TJ,198060.40800000002,kg -6859a8b6-e5de-3dea-a1c5-1ff3d8454508,SESCO,II.2.1,Neuquén,AR-Q,annual,2022,gas oil combustion consumption by railway transport,2.67288,TJ,CH4,3.9,kg/TJ,10.424232,kg -6859a8b6-e5de-3dea-a1c5-1ff3d8454508,SESCO,II.2.1,Neuquén,AR-Q,annual,2022,gas oil combustion consumption by railway transport,2.67288,TJ,N2O,3.9,kg/TJ,10.424232,kg -7386bedc-0c95-39f2-b334-2fc8e4362697,SESCO,II.2.1,Santa Fe,AR-S,annual,2022,gas oil combustion consumption by railway transport,48.36468,TJ,CO2,74100.0,kg/TJ,3583822.788,kg -b599c795-9318-3f4c-a524-5892055e5648,SESCO,II.2.1,Santa Fe,AR-S,annual,2022,gas oil combustion consumption by railway transport,48.36468,TJ,CH4,3.9,kg/TJ,188.622252,kg -b599c795-9318-3f4c-a524-5892055e5648,SESCO,II.2.1,Santa Fe,AR-S,annual,2022,gas oil combustion consumption by railway transport,48.36468,TJ,N2O,3.9,kg/TJ,188.622252,kg -1540a6f3-1328-34b6-a2bc-98dcbcf526d4,SESCO,II.2.1,Santiago del Estero,AR-G,annual,2022,gas oil combustion consumption by railway transport,4.3344,TJ,CO2,74100.0,kg/TJ,321179.04,kg -c61eb61c-8a5b-3e85-8a3b-a54b8825b9f1,SESCO,II.2.1,Santiago del Estero,AR-G,annual,2022,gas oil combustion consumption by railway transport,4.3344,TJ,CH4,3.9,kg/TJ,16.904159999999997,kg -c61eb61c-8a5b-3e85-8a3b-a54b8825b9f1,SESCO,II.2.1,Santiago del Estero,AR-G,annual,2022,gas oil combustion consumption by railway transport,4.3344,TJ,N2O,3.9,kg/TJ,16.904159999999997,kg -6aa0a0ab-e93c-31d7-9e98-88d0716c9e67,SESCO,II.2.1,Tucuman,AR-T,annual,2022,gas oil combustion consumption by railway transport,2.81736,TJ,CO2,74100.0,kg/TJ,208766.376,kg -d320e35d-e874-3171-9ad3-02dc6f37cc21,SESCO,II.2.1,Tucuman,AR-T,annual,2022,gas oil combustion consumption by railway transport,2.81736,TJ,CH4,3.9,kg/TJ,10.987703999999999,kg -d320e35d-e874-3171-9ad3-02dc6f37cc21,SESCO,II.2.1,Tucuman,AR-T,annual,2022,gas oil combustion consumption by railway transport,2.81736,TJ,N2O,3.9,kg/TJ,10.987703999999999,kg -0bbc4dbf-2810-3c8b-b954-88a1751e0006,SESCO,II.1.1,Buenos Aires,AR-B,annual,2022,gas oil combustion consumption by freight transport,1334.634,TJ,CO2,74100.0,kg/TJ,98896379.4,kg -0c56768c-ce92-3e05-9646-5f8a5c69eada,SESCO,II.1.1,Buenos Aires,AR-B,annual,2022,gas oil combustion consumption by freight transport,1334.634,TJ,CH4,3.9,kg/TJ,5205.0725999999995,kg -0c56768c-ce92-3e05-9646-5f8a5c69eada,SESCO,II.1.1,Buenos Aires,AR-B,annual,2022,gas oil combustion consumption by freight transport,1334.634,TJ,N2O,3.9,kg/TJ,5205.0725999999995,kg -e12bea3e-c860-31e3-82da-fda8d1bb1e0d,SESCO,II.1.1,Capital Federal,AR-C,annual,2022,gas oil combustion consumption by freight transport,1026.0608399999999,TJ,CO2,74100.0,kg/TJ,76031108.24399999,kg -24969856-7be6-3ab2-8dac-1d7643b69240,SESCO,II.1.1,Capital Federal,AR-C,annual,2022,gas oil combustion consumption by freight transport,1026.0608399999999,TJ,CH4,3.9,kg/TJ,4001.6372759999995,kg -24969856-7be6-3ab2-8dac-1d7643b69240,SESCO,II.1.1,Capital Federal,AR-C,annual,2022,gas oil combustion consumption by freight transport,1026.0608399999999,TJ,N2O,3.9,kg/TJ,4001.6372759999995,kg -b26c7a92-6a6a-3cf8-82fe-1e59dac5f58b,SESCO,II.1.1,Catamarca,AR-K,annual,2022,gas oil combustion consumption by freight transport,1.58928,TJ,CO2,74100.0,kg/TJ,117765.648,kg -909fb543-b106-37a9-b031-8f982acc87ba,SESCO,II.1.1,Catamarca,AR-K,annual,2022,gas oil combustion consumption by freight transport,1.58928,TJ,CH4,3.9,kg/TJ,6.198192,kg -909fb543-b106-37a9-b031-8f982acc87ba,SESCO,II.1.1,Catamarca,AR-K,annual,2022,gas oil combustion consumption by freight transport,1.58928,TJ,N2O,3.9,kg/TJ,6.198192,kg -9d44d99c-3cf5-39b0-a5b2-e7f4f46fbb1a,SESCO,II.1.1,Chaco,AR-H,annual,2022,gas oil combustion consumption by freight transport,20.48004,TJ,CO2,74100.0,kg/TJ,1517570.964,kg -804551ba-00cc-33ca-9972-4432356fa573,SESCO,II.1.1,Chaco,AR-H,annual,2022,gas oil combustion consumption by freight transport,20.48004,TJ,CH4,3.9,kg/TJ,79.87215599999999,kg -804551ba-00cc-33ca-9972-4432356fa573,SESCO,II.1.1,Chaco,AR-H,annual,2022,gas oil combustion consumption by freight transport,20.48004,TJ,N2O,3.9,kg/TJ,79.87215599999999,kg -f1e87c4a-7838-3f45-84d6-9e3b7060600c,SESCO,II.1.1,Chubut,AR-U,annual,2022,gas oil combustion consumption by freight transport,12.20856,TJ,CO2,74100.0,kg/TJ,904654.296,kg -88ef70f7-e83e-3449-9249-c94565512ae1,SESCO,II.1.1,Chubut,AR-U,annual,2022,gas oil combustion consumption by freight transport,12.20856,TJ,CH4,3.9,kg/TJ,47.613384,kg -88ef70f7-e83e-3449-9249-c94565512ae1,SESCO,II.1.1,Chubut,AR-U,annual,2022,gas oil combustion consumption by freight transport,12.20856,TJ,N2O,3.9,kg/TJ,47.613384,kg -62c24a64-00ea-3674-80f6-026272f8928e,SESCO,II.1.1,Corrientes,AR-W,annual,2022,gas oil combustion consumption by freight transport,43.84968,TJ,CO2,74100.0,kg/TJ,3249261.288,kg -969e43ce-4b38-38cc-93de-e627b03eea55,SESCO,II.1.1,Corrientes,AR-W,annual,2022,gas oil combustion consumption by freight transport,43.84968,TJ,CH4,3.9,kg/TJ,171.01375199999998,kg -969e43ce-4b38-38cc-93de-e627b03eea55,SESCO,II.1.1,Corrientes,AR-W,annual,2022,gas oil combustion consumption by freight transport,43.84968,TJ,N2O,3.9,kg/TJ,171.01375199999998,kg -82013829-ff62-366c-93ef-c7864a01abf3,SESCO,II.1.1,Córdoba,AR-X,annual,2022,gas oil combustion consumption by freight transport,228.60348,TJ,CO2,74100.0,kg/TJ,16939517.868,kg -1aad1dd9-b7d8-36dc-ae51-96329d34d09e,SESCO,II.1.1,Córdoba,AR-X,annual,2022,gas oil combustion consumption by freight transport,228.60348,TJ,CH4,3.9,kg/TJ,891.5535719999999,kg -1aad1dd9-b7d8-36dc-ae51-96329d34d09e,SESCO,II.1.1,Córdoba,AR-X,annual,2022,gas oil combustion consumption by freight transport,228.60348,TJ,N2O,3.9,kg/TJ,891.5535719999999,kg -b8941617-4139-3ce4-8e85-5d49c353753b,SESCO,II.1.1,Entre Rios,AR-E,annual,2022,gas oil combustion consumption by freight transport,51.32652,TJ,CO2,74100.0,kg/TJ,3803295.132,kg -c72361c1-9556-3c79-a261-846065c98a81,SESCO,II.1.1,Entre Rios,AR-E,annual,2022,gas oil combustion consumption by freight transport,51.32652,TJ,CH4,3.9,kg/TJ,200.173428,kg -c72361c1-9556-3c79-a261-846065c98a81,SESCO,II.1.1,Entre Rios,AR-E,annual,2022,gas oil combustion consumption by freight transport,51.32652,TJ,N2O,3.9,kg/TJ,200.173428,kg -fdda7b35-f9a1-3b32-820e-de060ced8689,SESCO,II.1.1,Formosa,AR-P,annual,2022,gas oil combustion consumption by freight transport,4.76784,TJ,CO2,74100.0,kg/TJ,353296.94399999996,kg -ac500c0d-27fc-392e-9b84-e0f9606f322a,SESCO,II.1.1,Formosa,AR-P,annual,2022,gas oil combustion consumption by freight transport,4.76784,TJ,CH4,3.9,kg/TJ,18.594575999999996,kg -ac500c0d-27fc-392e-9b84-e0f9606f322a,SESCO,II.1.1,Formosa,AR-P,annual,2022,gas oil combustion consumption by freight transport,4.76784,TJ,N2O,3.9,kg/TJ,18.594575999999996,kg -92277635-85db-3e9e-8393-f498b8432c5b,SESCO,II.1.1,Jujuy,AR-Y,annual,2022,gas oil combustion consumption by freight transport,1.69764,TJ,CO2,74100.0,kg/TJ,125795.124,kg -f671535d-4487-31dc-83a9-a01c84266cf8,SESCO,II.1.1,Jujuy,AR-Y,annual,2022,gas oil combustion consumption by freight transport,1.69764,TJ,CH4,3.9,kg/TJ,6.620796,kg -f671535d-4487-31dc-83a9-a01c84266cf8,SESCO,II.1.1,Jujuy,AR-Y,annual,2022,gas oil combustion consumption by freight transport,1.69764,TJ,N2O,3.9,kg/TJ,6.620796,kg -c90e8e00-77f8-33f0-ac93-73dd79b56ad1,SESCO,II.1.1,La Pampa,AR-L,annual,2022,gas oil combustion consumption by freight transport,10.22196,TJ,CO2,74100.0,kg/TJ,757447.2359999999,kg -8b6eca42-c74a-369d-b57d-9ff114b2c143,SESCO,II.1.1,La Pampa,AR-L,annual,2022,gas oil combustion consumption by freight transport,10.22196,TJ,CH4,3.9,kg/TJ,39.865643999999996,kg -8b6eca42-c74a-369d-b57d-9ff114b2c143,SESCO,II.1.1,La Pampa,AR-L,annual,2022,gas oil combustion consumption by freight transport,10.22196,TJ,N2O,3.9,kg/TJ,39.865643999999996,kg -5b1c0e3c-6cbe-3802-a162-004a3ef6f56a,SESCO,II.1.1,La Rioja,AR-F,annual,2022,gas oil combustion consumption by freight transport,0.50568,TJ,CO2,74100.0,kg/TJ,37470.888,kg -2a007deb-e99d-3e18-beca-6fdaa2603024,SESCO,II.1.1,La Rioja,AR-F,annual,2022,gas oil combustion consumption by freight transport,0.50568,TJ,CH4,3.9,kg/TJ,1.9721520000000001,kg -2a007deb-e99d-3e18-beca-6fdaa2603024,SESCO,II.1.1,La Rioja,AR-F,annual,2022,gas oil combustion consumption by freight transport,0.50568,TJ,N2O,3.9,kg/TJ,1.9721520000000001,kg -a2f64bc1-259f-3e19-9fcf-148824701bcc,SESCO,II.1.1,Mendoza,AR-M,annual,2022,gas oil combustion consumption by freight transport,135.30552,TJ,CO2,74100.0,kg/TJ,10026139.032,kg -563b27fc-9277-3020-8414-511402588775,SESCO,II.1.1,Mendoza,AR-M,annual,2022,gas oil combustion consumption by freight transport,135.30552,TJ,CH4,3.9,kg/TJ,527.691528,kg -563b27fc-9277-3020-8414-511402588775,SESCO,II.1.1,Mendoza,AR-M,annual,2022,gas oil combustion consumption by freight transport,135.30552,TJ,N2O,3.9,kg/TJ,527.691528,kg -18a3b701-ecde-31cc-a20c-f4da5a483efa,SESCO,II.1.1,Misiones,AR-N,annual,2022,gas oil combustion consumption by freight transport,135.01656,TJ,CO2,74100.0,kg/TJ,10004727.095999999,kg -eab3107e-25ab-39a6-97bd-4fce0f564a49,SESCO,II.1.1,Misiones,AR-N,annual,2022,gas oil combustion consumption by freight transport,135.01656,TJ,CH4,3.9,kg/TJ,526.564584,kg -eab3107e-25ab-39a6-97bd-4fce0f564a49,SESCO,II.1.1,Misiones,AR-N,annual,2022,gas oil combustion consumption by freight transport,135.01656,TJ,N2O,3.9,kg/TJ,526.564584,kg -df7a71ee-49da-3197-b54c-27576cc77386,SESCO,II.1.1,Neuquén,AR-Q,annual,2022,gas oil combustion consumption by freight transport,0.79464,TJ,CO2,74100.0,kg/TJ,58882.824,kg -6d92980b-7277-3523-bb77-070c1419c15c,SESCO,II.1.1,Neuquén,AR-Q,annual,2022,gas oil combustion consumption by freight transport,0.79464,TJ,CH4,3.9,kg/TJ,3.099096,kg -6d92980b-7277-3523-bb77-070c1419c15c,SESCO,II.1.1,Neuquén,AR-Q,annual,2022,gas oil combustion consumption by freight transport,0.79464,TJ,N2O,3.9,kg/TJ,3.099096,kg -8b4159aa-ba73-37a1-ab34-68a585f3602a,SESCO,II.1.1,Rio Negro,AR-R,annual,2022,gas oil combustion consumption by freight transport,142.09608,TJ,CO2,74100.0,kg/TJ,10529319.528,kg -8b245f74-61a1-326b-a070-a0c389bc6579,SESCO,II.1.1,Rio Negro,AR-R,annual,2022,gas oil combustion consumption by freight transport,142.09608,TJ,CH4,3.9,kg/TJ,554.174712,kg -8b245f74-61a1-326b-a070-a0c389bc6579,SESCO,II.1.1,Rio Negro,AR-R,annual,2022,gas oil combustion consumption by freight transport,142.09608,TJ,N2O,3.9,kg/TJ,554.174712,kg -164a76f6-f4f8-3103-b480-14a230928e65,SESCO,II.1.1,Salta,AR-A,annual,2022,gas oil combustion consumption by freight transport,195.30084,TJ,CO2,74100.0,kg/TJ,14471792.243999999,kg -ff3ab2c8-0fa6-345c-aff6-d935652b617c,SESCO,II.1.1,Salta,AR-A,annual,2022,gas oil combustion consumption by freight transport,195.30084,TJ,CH4,3.9,kg/TJ,761.673276,kg -ff3ab2c8-0fa6-345c-aff6-d935652b617c,SESCO,II.1.1,Salta,AR-A,annual,2022,gas oil combustion consumption by freight transport,195.30084,TJ,N2O,3.9,kg/TJ,761.673276,kg -38cb020b-07ef-3f23-ade8-3f3d101155e8,SESCO,II.1.1,San Juan,AR-J,annual,2022,gas oil combustion consumption by freight transport,4.5872399999999995,TJ,CO2,74100.0,kg/TJ,339914.48399999994,kg -950b6d8e-6557-3dba-bd30-1a7f7244bb27,SESCO,II.1.1,San Juan,AR-J,annual,2022,gas oil combustion consumption by freight transport,4.5872399999999995,TJ,CH4,3.9,kg/TJ,17.890235999999998,kg -950b6d8e-6557-3dba-bd30-1a7f7244bb27,SESCO,II.1.1,San Juan,AR-J,annual,2022,gas oil combustion consumption by freight transport,4.5872399999999995,TJ,N2O,3.9,kg/TJ,17.890235999999998,kg -c58b3deb-ca63-31b3-8e54-d53c6a39f478,SESCO,II.1.1,San Luis,AR-D,annual,2022,gas oil combustion consumption by freight transport,113.45291999999999,TJ,CO2,74100.0,kg/TJ,8406861.372,kg -b705259f-5ea5-3160-8897-07cca48f94fe,SESCO,II.1.1,San Luis,AR-D,annual,2022,gas oil combustion consumption by freight transport,113.45291999999999,TJ,CH4,3.9,kg/TJ,442.46638799999994,kg -b705259f-5ea5-3160-8897-07cca48f94fe,SESCO,II.1.1,San Luis,AR-D,annual,2022,gas oil combustion consumption by freight transport,113.45291999999999,TJ,N2O,3.9,kg/TJ,442.46638799999994,kg -c5799a37-d61d-32d5-b541-5ff55b00ea13,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2022,gas oil combustion consumption by freight transport,6.57384,TJ,CO2,74100.0,kg/TJ,487121.544,kg -280f28a2-7293-32ef-b6c8-00569cd294e6,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2022,gas oil combustion consumption by freight transport,6.57384,TJ,CH4,3.9,kg/TJ,25.637976,kg -280f28a2-7293-32ef-b6c8-00569cd294e6,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2022,gas oil combustion consumption by freight transport,6.57384,TJ,N2O,3.9,kg/TJ,25.637976,kg -8fa4314c-b844-3b29-9636-633b717ef860,SESCO,II.1.1,Santa Fe,AR-S,annual,2022,gas oil combustion consumption by freight transport,583.6992,TJ,CO2,74100.0,kg/TJ,43252110.72,kg -b4cab9db-ff38-3f80-9577-7ecd17fc0a9b,SESCO,II.1.1,Santa Fe,AR-S,annual,2022,gas oil combustion consumption by freight transport,583.6992,TJ,CH4,3.9,kg/TJ,2276.42688,kg -b4cab9db-ff38-3f80-9577-7ecd17fc0a9b,SESCO,II.1.1,Santa Fe,AR-S,annual,2022,gas oil combustion consumption by freight transport,583.6992,TJ,N2O,3.9,kg/TJ,2276.42688,kg -36d429fc-6cd3-3942-b516-4665f3d1bc3f,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2022,gas oil combustion consumption by freight transport,82.31748,TJ,CO2,74100.0,kg/TJ,6099725.268,kg -f26763f1-3919-3df6-964e-d54d960e29a9,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2022,gas oil combustion consumption by freight transport,82.31748,TJ,CH4,3.9,kg/TJ,321.03817200000003,kg -f26763f1-3919-3df6-964e-d54d960e29a9,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2022,gas oil combustion consumption by freight transport,82.31748,TJ,N2O,3.9,kg/TJ,321.03817200000003,kg -9cd0f848-8f8d-3be5-aaa8-757321a70cca,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2022,gas oil combustion consumption by freight transport,1.22808,TJ,CO2,74100.0,kg/TJ,91000.728,kg -9bd19cb2-f42d-348c-8b5b-4e83aa31d757,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2022,gas oil combustion consumption by freight transport,1.22808,TJ,CH4,3.9,kg/TJ,4.789512,kg -9bd19cb2-f42d-348c-8b5b-4e83aa31d757,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2022,gas oil combustion consumption by freight transport,1.22808,TJ,N2O,3.9,kg/TJ,4.789512,kg -c7b3346f-b905-3b39-977b-3523f1f7f0fc,SESCO,II.1.1,Tucuman,AR-T,annual,2022,gas oil combustion consumption by freight transport,50.24292,TJ,CO2,74100.0,kg/TJ,3723000.372,kg -8822c7bc-2f5f-33b0-8ec1-d1b696b1c1ef,SESCO,II.1.1,Tucuman,AR-T,annual,2022,gas oil combustion consumption by freight transport,50.24292,TJ,CH4,3.9,kg/TJ,195.947388,kg -8822c7bc-2f5f-33b0-8ec1-d1b696b1c1ef,SESCO,II.1.1,Tucuman,AR-T,annual,2022,gas oil combustion consumption by freight transport,50.24292,TJ,N2O,3.9,kg/TJ,195.947388,kg -e32ac433-3a84-3c14-a7c3-f3fcbb892386,SESCO,II.1.1,Buenos Aires,AR-B,annual,2022,gas oil combustion consumption by freight transport,392.2632,TJ,CO2,74100.0,kg/TJ,29066703.119999997,kg -03b8ddb5-a0b3-3b81-822c-7079dc94e0d1,SESCO,II.1.1,Buenos Aires,AR-B,annual,2022,gas oil combustion consumption by freight transport,392.2632,TJ,CH4,3.9,kg/TJ,1529.82648,kg -03b8ddb5-a0b3-3b81-822c-7079dc94e0d1,SESCO,II.1.1,Buenos Aires,AR-B,annual,2022,gas oil combustion consumption by freight transport,392.2632,TJ,N2O,3.9,kg/TJ,1529.82648,kg -34f8d635-2af8-33cb-9d9c-de6fafa93d6b,SESCO,II.1.1,Capital Federal,AR-C,annual,2022,gas oil combustion consumption by freight transport,242.97924,TJ,CO2,74100.0,kg/TJ,18004761.684,kg -2ed55869-b451-3ecd-9138-0d491ca19982,SESCO,II.1.1,Capital Federal,AR-C,annual,2022,gas oil combustion consumption by freight transport,242.97924,TJ,CH4,3.9,kg/TJ,947.619036,kg -2ed55869-b451-3ecd-9138-0d491ca19982,SESCO,II.1.1,Capital Federal,AR-C,annual,2022,gas oil combustion consumption by freight transport,242.97924,TJ,N2O,3.9,kg/TJ,947.619036,kg -e7715d4e-3cad-3ba4-bcd1-97e6b3d55b5d,SESCO,II.1.1,Catamarca,AR-K,annual,2022,gas oil combustion consumption by freight transport,0.07224,TJ,CO2,74100.0,kg/TJ,5352.9839999999995,kg -f578967a-25b0-3393-9bad-7347c26dd5bc,SESCO,II.1.1,Catamarca,AR-K,annual,2022,gas oil combustion consumption by freight transport,0.07224,TJ,CH4,3.9,kg/TJ,0.281736,kg -f578967a-25b0-3393-9bad-7347c26dd5bc,SESCO,II.1.1,Catamarca,AR-K,annual,2022,gas oil combustion consumption by freight transport,0.07224,TJ,N2O,3.9,kg/TJ,0.281736,kg -17c92d51-2c31-310f-a104-972b1a2b5587,SESCO,II.1.1,Chaco,AR-H,annual,2022,gas oil combustion consumption by freight transport,5.88756,TJ,CO2,74100.0,kg/TJ,436268.196,kg -7f1b6810-d9cf-3976-a652-1a7bfe06bdae,SESCO,II.1.1,Chaco,AR-H,annual,2022,gas oil combustion consumption by freight transport,5.88756,TJ,CH4,3.9,kg/TJ,22.961484,kg -7f1b6810-d9cf-3976-a652-1a7bfe06bdae,SESCO,II.1.1,Chaco,AR-H,annual,2022,gas oil combustion consumption by freight transport,5.88756,TJ,N2O,3.9,kg/TJ,22.961484,kg -413d030d-5c30-3b8c-b273-2120fb61d8b1,SESCO,II.1.1,Chubut,AR-U,annual,2022,gas oil combustion consumption by freight transport,2.3478,TJ,CO2,74100.0,kg/TJ,173971.97999999998,kg -edf8f763-1a46-3577-816d-5cb70ed18fc7,SESCO,II.1.1,Chubut,AR-U,annual,2022,gas oil combustion consumption by freight transport,2.3478,TJ,CH4,3.9,kg/TJ,9.156419999999999,kg -edf8f763-1a46-3577-816d-5cb70ed18fc7,SESCO,II.1.1,Chubut,AR-U,annual,2022,gas oil combustion consumption by freight transport,2.3478,TJ,N2O,3.9,kg/TJ,9.156419999999999,kg -00ffe32a-f1a1-3f2d-b4a0-06b3b53002a2,SESCO,II.1.1,Corrientes,AR-W,annual,2022,gas oil combustion consumption by freight transport,8.74104,TJ,CO2,74100.0,kg/TJ,647711.064,kg -d78c5ba1-9d46-3522-b168-4f377dcbfe08,SESCO,II.1.1,Corrientes,AR-W,annual,2022,gas oil combustion consumption by freight transport,8.74104,TJ,CH4,3.9,kg/TJ,34.090056,kg -d78c5ba1-9d46-3522-b168-4f377dcbfe08,SESCO,II.1.1,Corrientes,AR-W,annual,2022,gas oil combustion consumption by freight transport,8.74104,TJ,N2O,3.9,kg/TJ,34.090056,kg -d5474aaa-ef7d-317c-8fef-74110b72549d,SESCO,II.1.1,Córdoba,AR-X,annual,2022,gas oil combustion consumption by freight transport,22.64724,TJ,CO2,74100.0,kg/TJ,1678160.484,kg -be6d447e-687a-3265-bee0-edf97c98054e,SESCO,II.1.1,Córdoba,AR-X,annual,2022,gas oil combustion consumption by freight transport,22.64724,TJ,CH4,3.9,kg/TJ,88.324236,kg -be6d447e-687a-3265-bee0-edf97c98054e,SESCO,II.1.1,Córdoba,AR-X,annual,2022,gas oil combustion consumption by freight transport,22.64724,TJ,N2O,3.9,kg/TJ,88.324236,kg -0329033e-ef31-31af-9034-3eacf87f1c31,SESCO,II.1.1,Entre Rios,AR-E,annual,2022,gas oil combustion consumption by freight transport,5.9597999999999995,TJ,CO2,74100.0,kg/TJ,441621.18,kg -c34f43d5-7e83-321c-8ba8-7a449fc3bd6e,SESCO,II.1.1,Entre Rios,AR-E,annual,2022,gas oil combustion consumption by freight transport,5.9597999999999995,TJ,CH4,3.9,kg/TJ,23.243219999999997,kg -c34f43d5-7e83-321c-8ba8-7a449fc3bd6e,SESCO,II.1.1,Entre Rios,AR-E,annual,2022,gas oil combustion consumption by freight transport,5.9597999999999995,TJ,N2O,3.9,kg/TJ,23.243219999999997,kg -f0f98973-50ad-3baf-9989-f4390515350f,SESCO,II.1.1,Formosa,AR-P,annual,2022,gas oil combustion consumption by freight transport,1.0836,TJ,CO2,74100.0,kg/TJ,80294.76,kg -5356b9fb-06e9-3137-9e58-fbdaf4e4ffc7,SESCO,II.1.1,Formosa,AR-P,annual,2022,gas oil combustion consumption by freight transport,1.0836,TJ,CH4,3.9,kg/TJ,4.226039999999999,kg -5356b9fb-06e9-3137-9e58-fbdaf4e4ffc7,SESCO,II.1.1,Formosa,AR-P,annual,2022,gas oil combustion consumption by freight transport,1.0836,TJ,N2O,3.9,kg/TJ,4.226039999999999,kg -fcaf739a-dfa4-3954-8c9f-9a2df51659ee,SESCO,II.1.1,Jujuy,AR-Y,annual,2022,gas oil combustion consumption by freight transport,0.32508,TJ,CO2,74100.0,kg/TJ,24088.428,kg -c3ebb5ba-1d7c-329e-adff-4e6c88a16b28,SESCO,II.1.1,Jujuy,AR-Y,annual,2022,gas oil combustion consumption by freight transport,0.32508,TJ,CH4,3.9,kg/TJ,1.267812,kg -c3ebb5ba-1d7c-329e-adff-4e6c88a16b28,SESCO,II.1.1,Jujuy,AR-Y,annual,2022,gas oil combustion consumption by freight transport,0.32508,TJ,N2O,3.9,kg/TJ,1.267812,kg -5ba0f049-0653-35a9-8d48-7459ba7d4c3d,SESCO,II.1.1,La Pampa,AR-L,annual,2022,gas oil combustion consumption by freight transport,0.28896,TJ,CO2,74100.0,kg/TJ,21411.935999999998,kg -5dc698ce-7188-38fe-8b00-db5ec8b4c379,SESCO,II.1.1,La Pampa,AR-L,annual,2022,gas oil combustion consumption by freight transport,0.28896,TJ,CH4,3.9,kg/TJ,1.126944,kg -5dc698ce-7188-38fe-8b00-db5ec8b4c379,SESCO,II.1.1,La Pampa,AR-L,annual,2022,gas oil combustion consumption by freight transport,0.28896,TJ,N2O,3.9,kg/TJ,1.126944,kg -a129c8a3-1a9b-3922-af8a-13425ba8280b,SESCO,II.1.1,Mendoza,AR-M,annual,2022,gas oil combustion consumption by freight transport,9.89688,TJ,CO2,74100.0,kg/TJ,733358.808,kg -9a12e80f-a7d5-3961-b61d-08eaa52d6bae,SESCO,II.1.1,Mendoza,AR-M,annual,2022,gas oil combustion consumption by freight transport,9.89688,TJ,CH4,3.9,kg/TJ,38.597832,kg -9a12e80f-a7d5-3961-b61d-08eaa52d6bae,SESCO,II.1.1,Mendoza,AR-M,annual,2022,gas oil combustion consumption by freight transport,9.89688,TJ,N2O,3.9,kg/TJ,38.597832,kg -b908dc04-ab02-329c-8118-aedc81e0f36d,SESCO,II.1.1,Misiones,AR-N,annual,2022,gas oil combustion consumption by freight transport,3.90096,TJ,CO2,74100.0,kg/TJ,289061.136,kg -f92fa711-5312-38bb-8407-ad4a55d2eb72,SESCO,II.1.1,Misiones,AR-N,annual,2022,gas oil combustion consumption by freight transport,3.90096,TJ,CH4,3.9,kg/TJ,15.213744,kg -f92fa711-5312-38bb-8407-ad4a55d2eb72,SESCO,II.1.1,Misiones,AR-N,annual,2022,gas oil combustion consumption by freight transport,3.90096,TJ,N2O,3.9,kg/TJ,15.213744,kg -1e3b6236-f73d-325a-8379-482af95613db,SESCO,II.1.1,Neuquén,AR-Q,annual,2022,gas oil combustion consumption by freight transport,0.43344,TJ,CO2,74100.0,kg/TJ,32117.904,kg -55af3c4b-c8d3-3866-86b9-b20a9624d563,SESCO,II.1.1,Neuquén,AR-Q,annual,2022,gas oil combustion consumption by freight transport,0.43344,TJ,CH4,3.9,kg/TJ,1.690416,kg -55af3c4b-c8d3-3866-86b9-b20a9624d563,SESCO,II.1.1,Neuquén,AR-Q,annual,2022,gas oil combustion consumption by freight transport,0.43344,TJ,N2O,3.9,kg/TJ,1.690416,kg -f544c11e-ac81-3923-9d71-1c713f70543e,SESCO,II.1.1,Rio Negro,AR-R,annual,2022,gas oil combustion consumption by freight transport,27.52344,TJ,CO2,74100.0,kg/TJ,2039486.904,kg -a19b5354-a964-3d46-a028-f2aef56abbbb,SESCO,II.1.1,Rio Negro,AR-R,annual,2022,gas oil combustion consumption by freight transport,27.52344,TJ,CH4,3.9,kg/TJ,107.341416,kg -a19b5354-a964-3d46-a028-f2aef56abbbb,SESCO,II.1.1,Rio Negro,AR-R,annual,2022,gas oil combustion consumption by freight transport,27.52344,TJ,N2O,3.9,kg/TJ,107.341416,kg -dcb5295a-b55f-3469-9bba-8f90892a11e7,SESCO,II.1.1,Salta,AR-A,annual,2022,gas oil combustion consumption by freight transport,0.32508,TJ,CO2,74100.0,kg/TJ,24088.428,kg -bd8ab32d-d37f-393c-ac1b-21417de79e02,SESCO,II.1.1,Salta,AR-A,annual,2022,gas oil combustion consumption by freight transport,0.32508,TJ,CH4,3.9,kg/TJ,1.267812,kg -bd8ab32d-d37f-393c-ac1b-21417de79e02,SESCO,II.1.1,Salta,AR-A,annual,2022,gas oil combustion consumption by freight transport,0.32508,TJ,N2O,3.9,kg/TJ,1.267812,kg -b132ceb0-de21-39b2-8b53-66be0bffcc16,SESCO,II.1.1,San Juan,AR-J,annual,2022,gas oil combustion consumption by freight transport,1.30032,TJ,CO2,74100.0,kg/TJ,96353.712,kg -131b2c19-ac8b-3f4f-9b1a-14fb32d3c5e0,SESCO,II.1.1,San Juan,AR-J,annual,2022,gas oil combustion consumption by freight transport,1.30032,TJ,CH4,3.9,kg/TJ,5.071248,kg -131b2c19-ac8b-3f4f-9b1a-14fb32d3c5e0,SESCO,II.1.1,San Juan,AR-J,annual,2022,gas oil combustion consumption by freight transport,1.30032,TJ,N2O,3.9,kg/TJ,5.071248,kg -472c0f7f-5072-38cc-a38a-21e5438a8179,SESCO,II.1.1,San Luis,AR-D,annual,2022,gas oil combustion consumption by freight transport,2.709,TJ,CO2,74100.0,kg/TJ,200736.9,kg -6dd4241a-261d-36ae-932d-7d6b002ea3cf,SESCO,II.1.1,San Luis,AR-D,annual,2022,gas oil combustion consumption by freight transport,2.709,TJ,CH4,3.9,kg/TJ,10.5651,kg -6dd4241a-261d-36ae-932d-7d6b002ea3cf,SESCO,II.1.1,San Luis,AR-D,annual,2022,gas oil combustion consumption by freight transport,2.709,TJ,N2O,3.9,kg/TJ,10.5651,kg -3d248a3a-a0ca-396e-bbaf-e695d53f2c13,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2022,gas oil combustion consumption by freight transport,0.18059999999999998,TJ,CO2,74100.0,kg/TJ,13382.46,kg -306a3ed5-391a-3f84-b349-fda58778f506,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2022,gas oil combustion consumption by freight transport,0.18059999999999998,TJ,CH4,3.9,kg/TJ,0.70434,kg -306a3ed5-391a-3f84-b349-fda58778f506,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2022,gas oil combustion consumption by freight transport,0.18059999999999998,TJ,N2O,3.9,kg/TJ,0.70434,kg -61071f19-df8b-3f9d-9a8b-dd2ecc1c8550,SESCO,II.1.1,Santa Fe,AR-S,annual,2022,gas oil combustion consumption by freight transport,49.88172,TJ,CO2,74100.0,kg/TJ,3696235.452,kg -55ae2d01-19d5-3264-b3df-a9812c4e9703,SESCO,II.1.1,Santa Fe,AR-S,annual,2022,gas oil combustion consumption by freight transport,49.88172,TJ,CH4,3.9,kg/TJ,194.538708,kg -55ae2d01-19d5-3264-b3df-a9812c4e9703,SESCO,II.1.1,Santa Fe,AR-S,annual,2022,gas oil combustion consumption by freight transport,49.88172,TJ,N2O,3.9,kg/TJ,194.538708,kg -50079bee-0551-3a94-87d5-fbe6f2b6f5ec,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2022,gas oil combustion consumption by freight transport,2.23944,TJ,CO2,74100.0,kg/TJ,165942.50400000002,kg -b8d9302d-cdc3-303c-a7ce-5b03a1b5777a,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2022,gas oil combustion consumption by freight transport,2.23944,TJ,CH4,3.9,kg/TJ,8.733816000000001,kg -b8d9302d-cdc3-303c-a7ce-5b03a1b5777a,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2022,gas oil combustion consumption by freight transport,2.23944,TJ,N2O,3.9,kg/TJ,8.733816000000001,kg -017b65c1-bf04-3c88-834d-942f4a90268c,SESCO,II.1.1,Tucuman,AR-T,annual,2022,gas oil combustion consumption by freight transport,3.64812,TJ,CO2,74100.0,kg/TJ,270325.692,kg -2ad9b0f0-1934-334b-ae76-984ee7fa9cc6,SESCO,II.1.1,Tucuman,AR-T,annual,2022,gas oil combustion consumption by freight transport,3.64812,TJ,CH4,3.9,kg/TJ,14.227668,kg -2ad9b0f0-1934-334b-ae76-984ee7fa9cc6,SESCO,II.1.1,Tucuman,AR-T,annual,2022,gas oil combustion consumption by freight transport,3.64812,TJ,N2O,3.9,kg/TJ,14.227668,kg -232db9e7-52f3-33b3-b895-fa4c6c1d63ea,SESCO,II.1.1,Buenos Aires,AR-B,annual,2022,gas oil combustion consumption by public passenger transport,350.47236,TJ,CO2,74100.0,kg/TJ,25970001.876,kg -c4cac453-9787-303c-8576-cdeb260f15be,SESCO,II.1.1,Buenos Aires,AR-B,annual,2022,gas oil combustion consumption by public passenger transport,350.47236,TJ,CH4,3.9,kg/TJ,1366.8422039999998,kg -c4cac453-9787-303c-8576-cdeb260f15be,SESCO,II.1.1,Buenos Aires,AR-B,annual,2022,gas oil combustion consumption by public passenger transport,350.47236,TJ,N2O,3.9,kg/TJ,1366.8422039999998,kg -ec4a835f-6ccd-313b-a6f9-fca5d0776f3f,SESCO,II.1.1,Capital Federal,AR-C,annual,2022,gas oil combustion consumption by public passenger transport,312.69084,TJ,CO2,74100.0,kg/TJ,23170391.244,kg -3522f151-15c3-319e-a547-91ea13697b1b,SESCO,II.1.1,Capital Federal,AR-C,annual,2022,gas oil combustion consumption by public passenger transport,312.69084,TJ,CH4,3.9,kg/TJ,1219.494276,kg -3522f151-15c3-319e-a547-91ea13697b1b,SESCO,II.1.1,Capital Federal,AR-C,annual,2022,gas oil combustion consumption by public passenger transport,312.69084,TJ,N2O,3.9,kg/TJ,1219.494276,kg -10b75203-bc16-3f82-871c-4259c1c65cb4,SESCO,II.1.1,Chaco,AR-H,annual,2022,gas oil combustion consumption by public passenger transport,40.20156,TJ,CO2,74100.0,kg/TJ,2978935.596,kg -f4eee748-9261-3f64-ae73-8d89c4a483ab,SESCO,II.1.1,Chaco,AR-H,annual,2022,gas oil combustion consumption by public passenger transport,40.20156,TJ,CH4,3.9,kg/TJ,156.786084,kg -f4eee748-9261-3f64-ae73-8d89c4a483ab,SESCO,II.1.1,Chaco,AR-H,annual,2022,gas oil combustion consumption by public passenger transport,40.20156,TJ,N2O,3.9,kg/TJ,156.786084,kg -adba2fa7-a656-301a-9150-371c09a7c816,SESCO,II.1.1,Chubut,AR-U,annual,2022,gas oil combustion consumption by public passenger transport,6.6460799999999995,TJ,CO2,74100.0,kg/TJ,492474.528,kg -fe5997a0-42fe-3a9d-9e6a-88b3ce49a349,SESCO,II.1.1,Chubut,AR-U,annual,2022,gas oil combustion consumption by public passenger transport,6.6460799999999995,TJ,CH4,3.9,kg/TJ,25.919711999999997,kg -fe5997a0-42fe-3a9d-9e6a-88b3ce49a349,SESCO,II.1.1,Chubut,AR-U,annual,2022,gas oil combustion consumption by public passenger transport,6.6460799999999995,TJ,N2O,3.9,kg/TJ,25.919711999999997,kg -76f88d2e-e2ce-3c00-82e3-9ba287599ffc,SESCO,II.1.1,Corrientes,AR-W,annual,2022,gas oil combustion consumption by public passenger transport,0.21672,TJ,CO2,74100.0,kg/TJ,16058.952,kg -1e202f1c-53f4-3bea-a4fb-24d63ed207cb,SESCO,II.1.1,Corrientes,AR-W,annual,2022,gas oil combustion consumption by public passenger transport,0.21672,TJ,CH4,3.9,kg/TJ,0.845208,kg -1e202f1c-53f4-3bea-a4fb-24d63ed207cb,SESCO,II.1.1,Corrientes,AR-W,annual,2022,gas oil combustion consumption by public passenger transport,0.21672,TJ,N2O,3.9,kg/TJ,0.845208,kg -b43a53aa-9876-3d74-852f-b866414a8787,SESCO,II.1.1,Córdoba,AR-X,annual,2022,gas oil combustion consumption by public passenger transport,7.65744,TJ,CO2,74100.0,kg/TJ,567416.304,kg -0d3dcc22-9710-3cac-98e1-a3c3558f0f0b,SESCO,II.1.1,Córdoba,AR-X,annual,2022,gas oil combustion consumption by public passenger transport,7.65744,TJ,CH4,3.9,kg/TJ,29.864016,kg -0d3dcc22-9710-3cac-98e1-a3c3558f0f0b,SESCO,II.1.1,Córdoba,AR-X,annual,2022,gas oil combustion consumption by public passenger transport,7.65744,TJ,N2O,3.9,kg/TJ,29.864016,kg -8c68ad38-eee3-3928-98aa-5bbe40f0f007,SESCO,II.1.1,Entre Rios,AR-E,annual,2022,gas oil combustion consumption by public passenger transport,43.77744,TJ,CO2,74100.0,kg/TJ,3243908.304,kg -27d4a9d1-8669-37f3-bd07-373b87df86da,SESCO,II.1.1,Entre Rios,AR-E,annual,2022,gas oil combustion consumption by public passenger transport,43.77744,TJ,CH4,3.9,kg/TJ,170.732016,kg -27d4a9d1-8669-37f3-bd07-373b87df86da,SESCO,II.1.1,Entre Rios,AR-E,annual,2022,gas oil combustion consumption by public passenger transport,43.77744,TJ,N2O,3.9,kg/TJ,170.732016,kg -f531ebcc-6e02-3e3e-bc40-1f9cfb816a70,SESCO,II.1.1,La Pampa,AR-L,annual,2022,gas oil combustion consumption by public passenger transport,2.5284,TJ,CO2,74100.0,kg/TJ,187354.44,kg -ef6586e3-30d6-3ca1-a09b-3f7764a8e3ba,SESCO,II.1.1,La Pampa,AR-L,annual,2022,gas oil combustion consumption by public passenger transport,2.5284,TJ,CH4,3.9,kg/TJ,9.860759999999999,kg -ef6586e3-30d6-3ca1-a09b-3f7764a8e3ba,SESCO,II.1.1,La Pampa,AR-L,annual,2022,gas oil combustion consumption by public passenger transport,2.5284,TJ,N2O,3.9,kg/TJ,9.860759999999999,kg -c0479b22-9bd5-38f5-ae28-d4248d0c0f6f,SESCO,II.1.1,Mendoza,AR-M,annual,2022,gas oil combustion consumption by public passenger transport,8.52432,TJ,CO2,74100.0,kg/TJ,631652.112,kg -95218887-12d2-3404-8c28-3457ef21508d,SESCO,II.1.1,Mendoza,AR-M,annual,2022,gas oil combustion consumption by public passenger transport,8.52432,TJ,CH4,3.9,kg/TJ,33.244848,kg -95218887-12d2-3404-8c28-3457ef21508d,SESCO,II.1.1,Mendoza,AR-M,annual,2022,gas oil combustion consumption by public passenger transport,8.52432,TJ,N2O,3.9,kg/TJ,33.244848,kg -79ff5299-8acd-3737-9fe7-8bc655ebece9,SESCO,II.1.1,Misiones,AR-N,annual,2022,gas oil combustion consumption by public passenger transport,11.70288,TJ,CO2,74100.0,kg/TJ,867183.408,kg -e13b6c51-bf6d-38f9-90f0-f8b03a89278e,SESCO,II.1.1,Misiones,AR-N,annual,2022,gas oil combustion consumption by public passenger transport,11.70288,TJ,CH4,3.9,kg/TJ,45.641232,kg -e13b6c51-bf6d-38f9-90f0-f8b03a89278e,SESCO,II.1.1,Misiones,AR-N,annual,2022,gas oil combustion consumption by public passenger transport,11.70288,TJ,N2O,3.9,kg/TJ,45.641232,kg -72f79e4f-cc41-3c96-90ab-f636da9fd693,SESCO,II.1.1,Neuquén,AR-Q,annual,2022,gas oil combustion consumption by public passenger transport,0.03612,TJ,CO2,74100.0,kg/TJ,2676.4919999999997,kg -a2c1117f-32e8-359f-bc8f-87f84ddd7b5b,SESCO,II.1.1,Neuquén,AR-Q,annual,2022,gas oil combustion consumption by public passenger transport,0.03612,TJ,CH4,3.9,kg/TJ,0.140868,kg -a2c1117f-32e8-359f-bc8f-87f84ddd7b5b,SESCO,II.1.1,Neuquén,AR-Q,annual,2022,gas oil combustion consumption by public passenger transport,0.03612,TJ,N2O,3.9,kg/TJ,0.140868,kg -3a20721e-07cd-3ff0-bdfb-b5ddbe425874,SESCO,II.1.1,Rio Negro,AR-R,annual,2022,gas oil combustion consumption by public passenger transport,4.00932,TJ,CO2,74100.0,kg/TJ,297090.61199999996,kg -7d934bf3-dfd8-36b6-92c5-c2f7f9def8f7,SESCO,II.1.1,Rio Negro,AR-R,annual,2022,gas oil combustion consumption by public passenger transport,4.00932,TJ,CH4,3.9,kg/TJ,15.636347999999998,kg -7d934bf3-dfd8-36b6-92c5-c2f7f9def8f7,SESCO,II.1.1,Rio Negro,AR-R,annual,2022,gas oil combustion consumption by public passenger transport,4.00932,TJ,N2O,3.9,kg/TJ,15.636347999999998,kg -3ffe332e-50be-3a00-8343-1c88cafa7f7f,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2022,gas oil combustion consumption by public passenger transport,0.07224,TJ,CO2,74100.0,kg/TJ,5352.9839999999995,kg -d5efa76d-1092-3ffe-a3b1-ecb8bf98463d,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2022,gas oil combustion consumption by public passenger transport,0.07224,TJ,CH4,3.9,kg/TJ,0.281736,kg -d5efa76d-1092-3ffe-a3b1-ecb8bf98463d,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2022,gas oil combustion consumption by public passenger transport,0.07224,TJ,N2O,3.9,kg/TJ,0.281736,kg -ea96c010-db26-34d5-8127-1279bf53c403,SESCO,II.1.1,Santa Fe,AR-S,annual,2022,gas oil combustion consumption by public passenger transport,314.31624,TJ,CO2,74100.0,kg/TJ,23290833.384,kg -42dd3465-f39a-30a1-bb72-fd6862fc0a4d,SESCO,II.1.1,Santa Fe,AR-S,annual,2022,gas oil combustion consumption by public passenger transport,314.31624,TJ,CH4,3.9,kg/TJ,1225.833336,kg -42dd3465-f39a-30a1-bb72-fd6862fc0a4d,SESCO,II.1.1,Santa Fe,AR-S,annual,2022,gas oil combustion consumption by public passenger transport,314.31624,TJ,N2O,3.9,kg/TJ,1225.833336,kg -02b10c80-f015-39cb-aa5e-0fa5fb8fab17,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2022,gas oil combustion consumption by public passenger transport,0.07224,TJ,CO2,74100.0,kg/TJ,5352.9839999999995,kg -e5567771-8320-33a5-9f80-456ff2ef92f1,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2022,gas oil combustion consumption by public passenger transport,0.07224,TJ,CH4,3.9,kg/TJ,0.281736,kg -e5567771-8320-33a5-9f80-456ff2ef92f1,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2022,gas oil combustion consumption by public passenger transport,0.07224,TJ,N2O,3.9,kg/TJ,0.281736,kg -19b4d3c6-b28c-3f39-8775-701d0d244064,SESCO,II.1.1,Tucuman,AR-T,annual,2022,gas oil combustion consumption by public passenger transport,42.29652,TJ,CO2,74100.0,kg/TJ,3134172.132,kg -13288685-7ef2-3487-b2ad-c382e4a1eaea,SESCO,II.1.1,Tucuman,AR-T,annual,2022,gas oil combustion consumption by public passenger transport,42.29652,TJ,CH4,3.9,kg/TJ,164.956428,kg -13288685-7ef2-3487-b2ad-c382e4a1eaea,SESCO,II.1.1,Tucuman,AR-T,annual,2022,gas oil combustion consumption by public passenger transport,42.29652,TJ,N2O,3.9,kg/TJ,164.956428,kg -f276248c-1cf4-366b-b760-9558ec6eeaf4,SESCO,II.1.1,Buenos Aires,AR-B,annual,2022,gas oil combustion consumption by public passenger transport,570.29868,TJ,CO2,74100.0,kg/TJ,42259132.188,kg -c106b4f1-1508-3b4f-a1a6-d5d3ba658c47,SESCO,II.1.1,Buenos Aires,AR-B,annual,2022,gas oil combustion consumption by public passenger transport,570.29868,TJ,CH4,3.9,kg/TJ,2224.164852,kg -c106b4f1-1508-3b4f-a1a6-d5d3ba658c47,SESCO,II.1.1,Buenos Aires,AR-B,annual,2022,gas oil combustion consumption by public passenger transport,570.29868,TJ,N2O,3.9,kg/TJ,2224.164852,kg -2faf48ab-44b5-3016-82f9-42537bbc0150,SESCO,II.1.1,Capital Federal,AR-C,annual,2022,gas oil combustion consumption by public passenger transport,73.75704,TJ,CO2,74100.0,kg/TJ,5465396.664,kg -175b77df-d12d-3b2e-a6e5-0c5b6db66cd5,SESCO,II.1.1,Capital Federal,AR-C,annual,2022,gas oil combustion consumption by public passenger transport,73.75704,TJ,CH4,3.9,kg/TJ,287.65245600000003,kg -175b77df-d12d-3b2e-a6e5-0c5b6db66cd5,SESCO,II.1.1,Capital Federal,AR-C,annual,2022,gas oil combustion consumption by public passenger transport,73.75704,TJ,N2O,3.9,kg/TJ,287.65245600000003,kg -ea6544e9-3324-3421-8e1c-8331375dfc2f,SESCO,II.1.1,Chaco,AR-H,annual,2022,gas oil combustion consumption by public passenger transport,0.28896,TJ,CO2,74100.0,kg/TJ,21411.935999999998,kg -004e9435-b770-35ff-b69a-669eb91a2ff9,SESCO,II.1.1,Chaco,AR-H,annual,2022,gas oil combustion consumption by public passenger transport,0.28896,TJ,CH4,3.9,kg/TJ,1.126944,kg -004e9435-b770-35ff-b69a-669eb91a2ff9,SESCO,II.1.1,Chaco,AR-H,annual,2022,gas oil combustion consumption by public passenger transport,0.28896,TJ,N2O,3.9,kg/TJ,1.126944,kg -976ee592-3d31-3a0e-b4eb-88256b97e860,SESCO,II.1.1,Chubut,AR-U,annual,2022,gas oil combustion consumption by public passenger transport,2.09496,TJ,CO2,74100.0,kg/TJ,155236.536,kg -1b34120a-1bc8-3c2c-8036-6955f41c856d,SESCO,II.1.1,Chubut,AR-U,annual,2022,gas oil combustion consumption by public passenger transport,2.09496,TJ,CH4,3.9,kg/TJ,8.170344,kg -1b34120a-1bc8-3c2c-8036-6955f41c856d,SESCO,II.1.1,Chubut,AR-U,annual,2022,gas oil combustion consumption by public passenger transport,2.09496,TJ,N2O,3.9,kg/TJ,8.170344,kg -1d213990-1928-3e61-bab6-4438771aa0c5,SESCO,II.1.1,Corrientes,AR-W,annual,2022,gas oil combustion consumption by public passenger transport,0.28896,TJ,CO2,74100.0,kg/TJ,21411.935999999998,kg -448c3818-ab73-3189-a817-1656d5e760dd,SESCO,II.1.1,Corrientes,AR-W,annual,2022,gas oil combustion consumption by public passenger transport,0.28896,TJ,CH4,3.9,kg/TJ,1.126944,kg -448c3818-ab73-3189-a817-1656d5e760dd,SESCO,II.1.1,Corrientes,AR-W,annual,2022,gas oil combustion consumption by public passenger transport,0.28896,TJ,N2O,3.9,kg/TJ,1.126944,kg -9721e705-4d27-35f6-a5d5-d8fa5fe46523,SESCO,II.1.1,Córdoba,AR-X,annual,2022,gas oil combustion consumption by public passenger transport,13.21992,TJ,CO2,74100.0,kg/TJ,979596.072,kg -aeae4db0-58cf-3596-b7c6-ccac3a8a4bf1,SESCO,II.1.1,Córdoba,AR-X,annual,2022,gas oil combustion consumption by public passenger transport,13.21992,TJ,CH4,3.9,kg/TJ,51.557688,kg -aeae4db0-58cf-3596-b7c6-ccac3a8a4bf1,SESCO,II.1.1,Córdoba,AR-X,annual,2022,gas oil combustion consumption by public passenger transport,13.21992,TJ,N2O,3.9,kg/TJ,51.557688,kg -ce369f6c-d425-3608-a7c6-4b85d86f6f62,SESCO,II.1.1,Entre Rios,AR-E,annual,2022,gas oil combustion consumption by public passenger transport,4.44276,TJ,CO2,74100.0,kg/TJ,329208.516,kg -dacd5c93-3394-3811-bbd5-80e923948dce,SESCO,II.1.1,Entre Rios,AR-E,annual,2022,gas oil combustion consumption by public passenger transport,4.44276,TJ,CH4,3.9,kg/TJ,17.326763999999997,kg -dacd5c93-3394-3811-bbd5-80e923948dce,SESCO,II.1.1,Entre Rios,AR-E,annual,2022,gas oil combustion consumption by public passenger transport,4.44276,TJ,N2O,3.9,kg/TJ,17.326763999999997,kg -e6ac4cb8-bce5-3a14-8a2d-cf992ff9c5cf,SESCO,II.1.1,Formosa,AR-P,annual,2022,gas oil combustion consumption by public passenger transport,4.6956,TJ,CO2,74100.0,kg/TJ,347943.95999999996,kg -4f116e71-bacc-3c40-8355-5f18c3a91679,SESCO,II.1.1,Formosa,AR-P,annual,2022,gas oil combustion consumption by public passenger transport,4.6956,TJ,CH4,3.9,kg/TJ,18.312839999999998,kg -4f116e71-bacc-3c40-8355-5f18c3a91679,SESCO,II.1.1,Formosa,AR-P,annual,2022,gas oil combustion consumption by public passenger transport,4.6956,TJ,N2O,3.9,kg/TJ,18.312839999999998,kg -5fa51960-36e1-3a0d-bce5-0dd2a833e98e,SESCO,II.1.1,La Pampa,AR-L,annual,2022,gas oil combustion consumption by public passenger transport,0.03612,TJ,CO2,74100.0,kg/TJ,2676.4919999999997,kg -9bffa227-caae-3d79-9202-c83612263ab2,SESCO,II.1.1,La Pampa,AR-L,annual,2022,gas oil combustion consumption by public passenger transport,0.03612,TJ,CH4,3.9,kg/TJ,0.140868,kg -9bffa227-caae-3d79-9202-c83612263ab2,SESCO,II.1.1,La Pampa,AR-L,annual,2022,gas oil combustion consumption by public passenger transport,0.03612,TJ,N2O,3.9,kg/TJ,0.140868,kg -7ba62d63-934c-35b6-bb62-b75ba989e98e,SESCO,II.1.1,Mendoza,AR-M,annual,2022,gas oil combustion consumption by public passenger transport,0.8307599999999999,TJ,CO2,74100.0,kg/TJ,61559.316,kg -6fb51a12-1af4-3ff4-b2ba-8a94720a8a64,SESCO,II.1.1,Mendoza,AR-M,annual,2022,gas oil combustion consumption by public passenger transport,0.8307599999999999,TJ,CH4,3.9,kg/TJ,3.2399639999999996,kg -6fb51a12-1af4-3ff4-b2ba-8a94720a8a64,SESCO,II.1.1,Mendoza,AR-M,annual,2022,gas oil combustion consumption by public passenger transport,0.8307599999999999,TJ,N2O,3.9,kg/TJ,3.2399639999999996,kg -26712a07-f775-3efc-bcbf-af0c69415ce0,SESCO,II.1.1,Misiones,AR-N,annual,2022,gas oil combustion consumption by public passenger transport,0.10836,TJ,CO2,74100.0,kg/TJ,8029.476,kg -dcd3983d-6d10-3d48-a23e-adfef4ae73c8,SESCO,II.1.1,Misiones,AR-N,annual,2022,gas oil combustion consumption by public passenger transport,0.10836,TJ,CH4,3.9,kg/TJ,0.422604,kg -dcd3983d-6d10-3d48-a23e-adfef4ae73c8,SESCO,II.1.1,Misiones,AR-N,annual,2022,gas oil combustion consumption by public passenger transport,0.10836,TJ,N2O,3.9,kg/TJ,0.422604,kg -899f7759-fd27-37f5-9760-9cc121b1fa1a,SESCO,II.1.1,Neuquén,AR-Q,annual,2022,gas oil combustion consumption by public passenger transport,3.21468,TJ,CO2,74100.0,kg/TJ,238207.788,kg -069f678d-6727-3f05-a055-8d6183276770,SESCO,II.1.1,Neuquén,AR-Q,annual,2022,gas oil combustion consumption by public passenger transport,3.21468,TJ,CH4,3.9,kg/TJ,12.537252,kg -069f678d-6727-3f05-a055-8d6183276770,SESCO,II.1.1,Neuquén,AR-Q,annual,2022,gas oil combustion consumption by public passenger transport,3.21468,TJ,N2O,3.9,kg/TJ,12.537252,kg -289f0de4-1a19-39a0-bcee-707b0edca1f0,SESCO,II.1.1,Rio Negro,AR-R,annual,2022,gas oil combustion consumption by public passenger transport,7.69356,TJ,CO2,74100.0,kg/TJ,570092.796,kg -553a9dd4-3b2c-368c-acd0-ef29801f4ea5,SESCO,II.1.1,Rio Negro,AR-R,annual,2022,gas oil combustion consumption by public passenger transport,7.69356,TJ,CH4,3.9,kg/TJ,30.004883999999997,kg -553a9dd4-3b2c-368c-acd0-ef29801f4ea5,SESCO,II.1.1,Rio Negro,AR-R,annual,2022,gas oil combustion consumption by public passenger transport,7.69356,TJ,N2O,3.9,kg/TJ,30.004883999999997,kg -81d68113-d191-36d2-959d-8c44c6334729,SESCO,II.1.1,Salta,AR-A,annual,2022,gas oil combustion consumption by public passenger transport,0.10836,TJ,CO2,74100.0,kg/TJ,8029.476,kg -53f60864-b496-3d8b-93da-a1aa1518f340,SESCO,II.1.1,Salta,AR-A,annual,2022,gas oil combustion consumption by public passenger transport,0.10836,TJ,CH4,3.9,kg/TJ,0.422604,kg -53f60864-b496-3d8b-93da-a1aa1518f340,SESCO,II.1.1,Salta,AR-A,annual,2022,gas oil combustion consumption by public passenger transport,0.10836,TJ,N2O,3.9,kg/TJ,0.422604,kg -7b03e744-d08f-35db-aeec-7a8a80920574,SESCO,II.1.1,Santa Fe,AR-S,annual,2022,gas oil combustion consumption by public passenger transport,223.944,TJ,CO2,74100.0,kg/TJ,16594250.399999999,kg -42bea29a-e52b-37b5-b758-6c4cbf55fbf6,SESCO,II.1.1,Santa Fe,AR-S,annual,2022,gas oil combustion consumption by public passenger transport,223.944,TJ,CH4,3.9,kg/TJ,873.3815999999999,kg -42bea29a-e52b-37b5-b758-6c4cbf55fbf6,SESCO,II.1.1,Santa Fe,AR-S,annual,2022,gas oil combustion consumption by public passenger transport,223.944,TJ,N2O,3.9,kg/TJ,873.3815999999999,kg -00280202-632d-3114-a05f-c74e11008ac5,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2022,gas oil combustion consumption by public passenger transport,0.43344,TJ,CO2,74100.0,kg/TJ,32117.904,kg -7ccda793-ff1d-39b4-9535-2c1f2b48ca15,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2022,gas oil combustion consumption by public passenger transport,0.43344,TJ,CH4,3.9,kg/TJ,1.690416,kg -7ccda793-ff1d-39b4-9535-2c1f2b48ca15,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2022,gas oil combustion consumption by public passenger transport,0.43344,TJ,N2O,3.9,kg/TJ,1.690416,kg -4342d217-5966-3509-9295-612f90685c55,SESCO,II.1.1,Tucuman,AR-T,annual,2022,gas oil combustion consumption by public passenger transport,0.07224,TJ,CO2,74100.0,kg/TJ,5352.9839999999995,kg -72b62858-a0a0-30c3-a79c-b52525c6f9e7,SESCO,II.1.1,Tucuman,AR-T,annual,2022,gas oil combustion consumption by public passenger transport,0.07224,TJ,CH4,3.9,kg/TJ,0.281736,kg -72b62858-a0a0-30c3-a79c-b52525c6f9e7,SESCO,II.1.1,Tucuman,AR-T,annual,2022,gas oil combustion consumption by public passenger transport,0.07224,TJ,N2O,3.9,kg/TJ,0.281736,kg -df30403d-18db-3036-b04c-860323a3440a,SESCO,II.1.1,Catamarca,AR-K,annual,2022,gas oil combustion consumption by to the public,32.2183176,TJ,CO2,74100.0,kg/TJ,2387377.33416,kg -acab5328-26c3-3320-ac0f-b8fc691a2a75,SESCO,II.1.1,Catamarca,AR-K,annual,2022,gas oil combustion consumption by to the public,32.2183176,TJ,CH4,3.9,kg/TJ,125.65143864,kg -acab5328-26c3-3320-ac0f-b8fc691a2a75,SESCO,II.1.1,Catamarca,AR-K,annual,2022,gas oil combustion consumption by to the public,32.2183176,TJ,N2O,3.9,kg/TJ,125.65143864,kg -6ff34a76-e177-32dd-8699-1bfae8756038,SESCO,II.1.1,Chaco,AR-H,annual,2022,gas oil combustion consumption by to the public,48.868554,TJ,CO2,74100.0,kg/TJ,3621159.8514,kg -e0f954b7-5caf-3926-9156-16940e5104ab,SESCO,II.1.1,Chaco,AR-H,annual,2022,gas oil combustion consumption by to the public,48.868554,TJ,CH4,3.9,kg/TJ,190.5873606,kg -e0f954b7-5caf-3926-9156-16940e5104ab,SESCO,II.1.1,Chaco,AR-H,annual,2022,gas oil combustion consumption by to the public,48.868554,TJ,N2O,3.9,kg/TJ,190.5873606,kg -769ca5bc-58be-3610-b2b1-1a6b41691a29,SESCO,II.1.1,Jujuy,AR-Y,annual,2022,gas oil combustion consumption by to the public,446.4121368,TJ,CO2,74100.0,kg/TJ,33079139.33688,kg -eb8283ca-31ef-3dff-b812-04ec793be5db,SESCO,II.1.1,Jujuy,AR-Y,annual,2022,gas oil combustion consumption by to the public,446.4121368,TJ,CH4,3.9,kg/TJ,1741.00733352,kg -eb8283ca-31ef-3dff-b812-04ec793be5db,SESCO,II.1.1,Jujuy,AR-Y,annual,2022,gas oil combustion consumption by to the public,446.4121368,TJ,N2O,3.9,kg/TJ,1741.00733352,kg -aa5f4916-723e-35e7-b84a-c1498dd69010,SESCO,II.1.1,La Rioja,AR-F,annual,2022,gas oil combustion consumption by to the public,75.3098388,TJ,CO2,74100.0,kg/TJ,5580459.055079999,kg -e50864bd-f111-388b-a9f6-7b7566042547,SESCO,II.1.1,La Rioja,AR-F,annual,2022,gas oil combustion consumption by to the public,75.3098388,TJ,CH4,3.9,kg/TJ,293.70837131999997,kg -e50864bd-f111-388b-a9f6-7b7566042547,SESCO,II.1.1,La Rioja,AR-F,annual,2022,gas oil combustion consumption by to the public,75.3098388,TJ,N2O,3.9,kg/TJ,293.70837131999997,kg -a095c648-e481-30d8-9f98-6e3ee3d94713,SESCO,II.1.1,Salta,AR-A,annual,2022,gas oil combustion consumption by to the public,1424.4254303999999,TJ,CO2,74100.0,kg/TJ,105549924.39264,kg -59bed956-c2a7-336b-ac19-cf96f02f1e91,SESCO,II.1.1,Salta,AR-A,annual,2022,gas oil combustion consumption by to the public,1424.4254303999999,TJ,CH4,3.9,kg/TJ,5555.25917856,kg -59bed956-c2a7-336b-ac19-cf96f02f1e91,SESCO,II.1.1,Salta,AR-A,annual,2022,gas oil combustion consumption by to the public,1424.4254303999999,TJ,N2O,3.9,kg/TJ,5555.25917856,kg -6533769c-0a62-3019-9f36-91b3b4f67ed0,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2022,gas oil combustion consumption by to the public,169.5086316,TJ,CO2,74100.0,kg/TJ,12560589.60156,kg -abf4516d-0a2a-31e3-8522-03e14160ea63,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2022,gas oil combustion consumption by to the public,169.5086316,TJ,CH4,3.9,kg/TJ,661.08366324,kg -abf4516d-0a2a-31e3-8522-03e14160ea63,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2022,gas oil combustion consumption by to the public,169.5086316,TJ,N2O,3.9,kg/TJ,661.08366324,kg -08b81f9a-db93-39db-bf47-db4977ea2dad,SESCO,II.1.1,Tucuman,AR-T,annual,2022,gas oil combustion consumption by to the public,1394.4537768,TJ,CO2,74100.0,kg/TJ,103329024.86088,kg -69a98059-13f0-3283-b10d-0f5551080e6c,SESCO,II.1.1,Tucuman,AR-T,annual,2022,gas oil combustion consumption by to the public,1394.4537768,TJ,CH4,3.9,kg/TJ,5438.36972952,kg -69a98059-13f0-3283-b10d-0f5551080e6c,SESCO,II.1.1,Tucuman,AR-T,annual,2022,gas oil combustion consumption by to the public,1394.4537768,TJ,N2O,3.9,kg/TJ,5438.36972952,kg -4ead1a07-b3c5-30fb-b8f0-1b051030f53f,SESCO,II.1.1,Catamarca,AR-K,annual,2022,gas oil combustion consumption by to the public,11.270162399999998,TJ,CO2,74100.0,kg/TJ,835119.0338399999,kg -680d165e-231c-3745-9209-d8fe0a6e30ac,SESCO,II.1.1,Catamarca,AR-K,annual,2022,gas oil combustion consumption by to the public,11.270162399999998,TJ,CH4,3.9,kg/TJ,43.95363335999999,kg -680d165e-231c-3745-9209-d8fe0a6e30ac,SESCO,II.1.1,Catamarca,AR-K,annual,2022,gas oil combustion consumption by to the public,11.270162399999998,TJ,N2O,3.9,kg/TJ,43.95363335999999,kg -8d7d2b7d-3ffe-3dc2-b7bd-bc1aca53123e,SESCO,II.1.1,Chaco,AR-H,annual,2022,gas oil combustion consumption by to the public,7.4418036,TJ,CO2,74100.0,kg/TJ,551437.64676,kg -b585a296-f613-3736-98ec-27b8257688fd,SESCO,II.1.1,Chaco,AR-H,annual,2022,gas oil combustion consumption by to the public,7.4418036,TJ,CH4,3.9,kg/TJ,29.02303404,kg -b585a296-f613-3736-98ec-27b8257688fd,SESCO,II.1.1,Chaco,AR-H,annual,2022,gas oil combustion consumption by to the public,7.4418036,TJ,N2O,3.9,kg/TJ,29.02303404,kg -2004b993-9b26-3de9-b986-426b939a4228,SESCO,II.1.1,Jujuy,AR-Y,annual,2022,gas oil combustion consumption by to the public,129.9702348,TJ,CO2,74100.0,kg/TJ,9630794.39868,kg -2cf91912-acb3-3bdc-9c3a-f2d5cd1e8852,SESCO,II.1.1,Jujuy,AR-Y,annual,2022,gas oil combustion consumption by to the public,129.9702348,TJ,CH4,3.9,kg/TJ,506.88391571999995,kg -2cf91912-acb3-3bdc-9c3a-f2d5cd1e8852,SESCO,II.1.1,Jujuy,AR-Y,annual,2022,gas oil combustion consumption by to the public,129.9702348,TJ,N2O,3.9,kg/TJ,506.88391571999995,kg -aada4a29-3ff6-34ce-9dc6-212ae14ce9d7,SESCO,II.1.1,La Rioja,AR-F,annual,2022,gas oil combustion consumption by to the public,127.581258,TJ,CO2,74100.0,kg/TJ,9453771.2178,kg -cb612c84-770d-39c1-b7b5-8a657225310b,SESCO,II.1.1,La Rioja,AR-F,annual,2022,gas oil combustion consumption by to the public,127.581258,TJ,CH4,3.9,kg/TJ,497.5669062,kg -cb612c84-770d-39c1-b7b5-8a657225310b,SESCO,II.1.1,La Rioja,AR-F,annual,2022,gas oil combustion consumption by to the public,127.581258,TJ,N2O,3.9,kg/TJ,497.5669062,kg -340dc305-bb8a-3f9c-9c50-42343301c52d,SESCO,II.1.1,Salta,AR-A,annual,2022,gas oil combustion consumption by to the public,297.0711072,TJ,CO2,74100.0,kg/TJ,22012969.043519996,kg -c6f99c53-4f4e-3405-bc74-ae7576158d99,SESCO,II.1.1,Salta,AR-A,annual,2022,gas oil combustion consumption by to the public,297.0711072,TJ,CH4,3.9,kg/TJ,1158.57731808,kg -c6f99c53-4f4e-3405-bc74-ae7576158d99,SESCO,II.1.1,Salta,AR-A,annual,2022,gas oil combustion consumption by to the public,297.0711072,TJ,N2O,3.9,kg/TJ,1158.57731808,kg -555ed7ad-f880-3e7f-8c96-c23af45f47e1,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2022,gas oil combustion consumption by to the public,77.06599320000001,TJ,CO2,74100.0,kg/TJ,5710590.096120001,kg -20acceb9-96c4-31fa-b4c3-077648a7eb19,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2022,gas oil combustion consumption by to the public,77.06599320000001,TJ,CH4,3.9,kg/TJ,300.55737348,kg -20acceb9-96c4-31fa-b4c3-077648a7eb19,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2022,gas oil combustion consumption by to the public,77.06599320000001,TJ,N2O,3.9,kg/TJ,300.55737348,kg -95c4621a-61a1-3e92-acf0-c96a6d182423,SESCO,II.1.1,Tucuman,AR-T,annual,2022,gas oil combustion consumption by to the public,362.5971216,TJ,CO2,74100.0,kg/TJ,26868446.710559998,kg -a3ead0eb-2b69-3036-81bd-78e58ca4cfd6,SESCO,II.1.1,Tucuman,AR-T,annual,2022,gas oil combustion consumption by to the public,362.5971216,TJ,CH4,3.9,kg/TJ,1414.12877424,kg -a3ead0eb-2b69-3036-81bd-78e58ca4cfd6,SESCO,II.1.1,Tucuman,AR-T,annual,2022,gas oil combustion consumption by to the public,362.5971216,TJ,N2O,3.9,kg/TJ,1414.12877424,kg -021a75a7-9ed0-33b8-8b64-8dfff9fad6ee,SESCO,I.3.1,Chaco,AR-H,annual,2022,gasoline combustion consumption by petrochemical industries,11.090062,TJ,CO2,69300.0,kg/TJ,768541.2966,kg -d63aba2d-123c-3d2a-8fd5-3e8c6a1a0b63,SESCO,I.3.1,Chaco,AR-H,annual,2022,gasoline combustion consumption by petrochemical industries,11.090062,TJ,CH4,33.0,kg/TJ,365.972046,kg -c74305bf-3b64-3fd2-b832-96d4659d3be0,SESCO,I.3.1,Chaco,AR-H,annual,2022,gasoline combustion consumption by petrochemical industries,11.090062,TJ,N2O,3.2,kg/TJ,35.4881984,kg -f75dac07-2a77-35c4-9c9e-1fd6011e9c17,SESCO,II.5.1,Entre Rios,AR-E,annual,2022,gas oil combustion consumption by agriculture machines,13.03932,TJ,CO2,74100.0,kg/TJ,966213.612,kg -930fe0ce-59c7-3f9e-875b-10e0022aa7ed,SESCO,II.5.1,Entre Rios,AR-E,annual,2022,gas oil combustion consumption by agriculture machines,13.03932,TJ,CH4,3.9,kg/TJ,50.853348,kg -930fe0ce-59c7-3f9e-875b-10e0022aa7ed,SESCO,II.5.1,Entre Rios,AR-E,annual,2022,gas oil combustion consumption by agriculture machines,13.03932,TJ,N2O,3.9,kg/TJ,50.853348,kg -b12f0701-b21d-3cb1-8e80-6e9eca8d8bb1,SESCO,II.5.1,Entre Rios,AR-E,annual,2022,gas oil combustion consumption by agriculture machines,0.5418,TJ,CO2,74100.0,kg/TJ,40147.38,kg -3b0354ae-4bba-3861-b80f-180450fbdb1d,SESCO,II.5.1,Entre Rios,AR-E,annual,2022,gas oil combustion consumption by agriculture machines,0.5418,TJ,CH4,3.9,kg/TJ,2.1130199999999997,kg -3b0354ae-4bba-3861-b80f-180450fbdb1d,SESCO,II.5.1,Entre Rios,AR-E,annual,2022,gas oil combustion consumption by agriculture machines,0.5418,TJ,N2O,3.9,kg/TJ,2.1130199999999997,kg -596bcc06-53bc-32d2-8064-32b5be493125,SESCO,II.5.1,Buenos Aires,AR-B,annual,2022,gas oil combustion consumption by agriculture machines,444.67332,TJ,CO2,74100.0,kg/TJ,32950293.012,kg -1c0a9b89-58eb-36f9-ab5e-8eb0c9d7225e,SESCO,II.5.1,Buenos Aires,AR-B,annual,2022,gas oil combustion consumption by agriculture machines,444.67332,TJ,CH4,3.9,kg/TJ,1734.225948,kg -1c0a9b89-58eb-36f9-ab5e-8eb0c9d7225e,SESCO,II.5.1,Buenos Aires,AR-B,annual,2022,gas oil combustion consumption by agriculture machines,444.67332,TJ,N2O,3.9,kg/TJ,1734.225948,kg -78e30614-bdb0-3e05-ab7f-8303583921d7,SESCO,II.5.1,Corrientes,AR-W,annual,2022,gas oil combustion consumption by agriculture machines,51.1098,TJ,CO2,74100.0,kg/TJ,3787236.18,kg -f3d409dd-afd5-3b4e-9c08-cd4f717730c8,SESCO,II.5.1,Corrientes,AR-W,annual,2022,gas oil combustion consumption by agriculture machines,51.1098,TJ,CH4,3.9,kg/TJ,199.32822,kg -f3d409dd-afd5-3b4e-9c08-cd4f717730c8,SESCO,II.5.1,Corrientes,AR-W,annual,2022,gas oil combustion consumption by agriculture machines,51.1098,TJ,N2O,3.9,kg/TJ,199.32822,kg -8b74e209-4284-3fba-96b4-b4c711ed6976,SESCO,II.5.1,Córdoba,AR-X,annual,2022,gas oil combustion consumption by agriculture machines,16.68744,TJ,CO2,74100.0,kg/TJ,1236539.304,kg -f0a739b1-1656-3602-98ac-c5cdbed185e3,SESCO,II.5.1,Córdoba,AR-X,annual,2022,gas oil combustion consumption by agriculture machines,16.68744,TJ,CH4,3.9,kg/TJ,65.08101599999999,kg -f0a739b1-1656-3602-98ac-c5cdbed185e3,SESCO,II.5.1,Córdoba,AR-X,annual,2022,gas oil combustion consumption by agriculture machines,16.68744,TJ,N2O,3.9,kg/TJ,65.08101599999999,kg -a90028da-68b0-3289-8da6-2abb5b5401c7,SESCO,II.5.1,Entre Rios,AR-E,annual,2022,gas oil combustion consumption by agriculture machines,113.45291999999999,TJ,CO2,74100.0,kg/TJ,8406861.372,kg -407bb597-647f-312d-809e-61ffd39cfc1a,SESCO,II.5.1,Entre Rios,AR-E,annual,2022,gas oil combustion consumption by agriculture machines,113.45291999999999,TJ,CH4,3.9,kg/TJ,442.46638799999994,kg -407bb597-647f-312d-809e-61ffd39cfc1a,SESCO,II.5.1,Entre Rios,AR-E,annual,2022,gas oil combustion consumption by agriculture machines,113.45291999999999,TJ,N2O,3.9,kg/TJ,442.46638799999994,kg -c515af30-e29d-3f0b-b82b-db74638cf3d5,SESCO,II.5.1,La Pampa,AR-L,annual,2022,gas oil combustion consumption by agriculture machines,24.63384,TJ,CO2,74100.0,kg/TJ,1825367.544,kg -d2df41d6-d67d-38e8-9fa5-71c1854fd02e,SESCO,II.5.1,La Pampa,AR-L,annual,2022,gas oil combustion consumption by agriculture machines,24.63384,TJ,CH4,3.9,kg/TJ,96.07197599999999,kg -d2df41d6-d67d-38e8-9fa5-71c1854fd02e,SESCO,II.5.1,La Pampa,AR-L,annual,2022,gas oil combustion consumption by agriculture machines,24.63384,TJ,N2O,3.9,kg/TJ,96.07197599999999,kg -857e2b36-5aba-3b9d-ace2-da84b3eb3fcc,SESCO,II.5.1,Santa Fe,AR-S,annual,2022,gas oil combustion consumption by agriculture machines,61.656839999999995,TJ,CO2,74100.0,kg/TJ,4568771.844,kg -8bfb07a4-7b4e-3b39-8823-c806d11aa4d3,SESCO,II.5.1,Santa Fe,AR-S,annual,2022,gas oil combustion consumption by agriculture machines,61.656839999999995,TJ,CH4,3.9,kg/TJ,240.46167599999998,kg -8bfb07a4-7b4e-3b39-8823-c806d11aa4d3,SESCO,II.5.1,Santa Fe,AR-S,annual,2022,gas oil combustion consumption by agriculture machines,61.656839999999995,TJ,N2O,3.9,kg/TJ,240.46167599999998,kg -8ee9aef6-c95b-3eea-ab77-b88617e86dc1,SESCO,II.5.1,Tucuman,AR-T,annual,2022,gas oil combustion consumption by agriculture machines,23.2974,TJ,CO2,74100.0,kg/TJ,1726337.34,kg -412b7863-28b9-391c-87a8-cd982d61b797,SESCO,II.5.1,Tucuman,AR-T,annual,2022,gas oil combustion consumption by agriculture machines,23.2974,TJ,CH4,3.9,kg/TJ,90.85986,kg -412b7863-28b9-391c-87a8-cd982d61b797,SESCO,II.5.1,Tucuman,AR-T,annual,2022,gas oil combustion consumption by agriculture machines,23.2974,TJ,N2O,3.9,kg/TJ,90.85986,kg -55c440d1-c500-3fc6-95db-cb73df4da5b2,SESCO,II.5.1,Buenos Aires,AR-B,annual,2022,gas oil combustion consumption by agriculture machines,29.22108,TJ,CO2,74100.0,kg/TJ,2165282.028,kg -f23928cf-cbd0-3abe-9dcc-2e87b566084d,SESCO,II.5.1,Buenos Aires,AR-B,annual,2022,gas oil combustion consumption by agriculture machines,29.22108,TJ,CH4,3.9,kg/TJ,113.962212,kg -f23928cf-cbd0-3abe-9dcc-2e87b566084d,SESCO,II.5.1,Buenos Aires,AR-B,annual,2022,gas oil combustion consumption by agriculture machines,29.22108,TJ,N2O,3.9,kg/TJ,113.962212,kg -bd9af4e7-cbf0-3fcb-976a-5ef6518612fa,SESCO,II.5.1,Entre Rios,AR-E,annual,2022,gas oil combustion consumption by agriculture machines,38.14272,TJ,CO2,74100.0,kg/TJ,2826375.5519999997,kg -86875c61-696b-36fd-80db-1117f6ed2ba4,SESCO,II.5.1,Entre Rios,AR-E,annual,2022,gas oil combustion consumption by agriculture machines,38.14272,TJ,CH4,3.9,kg/TJ,148.75660799999997,kg -86875c61-696b-36fd-80db-1117f6ed2ba4,SESCO,II.5.1,Entre Rios,AR-E,annual,2022,gas oil combustion consumption by agriculture machines,38.14272,TJ,N2O,3.9,kg/TJ,148.75660799999997,kg -a38019cc-9958-3679-9e72-81b844443b35,SESCO,II.5.1,La Pampa,AR-L,annual,2022,gas oil combustion consumption by agriculture machines,8.488199999999999,TJ,CO2,74100.0,kg/TJ,628975.6199999999,kg -bd70a64c-91e9-390b-821d-a84a1c3c93b9,SESCO,II.5.1,La Pampa,AR-L,annual,2022,gas oil combustion consumption by agriculture machines,8.488199999999999,TJ,CH4,3.9,kg/TJ,33.10397999999999,kg -bd70a64c-91e9-390b-821d-a84a1c3c93b9,SESCO,II.5.1,La Pampa,AR-L,annual,2022,gas oil combustion consumption by agriculture machines,8.488199999999999,TJ,N2O,3.9,kg/TJ,33.10397999999999,kg -d1b906fc-705a-30f5-9b48-65141034d39a,SESCO,II.5.1,Santa Fe,AR-S,annual,2022,gas oil combustion consumption by agriculture machines,2.85348,TJ,CO2,74100.0,kg/TJ,211442.868,kg -d2ca74ac-26b2-3c71-a4d7-4ae4a0886623,SESCO,II.5.1,Santa Fe,AR-S,annual,2022,gas oil combustion consumption by agriculture machines,2.85348,TJ,CH4,3.9,kg/TJ,11.128571999999998,kg -d2ca74ac-26b2-3c71-a4d7-4ae4a0886623,SESCO,II.5.1,Santa Fe,AR-S,annual,2022,gas oil combustion consumption by agriculture machines,2.85348,TJ,N2O,3.9,kg/TJ,11.128571999999998,kg -5c98ed37-7849-3abe-bef3-e1a8f02504ff,SESCO,II.5.1,Tucuman,AR-T,annual,2022,gas oil combustion consumption by agriculture machines,0.93912,TJ,CO2,74100.0,kg/TJ,69588.792,kg -00d6a62e-c0a3-35de-993f-e8d3c929c459,SESCO,II.5.1,Tucuman,AR-T,annual,2022,gas oil combustion consumption by agriculture machines,0.93912,TJ,CH4,3.9,kg/TJ,3.662568,kg -00d6a62e-c0a3-35de-993f-e8d3c929c459,SESCO,II.5.1,Tucuman,AR-T,annual,2022,gas oil combustion consumption by agriculture machines,0.93912,TJ,N2O,3.9,kg/TJ,3.662568,kg -80dfa898-c5d1-30d9-9ffa-3625855a1503,SESCO,II.1.1,Buenos Aires,AR-B,annual,2022,gas oil combustion consumption by to the public,15598.99992,TJ,CO2,74100.0,kg/TJ,1155885894.072,kg -bb9a4da1-1259-370d-98fb-ab5f995df1cc,SESCO,II.1.1,Buenos Aires,AR-B,annual,2022,gas oil combustion consumption by to the public,15598.99992,TJ,CH4,3.9,kg/TJ,60836.099688,kg -bb9a4da1-1259-370d-98fb-ab5f995df1cc,SESCO,II.1.1,Buenos Aires,AR-B,annual,2022,gas oil combustion consumption by to the public,15598.99992,TJ,N2O,3.9,kg/TJ,60836.099688,kg -2e4b0340-36d5-3189-8e28-9a021cad8965,SESCO,II.1.1,Capital Federal,AR-C,annual,2022,gas oil combustion consumption by to the public,1264.0916399999999,TJ,CO2,74100.0,kg/TJ,93669190.52399999,kg -a8899e3a-ba9b-3985-a1d0-6843174608ed,SESCO,II.1.1,Capital Federal,AR-C,annual,2022,gas oil combustion consumption by to the public,1264.0916399999999,TJ,CH4,3.9,kg/TJ,4929.957396,kg -a8899e3a-ba9b-3985-a1d0-6843174608ed,SESCO,II.1.1,Capital Federal,AR-C,annual,2022,gas oil combustion consumption by to the public,1264.0916399999999,TJ,N2O,3.9,kg/TJ,4929.957396,kg -be1fd2f9-b57a-3d7d-87f6-a185d2387f70,SESCO,II.1.1,Catamarca,AR-K,annual,2022,gas oil combustion consumption by to the public,34.4946,TJ,CO2,74100.0,kg/TJ,2556049.86,kg -727c0f34-4c67-3441-bbe2-bb7ed162b210,SESCO,II.1.1,Catamarca,AR-K,annual,2022,gas oil combustion consumption by to the public,34.4946,TJ,CH4,3.9,kg/TJ,134.52893999999998,kg -727c0f34-4c67-3441-bbe2-bb7ed162b210,SESCO,II.1.1,Catamarca,AR-K,annual,2022,gas oil combustion consumption by to the public,34.4946,TJ,N2O,3.9,kg/TJ,134.52893999999998,kg -23ee2f9b-9f1a-3e94-8702-231208fe9920,SESCO,II.1.1,Chaco,AR-H,annual,2022,gas oil combustion consumption by to the public,1934.62332,TJ,CO2,74100.0,kg/TJ,143355588.012,kg -ce870287-94a5-36e9-84f8-f934e9007f07,SESCO,II.1.1,Chaco,AR-H,annual,2022,gas oil combustion consumption by to the public,1934.62332,TJ,CH4,3.9,kg/TJ,7545.030948,kg -ce870287-94a5-36e9-84f8-f934e9007f07,SESCO,II.1.1,Chaco,AR-H,annual,2022,gas oil combustion consumption by to the public,1934.62332,TJ,N2O,3.9,kg/TJ,7545.030948,kg -fa0b2ca5-d95b-38fb-9950-d819a4d3213c,SESCO,II.1.1,Corrientes,AR-W,annual,2022,gas oil combustion consumption by to the public,1283.74092,TJ,CO2,74100.0,kg/TJ,95125202.17199999,kg -9f20b470-8a36-3889-90a8-52b4e3f08560,SESCO,II.1.1,Corrientes,AR-W,annual,2022,gas oil combustion consumption by to the public,1283.74092,TJ,CH4,3.9,kg/TJ,5006.589588,kg -9f20b470-8a36-3889-90a8-52b4e3f08560,SESCO,II.1.1,Corrientes,AR-W,annual,2022,gas oil combustion consumption by to the public,1283.74092,TJ,N2O,3.9,kg/TJ,5006.589588,kg -4da9ef94-dc50-3bd8-b50b-ffcfe26cfdb6,SESCO,II.1.1,Córdoba,AR-X,annual,2022,gas oil combustion consumption by to the public,8851.67556,TJ,CO2,74100.0,kg/TJ,655909158.9959999,kg -c9cc34f1-57b7-3a48-b7fa-776dffdc43dd,SESCO,II.1.1,Córdoba,AR-X,annual,2022,gas oil combustion consumption by to the public,8851.67556,TJ,CH4,3.9,kg/TJ,34521.534684,kg -c9cc34f1-57b7-3a48-b7fa-776dffdc43dd,SESCO,II.1.1,Córdoba,AR-X,annual,2022,gas oil combustion consumption by to the public,8851.67556,TJ,N2O,3.9,kg/TJ,34521.534684,kg -6dcf3f89-9098-3737-a4b2-a1632cc9540c,SESCO,II.1.1,Entre Rios,AR-E,annual,2022,gas oil combustion consumption by to the public,1950.01044,TJ,CO2,74100.0,kg/TJ,144495773.604,kg -94f7083d-1eef-3006-a884-3e57ab32fa7f,SESCO,II.1.1,Entre Rios,AR-E,annual,2022,gas oil combustion consumption by to the public,1950.01044,TJ,CH4,3.9,kg/TJ,7605.0407159999995,kg -94f7083d-1eef-3006-a884-3e57ab32fa7f,SESCO,II.1.1,Entre Rios,AR-E,annual,2022,gas oil combustion consumption by to the public,1950.01044,TJ,N2O,3.9,kg/TJ,7605.0407159999995,kg -42b01575-7dcf-34ae-b425-e574184ee1b3,SESCO,II.1.1,Formosa,AR-P,annual,2022,gas oil combustion consumption by to the public,193.92828,TJ,CO2,74100.0,kg/TJ,14370085.548,kg -fc89a5aa-eb7f-3849-a7eb-b66419a3c27f,SESCO,II.1.1,Formosa,AR-P,annual,2022,gas oil combustion consumption by to the public,193.92828,TJ,CH4,3.9,kg/TJ,756.320292,kg -fc89a5aa-eb7f-3849-a7eb-b66419a3c27f,SESCO,II.1.1,Formosa,AR-P,annual,2022,gas oil combustion consumption by to the public,193.92828,TJ,N2O,3.9,kg/TJ,756.320292,kg -034f70aa-7869-38fb-b3e7-75522fe9ecfd,SESCO,II.1.1,Jujuy,AR-Y,annual,2022,gas oil combustion consumption by to the public,293.25828,TJ,CO2,74100.0,kg/TJ,21730438.548,kg -e36e3ac6-e86f-3f3f-9738-9c0f8a86b0be,SESCO,II.1.1,Jujuy,AR-Y,annual,2022,gas oil combustion consumption by to the public,293.25828,TJ,CH4,3.9,kg/TJ,1143.707292,kg -e36e3ac6-e86f-3f3f-9738-9c0f8a86b0be,SESCO,II.1.1,Jujuy,AR-Y,annual,2022,gas oil combustion consumption by to the public,293.25828,TJ,N2O,3.9,kg/TJ,1143.707292,kg -a0681d38-68b9-36d6-8991-8209ec6f042e,SESCO,II.1.1,La Pampa,AR-L,annual,2022,gas oil combustion consumption by to the public,957.10776,TJ,CO2,74100.0,kg/TJ,70921685.016,kg -f7ec8850-a924-3057-928e-4e704859844e,SESCO,II.1.1,La Pampa,AR-L,annual,2022,gas oil combustion consumption by to the public,957.10776,TJ,CH4,3.9,kg/TJ,3732.720264,kg -f7ec8850-a924-3057-928e-4e704859844e,SESCO,II.1.1,La Pampa,AR-L,annual,2022,gas oil combustion consumption by to the public,957.10776,TJ,N2O,3.9,kg/TJ,3732.720264,kg -a31a5102-c5f8-3c38-b73a-5b1263f8826d,SESCO,II.1.1,La Rioja,AR-F,annual,2022,gas oil combustion consumption by to the public,208.52076,TJ,CO2,74100.0,kg/TJ,15451388.316,kg -8138523d-9da1-3fba-9152-d10d4379ec38,SESCO,II.1.1,La Rioja,AR-F,annual,2022,gas oil combustion consumption by to the public,208.52076,TJ,CH4,3.9,kg/TJ,813.230964,kg -8138523d-9da1-3fba-9152-d10d4379ec38,SESCO,II.1.1,La Rioja,AR-F,annual,2022,gas oil combustion consumption by to the public,208.52076,TJ,N2O,3.9,kg/TJ,813.230964,kg -f1be0363-4672-35e0-9855-7761cc8b4769,SESCO,II.1.1,Mendoza,AR-M,annual,2022,gas oil combustion consumption by to the public,1973.2356,TJ,CO2,74100.0,kg/TJ,146216757.96,kg -926af3c5-21cd-3fbe-a6b4-33c79f0f31cb,SESCO,II.1.1,Mendoza,AR-M,annual,2022,gas oil combustion consumption by to the public,1973.2356,TJ,CH4,3.9,kg/TJ,7695.61884,kg -926af3c5-21cd-3fbe-a6b4-33c79f0f31cb,SESCO,II.1.1,Mendoza,AR-M,annual,2022,gas oil combustion consumption by to the public,1973.2356,TJ,N2O,3.9,kg/TJ,7695.61884,kg -93d9d662-ade6-367c-9f12-c583b603a38f,SESCO,II.1.1,Misiones,AR-N,annual,2022,gas oil combustion consumption by to the public,1463.54628,TJ,CO2,74100.0,kg/TJ,108448779.348,kg -ed723524-1b19-3e26-b587-0d753d39e243,SESCO,II.1.1,Misiones,AR-N,annual,2022,gas oil combustion consumption by to the public,1463.54628,TJ,CH4,3.9,kg/TJ,5707.830492,kg -ed723524-1b19-3e26-b587-0d753d39e243,SESCO,II.1.1,Misiones,AR-N,annual,2022,gas oil combustion consumption by to the public,1463.54628,TJ,N2O,3.9,kg/TJ,5707.830492,kg -bca70175-9782-398d-9e8d-37609694d517,SESCO,II.1.1,Neuquén,AR-Q,annual,2022,gas oil combustion consumption by to the public,756.20832,TJ,CO2,74100.0,kg/TJ,56035036.511999995,kg -7b49a9eb-d643-358e-b84a-fc99f62fae25,SESCO,II.1.1,Neuquén,AR-Q,annual,2022,gas oil combustion consumption by to the public,756.20832,TJ,CH4,3.9,kg/TJ,2949.2124479999998,kg -7b49a9eb-d643-358e-b84a-fc99f62fae25,SESCO,II.1.1,Neuquén,AR-Q,annual,2022,gas oil combustion consumption by to the public,756.20832,TJ,N2O,3.9,kg/TJ,2949.2124479999998,kg -53f36cee-8ab8-39e4-b5a8-ad9cea5756ea,SESCO,II.1.1,Rio Negro,AR-R,annual,2022,gas oil combustion consumption by to the public,350.14727999999997,TJ,CO2,74100.0,kg/TJ,25945913.448,kg -b9a2e037-2dac-36eb-86a7-a56475fc2683,SESCO,II.1.1,Rio Negro,AR-R,annual,2022,gas oil combustion consumption by to the public,350.14727999999997,TJ,CH4,3.9,kg/TJ,1365.5743919999998,kg -b9a2e037-2dac-36eb-86a7-a56475fc2683,SESCO,II.1.1,Rio Negro,AR-R,annual,2022,gas oil combustion consumption by to the public,350.14727999999997,TJ,N2O,3.9,kg/TJ,1365.5743919999998,kg -7eb551bf-080f-3b12-81af-ae7145fa9f16,SESCO,II.1.1,Salta,AR-A,annual,2022,gas oil combustion consumption by to the public,164.27376,TJ,CO2,74100.0,kg/TJ,12172685.616,kg -e00fa765-f7dd-3ea6-8241-575ad02a9e60,SESCO,II.1.1,Salta,AR-A,annual,2022,gas oil combustion consumption by to the public,164.27376,TJ,CH4,3.9,kg/TJ,640.6676640000001,kg -e00fa765-f7dd-3ea6-8241-575ad02a9e60,SESCO,II.1.1,Salta,AR-A,annual,2022,gas oil combustion consumption by to the public,164.27376,TJ,N2O,3.9,kg/TJ,640.6676640000001,kg -63ae8716-23b2-3aa2-af48-7fd74e1cd249,SESCO,II.1.1,San Juan,AR-J,annual,2022,gas oil combustion consumption by to the public,491.95439999999996,TJ,CO2,74100.0,kg/TJ,36453821.04,kg -0d05db2e-d9d7-39a0-8244-71f9a76959c3,SESCO,II.1.1,San Juan,AR-J,annual,2022,gas oil combustion consumption by to the public,491.95439999999996,TJ,CH4,3.9,kg/TJ,1918.62216,kg -0d05db2e-d9d7-39a0-8244-71f9a76959c3,SESCO,II.1.1,San Juan,AR-J,annual,2022,gas oil combustion consumption by to the public,491.95439999999996,TJ,N2O,3.9,kg/TJ,1918.62216,kg -a192aea8-6bfc-3545-861d-8848c0460f1a,SESCO,II.1.1,San Luis,AR-D,annual,2022,gas oil combustion consumption by to the public,450.38027999999997,TJ,CO2,74100.0,kg/TJ,33373178.748,kg -34454bd6-d06a-3f80-9271-8fe9821f948c,SESCO,II.1.1,San Luis,AR-D,annual,2022,gas oil combustion consumption by to the public,450.38027999999997,TJ,CH4,3.9,kg/TJ,1756.483092,kg -34454bd6-d06a-3f80-9271-8fe9821f948c,SESCO,II.1.1,San Luis,AR-D,annual,2022,gas oil combustion consumption by to the public,450.38027999999997,TJ,N2O,3.9,kg/TJ,1756.483092,kg -e775c677-8b69-3d66-9f90-d276877f0dcc,SESCO,II.1.1,Santa Fe,AR-S,annual,2022,gas oil combustion consumption by to the public,5994.2946,TJ,CO2,74100.0,kg/TJ,444177229.86,kg -cc2e42e7-495f-38d3-857c-9107ec3bab9d,SESCO,II.1.1,Santa Fe,AR-S,annual,2022,gas oil combustion consumption by to the public,5994.2946,TJ,CH4,3.9,kg/TJ,23377.74894,kg -cc2e42e7-495f-38d3-857c-9107ec3bab9d,SESCO,II.1.1,Santa Fe,AR-S,annual,2022,gas oil combustion consumption by to the public,5994.2946,TJ,N2O,3.9,kg/TJ,23377.74894,kg -3d67ddb3-21cc-310c-84a7-48cbf12563d6,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2022,gas oil combustion consumption by to the public,339.41964,TJ,CO2,74100.0,kg/TJ,25150995.324,kg -f2b55f46-5447-3660-a5cf-4fda20a9caa4,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2022,gas oil combustion consumption by to the public,339.41964,TJ,CH4,3.9,kg/TJ,1323.736596,kg -f2b55f46-5447-3660-a5cf-4fda20a9caa4,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2022,gas oil combustion consumption by to the public,339.41964,TJ,N2O,3.9,kg/TJ,1323.736596,kg -dacde9b5-9fb8-324d-877e-ee553a1944a6,SESCO,II.1.1,Tucuman,AR-T,annual,2022,gas oil combustion consumption by to the public,1306.20756,TJ,CO2,74100.0,kg/TJ,96789980.19600001,kg -a0808dcc-b302-3f26-a7e9-4abad2ea2070,SESCO,II.1.1,Tucuman,AR-T,annual,2022,gas oil combustion consumption by to the public,1306.20756,TJ,CH4,3.9,kg/TJ,5094.209484,kg -a0808dcc-b302-3f26-a7e9-4abad2ea2070,SESCO,II.1.1,Tucuman,AR-T,annual,2022,gas oil combustion consumption by to the public,1306.20756,TJ,N2O,3.9,kg/TJ,5094.209484,kg -322562f8-2714-39b4-9d2b-94f02f3e5255,SESCO,II.1.1,Buenos Aires,AR-B,annual,2022,gas oil combustion consumption by to the public,10235.28828,TJ,CO2,74100.0,kg/TJ,758434861.5480001,kg -a5531427-ba74-3703-8bef-f5eb7936e2b5,SESCO,II.1.1,Buenos Aires,AR-B,annual,2022,gas oil combustion consumption by to the public,10235.28828,TJ,CH4,3.9,kg/TJ,39917.624292,kg -a5531427-ba74-3703-8bef-f5eb7936e2b5,SESCO,II.1.1,Buenos Aires,AR-B,annual,2022,gas oil combustion consumption by to the public,10235.28828,TJ,N2O,3.9,kg/TJ,39917.624292,kg -02ffe6bb-99bb-3a63-8bc0-3662efdbbeee,SESCO,II.1.1,Capital Federal,AR-C,annual,2022,gas oil combustion consumption by to the public,1907.8584,TJ,CO2,74100.0,kg/TJ,141372307.44,kg -1e6c28da-942f-3ac1-9cd3-9f64908e262f,SESCO,II.1.1,Capital Federal,AR-C,annual,2022,gas oil combustion consumption by to the public,1907.8584,TJ,CH4,3.9,kg/TJ,7440.64776,kg -1e6c28da-942f-3ac1-9cd3-9f64908e262f,SESCO,II.1.1,Capital Federal,AR-C,annual,2022,gas oil combustion consumption by to the public,1907.8584,TJ,N2O,3.9,kg/TJ,7440.64776,kg -f743e3a2-daa0-3e67-a35c-d71769909f15,SESCO,II.1.1,Catamarca,AR-K,annual,2022,gas oil combustion consumption by to the public,50.568,TJ,CO2,74100.0,kg/TJ,3747088.8,kg -b7c52567-4371-3920-9a27-69fb560b077a,SESCO,II.1.1,Catamarca,AR-K,annual,2022,gas oil combustion consumption by to the public,50.568,TJ,CH4,3.9,kg/TJ,197.21519999999998,kg -b7c52567-4371-3920-9a27-69fb560b077a,SESCO,II.1.1,Catamarca,AR-K,annual,2022,gas oil combustion consumption by to the public,50.568,TJ,N2O,3.9,kg/TJ,197.21519999999998,kg -8176eeb8-4bed-36f4-bfcc-45b6c7610764,SESCO,II.1.1,Chaco,AR-H,annual,2022,gas oil combustion consumption by to the public,590.09244,TJ,CO2,74100.0,kg/TJ,43725849.804,kg -3dbab0b8-16a6-3c0e-aa55-a98b6026e5bb,SESCO,II.1.1,Chaco,AR-H,annual,2022,gas oil combustion consumption by to the public,590.09244,TJ,CH4,3.9,kg/TJ,2301.360516,kg -3dbab0b8-16a6-3c0e-aa55-a98b6026e5bb,SESCO,II.1.1,Chaco,AR-H,annual,2022,gas oil combustion consumption by to the public,590.09244,TJ,N2O,3.9,kg/TJ,2301.360516,kg -91730087-4049-31f7-a603-c82964ded6a9,SESCO,II.1.1,Corrientes,AR-W,annual,2022,gas oil combustion consumption by to the public,755.73876,TJ,CO2,74100.0,kg/TJ,56000242.116,kg -0bbaefd1-5735-3fec-ab2f-a3cf51b4b749,SESCO,II.1.1,Corrientes,AR-W,annual,2022,gas oil combustion consumption by to the public,755.73876,TJ,CH4,3.9,kg/TJ,2947.381164,kg -0bbaefd1-5735-3fec-ab2f-a3cf51b4b749,SESCO,II.1.1,Corrientes,AR-W,annual,2022,gas oil combustion consumption by to the public,755.73876,TJ,N2O,3.9,kg/TJ,2947.381164,kg -75f81b65-6af3-3bd0-ae2f-5ac1152d89ef,SESCO,II.1.1,Córdoba,AR-X,annual,2022,gas oil combustion consumption by to the public,3131.09832,TJ,CO2,74100.0,kg/TJ,232014385.512,kg -893a56f5-1c50-3660-b706-79c6c3de486b,SESCO,II.1.1,Córdoba,AR-X,annual,2022,gas oil combustion consumption by to the public,3131.09832,TJ,CH4,3.9,kg/TJ,12211.283448,kg -893a56f5-1c50-3660-b706-79c6c3de486b,SESCO,II.1.1,Córdoba,AR-X,annual,2022,gas oil combustion consumption by to the public,3131.09832,TJ,N2O,3.9,kg/TJ,12211.283448,kg -45db0c20-fcfe-3fb2-8783-3d8f18b6ab0b,SESCO,II.1.1,Entre Rios,AR-E,annual,2022,gas oil combustion consumption by to the public,990.08532,TJ,CO2,74100.0,kg/TJ,73365322.212,kg -af2af663-823d-351b-a1cb-dfa97e28ce13,SESCO,II.1.1,Entre Rios,AR-E,annual,2022,gas oil combustion consumption by to the public,990.08532,TJ,CH4,3.9,kg/TJ,3861.332748,kg -af2af663-823d-351b-a1cb-dfa97e28ce13,SESCO,II.1.1,Entre Rios,AR-E,annual,2022,gas oil combustion consumption by to the public,990.08532,TJ,N2O,3.9,kg/TJ,3861.332748,kg -10b4f4c8-7f28-3d43-bb19-2b5c3d1e25dc,SESCO,II.1.1,Formosa,AR-P,annual,2022,gas oil combustion consumption by to the public,208.88196,TJ,CO2,74100.0,kg/TJ,15478153.236,kg -679ce085-7ff7-3c1b-bde7-a6d0d1546f64,SESCO,II.1.1,Formosa,AR-P,annual,2022,gas oil combustion consumption by to the public,208.88196,TJ,CH4,3.9,kg/TJ,814.639644,kg -679ce085-7ff7-3c1b-bde7-a6d0d1546f64,SESCO,II.1.1,Formosa,AR-P,annual,2022,gas oil combustion consumption by to the public,208.88196,TJ,N2O,3.9,kg/TJ,814.639644,kg -831541b3-ac8a-3121-8b69-0c878e600fa1,SESCO,II.1.1,Jujuy,AR-Y,annual,2022,gas oil combustion consumption by to the public,232.21547999999999,TJ,CO2,74100.0,kg/TJ,17207167.068,kg -ac9c7711-9036-3122-9314-509689e4aa22,SESCO,II.1.1,Jujuy,AR-Y,annual,2022,gas oil combustion consumption by to the public,232.21547999999999,TJ,CH4,3.9,kg/TJ,905.640372,kg -ac9c7711-9036-3122-9314-509689e4aa22,SESCO,II.1.1,Jujuy,AR-Y,annual,2022,gas oil combustion consumption by to the public,232.21547999999999,TJ,N2O,3.9,kg/TJ,905.640372,kg -229978cd-0ad5-35ca-88c6-3ee96e05ba0c,SESCO,II.1.1,La Pampa,AR-L,annual,2022,gas oil combustion consumption by to the public,343.89852,TJ,CO2,74100.0,kg/TJ,25482880.332000002,kg -1e70c9ad-6361-3b2f-81a5-509df87b0495,SESCO,II.1.1,La Pampa,AR-L,annual,2022,gas oil combustion consumption by to the public,343.89852,TJ,CH4,3.9,kg/TJ,1341.204228,kg -1e70c9ad-6361-3b2f-81a5-509df87b0495,SESCO,II.1.1,La Pampa,AR-L,annual,2022,gas oil combustion consumption by to the public,343.89852,TJ,N2O,3.9,kg/TJ,1341.204228,kg -0d847dab-4cb4-3e2c-9af5-ad5fa613315d,SESCO,II.1.1,La Rioja,AR-F,annual,2022,gas oil combustion consumption by to the public,183.52572,TJ,CO2,74100.0,kg/TJ,13599255.852,kg -ba4d9b9a-cf39-32c5-bdd8-65b0a80a1b8e,SESCO,II.1.1,La Rioja,AR-F,annual,2022,gas oil combustion consumption by to the public,183.52572,TJ,CH4,3.9,kg/TJ,715.750308,kg -ba4d9b9a-cf39-32c5-bdd8-65b0a80a1b8e,SESCO,II.1.1,La Rioja,AR-F,annual,2022,gas oil combustion consumption by to the public,183.52572,TJ,N2O,3.9,kg/TJ,715.750308,kg -ed55026f-ca1b-356d-9d83-4680ce3a6e42,SESCO,II.1.1,Mendoza,AR-M,annual,2022,gas oil combustion consumption by to the public,1332.50292,TJ,CO2,74100.0,kg/TJ,98738466.372,kg -5d9a21da-edaf-3d94-b151-9f095f65d5f5,SESCO,II.1.1,Mendoza,AR-M,annual,2022,gas oil combustion consumption by to the public,1332.50292,TJ,CH4,3.9,kg/TJ,5196.761388,kg -5d9a21da-edaf-3d94-b151-9f095f65d5f5,SESCO,II.1.1,Mendoza,AR-M,annual,2022,gas oil combustion consumption by to the public,1332.50292,TJ,N2O,3.9,kg/TJ,5196.761388,kg -ce8e6ae8-a790-3565-ba3b-052c8366413c,SESCO,II.1.1,Misiones,AR-N,annual,2022,gas oil combustion consumption by to the public,661.1766,TJ,CO2,74100.0,kg/TJ,48993186.06,kg -1eaf9540-580d-3694-a78c-376125e29466,SESCO,II.1.1,Misiones,AR-N,annual,2022,gas oil combustion consumption by to the public,661.1766,TJ,CH4,3.9,kg/TJ,2578.58874,kg -1eaf9540-580d-3694-a78c-376125e29466,SESCO,II.1.1,Misiones,AR-N,annual,2022,gas oil combustion consumption by to the public,661.1766,TJ,N2O,3.9,kg/TJ,2578.58874,kg -d1ec9014-dc7b-30d7-a732-574af370d7e5,SESCO,II.1.1,Neuquén,AR-Q,annual,2022,gas oil combustion consumption by to the public,932.58228,TJ,CO2,74100.0,kg/TJ,69104346.948,kg -d39921b8-0b9e-3378-a0a1-f32be14d3bc6,SESCO,II.1.1,Neuquén,AR-Q,annual,2022,gas oil combustion consumption by to the public,932.58228,TJ,CH4,3.9,kg/TJ,3637.0708919999997,kg -d39921b8-0b9e-3378-a0a1-f32be14d3bc6,SESCO,II.1.1,Neuquén,AR-Q,annual,2022,gas oil combustion consumption by to the public,932.58228,TJ,N2O,3.9,kg/TJ,3637.0708919999997,kg -0bd0bb8d-9fd6-3f9b-bf51-9d725537c979,SESCO,II.1.1,Rio Negro,AR-R,annual,2022,gas oil combustion consumption by to the public,273.71736,TJ,CO2,74100.0,kg/TJ,20282456.376,kg -4dd3cf43-7262-388c-aa3b-fd42165ecc18,SESCO,II.1.1,Rio Negro,AR-R,annual,2022,gas oil combustion consumption by to the public,273.71736,TJ,CH4,3.9,kg/TJ,1067.4977039999999,kg -4dd3cf43-7262-388c-aa3b-fd42165ecc18,SESCO,II.1.1,Rio Negro,AR-R,annual,2022,gas oil combustion consumption by to the public,273.71736,TJ,N2O,3.9,kg/TJ,1067.4977039999999,kg -8f23757c-6b2f-39b7-aa3f-3392f05e981b,SESCO,II.1.1,Salta,AR-A,annual,2022,gas oil combustion consumption by to the public,235.06896,TJ,CO2,74100.0,kg/TJ,17418609.936,kg -c10ec8e3-e5a7-3015-b6af-4b063bbb8a53,SESCO,II.1.1,Salta,AR-A,annual,2022,gas oil combustion consumption by to the public,235.06896,TJ,CH4,3.9,kg/TJ,916.768944,kg -c10ec8e3-e5a7-3015-b6af-4b063bbb8a53,SESCO,II.1.1,Salta,AR-A,annual,2022,gas oil combustion consumption by to the public,235.06896,TJ,N2O,3.9,kg/TJ,916.768944,kg -1be0eade-2fbd-3249-837a-10cc9004d2e0,SESCO,II.1.1,San Juan,AR-J,annual,2022,gas oil combustion consumption by to the public,238.96992,TJ,CO2,74100.0,kg/TJ,17707671.072,kg -4317333d-beeb-35dc-ae61-43a20be540ea,SESCO,II.1.1,San Juan,AR-J,annual,2022,gas oil combustion consumption by to the public,238.96992,TJ,CH4,3.9,kg/TJ,931.9826879999999,kg -4317333d-beeb-35dc-ae61-43a20be540ea,SESCO,II.1.1,San Juan,AR-J,annual,2022,gas oil combustion consumption by to the public,238.96992,TJ,N2O,3.9,kg/TJ,931.9826879999999,kg -4fc2d817-8a12-39a5-b47a-81afaf10f855,SESCO,II.1.1,San Luis,AR-D,annual,2022,gas oil combustion consumption by to the public,231.31248,TJ,CO2,74100.0,kg/TJ,17140254.768,kg -7cb315e0-c65a-32a2-94fc-fa1a89f0ed3c,SESCO,II.1.1,San Luis,AR-D,annual,2022,gas oil combustion consumption by to the public,231.31248,TJ,CH4,3.9,kg/TJ,902.118672,kg -7cb315e0-c65a-32a2-94fc-fa1a89f0ed3c,SESCO,II.1.1,San Luis,AR-D,annual,2022,gas oil combustion consumption by to the public,231.31248,TJ,N2O,3.9,kg/TJ,902.118672,kg -e21db90c-d684-34dc-950d-0556666f1cf7,SESCO,II.1.1,Santa Fe,AR-S,annual,2022,gas oil combustion consumption by to the public,2536.92432,TJ,CO2,74100.0,kg/TJ,187986092.11200002,kg -2d465a9e-5101-3a0a-853c-18ec60bf9378,SESCO,II.1.1,Santa Fe,AR-S,annual,2022,gas oil combustion consumption by to the public,2536.92432,TJ,CH4,3.9,kg/TJ,9894.004848,kg -2d465a9e-5101-3a0a-853c-18ec60bf9378,SESCO,II.1.1,Santa Fe,AR-S,annual,2022,gas oil combustion consumption by to the public,2536.92432,TJ,N2O,3.9,kg/TJ,9894.004848,kg -a151d3eb-4119-3f6b-b51f-3da799e677a2,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2022,gas oil combustion consumption by to the public,318.68676,TJ,CO2,74100.0,kg/TJ,23614688.916,kg -77fe58b2-603c-3bc1-92d5-98901a016e57,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2022,gas oil combustion consumption by to the public,318.68676,TJ,CH4,3.9,kg/TJ,1242.878364,kg -77fe58b2-603c-3bc1-92d5-98901a016e57,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2022,gas oil combustion consumption by to the public,318.68676,TJ,N2O,3.9,kg/TJ,1242.878364,kg -58441940-ee81-3211-ade2-bca33b0fa2a2,SESCO,II.1.1,Tucuman,AR-T,annual,2022,gas oil combustion consumption by to the public,585.07176,TJ,CO2,74100.0,kg/TJ,43353817.416,kg -63826fbd-8f1c-3761-bd74-dc413d887e86,SESCO,II.1.1,Tucuman,AR-T,annual,2022,gas oil combustion consumption by to the public,585.07176,TJ,CH4,3.9,kg/TJ,2281.779864,kg -63826fbd-8f1c-3761-bd74-dc413d887e86,SESCO,II.1.1,Tucuman,AR-T,annual,2022,gas oil combustion consumption by to the public,585.07176,TJ,N2O,3.9,kg/TJ,2281.779864,kg -adff174b-4cc1-309c-b2c4-7640e60682ad,SESCO,II.1.1,Entre Rios,AR-E,annual,2022,jet kerosene combustion consumption by to the public,1.1637609999999998,TJ,CO2,71500.0,kg/TJ,83208.91149999999,kg -9ec9c630-ba4b-3339-b8c0-98038f7eeccd,SESCO,II.1.1,Entre Rios,AR-E,annual,2022,jet kerosene combustion consumption by to the public,1.1637609999999998,TJ,CH4,0.5,kg/TJ,0.5818804999999999,kg -6e204c51-f3b5-3bcb-b679-58a3e088ded8,SESCO,II.1.1,Entre Rios,AR-E,annual,2022,jet kerosene combustion consumption by to the public,1.1637609999999998,TJ,N2O,2.0,kg/TJ,2.3275219999999996,kg -968e565e-65d2-3611-8854-d0a2e0e393e2,SESCO,I.3.1,Buenos Aires,AR-B,annual,2022,gasoline combustion consumption by petrochemical industries,99.18769999999999,TJ,CO2,69300.0,kg/TJ,6873707.609999999,kg -7262d6ac-359d-369b-82e3-9ca0904630de,SESCO,I.3.1,Buenos Aires,AR-B,annual,2022,gasoline combustion consumption by petrochemical industries,99.18769999999999,TJ,CH4,33.0,kg/TJ,3273.1940999999997,kg -7b30afda-8735-3b9b-96e5-3a681297a008,SESCO,I.3.1,Buenos Aires,AR-B,annual,2022,gasoline combustion consumption by petrochemical industries,99.18769999999999,TJ,N2O,3.2,kg/TJ,317.40064,kg -5d39eb38-8f50-3b0f-a895-30f5a1e51c2a,SESCO,I.3.1,Capital Federal,AR-C,annual,2022,gasoline combustion consumption by petrochemical industries,81.6006,TJ,CO2,69300.0,kg/TJ,5654921.58,kg -611d665d-a786-3f84-bf1e-672ae95f96e9,SESCO,I.3.1,Capital Federal,AR-C,annual,2022,gasoline combustion consumption by petrochemical industries,81.6006,TJ,CH4,33.0,kg/TJ,2692.8198,kg -6c5871cf-33de-37fe-980f-35964b275e74,SESCO,I.3.1,Capital Federal,AR-C,annual,2022,gasoline combustion consumption by petrochemical industries,81.6006,TJ,N2O,3.2,kg/TJ,261.12192,kg -d9fc90ee-b08c-3886-b355-8e9f2dd4ebde,SESCO,I.3.1,Chaco,AR-H,annual,2022,gasoline combustion consumption by petrochemical industries,2.4808,TJ,CO2,69300.0,kg/TJ,171919.44,kg -3a10b783-5843-3304-aa20-6467699f78f8,SESCO,I.3.1,Chaco,AR-H,annual,2022,gasoline combustion consumption by petrochemical industries,2.4808,TJ,CH4,33.0,kg/TJ,81.8664,kg -fcc3565b-8b9a-3d30-b243-db2c27f9592d,SESCO,I.3.1,Chaco,AR-H,annual,2022,gasoline combustion consumption by petrochemical industries,2.4808,TJ,N2O,3.2,kg/TJ,7.93856,kg -0c64ff51-7c9f-37ff-b628-71483fd146c5,SESCO,I.3.1,Córdoba,AR-X,annual,2022,gasoline combustion consumption by petrochemical industries,151.9047,TJ,CO2,69300.0,kg/TJ,10526995.709999999,kg -14168427-901a-3f49-8bb2-ff327c303f1d,SESCO,I.3.1,Córdoba,AR-X,annual,2022,gasoline combustion consumption by petrochemical industries,151.9047,TJ,CH4,33.0,kg/TJ,5012.8551,kg -5d8ddf67-b4e3-3c3f-858e-8e1625996599,SESCO,I.3.1,Córdoba,AR-X,annual,2022,gasoline combustion consumption by petrochemical industries,151.9047,TJ,N2O,3.2,kg/TJ,486.09504,kg -b6e9eb04-5d1c-3985-b7ee-a2e9fa35cd09,SESCO,I.3.1,Entre Rios,AR-E,annual,2022,gasoline combustion consumption by petrochemical industries,87.49249999999999,TJ,CO2,69300.0,kg/TJ,6063230.249999999,kg -4167fe95-a4fd-3ee8-8bf5-d8743ca14b9b,SESCO,I.3.1,Entre Rios,AR-E,annual,2022,gasoline combustion consumption by petrochemical industries,87.49249999999999,TJ,CH4,33.0,kg/TJ,2887.2524999999996,kg -18ef40d6-13da-3376-86ee-69eefdd94ba0,SESCO,I.3.1,Entre Rios,AR-E,annual,2022,gasoline combustion consumption by petrochemical industries,87.49249999999999,TJ,N2O,3.2,kg/TJ,279.976,kg -0345c26d-99e0-3c27-a7c8-2557f4009d63,SESCO,I.3.1,Misiones,AR-N,annual,2022,gasoline combustion consumption by petrochemical industries,242.321,TJ,CO2,69300.0,kg/TJ,16792845.3,kg -bbdfce5f-a1ef-37c2-978c-69aff2485537,SESCO,I.3.1,Misiones,AR-N,annual,2022,gasoline combustion consumption by petrochemical industries,242.321,TJ,CH4,33.0,kg/TJ,7996.593,kg -0467b6ee-9305-3826-9917-15cf26a467cd,SESCO,I.3.1,Misiones,AR-N,annual,2022,gasoline combustion consumption by petrochemical industries,242.321,TJ,N2O,3.2,kg/TJ,775.4272000000001,kg -4fac91f9-2aaa-37d2-9717-0bff03efb414,SESCO,I.3.1,Neuquén,AR-Q,annual,2022,gasoline combustion consumption by petrochemical industries,31.4973,TJ,CO2,69300.0,kg/TJ,2182762.89,kg -01fd5ae0-8fd5-3294-82f3-ff0b2aceaf25,SESCO,I.3.1,Neuquén,AR-Q,annual,2022,gasoline combustion consumption by petrochemical industries,31.4973,TJ,CH4,33.0,kg/TJ,1039.4109,kg -9fe4b4cd-682b-3194-a502-05a2e1688632,SESCO,I.3.1,Neuquén,AR-Q,annual,2022,gasoline combustion consumption by petrochemical industries,31.4973,TJ,N2O,3.2,kg/TJ,100.79136,kg -a581eca8-a732-3948-8c2f-701d5ebcadda,SESCO,I.3.1,Santa Fe,AR-S,annual,2022,gasoline combustion consumption by petrochemical industries,113.4523,TJ,CO2,69300.0,kg/TJ,7862244.39,kg -fe9f65f1-34b6-3773-848d-ffba9810a906,SESCO,I.3.1,Santa Fe,AR-S,annual,2022,gasoline combustion consumption by petrochemical industries,113.4523,TJ,CH4,33.0,kg/TJ,3743.9258999999997,kg -8fa15c24-b468-318d-802a-39bbbb15be82,SESCO,I.3.1,Santa Fe,AR-S,annual,2022,gasoline combustion consumption by petrochemical industries,113.4523,TJ,N2O,3.2,kg/TJ,363.04736,kg -3623d107-60bc-3e80-be2b-37372bd9d05a,SESCO,I.3.1,Buenos Aires,AR-B,annual,2022,gas oil combustion consumption by petrochemical industries,473.09976,TJ,CO2,74100.0,kg/TJ,35056692.216,kg -1a0d188a-c6cb-3ab1-b938-116c3a7358b1,SESCO,I.3.1,Buenos Aires,AR-B,annual,2022,gas oil combustion consumption by petrochemical industries,473.09976,TJ,CH4,3.9,kg/TJ,1845.089064,kg -1a0d188a-c6cb-3ab1-b938-116c3a7358b1,SESCO,I.3.1,Buenos Aires,AR-B,annual,2022,gas oil combustion consumption by petrochemical industries,473.09976,TJ,N2O,3.9,kg/TJ,1845.089064,kg -902f43ee-f480-367b-9b5f-0c85fff64dcb,SESCO,I.3.1,Capital Federal,AR-C,annual,2022,gas oil combustion consumption by petrochemical industries,17.08476,TJ,CO2,74100.0,kg/TJ,1265980.716,kg -1e99feaa-778f-3dae-863f-57970a0a4bc6,SESCO,I.3.1,Capital Federal,AR-C,annual,2022,gas oil combustion consumption by petrochemical industries,17.08476,TJ,CH4,3.9,kg/TJ,66.63056399999999,kg -1e99feaa-778f-3dae-863f-57970a0a4bc6,SESCO,I.3.1,Capital Federal,AR-C,annual,2022,gas oil combustion consumption by petrochemical industries,17.08476,TJ,N2O,3.9,kg/TJ,66.63056399999999,kg -99a53f94-17cc-3e33-a4ff-fb5dabd038a9,SESCO,I.3.1,Córdoba,AR-X,annual,2022,gas oil combustion consumption by petrochemical industries,57.32244,TJ,CO2,74100.0,kg/TJ,4247592.8040000005,kg -363f845d-b576-339b-a277-8bfdae2ae676,SESCO,I.3.1,Córdoba,AR-X,annual,2022,gas oil combustion consumption by petrochemical industries,57.32244,TJ,CH4,3.9,kg/TJ,223.557516,kg -363f845d-b576-339b-a277-8bfdae2ae676,SESCO,I.3.1,Córdoba,AR-X,annual,2022,gas oil combustion consumption by petrochemical industries,57.32244,TJ,N2O,3.9,kg/TJ,223.557516,kg -08fc1251-0955-302f-95f3-643aa207cfaa,SESCO,I.3.1,Entre Rios,AR-E,annual,2022,gas oil combustion consumption by petrochemical industries,25.71744,TJ,CO2,74100.0,kg/TJ,1905662.304,kg -143153ae-9dc7-3ef9-bc74-2ab78764ed2f,SESCO,I.3.1,Entre Rios,AR-E,annual,2022,gas oil combustion consumption by petrochemical industries,25.71744,TJ,CH4,3.9,kg/TJ,100.298016,kg -143153ae-9dc7-3ef9-bc74-2ab78764ed2f,SESCO,I.3.1,Entre Rios,AR-E,annual,2022,gas oil combustion consumption by petrochemical industries,25.71744,TJ,N2O,3.9,kg/TJ,100.298016,kg -6985562a-c5d4-31fa-bb69-20c51f6c61a3,SESCO,I.3.1,Mendoza,AR-M,annual,2022,gas oil combustion consumption by petrochemical industries,24.850559999999998,TJ,CO2,74100.0,kg/TJ,1841426.4959999998,kg -444a4271-797a-399f-9df4-a8520df69241,SESCO,I.3.1,Mendoza,AR-M,annual,2022,gas oil combustion consumption by petrochemical industries,24.850559999999998,TJ,CH4,3.9,kg/TJ,96.91718399999999,kg -444a4271-797a-399f-9df4-a8520df69241,SESCO,I.3.1,Mendoza,AR-M,annual,2022,gas oil combustion consumption by petrochemical industries,24.850559999999998,TJ,N2O,3.9,kg/TJ,96.91718399999999,kg -4fc92e43-b550-3511-91bf-e3bf55b3e811,SESCO,I.3.1,Misiones,AR-N,annual,2022,gas oil combustion consumption by petrochemical industries,20.51616,TJ,CO2,74100.0,kg/TJ,1520247.456,kg -28309538-5693-3b25-8bac-2dcfc0aca449,SESCO,I.3.1,Misiones,AR-N,annual,2022,gas oil combustion consumption by petrochemical industries,20.51616,TJ,CH4,3.9,kg/TJ,80.013024,kg -28309538-5693-3b25-8bac-2dcfc0aca449,SESCO,I.3.1,Misiones,AR-N,annual,2022,gas oil combustion consumption by petrochemical industries,20.51616,TJ,N2O,3.9,kg/TJ,80.013024,kg -3ee7cd39-85a2-32b4-91d7-57612fb1007c,SESCO,I.3.1,Neuquén,AR-Q,annual,2022,gas oil combustion consumption by petrochemical industries,384.64188,TJ,CO2,74100.0,kg/TJ,28501963.308000002,kg -40c86680-8ab7-3e28-a052-67a48a38b9e5,SESCO,I.3.1,Neuquén,AR-Q,annual,2022,gas oil combustion consumption by petrochemical industries,384.64188,TJ,CH4,3.9,kg/TJ,1500.103332,kg -40c86680-8ab7-3e28-a052-67a48a38b9e5,SESCO,I.3.1,Neuquén,AR-Q,annual,2022,gas oil combustion consumption by petrochemical industries,384.64188,TJ,N2O,3.9,kg/TJ,1500.103332,kg -f893ae21-d929-31c0-948f-568b3080dc04,SESCO,I.3.1,Salta,AR-A,annual,2022,gas oil combustion consumption by petrochemical industries,137.58108,TJ,CO2,74100.0,kg/TJ,10194758.027999999,kg -d8184118-b9a5-3a5f-bacd-3774aa1c097f,SESCO,I.3.1,Salta,AR-A,annual,2022,gas oil combustion consumption by petrochemical industries,137.58108,TJ,CH4,3.9,kg/TJ,536.566212,kg -d8184118-b9a5-3a5f-bacd-3774aa1c097f,SESCO,I.3.1,Salta,AR-A,annual,2022,gas oil combustion consumption by petrochemical industries,137.58108,TJ,N2O,3.9,kg/TJ,536.566212,kg -b75ae798-d28a-32f1-aef1-34934f1ff883,SESCO,I.3.1,San Juan,AR-J,annual,2022,gas oil combustion consumption by petrochemical industries,53.20476,TJ,CO2,74100.0,kg/TJ,3942472.716,kg -9098d3b8-b030-3c38-ba55-ee1bcf040417,SESCO,I.3.1,San Juan,AR-J,annual,2022,gas oil combustion consumption by petrochemical industries,53.20476,TJ,CH4,3.9,kg/TJ,207.498564,kg -9098d3b8-b030-3c38-ba55-ee1bcf040417,SESCO,I.3.1,San Juan,AR-J,annual,2022,gas oil combustion consumption by petrochemical industries,53.20476,TJ,N2O,3.9,kg/TJ,207.498564,kg -63d92394-7516-339e-83ad-feea07671e0a,SESCO,I.3.1,Santa Fe,AR-S,annual,2022,gas oil combustion consumption by petrochemical industries,97.66848,TJ,CO2,74100.0,kg/TJ,7237234.368,kg -63320433-8088-3bc4-bf14-639fdb5a907f,SESCO,I.3.1,Santa Fe,AR-S,annual,2022,gas oil combustion consumption by petrochemical industries,97.66848,TJ,CH4,3.9,kg/TJ,380.907072,kg -63320433-8088-3bc4-bf14-639fdb5a907f,SESCO,I.3.1,Santa Fe,AR-S,annual,2022,gas oil combustion consumption by petrochemical industries,97.66848,TJ,N2O,3.9,kg/TJ,380.907072,kg -caf0251f-841a-3fbd-96b0-576b71d1ce24,SESCO,I.3.1,Tucuman,AR-T,annual,2022,gas oil combustion consumption by petrochemical industries,107.2764,TJ,CO2,74100.0,kg/TJ,7949181.239999999,kg -d172dd11-d4ff-3468-b255-e7e728963225,SESCO,I.3.1,Tucuman,AR-T,annual,2022,gas oil combustion consumption by petrochemical industries,107.2764,TJ,CH4,3.9,kg/TJ,418.37796,kg -d172dd11-d4ff-3468-b255-e7e728963225,SESCO,I.3.1,Tucuman,AR-T,annual,2022,gas oil combustion consumption by petrochemical industries,107.2764,TJ,N2O,3.9,kg/TJ,418.37796,kg -4300c65f-006e-311c-8485-43f8830ee634,SESCO,I.3.1,Buenos Aires,AR-B,annual,2022,gas oil combustion consumption by petrochemical industries,51.86832,TJ,CO2,74100.0,kg/TJ,3843442.5119999996,kg -ef3f4cb3-a05c-33a9-80e8-65a718e2abc8,SESCO,I.3.1,Buenos Aires,AR-B,annual,2022,gas oil combustion consumption by petrochemical industries,51.86832,TJ,CH4,3.9,kg/TJ,202.28644799999998,kg -ef3f4cb3-a05c-33a9-80e8-65a718e2abc8,SESCO,I.3.1,Buenos Aires,AR-B,annual,2022,gas oil combustion consumption by petrochemical industries,51.86832,TJ,N2O,3.9,kg/TJ,202.28644799999998,kg -65e40cee-60f2-3e9f-92fa-cd723c763e61,SESCO,I.3.1,Capital Federal,AR-C,annual,2022,gas oil combustion consumption by petrochemical industries,27.993,TJ,CO2,74100.0,kg/TJ,2074281.2999999998,kg -baa728d0-6643-32f3-aa54-1a6995b22d24,SESCO,I.3.1,Capital Federal,AR-C,annual,2022,gas oil combustion consumption by petrochemical industries,27.993,TJ,CH4,3.9,kg/TJ,109.17269999999999,kg -baa728d0-6643-32f3-aa54-1a6995b22d24,SESCO,I.3.1,Capital Federal,AR-C,annual,2022,gas oil combustion consumption by petrochemical industries,27.993,TJ,N2O,3.9,kg/TJ,109.17269999999999,kg -970d3eae-0f58-3dcf-89e1-5ece150b55a1,SESCO,I.3.1,Córdoba,AR-X,annual,2022,gas oil combustion consumption by petrochemical industries,1.30032,TJ,CO2,74100.0,kg/TJ,96353.712,kg -38272e97-9968-3db0-8d36-ce6f1899a43a,SESCO,I.3.1,Córdoba,AR-X,annual,2022,gas oil combustion consumption by petrochemical industries,1.30032,TJ,CH4,3.9,kg/TJ,5.071248,kg -38272e97-9968-3db0-8d36-ce6f1899a43a,SESCO,I.3.1,Córdoba,AR-X,annual,2022,gas oil combustion consumption by petrochemical industries,1.30032,TJ,N2O,3.9,kg/TJ,5.071248,kg -3a55a036-ef63-3cb0-a7b2-64e3c1ec9845,SESCO,I.3.1,Entre Rios,AR-E,annual,2022,gas oil combustion consumption by petrochemical industries,7.51296,TJ,CO2,74100.0,kg/TJ,556710.336,kg -93871a48-e53b-39f0-8326-82a80c53d552,SESCO,I.3.1,Entre Rios,AR-E,annual,2022,gas oil combustion consumption by petrochemical industries,7.51296,TJ,CH4,3.9,kg/TJ,29.300544,kg -93871a48-e53b-39f0-8326-82a80c53d552,SESCO,I.3.1,Entre Rios,AR-E,annual,2022,gas oil combustion consumption by petrochemical industries,7.51296,TJ,N2O,3.9,kg/TJ,29.300544,kg -b1112592-01c6-34a0-bd93-f4400724d5fb,SESCO,I.3.1,Jujuy,AR-Y,annual,2022,gas oil combustion consumption by petrochemical industries,1.30032,TJ,CO2,74100.0,kg/TJ,96353.712,kg -094aa822-3eda-3a7f-bfdf-33a424b9b5fe,SESCO,I.3.1,Jujuy,AR-Y,annual,2022,gas oil combustion consumption by petrochemical industries,1.30032,TJ,CH4,3.9,kg/TJ,5.071248,kg -094aa822-3eda-3a7f-bfdf-33a424b9b5fe,SESCO,I.3.1,Jujuy,AR-Y,annual,2022,gas oil combustion consumption by petrochemical industries,1.30032,TJ,N2O,3.9,kg/TJ,5.071248,kg -1b3a0015-d0cd-3d7a-8ee2-5c507a786d2b,SESCO,I.3.1,Neuquén,AR-Q,annual,2022,gas oil combustion consumption by petrochemical industries,307.99523999999997,TJ,CO2,74100.0,kg/TJ,22822447.283999998,kg -c0969c4b-6074-3457-bc35-3617306be9cd,SESCO,I.3.1,Neuquén,AR-Q,annual,2022,gas oil combustion consumption by petrochemical industries,307.99523999999997,TJ,CH4,3.9,kg/TJ,1201.1814359999998,kg -c0969c4b-6074-3457-bc35-3617306be9cd,SESCO,I.3.1,Neuquén,AR-Q,annual,2022,gas oil combustion consumption by petrochemical industries,307.99523999999997,TJ,N2O,3.9,kg/TJ,1201.1814359999998,kg -3b86829d-2a19-3b41-ab2f-719d82e294c6,SESCO,I.3.1,Salta,AR-A,annual,2022,gas oil combustion consumption by petrochemical industries,5.2374,TJ,CO2,74100.0,kg/TJ,388091.34,kg -a35184b0-3ed7-327d-982a-07fa42e52d1b,SESCO,I.3.1,Salta,AR-A,annual,2022,gas oil combustion consumption by petrochemical industries,5.2374,TJ,CH4,3.9,kg/TJ,20.42586,kg -a35184b0-3ed7-327d-982a-07fa42e52d1b,SESCO,I.3.1,Salta,AR-A,annual,2022,gas oil combustion consumption by petrochemical industries,5.2374,TJ,N2O,3.9,kg/TJ,20.42586,kg -74ea1a11-1c62-3361-bceb-f8d1681b76b3,SESCO,I.3.1,Santa Fe,AR-S,annual,2022,gas oil combustion consumption by petrochemical industries,8.6688,TJ,CO2,74100.0,kg/TJ,642358.08,kg -af9e4532-70b2-34d9-97a2-a722435f059a,SESCO,I.3.1,Santa Fe,AR-S,annual,2022,gas oil combustion consumption by petrochemical industries,8.6688,TJ,CH4,3.9,kg/TJ,33.808319999999995,kg -af9e4532-70b2-34d9-97a2-a722435f059a,SESCO,I.3.1,Santa Fe,AR-S,annual,2022,gas oil combustion consumption by petrochemical industries,8.6688,TJ,N2O,3.9,kg/TJ,33.808319999999995,kg -5bfbf835-dd80-3a1f-b180-1aed03cc6f25,SESCO,I.3.1,Tucuman,AR-T,annual,2022,gas oil combustion consumption by petrochemical industries,11.1972,TJ,CO2,74100.0,kg/TJ,829712.52,kg -97fe72b9-affb-360c-b324-80ccfda8859d,SESCO,I.3.1,Tucuman,AR-T,annual,2022,gas oil combustion consumption by petrochemical industries,11.1972,TJ,CH4,3.9,kg/TJ,43.66908,kg -97fe72b9-affb-360c-b324-80ccfda8859d,SESCO,I.3.1,Tucuman,AR-T,annual,2022,gas oil combustion consumption by petrochemical industries,11.1972,TJ,N2O,3.9,kg/TJ,43.66908,kg -d0f8151d-f2ab-3190-9d6c-3aebc19ffaf2,SESCO,I.3.1,Santa Fe,AR-S,annual,2022,jet kerosene combustion consumption by petrochemical industries,11.260173999999997,TJ,CO2,71500.0,kg/TJ,805102.4409999999,kg -ccafed13-83bc-3d42-80d5-0efaee68ecec,SESCO,I.3.1,Santa Fe,AR-S,annual,2022,jet kerosene combustion consumption by petrochemical industries,11.260173999999997,TJ,CH4,0.5,kg/TJ,5.630086999999999,kg -45b3d287-2745-3ae1-96d2-26cd33284f99,SESCO,I.3.1,Santa Fe,AR-S,annual,2022,jet kerosene combustion consumption by petrochemical industries,11.260173999999997,TJ,N2O,2.0,kg/TJ,22.520347999999995,kg -85778cf4-2058-3b70-a064-4ec21400eec7,SESCO,II.2.1,Buenos Aires,AR-B,annual,2022,gas oil combustion consumption by railway transport,229.57872,TJ,CO2,74100.0,kg/TJ,17011783.152,kg -46d18ffb-f580-3f57-a0c2-4439e94350f3,SESCO,II.2.1,Buenos Aires,AR-B,annual,2022,gas oil combustion consumption by railway transport,229.57872,TJ,CH4,3.9,kg/TJ,895.357008,kg -46d18ffb-f580-3f57-a0c2-4439e94350f3,SESCO,II.2.1,Buenos Aires,AR-B,annual,2022,gas oil combustion consumption by railway transport,229.57872,TJ,N2O,3.9,kg/TJ,895.357008,kg -4cabd140-8769-3857-ab01-bed3cb7a7a73,SESCO,II.1.1,Buenos Aires,AR-B,annual,2022,gasoline combustion consumption by freight transport,6.9994,TJ,CO2,69300.0,kg/TJ,485058.42,kg -4e907c92-c700-3a28-8cc9-66d06467f193,SESCO,II.1.1,Buenos Aires,AR-B,annual,2022,gasoline combustion consumption by freight transport,6.9994,TJ,CH4,33.0,kg/TJ,230.9802,kg -6f4102f9-9ad6-3303-8b82-c59276b99e26,SESCO,II.1.1,Buenos Aires,AR-B,annual,2022,gasoline combustion consumption by freight transport,6.9994,TJ,N2O,3.2,kg/TJ,22.39808,kg -96cee1ed-8f88-3b5f-88c3-c0238a95bda9,SESCO,II.1.1,Santa Fe,AR-S,annual,2022,gasoline combustion consumption by freight transport,3.4554,TJ,CO2,69300.0,kg/TJ,239459.22,kg -b5c10ae2-7963-34a3-9506-3f3b00d1a49e,SESCO,II.1.1,Santa Fe,AR-S,annual,2022,gasoline combustion consumption by freight transport,3.4554,TJ,CH4,33.0,kg/TJ,114.0282,kg -9a564f90-bc5c-3273-ba47-c1c5808b7571,SESCO,II.1.1,Santa Fe,AR-S,annual,2022,gasoline combustion consumption by freight transport,3.4554,TJ,N2O,3.2,kg/TJ,11.05728,kg -143ee41e-5cd2-34f3-a3d8-2285d393125a,SESCO,II.1.1,Buenos Aires,AR-B,annual,2022,gas oil combustion consumption by freight transport,7.29624,TJ,CO2,74100.0,kg/TJ,540651.384,kg -885dd945-f531-3aad-ad7d-9fa59c5f5248,SESCO,II.1.1,Buenos Aires,AR-B,annual,2022,gas oil combustion consumption by freight transport,7.29624,TJ,CH4,3.9,kg/TJ,28.455336,kg -885dd945-f531-3aad-ad7d-9fa59c5f5248,SESCO,II.1.1,Buenos Aires,AR-B,annual,2022,gas oil combustion consumption by freight transport,7.29624,TJ,N2O,3.9,kg/TJ,28.455336,kg -06a3a964-7197-348b-a239-6acc25a2e8cf,SESCO,II.1.1,Santa Fe,AR-S,annual,2022,gas oil combustion consumption by freight transport,12.20856,TJ,CO2,74100.0,kg/TJ,904654.296,kg -b45625fb-93f0-3f4b-bf81-92eec59df1ca,SESCO,II.1.1,Santa Fe,AR-S,annual,2022,gas oil combustion consumption by freight transport,12.20856,TJ,CH4,3.9,kg/TJ,47.613384,kg -b45625fb-93f0-3f4b-bf81-92eec59df1ca,SESCO,II.1.1,Santa Fe,AR-S,annual,2022,gas oil combustion consumption by freight transport,12.20856,TJ,N2O,3.9,kg/TJ,47.613384,kg -d8aa4d37-6b83-3d56-9f04-cefce3fd0a55,SESCO,II.1.1,Buenos Aires,AR-B,annual,2022,gas oil combustion consumption by freight transport,17.48208,TJ,CO2,74100.0,kg/TJ,1295422.128,kg -0b702992-01ac-345e-8936-4d8fda16a702,SESCO,II.1.1,Buenos Aires,AR-B,annual,2022,gas oil combustion consumption by freight transport,17.48208,TJ,CH4,3.9,kg/TJ,68.180112,kg -0b702992-01ac-345e-8936-4d8fda16a702,SESCO,II.1.1,Buenos Aires,AR-B,annual,2022,gas oil combustion consumption by freight transport,17.48208,TJ,N2O,3.9,kg/TJ,68.180112,kg -a78454e6-0b11-39dc-8ee1-e44903b54806,SESCO,II.1.1,Santa Fe,AR-S,annual,2022,gas oil combustion consumption by freight transport,11.0166,TJ,CO2,74100.0,kg/TJ,816330.06,kg -cca0a93c-7d0f-3110-b337-98b91486e3f4,SESCO,II.1.1,Santa Fe,AR-S,annual,2022,gas oil combustion consumption by freight transport,11.0166,TJ,CH4,3.9,kg/TJ,42.96474,kg -cca0a93c-7d0f-3110-b337-98b91486e3f4,SESCO,II.1.1,Santa Fe,AR-S,annual,2022,gas oil combustion consumption by freight transport,11.0166,TJ,N2O,3.9,kg/TJ,42.96474,kg -4f2b9ae5-9f98-34ab-80c1-15b8489af00e,SESCO,II.1.1,Salta,AR-A,annual,2022,gasoline combustion consumption by public passenger transport,1.1518,TJ,CO2,69300.0,kg/TJ,79819.73999999999,kg -3b83d5ec-e13f-30e4-9a76-03401707c40c,SESCO,II.1.1,Salta,AR-A,annual,2022,gasoline combustion consumption by public passenger transport,1.1518,TJ,CH4,33.0,kg/TJ,38.0094,kg -35d9badf-6ec7-3da1-889a-e99d6e4da266,SESCO,II.1.1,Salta,AR-A,annual,2022,gasoline combustion consumption by public passenger transport,1.1518,TJ,N2O,3.2,kg/TJ,3.68576,kg -c8a04da5-dcbf-3cad-b702-c92265e84277,SESCO,II.1.1,Buenos Aires,AR-B,annual,2022,gas oil combustion consumption by public passenger transport,2741.61636,TJ,CO2,74100.0,kg/TJ,203153772.276,kg -5d03632b-865d-3f42-8bb7-7c805d025aae,SESCO,II.1.1,Buenos Aires,AR-B,annual,2022,gas oil combustion consumption by public passenger transport,2741.61636,TJ,CH4,3.9,kg/TJ,10692.303804,kg -5d03632b-865d-3f42-8bb7-7c805d025aae,SESCO,II.1.1,Buenos Aires,AR-B,annual,2022,gas oil combustion consumption by public passenger transport,2741.61636,TJ,N2O,3.9,kg/TJ,10692.303804,kg -497023be-276e-3df3-8571-a85bba57f539,SESCO,II.1.1,Capital Federal,AR-C,annual,2022,gas oil combustion consumption by public passenger transport,137.256,TJ,CO2,74100.0,kg/TJ,10170669.6,kg -3e9ccf6c-3faf-3bff-ac53-023f00ac7d37,SESCO,II.1.1,Capital Federal,AR-C,annual,2022,gas oil combustion consumption by public passenger transport,137.256,TJ,CH4,3.9,kg/TJ,535.2984,kg -3e9ccf6c-3faf-3bff-ac53-023f00ac7d37,SESCO,II.1.1,Capital Federal,AR-C,annual,2022,gas oil combustion consumption by public passenger transport,137.256,TJ,N2O,3.9,kg/TJ,535.2984,kg -e7af1dcf-ed91-3a77-a017-6ab8af74a426,SESCO,II.1.1,Corrientes,AR-W,annual,2022,gas oil combustion consumption by public passenger transport,0.18059999999999998,TJ,CO2,74100.0,kg/TJ,13382.46,kg -fc930f5e-3d0d-32fd-9b2b-4e1794e28e4b,SESCO,II.1.1,Corrientes,AR-W,annual,2022,gas oil combustion consumption by public passenger transport,0.18059999999999998,TJ,CH4,3.9,kg/TJ,0.70434,kg -fc930f5e-3d0d-32fd-9b2b-4e1794e28e4b,SESCO,II.1.1,Corrientes,AR-W,annual,2022,gas oil combustion consumption by public passenger transport,0.18059999999999998,TJ,N2O,3.9,kg/TJ,0.70434,kg -7f08e0fb-acf2-307b-9b9f-fe9e2698836e,SESCO,II.1.1,Córdoba,AR-X,annual,2022,gas oil combustion consumption by public passenger transport,3.1063199999999997,TJ,CO2,74100.0,kg/TJ,230178.31199999998,kg -211a47ed-a32f-3942-831b-099ee1817cec,SESCO,II.1.1,Córdoba,AR-X,annual,2022,gas oil combustion consumption by public passenger transport,3.1063199999999997,TJ,CH4,3.9,kg/TJ,12.114647999999999,kg -211a47ed-a32f-3942-831b-099ee1817cec,SESCO,II.1.1,Córdoba,AR-X,annual,2022,gas oil combustion consumption by public passenger transport,3.1063199999999997,TJ,N2O,3.9,kg/TJ,12.114647999999999,kg -7ef8c942-e984-3e57-8481-a0b992f0d7c2,SESCO,II.1.1,Buenos Aires,AR-B,annual,2022,gas oil combustion consumption by public passenger transport,1707.28404,TJ,CO2,74100.0,kg/TJ,126509747.36400001,kg -b8699d52-50de-3c74-9079-a7363f1dabf4,SESCO,II.1.1,Buenos Aires,AR-B,annual,2022,gas oil combustion consumption by public passenger transport,1707.28404,TJ,CH4,3.9,kg/TJ,6658.407756,kg -b8699d52-50de-3c74-9079-a7363f1dabf4,SESCO,II.1.1,Buenos Aires,AR-B,annual,2022,gas oil combustion consumption by public passenger transport,1707.28404,TJ,N2O,3.9,kg/TJ,6658.407756,kg -64726197-1aab-317e-a854-1d7985029fea,SESCO,II.1.1,Capital Federal,AR-C,annual,2022,gas oil combustion consumption by public passenger transport,68.88083999999999,TJ,CO2,74100.0,kg/TJ,5104070.243999999,kg -956514f1-cdaa-3157-b8b8-087e8b6f93f4,SESCO,II.1.1,Capital Federal,AR-C,annual,2022,gas oil combustion consumption by public passenger transport,68.88083999999999,TJ,CH4,3.9,kg/TJ,268.635276,kg -956514f1-cdaa-3157-b8b8-087e8b6f93f4,SESCO,II.1.1,Capital Federal,AR-C,annual,2022,gas oil combustion consumption by public passenger transport,68.88083999999999,TJ,N2O,3.9,kg/TJ,268.635276,kg -a74aedfc-c437-3a9f-91cb-d6884b567b0c,SESCO,II.1.1,Corrientes,AR-W,annual,2022,gas oil combustion consumption by public passenger transport,67.07484,TJ,CO2,74100.0,kg/TJ,4970245.643999999,kg -66c86eed-8407-3ba1-b32f-0e0dfeb8a7bb,SESCO,II.1.1,Corrientes,AR-W,annual,2022,gas oil combustion consumption by public passenger transport,67.07484,TJ,CH4,3.9,kg/TJ,261.59187599999996,kg -66c86eed-8407-3ba1-b32f-0e0dfeb8a7bb,SESCO,II.1.1,Corrientes,AR-W,annual,2022,gas oil combustion consumption by public passenger transport,67.07484,TJ,N2O,3.9,kg/TJ,261.59187599999996,kg -e6db708c-667a-311f-98fc-40628de0b97a,SESCO,II.1.1,Córdoba,AR-X,annual,2022,gas oil combustion consumption by public passenger transport,8.88552,TJ,CO2,74100.0,kg/TJ,658417.032,kg -072defc3-8ec4-3594-8d34-c0d9a1746e76,SESCO,II.1.1,Córdoba,AR-X,annual,2022,gas oil combustion consumption by public passenger transport,8.88552,TJ,CH4,3.9,kg/TJ,34.653527999999994,kg -072defc3-8ec4-3594-8d34-c0d9a1746e76,SESCO,II.1.1,Córdoba,AR-X,annual,2022,gas oil combustion consumption by public passenger transport,8.88552,TJ,N2O,3.9,kg/TJ,34.653527999999994,kg -0c31dd2a-9131-3138-8dfd-d12c51d5be3c,SESCO,II.5.1,Buenos Aires,AR-B,annual,2022,gas oil combustion consumption by agriculture machines,3515.29704372,TJ,CO2,74100.0,kg/TJ,260483510.93965203,kg -9c2e40fd-a3c2-3455-ae3a-b0ece5095aa5,SESCO,II.5.1,Buenos Aires,AR-B,annual,2022,gas oil combustion consumption by agriculture machines,3515.29704372,TJ,CH4,3.9,kg/TJ,13709.658470508,kg -9c2e40fd-a3c2-3455-ae3a-b0ece5095aa5,SESCO,II.5.1,Buenos Aires,AR-B,annual,2022,gas oil combustion consumption by agriculture machines,3515.29704372,TJ,N2O,3.9,kg/TJ,13709.658470508,kg -8251bf15-122d-3785-a64d-7bb4ffdb2426,SESCO,II.5.1,Capital Federal,AR-C,annual,2022,gas oil combustion consumption by agriculture machines,150.57499716,TJ,CO2,74100.0,kg/TJ,11157607.289556,kg -93ad8aad-b554-3290-81a8-3023a5dc8ce9,SESCO,II.5.1,Capital Federal,AR-C,annual,2022,gas oil combustion consumption by agriculture machines,150.57499716,TJ,CH4,3.9,kg/TJ,587.242488924,kg -93ad8aad-b554-3290-81a8-3023a5dc8ce9,SESCO,II.5.1,Capital Federal,AR-C,annual,2022,gas oil combustion consumption by agriculture machines,150.57499716,TJ,N2O,3.9,kg/TJ,587.242488924,kg -8a3cca77-bba3-3e14-b2ba-59353f313fc5,SESCO,II.5.1,Córdoba,AR-X,annual,2022,gas oil combustion consumption by agriculture machines,1656.6747548399999,TJ,CO2,74100.0,kg/TJ,122759599.33364399,kg -4968530c-5e91-3f7e-b2ef-ec09a25e5868,SESCO,II.5.1,Córdoba,AR-X,annual,2022,gas oil combustion consumption by agriculture machines,1656.6747548399999,TJ,CH4,3.9,kg/TJ,6461.031543875999,kg -4968530c-5e91-3f7e-b2ef-ec09a25e5868,SESCO,II.5.1,Córdoba,AR-X,annual,2022,gas oil combustion consumption by agriculture machines,1656.6747548399999,TJ,N2O,3.9,kg/TJ,6461.031543875999,kg -dfed4618-f741-377f-9c9a-42122019fa94,SESCO,II.5.1,Entre Rios,AR-E,annual,2022,gas oil combustion consumption by agriculture machines,712.8776482799999,TJ,CO2,74100.0,kg/TJ,52824233.73754799,kg -30394c77-ca93-32e9-8a13-5e69eeffaccc,SESCO,II.5.1,Entre Rios,AR-E,annual,2022,gas oil combustion consumption by agriculture machines,712.8776482799999,TJ,CH4,3.9,kg/TJ,2780.2228282919996,kg -30394c77-ca93-32e9-8a13-5e69eeffaccc,SESCO,II.5.1,Entre Rios,AR-E,annual,2022,gas oil combustion consumption by agriculture machines,712.8776482799999,TJ,N2O,3.9,kg/TJ,2780.2228282919996,kg -4d6648ef-be79-3cea-bc57-5565d8cea87d,SESCO,II.5.1,Jujuy,AR-Y,annual,2022,gas oil combustion consumption by agriculture machines,18.49929144,TJ,CO2,74100.0,kg/TJ,1370797.4957040001,kg -e5d06214-1ed5-3349-9c0d-f25016c89e2e,SESCO,II.5.1,Jujuy,AR-Y,annual,2022,gas oil combustion consumption by agriculture machines,18.49929144,TJ,CH4,3.9,kg/TJ,72.147236616,kg -e5d06214-1ed5-3349-9c0d-f25016c89e2e,SESCO,II.5.1,Jujuy,AR-Y,annual,2022,gas oil combustion consumption by agriculture machines,18.49929144,TJ,N2O,3.9,kg/TJ,72.147236616,kg -b077361e-102a-30e5-b43b-6f81c7ca05cd,SESCO,II.5.1,La Pampa,AR-L,annual,2022,gas oil combustion consumption by agriculture machines,283.02248604,TJ,CO2,74100.0,kg/TJ,20971966.215563998,kg -d6d80e3b-53f5-3744-ac83-9a04e2ff3684,SESCO,II.5.1,La Pampa,AR-L,annual,2022,gas oil combustion consumption by agriculture machines,283.02248604,TJ,CH4,3.9,kg/TJ,1103.787695556,kg -d6d80e3b-53f5-3744-ac83-9a04e2ff3684,SESCO,II.5.1,La Pampa,AR-L,annual,2022,gas oil combustion consumption by agriculture machines,283.02248604,TJ,N2O,3.9,kg/TJ,1103.787695556,kg -fa954042-f72d-3c0e-8927-cd55b1b529be,SESCO,II.5.1,Rio Negro,AR-R,annual,2022,gas oil combustion consumption by agriculture machines,152.0198694,TJ,CO2,74100.0,kg/TJ,11264672.32254,kg -acb11504-f2d2-36f6-b00d-07f6eaf2568a,SESCO,II.5.1,Rio Negro,AR-R,annual,2022,gas oil combustion consumption by agriculture machines,152.0198694,TJ,CH4,3.9,kg/TJ,592.87749066,kg -acb11504-f2d2-36f6-b00d-07f6eaf2568a,SESCO,II.5.1,Rio Negro,AR-R,annual,2022,gas oil combustion consumption by agriculture machines,152.0198694,TJ,N2O,3.9,kg/TJ,592.87749066,kg -71287ac9-71f9-3fc7-b5a0-b6e433d4d70d,SESCO,II.5.1,San Luis,AR-D,annual,2022,gas oil combustion consumption by agriculture machines,45.82728612,TJ,CO2,74100.0,kg/TJ,3395801.9014919996,kg -63aeda81-3959-3dc5-8f10-1546cb715be5,SESCO,II.5.1,San Luis,AR-D,annual,2022,gas oil combustion consumption by agriculture machines,45.82728612,TJ,CH4,3.9,kg/TJ,178.72641586799998,kg -63aeda81-3959-3dc5-8f10-1546cb715be5,SESCO,II.5.1,San Luis,AR-D,annual,2022,gas oil combustion consumption by agriculture machines,45.82728612,TJ,N2O,3.9,kg/TJ,178.72641586799998,kg -4b333776-03bd-3cec-ab49-6988cb8f7885,SESCO,II.5.1,Santa Fe,AR-S,annual,2022,gas oil combustion consumption by agriculture machines,4227.63679296,TJ,CO2,74100.0,kg/TJ,313267886.35833603,kg -2a3cce4c-6a07-38a4-aa08-d5b1bfc95a36,SESCO,II.5.1,Santa Fe,AR-S,annual,2022,gas oil combustion consumption by agriculture machines,4227.63679296,TJ,CH4,3.9,kg/TJ,16487.783492544,kg -2a3cce4c-6a07-38a4-aa08-d5b1bfc95a36,SESCO,II.5.1,Santa Fe,AR-S,annual,2022,gas oil combustion consumption by agriculture machines,4227.63679296,TJ,N2O,3.9,kg/TJ,16487.783492544,kg -fccec1c0-8643-3a76-94a1-52d8943367df,SESCO,II.5.1,Santiago del Estero,AR-G,annual,2022,gas oil combustion consumption by agriculture machines,103.35380411999999,TJ,CO2,74100.0,kg/TJ,7658516.885291999,kg -e65f98ee-090a-354c-b40d-c9803593077a,SESCO,II.5.1,Santiago del Estero,AR-G,annual,2022,gas oil combustion consumption by agriculture machines,103.35380411999999,TJ,CH4,3.9,kg/TJ,403.07983606799996,kg -e65f98ee-090a-354c-b40d-c9803593077a,SESCO,II.5.1,Santiago del Estero,AR-G,annual,2022,gas oil combustion consumption by agriculture machines,103.35380411999999,TJ,N2O,3.9,kg/TJ,403.07983606799996,kg -9187e23c-1d1e-3679-8eaf-4e08299a04d5,SESCO,II.5.1,Tucuman,AR-T,annual,2022,gas oil combustion consumption by agriculture machines,70.99562988,TJ,CO2,74100.0,kg/TJ,5260776.174108,kg -6790c906-ffcc-3259-9482-91278d84f0b6,SESCO,II.5.1,Tucuman,AR-T,annual,2022,gas oil combustion consumption by agriculture machines,70.99562988,TJ,CH4,3.9,kg/TJ,276.882956532,kg -6790c906-ffcc-3259-9482-91278d84f0b6,SESCO,II.5.1,Tucuman,AR-T,annual,2022,gas oil combustion consumption by agriculture machines,70.99562988,TJ,N2O,3.9,kg/TJ,276.882956532,kg -5e3f3cff-ac61-32d6-9332-66c0706aeafc,SESCO,II.5.1,Buenos Aires,AR-B,annual,2022,gas oil combustion consumption by agriculture machines,226.59957852,TJ,CO2,74100.0,kg/TJ,16791028.768332,kg -b00b26d5-3b5e-34e8-bdc3-b89a27fbeff2,SESCO,II.5.1,Buenos Aires,AR-B,annual,2022,gas oil combustion consumption by agriculture machines,226.59957852,TJ,CH4,3.9,kg/TJ,883.7383562279999,kg -b00b26d5-3b5e-34e8-bdc3-b89a27fbeff2,SESCO,II.5.1,Buenos Aires,AR-B,annual,2022,gas oil combustion consumption by agriculture machines,226.59957852,TJ,N2O,3.9,kg/TJ,883.7383562279999,kg -cd111a23-c818-3240-967e-69ea03bba6bc,SESCO,II.5.1,Capital Federal,AR-C,annual,2022,gas oil combustion consumption by agriculture machines,23.217105240000002,TJ,CO2,74100.0,kg/TJ,1720387.4982840002,kg -cb52785f-edbf-3da9-b2d2-6f2ff6cd1ae2,SESCO,II.5.1,Capital Federal,AR-C,annual,2022,gas oil combustion consumption by agriculture machines,23.217105240000002,TJ,CH4,3.9,kg/TJ,90.54671043600001,kg -cb52785f-edbf-3da9-b2d2-6f2ff6cd1ae2,SESCO,II.5.1,Capital Federal,AR-C,annual,2022,gas oil combustion consumption by agriculture machines,23.217105240000002,TJ,N2O,3.9,kg/TJ,90.54671043600001,kg -3412f8e8-3e87-30b8-ae62-414815f80cc1,SESCO,II.5.1,Córdoba,AR-X,annual,2022,gas oil combustion consumption by agriculture machines,70.93798235999999,TJ,CO2,74100.0,kg/TJ,5256504.492876,kg -39c6dd2a-b198-3620-b361-432f57069893,SESCO,II.5.1,Córdoba,AR-X,annual,2022,gas oil combustion consumption by agriculture machines,70.93798235999999,TJ,CH4,3.9,kg/TJ,276.658131204,kg -39c6dd2a-b198-3620-b361-432f57069893,SESCO,II.5.1,Córdoba,AR-X,annual,2022,gas oil combustion consumption by agriculture machines,70.93798235999999,TJ,N2O,3.9,kg/TJ,276.658131204,kg -07eb849f-cf1c-3dc5-a7cf-894ff99c6767,SESCO,II.5.1,Entre Rios,AR-E,annual,2022,gas oil combustion consumption by agriculture machines,98.59604159999999,TJ,CO2,74100.0,kg/TJ,7305966.68256,kg -35f13758-964f-3bb1-ae91-868b9d8b7fce,SESCO,II.5.1,Entre Rios,AR-E,annual,2022,gas oil combustion consumption by agriculture machines,98.59604159999999,TJ,CH4,3.9,kg/TJ,384.52456223999997,kg -35f13758-964f-3bb1-ae91-868b9d8b7fce,SESCO,II.5.1,Entre Rios,AR-E,annual,2022,gas oil combustion consumption by agriculture machines,98.59604159999999,TJ,N2O,3.9,kg/TJ,384.52456223999997,kg -e41da70e-b7ab-3446-99b2-b2dc054cf4ff,SESCO,II.5.1,Jujuy,AR-Y,annual,2022,gas oil combustion consumption by agriculture machines,47.690139,TJ,CO2,74100.0,kg/TJ,3533839.2999,kg -6d804467-6b08-3917-b335-ceab67e3473b,SESCO,II.5.1,Jujuy,AR-Y,annual,2022,gas oil combustion consumption by agriculture machines,47.690139,TJ,CH4,3.9,kg/TJ,185.9915421,kg -6d804467-6b08-3917-b335-ceab67e3473b,SESCO,II.5.1,Jujuy,AR-Y,annual,2022,gas oil combustion consumption by agriculture machines,47.690139,TJ,N2O,3.9,kg/TJ,185.9915421,kg -d6d0cd4c-4938-3585-9d49-a2e671283d27,SESCO,II.5.1,La Pampa,AR-L,annual,2022,gas oil combustion consumption by agriculture machines,41.93463372,TJ,CO2,74100.0,kg/TJ,3107356.358652,kg -e8fcfea2-d241-3eee-87aa-58722e9204fa,SESCO,II.5.1,La Pampa,AR-L,annual,2022,gas oil combustion consumption by agriculture machines,41.93463372,TJ,CH4,3.9,kg/TJ,163.545071508,kg -e8fcfea2-d241-3eee-87aa-58722e9204fa,SESCO,II.5.1,La Pampa,AR-L,annual,2022,gas oil combustion consumption by agriculture machines,41.93463372,TJ,N2O,3.9,kg/TJ,163.545071508,kg -370ff26a-67c3-3c0b-9f24-2980876dd698,SESCO,II.5.1,Rio Negro,AR-R,annual,2022,gas oil combustion consumption by agriculture machines,168.5917254,TJ,CO2,74100.0,kg/TJ,12492646.85214,kg -65ca6225-476d-35b3-a0c5-a2809bbd5a95,SESCO,II.5.1,Rio Negro,AR-R,annual,2022,gas oil combustion consumption by agriculture machines,168.5917254,TJ,CH4,3.9,kg/TJ,657.50772906,kg -65ca6225-476d-35b3-a0c5-a2809bbd5a95,SESCO,II.5.1,Rio Negro,AR-R,annual,2022,gas oil combustion consumption by agriculture machines,168.5917254,TJ,N2O,3.9,kg/TJ,657.50772906,kg -4fde9c71-ec8f-3481-9daa-a563a9b2d9e1,SESCO,II.5.1,San Luis,AR-D,annual,2022,gas oil combustion consumption by agriculture machines,5.700169440000001,TJ,CO2,74100.0,kg/TJ,422382.55550400005,kg -b48b0089-347e-32e9-a7b3-feed3ed9bfd2,SESCO,II.5.1,San Luis,AR-D,annual,2022,gas oil combustion consumption by agriculture machines,5.700169440000001,TJ,CH4,3.9,kg/TJ,22.230660816000004,kg -b48b0089-347e-32e9-a7b3-feed3ed9bfd2,SESCO,II.5.1,San Luis,AR-D,annual,2022,gas oil combustion consumption by agriculture machines,5.700169440000001,TJ,N2O,3.9,kg/TJ,22.230660816000004,kg -a5346382-1f26-3fcb-84f7-7a501fa6bfbf,SESCO,II.5.1,Santa Fe,AR-S,annual,2022,gas oil combustion consumption by agriculture machines,335.99037108000005,TJ,CO2,74100.0,kg/TJ,24896886.497028004,kg -adb48355-734d-3c54-b9a3-759104f98605,SESCO,II.5.1,Santa Fe,AR-S,annual,2022,gas oil combustion consumption by agriculture machines,335.99037108000005,TJ,CH4,3.9,kg/TJ,1310.3624472120002,kg -adb48355-734d-3c54-b9a3-759104f98605,SESCO,II.5.1,Santa Fe,AR-S,annual,2022,gas oil combustion consumption by agriculture machines,335.99037108000005,TJ,N2O,3.9,kg/TJ,1310.3624472120002,kg -e4a2ed31-c862-366c-ba4d-18abb5eed70b,SESCO,II.5.1,Santiago del Estero,AR-G,annual,2022,gas oil combustion consumption by agriculture machines,13.274280599999999,TJ,CO2,74100.0,kg/TJ,983624.1924599999,kg -269892fb-986f-3401-b3a0-bf932c6adde5,SESCO,II.5.1,Santiago del Estero,AR-G,annual,2022,gas oil combustion consumption by agriculture machines,13.274280599999999,TJ,CH4,3.9,kg/TJ,51.769694339999994,kg -269892fb-986f-3401-b3a0-bf932c6adde5,SESCO,II.5.1,Santiago del Estero,AR-G,annual,2022,gas oil combustion consumption by agriculture machines,13.274280599999999,TJ,N2O,3.9,kg/TJ,51.769694339999994,kg -3ee31f81-0a77-3f78-80d1-ad024cce2566,SESCO,II.5.1,Tucuman,AR-T,annual,2022,gas oil combustion consumption by agriculture machines,3.9856613999999997,TJ,CO2,74100.0,kg/TJ,295337.50973999995,kg -92e18cbe-a5bd-3a8f-9b5e-25114ba3d2c2,SESCO,II.5.1,Tucuman,AR-T,annual,2022,gas oil combustion consumption by agriculture machines,3.9856613999999997,TJ,CH4,3.9,kg/TJ,15.544079459999999,kg -92e18cbe-a5bd-3a8f-9b5e-25114ba3d2c2,SESCO,II.5.1,Tucuman,AR-T,annual,2022,gas oil combustion consumption by agriculture machines,3.9856613999999997,TJ,N2O,3.9,kg/TJ,15.544079459999999,kg -137838ad-4994-3316-878e-d03273528bd0,SESCO,II.1.1,Buenos Aires,AR-B,annual,2022,gas oil combustion consumption by to the public,7995.747613559999,TJ,CO2,74100.0,kg/TJ,592484898.1647959,kg -fb0e166a-ae7c-3e5a-b4eb-52ed87213901,SESCO,II.1.1,Buenos Aires,AR-B,annual,2022,gas oil combustion consumption by to the public,7995.747613559999,TJ,CH4,3.9,kg/TJ,31183.415692883995,kg -fb0e166a-ae7c-3e5a-b4eb-52ed87213901,SESCO,II.1.1,Buenos Aires,AR-B,annual,2022,gas oil combustion consumption by to the public,7995.747613559999,TJ,N2O,3.9,kg/TJ,31183.415692883995,kg -7c5b1840-fb60-35c0-a5f2-f421460a6b71,SESCO,II.1.1,Capital Federal,AR-C,annual,2022,gas oil combustion consumption by to the public,323.0558352,TJ,CO2,74100.0,kg/TJ,23938437.38832,kg -fbdb6847-fdb5-31ee-8778-9f4de106f7ee,SESCO,II.1.1,Capital Federal,AR-C,annual,2022,gas oil combustion consumption by to the public,323.0558352,TJ,CH4,3.9,kg/TJ,1259.91775728,kg -fbdb6847-fdb5-31ee-8778-9f4de106f7ee,SESCO,II.1.1,Capital Federal,AR-C,annual,2022,gas oil combustion consumption by to the public,323.0558352,TJ,N2O,3.9,kg/TJ,1259.91775728,kg -32aa2bf5-c719-36c2-9697-05aae0d77395,SESCO,II.1.1,Catamarca,AR-K,annual,2022,gas oil combustion consumption by to the public,1.3584732,TJ,CO2,74100.0,kg/TJ,100662.86412,kg -a916405d-8190-3ef5-a117-7dc548950e9b,SESCO,II.1.1,Catamarca,AR-K,annual,2022,gas oil combustion consumption by to the public,1.3584732,TJ,CH4,3.9,kg/TJ,5.29804548,kg -a916405d-8190-3ef5-a117-7dc548950e9b,SESCO,II.1.1,Catamarca,AR-K,annual,2022,gas oil combustion consumption by to the public,1.3584732,TJ,N2O,3.9,kg/TJ,5.29804548,kg -b17e59ed-020d-32fd-b788-d12c204be58c,SESCO,II.1.1,Chaco,AR-H,annual,2022,gas oil combustion consumption by to the public,64.87906908000001,TJ,CO2,74100.0,kg/TJ,4807539.018828001,kg -e1336821-c5c1-3132-b9d9-cb595834d911,SESCO,II.1.1,Chaco,AR-H,annual,2022,gas oil combustion consumption by to the public,64.87906908000001,TJ,CH4,3.9,kg/TJ,253.02836941200002,kg -e1336821-c5c1-3132-b9d9-cb595834d911,SESCO,II.1.1,Chaco,AR-H,annual,2022,gas oil combustion consumption by to the public,64.87906908000001,TJ,N2O,3.9,kg/TJ,253.02836941200002,kg -d9003fa2-d42d-3f58-9143-5ec4f5b2f604,SESCO,II.1.1,Chubut,AR-U,annual,2022,gas oil combustion consumption by to the public,336.07435008,TJ,CO2,74100.0,kg/TJ,24903109.340928,kg -2e34e9a7-45af-361c-b172-1a93ecb0d94f,SESCO,II.1.1,Chubut,AR-U,annual,2022,gas oil combustion consumption by to the public,336.07435008,TJ,CH4,3.9,kg/TJ,1310.689965312,kg -2e34e9a7-45af-361c-b172-1a93ecb0d94f,SESCO,II.1.1,Chubut,AR-U,annual,2022,gas oil combustion consumption by to the public,336.07435008,TJ,N2O,3.9,kg/TJ,1310.689965312,kg -294cb13e-7bf5-3f46-aaa5-0cd01aa0123a,SESCO,II.1.1,Corrientes,AR-W,annual,2022,gas oil combustion consumption by to the public,935.65251612,TJ,CO2,74100.0,kg/TJ,69331851.444492,kg -a3722120-e152-33f4-9ed8-14c4720f6cef,SESCO,II.1.1,Corrientes,AR-W,annual,2022,gas oil combustion consumption by to the public,935.65251612,TJ,CH4,3.9,kg/TJ,3649.044812868,kg -a3722120-e152-33f4-9ed8-14c4720f6cef,SESCO,II.1.1,Corrientes,AR-W,annual,2022,gas oil combustion consumption by to the public,935.65251612,TJ,N2O,3.9,kg/TJ,3649.044812868,kg -1a1d5586-966d-3664-b3b0-dafb88f55e92,SESCO,II.1.1,Córdoba,AR-X,annual,2022,gas oil combustion consumption by to the public,1660.05211932,TJ,CO2,74100.0,kg/TJ,123009862.041612,kg -a0795f60-4a96-391b-a791-e8e45ba63f41,SESCO,II.1.1,Córdoba,AR-X,annual,2022,gas oil combustion consumption by to the public,1660.05211932,TJ,CH4,3.9,kg/TJ,6474.203265348,kg -a0795f60-4a96-391b-a791-e8e45ba63f41,SESCO,II.1.1,Córdoba,AR-X,annual,2022,gas oil combustion consumption by to the public,1660.05211932,TJ,N2O,3.9,kg/TJ,6474.203265348,kg -feb48251-a646-36a6-a624-e94140e1cc29,SESCO,II.1.1,Entre Rios,AR-E,annual,2022,gas oil combustion consumption by to the public,1643.75408904,TJ,CO2,74100.0,kg/TJ,121802177.99786401,kg -c2045555-6665-3381-a47d-dad85cebc272,SESCO,II.1.1,Entre Rios,AR-E,annual,2022,gas oil combustion consumption by to the public,1643.75408904,TJ,CH4,3.9,kg/TJ,6410.640947256,kg -c2045555-6665-3381-a47d-dad85cebc272,SESCO,II.1.1,Entre Rios,AR-E,annual,2022,gas oil combustion consumption by to the public,1643.75408904,TJ,N2O,3.9,kg/TJ,6410.640947256,kg -1e3223cb-3160-31a2-8fbb-80a3bc4fffe6,SESCO,II.1.1,Jujuy,AR-Y,annual,2022,gas oil combustion consumption by to the public,36.2561724,TJ,CO2,74100.0,kg/TJ,2686582.3748399997,kg -9e622706-192d-32e9-9e28-a357c15d89dc,SESCO,II.1.1,Jujuy,AR-Y,annual,2022,gas oil combustion consumption by to the public,36.2561724,TJ,CH4,3.9,kg/TJ,141.39907236,kg -9e622706-192d-32e9-9e28-a357c15d89dc,SESCO,II.1.1,Jujuy,AR-Y,annual,2022,gas oil combustion consumption by to the public,36.2561724,TJ,N2O,3.9,kg/TJ,141.39907236,kg -47ba6691-26b0-329f-a219-76f0315025ca,SESCO,II.1.1,La Pampa,AR-L,annual,2022,gas oil combustion consumption by to the public,1116.19122048,TJ,CO2,74100.0,kg/TJ,82709769.43756801,kg -292dae3f-e621-3e6f-9af4-4fb1db405ea9,SESCO,II.1.1,La Pampa,AR-L,annual,2022,gas oil combustion consumption by to the public,1116.19122048,TJ,CH4,3.9,kg/TJ,4353.145759872,kg -292dae3f-e621-3e6f-9af4-4fb1db405ea9,SESCO,II.1.1,La Pampa,AR-L,annual,2022,gas oil combustion consumption by to the public,1116.19122048,TJ,N2O,3.9,kg/TJ,4353.145759872,kg -42b30840-f396-31db-ba76-d517ff479a2d,SESCO,II.1.1,Mendoza,AR-M,annual,2022,gas oil combustion consumption by to the public,171.60561432,TJ,CO2,74100.0,kg/TJ,12715976.021112,kg -141c8611-41b2-3328-aae5-b7f77179d585,SESCO,II.1.1,Mendoza,AR-M,annual,2022,gas oil combustion consumption by to the public,171.60561432,TJ,CH4,3.9,kg/TJ,669.261895848,kg -141c8611-41b2-3328-aae5-b7f77179d585,SESCO,II.1.1,Mendoza,AR-M,annual,2022,gas oil combustion consumption by to the public,171.60561432,TJ,N2O,3.9,kg/TJ,669.261895848,kg -4413a178-c377-3889-8a54-1a70f117b537,SESCO,II.1.1,Neuquén,AR-Q,annual,2022,gas oil combustion consumption by to the public,264.9815574,TJ,CO2,74100.0,kg/TJ,19635133.40334,kg -0f53819c-54da-3889-80d7-179922389ddf,SESCO,II.1.1,Neuquén,AR-Q,annual,2022,gas oil combustion consumption by to the public,264.9815574,TJ,CH4,3.9,kg/TJ,1033.4280738599998,kg -0f53819c-54da-3889-80d7-179922389ddf,SESCO,II.1.1,Neuquén,AR-Q,annual,2022,gas oil combustion consumption by to the public,264.9815574,TJ,N2O,3.9,kg/TJ,1033.4280738599998,kg -06dd75df-7a85-3573-9232-feb6a2fb6631,SESCO,II.1.1,Rio Negro,AR-R,annual,2022,gas oil combustion consumption by to the public,872.23941336,TJ,CO2,74100.0,kg/TJ,64632940.529975995,kg -6b1acc2b-6169-327b-9ee0-fbc297ce74fb,SESCO,II.1.1,Rio Negro,AR-R,annual,2022,gas oil combustion consumption by to the public,872.23941336,TJ,CH4,3.9,kg/TJ,3401.7337121039996,kg -6b1acc2b-6169-327b-9ee0-fbc297ce74fb,SESCO,II.1.1,Rio Negro,AR-R,annual,2022,gas oil combustion consumption by to the public,872.23941336,TJ,N2O,3.9,kg/TJ,3401.7337121039996,kg -c123833f-e8e1-3180-876c-ab82c2105c7f,SESCO,II.1.1,San Juan,AR-J,annual,2022,gas oil combustion consumption by to the public,202.00221972,TJ,CO2,74100.0,kg/TJ,14968364.481252,kg -0d39a487-838c-3a52-b53b-d3f498d7d039,SESCO,II.1.1,San Juan,AR-J,annual,2022,gas oil combustion consumption by to the public,202.00221972,TJ,CH4,3.9,kg/TJ,787.808656908,kg -0d39a487-838c-3a52-b53b-d3f498d7d039,SESCO,II.1.1,San Juan,AR-J,annual,2022,gas oil combustion consumption by to the public,202.00221972,TJ,N2O,3.9,kg/TJ,787.808656908,kg -6b995c5c-a219-3b8e-a565-2fa187dd2337,SESCO,II.1.1,San Luis,AR-D,annual,2022,gas oil combustion consumption by to the public,98.66517528,TJ,CO2,74100.0,kg/TJ,7311089.488248,kg -d7d46b97-f254-3884-8a00-c955c22512a1,SESCO,II.1.1,San Luis,AR-D,annual,2022,gas oil combustion consumption by to the public,98.66517528,TJ,CH4,3.9,kg/TJ,384.79418359199997,kg -d7d46b97-f254-3884-8a00-c955c22512a1,SESCO,II.1.1,San Luis,AR-D,annual,2022,gas oil combustion consumption by to the public,98.66517528,TJ,N2O,3.9,kg/TJ,384.79418359199997,kg -569668d3-5cc8-387d-9c60-d83c2e529486,SESCO,II.1.1,Santa Fe,AR-S,annual,2022,gas oil combustion consumption by to the public,2046.2422108800001,TJ,CO2,74100.0,kg/TJ,151626547.826208,kg -1f9484b6-df83-3ec2-90bd-5fcf5f498031,SESCO,II.1.1,Santa Fe,AR-S,annual,2022,gas oil combustion consumption by to the public,2046.2422108800001,TJ,CH4,3.9,kg/TJ,7980.3446224320005,kg -1f9484b6-df83-3ec2-90bd-5fcf5f498031,SESCO,II.1.1,Santa Fe,AR-S,annual,2022,gas oil combustion consumption by to the public,2046.2422108800001,TJ,N2O,3.9,kg/TJ,7980.3446224320005,kg -a96f6a1d-d167-318a-8a5d-1a0b61eb1cd9,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2022,gas oil combustion consumption by to the public,444.55668852,TJ,CO2,74100.0,kg/TJ,32941650.619332,kg -222e2840-2f70-32ce-8c58-363beb673bf7,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2022,gas oil combustion consumption by to the public,444.55668852,TJ,CH4,3.9,kg/TJ,1733.771085228,kg -222e2840-2f70-32ce-8c58-363beb673bf7,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2022,gas oil combustion consumption by to the public,444.55668852,TJ,N2O,3.9,kg/TJ,1733.771085228,kg -e10ccf5a-092a-3289-9d5e-69d216874dfe,SESCO,II.1.1,Tucuman,AR-T,annual,2022,gas oil combustion consumption by to the public,20.76119808,TJ,CO2,74100.0,kg/TJ,1538404.777728,kg -3629f768-4650-3619-91f5-0155271ff9f2,SESCO,II.1.1,Tucuman,AR-T,annual,2022,gas oil combustion consumption by to the public,20.76119808,TJ,CH4,3.9,kg/TJ,80.968672512,kg -3629f768-4650-3619-91f5-0155271ff9f2,SESCO,II.1.1,Tucuman,AR-T,annual,2022,gas oil combustion consumption by to the public,20.76119808,TJ,N2O,3.9,kg/TJ,80.968672512,kg -5ae9cb4b-48ec-34b5-8329-2e0bade65625,SESCO,II.1.1,Buenos Aires,AR-B,annual,2022,gas oil combustion consumption by to the public,1959.05167332,TJ,CO2,74100.0,kg/TJ,145165728.993012,kg -e6e86486-0d0a-3dd2-be2b-c5b93eee3d4c,SESCO,II.1.1,Buenos Aires,AR-B,annual,2022,gas oil combustion consumption by to the public,1959.05167332,TJ,CH4,3.9,kg/TJ,7640.301525948,kg -e6e86486-0d0a-3dd2-be2b-c5b93eee3d4c,SESCO,II.1.1,Buenos Aires,AR-B,annual,2022,gas oil combustion consumption by to the public,1959.05167332,TJ,N2O,3.9,kg/TJ,7640.301525948,kg -95e183b9-0061-3899-b67a-c421dd2df0c4,SESCO,II.1.1,Capital Federal,AR-C,annual,2022,gas oil combustion consumption by to the public,57.05392392,TJ,CO2,74100.0,kg/TJ,4227695.762472,kg -6003ad36-ceae-3080-9c88-f069c92648be,SESCO,II.1.1,Capital Federal,AR-C,annual,2022,gas oil combustion consumption by to the public,57.05392392,TJ,CH4,3.9,kg/TJ,222.51030328800002,kg -6003ad36-ceae-3080-9c88-f069c92648be,SESCO,II.1.1,Capital Federal,AR-C,annual,2022,gas oil combustion consumption by to the public,57.05392392,TJ,N2O,3.9,kg/TJ,222.51030328800002,kg -21841b98-6ec0-3eee-a672-b111ba35a505,SESCO,II.1.1,Catamarca,AR-K,annual,2022,gas oil combustion consumption by to the public,1.6481555999999997,TJ,CO2,74100.0,kg/TJ,122128.32995999997,kg -e0b27196-6b1f-306b-8c80-dace002f4c70,SESCO,II.1.1,Catamarca,AR-K,annual,2022,gas oil combustion consumption by to the public,1.6481555999999997,TJ,CH4,3.9,kg/TJ,6.427806839999999,kg -e0b27196-6b1f-306b-8c80-dace002f4c70,SESCO,II.1.1,Catamarca,AR-K,annual,2022,gas oil combustion consumption by to the public,1.6481555999999997,TJ,N2O,3.9,kg/TJ,6.427806839999999,kg -22928fb5-3eb7-3791-8413-899329bd10be,SESCO,II.1.1,Chaco,AR-H,annual,2022,gas oil combustion consumption by to the public,31.16982624,TJ,CO2,74100.0,kg/TJ,2309684.124384,kg -0edba9a2-ce74-3bad-bac3-4b2d5c45512f,SESCO,II.1.1,Chaco,AR-H,annual,2022,gas oil combustion consumption by to the public,31.16982624,TJ,CH4,3.9,kg/TJ,121.562322336,kg -0edba9a2-ce74-3bad-bac3-4b2d5c45512f,SESCO,II.1.1,Chaco,AR-H,annual,2022,gas oil combustion consumption by to the public,31.16982624,TJ,N2O,3.9,kg/TJ,121.562322336,kg -70bf7386-566b-3ebc-afbb-ffdb28a17225,SESCO,II.1.1,Chubut,AR-U,annual,2022,gas oil combustion consumption by to the public,343.04207868000003,TJ,CO2,74100.0,kg/TJ,25419418.030188,kg -d20c0552-20cb-3a32-a456-c636f0982812,SESCO,II.1.1,Chubut,AR-U,annual,2022,gas oil combustion consumption by to the public,343.04207868000003,TJ,CH4,3.9,kg/TJ,1337.864106852,kg -d20c0552-20cb-3a32-a456-c636f0982812,SESCO,II.1.1,Chubut,AR-U,annual,2022,gas oil combustion consumption by to the public,343.04207868000003,TJ,N2O,3.9,kg/TJ,1337.864106852,kg -3b32df58-501f-3e74-910f-f8acb8a68b9f,SESCO,II.1.1,Corrientes,AR-W,annual,2022,gas oil combustion consumption by to the public,142.89462096,TJ,CO2,74100.0,kg/TJ,10588491.413136,kg -7584d1af-e89e-33d9-b3e2-409906731bc0,SESCO,II.1.1,Corrientes,AR-W,annual,2022,gas oil combustion consumption by to the public,142.89462096,TJ,CH4,3.9,kg/TJ,557.289021744,kg -7584d1af-e89e-33d9-b3e2-409906731bc0,SESCO,II.1.1,Corrientes,AR-W,annual,2022,gas oil combustion consumption by to the public,142.89462096,TJ,N2O,3.9,kg/TJ,557.289021744,kg -7157f611-681b-3fc5-ba91-5a7eedb6427d,SESCO,II.1.1,Córdoba,AR-X,annual,2022,gas oil combustion consumption by to the public,351.78391332,TJ,CO2,74100.0,kg/TJ,26067187.977012,kg -2df9959a-f91f-3c60-b11e-07735c68b66e,SESCO,II.1.1,Córdoba,AR-X,annual,2022,gas oil combustion consumption by to the public,351.78391332,TJ,CH4,3.9,kg/TJ,1371.957261948,kg -2df9959a-f91f-3c60-b11e-07735c68b66e,SESCO,II.1.1,Córdoba,AR-X,annual,2022,gas oil combustion consumption by to the public,351.78391332,TJ,N2O,3.9,kg/TJ,1371.957261948,kg -9906db93-b45c-35bf-8d8b-0ea2cf2627ac,SESCO,II.1.1,Entre Rios,AR-E,annual,2022,gas oil combustion consumption by to the public,397.01276328,TJ,CO2,74100.0,kg/TJ,29418645.759048,kg -3ad0e640-1bd0-3c74-9af9-e7d9d0774bbb,SESCO,II.1.1,Entre Rios,AR-E,annual,2022,gas oil combustion consumption by to the public,397.01276328,TJ,CH4,3.9,kg/TJ,1548.349776792,kg -3ad0e640-1bd0-3c74-9af9-e7d9d0774bbb,SESCO,II.1.1,Entre Rios,AR-E,annual,2022,gas oil combustion consumption by to the public,397.01276328,TJ,N2O,3.9,kg/TJ,1548.349776792,kg -d7247120-79d3-34af-82ca-1abd6ea0b64b,SESCO,II.1.1,Jujuy,AR-Y,annual,2022,gas oil combustion consumption by to the public,12.9250002,TJ,CO2,74100.0,kg/TJ,957742.5148199999,kg -c1b60d2b-d20e-3f6d-9e4d-73c9b92fcf1e,SESCO,II.1.1,Jujuy,AR-Y,annual,2022,gas oil combustion consumption by to the public,12.9250002,TJ,CH4,3.9,kg/TJ,50.40750078,kg -c1b60d2b-d20e-3f6d-9e4d-73c9b92fcf1e,SESCO,II.1.1,Jujuy,AR-Y,annual,2022,gas oil combustion consumption by to the public,12.9250002,TJ,N2O,3.9,kg/TJ,50.40750078,kg -eb71b6d1-1fbe-3aa9-a231-953bca13db4d,SESCO,II.1.1,La Pampa,AR-L,annual,2022,gas oil combustion consumption by to the public,216.56825988,TJ,CO2,74100.0,kg/TJ,16047708.057108,kg -c83f3ccd-35ae-3a58-ba36-9e8540a61074,SESCO,II.1.1,La Pampa,AR-L,annual,2022,gas oil combustion consumption by to the public,216.56825988,TJ,CH4,3.9,kg/TJ,844.616213532,kg -c83f3ccd-35ae-3a58-ba36-9e8540a61074,SESCO,II.1.1,La Pampa,AR-L,annual,2022,gas oil combustion consumption by to the public,216.56825988,TJ,N2O,3.9,kg/TJ,844.616213532,kg -c7b42c15-ceee-3c18-836f-9783fe3b0405,SESCO,II.1.1,Mendoza,AR-M,annual,2022,gas oil combustion consumption by to the public,38.58417864,TJ,CO2,74100.0,kg/TJ,2859087.637224,kg -b571082a-11ca-3783-bb28-1a070c5532a5,SESCO,II.1.1,Mendoza,AR-M,annual,2022,gas oil combustion consumption by to the public,38.58417864,TJ,CH4,3.9,kg/TJ,150.478296696,kg -b571082a-11ca-3783-bb28-1a070c5532a5,SESCO,II.1.1,Mendoza,AR-M,annual,2022,gas oil combustion consumption by to the public,38.58417864,TJ,N2O,3.9,kg/TJ,150.478296696,kg -1fe6ab4a-d4b5-35be-8dda-520b5e9b8bd4,SESCO,II.1.1,Neuquén,AR-Q,annual,2022,gas oil combustion consumption by to the public,305.71231152,TJ,CO2,74100.0,kg/TJ,22653282.283632003,kg -b4c300b4-f40e-37f5-85ca-b4f3dcd6cd91,SESCO,II.1.1,Neuquén,AR-Q,annual,2022,gas oil combustion consumption by to the public,305.71231152,TJ,CH4,3.9,kg/TJ,1192.278014928,kg -b4c300b4-f40e-37f5-85ca-b4f3dcd6cd91,SESCO,II.1.1,Neuquén,AR-Q,annual,2022,gas oil combustion consumption by to the public,305.71231152,TJ,N2O,3.9,kg/TJ,1192.278014928,kg -29773dc5-8f80-31ba-b254-7794e1537df2,SESCO,II.1.1,Rio Negro,AR-R,annual,2022,gas oil combustion consumption by to the public,435.31592831999995,TJ,CO2,74100.0,kg/TJ,32256910.288511995,kg -ead07052-672a-339f-815e-eeff3eb6e67b,SESCO,II.1.1,Rio Negro,AR-R,annual,2022,gas oil combustion consumption by to the public,435.31592831999995,TJ,CH4,3.9,kg/TJ,1697.7321204479997,kg -ead07052-672a-339f-815e-eeff3eb6e67b,SESCO,II.1.1,Rio Negro,AR-R,annual,2022,gas oil combustion consumption by to the public,435.31592831999995,TJ,N2O,3.9,kg/TJ,1697.7321204479997,kg -123687f5-225d-3c5b-9057-104d9a0fb2e9,SESCO,II.1.1,San Juan,AR-J,annual,2022,gas oil combustion consumption by to the public,48.09717528,TJ,CO2,74100.0,kg/TJ,3564000.688248,kg -895824ea-2cee-38e2-b318-6dcede39d5fe,SESCO,II.1.1,San Juan,AR-J,annual,2022,gas oil combustion consumption by to the public,48.09717528,TJ,CH4,3.9,kg/TJ,187.57898359200001,kg -895824ea-2cee-38e2-b318-6dcede39d5fe,SESCO,II.1.1,San Juan,AR-J,annual,2022,gas oil combustion consumption by to the public,48.09717528,TJ,N2O,3.9,kg/TJ,187.57898359200001,kg -c875107b-5ea2-38af-8260-82a6befc5746,SESCO,II.1.1,San Luis,AR-D,annual,2022,gas oil combustion consumption by to the public,37.8969234,TJ,CO2,74100.0,kg/TJ,2808162.0239399998,kg -225213d6-cb3c-32f4-bdac-94ce2357a8ab,SESCO,II.1.1,San Luis,AR-D,annual,2022,gas oil combustion consumption by to the public,37.8969234,TJ,CH4,3.9,kg/TJ,147.79800125999998,kg -225213d6-cb3c-32f4-bdac-94ce2357a8ab,SESCO,II.1.1,San Luis,AR-D,annual,2022,gas oil combustion consumption by to the public,37.8969234,TJ,N2O,3.9,kg/TJ,147.79800125999998,kg -af46286b-6ea4-3ccf-9c55-6bc175b51753,SESCO,II.1.1,Santa Fe,AR-S,annual,2022,gas oil combustion consumption by to the public,516.6086478,TJ,CO2,74100.0,kg/TJ,38280700.801979996,kg -199f0036-a3d3-396f-baf0-47292dd4b091,SESCO,II.1.1,Santa Fe,AR-S,annual,2022,gas oil combustion consumption by to the public,516.6086478,TJ,CH4,3.9,kg/TJ,2014.7737264199998,kg -199f0036-a3d3-396f-baf0-47292dd4b091,SESCO,II.1.1,Santa Fe,AR-S,annual,2022,gas oil combustion consumption by to the public,516.6086478,TJ,N2O,3.9,kg/TJ,2014.7737264199998,kg -bacedc85-4023-39dc-b163-4fe07d0a0dab,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2022,gas oil combustion consumption by to the public,50.15359524,TJ,CO2,74100.0,kg/TJ,3716381.407284,kg -4c18c7a4-b8c7-3109-8c9b-3b7e8528327b,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2022,gas oil combustion consumption by to the public,50.15359524,TJ,CH4,3.9,kg/TJ,195.599021436,kg -4c18c7a4-b8c7-3109-8c9b-3b7e8528327b,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2022,gas oil combustion consumption by to the public,50.15359524,TJ,N2O,3.9,kg/TJ,195.599021436,kg -c5165acc-33a1-3b54-a33e-644fa4711233,SESCO,II.1.1,Tucuman,AR-T,annual,2022,gas oil combustion consumption by to the public,1.2764808,TJ,CO2,74100.0,kg/TJ,94587.22728,kg -9000a508-2ff6-3207-b164-519fca1634e3,SESCO,II.1.1,Tucuman,AR-T,annual,2022,gas oil combustion consumption by to the public,1.2764808,TJ,CH4,3.9,kg/TJ,4.97827512,kg -9000a508-2ff6-3207-b164-519fca1634e3,SESCO,II.1.1,Tucuman,AR-T,annual,2022,gas oil combustion consumption by to the public,1.2764808,TJ,N2O,3.9,kg/TJ,4.97827512,kg -993e9e73-a91c-3c8c-97cc-ccfaae53ed0d,SESCO,II.5.1,Buenos Aires,AR-B,annual,2022,gas oil combustion consumption by agriculture machines,9559.55532,TJ,CO2,74100.0,kg/TJ,708363049.212,kg -2a99b7cc-8ebe-3e04-a208-bd2db5724e9c,SESCO,II.5.1,Buenos Aires,AR-B,annual,2022,gas oil combustion consumption by agriculture machines,9559.55532,TJ,CH4,3.9,kg/TJ,37282.265748,kg -2a99b7cc-8ebe-3e04-a208-bd2db5724e9c,SESCO,II.5.1,Buenos Aires,AR-B,annual,2022,gas oil combustion consumption by agriculture machines,9559.55532,TJ,N2O,3.9,kg/TJ,37282.265748,kg -11bf5a50-7478-3a5e-896d-af1211a9ed11,SESCO,II.5.1,Capital Federal,AR-C,annual,2022,gas oil combustion consumption by agriculture machines,69.3504,TJ,CO2,74100.0,kg/TJ,5138864.64,kg -b3f5066a-7275-3fe9-867d-64a2a74bfbfa,SESCO,II.5.1,Capital Federal,AR-C,annual,2022,gas oil combustion consumption by agriculture machines,69.3504,TJ,CH4,3.9,kg/TJ,270.46655999999996,kg -b3f5066a-7275-3fe9-867d-64a2a74bfbfa,SESCO,II.5.1,Capital Federal,AR-C,annual,2022,gas oil combustion consumption by agriculture machines,69.3504,TJ,N2O,3.9,kg/TJ,270.46655999999996,kg -e1564e83-fb09-3abe-b687-e8e274f27561,SESCO,II.5.1,Catamarca,AR-K,annual,2022,gas oil combustion consumption by agriculture machines,190.60524,TJ,CO2,74100.0,kg/TJ,14123848.284,kg -fac0e32b-8da8-3e1c-8b1f-e16f336d66c7,SESCO,II.5.1,Catamarca,AR-K,annual,2022,gas oil combustion consumption by agriculture machines,190.60524,TJ,CH4,3.9,kg/TJ,743.360436,kg -fac0e32b-8da8-3e1c-8b1f-e16f336d66c7,SESCO,II.5.1,Catamarca,AR-K,annual,2022,gas oil combustion consumption by agriculture machines,190.60524,TJ,N2O,3.9,kg/TJ,743.360436,kg -8bf3049f-744e-3d6b-a327-5b0db8cd6dc5,SESCO,II.5.1,Chaco,AR-H,annual,2022,gas oil combustion consumption by agriculture machines,965.55984,TJ,CO2,74100.0,kg/TJ,71547984.144,kg -cad7ce34-d5b4-3e41-a018-728cae021ba3,SESCO,II.5.1,Chaco,AR-H,annual,2022,gas oil combustion consumption by agriculture machines,965.55984,TJ,CH4,3.9,kg/TJ,3765.683376,kg -cad7ce34-d5b4-3e41-a018-728cae021ba3,SESCO,II.5.1,Chaco,AR-H,annual,2022,gas oil combustion consumption by agriculture machines,965.55984,TJ,N2O,3.9,kg/TJ,3765.683376,kg -66e3d13f-1aed-3600-82db-b673b7da81a4,SESCO,II.5.1,Corrientes,AR-W,annual,2022,gas oil combustion consumption by agriculture machines,784.77924,TJ,CO2,74100.0,kg/TJ,58152141.684,kg -534b0e05-80cd-35d2-b00c-72d6ccdf0ead,SESCO,II.5.1,Corrientes,AR-W,annual,2022,gas oil combustion consumption by agriculture machines,784.77924,TJ,CH4,3.9,kg/TJ,3060.6390359999996,kg -534b0e05-80cd-35d2-b00c-72d6ccdf0ead,SESCO,II.5.1,Corrientes,AR-W,annual,2022,gas oil combustion consumption by agriculture machines,784.77924,TJ,N2O,3.9,kg/TJ,3060.6390359999996,kg -4fc823d5-9c29-3fa7-b3a4-324e685d0ccb,SESCO,II.5.1,Córdoba,AR-X,annual,2022,gas oil combustion consumption by agriculture machines,7741.7802,TJ,CO2,74100.0,kg/TJ,573665912.82,kg -1e6aa6ca-aaed-3a04-8246-3a740b5487a1,SESCO,II.5.1,Córdoba,AR-X,annual,2022,gas oil combustion consumption by agriculture machines,7741.7802,TJ,CH4,3.9,kg/TJ,30192.94278,kg -1e6aa6ca-aaed-3a04-8246-3a740b5487a1,SESCO,II.5.1,Córdoba,AR-X,annual,2022,gas oil combustion consumption by agriculture machines,7741.7802,TJ,N2O,3.9,kg/TJ,30192.94278,kg -07ee0398-2b21-3b96-bd4a-8673899f2a46,SESCO,II.5.1,Entre Rios,AR-E,annual,2022,gas oil combustion consumption by agriculture machines,2110.78056,TJ,CO2,74100.0,kg/TJ,156408839.49600002,kg -2e208fe7-c1f6-3834-9a94-7276e4953e9e,SESCO,II.5.1,Entre Rios,AR-E,annual,2022,gas oil combustion consumption by agriculture machines,2110.78056,TJ,CH4,3.9,kg/TJ,8232.044184,kg -2e208fe7-c1f6-3834-9a94-7276e4953e9e,SESCO,II.5.1,Entre Rios,AR-E,annual,2022,gas oil combustion consumption by agriculture machines,2110.78056,TJ,N2O,3.9,kg/TJ,8232.044184,kg -3a6cc301-1272-33dd-848a-15e39639bd08,SESCO,II.5.1,Formosa,AR-P,annual,2022,gas oil combustion consumption by agriculture machines,320.52888,TJ,CO2,74100.0,kg/TJ,23751190.008,kg -2c1bb023-5b02-3404-847d-9b7d20c56420,SESCO,II.5.1,Formosa,AR-P,annual,2022,gas oil combustion consumption by agriculture machines,320.52888,TJ,CH4,3.9,kg/TJ,1250.0626320000001,kg -2c1bb023-5b02-3404-847d-9b7d20c56420,SESCO,II.5.1,Formosa,AR-P,annual,2022,gas oil combustion consumption by agriculture machines,320.52888,TJ,N2O,3.9,kg/TJ,1250.0626320000001,kg -fc8eb104-ea29-389e-ab70-cffcc0eee76b,SESCO,II.5.1,Jujuy,AR-Y,annual,2022,gas oil combustion consumption by agriculture machines,959.5639199999999,TJ,CO2,74100.0,kg/TJ,71103686.472,kg -bd787f78-aab8-303f-9e95-9de0c2f1f882,SESCO,II.5.1,Jujuy,AR-Y,annual,2022,gas oil combustion consumption by agriculture machines,959.5639199999999,TJ,CH4,3.9,kg/TJ,3742.2992879999997,kg -bd787f78-aab8-303f-9e95-9de0c2f1f882,SESCO,II.5.1,Jujuy,AR-Y,annual,2022,gas oil combustion consumption by agriculture machines,959.5639199999999,TJ,N2O,3.9,kg/TJ,3742.2992879999997,kg -06b5dc11-b266-3878-81ff-e487e2787642,SESCO,II.5.1,La Pampa,AR-L,annual,2022,gas oil combustion consumption by agriculture machines,1567.13844,TJ,CO2,74100.0,kg/TJ,116124958.404,kg -6e39fc7f-fbc1-370b-b3de-4199da219092,SESCO,II.5.1,La Pampa,AR-L,annual,2022,gas oil combustion consumption by agriculture machines,1567.13844,TJ,CH4,3.9,kg/TJ,6111.839916,kg -6e39fc7f-fbc1-370b-b3de-4199da219092,SESCO,II.5.1,La Pampa,AR-L,annual,2022,gas oil combustion consumption by agriculture machines,1567.13844,TJ,N2O,3.9,kg/TJ,6111.839916,kg -f65ea214-96e1-3140-8077-18941810af81,SESCO,II.5.1,La Rioja,AR-F,annual,2022,gas oil combustion consumption by agriculture machines,126.34776,TJ,CO2,74100.0,kg/TJ,9362369.015999999,kg -950dc955-cff5-3e5e-be7c-562a71e1f77a,SESCO,II.5.1,La Rioja,AR-F,annual,2022,gas oil combustion consumption by agriculture machines,126.34776,TJ,CH4,3.9,kg/TJ,492.756264,kg -950dc955-cff5-3e5e-be7c-562a71e1f77a,SESCO,II.5.1,La Rioja,AR-F,annual,2022,gas oil combustion consumption by agriculture machines,126.34776,TJ,N2O,3.9,kg/TJ,492.756264,kg -18e25c9e-e2a4-39d7-8495-69835efb42cb,SESCO,II.5.1,Mendoza,AR-M,annual,2022,gas oil combustion consumption by agriculture machines,2384.17284,TJ,CO2,74100.0,kg/TJ,176667207.444,kg -4072c111-1bb5-34c6-aa54-94c279f76a68,SESCO,II.5.1,Mendoza,AR-M,annual,2022,gas oil combustion consumption by agriculture machines,2384.17284,TJ,CH4,3.9,kg/TJ,9298.274076,kg -4072c111-1bb5-34c6-aa54-94c279f76a68,SESCO,II.5.1,Mendoza,AR-M,annual,2022,gas oil combustion consumption by agriculture machines,2384.17284,TJ,N2O,3.9,kg/TJ,9298.274076,kg -dbbd9b82-f59c-3a16-a275-9721da5ac6e5,SESCO,II.5.1,Misiones,AR-N,annual,2022,gas oil combustion consumption by agriculture machines,1143.81204,TJ,CO2,74100.0,kg/TJ,84756472.164,kg -45973dae-e1b1-3bcb-b010-2e816f35f6bf,SESCO,II.5.1,Misiones,AR-N,annual,2022,gas oil combustion consumption by agriculture machines,1143.81204,TJ,CH4,3.9,kg/TJ,4460.866956,kg -45973dae-e1b1-3bcb-b010-2e816f35f6bf,SESCO,II.5.1,Misiones,AR-N,annual,2022,gas oil combustion consumption by agriculture machines,1143.81204,TJ,N2O,3.9,kg/TJ,4460.866956,kg -c95b139a-cf13-34c2-a909-79d73d4ff3b2,SESCO,II.5.1,Rio Negro,AR-R,annual,2022,gas oil combustion consumption by agriculture machines,257.13828,TJ,CO2,74100.0,kg/TJ,19053946.548,kg -11b29e4b-b67b-3228-adca-ec1338bb9f78,SESCO,II.5.1,Rio Negro,AR-R,annual,2022,gas oil combustion consumption by agriculture machines,257.13828,TJ,CH4,3.9,kg/TJ,1002.839292,kg -11b29e4b-b67b-3228-adca-ec1338bb9f78,SESCO,II.5.1,Rio Negro,AR-R,annual,2022,gas oil combustion consumption by agriculture machines,257.13828,TJ,N2O,3.9,kg/TJ,1002.839292,kg -e4b0c610-b1f6-3fe2-af12-def00cd38c2e,SESCO,II.5.1,Salta,AR-A,annual,2022,gas oil combustion consumption by agriculture machines,1365.44436,TJ,CO2,74100.0,kg/TJ,101179427.07599999,kg -ef36d712-1bf3-39d5-89b6-95ba1b170328,SESCO,II.5.1,Salta,AR-A,annual,2022,gas oil combustion consumption by agriculture machines,1365.44436,TJ,CH4,3.9,kg/TJ,5325.233004,kg -ef36d712-1bf3-39d5-89b6-95ba1b170328,SESCO,II.5.1,Salta,AR-A,annual,2022,gas oil combustion consumption by agriculture machines,1365.44436,TJ,N2O,3.9,kg/TJ,5325.233004,kg -f0581eb3-bb66-35f5-acdf-711d93a543ba,SESCO,II.5.1,San Juan,AR-J,annual,2022,gas oil combustion consumption by agriculture machines,438.46067999999997,TJ,CO2,74100.0,kg/TJ,32489936.387999997,kg -e84d6d1e-09c6-33b0-95ee-fa6d71ba8261,SESCO,II.5.1,San Juan,AR-J,annual,2022,gas oil combustion consumption by agriculture machines,438.46067999999997,TJ,CH4,3.9,kg/TJ,1709.9966519999998,kg -e84d6d1e-09c6-33b0-95ee-fa6d71ba8261,SESCO,II.5.1,San Juan,AR-J,annual,2022,gas oil combustion consumption by agriculture machines,438.46067999999997,TJ,N2O,3.9,kg/TJ,1709.9966519999998,kg -c8d61277-a1a7-382a-b112-e8ba8a12b3cc,SESCO,II.5.1,San Luis,AR-D,annual,2022,gas oil combustion consumption by agriculture machines,287.47908,TJ,CO2,74100.0,kg/TJ,21302199.828,kg -c9e4ed80-7f33-388f-91e2-8e525f74ca76,SESCO,II.5.1,San Luis,AR-D,annual,2022,gas oil combustion consumption by agriculture machines,287.47908,TJ,CH4,3.9,kg/TJ,1121.168412,kg -c9e4ed80-7f33-388f-91e2-8e525f74ca76,SESCO,II.5.1,San Luis,AR-D,annual,2022,gas oil combustion consumption by agriculture machines,287.47908,TJ,N2O,3.9,kg/TJ,1121.168412,kg -f32b3e61-b53e-3542-a898-84d78e543d07,SESCO,II.5.1,Santa Fe,AR-S,annual,2022,gas oil combustion consumption by agriculture machines,6846.83496,TJ,CO2,74100.0,kg/TJ,507350470.536,kg -7a4e768f-32a9-37a8-80e1-e9709f9975bd,SESCO,II.5.1,Santa Fe,AR-S,annual,2022,gas oil combustion consumption by agriculture machines,6846.83496,TJ,CH4,3.9,kg/TJ,26702.656344,kg -7a4e768f-32a9-37a8-80e1-e9709f9975bd,SESCO,II.5.1,Santa Fe,AR-S,annual,2022,gas oil combustion consumption by agriculture machines,6846.83496,TJ,N2O,3.9,kg/TJ,26702.656344,kg -20f0df4c-2d7a-346f-b755-650e301a0852,SESCO,II.5.1,Santiago del Estero,AR-G,annual,2022,gas oil combustion consumption by agriculture machines,1481.1006,TJ,CO2,74100.0,kg/TJ,109749554.46,kg -61ff1844-0e71-3874-8f0f-25ea8d91e06a,SESCO,II.5.1,Santiago del Estero,AR-G,annual,2022,gas oil combustion consumption by agriculture machines,1481.1006,TJ,CH4,3.9,kg/TJ,5776.29234,kg -61ff1844-0e71-3874-8f0f-25ea8d91e06a,SESCO,II.5.1,Santiago del Estero,AR-G,annual,2022,gas oil combustion consumption by agriculture machines,1481.1006,TJ,N2O,3.9,kg/TJ,5776.29234,kg -81c7fdba-12fb-3cdb-87d5-ebb67d53eeb1,SESCO,II.5.1,Tucuman,AR-T,annual,2022,gas oil combustion consumption by agriculture machines,1101.8406,TJ,CO2,74100.0,kg/TJ,81646388.46,kg -55618f5a-d7c8-3f0c-9973-e94b5121889e,SESCO,II.5.1,Tucuman,AR-T,annual,2022,gas oil combustion consumption by agriculture machines,1101.8406,TJ,CH4,3.9,kg/TJ,4297.1783399999995,kg -55618f5a-d7c8-3f0c-9973-e94b5121889e,SESCO,II.5.1,Tucuman,AR-T,annual,2022,gas oil combustion consumption by agriculture machines,1101.8406,TJ,N2O,3.9,kg/TJ,4297.1783399999995,kg -e0ef2ea1-fe44-3657-aad2-9be1601881ff,SESCO,II.5.1,Buenos Aires,AR-B,annual,2022,gas oil combustion consumption by agriculture machines,1051.995,TJ,CO2,74100.0,kg/TJ,77952829.49999999,kg -186db40d-1bb2-3471-a628-7605fe8a111c,SESCO,II.5.1,Buenos Aires,AR-B,annual,2022,gas oil combustion consumption by agriculture machines,1051.995,TJ,CH4,3.9,kg/TJ,4102.7805,kg -186db40d-1bb2-3471-a628-7605fe8a111c,SESCO,II.5.1,Buenos Aires,AR-B,annual,2022,gas oil combustion consumption by agriculture machines,1051.995,TJ,N2O,3.9,kg/TJ,4102.7805,kg -2ef310b0-ee91-36ac-ae4e-f62899db45d0,SESCO,II.5.1,Capital Federal,AR-C,annual,2022,gas oil combustion consumption by agriculture machines,10.6554,TJ,CO2,74100.0,kg/TJ,789565.14,kg -5cd5f4a0-740e-3063-bf8d-5bc2af8ea949,SESCO,II.5.1,Capital Federal,AR-C,annual,2022,gas oil combustion consumption by agriculture machines,10.6554,TJ,CH4,3.9,kg/TJ,41.55606,kg -5cd5f4a0-740e-3063-bf8d-5bc2af8ea949,SESCO,II.5.1,Capital Federal,AR-C,annual,2022,gas oil combustion consumption by agriculture machines,10.6554,TJ,N2O,3.9,kg/TJ,41.55606,kg -b09110f3-94d3-30d4-b651-e3f9001ca36e,SESCO,II.5.1,Catamarca,AR-K,annual,2022,gas oil combustion consumption by agriculture machines,100.08852,TJ,CO2,74100.0,kg/TJ,7416559.332,kg -6728ca00-b196-39a5-9fad-0abe8e992319,SESCO,II.5.1,Catamarca,AR-K,annual,2022,gas oil combustion consumption by agriculture machines,100.08852,TJ,CH4,3.9,kg/TJ,390.345228,kg -6728ca00-b196-39a5-9fad-0abe8e992319,SESCO,II.5.1,Catamarca,AR-K,annual,2022,gas oil combustion consumption by agriculture machines,100.08852,TJ,N2O,3.9,kg/TJ,390.345228,kg -faeb3dd7-180d-3939-8b23-5572060267d6,SESCO,II.5.1,Chaco,AR-H,annual,2022,gas oil combustion consumption by agriculture machines,79.03056,TJ,CO2,74100.0,kg/TJ,5856164.495999999,kg -2a0abb2a-1d4c-3193-b628-45ad6d870a00,SESCO,II.5.1,Chaco,AR-H,annual,2022,gas oil combustion consumption by agriculture machines,79.03056,TJ,CH4,3.9,kg/TJ,308.219184,kg -2a0abb2a-1d4c-3193-b628-45ad6d870a00,SESCO,II.5.1,Chaco,AR-H,annual,2022,gas oil combustion consumption by agriculture machines,79.03056,TJ,N2O,3.9,kg/TJ,308.219184,kg -8229b30b-6d8f-3139-a1f1-c6e30f00f980,SESCO,II.5.1,Corrientes,AR-W,annual,2022,gas oil combustion consumption by agriculture machines,80.9088,TJ,CO2,74100.0,kg/TJ,5995342.08,kg -1a3a7e03-d4f8-39bb-ac1f-18d9eadce026,SESCO,II.5.1,Corrientes,AR-W,annual,2022,gas oil combustion consumption by agriculture machines,80.9088,TJ,CH4,3.9,kg/TJ,315.54431999999997,kg -1a3a7e03-d4f8-39bb-ac1f-18d9eadce026,SESCO,II.5.1,Corrientes,AR-W,annual,2022,gas oil combustion consumption by agriculture machines,80.9088,TJ,N2O,3.9,kg/TJ,315.54431999999997,kg -146c0145-7a46-378a-bc9e-2b4e3f468f89,SESCO,II.5.1,Córdoba,AR-X,annual,2022,gas oil combustion consumption by agriculture machines,864.49608,TJ,CO2,74100.0,kg/TJ,64059159.528,kg -d7dc2475-e453-3ebc-8b4b-bab2d01ce2b6,SESCO,II.5.1,Córdoba,AR-X,annual,2022,gas oil combustion consumption by agriculture machines,864.49608,TJ,CH4,3.9,kg/TJ,3371.534712,kg -d7dc2475-e453-3ebc-8b4b-bab2d01ce2b6,SESCO,II.5.1,Córdoba,AR-X,annual,2022,gas oil combustion consumption by agriculture machines,864.49608,TJ,N2O,3.9,kg/TJ,3371.534712,kg -df7bbf1a-3a00-3577-ad70-6c00f95d250d,SESCO,II.5.1,Entre Rios,AR-E,annual,2022,gas oil combustion consumption by agriculture machines,88.09667999999999,TJ,CO2,74100.0,kg/TJ,6527963.987999999,kg -9384433a-fdc2-359b-8122-4904144bcf49,SESCO,II.5.1,Entre Rios,AR-E,annual,2022,gas oil combustion consumption by agriculture machines,88.09667999999999,TJ,CH4,3.9,kg/TJ,343.577052,kg -9384433a-fdc2-359b-8122-4904144bcf49,SESCO,II.5.1,Entre Rios,AR-E,annual,2022,gas oil combustion consumption by agriculture machines,88.09667999999999,TJ,N2O,3.9,kg/TJ,343.577052,kg -685b73be-96c2-3f85-b8d0-7a124add38d9,SESCO,II.5.1,Formosa,AR-P,annual,2022,gas oil combustion consumption by agriculture machines,48.328559999999996,TJ,CO2,74100.0,kg/TJ,3581146.2959999996,kg -6d94f089-98fd-3050-95fb-c90d4d52723a,SESCO,II.5.1,Formosa,AR-P,annual,2022,gas oil combustion consumption by agriculture machines,48.328559999999996,TJ,CH4,3.9,kg/TJ,188.481384,kg -6d94f089-98fd-3050-95fb-c90d4d52723a,SESCO,II.5.1,Formosa,AR-P,annual,2022,gas oil combustion consumption by agriculture machines,48.328559999999996,TJ,N2O,3.9,kg/TJ,188.481384,kg -706444c9-b99f-3c64-be26-480ef16dc3e0,SESCO,II.5.1,Jujuy,AR-Y,annual,2022,gas oil combustion consumption by agriculture machines,72.52896,TJ,CO2,74100.0,kg/TJ,5374395.936,kg -b901f115-7944-3167-8ad8-fd33d59b2ffa,SESCO,II.5.1,Jujuy,AR-Y,annual,2022,gas oil combustion consumption by agriculture machines,72.52896,TJ,CH4,3.9,kg/TJ,282.86294399999997,kg -b901f115-7944-3167-8ad8-fd33d59b2ffa,SESCO,II.5.1,Jujuy,AR-Y,annual,2022,gas oil combustion consumption by agriculture machines,72.52896,TJ,N2O,3.9,kg/TJ,282.86294399999997,kg -f9a92dfe-4393-3da2-8963-62e04fde12e1,SESCO,II.5.1,La Pampa,AR-L,annual,2022,gas oil combustion consumption by agriculture machines,206.31744,TJ,CO2,74100.0,kg/TJ,15288122.304,kg -40863c9e-91d2-3911-8809-f358d1d73c43,SESCO,II.5.1,La Pampa,AR-L,annual,2022,gas oil combustion consumption by agriculture machines,206.31744,TJ,CH4,3.9,kg/TJ,804.638016,kg -40863c9e-91d2-3911-8809-f358d1d73c43,SESCO,II.5.1,La Pampa,AR-L,annual,2022,gas oil combustion consumption by agriculture machines,206.31744,TJ,N2O,3.9,kg/TJ,804.638016,kg -c42997c6-f3d0-3889-b5d6-ce451c46ca74,SESCO,II.5.1,La Rioja,AR-F,annual,2022,gas oil combustion consumption by agriculture machines,30.48528,TJ,CO2,74100.0,kg/TJ,2258959.248,kg -56b1ec22-a150-3239-9c88-784149fcb83c,SESCO,II.5.1,La Rioja,AR-F,annual,2022,gas oil combustion consumption by agriculture machines,30.48528,TJ,CH4,3.9,kg/TJ,118.892592,kg -56b1ec22-a150-3239-9c88-784149fcb83c,SESCO,II.5.1,La Rioja,AR-F,annual,2022,gas oil combustion consumption by agriculture machines,30.48528,TJ,N2O,3.9,kg/TJ,118.892592,kg -921a2c66-9632-3daf-9322-cac92beb4bf0,SESCO,II.5.1,Mendoza,AR-M,annual,2022,gas oil combustion consumption by agriculture machines,376.9122,TJ,CO2,74100.0,kg/TJ,27929194.02,kg -584295ca-7ee5-380d-9e22-de15e228350d,SESCO,II.5.1,Mendoza,AR-M,annual,2022,gas oil combustion consumption by agriculture machines,376.9122,TJ,CH4,3.9,kg/TJ,1469.95758,kg -584295ca-7ee5-380d-9e22-de15e228350d,SESCO,II.5.1,Mendoza,AR-M,annual,2022,gas oil combustion consumption by agriculture machines,376.9122,TJ,N2O,3.9,kg/TJ,1469.95758,kg -d2ecffae-14c8-3976-9587-fc6e9b5f2d54,SESCO,II.5.1,Misiones,AR-N,annual,2022,gas oil combustion consumption by agriculture machines,190.64136,TJ,CO2,74100.0,kg/TJ,14126524.775999999,kg -11c22b80-936e-3d95-a551-0e918092b028,SESCO,II.5.1,Misiones,AR-N,annual,2022,gas oil combustion consumption by agriculture machines,190.64136,TJ,CH4,3.9,kg/TJ,743.501304,kg -11c22b80-936e-3d95-a551-0e918092b028,SESCO,II.5.1,Misiones,AR-N,annual,2022,gas oil combustion consumption by agriculture machines,190.64136,TJ,N2O,3.9,kg/TJ,743.501304,kg -85114eec-18f5-3db1-a254-fbff8f7e8e1d,SESCO,II.5.1,Rio Negro,AR-R,annual,2022,gas oil combustion consumption by agriculture machines,93.22572,TJ,CO2,74100.0,kg/TJ,6908025.852,kg -b8b848e0-8b2c-3d46-bb75-229b407049d6,SESCO,II.5.1,Rio Negro,AR-R,annual,2022,gas oil combustion consumption by agriculture machines,93.22572,TJ,CH4,3.9,kg/TJ,363.580308,kg -b8b848e0-8b2c-3d46-bb75-229b407049d6,SESCO,II.5.1,Rio Negro,AR-R,annual,2022,gas oil combustion consumption by agriculture machines,93.22572,TJ,N2O,3.9,kg/TJ,363.580308,kg -9c18c547-acc8-3cec-8f85-b042c704a042,SESCO,II.5.1,Salta,AR-A,annual,2022,gas oil combustion consumption by agriculture machines,391.902,TJ,CO2,74100.0,kg/TJ,29039938.2,kg -4f1ad5b2-9dde-3555-b671-77c62e1bcd52,SESCO,II.5.1,Salta,AR-A,annual,2022,gas oil combustion consumption by agriculture machines,391.902,TJ,CH4,3.9,kg/TJ,1528.4178,kg -4f1ad5b2-9dde-3555-b671-77c62e1bcd52,SESCO,II.5.1,Salta,AR-A,annual,2022,gas oil combustion consumption by agriculture machines,391.902,TJ,N2O,3.9,kg/TJ,1528.4178,kg -fbf54cde-6fe3-3a8d-82e8-20045ab8dbab,SESCO,II.5.1,San Juan,AR-J,annual,2022,gas oil combustion consumption by agriculture machines,95.82636,TJ,CO2,74100.0,kg/TJ,7100733.276,kg -88a5a031-5f76-3d8b-bb20-6a1fde9c6f31,SESCO,II.5.1,San Juan,AR-J,annual,2022,gas oil combustion consumption by agriculture machines,95.82636,TJ,CH4,3.9,kg/TJ,373.722804,kg -88a5a031-5f76-3d8b-bb20-6a1fde9c6f31,SESCO,II.5.1,San Juan,AR-J,annual,2022,gas oil combustion consumption by agriculture machines,95.82636,TJ,N2O,3.9,kg/TJ,373.722804,kg -954dc51f-3377-3281-8fab-00282b561267,SESCO,II.5.1,San Luis,AR-D,annual,2022,gas oil combustion consumption by agriculture machines,56.81676,TJ,CO2,74100.0,kg/TJ,4210121.916,kg -6f2f7812-9393-304b-8a8e-116600c40322,SESCO,II.5.1,San Luis,AR-D,annual,2022,gas oil combustion consumption by agriculture machines,56.81676,TJ,CH4,3.9,kg/TJ,221.585364,kg -6f2f7812-9393-304b-8a8e-116600c40322,SESCO,II.5.1,San Luis,AR-D,annual,2022,gas oil combustion consumption by agriculture machines,56.81676,TJ,N2O,3.9,kg/TJ,221.585364,kg -b1914241-9e2e-3616-b517-b9397e41e1ac,SESCO,II.5.1,Santa Fe,AR-S,annual,2022,gas oil combustion consumption by agriculture machines,955.04892,TJ,CO2,74100.0,kg/TJ,70769124.972,kg -0bb2d34b-9e90-30da-9d78-b695bb6aaead,SESCO,II.5.1,Santa Fe,AR-S,annual,2022,gas oil combustion consumption by agriculture machines,955.04892,TJ,CH4,3.9,kg/TJ,3724.690788,kg -0bb2d34b-9e90-30da-9d78-b695bb6aaead,SESCO,II.5.1,Santa Fe,AR-S,annual,2022,gas oil combustion consumption by agriculture machines,955.04892,TJ,N2O,3.9,kg/TJ,3724.690788,kg -9532a1bd-937a-3205-8b53-ef5b1839c396,SESCO,II.5.1,Santiago del Estero,AR-G,annual,2022,gas oil combustion consumption by agriculture machines,306.6588,TJ,CO2,74100.0,kg/TJ,22723417.08,kg -3dbfd496-1c27-3dd9-90d7-4aeb3fdf8adc,SESCO,II.5.1,Santiago del Estero,AR-G,annual,2022,gas oil combustion consumption by agriculture machines,306.6588,TJ,CH4,3.9,kg/TJ,1195.96932,kg -3dbfd496-1c27-3dd9-90d7-4aeb3fdf8adc,SESCO,II.5.1,Santiago del Estero,AR-G,annual,2022,gas oil combustion consumption by agriculture machines,306.6588,TJ,N2O,3.9,kg/TJ,1195.96932,kg -ab88fb10-3dae-3ae0-b824-b34d833a73ce,SESCO,II.5.1,Tucuman,AR-T,annual,2022,gas oil combustion consumption by agriculture machines,198.2988,TJ,CO2,74100.0,kg/TJ,14693941.08,kg -bed109ec-d579-3262-98bc-cdd3c98bdd87,SESCO,II.5.1,Tucuman,AR-T,annual,2022,gas oil combustion consumption by agriculture machines,198.2988,TJ,CH4,3.9,kg/TJ,773.36532,kg -bed109ec-d579-3262-98bc-cdd3c98bdd87,SESCO,II.5.1,Tucuman,AR-T,annual,2022,gas oil combustion consumption by agriculture machines,198.2988,TJ,N2O,3.9,kg/TJ,773.36532,kg -40d65c8d-4638-391f-979f-6eb467f3354e,SESCO,II.5.1,Buenos Aires,AR-B,annual,2022,jet kerosene combustion consumption by agriculture machines,4.5292319999999995,TJ,CO2,71500.0,kg/TJ,323840.088,kg -6febe512-ac57-30f1-b0ae-7730b5c8fcdd,SESCO,II.5.1,Buenos Aires,AR-B,annual,2022,jet kerosene combustion consumption by agriculture machines,4.5292319999999995,TJ,CH4,0.5,kg/TJ,2.2646159999999997,kg -9874d6b7-f348-39bc-9eed-a138af9c4975,SESCO,II.5.1,Buenos Aires,AR-B,annual,2022,jet kerosene combustion consumption by agriculture machines,4.5292319999999995,TJ,N2O,2.0,kg/TJ,9.058463999999999,kg -d891a249-0d3b-35be-a5cc-ef04c9a98509,SESCO,II.5.1,La Pampa,AR-L,annual,2022,jet kerosene combustion consumption by agriculture machines,0.22017099999999995,TJ,CO2,71500.0,kg/TJ,15742.226499999997,kg -ee03073d-9725-3ef3-ab35-e110df465517,SESCO,II.5.1,La Pampa,AR-L,annual,2022,jet kerosene combustion consumption by agriculture machines,0.22017099999999995,TJ,CH4,0.5,kg/TJ,0.11008549999999998,kg -d3dcdefd-96ac-303f-b0e8-ba6f4b286079,SESCO,II.5.1,La Pampa,AR-L,annual,2022,jet kerosene combustion consumption by agriculture machines,0.22017099999999995,TJ,N2O,2.0,kg/TJ,0.4403419999999999,kg -be2a9b83-fefc-3f00-9e41-dcce22a0788f,SESCO,II.5.1,Santa Fe,AR-S,annual,2022,jet kerosene combustion consumption by agriculture machines,0.5661539999999999,TJ,CO2,71500.0,kg/TJ,40480.011,kg -3d7cf76a-3a0b-32c3-9edf-0617086eb265,SESCO,II.5.1,Santa Fe,AR-S,annual,2022,jet kerosene combustion consumption by agriculture machines,0.5661539999999999,TJ,CH4,0.5,kg/TJ,0.28307699999999997,kg -287cd96d-70fb-34ea-924e-a52cb435fdc2,SESCO,II.5.1,Santa Fe,AR-S,annual,2022,jet kerosene combustion consumption by agriculture machines,0.5661539999999999,TJ,N2O,2.0,kg/TJ,1.1323079999999999,kg -77dec686-d1e9-34b7-8b89-1cfe5b1f5078,SESCO,II.1.1,Buenos Aires,AR-B,annual,2022,gas oil combustion consumption by to the public,26754.33684,TJ,CO2,74100.0,kg/TJ,1982496359.844,kg -a211fd10-aa8b-3cae-8ad6-98e6e5377186,SESCO,II.1.1,Buenos Aires,AR-B,annual,2022,gas oil combustion consumption by to the public,26754.33684,TJ,CH4,3.9,kg/TJ,104341.913676,kg -a211fd10-aa8b-3cae-8ad6-98e6e5377186,SESCO,II.1.1,Buenos Aires,AR-B,annual,2022,gas oil combustion consumption by to the public,26754.33684,TJ,N2O,3.9,kg/TJ,104341.913676,kg -628073e0-2f25-3a5c-b24f-791a79b6dab1,SESCO,II.1.1,Capital Federal,AR-C,annual,2022,gas oil combustion consumption by to the public,2895.921,TJ,CO2,74100.0,kg/TJ,214587746.1,kg -4cecc1da-e2ab-3cc9-96b8-3c8f4659e7e9,SESCO,II.1.1,Capital Federal,AR-C,annual,2022,gas oil combustion consumption by to the public,2895.921,TJ,CH4,3.9,kg/TJ,11294.0919,kg -4cecc1da-e2ab-3cc9-96b8-3c8f4659e7e9,SESCO,II.1.1,Capital Federal,AR-C,annual,2022,gas oil combustion consumption by to the public,2895.921,TJ,N2O,3.9,kg/TJ,11294.0919,kg -a73e6348-b21e-355a-b184-c9c17d60fba6,SESCO,II.1.1,Catamarca,AR-K,annual,2022,gas oil combustion consumption by to the public,404.79684,TJ,CO2,74100.0,kg/TJ,29995445.843999997,kg -aea9907b-0121-3cdc-aa2f-b8c66308d079,SESCO,II.1.1,Catamarca,AR-K,annual,2022,gas oil combustion consumption by to the public,404.79684,TJ,CH4,3.9,kg/TJ,1578.7076759999998,kg -aea9907b-0121-3cdc-aa2f-b8c66308d079,SESCO,II.1.1,Catamarca,AR-K,annual,2022,gas oil combustion consumption by to the public,404.79684,TJ,N2O,3.9,kg/TJ,1578.7076759999998,kg -742ffb9a-d859-3184-9a92-de8e66df9b50,SESCO,II.1.1,Chaco,AR-H,annual,2022,gas oil combustion consumption by to the public,1858.0128,TJ,CO2,74100.0,kg/TJ,137678748.48,kg -e96f0963-d3b9-3761-83db-3e0b3cf6674f,SESCO,II.1.1,Chaco,AR-H,annual,2022,gas oil combustion consumption by to the public,1858.0128,TJ,CH4,3.9,kg/TJ,7246.249919999999,kg -e96f0963-d3b9-3761-83db-3e0b3cf6674f,SESCO,II.1.1,Chaco,AR-H,annual,2022,gas oil combustion consumption by to the public,1858.0128,TJ,N2O,3.9,kg/TJ,7246.249919999999,kg -682f6a10-be8f-3835-8de3-580231f52d1f,SESCO,II.1.1,Chubut,AR-U,annual,2022,gas oil combustion consumption by to the public,2669.15964,TJ,CO2,74100.0,kg/TJ,197784729.324,kg -0f82f66b-e8d7-379a-88d6-c8aa717aad2f,SESCO,II.1.1,Chubut,AR-U,annual,2022,gas oil combustion consumption by to the public,2669.15964,TJ,CH4,3.9,kg/TJ,10409.722596,kg -0f82f66b-e8d7-379a-88d6-c8aa717aad2f,SESCO,II.1.1,Chubut,AR-U,annual,2022,gas oil combustion consumption by to the public,2669.15964,TJ,N2O,3.9,kg/TJ,10409.722596,kg -e61e9292-9b2a-3472-92f5-129d69836f91,SESCO,II.1.1,Corrientes,AR-W,annual,2022,gas oil combustion consumption by to the public,1766.268,TJ,CO2,74100.0,kg/TJ,130880458.8,kg -f64c4337-3b53-3253-a177-6f8359573b0f,SESCO,II.1.1,Corrientes,AR-W,annual,2022,gas oil combustion consumption by to the public,1766.268,TJ,CH4,3.9,kg/TJ,6888.4452,kg -f64c4337-3b53-3253-a177-6f8359573b0f,SESCO,II.1.1,Corrientes,AR-W,annual,2022,gas oil combustion consumption by to the public,1766.268,TJ,N2O,3.9,kg/TJ,6888.4452,kg -27b7b078-5e57-32b8-ab80-5dc21630007b,SESCO,II.1.1,Córdoba,AR-X,annual,2022,gas oil combustion consumption by to the public,10342.52856,TJ,CO2,74100.0,kg/TJ,766381366.296,kg -83008ea8-0ba7-3d6c-ab5e-a8a38b496a8f,SESCO,II.1.1,Córdoba,AR-X,annual,2022,gas oil combustion consumption by to the public,10342.52856,TJ,CH4,3.9,kg/TJ,40335.861384,kg -83008ea8-0ba7-3d6c-ab5e-a8a38b496a8f,SESCO,II.1.1,Córdoba,AR-X,annual,2022,gas oil combustion consumption by to the public,10342.52856,TJ,N2O,3.9,kg/TJ,40335.861384,kg -4e64c9ea-bab0-3f81-a37a-739399e4b574,SESCO,II.1.1,Entre Rios,AR-E,annual,2022,gas oil combustion consumption by to the public,3752.72352,TJ,CO2,74100.0,kg/TJ,278076812.832,kg -e258ef39-1d00-3ebe-891a-9b545e95ed71,SESCO,II.1.1,Entre Rios,AR-E,annual,2022,gas oil combustion consumption by to the public,3752.72352,TJ,CH4,3.9,kg/TJ,14635.621728,kg -e258ef39-1d00-3ebe-891a-9b545e95ed71,SESCO,II.1.1,Entre Rios,AR-E,annual,2022,gas oil combustion consumption by to the public,3752.72352,TJ,N2O,3.9,kg/TJ,14635.621728,kg -2ccce4d9-9259-3f25-b7b7-3c14d08f3c8b,SESCO,II.1.1,Formosa,AR-P,annual,2022,gas oil combustion consumption by to the public,549.06012,TJ,CO2,74100.0,kg/TJ,40685354.892,kg -b681d84f-ddb7-3ff5-927a-ea81b45ee589,SESCO,II.1.1,Formosa,AR-P,annual,2022,gas oil combustion consumption by to the public,549.06012,TJ,CH4,3.9,kg/TJ,2141.334468,kg -b681d84f-ddb7-3ff5-927a-ea81b45ee589,SESCO,II.1.1,Formosa,AR-P,annual,2022,gas oil combustion consumption by to the public,549.06012,TJ,N2O,3.9,kg/TJ,2141.334468,kg -a71e354e-655a-3ee0-a4ab-69030eccc4ae,SESCO,II.1.1,Jujuy,AR-Y,annual,2022,gas oil combustion consumption by to the public,1478.24712,TJ,CO2,74100.0,kg/TJ,109538111.592,kg -63cece7a-2132-35be-804b-f729545fdfb6,SESCO,II.1.1,Jujuy,AR-Y,annual,2022,gas oil combustion consumption by to the public,1478.24712,TJ,CH4,3.9,kg/TJ,5765.163767999999,kg -63cece7a-2132-35be-804b-f729545fdfb6,SESCO,II.1.1,Jujuy,AR-Y,annual,2022,gas oil combustion consumption by to the public,1478.24712,TJ,N2O,3.9,kg/TJ,5765.163767999999,kg -c2c41051-a594-3d63-abe4-444360adaf48,SESCO,II.1.1,La Pampa,AR-L,annual,2022,gas oil combustion consumption by to the public,2842.75236,TJ,CO2,74100.0,kg/TJ,210647949.876,kg -381ae695-825d-3735-aca5-2c5aec25972c,SESCO,II.1.1,La Pampa,AR-L,annual,2022,gas oil combustion consumption by to the public,2842.75236,TJ,CH4,3.9,kg/TJ,11086.734204,kg -381ae695-825d-3735-aca5-2c5aec25972c,SESCO,II.1.1,La Pampa,AR-L,annual,2022,gas oil combustion consumption by to the public,2842.75236,TJ,N2O,3.9,kg/TJ,11086.734204,kg -90383480-e4b3-374b-a433-0c0deb27d1f6,SESCO,II.1.1,La Rioja,AR-F,annual,2022,gas oil combustion consumption by to the public,509.90604,TJ,CO2,74100.0,kg/TJ,37784037.564,kg -6055e9dc-9659-3952-94e7-03f45a5f0ebe,SESCO,II.1.1,La Rioja,AR-F,annual,2022,gas oil combustion consumption by to the public,509.90604,TJ,CH4,3.9,kg/TJ,1988.633556,kg -6055e9dc-9659-3952-94e7-03f45a5f0ebe,SESCO,II.1.1,La Rioja,AR-F,annual,2022,gas oil combustion consumption by to the public,509.90604,TJ,N2O,3.9,kg/TJ,1988.633556,kg -f4693b66-215d-383f-8c49-89f8ae3718a8,SESCO,II.1.1,Mendoza,AR-M,annual,2022,gas oil combustion consumption by to the public,8860.92228,TJ,CO2,74100.0,kg/TJ,656594340.9480001,kg -403a49ee-b2d7-3bf0-86a4-39578c14df39,SESCO,II.1.1,Mendoza,AR-M,annual,2022,gas oil combustion consumption by to the public,8860.92228,TJ,CH4,3.9,kg/TJ,34557.596892,kg -403a49ee-b2d7-3bf0-86a4-39578c14df39,SESCO,II.1.1,Mendoza,AR-M,annual,2022,gas oil combustion consumption by to the public,8860.92228,TJ,N2O,3.9,kg/TJ,34557.596892,kg -52fefedf-8b97-3822-94c4-ef4729af9d9a,SESCO,II.1.1,Misiones,AR-N,annual,2022,gas oil combustion consumption by to the public,2903.3256,TJ,CO2,74100.0,kg/TJ,215136426.96,kg -81147453-870c-3f51-931f-54d8b4e65a02,SESCO,II.1.1,Misiones,AR-N,annual,2022,gas oil combustion consumption by to the public,2903.3256,TJ,CH4,3.9,kg/TJ,11322.96984,kg -81147453-870c-3f51-931f-54d8b4e65a02,SESCO,II.1.1,Misiones,AR-N,annual,2022,gas oil combustion consumption by to the public,2903.3256,TJ,N2O,3.9,kg/TJ,11322.96984,kg -5767c084-d57a-3aba-9002-46ae1ad320d0,SESCO,II.1.1,Neuquén,AR-Q,annual,2022,gas oil combustion consumption by to the public,1666.14336,TJ,CO2,74100.0,kg/TJ,123461222.976,kg -55779c30-22bc-39e5-b21e-4265c13f3fc6,SESCO,II.1.1,Neuquén,AR-Q,annual,2022,gas oil combustion consumption by to the public,1666.14336,TJ,CH4,3.9,kg/TJ,6497.959104,kg -55779c30-22bc-39e5-b21e-4265c13f3fc6,SESCO,II.1.1,Neuquén,AR-Q,annual,2022,gas oil combustion consumption by to the public,1666.14336,TJ,N2O,3.9,kg/TJ,6497.959104,kg -690967af-e24b-328d-849f-bd5cbe138567,SESCO,II.1.1,Rio Negro,AR-R,annual,2022,gas oil combustion consumption by to the public,3180.51048,TJ,CO2,74100.0,kg/TJ,235675826.568,kg -c19f292c-375a-35da-be5a-acc316cdf2f5,SESCO,II.1.1,Rio Negro,AR-R,annual,2022,gas oil combustion consumption by to the public,3180.51048,TJ,CH4,3.9,kg/TJ,12403.990871999998,kg -c19f292c-375a-35da-be5a-acc316cdf2f5,SESCO,II.1.1,Rio Negro,AR-R,annual,2022,gas oil combustion consumption by to the public,3180.51048,TJ,N2O,3.9,kg/TJ,12403.990871999998,kg -024288b5-a3f1-30fb-9a5b-d751c3da5575,SESCO,II.1.1,Salta,AR-A,annual,2022,gas oil combustion consumption by to the public,3414.31524,TJ,CO2,74100.0,kg/TJ,253000759.28399998,kg -2399417f-dbf1-3f00-9cd5-ee17ffe6cf45,SESCO,II.1.1,Salta,AR-A,annual,2022,gas oil combustion consumption by to the public,3414.31524,TJ,CH4,3.9,kg/TJ,13315.829436,kg -2399417f-dbf1-3f00-9cd5-ee17ffe6cf45,SESCO,II.1.1,Salta,AR-A,annual,2022,gas oil combustion consumption by to the public,3414.31524,TJ,N2O,3.9,kg/TJ,13315.829436,kg -c8dc555f-d758-36e8-858f-e94f277e529f,SESCO,II.1.1,San Juan,AR-J,annual,2022,gas oil combustion consumption by to the public,1470.30072,TJ,CO2,74100.0,kg/TJ,108949283.352,kg -f2fb756b-5e95-3160-9ec5-d27518111dcd,SESCO,II.1.1,San Juan,AR-J,annual,2022,gas oil combustion consumption by to the public,1470.30072,TJ,CH4,3.9,kg/TJ,5734.172807999999,kg -f2fb756b-5e95-3160-9ec5-d27518111dcd,SESCO,II.1.1,San Juan,AR-J,annual,2022,gas oil combustion consumption by to the public,1470.30072,TJ,N2O,3.9,kg/TJ,5734.172807999999,kg -0d6f7f41-e182-3fd9-aa1a-1029e6520847,SESCO,II.1.1,San Luis,AR-D,annual,2022,gas oil combustion consumption by to the public,1299.16416,TJ,CO2,74100.0,kg/TJ,96268064.256,kg -2648b7f3-5e72-38e1-8c14-c184467f7c28,SESCO,II.1.1,San Luis,AR-D,annual,2022,gas oil combustion consumption by to the public,1299.16416,TJ,CH4,3.9,kg/TJ,5066.740224,kg -2648b7f3-5e72-38e1-8c14-c184467f7c28,SESCO,II.1.1,San Luis,AR-D,annual,2022,gas oil combustion consumption by to the public,1299.16416,TJ,N2O,3.9,kg/TJ,5066.740224,kg -81b5f476-da83-3e65-8a78-e7ac6e58c1a4,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2022,gas oil combustion consumption by to the public,1627.206,TJ,CO2,74100.0,kg/TJ,120575964.6,kg -21582b32-3269-3c11-a510-c3b476226934,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2022,gas oil combustion consumption by to the public,1627.206,TJ,CH4,3.9,kg/TJ,6346.103399999999,kg -21582b32-3269-3c11-a510-c3b476226934,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2022,gas oil combustion consumption by to the public,1627.206,TJ,N2O,3.9,kg/TJ,6346.103399999999,kg -a4885f80-891b-3169-b9a1-afd7802f2bf6,SESCO,II.1.1,Santa Fe,AR-S,annual,2022,gas oil combustion consumption by to the public,6821.00916,TJ,CO2,74100.0,kg/TJ,505436778.756,kg -a3b35b36-c7f1-3820-8d06-35802888890a,SESCO,II.1.1,Santa Fe,AR-S,annual,2022,gas oil combustion consumption by to the public,6821.00916,TJ,CH4,3.9,kg/TJ,26601.935724,kg -a3b35b36-c7f1-3820-8d06-35802888890a,SESCO,II.1.1,Santa Fe,AR-S,annual,2022,gas oil combustion consumption by to the public,6821.00916,TJ,N2O,3.9,kg/TJ,26601.935724,kg -c08d2cad-b5d1-3b30-8a7c-cd44c9321807,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2022,gas oil combustion consumption by to the public,2058.2982,TJ,CO2,74100.0,kg/TJ,152519896.62,kg -0a9c1bf5-6d56-374f-a064-18d75416969d,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2022,gas oil combustion consumption by to the public,2058.2982,TJ,CH4,3.9,kg/TJ,8027.362980000001,kg -0a9c1bf5-6d56-374f-a064-18d75416969d,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2022,gas oil combustion consumption by to the public,2058.2982,TJ,N2O,3.9,kg/TJ,8027.362980000001,kg -6c0216cb-cf32-34c1-b96a-ceea44997d2c,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2022,gas oil combustion consumption by to the public,706.39884,TJ,CO2,74100.0,kg/TJ,52344154.044,kg -8fcb01cc-8042-32cc-a4c9-e9f45940dde8,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2022,gas oil combustion consumption by to the public,706.39884,TJ,CH4,3.9,kg/TJ,2754.9554759999996,kg -8fcb01cc-8042-32cc-a4c9-e9f45940dde8,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2022,gas oil combustion consumption by to the public,706.39884,TJ,N2O,3.9,kg/TJ,2754.9554759999996,kg -95e7a064-fd81-3bc3-886a-bbc59e86798b,SESCO,II.1.1,Tucuman,AR-T,annual,2022,gas oil combustion consumption by to the public,2216.79276,TJ,CO2,74100.0,kg/TJ,164264343.51599997,kg -a33719f1-58c6-394b-852a-2a2053184683,SESCO,II.1.1,Tucuman,AR-T,annual,2022,gas oil combustion consumption by to the public,2216.79276,TJ,CH4,3.9,kg/TJ,8645.491763999999,kg -a33719f1-58c6-394b-852a-2a2053184683,SESCO,II.1.1,Tucuman,AR-T,annual,2022,gas oil combustion consumption by to the public,2216.79276,TJ,N2O,3.9,kg/TJ,8645.491763999999,kg -d66b736e-ffc8-37be-8a2e-ec55b37f051a,SESCO,II.1.1,Buenos Aires,AR-B,annual,2022,gas oil combustion consumption by to the public,17216.0562,TJ,CO2,74100.0,kg/TJ,1275709764.4199998,kg -96bee3f0-3789-3350-9ce4-d9535fe125e3,SESCO,II.1.1,Buenos Aires,AR-B,annual,2022,gas oil combustion consumption by to the public,17216.0562,TJ,CH4,3.9,kg/TJ,67142.61918,kg -96bee3f0-3789-3350-9ce4-d9535fe125e3,SESCO,II.1.1,Buenos Aires,AR-B,annual,2022,gas oil combustion consumption by to the public,17216.0562,TJ,N2O,3.9,kg/TJ,67142.61918,kg -ac778fde-a0c8-3ad7-833c-8ffcd308b159,SESCO,II.1.1,Capital Federal,AR-C,annual,2022,gas oil combustion consumption by to the public,2297.88216,TJ,CO2,74100.0,kg/TJ,170273068.056,kg -33a386d5-f36f-3a68-9cf6-29ae3250f105,SESCO,II.1.1,Capital Federal,AR-C,annual,2022,gas oil combustion consumption by to the public,2297.88216,TJ,CH4,3.9,kg/TJ,8961.740424,kg -33a386d5-f36f-3a68-9cf6-29ae3250f105,SESCO,II.1.1,Capital Federal,AR-C,annual,2022,gas oil combustion consumption by to the public,2297.88216,TJ,N2O,3.9,kg/TJ,8961.740424,kg -03e979ef-02fa-31b5-9591-c5e62143dcb2,SESCO,II.1.1,Catamarca,AR-K,annual,2022,gas oil combustion consumption by to the public,549.89088,TJ,CO2,74100.0,kg/TJ,40746914.208000004,kg -e7e4992f-db4e-35ea-992e-1699701267b2,SESCO,II.1.1,Catamarca,AR-K,annual,2022,gas oil combustion consumption by to the public,549.89088,TJ,CH4,3.9,kg/TJ,2144.574432,kg -e7e4992f-db4e-35ea-992e-1699701267b2,SESCO,II.1.1,Catamarca,AR-K,annual,2022,gas oil combustion consumption by to the public,549.89088,TJ,N2O,3.9,kg/TJ,2144.574432,kg -24ba5018-e984-3dc2-853b-3322add4edcd,SESCO,II.1.1,Chaco,AR-H,annual,2022,gas oil combustion consumption by to the public,1509.31032,TJ,CO2,74100.0,kg/TJ,111839894.712,kg -f5894679-ddf5-3c3c-bb19-d8eab1736351,SESCO,II.1.1,Chaco,AR-H,annual,2022,gas oil combustion consumption by to the public,1509.31032,TJ,CH4,3.9,kg/TJ,5886.310248,kg -f5894679-ddf5-3c3c-bb19-d8eab1736351,SESCO,II.1.1,Chaco,AR-H,annual,2022,gas oil combustion consumption by to the public,1509.31032,TJ,N2O,3.9,kg/TJ,5886.310248,kg -d6ba379b-7866-3acc-a842-3e98b2778fb8,SESCO,II.1.1,Chubut,AR-U,annual,2022,gas oil combustion consumption by to the public,2059.77912,TJ,CO2,74100.0,kg/TJ,152629632.79200003,kg -f4556f9f-6e3b-343f-8fb6-340ce0412dfb,SESCO,II.1.1,Chubut,AR-U,annual,2022,gas oil combustion consumption by to the public,2059.77912,TJ,CH4,3.9,kg/TJ,8033.138568,kg -f4556f9f-6e3b-343f-8fb6-340ce0412dfb,SESCO,II.1.1,Chubut,AR-U,annual,2022,gas oil combustion consumption by to the public,2059.77912,TJ,N2O,3.9,kg/TJ,8033.138568,kg -37c0b580-21ee-33e2-a38d-c0ef95f54d0e,SESCO,II.1.1,Corrientes,AR-W,annual,2022,gas oil combustion consumption by to the public,1560.2033999999999,TJ,CO2,74100.0,kg/TJ,115611071.94,kg -86c52ccd-f3f4-3e5f-a64a-467c41a4fbce,SESCO,II.1.1,Corrientes,AR-W,annual,2022,gas oil combustion consumption by to the public,1560.2033999999999,TJ,CH4,3.9,kg/TJ,6084.7932599999995,kg -86c52ccd-f3f4-3e5f-a64a-467c41a4fbce,SESCO,II.1.1,Corrientes,AR-W,annual,2022,gas oil combustion consumption by to the public,1560.2033999999999,TJ,N2O,3.9,kg/TJ,6084.7932599999995,kg -04c32420-a286-3de7-80de-0dd00f247b05,SESCO,II.1.1,Córdoba,AR-X,annual,2022,gas oil combustion consumption by to the public,5833.70508,TJ,CO2,74100.0,kg/TJ,432277546.428,kg -01d1908d-d99a-3a8b-a00a-9e8db49acb4a,SESCO,II.1.1,Córdoba,AR-X,annual,2022,gas oil combustion consumption by to the public,5833.70508,TJ,CH4,3.9,kg/TJ,22751.449812,kg -01d1908d-d99a-3a8b-a00a-9e8db49acb4a,SESCO,II.1.1,Córdoba,AR-X,annual,2022,gas oil combustion consumption by to the public,5833.70508,TJ,N2O,3.9,kg/TJ,22751.449812,kg -1e4d934a-a46c-315a-aa70-c33ba8e10bd6,SESCO,II.1.1,Entre Rios,AR-E,annual,2022,gas oil combustion consumption by to the public,2134.2585599999998,TJ,CO2,74100.0,kg/TJ,158148559.29599997,kg -350dc6e3-09ea-378f-993c-ea102bb02a39,SESCO,II.1.1,Entre Rios,AR-E,annual,2022,gas oil combustion consumption by to the public,2134.2585599999998,TJ,CH4,3.9,kg/TJ,8323.608384,kg -350dc6e3-09ea-378f-993c-ea102bb02a39,SESCO,II.1.1,Entre Rios,AR-E,annual,2022,gas oil combustion consumption by to the public,2134.2585599999998,TJ,N2O,3.9,kg/TJ,8323.608384,kg -ab69020a-e84c-3fff-ab7a-9d3d7e915447,SESCO,II.1.1,Formosa,AR-P,annual,2022,gas oil combustion consumption by to the public,506.61912,TJ,CO2,74100.0,kg/TJ,37540476.792,kg -fa1cbc25-7762-3ccb-80c8-3c3a63739c12,SESCO,II.1.1,Formosa,AR-P,annual,2022,gas oil combustion consumption by to the public,506.61912,TJ,CH4,3.9,kg/TJ,1975.814568,kg -fa1cbc25-7762-3ccb-80c8-3c3a63739c12,SESCO,II.1.1,Formosa,AR-P,annual,2022,gas oil combustion consumption by to the public,506.61912,TJ,N2O,3.9,kg/TJ,1975.814568,kg -cafd2d88-7f7c-3eae-9798-60268ae906fe,SESCO,II.1.1,Jujuy,AR-Y,annual,2022,gas oil combustion consumption by to the public,1084.79196,TJ,CO2,74100.0,kg/TJ,80383084.236,kg -fdd3b936-bfb2-37e9-aef6-8e3f25571eb6,SESCO,II.1.1,Jujuy,AR-Y,annual,2022,gas oil combustion consumption by to the public,1084.79196,TJ,CH4,3.9,kg/TJ,4230.688644,kg -fdd3b936-bfb2-37e9-aef6-8e3f25571eb6,SESCO,II.1.1,Jujuy,AR-Y,annual,2022,gas oil combustion consumption by to the public,1084.79196,TJ,N2O,3.9,kg/TJ,4230.688644,kg -95050006-993e-37e3-a706-bca5a8844967,SESCO,II.1.1,La Pampa,AR-L,annual,2022,gas oil combustion consumption by to the public,1637.139,TJ,CO2,74100.0,kg/TJ,121311999.89999999,kg -2d7961c6-4de3-3149-b665-da53f9f43a7e,SESCO,II.1.1,La Pampa,AR-L,annual,2022,gas oil combustion consumption by to the public,1637.139,TJ,CH4,3.9,kg/TJ,6384.8421,kg -2d7961c6-4de3-3149-b665-da53f9f43a7e,SESCO,II.1.1,La Pampa,AR-L,annual,2022,gas oil combustion consumption by to the public,1637.139,TJ,N2O,3.9,kg/TJ,6384.8421,kg -e0b0f0cd-1178-33b6-b5eb-933e7ef24c23,SESCO,II.1.1,La Rioja,AR-F,annual,2022,gas oil combustion consumption by to the public,630.51072,TJ,CO2,74100.0,kg/TJ,46720844.352,kg -beb2f4cf-61b2-3f91-8d84-c01bc868d31d,SESCO,II.1.1,La Rioja,AR-F,annual,2022,gas oil combustion consumption by to the public,630.51072,TJ,CH4,3.9,kg/TJ,2458.9918079999998,kg -beb2f4cf-61b2-3f91-8d84-c01bc868d31d,SESCO,II.1.1,La Rioja,AR-F,annual,2022,gas oil combustion consumption by to the public,630.51072,TJ,N2O,3.9,kg/TJ,2458.9918079999998,kg -bcab7445-1cfc-39fb-8fe2-c05d11271cb4,SESCO,II.1.1,Mendoza,AR-M,annual,2022,gas oil combustion consumption by to the public,4743.2422799999995,TJ,CO2,74100.0,kg/TJ,351474252.94799995,kg -4deb1607-6f59-30fc-b941-6417e0f572ca,SESCO,II.1.1,Mendoza,AR-M,annual,2022,gas oil combustion consumption by to the public,4743.2422799999995,TJ,CH4,3.9,kg/TJ,18498.644891999997,kg -4deb1607-6f59-30fc-b941-6417e0f572ca,SESCO,II.1.1,Mendoza,AR-M,annual,2022,gas oil combustion consumption by to the public,4743.2422799999995,TJ,N2O,3.9,kg/TJ,18498.644891999997,kg -1ca3c0c5-0a22-3e3f-87b7-cb3575911ced,SESCO,II.1.1,Misiones,AR-N,annual,2022,gas oil combustion consumption by to the public,2046.1618799999999,TJ,CO2,74100.0,kg/TJ,151620595.308,kg -691290d0-29c9-3047-9d2d-69966aa21c1e,SESCO,II.1.1,Misiones,AR-N,annual,2022,gas oil combustion consumption by to the public,2046.1618799999999,TJ,CH4,3.9,kg/TJ,7980.031332,kg -691290d0-29c9-3047-9d2d-69966aa21c1e,SESCO,II.1.1,Misiones,AR-N,annual,2022,gas oil combustion consumption by to the public,2046.1618799999999,TJ,N2O,3.9,kg/TJ,7980.031332,kg -8fc8b952-27d3-3fe6-9a44-0197fa5b6019,SESCO,II.1.1,Neuquén,AR-Q,annual,2022,gas oil combustion consumption by to the public,2630.94468,TJ,CO2,74100.0,kg/TJ,194953000.78800002,kg -7bafe647-80c0-3e48-92e5-b5b6840af684,SESCO,II.1.1,Neuquén,AR-Q,annual,2022,gas oil combustion consumption by to the public,2630.94468,TJ,CH4,3.9,kg/TJ,10260.684252,kg -7bafe647-80c0-3e48-92e5-b5b6840af684,SESCO,II.1.1,Neuquén,AR-Q,annual,2022,gas oil combustion consumption by to the public,2630.94468,TJ,N2O,3.9,kg/TJ,10260.684252,kg -9ded7d8b-ef95-3383-9bfb-43efa6663a11,SESCO,II.1.1,Rio Negro,AR-R,annual,2022,gas oil combustion consumption by to the public,2064.6192,TJ,CO2,74100.0,kg/TJ,152988282.72,kg -f39c3cb7-3146-31dd-8140-23583ba5876b,SESCO,II.1.1,Rio Negro,AR-R,annual,2022,gas oil combustion consumption by to the public,2064.6192,TJ,CH4,3.9,kg/TJ,8052.01488,kg -f39c3cb7-3146-31dd-8140-23583ba5876b,SESCO,II.1.1,Rio Negro,AR-R,annual,2022,gas oil combustion consumption by to the public,2064.6192,TJ,N2O,3.9,kg/TJ,8052.01488,kg -7fb134b3-069a-3b6b-bb4b-71d83d72e6c3,SESCO,II.1.1,Salta,AR-A,annual,2022,gas oil combustion consumption by to the public,2373.084,TJ,CO2,74100.0,kg/TJ,175845524.39999998,kg -c90b54a0-3fda-37a9-93be-7bcc89f856bd,SESCO,II.1.1,Salta,AR-A,annual,2022,gas oil combustion consumption by to the public,2373.084,TJ,CH4,3.9,kg/TJ,9255.0276,kg -c90b54a0-3fda-37a9-93be-7bcc89f856bd,SESCO,II.1.1,Salta,AR-A,annual,2022,gas oil combustion consumption by to the public,2373.084,TJ,N2O,3.9,kg/TJ,9255.0276,kg -cda32ef6-8136-337e-bbf6-6fe9a8a70ae1,SESCO,II.1.1,San Juan,AR-J,annual,2022,gas oil combustion consumption by to the public,897.6903599999999,TJ,CO2,74100.0,kg/TJ,66518855.676,kg -0badd97d-4917-33fc-be1c-c6f175ec0342,SESCO,II.1.1,San Juan,AR-J,annual,2022,gas oil combustion consumption by to the public,897.6903599999999,TJ,CH4,3.9,kg/TJ,3500.9924039999996,kg -0badd97d-4917-33fc-be1c-c6f175ec0342,SESCO,II.1.1,San Juan,AR-J,annual,2022,gas oil combustion consumption by to the public,897.6903599999999,TJ,N2O,3.9,kg/TJ,3500.9924039999996,kg -effb261d-2f6d-3c3c-a3d1-cf926540cc66,SESCO,II.1.1,San Luis,AR-D,annual,2022,gas oil combustion consumption by to the public,836.93652,TJ,CO2,74100.0,kg/TJ,62016996.132,kg -078ec1e3-0a58-31e2-bc59-ad6cf86c2c1f,SESCO,II.1.1,San Luis,AR-D,annual,2022,gas oil combustion consumption by to the public,836.93652,TJ,CH4,3.9,kg/TJ,3264.052428,kg -078ec1e3-0a58-31e2-bc59-ad6cf86c2c1f,SESCO,II.1.1,San Luis,AR-D,annual,2022,gas oil combustion consumption by to the public,836.93652,TJ,N2O,3.9,kg/TJ,3264.052428,kg -d256308e-2ad4-3059-b64d-e46bb9ae696f,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2022,gas oil combustion consumption by to the public,1748.96652,TJ,CO2,74100.0,kg/TJ,129598419.132,kg -5b8e1105-4133-3d94-a0e8-11a035a628d7,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2022,gas oil combustion consumption by to the public,1748.96652,TJ,CH4,3.9,kg/TJ,6820.969427999999,kg -5b8e1105-4133-3d94-a0e8-11a035a628d7,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2022,gas oil combustion consumption by to the public,1748.96652,TJ,N2O,3.9,kg/TJ,6820.969427999999,kg -32617e32-64c3-3e23-bd46-7c561dfadb45,SESCO,II.1.1,Santa Fe,AR-S,annual,2022,gas oil combustion consumption by to the public,4444.60212,TJ,CO2,74100.0,kg/TJ,329345017.09199995,kg -ba2f7402-62bc-3fd8-8053-88efc89ee594,SESCO,II.1.1,Santa Fe,AR-S,annual,2022,gas oil combustion consumption by to the public,4444.60212,TJ,CH4,3.9,kg/TJ,17333.948267999996,kg -ba2f7402-62bc-3fd8-8053-88efc89ee594,SESCO,II.1.1,Santa Fe,AR-S,annual,2022,gas oil combustion consumption by to the public,4444.60212,TJ,N2O,3.9,kg/TJ,17333.948267999996,kg -df0f6ce3-35bf-3cdd-bb29-f03adcc2afab,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2022,gas oil combustion consumption by to the public,1182.35208,TJ,CO2,74100.0,kg/TJ,87612289.12799999,kg -389094ff-3fc0-30f1-b283-58c33c07fe70,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2022,gas oil combustion consumption by to the public,1182.35208,TJ,CH4,3.9,kg/TJ,4611.1731119999995,kg -389094ff-3fc0-30f1-b283-58c33c07fe70,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2022,gas oil combustion consumption by to the public,1182.35208,TJ,N2O,3.9,kg/TJ,4611.1731119999995,kg -55d2c3f1-ea3e-3866-886e-ec456e640347,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2022,gas oil combustion consumption by to the public,427.69692,TJ,CO2,74100.0,kg/TJ,31692341.772,kg -093388ea-74a1-37d0-a3c1-19b69d5dcf72,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2022,gas oil combustion consumption by to the public,427.69692,TJ,CH4,3.9,kg/TJ,1668.0179879999998,kg -093388ea-74a1-37d0-a3c1-19b69d5dcf72,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2022,gas oil combustion consumption by to the public,427.69692,TJ,N2O,3.9,kg/TJ,1668.0179879999998,kg -77bce7b8-d549-3b21-a820-9a8f2b8d2878,SESCO,II.1.1,Tucuman,AR-T,annual,2022,gas oil combustion consumption by to the public,1580.68344,TJ,CO2,74100.0,kg/TJ,117128642.904,kg -79a37276-d05b-30d7-9b73-e0ed7fb7ea6b,SESCO,II.1.1,Tucuman,AR-T,annual,2022,gas oil combustion consumption by to the public,1580.68344,TJ,CH4,3.9,kg/TJ,6164.665416,kg -79a37276-d05b-30d7-9b73-e0ed7fb7ea6b,SESCO,II.1.1,Tucuman,AR-T,annual,2022,gas oil combustion consumption by to the public,1580.68344,TJ,N2O,3.9,kg/TJ,6164.665416,kg -07627e93-69d2-3a77-8231-1b30b1fe5f89,SESCO,II.1.1,Buenos Aires,AR-B,annual,2022,jet kerosene combustion consumption by to the public,101.12139499999998,TJ,CO2,71500.0,kg/TJ,7230179.742499999,kg -913113fa-4806-301b-b133-8e9f2ff41082,SESCO,II.1.1,Buenos Aires,AR-B,annual,2022,jet kerosene combustion consumption by to the public,101.12139499999998,TJ,CH4,0.5,kg/TJ,50.56069749999999,kg -59b2339c-4fc2-3e30-bfb4-bd09cec1ecea,SESCO,II.1.1,Buenos Aires,AR-B,annual,2022,jet kerosene combustion consumption by to the public,101.12139499999998,TJ,N2O,2.0,kg/TJ,202.24278999999996,kg -c35d1b95-9457-3972-85f7-70d70eb9d3d1,SESCO,II.1.1,Capital Federal,AR-C,annual,2022,jet kerosene combustion consumption by to the public,2.8936759999999997,TJ,CO2,71500.0,kg/TJ,206897.83399999997,kg -762bca92-0e84-3eaf-993b-c3a620e5fc63,SESCO,II.1.1,Capital Federal,AR-C,annual,2022,jet kerosene combustion consumption by to the public,2.8936759999999997,TJ,CH4,0.5,kg/TJ,1.4468379999999998,kg -03aa3d30-8c12-356c-b5e0-960d1d7c5c4a,SESCO,II.1.1,Capital Federal,AR-C,annual,2022,jet kerosene combustion consumption by to the public,2.8936759999999997,TJ,N2O,2.0,kg/TJ,5.787351999999999,kg -e6577b56-9130-3825-b304-458feb941ed9,SESCO,II.1.1,Catamarca,AR-K,annual,2022,jet kerosene combustion consumption by to the public,2.5791459999999997,TJ,CO2,71500.0,kg/TJ,184408.93899999998,kg -5c34a6ba-6a83-31b0-85eb-aa44be7013bd,SESCO,II.1.1,Catamarca,AR-K,annual,2022,jet kerosene combustion consumption by to the public,2.5791459999999997,TJ,CH4,0.5,kg/TJ,1.2895729999999999,kg -f7cf1b99-acb1-3ed5-8d06-90c973ac8461,SESCO,II.1.1,Catamarca,AR-K,annual,2022,jet kerosene combustion consumption by to the public,2.5791459999999997,TJ,N2O,2.0,kg/TJ,5.158291999999999,kg -715175ad-4a72-3fb2-b91c-2d5cb94cb5fc,SESCO,II.1.1,Chubut,AR-U,annual,2022,jet kerosene combustion consumption by to the public,7.863249999999999,TJ,CO2,71500.0,kg/TJ,562222.3749999999,kg -21758d03-65af-340b-a683-c0b97a18b2cd,SESCO,II.1.1,Chubut,AR-U,annual,2022,jet kerosene combustion consumption by to the public,7.863249999999999,TJ,CH4,0.5,kg/TJ,3.9316249999999995,kg -a643c96e-1304-3d5a-9892-212ee71cd6f3,SESCO,II.1.1,Chubut,AR-U,annual,2022,jet kerosene combustion consumption by to the public,7.863249999999999,TJ,N2O,2.0,kg/TJ,15.726499999999998,kg -69fbd5b8-bcf4-3693-ba24-db75e7610a53,SESCO,II.1.1,Corrientes,AR-W,annual,2022,jet kerosene combustion consumption by to the public,1.5411969999999997,TJ,CO2,71500.0,kg/TJ,110195.58549999997,kg -1d4dbb50-d877-3819-8bcc-7becd5891578,SESCO,II.1.1,Corrientes,AR-W,annual,2022,jet kerosene combustion consumption by to the public,1.5411969999999997,TJ,CH4,0.5,kg/TJ,0.7705984999999999,kg -5d5e0e71-bb50-3980-992a-e07ce73d1c3e,SESCO,II.1.1,Corrientes,AR-W,annual,2022,jet kerosene combustion consumption by to the public,1.5411969999999997,TJ,N2O,2.0,kg/TJ,3.0823939999999994,kg -7d96befa-5a16-3d20-be50-d9abca16af76,SESCO,II.1.1,Córdoba,AR-X,annual,2022,jet kerosene combustion consumption by to the public,32.459495999999994,TJ,CO2,71500.0,kg/TJ,2320853.9639999997,kg -763aa021-1785-3042-92dd-78465e2c6458,SESCO,II.1.1,Córdoba,AR-X,annual,2022,jet kerosene combustion consumption by to the public,32.459495999999994,TJ,CH4,0.5,kg/TJ,16.229747999999997,kg -36c0da1b-2b67-348d-8598-23d20fa72c52,SESCO,II.1.1,Córdoba,AR-X,annual,2022,jet kerosene combustion consumption by to the public,32.459495999999994,TJ,N2O,2.0,kg/TJ,64.91899199999999,kg -f52ecc76-7994-32ca-ae03-941975016970,SESCO,II.1.1,Entre Rios,AR-E,annual,2022,jet kerosene combustion consumption by to the public,3.837265999999999,TJ,CO2,71500.0,kg/TJ,274364.5189999999,kg -2f7cbfcd-4a08-3023-bcff-6ad09305e8e0,SESCO,II.1.1,Entre Rios,AR-E,annual,2022,jet kerosene combustion consumption by to the public,3.837265999999999,TJ,CH4,0.5,kg/TJ,1.9186329999999996,kg -77a6b7d0-0a0e-3e04-9490-8923c5fbfb1e,SESCO,II.1.1,Entre Rios,AR-E,annual,2022,jet kerosene combustion consumption by to the public,3.837265999999999,TJ,N2O,2.0,kg/TJ,7.674531999999998,kg -d9acfbef-7b6d-3ed4-b024-b3a5e0e83e32,SESCO,II.1.1,La Pampa,AR-L,annual,2022,jet kerosene combustion consumption by to the public,2.1702569999999994,TJ,CO2,71500.0,kg/TJ,155173.37549999997,kg -e5de27c7-1075-3560-bf60-760c64c53fb1,SESCO,II.1.1,La Pampa,AR-L,annual,2022,jet kerosene combustion consumption by to the public,2.1702569999999994,TJ,CH4,0.5,kg/TJ,1.0851284999999997,kg -99c0ef34-ecdd-3e45-8d86-81c1afe6eb92,SESCO,II.1.1,La Pampa,AR-L,annual,2022,jet kerosene combustion consumption by to the public,2.1702569999999994,TJ,N2O,2.0,kg/TJ,4.340513999999999,kg -c50502fc-365d-32cf-a981-89854d53e2df,SESCO,II.1.1,La Rioja,AR-F,annual,2022,jet kerosene combustion consumption by to the public,1.25812,TJ,CO2,71500.0,kg/TJ,89955.57999999999,kg -dd07598f-8e80-3d8a-8300-a331aa1db7b5,SESCO,II.1.1,La Rioja,AR-F,annual,2022,jet kerosene combustion consumption by to the public,1.25812,TJ,CH4,0.5,kg/TJ,0.62906,kg -fce8b486-f09c-3275-87b4-fe0d55d6e478,SESCO,II.1.1,La Rioja,AR-F,annual,2022,jet kerosene combustion consumption by to the public,1.25812,TJ,N2O,2.0,kg/TJ,2.51624,kg -45ab1593-d2af-35bb-aed6-16ae1fdd110d,SESCO,II.1.1,Mendoza,AR-M,annual,2022,jet kerosene combustion consumption by to the public,12.109404999999999,TJ,CO2,71500.0,kg/TJ,865822.4574999999,kg -03b1574a-704a-3507-a2a8-a7d7e881203f,SESCO,II.1.1,Mendoza,AR-M,annual,2022,jet kerosene combustion consumption by to the public,12.109404999999999,TJ,CH4,0.5,kg/TJ,6.054702499999999,kg -e382b45a-f0e0-3391-aa54-5ba340677a4f,SESCO,II.1.1,Mendoza,AR-M,annual,2022,jet kerosene combustion consumption by to the public,12.109404999999999,TJ,N2O,2.0,kg/TJ,24.218809999999998,kg -4c4b16eb-503d-3d2f-8056-8067b799738c,SESCO,II.1.1,Neuquén,AR-Q,annual,2022,jet kerosene combustion consumption by to the public,3.8058129999999992,TJ,CO2,71500.0,kg/TJ,272115.6294999999,kg -ac8d6288-572d-3494-95a8-0bd84ce5fa84,SESCO,II.1.1,Neuquén,AR-Q,annual,2022,jet kerosene combustion consumption by to the public,3.8058129999999992,TJ,CH4,0.5,kg/TJ,1.9029064999999996,kg -53883955-8aa6-3443-a43a-95e8087d400c,SESCO,II.1.1,Neuquén,AR-Q,annual,2022,jet kerosene combustion consumption by to the public,3.8058129999999992,TJ,N2O,2.0,kg/TJ,7.6116259999999984,kg -ffe47b64-2227-3371-9630-29cd6a33cc15,SESCO,II.1.1,San Juan,AR-J,annual,2022,jet kerosene combustion consumption by to the public,13.304618999999997,TJ,CO2,71500.0,kg/TJ,951280.2584999998,kg -e74853a2-6ec8-3f0a-b58e-ac990ac35328,SESCO,II.1.1,San Juan,AR-J,annual,2022,jet kerosene combustion consumption by to the public,13.304618999999997,TJ,CH4,0.5,kg/TJ,6.6523094999999985,kg -17f382fc-d032-3a26-8d03-3ed45bdde49a,SESCO,II.1.1,San Juan,AR-J,annual,2022,jet kerosene combustion consumption by to the public,13.304618999999997,TJ,N2O,2.0,kg/TJ,26.609237999999994,kg -abf485fe-6ad4-3705-9b86-0e2e8a591189,SESCO,II.1.1,San Luis,AR-D,annual,2022,jet kerosene combustion consumption by to the public,3.5541889999999996,TJ,CO2,71500.0,kg/TJ,254124.51349999997,kg -203665b0-d58a-3496-a367-70ed90c78c34,SESCO,II.1.1,San Luis,AR-D,annual,2022,jet kerosene combustion consumption by to the public,3.5541889999999996,TJ,CH4,0.5,kg/TJ,1.7770944999999998,kg -a545db78-346e-3930-951f-2cd694169e19,SESCO,II.1.1,San Luis,AR-D,annual,2022,jet kerosene combustion consumption by to the public,3.5541889999999996,TJ,N2O,2.0,kg/TJ,7.108377999999999,kg -06dbbfd7-894c-329e-a893-11b3d4f63325,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2022,jet kerosene combustion consumption by to the public,4.5292319999999995,TJ,CO2,71500.0,kg/TJ,323840.088,kg -f5561a63-57e6-310f-9e48-30e652dcb0a8,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2022,jet kerosene combustion consumption by to the public,4.5292319999999995,TJ,CH4,0.5,kg/TJ,2.2646159999999997,kg -81243336-4196-365c-ada1-737af83d8752,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2022,jet kerosene combustion consumption by to the public,4.5292319999999995,TJ,N2O,2.0,kg/TJ,9.058463999999999,kg -8cb7da96-0b64-3815-8771-143083b0b164,SESCO,II.1.1,Santa Fe,AR-S,annual,2022,jet kerosene combustion consumption by to the public,20.12992,TJ,CO2,71500.0,kg/TJ,1439289.2799999998,kg -2107248a-a9da-3566-a421-d380b9f2e6f6,SESCO,II.1.1,Santa Fe,AR-S,annual,2022,jet kerosene combustion consumption by to the public,20.12992,TJ,CH4,0.5,kg/TJ,10.06496,kg -d04784b1-281f-3ec4-b776-13db825a471f,SESCO,II.1.1,Santa Fe,AR-S,annual,2022,jet kerosene combustion consumption by to the public,20.12992,TJ,N2O,2.0,kg/TJ,40.25984,kg -33de1a95-41f5-3238-b139-2ed069408e96,SESCO,II.1.1,Tucuman,AR-T,annual,2022,jet kerosene combustion consumption by to the public,9.561711999999998,TJ,CO2,71500.0,kg/TJ,683662.4079999998,kg -949d2b21-7983-340e-a15b-3abb6a9d4e8e,SESCO,II.1.1,Tucuman,AR-T,annual,2022,jet kerosene combustion consumption by to the public,9.561711999999998,TJ,CH4,0.5,kg/TJ,4.780855999999999,kg -4881e48e-860e-3994-a9fa-5c81422cce47,SESCO,II.1.1,Tucuman,AR-T,annual,2022,jet kerosene combustion consumption by to the public,9.561711999999998,TJ,N2O,2.0,kg/TJ,19.123423999999996,kg -9a46e9e5-76d8-3401-b147-5cb356a76637,SESCO,II.1.1,Buenos Aires,AR-B,annual,2022,gas oil combustion consumption by freight transport,11881.24056,TJ,CO2,74100.0,kg/TJ,880399925.496,kg -6fc8ffb2-957b-34bd-8811-1bf37a3a6506,SESCO,II.1.1,Buenos Aires,AR-B,annual,2022,gas oil combustion consumption by freight transport,11881.24056,TJ,CH4,3.9,kg/TJ,46336.838184,kg -6fc8ffb2-957b-34bd-8811-1bf37a3a6506,SESCO,II.1.1,Buenos Aires,AR-B,annual,2022,gas oil combustion consumption by freight transport,11881.24056,TJ,N2O,3.9,kg/TJ,46336.838184,kg -567595e1-56bb-363d-9b0b-bc2de0914c9d,SESCO,II.1.1,Capital Federal,AR-C,annual,2022,gas oil combustion consumption by freight transport,926.36964,TJ,CO2,74100.0,kg/TJ,68643990.324,kg -fb87d2bb-cb40-32a1-8aa4-61859679e2b3,SESCO,II.1.1,Capital Federal,AR-C,annual,2022,gas oil combustion consumption by freight transport,926.36964,TJ,CH4,3.9,kg/TJ,3612.8415959999998,kg -fb87d2bb-cb40-32a1-8aa4-61859679e2b3,SESCO,II.1.1,Capital Federal,AR-C,annual,2022,gas oil combustion consumption by freight transport,926.36964,TJ,N2O,3.9,kg/TJ,3612.8415959999998,kg -ed1f1d46-c236-3c65-add2-7e114126d5af,SESCO,II.1.1,Catamarca,AR-K,annual,2022,gas oil combustion consumption by freight transport,60.97056,TJ,CO2,74100.0,kg/TJ,4517918.496,kg -63f21f65-3165-36a3-bb72-b18adf72c4bb,SESCO,II.1.1,Catamarca,AR-K,annual,2022,gas oil combustion consumption by freight transport,60.97056,TJ,CH4,3.9,kg/TJ,237.785184,kg -63f21f65-3165-36a3-bb72-b18adf72c4bb,SESCO,II.1.1,Catamarca,AR-K,annual,2022,gas oil combustion consumption by freight transport,60.97056,TJ,N2O,3.9,kg/TJ,237.785184,kg -af966add-c5bd-3e9c-94f0-6a40875cb4ac,SESCO,II.1.1,Chaco,AR-H,annual,2022,gas oil combustion consumption by freight transport,357.19068,TJ,CO2,74100.0,kg/TJ,26467829.388,kg -5e15718e-e204-3e65-98f6-48a672940472,SESCO,II.1.1,Chaco,AR-H,annual,2022,gas oil combustion consumption by freight transport,357.19068,TJ,CH4,3.9,kg/TJ,1393.0436519999998,kg -5e15718e-e204-3e65-98f6-48a672940472,SESCO,II.1.1,Chaco,AR-H,annual,2022,gas oil combustion consumption by freight transport,357.19068,TJ,N2O,3.9,kg/TJ,1393.0436519999998,kg -cc446ea6-0700-3445-b351-bced8f32b060,SESCO,II.1.1,Chubut,AR-U,annual,2022,gas oil combustion consumption by freight transport,989.00172,TJ,CO2,74100.0,kg/TJ,73285027.45199999,kg -fcf7339f-7dc4-3993-9e03-e6c31dfce0c4,SESCO,II.1.1,Chubut,AR-U,annual,2022,gas oil combustion consumption by freight transport,989.00172,TJ,CH4,3.9,kg/TJ,3857.106708,kg -fcf7339f-7dc4-3993-9e03-e6c31dfce0c4,SESCO,II.1.1,Chubut,AR-U,annual,2022,gas oil combustion consumption by freight transport,989.00172,TJ,N2O,3.9,kg/TJ,3857.106708,kg -53a33e49-cbbb-388b-9582-004fecfc35d7,SESCO,II.1.1,Corrientes,AR-W,annual,2022,gas oil combustion consumption by freight transport,693.1428,TJ,CO2,74100.0,kg/TJ,51361881.48,kg -06c17eb2-8657-3669-9db5-147c8d874fc3,SESCO,II.1.1,Corrientes,AR-W,annual,2022,gas oil combustion consumption by freight transport,693.1428,TJ,CH4,3.9,kg/TJ,2703.25692,kg -06c17eb2-8657-3669-9db5-147c8d874fc3,SESCO,II.1.1,Corrientes,AR-W,annual,2022,gas oil combustion consumption by freight transport,693.1428,TJ,N2O,3.9,kg/TJ,2703.25692,kg -504bcfe4-ef2d-39b5-8943-1a9b9ef7d779,SESCO,II.1.1,Córdoba,AR-X,annual,2022,gas oil combustion consumption by freight transport,3371.36856,TJ,CO2,74100.0,kg/TJ,249818410.296,kg -bc5330ba-1126-3418-bfa2-f73783ed9d34,SESCO,II.1.1,Córdoba,AR-X,annual,2022,gas oil combustion consumption by freight transport,3371.36856,TJ,CH4,3.9,kg/TJ,13148.337383999999,kg -bc5330ba-1126-3418-bfa2-f73783ed9d34,SESCO,II.1.1,Córdoba,AR-X,annual,2022,gas oil combustion consumption by freight transport,3371.36856,TJ,N2O,3.9,kg/TJ,13148.337383999999,kg -ae3bba37-5f4d-314e-b0be-cf29e168c5af,SESCO,II.1.1,Entre Rios,AR-E,annual,2022,gas oil combustion consumption by freight transport,1240.79424,TJ,CO2,74100.0,kg/TJ,91942853.184,kg -67d5b1d6-452b-345b-9f7a-bbc731583f2c,SESCO,II.1.1,Entre Rios,AR-E,annual,2022,gas oil combustion consumption by freight transport,1240.79424,TJ,CH4,3.9,kg/TJ,4839.097535999999,kg -67d5b1d6-452b-345b-9f7a-bbc731583f2c,SESCO,II.1.1,Entre Rios,AR-E,annual,2022,gas oil combustion consumption by freight transport,1240.79424,TJ,N2O,3.9,kg/TJ,4839.097535999999,kg -f37aec70-d844-3349-854d-684bfbd4af6f,SESCO,II.1.1,Formosa,AR-P,annual,2022,gas oil combustion consumption by freight transport,82.7148,TJ,CO2,74100.0,kg/TJ,6129166.68,kg -03089df9-8511-32e9-81a9-ab8c0418e0a6,SESCO,II.1.1,Formosa,AR-P,annual,2022,gas oil combustion consumption by freight transport,82.7148,TJ,CH4,3.9,kg/TJ,322.58772,kg -03089df9-8511-32e9-81a9-ab8c0418e0a6,SESCO,II.1.1,Formosa,AR-P,annual,2022,gas oil combustion consumption by freight transport,82.7148,TJ,N2O,3.9,kg/TJ,322.58772,kg -10982dd2-2413-3716-b70f-e21a8a7eecee,SESCO,II.1.1,Jujuy,AR-Y,annual,2022,gas oil combustion consumption by freight transport,152.46251999999998,TJ,CO2,74100.0,kg/TJ,11297472.731999999,kg -2c2f474e-cae1-3909-8d32-b096869f6c93,SESCO,II.1.1,Jujuy,AR-Y,annual,2022,gas oil combustion consumption by freight transport,152.46251999999998,TJ,CH4,3.9,kg/TJ,594.6038279999999,kg -2c2f474e-cae1-3909-8d32-b096869f6c93,SESCO,II.1.1,Jujuy,AR-Y,annual,2022,gas oil combustion consumption by freight transport,152.46251999999998,TJ,N2O,3.9,kg/TJ,594.6038279999999,kg -e3977fb5-93fa-3b50-85d3-7746dae43908,SESCO,II.1.1,La Pampa,AR-L,annual,2022,gas oil combustion consumption by freight transport,1334.0922,TJ,CO2,74100.0,kg/TJ,98856232.02000001,kg -2db36dc7-dcd9-356f-bcf3-256e9d80ed1d,SESCO,II.1.1,La Pampa,AR-L,annual,2022,gas oil combustion consumption by freight transport,1334.0922,TJ,CH4,3.9,kg/TJ,5202.95958,kg -2db36dc7-dcd9-356f-bcf3-256e9d80ed1d,SESCO,II.1.1,La Pampa,AR-L,annual,2022,gas oil combustion consumption by freight transport,1334.0922,TJ,N2O,3.9,kg/TJ,5202.95958,kg -e6c6a4a1-543b-34ae-a56a-29c7661565bb,SESCO,II.1.1,La Rioja,AR-F,annual,2022,gas oil combustion consumption by freight transport,103.15872,TJ,CO2,74100.0,kg/TJ,7644061.152,kg -d4b2256d-0930-3cab-aaec-32e474327254,SESCO,II.1.1,La Rioja,AR-F,annual,2022,gas oil combustion consumption by freight transport,103.15872,TJ,CH4,3.9,kg/TJ,402.319008,kg -d4b2256d-0930-3cab-aaec-32e474327254,SESCO,II.1.1,La Rioja,AR-F,annual,2022,gas oil combustion consumption by freight transport,103.15872,TJ,N2O,3.9,kg/TJ,402.319008,kg -4f83528a-0af0-3d36-a461-de62c5279f33,SESCO,II.1.1,Mendoza,AR-M,annual,2022,gas oil combustion consumption by freight transport,1915.47972,TJ,CO2,74100.0,kg/TJ,141937047.252,kg -f0f9004d-7c67-3353-82fd-272ccd72fbe0,SESCO,II.1.1,Mendoza,AR-M,annual,2022,gas oil combustion consumption by freight transport,1915.47972,TJ,CH4,3.9,kg/TJ,7470.370908,kg -f0f9004d-7c67-3353-82fd-272ccd72fbe0,SESCO,II.1.1,Mendoza,AR-M,annual,2022,gas oil combustion consumption by freight transport,1915.47972,TJ,N2O,3.9,kg/TJ,7470.370908,kg -705e112f-c15d-3740-83b2-b520dbae39de,SESCO,II.1.1,Misiones,AR-N,annual,2022,gas oil combustion consumption by freight transport,428.925,TJ,CO2,74100.0,kg/TJ,31783342.5,kg -5845a53f-a19f-3839-8e9b-794521ad206c,SESCO,II.1.1,Misiones,AR-N,annual,2022,gas oil combustion consumption by freight transport,428.925,TJ,CH4,3.9,kg/TJ,1672.8075000000001,kg -5845a53f-a19f-3839-8e9b-794521ad206c,SESCO,II.1.1,Misiones,AR-N,annual,2022,gas oil combustion consumption by freight transport,428.925,TJ,N2O,3.9,kg/TJ,1672.8075000000001,kg -dafec2f8-e3b0-346a-81ed-c134f91bf8ae,SESCO,II.1.1,Neuquén,AR-Q,annual,2022,gas oil combustion consumption by freight transport,1151.07216,TJ,CO2,74100.0,kg/TJ,85294447.056,kg -365f45fc-784a-3e92-b98b-df40f377d87f,SESCO,II.1.1,Neuquén,AR-Q,annual,2022,gas oil combustion consumption by freight transport,1151.07216,TJ,CH4,3.9,kg/TJ,4489.181423999999,kg -365f45fc-784a-3e92-b98b-df40f377d87f,SESCO,II.1.1,Neuquén,AR-Q,annual,2022,gas oil combustion consumption by freight transport,1151.07216,TJ,N2O,3.9,kg/TJ,4489.181423999999,kg -f3007e82-ece5-310f-adb9-8bf18b5bed03,SESCO,II.1.1,Rio Negro,AR-R,annual,2022,gas oil combustion consumption by freight transport,1269.58188,TJ,CO2,74100.0,kg/TJ,94076017.308,kg -d35962ff-2ce1-3f84-b6c2-3a48d83884c1,SESCO,II.1.1,Rio Negro,AR-R,annual,2022,gas oil combustion consumption by freight transport,1269.58188,TJ,CH4,3.9,kg/TJ,4951.369331999999,kg -d35962ff-2ce1-3f84-b6c2-3a48d83884c1,SESCO,II.1.1,Rio Negro,AR-R,annual,2022,gas oil combustion consumption by freight transport,1269.58188,TJ,N2O,3.9,kg/TJ,4951.369331999999,kg -47c66b38-db3b-3276-a4d9-f2d05348e10e,SESCO,II.1.1,Salta,AR-A,annual,2022,gas oil combustion consumption by freight transport,1042.63992,TJ,CO2,74100.0,kg/TJ,77259618.07200001,kg -3edbfc65-0414-3c93-a7ce-94a020d26c91,SESCO,II.1.1,Salta,AR-A,annual,2022,gas oil combustion consumption by freight transport,1042.63992,TJ,CH4,3.9,kg/TJ,4066.295688,kg -3edbfc65-0414-3c93-a7ce-94a020d26c91,SESCO,II.1.1,Salta,AR-A,annual,2022,gas oil combustion consumption by freight transport,1042.63992,TJ,N2O,3.9,kg/TJ,4066.295688,kg -cef17e7f-dc50-33a3-a253-c576292fea68,SESCO,II.1.1,San Juan,AR-J,annual,2022,gas oil combustion consumption by freight transport,150.04247999999998,TJ,CO2,74100.0,kg/TJ,11118147.768,kg -45775ce1-d35a-3530-993e-83fa7e1c9e75,SESCO,II.1.1,San Juan,AR-J,annual,2022,gas oil combustion consumption by freight transport,150.04247999999998,TJ,CH4,3.9,kg/TJ,585.165672,kg -45775ce1-d35a-3530-993e-83fa7e1c9e75,SESCO,II.1.1,San Juan,AR-J,annual,2022,gas oil combustion consumption by freight transport,150.04247999999998,TJ,N2O,3.9,kg/TJ,585.165672,kg -0ef28ff9-6d10-3592-8a8a-6574a7734d32,SESCO,II.1.1,San Luis,AR-D,annual,2022,gas oil combustion consumption by freight transport,530.38608,TJ,CO2,74100.0,kg/TJ,39301608.528,kg -58c2abdc-2ea1-30be-ae44-0eec659f719c,SESCO,II.1.1,San Luis,AR-D,annual,2022,gas oil combustion consumption by freight transport,530.38608,TJ,CH4,3.9,kg/TJ,2068.505712,kg -58c2abdc-2ea1-30be-ae44-0eec659f719c,SESCO,II.1.1,San Luis,AR-D,annual,2022,gas oil combustion consumption by freight transport,530.38608,TJ,N2O,3.9,kg/TJ,2068.505712,kg -264a2f96-9b7e-376a-885d-74de25b6a55a,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2022,gas oil combustion consumption by freight transport,797.31288,TJ,CO2,74100.0,kg/TJ,59080884.408,kg -70e81e10-8493-3c95-b395-ee95c81b356a,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2022,gas oil combustion consumption by freight transport,797.31288,TJ,CH4,3.9,kg/TJ,3109.520232,kg -70e81e10-8493-3c95-b395-ee95c81b356a,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2022,gas oil combustion consumption by freight transport,797.31288,TJ,N2O,3.9,kg/TJ,3109.520232,kg -9d8d627e-d915-3302-962f-259a9bb8cb61,SESCO,II.1.1,Santa Fe,AR-S,annual,2022,gas oil combustion consumption by freight transport,3396.32748,TJ,CO2,74100.0,kg/TJ,251667866.268,kg -f9ff8091-41b1-3345-8a80-10101e337ec1,SESCO,II.1.1,Santa Fe,AR-S,annual,2022,gas oil combustion consumption by freight transport,3396.32748,TJ,CH4,3.9,kg/TJ,13245.677172,kg -f9ff8091-41b1-3345-8a80-10101e337ec1,SESCO,II.1.1,Santa Fe,AR-S,annual,2022,gas oil combustion consumption by freight transport,3396.32748,TJ,N2O,3.9,kg/TJ,13245.677172,kg -72a57eb6-28d6-3900-a3da-1fa4ab2cc9a9,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2022,gas oil combustion consumption by freight transport,821.94672,TJ,CO2,74100.0,kg/TJ,60906251.952,kg -c912071a-3c7b-376b-9b82-6d495ac65d95,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2022,gas oil combustion consumption by freight transport,821.94672,TJ,CH4,3.9,kg/TJ,3205.592208,kg -c912071a-3c7b-376b-9b82-6d495ac65d95,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2022,gas oil combustion consumption by freight transport,821.94672,TJ,N2O,3.9,kg/TJ,3205.592208,kg -69d8a47f-fc2e-3c2d-8fac-9f4f67d9ada9,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2022,gas oil combustion consumption by freight transport,317.38644,TJ,CO2,74100.0,kg/TJ,23518335.204,kg -c65aca5a-9b02-39ad-a6ee-dc7f7b6ea4d5,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2022,gas oil combustion consumption by freight transport,317.38644,TJ,CH4,3.9,kg/TJ,1237.807116,kg -c65aca5a-9b02-39ad-a6ee-dc7f7b6ea4d5,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2022,gas oil combustion consumption by freight transport,317.38644,TJ,N2O,3.9,kg/TJ,1237.807116,kg -159df942-b4b3-39ec-a5ec-9c2b84609fa5,SESCO,II.1.1,Tucuman,AR-T,annual,2022,gas oil combustion consumption by freight transport,402.08783999999997,TJ,CO2,74100.0,kg/TJ,29794708.944,kg -946b51cc-94ea-3e19-92a8-4bbcf55f2f0d,SESCO,II.1.1,Tucuman,AR-T,annual,2022,gas oil combustion consumption by freight transport,402.08783999999997,TJ,CH4,3.9,kg/TJ,1568.142576,kg -946b51cc-94ea-3e19-92a8-4bbcf55f2f0d,SESCO,II.1.1,Tucuman,AR-T,annual,2022,gas oil combustion consumption by freight transport,402.08783999999997,TJ,N2O,3.9,kg/TJ,1568.142576,kg -811f9605-7306-3e84-a2c0-3c0069da9a8e,SESCO,II.1.1,Buenos Aires,AR-B,annual,2022,gas oil combustion consumption by freight transport,5736.10884,TJ,CO2,74100.0,kg/TJ,425045665.04399997,kg -67f4b2a7-3145-3208-b4c5-ce16d4516c34,SESCO,II.1.1,Buenos Aires,AR-B,annual,2022,gas oil combustion consumption by freight transport,5736.10884,TJ,CH4,3.9,kg/TJ,22370.824475999998,kg -67f4b2a7-3145-3208-b4c5-ce16d4516c34,SESCO,II.1.1,Buenos Aires,AR-B,annual,2022,gas oil combustion consumption by freight transport,5736.10884,TJ,N2O,3.9,kg/TJ,22370.824475999998,kg -6543560e-4b73-38cf-9890-f0c15d5015a5,SESCO,II.1.1,Capital Federal,AR-C,annual,2022,gas oil combustion consumption by freight transport,506.83584,TJ,CO2,74100.0,kg/TJ,37556535.744,kg -9fa7d47b-d797-3a35-ae31-54c739b705dc,SESCO,II.1.1,Capital Federal,AR-C,annual,2022,gas oil combustion consumption by freight transport,506.83584,TJ,CH4,3.9,kg/TJ,1976.659776,kg -9fa7d47b-d797-3a35-ae31-54c739b705dc,SESCO,II.1.1,Capital Federal,AR-C,annual,2022,gas oil combustion consumption by freight transport,506.83584,TJ,N2O,3.9,kg/TJ,1976.659776,kg -b057635b-62b1-3bac-9fbc-cccd69b11d1d,SESCO,II.1.1,Catamarca,AR-K,annual,2022,gas oil combustion consumption by freight transport,51.97668,TJ,CO2,74100.0,kg/TJ,3851471.9880000004,kg -5fa9866a-5fae-37f7-9c89-48d1b8b9b006,SESCO,II.1.1,Catamarca,AR-K,annual,2022,gas oil combustion consumption by freight transport,51.97668,TJ,CH4,3.9,kg/TJ,202.709052,kg -5fa9866a-5fae-37f7-9c89-48d1b8b9b006,SESCO,II.1.1,Catamarca,AR-K,annual,2022,gas oil combustion consumption by freight transport,51.97668,TJ,N2O,3.9,kg/TJ,202.709052,kg -7adc8029-d76e-3d0f-a105-6bb869e4aafc,SESCO,II.1.1,Chaco,AR-H,annual,2022,gas oil combustion consumption by freight transport,252.58715999999998,TJ,CO2,74100.0,kg/TJ,18716708.555999998,kg -94b83e4e-f457-3a89-9d34-eab5865b7697,SESCO,II.1.1,Chaco,AR-H,annual,2022,gas oil combustion consumption by freight transport,252.58715999999998,TJ,CH4,3.9,kg/TJ,985.0899239999999,kg -94b83e4e-f457-3a89-9d34-eab5865b7697,SESCO,II.1.1,Chaco,AR-H,annual,2022,gas oil combustion consumption by freight transport,252.58715999999998,TJ,N2O,3.9,kg/TJ,985.0899239999999,kg -76c6d5cf-2f3c-3677-b2b9-5caf99cdf608,SESCO,II.1.1,Chubut,AR-U,annual,2022,gas oil combustion consumption by freight transport,585.46908,TJ,CO2,74100.0,kg/TJ,43383258.827999994,kg -8eaacc7b-cbb5-31b7-a335-a990eb28d614,SESCO,II.1.1,Chubut,AR-U,annual,2022,gas oil combustion consumption by freight transport,585.46908,TJ,CH4,3.9,kg/TJ,2283.3294119999996,kg -8eaacc7b-cbb5-31b7-a335-a990eb28d614,SESCO,II.1.1,Chubut,AR-U,annual,2022,gas oil combustion consumption by freight transport,585.46908,TJ,N2O,3.9,kg/TJ,2283.3294119999996,kg -682dd1b3-6c7f-30bf-a6f1-49279cedf04b,SESCO,II.1.1,Corrientes,AR-W,annual,2022,gas oil combustion consumption by freight transport,368.17116,TJ,CO2,74100.0,kg/TJ,27281482.956,kg -2b608fa0-7938-3f7e-af08-b8d7f1aec5be,SESCO,II.1.1,Corrientes,AR-W,annual,2022,gas oil combustion consumption by freight transport,368.17116,TJ,CH4,3.9,kg/TJ,1435.867524,kg -2b608fa0-7938-3f7e-af08-b8d7f1aec5be,SESCO,II.1.1,Corrientes,AR-W,annual,2022,gas oil combustion consumption by freight transport,368.17116,TJ,N2O,3.9,kg/TJ,1435.867524,kg -9f6b5691-5a8f-327b-9b25-f9a21b0c1d06,SESCO,II.1.1,Córdoba,AR-X,annual,2022,gas oil combustion consumption by freight transport,1125.8604,TJ,CO2,74100.0,kg/TJ,83426255.64,kg -578b51d3-53b1-3473-8eec-992b469b8072,SESCO,II.1.1,Córdoba,AR-X,annual,2022,gas oil combustion consumption by freight transport,1125.8604,TJ,CH4,3.9,kg/TJ,4390.85556,kg -578b51d3-53b1-3473-8eec-992b469b8072,SESCO,II.1.1,Córdoba,AR-X,annual,2022,gas oil combustion consumption by freight transport,1125.8604,TJ,N2O,3.9,kg/TJ,4390.85556,kg -21be53ed-d3b3-305f-b01e-26753f2e49a7,SESCO,II.1.1,Entre Rios,AR-E,annual,2022,gas oil combustion consumption by freight transport,503.22384,TJ,CO2,74100.0,kg/TJ,37288886.544,kg -83839430-cefa-3cfc-acf4-ae57b074a8e0,SESCO,II.1.1,Entre Rios,AR-E,annual,2022,gas oil combustion consumption by freight transport,503.22384,TJ,CH4,3.9,kg/TJ,1962.572976,kg -83839430-cefa-3cfc-acf4-ae57b074a8e0,SESCO,II.1.1,Entre Rios,AR-E,annual,2022,gas oil combustion consumption by freight transport,503.22384,TJ,N2O,3.9,kg/TJ,1962.572976,kg -cd5fc585-386b-3d7d-bde3-f93ab5571267,SESCO,II.1.1,Formosa,AR-P,annual,2022,gas oil combustion consumption by freight transport,93.22572,TJ,CO2,74100.0,kg/TJ,6908025.852,kg -2d5cc57d-b1e2-3cdb-899f-f7a3375494d8,SESCO,II.1.1,Formosa,AR-P,annual,2022,gas oil combustion consumption by freight transport,93.22572,TJ,CH4,3.9,kg/TJ,363.580308,kg -2d5cc57d-b1e2-3cdb-899f-f7a3375494d8,SESCO,II.1.1,Formosa,AR-P,annual,2022,gas oil combustion consumption by freight transport,93.22572,TJ,N2O,3.9,kg/TJ,363.580308,kg -f4afa39d-9db7-33dc-9098-aa4e649fdaa7,SESCO,II.1.1,Jujuy,AR-Y,annual,2022,gas oil combustion consumption by freight transport,98.35476,TJ,CO2,74100.0,kg/TJ,7288087.716,kg -136e5a89-a8fe-3ab4-bffa-a78dd1d829b8,SESCO,II.1.1,Jujuy,AR-Y,annual,2022,gas oil combustion consumption by freight transport,98.35476,TJ,CH4,3.9,kg/TJ,383.58356399999997,kg -136e5a89-a8fe-3ab4-bffa-a78dd1d829b8,SESCO,II.1.1,Jujuy,AR-Y,annual,2022,gas oil combustion consumption by freight transport,98.35476,TJ,N2O,3.9,kg/TJ,383.58356399999997,kg -b074bd9c-50f6-3113-8c24-966e02dea058,SESCO,II.1.1,La Pampa,AR-L,annual,2022,gas oil combustion consumption by freight transport,325.22447999999997,TJ,CO2,74100.0,kg/TJ,24099133.968,kg -05506725-950e-31ed-a187-cd3296d010a6,SESCO,II.1.1,La Pampa,AR-L,annual,2022,gas oil combustion consumption by freight transport,325.22447999999997,TJ,CH4,3.9,kg/TJ,1268.375472,kg -05506725-950e-31ed-a187-cd3296d010a6,SESCO,II.1.1,La Pampa,AR-L,annual,2022,gas oil combustion consumption by freight transport,325.22447999999997,TJ,N2O,3.9,kg/TJ,1268.375472,kg -43e53287-dd3d-3646-b72e-24c942284068,SESCO,II.1.1,La Rioja,AR-F,annual,2022,gas oil combustion consumption by freight transport,108.57672,TJ,CO2,74100.0,kg/TJ,8045534.952,kg -80d57fb8-9cd6-31f1-b376-e815de947452,SESCO,II.1.1,La Rioja,AR-F,annual,2022,gas oil combustion consumption by freight transport,108.57672,TJ,CH4,3.9,kg/TJ,423.44920799999994,kg -80d57fb8-9cd6-31f1-b376-e815de947452,SESCO,II.1.1,La Rioja,AR-F,annual,2022,gas oil combustion consumption by freight transport,108.57672,TJ,N2O,3.9,kg/TJ,423.44920799999994,kg -9bc8e58c-3ea2-303a-9e18-12be68fb4166,SESCO,II.1.1,Mendoza,AR-M,annual,2022,gas oil combustion consumption by freight transport,760.10928,TJ,CO2,74100.0,kg/TJ,56324097.648,kg -cfe25618-219e-36a9-b50f-b72c3c0830cd,SESCO,II.1.1,Mendoza,AR-M,annual,2022,gas oil combustion consumption by freight transport,760.10928,TJ,CH4,3.9,kg/TJ,2964.426192,kg -cfe25618-219e-36a9-b50f-b72c3c0830cd,SESCO,II.1.1,Mendoza,AR-M,annual,2022,gas oil combustion consumption by freight transport,760.10928,TJ,N2O,3.9,kg/TJ,2964.426192,kg -682b1051-b11b-316c-9471-8c1ec59c09f0,SESCO,II.1.1,Misiones,AR-N,annual,2022,gas oil combustion consumption by freight transport,276.4986,TJ,CO2,74100.0,kg/TJ,20488546.26,kg -9ca7af0b-ab2c-38f0-ac64-99b0929ab00f,SESCO,II.1.1,Misiones,AR-N,annual,2022,gas oil combustion consumption by freight transport,276.4986,TJ,CH4,3.9,kg/TJ,1078.34454,kg -9ca7af0b-ab2c-38f0-ac64-99b0929ab00f,SESCO,II.1.1,Misiones,AR-N,annual,2022,gas oil combustion consumption by freight transport,276.4986,TJ,N2O,3.9,kg/TJ,1078.34454,kg -f6195692-b202-312e-9076-15b1b2cd777e,SESCO,II.1.1,Neuquén,AR-Q,annual,2022,gas oil combustion consumption by freight transport,1573.67616,TJ,CO2,74100.0,kg/TJ,116609403.456,kg -5a0d03bf-ebb5-321e-b19a-a3433e10581d,SESCO,II.1.1,Neuquén,AR-Q,annual,2022,gas oil combustion consumption by freight transport,1573.67616,TJ,CH4,3.9,kg/TJ,6137.3370239999995,kg -5a0d03bf-ebb5-321e-b19a-a3433e10581d,SESCO,II.1.1,Neuquén,AR-Q,annual,2022,gas oil combustion consumption by freight transport,1573.67616,TJ,N2O,3.9,kg/TJ,6137.3370239999995,kg -d8fc0a57-ab4e-3a59-86b3-c856f8ddc785,SESCO,II.1.1,Rio Negro,AR-R,annual,2022,gas oil combustion consumption by freight transport,557.11488,TJ,CO2,74100.0,kg/TJ,41282212.607999995,kg -6d33a6db-bbbc-3aea-8f78-89a13196be71,SESCO,II.1.1,Rio Negro,AR-R,annual,2022,gas oil combustion consumption by freight transport,557.11488,TJ,CH4,3.9,kg/TJ,2172.748032,kg -6d33a6db-bbbc-3aea-8f78-89a13196be71,SESCO,II.1.1,Rio Negro,AR-R,annual,2022,gas oil combustion consumption by freight transport,557.11488,TJ,N2O,3.9,kg/TJ,2172.748032,kg -69bf1714-3e12-3572-8dfa-175acab7255c,SESCO,II.1.1,Salta,AR-A,annual,2022,gas oil combustion consumption by freight transport,402.70188,TJ,CO2,74100.0,kg/TJ,29840209.308000002,kg -c8f59d54-fe21-34b3-9178-6b3b416ff98c,SESCO,II.1.1,Salta,AR-A,annual,2022,gas oil combustion consumption by freight transport,402.70188,TJ,CH4,3.9,kg/TJ,1570.537332,kg -c8f59d54-fe21-34b3-9178-6b3b416ff98c,SESCO,II.1.1,Salta,AR-A,annual,2022,gas oil combustion consumption by freight transport,402.70188,TJ,N2O,3.9,kg/TJ,1570.537332,kg -b580eda3-d8d1-30e8-9e5f-7e1dda278daf,SESCO,II.1.1,San Juan,AR-J,annual,2022,gas oil combustion consumption by freight transport,101.60556,TJ,CO2,74100.0,kg/TJ,7528971.995999999,kg -3a1217e4-5477-366c-9b0d-2652e8b5df62,SESCO,II.1.1,San Juan,AR-J,annual,2022,gas oil combustion consumption by freight transport,101.60556,TJ,CH4,3.9,kg/TJ,396.261684,kg -3a1217e4-5477-366c-9b0d-2652e8b5df62,SESCO,II.1.1,San Juan,AR-J,annual,2022,gas oil combustion consumption by freight transport,101.60556,TJ,N2O,3.9,kg/TJ,396.261684,kg -308d63e6-1055-318a-87d2-105d4521dcb1,SESCO,II.1.1,San Luis,AR-D,annual,2022,gas oil combustion consumption by freight transport,204.83652,TJ,CO2,74100.0,kg/TJ,15178386.132000001,kg -1be3f385-fd6b-3ea5-9589-1b11e04a9e54,SESCO,II.1.1,San Luis,AR-D,annual,2022,gas oil combustion consumption by freight transport,204.83652,TJ,CH4,3.9,kg/TJ,798.862428,kg -1be3f385-fd6b-3ea5-9589-1b11e04a9e54,SESCO,II.1.1,San Luis,AR-D,annual,2022,gas oil combustion consumption by freight transport,204.83652,TJ,N2O,3.9,kg/TJ,798.862428,kg -73c6f707-5834-3b05-b74c-a5b50764083e,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2022,gas oil combustion consumption by freight transport,409.81752,TJ,CO2,74100.0,kg/TJ,30367478.232,kg -6991f408-2840-3c31-9ffe-ca787a30e548,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2022,gas oil combustion consumption by freight transport,409.81752,TJ,CH4,3.9,kg/TJ,1598.2883279999999,kg -6991f408-2840-3c31-9ffe-ca787a30e548,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2022,gas oil combustion consumption by freight transport,409.81752,TJ,N2O,3.9,kg/TJ,1598.2883279999999,kg -3d89455b-1995-30cc-ab70-73a1eee62b94,SESCO,II.1.1,Santa Fe,AR-S,annual,2022,gas oil combustion consumption by freight transport,1246.03164,TJ,CO2,74100.0,kg/TJ,92330944.52399999,kg -a9239340-849f-3006-988e-d12e9ebf2123,SESCO,II.1.1,Santa Fe,AR-S,annual,2022,gas oil combustion consumption by freight transport,1246.03164,TJ,CH4,3.9,kg/TJ,4859.523396,kg -a9239340-849f-3006-988e-d12e9ebf2123,SESCO,II.1.1,Santa Fe,AR-S,annual,2022,gas oil combustion consumption by freight transport,1246.03164,TJ,N2O,3.9,kg/TJ,4859.523396,kg -8790affc-12d8-318c-9e16-752857b56d35,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2022,gas oil combustion consumption by freight transport,217.623,TJ,CO2,74100.0,kg/TJ,16125864.299999999,kg -64ae34b6-e475-3293-95f6-af49dc7cbb97,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2022,gas oil combustion consumption by freight transport,217.623,TJ,CH4,3.9,kg/TJ,848.7297,kg -64ae34b6-e475-3293-95f6-af49dc7cbb97,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2022,gas oil combustion consumption by freight transport,217.623,TJ,N2O,3.9,kg/TJ,848.7297,kg -d24a2728-abfe-38d9-86ac-966ac67f5822,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2022,gas oil combustion consumption by freight transport,144.44388,TJ,CO2,74100.0,kg/TJ,10703291.508000001,kg -998b1cb2-c83d-37ec-a7da-a1e25d16626e,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2022,gas oil combustion consumption by freight transport,144.44388,TJ,CH4,3.9,kg/TJ,563.331132,kg -998b1cb2-c83d-37ec-a7da-a1e25d16626e,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2022,gas oil combustion consumption by freight transport,144.44388,TJ,N2O,3.9,kg/TJ,563.331132,kg -3ee7793e-e55f-372f-b989-4466d85d4a4f,SESCO,II.1.1,Tucuman,AR-T,annual,2022,gas oil combustion consumption by freight transport,229.362,TJ,CO2,74100.0,kg/TJ,16995724.2,kg -93ee88b5-0301-304e-b96f-d26474be486c,SESCO,II.1.1,Tucuman,AR-T,annual,2022,gas oil combustion consumption by freight transport,229.362,TJ,CH4,3.9,kg/TJ,894.5118,kg -93ee88b5-0301-304e-b96f-d26474be486c,SESCO,II.1.1,Tucuman,AR-T,annual,2022,gas oil combustion consumption by freight transport,229.362,TJ,N2O,3.9,kg/TJ,894.5118,kg -644da66f-2065-336d-bf18-5b4ffab1755e,SESCO,II.1.1,Neuquén,AR-Q,annual,2022,jet kerosene combustion consumption by freight transport,2.3275219999999996,TJ,CO2,71500.0,kg/TJ,166417.82299999997,kg -7b8dc863-e299-3cd8-918e-ae30666f1e63,SESCO,II.1.1,Neuquén,AR-Q,annual,2022,jet kerosene combustion consumption by freight transport,2.3275219999999996,TJ,CH4,0.5,kg/TJ,1.1637609999999998,kg -3659cc3d-e171-3f94-b000-ac29b1559c22,SESCO,II.1.1,Neuquén,AR-Q,annual,2022,jet kerosene combustion consumption by freight transport,2.3275219999999996,TJ,N2O,2.0,kg/TJ,4.655043999999999,kg -c90cfde5-c29e-31ff-8090-c02dda6e80c9,SESCO,II.1.1,Buenos Aires,AR-B,annual,2022,gas oil combustion consumption by public passenger transport,6369.400799999999,TJ,CO2,74100.0,kg/TJ,471972599.28,kg -8c3cc1b0-affa-32e0-83cb-f0d2194c5a20,SESCO,II.1.1,Buenos Aires,AR-B,annual,2022,gas oil combustion consumption by public passenger transport,6369.400799999999,TJ,CH4,3.9,kg/TJ,24840.663119999997,kg -8c3cc1b0-affa-32e0-83cb-f0d2194c5a20,SESCO,II.1.1,Buenos Aires,AR-B,annual,2022,gas oil combustion consumption by public passenger transport,6369.400799999999,TJ,N2O,3.9,kg/TJ,24840.663119999997,kg -f31c36bc-f9e7-30ab-b492-771555add2d5,SESCO,II.1.1,Capital Federal,AR-C,annual,2022,gas oil combustion consumption by public passenger transport,1473.37092,TJ,CO2,74100.0,kg/TJ,109176785.172,kg -a9f6a224-74e6-3a25-a21e-875a42434ed0,SESCO,II.1.1,Capital Federal,AR-C,annual,2022,gas oil combustion consumption by public passenger transport,1473.37092,TJ,CH4,3.9,kg/TJ,5746.1465880000005,kg -a9f6a224-74e6-3a25-a21e-875a42434ed0,SESCO,II.1.1,Capital Federal,AR-C,annual,2022,gas oil combustion consumption by public passenger transport,1473.37092,TJ,N2O,3.9,kg/TJ,5746.1465880000005,kg -171709a3-deee-3cc3-8a52-f815361bda4f,SESCO,II.1.1,Catamarca,AR-K,annual,2022,gas oil combustion consumption by public passenger transport,67.14708,TJ,CO2,74100.0,kg/TJ,4975598.6280000005,kg -08c0ddac-08e5-3afa-aaf3-08da82653674,SESCO,II.1.1,Catamarca,AR-K,annual,2022,gas oil combustion consumption by public passenger transport,67.14708,TJ,CH4,3.9,kg/TJ,261.873612,kg -08c0ddac-08e5-3afa-aaf3-08da82653674,SESCO,II.1.1,Catamarca,AR-K,annual,2022,gas oil combustion consumption by public passenger transport,67.14708,TJ,N2O,3.9,kg/TJ,261.873612,kg -7c089baf-f565-34c5-918f-ed56afc6d4b0,SESCO,II.1.1,Chaco,AR-H,annual,2022,gas oil combustion consumption by public passenger transport,187.2822,TJ,CO2,74100.0,kg/TJ,13877611.02,kg -fb265246-d50f-3789-b8e1-7aacf081b235,SESCO,II.1.1,Chaco,AR-H,annual,2022,gas oil combustion consumption by public passenger transport,187.2822,TJ,CH4,3.9,kg/TJ,730.40058,kg -fb265246-d50f-3789-b8e1-7aacf081b235,SESCO,II.1.1,Chaco,AR-H,annual,2022,gas oil combustion consumption by public passenger transport,187.2822,TJ,N2O,3.9,kg/TJ,730.40058,kg -1daf0a33-9dab-34d2-80e2-967533254f06,SESCO,II.1.1,Chubut,AR-U,annual,2022,gas oil combustion consumption by public passenger transport,10.22196,TJ,CO2,74100.0,kg/TJ,757447.2359999999,kg -b0ad4cbb-7040-31fa-b906-a08fa1dc60e4,SESCO,II.1.1,Chubut,AR-U,annual,2022,gas oil combustion consumption by public passenger transport,10.22196,TJ,CH4,3.9,kg/TJ,39.865643999999996,kg -b0ad4cbb-7040-31fa-b906-a08fa1dc60e4,SESCO,II.1.1,Chubut,AR-U,annual,2022,gas oil combustion consumption by public passenger transport,10.22196,TJ,N2O,3.9,kg/TJ,39.865643999999996,kg -94c82492-703c-3e50-9ea8-827782808a7d,SESCO,II.1.1,Corrientes,AR-W,annual,2022,gas oil combustion consumption by public passenger transport,127.28688,TJ,CO2,74100.0,kg/TJ,9431957.808,kg -ea502fa5-bffd-3ab9-9c8c-4b12e339bb2d,SESCO,II.1.1,Corrientes,AR-W,annual,2022,gas oil combustion consumption by public passenger transport,127.28688,TJ,CH4,3.9,kg/TJ,496.41883199999995,kg -ea502fa5-bffd-3ab9-9c8c-4b12e339bb2d,SESCO,II.1.1,Corrientes,AR-W,annual,2022,gas oil combustion consumption by public passenger transport,127.28688,TJ,N2O,3.9,kg/TJ,496.41883199999995,kg -47c9cb8e-dfde-3995-bd94-b0e5065eee71,SESCO,II.1.1,Córdoba,AR-X,annual,2022,gas oil combustion consumption by public passenger transport,896.0649599999999,TJ,CO2,74100.0,kg/TJ,66398413.53599999,kg -8fc1c3f4-8689-3850-b65d-6f35319556a7,SESCO,II.1.1,Córdoba,AR-X,annual,2022,gas oil combustion consumption by public passenger transport,896.0649599999999,TJ,CH4,3.9,kg/TJ,3494.653344,kg -8fc1c3f4-8689-3850-b65d-6f35319556a7,SESCO,II.1.1,Córdoba,AR-X,annual,2022,gas oil combustion consumption by public passenger transport,896.0649599999999,TJ,N2O,3.9,kg/TJ,3494.653344,kg -a2972221-7c17-3c1d-9419-efb98e7a4f02,SESCO,II.1.1,Entre Rios,AR-E,annual,2022,gas oil combustion consumption by public passenger transport,227.80884,TJ,CO2,74100.0,kg/TJ,16880635.044,kg -84d4c2dc-02bc-3047-b8a3-348309093bad,SESCO,II.1.1,Entre Rios,AR-E,annual,2022,gas oil combustion consumption by public passenger transport,227.80884,TJ,CH4,3.9,kg/TJ,888.454476,kg -84d4c2dc-02bc-3047-b8a3-348309093bad,SESCO,II.1.1,Entre Rios,AR-E,annual,2022,gas oil combustion consumption by public passenger transport,227.80884,TJ,N2O,3.9,kg/TJ,888.454476,kg -9e2493fd-a041-358d-a486-ffd813abfdd0,SESCO,II.1.1,Formosa,AR-P,annual,2022,gas oil combustion consumption by public passenger transport,22.17768,TJ,CO2,74100.0,kg/TJ,1643366.088,kg -45479125-cdc7-32fc-8861-619263a63787,SESCO,II.1.1,Formosa,AR-P,annual,2022,gas oil combustion consumption by public passenger transport,22.17768,TJ,CH4,3.9,kg/TJ,86.49295199999999,kg -45479125-cdc7-32fc-8861-619263a63787,SESCO,II.1.1,Formosa,AR-P,annual,2022,gas oil combustion consumption by public passenger transport,22.17768,TJ,N2O,3.9,kg/TJ,86.49295199999999,kg -2eaedf2e-d12f-3de9-a94a-a0f880c50ab1,SESCO,II.1.1,Jujuy,AR-Y,annual,2022,gas oil combustion consumption by public passenger transport,210.14616,TJ,CO2,74100.0,kg/TJ,15571830.456,kg -4d6fb668-cb8e-349f-ad5b-b1ab071a096e,SESCO,II.1.1,Jujuy,AR-Y,annual,2022,gas oil combustion consumption by public passenger transport,210.14616,TJ,CH4,3.9,kg/TJ,819.570024,kg -4d6fb668-cb8e-349f-ad5b-b1ab071a096e,SESCO,II.1.1,Jujuy,AR-Y,annual,2022,gas oil combustion consumption by public passenger transport,210.14616,TJ,N2O,3.9,kg/TJ,819.570024,kg -d6cbb6d8-694f-3259-8ed4-2094da8d93ea,SESCO,II.1.1,Mendoza,AR-M,annual,2022,gas oil combustion consumption by public passenger transport,1057.19628,TJ,CO2,74100.0,kg/TJ,78338244.34799999,kg -0699fe54-10e5-30cf-8add-0c3f440d8048,SESCO,II.1.1,Mendoza,AR-M,annual,2022,gas oil combustion consumption by public passenger transport,1057.19628,TJ,CH4,3.9,kg/TJ,4123.065492,kg -0699fe54-10e5-30cf-8add-0c3f440d8048,SESCO,II.1.1,Mendoza,AR-M,annual,2022,gas oil combustion consumption by public passenger transport,1057.19628,TJ,N2O,3.9,kg/TJ,4123.065492,kg -ebf195f7-bce3-305f-a8c7-2ce7b615724f,SESCO,II.1.1,Misiones,AR-N,annual,2022,gas oil combustion consumption by public passenger transport,612.52296,TJ,CO2,74100.0,kg/TJ,45387951.336,kg -43a49c79-2630-3220-b74f-086f53fa60c3,SESCO,II.1.1,Misiones,AR-N,annual,2022,gas oil combustion consumption by public passenger transport,612.52296,TJ,CH4,3.9,kg/TJ,2388.839544,kg -43a49c79-2630-3220-b74f-086f53fa60c3,SESCO,II.1.1,Misiones,AR-N,annual,2022,gas oil combustion consumption by public passenger transport,612.52296,TJ,N2O,3.9,kg/TJ,2388.839544,kg -7bc46125-3e7f-389b-aadb-befa40512129,SESCO,II.1.1,Neuquén,AR-Q,annual,2022,gas oil combustion consumption by public passenger transport,49.77336,TJ,CO2,74100.0,kg/TJ,3688205.976,kg -0e5b83a9-7a46-3047-a6b0-19338306a126,SESCO,II.1.1,Neuquén,AR-Q,annual,2022,gas oil combustion consumption by public passenger transport,49.77336,TJ,CH4,3.9,kg/TJ,194.11610399999998,kg -0e5b83a9-7a46-3047-a6b0-19338306a126,SESCO,II.1.1,Neuquén,AR-Q,annual,2022,gas oil combustion consumption by public passenger transport,49.77336,TJ,N2O,3.9,kg/TJ,194.11610399999998,kg -e463c87e-ed09-3a47-b433-5fa9ec70e157,SESCO,II.1.1,Rio Negro,AR-R,annual,2022,gas oil combustion consumption by public passenger transport,18.2406,TJ,CO2,74100.0,kg/TJ,1351628.46,kg -07b62f26-a768-31b5-a402-a49d654c78f1,SESCO,II.1.1,Rio Negro,AR-R,annual,2022,gas oil combustion consumption by public passenger transport,18.2406,TJ,CH4,3.9,kg/TJ,71.13834,kg -07b62f26-a768-31b5-a402-a49d654c78f1,SESCO,II.1.1,Rio Negro,AR-R,annual,2022,gas oil combustion consumption by public passenger transport,18.2406,TJ,N2O,3.9,kg/TJ,71.13834,kg -82848cd1-fba9-352e-a962-28494737714b,SESCO,II.1.1,Salta,AR-A,annual,2022,gas oil combustion consumption by public passenger transport,282.38616,TJ,CO2,74100.0,kg/TJ,20924814.456,kg -bf05b4e0-5c09-373f-8e4b-f726291e4043,SESCO,II.1.1,Salta,AR-A,annual,2022,gas oil combustion consumption by public passenger transport,282.38616,TJ,CH4,3.9,kg/TJ,1101.306024,kg -bf05b4e0-5c09-373f-8e4b-f726291e4043,SESCO,II.1.1,Salta,AR-A,annual,2022,gas oil combustion consumption by public passenger transport,282.38616,TJ,N2O,3.9,kg/TJ,1101.306024,kg -e5dd5274-699f-3916-9409-62c3891c8903,SESCO,II.1.1,San Juan,AR-J,annual,2022,gas oil combustion consumption by public passenger transport,53.6382,TJ,CO2,74100.0,kg/TJ,3974590.6199999996,kg -be28ec09-0345-3c3a-9ad9-831514cd9045,SESCO,II.1.1,San Juan,AR-J,annual,2022,gas oil combustion consumption by public passenger transport,53.6382,TJ,CH4,3.9,kg/TJ,209.18898,kg -be28ec09-0345-3c3a-9ad9-831514cd9045,SESCO,II.1.1,San Juan,AR-J,annual,2022,gas oil combustion consumption by public passenger transport,53.6382,TJ,N2O,3.9,kg/TJ,209.18898,kg -94e1d1c8-34fe-3356-ac21-439d93970a1c,SESCO,II.1.1,Santa Fe,AR-S,annual,2022,gas oil combustion consumption by public passenger transport,523.23432,TJ,CO2,74100.0,kg/TJ,38771663.112,kg -e1cb157a-42ad-38c1-afa6-c18a9f59ccb8,SESCO,II.1.1,Santa Fe,AR-S,annual,2022,gas oil combustion consumption by public passenger transport,523.23432,TJ,CH4,3.9,kg/TJ,2040.613848,kg -e1cb157a-42ad-38c1-afa6-c18a9f59ccb8,SESCO,II.1.1,Santa Fe,AR-S,annual,2022,gas oil combustion consumption by public passenger transport,523.23432,TJ,N2O,3.9,kg/TJ,2040.613848,kg -b917dc6d-b369-33d1-826c-03f8ff363228,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2022,gas oil combustion consumption by public passenger transport,10.2942,TJ,CO2,74100.0,kg/TJ,762800.22,kg -eb514032-dc76-3b53-9c67-dcdbbe8dd0c7,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2022,gas oil combustion consumption by public passenger transport,10.2942,TJ,CH4,3.9,kg/TJ,40.14738,kg -eb514032-dc76-3b53-9c67-dcdbbe8dd0c7,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2022,gas oil combustion consumption by public passenger transport,10.2942,TJ,N2O,3.9,kg/TJ,40.14738,kg -3cced3cf-ad0b-3757-bcc0-a28e6e0a8bc7,SESCO,II.1.1,Tucuman,AR-T,annual,2022,gas oil combustion consumption by public passenger transport,105.75936,TJ,CO2,74100.0,kg/TJ,7836768.576,kg -8c124421-62f5-3116-ab9c-3fbb4c1d1ef9,SESCO,II.1.1,Tucuman,AR-T,annual,2022,gas oil combustion consumption by public passenger transport,105.75936,TJ,CH4,3.9,kg/TJ,412.461504,kg -8c124421-62f5-3116-ab9c-3fbb4c1d1ef9,SESCO,II.1.1,Tucuman,AR-T,annual,2022,gas oil combustion consumption by public passenger transport,105.75936,TJ,N2O,3.9,kg/TJ,412.461504,kg -89cdce2b-370b-3195-9df4-cf12061e1640,SESCO,II.1.1,Buenos Aires,AR-B,annual,2022,gas oil combustion consumption by public passenger transport,5147.4612,TJ,CO2,74100.0,kg/TJ,381426874.91999996,kg -25f3c1cc-54bf-3384-acc6-aa595adeac55,SESCO,II.1.1,Buenos Aires,AR-B,annual,2022,gas oil combustion consumption by public passenger transport,5147.4612,TJ,CH4,3.9,kg/TJ,20075.09868,kg -25f3c1cc-54bf-3384-acc6-aa595adeac55,SESCO,II.1.1,Buenos Aires,AR-B,annual,2022,gas oil combustion consumption by public passenger transport,5147.4612,TJ,N2O,3.9,kg/TJ,20075.09868,kg -ae800c76-3b5d-3e1c-8d77-f34e6b8076ff,SESCO,II.1.1,Capital Federal,AR-C,annual,2022,gas oil combustion consumption by public passenger transport,1024.07424,TJ,CO2,74100.0,kg/TJ,75883901.184,kg -9aedfd8e-efc7-3d70-99a7-c929de557920,SESCO,II.1.1,Capital Federal,AR-C,annual,2022,gas oil combustion consumption by public passenger transport,1024.07424,TJ,CH4,3.9,kg/TJ,3993.8895359999997,kg -9aedfd8e-efc7-3d70-99a7-c929de557920,SESCO,II.1.1,Capital Federal,AR-C,annual,2022,gas oil combustion consumption by public passenger transport,1024.07424,TJ,N2O,3.9,kg/TJ,3993.8895359999997,kg -d2d549c9-36f1-3aae-8bd9-87d27c2fc1f9,SESCO,II.1.1,Chaco,AR-H,annual,2022,gas oil combustion consumption by public passenger transport,18.63792,TJ,CO2,74100.0,kg/TJ,1381069.872,kg -94c8334d-9e3a-3de7-9f97-838231793ee2,SESCO,II.1.1,Chaco,AR-H,annual,2022,gas oil combustion consumption by public passenger transport,18.63792,TJ,CH4,3.9,kg/TJ,72.687888,kg -94c8334d-9e3a-3de7-9f97-838231793ee2,SESCO,II.1.1,Chaco,AR-H,annual,2022,gas oil combustion consumption by public passenger transport,18.63792,TJ,N2O,3.9,kg/TJ,72.687888,kg -eae3c281-b5a1-3c70-a87a-96e3c6affd64,SESCO,II.1.1,Chubut,AR-U,annual,2022,gas oil combustion consumption by public passenger transport,34.20564,TJ,CO2,74100.0,kg/TJ,2534637.924,kg -a32390c4-6f82-312b-8a71-b33fdd8e70f8,SESCO,II.1.1,Chubut,AR-U,annual,2022,gas oil combustion consumption by public passenger transport,34.20564,TJ,CH4,3.9,kg/TJ,133.401996,kg -a32390c4-6f82-312b-8a71-b33fdd8e70f8,SESCO,II.1.1,Chubut,AR-U,annual,2022,gas oil combustion consumption by public passenger transport,34.20564,TJ,N2O,3.9,kg/TJ,133.401996,kg -8c71911e-050e-3d4e-83bf-9cde4562574f,SESCO,II.1.1,Corrientes,AR-W,annual,2022,gas oil combustion consumption by public passenger transport,40.59888,TJ,CO2,74100.0,kg/TJ,3008377.008,kg -468899c1-a3b9-3662-bd59-cbc41e925ce2,SESCO,II.1.1,Corrientes,AR-W,annual,2022,gas oil combustion consumption by public passenger transport,40.59888,TJ,CH4,3.9,kg/TJ,158.335632,kg -468899c1-a3b9-3662-bd59-cbc41e925ce2,SESCO,II.1.1,Corrientes,AR-W,annual,2022,gas oil combustion consumption by public passenger transport,40.59888,TJ,N2O,3.9,kg/TJ,158.335632,kg -b3ed3834-c4f7-3d07-a134-3180d9d1b6f9,SESCO,II.1.1,Córdoba,AR-X,annual,2022,gas oil combustion consumption by public passenger transport,287.94864,TJ,CO2,74100.0,kg/TJ,21336994.224,kg -1768121c-7dd6-364b-b387-61d3ab1d4941,SESCO,II.1.1,Córdoba,AR-X,annual,2022,gas oil combustion consumption by public passenger transport,287.94864,TJ,CH4,3.9,kg/TJ,1122.999696,kg -1768121c-7dd6-364b-b387-61d3ab1d4941,SESCO,II.1.1,Córdoba,AR-X,annual,2022,gas oil combustion consumption by public passenger transport,287.94864,TJ,N2O,3.9,kg/TJ,1122.999696,kg -723f4f33-0050-31be-bf2c-b02f7938e76b,SESCO,II.1.1,Entre Rios,AR-E,annual,2022,gas oil combustion consumption by public passenger transport,36.4812,TJ,CO2,74100.0,kg/TJ,2703256.92,kg -094b949a-3055-3dc1-9885-43a13e387937,SESCO,II.1.1,Entre Rios,AR-E,annual,2022,gas oil combustion consumption by public passenger transport,36.4812,TJ,CH4,3.9,kg/TJ,142.27668,kg -094b949a-3055-3dc1-9885-43a13e387937,SESCO,II.1.1,Entre Rios,AR-E,annual,2022,gas oil combustion consumption by public passenger transport,36.4812,TJ,N2O,3.9,kg/TJ,142.27668,kg -02ade1af-599d-3ee0-be29-42e97c1ebb60,SESCO,II.1.1,Mendoza,AR-M,annual,2022,gas oil combustion consumption by public passenger transport,110.3466,TJ,CO2,74100.0,kg/TJ,8176683.06,kg -e5b0ff0c-e110-34a5-bcd5-3eee60c45edb,SESCO,II.1.1,Mendoza,AR-M,annual,2022,gas oil combustion consumption by public passenger transport,110.3466,TJ,CH4,3.9,kg/TJ,430.35173999999995,kg -e5b0ff0c-e110-34a5-bcd5-3eee60c45edb,SESCO,II.1.1,Mendoza,AR-M,annual,2022,gas oil combustion consumption by public passenger transport,110.3466,TJ,N2O,3.9,kg/TJ,430.35173999999995,kg -83877602-8d27-3c28-8015-76f2b75a2e5b,SESCO,II.1.1,Misiones,AR-N,annual,2022,gas oil combustion consumption by public passenger transport,37.27584,TJ,CO2,74100.0,kg/TJ,2762139.744,kg -c5310241-0f06-32fc-9c75-b41c59f4b4db,SESCO,II.1.1,Misiones,AR-N,annual,2022,gas oil combustion consumption by public passenger transport,37.27584,TJ,CH4,3.9,kg/TJ,145.375776,kg -c5310241-0f06-32fc-9c75-b41c59f4b4db,SESCO,II.1.1,Misiones,AR-N,annual,2022,gas oil combustion consumption by public passenger transport,37.27584,TJ,N2O,3.9,kg/TJ,145.375776,kg -d7a8d07c-303e-3a04-9027-b92d63a98c9f,SESCO,II.1.1,Neuquén,AR-Q,annual,2022,gas oil combustion consumption by public passenger transport,14.484119999999999,TJ,CO2,74100.0,kg/TJ,1073273.292,kg -a03d76e6-7f28-3eef-9783-52b7a708a1d5,SESCO,II.1.1,Neuquén,AR-Q,annual,2022,gas oil combustion consumption by public passenger transport,14.484119999999999,TJ,CH4,3.9,kg/TJ,56.48806799999999,kg -a03d76e6-7f28-3eef-9783-52b7a708a1d5,SESCO,II.1.1,Neuquén,AR-Q,annual,2022,gas oil combustion consumption by public passenger transport,14.484119999999999,TJ,N2O,3.9,kg/TJ,56.48806799999999,kg -7faa27e9-0bcb-304c-b656-ccba0db0fbb2,SESCO,II.1.1,Rio Negro,AR-R,annual,2022,gas oil combustion consumption by public passenger transport,127.35912,TJ,CO2,74100.0,kg/TJ,9437310.792,kg -eed8d115-af08-382e-9db3-8adfeb896466,SESCO,II.1.1,Rio Negro,AR-R,annual,2022,gas oil combustion consumption by public passenger transport,127.35912,TJ,CH4,3.9,kg/TJ,496.70056800000003,kg -eed8d115-af08-382e-9db3-8adfeb896466,SESCO,II.1.1,Rio Negro,AR-R,annual,2022,gas oil combustion consumption by public passenger transport,127.35912,TJ,N2O,3.9,kg/TJ,496.70056800000003,kg -ea339239-5f69-39a6-ae39-06cb7c32fac3,SESCO,II.1.1,Salta,AR-A,annual,2022,gas oil combustion consumption by public passenger transport,186.12636,TJ,CO2,74100.0,kg/TJ,13791963.276,kg -e7567bfc-e4f5-3baf-9270-fc926c40073f,SESCO,II.1.1,Salta,AR-A,annual,2022,gas oil combustion consumption by public passenger transport,186.12636,TJ,CH4,3.9,kg/TJ,725.892804,kg -e7567bfc-e4f5-3baf-9270-fc926c40073f,SESCO,II.1.1,Salta,AR-A,annual,2022,gas oil combustion consumption by public passenger transport,186.12636,TJ,N2O,3.9,kg/TJ,725.892804,kg -aa42dc5a-9baf-3ce7-ab4a-37a64c724f0c,SESCO,II.1.1,San Juan,AR-J,annual,2022,gas oil combustion consumption by public passenger transport,42.9828,TJ,CO2,74100.0,kg/TJ,3185025.48,kg -ac5ceab3-4a0d-3643-b1e9-f4032315f10c,SESCO,II.1.1,San Juan,AR-J,annual,2022,gas oil combustion consumption by public passenger transport,42.9828,TJ,CH4,3.9,kg/TJ,167.63291999999998,kg -ac5ceab3-4a0d-3643-b1e9-f4032315f10c,SESCO,II.1.1,San Juan,AR-J,annual,2022,gas oil combustion consumption by public passenger transport,42.9828,TJ,N2O,3.9,kg/TJ,167.63291999999998,kg -44d03ff7-a981-3357-9bc0-20b3f6a89432,SESCO,II.1.1,Santa Fe,AR-S,annual,2022,gas oil combustion consumption by public passenger transport,179.8776,TJ,CO2,74100.0,kg/TJ,13328930.16,kg -3fe576ad-9f08-3558-8de0-6116ab098092,SESCO,II.1.1,Santa Fe,AR-S,annual,2022,gas oil combustion consumption by public passenger transport,179.8776,TJ,CH4,3.9,kg/TJ,701.52264,kg -3fe576ad-9f08-3558-8de0-6116ab098092,SESCO,II.1.1,Santa Fe,AR-S,annual,2022,gas oil combustion consumption by public passenger transport,179.8776,TJ,N2O,3.9,kg/TJ,701.52264,kg -c00960fa-1d64-3228-8f2d-bab04c5808d7,SESCO,II.1.1,Tucuman,AR-T,annual,2022,gas oil combustion consumption by public passenger transport,3.14244,TJ,CO2,74100.0,kg/TJ,232854.804,kg -03f0bc70-80f0-3d13-8129-f9eeb002c69a,SESCO,II.1.1,Tucuman,AR-T,annual,2022,gas oil combustion consumption by public passenger transport,3.14244,TJ,CH4,3.9,kg/TJ,12.255516,kg -03f0bc70-80f0-3d13-8129-f9eeb002c69a,SESCO,II.1.1,Tucuman,AR-T,annual,2022,gas oil combustion consumption by public passenger transport,3.14244,TJ,N2O,3.9,kg/TJ,12.255516,kg -f0f627d8-22cc-3bb3-88b3-08deda7d85fe,SESCO,II.5.1,Buenos Aires,AR-B,annual,2023,gas oil combustion consumption by agriculture machines,577.26984,TJ,CO2,74100.0,kg/TJ,42775695.144,kg -8cd4b327-fc35-3d9f-a4be-51e8aee3ac13,SESCO,II.5.1,Buenos Aires,AR-B,annual,2023,gas oil combustion consumption by agriculture machines,577.26984,TJ,CH4,3.9,kg/TJ,2251.3523760000003,kg -8cd4b327-fc35-3d9f-a4be-51e8aee3ac13,SESCO,II.5.1,Buenos Aires,AR-B,annual,2023,gas oil combustion consumption by agriculture machines,577.26984,TJ,N2O,3.9,kg/TJ,2251.3523760000003,kg -44fc060d-9299-3f64-a073-12e28bbebc95,SESCO,II.5.1,Córdoba,AR-X,annual,2023,gas oil combustion consumption by agriculture machines,178.79399999999998,TJ,CO2,74100.0,kg/TJ,13248635.399999999,kg -987a825a-61f2-348f-bb1f-2f6b2987caab,SESCO,II.5.1,Córdoba,AR-X,annual,2023,gas oil combustion consumption by agriculture machines,178.79399999999998,TJ,CH4,3.9,kg/TJ,697.2965999999999,kg -987a825a-61f2-348f-bb1f-2f6b2987caab,SESCO,II.5.1,Córdoba,AR-X,annual,2023,gas oil combustion consumption by agriculture machines,178.79399999999998,TJ,N2O,3.9,kg/TJ,697.2965999999999,kg -b1e3fe98-e938-3fc9-be0e-77e810876626,SESCO,II.5.1,Entre Rios,AR-E,annual,2023,gas oil combustion consumption by agriculture machines,13.83396,TJ,CO2,74100.0,kg/TJ,1025096.436,kg -d9984e00-ee47-3fe0-86a9-c4c62bafc226,SESCO,II.5.1,Entre Rios,AR-E,annual,2023,gas oil combustion consumption by agriculture machines,13.83396,TJ,CH4,3.9,kg/TJ,53.952444,kg -d9984e00-ee47-3fe0-86a9-c4c62bafc226,SESCO,II.5.1,Entre Rios,AR-E,annual,2023,gas oil combustion consumption by agriculture machines,13.83396,TJ,N2O,3.9,kg/TJ,53.952444,kg -94ade838-2582-3c86-bef7-efeadd0eb694,SESCO,II.5.1,La Pampa,AR-L,annual,2023,gas oil combustion consumption by agriculture machines,32.18292,TJ,CO2,74100.0,kg/TJ,2384754.3720000004,kg -ec08d1ce-52aa-3e43-b732-8f6acb803e2a,SESCO,II.5.1,La Pampa,AR-L,annual,2023,gas oil combustion consumption by agriculture machines,32.18292,TJ,CH4,3.9,kg/TJ,125.513388,kg -ec08d1ce-52aa-3e43-b732-8f6acb803e2a,SESCO,II.5.1,La Pampa,AR-L,annual,2023,gas oil combustion consumption by agriculture machines,32.18292,TJ,N2O,3.9,kg/TJ,125.513388,kg -91d33ec7-e4e7-39d6-b1a3-4237435e3bad,SESCO,II.5.1,Santa Fe,AR-S,annual,2023,gas oil combustion consumption by agriculture machines,159.75876,TJ,CO2,74100.0,kg/TJ,11838124.116,kg -f87c6e4d-76f8-3715-84cf-85e43e8ef8c1,SESCO,II.5.1,Santa Fe,AR-S,annual,2023,gas oil combustion consumption by agriculture machines,159.75876,TJ,CH4,3.9,kg/TJ,623.059164,kg -f87c6e4d-76f8-3715-84cf-85e43e8ef8c1,SESCO,II.5.1,Santa Fe,AR-S,annual,2023,gas oil combustion consumption by agriculture machines,159.75876,TJ,N2O,3.9,kg/TJ,623.059164,kg -8612a688-909d-3051-8aa0-b9495ffe6999,SESCO,II.5.1,Tucuman,AR-T,annual,2023,gas oil combustion consumption by agriculture machines,38.829,TJ,CO2,74100.0,kg/TJ,2877228.9,kg -ee7e4276-9b8c-36b4-88c0-55e855a0a264,SESCO,II.5.1,Tucuman,AR-T,annual,2023,gas oil combustion consumption by agriculture machines,38.829,TJ,CH4,3.9,kg/TJ,151.4331,kg -ee7e4276-9b8c-36b4-88c0-55e855a0a264,SESCO,II.5.1,Tucuman,AR-T,annual,2023,gas oil combustion consumption by agriculture machines,38.829,TJ,N2O,3.9,kg/TJ,151.4331,kg -f0686159-aa99-30e5-af6d-03b618056d27,SESCO,II.5.1,Buenos Aires,AR-B,annual,2023,gas oil combustion consumption by agriculture machines,16.65132,TJ,CO2,74100.0,kg/TJ,1233862.812,kg -86fde6ac-3cd1-3fc5-9db0-f7e43da36df6,SESCO,II.5.1,Buenos Aires,AR-B,annual,2023,gas oil combustion consumption by agriculture machines,16.65132,TJ,CH4,3.9,kg/TJ,64.940148,kg -86fde6ac-3cd1-3fc5-9db0-f7e43da36df6,SESCO,II.5.1,Buenos Aires,AR-B,annual,2023,gas oil combustion consumption by agriculture machines,16.65132,TJ,N2O,3.9,kg/TJ,64.940148,kg -a2c90a56-ac7b-3db0-b5b2-a9149a1bff47,SESCO,II.5.1,Córdoba,AR-X,annual,2023,gas oil combustion consumption by agriculture machines,11.233319999999999,TJ,CO2,74100.0,kg/TJ,832389.012,kg -4b159f5d-3b8a-32b5-8aff-5f713b6bf6d4,SESCO,II.5.1,Córdoba,AR-X,annual,2023,gas oil combustion consumption by agriculture machines,11.233319999999999,TJ,CH4,3.9,kg/TJ,43.809948,kg -4b159f5d-3b8a-32b5-8aff-5f713b6bf6d4,SESCO,II.5.1,Córdoba,AR-X,annual,2023,gas oil combustion consumption by agriculture machines,11.233319999999999,TJ,N2O,3.9,kg/TJ,43.809948,kg -fbe8f7dc-39bf-3e2c-8af3-d953dd895aa2,SESCO,II.5.1,Santa Fe,AR-S,annual,2023,gas oil combustion consumption by agriculture machines,11.48616,TJ,CO2,74100.0,kg/TJ,851124.456,kg -a6fc9a68-e6bd-3eac-b635-3c49294e8684,SESCO,II.5.1,Santa Fe,AR-S,annual,2023,gas oil combustion consumption by agriculture machines,11.48616,TJ,CH4,3.9,kg/TJ,44.796023999999996,kg -a6fc9a68-e6bd-3eac-b635-3c49294e8684,SESCO,II.5.1,Santa Fe,AR-S,annual,2023,gas oil combustion consumption by agriculture machines,11.48616,TJ,N2O,3.9,kg/TJ,44.796023999999996,kg -fb074a7c-1256-3b58-a014-bb09195b4b7f,SESCO,II.5.1,Tucuman,AR-T,annual,2023,gas oil combustion consumption by agriculture machines,1.0836,TJ,CO2,74100.0,kg/TJ,80294.76,kg -f8795533-a017-3628-bdb7-6e8d627d92ce,SESCO,II.5.1,Tucuman,AR-T,annual,2023,gas oil combustion consumption by agriculture machines,1.0836,TJ,CH4,3.9,kg/TJ,4.226039999999999,kg -f8795533-a017-3628-bdb7-6e8d627d92ce,SESCO,II.5.1,Tucuman,AR-T,annual,2023,gas oil combustion consumption by agriculture machines,1.0836,TJ,N2O,3.9,kg/TJ,4.226039999999999,kg -fef1d8a2-e185-38a1-9121-1ac7d74819bd,SESCO,II.1.1,Buenos Aires,AR-B,annual,2023,gas oil combustion consumption by to the public,2010.3308399999999,TJ,CO2,74100.0,kg/TJ,148965515.244,kg -7fe4ba85-2714-36b3-9db5-748313e21ea1,SESCO,II.1.1,Buenos Aires,AR-B,annual,2023,gas oil combustion consumption by to the public,2010.3308399999999,TJ,CH4,3.9,kg/TJ,7840.290275999999,kg -7fe4ba85-2714-36b3-9db5-748313e21ea1,SESCO,II.1.1,Buenos Aires,AR-B,annual,2023,gas oil combustion consumption by to the public,2010.3308399999999,TJ,N2O,3.9,kg/TJ,7840.290275999999,kg -3921c44f-802d-3e18-bcee-54db068efaa9,SESCO,II.1.1,Capital Federal,AR-C,annual,2023,gas oil combustion consumption by to the public,159.61428,TJ,CO2,74100.0,kg/TJ,11827418.148,kg -a0854779-eef5-3b76-80ca-f98dded878b3,SESCO,II.1.1,Capital Federal,AR-C,annual,2023,gas oil combustion consumption by to the public,159.61428,TJ,CH4,3.9,kg/TJ,622.495692,kg -a0854779-eef5-3b76-80ca-f98dded878b3,SESCO,II.1.1,Capital Federal,AR-C,annual,2023,gas oil combustion consumption by to the public,159.61428,TJ,N2O,3.9,kg/TJ,622.495692,kg -f8f4082e-5245-3039-a66f-75e98d47fb4e,SESCO,II.1.1,Catamarca,AR-K,annual,2023,gas oil combustion consumption by to the public,6.24876,TJ,CO2,74100.0,kg/TJ,463033.116,kg -b2c6f146-adc1-3513-b2d0-8eea072f66ee,SESCO,II.1.1,Catamarca,AR-K,annual,2023,gas oil combustion consumption by to the public,6.24876,TJ,CH4,3.9,kg/TJ,24.370164,kg -b2c6f146-adc1-3513-b2d0-8eea072f66ee,SESCO,II.1.1,Catamarca,AR-K,annual,2023,gas oil combustion consumption by to the public,6.24876,TJ,N2O,3.9,kg/TJ,24.370164,kg -92e8ffe8-bcb3-3ee4-ac8e-2c5aceaddded,SESCO,II.1.1,Corrientes,AR-W,annual,2023,gas oil combustion consumption by to the public,0.32508,TJ,CO2,74100.0,kg/TJ,24088.428,kg -5c4b394d-ca67-3a41-a2f9-0290dfee1304,SESCO,II.1.1,Corrientes,AR-W,annual,2023,gas oil combustion consumption by to the public,0.32508,TJ,CH4,3.9,kg/TJ,1.267812,kg -5c4b394d-ca67-3a41-a2f9-0290dfee1304,SESCO,II.1.1,Corrientes,AR-W,annual,2023,gas oil combustion consumption by to the public,0.32508,TJ,N2O,3.9,kg/TJ,1.267812,kg -1117ba6a-8e84-3bdd-be94-7b3acd354e24,SESCO,II.1.1,Córdoba,AR-X,annual,2023,gas oil combustion consumption by to the public,1003.70256,TJ,CO2,74100.0,kg/TJ,74374359.696,kg -60d84edc-f927-3662-ac2c-135c05a346fb,SESCO,II.1.1,Córdoba,AR-X,annual,2023,gas oil combustion consumption by to the public,1003.70256,TJ,CH4,3.9,kg/TJ,3914.4399839999996,kg -60d84edc-f927-3662-ac2c-135c05a346fb,SESCO,II.1.1,Córdoba,AR-X,annual,2023,gas oil combustion consumption by to the public,1003.70256,TJ,N2O,3.9,kg/TJ,3914.4399839999996,kg -a30e04e3-cd71-3f9b-a3f0-c4ad53530dab,SESCO,II.1.1,Entre Rios,AR-E,annual,2023,gas oil combustion consumption by to the public,365.10096,TJ,CO2,74100.0,kg/TJ,27053981.136,kg -65e6ec77-5501-37b7-a6ca-90f695400590,SESCO,II.1.1,Entre Rios,AR-E,annual,2023,gas oil combustion consumption by to the public,365.10096,TJ,CH4,3.9,kg/TJ,1423.893744,kg -65e6ec77-5501-37b7-a6ca-90f695400590,SESCO,II.1.1,Entre Rios,AR-E,annual,2023,gas oil combustion consumption by to the public,365.10096,TJ,N2O,3.9,kg/TJ,1423.893744,kg -3f7cd834-9b4a-322c-b16d-0d2dd66b22ca,SESCO,II.1.1,La Rioja,AR-F,annual,2023,gas oil combustion consumption by to the public,0.61404,TJ,CO2,74100.0,kg/TJ,45500.364,kg -ac92cd78-4406-3d46-bf38-152169c78bd4,SESCO,II.1.1,La Rioja,AR-F,annual,2023,gas oil combustion consumption by to the public,0.61404,TJ,CH4,3.9,kg/TJ,2.394756,kg -ac92cd78-4406-3d46-bf38-152169c78bd4,SESCO,II.1.1,La Rioja,AR-F,annual,2023,gas oil combustion consumption by to the public,0.61404,TJ,N2O,3.9,kg/TJ,2.394756,kg -997a0a56-807a-3836-82fd-de0d37d02f0a,SESCO,II.1.1,Mendoza,AR-M,annual,2023,gas oil combustion consumption by to the public,521.60892,TJ,CO2,74100.0,kg/TJ,38651220.972,kg -7578da21-c6f7-309e-af94-eda7fffd098c,SESCO,II.1.1,Mendoza,AR-M,annual,2023,gas oil combustion consumption by to the public,521.60892,TJ,CH4,3.9,kg/TJ,2034.274788,kg -7578da21-c6f7-309e-af94-eda7fffd098c,SESCO,II.1.1,Mendoza,AR-M,annual,2023,gas oil combustion consumption by to the public,521.60892,TJ,N2O,3.9,kg/TJ,2034.274788,kg -cd36fca4-6128-3cae-bd42-4e9ece4628e9,SESCO,II.1.1,San Luis,AR-D,annual,2023,gas oil combustion consumption by to the public,25.42848,TJ,CO2,74100.0,kg/TJ,1884250.368,kg -d56c1d29-8744-351f-90fa-1146d00a407a,SESCO,II.1.1,San Luis,AR-D,annual,2023,gas oil combustion consumption by to the public,25.42848,TJ,CH4,3.9,kg/TJ,99.171072,kg -d56c1d29-8744-351f-90fa-1146d00a407a,SESCO,II.1.1,San Luis,AR-D,annual,2023,gas oil combustion consumption by to the public,25.42848,TJ,N2O,3.9,kg/TJ,99.171072,kg -64fd142e-0ec3-3551-b4c3-a04f77b05ec3,SESCO,II.1.1,Santa Fe,AR-S,annual,2023,gas oil combustion consumption by to the public,1109.9676,TJ,CO2,74100.0,kg/TJ,82248599.16,kg -ba281c4c-ae07-356b-a716-af2bdd6ab8bb,SESCO,II.1.1,Santa Fe,AR-S,annual,2023,gas oil combustion consumption by to the public,1109.9676,TJ,CH4,3.9,kg/TJ,4328.87364,kg -ba281c4c-ae07-356b-a716-af2bdd6ab8bb,SESCO,II.1.1,Santa Fe,AR-S,annual,2023,gas oil combustion consumption by to the public,1109.9676,TJ,N2O,3.9,kg/TJ,4328.87364,kg -10cde8a4-b30f-3795-ab17-a76decf91223,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2023,gas oil combustion consumption by to the public,12.4614,TJ,CO2,74100.0,kg/TJ,923389.74,kg -3a23c8e2-050f-30fc-8532-efb4b6a34daf,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2023,gas oil combustion consumption by to the public,12.4614,TJ,CH4,3.9,kg/TJ,48.59945999999999,kg -3a23c8e2-050f-30fc-8532-efb4b6a34daf,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2023,gas oil combustion consumption by to the public,12.4614,TJ,N2O,3.9,kg/TJ,48.59945999999999,kg -f5c6026b-8544-3a82-b8f8-2866209129d2,SESCO,II.1.1,Tucuman,AR-T,annual,2023,gas oil combustion consumption by to the public,59.52576,TJ,CO2,74100.0,kg/TJ,4410858.816,kg -624f14f4-4e29-3fc7-bee3-004e1770d774,SESCO,II.1.1,Tucuman,AR-T,annual,2023,gas oil combustion consumption by to the public,59.52576,TJ,CH4,3.9,kg/TJ,232.150464,kg -624f14f4-4e29-3fc7-bee3-004e1770d774,SESCO,II.1.1,Tucuman,AR-T,annual,2023,gas oil combustion consumption by to the public,59.52576,TJ,N2O,3.9,kg/TJ,232.150464,kg -d1767ee7-bd83-33cb-ae84-b62138f452a3,SESCO,II.1.1,Buenos Aires,AR-B,annual,2023,gas oil combustion consumption by to the public,212.13276,TJ,CO2,74100.0,kg/TJ,15719037.515999999,kg -727a902c-a919-3f46-97b9-dcf2e800c22b,SESCO,II.1.1,Buenos Aires,AR-B,annual,2023,gas oil combustion consumption by to the public,212.13276,TJ,CH4,3.9,kg/TJ,827.3177639999999,kg -727a902c-a919-3f46-97b9-dcf2e800c22b,SESCO,II.1.1,Buenos Aires,AR-B,annual,2023,gas oil combustion consumption by to the public,212.13276,TJ,N2O,3.9,kg/TJ,827.3177639999999,kg -1963083f-23cc-3d6e-96a5-07fb94a958a0,SESCO,II.1.1,Capital Federal,AR-C,annual,2023,gas oil combustion consumption by to the public,14.41188,TJ,CO2,74100.0,kg/TJ,1067920.308,kg -a7fed7ce-1d8c-3a3e-8515-51ddba076bb8,SESCO,II.1.1,Capital Federal,AR-C,annual,2023,gas oil combustion consumption by to the public,14.41188,TJ,CH4,3.9,kg/TJ,56.206331999999996,kg -a7fed7ce-1d8c-3a3e-8515-51ddba076bb8,SESCO,II.1.1,Capital Federal,AR-C,annual,2023,gas oil combustion consumption by to the public,14.41188,TJ,N2O,3.9,kg/TJ,56.206331999999996,kg -8da69ce1-54ed-3403-a4f2-fcfcd344bdaf,SESCO,II.1.1,Catamarca,AR-K,annual,2023,gas oil combustion consumption by to the public,8.77716,TJ,CO2,74100.0,kg/TJ,650387.556,kg -cef86e57-9036-30c4-a773-cc8b078d0dba,SESCO,II.1.1,Catamarca,AR-K,annual,2023,gas oil combustion consumption by to the public,8.77716,TJ,CH4,3.9,kg/TJ,34.230924,kg -cef86e57-9036-30c4-a773-cc8b078d0dba,SESCO,II.1.1,Catamarca,AR-K,annual,2023,gas oil combustion consumption by to the public,8.77716,TJ,N2O,3.9,kg/TJ,34.230924,kg -0354494c-5c8c-3661-957c-252edf68e61f,SESCO,II.1.1,Corrientes,AR-W,annual,2023,gas oil combustion consumption by to the public,0.25284,TJ,CO2,74100.0,kg/TJ,18735.444,kg -84fe2139-6d90-3674-99aa-dc1595dbd8cd,SESCO,II.1.1,Corrientes,AR-W,annual,2023,gas oil combustion consumption by to the public,0.25284,TJ,CH4,3.9,kg/TJ,0.9860760000000001,kg -84fe2139-6d90-3674-99aa-dc1595dbd8cd,SESCO,II.1.1,Corrientes,AR-W,annual,2023,gas oil combustion consumption by to the public,0.25284,TJ,N2O,3.9,kg/TJ,0.9860760000000001,kg -09270dcc-60d6-3a3a-8b1a-ffd439269670,SESCO,II.1.1,Córdoba,AR-X,annual,2023,gas oil combustion consumption by to the public,133.89684,TJ,CO2,74100.0,kg/TJ,9921755.844,kg -279d1b1e-4058-336e-94aa-834bd7c65074,SESCO,II.1.1,Córdoba,AR-X,annual,2023,gas oil combustion consumption by to the public,133.89684,TJ,CH4,3.9,kg/TJ,522.197676,kg -279d1b1e-4058-336e-94aa-834bd7c65074,SESCO,II.1.1,Córdoba,AR-X,annual,2023,gas oil combustion consumption by to the public,133.89684,TJ,N2O,3.9,kg/TJ,522.197676,kg -0e8aae1e-3cf4-39dc-a694-5771def0d615,SESCO,II.1.1,Entre Rios,AR-E,annual,2023,gas oil combustion consumption by to the public,49.8456,TJ,CO2,74100.0,kg/TJ,3693558.96,kg -842a62ea-243d-3d67-bd81-9c85f6893d44,SESCO,II.1.1,Entre Rios,AR-E,annual,2023,gas oil combustion consumption by to the public,49.8456,TJ,CH4,3.9,kg/TJ,194.39783999999997,kg -842a62ea-243d-3d67-bd81-9c85f6893d44,SESCO,II.1.1,Entre Rios,AR-E,annual,2023,gas oil combustion consumption by to the public,49.8456,TJ,N2O,3.9,kg/TJ,194.39783999999997,kg -a34f91b0-6c6e-3215-8ccf-2c5e43069e79,SESCO,II.1.1,La Rioja,AR-F,annual,2023,gas oil combustion consumption by to the public,1.0836,TJ,CO2,74100.0,kg/TJ,80294.76,kg -e7de4b1d-edab-38ab-8ad1-9440c28684c6,SESCO,II.1.1,La Rioja,AR-F,annual,2023,gas oil combustion consumption by to the public,1.0836,TJ,CH4,3.9,kg/TJ,4.226039999999999,kg -e7de4b1d-edab-38ab-8ad1-9440c28684c6,SESCO,II.1.1,La Rioja,AR-F,annual,2023,gas oil combustion consumption by to the public,1.0836,TJ,N2O,3.9,kg/TJ,4.226039999999999,kg -ccf5162f-a966-36a1-95ff-da4d00ac50a2,SESCO,II.1.1,Mendoza,AR-M,annual,2023,gas oil combustion consumption by to the public,90.62508,TJ,CO2,74100.0,kg/TJ,6715318.427999999,kg -3d920788-e4be-34a6-99d5-324d2a45b43c,SESCO,II.1.1,Mendoza,AR-M,annual,2023,gas oil combustion consumption by to the public,90.62508,TJ,CH4,3.9,kg/TJ,353.437812,kg -3d920788-e4be-34a6-99d5-324d2a45b43c,SESCO,II.1.1,Mendoza,AR-M,annual,2023,gas oil combustion consumption by to the public,90.62508,TJ,N2O,3.9,kg/TJ,353.437812,kg -3be7cb99-8c30-3c57-b8be-a8c0f9eeb438,SESCO,II.1.1,San Juan,AR-J,annual,2023,gas oil combustion consumption by to the public,4.91232,TJ,CO2,74100.0,kg/TJ,364002.912,kg -93e441fc-de9e-3758-8370-d5a001ece10b,SESCO,II.1.1,San Juan,AR-J,annual,2023,gas oil combustion consumption by to the public,4.91232,TJ,CH4,3.9,kg/TJ,19.158048,kg -93e441fc-de9e-3758-8370-d5a001ece10b,SESCO,II.1.1,San Juan,AR-J,annual,2023,gas oil combustion consumption by to the public,4.91232,TJ,N2O,3.9,kg/TJ,19.158048,kg -12d4fd2d-75e3-3fa1-a97c-808ca357e598,SESCO,II.1.1,San Luis,AR-D,annual,2023,gas oil combustion consumption by to the public,3.35916,TJ,CO2,74100.0,kg/TJ,248913.75600000002,kg -94452317-44fd-31fd-892d-28aeede5b519,SESCO,II.1.1,San Luis,AR-D,annual,2023,gas oil combustion consumption by to the public,3.35916,TJ,CH4,3.9,kg/TJ,13.100724,kg -94452317-44fd-31fd-892d-28aeede5b519,SESCO,II.1.1,San Luis,AR-D,annual,2023,gas oil combustion consumption by to the public,3.35916,TJ,N2O,3.9,kg/TJ,13.100724,kg -53f7aec5-708d-3587-a3b6-d43756ae3101,SESCO,II.1.1,Santa Fe,AR-S,annual,2023,gas oil combustion consumption by to the public,153.04044,TJ,CO2,74100.0,kg/TJ,11340296.603999998,kg -bfb1b304-0179-3501-91d8-3628abb8aaae,SESCO,II.1.1,Santa Fe,AR-S,annual,2023,gas oil combustion consumption by to the public,153.04044,TJ,CH4,3.9,kg/TJ,596.857716,kg -bfb1b304-0179-3501-91d8-3628abb8aaae,SESCO,II.1.1,Santa Fe,AR-S,annual,2023,gas oil combustion consumption by to the public,153.04044,TJ,N2O,3.9,kg/TJ,596.857716,kg -039826aa-7807-3822-91fa-c3054f995f12,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2023,gas oil combustion consumption by to the public,6.71832,TJ,CO2,74100.0,kg/TJ,497827.51200000005,kg -ae93c05a-27ed-3c33-b79d-565b660416c0,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2023,gas oil combustion consumption by to the public,6.71832,TJ,CH4,3.9,kg/TJ,26.201448,kg -ae93c05a-27ed-3c33-b79d-565b660416c0,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2023,gas oil combustion consumption by to the public,6.71832,TJ,N2O,3.9,kg/TJ,26.201448,kg -13245ce0-d528-3253-903a-a99342b13d8f,SESCO,II.1.1,Tucuman,AR-T,annual,2023,gas oil combustion consumption by to the public,10.69152,TJ,CO2,74100.0,kg/TJ,792241.6320000001,kg -bed0dffe-d047-3724-b19b-4604e0ba28a5,SESCO,II.1.1,Tucuman,AR-T,annual,2023,gas oil combustion consumption by to the public,10.69152,TJ,CH4,3.9,kg/TJ,41.696928,kg -bed0dffe-d047-3724-b19b-4604e0ba28a5,SESCO,II.1.1,Tucuman,AR-T,annual,2023,gas oil combustion consumption by to the public,10.69152,TJ,N2O,3.9,kg/TJ,41.696928,kg -d8dd287e-7c51-3b4d-8fc7-dc23162a9093,SESCO,II.1.1,Córdoba,AR-X,annual,2023,jet kerosene combustion consumption by to the public,0.31453,TJ,CO2,71500.0,kg/TJ,22488.894999999997,kg -2b9903d7-d352-388d-a04c-a68bb29dfcb9,SESCO,II.1.1,Córdoba,AR-X,annual,2023,jet kerosene combustion consumption by to the public,0.31453,TJ,CH4,0.5,kg/TJ,0.157265,kg -cd8bd51c-6a31-36be-95b6-cae77f5545f2,SESCO,II.1.1,Córdoba,AR-X,annual,2023,jet kerosene combustion consumption by to the public,0.31453,TJ,N2O,2.0,kg/TJ,0.62906,kg -750c0db7-ba7d-3460-852b-35fc5a67b07c,SESCO,II.1.1,Santa Fe,AR-S,annual,2023,jet kerosene combustion consumption by to the public,0.34598299999999993,TJ,CO2,71500.0,kg/TJ,24737.784499999994,kg -08b27bf9-45dd-38ab-a319-551aa5d510c9,SESCO,II.1.1,Santa Fe,AR-S,annual,2023,jet kerosene combustion consumption by to the public,0.34598299999999993,TJ,CH4,0.5,kg/TJ,0.17299149999999996,kg -6735455d-7106-3d93-8dc8-a2f7a682fa47,SESCO,II.1.1,Santa Fe,AR-S,annual,2023,jet kerosene combustion consumption by to the public,0.34598299999999993,TJ,N2O,2.0,kg/TJ,0.6919659999999999,kg -a41821f7-47c7-3613-9431-2a46bc8cebeb,SESCO,II.5.1,Buenos Aires,AR-B,annual,2023,gas oil combustion consumption by agriculture machines,322.371,TJ,CO2,74100.0,kg/TJ,23887691.099999998,kg -8a9c6b15-e9b0-3f47-9307-e5f2983fa763,SESCO,II.5.1,Buenos Aires,AR-B,annual,2023,gas oil combustion consumption by agriculture machines,322.371,TJ,CH4,3.9,kg/TJ,1257.2468999999999,kg -8a9c6b15-e9b0-3f47-9307-e5f2983fa763,SESCO,II.5.1,Buenos Aires,AR-B,annual,2023,gas oil combustion consumption by agriculture machines,322.371,TJ,N2O,3.9,kg/TJ,1257.2468999999999,kg -858aa847-4b4a-31d9-8504-9258801fec82,SESCO,II.5.1,Capital Federal,AR-C,annual,2023,gas oil combustion consumption by agriculture machines,10.79988,TJ,CO2,74100.0,kg/TJ,800271.108,kg -738fe312-ef4a-311e-bbd9-0a084fb0d68c,SESCO,II.5.1,Capital Federal,AR-C,annual,2023,gas oil combustion consumption by agriculture machines,10.79988,TJ,CH4,3.9,kg/TJ,42.119532,kg -738fe312-ef4a-311e-bbd9-0a084fb0d68c,SESCO,II.5.1,Capital Federal,AR-C,annual,2023,gas oil combustion consumption by agriculture machines,10.79988,TJ,N2O,3.9,kg/TJ,42.119532,kg -1e7c21c2-fdb3-367a-b14b-52bc307cd96a,SESCO,II.5.1,Córdoba,AR-X,annual,2023,gas oil combustion consumption by agriculture machines,280.97748,TJ,CO2,74100.0,kg/TJ,20820431.268,kg -00fbc132-5d65-3760-85ea-e9f24c0cbe26,SESCO,II.5.1,Córdoba,AR-X,annual,2023,gas oil combustion consumption by agriculture machines,280.97748,TJ,CH4,3.9,kg/TJ,1095.812172,kg -00fbc132-5d65-3760-85ea-e9f24c0cbe26,SESCO,II.5.1,Córdoba,AR-X,annual,2023,gas oil combustion consumption by agriculture machines,280.97748,TJ,N2O,3.9,kg/TJ,1095.812172,kg -b52cdbeb-fdd0-3b0b-b741-0ca87a0f1744,SESCO,II.5.1,Entre Rios,AR-E,annual,2023,gas oil combustion consumption by agriculture machines,273.57288,TJ,CO2,74100.0,kg/TJ,20271750.408,kg -8b0ddd79-1040-39b9-a190-bf1c8ded32d8,SESCO,II.5.1,Entre Rios,AR-E,annual,2023,gas oil combustion consumption by agriculture machines,273.57288,TJ,CH4,3.9,kg/TJ,1066.934232,kg -8b0ddd79-1040-39b9-a190-bf1c8ded32d8,SESCO,II.5.1,Entre Rios,AR-E,annual,2023,gas oil combustion consumption by agriculture machines,273.57288,TJ,N2O,3.9,kg/TJ,1066.934232,kg -01874680-a7d9-3c67-9e2c-123532c8ac78,SESCO,II.5.1,Santa Fe,AR-S,annual,2023,gas oil combustion consumption by agriculture machines,149.60904,TJ,CO2,74100.0,kg/TJ,11086029.864,kg -17fc1cf1-c93a-31cc-b096-6d372aed1e56,SESCO,II.5.1,Santa Fe,AR-S,annual,2023,gas oil combustion consumption by agriculture machines,149.60904,TJ,CH4,3.9,kg/TJ,583.475256,kg -17fc1cf1-c93a-31cc-b096-6d372aed1e56,SESCO,II.5.1,Santa Fe,AR-S,annual,2023,gas oil combustion consumption by agriculture machines,149.60904,TJ,N2O,3.9,kg/TJ,583.475256,kg -bfa7d535-0860-3621-9acd-337d88d181ea,SESCO,II.5.1,Buenos Aires,AR-B,annual,2023,gas oil combustion consumption by agriculture machines,23.116799999999998,TJ,CO2,74100.0,kg/TJ,1712954.88,kg -361c9d66-3174-3dfb-8be8-e5a325b5021e,SESCO,II.5.1,Buenos Aires,AR-B,annual,2023,gas oil combustion consumption by agriculture machines,23.116799999999998,TJ,CH4,3.9,kg/TJ,90.15552,kg -361c9d66-3174-3dfb-8be8-e5a325b5021e,SESCO,II.5.1,Buenos Aires,AR-B,annual,2023,gas oil combustion consumption by agriculture machines,23.116799999999998,TJ,N2O,3.9,kg/TJ,90.15552,kg -c6ddacfc-b433-34d3-9e3b-2cb8710446be,SESCO,II.5.1,Capital Federal,AR-C,annual,2023,gas oil combustion consumption by agriculture machines,0.32508,TJ,CO2,74100.0,kg/TJ,24088.428,kg -04990360-e105-3789-8554-9d1a6c508756,SESCO,II.5.1,Capital Federal,AR-C,annual,2023,gas oil combustion consumption by agriculture machines,0.32508,TJ,CH4,3.9,kg/TJ,1.267812,kg -04990360-e105-3789-8554-9d1a6c508756,SESCO,II.5.1,Capital Federal,AR-C,annual,2023,gas oil combustion consumption by agriculture machines,0.32508,TJ,N2O,3.9,kg/TJ,1.267812,kg -70070a3b-ccda-39a9-a66d-3e898a81871e,SESCO,II.5.1,Córdoba,AR-X,annual,2023,gas oil combustion consumption by agriculture machines,16.976399999999998,TJ,CO2,74100.0,kg/TJ,1257951.2399999998,kg -c3ec5096-5322-3ca8-a235-83968d79c335,SESCO,II.5.1,Córdoba,AR-X,annual,2023,gas oil combustion consumption by agriculture machines,16.976399999999998,TJ,CH4,3.9,kg/TJ,66.20795999999999,kg -c3ec5096-5322-3ca8-a235-83968d79c335,SESCO,II.5.1,Córdoba,AR-X,annual,2023,gas oil combustion consumption by agriculture machines,16.976399999999998,TJ,N2O,3.9,kg/TJ,66.20795999999999,kg -f5401885-e321-391f-a795-3856dfaa929f,SESCO,II.5.1,Entre Rios,AR-E,annual,2023,gas oil combustion consumption by agriculture machines,7.29624,TJ,CO2,74100.0,kg/TJ,540651.384,kg -294c922a-22aa-344e-a299-53694513973d,SESCO,II.5.1,Entre Rios,AR-E,annual,2023,gas oil combustion consumption by agriculture machines,7.29624,TJ,CH4,3.9,kg/TJ,28.455336,kg -294c922a-22aa-344e-a299-53694513973d,SESCO,II.5.1,Entre Rios,AR-E,annual,2023,gas oil combustion consumption by agriculture machines,7.29624,TJ,N2O,3.9,kg/TJ,28.455336,kg -b5c86a9c-a11f-3085-b44f-3b1f34a0518e,SESCO,II.5.1,Santa Fe,AR-S,annual,2023,gas oil combustion consumption by agriculture machines,7.62132,TJ,CO2,74100.0,kg/TJ,564739.812,kg -295fa484-2599-3e3d-b430-9e3ce82c46dc,SESCO,II.5.1,Santa Fe,AR-S,annual,2023,gas oil combustion consumption by agriculture machines,7.62132,TJ,CH4,3.9,kg/TJ,29.723148,kg -295fa484-2599-3e3d-b430-9e3ce82c46dc,SESCO,II.5.1,Santa Fe,AR-S,annual,2023,gas oil combustion consumption by agriculture machines,7.62132,TJ,N2O,3.9,kg/TJ,29.723148,kg -74093dc3-7730-3fc3-aa87-8d1ac6235e5b,SESCO,II.1.1,Buenos Aires,AR-B,annual,2023,gasoline combustion consumption by to the public,4.9173,TJ,CO2,69300.0,kg/TJ,340768.89,kg -2fb0acca-4d1a-3914-967a-a877d21e2e7d,SESCO,II.1.1,Buenos Aires,AR-B,annual,2023,gasoline combustion consumption by to the public,4.9173,TJ,CH4,33.0,kg/TJ,162.2709,kg -eb2b41f6-0cb3-3769-8c99-f47b153c0ce9,SESCO,II.1.1,Buenos Aires,AR-B,annual,2023,gasoline combustion consumption by to the public,4.9173,TJ,N2O,3.2,kg/TJ,15.73536,kg -b4fb8564-4007-3959-85e0-ad0223afe22a,SESCO,II.1.1,Buenos Aires,AR-B,annual,2023,gas oil combustion consumption by to the public,1684.31172,TJ,CO2,74100.0,kg/TJ,124807498.45199999,kg -d25331ac-7753-3730-b560-5394edf119db,SESCO,II.1.1,Buenos Aires,AR-B,annual,2023,gas oil combustion consumption by to the public,1684.31172,TJ,CH4,3.9,kg/TJ,6568.815707999999,kg -d25331ac-7753-3730-b560-5394edf119db,SESCO,II.1.1,Buenos Aires,AR-B,annual,2023,gas oil combustion consumption by to the public,1684.31172,TJ,N2O,3.9,kg/TJ,6568.815707999999,kg -ddf712cc-8498-30fc-9799-14508ce975e6,SESCO,II.1.1,Capital Federal,AR-C,annual,2023,gas oil combustion consumption by to the public,286.53996,TJ,CO2,74100.0,kg/TJ,21232611.036000002,kg -d02248c0-6887-387d-a37c-ad48c6cd4a42,SESCO,II.1.1,Capital Federal,AR-C,annual,2023,gas oil combustion consumption by to the public,286.53996,TJ,CH4,3.9,kg/TJ,1117.505844,kg -d02248c0-6887-387d-a37c-ad48c6cd4a42,SESCO,II.1.1,Capital Federal,AR-C,annual,2023,gas oil combustion consumption by to the public,286.53996,TJ,N2O,3.9,kg/TJ,1117.505844,kg -6f0094da-fc63-33c6-ae45-bcd06fb8ccec,SESCO,II.1.1,Catamarca,AR-K,annual,2023,gas oil combustion consumption by to the public,54.07164,TJ,CO2,74100.0,kg/TJ,4006708.524,kg -da557630-4f18-3ff0-8bf2-1d79081171c1,SESCO,II.1.1,Catamarca,AR-K,annual,2023,gas oil combustion consumption by to the public,54.07164,TJ,CH4,3.9,kg/TJ,210.879396,kg -da557630-4f18-3ff0-8bf2-1d79081171c1,SESCO,II.1.1,Catamarca,AR-K,annual,2023,gas oil combustion consumption by to the public,54.07164,TJ,N2O,3.9,kg/TJ,210.879396,kg -22216867-7a76-357b-972b-c1e6450f20b6,SESCO,II.1.1,Chaco,AR-H,annual,2023,gas oil combustion consumption by to the public,260.20848,TJ,CO2,74100.0,kg/TJ,19281448.368,kg -93d54ce6-d33e-38b2-bf69-807493c9ef50,SESCO,II.1.1,Chaco,AR-H,annual,2023,gas oil combustion consumption by to the public,260.20848,TJ,CH4,3.9,kg/TJ,1014.813072,kg -93d54ce6-d33e-38b2-bf69-807493c9ef50,SESCO,II.1.1,Chaco,AR-H,annual,2023,gas oil combustion consumption by to the public,260.20848,TJ,N2O,3.9,kg/TJ,1014.813072,kg -d2d2c925-70dd-36c3-b1d2-f096a29d6e08,SESCO,II.1.1,Corrientes,AR-W,annual,2023,gas oil combustion consumption by to the public,388.32612,TJ,CO2,74100.0,kg/TJ,28774965.492,kg -4acddb5d-ae0e-3b64-81e6-e2824ba6ecdc,SESCO,II.1.1,Corrientes,AR-W,annual,2023,gas oil combustion consumption by to the public,388.32612,TJ,CH4,3.9,kg/TJ,1514.471868,kg -4acddb5d-ae0e-3b64-81e6-e2824ba6ecdc,SESCO,II.1.1,Corrientes,AR-W,annual,2023,gas oil combustion consumption by to the public,388.32612,TJ,N2O,3.9,kg/TJ,1514.471868,kg -9731b2c6-2edf-3920-a7a0-a2af11f9a49f,SESCO,II.1.1,Córdoba,AR-X,annual,2023,gas oil combustion consumption by to the public,808.0044,TJ,CO2,74100.0,kg/TJ,59873126.04,kg -e6842337-b757-382b-aa7c-2ca88581efcb,SESCO,II.1.1,Córdoba,AR-X,annual,2023,gas oil combustion consumption by to the public,808.0044,TJ,CH4,3.9,kg/TJ,3151.21716,kg -e6842337-b757-382b-aa7c-2ca88581efcb,SESCO,II.1.1,Córdoba,AR-X,annual,2023,gas oil combustion consumption by to the public,808.0044,TJ,N2O,3.9,kg/TJ,3151.21716,kg -e6286255-12eb-3cc6-bde0-c2cc89a6257c,SESCO,II.1.1,Entre Rios,AR-E,annual,2023,gas oil combustion consumption by to the public,597.53316,TJ,CO2,74100.0,kg/TJ,44277207.155999996,kg -3a0bce7d-8d5d-3b8d-bbd7-fc16dd6a80c2,SESCO,II.1.1,Entre Rios,AR-E,annual,2023,gas oil combustion consumption by to the public,597.53316,TJ,CH4,3.9,kg/TJ,2330.3793239999995,kg -3a0bce7d-8d5d-3b8d-bbd7-fc16dd6a80c2,SESCO,II.1.1,Entre Rios,AR-E,annual,2023,gas oil combustion consumption by to the public,597.53316,TJ,N2O,3.9,kg/TJ,2330.3793239999995,kg -3ba538ee-bc60-390a-a8c4-307cdf283500,SESCO,II.1.1,Formosa,AR-P,annual,2023,gas oil combustion consumption by to the public,17.987759999999998,TJ,CO2,74100.0,kg/TJ,1332893.0159999998,kg -06b4ef9e-00c0-3333-bc02-424bd1b4387d,SESCO,II.1.1,Formosa,AR-P,annual,2023,gas oil combustion consumption by to the public,17.987759999999998,TJ,CH4,3.9,kg/TJ,70.15226399999999,kg -06b4ef9e-00c0-3333-bc02-424bd1b4387d,SESCO,II.1.1,Formosa,AR-P,annual,2023,gas oil combustion consumption by to the public,17.987759999999998,TJ,N2O,3.9,kg/TJ,70.15226399999999,kg -4dcf6e86-3d14-33ba-beec-e9f80eb48fc3,SESCO,II.1.1,La Rioja,AR-F,annual,2023,gas oil combustion consumption by to the public,59.20068,TJ,CO2,74100.0,kg/TJ,4386770.388,kg -64d7a6a9-8b0b-3c05-916a-c9e7d783fe94,SESCO,II.1.1,La Rioja,AR-F,annual,2023,gas oil combustion consumption by to the public,59.20068,TJ,CH4,3.9,kg/TJ,230.88265199999998,kg -64d7a6a9-8b0b-3c05-916a-c9e7d783fe94,SESCO,II.1.1,La Rioja,AR-F,annual,2023,gas oil combustion consumption by to the public,59.20068,TJ,N2O,3.9,kg/TJ,230.88265199999998,kg -772cc5a2-7b07-3cbd-b7d8-c490801225bb,SESCO,II.1.1,Mendoza,AR-M,annual,2023,gas oil combustion consumption by to the public,1017.28368,TJ,CO2,74100.0,kg/TJ,75380720.688,kg -84ac7f2d-d66a-36bf-806a-91785d19c4b6,SESCO,II.1.1,Mendoza,AR-M,annual,2023,gas oil combustion consumption by to the public,1017.28368,TJ,CH4,3.9,kg/TJ,3967.406352,kg -84ac7f2d-d66a-36bf-806a-91785d19c4b6,SESCO,II.1.1,Mendoza,AR-M,annual,2023,gas oil combustion consumption by to the public,1017.28368,TJ,N2O,3.9,kg/TJ,3967.406352,kg -be548325-7b57-33de-a019-d37c4a14b1f9,SESCO,II.1.1,Misiones,AR-N,annual,2023,gas oil combustion consumption by to the public,373.842,TJ,CO2,74100.0,kg/TJ,27701692.2,kg -d258e016-da54-3ddf-bafd-5766e4e7a7bf,SESCO,II.1.1,Misiones,AR-N,annual,2023,gas oil combustion consumption by to the public,373.842,TJ,CH4,3.9,kg/TJ,1457.9838,kg -d258e016-da54-3ddf-bafd-5766e4e7a7bf,SESCO,II.1.1,Misiones,AR-N,annual,2023,gas oil combustion consumption by to the public,373.842,TJ,N2O,3.9,kg/TJ,1457.9838,kg -babb0450-0ff3-340d-9721-a20cdff551cd,SESCO,II.1.1,San Juan,AR-J,annual,2023,gas oil combustion consumption by to the public,162.14267999999998,TJ,CO2,74100.0,kg/TJ,12014772.588,kg -60ceb8a1-aafa-3bfe-b06f-39d4c6e0ffaf,SESCO,II.1.1,San Juan,AR-J,annual,2023,gas oil combustion consumption by to the public,162.14267999999998,TJ,CH4,3.9,kg/TJ,632.3564519999999,kg -60ceb8a1-aafa-3bfe-b06f-39d4c6e0ffaf,SESCO,II.1.1,San Juan,AR-J,annual,2023,gas oil combustion consumption by to the public,162.14267999999998,TJ,N2O,3.9,kg/TJ,632.3564519999999,kg -a99e7bc4-042f-3c39-b435-6063fe7ac464,SESCO,II.1.1,San Luis,AR-D,annual,2023,gas oil combustion consumption by to the public,33.5916,TJ,CO2,74100.0,kg/TJ,2489137.56,kg -dd905549-bbd1-3831-b0b9-08e02355cc6b,SESCO,II.1.1,San Luis,AR-D,annual,2023,gas oil combustion consumption by to the public,33.5916,TJ,CH4,3.9,kg/TJ,131.00724,kg -dd905549-bbd1-3831-b0b9-08e02355cc6b,SESCO,II.1.1,San Luis,AR-D,annual,2023,gas oil combustion consumption by to the public,33.5916,TJ,N2O,3.9,kg/TJ,131.00724,kg -244a0e0c-9791-3b7a-998a-2234a354a4f3,SESCO,II.1.1,Santa Fe,AR-S,annual,2023,gas oil combustion consumption by to the public,1056.18492,TJ,CO2,74100.0,kg/TJ,78263302.572,kg -d88caf68-37fb-35f9-96a6-3586f8b935ea,SESCO,II.1.1,Santa Fe,AR-S,annual,2023,gas oil combustion consumption by to the public,1056.18492,TJ,CH4,3.9,kg/TJ,4119.121187999999,kg -d88caf68-37fb-35f9-96a6-3586f8b935ea,SESCO,II.1.1,Santa Fe,AR-S,annual,2023,gas oil combustion consumption by to the public,1056.18492,TJ,N2O,3.9,kg/TJ,4119.121187999999,kg -530e9fef-1d04-32b0-b952-1a76cfce6d2e,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2023,gas oil combustion consumption by to the public,116.01744,TJ,CO2,74100.0,kg/TJ,8596892.304,kg -e119d9ae-52f5-3ff6-a4f8-ea3bb5ac350c,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2023,gas oil combustion consumption by to the public,116.01744,TJ,CH4,3.9,kg/TJ,452.468016,kg -e119d9ae-52f5-3ff6-a4f8-ea3bb5ac350c,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2023,gas oil combustion consumption by to the public,116.01744,TJ,N2O,3.9,kg/TJ,452.468016,kg -13a2646c-2076-3364-b32d-2e07544cb460,SESCO,II.1.1,Tucuman,AR-T,annual,2023,gas oil combustion consumption by to the public,227.44764,TJ,CO2,74100.0,kg/TJ,16853870.124,kg -2c9444c1-0fc0-3e00-a680-4c19c0c5a364,SESCO,II.1.1,Tucuman,AR-T,annual,2023,gas oil combustion consumption by to the public,227.44764,TJ,CH4,3.9,kg/TJ,887.045796,kg -2c9444c1-0fc0-3e00-a680-4c19c0c5a364,SESCO,II.1.1,Tucuman,AR-T,annual,2023,gas oil combustion consumption by to the public,227.44764,TJ,N2O,3.9,kg/TJ,887.045796,kg -f221321f-adca-3a67-bb66-e41baa1ba473,SESCO,II.1.1,Buenos Aires,AR-B,annual,2023,gas oil combustion consumption by to the public,300.73512,TJ,CO2,74100.0,kg/TJ,22284472.392,kg -48cc999c-c37b-309b-ad65-76812a63f7ea,SESCO,II.1.1,Buenos Aires,AR-B,annual,2023,gas oil combustion consumption by to the public,300.73512,TJ,CH4,3.9,kg/TJ,1172.866968,kg -48cc999c-c37b-309b-ad65-76812a63f7ea,SESCO,II.1.1,Buenos Aires,AR-B,annual,2023,gas oil combustion consumption by to the public,300.73512,TJ,N2O,3.9,kg/TJ,1172.866968,kg -f022146e-b2a5-37fa-b66c-a2d2abe79369,SESCO,II.1.1,Capital Federal,AR-C,annual,2023,gas oil combustion consumption by to the public,42.22428,TJ,CO2,74100.0,kg/TJ,3128819.148,kg -c9009ef4-e2d5-3352-b23a-357aef04256f,SESCO,II.1.1,Capital Federal,AR-C,annual,2023,gas oil combustion consumption by to the public,42.22428,TJ,CH4,3.9,kg/TJ,164.674692,kg -c9009ef4-e2d5-3352-b23a-357aef04256f,SESCO,II.1.1,Capital Federal,AR-C,annual,2023,gas oil combustion consumption by to the public,42.22428,TJ,N2O,3.9,kg/TJ,164.674692,kg -2da87d91-9c62-353d-ad26-af2078c8941f,SESCO,II.1.1,Catamarca,AR-K,annual,2023,gas oil combustion consumption by to the public,24.7422,TJ,CO2,74100.0,kg/TJ,1833397.02,kg -061886aa-6a26-3680-8c9d-15ef6de1fca0,SESCO,II.1.1,Catamarca,AR-K,annual,2023,gas oil combustion consumption by to the public,24.7422,TJ,CH4,3.9,kg/TJ,96.49458,kg -061886aa-6a26-3680-8c9d-15ef6de1fca0,SESCO,II.1.1,Catamarca,AR-K,annual,2023,gas oil combustion consumption by to the public,24.7422,TJ,N2O,3.9,kg/TJ,96.49458,kg -4bb366d5-a8e5-37da-b1ad-995c5a27f389,SESCO,II.1.1,Chaco,AR-H,annual,2023,gas oil combustion consumption by to the public,58.47828,TJ,CO2,74100.0,kg/TJ,4333240.5479999995,kg -720d6601-9c52-31fc-b02e-18b61045a35b,SESCO,II.1.1,Chaco,AR-H,annual,2023,gas oil combustion consumption by to the public,58.47828,TJ,CH4,3.9,kg/TJ,228.065292,kg -720d6601-9c52-31fc-b02e-18b61045a35b,SESCO,II.1.1,Chaco,AR-H,annual,2023,gas oil combustion consumption by to the public,58.47828,TJ,N2O,3.9,kg/TJ,228.065292,kg -b34a8939-f383-3df2-9834-9025aaff0654,SESCO,II.1.1,Corrientes,AR-W,annual,2023,gas oil combustion consumption by to the public,27.52344,TJ,CO2,74100.0,kg/TJ,2039486.904,kg -94bc27a5-cbe7-321c-adba-8092f3a795d2,SESCO,II.1.1,Corrientes,AR-W,annual,2023,gas oil combustion consumption by to the public,27.52344,TJ,CH4,3.9,kg/TJ,107.341416,kg -94bc27a5-cbe7-321c-adba-8092f3a795d2,SESCO,II.1.1,Corrientes,AR-W,annual,2023,gas oil combustion consumption by to the public,27.52344,TJ,N2O,3.9,kg/TJ,107.341416,kg -9f8107b0-4a25-3f15-a2fd-8f119436c7ba,SESCO,II.1.1,Córdoba,AR-X,annual,2023,gas oil combustion consumption by to the public,119.84616,TJ,CO2,74100.0,kg/TJ,8880600.456,kg -353f5576-2b49-35f7-ba25-48a293349159,SESCO,II.1.1,Córdoba,AR-X,annual,2023,gas oil combustion consumption by to the public,119.84616,TJ,CH4,3.9,kg/TJ,467.400024,kg -353f5576-2b49-35f7-ba25-48a293349159,SESCO,II.1.1,Córdoba,AR-X,annual,2023,gas oil combustion consumption by to the public,119.84616,TJ,N2O,3.9,kg/TJ,467.400024,kg -bcc89e6c-adbf-3f18-9f9b-f44109a29d03,SESCO,II.1.1,Entre Rios,AR-E,annual,2023,gas oil combustion consumption by to the public,94.6344,TJ,CO2,74100.0,kg/TJ,7012409.04,kg -88202217-1098-32cd-a2d5-5ef38b144849,SESCO,II.1.1,Entre Rios,AR-E,annual,2023,gas oil combustion consumption by to the public,94.6344,TJ,CH4,3.9,kg/TJ,369.07416,kg -88202217-1098-32cd-a2d5-5ef38b144849,SESCO,II.1.1,Entre Rios,AR-E,annual,2023,gas oil combustion consumption by to the public,94.6344,TJ,N2O,3.9,kg/TJ,369.07416,kg -95b5b8be-5774-3247-8ad7-fec972214827,SESCO,II.1.1,Formosa,AR-P,annual,2023,gas oil combustion consumption by to the public,3.50364,TJ,CO2,74100.0,kg/TJ,259619.724,kg -61044331-fdf7-36a9-b817-4ceea416a6b3,SESCO,II.1.1,Formosa,AR-P,annual,2023,gas oil combustion consumption by to the public,3.50364,TJ,CH4,3.9,kg/TJ,13.664195999999999,kg -61044331-fdf7-36a9-b817-4ceea416a6b3,SESCO,II.1.1,Formosa,AR-P,annual,2023,gas oil combustion consumption by to the public,3.50364,TJ,N2O,3.9,kg/TJ,13.664195999999999,kg -9e7320d9-2b4f-3744-bd29-526fb6c79b64,SESCO,II.1.1,La Rioja,AR-F,annual,2023,gas oil combustion consumption by to the public,23.51412,TJ,CO2,74100.0,kg/TJ,1742396.292,kg -f1b621ce-8d3f-3e9b-a3a2-c372338ca736,SESCO,II.1.1,La Rioja,AR-F,annual,2023,gas oil combustion consumption by to the public,23.51412,TJ,CH4,3.9,kg/TJ,91.705068,kg -f1b621ce-8d3f-3e9b-a3a2-c372338ca736,SESCO,II.1.1,La Rioja,AR-F,annual,2023,gas oil combustion consumption by to the public,23.51412,TJ,N2O,3.9,kg/TJ,91.705068,kg -debe0b8f-750a-31ed-8bf7-fa27d0fa3cfe,SESCO,II.1.1,Mendoza,AR-M,annual,2023,gas oil combustion consumption by to the public,145.16628,TJ,CO2,74100.0,kg/TJ,10756821.348,kg -bb4b21ae-e3ca-3328-985e-a5c84e67c148,SESCO,II.1.1,Mendoza,AR-M,annual,2023,gas oil combustion consumption by to the public,145.16628,TJ,CH4,3.9,kg/TJ,566.148492,kg -bb4b21ae-e3ca-3328-985e-a5c84e67c148,SESCO,II.1.1,Mendoza,AR-M,annual,2023,gas oil combustion consumption by to the public,145.16628,TJ,N2O,3.9,kg/TJ,566.148492,kg -fdc3c109-4b31-3214-9719-a2bae0dc1c01,SESCO,II.1.1,Misiones,AR-N,annual,2023,gas oil combustion consumption by to the public,28.24584,TJ,CO2,74100.0,kg/TJ,2093016.7440000002,kg -222fce30-201c-3719-baa7-076fa417d4f6,SESCO,II.1.1,Misiones,AR-N,annual,2023,gas oil combustion consumption by to the public,28.24584,TJ,CH4,3.9,kg/TJ,110.158776,kg -222fce30-201c-3719-baa7-076fa417d4f6,SESCO,II.1.1,Misiones,AR-N,annual,2023,gas oil combustion consumption by to the public,28.24584,TJ,N2O,3.9,kg/TJ,110.158776,kg -6a54925d-2f6e-357e-849b-ffad6f0e4f5c,SESCO,II.1.1,San Juan,AR-J,annual,2023,gas oil combustion consumption by to the public,35.9394,TJ,CO2,74100.0,kg/TJ,2663109.54,kg -5e849432-9ea9-3c48-9264-3eb210818167,SESCO,II.1.1,San Juan,AR-J,annual,2023,gas oil combustion consumption by to the public,35.9394,TJ,CH4,3.9,kg/TJ,140.16366,kg -5e849432-9ea9-3c48-9264-3eb210818167,SESCO,II.1.1,San Juan,AR-J,annual,2023,gas oil combustion consumption by to the public,35.9394,TJ,N2O,3.9,kg/TJ,140.16366,kg -dfe5d5a8-a808-3773-9862-15b6c003b424,SESCO,II.1.1,San Luis,AR-D,annual,2023,gas oil combustion consumption by to the public,3.21468,TJ,CO2,74100.0,kg/TJ,238207.788,kg -38b47e36-e88e-3cfd-a58f-af28e80ba363,SESCO,II.1.1,San Luis,AR-D,annual,2023,gas oil combustion consumption by to the public,3.21468,TJ,CH4,3.9,kg/TJ,12.537252,kg -38b47e36-e88e-3cfd-a58f-af28e80ba363,SESCO,II.1.1,San Luis,AR-D,annual,2023,gas oil combustion consumption by to the public,3.21468,TJ,N2O,3.9,kg/TJ,12.537252,kg -e751d305-2fe8-394b-b783-561409d185aa,SESCO,II.1.1,Santa Fe,AR-S,annual,2023,gas oil combustion consumption by to the public,188.0046,TJ,CO2,74100.0,kg/TJ,13931140.860000001,kg -7b4ee8ca-c432-3305-98b6-804bc8d48b3e,SESCO,II.1.1,Santa Fe,AR-S,annual,2023,gas oil combustion consumption by to the public,188.0046,TJ,CH4,3.9,kg/TJ,733.21794,kg -7b4ee8ca-c432-3305-98b6-804bc8d48b3e,SESCO,II.1.1,Santa Fe,AR-S,annual,2023,gas oil combustion consumption by to the public,188.0046,TJ,N2O,3.9,kg/TJ,733.21794,kg -bcc0c9bd-1673-3a8a-89f5-e2f52189a5b7,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2023,gas oil combustion consumption by to the public,31.46052,TJ,CO2,74100.0,kg/TJ,2331224.532,kg -244fda60-68f7-3033-82b2-20398d80d0db,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2023,gas oil combustion consumption by to the public,31.46052,TJ,CH4,3.9,kg/TJ,122.696028,kg -244fda60-68f7-3033-82b2-20398d80d0db,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2023,gas oil combustion consumption by to the public,31.46052,TJ,N2O,3.9,kg/TJ,122.696028,kg -5e766edc-1c46-3f73-ba77-1bd8b45229ed,SESCO,II.1.1,Tucuman,AR-T,annual,2023,gas oil combustion consumption by to the public,16.00116,TJ,CO2,74100.0,kg/TJ,1185685.956,kg -d30cac35-2ae2-3591-870f-04cc67ba69b9,SESCO,II.1.1,Tucuman,AR-T,annual,2023,gas oil combustion consumption by to the public,16.00116,TJ,CH4,3.9,kg/TJ,62.404523999999995,kg -d30cac35-2ae2-3591-870f-04cc67ba69b9,SESCO,II.1.1,Tucuman,AR-T,annual,2023,gas oil combustion consumption by to the public,16.00116,TJ,N2O,3.9,kg/TJ,62.404523999999995,kg -970b0fee-498e-3b94-8b97-2164d33bfae3,SESCO,II.1.1,Corrientes,AR-W,annual,2023,jet kerosene combustion consumption by to the public,0.157265,TJ,CO2,71500.0,kg/TJ,11244.447499999998,kg -33470466-84bd-3fe3-8e5d-36ee4f291f39,SESCO,II.1.1,Corrientes,AR-W,annual,2023,jet kerosene combustion consumption by to the public,0.157265,TJ,CH4,0.5,kg/TJ,0.0786325,kg -f7df9a5f-7a07-3acd-bf5b-2c08c78a66e2,SESCO,II.1.1,Corrientes,AR-W,annual,2023,jet kerosene combustion consumption by to the public,0.157265,TJ,N2O,2.0,kg/TJ,0.31453,kg -367923cb-40b1-38b6-a59d-7a3cba3b09a9,SESCO,II.1.1,Santa Fe,AR-S,annual,2023,jet kerosene combustion consumption by to the public,0.6605129999999999,TJ,CO2,71500.0,kg/TJ,47226.67949999999,kg -2934b284-8bb0-3123-bbfe-ac8f2281c1e8,SESCO,II.1.1,Santa Fe,AR-S,annual,2023,jet kerosene combustion consumption by to the public,0.6605129999999999,TJ,CH4,0.5,kg/TJ,0.33025649999999995,kg -2a26e8f6-000f-3902-98b8-93c156c7d413,SESCO,II.1.1,Santa Fe,AR-S,annual,2023,jet kerosene combustion consumption by to the public,0.6605129999999999,TJ,N2O,2.0,kg/TJ,1.3210259999999998,kg -c2418ea3-6d87-3de5-8722-2ddc25ee4fb0,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2023,jet kerosene combustion consumption by to the public,0.9121369999999999,TJ,CO2,71500.0,kg/TJ,65217.79549999999,kg -a9f6ead5-c47f-39c7-a179-5b9a876d14c6,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2023,jet kerosene combustion consumption by to the public,0.9121369999999999,TJ,CH4,0.5,kg/TJ,0.45606849999999993,kg -0b8c414a-8b0e-3b6d-8c32-fb02b2449a2a,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2023,jet kerosene combustion consumption by to the public,0.9121369999999999,TJ,N2O,2.0,kg/TJ,1.8242739999999997,kg -38d50a01-4c02-3e61-b960-eed817530016,SESCO,I.3.1,Buenos Aires,AR-B,annual,2023,gas oil combustion consumption by petrochemical industries,6.10428,TJ,CO2,74100.0,kg/TJ,452327.148,kg -c0febd1a-df8e-3034-81b4-dfb03e4b7a7b,SESCO,I.3.1,Buenos Aires,AR-B,annual,2023,gas oil combustion consumption by petrochemical industries,6.10428,TJ,CH4,3.9,kg/TJ,23.806692,kg -c0febd1a-df8e-3034-81b4-dfb03e4b7a7b,SESCO,I.3.1,Buenos Aires,AR-B,annual,2023,gas oil combustion consumption by petrochemical industries,6.10428,TJ,N2O,3.9,kg/TJ,23.806692,kg -10105257-5bf4-32d5-b89e-2e9e60bd79e3,SESCO,I.3.1,Buenos Aires,AR-B,annual,2023,gas oil combustion consumption by petrochemical industries,0.93912,TJ,CO2,74100.0,kg/TJ,69588.792,kg -d3056a9a-eb13-31ea-89bc-d40223f070dc,SESCO,I.3.1,Buenos Aires,AR-B,annual,2023,gas oil combustion consumption by petrochemical industries,0.93912,TJ,CH4,3.9,kg/TJ,3.662568,kg -d3056a9a-eb13-31ea-89bc-d40223f070dc,SESCO,I.3.1,Buenos Aires,AR-B,annual,2023,gas oil combustion consumption by petrochemical industries,0.93912,TJ,N2O,3.9,kg/TJ,3.662568,kg -dcb2ef54-0606-3fb7-9c50-6e655740a436,SESCO,I.3.1,La Rioja,AR-F,annual,2023,gas oil combustion consumption by petrochemical industries,5.99592,TJ,CO2,74100.0,kg/TJ,444297.672,kg -604b5110-8569-38b9-b72c-c83f2320d48c,SESCO,I.3.1,La Rioja,AR-F,annual,2023,gas oil combustion consumption by petrochemical industries,5.99592,TJ,CH4,3.9,kg/TJ,23.384088,kg -604b5110-8569-38b9-b72c-c83f2320d48c,SESCO,I.3.1,La Rioja,AR-F,annual,2023,gas oil combustion consumption by petrochemical industries,5.99592,TJ,N2O,3.9,kg/TJ,23.384088,kg -cdbce76a-a4ef-3931-8a06-0f5ab4ef3a2a,SESCO,II.1.1,Chubut,AR-U,annual,2023,gas oil combustion consumption by freight transport,1.30032,TJ,CO2,74100.0,kg/TJ,96353.712,kg -cee77155-31ff-3069-b2d5-0e6b8fdbe793,SESCO,II.1.1,Chubut,AR-U,annual,2023,gas oil combustion consumption by freight transport,1.30032,TJ,CH4,3.9,kg/TJ,5.071248,kg -cee77155-31ff-3069-b2d5-0e6b8fdbe793,SESCO,II.1.1,Chubut,AR-U,annual,2023,gas oil combustion consumption by freight transport,1.30032,TJ,N2O,3.9,kg/TJ,5.071248,kg -9a7b8166-0f7e-3d60-81dc-77364783cb4e,SESCO,II.5.1,Buenos Aires,AR-B,annual,2023,gas oil combustion consumption by agriculture machines,4776.47268,TJ,CO2,74100.0,kg/TJ,353936625.588,kg -b65bb6c6-13ac-3cf1-99fe-29ae57db7f9d,SESCO,II.5.1,Buenos Aires,AR-B,annual,2023,gas oil combustion consumption by agriculture machines,4776.47268,TJ,CH4,3.9,kg/TJ,18628.243452,kg -b65bb6c6-13ac-3cf1-99fe-29ae57db7f9d,SESCO,II.5.1,Buenos Aires,AR-B,annual,2023,gas oil combustion consumption by agriculture machines,4776.47268,TJ,N2O,3.9,kg/TJ,18628.243452,kg -9127eadc-f6f7-32b5-bc2b-e530d6d7acb0,SESCO,II.5.1,Catamarca,AR-K,annual,2023,gas oil combustion consumption by agriculture machines,289.17672,TJ,CO2,74100.0,kg/TJ,21427994.952,kg -c64ae42f-e151-3f70-8e08-fbef0377797a,SESCO,II.5.1,Catamarca,AR-K,annual,2023,gas oil combustion consumption by agriculture machines,289.17672,TJ,CH4,3.9,kg/TJ,1127.789208,kg -c64ae42f-e151-3f70-8e08-fbef0377797a,SESCO,II.5.1,Catamarca,AR-K,annual,2023,gas oil combustion consumption by agriculture machines,289.17672,TJ,N2O,3.9,kg/TJ,1127.789208,kg -541fb8fa-a205-3b39-a812-3dd982ae4a45,SESCO,II.5.1,Chaco,AR-H,annual,2023,gas oil combustion consumption by agriculture machines,568.02312,TJ,CO2,74100.0,kg/TJ,42090513.191999994,kg -5db92c32-9ec4-32f6-bdb8-6756d2e6d5c7,SESCO,II.5.1,Chaco,AR-H,annual,2023,gas oil combustion consumption by agriculture machines,568.02312,TJ,CH4,3.9,kg/TJ,2215.2901679999995,kg -5db92c32-9ec4-32f6-bdb8-6756d2e6d5c7,SESCO,II.5.1,Chaco,AR-H,annual,2023,gas oil combustion consumption by agriculture machines,568.02312,TJ,N2O,3.9,kg/TJ,2215.2901679999995,kg -16c7ab5b-4bc1-3bb5-b03b-a92323d9c00e,SESCO,II.5.1,Corrientes,AR-W,annual,2023,gas oil combustion consumption by agriculture machines,880.35276,TJ,CO2,74100.0,kg/TJ,65234139.516,kg -97f3bb6c-ab59-3f29-920e-512e381158fe,SESCO,II.5.1,Corrientes,AR-W,annual,2023,gas oil combustion consumption by agriculture machines,880.35276,TJ,CH4,3.9,kg/TJ,3433.375764,kg -97f3bb6c-ab59-3f29-920e-512e381158fe,SESCO,II.5.1,Corrientes,AR-W,annual,2023,gas oil combustion consumption by agriculture machines,880.35276,TJ,N2O,3.9,kg/TJ,3433.375764,kg -c5f71b9b-0ff8-3f45-93a3-579bbe88c251,SESCO,II.5.1,Córdoba,AR-X,annual,2023,gas oil combustion consumption by agriculture machines,2496.72276,TJ,CO2,74100.0,kg/TJ,185007156.516,kg -cdec1da2-b2a1-3431-9e28-36647baaa00c,SESCO,II.5.1,Córdoba,AR-X,annual,2023,gas oil combustion consumption by agriculture machines,2496.72276,TJ,CH4,3.9,kg/TJ,9737.218764000001,kg -cdec1da2-b2a1-3431-9e28-36647baaa00c,SESCO,II.5.1,Córdoba,AR-X,annual,2023,gas oil combustion consumption by agriculture machines,2496.72276,TJ,N2O,3.9,kg/TJ,9737.218764000001,kg -b4725c0a-e8db-395a-a98b-df3aca3a6504,SESCO,II.5.1,Entre Rios,AR-E,annual,2023,gas oil combustion consumption by agriculture machines,719.76324,TJ,CO2,74100.0,kg/TJ,53334456.084,kg -b88c955a-fc53-32f4-bc57-43a2ca411a8a,SESCO,II.5.1,Entre Rios,AR-E,annual,2023,gas oil combustion consumption by agriculture machines,719.76324,TJ,CH4,3.9,kg/TJ,2807.076636,kg -b88c955a-fc53-32f4-bc57-43a2ca411a8a,SESCO,II.5.1,Entre Rios,AR-E,annual,2023,gas oil combustion consumption by agriculture machines,719.76324,TJ,N2O,3.9,kg/TJ,2807.076636,kg -5f075a92-ebb4-3247-8216-fdb8aff641a4,SESCO,II.5.1,Jujuy,AR-Y,annual,2023,gas oil combustion consumption by agriculture machines,115.83684,TJ,CO2,74100.0,kg/TJ,8583509.844,kg -e051d5c1-1bb5-3176-8369-a1e3e8007411,SESCO,II.5.1,Jujuy,AR-Y,annual,2023,gas oil combustion consumption by agriculture machines,115.83684,TJ,CH4,3.9,kg/TJ,451.763676,kg -e051d5c1-1bb5-3176-8369-a1e3e8007411,SESCO,II.5.1,Jujuy,AR-Y,annual,2023,gas oil combustion consumption by agriculture machines,115.83684,TJ,N2O,3.9,kg/TJ,451.763676,kg -10cae01b-45e8-3d3d-adb1-2b07042b00a6,SESCO,II.5.1,La Pampa,AR-L,annual,2023,gas oil combustion consumption by agriculture machines,245.86884,TJ,CO2,74100.0,kg/TJ,18218881.044,kg -8aa33926-04f6-3f1a-9034-17a432530069,SESCO,II.5.1,La Pampa,AR-L,annual,2023,gas oil combustion consumption by agriculture machines,245.86884,TJ,CH4,3.9,kg/TJ,958.888476,kg -8aa33926-04f6-3f1a-9034-17a432530069,SESCO,II.5.1,La Pampa,AR-L,annual,2023,gas oil combustion consumption by agriculture machines,245.86884,TJ,N2O,3.9,kg/TJ,958.888476,kg -3b187e17-1f55-3ed3-9695-dedcb63c59eb,SESCO,II.5.1,Mendoza,AR-M,annual,2023,gas oil combustion consumption by agriculture machines,356.39603999999997,TJ,CO2,74100.0,kg/TJ,26408946.564,kg -e438bbd9-212f-3bff-b874-5d30ede5d5a9,SESCO,II.5.1,Mendoza,AR-M,annual,2023,gas oil combustion consumption by agriculture machines,356.39603999999997,TJ,CH4,3.9,kg/TJ,1389.944556,kg -e438bbd9-212f-3bff-b874-5d30ede5d5a9,SESCO,II.5.1,Mendoza,AR-M,annual,2023,gas oil combustion consumption by agriculture machines,356.39603999999997,TJ,N2O,3.9,kg/TJ,1389.944556,kg -23c57ab3-4248-3deb-adda-1ae5a0885f1e,SESCO,II.5.1,Misiones,AR-N,annual,2023,gas oil combustion consumption by agriculture machines,148.38096,TJ,CO2,74100.0,kg/TJ,10995029.136,kg -2859e1bf-63ee-3134-83bc-194003fcb5c6,SESCO,II.5.1,Misiones,AR-N,annual,2023,gas oil combustion consumption by agriculture machines,148.38096,TJ,CH4,3.9,kg/TJ,578.6857439999999,kg -2859e1bf-63ee-3134-83bc-194003fcb5c6,SESCO,II.5.1,Misiones,AR-N,annual,2023,gas oil combustion consumption by agriculture machines,148.38096,TJ,N2O,3.9,kg/TJ,578.6857439999999,kg -7fa3a05e-fbdb-3e2a-b25b-a7ecd371c83c,SESCO,II.5.1,Neuquén,AR-Q,annual,2023,gas oil combustion consumption by agriculture machines,397.89792,TJ,CO2,74100.0,kg/TJ,29484235.872,kg -efd5cf47-4123-3080-a8d3-7f303a90117f,SESCO,II.5.1,Neuquén,AR-Q,annual,2023,gas oil combustion consumption by agriculture machines,397.89792,TJ,CH4,3.9,kg/TJ,1551.801888,kg -efd5cf47-4123-3080-a8d3-7f303a90117f,SESCO,II.5.1,Neuquén,AR-Q,annual,2023,gas oil combustion consumption by agriculture machines,397.89792,TJ,N2O,3.9,kg/TJ,1551.801888,kg -87d1b586-8ab1-34b9-b1c1-74cba2d3c32a,SESCO,II.5.1,Salta,AR-A,annual,2023,gas oil combustion consumption by agriculture machines,392.55216,TJ,CO2,74100.0,kg/TJ,29088115.056,kg -f70d4288-6c74-3ff8-974a-46140b796866,SESCO,II.5.1,Salta,AR-A,annual,2023,gas oil combustion consumption by agriculture machines,392.55216,TJ,CH4,3.9,kg/TJ,1530.953424,kg -f70d4288-6c74-3ff8-974a-46140b796866,SESCO,II.5.1,Salta,AR-A,annual,2023,gas oil combustion consumption by agriculture machines,392.55216,TJ,N2O,3.9,kg/TJ,1530.953424,kg -5cb8c995-647e-3b8f-a949-ce52fb6110ae,SESCO,II.5.1,San Juan,AR-J,annual,2023,gas oil combustion consumption by agriculture machines,187.17383999999998,TJ,CO2,74100.0,kg/TJ,13869581.544,kg -d2415e25-f41e-3dcc-87a9-b851f5c62ed3,SESCO,II.5.1,San Juan,AR-J,annual,2023,gas oil combustion consumption by agriculture machines,187.17383999999998,TJ,CH4,3.9,kg/TJ,729.9779759999999,kg -d2415e25-f41e-3dcc-87a9-b851f5c62ed3,SESCO,II.5.1,San Juan,AR-J,annual,2023,gas oil combustion consumption by agriculture machines,187.17383999999998,TJ,N2O,3.9,kg/TJ,729.9779759999999,kg -e1d82d4d-5c8f-32ae-9f91-f6db2991f5df,SESCO,II.5.1,San Luis,AR-D,annual,2023,gas oil combustion consumption by agriculture machines,348.77472,TJ,CO2,74100.0,kg/TJ,25844206.752,kg -289f48eb-ab0c-30e1-9d58-7cd252c0757a,SESCO,II.5.1,San Luis,AR-D,annual,2023,gas oil combustion consumption by agriculture machines,348.77472,TJ,CH4,3.9,kg/TJ,1360.2214079999999,kg -289f48eb-ab0c-30e1-9d58-7cd252c0757a,SESCO,II.5.1,San Luis,AR-D,annual,2023,gas oil combustion consumption by agriculture machines,348.77472,TJ,N2O,3.9,kg/TJ,1360.2214079999999,kg -ebe95db2-7110-301d-bdad-5ae3ecb4bde9,SESCO,II.5.1,Santa Cruz,AR-Z,annual,2023,gas oil combustion consumption by agriculture machines,159.54204,TJ,CO2,74100.0,kg/TJ,11822065.163999999,kg -cdf0721b-63ba-3220-93f8-98215b62a841,SESCO,II.5.1,Santa Cruz,AR-Z,annual,2023,gas oil combustion consumption by agriculture machines,159.54204,TJ,CH4,3.9,kg/TJ,622.2139559999999,kg -cdf0721b-63ba-3220-93f8-98215b62a841,SESCO,II.5.1,Santa Cruz,AR-Z,annual,2023,gas oil combustion consumption by agriculture machines,159.54204,TJ,N2O,3.9,kg/TJ,622.2139559999999,kg -75028960-7318-34ca-9d6a-724ef704b5cc,SESCO,II.5.1,Santa Fe,AR-S,annual,2023,gas oil combustion consumption by agriculture machines,4504.5252,TJ,CO2,74100.0,kg/TJ,333785317.32,kg -269bb254-fbbd-3d39-b1cd-b98a3aadd0eb,SESCO,II.5.1,Santa Fe,AR-S,annual,2023,gas oil combustion consumption by agriculture machines,4504.5252,TJ,CH4,3.9,kg/TJ,17567.64828,kg -269bb254-fbbd-3d39-b1cd-b98a3aadd0eb,SESCO,II.5.1,Santa Fe,AR-S,annual,2023,gas oil combustion consumption by agriculture machines,4504.5252,TJ,N2O,3.9,kg/TJ,17567.64828,kg -d3fa7323-3cbf-337f-8760-7822e2f391ab,SESCO,II.5.1,Santiago del Estero,AR-G,annual,2023,gas oil combustion consumption by agriculture machines,536.34588,TJ,CO2,74100.0,kg/TJ,39743229.708,kg -d4da0f85-64e4-360f-9ca7-e3c5fbbb86a3,SESCO,II.5.1,Santiago del Estero,AR-G,annual,2023,gas oil combustion consumption by agriculture machines,536.34588,TJ,CH4,3.9,kg/TJ,2091.748932,kg -d4da0f85-64e4-360f-9ca7-e3c5fbbb86a3,SESCO,II.5.1,Santiago del Estero,AR-G,annual,2023,gas oil combustion consumption by agriculture machines,536.34588,TJ,N2O,3.9,kg/TJ,2091.748932,kg -502f2253-da4e-3956-8b56-cf8dafd68f5f,SESCO,II.5.1,Tucuman,AR-T,annual,2023,gas oil combustion consumption by agriculture machines,234.0576,TJ,CO2,74100.0,kg/TJ,17343668.16,kg -a7ff6434-e378-3bf0-a510-f6fac911eeb4,SESCO,II.5.1,Tucuman,AR-T,annual,2023,gas oil combustion consumption by agriculture machines,234.0576,TJ,CH4,3.9,kg/TJ,912.82464,kg -a7ff6434-e378-3bf0-a510-f6fac911eeb4,SESCO,II.5.1,Tucuman,AR-T,annual,2023,gas oil combustion consumption by agriculture machines,234.0576,TJ,N2O,3.9,kg/TJ,912.82464,kg -73d4b647-619a-3c00-8578-d0d1a9445174,SESCO,II.5.1,Buenos Aires,AR-B,annual,2023,gas oil combustion consumption by agriculture machines,396.92268,TJ,CO2,74100.0,kg/TJ,29411970.588,kg -3669564b-4f48-3859-9230-79734e40687c,SESCO,II.5.1,Buenos Aires,AR-B,annual,2023,gas oil combustion consumption by agriculture machines,396.92268,TJ,CH4,3.9,kg/TJ,1547.998452,kg -3669564b-4f48-3859-9230-79734e40687c,SESCO,II.5.1,Buenos Aires,AR-B,annual,2023,gas oil combustion consumption by agriculture machines,396.92268,TJ,N2O,3.9,kg/TJ,1547.998452,kg -d3a6a61b-7db2-3b9d-9920-4af8e945a0ff,SESCO,II.5.1,Catamarca,AR-K,annual,2023,gas oil combustion consumption by agriculture machines,63.35448,TJ,CO2,74100.0,kg/TJ,4694566.968,kg -fc733c05-43d5-3928-8a1c-cdefae6d9cb8,SESCO,II.5.1,Catamarca,AR-K,annual,2023,gas oil combustion consumption by agriculture machines,63.35448,TJ,CH4,3.9,kg/TJ,247.082472,kg -fc733c05-43d5-3928-8a1c-cdefae6d9cb8,SESCO,II.5.1,Catamarca,AR-K,annual,2023,gas oil combustion consumption by agriculture machines,63.35448,TJ,N2O,3.9,kg/TJ,247.082472,kg -9c1be85b-c385-3681-869d-79dd6a4b1d1c,SESCO,II.5.1,Chaco,AR-H,annual,2023,gas oil combustion consumption by agriculture machines,153.40164,TJ,CO2,74100.0,kg/TJ,11367061.523999998,kg -542ba9af-5c24-362d-a12e-409319fd8b23,SESCO,II.5.1,Chaco,AR-H,annual,2023,gas oil combustion consumption by agriculture machines,153.40164,TJ,CH4,3.9,kg/TJ,598.266396,kg -542ba9af-5c24-362d-a12e-409319fd8b23,SESCO,II.5.1,Chaco,AR-H,annual,2023,gas oil combustion consumption by agriculture machines,153.40164,TJ,N2O,3.9,kg/TJ,598.266396,kg -924a8cb0-f18e-3a4b-9616-50b8ed76679b,SESCO,II.5.1,Corrientes,AR-W,annual,2023,gas oil combustion consumption by agriculture machines,78.59712,TJ,CO2,74100.0,kg/TJ,5824046.592,kg -8eb5bc68-e228-39fd-bd6b-45ec4138107c,SESCO,II.5.1,Corrientes,AR-W,annual,2023,gas oil combustion consumption by agriculture machines,78.59712,TJ,CH4,3.9,kg/TJ,306.528768,kg -8eb5bc68-e228-39fd-bd6b-45ec4138107c,SESCO,II.5.1,Corrientes,AR-W,annual,2023,gas oil combustion consumption by agriculture machines,78.59712,TJ,N2O,3.9,kg/TJ,306.528768,kg -b4779036-8fbb-3ea0-ba70-60c42c8b11cf,SESCO,II.5.1,Córdoba,AR-X,annual,2023,gas oil combustion consumption by agriculture machines,159.03636,TJ,CO2,74100.0,kg/TJ,11784594.276,kg -f75bbbc4-6014-3e9c-926b-49cabea82397,SESCO,II.5.1,Córdoba,AR-X,annual,2023,gas oil combustion consumption by agriculture machines,159.03636,TJ,CH4,3.9,kg/TJ,620.241804,kg -f75bbbc4-6014-3e9c-926b-49cabea82397,SESCO,II.5.1,Córdoba,AR-X,annual,2023,gas oil combustion consumption by agriculture machines,159.03636,TJ,N2O,3.9,kg/TJ,620.241804,kg -07bf56c9-2e7f-33ba-ad8e-af65bb050c71,SESCO,II.5.1,Entre Rios,AR-E,annual,2023,gas oil combustion consumption by agriculture machines,44.68044,TJ,CO2,74100.0,kg/TJ,3310820.604,kg -da68e56a-ad55-3ec3-b562-191f3e5e2d4e,SESCO,II.5.1,Entre Rios,AR-E,annual,2023,gas oil combustion consumption by agriculture machines,44.68044,TJ,CH4,3.9,kg/TJ,174.253716,kg -da68e56a-ad55-3ec3-b562-191f3e5e2d4e,SESCO,II.5.1,Entre Rios,AR-E,annual,2023,gas oil combustion consumption by agriculture machines,44.68044,TJ,N2O,3.9,kg/TJ,174.253716,kg -439b795b-d175-3686-be7c-78b8378c260c,SESCO,II.5.1,Jujuy,AR-Y,annual,2023,gas oil combustion consumption by agriculture machines,29.00436,TJ,CO2,74100.0,kg/TJ,2149223.076,kg -b8029a18-ed4f-3274-91c6-d2be4b9fc48b,SESCO,II.5.1,Jujuy,AR-Y,annual,2023,gas oil combustion consumption by agriculture machines,29.00436,TJ,CH4,3.9,kg/TJ,113.117004,kg -b8029a18-ed4f-3274-91c6-d2be4b9fc48b,SESCO,II.5.1,Jujuy,AR-Y,annual,2023,gas oil combustion consumption by agriculture machines,29.00436,TJ,N2O,3.9,kg/TJ,113.117004,kg -95b7c8f8-15d6-30a8-af06-6781ad30e73f,SESCO,II.5.1,La Pampa,AR-L,annual,2023,gas oil combustion consumption by agriculture machines,15.350999999999999,TJ,CO2,74100.0,kg/TJ,1137509.0999999999,kg -44eec79b-7e0f-3c0b-b9b9-73ccd16b5448,SESCO,II.5.1,La Pampa,AR-L,annual,2023,gas oil combustion consumption by agriculture machines,15.350999999999999,TJ,CH4,3.9,kg/TJ,59.8689,kg -44eec79b-7e0f-3c0b-b9b9-73ccd16b5448,SESCO,II.5.1,La Pampa,AR-L,annual,2023,gas oil combustion consumption by agriculture machines,15.350999999999999,TJ,N2O,3.9,kg/TJ,59.8689,kg -f7ae6dbd-1998-364b-96e8-a825922ebdd5,SESCO,II.5.1,Mendoza,AR-M,annual,2023,gas oil combustion consumption by agriculture machines,125.3364,TJ,CO2,74100.0,kg/TJ,9287427.24,kg -2c8bf724-90e3-35de-a3de-6c6b8b9f1b54,SESCO,II.5.1,Mendoza,AR-M,annual,2023,gas oil combustion consumption by agriculture machines,125.3364,TJ,CH4,3.9,kg/TJ,488.81196,kg -2c8bf724-90e3-35de-a3de-6c6b8b9f1b54,SESCO,II.5.1,Mendoza,AR-M,annual,2023,gas oil combustion consumption by agriculture machines,125.3364,TJ,N2O,3.9,kg/TJ,488.81196,kg -453d65e3-b9d2-346d-987e-8b9f538ac667,SESCO,II.5.1,Misiones,AR-N,annual,2023,gas oil combustion consumption by agriculture machines,15.7122,TJ,CO2,74100.0,kg/TJ,1164274.02,kg -1e03892d-f623-3435-a005-9e4450cf56d6,SESCO,II.5.1,Misiones,AR-N,annual,2023,gas oil combustion consumption by agriculture machines,15.7122,TJ,CH4,3.9,kg/TJ,61.27757999999999,kg -1e03892d-f623-3435-a005-9e4450cf56d6,SESCO,II.5.1,Misiones,AR-N,annual,2023,gas oil combustion consumption by agriculture machines,15.7122,TJ,N2O,3.9,kg/TJ,61.27757999999999,kg -97674e08-f23d-3b5b-ac24-fc5be0cc8f26,SESCO,II.5.1,Neuquén,AR-Q,annual,2023,gas oil combustion consumption by agriculture machines,25.13952,TJ,CO2,74100.0,kg/TJ,1862838.432,kg -ad9f762c-e5d6-31c6-a16c-fbd8fecda012,SESCO,II.5.1,Neuquén,AR-Q,annual,2023,gas oil combustion consumption by agriculture machines,25.13952,TJ,CH4,3.9,kg/TJ,98.044128,kg -ad9f762c-e5d6-31c6-a16c-fbd8fecda012,SESCO,II.5.1,Neuquén,AR-Q,annual,2023,gas oil combustion consumption by agriculture machines,25.13952,TJ,N2O,3.9,kg/TJ,98.044128,kg -b5455068-18e7-37dd-9ddd-a591f602ef31,SESCO,II.5.1,Salta,AR-A,annual,2023,gas oil combustion consumption by agriculture machines,32.29128,TJ,CO2,74100.0,kg/TJ,2392783.848,kg -1b94004b-d890-324f-95ce-e9224fb11f9a,SESCO,II.5.1,Salta,AR-A,annual,2023,gas oil combustion consumption by agriculture machines,32.29128,TJ,CH4,3.9,kg/TJ,125.935992,kg -1b94004b-d890-324f-95ce-e9224fb11f9a,SESCO,II.5.1,Salta,AR-A,annual,2023,gas oil combustion consumption by agriculture machines,32.29128,TJ,N2O,3.9,kg/TJ,125.935992,kg -3bf5d693-42a6-3000-8635-f69f51c3fded,SESCO,II.5.1,San Juan,AR-J,annual,2023,gas oil combustion consumption by agriculture machines,27.01776,TJ,CO2,74100.0,kg/TJ,2002016.0159999998,kg -cb40094d-1221-39ed-870e-97d2aa5a7e4e,SESCO,II.5.1,San Juan,AR-J,annual,2023,gas oil combustion consumption by agriculture machines,27.01776,TJ,CH4,3.9,kg/TJ,105.369264,kg -cb40094d-1221-39ed-870e-97d2aa5a7e4e,SESCO,II.5.1,San Juan,AR-J,annual,2023,gas oil combustion consumption by agriculture machines,27.01776,TJ,N2O,3.9,kg/TJ,105.369264,kg -c6ec8de4-914b-3955-8fb4-e540d25e0bfd,SESCO,II.5.1,San Luis,AR-D,annual,2023,gas oil combustion consumption by agriculture machines,26.51208,TJ,CO2,74100.0,kg/TJ,1964545.128,kg -8e17b58f-0ec3-3cc8-93c0-b85fe41a8dfb,SESCO,II.5.1,San Luis,AR-D,annual,2023,gas oil combustion consumption by agriculture machines,26.51208,TJ,CH4,3.9,kg/TJ,103.397112,kg -8e17b58f-0ec3-3cc8-93c0-b85fe41a8dfb,SESCO,II.5.1,San Luis,AR-D,annual,2023,gas oil combustion consumption by agriculture machines,26.51208,TJ,N2O,3.9,kg/TJ,103.397112,kg -e6c48ec2-5d59-3cce-b7bb-626338469347,SESCO,II.5.1,Santa Cruz,AR-Z,annual,2023,gas oil combustion consumption by agriculture machines,30.55752,TJ,CO2,74100.0,kg/TJ,2264312.232,kg -3f2c3413-9c7f-3a61-808e-02e5c12eaa24,SESCO,II.5.1,Santa Cruz,AR-Z,annual,2023,gas oil combustion consumption by agriculture machines,30.55752,TJ,CH4,3.9,kg/TJ,119.174328,kg -3f2c3413-9c7f-3a61-808e-02e5c12eaa24,SESCO,II.5.1,Santa Cruz,AR-Z,annual,2023,gas oil combustion consumption by agriculture machines,30.55752,TJ,N2O,3.9,kg/TJ,119.174328,kg -f40ff65d-b466-3ccf-81dc-79a69fc8fcd4,SESCO,II.5.1,Santa Fe,AR-S,annual,2023,gas oil combustion consumption by agriculture machines,279.35208,TJ,CO2,74100.0,kg/TJ,20699989.128,kg -02258fdb-b0c7-3cc8-b7a0-61d710329db0,SESCO,II.5.1,Santa Fe,AR-S,annual,2023,gas oil combustion consumption by agriculture machines,279.35208,TJ,CH4,3.9,kg/TJ,1089.473112,kg -02258fdb-b0c7-3cc8-b7a0-61d710329db0,SESCO,II.5.1,Santa Fe,AR-S,annual,2023,gas oil combustion consumption by agriculture machines,279.35208,TJ,N2O,3.9,kg/TJ,1089.473112,kg -1fc490d1-a41c-3d6d-825f-83be159d215c,SESCO,II.5.1,Santiago del Estero,AR-G,annual,2023,gas oil combustion consumption by agriculture machines,199.52688,TJ,CO2,74100.0,kg/TJ,14784941.808,kg -d0f51115-350d-3b2f-b4a4-d5cd56ab6ec8,SESCO,II.5.1,Santiago del Estero,AR-G,annual,2023,gas oil combustion consumption by agriculture machines,199.52688,TJ,CH4,3.9,kg/TJ,778.154832,kg -d0f51115-350d-3b2f-b4a4-d5cd56ab6ec8,SESCO,II.5.1,Santiago del Estero,AR-G,annual,2023,gas oil combustion consumption by agriculture machines,199.52688,TJ,N2O,3.9,kg/TJ,778.154832,kg -e1306629-5166-39ab-8c59-545508329f73,SESCO,II.5.1,Tucuman,AR-T,annual,2023,gas oil combustion consumption by agriculture machines,42.441,TJ,CO2,74100.0,kg/TJ,3144878.1,kg -c94c92bb-82a5-36fa-aaf7-3b6c0cf08289,SESCO,II.5.1,Tucuman,AR-T,annual,2023,gas oil combustion consumption by agriculture machines,42.441,TJ,CH4,3.9,kg/TJ,165.5199,kg -c94c92bb-82a5-36fa-aaf7-3b6c0cf08289,SESCO,II.5.1,Tucuman,AR-T,annual,2023,gas oil combustion consumption by agriculture machines,42.441,TJ,N2O,3.9,kg/TJ,165.5199,kg -d10b0b26-d975-368b-bc44-141ad892ad4f,SESCO,II.1.1,Buenos Aires,AR-B,annual,2023,gas oil combustion consumption by to the public,8453.416439999999,TJ,CO2,74100.0,kg/TJ,626398158.2039999,kg -81833fde-9293-370c-abcd-915e603c9be4,SESCO,II.1.1,Buenos Aires,AR-B,annual,2023,gas oil combustion consumption by to the public,8453.416439999999,TJ,CH4,3.9,kg/TJ,32968.324115999996,kg -81833fde-9293-370c-abcd-915e603c9be4,SESCO,II.1.1,Buenos Aires,AR-B,annual,2023,gas oil combustion consumption by to the public,8453.416439999999,TJ,N2O,3.9,kg/TJ,32968.324115999996,kg -3bb80bb6-b65f-37bb-afb5-9def0cbe63a5,SESCO,II.1.1,Capital Federal,AR-C,annual,2023,gas oil combustion consumption by to the public,885.1206,TJ,CO2,74100.0,kg/TJ,65587436.46,kg -74dce227-8885-34ab-9830-affdb5aa7bfc,SESCO,II.1.1,Capital Federal,AR-C,annual,2023,gas oil combustion consumption by to the public,885.1206,TJ,CH4,3.9,kg/TJ,3451.97034,kg -74dce227-8885-34ab-9830-affdb5aa7bfc,SESCO,II.1.1,Capital Federal,AR-C,annual,2023,gas oil combustion consumption by to the public,885.1206,TJ,N2O,3.9,kg/TJ,3451.97034,kg -060fff26-f914-3e9f-b42e-dbb33ae52cce,SESCO,II.1.1,Catamarca,AR-K,annual,2023,gas oil combustion consumption by to the public,281.80824,TJ,CO2,74100.0,kg/TJ,20881990.584000003,kg -193829e5-07aa-3e85-89dd-97ebf35dcdf9,SESCO,II.1.1,Catamarca,AR-K,annual,2023,gas oil combustion consumption by to the public,281.80824,TJ,CH4,3.9,kg/TJ,1099.052136,kg -193829e5-07aa-3e85-89dd-97ebf35dcdf9,SESCO,II.1.1,Catamarca,AR-K,annual,2023,gas oil combustion consumption by to the public,281.80824,TJ,N2O,3.9,kg/TJ,1099.052136,kg -837af5d4-4c91-363c-817a-4fe451cda4a4,SESCO,II.1.1,Chaco,AR-H,annual,2023,gas oil combustion consumption by to the public,393.81636,TJ,CO2,74100.0,kg/TJ,29181792.275999997,kg -26bd00bc-fb3b-3248-b391-b25c054cd1ab,SESCO,II.1.1,Chaco,AR-H,annual,2023,gas oil combustion consumption by to the public,393.81636,TJ,CH4,3.9,kg/TJ,1535.8838039999998,kg -26bd00bc-fb3b-3248-b391-b25c054cd1ab,SESCO,II.1.1,Chaco,AR-H,annual,2023,gas oil combustion consumption by to the public,393.81636,TJ,N2O,3.9,kg/TJ,1535.8838039999998,kg -ce158715-d3ec-3f3b-9efe-ced7b01b12cd,SESCO,II.1.1,Chubut,AR-U,annual,2023,gas oil combustion consumption by to the public,1230.50004,TJ,CO2,74100.0,kg/TJ,91180052.96399999,kg -e5935d84-f336-3284-a118-d5832349f13e,SESCO,II.1.1,Chubut,AR-U,annual,2023,gas oil combustion consumption by to the public,1230.50004,TJ,CH4,3.9,kg/TJ,4798.950156,kg -e5935d84-f336-3284-a118-d5832349f13e,SESCO,II.1.1,Chubut,AR-U,annual,2023,gas oil combustion consumption by to the public,1230.50004,TJ,N2O,3.9,kg/TJ,4798.950156,kg -dc4b59c3-aa23-3cbe-b97e-a38de03f6bc7,SESCO,II.1.1,Corrientes,AR-W,annual,2023,gas oil combustion consumption by to the public,797.27676,TJ,CO2,74100.0,kg/TJ,59078207.916,kg -b24d3268-b769-3bcd-a378-4e65ef660b40,SESCO,II.1.1,Corrientes,AR-W,annual,2023,gas oil combustion consumption by to the public,797.27676,TJ,CH4,3.9,kg/TJ,3109.379364,kg -b24d3268-b769-3bcd-a378-4e65ef660b40,SESCO,II.1.1,Corrientes,AR-W,annual,2023,gas oil combustion consumption by to the public,797.27676,TJ,N2O,3.9,kg/TJ,3109.379364,kg -3fc88e85-a565-39b6-b2dd-d85aa1aef57d,SESCO,II.1.1,Córdoba,AR-X,annual,2023,gas oil combustion consumption by to the public,3050.334,TJ,CO2,74100.0,kg/TJ,226029749.39999998,kg -90a83ad6-6be6-3f49-93e4-7a6226a1440b,SESCO,II.1.1,Córdoba,AR-X,annual,2023,gas oil combustion consumption by to the public,3050.334,TJ,CH4,3.9,kg/TJ,11896.302599999999,kg -90a83ad6-6be6-3f49-93e4-7a6226a1440b,SESCO,II.1.1,Córdoba,AR-X,annual,2023,gas oil combustion consumption by to the public,3050.334,TJ,N2O,3.9,kg/TJ,11896.302599999999,kg -8fdc4438-0758-3838-91c7-1709e9aff4d6,SESCO,II.1.1,Entre Rios,AR-E,annual,2023,gas oil combustion consumption by to the public,1176.68124,TJ,CO2,74100.0,kg/TJ,87192079.88399999,kg -b69e2075-6161-3cd9-9d1a-304c3da53bcc,SESCO,II.1.1,Entre Rios,AR-E,annual,2023,gas oil combustion consumption by to the public,1176.68124,TJ,CH4,3.9,kg/TJ,4589.056836,kg -b69e2075-6161-3cd9-9d1a-304c3da53bcc,SESCO,II.1.1,Entre Rios,AR-E,annual,2023,gas oil combustion consumption by to the public,1176.68124,TJ,N2O,3.9,kg/TJ,4589.056836,kg -1fe76157-81ce-382d-b48b-59e58f281c2e,SESCO,II.1.1,Formosa,AR-P,annual,2023,gas oil combustion consumption by to the public,632.2805999999999,TJ,CO2,74100.0,kg/TJ,46851992.45999999,kg -0c6a9c59-32dd-30bd-bd32-ef662dc2e567,SESCO,II.1.1,Formosa,AR-P,annual,2023,gas oil combustion consumption by to the public,632.2805999999999,TJ,CH4,3.9,kg/TJ,2465.89434,kg -0c6a9c59-32dd-30bd-bd32-ef662dc2e567,SESCO,II.1.1,Formosa,AR-P,annual,2023,gas oil combustion consumption by to the public,632.2805999999999,TJ,N2O,3.9,kg/TJ,2465.89434,kg -d9a8a610-62a9-3e97-8c85-b5a66f75c3d9,SESCO,II.1.1,Jujuy,AR-Y,annual,2023,gas oil combustion consumption by to the public,316.19448,TJ,CO2,74100.0,kg/TJ,23430010.968,kg -a6778852-ce42-3efc-912f-19086de6f3b6,SESCO,II.1.1,Jujuy,AR-Y,annual,2023,gas oil combustion consumption by to the public,316.19448,TJ,CH4,3.9,kg/TJ,1233.158472,kg -a6778852-ce42-3efc-912f-19086de6f3b6,SESCO,II.1.1,Jujuy,AR-Y,annual,2023,gas oil combustion consumption by to the public,316.19448,TJ,N2O,3.9,kg/TJ,1233.158472,kg -b87282a7-8285-31d3-b252-1b404900cd47,SESCO,II.1.1,La Pampa,AR-L,annual,2023,gas oil combustion consumption by to the public,456.3762,TJ,CO2,74100.0,kg/TJ,33817476.42,kg -dad982e7-0474-3ede-a437-7ed699ffb8f5,SESCO,II.1.1,La Pampa,AR-L,annual,2023,gas oil combustion consumption by to the public,456.3762,TJ,CH4,3.9,kg/TJ,1779.86718,kg -dad982e7-0474-3ede-a437-7ed699ffb8f5,SESCO,II.1.1,La Pampa,AR-L,annual,2023,gas oil combustion consumption by to the public,456.3762,TJ,N2O,3.9,kg/TJ,1779.86718,kg -35ce4b02-bfaa-3741-b2a1-a8337b3685d1,SESCO,II.1.1,La Rioja,AR-F,annual,2023,gas oil combustion consumption by to the public,62.99328,TJ,CO2,74100.0,kg/TJ,4667802.0479999995,kg -2b82986a-b46a-3182-adeb-b6acb10683c5,SESCO,II.1.1,La Rioja,AR-F,annual,2023,gas oil combustion consumption by to the public,62.99328,TJ,CH4,3.9,kg/TJ,245.673792,kg -2b82986a-b46a-3182-adeb-b6acb10683c5,SESCO,II.1.1,La Rioja,AR-F,annual,2023,gas oil combustion consumption by to the public,62.99328,TJ,N2O,3.9,kg/TJ,245.673792,kg -54dad741-44f3-3f7e-9c87-d3892a9f0b90,SESCO,II.1.1,Mendoza,AR-M,annual,2023,gas oil combustion consumption by to the public,1488.79416,TJ,CO2,74100.0,kg/TJ,110319647.256,kg -5af16ce6-5d62-38f7-a297-23461239471a,SESCO,II.1.1,Mendoza,AR-M,annual,2023,gas oil combustion consumption by to the public,1488.79416,TJ,CH4,3.9,kg/TJ,5806.297224,kg -5af16ce6-5d62-38f7-a297-23461239471a,SESCO,II.1.1,Mendoza,AR-M,annual,2023,gas oil combustion consumption by to the public,1488.79416,TJ,N2O,3.9,kg/TJ,5806.297224,kg -9a712a88-ee3c-3b72-9702-0bb38695d645,SESCO,II.1.1,Misiones,AR-N,annual,2023,gas oil combustion consumption by to the public,982.17504,TJ,CO2,74100.0,kg/TJ,72779170.464,kg -38754dba-70a6-3cd9-a59d-e5ee5d967db4,SESCO,II.1.1,Misiones,AR-N,annual,2023,gas oil combustion consumption by to the public,982.17504,TJ,CH4,3.9,kg/TJ,3830.4826559999997,kg -38754dba-70a6-3cd9-a59d-e5ee5d967db4,SESCO,II.1.1,Misiones,AR-N,annual,2023,gas oil combustion consumption by to the public,982.17504,TJ,N2O,3.9,kg/TJ,3830.4826559999997,kg -0ec31974-73ad-34f2-9738-63678a4300a2,SESCO,II.1.1,Neuquén,AR-Q,annual,2023,gas oil combustion consumption by to the public,287.62356,TJ,CO2,74100.0,kg/TJ,21312905.796,kg -b3078948-a3da-3f9c-a0f5-b6bfcd1ffc3e,SESCO,II.1.1,Neuquén,AR-Q,annual,2023,gas oil combustion consumption by to the public,287.62356,TJ,CH4,3.9,kg/TJ,1121.731884,kg -b3078948-a3da-3f9c-a0f5-b6bfcd1ffc3e,SESCO,II.1.1,Neuquén,AR-Q,annual,2023,gas oil combustion consumption by to the public,287.62356,TJ,N2O,3.9,kg/TJ,1121.731884,kg -6d948c71-baa8-3494-a7f5-5de50a8842f0,SESCO,II.1.1,Rio Negro,AR-R,annual,2023,gas oil combustion consumption by to the public,735.25872,TJ,CO2,74100.0,kg/TJ,54482671.152,kg -6404ebb8-6c1c-362f-b987-1a40f530f3bc,SESCO,II.1.1,Rio Negro,AR-R,annual,2023,gas oil combustion consumption by to the public,735.25872,TJ,CH4,3.9,kg/TJ,2867.509008,kg -6404ebb8-6c1c-362f-b987-1a40f530f3bc,SESCO,II.1.1,Rio Negro,AR-R,annual,2023,gas oil combustion consumption by to the public,735.25872,TJ,N2O,3.9,kg/TJ,2867.509008,kg -ae62aa47-277c-3abe-bdd9-9e47957d9808,SESCO,II.1.1,Salta,AR-A,annual,2023,gas oil combustion consumption by to the public,284.37275999999997,TJ,CO2,74100.0,kg/TJ,21072021.516,kg -81ffebaf-9692-3cd9-ab51-864644603583,SESCO,II.1.1,Salta,AR-A,annual,2023,gas oil combustion consumption by to the public,284.37275999999997,TJ,CH4,3.9,kg/TJ,1109.0537639999998,kg -81ffebaf-9692-3cd9-ab51-864644603583,SESCO,II.1.1,Salta,AR-A,annual,2023,gas oil combustion consumption by to the public,284.37275999999997,TJ,N2O,3.9,kg/TJ,1109.0537639999998,kg -ba659f34-2a9a-31a9-ad31-a29febf013f2,SESCO,II.1.1,San Juan,AR-J,annual,2023,gas oil combustion consumption by to the public,323.274,TJ,CO2,74100.0,kg/TJ,23954603.4,kg -2091eb21-c50e-36f8-ae2a-0fa46bf4b27d,SESCO,II.1.1,San Juan,AR-J,annual,2023,gas oil combustion consumption by to the public,323.274,TJ,CH4,3.9,kg/TJ,1260.7685999999999,kg -2091eb21-c50e-36f8-ae2a-0fa46bf4b27d,SESCO,II.1.1,San Juan,AR-J,annual,2023,gas oil combustion consumption by to the public,323.274,TJ,N2O,3.9,kg/TJ,1260.7685999999999,kg -3ab14be9-160c-31a0-be0e-ab05839f0526,SESCO,II.1.1,San Luis,AR-D,annual,2023,gas oil combustion consumption by to the public,572.57424,TJ,CO2,74100.0,kg/TJ,42427751.184,kg -ac9cd448-9830-38cc-9161-c65f74cbbd0a,SESCO,II.1.1,San Luis,AR-D,annual,2023,gas oil combustion consumption by to the public,572.57424,TJ,CH4,3.9,kg/TJ,2233.039536,kg -ac9cd448-9830-38cc-9161-c65f74cbbd0a,SESCO,II.1.1,San Luis,AR-D,annual,2023,gas oil combustion consumption by to the public,572.57424,TJ,N2O,3.9,kg/TJ,2233.039536,kg -b95721cf-b2ff-3ec2-b705-899e090289b1,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2023,gas oil combustion consumption by to the public,543.67824,TJ,CO2,74100.0,kg/TJ,40286557.584,kg -ff825ec4-be53-333b-9a01-dc1c9cad0aea,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2023,gas oil combustion consumption by to the public,543.67824,TJ,CH4,3.9,kg/TJ,2120.345136,kg -ff825ec4-be53-333b-9a01-dc1c9cad0aea,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2023,gas oil combustion consumption by to the public,543.67824,TJ,N2O,3.9,kg/TJ,2120.345136,kg -b87f24b9-d7e8-3109-9d0b-91f64746d7b6,SESCO,II.1.1,Santa Fe,AR-S,annual,2023,gas oil combustion consumption by to the public,1887.59508,TJ,CO2,74100.0,kg/TJ,139870795.428,kg -a0696034-811e-39e9-b5a8-ddd16d7e878e,SESCO,II.1.1,Santa Fe,AR-S,annual,2023,gas oil combustion consumption by to the public,1887.59508,TJ,CH4,3.9,kg/TJ,7361.620812,kg -a0696034-811e-39e9-b5a8-ddd16d7e878e,SESCO,II.1.1,Santa Fe,AR-S,annual,2023,gas oil combustion consumption by to the public,1887.59508,TJ,N2O,3.9,kg/TJ,7361.620812,kg -08faf26c-4074-35b5-b404-809f4b37b20f,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2023,gas oil combustion consumption by to the public,455.79828,TJ,CO2,74100.0,kg/TJ,33774652.548,kg -d3633239-6305-33a1-9c4d-ed48d8ae88f0,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2023,gas oil combustion consumption by to the public,455.79828,TJ,CH4,3.9,kg/TJ,1777.6132919999998,kg -d3633239-6305-33a1-9c4d-ed48d8ae88f0,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2023,gas oil combustion consumption by to the public,455.79828,TJ,N2O,3.9,kg/TJ,1777.6132919999998,kg -fcfd083c-e1cd-3630-9b44-f7fa1b426b90,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2023,gas oil combustion consumption by to the public,95.24844,TJ,CO2,74100.0,kg/TJ,7057909.404,kg -92b52723-9055-3b49-8f65-e9d534f889b0,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2023,gas oil combustion consumption by to the public,95.24844,TJ,CH4,3.9,kg/TJ,371.468916,kg -92b52723-9055-3b49-8f65-e9d534f889b0,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2023,gas oil combustion consumption by to the public,95.24844,TJ,N2O,3.9,kg/TJ,371.468916,kg -65c3100c-47c4-3ba0-a4f5-bd21f28c1984,SESCO,II.1.1,Tucuman,AR-T,annual,2023,gas oil combustion consumption by to the public,135.48612,TJ,CO2,74100.0,kg/TJ,10039521.492,kg -740e45b7-dd38-32f2-8ddd-b187624c9572,SESCO,II.1.1,Tucuman,AR-T,annual,2023,gas oil combustion consumption by to the public,135.48612,TJ,CH4,3.9,kg/TJ,528.395868,kg -740e45b7-dd38-32f2-8ddd-b187624c9572,SESCO,II.1.1,Tucuman,AR-T,annual,2023,gas oil combustion consumption by to the public,135.48612,TJ,N2O,3.9,kg/TJ,528.395868,kg -c3357dfd-cc6e-34cb-81f4-fb17e03688c6,SESCO,II.1.1,Buenos Aires,AR-B,annual,2023,gas oil combustion consumption by to the public,3612.14448,TJ,CO2,74100.0,kg/TJ,267659905.968,kg -ffe33f42-609b-3396-9c1d-3d84254a3bde,SESCO,II.1.1,Buenos Aires,AR-B,annual,2023,gas oil combustion consumption by to the public,3612.14448,TJ,CH4,3.9,kg/TJ,14087.363472,kg -ffe33f42-609b-3396-9c1d-3d84254a3bde,SESCO,II.1.1,Buenos Aires,AR-B,annual,2023,gas oil combustion consumption by to the public,3612.14448,TJ,N2O,3.9,kg/TJ,14087.363472,kg -0ce6a5cc-e5d9-3c9c-9d6c-1c3b46a7437d,SESCO,II.1.1,Capital Federal,AR-C,annual,2023,gas oil combustion consumption by to the public,588.25032,TJ,CO2,74100.0,kg/TJ,43589348.712,kg -23f7024b-16d3-35fd-ae43-58e005bd1dde,SESCO,II.1.1,Capital Federal,AR-C,annual,2023,gas oil combustion consumption by to the public,588.25032,TJ,CH4,3.9,kg/TJ,2294.1762479999998,kg -23f7024b-16d3-35fd-ae43-58e005bd1dde,SESCO,II.1.1,Capital Federal,AR-C,annual,2023,gas oil combustion consumption by to the public,588.25032,TJ,N2O,3.9,kg/TJ,2294.1762479999998,kg -9c6af592-61e1-3d0f-a63a-3fed39387c6d,SESCO,II.1.1,Catamarca,AR-K,annual,2023,gas oil combustion consumption by to the public,175.03752,TJ,CO2,74100.0,kg/TJ,12970280.232,kg -305163d3-a842-3b3e-903b-6157424430c4,SESCO,II.1.1,Catamarca,AR-K,annual,2023,gas oil combustion consumption by to the public,175.03752,TJ,CH4,3.9,kg/TJ,682.646328,kg -305163d3-a842-3b3e-903b-6157424430c4,SESCO,II.1.1,Catamarca,AR-K,annual,2023,gas oil combustion consumption by to the public,175.03752,TJ,N2O,3.9,kg/TJ,682.646328,kg -219bb452-19f2-3283-860d-6d8477d97ae3,SESCO,II.1.1,Chaco,AR-H,annual,2023,gas oil combustion consumption by to the public,166.00752,TJ,CO2,74100.0,kg/TJ,12301157.232,kg -faf2445b-7d3d-32f2-85e0-23fad90b9c09,SESCO,II.1.1,Chaco,AR-H,annual,2023,gas oil combustion consumption by to the public,166.00752,TJ,CH4,3.9,kg/TJ,647.4293279999999,kg -faf2445b-7d3d-32f2-85e0-23fad90b9c09,SESCO,II.1.1,Chaco,AR-H,annual,2023,gas oil combustion consumption by to the public,166.00752,TJ,N2O,3.9,kg/TJ,647.4293279999999,kg -6b310635-9338-325b-a114-6bca946bdb0d,SESCO,II.1.1,Chubut,AR-U,annual,2023,gas oil combustion consumption by to the public,638.09592,TJ,CO2,74100.0,kg/TJ,47282907.672,kg -a520f70c-e7ac-3643-8671-bf46e9ade084,SESCO,II.1.1,Chubut,AR-U,annual,2023,gas oil combustion consumption by to the public,638.09592,TJ,CH4,3.9,kg/TJ,2488.574088,kg -a520f70c-e7ac-3643-8671-bf46e9ade084,SESCO,II.1.1,Chubut,AR-U,annual,2023,gas oil combustion consumption by to the public,638.09592,TJ,N2O,3.9,kg/TJ,2488.574088,kg -65aa5be4-4d05-319e-9c05-e7a7d1e33b7e,SESCO,II.1.1,Corrientes,AR-W,annual,2023,gas oil combustion consumption by to the public,240.81204,TJ,CO2,74100.0,kg/TJ,17844172.164,kg -bf8d0362-5915-383e-8683-e6ed457bdad4,SESCO,II.1.1,Corrientes,AR-W,annual,2023,gas oil combustion consumption by to the public,240.81204,TJ,CH4,3.9,kg/TJ,939.1669559999999,kg -bf8d0362-5915-383e-8683-e6ed457bdad4,SESCO,II.1.1,Corrientes,AR-W,annual,2023,gas oil combustion consumption by to the public,240.81204,TJ,N2O,3.9,kg/TJ,939.1669559999999,kg -3f88181e-c435-3744-a6c6-b977e6d012f1,SESCO,II.1.1,Córdoba,AR-X,annual,2023,gas oil combustion consumption by to the public,935.94144,TJ,CO2,74100.0,kg/TJ,69353260.704,kg -addb91c9-101c-398f-82e6-e2c14caf8432,SESCO,II.1.1,Córdoba,AR-X,annual,2023,gas oil combustion consumption by to the public,935.94144,TJ,CH4,3.9,kg/TJ,3650.1716159999996,kg -addb91c9-101c-398f-82e6-e2c14caf8432,SESCO,II.1.1,Córdoba,AR-X,annual,2023,gas oil combustion consumption by to the public,935.94144,TJ,N2O,3.9,kg/TJ,3650.1716159999996,kg -5ca3f424-6d78-38b2-ba70-7a73d1836ffd,SESCO,II.1.1,Entre Rios,AR-E,annual,2023,gas oil combustion consumption by to the public,476.71175999999997,TJ,CO2,74100.0,kg/TJ,35324341.416,kg -6685b57b-68fb-36bf-a7a1-e228142a9f8c,SESCO,II.1.1,Entre Rios,AR-E,annual,2023,gas oil combustion consumption by to the public,476.71175999999997,TJ,CH4,3.9,kg/TJ,1859.1758639999998,kg -6685b57b-68fb-36bf-a7a1-e228142a9f8c,SESCO,II.1.1,Entre Rios,AR-E,annual,2023,gas oil combustion consumption by to the public,476.71175999999997,TJ,N2O,3.9,kg/TJ,1859.1758639999998,kg -de28e33d-4248-3ed5-8f24-bd9e8929acdf,SESCO,II.1.1,Formosa,AR-P,annual,2023,gas oil combustion consumption by to the public,444.96227999999996,TJ,CO2,74100.0,kg/TJ,32971704.948,kg -833df534-04c7-3648-994e-38aa8c5c0841,SESCO,II.1.1,Formosa,AR-P,annual,2023,gas oil combustion consumption by to the public,444.96227999999996,TJ,CH4,3.9,kg/TJ,1735.3528919999999,kg -833df534-04c7-3648-994e-38aa8c5c0841,SESCO,II.1.1,Formosa,AR-P,annual,2023,gas oil combustion consumption by to the public,444.96227999999996,TJ,N2O,3.9,kg/TJ,1735.3528919999999,kg -ee48162a-7f8a-30fb-a145-e26db31a0b7c,SESCO,II.1.1,Jujuy,AR-Y,annual,2023,gas oil combustion consumption by to the public,115.29504,TJ,CO2,74100.0,kg/TJ,8543362.464,kg -c960e6bd-cbf2-36af-a964-406497644e07,SESCO,II.1.1,Jujuy,AR-Y,annual,2023,gas oil combustion consumption by to the public,115.29504,TJ,CH4,3.9,kg/TJ,449.65065599999997,kg -c960e6bd-cbf2-36af-a964-406497644e07,SESCO,II.1.1,Jujuy,AR-Y,annual,2023,gas oil combustion consumption by to the public,115.29504,TJ,N2O,3.9,kg/TJ,449.65065599999997,kg -b8a79fe3-bbff-3862-858b-2842e5c68191,SESCO,II.1.1,La Pampa,AR-L,annual,2023,gas oil combustion consumption by to the public,149.10336,TJ,CO2,74100.0,kg/TJ,11048558.976,kg -338187cd-399e-3f87-99a2-e0fb571ec45d,SESCO,II.1.1,La Pampa,AR-L,annual,2023,gas oil combustion consumption by to the public,149.10336,TJ,CH4,3.9,kg/TJ,581.503104,kg -338187cd-399e-3f87-99a2-e0fb571ec45d,SESCO,II.1.1,La Pampa,AR-L,annual,2023,gas oil combustion consumption by to the public,149.10336,TJ,N2O,3.9,kg/TJ,581.503104,kg -057e1f94-a21a-37b8-ae3e-fed151f180ee,SESCO,II.1.1,La Rioja,AR-F,annual,2023,gas oil combustion consumption by to the public,65.59392,TJ,CO2,74100.0,kg/TJ,4860509.472,kg -71b31153-9db3-3dc5-a680-4b0bf9919516,SESCO,II.1.1,La Rioja,AR-F,annual,2023,gas oil combustion consumption by to the public,65.59392,TJ,CH4,3.9,kg/TJ,255.816288,kg -71b31153-9db3-3dc5-a680-4b0bf9919516,SESCO,II.1.1,La Rioja,AR-F,annual,2023,gas oil combustion consumption by to the public,65.59392,TJ,N2O,3.9,kg/TJ,255.816288,kg -ac299a2b-e974-3507-a672-589ac46f42c1,SESCO,II.1.1,Mendoza,AR-M,annual,2023,gas oil combustion consumption by to the public,424.12104,TJ,CO2,74100.0,kg/TJ,31427369.064,kg -1d10af4e-8fba-37f2-b46f-83ec7a2c0f9e,SESCO,II.1.1,Mendoza,AR-M,annual,2023,gas oil combustion consumption by to the public,424.12104,TJ,CH4,3.9,kg/TJ,1654.072056,kg -1d10af4e-8fba-37f2-b46f-83ec7a2c0f9e,SESCO,II.1.1,Mendoza,AR-M,annual,2023,gas oil combustion consumption by to the public,424.12104,TJ,N2O,3.9,kg/TJ,1654.072056,kg -2aa0deba-3e33-3acb-8dcc-90ea2075be97,SESCO,II.1.1,Misiones,AR-N,annual,2023,gas oil combustion consumption by to the public,330.78696,TJ,CO2,74100.0,kg/TJ,24511313.736,kg -a903001f-6879-3a9b-802b-d937468a102d,SESCO,II.1.1,Misiones,AR-N,annual,2023,gas oil combustion consumption by to the public,330.78696,TJ,CH4,3.9,kg/TJ,1290.069144,kg -a903001f-6879-3a9b-802b-d937468a102d,SESCO,II.1.1,Misiones,AR-N,annual,2023,gas oil combustion consumption by to the public,330.78696,TJ,N2O,3.9,kg/TJ,1290.069144,kg -5253fe72-7aac-3a14-ba37-d71912747787,SESCO,II.1.1,Neuquén,AR-Q,annual,2023,gas oil combustion consumption by to the public,274.80096,TJ,CO2,74100.0,kg/TJ,20362751.136,kg -e8c6f76e-ddde-3b38-bb6a-f4aea01a7e9d,SESCO,II.1.1,Neuquén,AR-Q,annual,2023,gas oil combustion consumption by to the public,274.80096,TJ,CH4,3.9,kg/TJ,1071.723744,kg -e8c6f76e-ddde-3b38-bb6a-f4aea01a7e9d,SESCO,II.1.1,Neuquén,AR-Q,annual,2023,gas oil combustion consumption by to the public,274.80096,TJ,N2O,3.9,kg/TJ,1071.723744,kg -e4454a33-1001-3c61-8865-5f07da08f8a0,SESCO,II.1.1,Rio Negro,AR-R,annual,2023,gas oil combustion consumption by to the public,444.6372,TJ,CO2,74100.0,kg/TJ,32947616.52,kg -ad1b14b5-276c-39f6-915d-d6aa9f72b553,SESCO,II.1.1,Rio Negro,AR-R,annual,2023,gas oil combustion consumption by to the public,444.6372,TJ,CH4,3.9,kg/TJ,1734.08508,kg -ad1b14b5-276c-39f6-915d-d6aa9f72b553,SESCO,II.1.1,Rio Negro,AR-R,annual,2023,gas oil combustion consumption by to the public,444.6372,TJ,N2O,3.9,kg/TJ,1734.08508,kg -df4d3d63-4492-3323-856f-d2be52ee8dbb,SESCO,II.1.1,Salta,AR-A,annual,2023,gas oil combustion consumption by to the public,104.2062,TJ,CO2,74100.0,kg/TJ,7721679.42,kg -2dd79fbe-36a1-33e0-86ef-561c7cd4ee14,SESCO,II.1.1,Salta,AR-A,annual,2023,gas oil combustion consumption by to the public,104.2062,TJ,CH4,3.9,kg/TJ,406.40418,kg -2dd79fbe-36a1-33e0-86ef-561c7cd4ee14,SESCO,II.1.1,Salta,AR-A,annual,2023,gas oil combustion consumption by to the public,104.2062,TJ,N2O,3.9,kg/TJ,406.40418,kg -25bc51d6-b9ad-3d9e-81eb-7d67d9b1e696,SESCO,II.1.1,San Juan,AR-J,annual,2023,gas oil combustion consumption by to the public,84.05123999999999,TJ,CO2,74100.0,kg/TJ,6228196.884,kg -84a82bf2-37c0-35d3-88d5-edcd60673e5e,SESCO,II.1.1,San Juan,AR-J,annual,2023,gas oil combustion consumption by to the public,84.05123999999999,TJ,CH4,3.9,kg/TJ,327.79983599999997,kg -84a82bf2-37c0-35d3-88d5-edcd60673e5e,SESCO,II.1.1,San Juan,AR-J,annual,2023,gas oil combustion consumption by to the public,84.05123999999999,TJ,N2O,3.9,kg/TJ,327.79983599999997,kg -46bd417a-1051-31c2-816a-9606900f22b0,SESCO,II.1.1,San Luis,AR-D,annual,2023,gas oil combustion consumption by to the public,167.19948,TJ,CO2,74100.0,kg/TJ,12389481.468,kg -5703f569-952a-3729-ada2-3941bfe39709,SESCO,II.1.1,San Luis,AR-D,annual,2023,gas oil combustion consumption by to the public,167.19948,TJ,CH4,3.9,kg/TJ,652.0779719999999,kg -5703f569-952a-3729-ada2-3941bfe39709,SESCO,II.1.1,San Luis,AR-D,annual,2023,gas oil combustion consumption by to the public,167.19948,TJ,N2O,3.9,kg/TJ,652.0779719999999,kg -bc8a4358-0d2d-383a-8a7c-0541c25033d2,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2023,gas oil combustion consumption by to the public,429.90024,TJ,CO2,74100.0,kg/TJ,31855607.783999998,kg -0295fafa-4c0a-3d36-892f-c10ee2c417b0,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2023,gas oil combustion consumption by to the public,429.90024,TJ,CH4,3.9,kg/TJ,1676.610936,kg -0295fafa-4c0a-3d36-892f-c10ee2c417b0,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2023,gas oil combustion consumption by to the public,429.90024,TJ,N2O,3.9,kg/TJ,1676.610936,kg -782acf27-a836-3790-8d73-6df4de2609b4,SESCO,II.1.1,Santa Fe,AR-S,annual,2023,gas oil combustion consumption by to the public,861.24528,TJ,CO2,74100.0,kg/TJ,63818275.247999996,kg -f0cc5373-4ed9-3a3d-85f9-08987743df1d,SESCO,II.1.1,Santa Fe,AR-S,annual,2023,gas oil combustion consumption by to the public,861.24528,TJ,CH4,3.9,kg/TJ,3358.8565919999996,kg -f0cc5373-4ed9-3a3d-85f9-08987743df1d,SESCO,II.1.1,Santa Fe,AR-S,annual,2023,gas oil combustion consumption by to the public,861.24528,TJ,N2O,3.9,kg/TJ,3358.8565919999996,kg -34378964-cbb2-3e9f-b8f9-6595097f4149,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2023,gas oil combustion consumption by to the public,297.73716,TJ,CO2,74100.0,kg/TJ,22062323.556,kg -0e9f5d58-4fca-3f95-b9e0-be7e37844535,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2023,gas oil combustion consumption by to the public,297.73716,TJ,CH4,3.9,kg/TJ,1161.1749240000001,kg -0e9f5d58-4fca-3f95-b9e0-be7e37844535,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2023,gas oil combustion consumption by to the public,297.73716,TJ,N2O,3.9,kg/TJ,1161.1749240000001,kg -bf60920e-5cac-3a1c-9261-6a5041d4cc25,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2023,gas oil combustion consumption by to the public,37.09524,TJ,CO2,74100.0,kg/TJ,2748757.284,kg -ec777270-413b-3178-887e-212602652632,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2023,gas oil combustion consumption by to the public,37.09524,TJ,CH4,3.9,kg/TJ,144.67143599999997,kg -ec777270-413b-3178-887e-212602652632,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2023,gas oil combustion consumption by to the public,37.09524,TJ,N2O,3.9,kg/TJ,144.67143599999997,kg -6abb1773-5f9d-356c-9996-c735218adcce,SESCO,II.1.1,Tucuman,AR-T,annual,2023,gas oil combustion consumption by to the public,48.68976,TJ,CO2,74100.0,kg/TJ,3607911.216,kg -28592e1b-2fdc-3441-a7f9-883fdd57fddc,SESCO,II.1.1,Tucuman,AR-T,annual,2023,gas oil combustion consumption by to the public,48.68976,TJ,CH4,3.9,kg/TJ,189.890064,kg -28592e1b-2fdc-3441-a7f9-883fdd57fddc,SESCO,II.1.1,Tucuman,AR-T,annual,2023,gas oil combustion consumption by to the public,48.68976,TJ,N2O,3.9,kg/TJ,189.890064,kg -8812585f-aa4f-33ad-aade-32a79a17ca4e,SESCO,II.1.1,Buenos Aires,AR-B,annual,2023,jet kerosene combustion consumption by to the public,1.8871799999999996,TJ,CO2,71500.0,kg/TJ,134933.36999999997,kg -8df51a08-c2c4-34f6-ab32-e2f6d1f44958,SESCO,II.1.1,Buenos Aires,AR-B,annual,2023,jet kerosene combustion consumption by to the public,1.8871799999999996,TJ,CH4,0.5,kg/TJ,0.9435899999999998,kg -327f8496-d160-33f4-b559-80f5779b4a69,SESCO,II.1.1,Buenos Aires,AR-B,annual,2023,jet kerosene combustion consumption by to the public,1.8871799999999996,TJ,N2O,2.0,kg/TJ,3.7743599999999993,kg -398e5a5e-7991-3ce2-9717-fc9eb34fbc15,SESCO,II.1.1,Chaco,AR-H,annual,2023,jet kerosene combustion consumption by to the public,0.31453,TJ,CO2,71500.0,kg/TJ,22488.894999999997,kg -1db5b72f-618f-3cb1-9c80-166b713e4ad0,SESCO,II.1.1,Chaco,AR-H,annual,2023,jet kerosene combustion consumption by to the public,0.31453,TJ,CH4,0.5,kg/TJ,0.157265,kg -16bcc765-e390-30c5-9264-a831560800b3,SESCO,II.1.1,Chaco,AR-H,annual,2023,jet kerosene combustion consumption by to the public,0.31453,TJ,N2O,2.0,kg/TJ,0.62906,kg -a6aeb01e-4f09-3bfa-861c-d42f14f37209,SESCO,II.1.1,Córdoba,AR-X,annual,2023,jet kerosene combustion consumption by to the public,1.5411969999999997,TJ,CO2,71500.0,kg/TJ,110195.58549999997,kg -57a0904d-f155-3304-89ec-d64a011fb73b,SESCO,II.1.1,Córdoba,AR-X,annual,2023,jet kerosene combustion consumption by to the public,1.5411969999999997,TJ,CH4,0.5,kg/TJ,0.7705984999999999,kg -45cdd49a-6e76-32a3-a461-100e7263299a,SESCO,II.1.1,Córdoba,AR-X,annual,2023,jet kerosene combustion consumption by to the public,1.5411969999999997,TJ,N2O,2.0,kg/TJ,3.0823939999999994,kg -418d9c13-e4c1-3312-ad20-2cce3673bd89,SESCO,II.1.1,Entre Rios,AR-E,annual,2023,jet kerosene combustion consumption by to the public,1.100855,TJ,CO2,71500.0,kg/TJ,78711.13249999999,kg -bc5244d6-d7be-3d46-934b-d105a27fe67d,SESCO,II.1.1,Entre Rios,AR-E,annual,2023,jet kerosene combustion consumption by to the public,1.100855,TJ,CH4,0.5,kg/TJ,0.5504275,kg -fdcf8511-5f19-3abb-86f8-9f14c1291ec5,SESCO,II.1.1,Entre Rios,AR-E,annual,2023,jet kerosene combustion consumption by to the public,1.100855,TJ,N2O,2.0,kg/TJ,2.20171,kg -daec74c5-30cf-3421-875f-8d882fa9a518,SESCO,II.1.1,Misiones,AR-N,annual,2023,jet kerosene combustion consumption by to the public,0.157265,TJ,CO2,71500.0,kg/TJ,11244.447499999998,kg -015cd6bb-9906-38b5-b189-28a37a787a15,SESCO,II.1.1,Misiones,AR-N,annual,2023,jet kerosene combustion consumption by to the public,0.157265,TJ,CH4,0.5,kg/TJ,0.0786325,kg -6837d2da-a8e8-32e0-85df-7823659a37f1,SESCO,II.1.1,Misiones,AR-N,annual,2023,jet kerosene combustion consumption by to the public,0.157265,TJ,N2O,2.0,kg/TJ,0.31453,kg -a296a9e0-08ba-3f84-98a4-163b6c989ee2,SESCO,II.1.1,Santa Fe,AR-S,annual,2023,jet kerosene combustion consumption by to the public,1.5097439999999998,TJ,CO2,71500.0,kg/TJ,107946.69599999998,kg -b24063ef-f9e2-38a2-8b9d-9a9cfc77b6e2,SESCO,II.1.1,Santa Fe,AR-S,annual,2023,jet kerosene combustion consumption by to the public,1.5097439999999998,TJ,CH4,0.5,kg/TJ,0.7548719999999999,kg -6fd6acfc-3ab5-3a6d-9a67-005a9a13d7bd,SESCO,II.1.1,Santa Fe,AR-S,annual,2023,jet kerosene combustion consumption by to the public,1.5097439999999998,TJ,N2O,2.0,kg/TJ,3.0194879999999995,kg -62865a33-398c-3e39-bcf5-2a4e18046d58,SESCO,I.3.1,Capital Federal,AR-C,annual,2023,jet kerosene combustion consumption by petrochemical industries,0.25162399999999996,TJ,CO2,71500.0,kg/TJ,17991.115999999998,kg -6d42c8d5-b585-3daa-bea5-3f897ce0ea6f,SESCO,I.3.1,Capital Federal,AR-C,annual,2023,jet kerosene combustion consumption by petrochemical industries,0.25162399999999996,TJ,CH4,0.5,kg/TJ,0.12581199999999998,kg -9450ffb3-7286-31fb-ac93-1c0706c516b7,SESCO,I.3.1,Capital Federal,AR-C,annual,2023,jet kerosene combustion consumption by petrochemical industries,0.25162399999999996,TJ,N2O,2.0,kg/TJ,0.5032479999999999,kg -350eb14d-1efd-3c77-9353-751ae445c5d5,SESCO,II.2.1,Buenos Aires,AR-B,annual,2023,gas oil combustion consumption by railway transport,111.71916,TJ,CO2,74100.0,kg/TJ,8278389.756,kg -9aaacd99-c3bc-3aef-b754-70f6b16fc0f3,SESCO,II.2.1,Buenos Aires,AR-B,annual,2023,gas oil combustion consumption by railway transport,111.71916,TJ,CH4,3.9,kg/TJ,435.704724,kg -9aaacd99-c3bc-3aef-b754-70f6b16fc0f3,SESCO,II.2.1,Buenos Aires,AR-B,annual,2023,gas oil combustion consumption by railway transport,111.71916,TJ,N2O,3.9,kg/TJ,435.704724,kg -96b486d1-4a2f-3ada-9d3e-ec31571c80ad,SESCO,II.2.1,Córdoba,AR-X,annual,2023,gas oil combustion consumption by railway transport,1.30032,TJ,CO2,74100.0,kg/TJ,96353.712,kg -d99cb075-cd87-3443-b941-99051d523c13,SESCO,II.2.1,Córdoba,AR-X,annual,2023,gas oil combustion consumption by railway transport,1.30032,TJ,CH4,3.9,kg/TJ,5.071248,kg -d99cb075-cd87-3443-b941-99051d523c13,SESCO,II.2.1,Córdoba,AR-X,annual,2023,gas oil combustion consumption by railway transport,1.30032,TJ,N2O,3.9,kg/TJ,5.071248,kg -4e62d6dd-ebcd-3cc0-a87d-d7c7b46b3735,SESCO,II.2.1,La Pampa,AR-L,annual,2023,gas oil combustion consumption by railway transport,30.19632,TJ,CO2,74100.0,kg/TJ,2237547.312,kg -2a6f9074-3362-39d3-aae9-ae4ee9ba71c8,SESCO,II.2.1,La Pampa,AR-L,annual,2023,gas oil combustion consumption by railway transport,30.19632,TJ,CH4,3.9,kg/TJ,117.765648,kg -2a6f9074-3362-39d3-aae9-ae4ee9ba71c8,SESCO,II.2.1,La Pampa,AR-L,annual,2023,gas oil combustion consumption by railway transport,30.19632,TJ,N2O,3.9,kg/TJ,117.765648,kg -80149c20-2745-34bb-adb5-05560309138c,SESCO,II.2.1,Neuquén,AR-Q,annual,2023,gas oil combustion consumption by railway transport,2.81736,TJ,CO2,74100.0,kg/TJ,208766.376,kg -8420e818-7260-3c12-8c7a-e1e9b491d1c4,SESCO,II.2.1,Neuquén,AR-Q,annual,2023,gas oil combustion consumption by railway transport,2.81736,TJ,CH4,3.9,kg/TJ,10.987703999999999,kg -8420e818-7260-3c12-8c7a-e1e9b491d1c4,SESCO,II.2.1,Neuquén,AR-Q,annual,2023,gas oil combustion consumption by railway transport,2.81736,TJ,N2O,3.9,kg/TJ,10.987703999999999,kg -8333c581-da37-3c5b-8518-1101a6f6fc0a,SESCO,II.2.1,Santa Fe,AR-S,annual,2023,gas oil combustion consumption by railway transport,86.11008,TJ,CO2,74100.0,kg/TJ,6380756.927999999,kg -1ed5328e-9ff7-38f3-a339-cdf225491dd8,SESCO,II.2.1,Santa Fe,AR-S,annual,2023,gas oil combustion consumption by railway transport,86.11008,TJ,CH4,3.9,kg/TJ,335.82931199999996,kg -1ed5328e-9ff7-38f3-a339-cdf225491dd8,SESCO,II.2.1,Santa Fe,AR-S,annual,2023,gas oil combustion consumption by railway transport,86.11008,TJ,N2O,3.9,kg/TJ,335.82931199999996,kg -6bd6b07d-563a-3cb4-a789-f5f4fa90f72a,SESCO,II.2.1,Santiago del Estero,AR-G,annual,2023,gas oil combustion consumption by railway transport,5.20128,TJ,CO2,74100.0,kg/TJ,385414.848,kg -41d41861-3c43-3883-bb5d-0e0a89dd10ba,SESCO,II.2.1,Santiago del Estero,AR-G,annual,2023,gas oil combustion consumption by railway transport,5.20128,TJ,CH4,3.9,kg/TJ,20.284992,kg -41d41861-3c43-3883-bb5d-0e0a89dd10ba,SESCO,II.2.1,Santiago del Estero,AR-G,annual,2023,gas oil combustion consumption by railway transport,5.20128,TJ,N2O,3.9,kg/TJ,20.284992,kg -e720a8ea-e1ca-3be2-bf5a-8bb17579a36b,SESCO,II.2.1,Tucuman,AR-T,annual,2023,gas oil combustion consumption by railway transport,2.67288,TJ,CO2,74100.0,kg/TJ,198060.40800000002,kg -a8ffbab1-966b-30fd-8bd5-8d24397f98bc,SESCO,II.2.1,Tucuman,AR-T,annual,2023,gas oil combustion consumption by railway transport,2.67288,TJ,CH4,3.9,kg/TJ,10.424232,kg -a8ffbab1-966b-30fd-8bd5-8d24397f98bc,SESCO,II.2.1,Tucuman,AR-T,annual,2023,gas oil combustion consumption by railway transport,2.67288,TJ,N2O,3.9,kg/TJ,10.424232,kg -9bf9381d-239f-3570-a645-7b46d398f440,SESCO,II.1.1,Buenos Aires,AR-B,annual,2023,gas oil combustion consumption by freight transport,1298.8752,TJ,CO2,74100.0,kg/TJ,96246652.32,kg -570811f5-55cd-3772-b231-415cb05a9996,SESCO,II.1.1,Buenos Aires,AR-B,annual,2023,gas oil combustion consumption by freight transport,1298.8752,TJ,CH4,3.9,kg/TJ,5065.61328,kg -570811f5-55cd-3772-b231-415cb05a9996,SESCO,II.1.1,Buenos Aires,AR-B,annual,2023,gas oil combustion consumption by freight transport,1298.8752,TJ,N2O,3.9,kg/TJ,5065.61328,kg -e7afa33a-433d-395e-86ed-0657158d6045,SESCO,II.1.1,Capital Federal,AR-C,annual,2023,gas oil combustion consumption by freight transport,1383.25152,TJ,CO2,74100.0,kg/TJ,102498937.632,kg -ad6f4781-0fab-3897-b0e8-e0c551482d3b,SESCO,II.1.1,Capital Federal,AR-C,annual,2023,gas oil combustion consumption by freight transport,1383.25152,TJ,CH4,3.9,kg/TJ,5394.680928,kg -ad6f4781-0fab-3897-b0e8-e0c551482d3b,SESCO,II.1.1,Capital Federal,AR-C,annual,2023,gas oil combustion consumption by freight transport,1383.25152,TJ,N2O,3.9,kg/TJ,5394.680928,kg -a69e1070-bc08-372b-a493-20b147889894,SESCO,II.1.1,Chaco,AR-H,annual,2023,gas oil combustion consumption by freight transport,24.850559999999998,TJ,CO2,74100.0,kg/TJ,1841426.4959999998,kg -88bf00cc-378c-358f-8708-e44f49417952,SESCO,II.1.1,Chaco,AR-H,annual,2023,gas oil combustion consumption by freight transport,24.850559999999998,TJ,CH4,3.9,kg/TJ,96.91718399999999,kg -88bf00cc-378c-358f-8708-e44f49417952,SESCO,II.1.1,Chaco,AR-H,annual,2023,gas oil combustion consumption by freight transport,24.850559999999998,TJ,N2O,3.9,kg/TJ,96.91718399999999,kg -b8f78844-ed1d-34f3-a679-55bd4b157bf7,SESCO,II.1.1,Chubut,AR-U,annual,2023,gas oil combustion consumption by freight transport,11.3778,TJ,CO2,74100.0,kg/TJ,843094.9800000001,kg -45072438-c700-3ac0-915d-5d39aee09733,SESCO,II.1.1,Chubut,AR-U,annual,2023,gas oil combustion consumption by freight transport,11.3778,TJ,CH4,3.9,kg/TJ,44.37342,kg -45072438-c700-3ac0-915d-5d39aee09733,SESCO,II.1.1,Chubut,AR-U,annual,2023,gas oil combustion consumption by freight transport,11.3778,TJ,N2O,3.9,kg/TJ,44.37342,kg -aaf5952d-e2c0-3a1d-b5e0-de40441710c7,SESCO,II.1.1,Corrientes,AR-W,annual,2023,gas oil combustion consumption by freight transport,51.471,TJ,CO2,74100.0,kg/TJ,3814001.0999999996,kg -c2b9fed4-7c6a-3d28-a6ba-1de89c308480,SESCO,II.1.1,Corrientes,AR-W,annual,2023,gas oil combustion consumption by freight transport,51.471,TJ,CH4,3.9,kg/TJ,200.7369,kg -c2b9fed4-7c6a-3d28-a6ba-1de89c308480,SESCO,II.1.1,Corrientes,AR-W,annual,2023,gas oil combustion consumption by freight transport,51.471,TJ,N2O,3.9,kg/TJ,200.7369,kg -5f1ae62b-4b4e-3b3a-90d7-1f1a6faa04ce,SESCO,II.1.1,Córdoba,AR-X,annual,2023,gas oil combustion consumption by freight transport,247.34976,TJ,CO2,74100.0,kg/TJ,18328617.216000002,kg -2f17f32e-b59d-3ed1-b7da-ad359702c61e,SESCO,II.1.1,Córdoba,AR-X,annual,2023,gas oil combustion consumption by freight transport,247.34976,TJ,CH4,3.9,kg/TJ,964.6640639999999,kg -2f17f32e-b59d-3ed1-b7da-ad359702c61e,SESCO,II.1.1,Córdoba,AR-X,annual,2023,gas oil combustion consumption by freight transport,247.34976,TJ,N2O,3.9,kg/TJ,964.6640639999999,kg -4b0d7a02-8ea2-3dc3-8f47-26a122d674bb,SESCO,II.1.1,Entre Rios,AR-E,annual,2023,gas oil combustion consumption by freight transport,37.96212,TJ,CO2,74100.0,kg/TJ,2812993.0919999997,kg -16ec0783-facc-31de-b221-d03806f0ebea,SESCO,II.1.1,Entre Rios,AR-E,annual,2023,gas oil combustion consumption by freight transport,37.96212,TJ,CH4,3.9,kg/TJ,148.052268,kg -16ec0783-facc-31de-b221-d03806f0ebea,SESCO,II.1.1,Entre Rios,AR-E,annual,2023,gas oil combustion consumption by freight transport,37.96212,TJ,N2O,3.9,kg/TJ,148.052268,kg -b751b380-81d8-3e76-8144-642ee9fc0e30,SESCO,II.1.1,Formosa,AR-P,annual,2023,gas oil combustion consumption by freight transport,0.28896,TJ,CO2,74100.0,kg/TJ,21411.935999999998,kg -2cd82097-6684-3c9f-be50-61ad2dd06ea7,SESCO,II.1.1,Formosa,AR-P,annual,2023,gas oil combustion consumption by freight transport,0.28896,TJ,CH4,3.9,kg/TJ,1.126944,kg -2cd82097-6684-3c9f-be50-61ad2dd06ea7,SESCO,II.1.1,Formosa,AR-P,annual,2023,gas oil combustion consumption by freight transport,0.28896,TJ,N2O,3.9,kg/TJ,1.126944,kg -514cc063-503d-3162-bf48-2f77de64b248,SESCO,II.1.1,La Pampa,AR-L,annual,2023,gas oil combustion consumption by freight transport,7.36848,TJ,CO2,74100.0,kg/TJ,546004.368,kg -c339c038-c909-3678-8da1-e23c17a2637b,SESCO,II.1.1,La Pampa,AR-L,annual,2023,gas oil combustion consumption by freight transport,7.36848,TJ,CH4,3.9,kg/TJ,28.737071999999998,kg -c339c038-c909-3678-8da1-e23c17a2637b,SESCO,II.1.1,La Pampa,AR-L,annual,2023,gas oil combustion consumption by freight transport,7.36848,TJ,N2O,3.9,kg/TJ,28.737071999999998,kg -e6960cbb-0585-385a-9f34-69047aa87b30,SESCO,II.1.1,Mendoza,AR-M,annual,2023,gas oil combustion consumption by freight transport,157.23036,TJ,CO2,74100.0,kg/TJ,11650769.675999999,kg -7089906f-c8c2-3f13-b022-22c251101fcc,SESCO,II.1.1,Mendoza,AR-M,annual,2023,gas oil combustion consumption by freight transport,157.23036,TJ,CH4,3.9,kg/TJ,613.198404,kg -7089906f-c8c2-3f13-b022-22c251101fcc,SESCO,II.1.1,Mendoza,AR-M,annual,2023,gas oil combustion consumption by freight transport,157.23036,TJ,N2O,3.9,kg/TJ,613.198404,kg -f96526d9-b38c-367a-9508-99b6883e9bff,SESCO,II.1.1,Misiones,AR-N,annual,2023,gas oil combustion consumption by freight transport,205.3422,TJ,CO2,74100.0,kg/TJ,15215857.02,kg -651873ce-f0e8-3668-be6a-acbf8f32de55,SESCO,II.1.1,Misiones,AR-N,annual,2023,gas oil combustion consumption by freight transport,205.3422,TJ,CH4,3.9,kg/TJ,800.83458,kg -651873ce-f0e8-3668-be6a-acbf8f32de55,SESCO,II.1.1,Misiones,AR-N,annual,2023,gas oil combustion consumption by freight transport,205.3422,TJ,N2O,3.9,kg/TJ,800.83458,kg -9f17be82-0d8b-3433-ab97-0b36b30f7695,SESCO,II.1.1,Rio Negro,AR-R,annual,2023,gas oil combustion consumption by freight transport,365.5344,TJ,CO2,74100.0,kg/TJ,27086099.04,kg -ff419c55-3c33-3f12-9dec-8626f7963233,SESCO,II.1.1,Rio Negro,AR-R,annual,2023,gas oil combustion consumption by freight transport,365.5344,TJ,CH4,3.9,kg/TJ,1425.5841599999999,kg -ff419c55-3c33-3f12-9dec-8626f7963233,SESCO,II.1.1,Rio Negro,AR-R,annual,2023,gas oil combustion consumption by freight transport,365.5344,TJ,N2O,3.9,kg/TJ,1425.5841599999999,kg -f23d4838-a990-3440-a281-ad2baba94a24,SESCO,II.1.1,Salta,AR-A,annual,2023,gas oil combustion consumption by freight transport,207.61776,TJ,CO2,74100.0,kg/TJ,15384476.016,kg -13700889-9a15-3a01-9f93-0069fc39630b,SESCO,II.1.1,Salta,AR-A,annual,2023,gas oil combustion consumption by freight transport,207.61776,TJ,CH4,3.9,kg/TJ,809.709264,kg -13700889-9a15-3a01-9f93-0069fc39630b,SESCO,II.1.1,Salta,AR-A,annual,2023,gas oil combustion consumption by freight transport,207.61776,TJ,N2O,3.9,kg/TJ,809.709264,kg -4742dec7-34d3-385b-b06f-1542ea8a5ba8,SESCO,II.1.1,San Juan,AR-J,annual,2023,gas oil combustion consumption by freight transport,2.09496,TJ,CO2,74100.0,kg/TJ,155236.536,kg -45b99a74-103b-3f1f-8b27-b46cdce74d66,SESCO,II.1.1,San Juan,AR-J,annual,2023,gas oil combustion consumption by freight transport,2.09496,TJ,CH4,3.9,kg/TJ,8.170344,kg -45b99a74-103b-3f1f-8b27-b46cdce74d66,SESCO,II.1.1,San Juan,AR-J,annual,2023,gas oil combustion consumption by freight transport,2.09496,TJ,N2O,3.9,kg/TJ,8.170344,kg -dc414a10-d54a-339d-b896-c4e48fe0dae5,SESCO,II.1.1,San Luis,AR-D,annual,2023,gas oil combustion consumption by freight transport,51.398759999999996,TJ,CO2,74100.0,kg/TJ,3808648.1159999995,kg -ac1b4f0c-408d-3110-a5bb-893e0e146c03,SESCO,II.1.1,San Luis,AR-D,annual,2023,gas oil combustion consumption by freight transport,51.398759999999996,TJ,CH4,3.9,kg/TJ,200.45516399999997,kg -ac1b4f0c-408d-3110-a5bb-893e0e146c03,SESCO,II.1.1,San Luis,AR-D,annual,2023,gas oil combustion consumption by freight transport,51.398759999999996,TJ,N2O,3.9,kg/TJ,200.45516399999997,kg -62acf951-3d55-323d-8cfe-5e6a0a0aa72a,SESCO,II.1.1,Santa Fe,AR-S,annual,2023,gas oil combustion consumption by freight transport,436.76304,TJ,CO2,74100.0,kg/TJ,32364141.264,kg -66be1654-777f-3b57-b52d-916fbcbd9582,SESCO,II.1.1,Santa Fe,AR-S,annual,2023,gas oil combustion consumption by freight transport,436.76304,TJ,CH4,3.9,kg/TJ,1703.3758559999999,kg -66be1654-777f-3b57-b52d-916fbcbd9582,SESCO,II.1.1,Santa Fe,AR-S,annual,2023,gas oil combustion consumption by freight transport,436.76304,TJ,N2O,3.9,kg/TJ,1703.3758559999999,kg -4fec1e8d-281c-3995-bc76-9309530f4efd,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2023,gas oil combustion consumption by freight transport,52.08504,TJ,CO2,74100.0,kg/TJ,3859501.464,kg -9f8562f0-cf0f-34ba-a4a1-3dc270114997,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2023,gas oil combustion consumption by freight transport,52.08504,TJ,CH4,3.9,kg/TJ,203.131656,kg -9f8562f0-cf0f-34ba-a4a1-3dc270114997,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2023,gas oil combustion consumption by freight transport,52.08504,TJ,N2O,3.9,kg/TJ,203.131656,kg -326c4467-7744-320e-a832-d2efb72efabc,SESCO,II.1.1,Tucuman,AR-T,annual,2023,gas oil combustion consumption by freight transport,44.71656,TJ,CO2,74100.0,kg/TJ,3313497.096,kg -d2f8fcfa-2326-3347-b16c-ecc60a7e063f,SESCO,II.1.1,Tucuman,AR-T,annual,2023,gas oil combustion consumption by freight transport,44.71656,TJ,CH4,3.9,kg/TJ,174.394584,kg -d2f8fcfa-2326-3347-b16c-ecc60a7e063f,SESCO,II.1.1,Tucuman,AR-T,annual,2023,gas oil combustion consumption by freight transport,44.71656,TJ,N2O,3.9,kg/TJ,174.394584,kg -80f25bfc-8b6f-3f79-ac17-e69e989f0758,SESCO,II.1.1,Buenos Aires,AR-B,annual,2023,gas oil combustion consumption by freight transport,576.98088,TJ,CO2,74100.0,kg/TJ,42754283.208,kg -f6b38b46-9e4d-39f2-8bed-95c9f84cdf30,SESCO,II.1.1,Buenos Aires,AR-B,annual,2023,gas oil combustion consumption by freight transport,576.98088,TJ,CH4,3.9,kg/TJ,2250.2254319999997,kg -f6b38b46-9e4d-39f2-8bed-95c9f84cdf30,SESCO,II.1.1,Buenos Aires,AR-B,annual,2023,gas oil combustion consumption by freight transport,576.98088,TJ,N2O,3.9,kg/TJ,2250.2254319999997,kg -fc7a6cd5-48fd-3b7e-ad01-e3709fa85c1c,SESCO,II.1.1,Capital Federal,AR-C,annual,2023,gas oil combustion consumption by freight transport,166.47708,TJ,CO2,74100.0,kg/TJ,12335951.628,kg -f42f2170-9d1d-33ba-b941-9c8806afeaa3,SESCO,II.1.1,Capital Federal,AR-C,annual,2023,gas oil combustion consumption by freight transport,166.47708,TJ,CH4,3.9,kg/TJ,649.260612,kg -f42f2170-9d1d-33ba-b941-9c8806afeaa3,SESCO,II.1.1,Capital Federal,AR-C,annual,2023,gas oil combustion consumption by freight transport,166.47708,TJ,N2O,3.9,kg/TJ,649.260612,kg -52b66ca3-874b-34a8-a8d7-765bc72f4266,SESCO,II.1.1,Chaco,AR-H,annual,2023,gas oil combustion consumption by freight transport,4.94844,TJ,CO2,74100.0,kg/TJ,366679.404,kg -ff011b6a-1424-39ea-ad16-3adaec71ce4b,SESCO,II.1.1,Chaco,AR-H,annual,2023,gas oil combustion consumption by freight transport,4.94844,TJ,CH4,3.9,kg/TJ,19.298916,kg -ff011b6a-1424-39ea-ad16-3adaec71ce4b,SESCO,II.1.1,Chaco,AR-H,annual,2023,gas oil combustion consumption by freight transport,4.94844,TJ,N2O,3.9,kg/TJ,19.298916,kg -2f662bd1-7503-3ba9-8533-9e7f4e67cb70,SESCO,II.1.1,Chubut,AR-U,annual,2023,gas oil combustion consumption by freight transport,1.01136,TJ,CO2,74100.0,kg/TJ,74941.776,kg -09541e54-6894-396e-a015-411ab926b7c1,SESCO,II.1.1,Chubut,AR-U,annual,2023,gas oil combustion consumption by freight transport,1.01136,TJ,CH4,3.9,kg/TJ,3.9443040000000003,kg -09541e54-6894-396e-a015-411ab926b7c1,SESCO,II.1.1,Chubut,AR-U,annual,2023,gas oil combustion consumption by freight transport,1.01136,TJ,N2O,3.9,kg/TJ,3.9443040000000003,kg -edbbc741-0d5f-3111-afb8-6741cf8dec9c,SESCO,II.1.1,Corrientes,AR-W,annual,2023,gas oil combustion consumption by freight transport,3.53976,TJ,CO2,74100.0,kg/TJ,262296.21599999996,kg -c034df8b-cfdc-3a45-8c7b-7829a1268ac9,SESCO,II.1.1,Corrientes,AR-W,annual,2023,gas oil combustion consumption by freight transport,3.53976,TJ,CH4,3.9,kg/TJ,13.805063999999998,kg -c034df8b-cfdc-3a45-8c7b-7829a1268ac9,SESCO,II.1.1,Corrientes,AR-W,annual,2023,gas oil combustion consumption by freight transport,3.53976,TJ,N2O,3.9,kg/TJ,13.805063999999998,kg -ae101f5f-d08d-36dc-b024-6d74736b4beb,SESCO,II.1.1,Córdoba,AR-X,annual,2023,gas oil combustion consumption by freight transport,21.02184,TJ,CO2,74100.0,kg/TJ,1557718.344,kg -02ad10a1-eddd-39ba-aa4a-c16bfb9cc3dd,SESCO,II.1.1,Córdoba,AR-X,annual,2023,gas oil combustion consumption by freight transport,21.02184,TJ,CH4,3.9,kg/TJ,81.985176,kg -02ad10a1-eddd-39ba-aa4a-c16bfb9cc3dd,SESCO,II.1.1,Córdoba,AR-X,annual,2023,gas oil combustion consumption by freight transport,21.02184,TJ,N2O,3.9,kg/TJ,81.985176,kg -f82901ed-1149-386f-8f96-6ddb1b894a3b,SESCO,II.1.1,Entre Rios,AR-E,annual,2023,gas oil combustion consumption by freight transport,4.40664,TJ,CO2,74100.0,kg/TJ,326532.02400000003,kg -2ec66aa9-109c-3dcc-ad3c-6cfaa88d6f99,SESCO,II.1.1,Entre Rios,AR-E,annual,2023,gas oil combustion consumption by freight transport,4.40664,TJ,CH4,3.9,kg/TJ,17.185896,kg -2ec66aa9-109c-3dcc-ad3c-6cfaa88d6f99,SESCO,II.1.1,Entre Rios,AR-E,annual,2023,gas oil combustion consumption by freight transport,4.40664,TJ,N2O,3.9,kg/TJ,17.185896,kg -a66bb4f5-d8cc-3169-8587-27e7a3bcf968,SESCO,II.1.1,La Pampa,AR-L,annual,2023,gas oil combustion consumption by freight transport,0.18059999999999998,TJ,CO2,74100.0,kg/TJ,13382.46,kg -cc3d68d1-8be3-34dc-972b-85794ae2c59f,SESCO,II.1.1,La Pampa,AR-L,annual,2023,gas oil combustion consumption by freight transport,0.18059999999999998,TJ,CH4,3.9,kg/TJ,0.70434,kg -cc3d68d1-8be3-34dc-972b-85794ae2c59f,SESCO,II.1.1,La Pampa,AR-L,annual,2023,gas oil combustion consumption by freight transport,0.18059999999999998,TJ,N2O,3.9,kg/TJ,0.70434,kg -0bc313a2-fbda-3cf1-b288-4279959dcd8e,SESCO,II.1.1,Mendoza,AR-M,annual,2023,gas oil combustion consumption by freight transport,12.78648,TJ,CO2,74100.0,kg/TJ,947478.168,kg -0d0c5c23-0fc7-3ce8-aad8-8f2aace5d8cf,SESCO,II.1.1,Mendoza,AR-M,annual,2023,gas oil combustion consumption by freight transport,12.78648,TJ,CH4,3.9,kg/TJ,49.86727199999999,kg -0d0c5c23-0fc7-3ce8-aad8-8f2aace5d8cf,SESCO,II.1.1,Mendoza,AR-M,annual,2023,gas oil combustion consumption by freight transport,12.78648,TJ,N2O,3.9,kg/TJ,49.86727199999999,kg -c60c3579-072a-3ac5-82c9-149085dbb675,SESCO,II.1.1,Misiones,AR-N,annual,2023,gas oil combustion consumption by freight transport,0.65016,TJ,CO2,74100.0,kg/TJ,48176.856,kg -dd800d76-7d32-3668-a53a-6e08506d8286,SESCO,II.1.1,Misiones,AR-N,annual,2023,gas oil combustion consumption by freight transport,0.65016,TJ,CH4,3.9,kg/TJ,2.535624,kg -dd800d76-7d32-3668-a53a-6e08506d8286,SESCO,II.1.1,Misiones,AR-N,annual,2023,gas oil combustion consumption by freight transport,0.65016,TJ,N2O,3.9,kg/TJ,2.535624,kg -72f79e4f-cc41-3c96-90ab-f636da9fd693,SESCO,II.1.1,Neuquén,AR-Q,annual,2023,gas oil combustion consumption by freight transport,0.03612,TJ,CO2,74100.0,kg/TJ,2676.4919999999997,kg -a2c1117f-32e8-359f-bc8f-87f84ddd7b5b,SESCO,II.1.1,Neuquén,AR-Q,annual,2023,gas oil combustion consumption by freight transport,0.03612,TJ,CH4,3.9,kg/TJ,0.140868,kg -a2c1117f-32e8-359f-bc8f-87f84ddd7b5b,SESCO,II.1.1,Neuquén,AR-Q,annual,2023,gas oil combustion consumption by freight transport,0.03612,TJ,N2O,3.9,kg/TJ,0.140868,kg -4c54c5be-1382-3e27-87ce-d225cd0df0f2,SESCO,II.1.1,Rio Negro,AR-R,annual,2023,gas oil combustion consumption by freight transport,1.0836,TJ,CO2,74100.0,kg/TJ,80294.76,kg -14ef8d01-cef6-3444-9e0c-9a23c8c72ef5,SESCO,II.1.1,Rio Negro,AR-R,annual,2023,gas oil combustion consumption by freight transport,1.0836,TJ,CH4,3.9,kg/TJ,4.226039999999999,kg -14ef8d01-cef6-3444-9e0c-9a23c8c72ef5,SESCO,II.1.1,Rio Negro,AR-R,annual,2023,gas oil combustion consumption by freight transport,1.0836,TJ,N2O,3.9,kg/TJ,4.226039999999999,kg -53ee0eef-d411-34c8-b139-89b5187ff052,SESCO,II.1.1,Salta,AR-A,annual,2023,gas oil combustion consumption by freight transport,0.03612,TJ,CO2,74100.0,kg/TJ,2676.4919999999997,kg -79a9c050-79d6-37f1-9982-1fee1612bbcb,SESCO,II.1.1,Salta,AR-A,annual,2023,gas oil combustion consumption by freight transport,0.03612,TJ,CH4,3.9,kg/TJ,0.140868,kg -79a9c050-79d6-37f1-9982-1fee1612bbcb,SESCO,II.1.1,Salta,AR-A,annual,2023,gas oil combustion consumption by freight transport,0.03612,TJ,N2O,3.9,kg/TJ,0.140868,kg -9e7ec3e4-3731-3861-9521-5bc1ce1762a9,SESCO,II.1.1,San Juan,AR-J,annual,2023,gas oil combustion consumption by freight transport,2.02272,TJ,CO2,74100.0,kg/TJ,149883.552,kg -d09591d1-c053-3e40-a3c2-e7f7e74be1eb,SESCO,II.1.1,San Juan,AR-J,annual,2023,gas oil combustion consumption by freight transport,2.02272,TJ,CH4,3.9,kg/TJ,7.8886080000000005,kg -d09591d1-c053-3e40-a3c2-e7f7e74be1eb,SESCO,II.1.1,San Juan,AR-J,annual,2023,gas oil combustion consumption by freight transport,2.02272,TJ,N2O,3.9,kg/TJ,7.8886080000000005,kg -b6ff3edd-8022-3f75-9b82-6733a88c0653,SESCO,II.1.1,San Luis,AR-D,annual,2023,gas oil combustion consumption by freight transport,1.58928,TJ,CO2,74100.0,kg/TJ,117765.648,kg -7d1ab74c-81d8-3103-a18d-907da1fdf1c3,SESCO,II.1.1,San Luis,AR-D,annual,2023,gas oil combustion consumption by freight transport,1.58928,TJ,CH4,3.9,kg/TJ,6.198192,kg -7d1ab74c-81d8-3103-a18d-907da1fdf1c3,SESCO,II.1.1,San Luis,AR-D,annual,2023,gas oil combustion consumption by freight transport,1.58928,TJ,N2O,3.9,kg/TJ,6.198192,kg -0a4f77ce-5e6c-3e44-ae37-2d8392a0fda4,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2023,gas oil combustion consumption by freight transport,0.03612,TJ,CO2,74100.0,kg/TJ,2676.4919999999997,kg -f44d0187-48a6-3dee-8e71-89c418ca2cbb,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2023,gas oil combustion consumption by freight transport,0.03612,TJ,CH4,3.9,kg/TJ,0.140868,kg -f44d0187-48a6-3dee-8e71-89c418ca2cbb,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2023,gas oil combustion consumption by freight transport,0.03612,TJ,N2O,3.9,kg/TJ,0.140868,kg -386dd14d-8d0d-39d1-b754-73f238c06b3c,SESCO,II.1.1,Santa Fe,AR-S,annual,2023,gas oil combustion consumption by freight transport,32.905319999999996,TJ,CO2,74100.0,kg/TJ,2438284.212,kg -b1bfb6ba-e1d2-3026-a275-8aeb5020fa24,SESCO,II.1.1,Santa Fe,AR-S,annual,2023,gas oil combustion consumption by freight transport,32.905319999999996,TJ,CH4,3.9,kg/TJ,128.33074799999997,kg -b1bfb6ba-e1d2-3026-a275-8aeb5020fa24,SESCO,II.1.1,Santa Fe,AR-S,annual,2023,gas oil combustion consumption by freight transport,32.905319999999996,TJ,N2O,3.9,kg/TJ,128.33074799999997,kg -18d02d5e-9103-3585-a797-32e679054096,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2023,gas oil combustion consumption by freight transport,1.15584,TJ,CO2,74100.0,kg/TJ,85647.74399999999,kg -650d60c9-590e-3a16-9ea4-25e6e2d0f14f,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2023,gas oil combustion consumption by freight transport,1.15584,TJ,CH4,3.9,kg/TJ,4.507776,kg -650d60c9-590e-3a16-9ea4-25e6e2d0f14f,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2023,gas oil combustion consumption by freight transport,1.15584,TJ,N2O,3.9,kg/TJ,4.507776,kg -13483365-67da-3539-9ac3-063428d908e1,SESCO,II.1.1,Tucuman,AR-T,annual,2023,gas oil combustion consumption by freight transport,0.5418,TJ,CO2,74100.0,kg/TJ,40147.38,kg -a28d3e38-e279-3619-bbc3-920ba16d056c,SESCO,II.1.1,Tucuman,AR-T,annual,2023,gas oil combustion consumption by freight transport,0.5418,TJ,CH4,3.9,kg/TJ,2.1130199999999997,kg -a28d3e38-e279-3619-bbc3-920ba16d056c,SESCO,II.1.1,Tucuman,AR-T,annual,2023,gas oil combustion consumption by freight transport,0.5418,TJ,N2O,3.9,kg/TJ,2.1130199999999997,kg -0cc7451f-75ea-30fd-a70c-ad5080af538e,SESCO,II.1.1,Buenos Aires,AR-B,annual,2023,gas oil combustion consumption by public passenger transport,587.6724,TJ,CO2,74100.0,kg/TJ,43546524.84,kg -f8b7e546-68bb-3026-bc6d-219099b8a694,SESCO,II.1.1,Buenos Aires,AR-B,annual,2023,gas oil combustion consumption by public passenger transport,587.6724,TJ,CH4,3.9,kg/TJ,2291.92236,kg -f8b7e546-68bb-3026-bc6d-219099b8a694,SESCO,II.1.1,Buenos Aires,AR-B,annual,2023,gas oil combustion consumption by public passenger transport,587.6724,TJ,N2O,3.9,kg/TJ,2291.92236,kg -df4b13bb-b11e-35f9-889a-6300a80fc26f,SESCO,II.1.1,Capital Federal,AR-C,annual,2023,gas oil combustion consumption by public passenger transport,201.69407999999999,TJ,CO2,74100.0,kg/TJ,14945531.328,kg -041fe182-d606-3355-8cd0-dd2c0a0895df,SESCO,II.1.1,Capital Federal,AR-C,annual,2023,gas oil combustion consumption by public passenger transport,201.69407999999999,TJ,CH4,3.9,kg/TJ,786.606912,kg -041fe182-d606-3355-8cd0-dd2c0a0895df,SESCO,II.1.1,Capital Federal,AR-C,annual,2023,gas oil combustion consumption by public passenger transport,201.69407999999999,TJ,N2O,3.9,kg/TJ,786.606912,kg -49e51009-fe58-3bcb-b19f-45274f8f8066,SESCO,II.1.1,Chaco,AR-H,annual,2023,gas oil combustion consumption by public passenger transport,132.48816,TJ,CO2,74100.0,kg/TJ,9817372.656,kg -f26f5814-a690-3657-939e-c36593f77289,SESCO,II.1.1,Chaco,AR-H,annual,2023,gas oil combustion consumption by public passenger transport,132.48816,TJ,CH4,3.9,kg/TJ,516.7038239999999,kg -f26f5814-a690-3657-939e-c36593f77289,SESCO,II.1.1,Chaco,AR-H,annual,2023,gas oil combustion consumption by public passenger transport,132.48816,TJ,N2O,3.9,kg/TJ,516.7038239999999,kg -3ed7f9b0-426a-3e18-be71-ac2048cb35e3,SESCO,II.1.1,Chubut,AR-U,annual,2023,gas oil combustion consumption by public passenger transport,43.63296,TJ,CO2,74100.0,kg/TJ,3233202.3359999997,kg -fe269fe8-b6c4-38b1-bf46-e76a1c7603d8,SESCO,II.1.1,Chubut,AR-U,annual,2023,gas oil combustion consumption by public passenger transport,43.63296,TJ,CH4,3.9,kg/TJ,170.168544,kg -fe269fe8-b6c4-38b1-bf46-e76a1c7603d8,SESCO,II.1.1,Chubut,AR-U,annual,2023,gas oil combustion consumption by public passenger transport,43.63296,TJ,N2O,3.9,kg/TJ,170.168544,kg -9d4037d4-c9f9-3a12-802f-f684658254df,SESCO,II.1.1,Córdoba,AR-X,annual,2023,gas oil combustion consumption by public passenger transport,57.4308,TJ,CO2,74100.0,kg/TJ,4255622.28,kg -64965240-35bb-309e-b8a6-3dca5ad9190f,SESCO,II.1.1,Córdoba,AR-X,annual,2023,gas oil combustion consumption by public passenger transport,57.4308,TJ,CH4,3.9,kg/TJ,223.98012,kg -64965240-35bb-309e-b8a6-3dca5ad9190f,SESCO,II.1.1,Córdoba,AR-X,annual,2023,gas oil combustion consumption by public passenger transport,57.4308,TJ,N2O,3.9,kg/TJ,223.98012,kg -26924344-7a90-3e29-8743-32535b819ab4,SESCO,II.1.1,Entre Rios,AR-E,annual,2023,gas oil combustion consumption by public passenger transport,45.83628,TJ,CO2,74100.0,kg/TJ,3396468.348,kg -3c7c02d6-3e1b-3af2-bd25-c401fa6a4f72,SESCO,II.1.1,Entre Rios,AR-E,annual,2023,gas oil combustion consumption by public passenger transport,45.83628,TJ,CH4,3.9,kg/TJ,178.761492,kg -3c7c02d6-3e1b-3af2-bd25-c401fa6a4f72,SESCO,II.1.1,Entre Rios,AR-E,annual,2023,gas oil combustion consumption by public passenger transport,45.83628,TJ,N2O,3.9,kg/TJ,178.761492,kg -68c93889-0c59-3f5e-aa55-2e8cfc9b0d61,SESCO,II.1.1,Mendoza,AR-M,annual,2023,gas oil combustion consumption by public passenger transport,8.34372,TJ,CO2,74100.0,kg/TJ,618269.652,kg -8bd18e55-7155-3a8f-97ca-ee1cae18af91,SESCO,II.1.1,Mendoza,AR-M,annual,2023,gas oil combustion consumption by public passenger transport,8.34372,TJ,CH4,3.9,kg/TJ,32.540507999999996,kg -8bd18e55-7155-3a8f-97ca-ee1cae18af91,SESCO,II.1.1,Mendoza,AR-M,annual,2023,gas oil combustion consumption by public passenger transport,8.34372,TJ,N2O,3.9,kg/TJ,32.540507999999996,kg -b83ec1d6-8a19-34af-af8b-9ca25f6d7d0a,SESCO,II.1.1,Rio Negro,AR-R,annual,2023,gas oil combustion consumption by public passenger transport,42.0798,TJ,CO2,74100.0,kg/TJ,3118113.1799999997,kg -cfd3388b-6e90-3f5c-b84c-1be77552999a,SESCO,II.1.1,Rio Negro,AR-R,annual,2023,gas oil combustion consumption by public passenger transport,42.0798,TJ,CH4,3.9,kg/TJ,164.11122,kg -cfd3388b-6e90-3f5c-b84c-1be77552999a,SESCO,II.1.1,Rio Negro,AR-R,annual,2023,gas oil combustion consumption by public passenger transport,42.0798,TJ,N2O,3.9,kg/TJ,164.11122,kg -0c409504-6d49-3aa5-8d76-2e4885a6452f,SESCO,II.1.1,Santa Fe,AR-S,annual,2023,gas oil combustion consumption by public passenger transport,434.30688,TJ,CO2,74100.0,kg/TJ,32182139.808,kg -908ce5c9-46e0-36a8-b5be-19aaacd138e3,SESCO,II.1.1,Santa Fe,AR-S,annual,2023,gas oil combustion consumption by public passenger transport,434.30688,TJ,CH4,3.9,kg/TJ,1693.7968319999998,kg -908ce5c9-46e0-36a8-b5be-19aaacd138e3,SESCO,II.1.1,Santa Fe,AR-S,annual,2023,gas oil combustion consumption by public passenger transport,434.30688,TJ,N2O,3.9,kg/TJ,1693.7968319999998,kg -559712ef-41ea-352f-a010-f0f9cc13d5fd,SESCO,II.1.1,Tucuman,AR-T,annual,2023,gas oil combustion consumption by public passenger transport,157.6638,TJ,CO2,74100.0,kg/TJ,11682887.58,kg -c240ead2-270c-3944-a24c-a886e3b239ca,SESCO,II.1.1,Tucuman,AR-T,annual,2023,gas oil combustion consumption by public passenger transport,157.6638,TJ,CH4,3.9,kg/TJ,614.88882,kg -c240ead2-270c-3944-a24c-a886e3b239ca,SESCO,II.1.1,Tucuman,AR-T,annual,2023,gas oil combustion consumption by public passenger transport,157.6638,TJ,N2O,3.9,kg/TJ,614.88882,kg -e30f41f6-0f8b-393a-ad41-0f7b91513bc8,SESCO,II.1.1,Buenos Aires,AR-B,annual,2023,gas oil combustion consumption by public passenger transport,700.40292,TJ,CO2,74100.0,kg/TJ,51899856.372,kg -018663f2-9076-32cb-b505-823a09e39310,SESCO,II.1.1,Buenos Aires,AR-B,annual,2023,gas oil combustion consumption by public passenger transport,700.40292,TJ,CH4,3.9,kg/TJ,2731.571388,kg -018663f2-9076-32cb-b505-823a09e39310,SESCO,II.1.1,Buenos Aires,AR-B,annual,2023,gas oil combustion consumption by public passenger transport,700.40292,TJ,N2O,3.9,kg/TJ,2731.571388,kg -6d8c2656-a104-365a-acda-0accf2896940,SESCO,II.1.1,Capital Federal,AR-C,annual,2023,gas oil combustion consumption by public passenger transport,77.62188,TJ,CO2,74100.0,kg/TJ,5751781.308,kg -a61f9a53-5bda-302c-8987-3967cbf64e29,SESCO,II.1.1,Capital Federal,AR-C,annual,2023,gas oil combustion consumption by public passenger transport,77.62188,TJ,CH4,3.9,kg/TJ,302.72533200000004,kg -a61f9a53-5bda-302c-8987-3967cbf64e29,SESCO,II.1.1,Capital Federal,AR-C,annual,2023,gas oil combustion consumption by public passenger transport,77.62188,TJ,N2O,3.9,kg/TJ,302.72533200000004,kg -1aa0ade2-d2e8-3377-a220-5895f18c188d,SESCO,II.1.1,Córdoba,AR-X,annual,2023,gas oil combustion consumption by public passenger transport,103.62828,TJ,CO2,74100.0,kg/TJ,7678855.548,kg -3bd2ecae-ff73-38d9-9148-9ba4f1c4d9f0,SESCO,II.1.1,Córdoba,AR-X,annual,2023,gas oil combustion consumption by public passenger transport,103.62828,TJ,CH4,3.9,kg/TJ,404.150292,kg -3bd2ecae-ff73-38d9-9148-9ba4f1c4d9f0,SESCO,II.1.1,Córdoba,AR-X,annual,2023,gas oil combustion consumption by public passenger transport,103.62828,TJ,N2O,3.9,kg/TJ,404.150292,kg -059ec413-8fd7-3b11-8f2f-68e76df3b0a3,SESCO,II.1.1,Entre Rios,AR-E,annual,2023,gas oil combustion consumption by public passenger transport,3.03408,TJ,CO2,74100.0,kg/TJ,224825.32799999998,kg -085f478e-9183-3181-9b7e-6cc510142d12,SESCO,II.1.1,Entre Rios,AR-E,annual,2023,gas oil combustion consumption by public passenger transport,3.03408,TJ,CH4,3.9,kg/TJ,11.832911999999999,kg -085f478e-9183-3181-9b7e-6cc510142d12,SESCO,II.1.1,Entre Rios,AR-E,annual,2023,gas oil combustion consumption by public passenger transport,3.03408,TJ,N2O,3.9,kg/TJ,11.832911999999999,kg -7b5c3439-9baa-3189-ac25-9e10bd354237,SESCO,II.1.1,Mendoza,AR-M,annual,2023,gas oil combustion consumption by public passenger transport,0.50568,TJ,CO2,74100.0,kg/TJ,37470.888,kg -4863ff36-3f71-315f-afa9-228cba621265,SESCO,II.1.1,Mendoza,AR-M,annual,2023,gas oil combustion consumption by public passenger transport,0.50568,TJ,CH4,3.9,kg/TJ,1.9721520000000001,kg -4863ff36-3f71-315f-afa9-228cba621265,SESCO,II.1.1,Mendoza,AR-M,annual,2023,gas oil combustion consumption by public passenger transport,0.50568,TJ,N2O,3.9,kg/TJ,1.9721520000000001,kg -03bade6f-c5d4-3064-b121-1c598fcfe1ec,SESCO,II.1.1,Santa Fe,AR-S,annual,2023,gas oil combustion consumption by public passenger transport,76.71888,TJ,CO2,74100.0,kg/TJ,5684869.007999999,kg -a19fac7e-327d-347d-98b7-9bde216db568,SESCO,II.1.1,Santa Fe,AR-S,annual,2023,gas oil combustion consumption by public passenger transport,76.71888,TJ,CH4,3.9,kg/TJ,299.20363199999997,kg -a19fac7e-327d-347d-98b7-9bde216db568,SESCO,II.1.1,Santa Fe,AR-S,annual,2023,gas oil combustion consumption by public passenger transport,76.71888,TJ,N2O,3.9,kg/TJ,299.20363199999997,kg -433f8e25-6196-3bd9-ba2b-cddb88987bba,SESCO,II.1.1,Catamarca,AR-K,annual,2023,gas oil combustion consumption by to the public,32.5444812,TJ,CO2,74100.0,kg/TJ,2411546.05692,kg -57e6bfca-f508-35d1-835e-6e1926997fa5,SESCO,II.1.1,Catamarca,AR-K,annual,2023,gas oil combustion consumption by to the public,32.5444812,TJ,CH4,3.9,kg/TJ,126.92347668,kg -57e6bfca-f508-35d1-835e-6e1926997fa5,SESCO,II.1.1,Catamarca,AR-K,annual,2023,gas oil combustion consumption by to the public,32.5444812,TJ,N2O,3.9,kg/TJ,126.92347668,kg -f8330b98-04a2-3794-9a61-073f3c5a6fb7,SESCO,II.1.1,Chaco,AR-H,annual,2023,gas oil combustion consumption by to the public,20.6963988,TJ,CO2,74100.0,kg/TJ,1533603.15108,kg -06d06c11-a0b7-3547-93d4-1843deba66d3,SESCO,II.1.1,Chaco,AR-H,annual,2023,gas oil combustion consumption by to the public,20.6963988,TJ,CH4,3.9,kg/TJ,80.71595532,kg -06d06c11-a0b7-3547-93d4-1843deba66d3,SESCO,II.1.1,Chaco,AR-H,annual,2023,gas oil combustion consumption by to the public,20.6963988,TJ,N2O,3.9,kg/TJ,80.71595532,kg -4bf25306-a0a4-30dd-a3d7-7193e6a13502,SESCO,II.1.1,Córdoba,AR-X,annual,2023,gas oil combustion consumption by to the public,0.36119999999999997,TJ,CO2,74100.0,kg/TJ,26764.92,kg -aef83eaf-078b-344a-8874-d6392730967d,SESCO,II.1.1,Córdoba,AR-X,annual,2023,gas oil combustion consumption by to the public,0.36119999999999997,TJ,CH4,3.9,kg/TJ,1.40868,kg -aef83eaf-078b-344a-8874-d6392730967d,SESCO,II.1.1,Córdoba,AR-X,annual,2023,gas oil combustion consumption by to the public,0.36119999999999997,TJ,N2O,3.9,kg/TJ,1.40868,kg -6b6e7ad6-af55-3e82-9cf7-afb43c8a832d,SESCO,II.1.1,Jujuy,AR-Y,annual,2023,gas oil combustion consumption by to the public,345.3805236,TJ,CO2,74100.0,kg/TJ,25592696.79876,kg -496ea281-f506-330c-985b-290a5e11a120,SESCO,II.1.1,Jujuy,AR-Y,annual,2023,gas oil combustion consumption by to the public,345.3805236,TJ,CH4,3.9,kg/TJ,1346.98404204,kg -496ea281-f506-330c-985b-290a5e11a120,SESCO,II.1.1,Jujuy,AR-Y,annual,2023,gas oil combustion consumption by to the public,345.3805236,TJ,N2O,3.9,kg/TJ,1346.98404204,kg -a577531d-b0f1-309c-9429-69a0dd95dd4e,SESCO,II.1.1,La Rioja,AR-F,annual,2023,gas oil combustion consumption by to the public,68.6276388,TJ,CO2,74100.0,kg/TJ,5085308.03508,kg -77a54879-5bac-399e-96fe-4d4bf63a9107,SESCO,II.1.1,La Rioja,AR-F,annual,2023,gas oil combustion consumption by to the public,68.6276388,TJ,CH4,3.9,kg/TJ,267.64779132,kg -77a54879-5bac-399e-96fe-4d4bf63a9107,SESCO,II.1.1,La Rioja,AR-F,annual,2023,gas oil combustion consumption by to the public,68.6276388,TJ,N2O,3.9,kg/TJ,267.64779132,kg -5b694dfa-db19-3cdc-a398-f7823924ffb4,SESCO,II.1.1,Salta,AR-A,annual,2023,gas oil combustion consumption by to the public,977.2200984,TJ,CO2,74100.0,kg/TJ,72412009.29144,kg -99892490-64c8-3187-967a-42d2c42ab21f,SESCO,II.1.1,Salta,AR-A,annual,2023,gas oil combustion consumption by to the public,977.2200984,TJ,CH4,3.9,kg/TJ,3811.1583837599997,kg -99892490-64c8-3187-967a-42d2c42ab21f,SESCO,II.1.1,Salta,AR-A,annual,2023,gas oil combustion consumption by to the public,977.2200984,TJ,N2O,3.9,kg/TJ,3811.1583837599997,kg -3b4bb5a1-b67d-3758-8b65-32b2f0f7abd2,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2023,gas oil combustion consumption by to the public,117.81441,TJ,CO2,74100.0,kg/TJ,8730047.781,kg -6a965848-dd4d-3cfd-ba8f-9703befb95ca,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2023,gas oil combustion consumption by to the public,117.81441,TJ,CH4,3.9,kg/TJ,459.47619899999995,kg -6a965848-dd4d-3cfd-ba8f-9703befb95ca,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2023,gas oil combustion consumption by to the public,117.81441,TJ,N2O,3.9,kg/TJ,459.47619899999995,kg -7f3730a0-1032-30c5-8109-f9ddc95b91cc,SESCO,II.1.1,Tucuman,AR-T,annual,2023,gas oil combustion consumption by to the public,1446.2097635999999,TJ,CO2,74100.0,kg/TJ,107164143.48275998,kg -28052de1-b9ae-303c-b10a-b4788a5c6adb,SESCO,II.1.1,Tucuman,AR-T,annual,2023,gas oil combustion consumption by to the public,1446.2097635999999,TJ,CH4,3.9,kg/TJ,5640.218078039999,kg -28052de1-b9ae-303c-b10a-b4788a5c6adb,SESCO,II.1.1,Tucuman,AR-T,annual,2023,gas oil combustion consumption by to the public,1446.2097635999999,TJ,N2O,3.9,kg/TJ,5640.218078039999,kg -fe7b6c92-5468-3f52-ba64-f4377908f328,SESCO,II.1.1,Catamarca,AR-K,annual,2023,gas oil combustion consumption by to the public,3.3960024,TJ,CO2,74100.0,kg/TJ,251643.77784,kg -3fc21f7d-7070-3ab5-80dd-4cd5d754e78e,SESCO,II.1.1,Catamarca,AR-K,annual,2023,gas oil combustion consumption by to the public,3.3960024,TJ,CH4,3.9,kg/TJ,13.244409359999999,kg -3fc21f7d-7070-3ab5-80dd-4cd5d754e78e,SESCO,II.1.1,Catamarca,AR-K,annual,2023,gas oil combustion consumption by to the public,3.3960024,TJ,N2O,3.9,kg/TJ,13.244409359999999,kg -925f4e7d-8370-350d-8402-556b68914e62,SESCO,II.1.1,Chaco,AR-H,annual,2023,gas oil combustion consumption by to the public,1.9150823999999997,TJ,CO2,74100.0,kg/TJ,141907.60583999997,kg -f0e0e501-8783-3e22-86f9-dba7130247d8,SESCO,II.1.1,Chaco,AR-H,annual,2023,gas oil combustion consumption by to the public,1.9150823999999997,TJ,CH4,3.9,kg/TJ,7.468821359999999,kg -f0e0e501-8783-3e22-86f9-dba7130247d8,SESCO,II.1.1,Chaco,AR-H,annual,2023,gas oil combustion consumption by to the public,1.9150823999999997,TJ,N2O,3.9,kg/TJ,7.468821359999999,kg -ce644857-0286-3be2-8a8d-1d08988c4a1e,SESCO,II.1.1,Córdoba,AR-X,annual,2023,gas oil combustion consumption by to the public,0.5418,TJ,CO2,74100.0,kg/TJ,40147.38,kg -a4264203-f9dc-33e4-a48d-de5bb69ea625,SESCO,II.1.1,Córdoba,AR-X,annual,2023,gas oil combustion consumption by to the public,0.5418,TJ,CH4,3.9,kg/TJ,2.1130199999999997,kg -a4264203-f9dc-33e4-a48d-de5bb69ea625,SESCO,II.1.1,Córdoba,AR-X,annual,2023,gas oil combustion consumption by to the public,0.5418,TJ,N2O,3.9,kg/TJ,2.1130199999999997,kg -51f61c23-2723-3df9-8def-2912f4c854ed,SESCO,II.1.1,Jujuy,AR-Y,annual,2023,gas oil combustion consumption by to the public,97.5207492,TJ,CO2,74100.0,kg/TJ,7226287.51572,kg -80f5b109-366d-3680-8240-3226a346d41a,SESCO,II.1.1,Jujuy,AR-Y,annual,2023,gas oil combustion consumption by to the public,97.5207492,TJ,CH4,3.9,kg/TJ,380.33092188,kg -80f5b109-366d-3680-8240-3226a346d41a,SESCO,II.1.1,Jujuy,AR-Y,annual,2023,gas oil combustion consumption by to the public,97.5207492,TJ,N2O,3.9,kg/TJ,380.33092188,kg -854deaa5-2376-3763-a6cb-683eface1ebb,SESCO,II.1.1,La Rioja,AR-F,annual,2023,gas oil combustion consumption by to the public,99.95740439999999,TJ,CO2,74100.0,kg/TJ,7406843.666039999,kg -de1ed80c-8358-3bba-8406-6eec79be0891,SESCO,II.1.1,La Rioja,AR-F,annual,2023,gas oil combustion consumption by to the public,99.95740439999999,TJ,CH4,3.9,kg/TJ,389.83387715999993,kg -de1ed80c-8358-3bba-8406-6eec79be0891,SESCO,II.1.1,La Rioja,AR-F,annual,2023,gas oil combustion consumption by to the public,99.95740439999999,TJ,N2O,3.9,kg/TJ,389.83387715999993,kg -8e6aff01-d21c-3330-b5d1-ff42292ec98b,SESCO,II.1.1,Salta,AR-A,annual,2023,gas oil combustion consumption by to the public,174.20459279999997,TJ,CO2,74100.0,kg/TJ,12908560.326479997,kg -24e9ad07-3087-327c-8b43-75b738381308,SESCO,II.1.1,Salta,AR-A,annual,2023,gas oil combustion consumption by to the public,174.20459279999997,TJ,CH4,3.9,kg/TJ,679.3979119199998,kg -24e9ad07-3087-327c-8b43-75b738381308,SESCO,II.1.1,Salta,AR-A,annual,2023,gas oil combustion consumption by to the public,174.20459279999997,TJ,N2O,3.9,kg/TJ,679.3979119199998,kg -977be780-854d-3dcc-b796-86ac69f04f1d,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2023,gas oil combustion consumption by to the public,62.6197992,TJ,CO2,74100.0,kg/TJ,4640127.12072,kg -c794abc4-c58b-3c93-82c5-1b2d2a6ce4d4,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2023,gas oil combustion consumption by to the public,62.6197992,TJ,CH4,3.9,kg/TJ,244.21721688,kg -c794abc4-c58b-3c93-82c5-1b2d2a6ce4d4,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2023,gas oil combustion consumption by to the public,62.6197992,TJ,N2O,3.9,kg/TJ,244.21721688,kg -5a05245f-b36b-30cf-9a94-d6be78c94b3b,SESCO,II.1.1,Tucuman,AR-T,annual,2023,gas oil combustion consumption by to the public,225.9797232,TJ,CO2,74100.0,kg/TJ,16745097.48912,kg -b2af6a9e-2cfa-394b-a2a4-7a08eb3f4295,SESCO,II.1.1,Tucuman,AR-T,annual,2023,gas oil combustion consumption by to the public,225.9797232,TJ,CH4,3.9,kg/TJ,881.3209204799999,kg -b2af6a9e-2cfa-394b-a2a4-7a08eb3f4295,SESCO,II.1.1,Tucuman,AR-T,annual,2023,gas oil combustion consumption by to the public,225.9797232,TJ,N2O,3.9,kg/TJ,881.3209204799999,kg -395a014c-ab57-34d7-9e4a-a60df2a047bb,SESCO,I.3.1,San Juan,AR-J,annual,2023,gas oil combustion consumption by petrochemical industries,15.13428,TJ,CO2,74100.0,kg/TJ,1121450.148,kg -f69129ce-7b06-31be-a0bb-52266740a3b9,SESCO,I.3.1,San Juan,AR-J,annual,2023,gas oil combustion consumption by petrochemical industries,15.13428,TJ,CH4,3.9,kg/TJ,59.023692,kg -f69129ce-7b06-31be-a0bb-52266740a3b9,SESCO,I.3.1,San Juan,AR-J,annual,2023,gas oil combustion consumption by petrochemical industries,15.13428,TJ,N2O,3.9,kg/TJ,59.023692,kg -27b3ee04-11c6-3673-b67c-6b433a0dadea,SESCO,II.5.1,Capital Federal,AR-C,annual,2023,gasoline combustion consumption by agriculture machines,60.1594,TJ,CO2,69300.0,kg/TJ,4169046.42,kg -344c97af-9643-394d-9e1f-09f227f0b1a6,SESCO,II.5.1,Capital Federal,AR-C,annual,2023,gasoline combustion consumption by agriculture machines,60.1594,TJ,CH4,33.0,kg/TJ,1985.2602,kg -537113ff-e949-3724-af55-9ad88e1193aa,SESCO,II.5.1,Capital Federal,AR-C,annual,2023,gasoline combustion consumption by agriculture machines,60.1594,TJ,N2O,3.2,kg/TJ,192.51008000000002,kg -51b7f418-52b3-354f-be0c-24c3ba661532,SESCO,II.5.1,Buenos Aires,AR-B,annual,2023,gas oil combustion consumption by agriculture machines,816.63708,TJ,CO2,74100.0,kg/TJ,60512807.628,kg -73351c39-f8c3-333e-81f3-2a78852721be,SESCO,II.5.1,Buenos Aires,AR-B,annual,2023,gas oil combustion consumption by agriculture machines,816.63708,TJ,CH4,3.9,kg/TJ,3184.884612,kg -73351c39-f8c3-333e-81f3-2a78852721be,SESCO,II.5.1,Buenos Aires,AR-B,annual,2023,gas oil combustion consumption by agriculture machines,816.63708,TJ,N2O,3.9,kg/TJ,3184.884612,kg -8a2185cb-901b-3c8a-a651-504980b0a44b,SESCO,II.5.1,Chaco,AR-H,annual,2023,gas oil combustion consumption by agriculture machines,58.22544,TJ,CO2,74100.0,kg/TJ,4314505.104,kg -c769450f-c298-313a-b512-cf303e4d2625,SESCO,II.5.1,Chaco,AR-H,annual,2023,gas oil combustion consumption by agriculture machines,58.22544,TJ,CH4,3.9,kg/TJ,227.079216,kg -c769450f-c298-313a-b512-cf303e4d2625,SESCO,II.5.1,Chaco,AR-H,annual,2023,gas oil combustion consumption by agriculture machines,58.22544,TJ,N2O,3.9,kg/TJ,227.079216,kg -0b46a818-375e-33fa-8e78-abddd07a4c1d,SESCO,II.5.1,Corrientes,AR-W,annual,2023,gas oil combustion consumption by agriculture machines,48.25632,TJ,CO2,74100.0,kg/TJ,3575793.3120000004,kg -7add910a-6d08-3f3e-96c8-4b2d44fcef7e,SESCO,II.5.1,Corrientes,AR-W,annual,2023,gas oil combustion consumption by agriculture machines,48.25632,TJ,CH4,3.9,kg/TJ,188.199648,kg -7add910a-6d08-3f3e-96c8-4b2d44fcef7e,SESCO,II.5.1,Corrientes,AR-W,annual,2023,gas oil combustion consumption by agriculture machines,48.25632,TJ,N2O,3.9,kg/TJ,188.199648,kg -7c18fa6b-84de-36a9-ba5c-4c09ce101361,SESCO,II.5.1,Córdoba,AR-X,annual,2023,gas oil combustion consumption by agriculture machines,375.28679999999997,TJ,CO2,74100.0,kg/TJ,27808751.88,kg -757f74d3-1324-3483-bb95-6d8153daa34c,SESCO,II.5.1,Córdoba,AR-X,annual,2023,gas oil combustion consumption by agriculture machines,375.28679999999997,TJ,CH4,3.9,kg/TJ,1463.6185199999998,kg -757f74d3-1324-3483-bb95-6d8153daa34c,SESCO,II.5.1,Córdoba,AR-X,annual,2023,gas oil combustion consumption by agriculture machines,375.28679999999997,TJ,N2O,3.9,kg/TJ,1463.6185199999998,kg -3f42e127-765b-3156-b86f-ac2f08b98fe4,SESCO,II.5.1,Entre Rios,AR-E,annual,2023,gas oil combustion consumption by agriculture machines,196.63728,TJ,CO2,74100.0,kg/TJ,14570822.448,kg -46da741e-6fd9-337f-b688-97bdacbad836,SESCO,II.5.1,Entre Rios,AR-E,annual,2023,gas oil combustion consumption by agriculture machines,196.63728,TJ,CH4,3.9,kg/TJ,766.885392,kg -46da741e-6fd9-337f-b688-97bdacbad836,SESCO,II.5.1,Entre Rios,AR-E,annual,2023,gas oil combustion consumption by agriculture machines,196.63728,TJ,N2O,3.9,kg/TJ,766.885392,kg -944bcdc5-d406-33dd-b955-e7ef7fa7c03e,SESCO,II.5.1,La Pampa,AR-L,annual,2023,gas oil combustion consumption by agriculture machines,99.61896,TJ,CO2,74100.0,kg/TJ,7381764.936,kg -eb6f3bdc-88fb-3f96-937d-e86b58d86536,SESCO,II.5.1,La Pampa,AR-L,annual,2023,gas oil combustion consumption by agriculture machines,99.61896,TJ,CH4,3.9,kg/TJ,388.513944,kg -eb6f3bdc-88fb-3f96-937d-e86b58d86536,SESCO,II.5.1,La Pampa,AR-L,annual,2023,gas oil combustion consumption by agriculture machines,99.61896,TJ,N2O,3.9,kg/TJ,388.513944,kg -db9a9aae-6218-3926-af7e-90078e2af68a,SESCO,II.5.1,Salta,AR-A,annual,2023,gas oil combustion consumption by agriculture machines,169.98072,TJ,CO2,74100.0,kg/TJ,12595571.352,kg -92c0e804-d882-3e23-8bb8-d68be8379246,SESCO,II.5.1,Salta,AR-A,annual,2023,gas oil combustion consumption by agriculture machines,169.98072,TJ,CH4,3.9,kg/TJ,662.924808,kg -92c0e804-d882-3e23-8bb8-d68be8379246,SESCO,II.5.1,Salta,AR-A,annual,2023,gas oil combustion consumption by agriculture machines,169.98072,TJ,N2O,3.9,kg/TJ,662.924808,kg -01acc37c-7089-3f01-8263-46f4e6276766,SESCO,II.5.1,Santa Fe,AR-S,annual,2023,gas oil combustion consumption by agriculture machines,922.28808,TJ,CO2,74100.0,kg/TJ,68341546.728,kg -a8a70a0d-ed5c-314b-96c1-fdf7b800a62e,SESCO,II.5.1,Santa Fe,AR-S,annual,2023,gas oil combustion consumption by agriculture machines,922.28808,TJ,CH4,3.9,kg/TJ,3596.923512,kg -a8a70a0d-ed5c-314b-96c1-fdf7b800a62e,SESCO,II.5.1,Santa Fe,AR-S,annual,2023,gas oil combustion consumption by agriculture machines,922.28808,TJ,N2O,3.9,kg/TJ,3596.923512,kg -139a8503-924b-379e-a313-1c988306eaaf,SESCO,II.5.1,Tucuman,AR-T,annual,2023,gas oil combustion consumption by agriculture machines,226.00284,TJ,CO2,74100.0,kg/TJ,16746810.444,kg -d227f109-356d-3252-86e6-697a82c28e7a,SESCO,II.5.1,Tucuman,AR-T,annual,2023,gas oil combustion consumption by agriculture machines,226.00284,TJ,CH4,3.9,kg/TJ,881.411076,kg -d227f109-356d-3252-86e6-697a82c28e7a,SESCO,II.5.1,Tucuman,AR-T,annual,2023,gas oil combustion consumption by agriculture machines,226.00284,TJ,N2O,3.9,kg/TJ,881.411076,kg -771d8052-8859-33f2-9158-ce55c2f4bcfd,SESCO,II.5.1,Buenos Aires,AR-B,annual,2023,gas oil combustion consumption by agriculture machines,70.83132,TJ,CO2,74100.0,kg/TJ,5248600.812,kg -74dc5c99-dd4e-3b1c-a297-35b5803a5583,SESCO,II.5.1,Buenos Aires,AR-B,annual,2023,gas oil combustion consumption by agriculture machines,70.83132,TJ,CH4,3.9,kg/TJ,276.242148,kg -74dc5c99-dd4e-3b1c-a297-35b5803a5583,SESCO,II.5.1,Buenos Aires,AR-B,annual,2023,gas oil combustion consumption by agriculture machines,70.83132,TJ,N2O,3.9,kg/TJ,276.242148,kg -469c0e4b-82ae-3a2b-b104-c361868466ab,SESCO,II.5.1,Córdoba,AR-X,annual,2023,gas oil combustion consumption by agriculture machines,25.13952,TJ,CO2,74100.0,kg/TJ,1862838.432,kg -60e16dec-22b4-3904-8f9d-8474bfd752bd,SESCO,II.5.1,Córdoba,AR-X,annual,2023,gas oil combustion consumption by agriculture machines,25.13952,TJ,CH4,3.9,kg/TJ,98.044128,kg -60e16dec-22b4-3904-8f9d-8474bfd752bd,SESCO,II.5.1,Córdoba,AR-X,annual,2023,gas oil combustion consumption by agriculture machines,25.13952,TJ,N2O,3.9,kg/TJ,98.044128,kg -da6e81b0-a1a0-343e-8668-dbba8cd44851,SESCO,II.5.1,Entre Rios,AR-E,annual,2023,gas oil combustion consumption by agriculture machines,52.33788,TJ,CO2,74100.0,kg/TJ,3878236.908,kg -123aee52-243b-3541-9cdd-3252dadeee34,SESCO,II.5.1,Entre Rios,AR-E,annual,2023,gas oil combustion consumption by agriculture machines,52.33788,TJ,CH4,3.9,kg/TJ,204.117732,kg -123aee52-243b-3541-9cdd-3252dadeee34,SESCO,II.5.1,Entre Rios,AR-E,annual,2023,gas oil combustion consumption by agriculture machines,52.33788,TJ,N2O,3.9,kg/TJ,204.117732,kg -725f5f64-44ce-3811-bab2-38a76b5ac587,SESCO,II.5.1,La Pampa,AR-L,annual,2023,gas oil combustion consumption by agriculture machines,8.09088,TJ,CO2,74100.0,kg/TJ,599534.208,kg -369e9e03-2be1-3015-a67d-a7769e20eb15,SESCO,II.5.1,La Pampa,AR-L,annual,2023,gas oil combustion consumption by agriculture machines,8.09088,TJ,CH4,3.9,kg/TJ,31.554432000000002,kg -369e9e03-2be1-3015-a67d-a7769e20eb15,SESCO,II.5.1,La Pampa,AR-L,annual,2023,gas oil combustion consumption by agriculture machines,8.09088,TJ,N2O,3.9,kg/TJ,31.554432000000002,kg -49d03cf2-1a14-3b3b-905c-07957a308ee4,SESCO,II.5.1,Santa Fe,AR-S,annual,2023,gas oil combustion consumption by agriculture machines,135.30552,TJ,CO2,74100.0,kg/TJ,10026139.032,kg -ae511163-2ec1-3d5b-a554-5524d6e00285,SESCO,II.5.1,Santa Fe,AR-S,annual,2023,gas oil combustion consumption by agriculture machines,135.30552,TJ,CH4,3.9,kg/TJ,527.691528,kg -ae511163-2ec1-3d5b-a554-5524d6e00285,SESCO,II.5.1,Santa Fe,AR-S,annual,2023,gas oil combustion consumption by agriculture machines,135.30552,TJ,N2O,3.9,kg/TJ,527.691528,kg -d52fcb70-629d-3293-b0bc-6e16feb971e2,SESCO,II.5.1,Tucuman,AR-T,annual,2023,gas oil combustion consumption by agriculture machines,4.65948,TJ,CO2,74100.0,kg/TJ,345267.468,kg -ec850d77-efb2-3275-84ee-4d6ae5067f01,SESCO,II.5.1,Tucuman,AR-T,annual,2023,gas oil combustion consumption by agriculture machines,4.65948,TJ,CH4,3.9,kg/TJ,18.171972,kg -ec850d77-efb2-3275-84ee-4d6ae5067f01,SESCO,II.5.1,Tucuman,AR-T,annual,2023,gas oil combustion consumption by agriculture machines,4.65948,TJ,N2O,3.9,kg/TJ,18.171972,kg -384f60f3-bae3-39e2-ad66-c24eb1daebc4,SESCO,II.1.1,Buenos Aires,AR-B,annual,2023,gas oil combustion consumption by to the public,13910.93172,TJ,CO2,74100.0,kg/TJ,1030800040.452,kg -dd253401-ea4b-39b3-a14d-230219c9f435,SESCO,II.1.1,Buenos Aires,AR-B,annual,2023,gas oil combustion consumption by to the public,13910.93172,TJ,CH4,3.9,kg/TJ,54252.633708,kg -dd253401-ea4b-39b3-a14d-230219c9f435,SESCO,II.1.1,Buenos Aires,AR-B,annual,2023,gas oil combustion consumption by to the public,13910.93172,TJ,N2O,3.9,kg/TJ,54252.633708,kg -a3c2e4dc-43ef-326b-babc-eb153dab8a00,SESCO,II.1.1,Capital Federal,AR-C,annual,2023,gas oil combustion consumption by to the public,1202.47092,TJ,CO2,74100.0,kg/TJ,89103095.17199999,kg -7fff316a-ccc7-3da9-aa15-002e2ef34f09,SESCO,II.1.1,Capital Federal,AR-C,annual,2023,gas oil combustion consumption by to the public,1202.47092,TJ,CH4,3.9,kg/TJ,4689.636587999999,kg -7fff316a-ccc7-3da9-aa15-002e2ef34f09,SESCO,II.1.1,Capital Federal,AR-C,annual,2023,gas oil combustion consumption by to the public,1202.47092,TJ,N2O,3.9,kg/TJ,4689.636587999999,kg -f90595e2-bd31-3f5b-8dd1-0cf15a8453d7,SESCO,II.1.1,Catamarca,AR-K,annual,2023,gas oil combustion consumption by to the public,65.41332,TJ,CO2,74100.0,kg/TJ,4847127.012,kg -7896b6e1-1edc-3561-abfd-68284fe03c07,SESCO,II.1.1,Catamarca,AR-K,annual,2023,gas oil combustion consumption by to the public,65.41332,TJ,CH4,3.9,kg/TJ,255.11194799999998,kg -7896b6e1-1edc-3561-abfd-68284fe03c07,SESCO,II.1.1,Catamarca,AR-K,annual,2023,gas oil combustion consumption by to the public,65.41332,TJ,N2O,3.9,kg/TJ,255.11194799999998,kg -ffbbcdac-7a42-30a7-950e-5826c9dfb4d5,SESCO,II.1.1,Chaco,AR-H,annual,2023,gas oil combustion consumption by to the public,1524.40848,TJ,CO2,74100.0,kg/TJ,112958668.368,kg -cc940ff4-8cbf-3521-9800-a253fa8632a3,SESCO,II.1.1,Chaco,AR-H,annual,2023,gas oil combustion consumption by to the public,1524.40848,TJ,CH4,3.9,kg/TJ,5945.193072,kg -cc940ff4-8cbf-3521-9800-a253fa8632a3,SESCO,II.1.1,Chaco,AR-H,annual,2023,gas oil combustion consumption by to the public,1524.40848,TJ,N2O,3.9,kg/TJ,5945.193072,kg -d8001c1a-51da-3b5d-bb77-87d9cd1b3daf,SESCO,II.1.1,Corrientes,AR-W,annual,2023,gas oil combustion consumption by to the public,1093.3524,TJ,CO2,74100.0,kg/TJ,81017412.84,kg -19b99bd8-348b-31b5-be87-16030fd998f4,SESCO,II.1.1,Corrientes,AR-W,annual,2023,gas oil combustion consumption by to the public,1093.3524,TJ,CH4,3.9,kg/TJ,4264.07436,kg -19b99bd8-348b-31b5-be87-16030fd998f4,SESCO,II.1.1,Corrientes,AR-W,annual,2023,gas oil combustion consumption by to the public,1093.3524,TJ,N2O,3.9,kg/TJ,4264.07436,kg -d2593382-9f88-32d5-bc80-235dd14cf53d,SESCO,II.1.1,Córdoba,AR-X,annual,2023,gas oil combustion consumption by to the public,9379.93056,TJ,CO2,74100.0,kg/TJ,695052854.496,kg -8ef30031-39ac-3bae-a42a-9ec6045bc2e5,SESCO,II.1.1,Córdoba,AR-X,annual,2023,gas oil combustion consumption by to the public,9379.93056,TJ,CH4,3.9,kg/TJ,36581.729184,kg -8ef30031-39ac-3bae-a42a-9ec6045bc2e5,SESCO,II.1.1,Córdoba,AR-X,annual,2023,gas oil combustion consumption by to the public,9379.93056,TJ,N2O,3.9,kg/TJ,36581.729184,kg -37ff8110-dd45-3e0b-8b3a-72c9316da40c,SESCO,II.1.1,Entre Rios,AR-E,annual,2023,gas oil combustion consumption by to the public,1668.52728,TJ,CO2,74100.0,kg/TJ,123637871.448,kg -75d82f7f-1355-30f6-91a3-cc98d0571871,SESCO,II.1.1,Entre Rios,AR-E,annual,2023,gas oil combustion consumption by to the public,1668.52728,TJ,CH4,3.9,kg/TJ,6507.256392,kg -75d82f7f-1355-30f6-91a3-cc98d0571871,SESCO,II.1.1,Entre Rios,AR-E,annual,2023,gas oil combustion consumption by to the public,1668.52728,TJ,N2O,3.9,kg/TJ,6507.256392,kg -fd012126-1e65-3291-97c8-3dd713a6ce62,SESCO,II.1.1,Formosa,AR-P,annual,2023,gas oil combustion consumption by to the public,245.65212,TJ,CO2,74100.0,kg/TJ,18202822.092,kg -1a20f297-5673-308c-a827-206878a4f8b4,SESCO,II.1.1,Formosa,AR-P,annual,2023,gas oil combustion consumption by to the public,245.65212,TJ,CH4,3.9,kg/TJ,958.043268,kg -1a20f297-5673-308c-a827-206878a4f8b4,SESCO,II.1.1,Formosa,AR-P,annual,2023,gas oil combustion consumption by to the public,245.65212,TJ,N2O,3.9,kg/TJ,958.043268,kg -a79af9d2-83d3-3270-8d26-fea3239836e4,SESCO,II.1.1,Jujuy,AR-Y,annual,2023,gas oil combustion consumption by to the public,348.88308,TJ,CO2,74100.0,kg/TJ,25852236.228,kg -0da0f702-9517-36df-93e7-15102c977dc7,SESCO,II.1.1,Jujuy,AR-Y,annual,2023,gas oil combustion consumption by to the public,348.88308,TJ,CH4,3.9,kg/TJ,1360.644012,kg -0da0f702-9517-36df-93e7-15102c977dc7,SESCO,II.1.1,Jujuy,AR-Y,annual,2023,gas oil combustion consumption by to the public,348.88308,TJ,N2O,3.9,kg/TJ,1360.644012,kg -92dde770-12d7-3ad8-bf98-30e1706d06d0,SESCO,II.1.1,La Pampa,AR-L,annual,2023,gas oil combustion consumption by to the public,1124.7406799999999,TJ,CO2,74100.0,kg/TJ,83343284.388,kg -3d8d8068-4fd4-3c1e-8ea0-83107873c9e8,SESCO,II.1.1,La Pampa,AR-L,annual,2023,gas oil combustion consumption by to the public,1124.7406799999999,TJ,CH4,3.9,kg/TJ,4386.488651999999,kg -3d8d8068-4fd4-3c1e-8ea0-83107873c9e8,SESCO,II.1.1,La Pampa,AR-L,annual,2023,gas oil combustion consumption by to the public,1124.7406799999999,TJ,N2O,3.9,kg/TJ,4386.488651999999,kg -c76d5825-3fb6-32eb-8094-9c23a1d869bb,SESCO,II.1.1,La Rioja,AR-F,annual,2023,gas oil combustion consumption by to the public,243.81,TJ,CO2,74100.0,kg/TJ,18066321.0,kg -f9d86c95-8738-37f7-a0c4-38e5fcdbca84,SESCO,II.1.1,La Rioja,AR-F,annual,2023,gas oil combustion consumption by to the public,243.81,TJ,CH4,3.9,kg/TJ,950.859,kg -f9d86c95-8738-37f7-a0c4-38e5fcdbca84,SESCO,II.1.1,La Rioja,AR-F,annual,2023,gas oil combustion consumption by to the public,243.81,TJ,N2O,3.9,kg/TJ,950.859,kg -bccb4f8e-b88a-3e58-ae87-2e717bb600f5,SESCO,II.1.1,Mendoza,AR-M,annual,2023,gas oil combustion consumption by to the public,1705.51416,TJ,CO2,74100.0,kg/TJ,126378599.256,kg -71a2e40b-d2cf-3135-897e-4ef744bcfbd3,SESCO,II.1.1,Mendoza,AR-M,annual,2023,gas oil combustion consumption by to the public,1705.51416,TJ,CH4,3.9,kg/TJ,6651.5052239999995,kg -71a2e40b-d2cf-3135-897e-4ef744bcfbd3,SESCO,II.1.1,Mendoza,AR-M,annual,2023,gas oil combustion consumption by to the public,1705.51416,TJ,N2O,3.9,kg/TJ,6651.5052239999995,kg -fb13fb47-3d7e-3d69-8088-e1a74f935c3e,SESCO,II.1.1,Misiones,AR-N,annual,2023,gas oil combustion consumption by to the public,1628.32572,TJ,CO2,74100.0,kg/TJ,120658935.852,kg -9a3c5199-ddb4-38f1-a6f6-5a92c05a3e1a,SESCO,II.1.1,Misiones,AR-N,annual,2023,gas oil combustion consumption by to the public,1628.32572,TJ,CH4,3.9,kg/TJ,6350.470308,kg -9a3c5199-ddb4-38f1-a6f6-5a92c05a3e1a,SESCO,II.1.1,Misiones,AR-N,annual,2023,gas oil combustion consumption by to the public,1628.32572,TJ,N2O,3.9,kg/TJ,6350.470308,kg -29b4bd09-e7ca-3a10-89bb-fee4660a5d5e,SESCO,II.1.1,Neuquén,AR-Q,annual,2023,gas oil combustion consumption by to the public,850.51764,TJ,CO2,74100.0,kg/TJ,63023357.124000005,kg -35dd34d7-f8ef-30aa-b5a8-370d2b9d16b6,SESCO,II.1.1,Neuquén,AR-Q,annual,2023,gas oil combustion consumption by to the public,850.51764,TJ,CH4,3.9,kg/TJ,3317.018796,kg -35dd34d7-f8ef-30aa-b5a8-370d2b9d16b6,SESCO,II.1.1,Neuquén,AR-Q,annual,2023,gas oil combustion consumption by to the public,850.51764,TJ,N2O,3.9,kg/TJ,3317.018796,kg -6cc9142a-bdce-3793-bb56-1cd5f1f40193,SESCO,II.1.1,Rio Negro,AR-R,annual,2023,gas oil combustion consumption by to the public,342.30924,TJ,CO2,74100.0,kg/TJ,25365114.684,kg -dfcb189e-936e-38b3-8f29-0f82e5be459d,SESCO,II.1.1,Rio Negro,AR-R,annual,2023,gas oil combustion consumption by to the public,342.30924,TJ,CH4,3.9,kg/TJ,1335.006036,kg -dfcb189e-936e-38b3-8f29-0f82e5be459d,SESCO,II.1.1,Rio Negro,AR-R,annual,2023,gas oil combustion consumption by to the public,342.30924,TJ,N2O,3.9,kg/TJ,1335.006036,kg -6ee3b116-1fa2-3177-beef-c126c3dcb8fb,SESCO,II.1.1,Salta,AR-A,annual,2023,gas oil combustion consumption by to the public,186.05411999999998,TJ,CO2,74100.0,kg/TJ,13786610.292,kg -4e0cbb2c-f8d7-362c-84d4-77e0c7ee4c0c,SESCO,II.1.1,Salta,AR-A,annual,2023,gas oil combustion consumption by to the public,186.05411999999998,TJ,CH4,3.9,kg/TJ,725.6110679999999,kg -4e0cbb2c-f8d7-362c-84d4-77e0c7ee4c0c,SESCO,II.1.1,Salta,AR-A,annual,2023,gas oil combustion consumption by to the public,186.05411999999998,TJ,N2O,3.9,kg/TJ,725.6110679999999,kg -603adcc3-6070-33e7-a993-511409957af2,SESCO,II.1.1,San Juan,AR-J,annual,2023,gas oil combustion consumption by to the public,539.37996,TJ,CO2,74100.0,kg/TJ,39968055.036,kg -a50b0484-6a83-3aea-9c1c-2c9662e3f796,SESCO,II.1.1,San Juan,AR-J,annual,2023,gas oil combustion consumption by to the public,539.37996,TJ,CH4,3.9,kg/TJ,2103.581844,kg -a50b0484-6a83-3aea-9c1c-2c9662e3f796,SESCO,II.1.1,San Juan,AR-J,annual,2023,gas oil combustion consumption by to the public,539.37996,TJ,N2O,3.9,kg/TJ,2103.581844,kg -e10e2ea2-8efd-3471-aa5d-92fc7fbfe207,SESCO,II.1.1,San Luis,AR-D,annual,2023,gas oil combustion consumption by to the public,582.47112,TJ,CO2,74100.0,kg/TJ,43161109.992000006,kg -e042a091-bb55-3b76-9405-fbcdc6e36f29,SESCO,II.1.1,San Luis,AR-D,annual,2023,gas oil combustion consumption by to the public,582.47112,TJ,CH4,3.9,kg/TJ,2271.637368,kg -e042a091-bb55-3b76-9405-fbcdc6e36f29,SESCO,II.1.1,San Luis,AR-D,annual,2023,gas oil combustion consumption by to the public,582.47112,TJ,N2O,3.9,kg/TJ,2271.637368,kg -4865779b-f0cd-36ee-af47-d509af9f2cd5,SESCO,II.1.1,Santa Fe,AR-S,annual,2023,gas oil combustion consumption by to the public,5414.06292,TJ,CO2,74100.0,kg/TJ,401182062.37200004,kg -dc37d883-93fb-31d3-a4da-3436bcb747de,SESCO,II.1.1,Santa Fe,AR-S,annual,2023,gas oil combustion consumption by to the public,5414.06292,TJ,CH4,3.9,kg/TJ,21114.845388,kg -dc37d883-93fb-31d3-a4da-3436bcb747de,SESCO,II.1.1,Santa Fe,AR-S,annual,2023,gas oil combustion consumption by to the public,5414.06292,TJ,N2O,3.9,kg/TJ,21114.845388,kg -2eec7cfb-615c-34ed-9fd7-d1dab7c5e260,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2023,gas oil combustion consumption by to the public,374.09484,TJ,CO2,74100.0,kg/TJ,27720427.643999998,kg -a72c7da8-164f-32e6-8c90-d710531f082f,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2023,gas oil combustion consumption by to the public,374.09484,TJ,CH4,3.9,kg/TJ,1458.9698759999999,kg -a72c7da8-164f-32e6-8c90-d710531f082f,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2023,gas oil combustion consumption by to the public,374.09484,TJ,N2O,3.9,kg/TJ,1458.9698759999999,kg -d9613d07-408a-316d-92a9-8e3131abdd70,SESCO,II.1.1,Tucuman,AR-T,annual,2023,gas oil combustion consumption by to the public,1194.6689999999999,TJ,CO2,74100.0,kg/TJ,88524972.89999999,kg -5139ff50-0b43-34d1-beea-115d351b0913,SESCO,II.1.1,Tucuman,AR-T,annual,2023,gas oil combustion consumption by to the public,1194.6689999999999,TJ,CH4,3.9,kg/TJ,4659.209099999999,kg -5139ff50-0b43-34d1-beea-115d351b0913,SESCO,II.1.1,Tucuman,AR-T,annual,2023,gas oil combustion consumption by to the public,1194.6689999999999,TJ,N2O,3.9,kg/TJ,4659.209099999999,kg -2ab1f7f2-9a42-3067-a576-4dd1ace9150e,SESCO,II.1.1,Buenos Aires,AR-B,annual,2023,gas oil combustion consumption by to the public,9616.98612,TJ,CO2,74100.0,kg/TJ,712618671.492,kg -4a1e5a86-8136-3f4c-bffb-01f5b07fc65d,SESCO,II.1.1,Buenos Aires,AR-B,annual,2023,gas oil combustion consumption by to the public,9616.98612,TJ,CH4,3.9,kg/TJ,37506.245868,kg -4a1e5a86-8136-3f4c-bffb-01f5b07fc65d,SESCO,II.1.1,Buenos Aires,AR-B,annual,2023,gas oil combustion consumption by to the public,9616.98612,TJ,N2O,3.9,kg/TJ,37506.245868,kg -e027ee91-67bb-3b5b-b45b-6f7581e49ffd,SESCO,II.1.1,Capital Federal,AR-C,annual,2023,gas oil combustion consumption by to the public,1912.3734,TJ,CO2,74100.0,kg/TJ,141706868.94,kg -0a8640bf-3dce-33dc-8d57-b095690c8fb6,SESCO,II.1.1,Capital Federal,AR-C,annual,2023,gas oil combustion consumption by to the public,1912.3734,TJ,CH4,3.9,kg/TJ,7458.256259999999,kg -0a8640bf-3dce-33dc-8d57-b095690c8fb6,SESCO,II.1.1,Capital Federal,AR-C,annual,2023,gas oil combustion consumption by to the public,1912.3734,TJ,N2O,3.9,kg/TJ,7458.256259999999,kg -ea753d9b-75d5-39f6-9195-f1c6c0bdbb53,SESCO,II.1.1,Catamarca,AR-K,annual,2023,gas oil combustion consumption by to the public,41.140679999999996,TJ,CO2,74100.0,kg/TJ,3048524.388,kg -b5720057-49e9-391c-acb3-4d1563a62743,SESCO,II.1.1,Catamarca,AR-K,annual,2023,gas oil combustion consumption by to the public,41.140679999999996,TJ,CH4,3.9,kg/TJ,160.44865199999998,kg -b5720057-49e9-391c-acb3-4d1563a62743,SESCO,II.1.1,Catamarca,AR-K,annual,2023,gas oil combustion consumption by to the public,41.140679999999996,TJ,N2O,3.9,kg/TJ,160.44865199999998,kg -d36386f1-5b87-39a6-aa0c-a526ce5ccac4,SESCO,II.1.1,Chaco,AR-H,annual,2023,gas oil combustion consumption by to the public,540.4274399999999,TJ,CO2,74100.0,kg/TJ,40045673.304,kg -5d5fd43a-c627-35de-9efc-1c27bc742651,SESCO,II.1.1,Chaco,AR-H,annual,2023,gas oil combustion consumption by to the public,540.4274399999999,TJ,CH4,3.9,kg/TJ,2107.667016,kg -5d5fd43a-c627-35de-9efc-1c27bc742651,SESCO,II.1.1,Chaco,AR-H,annual,2023,gas oil combustion consumption by to the public,540.4274399999999,TJ,N2O,3.9,kg/TJ,2107.667016,kg -27f9bd41-abe7-3871-ad0b-d2c7605fb9cb,SESCO,II.1.1,Corrientes,AR-W,annual,2023,gas oil combustion consumption by to the public,665.22204,TJ,CO2,74100.0,kg/TJ,49292953.164,kg -f45f29b1-e28c-3cce-a557-77e050875f68,SESCO,II.1.1,Corrientes,AR-W,annual,2023,gas oil combustion consumption by to the public,665.22204,TJ,CH4,3.9,kg/TJ,2594.365956,kg -f45f29b1-e28c-3cce-a557-77e050875f68,SESCO,II.1.1,Corrientes,AR-W,annual,2023,gas oil combustion consumption by to the public,665.22204,TJ,N2O,3.9,kg/TJ,2594.365956,kg -75117ca7-82ba-392d-bb0d-56ae5234795e,SESCO,II.1.1,Córdoba,AR-X,annual,2023,gas oil combustion consumption by to the public,2822.70576,TJ,CO2,74100.0,kg/TJ,209162496.81599998,kg -20b766b6-8f10-3fd3-ba0f-3efc4a88818e,SESCO,II.1.1,Córdoba,AR-X,annual,2023,gas oil combustion consumption by to the public,2822.70576,TJ,CH4,3.9,kg/TJ,11008.552463999999,kg -20b766b6-8f10-3fd3-ba0f-3efc4a88818e,SESCO,II.1.1,Córdoba,AR-X,annual,2023,gas oil combustion consumption by to the public,2822.70576,TJ,N2O,3.9,kg/TJ,11008.552463999999,kg -2a92d574-545a-3ebd-b6bf-5138b3bee66d,SESCO,II.1.1,Entre Rios,AR-E,annual,2023,gas oil combustion consumption by to the public,875.07924,TJ,CO2,74100.0,kg/TJ,64843371.684,kg -fbc6e5e3-ee99-3aa9-8fd7-1ad17c70802e,SESCO,II.1.1,Entre Rios,AR-E,annual,2023,gas oil combustion consumption by to the public,875.07924,TJ,CH4,3.9,kg/TJ,3412.809036,kg -fbc6e5e3-ee99-3aa9-8fd7-1ad17c70802e,SESCO,II.1.1,Entre Rios,AR-E,annual,2023,gas oil combustion consumption by to the public,875.07924,TJ,N2O,3.9,kg/TJ,3412.809036,kg -c812fc4f-dfe0-3fcc-bced-3f930218c025,SESCO,II.1.1,Formosa,AR-P,annual,2023,gas oil combustion consumption by to the public,222.21024,TJ,CO2,74100.0,kg/TJ,16465778.784,kg -508625ca-5578-3e7c-bdfc-4775483f8b0c,SESCO,II.1.1,Formosa,AR-P,annual,2023,gas oil combustion consumption by to the public,222.21024,TJ,CH4,3.9,kg/TJ,866.6199359999999,kg -508625ca-5578-3e7c-bdfc-4775483f8b0c,SESCO,II.1.1,Formosa,AR-P,annual,2023,gas oil combustion consumption by to the public,222.21024,TJ,N2O,3.9,kg/TJ,866.6199359999999,kg -3d3cf8c0-cc8d-3193-919f-df972e5a1492,SESCO,II.1.1,Jujuy,AR-Y,annual,2023,gas oil combustion consumption by to the public,239.15052,TJ,CO2,74100.0,kg/TJ,17721053.532,kg -c9792f99-2752-36ed-aa14-6e41a0dddc5f,SESCO,II.1.1,Jujuy,AR-Y,annual,2023,gas oil combustion consumption by to the public,239.15052,TJ,CH4,3.9,kg/TJ,932.6870279999999,kg -c9792f99-2752-36ed-aa14-6e41a0dddc5f,SESCO,II.1.1,Jujuy,AR-Y,annual,2023,gas oil combustion consumption by to the public,239.15052,TJ,N2O,3.9,kg/TJ,932.6870279999999,kg -4a2fbbe1-d93c-355f-8eb6-8fe8926d3b93,SESCO,II.1.1,La Pampa,AR-L,annual,2023,gas oil combustion consumption by to the public,329.88396,TJ,CO2,74100.0,kg/TJ,24444401.436,kg -f45294c7-62a3-3b32-844d-cd00f5e64934,SESCO,II.1.1,La Pampa,AR-L,annual,2023,gas oil combustion consumption by to the public,329.88396,TJ,CH4,3.9,kg/TJ,1286.547444,kg -f45294c7-62a3-3b32-844d-cd00f5e64934,SESCO,II.1.1,La Pampa,AR-L,annual,2023,gas oil combustion consumption by to the public,329.88396,TJ,N2O,3.9,kg/TJ,1286.547444,kg -203f16f2-f9c8-30d4-b26f-a0a053f2ae96,SESCO,II.1.1,La Rioja,AR-F,annual,2023,gas oil combustion consumption by to the public,176.2656,TJ,CO2,74100.0,kg/TJ,13061280.96,kg -2eeeb60d-7ad2-3b14-8f4b-dfab1002dba7,SESCO,II.1.1,La Rioja,AR-F,annual,2023,gas oil combustion consumption by to the public,176.2656,TJ,CH4,3.9,kg/TJ,687.43584,kg -2eeeb60d-7ad2-3b14-8f4b-dfab1002dba7,SESCO,II.1.1,La Rioja,AR-F,annual,2023,gas oil combustion consumption by to the public,176.2656,TJ,N2O,3.9,kg/TJ,687.43584,kg -505fd398-62d2-35f4-a2ab-5560a577c353,SESCO,II.1.1,Mendoza,AR-M,annual,2023,gas oil combustion consumption by to the public,1202.94048,TJ,CO2,74100.0,kg/TJ,89137889.568,kg -c2cddcff-ad00-3946-bd5a-5d4732528480,SESCO,II.1.1,Mendoza,AR-M,annual,2023,gas oil combustion consumption by to the public,1202.94048,TJ,CH4,3.9,kg/TJ,4691.467872,kg -c2cddcff-ad00-3946-bd5a-5d4732528480,SESCO,II.1.1,Mendoza,AR-M,annual,2023,gas oil combustion consumption by to the public,1202.94048,TJ,N2O,3.9,kg/TJ,4691.467872,kg -e4c2a99b-2c31-3082-945a-811c17c0031b,SESCO,II.1.1,Misiones,AR-N,annual,2023,gas oil combustion consumption by to the public,604.25148,TJ,CO2,74100.0,kg/TJ,44775034.668,kg -f84bb41a-b734-3d25-aff5-aae7db7eb1ab,SESCO,II.1.1,Misiones,AR-N,annual,2023,gas oil combustion consumption by to the public,604.25148,TJ,CH4,3.9,kg/TJ,2356.580772,kg -f84bb41a-b734-3d25-aff5-aae7db7eb1ab,SESCO,II.1.1,Misiones,AR-N,annual,2023,gas oil combustion consumption by to the public,604.25148,TJ,N2O,3.9,kg/TJ,2356.580772,kg -b1202610-8b79-33b8-b43e-917094803917,SESCO,II.1.1,Neuquén,AR-Q,annual,2023,gas oil combustion consumption by to the public,906.53976,TJ,CO2,74100.0,kg/TJ,67174596.216,kg -d0ada761-ba45-3064-af71-5eb8f48fb118,SESCO,II.1.1,Neuquén,AR-Q,annual,2023,gas oil combustion consumption by to the public,906.53976,TJ,CH4,3.9,kg/TJ,3535.505064,kg -d0ada761-ba45-3064-af71-5eb8f48fb118,SESCO,II.1.1,Neuquén,AR-Q,annual,2023,gas oil combustion consumption by to the public,906.53976,TJ,N2O,3.9,kg/TJ,3535.505064,kg -26d49178-f6a7-347b-b31b-03be0a955bce,SESCO,II.1.1,Rio Negro,AR-R,annual,2023,gas oil combustion consumption by to the public,252.08148,TJ,CO2,74100.0,kg/TJ,18679237.668,kg -f4f05e4e-89a3-3997-9569-05f21e7f7fb0,SESCO,II.1.1,Rio Negro,AR-R,annual,2023,gas oil combustion consumption by to the public,252.08148,TJ,CH4,3.9,kg/TJ,983.117772,kg -f4f05e4e-89a3-3997-9569-05f21e7f7fb0,SESCO,II.1.1,Rio Negro,AR-R,annual,2023,gas oil combustion consumption by to the public,252.08148,TJ,N2O,3.9,kg/TJ,983.117772,kg -10c3d36c-cf32-3aa5-9530-acc7bad0020f,SESCO,II.1.1,Salta,AR-A,annual,2023,gas oil combustion consumption by to the public,236.91108,TJ,CO2,74100.0,kg/TJ,17555111.028,kg -be6e24b3-57d3-3e50-98c1-baa706dd8b6b,SESCO,II.1.1,Salta,AR-A,annual,2023,gas oil combustion consumption by to the public,236.91108,TJ,CH4,3.9,kg/TJ,923.953212,kg -be6e24b3-57d3-3e50-98c1-baa706dd8b6b,SESCO,II.1.1,Salta,AR-A,annual,2023,gas oil combustion consumption by to the public,236.91108,TJ,N2O,3.9,kg/TJ,923.953212,kg -67aaeb89-ab6b-3ef0-9eb9-62ddf3481096,SESCO,II.1.1,San Juan,AR-J,annual,2023,gas oil combustion consumption by to the public,287.08176,TJ,CO2,74100.0,kg/TJ,21272758.415999997,kg -fe116fa1-74bb-3fe6-ba43-36b8ccec9387,SESCO,II.1.1,San Juan,AR-J,annual,2023,gas oil combustion consumption by to the public,287.08176,TJ,CH4,3.9,kg/TJ,1119.6188639999998,kg -fe116fa1-74bb-3fe6-ba43-36b8ccec9387,SESCO,II.1.1,San Juan,AR-J,annual,2023,gas oil combustion consumption by to the public,287.08176,TJ,N2O,3.9,kg/TJ,1119.6188639999998,kg -4b55eda9-ab3f-306e-b761-bbf6436f46a1,SESCO,II.1.1,San Luis,AR-D,annual,2023,gas oil combustion consumption by to the public,230.73456,TJ,CO2,74100.0,kg/TJ,17097430.895999998,kg -76791ad0-2d17-3c81-9676-6999bd56f8e5,SESCO,II.1.1,San Luis,AR-D,annual,2023,gas oil combustion consumption by to the public,230.73456,TJ,CH4,3.9,kg/TJ,899.864784,kg -76791ad0-2d17-3c81-9676-6999bd56f8e5,SESCO,II.1.1,San Luis,AR-D,annual,2023,gas oil combustion consumption by to the public,230.73456,TJ,N2O,3.9,kg/TJ,899.864784,kg -71ec7906-b3ea-3e37-a059-290bb85e3c46,SESCO,II.1.1,Santa Fe,AR-S,annual,2023,gas oil combustion consumption by to the public,2207.1126,TJ,CO2,74100.0,kg/TJ,163547043.66,kg -1f712530-0b7b-3137-a0e0-228cfe8efc60,SESCO,II.1.1,Santa Fe,AR-S,annual,2023,gas oil combustion consumption by to the public,2207.1126,TJ,CH4,3.9,kg/TJ,8607.73914,kg -1f712530-0b7b-3137-a0e0-228cfe8efc60,SESCO,II.1.1,Santa Fe,AR-S,annual,2023,gas oil combustion consumption by to the public,2207.1126,TJ,N2O,3.9,kg/TJ,8607.73914,kg -f9fc0d6a-0b28-3c3f-935f-fdbcee337451,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2023,gas oil combustion consumption by to the public,304.96116,TJ,CO2,74100.0,kg/TJ,22597621.956,kg -f8ba29dc-42d5-32d5-b1b3-520b498c57c3,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2023,gas oil combustion consumption by to the public,304.96116,TJ,CH4,3.9,kg/TJ,1189.348524,kg -f8ba29dc-42d5-32d5-b1b3-520b498c57c3,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2023,gas oil combustion consumption by to the public,304.96116,TJ,N2O,3.9,kg/TJ,1189.348524,kg -7c0c6e74-ab13-32ba-b6e4-60c4a644bdb0,SESCO,II.1.1,Tucuman,AR-T,annual,2023,gas oil combustion consumption by to the public,536.05692,TJ,CO2,74100.0,kg/TJ,39721817.772,kg -65e37b47-3eb8-31ef-9918-421b5e7c7044,SESCO,II.1.1,Tucuman,AR-T,annual,2023,gas oil combustion consumption by to the public,536.05692,TJ,CH4,3.9,kg/TJ,2090.621988,kg -65e37b47-3eb8-31ef-9918-421b5e7c7044,SESCO,II.1.1,Tucuman,AR-T,annual,2023,gas oil combustion consumption by to the public,536.05692,TJ,N2O,3.9,kg/TJ,2090.621988,kg -c37e0b43-e48b-3e32-9bd2-bf32d3a1f4d5,SESCO,II.1.1,Entre Rios,AR-E,annual,2023,jet kerosene combustion consumption by to the public,1.0379489999999998,TJ,CO2,71500.0,kg/TJ,74213.35349999998,kg -321721ef-42b1-303c-a944-720bd1d97ee2,SESCO,II.1.1,Entre Rios,AR-E,annual,2023,jet kerosene combustion consumption by to the public,1.0379489999999998,TJ,CH4,0.5,kg/TJ,0.5189744999999999,kg -3b3b0677-a6ac-31e1-a0a4-117fec1a1415,SESCO,II.1.1,Entre Rios,AR-E,annual,2023,jet kerosene combustion consumption by to the public,1.0379489999999998,TJ,N2O,2.0,kg/TJ,2.0758979999999996,kg -1e34c046-8dbd-3ad2-b344-7c9c1dc3947a,SESCO,I.3.1,Buenos Aires,AR-B,annual,2023,gasoline combustion consumption by petrochemical industries,15.504999999999999,TJ,CO2,69300.0,kg/TJ,1074496.5,kg -0ffbe952-ad06-3ea5-bad7-aa99ca8cde71,SESCO,I.3.1,Buenos Aires,AR-B,annual,2023,gasoline combustion consumption by petrochemical industries,15.504999999999999,TJ,CH4,33.0,kg/TJ,511.66499999999996,kg -ebaae276-412c-3a3b-84a6-841c5a6fd3f4,SESCO,I.3.1,Buenos Aires,AR-B,annual,2023,gasoline combustion consumption by petrochemical industries,15.504999999999999,TJ,N2O,3.2,kg/TJ,49.616,kg -d1ec0dbd-d30d-3221-bba6-25eea9ff6caf,SESCO,I.3.1,Capital Federal,AR-C,annual,2023,gasoline combustion consumption by petrochemical industries,11.7838,TJ,CO2,69300.0,kg/TJ,816617.34,kg -6258d49e-8f8f-34a1-9128-4a426bcea6a5,SESCO,I.3.1,Capital Federal,AR-C,annual,2023,gasoline combustion consumption by petrochemical industries,11.7838,TJ,CH4,33.0,kg/TJ,388.86539999999997,kg -77b7c2ff-c4c0-3b4c-822c-f61e78931800,SESCO,I.3.1,Capital Federal,AR-C,annual,2023,gasoline combustion consumption by petrochemical industries,11.7838,TJ,N2O,3.2,kg/TJ,37.70816,kg -69c42cde-bdcc-3f08-a7ba-3c9d2e2f73c5,SESCO,I.3.1,Córdoba,AR-X,annual,2023,gasoline combustion consumption by petrochemical industries,21.7956,TJ,CO2,69300.0,kg/TJ,1510435.08,kg -5615bc40-408a-3047-9e38-f99b1b936404,SESCO,I.3.1,Córdoba,AR-X,annual,2023,gasoline combustion consumption by petrochemical industries,21.7956,TJ,CH4,33.0,kg/TJ,719.2548,kg -7bcbe9fb-980e-3597-bc36-8e284823fcbe,SESCO,I.3.1,Córdoba,AR-X,annual,2023,gasoline combustion consumption by petrochemical industries,21.7956,TJ,N2O,3.2,kg/TJ,69.74592,kg -9c2ef8b4-db87-3a59-abbd-e0539c9296df,SESCO,I.3.1,Entre Rios,AR-E,annual,2023,gasoline combustion consumption by petrochemical industries,14.043099999999999,TJ,CO2,69300.0,kg/TJ,973186.83,kg -c47bc2b4-0f81-3860-bbce-f009bfd95000,SESCO,I.3.1,Entre Rios,AR-E,annual,2023,gasoline combustion consumption by petrochemical industries,14.043099999999999,TJ,CH4,33.0,kg/TJ,463.42229999999995,kg -86f3e364-44db-3e2f-b054-dbf95b8d8312,SESCO,I.3.1,Entre Rios,AR-E,annual,2023,gasoline combustion consumption by petrochemical industries,14.043099999999999,TJ,N2O,3.2,kg/TJ,44.93792,kg -8d4a8af3-b305-332c-9311-75af556f8234,SESCO,I.3.1,Misiones,AR-N,annual,2023,gasoline combustion consumption by petrochemical industries,50.059,TJ,CO2,69300.0,kg/TJ,3469088.6999999997,kg -3307f48b-a985-3af9-97f7-a7a915339fa9,SESCO,I.3.1,Misiones,AR-N,annual,2023,gasoline combustion consumption by petrochemical industries,50.059,TJ,CH4,33.0,kg/TJ,1651.947,kg -21b6bf15-2464-37aa-b22b-44be4b60d455,SESCO,I.3.1,Misiones,AR-N,annual,2023,gasoline combustion consumption by petrochemical industries,50.059,TJ,N2O,3.2,kg/TJ,160.18880000000001,kg -172dd75b-7117-3fbf-af5d-51895d063c28,SESCO,I.3.1,Neuquén,AR-Q,annual,2023,gasoline combustion consumption by petrochemical industries,7.1323,TJ,CO2,69300.0,kg/TJ,494268.39,kg -54c25f5c-fb23-3041-8dc4-31cfe9fa4b38,SESCO,I.3.1,Neuquén,AR-Q,annual,2023,gasoline combustion consumption by petrochemical industries,7.1323,TJ,CH4,33.0,kg/TJ,235.36589999999998,kg -07b07c5b-ea70-31d6-9fa1-d0f616fa8bfe,SESCO,I.3.1,Neuquén,AR-Q,annual,2023,gasoline combustion consumption by petrochemical industries,7.1323,TJ,N2O,3.2,kg/TJ,22.82336,kg -a376646d-e1fa-3314-be70-b434c496d8c2,SESCO,I.3.1,Santa Fe,AR-S,annual,2023,gasoline combustion consumption by petrochemical industries,30.8771,TJ,CO2,69300.0,kg/TJ,2139783.03,kg -6371cfd6-701e-3f6b-aafc-f3284c02f7e4,SESCO,I.3.1,Santa Fe,AR-S,annual,2023,gasoline combustion consumption by petrochemical industries,30.8771,TJ,CH4,33.0,kg/TJ,1018.9443,kg -0e421c55-b075-3b05-8a98-25ae0cf58682,SESCO,I.3.1,Santa Fe,AR-S,annual,2023,gasoline combustion consumption by petrochemical industries,30.8771,TJ,N2O,3.2,kg/TJ,98.80672,kg -aa866583-2325-3efa-829f-ae1a7038ae5f,SESCO,I.3.1,Buenos Aires,AR-B,annual,2023,gas oil combustion consumption by petrochemical industries,82.46196,TJ,CO2,74100.0,kg/TJ,6110431.2360000005,kg -3ae7a727-7722-396a-b983-7740bc16783e,SESCO,I.3.1,Buenos Aires,AR-B,annual,2023,gas oil combustion consumption by petrochemical industries,82.46196,TJ,CH4,3.9,kg/TJ,321.601644,kg -3ae7a727-7722-396a-b983-7740bc16783e,SESCO,I.3.1,Buenos Aires,AR-B,annual,2023,gas oil combustion consumption by petrochemical industries,82.46196,TJ,N2O,3.9,kg/TJ,321.601644,kg -b0a4daae-79f4-3410-822a-2e8e0be45772,SESCO,I.3.1,Córdoba,AR-X,annual,2023,gas oil combustion consumption by petrochemical industries,8.56044,TJ,CO2,74100.0,kg/TJ,634328.6039999999,kg -a8043948-3f4c-3450-a5f8-33d0a3528a91,SESCO,I.3.1,Córdoba,AR-X,annual,2023,gas oil combustion consumption by petrochemical industries,8.56044,TJ,CH4,3.9,kg/TJ,33.385715999999995,kg -a8043948-3f4c-3450-a5f8-33d0a3528a91,SESCO,I.3.1,Córdoba,AR-X,annual,2023,gas oil combustion consumption by petrochemical industries,8.56044,TJ,N2O,3.9,kg/TJ,33.385715999999995,kg -1789b9ed-ba28-3442-ae90-86914f72e73e,SESCO,I.3.1,Entre Rios,AR-E,annual,2023,gas oil combustion consumption by petrochemical industries,3.90096,TJ,CO2,74100.0,kg/TJ,289061.136,kg -ed9ebd9d-47de-3ef2-bf09-5e65c51945b9,SESCO,I.3.1,Entre Rios,AR-E,annual,2023,gas oil combustion consumption by petrochemical industries,3.90096,TJ,CH4,3.9,kg/TJ,15.213744,kg -ed9ebd9d-47de-3ef2-bf09-5e65c51945b9,SESCO,I.3.1,Entre Rios,AR-E,annual,2023,gas oil combustion consumption by petrochemical industries,3.90096,TJ,N2O,3.9,kg/TJ,15.213744,kg -ba23fda5-4bee-3373-b0ea-234c20ffee72,SESCO,I.3.1,Mendoza,AR-M,annual,2023,gas oil combustion consumption by petrochemical industries,5.09292,TJ,CO2,74100.0,kg/TJ,377385.37200000003,kg -42d1d119-f689-3b41-b22d-86ee57a83536,SESCO,I.3.1,Mendoza,AR-M,annual,2023,gas oil combustion consumption by petrochemical industries,5.09292,TJ,CH4,3.9,kg/TJ,19.862388,kg -42d1d119-f689-3b41-b22d-86ee57a83536,SESCO,I.3.1,Mendoza,AR-M,annual,2023,gas oil combustion consumption by petrochemical industries,5.09292,TJ,N2O,3.9,kg/TJ,19.862388,kg -0f187344-64fe-3a0e-9bae-3230a2f4e57d,SESCO,I.3.1,Misiones,AR-N,annual,2023,gas oil combustion consumption by petrochemical industries,7.5851999999999995,TJ,CO2,74100.0,kg/TJ,562063.32,kg -e00d4b10-77be-3449-b832-09b20520c524,SESCO,I.3.1,Misiones,AR-N,annual,2023,gas oil combustion consumption by petrochemical industries,7.5851999999999995,TJ,CH4,3.9,kg/TJ,29.582279999999997,kg -e00d4b10-77be-3449-b832-09b20520c524,SESCO,I.3.1,Misiones,AR-N,annual,2023,gas oil combustion consumption by petrochemical industries,7.5851999999999995,TJ,N2O,3.9,kg/TJ,29.582279999999997,kg -07a2b9e8-d847-3c6e-be32-f3910da5b65c,SESCO,I.3.1,Neuquén,AR-Q,annual,2023,gas oil combustion consumption by petrochemical industries,718.67964,TJ,CO2,74100.0,kg/TJ,53254161.32399999,kg -df8de260-3f3d-31ac-9e4a-7b69d89861ff,SESCO,I.3.1,Neuquén,AR-Q,annual,2023,gas oil combustion consumption by petrochemical industries,718.67964,TJ,CH4,3.9,kg/TJ,2802.8505959999998,kg -df8de260-3f3d-31ac-9e4a-7b69d89861ff,SESCO,I.3.1,Neuquén,AR-Q,annual,2023,gas oil combustion consumption by petrochemical industries,718.67964,TJ,N2O,3.9,kg/TJ,2802.8505959999998,kg -047b8428-b4b2-3eb0-b890-468fc8a7337d,SESCO,I.3.1,San Juan,AR-J,annual,2023,gas oil combustion consumption by petrochemical industries,7.87416,TJ,CO2,74100.0,kg/TJ,583475.2559999999,kg -fc83ac63-905f-30fe-8bd4-06b9ce05ddfb,SESCO,I.3.1,San Juan,AR-J,annual,2023,gas oil combustion consumption by petrochemical industries,7.87416,TJ,CH4,3.9,kg/TJ,30.709224,kg -fc83ac63-905f-30fe-8bd4-06b9ce05ddfb,SESCO,I.3.1,San Juan,AR-J,annual,2023,gas oil combustion consumption by petrochemical industries,7.87416,TJ,N2O,3.9,kg/TJ,30.709224,kg -bc4dfb81-4ac8-3192-bfa7-d4bf771df5a1,SESCO,I.3.1,Santa Fe,AR-S,annual,2023,gas oil combustion consumption by petrochemical industries,5.30964,TJ,CO2,74100.0,kg/TJ,393444.324,kg -74654c2a-b24a-3e2d-b360-a11c705ec009,SESCO,I.3.1,Santa Fe,AR-S,annual,2023,gas oil combustion consumption by petrochemical industries,5.30964,TJ,CH4,3.9,kg/TJ,20.707596,kg -74654c2a-b24a-3e2d-b360-a11c705ec009,SESCO,I.3.1,Santa Fe,AR-S,annual,2023,gas oil combustion consumption by petrochemical industries,5.30964,TJ,N2O,3.9,kg/TJ,20.707596,kg -3600e742-062b-3c2d-a996-b0ef7de5f169,SESCO,I.3.1,Buenos Aires,AR-B,annual,2023,gas oil combustion consumption by petrochemical industries,10.14972,TJ,CO2,74100.0,kg/TJ,752094.252,kg -2d1b4837-3d09-361b-9e45-67f319479ac2,SESCO,I.3.1,Buenos Aires,AR-B,annual,2023,gas oil combustion consumption by petrochemical industries,10.14972,TJ,CH4,3.9,kg/TJ,39.583908,kg -2d1b4837-3d09-361b-9e45-67f319479ac2,SESCO,I.3.1,Buenos Aires,AR-B,annual,2023,gas oil combustion consumption by petrochemical industries,10.14972,TJ,N2O,3.9,kg/TJ,39.583908,kg -402639a4-2404-31dc-bb9c-fa3c4f13bfd4,SESCO,I.3.1,Córdoba,AR-X,annual,2023,gas oil combustion consumption by petrochemical industries,0.57792,TJ,CO2,74100.0,kg/TJ,42823.871999999996,kg -ed305d67-c71c-3801-925f-9a14b1f0d47a,SESCO,I.3.1,Córdoba,AR-X,annual,2023,gas oil combustion consumption by petrochemical industries,0.57792,TJ,CH4,3.9,kg/TJ,2.253888,kg -ed305d67-c71c-3801-925f-9a14b1f0d47a,SESCO,I.3.1,Córdoba,AR-X,annual,2023,gas oil combustion consumption by petrochemical industries,0.57792,TJ,N2O,3.9,kg/TJ,2.253888,kg -509235b0-76c6-3111-889a-97fe9f1a8dc1,SESCO,I.3.1,Neuquén,AR-Q,annual,2023,gas oil combustion consumption by petrochemical industries,945.69384,TJ,CO2,74100.0,kg/TJ,70075913.544,kg -e1e62f40-c32a-3bec-aa01-da8487844e4b,SESCO,I.3.1,Neuquén,AR-Q,annual,2023,gas oil combustion consumption by petrochemical industries,945.69384,TJ,CH4,3.9,kg/TJ,3688.205976,kg -e1e62f40-c32a-3bec-aa01-da8487844e4b,SESCO,I.3.1,Neuquén,AR-Q,annual,2023,gas oil combustion consumption by petrochemical industries,945.69384,TJ,N2O,3.9,kg/TJ,3688.205976,kg -d30315e1-d545-3eee-9c05-ff3cd7892cee,SESCO,I.3.1,Santa Fe,AR-S,annual,2023,jet kerosene combustion consumption by petrochemical industries,2.20171,TJ,CO2,71500.0,kg/TJ,157422.26499999998,kg -970c5786-e232-3431-873b-16f0d667f124,SESCO,I.3.1,Santa Fe,AR-S,annual,2023,jet kerosene combustion consumption by petrochemical industries,2.20171,TJ,CH4,0.5,kg/TJ,1.100855,kg -60974e7c-fc2c-3ac5-87d9-5dcc0a1b05bd,SESCO,I.3.1,Santa Fe,AR-S,annual,2023,jet kerosene combustion consumption by petrochemical industries,2.20171,TJ,N2O,2.0,kg/TJ,4.40342,kg -c7f0c29f-8f77-3f2f-87db-a72cdf2db876,SESCO,II.2.1,Buenos Aires,AR-B,annual,2023,gas oil combustion consumption by railway transport,140.07336,TJ,CO2,74100.0,kg/TJ,10379435.976,kg -5240fadc-fb11-32fe-8159-76844843790f,SESCO,II.2.1,Buenos Aires,AR-B,annual,2023,gas oil combustion consumption by railway transport,140.07336,TJ,CH4,3.9,kg/TJ,546.286104,kg -5240fadc-fb11-32fe-8159-76844843790f,SESCO,II.2.1,Buenos Aires,AR-B,annual,2023,gas oil combustion consumption by railway transport,140.07336,TJ,N2O,3.9,kg/TJ,546.286104,kg -62afde42-3063-301e-85f1-4065eb644840,SESCO,II.1.1,Buenos Aires,AR-B,annual,2023,gasoline combustion consumption by freight transport,1.1961,TJ,CO2,69300.0,kg/TJ,82889.73,kg -786ebfd4-c51f-35df-9c5b-e8a871a86484,SESCO,II.1.1,Buenos Aires,AR-B,annual,2023,gasoline combustion consumption by freight transport,1.1961,TJ,CH4,33.0,kg/TJ,39.4713,kg -19a14e4d-1496-3233-be72-a0d23f54fa09,SESCO,II.1.1,Buenos Aires,AR-B,annual,2023,gasoline combustion consumption by freight transport,1.1961,TJ,N2O,3.2,kg/TJ,3.82752,kg -64494855-31b7-3c00-b78b-d67576679464,SESCO,II.1.1,Buenos Aires,AR-B,annual,2023,gas oil combustion consumption by freight transport,3.90096,TJ,CO2,74100.0,kg/TJ,289061.136,kg -4af3ae56-b4f5-3760-bf34-c0b7003b66c9,SESCO,II.1.1,Buenos Aires,AR-B,annual,2023,gas oil combustion consumption by freight transport,3.90096,TJ,CH4,3.9,kg/TJ,15.213744,kg -4af3ae56-b4f5-3760-bf34-c0b7003b66c9,SESCO,II.1.1,Buenos Aires,AR-B,annual,2023,gas oil combustion consumption by freight transport,3.90096,TJ,N2O,3.9,kg/TJ,15.213744,kg -a50b8522-09af-336b-b040-4564e26b2fbf,SESCO,II.1.1,Entre Rios,AR-E,annual,2023,gas oil combustion consumption by freight transport,15.60384,TJ,CO2,74100.0,kg/TJ,1156244.544,kg -1bc1d193-d309-3290-923a-a7c914c87195,SESCO,II.1.1,Entre Rios,AR-E,annual,2023,gas oil combustion consumption by freight transport,15.60384,TJ,CH4,3.9,kg/TJ,60.854976,kg -1bc1d193-d309-3290-923a-a7c914c87195,SESCO,II.1.1,Entre Rios,AR-E,annual,2023,gas oil combustion consumption by freight transport,15.60384,TJ,N2O,3.9,kg/TJ,60.854976,kg -e1663f3a-07e0-38aa-a8ee-461d90389c2a,SESCO,II.1.1,Buenos Aires,AR-B,annual,2023,gas oil combustion consumption by freight transport,2.78124,TJ,CO2,74100.0,kg/TJ,206089.884,kg -7313a014-e16d-333a-96ff-a7e82c55af01,SESCO,II.1.1,Buenos Aires,AR-B,annual,2023,gas oil combustion consumption by freight transport,2.78124,TJ,CH4,3.9,kg/TJ,10.846836,kg -7313a014-e16d-333a-96ff-a7e82c55af01,SESCO,II.1.1,Buenos Aires,AR-B,annual,2023,gas oil combustion consumption by freight transport,2.78124,TJ,N2O,3.9,kg/TJ,10.846836,kg -3d8ff9ac-50e3-3a4b-aa5b-1fad36431691,SESCO,II.1.1,Buenos Aires,AR-B,annual,2023,gas oil combustion consumption by public passenger transport,2707.84416,TJ,CO2,74100.0,kg/TJ,200651252.256,kg -5a3f3d52-f8d7-351f-a3d1-bd9df6d6a56d,SESCO,II.1.1,Buenos Aires,AR-B,annual,2023,gas oil combustion consumption by public passenger transport,2707.84416,TJ,CH4,3.9,kg/TJ,10560.592224,kg -5a3f3d52-f8d7-351f-a3d1-bd9df6d6a56d,SESCO,II.1.1,Buenos Aires,AR-B,annual,2023,gas oil combustion consumption by public passenger transport,2707.84416,TJ,N2O,3.9,kg/TJ,10560.592224,kg -3a48334f-faaa-3c1f-944b-1a77bc321c42,SESCO,II.1.1,Capital Federal,AR-C,annual,2023,gas oil combustion consumption by public passenger transport,141.37368,TJ,CO2,74100.0,kg/TJ,10475789.688000001,kg -9b9a49b1-d029-3601-af2f-1a62ab4ea9d5,SESCO,II.1.1,Capital Federal,AR-C,annual,2023,gas oil combustion consumption by public passenger transport,141.37368,TJ,CH4,3.9,kg/TJ,551.357352,kg -9b9a49b1-d029-3601-af2f-1a62ab4ea9d5,SESCO,II.1.1,Capital Federal,AR-C,annual,2023,gas oil combustion consumption by public passenger transport,141.37368,TJ,N2O,3.9,kg/TJ,551.357352,kg -9ab138d4-546f-33bc-8972-d411d127d675,SESCO,II.1.1,Corrientes,AR-W,annual,2023,gas oil combustion consumption by public passenger transport,0.57792,TJ,CO2,74100.0,kg/TJ,42823.871999999996,kg -4617c8f5-b0e3-39b3-b5f2-4b8d79287972,SESCO,II.1.1,Corrientes,AR-W,annual,2023,gas oil combustion consumption by public passenger transport,0.57792,TJ,CH4,3.9,kg/TJ,2.253888,kg -4617c8f5-b0e3-39b3-b5f2-4b8d79287972,SESCO,II.1.1,Corrientes,AR-W,annual,2023,gas oil combustion consumption by public passenger transport,0.57792,TJ,N2O,3.9,kg/TJ,2.253888,kg -1a8ecf0c-9d12-39b1-b506-a8425decb608,SESCO,II.1.1,Buenos Aires,AR-B,annual,2023,gas oil combustion consumption by public passenger transport,2397.06768,TJ,CO2,74100.0,kg/TJ,177622715.088,kg -4c3666a1-51df-31bb-8e5a-42eb2d6f1a42,SESCO,II.1.1,Buenos Aires,AR-B,annual,2023,gas oil combustion consumption by public passenger transport,2397.06768,TJ,CH4,3.9,kg/TJ,9348.563952,kg -4c3666a1-51df-31bb-8e5a-42eb2d6f1a42,SESCO,II.1.1,Buenos Aires,AR-B,annual,2023,gas oil combustion consumption by public passenger transport,2397.06768,TJ,N2O,3.9,kg/TJ,9348.563952,kg -578dbb22-85c4-355f-be5f-904f23a93015,SESCO,II.1.1,Capital Federal,AR-C,annual,2023,gas oil combustion consumption by public passenger transport,36.22836,TJ,CO2,74100.0,kg/TJ,2684521.4760000003,kg -e9d91f8c-66a1-3e2a-8871-dcb2f4e35929,SESCO,II.1.1,Capital Federal,AR-C,annual,2023,gas oil combustion consumption by public passenger transport,36.22836,TJ,CH4,3.9,kg/TJ,141.290604,kg -e9d91f8c-66a1-3e2a-8871-dcb2f4e35929,SESCO,II.1.1,Capital Federal,AR-C,annual,2023,gas oil combustion consumption by public passenger transport,36.22836,TJ,N2O,3.9,kg/TJ,141.290604,kg -6cf948d0-7bdc-325d-8efc-d45d1325ce93,SESCO,II.1.1,Corrientes,AR-W,annual,2023,gas oil combustion consumption by public passenger transport,43.45236,TJ,CO2,74100.0,kg/TJ,3219819.8759999997,kg -1e305462-7568-3265-86f1-ac8e74228731,SESCO,II.1.1,Corrientes,AR-W,annual,2023,gas oil combustion consumption by public passenger transport,43.45236,TJ,CH4,3.9,kg/TJ,169.464204,kg -1e305462-7568-3265-86f1-ac8e74228731,SESCO,II.1.1,Corrientes,AR-W,annual,2023,gas oil combustion consumption by public passenger transport,43.45236,TJ,N2O,3.9,kg/TJ,169.464204,kg -8063c84b-3419-3665-a9c6-07e4589f717a,SESCO,II.5.1,Buenos Aires,AR-B,annual,2023,gas oil combustion consumption by agriculture machines,2761.7173567199998,TJ,CO2,74100.0,kg/TJ,204643256.13295197,kg -ec3860e2-e26f-323c-bb4e-eecef314b8fa,SESCO,II.5.1,Buenos Aires,AR-B,annual,2023,gas oil combustion consumption by agriculture machines,2761.7173567199998,TJ,CH4,3.9,kg/TJ,10770.697691207999,kg -ec3860e2-e26f-323c-bb4e-eecef314b8fa,SESCO,II.5.1,Buenos Aires,AR-B,annual,2023,gas oil combustion consumption by agriculture machines,2761.7173567199998,TJ,N2O,3.9,kg/TJ,10770.697691207999,kg -d20a25fa-13ca-3995-b5a5-0d90130d7cee,SESCO,II.5.1,Capital Federal,AR-C,annual,2023,gas oil combustion consumption by agriculture machines,207.4935072,TJ,CO2,74100.0,kg/TJ,15375268.883520002,kg -c3858901-00e6-38ff-a638-01ebd35edbe5,SESCO,II.5.1,Capital Federal,AR-C,annual,2023,gas oil combustion consumption by agriculture machines,207.4935072,TJ,CH4,3.9,kg/TJ,809.22467808,kg -c3858901-00e6-38ff-a638-01ebd35edbe5,SESCO,II.5.1,Capital Federal,AR-C,annual,2023,gas oil combustion consumption by agriculture machines,207.4935072,TJ,N2O,3.9,kg/TJ,809.22467808,kg -2754051c-023f-3051-94b9-f2aad0cb36ed,SESCO,II.5.1,Córdoba,AR-X,annual,2023,gas oil combustion consumption by agriculture machines,1519.1913072,TJ,CO2,74100.0,kg/TJ,112572075.86352,kg -4096e805-5f7d-3dbb-8bcf-e46ca8ec79f6,SESCO,II.5.1,Córdoba,AR-X,annual,2023,gas oil combustion consumption by agriculture machines,1519.1913072,TJ,CH4,3.9,kg/TJ,5924.84609808,kg -4096e805-5f7d-3dbb-8bcf-e46ca8ec79f6,SESCO,II.5.1,Córdoba,AR-X,annual,2023,gas oil combustion consumption by agriculture machines,1519.1913072,TJ,N2O,3.9,kg/TJ,5924.84609808,kg -b5127e93-fe55-3bd4-a767-b29b4e3e45ed,SESCO,II.5.1,Entre Rios,AR-E,annual,2023,gas oil combustion consumption by agriculture machines,415.32390564,TJ,CO2,74100.0,kg/TJ,30775501.407924,kg -e3cf4510-b439-34b4-8e0e-4dfb7f0532a5,SESCO,II.5.1,Entre Rios,AR-E,annual,2023,gas oil combustion consumption by agriculture machines,415.32390564,TJ,CH4,3.9,kg/TJ,1619.763231996,kg -e3cf4510-b439-34b4-8e0e-4dfb7f0532a5,SESCO,II.5.1,Entre Rios,AR-E,annual,2023,gas oil combustion consumption by agriculture machines,415.32390564,TJ,N2O,3.9,kg/TJ,1619.763231996,kg -884f2c09-38f2-3a44-9c02-395a897f865d,SESCO,II.5.1,Jujuy,AR-Y,annual,2023,gas oil combustion consumption by agriculture machines,5.06236248,TJ,CO2,74100.0,kg/TJ,375121.059768,kg -a1c3bbdc-bfe6-33a4-af76-71e9ab5a1ca3,SESCO,II.5.1,Jujuy,AR-Y,annual,2023,gas oil combustion consumption by agriculture machines,5.06236248,TJ,CH4,3.9,kg/TJ,19.743213672,kg -a1c3bbdc-bfe6-33a4-af76-71e9ab5a1ca3,SESCO,II.5.1,Jujuy,AR-Y,annual,2023,gas oil combustion consumption by agriculture machines,5.06236248,TJ,N2O,3.9,kg/TJ,19.743213672,kg -1ad2cda7-1f0c-3a86-84fb-31949b145039,SESCO,II.5.1,La Pampa,AR-L,annual,2023,gas oil combustion consumption by agriculture machines,229.78323144,TJ,CO2,74100.0,kg/TJ,17026937.449704,kg -ff9c92c7-7e4c-3194-9d76-4ecf26639a31,SESCO,II.5.1,La Pampa,AR-L,annual,2023,gas oil combustion consumption by agriculture machines,229.78323144,TJ,CH4,3.9,kg/TJ,896.154602616,kg -ff9c92c7-7e4c-3194-9d76-4ecf26639a31,SESCO,II.5.1,La Pampa,AR-L,annual,2023,gas oil combustion consumption by agriculture machines,229.78323144,TJ,N2O,3.9,kg/TJ,896.154602616,kg -9ca78019-9bfb-399a-963f-1a4bba1c03ec,SESCO,II.5.1,Rio Negro,AR-R,annual,2023,gas oil combustion consumption by agriculture machines,156.66193956,TJ,CO2,74100.0,kg/TJ,11608649.721396001,kg -b1343d37-53a1-38a6-a1ab-bd778d041313,SESCO,II.5.1,Rio Negro,AR-R,annual,2023,gas oil combustion consumption by agriculture machines,156.66193956,TJ,CH4,3.9,kg/TJ,610.981564284,kg -b1343d37-53a1-38a6-a1ab-bd778d041313,SESCO,II.5.1,Rio Negro,AR-R,annual,2023,gas oil combustion consumption by agriculture machines,156.66193956,TJ,N2O,3.9,kg/TJ,610.981564284,kg -0a7ad109-98c2-36a5-ae6b-77ea4adb2886,SESCO,II.5.1,San Luis,AR-D,annual,2023,gas oil combustion consumption by agriculture machines,16.861899599999997,TJ,CO2,74100.0,kg/TJ,1249466.7603599997,kg -73349210-acb7-3421-aa7f-9c5879d48834,SESCO,II.5.1,San Luis,AR-D,annual,2023,gas oil combustion consumption by agriculture machines,16.861899599999997,TJ,CH4,3.9,kg/TJ,65.76140843999998,kg -73349210-acb7-3421-aa7f-9c5879d48834,SESCO,II.5.1,San Luis,AR-D,annual,2023,gas oil combustion consumption by agriculture machines,16.861899599999997,TJ,N2O,3.9,kg/TJ,65.76140843999998,kg -66871ea4-e9a8-3ffb-934a-c756e4f35dfd,SESCO,II.5.1,Santa Fe,AR-S,annual,2023,gas oil combustion consumption by agriculture machines,3773.36274084,TJ,CO2,74100.0,kg/TJ,279606179.096244,kg -b9bffbe5-d161-35c9-a7d8-eea119448468,SESCO,II.5.1,Santa Fe,AR-S,annual,2023,gas oil combustion consumption by agriculture machines,3773.36274084,TJ,CH4,3.9,kg/TJ,14716.114689275999,kg -b9bffbe5-d161-35c9-a7d8-eea119448468,SESCO,II.5.1,Santa Fe,AR-S,annual,2023,gas oil combustion consumption by agriculture machines,3773.36274084,TJ,N2O,3.9,kg/TJ,14716.114689275999,kg -110523e4-6b1d-30c0-a77f-ba5f830fa79e,SESCO,II.5.1,Santiago del Estero,AR-G,annual,2023,gas oil combustion consumption by agriculture machines,108.144183,TJ,CO2,74100.0,kg/TJ,8013483.960299999,kg -b63db65e-5db5-3920-b78f-2199bb53c9bc,SESCO,II.5.1,Santiago del Estero,AR-G,annual,2023,gas oil combustion consumption by agriculture machines,108.144183,TJ,CH4,3.9,kg/TJ,421.7623137,kg -b63db65e-5db5-3920-b78f-2199bb53c9bc,SESCO,II.5.1,Santiago del Estero,AR-G,annual,2023,gas oil combustion consumption by agriculture machines,108.144183,TJ,N2O,3.9,kg/TJ,421.7623137,kg -1bc9f96c-afb4-3a69-80f2-217f57121efc,SESCO,II.5.1,Tucuman,AR-T,annual,2023,gas oil combustion consumption by agriculture machines,56.525849519999994,TJ,CO2,74100.0,kg/TJ,4188565.4494319996,kg -6e250afe-6dc8-34cd-a4f0-76e3ca137aa5,SESCO,II.5.1,Tucuman,AR-T,annual,2023,gas oil combustion consumption by agriculture machines,56.525849519999994,TJ,CH4,3.9,kg/TJ,220.45081312799996,kg -6e250afe-6dc8-34cd-a4f0-76e3ca137aa5,SESCO,II.5.1,Tucuman,AR-T,annual,2023,gas oil combustion consumption by agriculture machines,56.525849519999994,TJ,N2O,3.9,kg/TJ,220.45081312799996,kg -6023ec96-21f8-3ada-be77-ffb4667e6f9b,SESCO,II.5.1,Buenos Aires,AR-B,annual,2023,gas oil combustion consumption by agriculture machines,151.70728692,TJ,CO2,74100.0,kg/TJ,11241509.960772,kg -7fadf842-9b45-30c6-a81a-169f2b6e7539,SESCO,II.5.1,Buenos Aires,AR-B,annual,2023,gas oil combustion consumption by agriculture machines,151.70728692,TJ,CH4,3.9,kg/TJ,591.658418988,kg -7fadf842-9b45-30c6-a81a-169f2b6e7539,SESCO,II.5.1,Buenos Aires,AR-B,annual,2023,gas oil combustion consumption by agriculture machines,151.70728692,TJ,N2O,3.9,kg/TJ,591.658418988,kg -74467e28-9747-35ef-93e3-e88462300c3a,SESCO,II.5.1,Capital Federal,AR-C,annual,2023,gas oil combustion consumption by agriculture machines,21.19308492,TJ,CO2,74100.0,kg/TJ,1570407.592572,kg -ffa5b623-2ed3-33db-879d-e263bbb5997f,SESCO,II.5.1,Capital Federal,AR-C,annual,2023,gas oil combustion consumption by agriculture machines,21.19308492,TJ,CH4,3.9,kg/TJ,82.653031188,kg -ffa5b623-2ed3-33db-879d-e263bbb5997f,SESCO,II.5.1,Capital Federal,AR-C,annual,2023,gas oil combustion consumption by agriculture machines,21.19308492,TJ,N2O,3.9,kg/TJ,82.653031188,kg -71b0aeb4-0950-3d8f-a031-03e8486548db,SESCO,II.5.1,Córdoba,AR-X,annual,2023,gas oil combustion consumption by agriculture machines,54.02266128,TJ,CO2,74100.0,kg/TJ,4003079.200848,kg -46b49caa-5849-36d0-bf7e-a3eda693418a,SESCO,II.5.1,Córdoba,AR-X,annual,2023,gas oil combustion consumption by agriculture machines,54.02266128,TJ,CH4,3.9,kg/TJ,210.688378992,kg -46b49caa-5849-36d0-bf7e-a3eda693418a,SESCO,II.5.1,Córdoba,AR-X,annual,2023,gas oil combustion consumption by agriculture machines,54.02266128,TJ,N2O,3.9,kg/TJ,210.688378992,kg -8b5d2fcf-329f-3518-881d-55df6145d7a7,SESCO,II.5.1,Entre Rios,AR-E,annual,2023,gas oil combustion consumption by agriculture machines,34.52858892,TJ,CO2,74100.0,kg/TJ,2558568.4389719996,kg -924d6385-5f3c-399e-85ad-de697e7b5001,SESCO,II.5.1,Entre Rios,AR-E,annual,2023,gas oil combustion consumption by agriculture machines,34.52858892,TJ,CH4,3.9,kg/TJ,134.661496788,kg -924d6385-5f3c-399e-85ad-de697e7b5001,SESCO,II.5.1,Entre Rios,AR-E,annual,2023,gas oil combustion consumption by agriculture machines,34.52858892,TJ,N2O,3.9,kg/TJ,134.661496788,kg -16c6b80d-38c6-37dd-85b3-e683c9be49bb,SESCO,II.5.1,Jujuy,AR-Y,annual,2023,gas oil combustion consumption by agriculture machines,33.1316118,TJ,CO2,74100.0,kg/TJ,2455052.43438,kg -46d6a79f-e40f-32bb-be91-7f038c0c3f3e,SESCO,II.5.1,Jujuy,AR-Y,annual,2023,gas oil combustion consumption by agriculture machines,33.1316118,TJ,CH4,3.9,kg/TJ,129.21328602,kg -46d6a79f-e40f-32bb-be91-7f038c0c3f3e,SESCO,II.5.1,Jujuy,AR-Y,annual,2023,gas oil combustion consumption by agriculture machines,33.1316118,TJ,N2O,3.9,kg/TJ,129.21328602,kg -564b9f56-f56a-3ea0-8bae-7bc7e0023df3,SESCO,II.5.1,La Pampa,AR-L,annual,2023,gas oil combustion consumption by agriculture machines,10.0326912,TJ,CO2,74100.0,kg/TJ,743422.41792,kg -31d12cc6-7e9b-3697-84a8-e828b7f8e622,SESCO,II.5.1,La Pampa,AR-L,annual,2023,gas oil combustion consumption by agriculture machines,10.0326912,TJ,CH4,3.9,kg/TJ,39.12749568,kg -31d12cc6-7e9b-3697-84a8-e828b7f8e622,SESCO,II.5.1,La Pampa,AR-L,annual,2023,gas oil combustion consumption by agriculture machines,10.0326912,TJ,N2O,3.9,kg/TJ,39.12749568,kg -2e0eb131-972d-30ec-aafd-63ae85839dad,SESCO,II.5.1,Rio Negro,AR-R,annual,2023,gas oil combustion consumption by agriculture machines,237.68408412,TJ,CO2,74100.0,kg/TJ,17612390.633292,kg -b71aa281-1ce4-39aa-a70d-fdf87fc65dcc,SESCO,II.5.1,Rio Negro,AR-R,annual,2023,gas oil combustion consumption by agriculture machines,237.68408412,TJ,CH4,3.9,kg/TJ,926.967928068,kg -b71aa281-1ce4-39aa-a70d-fdf87fc65dcc,SESCO,II.5.1,Rio Negro,AR-R,annual,2023,gas oil combustion consumption by agriculture machines,237.68408412,TJ,N2O,3.9,kg/TJ,926.967928068,kg -8765ebd3-b6e6-36df-8bd0-2327d8c46efc,SESCO,II.5.1,San Luis,AR-D,annual,2023,gas oil combustion consumption by agriculture machines,3.7010358,TJ,CO2,74100.0,kg/TJ,274246.75278,kg -f8ec632e-fab5-3758-9add-365cfb40a220,SESCO,II.5.1,San Luis,AR-D,annual,2023,gas oil combustion consumption by agriculture machines,3.7010358,TJ,CH4,3.9,kg/TJ,14.43403962,kg -f8ec632e-fab5-3758-9add-365cfb40a220,SESCO,II.5.1,San Luis,AR-D,annual,2023,gas oil combustion consumption by agriculture machines,3.7010358,TJ,N2O,3.9,kg/TJ,14.43403962,kg -1e64b400-61d6-388a-9b63-bbe00aa069e0,SESCO,II.5.1,Santa Fe,AR-S,annual,2023,gas oil combustion consumption by agriculture machines,174.20462891999998,TJ,CO2,74100.0,kg/TJ,12908563.002971997,kg -2dd35e43-5f37-3c0b-bdc7-25589d6317d2,SESCO,II.5.1,Santa Fe,AR-S,annual,2023,gas oil combustion consumption by agriculture machines,174.20462891999998,TJ,CH4,3.9,kg/TJ,679.3980527879999,kg -2dd35e43-5f37-3c0b-bdc7-25589d6317d2,SESCO,II.5.1,Santa Fe,AR-S,annual,2023,gas oil combustion consumption by agriculture machines,174.20462891999998,TJ,N2O,3.9,kg/TJ,679.3980527879999,kg -e655b8a0-5976-307c-890a-d4c7f460ac9c,SESCO,II.5.1,Santiago del Estero,AR-G,annual,2023,gas oil combustion consumption by agriculture machines,2.61465456,TJ,CO2,74100.0,kg/TJ,193745.90289599999,kg -b5a2c5e6-c604-3cbf-b3da-c92886204c85,SESCO,II.5.1,Santiago del Estero,AR-G,annual,2023,gas oil combustion consumption by agriculture machines,2.61465456,TJ,CH4,3.9,kg/TJ,10.197152784,kg -b5a2c5e6-c604-3cbf-b3da-c92886204c85,SESCO,II.5.1,Santiago del Estero,AR-G,annual,2023,gas oil combustion consumption by agriculture machines,2.61465456,TJ,N2O,3.9,kg/TJ,10.197152784,kg -cc5d8f9f-f2b2-3e9c-b125-797bc02f8df6,SESCO,II.5.1,Tucuman,AR-T,annual,2023,gas oil combustion consumption by agriculture machines,0.6075384,TJ,CO2,74100.0,kg/TJ,45018.595440000005,kg -8c0d57dc-c91a-3cb9-a7f7-cd3d8d135a23,SESCO,II.5.1,Tucuman,AR-T,annual,2023,gas oil combustion consumption by agriculture machines,0.6075384,TJ,CH4,3.9,kg/TJ,2.3693997600000003,kg -8c0d57dc-c91a-3cb9-a7f7-cd3d8d135a23,SESCO,II.5.1,Tucuman,AR-T,annual,2023,gas oil combustion consumption by agriculture machines,0.6075384,TJ,N2O,3.9,kg/TJ,2.3693997600000003,kg -ff344f6a-ed11-33f6-aafb-5f71709ed85a,SESCO,II.1.1,Buenos Aires,AR-B,annual,2023,gas oil combustion consumption by to the public,7798.27188,TJ,CO2,74100.0,kg/TJ,577851946.308,kg -2c8da0ed-2379-3cf5-a139-290405305fa6,SESCO,II.1.1,Buenos Aires,AR-B,annual,2023,gas oil combustion consumption by to the public,7798.27188,TJ,CH4,3.9,kg/TJ,30413.260332,kg -2c8da0ed-2379-3cf5-a139-290405305fa6,SESCO,II.1.1,Buenos Aires,AR-B,annual,2023,gas oil combustion consumption by to the public,7798.27188,TJ,N2O,3.9,kg/TJ,30413.260332,kg -f81d6485-3231-3d4c-bda3-24c4d064bd1d,SESCO,II.1.1,Capital Federal,AR-C,annual,2023,gas oil combustion consumption by to the public,326.38032,TJ,CO2,74100.0,kg/TJ,24184781.711999997,kg -997e1e78-44d6-398d-8a1f-52869cea78c6,SESCO,II.1.1,Capital Federal,AR-C,annual,2023,gas oil combustion consumption by to the public,326.38032,TJ,CH4,3.9,kg/TJ,1272.8832479999999,kg -997e1e78-44d6-398d-8a1f-52869cea78c6,SESCO,II.1.1,Capital Federal,AR-C,annual,2023,gas oil combustion consumption by to the public,326.38032,TJ,N2O,3.9,kg/TJ,1272.8832479999999,kg -01f15c7e-39b3-33bf-882b-668edfe6384b,SESCO,II.1.1,Chaco,AR-H,annual,2023,gas oil combustion consumption by to the public,59.16000888,TJ,CO2,74100.0,kg/TJ,4383756.658008,kg -79254552-02a6-3640-8f46-58d5b39403d2,SESCO,II.1.1,Chaco,AR-H,annual,2023,gas oil combustion consumption by to the public,59.16000888,TJ,CH4,3.9,kg/TJ,230.72403463199998,kg -79254552-02a6-3640-8f46-58d5b39403d2,SESCO,II.1.1,Chaco,AR-H,annual,2023,gas oil combustion consumption by to the public,59.16000888,TJ,N2O,3.9,kg/TJ,230.72403463199998,kg -ba426ba8-71f6-3ce1-b115-66e0f5c395e8,SESCO,II.1.1,Chubut,AR-U,annual,2023,gas oil combustion consumption by to the public,321.98296283999997,TJ,CO2,74100.0,kg/TJ,23858937.546444,kg -b26fd329-e398-32c9-a251-510f3645ff7a,SESCO,II.1.1,Chubut,AR-U,annual,2023,gas oil combustion consumption by to the public,321.98296283999997,TJ,CH4,3.9,kg/TJ,1255.733555076,kg -b26fd329-e398-32c9-a251-510f3645ff7a,SESCO,II.1.1,Chubut,AR-U,annual,2023,gas oil combustion consumption by to the public,321.98296283999997,TJ,N2O,3.9,kg/TJ,1255.733555076,kg -300ae216-d6e6-36c5-87cd-efcbde81913c,SESCO,II.1.1,Corrientes,AR-W,annual,2023,gas oil combustion consumption by to the public,963.59458692,TJ,CO2,74100.0,kg/TJ,71402358.890772,kg -82398ae5-8b7b-38e2-8bed-182487efdfdd,SESCO,II.1.1,Corrientes,AR-W,annual,2023,gas oil combustion consumption by to the public,963.59458692,TJ,CH4,3.9,kg/TJ,3758.018888988,kg -82398ae5-8b7b-38e2-8bed-182487efdfdd,SESCO,II.1.1,Corrientes,AR-W,annual,2023,gas oil combustion consumption by to the public,963.59458692,TJ,N2O,3.9,kg/TJ,3758.018888988,kg -be3196c4-cb84-3383-9c4d-85dbf36c110f,SESCO,II.1.1,Córdoba,AR-X,annual,2023,gas oil combustion consumption by to the public,1539.49721268,TJ,CO2,74100.0,kg/TJ,114076743.459588,kg -afad56b9-0935-304d-8e48-915d9b6e833f,SESCO,II.1.1,Córdoba,AR-X,annual,2023,gas oil combustion consumption by to the public,1539.49721268,TJ,CH4,3.9,kg/TJ,6004.039129452,kg -afad56b9-0935-304d-8e48-915d9b6e833f,SESCO,II.1.1,Córdoba,AR-X,annual,2023,gas oil combustion consumption by to the public,1539.49721268,TJ,N2O,3.9,kg/TJ,6004.039129452,kg -3455a610-406e-3ea4-abb9-77eda3c0d541,SESCO,II.1.1,Entre Rios,AR-E,annual,2023,gas oil combustion consumption by to the public,1670.9445387600001,TJ,CO2,74100.0,kg/TJ,123816990.322116,kg -265edbc9-325a-303a-a920-f5bb8ea308d9,SESCO,II.1.1,Entre Rios,AR-E,annual,2023,gas oil combustion consumption by to the public,1670.9445387600001,TJ,CH4,3.9,kg/TJ,6516.683701164,kg -265edbc9-325a-303a-a920-f5bb8ea308d9,SESCO,II.1.1,Entre Rios,AR-E,annual,2023,gas oil combustion consumption by to the public,1670.9445387600001,TJ,N2O,3.9,kg/TJ,6516.683701164,kg -d6790c02-4ba5-3d3a-8720-93d3bc00aae7,SESCO,II.1.1,Jujuy,AR-Y,annual,2023,gas oil combustion consumption by to the public,32.574749759999996,TJ,CO2,74100.0,kg/TJ,2413788.9572159997,kg -f354bb5e-d88c-310a-afc4-af8919c3d3ea,SESCO,II.1.1,Jujuy,AR-Y,annual,2023,gas oil combustion consumption by to the public,32.574749759999996,TJ,CH4,3.9,kg/TJ,127.04152406399999,kg -f354bb5e-d88c-310a-afc4-af8919c3d3ea,SESCO,II.1.1,Jujuy,AR-Y,annual,2023,gas oil combustion consumption by to the public,32.574749759999996,TJ,N2O,3.9,kg/TJ,127.04152406399999,kg -3d2a5c2f-7967-3db2-89eb-fcc362cf28e4,SESCO,II.1.1,La Pampa,AR-L,annual,2023,gas oil combustion consumption by to the public,988.71138744,TJ,CO2,74100.0,kg/TJ,73263513.809304,kg -4a01f516-6f75-330d-a12a-12a9c61b321e,SESCO,II.1.1,La Pampa,AR-L,annual,2023,gas oil combustion consumption by to the public,988.71138744,TJ,CH4,3.9,kg/TJ,3855.9744110159995,kg -4a01f516-6f75-330d-a12a-12a9c61b321e,SESCO,II.1.1,La Pampa,AR-L,annual,2023,gas oil combustion consumption by to the public,988.71138744,TJ,N2O,3.9,kg/TJ,3855.9744110159995,kg -675820d1-6e57-3ba9-bc34-6854aea61569,SESCO,II.1.1,Mendoza,AR-M,annual,2023,gas oil combustion consumption by to the public,134.73269292,TJ,CO2,74100.0,kg/TJ,9983692.545372,kg -de963634-b822-31db-aee0-f2ce4ef4b50c,SESCO,II.1.1,Mendoza,AR-M,annual,2023,gas oil combustion consumption by to the public,134.73269292,TJ,CH4,3.9,kg/TJ,525.457502388,kg -de963634-b822-31db-aee0-f2ce4ef4b50c,SESCO,II.1.1,Mendoza,AR-M,annual,2023,gas oil combustion consumption by to the public,134.73269292,TJ,N2O,3.9,kg/TJ,525.457502388,kg -f50a3d52-ae7f-3e10-afe9-9809dbed3613,SESCO,II.1.1,Neuquén,AR-Q,annual,2023,gas oil combustion consumption by to the public,237.52869588000001,TJ,CO2,74100.0,kg/TJ,17600876.364708003,kg -b587a93d-bf3c-3598-b0ec-61619badc7b0,SESCO,II.1.1,Neuquén,AR-Q,annual,2023,gas oil combustion consumption by to the public,237.52869588000001,TJ,CH4,3.9,kg/TJ,926.361913932,kg -b587a93d-bf3c-3598-b0ec-61619badc7b0,SESCO,II.1.1,Neuquén,AR-Q,annual,2023,gas oil combustion consumption by to the public,237.52869588000001,TJ,N2O,3.9,kg/TJ,926.361913932,kg -990cf2aa-153f-3e66-bdd0-d139c8672f96,SESCO,II.1.1,Rio Negro,AR-R,annual,2023,gas oil combustion consumption by to the public,873.9140088,TJ,CO2,74100.0,kg/TJ,64757028.052080005,kg -b20b26dd-5085-38a1-aa75-d52a92f283b0,SESCO,II.1.1,Rio Negro,AR-R,annual,2023,gas oil combustion consumption by to the public,873.9140088,TJ,CH4,3.9,kg/TJ,3408.26463432,kg -b20b26dd-5085-38a1-aa75-d52a92f283b0,SESCO,II.1.1,Rio Negro,AR-R,annual,2023,gas oil combustion consumption by to the public,873.9140088,TJ,N2O,3.9,kg/TJ,3408.26463432,kg -b55edba9-025a-30f0-8ff6-f5b1627f71d6,SESCO,II.1.1,San Juan,AR-J,annual,2023,gas oil combustion consumption by to the public,206.30530367999998,TJ,CO2,74100.0,kg/TJ,15287223.002687998,kg -d29b3d7d-0421-3ff6-a4bd-b50f692515ea,SESCO,II.1.1,San Juan,AR-J,annual,2023,gas oil combustion consumption by to the public,206.30530367999998,TJ,CH4,3.9,kg/TJ,804.5906843519999,kg -d29b3d7d-0421-3ff6-a4bd-b50f692515ea,SESCO,II.1.1,San Juan,AR-J,annual,2023,gas oil combustion consumption by to the public,206.30530367999998,TJ,N2O,3.9,kg/TJ,804.5906843519999,kg -59afe737-c288-3935-970d-89cecee9d9b3,SESCO,II.1.1,San Luis,AR-D,annual,2023,gas oil combustion consumption by to the public,87.39970848,TJ,CO2,74100.0,kg/TJ,6476318.398368,kg -9c45a090-7329-303e-91c3-5539943efc8c,SESCO,II.1.1,San Luis,AR-D,annual,2023,gas oil combustion consumption by to the public,87.39970848,TJ,CH4,3.9,kg/TJ,340.858863072,kg -9c45a090-7329-303e-91c3-5539943efc8c,SESCO,II.1.1,San Luis,AR-D,annual,2023,gas oil combustion consumption by to the public,87.39970848,TJ,N2O,3.9,kg/TJ,340.858863072,kg -55ee608c-9eae-3acc-89bf-fb628a283aae,SESCO,II.1.1,Santa Fe,AR-S,annual,2023,gas oil combustion consumption by to the public,1958.11544292,TJ,CO2,74100.0,kg/TJ,145096354.32037202,kg -6a8eef39-d725-3084-b26d-8c97c57cfcb1,SESCO,II.1.1,Santa Fe,AR-S,annual,2023,gas oil combustion consumption by to the public,1958.11544292,TJ,CH4,3.9,kg/TJ,7636.6502273880005,kg -6a8eef39-d725-3084-b26d-8c97c57cfcb1,SESCO,II.1.1,Santa Fe,AR-S,annual,2023,gas oil combustion consumption by to the public,1958.11544292,TJ,N2O,3.9,kg/TJ,7636.6502273880005,kg -0af7bb23-4b1a-3033-baa2-4323be756c7f,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2023,gas oil combustion consumption by to the public,423.99404208,TJ,CO2,74100.0,kg/TJ,31417958.518128,kg -f3260384-659f-391f-9d02-579a175ed138,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2023,gas oil combustion consumption by to the public,423.99404208,TJ,CH4,3.9,kg/TJ,1653.5767641119999,kg -f3260384-659f-391f-9d02-579a175ed138,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2023,gas oil combustion consumption by to the public,423.99404208,TJ,N2O,3.9,kg/TJ,1653.5767641119999,kg -9222a399-c7df-3343-aa95-d87d8a01ce06,SESCO,II.1.1,Tucuman,AR-T,annual,2023,gas oil combustion consumption by to the public,14.11071144,TJ,CO2,74100.0,kg/TJ,1045603.717704,kg -a6aadd86-55f3-3b3b-bb6d-d61853757e4d,SESCO,II.1.1,Tucuman,AR-T,annual,2023,gas oil combustion consumption by to the public,14.11071144,TJ,CH4,3.9,kg/TJ,55.03177461599999,kg -a6aadd86-55f3-3b3b-bb6d-d61853757e4d,SESCO,II.1.1,Tucuman,AR-T,annual,2023,gas oil combustion consumption by to the public,14.11071144,TJ,N2O,3.9,kg/TJ,55.03177461599999,kg -d9a424e9-f954-338e-9ce1-9f54c4e42d22,SESCO,II.1.1,Buenos Aires,AR-B,annual,2023,gas oil combustion consumption by to the public,1801.7846515200001,TJ,CO2,74100.0,kg/TJ,133512242.677632,kg -5f26ec3a-7f5b-3702-b7e2-e25badf67ada,SESCO,II.1.1,Buenos Aires,AR-B,annual,2023,gas oil combustion consumption by to the public,1801.7846515200001,TJ,CH4,3.9,kg/TJ,7026.960140928,kg -5f26ec3a-7f5b-3702-b7e2-e25badf67ada,SESCO,II.1.1,Buenos Aires,AR-B,annual,2023,gas oil combustion consumption by to the public,1801.7846515200001,TJ,N2O,3.9,kg/TJ,7026.960140928,kg -84decc4d-b831-3514-9c65-64c526fdc882,SESCO,II.1.1,Capital Federal,AR-C,annual,2023,gas oil combustion consumption by to the public,51.44687183999999,TJ,CO2,74100.0,kg/TJ,3812213.2033439996,kg -cccd7dae-73db-3ab5-a8e1-b6d1b4136b01,SESCO,II.1.1,Capital Federal,AR-C,annual,2023,gas oil combustion consumption by to the public,51.44687183999999,TJ,CH4,3.9,kg/TJ,200.64280017599998,kg -cccd7dae-73db-3ab5-a8e1-b6d1b4136b01,SESCO,II.1.1,Capital Federal,AR-C,annual,2023,gas oil combustion consumption by to the public,51.44687183999999,TJ,N2O,3.9,kg/TJ,200.64280017599998,kg -4d0b413d-e0a9-3e68-b221-9d52d1f72189,SESCO,II.1.1,Chaco,AR-H,annual,2023,gas oil combustion consumption by to the public,25.383944040000003,TJ,CO2,74100.0,kg/TJ,1880950.2533640002,kg -1c4ab24a-e4b9-321d-8a94-9363b0049e37,SESCO,II.1.1,Chaco,AR-H,annual,2023,gas oil combustion consumption by to the public,25.383944040000003,TJ,CH4,3.9,kg/TJ,98.99738175600001,kg -1c4ab24a-e4b9-321d-8a94-9363b0049e37,SESCO,II.1.1,Chaco,AR-H,annual,2023,gas oil combustion consumption by to the public,25.383944040000003,TJ,N2O,3.9,kg/TJ,98.99738175600001,kg -54a55bc5-df95-30df-ad75-df926dcbc816,SESCO,II.1.1,Chubut,AR-U,annual,2023,gas oil combustion consumption by to the public,269.84833008,TJ,CO2,74100.0,kg/TJ,19995761.258927997,kg -763a9844-f007-352d-99b6-274f4823fb0b,SESCO,II.1.1,Chubut,AR-U,annual,2023,gas oil combustion consumption by to the public,269.84833008,TJ,CH4,3.9,kg/TJ,1052.4084873119998,kg -763a9844-f007-352d-99b6-274f4823fb0b,SESCO,II.1.1,Chubut,AR-U,annual,2023,gas oil combustion consumption by to the public,269.84833008,TJ,N2O,3.9,kg/TJ,1052.4084873119998,kg -ad8944f1-e288-371c-b144-325d8268cd19,SESCO,II.1.1,Corrientes,AR-W,annual,2023,gas oil combustion consumption by to the public,127.75972691999999,TJ,CO2,74100.0,kg/TJ,9466995.764772,kg -33186cc0-0313-328e-ac6d-5d01f071095d,SESCO,II.1.1,Corrientes,AR-W,annual,2023,gas oil combustion consumption by to the public,127.75972691999999,TJ,CH4,3.9,kg/TJ,498.262934988,kg -33186cc0-0313-328e-ac6d-5d01f071095d,SESCO,II.1.1,Corrientes,AR-W,annual,2023,gas oil combustion consumption by to the public,127.75972691999999,TJ,N2O,3.9,kg/TJ,498.262934988,kg -8910af7b-fb94-3769-aeb1-4585fc45d6f9,SESCO,II.1.1,Córdoba,AR-X,annual,2023,gas oil combustion consumption by to the public,336.96351612,TJ,CO2,74100.0,kg/TJ,24968996.544492,kg -eb519d38-4c31-3c2d-8d74-e37ad07bab42,SESCO,II.1.1,Córdoba,AR-X,annual,2023,gas oil combustion consumption by to the public,336.96351612,TJ,CH4,3.9,kg/TJ,1314.157712868,kg -eb519d38-4c31-3c2d-8d74-e37ad07bab42,SESCO,II.1.1,Córdoba,AR-X,annual,2023,gas oil combustion consumption by to the public,336.96351612,TJ,N2O,3.9,kg/TJ,1314.157712868,kg -5de7c5e7-4452-3049-a8fc-fa64384e7169,SESCO,II.1.1,Entre Rios,AR-E,annual,2023,gas oil combustion consumption by to the public,378.51672264,TJ,CO2,74100.0,kg/TJ,28048089.147624,kg -34387a7f-fd91-39f5-9a01-f2fb77de3016,SESCO,II.1.1,Entre Rios,AR-E,annual,2023,gas oil combustion consumption by to the public,378.51672264,TJ,CH4,3.9,kg/TJ,1476.215218296,kg -34387a7f-fd91-39f5-9a01-f2fb77de3016,SESCO,II.1.1,Entre Rios,AR-E,annual,2023,gas oil combustion consumption by to the public,378.51672264,TJ,N2O,3.9,kg/TJ,1476.215218296,kg -f26f2925-49c3-3dbf-84c3-efb9867bf1e7,SESCO,II.1.1,Jujuy,AR-Y,annual,2023,gas oil combustion consumption by to the public,10.72684536,TJ,CO2,74100.0,kg/TJ,794859.241176,kg -3b9c4b85-fdba-3270-855c-7400c895e10b,SESCO,II.1.1,Jujuy,AR-Y,annual,2023,gas oil combustion consumption by to the public,10.72684536,TJ,CH4,3.9,kg/TJ,41.834696904,kg -3b9c4b85-fdba-3270-855c-7400c895e10b,SESCO,II.1.1,Jujuy,AR-Y,annual,2023,gas oil combustion consumption by to the public,10.72684536,TJ,N2O,3.9,kg/TJ,41.834696904,kg -c488a9f7-69b9-3552-ab20-39d062c111e5,SESCO,II.1.1,La Pampa,AR-L,annual,2023,gas oil combustion consumption by to the public,192.4540422,TJ,CO2,74100.0,kg/TJ,14260844.52702,kg -a84dc24f-2262-361b-8c46-53e03e7f6163,SESCO,II.1.1,La Pampa,AR-L,annual,2023,gas oil combustion consumption by to the public,192.4540422,TJ,CH4,3.9,kg/TJ,750.57076458,kg -a84dc24f-2262-361b-8c46-53e03e7f6163,SESCO,II.1.1,La Pampa,AR-L,annual,2023,gas oil combustion consumption by to the public,192.4540422,TJ,N2O,3.9,kg/TJ,750.57076458,kg -dbf9efca-0a27-3788-8d0c-b7161a84ea88,SESCO,II.1.1,Mendoza,AR-M,annual,2023,gas oil combustion consumption by to the public,35.61085248,TJ,CO2,74100.0,kg/TJ,2638764.168768,kg -7f058036-fa37-3880-9308-87e4d0111424,SESCO,II.1.1,Mendoza,AR-M,annual,2023,gas oil combustion consumption by to the public,35.61085248,TJ,CH4,3.9,kg/TJ,138.88232467199998,kg -7f058036-fa37-3880-9308-87e4d0111424,SESCO,II.1.1,Mendoza,AR-M,annual,2023,gas oil combustion consumption by to the public,35.61085248,TJ,N2O,3.9,kg/TJ,138.88232467199998,kg -ac3eed95-3b93-31b1-af07-737244c82073,SESCO,II.1.1,Neuquén,AR-Q,annual,2023,gas oil combustion consumption by to the public,323.49805236,TJ,CO2,74100.0,kg/TJ,23971205.679876,kg -24497ef1-dfa3-37b9-ae6c-f7633203f520,SESCO,II.1.1,Neuquén,AR-Q,annual,2023,gas oil combustion consumption by to the public,323.49805236,TJ,CH4,3.9,kg/TJ,1261.6424042039998,kg -24497ef1-dfa3-37b9-ae6c-f7633203f520,SESCO,II.1.1,Neuquén,AR-Q,annual,2023,gas oil combustion consumption by to the public,323.49805236,TJ,N2O,3.9,kg/TJ,1261.6424042039998,kg -cbf54987-99c1-3537-ad82-4579593ecdd2,SESCO,II.1.1,Rio Negro,AR-R,annual,2023,gas oil combustion consumption by to the public,373.85395572,TJ,CO2,74100.0,kg/TJ,27702578.118852,kg -33a505db-f39d-3bd1-98f6-0f684cf5a420,SESCO,II.1.1,Rio Negro,AR-R,annual,2023,gas oil combustion consumption by to the public,373.85395572,TJ,CH4,3.9,kg/TJ,1458.0304273079998,kg -33a505db-f39d-3bd1-98f6-0f684cf5a420,SESCO,II.1.1,Rio Negro,AR-R,annual,2023,gas oil combustion consumption by to the public,373.85395572,TJ,N2O,3.9,kg/TJ,1458.0304273079998,kg -da674e19-6f4b-3ef4-a136-b93c9ff3c8c6,SESCO,II.1.1,San Juan,AR-J,annual,2023,gas oil combustion consumption by to the public,42.58436028,TJ,CO2,74100.0,kg/TJ,3155501.096748,kg -4b012eb2-1928-34a2-81f4-9115cc940853,SESCO,II.1.1,San Juan,AR-J,annual,2023,gas oil combustion consumption by to the public,42.58436028,TJ,CH4,3.9,kg/TJ,166.079005092,kg -4b012eb2-1928-34a2-81f4-9115cc940853,SESCO,II.1.1,San Juan,AR-J,annual,2023,gas oil combustion consumption by to the public,42.58436028,TJ,N2O,3.9,kg/TJ,166.079005092,kg -419598b5-1922-3e28-b471-d81f57223483,SESCO,II.1.1,San Luis,AR-D,annual,2023,gas oil combustion consumption by to the public,31.816049160000002,TJ,CO2,74100.0,kg/TJ,2357569.2427560003,kg -a352e7c3-97c2-3d8d-b5fc-d6a78a00271f,SESCO,II.1.1,San Luis,AR-D,annual,2023,gas oil combustion consumption by to the public,31.816049160000002,TJ,CH4,3.9,kg/TJ,124.08259172400001,kg -a352e7c3-97c2-3d8d-b5fc-d6a78a00271f,SESCO,II.1.1,San Luis,AR-D,annual,2023,gas oil combustion consumption by to the public,31.816049160000002,TJ,N2O,3.9,kg/TJ,124.08259172400001,kg -ce824d9c-5a4f-3de8-bfe8-8a29539c42a2,SESCO,II.1.1,Santa Fe,AR-S,annual,2023,gas oil combustion consumption by to the public,419.59852703999996,TJ,CO2,74100.0,kg/TJ,31092250.853663996,kg -91702de8-0583-39f6-a370-c53c5756bb93,SESCO,II.1.1,Santa Fe,AR-S,annual,2023,gas oil combustion consumption by to the public,419.59852703999996,TJ,CH4,3.9,kg/TJ,1636.4342554559998,kg -91702de8-0583-39f6-a370-c53c5756bb93,SESCO,II.1.1,Santa Fe,AR-S,annual,2023,gas oil combustion consumption by to the public,419.59852703999996,TJ,N2O,3.9,kg/TJ,1636.4342554559998,kg -8bc033e4-4938-32b5-8caa-6fbcc7eef6fe,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2023,gas oil combustion consumption by to the public,54.62207268,TJ,CO2,74100.0,kg/TJ,4047495.5855880002,kg -4829fa72-aebe-3219-b05b-92526e45e10a,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2023,gas oil combustion consumption by to the public,54.62207268,TJ,CH4,3.9,kg/TJ,213.026083452,kg -4829fa72-aebe-3219-b05b-92526e45e10a,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2023,gas oil combustion consumption by to the public,54.62207268,TJ,N2O,3.9,kg/TJ,213.026083452,kg -1792a152-ab20-31b4-a4b2-79b9908c1886,SESCO,II.1.1,Tucuman,AR-T,annual,2023,gas oil combustion consumption by to the public,1.5059150399999999,TJ,CO2,74100.0,kg/TJ,111588.30446399999,kg -13c40026-db6b-30fd-afc9-fea28a8c2d06,SESCO,II.1.1,Tucuman,AR-T,annual,2023,gas oil combustion consumption by to the public,1.5059150399999999,TJ,CH4,3.9,kg/TJ,5.873068655999999,kg -13c40026-db6b-30fd-afc9-fea28a8c2d06,SESCO,II.1.1,Tucuman,AR-T,annual,2023,gas oil combustion consumption by to the public,1.5059150399999999,TJ,N2O,3.9,kg/TJ,5.873068655999999,kg -2f922cef-5acc-3276-8a2d-256f97b35186,SESCO,II.5.1,Buenos Aires,AR-B,annual,2023,gas oil combustion consumption by agriculture machines,8991.56832,TJ,CO2,74100.0,kg/TJ,666275212.512,kg -8b1270b7-cd17-3c0f-aa17-ce0a4f790a53,SESCO,II.5.1,Buenos Aires,AR-B,annual,2023,gas oil combustion consumption by agriculture machines,8991.56832,TJ,CH4,3.9,kg/TJ,35067.116448,kg -8b1270b7-cd17-3c0f-aa17-ce0a4f790a53,SESCO,II.5.1,Buenos Aires,AR-B,annual,2023,gas oil combustion consumption by agriculture machines,8991.56832,TJ,N2O,3.9,kg/TJ,35067.116448,kg -e000c3c6-3297-3238-998d-2c82133f39a0,SESCO,II.5.1,Capital Federal,AR-C,annual,2023,gas oil combustion consumption by agriculture machines,89.18028,TJ,CO2,74100.0,kg/TJ,6608258.748,kg -0ab6a520-bdf0-31b3-b0c6-359fee1136fd,SESCO,II.5.1,Capital Federal,AR-C,annual,2023,gas oil combustion consumption by agriculture machines,89.18028,TJ,CH4,3.9,kg/TJ,347.803092,kg -0ab6a520-bdf0-31b3-b0c6-359fee1136fd,SESCO,II.5.1,Capital Federal,AR-C,annual,2023,gas oil combustion consumption by agriculture machines,89.18028,TJ,N2O,3.9,kg/TJ,347.803092,kg -15d59397-cd33-38a6-a672-896a31a30d7e,SESCO,II.5.1,Catamarca,AR-K,annual,2023,gas oil combustion consumption by agriculture machines,250.81727999999998,TJ,CO2,74100.0,kg/TJ,18585560.448,kg -8decbaa5-a05f-3591-8f9a-c64e7ee1ee95,SESCO,II.5.1,Catamarca,AR-K,annual,2023,gas oil combustion consumption by agriculture machines,250.81727999999998,TJ,CH4,3.9,kg/TJ,978.1873919999999,kg -8decbaa5-a05f-3591-8f9a-c64e7ee1ee95,SESCO,II.5.1,Catamarca,AR-K,annual,2023,gas oil combustion consumption by agriculture machines,250.81727999999998,TJ,N2O,3.9,kg/TJ,978.1873919999999,kg -bf095aa4-69c8-31b5-8aa9-95144f58bde5,SESCO,II.5.1,Chaco,AR-H,annual,2023,gas oil combustion consumption by agriculture machines,1158.87408,TJ,CO2,74100.0,kg/TJ,85872569.32800001,kg -7c27a69e-d4c9-3579-ac87-ba98e2654555,SESCO,II.5.1,Chaco,AR-H,annual,2023,gas oil combustion consumption by agriculture machines,1158.87408,TJ,CH4,3.9,kg/TJ,4519.608912,kg -7c27a69e-d4c9-3579-ac87-ba98e2654555,SESCO,II.5.1,Chaco,AR-H,annual,2023,gas oil combustion consumption by agriculture machines,1158.87408,TJ,N2O,3.9,kg/TJ,4519.608912,kg -3f641dcd-7828-3889-99dd-a8dd4dd94e23,SESCO,II.5.1,Corrientes,AR-W,annual,2023,gas oil combustion consumption by agriculture machines,726.012,TJ,CO2,74100.0,kg/TJ,53797489.199999996,kg -70e59184-1311-32d8-8815-9ecf4477ff9b,SESCO,II.5.1,Corrientes,AR-W,annual,2023,gas oil combustion consumption by agriculture machines,726.012,TJ,CH4,3.9,kg/TJ,2831.4467999999997,kg -70e59184-1311-32d8-8815-9ecf4477ff9b,SESCO,II.5.1,Corrientes,AR-W,annual,2023,gas oil combustion consumption by agriculture machines,726.012,TJ,N2O,3.9,kg/TJ,2831.4467999999997,kg -49accdcb-580d-3834-8f46-d5c90605d770,SESCO,II.5.1,Córdoba,AR-X,annual,2023,gas oil combustion consumption by agriculture machines,7244.98572,TJ,CO2,74100.0,kg/TJ,536853441.852,kg -51fe9a11-390c-3436-bb1b-2b24edea32ca,SESCO,II.5.1,Córdoba,AR-X,annual,2023,gas oil combustion consumption by agriculture machines,7244.98572,TJ,CH4,3.9,kg/TJ,28255.444308,kg -51fe9a11-390c-3436-bb1b-2b24edea32ca,SESCO,II.5.1,Córdoba,AR-X,annual,2023,gas oil combustion consumption by agriculture machines,7244.98572,TJ,N2O,3.9,kg/TJ,28255.444308,kg -10eaec50-fdf7-3d73-b25f-552da802f6c0,SESCO,II.5.1,Entre Rios,AR-E,annual,2023,gas oil combustion consumption by agriculture machines,2012.1729599999999,TJ,CO2,74100.0,kg/TJ,149102016.336,kg -7dcdb88b-4dc8-34d2-b436-f1869b6f8530,SESCO,II.5.1,Entre Rios,AR-E,annual,2023,gas oil combustion consumption by agriculture machines,2012.1729599999999,TJ,CH4,3.9,kg/TJ,7847.474544,kg -7dcdb88b-4dc8-34d2-b436-f1869b6f8530,SESCO,II.5.1,Entre Rios,AR-E,annual,2023,gas oil combustion consumption by agriculture machines,2012.1729599999999,TJ,N2O,3.9,kg/TJ,7847.474544,kg -835f8a9a-a71a-3162-948b-6268ed27f2df,SESCO,II.5.1,Formosa,AR-P,annual,2023,gas oil combustion consumption by agriculture machines,322.44324,TJ,CO2,74100.0,kg/TJ,23893044.084,kg -0cb529c1-b0d3-3d55-a5e4-1d05e754dcd6,SESCO,II.5.1,Formosa,AR-P,annual,2023,gas oil combustion consumption by agriculture machines,322.44324,TJ,CH4,3.9,kg/TJ,1257.528636,kg -0cb529c1-b0d3-3d55-a5e4-1d05e754dcd6,SESCO,II.5.1,Formosa,AR-P,annual,2023,gas oil combustion consumption by agriculture machines,322.44324,TJ,N2O,3.9,kg/TJ,1257.528636,kg -c95aeed9-abf2-3dcf-82a2-67273184b2ff,SESCO,II.5.1,Jujuy,AR-Y,annual,2023,gas oil combustion consumption by agriculture machines,932.69064,TJ,CO2,74100.0,kg/TJ,69112376.424,kg -997c8603-1423-37e1-be55-f8ccae7e79fc,SESCO,II.5.1,Jujuy,AR-Y,annual,2023,gas oil combustion consumption by agriculture machines,932.69064,TJ,CH4,3.9,kg/TJ,3637.493496,kg -997c8603-1423-37e1-be55-f8ccae7e79fc,SESCO,II.5.1,Jujuy,AR-Y,annual,2023,gas oil combustion consumption by agriculture machines,932.69064,TJ,N2O,3.9,kg/TJ,3637.493496,kg -76aae08a-7012-3c57-83a4-ba4e268cf3cf,SESCO,II.5.1,La Pampa,AR-L,annual,2023,gas oil combustion consumption by agriculture machines,1452.78252,TJ,CO2,74100.0,kg/TJ,107651184.732,kg -8cec8e68-08c2-34e0-8a84-6c9637eb2517,SESCO,II.5.1,La Pampa,AR-L,annual,2023,gas oil combustion consumption by agriculture machines,1452.78252,TJ,CH4,3.9,kg/TJ,5665.851828,kg -8cec8e68-08c2-34e0-8a84-6c9637eb2517,SESCO,II.5.1,La Pampa,AR-L,annual,2023,gas oil combustion consumption by agriculture machines,1452.78252,TJ,N2O,3.9,kg/TJ,5665.851828,kg -5d0c9874-f848-37d8-b96b-5742adba7234,SESCO,II.5.1,La Rioja,AR-F,annual,2023,gas oil combustion consumption by agriculture machines,84.55692,TJ,CO2,74100.0,kg/TJ,6265667.772000001,kg -a6885e95-1d2b-38f0-b4d2-d17f5035415a,SESCO,II.5.1,La Rioja,AR-F,annual,2023,gas oil combustion consumption by agriculture machines,84.55692,TJ,CH4,3.9,kg/TJ,329.771988,kg -a6885e95-1d2b-38f0-b4d2-d17f5035415a,SESCO,II.5.1,La Rioja,AR-F,annual,2023,gas oil combustion consumption by agriculture machines,84.55692,TJ,N2O,3.9,kg/TJ,329.771988,kg -f9199add-e498-3845-a04e-be3cf48a7d9d,SESCO,II.5.1,Mendoza,AR-M,annual,2023,gas oil combustion consumption by agriculture machines,2486.3202,TJ,CO2,74100.0,kg/TJ,184236326.82000002,kg -08c04a98-5050-3acb-9083-c4815d56c5f0,SESCO,II.5.1,Mendoza,AR-M,annual,2023,gas oil combustion consumption by agriculture machines,2486.3202,TJ,CH4,3.9,kg/TJ,9696.64878,kg -08c04a98-5050-3acb-9083-c4815d56c5f0,SESCO,II.5.1,Mendoza,AR-M,annual,2023,gas oil combustion consumption by agriculture machines,2486.3202,TJ,N2O,3.9,kg/TJ,9696.64878,kg -789efae0-2a63-34cd-a6a4-b67ddbbd814c,SESCO,II.5.1,Misiones,AR-N,annual,2023,gas oil combustion consumption by agriculture machines,1237.8324,TJ,CO2,74100.0,kg/TJ,91723380.84,kg -44d4e11a-51df-3461-8343-ff5054b7afa5,SESCO,II.5.1,Misiones,AR-N,annual,2023,gas oil combustion consumption by agriculture machines,1237.8324,TJ,CH4,3.9,kg/TJ,4827.54636,kg -44d4e11a-51df-3461-8343-ff5054b7afa5,SESCO,II.5.1,Misiones,AR-N,annual,2023,gas oil combustion consumption by agriculture machines,1237.8324,TJ,N2O,3.9,kg/TJ,4827.54636,kg -0795293b-ff9e-3e0f-95ba-2c869f527796,SESCO,II.5.1,Neuquén,AR-Q,annual,2023,gas oil combustion consumption by agriculture machines,0.10836,TJ,CO2,74100.0,kg/TJ,8029.476,kg -95119bda-fa96-3950-817a-b1b57e2ef13e,SESCO,II.5.1,Neuquén,AR-Q,annual,2023,gas oil combustion consumption by agriculture machines,0.10836,TJ,CH4,3.9,kg/TJ,0.422604,kg -95119bda-fa96-3950-817a-b1b57e2ef13e,SESCO,II.5.1,Neuquén,AR-Q,annual,2023,gas oil combustion consumption by agriculture machines,0.10836,TJ,N2O,3.9,kg/TJ,0.422604,kg -0bc358f8-45fb-3520-a543-72ce8064040b,SESCO,II.5.1,Rio Negro,AR-R,annual,2023,gas oil combustion consumption by agriculture machines,158.2056,TJ,CO2,74100.0,kg/TJ,11723034.96,kg -20e9d325-7b09-35a4-9b25-bc92db859c34,SESCO,II.5.1,Rio Negro,AR-R,annual,2023,gas oil combustion consumption by agriculture machines,158.2056,TJ,CH4,3.9,kg/TJ,617.00184,kg -20e9d325-7b09-35a4-9b25-bc92db859c34,SESCO,II.5.1,Rio Negro,AR-R,annual,2023,gas oil combustion consumption by agriculture machines,158.2056,TJ,N2O,3.9,kg/TJ,617.00184,kg -1bf11900-3515-3aaf-8eb4-8b87d7838cac,SESCO,II.5.1,Salta,AR-A,annual,2023,gas oil combustion consumption by agriculture machines,1736.8301999999999,TJ,CO2,74100.0,kg/TJ,128699117.82,kg -51852086-ae0a-3647-974d-e64a6a977953,SESCO,II.5.1,Salta,AR-A,annual,2023,gas oil combustion consumption by agriculture machines,1736.8301999999999,TJ,CH4,3.9,kg/TJ,6773.637779999999,kg -51852086-ae0a-3647-974d-e64a6a977953,SESCO,II.5.1,Salta,AR-A,annual,2023,gas oil combustion consumption by agriculture machines,1736.8301999999999,TJ,N2O,3.9,kg/TJ,6773.637779999999,kg -f7c700d2-6f9b-3930-b05c-23295c9c49e1,SESCO,II.5.1,San Juan,AR-J,annual,2023,gas oil combustion consumption by agriculture machines,373.51691999999997,TJ,CO2,74100.0,kg/TJ,27677603.771999996,kg -eba45198-092e-382a-be96-dab2b6af08a8,SESCO,II.5.1,San Juan,AR-J,annual,2023,gas oil combustion consumption by agriculture machines,373.51691999999997,TJ,CH4,3.9,kg/TJ,1456.715988,kg -eba45198-092e-382a-be96-dab2b6af08a8,SESCO,II.5.1,San Juan,AR-J,annual,2023,gas oil combustion consumption by agriculture machines,373.51691999999997,TJ,N2O,3.9,kg/TJ,1456.715988,kg -16f5f5f6-6a35-3457-97bb-efbbf4590439,SESCO,II.5.1,San Luis,AR-D,annual,2023,gas oil combustion consumption by agriculture machines,274.72872,TJ,CO2,74100.0,kg/TJ,20357398.152000003,kg -cba69cc3-f12e-3a08-a649-3b83fdd0c351,SESCO,II.5.1,San Luis,AR-D,annual,2023,gas oil combustion consumption by agriculture machines,274.72872,TJ,CH4,3.9,kg/TJ,1071.442008,kg -cba69cc3-f12e-3a08-a649-3b83fdd0c351,SESCO,II.5.1,San Luis,AR-D,annual,2023,gas oil combustion consumption by agriculture machines,274.72872,TJ,N2O,3.9,kg/TJ,1071.442008,kg -e2d2ed6b-8e46-386c-93d2-d6ed261c88f1,SESCO,II.5.1,Santa Fe,AR-S,annual,2023,gas oil combustion consumption by agriculture machines,6257.21208,TJ,CO2,74100.0,kg/TJ,463659415.128,kg -fba09f10-c437-3f10-800d-d866f3bd99bb,SESCO,II.5.1,Santa Fe,AR-S,annual,2023,gas oil combustion consumption by agriculture machines,6257.21208,TJ,CH4,3.9,kg/TJ,24403.127112000002,kg -fba09f10-c437-3f10-800d-d866f3bd99bb,SESCO,II.5.1,Santa Fe,AR-S,annual,2023,gas oil combustion consumption by agriculture machines,6257.21208,TJ,N2O,3.9,kg/TJ,24403.127112000002,kg -2162f475-6456-35ee-a186-da9d2c735113,SESCO,II.5.1,Santiago del Estero,AR-G,annual,2023,gas oil combustion consumption by agriculture machines,1488.07176,TJ,CO2,74100.0,kg/TJ,110266117.41600001,kg -9c2582dc-f6cd-317d-b403-69d66e050b84,SESCO,II.5.1,Santiago del Estero,AR-G,annual,2023,gas oil combustion consumption by agriculture machines,1488.07176,TJ,CH4,3.9,kg/TJ,5803.479864,kg -9c2582dc-f6cd-317d-b403-69d66e050b84,SESCO,II.5.1,Santiago del Estero,AR-G,annual,2023,gas oil combustion consumption by agriculture machines,1488.07176,TJ,N2O,3.9,kg/TJ,5803.479864,kg -b0b35ee9-2922-38d9-a05a-3d19ff9dbb06,SESCO,II.5.1,Tucuman,AR-T,annual,2023,gas oil combustion consumption by agriculture machines,1130.3754,TJ,CO2,74100.0,kg/TJ,83760817.13999999,kg -0fbffb63-ead8-300d-9fda-438208d26e32,SESCO,II.5.1,Tucuman,AR-T,annual,2023,gas oil combustion consumption by agriculture machines,1130.3754,TJ,CH4,3.9,kg/TJ,4408.464059999999,kg -0fbffb63-ead8-300d-9fda-438208d26e32,SESCO,II.5.1,Tucuman,AR-T,annual,2023,gas oil combustion consumption by agriculture machines,1130.3754,TJ,N2O,3.9,kg/TJ,4408.464059999999,kg -1a0b7d95-9aa5-3199-a098-e4bfab4567ad,SESCO,II.5.1,Buenos Aires,AR-B,annual,2023,gas oil combustion consumption by agriculture machines,2140.8324,TJ,CO2,74100.0,kg/TJ,158635680.83999997,kg -f6ab8a3c-71e4-3ce5-bcf5-f3a38c64aa43,SESCO,II.5.1,Buenos Aires,AR-B,annual,2023,gas oil combustion consumption by agriculture machines,2140.8324,TJ,CH4,3.9,kg/TJ,8349.24636,kg -f6ab8a3c-71e4-3ce5-bcf5-f3a38c64aa43,SESCO,II.5.1,Buenos Aires,AR-B,annual,2023,gas oil combustion consumption by agriculture machines,2140.8324,TJ,N2O,3.9,kg/TJ,8349.24636,kg -87a2ccd9-9abd-36d4-80b2-e3c550798578,SESCO,II.5.1,Capital Federal,AR-C,annual,2023,gas oil combustion consumption by agriculture machines,10.51092,TJ,CO2,74100.0,kg/TJ,778859.172,kg -57cd5cb3-14cc-3d50-b20d-50e4b95366ee,SESCO,II.5.1,Capital Federal,AR-C,annual,2023,gas oil combustion consumption by agriculture machines,10.51092,TJ,CH4,3.9,kg/TJ,40.992588,kg -57cd5cb3-14cc-3d50-b20d-50e4b95366ee,SESCO,II.5.1,Capital Federal,AR-C,annual,2023,gas oil combustion consumption by agriculture machines,10.51092,TJ,N2O,3.9,kg/TJ,40.992588,kg -03a71b6b-f8e7-3c73-b219-05e2b692f926,SESCO,II.5.1,Catamarca,AR-K,annual,2023,gas oil combustion consumption by agriculture machines,59.12844,TJ,CO2,74100.0,kg/TJ,4381417.404,kg -bb3499c0-26c9-3dd1-9d6a-0f149c3790f4,SESCO,II.5.1,Catamarca,AR-K,annual,2023,gas oil combustion consumption by agriculture machines,59.12844,TJ,CH4,3.9,kg/TJ,230.60091599999998,kg -bb3499c0-26c9-3dd1-9d6a-0f149c3790f4,SESCO,II.5.1,Catamarca,AR-K,annual,2023,gas oil combustion consumption by agriculture machines,59.12844,TJ,N2O,3.9,kg/TJ,230.60091599999998,kg -39ae083f-9075-3f0b-885b-e8f684befae4,SESCO,II.5.1,Chaco,AR-H,annual,2023,gas oil combustion consumption by agriculture machines,27.48732,TJ,CO2,74100.0,kg/TJ,2036810.412,kg -ffb002bf-a13e-37bd-bced-5527af7126b7,SESCO,II.5.1,Chaco,AR-H,annual,2023,gas oil combustion consumption by agriculture machines,27.48732,TJ,CH4,3.9,kg/TJ,107.200548,kg -ffb002bf-a13e-37bd-bced-5527af7126b7,SESCO,II.5.1,Chaco,AR-H,annual,2023,gas oil combustion consumption by agriculture machines,27.48732,TJ,N2O,3.9,kg/TJ,107.200548,kg -11be6a2e-6ffd-39f3-a432-8d5bc7a30bbb,SESCO,II.5.1,Corrientes,AR-W,annual,2023,gas oil combustion consumption by agriculture machines,29.799,TJ,CO2,74100.0,kg/TJ,2208105.9,kg -7579e02d-ce20-36c5-983a-7286b83b2980,SESCO,II.5.1,Corrientes,AR-W,annual,2023,gas oil combustion consumption by agriculture machines,29.799,TJ,CH4,3.9,kg/TJ,116.2161,kg -7579e02d-ce20-36c5-983a-7286b83b2980,SESCO,II.5.1,Corrientes,AR-W,annual,2023,gas oil combustion consumption by agriculture machines,29.799,TJ,N2O,3.9,kg/TJ,116.2161,kg -dbcd01bf-6294-370b-b330-731404ed7aff,SESCO,II.5.1,Córdoba,AR-X,annual,2023,gas oil combustion consumption by agriculture machines,479.493,TJ,CO2,74100.0,kg/TJ,35530431.3,kg -fa653478-e733-3bd6-91cb-f92a3309a8dc,SESCO,II.5.1,Córdoba,AR-X,annual,2023,gas oil combustion consumption by agriculture machines,479.493,TJ,CH4,3.9,kg/TJ,1870.0227,kg -fa653478-e733-3bd6-91cb-f92a3309a8dc,SESCO,II.5.1,Córdoba,AR-X,annual,2023,gas oil combustion consumption by agriculture machines,479.493,TJ,N2O,3.9,kg/TJ,1870.0227,kg -5ab0f6f2-68da-3119-a2f9-6ef882f29bd6,SESCO,II.5.1,Entre Rios,AR-E,annual,2023,gas oil combustion consumption by agriculture machines,37.09524,TJ,CO2,74100.0,kg/TJ,2748757.284,kg -49a620b5-95b6-3937-995b-368608cd0171,SESCO,II.5.1,Entre Rios,AR-E,annual,2023,gas oil combustion consumption by agriculture machines,37.09524,TJ,CH4,3.9,kg/TJ,144.67143599999997,kg -49a620b5-95b6-3937-995b-368608cd0171,SESCO,II.5.1,Entre Rios,AR-E,annual,2023,gas oil combustion consumption by agriculture machines,37.09524,TJ,N2O,3.9,kg/TJ,144.67143599999997,kg -4a494f7a-14f5-37e4-a12f-1857b98cab08,SESCO,II.5.1,Formosa,AR-P,annual,2023,gas oil combustion consumption by agriculture machines,35.0364,TJ,CO2,74100.0,kg/TJ,2596197.24,kg -e34c42ae-a5a6-32c2-ac16-f3f837382d8c,SESCO,II.5.1,Formosa,AR-P,annual,2023,gas oil combustion consumption by agriculture machines,35.0364,TJ,CH4,3.9,kg/TJ,136.64196,kg -e34c42ae-a5a6-32c2-ac16-f3f837382d8c,SESCO,II.5.1,Formosa,AR-P,annual,2023,gas oil combustion consumption by agriculture machines,35.0364,TJ,N2O,3.9,kg/TJ,136.64196,kg -d40e0eb6-ab57-39e2-ba85-b43f81f0c43f,SESCO,II.5.1,Jujuy,AR-Y,annual,2023,gas oil combustion consumption by agriculture machines,30.81036,TJ,CO2,74100.0,kg/TJ,2283047.676,kg -78e6a5a0-1879-33b5-a78c-6ddafa020eab,SESCO,II.5.1,Jujuy,AR-Y,annual,2023,gas oil combustion consumption by agriculture machines,30.81036,TJ,CH4,3.9,kg/TJ,120.160404,kg -78e6a5a0-1879-33b5-a78c-6ddafa020eab,SESCO,II.5.1,Jujuy,AR-Y,annual,2023,gas oil combustion consumption by agriculture machines,30.81036,TJ,N2O,3.9,kg/TJ,120.160404,kg -faa03e97-564a-39a5-b329-33287bcb08f9,SESCO,II.5.1,La Pampa,AR-L,annual,2023,gas oil combustion consumption by agriculture machines,121.79664,TJ,CO2,74100.0,kg/TJ,9025131.024,kg -6439dd36-b058-3d4d-a384-b8ba96d3c519,SESCO,II.5.1,La Pampa,AR-L,annual,2023,gas oil combustion consumption by agriculture machines,121.79664,TJ,CH4,3.9,kg/TJ,475.006896,kg -6439dd36-b058-3d4d-a384-b8ba96d3c519,SESCO,II.5.1,La Pampa,AR-L,annual,2023,gas oil combustion consumption by agriculture machines,121.79664,TJ,N2O,3.9,kg/TJ,475.006896,kg -17d06eb0-6983-362d-b3af-8308775d4323,SESCO,II.5.1,La Rioja,AR-F,annual,2023,gas oil combustion consumption by agriculture machines,47.75064,TJ,CO2,74100.0,kg/TJ,3538322.4239999996,kg -17a5467a-f37f-3df1-b2e6-a6d2b70353d2,SESCO,II.5.1,La Rioja,AR-F,annual,2023,gas oil combustion consumption by agriculture machines,47.75064,TJ,CH4,3.9,kg/TJ,186.22749599999997,kg -17a5467a-f37f-3df1-b2e6-a6d2b70353d2,SESCO,II.5.1,La Rioja,AR-F,annual,2023,gas oil combustion consumption by agriculture machines,47.75064,TJ,N2O,3.9,kg/TJ,186.22749599999997,kg -a6f4a954-8d85-3e3d-a593-0256f3e4c28c,SESCO,II.5.1,Mendoza,AR-M,annual,2023,gas oil combustion consumption by agriculture machines,236.11643999999998,TJ,CO2,74100.0,kg/TJ,17496228.204,kg -43f1eec1-bbd4-363d-acba-b64b11ef28d4,SESCO,II.5.1,Mendoza,AR-M,annual,2023,gas oil combustion consumption by agriculture machines,236.11643999999998,TJ,CH4,3.9,kg/TJ,920.8541159999999,kg -43f1eec1-bbd4-363d-acba-b64b11ef28d4,SESCO,II.5.1,Mendoza,AR-M,annual,2023,gas oil combustion consumption by agriculture machines,236.11643999999998,TJ,N2O,3.9,kg/TJ,920.8541159999999,kg -4b786a41-aa79-3f96-962b-5e4b7f12fee1,SESCO,II.5.1,Misiones,AR-N,annual,2023,gas oil combustion consumption by agriculture machines,67.5444,TJ,CO2,74100.0,kg/TJ,5005040.04,kg -8e695b2a-7844-3f86-b116-1115a06aac06,SESCO,II.5.1,Misiones,AR-N,annual,2023,gas oil combustion consumption by agriculture machines,67.5444,TJ,CH4,3.9,kg/TJ,263.42316,kg -8e695b2a-7844-3f86-b116-1115a06aac06,SESCO,II.5.1,Misiones,AR-N,annual,2023,gas oil combustion consumption by agriculture machines,67.5444,TJ,N2O,3.9,kg/TJ,263.42316,kg -1cacfa1f-1843-38f5-9a39-0c89c5d5f3bf,SESCO,II.5.1,Rio Negro,AR-R,annual,2023,gas oil combustion consumption by agriculture machines,58.1532,TJ,CO2,74100.0,kg/TJ,4309152.12,kg -4ebb658c-def2-318b-afe1-53ce53bdbe89,SESCO,II.5.1,Rio Negro,AR-R,annual,2023,gas oil combustion consumption by agriculture machines,58.1532,TJ,CH4,3.9,kg/TJ,226.79747999999998,kg -4ebb658c-def2-318b-afe1-53ce53bdbe89,SESCO,II.5.1,Rio Negro,AR-R,annual,2023,gas oil combustion consumption by agriculture machines,58.1532,TJ,N2O,3.9,kg/TJ,226.79747999999998,kg -c89505bb-edf0-35bb-babd-e21da5f80133,SESCO,II.5.1,Salta,AR-A,annual,2023,gas oil combustion consumption by agriculture machines,274.76484,TJ,CO2,74100.0,kg/TJ,20360074.644,kg -a8cafd0b-532d-3b71-a1af-6517a418f96d,SESCO,II.5.1,Salta,AR-A,annual,2023,gas oil combustion consumption by agriculture machines,274.76484,TJ,CH4,3.9,kg/TJ,1071.582876,kg -a8cafd0b-532d-3b71-a1af-6517a418f96d,SESCO,II.5.1,Salta,AR-A,annual,2023,gas oil combustion consumption by agriculture machines,274.76484,TJ,N2O,3.9,kg/TJ,1071.582876,kg -6eee679c-558f-32da-a099-bc8064cccbf3,SESCO,II.5.1,San Juan,AR-J,annual,2023,gas oil combustion consumption by agriculture machines,61.54848,TJ,CO2,74100.0,kg/TJ,4560742.368,kg -62447040-bc32-3b4d-a3c3-ae0111ae9e92,SESCO,II.5.1,San Juan,AR-J,annual,2023,gas oil combustion consumption by agriculture machines,61.54848,TJ,CH4,3.9,kg/TJ,240.03907199999998,kg -62447040-bc32-3b4d-a3c3-ae0111ae9e92,SESCO,II.5.1,San Juan,AR-J,annual,2023,gas oil combustion consumption by agriculture machines,61.54848,TJ,N2O,3.9,kg/TJ,240.03907199999998,kg -88ee4502-49d5-3b28-a20e-a05a62763834,SESCO,II.5.1,San Luis,AR-D,annual,2023,gas oil combustion consumption by agriculture machines,31.46052,TJ,CO2,74100.0,kg/TJ,2331224.532,kg -22de3b5f-c791-3bfa-8052-d25d0419a588,SESCO,II.5.1,San Luis,AR-D,annual,2023,gas oil combustion consumption by agriculture machines,31.46052,TJ,CH4,3.9,kg/TJ,122.696028,kg -22de3b5f-c791-3bfa-8052-d25d0419a588,SESCO,II.5.1,San Luis,AR-D,annual,2023,gas oil combustion consumption by agriculture machines,31.46052,TJ,N2O,3.9,kg/TJ,122.696028,kg -5c0b9229-72b9-3cff-aecf-a0ea0aaf85f8,SESCO,II.5.1,Santa Fe,AR-S,annual,2023,gas oil combustion consumption by agriculture machines,377.05668,TJ,CO2,74100.0,kg/TJ,27939899.987999998,kg -d15bc6d8-1921-3de6-b200-7af8e7e7d5c2,SESCO,II.5.1,Santa Fe,AR-S,annual,2023,gas oil combustion consumption by agriculture machines,377.05668,TJ,CH4,3.9,kg/TJ,1470.5210519999998,kg -d15bc6d8-1921-3de6-b200-7af8e7e7d5c2,SESCO,II.5.1,Santa Fe,AR-S,annual,2023,gas oil combustion consumption by agriculture machines,377.05668,TJ,N2O,3.9,kg/TJ,1470.5210519999998,kg -12f06a57-1d8f-3807-8b82-f89be01ebde0,SESCO,II.5.1,Santiago del Estero,AR-G,annual,2023,gas oil combustion consumption by agriculture machines,223.79952,TJ,CO2,74100.0,kg/TJ,16583544.432,kg -0c1307f5-4ac9-3950-b3ee-9032734d141c,SESCO,II.5.1,Santiago del Estero,AR-G,annual,2023,gas oil combustion consumption by agriculture machines,223.79952,TJ,CH4,3.9,kg/TJ,872.818128,kg -0c1307f5-4ac9-3950-b3ee-9032734d141c,SESCO,II.5.1,Santiago del Estero,AR-G,annual,2023,gas oil combustion consumption by agriculture machines,223.79952,TJ,N2O,3.9,kg/TJ,872.818128,kg -f0288363-6e01-3a77-b5cc-3fd681c8616d,SESCO,II.5.1,Tucuman,AR-T,annual,2023,gas oil combustion consumption by agriculture machines,67.76112,TJ,CO2,74100.0,kg/TJ,5021098.992000001,kg -5a801920-77f7-391d-b971-4d505946a681,SESCO,II.5.1,Tucuman,AR-T,annual,2023,gas oil combustion consumption by agriculture machines,67.76112,TJ,CH4,3.9,kg/TJ,264.268368,kg -5a801920-77f7-391d-b971-4d505946a681,SESCO,II.5.1,Tucuman,AR-T,annual,2023,gas oil combustion consumption by agriculture machines,67.76112,TJ,N2O,3.9,kg/TJ,264.268368,kg -61b8f565-df72-3d25-a65d-b60347335663,SESCO,II.5.1,Buenos Aires,AR-B,annual,2023,jet kerosene combustion consumption by agriculture machines,3.9630779999999994,TJ,CO2,71500.0,kg/TJ,283360.07699999993,kg -68c29c88-49ca-3c56-9b55-8adc938e9781,SESCO,II.5.1,Buenos Aires,AR-B,annual,2023,jet kerosene combustion consumption by agriculture machines,3.9630779999999994,TJ,CH4,0.5,kg/TJ,1.9815389999999997,kg -33564f2c-3350-3e2e-85f8-64045f55d2c7,SESCO,II.5.1,Buenos Aires,AR-B,annual,2023,jet kerosene combustion consumption by agriculture machines,3.9630779999999994,TJ,N2O,2.0,kg/TJ,7.926155999999999,kg -f15cf9af-afeb-31b9-a32e-757a60ba7346,SESCO,II.5.1,Córdoba,AR-X,annual,2023,jet kerosene combustion consumption by agriculture machines,0.31453,TJ,CO2,71500.0,kg/TJ,22488.894999999997,kg -cf48b8c3-2f61-3dd0-b123-b5d477ee9603,SESCO,II.5.1,Córdoba,AR-X,annual,2023,jet kerosene combustion consumption by agriculture machines,0.31453,TJ,CH4,0.5,kg/TJ,0.157265,kg -ba1ec442-4a67-3a2f-9a40-c16e4a8f5665,SESCO,II.5.1,Córdoba,AR-X,annual,2023,jet kerosene combustion consumption by agriculture machines,0.31453,TJ,N2O,2.0,kg/TJ,0.62906,kg -9f968c3e-cbe5-3315-bc81-a6a88ff259f2,SESCO,II.5.1,Santa Fe,AR-S,annual,2023,jet kerosene combustion consumption by agriculture machines,0.25162399999999996,TJ,CO2,71500.0,kg/TJ,17991.115999999998,kg -00ff08c4-4804-379c-97b3-2b1ae630872a,SESCO,II.5.1,Santa Fe,AR-S,annual,2023,jet kerosene combustion consumption by agriculture machines,0.25162399999999996,TJ,CH4,0.5,kg/TJ,0.12581199999999998,kg -a0907ad1-e862-3abd-a013-011f9aebfb24,SESCO,II.5.1,Santa Fe,AR-S,annual,2023,jet kerosene combustion consumption by agriculture machines,0.25162399999999996,TJ,N2O,2.0,kg/TJ,0.5032479999999999,kg -f9bca6f7-f084-3609-95bc-fe5f39d46cd9,SESCO,II.1.1,Buenos Aires,AR-B,annual,2023,gas oil combustion consumption by to the public,29377.443479999998,TJ,CO2,74100.0,kg/TJ,2176868561.868,kg -7cb75588-d6d9-3f48-8767-e5b29992a2fd,SESCO,II.1.1,Buenos Aires,AR-B,annual,2023,gas oil combustion consumption by to the public,29377.443479999998,TJ,CH4,3.9,kg/TJ,114572.02957199998,kg -7cb75588-d6d9-3f48-8767-e5b29992a2fd,SESCO,II.1.1,Buenos Aires,AR-B,annual,2023,gas oil combustion consumption by to the public,29377.443479999998,TJ,N2O,3.9,kg/TJ,114572.02957199998,kg -c29347a3-6c44-34a9-9114-69dd5175d4bf,SESCO,II.1.1,Capital Federal,AR-C,annual,2023,gas oil combustion consumption by to the public,3614.42004,TJ,CO2,74100.0,kg/TJ,267828524.964,kg -280ba808-ed45-31c5-9b96-714ce912191e,SESCO,II.1.1,Capital Federal,AR-C,annual,2023,gas oil combustion consumption by to the public,3614.42004,TJ,CH4,3.9,kg/TJ,14096.238156,kg -280ba808-ed45-31c5-9b96-714ce912191e,SESCO,II.1.1,Capital Federal,AR-C,annual,2023,gas oil combustion consumption by to the public,3614.42004,TJ,N2O,3.9,kg/TJ,14096.238156,kg -17485993-d8b6-3362-bb0d-8052dadde7ce,SESCO,II.1.1,Catamarca,AR-K,annual,2023,gas oil combustion consumption by to the public,531.57804,TJ,CO2,74100.0,kg/TJ,39389932.764,kg -90d7d37f-788d-3d35-a8f3-e6d34b5e087c,SESCO,II.1.1,Catamarca,AR-K,annual,2023,gas oil combustion consumption by to the public,531.57804,TJ,CH4,3.9,kg/TJ,2073.154356,kg -90d7d37f-788d-3d35-a8f3-e6d34b5e087c,SESCO,II.1.1,Catamarca,AR-K,annual,2023,gas oil combustion consumption by to the public,531.57804,TJ,N2O,3.9,kg/TJ,2073.154356,kg -ae1df8d5-56d6-381e-b2f0-0f0b440c5f34,SESCO,II.1.1,Chaco,AR-H,annual,2023,gas oil combustion consumption by to the public,2323.56348,TJ,CO2,74100.0,kg/TJ,172176053.86799997,kg -0d37ff49-2dd5-3628-96a4-fce494664d79,SESCO,II.1.1,Chaco,AR-H,annual,2023,gas oil combustion consumption by to the public,2323.56348,TJ,CH4,3.9,kg/TJ,9061.897572,kg -0d37ff49-2dd5-3628-96a4-fce494664d79,SESCO,II.1.1,Chaco,AR-H,annual,2023,gas oil combustion consumption by to the public,2323.56348,TJ,N2O,3.9,kg/TJ,9061.897572,kg -d947fe27-94a3-3199-a887-d05a4ce76cb4,SESCO,II.1.1,Chubut,AR-U,annual,2023,gas oil combustion consumption by to the public,2677.97292,TJ,CO2,74100.0,kg/TJ,198437793.372,kg -fa80d9fa-69a6-38da-9730-9c5b256631c9,SESCO,II.1.1,Chubut,AR-U,annual,2023,gas oil combustion consumption by to the public,2677.97292,TJ,CH4,3.9,kg/TJ,10444.094388,kg -fa80d9fa-69a6-38da-9730-9c5b256631c9,SESCO,II.1.1,Chubut,AR-U,annual,2023,gas oil combustion consumption by to the public,2677.97292,TJ,N2O,3.9,kg/TJ,10444.094388,kg -205d8414-3725-3d98-916c-a2e0a6ad0897,SESCO,II.1.1,Corrientes,AR-W,annual,2023,gas oil combustion consumption by to the public,2339.45628,TJ,CO2,74100.0,kg/TJ,173353710.348,kg -67573ff8-9c00-3560-8691-fb4f38e59eea,SESCO,II.1.1,Corrientes,AR-W,annual,2023,gas oil combustion consumption by to the public,2339.45628,TJ,CH4,3.9,kg/TJ,9123.879492,kg -67573ff8-9c00-3560-8691-fb4f38e59eea,SESCO,II.1.1,Corrientes,AR-W,annual,2023,gas oil combustion consumption by to the public,2339.45628,TJ,N2O,3.9,kg/TJ,9123.879492,kg -f02559d2-e2c3-31b3-946a-b6ef7efa256f,SESCO,II.1.1,Córdoba,AR-X,annual,2023,gas oil combustion consumption by to the public,10595.0796,TJ,CO2,74100.0,kg/TJ,785095398.3599999,kg -4e80e4fd-20bd-39da-9393-b61957792ee5,SESCO,II.1.1,Córdoba,AR-X,annual,2023,gas oil combustion consumption by to the public,10595.0796,TJ,CH4,3.9,kg/TJ,41320.810439999994,kg -4e80e4fd-20bd-39da-9393-b61957792ee5,SESCO,II.1.1,Córdoba,AR-X,annual,2023,gas oil combustion consumption by to the public,10595.0796,TJ,N2O,3.9,kg/TJ,41320.810439999994,kg -32a781c1-ba85-3c0c-995a-d193b33994bc,SESCO,II.1.1,Entre Rios,AR-E,annual,2023,gas oil combustion consumption by to the public,4307.59896,TJ,CO2,74100.0,kg/TJ,319193082.93600005,kg -b3f06d80-7b5f-31b0-98ea-ba5740a35723,SESCO,II.1.1,Entre Rios,AR-E,annual,2023,gas oil combustion consumption by to the public,4307.59896,TJ,CH4,3.9,kg/TJ,16799.635944,kg -b3f06d80-7b5f-31b0-98ea-ba5740a35723,SESCO,II.1.1,Entre Rios,AR-E,annual,2023,gas oil combustion consumption by to the public,4307.59896,TJ,N2O,3.9,kg/TJ,16799.635944,kg -e8742958-83a9-3362-a827-8e2abee23dd3,SESCO,II.1.1,Formosa,AR-P,annual,2023,gas oil combustion consumption by to the public,815.37288,TJ,CO2,74100.0,kg/TJ,60419130.408,kg -d3b138ea-d393-3ae8-8f6d-d78205f31be4,SESCO,II.1.1,Formosa,AR-P,annual,2023,gas oil combustion consumption by to the public,815.37288,TJ,CH4,3.9,kg/TJ,3179.954232,kg -d3b138ea-d393-3ae8-8f6d-d78205f31be4,SESCO,II.1.1,Formosa,AR-P,annual,2023,gas oil combustion consumption by to the public,815.37288,TJ,N2O,3.9,kg/TJ,3179.954232,kg -6f412867-64bf-326e-a047-97eec206fca2,SESCO,II.1.1,Jujuy,AR-Y,annual,2023,gas oil combustion consumption by to the public,1795.12788,TJ,CO2,74100.0,kg/TJ,133018975.908,kg -cb58e59a-66e9-3e40-ba8d-c49330988bd4,SESCO,II.1.1,Jujuy,AR-Y,annual,2023,gas oil combustion consumption by to the public,1795.12788,TJ,CH4,3.9,kg/TJ,7000.998732,kg -cb58e59a-66e9-3e40-ba8d-c49330988bd4,SESCO,II.1.1,Jujuy,AR-Y,annual,2023,gas oil combustion consumption by to the public,1795.12788,TJ,N2O,3.9,kg/TJ,7000.998732,kg -0e4b5835-f178-3caf-bf8b-71527552f10b,SESCO,II.1.1,La Pampa,AR-L,annual,2023,gas oil combustion consumption by to the public,2944.7191199999997,TJ,CO2,74100.0,kg/TJ,218203686.792,kg -c4240c9a-5d19-3ade-a38f-7c82edee9188,SESCO,II.1.1,La Pampa,AR-L,annual,2023,gas oil combustion consumption by to the public,2944.7191199999997,TJ,CH4,3.9,kg/TJ,11484.404567999998,kg -c4240c9a-5d19-3ade-a38f-7c82edee9188,SESCO,II.1.1,La Pampa,AR-L,annual,2023,gas oil combustion consumption by to the public,2944.7191199999997,TJ,N2O,3.9,kg/TJ,11484.404567999998,kg -8f3c40cd-6553-309f-bf15-6fbe477afaa2,SESCO,II.1.1,La Rioja,AR-F,annual,2023,gas oil combustion consumption by to the public,601.398,TJ,CO2,74100.0,kg/TJ,44563591.800000004,kg -127a6d17-70f4-310a-b223-67df85478c3e,SESCO,II.1.1,La Rioja,AR-F,annual,2023,gas oil combustion consumption by to the public,601.398,TJ,CH4,3.9,kg/TJ,2345.4522,kg -127a6d17-70f4-310a-b223-67df85478c3e,SESCO,II.1.1,La Rioja,AR-F,annual,2023,gas oil combustion consumption by to the public,601.398,TJ,N2O,3.9,kg/TJ,2345.4522,kg -7e2cb059-555d-31b5-9f59-6b052f0debba,SESCO,II.1.1,Mendoza,AR-M,annual,2023,gas oil combustion consumption by to the public,9249.9708,TJ,CO2,74100.0,kg/TJ,685422836.28,kg -5c238853-ce93-37b6-8862-008be6cfddce,SESCO,II.1.1,Mendoza,AR-M,annual,2023,gas oil combustion consumption by to the public,9249.9708,TJ,CH4,3.9,kg/TJ,36074.886119999996,kg -5c238853-ce93-37b6-8862-008be6cfddce,SESCO,II.1.1,Mendoza,AR-M,annual,2023,gas oil combustion consumption by to the public,9249.9708,TJ,N2O,3.9,kg/TJ,36074.886119999996,kg -2312e3aa-bd67-35cf-9e55-1975a67418af,SESCO,II.1.1,Misiones,AR-N,annual,2023,gas oil combustion consumption by to the public,3559.9872,TJ,CO2,74100.0,kg/TJ,263795051.52,kg -710efea7-b0b4-3fff-9538-ee379ff6511e,SESCO,II.1.1,Misiones,AR-N,annual,2023,gas oil combustion consumption by to the public,3559.9872,TJ,CH4,3.9,kg/TJ,13883.95008,kg -710efea7-b0b4-3fff-9538-ee379ff6511e,SESCO,II.1.1,Misiones,AR-N,annual,2023,gas oil combustion consumption by to the public,3559.9872,TJ,N2O,3.9,kg/TJ,13883.95008,kg -e669fc19-8169-39c6-8bc7-eb663561deac,SESCO,II.1.1,Neuquén,AR-Q,annual,2023,gas oil combustion consumption by to the public,2056.60056,TJ,CO2,74100.0,kg/TJ,152394101.496,kg -7be9226c-5d4d-33b8-9e06-0d44500d2d23,SESCO,II.1.1,Neuquén,AR-Q,annual,2023,gas oil combustion consumption by to the public,2056.60056,TJ,CH4,3.9,kg/TJ,8020.742183999999,kg -7be9226c-5d4d-33b8-9e06-0d44500d2d23,SESCO,II.1.1,Neuquén,AR-Q,annual,2023,gas oil combustion consumption by to the public,2056.60056,TJ,N2O,3.9,kg/TJ,8020.742183999999,kg -ef11cb89-61af-3b64-be84-20f12d17ce43,SESCO,II.1.1,Rio Negro,AR-R,annual,2023,gas oil combustion consumption by to the public,3949.3608,TJ,CO2,74100.0,kg/TJ,292647635.28,kg -e463aa64-1f71-3c46-8add-05a1dbc4c45d,SESCO,II.1.1,Rio Negro,AR-R,annual,2023,gas oil combustion consumption by to the public,3949.3608,TJ,CH4,3.9,kg/TJ,15402.50712,kg -e463aa64-1f71-3c46-8add-05a1dbc4c45d,SESCO,II.1.1,Rio Negro,AR-R,annual,2023,gas oil combustion consumption by to the public,3949.3608,TJ,N2O,3.9,kg/TJ,15402.50712,kg -d6dc4b2c-7c68-3622-afd8-7dbd66a76ac5,SESCO,II.1.1,Salta,AR-A,annual,2023,gas oil combustion consumption by to the public,3811.52688,TJ,CO2,74100.0,kg/TJ,282434141.80799997,kg -32d4dbb9-e477-3daa-85e4-993376650d29,SESCO,II.1.1,Salta,AR-A,annual,2023,gas oil combustion consumption by to the public,3811.52688,TJ,CH4,3.9,kg/TJ,14864.954832,kg -32d4dbb9-e477-3daa-85e4-993376650d29,SESCO,II.1.1,Salta,AR-A,annual,2023,gas oil combustion consumption by to the public,3811.52688,TJ,N2O,3.9,kg/TJ,14864.954832,kg -5fc86388-cafb-3231-a4bc-1fdd825ab371,SESCO,II.1.1,San Juan,AR-J,annual,2023,gas oil combustion consumption by to the public,1526.6118,TJ,CO2,74100.0,kg/TJ,113121934.38,kg -0dee8b40-5323-3c2f-a0f8-a670dff79dca,SESCO,II.1.1,San Juan,AR-J,annual,2023,gas oil combustion consumption by to the public,1526.6118,TJ,CH4,3.9,kg/TJ,5953.78602,kg -0dee8b40-5323-3c2f-a0f8-a670dff79dca,SESCO,II.1.1,San Juan,AR-J,annual,2023,gas oil combustion consumption by to the public,1526.6118,TJ,N2O,3.9,kg/TJ,5953.78602,kg -5c138094-60d7-3dd5-8bae-f59e65580d59,SESCO,II.1.1,San Luis,AR-D,annual,2023,gas oil combustion consumption by to the public,1453.25208,TJ,CO2,74100.0,kg/TJ,107685979.12799999,kg -ccde7921-7569-3e7b-83b5-f7e4f25d002c,SESCO,II.1.1,San Luis,AR-D,annual,2023,gas oil combustion consumption by to the public,1453.25208,TJ,CH4,3.9,kg/TJ,5667.683112,kg -ccde7921-7569-3e7b-83b5-f7e4f25d002c,SESCO,II.1.1,San Luis,AR-D,annual,2023,gas oil combustion consumption by to the public,1453.25208,TJ,N2O,3.9,kg/TJ,5667.683112,kg -bab11c86-04d0-3c42-8ba8-826c354e88ac,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2023,gas oil combustion consumption by to the public,1669.03296,TJ,CO2,74100.0,kg/TJ,123675342.336,kg -b1f6d187-d7f4-3abd-9920-654905574cde,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2023,gas oil combustion consumption by to the public,1669.03296,TJ,CH4,3.9,kg/TJ,6509.228544,kg -b1f6d187-d7f4-3abd-9920-654905574cde,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2023,gas oil combustion consumption by to the public,1669.03296,TJ,N2O,3.9,kg/TJ,6509.228544,kg -fc1c39e2-fb4a-37e9-b1ba-220a895d13a4,SESCO,II.1.1,Santa Fe,AR-S,annual,2023,gas oil combustion consumption by to the public,7234.76376,TJ,CO2,74100.0,kg/TJ,536095994.616,kg -4073e374-1e59-32bc-bdb9-07c7296748d2,SESCO,II.1.1,Santa Fe,AR-S,annual,2023,gas oil combustion consumption by to the public,7234.76376,TJ,CH4,3.9,kg/TJ,28215.578663999997,kg -4073e374-1e59-32bc-bdb9-07c7296748d2,SESCO,II.1.1,Santa Fe,AR-S,annual,2023,gas oil combustion consumption by to the public,7234.76376,TJ,N2O,3.9,kg/TJ,28215.578663999997,kg -0e2f483a-a6b9-3dbf-92ef-74e01f89d105,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2023,gas oil combustion consumption by to the public,2363.90952,TJ,CO2,74100.0,kg/TJ,175165695.432,kg -87b4c821-9424-3fda-b043-138aef848e56,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2023,gas oil combustion consumption by to the public,2363.90952,TJ,CH4,3.9,kg/TJ,9219.247128,kg -87b4c821-9424-3fda-b043-138aef848e56,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2023,gas oil combustion consumption by to the public,2363.90952,TJ,N2O,3.9,kg/TJ,9219.247128,kg -693ca7f3-853e-3d75-8017-3662e9855422,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2023,gas oil combustion consumption by to the public,704.23164,TJ,CO2,74100.0,kg/TJ,52183564.524,kg -9e00ca30-ff8a-3e3e-ba5a-242f9bf5b1b7,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2023,gas oil combustion consumption by to the public,704.23164,TJ,CH4,3.9,kg/TJ,2746.5033959999996,kg -9e00ca30-ff8a-3e3e-ba5a-242f9bf5b1b7,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2023,gas oil combustion consumption by to the public,704.23164,TJ,N2O,3.9,kg/TJ,2746.5033959999996,kg -27e8eb84-754e-3817-a211-c7a4ff46cde0,SESCO,II.1.1,Tucuman,AR-T,annual,2023,gas oil combustion consumption by to the public,2746.2036,TJ,CO2,74100.0,kg/TJ,203493686.76,kg -4927cf16-47c1-311d-8945-4ad2a8ec455b,SESCO,II.1.1,Tucuman,AR-T,annual,2023,gas oil combustion consumption by to the public,2746.2036,TJ,CH4,3.9,kg/TJ,10710.194039999998,kg -4927cf16-47c1-311d-8945-4ad2a8ec455b,SESCO,II.1.1,Tucuman,AR-T,annual,2023,gas oil combustion consumption by to the public,2746.2036,TJ,N2O,3.9,kg/TJ,10710.194039999998,kg -6051fec0-6ced-382e-a6d8-7d6500892584,SESCO,II.1.1,Buenos Aires,AR-B,annual,2023,gas oil combustion consumption by to the public,15581.9874,TJ,CO2,74100.0,kg/TJ,1154625266.34,kg -f22c1853-50df-3305-b153-2414cc0b0393,SESCO,II.1.1,Buenos Aires,AR-B,annual,2023,gas oil combustion consumption by to the public,15581.9874,TJ,CH4,3.9,kg/TJ,60769.75086,kg -f22c1853-50df-3305-b153-2414cc0b0393,SESCO,II.1.1,Buenos Aires,AR-B,annual,2023,gas oil combustion consumption by to the public,15581.9874,TJ,N2O,3.9,kg/TJ,60769.75086,kg -005ed1dc-714f-3af1-bb80-cb28fa1a9a54,SESCO,II.1.1,Capital Federal,AR-C,annual,2023,gas oil combustion consumption by to the public,2249.84256,TJ,CO2,74100.0,kg/TJ,166713333.696,kg -04d4fb4f-e3c0-31f0-a9e8-071003f00849,SESCO,II.1.1,Capital Federal,AR-C,annual,2023,gas oil combustion consumption by to the public,2249.84256,TJ,CH4,3.9,kg/TJ,8774.385984,kg -04d4fb4f-e3c0-31f0-a9e8-071003f00849,SESCO,II.1.1,Capital Federal,AR-C,annual,2023,gas oil combustion consumption by to the public,2249.84256,TJ,N2O,3.9,kg/TJ,8774.385984,kg -7a8c8874-1295-3189-bd7a-565dc4119297,SESCO,II.1.1,Catamarca,AR-K,annual,2023,gas oil combustion consumption by to the public,607.97184,TJ,CO2,74100.0,kg/TJ,45050713.344000004,kg -24802868-ac1a-3401-afed-4b727c0c2c59,SESCO,II.1.1,Catamarca,AR-K,annual,2023,gas oil combustion consumption by to the public,607.97184,TJ,CH4,3.9,kg/TJ,2371.090176,kg -24802868-ac1a-3401-afed-4b727c0c2c59,SESCO,II.1.1,Catamarca,AR-K,annual,2023,gas oil combustion consumption by to the public,607.97184,TJ,N2O,3.9,kg/TJ,2371.090176,kg -9cb1e6b8-ca0d-3780-be8c-2c62d5f12672,SESCO,II.1.1,Chaco,AR-H,annual,2023,gas oil combustion consumption by to the public,1344.9282,TJ,CO2,74100.0,kg/TJ,99659179.62,kg -89b243e2-b544-3db2-a1af-85833aaaa2a3,SESCO,II.1.1,Chaco,AR-H,annual,2023,gas oil combustion consumption by to the public,1344.9282,TJ,CH4,3.9,kg/TJ,5245.21998,kg -89b243e2-b544-3db2-a1af-85833aaaa2a3,SESCO,II.1.1,Chaco,AR-H,annual,2023,gas oil combustion consumption by to the public,1344.9282,TJ,N2O,3.9,kg/TJ,5245.21998,kg -2a53111e-4f75-3f7d-8b71-98b678df9633,SESCO,II.1.1,Chubut,AR-U,annual,2023,gas oil combustion consumption by to the public,1813.91028,TJ,CO2,74100.0,kg/TJ,134410751.748,kg -3b48587d-73bf-30a6-97db-f569896e6705,SESCO,II.1.1,Chubut,AR-U,annual,2023,gas oil combustion consumption by to the public,1813.91028,TJ,CH4,3.9,kg/TJ,7074.250092,kg -3b48587d-73bf-30a6-97db-f569896e6705,SESCO,II.1.1,Chubut,AR-U,annual,2023,gas oil combustion consumption by to the public,1813.91028,TJ,N2O,3.9,kg/TJ,7074.250092,kg -f665ade3-4cb8-3a2e-ad4a-435b042f0d93,SESCO,II.1.1,Corrientes,AR-W,annual,2023,gas oil combustion consumption by to the public,1383.1070399999999,TJ,CO2,74100.0,kg/TJ,102488231.66399999,kg -7b7e2058-4aaa-3543-b5ff-29d4961eefc2,SESCO,II.1.1,Corrientes,AR-W,annual,2023,gas oil combustion consumption by to the public,1383.1070399999999,TJ,CH4,3.9,kg/TJ,5394.117455999999,kg -7b7e2058-4aaa-3543-b5ff-29d4961eefc2,SESCO,II.1.1,Corrientes,AR-W,annual,2023,gas oil combustion consumption by to the public,1383.1070399999999,TJ,N2O,3.9,kg/TJ,5394.117455999999,kg -3adab65b-49f3-3392-a128-1c2f05764718,SESCO,II.1.1,Córdoba,AR-X,annual,2023,gas oil combustion consumption by to the public,5387.26188,TJ,CO2,74100.0,kg/TJ,399196105.308,kg -2ac25cab-f331-38f1-9f7a-748533e29ba6,SESCO,II.1.1,Córdoba,AR-X,annual,2023,gas oil combustion consumption by to the public,5387.26188,TJ,CH4,3.9,kg/TJ,21010.321332,kg -2ac25cab-f331-38f1-9f7a-748533e29ba6,SESCO,II.1.1,Córdoba,AR-X,annual,2023,gas oil combustion consumption by to the public,5387.26188,TJ,N2O,3.9,kg/TJ,21010.321332,kg -0410edca-f38a-3c29-ac3c-8c4955d609a1,SESCO,II.1.1,Entre Rios,AR-E,annual,2023,gas oil combustion consumption by to the public,1862.31108,TJ,CO2,74100.0,kg/TJ,137997251.028,kg -87505067-29d7-3677-9aeb-f093f9c0595f,SESCO,II.1.1,Entre Rios,AR-E,annual,2023,gas oil combustion consumption by to the public,1862.31108,TJ,CH4,3.9,kg/TJ,7263.013212,kg -87505067-29d7-3677-9aeb-f093f9c0595f,SESCO,II.1.1,Entre Rios,AR-E,annual,2023,gas oil combustion consumption by to the public,1862.31108,TJ,N2O,3.9,kg/TJ,7263.013212,kg -6a56fced-4977-3ff5-9173-c95bdbbc7944,SESCO,II.1.1,Formosa,AR-P,annual,2023,gas oil combustion consumption by to the public,566.46996,TJ,CO2,74100.0,kg/TJ,41975424.036,kg -f9751041-e045-341f-a460-dadd53885b87,SESCO,II.1.1,Formosa,AR-P,annual,2023,gas oil combustion consumption by to the public,566.46996,TJ,CH4,3.9,kg/TJ,2209.232844,kg -f9751041-e045-341f-a460-dadd53885b87,SESCO,II.1.1,Formosa,AR-P,annual,2023,gas oil combustion consumption by to the public,566.46996,TJ,N2O,3.9,kg/TJ,2209.232844,kg -7252e03a-abec-32a1-8ae1-6d854661f669,SESCO,II.1.1,Jujuy,AR-Y,annual,2023,gas oil combustion consumption by to the public,1012.66032,TJ,CO2,74100.0,kg/TJ,75038129.712,kg -087afe47-a924-3424-81b1-e62a4b0b571e,SESCO,II.1.1,Jujuy,AR-Y,annual,2023,gas oil combustion consumption by to the public,1012.66032,TJ,CH4,3.9,kg/TJ,3949.375248,kg -087afe47-a924-3424-81b1-e62a4b0b571e,SESCO,II.1.1,Jujuy,AR-Y,annual,2023,gas oil combustion consumption by to the public,1012.66032,TJ,N2O,3.9,kg/TJ,3949.375248,kg -0ddaebb4-9f12-3ec3-a422-b0d82ca821ec,SESCO,II.1.1,La Pampa,AR-L,annual,2023,gas oil combustion consumption by to the public,1366.70856,TJ,CO2,74100.0,kg/TJ,101273104.296,kg -00eb5987-8c6e-325a-92cf-d3def1891098,SESCO,II.1.1,La Pampa,AR-L,annual,2023,gas oil combustion consumption by to the public,1366.70856,TJ,CH4,3.9,kg/TJ,5330.163384,kg -00eb5987-8c6e-325a-92cf-d3def1891098,SESCO,II.1.1,La Pampa,AR-L,annual,2023,gas oil combustion consumption by to the public,1366.70856,TJ,N2O,3.9,kg/TJ,5330.163384,kg -94e4af64-82d0-3d25-83f3-d9e7e78e475e,SESCO,II.1.1,La Rioja,AR-F,annual,2023,gas oil combustion consumption by to the public,594.7158,TJ,CO2,74100.0,kg/TJ,44068440.779999994,kg -e26fa67b-8dcc-32f8-9a37-02db0c43252a,SESCO,II.1.1,La Rioja,AR-F,annual,2023,gas oil combustion consumption by to the public,594.7158,TJ,CH4,3.9,kg/TJ,2319.39162,kg -e26fa67b-8dcc-32f8-9a37-02db0c43252a,SESCO,II.1.1,La Rioja,AR-F,annual,2023,gas oil combustion consumption by to the public,594.7158,TJ,N2O,3.9,kg/TJ,2319.39162,kg -9c41da75-92fc-3944-97da-bf98c885d2d8,SESCO,II.1.1,Mendoza,AR-M,annual,2023,gas oil combustion consumption by to the public,4210.43616,TJ,CO2,74100.0,kg/TJ,311993319.45600003,kg -f44af240-6c78-3a9f-a5a5-91d323b2de3f,SESCO,II.1.1,Mendoza,AR-M,annual,2023,gas oil combustion consumption by to the public,4210.43616,TJ,CH4,3.9,kg/TJ,16420.701024,kg -f44af240-6c78-3a9f-a5a5-91d323b2de3f,SESCO,II.1.1,Mendoza,AR-M,annual,2023,gas oil combustion consumption by to the public,4210.43616,TJ,N2O,3.9,kg/TJ,16420.701024,kg -ef9ecb7a-4a7a-3413-a020-539d5612a58f,SESCO,II.1.1,Misiones,AR-N,annual,2023,gas oil combustion consumption by to the public,1586.49876,TJ,CO2,74100.0,kg/TJ,117559558.116,kg -dccbf49c-7aa6-3447-9f76-6e1f3af11e92,SESCO,II.1.1,Misiones,AR-N,annual,2023,gas oil combustion consumption by to the public,1586.49876,TJ,CH4,3.9,kg/TJ,6187.345163999999,kg -dccbf49c-7aa6-3447-9f76-6e1f3af11e92,SESCO,II.1.1,Misiones,AR-N,annual,2023,gas oil combustion consumption by to the public,1586.49876,TJ,N2O,3.9,kg/TJ,6187.345163999999,kg -7af93395-969c-3394-acf8-948373b131ec,SESCO,II.1.1,Neuquén,AR-Q,annual,2023,gas oil combustion consumption by to the public,2776.79724,TJ,CO2,74100.0,kg/TJ,205760675.484,kg -5ddfe43c-a618-3a72-9390-9230c20d6253,SESCO,II.1.1,Neuquén,AR-Q,annual,2023,gas oil combustion consumption by to the public,2776.79724,TJ,CH4,3.9,kg/TJ,10829.509236,kg -5ddfe43c-a618-3a72-9390-9230c20d6253,SESCO,II.1.1,Neuquén,AR-Q,annual,2023,gas oil combustion consumption by to the public,2776.79724,TJ,N2O,3.9,kg/TJ,10829.509236,kg -4fd195b0-19f6-3899-b3db-ebd1e40ec5a0,SESCO,II.1.1,Rio Negro,AR-R,annual,2023,gas oil combustion consumption by to the public,2145.7086,TJ,CO2,74100.0,kg/TJ,158997007.26,kg -a4229f78-8785-30f4-951f-fbff4f18c973,SESCO,II.1.1,Rio Negro,AR-R,annual,2023,gas oil combustion consumption by to the public,2145.7086,TJ,CH4,3.9,kg/TJ,8368.26354,kg -a4229f78-8785-30f4-951f-fbff4f18c973,SESCO,II.1.1,Rio Negro,AR-R,annual,2023,gas oil combustion consumption by to the public,2145.7086,TJ,N2O,3.9,kg/TJ,8368.26354,kg -0182d26f-0f33-3289-8cfa-e615ff58c760,SESCO,II.1.1,Salta,AR-A,annual,2023,gas oil combustion consumption by to the public,2290.1524799999997,TJ,CO2,74100.0,kg/TJ,169700298.76799998,kg -c56675b1-be89-3fec-93e5-6490453b24ed,SESCO,II.1.1,Salta,AR-A,annual,2023,gas oil combustion consumption by to the public,2290.1524799999997,TJ,CH4,3.9,kg/TJ,8931.594672,kg -c56675b1-be89-3fec-93e5-6490453b24ed,SESCO,II.1.1,Salta,AR-A,annual,2023,gas oil combustion consumption by to the public,2290.1524799999997,TJ,N2O,3.9,kg/TJ,8931.594672,kg -e25f7523-1b3c-34c8-b583-1a7de0939894,SESCO,II.1.1,San Juan,AR-J,annual,2023,gas oil combustion consumption by to the public,778.16928,TJ,CO2,74100.0,kg/TJ,57662343.647999994,kg -e7362d83-8d2e-33c5-b404-244d55c1aa9e,SESCO,II.1.1,San Juan,AR-J,annual,2023,gas oil combustion consumption by to the public,778.16928,TJ,CH4,3.9,kg/TJ,3034.8601919999996,kg -e7362d83-8d2e-33c5-b404-244d55c1aa9e,SESCO,II.1.1,San Juan,AR-J,annual,2023,gas oil combustion consumption by to the public,778.16928,TJ,N2O,3.9,kg/TJ,3034.8601919999996,kg -f322ff1e-586d-3074-983a-175f0959cb5d,SESCO,II.1.1,San Luis,AR-D,annual,2023,gas oil combustion consumption by to the public,702.75072,TJ,CO2,74100.0,kg/TJ,52073828.352,kg -5ab20e74-1f87-32c2-9ec1-a0b675c85912,SESCO,II.1.1,San Luis,AR-D,annual,2023,gas oil combustion consumption by to the public,702.75072,TJ,CH4,3.9,kg/TJ,2740.727808,kg -5ab20e74-1f87-32c2-9ec1-a0b675c85912,SESCO,II.1.1,San Luis,AR-D,annual,2023,gas oil combustion consumption by to the public,702.75072,TJ,N2O,3.9,kg/TJ,2740.727808,kg -53689d8c-919f-39d8-a6d6-977a8e29ada3,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2023,gas oil combustion consumption by to the public,1704.79176,TJ,CO2,74100.0,kg/TJ,126325069.41600001,kg -b19d4f05-889d-3742-b619-74e5ece4111d,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2023,gas oil combustion consumption by to the public,1704.79176,TJ,CH4,3.9,kg/TJ,6648.687864,kg -b19d4f05-889d-3742-b619-74e5ece4111d,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2023,gas oil combustion consumption by to the public,1704.79176,TJ,N2O,3.9,kg/TJ,6648.687864,kg -31f4feda-46b5-345f-9987-2f892caed15b,SESCO,II.1.1,Santa Fe,AR-S,annual,2023,gas oil combustion consumption by to the public,3827.20296,TJ,CO2,74100.0,kg/TJ,283595739.336,kg -eef6acf6-a154-3ec0-95c3-7a77be80eac6,SESCO,II.1.1,Santa Fe,AR-S,annual,2023,gas oil combustion consumption by to the public,3827.20296,TJ,CH4,3.9,kg/TJ,14926.091544,kg -eef6acf6-a154-3ec0-95c3-7a77be80eac6,SESCO,II.1.1,Santa Fe,AR-S,annual,2023,gas oil combustion consumption by to the public,3827.20296,TJ,N2O,3.9,kg/TJ,14926.091544,kg -53344c3f-e901-3ceb-8499-66ce31948864,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2023,gas oil combustion consumption by to the public,1089.16248,TJ,CO2,74100.0,kg/TJ,80706939.76799999,kg -81ecfdf6-031d-31bd-9e0c-a91c98ad0793,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2023,gas oil combustion consumption by to the public,1089.16248,TJ,CH4,3.9,kg/TJ,4247.733671999999,kg -81ecfdf6-031d-31bd-9e0c-a91c98ad0793,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2023,gas oil combustion consumption by to the public,1089.16248,TJ,N2O,3.9,kg/TJ,4247.733671999999,kg -195dc3de-ea2e-30fe-aeb3-2dd74e9a5d16,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2023,gas oil combustion consumption by to the public,409.42019999999997,TJ,CO2,74100.0,kg/TJ,30338036.819999997,kg -63af79ce-bc6e-3453-bba9-0dc482b4fbcf,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2023,gas oil combustion consumption by to the public,409.42019999999997,TJ,CH4,3.9,kg/TJ,1596.73878,kg -63af79ce-bc6e-3453-bba9-0dc482b4fbcf,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2023,gas oil combustion consumption by to the public,409.42019999999997,TJ,N2O,3.9,kg/TJ,1596.73878,kg -ccbb208d-0729-305d-98cd-474a1ce7c589,SESCO,II.1.1,Tucuman,AR-T,annual,2023,gas oil combustion consumption by to the public,1550.2703999999999,TJ,CO2,74100.0,kg/TJ,114875036.63999999,kg -db1a0867-d633-3865-97b5-b3c74cb25eb7,SESCO,II.1.1,Tucuman,AR-T,annual,2023,gas oil combustion consumption by to the public,1550.2703999999999,TJ,CH4,3.9,kg/TJ,6046.05456,kg -db1a0867-d633-3865-97b5-b3c74cb25eb7,SESCO,II.1.1,Tucuman,AR-T,annual,2023,gas oil combustion consumption by to the public,1550.2703999999999,TJ,N2O,3.9,kg/TJ,6046.05456,kg -f186e2c1-ef4b-3a96-8362-15ec40ca06e8,SESCO,II.1.1,Buenos Aires,AR-B,annual,2023,jet kerosene combustion consumption by to the public,88.57164799999998,TJ,CO2,71500.0,kg/TJ,6332872.831999999,kg -0c09a821-2170-3f3d-a7b0-bc3c5cc00900,SESCO,II.1.1,Buenos Aires,AR-B,annual,2023,jet kerosene combustion consumption by to the public,88.57164799999998,TJ,CH4,0.5,kg/TJ,44.28582399999999,kg -b18094b1-5724-3142-9071-aa4cd1f35ca3,SESCO,II.1.1,Buenos Aires,AR-B,annual,2023,jet kerosene combustion consumption by to the public,88.57164799999998,TJ,N2O,2.0,kg/TJ,177.14329599999996,kg -cb4b8848-4726-3e02-b2e5-aa1c7d276730,SESCO,II.1.1,Capital Federal,AR-C,annual,2023,jet kerosene combustion consumption by to the public,2.6105989999999997,TJ,CO2,71500.0,kg/TJ,186657.82849999997,kg -0e9e239f-9672-38e1-8d02-03e544a4cdd9,SESCO,II.1.1,Capital Federal,AR-C,annual,2023,jet kerosene combustion consumption by to the public,2.6105989999999997,TJ,CH4,0.5,kg/TJ,1.3052994999999998,kg -ddf9bd17-deae-31dd-91a2-2f1372fff32e,SESCO,II.1.1,Capital Federal,AR-C,annual,2023,jet kerosene combustion consumption by to the public,2.6105989999999997,TJ,N2O,2.0,kg/TJ,5.221197999999999,kg -9b6d9681-645c-3f0b-aa04-e874853f6f4c,SESCO,II.1.1,Catamarca,AR-K,annual,2023,jet kerosene combustion consumption by to the public,3.0823939999999994,TJ,CO2,71500.0,kg/TJ,220391.17099999994,kg -ce707b9e-b63c-36ad-8755-e133a14d5964,SESCO,II.1.1,Catamarca,AR-K,annual,2023,jet kerosene combustion consumption by to the public,3.0823939999999994,TJ,CH4,0.5,kg/TJ,1.5411969999999997,kg -e6e9be18-65d5-32e9-8539-eefc25b44908,SESCO,II.1.1,Catamarca,AR-K,annual,2023,jet kerosene combustion consumption by to the public,3.0823939999999994,TJ,N2O,2.0,kg/TJ,6.164787999999999,kg -1c2f62a0-9ea6-33fb-8c24-3626db64e017,SESCO,II.1.1,Chubut,AR-U,annual,2023,jet kerosene combustion consumption by to the public,8.586668999999999,TJ,CO2,71500.0,kg/TJ,613946.8335,kg -34e32aa9-09fc-3530-8904-9ff4cf4a644b,SESCO,II.1.1,Chubut,AR-U,annual,2023,jet kerosene combustion consumption by to the public,8.586668999999999,TJ,CH4,0.5,kg/TJ,4.293334499999999,kg -a842024c-a3f7-31cd-b58e-98c5c2aed846,SESCO,II.1.1,Chubut,AR-U,annual,2023,jet kerosene combustion consumption by to the public,8.586668999999999,TJ,N2O,2.0,kg/TJ,17.173337999999998,kg -d218cb3e-1f97-3bf0-a7e9-afd975182275,SESCO,II.1.1,Corrientes,AR-W,annual,2023,jet kerosene combustion consumption by to the public,1.1323079999999999,TJ,CO2,71500.0,kg/TJ,80960.022,kg -772858b4-810c-3ab0-8398-e9ee0b539db1,SESCO,II.1.1,Corrientes,AR-W,annual,2023,jet kerosene combustion consumption by to the public,1.1323079999999999,TJ,CH4,0.5,kg/TJ,0.5661539999999999,kg -9a0c8c97-fcb6-3d46-bf9f-c5371de66f08,SESCO,II.1.1,Corrientes,AR-W,annual,2023,jet kerosene combustion consumption by to the public,1.1323079999999999,TJ,N2O,2.0,kg/TJ,2.2646159999999997,kg -5f0801b0-1cb0-32e6-87db-d5b648c43e55,SESCO,II.1.1,Córdoba,AR-X,annual,2023,jet kerosene combustion consumption by to the public,25.539835999999998,TJ,CO2,71500.0,kg/TJ,1826098.2739999997,kg -5c353a25-b234-305f-8b21-f8b396bcb8bc,SESCO,II.1.1,Córdoba,AR-X,annual,2023,jet kerosene combustion consumption by to the public,25.539835999999998,TJ,CH4,0.5,kg/TJ,12.769917999999999,kg -fefacdb2-057d-3c8c-ba4f-4f0bc8cb15f4,SESCO,II.1.1,Córdoba,AR-X,annual,2023,jet kerosene combustion consumption by to the public,25.539835999999998,TJ,N2O,2.0,kg/TJ,51.079671999999995,kg -6d282fd7-964c-3eed-ab46-62adc6825fae,SESCO,II.1.1,Entre Rios,AR-E,annual,2023,jet kerosene combustion consumption by to the public,3.3654709999999994,TJ,CO2,71500.0,kg/TJ,240631.17649999997,kg -0a92c236-fe04-323a-8c0c-5e89bf015bc9,SESCO,II.1.1,Entre Rios,AR-E,annual,2023,jet kerosene combustion consumption by to the public,3.3654709999999994,TJ,CH4,0.5,kg/TJ,1.6827354999999997,kg -0c0680c8-1774-3aa9-a195-f1ac890fe63b,SESCO,II.1.1,Entre Rios,AR-E,annual,2023,jet kerosene combustion consumption by to the public,3.3654709999999994,TJ,N2O,2.0,kg/TJ,6.730941999999999,kg -334cf7a3-37b6-35e3-ae72-71f67b7bc69a,SESCO,II.1.1,La Pampa,AR-L,annual,2023,jet kerosene combustion consumption by to the public,2.1388039999999995,TJ,CO2,71500.0,kg/TJ,152924.48599999998,kg -4b976a0f-8b91-337c-bf0a-333607a942ff,SESCO,II.1.1,La Pampa,AR-L,annual,2023,jet kerosene combustion consumption by to the public,2.1388039999999995,TJ,CH4,0.5,kg/TJ,1.0694019999999997,kg -62120822-d614-3248-8898-5457fc7f4445,SESCO,II.1.1,La Pampa,AR-L,annual,2023,jet kerosene combustion consumption by to the public,2.1388039999999995,TJ,N2O,2.0,kg/TJ,4.277607999999999,kg -19ddfa37-c53d-3a80-aef4-048a2baf31be,SESCO,II.1.1,La Rioja,AR-F,annual,2023,jet kerosene combustion consumption by to the public,0.9750429999999999,TJ,CO2,71500.0,kg/TJ,69715.57449999999,kg -04ec966d-61af-3fdd-8bde-b2e87f78d696,SESCO,II.1.1,La Rioja,AR-F,annual,2023,jet kerosene combustion consumption by to the public,0.9750429999999999,TJ,CH4,0.5,kg/TJ,0.48752149999999994,kg -d5345c0d-1a70-3cdb-9782-c7e66b3e3a40,SESCO,II.1.1,La Rioja,AR-F,annual,2023,jet kerosene combustion consumption by to the public,0.9750429999999999,TJ,N2O,2.0,kg/TJ,1.9500859999999998,kg -a3dfa245-bf4a-3fa8-8618-1b40300710b2,SESCO,II.1.1,Mendoza,AR-M,annual,2023,jet kerosene combustion consumption by to the public,10.096412999999998,TJ,CO2,71500.0,kg/TJ,721893.5294999998,kg -d20feb17-70f3-3eff-a925-904b9072bc09,SESCO,II.1.1,Mendoza,AR-M,annual,2023,jet kerosene combustion consumption by to the public,10.096412999999998,TJ,CH4,0.5,kg/TJ,5.048206499999999,kg -1f003975-f645-3e3c-bc3e-5d17d5d79636,SESCO,II.1.1,Mendoza,AR-M,annual,2023,jet kerosene combustion consumption by to the public,10.096412999999998,TJ,N2O,2.0,kg/TJ,20.192825999999997,kg -4a391a51-728d-3e34-87a0-4a30ec2c7339,SESCO,II.1.1,Neuquén,AR-Q,annual,2023,jet kerosene combustion consumption by to the public,5.378462999999999,TJ,CO2,71500.0,kg/TJ,384560.10449999996,kg -c60b8648-047a-3569-a451-2ed439465a64,SESCO,II.1.1,Neuquén,AR-Q,annual,2023,jet kerosene combustion consumption by to the public,5.378462999999999,TJ,CH4,0.5,kg/TJ,2.6892314999999996,kg -c91d2df5-c46f-3bb4-86b5-03b21ab0f96c,SESCO,II.1.1,Neuquén,AR-Q,annual,2023,jet kerosene combustion consumption by to the public,5.378462999999999,TJ,N2O,2.0,kg/TJ,10.756925999999998,kg -221bb477-1ef7-3051-889c-debd86525d38,SESCO,II.1.1,San Juan,AR-J,annual,2023,jet kerosene combustion consumption by to the public,2.51624,TJ,CO2,71500.0,kg/TJ,179911.15999999997,kg -973ade35-85bc-3588-87d9-58a00e7950c2,SESCO,II.1.1,San Juan,AR-J,annual,2023,jet kerosene combustion consumption by to the public,2.51624,TJ,CH4,0.5,kg/TJ,1.25812,kg -acb6411c-1db9-3e62-846c-4c0af0d0810a,SESCO,II.1.1,San Juan,AR-J,annual,2023,jet kerosene combustion consumption by to the public,2.51624,TJ,N2O,2.0,kg/TJ,5.03248,kg -5e2eb0ba-bede-348d-9033-245e596b69e7,SESCO,II.1.1,San Luis,AR-D,annual,2023,jet kerosene combustion consumption by to the public,2.5476929999999998,TJ,CO2,71500.0,kg/TJ,182160.0495,kg -54ab2e48-5268-3582-87c4-63882312278d,SESCO,II.1.1,San Luis,AR-D,annual,2023,jet kerosene combustion consumption by to the public,2.5476929999999998,TJ,CH4,0.5,kg/TJ,1.2738464999999999,kg -798df565-a80c-3705-ad0d-ee18679e3171,SESCO,II.1.1,San Luis,AR-D,annual,2023,jet kerosene combustion consumption by to the public,2.5476929999999998,TJ,N2O,2.0,kg/TJ,5.0953859999999995,kg -6fd9bbfd-ab1a-366d-910e-b41f3d431f0e,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2023,jet kerosene combustion consumption by to the public,0.157265,TJ,CO2,71500.0,kg/TJ,11244.447499999998,kg -4e715e2a-ae43-3565-8ccb-805e7cb8ffa0,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2023,jet kerosene combustion consumption by to the public,0.157265,TJ,CH4,0.5,kg/TJ,0.0786325,kg -7037e244-0541-349e-85ae-a084c68d59ba,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2023,jet kerosene combustion consumption by to the public,0.157265,TJ,N2O,2.0,kg/TJ,0.31453,kg -87be8ba9-f9ed-38e7-b91c-e7a6f6efd777,SESCO,II.1.1,Santa Fe,AR-S,annual,2023,jet kerosene combustion consumption by to the public,15.820858999999997,TJ,CO2,71500.0,kg/TJ,1131191.4184999997,kg -2307fbd5-505a-3394-a7ae-d974411235c7,SESCO,II.1.1,Santa Fe,AR-S,annual,2023,jet kerosene combustion consumption by to the public,15.820858999999997,TJ,CH4,0.5,kg/TJ,7.9104294999999984,kg -a701206a-9968-3a31-8858-704bd0fb1c56,SESCO,II.1.1,Santa Fe,AR-S,annual,2023,jet kerosene combustion consumption by to the public,15.820858999999997,TJ,N2O,2.0,kg/TJ,31.641717999999994,kg -bca10050-820f-3b0b-9d31-fde43ebbea7e,SESCO,II.1.1,Tucuman,AR-T,annual,2023,jet kerosene combustion consumption by to the public,8.838292999999998,TJ,CO2,71500.0,kg/TJ,631937.9494999999,kg -30f5148f-d6c7-383b-9ee0-70faa07afcfa,SESCO,II.1.1,Tucuman,AR-T,annual,2023,jet kerosene combustion consumption by to the public,8.838292999999998,TJ,CH4,0.5,kg/TJ,4.419146499999999,kg -af3d0a06-baa3-39b8-94ef-bc41b68a951e,SESCO,II.1.1,Tucuman,AR-T,annual,2023,jet kerosene combustion consumption by to the public,8.838292999999998,TJ,N2O,2.0,kg/TJ,17.676585999999997,kg -761f39a9-d94a-3044-9b07-fe4fbac70261,SESCO,II.1.1,Buenos Aires,AR-B,annual,2023,gas oil combustion consumption by freight transport,12976.2906,TJ,CO2,74100.0,kg/TJ,961543133.46,kg -06cb629b-b390-3c53-8406-898bb7b679fa,SESCO,II.1.1,Buenos Aires,AR-B,annual,2023,gas oil combustion consumption by freight transport,12976.2906,TJ,CH4,3.9,kg/TJ,50607.53334,kg -06cb629b-b390-3c53-8406-898bb7b679fa,SESCO,II.1.1,Buenos Aires,AR-B,annual,2023,gas oil combustion consumption by freight transport,12976.2906,TJ,N2O,3.9,kg/TJ,50607.53334,kg -a8d810cf-c90a-345c-8fdb-60a126e316b6,SESCO,II.1.1,Capital Federal,AR-C,annual,2023,gas oil combustion consumption by freight transport,964.69296,TJ,CO2,74100.0,kg/TJ,71483748.336,kg -47658663-14b6-3595-9099-6b1c1dc2a669,SESCO,II.1.1,Capital Federal,AR-C,annual,2023,gas oil combustion consumption by freight transport,964.69296,TJ,CH4,3.9,kg/TJ,3762.3025439999997,kg -47658663-14b6-3595-9099-6b1c1dc2a669,SESCO,II.1.1,Capital Federal,AR-C,annual,2023,gas oil combustion consumption by freight transport,964.69296,TJ,N2O,3.9,kg/TJ,3762.3025439999997,kg -4114cc78-6aa3-3960-8572-bea2f64effc0,SESCO,II.1.1,Catamarca,AR-K,annual,2023,gas oil combustion consumption by freight transport,81.95627999999999,TJ,CO2,74100.0,kg/TJ,6072960.347999999,kg -6e8c38df-ca81-3b20-8b82-8f37d69728d1,SESCO,II.1.1,Catamarca,AR-K,annual,2023,gas oil combustion consumption by freight transport,81.95627999999999,TJ,CH4,3.9,kg/TJ,319.62949199999997,kg -6e8c38df-ca81-3b20-8b82-8f37d69728d1,SESCO,II.1.1,Catamarca,AR-K,annual,2023,gas oil combustion consumption by freight transport,81.95627999999999,TJ,N2O,3.9,kg/TJ,319.62949199999997,kg -91b6e799-87a0-3985-9694-e41b35472b84,SESCO,II.1.1,Chaco,AR-H,annual,2023,gas oil combustion consumption by freight transport,436.04064,TJ,CO2,74100.0,kg/TJ,32310611.424,kg -1b229275-e104-388c-88cf-9f4c1577be95,SESCO,II.1.1,Chaco,AR-H,annual,2023,gas oil combustion consumption by freight transport,436.04064,TJ,CH4,3.9,kg/TJ,1700.5584959999999,kg -1b229275-e104-388c-88cf-9f4c1577be95,SESCO,II.1.1,Chaco,AR-H,annual,2023,gas oil combustion consumption by freight transport,436.04064,TJ,N2O,3.9,kg/TJ,1700.5584959999999,kg -dd6dc6d1-cb73-384d-bc83-5a087b623d60,SESCO,II.1.1,Chubut,AR-U,annual,2023,gas oil combustion consumption by freight transport,892.164,TJ,CO2,74100.0,kg/TJ,66109352.4,kg -87dca691-502f-3732-a3fb-9ccd76392bcd,SESCO,II.1.1,Chubut,AR-U,annual,2023,gas oil combustion consumption by freight transport,892.164,TJ,CH4,3.9,kg/TJ,3479.4395999999997,kg -87dca691-502f-3732-a3fb-9ccd76392bcd,SESCO,II.1.1,Chubut,AR-U,annual,2023,gas oil combustion consumption by freight transport,892.164,TJ,N2O,3.9,kg/TJ,3479.4395999999997,kg -9c6dc021-9214-3882-ac3b-0a29b7373b0f,SESCO,II.1.1,Corrientes,AR-W,annual,2023,gas oil combustion consumption by freight transport,836.86428,TJ,CO2,74100.0,kg/TJ,62011643.148,kg -ab178dee-3e52-3e38-ad0f-417869475502,SESCO,II.1.1,Corrientes,AR-W,annual,2023,gas oil combustion consumption by freight transport,836.86428,TJ,CH4,3.9,kg/TJ,3263.770692,kg -ab178dee-3e52-3e38-ad0f-417869475502,SESCO,II.1.1,Corrientes,AR-W,annual,2023,gas oil combustion consumption by freight transport,836.86428,TJ,N2O,3.9,kg/TJ,3263.770692,kg -d4220e58-75fc-3254-8d38-29e85a942a25,SESCO,II.1.1,Córdoba,AR-X,annual,2023,gas oil combustion consumption by freight transport,3070.23612,TJ,CO2,74100.0,kg/TJ,227504496.492,kg -11c33551-3b33-353a-bcc3-5ef462566d45,SESCO,II.1.1,Córdoba,AR-X,annual,2023,gas oil combustion consumption by freight transport,3070.23612,TJ,CH4,3.9,kg/TJ,11973.920868,kg -11c33551-3b33-353a-bcc3-5ef462566d45,SESCO,II.1.1,Córdoba,AR-X,annual,2023,gas oil combustion consumption by freight transport,3070.23612,TJ,N2O,3.9,kg/TJ,11973.920868,kg -5350117f-081e-3bd9-aa61-f54994c9b328,SESCO,II.1.1,Entre Rios,AR-E,annual,2023,gas oil combustion consumption by freight transport,1276.33632,TJ,CO2,74100.0,kg/TJ,94576521.31199999,kg -6c4b0551-1745-32c3-b207-779a0c228f2b,SESCO,II.1.1,Entre Rios,AR-E,annual,2023,gas oil combustion consumption by freight transport,1276.33632,TJ,CH4,3.9,kg/TJ,4977.7116479999995,kg -6c4b0551-1745-32c3-b207-779a0c228f2b,SESCO,II.1.1,Entre Rios,AR-E,annual,2023,gas oil combustion consumption by freight transport,1276.33632,TJ,N2O,3.9,kg/TJ,4977.7116479999995,kg -adce6dbf-9e10-3f49-b913-2bb1467581ca,SESCO,II.1.1,Formosa,AR-P,annual,2023,gas oil combustion consumption by freight transport,87.37428,TJ,CO2,74100.0,kg/TJ,6474434.148,kg -ff596419-2588-3287-84dc-c73553ea03d9,SESCO,II.1.1,Formosa,AR-P,annual,2023,gas oil combustion consumption by freight transport,87.37428,TJ,CH4,3.9,kg/TJ,340.759692,kg -ff596419-2588-3287-84dc-c73553ea03d9,SESCO,II.1.1,Formosa,AR-P,annual,2023,gas oil combustion consumption by freight transport,87.37428,TJ,N2O,3.9,kg/TJ,340.759692,kg -08c4571b-372e-34d6-b15c-3019cf777c94,SESCO,II.1.1,Jujuy,AR-Y,annual,2023,gas oil combustion consumption by freight transport,194.79516,TJ,CO2,74100.0,kg/TJ,14434321.356,kg -d01206e7-9234-3ce4-abf2-846d2125538f,SESCO,II.1.1,Jujuy,AR-Y,annual,2023,gas oil combustion consumption by freight transport,194.79516,TJ,CH4,3.9,kg/TJ,759.701124,kg -d01206e7-9234-3ce4-abf2-846d2125538f,SESCO,II.1.1,Jujuy,AR-Y,annual,2023,gas oil combustion consumption by freight transport,194.79516,TJ,N2O,3.9,kg/TJ,759.701124,kg -9b7071b7-5011-3e6c-a4e8-c3a055603e08,SESCO,II.1.1,La Pampa,AR-L,annual,2023,gas oil combustion consumption by freight transport,1265.0307599999999,TJ,CO2,74100.0,kg/TJ,93738779.31599998,kg -7b6685b0-e194-3e2e-9e6e-bde91be241d0,SESCO,II.1.1,La Pampa,AR-L,annual,2023,gas oil combustion consumption by freight transport,1265.0307599999999,TJ,CH4,3.9,kg/TJ,4933.6199639999995,kg -7b6685b0-e194-3e2e-9e6e-bde91be241d0,SESCO,II.1.1,La Pampa,AR-L,annual,2023,gas oil combustion consumption by freight transport,1265.0307599999999,TJ,N2O,3.9,kg/TJ,4933.6199639999995,kg -24e7f61c-d13b-3186-8efa-9a0c63197a29,SESCO,II.1.1,La Rioja,AR-F,annual,2023,gas oil combustion consumption by freight transport,107.457,TJ,CO2,74100.0,kg/TJ,7962563.699999999,kg -2b417467-530d-39cc-b393-9713341cba06,SESCO,II.1.1,La Rioja,AR-F,annual,2023,gas oil combustion consumption by freight transport,107.457,TJ,CH4,3.9,kg/TJ,419.0823,kg -2b417467-530d-39cc-b393-9713341cba06,SESCO,II.1.1,La Rioja,AR-F,annual,2023,gas oil combustion consumption by freight transport,107.457,TJ,N2O,3.9,kg/TJ,419.0823,kg -cf9f96f6-aca6-34de-8af8-da0bc6c2eb38,SESCO,II.1.1,Mendoza,AR-M,annual,2023,gas oil combustion consumption by freight transport,1688.93508,TJ,CO2,74100.0,kg/TJ,125150089.428,kg -3eeb8144-c8af-3ea8-9465-2be8f55e7054,SESCO,II.1.1,Mendoza,AR-M,annual,2023,gas oil combustion consumption by freight transport,1688.93508,TJ,CH4,3.9,kg/TJ,6586.846812,kg -3eeb8144-c8af-3ea8-9465-2be8f55e7054,SESCO,II.1.1,Mendoza,AR-M,annual,2023,gas oil combustion consumption by freight transport,1688.93508,TJ,N2O,3.9,kg/TJ,6586.846812,kg -ebadc4a0-7795-30fd-b945-826d7375e45b,SESCO,II.1.1,Misiones,AR-N,annual,2023,gas oil combustion consumption by freight transport,492.38784,TJ,CO2,74100.0,kg/TJ,36485938.944,kg -596a1243-52c9-3f17-9a4e-7e2e25e4752c,SESCO,II.1.1,Misiones,AR-N,annual,2023,gas oil combustion consumption by freight transport,492.38784,TJ,CH4,3.9,kg/TJ,1920.3125759999998,kg -596a1243-52c9-3f17-9a4e-7e2e25e4752c,SESCO,II.1.1,Misiones,AR-N,annual,2023,gas oil combustion consumption by freight transport,492.38784,TJ,N2O,3.9,kg/TJ,1920.3125759999998,kg -76ea7ac0-10a3-35e4-9ed5-ac21b15e53d4,SESCO,II.1.1,Neuquén,AR-Q,annual,2023,gas oil combustion consumption by freight transport,1243.10592,TJ,CO2,74100.0,kg/TJ,92114148.67199999,kg -d6a99a34-049a-3ab5-9885-38df64894434,SESCO,II.1.1,Neuquén,AR-Q,annual,2023,gas oil combustion consumption by freight transport,1243.10592,TJ,CH4,3.9,kg/TJ,4848.113088,kg -d6a99a34-049a-3ab5-9885-38df64894434,SESCO,II.1.1,Neuquén,AR-Q,annual,2023,gas oil combustion consumption by freight transport,1243.10592,TJ,N2O,3.9,kg/TJ,4848.113088,kg -05fed763-ddd9-3099-91cb-6623065750b6,SESCO,II.1.1,Rio Negro,AR-R,annual,2023,gas oil combustion consumption by freight transport,1537.33944,TJ,CO2,74100.0,kg/TJ,113916852.504,kg -8c07c68d-76e9-38ad-a0a8-c6f0888fa6eb,SESCO,II.1.1,Rio Negro,AR-R,annual,2023,gas oil combustion consumption by freight transport,1537.33944,TJ,CH4,3.9,kg/TJ,5995.623815999999,kg -8c07c68d-76e9-38ad-a0a8-c6f0888fa6eb,SESCO,II.1.1,Rio Negro,AR-R,annual,2023,gas oil combustion consumption by freight transport,1537.33944,TJ,N2O,3.9,kg/TJ,5995.623815999999,kg -5cf0f470-471a-3665-985b-746dca00bc1e,SESCO,II.1.1,Salta,AR-A,annual,2023,gas oil combustion consumption by freight transport,1033.28484,TJ,CO2,74100.0,kg/TJ,76566406.64400001,kg -078bf65f-0f86-3aeb-8903-cd95c6f77e3b,SESCO,II.1.1,Salta,AR-A,annual,2023,gas oil combustion consumption by freight transport,1033.28484,TJ,CH4,3.9,kg/TJ,4029.810876,kg -078bf65f-0f86-3aeb-8903-cd95c6f77e3b,SESCO,II.1.1,Salta,AR-A,annual,2023,gas oil combustion consumption by freight transport,1033.28484,TJ,N2O,3.9,kg/TJ,4029.810876,kg -6fbc82ca-e549-3125-bbff-0ce67951682f,SESCO,II.1.1,San Juan,AR-J,annual,2023,gas oil combustion consumption by freight transport,150.801,TJ,CO2,74100.0,kg/TJ,11174354.1,kg -cbaaa239-467f-3bde-90a5-97c629b05007,SESCO,II.1.1,San Juan,AR-J,annual,2023,gas oil combustion consumption by freight transport,150.801,TJ,CH4,3.9,kg/TJ,588.1238999999999,kg -cbaaa239-467f-3bde-90a5-97c629b05007,SESCO,II.1.1,San Juan,AR-J,annual,2023,gas oil combustion consumption by freight transport,150.801,TJ,N2O,3.9,kg/TJ,588.1238999999999,kg -6b380a57-c678-3b84-b798-c90a65de7444,SESCO,II.1.1,San Luis,AR-D,annual,2023,gas oil combustion consumption by freight transport,516.47988,TJ,CO2,74100.0,kg/TJ,38271159.107999995,kg -40101bdb-3d37-3ace-b306-9e5a123b5fe4,SESCO,II.1.1,San Luis,AR-D,annual,2023,gas oil combustion consumption by freight transport,516.47988,TJ,CH4,3.9,kg/TJ,2014.271532,kg -40101bdb-3d37-3ace-b306-9e5a123b5fe4,SESCO,II.1.1,San Luis,AR-D,annual,2023,gas oil combustion consumption by freight transport,516.47988,TJ,N2O,3.9,kg/TJ,2014.271532,kg -9d7bde0b-5a6d-3cb1-a2d1-97a78a2a08c6,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2023,gas oil combustion consumption by freight transport,798.0714,TJ,CO2,74100.0,kg/TJ,59137090.74,kg -bd1566b7-7faf-3faa-9ef3-5b2c2b47cb23,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2023,gas oil combustion consumption by freight transport,798.0714,TJ,CH4,3.9,kg/TJ,3112.4784600000003,kg -bd1566b7-7faf-3faa-9ef3-5b2c2b47cb23,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2023,gas oil combustion consumption by freight transport,798.0714,TJ,N2O,3.9,kg/TJ,3112.4784600000003,kg -46bff1cc-c899-3239-a60d-5b2fc62b0310,SESCO,II.1.1,Santa Fe,AR-S,annual,2023,gas oil combustion consumption by freight transport,3231.04236,TJ,CO2,74100.0,kg/TJ,239420238.876,kg -a1187abd-d004-37f5-b37f-9e6d3f387c67,SESCO,II.1.1,Santa Fe,AR-S,annual,2023,gas oil combustion consumption by freight transport,3231.04236,TJ,CH4,3.9,kg/TJ,12601.065203999999,kg -a1187abd-d004-37f5-b37f-9e6d3f387c67,SESCO,II.1.1,Santa Fe,AR-S,annual,2023,gas oil combustion consumption by freight transport,3231.04236,TJ,N2O,3.9,kg/TJ,12601.065203999999,kg -5558f0d3-c481-3b77-9866-89c1a638b5e7,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2023,gas oil combustion consumption by freight transport,782.5398,TJ,CO2,74100.0,kg/TJ,57986199.18,kg -f5bcb47b-5560-31eb-a84d-456a7dc1ec2e,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2023,gas oil combustion consumption by freight transport,782.5398,TJ,CH4,3.9,kg/TJ,3051.90522,kg -f5bcb47b-5560-31eb-a84d-456a7dc1ec2e,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2023,gas oil combustion consumption by freight transport,782.5398,TJ,N2O,3.9,kg/TJ,3051.90522,kg -cf55bb30-d3e8-3349-bd21-548d170b592e,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2023,gas oil combustion consumption by freight transport,304.27488,TJ,CO2,74100.0,kg/TJ,22546768.608,kg -74a83a03-4621-3b43-a852-5652a5b1d091,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2023,gas oil combustion consumption by freight transport,304.27488,TJ,CH4,3.9,kg/TJ,1186.672032,kg -74a83a03-4621-3b43-a852-5652a5b1d091,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2023,gas oil combustion consumption by freight transport,304.27488,TJ,N2O,3.9,kg/TJ,1186.672032,kg -160976b5-f826-37be-ae3a-7261afd77db4,SESCO,II.1.1,Tucuman,AR-T,annual,2023,gas oil combustion consumption by freight transport,449.11608,TJ,CO2,74100.0,kg/TJ,33279501.528,kg -4effa640-54fe-3871-9f3f-9e2abe0744f1,SESCO,II.1.1,Tucuman,AR-T,annual,2023,gas oil combustion consumption by freight transport,449.11608,TJ,CH4,3.9,kg/TJ,1751.552712,kg -4effa640-54fe-3871-9f3f-9e2abe0744f1,SESCO,II.1.1,Tucuman,AR-T,annual,2023,gas oil combustion consumption by freight transport,449.11608,TJ,N2O,3.9,kg/TJ,1751.552712,kg -6b815d4b-7f20-3279-a367-72cdc604e906,SESCO,II.1.1,Buenos Aires,AR-B,annual,2023,gas oil combustion consumption by freight transport,5763.70452,TJ,CO2,74100.0,kg/TJ,427090504.93200004,kg -0d1e0717-80f8-35ae-bb82-f9b1d22c542d,SESCO,II.1.1,Buenos Aires,AR-B,annual,2023,gas oil combustion consumption by freight transport,5763.70452,TJ,CH4,3.9,kg/TJ,22478.447628,kg -0d1e0717-80f8-35ae-bb82-f9b1d22c542d,SESCO,II.1.1,Buenos Aires,AR-B,annual,2023,gas oil combustion consumption by freight transport,5763.70452,TJ,N2O,3.9,kg/TJ,22478.447628,kg -9b9f9e0a-63bd-31aa-8076-8b2c1f4ae000,SESCO,II.1.1,Capital Federal,AR-C,annual,2023,gas oil combustion consumption by freight transport,374.9256,TJ,CO2,74100.0,kg/TJ,27781986.959999997,kg -ae2498b6-2b57-39bd-beef-c66dd4435b24,SESCO,II.1.1,Capital Federal,AR-C,annual,2023,gas oil combustion consumption by freight transport,374.9256,TJ,CH4,3.9,kg/TJ,1462.2098399999998,kg -ae2498b6-2b57-39bd-beef-c66dd4435b24,SESCO,II.1.1,Capital Federal,AR-C,annual,2023,gas oil combustion consumption by freight transport,374.9256,TJ,N2O,3.9,kg/TJ,1462.2098399999998,kg -7c7a3bf2-69d2-3c75-9d7c-d3695ce8924d,SESCO,II.1.1,Catamarca,AR-K,annual,2023,gas oil combustion consumption by freight transport,48.25632,TJ,CO2,74100.0,kg/TJ,3575793.3120000004,kg -8b753445-c582-3b17-9308-8cb17c764254,SESCO,II.1.1,Catamarca,AR-K,annual,2023,gas oil combustion consumption by freight transport,48.25632,TJ,CH4,3.9,kg/TJ,188.199648,kg -8b753445-c582-3b17-9308-8cb17c764254,SESCO,II.1.1,Catamarca,AR-K,annual,2023,gas oil combustion consumption by freight transport,48.25632,TJ,N2O,3.9,kg/TJ,188.199648,kg -71e7251a-550f-3b5d-85f5-80754131ab28,SESCO,II.1.1,Chaco,AR-H,annual,2023,gas oil combustion consumption by freight transport,230.15663999999998,TJ,CO2,74100.0,kg/TJ,17054607.024,kg -349fed4e-ce94-3466-998b-829862a712cb,SESCO,II.1.1,Chaco,AR-H,annual,2023,gas oil combustion consumption by freight transport,230.15663999999998,TJ,CH4,3.9,kg/TJ,897.6108959999999,kg -349fed4e-ce94-3466-998b-829862a712cb,SESCO,II.1.1,Chaco,AR-H,annual,2023,gas oil combustion consumption by freight transport,230.15663999999998,TJ,N2O,3.9,kg/TJ,897.6108959999999,kg -7af6f95a-ae25-3a0c-8ee4-3f44056d2305,SESCO,II.1.1,Chubut,AR-U,annual,2023,gas oil combustion consumption by freight transport,583.98816,TJ,CO2,74100.0,kg/TJ,43273522.656,kg -454f2c73-2c34-3bd3-a7a5-4e4fedf0acf7,SESCO,II.1.1,Chubut,AR-U,annual,2023,gas oil combustion consumption by freight transport,583.98816,TJ,CH4,3.9,kg/TJ,2277.553824,kg -454f2c73-2c34-3bd3-a7a5-4e4fedf0acf7,SESCO,II.1.1,Chubut,AR-U,annual,2023,gas oil combustion consumption by freight transport,583.98816,TJ,N2O,3.9,kg/TJ,2277.553824,kg -3bd96c5f-150d-33b4-a992-032849bdf3c3,SESCO,II.1.1,Corrientes,AR-W,annual,2023,gas oil combustion consumption by freight transport,307.95912,TJ,CO2,74100.0,kg/TJ,22819770.792,kg -4b91b395-9f55-39c3-9ee4-151afcba9c68,SESCO,II.1.1,Corrientes,AR-W,annual,2023,gas oil combustion consumption by freight transport,307.95912,TJ,CH4,3.9,kg/TJ,1201.040568,kg -4b91b395-9f55-39c3-9ee4-151afcba9c68,SESCO,II.1.1,Corrientes,AR-W,annual,2023,gas oil combustion consumption by freight transport,307.95912,TJ,N2O,3.9,kg/TJ,1201.040568,kg -a8d5b07f-9c04-3935-8bc3-88a658ee2054,SESCO,II.1.1,Córdoba,AR-X,annual,2023,gas oil combustion consumption by freight transport,996.5508,TJ,CO2,74100.0,kg/TJ,73844414.28,kg -bbc08672-bfbd-3933-b6f5-a0aff1ecde99,SESCO,II.1.1,Córdoba,AR-X,annual,2023,gas oil combustion consumption by freight transport,996.5508,TJ,CH4,3.9,kg/TJ,3886.54812,kg -bbc08672-bfbd-3933-b6f5-a0aff1ecde99,SESCO,II.1.1,Córdoba,AR-X,annual,2023,gas oil combustion consumption by freight transport,996.5508,TJ,N2O,3.9,kg/TJ,3886.54812,kg -7752b46c-fa00-35bf-8fb7-6797cb193e6c,SESCO,II.1.1,Entre Rios,AR-E,annual,2023,gas oil combustion consumption by freight transport,399.05376,TJ,CO2,74100.0,kg/TJ,29569883.616,kg -b321cfde-bda1-3f32-8546-44312500fdda,SESCO,II.1.1,Entre Rios,AR-E,annual,2023,gas oil combustion consumption by freight transport,399.05376,TJ,CH4,3.9,kg/TJ,1556.309664,kg -b321cfde-bda1-3f32-8546-44312500fdda,SESCO,II.1.1,Entre Rios,AR-E,annual,2023,gas oil combustion consumption by freight transport,399.05376,TJ,N2O,3.9,kg/TJ,1556.309664,kg -5bdd66c9-fb61-3c64-a8d7-78622a7ade89,SESCO,II.1.1,Formosa,AR-P,annual,2023,gas oil combustion consumption by freight transport,72.27611999999999,TJ,CO2,74100.0,kg/TJ,5355660.492,kg -73eb304a-adc0-39f0-a5de-0685feea5d1e,SESCO,II.1.1,Formosa,AR-P,annual,2023,gas oil combustion consumption by freight transport,72.27611999999999,TJ,CH4,3.9,kg/TJ,281.87686799999994,kg -73eb304a-adc0-39f0-a5de-0685feea5d1e,SESCO,II.1.1,Formosa,AR-P,annual,2023,gas oil combustion consumption by freight transport,72.27611999999999,TJ,N2O,3.9,kg/TJ,281.87686799999994,kg -5302fcb8-2442-303a-bd5d-878bbfbccfdc,SESCO,II.1.1,Jujuy,AR-Y,annual,2023,gas oil combustion consumption by freight transport,96.8016,TJ,CO2,74100.0,kg/TJ,7172998.56,kg -aab528d0-d102-38d2-874e-ffde9f983dd4,SESCO,II.1.1,Jujuy,AR-Y,annual,2023,gas oil combustion consumption by freight transport,96.8016,TJ,CH4,3.9,kg/TJ,377.52624,kg -aab528d0-d102-38d2-874e-ffde9f983dd4,SESCO,II.1.1,Jujuy,AR-Y,annual,2023,gas oil combustion consumption by freight transport,96.8016,TJ,N2O,3.9,kg/TJ,377.52624,kg -40c3937a-c7a4-3387-804a-394373f41cc3,SESCO,II.1.1,La Pampa,AR-L,annual,2023,gas oil combustion consumption by freight transport,260.49744,TJ,CO2,74100.0,kg/TJ,19302860.303999998,kg -127cbee2-9973-3037-a801-f718a2e14013,SESCO,II.1.1,La Pampa,AR-L,annual,2023,gas oil combustion consumption by freight transport,260.49744,TJ,CH4,3.9,kg/TJ,1015.9400159999999,kg -127cbee2-9973-3037-a801-f718a2e14013,SESCO,II.1.1,La Pampa,AR-L,annual,2023,gas oil combustion consumption by freight transport,260.49744,TJ,N2O,3.9,kg/TJ,1015.9400159999999,kg -5a454fd9-60f9-3c20-8a21-082636cbbd3d,SESCO,II.1.1,La Rioja,AR-F,annual,2023,gas oil combustion consumption by freight transport,101.28048,TJ,CO2,74100.0,kg/TJ,7504883.568,kg -df889c89-9d39-39eb-96cc-fa7768f45f56,SESCO,II.1.1,La Rioja,AR-F,annual,2023,gas oil combustion consumption by freight transport,101.28048,TJ,CH4,3.9,kg/TJ,394.99387199999995,kg -df889c89-9d39-39eb-96cc-fa7768f45f56,SESCO,II.1.1,La Rioja,AR-F,annual,2023,gas oil combustion consumption by freight transport,101.28048,TJ,N2O,3.9,kg/TJ,394.99387199999995,kg -9d80afc6-55bd-3b71-a919-2f47843554e6,SESCO,II.1.1,Mendoza,AR-M,annual,2023,gas oil combustion consumption by freight transport,715.5372,TJ,CO2,74100.0,kg/TJ,53021306.519999996,kg -2625f05b-c409-371a-8023-ac03ef756856,SESCO,II.1.1,Mendoza,AR-M,annual,2023,gas oil combustion consumption by freight transport,715.5372,TJ,CH4,3.9,kg/TJ,2790.59508,kg -2625f05b-c409-371a-8023-ac03ef756856,SESCO,II.1.1,Mendoza,AR-M,annual,2023,gas oil combustion consumption by freight transport,715.5372,TJ,N2O,3.9,kg/TJ,2790.59508,kg -e6ea362a-fba2-30c5-9c60-9b6ce30499d4,SESCO,II.1.1,Misiones,AR-N,annual,2023,gas oil combustion consumption by freight transport,210.9408,TJ,CO2,74100.0,kg/TJ,15630713.28,kg -3744768f-b35b-3d18-aa6a-e3fbba9bd0ea,SESCO,II.1.1,Misiones,AR-N,annual,2023,gas oil combustion consumption by freight transport,210.9408,TJ,CH4,3.9,kg/TJ,822.66912,kg -3744768f-b35b-3d18-aa6a-e3fbba9bd0ea,SESCO,II.1.1,Misiones,AR-N,annual,2023,gas oil combustion consumption by freight transport,210.9408,TJ,N2O,3.9,kg/TJ,822.66912,kg -d63f37b3-314c-36f9-bff9-63067fc5d2e3,SESCO,II.1.1,Neuquén,AR-Q,annual,2023,gas oil combustion consumption by freight transport,1647.46932,TJ,CO2,74100.0,kg/TJ,122077476.61199999,kg -59d6a31d-dcf1-34fe-bd50-d565ccd3e138,SESCO,II.1.1,Neuquén,AR-Q,annual,2023,gas oil combustion consumption by freight transport,1647.46932,TJ,CH4,3.9,kg/TJ,6425.130348,kg -59d6a31d-dcf1-34fe-bd50-d565ccd3e138,SESCO,II.1.1,Neuquén,AR-Q,annual,2023,gas oil combustion consumption by freight transport,1647.46932,TJ,N2O,3.9,kg/TJ,6425.130348,kg -1f982feb-c8fe-33a3-ba59-5c2d6dd004dd,SESCO,II.1.1,Rio Negro,AR-R,annual,2023,gas oil combustion consumption by freight transport,601.07292,TJ,CO2,74100.0,kg/TJ,44539503.371999994,kg -95a13d2c-8139-353a-983a-8b27afca3db4,SESCO,II.1.1,Rio Negro,AR-R,annual,2023,gas oil combustion consumption by freight transport,601.07292,TJ,CH4,3.9,kg/TJ,2344.1843879999997,kg -95a13d2c-8139-353a-983a-8b27afca3db4,SESCO,II.1.1,Rio Negro,AR-R,annual,2023,gas oil combustion consumption by freight transport,601.07292,TJ,N2O,3.9,kg/TJ,2344.1843879999997,kg -d2d6f8b8-5525-32ce-ab16-9241991c4f2f,SESCO,II.1.1,Salta,AR-A,annual,2023,gas oil combustion consumption by freight transport,378.5376,TJ,CO2,74100.0,kg/TJ,28049636.16,kg -23870403-beb3-3704-b32c-6aede457ae0a,SESCO,II.1.1,Salta,AR-A,annual,2023,gas oil combustion consumption by freight transport,378.5376,TJ,CH4,3.9,kg/TJ,1476.29664,kg -23870403-beb3-3704-b32c-6aede457ae0a,SESCO,II.1.1,Salta,AR-A,annual,2023,gas oil combustion consumption by freight transport,378.5376,TJ,N2O,3.9,kg/TJ,1476.29664,kg -0bb5732e-846f-3c28-8940-286567a05d88,SESCO,II.1.1,San Juan,AR-J,annual,2023,gas oil combustion consumption by freight transport,92.21436,TJ,CO2,74100.0,kg/TJ,6833084.076,kg -3739a081-e5ee-38fd-98c5-4043039a5661,SESCO,II.1.1,San Juan,AR-J,annual,2023,gas oil combustion consumption by freight transport,92.21436,TJ,CH4,3.9,kg/TJ,359.636004,kg -3739a081-e5ee-38fd-98c5-4043039a5661,SESCO,II.1.1,San Juan,AR-J,annual,2023,gas oil combustion consumption by freight transport,92.21436,TJ,N2O,3.9,kg/TJ,359.636004,kg -95aeeb02-bf13-3b56-95bd-dbb8f4a5d7b9,SESCO,II.1.1,San Luis,AR-D,annual,2023,gas oil combustion consumption by freight transport,161.96208,TJ,CO2,74100.0,kg/TJ,12001390.127999999,kg -eaaa3026-8d06-35d9-99f3-e9afff1c25a6,SESCO,II.1.1,San Luis,AR-D,annual,2023,gas oil combustion consumption by freight transport,161.96208,TJ,CH4,3.9,kg/TJ,631.6521119999999,kg -eaaa3026-8d06-35d9-99f3-e9afff1c25a6,SESCO,II.1.1,San Luis,AR-D,annual,2023,gas oil combustion consumption by freight transport,161.96208,TJ,N2O,3.9,kg/TJ,631.6521119999999,kg -4eeaf3db-bc4f-380c-b907-71be05efc8d0,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2023,gas oil combustion consumption by freight transport,479.34852,TJ,CO2,74100.0,kg/TJ,35519725.332,kg -31f8aaf2-e3f8-3b5f-8f36-a2cf3de6bacd,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2023,gas oil combustion consumption by freight transport,479.34852,TJ,CH4,3.9,kg/TJ,1869.459228,kg -31f8aaf2-e3f8-3b5f-8f36-a2cf3de6bacd,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2023,gas oil combustion consumption by freight transport,479.34852,TJ,N2O,3.9,kg/TJ,1869.459228,kg -50c7a0b0-e059-34ed-9b1c-f473ce8e25b5,SESCO,II.1.1,Santa Fe,AR-S,annual,2023,gas oil combustion consumption by freight transport,976.17912,TJ,CO2,74100.0,kg/TJ,72334872.792,kg -6f1ea800-8d67-3a5d-a819-1200cd06e9b0,SESCO,II.1.1,Santa Fe,AR-S,annual,2023,gas oil combustion consumption by freight transport,976.17912,TJ,CH4,3.9,kg/TJ,3807.098568,kg -6f1ea800-8d67-3a5d-a819-1200cd06e9b0,SESCO,II.1.1,Santa Fe,AR-S,annual,2023,gas oil combustion consumption by freight transport,976.17912,TJ,N2O,3.9,kg/TJ,3807.098568,kg -89b2663d-90ad-36c3-81eb-4b9d61e0732a,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2023,gas oil combustion consumption by freight transport,191.94168,TJ,CO2,74100.0,kg/TJ,14222878.488,kg -7c21ca75-09ea-38b5-b340-75821c5a7a7a,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2023,gas oil combustion consumption by freight transport,191.94168,TJ,CH4,3.9,kg/TJ,748.572552,kg -7c21ca75-09ea-38b5-b340-75821c5a7a7a,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2023,gas oil combustion consumption by freight transport,191.94168,TJ,N2O,3.9,kg/TJ,748.572552,kg -924ed928-09b4-3b3c-a37d-13bb4de3a00c,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2023,gas oil combustion consumption by freight transport,148.23648,TJ,CO2,74100.0,kg/TJ,10984323.168,kg -a3bf831e-90db-3aca-b3b1-1f03c8547fe6,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2023,gas oil combustion consumption by freight transport,148.23648,TJ,CH4,3.9,kg/TJ,578.122272,kg -a3bf831e-90db-3aca-b3b1-1f03c8547fe6,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2023,gas oil combustion consumption by freight transport,148.23648,TJ,N2O,3.9,kg/TJ,578.122272,kg -3534cb96-ddb1-3839-918b-fdfa4367c7dc,SESCO,II.1.1,Tucuman,AR-T,annual,2023,gas oil combustion consumption by freight transport,230.69844,TJ,CO2,74100.0,kg/TJ,17094754.404,kg -9fd9a19b-46ea-3666-b30f-530b08f1880f,SESCO,II.1.1,Tucuman,AR-T,annual,2023,gas oil combustion consumption by freight transport,230.69844,TJ,CH4,3.9,kg/TJ,899.723916,kg -9fd9a19b-46ea-3666-b30f-530b08f1880f,SESCO,II.1.1,Tucuman,AR-T,annual,2023,gas oil combustion consumption by freight transport,230.69844,TJ,N2O,3.9,kg/TJ,899.723916,kg -f80543b9-d0a6-308b-80af-f2b9e31e7246,SESCO,II.1.1,Buenos Aires,AR-B,annual,2023,gas oil combustion consumption by public passenger transport,5703.4202399999995,TJ,CO2,74100.0,kg/TJ,422623439.784,kg -25ae312c-99e1-3966-9aeb-4d6a44ac6172,SESCO,II.1.1,Buenos Aires,AR-B,annual,2023,gas oil combustion consumption by public passenger transport,5703.4202399999995,TJ,CH4,3.9,kg/TJ,22243.338935999996,kg -25ae312c-99e1-3966-9aeb-4d6a44ac6172,SESCO,II.1.1,Buenos Aires,AR-B,annual,2023,gas oil combustion consumption by public passenger transport,5703.4202399999995,TJ,N2O,3.9,kg/TJ,22243.338935999996,kg -be0315ff-0c0e-32ed-8017-0e515ffc96f0,SESCO,II.1.1,Capital Federal,AR-C,annual,2023,gas oil combustion consumption by public passenger transport,1664.48184,TJ,CO2,74100.0,kg/TJ,123338104.344,kg -4b1bd794-2913-3cd1-ad9c-dd513f59e0b2,SESCO,II.1.1,Capital Federal,AR-C,annual,2023,gas oil combustion consumption by public passenger transport,1664.48184,TJ,CH4,3.9,kg/TJ,6491.479176,kg -4b1bd794-2913-3cd1-ad9c-dd513f59e0b2,SESCO,II.1.1,Capital Federal,AR-C,annual,2023,gas oil combustion consumption by public passenger transport,1664.48184,TJ,N2O,3.9,kg/TJ,6491.479176,kg -06504179-0741-3648-803b-436c501dbc6e,SESCO,II.1.1,Catamarca,AR-K,annual,2023,gas oil combustion consumption by public passenger transport,70.14504,TJ,CO2,74100.0,kg/TJ,5197747.464,kg -6995b8db-999e-32db-b580-a5d6b798aaba,SESCO,II.1.1,Catamarca,AR-K,annual,2023,gas oil combustion consumption by public passenger transport,70.14504,TJ,CH4,3.9,kg/TJ,273.565656,kg -6995b8db-999e-32db-b580-a5d6b798aaba,SESCO,II.1.1,Catamarca,AR-K,annual,2023,gas oil combustion consumption by public passenger transport,70.14504,TJ,N2O,3.9,kg/TJ,273.565656,kg -4e4a5008-8663-3e7c-ba0a-f563a75c8a7b,SESCO,II.1.1,Chaco,AR-H,annual,2023,gas oil combustion consumption by public passenger transport,83.00376,TJ,CO2,74100.0,kg/TJ,6150578.616,kg -482cb67e-715e-3362-ae57-f1af7ce213ea,SESCO,II.1.1,Chaco,AR-H,annual,2023,gas oil combustion consumption by public passenger transport,83.00376,TJ,CH4,3.9,kg/TJ,323.71466399999997,kg -482cb67e-715e-3362-ae57-f1af7ce213ea,SESCO,II.1.1,Chaco,AR-H,annual,2023,gas oil combustion consumption by public passenger transport,83.00376,TJ,N2O,3.9,kg/TJ,323.71466399999997,kg -620708a5-a7c1-359f-9e18-172479b3c3df,SESCO,II.1.1,Chubut,AR-U,annual,2023,gas oil combustion consumption by public passenger transport,5.49024,TJ,CO2,74100.0,kg/TJ,406826.784,kg -a51eca68-bf6e-3dd5-8384-c31674e8405c,SESCO,II.1.1,Chubut,AR-U,annual,2023,gas oil combustion consumption by public passenger transport,5.49024,TJ,CH4,3.9,kg/TJ,21.411936,kg -a51eca68-bf6e-3dd5-8384-c31674e8405c,SESCO,II.1.1,Chubut,AR-U,annual,2023,gas oil combustion consumption by public passenger transport,5.49024,TJ,N2O,3.9,kg/TJ,21.411936,kg -63d99530-68aa-3973-a7fd-f8ebf76e19e3,SESCO,II.1.1,Corrientes,AR-W,annual,2023,gas oil combustion consumption by public passenger transport,124.32504,TJ,CO2,74100.0,kg/TJ,9212485.464,kg -0c0c65c6-1eb0-3f3f-8f67-7716c94790d2,SESCO,II.1.1,Corrientes,AR-W,annual,2023,gas oil combustion consumption by public passenger transport,124.32504,TJ,CH4,3.9,kg/TJ,484.867656,kg -0c0c65c6-1eb0-3f3f-8f67-7716c94790d2,SESCO,II.1.1,Corrientes,AR-W,annual,2023,gas oil combustion consumption by public passenger transport,124.32504,TJ,N2O,3.9,kg/TJ,484.867656,kg -d24b63d9-8b8f-3132-a535-2c543f13ffae,SESCO,II.1.1,Córdoba,AR-X,annual,2023,gas oil combustion consumption by public passenger transport,782.86488,TJ,CO2,74100.0,kg/TJ,58010287.607999995,kg -efcf033d-e4e0-3a8b-af60-56f0fc1cee73,SESCO,II.1.1,Córdoba,AR-X,annual,2023,gas oil combustion consumption by public passenger transport,782.86488,TJ,CH4,3.9,kg/TJ,3053.1730319999997,kg -efcf033d-e4e0-3a8b-af60-56f0fc1cee73,SESCO,II.1.1,Córdoba,AR-X,annual,2023,gas oil combustion consumption by public passenger transport,782.86488,TJ,N2O,3.9,kg/TJ,3053.1730319999997,kg -7aea0725-cd72-312d-a976-41539f17f7ec,SESCO,II.1.1,Entre Rios,AR-E,annual,2023,gas oil combustion consumption by public passenger transport,187.39056,TJ,CO2,74100.0,kg/TJ,13885640.496,kg -61fc4724-4a37-342b-8262-083863c8fa61,SESCO,II.1.1,Entre Rios,AR-E,annual,2023,gas oil combustion consumption by public passenger transport,187.39056,TJ,CH4,3.9,kg/TJ,730.823184,kg -61fc4724-4a37-342b-8262-083863c8fa61,SESCO,II.1.1,Entre Rios,AR-E,annual,2023,gas oil combustion consumption by public passenger transport,187.39056,TJ,N2O,3.9,kg/TJ,730.823184,kg -7493a0e8-ee10-3982-beef-eed0b3b08a90,SESCO,II.1.1,Formosa,AR-P,annual,2023,gas oil combustion consumption by public passenger transport,37.96212,TJ,CO2,74100.0,kg/TJ,2812993.0919999997,kg -79d13e8a-d8e8-3584-8e3d-4a8c781c227a,SESCO,II.1.1,Formosa,AR-P,annual,2023,gas oil combustion consumption by public passenger transport,37.96212,TJ,CH4,3.9,kg/TJ,148.052268,kg -79d13e8a-d8e8-3584-8e3d-4a8c781c227a,SESCO,II.1.1,Formosa,AR-P,annual,2023,gas oil combustion consumption by public passenger transport,37.96212,TJ,N2O,3.9,kg/TJ,148.052268,kg -48ed5757-0a7a-3219-994e-1107791800fd,SESCO,II.1.1,Jujuy,AR-Y,annual,2023,gas oil combustion consumption by public passenger transport,198.51552,TJ,CO2,74100.0,kg/TJ,14710000.032000002,kg -afeef817-e91f-3e1d-b3c4-b00f8e477084,SESCO,II.1.1,Jujuy,AR-Y,annual,2023,gas oil combustion consumption by public passenger transport,198.51552,TJ,CH4,3.9,kg/TJ,774.2105280000001,kg -afeef817-e91f-3e1d-b3c4-b00f8e477084,SESCO,II.1.1,Jujuy,AR-Y,annual,2023,gas oil combustion consumption by public passenger transport,198.51552,TJ,N2O,3.9,kg/TJ,774.2105280000001,kg -05a03f63-86ce-3227-a74f-f65c4ecccec2,SESCO,II.1.1,Mendoza,AR-M,annual,2023,gas oil combustion consumption by public passenger transport,1214.06544,TJ,CO2,74100.0,kg/TJ,89962249.104,kg -705776c6-9bbd-3eb4-a614-d1e14e1f3f00,SESCO,II.1.1,Mendoza,AR-M,annual,2023,gas oil combustion consumption by public passenger transport,1214.06544,TJ,CH4,3.9,kg/TJ,4734.855216,kg -705776c6-9bbd-3eb4-a614-d1e14e1f3f00,SESCO,II.1.1,Mendoza,AR-M,annual,2023,gas oil combustion consumption by public passenger transport,1214.06544,TJ,N2O,3.9,kg/TJ,4734.855216,kg -6b79c211-071e-3a7d-bc57-2a09ad53d188,SESCO,II.1.1,Misiones,AR-N,annual,2023,gas oil combustion consumption by public passenger transport,650.59344,TJ,CO2,74100.0,kg/TJ,48208973.904,kg -025f8972-a315-3834-ae7a-49f86fbfa440,SESCO,II.1.1,Misiones,AR-N,annual,2023,gas oil combustion consumption by public passenger transport,650.59344,TJ,CH4,3.9,kg/TJ,2537.3144159999997,kg -025f8972-a315-3834-ae7a-49f86fbfa440,SESCO,II.1.1,Misiones,AR-N,annual,2023,gas oil combustion consumption by public passenger transport,650.59344,TJ,N2O,3.9,kg/TJ,2537.3144159999997,kg -2768f7a9-b91d-3db8-ab3f-2256441cf3a8,SESCO,II.1.1,Neuquén,AR-Q,annual,2023,gas oil combustion consumption by public passenger transport,21.70812,TJ,CO2,74100.0,kg/TJ,1608571.692,kg -731cd47f-1037-380c-9aaf-64ece6be5d3a,SESCO,II.1.1,Neuquén,AR-Q,annual,2023,gas oil combustion consumption by public passenger transport,21.70812,TJ,CH4,3.9,kg/TJ,84.661668,kg -731cd47f-1037-380c-9aaf-64ece6be5d3a,SESCO,II.1.1,Neuquén,AR-Q,annual,2023,gas oil combustion consumption by public passenger transport,21.70812,TJ,N2O,3.9,kg/TJ,84.661668,kg -f670640a-89e7-3f91-9d62-aa6d2e3d2f11,SESCO,II.1.1,Rio Negro,AR-R,annual,2023,gas oil combustion consumption by public passenger transport,28.1736,TJ,CO2,74100.0,kg/TJ,2087663.76,kg -8e635a25-77e3-3cd2-b016-625148d21776,SESCO,II.1.1,Rio Negro,AR-R,annual,2023,gas oil combustion consumption by public passenger transport,28.1736,TJ,CH4,3.9,kg/TJ,109.87704,kg -8e635a25-77e3-3cd2-b016-625148d21776,SESCO,II.1.1,Rio Negro,AR-R,annual,2023,gas oil combustion consumption by public passenger transport,28.1736,TJ,N2O,3.9,kg/TJ,109.87704,kg -6ff70493-81ef-315d-8c47-786d49ab8058,SESCO,II.1.1,Salta,AR-A,annual,2023,gas oil combustion consumption by public passenger transport,287.37072,TJ,CO2,74100.0,kg/TJ,21294170.352,kg -76e0a0e5-1f79-3137-b906-fff3d492c550,SESCO,II.1.1,Salta,AR-A,annual,2023,gas oil combustion consumption by public passenger transport,287.37072,TJ,CH4,3.9,kg/TJ,1120.745808,kg -76e0a0e5-1f79-3137-b906-fff3d492c550,SESCO,II.1.1,Salta,AR-A,annual,2023,gas oil combustion consumption by public passenger transport,287.37072,TJ,N2O,3.9,kg/TJ,1120.745808,kg -9b7b353a-68e3-3c1d-b14a-d6ed4224e523,SESCO,II.1.1,San Juan,AR-J,annual,2023,gas oil combustion consumption by public passenger transport,3.0702,TJ,CO2,74100.0,kg/TJ,227501.81999999998,kg -026ca2c4-03ca-30e4-a19a-2badf58d9a8d,SESCO,II.1.1,San Juan,AR-J,annual,2023,gas oil combustion consumption by public passenger transport,3.0702,TJ,CH4,3.9,kg/TJ,11.97378,kg -026ca2c4-03ca-30e4-a19a-2badf58d9a8d,SESCO,II.1.1,San Juan,AR-J,annual,2023,gas oil combustion consumption by public passenger transport,3.0702,TJ,N2O,3.9,kg/TJ,11.97378,kg -209148d4-43a0-3aa0-8c2b-98d728d0ea6a,SESCO,II.1.1,Santa Fe,AR-S,annual,2023,gas oil combustion consumption by public passenger transport,419.49768,TJ,CO2,74100.0,kg/TJ,31084778.088,kg -b8be8dc4-17e1-346e-a2c3-f67265b359c4,SESCO,II.1.1,Santa Fe,AR-S,annual,2023,gas oil combustion consumption by public passenger transport,419.49768,TJ,CH4,3.9,kg/TJ,1636.040952,kg -b8be8dc4-17e1-346e-a2c3-f67265b359c4,SESCO,II.1.1,Santa Fe,AR-S,annual,2023,gas oil combustion consumption by public passenger transport,419.49768,TJ,N2O,3.9,kg/TJ,1636.040952,kg -08cd1f88-5341-3a47-9736-4743d9c979cd,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2023,gas oil combustion consumption by public passenger transport,9.53568,TJ,CO2,74100.0,kg/TJ,706593.8879999999,kg -c9cdc773-abc1-3803-bda7-b84ca150abf0,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2023,gas oil combustion consumption by public passenger transport,9.53568,TJ,CH4,3.9,kg/TJ,37.18915199999999,kg -c9cdc773-abc1-3803-bda7-b84ca150abf0,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2023,gas oil combustion consumption by public passenger transport,9.53568,TJ,N2O,3.9,kg/TJ,37.18915199999999,kg -8bcef5b6-91d4-3c35-a0cf-8f580115303f,SESCO,II.1.1,Tucuman,AR-T,annual,2023,gas oil combustion consumption by public passenger transport,47.3172,TJ,CO2,74100.0,kg/TJ,3506204.52,kg -5f287ff0-16a9-3b29-b797-f84519f32ee3,SESCO,II.1.1,Tucuman,AR-T,annual,2023,gas oil combustion consumption by public passenger transport,47.3172,TJ,CH4,3.9,kg/TJ,184.53708,kg -5f287ff0-16a9-3b29-b797-f84519f32ee3,SESCO,II.1.1,Tucuman,AR-T,annual,2023,gas oil combustion consumption by public passenger transport,47.3172,TJ,N2O,3.9,kg/TJ,184.53708,kg -fe15e951-61a2-3baf-844a-5d09f638fe5e,SESCO,II.1.1,Buenos Aires,AR-B,annual,2023,gas oil combustion consumption by public passenger transport,5114.8809599999995,TJ,CO2,74100.0,kg/TJ,379012679.136,kg -9f34c8d7-809f-35ce-b918-f0b63fd69e4e,SESCO,II.1.1,Buenos Aires,AR-B,annual,2023,gas oil combustion consumption by public passenger transport,5114.8809599999995,TJ,CH4,3.9,kg/TJ,19948.035743999997,kg -9f34c8d7-809f-35ce-b918-f0b63fd69e4e,SESCO,II.1.1,Buenos Aires,AR-B,annual,2023,gas oil combustion consumption by public passenger transport,5114.8809599999995,TJ,N2O,3.9,kg/TJ,19948.035743999997,kg -507278d1-2a4b-39e3-8ab2-a0de75923cc9,SESCO,II.1.1,Capital Federal,AR-C,annual,2023,gas oil combustion consumption by public passenger transport,1080.1686,TJ,CO2,74100.0,kg/TJ,80040493.25999999,kg -4931be1f-1f31-3330-800e-e7988ab36316,SESCO,II.1.1,Capital Federal,AR-C,annual,2023,gas oil combustion consumption by public passenger transport,1080.1686,TJ,CH4,3.9,kg/TJ,4212.65754,kg -4931be1f-1f31-3330-800e-e7988ab36316,SESCO,II.1.1,Capital Federal,AR-C,annual,2023,gas oil combustion consumption by public passenger transport,1080.1686,TJ,N2O,3.9,kg/TJ,4212.65754,kg -6010d215-1254-3ce1-ac5b-7c229ce54624,SESCO,II.1.1,Chaco,AR-H,annual,2023,gas oil combustion consumption by public passenger transport,32.1468,TJ,CO2,74100.0,kg/TJ,2382077.88,kg -b90df145-15a6-3931-a410-5026ec5a7af9,SESCO,II.1.1,Chaco,AR-H,annual,2023,gas oil combustion consumption by public passenger transport,32.1468,TJ,CH4,3.9,kg/TJ,125.37252,kg -b90df145-15a6-3931-a410-5026ec5a7af9,SESCO,II.1.1,Chaco,AR-H,annual,2023,gas oil combustion consumption by public passenger transport,32.1468,TJ,N2O,3.9,kg/TJ,125.37252,kg -6399b07b-8513-32ff-88cf-62a9680e39dc,SESCO,II.1.1,Chubut,AR-U,annual,2023,gas oil combustion consumption by public passenger transport,5.418,TJ,CO2,74100.0,kg/TJ,401473.8,kg -7eb87fd9-c8d4-3f88-b8e0-cdd1e7650121,SESCO,II.1.1,Chubut,AR-U,annual,2023,gas oil combustion consumption by public passenger transport,5.418,TJ,CH4,3.9,kg/TJ,21.1302,kg -7eb87fd9-c8d4-3f88-b8e0-cdd1e7650121,SESCO,II.1.1,Chubut,AR-U,annual,2023,gas oil combustion consumption by public passenger transport,5.418,TJ,N2O,3.9,kg/TJ,21.1302,kg -bdcf1cd8-c076-359e-94a2-6376b1e7833c,SESCO,II.1.1,Corrientes,AR-W,annual,2023,gas oil combustion consumption by public passenger transport,55.37196,TJ,CO2,74100.0,kg/TJ,4103062.236,kg -905eb200-6183-377e-9d2b-44172f02c73c,SESCO,II.1.1,Corrientes,AR-W,annual,2023,gas oil combustion consumption by public passenger transport,55.37196,TJ,CH4,3.9,kg/TJ,215.950644,kg -905eb200-6183-377e-9d2b-44172f02c73c,SESCO,II.1.1,Corrientes,AR-W,annual,2023,gas oil combustion consumption by public passenger transport,55.37196,TJ,N2O,3.9,kg/TJ,215.950644,kg -76e555b7-6d19-3c7a-9b93-8b0ab2be6bf4,SESCO,II.1.1,Córdoba,AR-X,annual,2023,gas oil combustion consumption by public passenger transport,237.74184,TJ,CO2,74100.0,kg/TJ,17616670.344,kg -2e216069-8371-3d2a-b811-deb92a91c12d,SESCO,II.1.1,Córdoba,AR-X,annual,2023,gas oil combustion consumption by public passenger transport,237.74184,TJ,CH4,3.9,kg/TJ,927.193176,kg -2e216069-8371-3d2a-b811-deb92a91c12d,SESCO,II.1.1,Córdoba,AR-X,annual,2023,gas oil combustion consumption by public passenger transport,237.74184,TJ,N2O,3.9,kg/TJ,927.193176,kg -b1c45e4b-705f-34a0-af3b-d4b86566ad63,SESCO,II.1.1,Entre Rios,AR-E,annual,2023,gas oil combustion consumption by public passenger transport,34.89192,TJ,CO2,74100.0,kg/TJ,2585491.272,kg -1a86c305-a031-314d-b83f-0119b8983b2f,SESCO,II.1.1,Entre Rios,AR-E,annual,2023,gas oil combustion consumption by public passenger transport,34.89192,TJ,CH4,3.9,kg/TJ,136.078488,kg -1a86c305-a031-314d-b83f-0119b8983b2f,SESCO,II.1.1,Entre Rios,AR-E,annual,2023,gas oil combustion consumption by public passenger transport,34.89192,TJ,N2O,3.9,kg/TJ,136.078488,kg -34210070-4f25-3191-a738-abd91f533e93,SESCO,II.1.1,Mendoza,AR-M,annual,2023,gas oil combustion consumption by public passenger transport,43.01892,TJ,CO2,74100.0,kg/TJ,3187701.972,kg -4277ca58-a60a-3fc9-854c-618f327ada18,SESCO,II.1.1,Mendoza,AR-M,annual,2023,gas oil combustion consumption by public passenger transport,43.01892,TJ,CH4,3.9,kg/TJ,167.773788,kg -4277ca58-a60a-3fc9-854c-618f327ada18,SESCO,II.1.1,Mendoza,AR-M,annual,2023,gas oil combustion consumption by public passenger transport,43.01892,TJ,N2O,3.9,kg/TJ,167.773788,kg -4f7bcde3-f7e1-3619-93f2-8ec8159a1ee2,SESCO,II.1.1,Misiones,AR-N,annual,2023,gas oil combustion consumption by public passenger transport,10.25808,TJ,CO2,74100.0,kg/TJ,760123.728,kg -c94ed515-b424-38de-89a3-8026054396c9,SESCO,II.1.1,Misiones,AR-N,annual,2023,gas oil combustion consumption by public passenger transport,10.25808,TJ,CH4,3.9,kg/TJ,40.006512,kg -c94ed515-b424-38de-89a3-8026054396c9,SESCO,II.1.1,Misiones,AR-N,annual,2023,gas oil combustion consumption by public passenger transport,10.25808,TJ,N2O,3.9,kg/TJ,40.006512,kg -1c2d185f-f8bd-3467-80bd-842fb59cb2e1,SESCO,II.1.1,Neuquén,AR-Q,annual,2023,gas oil combustion consumption by public passenger transport,15.45936,TJ,CO2,74100.0,kg/TJ,1145538.5760000001,kg -df3edd88-f4cb-3e82-a3a9-7dfa737e7cc5,SESCO,II.1.1,Neuquén,AR-Q,annual,2023,gas oil combustion consumption by public passenger transport,15.45936,TJ,CH4,3.9,kg/TJ,60.291503999999996,kg -df3edd88-f4cb-3e82-a3a9-7dfa737e7cc5,SESCO,II.1.1,Neuquén,AR-Q,annual,2023,gas oil combustion consumption by public passenger transport,15.45936,TJ,N2O,3.9,kg/TJ,60.291503999999996,kg -c62a2c0e-1126-3d59-b16f-3ddff8d52c83,SESCO,II.1.1,Rio Negro,AR-R,annual,2023,gas oil combustion consumption by public passenger transport,76.28544,TJ,CO2,74100.0,kg/TJ,5652751.103999999,kg -17ebeb4b-49ce-3a11-b765-738791233c19,SESCO,II.1.1,Rio Negro,AR-R,annual,2023,gas oil combustion consumption by public passenger transport,76.28544,TJ,CH4,3.9,kg/TJ,297.51321599999994,kg -17ebeb4b-49ce-3a11-b765-738791233c19,SESCO,II.1.1,Rio Negro,AR-R,annual,2023,gas oil combustion consumption by public passenger transport,76.28544,TJ,N2O,3.9,kg/TJ,297.51321599999994,kg -15e7c7f7-6e5a-39f3-95f6-ea1aed259607,SESCO,II.1.1,Salta,AR-A,annual,2023,gas oil combustion consumption by public passenger transport,178.75788,TJ,CO2,74100.0,kg/TJ,13245958.908,kg -1743d341-eeac-3298-bd78-9db7f21967c4,SESCO,II.1.1,Salta,AR-A,annual,2023,gas oil combustion consumption by public passenger transport,178.75788,TJ,CH4,3.9,kg/TJ,697.155732,kg -1743d341-eeac-3298-bd78-9db7f21967c4,SESCO,II.1.1,Salta,AR-A,annual,2023,gas oil combustion consumption by public passenger transport,178.75788,TJ,N2O,3.9,kg/TJ,697.155732,kg -d7f94d48-f094-37be-b6b9-d63a587d0775,SESCO,II.1.1,San Juan,AR-J,annual,2023,gas oil combustion consumption by public passenger transport,1.51704,TJ,CO2,74100.0,kg/TJ,112412.66399999999,kg -b13c3e27-4fb7-3565-acee-777d9fddf2eb,SESCO,II.1.1,San Juan,AR-J,annual,2023,gas oil combustion consumption by public passenger transport,1.51704,TJ,CH4,3.9,kg/TJ,5.916455999999999,kg -b13c3e27-4fb7-3565-acee-777d9fddf2eb,SESCO,II.1.1,San Juan,AR-J,annual,2023,gas oil combustion consumption by public passenger transport,1.51704,TJ,N2O,3.9,kg/TJ,5.916455999999999,kg -61071f19-df8b-3f9d-9a8b-dd2ecc1c8550,SESCO,II.1.1,Santa Fe,AR-S,annual,2023,gas oil combustion consumption by public passenger transport,49.88172,TJ,CO2,74100.0,kg/TJ,3696235.452,kg -55ae2d01-19d5-3264-b3df-a9812c4e9703,SESCO,II.1.1,Santa Fe,AR-S,annual,2023,gas oil combustion consumption by public passenger transport,49.88172,TJ,CH4,3.9,kg/TJ,194.538708,kg -55ae2d01-19d5-3264-b3df-a9812c4e9703,SESCO,II.1.1,Santa Fe,AR-S,annual,2023,gas oil combustion consumption by public passenger transport,49.88172,TJ,N2O,3.9,kg/TJ,194.538708,kg -1ece3a25-a5eb-32e3-b942-ae045c30d239,SESCO,I.3.1,Córdoba,AR-X,annual,2010,biodiesel combustion consumption by petrochemical industries,0.00031572288,TJ,CH4,10.0,kg/TJ,0.0031572288,kg -99751f99-d1ab-3cff-a62a-81dd29484065,SESCO,I.3.1,Córdoba,AR-X,annual,2010,biodiesel combustion consumption by petrochemical industries,0.00031572288,TJ,N2O,0.6,kg/TJ,0.000189433728,kg -214fe6a4-921f-3b60-9785-a7d03135e217,SESCO,II.5.1,Buenos Aires,AR-B,annual,2011,biodiesel combustion consumption by agriculture machines,8.5536e-05,TJ,CH4,10.0,kg/TJ,0.00085536,kg -ca8d4fda-16af-34e3-b28d-8d67fd48a5a3,SESCO,II.5.1,Buenos Aires,AR-B,annual,2011,biodiesel combustion consumption by agriculture machines,8.5536e-05,TJ,N2O,0.6,kg/TJ,5.13216e-05,kg -c5aeb523-236d-3fe5-ae85-8443fd8fb850,SESCO,II.1.1,Capital Federal,AR-C,annual,2012,biodiesel combustion consumption by freight transport,0.00020573784,TJ,CH4,10.0,kg/TJ,0.0020573784,kg -4aa81d07-01cc-3ae8-8cb7-7ec9748a8776,SESCO,II.1.1,Capital Federal,AR-C,annual,2012,biodiesel combustion consumption by freight transport,0.00020573784,TJ,N2O,0.6,kg/TJ,0.000123442704,kg -13952624-7f57-3441-b4d5-dc7ba8127c78,SESCO,II.1.1,Capital Federal,AR-C,annual,2012,biodiesel combustion consumption by public passenger transport,0.0009812880000000003,TJ,CH4,10.0,kg/TJ,0.009812880000000003,kg -bb5663b8-51e0-33e9-9ed3-f516c7f746a3,SESCO,II.1.1,Capital Federal,AR-C,annual,2012,biodiesel combustion consumption by public passenger transport,0.0009812880000000003,TJ,N2O,0.6,kg/TJ,0.0005887728000000002,kg -1b7e1b2f-08f1-394a-908e-d4616565dfd6,SESCO,II.5.1,La Pampa,AR-L,annual,2013,biodiesel combustion consumption by agriculture machines,0.000399168,TJ,CH4,10.0,kg/TJ,0.00399168,kg -5d3ee229-4133-3b53-a24c-365aed6ba4d2,SESCO,II.5.1,La Pampa,AR-L,annual,2013,biodiesel combustion consumption by agriculture machines,0.000399168,TJ,N2O,0.6,kg/TJ,0.00023950079999999997,kg -557b9769-c654-3a63-a98d-ff8a1bfd0b13,SESCO,I.3.1,Córdoba,AR-X,annual,2010,diesel combustion consumption by petrochemical industries,1.1994264374399999,TJ,CO2,74100.0,kg/TJ,88877.49901430399,kg -d7750494-65ef-3fec-9521-1df33e9fb9d6,SESCO,I.3.1,Córdoba,AR-X,annual,2010,diesel combustion consumption by petrochemical industries,1.1994264374399999,TJ,CH4,3.0,kg/TJ,3.59827931232,kg -c78e191c-dd9d-34bd-88b2-700f2109c505,SESCO,I.3.1,Córdoba,AR-X,annual,2010,diesel combustion consumption by petrochemical industries,1.1994264374399999,TJ,N2O,0.6,kg/TJ,0.7196558624639999,kg -2d62dacc-8f82-3a9d-bdb0-35b86426e967,SESCO,II.5.1,Buenos Aires,AR-B,annual,2011,diesel combustion consumption by agriculture machines,0.21658996800000002,TJ,CO2,74100.0,kg/TJ,16049.316628800001,kg -cb93c616-6157-3e81-b111-1366dfa37ab5,SESCO,II.5.1,Buenos Aires,AR-B,annual,2011,diesel combustion consumption by agriculture machines,0.21658996800000002,TJ,CH4,3.0,kg/TJ,0.649769904,kg -2dacbac9-5452-384d-93d9-8031cd825a93,SESCO,II.5.1,Buenos Aires,AR-B,annual,2011,diesel combustion consumption by agriculture machines,0.21658996800000002,TJ,N2O,0.6,kg/TJ,0.1299539808,kg -4d8f86ec-5c54-3a5f-8129-2f82889702f4,SESCO,II.1.1,Capital Federal,AR-C,annual,2012,diesel combustion consumption by freight transport,0.44649163692,TJ,CO2,74100.0,kg/TJ,33085.030295772,kg -d8da48b5-4faa-3207-b46f-275034fa0c7d,SESCO,II.1.1,Capital Federal,AR-C,annual,2012,diesel combustion consumption by freight transport,0.44649163692,TJ,CH4,3.0,kg/TJ,1.33947491076,kg -53c59895-c092-3e23-9ed9-e2dbf69838b3,SESCO,II.1.1,Capital Federal,AR-C,annual,2012,diesel combustion consumption by freight transport,0.44649163692,TJ,N2O,0.6,kg/TJ,0.26789498215199997,kg -e80eefd6-c605-3cf4-9185-7e8ce65ac1ea,SESCO,II.1.1,Capital Federal,AR-C,annual,2012,diesel combustion consumption by public passenger transport,2.129588244,TJ,CO2,74100.0,kg/TJ,157802.4888804,kg -3f388c1c-4e24-3fc1-876f-e59c65f5a372,SESCO,II.1.1,Capital Federal,AR-C,annual,2012,diesel combustion consumption by public passenger transport,2.129588244,TJ,CH4,3.0,kg/TJ,6.388764731999999,kg -43360c6e-d16a-3b8a-b649-f030d0acd388,SESCO,II.1.1,Capital Federal,AR-C,annual,2012,diesel combustion consumption by public passenger transport,2.129588244,TJ,N2O,0.6,kg/TJ,1.2777529464,kg -53588a48-62bd-3062-9f99-4c40ba7553b8,SESCO,II.5.1,La Pampa,AR-L,annual,2013,diesel combustion consumption by agriculture machines,0.757913184,TJ,CO2,74100.0,kg/TJ,56161.36693439999,kg -d6eecf97-fb4c-3d0c-9dde-ce1ae8ed8018,SESCO,II.5.1,La Pampa,AR-L,annual,2013,diesel combustion consumption by agriculture machines,0.757913184,TJ,CH4,3.0,kg/TJ,2.273739552,kg -767428ee-d7dc-30f8-bb6f-3b102ab96062,SESCO,II.5.1,La Pampa,AR-L,annual,2013,diesel combustion consumption by agriculture machines,0.757913184,TJ,N2O,0.6,kg/TJ,0.45474791039999996,kg -31ad8f2d-7892-37be-a77a-ea69bfaaca63,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,bioetanol combustion consumption by to the public,0.8342254800000001,TJ,CH4,10.0,kg/TJ,8.342254800000001,kg -be371208-e8b7-33dc-bd98-aef7337df8dc,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,bioetanol combustion consumption by to the public,0.8342254800000001,TJ,N2O,0.6,kg/TJ,0.500535288,kg -35b12868-41f4-3cc0-ad1e-28df3b1a13fe,SESCO,II.1.1,Capital Federal,AR-C,annual,2010,bioetanol combustion consumption by to the public,0.09628956000000001,TJ,CH4,10.0,kg/TJ,0.9628956000000001,kg -ff653487-a33c-3503-a39d-915a58cb0f25,SESCO,II.1.1,Capital Federal,AR-C,annual,2010,bioetanol combustion consumption by to the public,0.09628956000000001,TJ,N2O,0.6,kg/TJ,0.057773736000000006,kg -e58c7745-7569-3388-b28f-015f75256187,SESCO,II.1.1,Corrientes,AR-W,annual,2010,bioetanol combustion consumption by to the public,0.12952223999999998,TJ,CH4,10.0,kg/TJ,1.2952223999999999,kg -b1a4c5df-cb28-3350-ad9a-255111fdbf6f,SESCO,II.1.1,Corrientes,AR-W,annual,2010,bioetanol combustion consumption by to the public,0.12952223999999998,TJ,N2O,0.6,kg/TJ,0.07771334399999999,kg -61888ee5-b64c-362c-ab3d-5a1df7e55593,SESCO,II.1.1,Córdoba,AR-X,annual,2010,bioetanol combustion consumption by to the public,0.1256877,TJ,CH4,10.0,kg/TJ,1.2568770000000002,kg -bad1fe31-497f-3016-98af-65ac1885937c,SESCO,II.1.1,Córdoba,AR-X,annual,2010,bioetanol combustion consumption by to the public,0.1256877,TJ,N2O,0.6,kg/TJ,0.07541262,kg -5082389b-f239-3877-8b08-c609b8c7a500,SESCO,II.1.1,Entre Rios,AR-E,annual,2010,bioetanol combustion consumption by to the public,0.030250259999999998,TJ,CH4,10.0,kg/TJ,0.30250259999999995,kg -717a3341-2058-303e-9ea1-f79baff025cd,SESCO,II.1.1,Entre Rios,AR-E,annual,2010,bioetanol combustion consumption by to the public,0.030250259999999998,TJ,N2O,0.6,kg/TJ,0.018150155999999997,kg -cbc32429-53c8-3603-b26b-b668e1d427b2,SESCO,II.1.1,Jujuy,AR-Y,annual,2010,bioetanol combustion consumption by to the public,0.0340848,TJ,CH4,10.0,kg/TJ,0.340848,kg -d2906330-e6a7-322c-9a19-6dc39e396bcf,SESCO,II.1.1,Jujuy,AR-Y,annual,2010,bioetanol combustion consumption by to the public,0.0340848,TJ,N2O,0.6,kg/TJ,0.020450879999999998,kg -1cf5bce7-129f-37a7-9c4c-8651aa5d45a5,SESCO,II.1.1,La Pampa,AR-L,annual,2010,bioetanol combustion consumption by to the public,0.01405998,TJ,CH4,10.0,kg/TJ,0.1405998,kg -6d99fe2c-71b6-32c8-809d-a3ca1fc218a7,SESCO,II.1.1,La Pampa,AR-L,annual,2010,bioetanol combustion consumption by to the public,0.01405998,TJ,N2O,0.6,kg/TJ,0.008435988,kg -01ba8221-1474-3e45-aeae-a940d3bbd646,SESCO,II.1.1,Mendoza,AR-M,annual,2010,bioetanol combustion consumption by to the public,0.01107756,TJ,CH4,10.0,kg/TJ,0.1107756,kg -6d218887-9c3b-3259-83f3-e92d6930f4f2,SESCO,II.1.1,Mendoza,AR-M,annual,2010,bioetanol combustion consumption by to the public,0.01107756,TJ,N2O,0.6,kg/TJ,0.006646536,kg -cfdd628c-2631-3bdc-9ea6-e3f35bf2a933,SESCO,II.1.1,Santa Fe,AR-S,annual,2010,bioetanol combustion consumption by to the public,0.0553878,TJ,CH4,10.0,kg/TJ,0.553878,kg -7858e98c-f659-360b-8f8a-e7bd70050bb3,SESCO,II.1.1,Santa Fe,AR-S,annual,2010,bioetanol combustion consumption by to the public,0.0553878,TJ,N2O,0.6,kg/TJ,0.03323268,kg -d100cf16-a836-3b18-b1e3-c9aaea3192b5,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2010,bioetanol combustion consumption by to the public,0.06987384,TJ,CH4,10.0,kg/TJ,0.6987384000000001,kg -c6ce2169-76a0-39cd-a729-4d2c7abd1a57,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2010,bioetanol combustion consumption by to the public,0.06987384,TJ,N2O,0.6,kg/TJ,0.041924304,kg -8c085034-f527-3a63-9950-2289c7db76f5,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,bioetanol combustion consumption by to the public,6.2703250200000005,TJ,CH4,10.0,kg/TJ,62.70325020000001,kg -e0ab5d22-0795-3514-a6ea-546516662448,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,bioetanol combustion consumption by to the public,6.2703250200000005,TJ,N2O,0.6,kg/TJ,3.7621950120000003,kg -027fef4f-5b97-34bb-8a09-e31421513508,SESCO,II.1.1,Capital Federal,AR-C,annual,2010,bioetanol combustion consumption by to the public,2.02421106,TJ,CH4,10.0,kg/TJ,20.242110599999997,kg -99997eee-0641-36c3-a594-d2624760c2ad,SESCO,II.1.1,Capital Federal,AR-C,annual,2010,bioetanol combustion consumption by to the public,2.02421106,TJ,N2O,0.6,kg/TJ,1.2145266359999998,kg -b869dce3-3479-372d-9333-02cfe98cdcb2,SESCO,II.1.1,Chaco,AR-H,annual,2010,bioetanol combustion consumption by to the public,0.0702999,TJ,CH4,10.0,kg/TJ,0.7029989999999999,kg -bbfb02a9-611b-3027-b82e-dbd87ac17410,SESCO,II.1.1,Chaco,AR-H,annual,2010,bioetanol combustion consumption by to the public,0.0702999,TJ,N2O,0.6,kg/TJ,0.04217994,kg -6604dd72-736f-3e59-ac8e-1e21bb40bd7e,SESCO,II.1.1,Corrientes,AR-W,annual,2010,bioetanol combustion consumption by to the public,0.49678595999999997,TJ,CH4,10.0,kg/TJ,4.9678596,kg -e6bba2dd-a2f2-3550-ae50-51a5031ec05e,SESCO,II.1.1,Corrientes,AR-W,annual,2010,bioetanol combustion consumption by to the public,0.49678595999999997,TJ,N2O,0.6,kg/TJ,0.29807157599999995,kg -db0835f9-823a-34d8-9d20-35d27e027e20,SESCO,II.1.1,Córdoba,AR-X,annual,2010,bioetanol combustion consumption by to the public,1.8725337,TJ,CH4,10.0,kg/TJ,18.725337,kg -a40e3be6-3d6c-35dd-809e-3256e534c514,SESCO,II.1.1,Córdoba,AR-X,annual,2010,bioetanol combustion consumption by to the public,1.8725337,TJ,N2O,0.6,kg/TJ,1.1235202199999998,kg -0b4eb358-ad6b-384f-ab52-1fecd61c31ea,SESCO,II.1.1,Entre Rios,AR-E,annual,2010,bioetanol combustion consumption by to the public,0.23433299999999999,TJ,CH4,10.0,kg/TJ,2.34333,kg -729ebd04-284f-3218-bacc-9b9f611264c5,SESCO,II.1.1,Entre Rios,AR-E,annual,2010,bioetanol combustion consumption by to the public,0.23433299999999999,TJ,N2O,0.6,kg/TJ,0.1405998,kg -8d1b2949-bc2b-3475-b0ad-5ef86212dd17,SESCO,II.1.1,Formosa,AR-P,annual,2010,bioetanol combustion consumption by to the public,0.015338159999999998,TJ,CH4,10.0,kg/TJ,0.15338159999999998,kg -ca12d8b0-e987-364b-ba50-a09c98fcc47f,SESCO,II.1.1,Formosa,AR-P,annual,2010,bioetanol combustion consumption by to the public,0.015338159999999998,TJ,N2O,0.6,kg/TJ,0.009202895999999999,kg -9b7eb556-08a0-32d6-9e01-eca787bece9c,SESCO,II.1.1,Jujuy,AR-Y,annual,2010,bioetanol combustion consumption by to the public,0.16019856,TJ,CH4,10.0,kg/TJ,1.6019856,kg -4a75c13d-51ec-36b9-805a-8a68c6643c3a,SESCO,II.1.1,Jujuy,AR-Y,annual,2010,bioetanol combustion consumption by to the public,0.16019856,TJ,N2O,0.6,kg/TJ,0.096119136,kg -2ef629e3-b417-3019-8a5c-6931748891e7,SESCO,II.1.1,La Pampa,AR-L,annual,2010,bioetanol combustion consumption by to the public,0.28290384,TJ,CH4,10.0,kg/TJ,2.8290384,kg -471c0c95-83ca-3c56-8bd4-26a6fcb7bd00,SESCO,II.1.1,La Pampa,AR-L,annual,2010,bioetanol combustion consumption by to the public,0.28290384,TJ,N2O,0.6,kg/TJ,0.169742304,kg -39bdf1eb-d22d-3d96-8159-6061d8126678,SESCO,II.1.1,Mendoza,AR-M,annual,2010,bioetanol combustion consumption by to the public,0.27182628,TJ,CH4,10.0,kg/TJ,2.7182627999999998,kg -efdd9fac-1537-3220-80e6-557232310965,SESCO,II.1.1,Mendoza,AR-M,annual,2010,bioetanol combustion consumption by to the public,0.27182628,TJ,N2O,0.6,kg/TJ,0.16309576799999997,kg -d0c483db-b556-371a-a5d5-594a9324d032,SESCO,II.1.1,Misiones,AR-N,annual,2010,bioetanol combustion consumption by to the public,0.060074459999999996,TJ,CH4,10.0,kg/TJ,0.6007446,kg -0b189320-4906-3ddb-8bc6-ff1530ba3ac8,SESCO,II.1.1,Misiones,AR-N,annual,2010,bioetanol combustion consumption by to the public,0.060074459999999996,TJ,N2O,0.6,kg/TJ,0.036044676,kg -394d9628-e90d-348e-92fd-bc7fbb3db74b,SESCO,II.1.1,San Juan,AR-J,annual,2010,bioetanol combustion consumption by to the public,0.0021303,TJ,CH4,10.0,kg/TJ,0.021303,kg -f6f92680-53fc-3619-976c-35f3db28c257,SESCO,II.1.1,San Juan,AR-J,annual,2010,bioetanol combustion consumption by to the public,0.0021303,TJ,N2O,0.6,kg/TJ,0.0012781799999999999,kg -df27bcec-6d76-31ff-9dca-5a24a1b8ac5b,SESCO,II.1.1,Santa Fe,AR-S,annual,2010,bioetanol combustion consumption by to the public,1.28158848,TJ,CH4,10.0,kg/TJ,12.8158848,kg -ea389a5d-ce83-3fcd-ab89-b4232c00f21c,SESCO,II.1.1,Santa Fe,AR-S,annual,2010,bioetanol combustion consumption by to the public,1.28158848,TJ,N2O,0.6,kg/TJ,0.768953088,kg -d7188525-e0f5-369b-a493-d6175e6c51d6,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2010,bioetanol combustion consumption by to the public,0.5091417,TJ,CH4,10.0,kg/TJ,5.091417,kg -3fe9c2d1-8034-3e34-83a3-81672f24d407,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2010,bioetanol combustion consumption by to the public,0.5091417,TJ,N2O,0.6,kg/TJ,0.30548502,kg -6175ea5e-1d61-311c-8e47-36aa3ef02ddd,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,bioetanol combustion consumption by to the public,0.65314998,TJ,CH4,10.0,kg/TJ,6.531499800000001,kg -6e37ba29-9aff-3a04-a71a-936b2fe256a0,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,bioetanol combustion consumption by to the public,0.65314998,TJ,N2O,0.6,kg/TJ,0.391889988,kg -05f6017a-5a62-30b8-a631-19ac6cf17a9a,SESCO,II.1.1,Capital Federal,AR-C,annual,2010,bioetanol combustion consumption by to the public,0.21004757999999998,TJ,CH4,10.0,kg/TJ,2.1004758,kg -113825be-1d48-352b-9fed-dce0d42ae7b7,SESCO,II.1.1,Capital Federal,AR-C,annual,2010,bioetanol combustion consumption by to the public,0.21004757999999998,TJ,N2O,0.6,kg/TJ,0.126028548,kg -990693ce-ded4-33c6-abf1-504bbdd4046c,SESCO,II.1.1,Chaco,AR-H,annual,2010,bioetanol combustion consumption by to the public,0.01661634,TJ,CH4,10.0,kg/TJ,0.16616340000000002,kg -2b986d18-42d9-38d4-b6d9-3d15322f1dda,SESCO,II.1.1,Chaco,AR-H,annual,2010,bioetanol combustion consumption by to the public,0.01661634,TJ,N2O,0.6,kg/TJ,0.009969804,kg -82620fb6-460c-380b-907f-96fda7f94977,SESCO,II.1.1,Corrientes,AR-W,annual,2010,bioetanol combustion consumption by to the public,0.02811996,TJ,CH4,10.0,kg/TJ,0.2811996,kg -f1a52b77-4129-36fd-9561-ef89cd8ae0ba,SESCO,II.1.1,Corrientes,AR-W,annual,2010,bioetanol combustion consumption by to the public,0.02811996,TJ,N2O,0.6,kg/TJ,0.016871976,kg -6ce8fd5e-77f4-319e-b211-4db0abf7f6f6,SESCO,II.1.1,Córdoba,AR-X,annual,2010,bioetanol combustion consumption by to the public,0.21175181999999998,TJ,CH4,10.0,kg/TJ,2.1175181999999997,kg -019ea404-2ce7-3117-92f5-ded39f1e5f77,SESCO,II.1.1,Córdoba,AR-X,annual,2010,bioetanol combustion consumption by to the public,0.21175181999999998,TJ,N2O,0.6,kg/TJ,0.12705109199999998,kg -440ba18f-8886-3a71-9931-c7513b6dd337,SESCO,II.1.1,Entre Rios,AR-E,annual,2010,bioetanol combustion consumption by to the public,0.012355739999999999,TJ,CH4,10.0,kg/TJ,0.12355739999999998,kg -d2959387-a309-3e21-bd9e-b3c4179dba93,SESCO,II.1.1,Entre Rios,AR-E,annual,2010,bioetanol combustion consumption by to the public,0.012355739999999999,TJ,N2O,0.6,kg/TJ,0.007413443999999999,kg -f67fa5a5-b791-38cd-ae3f-bc842ee4f789,SESCO,II.1.1,Jujuy,AR-Y,annual,2010,bioetanol combustion consumption by to the public,0.0025563599999999997,TJ,CH4,10.0,kg/TJ,0.0255636,kg -92c477bd-2f60-3b02-b175-6419656b7967,SESCO,II.1.1,Jujuy,AR-Y,annual,2010,bioetanol combustion consumption by to the public,0.0025563599999999997,TJ,N2O,0.6,kg/TJ,0.0015338159999999997,kg -f79735c4-73e3-3870-abc3-2ebabf56e0bf,SESCO,II.1.1,La Pampa,AR-L,annual,2010,bioetanol combustion consumption by to the public,0.01959876,TJ,CH4,10.0,kg/TJ,0.19598759999999998,kg -203f0b4d-6620-35ac-bd08-89168e213b72,SESCO,II.1.1,La Pampa,AR-L,annual,2010,bioetanol combustion consumption by to the public,0.01959876,TJ,N2O,0.6,kg/TJ,0.011759256,kg -cbcfddf4-dca9-31ea-b1a4-8c67d7e4d9f5,SESCO,II.1.1,Mendoza,AR-M,annual,2010,bioetanol combustion consumption by to the public,0.03664116,TJ,CH4,10.0,kg/TJ,0.3664116,kg -f2b69dea-a42a-38f1-a1ce-520af43fcaeb,SESCO,II.1.1,Mendoza,AR-M,annual,2010,bioetanol combustion consumption by to the public,0.03664116,TJ,N2O,0.6,kg/TJ,0.021984695999999998,kg -7cb4f0f4-e316-3171-a5da-a70e1aa4a3f5,SESCO,II.1.1,Santa Fe,AR-S,annual,2010,bioetanol combustion consumption by to the public,0.15892038,TJ,CH4,10.0,kg/TJ,1.5892038,kg -d57f6efe-65af-3746-9c8b-b90002d55f36,SESCO,II.1.1,Santa Fe,AR-S,annual,2010,bioetanol combustion consumption by to the public,0.15892038,TJ,N2O,0.6,kg/TJ,0.095352228,kg -22fc16b9-31d4-33a4-93dd-6d11f291d9a2,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2010,bioetanol combustion consumption by to the public,0.04771872,TJ,CH4,10.0,kg/TJ,0.4771872,kg -69be165e-75d4-3f1e-b8b3-726449f6202f,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2010,bioetanol combustion consumption by to the public,0.04771872,TJ,N2O,0.6,kg/TJ,0.028631232,kg -16489120-66ff-31ce-9740-f7354bba59b6,SESCO,II.5.1,Buenos Aires,AR-B,annual,2010,bioetanol combustion consumption by agriculture machines,0.17766701999999998,TJ,CH4,10.0,kg/TJ,1.7766701999999999,kg -e53b3761-df4c-3399-9cc1-e8f001232e5d,SESCO,II.5.1,Buenos Aires,AR-B,annual,2010,bioetanol combustion consumption by agriculture machines,0.17766701999999998,TJ,N2O,0.6,kg/TJ,0.10660021199999999,kg -321ad8b3-45f4-3a03-8956-6267e3a59c0b,SESCO,II.5.1,Córdoba,AR-X,annual,2010,bioetanol combustion consumption by agriculture machines,0.10822350059999998,TJ,CH4,10.0,kg/TJ,1.0822350059999999,kg -c8c65a0e-4921-38c7-b755-123ad561eeb5,SESCO,II.5.1,Córdoba,AR-X,annual,2010,bioetanol combustion consumption by agriculture machines,0.10822350059999998,TJ,N2O,0.6,kg/TJ,0.06493410035999998,kg -c411fea5-6f04-300c-8344-03a5ca937d81,SESCO,II.5.1,Santa Fe,AR-S,annual,2010,bioetanol combustion consumption by agriculture machines,0.21142375379999997,TJ,CH4,10.0,kg/TJ,2.114237538,kg -3eec9c38-bd7e-30c0-8d9c-acf5f01afc73,SESCO,II.5.1,Santa Fe,AR-S,annual,2010,bioetanol combustion consumption by agriculture machines,0.21142375379999997,TJ,N2O,0.6,kg/TJ,0.12685425227999997,kg -c5ebee1a-d81d-38fa-b389-13857bfa9361,SESCO,II.5.1,Córdoba,AR-X,annual,2010,bioetanol combustion consumption by agriculture machines,0.05496174,TJ,CH4,10.0,kg/TJ,0.5496174,kg -85ed60e2-ee22-3e41-b677-2fb106ca36ae,SESCO,II.5.1,Córdoba,AR-X,annual,2010,bioetanol combustion consumption by agriculture machines,0.05496174,TJ,N2O,0.6,kg/TJ,0.032977044,kg -1ccf7733-a7ac-3446-b352-a5252d755a7f,SESCO,II.5.1,Santa Fe,AR-S,annual,2010,bioetanol combustion consumption by agriculture machines,0.013974767999999997,TJ,CH4,10.0,kg/TJ,0.13974767999999996,kg -ce12adbd-db35-30ff-833e-568def9a035f,SESCO,II.5.1,Santa Fe,AR-S,annual,2010,bioetanol combustion consumption by agriculture machines,0.013974767999999997,TJ,N2O,0.6,kg/TJ,0.008384860799999998,kg -d0d1214b-0fee-3717-9532-cd750beec210,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,bioetanol combustion consumption by to the public,7.150401799020001,TJ,CH4,10.0,kg/TJ,71.50401799020001,kg -d375b45b-b323-38e1-8914-b036a80d5eb2,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,bioetanol combustion consumption by to the public,7.150401799020001,TJ,N2O,0.6,kg/TJ,4.2902410794120005,kg -38ffee86-2655-3d97-8188-074f1e3952d0,SESCO,II.1.1,Capital Federal,AR-C,annual,2010,bioetanol combustion consumption by to the public,0.2250555435,TJ,CH4,10.0,kg/TJ,2.250555435,kg -5e74550b-fb66-3419-b344-d9fcf296f0cc,SESCO,II.1.1,Capital Federal,AR-C,annual,2010,bioetanol combustion consumption by to the public,0.2250555435,TJ,N2O,0.6,kg/TJ,0.1350333261,kg -c04edb1e-eab4-3a9e-baa3-7454e165e19f,SESCO,II.1.1,Chaco,AR-H,annual,2010,bioetanol combustion consumption by to the public,0.130225239,TJ,CH4,10.0,kg/TJ,1.30225239,kg -a02b59d7-d0e5-3c80-9706-9264f77712d1,SESCO,II.1.1,Chaco,AR-H,annual,2010,bioetanol combustion consumption by to the public,0.130225239,TJ,N2O,0.6,kg/TJ,0.0781351434,kg -554ae62c-96f1-30de-b782-a2c50586f83d,SESCO,II.1.1,Corrientes,AR-W,annual,2010,bioetanol combustion consumption by to the public,1.8593727065999996,TJ,CH4,10.0,kg/TJ,18.593727065999996,kg -fb76d3c8-232a-357b-a851-8d8b3c99ae2c,SESCO,II.1.1,Corrientes,AR-W,annual,2010,bioetanol combustion consumption by to the public,1.8593727065999996,TJ,N2O,0.6,kg/TJ,1.1156236239599997,kg -b2a9ccf8-0c33-3284-afc0-39522531b694,SESCO,II.1.1,Córdoba,AR-X,annual,2010,bioetanol combustion consumption by to the public,0.8152530282,TJ,CH4,10.0,kg/TJ,8.152530282,kg -b9c10e0d-161d-367a-8f5a-f0d3fa69f095,SESCO,II.1.1,Córdoba,AR-X,annual,2010,bioetanol combustion consumption by to the public,0.8152530282,TJ,N2O,0.6,kg/TJ,0.48915181692,kg -536a5576-5cae-3c92-a931-84a6cf4e3009,SESCO,II.1.1,Entre Rios,AR-E,annual,2010,bioetanol combustion consumption by to the public,0.3419216712,TJ,CH4,10.0,kg/TJ,3.419216712,kg -ce4dbf2d-d493-3f4c-a87d-f16716922750,SESCO,II.1.1,Entre Rios,AR-E,annual,2010,bioetanol combustion consumption by to the public,0.3419216712,TJ,N2O,0.6,kg/TJ,0.20515300272,kg -d05e54b2-6e37-3477-b259-5751405e4187,SESCO,II.1.1,La Pampa,AR-L,annual,2010,bioetanol combustion consumption by to the public,0.028895389199999996,TJ,CH4,10.0,kg/TJ,0.288953892,kg -0e359602-438c-380c-b969-6ad6b2b4de43,SESCO,II.1.1,La Pampa,AR-L,annual,2010,bioetanol combustion consumption by to the public,0.028895389199999996,TJ,N2O,0.6,kg/TJ,0.01733723352,kg -525678bb-437f-3656-a262-d34549989871,SESCO,II.1.1,Mendoza,AR-M,annual,2010,bioetanol combustion consumption by to the public,0.3141809046,TJ,CH4,10.0,kg/TJ,3.1418090459999997,kg -2d0d0fa9-ee5e-397d-a448-69c0100b20e5,SESCO,II.1.1,Mendoza,AR-M,annual,2010,bioetanol combustion consumption by to the public,0.3141809046,TJ,N2O,0.6,kg/TJ,0.18850854275999998,kg -f476d9dd-c779-3815-82de-246175713f99,SESCO,II.1.1,Misiones,AR-N,annual,2010,bioetanol combustion consumption by to the public,3.5202440591999995,TJ,CH4,10.0,kg/TJ,35.202440591999995,kg -e6a96181-6d22-3e79-aa2d-f0921db1f7f3,SESCO,II.1.1,Misiones,AR-N,annual,2010,bioetanol combustion consumption by to the public,3.5202440591999995,TJ,N2O,0.6,kg/TJ,2.1121464355199997,kg -cbfa01cc-4260-303a-b0fd-428502db664b,SESCO,II.1.1,Rio Negro,AR-R,annual,2010,bioetanol combustion consumption by to the public,0.0492014088,TJ,CH4,10.0,kg/TJ,0.492014088,kg -c4e6d280-4046-30a6-ad04-fb12d20351b1,SESCO,II.1.1,Rio Negro,AR-R,annual,2010,bioetanol combustion consumption by to the public,0.0492014088,TJ,N2O,0.6,kg/TJ,0.02952084528,kg -4159de8d-b2c3-3385-9ceb-050f60934e90,SESCO,II.1.1,Santa Fe,AR-S,annual,2010,bioetanol combustion consumption by to the public,2.5613108172,TJ,CH4,10.0,kg/TJ,25.613108171999997,kg -c5cd18e1-8ba8-3c49-8c63-4fe0c81766e2,SESCO,II.1.1,Santa Fe,AR-S,annual,2010,bioetanol combustion consumption by to the public,2.5613108172,TJ,N2O,0.6,kg/TJ,1.53678649032,kg -ddf9c9bb-4618-3e5c-a657-e6ba09264293,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,bioetanol combustion consumption by to the public,82.21249414188,TJ,CH4,10.0,kg/TJ,822.1249414188001,kg -77c513ac-f157-3b3c-8500-fa8ec24e20d7,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,bioetanol combustion consumption by to the public,82.21249414188,TJ,N2O,0.6,kg/TJ,49.327496485128,kg -423e1263-7035-388d-bb48-f10b0758993a,SESCO,II.1.1,Capital Federal,AR-C,annual,2010,bioetanol combustion consumption by to the public,28.617590836979996,TJ,CH4,10.0,kg/TJ,286.17590836979997,kg -d75dfa51-bfe7-38db-89c2-7b93a025e8ed,SESCO,II.1.1,Capital Federal,AR-C,annual,2010,bioetanol combustion consumption by to the public,28.617590836979996,TJ,N2O,0.6,kg/TJ,17.170554502187997,kg -11946764-c428-392a-86f2-26738f42ade3,SESCO,II.1.1,Catamarca,AR-K,annual,2010,bioetanol combustion consumption by to the public,3.1713818706,TJ,CH4,10.0,kg/TJ,31.713818705999998,kg -8415f5e0-91e6-3b3d-9717-34bcce37126c,SESCO,II.1.1,Catamarca,AR-K,annual,2010,bioetanol combustion consumption by to the public,3.1713818706,TJ,N2O,0.6,kg/TJ,1.9028291223599998,kg -1e551b31-bc27-3088-9d41-19b63e0ac2ec,SESCO,II.1.1,Chaco,AR-H,annual,2010,bioetanol combustion consumption by to the public,4.1020971587999995,TJ,CH4,10.0,kg/TJ,41.020971587999995,kg -9c87ec87-a9cd-3a9b-ac07-90789556bd23,SESCO,II.1.1,Chaco,AR-H,annual,2010,bioetanol combustion consumption by to the public,4.1020971587999995,TJ,N2O,0.6,kg/TJ,2.4612582952799995,kg -62e8292c-2e30-326c-bce6-4b7d25129757,SESCO,II.1.1,Chubut,AR-U,annual,2010,bioetanol combustion consumption by to the public,3.508241949,TJ,CH4,10.0,kg/TJ,35.08241949,kg -a9d2ea56-c9eb-3f6a-94d5-2bf732cae53c,SESCO,II.1.1,Chubut,AR-U,annual,2010,bioetanol combustion consumption by to the public,3.508241949,TJ,N2O,0.6,kg/TJ,2.1049451693999996,kg -fabf17bd-3e37-3b36-bb2e-038155648364,SESCO,II.1.1,Corrientes,AR-W,annual,2010,bioetanol combustion consumption by to the public,4.632614288999999,TJ,CH4,10.0,kg/TJ,46.32614288999999,kg -3f9a5a97-e718-3cc3-8760-7101ce93a971,SESCO,II.1.1,Corrientes,AR-W,annual,2010,bioetanol combustion consumption by to the public,4.632614288999999,TJ,N2O,0.6,kg/TJ,2.7795685733999993,kg -cba684ac-fc66-38b1-9636-f8702454e6c9,SESCO,II.1.1,Córdoba,AR-X,annual,2010,bioetanol combustion consumption by to the public,30.051296370899998,TJ,CH4,10.0,kg/TJ,300.51296370899996,kg -b8c618c4-1821-3a85-af6e-ac3139238ade,SESCO,II.1.1,Córdoba,AR-X,annual,2010,bioetanol combustion consumption by to the public,30.051296370899998,TJ,N2O,0.6,kg/TJ,18.03077782254,kg -4fd979f5-e9fd-3439-bd26-63459690a960,SESCO,II.1.1,Entre Rios,AR-E,annual,2010,bioetanol combustion consumption by to the public,8.781092339399999,TJ,CH4,10.0,kg/TJ,87.81092339399999,kg -cf4a713e-d2ff-340b-9eee-d7f782296dbe,SESCO,II.1.1,Entre Rios,AR-E,annual,2010,bioetanol combustion consumption by to the public,8.781092339399999,TJ,N2O,0.6,kg/TJ,5.2686554036399995,kg -01803116-f115-3b53-abef-1a3a2468b5a2,SESCO,II.1.1,Formosa,AR-P,annual,2010,bioetanol combustion consumption by to the public,3.6436736412,TJ,CH4,10.0,kg/TJ,36.436736412,kg -2537d672-5e35-307d-a2f8-3df2d935d95a,SESCO,II.1.1,Formosa,AR-P,annual,2010,bioetanol combustion consumption by to the public,3.6436736412,TJ,N2O,0.6,kg/TJ,2.1862041847199998,kg -259a655f-ca44-3461-acbe-c60ea3a973c7,SESCO,II.1.1,Jujuy,AR-Y,annual,2010,bioetanol combustion consumption by to the public,0.6694510356,TJ,CH4,10.0,kg/TJ,6.694510355999999,kg -f8f69a37-da25-3f8a-b367-b2311deac843,SESCO,II.1.1,Jujuy,AR-Y,annual,2010,bioetanol combustion consumption by to the public,0.6694510356,TJ,N2O,0.6,kg/TJ,0.40167062136,kg -9ad59e36-b12c-3d1e-b09e-be2ff3b59045,SESCO,II.1.1,La Pampa,AR-L,annual,2010,bioetanol combustion consumption by to the public,1.1109173652,TJ,CH4,10.0,kg/TJ,11.109173651999999,kg -9b34f613-e153-3a82-9d6e-bee7256a7a81,SESCO,II.1.1,La Pampa,AR-L,annual,2010,bioetanol combustion consumption by to the public,1.1109173652,TJ,N2O,0.6,kg/TJ,0.6665504191199999,kg -f10fe664-06c6-331c-91cd-1feba28e81a9,SESCO,II.1.1,La Rioja,AR-F,annual,2010,bioetanol combustion consumption by to the public,2.2552080102,TJ,CH4,10.0,kg/TJ,22.552080102,kg -3289c929-660f-3dda-ab29-4ced35d1e68a,SESCO,II.1.1,La Rioja,AR-F,annual,2010,bioetanol combustion consumption by to the public,2.2552080102,TJ,N2O,0.6,kg/TJ,1.35312480612,kg -78f565ed-ae1b-32f3-bd6a-75e8c00ffc10,SESCO,II.1.1,Mendoza,AR-M,annual,2010,bioetanol combustion consumption by to the public,3.2621369112,TJ,CH4,10.0,kg/TJ,32.621369112,kg -4348f40f-5652-3ecf-ab30-8a97ebe0eb63,SESCO,II.1.1,Mendoza,AR-M,annual,2010,bioetanol combustion consumption by to the public,3.2621369112,TJ,N2O,0.6,kg/TJ,1.95728214672,kg -7310c232-89c3-3029-b4ca-444727d69c3a,SESCO,II.1.1,Misiones,AR-N,annual,2010,bioetanol combustion consumption by to the public,7.451861830199999,TJ,CH4,10.0,kg/TJ,74.518618302,kg -5af6bc6b-b69c-3346-a73b-6a90dacc2d45,SESCO,II.1.1,Misiones,AR-N,annual,2010,bioetanol combustion consumption by to the public,7.451861830199999,TJ,N2O,0.6,kg/TJ,4.471117098119999,kg -dd11ddf3-afb6-348d-bea1-be3d4b66363e,SESCO,II.1.1,Neuquén,AR-Q,annual,2010,bioetanol combustion consumption by to the public,3.1987264013999996,TJ,CH4,10.0,kg/TJ,31.987264013999997,kg -54d964f7-665f-3bc1-8366-1f0b7dd12f7b,SESCO,II.1.1,Neuquén,AR-Q,annual,2010,bioetanol combustion consumption by to the public,3.1987264013999996,TJ,N2O,0.6,kg/TJ,1.9192358408399997,kg -c3d39956-dfd8-326c-a156-348a6f2dcb94,SESCO,II.1.1,Rio Negro,AR-R,annual,2010,bioetanol combustion consumption by to the public,4.8038733666,TJ,CH4,10.0,kg/TJ,48.038733666000006,kg -55215498-797e-3d47-992e-6d48728bb79b,SESCO,II.1.1,Rio Negro,AR-R,annual,2010,bioetanol combustion consumption by to the public,4.8038733666,TJ,N2O,0.6,kg/TJ,2.88232401996,kg -9ebd7f66-3fd7-38e0-99b6-d573b0226220,SESCO,II.1.1,Salta,AR-A,annual,2010,bioetanol combustion consumption by to the public,0.6254475588,TJ,CH4,10.0,kg/TJ,6.254475588,kg -a2628a3a-68c5-355e-9516-49e83af2055d,SESCO,II.1.1,Salta,AR-A,annual,2010,bioetanol combustion consumption by to the public,0.6254475588,TJ,N2O,0.6,kg/TJ,0.37526853528,kg -0822a43e-e044-38c4-bcc3-1189c5e41cc8,SESCO,II.1.1,San Juan,AR-J,annual,2010,bioetanol combustion consumption by to the public,2.6884939878,TJ,CH4,10.0,kg/TJ,26.884939877999997,kg -fe02d3a2-0c34-3c78-9d65-662f6221c034,SESCO,II.1.1,San Juan,AR-J,annual,2010,bioetanol combustion consumption by to the public,2.6884939878,TJ,N2O,0.6,kg/TJ,1.61309639268,kg -62e44831-0606-3bbb-9d40-212b8ed964f6,SESCO,II.1.1,San Luis,AR-D,annual,2010,bioetanol combustion consumption by to the public,5.557330652399999,TJ,CH4,10.0,kg/TJ,55.57330652399999,kg -1e2b5a13-52bf-3007-af68-d4189cb67e15,SESCO,II.1.1,San Luis,AR-D,annual,2010,bioetanol combustion consumption by to the public,5.557330652399999,TJ,N2O,0.6,kg/TJ,3.3343983914399993,kg -e08cfc45-66b1-31f5-b6fc-53ee119e56b6,SESCO,II.1.1,Santa Fe,AR-S,annual,2010,bioetanol combustion consumption by to the public,24.93555603156,TJ,CH4,10.0,kg/TJ,249.3555603156,kg -10f95be0-6d4d-38a6-89d1-cdacc7dccc8b,SESCO,II.1.1,Santa Fe,AR-S,annual,2010,bioetanol combustion consumption by to the public,24.93555603156,TJ,N2O,0.6,kg/TJ,14.961333618936,kg -7e2ca8ab-2b68-3427-815a-4c38ceae11f1,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2010,bioetanol combustion consumption by to the public,2.3012736174,TJ,CH4,10.0,kg/TJ,23.012736174,kg -c2c3b580-e50a-3533-9a3d-047805e466be,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2010,bioetanol combustion consumption by to the public,2.3012736174,TJ,N2O,0.6,kg/TJ,1.38076417044,kg -3595be19-a0f4-3f51-92b4-728e40f8c39c,SESCO,II.1.1,Tucuman,AR-T,annual,2010,bioetanol combustion consumption by to the public,0.7476628698,TJ,CH4,10.0,kg/TJ,7.476628698,kg -e31aa510-690e-3577-8d40-9b7b4b252628,SESCO,II.1.1,Tucuman,AR-T,annual,2010,bioetanol combustion consumption by to the public,0.7476628698,TJ,N2O,0.6,kg/TJ,0.44859772187999997,kg -935e6e87-83ab-3fad-a258-b0e908b302db,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,bioetanol combustion consumption by to the public,17.370019689119996,TJ,CH4,10.0,kg/TJ,173.70019689119997,kg -d6970c3d-b5fb-3bc0-8f89-b7bf2d8c3e29,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,bioetanol combustion consumption by to the public,17.370019689119996,TJ,N2O,0.6,kg/TJ,10.422011813471997,kg -f26e4acc-838f-3d42-8e52-fae0d72606f1,SESCO,II.1.1,Capital Federal,AR-C,annual,2010,bioetanol combustion consumption by to the public,9.5759434845,TJ,CH4,10.0,kg/TJ,95.759434845,kg -d66dcb1b-cffc-3dfe-bdce-a8af59dbcbd4,SESCO,II.1.1,Capital Federal,AR-C,annual,2010,bioetanol combustion consumption by to the public,9.5759434845,TJ,N2O,0.6,kg/TJ,5.7455660907,kg -60262fff-e0d9-3263-9793-5cd517a4ef22,SESCO,II.1.1,Catamarca,AR-K,annual,2010,bioetanol combustion consumption by to the public,0.4986947088,TJ,CH4,10.0,kg/TJ,4.986947088,kg -fb5fe785-5321-3f68-a32d-3718a68ce14f,SESCO,II.1.1,Catamarca,AR-K,annual,2010,bioetanol combustion consumption by to the public,0.4986947088,TJ,N2O,0.6,kg/TJ,0.29921682528,kg -92cdd386-3de1-3151-a133-6be2b3221c42,SESCO,II.1.1,Chaco,AR-H,annual,2010,bioetanol combustion consumption by to the public,0.5604989724,TJ,CH4,10.0,kg/TJ,5.604989724,kg -d3c98c41-ef52-3b64-bc4f-557caf0058ef,SESCO,II.1.1,Chaco,AR-H,annual,2010,bioetanol combustion consumption by to the public,0.5604989724,TJ,N2O,0.6,kg/TJ,0.33629938344,kg -ee8f37d5-7205-3716-89b5-b455d706df37,SESCO,II.1.1,Chubut,AR-U,annual,2010,bioetanol combustion consumption by to the public,0.3057278742,TJ,CH4,10.0,kg/TJ,3.0572787420000003,kg -76a43162-a562-379b-a6c4-e4f26b24e9b7,SESCO,II.1.1,Chubut,AR-U,annual,2010,bioetanol combustion consumption by to the public,0.3057278742,TJ,N2O,0.6,kg/TJ,0.18343672452,kg -93f71732-26a8-34f8-9f6b-af0a73583421,SESCO,II.1.1,Corrientes,AR-W,annual,2010,bioetanol combustion consumption by to the public,0.4106877552,TJ,CH4,10.0,kg/TJ,4.106877552,kg -aaa4ad72-61d7-35e3-96d2-691c9505bad2,SESCO,II.1.1,Corrientes,AR-W,annual,2010,bioetanol combustion consumption by to the public,0.4106877552,TJ,N2O,0.6,kg/TJ,0.24641265312,kg -ddca4af9-ec65-3702-9c45-d9d736dc917f,SESCO,II.1.1,Córdoba,AR-X,annual,2010,bioetanol combustion consumption by to the public,6.05977341102,TJ,CH4,10.0,kg/TJ,60.5977341102,kg -57ba830b-6b78-36dd-91eb-001018af330a,SESCO,II.1.1,Córdoba,AR-X,annual,2010,bioetanol combustion consumption by to the public,6.05977341102,TJ,N2O,0.6,kg/TJ,3.635864046612,kg -cefad75b-f767-3d3d-a112-417a73eeec6a,SESCO,II.1.1,Entre Rios,AR-E,annual,2010,bioetanol combustion consumption by to the public,1.5810873569999997,TJ,CH4,10.0,kg/TJ,15.810873569999996,kg -0155f4d1-de93-3e02-893a-f25402fbba2e,SESCO,II.1.1,Entre Rios,AR-E,annual,2010,bioetanol combustion consumption by to the public,1.5810873569999997,TJ,N2O,0.6,kg/TJ,0.9486524141999998,kg -e0e984e4-f436-3d15-a18a-eb5a059dea98,SESCO,II.1.1,Formosa,AR-P,annual,2010,bioetanol combustion consumption by to the public,0.5865610626,TJ,CH4,10.0,kg/TJ,5.865610626,kg -9623c3e7-8891-30a2-b7bd-e4da93a397ae,SESCO,II.1.1,Formosa,AR-P,annual,2010,bioetanol combustion consumption by to the public,0.5865610626,TJ,N2O,0.6,kg/TJ,0.35193663756,kg -07bf9f2e-f266-3c0d-a387-6ad45a952afd,SESCO,II.1.1,Jujuy,AR-Y,annual,2010,bioetanol combustion consumption by to the public,0.016952927399999998,TJ,CH4,10.0,kg/TJ,0.16952927399999998,kg -d4d12bb5-8620-358d-8d47-518fd12fe5e4,SESCO,II.1.1,Jujuy,AR-Y,annual,2010,bioetanol combustion consumption by to the public,0.016952927399999998,TJ,N2O,0.6,kg/TJ,0.010171756439999999,kg -3f1d69dc-eaea-3f64-b229-135961a26b4b,SESCO,II.1.1,La Pampa,AR-L,annual,2010,bioetanol combustion consumption by to the public,0.2250065466,TJ,CH4,10.0,kg/TJ,2.250065466,kg -76674bcb-9bb6-3bea-aa46-270664dda843,SESCO,II.1.1,La Pampa,AR-L,annual,2010,bioetanol combustion consumption by to the public,0.2250065466,TJ,N2O,0.6,kg/TJ,0.13500392796,kg -8d3d692a-7553-34e0-a8b1-9d5b2b65e1a2,SESCO,II.1.1,La Rioja,AR-F,annual,2010,bioetanol combustion consumption by to the public,0.4189703616,TJ,CH4,10.0,kg/TJ,4.189703616,kg -005870b8-e32f-3d67-a38e-ac527631b68e,SESCO,II.1.1,La Rioja,AR-F,annual,2010,bioetanol combustion consumption by to the public,0.4189703616,TJ,N2O,0.6,kg/TJ,0.25138221696,kg -a9004f48-5954-3e93-aceb-c39aa09f0ade,SESCO,II.1.1,Mendoza,AR-M,annual,2010,bioetanol combustion consumption by to the public,0.6780617082,TJ,CH4,10.0,kg/TJ,6.780617082,kg -63b963ce-ba2f-3fec-9d3b-9aebf27d6bf4,SESCO,II.1.1,Mendoza,AR-M,annual,2010,bioetanol combustion consumption by to the public,0.6780617082,TJ,N2O,0.6,kg/TJ,0.40683702492,kg -157e3a81-dab4-32b3-95f8-9caa39e5ad49,SESCO,II.1.1,Misiones,AR-N,annual,2010,bioetanol combustion consumption by to the public,0.499576653,TJ,CH4,10.0,kg/TJ,4.99576653,kg -07455244-d023-3edf-b47b-2a0a4f9e55df,SESCO,II.1.1,Misiones,AR-N,annual,2010,bioetanol combustion consumption by to the public,0.499576653,TJ,N2O,0.6,kg/TJ,0.2997459918,kg -a5e527f3-6793-30f7-bb9c-ddc4366469a6,SESCO,II.1.1,Neuquén,AR-Q,annual,2010,bioetanol combustion consumption by to the public,0.5451821154,TJ,CH4,10.0,kg/TJ,5.451821153999999,kg -75112e41-b1ea-3bb2-8668-b00584371903,SESCO,II.1.1,Neuquén,AR-Q,annual,2010,bioetanol combustion consumption by to the public,0.5451821154,TJ,N2O,0.6,kg/TJ,0.32710926923999994,kg -8a18a69d-070f-36d9-a884-71b06202b936,SESCO,II.1.1,Rio Negro,AR-R,annual,2010,bioetanol combustion consumption by to the public,0.8503774146,TJ,CH4,10.0,kg/TJ,8.503774146000001,kg -4209e62a-22b5-3d7f-b3c1-8edab6d4e137,SESCO,II.1.1,Rio Negro,AR-R,annual,2010,bioetanol combustion consumption by to the public,0.8503774146,TJ,N2O,0.6,kg/TJ,0.51022644876,kg -c7f4ddee-c0e4-3e02-beaa-683c32c695ea,SESCO,II.1.1,Salta,AR-A,annual,2010,bioetanol combustion consumption by to the public,0.07789228919999999,TJ,CH4,10.0,kg/TJ,0.778922892,kg -820c24d8-8146-3a9b-9a45-b7dca45cc6cf,SESCO,II.1.1,Salta,AR-A,annual,2010,bioetanol combustion consumption by to the public,0.07789228919999999,TJ,N2O,0.6,kg/TJ,0.04673537351999999,kg -789e1616-7427-36e1-9d47-fd03fb10a187,SESCO,II.1.1,San Juan,AR-J,annual,2010,bioetanol combustion consumption by to the public,0.47503985760000006,TJ,CH4,10.0,kg/TJ,4.750398576,kg -27c624d2-9938-3c9e-87b3-9d654d961bea,SESCO,II.1.1,San Juan,AR-J,annual,2010,bioetanol combustion consumption by to the public,0.47503985760000006,TJ,N2O,0.6,kg/TJ,0.28502391456000004,kg -9c9ee2c9-ab9a-3919-a7ff-e32a9dee6d0c,SESCO,II.1.1,San Luis,AR-D,annual,2010,bioetanol combustion consumption by to the public,0.7590770171999999,TJ,CH4,10.0,kg/TJ,7.590770171999999,kg -4e48810d-f0a2-3752-883f-fe8659e156b2,SESCO,II.1.1,San Luis,AR-D,annual,2010,bioetanol combustion consumption by to the public,0.7590770171999999,TJ,N2O,0.6,kg/TJ,0.4554462103199999,kg -d2f4ec64-681b-3b91-b654-1cd2106810a6,SESCO,II.1.1,Santa Fe,AR-S,annual,2010,bioetanol combustion consumption by to the public,5.49875720178,TJ,CH4,10.0,kg/TJ,54.987572017800005,kg -ad427c81-73bc-3114-8a63-43cd8e30c38c,SESCO,II.1.1,Santa Fe,AR-S,annual,2010,bioetanol combustion consumption by to the public,5.49875720178,TJ,N2O,0.6,kg/TJ,3.299254321068,kg -2c8dbde2-103e-3b6a-8c17-14ffab0ebda9,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2010,bioetanol combustion consumption by to the public,0.817694352,TJ,CH4,10.0,kg/TJ,8.17694352,kg -610bc497-a40a-3235-acc0-9908e8ac6e2e,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2010,bioetanol combustion consumption by to the public,0.817694352,TJ,N2O,0.6,kg/TJ,0.49061661119999994,kg -9d8fc066-0e4f-3e2b-8816-d42edb57f940,SESCO,II.1.1,Tucuman,AR-T,annual,2010,bioetanol combustion consumption by to the public,0.19435152960000002,TJ,CH4,10.0,kg/TJ,1.9435152960000002,kg -fa4666a8-194b-3e70-955a-69a0fd2bcb34,SESCO,II.1.1,Tucuman,AR-T,annual,2010,bioetanol combustion consumption by to the public,0.19435152960000002,TJ,N2O,0.6,kg/TJ,0.11661091776,kg -f8c87e0f-92a9-3437-b281-5f6ba524d02f,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,bioetanol combustion consumption by freight transport,1.2781799999999998e-05,TJ,CH4,10.0,kg/TJ,0.00012781799999999997,kg -86d0c6b7-af58-3361-9442-cf0272fe848c,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,bioetanol combustion consumption by freight transport,1.2781799999999998e-05,TJ,N2O,0.6,kg/TJ,7.66908e-06,kg -44eeabff-3e39-375e-8e09-2aabe9586c4d,SESCO,II.1.1,Capital Federal,AR-C,annual,2010,bioetanol combustion consumption by freight transport,0.0002002482,TJ,CH4,10.0,kg/TJ,0.002002482,kg -fc8e07d1-f901-3d47-994a-23535de9f1c5,SESCO,II.1.1,Capital Federal,AR-C,annual,2010,bioetanol combustion consumption by freight transport,0.0002002482,TJ,N2O,0.6,kg/TJ,0.00012014892,kg -d83aa82a-5ee1-3d5c-a25a-aad2a04d59d6,SESCO,II.1.1,Misiones,AR-N,annual,2010,bioetanol combustion consumption by freight transport,2.98242e-05,TJ,CH4,10.0,kg/TJ,0.000298242,kg -8895eb74-b43d-34c4-a1b0-d1b0006a645a,SESCO,II.1.1,Misiones,AR-N,annual,2010,bioetanol combustion consumption by freight transport,2.98242e-05,TJ,N2O,0.6,kg/TJ,1.789452e-05,kg -cede2b8f-0d97-3593-9c42-598583b50362,SESCO,II.1.1,Santa Fe,AR-S,annual,2010,bioetanol combustion consumption by freight transport,0.0009756774,TJ,CH4,10.0,kg/TJ,0.009756774,kg -ec7fc68a-fd06-3d6d-ae35-c4f06dd19548,SESCO,II.1.1,Santa Fe,AR-S,annual,2010,bioetanol combustion consumption by freight transport,0.0009756774,TJ,N2O,0.6,kg/TJ,0.00058540644,kg -529f70c6-5f58-3665-9bc9-4897b9a1929c,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,bioetanol combustion consumption by freight transport,0.05581386,TJ,CH4,10.0,kg/TJ,0.5581386,kg -3b75dbd8-e4b2-33bd-b304-a3d3fbee1f3f,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,bioetanol combustion consumption by freight transport,0.05581386,TJ,N2O,0.6,kg/TJ,0.033488316,kg -fa39c1f3-77c1-3b54-8869-85be9ba1601d,SESCO,II.1.1,Capital Federal,AR-C,annual,2010,bioetanol combustion consumption by freight transport,0.19752567659999998,TJ,CH4,10.0,kg/TJ,1.9752567659999998,kg -66053cc2-60b1-33d0-b553-f8c7ea8de421,SESCO,II.1.1,Capital Federal,AR-C,annual,2010,bioetanol combustion consumption by freight transport,0.19752567659999998,TJ,N2O,0.6,kg/TJ,0.11851540595999999,kg -eb2afe4f-66ec-355e-9af7-34907372bb2c,SESCO,II.1.1,Corrientes,AR-W,annual,2010,bioetanol combustion consumption by freight transport,0.00011077560000000001,TJ,CH4,10.0,kg/TJ,0.001107756,kg -c4a66dfb-3def-31a1-b50c-90f45bd43a61,SESCO,II.1.1,Corrientes,AR-W,annual,2010,bioetanol combustion consumption by freight transport,0.00011077560000000001,TJ,N2O,0.6,kg/TJ,6.646536e-05,kg -831191af-c28d-3fdb-9250-02508821f17b,SESCO,II.1.1,Córdoba,AR-X,annual,2010,bioetanol combustion consumption by freight transport,0.005854064399999999,TJ,CH4,10.0,kg/TJ,0.05854064399999999,kg -456d6be0-f84d-30ec-857d-806b2ab6cc71,SESCO,II.1.1,Córdoba,AR-X,annual,2010,bioetanol combustion consumption by freight transport,0.005854064399999999,TJ,N2O,0.6,kg/TJ,0.0035124386399999993,kg -53fb65a7-0870-3f86-ba63-2ac9e8b815c5,SESCO,II.1.1,Entre Rios,AR-E,annual,2010,bioetanol combustion consumption by freight transport,0.45475940160000006,TJ,CH4,10.0,kg/TJ,4.547594016000001,kg -dd57a16a-ab44-3ece-9246-afa95227048d,SESCO,II.1.1,Entre Rios,AR-E,annual,2010,bioetanol combustion consumption by freight transport,0.45475940160000006,TJ,N2O,0.6,kg/TJ,0.27285564096000003,kg -66354e68-1671-38e9-bee5-9a82e512520b,SESCO,II.1.1,Misiones,AR-N,annual,2010,bioetanol combustion consumption by freight transport,0.00028119960000000003,TJ,CH4,10.0,kg/TJ,0.002811996,kg -eeb6c888-e6d3-3346-a297-40088daa757e,SESCO,II.1.1,Misiones,AR-N,annual,2010,bioetanol combustion consumption by freight transport,0.00028119960000000003,TJ,N2O,0.6,kg/TJ,0.00016871976,kg -d6dd8afc-0a56-3737-ab20-5e4e731a81f7,SESCO,II.1.1,Salta,AR-A,annual,2010,bioetanol combustion consumption by freight transport,0.0128499696,TJ,CH4,10.0,kg/TJ,0.128499696,kg -fb3e8ed4-3ad0-37e4-b25a-3f7297776ae4,SESCO,II.1.1,Salta,AR-A,annual,2010,bioetanol combustion consumption by freight transport,0.0128499696,TJ,N2O,0.6,kg/TJ,0.00770998176,kg -78db2853-5c45-39b9-a1d6-8646bbc28aaa,SESCO,II.1.1,San Luis,AR-D,annual,2010,bioetanol combustion consumption by freight transport,0.0008734229999999998,TJ,CH4,10.0,kg/TJ,0.008734229999999997,kg -43942304-d219-36b7-9e77-0bbef100869a,SESCO,II.1.1,San Luis,AR-D,annual,2010,bioetanol combustion consumption by freight transport,0.0008734229999999998,TJ,N2O,0.6,kg/TJ,0.0005240537999999999,kg -fbf41e94-1a4b-37e8-a636-da34f0d655af,SESCO,II.1.1,Santa Fe,AR-S,annual,2010,bioetanol combustion consumption by freight transport,0.0096758226,TJ,CH4,10.0,kg/TJ,0.096758226,kg -66588eef-7158-31be-adf7-ade92cba0f1b,SESCO,II.1.1,Santa Fe,AR-S,annual,2010,bioetanol combustion consumption by freight transport,0.0096758226,TJ,N2O,0.6,kg/TJ,0.00580549356,kg -021afa1f-c6b0-3ad4-a365-5ab430ed43d3,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2010,bioetanol combustion consumption by freight transport,0.0003749328,TJ,CH4,10.0,kg/TJ,0.003749328,kg -1db5bea8-296f-3c6e-b99c-062c0836244c,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2010,bioetanol combustion consumption by freight transport,0.0003749328,TJ,N2O,0.6,kg/TJ,0.00022495968,kg -76eaa0e9-d798-352e-80be-eccfcd5b4215,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2010,bioetanol combustion consumption by freight transport,0.0002300724,TJ,CH4,10.0,kg/TJ,0.002300724,kg -c864015c-0f11-3cfd-ac44-f05f7d78219e,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2010,bioetanol combustion consumption by freight transport,0.0002300724,TJ,N2O,0.6,kg/TJ,0.00013804344,kg -ca6c5b14-ee13-32a4-9c68-b7015d373ddf,SESCO,II.1.1,Tucuman,AR-T,annual,2010,bioetanol combustion consumption by freight transport,0.0019215306,TJ,CH4,10.0,kg/TJ,0.019215306,kg -53487821-0ef1-3f8c-9176-57fe3933357d,SESCO,II.1.1,Tucuman,AR-T,annual,2010,bioetanol combustion consumption by freight transport,0.0019215306,TJ,N2O,0.6,kg/TJ,0.00115291836,kg -2aed4166-e1ce-3ed3-b9ca-8d26270a0b1b,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,bioetanol combustion consumption by freight transport,0.039994252200000004,TJ,CH4,10.0,kg/TJ,0.399942522,kg -91bfe3cc-815e-3cf1-b61f-e8d3ab180d47,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,bioetanol combustion consumption by freight transport,0.039994252200000004,TJ,N2O,0.6,kg/TJ,0.02399655132,kg -590e373f-19a2-3aea-989b-df98b59e1cac,SESCO,II.1.1,Capital Federal,AR-C,annual,2010,bioetanol combustion consumption by freight transport,0.2029622022,TJ,CH4,10.0,kg/TJ,2.029622022,kg -7a4b8e92-fd9f-3a1a-99a3-cb5770bf0a98,SESCO,II.1.1,Capital Federal,AR-C,annual,2010,bioetanol combustion consumption by freight transport,0.2029622022,TJ,N2O,0.6,kg/TJ,0.12177732131999999,kg -df037427-12aa-346c-9e5e-56985d37e11d,SESCO,II.1.1,Chaco,AR-H,annual,2010,bioetanol combustion consumption by freight transport,0.0001448604,TJ,CH4,10.0,kg/TJ,0.001448604,kg -3ef18fbb-a4eb-3cd2-9f7f-5d086aa354bc,SESCO,II.1.1,Chaco,AR-H,annual,2010,bioetanol combustion consumption by freight transport,0.0001448604,TJ,N2O,0.6,kg/TJ,8.691624e-05,kg -cad865b3-422c-36c7-baf2-901d7252d5ff,SESCO,II.1.1,Corrientes,AR-W,annual,2010,bioetanol combustion consumption by freight transport,0.0006518718,TJ,CH4,10.0,kg/TJ,0.006518718,kg -9c58e3dd-0ac4-3e3e-a493-5a2443247d62,SESCO,II.1.1,Corrientes,AR-W,annual,2010,bioetanol combustion consumption by freight transport,0.0006518718,TJ,N2O,0.6,kg/TJ,0.00039112308,kg -296bee66-ad83-363b-af5a-ba58b147e423,SESCO,II.1.1,Córdoba,AR-X,annual,2010,bioetanol combustion consumption by freight transport,0.0037834127999999993,TJ,CH4,10.0,kg/TJ,0.037834127999999995,kg -1751994c-7390-36c2-a412-8ee13940a264,SESCO,II.1.1,Córdoba,AR-X,annual,2010,bioetanol combustion consumption by freight transport,0.0037834127999999993,TJ,N2O,0.6,kg/TJ,0.0022700476799999993,kg -7fa834ec-3dbc-373c-80a1-c322c74b0c7f,SESCO,II.1.1,Entre Rios,AR-E,annual,2010,bioetanol combustion consumption by freight transport,0.014123889,TJ,CH4,10.0,kg/TJ,0.14123889,kg -83a55689-cc86-3b43-bebc-8a905d801fb4,SESCO,II.1.1,Entre Rios,AR-E,annual,2010,bioetanol combustion consumption by freight transport,0.014123889,TJ,N2O,0.6,kg/TJ,0.0084743334,kg -c3fcb024-8989-3f57-9eb4-2a6e26e5bb8d,SESCO,II.1.1,Misiones,AR-N,annual,2010,bioetanol combustion consumption by freight transport,0.00030250259999999995,TJ,CH4,10.0,kg/TJ,0.0030250259999999992,kg -36d0edac-d62b-323e-8b29-f4cc63dc56e1,SESCO,II.1.1,Misiones,AR-N,annual,2010,bioetanol combustion consumption by freight transport,0.00030250259999999995,TJ,N2O,0.6,kg/TJ,0.00018150155999999997,kg -f061660e-53be-318c-9491-92b83f0818f7,SESCO,II.1.1,San Luis,AR-D,annual,2010,bioetanol combustion consumption by freight transport,0.00038345400000000003,TJ,CH4,10.0,kg/TJ,0.0038345400000000004,kg -93061ea5-a1e7-3f3b-9d6c-7a71b9045956,SESCO,II.1.1,San Luis,AR-D,annual,2010,bioetanol combustion consumption by freight transport,0.00038345400000000003,TJ,N2O,0.6,kg/TJ,0.0002300724,kg -80e40b19-eed9-3e15-9b4a-a4e4c9643d3b,SESCO,II.1.1,Santa Fe,AR-S,annual,2010,bioetanol combustion consumption by freight transport,0.0035661221999999998,TJ,CH4,10.0,kg/TJ,0.035661222,kg -102b070b-0564-3b56-b226-e5228ff28a81,SESCO,II.1.1,Santa Fe,AR-S,annual,2010,bioetanol combustion consumption by freight transport,0.0035661221999999998,TJ,N2O,0.6,kg/TJ,0.00213967332,kg -5eb8cb8b-f311-330a-ba4c-0a1d5712a84c,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2010,bioetanol combustion consumption by freight transport,0.0023561118,TJ,CH4,10.0,kg/TJ,0.023561118,kg -a670fd46-30c8-37a5-a5d3-458aaa64b315,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2010,bioetanol combustion consumption by freight transport,0.0023561118,TJ,N2O,0.6,kg/TJ,0.0014136670799999999,kg -640ac9eb-d8b7-39c3-a850-3c13d634141f,SESCO,II.1.1,Tucuman,AR-T,annual,2010,bioetanol combustion consumption by freight transport,0.0009245502,TJ,CH4,10.0,kg/TJ,0.009245502,kg -35c36ff8-21d4-3e13-97cd-25afb34b1334,SESCO,II.1.1,Tucuman,AR-T,annual,2010,bioetanol combustion consumption by freight transport,0.0009245502,TJ,N2O,0.6,kg/TJ,0.00055473012,kg -aa259389-97b1-3b65-88b2-a0a848e60891,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,bioetanol combustion consumption by public passenger transport,0.0025947054,TJ,CH4,10.0,kg/TJ,0.025947053999999997,kg -4577afb5-c2a5-3888-b974-a84ecfddb788,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,bioetanol combustion consumption by public passenger transport,0.0025947054,TJ,N2O,0.6,kg/TJ,0.0015568232399999998,kg -18bc5219-7242-39c7-bb9d-8cff3bcb5871,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,bioetanol combustion consumption by public passenger transport,1.8087482574,TJ,CH4,10.0,kg/TJ,18.087482574,kg -b1203524-a221-32a3-a65c-4b26782808dc,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,bioetanol combustion consumption by public passenger transport,1.8087482574,TJ,N2O,0.6,kg/TJ,1.08524895444,kg -3934be37-e178-351b-b96f-9f8f90774b46,SESCO,II.1.1,Capital Federal,AR-C,annual,2010,bioetanol combustion consumption by public passenger transport,0.0003152844,TJ,CH4,10.0,kg/TJ,0.003152844,kg -012b8ca8-3808-336a-8875-df6a3f254374,SESCO,II.1.1,Capital Federal,AR-C,annual,2010,bioetanol combustion consumption by public passenger transport,0.0003152844,TJ,N2O,0.6,kg/TJ,0.00018917064,kg -130f205c-423c-360c-b9ff-3023adc3d618,SESCO,II.1.1,Córdoba,AR-X,annual,2010,bioetanol combustion consumption by public passenger transport,0.00038345400000000003,TJ,CH4,10.0,kg/TJ,0.0038345400000000004,kg -11c5b64f-ed71-3359-b8e9-4a5c3dc1072a,SESCO,II.1.1,Córdoba,AR-X,annual,2010,bioetanol combustion consumption by public passenger transport,0.00038345400000000003,TJ,N2O,0.6,kg/TJ,0.0002300724,kg -08217243-80ab-324d-b6d0-704a8c1f2809,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,bioetanol combustion consumption by public passenger transport,0.40577528339999996,TJ,CH4,10.0,kg/TJ,4.0577528339999995,kg -d82ba86c-6c8e-3fca-9e14-4b04dbe16e81,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,bioetanol combustion consumption by public passenger transport,0.40577528339999996,TJ,N2O,0.6,kg/TJ,0.24346517003999996,kg -c008329c-2de5-36f4-8758-d5a53b28c3d2,SESCO,II.1.1,Capital Federal,AR-C,annual,2010,bioetanol combustion consumption by public passenger transport,0.0053555742,TJ,CH4,10.0,kg/TJ,0.053555742,kg -d53c874c-52d6-3259-bcba-05eb3f119d1d,SESCO,II.1.1,Capital Federal,AR-C,annual,2010,bioetanol combustion consumption by public passenger transport,0.0053555742,TJ,N2O,0.6,kg/TJ,0.00321334452,kg -2caefbe3-dbf0-3ea2-b722-13644f1f3cc9,SESCO,II.1.1,Córdoba,AR-X,annual,2010,bioetanol combustion consumption by public passenger transport,0.0008819441999999999,TJ,CH4,10.0,kg/TJ,0.008819441999999999,kg -83fe3541-f89d-34ea-9815-a448db50ed08,SESCO,II.1.1,Córdoba,AR-X,annual,2010,bioetanol combustion consumption by public passenger transport,0.0008819441999999999,TJ,N2O,0.6,kg/TJ,0.00052916652,kg -54364559-09c3-38d8-b855-e59036f9c02d,SESCO,II.5.1,Buenos Aires,AR-B,annual,2010,bioetanol combustion consumption by agriculture machines,0.08776154304000001,TJ,CH4,10.0,kg/TJ,0.8776154304000001,kg -77dd3300-0523-3b01-b902-388f4edbd69a,SESCO,II.5.1,Buenos Aires,AR-B,annual,2010,bioetanol combustion consumption by agriculture machines,0.08776154304000001,TJ,N2O,0.6,kg/TJ,0.05265692582400001,kg -ca130592-eb83-3b14-8a96-5a43d72f940d,SESCO,II.5.1,Córdoba,AR-X,annual,2010,bioetanol combustion consumption by agriculture machines,0.01641225726,TJ,CH4,10.0,kg/TJ,0.16412257260000002,kg -c8b565e9-3c0e-386d-85b9-6489352ac2b8,SESCO,II.5.1,Córdoba,AR-X,annual,2010,bioetanol combustion consumption by agriculture machines,0.01641225726,TJ,N2O,0.6,kg/TJ,0.009847354356,kg -73fdf12a-4db1-345f-9979-474c649c2966,SESCO,II.5.1,La Pampa,AR-L,annual,2010,bioetanol combustion consumption by agriculture machines,0.0055579527,TJ,CH4,10.0,kg/TJ,0.055579527000000004,kg -b3ad4454-f4cb-3876-a8eb-1dea339a7c60,SESCO,II.5.1,La Pampa,AR-L,annual,2010,bioetanol combustion consumption by agriculture machines,0.0055579527,TJ,N2O,0.6,kg/TJ,0.00333477162,kg -f831c372-251c-3c33-90e3-f2f84134d84e,SESCO,II.5.1,San Luis,AR-D,annual,2010,bioetanol combustion consumption by agriculture machines,0.1593379188,TJ,CH4,10.0,kg/TJ,1.5933791880000001,kg -86ee9c15-2a71-38ca-9743-ed9b21410142,SESCO,II.5.1,San Luis,AR-D,annual,2010,bioetanol combustion consumption by agriculture machines,0.1593379188,TJ,N2O,0.6,kg/TJ,0.09560275128,kg -561f21b9-c528-34ae-8280-12f73d7c2155,SESCO,II.5.1,Santa Fe,AR-S,annual,2010,bioetanol combustion consumption by agriculture machines,0.0268375194,TJ,CH4,10.0,kg/TJ,0.268375194,kg -1e99c15a-df13-3b53-b4f2-5753c1a25e26,SESCO,II.5.1,Santa Fe,AR-S,annual,2010,bioetanol combustion consumption by agriculture machines,0.0268375194,TJ,N2O,0.6,kg/TJ,0.016102511639999997,kg -d8f8f4ba-2565-302a-9b8f-5ef2f06f96f2,SESCO,II.5.1,Santiago del Estero,AR-G,annual,2010,bioetanol combustion consumption by agriculture machines,0.08717187599999998,TJ,CH4,10.0,kg/TJ,0.8717187599999998,kg -8dfb82c4-d3b4-39eb-9ffd-d6c5db905acf,SESCO,II.5.1,Santiago del Estero,AR-G,annual,2010,bioetanol combustion consumption by agriculture machines,0.08717187599999998,TJ,N2O,0.6,kg/TJ,0.052303125599999986,kg -fbb72282-565a-32e4-b8db-ae41fcc4672e,SESCO,II.5.1,Santa Fe,AR-S,annual,2010,bioetanol combustion consumption by agriculture machines,0.010484910540000001,TJ,CH4,10.0,kg/TJ,0.10484910540000002,kg -40f0524b-7689-390c-b392-28847d404642,SESCO,II.5.1,Santa Fe,AR-S,annual,2010,bioetanol combustion consumption by agriculture machines,0.010484910540000001,TJ,N2O,0.6,kg/TJ,0.006290946324000001,kg -9d287839-9e14-320f-a355-3132a8ba2dec,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,bioetanol combustion consumption by to the public,8.175578849819999,TJ,CH4,10.0,kg/TJ,81.75578849819999,kg -85b8212d-f636-36be-b223-b8b35e6c3296,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,bioetanol combustion consumption by to the public,8.175578849819999,TJ,N2O,0.6,kg/TJ,4.905347309891999,kg -bec0a462-f0b6-3153-9d22-9aab0c97d540,SESCO,II.1.1,Capital Federal,AR-C,annual,2010,bioetanol combustion consumption by to the public,0.00627543774,TJ,CH4,10.0,kg/TJ,0.06275437739999999,kg -67fe44f8-3248-3d9b-8e63-5762cf0b70df,SESCO,II.1.1,Capital Federal,AR-C,annual,2010,bioetanol combustion consumption by to the public,0.00627543774,TJ,N2O,0.6,kg/TJ,0.0037652626439999997,kg -cab98a12-a10b-37dc-b579-cf1193e18ede,SESCO,II.1.1,Chaco,AR-H,annual,2010,bioetanol combustion consumption by to the public,0.15411271896,TJ,CH4,10.0,kg/TJ,1.5411271896,kg -628c8bb3-d17e-3fd0-a354-046c854a21f1,SESCO,II.1.1,Chaco,AR-H,annual,2010,bioetanol combustion consumption by to the public,0.15411271896,TJ,N2O,0.6,kg/TJ,0.092467631376,kg -c7cd1e84-a64d-3f84-88e1-91e69eb35fdc,SESCO,II.1.1,Chubut,AR-U,annual,2010,bioetanol combustion consumption by to the public,1.44982721826,TJ,CH4,10.0,kg/TJ,14.498272182600001,kg -ee8e8278-236d-3ea1-8037-0e7b3498adae,SESCO,II.1.1,Chubut,AR-U,annual,2010,bioetanol combustion consumption by to the public,1.44982721826,TJ,N2O,0.6,kg/TJ,0.869896330956,kg -13d04ebe-b839-3651-b115-c63ff9f11b37,SESCO,II.1.1,Corrientes,AR-W,annual,2010,bioetanol combustion consumption by to the public,0.17225989253999996,TJ,CH4,10.0,kg/TJ,1.7225989253999996,kg -3185785a-a76d-3db9-95b6-e0efea7d16ef,SESCO,II.1.1,Corrientes,AR-W,annual,2010,bioetanol combustion consumption by to the public,0.17225989253999996,TJ,N2O,0.6,kg/TJ,0.10335593552399998,kg -ea18dde1-35e3-38a5-8565-ae4253ca7503,SESCO,II.1.1,Entre Rios,AR-E,annual,2010,bioetanol combustion consumption by to the public,0.66324589776,TJ,CH4,10.0,kg/TJ,6.6324589776,kg -c43f1e7b-313e-381d-ba35-0ebefa049b1f,SESCO,II.1.1,Entre Rios,AR-E,annual,2010,bioetanol combustion consumption by to the public,0.66324589776,TJ,N2O,0.6,kg/TJ,0.39794753865599997,kg -cf2383c9-c252-3d50-9cc7-a4e1e244e011,SESCO,II.1.1,La Pampa,AR-L,annual,2010,bioetanol combustion consumption by to the public,0.25413115608,TJ,CH4,10.0,kg/TJ,2.5413115607999996,kg -7b7b5c3a-2e0c-343e-8662-a6a68d0ba941,SESCO,II.1.1,La Pampa,AR-L,annual,2010,bioetanol combustion consumption by to the public,0.25413115608,TJ,N2O,0.6,kg/TJ,0.15247869364799999,kg -81b6f217-86c4-3cfe-80ff-d207c1909e2c,SESCO,II.1.1,Misiones,AR-N,annual,2010,bioetanol combustion consumption by to the public,0.52041567366,TJ,CH4,10.0,kg/TJ,5.2041567366,kg -2e70dfe6-199d-30f7-9630-933263a4df76,SESCO,II.1.1,Misiones,AR-N,annual,2010,bioetanol combustion consumption by to the public,0.52041567366,TJ,N2O,0.6,kg/TJ,0.31224940419599995,kg -e73a852c-b7bf-3a7a-a1a1-60dc7245905c,SESCO,II.1.1,Neuquén,AR-Q,annual,2010,bioetanol combustion consumption by to the public,0.7462504808999999,TJ,CH4,10.0,kg/TJ,7.462504808999999,kg -99d62e4f-ca67-3d23-8b30-590fd687fdda,SESCO,II.1.1,Neuquén,AR-Q,annual,2010,bioetanol combustion consumption by to the public,0.7462504808999999,TJ,N2O,0.6,kg/TJ,0.44775028853999993,kg -cb344b59-33f9-341c-94af-55745b9908a0,SESCO,II.1.1,Rio Negro,AR-R,annual,2010,bioetanol combustion consumption by to the public,2.5634036239199998,TJ,CH4,10.0,kg/TJ,25.634036239199997,kg -7a9c65af-7f6b-3813-b06a-a4cc96712576,SESCO,II.1.1,Rio Negro,AR-R,annual,2010,bioetanol combustion consumption by to the public,2.5634036239199998,TJ,N2O,0.6,kg/TJ,1.5380421743519999,kg -9849df44-2a6d-3466-bce1-5c388162a115,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2010,bioetanol combustion consumption by to the public,0.47973290849999994,TJ,CH4,10.0,kg/TJ,4.797329084999999,kg -00d2c387-f117-3494-a719-9d596e1b57be,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2010,bioetanol combustion consumption by to the public,0.47973290849999994,TJ,N2O,0.6,kg/TJ,0.28783974509999993,kg -4608ee3d-9bb5-3f00-8edd-fbd3384a049b,SESCO,II.1.1,Santa Fe,AR-S,annual,2010,bioetanol combustion consumption by to the public,0.47915261478000004,TJ,CH4,10.0,kg/TJ,4.791526147800001,kg -bcdc9d7d-8969-364e-aebe-b5b14b43b31b,SESCO,II.1.1,Santa Fe,AR-S,annual,2010,bioetanol combustion consumption by to the public,0.47915261478000004,TJ,N2O,0.6,kg/TJ,0.28749156886800004,kg -a1fa24ec-3775-3586-a380-63ac7145958f,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,bioetanol combustion consumption by to the public,83.07398660976,TJ,CH4,10.0,kg/TJ,830.7398660976,kg -3604c9b5-3d47-3d16-a6c7-26c325f666de,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,bioetanol combustion consumption by to the public,83.07398660976,TJ,N2O,0.6,kg/TJ,49.844391965856,kg -b8a5d62c-2978-37b5-96ba-79cc99635859,SESCO,II.1.1,Capital Federal,AR-C,annual,2010,bioetanol combustion consumption by to the public,13.48459917786,TJ,CH4,10.0,kg/TJ,134.8459917786,kg -6078f9cd-9326-3889-9978-1f4e45106174,SESCO,II.1.1,Capital Federal,AR-C,annual,2010,bioetanol combustion consumption by to the public,13.48459917786,TJ,N2O,0.6,kg/TJ,8.090759506716,kg -a041a224-82e2-3988-bf05-e94fe5affb68,SESCO,II.1.1,Catamarca,AR-K,annual,2010,bioetanol combustion consumption by to the public,2.1351907427400003,TJ,CH4,10.0,kg/TJ,21.351907427400004,kg -639af85c-6862-382b-aeb8-4e59215d39f7,SESCO,II.1.1,Catamarca,AR-K,annual,2010,bioetanol combustion consumption by to the public,2.1351907427400003,TJ,N2O,0.6,kg/TJ,1.2811144456440002,kg -b3f55b2b-77a2-3497-8b77-949c741dfe60,SESCO,II.1.1,Chaco,AR-H,annual,2010,bioetanol combustion consumption by to the public,4.882985039519999,TJ,CH4,10.0,kg/TJ,48.8298503952,kg -395f6bb3-650c-338f-aa24-97e3de6b4133,SESCO,II.1.1,Chaco,AR-H,annual,2010,bioetanol combustion consumption by to the public,4.882985039519999,TJ,N2O,0.6,kg/TJ,2.9297910237119997,kg -3efb43b8-d208-3035-beb6-6c75521aad2a,SESCO,II.1.1,Chubut,AR-U,annual,2010,bioetanol combustion consumption by to the public,18.45886885056,TJ,CH4,10.0,kg/TJ,184.58868850559998,kg -efe48564-d7f9-3df3-91f4-c4182b2b6fba,SESCO,II.1.1,Chubut,AR-U,annual,2010,bioetanol combustion consumption by to the public,18.45886885056,TJ,N2O,0.6,kg/TJ,11.075321310336,kg -8ad0ed19-5ef2-314c-926a-ecf208b36201,SESCO,II.1.1,Corrientes,AR-W,annual,2010,bioetanol combustion consumption by to the public,5.5639281915,TJ,CH4,10.0,kg/TJ,55.639281915,kg -fa04bcc0-fc05-3581-9e79-7388dcc3a053,SESCO,II.1.1,Corrientes,AR-W,annual,2010,bioetanol combustion consumption by to the public,5.5639281915,TJ,N2O,0.6,kg/TJ,3.3383569149,kg -153b6e50-5564-34d8-b28c-3dda09c55b4e,SESCO,II.1.1,Córdoba,AR-X,annual,2010,bioetanol combustion consumption by to the public,20.823999914700003,TJ,CH4,10.0,kg/TJ,208.23999914700005,kg -15684ce7-44d4-353e-ac85-d8bf94a7f933,SESCO,II.1.1,Córdoba,AR-X,annual,2010,bioetanol combustion consumption by to the public,20.823999914700003,TJ,N2O,0.6,kg/TJ,12.494399948820002,kg -5149bf6a-ce1c-3580-bca9-0dbafe69ee9a,SESCO,II.1.1,Entre Rios,AR-E,annual,2010,bioetanol combustion consumption by to the public,7.1389096826400005,TJ,CH4,10.0,kg/TJ,71.3890968264,kg -1fb95071-0b94-3b4b-821d-d5a53357b765,SESCO,II.1.1,Entre Rios,AR-E,annual,2010,bioetanol combustion consumption by to the public,7.1389096826400005,TJ,N2O,0.6,kg/TJ,4.2833458095840005,kg -6fd9ce0d-13dd-3b0a-be4f-b86b637cd04c,SESCO,II.1.1,Formosa,AR-P,annual,2010,bioetanol combustion consumption by to the public,0.8483323266,TJ,CH4,10.0,kg/TJ,8.483323266,kg -4674614f-f294-3b43-ae16-2a43a3122d5f,SESCO,II.1.1,Formosa,AR-P,annual,2010,bioetanol combustion consumption by to the public,0.8483323266,TJ,N2O,0.6,kg/TJ,0.50899939596,kg -b7d56493-911a-35eb-bbaa-0c253deabb8d,SESCO,II.1.1,Jujuy,AR-Y,annual,2010,bioetanol combustion consumption by to the public,0.25084239894,TJ,CH4,10.0,kg/TJ,2.5084239893999998,kg -cf1b7029-d027-3697-b840-9c5053361ed3,SESCO,II.1.1,Jujuy,AR-Y,annual,2010,bioetanol combustion consumption by to the public,0.25084239894,TJ,N2O,0.6,kg/TJ,0.150505439364,kg -68df46b7-25d0-3382-a862-ff0aa386da66,SESCO,II.1.1,La Pampa,AR-L,annual,2010,bioetanol combustion consumption by to the public,2.50174464678,TJ,CH4,10.0,kg/TJ,25.017446467800003,kg -9a39d9bb-0e38-3eef-9445-cf4fbf170f04,SESCO,II.1.1,La Pampa,AR-L,annual,2010,bioetanol combustion consumption by to the public,2.50174464678,TJ,N2O,0.6,kg/TJ,1.501046788068,kg -af0182fa-69b2-3b43-b239-e468ab09c14f,SESCO,II.1.1,La Rioja,AR-F,annual,2010,bioetanol combustion consumption by to the public,1.34474846652,TJ,CH4,10.0,kg/TJ,13.447484665200001,kg -ff82a9b3-d34a-3741-854f-c13bb2bceb0f,SESCO,II.1.1,La Rioja,AR-F,annual,2010,bioetanol combustion consumption by to the public,1.34474846652,TJ,N2O,0.6,kg/TJ,0.806849079912,kg -45b528b1-8aff-394f-b23a-54de14aa7dd0,SESCO,II.1.1,Mendoza,AR-M,annual,2010,bioetanol combustion consumption by to the public,4.6800995281199995,TJ,CH4,10.0,kg/TJ,46.800995281199995,kg -ae4cb6a9-55e3-39c0-bf2b-0acba80ab560,SESCO,II.1.1,Mendoza,AR-M,annual,2010,bioetanol combustion consumption by to the public,4.6800995281199995,TJ,N2O,0.6,kg/TJ,2.8080597168719996,kg -7a6396d8-e53c-32b8-8253-64045354a948,SESCO,II.1.1,Misiones,AR-N,annual,2010,bioetanol combustion consumption by to the public,1.85259025746,TJ,CH4,10.0,kg/TJ,18.5259025746,kg -61e6740f-33ca-3eca-a968-e5bc03ec080e,SESCO,II.1.1,Misiones,AR-N,annual,2010,bioetanol combustion consumption by to the public,1.85259025746,TJ,N2O,0.6,kg/TJ,1.111554154476,kg -c668dd69-758a-3631-8340-7ca1d6a6abca,SESCO,II.1.1,Neuquén,AR-Q,annual,2010,bioetanol combustion consumption by to the public,7.05274756884,TJ,CH4,10.0,kg/TJ,70.5274756884,kg -0d01807e-5424-3d61-bbae-f3c5049c8d36,SESCO,II.1.1,Neuquén,AR-Q,annual,2010,bioetanol combustion consumption by to the public,7.05274756884,TJ,N2O,0.6,kg/TJ,4.231648541304,kg -99ce909e-bf43-3557-b093-dc6c67072ccd,SESCO,II.1.1,Rio Negro,AR-R,annual,2010,bioetanol combustion consumption by to the public,13.13314015356,TJ,CH4,10.0,kg/TJ,131.33140153559998,kg -8088efe6-06bd-3c07-848e-d9a288ebee39,SESCO,II.1.1,Rio Negro,AR-R,annual,2010,bioetanol combustion consumption by to the public,13.13314015356,TJ,N2O,0.6,kg/TJ,7.879884092135999,kg -8bd53d5b-3ba8-37a2-8012-871d4fc12506,SESCO,II.1.1,Salta,AR-A,annual,2010,bioetanol combustion consumption by to the public,0.47569130334,TJ,CH4,10.0,kg/TJ,4.7569130334,kg -c460f267-efaf-315f-be21-9d41b1df940b,SESCO,II.1.1,Salta,AR-A,annual,2010,bioetanol combustion consumption by to the public,0.47569130334,TJ,N2O,0.6,kg/TJ,0.285414782004,kg -b50f8e7d-8bcf-3bda-aa9d-10d328e4e95e,SESCO,II.1.1,San Juan,AR-J,annual,2010,bioetanol combustion consumption by to the public,3.15178055424,TJ,CH4,10.0,kg/TJ,31.5178055424,kg -c1ac13a3-2a6f-35d4-89a6-77b969b6650d,SESCO,II.1.1,San Juan,AR-J,annual,2010,bioetanol combustion consumption by to the public,3.15178055424,TJ,N2O,0.6,kg/TJ,1.891068332544,kg -45ced82a-8629-322a-8c0b-bf2479d1d8f6,SESCO,II.1.1,San Luis,AR-D,annual,2010,bioetanol combustion consumption by to the public,1.4305288305600001,TJ,CH4,10.0,kg/TJ,14.305288305600001,kg -44faa402-3c4d-3ab2-9500-f5d31b66122d,SESCO,II.1.1,San Luis,AR-D,annual,2010,bioetanol combustion consumption by to the public,1.4305288305600001,TJ,N2O,0.6,kg/TJ,0.858317298336,kg -845a1aee-990c-3c05-8547-4a50448f9029,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2010,bioetanol combustion consumption by to the public,12.85349993316,TJ,CH4,10.0,kg/TJ,128.5349993316,kg -ec3b8b04-af1c-329f-99ab-4afdab1a22a1,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2010,bioetanol combustion consumption by to the public,12.85349993316,TJ,N2O,0.6,kg/TJ,7.712099959895999,kg -e5288c11-fdc6-33f4-ab75-b6dfc2c6453e,SESCO,II.1.1,Santa Fe,AR-S,annual,2010,bioetanol combustion consumption by to the public,22.37362529706,TJ,CH4,10.0,kg/TJ,223.7362529706,kg -62705ef8-4514-3919-946c-ab81a6d0411f,SESCO,II.1.1,Santa Fe,AR-S,annual,2010,bioetanol combustion consumption by to the public,22.37362529706,TJ,N2O,0.6,kg/TJ,13.424175178235998,kg -7f8fbfb2-62d5-38ff-87cd-e2e5e04e09ed,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2010,bioetanol combustion consumption by to the public,1.89945302292,TJ,CH4,10.0,kg/TJ,18.9945302292,kg -d71e955d-e0f3-3afe-b871-d9dfb6c5ead6,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2010,bioetanol combustion consumption by to the public,1.89945302292,TJ,N2O,0.6,kg/TJ,1.1396718137519999,kg -3bcdf4b4-a339-3bb1-ae19-28d337d418ee,SESCO,II.1.1,Tucuman,AR-T,annual,2010,bioetanol combustion consumption by to the public,2.7626135156999996,TJ,CH4,10.0,kg/TJ,27.626135156999997,kg -0de84e32-b252-36be-a07b-d2ec18a429df,SESCO,II.1.1,Tucuman,AR-T,annual,2010,bioetanol combustion consumption by to the public,2.7626135156999996,TJ,N2O,0.6,kg/TJ,1.6575681094199997,kg -29ad103b-bc7e-3add-9de4-f72ee5ed16da,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,bioetanol combustion consumption by to the public,17.16587048376,TJ,CH4,10.0,kg/TJ,171.6587048376,kg -14d7e6d9-a961-3c77-b3ba-ab20576b9f47,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,bioetanol combustion consumption by to the public,17.16587048376,TJ,N2O,0.6,kg/TJ,10.299522290255998,kg -26814dae-5ec4-32b2-8b18-490d3b535df3,SESCO,II.1.1,Capital Federal,AR-C,annual,2010,bioetanol combustion consumption by to the public,3.4965380807999997,TJ,CH4,10.0,kg/TJ,34.965380808,kg -2c95458d-66e0-353d-8774-e54fac336be0,SESCO,II.1.1,Capital Federal,AR-C,annual,2010,bioetanol combustion consumption by to the public,3.4965380807999997,TJ,N2O,0.6,kg/TJ,2.0979228484799997,kg -87ba2d29-723a-3ef6-9cb1-4d98f9f3e472,SESCO,II.1.1,Catamarca,AR-K,annual,2010,bioetanol combustion consumption by to the public,0.22434785783999997,TJ,CH4,10.0,kg/TJ,2.2434785783999995,kg -eeb3a076-b2a4-3312-b17d-7567032b9833,SESCO,II.1.1,Catamarca,AR-K,annual,2010,bioetanol combustion consumption by to the public,0.22434785783999997,TJ,N2O,0.6,kg/TJ,0.134608714704,kg -c9c8994c-0d27-3d92-b9d4-96464999ce84,SESCO,II.1.1,Chaco,AR-H,annual,2010,bioetanol combustion consumption by to the public,0.32008652225999995,TJ,CH4,10.0,kg/TJ,3.2008652225999996,kg -ec2e55e3-c37d-3d85-a5b8-d9f8e48c1430,SESCO,II.1.1,Chaco,AR-H,annual,2010,bioetanol combustion consumption by to the public,0.32008652225999995,TJ,N2O,0.6,kg/TJ,0.19205191335599997,kg -01db29c5-751b-3c99-8ac2-16bbf481dab3,SESCO,II.1.1,Chubut,AR-U,annual,2010,bioetanol combustion consumption by to the public,2.4973251264,TJ,CH4,10.0,kg/TJ,24.973251263999998,kg -058403d0-8794-3124-a2a5-a2541bf9e8bc,SESCO,II.1.1,Chubut,AR-U,annual,2010,bioetanol combustion consumption by to the public,2.4973251264,TJ,N2O,0.6,kg/TJ,1.4983950758399998,kg -f743d60c-906a-34d4-a294-6f8d7483f1cf,SESCO,II.1.1,Corrientes,AR-W,annual,2010,bioetanol combustion consumption by to the public,0.55919054214,TJ,CH4,10.0,kg/TJ,5.5919054214,kg -4ae4bd83-a6ef-3c47-9570-5e4e856ba760,SESCO,II.1.1,Corrientes,AR-W,annual,2010,bioetanol combustion consumption by to the public,0.55919054214,TJ,N2O,0.6,kg/TJ,0.335514325284,kg -0ebf5479-6b3b-3fba-b3a3-b8dec8b65f98,SESCO,II.1.1,Córdoba,AR-X,annual,2010,bioetanol combustion consumption by to the public,3.5789393629800004,TJ,CH4,10.0,kg/TJ,35.7893936298,kg -7d01a2bb-2f1d-3ebd-a23e-93d5e9b33a84,SESCO,II.1.1,Córdoba,AR-X,annual,2010,bioetanol combustion consumption by to the public,3.5789393629800004,TJ,N2O,0.6,kg/TJ,2.1473636177880002,kg -4ae97c36-20af-34cf-a22e-146e02318315,SESCO,II.1.1,Entre Rios,AR-E,annual,2010,bioetanol combustion consumption by to the public,1.01989561104,TJ,CH4,10.0,kg/TJ,10.1989561104,kg -47b8f573-6093-3551-be50-58d1b9ae7e77,SESCO,II.1.1,Entre Rios,AR-E,annual,2010,bioetanol combustion consumption by to the public,1.01989561104,TJ,N2O,0.6,kg/TJ,0.6119373666239999,kg -6669d45c-3d26-376c-8ce8-82679ab30819,SESCO,II.1.1,Jujuy,AR-Y,annual,2010,bioetanol combustion consumption by to the public,0.022852154160000002,TJ,CH4,10.0,kg/TJ,0.22852154160000002,kg -17b9ee27-a988-3f2e-8be3-0a7b23eb1e44,SESCO,II.1.1,Jujuy,AR-Y,annual,2010,bioetanol combustion consumption by to the public,0.022852154160000002,TJ,N2O,0.6,kg/TJ,0.013711292496000001,kg -477d922a-7ca0-3a33-a888-ec54ca9ed773,SESCO,II.1.1,La Pampa,AR-L,annual,2010,bioetanol combustion consumption by to the public,0.51363918936,TJ,CH4,10.0,kg/TJ,5.1363918936,kg -9f6a6745-be9e-35c6-923f-2d71f7bdc3b9,SESCO,II.1.1,La Pampa,AR-L,annual,2010,bioetanol combustion consumption by to the public,0.51363918936,TJ,N2O,0.6,kg/TJ,0.308183513616,kg -6328e0ed-bfbe-32f7-ae46-80e85044a0ce,SESCO,II.1.1,La Rioja,AR-F,annual,2010,bioetanol combustion consumption by to the public,0.07117715754,TJ,CH4,10.0,kg/TJ,0.7117715753999999,kg -f162e3f7-0a47-3fd5-93c3-b9c701a827e1,SESCO,II.1.1,La Rioja,AR-F,annual,2010,bioetanol combustion consumption by to the public,0.07117715754,TJ,N2O,0.6,kg/TJ,0.042706294523999995,kg -a4622890-1efc-35e0-930c-84622a56d97b,SESCO,II.1.1,Mendoza,AR-M,annual,2010,bioetanol combustion consumption by to the public,0.6389877455999999,TJ,CH4,10.0,kg/TJ,6.389877455999999,kg -d695f941-2045-3c1b-b6e1-3bc59f256b0e,SESCO,II.1.1,Mendoza,AR-M,annual,2010,bioetanol combustion consumption by to the public,0.6389877455999999,TJ,N2O,0.6,kg/TJ,0.38339264735999995,kg -72d7b5c3-c3ae-3e8c-bc45-1f6c83a9acce,SESCO,II.1.1,Misiones,AR-N,annual,2010,bioetanol combustion consumption by to the public,0.17869425066,TJ,CH4,10.0,kg/TJ,1.7869425066,kg -48e1ffa9-479f-31eb-ac4f-87895b62a52a,SESCO,II.1.1,Misiones,AR-N,annual,2010,bioetanol combustion consumption by to the public,0.17869425066,TJ,N2O,0.6,kg/TJ,0.10721655039599999,kg -969c2d14-da14-36ad-ae37-361900946925,SESCO,II.1.1,Neuquén,AR-Q,annual,2010,bioetanol combustion consumption by to the public,1.33919221806,TJ,CH4,10.0,kg/TJ,13.3919221806,kg -5e8a16c1-10a4-3641-b12c-815b0e5ae17c,SESCO,II.1.1,Neuquén,AR-Q,annual,2010,bioetanol combustion consumption by to the public,1.33919221806,TJ,N2O,0.6,kg/TJ,0.803515330836,kg -33cce0c4-1f85-3e68-8095-f88bae359494,SESCO,II.1.1,Rio Negro,AR-R,annual,2010,bioetanol combustion consumption by to the public,1.4951553156000001,TJ,CH4,10.0,kg/TJ,14.951553156000001,kg -514987d3-9a3b-3d30-82bf-e6dcc92a8578,SESCO,II.1.1,Rio Negro,AR-R,annual,2010,bioetanol combustion consumption by to the public,1.4951553156000001,TJ,N2O,0.6,kg/TJ,0.89709318936,kg -a88128c6-6980-36b9-8426-99136277e3c1,SESCO,II.1.1,Salta,AR-A,annual,2010,bioetanol combustion consumption by to the public,0.033405660360000006,TJ,CH4,10.0,kg/TJ,0.33405660360000006,kg -1afe4cec-496a-367b-9973-ca87fed81860,SESCO,II.1.1,Salta,AR-A,annual,2010,bioetanol combustion consumption by to the public,0.033405660360000006,TJ,N2O,0.6,kg/TJ,0.020043396216000004,kg -5a45583a-f4a9-3a33-8594-11d352c52c50,SESCO,II.1.1,San Juan,AR-J,annual,2010,bioetanol combustion consumption by to the public,0.6007386351599999,TJ,CH4,10.0,kg/TJ,6.007386351599999,kg -0eafd6dd-1e68-3a51-8fe8-bcc59c01040a,SESCO,II.1.1,San Juan,AR-J,annual,2010,bioetanol combustion consumption by to the public,0.6007386351599999,TJ,N2O,0.6,kg/TJ,0.36044318109599993,kg -05382b04-f6c3-3c87-acde-58402393a4d5,SESCO,II.1.1,San Luis,AR-D,annual,2010,bioetanol combustion consumption by to the public,0.21625058753999998,TJ,CH4,10.0,kg/TJ,2.1625058754,kg -40ce8573-cffc-36d7-a5cc-55ac3d46cb58,SESCO,II.1.1,San Luis,AR-D,annual,2010,bioetanol combustion consumption by to the public,0.21625058753999998,TJ,N2O,0.6,kg/TJ,0.129750352524,kg -a5a631ed-48d7-3a8f-8558-37e0009aef27,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2010,bioetanol combustion consumption by to the public,1.79991092088,TJ,CH4,10.0,kg/TJ,17.9991092088,kg -be74a840-6212-3dfc-8ee8-f3dda0421985,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2010,bioetanol combustion consumption by to the public,1.79991092088,TJ,N2O,0.6,kg/TJ,1.0799465525279999,kg -79e5cbec-dae9-3b66-b330-10f78584ed22,SESCO,II.1.1,Santa Fe,AR-S,annual,2010,bioetanol combustion consumption by to the public,4.6176851465999995,TJ,CH4,10.0,kg/TJ,46.176851465999995,kg -0dd3da6f-5f63-32df-892d-a254055d491f,SESCO,II.1.1,Santa Fe,AR-S,annual,2010,bioetanol combustion consumption by to the public,4.6176851465999995,TJ,N2O,0.6,kg/TJ,2.7706110879599994,kg -0ee6fcd1-369b-3ace-94ff-2f09fec09dbb,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2010,bioetanol combustion consumption by to the public,0.19119527711999998,TJ,CH4,10.0,kg/TJ,1.9119527711999997,kg -1b9e2ad2-2391-3589-b968-9c42215130db,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2010,bioetanol combustion consumption by to the public,0.19119527711999998,TJ,N2O,0.6,kg/TJ,0.11471716627199999,kg -ba4a79c0-35d7-35bd-9444-820b0da90d7a,SESCO,II.1.1,Tucuman,AR-T,annual,2010,bioetanol combustion consumption by to the public,0.21409046333999998,TJ,CH4,10.0,kg/TJ,2.1409046334,kg -d822960b-f9a3-3cde-9e30-7382ed45c8d5,SESCO,II.1.1,Tucuman,AR-T,annual,2010,bioetanol combustion consumption by to the public,0.21409046333999998,TJ,N2O,0.6,kg/TJ,0.12845427800399997,kg -23918943-58f6-339f-87e2-80ba909b3dd1,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,bioetanol combustion consumption by to the public,2.2756248054,TJ,CH4,10.0,kg/TJ,22.756248054,kg -f140c64e-9683-337c-b3e1-6ed36eff67ba,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,bioetanol combustion consumption by to the public,2.2756248054,TJ,N2O,0.6,kg/TJ,1.3653748832400001,kg -781a49ae-50ad-3c44-898c-d56533030211,SESCO,II.1.1,Capital Federal,AR-C,annual,2010,bioetanol combustion consumption by to the public,0.020450879999999998,TJ,CH4,10.0,kg/TJ,0.2045088,kg -35a5fa77-4a8c-37fb-89f6-0993b0e0e9d9,SESCO,II.1.1,Capital Federal,AR-C,annual,2010,bioetanol combustion consumption by to the public,0.020450879999999998,TJ,N2O,0.6,kg/TJ,0.012270527999999998,kg -389d30c9-4074-3d82-aff0-883604c015c9,SESCO,II.1.1,Corrientes,AR-W,annual,2010,bioetanol combustion consumption by to the public,0.0170424,TJ,CH4,10.0,kg/TJ,0.170424,kg -98cb6aa3-a66f-3e73-a415-6353e011d000,SESCO,II.1.1,Corrientes,AR-W,annual,2010,bioetanol combustion consumption by to the public,0.0170424,TJ,N2O,0.6,kg/TJ,0.010225439999999999,kg -38920fec-7a8f-35af-93f1-8423755edf57,SESCO,II.1.1,Córdoba,AR-X,annual,2010,bioetanol combustion consumption by to the public,0.8005667399999999,TJ,CH4,10.0,kg/TJ,8.0056674,kg -076a8eb8-6e3f-39a1-85f3-fa090ab4b575,SESCO,II.1.1,Córdoba,AR-X,annual,2010,bioetanol combustion consumption by to the public,0.8005667399999999,TJ,N2O,0.6,kg/TJ,0.48034004399999997,kg -6315a4b9-2033-348e-9845-ab1bcc08559e,SESCO,II.1.1,Entre Rios,AR-E,annual,2010,bioetanol combustion consumption by to the public,0.19185481799999998,TJ,CH4,10.0,kg/TJ,1.9185481799999997,kg -4433a141-1cc2-3192-ae2a-855558b7d40a,SESCO,II.1.1,Entre Rios,AR-E,annual,2010,bioetanol combustion consumption by to the public,0.19185481799999998,TJ,N2O,0.6,kg/TJ,0.11511289079999998,kg -0e4a1d2c-fe0e-32e3-b4d4-bf6911e96499,SESCO,II.1.1,Santa Fe,AR-S,annual,2010,bioetanol combustion consumption by to the public,0.28418202,TJ,CH4,10.0,kg/TJ,2.8418202,kg -969c7469-6a3f-311a-a284-d6267592495a,SESCO,II.1.1,Santa Fe,AR-S,annual,2010,bioetanol combustion consumption by to the public,0.28418202,TJ,N2O,0.6,kg/TJ,0.170509212,kg -f2c900a4-db28-3929-8c8d-ef2090818511,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,bioetanol combustion consumption by to the public,15.357699111599999,TJ,CH4,10.0,kg/TJ,153.576991116,kg -543e1a4e-c8ff-3d22-ba37-581fb1dbc99e,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,bioetanol combustion consumption by to the public,15.357699111599999,TJ,N2O,0.6,kg/TJ,9.214619466959999,kg -b73d907a-3194-3b43-bd7e-5d531bfcbe71,SESCO,II.1.1,Capital Federal,AR-C,annual,2010,bioetanol combustion consumption by to the public,0.35448192,TJ,CH4,10.0,kg/TJ,3.5448192,kg -2dab0a29-5df1-3491-9da3-cf2d7c0ea925,SESCO,II.1.1,Capital Federal,AR-C,annual,2010,bioetanol combustion consumption by to the public,0.35448192,TJ,N2O,0.6,kg/TJ,0.212689152,kg -af108168-84b8-33db-9b56-4ba1547482b8,SESCO,II.1.1,Corrientes,AR-W,annual,2010,bioetanol combustion consumption by to the public,0.317968578,TJ,CH4,10.0,kg/TJ,3.17968578,kg -d4d710ef-d504-3aa5-9678-8d70c95c4415,SESCO,II.1.1,Corrientes,AR-W,annual,2010,bioetanol combustion consumption by to the public,0.317968578,TJ,N2O,0.6,kg/TJ,0.1907811468,kg -1cec701b-bdb4-30ba-bbc8-320ad9a28bd7,SESCO,II.1.1,Córdoba,AR-X,annual,2010,bioetanol combustion consumption by to the public,6.0727183920000005,TJ,CH4,10.0,kg/TJ,60.72718392,kg -f25a88bd-78ec-3d26-a767-eeea8b511e9c,SESCO,II.1.1,Córdoba,AR-X,annual,2010,bioetanol combustion consumption by to the public,6.0727183920000005,TJ,N2O,0.6,kg/TJ,3.6436310352000003,kg -20819484-1ac7-3fca-b04b-12db3f14031f,SESCO,II.1.1,Entre Rios,AR-E,annual,2010,bioetanol combustion consumption by to the public,2.129192244,TJ,CH4,10.0,kg/TJ,21.29192244,kg -7df005c1-a4b7-38b8-85b1-62cdecca33a6,SESCO,II.1.1,Entre Rios,AR-E,annual,2010,bioetanol combustion consumption by to the public,2.129192244,TJ,N2O,0.6,kg/TJ,1.2775153464,kg -f887f285-8777-31e1-b96c-035d85808c24,SESCO,II.1.1,Santa Fe,AR-S,annual,2010,bioetanol combustion consumption by to the public,2.2521531599999998,TJ,CH4,10.0,kg/TJ,22.521531599999996,kg -e7104527-4932-3597-b972-6d6d85708483,SESCO,II.1.1,Santa Fe,AR-S,annual,2010,bioetanol combustion consumption by to the public,2.2521531599999998,TJ,N2O,0.6,kg/TJ,1.3512918959999998,kg -744619e0-c4b0-3db8-bb4e-620422cc622d,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,bioetanol combustion consumption by to the public,1.27316442168,TJ,CH4,10.0,kg/TJ,12.7316442168,kg -a1749d7d-3ac5-3bec-b8f8-bb085269eaf8,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,bioetanol combustion consumption by to the public,1.27316442168,TJ,N2O,0.6,kg/TJ,0.763898653008,kg -49e09511-639c-3907-8131-37dd79aa821c,SESCO,II.1.1,Capital Federal,AR-C,annual,2010,bioetanol combustion consumption by to the public,0.0234333,TJ,CH4,10.0,kg/TJ,0.234333,kg -9f54dfe9-4560-3e8b-a41f-8e736c13cfd9,SESCO,II.1.1,Capital Federal,AR-C,annual,2010,bioetanol combustion consumption by to the public,0.0234333,TJ,N2O,0.6,kg/TJ,0.01405998,kg -41d7bf3c-ac25-3238-9e55-2626aefb0d66,SESCO,II.1.1,Corrientes,AR-W,annual,2010,bioetanol combustion consumption by to the public,0.030718925999999997,TJ,CH4,10.0,kg/TJ,0.30718925999999996,kg -fbe2f153-f095-3342-99e8-606df8ac36d9,SESCO,II.1.1,Corrientes,AR-W,annual,2010,bioetanol combustion consumption by to the public,0.030718925999999997,TJ,N2O,0.6,kg/TJ,0.018431355599999998,kg -4d56639a-1f12-374d-b14c-b495a1ca71d4,SESCO,II.1.1,Córdoba,AR-X,annual,2010,bioetanol combustion consumption by to the public,0.37024613999999995,TJ,CH4,10.0,kg/TJ,3.7024613999999993,kg -837294a9-42ae-3446-8860-986bb85ae083,SESCO,II.1.1,Córdoba,AR-X,annual,2010,bioetanol combustion consumption by to the public,0.37024613999999995,TJ,N2O,0.6,kg/TJ,0.22214768399999996,kg -ebb0687f-a3b0-366e-91a5-ce81f7f7f589,SESCO,II.1.1,Entre Rios,AR-E,annual,2010,bioetanol combustion consumption by to the public,0.10510900199999999,TJ,CH4,10.0,kg/TJ,1.05109002,kg -70bff495-d191-3664-bee9-b01226caef5b,SESCO,II.1.1,Entre Rios,AR-E,annual,2010,bioetanol combustion consumption by to the public,0.10510900199999999,TJ,N2O,0.6,kg/TJ,0.0630654012,kg -937822c5-3301-3192-936b-ce497af4f28e,SESCO,II.1.1,Santa Fe,AR-S,annual,2010,bioetanol combustion consumption by to the public,0.28844262,TJ,CH4,10.0,kg/TJ,2.8844262,kg -faea0fdd-6a1f-3b49-a59b-ffae6461b36d,SESCO,II.1.1,Santa Fe,AR-S,annual,2010,bioetanol combustion consumption by to the public,0.28844262,TJ,N2O,0.6,kg/TJ,0.17306557199999997,kg -6434550b-6531-38a2-80bf-d50ed503e07b,SESCO,II.1.1,Catamarca,AR-K,annual,2010,bioetanol combustion consumption by to the public,0.7797877938,TJ,CH4,10.0,kg/TJ,7.797877937999999,kg -87bded34-7b3f-38e9-81bb-d3cf1af410da,SESCO,II.1.1,Catamarca,AR-K,annual,2010,bioetanol combustion consumption by to the public,0.7797877938,TJ,N2O,0.6,kg/TJ,0.46787267627999996,kg -369ac615-540b-342a-b8eb-8392f80f43cc,SESCO,II.1.1,Chaco,AR-H,annual,2010,bioetanol combustion consumption by to the public,1.2007691586,TJ,CH4,10.0,kg/TJ,12.007691586,kg -151ef6ae-3883-3932-a68f-24f077e47d9e,SESCO,II.1.1,Chaco,AR-H,annual,2010,bioetanol combustion consumption by to the public,1.2007691586,TJ,N2O,0.6,kg/TJ,0.72046149516,kg -91aba35f-838a-3c75-b257-efd1525394b8,SESCO,II.1.1,Córdoba,AR-X,annual,2010,bioetanol combustion consumption by to the public,0.13809030660000002,TJ,CH4,10.0,kg/TJ,1.3809030660000001,kg -8ea9e023-db8a-390e-9888-4ba92784e8b3,SESCO,II.1.1,Córdoba,AR-X,annual,2010,bioetanol combustion consumption by to the public,0.13809030660000002,TJ,N2O,0.6,kg/TJ,0.08285418396000001,kg -92b00dfd-b250-3027-95e9-5f2763da3fed,SESCO,II.1.1,Jujuy,AR-Y,annual,2010,bioetanol combustion consumption by to the public,1.8647410625999998,TJ,CH4,10.0,kg/TJ,18.647410626,kg -f08248fe-6f38-3a19-bd93-d2b885c96a94,SESCO,II.1.1,Jujuy,AR-Y,annual,2010,bioetanol combustion consumption by to the public,1.8647410625999998,TJ,N2O,0.6,kg/TJ,1.1188446375599999,kg -a613e6eb-7ab2-3828-ad08-72e0fbb06e0c,SESCO,II.1.1,La Rioja,AR-F,annual,2010,bioetanol combustion consumption by to the public,0.660094758,TJ,CH4,10.0,kg/TJ,6.60094758,kg -1ced7859-8391-3168-80e1-5cfda806d3b8,SESCO,II.1.1,La Rioja,AR-F,annual,2010,bioetanol combustion consumption by to the public,0.660094758,TJ,N2O,0.6,kg/TJ,0.39605685479999997,kg -187194a0-2eb9-3936-84cf-2a1e3a374f28,SESCO,II.1.1,Salta,AR-A,annual,2010,bioetanol combustion consumption by to the public,3.4487043246,TJ,CH4,10.0,kg/TJ,34.487043246,kg -a527f095-b0a9-35b0-8ac8-463d65d09a76,SESCO,II.1.1,Salta,AR-A,annual,2010,bioetanol combustion consumption by to the public,3.4487043246,TJ,N2O,0.6,kg/TJ,2.06922259476,kg -1d674fc4-6094-345d-aa6c-faccc8a935d5,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2010,bioetanol combustion consumption by to the public,1.1839270068,TJ,CH4,10.0,kg/TJ,11.839270068000001,kg -2e8beb86-10a8-3983-bb8c-1c09eb3cf5b9,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2010,bioetanol combustion consumption by to the public,1.1839270068,TJ,N2O,0.6,kg/TJ,0.71035620408,kg -f20100cc-29b0-39c1-9095-eb8fc5598723,SESCO,II.1.1,Tucuman,AR-T,annual,2010,bioetanol combustion consumption by to the public,2.6591767991999995,TJ,CH4,10.0,kg/TJ,26.591767991999994,kg -edce3b2f-61b0-358d-971c-9e89b40e9878,SESCO,II.1.1,Tucuman,AR-T,annual,2010,bioetanol combustion consumption by to the public,2.6591767991999995,TJ,N2O,0.6,kg/TJ,1.5955060795199996,kg -2ed9a6c2-54d5-3ebd-9117-d4326e33cf62,SESCO,II.1.1,Catamarca,AR-K,annual,2010,bioetanol combustion consumption by to the public,2.4275535408,TJ,CH4,10.0,kg/TJ,24.275535408,kg -23f25b17-8a37-35e7-902c-aadb81573783,SESCO,II.1.1,Catamarca,AR-K,annual,2010,bioetanol combustion consumption by to the public,2.4275535408,TJ,N2O,0.6,kg/TJ,1.45653212448,kg -10522db2-85f6-3842-95ad-e325308f07cf,SESCO,II.1.1,Chaco,AR-H,annual,2010,bioetanol combustion consumption by to the public,0.9420314418000001,TJ,CH4,10.0,kg/TJ,9.420314418,kg -623ecaa0-24f1-31a7-bded-983b299589e6,SESCO,II.1.1,Chaco,AR-H,annual,2010,bioetanol combustion consumption by to the public,0.9420314418000001,TJ,N2O,0.6,kg/TJ,0.5652188650800001,kg -f72aa046-e44e-3a25-9023-450eeebf0016,SESCO,II.1.1,Córdoba,AR-X,annual,2010,bioetanol combustion consumption by to the public,0.7759063871999999,TJ,CH4,10.0,kg/TJ,7.759063872,kg -2e8bacea-2d73-3000-8487-d63ac50a8867,SESCO,II.1.1,Córdoba,AR-X,annual,2010,bioetanol combustion consumption by to the public,0.7759063871999999,TJ,N2O,0.6,kg/TJ,0.46554383231999996,kg -1930d0f1-c4a8-371d-b0eb-66402666e8d0,SESCO,II.1.1,Jujuy,AR-Y,annual,2010,bioetanol combustion consumption by to the public,3.0747386808000003,TJ,CH4,10.0,kg/TJ,30.747386808,kg -b7d7c245-2f75-3c18-9268-173731f78a26,SESCO,II.1.1,Jujuy,AR-Y,annual,2010,bioetanol combustion consumption by to the public,3.0747386808000003,TJ,N2O,0.6,kg/TJ,1.8448432084800002,kg -37292173-5843-325a-a103-f918e3654ed3,SESCO,II.1.1,La Rioja,AR-F,annual,2010,bioetanol combustion consumption by to the public,2.3628307661999997,TJ,CH4,10.0,kg/TJ,23.628307661999997,kg -9cd4a484-bf85-3407-8b47-08322d35a48d,SESCO,II.1.1,La Rioja,AR-F,annual,2010,bioetanol combustion consumption by to the public,2.3628307661999997,TJ,N2O,0.6,kg/TJ,1.4176984597199997,kg -0b9b410a-b907-349a-a872-363d469e8f18,SESCO,II.1.1,Salta,AR-A,annual,2010,bioetanol combustion consumption by to the public,7.0094283444,TJ,CH4,10.0,kg/TJ,70.094283444,kg -47299c25-20f8-38b4-9130-10b7c5c42823,SESCO,II.1.1,Salta,AR-A,annual,2010,bioetanol combustion consumption by to the public,7.0094283444,TJ,N2O,0.6,kg/TJ,4.20565700664,kg -f28e5f37-c768-3fdc-9bde-136fbf773010,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2010,bioetanol combustion consumption by to the public,2.2173781428,TJ,CH4,10.0,kg/TJ,22.173781427999998,kg -6f33d286-7324-306e-a7e4-df3b37fb96ff,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2010,bioetanol combustion consumption by to the public,2.2173781428,TJ,N2O,0.6,kg/TJ,1.33042688568,kg -3269be9c-fae3-36bb-ae53-6edb93fe7d7b,SESCO,II.1.1,Tucuman,AR-T,annual,2010,bioetanol combustion consumption by to the public,13.2122867634,TJ,CH4,10.0,kg/TJ,132.122867634,kg -6b8e1b60-b77b-33cb-80b7-196b0af46baa,SESCO,II.1.1,Tucuman,AR-T,annual,2010,bioetanol combustion consumption by to the public,13.2122867634,TJ,N2O,0.6,kg/TJ,7.92737205804,kg -bcf44d70-4e7b-32f5-9fab-dead5f12f787,SESCO,II.1.1,Catamarca,AR-K,annual,2010,bioetanol combustion consumption by to the public,0.10072058399999999,TJ,CH4,10.0,kg/TJ,1.00720584,kg -b0bfc66f-a918-31b4-89af-a0e0f5453b9c,SESCO,II.1.1,Catamarca,AR-K,annual,2010,bioetanol combustion consumption by to the public,0.10072058399999999,TJ,N2O,0.6,kg/TJ,0.06043235039999999,kg -046ffaf6-bf31-379f-bcba-c29637233d3e,SESCO,II.1.1,Chaco,AR-H,annual,2010,bioetanol combustion consumption by to the public,0.0076307346,TJ,CH4,10.0,kg/TJ,0.076307346,kg -0c1ac799-db87-300e-bbbc-16d7b34f9715,SESCO,II.1.1,Chaco,AR-H,annual,2010,bioetanol combustion consumption by to the public,0.0076307346,TJ,N2O,0.6,kg/TJ,0.00457844076,kg -e75b0666-79da-3ab5-bb31-427ea66c3286,SESCO,II.1.1,Córdoba,AR-X,annual,2010,bioetanol combustion consumption by to the public,0.0651829194,TJ,CH4,10.0,kg/TJ,0.651829194,kg -d450533a-7be1-3a0d-87bd-81cb302950dd,SESCO,II.1.1,Córdoba,AR-X,annual,2010,bioetanol combustion consumption by to the public,0.0651829194,TJ,N2O,0.6,kg/TJ,0.039109751639999996,kg -014d8307-eb34-3f9a-8de8-9c73d93c39a0,SESCO,II.1.1,Jujuy,AR-Y,annual,2010,bioetanol combustion consumption by to the public,0.2230253676,TJ,CH4,10.0,kg/TJ,2.230253676,kg -78b872d2-e60e-3e19-8b66-ca4c8e24f01c,SESCO,II.1.1,Jujuy,AR-Y,annual,2010,bioetanol combustion consumption by to the public,0.2230253676,TJ,N2O,0.6,kg/TJ,0.13381522056,kg -e02d1ddf-11b6-38b3-8550-57eb1a533fca,SESCO,II.1.1,La Rioja,AR-F,annual,2010,bioetanol combustion consumption by to the public,0.1236042666,TJ,CH4,10.0,kg/TJ,1.236042666,kg -a54f29a6-bdce-3d00-8508-d8af0557018d,SESCO,II.1.1,La Rioja,AR-F,annual,2010,bioetanol combustion consumption by to the public,0.1236042666,TJ,N2O,0.6,kg/TJ,0.07416255996,kg -cd63ecbb-a149-3a19-9591-8b86bc4705f9,SESCO,II.1.1,Salta,AR-A,annual,2010,bioetanol combustion consumption by to the public,0.552003336,TJ,CH4,10.0,kg/TJ,5.520033359999999,kg -aa74654d-f161-3bb8-9602-ea8350219a66,SESCO,II.1.1,Salta,AR-A,annual,2010,bioetanol combustion consumption by to the public,0.552003336,TJ,N2O,0.6,kg/TJ,0.33120200159999996,kg -a66d1575-27fa-3235-822b-c07148d575d6,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2010,bioetanol combustion consumption by to the public,0.2109465666,TJ,CH4,10.0,kg/TJ,2.109465666,kg -a8d29cdc-4d9d-354d-8859-2fbbfb3a0672,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2010,bioetanol combustion consumption by to the public,0.2109465666,TJ,N2O,0.6,kg/TJ,0.12656793996,kg -076b6605-81bf-34cf-b7e0-2ce90caf8a04,SESCO,II.1.1,Tucuman,AR-T,annual,2010,bioetanol combustion consumption by to the public,1.0517674554,TJ,CH4,10.0,kg/TJ,10.517674554000001,kg -5408a354-4dd0-3906-8285-5911105731d1,SESCO,II.1.1,Tucuman,AR-T,annual,2010,bioetanol combustion consumption by to the public,1.0517674554,TJ,N2O,0.6,kg/TJ,0.63106047324,kg -aebc7f6b-1fe1-3b0e-86ea-1bbbaef92a6c,SESCO,II.5.1,Misiones,AR-N,annual,2010,bioetanol combustion consumption by agriculture machines,0.10608894,TJ,CH4,10.0,kg/TJ,1.0608894,kg -b1baf6a7-e3d7-3f67-93d8-20e988d8ea00,SESCO,II.5.1,Misiones,AR-N,annual,2010,bioetanol combustion consumption by agriculture machines,0.10608894,TJ,N2O,0.6,kg/TJ,0.063653364,kg -a857ff55-10d0-328d-be62-891167a66e61,SESCO,II.5.1,Capital Federal,AR-C,annual,2010,bioetanol combustion consumption by agriculture machines,0.0068169599999999995,TJ,CH4,10.0,kg/TJ,0.0681696,kg -820d206e-1f00-39da-b415-23566542e7b7,SESCO,II.5.1,Capital Federal,AR-C,annual,2010,bioetanol combustion consumption by agriculture machines,0.0068169599999999995,TJ,N2O,0.6,kg/TJ,0.004090175999999999,kg -7e8a6d59-eb09-3827-b4f0-f11a2c53867c,SESCO,II.5.1,Salta,AR-A,annual,2010,bioetanol combustion consumption by agriculture machines,0.0025563599999999997,TJ,CH4,10.0,kg/TJ,0.0255636,kg -4079a562-7059-3c1b-955f-02a6f07108a5,SESCO,II.5.1,Salta,AR-A,annual,2010,bioetanol combustion consumption by agriculture machines,0.0025563599999999997,TJ,N2O,0.6,kg/TJ,0.0015338159999999997,kg -76861cc3-266b-33b7-a13e-977ae63f920a,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,bioetanol combustion consumption by to the public,4.9670074799999995,TJ,CH4,10.0,kg/TJ,49.670074799999995,kg -8716907d-6510-34bc-baf5-ca3a0be16728,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,bioetanol combustion consumption by to the public,4.9670074799999995,TJ,N2O,0.6,kg/TJ,2.9802044879999996,kg -e6a77332-8875-3b11-9074-62cfbfc14136,SESCO,II.1.1,Capital Federal,AR-C,annual,2010,bioetanol combustion consumption by to the public,0.1363392,TJ,CH4,10.0,kg/TJ,1.363392,kg -3d5f3f69-8af8-3335-8995-670a4bb7ba36,SESCO,II.1.1,Capital Federal,AR-C,annual,2010,bioetanol combustion consumption by to the public,0.1363392,TJ,N2O,0.6,kg/TJ,0.08180351999999999,kg -b81b914a-cc83-34c9-9614-71a91402da6c,SESCO,II.1.1,Chaco,AR-H,annual,2010,bioetanol combustion consumption by to the public,0.2577663,TJ,CH4,10.0,kg/TJ,2.5776630000000003,kg -7ed298af-8634-396b-98cb-b59047effc1e,SESCO,II.1.1,Chaco,AR-H,annual,2010,bioetanol combustion consumption by to the public,0.2577663,TJ,N2O,0.6,kg/TJ,0.15465978,kg -b778f734-0ae4-36d8-a0fc-3316c9e2e355,SESCO,II.1.1,Chubut,AR-U,annual,2010,bioetanol combustion consumption by to the public,0.10779318,TJ,CH4,10.0,kg/TJ,1.0779318,kg -497ca5ae-a24e-36fe-af5c-2a860a7d3530,SESCO,II.1.1,Chubut,AR-U,annual,2010,bioetanol combustion consumption by to the public,0.10779318,TJ,N2O,0.6,kg/TJ,0.064675908,kg -5cba0814-48b2-3b27-ade4-ba60d6aba24f,SESCO,II.1.1,Corrientes,AR-W,annual,2010,bioetanol combustion consumption by to the public,0.41242608,TJ,CH4,10.0,kg/TJ,4.1242608,kg -813adcb3-450c-3386-ab04-32812d75e838,SESCO,II.1.1,Corrientes,AR-W,annual,2010,bioetanol combustion consumption by to the public,0.41242608,TJ,N2O,0.6,kg/TJ,0.24745564799999997,kg -8cf29d1f-30f0-3b36-a76a-8da73d161e42,SESCO,II.1.1,Córdoba,AR-X,annual,2010,bioetanol combustion consumption by to the public,0.37109826,TJ,CH4,10.0,kg/TJ,3.7109826000000004,kg -163c46f5-6b41-38e1-940d-297a0b3d67fc,SESCO,II.1.1,Córdoba,AR-X,annual,2010,bioetanol combustion consumption by to the public,0.37109826,TJ,N2O,0.6,kg/TJ,0.222658956,kg -b999dc56-4385-31bd-b98d-c3743e9593a8,SESCO,II.1.1,Entre Rios,AR-E,annual,2010,bioetanol combustion consumption by to the public,0.5969100599999999,TJ,CH4,10.0,kg/TJ,5.969100599999999,kg -b6164a06-26de-3858-b23a-cfae06338b2d,SESCO,II.1.1,Entre Rios,AR-E,annual,2010,bioetanol combustion consumption by to the public,0.5969100599999999,TJ,N2O,0.6,kg/TJ,0.35814603599999995,kg -42afe55d-2f15-3a51-b184-fe578c001fb3,SESCO,II.1.1,Jujuy,AR-Y,annual,2010,bioetanol combustion consumption by to the public,0.0532575,TJ,CH4,10.0,kg/TJ,0.532575,kg -0526dfb1-a1bf-3338-b1d3-4f68a964244b,SESCO,II.1.1,Jujuy,AR-Y,annual,2010,bioetanol combustion consumption by to the public,0.0532575,TJ,N2O,0.6,kg/TJ,0.0319545,kg -e9fd757a-1e64-3f00-8a3a-9431176b0527,SESCO,II.1.1,La Pampa,AR-L,annual,2010,bioetanol combustion consumption by to the public,0.16360703999999998,TJ,CH4,10.0,kg/TJ,1.6360704,kg -25632230-9369-3385-a1bf-0cc9ce203aac,SESCO,II.1.1,La Pampa,AR-L,annual,2010,bioetanol combustion consumption by to the public,0.16360703999999998,TJ,N2O,0.6,kg/TJ,0.09816422399999998,kg -14ec31e9-7670-32f8-8c08-7173c9abe1d9,SESCO,II.1.1,Mendoza,AR-M,annual,2010,bioetanol combustion consumption by to the public,0.489969,TJ,CH4,10.0,kg/TJ,4.89969,kg -5d852a7a-06e9-3e8f-b391-a3f0dc6580a0,SESCO,II.1.1,Mendoza,AR-M,annual,2010,bioetanol combustion consumption by to the public,0.489969,TJ,N2O,0.6,kg/TJ,0.2939814,kg -a1cfb0ba-9120-3716-bc61-745589e4e8dd,SESCO,II.1.1,Misiones,AR-N,annual,2010,bioetanol combustion consumption by to the public,0.96587802,TJ,CH4,10.0,kg/TJ,9.6587802,kg -97fb0048-e410-3643-ba45-166b62159598,SESCO,II.1.1,Misiones,AR-N,annual,2010,bioetanol combustion consumption by to the public,0.96587802,TJ,N2O,0.6,kg/TJ,0.579526812,kg -8fa11059-744f-33df-ae7f-7c687cc491a2,SESCO,II.1.1,Neuquén,AR-Q,annual,2010,bioetanol combustion consumption by to the public,0.35533403999999996,TJ,CH4,10.0,kg/TJ,3.5533403999999997,kg -951e13be-8cf0-3ece-b88e-9bedaf24f8f4,SESCO,II.1.1,Neuquén,AR-Q,annual,2010,bioetanol combustion consumption by to the public,0.35533403999999996,TJ,N2O,0.6,kg/TJ,0.21320042399999997,kg -7e3fd4b5-0d95-34f4-8fc7-b2422f9920a8,SESCO,II.1.1,Rio Negro,AR-R,annual,2010,bioetanol combustion consumption by to the public,0.45204965999999996,TJ,CH4,10.0,kg/TJ,4.5204965999999995,kg -e49b062e-cf55-3cde-aa0e-d0683a8757f4,SESCO,II.1.1,Rio Negro,AR-R,annual,2010,bioetanol combustion consumption by to the public,0.45204965999999996,TJ,N2O,0.6,kg/TJ,0.27122979599999997,kg -b40ba657-8e8f-3c0e-b665-577dab3150ef,SESCO,II.1.1,Salta,AR-A,annual,2010,bioetanol combustion consumption by to the public,0.11716649999999999,TJ,CH4,10.0,kg/TJ,1.171665,kg -0403a88b-aab9-3f22-a77e-4f69af4e16a5,SESCO,II.1.1,Salta,AR-A,annual,2010,bioetanol combustion consumption by to the public,0.11716649999999999,TJ,N2O,0.6,kg/TJ,0.0702999,kg -22fe543f-503a-3de6-bdfe-b2413eab09be,SESCO,II.1.1,Santa Fe,AR-S,annual,2010,bioetanol combustion consumption by to the public,0.29568564,TJ,CH4,10.0,kg/TJ,2.9568564000000004,kg -dc03463c-63a5-3b77-b668-e59b1c6ec659,SESCO,II.1.1,Santa Fe,AR-S,annual,2010,bioetanol combustion consumption by to the public,0.29568564,TJ,N2O,0.6,kg/TJ,0.177411384,kg -bf58d1ac-0e92-3d82-bd4d-edffdd68d31f,SESCO,II.1.1,Tucuman,AR-T,annual,2010,bioetanol combustion consumption by to the public,0.19172699999999998,TJ,CH4,10.0,kg/TJ,1.9172699999999998,kg -d82b90e9-534a-34db-8677-2c774310b825,SESCO,II.1.1,Tucuman,AR-T,annual,2010,bioetanol combustion consumption by to the public,0.19172699999999998,TJ,N2O,0.6,kg/TJ,0.11503619999999998,kg -8026acb8-cb20-3203-bd75-44fdd48f7799,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,bioetanol combustion consumption by to the public,126.24626466,TJ,CH4,10.0,kg/TJ,1262.4626466,kg -a916de6f-732b-3dac-829d-9f6de0e9264f,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,bioetanol combustion consumption by to the public,126.24626466,TJ,N2O,0.6,kg/TJ,75.747758796,kg -6e7921f4-4a6a-3fa5-a05b-75e31e48c393,SESCO,II.1.1,Capital Federal,AR-C,annual,2010,bioetanol combustion consumption by to the public,44.3272824,TJ,CH4,10.0,kg/TJ,443.272824,kg -152953d1-9ad1-382a-8cae-cd04a913a320,SESCO,II.1.1,Capital Federal,AR-C,annual,2010,bioetanol combustion consumption by to the public,44.3272824,TJ,N2O,0.6,kg/TJ,26.59636944,kg -d4b53aa3-5e03-3116-af6b-975cdde2c814,SESCO,II.1.1,Catamarca,AR-K,annual,2010,bioetanol combustion consumption by to the public,0.67274874,TJ,CH4,10.0,kg/TJ,6.727487399999999,kg -b4e7df3a-c732-3d84-ba22-9e7920641929,SESCO,II.1.1,Catamarca,AR-K,annual,2010,bioetanol combustion consumption by to the public,0.67274874,TJ,N2O,0.6,kg/TJ,0.40364924399999996,kg -67c14655-5d36-30c9-8981-8bb9c4a1ebf5,SESCO,II.1.1,Chaco,AR-H,annual,2010,bioetanol combustion consumption by to the public,8.5787181,TJ,CH4,10.0,kg/TJ,85.787181,kg -d030869a-75e3-3560-8d3e-c97bd8107c80,SESCO,II.1.1,Chaco,AR-H,annual,2010,bioetanol combustion consumption by to the public,8.5787181,TJ,N2O,0.6,kg/TJ,5.14723086,kg -324b2501-ec60-307c-bd2a-2a76593e7321,SESCO,II.1.1,Chubut,AR-U,annual,2010,bioetanol combustion consumption by to the public,1.59602076,TJ,CH4,10.0,kg/TJ,15.9602076,kg -60d35c77-f892-3d1c-88d0-84e7822b0735,SESCO,II.1.1,Chubut,AR-U,annual,2010,bioetanol combustion consumption by to the public,1.59602076,TJ,N2O,0.6,kg/TJ,0.957612456,kg -c16dd0f2-3e07-3964-a1da-d3ab781ac646,SESCO,II.1.1,Corrientes,AR-W,annual,2010,bioetanol combustion consumption by to the public,9.04994046,TJ,CH4,10.0,kg/TJ,90.4994046,kg -a7ad5aed-ded2-3725-9d36-7a97ecbf3219,SESCO,II.1.1,Corrientes,AR-W,annual,2010,bioetanol combustion consumption by to the public,9.04994046,TJ,N2O,0.6,kg/TJ,5.429964276,kg -921e4348-c0ea-362b-aea9-c09c5a429341,SESCO,II.1.1,Córdoba,AR-X,annual,2010,bioetanol combustion consumption by to the public,30.87315972,TJ,CH4,10.0,kg/TJ,308.7315972,kg -c849120b-876a-3d9e-a251-046f392641fb,SESCO,II.1.1,Córdoba,AR-X,annual,2010,bioetanol combustion consumption by to the public,30.87315972,TJ,N2O,0.6,kg/TJ,18.523895832,kg -cdc0f50d-cddb-3e25-b7fd-f415087bbb36,SESCO,II.1.1,Entre Rios,AR-E,annual,2010,bioetanol combustion consumption by to the public,9.69371712,TJ,CH4,10.0,kg/TJ,96.93717120000001,kg -ee9f4c51-4a84-379c-a89a-747011972e84,SESCO,II.1.1,Entre Rios,AR-E,annual,2010,bioetanol combustion consumption by to the public,9.69371712,TJ,N2O,0.6,kg/TJ,5.816230272,kg -cce94eff-7a24-3563-9a3f-8b0964abe607,SESCO,II.1.1,Formosa,AR-P,annual,2010,bioetanol combustion consumption by to the public,3.7361201399999997,TJ,CH4,10.0,kg/TJ,37.3612014,kg -c18ffc49-f530-3346-81af-e4e1de46de93,SESCO,II.1.1,Formosa,AR-P,annual,2010,bioetanol combustion consumption by to the public,3.7361201399999997,TJ,N2O,0.6,kg/TJ,2.2416720839999997,kg -4d5a5b7b-d5c4-3aa3-ad91-d5764f32d2cd,SESCO,II.1.1,Jujuy,AR-Y,annual,2010,bioetanol combustion consumption by to the public,2.59939206,TJ,CH4,10.0,kg/TJ,25.9939206,kg -84fdd00d-9b6d-3488-9323-5e9cc57ebd12,SESCO,II.1.1,Jujuy,AR-Y,annual,2010,bioetanol combustion consumption by to the public,2.59939206,TJ,N2O,0.6,kg/TJ,1.5596352359999999,kg -bf05fd6a-958e-3b57-be16-0d52ae76ce02,SESCO,II.1.1,La Pampa,AR-L,annual,2010,bioetanol combustion consumption by to the public,3.04377264,TJ,CH4,10.0,kg/TJ,30.4377264,kg -b730219e-0b29-33bd-9e0e-9b3ca9a45ae4,SESCO,II.1.1,La Pampa,AR-L,annual,2010,bioetanol combustion consumption by to the public,3.04377264,TJ,N2O,0.6,kg/TJ,1.8262635839999999,kg -391432a9-9e00-3ad3-a262-a7feebfb733c,SESCO,II.1.1,La Rioja,AR-F,annual,2010,bioetanol combustion consumption by to the public,2.55337758,TJ,CH4,10.0,kg/TJ,25.533775799999997,kg -f8755dc6-8c0a-3d8c-a7c7-5adb83c5b6fd,SESCO,II.1.1,La Rioja,AR-F,annual,2010,bioetanol combustion consumption by to the public,2.55337758,TJ,N2O,0.6,kg/TJ,1.532026548,kg -d363cccb-eda9-36a0-8b98-c690ffcbbc01,SESCO,II.1.1,Mendoza,AR-M,annual,2010,bioetanol combustion consumption by to the public,7.122018959999999,TJ,CH4,10.0,kg/TJ,71.2201896,kg -c063f0ce-22df-392e-8e72-3429f4d49163,SESCO,II.1.1,Mendoza,AR-M,annual,2010,bioetanol combustion consumption by to the public,7.122018959999999,TJ,N2O,0.6,kg/TJ,4.273211375999999,kg -3aaff2af-90e3-37c9-a194-9e11188e371a,SESCO,II.1.1,Misiones,AR-N,annual,2010,bioetanol combustion consumption by to the public,9.8483769,TJ,CH4,10.0,kg/TJ,98.483769,kg -43180ed2-b98f-3ad1-bac7-d6b894549c8b,SESCO,II.1.1,Misiones,AR-N,annual,2010,bioetanol combustion consumption by to the public,9.8483769,TJ,N2O,0.6,kg/TJ,5.90902614,kg -b921e5eb-1d19-319b-9ba9-04e070885943,SESCO,II.1.1,Neuquén,AR-Q,annual,2010,bioetanol combustion consumption by to the public,1.7724096,TJ,CH4,10.0,kg/TJ,17.724096,kg -af34392e-aad7-375f-acf1-c2fb16b15c84,SESCO,II.1.1,Neuquén,AR-Q,annual,2010,bioetanol combustion consumption by to the public,1.7724096,TJ,N2O,0.6,kg/TJ,1.06344576,kg -193a9b06-6ba6-3545-b682-57c9d99b7ba2,SESCO,II.1.1,Rio Negro,AR-R,annual,2010,bioetanol combustion consumption by to the public,1.9918304999999998,TJ,CH4,10.0,kg/TJ,19.918304999999997,kg -642a792f-8dc5-3128-98b7-3c36839ec451,SESCO,II.1.1,Rio Negro,AR-R,annual,2010,bioetanol combustion consumption by to the public,1.9918304999999998,TJ,N2O,0.6,kg/TJ,1.1950983,kg -c8263e47-50de-37d8-84d2-1ae98d1a236a,SESCO,II.1.1,Salta,AR-A,annual,2010,bioetanol combustion consumption by to the public,3.3633176399999996,TJ,CH4,10.0,kg/TJ,33.633176399999996,kg -d3a7ec93-9d42-37ba-acdb-b39b6300f71e,SESCO,II.1.1,Salta,AR-A,annual,2010,bioetanol combustion consumption by to the public,3.3633176399999996,TJ,N2O,0.6,kg/TJ,2.0179905839999996,kg -a9860555-1fc6-340b-9284-835619078b40,SESCO,II.1.1,San Juan,AR-J,annual,2010,bioetanol combustion consumption by to the public,2.8396899,TJ,CH4,10.0,kg/TJ,28.396899,kg -044af76e-e6e3-319d-a45b-38ea25a69606,SESCO,II.1.1,San Juan,AR-J,annual,2010,bioetanol combustion consumption by to the public,2.8396899,TJ,N2O,0.6,kg/TJ,1.70381394,kg -2b1e2bb4-897a-30cb-9f9a-740e169e29ea,SESCO,II.1.1,San Luis,AR-D,annual,2010,bioetanol combustion consumption by to the public,0.14187798,TJ,CH4,10.0,kg/TJ,1.4187797999999998,kg -35ad1ca2-99a6-3d89-b848-411cf1aebcf4,SESCO,II.1.1,San Luis,AR-D,annual,2010,bioetanol combustion consumption by to the public,0.14187798,TJ,N2O,0.6,kg/TJ,0.085126788,kg -61a5e62e-5304-39ba-9dee-fd64ab2af0f2,SESCO,II.1.1,Santa Fe,AR-S,annual,2010,bioetanol combustion consumption by to the public,35.7975612,TJ,CH4,10.0,kg/TJ,357.97561199999996,kg -a487192a-7e49-355c-aadb-21dd57c74a83,SESCO,II.1.1,Santa Fe,AR-S,annual,2010,bioetanol combustion consumption by to the public,35.7975612,TJ,N2O,0.6,kg/TJ,21.478536719999997,kg -4fe7370b-4737-3227-8004-81839811f8d8,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2010,bioetanol combustion consumption by to the public,3.63684816,TJ,CH4,10.0,kg/TJ,36.3684816,kg -82b063bb-3168-3e2a-992b-b6bd6a3f7d2d,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2010,bioetanol combustion consumption by to the public,3.63684816,TJ,N2O,0.6,kg/TJ,2.182108896,kg -a0ee9340-dd4b-3aa6-9443-9154fd67b4ea,SESCO,II.1.1,Tucuman,AR-T,annual,2010,bioetanol combustion consumption by to the public,6.59668698,TJ,CH4,10.0,kg/TJ,65.9668698,kg -c3e5a502-fbfe-3755-afe2-99ad43db7f12,SESCO,II.1.1,Tucuman,AR-T,annual,2010,bioetanol combustion consumption by to the public,6.59668698,TJ,N2O,0.6,kg/TJ,3.958012188,kg -d8912314-ded0-3446-9a09-faf005a347c4,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,bioetanol combustion consumption by to the public,44.8768998,TJ,CH4,10.0,kg/TJ,448.76899799999995,kg -dae10f65-1b85-3b0e-96d4-33f1b74a408a,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,bioetanol combustion consumption by to the public,44.8768998,TJ,N2O,0.6,kg/TJ,26.926139879999997,kg -6f38e4d8-4724-3853-93ba-98b502eb5f4f,SESCO,II.1.1,Capital Federal,AR-C,annual,2010,bioetanol combustion consumption by to the public,24.96967236,TJ,CH4,10.0,kg/TJ,249.6967236,kg -2a4f5565-03b0-30cf-8b66-01454ebdae46,SESCO,II.1.1,Capital Federal,AR-C,annual,2010,bioetanol combustion consumption by to the public,24.96967236,TJ,N2O,0.6,kg/TJ,14.981803416,kg -dea34758-f644-3ff7-b7cd-43ba30f1b57e,SESCO,II.1.1,Catamarca,AR-K,annual,2010,bioetanol combustion consumption by to the public,0.2300724,TJ,CH4,10.0,kg/TJ,2.300724,kg -4e15f0e4-6c58-30f8-86d1-5fed4c74bfa2,SESCO,II.1.1,Catamarca,AR-K,annual,2010,bioetanol combustion consumption by to the public,0.2300724,TJ,N2O,0.6,kg/TJ,0.13804344,kg -d50fded5-462b-381b-9de9-17b5e10a9af2,SESCO,II.1.1,Chaco,AR-H,annual,2010,bioetanol combustion consumption by to the public,1.6488522,TJ,CH4,10.0,kg/TJ,16.488522,kg -48346f0b-60bb-340e-aef6-3524882a6bc0,SESCO,II.1.1,Chaco,AR-H,annual,2010,bioetanol combustion consumption by to the public,1.6488522,TJ,N2O,0.6,kg/TJ,0.98931132,kg -e7bac093-18cf-35af-b48d-56a1bfe8d5eb,SESCO,II.1.1,Chubut,AR-U,annual,2010,bioetanol combustion consumption by to the public,0.22964633999999998,TJ,CH4,10.0,kg/TJ,2.2964634,kg -78f336a7-fb90-38f8-8900-531603a2bed3,SESCO,II.1.1,Chubut,AR-U,annual,2010,bioetanol combustion consumption by to the public,0.22964633999999998,TJ,N2O,0.6,kg/TJ,0.13778780399999999,kg -5dc5f548-b0aa-3fb5-abb7-2529f775c285,SESCO,II.1.1,Corrientes,AR-W,annual,2010,bioetanol combustion consumption by to the public,1.384695,TJ,CH4,10.0,kg/TJ,13.84695,kg -e7e75894-caac-3a44-a773-189bd669af11,SESCO,II.1.1,Corrientes,AR-W,annual,2010,bioetanol combustion consumption by to the public,1.384695,TJ,N2O,0.6,kg/TJ,0.830817,kg -206c9cd6-67f0-3323-a44e-ae06c90c54f6,SESCO,II.1.1,Córdoba,AR-X,annual,2010,bioetanol combustion consumption by to the public,7.82118342,TJ,CH4,10.0,kg/TJ,78.2118342,kg -0f9c637b-288f-3f41-81a3-447576bd8a08,SESCO,II.1.1,Córdoba,AR-X,annual,2010,bioetanol combustion consumption by to the public,7.82118342,TJ,N2O,0.6,kg/TJ,4.692710052,kg -75f36119-f849-3d81-aeed-58fc5b9cc18e,SESCO,II.1.1,Entre Rios,AR-E,annual,2010,bioetanol combustion consumption by to the public,2.6522235,TJ,CH4,10.0,kg/TJ,26.522235,kg -9cbfb3c5-2178-3e06-a85b-1841dc61b07f,SESCO,II.1.1,Entre Rios,AR-E,annual,2010,bioetanol combustion consumption by to the public,2.6522235,TJ,N2O,0.6,kg/TJ,1.5913340999999999,kg -b754e3e6-eef3-3492-9608-a0cebe487326,SESCO,II.1.1,Formosa,AR-P,annual,2010,bioetanol combustion consumption by to the public,0.97823376,TJ,CH4,10.0,kg/TJ,9.7823376,kg -64ae5538-2f7b-33d0-9938-4340fe03c5dc,SESCO,II.1.1,Formosa,AR-P,annual,2010,bioetanol combustion consumption by to the public,0.97823376,TJ,N2O,0.6,kg/TJ,0.586940256,kg -3ed24f1c-cba9-340e-ab68-7ac9aa829c99,SESCO,II.1.1,Jujuy,AR-Y,annual,2010,bioetanol combustion consumption by to the public,0.3898449,TJ,CH4,10.0,kg/TJ,3.898449,kg -7b9c61e0-faae-30a7-8c99-e88f9a4f707c,SESCO,II.1.1,Jujuy,AR-Y,annual,2010,bioetanol combustion consumption by to the public,0.3898449,TJ,N2O,0.6,kg/TJ,0.23390693999999998,kg -783bc598-8cd0-36ac-a0db-128ebc9d0aa6,SESCO,II.1.1,La Pampa,AR-L,annual,2010,bioetanol combustion consumption by to the public,1.1524923,TJ,CH4,10.0,kg/TJ,11.524923000000001,kg -136e11ba-f869-343c-a756-d6e7ed9099bb,SESCO,II.1.1,La Pampa,AR-L,annual,2010,bioetanol combustion consumption by to the public,1.1524923,TJ,N2O,0.6,kg/TJ,0.69149538,kg -9dddde8a-a348-3abc-b709-5ccf20362147,SESCO,II.1.1,La Rioja,AR-F,annual,2010,bioetanol combustion consumption by to the public,0.40220063999999994,TJ,CH4,10.0,kg/TJ,4.0220063999999995,kg -4c06a56d-33e8-3aab-bf4b-49b488ab92d3,SESCO,II.1.1,La Rioja,AR-F,annual,2010,bioetanol combustion consumption by to the public,0.40220063999999994,TJ,N2O,0.6,kg/TJ,0.24132038399999994,kg -016ca97e-561e-3faa-9276-e95bd0269254,SESCO,II.1.1,Mendoza,AR-M,annual,2010,bioetanol combustion consumption by to the public,1.78561746,TJ,CH4,10.0,kg/TJ,17.856174600000003,kg -38697cb9-10cf-3097-a2d8-b24d89bcfe62,SESCO,II.1.1,Mendoza,AR-M,annual,2010,bioetanol combustion consumption by to the public,1.78561746,TJ,N2O,0.6,kg/TJ,1.071370476,kg -a1bac0b9-49ab-3d0a-ad4b-e4a0c05cb3f3,SESCO,II.1.1,Misiones,AR-N,annual,2010,bioetanol combustion consumption by to the public,1.4371003800000002,TJ,CH4,10.0,kg/TJ,14.371003800000002,kg -2bfaa556-599e-3636-be68-7875f01aeae8,SESCO,II.1.1,Misiones,AR-N,annual,2010,bioetanol combustion consumption by to the public,1.4371003800000002,TJ,N2O,0.6,kg/TJ,0.8622602280000001,kg -43154496-d2ad-3e8b-aa1a-cb901846f95b,SESCO,II.1.1,Neuquén,AR-Q,annual,2010,bioetanol combustion consumption by to the public,0.28759049999999997,TJ,CH4,10.0,kg/TJ,2.8759049999999995,kg -ff5b4118-be4f-3b2f-adb1-8b3f66ff2cfd,SESCO,II.1.1,Neuquén,AR-Q,annual,2010,bioetanol combustion consumption by to the public,0.28759049999999997,TJ,N2O,0.6,kg/TJ,0.17255429999999997,kg -84220893-c2d0-3942-bdae-59e262ebdd64,SESCO,II.1.1,Rio Negro,AR-R,annual,2010,bioetanol combustion consumption by to the public,0.55473012,TJ,CH4,10.0,kg/TJ,5.5473012,kg -8c963441-a73a-315b-91d0-c6ffe4f55bfd,SESCO,II.1.1,Rio Negro,AR-R,annual,2010,bioetanol combustion consumption by to the public,0.55473012,TJ,N2O,0.6,kg/TJ,0.332838072,kg -16d93af3-40b6-3c6f-8af2-e3ecead0b174,SESCO,II.1.1,Salta,AR-A,annual,2010,bioetanol combustion consumption by to the public,0.6544281599999999,TJ,CH4,10.0,kg/TJ,6.5442816,kg -2d6a70b7-0c6a-3167-ae81-eb589f1b56a9,SESCO,II.1.1,Salta,AR-A,annual,2010,bioetanol combustion consumption by to the public,0.6544281599999999,TJ,N2O,0.6,kg/TJ,0.3926568959999999,kg -52d2ec48-a6b7-33d3-8163-bc2f922a8fde,SESCO,II.1.1,San Juan,AR-J,annual,2010,bioetanol combustion consumption by to the public,0.28716444,TJ,CH4,10.0,kg/TJ,2.8716444,kg -671210a5-97c5-39ec-86b7-7d7f751aabf7,SESCO,II.1.1,San Juan,AR-J,annual,2010,bioetanol combustion consumption by to the public,0.28716444,TJ,N2O,0.6,kg/TJ,0.17229866400000002,kg -89fd85ae-ba2e-33b0-ac3f-3819b3dedaa4,SESCO,II.1.1,San Luis,AR-D,annual,2010,bioetanol combustion consumption by to the public,0.07626474,TJ,CH4,10.0,kg/TJ,0.7626474,kg -281be540-7fba-3a1b-9b8b-4297f7598266,SESCO,II.1.1,San Luis,AR-D,annual,2010,bioetanol combustion consumption by to the public,0.07626474,TJ,N2O,0.6,kg/TJ,0.045758844,kg -1c192d43-aad8-3f9d-a5d0-321833f690fb,SESCO,II.1.1,Santa Fe,AR-S,annual,2010,bioetanol combustion consumption by to the public,12.021282900000001,TJ,CH4,10.0,kg/TJ,120.21282900000001,kg -d158d089-fbcf-3bc1-9918-22debfe96c8c,SESCO,II.1.1,Santa Fe,AR-S,annual,2010,bioetanol combustion consumption by to the public,12.021282900000001,TJ,N2O,0.6,kg/TJ,7.212769740000001,kg -e37049db-5a7e-3428-9c67-760c3c32dfc7,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2010,bioetanol combustion consumption by to the public,1.0251003600000002,TJ,CH4,10.0,kg/TJ,10.2510036,kg -506f08fb-818a-3c25-8708-a07571c60fdc,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2010,bioetanol combustion consumption by to the public,1.0251003600000002,TJ,N2O,0.6,kg/TJ,0.615060216,kg -310abca6-4804-3491-bffd-bad6df68601c,SESCO,II.1.1,Tucuman,AR-T,annual,2010,bioetanol combustion consumption by to the public,1.5525626399999999,TJ,CH4,10.0,kg/TJ,15.525626399999998,kg -0932f040-2f72-3cea-8b66-7747a9edbbb2,SESCO,II.1.1,Tucuman,AR-T,annual,2010,bioetanol combustion consumption by to the public,1.5525626399999999,TJ,N2O,0.6,kg/TJ,0.9315375839999999,kg -4ec8676f-ce60-359c-aaaf-f9f32cc8356a,SESCO,II.2.1,Buenos Aires,AR-B,annual,2010,bioetanol combustion consumption by railway transport,2.322027,TJ,CH4,10.0,kg/TJ,23.22027,kg -9b08fc49-f046-33c7-91e3-721806139fa8,SESCO,II.2.1,Buenos Aires,AR-B,annual,2010,bioetanol combustion consumption by railway transport,2.322027,TJ,N2O,0.6,kg/TJ,1.3932162,kg -a0229d96-1b12-33a5-9375-6f4c4292bebb,SESCO,II.5.1,Buenos Aires,AR-B,annual,2010,bioetanol combustion consumption by agriculture machines,0.024711479999999997,TJ,CH4,10.0,kg/TJ,0.24711479999999997,kg -14d2d875-73cf-3dd7-9b00-d4b573bf6a89,SESCO,II.5.1,Buenos Aires,AR-B,annual,2010,bioetanol combustion consumption by agriculture machines,0.024711479999999997,TJ,N2O,0.6,kg/TJ,0.014826887999999998,kg -1aaab954-fc26-36bb-b9c8-36eed246af2d,SESCO,II.5.1,Entre Rios,AR-E,annual,2010,bioetanol combustion consumption by agriculture machines,0.01405998,TJ,CH4,10.0,kg/TJ,0.1405998,kg -c34cc1c0-f8db-3fa6-bdc0-a2c3c4968872,SESCO,II.5.1,Entre Rios,AR-E,annual,2010,bioetanol combustion consumption by agriculture machines,0.01405998,TJ,N2O,0.6,kg/TJ,0.008435988,kg -ccb922a9-167d-3bd0-bccd-81da4180cdcb,SESCO,II.5.1,Santa Fe,AR-S,annual,2010,bioetanol combustion consumption by agriculture machines,0.26458326,TJ,CH4,10.0,kg/TJ,2.6458326,kg -5c448d0f-5fa1-3fe7-be19-307bb37933b6,SESCO,II.5.1,Santa Fe,AR-S,annual,2010,bioetanol combustion consumption by agriculture machines,0.26458326,TJ,N2O,0.6,kg/TJ,0.158749956,kg -2f0d2c75-368a-3d0a-b532-80fcd0b2db18,SESCO,II.5.1,Santiago del Estero,AR-G,annual,2010,bioetanol combustion consumption by agriculture machines,0.0063909,TJ,CH4,10.0,kg/TJ,0.063909,kg -3467d2b7-b461-3d19-9875-71f3a0a39772,SESCO,II.5.1,Santiago del Estero,AR-G,annual,2010,bioetanol combustion consumption by agriculture machines,0.0063909,TJ,N2O,0.6,kg/TJ,0.0038345399999999996,kg -1e295685-a715-34fe-9200-728c5dce3f70,SESCO,II.5.1,Buenos Aires,AR-B,annual,2010,bioetanol combustion consumption by agriculture machines,0.0021303,TJ,CH4,10.0,kg/TJ,0.021303,kg -cc123cd9-4295-310e-84c6-cb17e9f9cf1d,SESCO,II.5.1,Buenos Aires,AR-B,annual,2010,bioetanol combustion consumption by agriculture machines,0.0021303,TJ,N2O,0.6,kg/TJ,0.0012781799999999999,kg -d28bb874-56e6-37dc-a921-e8a15d375905,SESCO,II.5.1,Entre Rios,AR-E,annual,2010,bioetanol combustion consumption by agriculture machines,0.00298242,TJ,CH4,10.0,kg/TJ,0.0298242,kg -73a018c9-85a0-3240-8f39-f7e7c834fe23,SESCO,II.5.1,Entre Rios,AR-E,annual,2010,bioetanol combustion consumption by agriculture machines,0.00298242,TJ,N2O,0.6,kg/TJ,0.001789452,kg -64060f89-5fd1-35fe-bb06-d23a5459a47e,SESCO,II.5.1,Santa Fe,AR-S,annual,2010,bioetanol combustion consumption by agriculture machines,0.02684178,TJ,CH4,10.0,kg/TJ,0.2684178,kg -cfab0b47-8a85-3143-b040-cf0587b9062c,SESCO,II.5.1,Santa Fe,AR-S,annual,2010,bioetanol combustion consumption by agriculture machines,0.02684178,TJ,N2O,0.6,kg/TJ,0.016105068,kg -a160ff0c-c719-3245-86f9-58c942833389,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,bioetanol combustion consumption by to the public,18.015094979999997,TJ,CH4,10.0,kg/TJ,180.15094979999998,kg -7ad5afe9-7d32-390e-ae1b-b25a49bc5317,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,bioetanol combustion consumption by to the public,18.015094979999997,TJ,N2O,0.6,kg/TJ,10.809056987999998,kg -bcb154bb-1c28-37b2-8ce8-506602c94a18,SESCO,II.1.1,Capital Federal,AR-C,annual,2010,bioetanol combustion consumption by to the public,0.66550572,TJ,CH4,10.0,kg/TJ,6.6550572,kg -c0a431d0-ef06-3e22-ad7c-b64dccd58329,SESCO,II.1.1,Capital Federal,AR-C,annual,2010,bioetanol combustion consumption by to the public,0.66550572,TJ,N2O,0.6,kg/TJ,0.39930343199999996,kg -323796f9-e930-37ea-be21-841ff1d78a10,SESCO,II.1.1,Catamarca,AR-K,annual,2010,bioetanol combustion consumption by to the public,0.005112719999999999,TJ,CH4,10.0,kg/TJ,0.0511272,kg -c3f54ff0-39a7-3853-9bdd-0378e9a317ab,SESCO,II.1.1,Catamarca,AR-K,annual,2010,bioetanol combustion consumption by to the public,0.005112719999999999,TJ,N2O,0.6,kg/TJ,0.0030676319999999994,kg -4bf4a568-5e8b-3c6e-a2ed-143ba612f08b,SESCO,II.1.1,Chaco,AR-H,annual,2010,bioetanol combustion consumption by to the public,0.09927198,TJ,CH4,10.0,kg/TJ,0.9927197999999999,kg -76dc4142-abff-3fd1-baf9-bc9a338e3aca,SESCO,II.1.1,Chaco,AR-H,annual,2010,bioetanol combustion consumption by to the public,0.09927198,TJ,N2O,0.6,kg/TJ,0.059563187999999996,kg -ec6d9b69-dc89-387d-bcda-0100db694b32,SESCO,II.1.1,Corrientes,AR-W,annual,2010,bioetanol combustion consumption by to the public,0.57560706,TJ,CH4,10.0,kg/TJ,5.756070599999999,kg -78ab093e-d5e9-37be-9601-f312fbdcd04b,SESCO,II.1.1,Corrientes,AR-W,annual,2010,bioetanol combustion consumption by to the public,0.57560706,TJ,N2O,0.6,kg/TJ,0.34536423599999994,kg -2cb9b57a-288d-3387-8b5c-72e0ac6976c2,SESCO,II.1.1,Entre Rios,AR-E,annual,2010,bioetanol combustion consumption by to the public,1.6168977,TJ,CH4,10.0,kg/TJ,16.168976999999998,kg -07eecea9-0a9e-362f-b8c5-cf7a797f43f6,SESCO,II.1.1,Entre Rios,AR-E,annual,2010,bioetanol combustion consumption by to the public,1.6168977,TJ,N2O,0.6,kg/TJ,0.97013862,kg -f44e96b1-bcf1-3efe-b734-c504eb9beda4,SESCO,II.1.1,Jujuy,AR-Y,annual,2010,bioetanol combustion consumption by to the public,1.3548708,TJ,CH4,10.0,kg/TJ,13.548708000000001,kg -828cd08a-7740-3f40-a419-76e4c00dcaa1,SESCO,II.1.1,Jujuy,AR-Y,annual,2010,bioetanol combustion consumption by to the public,1.3548708,TJ,N2O,0.6,kg/TJ,0.81292248,kg -24a3abde-3c39-389e-b370-79577b3efee7,SESCO,II.1.1,La Pampa,AR-L,annual,2010,bioetanol combustion consumption by to the public,1.04555124,TJ,CH4,10.0,kg/TJ,10.4555124,kg -cfe7109e-59df-3a77-aa06-bedcabe426e1,SESCO,II.1.1,La Pampa,AR-L,annual,2010,bioetanol combustion consumption by to the public,1.04555124,TJ,N2O,0.6,kg/TJ,0.627330744,kg -e18652b8-69fd-3801-800a-ac5f8b139226,SESCO,II.1.1,Misiones,AR-N,annual,2010,bioetanol combustion consumption by to the public,5.53068486,TJ,CH4,10.0,kg/TJ,55.3068486,kg -30fd3534-107d-3718-ad5e-27d83a9c2525,SESCO,II.1.1,Misiones,AR-N,annual,2010,bioetanol combustion consumption by to the public,5.53068486,TJ,N2O,0.6,kg/TJ,3.318410916,kg -68a84f97-5400-3bcb-82e3-9a71f679e39a,SESCO,II.1.1,Neuquén,AR-Q,annual,2010,bioetanol combustion consumption by to the public,0.6476112,TJ,CH4,10.0,kg/TJ,6.4761120000000005,kg -1504f74c-109a-3e82-ad81-4c40a14022bd,SESCO,II.1.1,Neuquén,AR-Q,annual,2010,bioetanol combustion consumption by to the public,0.6476112,TJ,N2O,0.6,kg/TJ,0.38856672000000003,kg -638a9795-2364-3ae3-aed8-06a2e263f2f9,SESCO,II.1.1,Rio Negro,AR-R,annual,2010,bioetanol combustion consumption by to the public,0.25094933999999997,TJ,CH4,10.0,kg/TJ,2.5094933999999998,kg -72c7e114-4a3d-37fb-81d4-ebf6f7cb683b,SESCO,II.1.1,Rio Negro,AR-R,annual,2010,bioetanol combustion consumption by to the public,0.25094933999999997,TJ,N2O,0.6,kg/TJ,0.15056960399999997,kg -e24bb7dd-9450-3c40-8835-09f55f853b24,SESCO,II.1.1,Salta,AR-A,annual,2010,bioetanol combustion consumption by to the public,0.7306929000000001,TJ,CH4,10.0,kg/TJ,7.306929000000001,kg -71cfca0b-fd1b-3cae-a099-791272628e3d,SESCO,II.1.1,Salta,AR-A,annual,2010,bioetanol combustion consumption by to the public,0.7306929000000001,TJ,N2O,0.6,kg/TJ,0.43841574000000005,kg -cbbe9006-715a-332f-b731-4f6e1323255a,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2010,bioetanol combustion consumption by to the public,0.07370837999999999,TJ,CH4,10.0,kg/TJ,0.7370838,kg -7c4af526-e57e-3346-b36f-29b6438ab418,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2010,bioetanol combustion consumption by to the public,0.07370837999999999,TJ,N2O,0.6,kg/TJ,0.04422502799999999,kg -6005321f-cd18-3201-bef1-890647ead284,SESCO,II.1.1,Santa Fe,AR-S,annual,2010,bioetanol combustion consumption by to the public,1.46394216,TJ,CH4,10.0,kg/TJ,14.6394216,kg -f4a69604-405e-3177-ba75-7b5a10c25dfb,SESCO,II.1.1,Santa Fe,AR-S,annual,2010,bioetanol combustion consumption by to the public,1.46394216,TJ,N2O,0.6,kg/TJ,0.878365296,kg -37ae45bf-6216-3440-a475-d1f35a1a87de,SESCO,II.1.1,Tucuman,AR-T,annual,2010,bioetanol combustion consumption by to the public,0.39240126000000003,TJ,CH4,10.0,kg/TJ,3.9240126,kg -1935beed-542f-38d2-beab-8bd13c38e41e,SESCO,II.1.1,Tucuman,AR-T,annual,2010,bioetanol combustion consumption by to the public,0.39240126000000003,TJ,N2O,0.6,kg/TJ,0.235440756,kg -8af7491f-f9c1-3124-84f6-2216d6606639,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,bioetanol combustion consumption by to the public,388.6348896,TJ,CH4,10.0,kg/TJ,3886.348896,kg -d6eb5f51-309d-30cc-88c5-53022b15525b,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,bioetanol combustion consumption by to the public,388.6348896,TJ,N2O,0.6,kg/TJ,233.18093376,kg -33878be2-bf87-3028-9d64-9e786f37507e,SESCO,II.1.1,Capital Federal,AR-C,annual,2010,bioetanol combustion consumption by to the public,90.48151007999999,TJ,CH4,10.0,kg/TJ,904.8151008,kg -787887a1-8261-3bf2-a8a1-0f47dfe5e086,SESCO,II.1.1,Capital Federal,AR-C,annual,2010,bioetanol combustion consumption by to the public,90.48151007999999,TJ,N2O,0.6,kg/TJ,54.288906047999994,kg -4ed68f7a-7ba2-30a2-945d-e10403949ebb,SESCO,II.1.1,Catamarca,AR-K,annual,2010,bioetanol combustion consumption by to the public,6.8463581399999995,TJ,CH4,10.0,kg/TJ,68.4635814,kg -dedc9669-b13d-3f90-896f-fd8f1ba42666,SESCO,II.1.1,Catamarca,AR-K,annual,2010,bioetanol combustion consumption by to the public,6.8463581399999995,TJ,N2O,0.6,kg/TJ,4.107814884,kg -9e5373af-556b-3869-87f0-8b2140778598,SESCO,II.1.1,Chaco,AR-H,annual,2010,bioetanol combustion consumption by to the public,23.58753372,TJ,CH4,10.0,kg/TJ,235.8753372,kg -6ac87592-6dbf-3a98-a5fa-835d080e81d0,SESCO,II.1.1,Chaco,AR-H,annual,2010,bioetanol combustion consumption by to the public,23.58753372,TJ,N2O,0.6,kg/TJ,14.152520231999999,kg -b7738ca6-9db2-36f5-8aa8-3d569e428e0a,SESCO,II.1.1,Chubut,AR-U,annual,2010,bioetanol combustion consumption by to the public,39.84640938,TJ,CH4,10.0,kg/TJ,398.4640938,kg -7cfac9c8-bf34-3275-a17d-ece2fad9eb23,SESCO,II.1.1,Chubut,AR-U,annual,2010,bioetanol combustion consumption by to the public,39.84640938,TJ,N2O,0.6,kg/TJ,23.907845627999997,kg -e94d2c16-4fda-3a26-ad3f-86d89967b907,SESCO,II.1.1,Corrientes,AR-W,annual,2010,bioetanol combustion consumption by to the public,25.9939206,TJ,CH4,10.0,kg/TJ,259.939206,kg -be6bdf09-e2d5-3656-8939-75d610b10117,SESCO,II.1.1,Corrientes,AR-W,annual,2010,bioetanol combustion consumption by to the public,25.9939206,TJ,N2O,0.6,kg/TJ,15.59635236,kg -58e19f34-0229-318a-a4e9-1f68b7f860a9,SESCO,II.1.1,Córdoba,AR-X,annual,2010,bioetanol combustion consumption by to the public,101.7452583,TJ,CH4,10.0,kg/TJ,1017.452583,kg -2fc23993-bec2-32e2-adb4-2a8d8ae405a3,SESCO,II.1.1,Córdoba,AR-X,annual,2010,bioetanol combustion consumption by to the public,101.7452583,TJ,N2O,0.6,kg/TJ,61.04715498,kg -7d72677f-36bc-35c4-a1c4-8abb27e4357e,SESCO,II.1.1,Entre Rios,AR-E,annual,2010,bioetanol combustion consumption by to the public,29.02874598,TJ,CH4,10.0,kg/TJ,290.2874598,kg -f23b2ce0-0b7e-34e5-9257-c156b2ba5c56,SESCO,II.1.1,Entre Rios,AR-E,annual,2010,bioetanol combustion consumption by to the public,29.02874598,TJ,N2O,0.6,kg/TJ,17.417247588,kg -b401c245-8adc-3a41-ba64-938924e6bad3,SESCO,II.1.1,Formosa,AR-P,annual,2010,bioetanol combustion consumption by to the public,10.0443645,TJ,CH4,10.0,kg/TJ,100.443645,kg -3f68988c-3509-330f-989d-0f445476c0b2,SESCO,II.1.1,Formosa,AR-P,annual,2010,bioetanol combustion consumption by to the public,10.0443645,TJ,N2O,0.6,kg/TJ,6.0266187,kg -5e38d123-d785-3d03-bfa0-7b48e3d63947,SESCO,II.1.1,Jujuy,AR-Y,annual,2010,bioetanol combustion consumption by to the public,10.11849894,TJ,CH4,10.0,kg/TJ,101.1849894,kg -474e8abf-0b17-3a19-9086-c26b085ab52a,SESCO,II.1.1,Jujuy,AR-Y,annual,2010,bioetanol combustion consumption by to the public,10.11849894,TJ,N2O,0.6,kg/TJ,6.071099364,kg -d4c63937-8e22-38aa-9d1b-dc7ae3d53da4,SESCO,II.1.1,La Pampa,AR-L,annual,2010,bioetanol combustion consumption by to the public,16.03519416,TJ,CH4,10.0,kg/TJ,160.3519416,kg -8e3a1a1e-285e-3e79-93fd-67fe8fe636d2,SESCO,II.1.1,La Pampa,AR-L,annual,2010,bioetanol combustion consumption by to the public,16.03519416,TJ,N2O,0.6,kg/TJ,9.621116495999999,kg -1a9b6ae7-c52f-3b0d-a343-0054182986f9,SESCO,II.1.1,La Rioja,AR-F,annual,2010,bioetanol combustion consumption by to the public,9.68519592,TJ,CH4,10.0,kg/TJ,96.8519592,kg -e2257b01-dade-3615-938d-ac2904d24d87,SESCO,II.1.1,La Rioja,AR-F,annual,2010,bioetanol combustion consumption by to the public,9.68519592,TJ,N2O,0.6,kg/TJ,5.811117552,kg -0d65ec23-0013-3d5e-a51e-30b41691e226,SESCO,II.1.1,Mendoza,AR-M,annual,2010,bioetanol combustion consumption by to the public,49.26020508,TJ,CH4,10.0,kg/TJ,492.6020508,kg -8c4038ed-a3c5-3c76-ac6e-102abd477de6,SESCO,II.1.1,Mendoza,AR-M,annual,2010,bioetanol combustion consumption by to the public,49.26020508,TJ,N2O,0.6,kg/TJ,29.556123047999996,kg -dc14a7c9-56dc-33c4-9048-a86ac6a31dae,SESCO,II.1.1,Misiones,AR-N,annual,2010,bioetanol combustion consumption by to the public,30.6805806,TJ,CH4,10.0,kg/TJ,306.80580599999996,kg -c7cd9428-5fc6-373e-bc24-949a913aaf03,SESCO,II.1.1,Misiones,AR-N,annual,2010,bioetanol combustion consumption by to the public,30.6805806,TJ,N2O,0.6,kg/TJ,18.408348359999998,kg -faad3f92-f72e-3cdb-87d8-799ef2aef1d3,SESCO,II.1.1,Neuquén,AR-Q,annual,2010,bioetanol combustion consumption by to the public,30.84631794,TJ,CH4,10.0,kg/TJ,308.4631794,kg -6b33dd23-1439-3829-9513-7bf57b6afb1f,SESCO,II.1.1,Neuquén,AR-Q,annual,2010,bioetanol combustion consumption by to the public,30.84631794,TJ,N2O,0.6,kg/TJ,18.507790764,kg -c9ea0561-2943-393a-931b-93a59bb02b72,SESCO,II.1.1,Rio Negro,AR-R,annual,2010,bioetanol combustion consumption by to the public,30.415997339999997,TJ,CH4,10.0,kg/TJ,304.15997339999996,kg -c9fd160e-753a-3093-9a61-bd0a2024ae49,SESCO,II.1.1,Rio Negro,AR-R,annual,2010,bioetanol combustion consumption by to the public,30.415997339999997,TJ,N2O,0.6,kg/TJ,18.249598403999997,kg -e28f2e03-47ae-318e-8c34-64195f59cdc8,SESCO,II.1.1,Salta,AR-A,annual,2010,bioetanol combustion consumption by to the public,23.6292876,TJ,CH4,10.0,kg/TJ,236.292876,kg -f6e64963-5aee-3478-bae5-bcc9d9adfd3e,SESCO,II.1.1,Salta,AR-A,annual,2010,bioetanol combustion consumption by to the public,23.6292876,TJ,N2O,0.6,kg/TJ,14.17757256,kg -2c600ec7-1e6b-3a6a-aa80-01dd9197e929,SESCO,II.1.1,San Juan,AR-J,annual,2010,bioetanol combustion consumption by to the public,15.286180680000001,TJ,CH4,10.0,kg/TJ,152.8618068,kg -0d02afbf-7000-3f1c-a88c-fffcd26ab8d7,SESCO,II.1.1,San Juan,AR-J,annual,2010,bioetanol combustion consumption by to the public,15.286180680000001,TJ,N2O,0.6,kg/TJ,9.171708408,kg -3bebc00d-57b4-36a9-a7fa-86b38c536ae5,SESCO,II.1.1,San Luis,AR-D,annual,2010,bioetanol combustion consumption by to the public,12.91728708,TJ,CH4,10.0,kg/TJ,129.1728708,kg -14e3e666-749f-3f42-b054-a991be98a63f,SESCO,II.1.1,San Luis,AR-D,annual,2010,bioetanol combustion consumption by to the public,12.91728708,TJ,N2O,0.6,kg/TJ,7.750372248,kg -09a20611-aca0-3083-8123-7d9f7ccb1f18,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2010,bioetanol combustion consumption by to the public,27.172828619999997,TJ,CH4,10.0,kg/TJ,271.72828619999996,kg -29ae1dbe-422b-3764-9090-9d30f7232bed,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2010,bioetanol combustion consumption by to the public,27.172828619999997,TJ,N2O,0.6,kg/TJ,16.303697171999996,kg -4c85f0cc-aa7a-3e11-beb9-f3cdcb44a7b1,SESCO,II.1.1,Santa Fe,AR-S,annual,2010,bioetanol combustion consumption by to the public,71.50224132,TJ,CH4,10.0,kg/TJ,715.0224132,kg -f0e53455-5349-3c90-8c1b-83286661f9d3,SESCO,II.1.1,Santa Fe,AR-S,annual,2010,bioetanol combustion consumption by to the public,71.50224132,TJ,N2O,0.6,kg/TJ,42.901344791999996,kg -8a1783a9-8205-3ad7-8ac4-50537dc634ad,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2010,bioetanol combustion consumption by to the public,10.90244934,TJ,CH4,10.0,kg/TJ,109.02449340000001,kg -da8ae917-3d26-3f60-b7b3-032bf03b2f02,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2010,bioetanol combustion consumption by to the public,10.90244934,TJ,N2O,0.6,kg/TJ,6.541469604,kg -f03f6845-5f9b-350b-8a36-b69d44a3307f,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2010,bioetanol combustion consumption by to the public,19.58555214,TJ,CH4,10.0,kg/TJ,195.85552140000001,kg -e0c6f62f-4c42-3b7d-a462-3959876310e2,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2010,bioetanol combustion consumption by to the public,19.58555214,TJ,N2O,0.6,kg/TJ,11.751331284,kg -586b9032-5bd0-3345-a98a-5f36bfef61f1,SESCO,II.1.1,Tucuman,AR-T,annual,2010,bioetanol combustion consumption by to the public,21.2071365,TJ,CH4,10.0,kg/TJ,212.07136500000001,kg -fafdeebd-83a7-3bcb-a669-b2a35bb41638,SESCO,II.1.1,Tucuman,AR-T,annual,2010,bioetanol combustion consumption by to the public,21.2071365,TJ,N2O,0.6,kg/TJ,12.7242819,kg -702e7a26-3096-30fd-b326-01315dbe4684,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,bioetanol combustion consumption by to the public,132.68658761999998,TJ,CH4,10.0,kg/TJ,1326.8658761999998,kg -9c526ead-cfa7-3133-ad7a-9d239abc3d99,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,bioetanol combustion consumption by to the public,132.68658761999998,TJ,N2O,0.6,kg/TJ,79.61195257199999,kg -5fef312a-5e61-3739-8b6c-b7390bfc77db,SESCO,II.1.1,Capital Federal,AR-C,annual,2010,bioetanol combustion consumption by to the public,38.89970406,TJ,CH4,10.0,kg/TJ,388.9970406,kg -6e4c56fd-3583-34e2-87c3-2b4710e48957,SESCO,II.1.1,Capital Federal,AR-C,annual,2010,bioetanol combustion consumption by to the public,38.89970406,TJ,N2O,0.6,kg/TJ,23.339822436,kg -caf5821c-4543-37a5-a21d-ac1801c16bc6,SESCO,II.1.1,Catamarca,AR-K,annual,2010,bioetanol combustion consumption by to the public,1.5994292399999999,TJ,CH4,10.0,kg/TJ,15.994292399999999,kg -6a3981ce-37b3-3d5b-bf0c-c75e5f080c63,SESCO,II.1.1,Catamarca,AR-K,annual,2010,bioetanol combustion consumption by to the public,1.5994292399999999,TJ,N2O,0.6,kg/TJ,0.9596575439999999,kg -060ffbda-83d9-3378-be9e-e55faa7f7c7f,SESCO,II.1.1,Chaco,AR-H,annual,2010,bioetanol combustion consumption by to the public,5.32276758,TJ,CH4,10.0,kg/TJ,53.2276758,kg -9a262ce5-3928-32b7-b85f-adef9bb3f7f5,SESCO,II.1.1,Chaco,AR-H,annual,2010,bioetanol combustion consumption by to the public,5.32276758,TJ,N2O,0.6,kg/TJ,3.193660548,kg -ec3f5d8c-2b67-38b1-ba62-2b75f9d2e460,SESCO,II.1.1,Chubut,AR-U,annual,2010,bioetanol combustion consumption by to the public,9.1006416,TJ,CH4,10.0,kg/TJ,91.006416,kg -9b33a2ea-cc5e-39e2-9de2-4aca5a12c62d,SESCO,II.1.1,Chubut,AR-U,annual,2010,bioetanol combustion consumption by to the public,9.1006416,TJ,N2O,0.6,kg/TJ,5.46038496,kg -1f39f29e-e406-3386-a79d-734f2438bcef,SESCO,II.1.1,Corrientes,AR-W,annual,2010,bioetanol combustion consumption by to the public,4.0590736199999995,TJ,CH4,10.0,kg/TJ,40.590736199999995,kg -0147cf5a-e0bf-3773-af26-5335d55715e0,SESCO,II.1.1,Corrientes,AR-W,annual,2010,bioetanol combustion consumption by to the public,4.0590736199999995,TJ,N2O,0.6,kg/TJ,2.4354441719999995,kg -5b4cdc57-a757-3f32-aed9-510431381978,SESCO,II.1.1,Córdoba,AR-X,annual,2010,bioetanol combustion consumption by to the public,29.8646757,TJ,CH4,10.0,kg/TJ,298.646757,kg -3dcec0fd-7c00-3805-89f6-7b8e270866d3,SESCO,II.1.1,Córdoba,AR-X,annual,2010,bioetanol combustion consumption by to the public,29.8646757,TJ,N2O,0.6,kg/TJ,17.918805419999998,kg -2f720fdc-53c2-38d0-aa3c-564432a51f82,SESCO,II.1.1,Entre Rios,AR-E,annual,2010,bioetanol combustion consumption by to the public,9.21652992,TJ,CH4,10.0,kg/TJ,92.16529919999999,kg -fdc67dcc-3820-32c2-84b2-fb47f6d9651d,SESCO,II.1.1,Entre Rios,AR-E,annual,2010,bioetanol combustion consumption by to the public,9.21652992,TJ,N2O,0.6,kg/TJ,5.529917951999999,kg -68187684-9c86-3b40-ad7d-b46ceb719b44,SESCO,II.1.1,Formosa,AR-P,annual,2010,bioetanol combustion consumption by to the public,1.7873217000000001,TJ,CH4,10.0,kg/TJ,17.873217,kg -dcc9deeb-f9b9-3049-af98-a0a37ded24c0,SESCO,II.1.1,Formosa,AR-P,annual,2010,bioetanol combustion consumption by to the public,1.7873217000000001,TJ,N2O,0.6,kg/TJ,1.07239302,kg -e64fb58d-abd1-31b0-84f8-61a6f6b4d8a5,SESCO,II.1.1,Jujuy,AR-Y,annual,2010,bioetanol combustion consumption by to the public,1.8214065,TJ,CH4,10.0,kg/TJ,18.214064999999998,kg -8e5d0730-b5bf-348a-8608-f40a74aa031e,SESCO,II.1.1,Jujuy,AR-Y,annual,2010,bioetanol combustion consumption by to the public,1.8214065,TJ,N2O,0.6,kg/TJ,1.0928438999999999,kg -3eb5248e-d671-35f6-acf6-a4fdf18f546f,SESCO,II.1.1,La Pampa,AR-L,annual,2010,bioetanol combustion consumption by to the public,5.37432084,TJ,CH4,10.0,kg/TJ,53.7432084,kg -a03477e7-f13c-3a00-995b-31a96b8d842f,SESCO,II.1.1,La Pampa,AR-L,annual,2010,bioetanol combustion consumption by to the public,5.37432084,TJ,N2O,0.6,kg/TJ,3.224592504,kg -9972b516-1c42-3de4-a2cf-be7b01d84524,SESCO,II.1.1,La Rioja,AR-F,annual,2010,bioetanol combustion consumption by to the public,2.15415936,TJ,CH4,10.0,kg/TJ,21.5415936,kg -99679d7e-8ae3-37e1-a0bd-63c68cc79cd2,SESCO,II.1.1,La Rioja,AR-F,annual,2010,bioetanol combustion consumption by to the public,2.15415936,TJ,N2O,0.6,kg/TJ,1.2924956159999998,kg -4d8626ee-8289-37ce-95f4-f38479167546,SESCO,II.1.1,Mendoza,AR-M,annual,2010,bioetanol combustion consumption by to the public,13.604947919999999,TJ,CH4,10.0,kg/TJ,136.04947919999998,kg -9cdc203a-c2f9-3e3d-8705-a3d15cdbe16e,SESCO,II.1.1,Mendoza,AR-M,annual,2010,bioetanol combustion consumption by to the public,13.604947919999999,TJ,N2O,0.6,kg/TJ,8.162968752,kg -6f1f4ab9-4dc4-37b5-b05f-f16249c94e88,SESCO,II.1.1,Misiones,AR-N,annual,2010,bioetanol combustion consumption by to the public,5.31680274,TJ,CH4,10.0,kg/TJ,53.1680274,kg -5607b416-3b15-3d63-b754-a208bbce370e,SESCO,II.1.1,Misiones,AR-N,annual,2010,bioetanol combustion consumption by to the public,5.31680274,TJ,N2O,0.6,kg/TJ,3.1900816439999997,kg -a2fc4e84-973f-3cc0-9cbb-e6ee6615668b,SESCO,II.1.1,Neuquén,AR-Q,annual,2010,bioetanol combustion consumption by to the public,6.76199826,TJ,CH4,10.0,kg/TJ,67.6199826,kg -2a64058f-ac0e-37d2-a05c-bbd288e74018,SESCO,II.1.1,Neuquén,AR-Q,annual,2010,bioetanol combustion consumption by to the public,6.76199826,TJ,N2O,0.6,kg/TJ,4.057198956,kg -1f364e1a-62d9-3dd5-a5d3-c17a4e80fcea,SESCO,II.1.1,Rio Negro,AR-R,annual,2010,bioetanol combustion consumption by to the public,6.95926404,TJ,CH4,10.0,kg/TJ,69.5926404,kg -cf89d79f-b711-3ac8-b6c3-c2489506f3e2,SESCO,II.1.1,Rio Negro,AR-R,annual,2010,bioetanol combustion consumption by to the public,6.95926404,TJ,N2O,0.6,kg/TJ,4.175558424,kg -1b3936da-011e-3e15-9170-de2e82b88c14,SESCO,II.1.1,Salta,AR-A,annual,2010,bioetanol combustion consumption by to the public,5.1127199999999995,TJ,CH4,10.0,kg/TJ,51.127199999999995,kg -3d131eda-2e14-31d9-b307-558eb9e0514d,SESCO,II.1.1,Salta,AR-A,annual,2010,bioetanol combustion consumption by to the public,5.1127199999999995,TJ,N2O,0.6,kg/TJ,3.0676319999999997,kg -fe69b7ad-c7a0-31da-a8d6-32759fb614cc,SESCO,II.1.1,San Juan,AR-J,annual,2010,bioetanol combustion consumption by to the public,4.18220496,TJ,CH4,10.0,kg/TJ,41.8220496,kg -7362796c-4467-3d59-8251-fde3d7d2cda3,SESCO,II.1.1,San Juan,AR-J,annual,2010,bioetanol combustion consumption by to the public,4.18220496,TJ,N2O,0.6,kg/TJ,2.509322976,kg -0a88dc0f-ca66-366b-baf0-16e52b821b06,SESCO,II.1.1,San Luis,AR-D,annual,2010,bioetanol combustion consumption by to the public,4.2533569799999995,TJ,CH4,10.0,kg/TJ,42.533569799999995,kg -1e5a9b74-f525-390f-87d0-1ed196d8958e,SESCO,II.1.1,San Luis,AR-D,annual,2010,bioetanol combustion consumption by to the public,4.2533569799999995,TJ,N2O,0.6,kg/TJ,2.552014188,kg -09313ec0-2210-3cd1-8efd-24a67712e290,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2010,bioetanol combustion consumption by to the public,4.91332392,TJ,CH4,10.0,kg/TJ,49.1332392,kg -fcdcca6e-b343-3902-9f90-b3a76a61a70c,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2010,bioetanol combustion consumption by to the public,4.91332392,TJ,N2O,0.6,kg/TJ,2.947994352,kg -87802275-b588-3753-a913-1b1e195bd057,SESCO,II.1.1,Santa Fe,AR-S,annual,2010,bioetanol combustion consumption by to the public,25.81966206,TJ,CH4,10.0,kg/TJ,258.19662059999996,kg -e6d0cea5-ae7b-39b7-8736-855ba915e97d,SESCO,II.1.1,Santa Fe,AR-S,annual,2010,bioetanol combustion consumption by to the public,25.81966206,TJ,N2O,0.6,kg/TJ,15.491797235999998,kg -a660cd0f-5784-30ec-bd9b-21d808419d8f,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2010,bioetanol combustion consumption by to the public,3.83965272,TJ,CH4,10.0,kg/TJ,38.3965272,kg -144390bd-7f5f-3e42-88ac-6ba1caef874a,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2010,bioetanol combustion consumption by to the public,3.83965272,TJ,N2O,0.6,kg/TJ,2.303791632,kg -ee3a790b-f169-3b37-aced-ed97d90e112e,SESCO,II.1.1,Tucuman,AR-T,annual,2010,bioetanol combustion consumption by to the public,5.0424201,TJ,CH4,10.0,kg/TJ,50.424201000000004,kg -1fd40669-30c0-36b5-a62a-78009914a75e,SESCO,II.1.1,Tucuman,AR-T,annual,2010,bioetanol combustion consumption by to the public,5.0424201,TJ,N2O,0.6,kg/TJ,3.02545206,kg -14b971f6-131b-37be-b5d4-3f8a7fccd29e,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,bioetanol combustion consumption by freight transport,0.0034084799999999998,TJ,CH4,10.0,kg/TJ,0.0340848,kg -11a7e0fd-16ec-30c5-94ee-babdb965aa1a,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,bioetanol combustion consumption by freight transport,0.0034084799999999998,TJ,N2O,0.6,kg/TJ,0.0020450879999999996,kg -1f5cdf5d-e555-3ac0-ae02-9196af385b24,SESCO,II.1.1,Santa Fe,AR-S,annual,2010,bioetanol combustion consumption by freight transport,0.0008521199999999999,TJ,CH4,10.0,kg/TJ,0.0085212,kg -47c4abcf-dc07-392d-b250-cc3308107f9d,SESCO,II.1.1,Santa Fe,AR-S,annual,2010,bioetanol combustion consumption by freight transport,0.0008521199999999999,TJ,N2O,0.6,kg/TJ,0.0005112719999999999,kg -041999e1-48cf-3c4a-9500-99d29119f6db,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,bioetanol combustion consumption by freight transport,1.46522034,TJ,CH4,10.0,kg/TJ,14.6522034,kg -f3fb6ab5-d364-30bc-a598-757309a43f5c,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,bioetanol combustion consumption by freight transport,1.46522034,TJ,N2O,0.6,kg/TJ,0.8791322039999999,kg -3211fb59-d13c-3d95-8887-d89f1745eb16,SESCO,II.1.1,Capital Federal,AR-C,annual,2010,bioetanol combustion consumption by freight transport,0.25861842,TJ,CH4,10.0,kg/TJ,2.5861842,kg -f379fff9-14bb-36ac-8067-68cb61eaef3e,SESCO,II.1.1,Capital Federal,AR-C,annual,2010,bioetanol combustion consumption by freight transport,0.25861842,TJ,N2O,0.6,kg/TJ,0.155171052,kg -8949e57c-ddf0-33cf-81cd-f813d3c49e41,SESCO,II.1.1,Catamarca,AR-K,annual,2010,bioetanol combustion consumption by freight transport,0.0017042399999999999,TJ,CH4,10.0,kg/TJ,0.0170424,kg -94fd4943-c564-3130-93fa-b3ceefc8909e,SESCO,II.1.1,Catamarca,AR-K,annual,2010,bioetanol combustion consumption by freight transport,0.0017042399999999999,TJ,N2O,0.6,kg/TJ,0.0010225439999999998,kg -12a84214-72b7-329b-9d2d-73fb5aaf71a3,SESCO,II.1.1,Chaco,AR-H,annual,2010,bioetanol combustion consumption by freight transport,0.042606,TJ,CH4,10.0,kg/TJ,0.42606,kg -a86bdc6d-a7f7-3033-a9ed-285f9f3450a9,SESCO,II.1.1,Chaco,AR-H,annual,2010,bioetanol combustion consumption by freight transport,0.042606,TJ,N2O,0.6,kg/TJ,0.0255636,kg -2b818e3b-28a7-301e-a813-d83a348eb07c,SESCO,II.1.1,Chubut,AR-U,annual,2010,bioetanol combustion consumption by freight transport,0.05283144,TJ,CH4,10.0,kg/TJ,0.5283144,kg -865c0db2-524e-3b28-ad2d-ec4c75be2b2e,SESCO,II.1.1,Chubut,AR-U,annual,2010,bioetanol combustion consumption by freight transport,0.05283144,TJ,N2O,0.6,kg/TJ,0.031698864,kg -427cf55f-2d3d-3fbc-ac46-4cf70b6c3425,SESCO,II.1.1,Corrientes,AR-W,annual,2010,bioetanol combustion consumption by freight transport,0.05410962,TJ,CH4,10.0,kg/TJ,0.5410961999999999,kg -752e07b2-a69e-3f28-8d46-05f3d01474f3,SESCO,II.1.1,Corrientes,AR-W,annual,2010,bioetanol combustion consumption by freight transport,0.05410962,TJ,N2O,0.6,kg/TJ,0.032465772,kg -05ee04c4-010a-306d-9780-7476b62d324e,SESCO,II.1.1,Córdoba,AR-X,annual,2010,bioetanol combustion consumption by freight transport,0.1874664,TJ,CH4,10.0,kg/TJ,1.874664,kg -d974d87c-5dad-3d51-ba36-6ab81ed24456,SESCO,II.1.1,Córdoba,AR-X,annual,2010,bioetanol combustion consumption by freight transport,0.1874664,TJ,N2O,0.6,kg/TJ,0.11247984,kg -9c159f83-f341-371b-806b-e03d9576c6e5,SESCO,II.1.1,Entre Rios,AR-E,annual,2010,bioetanol combustion consumption by freight transport,0.07413444,TJ,CH4,10.0,kg/TJ,0.7413444,kg -906e299e-8615-391d-8783-b7558432547b,SESCO,II.1.1,Entre Rios,AR-E,annual,2010,bioetanol combustion consumption by freight transport,0.07413444,TJ,N2O,0.6,kg/TJ,0.044480663999999996,kg -138efeef-30e0-3405-99e9-001c2d9ea3fa,SESCO,II.1.1,Formosa,AR-P,annual,2010,bioetanol combustion consumption by freight transport,0.0034084799999999998,TJ,CH4,10.0,kg/TJ,0.0340848,kg -528db194-aea9-31b5-834e-2e4418982aca,SESCO,II.1.1,Formosa,AR-P,annual,2010,bioetanol combustion consumption by freight transport,0.0034084799999999998,TJ,N2O,0.6,kg/TJ,0.0020450879999999996,kg -0540e00b-13ac-3870-b104-adcf3ba7cd37,SESCO,II.1.1,Jujuy,AR-Y,annual,2010,bioetanol combustion consumption by freight transport,0.03536298,TJ,CH4,10.0,kg/TJ,0.3536298,kg -65242698-30a1-3450-9a9e-2b2449905bd9,SESCO,II.1.1,Jujuy,AR-Y,annual,2010,bioetanol combustion consumption by freight transport,0.03536298,TJ,N2O,0.6,kg/TJ,0.021217788,kg -ad9af43f-4bae-3ba8-b89c-9f2004a62aef,SESCO,II.1.1,La Pampa,AR-L,annual,2010,bioetanol combustion consumption by freight transport,0.02385936,TJ,CH4,10.0,kg/TJ,0.2385936,kg -3077fb3f-0661-346f-8e50-e505a8420a3d,SESCO,II.1.1,La Pampa,AR-L,annual,2010,bioetanol combustion consumption by freight transport,0.02385936,TJ,N2O,0.6,kg/TJ,0.014315616,kg -f17f807e-507a-30bd-9aab-763cbdcc922f,SESCO,II.1.1,La Rioja,AR-F,annual,2010,bioetanol combustion consumption by freight transport,0.014912100000000001,TJ,CH4,10.0,kg/TJ,0.149121,kg -69434b2d-87b5-3c77-b4cd-61134943afb2,SESCO,II.1.1,La Rioja,AR-F,annual,2010,bioetanol combustion consumption by freight transport,0.014912100000000001,TJ,N2O,0.6,kg/TJ,0.00894726,kg -752ee234-3553-3cd8-bd85-82e686575b03,SESCO,II.1.1,Mendoza,AR-M,annual,2010,bioetanol combustion consumption by freight transport,0.19470942,TJ,CH4,10.0,kg/TJ,1.9470942,kg -34bfc8be-2fc4-38f3-91d1-e2f5f5ca99bc,SESCO,II.1.1,Mendoza,AR-M,annual,2010,bioetanol combustion consumption by freight transport,0.19470942,TJ,N2O,0.6,kg/TJ,0.11682565199999999,kg -9a0bf6cb-8ef2-3120-ad5f-11a81f0c8abe,SESCO,II.1.1,Misiones,AR-N,annual,2010,bioetanol combustion consumption by freight transport,0.05155326,TJ,CH4,10.0,kg/TJ,0.5155326,kg -f1e18b95-c3f0-3bf7-8d8e-5a49af1f4f9a,SESCO,II.1.1,Misiones,AR-N,annual,2010,bioetanol combustion consumption by freight transport,0.05155326,TJ,N2O,0.6,kg/TJ,0.030931955999999997,kg -713f132f-c76b-3ca8-9405-d38892221b5b,SESCO,II.1.1,Neuquén,AR-Q,annual,2010,bioetanol combustion consumption by freight transport,0.060926579999999994,TJ,CH4,10.0,kg/TJ,0.6092658,kg -60f164b9-b705-3fc4-b2c7-d1add34e4529,SESCO,II.1.1,Neuquén,AR-Q,annual,2010,bioetanol combustion consumption by freight transport,0.060926579999999994,TJ,N2O,0.6,kg/TJ,0.036555948,kg -a556b93b-2c79-3437-95a6-9f413197f1ef,SESCO,II.1.1,Rio Negro,AR-R,annual,2010,bioetanol combustion consumption by freight transport,0.042606,TJ,CH4,10.0,kg/TJ,0.42606,kg -51e01563-1726-3cfa-a382-1c4e7e69e7ce,SESCO,II.1.1,Rio Negro,AR-R,annual,2010,bioetanol combustion consumption by freight transport,0.042606,TJ,N2O,0.6,kg/TJ,0.0255636,kg -be46db31-d9f2-3ab8-af6b-0a13921d7662,SESCO,II.1.1,Salta,AR-A,annual,2010,bioetanol combustion consumption by freight transport,0.037919339999999996,TJ,CH4,10.0,kg/TJ,0.37919339999999996,kg -7f505e24-ba49-349a-b9c5-eeb9cab1fb19,SESCO,II.1.1,Salta,AR-A,annual,2010,bioetanol combustion consumption by freight transport,0.037919339999999996,TJ,N2O,0.6,kg/TJ,0.022751603999999998,kg -f51b5941-fccd-3dac-805b-f7eaaa26482a,SESCO,II.1.1,San Juan,AR-J,annual,2010,bioetanol combustion consumption by freight transport,0.015338159999999998,TJ,CH4,10.0,kg/TJ,0.15338159999999998,kg -f1b2c376-ce7f-3898-bfaf-03891565e4ba,SESCO,II.1.1,San Juan,AR-J,annual,2010,bioetanol combustion consumption by freight transport,0.015338159999999998,TJ,N2O,0.6,kg/TJ,0.009202895999999999,kg -f3fc34cf-cfcf-3e38-af93-21554675cce2,SESCO,II.1.1,San Luis,AR-D,annual,2010,bioetanol combustion consumption by freight transport,0.03493692,TJ,CH4,10.0,kg/TJ,0.34936920000000005,kg -75d6f678-70c6-3f35-9443-a2ad5fa12b77,SESCO,II.1.1,San Luis,AR-D,annual,2010,bioetanol combustion consumption by freight transport,0.03493692,TJ,N2O,0.6,kg/TJ,0.020962152,kg -f7f15152-ba41-377f-89aa-6542d1aacc1c,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2010,bioetanol combustion consumption by freight transport,0.027267839999999998,TJ,CH4,10.0,kg/TJ,0.2726784,kg -d3f80c1a-2077-3175-9f76-f8df9fc10daf,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2010,bioetanol combustion consumption by freight transport,0.027267839999999998,TJ,N2O,0.6,kg/TJ,0.016360703999999997,kg -100bdcce-4a51-3019-b65c-c929b6370b3c,SESCO,II.1.1,Santa Fe,AR-S,annual,2010,bioetanol combustion consumption by freight transport,0.29142503999999997,TJ,CH4,10.0,kg/TJ,2.9142504,kg -923ce6b3-5004-3f93-ba45-1760ca9cae9c,SESCO,II.1.1,Santa Fe,AR-S,annual,2010,bioetanol combustion consumption by freight transport,0.29142503999999997,TJ,N2O,0.6,kg/TJ,0.17485502399999997,kg -9f3785c0-2af9-38f6-8a99-b7226cbdf0d5,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2010,bioetanol combustion consumption by freight transport,0.02002482,TJ,CH4,10.0,kg/TJ,0.2002482,kg -fbdf568f-205b-39ff-aa7c-e1ca09868ca0,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2010,bioetanol combustion consumption by freight transport,0.02002482,TJ,N2O,0.6,kg/TJ,0.012014892,kg -50759ff3-10af-331c-8d17-f4de8e8f6989,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2010,bioetanol combustion consumption by freight transport,0.008095139999999999,TJ,CH4,10.0,kg/TJ,0.08095139999999999,kg -ae4f6268-f7f4-336d-9887-a9b13261a695,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2010,bioetanol combustion consumption by freight transport,0.008095139999999999,TJ,N2O,0.6,kg/TJ,0.004857083999999999,kg -dd702769-aeae-3a66-9cf1-06dc3b299b54,SESCO,II.1.1,Tucuman,AR-T,annual,2010,bioetanol combustion consumption by freight transport,0.04516236,TJ,CH4,10.0,kg/TJ,0.4516236,kg -45e66dd9-8dc2-3e5a-aa8e-9128bde9144c,SESCO,II.1.1,Tucuman,AR-T,annual,2010,bioetanol combustion consumption by freight transport,0.04516236,TJ,N2O,0.6,kg/TJ,0.027097416,kg -24e0bebc-fafe-3b8d-8984-972b13cc3f6c,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,bioetanol combustion consumption by freight transport,1.8644385599999997,TJ,CH4,10.0,kg/TJ,18.644385599999996,kg -8ba7341b-84b0-36ce-88b9-308c0a4151d3,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,bioetanol combustion consumption by freight transport,1.8644385599999997,TJ,N2O,0.6,kg/TJ,1.118663136,kg -4afbc446-9f36-3f98-97f8-93966a52b1d1,SESCO,II.1.1,Capital Federal,AR-C,annual,2010,bioetanol combustion consumption by freight transport,0.51638472,TJ,CH4,10.0,kg/TJ,5.1638472,kg -202d45a9-6a6c-337f-88e8-7fb640de911e,SESCO,II.1.1,Capital Federal,AR-C,annual,2010,bioetanol combustion consumption by freight transport,0.51638472,TJ,N2O,0.6,kg/TJ,0.309830832,kg -603e397a-7c16-3a6d-99ea-4d89470047fa,SESCO,II.1.1,Chaco,AR-H,annual,2010,bioetanol combustion consumption by freight transport,0.04303206,TJ,CH4,10.0,kg/TJ,0.43032059999999994,kg -150b450b-8774-342b-be60-cc467890e8bf,SESCO,II.1.1,Chaco,AR-H,annual,2010,bioetanol combustion consumption by freight transport,0.04303206,TJ,N2O,0.6,kg/TJ,0.025819236,kg -fdceb69d-1f1e-351a-a69e-b93ca3bdd21d,SESCO,II.1.1,Chubut,AR-U,annual,2010,bioetanol combustion consumption by freight transport,0.03919752,TJ,CH4,10.0,kg/TJ,0.39197519999999997,kg -42877eb7-58fe-3e92-9832-344245b092a9,SESCO,II.1.1,Chubut,AR-U,annual,2010,bioetanol combustion consumption by freight transport,0.03919752,TJ,N2O,0.6,kg/TJ,0.023518512,kg -07f1c278-9c30-3e95-b273-5973769ad4ff,SESCO,II.1.1,Corrientes,AR-W,annual,2010,bioetanol combustion consumption by freight transport,0.032380559999999996,TJ,CH4,10.0,kg/TJ,0.32380559999999997,kg -e0603c59-7a11-3613-a37e-a0557100cac6,SESCO,II.1.1,Corrientes,AR-W,annual,2010,bioetanol combustion consumption by freight transport,0.032380559999999996,TJ,N2O,0.6,kg/TJ,0.019428335999999997,kg -12f9cb12-7abb-3fe1-933c-ba03f1c1399b,SESCO,II.1.1,Córdoba,AR-X,annual,2010,bioetanol combustion consumption by freight transport,0.16062462,TJ,CH4,10.0,kg/TJ,1.6062462,kg -4204270a-2f8d-3d9f-8810-f5d9a0dc4db1,SESCO,II.1.1,Córdoba,AR-X,annual,2010,bioetanol combustion consumption by freight transport,0.16062462,TJ,N2O,0.6,kg/TJ,0.096374772,kg -89736ea3-e065-3f34-b80c-0af0d83277b7,SESCO,II.1.1,Entre Rios,AR-E,annual,2010,bioetanol combustion consumption by freight transport,0.06774354,TJ,CH4,10.0,kg/TJ,0.6774354,kg -1da11f2c-84ca-346f-82e8-ded34797d615,SESCO,II.1.1,Entre Rios,AR-E,annual,2010,bioetanol combustion consumption by freight transport,0.06774354,TJ,N2O,0.6,kg/TJ,0.040646124,kg -2bd3772e-25b3-39aa-8d0c-17c1d4de9ecf,SESCO,II.1.1,Formosa,AR-P,annual,2010,bioetanol combustion consumption by freight transport,0.00468666,TJ,CH4,10.0,kg/TJ,0.046866599999999994,kg -b66c7681-cc3a-3cd1-9b37-a1427b70053f,SESCO,II.1.1,Formosa,AR-P,annual,2010,bioetanol combustion consumption by freight transport,0.00468666,TJ,N2O,0.6,kg/TJ,0.0028119959999999998,kg -f67fa5a5-b791-38cd-ae3f-bc842ee4f789,SESCO,II.1.1,Jujuy,AR-Y,annual,2010,bioetanol combustion consumption by freight transport,0.0025563599999999997,TJ,CH4,10.0,kg/TJ,0.0255636,kg -92c477bd-2f60-3b02-b175-6419656b7967,SESCO,II.1.1,Jujuy,AR-Y,annual,2010,bioetanol combustion consumption by freight transport,0.0025563599999999997,TJ,N2O,0.6,kg/TJ,0.0015338159999999997,kg -a495d592-566d-3041-8c20-4409884d7e12,SESCO,II.1.1,La Pampa,AR-L,annual,2010,bioetanol combustion consumption by freight transport,0.01874664,TJ,CH4,10.0,kg/TJ,0.18746639999999998,kg -dbeaff3d-9c24-3fd0-8295-a9c0c08abc75,SESCO,II.1.1,La Pampa,AR-L,annual,2010,bioetanol combustion consumption by freight transport,0.01874664,TJ,N2O,0.6,kg/TJ,0.011247983999999999,kg -29446e0e-9a67-30a9-88ad-7d78c6e3ec9f,SESCO,II.1.1,La Rioja,AR-F,annual,2010,bioetanol combustion consumption by freight transport,0.00468666,TJ,CH4,10.0,kg/TJ,0.046866599999999994,kg -7c30a136-9360-3498-9771-e3d01280826d,SESCO,II.1.1,La Rioja,AR-F,annual,2010,bioetanol combustion consumption by freight transport,0.00468666,TJ,N2O,0.6,kg/TJ,0.0028119959999999998,kg -b2363995-95e8-347b-a40f-6ef9823f9988,SESCO,II.1.1,Mendoza,AR-M,annual,2010,bioetanol combustion consumption by freight transport,0.13165253999999998,TJ,CH4,10.0,kg/TJ,1.3165253999999997,kg -a696b972-91d4-32d4-8b97-5c4fc2052db6,SESCO,II.1.1,Mendoza,AR-M,annual,2010,bioetanol combustion consumption by freight transport,0.13165253999999998,TJ,N2O,0.6,kg/TJ,0.078991524,kg -4ea48154-7c94-3b5c-878c-219d03b81531,SESCO,II.1.1,Misiones,AR-N,annual,2010,bioetanol combustion consumption by freight transport,0.024711479999999997,TJ,CH4,10.0,kg/TJ,0.24711479999999997,kg -40159fb2-cb2d-3ea1-8570-abad6883a456,SESCO,II.1.1,Misiones,AR-N,annual,2010,bioetanol combustion consumption by freight transport,0.024711479999999997,TJ,N2O,0.6,kg/TJ,0.014826887999999998,kg -47d543c9-14fd-3ceb-885e-23dd2b3c5254,SESCO,II.1.1,Neuquén,AR-Q,annual,2010,bioetanol combustion consumption by freight transport,0.043458119999999996,TJ,CH4,10.0,kg/TJ,0.43458119999999995,kg -a155d215-e657-384d-bf8a-eea14f371314,SESCO,II.1.1,Neuquén,AR-Q,annual,2010,bioetanol combustion consumption by freight transport,0.043458119999999996,TJ,N2O,0.6,kg/TJ,0.026074871999999995,kg -299739ec-3b6f-3da3-bb49-dff5ae2a505b,SESCO,II.1.1,Rio Negro,AR-R,annual,2010,bioetanol combustion consumption by freight transport,0.029824200000000002,TJ,CH4,10.0,kg/TJ,0.298242,kg -1a278f68-b281-3ec3-9c66-d57a0a70418c,SESCO,II.1.1,Rio Negro,AR-R,annual,2010,bioetanol combustion consumption by freight transport,0.029824200000000002,TJ,N2O,0.6,kg/TJ,0.01789452,kg -5032d7f2-a9c8-3a8c-b651-8f3e36015709,SESCO,II.1.1,Salta,AR-A,annual,2010,bioetanol combustion consumption by freight transport,0.024711479999999997,TJ,CH4,10.0,kg/TJ,0.24711479999999997,kg -5a7da5a7-1add-3f08-b832-9f4a45a2e33b,SESCO,II.1.1,Salta,AR-A,annual,2010,bioetanol combustion consumption by freight transport,0.024711479999999997,TJ,N2O,0.6,kg/TJ,0.014826887999999998,kg -40ec8987-e25e-34be-8c5d-258c6102fd7d,SESCO,II.1.1,San Juan,AR-J,annual,2010,bioetanol combustion consumption by freight transport,0.014912100000000001,TJ,CH4,10.0,kg/TJ,0.149121,kg -30f522d4-53a4-3cc3-af65-bf599b295dec,SESCO,II.1.1,San Juan,AR-J,annual,2010,bioetanol combustion consumption by freight transport,0.014912100000000001,TJ,N2O,0.6,kg/TJ,0.00894726,kg -1653dca9-d3a7-32d2-8c17-386b78726f19,SESCO,II.1.1,San Luis,AR-D,annual,2010,bioetanol combustion consumption by freight transport,0.01832058,TJ,CH4,10.0,kg/TJ,0.1832058,kg -26c5c5f6-e73e-3b55-b4a4-ceaff681fd82,SESCO,II.1.1,San Luis,AR-D,annual,2010,bioetanol combustion consumption by freight transport,0.01832058,TJ,N2O,0.6,kg/TJ,0.010992347999999999,kg -d9b1b0ce-6095-3fad-9907-81293827cfb6,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2010,bioetanol combustion consumption by freight transport,0.008947259999999999,TJ,CH4,10.0,kg/TJ,0.08947259999999999,kg -3d98e574-8516-3cdf-b619-8e78a09b23b2,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2010,bioetanol combustion consumption by freight transport,0.008947259999999999,TJ,N2O,0.6,kg/TJ,0.005368355999999999,kg -1461f2b0-09a5-36e0-afdb-c042c81f88f1,SESCO,II.1.1,Santa Fe,AR-S,annual,2010,bioetanol combustion consumption by freight transport,0.24754086,TJ,CH4,10.0,kg/TJ,2.4754086,kg -e4309485-6f21-3100-abc6-b1477b4cbb00,SESCO,II.1.1,Santa Fe,AR-S,annual,2010,bioetanol combustion consumption by freight transport,0.24754086,TJ,N2O,0.6,kg/TJ,0.148524516,kg -0350a567-52de-3764-a961-598eab197fd1,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2010,bioetanol combustion consumption by freight transport,0.0085212,TJ,CH4,10.0,kg/TJ,0.085212,kg -5c4581ed-7260-348a-a14f-7392afc1a60b,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2010,bioetanol combustion consumption by freight transport,0.0085212,TJ,N2O,0.6,kg/TJ,0.005112719999999999,kg -761a4f01-7edb-3a90-901e-84dc78738511,SESCO,II.1.1,Tucuman,AR-T,annual,2010,bioetanol combustion consumption by freight transport,0.03365874,TJ,CH4,10.0,kg/TJ,0.3365874,kg -47bcebe4-90dd-3d2e-ac4f-8961f3dc0ad4,SESCO,II.1.1,Tucuman,AR-T,annual,2010,bioetanol combustion consumption by freight transport,0.03365874,TJ,N2O,0.6,kg/TJ,0.020195243999999998,kg -ff46c5b1-d16f-3d5b-8fba-d0f381d72816,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,bioetanol combustion consumption by public passenger transport,0.015742917000000002,TJ,CH4,10.0,kg/TJ,0.15742917,kg -7417e108-3a27-3410-9d7e-d7abda4d168a,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,bioetanol combustion consumption by public passenger transport,0.015742917000000002,TJ,N2O,0.6,kg/TJ,0.0094457502,kg -095a281f-9fea-34c7-828d-ced36c72664f,SESCO,II.1.1,Capital Federal,AR-C,annual,2010,bioetanol combustion consumption by public passenger transport,0.0025052328,TJ,CH4,10.0,kg/TJ,0.025052328,kg -9f8b826a-bdca-38ba-8e36-1bda5edc2bb3,SESCO,II.1.1,Capital Federal,AR-C,annual,2010,bioetanol combustion consumption by public passenger transport,0.0025052328,TJ,N2O,0.6,kg/TJ,0.0015031396799999998,kg -d01a4501-e545-322c-9259-4ca0c37da788,SESCO,II.1.1,Chubut,AR-U,annual,2010,bioetanol combustion consumption by public passenger transport,0.000937332,TJ,CH4,10.0,kg/TJ,0.009373320000000001,kg -d5e1343b-b599-34c5-84a1-bfecb3f7c8c9,SESCO,II.1.1,Chubut,AR-U,annual,2010,bioetanol combustion consumption by public passenger transport,0.000937332,TJ,N2O,0.6,kg/TJ,0.0005623992,kg -12b0e5e0-9e0d-3de0-93db-bb7bcf1cb4e7,SESCO,II.1.1,Córdoba,AR-X,annual,2010,bioetanol combustion consumption by public passenger transport,0.000447363,TJ,CH4,10.0,kg/TJ,0.00447363,kg -1e80cd27-0c61-3055-b10c-8c83a4c0df80,SESCO,II.1.1,Córdoba,AR-X,annual,2010,bioetanol combustion consumption by public passenger transport,0.000447363,TJ,N2O,0.6,kg/TJ,0.00026841779999999996,kg -8817f776-6944-3215-b664-1dd714ab2803,SESCO,II.1.1,Entre Rios,AR-E,annual,2010,bioetanol combustion consumption by public passenger transport,0.00042605999999999997,TJ,CH4,10.0,kg/TJ,0.0042606,kg -d169f72a-eb85-316f-81d9-ffdf6ddc7c7c,SESCO,II.1.1,Entre Rios,AR-E,annual,2010,bioetanol combustion consumption by public passenger transport,0.00042605999999999997,TJ,N2O,0.6,kg/TJ,0.00025563599999999995,kg -a26966f4-f54b-30b7-a5e7-82aec14d47d8,SESCO,II.1.1,La Pampa,AR-L,annual,2010,bioetanol combustion consumption by public passenger transport,0.00026415719999999996,TJ,CH4,10.0,kg/TJ,0.0026415719999999996,kg -b63a0e6b-57c6-365a-b66f-661eddbfdf9b,SESCO,II.1.1,La Pampa,AR-L,annual,2010,bioetanol combustion consumption by public passenger transport,0.00026415719999999996,TJ,N2O,0.6,kg/TJ,0.00015849431999999996,kg -9b29bcf9-284e-3acb-8f06-9a926d0c1f10,SESCO,II.1.1,Mendoza,AR-M,annual,2010,bioetanol combustion consumption by public passenger transport,0.0067360086,TJ,CH4,10.0,kg/TJ,0.067360086,kg -bd987dc4-64c7-3391-863c-37f4519a4561,SESCO,II.1.1,Mendoza,AR-M,annual,2010,bioetanol combustion consumption by public passenger transport,0.0067360086,TJ,N2O,0.6,kg/TJ,0.0040416051599999996,kg -b2ebbbc0-adc2-3f5d-8730-ecdb01048019,SESCO,II.1.1,Misiones,AR-N,annual,2010,bioetanol combustion consumption by public passenger transport,0.0015338160000000001,TJ,CH4,10.0,kg/TJ,0.015338160000000002,kg -f794e7f6-e4ff-3ec4-b074-b3599e023359,SESCO,II.1.1,Misiones,AR-N,annual,2010,bioetanol combustion consumption by public passenger transport,0.0015338160000000001,TJ,N2O,0.6,kg/TJ,0.0009202896,kg -102cc09b-2227-3463-be90-0f41844dbc5c,SESCO,II.1.1,Neuquén,AR-Q,annual,2010,bioetanol combustion consumption by public passenger transport,0.0039964428,TJ,CH4,10.0,kg/TJ,0.039964427999999996,kg -dbab66d3-5188-35e6-a1bb-d8a6f21fbff5,SESCO,II.1.1,Neuquén,AR-Q,annual,2010,bioetanol combustion consumption by public passenger transport,0.0039964428,TJ,N2O,0.6,kg/TJ,0.0023978656799999998,kg -6fa5a2c8-b4ff-3a8a-b5d7-978cc1c711b6,SESCO,II.1.1,Rio Negro,AR-R,annual,2010,bioetanol combustion consumption by public passenger transport,0.0064931544,TJ,CH4,10.0,kg/TJ,0.06493154400000001,kg -8a1ff9a5-a15b-3705-aae0-595e20a4efb3,SESCO,II.1.1,Rio Negro,AR-R,annual,2010,bioetanol combustion consumption by public passenger transport,0.0064931544,TJ,N2O,0.6,kg/TJ,0.00389589264,kg -eaaf487d-d1d6-3e9f-bf85-bc5818ad3506,SESCO,II.1.1,San Juan,AR-J,annual,2010,bioetanol combustion consumption by public passenger transport,1.70424e-05,TJ,CH4,10.0,kg/TJ,0.00017042400000000002,kg -ba620b5b-2ed3-3170-926c-2edcf699defe,SESCO,II.1.1,San Juan,AR-J,annual,2010,bioetanol combustion consumption by public passenger transport,1.70424e-05,TJ,N2O,0.6,kg/TJ,1.022544e-05,kg -a1a6b77d-3d93-3dfd-8823-7cc4930e1043,SESCO,II.1.1,San Luis,AR-D,annual,2010,bioetanol combustion consumption by public passenger transport,6.81696e-05,TJ,CH4,10.0,kg/TJ,0.0006816960000000001,kg -4e484625-112e-31da-b762-50adf0d7f86c,SESCO,II.1.1,San Luis,AR-D,annual,2010,bioetanol combustion consumption by public passenger transport,6.81696e-05,TJ,N2O,0.6,kg/TJ,4.090176e-05,kg -5ba9ee27-f5d9-3bcf-b396-4c14308a0d68,SESCO,II.1.1,Santa Fe,AR-S,annual,2010,bioetanol combustion consumption by public passenger transport,0.0040092246,TJ,CH4,10.0,kg/TJ,0.040092246,kg -7ff9e083-a357-3da3-951a-35f4598c6779,SESCO,II.1.1,Santa Fe,AR-S,annual,2010,bioetanol combustion consumption by public passenger transport,0.0040092246,TJ,N2O,0.6,kg/TJ,0.00240553476,kg -1f7dc019-dbc3-3dd8-b887-c0a4d189a9ee,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,bioetanol combustion consumption by public passenger transport,0.0443017188,TJ,CH4,10.0,kg/TJ,0.443017188,kg -fb9e1707-4ad0-3274-8f8e-470b391d0ed1,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,bioetanol combustion consumption by public passenger transport,0.0443017188,TJ,N2O,0.6,kg/TJ,0.02658103128,kg -de225684-ab44-35fd-ab4a-0da6d29a9df0,SESCO,II.1.1,Capital Federal,AR-C,annual,2010,bioetanol combustion consumption by public passenger transport,0.005197932,TJ,CH4,10.0,kg/TJ,0.051979319999999996,kg -6e5d5393-f61d-34aa-b458-ff2a3e2ac76c,SESCO,II.1.1,Capital Federal,AR-C,annual,2010,bioetanol combustion consumption by public passenger transport,0.005197932,TJ,N2O,0.6,kg/TJ,0.0031187591999999997,kg -30ec0d8a-15f5-39c0-874d-7d907926c97c,SESCO,II.1.1,Chaco,AR-H,annual,2010,bioetanol combustion consumption by public passenger transport,0.0005879628,TJ,CH4,10.0,kg/TJ,0.005879628,kg -eca55530-8be4-344f-bdc4-88ecf3b90a19,SESCO,II.1.1,Chaco,AR-H,annual,2010,bioetanol combustion consumption by public passenger transport,0.0005879628,TJ,N2O,0.6,kg/TJ,0.00035277767999999997,kg -2e0275a9-8b4e-3136-ae4d-c413e248979b,SESCO,II.1.1,Chubut,AR-U,annual,2010,bioetanol combustion consumption by public passenger transport,7.66908e-05,TJ,CH4,10.0,kg/TJ,0.000766908,kg -0561af30-fd96-368e-ab00-fc311d85f8a5,SESCO,II.1.1,Chubut,AR-U,annual,2010,bioetanol combustion consumption by public passenger transport,7.66908e-05,TJ,N2O,0.6,kg/TJ,4.6014479999999997e-05,kg -be67b46e-3e4e-3d6c-b3c0-d0e56602aa6d,SESCO,II.1.1,Córdoba,AR-X,annual,2010,bioetanol combustion consumption by public passenger transport,0.0031059774,TJ,CH4,10.0,kg/TJ,0.031059774,kg -6e317831-8653-3960-a5c2-5077ae79f2a0,SESCO,II.1.1,Córdoba,AR-X,annual,2010,bioetanol combustion consumption by public passenger transport,0.0031059774,TJ,N2O,0.6,kg/TJ,0.00186358644,kg -48aabc53-641b-34f9-a34e-0e6fb0f6d118,SESCO,II.1.1,Entre Rios,AR-E,annual,2010,bioetanol combustion consumption by public passenger transport,0.0030591108,TJ,CH4,10.0,kg/TJ,0.030591108000000002,kg -7ccac705-2ad3-3671-a616-03ceda8d6b57,SESCO,II.1.1,Entre Rios,AR-E,annual,2010,bioetanol combustion consumption by public passenger transport,0.0030591108,TJ,N2O,0.6,kg/TJ,0.00183546648,kg -06c18e40-c923-3458-91f3-a55f8f83318a,SESCO,II.1.1,Formosa,AR-P,annual,2010,bioetanol combustion consumption by public passenger transport,1.2781799999999998e-05,TJ,CH4,10.0,kg/TJ,0.00012781799999999997,kg -8394d588-d146-36f3-8556-8067d928dbc5,SESCO,II.1.1,Formosa,AR-P,annual,2010,bioetanol combustion consumption by public passenger transport,1.2781799999999998e-05,TJ,N2O,0.6,kg/TJ,7.66908e-06,kg -cbfd4515-4e29-34a1-b036-e0d56754e22c,SESCO,II.1.1,Jujuy,AR-Y,annual,2010,bioetanol combustion consumption by public passenger transport,1.70424e-05,TJ,CH4,10.0,kg/TJ,0.00017042400000000002,kg -6649893d-7f25-3bcb-b320-aacd45c5c53e,SESCO,II.1.1,Jujuy,AR-Y,annual,2010,bioetanol combustion consumption by public passenger transport,1.70424e-05,TJ,N2O,0.6,kg/TJ,1.022544e-05,kg -542cb9d3-b8f6-3cfb-a45c-3a361a2bf2bd,SESCO,II.1.1,La Pampa,AR-L,annual,2010,bioetanol combustion consumption by public passenger transport,2.1303e-05,TJ,CH4,10.0,kg/TJ,0.00021302999999999998,kg -b076a1f8-f6fe-3038-a6bf-432c8305a269,SESCO,II.1.1,La Pampa,AR-L,annual,2010,bioetanol combustion consumption by public passenger transport,2.1303e-05,TJ,N2O,0.6,kg/TJ,1.2781799999999998e-05,kg -862b2faa-c23a-3394-b182-6585e5694f82,SESCO,II.1.1,La Rioja,AR-F,annual,2010,bioetanol combustion consumption by public passenger transport,1.2781799999999998e-05,TJ,CH4,10.0,kg/TJ,0.00012781799999999997,kg -ed753b09-bcae-333b-9631-cee60ad43aa0,SESCO,II.1.1,La Rioja,AR-F,annual,2010,bioetanol combustion consumption by public passenger transport,1.2781799999999998e-05,TJ,N2O,0.6,kg/TJ,7.66908e-06,kg -705555a0-0f88-34c9-959b-bdcd0ed6bc1a,SESCO,II.1.1,Mendoza,AR-M,annual,2010,bioetanol combustion consumption by public passenger transport,0.006723226799999999,TJ,CH4,10.0,kg/TJ,0.06723226799999998,kg -38c57473-9ff0-3b37-b311-41202373b066,SESCO,II.1.1,Mendoza,AR-M,annual,2010,bioetanol combustion consumption by public passenger transport,0.006723226799999999,TJ,N2O,0.6,kg/TJ,0.004033936079999999,kg -b3805b06-8433-3bd4-80cb-22aa3f135cc2,SESCO,II.1.1,Misiones,AR-N,annual,2010,bioetanol combustion consumption by public passenger transport,0.0002513754,TJ,CH4,10.0,kg/TJ,0.002513754,kg -dd8a3103-4ae4-3731-9807-e1d496299fbf,SESCO,II.1.1,Misiones,AR-N,annual,2010,bioetanol combustion consumption by public passenger transport,0.0002513754,TJ,N2O,0.6,kg/TJ,0.00015082523999999998,kg -8fc69ff7-66bd-3cee-813b-3d72a7ebad5d,SESCO,II.1.1,Neuquén,AR-Q,annual,2010,bioetanol combustion consumption by public passenger transport,0.000276939,TJ,CH4,10.0,kg/TJ,0.00276939,kg -a0dedcea-3ded-372d-a2c5-7d5966e7f7bf,SESCO,II.1.1,Neuquén,AR-Q,annual,2010,bioetanol combustion consumption by public passenger transport,0.000276939,TJ,N2O,0.6,kg/TJ,0.00016616340000000002,kg -120affa9-5b4e-3fef-9cf0-45c62213322c,SESCO,II.1.1,Rio Negro,AR-R,annual,2010,bioetanol combustion consumption by public passenger transport,0.0021516029999999998,TJ,CH4,10.0,kg/TJ,0.02151603,kg -988a9111-8cb1-3b1f-8d88-a3f2106ad953,SESCO,II.1.1,Rio Negro,AR-R,annual,2010,bioetanol combustion consumption by public passenger transport,0.0021516029999999998,TJ,N2O,0.6,kg/TJ,0.0012909617999999998,kg -ee11d190-ad76-3693-8d3d-425b79523bf0,SESCO,II.1.1,Salta,AR-A,annual,2010,bioetanol combustion consumption by public passenger transport,2.1303e-05,TJ,CH4,10.0,kg/TJ,0.00021302999999999998,kg -7a3e5775-3a0f-30f0-bd7a-cc593dfbeb0f,SESCO,II.1.1,Salta,AR-A,annual,2010,bioetanol combustion consumption by public passenger transport,2.1303e-05,TJ,N2O,0.6,kg/TJ,1.2781799999999998e-05,kg -eaaf487d-d1d6-3e9f-bf85-bc5818ad3506,SESCO,II.1.1,San Juan,AR-J,annual,2010,bioetanol combustion consumption by public passenger transport,1.70424e-05,TJ,CH4,10.0,kg/TJ,0.00017042400000000002,kg -ba620b5b-2ed3-3170-926c-2edcf699defe,SESCO,II.1.1,San Juan,AR-J,annual,2010,bioetanol combustion consumption by public passenger transport,1.70424e-05,TJ,N2O,0.6,kg/TJ,1.022544e-05,kg -24dfc520-b129-339b-999f-fc1ad68199a0,SESCO,II.1.1,San Luis,AR-D,annual,2010,bioetanol combustion consumption by public passenger transport,0.0005410962,TJ,CH4,10.0,kg/TJ,0.005410962,kg -d25a2832-cf83-3970-8887-74fc076113ca,SESCO,II.1.1,San Luis,AR-D,annual,2010,bioetanol combustion consumption by public passenger transport,0.0005410962,TJ,N2O,0.6,kg/TJ,0.00032465772,kg -71daa44c-66a5-310b-b898-a66b0c4b0ad5,SESCO,II.1.1,Santa Fe,AR-S,annual,2010,bioetanol combustion consumption by public passenger transport,0.0096161742,TJ,CH4,10.0,kg/TJ,0.09616174200000001,kg -f33dd662-0033-3223-ad7b-773c8409b3fd,SESCO,II.1.1,Santa Fe,AR-S,annual,2010,bioetanol combustion consumption by public passenger transport,0.0096161742,TJ,N2O,0.6,kg/TJ,0.00576970452,kg -5d7ec678-0dee-3f1f-a27f-13e87ad38754,SESCO,II.1.1,Tucuman,AR-T,annual,2010,bioetanol combustion consumption by public passenger transport,1.2781799999999998e-05,TJ,CH4,10.0,kg/TJ,0.00012781799999999997,kg -80a9e65d-2920-361f-90b8-f4256e671a3b,SESCO,II.1.1,Tucuman,AR-T,annual,2010,bioetanol combustion consumption by public passenger transport,1.2781799999999998e-05,TJ,N2O,0.6,kg/TJ,7.66908e-06,kg -9d8152b6-0e09-3dcd-8b61-fe3c194bbc18,SESCO,II.1.1,Capital Federal,AR-C,annual,2011,bioetanol combustion consumption by to the public,0.52447986,TJ,CH4,10.0,kg/TJ,5.2447986,kg -868629a3-8096-3a13-bc81-1148f6572638,SESCO,II.1.1,Capital Federal,AR-C,annual,2011,bioetanol combustion consumption by to the public,0.52447986,TJ,N2O,0.6,kg/TJ,0.314687916,kg -66670ee2-daad-3c65-970f-fb317c227e1c,SESCO,II.1.1,Capital Federal,AR-C,annual,2011,bioetanol combustion consumption by to the public,0.06646536,TJ,CH4,10.0,kg/TJ,0.6646536000000001,kg -3a6097f0-c959-3b27-a0e5-77ffc7995d03,SESCO,II.1.1,Capital Federal,AR-C,annual,2011,bioetanol combustion consumption by to the public,0.06646536,TJ,N2O,0.6,kg/TJ,0.039879216,kg -0a554443-7f2c-3a0e-8426-33d9cccc3daa,SESCO,II.5.1,Córdoba,AR-X,annual,2011,bioetanol combustion consumption by agriculture machines,0.1266335532,TJ,CH4,10.0,kg/TJ,1.266335532,kg -b7843353-f759-3a5d-9dc6-7cd99617f611,SESCO,II.5.1,Córdoba,AR-X,annual,2011,bioetanol combustion consumption by agriculture machines,0.1266335532,TJ,N2O,0.6,kg/TJ,0.07598013192,kg -e9904209-f873-3777-a33d-783527d0e4ce,SESCO,II.5.1,Santa Fe,AR-S,annual,2011,bioetanol combustion consumption by agriculture machines,0.265094532,TJ,CH4,10.0,kg/TJ,2.65094532,kg -9185a50a-4d33-3c16-a37f-a6097b7a3e30,SESCO,II.5.1,Santa Fe,AR-S,annual,2011,bioetanol combustion consumption by agriculture machines,0.265094532,TJ,N2O,0.6,kg/TJ,0.1590567192,kg -f4f7c107-6d2a-3c7f-9410-0eb640bd7cde,SESCO,II.5.1,Córdoba,AR-X,annual,2011,bioetanol combustion consumption by agriculture machines,0.0678330126,TJ,CH4,10.0,kg/TJ,0.6783301260000001,kg -1f882de1-41b7-3eaa-b4c2-e6fd074fcd25,SESCO,II.5.1,Córdoba,AR-X,annual,2011,bioetanol combustion consumption by agriculture machines,0.0678330126,TJ,N2O,0.6,kg/TJ,0.04069980756,kg -cb129b1e-6706-35c9-ae37-1c6422b881ff,SESCO,II.5.1,Santa Fe,AR-S,annual,2011,bioetanol combustion consumption by agriculture machines,0.0127818,TJ,CH4,10.0,kg/TJ,0.127818,kg -b7f2515f-6d69-379d-859d-6df360006df4,SESCO,II.5.1,Santa Fe,AR-S,annual,2011,bioetanol combustion consumption by agriculture machines,0.0127818,TJ,N2O,0.6,kg/TJ,0.007669079999999999,kg -10583fc3-4919-38dd-91fe-fb5ce58035d9,SESCO,II.1.1,Buenos Aires,AR-B,annual,2011,bioetanol combustion consumption by to the public,4.06122863148,TJ,CH4,10.0,kg/TJ,40.612286314799995,kg -817297af-be7b-312e-a0fc-36e5d7670b27,SESCO,II.1.1,Buenos Aires,AR-B,annual,2011,bioetanol combustion consumption by to the public,4.06122863148,TJ,N2O,0.6,kg/TJ,2.436737178888,kg -b3b1031d-bc78-369a-b187-cfadbe1dd8cd,SESCO,II.1.1,Capital Federal,AR-C,annual,2011,bioetanol combustion consumption by to the public,0.19997978219999998,TJ,CH4,10.0,kg/TJ,1.999797822,kg -0677c96f-6837-338e-87b7-21dd4b681d44,SESCO,II.1.1,Capital Federal,AR-C,annual,2011,bioetanol combustion consumption by to the public,0.19997978219999998,TJ,N2O,0.6,kg/TJ,0.11998786931999998,kg -784d4671-e106-3b65-9e12-60ab0a61adff,SESCO,II.1.1,Catamarca,AR-K,annual,2011,bioetanol combustion consumption by to the public,0.0085169394,TJ,CH4,10.0,kg/TJ,0.085169394,kg -ce057268-70b7-3987-8e89-eadb65ccc985,SESCO,II.1.1,Catamarca,AR-K,annual,2011,bioetanol combustion consumption by to the public,0.0085169394,TJ,N2O,0.6,kg/TJ,0.005110163639999999,kg -597a25fc-3883-3d3a-9f52-c9a0911d024b,SESCO,II.1.1,Chaco,AR-H,annual,2011,bioetanol combustion consumption by to the public,0.015619359599999999,TJ,CH4,10.0,kg/TJ,0.156193596,kg -3fa503e3-f173-350d-8f8e-dec82596c4f9,SESCO,II.1.1,Chaco,AR-H,annual,2011,bioetanol combustion consumption by to the public,0.015619359599999999,TJ,N2O,0.6,kg/TJ,0.009371615759999999,kg -79bd330b-2b5d-323c-99a6-2c6dfaf22d02,SESCO,II.1.1,Corrientes,AR-W,annual,2011,bioetanol combustion consumption by to the public,1.465092522,TJ,CH4,10.0,kg/TJ,14.65092522,kg -e5a68747-7c2f-3d68-af7c-4e06cd7f540d,SESCO,II.1.1,Corrientes,AR-W,annual,2011,bioetanol combustion consumption by to the public,1.465092522,TJ,N2O,0.6,kg/TJ,0.8790555132,kg -fc1b4d62-333f-35ca-a655-e0fb4cd81106,SESCO,II.1.1,Córdoba,AR-X,annual,2011,bioetanol combustion consumption by to the public,2.1732724116,TJ,CH4,10.0,kg/TJ,21.732724116,kg -88be80b9-9e23-38a5-926f-1024ccbc8afc,SESCO,II.1.1,Córdoba,AR-X,annual,2011,bioetanol combustion consumption by to the public,2.1732724116,TJ,N2O,0.6,kg/TJ,1.30396344696,kg -351b93ed-806d-3b8c-9f2d-6e8471243807,SESCO,II.1.1,Entre Rios,AR-E,annual,2011,bioetanol combustion consumption by to the public,0.2336470434,TJ,CH4,10.0,kg/TJ,2.336470434,kg -e51c2713-0a5b-36ec-a9f4-5f58b4a9db33,SESCO,II.1.1,Entre Rios,AR-E,annual,2011,bioetanol combustion consumption by to the public,0.2336470434,TJ,N2O,0.6,kg/TJ,0.14018822604,kg -6bd23a69-2fd4-3456-a290-c95aaad081ba,SESCO,II.1.1,Mendoza,AR-M,annual,2011,bioetanol combustion consumption by to the public,1.9959334577999999,TJ,CH4,10.0,kg/TJ,19.959334578,kg -8a2e5812-ad52-3749-b68b-d579ca6452ae,SESCO,II.1.1,Mendoza,AR-M,annual,2011,bioetanol combustion consumption by to the public,1.9959334577999999,TJ,N2O,0.6,kg/TJ,1.19756007468,kg -0583639d-7390-34a1-9b3f-249866630cc9,SESCO,II.1.1,Misiones,AR-N,annual,2011,bioetanol combustion consumption by to the public,2.4164546778,TJ,CH4,10.0,kg/TJ,24.164546778000002,kg -a24cc5ef-aa43-30f9-93bc-c18f666633f5,SESCO,II.1.1,Misiones,AR-N,annual,2011,bioetanol combustion consumption by to the public,2.4164546778,TJ,N2O,0.6,kg/TJ,1.44987280668,kg -72f97e65-9b99-3b1a-a95d-e8d9f959dc4e,SESCO,II.1.1,Rio Negro,AR-R,annual,2011,bioetanol combustion consumption by to the public,0.019044882000000003,TJ,CH4,10.0,kg/TJ,0.19044882000000002,kg -f36b5609-58e8-34ba-ba24-418b170a00be,SESCO,II.1.1,Rio Negro,AR-R,annual,2011,bioetanol combustion consumption by to the public,0.019044882000000003,TJ,N2O,0.6,kg/TJ,0.011426929200000002,kg -ce2b53c5-28dc-3348-b0e8-b242ea6288a7,SESCO,II.1.1,San Juan,AR-J,annual,2011,bioetanol combustion consumption by to the public,0.4573668888,TJ,CH4,10.0,kg/TJ,4.573668888,kg -44e2ac1d-db5c-36cc-8e30-99811610dc02,SESCO,II.1.1,San Juan,AR-J,annual,2011,bioetanol combustion consumption by to the public,0.4573668888,TJ,N2O,0.6,kg/TJ,0.27442013328,kg -837d1800-7d2d-306c-87b7-9305ebfe7959,SESCO,II.1.1,Santa Fe,AR-S,annual,2011,bioetanol combustion consumption by to the public,2.046067938,TJ,CH4,10.0,kg/TJ,20.460679380000002,kg -29c2e433-aeea-3a1b-8982-9899643e7ead,SESCO,II.1.1,Santa Fe,AR-S,annual,2011,bioetanol combustion consumption by to the public,2.046067938,TJ,N2O,0.6,kg/TJ,1.2276407628000001,kg -d50a5cce-05e1-3b88-9076-26a920f62e76,SESCO,II.1.1,Buenos Aires,AR-B,annual,2011,bioetanol combustion consumption by to the public,90.07814373984,TJ,CH4,10.0,kg/TJ,900.7814373984,kg -264d3a31-05c6-3c7a-ad84-71fa64094cc9,SESCO,II.1.1,Buenos Aires,AR-B,annual,2011,bioetanol combustion consumption by to the public,90.07814373984,TJ,N2O,0.6,kg/TJ,54.046886243904,kg -5f7a605d-fb4a-3d46-bff7-76f114d4be9c,SESCO,II.1.1,Capital Federal,AR-C,annual,2011,bioetanol combustion consumption by to the public,27.575457024240002,TJ,CH4,10.0,kg/TJ,275.7545702424,kg -a14df6fb-fe2e-36eb-aaf3-74edd6b15ea6,SESCO,II.1.1,Capital Federal,AR-C,annual,2011,bioetanol combustion consumption by to the public,27.575457024240002,TJ,N2O,0.6,kg/TJ,16.545274214544,kg -18b6a84b-3d56-3d76-b28b-104b9f7fafa5,SESCO,II.1.1,Catamarca,AR-K,annual,2011,bioetanol combustion consumption by to the public,3.5394636258000003,TJ,CH4,10.0,kg/TJ,35.394636258000006,kg -fa0f7d16-45ea-3f6e-aed7-6a2b0a6af3ab,SESCO,II.1.1,Catamarca,AR-K,annual,2011,bioetanol combustion consumption by to the public,3.5394636258000003,TJ,N2O,0.6,kg/TJ,2.1236781754800003,kg -c57ed141-65d0-37e4-9f73-3bb3e10f31f7,SESCO,II.1.1,Chaco,AR-H,annual,2011,bioetanol combustion consumption by to the public,4.776239115,TJ,CH4,10.0,kg/TJ,47.76239115,kg -440a0457-19c1-36cc-92e0-e1c2aefb27c2,SESCO,II.1.1,Chaco,AR-H,annual,2011,bioetanol combustion consumption by to the public,4.776239115,TJ,N2O,0.6,kg/TJ,2.865743469,kg -8df612a4-3b04-3a1e-a3dc-ed21e7648764,SESCO,II.1.1,Chubut,AR-U,annual,2011,bioetanol combustion consumption by to the public,3.9413702844,TJ,CH4,10.0,kg/TJ,39.413702844,kg -0ae86127-5f34-3cd0-a7c7-1ad229b6b74c,SESCO,II.1.1,Chubut,AR-U,annual,2011,bioetanol combustion consumption by to the public,3.9413702844,TJ,N2O,0.6,kg/TJ,2.36482217064,kg -28bb0b97-8356-36df-bca1-d05e9a8643e6,SESCO,II.1.1,Corrientes,AR-W,annual,2011,bioetanol combustion consumption by to the public,5.08033944,TJ,CH4,10.0,kg/TJ,50.8033944,kg -04112ad0-9025-3d30-9cc8-bb13ab5fdf71,SESCO,II.1.1,Corrientes,AR-W,annual,2011,bioetanol combustion consumption by to the public,5.08033944,TJ,N2O,0.6,kg/TJ,3.0482036640000003,kg -15d85dd5-3eaa-30ba-827e-0c94e833ebe9,SESCO,II.1.1,Córdoba,AR-X,annual,2011,bioetanol combustion consumption by to the public,34.47949005432,TJ,CH4,10.0,kg/TJ,344.7949005432,kg -c8a75091-a6b2-3c45-8dcd-ef13c0f26ef4,SESCO,II.1.1,Córdoba,AR-X,annual,2011,bioetanol combustion consumption by to the public,34.47949005432,TJ,N2O,0.6,kg/TJ,20.687694032592002,kg -0692e633-4615-343c-a9a0-b09ed85b14f2,SESCO,II.1.1,Entre Rios,AR-E,annual,2011,bioetanol combustion consumption by to the public,11.0562271758,TJ,CH4,10.0,kg/TJ,110.56227175800001,kg -3ef23da0-6218-3ecc-9045-88dfc5e134ef,SESCO,II.1.1,Entre Rios,AR-E,annual,2011,bioetanol combustion consumption by to the public,11.0562271758,TJ,N2O,0.6,kg/TJ,6.63373630548,kg -2b7fb8a8-a06a-3bf1-8400-ac1414b42476,SESCO,II.1.1,Formosa,AR-P,annual,2011,bioetanol combustion consumption by to the public,3.7769878152,TJ,CH4,10.0,kg/TJ,37.769878152000004,kg -c978ab0d-e9c8-35b8-8968-95cb09b42975,SESCO,II.1.1,Formosa,AR-P,annual,2011,bioetanol combustion consumption by to the public,3.7769878152,TJ,N2O,0.6,kg/TJ,2.26619268912,kg -5b19ea7c-44f2-3580-b7c4-5925fabf60ef,SESCO,II.1.1,Jujuy,AR-Y,annual,2011,bioetanol combustion consumption by to the public,0.9408512556,TJ,CH4,10.0,kg/TJ,9.408512556,kg -839fdddb-8315-37fd-8cd0-f078a03e09d8,SESCO,II.1.1,Jujuy,AR-Y,annual,2011,bioetanol combustion consumption by to the public,0.9408512556,TJ,N2O,0.6,kg/TJ,0.56451075336,kg -d68c4698-9027-3eed-ad2b-36ad63199fed,SESCO,II.1.1,La Pampa,AR-L,annual,2011,bioetanol combustion consumption by to the public,1.2181864914,TJ,CH4,10.0,kg/TJ,12.181864914,kg -3c72e80f-2125-3f35-b2ff-6d363cbd1eec,SESCO,II.1.1,La Pampa,AR-L,annual,2011,bioetanol combustion consumption by to the public,1.2181864914,TJ,N2O,0.6,kg/TJ,0.73091189484,kg -6abee72e-0332-3ae7-91b9-ffdf5a6fc39b,SESCO,II.1.1,La Rioja,AR-F,annual,2011,bioetanol combustion consumption by to the public,2.4685447734,TJ,CH4,10.0,kg/TJ,24.685447734,kg -7c1421b7-3bd0-3ad0-991d-7701ac027b52,SESCO,II.1.1,La Rioja,AR-F,annual,2011,bioetanol combustion consumption by to the public,2.4685447734,TJ,N2O,0.6,kg/TJ,1.48112686404,kg -670de7a2-24e6-38ef-a1c3-440b0d7571c9,SESCO,II.1.1,Mendoza,AR-M,annual,2011,bioetanol combustion consumption by to the public,4.473097425,TJ,CH4,10.0,kg/TJ,44.730974249999996,kg -7df62148-4fe8-3eac-8bec-1f67ecf263dd,SESCO,II.1.1,Mendoza,AR-M,annual,2011,bioetanol combustion consumption by to the public,4.473097425,TJ,N2O,0.6,kg/TJ,2.6838584549999998,kg -efbb3581-bbba-37c3-a8f5-310b63277dba,SESCO,II.1.1,Misiones,AR-N,annual,2011,bioetanol combustion consumption by to the public,7.5305593728,TJ,CH4,10.0,kg/TJ,75.305593728,kg -68a6e958-8249-379d-ae10-ce1b33f01bef,SESCO,II.1.1,Misiones,AR-N,annual,2011,bioetanol combustion consumption by to the public,7.5305593728,TJ,N2O,0.6,kg/TJ,4.51833562368,kg -1afb492d-2fd0-34e4-a121-072a52b61f10,SESCO,II.1.1,Neuquén,AR-Q,annual,2011,bioetanol combustion consumption by to the public,3.3754859136,TJ,CH4,10.0,kg/TJ,33.754859136,kg -836eb47c-7561-327c-8ccd-0058a725ff9b,SESCO,II.1.1,Neuquén,AR-Q,annual,2011,bioetanol combustion consumption by to the public,3.3754859136,TJ,N2O,0.6,kg/TJ,2.02529154816,kg -e3b1c7bd-1b69-3a62-bf1e-950cbfcea39d,SESCO,II.1.1,Rio Negro,AR-R,annual,2011,bioetanol combustion consumption by to the public,4.6733158008,TJ,CH4,10.0,kg/TJ,46.733158008000004,kg -73086ede-937e-3d30-851f-913bf4836571,SESCO,II.1.1,Rio Negro,AR-R,annual,2011,bioetanol combustion consumption by to the public,4.6733158008,TJ,N2O,0.6,kg/TJ,2.80398948048,kg -bfba60f1-c50d-34dd-83bc-e5adeb2d8140,SESCO,II.1.1,Salta,AR-A,annual,2011,bioetanol combustion consumption by to the public,0.7141234265999999,TJ,CH4,10.0,kg/TJ,7.141234266,kg -b52ec2f7-c645-3207-a006-391919ca52f2,SESCO,II.1.1,Salta,AR-A,annual,2011,bioetanol combustion consumption by to the public,0.7141234265999999,TJ,N2O,0.6,kg/TJ,0.42847405595999993,kg -43f7ff6d-93ac-33d7-a895-8e57c1dcb852,SESCO,II.1.1,San Juan,AR-J,annual,2011,bioetanol combustion consumption by to the public,3.3605865954,TJ,CH4,10.0,kg/TJ,33.605865954,kg -8d68d8be-4130-3b46-accc-e6f8c5bcb485,SESCO,II.1.1,San Juan,AR-J,annual,2011,bioetanol combustion consumption by to the public,3.3605865954,TJ,N2O,0.6,kg/TJ,2.01635195724,kg -0067bce2-8c33-3e56-95b7-aedd6af6ae34,SESCO,II.1.1,San Luis,AR-D,annual,2011,bioetanol combustion consumption by to the public,6.052804347599999,TJ,CH4,10.0,kg/TJ,60.528043475999986,kg -a93e959d-6f77-3e55-bef0-bfca25a2c055,SESCO,II.1.1,San Luis,AR-D,annual,2011,bioetanol combustion consumption by to the public,6.052804347599999,TJ,N2O,0.6,kg/TJ,3.631682608559999,kg -794c59e1-98fe-35b9-a236-8f19b1748359,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2011,bioetanol combustion consumption by to the public,0.421139007,TJ,CH4,10.0,kg/TJ,4.21139007,kg -0f919961-147d-3105-b8ef-f131cae3cb75,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2011,bioetanol combustion consumption by to the public,0.421139007,TJ,N2O,0.6,kg/TJ,0.2526834042,kg -70b25951-709a-34e4-8898-6713b99ab051,SESCO,II.1.1,Santa Fe,AR-S,annual,2011,bioetanol combustion consumption by to the public,28.23280966008,TJ,CH4,10.0,kg/TJ,282.3280966008,kg -7f876b74-2434-362e-b6ba-bf67c3560de8,SESCO,II.1.1,Santa Fe,AR-S,annual,2011,bioetanol combustion consumption by to the public,28.23280966008,TJ,N2O,0.6,kg/TJ,16.939685796048,kg -8962b509-8ce4-3f33-b49a-adae0793d3b5,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2011,bioetanol combustion consumption by to the public,2.617989579,TJ,CH4,10.0,kg/TJ,26.17989579,kg -e39ff35e-bd59-32ed-92a0-11007a0370fc,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2011,bioetanol combustion consumption by to the public,2.617989579,TJ,N2O,0.6,kg/TJ,1.5707937474,kg -f14dfcf4-7aaf-3e1b-9f4f-d48e993335a1,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2011,bioetanol combustion consumption by to the public,0.31772572379999997,TJ,CH4,10.0,kg/TJ,3.1772572379999997,kg -d1d085b9-ed16-34d8-839a-ee9fe28d5d1f,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2011,bioetanol combustion consumption by to the public,0.31772572379999997,TJ,N2O,0.6,kg/TJ,0.19063543428,kg -61b8fc17-26aa-30ab-bf79-2085e20e1e53,SESCO,II.1.1,Tucuman,AR-T,annual,2011,bioetanol combustion consumption by to the public,0.8308510847999999,TJ,CH4,10.0,kg/TJ,8.308510848,kg -19af08f0-d564-38dd-9356-6a25656b9a1d,SESCO,II.1.1,Tucuman,AR-T,annual,2011,bioetanol combustion consumption by to the public,0.8308510847999999,TJ,N2O,0.6,kg/TJ,0.4985106508799999,kg -8da6560a-b4c1-3613-bd7e-f4f7bb75cc07,SESCO,II.1.1,Buenos Aires,AR-B,annual,2011,bioetanol combustion consumption by to the public,24.31338785658,TJ,CH4,10.0,kg/TJ,243.1338785658,kg -19465b3a-c3cc-3124-bfca-5da5410262e4,SESCO,II.1.1,Buenos Aires,AR-B,annual,2011,bioetanol combustion consumption by to the public,24.31338785658,TJ,N2O,0.6,kg/TJ,14.588032713948,kg -fae35aa3-5ee5-3dc9-8a1f-351a83705208,SESCO,II.1.1,Capital Federal,AR-C,annual,2011,bioetanol combustion consumption by to the public,11.18999552976,TJ,CH4,10.0,kg/TJ,111.89995529759999,kg -23a07e10-62f7-35b1-b5fc-03e3920e7bb7,SESCO,II.1.1,Capital Federal,AR-C,annual,2011,bioetanol combustion consumption by to the public,11.18999552976,TJ,N2O,0.6,kg/TJ,6.713997317855999,kg -be7e728e-9ebe-323e-8d6e-c54fa84fd576,SESCO,II.1.1,Catamarca,AR-K,annual,2011,bioetanol combustion consumption by to the public,0.6797489058,TJ,CH4,10.0,kg/TJ,6.797489058,kg -d8ec4562-9a54-303f-b4f7-51eb04289933,SESCO,II.1.1,Catamarca,AR-K,annual,2011,bioetanol combustion consumption by to the public,0.6797489058,TJ,N2O,0.6,kg/TJ,0.40784934348,kg -412e8172-a117-3544-b852-541cd0fe7c74,SESCO,II.1.1,Chaco,AR-H,annual,2011,bioetanol combustion consumption by to the public,0.9618261894,TJ,CH4,10.0,kg/TJ,9.618261894,kg -80bdaa17-8532-3abd-b323-960083ca5832,SESCO,II.1.1,Chaco,AR-H,annual,2011,bioetanol combustion consumption by to the public,0.9618261894,TJ,N2O,0.6,kg/TJ,0.57709571364,kg -f00a6253-0241-3c11-a486-28ee5047bc30,SESCO,II.1.1,Chubut,AR-U,annual,2011,bioetanol combustion consumption by to the public,0.42343973100000004,TJ,CH4,10.0,kg/TJ,4.23439731,kg -cc3f29e3-1b4f-3b76-9214-84f010518f44,SESCO,II.1.1,Chubut,AR-U,annual,2011,bioetanol combustion consumption by to the public,0.42343973100000004,TJ,N2O,0.6,kg/TJ,0.25406383860000004,kg -9225095f-a48d-3f17-9c8c-9ac2811cecfa,SESCO,II.1.1,Corrientes,AR-W,annual,2011,bioetanol combustion consumption by to the public,0.6473001762,TJ,CH4,10.0,kg/TJ,6.473001762,kg -34557f9c-cb25-3190-b24e-7e7ae46db1da,SESCO,II.1.1,Corrientes,AR-W,annual,2011,bioetanol combustion consumption by to the public,0.6473001762,TJ,N2O,0.6,kg/TJ,0.38838010572,kg -7b062c31-9aae-37b5-bc1d-2759a84d10ed,SESCO,II.1.1,Córdoba,AR-X,annual,2011,bioetanol combustion consumption by to the public,8.25316650612,TJ,CH4,10.0,kg/TJ,82.53166506119999,kg -4189e1e4-d7b8-3733-b852-7b2120e74905,SESCO,II.1.1,Córdoba,AR-X,annual,2011,bioetanol combustion consumption by to the public,8.25316650612,TJ,N2O,0.6,kg/TJ,4.9518999036719995,kg -b7469872-be1b-3d13-a3e3-644cc5df5b93,SESCO,II.1.1,Entre Rios,AR-E,annual,2011,bioetanol combustion consumption by to the public,2.171073942,TJ,CH4,10.0,kg/TJ,21.71073942,kg -02d15859-e2a9-3220-887b-be9852add431,SESCO,II.1.1,Entre Rios,AR-E,annual,2011,bioetanol combustion consumption by to the public,2.171073942,TJ,N2O,0.6,kg/TJ,1.3026443652,kg -3eef0a18-ff7b-313b-b81a-f6e4fae3eef2,SESCO,II.1.1,Formosa,AR-P,annual,2011,bioetanol combustion consumption by to the public,0.9569520630000001,TJ,CH4,10.0,kg/TJ,9.569520630000001,kg -dba0832c-6096-3b65-9695-6cb764e41fde,SESCO,II.1.1,Formosa,AR-P,annual,2011,bioetanol combustion consumption by to the public,0.9569520630000001,TJ,N2O,0.6,kg/TJ,0.5741712378,kg -bdad457f-988e-38b6-ae45-e94ccb5b1720,SESCO,II.1.1,Jujuy,AR-Y,annual,2011,bioetanol combustion consumption by to the public,0.0824255676,TJ,CH4,10.0,kg/TJ,0.8242556759999999,kg -54f92a51-330d-3619-8d81-2b45ee323f7f,SESCO,II.1.1,Jujuy,AR-Y,annual,2011,bioetanol combustion consumption by to the public,0.0824255676,TJ,N2O,0.6,kg/TJ,0.04945534056,kg -b0a41a4b-859e-3f7a-a371-583ea4b6e865,SESCO,II.1.1,La Pampa,AR-L,annual,2011,bioetanol combustion consumption by to the public,0.2372983776,TJ,CH4,10.0,kg/TJ,2.372983776,kg -f26dbde2-be20-33f5-8a5a-ae16603f0914,SESCO,II.1.1,La Pampa,AR-L,annual,2011,bioetanol combustion consumption by to the public,0.2372983776,TJ,N2O,0.6,kg/TJ,0.14237902655999998,kg -17e4d831-51f1-35de-93f3-029cfc9e46fa,SESCO,II.1.1,La Rioja,AR-F,annual,2011,bioetanol combustion consumption by to the public,0.5147443890000001,TJ,CH4,10.0,kg/TJ,5.147443890000001,kg -fc860521-8adf-3a82-a294-ce806157bb20,SESCO,II.1.1,La Rioja,AR-F,annual,2011,bioetanol combustion consumption by to the public,0.5147443890000001,TJ,N2O,0.6,kg/TJ,0.3088466334,kg -5ef90eba-65f1-3124-9624-84b0b78aae4e,SESCO,II.1.1,Mendoza,AR-M,annual,2011,bioetanol combustion consumption by to the public,0.9218830643999999,TJ,CH4,10.0,kg/TJ,9.218830643999999,kg -a1de58b7-a6b2-3120-a015-031230bfbe2f,SESCO,II.1.1,Mendoza,AR-M,annual,2011,bioetanol combustion consumption by to the public,0.9218830643999999,TJ,N2O,0.6,kg/TJ,0.5531298386399999,kg -eff40897-6e9c-3b14-9cd6-562d3485a7a8,SESCO,II.1.1,Misiones,AR-N,annual,2011,bioetanol combustion consumption by to the public,1.0574297928,TJ,CH4,10.0,kg/TJ,10.574297928,kg -d76d1e1f-e6b7-355a-b8ea-e12e0f89dac0,SESCO,II.1.1,Misiones,AR-N,annual,2011,bioetanol combustion consumption by to the public,1.0574297928,TJ,N2O,0.6,kg/TJ,0.63445787568,kg -cdf16942-b067-33d8-9aba-8b0ae6276a34,SESCO,II.1.1,Neuquén,AR-Q,annual,2011,bioetanol combustion consumption by to the public,0.6644448306,TJ,CH4,10.0,kg/TJ,6.644448306,kg -e3813ded-01aa-39cc-8046-4ff7efd6986e,SESCO,II.1.1,Neuquén,AR-Q,annual,2011,bioetanol combustion consumption by to the public,0.6644448306,TJ,N2O,0.6,kg/TJ,0.39866689836,kg -6d6dcb0a-0eef-33ed-9883-4c933f537060,SESCO,II.1.1,Rio Negro,AR-R,annual,2011,bioetanol combustion consumption by to the public,1.0202475366000001,TJ,CH4,10.0,kg/TJ,10.202475366000002,kg -4b317fb9-25f5-3c12-88fc-75664250d62a,SESCO,II.1.1,Rio Negro,AR-R,annual,2011,bioetanol combustion consumption by to the public,1.0202475366000001,TJ,N2O,0.6,kg/TJ,0.61214852196,kg -828d8044-0334-3164-81d1-44d66d749bb5,SESCO,II.1.1,Salta,AR-A,annual,2011,bioetanol combustion consumption by to the public,0.15202246860000002,TJ,CH4,10.0,kg/TJ,1.5202246860000002,kg -23306489-98cb-3bb6-9323-dc5b63453f38,SESCO,II.1.1,Salta,AR-A,annual,2011,bioetanol combustion consumption by to the public,0.15202246860000002,TJ,N2O,0.6,kg/TJ,0.09121348116000001,kg -c316762a-07c2-313e-9c10-01f1937b7d0a,SESCO,II.1.1,San Juan,AR-J,annual,2011,bioetanol combustion consumption by to the public,0.5626292723999999,TJ,CH4,10.0,kg/TJ,5.626292723999999,kg -818567ef-cde3-366f-b002-70a2a66e2815,SESCO,II.1.1,San Juan,AR-J,annual,2011,bioetanol combustion consumption by to the public,0.5626292723999999,TJ,N2O,0.6,kg/TJ,0.33757756343999995,kg -fd66a39e-6319-360c-8156-7bf17aa38e18,SESCO,II.1.1,San Luis,AR-D,annual,2011,bioetanol combustion consumption by to the public,0.8711776638000001,TJ,CH4,10.0,kg/TJ,8.711776638,kg -e81d2ec6-3fdc-3dff-8449-f4c63c7a1264,SESCO,II.1.1,San Luis,AR-D,annual,2011,bioetanol combustion consumption by to the public,0.8711776638000001,TJ,N2O,0.6,kg/TJ,0.52270659828,kg -3c7f91a7-7edf-349c-8406-47c44e93c796,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2011,bioetanol combustion consumption by to the public,0.18818218080000002,TJ,CH4,10.0,kg/TJ,1.8818218080000002,kg -23980aad-e4cc-3845-bee9-a71e448bcd89,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2011,bioetanol combustion consumption by to the public,0.18818218080000002,TJ,N2O,0.6,kg/TJ,0.11290930848,kg -d7b1e71f-c261-375a-a7c3-f012eb8e424b,SESCO,II.1.1,Santa Fe,AR-S,annual,2011,bioetanol combustion consumption by to the public,7.796228659740001,TJ,CH4,10.0,kg/TJ,77.96228659740001,kg -8d92fafe-584b-3bc9-bb60-932148593c01,SESCO,II.1.1,Santa Fe,AR-S,annual,2011,bioetanol combustion consumption by to the public,7.796228659740001,TJ,N2O,0.6,kg/TJ,4.677737195844,kg -3855c841-c1d3-384e-8c10-30d94a5327a4,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2011,bioetanol combustion consumption by to the public,0.9441574812,TJ,CH4,10.0,kg/TJ,9.441574811999999,kg -e278e4f8-62b6-356e-b32a-258580ed6579,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2011,bioetanol combustion consumption by to the public,0.9441574812,TJ,N2O,0.6,kg/TJ,0.56649448872,kg -de330538-f608-348f-a6c3-845769fc682a,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2011,bioetanol combustion consumption by to the public,0.124217793,TJ,CH4,10.0,kg/TJ,1.24217793,kg -a2bf345e-674d-3465-987b-b4afc2b1c9e6,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2011,bioetanol combustion consumption by to the public,0.124217793,TJ,N2O,0.6,kg/TJ,0.0745306758,kg -11db5608-b6b9-33c5-a4aa-224bfb5719a8,SESCO,II.1.1,Tucuman,AR-T,annual,2011,bioetanol combustion consumption by to the public,0.32836018139999995,TJ,CH4,10.0,kg/TJ,3.2836018139999994,kg -b9a72c1d-adc7-3eee-92c2-08c0886fd590,SESCO,II.1.1,Tucuman,AR-T,annual,2011,bioetanol combustion consumption by to the public,0.32836018139999995,TJ,N2O,0.6,kg/TJ,0.19701610883999995,kg -5110a043-d737-3df9-9241-a79037a7d613,SESCO,II.1.1,Capital Federal,AR-C,annual,2011,bioetanol combustion consumption by freight transport,0.00029398140000000004,TJ,CH4,10.0,kg/TJ,0.0029398140000000007,kg -933d3275-7470-344f-b516-c7c48f38203d,SESCO,II.1.1,Capital Federal,AR-C,annual,2011,bioetanol combustion consumption by freight transport,0.00029398140000000004,TJ,N2O,0.6,kg/TJ,0.00017638884,kg -55252e97-22b5-3f99-8c1a-20598beb21de,SESCO,II.1.1,Misiones,AR-N,annual,2011,bioetanol combustion consumption by freight transport,1.2781799999999998e-05,TJ,CH4,10.0,kg/TJ,0.00012781799999999997,kg -13d54e91-545a-30f5-9b5c-7b48a817371e,SESCO,II.1.1,Misiones,AR-N,annual,2011,bioetanol combustion consumption by freight transport,1.2781799999999998e-05,TJ,N2O,0.6,kg/TJ,7.66908e-06,kg -02f93263-e5ed-3a83-a6b5-40b4761018f1,SESCO,II.1.1,Buenos Aires,AR-B,annual,2011,bioetanol combustion consumption by freight transport,0.06675934139999999,TJ,CH4,10.0,kg/TJ,0.6675934139999999,kg -b695eb81-3317-3dce-a197-acf9d4a8d76f,SESCO,II.1.1,Buenos Aires,AR-B,annual,2011,bioetanol combustion consumption by freight transport,0.06675934139999999,TJ,N2O,0.6,kg/TJ,0.040055604839999995,kg -29d3a58f-cda2-3164-b1e3-51e766f8a5cc,SESCO,II.1.1,Capital Federal,AR-C,annual,2011,bioetanol combustion consumption by freight transport,1.4048817228000001,TJ,CH4,10.0,kg/TJ,14.048817228,kg -76ce00f8-76fc-3cdb-813d-aeba337fffcd,SESCO,II.1.1,Capital Federal,AR-C,annual,2011,bioetanol combustion consumption by freight transport,1.4048817228000001,TJ,N2O,0.6,kg/TJ,0.84292903368,kg -f2d159ee-ac0c-35c5-b85a-2ac42927dcee,SESCO,II.1.1,Chaco,AR-H,annual,2011,bioetanol combustion consumption by freight transport,8.5212e-05,TJ,CH4,10.0,kg/TJ,0.0008521199999999999,kg -1f6793bf-d782-31d7-a901-ee50f5f1dd49,SESCO,II.1.1,Chaco,AR-H,annual,2011,bioetanol combustion consumption by freight transport,8.5212e-05,TJ,N2O,0.6,kg/TJ,5.1127199999999994e-05,kg -63434aa5-d11d-3718-a5f2-b2237540dad0,SESCO,II.1.1,Corrientes,AR-W,annual,2011,bioetanol combustion consumption by freight transport,0.00036641160000000007,TJ,CH4,10.0,kg/TJ,0.0036641160000000007,kg -9fa5bcac-b76b-35cb-89a4-d8857d4b90b6,SESCO,II.1.1,Corrientes,AR-W,annual,2011,bioetanol combustion consumption by freight transport,0.00036641160000000007,TJ,N2O,0.6,kg/TJ,0.00021984696000000004,kg -3290d6ca-cc51-3b38-bdd8-0bafd1a9d579,SESCO,II.1.1,Córdoba,AR-X,annual,2011,bioetanol combustion consumption by freight transport,0.0060330096,TJ,CH4,10.0,kg/TJ,0.060330096,kg -c5768fb5-6d93-3500-acb9-648323bdf82a,SESCO,II.1.1,Córdoba,AR-X,annual,2011,bioetanol combustion consumption by freight transport,0.0060330096,TJ,N2O,0.6,kg/TJ,0.00361980576,kg -2035e5b4-ce62-3433-96db-09245badffc7,SESCO,II.1.1,Entre Rios,AR-E,annual,2011,bioetanol combustion consumption by freight transport,0.23417109719999998,TJ,CH4,10.0,kg/TJ,2.341710972,kg -c1421ec4-6a0d-3f50-87f4-5e8ede97aac0,SESCO,II.1.1,Entre Rios,AR-E,annual,2011,bioetanol combustion consumption by freight transport,0.23417109719999998,TJ,N2O,0.6,kg/TJ,0.14050265831999997,kg -93c6841d-8829-33f8-b3fa-b61267f0baf0,SESCO,II.1.1,Mendoza,AR-M,annual,2011,bioetanol combustion consumption by freight transport,2.1303e-05,TJ,CH4,10.0,kg/TJ,0.00021302999999999998,kg -288e02c9-c084-3981-a6b1-393c9c485ece,SESCO,II.1.1,Mendoza,AR-M,annual,2011,bioetanol combustion consumption by freight transport,2.1303e-05,TJ,N2O,0.6,kg/TJ,1.2781799999999998e-05,kg -92011e4b-27f7-37aa-b1b2-45c9a5d5cd0d,SESCO,II.1.1,Misiones,AR-N,annual,2011,bioetanol combustion consumption by freight transport,1.70424e-05,TJ,CH4,10.0,kg/TJ,0.00017042400000000002,kg -18944b36-9c5c-3fc5-90bf-fc29d2d8757d,SESCO,II.1.1,Misiones,AR-N,annual,2011,bioetanol combustion consumption by freight transport,1.70424e-05,TJ,N2O,0.6,kg/TJ,1.022544e-05,kg -90f3d446-d69b-3db3-b706-69d8938933e8,SESCO,II.1.1,San Luis,AR-D,annual,2011,bioetanol combustion consumption by freight transport,0.000255636,TJ,CH4,10.0,kg/TJ,0.00255636,kg -d90beb9f-eb3f-30d9-9a0f-a9e447215867,SESCO,II.1.1,San Luis,AR-D,annual,2011,bioetanol combustion consumption by freight transport,0.000255636,TJ,N2O,0.6,kg/TJ,0.0001533816,kg -c705e461-2efc-3658-a6d2-e6f7cbf44d2c,SESCO,II.1.1,Santa Fe,AR-S,annual,2011,bioetanol combustion consumption by freight transport,0.0089600418,TJ,CH4,10.0,kg/TJ,0.089600418,kg -c8bc01f7-885d-3d9c-9af8-0605b1887ce7,SESCO,II.1.1,Santa Fe,AR-S,annual,2011,bioetanol combustion consumption by freight transport,0.0089600418,TJ,N2O,0.6,kg/TJ,0.00537602508,kg -39a03b53-1884-39c5-aa2c-dc1e420dab65,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2011,bioetanol combustion consumption by freight transport,0.00032806619999999997,TJ,CH4,10.0,kg/TJ,0.0032806619999999997,kg -77bc618d-5115-3943-b8a7-80c6470bfe83,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2011,bioetanol combustion consumption by freight transport,0.00032806619999999997,TJ,N2O,0.6,kg/TJ,0.00019683971999999997,kg -04b1a4fb-514a-3a57-b198-b15ad8ef80ed,SESCO,II.1.1,Tucuman,AR-T,annual,2011,bioetanol combustion consumption by freight transport,0.000575181,TJ,CH4,10.0,kg/TJ,0.00575181,kg -b642a15f-23ff-3f71-a6b4-7fba3028d066,SESCO,II.1.1,Tucuman,AR-T,annual,2011,bioetanol combustion consumption by freight transport,0.000575181,TJ,N2O,0.6,kg/TJ,0.0003451086,kg -f9810949-c8e3-3592-b113-f64247277532,SESCO,II.1.1,Buenos Aires,AR-B,annual,2011,bioetanol combustion consumption by freight transport,0.0428445936,TJ,CH4,10.0,kg/TJ,0.428445936,kg -7f9242dc-e99d-3d81-a507-c5dba62e56b1,SESCO,II.1.1,Buenos Aires,AR-B,annual,2011,bioetanol combustion consumption by freight transport,0.0428445936,TJ,N2O,0.6,kg/TJ,0.02570675616,kg -5c379d1d-c2de-39e4-862d-31ed4dce9a08,SESCO,II.1.1,Capital Federal,AR-C,annual,2011,bioetanol combustion consumption by freight transport,0.2519676234,TJ,CH4,10.0,kg/TJ,2.5196762340000003,kg -184d00d7-a1cc-35f4-92ed-4f487c3a4140,SESCO,II.1.1,Capital Federal,AR-C,annual,2011,bioetanol combustion consumption by freight transport,0.2519676234,TJ,N2O,0.6,kg/TJ,0.15118057404,kg -1cac8a0a-d984-3612-aa15-baaa95b25180,SESCO,II.1.1,Chaco,AR-H,annual,2011,bioetanol combustion consumption by freight transport,0.000532575,TJ,CH4,10.0,kg/TJ,0.00532575,kg -52866948-561e-3372-b301-0373c2fefaa4,SESCO,II.1.1,Chaco,AR-H,annual,2011,bioetanol combustion consumption by freight transport,0.000532575,TJ,N2O,0.6,kg/TJ,0.00031954499999999996,kg -b556f9a4-3d80-325a-a026-54346c6bb10d,SESCO,II.1.1,Corrientes,AR-W,annual,2011,bioetanol combustion consumption by freight transport,0.00037067219999999996,TJ,CH4,10.0,kg/TJ,0.0037067219999999995,kg -80bf8549-445a-32fa-bcce-2120141d944b,SESCO,II.1.1,Corrientes,AR-W,annual,2011,bioetanol combustion consumption by freight transport,0.00037067219999999996,TJ,N2O,0.6,kg/TJ,0.00022240331999999997,kg -81b1ee89-5fbb-328f-bcb0-9a9c73d6a30e,SESCO,II.1.1,Córdoba,AR-X,annual,2011,bioetanol combustion consumption by freight transport,0.007528480200000001,TJ,CH4,10.0,kg/TJ,0.07528480200000001,kg -c9cc1bee-2021-346e-8e3e-ab694dec7162,SESCO,II.1.1,Córdoba,AR-X,annual,2011,bioetanol combustion consumption by freight transport,0.007528480200000001,TJ,N2O,0.6,kg/TJ,0.00451708812,kg -05351542-b44e-304c-b047-d6d35e88fec8,SESCO,II.1.1,Entre Rios,AR-E,annual,2011,bioetanol combustion consumption by freight transport,0.0047122236,TJ,CH4,10.0,kg/TJ,0.047122236,kg -9b6725b9-6d91-3e02-bb4e-82bce27cd97f,SESCO,II.1.1,Entre Rios,AR-E,annual,2011,bioetanol combustion consumption by freight transport,0.0047122236,TJ,N2O,0.6,kg/TJ,0.0028273341599999997,kg -015e6162-ef9e-36b5-a3c8-e38e75434e91,SESCO,II.1.1,Misiones,AR-N,annual,2011,bioetanol combustion consumption by freight transport,0.0001959876,TJ,CH4,10.0,kg/TJ,0.001959876,kg -bae42917-827b-3852-8e47-2616cc09617f,SESCO,II.1.1,Misiones,AR-N,annual,2011,bioetanol combustion consumption by freight transport,0.0001959876,TJ,N2O,0.6,kg/TJ,0.00011759256,kg -3c91e7ea-e7fb-3f56-a4d4-f4eee98c4e46,SESCO,II.1.1,San Luis,AR-D,annual,2011,bioetanol combustion consumption by freight transport,5.96484e-05,TJ,CH4,10.0,kg/TJ,0.000596484,kg -ee1223b4-f749-3832-b884-e2c34251c968,SESCO,II.1.1,San Luis,AR-D,annual,2011,bioetanol combustion consumption by freight transport,5.96484e-05,TJ,N2O,0.6,kg/TJ,3.578904e-05,kg -01d43bf8-2da8-36ec-87c0-d73423362430,SESCO,II.1.1,Santa Fe,AR-S,annual,2011,bioetanol combustion consumption by freight transport,0.0067828752,TJ,CH4,10.0,kg/TJ,0.06782875199999999,kg -856d13b8-2a1d-35dd-8e72-5deaceab06f8,SESCO,II.1.1,Santa Fe,AR-S,annual,2011,bioetanol combustion consumption by freight transport,0.0067828752,TJ,N2O,0.6,kg/TJ,0.00406972512,kg -aa71daa4-3f51-3b23-ad07-9c5a6b42fceb,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2011,bioetanol combustion consumption by freight transport,0.011235202199999999,TJ,CH4,10.0,kg/TJ,0.112352022,kg -821c1e02-e6c0-3d65-9343-31c0508cc81c,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2011,bioetanol combustion consumption by freight transport,0.011235202199999999,TJ,N2O,0.6,kg/TJ,0.006741121319999999,kg -b09f711b-8c4a-30bc-890b-e181585a618c,SESCO,II.1.1,Tucuman,AR-T,annual,2011,bioetanol combustion consumption by freight transport,0.0006944778,TJ,CH4,10.0,kg/TJ,0.006944778,kg -b008760c-c97b-318f-b3ec-563c0642c0da,SESCO,II.1.1,Tucuman,AR-T,annual,2011,bioetanol combustion consumption by freight transport,0.0006944778,TJ,N2O,0.6,kg/TJ,0.00041668668000000004,kg -67413416-c9d3-341b-8240-38810445ab4d,SESCO,II.1.1,Capital Federal,AR-C,annual,2011,bioetanol combustion consumption by public passenger transport,2.1303e-05,TJ,CH4,10.0,kg/TJ,0.00021302999999999998,kg -96a5568e-5cc4-3491-aa3e-b60ae277be29,SESCO,II.1.1,Capital Federal,AR-C,annual,2011,bioetanol combustion consumption by public passenger transport,2.1303e-05,TJ,N2O,0.6,kg/TJ,1.2781799999999998e-05,kg -da1213d1-b4b9-376a-b608-b90c17d35fee,SESCO,II.1.1,Capital Federal,AR-C,annual,2011,bioetanol combustion consumption by public passenger transport,0.000255636,TJ,CH4,10.0,kg/TJ,0.00255636,kg -800c0c82-85e6-31cf-8e17-3e58f4ccc90c,SESCO,II.1.1,Capital Federal,AR-C,annual,2011,bioetanol combustion consumption by public passenger transport,0.000255636,TJ,N2O,0.6,kg/TJ,0.0001533816,kg -0759de8d-8f4f-3d7f-98ae-f1fc8ef33950,SESCO,II.1.1,Córdoba,AR-X,annual,2011,bioetanol combustion consumption by public passenger transport,0.0004004964,TJ,CH4,10.0,kg/TJ,0.004004964,kg -080dd30f-0b4f-3b36-9ab9-02bf308a63e8,SESCO,II.1.1,Córdoba,AR-X,annual,2011,bioetanol combustion consumption by public passenger transport,0.0004004964,TJ,N2O,0.6,kg/TJ,0.00024029784,kg -42adf1ef-beb9-31cf-a07a-cd4ecfbce074,SESCO,II.1.1,Tucuman,AR-T,annual,2011,bioetanol combustion consumption by public passenger transport,2.1303e-05,TJ,CH4,10.0,kg/TJ,0.00021302999999999998,kg -26d280b8-4e40-3d7e-a2d1-3d8c3ba5ce28,SESCO,II.1.1,Tucuman,AR-T,annual,2011,bioetanol combustion consumption by public passenger transport,2.1303e-05,TJ,N2O,0.6,kg/TJ,1.2781799999999998e-05,kg -2f9fd0e4-8d78-3078-8430-36f7079d0a85,SESCO,II.1.1,Capital Federal,AR-C,annual,2011,bioetanol combustion consumption by public passenger transport,0.0046397934,TJ,CH4,10.0,kg/TJ,0.046397934,kg -71153990-c013-3fdb-a1c4-43d614d22826,SESCO,II.1.1,Capital Federal,AR-C,annual,2011,bioetanol combustion consumption by public passenger transport,0.0046397934,TJ,N2O,0.6,kg/TJ,0.0027838760399999996,kg -519c2a58-f853-355c-bbda-50b75918ec08,SESCO,II.1.1,Córdoba,AR-X,annual,2011,bioetanol combustion consumption by public passenger transport,0.000255636,TJ,CH4,10.0,kg/TJ,0.00255636,kg -ed7dae8a-0f8b-34c3-8ae3-790cfc079b50,SESCO,II.1.1,Córdoba,AR-X,annual,2011,bioetanol combustion consumption by public passenger transport,0.000255636,TJ,N2O,0.6,kg/TJ,0.0001533816,kg -1c94b0f0-c6f1-3920-b949-d71648af77f1,SESCO,II.1.1,Tucuman,AR-T,annual,2011,bioetanol combustion consumption by public passenger transport,9.79938e-05,TJ,CH4,10.0,kg/TJ,0.000979938,kg -eb6f860d-ef80-31ac-bfae-8b743456f132,SESCO,II.1.1,Tucuman,AR-T,annual,2011,bioetanol combustion consumption by public passenger transport,9.79938e-05,TJ,N2O,0.6,kg/TJ,5.879628e-05,kg -8d34c864-62af-3d7e-825f-1f942936302e,SESCO,II.5.1,Córdoba,AR-X,annual,2011,bioetanol combustion consumption by agriculture machines,0.021233296583999996,TJ,CH4,10.0,kg/TJ,0.21233296583999997,kg -82f8601d-6fdb-33b0-9416-4204959e6dcc,SESCO,II.5.1,Córdoba,AR-X,annual,2011,bioetanol combustion consumption by agriculture machines,0.021233296583999996,TJ,N2O,0.6,kg/TJ,0.012739977950399998,kg -3ff091eb-3680-3258-8b3d-dcfb7399d186,SESCO,II.1.1,Buenos Aires,AR-B,annual,2011,bioetanol combustion consumption by to the public,19.885263152273996,TJ,CH4,10.0,kg/TJ,198.85263152273996,kg -9b132902-6fe1-315d-b5f7-64159b1e706c,SESCO,II.1.1,Buenos Aires,AR-B,annual,2011,bioetanol combustion consumption by to the public,19.885263152273996,TJ,N2O,0.6,kg/TJ,11.931157891364398,kg -f50fa83b-1366-3cfe-9392-c222edb89b0f,SESCO,II.1.1,Capital Federal,AR-C,annual,2011,bioetanol combustion consumption by to the public,3.107937616848,TJ,CH4,10.0,kg/TJ,31.07937616848,kg -f0aa91c4-ba23-342b-a64b-d9c4f57f2f88,SESCO,II.1.1,Capital Federal,AR-C,annual,2011,bioetanol combustion consumption by to the public,3.107937616848,TJ,N2O,0.6,kg/TJ,1.8647625701088,kg -b1f3cd38-ee31-3a36-a25b-4e59a7f9af08,SESCO,II.1.1,Catamarca,AR-K,annual,2011,bioetanol combustion consumption by to the public,1.459183538466,TJ,CH4,10.0,kg/TJ,14.59183538466,kg -e61c50c9-1f63-3042-8d54-bfd381ce27d1,SESCO,II.1.1,Catamarca,AR-K,annual,2011,bioetanol combustion consumption by to the public,1.459183538466,TJ,N2O,0.6,kg/TJ,0.8755101230796,kg -70dad4a7-041e-388a-b5ce-cb14f20cd8d4,SESCO,II.1.1,Chaco,AR-H,annual,2011,bioetanol combustion consumption by to the public,3.350055627774,TJ,CH4,10.0,kg/TJ,33.50055627774,kg -ce64389e-97a0-305e-b779-d9a2ef3804a0,SESCO,II.1.1,Chaco,AR-H,annual,2011,bioetanol combustion consumption by to the public,3.350055627774,TJ,N2O,0.6,kg/TJ,2.0100333766644,kg -8bbee420-1e98-3e10-a376-c69b2f1cc666,SESCO,II.1.1,Corrientes,AR-W,annual,2011,bioetanol combustion consumption by to the public,4.269566304882,TJ,CH4,10.0,kg/TJ,42.695663048819995,kg -a966370a-ce72-3838-84ae-b50ee25b04e4,SESCO,II.1.1,Corrientes,AR-W,annual,2011,bioetanol combustion consumption by to the public,4.269566304882,TJ,N2O,0.6,kg/TJ,2.5617397829292,kg -d7c80d52-1d0c-3126-8ff5-6eea08e133d6,SESCO,II.1.1,Córdoba,AR-X,annual,2011,bioetanol combustion consumption by to the public,7.804256524865999,TJ,CH4,10.0,kg/TJ,78.04256524866,kg -0c283caa-8b7d-326b-95b0-fba295a42d46,SESCO,II.1.1,Córdoba,AR-X,annual,2011,bioetanol combustion consumption by to the public,7.804256524865999,TJ,N2O,0.6,kg/TJ,4.682553914919599,kg -4ae05a00-2268-3b91-a16b-5e58c0ec6083,SESCO,II.1.1,Entre Rios,AR-E,annual,2011,bioetanol combustion consumption by to the public,3.7884083535000004,TJ,CH4,10.0,kg/TJ,37.884083535,kg -c4369b55-2434-390c-b605-dcecedf40792,SESCO,II.1.1,Entre Rios,AR-E,annual,2011,bioetanol combustion consumption by to the public,3.7884083535000004,TJ,N2O,0.6,kg/TJ,2.2730450121000003,kg -33dab1d2-e82e-336d-a061-b5c21b456f16,SESCO,II.1.1,Formosa,AR-P,annual,2011,bioetanol combustion consumption by to the public,0.5548810730579999,TJ,CH4,10.0,kg/TJ,5.54881073058,kg -7b6fe2e4-798a-3454-98d2-0443bd8486e3,SESCO,II.1.1,Formosa,AR-P,annual,2011,bioetanol combustion consumption by to the public,0.5548810730579999,TJ,N2O,0.6,kg/TJ,0.3329286438348,kg -44c4f30f-c433-38d0-a2d1-10adc95312f8,SESCO,II.1.1,Jujuy,AR-Y,annual,2011,bioetanol combustion consumption by to the public,0.21327093693000002,TJ,CH4,10.0,kg/TJ,2.1327093693,kg -ede9e74d-3661-312d-b00e-47238cfda0b5,SESCO,II.1.1,Jujuy,AR-Y,annual,2011,bioetanol combustion consumption by to the public,0.21327093693000002,TJ,N2O,0.6,kg/TJ,0.127962562158,kg -81fc4c22-f6ac-3655-9c66-70103c885ee3,SESCO,II.1.1,La Pampa,AR-L,annual,2011,bioetanol combustion consumption by to the public,0.11248128860399999,TJ,CH4,10.0,kg/TJ,1.12481288604,kg -6d5654b7-1fc8-342a-b154-7bd4400170ee,SESCO,II.1.1,La Pampa,AR-L,annual,2011,bioetanol combustion consumption by to the public,0.11248128860399999,TJ,N2O,0.6,kg/TJ,0.06748877316239998,kg -5e5a5963-2808-3eb0-b563-e8d9084f815e,SESCO,II.1.1,La Rioja,AR-F,annual,2011,bioetanol combustion consumption by to the public,0.8664755378219999,TJ,CH4,10.0,kg/TJ,8.664755378219999,kg -b11a89f8-ac4f-3871-8420-7cf96fe3f01e,SESCO,II.1.1,La Rioja,AR-F,annual,2011,bioetanol combustion consumption by to the public,0.8664755378219999,TJ,N2O,0.6,kg/TJ,0.5198853226932,kg -ac79973c-74e4-31b3-a632-8ff3b79298a3,SESCO,II.1.1,Mendoza,AR-M,annual,2011,bioetanol combustion consumption by to the public,3.0295520353799996,TJ,CH4,10.0,kg/TJ,30.295520353799997,kg -64adde9f-f5a9-3bd4-ab7e-b5ab14b08078,SESCO,II.1.1,Mendoza,AR-M,annual,2011,bioetanol combustion consumption by to the public,3.0295520353799996,TJ,N2O,0.6,kg/TJ,1.8177312212279997,kg -529f4e5e-49bd-3126-8eca-cf77bfa178af,SESCO,II.1.1,Misiones,AR-N,annual,2011,bioetanol combustion consumption by to the public,1.4794662099779998,TJ,CH4,10.0,kg/TJ,14.794662099779998,kg -78df9abd-c866-3c31-8091-375ba8ff181e,SESCO,II.1.1,Misiones,AR-N,annual,2011,bioetanol combustion consumption by to the public,1.4794662099779998,TJ,N2O,0.6,kg/TJ,0.8876797259867999,kg -6c1c81f1-5260-3625-a571-c41111523a51,SESCO,II.1.1,Salta,AR-A,annual,2011,bioetanol combustion consumption by to the public,0.09265999746600001,TJ,CH4,10.0,kg/TJ,0.9265999746600001,kg -cee4c882-2f9b-3df0-b98c-cb0e5ca57ea6,SESCO,II.1.1,Salta,AR-A,annual,2011,bioetanol combustion consumption by to the public,0.09265999746600001,TJ,N2O,0.6,kg/TJ,0.055595998479600006,kg -b95c76d8-b7c0-3913-884b-26ec456e1235,SESCO,II.1.1,San Juan,AR-J,annual,2011,bioetanol combustion consumption by to the public,2.308236630768,TJ,CH4,10.0,kg/TJ,23.08236630768,kg -fad4ac3d-9814-37cb-9f18-d8948c4a3d81,SESCO,II.1.1,San Juan,AR-J,annual,2011,bioetanol combustion consumption by to the public,2.308236630768,TJ,N2O,0.6,kg/TJ,1.3849419784608,kg -11385c16-3d65-385d-87a5-38bbf45efca0,SESCO,II.1.1,San Luis,AR-D,annual,2011,bioetanol combustion consumption by to the public,1.0022123741939999,TJ,CH4,10.0,kg/TJ,10.02212374194,kg -c010fb65-ffcc-3b8b-be65-251820a7ab4c,SESCO,II.1.1,San Luis,AR-D,annual,2011,bioetanol combustion consumption by to the public,1.0022123741939999,TJ,N2O,0.6,kg/TJ,0.6013274245163999,kg -345dec4e-7f85-3584-b796-d137057f192e,SESCO,II.1.1,Santa Fe,AR-S,annual,2011,bioetanol combustion consumption by to the public,10.043443486097999,TJ,CH4,10.0,kg/TJ,100.43443486097999,kg -f1af72b1-d315-39d4-b533-a6c9a6547349,SESCO,II.1.1,Santa Fe,AR-S,annual,2011,bioetanol combustion consumption by to the public,10.043443486097999,TJ,N2O,0.6,kg/TJ,6.026066091658799,kg -5c9a456e-b967-3bae-a0b6-508a13d34a4e,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2011,bioetanol combustion consumption by to the public,1.511634123432,TJ,CH4,10.0,kg/TJ,15.11634123432,kg -cd902659-e2bc-3fed-948e-9a2039dda94e,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2011,bioetanol combustion consumption by to the public,1.511634123432,TJ,N2O,0.6,kg/TJ,0.9069804740592,kg -c4c78b7b-42c4-3b56-8289-bfb91294aa61,SESCO,II.1.1,Tucuman,AR-T,annual,2011,bioetanol combustion consumption by to the public,1.940657754186,TJ,CH4,10.0,kg/TJ,19.40657754186,kg -0c3ef771-d1d0-3588-a164-340b37dd3b71,SESCO,II.1.1,Tucuman,AR-T,annual,2011,bioetanol combustion consumption by to the public,1.940657754186,TJ,N2O,0.6,kg/TJ,1.1643946525116,kg -53a46d7e-0fc8-3beb-8d04-b5f0fc3e0cba,SESCO,II.1.1,Buenos Aires,AR-B,annual,2011,bioetanol combustion consumption by to the public,3.502144945188,TJ,CH4,10.0,kg/TJ,35.021449451879995,kg -532d3b3f-d496-3dee-9435-ae0fb7cd927b,SESCO,II.1.1,Buenos Aires,AR-B,annual,2011,bioetanol combustion consumption by to the public,3.502144945188,TJ,N2O,0.6,kg/TJ,2.1012869671127996,kg -0b4b2e99-a75a-357b-9da7-d95c89709b86,SESCO,II.1.1,Capital Federal,AR-C,annual,2011,bioetanol combustion consumption by to the public,0.48997389969,TJ,CH4,10.0,kg/TJ,4.8997389969,kg -7a8cece2-d83d-3471-8808-616df0a662dd,SESCO,II.1.1,Capital Federal,AR-C,annual,2011,bioetanol combustion consumption by to the public,0.48997389969,TJ,N2O,0.6,kg/TJ,0.29398433981399996,kg -c469fded-0c49-321d-8914-f4c476424ee8,SESCO,II.1.1,Catamarca,AR-K,annual,2011,bioetanol combustion consumption by to the public,0.18513529792199998,TJ,CH4,10.0,kg/TJ,1.8513529792199999,kg -3b213382-3562-38fe-8c44-ca49b1ceb3d8,SESCO,II.1.1,Catamarca,AR-K,annual,2011,bioetanol combustion consumption by to the public,0.18513529792199998,TJ,N2O,0.6,kg/TJ,0.11108117875319999,kg -94a2fe43-47cd-329f-af9b-386ea26a5064,SESCO,II.1.1,Chaco,AR-H,annual,2011,bioetanol combustion consumption by to the public,0.272630170008,TJ,CH4,10.0,kg/TJ,2.72630170008,kg -72a3fcfc-b016-3280-a7e6-b823986e8642,SESCO,II.1.1,Chaco,AR-H,annual,2011,bioetanol combustion consumption by to the public,0.272630170008,TJ,N2O,0.6,kg/TJ,0.1635781020048,kg -b908cbf8-f274-3b05-8e16-c77cfb3d9285,SESCO,II.1.1,Corrientes,AR-W,annual,2011,bioetanol combustion consumption by to the public,0.39015153538200004,TJ,CH4,10.0,kg/TJ,3.9015153538200003,kg -c6dc68cb-ed37-307d-b4e7-ccf9e4952838,SESCO,II.1.1,Corrientes,AR-W,annual,2011,bioetanol combustion consumption by to the public,0.39015153538200004,TJ,N2O,0.6,kg/TJ,0.2340909212292,kg -b8d7e0cc-78d0-3639-ae68-e912ce13b554,SESCO,II.1.1,Córdoba,AR-X,annual,2011,bioetanol combustion consumption by to the public,1.33157426526,TJ,CH4,10.0,kg/TJ,13.315742652600001,kg -25317257-d20f-3e32-b178-afb280e5e5eb,SESCO,II.1.1,Córdoba,AR-X,annual,2011,bioetanol combustion consumption by to the public,1.33157426526,TJ,N2O,0.6,kg/TJ,0.7989445591559999,kg -756ef96d-a9c5-325e-b035-b69a9ba85f8f,SESCO,II.1.1,Entre Rios,AR-E,annual,2011,bioetanol combustion consumption by to the public,0.6700018459679999,TJ,CH4,10.0,kg/TJ,6.700018459679999,kg -92aee14e-be50-3258-bbce-0586a3c8a644,SESCO,II.1.1,Entre Rios,AR-E,annual,2011,bioetanol combustion consumption by to the public,0.6700018459679999,TJ,N2O,0.6,kg/TJ,0.40200110758079993,kg -7521687a-911e-3975-b36c-f00b0cab6ef2,SESCO,II.1.1,Jujuy,AR-Y,annual,2011,bioetanol combustion consumption by to the public,0.025915482953999997,TJ,CH4,10.0,kg/TJ,0.25915482953999996,kg -1e3c6ccc-b979-3d19-bbe6-7cfa0382616a,SESCO,II.1.1,Jujuy,AR-Y,annual,2011,bioetanol combustion consumption by to the public,0.025915482953999997,TJ,N2O,0.6,kg/TJ,0.015549289772399997,kg -6a8bebb1-8f83-3ee9-8e51-a8d0595522f1,SESCO,II.1.1,La Pampa,AR-L,annual,2011,bioetanol combustion consumption by to the public,0.04778953117200001,TJ,CH4,10.0,kg/TJ,0.4778953117200001,kg -7d97ae0a-8442-3529-a91e-aeb17b00aa54,SESCO,II.1.1,La Pampa,AR-L,annual,2011,bioetanol combustion consumption by to the public,0.04778953117200001,TJ,N2O,0.6,kg/TJ,0.028673718703200003,kg -6394f142-a889-3891-aa01-e1a6e0a40c44,SESCO,II.1.1,La Rioja,AR-F,annual,2011,bioetanol combustion consumption by to the public,0.11039892035400001,TJ,CH4,10.0,kg/TJ,1.10398920354,kg -69e85956-ec30-3e41-bdeb-e9e864de7c04,SESCO,II.1.1,La Rioja,AR-F,annual,2011,bioetanol combustion consumption by to the public,0.11039892035400001,TJ,N2O,0.6,kg/TJ,0.0662393522124,kg -20915ad4-c1d4-3888-b0b7-71b710e6a0a1,SESCO,II.1.1,Mendoza,AR-M,annual,2011,bioetanol combustion consumption by to the public,0.5394702698280001,TJ,CH4,10.0,kg/TJ,5.394702698280001,kg -401e8dce-c579-3aad-831f-f1d583a2b7ae,SESCO,II.1.1,Mendoza,AR-M,annual,2011,bioetanol combustion consumption by to the public,0.5394702698280001,TJ,N2O,0.6,kg/TJ,0.32368216189680005,kg -b42b864e-5df3-381c-902c-3fa91a279652,SESCO,II.1.1,Misiones,AR-N,annual,2011,bioetanol combustion consumption by to the public,0.136048243626,TJ,CH4,10.0,kg/TJ,1.3604824362599999,kg -1e958b12-73f6-3b6d-b144-f02e547bab1a,SESCO,II.1.1,Misiones,AR-N,annual,2011,bioetanol combustion consumption by to the public,0.136048243626,TJ,N2O,0.6,kg/TJ,0.08162894617559999,kg -8b0c8906-297f-31d0-a832-4226fb513df0,SESCO,II.1.1,Salta,AR-A,annual,2011,bioetanol combustion consumption by to the public,0.007273951956,TJ,CH4,10.0,kg/TJ,0.07273951956000001,kg -09eb1d54-65c5-310c-af90-3cba4c93f2b9,SESCO,II.1.1,Salta,AR-A,annual,2011,bioetanol combustion consumption by to the public,0.007273951956,TJ,N2O,0.6,kg/TJ,0.0043643711736,kg -86f70f43-c75d-3604-8490-c1e5e2818499,SESCO,II.1.1,San Juan,AR-J,annual,2011,bioetanol combustion consumption by to the public,0.47055029295600004,TJ,CH4,10.0,kg/TJ,4.705502929560001,kg -a646408f-3e71-3a55-b663-03a553c1d1fc,SESCO,II.1.1,San Juan,AR-J,annual,2011,bioetanol combustion consumption by to the public,0.47055029295600004,TJ,N2O,0.6,kg/TJ,0.28233017577360003,kg -48e507ef-1e51-3daa-ad40-2b80e6afa967,SESCO,II.1.1,San Luis,AR-D,annual,2011,bioetanol combustion consumption by to the public,0.16673240313,TJ,CH4,10.0,kg/TJ,1.6673240313000002,kg -491c566c-263c-3f5f-8c55-0cdda3b207cf,SESCO,II.1.1,San Luis,AR-D,annual,2011,bioetanol combustion consumption by to the public,0.16673240313,TJ,N2O,0.6,kg/TJ,0.100039441878,kg -35657cdf-0bb6-32c5-a060-c694a23acb0f,SESCO,II.1.1,Santa Fe,AR-S,annual,2011,bioetanol combustion consumption by to the public,1.9152613401299998,TJ,CH4,10.0,kg/TJ,19.1526134013,kg -7b69dab7-f82c-3e23-b762-64f549ae4937,SESCO,II.1.1,Santa Fe,AR-S,annual,2011,bioetanol combustion consumption by to the public,1.9152613401299998,TJ,N2O,0.6,kg/TJ,1.1491568040779998,kg -50ff1d34-c0f9-3371-bf80-5e50363c566f,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2011,bioetanol combustion consumption by to the public,0.19212067944,TJ,CH4,10.0,kg/TJ,1.9212067944,kg -b5460067-cff3-39c8-b76a-528c9ac66259,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2011,bioetanol combustion consumption by to the public,0.19212067944,TJ,N2O,0.6,kg/TJ,0.11527240766399999,kg -1c724961-fc25-363d-84f6-0610086f09b6,SESCO,II.1.1,Tucuman,AR-T,annual,2011,bioetanol combustion consumption by to the public,0.295802295228,TJ,CH4,10.0,kg/TJ,2.95802295228,kg -4c023175-e175-37f0-8e23-7bb5ede9001b,SESCO,II.1.1,Tucuman,AR-T,annual,2011,bioetanol combustion consumption by to the public,0.295802295228,TJ,N2O,0.6,kg/TJ,0.17748137713679998,kg -349e6dc7-423f-3b1e-a6b3-903e7662a3d8,SESCO,II.5.1,Santiago del Estero,AR-G,annual,2011,bioetanol combustion consumption by agriculture machines,0.022291033139999996,TJ,CH4,10.0,kg/TJ,0.22291033139999997,kg -2653e992-42f7-35e2-bfc7-0996b2a4a63d,SESCO,II.5.1,Santiago del Estero,AR-G,annual,2011,bioetanol combustion consumption by agriculture machines,0.022291033139999996,TJ,N2O,0.6,kg/TJ,0.013374619883999997,kg -32813049-d9db-3b0c-a5f3-c259dd48310d,SESCO,II.1.1,Buenos Aires,AR-B,annual,2011,bioetanol combustion consumption by to the public,2.2294335105000003,TJ,CH4,10.0,kg/TJ,22.294335105000002,kg -e241926b-862b-38b7-b941-f5a787bcf8e3,SESCO,II.1.1,Buenos Aires,AR-B,annual,2011,bioetanol combustion consumption by to the public,2.2294335105000003,TJ,N2O,0.6,kg/TJ,1.3376601063000002,kg -9c007782-ce89-390b-b963-2995ef85067a,SESCO,II.1.1,Chubut,AR-U,annual,2011,bioetanol combustion consumption by to the public,0.550235187,TJ,CH4,10.0,kg/TJ,5.50235187,kg -1d8587e8-f01c-3792-a67d-64ba38b739a6,SESCO,II.1.1,Chubut,AR-U,annual,2011,bioetanol combustion consumption by to the public,0.550235187,TJ,N2O,0.6,kg/TJ,0.3301411122,kg -78c20000-257e-3af1-a691-d9e278373aab,SESCO,II.1.1,Entre Rios,AR-E,annual,2011,bioetanol combustion consumption by to the public,0.02038952736,TJ,CH4,10.0,kg/TJ,0.20389527359999998,kg -a48e36a3-3c40-31ff-948f-e15a35bd2f8a,SESCO,II.1.1,Entre Rios,AR-E,annual,2011,bioetanol combustion consumption by to the public,0.02038952736,TJ,N2O,0.6,kg/TJ,0.012233716415999999,kg -08330d11-b3b0-3dc8-8f1a-b475b660811b,SESCO,II.1.1,La Pampa,AR-L,annual,2011,bioetanol combustion consumption by to the public,0.01258666452,TJ,CH4,10.0,kg/TJ,0.12586664520000002,kg -714663bc-7eea-34fd-b0c0-6b9b1a3d0ba5,SESCO,II.1.1,La Pampa,AR-L,annual,2011,bioetanol combustion consumption by to the public,0.01258666452,TJ,N2O,0.6,kg/TJ,0.007551998712,kg -e03a3267-ca72-3fc0-a206-44a46edd9c14,SESCO,II.1.1,Neuquén,AR-Q,annual,2011,bioetanol combustion consumption by to the public,0.19500425352,TJ,CH4,10.0,kg/TJ,1.9500425352000001,kg -a9bd3949-26fc-3a32-80ab-8121b8b32c5b,SESCO,II.1.1,Neuquén,AR-Q,annual,2011,bioetanol combustion consumption by to the public,0.19500425352,TJ,N2O,0.6,kg/TJ,0.117002552112,kg -32e7992b-2e43-3b3a-96d7-9a7c956ff0bb,SESCO,II.1.1,Rio Negro,AR-R,annual,2011,bioetanol combustion consumption by to the public,1.2057182715599999,TJ,CH4,10.0,kg/TJ,12.0571827156,kg -d9553ed5-e9e8-39fe-b3c8-d1a4c1df0794,SESCO,II.1.1,Rio Negro,AR-R,annual,2011,bioetanol combustion consumption by to the public,1.2057182715599999,TJ,N2O,0.6,kg/TJ,0.723430962936,kg -562016be-206c-3a9f-9c3e-79efaf60e871,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2011,bioetanol combustion consumption by to the public,0.031785354179999996,TJ,CH4,10.0,kg/TJ,0.3178535418,kg -cd3bf8b1-9eea-332c-9cf6-54b40839413d,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2011,bioetanol combustion consumption by to the public,0.031785354179999996,TJ,N2O,0.6,kg/TJ,0.019071212507999997,kg -9708532c-caa4-3d5f-a455-19f105943aaa,SESCO,II.1.1,Santa Fe,AR-S,annual,2011,bioetanol combustion consumption by to the public,0.00252099702,TJ,CH4,10.0,kg/TJ,0.0252099702,kg -d15500d5-6e0d-3dbf-969a-7be948de5a2e,SESCO,II.1.1,Santa Fe,AR-S,annual,2011,bioetanol combustion consumption by to the public,0.00252099702,TJ,N2O,0.6,kg/TJ,0.001512598212,kg -e5de3e19-7ffb-3d39-ad83-68b048e86762,SESCO,II.1.1,Buenos Aires,AR-B,annual,2011,bioetanol combustion consumption by to the public,76.43144023560001,TJ,CH4,10.0,kg/TJ,764.3144023560001,kg -5e4890b7-d382-3679-851d-c0ae177b877e,SESCO,II.1.1,Buenos Aires,AR-B,annual,2011,bioetanol combustion consumption by to the public,76.43144023560001,TJ,N2O,0.6,kg/TJ,45.85886414136,kg -0044efcc-08c5-3c40-829e-7c8b0081c421,SESCO,II.1.1,Capital Federal,AR-C,annual,2011,bioetanol combustion consumption by to the public,10.800039002039998,TJ,CH4,10.0,kg/TJ,108.00039002039998,kg -04263c9c-389c-30a5-85f9-280b5aa4921b,SESCO,II.1.1,Capital Federal,AR-C,annual,2011,bioetanol combustion consumption by to the public,10.800039002039998,TJ,N2O,0.6,kg/TJ,6.480023401223999,kg -d1a73453-45cd-3e11-ab8b-29e2397a15e2,SESCO,II.1.1,Catamarca,AR-K,annual,2011,bioetanol combustion consumption by to the public,0.7720224242399999,TJ,CH4,10.0,kg/TJ,7.720224242399999,kg -4b3c672d-08d3-315b-8792-7f360fa67813,SESCO,II.1.1,Catamarca,AR-K,annual,2011,bioetanol combustion consumption by to the public,0.7720224242399999,TJ,N2O,0.6,kg/TJ,0.4632134545439999,kg -f2446868-e01e-37ad-9bdc-03a16ce38110,SESCO,II.1.1,Chaco,AR-H,annual,2011,bioetanol combustion consumption by to the public,1.48508070084,TJ,CH4,10.0,kg/TJ,14.8508070084,kg -35ee4c2b-6222-33d6-8f62-ac92d924f33b,SESCO,II.1.1,Chaco,AR-H,annual,2011,bioetanol combustion consumption by to the public,1.48508070084,TJ,N2O,0.6,kg/TJ,0.891048420504,kg -6e222643-324b-3be5-89de-7f048d17f72d,SESCO,II.1.1,Chubut,AR-U,annual,2011,bioetanol combustion consumption by to the public,19.42654569588,TJ,CH4,10.0,kg/TJ,194.26545695880003,kg -98d26409-5b9e-32d1-a83d-a061a4c18018,SESCO,II.1.1,Chubut,AR-U,annual,2011,bioetanol combustion consumption by to the public,19.42654569588,TJ,N2O,0.6,kg/TJ,11.655927417528,kg -c4478702-5bed-34c1-a4b2-92ff9456e1dd,SESCO,II.1.1,Corrientes,AR-W,annual,2011,bioetanol combustion consumption by to the public,2.07001506636,TJ,CH4,10.0,kg/TJ,20.7001506636,kg -1633c064-a3eb-39e3-9ddb-badcaa764f71,SESCO,II.1.1,Corrientes,AR-W,annual,2011,bioetanol combustion consumption by to the public,2.07001506636,TJ,N2O,0.6,kg/TJ,1.242009039816,kg -891a4b68-9fb2-307c-96ea-d63e7ba0e423,SESCO,II.1.1,Córdoba,AR-X,annual,2011,bioetanol combustion consumption by to the public,13.267985161139999,TJ,CH4,10.0,kg/TJ,132.67985161139998,kg -0c7a943e-acb8-3112-9d08-80d45785f696,SESCO,II.1.1,Córdoba,AR-X,annual,2011,bioetanol combustion consumption by to the public,13.267985161139999,TJ,N2O,0.6,kg/TJ,7.960791096683999,kg -109fb094-544b-377b-9974-d0a4eb9e6ede,SESCO,II.1.1,Entre Rios,AR-E,annual,2011,bioetanol combustion consumption by to the public,3.33758659842,TJ,CH4,10.0,kg/TJ,33.375865984200004,kg -cbd23d8b-6291-393d-ba5a-cb5d65fb08db,SESCO,II.1.1,Entre Rios,AR-E,annual,2011,bioetanol combustion consumption by to the public,3.33758659842,TJ,N2O,0.6,kg/TJ,2.002551959052,kg -82b93641-54ed-3cf0-9134-c33a633ccf9a,SESCO,II.1.1,Formosa,AR-P,annual,2011,bioetanol combustion consumption by to the public,0.20718999558,TJ,CH4,10.0,kg/TJ,2.0718999558,kg -9e144b0e-6f1d-3e8f-a356-591f15936a58,SESCO,II.1.1,Formosa,AR-P,annual,2011,bioetanol combustion consumption by to the public,0.20718999558,TJ,N2O,0.6,kg/TJ,0.124313997348,kg -f9898260-50e1-371f-a470-cfd9c2b0646e,SESCO,II.1.1,Jujuy,AR-Y,annual,2011,bioetanol combustion consumption by to the public,0.10248234210000001,TJ,CH4,10.0,kg/TJ,1.0248234210000002,kg -925d9af1-79be-31e5-ab27-9d69591e08c9,SESCO,II.1.1,Jujuy,AR-Y,annual,2011,bioetanol combustion consumption by to the public,0.10248234210000001,TJ,N2O,0.6,kg/TJ,0.061489405260000005,kg -7ef05e80-56fe-3310-bbc7-9f70e4f166b2,SESCO,II.1.1,La Pampa,AR-L,annual,2011,bioetanol combustion consumption by to the public,3.00791926494,TJ,CH4,10.0,kg/TJ,30.0791926494,kg -0b255e24-18d6-3322-8e3e-c595f68acb5c,SESCO,II.1.1,La Pampa,AR-L,annual,2011,bioetanol combustion consumption by to the public,3.00791926494,TJ,N2O,0.6,kg/TJ,1.804751558964,kg -1fc505ed-08de-3e7a-8bb0-68467959a822,SESCO,II.1.1,La Rioja,AR-F,annual,2011,bioetanol combustion consumption by to the public,0.40127523767999995,TJ,CH4,10.0,kg/TJ,4.0127523768,kg -f5e7a43f-0b7d-3b97-9aab-24c0578a1150,SESCO,II.1.1,La Rioja,AR-F,annual,2011,bioetanol combustion consumption by to the public,0.40127523767999995,TJ,N2O,0.6,kg/TJ,0.24076514260799997,kg -b70efe1c-f6e8-3f3e-aa0a-3df8557521ee,SESCO,II.1.1,Mendoza,AR-M,annual,2011,bioetanol combustion consumption by to the public,1.6917014802600001,TJ,CH4,10.0,kg/TJ,16.9170148026,kg -4b72a74b-32f2-3914-82a2-f47b8a094380,SESCO,II.1.1,Mendoza,AR-M,annual,2011,bioetanol combustion consumption by to the public,1.6917014802600001,TJ,N2O,0.6,kg/TJ,1.0150208881560001,kg -75bee87d-4441-3a10-9d93-1ece81cf765c,SESCO,II.1.1,Misiones,AR-N,annual,2011,bioetanol combustion consumption by to the public,0.70720378614,TJ,CH4,10.0,kg/TJ,7.0720378614,kg -1f836740-2c40-3c4a-8821-20e794ebbbe7,SESCO,II.1.1,Misiones,AR-N,annual,2011,bioetanol combustion consumption by to the public,0.70720378614,TJ,N2O,0.6,kg/TJ,0.424322271684,kg -49d2a5d5-851d-3389-8ffc-57213da65b15,SESCO,II.1.1,Neuquén,AR-Q,annual,2011,bioetanol combustion consumption by to the public,7.3109706051600005,TJ,CH4,10.0,kg/TJ,73.1097060516,kg -457f8baf-2fef-3bd1-90f7-93a310f94f6f,SESCO,II.1.1,Neuquén,AR-Q,annual,2011,bioetanol combustion consumption by to the public,7.3109706051600005,TJ,N2O,0.6,kg/TJ,4.386582363096,kg -3ada4402-09c8-32e6-8e83-40b05802cbc1,SESCO,II.1.1,Rio Negro,AR-R,annual,2011,bioetanol combustion consumption by to the public,14.339115339300001,TJ,CH4,10.0,kg/TJ,143.39115339300002,kg -b34472d1-3a56-30db-81ae-d28db9d786ac,SESCO,II.1.1,Rio Negro,AR-R,annual,2011,bioetanol combustion consumption by to the public,14.339115339300001,TJ,N2O,0.6,kg/TJ,8.60346920358,kg -1747531f-f72d-3083-8dbd-db452319893d,SESCO,II.1.1,Salta,AR-A,annual,2011,bioetanol combustion consumption by to the public,0.13595617206,TJ,CH4,10.0,kg/TJ,1.3595617206,kg -034a6766-43e9-3d22-ab8a-dc8f9f3474e7,SESCO,II.1.1,Salta,AR-A,annual,2011,bioetanol combustion consumption by to the public,0.13595617206,TJ,N2O,0.6,kg/TJ,0.081573703236,kg -ad6640a8-6df5-32da-8403-cc26d5666da0,SESCO,II.1.1,San Juan,AR-J,annual,2011,bioetanol combustion consumption by to the public,1.02166035156,TJ,CH4,10.0,kg/TJ,10.2166035156,kg -a6c1a8a3-1e82-3815-ad34-8a542d0de350,SESCO,II.1.1,San Juan,AR-J,annual,2011,bioetanol combustion consumption by to the public,1.02166035156,TJ,N2O,0.6,kg/TJ,0.612996210936,kg -cb45aafb-b47d-31f8-8878-525458d63745,SESCO,II.1.1,San Luis,AR-D,annual,2011,bioetanol combustion consumption by to the public,0.5893278962399999,TJ,CH4,10.0,kg/TJ,5.893278962399999,kg -52e413fb-ef0f-3723-819f-7622bf3ee33f,SESCO,II.1.1,San Luis,AR-D,annual,2011,bioetanol combustion consumption by to the public,0.5893278962399999,TJ,N2O,0.6,kg/TJ,0.35359673774399997,kg -d8645201-7d28-32c9-949c-0bcff5521e0a,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2011,bioetanol combustion consumption by to the public,12.99434088312,TJ,CH4,10.0,kg/TJ,129.9434088312,kg -6059f466-0c14-38c2-87da-384d80399e3f,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2011,bioetanol combustion consumption by to the public,12.99434088312,TJ,N2O,0.6,kg/TJ,7.796604529871999,kg -fda6dbca-36c7-3f90-bbb1-71ce1e8a43e5,SESCO,II.1.1,Santa Fe,AR-S,annual,2011,bioetanol combustion consumption by to the public,13.17330951642,TJ,CH4,10.0,kg/TJ,131.7330951642,kg -aae3b821-32e3-342d-b4be-a79767698a1d,SESCO,II.1.1,Santa Fe,AR-S,annual,2011,bioetanol combustion consumption by to the public,13.17330951642,TJ,N2O,0.6,kg/TJ,7.903985709852,kg -d3bb8890-3ead-3be3-b1d4-58835ee0b98a,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2011,bioetanol combustion consumption by to the public,0.76197805974,TJ,CH4,10.0,kg/TJ,7.6197805974,kg -52aedc99-3e9d-3178-b919-9c587b59faba,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2011,bioetanol combustion consumption by to the public,0.76197805974,TJ,N2O,0.6,kg/TJ,0.457186835844,kg -80e209eb-d7f3-31c4-a096-9807ff897112,SESCO,II.1.1,Tucuman,AR-T,annual,2011,bioetanol combustion consumption by to the public,1.1069805708,TJ,CH4,10.0,kg/TJ,11.069805708,kg -c9e8ba13-35cb-3853-9890-eee3cafe16d8,SESCO,II.1.1,Tucuman,AR-T,annual,2011,bioetanol combustion consumption by to the public,1.1069805708,TJ,N2O,0.6,kg/TJ,0.66418834248,kg -992db803-0e58-3272-b507-ad112b3ab134,SESCO,II.1.1,Buenos Aires,AR-B,annual,2011,bioetanol combustion consumption by to the public,18.1953077085,TJ,CH4,10.0,kg/TJ,181.953077085,kg -81fa22e7-fcf4-3fee-b3f9-f5592805c9bc,SESCO,II.1.1,Buenos Aires,AR-B,annual,2011,bioetanol combustion consumption by to the public,18.1953077085,TJ,N2O,0.6,kg/TJ,10.917184625099999,kg -0a611b8d-763c-3a51-b6ee-253005a5bbec,SESCO,II.1.1,Capital Federal,AR-C,annual,2011,bioetanol combustion consumption by to the public,3.16507916502,TJ,CH4,10.0,kg/TJ,31.6507916502,kg -46d9462b-2e33-34a7-bb5a-17676802b733,SESCO,II.1.1,Capital Federal,AR-C,annual,2011,bioetanol combustion consumption by to the public,3.16507916502,TJ,N2O,0.6,kg/TJ,1.8990474990119999,kg -4218d985-37e1-34ea-b6a8-5988bb667e64,SESCO,II.1.1,Catamarca,AR-K,annual,2011,bioetanol combustion consumption by to the public,0.08596910862,TJ,CH4,10.0,kg/TJ,0.8596910862,kg -456ee6ec-ec76-3b65-b6a4-aedb7bf1dd26,SESCO,II.1.1,Catamarca,AR-K,annual,2011,bioetanol combustion consumption by to the public,0.08596910862,TJ,N2O,0.6,kg/TJ,0.051581465172,kg -11fde66b-09ef-3357-9ce9-71319b9c7bc8,SESCO,II.1.1,Chaco,AR-H,annual,2011,bioetanol combustion consumption by to the public,0.11657768508,TJ,CH4,10.0,kg/TJ,1.1657768508,kg -7bdda4a3-8e67-3b62-b33e-9ab562197a72,SESCO,II.1.1,Chaco,AR-H,annual,2011,bioetanol combustion consumption by to the public,0.11657768508,TJ,N2O,0.6,kg/TJ,0.069946611048,kg -0ba0c022-4f5d-368c-b469-a340c5c6948b,SESCO,II.1.1,Chubut,AR-U,annual,2011,bioetanol combustion consumption by to the public,3.02976037872,TJ,CH4,10.0,kg/TJ,30.297603787199996,kg -d73db366-acd5-39e0-8133-c48b497bb8ff,SESCO,II.1.1,Chubut,AR-U,annual,2011,bioetanol combustion consumption by to the public,3.02976037872,TJ,N2O,0.6,kg/TJ,1.8178562272319998,kg -bff79f2a-74e2-3e40-8bf5-bbe7227239d2,SESCO,II.1.1,Corrientes,AR-W,annual,2011,bioetanol combustion consumption by to the public,0.27823677876,TJ,CH4,10.0,kg/TJ,2.7823677876,kg -2e2fcd67-28d4-3d35-ad0a-885ba0de8c59,SESCO,II.1.1,Corrientes,AR-W,annual,2011,bioetanol combustion consumption by to the public,0.27823677876,TJ,N2O,0.6,kg/TJ,0.166942067256,kg -255da746-7c06-3ded-9023-e383b6b0c245,SESCO,II.1.1,Córdoba,AR-X,annual,2011,bioetanol combustion consumption by to the public,2.5483441071599997,TJ,CH4,10.0,kg/TJ,25.483441071599998,kg -cbf5f4a9-4015-332a-8c49-3d2c27569248,SESCO,II.1.1,Córdoba,AR-X,annual,2011,bioetanol combustion consumption by to the public,2.5483441071599997,TJ,N2O,0.6,kg/TJ,1.5290064642959997,kg -673c29d1-80f1-31b4-8a60-aba24549f6e5,SESCO,II.1.1,Entre Rios,AR-E,annual,2011,bioetanol combustion consumption by to the public,0.6487722134999999,TJ,CH4,10.0,kg/TJ,6.487722134999999,kg -16ab46ce-85e7-3f5e-a1fb-ee368dd61c19,SESCO,II.1.1,Entre Rios,AR-E,annual,2011,bioetanol combustion consumption by to the public,0.6487722134999999,TJ,N2O,0.6,kg/TJ,0.3892633280999999,kg -a09f74c5-2934-3568-9bc1-0c28389ebbb3,SESCO,II.1.1,Jujuy,AR-Y,annual,2011,bioetanol combustion consumption by to the public,0.01727588088,TJ,CH4,10.0,kg/TJ,0.1727588088,kg -8485e2ce-621b-3c1f-a2b5-011117fdd541,SESCO,II.1.1,Jujuy,AR-Y,annual,2011,bioetanol combustion consumption by to the public,0.01727588088,TJ,N2O,0.6,kg/TJ,0.010365528528,kg -cf58640c-7e2d-34b2-8d15-ab51b0f88326,SESCO,II.1.1,La Pampa,AR-L,annual,2011,bioetanol combustion consumption by to the public,0.6550992044999999,TJ,CH4,10.0,kg/TJ,6.550992044999999,kg -694e9e46-ac9a-3e06-933e-9a4bae42fe7e,SESCO,II.1.1,La Pampa,AR-L,annual,2011,bioetanol combustion consumption by to the public,0.6550992044999999,TJ,N2O,0.6,kg/TJ,0.39305952269999994,kg -f9c5b7da-025d-39ad-b217-c3126bf76cb6,SESCO,II.1.1,La Rioja,AR-F,annual,2011,bioetanol combustion consumption by to the public,0.0404437455,TJ,CH4,10.0,kg/TJ,0.40443745500000006,kg -e81f6bb4-eec2-3475-a380-6107f4af9bcd,SESCO,II.1.1,La Rioja,AR-F,annual,2011,bioetanol combustion consumption by to the public,0.0404437455,TJ,N2O,0.6,kg/TJ,0.024266247300000002,kg -52504edf-9001-31a0-80e6-7c1b068b1926,SESCO,II.1.1,Mendoza,AR-M,annual,2011,bioetanol combustion consumption by to the public,0.23452131852000002,TJ,CH4,10.0,kg/TJ,2.3452131852000004,kg -d53d3bf7-8a8c-3439-9d6c-9f54a4ae40ff,SESCO,II.1.1,Mendoza,AR-M,annual,2011,bioetanol combustion consumption by to the public,0.23452131852000002,TJ,N2O,0.6,kg/TJ,0.140712791112,kg -16527381-f421-39dc-a70a-754f12cd074c,SESCO,II.1.1,Misiones,AR-N,annual,2011,bioetanol combustion consumption by to the public,0.09464241204,TJ,CH4,10.0,kg/TJ,0.9464241204,kg -a1896251-492a-32fe-bf24-5205b0a91b8c,SESCO,II.1.1,Misiones,AR-N,annual,2011,bioetanol combustion consumption by to the public,0.09464241204,TJ,N2O,0.6,kg/TJ,0.056785447223999995,kg -0f563d14-e3ba-3c68-80d1-6932f115fd0c,SESCO,II.1.1,Neuquén,AR-Q,annual,2011,bioetanol combustion consumption by to the public,1.79405472618,TJ,CH4,10.0,kg/TJ,17.9405472618,kg -80111c19-ec9a-349a-b6a4-6d259892d52e,SESCO,II.1.1,Neuquén,AR-Q,annual,2011,bioetanol combustion consumption by to the public,1.79405472618,TJ,N2O,0.6,kg/TJ,1.076432835708,kg -05b151de-0b7c-31b1-854a-638f16abc873,SESCO,II.1.1,Rio Negro,AR-R,annual,2011,bioetanol combustion consumption by to the public,2.11575175524,TJ,CH4,10.0,kg/TJ,21.157517552399998,kg -14504416-d35f-3e2a-b2c4-12bdcef09644,SESCO,II.1.1,Rio Negro,AR-R,annual,2011,bioetanol combustion consumption by to the public,2.11575175524,TJ,N2O,0.6,kg/TJ,1.2694510531439998,kg -6a03fdbd-500f-3cc5-9f52-378cea7ad100,SESCO,II.1.1,Salta,AR-A,annual,2011,bioetanol combustion consumption by to the public,0.01765635246,TJ,CH4,10.0,kg/TJ,0.1765635246,kg -0036f159-6305-30b9-9a4b-e141e4bb0501,SESCO,II.1.1,Salta,AR-A,annual,2011,bioetanol combustion consumption by to the public,0.01765635246,TJ,N2O,0.6,kg/TJ,0.010593811476,kg -7df49116-435a-3512-81c5-4549631c5e16,SESCO,II.1.1,San Juan,AR-J,annual,2011,bioetanol combustion consumption by to the public,0.1717341345,TJ,CH4,10.0,kg/TJ,1.717341345,kg -2bf8eeae-adba-363c-a422-fd8f9d3fdd4f,SESCO,II.1.1,San Juan,AR-J,annual,2011,bioetanol combustion consumption by to the public,0.1717341345,TJ,N2O,0.6,kg/TJ,0.10304048069999999,kg -a92d848c-0e6b-3e39-9a5c-c152479681cf,SESCO,II.1.1,San Luis,AR-D,annual,2011,bioetanol combustion consumption by to the public,0.1077761376,TJ,CH4,10.0,kg/TJ,1.077761376,kg -9d2d30d7-b34a-3e10-8eb4-d46e2a3142c0,SESCO,II.1.1,San Luis,AR-D,annual,2011,bioetanol combustion consumption by to the public,0.1077761376,TJ,N2O,0.6,kg/TJ,0.06466568255999999,kg -19259d69-e98b-3f23-b05b-9a082b7e1463,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2011,bioetanol combustion consumption by to the public,2.35156446162,TJ,CH4,10.0,kg/TJ,23.515644616200003,kg -c72fdb80-f839-3568-9842-b2ccbd26a977,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2011,bioetanol combustion consumption by to the public,2.35156446162,TJ,N2O,0.6,kg/TJ,1.410938676972,kg -362ee695-3205-394f-958a-c7646255f8e8,SESCO,II.1.1,Santa Fe,AR-S,annual,2011,bioetanol combustion consumption by to the public,3.7788249859199996,TJ,CH4,10.0,kg/TJ,37.78824985919999,kg -4da27e88-f2cb-3d19-9583-6971b1f8406f,SESCO,II.1.1,Santa Fe,AR-S,annual,2011,bioetanol combustion consumption by to the public,3.7788249859199996,TJ,N2O,0.6,kg/TJ,2.2672949915519998,kg -b811f0d5-a436-32ff-8703-0763c2abfcb4,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2011,bioetanol combustion consumption by to the public,0.08925232697999999,TJ,CH4,10.0,kg/TJ,0.8925232697999999,kg -e3fb6a85-4f9e-3087-8c0b-4962504959f5,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2011,bioetanol combustion consumption by to the public,0.08925232697999999,TJ,N2O,0.6,kg/TJ,0.05355139618799999,kg -b1069a51-ba6a-3f00-8524-31f2481f2854,SESCO,II.1.1,Tucuman,AR-T,annual,2011,bioetanol combustion consumption by to the public,0.11960484138,TJ,CH4,10.0,kg/TJ,1.1960484137999998,kg -7ded0916-18e9-377f-9534-82c3f700aa65,SESCO,II.1.1,Tucuman,AR-T,annual,2011,bioetanol combustion consumption by to the public,0.11960484138,TJ,N2O,0.6,kg/TJ,0.07176290482799999,kg -57d075e3-0047-3c51-a85e-ba4f5617f610,SESCO,I.3.1,La Pampa,AR-L,annual,2011,bioetanol combustion consumption by petrochemical industries,0.006832724219999999,TJ,CH4,10.0,kg/TJ,0.0683272422,kg -42329340-1a20-3262-8107-4ad68ecf7a4c,SESCO,I.3.1,La Pampa,AR-L,annual,2011,bioetanol combustion consumption by petrochemical industries,0.006832724219999999,TJ,N2O,0.6,kg/TJ,0.004099634531999999,kg -7883db2b-f218-37cb-a714-622899d629f2,SESCO,I.3.1,La Pampa,AR-L,annual,2011,bioetanol combustion consumption by petrochemical industries,0.0085148091,TJ,CH4,10.0,kg/TJ,0.085148091,kg -2c20889f-358a-3720-a4f5-43e8f76ad9b2,SESCO,I.3.1,La Pampa,AR-L,annual,2011,bioetanol combustion consumption by petrochemical industries,0.0085148091,TJ,N2O,0.6,kg/TJ,0.0051088854599999995,kg -900c7368-cd17-38d9-9b0f-988a9ae88a88,SESCO,II.1.1,Buenos Aires,AR-B,annual,2011,bioetanol combustion consumption by to the public,1.4189076180000002,TJ,CH4,10.0,kg/TJ,14.189076180000002,kg -f7f85055-a185-3250-aa73-e5761d6e1425,SESCO,II.1.1,Buenos Aires,AR-B,annual,2011,bioetanol combustion consumption by to the public,1.4189076180000002,TJ,N2O,0.6,kg/TJ,0.8513445708000001,kg -4c6ab6c9-e57d-32a1-951e-22c31d2eaf19,SESCO,II.1.1,Capital Federal,AR-C,annual,2011,bioetanol combustion consumption by to the public,0.0008521199999999999,TJ,CH4,10.0,kg/TJ,0.0085212,kg -cf9c2973-0403-3549-ba82-de993fcf4ec7,SESCO,II.1.1,Capital Federal,AR-C,annual,2011,bioetanol combustion consumption by to the public,0.0008521199999999999,TJ,N2O,0.6,kg/TJ,0.0005112719999999999,kg -a65177d1-9180-3080-a59d-a88429392216,SESCO,II.1.1,Chaco,AR-H,annual,2011,bioetanol combustion consumption by to the public,0.0068169599999999995,TJ,CH4,10.0,kg/TJ,0.0681696,kg -23146f26-1011-3e43-a7c1-22232ca84ba7,SESCO,II.1.1,Chaco,AR-H,annual,2011,bioetanol combustion consumption by to the public,0.0068169599999999995,TJ,N2O,0.6,kg/TJ,0.004090175999999999,kg -5f3c7673-2996-3d73-be6e-99408fc6223f,SESCO,II.1.1,Corrientes,AR-W,annual,2011,bioetanol combustion consumption by to the public,0.01405998,TJ,CH4,10.0,kg/TJ,0.1405998,kg -61e3d07b-d0bc-3128-8152-644dbe99a6b8,SESCO,II.1.1,Corrientes,AR-W,annual,2011,bioetanol combustion consumption by to the public,0.01405998,TJ,N2O,0.6,kg/TJ,0.008435988,kg -a5cf0fff-0aec-39a2-9605-a22b3479bb01,SESCO,II.1.1,Córdoba,AR-X,annual,2011,bioetanol combustion consumption by to the public,0.56623374,TJ,CH4,10.0,kg/TJ,5.6623374,kg -a1abec36-3b08-323e-bcba-4dc3780dbfc4,SESCO,II.1.1,Córdoba,AR-X,annual,2011,bioetanol combustion consumption by to the public,0.56623374,TJ,N2O,0.6,kg/TJ,0.339740244,kg -fac193a0-19f5-3930-98fb-de122437c26e,SESCO,II.1.1,Entre Rios,AR-E,annual,2011,bioetanol combustion consumption by to the public,0.13165253999999998,TJ,CH4,10.0,kg/TJ,1.3165253999999997,kg -699f40cc-7045-3df5-a03a-95842ad91fe1,SESCO,II.1.1,Entre Rios,AR-E,annual,2011,bioetanol combustion consumption by to the public,0.13165253999999998,TJ,N2O,0.6,kg/TJ,0.078991524,kg -1ce0b3af-4d5c-382b-9fb7-1ca05bcf56bd,SESCO,II.1.1,Santa Fe,AR-S,annual,2011,bioetanol combustion consumption by to the public,0.38132370000000004,TJ,CH4,10.0,kg/TJ,3.8132370000000004,kg -1e4d6afb-a6ef-3f8d-ae54-2a4db915126e,SESCO,II.1.1,Santa Fe,AR-S,annual,2011,bioetanol combustion consumption by to the public,0.38132370000000004,TJ,N2O,0.6,kg/TJ,0.22879422000000002,kg -026c98c1-3a3c-30b3-ae96-348137655b01,SESCO,II.1.1,Buenos Aires,AR-B,annual,2011,bioetanol combustion consumption by to the public,15.288566616,TJ,CH4,10.0,kg/TJ,152.88566616,kg -36f9e7b6-6ece-3ac9-a55b-6cce7429ef54,SESCO,II.1.1,Buenos Aires,AR-B,annual,2011,bioetanol combustion consumption by to the public,15.288566616,TJ,N2O,0.6,kg/TJ,9.1731399696,kg -76bcdeb7-8f63-31b5-8d7b-11c8cc2a9d4a,SESCO,II.1.1,Capital Federal,AR-C,annual,2011,bioetanol combustion consumption by to the public,0.48400415999999996,TJ,CH4,10.0,kg/TJ,4.840041599999999,kg -0d5ada12-1bf8-3a3f-a6f4-bd30613dfc91,SESCO,II.1.1,Capital Federal,AR-C,annual,2011,bioetanol combustion consumption by to the public,0.48400415999999996,TJ,N2O,0.6,kg/TJ,0.29040249599999995,kg -6f1f9e8e-2d20-31c3-be65-c98d667e4bca,SESCO,II.1.1,Chaco,AR-H,annual,2011,bioetanol combustion consumption by to the public,0.06518718,TJ,CH4,10.0,kg/TJ,0.6518718,kg -1c018b0d-93e7-371a-92d0-5fa877cce991,SESCO,II.1.1,Chaco,AR-H,annual,2011,bioetanol combustion consumption by to the public,0.06518718,TJ,N2O,0.6,kg/TJ,0.039112308,kg -4fed3264-0f6d-3b64-8d32-c2d76411ed0b,SESCO,II.1.1,Corrientes,AR-W,annual,2011,bioetanol combustion consumption by to the public,0.0383454,TJ,CH4,10.0,kg/TJ,0.383454,kg -24f070b4-08ff-3f62-bdcd-1e9497ffe9a0,SESCO,II.1.1,Corrientes,AR-W,annual,2011,bioetanol combustion consumption by to the public,0.0383454,TJ,N2O,0.6,kg/TJ,0.02300724,kg -9f10ace9-da24-3baa-98d9-b21aed7450da,SESCO,II.1.1,Córdoba,AR-X,annual,2011,bioetanol combustion consumption by to the public,5.4003105,TJ,CH4,10.0,kg/TJ,54.003105,kg -fcfc1b1c-06bb-3798-bc4b-0c39add9bad6,SESCO,II.1.1,Córdoba,AR-X,annual,2011,bioetanol combustion consumption by to the public,5.4003105,TJ,N2O,0.6,kg/TJ,3.2401863,kg -a952e414-923d-3013-88d3-e8fa0013f278,SESCO,II.1.1,Entre Rios,AR-E,annual,2011,bioetanol combustion consumption by to the public,1.9056385619999998,TJ,CH4,10.0,kg/TJ,19.056385619999997,kg -f827f4cb-6630-393f-93dc-a30ce2dc4983,SESCO,II.1.1,Entre Rios,AR-E,annual,2011,bioetanol combustion consumption by to the public,1.9056385619999998,TJ,N2O,0.6,kg/TJ,1.1433831371999998,kg -1400762a-2ce6-3140-988c-c7f8bc6bc1fb,SESCO,II.1.1,Santa Fe,AR-S,annual,2011,bioetanol combustion consumption by to the public,2.45325348,TJ,CH4,10.0,kg/TJ,24.5325348,kg -0473618f-e414-37f2-85a4-9ef4895fee87,SESCO,II.1.1,Santa Fe,AR-S,annual,2011,bioetanol combustion consumption by to the public,2.45325348,TJ,N2O,0.6,kg/TJ,1.4719520879999999,kg -e4ee9430-ceca-31b5-a1dc-7fb75acdf691,SESCO,II.1.1,Buenos Aires,AR-B,annual,2011,bioetanol combustion consumption by to the public,1.818764928,TJ,CH4,10.0,kg/TJ,18.18764928,kg -57064dba-6bea-375b-8b08-05a2bfd3cb7e,SESCO,II.1.1,Buenos Aires,AR-B,annual,2011,bioetanol combustion consumption by to the public,1.818764928,TJ,N2O,0.6,kg/TJ,1.0912589568,kg -d55b87ab-b6c3-3cc0-a799-b7b3c6579796,SESCO,II.1.1,Capital Federal,AR-C,annual,2011,bioetanol combustion consumption by to the public,0.025989659999999998,TJ,CH4,10.0,kg/TJ,0.2598966,kg -45285bc9-964b-31ef-8a74-f91aff1f05fd,SESCO,II.1.1,Capital Federal,AR-C,annual,2011,bioetanol combustion consumption by to the public,0.025989659999999998,TJ,N2O,0.6,kg/TJ,0.015593795999999998,kg -967abba2-c04a-3722-ba6a-d55f191eb5d9,SESCO,II.1.1,Chaco,AR-H,annual,2011,bioetanol combustion consumption by to the public,0.0017042399999999999,TJ,CH4,10.0,kg/TJ,0.0170424,kg -712a02f9-ab94-3019-976a-a48a0076e110,SESCO,II.1.1,Chaco,AR-H,annual,2011,bioetanol combustion consumption by to the public,0.0017042399999999999,TJ,N2O,0.6,kg/TJ,0.0010225439999999998,kg -945474ae-87b7-3f12-9226-83815f5641d9,SESCO,II.1.1,Corrientes,AR-W,annual,2011,bioetanol combustion consumption by to the public,0.0034084799999999998,TJ,CH4,10.0,kg/TJ,0.0340848,kg -625dd9f5-c503-32bd-aa48-3023cdcaa470,SESCO,II.1.1,Corrientes,AR-W,annual,2011,bioetanol combustion consumption by to the public,0.0034084799999999998,TJ,N2O,0.6,kg/TJ,0.0020450879999999996,kg -824543f2-2ce8-3962-94f7-e2249369bd39,SESCO,II.1.1,Córdoba,AR-X,annual,2011,bioetanol combustion consumption by to the public,0.6276289859999999,TJ,CH4,10.0,kg/TJ,6.276289859999999,kg -0220e2c9-9480-3aaf-bfe9-60e8483d89c0,SESCO,II.1.1,Córdoba,AR-X,annual,2011,bioetanol combustion consumption by to the public,0.6276289859999999,TJ,N2O,0.6,kg/TJ,0.3765773916,kg -3ded5fd1-48e9-3f79-b440-8579df39b158,SESCO,II.1.1,Entre Rios,AR-E,annual,2011,bioetanol combustion consumption by to the public,0.30292866,TJ,CH4,10.0,kg/TJ,3.0292866000000003,kg -d121cfe7-2f83-370b-ba28-320ba069be41,SESCO,II.1.1,Entre Rios,AR-E,annual,2011,bioetanol combustion consumption by to the public,0.30292866,TJ,N2O,0.6,kg/TJ,0.181757196,kg -ada1b83f-0a2f-3e29-bb30-0ccdc8bb7198,SESCO,II.1.1,Santa Fe,AR-S,annual,2011,bioetanol combustion consumption by to the public,0.44480664,TJ,CH4,10.0,kg/TJ,4.4480664,kg -411c1c34-1d3f-3f8a-bebb-16013ad53d09,SESCO,II.1.1,Santa Fe,AR-S,annual,2011,bioetanol combustion consumption by to the public,0.44480664,TJ,N2O,0.6,kg/TJ,0.26688398399999996,kg -5b18f16a-590c-3035-8e6d-c3d6dcd20641,SESCO,II.1.1,Catamarca,AR-K,annual,2011,bioetanol combustion consumption by to the public,0.8018406593999999,TJ,CH4,10.0,kg/TJ,8.018406594,kg -56138584-ea42-3a08-b30d-e82008b29e74,SESCO,II.1.1,Catamarca,AR-K,annual,2011,bioetanol combustion consumption by to the public,0.8018406593999999,TJ,N2O,0.6,kg/TJ,0.48110439563999996,kg -9df4af21-89e4-3ffd-9640-858c4a6db03b,SESCO,II.1.1,Chaco,AR-H,annual,2011,bioetanol combustion consumption by to the public,0.7883388179999999,TJ,CH4,10.0,kg/TJ,7.883388179999999,kg -9629a0da-f172-3062-bfa5-31a48b202fd1,SESCO,II.1.1,Chaco,AR-H,annual,2011,bioetanol combustion consumption by to the public,0.7883388179999999,TJ,N2O,0.6,kg/TJ,0.4730032907999999,kg -18976950-50f4-3cdb-a5c0-6e66ed259251,SESCO,II.1.1,Córdoba,AR-X,annual,2011,bioetanol combustion consumption by to the public,0.0647440776,TJ,CH4,10.0,kg/TJ,0.647440776,kg -122b774c-2a4b-3e98-a765-deea2971376b,SESCO,II.1.1,Córdoba,AR-X,annual,2011,bioetanol combustion consumption by to the public,0.0647440776,TJ,N2O,0.6,kg/TJ,0.038846446560000004,kg -ebbac39c-ddc1-3ae2-b8d1-1df827f3ca14,SESCO,II.1.1,Jujuy,AR-Y,annual,2011,bioetanol combustion consumption by to the public,1.9059751493999997,TJ,CH4,10.0,kg/TJ,19.059751493999997,kg -82b22d09-57e9-39fc-8b81-4867ad5bd850,SESCO,II.1.1,Jujuy,AR-Y,annual,2011,bioetanol combustion consumption by to the public,1.9059751493999997,TJ,N2O,0.6,kg/TJ,1.1435850896399997,kg -18fb4eaa-3771-3246-a997-e2d5dbdcdad2,SESCO,II.1.1,La Rioja,AR-F,annual,2011,bioetanol combustion consumption by to the public,0.6414333299999999,TJ,CH4,10.0,kg/TJ,6.414333299999999,kg -41807f85-3c8e-3ba9-adcb-5501a6159006,SESCO,II.1.1,La Rioja,AR-F,annual,2011,bioetanol combustion consumption by to the public,0.6414333299999999,TJ,N2O,0.6,kg/TJ,0.3848599979999999,kg -1b7f7e94-1432-39e5-a1e2-150850c773b8,SESCO,II.1.1,Salta,AR-A,annual,2011,bioetanol combustion consumption by to the public,3.6473377572000003,TJ,CH4,10.0,kg/TJ,36.473377572000004,kg -87013b4c-1616-3aeb-ad56-fa14d6d69985,SESCO,II.1.1,Salta,AR-A,annual,2011,bioetanol combustion consumption by to the public,3.6473377572000003,TJ,N2O,0.6,kg/TJ,2.18840265432,kg -4336904a-18a7-372d-adc1-028b9a5ed57e,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2011,bioetanol combustion consumption by to the public,1.2347772678,TJ,CH4,10.0,kg/TJ,12.347772678,kg -0432ad7f-c2ea-3896-92fd-2520a754deb6,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2011,bioetanol combustion consumption by to the public,1.2347772678,TJ,N2O,0.6,kg/TJ,0.74086636068,kg -5eb4260a-6a03-3de1-95b5-e70d706546e6,SESCO,II.1.1,Tucuman,AR-T,annual,2011,bioetanol combustion consumption by to the public,2.8792197467999996,TJ,CH4,10.0,kg/TJ,28.792197467999998,kg -ba7d1b51-6479-338a-9b83-4a49f3d301a0,SESCO,II.1.1,Tucuman,AR-T,annual,2011,bioetanol combustion consumption by to the public,2.8792197467999996,TJ,N2O,0.6,kg/TJ,1.7275318480799997,kg -0a3739c5-112a-38a9-9f69-466d5f8f5910,SESCO,II.1.1,Catamarca,AR-K,annual,2011,bioetanol combustion consumption by to the public,2.4875001828,TJ,CH4,10.0,kg/TJ,24.875001828,kg -0caa3426-89d4-3b8a-a5f3-c6eb97e90d7e,SESCO,II.1.1,Catamarca,AR-K,annual,2011,bioetanol combustion consumption by to the public,2.4875001828,TJ,N2O,0.6,kg/TJ,1.49250010968,kg -4e206c86-9929-35c3-ba7b-2973ecf8b01a,SESCO,II.1.1,Chaco,AR-H,annual,2011,bioetanol combustion consumption by to the public,0.9554012045999999,TJ,CH4,10.0,kg/TJ,9.554012045999999,kg -7dbb5184-7e2b-3e4b-9ae6-e180e1d760fc,SESCO,II.1.1,Chaco,AR-H,annual,2011,bioetanol combustion consumption by to the public,0.9554012045999999,TJ,N2O,0.6,kg/TJ,0.5732407227599999,kg -8c7cb882-b3ca-3205-8c71-8148905dacc9,SESCO,II.1.1,Córdoba,AR-X,annual,2011,bioetanol combustion consumption by to the public,0.3005342028,TJ,CH4,10.0,kg/TJ,3.005342028,kg -e4606577-a185-3821-ad9b-01686bb72571,SESCO,II.1.1,Córdoba,AR-X,annual,2011,bioetanol combustion consumption by to the public,0.3005342028,TJ,N2O,0.6,kg/TJ,0.18032052167999998,kg -482a09a9-6351-3384-a568-caf0d05dd768,SESCO,II.1.1,Jujuy,AR-Y,annual,2011,bioetanol combustion consumption by to the public,3.3541701318,TJ,CH4,10.0,kg/TJ,33.541701318,kg -cf2e461d-b9e4-34ce-b05d-c6af48379ade,SESCO,II.1.1,Jujuy,AR-Y,annual,2011,bioetanol combustion consumption by to the public,3.3541701318,TJ,N2O,0.6,kg/TJ,2.01250207908,kg -01315e4b-49cf-3672-8021-a0bb0f991557,SESCO,II.1.1,La Rioja,AR-F,annual,2011,bioetanol combustion consumption by to the public,2.44068471,TJ,CH4,10.0,kg/TJ,24.4068471,kg -20edf589-1893-381a-9cc0-45dfcd868130,SESCO,II.1.1,La Rioja,AR-F,annual,2011,bioetanol combustion consumption by to the public,2.44068471,TJ,N2O,0.6,kg/TJ,1.4644108260000002,kg -e0ef13fc-3e79-3be2-8fbb-7691811e2cf7,SESCO,II.1.1,Salta,AR-A,annual,2011,bioetanol combustion consumption by to the public,7.686684799199999,TJ,CH4,10.0,kg/TJ,76.86684799199999,kg -4436b919-31b0-345a-a54d-eb3c283276e7,SESCO,II.1.1,Salta,AR-A,annual,2011,bioetanol combustion consumption by to the public,7.686684799199999,TJ,N2O,0.6,kg/TJ,4.61201087952,kg -efb7b5ff-399b-3732-b6b0-1950a594d834,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2011,bioetanol combustion consumption by to the public,2.4487074198,TJ,CH4,10.0,kg/TJ,24.487074198,kg -0b3787b3-1fff-352c-97f4-d049c021b820,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2011,bioetanol combustion consumption by to the public,2.4487074198,TJ,N2O,0.6,kg/TJ,1.46922445188,kg -5ae7243f-59fb-3b73-8d26-3cdaf4200d7f,SESCO,II.1.1,Tucuman,AR-T,annual,2011,bioetanol combustion consumption by to the public,14.091061076999997,TJ,CH4,10.0,kg/TJ,140.91061076999998,kg -4c48e255-fa81-32b9-a855-7aa1481b3c8f,SESCO,II.1.1,Tucuman,AR-T,annual,2011,bioetanol combustion consumption by to the public,14.091061076999997,TJ,N2O,0.6,kg/TJ,8.454636646199997,kg -6bcd2934-a904-30bf-9833-62db4f8c7580,SESCO,II.1.1,Catamarca,AR-K,annual,2011,bioetanol combustion consumption by to the public,0.1341109062,TJ,CH4,10.0,kg/TJ,1.341109062,kg -4f8280c6-44d1-305b-9617-0f08960618bd,SESCO,II.1.1,Catamarca,AR-K,annual,2011,bioetanol combustion consumption by to the public,0.1341109062,TJ,N2O,0.6,kg/TJ,0.08046654371999999,kg -b1963fbf-1c67-3ba1-925a-11426a24d6dd,SESCO,II.1.1,Chaco,AR-H,annual,2011,bioetanol combustion consumption by to the public,0.028822959000000002,TJ,CH4,10.0,kg/TJ,0.28822959000000004,kg -3c599d59-616a-37f7-8c5c-24cd5d01a6bb,SESCO,II.1.1,Chaco,AR-H,annual,2011,bioetanol combustion consumption by to the public,0.028822959000000002,TJ,N2O,0.6,kg/TJ,0.0172937754,kg -84e0e83a-a084-38f1-bfcc-10a20933b702,SESCO,II.1.1,Córdoba,AR-X,annual,2011,bioetanol combustion consumption by to the public,0.048217210200000006,TJ,CH4,10.0,kg/TJ,0.48217210200000005,kg -1119c41e-7694-3f1a-bd4d-bafa70aebd7d,SESCO,II.1.1,Córdoba,AR-X,annual,2011,bioetanol combustion consumption by to the public,0.048217210200000006,TJ,N2O,0.6,kg/TJ,0.028930326120000002,kg -f0382c56-5576-372a-a24f-6924234e5f28,SESCO,II.1.1,Jujuy,AR-Y,annual,2011,bioetanol combustion consumption by to the public,0.3552616098,TJ,CH4,10.0,kg/TJ,3.5526160979999997,kg -373bd637-5a40-3c0b-a282-36c6e64d89f4,SESCO,II.1.1,Jujuy,AR-Y,annual,2011,bioetanol combustion consumption by to the public,0.3552616098,TJ,N2O,0.6,kg/TJ,0.21315696588,kg -dd596cbd-e370-3d79-afed-9db673987118,SESCO,II.1.1,La Rioja,AR-F,annual,2011,bioetanol combustion consumption by to the public,0.1562617656,TJ,CH4,10.0,kg/TJ,1.562617656,kg -30c0aca5-045a-326f-9dba-214b6910e9c4,SESCO,II.1.1,La Rioja,AR-F,annual,2011,bioetanol combustion consumption by to the public,0.1562617656,TJ,N2O,0.6,kg/TJ,0.09375705935999999,kg -12cb5059-ab7f-3e3d-80eb-02d7369772e8,SESCO,II.1.1,Salta,AR-A,annual,2011,bioetanol combustion consumption by to the public,1.0142273088,TJ,CH4,10.0,kg/TJ,10.142273088,kg -a85a8470-bdcb-3aa0-9bd7-c5cf97925413,SESCO,II.1.1,Salta,AR-A,annual,2011,bioetanol combustion consumption by to the public,1.0142273088,TJ,N2O,0.6,kg/TJ,0.60853638528,kg -73cc4f77-3202-3a78-9b4f-aa9524af9009,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2011,bioetanol combustion consumption by to the public,0.282094326,TJ,CH4,10.0,kg/TJ,2.82094326,kg -b269e00e-6638-3a30-bd2f-3904890ce141,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2011,bioetanol combustion consumption by to the public,0.282094326,TJ,N2O,0.6,kg/TJ,0.1692565956,kg -9c87cb28-9eb0-3e55-b759-9e3dfbcb02c7,SESCO,II.1.1,Tucuman,AR-T,annual,2011,bioetanol combustion consumption by to the public,1.5641898173999997,TJ,CH4,10.0,kg/TJ,15.641898173999998,kg -8515d4e8-8b42-3496-a7b5-48c2488a6655,SESCO,II.1.1,Tucuman,AR-T,annual,2011,bioetanol combustion consumption by to the public,1.5641898173999997,TJ,N2O,0.6,kg/TJ,0.9385138904399998,kg -d9f7436e-400c-3da8-9f35-2ab08ae9719e,SESCO,II.5.1,Capital Federal,AR-C,annual,2011,bioetanol combustion consumption by agriculture machines,0.0127818,TJ,CH4,10.0,kg/TJ,0.127818,kg -901636a3-5312-33fe-9df1-698933121ad0,SESCO,II.5.1,Capital Federal,AR-C,annual,2011,bioetanol combustion consumption by agriculture machines,0.0127818,TJ,N2O,0.6,kg/TJ,0.007669079999999999,kg -859a8213-38da-354c-8092-19ab3bc4151d,SESCO,II.1.1,Buenos Aires,AR-B,annual,2011,bioetanol combustion consumption by to the public,5.84682138,TJ,CH4,10.0,kg/TJ,58.4682138,kg -a4640dcc-5ea0-338c-b330-222e4f0db427,SESCO,II.1.1,Buenos Aires,AR-B,annual,2011,bioetanol combustion consumption by to the public,5.84682138,TJ,N2O,0.6,kg/TJ,3.5080928279999997,kg -d7dcfb65-d3ca-3b53-890b-0c4c768578b2,SESCO,II.1.1,Capital Federal,AR-C,annual,2011,bioetanol combustion consumption by to the public,0.1661634,TJ,CH4,10.0,kg/TJ,1.6616339999999998,kg -eb29370e-1930-390e-ba36-928dcb136921,SESCO,II.1.1,Capital Federal,AR-C,annual,2011,bioetanol combustion consumption by to the public,0.1661634,TJ,N2O,0.6,kg/TJ,0.09969803999999999,kg -9df3887d-41c3-30a2-9804-b3b5115827fe,SESCO,II.1.1,Chaco,AR-H,annual,2011,bioetanol combustion consumption by to the public,0.26713962,TJ,CH4,10.0,kg/TJ,2.6713962,kg -48a11de8-37aa-3689-b559-36745f252d1a,SESCO,II.1.1,Chaco,AR-H,annual,2011,bioetanol combustion consumption by to the public,0.26713962,TJ,N2O,0.6,kg/TJ,0.16028377200000002,kg -300c15b5-0d89-3d42-99c5-90d9ec407147,SESCO,II.1.1,Corrientes,AR-W,annual,2011,bioetanol combustion consumption by to the public,0.30378078,TJ,CH4,10.0,kg/TJ,3.0378077999999995,kg -0537edad-322a-3259-bdfb-b965bdf4fbc6,SESCO,II.1.1,Corrientes,AR-W,annual,2011,bioetanol combustion consumption by to the public,0.30378078,TJ,N2O,0.6,kg/TJ,0.182268468,kg -75e947d1-d348-3cf7-ade0-903b1a5f2b30,SESCO,II.1.1,Córdoba,AR-X,annual,2011,bioetanol combustion consumption by to the public,0.1853361,TJ,CH4,10.0,kg/TJ,1.853361,kg -4951687f-afec-330d-82b3-e4d1fbaebb9d,SESCO,II.1.1,Córdoba,AR-X,annual,2011,bioetanol combustion consumption by to the public,0.1853361,TJ,N2O,0.6,kg/TJ,0.11120166,kg -b9676b4c-fea2-3ca1-bbb4-f7e173142631,SESCO,II.1.1,Entre Rios,AR-E,annual,2011,bioetanol combustion consumption by to the public,0.54833922,TJ,CH4,10.0,kg/TJ,5.4833922,kg -49e34b69-23fd-3b1d-857f-d682f1505dd3,SESCO,II.1.1,Entre Rios,AR-E,annual,2011,bioetanol combustion consumption by to the public,0.54833922,TJ,N2O,0.6,kg/TJ,0.329003532,kg -22869237-b46c-35a9-90b6-a4d4a1356865,SESCO,II.1.1,La Pampa,AR-L,annual,2011,bioetanol combustion consumption by to the public,0.10779318,TJ,CH4,10.0,kg/TJ,1.0779318,kg -8500497f-96f2-31f4-a738-42efc82c89c0,SESCO,II.1.1,La Pampa,AR-L,annual,2011,bioetanol combustion consumption by to the public,0.10779318,TJ,N2O,0.6,kg/TJ,0.064675908,kg -f9236db3-1ceb-3444-b866-532cb0f650ff,SESCO,II.1.1,Mendoza,AR-M,annual,2011,bioetanol combustion consumption by to the public,1.2206619,TJ,CH4,10.0,kg/TJ,12.206619,kg -ac2fe6f5-6108-30cd-918d-38d86ecca94e,SESCO,II.1.1,Mendoza,AR-M,annual,2011,bioetanol combustion consumption by to the public,1.2206619,TJ,N2O,0.6,kg/TJ,0.73239714,kg -35a9807c-d1aa-3eed-a441-4f2626cc69a9,SESCO,II.1.1,Misiones,AR-N,annual,2011,bioetanol combustion consumption by to the public,0.51723684,TJ,CH4,10.0,kg/TJ,5.1723684,kg -e27a613d-53a3-37d2-a0ac-b95664efe7b9,SESCO,II.1.1,Misiones,AR-N,annual,2011,bioetanol combustion consumption by to the public,0.51723684,TJ,N2O,0.6,kg/TJ,0.310342104,kg -9b3e7983-a894-341b-9106-e366e2593f90,SESCO,II.1.1,Neuquén,AR-Q,annual,2011,bioetanol combustion consumption by to the public,0.32849226,TJ,CH4,10.0,kg/TJ,3.2849226,kg -be484563-11b6-34a6-bbdf-b6719fb7b4bd,SESCO,II.1.1,Neuquén,AR-Q,annual,2011,bioetanol combustion consumption by to the public,0.32849226,TJ,N2O,0.6,kg/TJ,0.19709535599999997,kg -e2605cb3-6d74-3377-a3a5-80e48cf643de,SESCO,II.1.1,Rio Negro,AR-R,annual,2011,bioetanol combustion consumption by to the public,0.35107344,TJ,CH4,10.0,kg/TJ,3.5107344,kg -a846f7a7-1315-311f-af58-49e8f4b88256,SESCO,II.1.1,Rio Negro,AR-R,annual,2011,bioetanol combustion consumption by to the public,0.35107344,TJ,N2O,0.6,kg/TJ,0.210644064,kg -2a1dde05-5c94-3536-abb7-9ecd4980558e,SESCO,II.1.1,Santa Fe,AR-S,annual,2011,bioetanol combustion consumption by to the public,0.1256877,TJ,CH4,10.0,kg/TJ,1.2568770000000002,kg -e1502058-edb6-3f1b-b5bf-63149e8516fc,SESCO,II.1.1,Santa Fe,AR-S,annual,2011,bioetanol combustion consumption by to the public,0.1256877,TJ,N2O,0.6,kg/TJ,0.07541262,kg -b94ae58f-9f1e-3f9e-96a9-e6701493ef0a,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2011,bioetanol combustion consumption by to the public,0.15252948,TJ,CH4,10.0,kg/TJ,1.5252948,kg -3343404b-dfb5-3fdb-a8b9-11960dd714df,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2011,bioetanol combustion consumption by to the public,0.15252948,TJ,N2O,0.6,kg/TJ,0.091517688,kg -d934c678-ba08-357f-acbc-f1967e17e35e,SESCO,II.1.1,Tucuman,AR-T,annual,2011,bioetanol combustion consumption by to the public,0.03323268,TJ,CH4,10.0,kg/TJ,0.33232680000000003,kg -c977c332-0e30-34b8-ae7a-23a7fffcace3,SESCO,II.1.1,Tucuman,AR-T,annual,2011,bioetanol combustion consumption by to the public,0.03323268,TJ,N2O,0.6,kg/TJ,0.019939608,kg -1767e19b-3147-3c98-8aec-c6893c373fa4,SESCO,II.1.1,Buenos Aires,AR-B,annual,2011,bioetanol combustion consumption by to the public,159.97956516,TJ,CH4,10.0,kg/TJ,1599.7956516,kg -60c553d2-a306-334b-a5ba-05803beb7cb5,SESCO,II.1.1,Buenos Aires,AR-B,annual,2011,bioetanol combustion consumption by to the public,159.97956516,TJ,N2O,0.6,kg/TJ,95.987739096,kg -a26890d4-8d86-32cc-a09d-275a3f7ccbca,SESCO,II.1.1,Capital Federal,AR-C,annual,2011,bioetanol combustion consumption by to the public,51.32872638,TJ,CH4,10.0,kg/TJ,513.2872638,kg -41174fc2-1acf-3387-b0bf-84752b593635,SESCO,II.1.1,Capital Federal,AR-C,annual,2011,bioetanol combustion consumption by to the public,51.32872638,TJ,N2O,0.6,kg/TJ,30.797235827999998,kg -adace7a1-c0ec-3f5c-9641-bf4f40ae7ce2,SESCO,II.1.1,Catamarca,AR-K,annual,2011,bioetanol combustion consumption by to the public,0.79843644,TJ,CH4,10.0,kg/TJ,7.9843644000000005,kg -489d3cfb-4750-393e-8bd1-35a07f05eda4,SESCO,II.1.1,Catamarca,AR-K,annual,2011,bioetanol combustion consumption by to the public,0.79843644,TJ,N2O,0.6,kg/TJ,0.479061864,kg -dfae4bdc-99c8-3674-be8a-9b85b6e6d9cf,SESCO,II.1.1,Chaco,AR-H,annual,2011,bioetanol combustion consumption by to the public,10.45679058,TJ,CH4,10.0,kg/TJ,104.5679058,kg -361d9370-9d65-3288-a40d-01a2c6971cf9,SESCO,II.1.1,Chaco,AR-H,annual,2011,bioetanol combustion consumption by to the public,10.45679058,TJ,N2O,0.6,kg/TJ,6.274074348,kg -c5d2a230-705f-364a-8507-5b9cb6c3048c,SESCO,II.1.1,Chubut,AR-U,annual,2011,bioetanol combustion consumption by to the public,1.8052162199999997,TJ,CH4,10.0,kg/TJ,18.052162199999998,kg -b34f6fca-3159-34a2-8d5d-0975dd57eafc,SESCO,II.1.1,Chubut,AR-U,annual,2011,bioetanol combustion consumption by to the public,1.8052162199999997,TJ,N2O,0.6,kg/TJ,1.0831297319999997,kg -9837ae7a-e695-3122-b790-5d44912148ae,SESCO,II.1.1,Corrientes,AR-W,annual,2011,bioetanol combustion consumption by to the public,10.89946692,TJ,CH4,10.0,kg/TJ,108.9946692,kg -0081aded-3be9-3c87-a7da-8ef36ba217aa,SESCO,II.1.1,Corrientes,AR-W,annual,2011,bioetanol combustion consumption by to the public,10.89946692,TJ,N2O,0.6,kg/TJ,6.539680152,kg -3f564b05-82df-3120-8392-09e035378e77,SESCO,II.1.1,Córdoba,AR-X,annual,2011,bioetanol combustion consumption by to the public,38.33006184,TJ,CH4,10.0,kg/TJ,383.30061839999996,kg -aa8c2f11-9dde-3d8c-8f5f-509d7076aec1,SESCO,II.1.1,Córdoba,AR-X,annual,2011,bioetanol combustion consumption by to the public,38.33006184,TJ,N2O,0.6,kg/TJ,22.998037103999998,kg -cf4c90a2-ab45-31b5-a5e3-85267ea13d49,SESCO,II.1.1,Entre Rios,AR-E,annual,2011,bioetanol combustion consumption by to the public,13.74213924,TJ,CH4,10.0,kg/TJ,137.4213924,kg -7e8fbe30-fa8e-3082-a5fa-c601baec9608,SESCO,II.1.1,Entre Rios,AR-E,annual,2011,bioetanol combustion consumption by to the public,13.74213924,TJ,N2O,0.6,kg/TJ,8.245283544,kg -688e6978-3eb5-39b9-b887-595375d76953,SESCO,II.1.1,Formosa,AR-P,annual,2011,bioetanol combustion consumption by to the public,4.35135078,TJ,CH4,10.0,kg/TJ,43.5135078,kg -288dd45b-0568-3c75-928d-d9581a527af0,SESCO,II.1.1,Formosa,AR-P,annual,2011,bioetanol combustion consumption by to the public,4.35135078,TJ,N2O,0.6,kg/TJ,2.610810468,kg -6db84455-d9a7-317f-8d14-1d06811f44b5,SESCO,II.1.1,Jujuy,AR-Y,annual,2011,bioetanol combustion consumption by to the public,2.9952018,TJ,CH4,10.0,kg/TJ,29.952018,kg -0e09d356-f062-39b1-812d-639c2181c457,SESCO,II.1.1,Jujuy,AR-Y,annual,2011,bioetanol combustion consumption by to the public,2.9952018,TJ,N2O,0.6,kg/TJ,1.79712108,kg -375977b9-a1e6-3b3d-8b77-cbc4b0f4368c,SESCO,II.1.1,La Pampa,AR-L,annual,2011,bioetanol combustion consumption by to the public,3.68797536,TJ,CH4,10.0,kg/TJ,36.8797536,kg -1592fd20-5597-301a-a312-622a89a3a255,SESCO,II.1.1,La Pampa,AR-L,annual,2011,bioetanol combustion consumption by to the public,3.68797536,TJ,N2O,0.6,kg/TJ,2.212785216,kg -7edaf522-2445-3372-82fc-34baa02ff214,SESCO,II.1.1,La Rioja,AR-F,annual,2011,bioetanol combustion consumption by to the public,3.68158446,TJ,CH4,10.0,kg/TJ,36.8158446,kg -4dea5606-83d6-3069-9fb1-58e4ccfe692c,SESCO,II.1.1,La Rioja,AR-F,annual,2011,bioetanol combustion consumption by to the public,3.68158446,TJ,N2O,0.6,kg/TJ,2.2089506759999997,kg -183600d0-ca10-3f61-ae0e-eee3144f0472,SESCO,II.1.1,Mendoza,AR-M,annual,2011,bioetanol combustion consumption by to the public,9.35712972,TJ,CH4,10.0,kg/TJ,93.5712972,kg -bdff62ef-1c21-3f9a-af88-81a94a87526d,SESCO,II.1.1,Mendoza,AR-M,annual,2011,bioetanol combustion consumption by to the public,9.35712972,TJ,N2O,0.6,kg/TJ,5.614277832,kg -f11f615b-447d-3da5-92fe-96c9a1e27999,SESCO,II.1.1,Misiones,AR-N,annual,2011,bioetanol combustion consumption by to the public,13.1375601,TJ,CH4,10.0,kg/TJ,131.375601,kg -7bc75312-8ef7-38bd-bcc0-76c4a9a9373f,SESCO,II.1.1,Misiones,AR-N,annual,2011,bioetanol combustion consumption by to the public,13.1375601,TJ,N2O,0.6,kg/TJ,7.88253606,kg -3dc00e7c-22ae-3254-a1a1-8f68e83c6243,SESCO,II.1.1,Neuquén,AR-Q,annual,2011,bioetanol combustion consumption by to the public,3.0497374799999997,TJ,CH4,10.0,kg/TJ,30.497374799999996,kg -9e08b508-ba44-3614-889e-4839e39006c1,SESCO,II.1.1,Neuquén,AR-Q,annual,2011,bioetanol combustion consumption by to the public,3.0497374799999997,TJ,N2O,0.6,kg/TJ,1.8298424879999997,kg -be6bf7e4-d77d-3dc0-bd36-b7077763ebd1,SESCO,II.1.1,Rio Negro,AR-R,annual,2011,bioetanol combustion consumption by to the public,2.64924108,TJ,CH4,10.0,kg/TJ,26.4924108,kg -923efcd0-60b3-32d3-87fc-52963086bd42,SESCO,II.1.1,Rio Negro,AR-R,annual,2011,bioetanol combustion consumption by to the public,2.64924108,TJ,N2O,0.6,kg/TJ,1.589544648,kg -231fefd8-6049-3280-809a-e66cfc6920a5,SESCO,II.1.1,Salta,AR-A,annual,2011,bioetanol combustion consumption by to the public,4.15791954,TJ,CH4,10.0,kg/TJ,41.5791954,kg -3395b21f-c0a1-3f5c-aa2d-28510235ca5d,SESCO,II.1.1,Salta,AR-A,annual,2011,bioetanol combustion consumption by to the public,4.15791954,TJ,N2O,0.6,kg/TJ,2.494751724,kg -787946b1-8388-3110-a88a-1def79d99a7f,SESCO,II.1.1,San Juan,AR-J,annual,2011,bioetanol combustion consumption by to the public,3.16860822,TJ,CH4,10.0,kg/TJ,31.686082199999998,kg -e9a52c46-968d-3309-8dc4-a045a470e0fd,SESCO,II.1.1,San Juan,AR-J,annual,2011,bioetanol combustion consumption by to the public,3.16860822,TJ,N2O,0.6,kg/TJ,1.901164932,kg -aa03b24c-33f4-3b25-9f7e-4a51c2633998,SESCO,II.1.1,San Luis,AR-D,annual,2011,bioetanol combustion consumption by to the public,0.07413444,TJ,CH4,10.0,kg/TJ,0.7413444,kg -7682becc-b6bb-390a-a9d2-a42d1fe7ba9c,SESCO,II.1.1,San Luis,AR-D,annual,2011,bioetanol combustion consumption by to the public,0.07413444,TJ,N2O,0.6,kg/TJ,0.044480663999999996,kg -09584b42-8a9a-3937-93e5-efa6625cee19,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2011,bioetanol combustion consumption by to the public,0.0106515,TJ,CH4,10.0,kg/TJ,0.106515,kg -75b8d291-cdc2-3d53-aaba-e74aebb46efe,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2011,bioetanol combustion consumption by to the public,0.0106515,TJ,N2O,0.6,kg/TJ,0.0063909,kg -f188732a-5b07-3643-a0e3-bab61c758912,SESCO,II.1.1,Santa Fe,AR-S,annual,2011,bioetanol combustion consumption by to the public,42.05340018,TJ,CH4,10.0,kg/TJ,420.53400179999994,kg -63ca88ea-f44a-3098-8c45-899ee3639caa,SESCO,II.1.1,Santa Fe,AR-S,annual,2011,bioetanol combustion consumption by to the public,42.05340018,TJ,N2O,0.6,kg/TJ,25.232040107999996,kg -c8b4f842-70f0-3771-a319-e8059704c636,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2011,bioetanol combustion consumption by to the public,4.3632804599999995,TJ,CH4,10.0,kg/TJ,43.63280459999999,kg -289795b9-3f05-3b3c-8bbd-285df09e3425,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2011,bioetanol combustion consumption by to the public,4.3632804599999995,TJ,N2O,0.6,kg/TJ,2.6179682759999996,kg -b25ce1c4-b11e-3640-97ed-c30c860dfd15,SESCO,II.1.1,Tucuman,AR-T,annual,2011,bioetanol combustion consumption by to the public,9.60680088,TJ,CH4,10.0,kg/TJ,96.0680088,kg -eb40d63e-073e-3ab4-9b8b-7faedb2de74d,SESCO,II.1.1,Tucuman,AR-T,annual,2011,bioetanol combustion consumption by to the public,9.60680088,TJ,N2O,0.6,kg/TJ,5.764080528,kg -824eb128-d34c-38e6-a6d9-92fa996db05c,SESCO,II.1.1,Buenos Aires,AR-B,annual,2011,bioetanol combustion consumption by to the public,60.23465856,TJ,CH4,10.0,kg/TJ,602.3465856,kg -1da87b5a-f2f7-35dd-ae84-b859e7fb29ed,SESCO,II.1.1,Buenos Aires,AR-B,annual,2011,bioetanol combustion consumption by to the public,60.23465856,TJ,N2O,0.6,kg/TJ,36.140795136,kg -0b6cfd3b-fc75-32f7-b040-7fde7c77d9f2,SESCO,II.1.1,Capital Federal,AR-C,annual,2011,bioetanol combustion consumption by to the public,29.55237372,TJ,CH4,10.0,kg/TJ,295.52373719999997,kg -f3a6be5b-e59d-352f-92ba-ad6d44925e77,SESCO,II.1.1,Capital Federal,AR-C,annual,2011,bioetanol combustion consumption by to the public,29.55237372,TJ,N2O,0.6,kg/TJ,17.731424232,kg -4157a269-429c-3b30-aec6-8e46902e65e0,SESCO,II.1.1,Catamarca,AR-K,annual,2011,bioetanol combustion consumption by to the public,0.3706722,TJ,CH4,10.0,kg/TJ,3.706722,kg -9b6cecbf-276a-307d-809d-f2c3eb9bbf79,SESCO,II.1.1,Catamarca,AR-K,annual,2011,bioetanol combustion consumption by to the public,0.3706722,TJ,N2O,0.6,kg/TJ,0.22240332,kg -eccc63d0-b87b-33c4-bda7-43158f8f1160,SESCO,II.1.1,Chaco,AR-H,annual,2011,bioetanol combustion consumption by to the public,2.54272608,TJ,CH4,10.0,kg/TJ,25.4272608,kg -7db82102-e874-3351-bbd9-0d8d30ca79c0,SESCO,II.1.1,Chaco,AR-H,annual,2011,bioetanol combustion consumption by to the public,2.54272608,TJ,N2O,0.6,kg/TJ,1.525635648,kg -c134b5ce-c5d1-389b-b7aa-8a39e3a82290,SESCO,II.1.1,Chubut,AR-U,annual,2011,bioetanol combustion consumption by to the public,0.36257705999999995,TJ,CH4,10.0,kg/TJ,3.6257705999999996,kg -aa050042-6983-308e-b862-2c64a3fff37e,SESCO,II.1.1,Chubut,AR-U,annual,2011,bioetanol combustion consumption by to the public,0.36257705999999995,TJ,N2O,0.6,kg/TJ,0.21754623599999998,kg -4ff0f765-8fe4-3503-a58c-c0eea97314ee,SESCO,II.1.1,Corrientes,AR-W,annual,2011,bioetanol combustion consumption by to the public,2.3752845,TJ,CH4,10.0,kg/TJ,23.752844999999997,kg -fb2a9478-1ab0-3216-9e77-f65e77c9bd81,SESCO,II.1.1,Corrientes,AR-W,annual,2011,bioetanol combustion consumption by to the public,2.3752845,TJ,N2O,0.6,kg/TJ,1.4251706999999998,kg -11beee45-457b-36f3-ad9f-987892432bc7,SESCO,II.1.1,Córdoba,AR-X,annual,2011,bioetanol combustion consumption by to the public,10.91267478,TJ,CH4,10.0,kg/TJ,109.1267478,kg -b19ecf06-8792-35e6-90cf-1e9f86214364,SESCO,II.1.1,Córdoba,AR-X,annual,2011,bioetanol combustion consumption by to the public,10.91267478,TJ,N2O,0.6,kg/TJ,6.547604868,kg -42332c1a-e162-302f-bbcc-af9906c06f05,SESCO,II.1.1,Entre Rios,AR-E,annual,2011,bioetanol combustion consumption by to the public,3.88907568,TJ,CH4,10.0,kg/TJ,38.8907568,kg -abddd460-eb14-377c-9e99-c88b970f86de,SESCO,II.1.1,Entre Rios,AR-E,annual,2011,bioetanol combustion consumption by to the public,3.88907568,TJ,N2O,0.6,kg/TJ,2.3334454079999998,kg -5b20ffc0-3fad-3515-b0a0-979a0135ad25,SESCO,II.1.1,Formosa,AR-P,annual,2011,bioetanol combustion consumption by to the public,1.4209101,TJ,CH4,10.0,kg/TJ,14.209101,kg -d50da4db-1ced-3012-89aa-4b4eba43f821,SESCO,II.1.1,Formosa,AR-P,annual,2011,bioetanol combustion consumption by to the public,1.4209101,TJ,N2O,0.6,kg/TJ,0.85254606,kg -05c8add4-5dfe-32e3-815f-2bc0228442cd,SESCO,II.1.1,Jujuy,AR-Y,annual,2011,bioetanol combustion consumption by to the public,0.44821511999999997,TJ,CH4,10.0,kg/TJ,4.4821512,kg -e5b1e550-3ba5-3e52-8db7-c374cba25969,SESCO,II.1.1,Jujuy,AR-Y,annual,2011,bioetanol combustion consumption by to the public,0.44821511999999997,TJ,N2O,0.6,kg/TJ,0.268929072,kg -355f5df5-4844-3650-9c73-63c2a657cb07,SESCO,II.1.1,La Pampa,AR-L,annual,2011,bioetanol combustion consumption by to the public,1.3301593200000001,TJ,CH4,10.0,kg/TJ,13.301593200000001,kg -97e24434-ea80-3b69-a46a-f0dbf97fb83b,SESCO,II.1.1,La Pampa,AR-L,annual,2011,bioetanol combustion consumption by to the public,1.3301593200000001,TJ,N2O,0.6,kg/TJ,0.798095592,kg -e6c4aa1e-0171-3453-bd9c-05ff42027476,SESCO,II.1.1,La Rioja,AR-F,annual,2011,bioetanol combustion consumption by to the public,0.73324926,TJ,CH4,10.0,kg/TJ,7.3324926,kg -24c8c70b-5854-37f7-84c7-7284921abcec,SESCO,II.1.1,La Rioja,AR-F,annual,2011,bioetanol combustion consumption by to the public,0.73324926,TJ,N2O,0.6,kg/TJ,0.439949556,kg -67f7f9c7-3c9b-3421-82b7-47a06af49d77,SESCO,II.1.1,Mendoza,AR-M,annual,2011,bioetanol combustion consumption by to the public,2.72081916,TJ,CH4,10.0,kg/TJ,27.2081916,kg -29a77f33-6bc9-3b95-8a31-255603eda85f,SESCO,II.1.1,Mendoza,AR-M,annual,2011,bioetanol combustion consumption by to the public,2.72081916,TJ,N2O,0.6,kg/TJ,1.6324914959999999,kg -076d94ce-0534-3c82-ac8f-4bc572974280,SESCO,II.1.1,Misiones,AR-N,annual,2011,bioetanol combustion consumption by to the public,2.23298046,TJ,CH4,10.0,kg/TJ,22.3298046,kg -4448ae61-c63e-3d48-81f5-2f1a602944fc,SESCO,II.1.1,Misiones,AR-N,annual,2011,bioetanol combustion consumption by to the public,2.23298046,TJ,N2O,0.6,kg/TJ,1.339788276,kg -ea7982af-1db7-3317-ae28-5d74ddbce333,SESCO,II.1.1,Neuquén,AR-Q,annual,2011,bioetanol combustion consumption by to the public,0.6071354999999999,TJ,CH4,10.0,kg/TJ,6.071355,kg -5b893535-ea23-3fcc-a69a-0466e7f1e5f7,SESCO,II.1.1,Neuquén,AR-Q,annual,2011,bioetanol combustion consumption by to the public,0.6071354999999999,TJ,N2O,0.6,kg/TJ,0.3642813,kg -d75297c4-164a-3f4d-aad9-05443e1cf411,SESCO,II.1.1,Rio Negro,AR-R,annual,2011,bioetanol combustion consumption by to the public,0.7460310600000001,TJ,CH4,10.0,kg/TJ,7.460310600000001,kg -4c9f6e1a-c5ff-3a52-828e-77d1ba23fc41,SESCO,II.1.1,Rio Negro,AR-R,annual,2011,bioetanol combustion consumption by to the public,0.7460310600000001,TJ,N2O,0.6,kg/TJ,0.447618636,kg -a60c3d35-51c7-354b-8c09-3bc15e639601,SESCO,II.1.1,Salta,AR-A,annual,2011,bioetanol combustion consumption by to the public,0.8887611599999999,TJ,CH4,10.0,kg/TJ,8.8876116,kg -71fd08ba-90e3-35d4-930f-217ee4522154,SESCO,II.1.1,Salta,AR-A,annual,2011,bioetanol combustion consumption by to the public,0.8887611599999999,TJ,N2O,0.6,kg/TJ,0.5332566959999999,kg -c53db579-0682-3bc8-baa0-66830f257ec7,SESCO,II.1.1,San Juan,AR-J,annual,2011,bioetanol combustion consumption by to the public,0.51425442,TJ,CH4,10.0,kg/TJ,5.1425442,kg -c17a5d36-bcc8-3524-b542-73777831d844,SESCO,II.1.1,San Juan,AR-J,annual,2011,bioetanol combustion consumption by to the public,0.51425442,TJ,N2O,0.6,kg/TJ,0.308552652,kg -6f5d7c6d-5e32-33b2-a8db-e854a8caf6f4,SESCO,II.1.1,San Luis,AR-D,annual,2011,bioetanol combustion consumption by to the public,0.04558842,TJ,CH4,10.0,kg/TJ,0.45588419999999996,kg -594c7342-5411-3dbd-bd1b-212c52b62078,SESCO,II.1.1,San Luis,AR-D,annual,2011,bioetanol combustion consumption by to the public,0.04558842,TJ,N2O,0.6,kg/TJ,0.027353052,kg -0ef228a0-9cd2-3642-b62b-eadf5b9944c9,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2011,bioetanol combustion consumption by to the public,0.00298242,TJ,CH4,10.0,kg/TJ,0.0298242,kg -03b73bf5-166f-31b5-9599-0565aa41eb3e,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2011,bioetanol combustion consumption by to the public,0.00298242,TJ,N2O,0.6,kg/TJ,0.001789452,kg -9f79a541-1813-3dee-94b4-edb9a7d81127,SESCO,II.1.1,Santa Fe,AR-S,annual,2011,bioetanol combustion consumption by to the public,15.72885702,TJ,CH4,10.0,kg/TJ,157.28857019999998,kg -0e8c9f65-2f4d-3dc8-8f78-34a7ffb5a3ef,SESCO,II.1.1,Santa Fe,AR-S,annual,2011,bioetanol combustion consumption by to the public,15.72885702,TJ,N2O,0.6,kg/TJ,9.437314211999999,kg -6b20cf00-5a30-34f3-8f04-e06e9e8667b7,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2011,bioetanol combustion consumption by to the public,1.54148508,TJ,CH4,10.0,kg/TJ,15.4148508,kg -0ac48306-faf0-3fc7-a572-6686f8975c22,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2011,bioetanol combustion consumption by to the public,1.54148508,TJ,N2O,0.6,kg/TJ,0.9248910479999999,kg -3aecaf54-af1e-3e21-8548-0fdc36b927e5,SESCO,II.1.1,Tucuman,AR-T,annual,2011,bioetanol combustion consumption by to the public,2.7689639399999995,TJ,CH4,10.0,kg/TJ,27.689639399999994,kg -6562772a-abf4-345f-8d93-8192134fe71a,SESCO,II.1.1,Tucuman,AR-T,annual,2011,bioetanol combustion consumption by to the public,2.7689639399999995,TJ,N2O,0.6,kg/TJ,1.6613783639999997,kg -eab71522-215f-3312-8f45-40fc478f5009,SESCO,II.5.1,Buenos Aires,AR-B,annual,2011,bioetanol combustion consumption by agriculture machines,0.2194209,TJ,CH4,10.0,kg/TJ,2.194209,kg -381683cd-ff6a-367a-aa51-b7cb849815e3,SESCO,II.5.1,Buenos Aires,AR-B,annual,2011,bioetanol combustion consumption by agriculture machines,0.2194209,TJ,N2O,0.6,kg/TJ,0.13165253999999998,kg -db035be1-5be1-3d06-a3be-a05aef5c73c3,SESCO,II.5.1,Entre Rios,AR-E,annual,2011,bioetanol combustion consumption by agriculture machines,0.049422959999999995,TJ,CH4,10.0,kg/TJ,0.49422959999999994,kg -9be6c220-1a10-30aa-940a-82528ac8eebd,SESCO,II.5.1,Entre Rios,AR-E,annual,2011,bioetanol combustion consumption by agriculture machines,0.049422959999999995,TJ,N2O,0.6,kg/TJ,0.029653775999999996,kg -a7101fc7-005b-32b5-bb2c-7f3ac51409b2,SESCO,II.5.1,Jujuy,AR-Y,annual,2011,bioetanol combustion consumption by agriculture machines,0.00979938,TJ,CH4,10.0,kg/TJ,0.09799379999999999,kg -cc8cd84f-f3bd-3d45-b20d-17fbaeb189ae,SESCO,II.5.1,Jujuy,AR-Y,annual,2011,bioetanol combustion consumption by agriculture machines,0.00979938,TJ,N2O,0.6,kg/TJ,0.005879628,kg -a0716d5b-30fc-3193-9185-625cafd08e6f,SESCO,II.5.1,La Pampa,AR-L,annual,2011,bioetanol combustion consumption by agriculture machines,0.02002482,TJ,CH4,10.0,kg/TJ,0.2002482,kg -1c03a119-aead-3dcb-bf10-bdbb8bd4584d,SESCO,II.5.1,La Pampa,AR-L,annual,2011,bioetanol combustion consumption by agriculture machines,0.02002482,TJ,N2O,0.6,kg/TJ,0.012014892,kg -f8b676df-ea57-3a46-aaea-ccf0fee6b9a3,SESCO,II.5.1,Salta,AR-A,annual,2011,bioetanol combustion consumption by agriculture machines,0.01107756,TJ,CH4,10.0,kg/TJ,0.1107756,kg -3681bb06-515e-3d3c-a286-d7c1a2a90cd4,SESCO,II.5.1,Salta,AR-A,annual,2011,bioetanol combustion consumption by agriculture machines,0.01107756,TJ,N2O,0.6,kg/TJ,0.006646536,kg -ee9be53d-3d84-3a26-9ebf-58cc51f0d0b0,SESCO,II.5.1,Santa Fe,AR-S,annual,2011,bioetanol combustion consumption by agriculture machines,0.979938,TJ,CH4,10.0,kg/TJ,9.79938,kg -f1bd4aed-b9d8-31ac-97a5-0ea4130497f8,SESCO,II.5.1,Santa Fe,AR-S,annual,2011,bioetanol combustion consumption by agriculture machines,0.979938,TJ,N2O,0.6,kg/TJ,0.5879628,kg -a547afe5-c586-3c47-82b5-3bc862dd71af,SESCO,II.5.1,Santiago del Estero,AR-G,annual,2011,bioetanol combustion consumption by agriculture machines,0.016190279999999998,TJ,CH4,10.0,kg/TJ,0.16190279999999999,kg -f2654a19-17cc-30be-80ad-21f538f3dc60,SESCO,II.5.1,Santiago del Estero,AR-G,annual,2011,bioetanol combustion consumption by agriculture machines,0.016190279999999998,TJ,N2O,0.6,kg/TJ,0.009714167999999999,kg -4ee5a1df-648d-35f1-94c0-50e3606ba917,SESCO,II.5.1,Buenos Aires,AR-B,annual,2011,bioetanol combustion consumption by agriculture machines,0.00596484,TJ,CH4,10.0,kg/TJ,0.0596484,kg -a65fef8b-00e7-306b-9aa4-2315652f3f62,SESCO,II.5.1,Buenos Aires,AR-B,annual,2011,bioetanol combustion consumption by agriculture machines,0.00596484,TJ,N2O,0.6,kg/TJ,0.003578904,kg -b92cd4a5-674c-38b6-a352-d8899aa30264,SESCO,II.1.1,Buenos Aires,AR-B,annual,2011,bioetanol combustion consumption by to the public,0.23049846,TJ,CH4,10.0,kg/TJ,2.3049846,kg -013c973b-d9dc-3eec-a1b4-c71f841bfdbd,SESCO,II.1.1,Buenos Aires,AR-B,annual,2011,bioetanol combustion consumption by to the public,0.23049846,TJ,N2O,0.6,kg/TJ,0.138299076,kg -f5e75b0d-de85-3493-85bf-9ab1cc600a23,SESCO,II.1.1,Capital Federal,AR-C,annual,2011,bioetanol combustion consumption by to the public,0.09586349999999999,TJ,CH4,10.0,kg/TJ,0.9586349999999999,kg -09518a5d-f456-3f13-817b-e3649ccf8a0f,SESCO,II.1.1,Capital Federal,AR-C,annual,2011,bioetanol combustion consumption by to the public,0.09586349999999999,TJ,N2O,0.6,kg/TJ,0.05751809999999999,kg -a65177d1-9180-3080-a59d-a88429392216,SESCO,II.1.1,Chaco,AR-H,annual,2011,bioetanol combustion consumption by to the public,0.0068169599999999995,TJ,CH4,10.0,kg/TJ,0.0681696,kg -23146f26-1011-3e43-a7c1-22232ca84ba7,SESCO,II.1.1,Chaco,AR-H,annual,2011,bioetanol combustion consumption by to the public,0.0068169599999999995,TJ,N2O,0.6,kg/TJ,0.004090175999999999,kg -ffdf321e-edf6-35e7-9073-ba3f6f61885a,SESCO,II.1.1,Entre Rios,AR-E,annual,2011,bioetanol combustion consumption by to the public,0.008947259999999999,TJ,CH4,10.0,kg/TJ,0.08947259999999999,kg -433090a8-db2f-37b5-abe7-225549093a7e,SESCO,II.1.1,Entre Rios,AR-E,annual,2011,bioetanol combustion consumption by to the public,0.008947259999999999,TJ,N2O,0.6,kg/TJ,0.005368355999999999,kg -6fdf1c73-81a3-3cd6-9edf-2da669465e57,SESCO,II.1.1,Jujuy,AR-Y,annual,2011,bioetanol combustion consumption by to the public,0.00298242,TJ,CH4,10.0,kg/TJ,0.0298242,kg -973e76db-7c9f-34e1-bc48-ceb2663c8095,SESCO,II.1.1,Jujuy,AR-Y,annual,2011,bioetanol combustion consumption by to the public,0.00298242,TJ,N2O,0.6,kg/TJ,0.001789452,kg -ab4d08cb-022b-3b42-b321-54323b6d4748,SESCO,II.1.1,Misiones,AR-N,annual,2011,bioetanol combustion consumption by to the public,0.0340848,TJ,CH4,10.0,kg/TJ,0.340848,kg -5e434354-1b7b-3d67-950a-3fd34cbc4916,SESCO,II.1.1,Misiones,AR-N,annual,2011,bioetanol combustion consumption by to the public,0.0340848,TJ,N2O,0.6,kg/TJ,0.020450879999999998,kg -5ea0f7df-5463-3ff1-a4d6-c99c909f2b0f,SESCO,II.1.1,Salta,AR-A,annual,2011,bioetanol combustion consumption by to the public,0.0008521199999999999,TJ,CH4,10.0,kg/TJ,0.0085212,kg -2d8d3ec9-10be-30a7-8178-a94951004f42,SESCO,II.1.1,Salta,AR-A,annual,2011,bioetanol combustion consumption by to the public,0.0008521199999999999,TJ,N2O,0.6,kg/TJ,0.0005112719999999999,kg -3e6b346f-26fe-3500-8895-4328f4fd5209,SESCO,II.1.1,Santa Fe,AR-S,annual,2011,bioetanol combustion consumption by to the public,0.03877146,TJ,CH4,10.0,kg/TJ,0.3877146,kg -1c380a1e-3dcd-33de-be9f-f8a94e45f3f4,SESCO,II.1.1,Santa Fe,AR-S,annual,2011,bioetanol combustion consumption by to the public,0.03877146,TJ,N2O,0.6,kg/TJ,0.023262876,kg -c1e422ad-f1dc-3e9a-9292-7d23369f3aee,SESCO,II.1.1,Buenos Aires,AR-B,annual,2011,bioetanol combustion consumption by to the public,410.1871347,TJ,CH4,10.0,kg/TJ,4101.871347,kg -01dd4347-c89f-3167-9c16-8c64ce45612a,SESCO,II.1.1,Buenos Aires,AR-B,annual,2011,bioetanol combustion consumption by to the public,410.1871347,TJ,N2O,0.6,kg/TJ,246.11228082,kg -b3e5351f-b30d-3bc8-aec4-8595b4daddde,SESCO,II.1.1,Capital Federal,AR-C,annual,2011,bioetanol combustion consumption by to the public,89.94893507999998,TJ,CH4,10.0,kg/TJ,899.4893507999998,kg -643a77d4-383c-31c5-b5cc-32500f6ae06a,SESCO,II.1.1,Capital Federal,AR-C,annual,2011,bioetanol combustion consumption by to the public,89.94893507999998,TJ,N2O,0.6,kg/TJ,53.96936104799999,kg -29118260-8e0a-330a-a3d2-acb0f1e509c5,SESCO,II.1.1,Catamarca,AR-K,annual,2011,bioetanol combustion consumption by to the public,6.64099722,TJ,CH4,10.0,kg/TJ,66.4099722,kg -8453dd0c-32d6-37b6-9f88-3a2f6dc08659,SESCO,II.1.1,Catamarca,AR-K,annual,2011,bioetanol combustion consumption by to the public,6.64099722,TJ,N2O,0.6,kg/TJ,3.984598332,kg -19b85c8d-c1d3-37b4-919b-b589e29d8711,SESCO,II.1.1,Chaco,AR-H,annual,2011,bioetanol combustion consumption by to the public,22.63955022,TJ,CH4,10.0,kg/TJ,226.3955022,kg -9d01210c-3ae0-34ae-a8b0-cd47caeacfaa,SESCO,II.1.1,Chaco,AR-H,annual,2011,bioetanol combustion consumption by to the public,22.63955022,TJ,N2O,0.6,kg/TJ,13.583730132,kg -0d89613a-2fe7-35e9-b229-31194d2d0253,SESCO,II.1.1,Chubut,AR-U,annual,2011,bioetanol combustion consumption by to the public,41.11862454,TJ,CH4,10.0,kg/TJ,411.18624539999996,kg -2ef9c89d-7aa9-3ac0-bcfe-2a3a85d09265,SESCO,II.1.1,Chubut,AR-U,annual,2011,bioetanol combustion consumption by to the public,41.11862454,TJ,N2O,0.6,kg/TJ,24.671174724,kg -70af32c8-75ed-3dba-ac95-a9526ff82cec,SESCO,II.1.1,Corrientes,AR-W,annual,2011,bioetanol combustion consumption by to the public,25.54826184,TJ,CH4,10.0,kg/TJ,255.48261839999998,kg -c0bf22d6-b1bd-3250-9850-7ca579b733d5,SESCO,II.1.1,Corrientes,AR-W,annual,2011,bioetanol combustion consumption by to the public,25.54826184,TJ,N2O,0.6,kg/TJ,15.328957103999999,kg -4e5afe75-2f76-38e6-9825-7ecf1bd05621,SESCO,II.1.1,Córdoba,AR-X,annual,2011,bioetanol combustion consumption by to the public,104.895972,TJ,CH4,10.0,kg/TJ,1048.95972,kg -1b3d89a5-45ee-3889-9163-15aaa17e16e7,SESCO,II.1.1,Córdoba,AR-X,annual,2011,bioetanol combustion consumption by to the public,104.895972,TJ,N2O,0.6,kg/TJ,62.9375832,kg -0529128c-aa95-3106-ab6d-046d61af07bc,SESCO,II.1.1,Entre Rios,AR-E,annual,2011,bioetanol combustion consumption by to the public,29.77988976,TJ,CH4,10.0,kg/TJ,297.7988976,kg -9f4f3c82-87c3-3b1e-90fb-1011093625d4,SESCO,II.1.1,Entre Rios,AR-E,annual,2011,bioetanol combustion consumption by to the public,29.77988976,TJ,N2O,0.6,kg/TJ,17.867933856,kg -d889ff6f-00a3-3326-9bdb-2bb5b60cf6da,SESCO,II.1.1,Formosa,AR-P,annual,2011,bioetanol combustion consumption by to the public,9.4500108,TJ,CH4,10.0,kg/TJ,94.500108,kg -fd5c5527-4c2e-34f3-aa87-989ea63ec58d,SESCO,II.1.1,Formosa,AR-P,annual,2011,bioetanol combustion consumption by to the public,9.4500108,TJ,N2O,0.6,kg/TJ,5.67000648,kg -cf461706-39f3-3467-b979-cb43eccf61f9,SESCO,II.1.1,Jujuy,AR-Y,annual,2011,bioetanol combustion consumption by to the public,11.77587234,TJ,CH4,10.0,kg/TJ,117.7587234,kg -80e0f3a4-3fe0-34f6-aae8-41b5b0522643,SESCO,II.1.1,Jujuy,AR-Y,annual,2011,bioetanol combustion consumption by to the public,11.77587234,TJ,N2O,0.6,kg/TJ,7.0655234039999995,kg -267b7490-7df1-3504-95c8-f83a18a14251,SESCO,II.1.1,La Pampa,AR-L,annual,2011,bioetanol combustion consumption by to the public,17.41477644,TJ,CH4,10.0,kg/TJ,174.1477644,kg -62622d2e-a757-3eba-9bec-7d646818efee,SESCO,II.1.1,La Pampa,AR-L,annual,2011,bioetanol combustion consumption by to the public,17.41477644,TJ,N2O,0.6,kg/TJ,10.448865864,kg -505ce2dd-7230-3ad6-bbd2-91be380780a0,SESCO,II.1.1,La Rioja,AR-F,annual,2011,bioetanol combustion consumption by to the public,9.58975848,TJ,CH4,10.0,kg/TJ,95.8975848,kg -7492f4d9-ebfa-33c9-946a-1b8030253322,SESCO,II.1.1,La Rioja,AR-F,annual,2011,bioetanol combustion consumption by to the public,9.58975848,TJ,N2O,0.6,kg/TJ,5.753855088,kg -7a8d10fd-0df6-3e61-aab2-f0ec25c7dfe8,SESCO,II.1.1,Mendoza,AR-M,annual,2011,bioetanol combustion consumption by to the public,51.185996280000005,TJ,CH4,10.0,kg/TJ,511.85996280000006,kg -58e5adb3-5ea2-3cd3-9a78-56e6943d6cbf,SESCO,II.1.1,Mendoza,AR-M,annual,2011,bioetanol combustion consumption by to the public,51.185996280000005,TJ,N2O,0.6,kg/TJ,30.711597768,kg -40490b94-1bcd-3690-975d-98fa091b8a3d,SESCO,II.1.1,Misiones,AR-N,annual,2011,bioetanol combustion consumption by to the public,32.00392296,TJ,CH4,10.0,kg/TJ,320.0392296,kg -493d00f8-e646-3f30-bbcd-ee594e55f431,SESCO,II.1.1,Misiones,AR-N,annual,2011,bioetanol combustion consumption by to the public,32.00392296,TJ,N2O,0.6,kg/TJ,19.202353776,kg -be784ea5-e3bf-3cf2-acfa-0debb2a3a816,SESCO,II.1.1,Neuquén,AR-Q,annual,2011,bioetanol combustion consumption by to the public,31.45132314,TJ,CH4,10.0,kg/TJ,314.5132314,kg -69ef7049-f46f-34e5-a41e-bcc1a70feec0,SESCO,II.1.1,Neuquén,AR-Q,annual,2011,bioetanol combustion consumption by to the public,31.45132314,TJ,N2O,0.6,kg/TJ,18.870793883999998,kg -5a2419f0-7cf2-370a-a040-83bc4fdd4b8b,SESCO,II.1.1,Rio Negro,AR-R,annual,2011,bioetanol combustion consumption by to the public,31.66818768,TJ,CH4,10.0,kg/TJ,316.6818768,kg -1c08749e-ac2a-37b0-85cd-eb0c4d0bb546,SESCO,II.1.1,Rio Negro,AR-R,annual,2011,bioetanol combustion consumption by to the public,31.66818768,TJ,N2O,0.6,kg/TJ,19.000912608,kg -c9901875-0eeb-30a0-85ec-7f2d2cc95cbd,SESCO,II.1.1,Salta,AR-A,annual,2011,bioetanol combustion consumption by to the public,24.65225766,TJ,CH4,10.0,kg/TJ,246.5225766,kg -0b0c5de3-43b8-3b69-9f03-425f9dc3b542,SESCO,II.1.1,Salta,AR-A,annual,2011,bioetanol combustion consumption by to the public,24.65225766,TJ,N2O,0.6,kg/TJ,14.791354596,kg -361cf5b4-6780-3ba0-a44e-58d9287b918d,SESCO,II.1.1,San Juan,AR-J,annual,2011,bioetanol combustion consumption by to the public,15.946147619999998,TJ,CH4,10.0,kg/TJ,159.4614762,kg -8d82215c-2485-3cb2-bbfe-a99af40222cb,SESCO,II.1.1,San Juan,AR-J,annual,2011,bioetanol combustion consumption by to the public,15.946147619999998,TJ,N2O,0.6,kg/TJ,9.567688571999998,kg -1299ab2b-bb94-355e-9c91-3281386854b0,SESCO,II.1.1,San Luis,AR-D,annual,2011,bioetanol combustion consumption by to the public,13.558081320000001,TJ,CH4,10.0,kg/TJ,135.58081320000002,kg -643e78fc-a3bc-3524-ae5f-b8effccf9f51,SESCO,II.1.1,San Luis,AR-D,annual,2011,bioetanol combustion consumption by to the public,13.558081320000001,TJ,N2O,0.6,kg/TJ,8.134848792,kg -4408d8ff-814e-37d2-b5f1-5a770cdb1945,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2011,bioetanol combustion consumption by to the public,28.926065519999998,TJ,CH4,10.0,kg/TJ,289.2606552,kg -30c14b42-27d0-3d0a-b844-f5d42105cb49,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2011,bioetanol combustion consumption by to the public,28.926065519999998,TJ,N2O,0.6,kg/TJ,17.355639311999997,kg -bacff650-bd3c-3c07-903b-585e4ffa053c,SESCO,II.1.1,Santa Fe,AR-S,annual,2011,bioetanol combustion consumption by to the public,73.05821243999999,TJ,CH4,10.0,kg/TJ,730.5821243999999,kg -b720a05b-93b6-37b0-9117-aa6c3a6e4954,SESCO,II.1.1,Santa Fe,AR-S,annual,2011,bioetanol combustion consumption by to the public,73.05821243999999,TJ,N2O,0.6,kg/TJ,43.834927463999996,kg -65b83d75-a080-3d71-b2fb-973b3186b8e5,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2011,bioetanol combustion consumption by to the public,10.94420322,TJ,CH4,10.0,kg/TJ,109.4420322,kg -d14a0765-0950-3932-83df-8ae607537c59,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2011,bioetanol combustion consumption by to the public,10.94420322,TJ,N2O,0.6,kg/TJ,6.566521932,kg -dbe91326-ac81-3431-ba0b-4cf988686fc8,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2011,bioetanol combustion consumption by to the public,21.823219260000002,TJ,CH4,10.0,kg/TJ,218.23219260000002,kg -53487fbc-2f34-3ed0-b89c-7a5acceebe46,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2011,bioetanol combustion consumption by to the public,21.823219260000002,TJ,N2O,0.6,kg/TJ,13.093931556000001,kg -ec6f2514-f793-34c5-b057-20f43d5fe54a,SESCO,II.1.1,Tucuman,AR-T,annual,2011,bioetanol combustion consumption by to the public,21.323876939999998,TJ,CH4,10.0,kg/TJ,213.23876939999997,kg -8506d0e4-2259-399f-9453-171f40627085,SESCO,II.1.1,Tucuman,AR-T,annual,2011,bioetanol combustion consumption by to the public,21.323876939999998,TJ,N2O,0.6,kg/TJ,12.794326164,kg -669cb122-149c-3d00-b9e5-ce9a15561b68,SESCO,II.1.1,Buenos Aires,AR-B,annual,2011,bioetanol combustion consumption by to the public,184.79031714,TJ,CH4,10.0,kg/TJ,1847.9031714000002,kg -30590776-ab32-373c-8526-c3098c1656ea,SESCO,II.1.1,Buenos Aires,AR-B,annual,2011,bioetanol combustion consumption by to the public,184.79031714,TJ,N2O,0.6,kg/TJ,110.87419028400001,kg -d178d595-5fdc-3b3e-946f-ab6ecbca8ddd,SESCO,II.1.1,Capital Federal,AR-C,annual,2011,bioetanol combustion consumption by to the public,40.59542286,TJ,CH4,10.0,kg/TJ,405.95422859999996,kg -bcba5ef3-edef-307a-a908-16a3c4c60450,SESCO,II.1.1,Capital Federal,AR-C,annual,2011,bioetanol combustion consumption by to the public,40.59542286,TJ,N2O,0.6,kg/TJ,24.357253716,kg -e2e960bd-855b-3e3d-a674-da8369fbee54,SESCO,II.1.1,Catamarca,AR-K,annual,2011,bioetanol combustion consumption by to the public,2.5627508999999997,TJ,CH4,10.0,kg/TJ,25.627508999999996,kg -fba176db-d38f-3f88-b2aa-713bfdd13a37,SESCO,II.1.1,Catamarca,AR-K,annual,2011,bioetanol combustion consumption by to the public,2.5627508999999997,TJ,N2O,0.6,kg/TJ,1.5376505399999998,kg -9440d7f4-c1c1-3a13-9ba4-c1ac833e19e3,SESCO,II.1.1,Chaco,AR-H,annual,2011,bioetanol combustion consumption by to the public,9.33966126,TJ,CH4,10.0,kg/TJ,93.3966126,kg -f5f49992-b6e8-3142-b251-ec72e2846b41,SESCO,II.1.1,Chaco,AR-H,annual,2011,bioetanol combustion consumption by to the public,9.33966126,TJ,N2O,0.6,kg/TJ,5.6037967559999995,kg -32dfbc9d-6741-3894-aa3c-8bd5c065469d,SESCO,II.1.1,Chubut,AR-U,annual,2011,bioetanol combustion consumption by to the public,12.820145400000001,TJ,CH4,10.0,kg/TJ,128.201454,kg -1a97d5ef-aa84-35da-8867-06ca76853daa,SESCO,II.1.1,Chubut,AR-U,annual,2011,bioetanol combustion consumption by to the public,12.820145400000001,TJ,N2O,0.6,kg/TJ,7.69208724,kg -504701ae-5b3b-3cdc-943e-73c2c9e6ff72,SESCO,II.1.1,Corrientes,AR-W,annual,2011,bioetanol combustion consumption by to the public,8.20421136,TJ,CH4,10.0,kg/TJ,82.04211360000001,kg -660f130d-6cdf-3519-876a-8175182e3cd3,SESCO,II.1.1,Corrientes,AR-W,annual,2011,bioetanol combustion consumption by to the public,8.20421136,TJ,N2O,0.6,kg/TJ,4.922526816,kg -8e5da082-af22-344b-8a35-42e242b1cb0c,SESCO,II.1.1,Córdoba,AR-X,annual,2011,bioetanol combustion consumption by to the public,41.00444046,TJ,CH4,10.0,kg/TJ,410.0444046,kg -8bfdedda-3180-357b-81c7-1a48a74d2161,SESCO,II.1.1,Córdoba,AR-X,annual,2011,bioetanol combustion consumption by to the public,41.00444046,TJ,N2O,0.6,kg/TJ,24.602664276,kg -78cb6db6-a91e-31d5-bb68-69c711c98cb7,SESCO,II.1.1,Entre Rios,AR-E,annual,2011,bioetanol combustion consumption by to the public,13.96965528,TJ,CH4,10.0,kg/TJ,139.6965528,kg -8ad4218b-bf70-340c-9bf5-798b7d128db5,SESCO,II.1.1,Entre Rios,AR-E,annual,2011,bioetanol combustion consumption by to the public,13.96965528,TJ,N2O,0.6,kg/TJ,8.381793168,kg -e20c634d-cd79-3cb9-96aa-e1f4096ddf9c,SESCO,II.1.1,Formosa,AR-P,annual,2011,bioetanol combustion consumption by to the public,3.4681284,TJ,CH4,10.0,kg/TJ,34.681284,kg -b76cbcbc-553f-31b3-87bc-9e3ec7f371b0,SESCO,II.1.1,Formosa,AR-P,annual,2011,bioetanol combustion consumption by to the public,3.4681284,TJ,N2O,0.6,kg/TJ,2.08087704,kg -9155bf0e-0e46-377b-86c4-3a3360354562,SESCO,II.1.1,Jujuy,AR-Y,annual,2011,bioetanol combustion consumption by to the public,3.34840554,TJ,CH4,10.0,kg/TJ,33.4840554,kg -59c2501b-91e4-3575-9651-e0a4afa9f403,SESCO,II.1.1,Jujuy,AR-Y,annual,2011,bioetanol combustion consumption by to the public,3.34840554,TJ,N2O,0.6,kg/TJ,2.009043324,kg -dd3d3b1c-077e-39e9-b303-09b97afd3349,SESCO,II.1.1,La Pampa,AR-L,annual,2011,bioetanol combustion consumption by to the public,7.6605588000000004,TJ,CH4,10.0,kg/TJ,76.60558800000001,kg -4af0a9d0-b60d-3fb3-850e-2f82129278c2,SESCO,II.1.1,La Pampa,AR-L,annual,2011,bioetanol combustion consumption by to the public,7.6605588000000004,TJ,N2O,0.6,kg/TJ,4.59633528,kg -4c24887c-e9e1-3388-86ff-af58a65e584d,SESCO,II.1.1,La Rioja,AR-F,annual,2011,bioetanol combustion consumption by to the public,3.63770028,TJ,CH4,10.0,kg/TJ,36.3770028,kg -8281d822-e639-3de0-8cd6-f26aa0b72ec0,SESCO,II.1.1,La Rioja,AR-F,annual,2011,bioetanol combustion consumption by to the public,3.63770028,TJ,N2O,0.6,kg/TJ,2.1826201679999997,kg -4163f8c2-2fe1-30a3-b738-65abc89c2ec9,SESCO,II.1.1,Mendoza,AR-M,annual,2011,bioetanol combustion consumption by to the public,19.3942512,TJ,CH4,10.0,kg/TJ,193.942512,kg -1014f077-12ac-3992-bba5-0a6a7311b61d,SESCO,II.1.1,Mendoza,AR-M,annual,2011,bioetanol combustion consumption by to the public,19.3942512,TJ,N2O,0.6,kg/TJ,11.636550719999999,kg -5138c40c-aaf2-3fa8-b4a5-e36aad350297,SESCO,II.1.1,Misiones,AR-N,annual,2011,bioetanol combustion consumption by to the public,12.45714228,TJ,CH4,10.0,kg/TJ,124.5714228,kg -8355f762-4c86-3e93-a463-4696b5a6ce39,SESCO,II.1.1,Misiones,AR-N,annual,2011,bioetanol combustion consumption by to the public,12.45714228,TJ,N2O,0.6,kg/TJ,7.474285367999999,kg -28a2b8b3-68f5-3692-bc17-95580d2b8734,SESCO,II.1.1,Neuquén,AR-Q,annual,2011,bioetanol combustion consumption by to the public,10.44145242,TJ,CH4,10.0,kg/TJ,104.41452419999999,kg -1cf6e3c4-c4c9-3877-8fcf-f7dc7f11ad12,SESCO,II.1.1,Neuquén,AR-Q,annual,2011,bioetanol combustion consumption by to the public,10.44145242,TJ,N2O,0.6,kg/TJ,6.2648714519999995,kg -dec434ca-b797-3629-b5f5-b398a54ed4db,SESCO,II.1.1,Rio Negro,AR-R,annual,2011,bioetanol combustion consumption by to the public,9.86286294,TJ,CH4,10.0,kg/TJ,98.6286294,kg -06452795-d657-340e-a05a-58b124184e5d,SESCO,II.1.1,Rio Negro,AR-R,annual,2011,bioetanol combustion consumption by to the public,9.86286294,TJ,N2O,0.6,kg/TJ,5.917717764,kg -a3277076-9b43-355d-8dc9-0da8e529a14d,SESCO,II.1.1,Salta,AR-A,annual,2011,bioetanol combustion consumption by to the public,8.84330136,TJ,CH4,10.0,kg/TJ,88.4330136,kg -55e49bad-c4b7-3239-a3c6-d6fbecef9697,SESCO,II.1.1,Salta,AR-A,annual,2011,bioetanol combustion consumption by to the public,8.84330136,TJ,N2O,0.6,kg/TJ,5.305980816,kg -a6b84a31-ef2b-3a79-976f-db37b5e7984b,SESCO,II.1.1,San Juan,AR-J,annual,2011,bioetanol combustion consumption by to the public,6.3964387799999995,TJ,CH4,10.0,kg/TJ,63.9643878,kg -2aa99277-88af-353d-a1e3-08b42f07ac04,SESCO,II.1.1,San Juan,AR-J,annual,2011,bioetanol combustion consumption by to the public,6.3964387799999995,TJ,N2O,0.6,kg/TJ,3.8378632679999996,kg -00928f9b-e3e9-3ace-8231-507928b13dab,SESCO,II.1.1,San Luis,AR-D,annual,2011,bioetanol combustion consumption by to the public,6.167644559999999,TJ,CH4,10.0,kg/TJ,61.676445599999994,kg -a965f680-e0b8-3dd5-aa7d-99d4e59d8450,SESCO,II.1.1,San Luis,AR-D,annual,2011,bioetanol combustion consumption by to the public,6.167644559999999,TJ,N2O,0.6,kg/TJ,3.7005867359999995,kg -4b74cd2d-d706-39d6-bbaf-5602f035cdae,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2011,bioetanol combustion consumption by to the public,6.874904160000001,TJ,CH4,10.0,kg/TJ,68.74904160000001,kg -06f2b2bb-bcb8-392b-8816-a63bbc68ce7c,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2011,bioetanol combustion consumption by to the public,6.874904160000001,TJ,N2O,0.6,kg/TJ,4.124942496,kg -a5539cc0-055b-3b95-bc6b-c1b7df2f82aa,SESCO,II.1.1,Santa Fe,AR-S,annual,2011,bioetanol combustion consumption by to the public,36.28241748,TJ,CH4,10.0,kg/TJ,362.8241748,kg -3c1fcf3e-6f23-3838-8cdb-026f3506fe7f,SESCO,II.1.1,Santa Fe,AR-S,annual,2011,bioetanol combustion consumption by to the public,36.28241748,TJ,N2O,0.6,kg/TJ,21.769450488,kg -6842977e-5a51-3cc8-b2d4-6fae92656a13,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2011,bioetanol combustion consumption by to the public,6.11651736,TJ,CH4,10.0,kg/TJ,61.165173599999996,kg -d31824ca-cc1b-320e-82f6-8eec07bfe7ed,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2011,bioetanol combustion consumption by to the public,6.11651736,TJ,N2O,0.6,kg/TJ,3.6699104159999996,kg -3ef07d53-a1cd-31cb-b06b-85ebdf04026f,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2011,bioetanol combustion consumption by to the public,0.40518306,TJ,CH4,10.0,kg/TJ,4.0518306,kg -e2b959c4-ecc3-3083-bcac-b3eeb093aac7,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2011,bioetanol combustion consumption by to the public,0.40518306,TJ,N2O,0.6,kg/TJ,0.24310983599999997,kg -1c3d4f7d-0eaf-3215-a7b7-1a07e0abf85b,SESCO,II.1.1,Tucuman,AR-T,annual,2011,bioetanol combustion consumption by to the public,9.1006416,TJ,CH4,10.0,kg/TJ,91.006416,kg -36583f89-113b-39f7-bc58-b5326ae55ac8,SESCO,II.1.1,Tucuman,AR-T,annual,2011,bioetanol combustion consumption by to the public,9.1006416,TJ,N2O,0.6,kg/TJ,5.46038496,kg -d528005f-5856-36ab-805b-02ba6c606dcd,SESCO,II.1.1,Buenos Aires,AR-B,annual,2011,bioetanol combustion consumption by freight transport,0.34681284,TJ,CH4,10.0,kg/TJ,3.4681284000000003,kg -87e75431-cfe0-3a47-881b-3e1dac03bd63,SESCO,II.1.1,Buenos Aires,AR-B,annual,2011,bioetanol combustion consumption by freight transport,0.34681284,TJ,N2O,0.6,kg/TJ,0.208087704,kg -a0e71644-f2ba-3d29-94aa-be0f93ce9abb,SESCO,II.1.1,Capital Federal,AR-C,annual,2011,bioetanol combustion consumption by freight transport,0.0553878,TJ,CH4,10.0,kg/TJ,0.553878,kg -fe6cd39b-064e-3c38-9728-c4f31ed29ea8,SESCO,II.1.1,Capital Federal,AR-C,annual,2011,bioetanol combustion consumption by freight transport,0.0553878,TJ,N2O,0.6,kg/TJ,0.03323268,kg -15c8f7d6-ca0d-3a2d-b67f-cfb745354651,SESCO,II.1.1,Catamarca,AR-K,annual,2011,bioetanol combustion consumption by freight transport,0.00042605999999999997,TJ,CH4,10.0,kg/TJ,0.0042606,kg -ea3ffdaa-c037-3d9b-8938-cfdc2e59c09b,SESCO,II.1.1,Catamarca,AR-K,annual,2011,bioetanol combustion consumption by freight transport,0.00042605999999999997,TJ,N2O,0.6,kg/TJ,0.00025563599999999995,kg -167b8b92-37e0-338f-88e3-d6db87e593d1,SESCO,II.1.1,Chaco,AR-H,annual,2011,bioetanol combustion consumption by freight transport,0.0063909,TJ,CH4,10.0,kg/TJ,0.063909,kg -5ffc931d-4661-3fb4-bea6-33e63e451093,SESCO,II.1.1,Chaco,AR-H,annual,2011,bioetanol combustion consumption by freight transport,0.0063909,TJ,N2O,0.6,kg/TJ,0.0038345399999999996,kg -4854168d-3399-33d7-b90e-0be337475e7b,SESCO,II.1.1,Chubut,AR-U,annual,2011,bioetanol combustion consumption by freight transport,0.00937332,TJ,CH4,10.0,kg/TJ,0.09373319999999999,kg -b95827a9-e7ba-383a-ac59-eb0088f94ea3,SESCO,II.1.1,Chubut,AR-U,annual,2011,bioetanol combustion consumption by freight transport,0.00937332,TJ,N2O,0.6,kg/TJ,0.0056239919999999995,kg -f79a8008-1510-3cb9-a1bd-98d62a4e7ab6,SESCO,II.1.1,Corrientes,AR-W,annual,2011,bioetanol combustion consumption by freight transport,0.0085212,TJ,CH4,10.0,kg/TJ,0.085212,kg -c4eb2eca-87b6-3b85-970d-a95095041ff5,SESCO,II.1.1,Corrientes,AR-W,annual,2011,bioetanol combustion consumption by freight transport,0.0085212,TJ,N2O,0.6,kg/TJ,0.005112719999999999,kg -6a0e9b7f-6da1-3315-ba7d-9294bc3b0600,SESCO,II.1.1,Córdoba,AR-X,annual,2011,bioetanol combustion consumption by freight transport,0.032380559999999996,TJ,CH4,10.0,kg/TJ,0.32380559999999997,kg -e069458f-70bc-30c6-9036-ff9d876bf3b2,SESCO,II.1.1,Córdoba,AR-X,annual,2011,bioetanol combustion consumption by freight transport,0.032380559999999996,TJ,N2O,0.6,kg/TJ,0.019428335999999997,kg -d4768481-f403-3bd5-a3a5-423ba13f07e1,SESCO,II.1.1,Entre Rios,AR-E,annual,2011,bioetanol combustion consumption by freight transport,0.0127818,TJ,CH4,10.0,kg/TJ,0.127818,kg -5c4bacb4-ac0a-3f04-b583-6bcac4ecc744,SESCO,II.1.1,Entre Rios,AR-E,annual,2011,bioetanol combustion consumption by freight transport,0.0127818,TJ,N2O,0.6,kg/TJ,0.007669079999999999,kg -1bb6d8bc-38d7-329e-b5fa-e720ba4b2327,SESCO,II.1.1,Formosa,AR-P,annual,2011,bioetanol combustion consumption by freight transport,0.00042605999999999997,TJ,CH4,10.0,kg/TJ,0.0042606,kg -5e5b328d-5cc6-3930-a979-96f3615f13e4,SESCO,II.1.1,Formosa,AR-P,annual,2011,bioetanol combustion consumption by freight transport,0.00042605999999999997,TJ,N2O,0.6,kg/TJ,0.00025563599999999995,kg -afb21d67-95af-3344-9989-ab862bc466e6,SESCO,II.1.1,Jujuy,AR-Y,annual,2011,bioetanol combustion consumption by freight transport,0.0017042399999999999,TJ,CH4,10.0,kg/TJ,0.0170424,kg -e13363be-a933-322d-ae6d-a6154d7bf2a0,SESCO,II.1.1,Jujuy,AR-Y,annual,2011,bioetanol combustion consumption by freight transport,0.0017042399999999999,TJ,N2O,0.6,kg/TJ,0.0010225439999999998,kg -2d1064f0-0dc6-36cd-b980-b16aa234a1ce,SESCO,II.1.1,La Pampa,AR-L,annual,2011,bioetanol combustion consumption by freight transport,0.00298242,TJ,CH4,10.0,kg/TJ,0.0298242,kg -dfa36a6d-d29b-3ec0-afc1-1a1f1d6868f7,SESCO,II.1.1,La Pampa,AR-L,annual,2011,bioetanol combustion consumption by freight transport,0.00298242,TJ,N2O,0.6,kg/TJ,0.001789452,kg -8155c34c-caf9-378f-9f6c-58060b73b58f,SESCO,II.1.1,La Rioja,AR-F,annual,2011,bioetanol combustion consumption by freight transport,0.0012781799999999999,TJ,CH4,10.0,kg/TJ,0.0127818,kg -924f8765-6448-3547-9d5c-11fa5c9774a2,SESCO,II.1.1,La Rioja,AR-F,annual,2011,bioetanol combustion consumption by freight transport,0.0012781799999999999,TJ,N2O,0.6,kg/TJ,0.0007669079999999998,kg -7c97a5ee-9d69-3872-a012-c6450ed40130,SESCO,II.1.1,Mendoza,AR-M,annual,2011,bioetanol combustion consumption by freight transport,0.032380559999999996,TJ,CH4,10.0,kg/TJ,0.32380559999999997,kg -5bbb06bb-0135-3e71-9da2-8becdc6e8875,SESCO,II.1.1,Mendoza,AR-M,annual,2011,bioetanol combustion consumption by freight transport,0.032380559999999996,TJ,N2O,0.6,kg/TJ,0.019428335999999997,kg -8fa8e5d7-64f9-3235-816e-015752238542,SESCO,II.1.1,Misiones,AR-N,annual,2011,bioetanol combustion consumption by freight transport,0.008095139999999999,TJ,CH4,10.0,kg/TJ,0.08095139999999999,kg -5077916b-bb69-3e8a-99fc-4ecbf50f52df,SESCO,II.1.1,Misiones,AR-N,annual,2011,bioetanol combustion consumption by freight transport,0.008095139999999999,TJ,N2O,0.6,kg/TJ,0.004857083999999999,kg -69be2e6d-6c27-3757-9109-1a5ca07203cb,SESCO,II.1.1,Neuquén,AR-Q,annual,2011,bioetanol combustion consumption by freight transport,0.0106515,TJ,CH4,10.0,kg/TJ,0.106515,kg -ba072e55-da1f-3588-8feb-cfabcf337742,SESCO,II.1.1,Neuquén,AR-Q,annual,2011,bioetanol combustion consumption by freight transport,0.0106515,TJ,N2O,0.6,kg/TJ,0.0063909,kg -f68464a0-f04f-3968-bccd-9f9977c27763,SESCO,II.1.1,Rio Negro,AR-R,annual,2011,bioetanol combustion consumption by freight transport,0.0106515,TJ,CH4,10.0,kg/TJ,0.106515,kg -8cfcb868-1711-3270-bf28-94b3cc5b3446,SESCO,II.1.1,Rio Negro,AR-R,annual,2011,bioetanol combustion consumption by freight transport,0.0106515,TJ,N2O,0.6,kg/TJ,0.0063909,kg -90a7954d-eb45-30be-8376-1201b6a6da0a,SESCO,II.1.1,Salta,AR-A,annual,2011,bioetanol combustion consumption by freight transport,0.0085212,TJ,CH4,10.0,kg/TJ,0.085212,kg -ebc51a4a-b999-3eb0-9e8f-6f4f5c83e564,SESCO,II.1.1,Salta,AR-A,annual,2011,bioetanol combustion consumption by freight transport,0.0085212,TJ,N2O,0.6,kg/TJ,0.005112719999999999,kg -394d9628-e90d-348e-92fd-bc7fbb3db74b,SESCO,II.1.1,San Juan,AR-J,annual,2011,bioetanol combustion consumption by freight transport,0.0021303,TJ,CH4,10.0,kg/TJ,0.021303,kg -f6f92680-53fc-3619-976c-35f3db28c257,SESCO,II.1.1,San Juan,AR-J,annual,2011,bioetanol combustion consumption by freight transport,0.0021303,TJ,N2O,0.6,kg/TJ,0.0012781799999999999,kg -73b958d4-3f88-3e62-9789-c016455df6c6,SESCO,II.1.1,San Luis,AR-D,annual,2011,bioetanol combustion consumption by freight transport,0.00468666,TJ,CH4,10.0,kg/TJ,0.046866599999999994,kg -23ef3ab7-31e4-3814-9099-e9ec8c1a051e,SESCO,II.1.1,San Luis,AR-D,annual,2011,bioetanol combustion consumption by freight transport,0.00468666,TJ,N2O,0.6,kg/TJ,0.0028119959999999998,kg -0ef228a0-9cd2-3642-b62b-eadf5b9944c9,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2011,bioetanol combustion consumption by freight transport,0.00298242,TJ,CH4,10.0,kg/TJ,0.0298242,kg -03b73bf5-166f-31b5-9599-0565aa41eb3e,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2011,bioetanol combustion consumption by freight transport,0.00298242,TJ,N2O,0.6,kg/TJ,0.001789452,kg -f792a12e-5c5c-305d-9f6b-2e37836d1943,SESCO,II.1.1,Santa Fe,AR-S,annual,2011,bioetanol combustion consumption by freight transport,0.05155326,TJ,CH4,10.0,kg/TJ,0.5155326,kg -07b78673-91cf-375d-8ac7-151b05f4b067,SESCO,II.1.1,Santa Fe,AR-S,annual,2011,bioetanol combustion consumption by freight transport,0.05155326,TJ,N2O,0.6,kg/TJ,0.030931955999999997,kg -4e9983f9-1fc0-353d-9e08-cb4377baad9e,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2011,bioetanol combustion consumption by freight transport,0.0025563599999999997,TJ,CH4,10.0,kg/TJ,0.0255636,kg -9b33756f-94e1-3203-91ed-bf636d919669,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2011,bioetanol combustion consumption by freight transport,0.0025563599999999997,TJ,N2O,0.6,kg/TJ,0.0015338159999999997,kg -5a4d2d0a-b5a7-3a24-b751-6050dede8762,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2011,bioetanol combustion consumption by freight transport,0.0012781799999999999,TJ,CH4,10.0,kg/TJ,0.0127818,kg -debf8a4b-e77c-39af-a08b-9880918cf2e7,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2011,bioetanol combustion consumption by freight transport,0.0012781799999999999,TJ,N2O,0.6,kg/TJ,0.0007669079999999998,kg -1507e541-034b-3358-8505-5247ee2b6643,SESCO,II.1.1,Tucuman,AR-T,annual,2011,bioetanol combustion consumption by freight transport,0.00724302,TJ,CH4,10.0,kg/TJ,0.0724302,kg -ce2c63fe-7c2d-3295-a47e-9a66a7a49afa,SESCO,II.1.1,Tucuman,AR-T,annual,2011,bioetanol combustion consumption by freight transport,0.00724302,TJ,N2O,0.6,kg/TJ,0.004345812,kg -c9aa4cfd-f73b-3536-962e-dd607d45d094,SESCO,II.1.1,Buenos Aires,AR-B,annual,2011,bioetanol combustion consumption by freight transport,0.38601036,TJ,CH4,10.0,kg/TJ,3.8601036,kg -89a60579-3d8c-3705-a760-02758a5e0ea5,SESCO,II.1.1,Buenos Aires,AR-B,annual,2011,bioetanol combustion consumption by freight transport,0.38601036,TJ,N2O,0.6,kg/TJ,0.23160621599999998,kg -c4f0fb88-bec0-3969-8e03-255602dcca59,SESCO,II.1.1,Capital Federal,AR-C,annual,2011,bioetanol combustion consumption by freight transport,0.1043847,TJ,CH4,10.0,kg/TJ,1.043847,kg -9fb19d44-1369-3fe7-ab13-1bfeb24178ce,SESCO,II.1.1,Capital Federal,AR-C,annual,2011,bioetanol combustion consumption by freight transport,0.1043847,TJ,N2O,0.6,kg/TJ,0.06263081999999999,kg -15c8f7d6-ca0d-3a2d-b67f-cfb745354651,SESCO,II.1.1,Catamarca,AR-K,annual,2011,bioetanol combustion consumption by freight transport,0.00042605999999999997,TJ,CH4,10.0,kg/TJ,0.0042606,kg -ea3ffdaa-c037-3d9b-8938-cfdc2e59c09b,SESCO,II.1.1,Catamarca,AR-K,annual,2011,bioetanol combustion consumption by freight transport,0.00042605999999999997,TJ,N2O,0.6,kg/TJ,0.00025563599999999995,kg -ba869e3e-0c6f-3c21-8f7a-8f693aba2a6a,SESCO,II.1.1,Chaco,AR-H,annual,2011,bioetanol combustion consumption by freight transport,0.010225439999999999,TJ,CH4,10.0,kg/TJ,0.1022544,kg -766eb192-4d75-324a-a4ef-384c46b8bfec,SESCO,II.1.1,Chaco,AR-H,annual,2011,bioetanol combustion consumption by freight transport,0.010225439999999999,TJ,N2O,0.6,kg/TJ,0.006135263999999999,kg -967b6872-cc45-3d64-b6c4-7613905b1973,SESCO,II.1.1,Chubut,AR-U,annual,2011,bioetanol combustion consumption by freight transport,0.007669079999999999,TJ,CH4,10.0,kg/TJ,0.07669079999999999,kg -0d47c510-c114-34cb-8680-bdb1101ad357,SESCO,II.1.1,Chubut,AR-U,annual,2011,bioetanol combustion consumption by freight transport,0.007669079999999999,TJ,N2O,0.6,kg/TJ,0.004601447999999999,kg -afb93252-cc80-3c3a-a83c-c86db53f1eb4,SESCO,II.1.1,Corrientes,AR-W,annual,2011,bioetanol combustion consumption by freight transport,0.0068169599999999995,TJ,CH4,10.0,kg/TJ,0.0681696,kg -3362e73c-459e-32a7-8bcf-3c8adb764834,SESCO,II.1.1,Corrientes,AR-W,annual,2011,bioetanol combustion consumption by freight transport,0.0068169599999999995,TJ,N2O,0.6,kg/TJ,0.004090175999999999,kg -6885ffaf-2338-35a9-be94-cc1a5616cc46,SESCO,II.1.1,Córdoba,AR-X,annual,2011,bioetanol combustion consumption by freight transport,0.030676319999999997,TJ,CH4,10.0,kg/TJ,0.30676319999999996,kg -6c669eee-7008-3f6e-a259-ff067004c2fe,SESCO,II.1.1,Córdoba,AR-X,annual,2011,bioetanol combustion consumption by freight transport,0.030676319999999997,TJ,N2O,0.6,kg/TJ,0.018405791999999997,kg -408aa0b9-36bd-34f4-94e3-91ff7fba3b68,SESCO,II.1.1,Entre Rios,AR-E,annual,2011,bioetanol combustion consumption by freight transport,0.01192968,TJ,CH4,10.0,kg/TJ,0.1192968,kg -b1309d9c-c5a8-3083-a398-7c7d261a75dc,SESCO,II.1.1,Entre Rios,AR-E,annual,2011,bioetanol combustion consumption by freight transport,0.01192968,TJ,N2O,0.6,kg/TJ,0.007157808,kg -34b39e73-dcf8-379f-8655-32177d674aa5,SESCO,II.1.1,Formosa,AR-P,annual,2011,bioetanol combustion consumption by freight transport,0.0008521199999999999,TJ,CH4,10.0,kg/TJ,0.0085212,kg -7d8ff3ab-88e9-3543-8229-bc376e70b7af,SESCO,II.1.1,Formosa,AR-P,annual,2011,bioetanol combustion consumption by freight transport,0.0008521199999999999,TJ,N2O,0.6,kg/TJ,0.0005112719999999999,kg -0d2ae1f5-b16d-31c5-a263-1013a1f6653b,SESCO,II.1.1,Jujuy,AR-Y,annual,2011,bioetanol combustion consumption by freight transport,0.0008521199999999999,TJ,CH4,10.0,kg/TJ,0.0085212,kg -3ed49f0d-04c9-3fce-9145-9b9bd02ddacd,SESCO,II.1.1,Jujuy,AR-Y,annual,2011,bioetanol combustion consumption by freight transport,0.0008521199999999999,TJ,N2O,0.6,kg/TJ,0.0005112719999999999,kg -2792db6d-bde5-3a3f-9653-206bd7822800,SESCO,II.1.1,La Pampa,AR-L,annual,2011,bioetanol combustion consumption by freight transport,0.0025563599999999997,TJ,CH4,10.0,kg/TJ,0.0255636,kg -5e7e7785-5f4a-3ad1-9f02-a2175461f2e7,SESCO,II.1.1,La Pampa,AR-L,annual,2011,bioetanol combustion consumption by freight transport,0.0025563599999999997,TJ,N2O,0.6,kg/TJ,0.0015338159999999997,kg -adfdccbb-7726-3072-a1d3-4b1ab53bfc36,SESCO,II.1.1,La Rioja,AR-F,annual,2011,bioetanol combustion consumption by freight transport,0.0008521199999999999,TJ,CH4,10.0,kg/TJ,0.0085212,kg -7f7bdd19-7ddd-3547-b49c-476669ee487a,SESCO,II.1.1,La Rioja,AR-F,annual,2011,bioetanol combustion consumption by freight transport,0.0008521199999999999,TJ,N2O,0.6,kg/TJ,0.0005112719999999999,kg -e429df09-613d-358b-8732-f60558dedaa1,SESCO,II.1.1,Mendoza,AR-M,annual,2011,bioetanol combustion consumption by freight transport,0.02087694,TJ,CH4,10.0,kg/TJ,0.2087694,kg -a887e21e-fa69-3224-b439-92ba31ad0480,SESCO,II.1.1,Mendoza,AR-M,annual,2011,bioetanol combustion consumption by freight transport,0.02087694,TJ,N2O,0.6,kg/TJ,0.012526164,kg -202dca87-2b91-3e20-8069-c8e82d2f0233,SESCO,II.1.1,Misiones,AR-N,annual,2011,bioetanol combustion consumption by freight transport,0.00596484,TJ,CH4,10.0,kg/TJ,0.0596484,kg -b1100ccc-b39b-38f5-9764-00c017fd6e99,SESCO,II.1.1,Misiones,AR-N,annual,2011,bioetanol combustion consumption by freight transport,0.00596484,TJ,N2O,0.6,kg/TJ,0.003578904,kg -4e2f9d5a-d16d-3bb1-ad24-65a709c3a375,SESCO,II.1.1,Neuquén,AR-Q,annual,2011,bioetanol combustion consumption by freight transport,0.008095139999999999,TJ,CH4,10.0,kg/TJ,0.08095139999999999,kg -eae57004-4cb5-3ea5-8c88-c76c6c337613,SESCO,II.1.1,Neuquén,AR-Q,annual,2011,bioetanol combustion consumption by freight transport,0.008095139999999999,TJ,N2O,0.6,kg/TJ,0.004857083999999999,kg -b69ec520-db2f-3e2f-ba4e-39a071705342,SESCO,II.1.1,Rio Negro,AR-R,annual,2011,bioetanol combustion consumption by freight transport,0.007669079999999999,TJ,CH4,10.0,kg/TJ,0.07669079999999999,kg -2cdd2b28-4bb5-3d25-8293-214d91d527f1,SESCO,II.1.1,Rio Negro,AR-R,annual,2011,bioetanol combustion consumption by freight transport,0.007669079999999999,TJ,N2O,0.6,kg/TJ,0.004601447999999999,kg -ec42fcfc-b79f-3816-9f82-bde7c74bed39,SESCO,II.1.1,Salta,AR-A,annual,2011,bioetanol combustion consumption by freight transport,0.00553878,TJ,CH4,10.0,kg/TJ,0.0553878,kg -11e70322-441e-34d9-a0da-666d94ff7366,SESCO,II.1.1,Salta,AR-A,annual,2011,bioetanol combustion consumption by freight transport,0.00553878,TJ,N2O,0.6,kg/TJ,0.003323268,kg -118789c7-e607-37d1-9aa5-f875c37409d7,SESCO,II.1.1,San Juan,AR-J,annual,2011,bioetanol combustion consumption by freight transport,0.0017042399999999999,TJ,CH4,10.0,kg/TJ,0.0170424,kg -74f561e5-1a09-3112-a341-d1450a823386,SESCO,II.1.1,San Juan,AR-J,annual,2011,bioetanol combustion consumption by freight transport,0.0017042399999999999,TJ,N2O,0.6,kg/TJ,0.0010225439999999998,kg -7ad1742c-e527-3b6d-ad64-b90e36df425b,SESCO,II.1.1,San Luis,AR-D,annual,2011,bioetanol combustion consumption by freight transport,0.0034084799999999998,TJ,CH4,10.0,kg/TJ,0.0340848,kg -2fb7fcc7-03f0-35f7-a0fb-47eb5ef3d5b9,SESCO,II.1.1,San Luis,AR-D,annual,2011,bioetanol combustion consumption by freight transport,0.0034084799999999998,TJ,N2O,0.6,kg/TJ,0.0020450879999999996,kg -e886ad5b-b4ca-32b5-b7ca-5b039180ac54,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2011,bioetanol combustion consumption by freight transport,0.0017042399999999999,TJ,CH4,10.0,kg/TJ,0.0170424,kg -a12501c9-cadb-3f6d-9474-841b63b89018,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2011,bioetanol combustion consumption by freight transport,0.0017042399999999999,TJ,N2O,0.6,kg/TJ,0.0010225439999999998,kg -7b1607dc-dfbe-347c-9ebd-07a422a22243,SESCO,II.1.1,Santa Fe,AR-S,annual,2011,bioetanol combustion consumption by freight transport,0.04771872,TJ,CH4,10.0,kg/TJ,0.4771872,kg -f22f5dd8-4e8a-372e-9995-252efd2d6f26,SESCO,II.1.1,Santa Fe,AR-S,annual,2011,bioetanol combustion consumption by freight transport,0.04771872,TJ,N2O,0.6,kg/TJ,0.028631232,kg -6ed23538-be15-3e88-a514-1f6fab3966bb,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2011,bioetanol combustion consumption by freight transport,0.0012781799999999999,TJ,CH4,10.0,kg/TJ,0.0127818,kg -3fa75ef5-5cf8-3cd2-8691-3535b3963c6d,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2011,bioetanol combustion consumption by freight transport,0.0012781799999999999,TJ,N2O,0.6,kg/TJ,0.0007669079999999998,kg -b6b0052d-e8b2-3fc0-8493-219cf43ccba6,SESCO,II.1.1,Tucuman,AR-T,annual,2011,bioetanol combustion consumption by freight transport,0.008095139999999999,TJ,CH4,10.0,kg/TJ,0.08095139999999999,kg -d9578a1e-7c1e-3502-b31d-106b993f0548,SESCO,II.1.1,Tucuman,AR-T,annual,2011,bioetanol combustion consumption by freight transport,0.008095139999999999,TJ,N2O,0.6,kg/TJ,0.004857083999999999,kg -c20717cc-f67c-3038-84c3-66f4657e215f,SESCO,II.1.1,Capital Federal,AR-C,annual,2012,bioetanol combustion consumption by to the public,0.80908794,TJ,CH4,10.0,kg/TJ,8.090879399999999,kg -aa4736c1-d86d-3fac-bb34-a41be1ead661,SESCO,II.1.1,Capital Federal,AR-C,annual,2012,bioetanol combustion consumption by to the public,0.80908794,TJ,N2O,0.6,kg/TJ,0.4854527639999999,kg -ab0a9cb3-1682-3e99-8a40-07ce9a90c020,SESCO,II.1.1,Capital Federal,AR-C,annual,2012,bioetanol combustion consumption by to the public,0.1022544,TJ,CH4,10.0,kg/TJ,1.022544,kg -09762b66-b826-3da7-8d67-989cbdee8085,SESCO,II.1.1,Capital Federal,AR-C,annual,2012,bioetanol combustion consumption by to the public,0.1022544,TJ,N2O,0.6,kg/TJ,0.06135263999999999,kg -8a6ecc91-3c59-318d-a00c-3875f49aa424,SESCO,II.5.1,Córdoba,AR-X,annual,2012,bioetanol combustion consumption by agriculture machines,0.146862882,TJ,CH4,10.0,kg/TJ,1.46862882,kg -65c76a59-c5c5-300b-8c1c-c7e8863d3257,SESCO,II.5.1,Córdoba,AR-X,annual,2012,bioetanol combustion consumption by agriculture machines,0.146862882,TJ,N2O,0.6,kg/TJ,0.0881177292,kg -3307b0f6-959d-3d37-bedb-59992ca710e5,SESCO,II.5.1,Santa Fe,AR-S,annual,2012,bioetanol combustion consumption by agriculture machines,0.39802525199999994,TJ,CH4,10.0,kg/TJ,3.9802525199999996,kg -63cda862-89ad-36cd-8257-04f2cef7a782,SESCO,II.5.1,Santa Fe,AR-S,annual,2012,bioetanol combustion consumption by agriculture machines,0.39802525199999994,TJ,N2O,0.6,kg/TJ,0.23881515119999996,kg -caa6c4d2-2e9f-376c-8c36-c4c4fa9cd6ef,SESCO,II.5.1,Córdoba,AR-X,annual,2012,bioetanol combustion consumption by agriculture machines,0.070044264,TJ,CH4,10.0,kg/TJ,0.7004426399999999,kg -dafb17ec-0f2c-30b7-b7a0-5f8a0d9fd139,SESCO,II.5.1,Córdoba,AR-X,annual,2012,bioetanol combustion consumption by agriculture machines,0.070044264,TJ,N2O,0.6,kg/TJ,0.0420265584,kg -5fd11a89-9610-3e7a-b58a-f7be7decd03b,SESCO,II.5.1,Santa Fe,AR-S,annual,2012,bioetanol combustion consumption by agriculture machines,0.01150362,TJ,CH4,10.0,kg/TJ,0.1150362,kg -82bebfb3-a1ba-33ff-bab0-ac2373381ad1,SESCO,II.5.1,Santa Fe,AR-S,annual,2012,bioetanol combustion consumption by agriculture machines,0.01150362,TJ,N2O,0.6,kg/TJ,0.006902172000000001,kg -df95c809-b3d7-36df-89ad-f002a8c14afc,SESCO,II.1.1,Buenos Aires,AR-B,annual,2012,bioetanol combustion consumption by to the public,0.29781593999999995,TJ,CH4,10.0,kg/TJ,2.9781593999999996,kg -72714bec-918d-3f3d-809e-cd1085fbbc59,SESCO,II.1.1,Buenos Aires,AR-B,annual,2012,bioetanol combustion consumption by to the public,0.29781593999999995,TJ,N2O,0.6,kg/TJ,0.17868956399999997,kg -35ce37fa-2215-306d-92fb-85c60f9853b4,SESCO,II.1.1,Chaco,AR-H,annual,2012,bioetanol combustion consumption by to the public,0.08883350999999999,TJ,CH4,10.0,kg/TJ,0.8883350999999999,kg -3da9bf17-dc81-3474-8ed1-74783793013f,SESCO,II.1.1,Chaco,AR-H,annual,2012,bioetanol combustion consumption by to the public,0.08883350999999999,TJ,N2O,0.6,kg/TJ,0.05330010599999999,kg -58c7d687-42b5-3fae-aed2-c32a383ce085,SESCO,II.1.1,Entre Rios,AR-E,annual,2012,bioetanol combustion consumption by to the public,0.052405379999999994,TJ,CH4,10.0,kg/TJ,0.5240537999999999,kg -533ec31d-2284-3a7e-9f83-d5eba16128be,SESCO,II.1.1,Entre Rios,AR-E,annual,2012,bioetanol combustion consumption by to the public,0.052405379999999994,TJ,N2O,0.6,kg/TJ,0.031443228,kg -d9758482-9fbe-3005-8cfd-dafb426b10a5,SESCO,II.1.1,Santa Fe,AR-S,annual,2012,bioetanol combustion consumption by to the public,0.024924509999999997,TJ,CH4,10.0,kg/TJ,0.24924509999999997,kg -b5babf12-bb84-351a-b672-171faf963dab,SESCO,II.1.1,Santa Fe,AR-S,annual,2012,bioetanol combustion consumption by to the public,0.024924509999999997,TJ,N2O,0.6,kg/TJ,0.014954705999999998,kg -55b6b6b0-87d9-3a27-97bc-f63da042f62a,SESCO,II.1.1,Buenos Aires,AR-B,annual,2012,bioetanol combustion consumption by to the public,158.829863403879,TJ,CH4,10.0,kg/TJ,1588.29863403879,kg -1a12fd3d-a316-36f3-b8fc-2f40ed2ceb40,SESCO,II.1.1,Buenos Aires,AR-B,annual,2012,bioetanol combustion consumption by to the public,158.829863403879,TJ,N2O,0.6,kg/TJ,95.2979180423274,kg -a843a19f-be03-37a7-a029-4ba53909a9f4,SESCO,II.1.1,Capital Federal,AR-C,annual,2012,bioetanol combustion consumption by to the public,53.828059910633996,TJ,CH4,10.0,kg/TJ,538.28059910634,kg -2480cc11-2ca1-3586-bc54-cc7ecc6287a8,SESCO,II.1.1,Capital Federal,AR-C,annual,2012,bioetanol combustion consumption by to the public,53.828059910633996,TJ,N2O,0.6,kg/TJ,32.2968359463804,kg -0bce88fb-ace2-34de-83df-8e9e37dc4a88,SESCO,II.1.1,Catamarca,AR-K,annual,2012,bioetanol combustion consumption by to the public,6.208354997757,TJ,CH4,10.0,kg/TJ,62.083549977569994,kg -71edf7b5-0ea2-3919-adce-6689bedc7fee,SESCO,II.1.1,Catamarca,AR-K,annual,2012,bioetanol combustion consumption by to the public,6.208354997757,TJ,N2O,0.6,kg/TJ,3.7250129986541998,kg -eef2a14f-cca3-3928-8613-d05d57afc23a,SESCO,II.1.1,Chaco,AR-H,annual,2012,bioetanol combustion consumption by to the public,7.805238380135999,TJ,CH4,10.0,kg/TJ,78.05238380136,kg -999913d4-b99e-3582-93a8-8b75727134ae,SESCO,II.1.1,Chaco,AR-H,annual,2012,bioetanol combustion consumption by to the public,7.805238380135999,TJ,N2O,0.6,kg/TJ,4.6831430280815995,kg -bc9a20cc-c9c3-3aa3-a752-12354c5e9284,SESCO,II.1.1,Chubut,AR-U,annual,2012,bioetanol combustion consumption by to the public,6.949108495142999,TJ,CH4,10.0,kg/TJ,69.49108495143,kg -ad23d842-bf2d-3a7d-80e7-e8dd51c5cb41,SESCO,II.1.1,Chubut,AR-U,annual,2012,bioetanol combustion consumption by to the public,6.949108495142999,TJ,N2O,0.6,kg/TJ,4.1694650970858,kg -0cc23241-9927-315c-8057-9a4b8d0d943d,SESCO,II.1.1,Corrientes,AR-W,annual,2012,bioetanol combustion consumption by to the public,5.062351527648,TJ,CH4,10.0,kg/TJ,50.62351527647999,kg -74155ff4-e215-3c91-9dfa-c6dbc24370f1,SESCO,II.1.1,Corrientes,AR-W,annual,2012,bioetanol combustion consumption by to the public,5.062351527648,TJ,N2O,0.6,kg/TJ,3.0374109165887995,kg -ef043bc1-e032-38b9-9e0f-6004782a1845,SESCO,II.1.1,Córdoba,AR-X,annual,2012,bioetanol combustion consumption by to the public,51.235704572382,TJ,CH4,10.0,kg/TJ,512.35704572382,kg -cef8654c-a3c2-3b0d-967c-279ac8bcfa13,SESCO,II.1.1,Córdoba,AR-X,annual,2012,bioetanol combustion consumption by to the public,51.235704572382,TJ,N2O,0.6,kg/TJ,30.741422743429197,kg -01f1b2dc-bca3-3e2b-bc40-a4f8afe58a39,SESCO,II.1.1,Entre Rios,AR-E,annual,2012,bioetanol combustion consumption by to the public,17.428313111805,TJ,CH4,10.0,kg/TJ,174.28313111805,kg -ba20897c-9c6d-33e6-96c3-c26a23858d9a,SESCO,II.1.1,Entre Rios,AR-E,annual,2012,bioetanol combustion consumption by to the public,17.428313111805,TJ,N2O,0.6,kg/TJ,10.456987867082999,kg -ea76541e-8c9c-3abc-83d8-ec984930c7e8,SESCO,II.1.1,Formosa,AR-P,annual,2012,bioetanol combustion consumption by to the public,7.140344290569,TJ,CH4,10.0,kg/TJ,71.40344290569,kg -342eb0fe-2a3e-33b3-9576-c4cc6b769b8e,SESCO,II.1.1,Formosa,AR-P,annual,2012,bioetanol combustion consumption by to the public,7.140344290569,TJ,N2O,0.6,kg/TJ,4.2842065743413995,kg -1a87acbe-6564-3bb5-838a-bd5e90c4f289,SESCO,II.1.1,Jujuy,AR-Y,annual,2012,bioetanol combustion consumption by to the public,1.8734447227949997,TJ,CH4,10.0,kg/TJ,18.734447227949996,kg -dd0cb058-b3ea-34da-ae8f-bf9e992a7e82,SESCO,II.1.1,Jujuy,AR-Y,annual,2012,bioetanol combustion consumption by to the public,1.8734447227949997,TJ,N2O,0.6,kg/TJ,1.1240668336769999,kg -6d9a6177-dda7-36f1-9bdb-f0198d953d6f,SESCO,II.1.1,La Pampa,AR-L,annual,2012,bioetanol combustion consumption by to the public,2.027515070088,TJ,CH4,10.0,kg/TJ,20.27515070088,kg -15f069d5-9c0e-3249-a695-82029cb61f46,SESCO,II.1.1,La Pampa,AR-L,annual,2012,bioetanol combustion consumption by to the public,2.027515070088,TJ,N2O,0.6,kg/TJ,1.2165090420528,kg -e18c1bc8-4511-3532-8ca4-706d94bfaa49,SESCO,II.1.1,La Rioja,AR-F,annual,2012,bioetanol combustion consumption by to the public,4.343928985224,TJ,CH4,10.0,kg/TJ,43.43928985224,kg -ced6c85a-160d-3f78-9db2-0da7dc6559fb,SESCO,II.1.1,La Rioja,AR-F,annual,2012,bioetanol combustion consumption by to the public,4.343928985224,TJ,N2O,0.6,kg/TJ,2.6063573911344,kg -159985bb-42b2-333e-8fe7-58ba72d61bf4,SESCO,II.1.1,Mendoza,AR-M,annual,2012,bioetanol combustion consumption by to the public,7.741548268461,TJ,CH4,10.0,kg/TJ,77.41548268461,kg -a3970fa2-5282-3452-9792-548cfcf3e77c,SESCO,II.1.1,Mendoza,AR-M,annual,2012,bioetanol combustion consumption by to the public,7.741548268461,TJ,N2O,0.6,kg/TJ,4.6449289610766,kg -4ed0e579-ba55-399b-80b1-e166a16cb28b,SESCO,II.1.1,Misiones,AR-N,annual,2012,bioetanol combustion consumption by to the public,14.689432394982,TJ,CH4,10.0,kg/TJ,146.89432394981998,kg -3b0eed5d-2d9b-36fc-8f75-cfe523236fac,SESCO,II.1.1,Misiones,AR-N,annual,2012,bioetanol combustion consumption by to the public,14.689432394982,TJ,N2O,0.6,kg/TJ,8.8136594369892,kg -b363a00a-06d5-38d9-9a83-a048aa25361e,SESCO,II.1.1,Neuquén,AR-Q,annual,2012,bioetanol combustion consumption by to the public,5.359744453976999,TJ,CH4,10.0,kg/TJ,53.597444539769995,kg -e2e7ce6f-957f-3393-8fc2-00e14b90dd30,SESCO,II.1.1,Neuquén,AR-Q,annual,2012,bioetanol combustion consumption by to the public,5.359744453976999,TJ,N2O,0.6,kg/TJ,3.2158466723861996,kg -61848143-4199-3852-b9e9-c8cd300f2618,SESCO,II.1.1,Rio Negro,AR-R,annual,2012,bioetanol combustion consumption by to the public,7.69470814809,TJ,CH4,10.0,kg/TJ,76.9470814809,kg -e87e2bf4-8a9a-3d2b-aa11-ad295a1f22c5,SESCO,II.1.1,Rio Negro,AR-R,annual,2012,bioetanol combustion consumption by to the public,7.69470814809,TJ,N2O,0.6,kg/TJ,4.6168248888539996,kg -f329e0f1-a27c-363a-9dd4-d0de6597140a,SESCO,II.1.1,Salta,AR-A,annual,2012,bioetanol combustion consumption by to the public,1.290681047763,TJ,CH4,10.0,kg/TJ,12.90681047763,kg -eeb1b0d5-d903-3e14-800a-bce641c4691e,SESCO,II.1.1,Salta,AR-A,annual,2012,bioetanol combustion consumption by to the public,1.290681047763,TJ,N2O,0.6,kg/TJ,0.7744086286577999,kg -5e378a16-0e6b-3fa1-8bb7-1005d833ad90,SESCO,II.1.1,San Juan,AR-J,annual,2012,bioetanol combustion consumption by to the public,6.1093380998789995,TJ,CH4,10.0,kg/TJ,61.093380998789996,kg -738a80b0-0b26-3040-82e7-86febe6b2606,SESCO,II.1.1,San Juan,AR-J,annual,2012,bioetanol combustion consumption by to the public,6.1093380998789995,TJ,N2O,0.6,kg/TJ,3.6656028599273993,kg -e7fd9f9b-14b2-3ee1-ac10-4ce16e429330,SESCO,II.1.1,San Luis,AR-D,annual,2012,bioetanol combustion consumption by to the public,10.001315354993999,TJ,CH4,10.0,kg/TJ,100.01315354993999,kg -e16db142-346d-3469-b7bc-219be3c2b464,SESCO,II.1.1,San Luis,AR-D,annual,2012,bioetanol combustion consumption by to the public,10.001315354993999,TJ,N2O,0.6,kg/TJ,6.000789212996399,kg -ec59d432-6c37-3a5f-a554-25c9bfbbda75,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2012,bioetanol combustion consumption by to the public,0.8077900760279999,TJ,CH4,10.0,kg/TJ,8.077900760279999,kg -e6633161-cb62-3119-84a7-461bc9356ab8,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2012,bioetanol combustion consumption by to the public,0.8077900760279999,TJ,N2O,0.6,kg/TJ,0.48467404561679994,kg -a23e78c7-bd30-36a6-8681-17c5b75adfc4,SESCO,II.1.1,Santa Fe,AR-S,annual,2012,bioetanol combustion consumption by to the public,48.76628011289999,TJ,CH4,10.0,kg/TJ,487.66280112899994,kg -6bda0c29-827e-3ad8-a050-012862d44c74,SESCO,II.1.1,Santa Fe,AR-S,annual,2012,bioetanol combustion consumption by to the public,48.76628011289999,TJ,N2O,0.6,kg/TJ,29.259768067739994,kg -a88c4bd6-c298-3d5d-9b3c-7158bf8bab90,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2012,bioetanol combustion consumption by to the public,5.1014616627419995,TJ,CH4,10.0,kg/TJ,51.01461662742,kg -43d00eb2-5e1c-34b9-a0d3-d7e410dcd37d,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2012,bioetanol combustion consumption by to the public,5.1014616627419995,TJ,N2O,0.6,kg/TJ,3.0608769976451997,kg -c8d42ed2-6821-3348-9af9-dd999949daff,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2012,bioetanol combustion consumption by to the public,1.8568421871389997,TJ,CH4,10.0,kg/TJ,18.568421871389997,kg -7ce05dcb-5522-31bc-b078-876c1ee6216f,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2012,bioetanol combustion consumption by to the public,1.8568421871389997,TJ,N2O,0.6,kg/TJ,1.1141053122833997,kg -cb13188b-a96e-3e9a-af83-10bcb23d1433,SESCO,II.1.1,Tucuman,AR-T,annual,2012,bioetanol combustion consumption by to the public,1.7517348254699998,TJ,CH4,10.0,kg/TJ,17.517348254699996,kg -3e8f5abc-09c1-3667-b57c-a4b0d8d4d715,SESCO,II.1.1,Tucuman,AR-T,annual,2012,bioetanol combustion consumption by to the public,1.7517348254699998,TJ,N2O,0.6,kg/TJ,1.0510408952819998,kg -7ae3737d-5ecb-34b2-9106-703c4c1573bc,SESCO,II.1.1,Buenos Aires,AR-B,annual,2012,bioetanol combustion consumption by to the public,36.47673701249399,TJ,CH4,10.0,kg/TJ,364.76737012493993,kg -f5c744f9-4972-3ef3-9030-bf154d14e415,SESCO,II.1.1,Buenos Aires,AR-B,annual,2012,bioetanol combustion consumption by to the public,36.47673701249399,TJ,N2O,0.6,kg/TJ,21.886042207496395,kg -f35c7270-899b-3e55-bcf4-d00a57f8812c,SESCO,II.1.1,Capital Federal,AR-C,annual,2012,bioetanol combustion consumption by to the public,18.496975507839,TJ,CH4,10.0,kg/TJ,184.96975507839,kg -133ff47c-1288-31a0-ac4b-dde9a04bd3fa,SESCO,II.1.1,Capital Federal,AR-C,annual,2012,bioetanol combustion consumption by to the public,18.496975507839,TJ,N2O,0.6,kg/TJ,11.0981853047034,kg -39d6739b-cd26-37ad-af20-06be3c450408,SESCO,II.1.1,Catamarca,AR-K,annual,2012,bioetanol combustion consumption by to the public,1.2195626651999998,TJ,CH4,10.0,kg/TJ,12.195626651999998,kg -cd822bdb-e00e-3409-8d7d-df8d467fa928,SESCO,II.1.1,Catamarca,AR-K,annual,2012,bioetanol combustion consumption by to the public,1.2195626651999998,TJ,N2O,0.6,kg/TJ,0.7317375991199998,kg -8034a875-5a4a-3b9f-8bf5-3e84e00382da,SESCO,II.1.1,Chaco,AR-H,annual,2012,bioetanol combustion consumption by to the public,1.5939327677580002,TJ,CH4,10.0,kg/TJ,15.939327677580001,kg -f56d8243-6436-3d80-b5b3-a155efd39bc2,SESCO,II.1.1,Chaco,AR-H,annual,2012,bioetanol combustion consumption by to the public,1.5939327677580002,TJ,N2O,0.6,kg/TJ,0.9563596606548,kg -cf79b6f3-eb89-303f-ba6a-05a295d9e587,SESCO,II.1.1,Chubut,AR-U,annual,2012,bioetanol combustion consumption by to the public,0.8852827422509999,TJ,CH4,10.0,kg/TJ,8.85282742251,kg -5b56d15e-1863-32ee-85f1-f3ce40af4a79,SESCO,II.1.1,Chubut,AR-U,annual,2012,bioetanol combustion consumption by to the public,0.8852827422509999,TJ,N2O,0.6,kg/TJ,0.5311696453506,kg -d5ad3073-7902-3905-a4fd-37172266fa96,SESCO,II.1.1,Corrientes,AR-W,annual,2012,bioetanol combustion consumption by to the public,1.1290597882109998,TJ,CH4,10.0,kg/TJ,11.29059788211,kg -0fc5ed78-459c-39bf-9b35-adb0840be5a7,SESCO,II.1.1,Corrientes,AR-W,annual,2012,bioetanol combustion consumption by to the public,1.1290597882109998,TJ,N2O,0.6,kg/TJ,0.6774358729265999,kg -b847f4fb-922b-3ca3-83d1-a103a4405ec1,SESCO,II.1.1,Córdoba,AR-X,annual,2012,bioetanol combustion consumption by to the public,12.024425816801998,TJ,CH4,10.0,kg/TJ,120.24425816801997,kg -905b8467-ae33-3ea3-8cb8-f08fd85c770a,SESCO,II.1.1,Córdoba,AR-X,annual,2012,bioetanol combustion consumption by to the public,12.024425816801998,TJ,N2O,0.6,kg/TJ,7.214655490081198,kg -89a54984-7874-3d86-abe2-54f1c4ae325c,SESCO,II.1.1,Entre Rios,AR-E,annual,2012,bioetanol combustion consumption by to the public,3.748014307899,TJ,CH4,10.0,kg/TJ,37.48014307899,kg -437d23bb-6c7b-3107-967f-a39bfbfd14dc,SESCO,II.1.1,Entre Rios,AR-E,annual,2012,bioetanol combustion consumption by to the public,3.748014307899,TJ,N2O,0.6,kg/TJ,2.2488085847394,kg -7bc9a96b-a9ec-3ba4-a6b5-51ff03e16943,SESCO,II.1.1,Formosa,AR-P,annual,2012,bioetanol combustion consumption by to the public,1.4967290321189999,TJ,CH4,10.0,kg/TJ,14.96729032119,kg -c5425c38-7448-3780-9aee-e7615b8cded6,SESCO,II.1.1,Formosa,AR-P,annual,2012,bioetanol combustion consumption by to the public,1.4967290321189999,TJ,N2O,0.6,kg/TJ,0.8980374192713999,kg -27ccf45e-89ff-3675-addd-2bfe20c3088f,SESCO,II.1.1,Jujuy,AR-Y,annual,2012,bioetanol combustion consumption by to the public,0.12013115329799998,TJ,CH4,10.0,kg/TJ,1.2013115329799997,kg -083f2f3e-15c7-3199-96c3-c3291e2f448c,SESCO,II.1.1,Jujuy,AR-Y,annual,2012,bioetanol combustion consumption by to the public,0.12013115329799998,TJ,N2O,0.6,kg/TJ,0.07207869197879999,kg -0b0fb4f8-e7a2-3a82-a6b4-108870b6698f,SESCO,II.1.1,La Pampa,AR-L,annual,2012,bioetanol combustion consumption by to the public,0.4424790103109999,TJ,CH4,10.0,kg/TJ,4.4247901031099985,kg -d3da2277-5b7e-32d8-bbac-fe0cdee5b624,SESCO,II.1.1,La Pampa,AR-L,annual,2012,bioetanol combustion consumption by to the public,0.4424790103109999,TJ,N2O,0.6,kg/TJ,0.26548740618659994,kg -bc48d318-8788-3fc4-a863-176f2495db9a,SESCO,II.1.1,La Rioja,AR-F,annual,2012,bioetanol combustion consumption by to the public,0.751358109483,TJ,CH4,10.0,kg/TJ,7.51358109483,kg -d6b76130-35a0-3c56-93f1-857307a8a698,SESCO,II.1.1,La Rioja,AR-F,annual,2012,bioetanol combustion consumption by to the public,0.751358109483,TJ,N2O,0.6,kg/TJ,0.45081486568979995,kg -87c5580d-30e6-3967-99a1-9948fb70fc1f,SESCO,II.1.1,Mendoza,AR-M,annual,2012,bioetanol combustion consumption by to the public,1.381851390348,TJ,CH4,10.0,kg/TJ,13.818513903480001,kg -0a83dc36-5730-3296-8230-872779aa3fe1,SESCO,II.1.1,Mendoza,AR-M,annual,2012,bioetanol combustion consumption by to the public,1.381851390348,TJ,N2O,0.6,kg/TJ,0.8291108342088,kg -1a99b5d1-91a1-334a-9095-615be5aef486,SESCO,II.1.1,Misiones,AR-N,annual,2012,bioetanol combustion consumption by to the public,1.8325168240139997,TJ,CH4,10.0,kg/TJ,18.32516824014,kg -9c6baef1-b3d6-3a69-a4ae-b16abf944781,SESCO,II.1.1,Misiones,AR-N,annual,2012,bioetanol combustion consumption by to the public,1.8325168240139997,TJ,N2O,0.6,kg/TJ,1.0995100944083998,kg -a92a5ce4-301b-3ce1-8bd3-81ccdac23e63,SESCO,II.1.1,Neuquén,AR-Q,annual,2012,bioetanol combustion consumption by to the public,1.1625842767049999,TJ,CH4,10.0,kg/TJ,11.625842767049999,kg -e88411dc-a5b5-38dd-8183-6ab4da3d2020,SESCO,II.1.1,Neuquén,AR-Q,annual,2012,bioetanol combustion consumption by to the public,1.1625842767049999,TJ,N2O,0.6,kg/TJ,0.6975505660229999,kg -f62398c4-e1d9-3879-b3ea-5a141253c973,SESCO,II.1.1,Rio Negro,AR-R,annual,2012,bioetanol combustion consumption by to the public,1.611881226954,TJ,CH4,10.0,kg/TJ,16.11881226954,kg -9830955e-222e-312e-807c-7484aec0a397,SESCO,II.1.1,Rio Negro,AR-R,annual,2012,bioetanol combustion consumption by to the public,1.611881226954,TJ,N2O,0.6,kg/TJ,0.9671287361723999,kg -ee177145-702f-3d08-a28f-7cc7986d1213,SESCO,II.1.1,Salta,AR-A,annual,2012,bioetanol combustion consumption by to the public,0.20308382102699998,TJ,CH4,10.0,kg/TJ,2.0308382102699998,kg -51641c18-bc2a-3c15-9810-6f37e1e2b020,SESCO,II.1.1,Salta,AR-A,annual,2012,bioetanol combustion consumption by to the public,0.20308382102699998,TJ,N2O,0.6,kg/TJ,0.12185029261619998,kg -e0b8a1b1-1fd3-3787-8aa2-5f307fc87703,SESCO,II.1.1,San Juan,AR-J,annual,2012,bioetanol combustion consumption by to the public,1.1341838201039998,TJ,CH4,10.0,kg/TJ,11.341838201039998,kg -b8456277-59b8-304d-8354-4d35fe83d71c,SESCO,II.1.1,San Juan,AR-J,annual,2012,bioetanol combustion consumption by to the public,1.1341838201039998,TJ,N2O,0.6,kg/TJ,0.6805102920623999,kg -44945ed6-300d-3c9d-9afa-3f9794231189,SESCO,II.1.1,San Luis,AR-D,annual,2012,bioetanol combustion consumption by to the public,1.6411696991099998,TJ,CH4,10.0,kg/TJ,16.411696991099998,kg -2630bdae-79b0-3c61-b13b-1710e879c1e5,SESCO,II.1.1,San Luis,AR-D,annual,2012,bioetanol combustion consumption by to the public,1.6411696991099998,TJ,N2O,0.6,kg/TJ,0.9847018194659998,kg -e73d3dbf-fb47-3368-b096-45911c9a1187,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2012,bioetanol combustion consumption by to the public,0.39035323218599993,TJ,CH4,10.0,kg/TJ,3.9035323218599993,kg -60b0aff8-6ab3-3cae-8dee-8e9ade6b1b53,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2012,bioetanol combustion consumption by to the public,0.39035323218599993,TJ,N2O,0.6,kg/TJ,0.23421193931159995,kg -59189301-4882-380a-a0ea-c5f66951bc23,SESCO,II.1.1,Santa Fe,AR-S,annual,2012,bioetanol combustion consumption by to the public,11.643542364599998,TJ,CH4,10.0,kg/TJ,116.43542364599998,kg -499549dd-37a1-38fb-bd2c-37cc58a4d7f2,SESCO,II.1.1,Santa Fe,AR-S,annual,2012,bioetanol combustion consumption by to the public,11.643542364599998,TJ,N2O,0.6,kg/TJ,6.986125418759999,kg -06b63379-11d3-3aaf-a8e8-c348623e6e4e,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2012,bioetanol combustion consumption by to the public,1.378805806953,TJ,CH4,10.0,kg/TJ,13.78805806953,kg -c4733a4b-fd3c-3394-9df7-ebde20823b63,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2012,bioetanol combustion consumption by to the public,1.378805806953,TJ,N2O,0.6,kg/TJ,0.8272834841718,kg -32354641-c4b8-3171-bc11-2468b6c679a6,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2012,bioetanol combustion consumption by to the public,0.83633362488,TJ,CH4,10.0,kg/TJ,8.3633362488,kg -ab1299d7-288a-368f-84f8-f61de81563c1,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2012,bioetanol combustion consumption by to the public,0.83633362488,TJ,N2O,0.6,kg/TJ,0.501800174928,kg -178ee560-3764-3846-808d-a50fa5a414f4,SESCO,II.1.1,Tucuman,AR-T,annual,2012,bioetanol combustion consumption by to the public,0.42277081679999995,TJ,CH4,10.0,kg/TJ,4.2277081679999995,kg -90c75233-4c4c-3cfc-a714-e4f0db33ec42,SESCO,II.1.1,Tucuman,AR-T,annual,2012,bioetanol combustion consumption by to the public,0.42277081679999995,TJ,N2O,0.6,kg/TJ,0.25366249007999997,kg -1c192c14-4c6a-3565-95bf-dbbb2e9c5b5a,SESCO,II.1.1,Buenos Aires,AR-B,annual,2012,bioetanol combustion consumption by freight transport,0.0069405173999999995,TJ,CH4,10.0,kg/TJ,0.069405174,kg -ff6f76a6-622e-3991-9190-66eac2946565,SESCO,II.1.1,Buenos Aires,AR-B,annual,2012,bioetanol combustion consumption by freight transport,0.0069405173999999995,TJ,N2O,0.6,kg/TJ,0.004164310439999999,kg -8296d95f-f29c-3e79-b51c-36403c136b14,SESCO,II.1.1,Capital Federal,AR-C,annual,2012,bioetanol combustion consumption by freight transport,0.2537251209,TJ,CH4,10.0,kg/TJ,2.537251209,kg -7ed83c62-6b7c-3541-b40e-1180599e47c0,SESCO,II.1.1,Capital Federal,AR-C,annual,2012,bioetanol combustion consumption by freight transport,0.2537251209,TJ,N2O,0.6,kg/TJ,0.15223507254,kg -205350a6-1e53-3249-9c85-d4fbd5bddb74,SESCO,II.1.1,Misiones,AR-N,annual,2012,bioetanol combustion consumption by freight transport,0.04601448,TJ,CH4,10.0,kg/TJ,0.4601448,kg -1cfffed8-6daa-3867-b871-2f24dcac90c1,SESCO,II.1.1,Misiones,AR-N,annual,2012,bioetanol combustion consumption by freight transport,0.04601448,TJ,N2O,0.6,kg/TJ,0.027608688000000003,kg -121da17a-0456-33b1-9081-4e44bbb0ffe4,SESCO,II.1.1,Santa Fe,AR-S,annual,2012,bioetanol combustion consumption by freight transport,0.0006390899999999999,TJ,CH4,10.0,kg/TJ,0.0063909,kg -8937cc2f-f164-38de-8eed-a9553fda797a,SESCO,II.1.1,Santa Fe,AR-S,annual,2012,bioetanol combustion consumption by freight transport,0.0006390899999999999,TJ,N2O,0.6,kg/TJ,0.0003834539999999999,kg -dd7897fa-b1d6-3e69-89e2-b90e9d489058,SESCO,II.1.1,Buenos Aires,AR-B,annual,2012,bioetanol combustion consumption by freight transport,0.08767675709999999,TJ,CH4,10.0,kg/TJ,0.8767675709999999,kg -fcde75ab-63c5-394f-9940-30e040b3b4ec,SESCO,II.1.1,Buenos Aires,AR-B,annual,2012,bioetanol combustion consumption by freight transport,0.08767675709999999,TJ,N2O,0.6,kg/TJ,0.05260605425999999,kg -5786e7e0-b098-361a-978d-5559db60681d,SESCO,II.1.1,Capital Federal,AR-C,annual,2012,bioetanol combustion consumption by freight transport,0.2223074565,TJ,CH4,10.0,kg/TJ,2.223074565,kg -6e865ded-dbe2-3a22-ba3f-b96b6636edc1,SESCO,II.1.1,Capital Federal,AR-C,annual,2012,bioetanol combustion consumption by freight transport,0.2223074565,TJ,N2O,0.6,kg/TJ,0.1333844739,kg -0a369861-b350-3e7b-bdf4-4a3366a16b40,SESCO,II.1.1,Chaco,AR-H,annual,2012,bioetanol combustion consumption by freight transport,0.0008116443,TJ,CH4,10.0,kg/TJ,0.008116443000000001,kg -00f49059-e2f2-36bc-9bbf-3e5b29129321,SESCO,II.1.1,Chaco,AR-H,annual,2012,bioetanol combustion consumption by freight transport,0.0008116443,TJ,N2O,0.6,kg/TJ,0.00048698658,kg -d113bfc6-a89c-37df-9455-65dd43c44046,SESCO,II.1.1,Corrientes,AR-W,annual,2012,bioetanol combustion consumption by freight transport,4.473630000000001e-05,TJ,CH4,10.0,kg/TJ,0.0004473630000000001,kg -b48f4a2e-cfad-374e-8305-226a430433eb,SESCO,II.1.1,Corrientes,AR-W,annual,2012,bioetanol combustion consumption by freight transport,4.473630000000001e-05,TJ,N2O,0.6,kg/TJ,2.6841780000000003e-05,kg -68a86daf-3222-327f-b09b-6a5da13f548b,SESCO,II.1.1,Córdoba,AR-X,annual,2012,bioetanol combustion consumption by freight transport,0.008627715,TJ,CH4,10.0,kg/TJ,0.08627715,kg -704485ee-6874-3752-95d1-d1e9cffa7d27,SESCO,II.1.1,Córdoba,AR-X,annual,2012,bioetanol combustion consumption by freight transport,0.008627715,TJ,N2O,0.6,kg/TJ,0.005176628999999999,kg -1c549144-0e04-3c1d-910c-d813abd4eb54,SESCO,II.1.1,Entre Rios,AR-E,annual,2012,bioetanol combustion consumption by freight transport,3.19545e-05,TJ,CH4,10.0,kg/TJ,0.000319545,kg -d3bf0ff9-fdcd-3d76-93f2-f6fa5e335641,SESCO,II.1.1,Entre Rios,AR-E,annual,2012,bioetanol combustion consumption by freight transport,3.19545e-05,TJ,N2O,0.6,kg/TJ,1.91727e-05,kg -22b82253-4393-3a94-8fe4-dede4a207fd9,SESCO,II.1.1,Misiones,AR-N,annual,2012,bioetanol combustion consumption by freight transport,7.02999e-05,TJ,CH4,10.0,kg/TJ,0.0007029989999999999,kg -b18c4e88-9f11-33a7-aeaf-f9b810d7e3ed,SESCO,II.1.1,Misiones,AR-N,annual,2012,bioetanol combustion consumption by freight transport,7.02999e-05,TJ,N2O,0.6,kg/TJ,4.2179939999999995e-05,kg -be590d4a-729f-33f5-b2a8-1323ac79e226,SESCO,II.1.1,San Luis,AR-D,annual,2012,bioetanol combustion consumption by freight transport,0.00030037229999999997,TJ,CH4,10.0,kg/TJ,0.003003723,kg -4c138c4c-785c-3194-8826-51da738e90e1,SESCO,II.1.1,San Luis,AR-D,annual,2012,bioetanol combustion consumption by freight transport,0.00030037229999999997,TJ,N2O,0.6,kg/TJ,0.00018022337999999997,kg -70200a58-114b-344c-b034-ba2e809ca509,SESCO,II.1.1,Santa Fe,AR-S,annual,2012,bioetanol combustion consumption by freight transport,0.012832927199999998,TJ,CH4,10.0,kg/TJ,0.128329272,kg -dbb8004a-bc13-329d-9b67-9736ebe76250,SESCO,II.1.1,Santa Fe,AR-S,annual,2012,bioetanol combustion consumption by freight transport,0.012832927199999998,TJ,N2O,0.6,kg/TJ,0.007699756319999999,kg -2bc98f0a-ef27-333c-a005-2054b004967f,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2012,bioetanol combustion consumption by freight transport,0.00013420889999999998,TJ,CH4,10.0,kg/TJ,0.0013420889999999999,kg -6b749abe-190d-3867-bf71-b825bc3df593,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2012,bioetanol combustion consumption by freight transport,0.00013420889999999998,TJ,N2O,0.6,kg/TJ,8.052533999999999e-05,kg -2a6f5b8e-b5ef-331e-b578-c5c8b4c379f3,SESCO,II.1.1,Tucuman,AR-T,annual,2012,bioetanol combustion consumption by freight transport,0.0007285626,TJ,CH4,10.0,kg/TJ,0.007285626,kg -59d2727b-aeb8-32da-967d-58cc619816fb,SESCO,II.1.1,Tucuman,AR-T,annual,2012,bioetanol combustion consumption by freight transport,0.0007285626,TJ,N2O,0.6,kg/TJ,0.00043713755999999997,kg -f5c88541-2e12-3f19-8cb9-35d8f9153cf8,SESCO,II.1.1,Buenos Aires,AR-B,annual,2012,bioetanol combustion consumption by freight transport,0.0507757005,TJ,CH4,10.0,kg/TJ,0.507757005,kg -63dfaac1-bf5a-328c-97e0-047439fb24f3,SESCO,II.1.1,Buenos Aires,AR-B,annual,2012,bioetanol combustion consumption by freight transport,0.0507757005,TJ,N2O,0.6,kg/TJ,0.030465420299999997,kg -bd028f13-ad64-303c-a31b-5487dfefdd7d,SESCO,II.1.1,Capital Federal,AR-C,annual,2012,bioetanol combustion consumption by freight transport,0.205978707,TJ,CH4,10.0,kg/TJ,2.05978707,kg -7ce5ce94-94d4-3e37-9494-fdb9952fdbe0,SESCO,II.1.1,Capital Federal,AR-C,annual,2012,bioetanol combustion consumption by freight transport,0.205978707,TJ,N2O,0.6,kg/TJ,0.1235872242,kg -23146f26-1011-3e43-a7c1-22232ca84ba7,SESCO,II.1.1,Chaco,AR-H,annual,2012,bioetanol combustion consumption by freight transport,0.00040901759999999995,TJ,CH4,10.0,kg/TJ,0.004090175999999999,kg -2597761d-0924-3f38-ad52-385e2e72cd25,SESCO,II.1.1,Chaco,AR-H,annual,2012,bioetanol combustion consumption by freight transport,0.00040901759999999995,TJ,N2O,0.6,kg/TJ,0.00024541056,kg -78dc30fa-122e-3314-9344-0024027fc544,SESCO,II.1.1,Córdoba,AR-X,annual,2012,bioetanol combustion consumption by freight transport,0.0074070531,TJ,CH4,10.0,kg/TJ,0.074070531,kg -0468d833-3b2e-3116-854d-4672983e6746,SESCO,II.1.1,Córdoba,AR-X,annual,2012,bioetanol combustion consumption by freight transport,0.0074070531,TJ,N2O,0.6,kg/TJ,0.00444423186,kg -b02e39d2-e69d-37a6-9915-e7850df55d64,SESCO,II.1.1,Entre Rios,AR-E,annual,2012,bioetanol combustion consumption by freight transport,0.0018469701,TJ,CH4,10.0,kg/TJ,0.018469700999999998,kg -3e71e490-9c41-31ff-9b25-299d88b56b5f,SESCO,II.1.1,Entre Rios,AR-E,annual,2012,bioetanol combustion consumption by freight transport,0.0018469701,TJ,N2O,0.6,kg/TJ,0.0011081820599999999,kg -fc24f5fb-6b4a-33ea-8b57-e53719cb45cc,SESCO,II.1.1,Misiones,AR-N,annual,2012,bioetanol combustion consumption by freight transport,0.000191727,TJ,CH4,10.0,kg/TJ,0.00191727,kg -c182ceff-dca8-34b6-8647-a2f313de7eea,SESCO,II.1.1,Misiones,AR-N,annual,2012,bioetanol combustion consumption by freight transport,0.000191727,TJ,N2O,0.6,kg/TJ,0.00011503619999999999,kg -4f1ff8d3-49f2-3e7c-8d79-0bcc94de8c22,SESCO,II.1.1,San Luis,AR-D,annual,2012,bioetanol combustion consumption by freight transport,2.5563599999999997e-05,TJ,CH4,10.0,kg/TJ,0.00025563599999999995,kg -d53ca589-3783-3a9b-922c-ee7ce26c06d9,SESCO,II.1.1,San Luis,AR-D,annual,2012,bioetanol combustion consumption by freight transport,2.5563599999999997e-05,TJ,N2O,0.6,kg/TJ,1.533816e-05,kg -6002ad42-54a3-3dc4-9bc7-0d48ac9dce10,SESCO,II.1.1,Santa Fe,AR-S,annual,2012,bioetanol combustion consumption by freight transport,0.0086468877,TJ,CH4,10.0,kg/TJ,0.086468877,kg -cec12f27-a5b0-3e35-8c72-e1efdb7579f0,SESCO,II.1.1,Santa Fe,AR-S,annual,2012,bioetanol combustion consumption by freight transport,0.0086468877,TJ,N2O,0.6,kg/TJ,0.00518813262,kg -c04e465e-07a5-3cdf-8449-02097d21b75a,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2012,bioetanol combustion consumption by freight transport,0.004281902999999999,TJ,CH4,10.0,kg/TJ,0.042819029999999994,kg -4c2a8bb1-f5c6-319b-8a2f-7996f8b75f48,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2012,bioetanol combustion consumption by freight transport,0.004281902999999999,TJ,N2O,0.6,kg/TJ,0.0025691417999999995,kg -f9725db0-502b-317e-9724-e610aa8b93fc,SESCO,II.1.1,Tucuman,AR-T,annual,2012,bioetanol combustion consumption by freight transport,0.0005560083,TJ,CH4,10.0,kg/TJ,0.0055600829999999995,kg -97d25c16-388f-367f-997d-02eedba91a7b,SESCO,II.1.1,Tucuman,AR-T,annual,2012,bioetanol combustion consumption by freight transport,0.0005560083,TJ,N2O,0.6,kg/TJ,0.00033360498,kg -ac52698c-372d-3744-b93a-8f28ce28c92d,SESCO,II.1.1,Capital Federal,AR-C,annual,2012,bioetanol combustion consumption by public passenger transport,0.3754462023,TJ,CH4,10.0,kg/TJ,3.754462023,kg -a5083c86-1c28-3be1-98e8-a477ca30c42e,SESCO,II.1.1,Capital Federal,AR-C,annual,2012,bioetanol combustion consumption by public passenger transport,0.3754462023,TJ,N2O,0.6,kg/TJ,0.22526772137999998,kg -e3821d32-eebd-359e-87e6-e59560a3fa67,SESCO,II.1.1,Córdoba,AR-X,annual,2012,bioetanol combustion consumption by public passenger transport,0.00028759049999999996,TJ,CH4,10.0,kg/TJ,0.0028759049999999998,kg -4018d7bc-f84b-3bb5-9d8c-51569574e945,SESCO,II.1.1,Córdoba,AR-X,annual,2012,bioetanol combustion consumption by public passenger transport,0.00028759049999999996,TJ,N2O,0.6,kg/TJ,0.00017255429999999997,kg -1b4913ce-c0b0-3a03-ac2a-2b9ff344cad6,SESCO,II.1.1,Misiones,AR-N,annual,2012,bioetanol combustion consumption by public passenger transport,0.38089764,TJ,CH4,10.0,kg/TJ,3.8089763999999997,kg -73327487-8b39-3afa-8ed6-260c54fc03c7,SESCO,II.1.1,Misiones,AR-N,annual,2012,bioetanol combustion consumption by public passenger transport,0.38089764,TJ,N2O,0.6,kg/TJ,0.228538584,kg -a3807d5d-0ad7-3d2c-b5d5-f569bdb725b6,SESCO,II.1.1,Santa Fe,AR-S,annual,2012,bioetanol combustion consumption by public passenger transport,0.0018917063999999996,TJ,CH4,10.0,kg/TJ,0.018917063999999997,kg -442a6837-08ee-3efa-a5a5-adb96e23684b,SESCO,II.1.1,Santa Fe,AR-S,annual,2012,bioetanol combustion consumption by public passenger transport,0.0018917063999999996,TJ,N2O,0.6,kg/TJ,0.0011350238399999997,kg -032d349a-83a7-36c6-9b8e-c48f2112ff56,SESCO,II.1.1,Buenos Aires,AR-B,annual,2012,bioetanol combustion consumption by public passenger transport,7.66908e-05,TJ,CH4,10.0,kg/TJ,0.000766908,kg -390a03df-66a8-3c54-9550-ff0dfb7ca57d,SESCO,II.1.1,Buenos Aires,AR-B,annual,2012,bioetanol combustion consumption by public passenger transport,7.66908e-05,TJ,N2O,0.6,kg/TJ,4.6014479999999997e-05,kg -30b40f07-14bf-32d1-9fda-e4accab0b1bc,SESCO,II.1.1,Capital Federal,AR-C,annual,2012,bioetanol combustion consumption by public passenger transport,0.0043905483,TJ,CH4,10.0,kg/TJ,0.043905482999999995,kg -4202d03a-d383-352c-88bb-029de668e328,SESCO,II.1.1,Capital Federal,AR-C,annual,2012,bioetanol combustion consumption by public passenger transport,0.0043905483,TJ,N2O,0.6,kg/TJ,0.00263432898,kg -f46650c1-ef4e-3201-9ec2-c543c2b94782,SESCO,II.1.1,Córdoba,AR-X,annual,2012,bioetanol combustion consumption by public passenger transport,0.0001469907,TJ,CH4,10.0,kg/TJ,0.001469907,kg -3b03ee5a-58fe-3873-be90-4546eb6af322,SESCO,II.1.1,Córdoba,AR-X,annual,2012,bioetanol combustion consumption by public passenger transport,0.0001469907,TJ,N2O,0.6,kg/TJ,8.819441999999999e-05,kg -8bc024fa-d3a8-3f41-ae75-b0c491531546,SESCO,II.1.1,Santa Fe,AR-S,annual,2012,bioetanol combustion consumption by public passenger transport,0.0016232886,TJ,CH4,10.0,kg/TJ,0.016232886000000002,kg -e2e37232-a6b5-39c8-8db2-c41ad869f442,SESCO,II.1.1,Santa Fe,AR-S,annual,2012,bioetanol combustion consumption by public passenger transport,0.0016232886,TJ,N2O,0.6,kg/TJ,0.00097397316,kg -381833e8-f9e5-30e2-8fa4-136932b6c6a3,SESCO,II.5.1,Córdoba,AR-X,annual,2012,bioetanol combustion consumption by agriculture machines,0.016409083113,TJ,CH4,10.0,kg/TJ,0.16409083113,kg -b0ed03bd-aed4-3764-b351-fa6919443379,SESCO,II.5.1,Córdoba,AR-X,annual,2012,bioetanol combustion consumption by agriculture machines,0.016409083113,TJ,N2O,0.6,kg/TJ,0.0098454498678,kg -68927210-9b9b-3c19-bc16-cadfadee3083,SESCO,II.5.1,Santa Fe,AR-S,annual,2012,bioetanol combustion consumption by agriculture machines,0.034144917066,TJ,CH4,10.0,kg/TJ,0.34144917066,kg -86bceae0-8974-3bb8-a8bd-2c20add7a091,SESCO,II.5.1,Santa Fe,AR-S,annual,2012,bioetanol combustion consumption by agriculture machines,0.034144917066,TJ,N2O,0.6,kg/TJ,0.0204869502396,kg -ed569392-fea9-3cc1-b74e-14b8cb15cb3f,SESCO,II.1.1,Buenos Aires,AR-B,annual,2012,bioetanol combustion consumption by to the public,45.55846570257899,TJ,CH4,10.0,kg/TJ,455.5846570257899,kg -4a66cb21-115f-3fe7-a185-ebd7c1eeaec1,SESCO,II.1.1,Buenos Aires,AR-B,annual,2012,bioetanol combustion consumption by to the public,45.55846570257899,TJ,N2O,0.6,kg/TJ,27.335079421547395,kg -6266d46c-1988-3056-b54c-fa8a76dc7a5b,SESCO,II.1.1,Capital Federal,AR-C,annual,2012,bioetanol combustion consumption by to the public,6.499162101636,TJ,CH4,10.0,kg/TJ,64.99162101636,kg -21caeb45-2808-358c-a3ed-68a69d9dcfd1,SESCO,II.1.1,Capital Federal,AR-C,annual,2012,bioetanol combustion consumption by to the public,6.499162101636,TJ,N2O,0.6,kg/TJ,3.8994972609816,kg -31d3bbad-e339-361d-acf4-825079f76792,SESCO,II.1.1,Catamarca,AR-K,annual,2012,bioetanol combustion consumption by to the public,3.7179611645579995,TJ,CH4,10.0,kg/TJ,37.179611645579996,kg -691c0464-46ad-3008-ac1e-f41a3ab22a43,SESCO,II.1.1,Catamarca,AR-K,annual,2012,bioetanol combustion consumption by to the public,3.7179611645579995,TJ,N2O,0.6,kg/TJ,2.2307766987347994,kg -f878b1db-0acd-36ad-8e4b-fbf02c3c4bda,SESCO,II.1.1,Chaco,AR-H,annual,2012,bioetanol combustion consumption by to the public,6.791796875096999,TJ,CH4,10.0,kg/TJ,67.91796875096999,kg -e4b2c11b-a5c7-3ce9-8d55-f392ca5d3dff,SESCO,II.1.1,Chaco,AR-H,annual,2012,bioetanol combustion consumption by to the public,6.791796875096999,TJ,N2O,0.6,kg/TJ,4.075078125058199,kg -f75a42c8-5158-3712-8914-1ee03d40817e,SESCO,II.1.1,Corrientes,AR-W,annual,2012,bioetanol combustion consumption by to the public,8.675134391547,TJ,CH4,10.0,kg/TJ,86.75134391546999,kg -b5df821c-2fcf-3269-b3b2-75d2ee8943c5,SESCO,II.1.1,Corrientes,AR-W,annual,2012,bioetanol combustion consumption by to the public,8.675134391547,TJ,N2O,0.6,kg/TJ,5.2050806349281995,kg -30736591-f957-3d84-866b-d2c10ab23666,SESCO,II.1.1,Córdoba,AR-X,annual,2012,bioetanol combustion consumption by to the public,15.412656612302998,TJ,CH4,10.0,kg/TJ,154.12656612303,kg -e93f9b32-e514-37b0-94e2-3f111823f36b,SESCO,II.1.1,Córdoba,AR-X,annual,2012,bioetanol combustion consumption by to the public,15.412656612302998,TJ,N2O,0.6,kg/TJ,9.247593967381798,kg -58d938b9-3aa7-392e-906f-e305bdab4a6d,SESCO,II.1.1,Entre Rios,AR-E,annual,2012,bioetanol combustion consumption by to the public,9.665409011904,TJ,CH4,10.0,kg/TJ,96.65409011904,kg -81998214-639c-38bd-9d91-659dceb7fb6f,SESCO,II.1.1,Entre Rios,AR-E,annual,2012,bioetanol combustion consumption by to the public,9.665409011904,TJ,N2O,0.6,kg/TJ,5.7992454071424,kg -2377a2d4-deca-332e-85b5-2f6be579f6a8,SESCO,II.1.1,Formosa,AR-P,annual,2012,bioetanol combustion consumption by to the public,1.244423457927,TJ,CH4,10.0,kg/TJ,12.444234579269999,kg -315fc453-7adf-37bb-9f56-590df5abae83,SESCO,II.1.1,Formosa,AR-P,annual,2012,bioetanol combustion consumption by to the public,1.244423457927,TJ,N2O,0.6,kg/TJ,0.7466540747561999,kg -a031d3ab-16f3-3841-b8c5-529664d3e049,SESCO,II.1.1,Jujuy,AR-Y,annual,2012,bioetanol combustion consumption by to the public,0.52349395716,TJ,CH4,10.0,kg/TJ,5.2349395716,kg -9a1fa0ce-9d8e-3ed7-9174-376b5fd2697e,SESCO,II.1.1,Jujuy,AR-Y,annual,2012,bioetanol combustion consumption by to the public,0.52349395716,TJ,N2O,0.6,kg/TJ,0.314096374296,kg -03da274a-f54b-3d44-8079-db84f3bceaab,SESCO,II.1.1,La Pampa,AR-L,annual,2012,bioetanol combustion consumption by to the public,0.2999377188,TJ,CH4,10.0,kg/TJ,2.9993771879999995,kg -7afcbe84-04f6-3e63-94a9-7a1f833e7fce,SESCO,II.1.1,La Pampa,AR-L,annual,2012,bioetanol combustion consumption by to the public,0.2999377188,TJ,N2O,0.6,kg/TJ,0.17996263127999998,kg -06de8403-9336-349b-abbd-d446d5165da3,SESCO,II.1.1,La Rioja,AR-F,annual,2012,bioetanol combustion consumption by to the public,1.969500972339,TJ,CH4,10.0,kg/TJ,19.69500972339,kg -3a03554b-015a-3723-95de-11a3755347f4,SESCO,II.1.1,La Rioja,AR-F,annual,2012,bioetanol combustion consumption by to the public,1.969500972339,TJ,N2O,0.6,kg/TJ,1.1817005834034,kg -da373dcd-629e-30c5-be6e-3c9c7b0042be,SESCO,II.1.1,Mendoza,AR-M,annual,2012,bioetanol combustion consumption by to the public,7.636656599666999,TJ,CH4,10.0,kg/TJ,76.36656599666999,kg -633a57ca-6e9a-36f0-a4fb-f23e8d77307e,SESCO,II.1.1,Mendoza,AR-M,annual,2012,bioetanol combustion consumption by to the public,7.636656599666999,TJ,N2O,0.6,kg/TJ,4.581993959800199,kg -4eb22cb2-e478-3039-b5ad-aa686c51445b,SESCO,II.1.1,Misiones,AR-N,annual,2012,bioetanol combustion consumption by to the public,4.017928473225,TJ,CH4,10.0,kg/TJ,40.17928473225,kg -387ac654-961c-3f78-bf90-9b0a93c54d37,SESCO,II.1.1,Misiones,AR-N,annual,2012,bioetanol combustion consumption by to the public,4.017928473225,TJ,N2O,0.6,kg/TJ,2.410757083935,kg -fc2ca945-1347-34f2-bcb2-6752d0b08872,SESCO,II.1.1,Rio Negro,AR-R,annual,2012,bioetanol combustion consumption by to the public,0.395667904626,TJ,CH4,10.0,kg/TJ,3.9566790462599997,kg -c80a2077-3847-33e2-b03c-0aca8feb0a16,SESCO,II.1.1,Rio Negro,AR-R,annual,2012,bioetanol combustion consumption by to the public,0.395667904626,TJ,N2O,0.6,kg/TJ,0.23740074277559997,kg -b4ab8f68-aceb-3f81-a045-c3cb3a6f8989,SESCO,II.1.1,San Juan,AR-J,annual,2012,bioetanol combustion consumption by to the public,4.899022939160999,TJ,CH4,10.0,kg/TJ,48.990229391609994,kg -2e0f1ead-8709-3f9f-9c6c-0fcfed336c0a,SESCO,II.1.1,San Juan,AR-J,annual,2012,bioetanol combustion consumption by to the public,4.899022939160999,TJ,N2O,0.6,kg/TJ,2.9394137634965993,kg -32df133b-af7e-3e3f-9952-2c4617882332,SESCO,II.1.1,San Luis,AR-D,annual,2012,bioetanol combustion consumption by to the public,2.956434685812,TJ,CH4,10.0,kg/TJ,29.564346858119997,kg -bc75e936-9088-3af7-8c74-ddd4e36bd3b1,SESCO,II.1.1,San Luis,AR-D,annual,2012,bioetanol combustion consumption by to the public,2.956434685812,TJ,N2O,0.6,kg/TJ,1.7738608114871999,kg -ff5570de-4a69-33bb-80ea-721a1c9faa08,SESCO,II.1.1,Santa Fe,AR-S,annual,2012,bioetanol combustion consumption by to the public,24.100430031143997,TJ,CH4,10.0,kg/TJ,241.00430031143998,kg -f40643c3-018d-305d-aca8-981de4b80273,SESCO,II.1.1,Santa Fe,AR-S,annual,2012,bioetanol combustion consumption by to the public,24.100430031143997,TJ,N2O,0.6,kg/TJ,14.460258018686398,kg -3c62e7df-1283-36bb-92a7-3f4a5b868d44,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2012,bioetanol combustion consumption by to the public,3.5426051579069995,TJ,CH4,10.0,kg/TJ,35.42605157906999,kg -527eeb36-02d8-3898-832e-90f0024f2bf5,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2012,bioetanol combustion consumption by to the public,3.5426051579069995,TJ,N2O,0.6,kg/TJ,2.1255630947441997,kg -d0ac2cf3-2c8e-31b7-9290-d3948f4df995,SESCO,II.1.1,Tucuman,AR-T,annual,2012,bioetanol combustion consumption by to the public,4.268550748266,TJ,CH4,10.0,kg/TJ,42.68550748266,kg -00050c6f-52d0-3e72-9bd1-82e74aca9dfe,SESCO,II.1.1,Tucuman,AR-T,annual,2012,bioetanol combustion consumption by to the public,4.268550748266,TJ,N2O,0.6,kg/TJ,2.5611304489595996,kg -0a0c5af4-ad9e-3c22-b0d5-ac4ecd32a62d,SESCO,II.1.1,Buenos Aires,AR-B,annual,2012,bioetanol combustion consumption by to the public,7.739772365168999,TJ,CH4,10.0,kg/TJ,77.39772365169,kg -eadc8361-8c68-3434-a54a-80aabe32d45e,SESCO,II.1.1,Buenos Aires,AR-B,annual,2012,bioetanol combustion consumption by to the public,7.739772365168999,TJ,N2O,0.6,kg/TJ,4.643863419101399,kg -3d9c3b4a-969d-3ac1-8b61-f51a5bd4c8b5,SESCO,II.1.1,Capital Federal,AR-C,annual,2012,bioetanol combustion consumption by to the public,1.2478114657439998,TJ,CH4,10.0,kg/TJ,12.478114657439999,kg -05cbe631-c9fa-39f5-83e5-894e0b601b72,SESCO,II.1.1,Capital Federal,AR-C,annual,2012,bioetanol combustion consumption by to the public,1.2478114657439998,TJ,N2O,0.6,kg/TJ,0.7486868794463999,kg -4fb35b65-8453-348d-bc90-772a93dd7a5e,SESCO,II.1.1,Catamarca,AR-K,annual,2012,bioetanol combustion consumption by to the public,0.356252028876,TJ,CH4,10.0,kg/TJ,3.56252028876,kg -e47acf6f-523a-34f3-9546-e89dad2f7f4b,SESCO,II.1.1,Catamarca,AR-K,annual,2012,bioetanol combustion consumption by to the public,0.356252028876,TJ,N2O,0.6,kg/TJ,0.21375121732559998,kg -c37989e8-e689-30c1-bf4b-823c4e1ca771,SESCO,II.1.1,Chaco,AR-H,annual,2012,bioetanol combustion consumption by to the public,0.611431846434,TJ,CH4,10.0,kg/TJ,6.114318464339999,kg -033d3dea-8c29-3d29-b260-d536cc8940db,SESCO,II.1.1,Chaco,AR-H,annual,2012,bioetanol combustion consumption by to the public,0.611431846434,TJ,N2O,0.6,kg/TJ,0.36685910786039994,kg -71bb5124-f154-3d5d-8c60-92cc5086f027,SESCO,II.1.1,Chubut,AR-U,annual,2012,bioetanol combustion consumption by to the public,0.010491173622,TJ,CH4,10.0,kg/TJ,0.10491173622,kg -de4517b5-5465-36fe-b39e-80515c843e01,SESCO,II.1.1,Chubut,AR-U,annual,2012,bioetanol combustion consumption by to the public,0.010491173622,TJ,N2O,0.6,kg/TJ,0.006294704173199999,kg -9af28399-b923-3af6-8dd5-cf5188a1766c,SESCO,II.1.1,Corrientes,AR-W,annual,2012,bioetanol combustion consumption by to the public,1.182529636515,TJ,CH4,10.0,kg/TJ,11.825296365149999,kg -2227e9ec-f16d-3b8a-b5fe-5fbb6ede1f57,SESCO,II.1.1,Corrientes,AR-W,annual,2012,bioetanol combustion consumption by to the public,1.182529636515,TJ,N2O,0.6,kg/TJ,0.709517781909,kg -a07f10d8-75ae-31ec-a102-54a892170ec0,SESCO,II.1.1,Córdoba,AR-X,annual,2012,bioetanol combustion consumption by to the public,2.8624928655329995,TJ,CH4,10.0,kg/TJ,28.624928655329995,kg -bcc39160-b770-3b73-88e9-ce928ddd639a,SESCO,II.1.1,Córdoba,AR-X,annual,2012,bioetanol combustion consumption by to the public,2.8624928655329995,TJ,N2O,0.6,kg/TJ,1.7174957193197997,kg -a279a030-0bef-365d-8ef0-ea84ed13ba50,SESCO,II.1.1,Entre Rios,AR-E,annual,2012,bioetanol combustion consumption by to the public,1.7229879181799999,TJ,CH4,10.0,kg/TJ,17.229879181799998,kg -d3aed6e6-6633-3714-b87d-2ae17242a401,SESCO,II.1.1,Entre Rios,AR-E,annual,2012,bioetanol combustion consumption by to the public,1.7229879181799999,TJ,N2O,0.6,kg/TJ,1.0337927509079998,kg -8f0396fd-7996-3e85-b42f-022ad34b16da,SESCO,II.1.1,Jujuy,AR-Y,annual,2012,bioetanol combustion consumption by to the public,0.08690921001,TJ,CH4,10.0,kg/TJ,0.8690921001,kg -48439575-6528-3665-ba98-c38530a20faf,SESCO,II.1.1,Jujuy,AR-Y,annual,2012,bioetanol combustion consumption by to the public,0.08690921001,TJ,N2O,0.6,kg/TJ,0.052145526006,kg -3c23fab4-1460-3dd6-ab27-797467c36deb,SESCO,II.1.1,La Pampa,AR-L,annual,2012,bioetanol combustion consumption by to the public,0.102197457081,TJ,CH4,10.0,kg/TJ,1.02197457081,kg -aaa84747-aead-3333-894d-a44bf1f0698c,SESCO,II.1.1,La Pampa,AR-L,annual,2012,bioetanol combustion consumption by to the public,0.102197457081,TJ,N2O,0.6,kg/TJ,0.0613184742486,kg -8715ed3d-3cb9-3788-82e2-c6d7d25fd6aa,SESCO,II.1.1,La Rioja,AR-F,annual,2012,bioetanol combustion consumption by to the public,0.12523709894399998,TJ,CH4,10.0,kg/TJ,1.2523709894399997,kg -0a340650-1505-3810-8f28-6a9d72681da5,SESCO,II.1.1,La Rioja,AR-F,annual,2012,bioetanol combustion consumption by to the public,0.12523709894399998,TJ,N2O,0.6,kg/TJ,0.07514225936639998,kg -4cf3ffc2-64bd-3ce3-acbb-2ddab3f6e244,SESCO,II.1.1,Mendoza,AR-M,annual,2012,bioetanol combustion consumption by to the public,1.102483741833,TJ,CH4,10.0,kg/TJ,11.02483741833,kg -75029ff5-8aae-3379-9d1c-c6918a1b9e1b,SESCO,II.1.1,Mendoza,AR-M,annual,2012,bioetanol combustion consumption by to the public,1.102483741833,TJ,N2O,0.6,kg/TJ,0.6614902450998,kg -541a75e8-3b94-3ba3-9611-23b70fc243e6,SESCO,II.1.1,Misiones,AR-N,annual,2012,bioetanol combustion consumption by to the public,0.433809498825,TJ,CH4,10.0,kg/TJ,4.33809498825,kg -2e729421-3f05-32db-bf36-bdc88695bdf8,SESCO,II.1.1,Misiones,AR-N,annual,2012,bioetanol combustion consumption by to the public,0.433809498825,TJ,N2O,0.6,kg/TJ,0.26028569929499995,kg -4dee1115-fed7-3775-b7fa-bbadd37e8f21,SESCO,II.1.1,San Juan,AR-J,annual,2012,bioetanol combustion consumption by to the public,1.0077097624649998,TJ,CH4,10.0,kg/TJ,10.077097624649998,kg -d1b5e132-840b-3f2e-860f-a55b8e862798,SESCO,II.1.1,San Juan,AR-J,annual,2012,bioetanol combustion consumption by to the public,1.0077097624649998,TJ,N2O,0.6,kg/TJ,0.6046258574789999,kg -9f026f43-7d9f-3e6d-9a68-5d9e5aeac0eb,SESCO,II.1.1,San Luis,AR-D,annual,2012,bioetanol combustion consumption by to the public,0.5301434329739999,TJ,CH4,10.0,kg/TJ,5.301434329739999,kg -555f8610-386b-3195-8d8d-e3e8f5d20a32,SESCO,II.1.1,San Luis,AR-D,annual,2012,bioetanol combustion consumption by to the public,0.5301434329739999,TJ,N2O,0.6,kg/TJ,0.3180860597843999,kg -ccf44b8a-b0ee-3b4a-b67f-411f44354ecf,SESCO,II.1.1,Santa Fe,AR-S,annual,2012,bioetanol combustion consumption by to the public,4.174794519723,TJ,CH4,10.0,kg/TJ,41.74794519723,kg -c80b5458-e45f-3979-a3f4-51a03140ff0e,SESCO,II.1.1,Santa Fe,AR-S,annual,2012,bioetanol combustion consumption by to the public,4.174794519723,TJ,N2O,0.6,kg/TJ,2.5048767118338,kg -8fe7019b-7a76-30ec-939e-db6c2b7ff18c,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2012,bioetanol combustion consumption by to the public,0.4761826357319999,TJ,CH4,10.0,kg/TJ,4.7618263573199995,kg -898f7fa2-5f57-3ffa-90b1-ae993f288cab,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2012,bioetanol combustion consumption by to the public,0.4761826357319999,TJ,N2O,0.6,kg/TJ,0.28570958143919994,kg -4f447bcc-9cd3-3073-9151-3b2e22a91fd9,SESCO,II.1.1,Tucuman,AR-T,annual,2012,bioetanol combustion consumption by to the public,0.533441968191,TJ,CH4,10.0,kg/TJ,5.33441968191,kg -75f46755-813e-3f53-8bb4-cf2b4b9dbb19,SESCO,II.1.1,Tucuman,AR-T,annual,2012,bioetanol combustion consumption by to the public,0.533441968191,TJ,N2O,0.6,kg/TJ,0.32006518091459996,kg -6065f6b1-3cc7-344e-b03d-dde4028c0d30,SESCO,II.5.1,Buenos Aires,AR-B,annual,2012,bioetanol combustion consumption by agriculture machines,0.0393998985,TJ,CH4,10.0,kg/TJ,0.393998985,kg -35612cf2-1357-3ea6-b611-321d9a7b5478,SESCO,II.5.1,Buenos Aires,AR-B,annual,2012,bioetanol combustion consumption by agriculture machines,0.0393998985,TJ,N2O,0.6,kg/TJ,0.0236399391,kg -756d6743-61ef-3cf3-bd9f-f80cbcbed7b8,SESCO,II.5.1,Santa Cruz,AR-Z,annual,2012,bioetanol combustion consumption by agriculture machines,0.043382707379999996,TJ,CH4,10.0,kg/TJ,0.43382707379999996,kg -b0582cd3-549f-34b9-97c0-06bcdf22f12e,SESCO,II.5.1,Santa Cruz,AR-Z,annual,2012,bioetanol combustion consumption by agriculture machines,0.043382707379999996,TJ,N2O,0.6,kg/TJ,0.026029624427999998,kg -cbc406e5-4d91-35c3-a6e6-76e3b0514e15,SESCO,II.1.1,Buenos Aires,AR-B,annual,2012,bioetanol combustion consumption by to the public,102.40502776118998,TJ,CH4,10.0,kg/TJ,1024.0502776119,kg -245ed831-d479-34c0-ab52-4b0d096d80e6,SESCO,II.1.1,Buenos Aires,AR-B,annual,2012,bioetanol combustion consumption by to the public,102.40502776118998,TJ,N2O,0.6,kg/TJ,61.443016656713986,kg -9535fbf4-956a-3e43-b7d0-0c02c80d4dd9,SESCO,II.1.1,Capital Federal,AR-C,annual,2012,bioetanol combustion consumption by to the public,14.673600346229998,TJ,CH4,10.0,kg/TJ,146.73600346229998,kg -3fcdd9b3-d751-3742-a4b3-67497ca2e4ae,SESCO,II.1.1,Capital Federal,AR-C,annual,2012,bioetanol combustion consumption by to the public,14.673600346229998,TJ,N2O,0.6,kg/TJ,8.804160207737999,kg -4d222a39-d80b-3e61-a104-de0ad9361c09,SESCO,II.1.1,Chaco,AR-H,annual,2012,bioetanol combustion consumption by to the public,0.11865792302999999,TJ,CH4,10.0,kg/TJ,1.1865792302999998,kg -ce84b08a-a804-323f-a23a-a4c76612473c,SESCO,II.1.1,Chaco,AR-H,annual,2012,bioetanol combustion consumption by to the public,0.11865792302999999,TJ,N2O,0.6,kg/TJ,0.07119475381799999,kg -6657c37a-4c1d-381b-a363-ac8db88b4c8f,SESCO,II.1.1,Chubut,AR-U,annual,2012,bioetanol combustion consumption by to the public,30.49818580521,TJ,CH4,10.0,kg/TJ,304.9818580521,kg -667f2190-350f-3c84-8b4a-d019ac7defe6,SESCO,II.1.1,Chubut,AR-U,annual,2012,bioetanol combustion consumption by to the public,30.49818580521,TJ,N2O,0.6,kg/TJ,18.298911483126,kg -3c80d261-72f6-39ac-82aa-ab4d63e71e80,SESCO,II.1.1,Córdoba,AR-X,annual,2012,bioetanol combustion consumption by to the public,12.967933045229998,TJ,CH4,10.0,kg/TJ,129.67933045229998,kg -912d8ade-c23b-30e6-a949-5c154347edca,SESCO,II.1.1,Córdoba,AR-X,annual,2012,bioetanol combustion consumption by to the public,12.967933045229998,TJ,N2O,0.6,kg/TJ,7.780759827137999,kg -89da144b-edbe-383d-8c2a-df4c70a47f01,SESCO,II.1.1,Entre Rios,AR-E,annual,2012,bioetanol combustion consumption by to the public,2.07278168697,TJ,CH4,10.0,kg/TJ,20.7278168697,kg -3ed64547-9546-3936-935f-d5ecc0bb5cde,SESCO,II.1.1,Entre Rios,AR-E,annual,2012,bioetanol combustion consumption by to the public,2.07278168697,TJ,N2O,0.6,kg/TJ,1.243669012182,kg -ba88927a-01d0-3ab2-9537-e1ce75fa3a7b,SESCO,II.1.1,La Pampa,AR-L,annual,2012,bioetanol combustion consumption by to the public,4.51283497605,TJ,CH4,10.0,kg/TJ,45.1283497605,kg -e285fa47-4d09-367f-b8b9-9464a47981cc,SESCO,II.1.1,La Pampa,AR-L,annual,2012,bioetanol combustion consumption by to the public,4.51283497605,TJ,N2O,0.6,kg/TJ,2.70770098563,kg -57abfd21-7e5e-3bcc-ab17-b45aabbcb460,SESCO,II.1.1,La Rioja,AR-F,annual,2012,bioetanol combustion consumption by to the public,0.014483696669999999,TJ,CH4,10.0,kg/TJ,0.14483696669999999,kg -ab13622e-89cf-3331-ba12-358fcfdadd21,SESCO,II.1.1,La Rioja,AR-F,annual,2012,bioetanol combustion consumption by to the public,0.014483696669999999,TJ,N2O,0.6,kg/TJ,0.008690218001999999,kg -4c622d94-7c2b-3ddc-9070-73deed8ee397,SESCO,II.1.1,Mendoza,AR-M,annual,2012,bioetanol combustion consumption by to the public,0.52579532025,TJ,CH4,10.0,kg/TJ,5.2579532024999995,kg -75c81b4e-c379-3409-8e1c-c41fe08e7ee1,SESCO,II.1.1,Mendoza,AR-M,annual,2012,bioetanol combustion consumption by to the public,0.52579532025,TJ,N2O,0.6,kg/TJ,0.31547719215,kg -3a477f6c-55fd-37a4-b3a8-432ecd008f82,SESCO,II.1.1,Neuquén,AR-Q,annual,2012,bioetanol combustion consumption by to the public,11.193715033559998,TJ,CH4,10.0,kg/TJ,111.93715033559998,kg -097df422-e231-3c28-baac-1e44a6597a8b,SESCO,II.1.1,Neuquén,AR-Q,annual,2012,bioetanol combustion consumption by to the public,11.193715033559998,TJ,N2O,0.6,kg/TJ,6.716229020135999,kg -26610227-e191-3bf1-94c0-e2e4065a21d3,SESCO,II.1.1,Rio Negro,AR-R,annual,2012,bioetanol combustion consumption by to the public,22.01880039876,TJ,CH4,10.0,kg/TJ,220.18800398759998,kg -20380e0a-113f-352f-a481-1e3f9c02ac1f,SESCO,II.1.1,Rio Negro,AR-R,annual,2012,bioetanol combustion consumption by to the public,22.01880039876,TJ,N2O,0.6,kg/TJ,13.211280239256,kg -9831928e-6e6e-3cb0-ab4f-f846a6694cf5,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2012,bioetanol combustion consumption by to the public,19.156266439739998,TJ,CH4,10.0,kg/TJ,191.56266439739997,kg -1b7a0010-96a4-305f-ae61-354dcc5b8a43,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2012,bioetanol combustion consumption by to the public,19.156266439739998,TJ,N2O,0.6,kg/TJ,11.493759863843998,kg -d81bab62-e86c-32f1-8b1b-2dcd743d8f67,SESCO,II.1.1,Santa Fe,AR-S,annual,2012,bioetanol combustion consumption by to the public,12.98851429959,TJ,CH4,10.0,kg/TJ,129.8851429959,kg -167d89c9-6b20-3e75-a58c-f2e70fd62e19,SESCO,II.1.1,Santa Fe,AR-S,annual,2012,bioetanol combustion consumption by to the public,12.98851429959,TJ,N2O,0.6,kg/TJ,7.793108579754,kg -3cae2d18-4bf9-3422-9456-758daba8254f,SESCO,II.1.1,Buenos Aires,AR-B,annual,2012,bioetanol combustion consumption by to the public,25.9462615284,TJ,CH4,10.0,kg/TJ,259.462615284,kg -36ec48a7-1f97-302d-98ad-12b4258a2511,SESCO,II.1.1,Buenos Aires,AR-B,annual,2012,bioetanol combustion consumption by to the public,25.9462615284,TJ,N2O,0.6,kg/TJ,15.56775691704,kg -995ceae2-7f93-3c01-b928-265d90c3bdb1,SESCO,II.1.1,Capital Federal,AR-C,annual,2012,bioetanol combustion consumption by to the public,4.827594470129999,TJ,CH4,10.0,kg/TJ,48.27594470129999,kg -347d8e3f-8488-3e36-be1d-2caa9a09263a,SESCO,II.1.1,Capital Federal,AR-C,annual,2012,bioetanol combustion consumption by to the public,4.827594470129999,TJ,N2O,0.6,kg/TJ,2.8965566820779993,kg -21b1f713-cf71-37e6-b998-f8852ff859e4,SESCO,II.1.1,Chubut,AR-U,annual,2012,bioetanol combustion consumption by to the public,4.691722018859999,TJ,CH4,10.0,kg/TJ,46.91722018859999,kg -df0e170a-05f8-3299-97c9-e5df28a33e52,SESCO,II.1.1,Chubut,AR-U,annual,2012,bioetanol combustion consumption by to the public,4.691722018859999,TJ,N2O,0.6,kg/TJ,2.8150332113159995,kg -d66d829e-8aee-3094-bc71-c134b47223aa,SESCO,II.1.1,Córdoba,AR-X,annual,2012,bioetanol combustion consumption by to the public,2.80934825013,TJ,CH4,10.0,kg/TJ,28.0934825013,kg -329b1345-83e4-3ced-b433-2b53992cff11,SESCO,II.1.1,Córdoba,AR-X,annual,2012,bioetanol combustion consumption by to the public,2.80934825013,TJ,N2O,0.6,kg/TJ,1.6856089500779998,kg -a4ef31e3-4119-3636-bc8b-9762126131d7,SESCO,II.1.1,Entre Rios,AR-E,annual,2012,bioetanol combustion consumption by to the public,0.43988500790999996,TJ,CH4,10.0,kg/TJ,4.3988500791,kg -fa7ee456-c66b-393a-a01c-7d73ead8b94d,SESCO,II.1.1,Entre Rios,AR-E,annual,2012,bioetanol combustion consumption by to the public,0.43988500790999996,TJ,N2O,0.6,kg/TJ,0.26393100474599995,kg -ce7c1d9b-4111-38d8-9628-1119dbba8cae,SESCO,II.1.1,La Pampa,AR-L,annual,2012,bioetanol combustion consumption by to the public,0.9909167140799998,TJ,CH4,10.0,kg/TJ,9.909167140799997,kg -83beab85-607c-3e15-934a-043b607a2200,SESCO,II.1.1,La Pampa,AR-L,annual,2012,bioetanol combustion consumption by to the public,0.9909167140799998,TJ,N2O,0.6,kg/TJ,0.5945500284479999,kg -c62c6982-b04b-388e-a623-0d6a727bcfbe,SESCO,II.1.1,Mendoza,AR-M,annual,2012,bioetanol combustion consumption by to the public,0.04895429399999999,TJ,CH4,10.0,kg/TJ,0.48954293999999987,kg -daf1dfd9-9a24-3bfa-803d-153b4768cf83,SESCO,II.1.1,Mendoza,AR-M,annual,2012,bioetanol combustion consumption by to the public,0.04895429399999999,TJ,N2O,0.6,kg/TJ,0.029372576399999992,kg -25a45ff8-0183-377a-818e-a9d93512b7fb,SESCO,II.1.1,Neuquén,AR-Q,annual,2012,bioetanol combustion consumption by to the public,2.7721532121299997,TJ,CH4,10.0,kg/TJ,27.721532121299997,kg -1ce41c68-2d41-3aee-903a-e8143d309202,SESCO,II.1.1,Neuquén,AR-Q,annual,2012,bioetanol combustion consumption by to the public,2.7721532121299997,TJ,N2O,0.6,kg/TJ,1.6632919272779998,kg -418a76f8-7495-3a85-a452-3b07ca0dd2fe,SESCO,II.1.1,Rio Negro,AR-R,annual,2012,bioetanol combustion consumption by to the public,3.495210690869999,TJ,CH4,10.0,kg/TJ,34.95210690869999,kg -73d1f790-7608-3d4b-b504-dca484bf7448,SESCO,II.1.1,Rio Negro,AR-R,annual,2012,bioetanol combustion consumption by to the public,3.495210690869999,TJ,N2O,0.6,kg/TJ,2.097126414521999,kg -9663fa2d-146d-3dbc-978f-79af4d713d53,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2012,bioetanol combustion consumption by to the public,3.29432872662,TJ,CH4,10.0,kg/TJ,32.9432872662,kg -e278fd4d-1497-3d29-8abf-6d225ab4fdeb,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2012,bioetanol combustion consumption by to the public,3.29432872662,TJ,N2O,0.6,kg/TJ,1.9765972359719999,kg -aa953a0f-4aae-3dd2-b120-67930a6de806,SESCO,II.1.1,Santa Fe,AR-S,annual,2012,bioetanol combustion consumption by to the public,3.8696682209399995,TJ,CH4,10.0,kg/TJ,38.696682209399995,kg -caf710b5-75f9-378b-ae59-705fe9092cc2,SESCO,II.1.1,Santa Fe,AR-S,annual,2012,bioetanol combustion consumption by to the public,3.8696682209399995,TJ,N2O,0.6,kg/TJ,2.3218009325639994,kg -01dc081a-adb7-3b8f-b7e3-95f6b760850c,SESCO,II.1.1,Buenos Aires,AR-B,annual,2012,bioetanol combustion consumption by to the public,1.6841938769999998,TJ,CH4,10.0,kg/TJ,16.84193877,kg -00d315c2-0f17-36f4-8d5e-86fff40b1446,SESCO,II.1.1,Buenos Aires,AR-B,annual,2012,bioetanol combustion consumption by to the public,1.6841938769999998,TJ,N2O,0.6,kg/TJ,1.0105163261999999,kg -7d583d8a-a5df-3201-8dcc-217c53d127ef,SESCO,II.1.1,Capital Federal,AR-C,annual,2012,bioetanol combustion consumption by to the public,1.0001758499999998,TJ,CH4,10.0,kg/TJ,10.001758499999998,kg -2d3264b6-30cf-390a-919d-014cb49778c5,SESCO,II.1.1,Capital Federal,AR-C,annual,2012,bioetanol combustion consumption by to the public,1.0001758499999998,TJ,N2O,0.6,kg/TJ,0.6001055099999998,kg -60319045-5902-3276-8035-f6f5d9d56a66,SESCO,II.1.1,Chaco,AR-H,annual,2012,bioetanol combustion consumption by to the public,0.20131334999999997,TJ,CH4,10.0,kg/TJ,2.0131335,kg -96acbe35-3dca-34c9-95fa-e38c16bae992,SESCO,II.1.1,Chaco,AR-H,annual,2012,bioetanol combustion consumption by to the public,0.20131334999999997,TJ,N2O,0.6,kg/TJ,0.12078800999999997,kg -29f6d636-58b6-3b77-82db-2d75e97c1b58,SESCO,II.1.1,Córdoba,AR-X,annual,2012,bioetanol combustion consumption by to the public,0.6148045799999999,TJ,CH4,10.0,kg/TJ,6.148045799999999,kg -5d3f62be-0970-3f6c-b14e-427948617d05,SESCO,II.1.1,Córdoba,AR-X,annual,2012,bioetanol combustion consumption by to the public,0.6148045799999999,TJ,N2O,0.6,kg/TJ,0.3688827479999999,kg -8345765c-3bcf-3a67-bc66-5968a29d4b2a,SESCO,II.1.1,Entre Rios,AR-E,annual,2012,bioetanol combustion consumption by to the public,0.1725543,TJ,CH4,10.0,kg/TJ,1.725543,kg -b99c47ec-37c0-31a0-9c94-e94b56e0179c,SESCO,II.1.1,Entre Rios,AR-E,annual,2012,bioetanol combustion consumption by to the public,0.1725543,TJ,N2O,0.6,kg/TJ,0.10353258,kg -6ccb3cc9-5cb1-3cf0-b8f8-9be7dad89b0d,SESCO,II.1.1,Santa Fe,AR-S,annual,2012,bioetanol combustion consumption by to the public,0.82378701,TJ,CH4,10.0,kg/TJ,8.2378701,kg -1624dfaa-d544-3e68-95d2-7e933691c40e,SESCO,II.1.1,Santa Fe,AR-S,annual,2012,bioetanol combustion consumption by to the public,0.82378701,TJ,N2O,0.6,kg/TJ,0.494272206,kg -9ffeb681-3c1b-3607-8409-668a2337798b,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2012,bioetanol combustion consumption by to the public,0.021729059999999998,TJ,CH4,10.0,kg/TJ,0.21729059999999997,kg -97bf82fc-27f5-3f3e-a3c4-fb266e667fdf,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2012,bioetanol combustion consumption by to the public,0.021729059999999998,TJ,N2O,0.6,kg/TJ,0.013037435999999998,kg -68cdda0c-0b01-3182-bd4a-4a1f2047d843,SESCO,II.1.1,Buenos Aires,AR-B,annual,2012,bioetanol combustion consumption by to the public,24.973016931,TJ,CH4,10.0,kg/TJ,249.73016931,kg -cefc3640-dfe3-30dc-83e2-361c05028649,SESCO,II.1.1,Buenos Aires,AR-B,annual,2012,bioetanol combustion consumption by to the public,24.973016931,TJ,N2O,0.6,kg/TJ,14.983810158599999,kg -5737aae0-a66c-3e64-85c6-74e779ff2301,SESCO,II.1.1,Capital Federal,AR-C,annual,2012,bioetanol combustion consumption by to the public,5.783125409999999,TJ,CH4,10.0,kg/TJ,57.831254099999995,kg -29d77564-4721-3364-98ea-554b33de8653,SESCO,II.1.1,Capital Federal,AR-C,annual,2012,bioetanol combustion consumption by to the public,5.783125409999999,TJ,N2O,0.6,kg/TJ,3.4698752459999995,kg -7249ef62-e848-3a84-974e-c583f2500d7f,SESCO,II.1.1,Chaco,AR-H,annual,2012,bioetanol combustion consumption by to the public,1.6162586099999998,TJ,CH4,10.0,kg/TJ,16.1625861,kg -4a189cb2-7d83-3c50-a4f4-60c3caf4d000,SESCO,II.1.1,Chaco,AR-H,annual,2012,bioetanol combustion consumption by to the public,1.6162586099999998,TJ,N2O,0.6,kg/TJ,0.9697551659999999,kg -d71d5869-d193-3792-9d80-d49f368add3e,SESCO,II.1.1,Córdoba,AR-X,annual,2012,bioetanol combustion consumption by to the public,6.900893819999999,TJ,CH4,10.0,kg/TJ,69.00893819999999,kg -aa4885b1-83e8-3493-8d08-27f8b3cdca3b,SESCO,II.1.1,Córdoba,AR-X,annual,2012,bioetanol combustion consumption by to the public,6.900893819999999,TJ,N2O,0.6,kg/TJ,4.140536291999999,kg -f3a7e201-7494-3339-8107-2090004441f9,SESCO,II.1.1,Entre Rios,AR-E,annual,2012,bioetanol combustion consumption by to the public,2.76470334,TJ,CH4,10.0,kg/TJ,27.6470334,kg -283fc75a-c64d-335e-9537-1be474c51a87,SESCO,II.1.1,Entre Rios,AR-E,annual,2012,bioetanol combustion consumption by to the public,2.76470334,TJ,N2O,0.6,kg/TJ,1.658822004,kg -ff0fe4c6-e59b-3d0d-8d2c-6ab21f2d63df,SESCO,II.1.1,Santa Fe,AR-S,annual,2012,bioetanol combustion consumption by to the public,3.5290549799999997,TJ,CH4,10.0,kg/TJ,35.290549799999994,kg -fb55b0d0-73bb-34ee-9a41-d5035f2734f9,SESCO,II.1.1,Santa Fe,AR-S,annual,2012,bioetanol combustion consumption by to the public,3.5290549799999997,TJ,N2O,0.6,kg/TJ,2.1174329879999996,kg -ee7d0ca1-29a8-355a-a9a9-e7a5178fff23,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2012,bioetanol combustion consumption by to the public,0.10992348,TJ,CH4,10.0,kg/TJ,1.0992348,kg -2f08a649-9c4a-3d80-b607-0546a4004652,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2012,bioetanol combustion consumption by to the public,0.10992348,TJ,N2O,0.6,kg/TJ,0.065954088,kg -9fd2d87e-642f-31cf-91fb-e96291f3bc58,SESCO,II.1.1,Buenos Aires,AR-B,annual,2012,bioetanol combustion consumption by to the public,3.0026365470000003,TJ,CH4,10.0,kg/TJ,30.026365470000002,kg -859ca3a3-330d-3cfd-bf57-5ef0f03049f7,SESCO,II.1.1,Buenos Aires,AR-B,annual,2012,bioetanol combustion consumption by to the public,3.0026365470000003,TJ,N2O,0.6,kg/TJ,1.8015819282,kg -653f3843-031a-3a13-a944-9a25bf3719b6,SESCO,II.1.1,Capital Federal,AR-C,annual,2012,bioetanol combustion consumption by to the public,0.29717685,TJ,CH4,10.0,kg/TJ,2.9717685,kg -241fa75f-cc84-30fd-b780-e909233e90a6,SESCO,II.1.1,Capital Federal,AR-C,annual,2012,bioetanol combustion consumption by to the public,0.29717685,TJ,N2O,0.6,kg/TJ,0.17830611,kg -bb82d9c1-3338-37fa-9857-b94032f0e4d5,SESCO,II.1.1,Chaco,AR-H,annual,2012,bioetanol combustion consumption by to the public,0.0127818,TJ,CH4,10.0,kg/TJ,0.127818,kg -59c15a3a-0c61-3a8c-b3c9-b9af198d5fce,SESCO,II.1.1,Chaco,AR-H,annual,2012,bioetanol combustion consumption by to the public,0.0127818,TJ,N2O,0.6,kg/TJ,0.007669079999999999,kg -5e95d139-55c2-3995-963f-8bb1f0473916,SESCO,II.1.1,Córdoba,AR-X,annual,2012,bioetanol combustion consumption by to the public,0.6697663199999999,TJ,CH4,10.0,kg/TJ,6.697663199999999,kg -58b73478-a85a-3a59-aaf1-75b4944256a7,SESCO,II.1.1,Córdoba,AR-X,annual,2012,bioetanol combustion consumption by to the public,0.6697663199999999,TJ,N2O,0.6,kg/TJ,0.40185979199999994,kg -9c8b2add-1c0a-3177-bcba-b6451bc9d7f3,SESCO,II.1.1,Entre Rios,AR-E,annual,2012,bioetanol combustion consumption by to the public,0.37578492,TJ,CH4,10.0,kg/TJ,3.7578492000000003,kg -986faa80-be15-3ea8-9cec-43dafbcfe5a7,SESCO,II.1.1,Entre Rios,AR-E,annual,2012,bioetanol combustion consumption by to the public,0.37578492,TJ,N2O,0.6,kg/TJ,0.225470952,kg -be0a6f8e-8068-3dcf-93a2-3f41d0e598ea,SESCO,II.1.1,Santa Fe,AR-S,annual,2012,bioetanol combustion consumption by to the public,0.5361965099999999,TJ,CH4,10.0,kg/TJ,5.361965099999999,kg -e4b8f54e-5cc8-3544-b370-8283ec4c6ae9,SESCO,II.1.1,Santa Fe,AR-S,annual,2012,bioetanol combustion consumption by to the public,0.5361965099999999,TJ,N2O,0.6,kg/TJ,0.32171790599999994,kg -3841dc21-d2f6-3f29-8f59-f0669c39ee60,SESCO,II.1.1,Catamarca,AR-K,annual,2012,bioetanol combustion consumption by to the public,0.8694372087,TJ,CH4,10.0,kg/TJ,8.694372087,kg -4993fcfd-dda6-32e5-819b-3a11b2570f7d,SESCO,II.1.1,Catamarca,AR-K,annual,2012,bioetanol combustion consumption by to the public,0.8694372087,TJ,N2O,0.6,kg/TJ,0.52166232522,kg -fca3d9ea-0844-3f0f-9678-5c4018c21550,SESCO,II.1.1,Chaco,AR-H,annual,2012,bioetanol combustion consumption by to the public,0.8611482114,TJ,CH4,10.0,kg/TJ,8.611482114,kg -4ee284f1-6a9c-33c5-a807-5244f7122c02,SESCO,II.1.1,Chaco,AR-H,annual,2012,bioetanol combustion consumption by to the public,0.8611482114,TJ,N2O,0.6,kg/TJ,0.51668892684,kg -7073dbf0-f32e-319e-812b-c9a65e707b51,SESCO,II.1.1,Córdoba,AR-X,annual,2012,bioetanol combustion consumption by to the public,0.0361277577,TJ,CH4,10.0,kg/TJ,0.36127757699999996,kg -b4138112-1e07-3a34-be1c-cde72cd9548b,SESCO,II.1.1,Córdoba,AR-X,annual,2012,bioetanol combustion consumption by to the public,0.0361277577,TJ,N2O,0.6,kg/TJ,0.02167665462,kg -a7263603-7cc2-3619-8f7e-f173f06eac21,SESCO,II.1.1,Jujuy,AR-Y,annual,2012,bioetanol combustion consumption by to the public,2.3025006701999997,TJ,CH4,10.0,kg/TJ,23.025006702,kg -fe985b5b-b5d9-333f-9ecb-5da5822a6690,SESCO,II.1.1,Jujuy,AR-Y,annual,2012,bioetanol combustion consumption by to the public,2.3025006701999997,TJ,N2O,0.6,kg/TJ,1.3815004021199997,kg -8be1e813-1546-3bc3-aee6-c97ce2547abe,SESCO,II.1.1,La Rioja,AR-F,annual,2012,bioetanol combustion consumption by to the public,0.7023535190999999,TJ,CH4,10.0,kg/TJ,7.023535190999999,kg -21d6c144-92fd-39b4-abb3-49c8cd46e35b,SESCO,II.1.1,La Rioja,AR-F,annual,2012,bioetanol combustion consumption by to the public,0.7023535190999999,TJ,N2O,0.6,kg/TJ,0.4214121114599999,kg -592e92ca-4988-3905-afe7-05f10102cfec,SESCO,II.1.1,Salta,AR-A,annual,2012,bioetanol combustion consumption by to the public,4.638988146599999,TJ,CH4,10.0,kg/TJ,46.38988146599999,kg -c22cfeaa-bf46-3b4d-b89b-26f956352e20,SESCO,II.1.1,Salta,AR-A,annual,2012,bioetanol combustion consumption by to the public,4.638988146599999,TJ,N2O,0.6,kg/TJ,2.7833928879599994,kg -660720c8-b82c-3ade-8f40-c1ff2bd85db5,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2012,bioetanol combustion consumption by to the public,1.1287671489,TJ,CH4,10.0,kg/TJ,11.287671489,kg -d8caf2f3-3f9c-3851-9908-bb6d6ffb02eb,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2012,bioetanol combustion consumption by to the public,1.1287671489,TJ,N2O,0.6,kg/TJ,0.6772602893399999,kg -2e593326-697e-3792-ac5c-194fa1bc882f,SESCO,II.1.1,Tucuman,AR-T,annual,2012,bioetanol combustion consumption by to the public,3.3790286025,TJ,CH4,10.0,kg/TJ,33.790286025,kg -a1001da4-ef38-3787-954a-61c3415ca408,SESCO,II.1.1,Tucuman,AR-T,annual,2012,bioetanol combustion consumption by to the public,3.3790286025,TJ,N2O,0.6,kg/TJ,2.0274171615,kg -a5a83f5b-e5a7-3677-990a-7fa948df0e1c,SESCO,II.1.1,Catamarca,AR-K,annual,2012,bioetanol combustion consumption by to the public,4.333106890799999,TJ,CH4,10.0,kg/TJ,43.33106890799999,kg -9f6c6a50-f633-3758-882e-214e5aeda372,SESCO,II.1.1,Catamarca,AR-K,annual,2012,bioetanol combustion consumption by to the public,4.333106890799999,TJ,N2O,0.6,kg/TJ,2.5998641344799993,kg -d4840f80-1958-33b4-aa18-f05111a4065f,SESCO,II.1.1,Chaco,AR-H,annual,2012,bioetanol combustion consumption by to the public,1.4401765331999998,TJ,CH4,10.0,kg/TJ,14.401765331999998,kg -dc1a3d0a-90da-37cb-a6c5-e98f8eaef2e8,SESCO,II.1.1,Chaco,AR-H,annual,2012,bioetanol combustion consumption by to the public,1.4401765331999998,TJ,N2O,0.6,kg/TJ,0.8641059199199999,kg -3b9a4141-b49d-3013-a017-96e25e8e9d94,SESCO,II.1.1,Córdoba,AR-X,annual,2012,bioetanol combustion consumption by to the public,0.37480072140000004,TJ,CH4,10.0,kg/TJ,3.7480072140000003,kg -a38e2c8c-0404-37ac-969e-41fa3e705aec,SESCO,II.1.1,Córdoba,AR-X,annual,2012,bioetanol combustion consumption by to the public,0.37480072140000004,TJ,N2O,0.6,kg/TJ,0.22488043284,kg -52226647-878d-3cbc-a5a7-7da6b545c168,SESCO,II.1.1,Jujuy,AR-Y,annual,2012,bioetanol combustion consumption by to the public,6.688958794199999,TJ,CH4,10.0,kg/TJ,66.88958794199999,kg -c57a5d3c-7c1e-3aff-b462-e3d614e93594,SESCO,II.1.1,Jujuy,AR-Y,annual,2012,bioetanol combustion consumption by to the public,6.688958794199999,TJ,N2O,0.6,kg/TJ,4.013375276519999,kg -ec76461c-cd85-3210-9bd9-e9951ba927b6,SESCO,II.1.1,La Rioja,AR-F,annual,2012,bioetanol combustion consumption by to the public,4.377542818499999,TJ,CH4,10.0,kg/TJ,43.775428184999996,kg -9bafc71d-176b-3eb9-a0ae-edbc7aa11287,SESCO,II.1.1,La Rioja,AR-F,annual,2012,bioetanol combustion consumption by to the public,4.377542818499999,TJ,N2O,0.6,kg/TJ,2.6265256910999994,kg -f9128061-ad5f-3882-aec1-d7d9461dde2e,SESCO,II.1.1,Salta,AR-A,annual,2012,bioetanol combustion consumption by to the public,14.516839877399999,TJ,CH4,10.0,kg/TJ,145.168398774,kg -c7f488d1-8839-3a2b-8013-aa6538e42a00,SESCO,II.1.1,Salta,AR-A,annual,2012,bioetanol combustion consumption by to the public,14.516839877399999,TJ,N2O,0.6,kg/TJ,8.710103926439999,kg -8c99e701-d32c-3dc7-9815-117db234be71,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2012,bioetanol combustion consumption by to the public,4.595855962499999,TJ,CH4,10.0,kg/TJ,45.95855962499999,kg -4d8507e5-8748-34fe-b449-bd0fd1ca1db0,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2012,bioetanol combustion consumption by to the public,4.595855962499999,TJ,N2O,0.6,kg/TJ,2.7575135774999993,kg -678b238d-3979-3349-a80b-cb5b18837f47,SESCO,II.1.1,Tucuman,AR-T,annual,2012,bioetanol combustion consumption by to the public,25.4283238197,TJ,CH4,10.0,kg/TJ,254.283238197,kg -45448aff-b389-3291-bd67-e99e64cf718b,SESCO,II.1.1,Tucuman,AR-T,annual,2012,bioetanol combustion consumption by to the public,25.4283238197,TJ,N2O,0.6,kg/TJ,15.25699429182,kg -9a472a4d-7c02-3430-b756-494822301028,SESCO,II.1.1,Catamarca,AR-K,annual,2012,bioetanol combustion consumption by to the public,0.27485982719999996,TJ,CH4,10.0,kg/TJ,2.7485982719999997,kg -4c2d5d68-8c3c-3be8-9a29-f2e177d7135f,SESCO,II.1.1,Catamarca,AR-K,annual,2012,bioetanol combustion consumption by to the public,0.27485982719999996,TJ,N2O,0.6,kg/TJ,0.16491589631999998,kg -e4ba2b7b-c6d4-3c5e-9261-d5cd6b104ac2,SESCO,II.1.1,Chaco,AR-H,annual,2012,bioetanol combustion consumption by to the public,0.030414293099999996,TJ,CH4,10.0,kg/TJ,0.30414293099999995,kg -42310820-bc09-360f-ba0d-eefb30938f7b,SESCO,II.1.1,Chaco,AR-H,annual,2012,bioetanol combustion consumption by to the public,0.030414293099999996,TJ,N2O,0.6,kg/TJ,0.018248575859999998,kg -deb595fc-0974-3f5a-bf13-a3eb158b6f31,SESCO,II.1.1,Córdoba,AR-X,annual,2012,bioetanol combustion consumption by to the public,0.067935267,TJ,CH4,10.0,kg/TJ,0.6793526699999999,kg -b236e019-b452-322a-9574-0fd291e92f71,SESCO,II.1.1,Córdoba,AR-X,annual,2012,bioetanol combustion consumption by to the public,0.067935267,TJ,N2O,0.6,kg/TJ,0.04076116019999999,kg -c9b63493-fd0c-3115-9aa0-0878c7a2b981,SESCO,II.1.1,Jujuy,AR-Y,annual,2012,bioetanol combustion consumption by to the public,0.6502165568999999,TJ,CH4,10.0,kg/TJ,6.502165568999999,kg -a642ad02-35a2-39ef-87f7-d2cca4779a0c,SESCO,II.1.1,Jujuy,AR-Y,annual,2012,bioetanol combustion consumption by to the public,0.6502165568999999,TJ,N2O,0.6,kg/TJ,0.3901299341399999,kg -c02cb3f4-fe74-349d-bdd4-9dd4d798b6c2,SESCO,II.1.1,La Rioja,AR-F,annual,2012,bioetanol combustion consumption by to the public,0.22823182079999998,TJ,CH4,10.0,kg/TJ,2.282318208,kg -9e59bc5e-154c-3dec-ac65-f1c919375da8,SESCO,II.1.1,La Rioja,AR-F,annual,2012,bioetanol combustion consumption by to the public,0.22823182079999998,TJ,N2O,0.6,kg/TJ,0.13693909248,kg -5652fa38-8dab-30f5-ac31-0100b6faaaf9,SESCO,II.1.1,Salta,AR-A,annual,2012,bioetanol combustion consumption by to the public,1.3633323515999998,TJ,CH4,10.0,kg/TJ,13.633323515999997,kg -feeee0a5-c589-3710-a83f-188f606ee4b3,SESCO,II.1.1,Salta,AR-A,annual,2012,bioetanol combustion consumption by to the public,1.3633323515999998,TJ,N2O,0.6,kg/TJ,0.8179994109599998,kg -3b563510-e9fd-3b5f-ac40-11974fc21579,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2012,bioetanol combustion consumption by to the public,0.47078564849999993,TJ,CH4,10.0,kg/TJ,4.707856484999999,kg -025c4c45-d19a-35c0-8153-e84f65af536f,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2012,bioetanol combustion consumption by to the public,0.47078564849999993,TJ,N2O,0.6,kg/TJ,0.28247138909999997,kg -401989ee-48c9-395a-9af2-4a5b6b87a42a,SESCO,II.1.1,Tucuman,AR-T,annual,2012,bioetanol combustion consumption by to the public,2.2665135123,TJ,CH4,10.0,kg/TJ,22.665135123,kg -0c5b60ed-1f08-314b-adc9-6c14ff9dc760,SESCO,II.1.1,Tucuman,AR-T,annual,2012,bioetanol combustion consumption by to the public,2.2665135123,TJ,N2O,0.6,kg/TJ,1.35990810738,kg -c63f59c0-d8cb-35d8-992c-b489c669f516,SESCO,II.5.1,Capital Federal,AR-C,annual,2012,bioetanol combustion consumption by agriculture machines,0.007669079999999999,TJ,CH4,10.0,kg/TJ,0.07669079999999999,kg -e29d81a1-3ff3-3cd1-81f9-fb6f3776bb9e,SESCO,II.5.1,Capital Federal,AR-C,annual,2012,bioetanol combustion consumption by agriculture machines,0.007669079999999999,TJ,N2O,0.6,kg/TJ,0.004601447999999999,kg -a87b56df-7f57-3fab-abfe-48c0b1f02d81,SESCO,II.5.1,Santa Fe,AR-S,annual,2012,bioetanol combustion consumption by agriculture machines,0.08755532999999999,TJ,CH4,10.0,kg/TJ,0.8755532999999999,kg -c2c4ffd4-d6f9-353b-b8e6-e35eb0a3620d,SESCO,II.5.1,Santa Fe,AR-S,annual,2012,bioetanol combustion consumption by agriculture machines,0.08755532999999999,TJ,N2O,0.6,kg/TJ,0.05253319799999999,kg -4462b416-a65e-33aa-987e-be76e53df6e6,SESCO,II.1.1,Buenos Aires,AR-B,annual,2012,bioetanol combustion consumption by to the public,5.8169971799999995,TJ,CH4,10.0,kg/TJ,58.1699718,kg -61a232d6-6c18-3cae-b453-d0fbfbfc7400,SESCO,II.1.1,Buenos Aires,AR-B,annual,2012,bioetanol combustion consumption by to the public,5.8169971799999995,TJ,N2O,0.6,kg/TJ,3.4901983079999996,kg -86a65f1c-4799-3b2a-b08d-9ef22a015b11,SESCO,II.1.1,Capital Federal,AR-C,annual,2012,bioetanol combustion consumption by to the public,0.07349534999999999,TJ,CH4,10.0,kg/TJ,0.7349534999999998,kg -b74f89d4-3852-3177-9dc5-e75767205304,SESCO,II.1.1,Capital Federal,AR-C,annual,2012,bioetanol combustion consumption by to the public,0.07349534999999999,TJ,N2O,0.6,kg/TJ,0.04409720999999999,kg -d5fb3414-8423-3e39-84fa-dd250a3fd4a4,SESCO,II.1.1,Chaco,AR-H,annual,2012,bioetanol combustion consumption by to the public,0.20514788999999997,TJ,CH4,10.0,kg/TJ,2.0514788999999998,kg -f7bd1ddc-7cfd-3b56-84c3-8d421fa88532,SESCO,II.1.1,Chaco,AR-H,annual,2012,bioetanol combustion consumption by to the public,0.20514788999999997,TJ,N2O,0.6,kg/TJ,0.12308873399999998,kg -901aa231-485b-351f-832d-f8b99178d2f2,SESCO,II.1.1,Corrientes,AR-W,annual,2012,bioetanol combustion consumption by to the public,0.05623991999999999,TJ,CH4,10.0,kg/TJ,0.5623991999999999,kg -56cf3cfc-4031-3958-b561-f32bfefc1836,SESCO,II.1.1,Corrientes,AR-W,annual,2012,bioetanol combustion consumption by to the public,0.05623991999999999,TJ,N2O,0.6,kg/TJ,0.033743951999999994,kg -9d4f51ee-2077-379b-bd80-a98f2d0a331a,SESCO,II.1.1,Córdoba,AR-X,annual,2012,bioetanol combustion consumption by to the public,0.014699069999999998,TJ,CH4,10.0,kg/TJ,0.14699069999999997,kg -2caefbe3-dbf0-3ea2-b722-13644f1f3cc9,SESCO,II.1.1,Córdoba,AR-X,annual,2012,bioetanol combustion consumption by to the public,0.014699069999999998,TJ,N2O,0.6,kg/TJ,0.008819441999999999,kg -0b1eec8a-65b8-31a0-81d4-3c0699b25ce4,SESCO,II.1.1,Entre Rios,AR-E,annual,2012,bioetanol combustion consumption by to the public,0.47931749999999995,TJ,CH4,10.0,kg/TJ,4.793175,kg -b5876469-382c-30e8-ba17-f7efbe736789,SESCO,II.1.1,Entre Rios,AR-E,annual,2012,bioetanol combustion consumption by to the public,0.47931749999999995,TJ,N2O,0.6,kg/TJ,0.28759049999999997,kg -6c960e43-5978-3e6d-8dbd-d0a424cb170f,SESCO,II.1.1,La Pampa,AR-L,annual,2012,bioetanol combustion consumption by to the public,0.038345399999999995,TJ,CH4,10.0,kg/TJ,0.38345399999999996,kg -165c1dff-bafb-38a2-963b-a25af0f8f57f,SESCO,II.1.1,La Pampa,AR-L,annual,2012,bioetanol combustion consumption by to the public,0.038345399999999995,TJ,N2O,0.6,kg/TJ,0.023007239999999995,kg -dac083c2-58d6-34a2-a9a7-c6de3637748a,SESCO,II.1.1,Mendoza,AR-M,annual,2012,bioetanol combustion consumption by to the public,1.4360352299999999,TJ,CH4,10.0,kg/TJ,14.360352299999999,kg -69ae7468-970a-31e4-a35a-cb3278d385b7,SESCO,II.1.1,Mendoza,AR-M,annual,2012,bioetanol combustion consumption by to the public,1.4360352299999999,TJ,N2O,0.6,kg/TJ,0.861621138,kg -506c950e-40c6-31c1-8e58-8870bdd69e99,SESCO,II.1.1,Misiones,AR-N,annual,2012,bioetanol combustion consumption by to the public,0.49018202999999994,TJ,CH4,10.0,kg/TJ,4.901820299999999,kg -4c477fee-f10a-31e9-a6ee-6f0021df5aeb,SESCO,II.1.1,Misiones,AR-N,annual,2012,bioetanol combustion consumption by to the public,0.49018202999999994,TJ,N2O,0.6,kg/TJ,0.29410921799999995,kg -da8a4c76-1aa1-3d0a-a723-6256d5d9bbf1,SESCO,II.1.1,Neuquén,AR-Q,annual,2012,bioetanol combustion consumption by to the public,0.28822959,TJ,CH4,10.0,kg/TJ,2.8822959,kg -0c8dc5e9-e4b7-3c74-9f2d-f48070b266d5,SESCO,II.1.1,Neuquén,AR-Q,annual,2012,bioetanol combustion consumption by to the public,0.28822959,TJ,N2O,0.6,kg/TJ,0.17293775399999997,kg -8c95e198-34f2-3686-a315-3ee3fc3058b1,SESCO,II.1.1,Rio Negro,AR-R,annual,2012,bioetanol combustion consumption by to the public,0.14890796999999997,TJ,CH4,10.0,kg/TJ,1.4890796999999998,kg -7d30c3d0-c66e-306c-af9f-81c9071dafbf,SESCO,II.1.1,Rio Negro,AR-R,annual,2012,bioetanol combustion consumption by to the public,0.14890796999999997,TJ,N2O,0.6,kg/TJ,0.08934478199999998,kg -9bb5ee29-c578-3ca8-83fd-c4a6494d1735,SESCO,II.1.1,Santa Fe,AR-S,annual,2012,bioetanol combustion consumption by to the public,0.06838263,TJ,CH4,10.0,kg/TJ,0.6838263,kg -5943e239-9df9-3c3a-8f9e-6ad9bc00e0a8,SESCO,II.1.1,Santa Fe,AR-S,annual,2012,bioetanol combustion consumption by to the public,0.06838263,TJ,N2O,0.6,kg/TJ,0.041029578,kg -ee471297-a0fa-32d6-b23c-2e2dd067b67e,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2012,bioetanol combustion consumption by to the public,0.036428129999999996,TJ,CH4,10.0,kg/TJ,0.3642813,kg -208682e7-c816-33fe-acc1-f2b7e7772d7e,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2012,bioetanol combustion consumption by to the public,0.036428129999999996,TJ,N2O,0.6,kg/TJ,0.021856877999999996,kg -7b4bc83a-d4c3-3339-be35-088cd68278ae,SESCO,II.1.1,Tucuman,AR-T,annual,2012,bioetanol combustion consumption by to the public,0.13676526,TJ,CH4,10.0,kg/TJ,1.3676526,kg -5454902a-1b2b-3cb5-995d-5567efbb989d,SESCO,II.1.1,Tucuman,AR-T,annual,2012,bioetanol combustion consumption by to the public,0.13676526,TJ,N2O,0.6,kg/TJ,0.082059156,kg -fa22693a-5de6-3fb5-a39f-6c86888faee0,SESCO,II.1.1,Buenos Aires,AR-B,annual,2012,bioetanol combustion consumption by to the public,272.87800911,TJ,CH4,10.0,kg/TJ,2728.7800911,kg -e0eb21d4-b343-39e2-ac6d-5dc86c483fc5,SESCO,II.1.1,Buenos Aires,AR-B,annual,2012,bioetanol combustion consumption by to the public,272.87800911,TJ,N2O,0.6,kg/TJ,163.726805466,kg -dfe22d63-dae0-319c-8e80-f3b949050e5e,SESCO,II.1.1,Capital Federal,AR-C,annual,2012,bioetanol combustion consumption by to the public,80.71834518,TJ,CH4,10.0,kg/TJ,807.1834518000001,kg -7c9b30a6-228b-36e9-9ee2-4425fe61f99b,SESCO,II.1.1,Capital Federal,AR-C,annual,2012,bioetanol combustion consumption by to the public,80.71834518,TJ,N2O,0.6,kg/TJ,48.431007107999996,kg -4b9d09f4-8ce5-3d6b-bed9-5464579bd808,SESCO,II.1.1,Catamarca,AR-K,annual,2012,bioetanol combustion consumption by to the public,1.2366391499999998,TJ,CH4,10.0,kg/TJ,12.366391499999999,kg -011f4fc2-21b6-362d-9d36-fa35475d3ade,SESCO,II.1.1,Catamarca,AR-K,annual,2012,bioetanol combustion consumption by to the public,1.2366391499999998,TJ,N2O,0.6,kg/TJ,0.7419834899999999,kg -69bc00b3-fd50-34f8-9dd4-53df14ca41a2,SESCO,II.1.1,Chaco,AR-H,annual,2012,bioetanol combustion consumption by to the public,17.885572739999997,TJ,CH4,10.0,kg/TJ,178.85572739999998,kg -8588ef29-5ae1-3de2-9b8f-f8969303864b,SESCO,II.1.1,Chaco,AR-H,annual,2012,bioetanol combustion consumption by to the public,17.885572739999997,TJ,N2O,0.6,kg/TJ,10.731343643999997,kg -526556de-b884-3b94-8f83-747e23093f18,SESCO,II.1.1,Chubut,AR-U,annual,2012,bioetanol combustion consumption by to the public,1.9038491099999997,TJ,CH4,10.0,kg/TJ,19.038491099999998,kg -87382088-3454-364c-af60-51367d206b7f,SESCO,II.1.1,Chubut,AR-U,annual,2012,bioetanol combustion consumption by to the public,1.9038491099999997,TJ,N2O,0.6,kg/TJ,1.1423094659999997,kg -7ad779a9-9be8-309c-8d46-fb02ad09e2d6,SESCO,II.1.1,Corrientes,AR-W,annual,2012,bioetanol combustion consumption by to the public,17.16979194,TJ,CH4,10.0,kg/TJ,171.6979194,kg -47b53901-8866-3b8c-8a90-1d0e783aafe2,SESCO,II.1.1,Corrientes,AR-W,annual,2012,bioetanol combustion consumption by to the public,17.16979194,TJ,N2O,0.6,kg/TJ,10.301875164,kg -ecd158d5-8194-33aa-997e-332510c134df,SESCO,II.1.1,Córdoba,AR-X,annual,2012,bioetanol combustion consumption by to the public,55.312600409999995,TJ,CH4,10.0,kg/TJ,553.1260040999999,kg -f3a6295a-1f50-319d-9f22-051bd3cb8fa5,SESCO,II.1.1,Córdoba,AR-X,annual,2012,bioetanol combustion consumption by to the public,55.312600409999995,TJ,N2O,0.6,kg/TJ,33.187560246,kg -23db8eea-0cb7-3978-b417-a636e1aeeefe,SESCO,II.1.1,Entre Rios,AR-E,annual,2012,bioetanol combustion consumption by to the public,21.488123069999997,TJ,CH4,10.0,kg/TJ,214.88123069999997,kg -0c3af81d-b8dd-39bb-93fb-7ad12c0a8604,SESCO,II.1.1,Entre Rios,AR-E,annual,2012,bioetanol combustion consumption by to the public,21.488123069999997,TJ,N2O,0.6,kg/TJ,12.892873841999998,kg -4e1a597b-53b2-393d-b81e-c1ebeec577a1,SESCO,II.1.1,Formosa,AR-P,annual,2012,bioetanol combustion consumption by to the public,8.522904239999999,TJ,CH4,10.0,kg/TJ,85.2290424,kg -8f5b93fe-2140-3846-a43d-321a91a3d79e,SESCO,II.1.1,Formosa,AR-P,annual,2012,bioetanol combustion consumption by to the public,8.522904239999999,TJ,N2O,0.6,kg/TJ,5.113742543999999,kg -2dc2e577-51cc-3f04-a038-d5079d99af28,SESCO,II.1.1,Jujuy,AR-Y,annual,2012,bioetanol combustion consumption by to the public,4.21671582,TJ,CH4,10.0,kg/TJ,42.1671582,kg -804bbea2-764d-3df6-aaf6-ebc2cfc17146,SESCO,II.1.1,Jujuy,AR-Y,annual,2012,bioetanol combustion consumption by to the public,4.21671582,TJ,N2O,0.6,kg/TJ,2.530029492,kg -11a04fe6-2df9-390e-88e8-1707d246b661,SESCO,II.1.1,La Pampa,AR-L,annual,2012,bioetanol combustion consumption by to the public,5.747336369999999,TJ,CH4,10.0,kg/TJ,57.47336369999999,kg -520efe64-0cfd-3945-8cb6-87801449f4f5,SESCO,II.1.1,La Pampa,AR-L,annual,2012,bioetanol combustion consumption by to the public,5.747336369999999,TJ,N2O,0.6,kg/TJ,3.4484018219999997,kg -609fd2a5-7198-31ab-afae-19a0ef4a7bb0,SESCO,II.1.1,La Rioja,AR-F,annual,2012,bioetanol combustion consumption by to the public,5.453994059999999,TJ,CH4,10.0,kg/TJ,54.539940599999994,kg -8e1b878e-3141-396b-a00a-b95a0cb8c872,SESCO,II.1.1,La Rioja,AR-F,annual,2012,bioetanol combustion consumption by to the public,5.453994059999999,TJ,N2O,0.6,kg/TJ,3.2723964359999997,kg -88bb4641-fc5b-3013-b59e-7a86e6b2fbf4,SESCO,II.1.1,Mendoza,AR-M,annual,2012,bioetanol combustion consumption by to the public,14.596176509999998,TJ,CH4,10.0,kg/TJ,145.96176509999998,kg -6c5ae16d-7373-3b0d-a1c3-47b4f6dc61fe,SESCO,II.1.1,Mendoza,AR-M,annual,2012,bioetanol combustion consumption by to the public,14.596176509999998,TJ,N2O,0.6,kg/TJ,8.757705905999998,kg -07726f1f-0d8c-3a1b-818e-b8769010abce,SESCO,II.1.1,Misiones,AR-N,annual,2012,bioetanol combustion consumption by to the public,22.161723929999997,TJ,CH4,10.0,kg/TJ,221.61723929999997,kg -2d667b17-9538-3af6-af4c-4080529d146d,SESCO,II.1.1,Misiones,AR-N,annual,2012,bioetanol combustion consumption by to the public,22.161723929999997,TJ,N2O,0.6,kg/TJ,13.297034357999998,kg -f6b09f9a-4a50-3afa-b022-7f7d68eda6dd,SESCO,II.1.1,Neuquén,AR-Q,annual,2012,bioetanol combustion consumption by to the public,4.615507979999999,TJ,CH4,10.0,kg/TJ,46.155079799999996,kg -56c454f0-35c8-3055-a37f-3a77cf975a7f,SESCO,II.1.1,Neuquén,AR-Q,annual,2012,bioetanol combustion consumption by to the public,4.615507979999999,TJ,N2O,0.6,kg/TJ,2.7693047879999995,kg -ad5ac076-643f-3347-b788-bbbd8fc10659,SESCO,II.1.1,Rio Negro,AR-R,annual,2012,bioetanol combustion consumption by to the public,3.9393507599999995,TJ,CH4,10.0,kg/TJ,39.39350759999999,kg -3c003fe7-c5e0-337d-ba8a-edbe303eefe5,SESCO,II.1.1,Rio Negro,AR-R,annual,2012,bioetanol combustion consumption by to the public,3.9393507599999995,TJ,N2O,0.6,kg/TJ,2.3636104559999995,kg -b5ef171d-eda9-3a42-9626-265455fea431,SESCO,II.1.1,Salta,AR-A,annual,2012,bioetanol combustion consumption by to the public,6.34552461,TJ,CH4,10.0,kg/TJ,63.4552461,kg -18909917-532d-3a42-8be8-ee9a7048da6c,SESCO,II.1.1,Salta,AR-A,annual,2012,bioetanol combustion consumption by to the public,6.34552461,TJ,N2O,0.6,kg/TJ,3.8073147659999997,kg -eae8b968-cabb-3799-aae0-1748a485f039,SESCO,II.1.1,San Juan,AR-J,annual,2012,bioetanol combustion consumption by to the public,4.373292869999999,TJ,CH4,10.0,kg/TJ,43.732928699999995,kg -3780f829-115f-3e4e-a17b-ad5fae4961f0,SESCO,II.1.1,San Juan,AR-J,annual,2012,bioetanol combustion consumption by to the public,4.373292869999999,TJ,N2O,0.6,kg/TJ,2.6239757219999995,kg -3b629c5c-be49-3fb5-bfad-fc69747a326a,SESCO,II.1.1,San Luis,AR-D,annual,2012,bioetanol combustion consumption by to the public,0.30356774999999997,TJ,CH4,10.0,kg/TJ,3.0356775,kg -ac5fdcb2-5fbc-351e-9ab2-49e59a2ac2b6,SESCO,II.1.1,San Luis,AR-D,annual,2012,bioetanol combustion consumption by to the public,0.30356774999999997,TJ,N2O,0.6,kg/TJ,0.18214065,kg -8b0173e7-ea3e-3cb0-ac6c-49f0a120ca69,SESCO,II.1.1,Santa Fe,AR-S,annual,2012,bioetanol combustion consumption by to the public,63.35107443,TJ,CH4,10.0,kg/TJ,633.5107442999999,kg -bc74fdad-825a-3898-aaf7-f8c993626fbf,SESCO,II.1.1,Santa Fe,AR-S,annual,2012,bioetanol combustion consumption by to the public,63.35107443,TJ,N2O,0.6,kg/TJ,38.010644658,kg -b82d8a55-24d9-3cfb-8ef0-03770186cabd,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2012,bioetanol combustion consumption by to the public,7.12713168,TJ,CH4,10.0,kg/TJ,71.2713168,kg -92de953c-c8dc-33ba-9ae9-88089e0f7b14,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2012,bioetanol combustion consumption by to the public,7.12713168,TJ,N2O,0.6,kg/TJ,4.2762790079999995,kg -a040c2b7-58f6-3893-8e5e-e9fda7843927,SESCO,II.1.1,Tucuman,AR-T,annual,2012,bioetanol combustion consumption by to the public,16.57863369,TJ,CH4,10.0,kg/TJ,165.7863369,kg -d9afc3a9-87fc-383e-97fb-ca3d9836b6be,SESCO,II.1.1,Tucuman,AR-T,annual,2012,bioetanol combustion consumption by to the public,16.57863369,TJ,N2O,0.6,kg/TJ,9.947180214,kg -2bbba4c0-efc5-3b73-a256-c262d07cd11e,SESCO,II.1.1,Buenos Aires,AR-B,annual,2012,bioetanol combustion consumption by to the public,113.62764564,TJ,CH4,10.0,kg/TJ,1136.2764564,kg -969c3e96-bd60-3eef-9636-9f14f2d8ddba,SESCO,II.1.1,Buenos Aires,AR-B,annual,2012,bioetanol combustion consumption by to the public,113.62764564,TJ,N2O,0.6,kg/TJ,68.176587384,kg -aa655e38-1907-3c97-b8ea-0b4de1444b75,SESCO,II.1.1,Capital Federal,AR-C,annual,2012,bioetanol combustion consumption by to the public,49.270643549999996,TJ,CH4,10.0,kg/TJ,492.70643549999994,kg -3a0c0f25-4a18-3331-990a-52d316fbe73b,SESCO,II.1.1,Capital Federal,AR-C,annual,2012,bioetanol combustion consumption by to the public,49.270643549999996,TJ,N2O,0.6,kg/TJ,29.562386129999997,kg -adccb11d-c6ee-3685-be98-fb63d3ef4207,SESCO,II.1.1,Catamarca,AR-K,annual,2012,bioetanol combustion consumption by to the public,0.6077745899999999,TJ,CH4,10.0,kg/TJ,6.077745899999999,kg -db34a95e-548b-384f-9d82-f8244470bebf,SESCO,II.1.1,Catamarca,AR-K,annual,2012,bioetanol combustion consumption by to the public,0.6077745899999999,TJ,N2O,0.6,kg/TJ,0.3646647539999999,kg -fbffea95-f881-3dc3-9369-70fc1663f8bc,SESCO,II.1.1,Chaco,AR-H,annual,2012,bioetanol combustion consumption by to the public,4.749716879999999,TJ,CH4,10.0,kg/TJ,47.4971688,kg -07f00c8b-e32b-3b45-90a7-08b44b95defa,SESCO,II.1.1,Chaco,AR-H,annual,2012,bioetanol combustion consumption by to the public,4.749716879999999,TJ,N2O,0.6,kg/TJ,2.8498301279999994,kg -4197e16a-4c8e-352f-8f74-73dcd6ba2a84,SESCO,II.1.1,Chubut,AR-U,annual,2012,bioetanol combustion consumption by to the public,0.60202278,TJ,CH4,10.0,kg/TJ,6.0202278,kg -7e3719db-d646-3d42-8120-2799cfd001f0,SESCO,II.1.1,Chubut,AR-U,annual,2012,bioetanol combustion consumption by to the public,0.60202278,TJ,N2O,0.6,kg/TJ,0.361213668,kg -47324110-5823-3ac2-a83f-13834386f9b7,SESCO,II.1.1,Corrientes,AR-W,annual,2012,bioetanol combustion consumption by to the public,5.2213652999999995,TJ,CH4,10.0,kg/TJ,52.213652999999994,kg -cc3ea887-8b61-3bd3-8d49-ad75c78c9bd3,SESCO,II.1.1,Corrientes,AR-W,annual,2012,bioetanol combustion consumption by to the public,5.2213652999999995,TJ,N2O,0.6,kg/TJ,3.13281918,kg -f8f5e708-90c8-34a8-8e66-6a71933edb69,SESCO,II.1.1,Córdoba,AR-X,annual,2012,bioetanol combustion consumption by to the public,19.95622434,TJ,CH4,10.0,kg/TJ,199.5622434,kg -ee76e0d8-49d1-3a84-9b99-6172d6ac8f5a,SESCO,II.1.1,Córdoba,AR-X,annual,2012,bioetanol combustion consumption by to the public,19.95622434,TJ,N2O,0.6,kg/TJ,11.973734603999999,kg -7c8eec7e-0bde-3fa0-8191-32aa9de50aab,SESCO,II.1.1,Entre Rios,AR-E,annual,2012,bioetanol combustion consumption by to the public,7.025516369999999,TJ,CH4,10.0,kg/TJ,70.2551637,kg -5d86dc32-1d24-3026-af5c-2216f93fc9bd,SESCO,II.1.1,Entre Rios,AR-E,annual,2012,bioetanol combustion consumption by to the public,7.025516369999999,TJ,N2O,0.6,kg/TJ,4.215309821999999,kg -ed36e6b5-12ca-3461-9e47-4f81b40b0210,SESCO,II.1.1,Formosa,AR-P,annual,2012,bioetanol combustion consumption by to the public,2.6841779999999997,TJ,CH4,10.0,kg/TJ,26.841779999999996,kg -860631f6-61e3-34c0-9617-b97069a1f0bf,SESCO,II.1.1,Formosa,AR-P,annual,2012,bioetanol combustion consumption by to the public,2.6841779999999997,TJ,N2O,0.6,kg/TJ,1.6105067999999998,kg -b5cd650a-424e-3eff-b442-bbdeeeb3b421,SESCO,II.1.1,Jujuy,AR-Y,annual,2012,bioetanol combustion consumption by to the public,1.1573919899999998,TJ,CH4,10.0,kg/TJ,11.573919899999998,kg -07eeaebd-6412-3d48-ae59-8afc4edc5b26,SESCO,II.1.1,Jujuy,AR-Y,annual,2012,bioetanol combustion consumption by to the public,1.1573919899999998,TJ,N2O,0.6,kg/TJ,0.6944351939999999,kg -66e38468-07df-3dbd-81eb-b6897f67b15c,SESCO,II.1.1,La Pampa,AR-L,annual,2012,bioetanol combustion consumption by to the public,2.2495968,TJ,CH4,10.0,kg/TJ,22.495967999999998,kg -9acbdf4d-9aa5-338e-8a65-ca3b7e5e0e85,SESCO,II.1.1,La Pampa,AR-L,annual,2012,bioetanol combustion consumption by to the public,2.2495968,TJ,N2O,0.6,kg/TJ,1.34975808,kg -702069ae-9663-3921-97bd-d2ad8123d268,SESCO,II.1.1,La Rioja,AR-F,annual,2012,bioetanol combustion consumption by to the public,1.3727653199999998,TJ,CH4,10.0,kg/TJ,13.727653199999999,kg -a03b6fd6-7367-3b82-aea4-859df53afe8f,SESCO,II.1.1,La Rioja,AR-F,annual,2012,bioetanol combustion consumption by to the public,1.3727653199999998,TJ,N2O,0.6,kg/TJ,0.8236591919999999,kg -d869926b-e1f6-337b-932f-7b1871cbf7f7,SESCO,II.1.1,Mendoza,AR-M,annual,2012,bioetanol combustion consumption by to the public,5.25395889,TJ,CH4,10.0,kg/TJ,52.5395889,kg -7baf598c-343a-3373-bee4-7440bf32f6fb,SESCO,II.1.1,Mendoza,AR-M,annual,2012,bioetanol combustion consumption by to the public,5.25395889,TJ,N2O,0.6,kg/TJ,3.152375334,kg -83430c49-7b7c-30eb-9cce-9abcb747bcac,SESCO,II.1.1,Misiones,AR-N,annual,2012,bioetanol combustion consumption by to the public,3.78916461,TJ,CH4,10.0,kg/TJ,37.891646099999996,kg -5508c6bf-60f8-367b-88df-8c14f2dfbc27,SESCO,II.1.1,Misiones,AR-N,annual,2012,bioetanol combustion consumption by to the public,3.78916461,TJ,N2O,0.6,kg/TJ,2.273498766,kg -da86f360-b460-3add-a9d1-5d196b84ad5d,SESCO,II.1.1,Neuquén,AR-Q,annual,2012,bioetanol combustion consumption by to the public,1.2078801,TJ,CH4,10.0,kg/TJ,12.078800999999999,kg -1fc37899-b375-3796-bce0-51a94bb900a0,SESCO,II.1.1,Neuquén,AR-Q,annual,2012,bioetanol combustion consumption by to the public,1.2078801,TJ,N2O,0.6,kg/TJ,0.7247280599999999,kg -d5ec46cd-15bb-3cc5-8d79-d1758649414f,SESCO,II.1.1,Rio Negro,AR-R,annual,2012,bioetanol combustion consumption by to the public,1.44817794,TJ,CH4,10.0,kg/TJ,14.4817794,kg -39cc5d23-c455-3913-b6f2-560680f7a03e,SESCO,II.1.1,Rio Negro,AR-R,annual,2012,bioetanol combustion consumption by to the public,1.44817794,TJ,N2O,0.6,kg/TJ,0.868906764,kg -4e9b6d56-aff2-3070-bc30-6d7cb32874a0,SESCO,II.1.1,Salta,AR-A,annual,2012,bioetanol combustion consumption by to the public,1.7760311099999997,TJ,CH4,10.0,kg/TJ,17.760311099999996,kg -30c37d2a-996a-3fa2-96fb-5aa7d35a5ccd,SESCO,II.1.1,Salta,AR-A,annual,2012,bioetanol combustion consumption by to the public,1.7760311099999997,TJ,N2O,0.6,kg/TJ,1.0656186659999998,kg -9faa4db2-f4bd-3d3a-a8a3-1821aafb540e,SESCO,II.1.1,San Juan,AR-J,annual,2012,bioetanol combustion consumption by to the public,0.6972471899999999,TJ,CH4,10.0,kg/TJ,6.972471899999999,kg -6d03d807-7c0d-3359-b85a-d6b82a5b7941,SESCO,II.1.1,San Juan,AR-J,annual,2012,bioetanol combustion consumption by to the public,0.6972471899999999,TJ,N2O,0.6,kg/TJ,0.41834831399999994,kg -501e502d-a2af-3729-beca-8c3c20a2ceb1,SESCO,II.1.1,San Luis,AR-D,annual,2012,bioetanol combustion consumption by to the public,0.27736506,TJ,CH4,10.0,kg/TJ,2.7736506,kg -69dce5e2-d20c-37b7-a239-a64ab1d3e79d,SESCO,II.1.1,San Luis,AR-D,annual,2012,bioetanol combustion consumption by to the public,0.27736506,TJ,N2O,0.6,kg/TJ,0.166419036,kg -af137f1c-596f-3968-b354-09cf7b444fda,SESCO,II.1.1,Santa Fe,AR-S,annual,2012,bioetanol combustion consumption by to the public,25.33927941,TJ,CH4,10.0,kg/TJ,253.3927941,kg -84918ed3-19f3-3176-9780-d51f4ad5ac48,SESCO,II.1.1,Santa Fe,AR-S,annual,2012,bioetanol combustion consumption by to the public,25.33927941,TJ,N2O,0.6,kg/TJ,15.203567646,kg -c56e2085-bb26-389e-8eb4-d8ea70d4da56,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2012,bioetanol combustion consumption by to the public,2.3492948399999998,TJ,CH4,10.0,kg/TJ,23.492948399999996,kg -2974dea7-f730-376e-80a6-8854a7d31257,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2012,bioetanol combustion consumption by to the public,2.3492948399999998,TJ,N2O,0.6,kg/TJ,1.409576904,kg -29106317-a1d0-323c-927d-5c5c25ce1b34,SESCO,II.1.1,Tucuman,AR-T,annual,2012,bioetanol combustion consumption by to the public,5.16959901,TJ,CH4,10.0,kg/TJ,51.695990099999996,kg -13c8e603-0590-3d0a-badc-ccfb83755390,SESCO,II.1.1,Tucuman,AR-T,annual,2012,bioetanol combustion consumption by to the public,5.16959901,TJ,N2O,0.6,kg/TJ,3.1017594059999998,kg -b04ac74f-5611-3e3c-9e59-67dde107f64e,SESCO,II.5.1,Buenos Aires,AR-B,annual,2012,bioetanol combustion consumption by agriculture machines,0.09330714,TJ,CH4,10.0,kg/TJ,0.9330714,kg -9df9b8db-b20a-36bd-8b8a-cbc11c3b39a5,SESCO,II.5.1,Buenos Aires,AR-B,annual,2012,bioetanol combustion consumption by agriculture machines,0.09330714,TJ,N2O,0.6,kg/TJ,0.055984283999999995,kg -a1dad0aa-00b3-348c-8d8f-3d245ba8f136,SESCO,II.5.1,Chubut,AR-U,annual,2012,bioetanol combustion consumption by agriculture machines,0.16488521999999997,TJ,CH4,10.0,kg/TJ,1.6488521999999997,kg -93b4131b-d10d-3665-9788-6482369f677d,SESCO,II.5.1,Chubut,AR-U,annual,2012,bioetanol combustion consumption by agriculture machines,0.16488521999999997,TJ,N2O,0.6,kg/TJ,0.09893113199999998,kg -a5fa3882-8874-3d18-a8cd-2641c37bf91a,SESCO,II.5.1,Corrientes,AR-W,annual,2012,bioetanol combustion consumption by agriculture machines,0.014059979999999998,TJ,CH4,10.0,kg/TJ,0.14059979999999997,kg -67c922ef-95cf-37b7-8e8c-3ac22d9c34cc,SESCO,II.5.1,Corrientes,AR-W,annual,2012,bioetanol combustion consumption by agriculture machines,0.014059979999999998,TJ,N2O,0.6,kg/TJ,0.008435987999999998,kg -5bf754ee-c1d8-3b9b-bca3-7c8f046b221f,SESCO,II.5.1,Entre Rios,AR-E,annual,2012,bioetanol combustion consumption by agriculture machines,0.13484799,TJ,CH4,10.0,kg/TJ,1.3484799,kg -b96b695b-bf46-3d69-9854-9181a0962544,SESCO,II.5.1,Entre Rios,AR-E,annual,2012,bioetanol combustion consumption by agriculture machines,0.13484799,TJ,N2O,0.6,kg/TJ,0.08090879399999999,kg -5f3d644e-3b30-38db-a49f-886ba5ecbd35,SESCO,II.5.1,Jujuy,AR-Y,annual,2012,bioetanol combustion consumption by agriculture machines,0.010225439999999999,TJ,CH4,10.0,kg/TJ,0.1022544,kg -acb571aa-4bdc-3a61-ab21-1e9b4461b058,SESCO,II.5.1,Jujuy,AR-Y,annual,2012,bioetanol combustion consumption by agriculture machines,0.010225439999999999,TJ,N2O,0.6,kg/TJ,0.006135263999999999,kg -fef6ec61-5b3c-329a-9f77-0e5488fb2614,SESCO,II.5.1,Salta,AR-A,annual,2012,bioetanol combustion consumption by agriculture machines,0.0038345399999999996,TJ,CH4,10.0,kg/TJ,0.038345399999999995,kg -510fb3a3-1fb6-360d-a5a5-f80f9cf3a773,SESCO,II.5.1,Salta,AR-A,annual,2012,bioetanol combustion consumption by agriculture machines,0.0038345399999999996,TJ,N2O,0.6,kg/TJ,0.0023007239999999997,kg -51f03009-7995-30b1-a6a8-8729547fa5ca,SESCO,II.5.1,Santa Fe,AR-S,annual,2012,bioetanol combustion consumption by agriculture machines,1.6584385499999998,TJ,CH4,10.0,kg/TJ,16.5843855,kg -45c1032f-bdc5-37fb-9221-d02e9760a0ba,SESCO,II.5.1,Santa Fe,AR-S,annual,2012,bioetanol combustion consumption by agriculture machines,1.6584385499999998,TJ,N2O,0.6,kg/TJ,0.9950631299999999,kg -da886a95-e7ca-3eae-bd59-514c122cb427,SESCO,II.5.1,Santiago del Estero,AR-G,annual,2012,bioetanol combustion consumption by agriculture machines,0.009586349999999999,TJ,CH4,10.0,kg/TJ,0.09586349999999999,kg -0462b924-4943-36bb-80f6-06bed45456fa,SESCO,II.5.1,Santiago del Estero,AR-G,annual,2012,bioetanol combustion consumption by agriculture machines,0.009586349999999999,TJ,N2O,0.6,kg/TJ,0.005751809999999999,kg -78a514d5-efb8-3371-9e30-1060c4171bd1,SESCO,II.5.1,Buenos Aires,AR-B,annual,2012,bioetanol combustion consumption by agriculture machines,0.019172699999999997,TJ,CH4,10.0,kg/TJ,0.19172699999999998,kg -8005a4c2-c186-3fd0-ac83-fce585976a19,SESCO,II.5.1,Buenos Aires,AR-B,annual,2012,bioetanol combustion consumption by agriculture machines,0.019172699999999997,TJ,N2O,0.6,kg/TJ,0.011503619999999997,kg -028f1cb8-53b8-3471-a1e6-92f480195ee1,SESCO,II.5.1,Santa Fe,AR-S,annual,2012,bioetanol combustion consumption by agriculture machines,0.023646329999999997,TJ,CH4,10.0,kg/TJ,0.23646329999999996,kg -0ed95317-8ae2-3a0c-ac67-684a53cc076a,SESCO,II.5.1,Santa Fe,AR-S,annual,2012,bioetanol combustion consumption by agriculture machines,0.023646329999999997,TJ,N2O,0.6,kg/TJ,0.014187797999999998,kg -2f068e02-12b6-3937-97c9-dba13437e4ad,SESCO,II.1.1,Buenos Aires,AR-B,annual,2012,bioetanol combustion consumption by to the public,0.045375389999999995,TJ,CH4,10.0,kg/TJ,0.45375389999999993,kg -99c1e360-3b45-3d4d-8846-c90557bc30ff,SESCO,II.1.1,Buenos Aires,AR-B,annual,2012,bioetanol combustion consumption by to the public,0.045375389999999995,TJ,N2O,0.6,kg/TJ,0.027225233999999997,kg -2e1bf3ec-c36c-3825-aa7a-0ae9b76183b9,SESCO,II.1.1,Capital Federal,AR-C,annual,2012,bioetanol combustion consumption by to the public,0.029398139999999996,TJ,CH4,10.0,kg/TJ,0.29398139999999995,kg -6bcef442-bb9b-3dc3-a91a-c279ae5e2320,SESCO,II.1.1,Capital Federal,AR-C,annual,2012,bioetanol combustion consumption by to the public,0.029398139999999996,TJ,N2O,0.6,kg/TJ,0.017638883999999997,kg -70032bdf-3396-3e27-b7b7-0afc66fecad9,SESCO,II.1.1,Córdoba,AR-X,annual,2012,bioetanol combustion consumption by to the public,0.0127818,TJ,CH4,10.0,kg/TJ,0.127818,kg -5d02d840-b899-3c18-ae39-9f02f2fc726c,SESCO,II.1.1,Córdoba,AR-X,annual,2012,bioetanol combustion consumption by to the public,0.0127818,TJ,N2O,0.6,kg/TJ,0.007669079999999999,kg -111340e8-289f-345b-a43c-d8bab93af8e0,SESCO,II.1.1,Buenos Aires,AR-B,annual,2012,bioetanol combustion consumption by to the public,684.7363641599999,TJ,CH4,10.0,kg/TJ,6847.363641599999,kg -f7e37394-3bb5-3b85-8be8-72a284c3a2f9,SESCO,II.1.1,Buenos Aires,AR-B,annual,2012,bioetanol combustion consumption by to the public,684.7363641599999,TJ,N2O,0.6,kg/TJ,410.8418184959999,kg -af41656e-7ba5-3973-9c1c-f8f6cb04e479,SESCO,II.1.1,Capital Federal,AR-C,annual,2012,bioetanol combustion consumption by to the public,142.94334302999997,TJ,CH4,10.0,kg/TJ,1429.4334302999996,kg -a45dbed9-ad3c-3dd7-98d5-72f7a1017bc9,SESCO,II.1.1,Capital Federal,AR-C,annual,2012,bioetanol combustion consumption by to the public,142.94334302999997,TJ,N2O,0.6,kg/TJ,85.76600581799998,kg -bb708961-d9df-3116-bc5d-84b8aac924db,SESCO,II.1.1,Catamarca,AR-K,annual,2012,bioetanol combustion consumption by to the public,11.152120499999999,TJ,CH4,10.0,kg/TJ,111.52120499999998,kg -c3b43f7d-302d-3199-88b9-6a2b6e8e3c7c,SESCO,II.1.1,Catamarca,AR-K,annual,2012,bioetanol combustion consumption by to the public,11.152120499999999,TJ,N2O,0.6,kg/TJ,6.691272299999999,kg -dd00c466-e354-37c2-b326-27a1e24402fc,SESCO,II.1.1,Chaco,AR-H,annual,2012,bioetanol combustion consumption by to the public,36.726585029999995,TJ,CH4,10.0,kg/TJ,367.26585029999995,kg -ff457d77-0b3b-34cc-b6ac-045624e3ac51,SESCO,II.1.1,Chaco,AR-H,annual,2012,bioetanol combustion consumption by to the public,36.726585029999995,TJ,N2O,0.6,kg/TJ,22.035951017999995,kg -3762e4be-62e8-35ab-9fc6-85e23ca46368,SESCO,II.1.1,Chubut,AR-U,annual,2012,bioetanol combustion consumption by to the public,67.25335797,TJ,CH4,10.0,kg/TJ,672.5335797,kg -96da2829-1d8c-3a96-ba53-8f4f71556dfd,SESCO,II.1.1,Chubut,AR-U,annual,2012,bioetanol combustion consumption by to the public,67.25335797,TJ,N2O,0.6,kg/TJ,40.352014782,kg -d8e7dc7f-8b95-3c45-a567-76658f8e173c,SESCO,II.1.1,Corrientes,AR-W,annual,2012,bioetanol combustion consumption by to the public,41.37852114,TJ,CH4,10.0,kg/TJ,413.7852114,kg -082a15fe-2afc-3fbb-bb18-88fd02d78e4d,SESCO,II.1.1,Corrientes,AR-W,annual,2012,bioetanol combustion consumption by to the public,41.37852114,TJ,N2O,0.6,kg/TJ,24.827112683999996,kg -be58ffdf-67e7-3666-9e35-93c7cfcf97cf,SESCO,II.1.1,Córdoba,AR-X,annual,2012,bioetanol combustion consumption by to the public,170.63958635999998,TJ,CH4,10.0,kg/TJ,1706.3958635999998,kg -67023a80-fd8a-367b-8eb8-d61de736cb3a,SESCO,II.1.1,Córdoba,AR-X,annual,2012,bioetanol combustion consumption by to the public,170.63958635999998,TJ,N2O,0.6,kg/TJ,102.38375181599999,kg -96c3d8cd-8cef-39d9-9433-84a80758f040,SESCO,II.1.1,Entre Rios,AR-E,annual,2012,bioetanol combustion consumption by to the public,49.16838914999999,TJ,CH4,10.0,kg/TJ,491.6838914999999,kg -d4d59820-d46c-3137-86cc-290148b5b8c2,SESCO,II.1.1,Entre Rios,AR-E,annual,2012,bioetanol combustion consumption by to the public,49.16838914999999,TJ,N2O,0.6,kg/TJ,29.50103348999999,kg -17683d93-19b0-38d6-bc9d-854a4e36ce3a,SESCO,II.1.1,Formosa,AR-P,annual,2012,bioetanol combustion consumption by to the public,14.910608789999998,TJ,CH4,10.0,kg/TJ,149.10608789999998,kg -70c60ed5-e62b-3612-abac-9b58954a7595,SESCO,II.1.1,Formosa,AR-P,annual,2012,bioetanol combustion consumption by to the public,14.910608789999998,TJ,N2O,0.6,kg/TJ,8.946365273999998,kg -bc3ce2e3-3f7a-3b60-837d-26b2164c31a4,SESCO,II.1.1,Jujuy,AR-Y,annual,2012,bioetanol combustion consumption by to the public,17.9648199,TJ,CH4,10.0,kg/TJ,179.64819899999998,kg -76aff9a3-ed9d-37be-b741-d5931b99c41d,SESCO,II.1.1,Jujuy,AR-Y,annual,2012,bioetanol combustion consumption by to the public,17.9648199,TJ,N2O,0.6,kg/TJ,10.77889194,kg -295b9a7c-84db-30a9-bec9-f19d3d4dee48,SESCO,II.1.1,La Pampa,AR-L,annual,2012,bioetanol combustion consumption by to the public,29.524040729999996,TJ,CH4,10.0,kg/TJ,295.24040729999996,kg -a7647a27-6d02-3181-80c8-0bdf971e47b6,SESCO,II.1.1,La Pampa,AR-L,annual,2012,bioetanol combustion consumption by to the public,29.524040729999996,TJ,N2O,0.6,kg/TJ,17.714424437999998,kg -472f2032-f768-35a9-9bff-a97d3c8f2515,SESCO,II.1.1,La Rioja,AR-F,annual,2012,bioetanol combustion consumption by to the public,15.276168269999998,TJ,CH4,10.0,kg/TJ,152.76168269999997,kg -9d29dae1-2d8f-397f-b0db-4cd4de42dd0d,SESCO,II.1.1,La Rioja,AR-F,annual,2012,bioetanol combustion consumption by to the public,15.276168269999998,TJ,N2O,0.6,kg/TJ,9.165700961999999,kg -a7035361-0604-3a47-a083-850fa079c895,SESCO,II.1.1,Mendoza,AR-M,annual,2012,bioetanol combustion consumption by to the public,86.71428756,TJ,CH4,10.0,kg/TJ,867.1428756,kg -0cde2adb-1840-3f44-8f56-efb9376a671f,SESCO,II.1.1,Mendoza,AR-M,annual,2012,bioetanol combustion consumption by to the public,86.71428756,TJ,N2O,0.6,kg/TJ,52.028572536,kg -27943592-d02a-3430-ad72-d133b5e2e36a,SESCO,II.1.1,Misiones,AR-N,annual,2012,bioetanol combustion consumption by to the public,51.39497870999999,TJ,CH4,10.0,kg/TJ,513.9497870999999,kg -5f6e7d86-1ce7-3fce-ac64-e61a0d5a1a4a,SESCO,II.1.1,Misiones,AR-N,annual,2012,bioetanol combustion consumption by to the public,51.39497870999999,TJ,N2O,0.6,kg/TJ,30.83698722599999,kg -45e26085-b8e0-35ee-a269-8cf53bded976,SESCO,II.1.1,Neuquén,AR-Q,annual,2012,bioetanol combustion consumption by to the public,53.51931387,TJ,CH4,10.0,kg/TJ,535.1931387,kg -ac155550-2b8c-3caa-81c4-6311a727b0bd,SESCO,II.1.1,Neuquén,AR-Q,annual,2012,bioetanol combustion consumption by to the public,53.51931387,TJ,N2O,0.6,kg/TJ,32.111588321999996,kg -1135427b-cc61-3c40-967c-842bab0cff56,SESCO,II.1.1,Rio Negro,AR-R,annual,2012,bioetanol combustion consumption by to the public,51.66211833,TJ,CH4,10.0,kg/TJ,516.6211833,kg -b3a5404e-e1a6-3fcb-bce9-9575a5c30577,SESCO,II.1.1,Rio Negro,AR-R,annual,2012,bioetanol combustion consumption by to the public,51.66211833,TJ,N2O,0.6,kg/TJ,30.997270997999998,kg -fa30e247-4759-331c-8c3c-f9240096ef3b,SESCO,II.1.1,Salta,AR-A,annual,2012,bioetanol combustion consumption by to the public,40.243497299999994,TJ,CH4,10.0,kg/TJ,402.43497299999996,kg -6041c035-2a78-3784-b2f8-41a7c5e93a0f,SESCO,II.1.1,Salta,AR-A,annual,2012,bioetanol combustion consumption by to the public,40.243497299999994,TJ,N2O,0.6,kg/TJ,24.146098379999994,kg -ca5d2774-dc23-37bb-9303-acb0df27038f,SESCO,II.1.1,San Juan,AR-J,annual,2012,bioetanol combustion consumption by to the public,25.92468585,TJ,CH4,10.0,kg/TJ,259.2468585,kg -bea6348c-dc75-3ab2-afd3-669a7d2575dd,SESCO,II.1.1,San Juan,AR-J,annual,2012,bioetanol combustion consumption by to the public,25.92468585,TJ,N2O,0.6,kg/TJ,15.554811509999999,kg -5ad0d0bb-6952-3562-8c44-104bb857ba86,SESCO,II.1.1,San Luis,AR-D,annual,2012,bioetanol combustion consumption by to the public,21.440191319999997,TJ,CH4,10.0,kg/TJ,214.40191319999997,kg -b163852b-c6b8-3fba-8d51-f9b9401f159b,SESCO,II.1.1,San Luis,AR-D,annual,2012,bioetanol combustion consumption by to the public,21.440191319999997,TJ,N2O,0.6,kg/TJ,12.864114791999997,kg -85759f73-7250-301d-87d1-327eefb6ea90,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2012,bioetanol combustion consumption by to the public,47.94133634999999,TJ,CH4,10.0,kg/TJ,479.41336349999995,kg -42089089-adce-31dc-be47-7bf409e7e58e,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2012,bioetanol combustion consumption by to the public,47.94133634999999,TJ,N2O,0.6,kg/TJ,28.764801809999994,kg -91780f50-44cb-3d6c-890c-c1b4dd0d9fe6,SESCO,II.1.1,Santa Fe,AR-S,annual,2012,bioetanol combustion consumption by to the public,124.19819423999999,TJ,CH4,10.0,kg/TJ,1241.9819424,kg -4e91469d-6f2a-3208-b624-c832217d8acf,SESCO,II.1.1,Santa Fe,AR-S,annual,2012,bioetanol combustion consumption by to the public,124.19819423999999,TJ,N2O,0.6,kg/TJ,74.51891654399999,kg -8f926e91-bc64-3f94-a5bf-b5209c29e502,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2012,bioetanol combustion consumption by to the public,18.185945039999996,TJ,CH4,10.0,kg/TJ,181.85945039999996,kg -630d6754-75a5-3ae9-9840-d6b6a8c5910d,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2012,bioetanol combustion consumption by to the public,18.185945039999996,TJ,N2O,0.6,kg/TJ,10.911567023999998,kg -791b7a1a-4b42-32bd-b644-cf685d95134b,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2012,bioetanol combustion consumption by to the public,35.213859,TJ,CH4,10.0,kg/TJ,352.13859,kg -523c7577-595c-3150-b244-494c6af604c6,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2012,bioetanol combustion consumption by to the public,35.213859,TJ,N2O,0.6,kg/TJ,21.128315399999998,kg -e71d487d-004b-328a-8b4d-915c231d8fcf,SESCO,II.1.1,Tucuman,AR-T,annual,2012,bioetanol combustion consumption by to the public,34.17725502,TJ,CH4,10.0,kg/TJ,341.77255019999996,kg -f79174ca-627c-33b7-8e32-5e0fcbd0c5d0,SESCO,II.1.1,Tucuman,AR-T,annual,2012,bioetanol combustion consumption by to the public,34.17725502,TJ,N2O,0.6,kg/TJ,20.506353011999998,kg -626bd6b2-ebec-3f9d-9553-0056b7b7660b,SESCO,II.1.1,Buenos Aires,AR-B,annual,2012,bioetanol combustion consumption by to the public,267.6572829,TJ,CH4,10.0,kg/TJ,2676.5728289999997,kg -12139fbc-f218-3a4d-ab21-66e12034cefa,SESCO,II.1.1,Buenos Aires,AR-B,annual,2012,bioetanol combustion consumption by to the public,267.6572829,TJ,N2O,0.6,kg/TJ,160.59436974,kg -a35d182d-13d7-3f21-ba01-f5fd51fecf7f,SESCO,II.1.1,Capital Federal,AR-C,annual,2012,bioetanol combustion consumption by to the public,56.8662282,TJ,CH4,10.0,kg/TJ,568.662282,kg -a5cab2c4-c824-31f1-a181-d669bbf3628a,SESCO,II.1.1,Capital Federal,AR-C,annual,2012,bioetanol combustion consumption by to the public,56.8662282,TJ,N2O,0.6,kg/TJ,34.11973692,kg -b25ae136-9250-36c3-a0e7-4e16cda0265f,SESCO,II.1.1,Catamarca,AR-K,annual,2012,bioetanol combustion consumption by to the public,4.03777062,TJ,CH4,10.0,kg/TJ,40.3777062,kg -d28bebe6-6e10-3390-94ad-856493e9814c,SESCO,II.1.1,Catamarca,AR-K,annual,2012,bioetanol combustion consumption by to the public,4.03777062,TJ,N2O,0.6,kg/TJ,2.422662372,kg -6fa67767-6306-38ff-8101-41a683b5307a,SESCO,II.1.1,Chaco,AR-H,annual,2012,bioetanol combustion consumption by to the public,15.001359569999998,TJ,CH4,10.0,kg/TJ,150.0135957,kg -74a6f6c6-f911-367a-9c60-30b28199ce8b,SESCO,II.1.1,Chaco,AR-H,annual,2012,bioetanol combustion consumption by to the public,15.001359569999998,TJ,N2O,0.6,kg/TJ,9.000815741999999,kg -1dc2314f-9f18-38b8-9e85-6bc25277a9d7,SESCO,II.1.1,Chubut,AR-U,annual,2012,bioetanol combustion consumption by to the public,19.40405058,TJ,CH4,10.0,kg/TJ,194.0405058,kg -f64cc137-9d64-31f6-8e7d-0b8e14e3acdc,SESCO,II.1.1,Chubut,AR-U,annual,2012,bioetanol combustion consumption by to the public,19.40405058,TJ,N2O,0.6,kg/TJ,11.642430348,kg -c9d0a94d-5f7f-342b-bfdd-1d88c3fd3b80,SESCO,II.1.1,Corrientes,AR-W,annual,2012,bioetanol combustion consumption by to the public,13.379349149999998,TJ,CH4,10.0,kg/TJ,133.7934915,kg -ca5a820f-66c5-31cd-905b-f0078b5298a4,SESCO,II.1.1,Corrientes,AR-W,annual,2012,bioetanol combustion consumption by to the public,13.379349149999998,TJ,N2O,0.6,kg/TJ,8.027609489999998,kg -24bf3f6d-ddff-3274-ba4c-ac8544c9b3f6,SESCO,II.1.1,Córdoba,AR-X,annual,2012,bioetanol combustion consumption by to the public,68.22157932,TJ,CH4,10.0,kg/TJ,682.2157932,kg -81c47a17-5865-34ca-add9-f0b6595b1a3b,SESCO,II.1.1,Córdoba,AR-X,annual,2012,bioetanol combustion consumption by to the public,68.22157932,TJ,N2O,0.6,kg/TJ,40.932947592,kg -ed1df8ff-f7c1-3ba0-b40c-ac8eb1a70b56,SESCO,II.1.1,Entre Rios,AR-E,annual,2012,bioetanol combustion consumption by to the public,21.98341782,TJ,CH4,10.0,kg/TJ,219.8341782,kg -43475a13-6bdc-35b8-9200-b624a76dfe1e,SESCO,II.1.1,Entre Rios,AR-E,annual,2012,bioetanol combustion consumption by to the public,21.98341782,TJ,N2O,0.6,kg/TJ,13.190050692,kg -28fd84f3-f9fe-374c-ba3e-9a376f40a08a,SESCO,II.1.1,Formosa,AR-P,annual,2012,bioetanol combustion consumption by to the public,4.5778016699999995,TJ,CH4,10.0,kg/TJ,45.778016699999995,kg -7912957b-7de9-3730-a99c-658f5db2ceff,SESCO,II.1.1,Formosa,AR-P,annual,2012,bioetanol combustion consumption by to the public,4.5778016699999995,TJ,N2O,0.6,kg/TJ,2.7466810019999994,kg -0e8e59e3-ea2b-3a56-99ec-6685df1548c9,SESCO,II.1.1,Jujuy,AR-Y,annual,2012,bioetanol combustion consumption by to the public,5.82658353,TJ,CH4,10.0,kg/TJ,58.2658353,kg -e3eca777-321f-3626-8217-899a51c1cf4c,SESCO,II.1.1,Jujuy,AR-Y,annual,2012,bioetanol combustion consumption by to the public,5.82658353,TJ,N2O,0.6,kg/TJ,3.4959501179999997,kg -88a0df83-78dc-3066-b0e8-794609f283dc,SESCO,II.1.1,La Pampa,AR-L,annual,2012,bioetanol combustion consumption by to the public,11.14636869,TJ,CH4,10.0,kg/TJ,111.4636869,kg -0ce298c0-c8cf-3aad-8faf-6cb1001969fa,SESCO,II.1.1,La Pampa,AR-L,annual,2012,bioetanol combustion consumption by to the public,11.14636869,TJ,N2O,0.6,kg/TJ,6.6878212139999995,kg -45bd30fc-ac21-3b1b-8358-68467d3ba788,SESCO,II.1.1,La Rioja,AR-F,annual,2012,bioetanol combustion consumption by to the public,5.9633487899999995,TJ,CH4,10.0,kg/TJ,59.63348789999999,kg -6528c433-cb90-345f-aeaf-4621eea5f4f9,SESCO,II.1.1,La Rioja,AR-F,annual,2012,bioetanol combustion consumption by to the public,5.9633487899999995,TJ,N2O,0.6,kg/TJ,3.578009274,kg -d5a5e364-d97c-30cf-911f-4d6077a5069b,SESCO,II.1.1,Mendoza,AR-M,annual,2012,bioetanol combustion consumption by to the public,33.44613606,TJ,CH4,10.0,kg/TJ,334.46136060000003,kg -034f2493-27f4-3d8b-8d25-63b9a8e45fb3,SESCO,II.1.1,Mendoza,AR-M,annual,2012,bioetanol combustion consumption by to the public,33.44613606,TJ,N2O,0.6,kg/TJ,20.067681636,kg -2b6a7ad6-12a4-3bf3-8dca-8964c0f4c441,SESCO,II.1.1,Misiones,AR-N,annual,2012,bioetanol combustion consumption by to the public,16.9870122,TJ,CH4,10.0,kg/TJ,169.87012199999998,kg -5f03c8af-16ae-35dd-9acf-5afb199c407f,SESCO,II.1.1,Misiones,AR-N,annual,2012,bioetanol combustion consumption by to the public,16.9870122,TJ,N2O,0.6,kg/TJ,10.19220732,kg -4ed20c14-1b5c-3385-90bf-8389c7f1a07d,SESCO,II.1.1,Neuquén,AR-Q,annual,2012,bioetanol combustion consumption by to the public,17.385165269999998,TJ,CH4,10.0,kg/TJ,173.8516527,kg -e4b66c70-cb0e-31e6-8ef3-9473dbc90c29,SESCO,II.1.1,Neuquén,AR-Q,annual,2012,bioetanol combustion consumption by to the public,17.385165269999998,TJ,N2O,0.6,kg/TJ,10.431099161999999,kg -31061a8c-606c-3ff9-9621-b282ecb6696f,SESCO,II.1.1,Rio Negro,AR-R,annual,2012,bioetanol combustion consumption by to the public,16.62976089,TJ,CH4,10.0,kg/TJ,166.2976089,kg -b83f604e-856c-38c5-b38b-e9a4af2f101b,SESCO,II.1.1,Rio Negro,AR-R,annual,2012,bioetanol combustion consumption by to the public,16.62976089,TJ,N2O,0.6,kg/TJ,9.977856533999999,kg -d9061bc5-bc6f-37ca-aee7-68cccb8843be,SESCO,II.1.1,Salta,AR-A,annual,2012,bioetanol combustion consumption by to the public,14.73613722,TJ,CH4,10.0,kg/TJ,147.3613722,kg -d3320e51-ac1a-3cd2-9eed-5546d8e4921d,SESCO,II.1.1,Salta,AR-A,annual,2012,bioetanol combustion consumption by to the public,14.73613722,TJ,N2O,0.6,kg/TJ,8.841682332,kg -dd3624a3-2b17-3942-82f9-52733c65490a,SESCO,II.1.1,San Juan,AR-J,annual,2012,bioetanol combustion consumption by to the public,10.674720269999998,TJ,CH4,10.0,kg/TJ,106.74720269999997,kg -956c11e6-e150-31fe-b806-16c2a50316f0,SESCO,II.1.1,San Juan,AR-J,annual,2012,bioetanol combustion consumption by to the public,10.674720269999998,TJ,N2O,0.6,kg/TJ,6.404832161999999,kg -adcc71e5-75a7-3003-ad24-09bc532c7e0f,SESCO,II.1.1,San Luis,AR-D,annual,2012,bioetanol combustion consumption by to the public,10.055442059999999,TJ,CH4,10.0,kg/TJ,100.55442059999999,kg -cdf206b2-f3e2-3419-ad96-468cc79936d1,SESCO,II.1.1,San Luis,AR-D,annual,2012,bioetanol combustion consumption by to the public,10.055442059999999,TJ,N2O,0.6,kg/TJ,6.033265235999999,kg -f2684841-c306-3f37-bf78-1322c4f8cefd,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2012,bioetanol combustion consumption by to the public,10.253559959999999,TJ,CH4,10.0,kg/TJ,102.53559959999998,kg -754e012d-ebac-30a6-86f5-0b2055443c56,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2012,bioetanol combustion consumption by to the public,10.253559959999999,TJ,N2O,0.6,kg/TJ,6.152135975999999,kg -85e3d269-071d-30e4-823e-68bdce0028de,SESCO,II.1.1,Santa Fe,AR-S,annual,2012,bioetanol combustion consumption by to the public,56.57991588,TJ,CH4,10.0,kg/TJ,565.7991588,kg -70006afd-5d6c-315e-996f-436b7a071793,SESCO,II.1.1,Santa Fe,AR-S,annual,2012,bioetanol combustion consumption by to the public,56.57991588,TJ,N2O,0.6,kg/TJ,33.947949528,kg -90bba178-e8f4-33f4-b4cb-5b5c9a921824,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2012,bioetanol combustion consumption by to the public,10.49833143,TJ,CH4,10.0,kg/TJ,104.9833143,kg -c1fdaf5d-c3aa-30c7-8fe2-004b738ca3ab,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2012,bioetanol combustion consumption by to the public,10.49833143,TJ,N2O,0.6,kg/TJ,6.298998858,kg -8ba2ebf7-3b18-3151-b2c8-2b47e54756bb,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2012,bioetanol combustion consumption by to the public,0.81931338,TJ,CH4,10.0,kg/TJ,8.1931338,kg -0df7ffc9-3da0-3341-8c5f-880e981ef983,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2012,bioetanol combustion consumption by to the public,0.81931338,TJ,N2O,0.6,kg/TJ,0.49158802799999995,kg -423c8e6e-e495-3728-8234-edc766ae5276,SESCO,II.1.1,Tucuman,AR-T,annual,2012,bioetanol combustion consumption by to the public,14.420426759999998,TJ,CH4,10.0,kg/TJ,144.20426759999998,kg -58a085f7-70b1-3370-9cdf-c2f1963ffc51,SESCO,II.1.1,Tucuman,AR-T,annual,2012,bioetanol combustion consumption by to the public,14.420426759999998,TJ,N2O,0.6,kg/TJ,8.652256055999999,kg -d75d7594-d85b-387c-bb0c-b9a8b94424e9,SESCO,II.1.1,Buenos Aires,AR-B,annual,2012,bioetanol combustion consumption by freight transport,0.20259153,TJ,CH4,10.0,kg/TJ,2.0259153,kg -511e067b-cd76-30ec-8bf0-4285969dc4d6,SESCO,II.1.1,Buenos Aires,AR-B,annual,2012,bioetanol combustion consumption by freight transport,0.20259153,TJ,N2O,0.6,kg/TJ,0.12155491799999998,kg -894dd03e-c24d-336e-9557-0e9756250710,SESCO,II.1.1,Capital Federal,AR-C,annual,2013,bioetanol combustion consumption by to the public,1.40727618,TJ,CH4,10.0,kg/TJ,14.0727618,kg -c4072d95-ced1-33fd-bcc0-b25333926294,SESCO,II.1.1,Capital Federal,AR-C,annual,2013,bioetanol combustion consumption by to the public,1.40727618,TJ,N2O,0.6,kg/TJ,0.844365708,kg -b67342c8-8bdd-3f41-a48f-701799fc39c5,SESCO,II.1.1,Capital Federal,AR-C,annual,2013,bioetanol combustion consumption by to the public,0.23007239999999995,TJ,CH4,10.0,kg/TJ,2.3007239999999998,kg -f924b7a6-2e11-3072-9e8b-307ef7209168,SESCO,II.1.1,Capital Federal,AR-C,annual,2013,bioetanol combustion consumption by to the public,0.23007239999999995,TJ,N2O,0.6,kg/TJ,0.13804343999999996,kg -e87b01ff-21b2-357d-9e2a-248ab75c3706,SESCO,II.5.1,Buenos Aires,AR-B,annual,2013,bioetanol combustion consumption by agriculture machines,0.1922638356,TJ,CH4,10.0,kg/TJ,1.9226383559999998,kg -f4d85c00-a412-3844-9820-1a7652ead558,SESCO,II.5.1,Buenos Aires,AR-B,annual,2013,bioetanol combustion consumption by agriculture machines,0.1922638356,TJ,N2O,0.6,kg/TJ,0.11535830135999998,kg -603ed77f-21f2-3874-a716-72f871cabdd0,SESCO,II.5.1,Córdoba,AR-X,annual,2013,bioetanol combustion consumption by agriculture machines,0.21371169599999995,TJ,CH4,10.0,kg/TJ,2.1371169599999993,kg -c7c29a54-ed36-3cc7-93ed-4f718858a727,SESCO,II.5.1,Córdoba,AR-X,annual,2013,bioetanol combustion consumption by agriculture machines,0.21371169599999995,TJ,N2O,0.6,kg/TJ,0.12822701759999997,kg -65baeaca-ae2d-3975-9293-82be50056f1f,SESCO,II.5.1,Santa Fe,AR-S,annual,2013,bioetanol combustion consumption by agriculture machines,0.6551950679999999,TJ,CH4,10.0,kg/TJ,6.551950679999999,kg -47f3f8cd-28e4-376c-9a63-9f342bfd5ed2,SESCO,II.5.1,Santa Fe,AR-S,annual,2013,bioetanol combustion consumption by agriculture machines,0.6551950679999999,TJ,N2O,0.6,kg/TJ,0.39311704079999993,kg -c72af6ee-6017-3266-a3cc-8342eb65c523,SESCO,II.5.1,Buenos Aires,AR-B,annual,2013,bioetanol combustion consumption by agriculture machines,0.008947259999999999,TJ,CH4,10.0,kg/TJ,0.08947259999999999,kg -248716d4-f2f9-3f38-8a3d-9ac9a8b2e856,SESCO,II.5.1,Buenos Aires,AR-B,annual,2013,bioetanol combustion consumption by agriculture machines,0.008947259999999999,TJ,N2O,0.6,kg/TJ,0.005368355999999999,kg -7fddd2ca-a5f1-3f59-ba66-558ea88c33b1,SESCO,II.5.1,Capital Federal,AR-C,annual,2013,bioetanol combustion consumption by agriculture machines,0.0010864529999999998,TJ,CH4,10.0,kg/TJ,0.010864529999999997,kg -b83dc7e3-550f-304f-8514-497e2526369c,SESCO,II.5.1,Capital Federal,AR-C,annual,2013,bioetanol combustion consumption by agriculture machines,0.0010864529999999998,TJ,N2O,0.6,kg/TJ,0.0006518717999999999,kg -9f066f36-6d65-3a2a-8079-9584c21d20fc,SESCO,II.5.1,Córdoba,AR-X,annual,2013,bioetanol combustion consumption by agriculture machines,0.11069038799999999,TJ,CH4,10.0,kg/TJ,1.10690388,kg -e4873f57-9b4d-362d-83bc-34f99bcf0ef2,SESCO,II.5.1,Córdoba,AR-X,annual,2013,bioetanol combustion consumption by agriculture machines,0.11069038799999999,TJ,N2O,0.6,kg/TJ,0.06641423279999999,kg -c3910823-f79a-3078-8be6-5d53561b0d14,SESCO,II.5.1,Santa Fe,AR-S,annual,2013,bioetanol combustion consumption by agriculture machines,0.048698658,TJ,CH4,10.0,kg/TJ,0.48698658,kg -2c24b376-b959-356f-9101-36f3723bfeec,SESCO,II.5.1,Santa Fe,AR-S,annual,2013,bioetanol combustion consumption by agriculture machines,0.048698658,TJ,N2O,0.6,kg/TJ,0.029219194799999997,kg -1f09a48e-9100-367d-ab52-0f29ee533ed4,SESCO,II.1.1,Buenos Aires,AR-B,annual,2013,bioetanol combustion consumption by to the public,0.07796898,TJ,CH4,10.0,kg/TJ,0.7796897999999999,kg -67634009-abbd-30a6-b52c-1bea1a72b5cb,SESCO,II.1.1,Buenos Aires,AR-B,annual,2013,bioetanol combustion consumption by to the public,0.07796898,TJ,N2O,0.6,kg/TJ,0.04678138799999999,kg -7ce66b5b-596c-3ad5-84a9-0cb2fd3699aa,SESCO,II.1.1,Entre Rios,AR-E,annual,2013,bioetanol combustion consumption by to the public,0.0063909,TJ,CH4,10.0,kg/TJ,0.063909,kg -81b32ab8-ee79-3336-82f5-f789485d7ae8,SESCO,II.1.1,Entre Rios,AR-E,annual,2013,bioetanol combustion consumption by to the public,0.0063909,TJ,N2O,0.6,kg/TJ,0.0038345399999999996,kg -b397c06b-5236-31de-97fd-091da0b60faf,SESCO,II.1.1,Santa Fe,AR-S,annual,2013,bioetanol combustion consumption by to the public,0.008947259999999999,TJ,CH4,10.0,kg/TJ,0.08947259999999999,kg -520e5680-5b76-3fc9-942e-e1ded6e8ac9b,SESCO,II.1.1,Santa Fe,AR-S,annual,2013,bioetanol combustion consumption by to the public,0.008947259999999999,TJ,N2O,0.6,kg/TJ,0.005368355999999999,kg -9877808a-7119-3ded-8a68-cd1bc984c27c,SESCO,II.1.1,Buenos Aires,AR-B,annual,2013,bioetanol combustion consumption by to the public,334.6571522124,TJ,CH4,10.0,kg/TJ,3346.571522124,kg -b3d9883a-9406-3134-81a3-5813f327c3d0,SESCO,II.1.1,Buenos Aires,AR-B,annual,2013,bioetanol combustion consumption by to the public,334.6571522124,TJ,N2O,0.6,kg/TJ,200.79429132744,kg -268bb23f-68c6-3c41-a509-ab46bb6d9934,SESCO,II.1.1,Capital Federal,AR-C,annual,2013,bioetanol combustion consumption by to the public,114.5704056444,TJ,CH4,10.0,kg/TJ,1145.704056444,kg -db8081d2-4732-3ab4-9950-821c0bb69726,SESCO,II.1.1,Capital Federal,AR-C,annual,2013,bioetanol combustion consumption by to the public,114.5704056444,TJ,N2O,0.6,kg/TJ,68.74224338664,kg -0c776f6c-11b3-3c44-a477-2f83f22fe1d0,SESCO,II.1.1,Catamarca,AR-K,annual,2013,bioetanol combustion consumption by to the public,15.631400055599999,TJ,CH4,10.0,kg/TJ,156.314000556,kg -ac7141d6-4493-3438-abbe-27c13beac5ea,SESCO,II.1.1,Catamarca,AR-K,annual,2013,bioetanol combustion consumption by to the public,15.631400055599999,TJ,N2O,0.6,kg/TJ,9.37884003336,kg -966c1d62-33bb-3b36-9a16-c466de6012c6,SESCO,II.1.1,Chaco,AR-H,annual,2013,bioetanol combustion consumption by to the public,18.1679099202,TJ,CH4,10.0,kg/TJ,181.679099202,kg -23bfc469-88c0-344b-9ad9-883b33704475,SESCO,II.1.1,Chaco,AR-H,annual,2013,bioetanol combustion consumption by to the public,18.1679099202,TJ,N2O,0.6,kg/TJ,10.90074595212,kg -a5fda2f8-d122-3094-969d-35b0f17091ce,SESCO,II.1.1,Chubut,AR-U,annual,2013,bioetanol combustion consumption by to the public,13.171210318799998,TJ,CH4,10.0,kg/TJ,131.712103188,kg -9e497465-9983-3dc7-bf70-238c1a07ebb4,SESCO,II.1.1,Chubut,AR-U,annual,2013,bioetanol combustion consumption by to the public,13.171210318799998,TJ,N2O,0.6,kg/TJ,7.902726191279998,kg -e0500e7e-7d06-396d-865b-40261c579e80,SESCO,II.1.1,Corrientes,AR-W,annual,2013,bioetanol combustion consumption by to the public,10.983183449399998,TJ,CH4,10.0,kg/TJ,109.83183449399999,kg -234d6ee4-d246-3dec-85d3-a11c1a022071,SESCO,II.1.1,Corrientes,AR-W,annual,2013,bioetanol combustion consumption by to the public,10.983183449399998,TJ,N2O,0.6,kg/TJ,6.589910069639999,kg -dcab2fd2-ea8f-3132-8ca0-c3d717a04fbe,SESCO,II.1.1,Córdoba,AR-X,annual,2013,bioetanol combustion consumption by to the public,115.26066118979999,TJ,CH4,10.0,kg/TJ,1152.606611898,kg -5a177782-42d1-3463-a3b9-25686417c9cb,SESCO,II.1.1,Córdoba,AR-X,annual,2013,bioetanol combustion consumption by to the public,115.26066118979999,TJ,N2O,0.6,kg/TJ,69.15639671387999,kg -2988d4ea-8690-3208-8a78-d271edf591d4,SESCO,II.1.1,Entre Rios,AR-E,annual,2013,bioetanol combustion consumption by to the public,37.3437286794,TJ,CH4,10.0,kg/TJ,373.437286794,kg -1f77202e-0f4d-328d-925b-20a79ec3f6aa,SESCO,II.1.1,Entre Rios,AR-E,annual,2013,bioetanol combustion consumption by to the public,37.3437286794,TJ,N2O,0.6,kg/TJ,22.40623720764,kg -2a9746f2-8e5c-39f1-adb2-c6f116006c8e,SESCO,II.1.1,Formosa,AR-P,annual,2013,bioetanol combustion consumption by to the public,18.3317342508,TJ,CH4,10.0,kg/TJ,183.317342508,kg -635d51c2-f294-31df-8dd3-5a2029761eaa,SESCO,II.1.1,Formosa,AR-P,annual,2013,bioetanol combustion consumption by to the public,18.3317342508,TJ,N2O,0.6,kg/TJ,10.99904055048,kg -ce1271f3-7d61-38ad-a297-3b6e50910d5b,SESCO,II.1.1,Jujuy,AR-Y,annual,2013,bioetanol combustion consumption by to the public,5.212034586,TJ,CH4,10.0,kg/TJ,52.12034586,kg -51079e51-e50c-3206-b084-1af4488c7e57,SESCO,II.1.1,Jujuy,AR-Y,annual,2013,bioetanol combustion consumption by to the public,5.212034586,TJ,N2O,0.6,kg/TJ,3.1272207516,kg -7a86910c-79ad-361f-987e-f9814ba8dc29,SESCO,II.1.1,La Pampa,AR-L,annual,2013,bioetanol combustion consumption by to the public,4.59761346,TJ,CH4,10.0,kg/TJ,45.976134599999995,kg -c593d6d2-e945-388d-9158-a89dbf8b0e28,SESCO,II.1.1,La Pampa,AR-L,annual,2013,bioetanol combustion consumption by to the public,4.59761346,TJ,N2O,0.6,kg/TJ,2.758568076,kg -cb2091d5-d801-3a58-adf3-66362556b0f5,SESCO,II.1.1,La Rioja,AR-F,annual,2013,bioetanol combustion consumption by to the public,9.2727868824,TJ,CH4,10.0,kg/TJ,92.727868824,kg -ea8e345d-81c2-3aae-8aee-2218cee54367,SESCO,II.1.1,La Rioja,AR-F,annual,2013,bioetanol combustion consumption by to the public,9.2727868824,TJ,N2O,0.6,kg/TJ,5.56367212944,kg -914927af-c1b5-3ddb-b484-416ea6d9a4cc,SESCO,II.1.1,Mendoza,AR-M,annual,2013,bioetanol combustion consumption by to the public,19.391345470799997,TJ,CH4,10.0,kg/TJ,193.91345470799996,kg -bf967660-4a95-3123-8344-83cc354f1ea7,SESCO,II.1.1,Mendoza,AR-M,annual,2013,bioetanol combustion consumption by to the public,19.391345470799997,TJ,N2O,0.6,kg/TJ,11.634807282479999,kg -e5e9961d-ea90-3f4d-ab83-4d128e4011a0,SESCO,II.1.1,Misiones,AR-N,annual,2013,bioetanol combustion consumption by to the public,33.408378622799994,TJ,CH4,10.0,kg/TJ,334.08378622799995,kg -c36b471c-4e1c-3079-ac67-ebab44214cc6,SESCO,II.1.1,Misiones,AR-N,annual,2013,bioetanol combustion consumption by to the public,33.408378622799994,TJ,N2O,0.6,kg/TJ,20.045027173679994,kg -aac150f0-9d7f-34ee-9140-e38caba9dbb1,SESCO,II.1.1,Neuquén,AR-Q,annual,2013,bioetanol combustion consumption by to the public,11.132526000599999,TJ,CH4,10.0,kg/TJ,111.32526000599998,kg -998ed132-d393-3e4d-85d9-f97043656b09,SESCO,II.1.1,Neuquén,AR-Q,annual,2013,bioetanol combustion consumption by to the public,11.132526000599999,TJ,N2O,0.6,kg/TJ,6.679515600359999,kg -afc3c612-951c-3bc7-bb7b-3c7dabd9bbde,SESCO,II.1.1,Rio Negro,AR-R,annual,2013,bioetanol combustion consumption by to the public,15.719594475599997,TJ,CH4,10.0,kg/TJ,157.19594475599996,kg -7e0b4b3c-d4c3-36d1-b687-245f8522a130,SESCO,II.1.1,Rio Negro,AR-R,annual,2013,bioetanol combustion consumption by to the public,15.719594475599997,TJ,N2O,0.6,kg/TJ,9.431756685359998,kg -9277042a-2243-301f-a17f-4ce7aa66dc8f,SESCO,II.1.1,Salta,AR-A,annual,2013,bioetanol combustion consumption by to the public,3.246705017999999,TJ,CH4,10.0,kg/TJ,32.467050179999994,kg -fefc3790-872f-3a80-91e4-42a8f94cceac,SESCO,II.1.1,Salta,AR-A,annual,2013,bioetanol combustion consumption by to the public,3.246705017999999,TJ,N2O,0.6,kg/TJ,1.9480230107999994,kg -d4be30cb-b059-3fae-81db-8429b0315558,SESCO,II.1.1,San Juan,AR-J,annual,2013,bioetanol combustion consumption by to the public,12.749334227999999,TJ,CH4,10.0,kg/TJ,127.49334227999998,kg -aa93aa0f-da27-37d9-bb7c-dd6a3e1fe749,SESCO,II.1.1,San Juan,AR-J,annual,2013,bioetanol combustion consumption by to the public,12.749334227999999,TJ,N2O,0.6,kg/TJ,7.649600536799999,kg -b41e4e9a-41c9-3c02-b2b7-cc2c2bb57167,SESCO,II.1.1,San Luis,AR-D,annual,2013,bioetanol combustion consumption by to the public,22.128427341000002,TJ,CH4,10.0,kg/TJ,221.28427341000003,kg -f5551b40-72c5-38a3-a0d6-7c851d3c055d,SESCO,II.1.1,San Luis,AR-D,annual,2013,bioetanol combustion consumption by to the public,22.128427341000002,TJ,N2O,0.6,kg/TJ,13.277056404600001,kg -cfd54b92-d269-3b8d-bd30-841c404e0d5d,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2013,bioetanol combustion consumption by to the public,2.2216174398,TJ,CH4,10.0,kg/TJ,22.216174398,kg -770afb74-452d-3061-905d-6eb4f8e0aafe,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2013,bioetanol combustion consumption by to the public,2.2216174398,TJ,N2O,0.6,kg/TJ,1.33297046388,kg -384ecd41-df49-37b6-957f-0ca52a9e5465,SESCO,II.1.1,Santa Fe,AR-S,annual,2013,bioetanol combustion consumption by to the public,104.77806415559999,TJ,CH4,10.0,kg/TJ,1047.7806415559999,kg -8e026961-dbf4-3147-bc7e-fbc3d1a7f5f0,SESCO,II.1.1,Santa Fe,AR-S,annual,2013,bioetanol combustion consumption by to the public,104.77806415559999,TJ,N2O,0.6,kg/TJ,62.86683849335999,kg -fbbbdbeb-1678-32a8-864a-44ceec49133c,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2013,bioetanol combustion consumption by to the public,12.617630560799999,TJ,CH4,10.0,kg/TJ,126.17630560799998,kg -5a5bd273-e5df-3a85-8ff8-1427e6bce842,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2013,bioetanol combustion consumption by to the public,12.617630560799999,TJ,N2O,0.6,kg/TJ,7.570578336479999,kg -cfc85021-1c3b-363c-9af0-77256795e828,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2013,bioetanol combustion consumption by to the public,5.217888650399999,TJ,CH4,10.0,kg/TJ,52.17888650399999,kg -2e4ff2af-8cd7-3b71-b648-6fb1b1e956b5,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2013,bioetanol combustion consumption by to the public,5.217888650399999,TJ,N2O,0.6,kg/TJ,3.1307331902399995,kg -3022f6a4-e461-3a69-9449-3a75850cb3a2,SESCO,II.1.1,Tucuman,AR-T,annual,2013,bioetanol combustion consumption by to the public,4.2925885848,TJ,CH4,10.0,kg/TJ,42.925885848,kg -b249fd5e-1820-3174-bc0e-07ab14b4ba5e,SESCO,II.1.1,Tucuman,AR-T,annual,2013,bioetanol combustion consumption by to the public,4.2925885848,TJ,N2O,0.6,kg/TJ,2.57555315088,kg -f2e0abb1-47e5-39d6-a812-9092ba988f01,SESCO,II.1.1,Buenos Aires,AR-B,annual,2013,bioetanol combustion consumption by to the public,89.7377712228,TJ,CH4,10.0,kg/TJ,897.3777122280001,kg -b6730fdd-29ca-3ffb-9fc6-c23c62ef2233,SESCO,II.1.1,Buenos Aires,AR-B,annual,2013,bioetanol combustion consumption by to the public,89.7377712228,TJ,N2O,0.6,kg/TJ,53.84266273368,kg -7793e3cc-6980-3e47-82b9-b923eb212d03,SESCO,II.1.1,Capital Federal,AR-C,annual,2013,bioetanol combustion consumption by to the public,42.774518915316,TJ,CH4,10.0,kg/TJ,427.74518915316,kg -8b2fe796-5061-3eb8-8c5a-655884cc5763,SESCO,II.1.1,Capital Federal,AR-C,annual,2013,bioetanol combustion consumption by to the public,42.774518915316,TJ,N2O,0.6,kg/TJ,25.6647113491896,kg -a81c6051-1556-3cce-8f5b-5bcc02a27c8a,SESCO,II.1.1,Catamarca,AR-K,annual,2013,bioetanol combustion consumption by to the public,3.645748596006,TJ,CH4,10.0,kg/TJ,36.45748596006,kg -b5a976f8-f9ac-3d8e-962b-d1037b40989b,SESCO,II.1.1,Catamarca,AR-K,annual,2013,bioetanol combustion consumption by to the public,3.645748596006,TJ,N2O,0.6,kg/TJ,2.1874491576036,kg -78eef0b9-426c-3f91-a731-14fbd8cd5b78,SESCO,II.1.1,Chaco,AR-H,annual,2013,bioetanol combustion consumption by to the public,3.6431919803699997,TJ,CH4,10.0,kg/TJ,36.4319198037,kg -7ddbcbb6-658c-3e38-bb65-2ecdd69b4165,SESCO,II.1.1,Chaco,AR-H,annual,2013,bioetanol combustion consumption by to the public,3.6431919803699997,TJ,N2O,0.6,kg/TJ,2.185915188222,kg -0be21e33-e4ea-3000-a538-06d352928df5,SESCO,II.1.1,Chubut,AR-U,annual,2013,bioetanol combustion consumption by to the public,1.9103684670899999,TJ,CH4,10.0,kg/TJ,19.103684670899998,kg -ae6a1b8b-4863-3880-a29a-3f6612e5c2a4,SESCO,II.1.1,Chubut,AR-U,annual,2013,bioetanol combustion consumption by to the public,1.9103684670899999,TJ,N2O,0.6,kg/TJ,1.1462210802539998,kg -8c9dab76-8d16-3fa1-8954-7effa698c4f2,SESCO,II.1.1,Corrientes,AR-W,annual,2013,bioetanol combustion consumption by to the public,3.0635825979419997,TJ,CH4,10.0,kg/TJ,30.635825979419998,kg -f94afc0f-157c-3f03-86df-1c4c08962815,SESCO,II.1.1,Corrientes,AR-W,annual,2013,bioetanol combustion consumption by to the public,3.0635825979419997,TJ,N2O,0.6,kg/TJ,1.8381495587651997,kg -8821135a-8beb-3bed-90cc-966fc665ab43,SESCO,II.1.1,Córdoba,AR-X,annual,2013,bioetanol combustion consumption by to the public,24.666077086523998,TJ,CH4,10.0,kg/TJ,246.66077086523998,kg -0d73d6b0-597d-3a01-9e51-8db014372254,SESCO,II.1.1,Córdoba,AR-X,annual,2013,bioetanol combustion consumption by to the public,24.666077086523998,TJ,N2O,0.6,kg/TJ,14.799646251914398,kg -a23291a0-df1e-360d-bc57-f78baa77c2c6,SESCO,II.1.1,Entre Rios,AR-E,annual,2013,bioetanol combustion consumption by to the public,9.116446679153999,TJ,CH4,10.0,kg/TJ,91.16446679153998,kg -13aad19c-da06-37af-877a-573ec6986cc6,SESCO,II.1.1,Entre Rios,AR-E,annual,2013,bioetanol combustion consumption by to the public,9.116446679153999,TJ,N2O,0.6,kg/TJ,5.469868007492399,kg -e98d6206-deb7-32b7-8229-564589b9e472,SESCO,II.1.1,Formosa,AR-P,annual,2013,bioetanol combustion consumption by to the public,4.108794353334,TJ,CH4,10.0,kg/TJ,41.087943533339995,kg -050252ad-0d6d-39cb-93c0-718199d726ee,SESCO,II.1.1,Formosa,AR-P,annual,2013,bioetanol combustion consumption by to the public,4.108794353334,TJ,N2O,0.6,kg/TJ,2.4652766120004,kg -970d9b78-d97a-3ef8-bb66-57b8918fe592,SESCO,II.1.1,Jujuy,AR-Y,annual,2013,bioetanol combustion consumption by to the public,0.21309522978599998,TJ,CH4,10.0,kg/TJ,2.13095229786,kg -3910f36a-b10d-36d9-9c43-bea290d9a448,SESCO,II.1.1,Jujuy,AR-Y,annual,2013,bioetanol combustion consumption by to the public,0.21309522978599998,TJ,N2O,0.6,kg/TJ,0.1278571378716,kg -fb195a3c-111a-3667-8bb0-e832a13cafea,SESCO,II.1.1,La Pampa,AR-L,annual,2013,bioetanol combustion consumption by to the public,1.1771399988179998,TJ,CH4,10.0,kg/TJ,11.771399988179997,kg -2ca17fb6-5844-33a3-b491-efed7916c1a7,SESCO,II.1.1,La Pampa,AR-L,annual,2013,bioetanol combustion consumption by to the public,1.1771399988179998,TJ,N2O,0.6,kg/TJ,0.7062839992907999,kg -8a109563-156f-34dd-80cc-331908ec720d,SESCO,II.1.1,La Rioja,AR-F,annual,2013,bioetanol combustion consumption by to the public,1.9027946114999998,TJ,CH4,10.0,kg/TJ,19.027946115,kg -ce3d6ab5-7be5-3149-ac5b-5a20edbb2484,SESCO,II.1.1,La Rioja,AR-F,annual,2013,bioetanol combustion consumption by to the public,1.9027946114999998,TJ,N2O,0.6,kg/TJ,1.1416767668999999,kg -78bc778f-f5bb-3144-bfa1-484866cd9b5e,SESCO,II.1.1,Mendoza,AR-M,annual,2013,bioetanol combustion consumption by to the public,3.8408438559419995,TJ,CH4,10.0,kg/TJ,38.40843855941999,kg -cdefdb2a-94f0-326c-8e2e-4e033e0c3a93,SESCO,II.1.1,Mendoza,AR-M,annual,2013,bioetanol combustion consumption by to the public,3.8408438559419995,TJ,N2O,0.6,kg/TJ,2.3045063135651995,kg -0892b97a-1b9b-3c6e-909f-d9a0da15ce9c,SESCO,II.1.1,Misiones,AR-N,annual,2013,bioetanol combustion consumption by to the public,5.085774815238,TJ,CH4,10.0,kg/TJ,50.85774815238,kg -b67680b8-c4c0-36e4-82ba-69c902daf10f,SESCO,II.1.1,Misiones,AR-N,annual,2013,bioetanol combustion consumption by to the public,5.085774815238,TJ,N2O,0.6,kg/TJ,3.0514648891427996,kg -a4ac2f7a-bb75-3381-9a6d-8eab7eb6e1fd,SESCO,II.1.1,Neuquén,AR-Q,annual,2013,bioetanol combustion consumption by to the public,3.015497082888,TJ,CH4,10.0,kg/TJ,30.15497082888,kg -710f5507-81e2-3f59-8489-92d849adde7c,SESCO,II.1.1,Neuquén,AR-Q,annual,2013,bioetanol combustion consumption by to the public,3.015497082888,TJ,N2O,0.6,kg/TJ,1.8092982497327998,kg -7a6c66ad-0ca1-30d8-bdac-3aa4dc13eaf4,SESCO,II.1.1,Rio Negro,AR-R,annual,2013,bioetanol combustion consumption by to the public,4.359284145018,TJ,CH4,10.0,kg/TJ,43.59284145018,kg -7cbea116-ff72-3041-ba54-5a2d473e91ef,SESCO,II.1.1,Rio Negro,AR-R,annual,2013,bioetanol combustion consumption by to the public,4.359284145018,TJ,N2O,0.6,kg/TJ,2.6155704870108,kg -e63a350b-a79b-3478-bb7c-446c1e86e7e8,SESCO,II.1.1,Salta,AR-A,annual,2013,bioetanol combustion consumption by to the public,0.42060455733599994,TJ,CH4,10.0,kg/TJ,4.206045573359999,kg -e297ff9b-1278-3ae7-a486-74befaa1eef8,SESCO,II.1.1,Salta,AR-A,annual,2013,bioetanol combustion consumption by to the public,0.42060455733599994,TJ,N2O,0.6,kg/TJ,0.25236273440159995,kg -75457451-5412-3ac1-b680-0e6950c9552d,SESCO,II.1.1,San Juan,AR-J,annual,2013,bioetanol combustion consumption by to the public,2.662862175594,TJ,CH4,10.0,kg/TJ,26.62862175594,kg -a5154af8-64be-373b-96f4-16a43682146b,SESCO,II.1.1,San Juan,AR-J,annual,2013,bioetanol combustion consumption by to the public,2.662862175594,TJ,N2O,0.6,kg/TJ,1.5977173053563998,kg -383046d7-d549-3624-8861-22eeb2f4a0a6,SESCO,II.1.1,San Luis,AR-D,annual,2013,bioetanol combustion consumption by to the public,5.119843297139999,TJ,CH4,10.0,kg/TJ,51.198432971399995,kg -e6e7484e-3702-3743-9a1c-3033daeb9aa9,SESCO,II.1.1,San Luis,AR-D,annual,2013,bioetanol combustion consumption by to the public,5.119843297139999,TJ,N2O,0.6,kg/TJ,3.0719059782839993,kg -cbf9f455-9105-3f8a-8752-f0d2dcbe7abe,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2013,bioetanol combustion consumption by to the public,1.096090605018,TJ,CH4,10.0,kg/TJ,10.96090605018,kg -1f80fc29-25fd-3bc3-9bec-ad98f50acda2,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2013,bioetanol combustion consumption by to the public,1.096090605018,TJ,N2O,0.6,kg/TJ,0.6576543630107999,kg -3cdb387a-feee-398b-82f8-24fb0ac7ebca,SESCO,II.1.1,Santa Fe,AR-S,annual,2013,bioetanol combustion consumption by to the public,23.966446474278,TJ,CH4,10.0,kg/TJ,239.66446474278,kg -181e405f-ef93-3f21-a8f9-5c99709c5069,SESCO,II.1.1,Santa Fe,AR-S,annual,2013,bioetanol combustion consumption by to the public,23.966446474278,TJ,N2O,0.6,kg/TJ,14.379867884566801,kg -2e4bdde8-8977-3d5d-8203-9224a5e9358e,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2013,bioetanol combustion consumption by to the public,3.213825882588,TJ,CH4,10.0,kg/TJ,32.13825882588,kg -5d5a903f-191e-30e3-a2eb-66c11bb25be7,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2013,bioetanol combustion consumption by to the public,3.213825882588,TJ,N2O,0.6,kg/TJ,1.9282955295528,kg -6907c9fd-066e-367f-90cc-ce04b1dffc7a,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2013,bioetanol combustion consumption by to the public,2.469931896942,TJ,CH4,10.0,kg/TJ,24.699318969420002,kg -0149bcfd-c085-3468-84c7-97e9d9767f0a,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2013,bioetanol combustion consumption by to the public,2.469931896942,TJ,N2O,0.6,kg/TJ,1.4819591381652,kg -18799d41-cff8-311c-ba7a-abc509e7d162,SESCO,II.1.1,Tucuman,AR-T,annual,2013,bioetanol combustion consumption by to the public,0.9097414195499998,TJ,CH4,10.0,kg/TJ,9.097414195499997,kg -0f215db6-01a0-3b35-96b1-1da5715dde5f,SESCO,II.1.1,Tucuman,AR-T,annual,2013,bioetanol combustion consumption by to the public,0.9097414195499998,TJ,N2O,0.6,kg/TJ,0.5458448517299999,kg -ad992603-2f6a-37e5-8537-d2b63592b113,SESCO,I.3.1,Buenos Aires,AR-B,annual,2013,bioetanol combustion consumption by petrochemical industries,0.71450262,TJ,CH4,10.0,kg/TJ,7.1450262,kg -e69cafda-b274-34a1-b728-b60653eb1f1f,SESCO,I.3.1,Buenos Aires,AR-B,annual,2013,bioetanol combustion consumption by petrochemical industries,0.71450262,TJ,N2O,0.6,kg/TJ,0.428701572,kg -17e1521c-3e7e-37ca-a43d-549cce3f80c8,SESCO,I.3.1,Buenos Aires,AR-B,annual,2013,bioetanol combustion consumption by petrochemical industries,0.05751809999999999,TJ,CH4,10.0,kg/TJ,0.5751809999999999,kg -c47764e5-773d-3d7a-870d-95c0fba0762f,SESCO,I.3.1,Buenos Aires,AR-B,annual,2013,bioetanol combustion consumption by petrochemical industries,0.05751809999999999,TJ,N2O,0.6,kg/TJ,0.03451085999999999,kg -70dc5d85-e56e-3f54-9d76-77ba784761d4,SESCO,II.1.1,Buenos Aires,AR-B,annual,2013,bioetanol combustion consumption by freight transport,0.199983275892,TJ,CH4,10.0,kg/TJ,1.9998327589199998,kg -85753594-b033-325d-9f1f-e6ceac514c79,SESCO,II.1.1,Buenos Aires,AR-B,annual,2013,bioetanol combustion consumption by freight transport,0.199983275892,TJ,N2O,0.6,kg/TJ,0.11998996553519999,kg -8821c53a-6247-3b1e-a723-eb8e9a1f7314,SESCO,II.1.1,Capital Federal,AR-C,annual,2013,bioetanol combustion consumption by freight transport,0.5048764985519999,TJ,CH4,10.0,kg/TJ,5.048764985519999,kg -67891c04-1986-3649-ad2a-a0d6b0cec067,SESCO,II.1.1,Capital Federal,AR-C,annual,2013,bioetanol combustion consumption by freight transport,0.5048764985519999,TJ,N2O,0.6,kg/TJ,0.30292589913119994,kg -07af39b5-0bcc-322a-af84-26fb83ba1d5f,SESCO,II.1.1,Chaco,AR-H,annual,2013,bioetanol combustion consumption by freight transport,0.009617793227999999,TJ,CH4,10.0,kg/TJ,0.09617793227999999,kg -0c2dfe39-4dbc-3114-888d-602d968cfa33,SESCO,II.1.1,Chaco,AR-H,annual,2013,bioetanol combustion consumption by freight transport,0.009617793227999999,TJ,N2O,0.6,kg/TJ,0.005770675936799999,kg -dcfae3d2-1e5e-3bd1-9337-1e20783db5d7,SESCO,II.1.1,Corrientes,AR-W,annual,2013,bioetanol combustion consumption by freight transport,0.000674495586,TJ,CH4,10.0,kg/TJ,0.00674495586,kg -b3d197e1-c6de-30e2-aa67-45555d0091d8,SESCO,II.1.1,Corrientes,AR-W,annual,2013,bioetanol combustion consumption by freight transport,0.000674495586,TJ,N2O,0.6,kg/TJ,0.0004046973516,kg -95e6cc7d-330e-37db-8b5e-7cf77cfb0879,SESCO,II.1.1,Córdoba,AR-X,annual,2013,bioetanol combustion consumption by freight transport,0.017392450896,TJ,CH4,10.0,kg/TJ,0.17392450896,kg -c29785f8-7beb-3a7f-ba05-302d6d1f6938,SESCO,II.1.1,Córdoba,AR-X,annual,2013,bioetanol combustion consumption by freight transport,0.017392450896,TJ,N2O,0.6,kg/TJ,0.0104354705376,kg -861255a8-3954-3854-abf0-f6a45c32c8b1,SESCO,II.1.1,Entre Rios,AR-E,annual,2013,bioetanol combustion consumption by freight transport,6.3909e-05,TJ,CH4,10.0,kg/TJ,0.00063909,kg -5dcab6ef-0d2d-3053-a516-19886f03f291,SESCO,II.1.1,Entre Rios,AR-E,annual,2013,bioetanol combustion consumption by freight transport,6.3909e-05,TJ,N2O,0.6,kg/TJ,3.83454e-05,kg -e2cf53c3-ed20-3914-9c45-f02222962f8e,SESCO,II.1.1,Misiones,AR-N,annual,2013,bioetanol combustion consumption by freight transport,0.0002428542,TJ,CH4,10.0,kg/TJ,0.0024285419999999997,kg -29bff508-c0bc-3c9c-b672-f8b8bec5af9f,SESCO,II.1.1,Misiones,AR-N,annual,2013,bioetanol combustion consumption by freight transport,0.0002428542,TJ,N2O,0.6,kg/TJ,0.00014571252,kg -2010ecbf-c045-31c3-8d6f-2474d95ddae3,SESCO,II.1.1,San Luis,AR-D,annual,2013,bioetanol combustion consumption by freight transport,0.003937050036,TJ,CH4,10.0,kg/TJ,0.03937050036,kg -df3c12ad-0560-379b-87c3-dec0dc8517bf,SESCO,II.1.1,San Luis,AR-D,annual,2013,bioetanol combustion consumption by freight transport,0.003937050036,TJ,N2O,0.6,kg/TJ,0.0023622300216,kg -326fd410-b3fd-3698-8ae0-47c648a15813,SESCO,II.1.1,Santa Fe,AR-S,annual,2013,bioetanol combustion consumption by freight transport,0.037301382576,TJ,CH4,10.0,kg/TJ,0.37301382576,kg -069fd406-1dd9-37bd-8e15-59f0252ad11a,SESCO,II.1.1,Santa Fe,AR-S,annual,2013,bioetanol combustion consumption by freight transport,0.037301382576,TJ,N2O,0.6,kg/TJ,0.022380829545599997,kg -0d3046cc-f380-3137-b030-e38e3e3039dc,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2013,bioetanol combustion consumption by freight transport,0.001125309672,TJ,CH4,10.0,kg/TJ,0.011253096720000001,kg -5fd67a3e-6ded-3435-b192-cc8e80493b86,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2013,bioetanol combustion consumption by freight transport,0.001125309672,TJ,N2O,0.6,kg/TJ,0.0006751858032,kg -15e1c2e1-4174-321e-8585-57c1995988c0,SESCO,II.1.1,Tucuman,AR-T,annual,2013,bioetanol combustion consumption by freight transport,0.002032178382,TJ,CH4,10.0,kg/TJ,0.02032178382,kg -eda38a0d-f034-3520-b5ce-a8ce48ac62d2,SESCO,II.1.1,Tucuman,AR-T,annual,2013,bioetanol combustion consumption by freight transport,0.002032178382,TJ,N2O,0.6,kg/TJ,0.0012193070292,kg -204a1980-de5a-35eb-9942-fb718595a350,SESCO,II.1.1,Buenos Aires,AR-B,annual,2013,bioetanol combustion consumption by freight transport,0.9790730982,TJ,CH4,10.0,kg/TJ,9.790730982,kg -a6a97947-72f2-3af5-996a-53536820cf76,SESCO,II.1.1,Buenos Aires,AR-B,annual,2013,bioetanol combustion consumption by freight transport,0.9790730982,TJ,N2O,0.6,kg/TJ,0.58744385892,kg -f14df98b-9d09-3acf-955e-e71fe6f0db42,SESCO,II.1.1,Capital Federal,AR-C,annual,2013,bioetanol combustion consumption by freight transport,0.31770442079999994,TJ,CH4,10.0,kg/TJ,3.1770442079999994,kg -b8567021-e2d4-31a4-88f7-98a2d95a720d,SESCO,II.1.1,Capital Federal,AR-C,annual,2013,bioetanol combustion consumption by freight transport,0.31770442079999994,TJ,N2O,0.6,kg/TJ,0.19062265247999996,kg -602f07b5-afe4-3a64-9a8e-d772db3e98bd,SESCO,II.1.1,Chaco,AR-H,annual,2013,bioetanol combustion consumption by freight transport,0.002356708284,TJ,CH4,10.0,kg/TJ,0.02356708284,kg -a30db940-d764-3bc6-9b24-3a7b60b65f40,SESCO,II.1.1,Chaco,AR-H,annual,2013,bioetanol combustion consumption by freight transport,0.002356708284,TJ,N2O,0.6,kg/TJ,0.0014140249704,kg -d4d65da2-da71-3c15-ae48-22f07e8777e3,SESCO,II.1.1,Corrientes,AR-W,annual,2013,bioetanol combustion consumption by freight transport,0.00017894520000000003,TJ,CH4,10.0,kg/TJ,0.0017894520000000004,kg -905f8ed1-b89c-354b-b646-7f328e582114,SESCO,II.1.1,Corrientes,AR-W,annual,2013,bioetanol combustion consumption by freight transport,0.00017894520000000003,TJ,N2O,0.6,kg/TJ,0.00010736712000000001,kg -087774f2-dbe6-3b6f-8556-fe2a5f1b5732,SESCO,II.1.1,Córdoba,AR-X,annual,2013,bioetanol combustion consumption by freight transport,0.01285721262,TJ,CH4,10.0,kg/TJ,0.1285721262,kg -1a3234d2-ff0e-3bb7-9e87-dee1728c90f8,SESCO,II.1.1,Córdoba,AR-X,annual,2013,bioetanol combustion consumption by freight transport,0.01285721262,TJ,N2O,0.6,kg/TJ,0.007714327572,kg -296252aa-a0c5-346a-9bf3-d864c6ab4113,SESCO,II.1.1,Entre Rios,AR-E,annual,2013,bioetanol combustion consumption by freight transport,0.001022544,TJ,CH4,10.0,kg/TJ,0.01022544,kg -7f57e259-9455-3bc0-b18b-93bfd18f503a,SESCO,II.1.1,Entre Rios,AR-E,annual,2013,bioetanol combustion consumption by freight transport,0.001022544,TJ,N2O,0.6,kg/TJ,0.0006135264,kg -d5cb36c9-ea1c-3011-b092-c21b5ab5ba19,SESCO,II.1.1,Mendoza,AR-M,annual,2013,bioetanol combustion consumption by freight transport,0.00021013279199999998,TJ,CH4,10.0,kg/TJ,0.00210132792,kg -6aee963e-d4f6-35d3-9a90-4d44aa0bebe6,SESCO,II.1.1,Mendoza,AR-M,annual,2013,bioetanol combustion consumption by freight transport,0.00021013279199999998,TJ,N2O,0.6,kg/TJ,0.0001260796752,kg -75d99494-d1fe-3dcd-90b2-38f7856a3fcf,SESCO,II.1.1,Misiones,AR-N,annual,2013,bioetanol combustion consumption by freight transport,0.0001533816,TJ,CH4,10.0,kg/TJ,0.001533816,kg -56b791b7-b1ad-3bf5-b24a-011b955a9410,SESCO,II.1.1,Misiones,AR-N,annual,2013,bioetanol combustion consumption by freight transport,0.0001533816,TJ,N2O,0.6,kg/TJ,9.202895999999999e-05,kg -bde429c3-5248-3b97-a8aa-c2f4ad3ba6ff,SESCO,II.1.1,San Luis,AR-D,annual,2013,bioetanol combustion consumption by freight transport,0.0003706722,TJ,CH4,10.0,kg/TJ,0.003706722,kg -b8da9aa9-78df-3eae-9b3a-86864506f8b2,SESCO,II.1.1,San Luis,AR-D,annual,2013,bioetanol combustion consumption by freight transport,0.0003706722,TJ,N2O,0.6,kg/TJ,0.00022240332,kg -99812c70-6961-37c1-b73c-09e1ae8bf9a0,SESCO,II.1.1,Santa Fe,AR-S,annual,2013,bioetanol combustion consumption by freight transport,0.026970109271999998,TJ,CH4,10.0,kg/TJ,0.26970109272,kg -22559cd1-3e26-3ada-b0d4-706192bba676,SESCO,II.1.1,Santa Fe,AR-S,annual,2013,bioetanol combustion consumption by freight transport,0.026970109271999998,TJ,N2O,0.6,kg/TJ,0.0161820655632,kg -bfe072da-aef0-32ba-b1b6-c4dbdbe8dd14,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2013,bioetanol combustion consumption by freight transport,0.009870105959999998,TJ,CH4,10.0,kg/TJ,0.09870105959999999,kg -14d479e8-b92e-34e1-9ef9-0ab549d17c03,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2013,bioetanol combustion consumption by freight transport,0.009870105959999998,TJ,N2O,0.6,kg/TJ,0.0059220635759999985,kg -08c289cc-8d0f-380d-9c5c-fffb3d1f5b06,SESCO,II.1.1,Tucuman,AR-T,annual,2013,bioetanol combustion consumption by freight transport,0.001890811674,TJ,CH4,10.0,kg/TJ,0.01890811674,kg -c28608fd-aa06-3eed-9cab-141b1d01a7d2,SESCO,II.1.1,Tucuman,AR-T,annual,2013,bioetanol combustion consumption by freight transport,0.001890811674,TJ,N2O,0.6,kg/TJ,0.0011344870043999999,kg -e2aa85a3-97ca-3fd0-9cb2-99bb8f06d47c,SESCO,II.1.1,Buenos Aires,AR-B,annual,2013,bioetanol combustion consumption by public passenger transport,0.0882072018,TJ,CH4,10.0,kg/TJ,0.8820720179999999,kg -3b73743d-7a8c-3a32-9acb-8fde224d72c9,SESCO,II.1.1,Buenos Aires,AR-B,annual,2013,bioetanol combustion consumption by public passenger transport,0.0882072018,TJ,N2O,0.6,kg/TJ,0.052924321079999996,kg -26dc6c31-11bd-3273-9f2d-f4bffb4d3a73,SESCO,II.1.1,Capital Federal,AR-C,annual,2013,bioetanol combustion consumption by public passenger transport,0.0015849431999999998,TJ,CH4,10.0,kg/TJ,0.015849431999999997,kg -8baebd5c-1d58-3436-9602-a8a3d488cbf1,SESCO,II.1.1,Capital Federal,AR-C,annual,2013,bioetanol combustion consumption by public passenger transport,0.0015849431999999998,TJ,N2O,0.6,kg/TJ,0.0009509659199999998,kg -fa4d21d6-3216-3a0e-b330-a30ef8c956d0,SESCO,II.1.1,Córdoba,AR-X,annual,2013,bioetanol combustion consumption by public passenger transport,5.1127199999999994e-05,TJ,CH4,10.0,kg/TJ,0.0005112719999999999,kg -75ff36c3-dc25-3a98-891b-a5a7e943201e,SESCO,II.1.1,Córdoba,AR-X,annual,2013,bioetanol combustion consumption by public passenger transport,5.1127199999999994e-05,TJ,N2O,0.6,kg/TJ,3.067632e-05,kg -3fa32afa-9ee7-3518-a474-b7e137d450cf,SESCO,II.1.1,Entre Rios,AR-E,annual,2013,bioetanol combustion consumption by public passenger transport,3.83454e-05,TJ,CH4,10.0,kg/TJ,0.000383454,kg -9495c2a5-93df-3eab-b93b-19ca62b4a998,SESCO,II.1.1,Entre Rios,AR-E,annual,2013,bioetanol combustion consumption by public passenger transport,3.83454e-05,TJ,N2O,0.6,kg/TJ,2.3007239999999998e-05,kg -a4a4dec3-de1b-31e0-b171-3c61fb4ff4a3,SESCO,II.1.1,Santa Fe,AR-S,annual,2013,bioetanol combustion consumption by public passenger transport,0.002107207548,TJ,CH4,10.0,kg/TJ,0.021072075479999997,kg -46f81003-1337-3533-bb16-5ba27f24fa24,SESCO,II.1.1,Santa Fe,AR-S,annual,2013,bioetanol combustion consumption by public passenger transport,0.002107207548,TJ,N2O,0.6,kg/TJ,0.0012643245288,kg -98c898a2-f2d9-3311-a3c4-9e2cd61a998c,SESCO,II.1.1,Buenos Aires,AR-B,annual,2013,bioetanol combustion consumption by public passenger transport,0.01661634,TJ,CH4,10.0,kg/TJ,0.16616340000000002,kg -f3b32d3f-2caa-3421-8f10-73445335349d,SESCO,II.1.1,Buenos Aires,AR-B,annual,2013,bioetanol combustion consumption by public passenger transport,0.01661634,TJ,N2O,0.6,kg/TJ,0.009969804,kg -a3ba64d7-c78e-302a-ada7-235146db36e3,SESCO,II.1.1,Capital Federal,AR-C,annual,2013,bioetanol combustion consumption by public passenger transport,0.007630734599999999,TJ,CH4,10.0,kg/TJ,0.07630734599999998,kg -35d00af9-bc88-3e93-85b2-7e83e4bfc960,SESCO,II.1.1,Capital Federal,AR-C,annual,2013,bioetanol combustion consumption by public passenger transport,0.007630734599999999,TJ,N2O,0.6,kg/TJ,0.004578440759999999,kg -37b8c734-486d-3c02-9c48-2501a6480edd,SESCO,II.1.1,Entre Rios,AR-E,annual,2013,bioetanol combustion consumption by public passenger transport,5.1127199999999994e-05,TJ,CH4,10.0,kg/TJ,0.0005112719999999999,kg -fc66cb57-0870-3829-acd9-39bf78edc4ac,SESCO,II.1.1,Entre Rios,AR-E,annual,2013,bioetanol combustion consumption by public passenger transport,5.1127199999999994e-05,TJ,N2O,0.6,kg/TJ,3.067632e-05,kg -48ffc929-2dcf-3df6-9a7f-e28bf5aaca06,SESCO,II.1.1,Santa Fe,AR-S,annual,2013,bioetanol combustion consumption by public passenger transport,0.00044736299999999994,TJ,CH4,10.0,kg/TJ,0.004473629999999999,kg -9c419969-7344-3f67-b850-3f62793ee38d,SESCO,II.1.1,Santa Fe,AR-S,annual,2013,bioetanol combustion consumption by public passenger transport,0.00044736299999999994,TJ,N2O,0.6,kg/TJ,0.00026841779999999996,kg -34118832-c80e-3e6b-ab43-bbdbd7790e3f,SESCO,II.5.1,Córdoba,AR-X,annual,2013,bioetanol combustion consumption by agriculture machines,0.251870098266,TJ,CH4,10.0,kg/TJ,2.51870098266,kg -8e72e29f-58ac-3f35-8561-0a0e78a7433e,SESCO,II.5.1,Córdoba,AR-X,annual,2013,bioetanol combustion consumption by agriculture machines,0.251870098266,TJ,N2O,0.6,kg/TJ,0.1511220589596,kg -89011c7a-1b78-341d-bd51-545fce46b402,SESCO,II.5.1,Santa Fe,AR-S,annual,2013,bioetanol combustion consumption by agriculture machines,0.056450308427999994,TJ,CH4,10.0,kg/TJ,0.56450308428,kg -68b84948-6baa-3c58-a56a-0aea2d38182e,SESCO,II.5.1,Santa Fe,AR-S,annual,2013,bioetanol combustion consumption by agriculture machines,0.056450308427999994,TJ,N2O,0.6,kg/TJ,0.03387018505679999,kg -7fb808ba-8922-3b74-ba9f-fa6f3b5e570a,SESCO,II.1.1,Buenos Aires,AR-B,annual,2013,bioetanol combustion consumption by to the public,92.06523896639399,TJ,CH4,10.0,kg/TJ,920.6523896639399,kg -1b2d46d2-2495-3518-9ad5-b6d5cc0f2760,SESCO,II.1.1,Buenos Aires,AR-B,annual,2013,bioetanol combustion consumption by to the public,92.06523896639399,TJ,N2O,0.6,kg/TJ,55.23914337983639,kg -f1110573-2632-35cd-9c38-156e81ba1d3f,SESCO,II.1.1,Capital Federal,AR-C,annual,2013,bioetanol combustion consumption by to the public,10.095962794541999,TJ,CH4,10.0,kg/TJ,100.95962794541998,kg -d174e996-118c-3e60-866c-5f12a9d1cb8a,SESCO,II.1.1,Capital Federal,AR-C,annual,2013,bioetanol combustion consumption by to the public,10.095962794541999,TJ,N2O,0.6,kg/TJ,6.057577676725199,kg -3ecd8f3e-1aef-32f3-b295-222a1a5b8a57,SESCO,II.1.1,Catamarca,AR-K,annual,2013,bioetanol combustion consumption by to the public,7.229828330279998,TJ,CH4,10.0,kg/TJ,72.29828330279999,kg -74257c12-efa0-3a25-8c1e-7d52ea302ef7,SESCO,II.1.1,Catamarca,AR-K,annual,2013,bioetanol combustion consumption by to the public,7.229828330279998,TJ,N2O,0.6,kg/TJ,4.337896998167999,kg -a03c2853-020e-3be6-a861-5c780b2cd849,SESCO,II.1.1,Chaco,AR-H,annual,2013,bioetanol combustion consumption by to the public,13.085614055285998,TJ,CH4,10.0,kg/TJ,130.85614055285998,kg -c6ba0798-8cff-35d2-872e-87c29f87a4ac,SESCO,II.1.1,Chaco,AR-H,annual,2013,bioetanol combustion consumption by to the public,13.085614055285998,TJ,N2O,0.6,kg/TJ,7.851368433171598,kg -cc0bad26-ee69-3383-846c-b5bc45480a6f,SESCO,II.1.1,Corrientes,AR-W,annual,2013,bioetanol combustion consumption by to the public,17.423077622616,TJ,CH4,10.0,kg/TJ,174.23077622616,kg -e74c894f-7c57-39a5-80a7-6b58b8918194,SESCO,II.1.1,Corrientes,AR-W,annual,2013,bioetanol combustion consumption by to the public,17.423077622616,TJ,N2O,0.6,kg/TJ,10.4538465735696,kg -b9cc582f-c3e4-3071-8a5a-b7eee53f527a,SESCO,II.1.1,Córdoba,AR-X,annual,2013,bioetanol combustion consumption by to the public,34.516115748341996,TJ,CH4,10.0,kg/TJ,345.16115748341997,kg -50007992-8809-3875-b308-38b8113ccab2,SESCO,II.1.1,Córdoba,AR-X,annual,2013,bioetanol combustion consumption by to the public,34.516115748341996,TJ,N2O,0.6,kg/TJ,20.709669449005197,kg -69a871b9-e742-3861-abea-c285de30615c,SESCO,II.1.1,Entre Rios,AR-E,annual,2013,bioetanol combustion consumption by to the public,22.214749610753998,TJ,CH4,10.0,kg/TJ,222.14749610753998,kg -e8b27aab-26e5-34f0-95a3-c3852587c0ad,SESCO,II.1.1,Entre Rios,AR-E,annual,2013,bioetanol combustion consumption by to the public,22.214749610753998,TJ,N2O,0.6,kg/TJ,13.328849766452398,kg -a9ddc2cb-fdfd-313c-85c3-b97dbe9d7d6a,SESCO,II.1.1,Formosa,AR-P,annual,2013,bioetanol combustion consumption by to the public,0.7509226974659998,TJ,CH4,10.0,kg/TJ,7.509226974659998,kg -2aefbc7b-8a9c-376c-b5e7-aefa5baccb0f,SESCO,II.1.1,Formosa,AR-P,annual,2013,bioetanol combustion consumption by to the public,0.7509226974659998,TJ,N2O,0.6,kg/TJ,0.45055361847959985,kg -464034f7-fee8-34f2-9bcf-a82020152f78,SESCO,II.1.1,Jujuy,AR-Y,annual,2013,bioetanol combustion consumption by to the public,1.373809209606,TJ,CH4,10.0,kg/TJ,13.738092096059999,kg -613b14d4-cbdc-328c-81c3-34d41b22f423,SESCO,II.1.1,Jujuy,AR-Y,annual,2013,bioetanol combustion consumption by to the public,1.373809209606,TJ,N2O,0.6,kg/TJ,0.8242855257635999,kg -7fc5b085-fe7a-3c63-ad71-7ebdc14b6c7e,SESCO,II.1.1,La Pampa,AR-L,annual,2013,bioetanol combustion consumption by to the public,0.7387499502359999,TJ,CH4,10.0,kg/TJ,7.387499502359999,kg -07b8572c-f4f6-387e-9326-bd50ce85ca5d,SESCO,II.1.1,La Pampa,AR-L,annual,2013,bioetanol combustion consumption by to the public,0.7387499502359999,TJ,N2O,0.6,kg/TJ,0.4432499701415999,kg -46cf8432-e15c-35fb-b0a2-400122505070,SESCO,II.1.1,La Rioja,AR-F,annual,2013,bioetanol combustion consumption by to the public,3.6628154944559994,TJ,CH4,10.0,kg/TJ,36.628154944559995,kg -9a4df17e-9815-36a4-a0b1-1fdcd6a30e08,SESCO,II.1.1,La Rioja,AR-F,annual,2013,bioetanol combustion consumption by to the public,3.6628154944559994,TJ,N2O,0.6,kg/TJ,2.1976892966735995,kg -eb8a6d00-0315-31a0-a00a-a5aadb36fdf0,SESCO,II.1.1,Mendoza,AR-M,annual,2013,bioetanol combustion consumption by to the public,15.739427483387999,TJ,CH4,10.0,kg/TJ,157.39427483388,kg -acbcea8f-9a9d-33e5-b056-1302acfadfa7,SESCO,II.1.1,Mendoza,AR-M,annual,2013,bioetanol combustion consumption by to the public,15.739427483387999,TJ,N2O,0.6,kg/TJ,9.443656490032799,kg -ec483a49-e2f4-326f-a480-ca8a5dd9a3bd,SESCO,II.1.1,Misiones,AR-N,annual,2013,bioetanol combustion consumption by to the public,10.523185128827999,TJ,CH4,10.0,kg/TJ,105.23185128827998,kg -a03b8faa-ef57-3f90-a397-eab63b8fb396,SESCO,II.1.1,Misiones,AR-N,annual,2013,bioetanol combustion consumption by to the public,10.523185128827999,TJ,N2O,0.6,kg/TJ,6.313911077296799,kg -004af6fe-5fa1-3448-ac59-3dfaeff62c23,SESCO,II.1.1,Rio Negro,AR-R,annual,2013,bioetanol combustion consumption by to the public,0.704133129114,TJ,CH4,10.0,kg/TJ,7.04133129114,kg -9788b1ed-d23c-3b72-8219-4eb804b71a0e,SESCO,II.1.1,Rio Negro,AR-R,annual,2013,bioetanol combustion consumption by to the public,0.704133129114,TJ,N2O,0.6,kg/TJ,0.42247987746839993,kg -ca025c77-2b7e-3621-b968-23b695a7715a,SESCO,II.1.1,San Juan,AR-J,annual,2013,bioetanol combustion consumption by to the public,10.081520638721999,TJ,CH4,10.0,kg/TJ,100.81520638721999,kg -5a50fe96-7439-3e1c-ba50-f7f5073202d2,SESCO,II.1.1,San Juan,AR-J,annual,2013,bioetanol combustion consumption by to the public,10.081520638721999,TJ,N2O,0.6,kg/TJ,6.0489123832331995,kg -5f26c3db-1fc5-35aa-b15a-7177f1269b0b,SESCO,II.1.1,San Luis,AR-D,annual,2013,bioetanol combustion consumption by to the public,6.705630479394,TJ,CH4,10.0,kg/TJ,67.05630479394,kg -1370fffa-cf78-3bbe-b629-077ea06fd01b,SESCO,II.1.1,San Luis,AR-D,annual,2013,bioetanol combustion consumption by to the public,6.705630479394,TJ,N2O,0.6,kg/TJ,4.0233782876364,kg -c7fdba60-e1c5-31ec-a170-f427bdbbeb60,SESCO,II.1.1,Santa Fe,AR-S,annual,2013,bioetanol combustion consumption by to the public,53.60767317521999,TJ,CH4,10.0,kg/TJ,536.0767317522,kg -ca0535be-5a86-35eb-b8fc-f8f55268dc8d,SESCO,II.1.1,Santa Fe,AR-S,annual,2013,bioetanol combustion consumption by to the public,53.60767317521999,TJ,N2O,0.6,kg/TJ,32.164603905132,kg -edbf36d7-7321-3d5b-8fc8-2c2a0e65e546,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2013,bioetanol combustion consumption by to the public,8.505716425722,TJ,CH4,10.0,kg/TJ,85.05716425722,kg -447c6f98-5beb-3331-89d8-687fb24f9354,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2013,bioetanol combustion consumption by to the public,8.505716425722,TJ,N2O,0.6,kg/TJ,5.103429855433199,kg -b406facb-e550-3c7a-99bd-90a29dfd3f12,SESCO,II.1.1,Tucuman,AR-T,annual,2013,bioetanol combustion consumption by to the public,8.361038592432,TJ,CH4,10.0,kg/TJ,83.61038592431998,kg -aa875a28-9cc6-3c53-9213-4df0f2585719,SESCO,II.1.1,Tucuman,AR-T,annual,2013,bioetanol combustion consumption by to the public,8.361038592432,TJ,N2O,0.6,kg/TJ,5.016623155459199,kg -b223ea76-11b4-3b2a-9803-ee24dade261f,SESCO,II.1.1,Buenos Aires,AR-B,annual,2013,bioetanol combustion consumption by to the public,15.049077608304,TJ,CH4,10.0,kg/TJ,150.49077608304,kg -9b31248a-2544-3786-aaba-b6cf05122b81,SESCO,II.1.1,Buenos Aires,AR-B,annual,2013,bioetanol combustion consumption by to the public,15.049077608304,TJ,N2O,0.6,kg/TJ,9.029446564982399,kg -0dfad364-881c-3615-9f72-c75f61bd55c8,SESCO,II.1.1,Capital Federal,AR-C,annual,2013,bioetanol combustion consumption by to the public,2.7437778717660004,TJ,CH4,10.0,kg/TJ,27.437778717660002,kg -57b3d1ba-2945-3b38-bb65-29e5cff36956,SESCO,II.1.1,Capital Federal,AR-C,annual,2013,bioetanol combustion consumption by to the public,2.7437778717660004,TJ,N2O,0.6,kg/TJ,1.6462667230596002,kg -8caeedd7-ba9a-34b8-ac06-d561db20faa2,SESCO,II.1.1,Catamarca,AR-K,annual,2013,bioetanol combustion consumption by to the public,0.651403858302,TJ,CH4,10.0,kg/TJ,6.51403858302,kg -46aa3d2b-e45d-308d-a999-7509c89209b4,SESCO,II.1.1,Catamarca,AR-K,annual,2013,bioetanol combustion consumption by to the public,0.651403858302,TJ,N2O,0.6,kg/TJ,0.3908423149812,kg -b04a0a94-e816-316b-bd0d-0d7ec9823f25,SESCO,II.1.1,Chaco,AR-H,annual,2013,bioetanol combustion consumption by to the public,1.115960935662,TJ,CH4,10.0,kg/TJ,11.159609356619999,kg -2f71a945-2378-34e4-b502-2de7d9a6d74c,SESCO,II.1.1,Chaco,AR-H,annual,2013,bioetanol combustion consumption by to the public,1.115960935662,TJ,N2O,0.6,kg/TJ,0.6695765613971999,kg -e95b5e7e-443d-342c-b909-a08d20fb8b63,SESCO,II.1.1,Corrientes,AR-W,annual,2013,bioetanol combustion consumption by to the public,2.698231461282,TJ,CH4,10.0,kg/TJ,26.982314612819998,kg -6243a5c6-e872-38d7-b357-06de2336a181,SESCO,II.1.1,Corrientes,AR-W,annual,2013,bioetanol combustion consumption by to the public,2.698231461282,TJ,N2O,0.6,kg/TJ,1.6189388767692,kg -15b181ef-209f-3529-8460-624db12a2f02,SESCO,II.1.1,Córdoba,AR-X,annual,2013,bioetanol combustion consumption by to the public,6.324620487372,TJ,CH4,10.0,kg/TJ,63.24620487372,kg -71dc620c-5a5c-3a91-b56e-2f819827cc42,SESCO,II.1.1,Córdoba,AR-X,annual,2013,bioetanol combustion consumption by to the public,6.324620487372,TJ,N2O,0.6,kg/TJ,3.7947722924232,kg -b632178c-0028-3e50-b668-3f37db1a4790,SESCO,II.1.1,Entre Rios,AR-E,annual,2013,bioetanol combustion consumption by to the public,4.101902151138,TJ,CH4,10.0,kg/TJ,41.01902151138,kg -4bb7e0a5-ede4-3e2c-940d-1df800360c9d,SESCO,II.1.1,Entre Rios,AR-E,annual,2013,bioetanol combustion consumption by to the public,4.101902151138,TJ,N2O,0.6,kg/TJ,2.4611412906827996,kg -458e2fdb-b7ac-3bf2-b9a2-4e4a90b0de1e,SESCO,II.1.1,Jujuy,AR-Y,annual,2013,bioetanol combustion consumption by to the public,0.08900018467199998,TJ,CH4,10.0,kg/TJ,0.8900018467199998,kg -4d254bff-68f2-3db5-b6fd-0c67f7cbd24c,SESCO,II.1.1,Jujuy,AR-Y,annual,2013,bioetanol combustion consumption by to the public,0.08900018467199998,TJ,N2O,0.6,kg/TJ,0.053400110803199986,kg -49a57721-59a3-3dc4-bb5b-79ef1eefc74b,SESCO,II.1.1,La Pampa,AR-L,annual,2013,bioetanol combustion consumption by to the public,0.142449454278,TJ,CH4,10.0,kg/TJ,1.4244945427799998,kg -86e853dc-c7fd-3db2-ad43-b91ed8dbad4e,SESCO,II.1.1,La Pampa,AR-L,annual,2013,bioetanol combustion consumption by to the public,0.142449454278,TJ,N2O,0.6,kg/TJ,0.08546967256679999,kg -edf4f05e-2fb3-3345-ad9f-d292997d7741,SESCO,II.1.1,La Rioja,AR-F,annual,2013,bioetanol combustion consumption by to the public,0.22046483221199997,TJ,CH4,10.0,kg/TJ,2.2046483221199997,kg -1e4e7683-7ba1-302a-ba80-d5c36a5b6da9,SESCO,II.1.1,La Rioja,AR-F,annual,2013,bioetanol combustion consumption by to the public,0.22046483221199997,TJ,N2O,0.6,kg/TJ,0.13227889932719997,kg -f98c5f0b-778b-31b4-a69d-bfbe61e4c0f9,SESCO,II.1.1,Mendoza,AR-M,annual,2013,bioetanol combustion consumption by to the public,2.636099642754,TJ,CH4,10.0,kg/TJ,26.36099642754,kg -a4ad1746-47b7-3c1c-add5-2a308d694984,SESCO,II.1.1,Mendoza,AR-M,annual,2013,bioetanol combustion consumption by to the public,2.636099642754,TJ,N2O,0.6,kg/TJ,1.5816597856524,kg -138b54d2-7ffd-30a6-b689-1fde0fba3ec0,SESCO,II.1.1,Misiones,AR-N,annual,2013,bioetanol combustion consumption by to the public,1.267046029656,TJ,CH4,10.0,kg/TJ,12.67046029656,kg -80b5f35c-6550-30dd-8ea4-8cb14fb90625,SESCO,II.1.1,Misiones,AR-N,annual,2013,bioetanol combustion consumption by to the public,1.267046029656,TJ,N2O,0.6,kg/TJ,0.7602276177935999,kg -08bc04ee-bf14-3396-b04d-4e761fcbcc1e,SESCO,II.1.1,Rio Negro,AR-R,annual,2013,bioetanol combustion consumption by to the public,0.055380216132,TJ,CH4,10.0,kg/TJ,0.5538021613199999,kg -254588ac-3a92-302c-9480-eeabdf4980b1,SESCO,II.1.1,Rio Negro,AR-R,annual,2013,bioetanol combustion consumption by to the public,0.055380216132,TJ,N2O,0.6,kg/TJ,0.0332281296792,kg -ab1f58a9-60bb-35bf-8bfb-4c4e8eac3cef,SESCO,II.1.1,San Juan,AR-J,annual,2013,bioetanol combustion consumption by to the public,2.4224464873979996,TJ,CH4,10.0,kg/TJ,24.224464873979997,kg -b50677e3-fda0-3822-957a-7528d75ba8fb,SESCO,II.1.1,San Juan,AR-J,annual,2013,bioetanol combustion consumption by to the public,2.4224464873979996,TJ,N2O,0.6,kg/TJ,1.4534678924387998,kg -78e2d74b-ca63-360c-8708-2ff4d9466ad7,SESCO,II.1.1,San Luis,AR-D,annual,2013,bioetanol combustion consumption by to the public,1.40534804547,TJ,CH4,10.0,kg/TJ,14.0534804547,kg -305d7c01-fbba-3266-8f95-6d76e5ff167f,SESCO,II.1.1,San Luis,AR-D,annual,2013,bioetanol combustion consumption by to the public,1.40534804547,TJ,N2O,0.6,kg/TJ,0.843208827282,kg -c7a8e5f8-6a90-385c-b829-f88f86fdd8a7,SESCO,II.1.1,Santa Fe,AR-S,annual,2013,bioetanol combustion consumption by to the public,9.543067501931999,TJ,CH4,10.0,kg/TJ,95.43067501931999,kg -67caa7dd-b0d7-393f-9fd6-20acea806c75,SESCO,II.1.1,Santa Fe,AR-S,annual,2013,bioetanol combustion consumption by to the public,9.543067501931999,TJ,N2O,0.6,kg/TJ,5.725840501159199,kg -a506b454-2ae5-3f8e-b9f7-808142ea8389,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2013,bioetanol combustion consumption by to the public,1.0830518908379998,TJ,CH4,10.0,kg/TJ,10.830518908379998,kg -498f1799-d8c4-3d5c-912c-5e62e3abfbfd,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2013,bioetanol combustion consumption by to the public,1.0830518908379998,TJ,N2O,0.6,kg/TJ,0.6498311345027998,kg -1d236a5e-f040-3a3b-a9d1-593634df3949,SESCO,II.1.1,Tucuman,AR-T,annual,2013,bioetanol combustion consumption by to the public,1.1563947539639998,TJ,CH4,10.0,kg/TJ,11.563947539639997,kg -2271a034-80d2-369f-98b9-365205c42e75,SESCO,II.1.1,Tucuman,AR-T,annual,2013,bioetanol combustion consumption by to the public,1.1563947539639998,TJ,N2O,0.6,kg/TJ,0.6938368523783999,kg -fb42a934-cbc6-3572-ad2c-d4a64b96b5ac,SESCO,II.5.1,Buenos Aires,AR-B,annual,2013,bioetanol combustion consumption by agriculture machines,0.17805047400000001,TJ,CH4,10.0,kg/TJ,1.78050474,kg -e6b4191a-bf8d-300f-bbe3-67f885bf792a,SESCO,II.5.1,Buenos Aires,AR-B,annual,2013,bioetanol combustion consumption by agriculture machines,0.17805047400000001,TJ,N2O,0.6,kg/TJ,0.1068302844,kg -0cf5b29d-579e-3f61-b245-d56858049d15,SESCO,II.1.1,Buenos Aires,AR-B,annual,2013,bioetanol combustion consumption by to the public,203.92169997149998,TJ,CH4,10.0,kg/TJ,2039.2169997149997,kg -e1ffcb6b-a026-31bc-8c0d-854eed27a320,SESCO,II.1.1,Buenos Aires,AR-B,annual,2013,bioetanol combustion consumption by to the public,203.92169997149998,TJ,N2O,0.6,kg/TJ,122.35301998289998,kg -b8614f78-2676-3539-ad80-134d6d4b6a26,SESCO,II.1.1,Capital Federal,AR-C,annual,2013,bioetanol combustion consumption by to the public,26.063549881559997,TJ,CH4,10.0,kg/TJ,260.6354988156,kg -1289da75-8b9a-34f8-9b3a-192e8a9c964e,SESCO,II.1.1,Capital Federal,AR-C,annual,2013,bioetanol combustion consumption by to the public,26.063549881559997,TJ,N2O,0.6,kg/TJ,15.638129928935998,kg -bf9a93f0-3906-3331-a725-55b35a310572,SESCO,II.1.1,Chaco,AR-H,annual,2013,bioetanol combustion consumption by to the public,0.22417871202,TJ,CH4,10.0,kg/TJ,2.2417871202,kg -0dec97d2-6970-3711-88be-90678e51bee0,SESCO,II.1.1,Chaco,AR-H,annual,2013,bioetanol combustion consumption by to the public,0.22417871202,TJ,N2O,0.6,kg/TJ,0.134507227212,kg -dcff42b0-b7a0-3e2e-918f-84e4e1069785,SESCO,II.1.1,Chubut,AR-U,annual,2013,bioetanol combustion consumption by to the public,60.38802950849999,TJ,CH4,10.0,kg/TJ,603.880295085,kg -1f6c50c2-edb6-3853-91d8-a181847ded9d,SESCO,II.1.1,Chubut,AR-U,annual,2013,bioetanol combustion consumption by to the public,60.38802950849999,TJ,N2O,0.6,kg/TJ,36.23281770509999,kg -5e9c3f6e-83cc-3a6c-8254-14f07efc5215,SESCO,II.1.1,Córdoba,AR-X,annual,2013,bioetanol combustion consumption by to the public,25.57849335336,TJ,CH4,10.0,kg/TJ,255.7849335336,kg -adc75b32-381b-3230-8e73-34238605cacd,SESCO,II.1.1,Córdoba,AR-X,annual,2013,bioetanol combustion consumption by to the public,25.57849335336,TJ,N2O,0.6,kg/TJ,15.347096012016,kg -f4a17320-afba-3be5-b90e-c022f8e78bb0,SESCO,II.1.1,Entre Rios,AR-E,annual,2013,bioetanol combustion consumption by to the public,4.696643011859999,TJ,CH4,10.0,kg/TJ,46.96643011859999,kg -42b85279-3c60-31a3-bf8a-15239241a030,SESCO,II.1.1,Entre Rios,AR-E,annual,2013,bioetanol combustion consumption by to the public,4.696643011859999,TJ,N2O,0.6,kg/TJ,2.8179858071159996,kg -940de736-df79-3abd-9e65-027da59331e1,SESCO,II.1.1,La Pampa,AR-L,annual,2013,bioetanol combustion consumption by to the public,9.294554287799999,TJ,CH4,10.0,kg/TJ,92.94554287799998,kg -f82f2561-5f7d-3615-b8bd-fae1722e6904,SESCO,II.1.1,La Pampa,AR-L,annual,2013,bioetanol combustion consumption by to the public,9.294554287799999,TJ,N2O,0.6,kg/TJ,5.576732572679999,kg -c5a2d17b-2527-3c43-8d85-8afd766fe861,SESCO,II.1.1,Mendoza,AR-M,annual,2013,bioetanol combustion consumption by to the public,1.35212654754,TJ,CH4,10.0,kg/TJ,13.5212654754,kg -bb3d8ab8-b101-385a-b533-8b992598dd37,SESCO,II.1.1,Mendoza,AR-M,annual,2013,bioetanol combustion consumption by to the public,1.35212654754,TJ,N2O,0.6,kg/TJ,0.811275928524,kg -3aa52d7e-b325-3f26-9302-9aab4f3258fe,SESCO,II.1.1,Neuquén,AR-Q,annual,2013,bioetanol combustion consumption by to the public,23.468725610819998,TJ,CH4,10.0,kg/TJ,234.6872561082,kg -ff3e3d1a-15d0-3cb9-8588-97d891f963e1,SESCO,II.1.1,Neuquén,AR-Q,annual,2013,bioetanol combustion consumption by to the public,23.468725610819998,TJ,N2O,0.6,kg/TJ,14.081235366491999,kg -1b721cf1-603c-3200-92e7-d39c639edabe,SESCO,II.1.1,Rio Negro,AR-R,annual,2013,bioetanol combustion consumption by to the public,43.29467656703999,TJ,CH4,10.0,kg/TJ,432.94676567039994,kg -306eb983-05a4-3fed-bb21-c8bd6f75cf9d,SESCO,II.1.1,Rio Negro,AR-R,annual,2013,bioetanol combustion consumption by to the public,43.29467656703999,TJ,N2O,0.6,kg/TJ,25.976805940223993,kg -d96a37d8-3475-35b5-9d1b-a323f98f7d42,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2013,bioetanol combustion consumption by to the public,38.11917619998,TJ,CH4,10.0,kg/TJ,381.19176199979995,kg -53a12456-b9cc-33de-bed0-1534103699f6,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2013,bioetanol combustion consumption by to the public,38.11917619998,TJ,N2O,0.6,kg/TJ,22.871505719987997,kg -4575ba7c-8611-3202-b34e-ffab72d91572,SESCO,II.1.1,Santa Fe,AR-S,annual,2013,bioetanol combustion consumption by to the public,24.914100502079997,TJ,CH4,10.0,kg/TJ,249.14100502079998,kg -9530d4a5-5ff9-37de-a7f4-4e8cd762bb84,SESCO,II.1.1,Santa Fe,AR-S,annual,2013,bioetanol combustion consumption by to the public,24.914100502079997,TJ,N2O,0.6,kg/TJ,14.948460301247998,kg -9b0d7c72-7786-3d2a-93b9-a8dec87e79ce,SESCO,II.1.1,Buenos Aires,AR-B,annual,2013,bioetanol combustion consumption by to the public,57.13028868437999,TJ,CH4,10.0,kg/TJ,571.3028868437999,kg -7f67ff6c-9a42-33ee-b638-8ec773d47ed2,SESCO,II.1.1,Buenos Aires,AR-B,annual,2013,bioetanol combustion consumption by to the public,57.13028868437999,TJ,N2O,0.6,kg/TJ,34.27817321062799,kg -43356833-b5f7-3a8e-bf69-774ccaac7ce9,SESCO,II.1.1,Capital Federal,AR-C,annual,2013,bioetanol combustion consumption by to the public,9.93314835396,TJ,CH4,10.0,kg/TJ,99.3314835396,kg -463ff531-82aa-3d65-bd03-86a1f8b83277,SESCO,II.1.1,Capital Federal,AR-C,annual,2013,bioetanol combustion consumption by to the public,9.93314835396,TJ,N2O,0.6,kg/TJ,5.959889012376,kg -99f69b7d-5568-3b5f-9dd6-47fd899e4b48,SESCO,II.1.1,Chubut,AR-U,annual,2013,bioetanol combustion consumption by to the public,10.02168404802,TJ,CH4,10.0,kg/TJ,100.21684048019999,kg -52015a22-b166-3fe2-8dc2-96a54ba77440,SESCO,II.1.1,Chubut,AR-U,annual,2013,bioetanol combustion consumption by to the public,10.02168404802,TJ,N2O,0.6,kg/TJ,6.013010428812,kg -46011b35-7d5e-31cb-99d0-663dd145a8cd,SESCO,II.1.1,Córdoba,AR-X,annual,2013,bioetanol combustion consumption by to the public,6.2045605287,TJ,CH4,10.0,kg/TJ,62.045605287,kg -18dd375d-33bc-3a6f-b04f-7f2f8fbc5a56,SESCO,II.1.1,Córdoba,AR-X,annual,2013,bioetanol combustion consumption by to the public,6.2045605287,TJ,N2O,0.6,kg/TJ,3.72273631722,kg -a58473e1-a0bf-3b1e-a25f-171f149e8379,SESCO,II.1.1,Entre Rios,AR-E,annual,2013,bioetanol combustion consumption by to the public,1.1906029409399999,TJ,CH4,10.0,kg/TJ,11.906029409399999,kg -f1084135-a0f0-3cab-9a37-dbb388bbc438,SESCO,II.1.1,Entre Rios,AR-E,annual,2013,bioetanol combustion consumption by to the public,1.1906029409399999,TJ,N2O,0.6,kg/TJ,0.7143617645639999,kg -c45aa948-1cc8-3bfb-8f68-4254d5e2a98c,SESCO,II.1.1,La Pampa,AR-L,annual,2013,bioetanol combustion consumption by to the public,2.2508174618999996,TJ,CH4,10.0,kg/TJ,22.508174618999995,kg -da10012d-b18e-320b-87e0-eb6485179314,SESCO,II.1.1,La Pampa,AR-L,annual,2013,bioetanol combustion consumption by to the public,2.2508174618999996,TJ,N2O,0.6,kg/TJ,1.3504904771399997,kg -e9b8a04e-7b91-3f9e-8952-e32760e1bb9b,SESCO,II.1.1,Mendoza,AR-M,annual,2013,bioetanol combustion consumption by to the public,0.12854144988,TJ,CH4,10.0,kg/TJ,1.2854144987999998,kg -1a250e15-c268-3d2d-99b3-6ed736af831b,SESCO,II.1.1,Mendoza,AR-M,annual,2013,bioetanol combustion consumption by to the public,0.12854144988,TJ,N2O,0.6,kg/TJ,0.077124869928,kg -6a5792fc-d8b6-3a54-b58b-01181ec8c3b9,SESCO,II.1.1,Neuquén,AR-Q,annual,2013,bioetanol combustion consumption by to the public,6.69532540878,TJ,CH4,10.0,kg/TJ,66.95325408779999,kg -d65244e4-0941-3e18-9564-d209b39618f4,SESCO,II.1.1,Neuquén,AR-Q,annual,2013,bioetanol combustion consumption by to the public,6.69532540878,TJ,N2O,0.6,kg/TJ,4.017195245268,kg -5f440fee-6ee3-3e0c-a55e-690ba1b1c9fc,SESCO,II.1.1,Rio Negro,AR-R,annual,2013,bioetanol combustion consumption by to the public,8.0957556567,TJ,CH4,10.0,kg/TJ,80.957556567,kg -a43e3b7f-ede5-39ee-861b-3e1206c6414d,SESCO,II.1.1,Rio Negro,AR-R,annual,2013,bioetanol combustion consumption by to the public,8.0957556567,TJ,N2O,0.6,kg/TJ,4.857453394019999,kg -3e2fb5ea-0582-35e1-85ca-031860303547,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2013,bioetanol combustion consumption by to the public,7.519972633919999,TJ,CH4,10.0,kg/TJ,75.1997263392,kg -4f84fa7d-00b7-30e8-b1de-e09a17dfffe0,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2013,bioetanol combustion consumption by to the public,7.519972633919999,TJ,N2O,0.6,kg/TJ,4.511983580351999,kg -289a20d1-e552-3a5b-ac25-c437729bd988,SESCO,II.1.1,Santa Fe,AR-S,annual,2013,bioetanol combustion consumption by to the public,8.589115242179998,TJ,CH4,10.0,kg/TJ,85.89115242179999,kg -46d9ebda-f9ac-392e-93ce-0568a29077ec,SESCO,II.1.1,Santa Fe,AR-S,annual,2013,bioetanol combustion consumption by to the public,8.589115242179998,TJ,N2O,0.6,kg/TJ,5.153469145307999,kg -c8de6e3a-d368-312c-9a8a-dc0554f0eff5,SESCO,II.1.1,Buenos Aires,AR-B,annual,2013,bioetanol combustion consumption by freight transport,0.00503347284,TJ,CH4,10.0,kg/TJ,0.0503347284,kg -5eca818f-8c93-327b-8a95-b418bcbde3eb,SESCO,II.1.1,Buenos Aires,AR-B,annual,2013,bioetanol combustion consumption by freight transport,0.00503347284,TJ,N2O,0.6,kg/TJ,0.003020083704,kg -7df039a5-d1d4-3f38-808f-0c89375d5200,SESCO,II.1.1,Buenos Aires,AR-B,annual,2013,bioetanol combustion consumption by to the public,1.5591239639999996,TJ,CH4,10.0,kg/TJ,15.591239639999996,kg -6defd76c-6b18-3047-9439-c47da7698c9b,SESCO,II.1.1,Buenos Aires,AR-B,annual,2013,bioetanol combustion consumption by to the public,1.5591239639999996,TJ,N2O,0.6,kg/TJ,0.9354743783999997,kg -9a5ff45a-f5a4-3329-a8c5-29f9a1f16a46,SESCO,II.1.1,Capital Federal,AR-C,annual,2013,bioetanol combustion consumption by to the public,0.47676113999999997,TJ,CH4,10.0,kg/TJ,4.7676114,kg -bd06546f-91f6-3969-88e7-a085e3519fb3,SESCO,II.1.1,Capital Federal,AR-C,annual,2013,bioetanol combustion consumption by to the public,0.47676113999999997,TJ,N2O,0.6,kg/TJ,0.28605668399999995,kg -c6418e8a-f394-3321-b4d0-841d91125e91,SESCO,II.1.1,Córdoba,AR-X,annual,2013,bioetanol combustion consumption by to the public,0.09202896,TJ,CH4,10.0,kg/TJ,0.9202896,kg -8db99f8f-c2c4-37c7-b422-06fc8869faf8,SESCO,II.1.1,Córdoba,AR-X,annual,2013,bioetanol combustion consumption by to the public,0.09202896,TJ,N2O,0.6,kg/TJ,0.055217376000000006,kg -12c821e7-8911-3aea-b489-f8bfb80d4f09,SESCO,II.1.1,Entre Rios,AR-E,annual,2013,bioetanol combustion consumption by to the public,0.0894726,TJ,CH4,10.0,kg/TJ,0.894726,kg -40e08d19-493b-356b-960c-dff5c75b5316,SESCO,II.1.1,Entre Rios,AR-E,annual,2013,bioetanol combustion consumption by to the public,0.0894726,TJ,N2O,0.6,kg/TJ,0.05368356,kg -ea6282a3-c5d6-388a-b7d5-4d9c2871f685,SESCO,II.1.1,Santa Fe,AR-S,annual,2013,bioetanol combustion consumption by to the public,0.53555742,TJ,CH4,10.0,kg/TJ,5.3555741999999995,kg -a39c1151-13bc-3295-9455-173fe8710a51,SESCO,II.1.1,Santa Fe,AR-S,annual,2013,bioetanol combustion consumption by to the public,0.53555742,TJ,N2O,0.6,kg/TJ,0.32133445199999994,kg -44134449-185d-3159-887a-61ce2a3ed5cf,SESCO,II.1.1,Buenos Aires,AR-B,annual,2013,bioetanol combustion consumption by to the public,50.30993170799999,TJ,CH4,10.0,kg/TJ,503.09931707999993,kg -28b4c3e2-18db-32d6-8abc-6ac047cdddc7,SESCO,II.1.1,Buenos Aires,AR-B,annual,2013,bioetanol combustion consumption by to the public,50.30993170799999,TJ,N2O,0.6,kg/TJ,30.185959024799995,kg -457f177a-24d8-31cf-bd58-59be79f220b3,SESCO,II.1.1,Capital Federal,AR-C,annual,2013,bioetanol combustion consumption by to the public,7.3124677799999995,TJ,CH4,10.0,kg/TJ,73.1246778,kg -c3091c87-beb2-3d6c-90f2-db026af1785d,SESCO,II.1.1,Capital Federal,AR-C,annual,2013,bioetanol combustion consumption by to the public,7.3124677799999995,TJ,N2O,0.6,kg/TJ,4.387480667999999,kg -8b65ed5d-e2f8-3b38-9215-8d0f50c0bc50,SESCO,II.1.1,Chaco,AR-H,annual,2013,bioetanol combustion consumption by to the public,0.11631438,TJ,CH4,10.0,kg/TJ,1.1631437999999998,kg -7c149d3b-a5d2-3896-b1ac-e03c5e64628f,SESCO,II.1.1,Chaco,AR-H,annual,2013,bioetanol combustion consumption by to the public,0.11631438,TJ,N2O,0.6,kg/TJ,0.06978862799999999,kg -72bdb365-4bdc-3f53-ae6a-ddfafec4fefe,SESCO,II.1.1,Córdoba,AR-X,annual,2013,bioetanol combustion consumption by to the public,10.432505159999998,TJ,CH4,10.0,kg/TJ,104.32505159999998,kg -0d3cd468-59f9-3a22-b0c6-621b44ffe395,SESCO,II.1.1,Córdoba,AR-X,annual,2013,bioetanol combustion consumption by to the public,10.432505159999998,TJ,N2O,0.6,kg/TJ,6.259503095999999,kg -faf41523-d84d-3a65-af4e-c2f4ca3d08a6,SESCO,II.1.1,Entre Rios,AR-E,annual,2013,bioetanol combustion consumption by to the public,7.25750604,TJ,CH4,10.0,kg/TJ,72.5750604,kg -7fe0eef8-c699-3d22-bf2e-17a2576c0534,SESCO,II.1.1,Entre Rios,AR-E,annual,2013,bioetanol combustion consumption by to the public,7.25750604,TJ,N2O,0.6,kg/TJ,4.3545036239999995,kg -217f020c-0de7-30d1-97fb-ee30714e74a9,SESCO,II.1.1,Rio Negro,AR-R,annual,2013,bioetanol combustion consumption by to the public,0.017894519999999997,TJ,CH4,10.0,kg/TJ,0.17894519999999997,kg -f60e8180-9ac2-3058-a727-cfc25fe76661,SESCO,II.1.1,Rio Negro,AR-R,annual,2013,bioetanol combustion consumption by to the public,0.017894519999999997,TJ,N2O,0.6,kg/TJ,0.010736711999999997,kg -5748738b-7fe9-3445-891f-828ceae19459,SESCO,II.1.1,Santa Fe,AR-S,annual,2013,bioetanol combustion consumption by to the public,5.5620002699999995,TJ,CH4,10.0,kg/TJ,55.62000269999999,kg -c92c2894-8b6b-3e15-9cc8-ba23f12807f0,SESCO,II.1.1,Santa Fe,AR-S,annual,2013,bioetanol combustion consumption by to the public,5.5620002699999995,TJ,N2O,0.6,kg/TJ,3.337200162,kg -cbc74162-5021-32e8-bca7-ce510770be47,SESCO,II.1.1,Buenos Aires,AR-B,annual,2013,bioetanol combustion consumption by to the public,5.525444321999999,TJ,CH4,10.0,kg/TJ,55.25444321999999,kg -9d748f47-65ac-322c-9eea-fc105472d937,SESCO,II.1.1,Buenos Aires,AR-B,annual,2013,bioetanol combustion consumption by to the public,5.525444321999999,TJ,N2O,0.6,kg/TJ,3.3152665931999996,kg -8c65e8fb-a3b8-3c08-bf1a-8e89a1fa754a,SESCO,II.1.1,Capital Federal,AR-C,annual,2013,bioetanol combustion consumption by to the public,0.5240537999999999,TJ,CH4,10.0,kg/TJ,5.240537999999999,kg -4e9cc5ca-1738-32a8-b706-0be58662f967,SESCO,II.1.1,Capital Federal,AR-C,annual,2013,bioetanol combustion consumption by to the public,0.5240537999999999,TJ,N2O,0.6,kg/TJ,0.31443227999999995,kg -167b8b92-37e0-338f-88e3-d6db87e593d1,SESCO,II.1.1,Chaco,AR-H,annual,2013,bioetanol combustion consumption by to the public,0.0063909,TJ,CH4,10.0,kg/TJ,0.063909,kg -5ffc931d-4661-3fb4-bea6-33e63e451093,SESCO,II.1.1,Chaco,AR-H,annual,2013,bioetanol combustion consumption by to the public,0.0063909,TJ,N2O,0.6,kg/TJ,0.0038345399999999996,kg -5fab936e-a3d9-335e-9a59-fe102856794b,SESCO,II.1.1,Córdoba,AR-X,annual,2013,bioetanol combustion consumption by to the public,0.6774353999999999,TJ,CH4,10.0,kg/TJ,6.774353999999999,kg -bcd66ff2-3102-3c27-beca-660f2de3a3e3,SESCO,II.1.1,Córdoba,AR-X,annual,2013,bioetanol combustion consumption by to the public,0.6774353999999999,TJ,N2O,0.6,kg/TJ,0.40646123999999995,kg -99aa52a7-25b7-3797-89a7-deee3ba41679,SESCO,II.1.1,Entre Rios,AR-E,annual,2013,bioetanol combustion consumption by to the public,0.6927735599999999,TJ,CH4,10.0,kg/TJ,6.927735599999999,kg -7c330355-2f5c-3183-a0da-876da009d989,SESCO,II.1.1,Entre Rios,AR-E,annual,2013,bioetanol combustion consumption by to the public,0.6927735599999999,TJ,N2O,0.6,kg/TJ,0.4156641359999999,kg -894201e6-a809-31c3-9cb4-a4a5252d9307,SESCO,II.1.1,Santa Fe,AR-S,annual,2013,bioetanol combustion consumption by to the public,0.80397522,TJ,CH4,10.0,kg/TJ,8.0397522,kg -93390aa1-1b91-3447-ab38-dc689793206e,SESCO,II.1.1,Santa Fe,AR-S,annual,2013,bioetanol combustion consumption by to the public,0.80397522,TJ,N2O,0.6,kg/TJ,0.482385132,kg -d9c93d05-259d-331d-9278-b1b27c86779c,SESCO,II.1.1,Catamarca,AR-K,annual,2013,bioetanol combustion consumption by to the public,1.1648182157999998,TJ,CH4,10.0,kg/TJ,11.648182157999997,kg -5ded5787-c463-3202-a086-7002dcbf5fd9,SESCO,II.1.1,Catamarca,AR-K,annual,2013,bioetanol combustion consumption by to the public,1.1648182157999998,TJ,N2O,0.6,kg/TJ,0.6988909294799999,kg -c71bd35c-4321-3e92-ba4c-be26ead0a1ce,SESCO,II.1.1,Chaco,AR-H,annual,2013,bioetanol combustion consumption by to the public,4.0397006718,TJ,CH4,10.0,kg/TJ,40.397006718,kg -49a576a5-16e8-3f80-83d8-20ffa90f7364,SESCO,II.1.1,Chaco,AR-H,annual,2013,bioetanol combustion consumption by to the public,4.0397006718,TJ,N2O,0.6,kg/TJ,2.42382040308,kg -a240de46-a4fe-3ae7-b423-df9b42ad2073,SESCO,II.1.1,Córdoba,AR-X,annual,2013,bioetanol combustion consumption by to the public,0.05836169879999999,TJ,CH4,10.0,kg/TJ,0.583616988,kg -fcdb7cb0-c1a9-37a2-9e4f-81dccff10a27,SESCO,II.1.1,Córdoba,AR-X,annual,2013,bioetanol combustion consumption by to the public,0.05836169879999999,TJ,N2O,0.6,kg/TJ,0.03501701927999999,kg -0ce732e2-e4b6-34a0-8083-4547c3ac8116,SESCO,II.1.1,Jujuy,AR-Y,annual,2013,bioetanol combustion consumption by to the public,3.4878848021999995,TJ,CH4,10.0,kg/TJ,34.87884802199999,kg -ccf60113-e3ed-3fe3-bc8b-0188524d27c0,SESCO,II.1.1,Jujuy,AR-Y,annual,2013,bioetanol combustion consumption by to the public,3.4878848021999995,TJ,N2O,0.6,kg/TJ,2.0927308813199996,kg -2c4ebfed-61b4-332f-b67f-5e85fe4a86e9,SESCO,II.1.1,La Rioja,AR-F,annual,2013,bioetanol combustion consumption by to the public,1.1128601987999998,TJ,CH4,10.0,kg/TJ,11.128601987999998,kg -74c67c47-b815-38e0-8918-a563dfaee1e7,SESCO,II.1.1,La Rioja,AR-F,annual,2013,bioetanol combustion consumption by to the public,1.1128601987999998,TJ,N2O,0.6,kg/TJ,0.6677161192799999,kg -d82830ba-c2c6-33fe-aeda-7a4e5424b1e8,SESCO,II.1.1,Salta,AR-A,annual,2013,bioetanol combustion consumption by to the public,6.0454974186,TJ,CH4,10.0,kg/TJ,60.454974186,kg -6cc10174-fad4-3680-a7b7-57f75267580e,SESCO,II.1.1,Salta,AR-A,annual,2013,bioetanol combustion consumption by to the public,6.0454974186,TJ,N2O,0.6,kg/TJ,3.6272984511599997,kg -2cfcc550-5982-38b9-b85c-4b55d54115b9,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2013,bioetanol combustion consumption by to the public,1.0414099367999998,TJ,CH4,10.0,kg/TJ,10.414099367999999,kg -0da21498-973c-3825-8f9a-3aa0ec063473,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2013,bioetanol combustion consumption by to the public,1.0414099367999998,TJ,N2O,0.6,kg/TJ,0.6248459620799999,kg -3a224ecf-2041-3757-bc0c-59f5ee0ef50a,SESCO,II.1.1,Tucuman,AR-T,annual,2013,bioetanol combustion consumption by to the public,3.8835837665999997,TJ,CH4,10.0,kg/TJ,38.835837665999996,kg -f076723c-371d-3be5-8104-c09369f3bc8d,SESCO,II.1.1,Tucuman,AR-T,annual,2013,bioetanol combustion consumption by to the public,3.8835837665999997,TJ,N2O,0.6,kg/TJ,2.33015025996,kg -ce101075-fa2c-301c-ae2c-6938551f4cc6,SESCO,II.1.1,Catamarca,AR-K,annual,2013,bioetanol combustion consumption by to the public,9.585225201599998,TJ,CH4,10.0,kg/TJ,95.85225201599998,kg -92230898-9401-3366-9c72-ac0e88c1c8ae,SESCO,II.1.1,Catamarca,AR-K,annual,2013,bioetanol combustion consumption by to the public,9.585225201599998,TJ,N2O,0.6,kg/TJ,5.751135120959999,kg -a57d102a-d475-3022-ab6a-706e4a09ac65,SESCO,II.1.1,Chaco,AR-H,annual,2013,bioetanol combustion consumption by to the public,3.702312279,TJ,CH4,10.0,kg/TJ,37.02312279,kg -caedfbeb-46e6-3153-a45e-d573c4163fc3,SESCO,II.1.1,Chaco,AR-H,annual,2013,bioetanol combustion consumption by to the public,3.702312279,TJ,N2O,0.6,kg/TJ,2.2213873673999998,kg -d250f383-b8fa-30b6-80b9-2dc1d573e43e,SESCO,II.1.1,Córdoba,AR-X,annual,2013,bioetanol combustion consumption by to the public,0.9187813475999999,TJ,CH4,10.0,kg/TJ,9.187813475999999,kg -dc0ff389-fafc-3fc4-80c2-8283d6080581,SESCO,II.1.1,Córdoba,AR-X,annual,2013,bioetanol combustion consumption by to the public,0.9187813475999999,TJ,N2O,0.6,kg/TJ,0.5512688085599999,kg -41351225-abdb-3cfd-acf5-fa1539a64dcd,SESCO,II.1.1,Jujuy,AR-Y,annual,2013,bioetanol combustion consumption by to the public,20.3134884318,TJ,CH4,10.0,kg/TJ,203.134884318,kg -2e4d2437-9078-3478-802b-515ae1c1e85c,SESCO,II.1.1,Jujuy,AR-Y,annual,2013,bioetanol combustion consumption by to the public,20.3134884318,TJ,N2O,0.6,kg/TJ,12.18809305908,kg -5063de35-86a6-3cef-9049-61fae7d62003,SESCO,II.1.1,La Rioja,AR-F,annual,2013,bioetanol combustion consumption by to the public,9.848197954799998,TJ,CH4,10.0,kg/TJ,98.48197954799998,kg -7b7a851e-1ef6-325c-804c-61b525eeb6e4,SESCO,II.1.1,La Rioja,AR-F,annual,2013,bioetanol combustion consumption by to the public,9.848197954799998,TJ,N2O,0.6,kg/TJ,5.908918772879999,kg -c3b1a110-3810-3356-8d04-5a45be4f1fcc,SESCO,II.1.1,Salta,AR-A,annual,2013,bioetanol combustion consumption by to the public,39.78918100079999,TJ,CH4,10.0,kg/TJ,397.89181000799994,kg -87b4727a-28cc-373c-8d4f-1fb937f2c7e8,SESCO,II.1.1,Salta,AR-A,annual,2013,bioetanol combustion consumption by to the public,39.78918100079999,TJ,N2O,0.6,kg/TJ,23.873508600479994,kg -fcf0f167-a7a9-39ff-b9e2-02f68e896cb9,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2013,bioetanol combustion consumption by to the public,11.249198271,TJ,CH4,10.0,kg/TJ,112.49198270999999,kg -77ea673d-4465-32b3-bdcc-f871ae2b0a54,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2013,bioetanol combustion consumption by to the public,11.249198271,TJ,N2O,0.6,kg/TJ,6.749518962599999,kg -a90b72d0-e8f4-3c5c-9040-9d0c6b45552b,SESCO,II.1.1,Tucuman,AR-T,annual,2013,bioetanol combustion consumption by to the public,67.12160317559999,TJ,CH4,10.0,kg/TJ,671.2160317559999,kg -f3bfffdd-d5f4-3162-aad8-a08b2554f286,SESCO,II.1.1,Tucuman,AR-T,annual,2013,bioetanol combustion consumption by to the public,67.12160317559999,TJ,N2O,0.6,kg/TJ,40.27296190535999,kg -d2d476fd-b2e1-3b9d-9fe6-49dbc50567e7,SESCO,II.1.1,Catamarca,AR-K,annual,2013,bioetanol combustion consumption by to the public,0.6177188304,TJ,CH4,10.0,kg/TJ,6.1771883039999995,kg -e60ec1af-30e8-3bfb-aaa7-77da8e00a7ba,SESCO,II.1.1,Catamarca,AR-K,annual,2013,bioetanol combustion consumption by to the public,0.6177188304,TJ,N2O,0.6,kg/TJ,0.37063129823999996,kg -e9663d33-5cd8-3c3e-bcd4-6a8bf28c6f42,SESCO,II.1.1,Chaco,AR-H,annual,2013,bioetanol combustion consumption by to the public,0.058425607799999994,TJ,CH4,10.0,kg/TJ,0.5842560779999999,kg -4a4a8e48-fb95-3c02-bc5a-d5faa4450f96,SESCO,II.1.1,Chaco,AR-H,annual,2013,bioetanol combustion consumption by to the public,0.058425607799999994,TJ,N2O,0.6,kg/TJ,0.03505536467999999,kg -31af1263-60fd-3c1f-ab31-c119d528c87a,SESCO,II.1.1,Córdoba,AR-X,annual,2013,bioetanol combustion consumption by to the public,0.149674878,TJ,CH4,10.0,kg/TJ,1.4967487800000001,kg -d7b626a4-00ca-3aa8-8e97-622929b918bd,SESCO,II.1.1,Córdoba,AR-X,annual,2013,bioetanol combustion consumption by to the public,0.149674878,TJ,N2O,0.6,kg/TJ,0.0898049268,kg -91150392-1d34-3e25-a6a9-9ee8dcf59d33,SESCO,II.1.1,Jujuy,AR-Y,annual,2013,bioetanol combustion consumption by to the public,1.2104620235999999,TJ,CH4,10.0,kg/TJ,12.104620235999999,kg -88c0b465-b60b-32fb-a3f4-eecbae56063f,SESCO,II.1.1,Jujuy,AR-Y,annual,2013,bioetanol combustion consumption by to the public,1.2104620235999999,TJ,N2O,0.6,kg/TJ,0.7262772141599999,kg -7c2157b7-3f9f-3932-9f75-73ff7b2dbedd,SESCO,II.1.1,La Rioja,AR-F,annual,2013,bioetanol combustion consumption by to the public,0.40414773419999994,TJ,CH4,10.0,kg/TJ,4.041477341999999,kg -1b0cb974-d6fc-32d3-ae6c-cf5c9e0b04c3,SESCO,II.1.1,La Rioja,AR-F,annual,2013,bioetanol combustion consumption by to the public,0.40414773419999994,TJ,N2O,0.6,kg/TJ,0.24248864051999997,kg -3afdd4cc-bda5-39a2-a8c0-a2953cc70ece,SESCO,II.1.1,Salta,AR-A,annual,2013,bioetanol combustion consumption by to the public,2.1481859988,TJ,CH4,10.0,kg/TJ,21.481859987999997,kg -22166ea5-29e4-3beb-bb60-ff7e8792dd18,SESCO,II.1.1,Salta,AR-A,annual,2013,bioetanol combustion consumption by to the public,2.1481859988,TJ,N2O,0.6,kg/TJ,1.2889115992799998,kg -fabf5490-1e43-3771-9aac-c5486b6e2d3e,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2013,bioetanol combustion consumption by to the public,1.133937387,TJ,CH4,10.0,kg/TJ,11.33937387,kg -c781928f-7046-31b4-939b-124eb9d10fff,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2013,bioetanol combustion consumption by to the public,1.133937387,TJ,N2O,0.6,kg/TJ,0.6803624322,kg -dd3f5077-cd39-306c-b04f-83bb07617f1d,SESCO,II.1.1,Tucuman,AR-T,annual,2013,bioetanol combustion consumption by to the public,4.183879375799999,TJ,CH4,10.0,kg/TJ,41.838793757999994,kg -cfa75aaa-42d4-38c6-b75d-55c62e5771bb,SESCO,II.1.1,Tucuman,AR-T,annual,2013,bioetanol combustion consumption by to the public,4.183879375799999,TJ,N2O,0.6,kg/TJ,2.5103276254799995,kg -f9f86abf-673f-3d55-9729-ee21a0303e26,SESCO,II.5.1,Capital Federal,AR-C,annual,2013,bioetanol combustion consumption by agriculture machines,0.015338159999999998,TJ,CH4,10.0,kg/TJ,0.15338159999999998,kg -77df070e-aeff-38df-9458-9cf935467ec2,SESCO,II.5.1,Capital Federal,AR-C,annual,2013,bioetanol combustion consumption by agriculture machines,0.015338159999999998,TJ,N2O,0.6,kg/TJ,0.009202895999999999,kg -8ab734d1-12b3-3f93-9365-68353ec9c2ec,SESCO,II.5.1,Santa Fe,AR-S,annual,2013,bioetanol combustion consumption by agriculture machines,1.2871272599999999,TJ,CH4,10.0,kg/TJ,12.8712726,kg -fd76383f-8cc8-31d9-9c65-eb03c0e52cef,SESCO,II.5.1,Santa Fe,AR-S,annual,2013,bioetanol combustion consumption by agriculture machines,1.2871272599999999,TJ,N2O,0.6,kg/TJ,0.7722763559999999,kg -e6b93b23-9650-32af-a22c-01eadb7629aa,SESCO,II.1.1,Buenos Aires,AR-B,annual,2013,bioetanol combustion consumption by to the public,29.456936279999997,TJ,CH4,10.0,kg/TJ,294.56936279999996,kg -c79a0e2d-d1f5-301d-beda-deb289205b3a,SESCO,II.1.1,Buenos Aires,AR-B,annual,2013,bioetanol combustion consumption by to the public,29.456936279999997,TJ,N2O,0.6,kg/TJ,17.674161767999998,kg -527ccb3a-5288-3283-9091-2af5e7dab78c,SESCO,II.1.1,Capital Federal,AR-C,annual,2013,bioetanol combustion consumption by to the public,0.40262669999999995,TJ,CH4,10.0,kg/TJ,4.026267,kg -2f47e91b-3d68-30c9-9bdc-2952f52c6f82,SESCO,II.1.1,Capital Federal,AR-C,annual,2013,bioetanol combustion consumption by to the public,0.40262669999999995,TJ,N2O,0.6,kg/TJ,0.24157601999999995,kg -b294e061-d051-34df-8e32-798c05e703b4,SESCO,II.1.1,Chaco,AR-H,annual,2013,bioetanol combustion consumption by to the public,0.8205915599999999,TJ,CH4,10.0,kg/TJ,8.205915599999999,kg -06b2246a-f171-3cec-ad17-d37dd4993bfd,SESCO,II.1.1,Chaco,AR-H,annual,2013,bioetanol combustion consumption by to the public,0.8205915599999999,TJ,N2O,0.6,kg/TJ,0.4923549359999999,kg -7340b9dc-3e90-39b0-82a5-da728dea4919,SESCO,II.1.1,Entre Rios,AR-E,annual,2013,bioetanol combustion consumption by to the public,0.8845005599999999,TJ,CH4,10.0,kg/TJ,8.845005599999999,kg -b79cfd5c-81ed-301f-ac09-d734b738f8e4,SESCO,II.1.1,Entre Rios,AR-E,annual,2013,bioetanol combustion consumption by to the public,0.8845005599999999,TJ,N2O,0.6,kg/TJ,0.5307003359999999,kg -e96556dc-730e-3327-8fec-b87996706489,SESCO,II.1.1,Mendoza,AR-M,annual,2013,bioetanol combustion consumption by to the public,1.87636824,TJ,CH4,10.0,kg/TJ,18.7636824,kg -06d8082f-ebcf-363d-a6a3-b72e4eba771b,SESCO,II.1.1,Mendoza,AR-M,annual,2013,bioetanol combustion consumption by to the public,1.87636824,TJ,N2O,0.6,kg/TJ,1.125820944,kg -0a0f194b-e3d2-32c8-8f79-76624d4c1a67,SESCO,II.1.1,Misiones,AR-N,annual,2013,bioetanol combustion consumption by to the public,0.48698657999999995,TJ,CH4,10.0,kg/TJ,4.8698657999999995,kg -9203577d-b1fc-38ea-8282-f11a54c11d3f,SESCO,II.1.1,Misiones,AR-N,annual,2013,bioetanol combustion consumption by to the public,0.48698657999999995,TJ,N2O,0.6,kg/TJ,0.292191948,kg -b423b4c4-410b-3858-be9c-5bbde34666c3,SESCO,II.1.1,Neuquén,AR-Q,annual,2013,bioetanol combustion consumption by to the public,0.39495761999999995,TJ,CH4,10.0,kg/TJ,3.9495761999999996,kg -4da8d44f-2620-3db1-89a1-624ced0a4752,SESCO,II.1.1,Neuquén,AR-Q,annual,2013,bioetanol combustion consumption by to the public,0.39495761999999995,TJ,N2O,0.6,kg/TJ,0.23697457199999997,kg -b397c06b-5236-31de-97fd-091da0b60faf,SESCO,II.1.1,Santa Fe,AR-S,annual,2013,bioetanol combustion consumption by to the public,0.008947259999999999,TJ,CH4,10.0,kg/TJ,0.08947259999999999,kg -520e5680-5b76-3fc9-942e-e1ded6e8ac9b,SESCO,II.1.1,Santa Fe,AR-S,annual,2013,bioetanol combustion consumption by to the public,0.008947259999999999,TJ,N2O,0.6,kg/TJ,0.005368355999999999,kg -ce9a127c-561c-3efb-8f67-b002a3d33369,SESCO,II.1.1,Tucuman,AR-T,annual,2013,bioetanol combustion consumption by to the public,0.49849019999999994,TJ,CH4,10.0,kg/TJ,4.984901999999999,kg -b8dce79e-6a87-3aad-84fe-b2b2be299d6f,SESCO,II.1.1,Tucuman,AR-T,annual,2013,bioetanol combustion consumption by to the public,0.49849019999999994,TJ,N2O,0.6,kg/TJ,0.29909411999999996,kg -3beb26b1-c947-321f-9290-baf125646b33,SESCO,II.1.1,Buenos Aires,AR-B,annual,2013,bioetanol combustion consumption by to the public,589.3304526,TJ,CH4,10.0,kg/TJ,5893.304526,kg -64f8f682-3f6e-30d6-a9c0-1ebd4ada7c88,SESCO,II.1.1,Buenos Aires,AR-B,annual,2013,bioetanol combustion consumption by to the public,589.3304526,TJ,N2O,0.6,kg/TJ,353.59827155999994,kg -cae4a9d1-9143-3be6-8411-c48fbb428311,SESCO,II.1.1,Capital Federal,AR-C,annual,2013,bioetanol combustion consumption by to the public,171.59438681999998,TJ,CH4,10.0,kg/TJ,1715.9438681999998,kg -a5ec758b-07bd-33bd-aa01-1696c1b454ca,SESCO,II.1.1,Capital Federal,AR-C,annual,2013,bioetanol combustion consumption by to the public,171.59438681999998,TJ,N2O,0.6,kg/TJ,102.95663209199999,kg -1bffde3d-d7be-30b7-941c-9356e8749f20,SESCO,II.1.1,Catamarca,AR-K,annual,2013,bioetanol combustion consumption by to the public,2.2879422,TJ,CH4,10.0,kg/TJ,22.879421999999998,kg -9e852807-f8ee-3fbc-a63b-ef5a21e0aa79,SESCO,II.1.1,Catamarca,AR-K,annual,2013,bioetanol combustion consumption by to the public,2.2879422,TJ,N2O,0.6,kg/TJ,1.3727653199999998,kg -84201e6d-2fb4-3ef2-952d-2214a4a2e65a,SESCO,II.1.1,Chaco,AR-H,annual,2013,bioetanol combustion consumption by to the public,33.20456004,TJ,CH4,10.0,kg/TJ,332.04560039999996,kg -7cd93ad4-b061-3d1a-b398-885292ab3a0e,SESCO,II.1.1,Chaco,AR-H,annual,2013,bioetanol combustion consumption by to the public,33.20456004,TJ,N2O,0.6,kg/TJ,19.922736024,kg -abe46538-e3eb-35c7-898b-f0465a3702aa,SESCO,II.1.1,Chubut,AR-U,annual,2013,bioetanol combustion consumption by to the public,1.72426482,TJ,CH4,10.0,kg/TJ,17.242648199999998,kg -1d54af5b-6475-34f3-9b6f-a4a68d3cf21d,SESCO,II.1.1,Chubut,AR-U,annual,2013,bioetanol combustion consumption by to the public,1.72426482,TJ,N2O,0.6,kg/TJ,1.034558892,kg -24817aaa-da8d-3456-a411-809ac4173999,SESCO,II.1.1,Corrientes,AR-W,annual,2013,bioetanol combustion consumption by to the public,33.98808438,TJ,CH4,10.0,kg/TJ,339.8808438,kg -93b31ff4-a70c-3cc8-a0dd-e596b7ffb5cf,SESCO,II.1.1,Corrientes,AR-W,annual,2013,bioetanol combustion consumption by to the public,33.98808438,TJ,N2O,0.6,kg/TJ,20.392850627999998,kg -53921225-e5cc-3735-94cf-6bf61d8b21fe,SESCO,II.1.1,Córdoba,AR-X,annual,2013,bioetanol combustion consumption by to the public,122.60046924,TJ,CH4,10.0,kg/TJ,1226.0046923999998,kg -86d389b1-6fd6-31d5-b1fe-0ba7c3d3220b,SESCO,II.1.1,Córdoba,AR-X,annual,2013,bioetanol combustion consumption by to the public,122.60046924,TJ,N2O,0.6,kg/TJ,73.56028154399999,kg -5d3956cf-4224-34af-a52e-ebc91703cfbe,SESCO,II.1.1,Entre Rios,AR-E,annual,2013,bioetanol combustion consumption by to the public,38.72757581999999,TJ,CH4,10.0,kg/TJ,387.2757581999999,kg -48369f8f-883d-33ac-8847-e35f3478a3d1,SESCO,II.1.1,Entre Rios,AR-E,annual,2013,bioetanol combustion consumption by to the public,38.72757581999999,TJ,N2O,0.6,kg/TJ,23.236545491999994,kg -cb53a59d-bd04-3f1f-9fe7-37ab10230db5,SESCO,II.1.1,Formosa,AR-P,annual,2013,bioetanol combustion consumption by to the public,17.64910944,TJ,CH4,10.0,kg/TJ,176.4910944,kg -f6e54bfd-6f18-34c7-bd1f-9b338d7a3fd8,SESCO,II.1.1,Formosa,AR-P,annual,2013,bioetanol combustion consumption by to the public,17.64910944,TJ,N2O,0.6,kg/TJ,10.589465664,kg -61f1c6fc-abbf-3cc0-9d28-e4b07ee3efb0,SESCO,II.1.1,Jujuy,AR-Y,annual,2013,bioetanol combustion consumption by to the public,8.44749162,TJ,CH4,10.0,kg/TJ,84.4749162,kg -75da9c3b-f239-3ec1-8acb-38eb3396c23b,SESCO,II.1.1,Jujuy,AR-Y,annual,2013,bioetanol combustion consumption by to the public,8.44749162,TJ,N2O,0.6,kg/TJ,5.068494971999999,kg -47678b9a-633f-3681-b01d-ad739d4d8c8b,SESCO,II.1.1,La Pampa,AR-L,annual,2013,bioetanol combustion consumption by to the public,11.368132919999999,TJ,CH4,10.0,kg/TJ,113.6813292,kg -6d9cb162-3491-3539-af93-cd7df6d94300,SESCO,II.1.1,La Pampa,AR-L,annual,2013,bioetanol combustion consumption by to the public,11.368132919999999,TJ,N2O,0.6,kg/TJ,6.820879751999999,kg -c93678fa-cbf9-3d8d-9bc2-48c025743b11,SESCO,II.1.1,La Rioja,AR-F,annual,2013,bioetanol combustion consumption by to the public,11.21347314,TJ,CH4,10.0,kg/TJ,112.13473139999999,kg -aa8399bb-4a3f-3f4a-9fc0-501baf6f88ea,SESCO,II.1.1,La Rioja,AR-F,annual,2013,bioetanol combustion consumption by to the public,11.21347314,TJ,N2O,0.6,kg/TJ,6.728083883999999,kg -6a643391-a42e-39fa-8040-affa326f9916,SESCO,II.1.1,Mendoza,AR-M,annual,2013,bioetanol combustion consumption by to the public,28.863860759999994,TJ,CH4,10.0,kg/TJ,288.63860759999994,kg -890e00c4-8ce3-3a5d-8e4c-b6f9255a277c,SESCO,II.1.1,Mendoza,AR-M,annual,2013,bioetanol combustion consumption by to the public,28.863860759999994,TJ,N2O,0.6,kg/TJ,17.318316455999994,kg -4694303c-53d2-313a-83bf-b5a16d5bd4e2,SESCO,II.1.1,Misiones,AR-N,annual,2013,bioetanol combustion consumption by to the public,49.146021,TJ,CH4,10.0,kg/TJ,491.46020999999996,kg -362c1879-309d-3f7e-ada6-c37174678992,SESCO,II.1.1,Misiones,AR-N,annual,2013,bioetanol combustion consumption by to the public,49.146021,TJ,N2O,0.6,kg/TJ,29.4876126,kg -9469f9d5-fbc0-309e-bb8f-fbb566453ae3,SESCO,II.1.1,Neuquén,AR-Q,annual,2013,bioetanol combustion consumption by to the public,13.43239362,TJ,CH4,10.0,kg/TJ,134.3239362,kg -f621c186-2d19-3954-8cad-13a632859a08,SESCO,II.1.1,Neuquén,AR-Q,annual,2013,bioetanol combustion consumption by to the public,13.43239362,TJ,N2O,0.6,kg/TJ,8.059436172,kg -92febf44-6820-3347-b1a1-4e133efa538c,SESCO,II.1.1,Rio Negro,AR-R,annual,2013,bioetanol combustion consumption by to the public,6.84209754,TJ,CH4,10.0,kg/TJ,68.4209754,kg -ff168840-ac2d-3fc4-9662-e76c92ce555b,SESCO,II.1.1,Rio Negro,AR-R,annual,2013,bioetanol combustion consumption by to the public,6.84209754,TJ,N2O,0.6,kg/TJ,4.105258524,kg -b75c9ea3-8353-3dbc-b377-451d8ebc28f5,SESCO,II.1.1,Salta,AR-A,annual,2013,bioetanol combustion consumption by to the public,11.950982999999999,TJ,CH4,10.0,kg/TJ,119.50983,kg -107d699d-d616-3f65-afe5-5b69d08ebf11,SESCO,II.1.1,Salta,AR-A,annual,2013,bioetanol combustion consumption by to the public,11.950982999999999,TJ,N2O,0.6,kg/TJ,7.170589799999999,kg -78915ef0-72b2-35a1-818e-d871462bba93,SESCO,II.1.1,San Juan,AR-J,annual,2013,bioetanol combustion consumption by to the public,8.39252988,TJ,CH4,10.0,kg/TJ,83.9252988,kg -5d138792-54ac-3b57-8b01-9e9ccf136a55,SESCO,II.1.1,San Juan,AR-J,annual,2013,bioetanol combustion consumption by to the public,8.39252988,TJ,N2O,0.6,kg/TJ,5.035517928,kg -b6ecd65e-3039-3123-b579-9f527b92c97c,SESCO,II.1.1,San Luis,AR-D,annual,2013,bioetanol combustion consumption by to the public,0.8487115199999998,TJ,CH4,10.0,kg/TJ,8.487115199999998,kg -3345c638-7ec3-3fdd-8852-d2d58b158259,SESCO,II.1.1,San Luis,AR-D,annual,2013,bioetanol combustion consumption by to the public,0.8487115199999998,TJ,N2O,0.6,kg/TJ,0.5092269119999999,kg -cd08454c-f134-3838-80b2-2723ab398521,SESCO,II.1.1,Santa Fe,AR-S,annual,2013,bioetanol combustion consumption by to the public,137.0911959,TJ,CH4,10.0,kg/TJ,1370.911959,kg -a4ec1d7b-1e38-331e-93ba-900fdb916cb6,SESCO,II.1.1,Santa Fe,AR-S,annual,2013,bioetanol combustion consumption by to the public,137.0911959,TJ,N2O,0.6,kg/TJ,82.25471754,kg -1978498f-4a8f-3cff-ba19-a039583f9132,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2013,bioetanol combustion consumption by to the public,14.461328519999997,TJ,CH4,10.0,kg/TJ,144.61328519999998,kg -88114f84-c01f-3a66-8978-5582b001a0b8,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2013,bioetanol combustion consumption by to the public,14.461328519999997,TJ,N2O,0.6,kg/TJ,8.676797111999997,kg -d490bff0-a695-3c83-8ce5-a4555d4b82b9,SESCO,II.1.1,Tucuman,AR-T,annual,2013,bioetanol combustion consumption by to the public,32.89779684,TJ,CH4,10.0,kg/TJ,328.9779684,kg -816d9784-3f98-366d-9a81-fc21e292bce0,SESCO,II.1.1,Tucuman,AR-T,annual,2013,bioetanol combustion consumption by to the public,32.89779684,TJ,N2O,0.6,kg/TJ,19.738678103999998,kg -3768593e-81d6-333d-98df-b70455f2618f,SESCO,II.1.1,Buenos Aires,AR-B,annual,2013,bioetanol combustion consumption by to the public,260.07000641999997,TJ,CH4,10.0,kg/TJ,2600.7000642,kg -ea4d81ef-5030-396a-8065-502e7b443857,SESCO,II.1.1,Buenos Aires,AR-B,annual,2013,bioetanol combustion consumption by to the public,260.07000641999997,TJ,N2O,0.6,kg/TJ,156.04200385199997,kg -308eeeb4-b4c9-3488-ad80-b519e157b9fa,SESCO,II.1.1,Capital Federal,AR-C,annual,2013,bioetanol combustion consumption by to the public,105.60195341999999,TJ,CH4,10.0,kg/TJ,1056.0195342,kg -40d79b21-51a0-3f6f-a07b-b47eb4afb70e,SESCO,II.1.1,Capital Federal,AR-C,annual,2013,bioetanol combustion consumption by to the public,105.60195341999999,TJ,N2O,0.6,kg/TJ,63.361172051999986,kg -2904936b-5f69-3a05-82f0-2b4b5eb1edf7,SESCO,II.1.1,Catamarca,AR-K,annual,2013,bioetanol combustion consumption by to the public,1.3088563199999999,TJ,CH4,10.0,kg/TJ,13.0885632,kg -02765592-4fc2-360e-a6f2-04c039753b00,SESCO,II.1.1,Catamarca,AR-K,annual,2013,bioetanol combustion consumption by to the public,1.3088563199999999,TJ,N2O,0.6,kg/TJ,0.7853137919999998,kg -9ab1d1fd-3326-3bdb-aa01-c92e144fadec,SESCO,II.1.1,Chaco,AR-H,annual,2013,bioetanol combustion consumption by to the public,9.60807906,TJ,CH4,10.0,kg/TJ,96.0807906,kg -937d1d30-cfea-338b-9051-9c361ffddb91,SESCO,II.1.1,Chaco,AR-H,annual,2013,bioetanol combustion consumption by to the public,9.60807906,TJ,N2O,0.6,kg/TJ,5.764847435999999,kg -a9082e60-2f6d-3a96-82c9-43a65cb7bba8,SESCO,II.1.1,Chubut,AR-U,annual,2013,bioetanol combustion consumption by to the public,0.8244260999999998,TJ,CH4,10.0,kg/TJ,8.244260999999998,kg -b544acbb-6ee1-3d0e-bfd1-94bb4667bbba,SESCO,II.1.1,Chubut,AR-U,annual,2013,bioetanol combustion consumption by to the public,0.8244260999999998,TJ,N2O,0.6,kg/TJ,0.4946556599999999,kg -43123f28-0d97-3aa3-b3cd-5905079bf2b4,SESCO,II.1.1,Corrientes,AR-W,annual,2013,bioetanol combustion consumption by to the public,11.00768616,TJ,CH4,10.0,kg/TJ,110.0768616,kg -d4439030-a301-332f-a4c1-f34b9648d10f,SESCO,II.1.1,Corrientes,AR-W,annual,2013,bioetanol combustion consumption by to the public,11.00768616,TJ,N2O,0.6,kg/TJ,6.604611696,kg -55cb300c-60d9-30a3-9a73-d84f7a8c26b6,SESCO,II.1.1,Córdoba,AR-X,annual,2013,bioetanol combustion consumption by to the public,43.65751608,TJ,CH4,10.0,kg/TJ,436.5751608,kg -d2a3f0a2-4d60-3830-bb76-452420fa6e93,SESCO,II.1.1,Córdoba,AR-X,annual,2013,bioetanol combustion consumption by to the public,43.65751608,TJ,N2O,0.6,kg/TJ,26.194509648,kg -376935f5-16ff-361d-8c80-2d4c6261ff45,SESCO,II.1.1,Entre Rios,AR-E,annual,2013,bioetanol combustion consumption by to the public,14.966209619999999,TJ,CH4,10.0,kg/TJ,149.66209619999998,kg -e2082b7e-591a-3147-9fa0-416acd11a7dd,SESCO,II.1.1,Entre Rios,AR-E,annual,2013,bioetanol combustion consumption by to the public,14.966209619999999,TJ,N2O,0.6,kg/TJ,8.979725771999998,kg -52ad136f-a3c6-395a-881a-0fd537744aac,SESCO,II.1.1,Formosa,AR-P,annual,2013,bioetanol combustion consumption by to the public,5.7569227199999995,TJ,CH4,10.0,kg/TJ,57.56922719999999,kg -5aeac293-d18e-3830-b1f9-f4b4f57c3ead,SESCO,II.1.1,Formosa,AR-P,annual,2013,bioetanol combustion consumption by to the public,5.7569227199999995,TJ,N2O,0.6,kg/TJ,3.4541536319999997,kg -c24439e0-3cd1-3c39-9517-76b4d9a53feb,SESCO,II.1.1,Jujuy,AR-Y,annual,2013,bioetanol combustion consumption by to the public,1.9607281199999997,TJ,CH4,10.0,kg/TJ,19.607281199999996,kg -1338977a-5a40-3199-ab1e-ac8f541e34a8,SESCO,II.1.1,Jujuy,AR-Y,annual,2013,bioetanol combustion consumption by to the public,1.9607281199999997,TJ,N2O,0.6,kg/TJ,1.1764368719999998,kg -f7ff3bbc-db16-31be-aaf5-d057052409d0,SESCO,II.1.1,La Pampa,AR-L,annual,2013,bioetanol combustion consumption by to the public,5.1574563,TJ,CH4,10.0,kg/TJ,51.574563,kg -c2dc9c03-1c89-322e-94dd-106166ede3ab,SESCO,II.1.1,La Pampa,AR-L,annual,2013,bioetanol combustion consumption by to the public,5.1574563,TJ,N2O,0.6,kg/TJ,3.09447378,kg -3f493d17-2798-34df-872c-d6c80817440d,SESCO,II.1.1,La Rioja,AR-F,annual,2013,bioetanol combustion consumption by to the public,2.9053031399999996,TJ,CH4,10.0,kg/TJ,29.053031399999995,kg -2b1afeaf-4cb0-3d2e-b1dc-8ce2e678be95,SESCO,II.1.1,La Rioja,AR-F,annual,2013,bioetanol combustion consumption by to the public,2.9053031399999996,TJ,N2O,0.6,kg/TJ,1.7431818839999997,kg -1f4fa0a3-3a7e-3ecb-946b-8b3ce43f97bb,SESCO,II.1.1,Mendoza,AR-M,annual,2013,bioetanol combustion consumption by to the public,11.43715464,TJ,CH4,10.0,kg/TJ,114.3715464,kg -9fd1e305-72ab-3762-9397-0a66a3ba52be,SESCO,II.1.1,Mendoza,AR-M,annual,2013,bioetanol combustion consumption by to the public,11.43715464,TJ,N2O,0.6,kg/TJ,6.862292783999999,kg -0aafb5d8-4776-3a98-99a1-7a3ff65779bd,SESCO,II.1.1,Misiones,AR-N,annual,2013,bioetanol combustion consumption by to the public,9.473870159999999,TJ,CH4,10.0,kg/TJ,94.73870159999998,kg -0ab0bc17-4d1c-3093-bf66-7492b338fec9,SESCO,II.1.1,Misiones,AR-N,annual,2013,bioetanol combustion consumption by to the public,9.473870159999999,TJ,N2O,0.6,kg/TJ,5.684322095999999,kg -a460fe51-cd3e-3334-850e-4600e786b12b,SESCO,II.1.1,Neuquén,AR-Q,annual,2013,bioetanol combustion consumption by to the public,5.03475102,TJ,CH4,10.0,kg/TJ,50.3475102,kg -8325ed87-14f6-39e7-aea8-9142059ab144,SESCO,II.1.1,Neuquén,AR-Q,annual,2013,bioetanol combustion consumption by to the public,5.03475102,TJ,N2O,0.6,kg/TJ,3.020850612,kg -6643556b-cfa8-325b-9abc-3cfb26d8e8c3,SESCO,II.1.1,Rio Negro,AR-R,annual,2013,bioetanol combustion consumption by to the public,3.04718112,TJ,CH4,10.0,kg/TJ,30.471811199999998,kg -f8ece5d0-961b-3c03-a5d1-58693867bc6b,SESCO,II.1.1,Rio Negro,AR-R,annual,2013,bioetanol combustion consumption by to the public,3.04718112,TJ,N2O,0.6,kg/TJ,1.828308672,kg -7d7e662d-38f7-39db-a30f-a1cadd2c1018,SESCO,II.1.1,Salta,AR-A,annual,2013,bioetanol combustion consumption by to the public,3.4268005799999997,TJ,CH4,10.0,kg/TJ,34.2680058,kg -8aeeb390-684a-3578-8406-e37a2cf2a6c1,SESCO,II.1.1,Salta,AR-A,annual,2013,bioetanol combustion consumption by to the public,3.4268005799999997,TJ,N2O,0.6,kg/TJ,2.0560803479999996,kg -14dfbe9a-be07-3a25-9531-4f1980680c09,SESCO,II.1.1,San Juan,AR-J,annual,2013,bioetanol combustion consumption by to the public,1.3024654199999999,TJ,CH4,10.0,kg/TJ,13.024654199999999,kg -4625ff0e-d78f-3711-b43e-08bac42aa392,SESCO,II.1.1,San Juan,AR-J,annual,2013,bioetanol combustion consumption by to the public,1.3024654199999999,TJ,N2O,0.6,kg/TJ,0.7814792519999999,kg -0b85ddb0-9f45-3f13-85ec-9bea1c1fa84c,SESCO,II.1.1,San Luis,AR-D,annual,2013,bioetanol combustion consumption by to the public,1.3356980999999999,TJ,CH4,10.0,kg/TJ,13.356981,kg -714948e3-a7c2-3eb7-be29-6a559d74f7f6,SESCO,II.1.1,San Luis,AR-D,annual,2013,bioetanol combustion consumption by to the public,1.3356980999999999,TJ,N2O,0.6,kg/TJ,0.80141886,kg -8a23b1d0-4cce-33df-b18d-ade6b6b96aba,SESCO,II.1.1,Santa Fe,AR-S,annual,2013,bioetanol combustion consumption by to the public,57.258629459999995,TJ,CH4,10.0,kg/TJ,572.5862946,kg -09d7f6ae-1088-33b5-8e46-eb7e4afce58c,SESCO,II.1.1,Santa Fe,AR-S,annual,2013,bioetanol combustion consumption by to the public,57.258629459999995,TJ,N2O,0.6,kg/TJ,34.355177676,kg -20e4699b-ce71-372f-973c-2433b3b618e3,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2013,bioetanol combustion consumption by to the public,5.138283599999999,TJ,CH4,10.0,kg/TJ,51.382836,kg -6a37034e-8066-3fe1-b53e-d527f254cfbf,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2013,bioetanol combustion consumption by to the public,5.138283599999999,TJ,N2O,0.6,kg/TJ,3.0829701599999995,kg -8f937c5a-ee81-3e40-abdd-df6e668baadb,SESCO,II.1.1,Tucuman,AR-T,annual,2013,bioetanol combustion consumption by to the public,10.251003599999999,TJ,CH4,10.0,kg/TJ,102.51003599999999,kg -899f7f33-17a4-38d2-bb27-c26899eb890c,SESCO,II.1.1,Tucuman,AR-T,annual,2013,bioetanol combustion consumption by to the public,10.251003599999999,TJ,N2O,0.6,kg/TJ,6.150602159999999,kg -f359043e-4d21-3300-9afa-81bb18e00ffd,SESCO,II.5.1,Buenos Aires,AR-B,annual,2013,bioetanol combustion consumption by agriculture machines,0.16488521999999997,TJ,CH4,10.0,kg/TJ,1.6488521999999997,kg -81b35096-1fe4-3369-a0da-23c16e2c7646,SESCO,II.5.1,Buenos Aires,AR-B,annual,2013,bioetanol combustion consumption by agriculture machines,0.16488521999999997,TJ,N2O,0.6,kg/TJ,0.09893113199999998,kg -ad51910d-dfcc-39e1-a673-3bb4e1bb2137,SESCO,II.5.1,Chubut,AR-U,annual,2013,bioetanol combustion consumption by agriculture machines,0.5023247399999999,TJ,CH4,10.0,kg/TJ,5.023247399999999,kg -0f23bb04-e20a-33b2-8e74-298ed38fa104,SESCO,II.5.1,Chubut,AR-U,annual,2013,bioetanol combustion consumption by agriculture machines,0.5023247399999999,TJ,N2O,0.6,kg/TJ,0.30139484399999994,kg -5f3a703e-2a41-3b03-909c-4bce0b7634f5,SESCO,II.5.1,Entre Rios,AR-E,annual,2013,bioetanol combustion consumption by agriculture machines,0.14826888,TJ,CH4,10.0,kg/TJ,1.4826888,kg -e858175f-77b1-38da-be14-65f4afdc5867,SESCO,II.5.1,Entre Rios,AR-E,annual,2013,bioetanol combustion consumption by agriculture machines,0.14826888,TJ,N2O,0.6,kg/TJ,0.08896132799999999,kg -e0302f56-6835-3034-8a82-54009ec277c8,SESCO,II.5.1,La Pampa,AR-L,annual,2013,bioetanol combustion consumption by agriculture machines,0.03451086,TJ,CH4,10.0,kg/TJ,0.3451086,kg -768cb470-2cbf-3e80-b63a-6ab356c23ed0,SESCO,II.5.1,La Pampa,AR-L,annual,2013,bioetanol combustion consumption by agriculture machines,0.03451086,TJ,N2O,0.6,kg/TJ,0.020706515999999998,kg -e8ba450d-2582-386d-acb5-7e84a0154575,SESCO,II.5.1,Santa Fe,AR-S,annual,2013,bioetanol combustion consumption by agriculture machines,1.1695346999999998,TJ,CH4,10.0,kg/TJ,11.695346999999998,kg -c685c172-ca85-3dd1-8412-981782179bec,SESCO,II.5.1,Santa Fe,AR-S,annual,2013,bioetanol combustion consumption by agriculture machines,1.1695346999999998,TJ,N2O,0.6,kg/TJ,0.7017208199999999,kg -00ab2c97-ae88-306f-828a-679a00482044,SESCO,II.5.1,Santiago del Estero,AR-G,annual,2013,bioetanol combustion consumption by agriculture machines,0.01661634,TJ,CH4,10.0,kg/TJ,0.16616340000000002,kg -d9fbcf2f-9315-320e-bd26-31eef331e289,SESCO,II.5.1,Santiago del Estero,AR-G,annual,2013,bioetanol combustion consumption by agriculture machines,0.01661634,TJ,N2O,0.6,kg/TJ,0.009969804,kg -b0d08cf3-3fcc-371c-a5df-3d1a26d76157,SESCO,II.5.1,Buenos Aires,AR-B,annual,2013,bioetanol combustion consumption by agriculture machines,0.035789039999999994,TJ,CH4,10.0,kg/TJ,0.35789039999999994,kg -452a4ee3-f047-351f-9d5a-e5c7fa286b6f,SESCO,II.5.1,Buenos Aires,AR-B,annual,2013,bioetanol combustion consumption by agriculture machines,0.035789039999999994,TJ,N2O,0.6,kg/TJ,0.021473423999999994,kg -8c140160-b7ad-32d1-8022-5ec9c3471b21,SESCO,II.5.1,Santa Fe,AR-S,annual,2013,bioetanol combustion consumption by agriculture machines,0.08435988,TJ,CH4,10.0,kg/TJ,0.8435988,kg -a3cc05ac-e069-34f8-9295-6171752b2c37,SESCO,II.5.1,Santa Fe,AR-S,annual,2013,bioetanol combustion consumption by agriculture machines,0.08435988,TJ,N2O,0.6,kg/TJ,0.050615928,kg -b5fef9a7-72ad-3e19-9ba5-5cd9f7c61a17,SESCO,II.1.1,Buenos Aires,AR-B,annual,2013,bioetanol combustion consumption by to the public,1522.2459146399997,TJ,CH4,10.0,kg/TJ,15222.459146399997,kg -e5997173-5a59-3a68-9ac2-5b2b4b7dc5cc,SESCO,II.1.1,Buenos Aires,AR-B,annual,2013,bioetanol combustion consumption by to the public,1522.2459146399997,TJ,N2O,0.6,kg/TJ,913.3475487839997,kg -b1f11113-d14c-338a-b7f7-69d968364df5,SESCO,II.1.1,Capital Federal,AR-C,annual,2013,bioetanol combustion consumption by to the public,312.48944639999996,TJ,CH4,10.0,kg/TJ,3124.8944639999995,kg -47d5ddd9-dcae-3442-a222-7fa9f5e45de6,SESCO,II.1.1,Capital Federal,AR-C,annual,2013,bioetanol combustion consumption by to the public,312.48944639999996,TJ,N2O,0.6,kg/TJ,187.49366783999997,kg -ed17d629-f71f-330d-a059-516b009b44ef,SESCO,II.1.1,Catamarca,AR-K,annual,2013,bioetanol combustion consumption by to the public,25.737432479999995,TJ,CH4,10.0,kg/TJ,257.37432479999995,kg -5e0d4c3b-8dbc-3aad-804f-7e5d45fa1d99,SESCO,II.1.1,Catamarca,AR-K,annual,2013,bioetanol combustion consumption by to the public,25.737432479999995,TJ,N2O,0.6,kg/TJ,15.442459487999997,kg -55af5287-a8fb-372b-b6fa-009cf2793f25,SESCO,II.1.1,Chaco,AR-H,annual,2013,bioetanol combustion consumption by to the public,82.58832251999999,TJ,CH4,10.0,kg/TJ,825.8832252,kg -5a0c1cbc-8498-36bc-b434-9c266c5ea3df,SESCO,II.1.1,Chaco,AR-H,annual,2013,bioetanol combustion consumption by to the public,82.58832251999999,TJ,N2O,0.6,kg/TJ,49.55299351199999,kg -39d54a3b-324d-3e8f-818a-03af80178fc9,SESCO,II.1.1,Chubut,AR-U,annual,2013,bioetanol combustion consumption by to the public,148.70985209999998,TJ,CH4,10.0,kg/TJ,1487.098521,kg -c16b9bf2-168c-3c20-bd19-9dca1c338b81,SESCO,II.1.1,Chubut,AR-U,annual,2013,bioetanol combustion consumption by to the public,148.70985209999998,TJ,N2O,0.6,kg/TJ,89.22591125999999,kg -f2a947f1-214c-38ec-b22c-cf9229e910e0,SESCO,II.1.1,Corrientes,AR-W,annual,2013,bioetanol combustion consumption by to the public,91.08182862,TJ,CH4,10.0,kg/TJ,910.8182862,kg -885a1985-7789-3c5c-9596-84148a00c003,SESCO,II.1.1,Corrientes,AR-W,annual,2013,bioetanol combustion consumption by to the public,91.08182862,TJ,N2O,0.6,kg/TJ,54.649097172,kg -1af5e24b-f44c-3d1e-af50-c809a6f42685,SESCO,II.1.1,Córdoba,AR-X,annual,2013,bioetanol combustion consumption by to the public,377.1743016599999,TJ,CH4,10.0,kg/TJ,3771.743016599999,kg -7708a968-6959-33b6-b5d9-fbdc76aeff7d,SESCO,II.1.1,Córdoba,AR-X,annual,2013,bioetanol combustion consumption by to the public,377.1743016599999,TJ,N2O,0.6,kg/TJ,226.30458099599994,kg -5d3f1f06-1de7-34e0-8b56-c311c1021d98,SESCO,II.1.1,Entre Rios,AR-E,annual,2013,bioetanol combustion consumption by to the public,116.50994153999999,TJ,CH4,10.0,kg/TJ,1165.0994153999998,kg -e663ee69-b455-3640-bd4b-b35c2880cb1f,SESCO,II.1.1,Entre Rios,AR-E,annual,2013,bioetanol combustion consumption by to the public,116.50994153999999,TJ,N2O,0.6,kg/TJ,69.90596492399999,kg -15baf6a1-5dd0-3873-b6d4-cb9c5aea565d,SESCO,II.1.1,Formosa,AR-P,annual,2013,bioetanol combustion consumption by to the public,31.449618899999997,TJ,CH4,10.0,kg/TJ,314.49618899999996,kg -5412eb92-2d61-3d9d-b13a-c899f44fa88a,SESCO,II.1.1,Formosa,AR-P,annual,2013,bioetanol combustion consumption by to the public,31.449618899999997,TJ,N2O,0.6,kg/TJ,18.869771339999996,kg -145a69f4-3ddb-3cb7-be8b-3bc92832a0ca,SESCO,II.1.1,Jujuy,AR-Y,annual,2013,bioetanol combustion consumption by to the public,39.99936492,TJ,CH4,10.0,kg/TJ,399.9936492,kg -0673694a-abb6-3bd8-8211-a212d5acfeee,SESCO,II.1.1,Jujuy,AR-Y,annual,2013,bioetanol combustion consumption by to the public,39.99936492,TJ,N2O,0.6,kg/TJ,23.999618952,kg -c73b2629-015f-3e21-8adc-bc95b9d442e1,SESCO,II.1.1,La Pampa,AR-L,annual,2013,bioetanol combustion consumption by to the public,64.90214585999999,TJ,CH4,10.0,kg/TJ,649.0214586,kg -1d1af07f-b03c-3ab4-be54-d576678f69b9,SESCO,II.1.1,La Pampa,AR-L,annual,2013,bioetanol combustion consumption by to the public,64.90214585999999,TJ,N2O,0.6,kg/TJ,38.941287515999996,kg -3f25b421-e7bf-30d8-8165-a3bec56b59be,SESCO,II.1.1,La Rioja,AR-F,annual,2013,bioetanol combustion consumption by to the public,35.50272768,TJ,CH4,10.0,kg/TJ,355.0272768,kg -77052d44-f6d3-3a9c-a56c-5f9fa68a91d2,SESCO,II.1.1,La Rioja,AR-F,annual,2013,bioetanol combustion consumption by to the public,35.50272768,TJ,N2O,0.6,kg/TJ,21.301636608,kg -b9676d19-12f4-32d7-999a-cc33aa8c1bb1,SESCO,II.1.1,Mendoza,AR-M,annual,2013,bioetanol combustion consumption by to the public,207.95221691999998,TJ,CH4,10.0,kg/TJ,2079.5221692,kg -fe0d382b-4139-3312-8eae-0426d9b8e25b,SESCO,II.1.1,Mendoza,AR-M,annual,2013,bioetanol combustion consumption by to the public,207.95221691999998,TJ,N2O,0.6,kg/TJ,124.77133015199999,kg -b40bafef-67fe-3925-b53e-32e33fe932f6,SESCO,II.1.1,Misiones,AR-N,annual,2013,bioetanol combustion consumption by to the public,121.48461809999999,TJ,CH4,10.0,kg/TJ,1214.846181,kg -8192e363-a23d-3089-93e0-701faa935758,SESCO,II.1.1,Misiones,AR-N,annual,2013,bioetanol combustion consumption by to the public,121.48461809999999,TJ,N2O,0.6,kg/TJ,72.89077085999999,kg -96f06770-658f-3ae6-b09c-0e5cef19a0e3,SESCO,II.1.1,Neuquén,AR-Q,annual,2013,bioetanol combustion consumption by to the public,118.17668825999999,TJ,CH4,10.0,kg/TJ,1181.7668826,kg -be4c2cc8-146c-32f8-812d-a50148107220,SESCO,II.1.1,Neuquén,AR-Q,annual,2013,bioetanol combustion consumption by to the public,118.17668825999999,TJ,N2O,0.6,kg/TJ,70.906012956,kg -2fed14e6-7688-353d-b6bc-3b7ea4129ac5,SESCO,II.1.1,Rio Negro,AR-R,annual,2013,bioetanol combustion consumption by to the public,120.8455281,TJ,CH4,10.0,kg/TJ,1208.455281,kg -19030131-484b-3933-a919-a09e5df3d19b,SESCO,II.1.1,Rio Negro,AR-R,annual,2013,bioetanol combustion consumption by to the public,120.8455281,TJ,N2O,0.6,kg/TJ,72.50731685999999,kg -d876ab4f-bd21-322d-8e3f-68594542c2a6,SESCO,II.1.1,Salta,AR-A,annual,2013,bioetanol combustion consumption by to the public,93.04000038,TJ,CH4,10.0,kg/TJ,930.4000037999999,kg -2c6fa80d-54fc-3cc2-be95-dff0bf9ed8ed,SESCO,II.1.1,Salta,AR-A,annual,2013,bioetanol combustion consumption by to the public,93.04000038,TJ,N2O,0.6,kg/TJ,55.824000227999996,kg -a5a5d04f-aa33-3b7a-a8d3-db6b02ffeab4,SESCO,II.1.1,San Juan,AR-J,annual,2013,bioetanol combustion consumption by to the public,60.97941144,TJ,CH4,10.0,kg/TJ,609.7941144,kg -2ae0567c-147e-31b2-aa1b-0efae38c2eff,SESCO,II.1.1,San Juan,AR-J,annual,2013,bioetanol combustion consumption by to the public,60.97941144,TJ,N2O,0.6,kg/TJ,36.587646864,kg -b8bcd406-416c-3c68-927d-cb4f6f294ff4,SESCO,II.1.1,San Luis,AR-D,annual,2013,bioetanol combustion consumption by to the public,49.5806022,TJ,CH4,10.0,kg/TJ,495.806022,kg -3e8e983a-0a8a-3339-8309-017c90d5c64b,SESCO,II.1.1,San Luis,AR-D,annual,2013,bioetanol combustion consumption by to the public,49.5806022,TJ,N2O,0.6,kg/TJ,29.74836132,kg -7ba127bf-fb3b-3715-958a-d0ec0b838826,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2013,bioetanol combustion consumption by to the public,102.52026143999998,TJ,CH4,10.0,kg/TJ,1025.2026144,kg -d7c35c04-f686-3795-bc63-0e2c46ea3fcf,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2013,bioetanol combustion consumption by to the public,102.52026143999998,TJ,N2O,0.6,kg/TJ,61.51215686399999,kg -82f2b8f0-3843-3478-9097-c1e693e65341,SESCO,II.1.1,Santa Fe,AR-S,annual,2013,bioetanol combustion consumption by to the public,285.42909762,TJ,CH4,10.0,kg/TJ,2854.2909762,kg -eba9958c-7bf8-3aeb-bb1b-d07576f62061,SESCO,II.1.1,Santa Fe,AR-S,annual,2013,bioetanol combustion consumption by to the public,285.42909762,TJ,N2O,0.6,kg/TJ,171.257458572,kg -0395b816-2b30-33e7-ae0b-2c6707f653f4,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2013,bioetanol combustion consumption by to the public,41.90257494,TJ,CH4,10.0,kg/TJ,419.0257494,kg -00a4f7dd-b650-301d-81cd-7f67e0e48bfb,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2013,bioetanol combustion consumption by to the public,41.90257494,TJ,N2O,0.6,kg/TJ,25.141544964,kg -620f079a-39a4-3b8f-9e7a-9aa6a1bba58c,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2013,bioetanol combustion consumption by to the public,75.5468289,TJ,CH4,10.0,kg/TJ,755.4682889999999,kg -be10317c-5ce6-3246-b040-b6f1dcfacbff,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2013,bioetanol combustion consumption by to the public,75.5468289,TJ,N2O,0.6,kg/TJ,45.32809733999999,kg -89c8472e-8431-3414-96ac-2c9c6ec26c57,SESCO,II.1.1,Tucuman,AR-T,annual,2013,bioetanol combustion consumption by to the public,79.78910832,TJ,CH4,10.0,kg/TJ,797.8910831999999,kg -977539af-52a1-3cb1-8ad0-77075abe60c8,SESCO,II.1.1,Tucuman,AR-T,annual,2013,bioetanol combustion consumption by to the public,79.78910832,TJ,N2O,0.6,kg/TJ,47.873464991999995,kg -bcbd6825-589b-3757-9b83-4067c48e78cf,SESCO,II.1.1,Buenos Aires,AR-B,annual,2013,bioetanol combustion consumption by to the public,535.94854308,TJ,CH4,10.0,kg/TJ,5359.4854308,kg -e9167fdc-82f4-3219-9588-4bb67972f333,SESCO,II.1.1,Buenos Aires,AR-B,annual,2013,bioetanol combustion consumption by to the public,535.94854308,TJ,N2O,0.6,kg/TJ,321.569125848,kg -753859d7-0711-3fea-a3ef-d44e9712a6c3,SESCO,II.1.1,Capital Federal,AR-C,annual,2013,bioetanol combustion consumption by to the public,124.44871752,TJ,CH4,10.0,kg/TJ,1244.4871752,kg -b6034d36-dfda-3343-8865-329a47f65971,SESCO,II.1.1,Capital Federal,AR-C,annual,2013,bioetanol combustion consumption by to the public,124.44871752,TJ,N2O,0.6,kg/TJ,74.669230512,kg -a41fc1d8-66cb-3a5a-982d-78c0928aa24f,SESCO,II.1.1,Catamarca,AR-K,annual,2013,bioetanol combustion consumption by to the public,8.263433699999998,TJ,CH4,10.0,kg/TJ,82.63433699999999,kg -245c8616-e6cb-34eb-809e-934923ca707c,SESCO,II.1.1,Catamarca,AR-K,annual,2013,bioetanol combustion consumption by to the public,8.263433699999998,TJ,N2O,0.6,kg/TJ,4.958060219999999,kg -79ff2c0f-bb82-3dae-b431-b12608972848,SESCO,II.1.1,Chaco,AR-H,annual,2013,bioetanol combustion consumption by to the public,30.6443655,TJ,CH4,10.0,kg/TJ,306.443655,kg -2efb7f8b-9088-3d3a-8f5a-ddcdce9aa142,SESCO,II.1.1,Chaco,AR-H,annual,2013,bioetanol combustion consumption by to the public,30.6443655,TJ,N2O,0.6,kg/TJ,18.3866193,kg -b5a61454-f0ef-314b-8508-ed1d23083bd0,SESCO,II.1.1,Chubut,AR-U,annual,2013,bioetanol combustion consumption by to the public,41.001458039999996,TJ,CH4,10.0,kg/TJ,410.01458039999994,kg -5bd3b266-9d09-3287-95fa-577167df5445,SESCO,II.1.1,Chubut,AR-U,annual,2013,bioetanol combustion consumption by to the public,41.001458039999996,TJ,N2O,0.6,kg/TJ,24.600874823999998,kg -f285e681-2a3d-3cc6-a4e3-77dd2b58ae89,SESCO,II.1.1,Corrientes,AR-W,annual,2013,bioetanol combustion consumption by to the public,29.767534019999996,TJ,CH4,10.0,kg/TJ,297.67534019999994,kg -f366e905-7292-302e-9037-1ff404957f4c,SESCO,II.1.1,Corrientes,AR-W,annual,2013,bioetanol combustion consumption by to the public,29.767534019999996,TJ,N2O,0.6,kg/TJ,17.860520411999996,kg -a4bc220d-b9d1-359a-b3f9-7427c6a2a2ac,SESCO,II.1.1,Córdoba,AR-X,annual,2013,bioetanol combustion consumption by to the public,128.95046748,TJ,CH4,10.0,kg/TJ,1289.5046748,kg -eb482e44-0b52-3c94-ba25-0af48871b1ae,SESCO,II.1.1,Córdoba,AR-X,annual,2013,bioetanol combustion consumption by to the public,128.95046748,TJ,N2O,0.6,kg/TJ,77.37028048799999,kg -f804682b-c926-3095-9a34-5d883868a1b2,SESCO,II.1.1,Entre Rios,AR-E,annual,2013,bioetanol combustion consumption by to the public,47.16995471999999,TJ,CH4,10.0,kg/TJ,471.6995471999999,kg -4337d4ac-7e97-364f-96cb-ecaf3524122a,SESCO,II.1.1,Entre Rios,AR-E,annual,2013,bioetanol combustion consumption by to the public,47.16995471999999,TJ,N2O,0.6,kg/TJ,28.301972831999993,kg -5e56bdb1-a7e5-36c2-be82-b3ecbd3752d0,SESCO,II.1.1,Formosa,AR-P,annual,2013,bioetanol combustion consumption by to the public,7.66396728,TJ,CH4,10.0,kg/TJ,76.6396728,kg -ac719ae4-6273-3d5b-b284-de4a693092f9,SESCO,II.1.1,Formosa,AR-P,annual,2013,bioetanol combustion consumption by to the public,7.66396728,TJ,N2O,0.6,kg/TJ,4.598380368,kg -9e51e186-dab0-3c17-9fa7-374206672f32,SESCO,II.1.1,Jujuy,AR-Y,annual,2013,bioetanol combustion consumption by to the public,11.5547472,TJ,CH4,10.0,kg/TJ,115.547472,kg -9ad51c31-3a87-3859-92d0-d4bab212f1b1,SESCO,II.1.1,Jujuy,AR-Y,annual,2013,bioetanol combustion consumption by to the public,11.5547472,TJ,N2O,0.6,kg/TJ,6.93284832,kg -8e17908e-2eab-385a-beaf-bf99b4ecdcee,SESCO,II.1.1,La Pampa,AR-L,annual,2013,bioetanol combustion consumption by to the public,24.575566859999995,TJ,CH4,10.0,kg/TJ,245.75566859999995,kg -e49c27d6-c6c1-32d7-8b19-ee609bdf5971,SESCO,II.1.1,La Pampa,AR-L,annual,2013,bioetanol combustion consumption by to the public,24.575566859999995,TJ,N2O,0.6,kg/TJ,14.745340115999996,kg -0f348355-7d9b-3492-bf3f-9ea9554fd436,SESCO,II.1.1,La Rioja,AR-F,annual,2013,bioetanol combustion consumption by to the public,11.8359468,TJ,CH4,10.0,kg/TJ,118.359468,kg -cf1eca37-34b9-307e-b909-f664275df5c7,SESCO,II.1.1,La Rioja,AR-F,annual,2013,bioetanol combustion consumption by to the public,11.8359468,TJ,N2O,0.6,kg/TJ,7.10156808,kg -573d4731-a1d4-349d-992e-c00a6b676567,SESCO,II.1.1,Mendoza,AR-M,annual,2013,bioetanol combustion consumption by to the public,74.65721562,TJ,CH4,10.0,kg/TJ,746.5721562,kg -9b779c29-105f-3d90-b465-de14e5feebc5,SESCO,II.1.1,Mendoza,AR-M,annual,2013,bioetanol combustion consumption by to the public,74.65721562,TJ,N2O,0.6,kg/TJ,44.794329372,kg -1c011fcc-3cda-3e83-bca2-b35848e9caf8,SESCO,II.1.1,Misiones,AR-N,annual,2013,bioetanol combustion consumption by to the public,35.2202499,TJ,CH4,10.0,kg/TJ,352.202499,kg -04dc59bb-b1fa-33e7-a022-4f4e142dfb87,SESCO,II.1.1,Misiones,AR-N,annual,2013,bioetanol combustion consumption by to the public,35.2202499,TJ,N2O,0.6,kg/TJ,21.132149939999998,kg -7cd7b387-9253-305c-8914-817d248d51ed,SESCO,II.1.1,Neuquén,AR-Q,annual,2013,bioetanol combustion consumption by to the public,38.32367094,TJ,CH4,10.0,kg/TJ,383.2367094,kg -3bcc7845-7343-355a-a908-40b086674464,SESCO,II.1.1,Neuquén,AR-Q,annual,2013,bioetanol combustion consumption by to the public,38.32367094,TJ,N2O,0.6,kg/TJ,22.994202564,kg -2c7e352f-5096-3b77-b0e0-b8e010b5c6e8,SESCO,II.1.1,Rio Negro,AR-R,annual,2013,bioetanol combustion consumption by to the public,38.79787572,TJ,CH4,10.0,kg/TJ,387.9787572,kg -13210a96-a5d5-3e28-a51e-9b759f867b95,SESCO,II.1.1,Rio Negro,AR-R,annual,2013,bioetanol combustion consumption by to the public,38.79787572,TJ,N2O,0.6,kg/TJ,23.278725431999998,kg -34f04a5f-afc8-3a81-89ac-6a170f4b25e7,SESCO,II.1.1,Salta,AR-A,annual,2013,bioetanol combustion consumption by to the public,28.559653919999995,TJ,CH4,10.0,kg/TJ,285.59653919999994,kg -24b35abd-63d2-3cfd-807a-7f293aa22d77,SESCO,II.1.1,Salta,AR-A,annual,2013,bioetanol combustion consumption by to the public,28.559653919999995,TJ,N2O,0.6,kg/TJ,17.135792351999996,kg -65ca8a42-8032-3b80-ac06-994377bfca2f,SESCO,II.1.1,San Juan,AR-J,annual,2013,bioetanol combustion consumption by to the public,24.66503946,TJ,CH4,10.0,kg/TJ,246.6503946,kg -c64b05f4-719b-310d-8aa5-982cda6f8656,SESCO,II.1.1,San Juan,AR-J,annual,2013,bioetanol combustion consumption by to the public,24.66503946,TJ,N2O,0.6,kg/TJ,14.799023676,kg -6d0307c9-acdc-385f-96d8-aa0bacfd8d6e,SESCO,II.1.1,San Luis,AR-D,annual,2013,bioetanol combustion consumption by to the public,22.254391979999998,TJ,CH4,10.0,kg/TJ,222.54391979999997,kg -9d2d0970-5370-3366-94ed-89c185da3a42,SESCO,II.1.1,San Luis,AR-D,annual,2013,bioetanol combustion consumption by to the public,22.254391979999998,TJ,N2O,0.6,kg/TJ,13.352635187999999,kg -5ba5bf91-6db5-38f2-b16d-cdd16ef5cb00,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2013,bioetanol combustion consumption by to the public,20.71674144,TJ,CH4,10.0,kg/TJ,207.16741439999998,kg -93b53d79-89f5-3b7c-88af-919ed4808c21,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2013,bioetanol combustion consumption by to the public,20.71674144,TJ,N2O,0.6,kg/TJ,12.430044864,kg -2c447721-3dfd-3521-b264-861594442136,SESCO,II.1.1,Santa Fe,AR-S,annual,2013,bioetanol combustion consumption by to the public,116.97392088,TJ,CH4,10.0,kg/TJ,1169.7392088,kg -8a094b00-b766-31a8-a192-0bdba861426f,SESCO,II.1.1,Santa Fe,AR-S,annual,2013,bioetanol combustion consumption by to the public,116.97392088,TJ,N2O,0.6,kg/TJ,70.18435252799999,kg -c4f32aa1-c371-30ed-a3d5-49de549bbc72,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2013,bioetanol combustion consumption by to the public,22.09589766,TJ,CH4,10.0,kg/TJ,220.95897659999997,kg -fbaec03d-94ce-31c1-a147-2417aae73990,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2013,bioetanol combustion consumption by to the public,22.09589766,TJ,N2O,0.6,kg/TJ,13.257538595999998,kg -e9ed5ced-565a-3bf4-8880-2a35d652b894,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2013,bioetanol combustion consumption by to the public,1.67058126,TJ,CH4,10.0,kg/TJ,16.7058126,kg -4da84d26-e274-3130-8166-63e3024da18d,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2013,bioetanol combustion consumption by to the public,1.67058126,TJ,N2O,0.6,kg/TJ,1.002348756,kg -eefe1a14-c999-307a-897d-387bb603792c,SESCO,II.1.1,Tucuman,AR-T,annual,2013,bioetanol combustion consumption by to the public,23.972265899999996,TJ,CH4,10.0,kg/TJ,239.72265899999996,kg -4b2bdd11-f6f4-39c7-84ef-e6801cd641f7,SESCO,II.1.1,Tucuman,AR-T,annual,2013,bioetanol combustion consumption by to the public,23.972265899999996,TJ,N2O,0.6,kg/TJ,14.383359539999997,kg -26b4fb4c-618b-398c-904c-e426c9b7207a,SESCO,I.3.1,Neuquén,AR-Q,annual,2013,bioetanol combustion consumption by petrochemical industries,0.0127818,TJ,CH4,10.0,kg/TJ,0.127818,kg -a06081d0-d437-3d54-a9e4-c99c089fd9ed,SESCO,I.3.1,Neuquén,AR-Q,annual,2013,bioetanol combustion consumption by petrochemical industries,0.0127818,TJ,N2O,0.6,kg/TJ,0.007669079999999999,kg -719616d6-06f5-34d9-8d97-8b517ab3696b,SESCO,II.1.1,Buenos Aires,AR-B,annual,2013,bioetanol combustion consumption by freight transport,6.3142092,TJ,CH4,10.0,kg/TJ,63.142092,kg -9d8f868f-6a61-31d7-91a8-2e1f3488ecc7,SESCO,II.1.1,Buenos Aires,AR-B,annual,2013,bioetanol combustion consumption by freight transport,6.3142092,TJ,N2O,0.6,kg/TJ,3.7885255199999994,kg -a180c8eb-3bd4-36e3-9347-369b3c088d15,SESCO,II.1.1,Capital Federal,AR-C,annual,2013,bioetanol combustion consumption by freight transport,6.222180239999999,TJ,CH4,10.0,kg/TJ,62.221802399999994,kg -4ed15d67-a337-3db5-b84c-4f7e6b5e8285,SESCO,II.1.1,Capital Federal,AR-C,annual,2013,bioetanol combustion consumption by freight transport,6.222180239999999,TJ,N2O,0.6,kg/TJ,3.7333081439999996,kg -f873d983-6ffc-3777-bfbb-84a24fb69ec9,SESCO,II.1.1,Chaco,AR-H,annual,2013,bioetanol combustion consumption by freight transport,0.18277974,TJ,CH4,10.0,kg/TJ,1.8277974,kg -1158a26a-b69d-3d0e-b82c-542b82ed2433,SESCO,II.1.1,Chaco,AR-H,annual,2013,bioetanol combustion consumption by freight transport,0.18277974,TJ,N2O,0.6,kg/TJ,0.109667844,kg -c42f0472-0cf3-38ce-96dc-6b9732677fa9,SESCO,II.1.1,Chubut,AR-U,annual,2013,bioetanol combustion consumption by freight transport,0.03323268,TJ,CH4,10.0,kg/TJ,0.33232680000000003,kg -f3e17596-27f0-3ea5-a439-58804fa3ab4a,SESCO,II.1.1,Chubut,AR-U,annual,2013,bioetanol combustion consumption by freight transport,0.03323268,TJ,N2O,0.6,kg/TJ,0.019939608,kg -174c46f0-d3db-314b-8409-efb11742d8c5,SESCO,II.1.1,Corrientes,AR-W,annual,2013,bioetanol combustion consumption by freight transport,0.05496174,TJ,CH4,10.0,kg/TJ,0.5496174,kg -d2626bb9-dd49-3ca8-8ab1-d684b3360f3e,SESCO,II.1.1,Corrientes,AR-W,annual,2013,bioetanol combustion consumption by freight transport,0.05496174,TJ,N2O,0.6,kg/TJ,0.032977044,kg -14af7c7f-c5e6-3e50-9377-e113c52bbded,SESCO,II.1.1,Córdoba,AR-X,annual,2013,bioetanol combustion consumption by freight transport,0.09458531999999999,TJ,CH4,10.0,kg/TJ,0.9458531999999998,kg -9085fa87-5d99-3d9a-a945-b138eee90222,SESCO,II.1.1,Córdoba,AR-X,annual,2013,bioetanol combustion consumption by freight transport,0.09458531999999999,TJ,N2O,0.6,kg/TJ,0.05675119199999999,kg -3018fa1b-5cfa-3c1b-9df9-46c35818dd88,SESCO,II.1.1,Entre Rios,AR-E,annual,2013,bioetanol combustion consumption by freight transport,0.09969803999999999,TJ,CH4,10.0,kg/TJ,0.9969803999999999,kg -db22f441-beed-3d57-ae14-c0cb13007808,SESCO,II.1.1,Entre Rios,AR-E,annual,2013,bioetanol combustion consumption by freight transport,0.09969803999999999,TJ,N2O,0.6,kg/TJ,0.05981882399999999,kg -d7085dd0-3fa5-3903-85fd-7144e85ceb9d,SESCO,II.1.1,Mendoza,AR-M,annual,2013,bioetanol combustion consumption by freight transport,0.17383247999999998,TJ,CH4,10.0,kg/TJ,1.7383247999999998,kg -bf67a73d-03d9-389f-a95a-1e8f4a781b7f,SESCO,II.1.1,Mendoza,AR-M,annual,2013,bioetanol combustion consumption by freight transport,0.17383247999999998,TJ,N2O,0.6,kg/TJ,0.10429948799999998,kg -514ee4c5-6a87-318b-bddb-04668542fb7c,SESCO,II.1.1,Misiones,AR-N,annual,2013,bioetanol combustion consumption by freight transport,0.019172699999999997,TJ,CH4,10.0,kg/TJ,0.19172699999999998,kg -ffdff974-cb85-343f-a8bd-e31093b8bae6,SESCO,II.1.1,Misiones,AR-N,annual,2013,bioetanol combustion consumption by freight transport,0.019172699999999997,TJ,N2O,0.6,kg/TJ,0.011503619999999997,kg -13cb469a-0b14-3e00-8d51-d6c4d7b94fbc,SESCO,II.1.1,Neuquén,AR-Q,annual,2013,bioetanol combustion consumption by freight transport,0.017894519999999997,TJ,CH4,10.0,kg/TJ,0.17894519999999997,kg -6dec8d8b-ea31-3ce6-81d2-f369e4b6afee,SESCO,II.1.1,Neuquén,AR-Q,annual,2013,bioetanol combustion consumption by freight transport,0.017894519999999997,TJ,N2O,0.6,kg/TJ,0.010736711999999997,kg -44db4c55-bafa-32be-8080-ebfbe362b4ef,SESCO,II.1.1,Rio Negro,AR-R,annual,2013,bioetanol combustion consumption by freight transport,0.0511272,TJ,CH4,10.0,kg/TJ,0.511272,kg -9fbb3989-ada2-3612-9085-5e2b2d8f1e6f,SESCO,II.1.1,Rio Negro,AR-R,annual,2013,bioetanol combustion consumption by freight transport,0.0511272,TJ,N2O,0.6,kg/TJ,0.030676319999999997,kg -d9aa9830-93b8-310e-8be4-05334f3dde1e,SESCO,II.1.1,Salta,AR-A,annual,2013,bioetanol combustion consumption by freight transport,0.3898449,TJ,CH4,10.0,kg/TJ,3.898449,kg -0e01a02a-be1f-3875-ae74-1d1b82490253,SESCO,II.1.1,Salta,AR-A,annual,2013,bioetanol combustion consumption by freight transport,0.3898449,TJ,N2O,0.6,kg/TJ,0.23390693999999998,kg -d23102f5-cc81-3284-b05b-f22a4131568f,SESCO,II.1.1,Santa Fe,AR-S,annual,2013,bioetanol combustion consumption by freight transport,0.6045791399999999,TJ,CH4,10.0,kg/TJ,6.045791399999999,kg -1843e620-4c74-3969-9536-8522cc4bbc30,SESCO,II.1.1,Santa Fe,AR-S,annual,2013,bioetanol combustion consumption by freight transport,0.6045791399999999,TJ,N2O,0.6,kg/TJ,0.36274748399999995,kg -6ed23538-be15-3e88-a514-1f6fab3966bb,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2013,bioetanol combustion consumption by freight transport,0.0012781799999999999,TJ,CH4,10.0,kg/TJ,0.0127818,kg -3fa75ef5-5cf8-3cd2-8691-3535b3963c6d,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2013,bioetanol combustion consumption by freight transport,0.0012781799999999999,TJ,N2O,0.6,kg/TJ,0.0007669079999999998,kg -2669f643-d8e0-35a2-8775-e216dada96dd,SESCO,II.1.1,Tucuman,AR-T,annual,2013,bioetanol combustion consumption by freight transport,0.03706722,TJ,CH4,10.0,kg/TJ,0.3706722,kg -5f851a3e-103f-349f-b773-0565b1a9d429,SESCO,II.1.1,Tucuman,AR-T,annual,2013,bioetanol combustion consumption by freight transport,0.03706722,TJ,N2O,0.6,kg/TJ,0.022240331999999998,kg -4130952b-152e-35e4-b37f-d12994fa2bd5,SESCO,II.1.1,Buenos Aires,AR-B,annual,2013,bioetanol combustion consumption by freight transport,6.36022368,TJ,CH4,10.0,kg/TJ,63.6022368,kg -b58144c3-1fd3-3c7c-ae7f-d4292221fd07,SESCO,II.1.1,Buenos Aires,AR-B,annual,2013,bioetanol combustion consumption by freight transport,6.36022368,TJ,N2O,0.6,kg/TJ,3.816134208,kg -db5b2db8-06ec-36b6-9aa5-6a175c8d4d1d,SESCO,II.1.1,Capital Federal,AR-C,annual,2013,bioetanol combustion consumption by freight transport,6.122482199999999,TJ,CH4,10.0,kg/TJ,61.224821999999996,kg -46c04210-3fc1-31ea-a424-10a96d3b92aa,SESCO,II.1.1,Capital Federal,AR-C,annual,2013,bioetanol combustion consumption by freight transport,6.122482199999999,TJ,N2O,0.6,kg/TJ,3.6734893199999994,kg -77d14312-cb50-3074-a3ee-85a1db449646,SESCO,II.1.1,Chaco,AR-H,annual,2013,bioetanol combustion consumption by freight transport,0.22751603999999997,TJ,CH4,10.0,kg/TJ,2.2751604,kg -d0b8c1b3-e942-395a-a68e-5c49cbce556b,SESCO,II.1.1,Chaco,AR-H,annual,2013,bioetanol combustion consumption by freight transport,0.22751603999999997,TJ,N2O,0.6,kg/TJ,0.13650962399999997,kg -37c02061-ab4a-368d-b16a-6f9c0c8332d9,SESCO,II.1.1,Chubut,AR-U,annual,2013,bioetanol combustion consumption by freight transport,0.02428542,TJ,CH4,10.0,kg/TJ,0.2428542,kg -883ae279-1d72-35bd-9eba-8cea4284f2ba,SESCO,II.1.1,Chubut,AR-U,annual,2013,bioetanol combustion consumption by freight transport,0.02428542,TJ,N2O,0.6,kg/TJ,0.014571251999999998,kg -3c75acaf-213f-359b-834e-f010257b4be1,SESCO,II.1.1,Corrientes,AR-W,annual,2013,bioetanol combustion consumption by freight transport,0.08052533999999999,TJ,CH4,10.0,kg/TJ,0.8052533999999999,kg -b941d417-b280-38b1-a4cf-b0032d2235b0,SESCO,II.1.1,Corrientes,AR-W,annual,2013,bioetanol combustion consumption by freight transport,0.08052533999999999,TJ,N2O,0.6,kg/TJ,0.048315203999999994,kg -e9365ea8-6890-3086-9dde-fa2218c9cba5,SESCO,II.1.1,Córdoba,AR-X,annual,2013,bioetanol combustion consumption by freight transport,0.14187798,TJ,CH4,10.0,kg/TJ,1.4187797999999998,kg -870250b3-4cf4-39f1-92f0-bbed71869f9e,SESCO,II.1.1,Córdoba,AR-X,annual,2013,bioetanol combustion consumption by freight transport,0.14187798,TJ,N2O,0.6,kg/TJ,0.085126788,kg -6d8e0aaa-09b9-38fb-a041-6ac763bfcb38,SESCO,II.1.1,Entre Rios,AR-E,annual,2013,bioetanol combustion consumption by freight transport,0.11247983999999998,TJ,CH4,10.0,kg/TJ,1.1247983999999998,kg -a9109fcc-f15b-3acf-a11a-436be7934421,SESCO,II.1.1,Entre Rios,AR-E,annual,2013,bioetanol combustion consumption by freight transport,0.11247983999999998,TJ,N2O,0.6,kg/TJ,0.06748790399999999,kg -92736f31-fa43-34de-b28d-a8f65d83a9ed,SESCO,II.1.1,Jujuy,AR-Y,annual,2013,bioetanol combustion consumption by freight transport,0.0038345399999999996,TJ,CH4,10.0,kg/TJ,0.038345399999999995,kg -832dccf9-9a4b-3ae0-aff3-52971d35831c,SESCO,II.1.1,Jujuy,AR-Y,annual,2013,bioetanol combustion consumption by freight transport,0.0038345399999999996,TJ,N2O,0.6,kg/TJ,0.0023007239999999997,kg -314f62fa-87e0-3197-9bb1-be24c34fdf51,SESCO,II.1.1,La Pampa,AR-L,annual,2013,bioetanol combustion consumption by freight transport,0.0012781799999999999,TJ,CH4,10.0,kg/TJ,0.0127818,kg -c3eb1576-6ad4-3f43-ab04-fe852b072496,SESCO,II.1.1,La Pampa,AR-L,annual,2013,bioetanol combustion consumption by freight transport,0.0012781799999999999,TJ,N2O,0.6,kg/TJ,0.0007669079999999998,kg -cf28b7f2-aa98-38a1-8752-d550cb27d53e,SESCO,II.1.1,La Rioja,AR-F,annual,2013,bioetanol combustion consumption by freight transport,0.014059979999999998,TJ,CH4,10.0,kg/TJ,0.14059979999999997,kg -e09ede8d-c38e-396a-b9d2-805f6794a1ec,SESCO,II.1.1,La Rioja,AR-F,annual,2013,bioetanol combustion consumption by freight transport,0.014059979999999998,TJ,N2O,0.6,kg/TJ,0.008435987999999998,kg -deb95871-e581-3a9e-bebc-c90f7e770f72,SESCO,II.1.1,Mendoza,AR-M,annual,2013,bioetanol combustion consumption by freight transport,0.14699069999999997,TJ,CH4,10.0,kg/TJ,1.4699069999999996,kg -a53dc2c4-8a2f-3edc-bbed-89554084e23e,SESCO,II.1.1,Mendoza,AR-M,annual,2013,bioetanol combustion consumption by freight transport,0.14699069999999997,TJ,N2O,0.6,kg/TJ,0.08819441999999998,kg -6a7844f8-1294-3374-855d-fa8414bd1a42,SESCO,II.1.1,Misiones,AR-N,annual,2013,bioetanol combustion consumption by freight transport,0.028119959999999996,TJ,CH4,10.0,kg/TJ,0.28119959999999994,kg -e121f3a4-26b5-37d7-9b35-1b6cbde959b3,SESCO,II.1.1,Misiones,AR-N,annual,2013,bioetanol combustion consumption by freight transport,0.028119959999999996,TJ,N2O,0.6,kg/TJ,0.016871975999999997,kg -528f4e37-2b84-3ed4-a612-537462dcbc90,SESCO,II.1.1,Neuquén,AR-Q,annual,2013,bioetanol combustion consumption by freight transport,0.0127818,TJ,CH4,10.0,kg/TJ,0.127818,kg -b33f88bc-c6a2-3d29-86cd-aca859465e2e,SESCO,II.1.1,Neuquén,AR-Q,annual,2013,bioetanol combustion consumption by freight transport,0.0127818,TJ,N2O,0.6,kg/TJ,0.007669079999999999,kg -e94d0e47-e784-359e-890d-1b88adf2d257,SESCO,II.1.1,Rio Negro,AR-R,annual,2013,bioetanol combustion consumption by freight transport,0.05368356,TJ,CH4,10.0,kg/TJ,0.5368356,kg -9dece7e5-4afe-37ae-88f7-5f30a1cb8b2c,SESCO,II.1.1,Rio Negro,AR-R,annual,2013,bioetanol combustion consumption by freight transport,0.05368356,TJ,N2O,0.6,kg/TJ,0.032210136,kg -38bf57d5-b217-3793-90b1-d247d69808f5,SESCO,II.1.1,Salta,AR-A,annual,2013,bioetanol combustion consumption by freight transport,0.05879627999999999,TJ,CH4,10.0,kg/TJ,0.5879627999999999,kg -745023af-7905-3ad0-a600-b3f62879171c,SESCO,II.1.1,Salta,AR-A,annual,2013,bioetanol combustion consumption by freight transport,0.05879627999999999,TJ,N2O,0.6,kg/TJ,0.035277767999999994,kg -f7fc2bf4-9a8a-3cff-b108-ec5e175bd83d,SESCO,II.1.1,San Luis,AR-D,annual,2013,bioetanol combustion consumption by freight transport,0.015338159999999998,TJ,CH4,10.0,kg/TJ,0.15338159999999998,kg -1057b0c7-45ae-34c1-af8c-b08332abde10,SESCO,II.1.1,San Luis,AR-D,annual,2013,bioetanol combustion consumption by freight transport,0.015338159999999998,TJ,N2O,0.6,kg/TJ,0.009202895999999999,kg -7b9ec62c-fc64-371d-b70b-74329c5e7469,SESCO,II.1.1,Santa Fe,AR-S,annual,2013,bioetanol combustion consumption by freight transport,0.8627714999999999,TJ,CH4,10.0,kg/TJ,8.627714999999998,kg -f38fc082-4e13-3538-a7a0-f77483134940,SESCO,II.1.1,Santa Fe,AR-S,annual,2013,bioetanol combustion consumption by freight transport,0.8627714999999999,TJ,N2O,0.6,kg/TJ,0.5176628999999999,kg -d934c678-ba08-357f-acbc-f1967e17e35e,SESCO,II.1.1,Tucuman,AR-T,annual,2013,bioetanol combustion consumption by freight transport,0.03323268,TJ,CH4,10.0,kg/TJ,0.33232680000000003,kg -c977c332-0e30-34b8-ae7a-23a7fffcace3,SESCO,II.1.1,Tucuman,AR-T,annual,2013,bioetanol combustion consumption by freight transport,0.03323268,TJ,N2O,0.6,kg/TJ,0.019939608,kg -ecf99d33-2769-3aa8-95cc-25f66072008d,SESCO,II.1.1,Capital Federal,AR-C,annual,2014,bioetanol combustion consumption by to the public,1.81671984,TJ,CH4,10.0,kg/TJ,18.1671984,kg -5a1eef13-1ba6-3cba-ac96-06672c955aa9,SESCO,II.1.1,Capital Federal,AR-C,annual,2014,bioetanol combustion consumption by to the public,1.81671984,TJ,N2O,0.6,kg/TJ,1.090031904,kg -eaafde45-d9e8-31bc-9097-cacf86dbdbff,SESCO,II.1.1,Capital Federal,AR-C,annual,2014,bioetanol combustion consumption by to the public,0.26074872,TJ,CH4,10.0,kg/TJ,2.6074872,kg -03548c23-442e-3a79-bc69-d0d8387d105d,SESCO,II.1.1,Capital Federal,AR-C,annual,2014,bioetanol combustion consumption by to the public,0.26074872,TJ,N2O,0.6,kg/TJ,0.156449232,kg -300d29bb-33db-3d93-87c0-68b2bcc63348,SESCO,II.5.1,Córdoba,AR-X,annual,2014,bioetanol combustion consumption by agriculture machines,0.31886330399999996,TJ,CH4,10.0,kg/TJ,3.1886330399999996,kg -a84cc2ef-80a9-3c26-916f-3d80cfb7d922,SESCO,II.5.1,Córdoba,AR-X,annual,2014,bioetanol combustion consumption by agriculture machines,0.31886330399999996,TJ,N2O,0.6,kg/TJ,0.19131798239999998,kg -92bed8b5-b29a-307d-8eaf-b1b87862ec19,SESCO,II.5.1,Santa Fe,AR-S,annual,2014,bioetanol combustion consumption by agriculture machines,0.956760336,TJ,CH4,10.0,kg/TJ,9.56760336,kg -bfd3d87f-14cb-3637-967f-6a67e73b8393,SESCO,II.5.1,Santa Fe,AR-S,annual,2014,bioetanol combustion consumption by agriculture machines,0.956760336,TJ,N2O,0.6,kg/TJ,0.5740562015999999,kg -81c16f88-5adc-33eb-84e0-8cdc58f477c7,SESCO,II.5.1,Buenos Aires,AR-B,annual,2014,bioetanol combustion consumption by agriculture machines,0.013633919999999999,TJ,CH4,10.0,kg/TJ,0.1363392,kg -fefef925-e5f7-3ba0-892b-a2fe358420ff,SESCO,II.5.1,Buenos Aires,AR-B,annual,2014,bioetanol combustion consumption by agriculture machines,0.013633919999999999,TJ,N2O,0.6,kg/TJ,0.008180351999999998,kg -d804f917-dd5e-3e40-8332-11e0809c8752,SESCO,II.5.1,Córdoba,AR-X,annual,2014,bioetanol combustion consumption by agriculture machines,0.135998352,TJ,CH4,10.0,kg/TJ,1.35998352,kg -9544c96e-f93d-3ae2-a3f4-137d57f2a3ba,SESCO,II.5.1,Córdoba,AR-X,annual,2014,bioetanol combustion consumption by agriculture machines,0.135998352,TJ,N2O,0.6,kg/TJ,0.08159901119999999,kg -6206224e-c513-3e0b-bc02-733d730be001,SESCO,II.5.1,Santa Fe,AR-S,annual,2014,bioetanol combustion consumption by agriculture machines,0.19087488,TJ,CH4,10.0,kg/TJ,1.9087488,kg -167ccbd0-34f7-3d41-81c0-3bb60b9d2718,SESCO,II.5.1,Santa Fe,AR-S,annual,2014,bioetanol combustion consumption by agriculture machines,0.19087488,TJ,N2O,0.6,kg/TJ,0.114524928,kg -c0b52354-6906-3a0f-a6e2-df01e4569413,SESCO,II.1.1,Buenos Aires,AR-B,annual,2014,bioetanol combustion consumption by to the public,454.259803644,TJ,CH4,10.0,kg/TJ,4542.59803644,kg -f211d88d-e6d4-365e-bc99-33b1d0459474,SESCO,II.1.1,Buenos Aires,AR-B,annual,2014,bioetanol combustion consumption by to the public,454.259803644,TJ,N2O,0.6,kg/TJ,272.55588218639997,kg -72825eea-be16-3d1b-939c-f84cdeef1e07,SESCO,II.1.1,Capital Federal,AR-C,annual,2014,bioetanol combustion consumption by to the public,151.59155151599998,TJ,CH4,10.0,kg/TJ,1515.9155151599998,kg -a111e2a6-9662-3041-b4ac-7f16873a26d7,SESCO,II.1.1,Capital Federal,AR-C,annual,2014,bioetanol combustion consumption by to the public,151.59155151599998,TJ,N2O,0.6,kg/TJ,90.95493090959998,kg -0700d011-fb0c-3797-9758-cd1e8d67535c,SESCO,II.1.1,Catamarca,AR-K,annual,2014,bioetanol combustion consumption by to the public,23.227086959999998,TJ,CH4,10.0,kg/TJ,232.27086959999997,kg -b8abbe3a-de7e-38eb-aa60-47a560c7222c,SESCO,II.1.1,Catamarca,AR-K,annual,2014,bioetanol combustion consumption by to the public,23.227086959999998,TJ,N2O,0.6,kg/TJ,13.936252175999998,kg -3c2e839d-9ee3-368b-b841-05e1a77c404a,SESCO,II.1.1,Chaco,AR-H,annual,2014,bioetanol combustion consumption by to the public,20.94851808,TJ,CH4,10.0,kg/TJ,209.4851808,kg -ec1a691b-ca6c-3b7f-8dbe-8488ee2a72fe,SESCO,II.1.1,Chaco,AR-H,annual,2014,bioetanol combustion consumption by to the public,20.94851808,TJ,N2O,0.6,kg/TJ,12.569110848,kg -79551942-58e4-3c64-8c36-11cd4f43217a,SESCO,II.1.1,Chubut,AR-U,annual,2014,bioetanol combustion consumption by to the public,15.138763919999999,TJ,CH4,10.0,kg/TJ,151.3876392,kg -7bb17fd4-d563-3145-b7c7-0c3e5294a1bc,SESCO,II.1.1,Chubut,AR-U,annual,2014,bioetanol combustion consumption by to the public,15.138763919999999,TJ,N2O,0.6,kg/TJ,9.083258352,kg -f2de60bf-b05c-3b72-80b8-66f24c49fbe2,SESCO,II.1.1,Corrientes,AR-W,annual,2014,bioetanol combustion consumption by to the public,15.54778152,TJ,CH4,10.0,kg/TJ,155.47781519999998,kg -efdc7dd6-d53d-31e5-ab34-79b0475012bb,SESCO,II.1.1,Corrientes,AR-W,annual,2014,bioetanol combustion consumption by to the public,15.54778152,TJ,N2O,0.6,kg/TJ,9.328668912,kg -d0045557-b04c-3519-941d-419b16eb7ae7,SESCO,II.1.1,Córdoba,AR-X,annual,2014,bioetanol combustion consumption by to the public,144.8111985912,TJ,CH4,10.0,kg/TJ,1448.111985912,kg -9367843e-5e12-310b-9fae-c2df2866eea3,SESCO,II.1.1,Córdoba,AR-X,annual,2014,bioetanol combustion consumption by to the public,144.8111985912,TJ,N2O,0.6,kg/TJ,86.88671915472,kg -9ed9b617-c555-3e7b-a82c-3d2ad1c96fdd,SESCO,II.1.1,Entre Rios,AR-E,annual,2014,bioetanol combustion consumption by to the public,51.68448648,TJ,CH4,10.0,kg/TJ,516.8448648,kg -eccfb701-0629-38c9-889a-8f2bba51cf18,SESCO,II.1.1,Entre Rios,AR-E,annual,2014,bioetanol combustion consumption by to the public,51.68448648,TJ,N2O,0.6,kg/TJ,31.010691887999997,kg -5bf53250-aa1e-3af0-b78a-e60fb4c290e7,SESCO,II.1.1,Formosa,AR-P,annual,2014,bioetanol combustion consumption by to the public,25.83798264,TJ,CH4,10.0,kg/TJ,258.3798264,kg -53ac22b2-4182-3fd8-890e-fa3bf057fcf3,SESCO,II.1.1,Formosa,AR-P,annual,2014,bioetanol combustion consumption by to the public,25.83798264,TJ,N2O,0.6,kg/TJ,15.502789583999999,kg -7956fc3b-5751-3440-bdec-41846c686ae8,SESCO,II.1.1,Jujuy,AR-Y,annual,2014,bioetanol combustion consumption by to the public,6.999313679999999,TJ,CH4,10.0,kg/TJ,69.99313679999999,kg -6875843c-f3df-35e0-b47e-d898e203ddc7,SESCO,II.1.1,Jujuy,AR-Y,annual,2014,bioetanol combustion consumption by to the public,6.999313679999999,TJ,N2O,0.6,kg/TJ,4.199588208,kg -3bc51fbb-f2ca-3122-947f-38fab64e0cb4,SESCO,II.1.1,La Pampa,AR-L,annual,2014,bioetanol combustion consumption by to the public,5.97165696,TJ,CH4,10.0,kg/TJ,59.7165696,kg -e56556ac-8e17-352d-bd98-58c94efb7651,SESCO,II.1.1,La Pampa,AR-L,annual,2014,bioetanol combustion consumption by to the public,5.97165696,TJ,N2O,0.6,kg/TJ,3.5829941759999997,kg -39e88ce3-6e00-3992-b096-d9308eafe86e,SESCO,II.1.1,La Rioja,AR-F,annual,2014,bioetanol combustion consumption by to the public,6.106291919999999,TJ,CH4,10.0,kg/TJ,61.062919199999996,kg -34692781-d39b-3228-bc3a-04e21a142f7c,SESCO,II.1.1,La Rioja,AR-F,annual,2014,bioetanol combustion consumption by to the public,6.106291919999999,TJ,N2O,0.6,kg/TJ,3.6637751519999995,kg -ec92dcb3-bb04-36be-9cf5-5279aafdf7a9,SESCO,II.1.1,Mendoza,AR-M,annual,2014,bioetanol combustion consumption by to the public,23.12312832,TJ,CH4,10.0,kg/TJ,231.2312832,kg -704182fd-368b-3db2-83ea-a31102c40970,SESCO,II.1.1,Mendoza,AR-M,annual,2014,bioetanol combustion consumption by to the public,23.12312832,TJ,N2O,0.6,kg/TJ,13.873876992,kg -d61efb05-9146-3057-b840-40aff3bfbf2e,SESCO,II.1.1,Misiones,AR-N,annual,2014,bioetanol combustion consumption by to the public,42.07427712,TJ,CH4,10.0,kg/TJ,420.7427712,kg -2c0acf19-2dc9-390b-8dbf-4aa877c04b17,SESCO,II.1.1,Misiones,AR-N,annual,2014,bioetanol combustion consumption by to the public,42.07427712,TJ,N2O,0.6,kg/TJ,25.244566271999997,kg -625945e1-0f4e-3efb-9f62-438b5b5a43ca,SESCO,II.1.1,Neuquén,AR-Q,annual,2014,bioetanol combustion consumption by to the public,14.4775188,TJ,CH4,10.0,kg/TJ,144.775188,kg -9906dc69-852b-310d-b4ad-ed7ecf20b472,SESCO,II.1.1,Neuquén,AR-Q,annual,2014,bioetanol combustion consumption by to the public,14.4775188,TJ,N2O,0.6,kg/TJ,8.68651128,kg -80cba79a-3e0d-3ed1-a032-61fda8658267,SESCO,II.1.1,Rio Negro,AR-R,annual,2014,bioetanol combustion consumption by to the public,19.00398024,TJ,CH4,10.0,kg/TJ,190.0398024,kg -fb52a684-b5c7-35f7-98be-fb0eee5a1adb,SESCO,II.1.1,Rio Negro,AR-R,annual,2014,bioetanol combustion consumption by to the public,19.00398024,TJ,N2O,0.6,kg/TJ,11.402388144,kg -7a270f95-95e5-37ff-9925-0309d25e3ca8,SESCO,II.1.1,Salta,AR-A,annual,2014,bioetanol combustion consumption by to the public,3.4667650080000003,TJ,CH4,10.0,kg/TJ,34.66765008,kg -551489dd-072b-3de8-b8de-3d4a95e74e86,SESCO,II.1.1,Salta,AR-A,annual,2014,bioetanol combustion consumption by to the public,3.4667650080000003,TJ,N2O,0.6,kg/TJ,2.0800590048000003,kg -4ff6eba7-a81b-3eee-aa24-041f16147071,SESCO,II.1.1,San Juan,AR-J,annual,2014,bioetanol combustion consumption by to the public,14.641125839999999,TJ,CH4,10.0,kg/TJ,146.41125839999998,kg -b7c4539d-f1d9-39b2-83b9-3774c882019d,SESCO,II.1.1,San Juan,AR-J,annual,2014,bioetanol combustion consumption by to the public,14.641125839999999,TJ,N2O,0.6,kg/TJ,8.784675503999999,kg -304eb3a8-9a08-39e3-ba00-f8e5515bf20a,SESCO,II.1.1,San Luis,AR-D,annual,2014,bioetanol combustion consumption by to the public,29.133982800000002,TJ,CH4,10.0,kg/TJ,291.339828,kg -78e69ef8-0d84-3566-a463-a58178999f7b,SESCO,II.1.1,San Luis,AR-D,annual,2014,bioetanol combustion consumption by to the public,29.133982800000002,TJ,N2O,0.6,kg/TJ,17.480389680000002,kg -0b993c4e-ba4b-3e13-8507-a6c6d0eec523,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2014,bioetanol combustion consumption by to the public,3.2908874399999997,TJ,CH4,10.0,kg/TJ,32.908874399999995,kg -acadbc86-7fe2-3306-a649-271b2dc68bab,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2014,bioetanol combustion consumption by to the public,3.2908874399999997,TJ,N2O,0.6,kg/TJ,1.9745324639999997,kg -afc26546-6715-3e2e-9b6c-ca76bf2ca7c3,SESCO,II.1.1,Santa Fe,AR-S,annual,2014,bioetanol combustion consumption by to the public,136.8861587856,TJ,CH4,10.0,kg/TJ,1368.861587856,kg -a957e968-e304-3a81-a8b1-2a6e27f607a0,SESCO,II.1.1,Santa Fe,AR-S,annual,2014,bioetanol combustion consumption by to the public,136.8861587856,TJ,N2O,0.6,kg/TJ,82.13169527136,kg -c4b0e386-5374-3f6c-86b4-3a3fc8d00448,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2014,bioetanol combustion consumption by to the public,18.06664824,TJ,CH4,10.0,kg/TJ,180.6664824,kg -312a43ce-df3d-3be9-94b2-47e3f9f83d0e,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2014,bioetanol combustion consumption by to the public,18.06664824,TJ,N2O,0.6,kg/TJ,10.839988944,kg -d274eed3-1d00-3c5a-877f-ea62bf6b0ca5,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2014,bioetanol combustion consumption by to the public,6.3687448799999995,TJ,CH4,10.0,kg/TJ,63.6874488,kg -758d5599-b13e-3573-9258-973ae2637c20,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2014,bioetanol combustion consumption by to the public,6.3687448799999995,TJ,N2O,0.6,kg/TJ,3.8212469279999994,kg -2b75ffde-ba34-3115-93c6-7159281a8ad6,SESCO,II.1.1,Tucuman,AR-T,annual,2014,bioetanol combustion consumption by to the public,5.18259384,TJ,CH4,10.0,kg/TJ,51.8259384,kg -817632d1-005e-3431-964c-dae5059edf40,SESCO,II.1.1,Tucuman,AR-T,annual,2014,bioetanol combustion consumption by to the public,5.18259384,TJ,N2O,0.6,kg/TJ,3.109556304,kg -359013d4-f1e6-3a48-b867-1ff5992f36fe,SESCO,II.1.1,Buenos Aires,AR-B,annual,2014,bioetanol combustion consumption by to the public,112.89303298799999,TJ,CH4,10.0,kg/TJ,1128.9303298799998,kg -040e7145-e165-38a4-af06-148b9bb2e22b,SESCO,II.1.1,Buenos Aires,AR-B,annual,2014,bioetanol combustion consumption by to the public,112.89303298799999,TJ,N2O,0.6,kg/TJ,67.73581979279999,kg -53af27cc-04f6-336e-9b82-b1af2e4cc9a5,SESCO,II.1.1,Capital Federal,AR-C,annual,2014,bioetanol combustion consumption by to the public,53.3054232288,TJ,CH4,10.0,kg/TJ,533.054232288,kg -75fcc875-d9c8-3418-8398-5a8b70ca6ac1,SESCO,II.1.1,Capital Federal,AR-C,annual,2014,bioetanol combustion consumption by to the public,53.3054232288,TJ,N2O,0.6,kg/TJ,31.98325393728,kg -aa121ac3-7cc3-3187-9cab-16ef289f96ae,SESCO,II.1.1,Catamarca,AR-K,annual,2014,bioetanol combustion consumption by to the public,5.076930959999999,TJ,CH4,10.0,kg/TJ,50.76930959999999,kg -d3fcd2a0-9c6b-3c69-a760-f5a967264d18,SESCO,II.1.1,Catamarca,AR-K,annual,2014,bioetanol combustion consumption by to the public,5.076930959999999,TJ,N2O,0.6,kg/TJ,3.0461585759999994,kg -1866d974-4f5f-3e4c-beb4-5a14fdef4049,SESCO,II.1.1,Chaco,AR-H,annual,2014,bioetanol combustion consumption by to the public,4.275060817248,TJ,CH4,10.0,kg/TJ,42.75060817248,kg -2c227e79-4649-3e7a-957b-9c6543820276,SESCO,II.1.1,Chaco,AR-H,annual,2014,bioetanol combustion consumption by to the public,4.275060817248,TJ,N2O,0.6,kg/TJ,2.5650364903488,kg -96a2fbd7-bbb6-3370-b0dd-95c6a772093e,SESCO,II.1.1,Chubut,AR-U,annual,2014,bioetanol combustion consumption by to the public,2.721533577408,TJ,CH4,10.0,kg/TJ,27.21533577408,kg -573f0281-7265-35ed-aa59-1e8b6e44a474,SESCO,II.1.1,Chubut,AR-U,annual,2014,bioetanol combustion consumption by to the public,2.721533577408,TJ,N2O,0.6,kg/TJ,1.6329201464448,kg -567f6748-e9eb-397e-8a8b-922585d1a13e,SESCO,II.1.1,Corrientes,AR-W,annual,2014,bioetanol combustion consumption by to the public,4.401787081104,TJ,CH4,10.0,kg/TJ,44.01787081104,kg -e026bdde-9ac0-36e5-ab97-88930ce97e9a,SESCO,II.1.1,Corrientes,AR-W,annual,2014,bioetanol combustion consumption by to the public,4.401787081104,TJ,N2O,0.6,kg/TJ,2.6410722486624,kg -a2ea66e6-0776-3b0d-81c6-606f19b1a27d,SESCO,II.1.1,Córdoba,AR-X,annual,2014,bioetanol combustion consumption by to the public,29.025262172592,TJ,CH4,10.0,kg/TJ,290.25262172592,kg -5116a492-9daf-31ab-96bd-1703f0937d0e,SESCO,II.1.1,Córdoba,AR-X,annual,2014,bioetanol combustion consumption by to the public,29.025262172592,TJ,N2O,0.6,kg/TJ,17.4151573035552,kg -f9f78686-8674-3eb4-9591-4cebc749eb96,SESCO,II.1.1,Entre Rios,AR-E,annual,2014,bioetanol combustion consumption by to the public,12.354453980495999,TJ,CH4,10.0,kg/TJ,123.54453980495998,kg -6166c421-0081-304e-9db3-20c1cff5f1cd,SESCO,II.1.1,Entre Rios,AR-E,annual,2014,bioetanol combustion consumption by to the public,12.354453980495999,TJ,N2O,0.6,kg/TJ,7.412672388297599,kg -09286f6e-ec85-32f6-b301-fec49e140775,SESCO,II.1.1,Formosa,AR-P,annual,2014,bioetanol combustion consumption by to the public,4.996216619784,TJ,CH4,10.0,kg/TJ,49.96216619784,kg -5dd4ea50-39fe-3f2f-b458-7095b127dfdd,SESCO,II.1.1,Formosa,AR-P,annual,2014,bioetanol combustion consumption by to the public,4.996216619784,TJ,N2O,0.6,kg/TJ,2.9977299718704,kg -2a2c6adb-c900-32b6-979b-407915cd6378,SESCO,II.1.1,Jujuy,AR-Y,annual,2014,bioetanol combustion consumption by to the public,0.257287919832,TJ,CH4,10.0,kg/TJ,2.57287919832,kg -8a2b6883-e6d2-3860-ae26-8a775e9532db,SESCO,II.1.1,Jujuy,AR-Y,annual,2014,bioetanol combustion consumption by to the public,0.257287919832,TJ,N2O,0.6,kg/TJ,0.1543727518992,kg -f2c5db26-3387-34c1-8601-9bd86773563f,SESCO,II.1.1,La Pampa,AR-L,annual,2014,bioetanol combustion consumption by to the public,1.566419645016,TJ,CH4,10.0,kg/TJ,15.664196450159999,kg -4bcd56f4-34e2-3edc-aea7-51913ad35592,SESCO,II.1.1,La Pampa,AR-L,annual,2014,bioetanol combustion consumption by to the public,1.566419645016,TJ,N2O,0.6,kg/TJ,0.9398517870095999,kg -4189ed5f-a40a-32dd-9eb7-689e73781c0e,SESCO,II.1.1,La Rioja,AR-F,annual,2014,bioetanol combustion consumption by to the public,1.0067756898240001,TJ,CH4,10.0,kg/TJ,10.06775689824,kg -6ec41be4-7fa3-3389-98c4-6f1cbb189a8b,SESCO,II.1.1,La Rioja,AR-F,annual,2014,bioetanol combustion consumption by to the public,1.0067756898240001,TJ,N2O,0.6,kg/TJ,0.6040654138944,kg -803db2fa-e35a-37d7-bf56-1261d59d8356,SESCO,II.1.1,Mendoza,AR-M,annual,2014,bioetanol combustion consumption by to the public,5.549543809416,TJ,CH4,10.0,kg/TJ,55.49543809416,kg -9097946a-1344-3b42-97e3-cbf88b847d21,SESCO,II.1.1,Mendoza,AR-M,annual,2014,bioetanol combustion consumption by to the public,5.549543809416,TJ,N2O,0.6,kg/TJ,3.3297262856496,kg -e5adf7b2-50b1-3f28-9b9c-bbb1b62ddebb,SESCO,II.1.1,Misiones,AR-N,annual,2014,bioetanol combustion consumption by to the public,6.473257738848,TJ,CH4,10.0,kg/TJ,64.73257738848,kg -26adfa93-6fd8-3ba8-8fd3-641daf6b50eb,SESCO,II.1.1,Misiones,AR-N,annual,2014,bioetanol combustion consumption by to the public,6.473257738848,TJ,N2O,0.6,kg/TJ,3.8839546433087997,kg -30d94b4f-7f80-3494-a680-3517e294d73d,SESCO,II.1.1,Neuquén,AR-Q,annual,2014,bioetanol combustion consumption by to the public,4.121463971736,TJ,CH4,10.0,kg/TJ,41.21463971736,kg -d42ccc87-cf18-3870-87d1-544c46bb3a41,SESCO,II.1.1,Neuquén,AR-Q,annual,2014,bioetanol combustion consumption by to the public,4.121463971736,TJ,N2O,0.6,kg/TJ,2.4728783830416003,kg -bc4c4cb7-bcc0-301a-9634-4404a5ef3714,SESCO,II.1.1,Rio Negro,AR-R,annual,2014,bioetanol combustion consumption by to the public,5.490026124624,TJ,CH4,10.0,kg/TJ,54.90026124624001,kg -8880b3e4-a011-3835-990a-b5efb5a78146,SESCO,II.1.1,Rio Negro,AR-R,annual,2014,bioetanol combustion consumption by to the public,5.490026124624,TJ,N2O,0.6,kg/TJ,3.2940156747744003,kg -a1e7bc8d-8036-395e-b1b3-48c42da07f15,SESCO,II.1.1,Salta,AR-A,annual,2014,bioetanol combustion consumption by to the public,0.42776424,TJ,CH4,10.0,kg/TJ,4.2776424,kg -d77739c4-0f86-37bb-b02d-7b4a695ab4cf,SESCO,II.1.1,Salta,AR-A,annual,2014,bioetanol combustion consumption by to the public,0.42776424,TJ,N2O,0.6,kg/TJ,0.256658544,kg -d3103a3d-4984-370c-880d-4bcdc8b4c46e,SESCO,II.1.1,San Juan,AR-J,annual,2014,bioetanol combustion consumption by to the public,3.020267080224,TJ,CH4,10.0,kg/TJ,30.20267080224,kg -a86bd933-f1fe-3dd5-aba7-eb30648a3df3,SESCO,II.1.1,San Juan,AR-J,annual,2014,bioetanol combustion consumption by to the public,3.020267080224,TJ,N2O,0.6,kg/TJ,1.8121602481344,kg -4cefcef0-4714-38e4-825d-ad704ab7484b,SESCO,II.1.1,San Luis,AR-D,annual,2014,bioetanol combustion consumption by to the public,6.899018985575999,TJ,CH4,10.0,kg/TJ,68.99018985576,kg -222fe22d-af9d-3ca4-a6eb-d9c49f710ce7,SESCO,II.1.1,San Luis,AR-D,annual,2014,bioetanol combustion consumption by to the public,6.899018985575999,TJ,N2O,0.6,kg/TJ,4.139411391345599,kg -e4e0c217-1852-35c2-a467-9d75efdf72f8,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2014,bioetanol combustion consumption by to the public,1.505369337192,TJ,CH4,10.0,kg/TJ,15.053693371920001,kg -593dad1b-5518-3eb9-a1e1-1ba9d5c4e82c,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2014,bioetanol combustion consumption by to the public,1.505369337192,TJ,N2O,0.6,kg/TJ,0.9032216023152,kg -8206988e-cf6d-3825-ba30-deace34fea24,SESCO,II.1.1,Santa Fe,AR-S,annual,2014,bioetanol combustion consumption by to the public,31.414092142536003,TJ,CH4,10.0,kg/TJ,314.14092142536003,kg -d0499cf0-011a-380f-bd36-b18dfb8d212b,SESCO,II.1.1,Santa Fe,AR-S,annual,2014,bioetanol combustion consumption by to the public,31.414092142536003,TJ,N2O,0.6,kg/TJ,18.848455285521602,kg -5142a019-1645-3239-a45e-c2d169517ea2,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2014,bioetanol combustion consumption by to the public,4.27899556656,TJ,CH4,10.0,kg/TJ,42.7899556656,kg -ac4ce8c8-be7a-3eaa-9dec-6a0cc793a460,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2014,bioetanol combustion consumption by to the public,4.27899556656,TJ,N2O,0.6,kg/TJ,2.567397339936,kg -dfde8dc6-fbd1-34db-8756-2d1c72be55a8,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2014,bioetanol combustion consumption by to the public,2.9149280058239997,TJ,CH4,10.0,kg/TJ,29.149280058239995,kg -621a2123-6996-3f43-b4c0-e4a5c66c3dfa,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2014,bioetanol combustion consumption by to the public,2.9149280058239997,TJ,N2O,0.6,kg/TJ,1.7489568034943999,kg -910c9a72-8f0f-386e-a70f-4ed2797c3e04,SESCO,II.1.1,Tucuman,AR-T,annual,2014,bioetanol combustion consumption by to the public,1.0723074671519999,TJ,CH4,10.0,kg/TJ,10.72307467152,kg -7164be96-5068-3a5d-8d92-b0b297b3b910,SESCO,II.1.1,Tucuman,AR-T,annual,2014,bioetanol combustion consumption by to the public,1.0723074671519999,TJ,N2O,0.6,kg/TJ,0.6433844802911999,kg -7e9603a5-2ab6-3804-917c-c30f1068b65e,SESCO,I.3.1,Buenos Aires,AR-B,annual,2014,bioetanol combustion consumption by petrochemical industries,0.689876352,TJ,CH4,10.0,kg/TJ,6.898763519999999,kg -a3867aa5-fdd9-343f-8632-4e4a404c7538,SESCO,I.3.1,Buenos Aires,AR-B,annual,2014,bioetanol combustion consumption by petrochemical industries,0.689876352,TJ,N2O,0.6,kg/TJ,0.4139258112,kg -7fff26d6-eaa3-33ab-98eb-7897551cf4e4,SESCO,I.3.1,Córdoba,AR-X,annual,2014,bioetanol combustion consumption by petrochemical industries,0.14145192,TJ,CH4,10.0,kg/TJ,1.4145192,kg -667a66a8-8674-32b4-92d0-1d96e1ce7293,SESCO,I.3.1,Córdoba,AR-X,annual,2014,bioetanol combustion consumption by petrochemical industries,0.14145192,TJ,N2O,0.6,kg/TJ,0.084871152,kg -155c53d8-af14-3364-b0e4-94705770fa0e,SESCO,I.3.1,Buenos Aires,AR-B,annual,2014,bioetanol combustion consumption by petrochemical industries,0.0255636,TJ,CH4,10.0,kg/TJ,0.255636,kg -09cff81a-c187-34cd-910c-f83225c0f463,SESCO,I.3.1,Buenos Aires,AR-B,annual,2014,bioetanol combustion consumption by petrochemical industries,0.0255636,TJ,N2O,0.6,kg/TJ,0.015338159999999998,kg -88f45e7a-ef46-3e17-a98c-89c92b629942,SESCO,II.1.1,Buenos Aires,AR-B,annual,2014,bioetanol combustion consumption by freight transport,0.2721330432,TJ,CH4,10.0,kg/TJ,2.721330432,kg -a88d3a45-b24d-3f03-9aa3-6c4590466a27,SESCO,II.1.1,Buenos Aires,AR-B,annual,2014,bioetanol combustion consumption by freight transport,0.2721330432,TJ,N2O,0.6,kg/TJ,0.16327982591999998,kg -c55b86d6-788b-3748-b4a5-08549193ab39,SESCO,II.1.1,Capital Federal,AR-C,annual,2014,bioetanol combustion consumption by freight transport,0.5114935512,TJ,CH4,10.0,kg/TJ,5.114935512,kg -6db33bc1-5393-34bb-bab1-6ca7043b0855,SESCO,II.1.1,Capital Federal,AR-C,annual,2014,bioetanol combustion consumption by freight transport,0.5114935512,TJ,N2O,0.6,kg/TJ,0.30689613071999994,kg -b10d5cd9-04be-3dc3-98fa-743dff0c7971,SESCO,II.1.1,Chaco,AR-H,annual,2014,bioetanol combustion consumption by freight transport,0.004345812,TJ,CH4,10.0,kg/TJ,0.04345812,kg -b01d7daa-3f50-3525-a07e-98b78ebfb550,SESCO,II.1.1,Chaco,AR-H,annual,2014,bioetanol combustion consumption by freight transport,0.004345812,TJ,N2O,0.6,kg/TJ,0.0026074872,kg -01a29b05-c8ed-3721-ac65-68c0a4fdfd0f,SESCO,II.1.1,Corrientes,AR-W,annual,2014,bioetanol combustion consumption by freight transport,0.001874664,TJ,CH4,10.0,kg/TJ,0.018746640000000002,kg -d4b24fcc-8890-3ee7-b5bd-7681d43aff26,SESCO,II.1.1,Corrientes,AR-W,annual,2014,bioetanol combustion consumption by freight transport,0.001874664,TJ,N2O,0.6,kg/TJ,0.0011247984,kg -bc66acac-1501-3272-928b-fc7d0b8e5006,SESCO,II.1.1,Córdoba,AR-X,annual,2014,bioetanol combustion consumption by freight transport,0.028580104799999995,TJ,CH4,10.0,kg/TJ,0.28580104799999995,kg -a3f046ee-f280-319c-8434-261a87fb5937,SESCO,II.1.1,Córdoba,AR-X,annual,2014,bioetanol combustion consumption by freight transport,0.028580104799999995,TJ,N2O,0.6,kg/TJ,0.017148062879999995,kg -01b07d4e-fb3f-3b22-ac75-6e35093064a4,SESCO,II.1.1,Entre Rios,AR-E,annual,2014,bioetanol combustion consumption by freight transport,0.0002045088,TJ,CH4,10.0,kg/TJ,0.002045088,kg -be3ad310-3f27-3a04-8665-f1d083bc7ce2,SESCO,II.1.1,Entre Rios,AR-E,annual,2014,bioetanol combustion consumption by freight transport,0.0002045088,TJ,N2O,0.6,kg/TJ,0.00012270528,kg -c419a2f1-9e7f-3651-8dec-63ac268132a3,SESCO,II.1.1,Mendoza,AR-M,annual,2014,bioetanol combustion consumption by freight transport,6.81696e-05,TJ,CH4,10.0,kg/TJ,0.0006816960000000001,kg -d9c8e5a2-c1cb-3c43-91d1-192e87932dff,SESCO,II.1.1,Mendoza,AR-M,annual,2014,bioetanol combustion consumption by freight transport,6.81696e-05,TJ,N2O,0.6,kg/TJ,4.090176e-05,kg -4ccc6183-494f-3bfa-8dd4-682f5cef43c8,SESCO,II.1.1,San Luis,AR-D,annual,2014,bioetanol combustion consumption by freight transport,0.0038004552,TJ,CH4,10.0,kg/TJ,0.038004552,kg -7ec9f050-3146-3936-be22-297516359e12,SESCO,II.1.1,San Luis,AR-D,annual,2014,bioetanol combustion consumption by freight transport,0.0038004552,TJ,N2O,0.6,kg/TJ,0.0022802731199999997,kg -2747aa9f-03a7-3f46-b82d-91ad42e38e8e,SESCO,II.1.1,Santa Fe,AR-S,annual,2014,bioetanol combustion consumption by freight transport,0.22380079679999998,TJ,CH4,10.0,kg/TJ,2.238007968,kg -5e5d4466-124d-30d2-8316-b3505ba8ca48,SESCO,II.1.1,Santa Fe,AR-S,annual,2014,bioetanol combustion consumption by freight transport,0.22380079679999998,TJ,N2O,0.6,kg/TJ,0.13428047808,kg -1ed4b42a-2e00-362c-af79-d3ffba7fa6f8,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2014,bioetanol combustion consumption by freight transport,0.000170424,TJ,CH4,10.0,kg/TJ,0.0017042399999999999,kg -27421454-4516-3dad-9f3d-2ad6e99edc3d,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2014,bioetanol combustion consumption by freight transport,0.000170424,TJ,N2O,0.6,kg/TJ,0.00010225439999999999,kg -fca70eaa-02cd-31b4-b6c3-8bd3233852c6,SESCO,II.1.1,Tucuman,AR-T,annual,2014,bioetanol combustion consumption by freight transport,0.0030676320000000003,TJ,CH4,10.0,kg/TJ,0.030676320000000003,kg -ebd0a288-9af0-3fca-b73c-9431e7b42f67,SESCO,II.1.1,Tucuman,AR-T,annual,2014,bioetanol combustion consumption by freight transport,0.0030676320000000003,TJ,N2O,0.6,kg/TJ,0.0018405792,kg -f75ac8d6-f10d-3d5a-97a5-c2ec38c6a4c7,SESCO,II.1.1,Buenos Aires,AR-B,annual,2014,bioetanol combustion consumption by freight transport,0.32216952959999995,TJ,CH4,10.0,kg/TJ,3.2216952959999996,kg -c53af122-841d-3937-a0a0-3f30d65127d7,SESCO,II.1.1,Buenos Aires,AR-B,annual,2014,bioetanol combustion consumption by freight transport,0.32216952959999995,TJ,N2O,0.6,kg/TJ,0.19330171775999996,kg -da50da94-38ce-3a1a-b383-d26b47b4a201,SESCO,II.1.1,Capital Federal,AR-C,annual,2014,bioetanol combustion consumption by freight transport,0.43785334080000005,TJ,CH4,10.0,kg/TJ,4.378533408000001,kg -ff61679f-f93c-35b4-8bfd-b3db9a5282f8,SESCO,II.1.1,Capital Federal,AR-C,annual,2014,bioetanol combustion consumption by freight transport,0.43785334080000005,TJ,N2O,0.6,kg/TJ,0.26271200448000004,kg -44e8dc79-e03d-3e82-928b-c5238a65e5e2,SESCO,II.1.1,Chaco,AR-H,annual,2014,bioetanol combustion consumption by freight transport,0.0028460808000000002,TJ,CH4,10.0,kg/TJ,0.028460808000000004,kg -8dc926ab-02d8-3123-bea2-5b7856a9b062,SESCO,II.1.1,Chaco,AR-H,annual,2014,bioetanol combustion consumption by freight transport,0.0028460808000000002,TJ,N2O,0.6,kg/TJ,0.00170764848,kg -0f363f4b-fe8b-34a4-8fb0-498fba0e3b0c,SESCO,II.1.1,Corrientes,AR-W,annual,2014,bioetanol combustion consumption by freight transport,0.005283144,TJ,CH4,10.0,kg/TJ,0.05283144,kg -7cdeee0c-76f8-39f7-b49f-36f2dc257327,SESCO,II.1.1,Corrientes,AR-W,annual,2014,bioetanol combustion consumption by freight transport,0.005283144,TJ,N2O,0.6,kg/TJ,0.0031698864,kg -17ac965a-ecaa-340f-8b77-b1a0cf523afc,SESCO,II.1.1,Córdoba,AR-X,annual,2014,bioetanol combustion consumption by freight transport,0.028546020000000002,TJ,CH4,10.0,kg/TJ,0.2854602,kg -ff1efd94-5dfd-38fa-973c-62a04c62d8ca,SESCO,II.1.1,Córdoba,AR-X,annual,2014,bioetanol combustion consumption by freight transport,0.028546020000000002,TJ,N2O,0.6,kg/TJ,0.017127612,kg -4959fd8f-ed29-38a6-a2e6-14afd1c281f6,SESCO,II.1.1,Entre Rios,AR-E,annual,2014,bioetanol combustion consumption by freight transport,0.008776836,TJ,CH4,10.0,kg/TJ,0.08776835999999999,kg -fc92edf7-aee5-3662-8e2f-d6fd8e89b7dc,SESCO,II.1.1,Entre Rios,AR-E,annual,2014,bioetanol combustion consumption by freight transport,0.008776836,TJ,N2O,0.6,kg/TJ,0.0052661016,kg -9dd3eb6b-0835-383c-8d5b-c93bb619ab33,SESCO,II.1.1,Misiones,AR-N,annual,2014,bioetanol combustion consumption by freight transport,0.000340848,TJ,CH4,10.0,kg/TJ,0.0034084799999999998,kg -2605ddef-32aa-3c72-bf75-40c2f90761cf,SESCO,II.1.1,Misiones,AR-N,annual,2014,bioetanol combustion consumption by freight transport,0.000340848,TJ,N2O,0.6,kg/TJ,0.00020450879999999998,kg -7e7611e4-2a10-37a0-bb09-14a001f5e3b6,SESCO,II.1.1,San Luis,AR-D,annual,2014,bioetanol combustion consumption by freight transport,0.0001533816,TJ,CH4,10.0,kg/TJ,0.001533816,kg -09f1dbb4-690b-3580-9e4f-f34fc8d6b86c,SESCO,II.1.1,San Luis,AR-D,annual,2014,bioetanol combustion consumption by freight transport,0.0001533816,TJ,N2O,0.6,kg/TJ,9.202895999999999e-05,kg -35a04a3a-10d3-3ade-900b-7b0ed8ba52b0,SESCO,II.1.1,Santa Fe,AR-S,annual,2014,bioetanol combustion consumption by freight transport,0.040492742400000004,TJ,CH4,10.0,kg/TJ,0.40492742400000004,kg -e304350e-3d14-34c0-9881-b0a02dd9cc02,SESCO,II.1.1,Santa Fe,AR-S,annual,2014,bioetanol combustion consumption by freight transport,0.040492742400000004,TJ,N2O,0.6,kg/TJ,0.024295645440000003,kg -cbe6ce33-fda4-3300-8a4c-8a8767721eea,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2014,bioetanol combustion consumption by freight transport,0.005112719999999999,TJ,CH4,10.0,kg/TJ,0.0511272,kg -90ad8231-d310-3c9b-8727-46ca11099751,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2014,bioetanol combustion consumption by freight transport,0.005112719999999999,TJ,N2O,0.6,kg/TJ,0.0030676319999999994,kg -a5359d69-9039-3e01-b0f4-9c9470ba9140,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2014,bioetanol combustion consumption by freight transport,0.002811996,TJ,CH4,10.0,kg/TJ,0.028119960000000003,kg -ec585101-c341-3800-9894-e80714de688e,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2014,bioetanol combustion consumption by freight transport,0.002811996,TJ,N2O,0.6,kg/TJ,0.0016871976,kg -ea1e573e-c70e-32b4-9029-45056daa2fc3,SESCO,II.1.1,Tucuman,AR-T,annual,2014,bioetanol combustion consumption by freight transport,0.0076861224,TJ,CH4,10.0,kg/TJ,0.076861224,kg -defdca30-f8ac-3836-a7aa-ced26557fcdf,SESCO,II.1.1,Tucuman,AR-T,annual,2014,bioetanol combustion consumption by freight transport,0.0076861224,TJ,N2O,0.6,kg/TJ,0.00461167344,kg -c71fbfd2-d6ee-31b3-993d-40e8f667a5c3,SESCO,II.1.1,Capital Federal,AR-C,annual,2014,bioetanol combustion consumption by public passenger transport,0.0013974768,TJ,CH4,10.0,kg/TJ,0.013974768,kg -2463b81c-48d1-3389-9f18-b04745fbc80e,SESCO,II.1.1,Capital Federal,AR-C,annual,2014,bioetanol combustion consumption by public passenger transport,0.0013974768,TJ,N2O,0.6,kg/TJ,0.00083848608,kg -65690277-ebe6-3ffb-9634-c3a2a6f91b9f,SESCO,II.1.1,Entre Rios,AR-E,annual,2014,bioetanol combustion consumption by public passenger transport,6.81696e-05,TJ,CH4,10.0,kg/TJ,0.0006816960000000001,kg -3fa10b4e-fd70-3268-aa22-068ecde3abeb,SESCO,II.1.1,Entre Rios,AR-E,annual,2014,bioetanol combustion consumption by public passenger transport,6.81696e-05,TJ,N2O,0.6,kg/TJ,4.090176e-05,kg -605f7072-d686-3013-94ee-814e117dc62b,SESCO,II.1.1,Santa Fe,AR-S,annual,2014,bioetanol combustion consumption by public passenger transport,0.06987384,TJ,CH4,10.0,kg/TJ,0.6987384000000001,kg -8a0f87fd-8efa-37b0-9f35-b8568e3205fb,SESCO,II.1.1,Santa Fe,AR-S,annual,2014,bioetanol combustion consumption by public passenger transport,0.06987384,TJ,N2O,0.6,kg/TJ,0.041924304,kg -36eb3189-6183-3877-92e9-dd3a2dd32499,SESCO,II.1.1,Buenos Aires,AR-B,annual,2014,bioetanol combustion consumption by public passenger transport,0.05027507999999999,TJ,CH4,10.0,kg/TJ,0.5027507999999999,kg -14de0894-1640-307e-9f23-beb55510f041,SESCO,II.1.1,Buenos Aires,AR-B,annual,2014,bioetanol combustion consumption by public passenger transport,0.05027507999999999,TJ,N2O,0.6,kg/TJ,0.030165047999999993,kg -6ced6e94-2fa2-3693-91d5-46b86c7d691c,SESCO,II.1.1,Capital Federal,AR-C,annual,2014,bioetanol combustion consumption by public passenger transport,0.013293072,TJ,CH4,10.0,kg/TJ,0.13293072,kg -491b730a-f260-376b-94ca-a90c889b0742,SESCO,II.1.1,Capital Federal,AR-C,annual,2014,bioetanol combustion consumption by public passenger transport,0.013293072,TJ,N2O,0.6,kg/TJ,0.007975843199999999,kg -fd0eca06-ab22-36b7-81df-c015ccb7aa32,SESCO,II.1.1,Chaco,AR-H,annual,2014,bioetanol combustion consumption by public passenger transport,0.000511272,TJ,CH4,10.0,kg/TJ,0.00511272,kg -74a49f03-78ab-354e-b887-76f0025237aa,SESCO,II.1.1,Chaco,AR-H,annual,2014,bioetanol combustion consumption by public passenger transport,0.000511272,TJ,N2O,0.6,kg/TJ,0.0003067632,kg -df92bf16-a961-3cf7-b72d-4eb8e5a9b3d2,SESCO,II.1.1,Entre Rios,AR-E,annual,2014,bioetanol combustion consumption by public passenger transport,0.0034255224000000004,TJ,CH4,10.0,kg/TJ,0.034255224,kg -6fb20dfc-2457-30f0-b71d-61aec3b79a59,SESCO,II.1.1,Entre Rios,AR-E,annual,2014,bioetanol combustion consumption by public passenger transport,0.0034255224000000004,TJ,N2O,0.6,kg/TJ,0.00205531344,kg -b6e53611-9bc9-3b5f-b98f-f9384fba70f9,SESCO,II.1.1,Rio Negro,AR-R,annual,2014,bioetanol combustion consumption by public passenger transport,0.06305688,TJ,CH4,10.0,kg/TJ,0.6305687999999999,kg -b720d73b-83fc-3b84-9f35-c3da11c9591f,SESCO,II.1.1,Rio Negro,AR-R,annual,2014,bioetanol combustion consumption by public passenger transport,0.06305688,TJ,N2O,0.6,kg/TJ,0.037834127999999995,kg -2dab2f44-1482-3b74-ae80-065eeefe03c5,SESCO,II.5.1,Córdoba,AR-X,annual,2014,bioetanol combustion consumption by agriculture machines,0.15045064804799999,TJ,CH4,10.0,kg/TJ,1.50450648048,kg -ec091ee7-6779-35cf-ad85-7bea4c04f0af,SESCO,II.5.1,Córdoba,AR-X,annual,2014,bioetanol combustion consumption by agriculture machines,0.15045064804799999,TJ,N2O,0.6,kg/TJ,0.0902703888288,kg -4db62813-f32d-30a6-ab06-eb447d2bf32e,SESCO,II.5.1,Santa Fe,AR-S,annual,2014,bioetanol combustion consumption by agriculture machines,0.23966079508799998,TJ,CH4,10.0,kg/TJ,2.39660795088,kg -9c87dd81-10c9-31c0-872e-721a21a29ed2,SESCO,II.5.1,Santa Fe,AR-S,annual,2014,bioetanol combustion consumption by agriculture machines,0.23966079508799998,TJ,N2O,0.6,kg/TJ,0.1437964770528,kg -fac4fd6e-7412-3bc5-b0ce-6b8c95ce3631,SESCO,II.5.1,Santiago del Estero,AR-G,annual,2014,bioetanol combustion consumption by agriculture machines,0.123636135888,TJ,CH4,10.0,kg/TJ,1.23636135888,kg -647c754f-cbaf-3afb-a9e1-98c7da1ae2b1,SESCO,II.5.1,Santiago del Estero,AR-G,annual,2014,bioetanol combustion consumption by agriculture machines,0.123636135888,TJ,N2O,0.6,kg/TJ,0.0741816815328,kg -915622e2-9fa5-3493-89c8-a0bda65d6116,SESCO,II.1.1,Buenos Aires,AR-B,annual,2014,bioetanol combustion consumption by to the public,106.18407425570399,TJ,CH4,10.0,kg/TJ,1061.84074255704,kg -7746d659-8a15-3030-849e-d2a68d4d69af,SESCO,II.1.1,Buenos Aires,AR-B,annual,2014,bioetanol combustion consumption by to the public,106.18407425570399,TJ,N2O,0.6,kg/TJ,63.71044455342239,kg -287e52b2-248b-3460-a5ca-854ad1c019c6,SESCO,II.1.1,Capital Federal,AR-C,annual,2014,bioetanol combustion consumption by to the public,12.989889237815998,TJ,CH4,10.0,kg/TJ,129.89889237815999,kg -d8ed865f-1d58-30c2-b66c-0242cc2e8162,SESCO,II.1.1,Capital Federal,AR-C,annual,2014,bioetanol combustion consumption by to the public,12.989889237815998,TJ,N2O,0.6,kg/TJ,7.793933542689598,kg -41a4ee98-6c58-3fe7-afe4-e06379b761bc,SESCO,II.1.1,Catamarca,AR-K,annual,2014,bioetanol combustion consumption by to the public,9.387681289631999,TJ,CH4,10.0,kg/TJ,93.87681289631999,kg -7bab8d1b-4bd1-3363-bb33-1a5a0a829419,SESCO,II.1.1,Catamarca,AR-K,annual,2014,bioetanol combustion consumption by to the public,9.387681289631999,TJ,N2O,0.6,kg/TJ,5.632608773779199,kg -4ee7568a-b03b-377c-b02f-d0ab5acfc429,SESCO,II.1.1,Chaco,AR-H,annual,2014,bioetanol combustion consumption by to the public,17.896374383544,TJ,CH4,10.0,kg/TJ,178.96374383544,kg -72f8b719-5acf-30a4-be30-318f3ee9d6ea,SESCO,II.1.1,Chaco,AR-H,annual,2014,bioetanol combustion consumption by to the public,17.896374383544,TJ,N2O,0.6,kg/TJ,10.737824630126399,kg -2dd2dbaa-464d-3505-99f6-5c228407bbbb,SESCO,II.1.1,Corrientes,AR-W,annual,2014,bioetanol combustion consumption by to the public,17.772925202784,TJ,CH4,10.0,kg/TJ,177.72925202783998,kg -f751d848-bc4e-34cc-a2ea-7fb18e275095,SESCO,II.1.1,Corrientes,AR-W,annual,2014,bioetanol combustion consumption by to the public,17.772925202784,TJ,N2O,0.6,kg/TJ,10.663755121670398,kg -412b118a-f71e-38a3-a551-1d8843d15a8a,SESCO,II.1.1,Córdoba,AR-X,annual,2014,bioetanol combustion consumption by to the public,44.45554844469601,TJ,CH4,10.0,kg/TJ,444.55548444696007,kg -97ee493c-6317-3a3c-95f9-464e641d55eb,SESCO,II.1.1,Córdoba,AR-X,annual,2014,bioetanol combustion consumption by to the public,44.45554844469601,TJ,N2O,0.6,kg/TJ,26.673329066817605,kg -c1d0596a-1f6e-3b69-bc92-70b5cd1e45ef,SESCO,II.1.1,Entre Rios,AR-E,annual,2014,bioetanol combustion consumption by to the public,25.974367854479997,TJ,CH4,10.0,kg/TJ,259.7436785448,kg -dd630215-14d3-3ad8-8bef-b562d9b5f4ff,SESCO,II.1.1,Entre Rios,AR-E,annual,2014,bioetanol combustion consumption by to the public,25.974367854479997,TJ,N2O,0.6,kg/TJ,15.584620712687997,kg -67260a16-d2ce-3a7d-b99a-ab23e4245f12,SESCO,II.1.1,Jujuy,AR-Y,annual,2014,bioetanol combustion consumption by to the public,2.508537662208,TJ,CH4,10.0,kg/TJ,25.08537662208,kg -0ebaf92c-4880-3342-93d2-4af92cb3455f,SESCO,II.1.1,Jujuy,AR-Y,annual,2014,bioetanol combustion consumption by to the public,2.508537662208,TJ,N2O,0.6,kg/TJ,1.5051225973248,kg -02afd3ed-1049-3359-ae49-5fa05b31a727,SESCO,II.1.1,La Pampa,AR-L,annual,2014,bioetanol combustion consumption by to the public,0.588533890824,TJ,CH4,10.0,kg/TJ,5.88533890824,kg -ada877c2-c680-31da-9f6d-e83c18a58c2a,SESCO,II.1.1,La Pampa,AR-L,annual,2014,bioetanol combustion consumption by to the public,0.588533890824,TJ,N2O,0.6,kg/TJ,0.3531203344944,kg -183ce345-4e20-32af-8b1a-239514c05f76,SESCO,II.1.1,La Rioja,AR-F,annual,2014,bioetanol combustion consumption by to the public,3.998841688224,TJ,CH4,10.0,kg/TJ,39.98841688224,kg -1ddf79d5-0508-3074-9dba-9ab82b975936,SESCO,II.1.1,La Rioja,AR-F,annual,2014,bioetanol combustion consumption by to the public,3.998841688224,TJ,N2O,0.6,kg/TJ,2.3993050129344,kg -7c5763fc-e256-316c-bfea-c43a230d7db6,SESCO,II.1.1,Mendoza,AR-M,annual,2014,bioetanol combustion consumption by to the public,17.4047384664,TJ,CH4,10.0,kg/TJ,174.04738466400002,kg -d6674899-f851-3b3b-b7f5-8b9c0c36ee25,SESCO,II.1.1,Mendoza,AR-M,annual,2014,bioetanol combustion consumption by to the public,17.4047384664,TJ,N2O,0.6,kg/TJ,10.442843079840001,kg -9d54f596-0bdd-35ef-81d1-02f29214d01f,SESCO,II.1.1,Misiones,AR-N,annual,2014,bioetanol combustion consumption by to the public,12.889379468304,TJ,CH4,10.0,kg/TJ,128.89379468304,kg -c8ced396-aa5e-3c72-933e-8f35d113450b,SESCO,II.1.1,Misiones,AR-N,annual,2014,bioetanol combustion consumption by to the public,12.889379468304,TJ,N2O,0.6,kg/TJ,7.7336276809824,kg -58942299-96b2-33be-ab35-57e33f72d3fb,SESCO,II.1.1,Salta,AR-A,annual,2014,bioetanol combustion consumption by to the public,0.40593991298399995,TJ,CH4,10.0,kg/TJ,4.059399129839999,kg -f46c15ff-002c-3a6b-a6a7-ee26da70bbb9,SESCO,II.1.1,Salta,AR-A,annual,2014,bioetanol combustion consumption by to the public,0.40593991298399995,TJ,N2O,0.6,kg/TJ,0.24356394779039997,kg -f5a59678-d18d-3730-9356-b761a71459fe,SESCO,II.1.1,San Juan,AR-J,annual,2014,bioetanol combustion consumption by to the public,13.126380967296,TJ,CH4,10.0,kg/TJ,131.26380967296,kg -e3b51379-ec26-3256-88e0-3f737f118605,SESCO,II.1.1,San Juan,AR-J,annual,2014,bioetanol combustion consumption by to the public,13.126380967296,TJ,N2O,0.6,kg/TJ,7.8758285803776005,kg -d03c4547-3eff-3631-96e7-6611746816c7,SESCO,II.1.1,San Luis,AR-D,annual,2014,bioetanol combustion consumption by to the public,8.428178661048,TJ,CH4,10.0,kg/TJ,84.28178661048,kg -00aee032-a348-38b6-8893-b4c77f9af20e,SESCO,II.1.1,San Luis,AR-D,annual,2014,bioetanol combustion consumption by to the public,8.428178661048,TJ,N2O,0.6,kg/TJ,5.056907196628799,kg -fbce0b2a-1154-312b-b8b3-da11b8a6c6b2,SESCO,II.1.1,Santa Fe,AR-S,annual,2014,bioetanol combustion consumption by to the public,63.9604083996,TJ,CH4,10.0,kg/TJ,639.604083996,kg -a00c8281-dc31-3ae6-866d-94ba87d12c4a,SESCO,II.1.1,Santa Fe,AR-S,annual,2014,bioetanol combustion consumption by to the public,63.9604083996,TJ,N2O,0.6,kg/TJ,38.37624503976,kg -aa12adff-95cb-3b66-84ee-abe20aa0f038,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2014,bioetanol combustion consumption by to the public,10.588365236232,TJ,CH4,10.0,kg/TJ,105.88365236232,kg -5cf08bb8-820b-3ca8-9a4e-40e77968fdad,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2014,bioetanol combustion consumption by to the public,10.588365236232,TJ,N2O,0.6,kg/TJ,6.353019141739201,kg -36870e03-0cb7-34d2-b7fb-82b109516f56,SESCO,II.1.1,Tucuman,AR-T,annual,2014,bioetanol combustion consumption by to the public,10.973793427848,TJ,CH4,10.0,kg/TJ,109.73793427848,kg -6051e0d5-4905-3297-9689-34c0d86028f2,SESCO,II.1.1,Tucuman,AR-T,annual,2014,bioetanol combustion consumption by to the public,10.973793427848,TJ,N2O,0.6,kg/TJ,6.5842760567087995,kg -e42f9a37-e884-3d4b-a870-0f824d3350c1,SESCO,II.1.1,Buenos Aires,AR-B,annual,2014,bioetanol combustion consumption by to the public,17.110993274063997,TJ,CH4,10.0,kg/TJ,171.10993274063998,kg -7373f423-52a7-3a50-9b62-db5202db0214,SESCO,II.1.1,Buenos Aires,AR-B,annual,2014,bioetanol combustion consumption by to the public,17.110993274063997,TJ,N2O,0.6,kg/TJ,10.266595964438398,kg -da49e4be-d68d-3ea7-913a-8d0c02c7f422,SESCO,II.1.1,Capital Federal,AR-C,annual,2014,bioetanol combustion consumption by to the public,3.8743844495040003,TJ,CH4,10.0,kg/TJ,38.74384449504,kg -010e80af-8aa9-3c0c-ae35-9deb9d62b3b9,SESCO,II.1.1,Capital Federal,AR-C,annual,2014,bioetanol combustion consumption by to the public,3.8743844495040003,TJ,N2O,0.6,kg/TJ,2.3246306697024,kg -9d67d8a2-ba1c-3dc2-9475-a0e359ebcc5e,SESCO,II.1.1,Catamarca,AR-K,annual,2014,bioetanol combustion consumption by to the public,0.825307532928,TJ,CH4,10.0,kg/TJ,8.25307532928,kg -b143badb-d1e3-33ea-878e-d64b315288cc,SESCO,II.1.1,Catamarca,AR-K,annual,2014,bioetanol combustion consumption by to the public,0.825307532928,TJ,N2O,0.6,kg/TJ,0.49518451975679995,kg -81c3deff-4c9f-3497-bb8c-07037246370f,SESCO,II.1.1,Chaco,AR-H,annual,2014,bioetanol combustion consumption by to the public,1.520114251248,TJ,CH4,10.0,kg/TJ,15.201142512479999,kg -eee59b54-4a60-31fc-b1a1-d4b2b557a806,SESCO,II.1.1,Chaco,AR-H,annual,2014,bioetanol combustion consumption by to the public,1.520114251248,TJ,N2O,0.6,kg/TJ,0.9120685507487999,kg -ed86f5f9-1ebd-30cf-a748-bdbb430ac091,SESCO,II.1.1,Corrientes,AR-W,annual,2014,bioetanol combustion consumption by to the public,3.279802551768,TJ,CH4,10.0,kg/TJ,32.798025517679996,kg -24451a7a-b99b-3d1d-a167-273b7431d066,SESCO,II.1.1,Corrientes,AR-W,annual,2014,bioetanol combustion consumption by to the public,3.279802551768,TJ,N2O,0.6,kg/TJ,1.9678815310607998,kg -4e92003a-fff8-327d-9fa2-9a528e029603,SESCO,II.1.1,Córdoba,AR-X,annual,2014,bioetanol combustion consumption by to the public,7.685076848759999,TJ,CH4,10.0,kg/TJ,76.85076848759999,kg -b7a8b775-3aef-344b-b5a0-23a0fbb5726a,SESCO,II.1.1,Córdoba,AR-X,annual,2014,bioetanol combustion consumption by to the public,7.685076848759999,TJ,N2O,0.6,kg/TJ,4.611046109255999,kg -f917a4ff-38a8-3a26-bfcf-3cc030e76bb9,SESCO,II.1.1,Entre Rios,AR-E,annual,2014,bioetanol combustion consumption by to the public,4.880980682856,TJ,CH4,10.0,kg/TJ,48.80980682856,kg -2ecdb84a-6e13-3e92-a6e2-ea3c81c9b602,SESCO,II.1.1,Entre Rios,AR-E,annual,2014,bioetanol combustion consumption by to the public,4.880980682856,TJ,N2O,0.6,kg/TJ,2.9285884097136,kg -c9decb61-9933-317f-aa36-f76a4cc4431b,SESCO,II.1.1,Jujuy,AR-Y,annual,2014,bioetanol combustion consumption by to the public,0.11690864848800002,TJ,CH4,10.0,kg/TJ,1.1690864848800002,kg -2732a14f-e907-3eda-8306-9c16d8a7f109,SESCO,II.1.1,Jujuy,AR-Y,annual,2014,bioetanol combustion consumption by to the public,0.11690864848800002,TJ,N2O,0.6,kg/TJ,0.07014518909280001,kg -8ecd86f1-2676-34ab-8691-596bc9e7dacb,SESCO,II.1.1,La Pampa,AR-L,annual,2014,bioetanol combustion consumption by to the public,0.154011657528,TJ,CH4,10.0,kg/TJ,1.54011657528,kg -7b3dd9b8-5f56-3b85-bf3d-6958078ffb76,SESCO,II.1.1,La Pampa,AR-L,annual,2014,bioetanol combustion consumption by to the public,0.154011657528,TJ,N2O,0.6,kg/TJ,0.0924069945168,kg -2a2a3e30-354a-3e2c-90e1-81f8820c696a,SESCO,II.1.1,La Rioja,AR-F,annual,2014,bioetanol combustion consumption by to the public,0.336099305664,TJ,CH4,10.0,kg/TJ,3.36099305664,kg -f33694f8-34ea-3865-ac04-239c51eb1812,SESCO,II.1.1,La Rioja,AR-F,annual,2014,bioetanol combustion consumption by to the public,0.336099305664,TJ,N2O,0.6,kg/TJ,0.20165958339839998,kg -5df7c5c8-383f-3ffa-b2fd-71c7446f1ad9,SESCO,II.1.1,Mendoza,AR-M,annual,2014,bioetanol combustion consumption by to the public,2.488009409712,TJ,CH4,10.0,kg/TJ,24.880094097119997,kg -e2544cbb-485e-304d-a1c7-6167e78524b8,SESCO,II.1.1,Mendoza,AR-M,annual,2014,bioetanol combustion consumption by to the public,2.488009409712,TJ,N2O,0.6,kg/TJ,1.4928056458271999,kg -a48e86a5-0cb9-36d1-bb7e-1eaecbd9b0cb,SESCO,II.1.1,Misiones,AR-N,annual,2014,bioetanol combustion consumption by to the public,1.447837432848,TJ,CH4,10.0,kg/TJ,14.47837432848,kg -a00d65ef-b70b-34b3-8b3e-d09c7bb6fa5e,SESCO,II.1.1,Misiones,AR-N,annual,2014,bioetanol combustion consumption by to the public,1.447837432848,TJ,N2O,0.6,kg/TJ,0.8687024597087999,kg -c1008803-c82b-3135-a0d6-6f8706d4785a,SESCO,II.1.1,San Juan,AR-J,annual,2014,bioetanol combustion consumption by to the public,2.497473224856,TJ,CH4,10.0,kg/TJ,24.97473224856,kg -cfe685e8-8377-34f3-b01a-e207bf5bbe1b,SESCO,II.1.1,San Juan,AR-J,annual,2014,bioetanol combustion consumption by to the public,2.497473224856,TJ,N2O,0.6,kg/TJ,1.4984839349135999,kg -7545c293-3811-3d53-a125-7f5c51af0c01,SESCO,II.1.1,San Luis,AR-D,annual,2014,bioetanol combustion consumption by to the public,2.0217341175840002,TJ,CH4,10.0,kg/TJ,20.21734117584,kg -2d17b9d0-00db-32ce-a138-e85cb3a6b273,SESCO,II.1.1,San Luis,AR-D,annual,2014,bioetanol combustion consumption by to the public,2.0217341175840002,TJ,N2O,0.6,kg/TJ,1.2130404705504,kg -2c9722c9-ab70-35e7-95ff-b7da7106a806,SESCO,II.1.1,Santa Fe,AR-S,annual,2014,bioetanol combustion consumption by to the public,11.232940503095998,TJ,CH4,10.0,kg/TJ,112.32940503095998,kg -0b282ff9-1fef-30ba-9577-b2650a7877b9,SESCO,II.1.1,Santa Fe,AR-S,annual,2014,bioetanol combustion consumption by to the public,11.232940503095998,TJ,N2O,0.6,kg/TJ,6.739764301857599,kg -80c821da-ca0f-36a3-b2ac-dd4170cb0460,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2014,bioetanol combustion consumption by to the public,1.3303982544479998,TJ,CH4,10.0,kg/TJ,13.303982544479997,kg -95f2951a-f42e-396b-8b9a-a6a331d491dd,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2014,bioetanol combustion consumption by to the public,1.3303982544479998,TJ,N2O,0.6,kg/TJ,0.7982389526687999,kg -828bc0ec-6781-381f-867a-4e28da5e9478,SESCO,II.1.1,Tucuman,AR-T,annual,2014,bioetanol combustion consumption by to the public,1.229289785424,TJ,CH4,10.0,kg/TJ,12.29289785424,kg -f1e193b0-db94-319a-a811-6b4188eeac0b,SESCO,II.1.1,Tucuman,AR-T,annual,2014,bioetanol combustion consumption by to the public,1.229289785424,TJ,N2O,0.6,kg/TJ,0.7375738712543999,kg -a0d02228-a71d-3712-ba50-5f34415333a8,SESCO,II.5.1,Buenos Aires,AR-B,annual,2014,bioetanol combustion consumption by agriculture machines,0.32585580072000003,TJ,CH4,10.0,kg/TJ,3.2585580072000004,kg -708665b2-8344-3aeb-9606-2c3bc3edd7ab,SESCO,II.5.1,Buenos Aires,AR-B,annual,2014,bioetanol combustion consumption by agriculture machines,0.32585580072000003,TJ,N2O,0.6,kg/TJ,0.195513480432,kg -4104c22c-1c44-342b-ba2d-1f15a006a3eb,SESCO,II.1.1,Buenos Aires,AR-B,annual,2014,bioetanol combustion consumption by to the public,237.36886326215998,TJ,CH4,10.0,kg/TJ,2373.6886326216,kg -3103ea96-6178-3083-992a-b5a5dd124bda,SESCO,II.1.1,Buenos Aires,AR-B,annual,2014,bioetanol combustion consumption by to the public,237.36886326215998,TJ,N2O,0.6,kg/TJ,142.42131795729597,kg -45e11bd1-f2f8-3311-9973-726e68cb517d,SESCO,II.1.1,Capital Federal,AR-C,annual,2014,bioetanol combustion consumption by to the public,27.177283503359998,TJ,CH4,10.0,kg/TJ,271.77283503359996,kg -e7d97fa7-5ddc-3ddb-8cec-8bca22277a7a,SESCO,II.1.1,Capital Federal,AR-C,annual,2014,bioetanol combustion consumption by to the public,27.177283503359998,TJ,N2O,0.6,kg/TJ,16.306370102015997,kg -7b928138-05ab-3a23-a8b6-5dbd3b362256,SESCO,II.1.1,Chaco,AR-H,annual,2014,bioetanol combustion consumption by to the public,0.17256452544,TJ,CH4,10.0,kg/TJ,1.7256452544,kg -f6f1da82-fa93-3bf2-a74f-45f3722907c1,SESCO,II.1.1,Chaco,AR-H,annual,2014,bioetanol combustion consumption by to the public,0.17256452544,TJ,N2O,0.6,kg/TJ,0.103538715264,kg -0717ac70-bf76-33ac-b84b-7dd64554999b,SESCO,II.1.1,Chubut,AR-U,annual,2014,bioetanol combustion consumption by to the public,76.79499893784,TJ,CH4,10.0,kg/TJ,767.9499893784,kg -5104353c-bb1e-3ab5-aa20-9f2b4ae421ba,SESCO,II.1.1,Chubut,AR-U,annual,2014,bioetanol combustion consumption by to the public,76.79499893784,TJ,N2O,0.6,kg/TJ,46.076999362704,kg -155770aa-c7f6-3139-aeaf-dcd1d2efaf47,SESCO,II.1.1,Córdoba,AR-X,annual,2014,bioetanol combustion consumption by to the public,26.404022096640002,TJ,CH4,10.0,kg/TJ,264.0402209664,kg -c94d86a1-fbf1-39cf-9e69-c962fa546fef,SESCO,II.1.1,Córdoba,AR-X,annual,2014,bioetanol combustion consumption by to the public,26.404022096640002,TJ,N2O,0.6,kg/TJ,15.842413257984001,kg -398ea1e8-ec49-32ae-a1e6-78c703dcbd33,SESCO,II.1.1,Entre Rios,AR-E,annual,2014,bioetanol combustion consumption by to the public,5.474584687679999,TJ,CH4,10.0,kg/TJ,54.745846876799995,kg -c3033d40-dc3e-37e8-819c-6868b11dd6b3,SESCO,II.1.1,Entre Rios,AR-E,annual,2014,bioetanol combustion consumption by to the public,5.474584687679999,TJ,N2O,0.6,kg/TJ,3.2847508126079994,kg -8a8f2a51-7a97-38af-9b28-6d75620b18f0,SESCO,II.1.1,La Pampa,AR-L,annual,2014,bioetanol combustion consumption by to the public,12.063769603199999,TJ,CH4,10.0,kg/TJ,120.637696032,kg -2aa20809-edae-3055-b6a7-8a9b5fb86c35,SESCO,II.1.1,La Pampa,AR-L,annual,2014,bioetanol combustion consumption by to the public,12.063769603199999,TJ,N2O,0.6,kg/TJ,7.238261761919999,kg -f81aa750-4a34-313e-bd7d-721b309d49c0,SESCO,II.1.1,Mendoza,AR-M,annual,2014,bioetanol combustion consumption by to the public,1.67760443304,TJ,CH4,10.0,kg/TJ,16.776044330399998,kg -328064a6-292c-352d-b759-14eb8cc4d20f,SESCO,II.1.1,Mendoza,AR-M,annual,2014,bioetanol combustion consumption by to the public,1.67760443304,TJ,N2O,0.6,kg/TJ,1.0065626598239998,kg -6b45e22b-892f-309b-9308-f93dc69befe9,SESCO,II.1.1,Neuquén,AR-Q,annual,2014,bioetanol combustion consumption by to the public,29.74891008528,TJ,CH4,10.0,kg/TJ,297.4891008528,kg -3390ec0c-4e42-3b6a-9f92-079feb745741,SESCO,II.1.1,Neuquén,AR-Q,annual,2014,bioetanol combustion consumption by to the public,29.74891008528,TJ,N2O,0.6,kg/TJ,17.849346051168,kg -b5d68c2c-6509-3e31-b282-51817c74130f,SESCO,II.1.1,Rio Negro,AR-R,annual,2014,bioetanol combustion consumption by to the public,59.649882688800005,TJ,CH4,10.0,kg/TJ,596.498826888,kg -76f5c5f1-b10e-3514-ad45-359c06e7325d,SESCO,II.1.1,Rio Negro,AR-R,annual,2014,bioetanol combustion consumption by to the public,59.649882688800005,TJ,N2O,0.6,kg/TJ,35.78992961328,kg -9325c197-12e2-3a19-be55-0afbc444cbbc,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2014,bioetanol combustion consumption by to the public,48.51992412575999,TJ,CH4,10.0,kg/TJ,485.1992412575999,kg -cd87b392-063d-32ab-b9e1-96ca89fc1bcb,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2014,bioetanol combustion consumption by to the public,48.51992412575999,TJ,N2O,0.6,kg/TJ,29.111954475455995,kg -eae7b764-8b62-39ec-a929-98d0d93ddcb9,SESCO,II.1.1,Santa Fe,AR-S,annual,2014,bioetanol combustion consumption by to the public,31.406752151280003,TJ,CH4,10.0,kg/TJ,314.0675215128,kg -b092c051-7bbe-3586-8291-de362aade013,SESCO,II.1.1,Santa Fe,AR-S,annual,2014,bioetanol combustion consumption by to the public,31.406752151280003,TJ,N2O,0.6,kg/TJ,18.844051290768,kg -daec9f31-db50-39d4-857c-158f659f2f64,SESCO,II.1.1,Buenos Aires,AR-B,annual,2014,bioetanol combustion consumption by to the public,62.721030535919994,TJ,CH4,10.0,kg/TJ,627.2103053592,kg -0c7a4f25-fa26-355e-a3bf-0835d53e6142,SESCO,II.1.1,Buenos Aires,AR-B,annual,2014,bioetanol combustion consumption by to the public,62.721030535919994,TJ,N2O,0.6,kg/TJ,37.632618321551995,kg -5d9e2950-73f7-3061-ada1-550b0b38ff6c,SESCO,II.1.1,Capital Federal,AR-C,annual,2014,bioetanol combustion consumption by to the public,12.376056245040001,TJ,CH4,10.0,kg/TJ,123.76056245040002,kg -80baa3c3-8219-3546-b91d-4c0ce1182493,SESCO,II.1.1,Capital Federal,AR-C,annual,2014,bioetanol combustion consumption by to the public,12.376056245040001,TJ,N2O,0.6,kg/TJ,7.425633747024,kg -d09b8d74-9ce1-3c8a-93fe-dd1513841d6d,SESCO,II.1.1,Chubut,AR-U,annual,2014,bioetanol combustion consumption by to the public,12.67251561,TJ,CH4,10.0,kg/TJ,126.72515609999999,kg -444e8b6f-d879-3a65-be6e-7fe0372e2efc,SESCO,II.1.1,Chubut,AR-U,annual,2014,bioetanol combustion consumption by to the public,12.67251561,TJ,N2O,0.6,kg/TJ,7.603509365999999,kg -4c6e0484-07b2-3189-8def-70ded35e3bb1,SESCO,II.1.1,Córdoba,AR-X,annual,2014,bioetanol combustion consumption by to the public,6.1485604804800005,TJ,CH4,10.0,kg/TJ,61.485604804800005,kg -2b8b2e9f-5108-3ac2-b42e-2fac05356510,SESCO,II.1.1,Córdoba,AR-X,annual,2014,bioetanol combustion consumption by to the public,6.1485604804800005,TJ,N2O,0.6,kg/TJ,3.689136288288,kg -65c2a6a6-9ecc-3e3e-b958-65666cddd6e4,SESCO,II.1.1,Entre Rios,AR-E,annual,2014,bioetanol combustion consumption by to the public,1.37634933672,TJ,CH4,10.0,kg/TJ,13.763493367199999,kg -fb16a88b-6e97-39fc-9f8b-b20e3e0ff7d2,SESCO,II.1.1,Entre Rios,AR-E,annual,2014,bioetanol combustion consumption by to the public,1.37634933672,TJ,N2O,0.6,kg/TJ,0.8258096020319999,kg -c95fb9cf-e76d-3fc0-bfbc-8c3f4042c3a6,SESCO,II.1.1,La Pampa,AR-L,annual,2014,bioetanol combustion consumption by to the public,2.82343485888,TJ,CH4,10.0,kg/TJ,28.234348588799996,kg -5d38cea1-8c16-38fa-86c4-5f6ab737fe60,SESCO,II.1.1,La Pampa,AR-L,annual,2014,bioetanol combustion consumption by to the public,2.82343485888,TJ,N2O,0.6,kg/TJ,1.6940609153279997,kg -8860b405-6e78-3700-a1c9-025af9a30e7a,SESCO,II.1.1,Mendoza,AR-M,annual,2014,bioetanol combustion consumption by to the public,0.16797159864,TJ,CH4,10.0,kg/TJ,1.6797159864,kg -e16b76f0-fb2d-3954-ae59-5bddf8198f76,SESCO,II.1.1,Mendoza,AR-M,annual,2014,bioetanol combustion consumption by to the public,0.16797159864,TJ,N2O,0.6,kg/TJ,0.100782959184,kg -4ddf1ebd-a264-3d90-9671-21fa1edfef91,SESCO,II.1.1,Neuquén,AR-Q,annual,2014,bioetanol combustion consumption by to the public,8.65517712336,TJ,CH4,10.0,kg/TJ,86.5517712336,kg -e56a56a6-720e-3028-b234-cdbf81e7a9de,SESCO,II.1.1,Neuquén,AR-Q,annual,2014,bioetanol combustion consumption by to the public,8.65517712336,TJ,N2O,0.6,kg/TJ,5.1931062740159994,kg -8ce820d8-7a4b-333b-80ab-e3b324dd5dd0,SESCO,II.1.1,Rio Negro,AR-R,annual,2014,bioetanol combustion consumption by to the public,10.3129697664,TJ,CH4,10.0,kg/TJ,103.129697664,kg -01538610-abda-3b96-bb18-68ee38c09747,SESCO,II.1.1,Rio Negro,AR-R,annual,2014,bioetanol combustion consumption by to the public,10.3129697664,TJ,N2O,0.6,kg/TJ,6.18778185984,kg -68fc8248-17f4-3042-8673-f51a016a7762,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2014,bioetanol combustion consumption by to the public,9.05703691536,TJ,CH4,10.0,kg/TJ,90.5703691536,kg -7cf4560f-3005-3d8f-aab8-eb0df4129e47,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2014,bioetanol combustion consumption by to the public,9.05703691536,TJ,N2O,0.6,kg/TJ,5.434222149216,kg -f8ea95c2-9c41-37ea-8f5a-b6bca8a172f1,SESCO,II.1.1,Santa Fe,AR-S,annual,2014,bioetanol combustion consumption by to the public,10.056587309280001,TJ,CH4,10.0,kg/TJ,100.56587309280002,kg -f6d6fb9d-7c6f-3668-a424-b028e2d54cc6,SESCO,II.1.1,Santa Fe,AR-S,annual,2014,bioetanol combustion consumption by to the public,10.056587309280001,TJ,N2O,0.6,kg/TJ,6.033952385568001,kg -5b0d0dc5-cbb2-3b1a-8353-d7c67b1d2e72,SESCO,II.1.1,Buenos Aires,AR-B,annual,2014,bioetanol combustion consumption by to the public,0.002726784,TJ,CH4,10.0,kg/TJ,0.027267839999999998,kg -e1d36a2e-84d6-38e6-adac-2d1cc8a1363e,SESCO,II.1.1,Buenos Aires,AR-B,annual,2014,bioetanol combustion consumption by to the public,0.002726784,TJ,N2O,0.6,kg/TJ,0.0016360703999999998,kg -695b39e5-77d5-389e-af69-8f0bf37554f2,SESCO,II.1.1,Buenos Aires,AR-B,annual,2014,bioetanol combustion consumption by to the public,38.99982816,TJ,CH4,10.0,kg/TJ,389.9982816,kg -dd7e4f8f-47c4-34b2-a58b-9aaf73b00f7e,SESCO,II.1.1,Buenos Aires,AR-B,annual,2014,bioetanol combustion consumption by to the public,38.99982816,TJ,N2O,0.6,kg/TJ,23.399896895999998,kg -5347c43d-766d-3dd0-bf3b-cf862b60be94,SESCO,II.1.1,Capital Federal,AR-C,annual,2014,bioetanol combustion consumption by to the public,1.03276944,TJ,CH4,10.0,kg/TJ,10.3276944,kg -c96082e1-456f-3588-9be6-251b84f88e28,SESCO,II.1.1,Capital Federal,AR-C,annual,2014,bioetanol combustion consumption by to the public,1.03276944,TJ,N2O,0.6,kg/TJ,0.619661664,kg -f13abd27-588c-3fe6-9d4d-db1db3184318,SESCO,II.1.1,Córdoba,AR-X,annual,2014,bioetanol combustion consumption by to the public,7.060666319999999,TJ,CH4,10.0,kg/TJ,70.60666319999999,kg -b268110d-bc57-353a-8b96-42ba5bb08df9,SESCO,II.1.1,Córdoba,AR-X,annual,2014,bioetanol combustion consumption by to the public,7.060666319999999,TJ,N2O,0.6,kg/TJ,4.236399791999999,kg -190fb93b-a899-32b7-bed5-544ab2a1c6c3,SESCO,II.1.1,Entre Rios,AR-E,annual,2014,bioetanol combustion consumption by to the public,5.29848216,TJ,CH4,10.0,kg/TJ,52.9848216,kg -0abaf5d7-8e40-3dc9-8b3c-cca3dea3ace9,SESCO,II.1.1,Entre Rios,AR-E,annual,2014,bioetanol combustion consumption by to the public,5.29848216,TJ,N2O,0.6,kg/TJ,3.179089296,kg -6a99b7b0-5acd-3509-af5b-e00bf452447a,SESCO,II.1.1,Santa Fe,AR-S,annual,2014,bioetanol combustion consumption by to the public,4.2196982400000005,TJ,CH4,10.0,kg/TJ,42.1969824,kg -636f0464-e1cc-391b-8719-a791f023f242,SESCO,II.1.1,Santa Fe,AR-S,annual,2014,bioetanol combustion consumption by to the public,4.2196982400000005,TJ,N2O,0.6,kg/TJ,2.5318189440000003,kg -a9e8d243-4623-3c38-b635-eece6f0a8b1d,SESCO,II.1.1,Buenos Aires,AR-B,annual,2014,bioetanol combustion consumption by to the public,3.8946996720000002,TJ,CH4,10.0,kg/TJ,38.94699672,kg -de96861c-c7cf-37a1-a16b-3f5014dd1235,SESCO,II.1.1,Buenos Aires,AR-B,annual,2014,bioetanol combustion consumption by to the public,3.8946996720000002,TJ,N2O,0.6,kg/TJ,2.3368198032,kg -adf5356a-da68-3098-92d3-d65697c17d5f,SESCO,II.1.1,Capital Federal,AR-C,annual,2014,bioetanol combustion consumption by to the public,0.06135263999999999,TJ,CH4,10.0,kg/TJ,0.6135263999999999,kg -1908bc9f-8066-30ee-adf4-c45582fdba56,SESCO,II.1.1,Capital Federal,AR-C,annual,2014,bioetanol combustion consumption by to the public,0.06135263999999999,TJ,N2O,0.6,kg/TJ,0.036811583999999994,kg -6abfbcf7-5a80-3455-85a7-b7c4b1052808,SESCO,II.1.1,Córdoba,AR-X,annual,2014,bioetanol combustion consumption by to the public,0.298242,TJ,CH4,10.0,kg/TJ,2.9824200000000003,kg -c5beb835-87f8-36b8-83b8-c509c471904e,SESCO,II.1.1,Córdoba,AR-X,annual,2014,bioetanol combustion consumption by to the public,0.298242,TJ,N2O,0.6,kg/TJ,0.1789452,kg -5d5b4ae4-2865-311d-8923-a5062409e26d,SESCO,II.1.1,Entre Rios,AR-E,annual,2014,bioetanol combustion consumption by to the public,0.42946848,TJ,CH4,10.0,kg/TJ,4.2946848,kg -06cf0c39-c6a8-3b88-bb8b-35e019434d33,SESCO,II.1.1,Entre Rios,AR-E,annual,2014,bioetanol combustion consumption by to the public,0.42946848,TJ,N2O,0.6,kg/TJ,0.257681088,kg -3c96ccb2-a25d-32b1-bc6b-bcfdf8595c2a,SESCO,II.1.1,Santa Fe,AR-S,annual,2014,bioetanol combustion consumption by to the public,0.5027508,TJ,CH4,10.0,kg/TJ,5.027508000000001,kg -3778bfa3-e6a4-3781-a0c6-dbfb80c76dcc,SESCO,II.1.1,Santa Fe,AR-S,annual,2014,bioetanol combustion consumption by to the public,0.5027508,TJ,N2O,0.6,kg/TJ,0.30165048,kg -8949e57c-ddf0-33cf-81cd-f813d3c49e41,SESCO,II.1.1,Catamarca,AR-K,annual,2014,bioetanol combustion consumption by to the public,0.0017042399999999999,TJ,CH4,10.0,kg/TJ,0.0170424,kg -94fd4943-c564-3130-93fa-b3ceefc8909e,SESCO,II.1.1,Catamarca,AR-K,annual,2014,bioetanol combustion consumption by to the public,0.0017042399999999999,TJ,N2O,0.6,kg/TJ,0.0010225439999999998,kg -4e12562f-03ac-3f37-a65b-038bba08750a,SESCO,II.1.1,Salta,AR-A,annual,2014,bioetanol combustion consumption by to the public,0.032210136,TJ,CH4,10.0,kg/TJ,0.32210136,kg -a33c3e9a-80e6-3ee7-8780-06d3234771c7,SESCO,II.1.1,Salta,AR-A,annual,2014,bioetanol combustion consumption by to the public,0.032210136,TJ,N2O,0.6,kg/TJ,0.0193260816,kg -0424da32-9201-3316-9d79-3a61077c7b91,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2014,bioetanol combustion consumption by to the public,0.0014997312,TJ,CH4,10.0,kg/TJ,0.014997312,kg -53534e07-5f5f-37a4-98e5-3bc583014b9e,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2014,bioetanol combustion consumption by to the public,0.0014997312,TJ,N2O,0.6,kg/TJ,0.00089983872,kg -1f31aba6-9e15-30cf-a70b-ee3dab25d251,SESCO,II.1.1,Tucuman,AR-T,annual,2014,bioetanol combustion consumption by to the public,0.0016360703999999998,TJ,CH4,10.0,kg/TJ,0.016360703999999997,kg -5947161a-975c-3b89-95b0-d7c22179b055,SESCO,II.1.1,Tucuman,AR-T,annual,2014,bioetanol combustion consumption by to the public,0.0016360703999999998,TJ,N2O,0.6,kg/TJ,0.00098164224,kg -0eac4412-a91f-3649-b51c-62ec2f01d645,SESCO,II.1.1,Catamarca,AR-K,annual,2014,bioetanol combustion consumption by to the public,13.129072984799999,TJ,CH4,10.0,kg/TJ,131.29072984799998,kg -7f014e83-b4c2-3a6a-835c-0bc28cb0e16c,SESCO,II.1.1,Catamarca,AR-K,annual,2014,bioetanol combustion consumption by to the public,13.129072984799999,TJ,N2O,0.6,kg/TJ,7.877443790879999,kg -2c9256ee-6ac7-300c-837c-01d9b6a6fe2e,SESCO,II.1.1,Chaco,AR-H,annual,2014,bioetanol combustion consumption by to the public,5.7463053048,TJ,CH4,10.0,kg/TJ,57.463053048,kg -6ac8c8fd-d2fb-31b7-ade7-6d4454dd5a46,SESCO,II.1.1,Chaco,AR-H,annual,2014,bioetanol combustion consumption by to the public,5.7463053048,TJ,N2O,0.6,kg/TJ,3.44778318288,kg -cde4e6aa-a71e-3b9a-8560-34a07eda087c,SESCO,II.1.1,Córdoba,AR-X,annual,2014,bioetanol combustion consumption by to the public,1.903721292,TJ,CH4,10.0,kg/TJ,19.037212919999998,kg -8c8492c0-605a-3b68-bb79-0f43011ca614,SESCO,II.1.1,Córdoba,AR-X,annual,2014,bioetanol combustion consumption by to the public,1.903721292,TJ,N2O,0.6,kg/TJ,1.1422327751999999,kg -b1e28935-a4a6-33f3-b667-84f886157528,SESCO,II.1.1,Jujuy,AR-Y,annual,2014,bioetanol combustion consumption by to the public,29.8892849256,TJ,CH4,10.0,kg/TJ,298.892849256,kg -98cc7615-fd3f-3b54-a5ab-21c1b7091c7d,SESCO,II.1.1,Jujuy,AR-Y,annual,2014,bioetanol combustion consumption by to the public,29.8892849256,TJ,N2O,0.6,kg/TJ,17.933570955359997,kg -45efc550-6b79-3623-b641-d1343d1123d4,SESCO,II.1.1,La Rioja,AR-F,annual,2014,bioetanol combustion consumption by to the public,14.926943930399998,TJ,CH4,10.0,kg/TJ,149.26943930399997,kg -69f59549-b0c0-3c32-8228-89ccc0c6f87b,SESCO,II.1.1,La Rioja,AR-F,annual,2014,bioetanol combustion consumption by to the public,14.926943930399998,TJ,N2O,0.6,kg/TJ,8.956166358239999,kg -5d64d8c1-d2f3-323b-98d1-a18a99fe555e,SESCO,II.1.1,Salta,AR-A,annual,2014,bioetanol combustion consumption by to the public,56.6926854408,TJ,CH4,10.0,kg/TJ,566.9268544079999,kg -e006c8b7-7e8f-3cf7-a786-fe47c614fc94,SESCO,II.1.1,Salta,AR-A,annual,2014,bioetanol combustion consumption by to the public,56.6926854408,TJ,N2O,0.6,kg/TJ,34.01561126448,kg -fc043039-8e36-313c-a955-6d2fa50abdd2,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2014,bioetanol combustion consumption by to the public,16.8150884688,TJ,CH4,10.0,kg/TJ,168.150884688,kg -6ef0f8fe-d488-37a3-98db-a8f8c2620f65,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2014,bioetanol combustion consumption by to the public,16.8150884688,TJ,N2O,0.6,kg/TJ,10.08905308128,kg -f2af178a-4a8c-3b29-a6db-3a6714c97d42,SESCO,II.1.1,Tucuman,AR-T,annual,2014,bioetanol combustion consumption by to the public,90.0701235864,TJ,CH4,10.0,kg/TJ,900.701235864,kg -185e4e0e-ddb7-32fc-b0df-90ee27d68cc5,SESCO,II.1.1,Tucuman,AR-T,annual,2014,bioetanol combustion consumption by to the public,90.0701235864,TJ,N2O,0.6,kg/TJ,54.04207415184,kg -6dc19ebb-9a24-3194-af35-a1eb102711f8,SESCO,II.1.1,Catamarca,AR-K,annual,2014,bioetanol combustion consumption by to the public,0.9607141727999999,TJ,CH4,10.0,kg/TJ,9.607141727999998,kg -3a221cc9-8a2b-3f29-87ca-d2101677e91e,SESCO,II.1.1,Catamarca,AR-K,annual,2014,bioetanol combustion consumption by to the public,0.9607141727999999,TJ,N2O,0.6,kg/TJ,0.57642850368,kg -2ac17fcb-f752-3b62-a6ae-9f0942f2398b,SESCO,II.1.1,Chaco,AR-H,annual,2014,bioetanol combustion consumption by to the public,0.0676072008,TJ,CH4,10.0,kg/TJ,0.676072008,kg -ecee9758-981e-3e4e-a2ad-1a241c284f3e,SESCO,II.1.1,Chaco,AR-H,annual,2014,bioetanol combustion consumption by to the public,0.0676072008,TJ,N2O,0.6,kg/TJ,0.04056432048,kg -5089ca43-c772-3adf-a8e8-76d017f7234c,SESCO,II.1.1,Córdoba,AR-X,annual,2014,bioetanol combustion consumption by to the public,0.21795525359999998,TJ,CH4,10.0,kg/TJ,2.1795525359999997,kg -df20a38c-91da-3cdc-843a-64304bf1add8,SESCO,II.1.1,Córdoba,AR-X,annual,2014,bioetanol combustion consumption by to the public,0.21795525359999998,TJ,N2O,0.6,kg/TJ,0.13077315216,kg -b13ae376-2f71-356b-b843-85771997a651,SESCO,II.1.1,Jujuy,AR-Y,annual,2014,bioetanol combustion consumption by to the public,1.5716160432,TJ,CH4,10.0,kg/TJ,15.716160431999999,kg -8f5450c3-1e6a-35f8-9f32-e970978c4828,SESCO,II.1.1,Jujuy,AR-Y,annual,2014,bioetanol combustion consumption by to the public,1.5716160432,TJ,N2O,0.6,kg/TJ,0.9429696259199999,kg -a71d3d82-e5a0-3978-a8fc-f526be8bacf3,SESCO,II.1.1,La Rioja,AR-F,annual,2014,bioetanol combustion consumption by to the public,0.38745896399999996,TJ,CH4,10.0,kg/TJ,3.8745896399999995,kg -3eb0184a-e89a-3607-97a9-32b1a6ab8ca0,SESCO,II.1.1,La Rioja,AR-F,annual,2014,bioetanol combustion consumption by to the public,0.38745896399999996,TJ,N2O,0.6,kg/TJ,0.23247537839999996,kg -65fff7c4-0d9e-33f3-96c3-d14519cd9e8f,SESCO,II.1.1,Salta,AR-A,annual,2014,bioetanol combustion consumption by to the public,3.0074212008000005,TJ,CH4,10.0,kg/TJ,30.074212008000003,kg -98079587-5d0e-307d-9a71-aa28e2c4e6ea,SESCO,II.1.1,Salta,AR-A,annual,2014,bioetanol combustion consumption by to the public,3.0074212008000005,TJ,N2O,0.6,kg/TJ,1.8044527204800003,kg -dddd8b8a-3cd8-3311-967a-1997cd137d13,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2014,bioetanol combustion consumption by to the public,1.63053162,TJ,CH4,10.0,kg/TJ,16.3053162,kg -1e3abfde-a94d-33b0-9021-267ba74c4d97,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2014,bioetanol combustion consumption by to the public,1.63053162,TJ,N2O,0.6,kg/TJ,0.978318972,kg -6bce264e-14e4-347e-88de-e293f82b5703,SESCO,II.1.1,Tucuman,AR-T,annual,2014,bioetanol combustion consumption by to the public,5.2935909912,TJ,CH4,10.0,kg/TJ,52.935909912,kg -0a4ca07c-cbe3-3c41-b67c-3d74d6eb3aa3,SESCO,II.1.1,Tucuman,AR-T,annual,2014,bioetanol combustion consumption by to the public,5.2935909912,TJ,N2O,0.6,kg/TJ,3.1761545947200003,kg -83e463d8-7b98-371a-8542-877f807d3576,SESCO,II.5.1,Santa Fe,AR-S,annual,2014,bioetanol combustion consumption by agriculture machines,2.69610768,TJ,CH4,10.0,kg/TJ,26.9610768,kg -707ce43a-48e9-3a1e-82f1-efc63aaddcd2,SESCO,II.5.1,Santa Fe,AR-S,annual,2014,bioetanol combustion consumption by agriculture machines,2.69610768,TJ,N2O,0.6,kg/TJ,1.617664608,kg -2f0b056b-ef79-314c-8dfd-faeddd9a14e1,SESCO,II.5.1,Santa Fe,AR-S,annual,2014,bioetanol combustion consumption by agriculture machines,0.25734024,TJ,CH4,10.0,kg/TJ,2.5734024,kg -03781888-4acb-3357-acab-9d34a97a8c64,SESCO,II.5.1,Santa Fe,AR-S,annual,2014,bioetanol combustion consumption by agriculture machines,0.25734024,TJ,N2O,0.6,kg/TJ,0.154404144,kg -4dd478e7-c7cf-345d-8d62-46b5d0660652,SESCO,II.1.1,Buenos Aires,AR-B,annual,2014,bioetanol combustion consumption by to the public,4.81277376,TJ,CH4,10.0,kg/TJ,48.127737599999996,kg -a15beebd-a428-3519-a30d-eb96e3bb5eb3,SESCO,II.1.1,Buenos Aires,AR-B,annual,2014,bioetanol combustion consumption by to the public,4.81277376,TJ,N2O,0.6,kg/TJ,2.887664256,kg -8f735a00-3b16-325a-aef4-a96419496d53,SESCO,II.1.1,Entre Rios,AR-E,annual,2014,bioetanol combustion consumption by to the public,1.0515160799999999,TJ,CH4,10.0,kg/TJ,10.515160799999999,kg -3b696176-faa7-3c7a-becd-b74ba32757f2,SESCO,II.1.1,Entre Rios,AR-E,annual,2014,bioetanol combustion consumption by to the public,1.0515160799999999,TJ,N2O,0.6,kg/TJ,0.6309096479999999,kg -2a0c59e1-e52a-3c6f-8f54-7466cddbb0b3,SESCO,II.1.1,Misiones,AR-N,annual,2014,bioetanol combustion consumption by to the public,0.0511272,TJ,CH4,10.0,kg/TJ,0.511272,kg -a9b934e2-a854-30ed-abe6-2908701e53ad,SESCO,II.1.1,Misiones,AR-N,annual,2014,bioetanol combustion consumption by to the public,0.0511272,TJ,N2O,0.6,kg/TJ,0.030676319999999997,kg -b48b6198-6ad5-3c1a-ae71-a82918989df8,SESCO,II.1.1,Buenos Aires,AR-B,annual,2014,bioetanol combustion consumption by to the public,727.7411563200001,TJ,CH4,10.0,kg/TJ,7277.411563200001,kg -162509eb-0ece-3409-8ae6-651e5ca98e1f,SESCO,II.1.1,Buenos Aires,AR-B,annual,2014,bioetanol combustion consumption by to the public,727.7411563200001,TJ,N2O,0.6,kg/TJ,436.64469379200006,kg -481a89fc-b056-300f-8e06-2d190a308221,SESCO,II.1.1,Capital Federal,AR-C,annual,2014,bioetanol combustion consumption by to the public,228.26249712,TJ,CH4,10.0,kg/TJ,2282.6249712,kg -04b9c1be-1445-36fd-b415-5cef637ae53d,SESCO,II.1.1,Capital Federal,AR-C,annual,2014,bioetanol combustion consumption by to the public,228.26249712,TJ,N2O,0.6,kg/TJ,136.957498272,kg -d946b4af-01f4-3272-bab1-674f42790f5f,SESCO,II.1.1,Catamarca,AR-K,annual,2014,bioetanol combustion consumption by to the public,2.93640552,TJ,CH4,10.0,kg/TJ,29.364055200000003,kg -5dcc27a1-4fc2-38f4-8b1e-a923eefb5d91,SESCO,II.1.1,Catamarca,AR-K,annual,2014,bioetanol combustion consumption by to the public,2.93640552,TJ,N2O,0.6,kg/TJ,1.761843312,kg -67027eb1-af8b-357a-b138-f33534e9285f,SESCO,II.1.1,Chaco,AR-H,annual,2014,bioetanol combustion consumption by to the public,44.289789119999995,TJ,CH4,10.0,kg/TJ,442.89789119999995,kg -60232d60-e0b9-3ad4-a28a-3a2af75906bc,SESCO,II.1.1,Chaco,AR-H,annual,2014,bioetanol combustion consumption by to the public,44.289789119999995,TJ,N2O,0.6,kg/TJ,26.573873471999995,kg -2490d75b-af7d-351f-93e1-e183b8d68063,SESCO,II.1.1,Corrientes,AR-W,annual,2014,bioetanol combustion consumption by to the public,43.873954559999994,TJ,CH4,10.0,kg/TJ,438.73954559999993,kg -f989369d-251c-3955-8dd5-d420829c96df,SESCO,II.1.1,Corrientes,AR-W,annual,2014,bioetanol combustion consumption by to the public,43.873954559999994,TJ,N2O,0.6,kg/TJ,26.324372735999997,kg -6f44a3c9-1e77-348f-b1fa-48223ec5a306,SESCO,II.1.1,Córdoba,AR-X,annual,2014,bioetanol combustion consumption by to the public,146.90037528,TJ,CH4,10.0,kg/TJ,1469.0037527999998,kg -b40331af-6284-39cb-80db-ce58461fabd0,SESCO,II.1.1,Córdoba,AR-X,annual,2014,bioetanol combustion consumption by to the public,146.90037528,TJ,N2O,0.6,kg/TJ,88.14022516799999,kg -e98c0d09-b7b8-394c-ae7f-78b62c944499,SESCO,II.1.1,Entre Rios,AR-E,annual,2014,bioetanol combustion consumption by to the public,44.884568879999996,TJ,CH4,10.0,kg/TJ,448.84568879999995,kg -112c62ae-241f-3d7d-8455-2de6defdcfa8,SESCO,II.1.1,Entre Rios,AR-E,annual,2014,bioetanol combustion consumption by to the public,44.884568879999996,TJ,N2O,0.6,kg/TJ,26.930741327999996,kg -c5da3a17-ec6a-3729-b5d2-60dddcfdb8e9,SESCO,II.1.1,Formosa,AR-P,annual,2014,bioetanol combustion consumption by to the public,23.232199679999997,TJ,CH4,10.0,kg/TJ,232.32199679999997,kg -afd68a2d-9800-3a3f-987f-b3f1ef45ed42,SESCO,II.1.1,Formosa,AR-P,annual,2014,bioetanol combustion consumption by to the public,23.232199679999997,TJ,N2O,0.6,kg/TJ,13.939319807999999,kg -c72d9b18-77cc-3bdb-8a04-5e356b6405b8,SESCO,II.1.1,Jujuy,AR-Y,annual,2014,bioetanol combustion consumption by to the public,10.8048816,TJ,CH4,10.0,kg/TJ,108.048816,kg -7913456a-928f-3a5d-a24f-fa3d339343b0,SESCO,II.1.1,Jujuy,AR-Y,annual,2014,bioetanol combustion consumption by to the public,10.8048816,TJ,N2O,0.6,kg/TJ,6.48292896,kg -8e377152-d7b6-39a9-a774-e84811a0d2f4,SESCO,II.1.1,La Pampa,AR-L,annual,2014,bioetanol combustion consumption by to the public,14.119628400000002,TJ,CH4,10.0,kg/TJ,141.19628400000002,kg -5ddaf52e-b47b-36c6-a574-b8a4de628487,SESCO,II.1.1,La Pampa,AR-L,annual,2014,bioetanol combustion consumption by to the public,14.119628400000002,TJ,N2O,0.6,kg/TJ,8.471777040000001,kg -6f2abd4f-e295-302e-a845-9d7eede50066,SESCO,II.1.1,La Rioja,AR-F,annual,2014,bioetanol combustion consumption by to the public,13.33226952,TJ,CH4,10.0,kg/TJ,133.3226952,kg -0fec5f44-a03b-3b20-bf42-cd9304dd01ba,SESCO,II.1.1,La Rioja,AR-F,annual,2014,bioetanol combustion consumption by to the public,13.33226952,TJ,N2O,0.6,kg/TJ,7.999361712,kg -410e02e6-0bfc-3273-bfa3-dd542176bce8,SESCO,II.1.1,Mendoza,AR-M,annual,2014,bioetanol combustion consumption by to the public,30.879124559999998,TJ,CH4,10.0,kg/TJ,308.79124559999997,kg -b0e7a661-125d-381a-afd3-b65e5fabe7a7,SESCO,II.1.1,Mendoza,AR-M,annual,2014,bioetanol combustion consumption by to the public,30.879124559999998,TJ,N2O,0.6,kg/TJ,18.527474736,kg -7cbe30c4-7bd1-3fe0-9696-0fe9cdb75c70,SESCO,II.1.1,Misiones,AR-N,annual,2014,bioetanol combustion consumption by to the public,65.868876,TJ,CH4,10.0,kg/TJ,658.68876,kg -37c842bc-fe7e-323a-b2f5-c2d58444202f,SESCO,II.1.1,Misiones,AR-N,annual,2014,bioetanol combustion consumption by to the public,65.868876,TJ,N2O,0.6,kg/TJ,39.5213256,kg -9a603b5f-698e-359e-85d4-904f48da706f,SESCO,II.1.1,Neuquén,AR-Q,annual,2014,bioetanol combustion consumption by to the public,22.023893519999998,TJ,CH4,10.0,kg/TJ,220.2389352,kg -7cb36a26-7bc6-3966-b05d-b8b398706b5d,SESCO,II.1.1,Neuquén,AR-Q,annual,2014,bioetanol combustion consumption by to the public,22.023893519999998,TJ,N2O,0.6,kg/TJ,13.214336111999998,kg -c9a4294b-31d2-3ec9-b4a4-7f69f471aa7b,SESCO,II.1.1,Rio Negro,AR-R,annual,2014,bioetanol combustion consumption by to the public,6.91239744,TJ,CH4,10.0,kg/TJ,69.12397440000001,kg -e4321d3d-cdbe-3f7d-bdbf-cdc5f60e9ee1,SESCO,II.1.1,Rio Negro,AR-R,annual,2014,bioetanol combustion consumption by to the public,6.91239744,TJ,N2O,0.6,kg/TJ,4.147438464,kg -87a3cfa5-31aa-3fb9-a0ed-3fb2a4caee31,SESCO,II.1.1,Salta,AR-A,annual,2014,bioetanol combustion consumption by to the public,13.802639759999998,TJ,CH4,10.0,kg/TJ,138.0263976,kg -e285e36c-6971-3bcb-85c2-3c0cfe497439,SESCO,II.1.1,Salta,AR-A,annual,2014,bioetanol combustion consumption by to the public,13.802639759999998,TJ,N2O,0.6,kg/TJ,8.281583856,kg -3a95138d-b785-3009-a585-4b50acfb7d77,SESCO,II.1.1,San Juan,AR-J,annual,2014,bioetanol combustion consumption by to the public,9.5096592,TJ,CH4,10.0,kg/TJ,95.096592,kg -684470be-1999-3661-a052-d73d69bf49bd,SESCO,II.1.1,San Juan,AR-J,annual,2014,bioetanol combustion consumption by to the public,9.5096592,TJ,N2O,0.6,kg/TJ,5.70579552,kg -ed1141d2-33e8-3878-b0c7-bb5975c53f14,SESCO,II.1.1,San Luis,AR-D,annual,2014,bioetanol combustion consumption by to the public,1.0174312799999998,TJ,CH4,10.0,kg/TJ,10.1743128,kg -e2eecd1b-ef91-305f-8cd8-cf4824f00584,SESCO,II.1.1,San Luis,AR-D,annual,2014,bioetanol combustion consumption by to the public,1.0174312799999998,TJ,N2O,0.6,kg/TJ,0.6104587679999999,kg -271c1da6-149e-33fa-8efb-dabefec98c5a,SESCO,II.1.1,Santa Fe,AR-S,annual,2014,bioetanol combustion consumption by to the public,169.29749736,TJ,CH4,10.0,kg/TJ,1692.9749735999999,kg -fe1a47bc-532b-3219-b461-542abb34502b,SESCO,II.1.1,Santa Fe,AR-S,annual,2014,bioetanol combustion consumption by to the public,169.29749736,TJ,N2O,0.6,kg/TJ,101.57849841599999,kg -0682dbea-e9a5-3bb4-98dd-9882770d0147,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2014,bioetanol combustion consumption by to the public,17.937126,TJ,CH4,10.0,kg/TJ,179.37126,kg -8aba0436-73b3-3319-bc0c-c7b9089090cf,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2014,bioetanol combustion consumption by to the public,17.937126,TJ,N2O,0.6,kg/TJ,10.762275599999999,kg -49840583-d50d-349c-bcb8-81375bf613e3,SESCO,II.1.1,Tucuman,AR-T,annual,2014,bioetanol combustion consumption by to the public,44.172196559999996,TJ,CH4,10.0,kg/TJ,441.7219656,kg -a5b62276-6d1e-389e-bd52-198b682a6302,SESCO,II.1.1,Tucuman,AR-T,annual,2014,bioetanol combustion consumption by to the public,44.172196559999996,TJ,N2O,0.6,kg/TJ,26.503317936,kg -647377be-8196-34b9-87b5-4aa3202be8b2,SESCO,II.1.1,Buenos Aires,AR-B,annual,2014,bioetanol combustion consumption by to the public,313.91589528,TJ,CH4,10.0,kg/TJ,3139.1589527999995,kg -cf503aa4-445a-34f2-9243-ef860072d37e,SESCO,II.1.1,Buenos Aires,AR-B,annual,2014,bioetanol combustion consumption by to the public,313.91589528,TJ,N2O,0.6,kg/TJ,188.34953716799998,kg -81150472-92aa-367c-99ef-0683290a1f97,SESCO,II.1.1,Capital Federal,AR-C,annual,2014,bioetanol combustion consumption by to the public,138.31782264,TJ,CH4,10.0,kg/TJ,1383.1782264,kg -70c90f11-6440-314b-ad42-95435030f7a0,SESCO,II.1.1,Capital Federal,AR-C,annual,2014,bioetanol combustion consumption by to the public,138.31782264,TJ,N2O,0.6,kg/TJ,82.990693584,kg -3e261911-a230-3d2a-a13a-f3feac1ecd2c,SESCO,II.1.1,Catamarca,AR-K,annual,2014,bioetanol combustion consumption by to the public,1.71787392,TJ,CH4,10.0,kg/TJ,17.1787392,kg -0325c4fe-709e-334a-9351-90473e40c156,SESCO,II.1.1,Catamarca,AR-K,annual,2014,bioetanol combustion consumption by to the public,1.71787392,TJ,N2O,0.6,kg/TJ,1.030724352,kg -cabf6312-3db0-38b8-84c6-e5baca3069ee,SESCO,II.1.1,Chaco,AR-H,annual,2014,bioetanol combustion consumption by to the public,12.25859832,TJ,CH4,10.0,kg/TJ,122.58598320000002,kg -3823dda6-35a1-3679-ba0a-4540e8d2d2f3,SESCO,II.1.1,Chaco,AR-H,annual,2014,bioetanol combustion consumption by to the public,12.25859832,TJ,N2O,0.6,kg/TJ,7.355158992,kg -74b9b2cf-086d-3ea4-a61f-696c85b0e4fb,SESCO,II.1.1,Corrientes,AR-W,annual,2014,bioetanol combustion consumption by to the public,14.881423680000001,TJ,CH4,10.0,kg/TJ,148.8142368,kg -e9efbb5e-82d8-3238-9e63-4e87f68a45a0,SESCO,II.1.1,Corrientes,AR-W,annual,2014,bioetanol combustion consumption by to the public,14.881423680000001,TJ,N2O,0.6,kg/TJ,8.928854208,kg -40444eba-5b42-3d2f-a9b3-392ceab19652,SESCO,II.1.1,Córdoba,AR-X,annual,2014,bioetanol combustion consumption by to the public,52.78372128,TJ,CH4,10.0,kg/TJ,527.8372128,kg -30f79886-3f7c-375e-be17-fa86360e539a,SESCO,II.1.1,Córdoba,AR-X,annual,2014,bioetanol combustion consumption by to the public,52.78372128,TJ,N2O,0.6,kg/TJ,31.670232767999998,kg -9c1431c9-b561-3f6f-8bb3-77ec7afe50f0,SESCO,II.1.1,Entre Rios,AR-E,annual,2014,bioetanol combustion consumption by to the public,17.66956032,TJ,CH4,10.0,kg/TJ,176.6956032,kg -9045b80b-5102-3fc7-9bf4-b46498888303,SESCO,II.1.1,Entre Rios,AR-E,annual,2014,bioetanol combustion consumption by to the public,17.66956032,TJ,N2O,0.6,kg/TJ,10.601736191999999,kg -0ffd8835-05b5-30a4-8958-b61b1be8d4f0,SESCO,II.1.1,Formosa,AR-P,annual,2014,bioetanol combustion consumption by to the public,7.580459520000001,TJ,CH4,10.0,kg/TJ,75.80459520000001,kg -fd2ee629-b757-3012-bc9e-e8af2e2dcf87,SESCO,II.1.1,Formosa,AR-P,annual,2014,bioetanol combustion consumption by to the public,7.580459520000001,TJ,N2O,0.6,kg/TJ,4.548275712000001,kg -4a287d38-fd76-3eeb-a681-e65879bd8016,SESCO,II.1.1,Jujuy,AR-Y,annual,2014,bioetanol combustion consumption by to the public,1.8201283199999998,TJ,CH4,10.0,kg/TJ,18.2012832,kg -2288d318-da22-33ca-a5a8-e16918417377,SESCO,II.1.1,Jujuy,AR-Y,annual,2014,bioetanol combustion consumption by to the public,1.8201283199999998,TJ,N2O,0.6,kg/TJ,1.0920769919999997,kg -e4534f18-bb1f-3b59-940a-4bf753c4fd06,SESCO,II.1.1,La Pampa,AR-L,annual,2014,bioetanol combustion consumption by to the public,5.60354112,TJ,CH4,10.0,kg/TJ,56.0354112,kg -887a8658-7c0d-36a4-a91e-5d4f0f94fc22,SESCO,II.1.1,La Pampa,AR-L,annual,2014,bioetanol combustion consumption by to the public,5.60354112,TJ,N2O,0.6,kg/TJ,3.3621246719999998,kg -0d56be63-38eb-3b74-8378-dfcb6a605341,SESCO,II.1.1,La Rioja,AR-F,annual,2014,bioetanol combustion consumption by to the public,3.5448192,TJ,CH4,10.0,kg/TJ,35.448192,kg -9ba2bc9a-7f5c-3916-9a90-e56b0d098f04,SESCO,II.1.1,La Rioja,AR-F,annual,2014,bioetanol combustion consumption by to the public,3.5448192,TJ,N2O,0.6,kg/TJ,2.12689152,kg -a90e6a69-2ec2-361c-887c-8ce1b4dd1288,SESCO,II.1.1,Mendoza,AR-M,annual,2014,bioetanol combustion consumption by to the public,13.73106168,TJ,CH4,10.0,kg/TJ,137.3106168,kg -5e427f3f-3970-3951-b9f8-6225be503b9e,SESCO,II.1.1,Mendoza,AR-M,annual,2014,bioetanol combustion consumption by to the public,13.73106168,TJ,N2O,0.6,kg/TJ,8.238637008,kg -b393dd2f-10c2-340c-ae3f-26ac11d1ad9e,SESCO,II.1.1,Misiones,AR-N,annual,2014,bioetanol combustion consumption by to the public,12.534685199999998,TJ,CH4,10.0,kg/TJ,125.34685199999998,kg -6d4a98c8-29b1-3da3-b169-55ddb3705961,SESCO,II.1.1,Misiones,AR-N,annual,2014,bioetanol combustion consumption by to the public,12.534685199999998,TJ,N2O,0.6,kg/TJ,7.5208111199999985,kg -a67fd1a4-2222-3afe-9443-3abe18a4a534,SESCO,II.1.1,Neuquén,AR-Q,annual,2014,bioetanol combustion consumption by to the public,8.90976672,TJ,CH4,10.0,kg/TJ,89.0976672,kg -f6b99898-c670-3b73-96b4-46efd0c0f5d1,SESCO,II.1.1,Neuquén,AR-Q,annual,2014,bioetanol combustion consumption by to the public,8.90976672,TJ,N2O,0.6,kg/TJ,5.345860032,kg -45ad21f1-6d6f-3c68-9f48-81995e55ec1c,SESCO,II.1.1,Rio Negro,AR-R,annual,2014,bioetanol combustion consumption by to the public,2.8767571199999997,TJ,CH4,10.0,kg/TJ,28.7675712,kg -7fbecfcc-2fd5-3b7d-a0c6-56b972f4bc73,SESCO,II.1.1,Rio Negro,AR-R,annual,2014,bioetanol combustion consumption by to the public,2.8767571199999997,TJ,N2O,0.6,kg/TJ,1.7260542719999998,kg -7052e382-5f88-3935-a164-19a937a01fb5,SESCO,II.1.1,Salta,AR-A,annual,2014,bioetanol combustion consumption by to the public,3.7987509599999996,TJ,CH4,10.0,kg/TJ,37.987509599999996,kg -108b59ad-4159-3bd3-b4ee-5bc2646cca4f,SESCO,II.1.1,Salta,AR-A,annual,2014,bioetanol combustion consumption by to the public,3.7987509599999996,TJ,N2O,0.6,kg/TJ,2.2792505759999995,kg -e57702e9-8595-39dd-bacf-6dd4b256f361,SESCO,II.1.1,San Juan,AR-J,annual,2014,bioetanol combustion consumption by to the public,1.5491541599999998,TJ,CH4,10.0,kg/TJ,15.491541599999998,kg -cd9ad799-b8c2-3ab2-b6ea-416f892c8f77,SESCO,II.1.1,San Juan,AR-J,annual,2014,bioetanol combustion consumption by to the public,1.5491541599999998,TJ,N2O,0.6,kg/TJ,0.9294924959999998,kg -e37fd2b7-2573-3586-84d7-4c25bc250b1a,SESCO,II.1.1,San Luis,AR-D,annual,2014,bioetanol combustion consumption by to the public,1.2781799999999999,TJ,CH4,10.0,kg/TJ,12.781799999999999,kg -855c7cc1-3606-37e5-be46-35f4c714b141,SESCO,II.1.1,San Luis,AR-D,annual,2014,bioetanol combustion consumption by to the public,1.2781799999999999,TJ,N2O,0.6,kg/TJ,0.7669079999999999,kg -0cc5df1c-e143-3990-ba5d-fe4ab527e7f1,SESCO,II.1.1,Santa Fe,AR-S,annual,2014,bioetanol combustion consumption by to the public,65.4683796,TJ,CH4,10.0,kg/TJ,654.683796,kg -292b8912-b921-39f4-a8d6-3789586829df,SESCO,II.1.1,Santa Fe,AR-S,annual,2014,bioetanol combustion consumption by to the public,65.4683796,TJ,N2O,0.6,kg/TJ,39.28102776,kg -a05d0182-b19a-3a16-aaf8-73d0124f3e5f,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2014,bioetanol combustion consumption by to the public,6.58347912,TJ,CH4,10.0,kg/TJ,65.8347912,kg -42e63921-3e27-3e09-b9c2-50fc7747c230,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2014,bioetanol combustion consumption by to the public,6.58347912,TJ,N2O,0.6,kg/TJ,3.950087472,kg -f1e511f6-623f-31b5-8852-e30c945a8098,SESCO,II.1.1,Tucuman,AR-T,annual,2014,bioetanol combustion consumption by to the public,10.53902016,TJ,CH4,10.0,kg/TJ,105.3902016,kg -46b82d12-05ae-3716-896e-17d998482e7c,SESCO,II.1.1,Tucuman,AR-T,annual,2014,bioetanol combustion consumption by to the public,10.53902016,TJ,N2O,0.6,kg/TJ,6.323412095999999,kg -a0756af1-9db0-3858-93c8-3b7952adc8d1,SESCO,II.5.1,Buenos Aires,AR-B,annual,2014,bioetanol combustion consumption by agriculture machines,0.20110031999999997,TJ,CH4,10.0,kg/TJ,2.0110031999999998,kg -c4d03efe-2fe6-3f11-a984-e741ca9e727e,SESCO,II.5.1,Buenos Aires,AR-B,annual,2014,bioetanol combustion consumption by agriculture machines,0.20110031999999997,TJ,N2O,0.6,kg/TJ,0.12066019199999997,kg -b29642a7-316d-37e6-a761-630168b92137,SESCO,II.5.1,Chubut,AR-U,annual,2014,bioetanol combustion consumption by agriculture machines,0.0255636,TJ,CH4,10.0,kg/TJ,0.255636,kg -83dd1549-ac23-3c7d-b7c7-4e97b18c64e5,SESCO,II.5.1,Chubut,AR-U,annual,2014,bioetanol combustion consumption by agriculture machines,0.0255636,TJ,N2O,0.6,kg/TJ,0.015338159999999998,kg -4cc12b03-9b88-39b1-b92b-5568e515c18e,SESCO,II.5.1,Entre Rios,AR-E,annual,2014,bioetanol combustion consumption by agriculture machines,0.0766908,TJ,CH4,10.0,kg/TJ,0.766908,kg -c84ecc66-cf4f-36fd-b519-c8f0ac7e1ba8,SESCO,II.5.1,Entre Rios,AR-E,annual,2014,bioetanol combustion consumption by agriculture machines,0.0766908,TJ,N2O,0.6,kg/TJ,0.04601448,kg -9a5fcf14-45e0-3d14-9fac-1a604c4aa38d,SESCO,II.5.1,Salta,AR-A,annual,2014,bioetanol combustion consumption by agriculture machines,0.0085212,TJ,CH4,10.0,kg/TJ,0.085212,kg -3f9f78dd-7f8b-369f-897d-1f0611709453,SESCO,II.5.1,Salta,AR-A,annual,2014,bioetanol combustion consumption by agriculture machines,0.0085212,TJ,N2O,0.6,kg/TJ,0.005112719999999999,kg -e633b30f-621c-3d06-94e8-b98fbddf8013,SESCO,II.5.1,Santa Fe,AR-S,annual,2014,bioetanol combustion consumption by agriculture machines,1.53892872,TJ,CH4,10.0,kg/TJ,15.389287199999998,kg -dafb8e81-6758-3309-8122-e55c09a45c6a,SESCO,II.5.1,Santa Fe,AR-S,annual,2014,bioetanol combustion consumption by agriculture machines,1.53892872,TJ,N2O,0.6,kg/TJ,0.9233572319999999,kg -ba0cbf95-4d33-3bd0-a80c-c8dad85734b3,SESCO,II.5.1,Buenos Aires,AR-B,annual,2014,bioetanol combustion consumption by agriculture machines,0.0340848,TJ,CH4,10.0,kg/TJ,0.340848,kg -40227557-46e7-387c-a6f0-7cfdde187d58,SESCO,II.5.1,Buenos Aires,AR-B,annual,2014,bioetanol combustion consumption by agriculture machines,0.0340848,TJ,N2O,0.6,kg/TJ,0.020450879999999998,kg -f508ad57-3891-3ffe-8336-e671ccc3da61,SESCO,II.5.1,Santa Fe,AR-S,annual,2014,bioetanol combustion consumption by agriculture machines,0.04771872,TJ,CH4,10.0,kg/TJ,0.4771872,kg -c7688946-372a-30b1-8e5a-885b449686ba,SESCO,II.5.1,Santa Fe,AR-S,annual,2014,bioetanol combustion consumption by agriculture machines,0.04771872,TJ,N2O,0.6,kg/TJ,0.028631232,kg -d282d934-0c57-3c02-9819-27fae156aa3e,SESCO,II.1.1,Buenos Aires,AR-B,annual,2014,bioetanol combustion consumption by to the public,2124.1817784,TJ,CH4,10.0,kg/TJ,21241.817784,kg -d848a2d8-ad85-3059-a9c6-64a02a328357,SESCO,II.1.1,Buenos Aires,AR-B,annual,2014,bioetanol combustion consumption by to the public,2124.1817784,TJ,N2O,0.6,kg/TJ,1274.50906704,kg -97ab2841-b62a-31c0-8867-7f89f010a31d,SESCO,II.1.1,Capital Federal,AR-C,annual,2014,bioetanol combustion consumption by to the public,453.83229503999996,TJ,CH4,10.0,kg/TJ,4538.322950399999,kg -325e2fad-6734-386c-a85f-5247dcd9a951,SESCO,II.1.1,Capital Federal,AR-C,annual,2014,bioetanol combustion consumption by to the public,453.83229503999996,TJ,N2O,0.6,kg/TJ,272.29937702399997,kg -04e1250b-3087-3744-8328-b99599f4de56,SESCO,II.1.1,Catamarca,AR-K,annual,2014,bioetanol combustion consumption by to the public,36.51504624,TJ,CH4,10.0,kg/TJ,365.1504624,kg -2bba8e4d-b59d-32c7-a32f-3d9b0eb59263,SESCO,II.1.1,Catamarca,AR-K,annual,2014,bioetanol combustion consumption by to the public,36.51504624,TJ,N2O,0.6,kg/TJ,21.909027743999996,kg -446d46f6-3270-33a4-a617-4c281a723491,SESCO,II.1.1,Chaco,AR-H,annual,2014,bioetanol combustion consumption by to the public,120.40285175999999,TJ,CH4,10.0,kg/TJ,1204.0285176,kg -ba70d091-09bc-3d76-ba1e-a52258a79999,SESCO,II.1.1,Chaco,AR-H,annual,2014,bioetanol combustion consumption by to the public,120.40285175999999,TJ,N2O,0.6,kg/TJ,72.24171105599999,kg -c3dc379a-49fd-3938-ab12-1317cb24dde4,SESCO,II.1.1,Chubut,AR-U,annual,2014,bioetanol combustion consumption by to the public,202.31373888000002,TJ,CH4,10.0,kg/TJ,2023.1373888000003,kg -8ea0ec94-aec3-38cc-a442-54c6fad92547,SESCO,II.1.1,Chubut,AR-U,annual,2014,bioetanol combustion consumption by to the public,202.31373888000002,TJ,N2O,0.6,kg/TJ,121.388243328,kg -b58ff469-b34c-3aa3-8e97-6c32818b05b8,SESCO,II.1.1,Corrientes,AR-W,annual,2014,bioetanol combustion consumption by to the public,131.88602088,TJ,CH4,10.0,kg/TJ,1318.8602087999998,kg -4a042822-f5f4-35a0-9fce-015d6028aefc,SESCO,II.1.1,Corrientes,AR-W,annual,2014,bioetanol combustion consumption by to the public,131.88602088,TJ,N2O,0.6,kg/TJ,79.13161252799999,kg -6ceb298a-10c3-3f84-949c-43745b3dc416,SESCO,II.1.1,Córdoba,AR-X,annual,2014,bioetanol combustion consumption by to the public,525.93868944,TJ,CH4,10.0,kg/TJ,5259.3868944,kg -0e0fcc23-637f-3090-9be4-c5bf97fe4ec8,SESCO,II.1.1,Córdoba,AR-X,annual,2014,bioetanol combustion consumption by to the public,525.93868944,TJ,N2O,0.6,kg/TJ,315.563213664,kg -0270538f-158d-3bc6-a8b6-3eac6d03ba39,SESCO,II.1.1,Entre Rios,AR-E,annual,2014,bioetanol combustion consumption by to the public,178.68445128,TJ,CH4,10.0,kg/TJ,1786.8445127999998,kg -5ced05d3-6473-337f-aa26-a84e1ef387da,SESCO,II.1.1,Entre Rios,AR-E,annual,2014,bioetanol combustion consumption by to the public,178.68445128,TJ,N2O,0.6,kg/TJ,107.21067076799999,kg -2b8c9b87-3b7f-3397-82c4-195b2be06f10,SESCO,II.1.1,Formosa,AR-P,annual,2014,bioetanol combustion consumption by to the public,46.270115999999994,TJ,CH4,10.0,kg/TJ,462.70115999999996,kg -6f673d17-3b81-354b-a506-222df24a2e24,SESCO,II.1.1,Formosa,AR-P,annual,2014,bioetanol combustion consumption by to the public,46.270115999999994,TJ,N2O,0.6,kg/TJ,27.762069599999997,kg -eadb6a07-6a0b-30de-b8e0-ad84664ece5c,SESCO,II.1.1,Jujuy,AR-Y,annual,2014,bioetanol combustion consumption by to the public,60.03867096,TJ,CH4,10.0,kg/TJ,600.3867096,kg -20e9ddc2-64ec-3198-bb03-73a520ec6f8b,SESCO,II.1.1,Jujuy,AR-Y,annual,2014,bioetanol combustion consumption by to the public,60.03867096,TJ,N2O,0.6,kg/TJ,36.023202575999996,kg -a435f762-f803-393d-a299-239493e613f6,SESCO,II.1.1,La Pampa,AR-L,annual,2014,bioetanol combustion consumption by to the public,86.788422,TJ,CH4,10.0,kg/TJ,867.8842199999999,kg -4bca964a-274d-3e5c-9eb9-18dccd7c2394,SESCO,II.1.1,La Pampa,AR-L,annual,2014,bioetanol combustion consumption by to the public,86.788422,TJ,N2O,0.6,kg/TJ,52.0730532,kg -ad8e87a1-7de2-303a-9e31-ffb5aa278403,SESCO,II.1.1,La Rioja,AR-F,annual,2014,bioetanol combustion consumption by to the public,53.77558896,TJ,CH4,10.0,kg/TJ,537.7558896,kg -65a0d1ff-db0b-3044-b627-2260c6626ff8,SESCO,II.1.1,La Rioja,AR-F,annual,2014,bioetanol combustion consumption by to the public,53.77558896,TJ,N2O,0.6,kg/TJ,32.265353376,kg -6f08fd23-d00c-3e77-b7c0-ad0dfaa97b3f,SESCO,II.1.1,Mendoza,AR-M,annual,2014,bioetanol combustion consumption by to the public,289.78556112,TJ,CH4,10.0,kg/TJ,2897.8556112,kg -ab2cb6a9-bb28-30f3-9f49-becdb5cb10a3,SESCO,II.1.1,Mendoza,AR-M,annual,2014,bioetanol combustion consumption by to the public,289.78556112,TJ,N2O,0.6,kg/TJ,173.871336672,kg -4a57dae6-68a1-3416-a99b-728379235a67,SESCO,II.1.1,Misiones,AR-N,annual,2014,bioetanol combustion consumption by to the public,173.15589672,TJ,CH4,10.0,kg/TJ,1731.5589671999999,kg -6fed5a2e-1593-38bf-8f4d-17b92f644372,SESCO,II.1.1,Misiones,AR-N,annual,2014,bioetanol combustion consumption by to the public,173.15589672,TJ,N2O,0.6,kg/TJ,103.893538032,kg -8cebf34d-da9d-3fe6-8bb5-7b1f0523d532,SESCO,II.1.1,Neuquén,AR-Q,annual,2014,bioetanol combustion consumption by to the public,163.49456016,TJ,CH4,10.0,kg/TJ,1634.9456016,kg -409484bb-bce3-33e0-8a12-68c25e402a1d,SESCO,II.1.1,Neuquén,AR-Q,annual,2014,bioetanol combustion consumption by to the public,163.49456016,TJ,N2O,0.6,kg/TJ,98.09673609599999,kg -f63f1c7a-c1d4-35fd-93f8-f9d188affb63,SESCO,II.1.1,Rio Negro,AR-R,annual,2014,bioetanol combustion consumption by to the public,162.28284552,TJ,CH4,10.0,kg/TJ,1622.8284552,kg -63f795d6-3e06-3dd1-bfb8-49ba5f317fe6,SESCO,II.1.1,Rio Negro,AR-R,annual,2014,bioetanol combustion consumption by to the public,162.28284552,TJ,N2O,0.6,kg/TJ,97.36970731199999,kg -f41dd542-f7f6-3190-92c0-0fb1eea88351,SESCO,II.1.1,Salta,AR-A,annual,2014,bioetanol combustion consumption by to the public,138.83079888,TJ,CH4,10.0,kg/TJ,1388.3079888,kg -a0a16dfa-c85f-3104-a836-83aca0a02056,SESCO,II.1.1,Salta,AR-A,annual,2014,bioetanol combustion consumption by to the public,138.83079888,TJ,N2O,0.6,kg/TJ,83.298479328,kg -dd6b1332-bd74-3d13-948d-8da8b298f281,SESCO,II.1.1,San Juan,AR-J,annual,2014,bioetanol combustion consumption by to the public,90.67068072,TJ,CH4,10.0,kg/TJ,906.7068072,kg -d32cee01-9068-3623-b4fb-f5356966bc39,SESCO,II.1.1,San Juan,AR-J,annual,2014,bioetanol combustion consumption by to the public,90.67068072,TJ,N2O,0.6,kg/TJ,54.402408431999994,kg -6d07709b-bcac-3c01-8060-decd4a3d43ca,SESCO,II.1.1,San Luis,AR-D,annual,2014,bioetanol combustion consumption by to the public,69.75624744,TJ,CH4,10.0,kg/TJ,697.5624743999999,kg -a1edb781-08d2-3c90-8172-005d47c4fa3e,SESCO,II.1.1,San Luis,AR-D,annual,2014,bioetanol combustion consumption by to the public,69.75624744,TJ,N2O,0.6,kg/TJ,41.853748464,kg -4c666a5a-1e8f-3094-970d-ff2b0fabc217,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2014,bioetanol combustion consumption by to the public,138.87340487999998,TJ,CH4,10.0,kg/TJ,1388.7340487999998,kg -7a361211-adac-3940-a1a0-e46b7b7ce12f,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2014,bioetanol combustion consumption by to the public,138.87340487999998,TJ,N2O,0.6,kg/TJ,83.32404292799998,kg -1b112f0a-27e0-3458-ad2d-645cec280d42,SESCO,II.1.1,Santa Fe,AR-S,annual,2014,bioetanol combustion consumption by to the public,412.55048952,TJ,CH4,10.0,kg/TJ,4125.5048952,kg -46b01c78-1f38-3aed-aa03-c76c46d67896,SESCO,II.1.1,Santa Fe,AR-S,annual,2014,bioetanol combustion consumption by to the public,412.55048952,TJ,N2O,0.6,kg/TJ,247.53029371199997,kg -43cf017f-ad5c-38c8-b3bb-e7c70776bda4,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2014,bioetanol combustion consumption by to the public,64.39300416,TJ,CH4,10.0,kg/TJ,643.9300416000001,kg -9cca8e1a-0bcc-3911-8afe-92217f20ce59,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2014,bioetanol combustion consumption by to the public,64.39300416,TJ,N2O,0.6,kg/TJ,38.635802496000004,kg -014600e9-3e82-3457-b127-555168046a70,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2014,bioetanol combustion consumption by to the public,101.74483224,TJ,CH4,10.0,kg/TJ,1017.4483223999999,kg -a2bcdfd2-d5d1-3e6a-a6e9-0e43e65627e2,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2014,bioetanol combustion consumption by to the public,101.74483224,TJ,N2O,0.6,kg/TJ,61.046899343999996,kg -a99f80b1-5071-3dec-8273-f5a25b23759b,SESCO,II.1.1,Tucuman,AR-T,annual,2014,bioetanol combustion consumption by to the public,117.98794368,TJ,CH4,10.0,kg/TJ,1179.8794368,kg -b9cec7ef-ffff-34ee-93bd-a6e552e1e3f1,SESCO,II.1.1,Tucuman,AR-T,annual,2014,bioetanol combustion consumption by to the public,117.98794368,TJ,N2O,0.6,kg/TJ,70.792766208,kg -968fdd12-76f2-386e-bd71-ef6a4bc78e14,SESCO,II.1.1,Buenos Aires,AR-B,annual,2014,bioetanol combustion consumption by to the public,729.22214088,TJ,CH4,10.0,kg/TJ,7292.2214088,kg -7cc997b3-92db-3b8a-bee5-e022823afbbe,SESCO,II.1.1,Buenos Aires,AR-B,annual,2014,bioetanol combustion consumption by to the public,729.22214088,TJ,N2O,0.6,kg/TJ,437.53328452799997,kg -6b2f576b-5e70-3b51-b55d-9863f89fa76b,SESCO,II.1.1,Capital Federal,AR-C,annual,2014,bioetanol combustion consumption by to the public,177.05008512,TJ,CH4,10.0,kg/TJ,1770.5008512,kg -c0ce478f-506f-3cf3-a7a8-059199180e95,SESCO,II.1.1,Capital Federal,AR-C,annual,2014,bioetanol combustion consumption by to the public,177.05008512,TJ,N2O,0.6,kg/TJ,106.230051072,kg -47d0cc2b-c25c-3a55-bd7a-d927fa67a9d1,SESCO,II.1.1,Catamarca,AR-K,annual,2014,bioetanol combustion consumption by to the public,10.99064376,TJ,CH4,10.0,kg/TJ,109.90643759999999,kg -69cd978d-1609-356b-b533-ee37f4c39fca,SESCO,II.1.1,Catamarca,AR-K,annual,2014,bioetanol combustion consumption by to the public,10.99064376,TJ,N2O,0.6,kg/TJ,6.594386255999999,kg -59f8e59e-17fb-343d-a588-fc75439ebee7,SESCO,II.1.1,Chaco,AR-H,annual,2014,bioetanol combustion consumption by to the public,43.82282736,TJ,CH4,10.0,kg/TJ,438.22827359999997,kg -fad3ec08-6fa6-334d-9770-9d77342ccc11,SESCO,II.1.1,Chaco,AR-H,annual,2014,bioetanol combustion consumption by to the public,43.82282736,TJ,N2O,0.6,kg/TJ,26.293696416,kg -bca56488-f4bf-3928-9a2f-533660e15465,SESCO,II.1.1,Chubut,AR-U,annual,2014,bioetanol combustion consumption by to the public,58.8644496,TJ,CH4,10.0,kg/TJ,588.644496,kg -b755f1db-6c9a-37e8-9b6a-2e7e6ba2564c,SESCO,II.1.1,Chubut,AR-U,annual,2014,bioetanol combustion consumption by to the public,58.8644496,TJ,N2O,0.6,kg/TJ,35.31866976,kg -7605e6d6-995d-3f28-a527-bf981e5ea480,SESCO,II.1.1,Corrientes,AR-W,annual,2014,bioetanol combustion consumption by to the public,44.16026688,TJ,CH4,10.0,kg/TJ,441.6026688,kg -6d2b24eb-f2f8-3962-afdf-3f40e728014f,SESCO,II.1.1,Corrientes,AR-W,annual,2014,bioetanol combustion consumption by to the public,44.16026688,TJ,N2O,0.6,kg/TJ,26.496160128,kg -289f1b32-ccc0-3ae8-b53f-c6a6f36f9de8,SESCO,II.1.1,Córdoba,AR-X,annual,2014,bioetanol combustion consumption by to the public,151.31435688,TJ,CH4,10.0,kg/TJ,1513.1435688,kg -107a15c4-ff95-32b7-b75d-360e7863ec37,SESCO,II.1.1,Córdoba,AR-X,annual,2014,bioetanol combustion consumption by to the public,151.31435688,TJ,N2O,0.6,kg/TJ,90.78861412799999,kg -ecda6e2d-7439-3956-8988-6956c60f1509,SESCO,II.1.1,Entre Rios,AR-E,annual,2014,bioetanol combustion consumption by to the public,63.16254288,TJ,CH4,10.0,kg/TJ,631.6254288,kg -dc2995b8-39d9-3c0f-8e6a-92eb835b469b,SESCO,II.1.1,Entre Rios,AR-E,annual,2014,bioetanol combustion consumption by to the public,63.16254288,TJ,N2O,0.6,kg/TJ,37.897525728,kg -ba2d4fa3-2111-3ffb-b996-fef137f7bcde,SESCO,II.1.1,Formosa,AR-P,annual,2014,bioetanol combustion consumption by to the public,11.72346696,TJ,CH4,10.0,kg/TJ,117.23466959999999,kg -635cbaeb-fb6a-3426-aeb1-5e1a629d0565,SESCO,II.1.1,Formosa,AR-P,annual,2014,bioetanol combustion consumption by to the public,11.72346696,TJ,N2O,0.6,kg/TJ,7.034080176,kg -9ae9b138-0364-30cb-86bd-7fbd60cbf732,SESCO,II.1.1,Jujuy,AR-Y,annual,2014,bioetanol combustion consumption by to the public,14.06679696,TJ,CH4,10.0,kg/TJ,140.6679696,kg -8e8c8c2d-be11-328c-9756-9440bd5f211d,SESCO,II.1.1,Jujuy,AR-Y,annual,2014,bioetanol combustion consumption by to the public,14.06679696,TJ,N2O,0.6,kg/TJ,8.440078176,kg -d42d349a-d8e2-3ece-80b4-6985ad48b3f7,SESCO,II.1.1,La Pampa,AR-L,annual,2014,bioetanol combustion consumption by to the public,35.13120336,TJ,CH4,10.0,kg/TJ,351.3120336,kg -9e75b35a-4447-3426-bbe2-84747c4726ed,SESCO,II.1.1,La Pampa,AR-L,annual,2014,bioetanol combustion consumption by to the public,35.13120336,TJ,N2O,0.6,kg/TJ,21.078722016,kg -0825ef8d-50f2-3945-bbac-1a29ed9281b9,SESCO,II.1.1,La Rioja,AR-F,annual,2014,bioetanol combustion consumption by to the public,15.477907680000001,TJ,CH4,10.0,kg/TJ,154.7790768,kg -c4a2975a-7769-395c-bbc2-c543e00bdc54,SESCO,II.1.1,La Rioja,AR-F,annual,2014,bioetanol combustion consumption by to the public,15.477907680000001,TJ,N2O,0.6,kg/TJ,9.286744608000001,kg -adafc084-8e56-3f18-b4d7-3abfda999810,SESCO,II.1.1,Mendoza,AR-M,annual,2014,bioetanol combustion consumption by to the public,104.9556204,TJ,CH4,10.0,kg/TJ,1049.556204,kg -b74be6b7-83e1-3999-ac6b-6d1981212222,SESCO,II.1.1,Mendoza,AR-M,annual,2014,bioetanol combustion consumption by to the public,104.9556204,TJ,N2O,0.6,kg/TJ,62.973372239999996,kg -15ff8700-41a7-38ef-bd44-e6852db729ed,SESCO,II.1.1,Misiones,AR-N,annual,2014,bioetanol combustion consumption by to the public,45.239050799999994,TJ,CH4,10.0,kg/TJ,452.39050799999995,kg -73ec5662-9eb5-32f8-bd00-cd2a8b07f12c,SESCO,II.1.1,Misiones,AR-N,annual,2014,bioetanol combustion consumption by to the public,45.239050799999994,TJ,N2O,0.6,kg/TJ,27.143430479999996,kg -12b18a29-8de3-351b-b349-c78f2dfbe4b0,SESCO,II.1.1,Neuquén,AR-Q,annual,2014,bioetanol combustion consumption by to the public,57.46015584,TJ,CH4,10.0,kg/TJ,574.6015583999999,kg -2c77db19-ed15-3586-8374-a71ca4dd7cd5,SESCO,II.1.1,Neuquén,AR-Q,annual,2014,bioetanol combustion consumption by to the public,57.46015584,TJ,N2O,0.6,kg/TJ,34.476093504,kg -b92109bb-1662-3340-98d2-b6620c1423dd,SESCO,II.1.1,Rio Negro,AR-R,annual,2014,bioetanol combustion consumption by to the public,57.521508479999994,TJ,CH4,10.0,kg/TJ,575.2150847999999,kg -446b91f6-a398-363e-8554-e478c3bf37e2,SESCO,II.1.1,Rio Negro,AR-R,annual,2014,bioetanol combustion consumption by to the public,57.521508479999994,TJ,N2O,0.6,kg/TJ,34.512905088,kg -5fc13a83-0534-3fc3-8d60-022d14fa14a6,SESCO,II.1.1,Salta,AR-A,annual,2014,bioetanol combustion consumption by to the public,34.84489104,TJ,CH4,10.0,kg/TJ,348.4489104,kg -162058dc-09c2-39a7-b8f6-c8a96f4ed6ff,SESCO,II.1.1,Salta,AR-A,annual,2014,bioetanol combustion consumption by to the public,34.84489104,TJ,N2O,0.6,kg/TJ,20.906934623999998,kg -aa701cd9-0458-3942-8ee3-3339e8c881a1,SESCO,II.1.1,San Juan,AR-J,annual,2014,bioetanol combustion consumption by to the public,30.05768088,TJ,CH4,10.0,kg/TJ,300.5768088,kg -bd5dd3b4-de69-3ac9-bf6b-55b0bbfe52ba,SESCO,II.1.1,San Juan,AR-J,annual,2014,bioetanol combustion consumption by to the public,30.05768088,TJ,N2O,0.6,kg/TJ,18.034608528,kg -0231b0a1-e859-3772-8056-9e6cc8512090,SESCO,II.1.1,San Luis,AR-D,annual,2014,bioetanol combustion consumption by to the public,29.42540784,TJ,CH4,10.0,kg/TJ,294.25407839999997,kg -b2379a4c-fcac-3f71-bd07-ecec35b25a6a,SESCO,II.1.1,San Luis,AR-D,annual,2014,bioetanol combustion consumption by to the public,29.42540784,TJ,N2O,0.6,kg/TJ,17.655244703999998,kg -6cec36a3-3a76-39ab-9659-859831f19756,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2014,bioetanol combustion consumption by to the public,29.086264080000003,TJ,CH4,10.0,kg/TJ,290.8626408,kg -c9de0ec0-bef7-3650-9e66-b50b61fd9003,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2014,bioetanol combustion consumption by to the public,29.086264080000003,TJ,N2O,0.6,kg/TJ,17.451758448,kg -b41e76a2-4a8d-3e70-a632-36c1efd0897d,SESCO,II.1.1,Santa Fe,AR-S,annual,2014,bioetanol combustion consumption by to the public,152.70331248,TJ,CH4,10.0,kg/TJ,1527.0331248,kg -45672531-9bbc-3095-a65f-e9289cfeabce,SESCO,II.1.1,Santa Fe,AR-S,annual,2014,bioetanol combustion consumption by to the public,152.70331248,TJ,N2O,0.6,kg/TJ,91.62198748799999,kg -cef283f8-7fef-3e2f-94bb-bc36576405d7,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2014,bioetanol combustion consumption by to the public,27.187740719999997,TJ,CH4,10.0,kg/TJ,271.8774072,kg -c208eb57-3d04-3575-bc55-5c12ed53f2fc,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2014,bioetanol combustion consumption by to the public,27.187740719999997,TJ,N2O,0.6,kg/TJ,16.312644432,kg -674ed496-5901-3e5d-9900-003da21a6c09,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2014,bioetanol combustion consumption by to the public,3.3999588,TJ,CH4,10.0,kg/TJ,33.999587999999996,kg -9b914b86-571a-3832-93fe-5e79c4d923d0,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2014,bioetanol combustion consumption by to the public,3.3999588,TJ,N2O,0.6,kg/TJ,2.0399752799999997,kg -ef0490be-707d-394e-b636-c002a4c96c42,SESCO,II.1.1,Tucuman,AR-T,annual,2014,bioetanol combustion consumption by to the public,26.85541392,TJ,CH4,10.0,kg/TJ,268.5541392,kg -69e5b783-fac3-3a74-b63b-bf0d549e5d4e,SESCO,II.1.1,Tucuman,AR-T,annual,2014,bioetanol combustion consumption by to the public,26.85541392,TJ,N2O,0.6,kg/TJ,16.113248352,kg -270bcdff-b102-334f-9a95-d13ccd5fb014,SESCO,II.1.1,Buenos Aires,AR-B,annual,2014,bioetanol combustion consumption by freight transport,9.830056319999999,TJ,CH4,10.0,kg/TJ,98.30056319999998,kg -47a8e0a3-4e88-368e-b82c-38301c8458a2,SESCO,II.1.1,Buenos Aires,AR-B,annual,2014,bioetanol combustion consumption by freight transport,9.830056319999999,TJ,N2O,0.6,kg/TJ,5.898033791999999,kg -e51c5619-6670-39db-b5c6-fbf14b67ef5f,SESCO,II.1.1,Capital Federal,AR-C,annual,2014,bioetanol combustion consumption by freight transport,10.677063599999999,TJ,CH4,10.0,kg/TJ,106.77063599999998,kg -8b5f5bda-6f25-3c5b-a922-ef93d34874ef,SESCO,II.1.1,Capital Federal,AR-C,annual,2014,bioetanol combustion consumption by freight transport,10.677063599999999,TJ,N2O,0.6,kg/TJ,6.406238159999999,kg -5917f770-57de-30f0-aa90-e1a3028e7fdc,SESCO,II.1.1,Chaco,AR-H,annual,2014,bioetanol combustion consumption by freight transport,0.27097416,TJ,CH4,10.0,kg/TJ,2.7097416,kg -aa42d09a-d06c-3777-aa56-4b3b19efea75,SESCO,II.1.1,Chaco,AR-H,annual,2014,bioetanol combustion consumption by freight transport,0.27097416,TJ,N2O,0.6,kg/TJ,0.162584496,kg -86492cf3-b28e-3d19-9529-fab2fc5b7964,SESCO,II.1.1,Chubut,AR-U,annual,2014,bioetanol combustion consumption by freight transport,0.027267839999999998,TJ,CH4,10.0,kg/TJ,0.2726784,kg -c2fd24cc-33f3-3724-92d0-d47e8e8f2761,SESCO,II.1.1,Chubut,AR-U,annual,2014,bioetanol combustion consumption by freight transport,0.027267839999999998,TJ,N2O,0.6,kg/TJ,0.016360703999999997,kg -155c9bb0-66da-375c-b793-7e67d719eb11,SESCO,II.1.1,Corrientes,AR-W,annual,2014,bioetanol combustion consumption by freight transport,0.08691623999999999,TJ,CH4,10.0,kg/TJ,0.8691623999999999,kg -4c510094-a338-3fe5-9ce4-4b2d047456af,SESCO,II.1.1,Corrientes,AR-W,annual,2014,bioetanol combustion consumption by freight transport,0.08691623999999999,TJ,N2O,0.6,kg/TJ,0.05214974399999999,kg -fbcb83ed-f9de-3fd1-9905-6ed1a939170e,SESCO,II.1.1,Córdoba,AR-X,annual,2014,bioetanol combustion consumption by freight transport,0.26756568,TJ,CH4,10.0,kg/TJ,2.6756567999999996,kg -141f9e8b-bef7-3e3b-b7d5-1d1ad597119a,SESCO,II.1.1,Córdoba,AR-X,annual,2014,bioetanol combustion consumption by freight transport,0.26756568,TJ,N2O,0.6,kg/TJ,0.16053940799999997,kg -85ecdc5d-daf3-3b19-9a44-7e25b44afdb7,SESCO,II.1.1,Entre Rios,AR-E,annual,2014,bioetanol combustion consumption by freight transport,0.09884591999999999,TJ,CH4,10.0,kg/TJ,0.9884591999999999,kg -8670bfe4-c268-3e20-8c7b-9d38e537a6f8,SESCO,II.1.1,Entre Rios,AR-E,annual,2014,bioetanol combustion consumption by freight transport,0.09884591999999999,TJ,N2O,0.6,kg/TJ,0.05930755199999999,kg -838f2edf-24e1-37fa-aef6-fe6675db96db,SESCO,II.1.1,Mendoza,AR-M,annual,2014,bioetanol combustion consumption by freight transport,0.26756568,TJ,CH4,10.0,kg/TJ,2.6756567999999996,kg -7beaa6a6-898c-3cc7-b1df-70a063784607,SESCO,II.1.1,Mendoza,AR-M,annual,2014,bioetanol combustion consumption by freight transport,0.26756568,TJ,N2O,0.6,kg/TJ,0.16053940799999997,kg -890dc80d-fb8d-3d49-9707-3cc78931f3b0,SESCO,II.1.1,Misiones,AR-N,annual,2014,bioetanol combustion consumption by freight transport,0.030676319999999997,TJ,CH4,10.0,kg/TJ,0.30676319999999996,kg -e6b623b8-d5c3-397d-8cfd-5caa64659724,SESCO,II.1.1,Misiones,AR-N,annual,2014,bioetanol combustion consumption by freight transport,0.030676319999999997,TJ,N2O,0.6,kg/TJ,0.018405791999999997,kg -cf77e3bd-b316-3d0b-9844-e7906ae22486,SESCO,II.1.1,Neuquén,AR-Q,annual,2014,bioetanol combustion consumption by freight transport,0.013633919999999999,TJ,CH4,10.0,kg/TJ,0.1363392,kg -0aa0bb36-f3a3-357a-9379-1b98f8812114,SESCO,II.1.1,Neuquén,AR-Q,annual,2014,bioetanol combustion consumption by freight transport,0.013633919999999999,TJ,N2O,0.6,kg/TJ,0.008180351999999998,kg -e60c386a-e743-3aa2-a5e1-e9390fbe5296,SESCO,II.1.1,Rio Negro,AR-R,annual,2014,bioetanol combustion consumption by freight transport,0.08862048,TJ,CH4,10.0,kg/TJ,0.8862048,kg -908761eb-398b-326a-99d5-4cf40c5115e9,SESCO,II.1.1,Rio Negro,AR-R,annual,2014,bioetanol combustion consumption by freight transport,0.08862048,TJ,N2O,0.6,kg/TJ,0.053172288,kg -80a8bf29-873e-3c3b-888a-78317d39910b,SESCO,II.1.1,Salta,AR-A,annual,2014,bioetanol combustion consumption by freight transport,0.553878,TJ,CH4,10.0,kg/TJ,5.53878,kg -d270c9a1-df67-389b-be7d-33df19b3f032,SESCO,II.1.1,Salta,AR-A,annual,2014,bioetanol combustion consumption by freight transport,0.553878,TJ,N2O,0.6,kg/TJ,0.3323268,kg -180c2f54-4195-3c81-a440-b0d99efa495d,SESCO,II.1.1,San Juan,AR-J,annual,2014,bioetanol combustion consumption by freight transport,0.0034084799999999998,TJ,CH4,10.0,kg/TJ,0.0340848,kg -c88ede68-b3e6-3738-8401-fd8b91e9219b,SESCO,II.1.1,San Juan,AR-J,annual,2014,bioetanol combustion consumption by freight transport,0.0034084799999999998,TJ,N2O,0.6,kg/TJ,0.0020450879999999996,kg -e585bcf5-e26c-33d9-b701-64ca71ecb216,SESCO,II.1.1,San Luis,AR-D,annual,2014,bioetanol combustion consumption by freight transport,0.013633919999999999,TJ,CH4,10.0,kg/TJ,0.1363392,kg -60f954ca-30c9-387f-a54c-af2732ec0cf7,SESCO,II.1.1,San Luis,AR-D,annual,2014,bioetanol combustion consumption by freight transport,0.013633919999999999,TJ,N2O,0.6,kg/TJ,0.008180351999999998,kg -aae72771-15a5-3bfe-b661-1258063f9411,SESCO,II.1.1,Santa Fe,AR-S,annual,2014,bioetanol combustion consumption by freight transport,0.85893696,TJ,CH4,10.0,kg/TJ,8.5893696,kg -96c806d8-b327-32c5-a0e1-8dd0fabe168f,SESCO,II.1.1,Santa Fe,AR-S,annual,2014,bioetanol combustion consumption by freight transport,0.85893696,TJ,N2O,0.6,kg/TJ,0.515362176,kg -9a0a3377-6505-39f8-a619-5a6c210802d7,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2014,bioetanol combustion consumption by freight transport,0.0017042399999999999,TJ,CH4,10.0,kg/TJ,0.0170424,kg -0efac24f-2725-3f0b-82d4-60666149a274,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2014,bioetanol combustion consumption by freight transport,0.0017042399999999999,TJ,N2O,0.6,kg/TJ,0.0010225439999999998,kg -1a7f3786-b863-30f6-a3cd-674ded28a8a8,SESCO,II.1.1,Tucuman,AR-T,annual,2014,bioetanol combustion consumption by freight transport,0.06476111999999999,TJ,CH4,10.0,kg/TJ,0.6476111999999999,kg -8ce8a3e7-d5e4-3413-941e-d992dbfd96c2,SESCO,II.1.1,Tucuman,AR-T,annual,2014,bioetanol combustion consumption by freight transport,0.06476111999999999,TJ,N2O,0.6,kg/TJ,0.038856671999999995,kg -28a9a6cf-3332-38cb-9523-1bf06fbb0bd5,SESCO,II.1.1,Buenos Aires,AR-B,annual,2014,bioetanol combustion consumption by freight transport,9.884592,TJ,CH4,10.0,kg/TJ,98.84591999999999,kg -6b921ae5-b4c8-3f76-8a18-161128b1e085,SESCO,II.1.1,Buenos Aires,AR-B,annual,2014,bioetanol combustion consumption by freight transport,9.884592,TJ,N2O,0.6,kg/TJ,5.930755199999999,kg -7650d82f-63ac-37ce-90ad-758cd8bdd4b6,SESCO,II.1.1,Capital Federal,AR-C,annual,2014,bioetanol combustion consumption by freight transport,9.67667472,TJ,CH4,10.0,kg/TJ,96.7667472,kg -c34e2478-ea9e-3ee4-a6cb-d2128b8b037c,SESCO,II.1.1,Capital Federal,AR-C,annual,2014,bioetanol combustion consumption by freight transport,9.67667472,TJ,N2O,0.6,kg/TJ,5.806004831999999,kg -06fc960d-97e6-332b-804a-aad794f8f6a3,SESCO,II.1.1,Chaco,AR-H,annual,2014,bioetanol combustion consumption by freight transport,0.32039712,TJ,CH4,10.0,kg/TJ,3.2039712,kg -872541a0-4f4d-31aa-84f5-8bbf86197a5a,SESCO,II.1.1,Chaco,AR-H,annual,2014,bioetanol combustion consumption by freight transport,0.32039712,TJ,N2O,0.6,kg/TJ,0.192238272,kg -4b726d1e-05f6-3bd7-b24c-ddd5a77a2189,SESCO,II.1.1,Chubut,AR-U,annual,2014,bioetanol combustion consumption by freight transport,0.02215512,TJ,CH4,10.0,kg/TJ,0.2215512,kg -86e06134-7445-3d64-99ac-59ac5bd27542,SESCO,II.1.1,Chubut,AR-U,annual,2014,bioetanol combustion consumption by freight transport,0.02215512,TJ,N2O,0.6,kg/TJ,0.013293072,kg -42b3be01-ee6e-34ef-b122-0ad451c00025,SESCO,II.1.1,Corrientes,AR-W,annual,2014,bioetanol combustion consumption by freight transport,0.14315615999999998,TJ,CH4,10.0,kg/TJ,1.4315615999999998,kg -d38fe19b-94da-3d85-94b2-c16549be187c,SESCO,II.1.1,Corrientes,AR-W,annual,2014,bioetanol combustion consumption by freight transport,0.14315615999999998,TJ,N2O,0.6,kg/TJ,0.08589369599999998,kg -66e4335c-b58b-32cd-a27e-f92e46e8e83c,SESCO,II.1.1,Córdoba,AR-X,annual,2014,bioetanol combustion consumption by freight transport,0.2641572,TJ,CH4,10.0,kg/TJ,2.641572,kg -325f85a7-fe8e-31c6-90b6-d68874d4e92c,SESCO,II.1.1,Córdoba,AR-X,annual,2014,bioetanol combustion consumption by freight transport,0.2641572,TJ,N2O,0.6,kg/TJ,0.15849432,kg -b0811922-cdb6-30cb-8d29-0534637ee5ea,SESCO,II.1.1,Entre Rios,AR-E,annual,2014,bioetanol combustion consumption by freight transport,0.1107756,TJ,CH4,10.0,kg/TJ,1.107756,kg -e6d61e80-0000-3e9a-a3ae-54a506a9a366,SESCO,II.1.1,Entre Rios,AR-E,annual,2014,bioetanol combustion consumption by freight transport,0.1107756,TJ,N2O,0.6,kg/TJ,0.06646536,kg -d573f2b1-1dbd-3490-864e-b3c4a1485f04,SESCO,II.1.1,Jujuy,AR-Y,annual,2014,bioetanol combustion consumption by freight transport,0.005112719999999999,TJ,CH4,10.0,kg/TJ,0.0511272,kg -e488517e-def6-3d29-a51c-2106d8abbd23,SESCO,II.1.1,Jujuy,AR-Y,annual,2014,bioetanol combustion consumption by freight transport,0.005112719999999999,TJ,N2O,0.6,kg/TJ,0.0030676319999999994,kg -9e0754c2-ce88-3992-bdaf-36499b346246,SESCO,II.1.1,La Rioja,AR-F,annual,2014,bioetanol combustion consumption by freight transport,0.0255636,TJ,CH4,10.0,kg/TJ,0.255636,kg -ec1bb08f-a31a-36b4-a228-ddcb6ae7bb7e,SESCO,II.1.1,La Rioja,AR-F,annual,2014,bioetanol combustion consumption by freight transport,0.0255636,TJ,N2O,0.6,kg/TJ,0.015338159999999998,kg -90910fe3-0d24-383d-ad64-36d8c346a0d8,SESCO,II.1.1,Mendoza,AR-M,annual,2014,bioetanol combustion consumption by freight transport,0.22325544,TJ,CH4,10.0,kg/TJ,2.2325544,kg -2ad585ab-e5da-3552-bfad-59760ca94dd4,SESCO,II.1.1,Mendoza,AR-M,annual,2014,bioetanol combustion consumption by freight transport,0.22325544,TJ,N2O,0.6,kg/TJ,0.133953264,kg -845393f5-8212-3a2b-be1c-7aabcc073e8a,SESCO,II.1.1,Misiones,AR-N,annual,2014,bioetanol combustion consumption by freight transport,0.040901759999999995,TJ,CH4,10.0,kg/TJ,0.4090176,kg -5d59fc73-9f91-349b-9be8-f0f6c561d228,SESCO,II.1.1,Misiones,AR-N,annual,2014,bioetanol combustion consumption by freight transport,0.040901759999999995,TJ,N2O,0.6,kg/TJ,0.024541055999999995,kg -cf77e3bd-b316-3d0b-9844-e7906ae22486,SESCO,II.1.1,Neuquén,AR-Q,annual,2014,bioetanol combustion consumption by freight transport,0.013633919999999999,TJ,CH4,10.0,kg/TJ,0.1363392,kg -0aa0bb36-f3a3-357a-9379-1b98f8812114,SESCO,II.1.1,Neuquén,AR-Q,annual,2014,bioetanol combustion consumption by freight transport,0.013633919999999999,TJ,N2O,0.6,kg/TJ,0.008180351999999998,kg -75b5a713-9854-3c98-9d2c-c4393a4d5642,SESCO,II.1.1,Rio Negro,AR-R,annual,2014,bioetanol combustion consumption by freight transport,0.1022544,TJ,CH4,10.0,kg/TJ,1.022544,kg -34be2b69-1cec-3969-bebe-060843fb4422,SESCO,II.1.1,Rio Negro,AR-R,annual,2014,bioetanol combustion consumption by freight transport,0.1022544,TJ,N2O,0.6,kg/TJ,0.06135263999999999,kg -0cc9e75a-716e-30fe-863f-8c5fcdf16884,SESCO,II.1.1,Salta,AR-A,annual,2014,bioetanol combustion consumption by freight transport,0.054535679999999996,TJ,CH4,10.0,kg/TJ,0.5453568,kg -1c966b52-65e7-3fcb-9af6-8015de24daf4,SESCO,II.1.1,Salta,AR-A,annual,2014,bioetanol combustion consumption by freight transport,0.054535679999999996,TJ,N2O,0.6,kg/TJ,0.032721407999999993,kg -4d445df7-e721-38c9-bfde-b08a1a862ef9,SESCO,II.1.1,San Luis,AR-D,annual,2014,bioetanol combustion consumption by freight transport,0.01874664,TJ,CH4,10.0,kg/TJ,0.18746639999999998,kg -1fa820d9-e089-37f0-bee4-348c4c6cd61c,SESCO,II.1.1,San Luis,AR-D,annual,2014,bioetanol combustion consumption by freight transport,0.01874664,TJ,N2O,0.6,kg/TJ,0.011247983999999999,kg -68e58d36-ada3-381c-9561-ded02170269d,SESCO,II.1.1,Santa Fe,AR-S,annual,2014,bioetanol combustion consumption by freight transport,1.17251712,TJ,CH4,10.0,kg/TJ,11.7251712,kg -20689d92-0349-34f3-aaa1-f93028060d36,SESCO,II.1.1,Santa Fe,AR-S,annual,2014,bioetanol combustion consumption by freight transport,1.17251712,TJ,N2O,0.6,kg/TJ,0.7035102719999999,kg -d8ef2ca3-13be-3e4a-a0fb-30a91e2f344b,SESCO,II.1.1,Tucuman,AR-T,annual,2014,bioetanol combustion consumption by freight transport,0.040901759999999995,TJ,CH4,10.0,kg/TJ,0.4090176,kg -02fe95e6-4ca2-37ed-9ac9-18d7b0696b0b,SESCO,II.1.1,Tucuman,AR-T,annual,2014,bioetanol combustion consumption by freight transport,0.040901759999999995,TJ,N2O,0.6,kg/TJ,0.024541055999999995,kg -d3adc838-1eee-3803-a47c-8aa552c81a11,SESCO,II.1.1,Buenos Aires,AR-B,annual,2014,bioetanol combustion consumption by public passenger transport,0.010225439999999999,TJ,CH4,10.0,kg/TJ,0.1022544,kg -839a5344-1900-32c3-b23f-8f83aeafb00c,SESCO,II.1.1,Buenos Aires,AR-B,annual,2014,bioetanol combustion consumption by public passenger transport,0.010225439999999999,TJ,N2O,0.6,kg/TJ,0.006135263999999999,kg -894dd03e-c24d-336e-9557-0e9756250710,SESCO,II.1.1,Capital Federal,AR-C,annual,2015,bioetanol combustion consumption by to the public,1.40727618,TJ,CH4,10.0,kg/TJ,14.0727618,kg -c4072d95-ced1-33fd-bcc0-b25333926294,SESCO,II.1.1,Capital Federal,AR-C,annual,2015,bioetanol combustion consumption by to the public,1.40727618,TJ,N2O,0.6,kg/TJ,0.844365708,kg -0186f02e-ed6b-3b10-8344-b9175cd41c32,SESCO,II.1.1,Capital Federal,AR-C,annual,2015,bioetanol combustion consumption by to the public,0.43522028999999995,TJ,CH4,10.0,kg/TJ,4.3522029,kg -368125e1-d7dd-3d57-845c-242cb2a17f4c,SESCO,II.1.1,Capital Federal,AR-C,annual,2015,bioetanol combustion consumption by to the public,0.43522028999999995,TJ,N2O,0.6,kg/TJ,0.26113217399999994,kg -4c604c65-eadb-3892-8dcd-7a9ada93196f,SESCO,II.5.1,Córdoba,AR-X,annual,2015,bioetanol combustion consumption by agriculture machines,0.4160475899999999,TJ,CH4,10.0,kg/TJ,4.160475899999999,kg -127c318f-f41f-38cd-8502-92f4f04e3f9d,SESCO,II.5.1,Córdoba,AR-X,annual,2015,bioetanol combustion consumption by agriculture machines,0.4160475899999999,TJ,N2O,0.6,kg/TJ,0.24962855399999995,kg -496fab8e-16ec-3b15-895e-ef53bed8dcd5,SESCO,II.5.1,Santa Fe,AR-S,annual,2015,bioetanol combustion consumption by agriculture machines,1.0544985,TJ,CH4,10.0,kg/TJ,10.544985,kg -95cd5687-7cce-37ff-8f5d-0e1f89ba3f54,SESCO,II.5.1,Santa Fe,AR-S,annual,2015,bioetanol combustion consumption by agriculture machines,1.0544985,TJ,N2O,0.6,kg/TJ,0.6326991,kg -dfd77a7e-39b0-37ad-a3bf-35fef28b1a66,SESCO,II.5.1,Córdoba,AR-X,annual,2015,bioetanol combustion consumption by agriculture machines,0.20706515999999997,TJ,CH4,10.0,kg/TJ,2.0706515999999997,kg -be8b1fcd-7705-304b-ba26-f8c62e2b5352,SESCO,II.5.1,Córdoba,AR-X,annual,2015,bioetanol combustion consumption by agriculture machines,0.20706515999999997,TJ,N2O,0.6,kg/TJ,0.12423909599999998,kg -fac02b52-56a5-3824-907e-380b20ccf930,SESCO,II.5.1,Santa Fe,AR-S,annual,2015,bioetanol combustion consumption by agriculture machines,0.37770219,TJ,CH4,10.0,kg/TJ,3.7770219,kg -83aaee4f-4597-3f9c-a3fa-f65dc7401ba0,SESCO,II.5.1,Santa Fe,AR-S,annual,2015,bioetanol combustion consumption by agriculture machines,0.37770219,TJ,N2O,0.6,kg/TJ,0.226621314,kg -29fffd63-46f5-3237-830b-e4d0cd3aef81,SESCO,II.1.1,Buenos Aires,AR-B,annual,2015,bioetanol combustion consumption by to the public,553.142014327044,TJ,CH4,10.0,kg/TJ,5531.420143270439,kg -94d5486c-aae3-3014-8d5d-cfa8a7656121,SESCO,II.1.1,Buenos Aires,AR-B,annual,2015,bioetanol combustion consumption by to the public,553.142014327044,TJ,N2O,0.6,kg/TJ,331.8852085962264,kg -431ef201-6c58-3ea8-b415-b31bcdc1097f,SESCO,II.1.1,Capital Federal,AR-C,annual,2015,bioetanol combustion consumption by to the public,198.01597958843396,TJ,CH4,10.0,kg/TJ,1980.1597958843397,kg -abfab013-c053-345d-ac48-7f07a81287e4,SESCO,II.1.1,Capital Federal,AR-C,annual,2015,bioetanol combustion consumption by to the public,198.01597958843396,TJ,N2O,0.6,kg/TJ,118.80958775306037,kg -0e503988-fecb-3f76-a88b-c141e9e33296,SESCO,II.1.1,Catamarca,AR-K,annual,2015,bioetanol combustion consumption by to the public,25.594343552267993,TJ,CH4,10.0,kg/TJ,255.94343552267992,kg -76a38364-7a53-3387-a7fa-6e27ba261176,SESCO,II.1.1,Catamarca,AR-K,annual,2015,bioetanol combustion consumption by to the public,25.594343552267993,TJ,N2O,0.6,kg/TJ,15.356606131360795,kg -dfacce38-7685-3e7f-b49d-af156688370a,SESCO,II.1.1,Chaco,AR-H,annual,2015,bioetanol combustion consumption by to the public,25.631160696351,TJ,CH4,10.0,kg/TJ,256.31160696351,kg -db175cc9-1bb7-3db7-9993-95dc6d04d1bc,SESCO,II.1.1,Chaco,AR-H,annual,2015,bioetanol combustion consumption by to the public,25.631160696351,TJ,N2O,0.6,kg/TJ,15.378696417810598,kg -6de57489-9a80-345b-bf3a-17de72da7683,SESCO,II.1.1,Chubut,AR-U,annual,2015,bioetanol combustion consumption by to the public,18.66207923271,TJ,CH4,10.0,kg/TJ,186.6207923271,kg -9bca9d3f-1cb0-3a6b-bf97-a5758d855d4b,SESCO,II.1.1,Chubut,AR-U,annual,2015,bioetanol combustion consumption by to the public,18.66207923271,TJ,N2O,0.6,kg/TJ,11.197247539626,kg -d2208f77-a524-3c87-abb2-8c4868b7606a,SESCO,II.1.1,Corrientes,AR-W,annual,2015,bioetanol combustion consumption by to the public,22.165549075376997,TJ,CH4,10.0,kg/TJ,221.65549075376998,kg -6779cca7-0c06-3dc3-b57e-17f6470b0c99,SESCO,II.1.1,Corrientes,AR-W,annual,2015,bioetanol combustion consumption by to the public,22.165549075376997,TJ,N2O,0.6,kg/TJ,13.299329445226197,kg -9d9b7f34-b572-3765-9189-a6abd6638cde,SESCO,II.1.1,Córdoba,AR-X,annual,2015,bioetanol combustion consumption by to the public,163.247002321509,TJ,CH4,10.0,kg/TJ,1632.47002321509,kg -93418239-b0ab-33b9-82f4-53fece7ded27,SESCO,II.1.1,Córdoba,AR-X,annual,2015,bioetanol combustion consumption by to the public,163.247002321509,TJ,N2O,0.6,kg/TJ,97.9482013929054,kg -57cf640b-d4a6-3855-b274-2944b94c1a64,SESCO,II.1.1,Entre Rios,AR-E,annual,2015,bioetanol combustion consumption by to the public,61.633425533589,TJ,CH4,10.0,kg/TJ,616.33425533589,kg -84d640ca-af35-34b7-9ce2-889f050529eb,SESCO,II.1.1,Entre Rios,AR-E,annual,2015,bioetanol combustion consumption by to the public,61.633425533589,TJ,N2O,0.6,kg/TJ,36.9800553201534,kg -5bbb0717-89e9-33c1-a321-98aba8a39ff7,SESCO,II.1.1,Formosa,AR-P,annual,2015,bioetanol combustion consumption by to the public,31.710130581519,TJ,CH4,10.0,kg/TJ,317.10130581519,kg -465bbd50-70d1-320b-a4f2-e53a98790b41,SESCO,II.1.1,Formosa,AR-P,annual,2015,bioetanol combustion consumption by to the public,31.710130581519,TJ,N2O,0.6,kg/TJ,19.026078348911398,kg -bd83fc2d-7a84-3ea6-b798-025545b2588d,SESCO,II.1.1,Jujuy,AR-Y,annual,2015,bioetanol combustion consumption by to the public,5.880337645535999,TJ,CH4,10.0,kg/TJ,58.80337645535999,kg -7b66a8a0-0250-396d-8ed8-cd205f0df590,SESCO,II.1.1,Jujuy,AR-Y,annual,2015,bioetanol combustion consumption by to the public,5.880337645535999,TJ,N2O,0.6,kg/TJ,3.528202587321599,kg -7bc1267b-2bc3-3a51-b955-4487cef651c1,SESCO,II.1.1,La Pampa,AR-L,annual,2015,bioetanol combustion consumption by to the public,6.771401340290999,TJ,CH4,10.0,kg/TJ,67.71401340290998,kg -7d46e134-5f02-3abb-a4b7-7c0697e700f9,SESCO,II.1.1,La Pampa,AR-L,annual,2015,bioetanol combustion consumption by to the public,6.771401340290999,TJ,N2O,0.6,kg/TJ,4.062840804174599,kg -04c2e641-b31d-3121-93f9-f1c0fc7cde14,SESCO,II.1.1,La Rioja,AR-F,annual,2015,bioetanol combustion consumption by to the public,6.051323235222,TJ,CH4,10.0,kg/TJ,60.51323235222,kg -06e3d918-2bb1-38c8-9162-ee95ff392b51,SESCO,II.1.1,La Rioja,AR-F,annual,2015,bioetanol combustion consumption by to the public,6.051323235222,TJ,N2O,0.6,kg/TJ,3.6307939411332,kg -f408c9dd-4bdb-3bc8-a990-3a8e0d2f7085,SESCO,II.1.1,Mendoza,AR-M,annual,2015,bioetanol combustion consumption by to the public,28.082635418456995,TJ,CH4,10.0,kg/TJ,280.82635418456994,kg -523cf4c4-87cc-317a-a35b-56add125a631,SESCO,II.1.1,Mendoza,AR-M,annual,2015,bioetanol combustion consumption by to the public,28.082635418456995,TJ,N2O,0.6,kg/TJ,16.849581251074195,kg -99ed5456-9176-3ba9-80aa-e9656945bebf,SESCO,II.1.1,Misiones,AR-N,annual,2015,bioetanol combustion consumption by to the public,46.38784915979999,TJ,CH4,10.0,kg/TJ,463.8784915979999,kg -0b9c1506-a568-3033-8ec5-9b4c987b266b,SESCO,II.1.1,Misiones,AR-N,annual,2015,bioetanol combustion consumption by to the public,46.38784915979999,TJ,N2O,0.6,kg/TJ,27.832709495879993,kg -5c2cd5d3-a1e1-3b01-888e-01b3f4ba2df8,SESCO,II.1.1,Neuquén,AR-Q,annual,2015,bioetanol combustion consumption by to the public,16.735623208685997,TJ,CH4,10.0,kg/TJ,167.35623208685996,kg -a6494fa3-fc3c-341d-9a34-8de349f7a732,SESCO,II.1.1,Neuquén,AR-Q,annual,2015,bioetanol combustion consumption by to the public,16.735623208685997,TJ,N2O,0.6,kg/TJ,10.041373925211598,kg -0d2eaed4-4040-3c30-98c1-0e145113622c,SESCO,II.1.1,Rio Negro,AR-R,annual,2015,bioetanol combustion consumption by to the public,18.423285554934,TJ,CH4,10.0,kg/TJ,184.23285554934,kg -8708b5f5-c373-3b5e-82ae-e7c19faadcee,SESCO,II.1.1,Rio Negro,AR-R,annual,2015,bioetanol combustion consumption by to the public,18.423285554934,TJ,N2O,0.6,kg/TJ,11.0539713329604,kg -cd5bd1ad-23f3-3cc3-b5ba-7e29aa4b0a7f,SESCO,II.1.1,Salta,AR-A,annual,2015,bioetanol combustion consumption by to the public,3.256411197375,TJ,CH4,10.0,kg/TJ,32.56411197375,kg -b5979192-5877-35a3-93c4-87cab7774d46,SESCO,II.1.1,Salta,AR-A,annual,2015,bioetanol combustion consumption by to the public,3.256411197375,TJ,N2O,0.6,kg/TJ,1.953846718425,kg -87541640-05f5-3f9d-8149-7073d873a352,SESCO,II.1.1,San Juan,AR-J,annual,2015,bioetanol combustion consumption by to the public,17.01711142173,TJ,CH4,10.0,kg/TJ,170.1711142173,kg -d14c0295-6538-31a6-b904-c728a7025330,SESCO,II.1.1,San Juan,AR-J,annual,2015,bioetanol combustion consumption by to the public,17.01711142173,TJ,N2O,0.6,kg/TJ,10.210266853038,kg -e301234c-780f-3b01-a9f7-5c0bbcde6759,SESCO,II.1.1,San Luis,AR-D,annual,2015,bioetanol combustion consumption by to the public,34.189744308507,TJ,CH4,10.0,kg/TJ,341.89744308507,kg -538e9718-e069-3771-82f2-593c5d49f99a,SESCO,II.1.1,San Luis,AR-D,annual,2015,bioetanol combustion consumption by to the public,34.189744308507,TJ,N2O,0.6,kg/TJ,20.5138465851042,kg -85f4809f-fbfe-3b1d-b967-011696c44a5b,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2015,bioetanol combustion consumption by to the public,3.755140289216999,TJ,CH4,10.0,kg/TJ,37.55140289216999,kg -0add7905-959e-3c73-a2dc-a93cec4de315,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2015,bioetanol combustion consumption by to the public,3.755140289216999,TJ,N2O,0.6,kg/TJ,2.2530841735301994,kg -2f192da9-b012-3ce4-9110-7969864defda,SESCO,II.1.1,Santa Fe,AR-S,annual,2015,bioetanol combustion consumption by to the public,149.94439004989798,TJ,CH4,10.0,kg/TJ,1499.4439004989797,kg -32f89d92-0d36-3cc3-92bb-b616cb44b47c,SESCO,II.1.1,Santa Fe,AR-S,annual,2015,bioetanol combustion consumption by to the public,149.94439004989798,TJ,N2O,0.6,kg/TJ,89.96663402993879,kg -4edc4aa2-a7b9-3b44-b713-ccfbd0f48f3a,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2015,bioetanol combustion consumption by to the public,19.856473063802998,TJ,CH4,10.0,kg/TJ,198.56473063802997,kg -5ae85425-8432-3321-9de8-41a61f2bc4b3,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2015,bioetanol combustion consumption by to the public,19.856473063802998,TJ,N2O,0.6,kg/TJ,11.913883838281798,kg -585c20f0-a913-3d1b-85fc-c76a3b7f2e27,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2015,bioetanol combustion consumption by to the public,7.319880712727999,TJ,CH4,10.0,kg/TJ,73.19880712727999,kg -4824193c-05b8-38ba-b516-cb22862cc151,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2015,bioetanol combustion consumption by to the public,7.319880712727999,TJ,N2O,0.6,kg/TJ,4.391928427636799,kg -c3c3cce9-1c34-387d-b0d2-e1c81f13e30c,SESCO,II.1.1,Tucuman,AR-T,annual,2015,bioetanol combustion consumption by to the public,7.450754713289999,TJ,CH4,10.0,kg/TJ,74.50754713289999,kg -6175d2ab-8b67-3ced-9a6e-7c6ef8c39b1b,SESCO,II.1.1,Tucuman,AR-T,annual,2015,bioetanol combustion consumption by to the public,7.450754713289999,TJ,N2O,0.6,kg/TJ,4.4704528279739995,kg -6ec74054-aae4-3494-a149-2fef26ab09a9,SESCO,II.1.1,Buenos Aires,AR-B,annual,2015,bioetanol combustion consumption by to the public,154.623676911174,TJ,CH4,10.0,kg/TJ,1546.23676911174,kg -47297602-db38-30ac-9836-4d49b44a280c,SESCO,II.1.1,Buenos Aires,AR-B,annual,2015,bioetanol combustion consumption by to the public,154.623676911174,TJ,N2O,0.6,kg/TJ,92.77420614670439,kg -628d0870-b0e0-305d-ae51-50c53aad12cc,SESCO,II.1.1,Capital Federal,AR-C,annual,2015,bioetanol combustion consumption by to the public,78.972685863615,TJ,CH4,10.0,kg/TJ,789.7268586361499,kg -9881b2ec-75b4-30ba-84c8-41450c4a836a,SESCO,II.1.1,Capital Federal,AR-C,annual,2015,bioetanol combustion consumption by to the public,78.972685863615,TJ,N2O,0.6,kg/TJ,47.383611518169,kg -8510543d-32ef-3329-85f5-ac440ee96ea8,SESCO,II.1.1,Catamarca,AR-K,annual,2015,bioetanol combustion consumption by to the public,6.988319159094,TJ,CH4,10.0,kg/TJ,69.88319159094,kg -489c4811-bcf0-35b1-ba2a-b3623b762934,SESCO,II.1.1,Catamarca,AR-K,annual,2015,bioetanol combustion consumption by to the public,6.988319159094,TJ,N2O,0.6,kg/TJ,4.1929914954564,kg -46bb58f5-768b-3fa1-8d6d-6a4c4c1de81a,SESCO,II.1.1,Chaco,AR-H,annual,2015,bioetanol combustion consumption by to the public,5.190779219507999,TJ,CH4,10.0,kg/TJ,51.90779219507999,kg -396b3528-1b14-3e2e-b621-a1125252ea3e,SESCO,II.1.1,Chaco,AR-H,annual,2015,bioetanol combustion consumption by to the public,5.190779219507999,TJ,N2O,0.6,kg/TJ,3.1144675317047996,kg -d547d63c-52d0-32cb-b551-7186d8cd08fa,SESCO,II.1.1,Chubut,AR-U,annual,2015,bioetanol combustion consumption by to the public,4.246423854741,TJ,CH4,10.0,kg/TJ,42.46423854741,kg -18c0afe8-6dd9-3e67-87a0-874bc60588f0,SESCO,II.1.1,Chubut,AR-U,annual,2015,bioetanol combustion consumption by to the public,4.246423854741,TJ,N2O,0.6,kg/TJ,2.5478543128445996,kg -21f55c35-d0db-3bec-a5d4-221aa64389b9,SESCO,II.1.1,Corrientes,AR-W,annual,2015,bioetanol combustion consumption by to the public,6.540319114181999,TJ,CH4,10.0,kg/TJ,65.40319114181999,kg -ea7feb17-3398-3520-b6ec-d673937aca36,SESCO,II.1.1,Corrientes,AR-W,annual,2015,bioetanol combustion consumption by to the public,6.540319114181999,TJ,N2O,0.6,kg/TJ,3.9241914685091994,kg -b0ea1b42-5a82-3c73-9bb3-faa6540fcd62,SESCO,II.1.1,Córdoba,AR-X,annual,2015,bioetanol combustion consumption by to the public,38.15407869433199,TJ,CH4,10.0,kg/TJ,381.5407869433199,kg -cf8310ea-43a3-3a15-b5e4-4beb18378c3b,SESCO,II.1.1,Córdoba,AR-X,annual,2015,bioetanol combustion consumption by to the public,38.15407869433199,TJ,N2O,0.6,kg/TJ,22.892447216599194,kg -f325d834-73be-36bf-bb62-c3db7ae67f74,SESCO,II.1.1,Entre Rios,AR-E,annual,2015,bioetanol combustion consumption by to the public,16.391769078447,TJ,CH4,10.0,kg/TJ,163.91769078446998,kg -30c0002d-bc4d-3b8d-8f0b-ba7c48bb3268,SESCO,II.1.1,Entre Rios,AR-E,annual,2015,bioetanol combustion consumption by to the public,16.391769078447,TJ,N2O,0.6,kg/TJ,9.835061447068199,kg -a1009914-ab43-3828-bf97-7453c503ed76,SESCO,II.1.1,Formosa,AR-P,annual,2015,bioetanol combustion consumption by to the public,7.642501652898,TJ,CH4,10.0,kg/TJ,76.42501652898,kg -d7184bdd-b478-3485-91f7-26142fa8032f,SESCO,II.1.1,Formosa,AR-P,annual,2015,bioetanol combustion consumption by to the public,7.642501652898,TJ,N2O,0.6,kg/TJ,4.5855009917388,kg -ca2b3669-0a1d-3f85-b19a-eef79850a790,SESCO,II.1.1,Jujuy,AR-Y,annual,2015,bioetanol combustion consumption by to the public,0.274148711757,TJ,CH4,10.0,kg/TJ,2.74148711757,kg -f3b099e5-8196-389c-9d24-8844c97bd362,SESCO,II.1.1,Jujuy,AR-Y,annual,2015,bioetanol combustion consumption by to the public,0.274148711757,TJ,N2O,0.6,kg/TJ,0.1644892270542,kg -b57a4bea-66a2-37d9-a180-3f8ed77f9a75,SESCO,II.1.1,La Pampa,AR-L,annual,2015,bioetanol combustion consumption by to the public,2.192842668186,TJ,CH4,10.0,kg/TJ,21.92842668186,kg -474b03ff-f05f-36a9-8528-8945193b747b,SESCO,II.1.1,La Pampa,AR-L,annual,2015,bioetanol combustion consumption by to the public,2.192842668186,TJ,N2O,0.6,kg/TJ,1.3157056009116,kg -80f3cfa7-07aa-3dd1-bd69-db0c0a95a7b5,SESCO,II.1.1,La Rioja,AR-F,annual,2015,bioetanol combustion consumption by to the public,1.0761661434509997,TJ,CH4,10.0,kg/TJ,10.761661434509996,kg -d1e394e5-b72b-345c-af0f-cc6a886e3801,SESCO,II.1.1,La Rioja,AR-F,annual,2015,bioetanol combustion consumption by to the public,1.0761661434509997,TJ,N2O,0.6,kg/TJ,0.6456996860705998,kg -dd513797-6449-33f1-866b-29a7a86b5efa,SESCO,II.1.1,Mendoza,AR-M,annual,2015,bioetanol combustion consumption by to the public,7.741087868024999,TJ,CH4,10.0,kg/TJ,77.41087868025,kg -744dda1f-cc7a-3265-9d7b-b81890ce582a,SESCO,II.1.1,Mendoza,AR-M,annual,2015,bioetanol combustion consumption by to the public,7.741087868024999,TJ,N2O,0.6,kg/TJ,4.6446527208149995,kg -fa4a8992-5c90-31fb-863c-89e10e32142e,SESCO,II.1.1,Misiones,AR-N,annual,2015,bioetanol combustion consumption by to the public,7.578240322580999,TJ,CH4,10.0,kg/TJ,75.78240322580999,kg -f937c3a9-a75b-3318-b27f-aa11c6049ba5,SESCO,II.1.1,Misiones,AR-N,annual,2015,bioetanol combustion consumption by to the public,7.578240322580999,TJ,N2O,0.6,kg/TJ,4.546944193548599,kg -d0800a6a-bdb1-31ce-b053-7a856cf6d3fb,SESCO,II.1.1,Neuquén,AR-Q,annual,2015,bioetanol combustion consumption by to the public,6.115737947138999,TJ,CH4,10.0,kg/TJ,61.157379471389994,kg -9e141ce0-099c-3517-be1d-7109a8444a1c,SESCO,II.1.1,Neuquén,AR-Q,annual,2015,bioetanol combustion consumption by to the public,6.115737947138999,TJ,N2O,0.6,kg/TJ,3.6694427682833997,kg -8925275d-d33c-36f2-9733-06024feadba0,SESCO,II.1.1,Rio Negro,AR-R,annual,2015,bioetanol combustion consumption by to the public,6.505373992527,TJ,CH4,10.0,kg/TJ,65.05373992527,kg -9938ae91-c515-3c23-9d93-cd330d55253c,SESCO,II.1.1,Rio Negro,AR-R,annual,2015,bioetanol combustion consumption by to the public,6.505373992527,TJ,N2O,0.6,kg/TJ,3.9032243955161996,kg -5ea20eeb-21b1-39b5-af3f-2c0e6528e192,SESCO,II.1.1,Salta,AR-A,annual,2015,bioetanol combustion consumption by to the public,0.5406093625409999,TJ,CH4,10.0,kg/TJ,5.406093625409999,kg -a1702d9f-c53e-3f0f-bf9d-80d4e2fd14b2,SESCO,II.1.1,Salta,AR-A,annual,2015,bioetanol combustion consumption by to the public,0.5406093625409999,TJ,N2O,0.6,kg/TJ,0.3243656175245999,kg -469cbf11-969f-377b-aa76-9921eab42619,SESCO,II.1.1,San Juan,AR-J,annual,2015,bioetanol combustion consumption by to the public,4.708608054839999,TJ,CH4,10.0,kg/TJ,47.08608054839999,kg -97a43b2b-7569-391c-9e0d-9dbee3915ad5,SESCO,II.1.1,San Juan,AR-J,annual,2015,bioetanol combustion consumption by to the public,4.708608054839999,TJ,N2O,0.6,kg/TJ,2.8251648329039996,kg -ddc91851-518a-3338-935f-96a9285741df,SESCO,II.1.1,San Luis,AR-D,annual,2015,bioetanol combustion consumption by to the public,8.596718304183,TJ,CH4,10.0,kg/TJ,85.96718304183,kg -6a7657f7-e933-3fe2-a79c-bbcd33e22b24,SESCO,II.1.1,San Luis,AR-D,annual,2015,bioetanol combustion consumption by to the public,8.596718304183,TJ,N2O,0.6,kg/TJ,5.1580309825098,kg -aa1c2de3-e8ca-3239-974a-3f5f44961eea,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2015,bioetanol combustion consumption by to the public,2.016549308232,TJ,CH4,10.0,kg/TJ,20.165493082319998,kg -d03c50a4-dc73-33c2-bd88-27e59edf06e1,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2015,bioetanol combustion consumption by to the public,2.016549308232,TJ,N2O,0.6,kg/TJ,1.2099295849391998,kg -328790b5-44cc-3961-a757-3ddb7e0e5ccb,SESCO,II.1.1,Santa Fe,AR-S,annual,2015,bioetanol combustion consumption by to the public,41.883335455095,TJ,CH4,10.0,kg/TJ,418.83335455095,kg -3643a199-91a9-378a-979c-9c18e897a7ea,SESCO,II.1.1,Santa Fe,AR-S,annual,2015,bioetanol combustion consumption by to the public,41.883335455095,TJ,N2O,0.6,kg/TJ,25.130001273057,kg -e12089c0-92f7-3b23-af88-dcfca34bfbf7,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2015,bioetanol combustion consumption by to the public,5.462271170226,TJ,CH4,10.0,kg/TJ,54.62271170226,kg -2ff41c23-1d48-3e13-b3bd-2622091b4cfe,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2015,bioetanol combustion consumption by to the public,5.462271170226,TJ,N2O,0.6,kg/TJ,3.2773627021356,kg -f13db923-32a5-37b0-aa63-58776e8fdf21,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2015,bioetanol combustion consumption by to the public,4.053231677007,TJ,CH4,10.0,kg/TJ,40.53231677007,kg -47ee4fb6-0ca4-37a8-baa6-74de94cb1f23,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2015,bioetanol combustion consumption by to the public,4.053231677007,TJ,N2O,0.6,kg/TJ,2.4319390062042,kg -34178580-8de8-33d5-bbe1-0c8f47194b8b,SESCO,II.1.1,Tucuman,AR-T,annual,2015,bioetanol combustion consumption by to the public,1.349146087416,TJ,CH4,10.0,kg/TJ,13.49146087416,kg -bd9c41e7-b60a-337f-9834-16c42543b4ad,SESCO,II.1.1,Tucuman,AR-T,annual,2015,bioetanol combustion consumption by to the public,1.349146087416,TJ,N2O,0.6,kg/TJ,0.8094876524496,kg -9351aa57-8fe9-3fb8-8440-7cd842d931f5,SESCO,I.3.1,Buenos Aires,AR-B,annual,2015,bioetanol combustion consumption by petrochemical industries,31.487325209999998,TJ,CH4,10.0,kg/TJ,314.8732521,kg -edccf30e-a0e1-3810-8a3a-66520b562778,SESCO,I.3.1,Buenos Aires,AR-B,annual,2015,bioetanol combustion consumption by petrochemical industries,31.487325209999998,TJ,N2O,0.6,kg/TJ,18.892395125999997,kg -6ae3850f-695c-3f08-9ae1-e4c64f66f21c,SESCO,I.3.1,Buenos Aires,AR-B,annual,2015,bioetanol combustion consumption by petrochemical industries,2.71677159,TJ,CH4,10.0,kg/TJ,27.1677159,kg -0198c450-b0be-3b1f-8757-c2284fd26fa9,SESCO,I.3.1,Buenos Aires,AR-B,annual,2015,bioetanol combustion consumption by petrochemical industries,2.71677159,TJ,N2O,0.6,kg/TJ,1.630062954,kg -dfa7c749-3f92-3c8a-b4a7-dbf77352ecbb,SESCO,II.1.1,Buenos Aires,AR-B,annual,2015,bioetanol combustion consumption by freight transport,0.43522028999999995,TJ,CH4,10.0,kg/TJ,4.3522029,kg -3c52a800-4a48-3e4a-89a7-c4cc9d078b4b,SESCO,II.1.1,Buenos Aires,AR-B,annual,2015,bioetanol combustion consumption by freight transport,0.43522028999999995,TJ,N2O,0.6,kg/TJ,0.26113217399999994,kg -b6fe75da-21fd-3abb-a49a-8903353de518,SESCO,II.1.1,Capital Federal,AR-C,annual,2015,bioetanol combustion consumption by freight transport,0.35469494999999995,TJ,CH4,10.0,kg/TJ,3.5469494999999993,kg -5d4365f7-9122-387f-98e0-0fbe20a87c2d,SESCO,II.1.1,Capital Federal,AR-C,annual,2015,bioetanol combustion consumption by freight transport,0.35469494999999995,TJ,N2O,0.6,kg/TJ,0.21281696999999997,kg -cc9e8562-81d5-31ec-a028-1b974d641add,SESCO,II.1.1,Córdoba,AR-X,annual,2015,bioetanol combustion consumption by freight transport,0.04217994,TJ,CH4,10.0,kg/TJ,0.4217994,kg -0c8bbf8c-d2d9-3e00-9b33-a82189f34ff7,SESCO,II.1.1,Córdoba,AR-X,annual,2015,bioetanol combustion consumption by freight transport,0.04217994,TJ,N2O,0.6,kg/TJ,0.025307964,kg -93ac2963-1d1b-33c0-a677-7c0eb97a962f,SESCO,II.1.1,Santa Fe,AR-S,annual,2015,bioetanol combustion consumption by freight transport,0.9202895999999998,TJ,CH4,10.0,kg/TJ,9.202895999999999,kg -5f23f94c-44bc-33e0-9db3-78858b405a43,SESCO,II.1.1,Santa Fe,AR-S,annual,2015,bioetanol combustion consumption by freight transport,0.9202895999999998,TJ,N2O,0.6,kg/TJ,0.5521737599999998,kg -f9e3279f-20bd-3737-bbdc-5edfe6518af8,SESCO,II.1.1,Tucuman,AR-T,annual,2015,bioetanol combustion consumption by freight transport,0.0038345399999999996,TJ,CH4,10.0,kg/TJ,0.038345399999999995,kg -effc2640-cee5-3de8-bc14-265c7bca68d9,SESCO,II.1.1,Tucuman,AR-T,annual,2015,bioetanol combustion consumption by freight transport,0.0038345399999999996,TJ,N2O,0.6,kg/TJ,0.0023007239999999997,kg -d552f84e-f35c-3659-874d-049f7f481325,SESCO,II.1.1,Buenos Aires,AR-B,annual,2015,bioetanol combustion consumption by freight transport,0.31059774,TJ,CH4,10.0,kg/TJ,3.1059774,kg -1714f9fb-80b1-3593-8994-3a06fe649e04,SESCO,II.1.1,Buenos Aires,AR-B,annual,2015,bioetanol combustion consumption by freight transport,0.31059774,TJ,N2O,0.6,kg/TJ,0.186358644,kg -f3467ede-d28a-335d-a865-fea9f4a56857,SESCO,II.1.1,Capital Federal,AR-C,annual,2015,bioetanol combustion consumption by freight transport,0.33935678999999996,TJ,CH4,10.0,kg/TJ,3.3935679,kg -7f09ca6f-3e46-3f49-98da-15be9458732a,SESCO,II.1.1,Capital Federal,AR-C,annual,2015,bioetanol combustion consumption by freight transport,0.33935678999999996,TJ,N2O,0.6,kg/TJ,0.20361407399999998,kg -f3f13ef2-37c7-39d4-b2e3-7c494a1bd37a,SESCO,II.1.1,Córdoba,AR-X,annual,2015,bioetanol combustion consumption by freight transport,0.05368356,TJ,CH4,10.0,kg/TJ,0.5368356,kg -a21293e2-33d6-3fb0-ae89-3f0439020bd9,SESCO,II.1.1,Córdoba,AR-X,annual,2015,bioetanol combustion consumption by freight transport,0.05368356,TJ,N2O,0.6,kg/TJ,0.032210136,kg -f38fc082-4e13-3538-a7a0-f77483134940,SESCO,II.1.1,Santa Fe,AR-S,annual,2015,bioetanol combustion consumption by freight transport,0.05176628999999999,TJ,CH4,10.0,kg/TJ,0.5176628999999999,kg -d171df26-b08b-3196-aedf-5e2ede81eac0,SESCO,II.1.1,Santa Fe,AR-S,annual,2015,bioetanol combustion consumption by freight transport,0.05176628999999999,TJ,N2O,0.6,kg/TJ,0.031059773999999995,kg -9a223517-e8d3-30ae-991d-0b2d199ddb41,SESCO,II.1.1,Buenos Aires,AR-B,annual,2015,bioetanol combustion consumption by public passenger transport,0.015338159999999998,TJ,CH4,10.0,kg/TJ,0.15338159999999998,kg -f16fa0b0-ed21-3c82-81d1-ef18e2f7f7ef,SESCO,II.1.1,Buenos Aires,AR-B,annual,2015,bioetanol combustion consumption by public passenger transport,0.015338159999999998,TJ,N2O,0.6,kg/TJ,0.009202895999999999,kg -471fdcb0-c268-3caa-b1ca-2448f7434fdc,SESCO,II.1.1,Capital Federal,AR-C,annual,2015,bioetanol combustion consumption by public passenger transport,0.00575181,TJ,CH4,10.0,kg/TJ,0.0575181,kg -a4650199-5b08-353f-adbb-45eb52c4e9a0,SESCO,II.1.1,Capital Federal,AR-C,annual,2015,bioetanol combustion consumption by public passenger transport,0.00575181,TJ,N2O,0.6,kg/TJ,0.0034510860000000003,kg -2191c35a-a16d-3b1e-b959-14bd8b9bb1e7,SESCO,II.5.1,Córdoba,AR-X,annual,2015,bioetanol combustion consumption by agriculture machines,0.392184480672,TJ,CH4,10.0,kg/TJ,3.9218448067200002,kg -6888a96b-7d43-332d-b520-0784181bb0a3,SESCO,II.5.1,Córdoba,AR-X,annual,2015,bioetanol combustion consumption by agriculture machines,0.392184480672,TJ,N2O,0.6,kg/TJ,0.2353106884032,kg -8348aa2b-ca84-3fee-bf6c-e94139b05011,SESCO,II.5.1,Santa Fe,AR-S,annual,2015,bioetanol combustion consumption by agriculture machines,0.8204897529630001,TJ,CH4,10.0,kg/TJ,8.204897529630001,kg -3c3cf2ed-b6c8-36b4-b374-213167cdc9e5,SESCO,II.5.1,Santa Fe,AR-S,annual,2015,bioetanol combustion consumption by agriculture machines,0.8204897529630001,TJ,N2O,0.6,kg/TJ,0.49229385177780005,kg -0d9887b0-3ed4-30f2-81b6-85a6ebc1b3c8,SESCO,II.5.1,Santiago del Estero,AR-G,annual,2015,bioetanol combustion consumption by agriculture machines,0.897530646465,TJ,CH4,10.0,kg/TJ,8.97530646465,kg -939c05df-f720-3f40-918c-581f470e8813,SESCO,II.5.1,Santiago del Estero,AR-G,annual,2015,bioetanol combustion consumption by agriculture machines,0.897530646465,TJ,N2O,0.6,kg/TJ,0.538518387879,kg -9cc0cdcc-8c7d-33c7-949d-d010cc1196aa,SESCO,II.5.1,Santa Fe,AR-S,annual,2015,bioetanol combustion consumption by agriculture machines,0.06451019196300001,TJ,CH4,10.0,kg/TJ,0.6451019196300001,kg -4bc860fc-04f5-362a-9b29-f40c868af162,SESCO,II.5.1,Santa Fe,AR-S,annual,2015,bioetanol combustion consumption by agriculture machines,0.06451019196300001,TJ,N2O,0.6,kg/TJ,0.0387061151778,kg -9efeb790-984e-34ad-9edc-9619f883735d,SESCO,II.1.1,Buenos Aires,AR-B,annual,2015,bioetanol combustion consumption by to the public,114.244219093302,TJ,CH4,10.0,kg/TJ,1142.44219093302,kg -9a4913d1-b675-3db9-b3c2-77a1ffe0509d,SESCO,II.1.1,Buenos Aires,AR-B,annual,2015,bioetanol combustion consumption by to the public,114.244219093302,TJ,N2O,0.6,kg/TJ,68.5465314559812,kg -997473b4-2f26-3878-b5c8-96394c2a8c5e,SESCO,II.1.1,Capital Federal,AR-C,annual,2015,bioetanol combustion consumption by to the public,13.320355455098998,TJ,CH4,10.0,kg/TJ,133.20355455098996,kg -ad090ac2-ff8c-39db-9d14-5ea6c26eff0f,SESCO,II.1.1,Capital Federal,AR-C,annual,2015,bioetanol combustion consumption by to the public,13.320355455098998,TJ,N2O,0.6,kg/TJ,7.992213273059399,kg -c5569aba-3cf5-3a85-bc3a-d015ff216778,SESCO,II.1.1,Catamarca,AR-K,annual,2015,bioetanol combustion consumption by to the public,11.026421466803999,TJ,CH4,10.0,kg/TJ,110.26421466803998,kg -72bfdbf3-b991-31e4-a4e9-9bddceaffefd,SESCO,II.1.1,Catamarca,AR-K,annual,2015,bioetanol combustion consumption by to the public,11.026421466803999,TJ,N2O,0.6,kg/TJ,6.615852880082399,kg -62ac9626-fff6-314b-89b1-58889e3da889,SESCO,II.1.1,Chaco,AR-H,annual,2015,bioetanol combustion consumption by to the public,18.588552886845,TJ,CH4,10.0,kg/TJ,185.88552886845002,kg -27d7c08c-f2c1-35f2-a11a-36cd424e6dcd,SESCO,II.1.1,Chaco,AR-H,annual,2015,bioetanol combustion consumption by to the public,18.588552886845,TJ,N2O,0.6,kg/TJ,11.153131732107001,kg -9eb094bc-20ff-3f97-b629-8e9dde38def1,SESCO,II.1.1,Corrientes,AR-W,annual,2015,bioetanol combustion consumption by to the public,19.517209069670997,TJ,CH4,10.0,kg/TJ,195.17209069670997,kg -24a9f680-6c97-350a-af15-407baa1420e6,SESCO,II.1.1,Corrientes,AR-W,annual,2015,bioetanol combustion consumption by to the public,19.517209069670997,TJ,N2O,0.6,kg/TJ,11.710325441802597,kg -53f5e936-5cfd-3b25-9a1d-b78236d5fd60,SESCO,II.1.1,Córdoba,AR-X,annual,2015,bioetanol combustion consumption by to the public,52.953602202621,TJ,CH4,10.0,kg/TJ,529.53602202621,kg -a02c17bd-8dac-320d-aad3-0429bf221391,SESCO,II.1.1,Córdoba,AR-X,annual,2015,bioetanol combustion consumption by to the public,52.953602202621,TJ,N2O,0.6,kg/TJ,31.772161321572597,kg -d751eb41-c898-3941-aab1-2add45d3b610,SESCO,II.1.1,Entre Rios,AR-E,annual,2015,bioetanol combustion consumption by to the public,26.641544347467,TJ,CH4,10.0,kg/TJ,266.41544347467,kg -65370a7f-438a-3415-b4bd-6d26da84277e,SESCO,II.1.1,Entre Rios,AR-E,annual,2015,bioetanol combustion consumption by to the public,26.641544347467,TJ,N2O,0.6,kg/TJ,15.9849266084802,kg -5641902f-8e21-3fd5-86b0-6f6787f95c56,SESCO,II.1.1,Jujuy,AR-Y,annual,2015,bioetanol combustion consumption by to the public,3.617752555557,TJ,CH4,10.0,kg/TJ,36.17752555557,kg -bef2b9ed-e1af-38dc-b411-98480c8c3f92,SESCO,II.1.1,Jujuy,AR-Y,annual,2015,bioetanol combustion consumption by to the public,3.617752555557,TJ,N2O,0.6,kg/TJ,2.1706515333342,kg -9cd9c6c4-6b1f-312e-b6f2-e3584562df91,SESCO,II.1.1,La Pampa,AR-L,annual,2015,bioetanol combustion consumption by to the public,0.8325355769189999,TJ,CH4,10.0,kg/TJ,8.325355769189999,kg -1ebda260-4665-3922-a823-066745c98d54,SESCO,II.1.1,La Pampa,AR-L,annual,2015,bioetanol combustion consumption by to the public,0.8325355769189999,TJ,N2O,0.6,kg/TJ,0.4995213461513999,kg -680cf062-8eb8-396c-a3ea-be1c34d2e6a6,SESCO,II.1.1,La Rioja,AR-F,annual,2015,bioetanol combustion consumption by to the public,3.427052445369,TJ,CH4,10.0,kg/TJ,34.27052445369,kg -5d0693b1-4cbb-3d42-8a1b-90eb871ca1b4,SESCO,II.1.1,La Rioja,AR-F,annual,2015,bioetanol combustion consumption by to the public,3.427052445369,TJ,N2O,0.6,kg/TJ,2.0562314672214,kg -edce10e8-481c-3093-8b6f-a599c37dea7c,SESCO,II.1.1,Mendoza,AR-M,annual,2015,bioetanol combustion consumption by to the public,18.463488597836996,TJ,CH4,10.0,kg/TJ,184.63488597836997,kg -bc2ba191-5a25-3d4e-92e9-85ef8e38c1aa,SESCO,II.1.1,Mendoza,AR-M,annual,2015,bioetanol combustion consumption by to the public,18.463488597836996,TJ,N2O,0.6,kg/TJ,11.078093158702197,kg -825daf90-7105-3d96-b5b5-dc745e69532c,SESCO,II.1.1,Misiones,AR-N,annual,2015,bioetanol combustion consumption by to the public,16.033527370673998,TJ,CH4,10.0,kg/TJ,160.33527370673997,kg -d422ec0b-913a-3f83-b7b2-89844cf56268,SESCO,II.1.1,Misiones,AR-N,annual,2015,bioetanol combustion consumption by to the public,16.033527370673998,TJ,N2O,0.6,kg/TJ,9.620116422404399,kg -dec5c2dc-9385-330e-99ec-e1b46c66a519,SESCO,II.1.1,Salta,AR-A,annual,2015,bioetanol combustion consumption by to the public,3.142941406965,TJ,CH4,10.0,kg/TJ,31.42941406965,kg -322cce4b-e4dc-30af-a5a1-a74d2aaf9ab8,SESCO,II.1.1,Salta,AR-A,annual,2015,bioetanol combustion consumption by to the public,3.142941406965,TJ,N2O,0.6,kg/TJ,1.8857648441789998,kg -29702cd1-f516-3a75-8107-6d95d66b60c4,SESCO,II.1.1,San Juan,AR-J,annual,2015,bioetanol combustion consumption by to the public,15.797604612995997,TJ,CH4,10.0,kg/TJ,157.97604612995997,kg -1decd549-f9dc-3901-8534-35b1f89fc1b9,SESCO,II.1.1,San Juan,AR-J,annual,2015,bioetanol combustion consumption by to the public,15.797604612995997,TJ,N2O,0.6,kg/TJ,9.478562767797598,kg -f220923a-80ff-3508-8c68-3180fe6268d9,SESCO,II.1.1,San Luis,AR-D,annual,2015,bioetanol combustion consumption by to the public,8.928961255575,TJ,CH4,10.0,kg/TJ,89.28961255575001,kg -6b55bfe6-fc7e-34e1-a0cc-7b11a51f85f2,SESCO,II.1.1,San Luis,AR-D,annual,2015,bioetanol combustion consumption by to the public,8.928961255575,TJ,N2O,0.6,kg/TJ,5.357376753345,kg -308080e1-68e6-3139-bf65-0d253a0f191f,SESCO,II.1.1,Santa Fe,AR-S,annual,2015,bioetanol combustion consumption by to the public,64.170316551465,TJ,CH4,10.0,kg/TJ,641.7031655146501,kg -fc46231b-5e35-32d6-bbc1-e0acf3d61563,SESCO,II.1.1,Santa Fe,AR-S,annual,2015,bioetanol combustion consumption by to the public,64.170316551465,TJ,N2O,0.6,kg/TJ,38.502189930879005,kg -118c2970-74a6-3e0d-a677-f20706402b1a,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2015,bioetanol combustion consumption by to the public,11.772097427097,TJ,CH4,10.0,kg/TJ,117.72097427097,kg -bd491730-3277-31e5-932f-82ed4ee41235,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2015,bioetanol combustion consumption by to the public,11.772097427097,TJ,N2O,0.6,kg/TJ,7.0632584562581995,kg -2673e50e-aaa5-3d47-8532-718fd84dbc72,SESCO,II.1.1,Tucuman,AR-T,annual,2015,bioetanol combustion consumption by to the public,13.020050387367,TJ,CH4,10.0,kg/TJ,130.20050387367002,kg -2e5f17b1-0421-33b8-b18f-553b37f00312,SESCO,II.1.1,Tucuman,AR-T,annual,2015,bioetanol combustion consumption by to the public,13.020050387367,TJ,N2O,0.6,kg/TJ,7.8120302324202,kg -25497de8-5933-3a17-bc99-a77224b40f39,SESCO,II.1.1,Buenos Aires,AR-B,annual,2015,bioetanol combustion consumption by to the public,22.142143043216997,TJ,CH4,10.0,kg/TJ,221.42143043216998,kg -fd0ff609-83ff-36a7-b545-1be59464c245,SESCO,II.1.1,Buenos Aires,AR-B,annual,2015,bioetanol combustion consumption by to the public,22.142143043216997,TJ,N2O,0.6,kg/TJ,13.285285825930197,kg -dfc5dcca-24ff-371e-9ea9-30f299717f57,SESCO,II.1.1,Capital Federal,AR-C,annual,2015,bioetanol combustion consumption by to the public,4.338132438924,TJ,CH4,10.0,kg/TJ,43.38132438924,kg -64cdf1a4-e8a9-3c4a-891d-38b2e879d5f0,SESCO,II.1.1,Capital Federal,AR-C,annual,2015,bioetanol combustion consumption by to the public,4.338132438924,TJ,N2O,0.6,kg/TJ,2.6028794633544,kg -7a743371-c0bd-3ce1-95be-96b175e9c25a,SESCO,II.1.1,Catamarca,AR-K,annual,2015,bioetanol combustion consumption by to the public,1.1876996828879998,TJ,CH4,10.0,kg/TJ,11.876996828879998,kg -efc84dee-7b24-3732-ac51-7fdd9cfb6fa2,SESCO,II.1.1,Catamarca,AR-K,annual,2015,bioetanol combustion consumption by to the public,1.1876996828879998,TJ,N2O,0.6,kg/TJ,0.7126198097327998,kg -c077ff60-a231-3ec2-9112-02a2f78065a2,SESCO,II.1.1,Chaco,AR-H,annual,2015,bioetanol combustion consumption by to the public,1.9762005528089999,TJ,CH4,10.0,kg/TJ,19.76200552809,kg -c1c34b8b-37b4-3df2-b95d-6b8416302faa,SESCO,II.1.1,Chaco,AR-H,annual,2015,bioetanol combustion consumption by to the public,1.9762005528089999,TJ,N2O,0.6,kg/TJ,1.1857203316854,kg -dccc2aa6-467d-3612-b6cd-6fe52b3065b9,SESCO,II.1.1,Corrientes,AR-W,annual,2015,bioetanol combustion consumption by to the public,4.744139861114999,TJ,CH4,10.0,kg/TJ,47.44139861114999,kg -02f34783-ce4e-3fb7-b409-5bfff4b65977,SESCO,II.1.1,Corrientes,AR-W,annual,2015,bioetanol combustion consumption by to the public,4.744139861114999,TJ,N2O,0.6,kg/TJ,2.8464839166689995,kg -02ba2285-7724-3670-bb41-62c5339e13e1,SESCO,II.1.1,Córdoba,AR-X,annual,2015,bioetanol combustion consumption by to the public,10.264156519562999,TJ,CH4,10.0,kg/TJ,102.64156519563,kg -f2a1fba6-8a06-3728-9eac-0d6051e000a1,SESCO,II.1.1,Córdoba,AR-X,annual,2015,bioetanol combustion consumption by to the public,10.264156519562999,TJ,N2O,0.6,kg/TJ,6.158493911737799,kg -19e99da8-8d90-3132-b149-2718b8c23151,SESCO,II.1.1,Entre Rios,AR-E,annual,2015,bioetanol combustion consumption by to the public,5.816048323076999,TJ,CH4,10.0,kg/TJ,58.16048323076999,kg -261b868e-f9a7-3aa9-bd40-2075d2efa749,SESCO,II.1.1,Entre Rios,AR-E,annual,2015,bioetanol combustion consumption by to the public,5.816048323076999,TJ,N2O,0.6,kg/TJ,3.4896289938461993,kg -d92ce651-7cdd-3c3c-9e93-37a9586551f4,SESCO,II.1.1,Jujuy,AR-Y,annual,2015,bioetanol combustion consumption by to the public,0.12576466773899997,TJ,CH4,10.0,kg/TJ,1.2576466773899997,kg -6c1cb373-afbd-3528-961a-8471d90fecd6,SESCO,II.1.1,Jujuy,AR-Y,annual,2015,bioetanol combustion consumption by to the public,0.12576466773899997,TJ,N2O,0.6,kg/TJ,0.07545880064339998,kg -3a67a268-45be-3c86-b7a1-b9cad579df14,SESCO,II.1.1,La Pampa,AR-L,annual,2015,bioetanol combustion consumption by to the public,0.16962432798599997,TJ,CH4,10.0,kg/TJ,1.6962432798599996,kg -8e0e478d-d7ff-32be-a616-68d71440d2e9,SESCO,II.1.1,La Pampa,AR-L,annual,2015,bioetanol combustion consumption by to the public,0.16962432798599997,TJ,N2O,0.6,kg/TJ,0.10177459679159997,kg -8d867a97-fc1a-37cf-8664-a5f51df90a46,SESCO,II.1.1,La Rioja,AR-F,annual,2015,bioetanol combustion consumption by to the public,0.412077499011,TJ,CH4,10.0,kg/TJ,4.12077499011,kg -ccd055bc-70ad-3774-9a98-f554d3351314,SESCO,II.1.1,La Rioja,AR-F,annual,2015,bioetanol combustion consumption by to the public,0.412077499011,TJ,N2O,0.6,kg/TJ,0.24724649940659998,kg -0e91a490-8ed9-3eca-bfe9-a0b103c7710c,SESCO,II.1.1,Mendoza,AR-M,annual,2015,bioetanol combustion consumption by to the public,3.135959476533,TJ,CH4,10.0,kg/TJ,31.359594765329998,kg -223de2b4-4ebf-38f1-a802-0f459cac5b48,SESCO,II.1.1,Mendoza,AR-M,annual,2015,bioetanol combustion consumption by to the public,3.135959476533,TJ,N2O,0.6,kg/TJ,1.8815756859197998,kg -db15c609-f693-3306-af5e-5501efffa22d,SESCO,II.1.1,Misiones,AR-N,annual,2015,bioetanol combustion consumption by to the public,2.5271852219549995,TJ,CH4,10.0,kg/TJ,25.271852219549995,kg -052f297a-1e0e-3d61-b5bc-7fe2fe6083ce,SESCO,II.1.1,Misiones,AR-N,annual,2015,bioetanol combustion consumption by to the public,2.5271852219549995,TJ,N2O,0.6,kg/TJ,1.5163111331729997,kg -47fbb211-7a42-3cfc-9612-b13746ac2f65,SESCO,II.1.1,Salta,AR-A,annual,2015,bioetanol combustion consumption by to the public,0.10663644840299998,TJ,CH4,10.0,kg/TJ,1.0663644840299997,kg -f7ff5b8e-7b59-3092-936a-907b02ee536c,SESCO,II.1.1,Salta,AR-A,annual,2015,bioetanol combustion consumption by to the public,0.10663644840299998,TJ,N2O,0.6,kg/TJ,0.06398186904179998,kg -e5d1de16-2463-3042-9353-0dd8dbbcb9fa,SESCO,II.1.1,San Juan,AR-J,annual,2015,bioetanol combustion consumption by to the public,3.306533236623,TJ,CH4,10.0,kg/TJ,33.065332366229995,kg -0848c8d1-5bb6-3918-8709-b176a3f6e207,SESCO,II.1.1,San Juan,AR-J,annual,2015,bioetanol combustion consumption by to the public,3.306533236623,TJ,N2O,0.6,kg/TJ,1.9839199419737998,kg -18b557e7-f310-39c2-a724-2a6d42d0fc48,SESCO,II.1.1,San Luis,AR-D,annual,2015,bioetanol combustion consumption by to the public,2.5064608753439996,TJ,CH4,10.0,kg/TJ,25.064608753439998,kg -3654152d-c2b2-3467-861d-bd2f7e2dec35,SESCO,II.1.1,San Luis,AR-D,annual,2015,bioetanol combustion consumption by to the public,2.5064608753439996,TJ,N2O,0.6,kg/TJ,1.5038765252063997,kg -b36a619a-9bc0-380d-beca-4fbf5325f5dd,SESCO,II.1.1,Santa Fe,AR-S,annual,2015,bioetanol combustion consumption by to the public,13.792267691450999,TJ,CH4,10.0,kg/TJ,137.92267691451,kg -224c356c-1ff4-3450-af2e-1fbfe233982b,SESCO,II.1.1,Santa Fe,AR-S,annual,2015,bioetanol combustion consumption by to the public,13.792267691450999,TJ,N2O,0.6,kg/TJ,8.275360614870598,kg -7ee8cffd-9c11-3cd3-ae61-426481f55108,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2015,bioetanol combustion consumption by to the public,1.6097178433949997,TJ,CH4,10.0,kg/TJ,16.097178433949995,kg -752102a4-862b-32f7-8a7c-4a93061d0923,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2015,bioetanol combustion consumption by to the public,1.6097178433949997,TJ,N2O,0.6,kg/TJ,0.9658307060369997,kg -6a5f446a-ee99-3954-9419-28fb94e81e38,SESCO,II.1.1,Tucuman,AR-T,annual,2015,bioetanol combustion consumption by to the public,1.540406615625,TJ,CH4,10.0,kg/TJ,15.40406615625,kg -b5535f8d-f274-3d7a-92cf-76d27ecc39c7,SESCO,II.1.1,Tucuman,AR-T,annual,2015,bioetanol combustion consumption by to the public,1.540406615625,TJ,N2O,0.6,kg/TJ,0.924243969375,kg -31bc5bad-5c80-351b-8b43-6aacfe4f27d1,SESCO,II.5.1,Buenos Aires,AR-B,annual,2015,bioetanol combustion consumption by agriculture machines,0.49439491127999996,TJ,CH4,10.0,kg/TJ,4.9439491127999995,kg -8e32500f-4f46-3aef-b5e9-0309e0d958f1,SESCO,II.5.1,Buenos Aires,AR-B,annual,2015,bioetanol combustion consumption by agriculture machines,0.49439491127999996,TJ,N2O,0.6,kg/TJ,0.29663694676799995,kg -25470cbf-3651-305b-93c2-2202fafce647,SESCO,II.5.1,Rio Negro,AR-R,annual,2015,bioetanol combustion consumption by agriculture machines,0.013167810359999999,TJ,CH4,10.0,kg/TJ,0.13167810359999998,kg -4af36fec-5bd6-3b35-94a7-ada685a68ef3,SESCO,II.5.1,Rio Negro,AR-R,annual,2015,bioetanol combustion consumption by agriculture machines,0.013167810359999999,TJ,N2O,0.6,kg/TJ,0.007900686216,kg -a15272fc-acca-3311-8d06-5000620898cc,SESCO,II.1.1,Buenos Aires,AR-B,annual,2015,bioetanol combustion consumption by to the public,262.29304839140997,TJ,CH4,10.0,kg/TJ,2622.9304839140996,kg -261d0478-2101-382b-bcdc-d39a104416da,SESCO,II.1.1,Buenos Aires,AR-B,annual,2015,bioetanol combustion consumption by to the public,262.29304839140997,TJ,N2O,0.6,kg/TJ,157.37582903484596,kg -c87223e9-fb63-37e7-a7cd-6e8e93df7a31,SESCO,II.1.1,Capital Federal,AR-C,annual,2015,bioetanol combustion consumption by to the public,27.80533663209,TJ,CH4,10.0,kg/TJ,278.0533663209,kg -6a3b1b82-f00b-3d71-849e-0fdc05e9a123,SESCO,II.1.1,Capital Federal,AR-C,annual,2015,bioetanol combustion consumption by to the public,27.80533663209,TJ,N2O,0.6,kg/TJ,16.683201979254,kg -20cbff6e-ac4c-3d56-8cbb-25513b3e382c,SESCO,II.1.1,Chaco,AR-H,annual,2015,bioetanol combustion consumption by to the public,0.06483248504999999,TJ,CH4,10.0,kg/TJ,0.6483248504999999,kg -7f462fb2-6c67-3864-9a37-992a5b7d5844,SESCO,II.1.1,Chaco,AR-H,annual,2015,bioetanol combustion consumption by to the public,0.06483248504999999,TJ,N2O,0.6,kg/TJ,0.03889949102999999,kg -7ad09442-73b1-3716-b839-9795e9cc9530,SESCO,II.1.1,Chubut,AR-U,annual,2015,bioetanol combustion consumption by to the public,89.56849289814,TJ,CH4,10.0,kg/TJ,895.6849289813999,kg -ce8eb8fc-6a08-39ad-8706-893cb64158e2,SESCO,II.1.1,Chubut,AR-U,annual,2015,bioetanol combustion consumption by to the public,89.56849289814,TJ,N2O,0.6,kg/TJ,53.74109573888399,kg -3ec1e9e1-976a-3782-8434-bd652d8826c7,SESCO,II.1.1,Córdoba,AR-X,annual,2015,bioetanol combustion consumption by to the public,31.219777850579995,TJ,CH4,10.0,kg/TJ,312.19777850579993,kg -b1254f06-44be-3012-8c41-d187979aa62e,SESCO,II.1.1,Córdoba,AR-X,annual,2015,bioetanol combustion consumption by to the public,31.219777850579995,TJ,N2O,0.6,kg/TJ,18.731866710347997,kg -8440f11e-e9e3-3ed1-a62c-54d35c92886b,SESCO,II.1.1,Entre Rios,AR-E,annual,2015,bioetanol combustion consumption by to the public,6.769322444429999,TJ,CH4,10.0,kg/TJ,67.6932244443,kg -419f98a4-77d4-34cc-8a67-880f660f8bcd,SESCO,II.1.1,Entre Rios,AR-E,annual,2015,bioetanol combustion consumption by to the public,6.769322444429999,TJ,N2O,0.6,kg/TJ,4.061593466658,kg -eaa6fab4-9f86-3f61-8f36-fd99436679ce,SESCO,II.1.1,La Pampa,AR-L,annual,2015,bioetanol combustion consumption by to the public,13.065420472919998,TJ,CH4,10.0,kg/TJ,130.6542047292,kg -814fbf1e-71aa-3a5a-9564-7de46c1bee89,SESCO,II.1.1,La Pampa,AR-L,annual,2015,bioetanol combustion consumption by to the public,13.065420472919998,TJ,N2O,0.6,kg/TJ,7.839252283751998,kg -2e36fd15-ada2-3a2d-9cee-4480eaf25ee5,SESCO,II.1.1,Mendoza,AR-M,annual,2015,bioetanol combustion consumption by to the public,1.2512391610499998,TJ,CH4,10.0,kg/TJ,12.512391610499998,kg -d1d09797-d576-3151-86a6-ff0ad55b0c06,SESCO,II.1.1,Mendoza,AR-M,annual,2015,bioetanol combustion consumption by to the public,1.2512391610499998,TJ,N2O,0.6,kg/TJ,0.7507434966299998,kg -242869ef-98cb-3912-b269-7a5a4c2d2f4c,SESCO,II.1.1,Neuquén,AR-Q,annual,2015,bioetanol combustion consumption by to the public,34.965252989999996,TJ,CH4,10.0,kg/TJ,349.6525299,kg -4e56c1fc-072a-3b1e-9122-cf5425c0c4f5,SESCO,II.1.1,Neuquén,AR-Q,annual,2015,bioetanol combustion consumption by to the public,34.965252989999996,TJ,N2O,0.6,kg/TJ,20.979151793999996,kg -cf7a9a80-7d21-3cbe-bace-e0a617b30ab0,SESCO,II.1.1,Rio Negro,AR-R,annual,2015,bioetanol combustion consumption by to the public,73.57632525935999,TJ,CH4,10.0,kg/TJ,735.7632525935999,kg -f952bb79-e2ec-3d6c-9750-9ac25c25bc98,SESCO,II.1.1,Rio Negro,AR-R,annual,2015,bioetanol combustion consumption by to the public,73.57632525935999,TJ,N2O,0.6,kg/TJ,44.14579515561599,kg -ff35a464-ddf3-318c-8850-8b96d9c60d4d,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2015,bioetanol combustion consumption by to the public,51.78642516954,TJ,CH4,10.0,kg/TJ,517.8642516954001,kg -cd914b5d-8683-3464-ae77-c42a56f1e60b,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2015,bioetanol combustion consumption by to the public,51.78642516954,TJ,N2O,0.6,kg/TJ,31.071855101724,kg -50c86f1e-9472-3d95-9902-a90376cc9b03,SESCO,II.1.1,Santa Fe,AR-S,annual,2015,bioetanol combustion consumption by to the public,33.50324258604,TJ,CH4,10.0,kg/TJ,335.03242586040005,kg -6976942e-7d6c-3339-8479-3015abb85ba4,SESCO,II.1.1,Santa Fe,AR-S,annual,2015,bioetanol combustion consumption by to the public,33.50324258604,TJ,N2O,0.6,kg/TJ,20.101945551624002,kg -2902a354-359e-3059-9a2d-6df9ce23c50a,SESCO,II.1.1,Buenos Aires,AR-B,annual,2015,bioetanol combustion consumption by to the public,74.08041963957,TJ,CH4,10.0,kg/TJ,740.8041963956999,kg -8ee179a8-53aa-3a89-ab28-66001c099594,SESCO,II.1.1,Buenos Aires,AR-B,annual,2015,bioetanol combustion consumption by to the public,74.08041963957,TJ,N2O,0.6,kg/TJ,44.448251783741995,kg -66ad78e0-106c-3da3-8ace-e0f11437d07b,SESCO,II.1.1,Capital Federal,AR-C,annual,2015,bioetanol combustion consumption by to the public,14.716069154909999,TJ,CH4,10.0,kg/TJ,147.1606915491,kg -d0feecc5-bf59-340f-8bf5-5a2bd6b875a0,SESCO,II.1.1,Capital Federal,AR-C,annual,2015,bioetanol combustion consumption by to the public,14.716069154909999,TJ,N2O,0.6,kg/TJ,8.829641492946,kg -31e9ab15-69c1-33ca-9e3a-3577ff70053f,SESCO,II.1.1,Chubut,AR-U,annual,2015,bioetanol combustion consumption by to the public,18.57986669511,TJ,CH4,10.0,kg/TJ,185.7986669511,kg -4875b47a-cf28-3903-8dde-0caea1a466ce,SESCO,II.1.1,Chubut,AR-U,annual,2015,bioetanol combustion consumption by to the public,18.57986669511,TJ,N2O,0.6,kg/TJ,11.147920017066,kg -00170451-b009-350b-8fbf-3f47077be5dd,SESCO,II.1.1,Córdoba,AR-X,annual,2015,bioetanol combustion consumption by to the public,7.668834589439999,TJ,CH4,10.0,kg/TJ,76.68834589439999,kg -edaacd73-0f2b-33ec-a17b-8bf87d06a9ca,SESCO,II.1.1,Córdoba,AR-X,annual,2015,bioetanol combustion consumption by to the public,7.668834589439999,TJ,N2O,0.6,kg/TJ,4.601300753664,kg -86569d58-7193-315f-8faa-4e6979402f2c,SESCO,II.1.1,Entre Rios,AR-E,annual,2015,bioetanol combustion consumption by to the public,2.26611535923,TJ,CH4,10.0,kg/TJ,22.6611535923,kg -71aca02b-4226-38fc-9964-7ef115e0a8fe,SESCO,II.1.1,Entre Rios,AR-E,annual,2015,bioetanol combustion consumption by to the public,2.26611535923,TJ,N2O,0.6,kg/TJ,1.359669215538,kg -f8741bb3-26f1-3d5b-b1f9-6f97f3e77712,SESCO,II.1.1,La Pampa,AR-L,annual,2015,bioetanol combustion consumption by to the public,3.9161543493599997,TJ,CH4,10.0,kg/TJ,39.1615434936,kg -b73fe742-68b4-37b4-a061-6cccd5a46bf8,SESCO,II.1.1,La Pampa,AR-L,annual,2015,bioetanol combustion consumption by to the public,3.9161543493599997,TJ,N2O,0.6,kg/TJ,2.3496926096159996,kg -78cd1391-95b4-334d-8966-46b2f6457fbc,SESCO,II.1.1,Mendoza,AR-M,annual,2015,bioetanol combustion consumption by to the public,0.23305758939,TJ,CH4,10.0,kg/TJ,2.3305758939,kg -80fe8dc4-653e-3b03-9184-1aaf2ad43d23,SESCO,II.1.1,Mendoza,AR-M,annual,2015,bioetanol combustion consumption by to the public,0.23305758939,TJ,N2O,0.6,kg/TJ,0.139834553634,kg -22d7cdd9-f744-3603-b166-8460ce06d05a,SESCO,II.1.1,Neuquén,AR-Q,annual,2015,bioetanol combustion consumption by to the public,13.52090438955,TJ,CH4,10.0,kg/TJ,135.2090438955,kg -ee67d6e8-700a-3de1-97be-bda7335860a5,SESCO,II.1.1,Neuquén,AR-Q,annual,2015,bioetanol combustion consumption by to the public,13.52090438955,TJ,N2O,0.6,kg/TJ,8.11254263373,kg -bc3c244a-c217-3141-8e22-9685ebbdd045,SESCO,II.1.1,Rio Negro,AR-R,annual,2015,bioetanol combustion consumption by to the public,14.0965167753,TJ,CH4,10.0,kg/TJ,140.965167753,kg -b383840c-8796-3117-9a5f-dfd20952db59,SESCO,II.1.1,Rio Negro,AR-R,annual,2015,bioetanol combustion consumption by to the public,14.0965167753,TJ,N2O,0.6,kg/TJ,8.45791006518,kg -707d55b1-653a-39fc-85fc-b2e48a9e117b,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2015,bioetanol combustion consumption by to the public,11.63120281488,TJ,CH4,10.0,kg/TJ,116.3120281488,kg -87e1449e-b52d-3ab6-b592-925ae573c726,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2015,bioetanol combustion consumption by to the public,11.63120281488,TJ,N2O,0.6,kg/TJ,6.978721688928,kg -2ea47508-2ef7-3842-8746-8a70c21db6f9,SESCO,II.1.1,Santa Fe,AR-S,annual,2015,bioetanol combustion consumption by to the public,11.64675379185,TJ,CH4,10.0,kg/TJ,116.4675379185,kg -df23dbce-fe14-350d-9ed4-0d374c844781,SESCO,II.1.1,Santa Fe,AR-S,annual,2015,bioetanol combustion consumption by to the public,11.64675379185,TJ,N2O,0.6,kg/TJ,6.988052275109999,kg -d214aea4-7e7f-3204-9031-277903727c13,SESCO,II.1.1,Buenos Aires,AR-B,annual,2015,bioetanol combustion consumption by to the public,23.702825555999993,TJ,CH4,10.0,kg/TJ,237.02825555999993,kg -7a180b2a-367d-3356-8f30-6e9e89948e94,SESCO,II.1.1,Buenos Aires,AR-B,annual,2015,bioetanol combustion consumption by to the public,23.702825555999993,TJ,N2O,0.6,kg/TJ,14.221695333599996,kg -b3536235-f3c4-3448-a243-68b5e52df6e7,SESCO,II.1.1,Capital Federal,AR-C,annual,2015,bioetanol combustion consumption by to the public,0.9567177299999999,TJ,CH4,10.0,kg/TJ,9.567177299999999,kg -4a3a4e3d-3f46-3e83-9e9b-9958241eee63,SESCO,II.1.1,Capital Federal,AR-C,annual,2015,bioetanol combustion consumption by to the public,0.9567177299999999,TJ,N2O,0.6,kg/TJ,0.574030638,kg -afba4b54-bbda-35af-8345-19892f1d96e7,SESCO,II.1.1,Córdoba,AR-X,annual,2015,bioetanol combustion consumption by to the public,6.04515231,TJ,CH4,10.0,kg/TJ,60.451523099999996,kg -b688f10f-449e-38a4-a6cb-f9a905240374,SESCO,II.1.1,Córdoba,AR-X,annual,2015,bioetanol combustion consumption by to the public,6.04515231,TJ,N2O,0.6,kg/TJ,3.6270913859999996,kg -1ea34266-4a3f-3ec2-978f-225ce5e607bf,SESCO,II.1.1,Entre Rios,AR-E,annual,2015,bioetanol combustion consumption by to the public,1.5491541599999998,TJ,CH4,10.0,kg/TJ,15.491541599999998,kg -34955abc-1cdc-3d66-afb3-17a8acdb9515,SESCO,II.1.1,Entre Rios,AR-E,annual,2015,bioetanol combustion consumption by to the public,1.5491541599999998,TJ,N2O,0.6,kg/TJ,0.9294924959999998,kg -29446c4a-9224-3a2b-8a0a-208ab74e289f,SESCO,II.1.1,Salta,AR-A,annual,2015,bioetanol combustion consumption by to the public,0.24732782999999997,TJ,CH4,10.0,kg/TJ,2.4732782999999996,kg -3f14718c-5d31-3c7f-92d2-d8d56916e94e,SESCO,II.1.1,Salta,AR-A,annual,2015,bioetanol combustion consumption by to the public,0.24732782999999997,TJ,N2O,0.6,kg/TJ,0.14839669799999997,kg -efd587de-9abd-3cd7-aa00-cd9c0339b7b0,SESCO,II.1.1,Santa Fe,AR-S,annual,2015,bioetanol combustion consumption by to the public,1.03340853,TJ,CH4,10.0,kg/TJ,10.3340853,kg -c7a53f8b-1916-3b8c-b38f-b03c373d442d,SESCO,II.1.1,Santa Fe,AR-S,annual,2015,bioetanol combustion consumption by to the public,1.03340853,TJ,N2O,0.6,kg/TJ,0.620045118,kg -3fb0240b-b42d-382d-bf73-7f9c7bb1bdcd,SESCO,II.1.1,Buenos Aires,AR-B,annual,2015,bioetanol combustion consumption by to the public,3.778363989,TJ,CH4,10.0,kg/TJ,37.783639889999996,kg -8acfd7e0-176e-3995-b45f-3481ee93ac63,SESCO,II.1.1,Buenos Aires,AR-B,annual,2015,bioetanol combustion consumption by to the public,3.778363989,TJ,N2O,0.6,kg/TJ,2.2670183934,kg -f0fc4ad2-ad97-328b-9612-27fbb181a981,SESCO,II.1.1,Capital Federal,AR-C,annual,2015,bioetanol combustion consumption by to the public,0.09394623,TJ,CH4,10.0,kg/TJ,0.9394623000000001,kg -0e97db1d-ea84-3552-ad68-f5fee60760f2,SESCO,II.1.1,Capital Federal,AR-C,annual,2015,bioetanol combustion consumption by to the public,0.09394623,TJ,N2O,0.6,kg/TJ,0.056367738,kg -4975d2ed-506a-3303-ab22-a268ae967390,SESCO,II.1.1,Córdoba,AR-X,annual,2015,bioetanol combustion consumption by to the public,0.38537127,TJ,CH4,10.0,kg/TJ,3.8537127,kg -216f1326-717c-3827-8417-02b4b7fce83e,SESCO,II.1.1,Córdoba,AR-X,annual,2015,bioetanol combustion consumption by to the public,0.38537127,TJ,N2O,0.6,kg/TJ,0.23122276199999997,kg -0e4a615f-2bc0-30f3-b196-09c9447e1d35,SESCO,II.1.1,Entre Rios,AR-E,annual,2015,bioetanol combustion consumption by to the public,0.12270527999999999,TJ,CH4,10.0,kg/TJ,1.2270527999999998,kg -2cf75b5e-f70d-376b-bddd-965b34114a97,SESCO,II.1.1,Entre Rios,AR-E,annual,2015,bioetanol combustion consumption by to the public,0.12270527999999999,TJ,N2O,0.6,kg/TJ,0.07362316799999999,kg -f2341f4d-50cf-3487-bf32-5b1245fc4739,SESCO,II.1.1,Santa Fe,AR-S,annual,2015,bioetanol combustion consumption by to the public,0.14379524999999999,TJ,CH4,10.0,kg/TJ,1.4379524999999997,kg -9bf0988d-acc7-39a4-8686-a4cb6a13881e,SESCO,II.1.1,Santa Fe,AR-S,annual,2015,bioetanol combustion consumption by to the public,0.14379524999999999,TJ,N2O,0.6,kg/TJ,0.08627714999999998,kg -229acd1c-0cff-3797-bd23-f0988f5934a0,SESCO,II.1.1,Catamarca,AR-K,annual,2015,bioetanol combustion consumption by to the public,0.015338159999999998,TJ,CH4,10.0,kg/TJ,0.15338159999999998,kg -82516b25-c776-3630-909b-f1c68a3c2c39,SESCO,II.1.1,Catamarca,AR-K,annual,2015,bioetanol combustion consumption by to the public,0.015338159999999998,TJ,N2O,0.6,kg/TJ,0.009202895999999999,kg -c6187f40-7182-381d-ae1d-7d749dde6704,SESCO,II.1.1,Jujuy,AR-Y,annual,2015,bioetanol combustion consumption by to the public,0.1342089,TJ,CH4,10.0,kg/TJ,1.3420889999999999,kg -ee0a4959-6fa0-3165-84cd-e4a8a068632c,SESCO,II.1.1,Jujuy,AR-Y,annual,2015,bioetanol combustion consumption by to the public,0.1342089,TJ,N2O,0.6,kg/TJ,0.08052533999999999,kg -c81d100d-afdc-37eb-961d-d10cdeabb38b,SESCO,II.1.1,Salta,AR-A,annual,2015,bioetanol combustion consumption by to the public,0.9527681537999999,TJ,CH4,10.0,kg/TJ,9.527681538,kg -2ca5f981-2ec5-30d8-a49a-8adccf1a11c7,SESCO,II.1.1,Salta,AR-A,annual,2015,bioetanol combustion consumption by to the public,0.9527681537999999,TJ,N2O,0.6,kg/TJ,0.5716608922799999,kg -8d5cd22b-1204-359a-860c-16cafe66da67,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2015,bioetanol combustion consumption by to the public,0.02108997,TJ,CH4,10.0,kg/TJ,0.2108997,kg -4299b15b-e977-3b1c-861b-fc1e29338fbe,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2015,bioetanol combustion consumption by to the public,0.02108997,TJ,N2O,0.6,kg/TJ,0.012653982,kg -930cec90-8705-337c-bd79-97860aafa7b4,SESCO,II.1.1,Tucuman,AR-T,annual,2015,bioetanol combustion consumption by to the public,0.08627715,TJ,CH4,10.0,kg/TJ,0.8627715,kg -bdbb567a-0340-366d-964e-59a3ea3e1fb0,SESCO,II.1.1,Tucuman,AR-T,annual,2015,bioetanol combustion consumption by to the public,0.08627715,TJ,N2O,0.6,kg/TJ,0.05176629,kg -02e8068c-fc01-3da3-bc64-1acc425cc0d1,SESCO,II.1.1,Catamarca,AR-K,annual,2015,bioetanol combustion consumption by to the public,15.5244036078,TJ,CH4,10.0,kg/TJ,155.244036078,kg -3b938a8d-1412-33d6-b9ea-3f15c8c46716,SESCO,II.1.1,Catamarca,AR-K,annual,2015,bioetanol combustion consumption by to the public,15.5244036078,TJ,N2O,0.6,kg/TJ,9.31464216468,kg -f1f081e7-0500-3e79-ae0a-958528430b7d,SESCO,II.1.1,Chaco,AR-H,annual,2015,bioetanol combustion consumption by to the public,6.0747549588,TJ,CH4,10.0,kg/TJ,60.747549588,kg -937fe45c-221e-3601-8d9f-c084abfdef50,SESCO,II.1.1,Chaco,AR-H,annual,2015,bioetanol combustion consumption by to the public,6.0747549588,TJ,N2O,0.6,kg/TJ,3.6448529752799996,kg -aa8c4364-7f65-332b-add5-d67a1c036b5e,SESCO,II.1.1,Córdoba,AR-X,annual,2015,bioetanol combustion consumption by to the public,0.05372190539999999,TJ,CH4,10.0,kg/TJ,0.5372190539999999,kg -6fa73984-0411-3968-a130-133d84ffeeca,SESCO,II.1.1,Córdoba,AR-X,annual,2015,bioetanol combustion consumption by to the public,0.05372190539999999,TJ,N2O,0.6,kg/TJ,0.03223314323999999,kg -f0b8cecf-0c6c-30e7-a873-ed327d1fa9b7,SESCO,II.1.1,Jujuy,AR-Y,annual,2015,bioetanol combustion consumption by to the public,35.590455564299994,TJ,CH4,10.0,kg/TJ,355.9045556429999,kg -8fd6b6fe-85e8-3a85-9fbb-f87a52ad1e31,SESCO,II.1.1,Jujuy,AR-Y,annual,2015,bioetanol combustion consumption by to the public,35.590455564299994,TJ,N2O,0.6,kg/TJ,21.354273338579997,kg -bae0ff9e-be6a-386e-a1d3-268f5a022c2c,SESCO,II.1.1,La Rioja,AR-F,annual,2015,bioetanol combustion consumption by to the public,18.183714615899998,TJ,CH4,10.0,kg/TJ,181.83714615899999,kg -3957a0ab-8608-308f-8317-0654e793f790,SESCO,II.1.1,La Rioja,AR-F,annual,2015,bioetanol combustion consumption by to the public,18.183714615899998,TJ,N2O,0.6,kg/TJ,10.910228769539998,kg -43b34514-01d6-362f-a910-3c0bcb49873d,SESCO,II.1.1,Salta,AR-A,annual,2015,bioetanol combustion consumption by to the public,68.0970781971,TJ,CH4,10.0,kg/TJ,680.9707819710001,kg -0e64fd66-0e56-31ca-9ab1-464cf50d872f,SESCO,II.1.1,Salta,AR-A,annual,2015,bioetanol combustion consumption by to the public,68.0970781971,TJ,N2O,0.6,kg/TJ,40.85824691826,kg -6301be2b-b405-31f2-8e21-f741fe22003b,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2015,bioetanol combustion consumption by to the public,19.0863269865,TJ,CH4,10.0,kg/TJ,190.863269865,kg -85e47efd-58e3-3d15-9b68-1cf07df377eb,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2015,bioetanol combustion consumption by to the public,19.0863269865,TJ,N2O,0.6,kg/TJ,11.4517961919,kg -065a7acf-a3fb-3c27-8841-d2b7f3ba1a98,SESCO,II.1.1,Tucuman,AR-T,annual,2015,bioetanol combustion consumption by to the public,107.15932627739998,TJ,CH4,10.0,kg/TJ,1071.5932627739999,kg -9fcc634d-4f77-39a8-b875-b0083afae50a,SESCO,II.1.1,Tucuman,AR-T,annual,2015,bioetanol combustion consumption by to the public,107.15932627739998,TJ,N2O,0.6,kg/TJ,64.29559576643999,kg -527110b7-1519-39b0-84e2-946859915651,SESCO,II.1.1,Catamarca,AR-K,annual,2015,bioetanol combustion consumption by to the public,1.2621771864,TJ,CH4,10.0,kg/TJ,12.621771864,kg -999f25f4-eda4-30cb-9336-c3966e8025ae,SESCO,II.1.1,Catamarca,AR-K,annual,2015,bioetanol combustion consumption by to the public,1.2621771864,TJ,N2O,0.6,kg/TJ,0.75730631184,kg -b8a79de4-d6e2-3d09-b427-9f97dcec1882,SESCO,II.1.1,Chaco,AR-H,annual,2015,bioetanol combustion consumption by to the public,0.08435988,TJ,CH4,10.0,kg/TJ,0.8435988,kg -86ff8ed8-5423-3930-b8a2-983706abfb41,SESCO,II.1.1,Chaco,AR-H,annual,2015,bioetanol combustion consumption by to the public,0.08435988,TJ,N2O,0.6,kg/TJ,0.050615928,kg -46f0d620-9eca-3c33-881c-0cffdd8daba9,SESCO,II.1.1,Córdoba,AR-X,annual,2015,bioetanol combustion consumption by to the public,0.022738822199999998,TJ,CH4,10.0,kg/TJ,0.22738822199999997,kg -68559e4d-ea18-3bc7-8277-bc4e5ff63d67,SESCO,II.1.1,Córdoba,AR-X,annual,2015,bioetanol combustion consumption by to the public,0.022738822199999998,TJ,N2O,0.6,kg/TJ,0.013643293319999998,kg -5c85944a-ea01-3f08-b882-6960157d739e,SESCO,II.1.1,Jujuy,AR-Y,annual,2015,bioetanol combustion consumption by to the public,1.9567465892999996,TJ,CH4,10.0,kg/TJ,19.567465892999994,kg -7f9bec12-ba7d-3b76-8426-9d1440b1e433,SESCO,II.1.1,Jujuy,AR-Y,annual,2015,bioetanol combustion consumption by to the public,1.9567465892999996,TJ,N2O,0.6,kg/TJ,1.1740479535799997,kg -d05295ec-a101-304f-8b1f-43102abfda66,SESCO,II.1.1,La Rioja,AR-F,annual,2015,bioetanol combustion consumption by to the public,0.7610603265,TJ,CH4,10.0,kg/TJ,7.610603265,kg -b968809d-d76c-3e6d-9ce0-0a12c48d076e,SESCO,II.1.1,La Rioja,AR-F,annual,2015,bioetanol combustion consumption by to the public,0.7610603265,TJ,N2O,0.6,kg/TJ,0.4566361959,kg -772a7592-b9d6-3ee6-ab72-a268ec59c977,SESCO,II.1.1,Salta,AR-A,annual,2015,bioetanol combustion consumption by to the public,3.7923792326999997,TJ,CH4,10.0,kg/TJ,37.923792326999994,kg -f2f862fb-b2cf-3a4f-9174-fffa2fd6d22c,SESCO,II.1.1,Salta,AR-A,annual,2015,bioetanol combustion consumption by to the public,3.7923792326999997,TJ,N2O,0.6,kg/TJ,2.27542753962,kg -5dc803b6-2da7-3b8a-8f0b-af5b56f9441a,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2015,bioetanol combustion consumption by to the public,1.8471937815,TJ,CH4,10.0,kg/TJ,18.471937815,kg -6e3826ee-8687-3033-a7b0-387581e97c33,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2015,bioetanol combustion consumption by to the public,1.8471937815,TJ,N2O,0.6,kg/TJ,1.1083162689,kg -f85a2e31-7d93-3325-bb63-345dbc0bf52e,SESCO,II.1.1,Tucuman,AR-T,annual,2015,bioetanol combustion consumption by to the public,6.8392663713,TJ,CH4,10.0,kg/TJ,68.392663713,kg -bbc61a55-417d-3619-8162-1ecaab6650d1,SESCO,II.1.1,Tucuman,AR-T,annual,2015,bioetanol combustion consumption by to the public,6.8392663713,TJ,N2O,0.6,kg/TJ,4.103559822779999,kg -210cb43b-f483-3096-af15-a1a626573a0d,SESCO,II.5.1,Santa Fe,AR-S,annual,2015,bioetanol combustion consumption by agriculture machines,2.1205006199999996,TJ,CH4,10.0,kg/TJ,21.205006199999996,kg -5610b264-bed6-3300-af73-efe4dc404760,SESCO,II.5.1,Santa Fe,AR-S,annual,2015,bioetanol combustion consumption by agriculture machines,2.1205006199999996,TJ,N2O,0.6,kg/TJ,1.2723003719999997,kg -75403023-e4c2-36e8-afef-0752d5b01fc1,SESCO,II.5.1,Santa Fe,AR-S,annual,2015,bioetanol combustion consumption by agriculture machines,0.35469494999999995,TJ,CH4,10.0,kg/TJ,3.5469494999999993,kg -17929829-c464-3606-b806-25ee40ee9aa3,SESCO,II.5.1,Santa Fe,AR-S,annual,2015,bioetanol combustion consumption by agriculture machines,0.35469494999999995,TJ,N2O,0.6,kg/TJ,0.21281696999999997,kg -de2d0e09-ef62-3a8c-ad0b-74ba7c0ed36e,SESCO,II.1.1,Buenos Aires,AR-B,annual,2015,bioetanol combustion consumption by to the public,1.6891148699999998,TJ,CH4,10.0,kg/TJ,16.8911487,kg -30092756-4a9a-3c35-a4f0-6386eb18fd0c,SESCO,II.1.1,Buenos Aires,AR-B,annual,2015,bioetanol combustion consumption by to the public,1.6891148699999998,TJ,N2O,0.6,kg/TJ,1.013468922,kg -6cfaab90-321c-30a4-9876-3bece879b2f5,SESCO,II.1.1,Entre Rios,AR-E,annual,2015,bioetanol combustion consumption by to the public,1.4149452599999999,TJ,CH4,10.0,kg/TJ,14.149452599999998,kg -3af7104c-b9a6-3e3e-a138-bbd400171e63,SESCO,II.1.1,Entre Rios,AR-E,annual,2015,bioetanol combustion consumption by to the public,1.4149452599999999,TJ,N2O,0.6,kg/TJ,0.848967156,kg -240127d7-057b-32a0-9ef8-b2139c268a34,SESCO,II.1.1,Buenos Aires,AR-B,annual,2015,bioetanol combustion consumption by to the public,799.02994158,TJ,CH4,10.0,kg/TJ,7990.2994158,kg -eaba8519-cc1d-3f38-ae53-86936559cdcf,SESCO,II.1.1,Buenos Aires,AR-B,annual,2015,bioetanol combustion consumption by to the public,799.02994158,TJ,N2O,0.6,kg/TJ,479.41796494799996,kg -b0d68d4c-aa01-3424-960c-58aefc757985,SESCO,II.1.1,Capital Federal,AR-C,annual,2015,bioetanol combustion consumption by to the public,252.75178682999996,TJ,CH4,10.0,kg/TJ,2527.5178682999995,kg -b2ab0e8e-ecde-3a3a-bd51-35573a387162,SESCO,II.1.1,Capital Federal,AR-C,annual,2015,bioetanol combustion consumption by to the public,252.75178682999996,TJ,N2O,0.6,kg/TJ,151.65107209799996,kg -e638a7dc-4db9-3c18-9b74-4d045416e7dc,SESCO,II.1.1,Catamarca,AR-K,annual,2015,bioetanol combustion consumption by to the public,3.15199188,TJ,CH4,10.0,kg/TJ,31.519918800000003,kg -932379c3-918f-3059-9d60-5801db100ef3,SESCO,II.1.1,Catamarca,AR-K,annual,2015,bioetanol combustion consumption by to the public,3.15199188,TJ,N2O,0.6,kg/TJ,1.8911951280000001,kg -cf507c03-ff5a-3c42-9927-e66e2c9368a2,SESCO,II.1.1,Chaco,AR-H,annual,2015,bioetanol combustion consumption by to the public,47.06706122999999,TJ,CH4,10.0,kg/TJ,470.6706122999999,kg -fb32e6f2-2e09-3cd6-bdb8-656f673117cf,SESCO,II.1.1,Chaco,AR-H,annual,2015,bioetanol combustion consumption by to the public,47.06706122999999,TJ,N2O,0.6,kg/TJ,28.240236737999997,kg -37cfe000-8da2-38d8-9a93-4ea4ae683044,SESCO,II.1.1,Corrientes,AR-W,annual,2015,bioetanol combustion consumption by to the public,50.09826509999999,TJ,CH4,10.0,kg/TJ,500.9826509999999,kg -75a34c83-ae6a-3074-ac31-fcbf845a90db,SESCO,II.1.1,Corrientes,AR-W,annual,2015,bioetanol combustion consumption by to the public,50.09826509999999,TJ,N2O,0.6,kg/TJ,30.058959059999992,kg -ec5d66e0-dce8-320d-a009-724f4b79aa7a,SESCO,II.1.1,Córdoba,AR-X,annual,2015,bioetanol combustion consumption by to the public,160.10163135,TJ,CH4,10.0,kg/TJ,1601.0163134999998,kg -1195749b-8115-3a9c-95e4-85a9413fa9c2,SESCO,II.1.1,Córdoba,AR-X,annual,2015,bioetanol combustion consumption by to the public,160.10163135,TJ,N2O,0.6,kg/TJ,96.06097881,kg -9b55c415-3e6b-3eef-bbbb-cdc867695c5f,SESCO,II.1.1,Entre Rios,AR-E,annual,2015,bioetanol combustion consumption by to the public,49.271921729999995,TJ,CH4,10.0,kg/TJ,492.71921729999997,kg -75b6f1c1-f68e-39db-a84d-85e55bc8d42b,SESCO,II.1.1,Entre Rios,AR-E,annual,2015,bioetanol combustion consumption by to the public,49.271921729999995,TJ,N2O,0.6,kg/TJ,29.563153037999996,kg -184208dc-71d1-3ada-b3f9-93af3e4e66af,SESCO,II.1.1,Formosa,AR-P,annual,2015,bioetanol combustion consumption by to the public,25.022290769999998,TJ,CH4,10.0,kg/TJ,250.22290769999998,kg -84dcfb68-4b50-3ffd-8a84-2d1af0273759,SESCO,II.1.1,Formosa,AR-P,annual,2015,bioetanol combustion consumption by to the public,25.022290769999998,TJ,N2O,0.6,kg/TJ,15.013374461999998,kg -b3a35065-32d1-3eaa-94e4-8c4e941aa313,SESCO,II.1.1,Jujuy,AR-Y,annual,2015,bioetanol combustion consumption by to the public,11.10674511,TJ,CH4,10.0,kg/TJ,111.0674511,kg -310c6059-6855-3447-97c3-8d39b0b5e6fd,SESCO,II.1.1,Jujuy,AR-Y,annual,2015,bioetanol combustion consumption by to the public,11.10674511,TJ,N2O,0.6,kg/TJ,6.664047066,kg -43f48b96-3d52-34c5-ae0a-19c24af164c8,SESCO,II.1.1,La Pampa,AR-L,annual,2015,bioetanol combustion consumption by to the public,14.74188903,TJ,CH4,10.0,kg/TJ,147.4188903,kg -f06ba077-7369-3443-931d-e26e2c0b563e,SESCO,II.1.1,La Pampa,AR-L,annual,2015,bioetanol combustion consumption by to the public,14.74188903,TJ,N2O,0.6,kg/TJ,8.845133418,kg -ba01ab1c-8133-3fdf-b815-e782ebecd2dd,SESCO,II.1.1,La Rioja,AR-F,annual,2015,bioetanol combustion consumption by to the public,15.869243789999999,TJ,CH4,10.0,kg/TJ,158.6924379,kg -b1d77cfc-085f-3c07-994c-a9b8753b7560,SESCO,II.1.1,La Rioja,AR-F,annual,2015,bioetanol combustion consumption by to the public,15.869243789999999,TJ,N2O,0.6,kg/TJ,9.521546273999999,kg -85030887-528e-34b0-a104-efc99c3691e8,SESCO,II.1.1,Mendoza,AR-M,annual,2015,bioetanol combustion consumption by to the public,39.179412449999994,TJ,CH4,10.0,kg/TJ,391.79412449999995,kg -4eb07f9c-a9d4-3e94-8b96-0552725c992f,SESCO,II.1.1,Mendoza,AR-M,annual,2015,bioetanol combustion consumption by to the public,39.179412449999994,TJ,N2O,0.6,kg/TJ,23.507647469999995,kg -c1eac1c9-564e-3813-837d-a28cf6e4aefe,SESCO,II.1.1,Misiones,AR-N,annual,2015,bioetanol combustion consumption by to the public,67.81767443999999,TJ,CH4,10.0,kg/TJ,678.1767444,kg -cfe88853-ebd0-34e6-bc3c-abd1935782fd,SESCO,II.1.1,Misiones,AR-N,annual,2015,bioetanol combustion consumption by to the public,67.81767443999999,TJ,N2O,0.6,kg/TJ,40.69060466399999,kg -311551bb-df44-38b3-aa16-9f6a0f134df6,SESCO,II.1.1,Neuquén,AR-Q,annual,2015,bioetanol combustion consumption by to the public,24.713610299999996,TJ,CH4,10.0,kg/TJ,247.13610299999996,kg -304d24c1-2f10-3b09-96fb-717cc1685693,SESCO,II.1.1,Neuquén,AR-Q,annual,2015,bioetanol combustion consumption by to the public,24.713610299999996,TJ,N2O,0.6,kg/TJ,14.828166179999997,kg -d83f33fd-8ebb-30b0-9b71-0a0eb5d36d9b,SESCO,II.1.1,Rio Negro,AR-R,annual,2015,bioetanol combustion consumption by to the public,8.119638449999998,TJ,CH4,10.0,kg/TJ,81.19638449999998,kg -bf12a750-b805-352b-9807-924716a48e9d,SESCO,II.1.1,Rio Negro,AR-R,annual,2015,bioetanol combustion consumption by to the public,8.119638449999998,TJ,N2O,0.6,kg/TJ,4.871783069999998,kg -80682a06-53b8-38e4-af53-ee34d5871c5b,SESCO,II.1.1,Salta,AR-A,annual,2015,bioetanol combustion consumption by to the public,13.451566319999998,TJ,CH4,10.0,kg/TJ,134.51566319999998,kg -20fda14d-1f86-3218-910f-b6bdd969b866,SESCO,II.1.1,Salta,AR-A,annual,2015,bioetanol combustion consumption by to the public,13.451566319999998,TJ,N2O,0.6,kg/TJ,8.070939791999999,kg -932e2e4f-aef7-3539-a7cc-97ee7b0758be,SESCO,II.1.1,San Juan,AR-J,annual,2015,bioetanol combustion consumption by to the public,11.083737869999998,TJ,CH4,10.0,kg/TJ,110.83737869999999,kg -0a941fb7-b269-3ce8-ac1a-26ef4659825f,SESCO,II.1.1,San Juan,AR-J,annual,2015,bioetanol combustion consumption by to the public,11.083737869999998,TJ,N2O,0.6,kg/TJ,6.650242721999999,kg -e8933788-6369-3fc2-a779-a0e924cac1dc,SESCO,II.1.1,San Luis,AR-D,annual,2015,bioetanol combustion consumption by to the public,1.3056608699999999,TJ,CH4,10.0,kg/TJ,13.056608699999998,kg -9e99728d-9a3a-31df-a739-ad8ec8a27cdd,SESCO,II.1.1,San Luis,AR-D,annual,2015,bioetanol combustion consumption by to the public,1.3056608699999999,TJ,N2O,0.6,kg/TJ,0.7833965219999999,kg -823da591-f8b6-3fa0-899b-eb51f48815d0,SESCO,II.1.1,Santa Fe,AR-S,annual,2015,bioetanol combustion consumption by to the public,197.27174483999997,TJ,CH4,10.0,kg/TJ,1972.7174483999997,kg -e906628d-6c91-392e-937f-5243c3ae87ff,SESCO,II.1.1,Santa Fe,AR-S,annual,2015,bioetanol combustion consumption by to the public,197.27174483999997,TJ,N2O,0.6,kg/TJ,118.36304690399997,kg -f4934c08-64cc-3266-81b9-6027f53ce2e7,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2015,bioetanol combustion consumption by to the public,19.76321916,TJ,CH4,10.0,kg/TJ,197.6321916,kg -45aa09d8-8318-301b-bc25-fb5a67ab0a49,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2015,bioetanol combustion consumption by to the public,19.76321916,TJ,N2O,0.6,kg/TJ,11.857931495999999,kg -c2025050-ef32-3b9e-bef7-63ecc00262d5,SESCO,II.1.1,Tucuman,AR-T,annual,2015,bioetanol combustion consumption by to the public,46.89258965999999,TJ,CH4,10.0,kg/TJ,468.92589659999993,kg -a877a471-b621-3ee1-aab7-9210330218ce,SESCO,II.1.1,Tucuman,AR-T,annual,2015,bioetanol combustion consumption by to the public,46.89258965999999,TJ,N2O,0.6,kg/TJ,28.135553795999993,kg -d48ba357-1b8d-3515-9473-cb9d1d9655fa,SESCO,II.1.1,Buenos Aires,AR-B,annual,2015,bioetanol combustion consumption by to the public,437.06086919999996,TJ,CH4,10.0,kg/TJ,4370.608692,kg -7fc9e8c2-7239-3ae8-9c72-15a46241e902,SESCO,II.1.1,Buenos Aires,AR-B,annual,2015,bioetanol combustion consumption by to the public,437.06086919999996,TJ,N2O,0.6,kg/TJ,262.23652151999994,kg -5595a7b9-6f20-3c27-8dd0-223bfb0fe7de,SESCO,II.1.1,Capital Federal,AR-C,annual,2015,bioetanol combustion consumption by to the public,182.01794471999997,TJ,CH4,10.0,kg/TJ,1820.1794471999997,kg -082d302a-64d1-377f-a22b-10aa720e1f03,SESCO,II.1.1,Capital Federal,AR-C,annual,2015,bioetanol combustion consumption by to the public,182.01794471999997,TJ,N2O,0.6,kg/TJ,109.21076683199998,kg -e3a61a8d-7f78-3651-ba17-41f385f1476c,SESCO,II.1.1,Catamarca,AR-K,annual,2015,bioetanol combustion consumption by to the public,2.3697457199999996,TJ,CH4,10.0,kg/TJ,23.697457199999995,kg -9718e20f-025d-36f5-9799-7131ce6e79f9,SESCO,II.1.1,Catamarca,AR-K,annual,2015,bioetanol combustion consumption by to the public,2.3697457199999996,TJ,N2O,0.6,kg/TJ,1.4218474319999996,kg -5c2e0f75-9922-3e66-9948-4e3f77e1615f,SESCO,II.1.1,Chaco,AR-H,annual,2015,bioetanol combustion consumption by to the public,18.49206915,TJ,CH4,10.0,kg/TJ,184.92069149999998,kg -0341ffd7-c7d9-3963-a7f1-2eba9741be3e,SESCO,II.1.1,Chaco,AR-H,annual,2015,bioetanol combustion consumption by to the public,18.49206915,TJ,N2O,0.6,kg/TJ,11.09524149,kg -86446fca-7c89-364e-8495-e94f48256642,SESCO,II.1.1,Corrientes,AR-W,annual,2015,bioetanol combustion consumption by to the public,21.632557409999997,TJ,CH4,10.0,kg/TJ,216.32557409999998,kg -2356a1f8-2077-37ba-b57a-e1441349e805,SESCO,II.1.1,Corrientes,AR-W,annual,2015,bioetanol combustion consumption by to the public,21.632557409999997,TJ,N2O,0.6,kg/TJ,12.979534445999997,kg -cabc1006-0e2f-313c-a41e-70f1b6ba3ed4,SESCO,II.1.1,Córdoba,AR-X,annual,2015,bioetanol combustion consumption by to the public,68.63634873,TJ,CH4,10.0,kg/TJ,686.3634873,kg -23901f5d-36f9-3fdd-ba93-9bba9c522c73,SESCO,II.1.1,Córdoba,AR-X,annual,2015,bioetanol combustion consumption by to the public,68.63634873,TJ,N2O,0.6,kg/TJ,41.18180923799999,kg -c2637c58-116e-392c-b6a3-e126090f6c30,SESCO,II.1.1,Entre Rios,AR-E,annual,2015,bioetanol combustion consumption by to the public,23.356183139999995,TJ,CH4,10.0,kg/TJ,233.56183139999996,kg -b2e6828b-e71f-3162-8eb5-4344d69d1517,SESCO,II.1.1,Entre Rios,AR-E,annual,2015,bioetanol combustion consumption by to the public,23.356183139999995,TJ,N2O,0.6,kg/TJ,14.013709883999997,kg -5a60fbe0-d44f-373d-9230-8934dbd47197,SESCO,II.1.1,Formosa,AR-P,annual,2015,bioetanol combustion consumption by to the public,10.84791366,TJ,CH4,10.0,kg/TJ,108.4791366,kg -b772c500-74da-3a76-a7b4-a1b5f861b36d,SESCO,II.1.1,Formosa,AR-P,annual,2015,bioetanol combustion consumption by to the public,10.84791366,TJ,N2O,0.6,kg/TJ,6.508748196,kg -162c6852-84a4-3397-b2db-ca9339d44a00,SESCO,II.1.1,Jujuy,AR-Y,annual,2015,bioetanol combustion consumption by to the public,2.32948305,TJ,CH4,10.0,kg/TJ,23.2948305,kg -7ec3b89c-da1c-33eb-b2ba-ce7ad320d6b9,SESCO,II.1.1,Jujuy,AR-Y,annual,2015,bioetanol combustion consumption by to the public,2.32948305,TJ,N2O,0.6,kg/TJ,1.3976898299999998,kg -0f89937f-e5d0-35e6-89fd-dfb7ae143965,SESCO,II.1.1,La Pampa,AR-L,annual,2015,bioetanol combustion consumption by to the public,7.249197869999999,TJ,CH4,10.0,kg/TJ,72.49197869999999,kg -a8f52fd2-2fbe-393c-9592-4c9868affc28,SESCO,II.1.1,La Pampa,AR-L,annual,2015,bioetanol combustion consumption by to the public,7.249197869999999,TJ,N2O,0.6,kg/TJ,4.349518721999999,kg -5ae29c24-45d5-323e-b2e8-acbbd1d7bf8a,SESCO,II.1.1,La Rioja,AR-F,annual,2015,bioetanol combustion consumption by to the public,4.97531565,TJ,CH4,10.0,kg/TJ,49.753156499999996,kg -c20c9781-237e-3e7d-9dde-aca00fbfbd22,SESCO,II.1.1,La Rioja,AR-F,annual,2015,bioetanol combustion consumption by to the public,4.97531565,TJ,N2O,0.6,kg/TJ,2.98518939,kg -8c1a8d3c-3960-395c-8fb5-27ee2c48f65b,SESCO,II.1.1,Mendoza,AR-M,annual,2015,bioetanol combustion consumption by to the public,21.85112619,TJ,CH4,10.0,kg/TJ,218.5112619,kg -61d401d9-a7fc-32c8-9505-f4880cf1aa10,SESCO,II.1.1,Mendoza,AR-M,annual,2015,bioetanol combustion consumption by to the public,21.85112619,TJ,N2O,0.6,kg/TJ,13.110675714,kg -8e827378-a63e-3879-98f9-660681008938,SESCO,II.1.1,Misiones,AR-N,annual,2015,bioetanol combustion consumption by to the public,19.45453869,TJ,CH4,10.0,kg/TJ,194.54538689999998,kg -7db66cdb-2f57-3192-ba61-91c6776d952f,SESCO,II.1.1,Misiones,AR-N,annual,2015,bioetanol combustion consumption by to the public,19.45453869,TJ,N2O,0.6,kg/TJ,11.672723214,kg -db075939-e7fd-3b97-9dab-8b2f62690cb3,SESCO,II.1.1,Neuquén,AR-Q,annual,2015,bioetanol combustion consumption by to the public,15.524135189999999,TJ,CH4,10.0,kg/TJ,155.24135189999998,kg -e6931e24-c3cf-3cd5-9c5f-29d64de9a6d8,SESCO,II.1.1,Neuquén,AR-Q,annual,2015,bioetanol combustion consumption by to the public,15.524135189999999,TJ,N2O,0.6,kg/TJ,9.314481114,kg -8258f737-3b0d-3d86-bb19-0e447c9812ca,SESCO,II.1.1,Rio Negro,AR-R,annual,2015,bioetanol combustion consumption by to the public,4.217994,TJ,CH4,10.0,kg/TJ,42.17994,kg -e0c8e846-020d-3797-b665-79e5f810e077,SESCO,II.1.1,Rio Negro,AR-R,annual,2015,bioetanol combustion consumption by to the public,4.217994,TJ,N2O,0.6,kg/TJ,2.5307964,kg -df8595cb-6790-3f9d-8e74-329fcaf2f860,SESCO,II.1.1,Salta,AR-A,annual,2015,bioetanol combustion consumption by to the public,4.703063309999999,TJ,CH4,10.0,kg/TJ,47.03063309999999,kg -3ef6fb92-686c-3b4d-8bf5-4ae18c8a76bb,SESCO,II.1.1,Salta,AR-A,annual,2015,bioetanol combustion consumption by to the public,4.703063309999999,TJ,N2O,0.6,kg/TJ,2.8218379859999994,kg -89f2f9a4-b24c-3de1-ae6c-a451515a1a09,SESCO,II.1.1,San Juan,AR-J,annual,2015,bioetanol combustion consumption by to the public,2.09749338,TJ,CH4,10.0,kg/TJ,20.9749338,kg -86e9dda5-c6ac-38eb-af72-4bb7771c8790,SESCO,II.1.1,San Juan,AR-J,annual,2015,bioetanol combustion consumption by to the public,2.09749338,TJ,N2O,0.6,kg/TJ,1.258496028,kg -9f6b0775-801b-3460-81a4-a06535f31215,SESCO,II.1.1,San Luis,AR-D,annual,2015,bioetanol combustion consumption by to the public,1.43220069,TJ,CH4,10.0,kg/TJ,14.3220069,kg -9c14a7fe-31a0-314b-b646-b2f1bba40e5a,SESCO,II.1.1,San Luis,AR-D,annual,2015,bioetanol combustion consumption by to the public,1.43220069,TJ,N2O,0.6,kg/TJ,0.8593204139999999,kg -2ee58b0c-1cdb-3ad8-a6aa-556c860cdcf2,SESCO,II.1.1,Santa Fe,AR-S,annual,2015,bioetanol combustion consumption by to the public,95.75996741999998,TJ,CH4,10.0,kg/TJ,957.5996741999998,kg -e6166d6f-2f3c-3aee-bf77-0f2edc4d31eb,SESCO,II.1.1,Santa Fe,AR-S,annual,2015,bioetanol combustion consumption by to the public,95.75996741999998,TJ,N2O,0.6,kg/TJ,57.455980451999984,kg -6fdcf702-f75a-35a9-ac87-cb2e1346447d,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2015,bioetanol combustion consumption by to the public,9.016920809999998,TJ,CH4,10.0,kg/TJ,90.16920809999999,kg -8743e9f5-4f6b-3d41-b8af-40396ef45363,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2015,bioetanol combustion consumption by to the public,9.016920809999998,TJ,N2O,0.6,kg/TJ,5.4101524859999985,kg -0a42bd75-b572-3ae9-bd43-97c9c2f536af,SESCO,II.1.1,Tucuman,AR-T,annual,2015,bioetanol combustion consumption by to the public,13.84460667,TJ,CH4,10.0,kg/TJ,138.4460667,kg -025461b5-7d43-3e3d-9aaf-b225df272adb,SESCO,II.1.1,Tucuman,AR-T,annual,2015,bioetanol combustion consumption by to the public,13.84460667,TJ,N2O,0.6,kg/TJ,8.306764002,kg -e4fff9ca-a40c-3c2f-afc4-628c4ac29f58,SESCO,II.5.1,Buenos Aires,AR-B,annual,2015,bioetanol combustion consumption by agriculture machines,0.04217994,TJ,CH4,10.0,kg/TJ,0.4217994,kg -79750c50-321d-3cb5-b44d-552bb75f24a8,SESCO,II.5.1,Buenos Aires,AR-B,annual,2015,bioetanol combustion consumption by agriculture machines,0.04217994,TJ,N2O,0.6,kg/TJ,0.025307964,kg -f40ffc10-3f90-3210-b76c-6367d616590c,SESCO,II.5.1,Entre Rios,AR-E,annual,2015,bioetanol combustion consumption by agriculture machines,0.07669079999999999,TJ,CH4,10.0,kg/TJ,0.7669079999999999,kg -d7b8f586-e5e7-3994-8138-dc78dede7272,SESCO,II.5.1,Entre Rios,AR-E,annual,2015,bioetanol combustion consumption by agriculture machines,0.07669079999999999,TJ,N2O,0.6,kg/TJ,0.04601447999999999,kg -c49181ec-d5e2-323b-81a3-ab46d4956f2a,SESCO,II.5.1,Salta,AR-A,annual,2015,bioetanol combustion consumption by agriculture machines,0.019172699999999997,TJ,CH4,10.0,kg/TJ,0.19172699999999998,kg -bad8eae8-4fa7-3049-9bf1-e887941f99d9,SESCO,II.5.1,Salta,AR-A,annual,2015,bioetanol combustion consumption by agriculture machines,0.019172699999999997,TJ,N2O,0.6,kg/TJ,0.011503619999999997,kg -3cd8d66d-651a-310b-9e00-b54ce4f2d9d5,SESCO,II.5.1,Santa Fe,AR-S,annual,2015,bioetanol combustion consumption by agriculture machines,1.5951686399999998,TJ,CH4,10.0,kg/TJ,15.951686399999998,kg -8b91b207-f32e-3ad3-8060-1cd04d6ef2ee,SESCO,II.5.1,Santa Fe,AR-S,annual,2015,bioetanol combustion consumption by agriculture machines,1.5951686399999998,TJ,N2O,0.6,kg/TJ,0.9571011839999999,kg -5178b579-e6f1-3b02-8b18-dcc53cb542e6,SESCO,II.5.1,Buenos Aires,AR-B,annual,2015,bioetanol combustion consumption by agriculture machines,0.009586349999999999,TJ,CH4,10.0,kg/TJ,0.09586349999999999,kg -d4e28260-10d9-3835-bedd-316594ff1d47,SESCO,II.5.1,Buenos Aires,AR-B,annual,2015,bioetanol combustion consumption by agriculture machines,0.009586349999999999,TJ,N2O,0.6,kg/TJ,0.005751809999999999,kg -90c2466b-84db-3ee2-90bf-324f56cd567d,SESCO,II.5.1,Santa Fe,AR-S,annual,2015,bioetanol combustion consumption by agriculture machines,0.024924509999999997,TJ,CH4,10.0,kg/TJ,0.24924509999999997,kg -6e97a535-cd6f-322d-8ae2-5d7f1eb342a0,SESCO,II.5.1,Santa Fe,AR-S,annual,2015,bioetanol combustion consumption by agriculture machines,0.024924509999999997,TJ,N2O,0.6,kg/TJ,0.014954705999999998,kg -94e2ba3d-a35d-3db9-af20-d2d1883f8acf,SESCO,II.1.1,Buenos Aires,AR-B,annual,2015,bioetanol combustion consumption by to the public,2260.4594127299997,TJ,CH4,10.0,kg/TJ,22604.5941273,kg -2cfcdf04-2f84-3176-b59a-37e700cb0ad3,SESCO,II.1.1,Buenos Aires,AR-B,annual,2015,bioetanol combustion consumption by to the public,2260.4594127299997,TJ,N2O,0.6,kg/TJ,1356.2756476379998,kg -19b19b3e-c407-323a-8f9b-bab3412afcf3,SESCO,II.1.1,Capital Federal,AR-C,annual,2015,bioetanol combustion consumption by to the public,496.56334365,TJ,CH4,10.0,kg/TJ,4965.6334365,kg -04bfce94-d554-36df-94a9-876eb99fb866,SESCO,II.1.1,Capital Federal,AR-C,annual,2015,bioetanol combustion consumption by to the public,496.56334365,TJ,N2O,0.6,kg/TJ,297.93800618999995,kg -7849bd30-03c0-39af-a42e-18db9bed498c,SESCO,II.1.1,Catamarca,AR-K,annual,2015,bioetanol combustion consumption by to the public,40.93754903999999,TJ,CH4,10.0,kg/TJ,409.37549039999993,kg -d4ffb0a1-a56c-3412-ac1c-69c1f8d07f10,SESCO,II.1.1,Catamarca,AR-K,annual,2015,bioetanol combustion consumption by to the public,40.93754903999999,TJ,N2O,0.6,kg/TJ,24.562529423999994,kg -b12f94b9-06d5-3246-ac25-c3be8bf770ed,SESCO,II.1.1,Chaco,AR-H,annual,2015,bioetanol combustion consumption by to the public,136.32556608,TJ,CH4,10.0,kg/TJ,1363.2556608,kg -b210e66d-1b73-326a-8e61-9217773901cf,SESCO,II.1.1,Chaco,AR-H,annual,2015,bioetanol combustion consumption by to the public,136.32556608,TJ,N2O,0.6,kg/TJ,81.795339648,kg -ffc4697f-1b42-3b6b-8d95-0502b54627db,SESCO,II.1.1,Chubut,AR-U,annual,2015,bioetanol combustion consumption by to the public,211.92160490999999,TJ,CH4,10.0,kg/TJ,2119.2160491,kg -a5fadd28-1be0-39ce-a541-c4797259d76d,SESCO,II.1.1,Chubut,AR-U,annual,2015,bioetanol combustion consumption by to the public,211.92160490999999,TJ,N2O,0.6,kg/TJ,127.15296294599999,kg -07d56bf3-daa9-3728-aa62-72d5774a0eeb,SESCO,II.1.1,Corrientes,AR-W,annual,2015,bioetanol combustion consumption by to the public,145.18910529,TJ,CH4,10.0,kg/TJ,1451.8910529,kg -52e79279-dc06-3b99-9eb2-49dac470af91,SESCO,II.1.1,Corrientes,AR-W,annual,2015,bioetanol combustion consumption by to the public,145.18910529,TJ,N2O,0.6,kg/TJ,87.11346317399999,kg -5ad03b1f-3bf3-39e4-9201-81605a0372ea,SESCO,II.1.1,Córdoba,AR-X,annual,2015,bioetanol combustion consumption by to the public,574.7361933599999,TJ,CH4,10.0,kg/TJ,5747.361933599999,kg -a2eb1af7-aace-34c6-a101-558c4a75674a,SESCO,II.1.1,Córdoba,AR-X,annual,2015,bioetanol combustion consumption by to the public,574.7361933599999,TJ,N2O,0.6,kg/TJ,344.8417160159999,kg -d6982e5d-8ecf-3740-a133-602efe5500a7,SESCO,II.1.1,Entre Rios,AR-E,annual,2015,bioetanol combustion consumption by to the public,201.68913492,TJ,CH4,10.0,kg/TJ,2016.8913492,kg -1a4a441d-a437-3646-8295-1a79040a87d6,SESCO,II.1.1,Entre Rios,AR-E,annual,2015,bioetanol combustion consumption by to the public,201.68913492,TJ,N2O,0.6,kg/TJ,121.01348095199998,kg -9e994cbf-9a4a-39bf-98ba-474679ae3ef3,SESCO,II.1.1,Formosa,AR-P,annual,2015,bioetanol combustion consumption by to the public,47.56171689,TJ,CH4,10.0,kg/TJ,475.6171689,kg -4efb10b7-55ee-3b85-a013-acbe582190a8,SESCO,II.1.1,Formosa,AR-P,annual,2015,bioetanol combustion consumption by to the public,47.56171689,TJ,N2O,0.6,kg/TJ,28.537030134,kg -362a4ccc-9a06-333e-8145-467d230093fc,SESCO,II.1.1,Jujuy,AR-Y,annual,2015,bioetanol combustion consumption by to the public,70.51527332999999,TJ,CH4,10.0,kg/TJ,705.1527332999999,kg -58424f2d-5c83-310d-acdc-8aba0cebfebb,SESCO,II.1.1,Jujuy,AR-Y,annual,2015,bioetanol combustion consumption by to the public,70.51527332999999,TJ,N2O,0.6,kg/TJ,42.30916399799999,kg -41ebc2c6-496f-379a-b96a-0a117dfa7683,SESCO,II.1.1,La Pampa,AR-L,annual,2015,bioetanol combustion consumption by to the public,90.86709438,TJ,CH4,10.0,kg/TJ,908.6709438,kg -fe6ea7ec-f90f-3bb5-8e5e-0b94a27245b1,SESCO,II.1.1,La Pampa,AR-L,annual,2015,bioetanol combustion consumption by to the public,90.86709438,TJ,N2O,0.6,kg/TJ,54.520256628,kg -78ac4189-4cc4-3343-9ad2-21ebc36da048,SESCO,II.1.1,La Rioja,AR-F,annual,2015,bioetanol combustion consumption by to the public,61.95849732,TJ,CH4,10.0,kg/TJ,619.5849732,kg -bb932856-3e28-3b2d-b9fc-6aed31e9a0ab,SESCO,II.1.1,La Rioja,AR-F,annual,2015,bioetanol combustion consumption by to the public,61.95849732,TJ,N2O,0.6,kg/TJ,37.175098391999995,kg -365283f9-e649-3679-84ce-34d1dd2f5941,SESCO,II.1.1,Mendoza,AR-M,annual,2015,bioetanol combustion consumption by to the public,308.91437693999995,TJ,CH4,10.0,kg/TJ,3089.1437693999997,kg -3588cb1f-17b7-307f-b3c8-94552337e4fb,SESCO,II.1.1,Mendoza,AR-M,annual,2015,bioetanol combustion consumption by to the public,308.91437693999995,TJ,N2O,0.6,kg/TJ,185.34862616399997,kg -39800538-f923-3c4f-8b49-2c293fdfd39f,SESCO,II.1.1,Misiones,AR-N,annual,2015,bioetanol combustion consumption by to the public,199.06247502,TJ,CH4,10.0,kg/TJ,1990.6247501999999,kg -dd1ec394-35dc-37e5-bcc2-a5afdce393a5,SESCO,II.1.1,Misiones,AR-N,annual,2015,bioetanol combustion consumption by to the public,199.06247502,TJ,N2O,0.6,kg/TJ,119.437485012,kg -7f2a0539-8223-34f4-816a-cafaeb6e4ecb,SESCO,II.1.1,Neuquén,AR-Q,annual,2015,bioetanol combustion consumption by to the public,184.28799239999998,TJ,CH4,10.0,kg/TJ,1842.8799239999998,kg -b9dbd804-7468-3d35-9464-6a16b816990e,SESCO,II.1.1,Neuquén,AR-Q,annual,2015,bioetanol combustion consumption by to the public,184.28799239999998,TJ,N2O,0.6,kg/TJ,110.57279543999998,kg -fa2b0144-380d-3d2c-8093-b97c58d92422,SESCO,II.1.1,Rio Negro,AR-R,annual,2015,bioetanol combustion consumption by to the public,180.55890225,TJ,CH4,10.0,kg/TJ,1805.5890224999998,kg -cca11d71-1e9e-3d09-9a15-7dfb5a3fda47,SESCO,II.1.1,Rio Negro,AR-R,annual,2015,bioetanol combustion consumption by to the public,180.55890225,TJ,N2O,0.6,kg/TJ,108.33534135,kg -b593694a-6c51-3a37-bb6d-7f143be968a8,SESCO,II.1.1,Salta,AR-A,annual,2015,bioetanol combustion consumption by to the public,165.71539790999998,TJ,CH4,10.0,kg/TJ,1657.1539790999998,kg -5919fca1-4f7a-39b7-bfd3-83a57f51e20f,SESCO,II.1.1,Salta,AR-A,annual,2015,bioetanol combustion consumption by to the public,165.71539790999998,TJ,N2O,0.6,kg/TJ,99.42923874599998,kg -8b2f2936-fbb5-3410-be09-7fba3083883b,SESCO,II.1.1,San Juan,AR-J,annual,2015,bioetanol combustion consumption by to the public,100.61449505999998,TJ,CH4,10.0,kg/TJ,1006.1449505999998,kg -1a860abf-1aa0-3fe2-8d90-1ec338ef0d63,SESCO,II.1.1,San Juan,AR-J,annual,2015,bioetanol combustion consumption by to the public,100.61449505999998,TJ,N2O,0.6,kg/TJ,60.368697035999986,kg -9a3db61b-478d-3131-97ad-4d122f2304f9,SESCO,II.1.1,San Luis,AR-D,annual,2015,bioetanol combustion consumption by to the public,78.224616,TJ,CH4,10.0,kg/TJ,782.2461599999999,kg -99452489-f875-37de-bbc5-ffc5a48ae034,SESCO,II.1.1,San Luis,AR-D,annual,2015,bioetanol combustion consumption by to the public,78.224616,TJ,N2O,0.6,kg/TJ,46.934769599999996,kg -bc7f790b-f9ba-32cd-9ab7-e3cc6a401354,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2015,bioetanol combustion consumption by to the public,147.56076828,TJ,CH4,10.0,kg/TJ,1475.6076828,kg -337ba6bf-5681-36c3-85fb-774e4e60c5ab,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2015,bioetanol combustion consumption by to the public,147.56076828,TJ,N2O,0.6,kg/TJ,88.53646096799999,kg -5dace457-4377-3ad1-bce6-4c91a0b711c4,SESCO,II.1.1,Santa Fe,AR-S,annual,2015,bioetanol combustion consumption by to the public,440.36049087,TJ,CH4,10.0,kg/TJ,4403.6049087,kg -3b2b71e4-313e-3f30-b36d-0f5113eb4c10,SESCO,II.1.1,Santa Fe,AR-S,annual,2015,bioetanol combustion consumption by to the public,440.36049087,TJ,N2O,0.6,kg/TJ,264.216294522,kg -4c1280f8-0f8f-396f-abeb-375f646ab940,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2015,bioetanol combustion consumption by to the public,74.96717426999999,TJ,CH4,10.0,kg/TJ,749.6717426999999,kg -949753b4-80c4-30e1-ba0c-822d58c70dd5,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2015,bioetanol combustion consumption by to the public,74.96717426999999,TJ,N2O,0.6,kg/TJ,44.98030456199999,kg -e1baf799-8121-3ae0-a237-ed47c170eed9,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2015,bioetanol combustion consumption by to the public,112.34051837999999,TJ,CH4,10.0,kg/TJ,1123.4051838,kg -3559014a-4b2e-3ddd-b949-696177c639d3,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2015,bioetanol combustion consumption by to the public,112.34051837999999,TJ,N2O,0.6,kg/TJ,67.404311028,kg -06682f93-4ebe-322a-9136-a1682e4c0784,SESCO,II.1.1,Tucuman,AR-T,annual,2015,bioetanol combustion consumption by to the public,135.56824443,TJ,CH4,10.0,kg/TJ,1355.6824443,kg -3b2c48a2-087e-301c-9505-9e85b81a4a82,SESCO,II.1.1,Tucuman,AR-T,annual,2015,bioetanol combustion consumption by to the public,135.56824443,TJ,N2O,0.6,kg/TJ,81.340946658,kg -2efa6781-b189-36ed-9745-03caf860e33e,SESCO,II.1.1,Buenos Aires,AR-B,annual,2015,bioetanol combustion consumption by to the public,992.4594773399999,TJ,CH4,10.0,kg/TJ,9924.5947734,kg -a3efa743-ac56-38be-83f2-fafd677f337f,SESCO,II.1.1,Buenos Aires,AR-B,annual,2015,bioetanol combustion consumption by to the public,992.4594773399999,TJ,N2O,0.6,kg/TJ,595.4756864039999,kg -c1935c65-86fd-3eac-a6ca-57d2070b4c36,SESCO,II.1.1,Capital Federal,AR-C,annual,2015,bioetanol combustion consumption by to the public,241.91729406,TJ,CH4,10.0,kg/TJ,2419.1729406,kg -6339f99a-60d7-353d-a271-a0b3b348539c,SESCO,II.1.1,Capital Federal,AR-C,annual,2015,bioetanol combustion consumption by to the public,241.91729406,TJ,N2O,0.6,kg/TJ,145.150376436,kg -d8fddb18-6bc3-321e-a692-dd83521e37a0,SESCO,II.1.1,Catamarca,AR-K,annual,2015,bioetanol combustion consumption by to the public,16.74543618,TJ,CH4,10.0,kg/TJ,167.4543618,kg -6d3d3912-9c85-3cda-8c9d-8724586fad81,SESCO,II.1.1,Catamarca,AR-K,annual,2015,bioetanol combustion consumption by to the public,16.74543618,TJ,N2O,0.6,kg/TJ,10.047261707999999,kg -e73034cb-e8e5-3744-9f59-ad018f9f64fb,SESCO,II.1.1,Chaco,AR-H,annual,2015,bioetanol combustion consumption by to the public,61.632561419999995,TJ,CH4,10.0,kg/TJ,616.3256141999999,kg -33134fe6-4c23-374c-96db-c3ff2e4050da,SESCO,II.1.1,Chaco,AR-H,annual,2015,bioetanol combustion consumption by to the public,61.632561419999995,TJ,N2O,0.6,kg/TJ,36.979536851999995,kg -6bac8ce0-9576-309d-80e8-2e63cd23b287,SESCO,II.1.1,Chubut,AR-U,annual,2015,bioetanol combustion consumption by to the public,92.92049054999998,TJ,CH4,10.0,kg/TJ,929.2049054999998,kg -17879175-2e86-3dc8-9666-c5b0d4ad0ee0,SESCO,II.1.1,Chubut,AR-U,annual,2015,bioetanol combustion consumption by to the public,92.92049054999998,TJ,N2O,0.6,kg/TJ,55.75229432999999,kg -d642ecc4-ccb5-38da-8d39-fb989ec5fee7,SESCO,II.1.1,Corrientes,AR-W,annual,2015,bioetanol combustion consumption by to the public,65.44984599,TJ,CH4,10.0,kg/TJ,654.4984599,kg -d34584dd-24e0-3d21-aef5-dfb9f1986fb6,SESCO,II.1.1,Corrientes,AR-W,annual,2015,bioetanol combustion consumption by to the public,65.44984599,TJ,N2O,0.6,kg/TJ,39.269907593999996,kg -104abe7d-4fa3-3ebe-83f6-d1e85fb2a84a,SESCO,II.1.1,Córdoba,AR-X,annual,2015,bioetanol combustion consumption by to the public,203.41659518999998,TJ,CH4,10.0,kg/TJ,2034.1659518999998,kg -1c91e168-5fcc-35fe-a427-2789d7ab6961,SESCO,II.1.1,Córdoba,AR-X,annual,2015,bioetanol combustion consumption by to the public,203.41659518999998,TJ,N2O,0.6,kg/TJ,122.04995711399998,kg -f7f7d6c7-0485-3dae-8ecf-d8d122605d62,SESCO,II.1.1,Entre Rios,AR-E,annual,2015,bioetanol combustion consumption by to the public,87.68634344999998,TJ,CH4,10.0,kg/TJ,876.8634344999998,kg -6863bd95-963f-339c-ba1f-a074274a8f19,SESCO,II.1.1,Entre Rios,AR-E,annual,2015,bioetanol combustion consumption by to the public,87.68634344999998,TJ,N2O,0.6,kg/TJ,52.611806069999986,kg -8f929f28-13e3-3be8-9721-27e43263a405,SESCO,II.1.1,Formosa,AR-P,annual,2015,bioetanol combustion consumption by to the public,17.37621801,TJ,CH4,10.0,kg/TJ,173.7621801,kg -47ea4cc2-5b1f-3ad8-bad3-3a4f2f358547,SESCO,II.1.1,Formosa,AR-P,annual,2015,bioetanol combustion consumption by to the public,17.37621801,TJ,N2O,0.6,kg/TJ,10.425730805999999,kg -d61f6c62-8149-377a-8ed7-2a7e5ccf5054,SESCO,II.1.1,Jujuy,AR-Y,annual,2015,bioetanol combustion consumption by to the public,22.51641888,TJ,CH4,10.0,kg/TJ,225.1641888,kg -95e44e5b-6863-3d7e-adbf-7ad2652bd3f2,SESCO,II.1.1,Jujuy,AR-Y,annual,2015,bioetanol combustion consumption by to the public,22.51641888,TJ,N2O,0.6,kg/TJ,13.509851328,kg -a7bb9648-129c-30b8-9594-56a30dd13aec,SESCO,II.1.1,La Pampa,AR-L,annual,2015,bioetanol combustion consumption by to the public,52.91473472999999,TJ,CH4,10.0,kg/TJ,529.1473472999999,kg -99b73450-db79-393a-aa18-7d6b39633a58,SESCO,II.1.1,La Pampa,AR-L,annual,2015,bioetanol combustion consumption by to the public,52.91473472999999,TJ,N2O,0.6,kg/TJ,31.748840837999992,kg -9f370ba2-c13d-3eae-8a53-912e2b9a04f0,SESCO,II.1.1,La Rioja,AR-F,annual,2015,bioetanol combustion consumption by to the public,23.413701239999998,TJ,CH4,10.0,kg/TJ,234.13701239999997,kg -43a43877-e193-3fa1-897f-fa7a1b989dd1,SESCO,II.1.1,La Rioja,AR-F,annual,2015,bioetanol combustion consumption by to the public,23.413701239999998,TJ,N2O,0.6,kg/TJ,14.048220743999998,kg -f6f4d668-c199-3ef7-8066-c2dd60d5ab17,SESCO,II.1.1,Mendoza,AR-M,annual,2015,bioetanol combustion consumption by to the public,163.79237609999998,TJ,CH4,10.0,kg/TJ,1637.9237609999998,kg -caa052d1-a3ef-32bc-9403-c65df5e01052,SESCO,II.1.1,Mendoza,AR-M,annual,2015,bioetanol combustion consumption by to the public,163.79237609999998,TJ,N2O,0.6,kg/TJ,98.27542565999998,kg -3336cd23-e1b2-3fd1-a209-663ec40b6a10,SESCO,II.1.1,Misiones,AR-N,annual,2015,bioetanol combustion consumption by to the public,62.84235878999999,TJ,CH4,10.0,kg/TJ,628.4235878999999,kg -631774ab-e8a1-3504-8038-c8595ebedd79,SESCO,II.1.1,Misiones,AR-N,annual,2015,bioetanol combustion consumption by to the public,62.84235878999999,TJ,N2O,0.6,kg/TJ,37.705415273999996,kg -528e1a54-c264-3294-b55b-21b9cf359525,SESCO,II.1.1,Neuquén,AR-Q,annual,2015,bioetanol combustion consumption by to the public,91.56689792999998,TJ,CH4,10.0,kg/TJ,915.6689792999998,kg -50da4543-36af-344e-9fbe-e1acc666b7df,SESCO,II.1.1,Neuquén,AR-Q,annual,2015,bioetanol combustion consumption by to the public,91.56689792999998,TJ,N2O,0.6,kg/TJ,54.94013875799999,kg -c0f994d5-ddb3-36b5-a437-87e03fccfcd8,SESCO,II.1.1,Rio Negro,AR-R,annual,2015,bioetanol combustion consumption by to the public,85.05584901,TJ,CH4,10.0,kg/TJ,850.5584901,kg -e039c374-ca6c-3a54-ae4a-3b6d148c924e,SESCO,II.1.1,Rio Negro,AR-R,annual,2015,bioetanol combustion consumption by to the public,85.05584901,TJ,N2O,0.6,kg/TJ,51.033509406,kg -dce11410-1d3c-39b8-8875-5012507191fb,SESCO,II.1.1,Salta,AR-A,annual,2015,bioetanol combustion consumption by to the public,54.2779137,TJ,CH4,10.0,kg/TJ,542.779137,kg -879ecdad-514e-3c43-a741-8f4800bd99ae,SESCO,II.1.1,Salta,AR-A,annual,2015,bioetanol combustion consumption by to the public,54.2779137,TJ,N2O,0.6,kg/TJ,32.56674822,kg -86c19b3c-1232-3876-adce-c9e8194a8381,SESCO,II.1.1,San Juan,AR-J,annual,2015,bioetanol combustion consumption by to the public,42.09941466,TJ,CH4,10.0,kg/TJ,420.9941466,kg -3bb7cc89-842c-3ad1-ae35-2ab6626b568f,SESCO,II.1.1,San Juan,AR-J,annual,2015,bioetanol combustion consumption by to the public,42.09941466,TJ,N2O,0.6,kg/TJ,25.259648796,kg -a1262e46-2795-3daa-a874-ae6b07699c6f,SESCO,II.1.1,San Luis,AR-D,annual,2015,bioetanol combustion consumption by to the public,39.68557172999999,TJ,CH4,10.0,kg/TJ,396.8557172999999,kg -78279342-ad03-3c95-9a5c-23d8c30b9f7b,SESCO,II.1.1,San Luis,AR-D,annual,2015,bioetanol combustion consumption by to the public,39.68557172999999,TJ,N2O,0.6,kg/TJ,23.811343037999993,kg -6dce9f21-6894-3902-a471-21cbd64e14ca,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2015,bioetanol combustion consumption by to the public,56.79528920999999,TJ,CH4,10.0,kg/TJ,567.9528920999999,kg -85bdb8b5-dd13-313e-a6b5-34420fb49377,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2015,bioetanol combustion consumption by to the public,56.79528920999999,TJ,N2O,0.6,kg/TJ,34.077173525999996,kg -02bae1cb-8562-3dcd-9d63-14a7cfa37dea,SESCO,II.1.1,Santa Fe,AR-S,annual,2015,bioetanol combustion consumption by to the public,206.27716203,TJ,CH4,10.0,kg/TJ,2062.7716203,kg -83706404-a5f7-3ee9-b681-08501b9f179f,SESCO,II.1.1,Santa Fe,AR-S,annual,2015,bioetanol combustion consumption by to the public,206.27716203,TJ,N2O,0.6,kg/TJ,123.76629721799999,kg -7ede9d0d-042c-3996-9acd-4cd3cb41b66f,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2015,bioetanol combustion consumption by to the public,39.01452722999999,TJ,CH4,10.0,kg/TJ,390.14527229999993,kg -00e6a95c-8830-3664-b341-98ffabe8bb4c,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2015,bioetanol combustion consumption by to the public,39.01452722999999,TJ,N2O,0.6,kg/TJ,23.408716337999994,kg -8a96294d-7f92-38ab-87be-9037260108de,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2015,bioetanol combustion consumption by to the public,9.087859799999999,TJ,CH4,10.0,kg/TJ,90.87859799999998,kg -7ad4ddf6-9e45-39e6-85af-96a2bc08c260,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2015,bioetanol combustion consumption by to the public,9.087859799999999,TJ,N2O,0.6,kg/TJ,5.452715879999999,kg -1c4a1a3d-1727-346f-a88a-eb028303be02,SESCO,II.1.1,Tucuman,AR-T,annual,2015,bioetanol combustion consumption by to the public,40.057522109999994,TJ,CH4,10.0,kg/TJ,400.5752210999999,kg -da995ebd-310f-3cc3-b8df-83f12a839760,SESCO,II.1.1,Tucuman,AR-T,annual,2015,bioetanol combustion consumption by to the public,40.057522109999994,TJ,N2O,0.6,kg/TJ,24.034513265999994,kg -78ec8621-49a8-3ce8-8510-76b01038c190,SESCO,II.1.1,Buenos Aires,AR-B,annual,2015,bioetanol combustion consumption by freight transport,12.226430789999998,TJ,CH4,10.0,kg/TJ,122.26430789999998,kg -019e459a-c9d0-3789-8edc-e9b7e6c0a5d7,SESCO,II.1.1,Buenos Aires,AR-B,annual,2015,bioetanol combustion consumption by freight transport,12.226430789999998,TJ,N2O,0.6,kg/TJ,7.335858473999998,kg -465f99eb-b62a-3d75-8bf1-1284f722972d,SESCO,II.1.1,Capital Federal,AR-C,annual,2015,bioetanol combustion consumption by freight transport,12.72300372,TJ,CH4,10.0,kg/TJ,127.2300372,kg -e22f2387-747b-3925-b5e8-a1c609dd2011,SESCO,II.1.1,Capital Federal,AR-C,annual,2015,bioetanol combustion consumption by freight transport,12.72300372,TJ,N2O,0.6,kg/TJ,7.633802231999999,kg -2d7b6aa7-2a81-369d-a760-2a6e165649fb,SESCO,II.1.1,Chaco,AR-H,annual,2015,bioetanol combustion consumption by freight transport,0.36619856999999995,TJ,CH4,10.0,kg/TJ,3.6619856999999993,kg -576b6bcc-e128-3ddb-938f-410c69b6db5f,SESCO,II.1.1,Chaco,AR-H,annual,2015,bioetanol combustion consumption by freight transport,0.36619856999999995,TJ,N2O,0.6,kg/TJ,0.21971914199999995,kg -8bb457ba-8769-356c-a2b9-f0fdf487c7da,SESCO,II.1.1,Chubut,AR-U,annual,2015,bioetanol combustion consumption by freight transport,0.06326991,TJ,CH4,10.0,kg/TJ,0.6326991,kg -421cac05-cacf-3f1f-8666-d0a58956a9cd,SESCO,II.1.1,Chubut,AR-U,annual,2015,bioetanol combustion consumption by freight transport,0.06326991,TJ,N2O,0.6,kg/TJ,0.037961945999999996,kg -2229883a-fe65-3bf8-a3af-7ccc2dfd3060,SESCO,II.1.1,Corrientes,AR-W,annual,2015,bioetanol combustion consumption by freight transport,0.07285625999999999,TJ,CH4,10.0,kg/TJ,0.7285626,kg -6880ace5-503c-3d74-a4f3-75d21570290a,SESCO,II.1.1,Corrientes,AR-W,annual,2015,bioetanol combustion consumption by freight transport,0.07285625999999999,TJ,N2O,0.6,kg/TJ,0.04371375599999999,kg -7080d980-a94b-339c-bdea-4752f3ddcd61,SESCO,II.1.1,Córdoba,AR-X,annual,2015,bioetanol combustion consumption by freight transport,0.25499690999999997,TJ,CH4,10.0,kg/TJ,2.5499690999999998,kg -db61c14c-3153-3f9c-8680-3a132da0fdea,SESCO,II.1.1,Córdoba,AR-X,annual,2015,bioetanol combustion consumption by freight transport,0.25499690999999997,TJ,N2O,0.6,kg/TJ,0.15299814599999997,kg -ab035b87-aa9a-37fa-a68e-63a112b0b922,SESCO,II.1.1,Entre Rios,AR-E,annual,2015,bioetanol combustion consumption by freight transport,0.12845708999999997,TJ,CH4,10.0,kg/TJ,1.2845708999999996,kg -0112bcec-47b5-38f7-a6f5-7d84b469a679,SESCO,II.1.1,Entre Rios,AR-E,annual,2015,bioetanol combustion consumption by freight transport,0.12845708999999997,TJ,N2O,0.6,kg/TJ,0.07707425399999998,kg -441fcc6d-ad86-34b7-9feb-14e10984adad,SESCO,II.1.1,Mendoza,AR-M,annual,2015,bioetanol combustion consumption by freight transport,0.37961945999999996,TJ,CH4,10.0,kg/TJ,3.7961945999999998,kg -227b2ab5-2c6b-3050-b2f0-0325e9afc363,SESCO,II.1.1,Mendoza,AR-M,annual,2015,bioetanol combustion consumption by freight transport,0.37961945999999996,TJ,N2O,0.6,kg/TJ,0.22777167599999998,kg -dc0e860c-8884-3994-8741-e2fa78d92981,SESCO,II.1.1,Misiones,AR-N,annual,2015,bioetanol combustion consumption by freight transport,0.02684178,TJ,CH4,10.0,kg/TJ,0.2684178,kg -cf272d45-a916-351a-b4f7-cf502a7c1942,SESCO,II.1.1,Misiones,AR-N,annual,2015,bioetanol combustion consumption by freight transport,0.02684178,TJ,N2O,0.6,kg/TJ,0.016105068,kg -419f9268-fd56-3f53-ab20-e99b448d1d94,SESCO,II.1.1,Neuquén,AR-Q,annual,2015,bioetanol combustion consumption by freight transport,0.05751809999999999,TJ,CH4,10.0,kg/TJ,0.5751809999999999,kg -24df73f4-9bff-3988-a3d9-f63d4a6489b2,SESCO,II.1.1,Neuquén,AR-Q,annual,2015,bioetanol combustion consumption by freight transport,0.05751809999999999,TJ,N2O,0.6,kg/TJ,0.03451085999999999,kg -45665c7c-ca13-3e78-b982-5b48fc5e84d7,SESCO,II.1.1,Rio Negro,AR-R,annual,2015,bioetanol combustion consumption by freight transport,0.07477352999999999,TJ,CH4,10.0,kg/TJ,0.7477352999999999,kg -a1b7884b-59da-323b-85e7-dba8cc3e492e,SESCO,II.1.1,Rio Negro,AR-R,annual,2015,bioetanol combustion consumption by freight transport,0.07477352999999999,TJ,N2O,0.6,kg/TJ,0.044864117999999995,kg -cdafb186-d07e-37f6-9037-0388a733adc2,SESCO,II.1.1,Salta,AR-A,annual,2015,bioetanol combustion consumption by freight transport,0.6576236099999999,TJ,CH4,10.0,kg/TJ,6.576236099999999,kg -b9160f12-83eb-35d6-8ddc-92d4d269163e,SESCO,II.1.1,Salta,AR-A,annual,2015,bioetanol combustion consumption by freight transport,0.6576236099999999,TJ,N2O,0.6,kg/TJ,0.39457416599999995,kg -6facc6db-7c3e-399c-a38d-79dbfa93628b,SESCO,II.1.1,San Juan,AR-J,annual,2015,bioetanol combustion consumption by freight transport,0.0019172699999999998,TJ,CH4,10.0,kg/TJ,0.019172699999999997,kg -223dfcb3-df64-368c-a56d-dd5498d96d8a,SESCO,II.1.1,San Juan,AR-J,annual,2015,bioetanol combustion consumption by freight transport,0.0019172699999999998,TJ,N2O,0.6,kg/TJ,0.0011503619999999998,kg -ff30c057-ab5c-3da7-88dc-a4a66a1120c4,SESCO,II.1.1,San Luis,AR-D,annual,2015,bioetanol combustion consumption by freight transport,0.009586349999999999,TJ,CH4,10.0,kg/TJ,0.09586349999999999,kg -339973c4-7ddf-38a2-96dd-6b81a0f98371,SESCO,II.1.1,San Luis,AR-D,annual,2015,bioetanol combustion consumption by freight transport,0.009586349999999999,TJ,N2O,0.6,kg/TJ,0.005751809999999999,kg -9344a932-c29c-315b-a690-0b945b12251f,SESCO,II.1.1,Santa Fe,AR-S,annual,2015,bioetanol combustion consumption by freight transport,1.0755884699999998,TJ,CH4,10.0,kg/TJ,10.755884699999998,kg -ff9ca05f-9e83-3f47-9349-e6957b6b6c35,SESCO,II.1.1,Santa Fe,AR-S,annual,2015,bioetanol combustion consumption by freight transport,1.0755884699999998,TJ,N2O,0.6,kg/TJ,0.6453530819999999,kg -dd36fd37-455b-37dc-86ab-f6bb7ee20290,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2015,bioetanol combustion consumption by freight transport,0.0038345399999999996,TJ,CH4,10.0,kg/TJ,0.038345399999999995,kg -bf133a78-8b68-3ec6-bf50-e883a6b53745,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2015,bioetanol combustion consumption by freight transport,0.0038345399999999996,TJ,N2O,0.6,kg/TJ,0.0023007239999999997,kg -53ad5da2-bdf2-3d33-9536-8af116cb7c3d,SESCO,II.1.1,Tucuman,AR-T,annual,2015,bioetanol combustion consumption by freight transport,0.09011168999999998,TJ,CH4,10.0,kg/TJ,0.9011168999999998,kg -bfe38c43-c08f-3c02-b173-1856d5d5d610,SESCO,II.1.1,Tucuman,AR-T,annual,2015,bioetanol combustion consumption by freight transport,0.09011168999999998,TJ,N2O,0.6,kg/TJ,0.05406701399999999,kg -d09b3a56-9cc1-326f-bd38-edd736c8dd66,SESCO,II.1.1,Buenos Aires,AR-B,annual,2015,bioetanol combustion consumption by freight transport,12.078800999999999,TJ,CH4,10.0,kg/TJ,120.78800999999999,kg -0562810e-c5bc-39fe-870e-5ca4a8dcd17f,SESCO,II.1.1,Buenos Aires,AR-B,annual,2015,bioetanol combustion consumption by freight transport,12.078800999999999,TJ,N2O,0.6,kg/TJ,7.247280599999999,kg -8120e42c-a3f1-38af-9717-1d621aca073a,SESCO,II.1.1,Capital Federal,AR-C,annual,2015,bioetanol combustion consumption by freight transport,13.033601459999998,TJ,CH4,10.0,kg/TJ,130.33601459999997,kg -a502aa1c-2898-355e-a5a9-5f9a8f11f7a0,SESCO,II.1.1,Capital Federal,AR-C,annual,2015,bioetanol combustion consumption by freight transport,13.033601459999998,TJ,N2O,0.6,kg/TJ,7.820160875999998,kg -d4d655b5-588d-3688-a78b-defb6351bb65,SESCO,II.1.1,Chaco,AR-H,annual,2015,bioetanol combustion consumption by freight transport,0.39495761999999995,TJ,CH4,10.0,kg/TJ,3.9495761999999996,kg -d80c1a83-8953-3ae1-a20e-69a786c4c67d,SESCO,II.1.1,Chaco,AR-H,annual,2015,bioetanol combustion consumption by freight transport,0.39495761999999995,TJ,N2O,0.6,kg/TJ,0.23697457199999997,kg -4b816b67-1d8e-31bb-910c-fc56097e64b9,SESCO,II.1.1,Chubut,AR-U,annual,2015,bioetanol combustion consumption by freight transport,0.03451086,TJ,CH4,10.0,kg/TJ,0.3451086,kg -cee3b19b-ba53-3736-981c-e477d3f70700,SESCO,II.1.1,Chubut,AR-U,annual,2015,bioetanol combustion consumption by freight transport,0.03451086,TJ,N2O,0.6,kg/TJ,0.020706515999999998,kg -f1b5e5fc-ab65-3d79-a320-3e4b5a7a7674,SESCO,II.1.1,Corrientes,AR-W,annual,2015,bioetanol combustion consumption by freight transport,0.18022337999999996,TJ,CH4,10.0,kg/TJ,1.8022337999999996,kg -21c2a7e7-eef1-3452-a09e-54a26a503c9d,SESCO,II.1.1,Corrientes,AR-W,annual,2015,bioetanol combustion consumption by freight transport,0.18022337999999996,TJ,N2O,0.6,kg/TJ,0.10813402799999998,kg -21d89ae9-5fe7-3d60-a40e-ac7dec72bf6d,SESCO,II.1.1,Córdoba,AR-X,annual,2015,bioetanol combustion consumption by freight transport,0.36236402999999995,TJ,CH4,10.0,kg/TJ,3.6236402999999995,kg -57c9740d-0f54-3aec-bbff-eb5c3c3a3d70,SESCO,II.1.1,Córdoba,AR-X,annual,2015,bioetanol combustion consumption by freight transport,0.36236402999999995,TJ,N2O,0.6,kg/TJ,0.21741841799999997,kg -fb565422-07c8-318a-9799-c4e7fd589514,SESCO,II.1.1,Entre Rios,AR-E,annual,2015,bioetanol combustion consumption by freight transport,0.14187798,TJ,CH4,10.0,kg/TJ,1.4187797999999998,kg -9bb56055-5086-38e1-aa2a-9312ac70ab6e,SESCO,II.1.1,Entre Rios,AR-E,annual,2015,bioetanol combustion consumption by freight transport,0.14187798,TJ,N2O,0.6,kg/TJ,0.085126788,kg -92736f31-fa43-34de-b28d-a8f65d83a9ed,SESCO,II.1.1,Jujuy,AR-Y,annual,2015,bioetanol combustion consumption by freight transport,0.0038345399999999996,TJ,CH4,10.0,kg/TJ,0.038345399999999995,kg -832dccf9-9a4b-3ae0-aff3-52971d35831c,SESCO,II.1.1,Jujuy,AR-Y,annual,2015,bioetanol combustion consumption by freight transport,0.0038345399999999996,TJ,N2O,0.6,kg/TJ,0.0023007239999999997,kg -fddc1262-6993-3d13-a7bd-ccda5607ecc4,SESCO,II.1.1,La Pampa,AR-L,annual,2015,bioetanol combustion consumption by freight transport,0.00575181,TJ,CH4,10.0,kg/TJ,0.0575181,kg -ba2b6ba5-d8ea-33e0-a263-afa5e20a4dca,SESCO,II.1.1,La Pampa,AR-L,annual,2015,bioetanol combustion consumption by freight transport,0.00575181,TJ,N2O,0.6,kg/TJ,0.0034510860000000003,kg -112422ed-218b-323b-ae0c-9b857868d98e,SESCO,II.1.1,La Rioja,AR-F,annual,2015,bioetanol combustion consumption by freight transport,0.05943537,TJ,CH4,10.0,kg/TJ,0.5943537,kg -f3d3c0a8-984b-3f09-8e06-4015773dcd6b,SESCO,II.1.1,La Rioja,AR-F,annual,2015,bioetanol combustion consumption by freight transport,0.05943537,TJ,N2O,0.6,kg/TJ,0.035661222,kg -3b15b160-b395-321c-b642-8a8780a6d92b,SESCO,II.1.1,Mendoza,AR-M,annual,2015,bioetanol combustion consumption by freight transport,0.29717685,TJ,CH4,10.0,kg/TJ,2.9717685,kg -22a8a790-7908-3e2b-830b-09c47cdda4e1,SESCO,II.1.1,Mendoza,AR-M,annual,2015,bioetanol combustion consumption by freight transport,0.29717685,TJ,N2O,0.6,kg/TJ,0.17830611,kg -534ed88c-5bca-3144-b729-99d50038347d,SESCO,II.1.1,Misiones,AR-N,annual,2015,bioetanol combustion consumption by freight transport,0.11503619999999998,TJ,CH4,10.0,kg/TJ,1.1503619999999999,kg -98b11cc4-0106-3903-9ccf-03889257680c,SESCO,II.1.1,Misiones,AR-N,annual,2015,bioetanol combustion consumption by freight transport,0.11503619999999998,TJ,N2O,0.6,kg/TJ,0.06902171999999998,kg -5445e13a-abd6-3df0-87d6-45aa3fdc25ec,SESCO,II.1.1,Neuquén,AR-Q,annual,2015,bioetanol combustion consumption by freight transport,0.09394623,TJ,CH4,10.0,kg/TJ,0.9394623000000001,kg -b3c31dc3-c64a-3013-bc2c-f0232d465b0f,SESCO,II.1.1,Neuquén,AR-Q,annual,2015,bioetanol combustion consumption by freight transport,0.09394623,TJ,N2O,0.6,kg/TJ,0.056367738,kg -1c01a2fa-01f1-3093-b3b7-1a09fde2287d,SESCO,II.1.1,Rio Negro,AR-R,annual,2015,bioetanol combustion consumption by freight transport,0.15146432999999998,TJ,CH4,10.0,kg/TJ,1.5146433,kg -d7a8cc08-e13e-3410-8ea0-07bd9e623552,SESCO,II.1.1,Rio Negro,AR-R,annual,2015,bioetanol combustion consumption by freight transport,0.15146432999999998,TJ,N2O,0.6,kg/TJ,0.09087859799999999,kg -cafff6fb-b291-3368-b7da-62cb5044cfcb,SESCO,II.1.1,Salta,AR-A,annual,2015,bioetanol combustion consumption by freight transport,0.08052533999999999,TJ,CH4,10.0,kg/TJ,0.8052533999999999,kg -6c7ce611-bfa8-3c74-9d5a-c406ec295fdc,SESCO,II.1.1,Salta,AR-A,annual,2015,bioetanol combustion consumption by freight transport,0.08052533999999999,TJ,N2O,0.6,kg/TJ,0.048315203999999994,kg -e1568ab1-9a6f-30d5-b726-ec7693402060,SESCO,II.1.1,San Luis,AR-D,annual,2015,bioetanol combustion consumption by freight transport,0.02300724,TJ,CH4,10.0,kg/TJ,0.2300724,kg -f83e59d5-2f79-3a1c-87ed-c98d34bbe43b,SESCO,II.1.1,San Luis,AR-D,annual,2015,bioetanol combustion consumption by freight transport,0.02300724,TJ,N2O,0.6,kg/TJ,0.013804344000000001,kg -728f0a3a-45de-30b3-acab-25346763cf03,SESCO,II.1.1,Santa Fe,AR-S,annual,2015,bioetanol combustion consumption by freight transport,1.4743806299999997,TJ,CH4,10.0,kg/TJ,14.743806299999997,kg -c69631c2-78bd-3c66-b66c-a7872bb9fd0d,SESCO,II.1.1,Santa Fe,AR-S,annual,2015,bioetanol combustion consumption by freight transport,1.4743806299999997,TJ,N2O,0.6,kg/TJ,0.8846283779999998,kg -dd36fd37-455b-37dc-86ab-f6bb7ee20290,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2015,bioetanol combustion consumption by freight transport,0.0038345399999999996,TJ,CH4,10.0,kg/TJ,0.038345399999999995,kg -bf133a78-8b68-3ec6-bf50-e883a6b53745,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2015,bioetanol combustion consumption by freight transport,0.0038345399999999996,TJ,N2O,0.6,kg/TJ,0.0023007239999999997,kg -f71fac61-75fe-3741-9203-7e2c0c130fae,SESCO,II.1.1,Tucuman,AR-T,annual,2015,bioetanol combustion consumption by freight transport,0.07477352999999999,TJ,CH4,10.0,kg/TJ,0.7477352999999999,kg -dd09322d-0695-36bd-a6f7-85c7502f808d,SESCO,II.1.1,Tucuman,AR-T,annual,2015,bioetanol combustion consumption by freight transport,0.07477352999999999,TJ,N2O,0.6,kg/TJ,0.044864117999999995,kg -1e5826fb-72e6-3eb5-9cfd-f17f4f41a42f,SESCO,II.1.1,Buenos Aires,AR-B,annual,2015,bioetanol combustion consumption by public passenger transport,0.009586349999999999,TJ,CH4,10.0,kg/TJ,0.09586349999999999,kg -e9f9b9d6-f303-34df-8155-c35a3a3d16ed,SESCO,II.1.1,Buenos Aires,AR-B,annual,2015,bioetanol combustion consumption by public passenger transport,0.009586349999999999,TJ,N2O,0.6,kg/TJ,0.005751809999999999,kg -548e2bb5-55e6-322b-ae66-c56a049d2960,SESCO,II.1.1,Capital Federal,AR-C,annual,2016,bioetanol combustion consumption by to the public,1.6661076299999997,TJ,CH4,10.0,kg/TJ,16.661076299999998,kg -acc553a3-be7c-31c7-a3d2-3e7391f9d092,SESCO,II.1.1,Capital Federal,AR-C,annual,2016,bioetanol combustion consumption by to the public,1.6661076299999997,TJ,N2O,0.6,kg/TJ,0.9996645779999997,kg -cb0d2639-e4ea-30ec-9d5d-94e8f7ae2a00,SESCO,II.1.1,Capital Federal,AR-C,annual,2016,bioetanol combustion consumption by to the public,0.34212617999999995,TJ,CH4,10.0,kg/TJ,3.4212617999999995,kg -058c459c-bcc5-32d0-ad30-ca960ecb0207,SESCO,II.1.1,Capital Federal,AR-C,annual,2016,bioetanol combustion consumption by to the public,0.34212617999999995,TJ,N2O,0.6,kg/TJ,0.20527570799999997,kg -59db290e-78da-3ffe-ad39-f8938ba786e0,SESCO,II.5.1,Buenos Aires,AR-B,annual,2016,bioetanol combustion consumption by agriculture machines,1.17400833,TJ,CH4,10.0,kg/TJ,11.740083299999998,kg -9635f07f-08e8-3d09-8df9-53c8de18dc02,SESCO,II.5.1,Buenos Aires,AR-B,annual,2016,bioetanol combustion consumption by agriculture machines,1.17400833,TJ,N2O,0.6,kg/TJ,0.7044049979999999,kg -fd441d0a-6ddb-3e02-bfcb-0f1787a752c5,SESCO,II.5.1,Chaco,AR-H,annual,2016,bioetanol combustion consumption by agriculture machines,0.6889390200000001,TJ,CH4,10.0,kg/TJ,6.889390200000001,kg -a436e905-b0c4-3df2-9908-8b4475dbfeeb,SESCO,II.5.1,Chaco,AR-H,annual,2016,bioetanol combustion consumption by agriculture machines,0.6889390200000001,TJ,N2O,0.6,kg/TJ,0.41336341200000004,kg -145b092d-2b58-36f0-99d0-796f1333435c,SESCO,II.5.1,Córdoba,AR-X,annual,2016,bioetanol combustion consumption by agriculture machines,0.81079218,TJ,CH4,10.0,kg/TJ,8.1079218,kg -357fe57b-bde8-3789-8f62-746debe152b8,SESCO,II.5.1,Córdoba,AR-X,annual,2016,bioetanol combustion consumption by agriculture machines,0.81079218,TJ,N2O,0.6,kg/TJ,0.48647530799999994,kg -62565a0f-d6cf-398d-9b26-08e2276b9838,SESCO,II.5.1,Santa Fe,AR-S,annual,2016,bioetanol combustion consumption by agriculture machines,2.51673642,TJ,CH4,10.0,kg/TJ,25.1673642,kg -50deac4f-d4e7-3d07-8ab0-887c99155685,SESCO,II.5.1,Santa Fe,AR-S,annual,2016,bioetanol combustion consumption by agriculture machines,2.51673642,TJ,N2O,0.6,kg/TJ,1.5100418519999999,kg -89fe14af-0e77-348c-9b07-e5a58d225342,SESCO,II.5.1,Tucuman,AR-T,annual,2016,bioetanol combustion consumption by agriculture machines,0.89515206,TJ,CH4,10.0,kg/TJ,8.9515206,kg -60783fde-fd3f-3caf-8624-af5cd6317d93,SESCO,II.5.1,Tucuman,AR-T,annual,2016,bioetanol combustion consumption by agriculture machines,0.89515206,TJ,N2O,0.6,kg/TJ,0.537091236,kg -7752fad3-0f0d-3d2d-b113-ca8f763586c5,SESCO,II.5.1,Buenos Aires,AR-B,annual,2016,bioetanol combustion consumption by agriculture machines,0.27182628,TJ,CH4,10.0,kg/TJ,2.7182627999999998,kg -0a57a1bc-db13-3638-b32d-0318425566f8,SESCO,II.5.1,Buenos Aires,AR-B,annual,2016,bioetanol combustion consumption by agriculture machines,0.27182628,TJ,N2O,0.6,kg/TJ,0.16309576799999997,kg -6e131edb-45ba-3687-a4ba-545196d21cdd,SESCO,II.5.1,Chaco,AR-H,annual,2016,bioetanol combustion consumption by agriculture machines,0.09841986,TJ,CH4,10.0,kg/TJ,0.9841986,kg -f870c041-8e4f-31cf-849e-775a2946afb1,SESCO,II.5.1,Chaco,AR-H,annual,2016,bioetanol combustion consumption by agriculture machines,0.09841986,TJ,N2O,0.6,kg/TJ,0.059051915999999996,kg -dee14d28-c9bb-3a9a-a317-521ff3d1db9b,SESCO,II.5.1,Córdoba,AR-X,annual,2016,bioetanol combustion consumption by agriculture machines,0.33978284999999997,TJ,CH4,10.0,kg/TJ,3.3978284999999997,kg -3f6d2842-0321-3e89-b34c-93a10f00aab2,SESCO,II.5.1,Córdoba,AR-X,annual,2016,bioetanol combustion consumption by agriculture machines,0.33978284999999997,TJ,N2O,0.6,kg/TJ,0.20386970999999998,kg -772bc070-0c11-321c-bc05-af64aa63e107,SESCO,II.5.1,Santa Fe,AR-S,annual,2016,bioetanol combustion consumption by agriculture machines,0.89280873,TJ,CH4,10.0,kg/TJ,8.928087300000001,kg -005f6a1a-0a4d-3c6a-a2ec-6b9737e35dc3,SESCO,II.5.1,Santa Fe,AR-S,annual,2016,bioetanol combustion consumption by agriculture machines,0.89280873,TJ,N2O,0.6,kg/TJ,0.535685238,kg -fc6569b7-b1f0-32bf-bdf8-613cc6da8734,SESCO,II.5.1,Tucuman,AR-T,annual,2016,bioetanol combustion consumption by agriculture machines,0.25307964,TJ,CH4,10.0,kg/TJ,2.5307964,kg -adaa020d-094b-3275-8ec7-e1ae2657e5fc,SESCO,II.5.1,Tucuman,AR-T,annual,2016,bioetanol combustion consumption by agriculture machines,0.25307964,TJ,N2O,0.6,kg/TJ,0.15184778399999999,kg -c6bcff0b-aa63-3554-8ac7-fe0e170bb802,SESCO,II.1.1,Buenos Aires,AR-B,annual,2016,bioetanol combustion consumption by to the public,0.51787593,TJ,CH4,10.0,kg/TJ,5.178759299999999,kg -148f9003-5a8d-3d9a-a869-8bcf20c72857,SESCO,II.1.1,Buenos Aires,AR-B,annual,2016,bioetanol combustion consumption by to the public,0.51787593,TJ,N2O,0.6,kg/TJ,0.31072555799999996,kg -c8fa2155-550f-3e7c-91d0-6d113a207929,SESCO,II.1.1,Santa Fe,AR-S,annual,2016,bioetanol combustion consumption by to the public,0.85765878,TJ,CH4,10.0,kg/TJ,8.576587799999999,kg -8e3fadad-53e2-3e19-a50b-3f44c59eca52,SESCO,II.1.1,Santa Fe,AR-S,annual,2016,bioetanol combustion consumption by to the public,0.85765878,TJ,N2O,0.6,kg/TJ,0.514595268,kg -d5bd48db-0c33-37fc-96f8-a945255ebdf2,SESCO,II.1.1,Buenos Aires,AR-B,annual,2016,bioetanol combustion consumption by to the public,724.27409307,TJ,CH4,10.0,kg/TJ,7242.740930700001,kg -84c7d386-19dc-3062-9fa5-26c9af3e5686,SESCO,II.1.1,Buenos Aires,AR-B,annual,2016,bioetanol combustion consumption by to the public,724.27409307,TJ,N2O,0.6,kg/TJ,434.56445584200003,kg -03e8dce3-b44c-3e3f-8476-870705ad0e5f,SESCO,II.1.1,Capital Federal,AR-C,annual,2016,bioetanol combustion consumption by to the public,279.12106629,TJ,CH4,10.0,kg/TJ,2791.2106629,kg -23cb2368-8936-37b9-b721-4b93ab71ae49,SESCO,II.1.1,Capital Federal,AR-C,annual,2016,bioetanol combustion consumption by to the public,279.12106629,TJ,N2O,0.6,kg/TJ,167.472639774,kg -d173cbb6-3b35-3fbb-a26b-523768aeece8,SESCO,II.1.1,Catamarca,AR-K,annual,2016,bioetanol combustion consumption by to the public,27.733310549999995,TJ,CH4,10.0,kg/TJ,277.33310549999993,kg -c0b64239-28ac-3b1d-9332-5ac522280f24,SESCO,II.1.1,Catamarca,AR-K,annual,2016,bioetanol combustion consumption by to the public,27.733310549999995,TJ,N2O,0.6,kg/TJ,16.639986329999996,kg -b06d4a66-d444-30e8-a0ff-4ddb08c063f6,SESCO,II.1.1,Chaco,AR-H,annual,2016,bioetanol combustion consumption by to the public,34.69768731,TJ,CH4,10.0,kg/TJ,346.9768731,kg -438ee61f-e52c-3b25-8ec6-495dfed8dabe,SESCO,II.1.1,Chaco,AR-H,annual,2016,bioetanol combustion consumption by to the public,34.69768731,TJ,N2O,0.6,kg/TJ,20.818612385999998,kg -53d86389-30d3-39c8-9630-b2bc43f1997f,SESCO,II.1.1,Chubut,AR-U,annual,2016,bioetanol combustion consumption by to the public,23.6441997,TJ,CH4,10.0,kg/TJ,236.44199700000001,kg -31f4d65d-1cc5-3831-a8d2-b50a8b085e3b,SESCO,II.1.1,Chubut,AR-U,annual,2016,bioetanol combustion consumption by to the public,23.6441997,TJ,N2O,0.6,kg/TJ,14.186519820000001,kg -278b4353-ac42-3f1a-a2a7-38277710fea7,SESCO,II.1.1,Corrientes,AR-W,annual,2016,bioetanol combustion consumption by to the public,43.8905709,TJ,CH4,10.0,kg/TJ,438.905709,kg -04ece087-4c94-3729-b266-247898c3d6f3,SESCO,II.1.1,Corrientes,AR-W,annual,2016,bioetanol combustion consumption by to the public,43.8905709,TJ,N2O,0.6,kg/TJ,26.334342539999998,kg -02bd8c1c-3c7e-35c2-8808-bb3d127b63eb,SESCO,II.1.1,Córdoba,AR-X,annual,2016,bioetanol combustion consumption by to the public,220.6245195,TJ,CH4,10.0,kg/TJ,2206.245195,kg -96a71641-bb47-30b8-bb0c-b652f77f1791,SESCO,II.1.1,Córdoba,AR-X,annual,2016,bioetanol combustion consumption by to the public,220.6245195,TJ,N2O,0.6,kg/TJ,132.37471169999998,kg -b0e3142d-3a05-3b6c-9bbe-98383c014c3b,SESCO,II.1.1,Entre Rios,AR-E,annual,2016,bioetanol combustion consumption by to the public,78.11021889,TJ,CH4,10.0,kg/TJ,781.1021889,kg -38bf6f6f-9bb1-3ddc-8470-170567d36474,SESCO,II.1.1,Entre Rios,AR-E,annual,2016,bioetanol combustion consumption by to the public,78.11021889,TJ,N2O,0.6,kg/TJ,46.866131333999995,kg -a0a11f73-f782-3f18-ad5a-ab3bcf389ef1,SESCO,II.1.1,Formosa,AR-P,annual,2016,bioetanol combustion consumption by to the public,45.38327210999999,TJ,CH4,10.0,kg/TJ,453.83272109999996,kg -f85ad682-1fdc-3426-b71b-e4baa24c54a6,SESCO,II.1.1,Formosa,AR-P,annual,2016,bioetanol combustion consumption by to the public,45.38327210999999,TJ,N2O,0.6,kg/TJ,27.229963265999995,kg -a81b75a7-8316-3daf-8f22-ea261171c0df,SESCO,II.1.1,Jujuy,AR-Y,annual,2016,bioetanol combustion consumption by to the public,12.930494939999999,TJ,CH4,10.0,kg/TJ,129.3049494,kg -fe111a44-13f7-3c2b-b5cb-5e5fe6c80f53,SESCO,II.1.1,Jujuy,AR-Y,annual,2016,bioetanol combustion consumption by to the public,12.930494939999999,TJ,N2O,0.6,kg/TJ,7.7582969639999995,kg -470ebf46-936a-3c9a-b3fa-403e5f10ed30,SESCO,II.1.1,La Pampa,AR-L,annual,2016,bioetanol combustion consumption by to the public,10.983187710000001,TJ,CH4,10.0,kg/TJ,109.83187710000001,kg -cf5780a8-6bb6-3b3a-9582-b766e208fa6e,SESCO,II.1.1,La Pampa,AR-L,annual,2016,bioetanol combustion consumption by to the public,10.983187710000001,TJ,N2O,0.6,kg/TJ,6.589912626,kg -81db36f4-b515-3916-b985-335cff16f810,SESCO,II.1.1,La Rioja,AR-F,annual,2016,bioetanol combustion consumption by to the public,7.55255259,TJ,CH4,10.0,kg/TJ,75.5255259,kg -bd6b4a8f-1f7a-32e1-8568-39bd6da33bd7,SESCO,II.1.1,La Rioja,AR-F,annual,2016,bioetanol combustion consumption by to the public,7.55255259,TJ,N2O,0.6,kg/TJ,4.531531554,kg -c9da7b43-1dc9-3fd5-85ae-33fa2aa09df0,SESCO,II.1.1,Mendoza,AR-M,annual,2016,bioetanol combustion consumption by to the public,32.002857809999995,TJ,CH4,10.0,kg/TJ,320.02857809999995,kg -de054228-bdf6-3e48-b2d5-bb3ad33ea816,SESCO,II.1.1,Mendoza,AR-M,annual,2016,bioetanol combustion consumption by to the public,32.002857809999995,TJ,N2O,0.6,kg/TJ,19.201714685999995,kg -89bd7e78-e117-3d50-8ef0-7a45986f1ce0,SESCO,II.1.1,Misiones,AR-N,annual,2016,bioetanol combustion consumption by to the public,51.398600220000006,TJ,CH4,10.0,kg/TJ,513.9860022,kg -61989c08-d9d4-36e1-b4f2-59b1599a02bd,SESCO,II.1.1,Misiones,AR-N,annual,2016,bioetanol combustion consumption by to the public,51.398600220000006,TJ,N2O,0.6,kg/TJ,30.839160132000004,kg -36520600-21b7-397f-a844-0b4f88246349,SESCO,II.1.1,Neuquén,AR-Q,annual,2016,bioetanol combustion consumption by to the public,18.21704742,TJ,CH4,10.0,kg/TJ,182.1704742,kg -596d6487-dafb-3e43-8cca-7e810bc9a38a,SESCO,II.1.1,Neuquén,AR-Q,annual,2016,bioetanol combustion consumption by to the public,18.21704742,TJ,N2O,0.6,kg/TJ,10.930228452,kg -9734180d-221f-3994-a114-61e0fda0280a,SESCO,II.1.1,Rio Negro,AR-R,annual,2016,bioetanol combustion consumption by to the public,33.60803886,TJ,CH4,10.0,kg/TJ,336.0803886,kg -6e99c483-16d7-36e2-9ad6-3d93cc1d8618,SESCO,II.1.1,Rio Negro,AR-R,annual,2016,bioetanol combustion consumption by to the public,33.60803886,TJ,N2O,0.6,kg/TJ,20.164823316,kg -271e65b0-c889-3746-b8c4-b8b641434dd2,SESCO,II.1.1,Salta,AR-A,annual,2016,bioetanol combustion consumption by to the public,6.77925369,TJ,CH4,10.0,kg/TJ,67.7925369,kg -2caecde2-3587-3cb2-a914-748d4b671b46,SESCO,II.1.1,Salta,AR-A,annual,2016,bioetanol combustion consumption by to the public,6.77925369,TJ,N2O,0.6,kg/TJ,4.067552214,kg -be892c4e-7f9e-3e91-87e7-b70b2264c74f,SESCO,II.1.1,San Juan,AR-J,annual,2016,bioetanol combustion consumption by to the public,17.39922525,TJ,CH4,10.0,kg/TJ,173.9922525,kg -631c95b6-8b1d-3631-bea9-6b8c782529e1,SESCO,II.1.1,San Juan,AR-J,annual,2016,bioetanol combustion consumption by to the public,17.39922525,TJ,N2O,0.6,kg/TJ,10.43953515,kg -d616ddcf-7bbe-394a-8015-12daf892b92a,SESCO,II.1.1,San Luis,AR-D,annual,2016,bioetanol combustion consumption by to the public,39.45230388,TJ,CH4,10.0,kg/TJ,394.5230388,kg -ecc5ad9a-bd07-38a2-a2b4-03d6a5dcad06,SESCO,II.1.1,San Luis,AR-D,annual,2016,bioetanol combustion consumption by to the public,39.45230388,TJ,N2O,0.6,kg/TJ,23.671382328,kg -0287491c-7525-3a04-9793-1672a2c3c696,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2016,bioetanol combustion consumption by to the public,5.11314606,TJ,CH4,10.0,kg/TJ,51.1314606,kg -7dba5045-3454-3bff-941b-02c5a1744f99,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2016,bioetanol combustion consumption by to the public,5.11314606,TJ,N2O,0.6,kg/TJ,3.067887636,kg -1c8d76a8-8e38-3a14-905e-1be8195bb99e,SESCO,II.1.1,Santa Fe,AR-S,annual,2016,bioetanol combustion consumption by to the public,191.87889038999998,TJ,CH4,10.0,kg/TJ,1918.7889038999997,kg -634368fe-4bf0-380c-95c3-d09960f5c9ab,SESCO,II.1.1,Santa Fe,AR-S,annual,2016,bioetanol combustion consumption by to the public,191.87889038999998,TJ,N2O,0.6,kg/TJ,115.12733423399999,kg -b531165f-5d51-3c5d-9567-660a48eb3eb5,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2016,bioetanol combustion consumption by to the public,28.52535609,TJ,CH4,10.0,kg/TJ,285.25356089999997,kg -6c3fa299-380a-3995-8815-5be91fb261c0,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2016,bioetanol combustion consumption by to the public,28.52535609,TJ,N2O,0.6,kg/TJ,17.115213653999998,kg -8b1f4404-ea0a-3775-8937-8db3c9f3e456,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2016,bioetanol combustion consumption by to the public,9.55844307,TJ,CH4,10.0,kg/TJ,95.58443069999998,kg -32796533-0719-3265-8b75-204a194bd12a,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2016,bioetanol combustion consumption by to the public,9.55844307,TJ,N2O,0.6,kg/TJ,5.735065841999999,kg -a40bc316-1189-314a-9af2-fdc4bbbd747c,SESCO,II.1.1,Tucuman,AR-T,annual,2016,bioetanol combustion consumption by to the public,10.70667477,TJ,CH4,10.0,kg/TJ,107.0667477,kg -934c69fc-05a9-3aef-a4fc-73b7ae857f23,SESCO,II.1.1,Tucuman,AR-T,annual,2016,bioetanol combustion consumption by to the public,10.70667477,TJ,N2O,0.6,kg/TJ,6.424004861999999,kg -9a1c172f-178c-3f06-85fd-6a7a4e43e4e3,SESCO,II.1.1,Buenos Aires,AR-B,annual,2016,bioetanol combustion consumption by to the public,193.89415419,TJ,CH4,10.0,kg/TJ,1938.9415419,kg -699ec909-d004-37c9-b362-689556d67875,SESCO,II.1.1,Buenos Aires,AR-B,annual,2016,bioetanol combustion consumption by to the public,193.89415419,TJ,N2O,0.6,kg/TJ,116.33649251399999,kg -fa8ae279-cf82-3eda-83a3-f6886f2501ac,SESCO,II.1.1,Capital Federal,AR-C,annual,2016,bioetanol combustion consumption by to the public,96.48895608,TJ,CH4,10.0,kg/TJ,964.8895607999999,kg -71f7d547-74bb-3bee-967a-fc2a679f37c7,SESCO,II.1.1,Capital Federal,AR-C,annual,2016,bioetanol combustion consumption by to the public,96.48895608,TJ,N2O,0.6,kg/TJ,57.893373647999994,kg -0b2ec0d3-49aa-3661-b7f3-6e83b73b5617,SESCO,II.1.1,Catamarca,AR-K,annual,2016,bioetanol combustion consumption by to the public,8.091518489999999,TJ,CH4,10.0,kg/TJ,80.91518489999999,kg -13518211-5131-34a5-a242-c411ef449473,SESCO,II.1.1,Catamarca,AR-K,annual,2016,bioetanol combustion consumption by to the public,8.091518489999999,TJ,N2O,0.6,kg/TJ,4.854911093999999,kg -2972dfe1-180f-3f0a-a261-f9d9c3859d2d,SESCO,II.1.1,Chaco,AR-H,annual,2016,bioetanol combustion consumption by to the public,7.0979465699999995,TJ,CH4,10.0,kg/TJ,70.97946569999999,kg -6bb6c869-85de-36ce-8715-8a7635cd02e7,SESCO,II.1.1,Chaco,AR-H,annual,2016,bioetanol combustion consumption by to the public,7.0979465699999995,TJ,N2O,0.6,kg/TJ,4.2587679419999995,kg -879f3b6e-90c1-318d-bcc8-3dc36c81db2d,SESCO,II.1.1,Chubut,AR-U,annual,2016,bioetanol combustion consumption by to the public,4.7194666199999995,TJ,CH4,10.0,kg/TJ,47.19466619999999,kg -eea432e0-46ad-31bb-bc5a-bded9a21da21,SESCO,II.1.1,Chubut,AR-U,annual,2016,bioetanol combustion consumption by to the public,4.7194666199999995,TJ,N2O,0.6,kg/TJ,2.8316799719999994,kg -6218ff8a-66d4-3a83-875e-0c7ebb7b352b,SESCO,II.1.1,Corrientes,AR-W,annual,2016,bioetanol combustion consumption by to the public,10.78400466,TJ,CH4,10.0,kg/TJ,107.84004660000001,kg -058ef81a-8deb-38a5-ace1-e587a0282204,SESCO,II.1.1,Corrientes,AR-W,annual,2016,bioetanol combustion consumption by to the public,10.78400466,TJ,N2O,0.6,kg/TJ,6.470402796,kg -7d851fcc-68bc-30ad-a248-7c1d1fe71e4f,SESCO,II.1.1,Córdoba,AR-X,annual,2016,bioetanol combustion consumption by to the public,51.14786390999999,TJ,CH4,10.0,kg/TJ,511.4786390999999,kg -306222a5-72be-3830-aaf6-7d8589772522,SESCO,II.1.1,Córdoba,AR-X,annual,2016,bioetanol combustion consumption by to the public,51.14786390999999,TJ,N2O,0.6,kg/TJ,30.688718345999995,kg -fc571333-8a10-3efe-bea8-52fc2e1f8325,SESCO,II.1.1,Entre Rios,AR-E,annual,2016,bioetanol combustion consumption by to the public,20.40571764,TJ,CH4,10.0,kg/TJ,204.0571764,kg -1de53070-0e1a-3dcb-8747-b9710aa0bc99,SESCO,II.1.1,Entre Rios,AR-E,annual,2016,bioetanol combustion consumption by to the public,20.40571764,TJ,N2O,0.6,kg/TJ,12.243430583999999,kg -93a21678-6eee-3ef7-9254-b4eb109753ed,SESCO,II.1.1,Formosa,AR-P,annual,2016,bioetanol combustion consumption by to the public,11.187057419999999,TJ,CH4,10.0,kg/TJ,111.8705742,kg -a37cf16e-4454-3968-9665-eb116c4d2bc6,SESCO,II.1.1,Formosa,AR-P,annual,2016,bioetanol combustion consumption by to the public,11.187057419999999,TJ,N2O,0.6,kg/TJ,6.712234451999999,kg -69af76b4-a59c-3b43-b0cf-64143f35538d,SESCO,II.1.1,Jujuy,AR-Y,annual,2016,bioetanol combustion consumption by to the public,1.50910452,TJ,CH4,10.0,kg/TJ,15.0910452,kg -b231d99e-1fdf-3617-8538-169d1aaaad6b,SESCO,II.1.1,Jujuy,AR-Y,annual,2016,bioetanol combustion consumption by to the public,1.50910452,TJ,N2O,0.6,kg/TJ,0.905462712,kg -eff1a2ed-2a49-32ae-b2dd-11b57f69a168,SESCO,II.1.1,La Pampa,AR-L,annual,2016,bioetanol combustion consumption by to the public,3.64153482,TJ,CH4,10.0,kg/TJ,36.4153482,kg -d99884ed-9c09-34a1-abf8-d845a4cbe4f7,SESCO,II.1.1,La Pampa,AR-L,annual,2016,bioetanol combustion consumption by to the public,3.64153482,TJ,N2O,0.6,kg/TJ,2.184920892,kg -4416f4d1-fb19-3ada-921b-8db2d44a810e,SESCO,II.1.1,La Rioja,AR-F,annual,2016,bioetanol combustion consumption by to the public,1.3685047199999998,TJ,CH4,10.0,kg/TJ,13.685047199999998,kg -4032d342-9343-3824-b556-88e8613f84ec,SESCO,II.1.1,La Rioja,AR-F,annual,2016,bioetanol combustion consumption by to the public,1.3685047199999998,TJ,N2O,0.6,kg/TJ,0.8211028319999999,kg -09cd4545-74e7-36de-8288-57e32cc3225c,SESCO,II.1.1,Mendoza,AR-M,annual,2016,bioetanol combustion consumption by to the public,10.74885471,TJ,CH4,10.0,kg/TJ,107.4885471,kg -d548de02-a2a4-3e9d-bafa-525649710ab1,SESCO,II.1.1,Mendoza,AR-M,annual,2016,bioetanol combustion consumption by to the public,10.74885471,TJ,N2O,0.6,kg/TJ,6.449312826,kg -7ae4c6c2-dfb7-3a62-a7ab-00a9c919b283,SESCO,II.1.1,Misiones,AR-N,annual,2016,bioetanol combustion consumption by to the public,7.290099629999999,TJ,CH4,10.0,kg/TJ,72.90099629999999,kg -edd6f639-c05f-394a-b615-9f39ba4bbd34,SESCO,II.1.1,Misiones,AR-N,annual,2016,bioetanol combustion consumption by to the public,7.290099629999999,TJ,N2O,0.6,kg/TJ,4.3740597779999995,kg -0dff6a1c-a565-3891-8831-fcd9ed3d448e,SESCO,II.1.1,Neuquén,AR-Q,annual,2016,bioetanol combustion consumption by to the public,7.8196922099999995,TJ,CH4,10.0,kg/TJ,78.1969221,kg -add431dc-f174-3727-9316-d9d07f13a944,SESCO,II.1.1,Neuquén,AR-Q,annual,2016,bioetanol combustion consumption by to the public,7.8196922099999995,TJ,N2O,0.6,kg/TJ,4.6918153259999995,kg -e4572af7-ada3-3a6b-ab4a-c1569381cbed,SESCO,II.1.1,Rio Negro,AR-R,annual,2016,bioetanol combustion consumption by to the public,12.089239469999999,TJ,CH4,10.0,kg/TJ,120.89239469999998,kg -915f23e0-d366-3a44-ae8b-507396ab811c,SESCO,II.1.1,Rio Negro,AR-R,annual,2016,bioetanol combustion consumption by to the public,12.089239469999999,TJ,N2O,0.6,kg/TJ,7.253543681999999,kg -eb5dd228-e5dc-3cbe-a055-cd94db9cf0e7,SESCO,II.1.1,Salta,AR-A,annual,2016,bioetanol combustion consumption by to the public,0.98888526,TJ,CH4,10.0,kg/TJ,9.8888526,kg -59ae1c2c-f365-3863-9f22-cc27b0fbbcf8,SESCO,II.1.1,Salta,AR-A,annual,2016,bioetanol combustion consumption by to the public,0.98888526,TJ,N2O,0.6,kg/TJ,0.593331156,kg -fc356b2a-0998-33cb-a317-eed09b98224a,SESCO,II.1.1,San Juan,AR-J,annual,2016,bioetanol combustion consumption by to the public,4.59761346,TJ,CH4,10.0,kg/TJ,45.976134599999995,kg -4cd7b81b-6dc9-317c-8bc1-e832038d432a,SESCO,II.1.1,San Juan,AR-J,annual,2016,bioetanol combustion consumption by to the public,4.59761346,TJ,N2O,0.6,kg/TJ,2.758568076,kg -037dffc3-ca17-3962-8d24-01ea1c199c57,SESCO,II.1.1,San Luis,AR-D,annual,2016,bioetanol combustion consumption by to the public,9.35457336,TJ,CH4,10.0,kg/TJ,93.5457336,kg -623dd4b5-e647-31aa-b39b-24432da20e30,SESCO,II.1.1,San Luis,AR-D,annual,2016,bioetanol combustion consumption by to the public,9.35457336,TJ,N2O,0.6,kg/TJ,5.612744016,kg -a18cea04-67cd-30a3-8fc1-d5a80940186e,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2016,bioetanol combustion consumption by to the public,2.5401697199999997,TJ,CH4,10.0,kg/TJ,25.401697199999997,kg -03a89fe6-d44e-3045-a24b-54ad5ce67a35,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2016,bioetanol combustion consumption by to the public,2.5401697199999997,TJ,N2O,0.6,kg/TJ,1.5241018319999997,kg -dc286823-776f-3ad9-a2da-1e50672b32b1,SESCO,II.1.1,Santa Fe,AR-S,annual,2016,bioetanol combustion consumption by to the public,52.41091878,TJ,CH4,10.0,kg/TJ,524.1091878,kg -e34a3d1f-bb8d-34d6-b49d-e859c394dc7c,SESCO,II.1.1,Santa Fe,AR-S,annual,2016,bioetanol combustion consumption by to the public,52.41091878,TJ,N2O,0.6,kg/TJ,31.446551268,kg -b7cd46d4-1870-342b-866d-1c566510d5ee,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2016,bioetanol combustion consumption by to the public,7.62988248,TJ,CH4,10.0,kg/TJ,76.2988248,kg -1df8ea73-fc93-3e20-8bf8-a11288ad9d34,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2016,bioetanol combustion consumption by to the public,7.62988248,TJ,N2O,0.6,kg/TJ,4.577929488,kg -0269d2de-9b79-3ff2-8ae8-2092bf47312d,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2016,bioetanol combustion consumption by to the public,4.4078037299999995,TJ,CH4,10.0,kg/TJ,44.07803729999999,kg -5515ccf6-623b-3a1d-9925-6ad27d82af2e,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2016,bioetanol combustion consumption by to the public,4.4078037299999995,TJ,N2O,0.6,kg/TJ,2.6446822379999997,kg -fcc583d9-cd8e-3aff-b66b-ff9702d1767a,SESCO,II.1.1,Tucuman,AR-T,annual,2016,bioetanol combustion consumption by to the public,1.6051810499999999,TJ,CH4,10.0,kg/TJ,16.0518105,kg -c0e95a51-0923-3128-b24f-775b6bc04b60,SESCO,II.1.1,Tucuman,AR-T,annual,2016,bioetanol combustion consumption by to the public,1.6051810499999999,TJ,N2O,0.6,kg/TJ,0.9631086299999999,kg -6a8cb409-2a82-3fbe-ae8f-678a13535054,SESCO,II.1.1,Buenos Aires,AR-B,annual,2016,bioetanol combustion consumption by freight transport,0.6326991,TJ,CH4,10.0,kg/TJ,6.326991,kg -8406d880-88cf-3d95-ac89-435d9e0031b1,SESCO,II.1.1,Buenos Aires,AR-B,annual,2016,bioetanol combustion consumption by freight transport,0.6326991,TJ,N2O,0.6,kg/TJ,0.37961945999999996,kg -d5f0600a-a3ab-3ff5-87fe-da17b1b7085d,SESCO,II.1.1,Capital Federal,AR-C,annual,2016,bioetanol combustion consumption by freight transport,0.42648605999999994,TJ,CH4,10.0,kg/TJ,4.2648606,kg -ef26a23e-633a-3041-acb9-e18d583284fd,SESCO,II.1.1,Capital Federal,AR-C,annual,2016,bioetanol combustion consumption by freight transport,0.42648605999999994,TJ,N2O,0.6,kg/TJ,0.255891636,kg -6d42d135-b6ee-31b9-a37e-2c590ee537ea,SESCO,II.1.1,Córdoba,AR-X,annual,2016,bioetanol combustion consumption by freight transport,0.11716649999999999,TJ,CH4,10.0,kg/TJ,1.171665,kg -5bf06d85-3414-33b8-979b-eb265095807d,SESCO,II.1.1,Córdoba,AR-X,annual,2016,bioetanol combustion consumption by freight transport,0.11716649999999999,TJ,N2O,0.6,kg/TJ,0.0702999,kg -cadc9428-f574-34a6-b499-327a785c18e5,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2016,bioetanol combustion consumption by freight transport,0.18512306999999997,TJ,CH4,10.0,kg/TJ,1.8512306999999997,kg -86f485cf-85ec-338e-965d-dc6857b55b77,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2016,bioetanol combustion consumption by freight transport,0.18512306999999997,TJ,N2O,0.6,kg/TJ,0.11107384199999998,kg -9ddd1832-6c10-3252-8433-911f76797b46,SESCO,II.1.1,Santa Fe,AR-S,annual,2016,bioetanol combustion consumption by freight transport,0.49912928999999995,TJ,CH4,10.0,kg/TJ,4.9912928999999995,kg -9e99c01c-6713-3f41-888a-ee8cdd7253a7,SESCO,II.1.1,Santa Fe,AR-S,annual,2016,bioetanol combustion consumption by freight transport,0.49912928999999995,TJ,N2O,0.6,kg/TJ,0.29947757399999997,kg -69089264-1b4f-3924-acdf-ade836602154,SESCO,II.1.1,Buenos Aires,AR-B,annual,2016,bioetanol combustion consumption by freight transport,0.4217994,TJ,CH4,10.0,kg/TJ,4.217994,kg -3733a4e9-f319-333b-9b9d-f036503569e3,SESCO,II.1.1,Buenos Aires,AR-B,annual,2016,bioetanol combustion consumption by freight transport,0.4217994,TJ,N2O,0.6,kg/TJ,0.25307964,kg -f584452d-e9bc-3fa3-9c19-0830191dd3ef,SESCO,II.1.1,Capital Federal,AR-C,annual,2016,bioetanol combustion consumption by freight transport,0.36555948,TJ,CH4,10.0,kg/TJ,3.6555948,kg -8a99bac4-c915-33d0-836f-609ea8116970,SESCO,II.1.1,Capital Federal,AR-C,annual,2016,bioetanol combustion consumption by freight transport,0.36555948,TJ,N2O,0.6,kg/TJ,0.219335688,kg -cc9e8562-81d5-31ec-a028-1b974d641add,SESCO,II.1.1,Córdoba,AR-X,annual,2016,bioetanol combustion consumption by freight transport,0.04217994,TJ,CH4,10.0,kg/TJ,0.4217994,kg -0c8bbf8c-d2d9-3e00-9b33-a82189f34ff7,SESCO,II.1.1,Córdoba,AR-X,annual,2016,bioetanol combustion consumption by freight transport,0.04217994,TJ,N2O,0.6,kg/TJ,0.025307964,kg -7a050305-cbc6-37ec-9c54-092b61ab98f5,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2016,bioetanol combustion consumption by freight transport,0.0234333,TJ,CH4,10.0,kg/TJ,0.234333,kg -0f965096-8623-3f5f-8f62-e2f698045e11,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2016,bioetanol combustion consumption by freight transport,0.0234333,TJ,N2O,0.6,kg/TJ,0.01405998,kg -e038ca7f-ee10-3103-9c00-21bb8978d6c5,SESCO,II.1.1,Santa Fe,AR-S,annual,2016,bioetanol combustion consumption by freight transport,0.09607653,TJ,CH4,10.0,kg/TJ,0.9607652999999999,kg -02d098c8-56bb-38b5-b5d4-f511d410d91b,SESCO,II.1.1,Santa Fe,AR-S,annual,2016,bioetanol combustion consumption by freight transport,0.09607653,TJ,N2O,0.6,kg/TJ,0.05764591799999999,kg -dec9c0e9-dfdf-3805-83a7-3a3d19cbe0e5,SESCO,II.1.1,Santa Fe,AR-S,annual,2016,bioetanol combustion consumption by public passenger transport,0.0468666,TJ,CH4,10.0,kg/TJ,0.468666,kg -40ade20a-d8b4-3611-a320-69b99f656424,SESCO,II.1.1,Santa Fe,AR-S,annual,2016,bioetanol combustion consumption by public passenger transport,0.0468666,TJ,N2O,0.6,kg/TJ,0.02811996,kg -5c503842-ab5e-3936-8f87-e0a45fde6fe3,SESCO,II.1.1,Buenos Aires,AR-B,annual,2016,bioetanol combustion consumption by public passenger transport,0.0234333,TJ,CH4,10.0,kg/TJ,0.234333,kg -f4bd4708-bd02-335a-9ad0-a38bb8b93eae,SESCO,II.1.1,Buenos Aires,AR-B,annual,2016,bioetanol combustion consumption by public passenger transport,0.0234333,TJ,N2O,0.6,kg/TJ,0.01405998,kg -92cb3fe1-f1c1-399f-beec-774a042131d8,SESCO,II.1.1,Capital Federal,AR-C,annual,2016,bioetanol combustion consumption by public passenger transport,0.01640331,TJ,CH4,10.0,kg/TJ,0.16403310000000002,kg -02ef6973-a37f-32e9-aef5-795adfbb54d0,SESCO,II.1.1,Capital Federal,AR-C,annual,2016,bioetanol combustion consumption by public passenger transport,0.01640331,TJ,N2O,0.6,kg/TJ,0.009841986,kg -19f3fa28-a62a-3af0-9727-6650f21ef6c0,SESCO,II.1.1,Santa Fe,AR-S,annual,2016,bioetanol combustion consumption by public passenger transport,0.03749328,TJ,CH4,10.0,kg/TJ,0.37493279999999995,kg -b87f797b-6950-3a51-9be7-468dc72e90f6,SESCO,II.1.1,Santa Fe,AR-S,annual,2016,bioetanol combustion consumption by public passenger transport,0.03749328,TJ,N2O,0.6,kg/TJ,0.022495967999999998,kg -ecb2a895-c989-37b0-aa2b-aa93076b322c,SESCO,II.5.1,Santa Fe,AR-S,annual,2016,bioetanol combustion consumption by agriculture machines,0.3583888902,TJ,CH4,10.0,kg/TJ,3.583888902,kg -4a18ebce-bfae-3459-aab3-4f381d534081,SESCO,II.5.1,Santa Fe,AR-S,annual,2016,bioetanol combustion consumption by agriculture machines,0.3583888902,TJ,N2O,0.6,kg/TJ,0.21503333411999997,kg -fcaa5df3-93fa-3453-83d0-675ced91a4a4,SESCO,II.5.1,Santiago del Estero,AR-G,annual,2016,bioetanol combustion consumption by agriculture machines,0.3216126691799999,TJ,CH4,10.0,kg/TJ,3.216126691799999,kg -0f3475ec-fd90-36d5-8860-9798970269f0,SESCO,II.5.1,Santiago del Estero,AR-G,annual,2016,bioetanol combustion consumption by agriculture machines,0.3216126691799999,TJ,N2O,0.6,kg/TJ,0.19296760150799994,kg -fb070d00-c6fe-37e0-9ae0-b230d63e9321,SESCO,II.1.1,Buenos Aires,AR-B,annual,2016,bioetanol combustion consumption by to the public,132.70143681224098,TJ,CH4,10.0,kg/TJ,1327.01436812241,kg -a7a93e2e-18bc-3e01-bea3-b2bb98e69a24,SESCO,II.1.1,Buenos Aires,AR-B,annual,2016,bioetanol combustion consumption by to the public,132.70143681224098,TJ,N2O,0.6,kg/TJ,79.62086208734459,kg -e5689019-a360-381e-ba82-35e6decc02b9,SESCO,II.1.1,Capital Federal,AR-C,annual,2016,bioetanol combustion consumption by to the public,15.054987678290999,TJ,CH4,10.0,kg/TJ,150.54987678291,kg -e70ed0fd-d828-3b12-97d5-84be3cb4c98f,SESCO,II.1.1,Capital Federal,AR-C,annual,2016,bioetanol combustion consumption by to the public,15.054987678290999,TJ,N2O,0.6,kg/TJ,9.032992606974599,kg -58aefd9a-d17e-38e3-9159-ba568057fbdb,SESCO,II.1.1,Catamarca,AR-K,annual,2016,bioetanol combustion consumption by to the public,12.760996257107998,TJ,CH4,10.0,kg/TJ,127.60996257107998,kg -2153dac7-e952-3187-a518-489bde0b3852,SESCO,II.1.1,Catamarca,AR-K,annual,2016,bioetanol combustion consumption by to the public,12.760996257107998,TJ,N2O,0.6,kg/TJ,7.656597754264798,kg -c8862e0c-0cad-32e5-bc41-e8cc128743c3,SESCO,II.1.1,Chaco,AR-H,annual,2016,bioetanol combustion consumption by to the public,20.857912139097,TJ,CH4,10.0,kg/TJ,208.57912139097,kg -50a1849c-8069-359e-a5c2-95f809ffd86a,SESCO,II.1.1,Chaco,AR-H,annual,2016,bioetanol combustion consumption by to the public,20.857912139097,TJ,N2O,0.6,kg/TJ,12.514747283458199,kg -ae24d5b7-07c7-3fd4-987e-4b954a3d3552,SESCO,II.1.1,Corrientes,AR-W,annual,2016,bioetanol combustion consumption by to the public,20.272400440974,TJ,CH4,10.0,kg/TJ,202.72400440974,kg -8662bcb8-7ae8-375f-85c7-59f11e33ce00,SESCO,II.1.1,Corrientes,AR-W,annual,2016,bioetanol combustion consumption by to the public,20.272400440974,TJ,N2O,0.6,kg/TJ,12.1634402645844,kg -3313bede-0204-378c-924c-e1a30a78eba1,SESCO,II.1.1,Córdoba,AR-X,annual,2016,bioetanol combustion consumption by to the public,59.867064664803,TJ,CH4,10.0,kg/TJ,598.67064664803,kg -168ef6ef-f462-35d6-b2fd-4410e72f0ed7,SESCO,II.1.1,Córdoba,AR-X,annual,2016,bioetanol combustion consumption by to the public,59.867064664803,TJ,N2O,0.6,kg/TJ,35.9202387988818,kg -9724014a-6c43-3daa-a3ba-8640f9bb7f84,SESCO,II.1.1,Entre Rios,AR-E,annual,2016,bioetanol combustion consumption by to the public,28.104763036284,TJ,CH4,10.0,kg/TJ,281.04763036284004,kg -2ea67377-9238-3425-a874-1340732585f3,SESCO,II.1.1,Entre Rios,AR-E,annual,2016,bioetanol combustion consumption by to the public,28.104763036284,TJ,N2O,0.6,kg/TJ,16.8628578217704,kg -04ac3786-34c2-3268-bcb0-0fc874e1b9bb,SESCO,II.1.1,Jujuy,AR-Y,annual,2016,bioetanol combustion consumption by to the public,5.0338402741440005,TJ,CH4,10.0,kg/TJ,50.33840274144001,kg -c161483f-4047-3426-93d2-012bed6420c3,SESCO,II.1.1,Jujuy,AR-Y,annual,2016,bioetanol combustion consumption by to the public,5.0338402741440005,TJ,N2O,0.6,kg/TJ,3.0203041644864004,kg -c3c021cd-d0b8-337f-b8ca-4486ed8c2ee4,SESCO,II.1.1,La Pampa,AR-L,annual,2016,bioetanol combustion consumption by to the public,0.9270953972279999,TJ,CH4,10.0,kg/TJ,9.27095397228,kg -1be56113-f950-3f74-af31-9c32b772db63,SESCO,II.1.1,La Pampa,AR-L,annual,2016,bioetanol combustion consumption by to the public,0.9270953972279999,TJ,N2O,0.6,kg/TJ,0.5562572383368,kg -9fd644b4-01d8-3b8f-84b0-081040cf8af0,SESCO,II.1.1,La Rioja,AR-F,annual,2016,bioetanol combustion consumption by to the public,2.795136209316,TJ,CH4,10.0,kg/TJ,27.95136209316,kg -e80a3890-4024-3aaf-ad6d-ec55ca5ab8bf,SESCO,II.1.1,La Rioja,AR-F,annual,2016,bioetanol combustion consumption by to the public,2.795136209316,TJ,N2O,0.6,kg/TJ,1.6770817255896,kg -7b1268a9-0eab-3322-ab19-6fd7242ac63d,SESCO,II.1.1,Mendoza,AR-M,annual,2016,bioetanol combustion consumption by to the public,19.034717273549997,TJ,CH4,10.0,kg/TJ,190.34717273549998,kg -b10e8028-7e29-3709-a03e-d6876f11f07d,SESCO,II.1.1,Mendoza,AR-M,annual,2016,bioetanol combustion consumption by to the public,19.034717273549997,TJ,N2O,0.6,kg/TJ,11.420830364129998,kg -3a00f69a-8d32-33e2-a247-8f9d2b496b86,SESCO,II.1.1,Misiones,AR-N,annual,2016,bioetanol combustion consumption by to the public,19.217865853691997,TJ,CH4,10.0,kg/TJ,192.17865853691995,kg -7ee46021-0968-36c5-8699-820a3f4a96ee,SESCO,II.1.1,Misiones,AR-N,annual,2016,bioetanol combustion consumption by to the public,19.217865853691997,TJ,N2O,0.6,kg/TJ,11.530719512215198,kg -955e81c7-4333-33b8-91ce-b064499a3ea1,SESCO,II.1.1,Salta,AR-A,annual,2016,bioetanol combustion consumption by to the public,2.147696626284,TJ,CH4,10.0,kg/TJ,21.47696626284,kg -64b33305-d4c8-3c8e-aa5a-36db6f283929,SESCO,II.1.1,Salta,AR-A,annual,2016,bioetanol combustion consumption by to the public,2.147696626284,TJ,N2O,0.6,kg/TJ,1.2886179757704,kg -7a398942-6589-3b7c-b643-639ebb4aa989,SESCO,II.1.1,San Juan,AR-J,annual,2016,bioetanol combustion consumption by to the public,19.643239066275,TJ,CH4,10.0,kg/TJ,196.43239066275,kg -b118c4c0-65dc-384e-acb4-d59cdba7aace,SESCO,II.1.1,San Juan,AR-J,annual,2016,bioetanol combustion consumption by to the public,19.643239066275,TJ,N2O,0.6,kg/TJ,11.785943439765001,kg -cbf7269a-f087-3183-818d-d92e1fabc8e0,SESCO,II.1.1,San Luis,AR-D,annual,2016,bioetanol combustion consumption by to the public,12.255895693602,TJ,CH4,10.0,kg/TJ,122.55895693602,kg -d290bcf2-3d2f-3e3b-b60c-753613e75ec3,SESCO,II.1.1,San Luis,AR-D,annual,2016,bioetanol combustion consumption by to the public,12.255895693602,TJ,N2O,0.6,kg/TJ,7.353537416161199,kg -8994520d-65c4-34cd-907e-a87bb12c3381,SESCO,II.1.1,Santa Fe,AR-S,annual,2016,bioetanol combustion consumption by to the public,74.754336465666,TJ,CH4,10.0,kg/TJ,747.5433646566601,kg -67878b8d-a144-38a2-b62e-165857d3ab57,SESCO,II.1.1,Santa Fe,AR-S,annual,2016,bioetanol combustion consumption by to the public,74.754336465666,TJ,N2O,0.6,kg/TJ,44.8526018793996,kg -96600095-c902-3d11-9a85-8427859d37de,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2016,bioetanol combustion consumption by to the public,13.542334888005,TJ,CH4,10.0,kg/TJ,135.42334888004999,kg -eeac2458-8128-36eb-8ce5-b7bfede4269c,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2016,bioetanol combustion consumption by to the public,13.542334888005,TJ,N2O,0.6,kg/TJ,8.125400932803,kg -ea7e74a8-f669-3849-a295-f5cd774311e7,SESCO,II.1.1,Tucuman,AR-T,annual,2016,bioetanol combustion consumption by to the public,15.618639153843,TJ,CH4,10.0,kg/TJ,156.18639153843,kg -261a5b0e-ba87-36c3-82fc-793617c953d8,SESCO,II.1.1,Tucuman,AR-T,annual,2016,bioetanol combustion consumption by to the public,15.618639153843,TJ,N2O,0.6,kg/TJ,9.3711834923058,kg -78d9d89d-5a20-3927-a40a-529a217b397b,SESCO,II.1.1,Buenos Aires,AR-B,annual,2016,bioetanol combustion consumption by to the public,24.958681758846,TJ,CH4,10.0,kg/TJ,249.58681758846,kg -09d5fb4f-d2a3-3097-b074-cc8229dc146c,SESCO,II.1.1,Buenos Aires,AR-B,annual,2016,bioetanol combustion consumption by to the public,24.958681758846,TJ,N2O,0.6,kg/TJ,14.9752090553076,kg -3bfd47cf-d83b-365e-ae53-9030430ab064,SESCO,II.1.1,Capital Federal,AR-C,annual,2016,bioetanol combustion consumption by to the public,4.840149989664,TJ,CH4,10.0,kg/TJ,48.40149989664,kg -e88679d4-687f-3ee9-bf88-f9b9f7fc3c18,SESCO,II.1.1,Capital Federal,AR-C,annual,2016,bioetanol combustion consumption by to the public,4.840149989664,TJ,N2O,0.6,kg/TJ,2.9040899937984,kg -3401d7f6-9cc1-3b36-ac0c-c880918af3fb,SESCO,II.1.1,Catamarca,AR-K,annual,2016,bioetanol combustion consumption by to the public,1.5061521585329998,TJ,CH4,10.0,kg/TJ,15.061521585329999,kg -ebfed15d-d2c0-3a90-bf4a-d714eae4a5ca,SESCO,II.1.1,Catamarca,AR-K,annual,2016,bioetanol combustion consumption by to the public,1.5061521585329998,TJ,N2O,0.6,kg/TJ,0.9036912951197998,kg -58222348-b746-3d48-891a-8b053eba6a90,SESCO,II.1.1,Chaco,AR-H,annual,2016,bioetanol combustion consumption by to the public,2.042197566354,TJ,CH4,10.0,kg/TJ,20.42197566354,kg -fdb8585a-3b0a-33dd-8ef6-e5f4db18e7ba,SESCO,II.1.1,Chaco,AR-H,annual,2016,bioetanol combustion consumption by to the public,2.042197566354,TJ,N2O,0.6,kg/TJ,1.2253185398124,kg -a76f86b3-ce12-3215-b9b4-e351bea80b2b,SESCO,II.1.1,Corrientes,AR-W,annual,2016,bioetanol combustion consumption by to the public,5.321552691212999,TJ,CH4,10.0,kg/TJ,53.215526912129995,kg -783c1627-2a1d-3545-b992-fa6772185ee5,SESCO,II.1.1,Corrientes,AR-W,annual,2016,bioetanol combustion consumption by to the public,5.321552691212999,TJ,N2O,0.6,kg/TJ,3.1929316147277995,kg -cdcb5859-336a-3814-84bb-65f7ecbb3906,SESCO,II.1.1,Córdoba,AR-X,annual,2016,bioetanol combustion consumption by to the public,11.55425020101,TJ,CH4,10.0,kg/TJ,115.5425020101,kg -01eba23f-ebb5-3f31-aa3d-0757760378bb,SESCO,II.1.1,Córdoba,AR-X,annual,2016,bioetanol combustion consumption by to the public,11.55425020101,TJ,N2O,0.6,kg/TJ,6.932550120606,kg -aec8280b-a4ca-3779-b2bd-cebca5ba236c,SESCO,II.1.1,Entre Rios,AR-E,annual,2016,bioetanol combustion consumption by to the public,6.086006926461,TJ,CH4,10.0,kg/TJ,60.86006926461,kg -512bae5a-460e-30ac-977e-586ea042f70f,SESCO,II.1.1,Entre Rios,AR-E,annual,2016,bioetanol combustion consumption by to the public,6.086006926461,TJ,N2O,0.6,kg/TJ,3.6516041558765995,kg -88348af8-74d6-31f8-a7d7-9e1e31e3d864,SESCO,II.1.1,Jujuy,AR-Y,annual,2016,bioetanol combustion consumption by to the public,0.123507082314,TJ,CH4,10.0,kg/TJ,1.23507082314,kg -5a69d8eb-8e62-3356-9cf2-344c99b48916,SESCO,II.1.1,Jujuy,AR-Y,annual,2016,bioetanol combustion consumption by to the public,0.123507082314,TJ,N2O,0.6,kg/TJ,0.07410424938839999,kg -0eb3a80e-20a0-3324-99fe-d0fcbf5c7d28,SESCO,II.1.1,La Pampa,AR-L,annual,2016,bioetanol combustion consumption by to the public,0.29820538014299997,TJ,CH4,10.0,kg/TJ,2.9820538014299998,kg -d0ba8246-1536-3916-bed7-96e6caf902c3,SESCO,II.1.1,La Pampa,AR-L,annual,2016,bioetanol combustion consumption by to the public,0.29820538014299997,TJ,N2O,0.6,kg/TJ,0.17892322808579997,kg -2c5bc471-386f-3524-8d9a-604ab2d2951e,SESCO,II.1.1,La Rioja,AR-F,annual,2016,bioetanol combustion consumption by to the public,0.454397697963,TJ,CH4,10.0,kg/TJ,4.54397697963,kg -080014b5-6393-3911-b637-2e45381dbe2d,SESCO,II.1.1,La Rioja,AR-F,annual,2016,bioetanol combustion consumption by to the public,0.454397697963,TJ,N2O,0.6,kg/TJ,0.2726386187778,kg -75f84a46-ed1b-3d73-95f3-d175ade53beb,SESCO,II.1.1,Mendoza,AR-M,annual,2016,bioetanol combustion consumption by to the public,3.5350731201059995,TJ,CH4,10.0,kg/TJ,35.35073120105999,kg -504f0a6b-da38-34dc-bd2d-15f240f2159f,SESCO,II.1.1,Mendoza,AR-M,annual,2016,bioetanol combustion consumption by to the public,3.5350731201059995,TJ,N2O,0.6,kg/TJ,2.1210438720636,kg -456a807b-e259-3247-84b7-a50b84f04a34,SESCO,II.1.1,Misiones,AR-N,annual,2016,bioetanol combustion consumption by to the public,2.987193661452,TJ,CH4,10.0,kg/TJ,29.87193661452,kg -f129ecfe-2f78-34b4-ba0d-713554ed337b,SESCO,II.1.1,Misiones,AR-N,annual,2016,bioetanol combustion consumption by to the public,2.987193661452,TJ,N2O,0.6,kg/TJ,1.7923161968711998,kg -ea9a1dea-63e1-35fd-8995-5532a35b389a,SESCO,II.1.1,Salta,AR-A,annual,2016,bioetanol combustion consumption by to the public,0.055926148113,TJ,CH4,10.0,kg/TJ,0.55926148113,kg -0ce60b0d-85d8-3db3-ac27-913559ced6a9,SESCO,II.1.1,Salta,AR-A,annual,2016,bioetanol combustion consumption by to the public,0.055926148113,TJ,N2O,0.6,kg/TJ,0.0335556888678,kg -0137aaf4-bac3-32c5-b1a4-3fa4c7d0e60a,SESCO,II.1.1,San Juan,AR-J,annual,2016,bioetanol combustion consumption by to the public,4.688487328734,TJ,CH4,10.0,kg/TJ,46.88487328734,kg -e68249d4-ca98-38d0-9ed4-8595dd47b89e,SESCO,II.1.1,San Juan,AR-J,annual,2016,bioetanol combustion consumption by to the public,4.688487328734,TJ,N2O,0.6,kg/TJ,2.8130923972404003,kg -ffbb356e-3dd9-3358-a0ea-da738838736f,SESCO,II.1.1,San Luis,AR-D,annual,2016,bioetanol combustion consumption by to the public,3.05211468177,TJ,CH4,10.0,kg/TJ,30.5211468177,kg -2b4f6d6c-a75a-37ca-9d33-84ea9091ec34,SESCO,II.1.1,San Luis,AR-D,annual,2016,bioetanol combustion consumption by to the public,3.05211468177,TJ,N2O,0.6,kg/TJ,1.831268809062,kg -78d84c43-6abb-3d3f-99f2-44fb34be01e3,SESCO,II.1.1,Santa Fe,AR-S,annual,2016,bioetanol combustion consumption by to the public,15.911044557902999,TJ,CH4,10.0,kg/TJ,159.11044557903,kg -41ff48e9-93d9-3a11-b5d1-4bcd25fc00a4,SESCO,II.1.1,Santa Fe,AR-S,annual,2016,bioetanol combustion consumption by to the public,15.911044557902999,TJ,N2O,0.6,kg/TJ,9.5466267347418,kg -aeb9b8e9-9fef-3798-8664-94d92ec81a61,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2016,bioetanol combustion consumption by to the public,1.9963327399289998,TJ,CH4,10.0,kg/TJ,19.963327399289998,kg -3b6ffda9-d6d8-31d1-8ea8-120e31ff2604,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2016,bioetanol combustion consumption by to the public,1.9963327399289998,TJ,N2O,0.6,kg/TJ,1.1977996439574,kg -833c4023-b905-3c81-a85f-d2da66f7f719,SESCO,II.1.1,Tucuman,AR-T,annual,2016,bioetanol combustion consumption by to the public,2.034020047653,TJ,CH4,10.0,kg/TJ,20.34020047653,kg -87a6390d-bab4-3c86-97b9-a21c2b7e12a2,SESCO,II.1.1,Tucuman,AR-T,annual,2016,bioetanol combustion consumption by to the public,2.034020047653,TJ,N2O,0.6,kg/TJ,1.2204120285918,kg -7f296f88-f84b-3a40-ac19-76eeb2ea94b2,SESCO,II.5.1,Buenos Aires,AR-B,annual,2016,bioetanol combustion consumption by agriculture machines,0.509069461527,TJ,CH4,10.0,kg/TJ,5.0906946152699994,kg -23fb1e55-270f-3226-bd27-ecedde2a0f0f,SESCO,II.5.1,Buenos Aires,AR-B,annual,2016,bioetanol combustion consumption by agriculture machines,0.509069461527,TJ,N2O,0.6,kg/TJ,0.30544167691619994,kg -00a53d21-fe43-30ed-895c-b02da1a05888,SESCO,II.5.1,Rio Negro,AR-R,annual,2016,bioetanol combustion consumption by agriculture machines,0.14658466482,TJ,CH4,10.0,kg/TJ,1.4658466481999999,kg -10185bbb-6c5f-3e09-8761-5263895795ec,SESCO,II.5.1,Rio Negro,AR-R,annual,2016,bioetanol combustion consumption by agriculture machines,0.14658466482,TJ,N2O,0.6,kg/TJ,0.08795079889199998,kg -21bdb0bc-1cef-3f47-9db0-4d8831d34852,SESCO,II.1.1,Buenos Aires,AR-B,annual,2016,bioetanol combustion consumption by to the public,296.458393415382,TJ,CH4,10.0,kg/TJ,2964.58393415382,kg -412fedb9-4337-3397-8990-64ee5e8999f8,SESCO,II.1.1,Buenos Aires,AR-B,annual,2016,bioetanol combustion consumption by to the public,296.458393415382,TJ,N2O,0.6,kg/TJ,177.87503604922918,kg -4d66c12a-63d6-3c53-b837-609c7a5d8557,SESCO,II.1.1,Capital Federal,AR-C,annual,2016,bioetanol combustion consumption by to the public,54.352240207848,TJ,CH4,10.0,kg/TJ,543.52240207848,kg -deecf8b6-ca89-31d1-9996-a9c485161cde,SESCO,II.1.1,Capital Federal,AR-C,annual,2016,bioetanol combustion consumption by to the public,54.352240207848,TJ,N2O,0.6,kg/TJ,32.6113441247088,kg -30c94708-33e7-32c6-8dbb-274cabe5cef5,SESCO,II.1.1,Chubut,AR-U,annual,2016,bioetanol combustion consumption by to the public,103.68535109862599,TJ,CH4,10.0,kg/TJ,1036.8535109862598,kg -83321706-e6db-3e55-a0fa-4a47e0ead898,SESCO,II.1.1,Chubut,AR-U,annual,2016,bioetanol combustion consumption by to the public,103.68535109862599,TJ,N2O,0.6,kg/TJ,62.21121065917559,kg -4fd9c341-223e-3b06-b537-3cfe99cadad0,SESCO,II.1.1,Córdoba,AR-X,annual,2016,bioetanol combustion consumption by to the public,35.385618463767,TJ,CH4,10.0,kg/TJ,353.85618463767,kg -a8f758d4-8f03-36cd-8e39-a4832717d2d1,SESCO,II.1.1,Córdoba,AR-X,annual,2016,bioetanol combustion consumption by to the public,35.385618463767,TJ,N2O,0.6,kg/TJ,21.2313710782602,kg -36e4a5eb-fc0e-3629-8af1-c26e21f05887,SESCO,II.1.1,Entre Rios,AR-E,annual,2016,bioetanol combustion consumption by to the public,11.563456441581001,TJ,CH4,10.0,kg/TJ,115.63456441581002,kg -a05fa58f-f9f0-3726-a271-1c926b726366,SESCO,II.1.1,Entre Rios,AR-E,annual,2016,bioetanol combustion consumption by to the public,11.563456441581001,TJ,N2O,0.6,kg/TJ,6.938073864948601,kg -eda637ec-8550-3458-b6bd-4307646eeae8,SESCO,II.1.1,La Pampa,AR-L,annual,2016,bioetanol combustion consumption by to the public,29.059491449537997,TJ,CH4,10.0,kg/TJ,290.59491449537995,kg -ce5b7a82-6ce8-312d-b925-143dbb6f2a08,SESCO,II.1.1,La Pampa,AR-L,annual,2016,bioetanol combustion consumption by to the public,29.059491449537997,TJ,N2O,0.6,kg/TJ,17.4356948697228,kg -8e06960b-b041-3d30-987e-e8913136a020,SESCO,II.1.1,Mendoza,AR-M,annual,2016,bioetanol combustion consumption by to the public,0.543859476039,TJ,CH4,10.0,kg/TJ,5.43859476039,kg -9b073674-6e01-39f8-a0a7-765288fdf158,SESCO,II.1.1,Mendoza,AR-M,annual,2016,bioetanol combustion consumption by to the public,0.543859476039,TJ,N2O,0.6,kg/TJ,0.32631568562339996,kg -bcc297d8-ea01-3a49-be5f-8fcd7cf7a6f7,SESCO,II.1.1,Neuquén,AR-Q,annual,2016,bioetanol combustion consumption by to the public,41.928281823978,TJ,CH4,10.0,kg/TJ,419.28281823978,kg -27e06b97-c765-3564-8a76-0674e4d39838,SESCO,II.1.1,Neuquén,AR-Q,annual,2016,bioetanol combustion consumption by to the public,41.928281823978,TJ,N2O,0.6,kg/TJ,25.1569690943868,kg -496f4d7b-aafe-355d-af41-94b5adae4f65,SESCO,II.1.1,Rio Negro,AR-R,annual,2016,bioetanol combustion consumption by to the public,88.723940554557,TJ,CH4,10.0,kg/TJ,887.23940554557,kg -5a8bb5f8-9b04-3c63-bc6c-75e084d36d6e,SESCO,II.1.1,Rio Negro,AR-R,annual,2016,bioetanol combustion consumption by to the public,88.723940554557,TJ,N2O,0.6,kg/TJ,53.2343643327342,kg -f9961eff-c342-36c1-96ff-b6a29934c706,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2016,bioetanol combustion consumption by to the public,60.02539831757699,TJ,CH4,10.0,kg/TJ,600.2539831757699,kg -7df0f30e-7718-3437-be96-e360ddc2ef2b,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2016,bioetanol combustion consumption by to the public,60.02539831757699,TJ,N2O,0.6,kg/TJ,36.015238990546194,kg -65a4e23a-9e7d-3b41-8ec9-6fb540c8819a,SESCO,II.1.1,Santa Fe,AR-S,annual,2016,bioetanol combustion consumption by to the public,42.124481580555,TJ,CH4,10.0,kg/TJ,421.24481580555,kg -234415f0-14e9-3865-a0a8-7056bf968bcb,SESCO,II.1.1,Santa Fe,AR-S,annual,2016,bioetanol combustion consumption by to the public,42.124481580555,TJ,N2O,0.6,kg/TJ,25.274688948332997,kg -6389b36d-31f6-3488-942b-b5e2cb3d8a45,SESCO,II.1.1,Buenos Aires,AR-B,annual,2016,bioetanol combustion consumption by to the public,78.81346745464501,TJ,CH4,10.0,kg/TJ,788.13467454645,kg -b89de1f9-4a0b-377f-afdb-cbda8a8f0167,SESCO,II.1.1,Buenos Aires,AR-B,annual,2016,bioetanol combustion consumption by to the public,78.81346745464501,TJ,N2O,0.6,kg/TJ,47.288080472787,kg -59565871-37ba-3f7a-8ec8-300fbc94810e,SESCO,II.1.1,Capital Federal,AR-C,annual,2016,bioetanol combustion consumption by to the public,20.574607994424,TJ,CH4,10.0,kg/TJ,205.74607994424,kg -4ab463b3-5c3f-3604-91b6-ab14da3965cc,SESCO,II.1.1,Capital Federal,AR-C,annual,2016,bioetanol combustion consumption by to the public,20.574607994424,TJ,N2O,0.6,kg/TJ,12.344764796654399,kg -e7290290-61e5-3599-ad33-a5027b23d775,SESCO,II.1.1,Chubut,AR-U,annual,2016,bioetanol combustion consumption by to the public,21.761166965571,TJ,CH4,10.0,kg/TJ,217.61166965571,kg -65bd2c9c-f017-3d6d-af61-4d542c782cf1,SESCO,II.1.1,Chubut,AR-U,annual,2016,bioetanol combustion consumption by to the public,21.761166965571,TJ,N2O,0.6,kg/TJ,13.0567001793426,kg -02f070d0-e713-3309-8d28-21be66c3e031,SESCO,II.1.1,Córdoba,AR-X,annual,2016,bioetanol combustion consumption by to the public,9.008830250145,TJ,CH4,10.0,kg/TJ,90.08830250144999,kg -6b806b97-dc3f-37e7-a92e-2e273d1ee2a6,SESCO,II.1.1,Córdoba,AR-X,annual,2016,bioetanol combustion consumption by to the public,9.008830250145,TJ,N2O,0.6,kg/TJ,5.405298150087,kg -5ea9a2a9-0421-31ef-b067-ef62d83c2c22,SESCO,II.1.1,Entre Rios,AR-E,annual,2016,bioetanol combustion consumption by to the public,3.5602125986789996,TJ,CH4,10.0,kg/TJ,35.60212598679,kg -c62e4f01-0c84-3c44-8d2d-9f2cb1bb16f4,SESCO,II.1.1,Entre Rios,AR-E,annual,2016,bioetanol combustion consumption by to the public,3.5602125986789996,TJ,N2O,0.6,kg/TJ,2.1361275592073996,kg -0e4a4a14-6271-3c77-915b-84246525d608,SESCO,II.1.1,La Pampa,AR-L,annual,2016,bioetanol combustion consumption by to the public,10.009933398431999,TJ,CH4,10.0,kg/TJ,100.09933398431998,kg -3ced0c01-5fbb-3f46-843e-b51c54aef4cb,SESCO,II.1.1,La Pampa,AR-L,annual,2016,bioetanol combustion consumption by to the public,10.009933398431999,TJ,N2O,0.6,kg/TJ,6.005960039059199,kg -51a55a41-785c-3485-b775-55f58e32248a,SESCO,II.1.1,Mendoza,AR-M,annual,2016,bioetanol combustion consumption by to the public,0.15868515227399999,TJ,CH4,10.0,kg/TJ,1.58685152274,kg -44e54cd2-0fde-313e-b6f5-69ea744fcfaa,SESCO,II.1.1,Mendoza,AR-M,annual,2016,bioetanol combustion consumption by to the public,0.15868515227399999,TJ,N2O,0.6,kg/TJ,0.0952110913644,kg -c1dd1d72-79fa-3c8c-8979-4aaacfed44a1,SESCO,II.1.1,Neuquén,AR-Q,annual,2016,bioetanol combustion consumption by to the public,18.310571360631002,TJ,CH4,10.0,kg/TJ,183.10571360631002,kg -1afdb99a-2d28-3752-bcbb-0cd893e912a3,SESCO,II.1.1,Neuquén,AR-Q,annual,2016,bioetanol combustion consumption by to the public,18.310571360631002,TJ,N2O,0.6,kg/TJ,10.9863428163786,kg -9ef8d2bc-0a85-3a2b-a3d1-b7cd7919e137,SESCO,II.1.1,Rio Negro,AR-R,annual,2016,bioetanol combustion consumption by to the public,20.619712410263997,TJ,CH4,10.0,kg/TJ,206.19712410263998,kg -ecc01821-52ea-3c64-949c-59a75cb24135,SESCO,II.1.1,Rio Negro,AR-R,annual,2016,bioetanol combustion consumption by to the public,20.619712410263997,TJ,N2O,0.6,kg/TJ,12.371827446158397,kg -9d7bbd95-7268-3956-8955-a230dccc5fe1,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2016,bioetanol combustion consumption by to the public,13.381896221892001,TJ,CH4,10.0,kg/TJ,133.81896221892,kg -63104ff4-0aef-3162-94b6-696438bc82ca,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2016,bioetanol combustion consumption by to the public,13.381896221892001,TJ,N2O,0.6,kg/TJ,8.029137733135201,kg -da2607e3-03f6-3f23-a040-5416706409b3,SESCO,II.1.1,Santa Fe,AR-S,annual,2016,bioetanol combustion consumption by to the public,14.613246305658,TJ,CH4,10.0,kg/TJ,146.13246305658,kg -7dd5ac20-4192-3246-8d42-ff6ab6075039,SESCO,II.1.1,Santa Fe,AR-S,annual,2016,bioetanol combustion consumption by to the public,14.613246305658,TJ,N2O,0.6,kg/TJ,8.7679477833948,kg -7a0d60ff-886a-38a0-9f91-8215529f4482,SESCO,II.1.1,Buenos Aires,AR-B,annual,2016,bioetanol combustion consumption by to the public,29.506274028,TJ,CH4,10.0,kg/TJ,295.06274028,kg -07ee3185-6c5a-3a10-b956-e108773f7e49,SESCO,II.1.1,Buenos Aires,AR-B,annual,2016,bioetanol combustion consumption by to the public,29.506274028,TJ,N2O,0.6,kg/TJ,17.7037644168,kg -01ad7400-6586-3175-9128-6a90653a62ed,SESCO,II.1.1,Capital Federal,AR-C,annual,2016,bioetanol combustion consumption by to the public,2.83777263,TJ,CH4,10.0,kg/TJ,28.3777263,kg -611f8389-4c8b-370f-8708-b23c05a31b8e,SESCO,II.1.1,Capital Federal,AR-C,annual,2016,bioetanol combustion consumption by to the public,2.83777263,TJ,N2O,0.6,kg/TJ,1.702663578,kg -3b51c2cd-4f9e-3928-b5aa-89301776201b,SESCO,II.1.1,Corrientes,AR-W,annual,2016,bioetanol combustion consumption by to the public,0.29057292,TJ,CH4,10.0,kg/TJ,2.9057292,kg -23a6776a-3357-3825-9034-9be59cfb7a52,SESCO,II.1.1,Corrientes,AR-W,annual,2016,bioetanol combustion consumption by to the public,0.29057292,TJ,N2O,0.6,kg/TJ,0.174343752,kg -621d0e07-bdd9-3394-b7f9-fcccb847dc40,SESCO,II.1.1,Córdoba,AR-X,annual,2016,bioetanol combustion consumption by to the public,9.26084016,TJ,CH4,10.0,kg/TJ,92.60840160000001,kg -98c5b8f7-c762-3598-bfbc-e51b472122d1,SESCO,II.1.1,Córdoba,AR-X,annual,2016,bioetanol combustion consumption by to the public,9.26084016,TJ,N2O,0.6,kg/TJ,5.556504096,kg -f595275e-ad75-365f-a5d9-f7bedc73c1e4,SESCO,II.1.1,Entre Rios,AR-E,annual,2016,bioetanol combustion consumption by to the public,2.55657303,TJ,CH4,10.0,kg/TJ,25.5657303,kg -d3874986-41c2-3c82-86ef-e9edd61357e3,SESCO,II.1.1,Entre Rios,AR-E,annual,2016,bioetanol combustion consumption by to the public,2.55657303,TJ,N2O,0.6,kg/TJ,1.533943818,kg -11f3886b-b6f3-3f12-a03e-ffd4630640d7,SESCO,II.1.1,Santa Fe,AR-S,annual,2016,bioetanol combustion consumption by to the public,1.57940442,TJ,CH4,10.0,kg/TJ,15.794044199999998,kg -f3f264db-0aea-3ab1-8a93-8ba3ea1a1074,SESCO,II.1.1,Santa Fe,AR-S,annual,2016,bioetanol combustion consumption by to the public,1.57940442,TJ,N2O,0.6,kg/TJ,0.9476426519999999,kg -9826a71e-fc14-36ee-881e-bec1626d313b,SESCO,II.1.1,Buenos Aires,AR-B,annual,2016,bioetanol combustion consumption by to the public,3.726129033,TJ,CH4,10.0,kg/TJ,37.26129033,kg -4b644a17-7415-3b98-ae94-d06e771ebfd6,SESCO,II.1.1,Buenos Aires,AR-B,annual,2016,bioetanol combustion consumption by to the public,3.726129033,TJ,N2O,0.6,kg/TJ,2.2356774198,kg -a6dff89f-9983-3612-b175-cf357c2528d5,SESCO,II.1.1,Capital Federal,AR-C,annual,2016,bioetanol combustion consumption by to the public,0.22964633999999998,TJ,CH4,10.0,kg/TJ,2.2964634,kg -e71ffa4c-ed30-3a65-96ba-e669ff53fc76,SESCO,II.1.1,Capital Federal,AR-C,annual,2016,bioetanol combustion consumption by to the public,0.22964633999999998,TJ,N2O,0.6,kg/TJ,0.13778780399999999,kg -1f605ba3-9874-30e7-94d4-00c2a386964b,SESCO,II.1.1,Córdoba,AR-X,annual,2016,bioetanol combustion consumption by to the public,0.5483392199999999,TJ,CH4,10.0,kg/TJ,5.483392199999999,kg -492ac5f5-48d4-3315-bf9d-aeae011210c0,SESCO,II.1.1,Córdoba,AR-X,annual,2016,bioetanol combustion consumption by to the public,0.5483392199999999,TJ,N2O,0.6,kg/TJ,0.32900353199999993,kg -b7c7c64a-5711-3883-a57d-b7d961e3bf1f,SESCO,II.1.1,Entre Rios,AR-E,annual,2016,bioetanol combustion consumption by to the public,0.217695357,TJ,CH4,10.0,kg/TJ,2.1769535700000002,kg -72980f97-da3e-3c44-9065-1a9f8adb9c64,SESCO,II.1.1,Entre Rios,AR-E,annual,2016,bioetanol combustion consumption by to the public,0.217695357,TJ,N2O,0.6,kg/TJ,0.1306172142,kg -c39ac509-fc78-3861-a511-486f466b694d,SESCO,II.1.1,Santa Fe,AR-S,annual,2016,bioetanol combustion consumption by to the public,0.15465978,TJ,CH4,10.0,kg/TJ,1.5465978,kg -c941fe39-6e7b-3a95-a9da-6c5f6a438089,SESCO,II.1.1,Santa Fe,AR-S,annual,2016,bioetanol combustion consumption by to the public,0.15465978,TJ,N2O,0.6,kg/TJ,0.09279586799999999,kg -424b76bd-4c2d-3750-b336-dda4d9655bb6,SESCO,II.1.1,Catamarca,AR-K,annual,2016,bioetanol combustion consumption by to the public,20.4166844244,TJ,CH4,10.0,kg/TJ,204.166844244,kg -0c1cd512-ee4f-3487-ac09-119e05217059,SESCO,II.1.1,Catamarca,AR-K,annual,2016,bioetanol combustion consumption by to the public,20.4166844244,TJ,N2O,0.6,kg/TJ,12.250010654639999,kg -899062cb-9301-3904-823e-904d2fe25c54,SESCO,II.1.1,Chaco,AR-H,annual,2016,bioetanol combustion consumption by to the public,7.1192474397000005,TJ,CH4,10.0,kg/TJ,71.19247439700001,kg -208b1829-6397-3164-99fb-bcb4b1f23776,SESCO,II.1.1,Chaco,AR-H,annual,2016,bioetanol combustion consumption by to the public,7.1192474397000005,TJ,N2O,0.6,kg/TJ,4.27154846382,kg -1a112407-3f72-3650-9aa3-87ff8be514f7,SESCO,II.1.1,Jujuy,AR-Y,annual,2016,bioetanol combustion consumption by to the public,41.097555873,TJ,CH4,10.0,kg/TJ,410.97555873,kg -ee74ca3e-82a1-314c-b03a-0e16c663311f,SESCO,II.1.1,Jujuy,AR-Y,annual,2016,bioetanol combustion consumption by to the public,41.097555873,TJ,N2O,0.6,kg/TJ,24.6585335238,kg -26f67304-a1da-3745-9f4b-a7752062bb03,SESCO,II.1.1,La Rioja,AR-F,annual,2016,bioetanol combustion consumption by to the public,34.6680207522,TJ,CH4,10.0,kg/TJ,346.680207522,kg -e444b4f2-ffff-3865-ae6d-663e3e102bf4,SESCO,II.1.1,La Rioja,AR-F,annual,2016,bioetanol combustion consumption by to the public,34.6680207522,TJ,N2O,0.6,kg/TJ,20.80081245132,kg -096272fd-1e64-3ad1-896c-508c51a0adf2,SESCO,II.1.1,Salta,AR-A,annual,2016,bioetanol combustion consumption by to the public,81.40224604049999,TJ,CH4,10.0,kg/TJ,814.022460405,kg -a532c5db-b8db-32f1-b187-12e5302f5d6f,SESCO,II.1.1,Salta,AR-A,annual,2016,bioetanol combustion consumption by to the public,81.40224604049999,TJ,N2O,0.6,kg/TJ,48.84134762429999,kg -a268fa5b-f32f-34bb-86b2-02a1e57b51b6,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2016,bioetanol combustion consumption by to the public,39.281311089899994,TJ,CH4,10.0,kg/TJ,392.8131108989999,kg -3101b95e-21b2-33b3-a7ef-001851e977a2,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2016,bioetanol combustion consumption by to the public,39.281311089899994,TJ,N2O,0.6,kg/TJ,23.568786653939995,kg -0e72fc29-e72c-355e-a3b2-54695014dfa5,SESCO,II.1.1,Tucuman,AR-T,annual,2016,bioetanol combustion consumption by to the public,150.0387566733,TJ,CH4,10.0,kg/TJ,1500.387566733,kg -479cb9d0-d465-3f1b-8b27-f3a889115a05,SESCO,II.1.1,Tucuman,AR-T,annual,2016,bioetanol combustion consumption by to the public,150.0387566733,TJ,N2O,0.6,kg/TJ,90.02325400398,kg -20840cfa-9af2-3b98-a826-f7fc20498759,SESCO,II.1.1,Catamarca,AR-K,annual,2016,bioetanol combustion consumption by to the public,1.6858853352,TJ,CH4,10.0,kg/TJ,16.858853352,kg -2cc39e9d-27a0-3f4e-9f03-33b45bc98627,SESCO,II.1.1,Catamarca,AR-K,annual,2016,bioetanol combustion consumption by to the public,1.6858853352,TJ,N2O,0.6,kg/TJ,1.01153120112,kg -b9d05ec1-6068-3e88-9afa-267a4fe95fc8,SESCO,II.1.1,Chaco,AR-H,annual,2016,bioetanol combustion consumption by to the public,0.11489346989999999,TJ,CH4,10.0,kg/TJ,1.1489346989999998,kg -a6eabde5-4c53-3ed0-ad52-a76ce05aba6c,SESCO,II.1.1,Chaco,AR-H,annual,2016,bioetanol combustion consumption by to the public,0.11489346989999999,TJ,N2O,0.6,kg/TJ,0.06893608193999999,kg -9359f7cd-a9d6-3f9c-b70d-23fe61d7f77a,SESCO,II.1.1,Jujuy,AR-Y,annual,2016,bioetanol combustion consumption by to the public,1.9578287817,TJ,CH4,10.0,kg/TJ,19.578287817,kg -a7c2f926-194a-37bc-8b37-08c09f6c5120,SESCO,II.1.1,Jujuy,AR-Y,annual,2016,bioetanol combustion consumption by to the public,1.9578287817,TJ,N2O,0.6,kg/TJ,1.17469726902,kg -2b48c6f5-91f7-3225-ab41-d2ac7088859a,SESCO,II.1.1,La Rioja,AR-F,annual,2016,bioetanol combustion consumption by to the public,2.3023685916,TJ,CH4,10.0,kg/TJ,23.023685916,kg -ec405814-2c5a-38ce-8e54-63ead230906d,SESCO,II.1.1,La Rioja,AR-F,annual,2016,bioetanol combustion consumption by to the public,2.3023685916,TJ,N2O,0.6,kg/TJ,1.38142115496,kg -6ec1bce4-656b-3e3f-9bab-5026dd95a7b2,SESCO,II.1.1,Salta,AR-A,annual,2016,bioetanol combustion consumption by to the public,4.5696575331,TJ,CH4,10.0,kg/TJ,45.696575331,kg -fda3f857-b4d6-3afa-ac92-8d39a61c3d9e,SESCO,II.1.1,Salta,AR-A,annual,2016,bioetanol combustion consumption by to the public,4.5696575331,TJ,N2O,0.6,kg/TJ,2.74179451986,kg -9a07f8d8-593e-3347-ac49-d04282647625,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2016,bioetanol combustion consumption by to the public,3.0668800040999997,TJ,CH4,10.0,kg/TJ,30.668800040999997,kg -e5a21bd7-6958-3d70-8f9e-3294f26a2af4,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2016,bioetanol combustion consumption by to the public,3.0668800040999997,TJ,N2O,0.6,kg/TJ,1.8401280024599997,kg -2185f12b-be00-38ca-962b-61874fe34552,SESCO,II.1.1,Tucuman,AR-T,annual,2016,bioetanol combustion consumption by to the public,9.6507468387,TJ,CH4,10.0,kg/TJ,96.507468387,kg -9421e13e-cded-3838-92d9-1082a19aff15,SESCO,II.1.1,Tucuman,AR-T,annual,2016,bioetanol combustion consumption by to the public,9.6507468387,TJ,N2O,0.6,kg/TJ,5.79044810322,kg -a17b563f-1752-3cb1-9092-e5a79a8244da,SESCO,II.1.1,Buenos Aires,AR-B,annual,2016,bioetanol combustion consumption by to the public,3.59935488,TJ,CH4,10.0,kg/TJ,35.9935488,kg -dd0f6e0d-f461-3666-9654-f894221c8e0c,SESCO,II.1.1,Buenos Aires,AR-B,annual,2016,bioetanol combustion consumption by to the public,3.59935488,TJ,N2O,0.6,kg/TJ,2.159612928,kg -2b13ded6-aa58-32c3-8dac-68b39390c557,SESCO,II.1.1,Entre Rios,AR-E,annual,2016,bioetanol combustion consumption by to the public,1.81608075,TJ,CH4,10.0,kg/TJ,18.1608075,kg -70f00f8c-2958-32f6-8457-c5a7a27b2286,SESCO,II.1.1,Entre Rios,AR-E,annual,2016,bioetanol combustion consumption by to the public,1.81608075,TJ,N2O,0.6,kg/TJ,1.0896484499999999,kg -6997fb75-24fc-3ca0-a2f7-3479ffed5873,SESCO,II.1.1,Buenos Aires,AR-B,annual,2016,bioetanol combustion consumption by to the public,1084.99225329,TJ,CH4,10.0,kg/TJ,10849.9225329,kg -7890b35a-1ceb-31d4-bca0-9b9c89b0d7aa,SESCO,II.1.1,Buenos Aires,AR-B,annual,2016,bioetanol combustion consumption by to the public,1084.99225329,TJ,N2O,0.6,kg/TJ,650.995351974,kg -e31d37d3-14f2-3d02-8440-152392cb176f,SESCO,II.1.1,Capital Federal,AR-C,annual,2016,bioetanol combustion consumption by to the public,328.6285992,TJ,CH4,10.0,kg/TJ,3286.285992,kg -38d4952d-0cfe-360f-aaaf-6c0f0d5ba9aa,SESCO,II.1.1,Capital Federal,AR-C,annual,2016,bioetanol combustion consumption by to the public,328.6285992,TJ,N2O,0.6,kg/TJ,197.17715952,kg -4972f85d-5012-368f-bacc-4e14c718a207,SESCO,II.1.1,Catamarca,AR-K,annual,2016,bioetanol combustion consumption by to the public,4.33750383,TJ,CH4,10.0,kg/TJ,43.3750383,kg -6223f75a-4420-3194-9a81-cba3ce6a7555,SESCO,II.1.1,Catamarca,AR-K,annual,2016,bioetanol combustion consumption by to the public,4.33750383,TJ,N2O,0.6,kg/TJ,2.602502298,kg -41565e57-da12-30ac-8a23-3c384ee55736,SESCO,II.1.1,Chaco,AR-H,annual,2016,bioetanol combustion consumption by to the public,63.358956539999994,TJ,CH4,10.0,kg/TJ,633.5895654,kg -1cbdbf52-defd-3d6f-a766-5c70c1971240,SESCO,II.1.1,Chaco,AR-H,annual,2016,bioetanol combustion consumption by to the public,63.358956539999994,TJ,N2O,0.6,kg/TJ,38.015373923999995,kg -68a54c05-3e79-3fd9-a3df-dee1f3cd9b1c,SESCO,II.1.1,Corrientes,AR-W,annual,2016,bioetanol combustion consumption by to the public,64.17443537999999,TJ,CH4,10.0,kg/TJ,641.7443537999999,kg -bd1982b6-10ce-3443-a4b6-3ac1accbcb0b,SESCO,II.1.1,Corrientes,AR-W,annual,2016,bioetanol combustion consumption by to the public,64.17443537999999,TJ,N2O,0.6,kg/TJ,38.504661227999996,kg -2c9f9737-c567-3059-a551-0471d7f0191c,SESCO,II.1.1,Córdoba,AR-X,annual,2016,bioetanol combustion consumption by to the public,224.52147729,TJ,CH4,10.0,kg/TJ,2245.2147729,kg -c639e09d-f218-3b4f-97d7-766873bfa1b3,SESCO,II.1.1,Córdoba,AR-X,annual,2016,bioetanol combustion consumption by to the public,224.52147729,TJ,N2O,0.6,kg/TJ,134.712886374,kg -cf3d5b53-a166-3157-9956-874b8d639773,SESCO,II.1.1,Entre Rios,AR-E,annual,2016,bioetanol combustion consumption by to the public,64.26816858,TJ,CH4,10.0,kg/TJ,642.6816858,kg -9133a6e6-e5fc-3693-8bf9-738b9ab87e40,SESCO,II.1.1,Entre Rios,AR-E,annual,2016,bioetanol combustion consumption by to the public,64.26816858,TJ,N2O,0.6,kg/TJ,38.56090114799999,kg -93668766-4115-3da0-bb09-3229351d061a,SESCO,II.1.1,Formosa,AR-P,annual,2016,bioetanol combustion consumption by to the public,29.96650404,TJ,CH4,10.0,kg/TJ,299.6650404,kg -9cda0e51-b769-3151-b6ac-53dc6400be4a,SESCO,II.1.1,Formosa,AR-P,annual,2016,bioetanol combustion consumption by to the public,29.96650404,TJ,N2O,0.6,kg/TJ,17.979902424,kg -b4a0fcd8-28ab-3af6-8349-85a246af726a,SESCO,II.1.1,Jujuy,AR-Y,annual,2016,bioetanol combustion consumption by to the public,13.43665422,TJ,CH4,10.0,kg/TJ,134.3665422,kg -1e1dcc1a-b092-3158-8f7b-1fe3bc15bc1e,SESCO,II.1.1,Jujuy,AR-Y,annual,2016,bioetanol combustion consumption by to the public,13.43665422,TJ,N2O,0.6,kg/TJ,8.061992532,kg -7fa0248f-3592-3bd7-918e-5b9f6be10d78,SESCO,II.1.1,La Pampa,AR-L,annual,2016,bioetanol combustion consumption by to the public,22.451444730000002,TJ,CH4,10.0,kg/TJ,224.51444730000003,kg -6a0c184c-9ffd-3460-a3cd-9f3a90b57ec4,SESCO,II.1.1,La Pampa,AR-L,annual,2016,bioetanol combustion consumption by to the public,22.451444730000002,TJ,N2O,0.6,kg/TJ,13.470866838000001,kg -0de17de7-dc76-3077-91a1-571ad0a0f49a,SESCO,II.1.1,La Rioja,AR-F,annual,2016,bioetanol combustion consumption by to the public,21.03607341,TJ,CH4,10.0,kg/TJ,210.3607341,kg -a963e8f3-5ef1-3277-8410-d675f1ebc893,SESCO,II.1.1,La Rioja,AR-F,annual,2016,bioetanol combustion consumption by to the public,21.03607341,TJ,N2O,0.6,kg/TJ,12.621644046,kg -728580de-6500-31d2-8fec-76047eb1943f,SESCO,II.1.1,Mendoza,AR-M,annual,2016,bioetanol combustion consumption by to the public,62.50129776,TJ,CH4,10.0,kg/TJ,625.0129776,kg -8278730e-31a9-3291-8aff-b2c322829895,SESCO,II.1.1,Mendoza,AR-M,annual,2016,bioetanol combustion consumption by to the public,62.50129776,TJ,N2O,0.6,kg/TJ,37.500778656,kg -8c2131aa-d68d-3ed8-8bc8-1476fe178361,SESCO,II.1.1,Misiones,AR-N,annual,2016,bioetanol combustion consumption by to the public,82.75704228000001,TJ,CH4,10.0,kg/TJ,827.5704228000001,kg -6d7e47cb-1a6b-3387-98e8-7c03c7a77da1,SESCO,II.1.1,Misiones,AR-N,annual,2016,bioetanol combustion consumption by to the public,82.75704228000001,TJ,N2O,0.6,kg/TJ,49.654225368000006,kg -31565e50-4f6e-36d9-8716-0c6211061f2f,SESCO,II.1.1,Neuquén,AR-Q,annual,2016,bioetanol combustion consumption by to the public,33.09016293,TJ,CH4,10.0,kg/TJ,330.90162929999997,kg -042a3205-c725-30cf-b72e-27c8ec3de389,SESCO,II.1.1,Neuquén,AR-Q,annual,2016,bioetanol combustion consumption by to the public,33.09016293,TJ,N2O,0.6,kg/TJ,19.854097757999998,kg -7dbc4860-67fa-39cc-ae52-cb57af01e86c,SESCO,II.1.1,Rio Negro,AR-R,annual,2016,bioetanol combustion consumption by to the public,10.75119804,TJ,CH4,10.0,kg/TJ,107.5119804,kg -ceca1021-8834-35af-914b-18259374f3bd,SESCO,II.1.1,Rio Negro,AR-R,annual,2016,bioetanol combustion consumption by to the public,10.75119804,TJ,N2O,0.6,kg/TJ,6.450718824,kg -8ecb6865-6dd8-3675-a383-843267e43e0b,SESCO,II.1.1,Salta,AR-A,annual,2016,bioetanol combustion consumption by to the public,17.574975,TJ,CH4,10.0,kg/TJ,175.74974999999998,kg -f252ebc5-ea3e-37f6-8915-52c9cddd71cb,SESCO,II.1.1,Salta,AR-A,annual,2016,bioetanol combustion consumption by to the public,17.574975,TJ,N2O,0.6,kg/TJ,10.544984999999999,kg -dcacdbce-3eb0-3a64-b7a8-d35fe6cfa984,SESCO,II.1.1,San Juan,AR-J,annual,2016,bioetanol combustion consumption by to the public,12.766461839999998,TJ,CH4,10.0,kg/TJ,127.66461839999998,kg -5caadfdf-bd60-3e0e-a413-34b46be3b276,SESCO,II.1.1,San Juan,AR-J,annual,2016,bioetanol combustion consumption by to the public,12.766461839999998,TJ,N2O,0.6,kg/TJ,7.659877103999999,kg -5af4f36f-639b-3542-b1e7-dd83ef09bdb9,SESCO,II.1.1,San Luis,AR-D,annual,2016,bioetanol combustion consumption by to the public,2.3573899799999998,TJ,CH4,10.0,kg/TJ,23.5738998,kg -f255599f-9be3-3961-99a5-b6b0aab30fd1,SESCO,II.1.1,San Luis,AR-D,annual,2016,bioetanol combustion consumption by to the public,2.3573899799999998,TJ,N2O,0.6,kg/TJ,1.4144339879999999,kg -a15a88cb-7ad3-3063-a2f0-961a0d170874,SESCO,II.1.1,Santa Fe,AR-S,annual,2016,bioetanol combustion consumption by to the public,250.27467399,TJ,CH4,10.0,kg/TJ,2502.7467398999997,kg -f59d2757-173b-3424-ba7b-2c4b65a99a4b,SESCO,II.1.1,Santa Fe,AR-S,annual,2016,bioetanol combustion consumption by to the public,250.27467399,TJ,N2O,0.6,kg/TJ,150.164804394,kg -36141202-988e-30b7-9fe4-1d6be103dffe,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2016,bioetanol combustion consumption by to the public,25.418100510000002,TJ,CH4,10.0,kg/TJ,254.18100510000002,kg -8b2cbf8c-c88b-3f34-a4b9-38eb67277910,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2016,bioetanol combustion consumption by to the public,25.418100510000002,TJ,N2O,0.6,kg/TJ,15.250860306,kg -51a59994-c668-3a12-9464-bd6c603e0086,SESCO,II.1.1,Tucuman,AR-T,annual,2016,bioetanol combustion consumption by to the public,55.64940084,TJ,CH4,10.0,kg/TJ,556.4940084,kg -9b8f96a8-50b4-31c4-b350-19f301b45a22,SESCO,II.1.1,Tucuman,AR-T,annual,2016,bioetanol combustion consumption by to the public,55.64940084,TJ,N2O,0.6,kg/TJ,33.389640504,kg -07808ad3-9a8c-3f03-ba4c-6706d7ff91a7,SESCO,II.1.1,Buenos Aires,AR-B,annual,2016,bioetanol combustion consumption by to the public,574.8305656499999,TJ,CH4,10.0,kg/TJ,5748.305656499999,kg -b6f990eb-cde5-38a7-9199-7385f26e0d1e,SESCO,II.1.1,Buenos Aires,AR-B,annual,2016,bioetanol combustion consumption by to the public,574.8305656499999,TJ,N2O,0.6,kg/TJ,344.89833938999993,kg -d3dec21b-d837-3fa0-bc52-77bd87b76137,SESCO,II.1.1,Capital Federal,AR-C,annual,2016,bioetanol combustion consumption by to the public,243.41340375,TJ,CH4,10.0,kg/TJ,2434.1340375,kg -bf056da3-f782-34b4-827f-ec09b122d063,SESCO,II.1.1,Capital Federal,AR-C,annual,2016,bioetanol combustion consumption by to the public,243.41340375,TJ,N2O,0.6,kg/TJ,146.04804224999998,kg -42fcc6ce-d3bc-348c-ad87-e52869aeeb76,SESCO,II.1.1,Catamarca,AR-K,annual,2016,bioetanol combustion consumption by to the public,3.11428557,TJ,CH4,10.0,kg/TJ,31.1428557,kg -63096d99-e1b9-317f-8787-45ece2bb806f,SESCO,II.1.1,Catamarca,AR-K,annual,2016,bioetanol combustion consumption by to the public,3.11428557,TJ,N2O,0.6,kg/TJ,1.8685713419999999,kg -e5abdbee-bea7-30ef-8edc-8c277a7c3b8d,SESCO,II.1.1,Chaco,AR-H,annual,2016,bioetanol combustion consumption by to the public,25.65243351,TJ,CH4,10.0,kg/TJ,256.52433510000003,kg -111fdbe7-5e2c-3545-8616-1f419c231b42,SESCO,II.1.1,Chaco,AR-H,annual,2016,bioetanol combustion consumption by to the public,25.65243351,TJ,N2O,0.6,kg/TJ,15.391460106,kg -2c208b34-1246-3f8b-9d88-1d5fa20fde77,SESCO,II.1.1,Corrientes,AR-W,annual,2016,bioetanol combustion consumption by to the public,25.91254314,TJ,CH4,10.0,kg/TJ,259.1254314,kg -997270e2-be5f-340f-a7d2-0ceede948238,SESCO,II.1.1,Corrientes,AR-W,annual,2016,bioetanol combustion consumption by to the public,25.91254314,TJ,N2O,0.6,kg/TJ,15.547525883999999,kg -50ee6b64-4d99-3ef8-9dd7-6329faf62a8f,SESCO,II.1.1,Córdoba,AR-X,annual,2016,bioetanol combustion consumption by to the public,103.33382301,TJ,CH4,10.0,kg/TJ,1033.3382301000001,kg -aad21cde-aa20-33d2-93ef-364c50d363b3,SESCO,II.1.1,Córdoba,AR-X,annual,2016,bioetanol combustion consumption by to the public,103.33382301,TJ,N2O,0.6,kg/TJ,62.000293806,kg -277fc1b9-09f0-36c9-9989-ff657185ce18,SESCO,II.1.1,Entre Rios,AR-E,annual,2016,bioetanol combustion consumption by to the public,29.08541196,TJ,CH4,10.0,kg/TJ,290.8541196,kg -e70a53c0-6a55-33a5-884b-9c089d0190ae,SESCO,II.1.1,Entre Rios,AR-E,annual,2016,bioetanol combustion consumption by to the public,29.08541196,TJ,N2O,0.6,kg/TJ,17.451247176,kg -6f3f308e-0768-3c4c-bc16-0f44258c8c71,SESCO,II.1.1,Formosa,AR-P,annual,2016,bioetanol combustion consumption by to the public,14.04592002,TJ,CH4,10.0,kg/TJ,140.4592002,kg -1fdb1b28-f07a-300e-bfd6-5d779ad0cec7,SESCO,II.1.1,Formosa,AR-P,annual,2016,bioetanol combustion consumption by to the public,14.04592002,TJ,N2O,0.6,kg/TJ,8.427552012,kg -05b0e2f1-fbef-3430-8de5-69d9dd4ff60e,SESCO,II.1.1,Jujuy,AR-Y,annual,2016,bioetanol combustion consumption by to the public,2.9572824599999996,TJ,CH4,10.0,kg/TJ,29.572824599999997,kg -fac21b2b-4b77-3ba7-bd84-26ba3c5b1d3f,SESCO,II.1.1,Jujuy,AR-Y,annual,2016,bioetanol combustion consumption by to the public,2.9572824599999996,TJ,N2O,0.6,kg/TJ,1.7743694759999997,kg -1ab94e72-9414-3dec-b052-aa215650cdd6,SESCO,II.1.1,La Pampa,AR-L,annual,2016,bioetanol combustion consumption by to the public,12.257959229999999,TJ,CH4,10.0,kg/TJ,122.57959229999999,kg -85ffc2fc-8d45-35b2-91f9-466453e4ae6e,SESCO,II.1.1,La Pampa,AR-L,annual,2016,bioetanol combustion consumption by to the public,12.257959229999999,TJ,N2O,0.6,kg/TJ,7.354775537999999,kg -0fe5bf1a-ff08-3960-9520-a246e71c42e9,SESCO,II.1.1,La Rioja,AR-F,annual,2016,bioetanol combustion consumption by to the public,7.01358669,TJ,CH4,10.0,kg/TJ,70.1358669,kg -e94602b8-4bb0-3002-abd6-92e10a9f4eb8,SESCO,II.1.1,La Rioja,AR-F,annual,2016,bioetanol combustion consumption by to the public,7.01358669,TJ,N2O,0.6,kg/TJ,4.208152014,kg -b57c3a1f-dbe9-3ffb-a614-bad809fbfe6f,SESCO,II.1.1,Mendoza,AR-M,annual,2016,bioetanol combustion consumption by to the public,33.33152592,TJ,CH4,10.0,kg/TJ,333.31525919999996,kg -eda7318b-dcf0-32fa-83a1-02488531db86,SESCO,II.1.1,Mendoza,AR-M,annual,2016,bioetanol combustion consumption by to the public,33.33152592,TJ,N2O,0.6,kg/TJ,19.998915551999996,kg -e2285493-035f-377f-85f8-8387cf3f5cbd,SESCO,II.1.1,Misiones,AR-N,annual,2016,bioetanol combustion consumption by to the public,24.38469198,TJ,CH4,10.0,kg/TJ,243.8469198,kg -a1a0f1be-a116-3451-ab48-9a4afcd0c1e4,SESCO,II.1.1,Misiones,AR-N,annual,2016,bioetanol combustion consumption by to the public,24.38469198,TJ,N2O,0.6,kg/TJ,14.630815188,kg -efbf7c4c-7aad-32ea-b5a2-4873fdcb41e0,SESCO,II.1.1,Neuquén,AR-Q,annual,2016,bioetanol combustion consumption by to the public,24.818208029999997,TJ,CH4,10.0,kg/TJ,248.18208029999997,kg -1eeea28a-74d9-363b-8947-ccf73e5a2cd3,SESCO,II.1.1,Neuquén,AR-Q,annual,2016,bioetanol combustion consumption by to the public,24.818208029999997,TJ,N2O,0.6,kg/TJ,14.890924817999998,kg -d0ef227d-6996-3591-89f6-45b4cba1d31d,SESCO,II.1.1,Rio Negro,AR-R,annual,2016,bioetanol combustion consumption by to the public,6.12312129,TJ,CH4,10.0,kg/TJ,61.2312129,kg -cf219096-83e4-3492-89ce-40d4165926e9,SESCO,II.1.1,Rio Negro,AR-R,annual,2016,bioetanol combustion consumption by to the public,6.12312129,TJ,N2O,0.6,kg/TJ,3.673872774,kg -deeaba68-6508-3c21-a158-88cda7e5fadf,SESCO,II.1.1,Salta,AR-A,annual,2016,bioetanol combustion consumption by to the public,6.587100629999999,TJ,CH4,10.0,kg/TJ,65.87100629999999,kg -906973e5-73e4-366c-9a3b-e978bb5b682b,SESCO,II.1.1,Salta,AR-A,annual,2016,bioetanol combustion consumption by to the public,6.587100629999999,TJ,N2O,0.6,kg/TJ,3.952260377999999,kg -ff952113-7ca1-3e4c-8d8f-468fd69420fe,SESCO,II.1.1,San Juan,AR-J,annual,2016,bioetanol combustion consumption by to the public,2.4604965,TJ,CH4,10.0,kg/TJ,24.604965,kg -60a5ddd5-24d3-30ba-8c8d-e7e98f6802b0,SESCO,II.1.1,San Juan,AR-J,annual,2016,bioetanol combustion consumption by to the public,2.4604965,TJ,N2O,0.6,kg/TJ,1.4762979,kg -906cda79-3058-375b-810d-1244925317f6,SESCO,II.1.1,San Luis,AR-D,annual,2016,bioetanol combustion consumption by to the public,1.5419111399999998,TJ,CH4,10.0,kg/TJ,15.419111399999998,kg -093e800e-bf8e-3425-aae4-043b66520c1c,SESCO,II.1.1,San Luis,AR-D,annual,2016,bioetanol combustion consumption by to the public,1.5419111399999998,TJ,N2O,0.6,kg/TJ,0.9251466839999999,kg -0fc8b084-6987-3e60-8b92-ace07a87c6e3,SESCO,II.1.1,Santa Fe,AR-S,annual,2016,bioetanol combustion consumption by to the public,127.02254597999999,TJ,CH4,10.0,kg/TJ,1270.2254598,kg -af642423-d5c1-3560-822a-599e3568c642,SESCO,II.1.1,Santa Fe,AR-S,annual,2016,bioetanol combustion consumption by to the public,127.02254597999999,TJ,N2O,0.6,kg/TJ,76.21352758799999,kg -aa6ba443-e8ea-3e49-bbd2-0bb61b5869cd,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2016,bioetanol combustion consumption by to the public,12.236869259999999,TJ,CH4,10.0,kg/TJ,122.36869259999999,kg -5157bd71-9e01-303d-8a9f-fde7d3c2a83e,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2016,bioetanol combustion consumption by to the public,12.236869259999999,TJ,N2O,0.6,kg/TJ,7.342121555999999,kg -d1961718-143a-3e2f-a385-cf43883c1b47,SESCO,II.1.1,Tucuman,AR-T,annual,2016,bioetanol combustion consumption by to the public,17.612468279999998,TJ,CH4,10.0,kg/TJ,176.1246828,kg -65091470-3357-312d-a6c1-3d79ce088085,SESCO,II.1.1,Tucuman,AR-T,annual,2016,bioetanol combustion consumption by to the public,17.612468279999998,TJ,N2O,0.6,kg/TJ,10.567480967999998,kg -c158b37f-7ff8-333e-a6c7-9d77c9faa433,SESCO,II.5.1,Buenos Aires,AR-B,annual,2016,bioetanol combustion consumption by agriculture machines,10.44890847,TJ,CH4,10.0,kg/TJ,104.48908469999999,kg -768ba4db-8c68-3455-afff-3ce981079de0,SESCO,II.5.1,Buenos Aires,AR-B,annual,2016,bioetanol combustion consumption by agriculture machines,10.44890847,TJ,N2O,0.6,kg/TJ,6.269345081999999,kg -e4866274-b8ed-3c8c-a2ab-8204e6fb23fd,SESCO,II.5.1,Entre Rios,AR-E,annual,2016,bioetanol combustion consumption by agriculture machines,0.03983661,TJ,CH4,10.0,kg/TJ,0.3983661,kg -35c5a6ea-4036-3984-82ce-b524a1475b12,SESCO,II.5.1,Entre Rios,AR-E,annual,2016,bioetanol combustion consumption by agriculture machines,0.03983661,TJ,N2O,0.6,kg/TJ,0.023901966,kg -08958d38-23c6-317f-928b-f3d645b3f4d0,SESCO,II.5.1,Jujuy,AR-Y,annual,2016,bioetanol combustion consumption by agriculture machines,0.07732989,TJ,CH4,10.0,kg/TJ,0.7732989,kg -76e4d6c7-8d12-3eaf-a762-49a512159701,SESCO,II.5.1,Jujuy,AR-Y,annual,2016,bioetanol combustion consumption by agriculture machines,0.07732989,TJ,N2O,0.6,kg/TJ,0.046397933999999995,kg -0449a275-24a0-3792-b8dd-a0f5e8e5186c,SESCO,II.5.1,Salta,AR-A,annual,2016,bioetanol combustion consumption by agriculture machines,0.04920993,TJ,CH4,10.0,kg/TJ,0.4920993,kg -55ef7d3f-9f4a-3f2b-8669-de7668431bd7,SESCO,II.5.1,Salta,AR-A,annual,2016,bioetanol combustion consumption by agriculture machines,0.04920993,TJ,N2O,0.6,kg/TJ,0.029525957999999998,kg -2283c550-4d18-3f20-9410-8cd23a16a5aa,SESCO,II.5.1,Santa Fe,AR-S,annual,2016,bioetanol combustion consumption by agriculture machines,3.30175197,TJ,CH4,10.0,kg/TJ,33.0175197,kg -ea2da13c-f6de-37c0-82a5-bdda050680f2,SESCO,II.5.1,Santa Fe,AR-S,annual,2016,bioetanol combustion consumption by agriculture machines,3.30175197,TJ,N2O,0.6,kg/TJ,1.981051182,kg -95cd5687-7cce-37ff-8f5d-0e1f89ba3f54,SESCO,II.5.1,Santa Fe,AR-S,annual,2016,bioetanol combustion consumption by agriculture machines,0.06326991,TJ,CH4,10.0,kg/TJ,0.6326991,kg -a3689f92-8ee5-3af1-bb12-55c6643b5848,SESCO,II.5.1,Santa Fe,AR-S,annual,2016,bioetanol combustion consumption by agriculture machines,0.06326991,TJ,N2O,0.6,kg/TJ,0.037961945999999996,kg -1e1af0eb-25c6-3c90-a3fd-704d0bb9b4f7,SESCO,II.1.1,Buenos Aires,AR-B,annual,2016,bioetanol combustion consumption by to the public,2615.22423657,TJ,CH4,10.0,kg/TJ,26152.2423657,kg -48448309-047c-339e-b588-8f90c1e43527,SESCO,II.1.1,Buenos Aires,AR-B,annual,2016,bioetanol combustion consumption by to the public,2615.22423657,TJ,N2O,0.6,kg/TJ,1569.134541942,kg -a17024cd-7e02-3ef8-8e21-5d63d053d68c,SESCO,II.1.1,Capital Federal,AR-C,annual,2016,bioetanol combustion consumption by to the public,603.37232505,TJ,CH4,10.0,kg/TJ,6033.723250499999,kg -abc1871a-a0fd-3509-bc42-884627d109f4,SESCO,II.1.1,Capital Federal,AR-C,annual,2016,bioetanol combustion consumption by to the public,603.37232505,TJ,N2O,0.6,kg/TJ,362.02339502999996,kg -017330e8-419a-3bc7-b3d7-60fda7304d16,SESCO,II.1.1,Catamarca,AR-K,annual,2016,bioetanol combustion consumption by to the public,49.08104684999999,TJ,CH4,10.0,kg/TJ,490.81046849999996,kg -a556ddce-6a7d-35b7-8c1f-1a6568215097,SESCO,II.1.1,Catamarca,AR-K,annual,2016,bioetanol combustion consumption by to the public,49.08104684999999,TJ,N2O,0.6,kg/TJ,29.448628109999994,kg -2490a049-0443-31d0-bec2-f5117dc6d250,SESCO,II.1.1,Chaco,AR-H,annual,2016,bioetanol combustion consumption by to the public,165.68983431,TJ,CH4,10.0,kg/TJ,1656.8983431000001,kg -c4aa427b-cc13-38f7-93e6-0885aee365b6,SESCO,II.1.1,Chaco,AR-H,annual,2016,bioetanol combustion consumption by to the public,165.68983431,TJ,N2O,0.6,kg/TJ,99.413900586,kg -87bcc474-3d2c-3fb0-8b8a-ace56e31d299,SESCO,II.1.1,Chubut,AR-U,annual,2016,bioetanol combustion consumption by to the public,255.02929056,TJ,CH4,10.0,kg/TJ,2550.2929056,kg -c178a935-b7fd-350f-9403-df18d4c60835,SESCO,II.1.1,Chubut,AR-U,annual,2016,bioetanol combustion consumption by to the public,255.02929056,TJ,N2O,0.6,kg/TJ,153.017574336,kg -7267bdf8-8008-3ea2-be5a-1b872bf916b7,SESCO,II.1.1,Corrientes,AR-W,annual,2016,bioetanol combustion consumption by to the public,171.87153884999998,TJ,CH4,10.0,kg/TJ,1718.7153884999998,kg -c56f747e-4c61-3438-8412-94be0fa99e0d,SESCO,II.1.1,Corrientes,AR-W,annual,2016,bioetanol combustion consumption by to the public,171.87153884999998,TJ,N2O,0.6,kg/TJ,103.12292330999999,kg -15be19fa-1f2d-359c-a717-4e319db75116,SESCO,II.1.1,Córdoba,AR-X,annual,2016,bioetanol combustion consumption by to the public,661.10260293,TJ,CH4,10.0,kg/TJ,6611.0260293,kg -ca11bc90-c5be-3c65-8e17-1d64779acc10,SESCO,II.1.1,Córdoba,AR-X,annual,2016,bioetanol combustion consumption by to the public,661.10260293,TJ,N2O,0.6,kg/TJ,396.661561758,kg -9b3c13b8-0901-3e6c-9d40-331db56efa15,SESCO,II.1.1,Entre Rios,AR-E,annual,2016,bioetanol combustion consumption by to the public,232.58253248999998,TJ,CH4,10.0,kg/TJ,2325.8253249,kg -42f92887-869c-38c2-b5b2-4b1f0aab0081,SESCO,II.1.1,Entre Rios,AR-E,annual,2016,bioetanol combustion consumption by to the public,232.58253248999998,TJ,N2O,0.6,kg/TJ,139.54951949399998,kg -77109954-2411-3a0b-bcbf-9cae2bf3c98a,SESCO,II.1.1,Formosa,AR-P,annual,2016,bioetanol combustion consumption by to the public,52.55854857,TJ,CH4,10.0,kg/TJ,525.5854856999999,kg -31516999-ebe7-3f69-80dc-f549de01cb96,SESCO,II.1.1,Formosa,AR-P,annual,2016,bioetanol combustion consumption by to the public,52.55854857,TJ,N2O,0.6,kg/TJ,31.535129142,kg -9a827d8a-77c0-3c12-b33e-c16f01bf6574,SESCO,II.1.1,Jujuy,AR-Y,annual,2016,bioetanol combustion consumption by to the public,90.54861453,TJ,CH4,10.0,kg/TJ,905.4861453,kg -d43b447a-b313-3d4e-96d5-340087159832,SESCO,II.1.1,Jujuy,AR-Y,annual,2016,bioetanol combustion consumption by to the public,90.54861453,TJ,N2O,0.6,kg/TJ,54.329168718,kg -54d7427d-debd-3cf6-9132-e6c56c9d1a85,SESCO,II.1.1,La Pampa,AR-L,annual,2016,bioetanol combustion consumption by to the public,112.73291963999999,TJ,CH4,10.0,kg/TJ,1127.3291964,kg -8757754a-54fb-3efb-ba9c-9329c9a9aefc,SESCO,II.1.1,La Pampa,AR-L,annual,2016,bioetanol combustion consumption by to the public,112.73291963999999,TJ,N2O,0.6,kg/TJ,67.639751784,kg -56f68bff-62cc-3a3f-8f22-ee5c7c964723,SESCO,II.1.1,La Rioja,AR-F,annual,2016,bioetanol combustion consumption by to the public,71.57232819,TJ,CH4,10.0,kg/TJ,715.7232819,kg -b0183200-bf23-3b91-a247-384761c2841b,SESCO,II.1.1,La Rioja,AR-F,annual,2016,bioetanol combustion consumption by to the public,71.57232819,TJ,N2O,0.6,kg/TJ,42.943396914,kg -16f0770f-2e8d-3c6b-bfb2-97411446d980,SESCO,II.1.1,Mendoza,AR-M,annual,2016,bioetanol combustion consumption by to the public,370.34221653,TJ,CH4,10.0,kg/TJ,3703.4221652999995,kg -0f39bbe3-f6e0-3f46-8aff-df4a4bfd5a02,SESCO,II.1.1,Mendoza,AR-M,annual,2016,bioetanol combustion consumption by to the public,370.34221653,TJ,N2O,0.6,kg/TJ,222.205329918,kg -f34299f9-c2a8-3c2e-b478-ab0838a4ba12,SESCO,II.1.1,Misiones,AR-N,annual,2016,bioetanol combustion consumption by to the public,229.82677640999998,TJ,CH4,10.0,kg/TJ,2298.2677641,kg -65a7434c-bcfe-3eda-a248-5d5bcd7581ca,SESCO,II.1.1,Misiones,AR-N,annual,2016,bioetanol combustion consumption by to the public,229.82677640999998,TJ,N2O,0.6,kg/TJ,137.89606584599997,kg -d04fb7d5-cb39-3da7-831f-04c7573e93f2,SESCO,II.1.1,Neuquén,AR-Q,annual,2016,bioetanol combustion consumption by to the public,225.43771932,TJ,CH4,10.0,kg/TJ,2254.3771932,kg -1a388dfe-d6ca-30da-ac50-2a0136f55e03,SESCO,II.1.1,Neuquén,AR-Q,annual,2016,bioetanol combustion consumption by to the public,225.43771932,TJ,N2O,0.6,kg/TJ,135.262631592,kg -ae9703ae-3a00-367c-8e7a-90d85cb87a3f,SESCO,II.1.1,Rio Negro,AR-R,annual,2016,bioetanol combustion consumption by to the public,221.67198800999998,TJ,CH4,10.0,kg/TJ,2216.7198801,kg -490b50ab-ae90-3ea3-88de-a541585f40e6,SESCO,II.1.1,Rio Negro,AR-R,annual,2016,bioetanol combustion consumption by to the public,221.67198800999998,TJ,N2O,0.6,kg/TJ,133.003192806,kg -0c1ccf39-6205-3d13-9ee4-8bb5b364a8fc,SESCO,II.1.1,Salta,AR-A,annual,2016,bioetanol combustion consumption by to the public,214.34908176,TJ,CH4,10.0,kg/TJ,2143.4908176,kg -17916823-2e1a-3b72-a187-655afc370ba5,SESCO,II.1.1,Salta,AR-A,annual,2016,bioetanol combustion consumption by to the public,214.34908176,TJ,N2O,0.6,kg/TJ,128.609449056,kg -bac92023-bb5c-3f12-94eb-87270d87ef4e,SESCO,II.1.1,San Juan,AR-J,annual,2016,bioetanol combustion consumption by to the public,121.45948056,TJ,CH4,10.0,kg/TJ,1214.5948056,kg -88137e6d-f3b2-3e69-bc6d-176185bad2cb,SESCO,II.1.1,San Juan,AR-J,annual,2016,bioetanol combustion consumption by to the public,121.45948056,TJ,N2O,0.6,kg/TJ,72.875688336,kg -0e12d55e-d04d-3346-bcb7-be5407c255fe,SESCO,II.1.1,San Luis,AR-D,annual,2016,bioetanol combustion consumption by to the public,94.99625487,TJ,CH4,10.0,kg/TJ,949.9625487000001,kg -9837c473-4a8d-3940-b04a-c709f809684e,SESCO,II.1.1,San Luis,AR-D,annual,2016,bioetanol combustion consumption by to the public,94.99625487,TJ,N2O,0.6,kg/TJ,56.997752922,kg -805d1347-e6c5-3616-99ad-274f11d6fadc,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2016,bioetanol combustion consumption by to the public,171.52941267,TJ,CH4,10.0,kg/TJ,1715.2941267,kg -0d41b2d1-61a9-3022-98bf-baafd70fed5b,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2016,bioetanol combustion consumption by to the public,171.52941267,TJ,N2O,0.6,kg/TJ,102.917647602,kg -8cca4933-27bf-3a2d-b1d1-6082fc36872b,SESCO,II.1.1,Santa Fe,AR-S,annual,2016,bioetanol combustion consumption by to the public,496.12748426999997,TJ,CH4,10.0,kg/TJ,4961.2748427,kg -549fd33c-7102-3789-b772-0f57c7eded05,SESCO,II.1.1,Santa Fe,AR-S,annual,2016,bioetanol combustion consumption by to the public,496.12748426999997,TJ,N2O,0.6,kg/TJ,297.67649056199997,kg -40e22eb7-ef70-38d2-829e-d0db7b15e47d,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2016,bioetanol combustion consumption by to the public,91.42736328,TJ,CH4,10.0,kg/TJ,914.2736328,kg -fab1f73a-26cb-3c92-83d2-5e625fbc2146,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2016,bioetanol combustion consumption by to the public,91.42736328,TJ,N2O,0.6,kg/TJ,54.856417967999995,kg -f36111b9-3f6b-3019-bc69-a534cff799c0,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2016,bioetanol combustion consumption by to the public,131.29209323999999,TJ,CH4,10.0,kg/TJ,1312.9209323999999,kg -8d599307-57ac-3cfb-bf14-23a8edf229d1,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2016,bioetanol combustion consumption by to the public,131.29209323999999,TJ,N2O,0.6,kg/TJ,78.775255944,kg -7676442e-5a33-3d60-8121-9f6767d6a848,SESCO,II.1.1,Tucuman,AR-T,annual,2016,bioetanol combustion consumption by to the public,161.2445373,TJ,CH4,10.0,kg/TJ,1612.445373,kg -e9f430ce-8e83-318d-bcf6-99ef989a17f5,SESCO,II.1.1,Tucuman,AR-T,annual,2016,bioetanol combustion consumption by to the public,161.2445373,TJ,N2O,0.6,kg/TJ,96.74672238,kg -b6a10ee9-4b64-3a77-bf4c-65d846c1d3e8,SESCO,II.1.1,Buenos Aires,AR-B,annual,2016,bioetanol combustion consumption by to the public,1173.8911635,TJ,CH4,10.0,kg/TJ,11738.911635,kg -e6fd5f9c-bed7-352b-b499-5983c10c08c7,SESCO,II.1.1,Buenos Aires,AR-B,annual,2016,bioetanol combustion consumption by to the public,1173.8911635,TJ,N2O,0.6,kg/TJ,704.3346981,kg -7b7809eb-0556-3e74-9c5e-3a9f82f9de4c,SESCO,II.1.1,Capital Federal,AR-C,annual,2016,bioetanol combustion consumption by to the public,307.03481325,TJ,CH4,10.0,kg/TJ,3070.3481325000002,kg -703ee7bc-61e7-3f85-8fb2-61ee27f368b5,SESCO,II.1.1,Capital Federal,AR-C,annual,2016,bioetanol combustion consumption by to the public,307.03481325,TJ,N2O,0.6,kg/TJ,184.22088795,kg -de37bfa8-bcc2-34fd-947d-1aaf3d62704c,SESCO,II.1.1,Catamarca,AR-K,annual,2016,bioetanol combustion consumption by to the public,21.4180362,TJ,CH4,10.0,kg/TJ,214.180362,kg -20f7582c-c9f7-3886-8547-573c54c0b4bd,SESCO,II.1.1,Catamarca,AR-K,annual,2016,bioetanol combustion consumption by to the public,21.4180362,TJ,N2O,0.6,kg/TJ,12.850821719999999,kg -630849c7-2034-3738-8bbe-ec854bee6c62,SESCO,II.1.1,Chaco,AR-H,annual,2016,bioetanol combustion consumption by to the public,73.44464886,TJ,CH4,10.0,kg/TJ,734.4464886000001,kg -6a26d9ee-e94c-311c-b205-80cc26fd1d68,SESCO,II.1.1,Chaco,AR-H,annual,2016,bioetanol combustion consumption by to the public,73.44464886,TJ,N2O,0.6,kg/TJ,44.066789316,kg -cafa6308-f7f2-3489-b51a-16512e3a0d49,SESCO,II.1.1,Chubut,AR-U,annual,2016,bioetanol combustion consumption by to the public,114.96142646999999,TJ,CH4,10.0,kg/TJ,1149.6142647,kg -f577d003-aff0-37a7-a265-00a0a00b78c8,SESCO,II.1.1,Chubut,AR-U,annual,2016,bioetanol combustion consumption by to the public,114.96142646999999,TJ,N2O,0.6,kg/TJ,68.976855882,kg -bc8c225f-e038-31cd-879b-fbdc67403b7e,SESCO,II.1.1,Corrientes,AR-W,annual,2016,bioetanol combustion consumption by to the public,80.20281258,TJ,CH4,10.0,kg/TJ,802.0281258,kg -7f352d02-5add-32e7-8bcf-eed5ebd7a14c,SESCO,II.1.1,Corrientes,AR-W,annual,2016,bioetanol combustion consumption by to the public,80.20281258,TJ,N2O,0.6,kg/TJ,48.121687548,kg -510f573a-07d3-3834-aa67-0642ca936e9e,SESCO,II.1.1,Córdoba,AR-X,annual,2016,bioetanol combustion consumption by to the public,258.7739319,TJ,CH4,10.0,kg/TJ,2587.739319,kg -311c52c2-779a-3f53-bfdd-f4fd06583ae6,SESCO,II.1.1,Córdoba,AR-X,annual,2016,bioetanol combustion consumption by to the public,258.7739319,TJ,N2O,0.6,kg/TJ,155.26435913999998,kg -d3830645-c70b-341a-8555-60cebb9643e1,SESCO,II.1.1,Entre Rios,AR-E,annual,2016,bioetanol combustion consumption by to the public,103.78608569999999,TJ,CH4,10.0,kg/TJ,1037.860857,kg -d6628dd8-67ef-3487-9567-06a33115a25b,SESCO,II.1.1,Entre Rios,AR-E,annual,2016,bioetanol combustion consumption by to the public,103.78608569999999,TJ,N2O,0.6,kg/TJ,62.27165141999999,kg -1819a030-cb32-32bd-85d7-bf2f9e02e508,SESCO,II.1.1,Formosa,AR-P,annual,2016,bioetanol combustion consumption by to the public,19.31841252,TJ,CH4,10.0,kg/TJ,193.18412519999998,kg -a2d38417-b6ee-378f-9908-daed5af18b87,SESCO,II.1.1,Formosa,AR-P,annual,2016,bioetanol combustion consumption by to the public,19.31841252,TJ,N2O,0.6,kg/TJ,11.591047512,kg -12aaa915-2a39-3b73-a81c-c57b16cd2927,SESCO,II.1.1,Jujuy,AR-Y,annual,2016,bioetanol combustion consumption by to the public,28.11293001,TJ,CH4,10.0,kg/TJ,281.1293001,kg -93ad5447-74c9-323f-b526-d32b90d7a8e7,SESCO,II.1.1,Jujuy,AR-Y,annual,2016,bioetanol combustion consumption by to the public,28.11293001,TJ,N2O,0.6,kg/TJ,16.867758006,kg -cffeff49-561b-3278-b0ae-fff2848a03d3,SESCO,II.1.1,La Pampa,AR-L,annual,2016,bioetanol combustion consumption by to the public,80.07861609,TJ,CH4,10.0,kg/TJ,800.7861608999999,kg -c4972b2c-8fc1-382a-9aa5-05c81bec87d7,SESCO,II.1.1,La Pampa,AR-L,annual,2016,bioetanol combustion consumption by to the public,80.07861609,TJ,N2O,0.6,kg/TJ,48.047169653999994,kg -aec17e27-b91b-303c-8514-0936214bf915,SESCO,II.1.1,La Rioja,AR-F,annual,2016,bioetanol combustion consumption by to the public,29.005738739999998,TJ,CH4,10.0,kg/TJ,290.0573874,kg -c099042e-7463-313b-ad3e-6a4602820268,SESCO,II.1.1,La Rioja,AR-F,annual,2016,bioetanol combustion consumption by to the public,29.005738739999998,TJ,N2O,0.6,kg/TJ,17.403443243999998,kg -88bef4b9-f39e-36ea-9fce-a771b2095dbf,SESCO,II.1.1,Mendoza,AR-M,annual,2016,bioetanol combustion consumption by to the public,202.42387538999998,TJ,CH4,10.0,kg/TJ,2024.2387538999997,kg -00f40d63-1315-312e-8a4e-85c45cc40c91,SESCO,II.1.1,Mendoza,AR-M,annual,2016,bioetanol combustion consumption by to the public,202.42387538999998,TJ,N2O,0.6,kg/TJ,121.45432523399998,kg -286d3a4c-aa51-3dea-92de-6b6cc6848761,SESCO,II.1.1,Misiones,AR-N,annual,2016,bioetanol combustion consumption by to the public,68.66425566,TJ,CH4,10.0,kg/TJ,686.6425565999999,kg -02efd122-84a0-3d63-a11b-4d5e27641f2a,SESCO,II.1.1,Misiones,AR-N,annual,2016,bioetanol combustion consumption by to the public,68.66425566,TJ,N2O,0.6,kg/TJ,41.198553395999994,kg -e32a4cf9-7767-3700-9cec-b737fe903612,SESCO,II.1.1,Neuquén,AR-Q,annual,2016,bioetanol combustion consumption by to the public,136.36071603,TJ,CH4,10.0,kg/TJ,1363.6071603,kg -eb57de1f-6deb-385c-919f-09782e0e14c4,SESCO,II.1.1,Neuquén,AR-Q,annual,2016,bioetanol combustion consumption by to the public,136.36071603,TJ,N2O,0.6,kg/TJ,81.81642961799999,kg -f7436e60-62fe-3962-aa07-7d5ab6b697c9,SESCO,II.1.1,Rio Negro,AR-R,annual,2016,bioetanol combustion consumption by to the public,120.36045879,TJ,CH4,10.0,kg/TJ,1203.6045878999998,kg -b000d2cd-f0fd-32f8-95c6-becaf4ee47fe,SESCO,II.1.1,Rio Negro,AR-R,annual,2016,bioetanol combustion consumption by to the public,120.36045879,TJ,N2O,0.6,kg/TJ,72.216275274,kg -da634914-2ce3-3ac4-9b4e-5b781b633793,SESCO,II.1.1,Salta,AR-A,annual,2016,bioetanol combustion consumption by to the public,71.17864875,TJ,CH4,10.0,kg/TJ,711.7864874999999,kg -764603e4-0d12-3f62-ab4a-eb0e9ce8d16d,SESCO,II.1.1,Salta,AR-A,annual,2016,bioetanol combustion consumption by to the public,71.17864875,TJ,N2O,0.6,kg/TJ,42.70718924999999,kg -d93c39bf-0ab3-360f-af6a-4d7595f38954,SESCO,II.1.1,San Juan,AR-J,annual,2016,bioetanol combustion consumption by to the public,53.03658789,TJ,CH4,10.0,kg/TJ,530.3658789,kg -15b682aa-dc6c-39d1-866a-37f9c6a4f9d0,SESCO,II.1.1,San Juan,AR-J,annual,2016,bioetanol combustion consumption by to the public,53.03658789,TJ,N2O,0.6,kg/TJ,31.821952734,kg -c297e904-7ba9-3d15-af5d-5b097504f621,SESCO,II.1.1,San Luis,AR-D,annual,2016,bioetanol combustion consumption by to the public,49.875435720000006,TJ,CH4,10.0,kg/TJ,498.7543572000001,kg -7ff3b998-163e-34b1-ac93-ea00d1fe0188,SESCO,II.1.1,San Luis,AR-D,annual,2016,bioetanol combustion consumption by to the public,49.875435720000006,TJ,N2O,0.6,kg/TJ,29.925261432000003,kg -5d83a5d6-ca36-3325-8085-1b3e36538cde,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2016,bioetanol combustion consumption by to the public,66.28343238,TJ,CH4,10.0,kg/TJ,662.8343238,kg -6f116bbc-ce17-3a10-acf5-73d6ab5a1ce1,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2016,bioetanol combustion consumption by to the public,66.28343238,TJ,N2O,0.6,kg/TJ,39.770059427999996,kg -9c2dcd24-3cd7-3883-9338-2b4d98ae2366,SESCO,II.1.1,Santa Fe,AR-S,annual,2016,bioetanol combustion consumption by to the public,242.98926102,TJ,CH4,10.0,kg/TJ,2429.8926102,kg -4ecd2aa3-b37c-3b0f-accb-87708f95acf8,SESCO,II.1.1,Santa Fe,AR-S,annual,2016,bioetanol combustion consumption by to the public,242.98926102,TJ,N2O,0.6,kg/TJ,145.79355661199997,kg -5df905cf-9c9c-345f-b225-43346b8dcca8,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2016,bioetanol combustion consumption by to the public,45.69727833,TJ,CH4,10.0,kg/TJ,456.97278330000006,kg -6a777026-51fd-3958-b071-d7311463eec6,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2016,bioetanol combustion consumption by to the public,45.69727833,TJ,N2O,0.6,kg/TJ,27.418366998,kg -48e66f08-4e49-3231-a3bd-6941970da420,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2016,bioetanol combustion consumption by to the public,17.207072189999998,TJ,CH4,10.0,kg/TJ,172.07072189999997,kg -74741aab-4ca8-3df3-ae1a-11dcfa60b176,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2016,bioetanol combustion consumption by to the public,17.207072189999998,TJ,N2O,0.6,kg/TJ,10.324243313999999,kg -21e89820-71c3-349c-9760-dc105f56a109,SESCO,II.1.1,Tucuman,AR-T,annual,2016,bioetanol combustion consumption by to the public,51.28377705,TJ,CH4,10.0,kg/TJ,512.8377705,kg -1266144d-7651-3d95-bbdf-7fa5ea87b2ac,SESCO,II.1.1,Tucuman,AR-T,annual,2016,bioetanol combustion consumption by to the public,51.28377705,TJ,N2O,0.6,kg/TJ,30.770266229999997,kg -11c859ec-1e39-3a4e-8b34-6f7a44f88c34,SESCO,II.1.1,Buenos Aires,AR-B,annual,2016,bioetanol combustion consumption by freight transport,16.40096667,TJ,CH4,10.0,kg/TJ,164.0096667,kg -1a6b027c-c959-3ec0-a1d3-d3cd57390ba3,SESCO,II.1.1,Buenos Aires,AR-B,annual,2016,bioetanol combustion consumption by freight transport,16.40096667,TJ,N2O,0.6,kg/TJ,9.840580002,kg -05e00db0-5cf0-3466-be84-1b515fcaf21f,SESCO,II.1.1,Capital Federal,AR-C,annual,2016,bioetanol combustion consumption by freight transport,17.21410218,TJ,CH4,10.0,kg/TJ,172.1410218,kg -77bfdacd-d42d-3087-ab46-3332617b6082,SESCO,II.1.1,Capital Federal,AR-C,annual,2016,bioetanol combustion consumption by freight transport,17.21410218,TJ,N2O,0.6,kg/TJ,10.328461308,kg -a9ac7948-7498-3f76-9e08-92dcb0de5c46,SESCO,II.1.1,Chaco,AR-H,annual,2016,bioetanol combustion consumption by freight transport,0.57645918,TJ,CH4,10.0,kg/TJ,5.7645918,kg -9488ea82-ca6f-34e3-97bd-bb138897324a,SESCO,II.1.1,Chaco,AR-H,annual,2016,bioetanol combustion consumption by freight transport,0.57645918,TJ,N2O,0.6,kg/TJ,0.34587550799999994,kg -c036d04b-6ffa-3734-a601-b1c2f3514565,SESCO,II.1.1,Chubut,AR-U,annual,2016,bioetanol combustion consumption by freight transport,0.11247984,TJ,CH4,10.0,kg/TJ,1.1247984,kg -3ef19765-c19e-313f-b46d-12a990f11d3f,SESCO,II.1.1,Chubut,AR-U,annual,2016,bioetanol combustion consumption by freight transport,0.11247984,TJ,N2O,0.6,kg/TJ,0.067487904,kg -b2ffd063-1eeb-3297-b5cb-c44a39738867,SESCO,II.1.1,Corrientes,AR-W,annual,2016,bioetanol combustion consumption by freight transport,0.08904654,TJ,CH4,10.0,kg/TJ,0.8904654,kg -a651dae3-ff16-319a-87ed-73a387c59bb6,SESCO,II.1.1,Corrientes,AR-W,annual,2016,bioetanol combustion consumption by freight transport,0.08904654,TJ,N2O,0.6,kg/TJ,0.053427923999999995,kg -7e8ea4cb-3afe-3e73-b316-66eed2e3b95f,SESCO,II.1.1,Córdoba,AR-X,annual,2016,bioetanol combustion consumption by freight transport,0.44288936999999995,TJ,CH4,10.0,kg/TJ,4.4288937,kg -a11ca418-4c66-396b-86b5-ce728ce39981,SESCO,II.1.1,Córdoba,AR-X,annual,2016,bioetanol combustion consumption by freight transport,0.44288936999999995,TJ,N2O,0.6,kg/TJ,0.26573362199999995,kg -3c100df8-ea80-378b-9d83-90c0c81cefa0,SESCO,II.1.1,Entre Rios,AR-E,annual,2016,bioetanol combustion consumption by freight transport,0.14294313,TJ,CH4,10.0,kg/TJ,1.4294313,kg -25a160d4-e026-3176-839a-3094563bd574,SESCO,II.1.1,Entre Rios,AR-E,annual,2016,bioetanol combustion consumption by freight transport,0.14294313,TJ,N2O,0.6,kg/TJ,0.085765878,kg -3ea5c83f-c9a1-3035-a5a8-8f905b6c445f,SESCO,II.1.1,Formosa,AR-P,annual,2016,bioetanol combustion consumption by freight transport,0.00937332,TJ,CH4,10.0,kg/TJ,0.09373319999999999,kg -cc3d6791-c45e-337b-96ed-9284b73e51e0,SESCO,II.1.1,Formosa,AR-P,annual,2016,bioetanol combustion consumption by freight transport,0.00937332,TJ,N2O,0.6,kg/TJ,0.0056239919999999995,kg -2a231542-853f-3947-ba9d-9d48c1146dbe,SESCO,II.1.1,Mendoza,AR-M,annual,2016,bioetanol combustion consumption by freight transport,0.75689559,TJ,CH4,10.0,kg/TJ,7.5689559,kg -bc16225c-ee16-319d-b8f1-25079d1eca8b,SESCO,II.1.1,Mendoza,AR-M,annual,2016,bioetanol combustion consumption by freight transport,0.75689559,TJ,N2O,0.6,kg/TJ,0.45413735399999994,kg -7529da1b-3071-3a45-b391-f9f120cb743d,SESCO,II.1.1,Misiones,AR-N,annual,2016,bioetanol combustion consumption by freight transport,0.04920993,TJ,CH4,10.0,kg/TJ,0.4920993,kg -07357110-9641-3ba8-9dfa-02bbd3777d38,SESCO,II.1.1,Misiones,AR-N,annual,2016,bioetanol combustion consumption by freight transport,0.04920993,TJ,N2O,0.6,kg/TJ,0.029525957999999998,kg -b5d97ba3-e690-369e-9e69-504ad13c0228,SESCO,II.1.1,Neuquén,AR-Q,annual,2016,bioetanol combustion consumption by freight transport,0.12419648999999999,TJ,CH4,10.0,kg/TJ,1.2419649,kg -35f6fafc-7e3e-36c0-8738-a89a321f30ea,SESCO,II.1.1,Neuquén,AR-Q,annual,2016,bioetanol combustion consumption by freight transport,0.12419648999999999,TJ,N2O,0.6,kg/TJ,0.07451789399999999,kg -b0cdf783-fdcc-3480-a942-46d29c398a62,SESCO,II.1.1,Rio Negro,AR-R,annual,2016,bioetanol combustion consumption by freight transport,0.11716649999999999,TJ,CH4,10.0,kg/TJ,1.171665,kg -3b020e36-85b2-3633-b5a1-0864de17a364,SESCO,II.1.1,Rio Negro,AR-R,annual,2016,bioetanol combustion consumption by freight transport,0.11716649999999999,TJ,N2O,0.6,kg/TJ,0.0702999,kg -0ba8f2ac-c4c3-330c-b6aa-f542303a0d95,SESCO,II.1.1,Salta,AR-A,annual,2016,bioetanol combustion consumption by freight transport,0.7498656,TJ,CH4,10.0,kg/TJ,7.498656,kg -bea7270a-c2a0-322b-b75e-f5538a644a1b,SESCO,II.1.1,Salta,AR-A,annual,2016,bioetanol combustion consumption by freight transport,0.7498656,TJ,N2O,0.6,kg/TJ,0.44991936,kg -fa73b745-6780-350c-bc47-0774b96e5fcd,SESCO,II.1.1,San Juan,AR-J,annual,2016,bioetanol combustion consumption by freight transport,0.01640331,TJ,CH4,10.0,kg/TJ,0.16403310000000002,kg -60b0d270-1c4f-33f0-b217-029c2185df44,SESCO,II.1.1,San Juan,AR-J,annual,2016,bioetanol combustion consumption by freight transport,0.01640331,TJ,N2O,0.6,kg/TJ,0.009841986,kg -949f2763-4161-32b2-8280-335c999da45a,SESCO,II.1.1,San Luis,AR-D,annual,2016,bioetanol combustion consumption by freight transport,0.02811996,TJ,CH4,10.0,kg/TJ,0.2811996,kg -d8adffaa-c8c1-34a0-b390-4289e220b8b0,SESCO,II.1.1,San Luis,AR-D,annual,2016,bioetanol combustion consumption by freight transport,0.02811996,TJ,N2O,0.6,kg/TJ,0.016871976,kg -0970ce63-ed46-350e-9868-f397c268043f,SESCO,II.1.1,Santa Fe,AR-S,annual,2016,bioetanol combustion consumption by freight transport,1.23024825,TJ,CH4,10.0,kg/TJ,12.3024825,kg -763a4d2e-de59-32fe-96ef-70624a8dee06,SESCO,II.1.1,Santa Fe,AR-S,annual,2016,bioetanol combustion consumption by freight transport,1.23024825,TJ,N2O,0.6,kg/TJ,0.73814895,kg -a28fbd9d-9f77-385d-814e-dee05ca71b2e,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2016,bioetanol combustion consumption by freight transport,0.00937332,TJ,CH4,10.0,kg/TJ,0.09373319999999999,kg -7607d646-c322-34fa-b639-9a89bdfe2592,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2016,bioetanol combustion consumption by freight transport,0.00937332,TJ,N2O,0.6,kg/TJ,0.0056239919999999995,kg -09b47269-ec30-362a-a784-f70463243401,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2016,bioetanol combustion consumption by freight transport,0.01640331,TJ,CH4,10.0,kg/TJ,0.16403310000000002,kg -3effbacc-e70c-3031-82d3-784589c54421,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2016,bioetanol combustion consumption by freight transport,0.01640331,TJ,N2O,0.6,kg/TJ,0.009841986,kg -3feffdba-c0e4-3f77-96c9-e703345418be,SESCO,II.1.1,Tucuman,AR-T,annual,2016,bioetanol combustion consumption by freight transport,0.15700311,TJ,CH4,10.0,kg/TJ,1.5700311,kg -778c3a0b-c03d-3687-a04c-397bd61758c7,SESCO,II.1.1,Tucuman,AR-T,annual,2016,bioetanol combustion consumption by freight transport,0.15700311,TJ,N2O,0.6,kg/TJ,0.094201866,kg -3cf6a7db-70b4-356d-b2d7-61cc45823b88,SESCO,II.1.1,Buenos Aires,AR-B,annual,2016,bioetanol combustion consumption by freight transport,16.03072053,TJ,CH4,10.0,kg/TJ,160.3072053,kg -839c201c-1205-3f06-b8fd-eedf2d7516c5,SESCO,II.1.1,Buenos Aires,AR-B,annual,2016,bioetanol combustion consumption by freight transport,16.03072053,TJ,N2O,0.6,kg/TJ,9.618432318,kg -e817c109-89cb-33c5-af21-19da41953269,SESCO,II.1.1,Capital Federal,AR-C,annual,2016,bioetanol combustion consumption by freight transport,18.097537589999998,TJ,CH4,10.0,kg/TJ,180.9753759,kg -da4cbb1d-6683-3189-9d55-461cda5654a7,SESCO,II.1.1,Capital Federal,AR-C,annual,2016,bioetanol combustion consumption by freight transport,18.097537589999998,TJ,N2O,0.6,kg/TJ,10.858522553999999,kg -c591891f-2e24-3ce7-bd14-eadc522ba3c0,SESCO,II.1.1,Chaco,AR-H,annual,2016,bioetanol combustion consumption by freight transport,0.63738576,TJ,CH4,10.0,kg/TJ,6.3738576,kg -21474abc-df77-3e87-8574-5ff65da92683,SESCO,II.1.1,Chaco,AR-H,annual,2016,bioetanol combustion consumption by freight transport,0.63738576,TJ,N2O,0.6,kg/TJ,0.382431456,kg -96c9a062-2888-3246-aaf3-be631f5045e5,SESCO,II.1.1,Chubut,AR-U,annual,2016,bioetanol combustion consumption by freight transport,0.07498656,TJ,CH4,10.0,kg/TJ,0.7498655999999999,kg -944b77be-8f34-3e29-ba45-3cc51a448d4b,SESCO,II.1.1,Chubut,AR-U,annual,2016,bioetanol combustion consumption by freight transport,0.07498656,TJ,N2O,0.6,kg/TJ,0.044991935999999996,kg -4baa436c-ae13-3ca9-b6e7-d2601b1247cb,SESCO,II.1.1,Corrientes,AR-W,annual,2016,bioetanol combustion consumption by freight transport,0.23901966,TJ,CH4,10.0,kg/TJ,2.3901966,kg -65853385-e316-3a2f-8ab1-860c57775e79,SESCO,II.1.1,Corrientes,AR-W,annual,2016,bioetanol combustion consumption by freight transport,0.23901966,TJ,N2O,0.6,kg/TJ,0.14341179599999998,kg -01059816-f6bd-3ea9-9c95-9b699706dabe,SESCO,II.1.1,Córdoba,AR-X,annual,2016,bioetanol combustion consumption by freight transport,0.56005587,TJ,CH4,10.0,kg/TJ,5.600558700000001,kg -ced4ce97-6ce9-3174-9940-a6df4443bdaa,SESCO,II.1.1,Córdoba,AR-X,annual,2016,bioetanol combustion consumption by freight transport,0.56005587,TJ,N2O,0.6,kg/TJ,0.336033522,kg -2d49a605-810f-3266-a32c-d008b8afc59e,SESCO,II.1.1,Entre Rios,AR-E,annual,2016,bioetanol combustion consumption by freight transport,0.24604965,TJ,CH4,10.0,kg/TJ,2.4604965,kg -87c2e159-a810-38f5-be54-a0df2a01afed,SESCO,II.1.1,Entre Rios,AR-E,annual,2016,bioetanol combustion consumption by freight transport,0.24604965,TJ,N2O,0.6,kg/TJ,0.14762979,kg -2bd3772e-25b3-39aa-8d0c-17c1d4de9ecf,SESCO,II.1.1,Formosa,AR-P,annual,2016,bioetanol combustion consumption by freight transport,0.00468666,TJ,CH4,10.0,kg/TJ,0.046866599999999994,kg -b66c7681-cc3a-3cd1-9b37-a1427b70053f,SESCO,II.1.1,Formosa,AR-P,annual,2016,bioetanol combustion consumption by freight transport,0.00468666,TJ,N2O,0.6,kg/TJ,0.0028119959999999998,kg -f586ee49-9857-3ff2-ab26-fe973c67adbb,SESCO,II.1.1,Jujuy,AR-Y,annual,2016,bioetanol combustion consumption by freight transport,0.00234333,TJ,CH4,10.0,kg/TJ,0.023433299999999997,kg -c115d993-5482-38ce-b0fb-189b01351472,SESCO,II.1.1,Jujuy,AR-Y,annual,2016,bioetanol combustion consumption by freight transport,0.00234333,TJ,N2O,0.6,kg/TJ,0.0014059979999999999,kg -1cf5bce7-129f-37a7-9c4c-8651aa5d45a5,SESCO,II.1.1,La Pampa,AR-L,annual,2016,bioetanol combustion consumption by freight transport,0.01405998,TJ,CH4,10.0,kg/TJ,0.1405998,kg -6d99fe2c-71b6-32c8-809d-a3ca1fc218a7,SESCO,II.1.1,La Pampa,AR-L,annual,2016,bioetanol combustion consumption by freight transport,0.01405998,TJ,N2O,0.6,kg/TJ,0.008435988,kg -48f36ce7-adee-3848-bd0a-7d730fdcd589,SESCO,II.1.1,La Rioja,AR-F,annual,2016,bioetanol combustion consumption by freight transport,0.08201655,TJ,CH4,10.0,kg/TJ,0.8201654999999999,kg -ac43253c-93a0-3e02-8afb-11329931283e,SESCO,II.1.1,La Rioja,AR-F,annual,2016,bioetanol combustion consumption by freight transport,0.08201655,TJ,N2O,0.6,kg/TJ,0.04920992999999999,kg -f77aa42e-203f-3460-8287-9521598ebb65,SESCO,II.1.1,Mendoza,AR-M,annual,2016,bioetanol combustion consumption by freight transport,0.5389659,TJ,CH4,10.0,kg/TJ,5.389659,kg -90edf5c9-963a-3bdd-84cd-3525ffb82460,SESCO,II.1.1,Mendoza,AR-M,annual,2016,bioetanol combustion consumption by freight transport,0.5389659,TJ,N2O,0.6,kg/TJ,0.32337953999999997,kg -820d1582-412f-321d-986f-a6358d52007d,SESCO,II.1.1,Misiones,AR-N,annual,2016,bioetanol combustion consumption by freight transport,0.15465978,TJ,CH4,10.0,kg/TJ,1.5465978,kg -6d6daab3-c9f8-3637-85b4-38eaff9de303,SESCO,II.1.1,Misiones,AR-N,annual,2016,bioetanol combustion consumption by freight transport,0.15465978,TJ,N2O,0.6,kg/TJ,0.09279586799999999,kg -08ae8aa0-1bb4-32ff-b972-719e2c558422,SESCO,II.1.1,Neuquén,AR-Q,annual,2016,bioetanol combustion consumption by freight transport,0.19449639000000002,TJ,CH4,10.0,kg/TJ,1.9449639000000003,kg -e7da63f4-b112-3b7f-b0b1-a715129d278b,SESCO,II.1.1,Neuquén,AR-Q,annual,2016,bioetanol combustion consumption by freight transport,0.19449639000000002,TJ,N2O,0.6,kg/TJ,0.116697834,kg -f07ad5fa-6070-312b-8962-ab2017886063,SESCO,II.1.1,Rio Negro,AR-R,annual,2016,bioetanol combustion consumption by freight transport,0.41242608,TJ,CH4,10.0,kg/TJ,4.1242608,kg -12791a36-8c16-310e-a202-4e20044b5460,SESCO,II.1.1,Rio Negro,AR-R,annual,2016,bioetanol combustion consumption by freight transport,0.41242608,TJ,N2O,0.6,kg/TJ,0.24745564799999997,kg -0196b66d-2147-3645-95d9-18b49b22a2b6,SESCO,II.1.1,Salta,AR-A,annual,2016,bioetanol combustion consumption by freight transport,0.20152638,TJ,CH4,10.0,kg/TJ,2.0152638,kg -006de014-d5dd-37d5-a06b-b4ba4c645793,SESCO,II.1.1,Salta,AR-A,annual,2016,bioetanol combustion consumption by freight transport,0.20152638,TJ,N2O,0.6,kg/TJ,0.120915828,kg -ddbe1a76-3dc9-3848-8e4e-7184a52a2b7c,SESCO,II.1.1,San Juan,AR-J,annual,2016,bioetanol combustion consumption by freight transport,0.00702999,TJ,CH4,10.0,kg/TJ,0.0702999,kg -79f79348-7570-3759-9be6-55890dc9fdc5,SESCO,II.1.1,San Juan,AR-J,annual,2016,bioetanol combustion consumption by freight transport,0.00702999,TJ,N2O,0.6,kg/TJ,0.004217994,kg -cdeb0f49-8d5b-33ce-bcac-0241b6702619,SESCO,II.1.1,San Luis,AR-D,annual,2016,bioetanol combustion consumption by freight transport,0.03983661,TJ,CH4,10.0,kg/TJ,0.3983661,kg -def54420-3460-32a3-8b40-7ffa57fddc5f,SESCO,II.1.1,San Luis,AR-D,annual,2016,bioetanol combustion consumption by freight transport,0.03983661,TJ,N2O,0.6,kg/TJ,0.023901966,kg -87367af5-0be5-37b7-aa37-7eb32d01e59f,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2016,bioetanol combustion consumption by freight transport,0.00702999,TJ,CH4,10.0,kg/TJ,0.0702999,kg -f52e52d4-0473-3df6-bf3d-56880901821e,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2016,bioetanol combustion consumption by freight transport,0.00702999,TJ,N2O,0.6,kg/TJ,0.004217994,kg -bdeba68c-ad95-30c0-bd2b-351b64b8ed89,SESCO,II.1.1,Santa Fe,AR-S,annual,2016,bioetanol combustion consumption by freight transport,1.8980972999999999,TJ,CH4,10.0,kg/TJ,18.980973,kg -a0892e9b-a229-344e-b460-7c4c85ce6d16,SESCO,II.1.1,Santa Fe,AR-S,annual,2016,bioetanol combustion consumption by freight transport,1.8980972999999999,TJ,N2O,0.6,kg/TJ,1.1388583799999998,kg -9eac265b-28ab-3c4f-bce7-a3a37bafc4d7,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2016,bioetanol combustion consumption by freight transport,0.02811996,TJ,CH4,10.0,kg/TJ,0.2811996,kg -99dd1bfa-fc6b-375b-98a2-1952d469e094,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2016,bioetanol combustion consumption by freight transport,0.02811996,TJ,N2O,0.6,kg/TJ,0.016871976,kg -43884f1d-2ef4-3051-ac7d-dd7478f28316,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2016,bioetanol combustion consumption by freight transport,0.00468666,TJ,CH4,10.0,kg/TJ,0.046866599999999994,kg -2f36cf43-106e-36ec-b968-675de7e2af6a,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2016,bioetanol combustion consumption by freight transport,0.00468666,TJ,N2O,0.6,kg/TJ,0.0028119959999999998,kg -7dd095e4-a140-3eb6-a59e-ffd68ef510c8,SESCO,II.1.1,Tucuman,AR-T,annual,2016,bioetanol combustion consumption by freight transport,0.13591314,TJ,CH4,10.0,kg/TJ,1.3591313999999999,kg -f9f8ddba-7b74-3f98-aa11-40fc8b477c75,SESCO,II.1.1,Tucuman,AR-T,annual,2016,bioetanol combustion consumption by freight transport,0.13591314,TJ,N2O,0.6,kg/TJ,0.08154788399999999,kg -0e67aabd-bc6e-3a6a-8662-d3e2bf7302db,SESCO,II.1.1,Capital Federal,AR-C,annual,2017,bioetanol combustion consumption by to the public,1.5312596399999998,TJ,CH4,10.0,kg/TJ,15.312596399999999,kg -f403ad53-2026-34e8-bc9c-0df8f7552e8a,SESCO,II.1.1,Capital Federal,AR-C,annual,2017,bioetanol combustion consumption by to the public,1.5312596399999998,TJ,N2O,0.6,kg/TJ,0.9187557839999998,kg -b77b4fce-d184-377a-b82b-cdeb51f820fa,SESCO,II.1.1,Capital Federal,AR-C,annual,2017,bioetanol combustion consumption by to the public,0.34766495999999997,TJ,CH4,10.0,kg/TJ,3.4766495999999996,kg -5d4c39fd-633d-3ac4-a2de-e8e2cc6e2466,SESCO,II.1.1,Capital Federal,AR-C,annual,2017,bioetanol combustion consumption by to the public,0.34766495999999997,TJ,N2O,0.6,kg/TJ,0.20859897599999996,kg -bd7d8071-a4dc-3f82-8c53-115edafd19ea,SESCO,II.5.1,Buenos Aires,AR-B,annual,2017,bioetanol combustion consumption by agriculture machines,3.8243145599999995,TJ,CH4,10.0,kg/TJ,38.24314559999999,kg -807322e1-ca0b-33be-9450-5a31b0ccadf4,SESCO,II.5.1,Buenos Aires,AR-B,annual,2017,bioetanol combustion consumption by agriculture machines,3.8243145599999995,TJ,N2O,0.6,kg/TJ,2.2945887359999997,kg -187ee274-d379-35d8-9b7e-52bc9fed5942,SESCO,II.5.1,Chaco,AR-H,annual,2017,bioetanol combustion consumption by agriculture machines,1.5287032799999998,TJ,CH4,10.0,kg/TJ,15.287032799999999,kg -1f713c98-8d3f-3e62-9687-a05cd47b3f59,SESCO,II.5.1,Chaco,AR-H,annual,2017,bioetanol combustion consumption by agriculture machines,1.5287032799999998,TJ,N2O,0.6,kg/TJ,0.9172219679999998,kg -931ee1dc-551e-3994-9e27-492d737bda59,SESCO,II.5.1,Córdoba,AR-X,annual,2017,bioetanol combustion consumption by agriculture machines,0.7490134799999999,TJ,CH4,10.0,kg/TJ,7.490134799999999,kg -b9f7f310-9754-3ee0-a59c-fa7897484ae4,SESCO,II.5.1,Córdoba,AR-X,annual,2017,bioetanol combustion consumption by agriculture machines,0.7490134799999999,TJ,N2O,0.6,kg/TJ,0.44940808799999993,kg -0df36c77-b8a7-339e-a36f-9f9b11ea2b1a,SESCO,II.5.1,Santa Fe,AR-S,annual,2017,bioetanol combustion consumption by agriculture machines,4.62445524,TJ,CH4,10.0,kg/TJ,46.244552399999996,kg -9f36f48b-f960-3211-a79a-7cfa9d393318,SESCO,II.5.1,Santa Fe,AR-S,annual,2017,bioetanol combustion consumption by agriculture machines,4.62445524,TJ,N2O,0.6,kg/TJ,2.774673144,kg -7265e6ab-2b7d-3a2d-834f-1a4bcfba7656,SESCO,II.5.1,Tucuman,AR-T,annual,2017,bioetanol combustion consumption by agriculture machines,3.2261263199999997,TJ,CH4,10.0,kg/TJ,32.261263199999995,kg -70785066-7743-394c-a582-3f486b1b64c1,SESCO,II.5.1,Tucuman,AR-T,annual,2017,bioetanol combustion consumption by agriculture machines,3.2261263199999997,TJ,N2O,0.6,kg/TJ,1.9356757919999996,kg -8010ae61-c985-3eb4-ab94-1f90bca08418,SESCO,II.5.1,Buenos Aires,AR-B,annual,2017,bioetanol combustion consumption by agriculture machines,0.8563805999999998,TJ,CH4,10.0,kg/TJ,8.563805999999998,kg -1c29e1d0-1273-3666-a1a5-d06ba6bda712,SESCO,II.5.1,Buenos Aires,AR-B,annual,2017,bioetanol combustion consumption by agriculture machines,0.8563805999999998,TJ,N2O,0.6,kg/TJ,0.5138283599999999,kg -58c46465-c723-3e61-aab7-a170085ffc05,SESCO,II.5.1,Chaco,AR-H,annual,2017,bioetanol combustion consumption by agriculture machines,0.24029783999999998,TJ,CH4,10.0,kg/TJ,2.4029784,kg -6363598c-dbda-394c-a53a-ba7367343fe4,SESCO,II.5.1,Chaco,AR-H,annual,2017,bioetanol combustion consumption by agriculture machines,0.24029783999999998,TJ,N2O,0.6,kg/TJ,0.144178704,kg -b17217f2-0722-3357-a84f-d440e030c567,SESCO,II.5.1,Córdoba,AR-X,annual,2017,bioetanol combustion consumption by agriculture machines,0.39112307999999996,TJ,CH4,10.0,kg/TJ,3.9112307999999993,kg -cee7f92b-c30b-3bb3-a300-9a6877bcb79d,SESCO,II.5.1,Córdoba,AR-X,annual,2017,bioetanol combustion consumption by agriculture machines,0.39112307999999996,TJ,N2O,0.6,kg/TJ,0.23467384799999996,kg -b028878a-310a-300e-9592-3d8416f6684d,SESCO,II.5.1,Santa Fe,AR-S,annual,2017,bioetanol combustion consumption by agriculture machines,1.5210341999999997,TJ,CH4,10.0,kg/TJ,15.210341999999997,kg -622c92b7-27e4-391e-a0ce-ffed25442c87,SESCO,II.5.1,Santa Fe,AR-S,annual,2017,bioetanol combustion consumption by agriculture machines,1.5210341999999997,TJ,N2O,0.6,kg/TJ,0.9126205199999997,kg -e59622b3-4f48-3edb-860e-b338820f9ca4,SESCO,II.5.1,Tucuman,AR-T,annual,2017,bioetanol combustion consumption by agriculture machines,0.8461551599999999,TJ,CH4,10.0,kg/TJ,8.4615516,kg -9acdd0a0-5c17-3f63-970c-1d186363e433,SESCO,II.5.1,Tucuman,AR-T,annual,2017,bioetanol combustion consumption by agriculture machines,0.8461551599999999,TJ,N2O,0.6,kg/TJ,0.5076930959999999,kg -1b3bade9-61f6-3585-915a-d1cee5cec8cd,SESCO,II.1.1,Buenos Aires,AR-B,annual,2017,bioetanol combustion consumption by to the public,0.15593796,TJ,CH4,10.0,kg/TJ,1.5593795999999998,kg -b3b20bc6-8203-3f66-9867-72ab125f6271,SESCO,II.1.1,Buenos Aires,AR-B,annual,2017,bioetanol combustion consumption by to the public,0.15593796,TJ,N2O,0.6,kg/TJ,0.09356277599999999,kg -98b88e70-7de8-3441-a6d0-1647c2449373,SESCO,II.1.1,Santa Fe,AR-S,annual,2017,bioetanol combustion consumption by to the public,0.08435988,TJ,CH4,10.0,kg/TJ,0.8435988,kg -0e6cbe31-4edb-302c-af92-3d7e33bb4bda,SESCO,II.1.1,Santa Fe,AR-S,annual,2017,bioetanol combustion consumption by to the public,0.08435988,TJ,N2O,0.6,kg/TJ,0.050615928,kg -1cb6dcac-1abb-3770-9ac8-7b8c249d4355,SESCO,II.1.1,Tucuman,AR-T,annual,2017,bioetanol combustion consumption by to the public,0.12014891999999999,TJ,CH4,10.0,kg/TJ,1.2014892,kg -d50db80d-0f44-3922-8643-c148e2b15c57,SESCO,II.1.1,Tucuman,AR-T,annual,2017,bioetanol combustion consumption by to the public,0.12014891999999999,TJ,N2O,0.6,kg/TJ,0.072089352,kg -6afa2f7c-69cd-38b3-8c4c-7e3278df82c4,SESCO,II.1.1,Buenos Aires,AR-B,annual,2017,bioetanol combustion consumption by to the public,825.40007316,TJ,CH4,10.0,kg/TJ,8254.000731600001,kg -6992d062-4c4e-32f6-899f-d8ddd8eb60ba,SESCO,II.1.1,Buenos Aires,AR-B,annual,2017,bioetanol combustion consumption by to the public,825.40007316,TJ,N2O,0.6,kg/TJ,495.240043896,kg -20299a03-9c2d-3bb2-a634-ce8ce5612343,SESCO,II.1.1,Capital Federal,AR-C,annual,2017,bioetanol combustion consumption by to the public,275.46312816,TJ,CH4,10.0,kg/TJ,2754.6312816,kg -e50c062d-2b4d-39c9-bfa6-544f225e1ad0,SESCO,II.1.1,Capital Federal,AR-C,annual,2017,bioetanol combustion consumption by to the public,275.46312816,TJ,N2O,0.6,kg/TJ,165.27787689599998,kg -fb7ddd3b-bab4-338f-8c33-3b82b061901c,SESCO,II.1.1,Catamarca,AR-K,annual,2017,bioetanol combustion consumption by to the public,35.272655279999995,TJ,CH4,10.0,kg/TJ,352.7265527999999,kg -a143cad3-36d0-35d7-b4ad-52ce44df42e0,SESCO,II.1.1,Catamarca,AR-K,annual,2017,bioetanol combustion consumption by to the public,35.272655279999995,TJ,N2O,0.6,kg/TJ,21.163593167999995,kg -c1c03959-63be-3647-96f6-131b9e0232ba,SESCO,II.1.1,Chaco,AR-H,annual,2017,bioetanol combustion consumption by to the public,35.05792104,TJ,CH4,10.0,kg/TJ,350.57921039999997,kg -d9c1b91b-0777-3428-8ddf-108f1cb35a15,SESCO,II.1.1,Chaco,AR-H,annual,2017,bioetanol combustion consumption by to the public,35.05792104,TJ,N2O,0.6,kg/TJ,21.034752623999996,kg -16435a4f-0bda-3527-b063-adc25d0a5905,SESCO,II.1.1,Chubut,AR-U,annual,2017,bioetanol combustion consumption by to the public,26.092766519999998,TJ,CH4,10.0,kg/TJ,260.9276652,kg -359ff9b8-0119-3b39-b638-1c9ce3246625,SESCO,II.1.1,Chubut,AR-U,annual,2017,bioetanol combustion consumption by to the public,26.092766519999998,TJ,N2O,0.6,kg/TJ,15.655659911999997,kg -f7c91af4-65b2-364c-a5b9-5e072ac57810,SESCO,II.1.1,Corrientes,AR-W,annual,2017,bioetanol combustion consumption by to the public,49.386318839999994,TJ,CH4,10.0,kg/TJ,493.86318839999996,kg -dc27cfa9-7211-3327-a862-d4fe08d42ff4,SESCO,II.1.1,Corrientes,AR-W,annual,2017,bioetanol combustion consumption by to the public,49.386318839999994,TJ,N2O,0.6,kg/TJ,29.631791303999997,kg -8ee0e1b4-e623-336a-a9d1-936cbc62bf34,SESCO,II.1.1,Córdoba,AR-X,annual,2017,bioetanol combustion consumption by to the public,257.44079015999995,TJ,CH4,10.0,kg/TJ,2574.4079015999996,kg -bb92696a-e357-3b46-a87d-cf97c41222f4,SESCO,II.1.1,Córdoba,AR-X,annual,2017,bioetanol combustion consumption by to the public,257.44079015999995,TJ,N2O,0.6,kg/TJ,154.46447409599998,kg -8cc5c899-732a-31a3-a551-29a5022f2a82,SESCO,II.1.1,Entre Rios,AR-E,annual,2017,bioetanol combustion consumption by to the public,89.56718532,TJ,CH4,10.0,kg/TJ,895.6718532,kg -4dcc3b7b-c8ee-39e2-a674-7244edf865a4,SESCO,II.1.1,Entre Rios,AR-E,annual,2017,bioetanol combustion consumption by to the public,89.56718532,TJ,N2O,0.6,kg/TJ,53.74031119199999,kg -24076578-0f28-3731-bf4a-2eaa2bb40a1b,SESCO,II.1.1,Formosa,AR-P,annual,2017,bioetanol combustion consumption by to the public,54.619187759999996,TJ,CH4,10.0,kg/TJ,546.1918776,kg -dd9a0b2a-7d05-3060-8372-1cfe7938e34c,SESCO,II.1.1,Formosa,AR-P,annual,2017,bioetanol combustion consumption by to the public,54.619187759999996,TJ,N2O,0.6,kg/TJ,32.771512656,kg -88440982-b439-3b9f-bbef-b9cb456c4640,SESCO,II.1.1,Jujuy,AR-Y,annual,2017,bioetanol combustion consumption by to the public,16.86430692,TJ,CH4,10.0,kg/TJ,168.6430692,kg -4132d527-cf24-334f-9684-f85c37d7cf4d,SESCO,II.1.1,Jujuy,AR-Y,annual,2017,bioetanol combustion consumption by to the public,16.86430692,TJ,N2O,0.6,kg/TJ,10.118584152,kg -7d1a5e72-ef1a-318c-84d5-e00f6850f14f,SESCO,II.1.1,La Pampa,AR-L,annual,2017,bioetanol combustion consumption by to the public,13.98584556,TJ,CH4,10.0,kg/TJ,139.85845559999998,kg -090ac5c5-7fcc-31a5-8580-0119ec99ac2f,SESCO,II.1.1,La Pampa,AR-L,annual,2017,bioetanol combustion consumption by to the public,13.98584556,TJ,N2O,0.6,kg/TJ,8.391507336,kg -134d8d53-3b35-3233-bbee-c5329a5e9cf5,SESCO,II.1.1,La Rioja,AR-F,annual,2017,bioetanol combustion consumption by to the public,8.571475079999999,TJ,CH4,10.0,kg/TJ,85.71475079999999,kg -7bf503c4-11e6-3334-8462-52203e5f6b33,SESCO,II.1.1,La Rioja,AR-F,annual,2017,bioetanol combustion consumption by to the public,8.571475079999999,TJ,N2O,0.6,kg/TJ,5.142885047999999,kg -a9410fcd-a889-3184-8687-6d15e3df70bd,SESCO,II.1.1,Mendoza,AR-M,annual,2017,bioetanol combustion consumption by to the public,32.925916799999996,TJ,CH4,10.0,kg/TJ,329.25916799999993,kg -951469a8-b366-3176-a423-88b181e90120,SESCO,II.1.1,Mendoza,AR-M,annual,2017,bioetanol combustion consumption by to the public,32.925916799999996,TJ,N2O,0.6,kg/TJ,19.755550079999995,kg -2b35345b-dcd7-319a-bc78-fd1f9de63168,SESCO,II.1.1,Misiones,AR-N,annual,2017,bioetanol combustion consumption by to the public,62.311274999999995,TJ,CH4,10.0,kg/TJ,623.11275,kg -6459600f-583f-3f17-a3bd-deac8f3899d2,SESCO,II.1.1,Misiones,AR-N,annual,2017,bioetanol combustion consumption by to the public,62.311274999999995,TJ,N2O,0.6,kg/TJ,37.386765,kg -0310a24a-9a76-3953-8a6b-329464e336df,SESCO,II.1.1,Neuquén,AR-Q,annual,2017,bioetanol combustion consumption by to the public,22.715814959999996,TJ,CH4,10.0,kg/TJ,227.15814959999994,kg -637631fd-d82c-394d-8ece-e006f8206f88,SESCO,II.1.1,Neuquén,AR-Q,annual,2017,bioetanol combustion consumption by to the public,22.715814959999996,TJ,N2O,0.6,kg/TJ,13.629488975999998,kg -8d13140e-fada-3a8b-ad1e-1f589d6a4ded,SESCO,II.1.1,Rio Negro,AR-R,annual,2017,bioetanol combustion consumption by to the public,46.845296999999995,TJ,CH4,10.0,kg/TJ,468.45296999999994,kg -34bd75d4-1e9c-35b3-a39e-c0e528ffc371,SESCO,II.1.1,Rio Negro,AR-R,annual,2017,bioetanol combustion consumption by to the public,46.845296999999995,TJ,N2O,0.6,kg/TJ,28.107178199999996,kg -7b305595-2f03-3eb1-abae-0b7bbf8e90c6,SESCO,II.1.1,Salta,AR-A,annual,2017,bioetanol combustion consumption by to the public,11.411591039999998,TJ,CH4,10.0,kg/TJ,114.11591039999998,kg -71db1504-d671-3ce6-ae5d-22451165787c,SESCO,II.1.1,Salta,AR-A,annual,2017,bioetanol combustion consumption by to the public,11.411591039999998,TJ,N2O,0.6,kg/TJ,6.8469546239999985,kg -95dbc30b-a68f-308b-82da-8419a24b3e6f,SESCO,II.1.1,San Juan,AR-J,annual,2017,bioetanol combustion consumption by to the public,19.04999472,TJ,CH4,10.0,kg/TJ,190.4999472,kg -a402ed8f-3bec-35aa-9ef1-b382c55c9a6f,SESCO,II.1.1,San Juan,AR-J,annual,2017,bioetanol combustion consumption by to the public,19.04999472,TJ,N2O,0.6,kg/TJ,11.429996832,kg -0a080393-6a7f-385c-ab25-faa00f4c7586,SESCO,II.1.1,San Luis,AR-D,annual,2017,bioetanol combustion consumption by to the public,43.66007244,TJ,CH4,10.0,kg/TJ,436.6007244,kg -15c2ae89-a16b-3502-a827-49cc15cccd88,SESCO,II.1.1,San Luis,AR-D,annual,2017,bioetanol combustion consumption by to the public,43.66007244,TJ,N2O,0.6,kg/TJ,26.196043464,kg -9f039b35-6f86-3b58-9d6a-dcdb1b111404,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2017,bioetanol combustion consumption by to the public,5.07181824,TJ,CH4,10.0,kg/TJ,50.718182399999996,kg -83f4d57d-01f0-3fa6-afa4-5f7dd71835ed,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2017,bioetanol combustion consumption by to the public,5.07181824,TJ,N2O,0.6,kg/TJ,3.043090944,kg -26df2c74-025c-3cfb-9bdc-374b33e7185a,SESCO,II.1.1,Santa Fe,AR-S,annual,2017,bioetanol combustion consumption by to the public,212.93967528,TJ,CH4,10.0,kg/TJ,2129.3967528,kg -24329137-a371-3e29-88a9-a9b3d747d9de,SESCO,II.1.1,Santa Fe,AR-S,annual,2017,bioetanol combustion consumption by to the public,212.93967528,TJ,N2O,0.6,kg/TJ,127.76380516799999,kg -7b9b9341-72a7-36ca-9191-f5e290e5c4d5,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2017,bioetanol combustion consumption by to the public,28.618450199999995,TJ,CH4,10.0,kg/TJ,286.18450199999995,kg -6a5a4b43-c4af-368f-86cf-ad0ea831931b,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2017,bioetanol combustion consumption by to the public,28.618450199999995,TJ,N2O,0.6,kg/TJ,17.171070119999996,kg -fa540be3-d6cf-3abb-94e7-41a5e5cd65fa,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2017,bioetanol combustion consumption by to the public,13.1396904,TJ,CH4,10.0,kg/TJ,131.396904,kg -4e30c0d0-1c63-313b-a523-d24561cd1b5f,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2017,bioetanol combustion consumption by to the public,13.1396904,TJ,N2O,0.6,kg/TJ,7.8838142399999995,kg -ed589b3f-9e0c-3b9a-8afd-30f7a6fd6d66,SESCO,II.1.1,Tucuman,AR-T,annual,2017,bioetanol combustion consumption by to the public,7.4466766799999995,TJ,CH4,10.0,kg/TJ,74.46676679999999,kg -ed40c99f-9e6d-38c4-94f7-4aac9002ff1c,SESCO,II.1.1,Tucuman,AR-T,annual,2017,bioetanol combustion consumption by to the public,7.4466766799999995,TJ,N2O,0.6,kg/TJ,4.468006008,kg -dee55a9d-7591-3405-aaca-01bbf048ff77,SESCO,II.1.1,Buenos Aires,AR-B,annual,2017,bioetanol combustion consumption by to the public,244.66921559999997,TJ,CH4,10.0,kg/TJ,2446.6921559999996,kg -d6ac1f88-f7b3-3a42-8a4d-a15bf04aacdc,SESCO,II.1.1,Buenos Aires,AR-B,annual,2017,bioetanol combustion consumption by to the public,244.66921559999997,TJ,N2O,0.6,kg/TJ,146.80152936,kg -48a258fd-7756-3709-abe4-5cfc95665879,SESCO,II.1.1,Capital Federal,AR-C,annual,2017,bioetanol combustion consumption by to the public,108.48169295999999,TJ,CH4,10.0,kg/TJ,1084.8169295999999,kg -a6dfedf3-ae0c-3ed0-9d3b-52d4b3762cc1,SESCO,II.1.1,Capital Federal,AR-C,annual,2017,bioetanol combustion consumption by to the public,108.48169295999999,TJ,N2O,0.6,kg/TJ,65.089015776,kg -d62e09aa-9270-33fa-9522-17e11c6e09a4,SESCO,II.1.1,Catamarca,AR-K,annual,2017,bioetanol combustion consumption by to the public,11.784819599999999,TJ,CH4,10.0,kg/TJ,117.84819599999999,kg -a200b3f3-21af-365d-af9f-9c4496e2fa91,SESCO,II.1.1,Catamarca,AR-K,annual,2017,bioetanol combustion consumption by to the public,11.784819599999999,TJ,N2O,0.6,kg/TJ,7.070891759999999,kg -1177b82f-5180-3959-a1b4-8a9bfd698194,SESCO,II.1.1,Chaco,AR-H,annual,2017,bioetanol combustion consumption by to the public,7.44412032,TJ,CH4,10.0,kg/TJ,74.44120319999999,kg -d96a5114-7ac4-3fde-b1aa-53d443adc80d,SESCO,II.1.1,Chaco,AR-H,annual,2017,bioetanol combustion consumption by to the public,7.44412032,TJ,N2O,0.6,kg/TJ,4.4664721919999995,kg -ef9d90ba-79db-3896-b857-339235eee57b,SESCO,II.1.1,Chubut,AR-U,annual,2017,bioetanol combustion consumption by to the public,6.347441879999999,TJ,CH4,10.0,kg/TJ,63.47441879999999,kg -e5f36b62-05e2-30c4-bb91-f51a48401df8,SESCO,II.1.1,Chubut,AR-U,annual,2017,bioetanol combustion consumption by to the public,6.347441879999999,TJ,N2O,0.6,kg/TJ,3.808465127999999,kg -b6f89eab-fcb1-33b9-b74a-c5a33b80e622,SESCO,II.1.1,Corrientes,AR-W,annual,2017,bioetanol combustion consumption by to the public,13.17547944,TJ,CH4,10.0,kg/TJ,131.7547944,kg -5368a85d-2d40-3831-be8a-29adf1ec9e61,SESCO,II.1.1,Corrientes,AR-W,annual,2017,bioetanol combustion consumption by to the public,13.17547944,TJ,N2O,0.6,kg/TJ,7.905287663999999,kg -af01a547-54f4-3872-9f16-df53e28a1f42,SESCO,II.1.1,Córdoba,AR-X,annual,2017,bioetanol combustion consumption by to the public,63.909,TJ,CH4,10.0,kg/TJ,639.09,kg -907ad123-8362-3a1d-90da-237f49808fe9,SESCO,II.1.1,Córdoba,AR-X,annual,2017,bioetanol combustion consumption by to the public,63.909,TJ,N2O,0.6,kg/TJ,38.3454,kg -6d4f7c4a-adf4-3d27-8e97-2016a351e003,SESCO,II.1.1,Entre Rios,AR-E,annual,2017,bioetanol combustion consumption by to the public,26.65516572,TJ,CH4,10.0,kg/TJ,266.5516572,kg -77b906a4-7d83-3c6a-a142-18b1f665ea1d,SESCO,II.1.1,Entre Rios,AR-E,annual,2017,bioetanol combustion consumption by to the public,26.65516572,TJ,N2O,0.6,kg/TJ,15.993099432,kg -0967eccd-81e6-3261-8713-e1d49e539bcd,SESCO,II.1.1,Formosa,AR-P,annual,2017,bioetanol combustion consumption by to the public,14.558470199999999,TJ,CH4,10.0,kg/TJ,145.584702,kg -463a159c-369b-3922-aedc-8e1857bdb70a,SESCO,II.1.1,Formosa,AR-P,annual,2017,bioetanol combustion consumption by to the public,14.558470199999999,TJ,N2O,0.6,kg/TJ,8.73508212,kg -e9960e8e-48e8-321b-bd13-1df8d49ba5b5,SESCO,II.1.1,Jujuy,AR-Y,annual,2017,bioetanol combustion consumption by to the public,3.17499912,TJ,CH4,10.0,kg/TJ,31.749991199999997,kg -4b1a6227-395c-39b0-ab4b-8a275d5e2b38,SESCO,II.1.1,Jujuy,AR-Y,annual,2017,bioetanol combustion consumption by to the public,3.17499912,TJ,N2O,0.6,kg/TJ,1.9049994719999999,kg -49763401-d73f-30a6-bfd8-2e88e54991f6,SESCO,II.1.1,La Pampa,AR-L,annual,2017,bioetanol combustion consumption by to the public,5.358130559999999,TJ,CH4,10.0,kg/TJ,53.58130559999999,kg -2601aca5-a720-3231-bc37-6becff6368b2,SESCO,II.1.1,La Pampa,AR-L,annual,2017,bioetanol combustion consumption by to the public,5.358130559999999,TJ,N2O,0.6,kg/TJ,3.2148783359999995,kg -78925b15-8c0c-3aa1-babb-f29ff9a00282,SESCO,II.1.1,La Rioja,AR-F,annual,2017,bioetanol combustion consumption by to the public,1.95050268,TJ,CH4,10.0,kg/TJ,19.5050268,kg -d5fce45a-4efa-32aa-83db-2907545bdb50,SESCO,II.1.1,La Rioja,AR-F,annual,2017,bioetanol combustion consumption by to the public,1.95050268,TJ,N2O,0.6,kg/TJ,1.170301608,kg -a064aab4-d255-3106-ace3-a0e4cf3b18b8,SESCO,II.1.1,Mendoza,AR-M,annual,2017,bioetanol combustion consumption by to the public,13.904042039999998,TJ,CH4,10.0,kg/TJ,139.0404204,kg -d585e1c1-f135-3aa9-9881-86e37003e96a,SESCO,II.1.1,Mendoza,AR-M,annual,2017,bioetanol combustion consumption by to the public,13.904042039999998,TJ,N2O,0.6,kg/TJ,8.342425224,kg -cfc2a9ef-39ae-338b-b994-98c2464fecfa,SESCO,II.1.1,Misiones,AR-N,annual,2017,bioetanol combustion consumption by to the public,10.210101839999998,TJ,CH4,10.0,kg/TJ,102.10101839999999,kg -0ae6a0d6-1fc8-3c8e-90f8-8acb5a02f7d5,SESCO,II.1.1,Misiones,AR-N,annual,2017,bioetanol combustion consumption by to the public,10.210101839999998,TJ,N2O,0.6,kg/TJ,6.126061103999999,kg -5d9533c6-7b48-363b-ba20-927ff4fd6f7b,SESCO,II.1.1,Neuquén,AR-Q,annual,2017,bioetanol combustion consumption by to the public,11.823165,TJ,CH4,10.0,kg/TJ,118.23165,kg -0ea9cd61-6211-34da-aaca-82bbc6ff8c14,SESCO,II.1.1,Neuquén,AR-Q,annual,2017,bioetanol combustion consumption by to the public,11.823165,TJ,N2O,0.6,kg/TJ,7.0938989999999995,kg -902e40c2-cb21-323d-8782-ef966a835052,SESCO,II.1.1,Rio Negro,AR-R,annual,2017,bioetanol combustion consumption by to the public,18.0479016,TJ,CH4,10.0,kg/TJ,180.479016,kg -30841142-ba5f-3ec0-897f-3a0843eea176,SESCO,II.1.1,Rio Negro,AR-R,annual,2017,bioetanol combustion consumption by to the public,18.0479016,TJ,N2O,0.6,kg/TJ,10.82874096,kg -6ced39a9-c269-3982-81e0-73c0e818866b,SESCO,II.1.1,Salta,AR-A,annual,2017,bioetanol combustion consumption by to the public,1.47246336,TJ,CH4,10.0,kg/TJ,14.7246336,kg -a130f266-7be3-3954-a179-b98d09994612,SESCO,II.1.1,Salta,AR-A,annual,2017,bioetanol combustion consumption by to the public,1.47246336,TJ,N2O,0.6,kg/TJ,0.8834780160000001,kg -b4f3875f-54d2-39e1-a9e4-ff595fd85596,SESCO,II.1.1,San Juan,AR-J,annual,2017,bioetanol combustion consumption by to the public,5.49361764,TJ,CH4,10.0,kg/TJ,54.9361764,kg -8b8e3da4-6475-3ba9-aff4-7688de59d077,SESCO,II.1.1,San Juan,AR-J,annual,2017,bioetanol combustion consumption by to the public,5.49361764,TJ,N2O,0.6,kg/TJ,3.296170584,kg -5c681ff6-2a75-35c6-a286-b2368293f989,SESCO,II.1.1,San Luis,AR-D,annual,2017,bioetanol combustion consumption by to the public,11.1712932,TJ,CH4,10.0,kg/TJ,111.712932,kg -8c03fd3f-cb2a-341f-90e2-ec0299b68338,SESCO,II.1.1,San Luis,AR-D,annual,2017,bioetanol combustion consumption by to the public,11.1712932,TJ,N2O,0.6,kg/TJ,6.70277592,kg -8015da6d-6813-35ba-9b3f-09be13c10a06,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2017,bioetanol combustion consumption by to the public,2.4489928799999996,TJ,CH4,10.0,kg/TJ,24.489928799999994,kg -b6b0f1a4-d890-3b00-bb79-b30c3738c8ff,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2017,bioetanol combustion consumption by to the public,2.4489928799999996,TJ,N2O,0.6,kg/TJ,1.4693957279999996,kg -bc0e1d2c-c1df-35c8-ab12-06440867470c,SESCO,II.1.1,Santa Fe,AR-S,annual,2017,bioetanol combustion consumption by to the public,64.95455124,TJ,CH4,10.0,kg/TJ,649.5455124,kg -8e4c9790-2a56-3609-ac8f-0f25258792f1,SESCO,II.1.1,Santa Fe,AR-S,annual,2017,bioetanol combustion consumption by to the public,64.95455124,TJ,N2O,0.6,kg/TJ,38.972730743999996,kg -05d133d7-3d6b-35b4-8f89-6abbcf90d057,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2017,bioetanol combustion consumption by to the public,9.78318972,TJ,CH4,10.0,kg/TJ,97.83189719999999,kg -dde0a45a-3883-3faa-bd87-a2c37446b322,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2017,bioetanol combustion consumption by to the public,9.78318972,TJ,N2O,0.6,kg/TJ,5.869913831999999,kg -d026a111-e10d-3636-8155-6d4158203211,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2017,bioetanol combustion consumption by to the public,5.0232474,TJ,CH4,10.0,kg/TJ,50.232473999999996,kg -38b94879-9819-33d7-8442-4e840ad26bd8,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2017,bioetanol combustion consumption by to the public,5.0232474,TJ,N2O,0.6,kg/TJ,3.0139484399999996,kg -6ad44370-81e0-32ef-b8c3-b5b447c37b1f,SESCO,II.1.1,Tucuman,AR-T,annual,2017,bioetanol combustion consumption by to the public,2.14222968,TJ,CH4,10.0,kg/TJ,21.422296799999998,kg -4d60547b-1de0-39e9-9155-bcb5a67b8f12,SESCO,II.1.1,Tucuman,AR-T,annual,2017,bioetanol combustion consumption by to the public,2.14222968,TJ,N2O,0.6,kg/TJ,1.2853378079999997,kg -d4ae96e2-06db-3bbd-81f9-9183d5fb2da7,SESCO,II.1.1,Buenos Aires,AR-B,annual,2017,bioetanol combustion consumption by freight transport,0.7029989999999999,TJ,CH4,10.0,kg/TJ,7.02999,kg -e801a390-fb81-3e5f-a2f0-65f22ea6734f,SESCO,II.1.1,Buenos Aires,AR-B,annual,2017,bioetanol combustion consumption by freight transport,0.7029989999999999,TJ,N2O,0.6,kg/TJ,0.42179939999999994,kg -ae3ef28b-1d8a-3718-bd07-9faa5cdd8a6c,SESCO,II.1.1,Capital Federal,AR-C,annual,2017,bioetanol combustion consumption by freight transport,0.33999588,TJ,CH4,10.0,kg/TJ,3.3999588,kg -ec4e4f4f-d30c-3949-9dff-eeddb417a9bd,SESCO,II.1.1,Capital Federal,AR-C,annual,2017,bioetanol combustion consumption by freight transport,0.33999588,TJ,N2O,0.6,kg/TJ,0.20399752799999998,kg -45d27464-a7d4-3099-b930-2b558d4a7e10,SESCO,II.1.1,Chubut,AR-U,annual,2017,bioetanol combustion consumption by freight transport,0.0025563599999999997,TJ,CH4,10.0,kg/TJ,0.0255636,kg -9d63a93a-bef2-395d-920c-f60ae59dd929,SESCO,II.1.1,Chubut,AR-U,annual,2017,bioetanol combustion consumption by freight transport,0.0025563599999999997,TJ,N2O,0.6,kg/TJ,0.0015338159999999997,kg -9aa6aacd-7fe2-34b3-aafb-8a25d2895bbc,SESCO,II.1.1,Córdoba,AR-X,annual,2017,bioetanol combustion consumption by freight transport,0.12270527999999999,TJ,CH4,10.0,kg/TJ,1.2270527999999998,kg -09cb70cd-f9c9-3dc2-ade0-cac088bc249d,SESCO,II.1.1,Córdoba,AR-X,annual,2017,bioetanol combustion consumption by freight transport,0.12270527999999999,TJ,N2O,0.6,kg/TJ,0.07362316799999999,kg -44ae4a60-19f6-387e-a540-2d41fd61ad6e,SESCO,II.1.1,Santa Fe,AR-S,annual,2017,bioetanol combustion consumption by freight transport,0.02300724,TJ,CH4,10.0,kg/TJ,0.2300724,kg -94557bb9-41e2-37d8-922f-8bd2d0e2c324,SESCO,II.1.1,Santa Fe,AR-S,annual,2017,bioetanol combustion consumption by freight transport,0.02300724,TJ,N2O,0.6,kg/TJ,0.013804344000000001,kg -0d10b228-5f07-3d73-b916-95e2922f2397,SESCO,II.1.1,Buenos Aires,AR-B,annual,2017,bioetanol combustion consumption by freight transport,0.5956318799999999,TJ,CH4,10.0,kg/TJ,5.956318799999999,kg -01f3f8c9-5173-3f91-bc00-50b1f03c1b1a,SESCO,II.1.1,Buenos Aires,AR-B,annual,2017,bioetanol combustion consumption by freight transport,0.5956318799999999,TJ,N2O,0.6,kg/TJ,0.35737912799999993,kg -003b5f19-ca34-3645-b875-72e5bd631d89,SESCO,II.1.1,Capital Federal,AR-C,annual,2017,bioetanol combustion consumption by freight transport,0.34255223999999995,TJ,CH4,10.0,kg/TJ,3.4255223999999993,kg -ca3a61e7-9e8e-36f0-8d16-2b8c49bcb9f8,SESCO,II.1.1,Capital Federal,AR-C,annual,2017,bioetanol combustion consumption by freight transport,0.34255223999999995,TJ,N2O,0.6,kg/TJ,0.20553134399999998,kg -45d27464-a7d4-3099-b930-2b558d4a7e10,SESCO,II.1.1,Chubut,AR-U,annual,2017,bioetanol combustion consumption by freight transport,0.0025563599999999997,TJ,CH4,10.0,kg/TJ,0.0255636,kg -9d63a93a-bef2-395d-920c-f60ae59dd929,SESCO,II.1.1,Chubut,AR-U,annual,2017,bioetanol combustion consumption by freight transport,0.0025563599999999997,TJ,N2O,0.6,kg/TJ,0.0015338159999999997,kg -c7c30fd0-f7fc-3386-aac7-cc0e5f4e3199,SESCO,II.1.1,Córdoba,AR-X,annual,2017,bioetanol combustion consumption by freight transport,0.13804344,TJ,CH4,10.0,kg/TJ,1.3804344,kg -e298aede-67f1-3a86-a1a6-d27b11c4f726,SESCO,II.1.1,Córdoba,AR-X,annual,2017,bioetanol combustion consumption by freight transport,0.13804344,TJ,N2O,0.6,kg/TJ,0.08282606399999999,kg -98b88e70-7de8-3441-a6d0-1647c2449373,SESCO,II.1.1,Santa Fe,AR-S,annual,2017,bioetanol combustion consumption by freight transport,0.08435988,TJ,CH4,10.0,kg/TJ,0.8435988,kg -0e6cbe31-4edb-302c-af92-3d7e33bb4bda,SESCO,II.1.1,Santa Fe,AR-S,annual,2017,bioetanol combustion consumption by freight transport,0.08435988,TJ,N2O,0.6,kg/TJ,0.050615928,kg -355b0e43-e2e6-3fd4-a498-74b0cbfa05da,SESCO,II.1.1,Buenos Aires,AR-B,annual,2017,bioetanol combustion consumption by public passenger transport,0.0025563599999999997,TJ,CH4,10.0,kg/TJ,0.0255636,kg -e08d602b-f4c9-3be9-ae01-5eafd413cdfc,SESCO,II.1.1,Buenos Aires,AR-B,annual,2017,bioetanol combustion consumption by public passenger transport,0.0025563599999999997,TJ,N2O,0.6,kg/TJ,0.0015338159999999997,kg -94cba0fc-4f25-3798-8da8-b570b89ec5d4,SESCO,II.1.1,Santa Fe,AR-S,annual,2017,bioetanol combustion consumption by public passenger transport,0.14315615999999998,TJ,CH4,10.0,kg/TJ,1.4315615999999998,kg -540b84ae-c4d4-3359-ab37-d0e045738d49,SESCO,II.1.1,Santa Fe,AR-S,annual,2017,bioetanol combustion consumption by public passenger transport,0.14315615999999998,TJ,N2O,0.6,kg/TJ,0.08589369599999998,kg -b663d7cb-2578-3e2e-866c-e3fddd96c9fa,SESCO,II.1.1,Santa Fe,AR-S,annual,2017,bioetanol combustion consumption by public passenger transport,0.04857084,TJ,CH4,10.0,kg/TJ,0.4857084,kg -24a03b1a-3e2d-3948-a6f5-88fb91041e2d,SESCO,II.1.1,Santa Fe,AR-S,annual,2017,bioetanol combustion consumption by public passenger transport,0.04857084,TJ,N2O,0.6,kg/TJ,0.029142503999999996,kg -f43f8f28-0dbe-3519-bec3-074809303181,SESCO,II.5.1,Santiago del Estero,AR-G,annual,2017,bioetanol combustion consumption by agriculture machines,0.037886789016,TJ,CH4,10.0,kg/TJ,0.37886789016,kg -9b701950-c589-368e-afac-53ffe14ac12a,SESCO,II.5.1,Santiago del Estero,AR-G,annual,2017,bioetanol combustion consumption by agriculture machines,0.037886789016,TJ,N2O,0.6,kg/TJ,0.022732073409599998,kg -09246ffb-b8db-3614-a61f-eac47f274f6d,SESCO,II.1.1,Buenos Aires,AR-B,annual,2017,bioetanol combustion consumption by to the public,157.80138155478,TJ,CH4,10.0,kg/TJ,1578.0138155477998,kg -24360b9b-b681-39a2-870b-c73291c6fc1a,SESCO,II.1.1,Buenos Aires,AR-B,annual,2017,bioetanol combustion consumption by to the public,157.80138155478,TJ,N2O,0.6,kg/TJ,94.680828932868,kg -f79240d1-c08c-3378-ad04-1a79588d1088,SESCO,II.1.1,Capital Federal,AR-C,annual,2017,bioetanol combustion consumption by to the public,15.905116167336,TJ,CH4,10.0,kg/TJ,159.05116167336,kg -5f7be375-ad38-31d6-aeec-525e56e1fb19,SESCO,II.1.1,Capital Federal,AR-C,annual,2017,bioetanol combustion consumption by to the public,15.905116167336,TJ,N2O,0.6,kg/TJ,9.5430697004016,kg -3f5cc2d9-f5ae-316e-94d4-c993d1af042a,SESCO,II.1.1,Catamarca,AR-K,annual,2017,bioetanol combustion consumption by to the public,14.900571498095998,TJ,CH4,10.0,kg/TJ,149.00571498095997,kg -5fb3c264-c3c5-36f0-bfc6-a339f6866818,SESCO,II.1.1,Catamarca,AR-K,annual,2017,bioetanol combustion consumption by to the public,14.900571498095998,TJ,N2O,0.6,kg/TJ,8.940342898857597,kg -a5a4dbfc-bde2-3835-9f50-903d895de4cb,SESCO,II.1.1,Chaco,AR-H,annual,2017,bioetanol combustion consumption by to the public,21.261209819688002,TJ,CH4,10.0,kg/TJ,212.61209819688003,kg -9feb5eca-4335-3362-a0bd-c568114d85ea,SESCO,II.1.1,Chaco,AR-H,annual,2017,bioetanol combustion consumption by to the public,21.261209819688002,TJ,N2O,0.6,kg/TJ,12.7567258918128,kg -f558bdf8-feeb-33a4-a286-54ea38982004,SESCO,II.1.1,Corrientes,AR-W,annual,2017,bioetanol combustion consumption by to the public,20.441140524035998,TJ,CH4,10.0,kg/TJ,204.41140524035998,kg -8d1cbf99-9042-33a0-b0e6-d8043621cf8a,SESCO,II.1.1,Corrientes,AR-W,annual,2017,bioetanol combustion consumption by to the public,20.441140524035998,TJ,N2O,0.6,kg/TJ,12.264684314421599,kg -2cdbad39-b75f-3215-b685-a8cc80e20549,SESCO,II.1.1,Córdoba,AR-X,annual,2017,bioetanol combustion consumption by to the public,68.748959966904,TJ,CH4,10.0,kg/TJ,687.48959966904,kg -95495ee8-3369-32f8-9532-014fb5fd584a,SESCO,II.1.1,Córdoba,AR-X,annual,2017,bioetanol combustion consumption by to the public,68.748959966904,TJ,N2O,0.6,kg/TJ,41.249375980142396,kg -196bea83-c0ec-343d-82ca-2ef3348c0dc8,SESCO,II.1.1,Entre Rios,AR-E,annual,2017,bioetanol combustion consumption by to the public,31.524153665975998,TJ,CH4,10.0,kg/TJ,315.24153665975996,kg -77e66b4e-e4d7-3c69-8a3b-b40bac58058c,SESCO,II.1.1,Entre Rios,AR-E,annual,2017,bioetanol combustion consumption by to the public,31.524153665975998,TJ,N2O,0.6,kg/TJ,18.9144921995856,kg -5746e1ba-c886-3ed3-a2f1-99480bbd67cf,SESCO,II.1.1,Jujuy,AR-Y,annual,2017,bioetanol combustion consumption by to the public,6.0938210585879995,TJ,CH4,10.0,kg/TJ,60.93821058587999,kg -3473e4a9-ce58-3df4-989c-748efec61cc3,SESCO,II.1.1,Jujuy,AR-Y,annual,2017,bioetanol combustion consumption by to the public,6.0938210585879995,TJ,N2O,0.6,kg/TJ,3.6562926351527993,kg -9d1ed82f-392b-304a-b8ce-b0471bb2efc8,SESCO,II.1.1,La Pampa,AR-L,annual,2017,bioetanol combustion consumption by to the public,0.7862583670200001,TJ,CH4,10.0,kg/TJ,7.862583670200001,kg -dc1e9802-e48b-3e35-8770-0b90611432d3,SESCO,II.1.1,La Pampa,AR-L,annual,2017,bioetanol combustion consumption by to the public,0.7862583670200001,TJ,N2O,0.6,kg/TJ,0.471755020212,kg -6b567f68-f2e5-3170-b2b3-46bd3464273b,SESCO,II.1.1,La Rioja,AR-F,annual,2017,bioetanol combustion consumption by to the public,3.7368545822279993,TJ,CH4,10.0,kg/TJ,37.36854582227999,kg -24c78974-2063-3d0e-ac12-ef1b3c9bb256,SESCO,II.1.1,La Rioja,AR-F,annual,2017,bioetanol combustion consumption by to the public,3.7368545822279993,TJ,N2O,0.6,kg/TJ,2.2421127493367994,kg -9d643c5c-2aa3-3794-8843-e08e3e44a10e,SESCO,II.1.1,Mendoza,AR-M,annual,2017,bioetanol combustion consumption by to the public,20.943915694667997,TJ,CH4,10.0,kg/TJ,209.43915694667996,kg -e108bcb2-26e9-3f7f-961c-cebb5399550d,SESCO,II.1.1,Mendoza,AR-M,annual,2017,bioetanol combustion consumption by to the public,20.943915694667997,TJ,N2O,0.6,kg/TJ,12.566349416800797,kg -21e22426-fc93-3324-8f28-b351f63b6af5,SESCO,II.1.1,Misiones,AR-N,annual,2017,bioetanol combustion consumption by to the public,23.52059926794,TJ,CH4,10.0,kg/TJ,235.2059926794,kg -63ab491b-c16f-30cf-88e8-2e87354f501b,SESCO,II.1.1,Misiones,AR-N,annual,2017,bioetanol combustion consumption by to the public,23.52059926794,TJ,N2O,0.6,kg/TJ,14.112359560764,kg -dfee258a-c669-3933-80f1-80a68e8bb965,SESCO,II.1.1,San Juan,AR-J,annual,2017,bioetanol combustion consumption by to the public,24.039238697459997,TJ,CH4,10.0,kg/TJ,240.39238697459996,kg -3f7cd7db-fd56-358a-9264-dc7436962818,SESCO,II.1.1,San Juan,AR-J,annual,2017,bioetanol combustion consumption by to the public,24.039238697459997,TJ,N2O,0.6,kg/TJ,14.423543218475997,kg -85194c8e-1fe0-34a6-893f-5584d061d68b,SESCO,II.1.1,San Luis,AR-D,annual,2017,bioetanol combustion consumption by to the public,16.181084943503997,TJ,CH4,10.0,kg/TJ,161.81084943503998,kg -97c316a7-7c67-3ec9-a684-9592bbbb0d8e,SESCO,II.1.1,San Luis,AR-D,annual,2017,bioetanol combustion consumption by to the public,16.181084943503997,TJ,N2O,0.6,kg/TJ,9.708650966102399,kg -2c38eeaa-fb71-3ada-8b47-b6aab3028dc0,SESCO,II.1.1,Santa Fe,AR-S,annual,2017,bioetanol combustion consumption by to the public,84.558830506452,TJ,CH4,10.0,kg/TJ,845.58830506452,kg -5f15fb2d-edbf-3fa8-a530-cc35c92588e1,SESCO,II.1.1,Santa Fe,AR-S,annual,2017,bioetanol combustion consumption by to the public,84.558830506452,TJ,N2O,0.6,kg/TJ,50.7352983038712,kg -4a63c19a-f05f-374d-b667-1568052dfac7,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2017,bioetanol combustion consumption by to the public,17.190168174287997,TJ,CH4,10.0,kg/TJ,171.90168174288,kg -b6ae2908-1f49-3d33-bdf0-92d2281ff4cf,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2017,bioetanol combustion consumption by to the public,17.190168174287997,TJ,N2O,0.6,kg/TJ,10.314100904572799,kg -f67dc18e-4def-3ea5-9887-5c50e1a54f59,SESCO,II.1.1,Tucuman,AR-T,annual,2017,bioetanol combustion consumption by to the public,16.452806838804,TJ,CH4,10.0,kg/TJ,164.52806838804003,kg -132066c2-a3c6-3338-95a8-90326238c66a,SESCO,II.1.1,Tucuman,AR-T,annual,2017,bioetanol combustion consumption by to the public,16.452806838804,TJ,N2O,0.6,kg/TJ,9.8716841032824,kg -65aa3ae6-adb1-3d93-9770-7ea69912afc8,SESCO,II.1.1,Buenos Aires,AR-B,annual,2017,bioetanol combustion consumption by to the public,29.470437439703996,TJ,CH4,10.0,kg/TJ,294.70437439703994,kg -85f740c4-77c8-3981-a235-2a21e7387357,SESCO,II.1.1,Buenos Aires,AR-B,annual,2017,bioetanol combustion consumption by to the public,29.470437439703996,TJ,N2O,0.6,kg/TJ,17.682262463822397,kg -4224e8d5-1312-38fb-aa39-d045eaf0d3d4,SESCO,II.1.1,Capital Federal,AR-C,annual,2017,bioetanol combustion consumption by to the public,5.389300001844,TJ,CH4,10.0,kg/TJ,53.89300001844,kg -8a066fa9-da5b-3718-9331-62665ec5ef80,SESCO,II.1.1,Capital Federal,AR-C,annual,2017,bioetanol combustion consumption by to the public,5.389300001844,TJ,N2O,0.6,kg/TJ,3.2335800011063998,kg -53d3fc61-fb85-32eb-99fd-e22368de20ed,SESCO,II.1.1,Catamarca,AR-K,annual,2017,bioetanol combustion consumption by to the public,1.95003358794,TJ,CH4,10.0,kg/TJ,19.500335879399998,kg -86bc17fe-e29b-353c-921e-e45acc4fbdbb,SESCO,II.1.1,Catamarca,AR-K,annual,2017,bioetanol combustion consumption by to the public,1.95003358794,TJ,N2O,0.6,kg/TJ,1.170020152764,kg -e73a315e-85b9-3bb4-9da2-728d504d9503,SESCO,II.1.1,Chaco,AR-H,annual,2017,bioetanol combustion consumption by to the public,2.6378649371519995,TJ,CH4,10.0,kg/TJ,26.378649371519995,kg -9845f2dd-5bee-39e0-82cc-df6b2b29b14a,SESCO,II.1.1,Chaco,AR-H,annual,2017,bioetanol combustion consumption by to the public,2.6378649371519995,TJ,N2O,0.6,kg/TJ,1.5827189622911997,kg -26686f1c-8822-3b17-b213-61fd3356b60a,SESCO,II.1.1,Corrientes,AR-W,annual,2017,bioetanol combustion consumption by to the public,5.203773197387999,TJ,CH4,10.0,kg/TJ,52.03773197387999,kg -53847163-d0c4-3027-a9e5-4650fe0afb24,SESCO,II.1.1,Corrientes,AR-W,annual,2017,bioetanol combustion consumption by to the public,5.203773197387999,TJ,N2O,0.6,kg/TJ,3.1222639184327994,kg -afbc38a3-ce0e-3f86-ac1b-d6e94bbbfb64,SESCO,II.1.1,Córdoba,AR-X,annual,2017,bioetanol combustion consumption by to the public,15.187688304587999,TJ,CH4,10.0,kg/TJ,151.87688304588,kg -d432b764-b1f6-3923-a478-9c22d3832dc8,SESCO,II.1.1,Córdoba,AR-X,annual,2017,bioetanol combustion consumption by to the public,15.187688304587999,TJ,N2O,0.6,kg/TJ,9.112612982752799,kg -90b5998b-fd9b-3686-9aa4-97c4ca2a7640,SESCO,II.1.1,Entre Rios,AR-E,annual,2017,bioetanol combustion consumption by to the public,6.3894306042719995,TJ,CH4,10.0,kg/TJ,63.89430604272,kg -ec567d6d-b4c6-3532-9fd7-e5028c5a638b,SESCO,II.1.1,Entre Rios,AR-E,annual,2017,bioetanol combustion consumption by to the public,6.3894306042719995,TJ,N2O,0.6,kg/TJ,3.8336583625631997,kg -6a0feb39-b6be-3968-80ef-8b136dcfba84,SESCO,II.1.1,Jujuy,AR-Y,annual,2017,bioetanol combustion consumption by to the public,0.145073174364,TJ,CH4,10.0,kg/TJ,1.45073174364,kg -0f75c736-bcde-3b18-b233-e91573b24c6e,SESCO,II.1.1,Jujuy,AR-Y,annual,2017,bioetanol combustion consumption by to the public,0.145073174364,TJ,N2O,0.6,kg/TJ,0.08704390461839999,kg -c9e9c113-456d-305b-9796-b8bbe8b45992,SESCO,II.1.1,La Pampa,AR-L,annual,2017,bioetanol combustion consumption by to the public,0.3260892816,TJ,CH4,10.0,kg/TJ,3.260892816,kg -020b1dec-77dc-30b8-be2c-05690ff0be74,SESCO,II.1.1,La Pampa,AR-L,annual,2017,bioetanol combustion consumption by to the public,0.3260892816,TJ,N2O,0.6,kg/TJ,0.19565356896,kg -9888614b-9a2f-3dec-aa92-452ef6cedb0c,SESCO,II.1.1,La Rioja,AR-F,annual,2017,bioetanol combustion consumption by to the public,0.7959551517719999,TJ,CH4,10.0,kg/TJ,7.95955151772,kg -a9033eed-382e-34d5-974a-aa35b582040d,SESCO,II.1.1,La Rioja,AR-F,annual,2017,bioetanol combustion consumption by to the public,0.7959551517719999,TJ,N2O,0.6,kg/TJ,0.47757309106319995,kg -6d19b767-4af4-3018-9586-e5c4bba1e796,SESCO,II.1.1,Mendoza,AR-M,annual,2017,bioetanol combustion consumption by to the public,4.334453836883999,TJ,CH4,10.0,kg/TJ,43.34453836883999,kg -d76e3a74-19e5-39bc-80fb-a145e7daa7ab,SESCO,II.1.1,Mendoza,AR-M,annual,2017,bioetanol combustion consumption by to the public,4.334453836883999,TJ,N2O,0.6,kg/TJ,2.6006723021303997,kg -55eddcf5-a856-3e44-a3eb-f46fec2351c1,SESCO,II.1.1,Misiones,AR-N,annual,2017,bioetanol combustion consumption by to the public,3.3242054172119997,TJ,CH4,10.0,kg/TJ,33.24205417212,kg -920c29dd-03e6-3cc4-a24a-458deda1e183,SESCO,II.1.1,Misiones,AR-N,annual,2017,bioetanol combustion consumption by to the public,3.3242054172119997,TJ,N2O,0.6,kg/TJ,1.9945232503271997,kg -7ee23fe0-05a7-3bd7-af54-b5f57211d319,SESCO,II.1.1,San Juan,AR-J,annual,2017,bioetanol combustion consumption by to the public,5.964003985068,TJ,CH4,10.0,kg/TJ,59.64003985068,kg -2da7713b-0170-363e-9890-fb7427cc32ad,SESCO,II.1.1,San Juan,AR-J,annual,2017,bioetanol combustion consumption by to the public,5.964003985068,TJ,N2O,0.6,kg/TJ,3.5784023910408,kg -d570fb23-63c6-3a0c-b2ea-11362e30e083,SESCO,II.1.1,San Luis,AR-D,annual,2017,bioetanol combustion consumption by to the public,3.93654387672,TJ,CH4,10.0,kg/TJ,39.365438767200004,kg -bd946940-cfa5-3ddc-8699-158484f56611,SESCO,II.1.1,San Luis,AR-D,annual,2017,bioetanol combustion consumption by to the public,3.93654387672,TJ,N2O,0.6,kg/TJ,2.361926326032,kg -157e2b56-6fd4-30c7-9ec1-6f972fe608e1,SESCO,II.1.1,Santa Fe,AR-S,annual,2017,bioetanol combustion consumption by to the public,19.227874173516,TJ,CH4,10.0,kg/TJ,192.27874173516,kg -d5421639-1bad-3413-932f-97e06f295caa,SESCO,II.1.1,Santa Fe,AR-S,annual,2017,bioetanol combustion consumption by to the public,19.227874173516,TJ,N2O,0.6,kg/TJ,11.5367245041096,kg -f93b6ef7-7700-307f-a982-62b754233773,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2017,bioetanol combustion consumption by to the public,3.109593626856,TJ,CH4,10.0,kg/TJ,31.09593626856,kg -f4b2576a-959b-38f8-8301-ba497599bb37,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2017,bioetanol combustion consumption by to the public,3.109593626856,TJ,N2O,0.6,kg/TJ,1.8657561761136,kg -41712d09-a262-3c74-b327-6250434e8ef0,SESCO,II.1.1,Tucuman,AR-T,annual,2017,bioetanol combustion consumption by to the public,2.2463103435839997,TJ,CH4,10.0,kg/TJ,22.463103435839997,kg -3bd66cf3-b227-3adf-be29-baa514208ba9,SESCO,II.1.1,Tucuman,AR-T,annual,2017,bioetanol combustion consumption by to the public,2.2463103435839997,TJ,N2O,0.6,kg/TJ,1.3477862061503998,kg -28baf756-974c-31d6-88ad-d2c4f47457f6,SESCO,II.5.1,Buenos Aires,AR-B,annual,2017,bioetanol combustion consumption by agriculture machines,0.66560967864,TJ,CH4,10.0,kg/TJ,6.6560967864,kg -2b7eaf0c-c942-3c0f-98a5-962073bfd363,SESCO,II.5.1,Buenos Aires,AR-B,annual,2017,bioetanol combustion consumption by agriculture machines,0.66560967864,TJ,N2O,0.6,kg/TJ,0.399365807184,kg -54e5e0ce-f78e-3fff-884e-d1d7a05c5a81,SESCO,II.5.1,Neuquén,AR-Q,annual,2017,bioetanol combustion consumption by agriculture machines,0.26645707188,TJ,CH4,10.0,kg/TJ,2.6645707188000003,kg -723ccd61-c53c-3b38-8ea4-1f971e538816,SESCO,II.5.1,Neuquén,AR-Q,annual,2017,bioetanol combustion consumption by agriculture machines,0.26645707188,TJ,N2O,0.6,kg/TJ,0.159874243128,kg -97f341b4-9ba0-3d1a-bec5-915f4e36f692,SESCO,II.5.1,Rio Negro,AR-R,annual,2017,bioetanol combustion consumption by agriculture machines,0.10947356063999998,TJ,CH4,10.0,kg/TJ,1.0947356063999998,kg -e98dde1f-784e-329e-98ea-03409c1d14ed,SESCO,II.5.1,Rio Negro,AR-R,annual,2017,bioetanol combustion consumption by agriculture machines,0.10947356063999998,TJ,N2O,0.6,kg/TJ,0.06568413638399999,kg -0840b470-f400-350c-892c-e797be7f2a74,SESCO,II.5.1,Buenos Aires,AR-B,annual,2017,bioetanol combustion consumption by agriculture machines,0.13807922903999997,TJ,CH4,10.0,kg/TJ,1.3807922903999996,kg -3e2368e3-6421-3777-8e9b-9029f683c890,SESCO,II.5.1,Buenos Aires,AR-B,annual,2017,bioetanol combustion consumption by agriculture machines,0.13807922903999997,TJ,N2O,0.6,kg/TJ,0.08284753742399999,kg -134e7525-ee3a-3b81-b6a7-a2f6f220e5a4,SESCO,II.1.1,Buenos Aires,AR-B,annual,2017,bioetanol combustion consumption by to the public,337.29056345915996,TJ,CH4,10.0,kg/TJ,3372.9056345915997,kg -c80849b8-b301-303e-86e2-b85645df12c5,SESCO,II.1.1,Buenos Aires,AR-B,annual,2017,bioetanol combustion consumption by to the public,337.29056345915996,TJ,N2O,0.6,kg/TJ,202.37433807549596,kg -b557d3e9-d2bc-3ca6-98b3-d2628185c75d,SESCO,II.1.1,Capital Federal,AR-C,annual,2017,bioetanol combustion consumption by to the public,39.227535927,TJ,CH4,10.0,kg/TJ,392.27535926999997,kg -25daa600-1076-3177-8193-ef057914660a,SESCO,II.1.1,Capital Federal,AR-C,annual,2017,bioetanol combustion consumption by to the public,39.227535927,TJ,N2O,0.6,kg/TJ,23.536521556199997,kg -f09f2004-1041-30f8-8e61-bbcb35df0ca1,SESCO,II.1.1,Chubut,AR-U,annual,2017,bioetanol combustion consumption by to the public,114.59796576155999,TJ,CH4,10.0,kg/TJ,1145.9796576156,kg -4ca6fd58-89bb-3798-832b-f2a56c520c1f,SESCO,II.1.1,Chubut,AR-U,annual,2017,bioetanol combustion consumption by to the public,114.59796576155999,TJ,N2O,0.6,kg/TJ,68.758779456936,kg -41dcc950-5832-3305-8e83-c3ac74d43421,SESCO,II.1.1,Córdoba,AR-X,annual,2017,bioetanol combustion consumption by to the public,37.639762836479996,TJ,CH4,10.0,kg/TJ,376.39762836479997,kg -6dc5febd-d081-3802-93f1-28ca9f6a2bd9,SESCO,II.1.1,Córdoba,AR-X,annual,2017,bioetanol combustion consumption by to the public,37.639762836479996,TJ,N2O,0.6,kg/TJ,22.583857701887997,kg -dc011594-7775-3b2f-a365-6fdd7381a72e,SESCO,II.1.1,Entre Rios,AR-E,annual,2017,bioetanol combustion consumption by to the public,10.89078637356,TJ,CH4,10.0,kg/TJ,108.90786373559999,kg -bf6c2542-93e6-33d0-9f80-91f3a43ac6e9,SESCO,II.1.1,Entre Rios,AR-E,annual,2017,bioetanol combustion consumption by to the public,10.89078637356,TJ,N2O,0.6,kg/TJ,6.534471824135999,kg -991d46a5-da4b-3352-b62b-62cf5ef6b9fd,SESCO,II.1.1,La Pampa,AR-L,annual,2017,bioetanol combustion consumption by to the public,32.8942051542,TJ,CH4,10.0,kg/TJ,328.942051542,kg -a6a439b4-e4bb-31dc-9138-02041fba26cd,SESCO,II.1.1,La Pampa,AR-L,annual,2017,bioetanol combustion consumption by to the public,32.8942051542,TJ,N2O,0.6,kg/TJ,19.73652309252,kg -0e58e3ed-869f-34a1-8194-2ec58f70199d,SESCO,II.1.1,Neuquén,AR-Q,annual,2017,bioetanol combustion consumption by to the public,39.71239817184,TJ,CH4,10.0,kg/TJ,397.1239817184,kg -387443fc-ebe6-3dd9-88e3-ac1829ebe099,SESCO,II.1.1,Neuquén,AR-Q,annual,2017,bioetanol combustion consumption by to the public,39.71239817184,TJ,N2O,0.6,kg/TJ,23.827438903104,kg -fabf99b1-5e8e-339d-8be5-55f46f3aa2ad,SESCO,II.1.1,Rio Negro,AR-R,annual,2017,bioetanol combustion consumption by to the public,102.51829559915998,TJ,CH4,10.0,kg/TJ,1025.1829559915998,kg -e1375c7a-ade7-3ecf-8c58-27e56ad3b63e,SESCO,II.1.1,Rio Negro,AR-R,annual,2017,bioetanol combustion consumption by to the public,102.51829559915998,TJ,N2O,0.6,kg/TJ,61.51097735949599,kg -cccc390a-c640-38b1-9106-8db80d079984,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2017,bioetanol combustion consumption by to the public,66.6698943636,TJ,CH4,10.0,kg/TJ,666.698943636,kg -af1a5589-c8c1-3b26-98f2-7680539d90bc,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2017,bioetanol combustion consumption by to the public,66.6698943636,TJ,N2O,0.6,kg/TJ,40.001936618159995,kg -2ec57213-7e96-3cad-9d14-a6a3d23fcd09,SESCO,II.1.1,Santa Fe,AR-S,annual,2017,bioetanol combustion consumption by to the public,46.06591907592,TJ,CH4,10.0,kg/TJ,460.6591907592,kg -7b498e8f-9e82-3596-bec9-75be32bee3a8,SESCO,II.1.1,Santa Fe,AR-S,annual,2017,bioetanol combustion consumption by to the public,46.06591907592,TJ,N2O,0.6,kg/TJ,27.639551445551998,kg -daa96c7d-bc47-331f-a10f-2b920f8a9be2,SESCO,II.1.1,Buenos Aires,AR-B,annual,2017,bioetanol combustion consumption by to the public,93.65018050475999,TJ,CH4,10.0,kg/TJ,936.5018050475999,kg -5897c58d-481d-37c0-91de-6b560a531b64,SESCO,II.1.1,Buenos Aires,AR-B,annual,2017,bioetanol combustion consumption by to the public,93.65018050475999,TJ,N2O,0.6,kg/TJ,56.19010830285599,kg -1174d20d-6892-3237-a6bd-b1d2e7f4a20e,SESCO,II.1.1,Capital Federal,AR-C,annual,2017,bioetanol combustion consumption by to the public,13.796350262279997,TJ,CH4,10.0,kg/TJ,137.96350262279998,kg -b090f805-3af7-357d-96d5-537a93453452,SESCO,II.1.1,Capital Federal,AR-C,annual,2017,bioetanol combustion consumption by to the public,13.796350262279997,TJ,N2O,0.6,kg/TJ,8.277810157367998,kg -16c01d03-9ecb-3f5d-a26c-e1debfb51d6b,SESCO,II.1.1,Chubut,AR-U,annual,2017,bioetanol combustion consumption by to the public,25.2530789508,TJ,CH4,10.0,kg/TJ,252.530789508,kg -584eaddd-b31c-31fd-9a43-a9a398b21c14,SESCO,II.1.1,Chubut,AR-U,annual,2017,bioetanol combustion consumption by to the public,25.2530789508,TJ,N2O,0.6,kg/TJ,15.151847370479999,kg -7fee85ee-5399-3e6c-a4c6-cefac559ceef,SESCO,II.1.1,Córdoba,AR-X,annual,2017,bioetanol combustion consumption by to the public,10.684130742432,TJ,CH4,10.0,kg/TJ,106.84130742432001,kg -609d1707-abe8-387b-b8d7-9682ae707e10,SESCO,II.1.1,Córdoba,AR-X,annual,2017,bioetanol combustion consumption by to the public,10.684130742432,TJ,N2O,0.6,kg/TJ,6.4104784454592,kg -1450e3cb-0ce4-3edc-8067-4bfd83dc0044,SESCO,II.1.1,Entre Rios,AR-E,annual,2017,bioetanol combustion consumption by to the public,3.7330448389199997,TJ,CH4,10.0,kg/TJ,37.3304483892,kg -7e8676e8-727b-361a-9771-deac944743e9,SESCO,II.1.1,Entre Rios,AR-E,annual,2017,bioetanol combustion consumption by to the public,3.7330448389199997,TJ,N2O,0.6,kg/TJ,2.2398269033519997,kg -553d787c-76f8-3b55-a41d-7146734d847d,SESCO,II.1.1,La Pampa,AR-L,annual,2017,bioetanol combustion consumption by to the public,12.65509146024,TJ,CH4,10.0,kg/TJ,126.5509146024,kg -9f9e50b5-da1f-3dad-b970-c915894533a7,SESCO,II.1.1,La Pampa,AR-L,annual,2017,bioetanol combustion consumption by to the public,12.65509146024,TJ,N2O,0.6,kg/TJ,7.5930548761439995,kg -646986e4-685c-3867-a53d-8484a247e0b9,SESCO,II.1.1,Neuquén,AR-Q,annual,2017,bioetanol combustion consumption by to the public,19.73912802336,TJ,CH4,10.0,kg/TJ,197.39128023359999,kg -772e25ab-93df-3f35-b83a-045cc75e0c8c,SESCO,II.1.1,Neuquén,AR-Q,annual,2017,bioetanol combustion consumption by to the public,19.73912802336,TJ,N2O,0.6,kg/TJ,11.843476814015998,kg -583b3c08-970b-3894-9c82-fc1d34092a2c,SESCO,II.1.1,Rio Negro,AR-R,annual,2017,bioetanol combustion consumption by to the public,24.960304152719996,TJ,CH4,10.0,kg/TJ,249.60304152719996,kg -c77553cf-a95d-3f1b-92d2-c9d609c73025,SESCO,II.1.1,Rio Negro,AR-R,annual,2017,bioetanol combustion consumption by to the public,24.960304152719996,TJ,N2O,0.6,kg/TJ,14.976182491631997,kg -03bf61b0-1793-36c0-8731-0196fe1b64e8,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2017,bioetanol combustion consumption by to the public,14.221033236359998,TJ,CH4,10.0,kg/TJ,142.21033236359997,kg -23e267b5-0f48-3dd6-95af-e47c048e467a,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2017,bioetanol combustion consumption by to the public,14.221033236359998,TJ,N2O,0.6,kg/TJ,8.532619941815998,kg -118aa0f3-d783-3452-ae4d-165f778852aa,SESCO,II.1.1,Santa Fe,AR-S,annual,2017,bioetanol combustion consumption by to the public,18.144171561239997,TJ,CH4,10.0,kg/TJ,181.44171561239997,kg -d57dd42d-8602-341c-ab45-8bc8e1d76c25,SESCO,II.1.1,Santa Fe,AR-S,annual,2017,bioetanol combustion consumption by to the public,18.144171561239997,TJ,N2O,0.6,kg/TJ,10.886502936743998,kg -a319d9c0-e44b-360f-83f3-ac8d1bf66060,SESCO,I.3.1,Santa Cruz,AR-Z,annual,2017,bioetanol combustion consumption by petrochemical industries,0.03082458888,TJ,CH4,10.0,kg/TJ,0.3082458888,kg -d2daceb1-b140-39f0-b4a8-0c0aced032a4,SESCO,I.3.1,Santa Cruz,AR-Z,annual,2017,bioetanol combustion consumption by petrochemical industries,0.03082458888,TJ,N2O,0.6,kg/TJ,0.018494753327999998,kg -d6010956-4f94-321f-9793-00669752c408,SESCO,II.1.1,Buenos Aires,AR-B,annual,2017,bioetanol combustion consumption by to the public,25.20826596,TJ,CH4,10.0,kg/TJ,252.0826596,kg -4e588953-244b-3900-8426-80be11d18dc2,SESCO,II.1.1,Buenos Aires,AR-B,annual,2017,bioetanol combustion consumption by to the public,25.20826596,TJ,N2O,0.6,kg/TJ,15.124959575999998,kg -1b753d46-e6a3-3658-85e8-d9cebdab0fc2,SESCO,II.1.1,Capital Federal,AR-C,annual,2017,bioetanol combustion consumption by to the public,2.57169816,TJ,CH4,10.0,kg/TJ,25.7169816,kg -c7033bbc-dc5c-3091-a15a-de46939a5772,SESCO,II.1.1,Capital Federal,AR-C,annual,2017,bioetanol combustion consumption by to the public,2.57169816,TJ,N2O,0.6,kg/TJ,1.543018896,kg -4b8808e5-57a5-3373-a415-a2fb77cdf7d5,SESCO,II.1.1,Corrientes,AR-W,annual,2017,bioetanol combustion consumption by to the public,0.8845005599999999,TJ,CH4,10.0,kg/TJ,8.845005599999999,kg -d7895bd6-1666-3436-b085-220b6493f967,SESCO,II.1.1,Corrientes,AR-W,annual,2017,bioetanol combustion consumption by to the public,0.8845005599999999,TJ,N2O,0.6,kg/TJ,0.5307003359999999,kg -efa0f42e-4983-3703-8f35-5fb0a74c16fb,SESCO,II.1.1,Córdoba,AR-X,annual,2017,bioetanol combustion consumption by to the public,9.23868504,TJ,CH4,10.0,kg/TJ,92.3868504,kg -91a788fe-8443-36cc-9149-733610691710,SESCO,II.1.1,Córdoba,AR-X,annual,2017,bioetanol combustion consumption by to the public,9.23868504,TJ,N2O,0.6,kg/TJ,5.543211024,kg -4253b013-6787-3fac-a1fb-16d922f2917f,SESCO,II.1.1,Entre Rios,AR-E,annual,2017,bioetanol combustion consumption by to the public,4.435284599999999,TJ,CH4,10.0,kg/TJ,44.35284599999999,kg -bbce47ca-3f8d-3dc1-bb53-e296930abeb5,SESCO,II.1.1,Entre Rios,AR-E,annual,2017,bioetanol combustion consumption by to the public,4.435284599999999,TJ,N2O,0.6,kg/TJ,2.6611707599999996,kg -cab5b984-3c2a-3c33-b454-3cd0dd7eaaea,SESCO,II.1.1,Salta,AR-A,annual,2017,bioetanol combustion consumption by to the public,1.47501972,TJ,CH4,10.0,kg/TJ,14.750197199999999,kg -3444d641-7222-310b-891e-2675dff74f99,SESCO,II.1.1,Salta,AR-A,annual,2017,bioetanol combustion consumption by to the public,1.47501972,TJ,N2O,0.6,kg/TJ,0.8850118319999999,kg -c0979044-66e3-3313-ab50-21509162a9bc,SESCO,II.1.1,Santa Fe,AR-S,annual,2017,bioetanol combustion consumption by to the public,1.2398345999999998,TJ,CH4,10.0,kg/TJ,12.398345999999998,kg -db47d8ef-e69d-3506-8fbc-98092611182c,SESCO,II.1.1,Santa Fe,AR-S,annual,2017,bioetanol combustion consumption by to the public,1.2398345999999998,TJ,N2O,0.6,kg/TJ,0.7439007599999998,kg -31cfd1d8-1b83-3b8b-baf8-6685518683d5,SESCO,II.1.1,Buenos Aires,AR-B,annual,2017,bioetanol combustion consumption by to the public,1.9423223279999997,TJ,CH4,10.0,kg/TJ,19.42322328,kg -ca83587a-656c-3462-b0ed-8a569fd51d00,SESCO,II.1.1,Buenos Aires,AR-B,annual,2017,bioetanol combustion consumption by to the public,1.9423223279999997,TJ,N2O,0.6,kg/TJ,1.1653933967999999,kg -45f9d4a0-f587-3f06-8264-0be936001167,SESCO,II.1.1,Capital Federal,AR-C,annual,2017,bioetanol combustion consumption by to the public,0.17383247999999998,TJ,CH4,10.0,kg/TJ,1.7383247999999998,kg -28edfb69-5cc9-3efa-9519-e52f6a927674,SESCO,II.1.1,Capital Federal,AR-C,annual,2017,bioetanol combustion consumption by to the public,0.17383247999999998,TJ,N2O,0.6,kg/TJ,0.10429948799999998,kg -2ad21b40-3fcd-3b18-b161-e9b2018c63fe,SESCO,II.1.1,Corrientes,AR-W,annual,2017,bioetanol combustion consumption by to the public,0.015338159999999998,TJ,CH4,10.0,kg/TJ,0.15338159999999998,kg -1d09cb3c-b1e5-3e73-8628-425546410389,SESCO,II.1.1,Corrientes,AR-W,annual,2017,bioetanol combustion consumption by to the public,0.015338159999999998,TJ,N2O,0.6,kg/TJ,0.009202895999999999,kg -c5bdf030-dc4c-33b7-910e-b0ade089a6fb,SESCO,II.1.1,Córdoba,AR-X,annual,2017,bioetanol combustion consumption by to the public,0.75156984,TJ,CH4,10.0,kg/TJ,7.515698400000001,kg -5fe6c7fa-fa46-3a8f-8dda-229af1666422,SESCO,II.1.1,Córdoba,AR-X,annual,2017,bioetanol combustion consumption by to the public,0.75156984,TJ,N2O,0.6,kg/TJ,0.450941904,kg -7f4b061c-7d11-3562-ad89-15ff374526c5,SESCO,II.1.1,Entre Rios,AR-E,annual,2017,bioetanol combustion consumption by to the public,0.24950073599999997,TJ,CH4,10.0,kg/TJ,2.49500736,kg -4835cbd7-1d2e-3af1-b12a-8791f446c955,SESCO,II.1.1,Entre Rios,AR-E,annual,2017,bioetanol combustion consumption by to the public,0.24950073599999997,TJ,N2O,0.6,kg/TJ,0.14970044159999998,kg -c01c3a93-d6d0-3476-bc89-d9c7bb9a0ecf,SESCO,II.1.1,Santa Fe,AR-S,annual,2017,bioetanol combustion consumption by to the public,0.09969803999999999,TJ,CH4,10.0,kg/TJ,0.9969803999999999,kg -50522aec-e12f-35ca-95a1-2d5d8cf4304d,SESCO,II.1.1,Santa Fe,AR-S,annual,2017,bioetanol combustion consumption by to the public,0.09969803999999999,TJ,N2O,0.6,kg/TJ,0.05981882399999999,kg -c2ebc2d1-4d11-39c7-a3f0-08555ad24d9b,SESCO,II.1.1,Catamarca,AR-K,annual,2017,bioetanol combustion consumption by to the public,20.9013361956,TJ,CH4,10.0,kg/TJ,209.01336195599998,kg -9eeece86-6408-3d8a-b352-b5cab01782ba,SESCO,II.1.1,Catamarca,AR-K,annual,2017,bioetanol combustion consumption by to the public,20.9013361956,TJ,N2O,0.6,kg/TJ,12.540801717359999,kg -61e671e0-6b42-3ff3-937e-539d6691aac6,SESCO,II.1.1,Chaco,AR-H,annual,2017,bioetanol combustion consumption by to the public,10.931762267999998,TJ,CH4,10.0,kg/TJ,109.31762267999999,kg -fd74ca4b-96f5-31ac-b61f-d99a7f5f2fe5,SESCO,II.1.1,Chaco,AR-H,annual,2017,bioetanol combustion consumption by to the public,10.931762267999998,TJ,N2O,0.6,kg/TJ,6.559057360799999,kg -4a911a6e-f4a8-326f-9caa-7f1955ef9e4a,SESCO,II.1.1,Jujuy,AR-Y,annual,2017,bioetanol combustion consumption by to the public,44.4467666664,TJ,CH4,10.0,kg/TJ,444.46766666400003,kg -bdd89612-9130-3320-8237-f3b85c382c8d,SESCO,II.1.1,Jujuy,AR-Y,annual,2017,bioetanol combustion consumption by to the public,44.4467666664,TJ,N2O,0.6,kg/TJ,26.66805999984,kg -d4f94ede-6789-3445-b42f-663ec8a87f65,SESCO,II.1.1,La Rioja,AR-F,annual,2017,bioetanol combustion consumption by to the public,39.798486151199995,TJ,CH4,10.0,kg/TJ,397.98486151199995,kg -3a934348-624b-3a18-972c-8fcfc9db5a44,SESCO,II.1.1,La Rioja,AR-F,annual,2017,bioetanol combustion consumption by to the public,39.798486151199995,TJ,N2O,0.6,kg/TJ,23.879091690719996,kg -402605a0-4af8-3ee9-9b1d-c10ea5d27728,SESCO,II.1.1,Salta,AR-A,annual,2017,bioetanol combustion consumption by to the public,93.9944940768,TJ,CH4,10.0,kg/TJ,939.9449407679999,kg -790fd667-230f-3769-8e1e-e213317b701e,SESCO,II.1.1,Salta,AR-A,annual,2017,bioetanol combustion consumption by to the public,93.9944940768,TJ,N2O,0.6,kg/TJ,56.39669644607999,kg -0838ceeb-a11b-3ebb-94f5-b1d2d090cd9b,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2017,bioetanol combustion consumption by to the public,43.60004910719999,TJ,CH4,10.0,kg/TJ,436.00049107199993,kg -b52a539e-4299-372a-9875-d14086504a69,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2017,bioetanol combustion consumption by to the public,43.60004910719999,TJ,N2O,0.6,kg/TJ,26.160029464319994,kg -2e748b19-a5d3-3ea9-be61-9c3059f6dc86,SESCO,II.1.1,Tucuman,AR-T,annual,2017,bioetanol combustion consumption by to the public,183.7031227956,TJ,CH4,10.0,kg/TJ,1837.0312279559998,kg -1663d14f-7451-3edb-9c2e-c0bf7b875794,SESCO,II.1.1,Tucuman,AR-T,annual,2017,bioetanol combustion consumption by to the public,183.7031227956,TJ,N2O,0.6,kg/TJ,110.22187367736,kg -502e8184-b56d-3f3d-a6e6-27e93a280886,SESCO,II.1.1,Catamarca,AR-K,annual,2017,bioetanol combustion consumption by to the public,1.943344872,TJ,CH4,10.0,kg/TJ,19.43344872,kg -2fcb6c38-0e08-3690-8703-2d708239182b,SESCO,II.1.1,Catamarca,AR-K,annual,2017,bioetanol combustion consumption by to the public,1.943344872,TJ,N2O,0.6,kg/TJ,1.1660069231999999,kg -69c9657e-7ee5-3ee8-974c-a74cf27b9bb6,SESCO,II.1.1,Chaco,AR-H,annual,2017,bioetanol combustion consumption by to the public,0.20719297799999997,TJ,CH4,10.0,kg/TJ,2.0719297799999996,kg -087e2cdf-9ce9-3206-97ce-8b37442ce93d,SESCO,II.1.1,Chaco,AR-H,annual,2017,bioetanol combustion consumption by to the public,0.20719297799999997,TJ,N2O,0.6,kg/TJ,0.12431578679999998,kg -78bd1d39-5016-3e79-b55c-b8b236753a9b,SESCO,II.1.1,Jujuy,AR-Y,annual,2017,bioetanol combustion consumption by to the public,2.3550722135999997,TJ,CH4,10.0,kg/TJ,23.550722135999997,kg -4efd7114-190d-385e-b488-828404d9d057,SESCO,II.1.1,Jujuy,AR-Y,annual,2017,bioetanol combustion consumption by to the public,2.3550722135999997,TJ,N2O,0.6,kg/TJ,1.41304332816,kg -e2a4fb53-f83d-33d5-a67c-4ad5a1c9959a,SESCO,II.1.1,La Rioja,AR-F,annual,2017,bioetanol combustion consumption by to the public,3.1118314643999994,TJ,CH4,10.0,kg/TJ,31.118314643999994,kg -e3419cf3-360c-3780-9a8f-b043b089b39b,SESCO,II.1.1,La Rioja,AR-F,annual,2017,bioetanol combustion consumption by to the public,3.1118314643999994,TJ,N2O,0.6,kg/TJ,1.8670988786399996,kg -49be6e62-ee5b-3fc6-96c9-d16893fea659,SESCO,II.1.1,Salta,AR-A,annual,2017,bioetanol combustion consumption by to the public,6.051287574,TJ,CH4,10.0,kg/TJ,60.51287574,kg -8285630e-0add-30ae-a0da-abc94d6db41d,SESCO,II.1.1,Salta,AR-A,annual,2017,bioetanol combustion consumption by to the public,6.051287574,TJ,N2O,0.6,kg/TJ,3.6307725443999996,kg -8d91a894-92a7-37e1-8a97-806ed90b427a,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2017,bioetanol combustion consumption by to the public,5.489757536399999,TJ,CH4,10.0,kg/TJ,54.89757536399999,kg -71177cce-27b6-3795-97d2-7a5e3a4fec98,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2017,bioetanol combustion consumption by to the public,5.489757536399999,TJ,N2O,0.6,kg/TJ,3.2938545218399993,kg -e76fc7a4-7578-3839-9661-ef54f4c6850b,SESCO,II.1.1,Tucuman,AR-T,annual,2017,bioetanol combustion consumption by to the public,14.1384858156,TJ,CH4,10.0,kg/TJ,141.384858156,kg -3c812baf-3aa5-3c87-99a9-0018df516825,SESCO,II.1.1,Tucuman,AR-T,annual,2017,bioetanol combustion consumption by to the public,14.1384858156,TJ,N2O,0.6,kg/TJ,8.48309148936,kg -e893194f-0066-330b-8956-25701504cbcc,SESCO,II.1.1,Buenos Aires,AR-B,annual,2017,bioetanol combustion consumption by to the public,2.5691417999999997,TJ,CH4,10.0,kg/TJ,25.691418,kg -f149c348-f9ea-36ff-9376-76ce56f2e162,SESCO,II.1.1,Buenos Aires,AR-B,annual,2017,bioetanol combustion consumption by to the public,2.5691417999999997,TJ,N2O,0.6,kg/TJ,1.5414850799999997,kg -4a9a07eb-9e11-3619-9ed7-b45c3eb9443d,SESCO,II.1.1,Entre Rios,AR-E,annual,2017,bioetanol combustion consumption by to the public,0.27608688,TJ,CH4,10.0,kg/TJ,2.7608688,kg -b3cf4c7e-90aa-39c4-970a-c485e11a1aa0,SESCO,II.1.1,Entre Rios,AR-E,annual,2017,bioetanol combustion consumption by to the public,0.27608688,TJ,N2O,0.6,kg/TJ,0.16565212799999998,kg -284a3731-8d38-3270-9863-bd8c9c215559,SESCO,II.1.1,Buenos Aires,AR-B,annual,2017,bioetanol combustion consumption by to the public,1293.4849273199998,TJ,CH4,10.0,kg/TJ,12934.849273199998,kg -6e4d2ea0-0273-3d86-b05f-c603b4e45934,SESCO,II.1.1,Buenos Aires,AR-B,annual,2017,bioetanol combustion consumption by to the public,1293.4849273199998,TJ,N2O,0.6,kg/TJ,776.0909563919998,kg -f6bd557c-2f4a-3304-9fcc-ee20e2e72ea7,SESCO,II.1.1,Capital Federal,AR-C,annual,2017,bioetanol combustion consumption by to the public,367.09073964,TJ,CH4,10.0,kg/TJ,3670.9073964,kg -15cf75a1-dc44-3efc-b916-d67c6b213c71,SESCO,II.1.1,Capital Federal,AR-C,annual,2017,bioetanol combustion consumption by to the public,367.09073964,TJ,N2O,0.6,kg/TJ,220.254443784,kg -7f745ab2-d61e-3866-9b1e-02f89d1c9469,SESCO,II.1.1,Catamarca,AR-K,annual,2017,bioetanol combustion consumption by to the public,3.6325875599999993,TJ,CH4,10.0,kg/TJ,36.32587559999999,kg -50698ba9-6524-39a9-a139-921fc91d7298,SESCO,II.1.1,Catamarca,AR-K,annual,2017,bioetanol combustion consumption by to the public,3.6325875599999993,TJ,N2O,0.6,kg/TJ,2.1795525359999997,kg -f25edd61-99c2-3ddd-8c25-91fbbc086ceb,SESCO,II.1.1,Chaco,AR-H,annual,2017,bioetanol combustion consumption by to the public,74.78375544,TJ,CH4,10.0,kg/TJ,747.8375543999999,kg -6e9236a2-f27c-39e2-a2e5-8475f3f9a6b2,SESCO,II.1.1,Chaco,AR-H,annual,2017,bioetanol combustion consumption by to the public,74.78375544,TJ,N2O,0.6,kg/TJ,44.87025326399999,kg -3f883691-440e-387c-9c95-07881d130e23,SESCO,II.1.1,Corrientes,AR-W,annual,2017,bioetanol combustion consumption by to the public,74.11143276,TJ,CH4,10.0,kg/TJ,741.1143276,kg -2aeece43-d6a4-3562-a547-daa9f487c3a8,SESCO,II.1.1,Corrientes,AR-W,annual,2017,bioetanol combustion consumption by to the public,74.11143276,TJ,N2O,0.6,kg/TJ,44.466859656,kg -1a10b309-6d4a-3acf-a3a3-f87f87e1d86b,SESCO,II.1.1,Córdoba,AR-X,annual,2017,bioetanol combustion consumption by to the public,292.60352195999997,TJ,CH4,10.0,kg/TJ,2926.0352195999994,kg -873c7233-50c1-3154-ae8b-40e80d52714b,SESCO,II.1.1,Córdoba,AR-X,annual,2017,bioetanol combustion consumption by to the public,292.60352195999997,TJ,N2O,0.6,kg/TJ,175.56211317599997,kg -497baa35-f676-3e45-80b4-27a97947fbf7,SESCO,II.1.1,Entre Rios,AR-E,annual,2017,bioetanol combustion consumption by to the public,77.64432228,TJ,CH4,10.0,kg/TJ,776.4432228,kg -eaaa5681-792b-3a04-a7c8-2211fd0d62fc,SESCO,II.1.1,Entre Rios,AR-E,annual,2017,bioetanol combustion consumption by to the public,77.64432228,TJ,N2O,0.6,kg/TJ,46.586593367999996,kg -2ddcbb49-4d8d-3bc9-9e6a-0cd39122b02a,SESCO,II.1.1,Formosa,AR-P,annual,2017,bioetanol combustion consumption by to the public,34.094173319999996,TJ,CH4,10.0,kg/TJ,340.94173319999993,kg -a2b25532-dcf0-3257-9f50-a1dc8123cc10,SESCO,II.1.1,Formosa,AR-P,annual,2017,bioetanol combustion consumption by to the public,34.094173319999996,TJ,N2O,0.6,kg/TJ,20.456503992,kg -4e48eb44-7313-36a5-b243-622c5e942ea9,SESCO,II.1.1,Jujuy,AR-Y,annual,2017,bioetanol combustion consumption by to the public,13.37231916,TJ,CH4,10.0,kg/TJ,133.7231916,kg -60ffde0d-6423-321e-aa87-b572364be7a6,SESCO,II.1.1,Jujuy,AR-Y,annual,2017,bioetanol combustion consumption by to the public,13.37231916,TJ,N2O,0.6,kg/TJ,8.023391496,kg -3c1194bf-47c8-3bbf-9c9f-9ad691c9876c,SESCO,II.1.1,La Pampa,AR-L,annual,2017,bioetanol combustion consumption by to the public,26.269155359999996,TJ,CH4,10.0,kg/TJ,262.69155359999996,kg -df85f1ef-f6a8-3e31-99d6-4b8fffc761eb,SESCO,II.1.1,La Pampa,AR-L,annual,2017,bioetanol combustion consumption by to the public,26.269155359999996,TJ,N2O,0.6,kg/TJ,15.761493215999996,kg -b819f619-ef87-3f26-a69f-87684ffb825c,SESCO,II.1.1,La Rioja,AR-F,annual,2017,bioetanol combustion consumption by to the public,25.5252546,TJ,CH4,10.0,kg/TJ,255.252546,kg -ceb7496f-db57-31b0-9ec0-a2e20efc94c1,SESCO,II.1.1,La Rioja,AR-F,annual,2017,bioetanol combustion consumption by to the public,25.5252546,TJ,N2O,0.6,kg/TJ,15.31515276,kg -993f9e47-9514-346c-80d1-ef71401d06c9,SESCO,II.1.1,Mendoza,AR-M,annual,2017,bioetanol combustion consumption by to the public,86.53789871999999,TJ,CH4,10.0,kg/TJ,865.3789871999999,kg -7d24ec2b-0c9c-3856-8132-7890357f575f,SESCO,II.1.1,Mendoza,AR-M,annual,2017,bioetanol combustion consumption by to the public,86.53789871999999,TJ,N2O,0.6,kg/TJ,51.92273923199999,kg -43124059-ea90-3e07-9476-85f08a9a096a,SESCO,II.1.1,Misiones,AR-N,annual,2017,bioetanol combustion consumption by to the public,96.43612464,TJ,CH4,10.0,kg/TJ,964.3612464,kg -078f84de-7f21-37b7-ab1c-72cbe96f1ded,SESCO,II.1.1,Misiones,AR-N,annual,2017,bioetanol combustion consumption by to the public,96.43612464,TJ,N2O,0.6,kg/TJ,57.861674784,kg -76c34124-538c-343a-afce-c0c0596c70c7,SESCO,II.1.1,Neuquén,AR-Q,annual,2017,bioetanol combustion consumption by to the public,38.11021488,TJ,CH4,10.0,kg/TJ,381.1021488,kg -43149f7d-bcff-3845-b63b-ce05a02d0b08,SESCO,II.1.1,Neuquén,AR-Q,annual,2017,bioetanol combustion consumption by to the public,38.11021488,TJ,N2O,0.6,kg/TJ,22.866128928,kg -ca1b1d26-0d12-3942-8984-6141362988c8,SESCO,II.1.1,Rio Negro,AR-R,annual,2017,bioetanol combustion consumption by to the public,12.707665559999999,TJ,CH4,10.0,kg/TJ,127.07665559999998,kg -68190b33-227d-3821-ba0d-6dbf3e614834,SESCO,II.1.1,Rio Negro,AR-R,annual,2017,bioetanol combustion consumption by to the public,12.707665559999999,TJ,N2O,0.6,kg/TJ,7.624599335999999,kg -211c2b4f-db46-330c-9cc5-c1c00e794d08,SESCO,II.1.1,Salta,AR-A,annual,2017,bioetanol combustion consumption by to the public,20.793432239999998,TJ,CH4,10.0,kg/TJ,207.93432239999999,kg -57d62e51-d126-3248-8729-640ab9a3d8ef,SESCO,II.1.1,Salta,AR-A,annual,2017,bioetanol combustion consumption by to the public,20.793432239999998,TJ,N2O,0.6,kg/TJ,12.476059343999998,kg -d8c34a88-d903-30ee-aec7-9f4a05ced711,SESCO,II.1.1,San Juan,AR-J,annual,2017,bioetanol combustion consumption by to the public,13.702089599999997,TJ,CH4,10.0,kg/TJ,137.02089599999996,kg -20d6209e-b955-303d-a80d-793f80552ae3,SESCO,II.1.1,San Juan,AR-J,annual,2017,bioetanol combustion consumption by to the public,13.702089599999997,TJ,N2O,0.6,kg/TJ,8.221253759999998,kg -fbf43b09-f17a-301f-a4b4-ebf7f99145d3,SESCO,II.1.1,San Luis,AR-D,annual,2017,bioetanol combustion consumption by to the public,4.83918948,TJ,CH4,10.0,kg/TJ,48.3918948,kg -61cdb9c7-d547-3f91-a908-c66cb449a8dc,SESCO,II.1.1,San Luis,AR-D,annual,2017,bioetanol combustion consumption by to the public,4.83918948,TJ,N2O,0.6,kg/TJ,2.903513688,kg -22ef45e8-18a1-3059-8be4-55bcca99e9a2,SESCO,II.1.1,Santa Fe,AR-S,annual,2017,bioetanol combustion consumption by to the public,288.85078547999996,TJ,CH4,10.0,kg/TJ,2888.5078547999997,kg -d6235186-ec48-3b44-a73a-18389d836c3b,SESCO,II.1.1,Santa Fe,AR-S,annual,2017,bioetanol combustion consumption by to the public,288.85078547999996,TJ,N2O,0.6,kg/TJ,173.31047128799997,kg -82d3b00f-a48a-3c33-8e6a-1406ddd71710,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2017,bioetanol combustion consumption by to the public,29.786706719999998,TJ,CH4,10.0,kg/TJ,297.86706719999995,kg -2eab8e59-248b-3f4b-bb8a-44cba070e3fa,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2017,bioetanol combustion consumption by to the public,29.786706719999998,TJ,N2O,0.6,kg/TJ,17.872024032,kg -c2033df7-e23c-3812-8eef-7f5a32e5f348,SESCO,II.1.1,Tucuman,AR-T,annual,2017,bioetanol combustion consumption by to the public,62.90435051999999,TJ,CH4,10.0,kg/TJ,629.0435051999999,kg -f4c6aef3-2c9e-3196-9b8a-27cd87b3d040,SESCO,II.1.1,Tucuman,AR-T,annual,2017,bioetanol combustion consumption by to the public,62.90435051999999,TJ,N2O,0.6,kg/TJ,37.74261031199999,kg -285b3903-089f-375c-8fcd-5716585b5a2a,SESCO,II.1.1,Buenos Aires,AR-B,annual,2017,bioetanol combustion consumption by to the public,775.1445919199999,TJ,CH4,10.0,kg/TJ,7751.4459191999995,kg -4a62c86f-df1c-38cf-8943-f99140333877,SESCO,II.1.1,Buenos Aires,AR-B,annual,2017,bioetanol combustion consumption by to the public,775.1445919199999,TJ,N2O,0.6,kg/TJ,465.0867551519999,kg -8f5d0205-ccb8-358b-b024-e82481d99224,SESCO,II.1.1,Capital Federal,AR-C,annual,2017,bioetanol combustion consumption by to the public,303.92564039999996,TJ,CH4,10.0,kg/TJ,3039.2564039999997,kg -fd27d844-a1c6-3f46-b4fc-9740cc45aac0,SESCO,II.1.1,Capital Federal,AR-C,annual,2017,bioetanol combustion consumption by to the public,303.92564039999996,TJ,N2O,0.6,kg/TJ,182.35538423999998,kg -ad8eff87-3144-365f-a486-a3c80527c183,SESCO,II.1.1,Catamarca,AR-K,annual,2017,bioetanol combustion consumption by to the public,3.6709329599999996,TJ,CH4,10.0,kg/TJ,36.7093296,kg -9bde37b2-821d-3245-b27c-2e8caa9ba9d2,SESCO,II.1.1,Catamarca,AR-K,annual,2017,bioetanol combustion consumption by to the public,3.6709329599999996,TJ,N2O,0.6,kg/TJ,2.2025597759999997,kg -74c786c3-e919-3681-9bbb-21cbe91e962f,SESCO,II.1.1,Chaco,AR-H,annual,2017,bioetanol combustion consumption by to the public,32.455546559999995,TJ,CH4,10.0,kg/TJ,324.55546559999993,kg -42cfcf93-f31d-3f31-8e98-86733ca22129,SESCO,II.1.1,Chaco,AR-H,annual,2017,bioetanol combustion consumption by to the public,32.455546559999995,TJ,N2O,0.6,kg/TJ,19.473327935999997,kg -10d7e53b-3ff8-3662-afd8-75bc5e4b18df,SESCO,II.1.1,Corrientes,AR-W,annual,2017,bioetanol combustion consumption by to the public,32.5168992,TJ,CH4,10.0,kg/TJ,325.168992,kg -77f9045e-053e-3640-b3e3-065ff6ed71eb,SESCO,II.1.1,Corrientes,AR-W,annual,2017,bioetanol combustion consumption by to the public,32.5168992,TJ,N2O,0.6,kg/TJ,19.51013952,kg -e759acb0-b310-351b-990a-94f17cdef470,SESCO,II.1.1,Córdoba,AR-X,annual,2017,bioetanol combustion consumption by to the public,153.87242111999998,TJ,CH4,10.0,kg/TJ,1538.7242112,kg -e5afdc99-9e90-3d41-b157-11a1d9507a1d,SESCO,II.1.1,Córdoba,AR-X,annual,2017,bioetanol combustion consumption by to the public,153.87242111999998,TJ,N2O,0.6,kg/TJ,92.32345267199999,kg -84cf71e3-8899-32a4-af97-5767d9a84531,SESCO,II.1.1,Entre Rios,AR-E,annual,2017,bioetanol combustion consumption by to the public,36.039563279999996,TJ,CH4,10.0,kg/TJ,360.39563279999993,kg -3215fb84-ec24-3b6d-83cd-475d41021349,SESCO,II.1.1,Entre Rios,AR-E,annual,2017,bioetanol combustion consumption by to the public,36.039563279999996,TJ,N2O,0.6,kg/TJ,21.623737967999997,kg -6f287980-477c-3e85-9777-6b7ab3185457,SESCO,II.1.1,Formosa,AR-P,annual,2017,bioetanol combustion consumption by to the public,17.0892666,TJ,CH4,10.0,kg/TJ,170.892666,kg -d75d419f-24b1-389a-bde4-b10854e2f678,SESCO,II.1.1,Formosa,AR-P,annual,2017,bioetanol combustion consumption by to the public,17.0892666,TJ,N2O,0.6,kg/TJ,10.253559959999999,kg -634638b4-08a6-3146-8184-cd722c5398ac,SESCO,II.1.1,Jujuy,AR-Y,annual,2017,bioetanol combustion consumption by to the public,3.46898052,TJ,CH4,10.0,kg/TJ,34.6898052,kg -646fb62f-8787-3282-9abd-471c2af4b7b6,SESCO,II.1.1,Jujuy,AR-Y,annual,2017,bioetanol combustion consumption by to the public,3.46898052,TJ,N2O,0.6,kg/TJ,2.081388312,kg -ebdbbcf1-d9ab-3cc0-93c6-49210e753a9b,SESCO,II.1.1,La Pampa,AR-L,annual,2017,bioetanol combustion consumption by to the public,17.08159752,TJ,CH4,10.0,kg/TJ,170.8159752,kg -c414e1af-5d9a-307d-a957-f19d5530b7d2,SESCO,II.1.1,La Pampa,AR-L,annual,2017,bioetanol combustion consumption by to the public,17.08159752,TJ,N2O,0.6,kg/TJ,10.248958512,kg -4aae4008-b132-3e92-ba87-698ad571d34c,SESCO,II.1.1,La Rioja,AR-F,annual,2017,bioetanol combustion consumption by to the public,9.49176468,TJ,CH4,10.0,kg/TJ,94.9176468,kg -74d50fb5-8090-3bc1-bd62-d5b829a304c8,SESCO,II.1.1,La Rioja,AR-F,annual,2017,bioetanol combustion consumption by to the public,9.49176468,TJ,N2O,0.6,kg/TJ,5.695058808,kg -930595c6-60c7-3377-9bd9-7fde8cc94c30,SESCO,II.1.1,Mendoza,AR-M,annual,2017,bioetanol combustion consumption by to the public,47.61987408,TJ,CH4,10.0,kg/TJ,476.1987408,kg -1f192614-fbd6-3668-aa45-7bbf32a0f2b2,SESCO,II.1.1,Mendoza,AR-M,annual,2017,bioetanol combustion consumption by to the public,47.61987408,TJ,N2O,0.6,kg/TJ,28.571924448,kg -aad96b91-e80d-30e6-9cdc-08e646cabab8,SESCO,II.1.1,Misiones,AR-N,annual,2017,bioetanol combustion consumption by to the public,29.730466799999995,TJ,CH4,10.0,kg/TJ,297.30466799999994,kg -31e452d3-0347-33d9-805d-2eb1cba3de2d,SESCO,II.1.1,Misiones,AR-N,annual,2017,bioetanol combustion consumption by to the public,29.730466799999995,TJ,N2O,0.6,kg/TJ,17.838280079999997,kg -4bad7f1a-9476-3f85-a969-630d7c98c592,SESCO,II.1.1,Neuquén,AR-Q,annual,2017,bioetanol combustion consumption by to the public,31.890590999999997,TJ,CH4,10.0,kg/TJ,318.90590999999995,kg -569af9b2-dcd3-348a-837b-4b8fac048adf,SESCO,II.1.1,Neuquén,AR-Q,annual,2017,bioetanol combustion consumption by to the public,31.890590999999997,TJ,N2O,0.6,kg/TJ,19.134354599999998,kg -72149961-a924-3bc1-9481-164beb6ee05a,SESCO,II.1.1,Rio Negro,AR-R,annual,2017,bioetanol combustion consumption by to the public,7.812236159999999,TJ,CH4,10.0,kg/TJ,78.12236159999999,kg -76cc0dc7-3037-354d-a396-9713f0efeff7,SESCO,II.1.1,Rio Negro,AR-R,annual,2017,bioetanol combustion consumption by to the public,7.812236159999999,TJ,N2O,0.6,kg/TJ,4.687341696,kg -91f58990-cd5d-3150-b765-f02ddbd2061a,SESCO,II.1.1,Salta,AR-A,annual,2017,bioetanol combustion consumption by to the public,9.24891048,TJ,CH4,10.0,kg/TJ,92.48910479999999,kg -a6383708-e1b3-3353-be76-26a0dd60d999,SESCO,II.1.1,Salta,AR-A,annual,2017,bioetanol combustion consumption by to the public,9.24891048,TJ,N2O,0.6,kg/TJ,5.549346288,kg -4bf052de-db4e-36d4-b1a7-531927f62f54,SESCO,II.1.1,San Juan,AR-J,annual,2017,bioetanol combustion consumption by to the public,3.131541,TJ,CH4,10.0,kg/TJ,31.31541,kg -434fb24d-55ea-3ccb-9727-5f486610e3a2,SESCO,II.1.1,San Juan,AR-J,annual,2017,bioetanol combustion consumption by to the public,3.131541,TJ,N2O,0.6,kg/TJ,1.8789246,kg -cb4ea796-b43f-3355-9875-80d509f7ae2a,SESCO,II.1.1,San Luis,AR-D,annual,2017,bioetanol combustion consumption by to the public,3.7578492,TJ,CH4,10.0,kg/TJ,37.578492,kg -ebcd456b-10f0-3ba6-b192-4a5b35e1514f,SESCO,II.1.1,San Luis,AR-D,annual,2017,bioetanol combustion consumption by to the public,3.7578492,TJ,N2O,0.6,kg/TJ,2.25470952,kg -533d88ea-683c-3155-8a6a-a3d41c4df18c,SESCO,II.1.1,Santa Fe,AR-S,annual,2017,bioetanol combustion consumption by to the public,160.40647728,TJ,CH4,10.0,kg/TJ,1604.0647728,kg -97a51038-5f36-3936-bc9c-c15a8f5ff3bc,SESCO,II.1.1,Santa Fe,AR-S,annual,2017,bioetanol combustion consumption by to the public,160.40647728,TJ,N2O,0.6,kg/TJ,96.24388636799999,kg -5b4e4fb8-7c40-3e2c-9809-85b1e6b69592,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2017,bioetanol combustion consumption by to the public,16.37604216,TJ,CH4,10.0,kg/TJ,163.7604216,kg -a5e7948a-7d99-3a70-be55-b21742294244,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2017,bioetanol combustion consumption by to the public,16.37604216,TJ,N2O,0.6,kg/TJ,9.825625296,kg -5f6ef01e-f549-3a7e-82fe-a9bc0cc46a8e,SESCO,II.1.1,Tucuman,AR-T,annual,2017,bioetanol combustion consumption by to the public,23.69490084,TJ,CH4,10.0,kg/TJ,236.9490084,kg -10e8f6bb-c765-396c-b9de-0bf4e33f4cdc,SESCO,II.1.1,Tucuman,AR-T,annual,2017,bioetanol combustion consumption by to the public,23.69490084,TJ,N2O,0.6,kg/TJ,14.216940503999998,kg -a799781a-050a-3125-895a-f8652e7b13e0,SESCO,II.1.1,Buenos Aires,AR-B,annual,2017,bioetanol combustion consumption by to the public,86.33778174647999,TJ,CH4,10.0,kg/TJ,863.3778174647999,kg -442fee84-b9fb-39fd-9de8-16b9a00e68f1,SESCO,II.1.1,Buenos Aires,AR-B,annual,2017,bioetanol combustion consumption by to the public,86.33778174647999,TJ,N2O,0.6,kg/TJ,51.802669047887996,kg -b6378e45-81a1-3ca0-a4ba-e14b450c85af,SESCO,II.1.1,Buenos Aires,AR-B,annual,2017,bioetanol combustion consumption by to the public,5.0203101423600005,TJ,CH4,10.0,kg/TJ,50.2031014236,kg -c33e40eb-17b2-3e29-beab-821702ac0d98,SESCO,II.1.1,Buenos Aires,AR-B,annual,2017,bioetanol combustion consumption by to the public,5.0203101423600005,TJ,N2O,0.6,kg/TJ,3.0121860854160003,kg -d22df3f5-4e19-3945-a50e-4ede0bd9b079,SESCO,II.5.1,Buenos Aires,AR-B,annual,2017,bioetanol combustion consumption by agriculture machines,59.095374119999995,TJ,CH4,10.0,kg/TJ,590.9537412,kg -9f8c25ef-dedf-368d-8b07-1b5a197fe124,SESCO,II.5.1,Buenos Aires,AR-B,annual,2017,bioetanol combustion consumption by agriculture machines,59.095374119999995,TJ,N2O,0.6,kg/TJ,35.45722447199999,kg -cf8281b9-986e-3984-bca4-07abad41d080,SESCO,II.5.1,Chubut,AR-U,annual,2017,bioetanol combustion consumption by agriculture machines,0.127818,TJ,CH4,10.0,kg/TJ,1.2781799999999999,kg -dbf6bbba-f0a9-36ec-bef1-f2b350f8971e,SESCO,II.5.1,Chubut,AR-U,annual,2017,bioetanol combustion consumption by agriculture machines,0.127818,TJ,N2O,0.6,kg/TJ,0.07669079999999999,kg -0e645a15-21c0-3584-9d63-decf96007c93,SESCO,II.5.1,Jujuy,AR-Y,annual,2017,bioetanol combustion consumption by agriculture machines,0.0255636,TJ,CH4,10.0,kg/TJ,0.255636,kg -dbda01c4-7567-3de9-b9ee-66579a6e4d0f,SESCO,II.5.1,Jujuy,AR-Y,annual,2017,bioetanol combustion consumption by agriculture machines,0.0255636,TJ,N2O,0.6,kg/TJ,0.015338159999999998,kg -bcad6a01-d454-3815-97df-ce3ebb0618a1,SESCO,II.5.1,Mendoza,AR-M,annual,2017,bioetanol combustion consumption by agriculture machines,1.8201283199999998,TJ,CH4,10.0,kg/TJ,18.2012832,kg -05995652-23e6-3015-892e-b20eb7e88063,SESCO,II.5.1,Mendoza,AR-M,annual,2017,bioetanol combustion consumption by agriculture machines,1.8201283199999998,TJ,N2O,0.6,kg/TJ,1.0920769919999997,kg -dd9c6a65-429c-3212-a864-d01cc333b834,SESCO,II.5.1,Salta,AR-A,annual,2017,bioetanol combustion consumption by agriculture machines,0.035789039999999994,TJ,CH4,10.0,kg/TJ,0.35789039999999994,kg -deed34fb-20ad-3cfe-a7ed-27c508c2c78c,SESCO,II.5.1,Salta,AR-A,annual,2017,bioetanol combustion consumption by agriculture machines,0.035789039999999994,TJ,N2O,0.6,kg/TJ,0.021473423999999994,kg -6b0714ba-a9e4-352f-b98f-9c140c63d5c4,SESCO,II.5.1,Santa Fe,AR-S,annual,2017,bioetanol combustion consumption by agriculture machines,8.287719119999998,TJ,CH4,10.0,kg/TJ,82.87719119999998,kg -860dc41c-deef-3efe-aab3-c16c9a9d00b4,SESCO,II.5.1,Santa Fe,AR-S,annual,2017,bioetanol combustion consumption by agriculture machines,8.287719119999998,TJ,N2O,0.6,kg/TJ,4.972631471999999,kg -73ef4a61-7abe-3899-b1b8-73c2cfade7ff,SESCO,II.5.1,Buenos Aires,AR-B,annual,2017,bioetanol combustion consumption by agriculture machines,0.32210135999999995,TJ,CH4,10.0,kg/TJ,3.2210135999999996,kg -61e46692-3e92-3379-8e66-0b9b22e67cdf,SESCO,II.5.1,Buenos Aires,AR-B,annual,2017,bioetanol combustion consumption by agriculture machines,0.32210135999999995,TJ,N2O,0.6,kg/TJ,0.19326081599999997,kg -9b1d72c9-d3dc-3d5e-8266-0e83b31ee0fb,SESCO,II.5.1,Santa Fe,AR-S,annual,2017,bioetanol combustion consumption by agriculture machines,0.043458119999999996,TJ,CH4,10.0,kg/TJ,0.43458119999999995,kg -cf216ec1-c182-3631-8225-3d430fa347a7,SESCO,II.5.1,Santa Fe,AR-S,annual,2017,bioetanol combustion consumption by agriculture machines,0.043458119999999996,TJ,N2O,0.6,kg/TJ,0.026074871999999995,kg -572996ba-79e1-36e6-8d96-59e7f00456ad,SESCO,II.1.1,Buenos Aires,AR-B,annual,2017,bioetanol combustion consumption by to the public,2829.7013493599998,TJ,CH4,10.0,kg/TJ,28297.013493599996,kg -5477f9a3-af84-3dd4-8927-78aaaf1d27fa,SESCO,II.1.1,Buenos Aires,AR-B,annual,2017,bioetanol combustion consumption by to the public,2829.7013493599998,TJ,N2O,0.6,kg/TJ,1697.820809616,kg -3e1c0f7a-6e34-3693-ae72-de6d2bdccba9,SESCO,II.1.1,Capital Federal,AR-C,annual,2017,bioetanol combustion consumption by to the public,614.5770639599999,TJ,CH4,10.0,kg/TJ,6145.770639599999,kg -8a98316f-bcc5-3a2a-91a5-4d499922aff5,SESCO,II.1.1,Capital Federal,AR-C,annual,2017,bioetanol combustion consumption by to the public,614.5770639599999,TJ,N2O,0.6,kg/TJ,368.74623837599995,kg -e9515f08-20af-35a5-a2f8-8789217f81e4,SESCO,II.1.1,Catamarca,AR-K,annual,2017,bioetanol combustion consumption by to the public,55.17391788,TJ,CH4,10.0,kg/TJ,551.7391788,kg -caeb4ec1-6c89-3463-b31d-0866121b6be4,SESCO,II.1.1,Catamarca,AR-K,annual,2017,bioetanol combustion consumption by to the public,55.17391788,TJ,N2O,0.6,kg/TJ,33.104350728,kg -906a5d49-8917-3c43-9d36-c8348d7947b2,SESCO,II.1.1,Chaco,AR-H,annual,2017,bioetanol combustion consumption by to the public,185.18783111999997,TJ,CH4,10.0,kg/TJ,1851.8783111999996,kg -5aa894b7-bbb0-361c-8c6a-77378ab95f1e,SESCO,II.1.1,Chaco,AR-H,annual,2017,bioetanol combustion consumption by to the public,185.18783111999997,TJ,N2O,0.6,kg/TJ,111.11269867199998,kg -375865f0-3781-3ae2-b299-c0aff64ea2b9,SESCO,II.1.1,Chubut,AR-U,annual,2017,bioetanol combustion consumption by to the public,259.77219048,TJ,CH4,10.0,kg/TJ,2597.7219048,kg -2e1bbc7f-e30c-374b-ab22-1b4f4e48c147,SESCO,II.1.1,Chubut,AR-U,annual,2017,bioetanol combustion consumption by to the public,259.77219048,TJ,N2O,0.6,kg/TJ,155.863314288,kg -c4de627d-1a3c-3932-9989-33b98cb20705,SESCO,II.1.1,Corrientes,AR-W,annual,2017,bioetanol combustion consumption by to the public,188.14553963999998,TJ,CH4,10.0,kg/TJ,1881.4553963999997,kg -69051f15-7f72-34b3-8465-2ef3bda3bce0,SESCO,II.1.1,Corrientes,AR-W,annual,2017,bioetanol combustion consumption by to the public,188.14553963999998,TJ,N2O,0.6,kg/TJ,112.88732378399999,kg -9f57dc91-d021-3536-b848-e47c3d9fa704,SESCO,II.1.1,Córdoba,AR-X,annual,2017,bioetanol combustion consumption by to the public,696.53396556,TJ,CH4,10.0,kg/TJ,6965.3396556,kg -820447c4-f6c2-364e-b224-89b6e924b7a1,SESCO,II.1.1,Córdoba,AR-X,annual,2017,bioetanol combustion consumption by to the public,696.53396556,TJ,N2O,0.6,kg/TJ,417.92037933599994,kg -a06a5ae0-f36b-3f32-a4c6-6b5255a29b19,SESCO,II.1.1,Entre Rios,AR-E,annual,2017,bioetanol combustion consumption by to the public,247.31504819999998,TJ,CH4,10.0,kg/TJ,2473.150482,kg -f6030826-a0ea-38d9-ac1f-bb5a768236b4,SESCO,II.1.1,Entre Rios,AR-E,annual,2017,bioetanol combustion consumption by to the public,247.31504819999998,TJ,N2O,0.6,kg/TJ,148.38902892,kg -e1919e15-4452-3f1a-bd64-cf890bddfb80,SESCO,II.1.1,Formosa,AR-P,annual,2017,bioetanol combustion consumption by to the public,61.426774439999996,TJ,CH4,10.0,kg/TJ,614.2677444,kg -15a02f11-3ccb-3a32-b191-8b824b85f7fb,SESCO,II.1.1,Formosa,AR-P,annual,2017,bioetanol combustion consumption by to the public,61.426774439999996,TJ,N2O,0.6,kg/TJ,36.856064663999994,kg -58354226-edb3-3298-961a-f1c36c0da79e,SESCO,II.1.1,Jujuy,AR-Y,annual,2017,bioetanol combustion consumption by to the public,108.83191428,TJ,CH4,10.0,kg/TJ,1088.3191428,kg -5380ead6-2f46-3dc9-b927-a8ce9a8f5015,SESCO,II.1.1,Jujuy,AR-Y,annual,2017,bioetanol combustion consumption by to the public,108.83191428,TJ,N2O,0.6,kg/TJ,65.299148568,kg -ba49d9f2-21e0-33c4-b3fd-c8d5dc81bbd1,SESCO,II.1.1,La Pampa,AR-L,annual,2017,bioetanol combustion consumption by to the public,122.21190252,TJ,CH4,10.0,kg/TJ,1222.1190252,kg -360e9e46-b867-390f-928b-1f3c001f58ce,SESCO,II.1.1,La Pampa,AR-L,annual,2017,bioetanol combustion consumption by to the public,122.21190252,TJ,N2O,0.6,kg/TJ,73.327141512,kg -4ac22f8e-8ba0-3b55-a87f-1ecf335cc21f,SESCO,II.1.1,La Rioja,AR-F,annual,2017,bioetanol combustion consumption by to the public,76.93876691999999,TJ,CH4,10.0,kg/TJ,769.3876691999999,kg -ad7a9f68-2aae-3620-8d78-d6d9f01a4dbc,SESCO,II.1.1,La Rioja,AR-F,annual,2017,bioetanol combustion consumption by to the public,76.93876691999999,TJ,N2O,0.6,kg/TJ,46.16326015199999,kg -b4295c5b-d6bc-384b-a443-1db077eb8115,SESCO,II.1.1,Mendoza,AR-M,annual,2017,bioetanol combustion consumption by to the public,385.92088739999997,TJ,CH4,10.0,kg/TJ,3859.208874,kg -c1e712ad-15bb-3a9e-a808-1cb017a81459,SESCO,II.1.1,Mendoza,AR-M,annual,2017,bioetanol combustion consumption by to the public,385.92088739999997,TJ,N2O,0.6,kg/TJ,231.55253243999996,kg -7d35a097-4b96-37ed-a978-1f827ee70982,SESCO,II.1.1,Misiones,AR-N,annual,2017,bioetanol combustion consumption by to the public,252.31528835999995,TJ,CH4,10.0,kg/TJ,2523.1528835999998,kg -19ccf1f3-db3d-3b47-8350-a41e32b99183,SESCO,II.1.1,Misiones,AR-N,annual,2017,bioetanol combustion consumption by to the public,252.31528835999995,TJ,N2O,0.6,kg/TJ,151.38917301599997,kg -098aebeb-e1b2-35fa-b6e4-3474c2243905,SESCO,II.1.1,Neuquén,AR-Q,annual,2017,bioetanol combustion consumption by to the public,247.200012,TJ,CH4,10.0,kg/TJ,2472.0001199999997,kg -40c6cd70-ae7c-36c7-92cc-5f25d11e4794,SESCO,II.1.1,Neuquén,AR-Q,annual,2017,bioetanol combustion consumption by to the public,247.200012,TJ,N2O,0.6,kg/TJ,148.3200072,kg -1b97ff9e-e4e0-32db-9bd1-1b986713255a,SESCO,II.1.1,Rio Negro,AR-R,annual,2017,bioetanol combustion consumption by to the public,233.21927915999999,TJ,CH4,10.0,kg/TJ,2332.1927916,kg -ff98d3c0-3f20-3d00-a9ad-c85502532c94,SESCO,II.1.1,Rio Negro,AR-R,annual,2017,bioetanol combustion consumption by to the public,233.21927915999999,TJ,N2O,0.6,kg/TJ,139.93156749599999,kg -e20c09da-3d44-38b9-83f6-f66773ab807c,SESCO,II.1.1,Salta,AR-A,annual,2017,bioetanol combustion consumption by to the public,245.69687231999995,TJ,CH4,10.0,kg/TJ,2456.9687231999997,kg -f779143a-a826-3737-98a7-0ef599ac74fd,SESCO,II.1.1,Salta,AR-A,annual,2017,bioetanol combustion consumption by to the public,245.69687231999995,TJ,N2O,0.6,kg/TJ,147.41812339199996,kg -d8b61adb-4ddb-3048-89a0-03545b96c299,SESCO,II.1.1,San Juan,AR-J,annual,2017,bioetanol combustion consumption by to the public,129.41828135999998,TJ,CH4,10.0,kg/TJ,1294.1828136,kg -92c596d1-c53e-365e-b857-f60f54bbdf14,SESCO,II.1.1,San Juan,AR-J,annual,2017,bioetanol combustion consumption by to the public,129.41828135999998,TJ,N2O,0.6,kg/TJ,77.65096881599999,kg -46427518-5ab3-3dac-9d58-8abede006e12,SESCO,II.1.1,San Luis,AR-D,annual,2017,bioetanol combustion consumption by to the public,100.23231924,TJ,CH4,10.0,kg/TJ,1002.3231923999999,kg -d2f9c256-fbe2-395f-8331-2459c823aac0,SESCO,II.1.1,San Luis,AR-D,annual,2017,bioetanol combustion consumption by to the public,100.23231924,TJ,N2O,0.6,kg/TJ,60.13939154399999,kg -1c188158-9f26-3df9-bdec-0596ac08cc55,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2017,bioetanol combustion consumption by to the public,177.85619063999997,TJ,CH4,10.0,kg/TJ,1778.5619063999998,kg -e1a1eeaa-4fab-3dc6-9f24-daff943579f7,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2017,bioetanol combustion consumption by to the public,177.85619063999997,TJ,N2O,0.6,kg/TJ,106.71371438399997,kg -883e5b07-c13e-310c-b312-70d8d1d380f6,SESCO,II.1.1,Santa Fe,AR-S,annual,2017,bioetanol combustion consumption by to the public,518.6598803999999,TJ,CH4,10.0,kg/TJ,5186.598803999999,kg -9cc4fee4-8466-391b-9cf1-8f4d0a563605,SESCO,II.1.1,Santa Fe,AR-S,annual,2017,bioetanol combustion consumption by to the public,518.6598803999999,TJ,N2O,0.6,kg/TJ,311.19592823999994,kg -ab011f9b-498e-37d2-9e35-bb8cd4895f72,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2017,bioetanol combustion consumption by to the public,102.50747964,TJ,CH4,10.0,kg/TJ,1025.0747964,kg -8df45a86-fabd-309e-9ea5-8b9bbcdd4833,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2017,bioetanol combustion consumption by to the public,102.50747964,TJ,N2O,0.6,kg/TJ,61.504487784,kg -73c854bd-2372-3c8d-9265-464e0e4ebb98,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2017,bioetanol combustion consumption by to the public,137.39668092,TJ,CH4,10.0,kg/TJ,1373.9668092,kg -1d599009-3dd3-33e6-a13c-659238376780,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2017,bioetanol combustion consumption by to the public,137.39668092,TJ,N2O,0.6,kg/TJ,82.438008552,kg -535fd522-a722-32ef-8842-7ecb7d11beed,SESCO,II.1.1,Tucuman,AR-T,annual,2017,bioetanol combustion consumption by to the public,189.50552315999997,TJ,CH4,10.0,kg/TJ,1895.0552315999996,kg -16df649f-8b78-36d8-8d01-627189a7519b,SESCO,II.1.1,Tucuman,AR-T,annual,2017,bioetanol combustion consumption by to the public,189.50552315999997,TJ,N2O,0.6,kg/TJ,113.70331389599998,kg -753fffc2-0fba-3ccd-ab16-e311e4fd7d26,SESCO,II.1.1,Buenos Aires,AR-B,annual,2017,bioetanol combustion consumption by to the public,1533.9617125199998,TJ,CH4,10.0,kg/TJ,15339.617125199999,kg -7dd4186a-4b53-3e32-adb1-37fd18c2b55b,SESCO,II.1.1,Buenos Aires,AR-B,annual,2017,bioetanol combustion consumption by to the public,1533.9617125199998,TJ,N2O,0.6,kg/TJ,920.3770275119998,kg -f6371da4-bd06-3bfe-935f-77ef306aaf25,SESCO,II.1.1,Capital Federal,AR-C,annual,2017,bioetanol combustion consumption by to the public,362.3870372399999,TJ,CH4,10.0,kg/TJ,3623.8703723999993,kg -6e40fdc0-a244-34fc-ac28-c809bee58a4c,SESCO,II.1.1,Capital Federal,AR-C,annual,2017,bioetanol combustion consumption by to the public,362.3870372399999,TJ,N2O,0.6,kg/TJ,217.43222234399994,kg -3f29ed31-37e3-33c5-903e-38146e6b7972,SESCO,II.1.1,Catamarca,AR-K,annual,2017,bioetanol combustion consumption by to the public,30.471811199999994,TJ,CH4,10.0,kg/TJ,304.71811199999996,kg -ca21faec-d742-37b6-b206-acb53d6d8440,SESCO,II.1.1,Catamarca,AR-K,annual,2017,bioetanol combustion consumption by to the public,30.471811199999994,TJ,N2O,0.6,kg/TJ,18.283086719999996,kg -fa765226-9fe5-3c33-b273-c3ba0dfd3dcf,SESCO,II.1.1,Chaco,AR-H,annual,2017,bioetanol combustion consumption by to the public,93.56533236,TJ,CH4,10.0,kg/TJ,935.6533236,kg -45bc47dd-a934-35f6-bbdd-b1c08eb215d9,SESCO,II.1.1,Chaco,AR-H,annual,2017,bioetanol combustion consumption by to the public,93.56533236,TJ,N2O,0.6,kg/TJ,56.139199416,kg -b366a2ca-0393-3b64-b8ac-62d6228071a9,SESCO,II.1.1,Chubut,AR-U,annual,2017,bioetanol combustion consumption by to the public,134.5028814,TJ,CH4,10.0,kg/TJ,1345.028814,kg -5d1c70ce-2987-3089-acae-48387531084f,SESCO,II.1.1,Chubut,AR-U,annual,2017,bioetanol combustion consumption by to the public,134.5028814,TJ,N2O,0.6,kg/TJ,80.70172884,kg -08145412-83e6-3c5a-b1c2-7611c0b7ecea,SESCO,II.1.1,Corrientes,AR-W,annual,2017,bioetanol combustion consumption by to the public,101.00945267999998,TJ,CH4,10.0,kg/TJ,1010.0945267999998,kg -867e99d6-87c9-3585-9497-1911daca33ee,SESCO,II.1.1,Corrientes,AR-W,annual,2017,bioetanol combustion consumption by to the public,101.00945267999998,TJ,N2O,0.6,kg/TJ,60.60567160799999,kg -4a4af128-cc36-3644-ba6d-e6a6faadcc76,SESCO,II.1.1,Córdoba,AR-X,annual,2017,bioetanol combustion consumption by to the public,354.51089208,TJ,CH4,10.0,kg/TJ,3545.1089208000003,kg -4f088cb6-fb0c-3b1e-87aa-530f784a5bdd,SESCO,II.1.1,Córdoba,AR-X,annual,2017,bioetanol combustion consumption by to the public,354.51089208,TJ,N2O,0.6,kg/TJ,212.706535248,kg -a2d6f264-cae6-3d5f-9dc2-a55f5b8d6ec9,SESCO,II.1.1,Entre Rios,AR-E,annual,2017,bioetanol combustion consumption by to the public,135.90121032,TJ,CH4,10.0,kg/TJ,1359.0121032,kg -92be6466-b2ff-3a2e-8cba-b33b01c03d95,SESCO,II.1.1,Entre Rios,AR-E,annual,2017,bioetanol combustion consumption by to the public,135.90121032,TJ,N2O,0.6,kg/TJ,81.540726192,kg -5d4caa4d-d686-3a36-8c19-0b1188f1f331,SESCO,II.1.1,Formosa,AR-P,annual,2017,bioetanol combustion consumption by to the public,24.90917184,TJ,CH4,10.0,kg/TJ,249.0917184,kg -22d46b9d-af40-334f-bd4e-3250d489ef68,SESCO,II.1.1,Formosa,AR-P,annual,2017,bioetanol combustion consumption by to the public,24.90917184,TJ,N2O,0.6,kg/TJ,14.945503103999998,kg -c62bb394-d4da-3b51-b0cc-d7e297493b48,SESCO,II.1.1,Jujuy,AR-Y,annual,2017,bioetanol combustion consumption by to the public,41.72235156,TJ,CH4,10.0,kg/TJ,417.2235156,kg -fd653369-f986-3ee0-8939-feb4ef4b146e,SESCO,II.1.1,Jujuy,AR-Y,annual,2017,bioetanol combustion consumption by to the public,41.72235156,TJ,N2O,0.6,kg/TJ,25.033410936,kg -2b0d7754-1e52-3e1b-ab38-1c7f56d2ed8e,SESCO,II.1.1,La Pampa,AR-L,annual,2017,bioetanol combustion consumption by to the public,102.74522112,TJ,CH4,10.0,kg/TJ,1027.4522112,kg -2542d2c2-5230-3a95-88c0-be6ded23893f,SESCO,II.1.1,La Pampa,AR-L,annual,2017,bioetanol combustion consumption by to the public,102.74522112,TJ,N2O,0.6,kg/TJ,61.647132672,kg -6222d133-2346-3fb9-9503-29bfba99bba2,SESCO,II.1.1,La Rioja,AR-F,annual,2017,bioetanol combustion consumption by to the public,42.14670732,TJ,CH4,10.0,kg/TJ,421.46707319999996,kg -fe8c9ae7-60bd-369b-83b7-8d72c1337225,SESCO,II.1.1,La Rioja,AR-F,annual,2017,bioetanol combustion consumption by to the public,42.14670732,TJ,N2O,0.6,kg/TJ,25.288024391999997,kg -1bd75854-0b0e-38fd-9433-9b59ba272e9a,SESCO,II.1.1,Mendoza,AR-M,annual,2017,bioetanol combustion consumption by to the public,259.03340244,TJ,CH4,10.0,kg/TJ,2590.3340243999996,kg -a7c0c240-6dbe-304d-a82b-949b767c0133,SESCO,II.1.1,Mendoza,AR-M,annual,2017,bioetanol combustion consumption by to the public,259.03340244,TJ,N2O,0.6,kg/TJ,155.42004146399998,kg -342e5022-2f9e-33f2-835c-2c7a91fcae70,SESCO,II.1.1,Misiones,AR-N,annual,2017,bioetanol combustion consumption by to the public,91.453779,TJ,CH4,10.0,kg/TJ,914.53779,kg -460fdf8c-500d-3d77-87a8-48f626f9f91c,SESCO,II.1.1,Misiones,AR-N,annual,2017,bioetanol combustion consumption by to the public,91.453779,TJ,N2O,0.6,kg/TJ,54.8722674,kg -41030aba-14a0-391b-8420-540fb2b209bd,SESCO,II.1.1,Neuquén,AR-Q,annual,2017,bioetanol combustion consumption by to the public,175.95170244,TJ,CH4,10.0,kg/TJ,1759.5170243999999,kg -71388c7b-4b56-3fbb-94fb-2f37d132bef8,SESCO,II.1.1,Neuquén,AR-Q,annual,2017,bioetanol combustion consumption by to the public,175.95170244,TJ,N2O,0.6,kg/TJ,105.571021464,kg -0650502b-fbba-3e5f-9d62-79cd28a56dd2,SESCO,II.1.1,Rio Negro,AR-R,annual,2017,bioetanol combustion consumption by to the public,150.30885528,TJ,CH4,10.0,kg/TJ,1503.0885528,kg -724fc6c8-5604-3456-b8a6-d2d14ebc3b61,SESCO,II.1.1,Rio Negro,AR-R,annual,2017,bioetanol combustion consumption by to the public,150.30885528,TJ,N2O,0.6,kg/TJ,90.185313168,kg -95190287-30c1-3d55-a001-29021e358925,SESCO,II.1.1,Salta,AR-A,annual,2017,bioetanol combustion consumption by to the public,104.79286547999999,TJ,CH4,10.0,kg/TJ,1047.9286548,kg -5ed72628-f324-353d-bba1-6f10421e5869,SESCO,II.1.1,Salta,AR-A,annual,2017,bioetanol combustion consumption by to the public,104.79286547999999,TJ,N2O,0.6,kg/TJ,62.87571928799999,kg -9aada7ed-7709-3927-96a8-9f1e3815edf7,SESCO,II.1.1,San Juan,AR-J,annual,2017,bioetanol combustion consumption by to the public,72.5622786,TJ,CH4,10.0,kg/TJ,725.622786,kg -dab47a87-cff9-3563-9ea6-798de559573e,SESCO,II.1.1,San Juan,AR-J,annual,2017,bioetanol combustion consumption by to the public,72.5622786,TJ,N2O,0.6,kg/TJ,43.537367159999995,kg -1b4ee167-77c3-3745-8f8f-27b16e8b99e6,SESCO,II.1.1,San Luis,AR-D,annual,2017,bioetanol combustion consumption by to the public,66.19438584,TJ,CH4,10.0,kg/TJ,661.9438584,kg -82753196-8958-3b23-b6f4-8d0032a45a5d,SESCO,II.1.1,San Luis,AR-D,annual,2017,bioetanol combustion consumption by to the public,66.19438584,TJ,N2O,0.6,kg/TJ,39.716631504,kg -bdcc70f5-d704-3011-9823-9bf19cb9bdee,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2017,bioetanol combustion consumption by to the public,75.93923016,TJ,CH4,10.0,kg/TJ,759.3923015999999,kg -eb902608-a8f9-393d-ba64-a02660d5dded,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2017,bioetanol combustion consumption by to the public,75.93923016,TJ,N2O,0.6,kg/TJ,45.563538095999995,kg -dae7252e-e497-3d8c-8eb6-7671df6f9923,SESCO,II.1.1,Santa Fe,AR-S,annual,2017,bioetanol combustion consumption by to the public,316.48248071999996,TJ,CH4,10.0,kg/TJ,3164.8248071999997,kg -fda95cff-6cfa-33cb-b9e6-d017fdb0abbd,SESCO,II.1.1,Santa Fe,AR-S,annual,2017,bioetanol combustion consumption by to the public,316.48248071999996,TJ,N2O,0.6,kg/TJ,189.88948843199998,kg -1b61c269-719d-3d1e-a196-b0261ca0b06c,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2017,bioetanol combustion consumption by to the public,59.59130795999999,TJ,CH4,10.0,kg/TJ,595.9130795999998,kg -319d0894-7dc8-3f14-a019-37c752057835,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2017,bioetanol combustion consumption by to the public,59.59130795999999,TJ,N2O,0.6,kg/TJ,35.754784775999994,kg -58831bb4-4d1a-387b-b4a2-5063b63bdf47,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2017,bioetanol combustion consumption by to the public,27.381171959999996,TJ,CH4,10.0,kg/TJ,273.81171959999995,kg -ef48f0cc-3a94-3ec1-8b35-e46436a6bf49,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2017,bioetanol combustion consumption by to the public,27.381171959999996,TJ,N2O,0.6,kg/TJ,16.428703175999996,kg -92c95c5a-fc40-3abc-b0c6-65eb8fe732cd,SESCO,II.1.1,Tucuman,AR-T,annual,2017,bioetanol combustion consumption by to the public,78.0456708,TJ,CH4,10.0,kg/TJ,780.4567079999999,kg -9cec3948-5eef-34ae-a227-f73845385024,SESCO,II.1.1,Tucuman,AR-T,annual,2017,bioetanol combustion consumption by to the public,78.0456708,TJ,N2O,0.6,kg/TJ,46.827402479999996,kg -aebad1dc-6fd9-3a8c-b75a-085ae26f8174,SESCO,II.1.1,Buenos Aires,AR-B,annual,2017,bioetanol combustion consumption by freight transport,21.35583144,TJ,CH4,10.0,kg/TJ,213.5583144,kg -0b3a5aec-2111-3a86-94d1-09809cfbe3ba,SESCO,II.1.1,Buenos Aires,AR-B,annual,2017,bioetanol combustion consumption by freight transport,21.35583144,TJ,N2O,0.6,kg/TJ,12.813498864,kg -cca078c8-f122-3d09-904d-28251863d1ef,SESCO,II.1.1,Capital Federal,AR-C,annual,2017,bioetanol combustion consumption by freight transport,22.08439404,TJ,CH4,10.0,kg/TJ,220.8439404,kg -81875058-5660-379d-8c3f-50abb8ab631f,SESCO,II.1.1,Capital Federal,AR-C,annual,2017,bioetanol combustion consumption by freight transport,22.08439404,TJ,N2O,0.6,kg/TJ,13.250636424,kg -18e1fba0-ed47-31f9-acc6-af0463f6327d,SESCO,II.1.1,Chaco,AR-H,annual,2017,bioetanol combustion consumption by freight transport,0.8487115199999998,TJ,CH4,10.0,kg/TJ,8.487115199999998,kg -215f7ad2-3be7-3728-82f4-ea3cd1bee42c,SESCO,II.1.1,Chaco,AR-H,annual,2017,bioetanol combustion consumption by freight transport,0.8487115199999998,TJ,N2O,0.6,kg/TJ,0.5092269119999999,kg -b5006ac5-393a-30d2-84da-ac25ac7233a5,SESCO,II.1.1,Chubut,AR-U,annual,2017,bioetanol combustion consumption by freight transport,0.2811996,TJ,CH4,10.0,kg/TJ,2.8119959999999997,kg -723e6978-1b1d-3340-8377-2b5ea9a99793,SESCO,II.1.1,Chubut,AR-U,annual,2017,bioetanol combustion consumption by freight transport,0.2811996,TJ,N2O,0.6,kg/TJ,0.16871976,kg -ea532fc8-c9ea-3ab0-920a-3aa7cd799419,SESCO,II.1.1,Corrientes,AR-W,annual,2017,bioetanol combustion consumption by freight transport,0.16360703999999998,TJ,CH4,10.0,kg/TJ,1.6360704,kg -d412fd77-691e-3378-b9cd-3dc64e077e3e,SESCO,II.1.1,Corrientes,AR-W,annual,2017,bioetanol combustion consumption by freight transport,0.16360703999999998,TJ,N2O,0.6,kg/TJ,0.09816422399999998,kg -b68f7ba5-4f1d-35bb-887b-8522526ca4e1,SESCO,II.1.1,Córdoba,AR-X,annual,2017,bioetanol combustion consumption by freight transport,1.4699069999999999,TJ,CH4,10.0,kg/TJ,14.699069999999999,kg -9a78a6bd-1ca7-324a-beef-2d9c995f07d5,SESCO,II.1.1,Córdoba,AR-X,annual,2017,bioetanol combustion consumption by freight transport,1.4699069999999999,TJ,N2O,0.6,kg/TJ,0.8819441999999998,kg -97021d37-9017-33c6-bd55-5548a2b42ef5,SESCO,II.1.1,Entre Rios,AR-E,annual,2017,bioetanol combustion consumption by freight transport,0.8001406799999998,TJ,CH4,10.0,kg/TJ,8.001406799999998,kg -b31f4508-a0f1-335c-83e0-bfc5cc78637d,SESCO,II.1.1,Entre Rios,AR-E,annual,2017,bioetanol combustion consumption by freight transport,0.8001406799999998,TJ,N2O,0.6,kg/TJ,0.48008440799999985,kg -cba91117-131a-3af2-8058-9e5506e03bb7,SESCO,II.1.1,Formosa,AR-P,annual,2017,bioetanol combustion consumption by freight transport,0.03323268,TJ,CH4,10.0,kg/TJ,0.33232680000000003,kg -e272e4c4-2d23-37d0-8785-a0728c4501f0,SESCO,II.1.1,Formosa,AR-P,annual,2017,bioetanol combustion consumption by freight transport,0.03323268,TJ,N2O,0.6,kg/TJ,0.019939608,kg -75776759-bdcb-3ea0-bab8-b1a4ede1fc2f,SESCO,II.1.1,Jujuy,AR-Y,annual,2017,bioetanol combustion consumption by freight transport,0.0127818,TJ,CH4,10.0,kg/TJ,0.127818,kg -640bb9dc-4a3f-3ff5-b29a-9ca97766390c,SESCO,II.1.1,Jujuy,AR-Y,annual,2017,bioetanol combustion consumption by freight transport,0.0127818,TJ,N2O,0.6,kg/TJ,0.007669079999999999,kg -385d8419-2798-3df6-8af5-a50d87fa65f4,SESCO,II.1.1,La Pampa,AR-L,annual,2017,bioetanol combustion consumption by freight transport,0.09458531999999999,TJ,CH4,10.0,kg/TJ,0.9458531999999998,kg -9fec1bb1-2d16-35c1-ac72-b3fa7ff15d34,SESCO,II.1.1,La Pampa,AR-L,annual,2017,bioetanol combustion consumption by freight transport,0.09458531999999999,TJ,N2O,0.6,kg/TJ,0.05675119199999999,kg -8ca211c4-23f0-36a7-8469-a45a907effe6,SESCO,II.1.1,La Rioja,AR-F,annual,2017,bioetanol combustion consumption by freight transport,0.0025563599999999997,TJ,CH4,10.0,kg/TJ,0.0255636,kg -97537dea-e231-355e-8ff1-bb04e5921ef4,SESCO,II.1.1,La Rioja,AR-F,annual,2017,bioetanol combustion consumption by freight transport,0.0025563599999999997,TJ,N2O,0.6,kg/TJ,0.0015338159999999997,kg -97cb20c0-720d-3738-8c29-134aea7b4e04,SESCO,II.1.1,Mendoza,AR-M,annual,2017,bioetanol combustion consumption by freight transport,1.5593796,TJ,CH4,10.0,kg/TJ,15.593796,kg -41b3af82-96d1-35a7-919d-9a778bc71aef,SESCO,II.1.1,Mendoza,AR-M,annual,2017,bioetanol combustion consumption by freight transport,1.5593796,TJ,N2O,0.6,kg/TJ,0.9356277599999999,kg -dd69d74a-c4e6-3293-8429-9f3ae85dad72,SESCO,II.1.1,Misiones,AR-N,annual,2017,bioetanol combustion consumption by freight transport,0.15082524,TJ,CH4,10.0,kg/TJ,1.5082524,kg -cc7df22c-6b46-3e53-ba57-f96512ee025a,SESCO,II.1.1,Misiones,AR-N,annual,2017,bioetanol combustion consumption by freight transport,0.15082524,TJ,N2O,0.6,kg/TJ,0.090495144,kg -782414c2-2097-3595-b8e1-dcb61c2d7341,SESCO,II.1.1,Neuquén,AR-Q,annual,2017,bioetanol combustion consumption by freight transport,0.34766495999999997,TJ,CH4,10.0,kg/TJ,3.4766495999999996,kg -7c082af4-2df2-335c-8780-f2fa7a3d1cee,SESCO,II.1.1,Neuquén,AR-Q,annual,2017,bioetanol combustion consumption by freight transport,0.34766495999999997,TJ,N2O,0.6,kg/TJ,0.20859897599999996,kg -ffe6f949-3917-32ca-a216-e649177dc264,SESCO,II.1.1,Rio Negro,AR-R,annual,2017,bioetanol combustion consumption by freight transport,0.6467590799999999,TJ,CH4,10.0,kg/TJ,6.467590799999999,kg -e87f843e-76b7-3856-9aff-0b30aadf5a51,SESCO,II.1.1,Rio Negro,AR-R,annual,2017,bioetanol combustion consumption by freight transport,0.6467590799999999,TJ,N2O,0.6,kg/TJ,0.38805544799999997,kg -110dbdbe-6e2f-317a-b92e-2d105387193d,SESCO,II.1.1,Salta,AR-A,annual,2017,bioetanol combustion consumption by freight transport,0.85126788,TJ,CH4,10.0,kg/TJ,8.5126788,kg -aef3bf90-7ff2-3bad-bfce-15d39a4c3cf7,SESCO,II.1.1,Salta,AR-A,annual,2017,bioetanol combustion consumption by freight transport,0.85126788,TJ,N2O,0.6,kg/TJ,0.5107607279999999,kg -03a654d1-dc6d-3184-abae-de4ff665c83b,SESCO,II.1.1,San Juan,AR-J,annual,2017,bioetanol combustion consumption by freight transport,0.15849432,TJ,CH4,10.0,kg/TJ,1.5849431999999999,kg -1254881a-85d1-3083-98b4-39d1b7f9c487,SESCO,II.1.1,San Juan,AR-J,annual,2017,bioetanol combustion consumption by freight transport,0.15849432,TJ,N2O,0.6,kg/TJ,0.095096592,kg -21050fec-f831-3cc1-8097-251ce5bd9a88,SESCO,II.1.1,San Luis,AR-D,annual,2017,bioetanol combustion consumption by freight transport,0.23007239999999995,TJ,CH4,10.0,kg/TJ,2.3007239999999998,kg -c7ca3386-97a8-3b75-a7d6-b9b469de3069,SESCO,II.1.1,San Luis,AR-D,annual,2017,bioetanol combustion consumption by freight transport,0.23007239999999995,TJ,N2O,0.6,kg/TJ,0.13804343999999996,kg -a56adad9-6624-3f9b-b89a-a479b41c5f11,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2017,bioetanol combustion consumption by freight transport,0.028119959999999996,TJ,CH4,10.0,kg/TJ,0.28119959999999994,kg -57f493c6-343f-335f-a9f7-5435388b5f35,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2017,bioetanol combustion consumption by freight transport,0.028119959999999996,TJ,N2O,0.6,kg/TJ,0.016871975999999997,kg -649a8741-e301-31a4-a9d6-1b9d5475a802,SESCO,II.1.1,Santa Fe,AR-S,annual,2017,bioetanol combustion consumption by freight transport,2.03741892,TJ,CH4,10.0,kg/TJ,20.3741892,kg -783339ae-0ca0-3609-a31a-4cacce832721,SESCO,II.1.1,Santa Fe,AR-S,annual,2017,bioetanol combustion consumption by freight transport,2.03741892,TJ,N2O,0.6,kg/TJ,1.222451352,kg -d712c3b2-2832-36f1-b129-435a35b483f6,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2017,bioetanol combustion consumption by freight transport,0.007669079999999999,TJ,CH4,10.0,kg/TJ,0.07669079999999999,kg -c23a0078-2b27-3df1-b479-612f5ca22a1d,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2017,bioetanol combustion consumption by freight transport,0.007669079999999999,TJ,N2O,0.6,kg/TJ,0.004601447999999999,kg -8f3be89d-fa3e-3966-a059-186043834f29,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2017,bioetanol combustion consumption by freight transport,0.34255223999999995,TJ,CH4,10.0,kg/TJ,3.4255223999999993,kg -ebf16c0f-2a39-32fe-96b0-897b10f7039a,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2017,bioetanol combustion consumption by freight transport,0.34255223999999995,TJ,N2O,0.6,kg/TJ,0.20553134399999998,kg -37854ee1-ba37-3577-a43b-3d39acd0695e,SESCO,II.1.1,Tucuman,AR-T,annual,2017,bioetanol combustion consumption by freight transport,0.32210135999999995,TJ,CH4,10.0,kg/TJ,3.2210135999999996,kg -734bb5aa-1918-361a-843b-cc914785e244,SESCO,II.1.1,Tucuman,AR-T,annual,2017,bioetanol combustion consumption by freight transport,0.32210135999999995,TJ,N2O,0.6,kg/TJ,0.19326081599999997,kg -bd5bbfe0-375a-327c-b520-a323cf3088ea,SESCO,II.1.1,Buenos Aires,AR-B,annual,2017,bioetanol combustion consumption by freight transport,22.51130616,TJ,CH4,10.0,kg/TJ,225.1130616,kg -a2598b7c-9eba-383c-b2ed-8675df421251,SESCO,II.1.1,Buenos Aires,AR-B,annual,2017,bioetanol combustion consumption by freight transport,22.51130616,TJ,N2O,0.6,kg/TJ,13.506783696,kg -ab3393e8-6181-3d8e-892d-8f42e0c36aed,SESCO,II.1.1,Capital Federal,AR-C,annual,2017,bioetanol combustion consumption by freight transport,26.54268588,TJ,CH4,10.0,kg/TJ,265.4268588,kg -ba7e4946-98f8-35b6-bf16-452d092cfa52,SESCO,II.1.1,Capital Federal,AR-C,annual,2017,bioetanol combustion consumption by freight transport,26.54268588,TJ,N2O,0.6,kg/TJ,15.925611528,kg -323796f9-e930-37ea-be21-841ff1d78a10,SESCO,II.1.1,Catamarca,AR-K,annual,2017,bioetanol combustion consumption by freight transport,0.005112719999999999,TJ,CH4,10.0,kg/TJ,0.0511272,kg -c3f54ff0-39a7-3853-9bdd-0378e9a317ab,SESCO,II.1.1,Catamarca,AR-K,annual,2017,bioetanol combustion consumption by freight transport,0.005112719999999999,TJ,N2O,0.6,kg/TJ,0.0030676319999999994,kg -ae34624b-d15b-38b4-be4e-a4cba477d995,SESCO,II.1.1,Chaco,AR-H,annual,2017,bioetanol combustion consumption by freight transport,0.8461551599999999,TJ,CH4,10.0,kg/TJ,8.4615516,kg -abe83dda-f4ca-3451-ba43-8cea065b88fb,SESCO,II.1.1,Chaco,AR-H,annual,2017,bioetanol combustion consumption by freight transport,0.8461551599999999,TJ,N2O,0.6,kg/TJ,0.5076930959999999,kg -90fd1452-380e-3423-831a-e81ef6565f47,SESCO,II.1.1,Chubut,AR-U,annual,2017,bioetanol combustion consumption by freight transport,0.19428336,TJ,CH4,10.0,kg/TJ,1.9428336,kg -a2974419-38e7-36aa-b194-d84f0444f2e6,SESCO,II.1.1,Chubut,AR-U,annual,2017,bioetanol combustion consumption by freight transport,0.19428336,TJ,N2O,0.6,kg/TJ,0.11657001599999998,kg -b7825a93-87be-3053-8fdf-b17dd95cfe87,SESCO,II.1.1,Corrientes,AR-W,annual,2017,bioetanol combustion consumption by freight transport,0.4217994,TJ,CH4,10.0,kg/TJ,4.217994,kg -3c988ddf-6537-3e1f-96dd-31697d443786,SESCO,II.1.1,Corrientes,AR-W,annual,2017,bioetanol combustion consumption by freight transport,0.4217994,TJ,N2O,0.6,kg/TJ,0.25307964,kg -d881bcb8-6cd0-3504-9500-37e8c2a2256b,SESCO,II.1.1,Córdoba,AR-X,annual,2017,bioetanol combustion consumption by freight transport,1.59005592,TJ,CH4,10.0,kg/TJ,15.9005592,kg -3ec4034c-469d-3959-9453-9f6edab29140,SESCO,II.1.1,Córdoba,AR-X,annual,2017,bioetanol combustion consumption by freight transport,1.59005592,TJ,N2O,0.6,kg/TJ,0.954033552,kg -83bfa16e-51b5-373f-9ee9-a9a0a31182f7,SESCO,II.1.1,Entre Rios,AR-E,annual,2017,bioetanol combustion consumption by freight transport,1.1273547599999998,TJ,CH4,10.0,kg/TJ,11.273547599999997,kg -07ee573b-1c1c-309d-bfe1-cec09bea1e6b,SESCO,II.1.1,Entre Rios,AR-E,annual,2017,bioetanol combustion consumption by freight transport,1.1273547599999998,TJ,N2O,0.6,kg/TJ,0.6764128559999999,kg -6b17ccae-9029-3fd9-995e-5d63bad9234d,SESCO,II.1.1,Formosa,AR-P,annual,2017,bioetanol combustion consumption by freight transport,0.035789039999999994,TJ,CH4,10.0,kg/TJ,0.35789039999999994,kg -da20de9a-8098-3178-88d9-3c85780328ff,SESCO,II.1.1,Formosa,AR-P,annual,2017,bioetanol combustion consumption by freight transport,0.035789039999999994,TJ,N2O,0.6,kg/TJ,0.021473423999999994,kg -34061b52-e448-36db-8dfd-3b838f0a0805,SESCO,II.1.1,Jujuy,AR-Y,annual,2017,bioetanol combustion consumption by freight transport,0.017894519999999997,TJ,CH4,10.0,kg/TJ,0.17894519999999997,kg -4d5c7d9e-f71b-3587-a405-e9ff96e7bd71,SESCO,II.1.1,Jujuy,AR-Y,annual,2017,bioetanol combustion consumption by freight transport,0.017894519999999997,TJ,N2O,0.6,kg/TJ,0.010736711999999997,kg -cca99bbf-9a8b-3e24-bb1c-007b79ad7b1b,SESCO,II.1.1,La Pampa,AR-L,annual,2017,bioetanol combustion consumption by freight transport,0.14826888,TJ,CH4,10.0,kg/TJ,1.4826888,kg -ac04425e-7704-3d09-b38c-bd2b3bcc9101,SESCO,II.1.1,La Pampa,AR-L,annual,2017,bioetanol combustion consumption by freight transport,0.14826888,TJ,N2O,0.6,kg/TJ,0.08896132799999999,kg -50d6baff-81e8-37a6-9dbf-1a88771ca651,SESCO,II.1.1,La Rioja,AR-F,annual,2017,bioetanol combustion consumption by freight transport,0.12526163999999998,TJ,CH4,10.0,kg/TJ,1.2526163999999997,kg -695e5b62-3f96-3f8a-9e43-5f922a47703b,SESCO,II.1.1,La Rioja,AR-F,annual,2017,bioetanol combustion consumption by freight transport,0.12526163999999998,TJ,N2O,0.6,kg/TJ,0.07515698399999998,kg -0aabce23-d1ef-3cb2-8b9a-8cd0e3a8c604,SESCO,II.1.1,Mendoza,AR-M,annual,2017,bioetanol combustion consumption by freight transport,1.4059979999999999,TJ,CH4,10.0,kg/TJ,14.05998,kg -d6e6b717-dbe2-3054-961c-e59a836a28dc,SESCO,II.1.1,Mendoza,AR-M,annual,2017,bioetanol combustion consumption by freight transport,1.4059979999999999,TJ,N2O,0.6,kg/TJ,0.8435987999999999,kg -20161f82-8f08-3fdb-9c12-6ca291f531e8,SESCO,II.1.1,Misiones,AR-N,annual,2017,bioetanol combustion consumption by freight transport,0.31443228,TJ,CH4,10.0,kg/TJ,3.1443228000000003,kg -cdb9025b-0da9-3061-87e0-8fac4ccb5304,SESCO,II.1.1,Misiones,AR-N,annual,2017,bioetanol combustion consumption by freight transport,0.31443228,TJ,N2O,0.6,kg/TJ,0.188659368,kg -5230d7ec-9b6e-3690-8208-b7e9fd1014d1,SESCO,II.1.1,Neuquén,AR-Q,annual,2017,bioetanol combustion consumption by freight transport,0.70811172,TJ,CH4,10.0,kg/TJ,7.0811172,kg -1e745a84-e58d-36e7-9356-a6b88a75d5a0,SESCO,II.1.1,Neuquén,AR-Q,annual,2017,bioetanol combustion consumption by freight transport,0.70811172,TJ,N2O,0.6,kg/TJ,0.424867032,kg -166bfac3-b2c7-3dba-a7b3-cccb2500b4ac,SESCO,II.1.1,Rio Negro,AR-R,annual,2017,bioetanol combustion consumption by freight transport,2.7710942399999996,TJ,CH4,10.0,kg/TJ,27.710942399999997,kg -bfc91a06-46ba-3424-a84d-735e9619f107,SESCO,II.1.1,Rio Negro,AR-R,annual,2017,bioetanol combustion consumption by freight transport,2.7710942399999996,TJ,N2O,0.6,kg/TJ,1.6626565439999996,kg -94367a4a-41cc-3227-82ce-3edb06399b77,SESCO,II.1.1,Salta,AR-A,annual,2017,bioetanol combustion consumption by freight transport,0.38345399999999996,TJ,CH4,10.0,kg/TJ,3.8345399999999996,kg -7934f207-c426-3344-ae56-6f334cfddf31,SESCO,II.1.1,Salta,AR-A,annual,2017,bioetanol combustion consumption by freight transport,0.38345399999999996,TJ,N2O,0.6,kg/TJ,0.23007239999999995,kg -7fd31cbb-fd9a-3afd-bfbc-16a50227ec94,SESCO,II.1.1,San Juan,AR-J,annual,2017,bioetanol combustion consumption by freight transport,0.06646536,TJ,CH4,10.0,kg/TJ,0.6646536000000001,kg -5e90a8da-9c49-3410-8b9f-f11d697f67be,SESCO,II.1.1,San Juan,AR-J,annual,2017,bioetanol combustion consumption by freight transport,0.06646536,TJ,N2O,0.6,kg/TJ,0.039879216,kg -1e8de52d-c295-398c-b435-710a109cfff6,SESCO,II.1.1,San Luis,AR-D,annual,2017,bioetanol combustion consumption by freight transport,0.22751603999999997,TJ,CH4,10.0,kg/TJ,2.2751604,kg -6dca664d-736b-3393-a19d-1edaaaa9cfce,SESCO,II.1.1,San Luis,AR-D,annual,2017,bioetanol combustion consumption by freight transport,0.22751603999999997,TJ,N2O,0.6,kg/TJ,0.13650962399999997,kg -1b02fc51-b5c9-3dec-800c-c022cda99711,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2017,bioetanol combustion consumption by freight transport,0.07157807999999999,TJ,CH4,10.0,kg/TJ,0.7157807999999999,kg -d0fba223-cea0-36d4-9789-67228ad5271e,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2017,bioetanol combustion consumption by freight transport,0.07157807999999999,TJ,N2O,0.6,kg/TJ,0.04294684799999999,kg -25075f11-0645-380d-b46a-ead2b1d67513,SESCO,II.1.1,Santa Fe,AR-S,annual,2017,bioetanol combustion consumption by freight transport,3.7655182799999998,TJ,CH4,10.0,kg/TJ,37.6551828,kg -1a21ace4-4e5e-3801-8f20-686008edda51,SESCO,II.1.1,Santa Fe,AR-S,annual,2017,bioetanol combustion consumption by freight transport,3.7655182799999998,TJ,N2O,0.6,kg/TJ,2.259310968,kg -60ba7c71-b213-3e28-9524-534067af159d,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2017,bioetanol combustion consumption by freight transport,0.038345399999999995,TJ,CH4,10.0,kg/TJ,0.38345399999999996,kg -93e8120d-f756-38be-ad77-98e8e7ad89db,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2017,bioetanol combustion consumption by freight transport,0.038345399999999995,TJ,N2O,0.6,kg/TJ,0.023007239999999995,kg -4a0e72ea-9407-3511-bdd6-49ab65ce4a76,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2017,bioetanol combustion consumption by freight transport,0.05879627999999999,TJ,CH4,10.0,kg/TJ,0.5879627999999999,kg -c09435cb-5aaa-3775-a751-53d0584471f0,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2017,bioetanol combustion consumption by freight transport,0.05879627999999999,TJ,N2O,0.6,kg/TJ,0.035277767999999994,kg -a87b81cd-60bc-3eb9-9b6d-d8058c094577,SESCO,II.1.1,Tucuman,AR-T,annual,2017,bioetanol combustion consumption by freight transport,0.29398139999999995,TJ,CH4,10.0,kg/TJ,2.9398139999999993,kg -c9ffe423-3df3-329b-bcc1-fb363463efcc,SESCO,II.1.1,Tucuman,AR-T,annual,2017,bioetanol combustion consumption by freight transport,0.29398139999999995,TJ,N2O,0.6,kg/TJ,0.17638883999999996,kg -6a5210fd-c4e3-3f49-8ceb-f82385ab3266,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,bioetanol combustion consumption by to the public,96.65298918,TJ,CH4,10.0,kg/TJ,966.5298918000001,kg -77e8dde1-1785-312c-9551-3839488073bc,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,bioetanol combustion consumption by to the public,96.65298918,TJ,N2O,0.6,kg/TJ,57.991793508,kg -85c623b2-ccb7-30f7-ae75-669cf990377d,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,bioetanol combustion consumption by to the public,7.04170665,TJ,CH4,10.0,kg/TJ,70.4170665,kg -9ca63c6c-9da8-3d31-b036-f1a7a5c81784,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,bioetanol combustion consumption by to the public,7.04170665,TJ,N2O,0.6,kg/TJ,4.2250239899999995,kg -92eaa4af-3499-3626-85d7-c637cbff0286,SESCO,II.1.1,Chaco,AR-H,annual,2018,bioetanol combustion consumption by to the public,10.13021559,TJ,CH4,10.0,kg/TJ,101.3021559,kg -c3486ba9-67f4-30f4-ae57-59d58c939501,SESCO,II.1.1,Chaco,AR-H,annual,2018,bioetanol combustion consumption by to the public,10.13021559,TJ,N2O,0.6,kg/TJ,6.0781293540000005,kg -91a2e601-c4e3-3318-89c6-484af9f2b7db,SESCO,II.1.1,Corrientes,AR-W,annual,2018,bioetanol combustion consumption by to the public,0.17574974999999998,TJ,CH4,10.0,kg/TJ,1.7574975,kg -f0c958aa-5ad0-3e8d-ac33-a538dc40a615,SESCO,II.1.1,Corrientes,AR-W,annual,2018,bioetanol combustion consumption by to the public,0.17574974999999998,TJ,N2O,0.6,kg/TJ,0.10544984999999998,kg -239a9da0-f7b7-31e1-8e40-ce2d2efa8df6,SESCO,II.1.1,Córdoba,AR-X,annual,2018,bioetanol combustion consumption by to the public,41.95966698,TJ,CH4,10.0,kg/TJ,419.59666980000003,kg -c7c49d70-de8e-368a-94a1-59d74742a297,SESCO,II.1.1,Córdoba,AR-X,annual,2018,bioetanol combustion consumption by to the public,41.95966698,TJ,N2O,0.6,kg/TJ,25.175800188,kg -a05a3e5e-94e2-3fef-ab20-d30d40924ad0,SESCO,II.1.1,Mendoza,AR-M,annual,2018,bioetanol combustion consumption by to the public,25.84927323,TJ,CH4,10.0,kg/TJ,258.4927323,kg -a1347b8f-d97b-32dc-a2f1-7eb361cbd780,SESCO,II.1.1,Mendoza,AR-M,annual,2018,bioetanol combustion consumption by to the public,25.84927323,TJ,N2O,0.6,kg/TJ,15.509563938,kg -0fe6081c-29b2-3a27-badb-49e33ecfdb55,SESCO,II.1.1,Misiones,AR-N,annual,2018,bioetanol combustion consumption by to the public,0.02811996,TJ,CH4,10.0,kg/TJ,0.2811996,kg -682d317a-5115-390b-8a61-a889d0f87fa7,SESCO,II.1.1,Misiones,AR-N,annual,2018,bioetanol combustion consumption by to the public,0.02811996,TJ,N2O,0.6,kg/TJ,0.016871976,kg -5b642497-8e60-3d4b-b14f-e991b25e3ae9,SESCO,II.1.1,San Juan,AR-J,annual,2018,bioetanol combustion consumption by to the public,0.12185315999999999,TJ,CH4,10.0,kg/TJ,1.2185316,kg -90fc5aa6-de0e-3a4c-812a-86869fa250dc,SESCO,II.1.1,San Juan,AR-J,annual,2018,bioetanol combustion consumption by to the public,0.12185315999999999,TJ,N2O,0.6,kg/TJ,0.073111896,kg -e59734aa-3e88-3936-9adf-ecb9e073d4ca,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,bioetanol combustion consumption by to the public,35.07027678,TJ,CH4,10.0,kg/TJ,350.7027678,kg -b9f99236-4f2b-3503-9ec9-ca34866dd700,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,bioetanol combustion consumption by to the public,35.07027678,TJ,N2O,0.6,kg/TJ,21.042166068,kg -2da2a07d-10e7-3998-9be4-2eb8b5584ce2,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2018,bioetanol combustion consumption by to the public,0.03749328,TJ,CH4,10.0,kg/TJ,0.37493279999999995,kg -1e7f7089-161c-3fa8-b8d0-56ea0c94a724,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2018,bioetanol combustion consumption by to the public,0.03749328,TJ,N2O,0.6,kg/TJ,0.022495967999999998,kg -adf1497b-d3db-354c-9ccc-a2cd3f64f342,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,bioetanol combustion consumption by to the public,10.85430456,TJ,CH4,10.0,kg/TJ,108.5430456,kg -0afb1c7d-347d-32c8-83a1-16e05b7cebd1,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,bioetanol combustion consumption by to the public,10.85430456,TJ,N2O,0.6,kg/TJ,6.512582736,kg -bfff0c97-7b37-369e-bbe4-bb8a2c709e1c,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,bioetanol combustion consumption by to the public,1.28180151,TJ,CH4,10.0,kg/TJ,12.8180151,kg -d362f791-8280-399f-aa0f-52deb87e624c,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,bioetanol combustion consumption by to the public,1.28180151,TJ,N2O,0.6,kg/TJ,0.769080906,kg -746c10d1-0775-37b3-bf52-8dbb97734921,SESCO,II.1.1,Chaco,AR-H,annual,2018,bioetanol combustion consumption by to the public,0.7358056199999999,TJ,CH4,10.0,kg/TJ,7.358056199999999,kg -728ad7bd-051d-3fa5-a952-6ece7869597e,SESCO,II.1.1,Chaco,AR-H,annual,2018,bioetanol combustion consumption by to the public,0.7358056199999999,TJ,N2O,0.6,kg/TJ,0.44148337199999993,kg -a3f9fd4d-b76a-34ef-b9b9-6ba0f9c67183,SESCO,II.1.1,Corrientes,AR-W,annual,2018,bioetanol combustion consumption by to the public,0.14294313,TJ,CH4,10.0,kg/TJ,1.4294313,kg -0760c528-1a1c-3812-aaf8-d9f08982d184,SESCO,II.1.1,Corrientes,AR-W,annual,2018,bioetanol combustion consumption by to the public,0.14294313,TJ,N2O,0.6,kg/TJ,0.085765878,kg -0dab5027-f351-3ed0-9e88-c2baedba2851,SESCO,II.1.1,Córdoba,AR-X,annual,2018,bioetanol combustion consumption by to the public,5.63805198,TJ,CH4,10.0,kg/TJ,56.3805198,kg -87d18388-14f3-3fb1-b807-5aa81e96da40,SESCO,II.1.1,Córdoba,AR-X,annual,2018,bioetanol combustion consumption by to the public,5.63805198,TJ,N2O,0.6,kg/TJ,3.382831188,kg -0663c876-a141-3d00-ba1b-3cc2048fa66c,SESCO,II.1.1,Mendoza,AR-M,annual,2018,bioetanol combustion consumption by to the public,2.5823496599999998,TJ,CH4,10.0,kg/TJ,25.8234966,kg -1d0890a6-1bd2-3092-b000-b3f74f9d5084,SESCO,II.1.1,Mendoza,AR-M,annual,2018,bioetanol combustion consumption by to the public,2.5823496599999998,TJ,N2O,0.6,kg/TJ,1.5494097959999997,kg -d47ed572-ed8f-35b7-a91f-c8fa41e596ca,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,bioetanol combustion consumption by to the public,3.29003532,TJ,CH4,10.0,kg/TJ,32.9003532,kg -96d7ee1c-f6b6-3f9c-bf7b-8ee60a20b61a,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,bioetanol combustion consumption by to the public,3.29003532,TJ,N2O,0.6,kg/TJ,1.974021192,kg -43d1c97b-a610-32e2-ba4d-e416501267fb,SESCO,II.5.1,Buenos Aires,AR-B,annual,2018,bioetanol combustion consumption by agriculture machines,0.9185853599999999,TJ,CH4,10.0,kg/TJ,9.1858536,kg -5d6ae77e-383d-38d1-b6e7-933aa4284a64,SESCO,II.5.1,Buenos Aires,AR-B,annual,2018,bioetanol combustion consumption by agriculture machines,0.9185853599999999,TJ,N2O,0.6,kg/TJ,0.5511512159999999,kg -faf12e85-287e-3885-941a-5fefa48eacbe,SESCO,II.5.1,Córdoba,AR-X,annual,2018,bioetanol combustion consumption by agriculture machines,0.13825647,TJ,CH4,10.0,kg/TJ,1.3825646999999999,kg -2deaec26-8ed6-3a11-bf3b-3fa0ee2d60b4,SESCO,II.5.1,Córdoba,AR-X,annual,2018,bioetanol combustion consumption by agriculture machines,0.13825647,TJ,N2O,0.6,kg/TJ,0.08295388199999999,kg -e16cb4c7-9251-3d8d-a994-2c65514fd467,SESCO,II.5.1,Santa Fe,AR-S,annual,2018,bioetanol combustion consumption by agriculture machines,1.06621515,TJ,CH4,10.0,kg/TJ,10.662151499999998,kg -25593ec9-7145-3ae3-8952-c0b386335883,SESCO,II.5.1,Santa Fe,AR-S,annual,2018,bioetanol combustion consumption by agriculture machines,1.06621515,TJ,N2O,0.6,kg/TJ,0.6397290899999999,kg -b2537e57-0122-3b62-8dcd-063ad97f335b,SESCO,II.5.1,Tucuman,AR-T,annual,2018,bioetanol combustion consumption by agriculture machines,0.81547884,TJ,CH4,10.0,kg/TJ,8.154788400000001,kg -dddb2794-076a-3cf3-8fcd-3cd7a41889a1,SESCO,II.5.1,Tucuman,AR-T,annual,2018,bioetanol combustion consumption by agriculture machines,0.81547884,TJ,N2O,0.6,kg/TJ,0.489287304,kg -62945497-338e-3bb4-97db-fe3193963e07,SESCO,II.5.1,Buenos Aires,AR-B,annual,2018,bioetanol combustion consumption by agriculture machines,0.18512306999999997,TJ,CH4,10.0,kg/TJ,1.8512306999999997,kg -f2549024-b137-37f6-9223-31d3e0edd686,SESCO,II.5.1,Buenos Aires,AR-B,annual,2018,bioetanol combustion consumption by agriculture machines,0.18512306999999997,TJ,N2O,0.6,kg/TJ,0.11107384199999998,kg -a425e76b-f7a7-34b2-a310-c3fb0a19c3c7,SESCO,II.5.1,Córdoba,AR-X,annual,2018,bioetanol combustion consumption by agriculture machines,0.06561324,TJ,CH4,10.0,kg/TJ,0.6561324000000001,kg -9b807328-3738-38f3-a830-2fac6c2d78f5,SESCO,II.5.1,Córdoba,AR-X,annual,2018,bioetanol combustion consumption by agriculture machines,0.06561324,TJ,N2O,0.6,kg/TJ,0.039367944,kg -3b07f0f0-a5c0-32b3-8d65-10ebcfffc2a6,SESCO,II.5.1,Santa Fe,AR-S,annual,2018,bioetanol combustion consumption by agriculture machines,0.34681284,TJ,CH4,10.0,kg/TJ,3.4681284000000003,kg -acd73c96-84ad-3109-9961-293b4b0359b1,SESCO,II.5.1,Santa Fe,AR-S,annual,2018,bioetanol combustion consumption by agriculture machines,0.34681284,TJ,N2O,0.6,kg/TJ,0.208087704,kg -f3701c29-d3cb-3dc2-b7d2-34dfad3fbf32,SESCO,II.5.1,Tucuman,AR-T,annual,2018,bioetanol combustion consumption by agriculture machines,0.17340642,TJ,CH4,10.0,kg/TJ,1.7340642000000002,kg -1a16adee-2f88-31c2-8890-906623cd6a8c,SESCO,II.5.1,Tucuman,AR-T,annual,2018,bioetanol combustion consumption by agriculture machines,0.17340642,TJ,N2O,0.6,kg/TJ,0.104043852,kg -b83206bc-8d43-34d8-898a-bb1651b0a638,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,bioetanol combustion consumption by to the public,200.38517829,TJ,CH4,10.0,kg/TJ,2003.8517829,kg -c30a3473-7e02-3c09-a2c9-0013f96f6703,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,bioetanol combustion consumption by to the public,200.38517829,TJ,N2O,0.6,kg/TJ,120.231106974,kg -ac781260-67ba-301a-89e4-0bc0a3ff1c17,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,bioetanol combustion consumption by to the public,62.46146115,TJ,CH4,10.0,kg/TJ,624.6146115,kg -c111fa22-584e-3490-872d-be7cf1cfe846,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,bioetanol combustion consumption by to the public,62.46146115,TJ,N2O,0.6,kg/TJ,37.47687669,kg -78d8f12d-a4ed-357d-aca1-d7089358589d,SESCO,II.1.1,Catamarca,AR-K,annual,2018,bioetanol combustion consumption by to the public,8.94917727,TJ,CH4,10.0,kg/TJ,89.4917727,kg -12ff0c51-cd9a-3e67-a5b7-b6af9c737555,SESCO,II.1.1,Catamarca,AR-K,annual,2018,bioetanol combustion consumption by to the public,8.94917727,TJ,N2O,0.6,kg/TJ,5.369506362,kg -ffe3f535-e19c-397c-a68e-2b753179870b,SESCO,II.1.1,Chaco,AR-H,annual,2018,bioetanol combustion consumption by to the public,6.46056081,TJ,CH4,10.0,kg/TJ,64.6056081,kg -7b512ab5-e037-3dab-8a63-79fe99d1219f,SESCO,II.1.1,Chaco,AR-H,annual,2018,bioetanol combustion consumption by to the public,6.46056081,TJ,N2O,0.6,kg/TJ,3.8763364859999996,kg -3745e62a-2666-3ab3-a659-4a2e80e02c35,SESCO,II.1.1,Chubut,AR-U,annual,2018,bioetanol combustion consumption by to the public,6.1981078499999995,TJ,CH4,10.0,kg/TJ,61.981078499999995,kg -6786e209-a677-3535-be60-b6125f003190,SESCO,II.1.1,Chubut,AR-U,annual,2018,bioetanol combustion consumption by to the public,6.1981078499999995,TJ,N2O,0.6,kg/TJ,3.7188647099999996,kg -aef99baf-8aea-35cb-86aa-9ba0e48bfa7d,SESCO,II.1.1,Corrientes,AR-W,annual,2018,bioetanol combustion consumption by to the public,11.770546589999999,TJ,CH4,10.0,kg/TJ,117.70546589999998,kg -cf80a874-6486-38f4-b92b-bc1fbd50fc8f,SESCO,II.1.1,Corrientes,AR-W,annual,2018,bioetanol combustion consumption by to the public,11.770546589999999,TJ,N2O,0.6,kg/TJ,7.062327953999999,kg -fbea8555-f7c9-3d5c-802e-5b5162094f63,SESCO,II.1.1,Córdoba,AR-X,annual,2018,bioetanol combustion consumption by to the public,57.98335752,TJ,CH4,10.0,kg/TJ,579.8335752,kg -3d8d488e-13e9-3e26-92a4-d8e079b8320a,SESCO,II.1.1,Córdoba,AR-X,annual,2018,bioetanol combustion consumption by to the public,57.98335752,TJ,N2O,0.6,kg/TJ,34.790014512,kg -2f35e275-6223-3ad9-a79a-d4f443869c03,SESCO,II.1.1,Entre Rios,AR-E,annual,2018,bioetanol combustion consumption by to the public,24.28627212,TJ,CH4,10.0,kg/TJ,242.8627212,kg -cd3fd3c2-8f3f-3860-a5c2-d16a73b613ae,SESCO,II.1.1,Entre Rios,AR-E,annual,2018,bioetanol combustion consumption by to the public,24.28627212,TJ,N2O,0.6,kg/TJ,14.571763271999998,kg -af6e69a8-dd97-3390-8147-10369d61d5d3,SESCO,II.1.1,Formosa,AR-P,annual,2018,bioetanol combustion consumption by to the public,12.84379173,TJ,CH4,10.0,kg/TJ,128.43791729999998,kg -b29a9719-f700-3132-8802-ebf800210061,SESCO,II.1.1,Formosa,AR-P,annual,2018,bioetanol combustion consumption by to the public,12.84379173,TJ,N2O,0.6,kg/TJ,7.706275037999999,kg -1498c22d-7492-313b-9950-921ecb495959,SESCO,II.1.1,Jujuy,AR-Y,annual,2018,bioetanol combustion consumption by to the public,3.52671165,TJ,CH4,10.0,kg/TJ,35.2671165,kg -020d4492-d274-32c0-8a6a-8678c7112895,SESCO,II.1.1,Jujuy,AR-Y,annual,2018,bioetanol combustion consumption by to the public,3.52671165,TJ,N2O,0.6,kg/TJ,2.11602699,kg -94785f0b-201e-3895-82b9-9cf5714c16d2,SESCO,II.1.1,La Pampa,AR-L,annual,2018,bioetanol combustion consumption by to the public,3.11897223,TJ,CH4,10.0,kg/TJ,31.1897223,kg -fefa3cfc-aac0-3d0c-90d3-64f75f6e45bc,SESCO,II.1.1,La Pampa,AR-L,annual,2018,bioetanol combustion consumption by to the public,3.11897223,TJ,N2O,0.6,kg/TJ,1.8713833379999998,kg -42321528-35f6-3a1a-aebb-89cebf3fb4be,SESCO,II.1.1,La Rioja,AR-F,annual,2018,bioetanol combustion consumption by to the public,2.50033311,TJ,CH4,10.0,kg/TJ,25.0033311,kg -2f9e7149-b0f2-3005-bea0-2ca4abe1cd79,SESCO,II.1.1,La Rioja,AR-F,annual,2018,bioetanol combustion consumption by to the public,2.50033311,TJ,N2O,0.6,kg/TJ,1.500199866,kg -231e72b9-9830-37a1-bf6f-6372bc318a3d,SESCO,II.1.1,Mendoza,AR-M,annual,2018,bioetanol combustion consumption by to the public,8.07745851,TJ,CH4,10.0,kg/TJ,80.7745851,kg -c916debd-5226-3c66-8689-1c9a4422dd3c,SESCO,II.1.1,Mendoza,AR-M,annual,2018,bioetanol combustion consumption by to the public,8.07745851,TJ,N2O,0.6,kg/TJ,4.846475106,kg -8f03cb4b-d959-3bdf-8444-257ab84056a1,SESCO,II.1.1,Misiones,AR-N,annual,2018,bioetanol combustion consumption by to the public,15.62766777,TJ,CH4,10.0,kg/TJ,156.2766777,kg -f7798f0f-a634-3934-94b1-769be9dee793,SESCO,II.1.1,Misiones,AR-N,annual,2018,bioetanol combustion consumption by to the public,15.62766777,TJ,N2O,0.6,kg/TJ,9.376600662,kg -21f42a80-abca-3821-8927-752df04e95e4,SESCO,II.1.1,Neuquén,AR-Q,annual,2018,bioetanol combustion consumption by to the public,7.21042641,TJ,CH4,10.0,kg/TJ,72.1042641,kg -29f04613-3367-348b-be72-dc70528c29e3,SESCO,II.1.1,Neuquén,AR-Q,annual,2018,bioetanol combustion consumption by to the public,7.21042641,TJ,N2O,0.6,kg/TJ,4.326255846,kg -24e4c8d1-4b38-39f6-9fed-3e53fc99eda7,SESCO,II.1.1,Rio Negro,AR-R,annual,2018,bioetanol combustion consumption by to the public,12.909404969999999,TJ,CH4,10.0,kg/TJ,129.0940497,kg -0cedc92f-0057-364a-85c0-fe83eefddf83,SESCO,II.1.1,Rio Negro,AR-R,annual,2018,bioetanol combustion consumption by to the public,12.909404969999999,TJ,N2O,0.6,kg/TJ,7.745642981999999,kg -ad11ab5f-bcbc-396b-99f7-b26b4b287b0d,SESCO,II.1.1,Salta,AR-A,annual,2018,bioetanol combustion consumption by to the public,2.3901966,TJ,CH4,10.0,kg/TJ,23.901965999999998,kg -008eca19-d743-3e9c-a4b4-a2515e8abd28,SESCO,II.1.1,Salta,AR-A,annual,2018,bioetanol combustion consumption by to the public,2.3901966,TJ,N2O,0.6,kg/TJ,1.4341179599999998,kg -5a2c2bd6-871c-371a-b4c9-0f3bfee603e5,SESCO,II.1.1,San Juan,AR-J,annual,2018,bioetanol combustion consumption by to the public,4.91396301,TJ,CH4,10.0,kg/TJ,49.1396301,kg -d1242bb6-c6dc-3586-8cea-78d3af4bbaff,SESCO,II.1.1,San Juan,AR-J,annual,2018,bioetanol combustion consumption by to the public,4.91396301,TJ,N2O,0.6,kg/TJ,2.948377806,kg -fce0c9a7-94ad-3e34-b108-f290187f2834,SESCO,II.1.1,San Luis,AR-D,annual,2018,bioetanol combustion consumption by to the public,11.93457969,TJ,CH4,10.0,kg/TJ,119.3457969,kg -59967695-d1e3-30b4-8562-6be005479872,SESCO,II.1.1,San Luis,AR-D,annual,2018,bioetanol combustion consumption by to the public,11.93457969,TJ,N2O,0.6,kg/TJ,7.160747814,kg -26321f09-aade-3568-ada0-e67b89a73d19,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,bioetanol combustion consumption by to the public,48.58426089,TJ,CH4,10.0,kg/TJ,485.8426089,kg -e77af01e-9d2b-386e-a76a-af391865e378,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,bioetanol combustion consumption by to the public,48.58426089,TJ,N2O,0.6,kg/TJ,29.150556534,kg -d6726989-85a3-358d-8502-7c04dec39e3d,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2018,bioetanol combustion consumption by to the public,6.48633744,TJ,CH4,10.0,kg/TJ,64.8633744,kg -66194dd2-5930-3c1c-a245-9720e48e04f7,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2018,bioetanol combustion consumption by to the public,6.48633744,TJ,N2O,0.6,kg/TJ,3.8918024639999995,kg -91367f5b-71bd-3330-b668-7887a34e890b,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2018,bioetanol combustion consumption by to the public,2.9971190699999997,TJ,CH4,10.0,kg/TJ,29.971190699999998,kg -26b36ff9-f3a8-3338-9bd0-44ad32ceeb8a,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2018,bioetanol combustion consumption by to the public,2.9971190699999997,TJ,N2O,0.6,kg/TJ,1.7982714419999997,kg -8c53fcf0-e1a9-332a-9673-ab29093ad175,SESCO,II.1.1,Tucuman,AR-T,annual,2018,bioetanol combustion consumption by to the public,0.86468877,TJ,CH4,10.0,kg/TJ,8.6468877,kg -3ef05556-0e87-364b-82d9-1fa84d1952fd,SESCO,II.1.1,Tucuman,AR-T,annual,2018,bioetanol combustion consumption by to the public,0.86468877,TJ,N2O,0.6,kg/TJ,0.518813262,kg -a89b6996-f58e-3d22-985a-59ab31d7e146,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,bioetanol combustion consumption by to the public,60.450884009999996,TJ,CH4,10.0,kg/TJ,604.5088400999999,kg -719387c3-69ca-3c5d-ae57-62eb85ff8e32,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,bioetanol combustion consumption by to the public,60.450884009999996,TJ,N2O,0.6,kg/TJ,36.270530406,kg -0a1c7563-4bc7-3cd2-bda4-ef1ec552c7f1,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,bioetanol combustion consumption by to the public,25.99221636,TJ,CH4,10.0,kg/TJ,259.9221636,kg -41bbff00-449f-3a2d-87c1-051bfbe534eb,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,bioetanol combustion consumption by to the public,25.99221636,TJ,N2O,0.6,kg/TJ,15.595329816,kg -b67dfa3b-8ad6-3ab1-a074-e15ecda9afce,SESCO,II.1.1,Catamarca,AR-K,annual,2018,bioetanol combustion consumption by to the public,2.69717283,TJ,CH4,10.0,kg/TJ,26.9717283,kg -d3faf5d7-66d9-329e-83d5-26ab0a373ae9,SESCO,II.1.1,Catamarca,AR-K,annual,2018,bioetanol combustion consumption by to the public,2.69717283,TJ,N2O,0.6,kg/TJ,1.6183036979999998,kg -2f54a633-5fcc-309a-a7d3-e5b6b305aaa6,SESCO,II.1.1,Chaco,AR-H,annual,2018,bioetanol combustion consumption by to the public,1.38490803,TJ,CH4,10.0,kg/TJ,13.8490803,kg -e2d0b319-2bbd-3421-a866-5571444194cb,SESCO,II.1.1,Chaco,AR-H,annual,2018,bioetanol combustion consumption by to the public,1.38490803,TJ,N2O,0.6,kg/TJ,0.830944818,kg -72fa999d-8631-3876-9e0b-aa362368ea6a,SESCO,II.1.1,Chubut,AR-U,annual,2018,bioetanol combustion consumption by to the public,1.60049439,TJ,CH4,10.0,kg/TJ,16.0049439,kg -446469b5-2691-34a0-8426-6c49f8ad8841,SESCO,II.1.1,Chubut,AR-U,annual,2018,bioetanol combustion consumption by to the public,1.60049439,TJ,N2O,0.6,kg/TJ,0.9602966339999999,kg -38557217-c178-3563-a812-e4bb1755ab29,SESCO,II.1.1,Corrientes,AR-W,annual,2018,bioetanol combustion consumption by to the public,3.4118884799999996,TJ,CH4,10.0,kg/TJ,34.1188848,kg -06d951ee-44cb-322c-a9cd-6730990f7eb1,SESCO,II.1.1,Corrientes,AR-W,annual,2018,bioetanol combustion consumption by to the public,3.4118884799999996,TJ,N2O,0.6,kg/TJ,2.047133088,kg -40039437-47aa-3ea4-9847-63312ec62f68,SESCO,II.1.1,Córdoba,AR-X,annual,2018,bioetanol combustion consumption by to the public,15.14025513,TJ,CH4,10.0,kg/TJ,151.4025513,kg -3ffe4b0e-6798-3c8b-a8f1-9d3c6cf5b860,SESCO,II.1.1,Córdoba,AR-X,annual,2018,bioetanol combustion consumption by to the public,15.14025513,TJ,N2O,0.6,kg/TJ,9.084153078,kg -578b042f-67d2-3dc9-9a72-0c7ef1f43843,SESCO,II.1.1,Entre Rios,AR-E,annual,2018,bioetanol combustion consumption by to the public,7.48225269,TJ,CH4,10.0,kg/TJ,74.8225269,kg -41136533-f8e2-3a92-99c8-8cfe782f0a79,SESCO,II.1.1,Entre Rios,AR-E,annual,2018,bioetanol combustion consumption by to the public,7.48225269,TJ,N2O,0.6,kg/TJ,4.489351614,kg -5d5946ef-cdbe-3de5-ad22-10db12f25e21,SESCO,II.1.1,Formosa,AR-P,annual,2018,bioetanol combustion consumption by to the public,3.19864545,TJ,CH4,10.0,kg/TJ,31.9864545,kg -53848ccc-232f-30c1-9555-270cf739e123,SESCO,II.1.1,Formosa,AR-P,annual,2018,bioetanol combustion consumption by to the public,3.19864545,TJ,N2O,0.6,kg/TJ,1.91918727,kg -a97b49ce-a8d2-3b21-bc6c-56ed4c883134,SESCO,II.1.1,Jujuy,AR-Y,annual,2018,bioetanol combustion consumption by to the public,0.8201655,TJ,CH4,10.0,kg/TJ,8.201655,kg -0eed65cb-6199-3ebc-bf95-8d402ff5d628,SESCO,II.1.1,Jujuy,AR-Y,annual,2018,bioetanol combustion consumption by to the public,0.8201655,TJ,N2O,0.6,kg/TJ,0.49209929999999996,kg -4089b326-3f0c-3510-abdb-7f87223cc3b9,SESCO,II.1.1,La Pampa,AR-L,annual,2018,bioetanol combustion consumption by to the public,1.34741475,TJ,CH4,10.0,kg/TJ,13.4741475,kg -8ab490e9-48e6-3af2-989f-f7ac4f018ae7,SESCO,II.1.1,La Pampa,AR-L,annual,2018,bioetanol combustion consumption by to the public,1.34741475,TJ,N2O,0.6,kg/TJ,0.80844885,kg -490d843d-2116-3a40-9518-62a4533aa66e,SESCO,II.1.1,La Rioja,AR-F,annual,2018,bioetanol combustion consumption by to the public,0.53427924,TJ,CH4,10.0,kg/TJ,5.3427924,kg -4939e90b-00c4-3846-9429-857f8d6dcbca,SESCO,II.1.1,La Rioja,AR-F,annual,2018,bioetanol combustion consumption by to the public,0.53427924,TJ,N2O,0.6,kg/TJ,0.32056754400000004,kg -fa72c954-1180-3478-b5ef-f71b4be950f1,SESCO,II.1.1,Mendoza,AR-M,annual,2018,bioetanol combustion consumption by to the public,3.1634955,TJ,CH4,10.0,kg/TJ,31.634954999999998,kg -6446e987-f344-3cf0-bf60-6c9215124bf8,SESCO,II.1.1,Mendoza,AR-M,annual,2018,bioetanol combustion consumption by to the public,3.1634955,TJ,N2O,0.6,kg/TJ,1.8980972999999999,kg -a92b4834-789d-3b2e-9cc5-a840737a8f25,SESCO,II.1.1,Misiones,AR-N,annual,2018,bioetanol combustion consumption by to the public,2.34801666,TJ,CH4,10.0,kg/TJ,23.480166599999997,kg -09eb2b8d-9e3b-3fc6-b229-cb4cd0428e8a,SESCO,II.1.1,Misiones,AR-N,annual,2018,bioetanol combustion consumption by to the public,2.34801666,TJ,N2O,0.6,kg/TJ,1.4088099959999998,kg -3c08e704-221c-31a9-9bdd-dd21ee4f9654,SESCO,II.1.1,Neuquén,AR-Q,annual,2018,bioetanol combustion consumption by to the public,4.07270754,TJ,CH4,10.0,kg/TJ,40.7270754,kg -83686a7b-9555-36d1-96cf-196e24569818,SESCO,II.1.1,Neuquén,AR-Q,annual,2018,bioetanol combustion consumption by to the public,4.07270754,TJ,N2O,0.6,kg/TJ,2.4436245239999996,kg -2fcb8a36-f761-3157-98ef-e521462c5996,SESCO,II.1.1,Rio Negro,AR-R,annual,2018,bioetanol combustion consumption by to the public,5.36153904,TJ,CH4,10.0,kg/TJ,53.6153904,kg -1a28d25d-65a9-3a43-97e4-521f866fc2f3,SESCO,II.1.1,Rio Negro,AR-R,annual,2018,bioetanol combustion consumption by to the public,5.36153904,TJ,N2O,0.6,kg/TJ,3.216923424,kg -2f23e500-e596-3a71-97fe-91b3a2c19f60,SESCO,II.1.1,Salta,AR-A,annual,2018,bioetanol combustion consumption by to the public,0.31634955,TJ,CH4,10.0,kg/TJ,3.1634955,kg -db6e1108-8c14-30fe-baa1-6dc775cb73df,SESCO,II.1.1,Salta,AR-A,annual,2018,bioetanol combustion consumption by to the public,0.31634955,TJ,N2O,0.6,kg/TJ,0.18980972999999998,kg -142533cb-d2f6-31d3-85f6-daaab99ab419,SESCO,II.1.1,San Juan,AR-J,annual,2018,bioetanol combustion consumption by to the public,1.4036546699999999,TJ,CH4,10.0,kg/TJ,14.036546699999999,kg -ff72fed4-7f3a-38e5-a7df-8794015585e5,SESCO,II.1.1,San Juan,AR-J,annual,2018,bioetanol combustion consumption by to the public,1.4036546699999999,TJ,N2O,0.6,kg/TJ,0.8421928019999999,kg -a2b2ea4b-e414-3234-8264-74e29f657395,SESCO,II.1.1,San Luis,AR-D,annual,2018,bioetanol combustion consumption by to the public,2.9572824599999996,TJ,CH4,10.0,kg/TJ,29.572824599999997,kg -0409f36a-ac90-361f-bfae-6657a1ece87f,SESCO,II.1.1,San Luis,AR-D,annual,2018,bioetanol combustion consumption by to the public,2.9572824599999996,TJ,N2O,0.6,kg/TJ,1.7743694759999997,kg -63720eb0-29f2-3882-87fc-1b375fa764bf,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,bioetanol combustion consumption by to the public,14.235729749999999,TJ,CH4,10.0,kg/TJ,142.3572975,kg -34f330b7-b142-39dd-b652-9fa2c12a62c8,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,bioetanol combustion consumption by to the public,14.235729749999999,TJ,N2O,0.6,kg/TJ,8.54143785,kg -2522bc5e-f32a-3a4a-b62e-c51aabd6b8c3,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2018,bioetanol combustion consumption by to the public,2.2355368199999996,TJ,CH4,10.0,kg/TJ,22.355368199999997,kg -1eb62e0d-af47-3a51-a57b-03621f621da7,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2018,bioetanol combustion consumption by to the public,2.2355368199999996,TJ,N2O,0.6,kg/TJ,1.3413220919999997,kg -df17fc25-b9c4-36a9-b757-3e145ed0572b,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2018,bioetanol combustion consumption by to the public,1.05215517,TJ,CH4,10.0,kg/TJ,10.5215517,kg -c2fd1112-507e-3418-b288-24e2ef996cfc,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2018,bioetanol combustion consumption by to the public,1.05215517,TJ,N2O,0.6,kg/TJ,0.631293102,kg -24080f04-55a4-39e6-b7a3-8161d792d478,SESCO,II.1.1,Tucuman,AR-T,annual,2018,bioetanol combustion consumption by to the public,0.48272598,TJ,CH4,10.0,kg/TJ,4.8272598,kg -26acbaa7-c2f5-3afe-8fd4-278683478cca,SESCO,II.1.1,Tucuman,AR-T,annual,2018,bioetanol combustion consumption by to the public,0.48272598,TJ,N2O,0.6,kg/TJ,0.289635588,kg -6bec8ec0-6b7e-3abb-89c9-4367e79ab751,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,bioetanol combustion consumption by freight transport,0.17340642,TJ,CH4,10.0,kg/TJ,1.7340642000000002,kg -e38a7459-630e-387a-acc8-69d70f46214e,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,bioetanol combustion consumption by freight transport,0.17340642,TJ,N2O,0.6,kg/TJ,0.104043852,kg -a2382a37-fc73-3c15-b756-6e8e303679e2,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,bioetanol combustion consumption by freight transport,0.0702999,TJ,CH4,10.0,kg/TJ,0.7029989999999999,kg -37219cb2-2af4-3af7-8fdf-2c7729be688b,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,bioetanol combustion consumption by freight transport,0.0702999,TJ,N2O,0.6,kg/TJ,0.04217994,kg -d982a95b-62cc-3466-93d3-2ec432b3f6c7,SESCO,II.1.1,Córdoba,AR-X,annual,2018,bioetanol combustion consumption by freight transport,0.03280662,TJ,CH4,10.0,kg/TJ,0.32806620000000003,kg -79d82f73-840d-35c5-bce9-72c9919987a7,SESCO,II.1.1,Córdoba,AR-X,annual,2018,bioetanol combustion consumption by freight transport,0.03280662,TJ,N2O,0.6,kg/TJ,0.019683972,kg -e6ac2cc4-217e-3509-b48d-f5f8f1535de9,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,bioetanol combustion consumption by freight transport,0.00937332,TJ,CH4,10.0,kg/TJ,0.09373319999999999,kg -d73f31c2-f003-302d-8396-2f2a4e8b794d,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,bioetanol combustion consumption by freight transport,0.00937332,TJ,N2O,0.6,kg/TJ,0.0056239919999999995,kg -5fa59e99-3445-3e6c-8153-1f0a95ec3fbc,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,bioetanol combustion consumption by freight transport,0.14528646,TJ,CH4,10.0,kg/TJ,1.4528646,kg -6e5a5794-cc65-3bd7-891f-e1d6e6a755e0,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,bioetanol combustion consumption by freight transport,0.14528646,TJ,N2O,0.6,kg/TJ,0.087171876,kg -f73f88bd-1764-3651-86c0-dea2a1312eb9,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,bioetanol combustion consumption by freight transport,0.07264323,TJ,CH4,10.0,kg/TJ,0.7264323,kg -ef79a026-c82e-3378-961f-2abbadf12c54,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,bioetanol combustion consumption by freight transport,0.07264323,TJ,N2O,0.6,kg/TJ,0.043585938,kg -7f5a10bc-ad3e-359a-90f7-730389b49036,SESCO,II.1.1,Córdoba,AR-X,annual,2018,bioetanol combustion consumption by freight transport,0.03514995,TJ,CH4,10.0,kg/TJ,0.35149949999999996,kg -29308c39-ce0f-3cbd-af67-f9d7559605ac,SESCO,II.1.1,Córdoba,AR-X,annual,2018,bioetanol combustion consumption by freight transport,0.03514995,TJ,N2O,0.6,kg/TJ,0.02108997,kg -d64dedef-3b1f-3afc-a340-4c2efd94c710,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,bioetanol combustion consumption by freight transport,0.0234333,TJ,CH4,10.0,kg/TJ,0.234333,kg -fd4cda31-0db8-340d-9bba-3c102a1a2fa8,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,bioetanol combustion consumption by freight transport,0.0234333,TJ,N2O,0.6,kg/TJ,0.01405998,kg -f8ffa291-8e2e-38c5-9f42-877fe036acab,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,bioetanol combustion consumption by public passenger transport,0.14528646,TJ,CH4,10.0,kg/TJ,1.4528646,kg -d18602e8-4573-307f-afc6-472d65b2292c,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,bioetanol combustion consumption by public passenger transport,0.14528646,TJ,N2O,0.6,kg/TJ,0.087171876,kg -0f45fe3f-b1e8-31c2-ab7c-53b07906e758,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,bioetanol combustion consumption by public passenger transport,0.01405998,TJ,CH4,10.0,kg/TJ,0.1405998,kg -0a09637b-ea40-3d0f-bd6b-39775a7b6018,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,bioetanol combustion consumption by public passenger transport,0.01405998,TJ,N2O,0.6,kg/TJ,0.008435988,kg -a3f8138d-cf2e-3c9b-9ef5-5fe285f9a5bf,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,bioetanol combustion consumption by to the public,24.301301769953998,TJ,CH4,10.0,kg/TJ,243.01301769953997,kg -555e0007-9a13-352d-9e58-398ba10080a1,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,bioetanol combustion consumption by to the public,24.301301769953998,TJ,N2O,0.6,kg/TJ,14.580781061972399,kg -6cdb070f-a18d-3660-ae97-7d54f12db0bd,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,bioetanol combustion consumption by to the public,2.181106419426,TJ,CH4,10.0,kg/TJ,21.81106419426,kg -85c155fb-91ba-3848-a2d8-5266261f6028,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,bioetanol combustion consumption by to the public,2.181106419426,TJ,N2O,0.6,kg/TJ,1.3086638516556,kg -7f029ea9-5d7d-3649-ba75-9e2b995eb23d,SESCO,II.1.1,Catamarca,AR-K,annual,2018,bioetanol combustion consumption by to the public,2.5045009567379997,TJ,CH4,10.0,kg/TJ,25.045009567379996,kg -6caffebf-feb0-34b0-9120-21c2c9078f12,SESCO,II.1.1,Catamarca,AR-K,annual,2018,bioetanol combustion consumption by to the public,2.5045009567379997,TJ,N2O,0.6,kg/TJ,1.5027005740427997,kg -30110ecf-f33d-3874-87bc-a70ebb8f120b,SESCO,II.1.1,Chaco,AR-H,annual,2018,bioetanol combustion consumption by to the public,2.7695810240009995,TJ,CH4,10.0,kg/TJ,27.695810240009994,kg -08a77787-0b19-3a58-ae8f-96f4e6a2595a,SESCO,II.1.1,Chaco,AR-H,annual,2018,bioetanol combustion consumption by to the public,2.7695810240009995,TJ,N2O,0.6,kg/TJ,1.6617486144005997,kg -0e0fe406-79fb-3afc-b491-5664e1b9e1aa,SESCO,II.1.1,Corrientes,AR-W,annual,2018,bioetanol combustion consumption by to the public,2.9573314355969997,TJ,CH4,10.0,kg/TJ,29.57331435597,kg -94162056-3ff0-3b9b-a226-00087da93cf1,SESCO,II.1.1,Corrientes,AR-W,annual,2018,bioetanol combustion consumption by to the public,2.9573314355969997,TJ,N2O,0.6,kg/TJ,1.7743988613581998,kg -c1078c2d-3bdf-33bc-8404-ac0d637e10b0,SESCO,II.1.1,Córdoba,AR-X,annual,2018,bioetanol combustion consumption by to the public,11.948979687182998,TJ,CH4,10.0,kg/TJ,119.48979687182998,kg -dac5cace-e1e4-33ef-b758-b581463968e2,SESCO,II.1.1,Córdoba,AR-X,annual,2018,bioetanol combustion consumption by to the public,11.948979687182998,TJ,N2O,0.6,kg/TJ,7.1693878123097985,kg -b0ff00b0-e761-32a4-95d0-c60f84cff28f,SESCO,II.1.1,Entre Rios,AR-E,annual,2018,bioetanol combustion consumption by to the public,3.728636864766,TJ,CH4,10.0,kg/TJ,37.28636864766,kg -d477b8fd-3750-389e-b1c1-3e77a413ef70,SESCO,II.1.1,Entre Rios,AR-E,annual,2018,bioetanol combustion consumption by to the public,3.728636864766,TJ,N2O,0.6,kg/TJ,2.2371821188595997,kg -b8f18412-ae50-3387-bd2f-1af36996fe2a,SESCO,II.1.1,Jujuy,AR-Y,annual,2018,bioetanol combustion consumption by to the public,0.9294366182309999,TJ,CH4,10.0,kg/TJ,9.294366182309998,kg -5afeaab9-9f45-3f06-a3eb-f9f7f08ac4ce,SESCO,II.1.1,Jujuy,AR-Y,annual,2018,bioetanol combustion consumption by to the public,0.9294366182309999,TJ,N2O,0.6,kg/TJ,0.5576619709385999,kg -daa6faee-727e-3ab8-a7b5-de3284b830f4,SESCO,II.1.1,La Rioja,AR-F,annual,2018,bioetanol combustion consumption by to the public,0.5337590207399999,TJ,CH4,10.0,kg/TJ,5.337590207399999,kg -baf36bb7-2c40-30ab-b8c8-195707f72771,SESCO,II.1.1,La Rioja,AR-F,annual,2018,bioetanol combustion consumption by to the public,0.5337590207399999,TJ,N2O,0.6,kg/TJ,0.32025541244399996,kg -3b3fd833-acf7-3c9c-a66c-4aa7522f7d4b,SESCO,II.1.1,Mendoza,AR-M,annual,2018,bioetanol combustion consumption by to the public,2.881464252183,TJ,CH4,10.0,kg/TJ,28.814642521830002,kg -eb256ece-1308-3ef0-a4c7-4513c07dcdf3,SESCO,II.1.1,Mendoza,AR-M,annual,2018,bioetanol combustion consumption by to the public,2.881464252183,TJ,N2O,0.6,kg/TJ,1.7288785513098,kg -59cdc096-5e20-38e0-975d-a4c8471aabf0,SESCO,II.1.1,Misiones,AR-N,annual,2018,bioetanol combustion consumption by to the public,3.75790927446,TJ,CH4,10.0,kg/TJ,37.5790927446,kg -3ece69d6-3dee-3663-9e5b-ad0eac6c2efc,SESCO,II.1.1,Misiones,AR-N,annual,2018,bioetanol combustion consumption by to the public,3.75790927446,TJ,N2O,0.6,kg/TJ,2.254745564676,kg -afc68073-129a-36a2-8fe7-39a672b7a0ff,SESCO,II.1.1,San Juan,AR-J,annual,2018,bioetanol combustion consumption by to the public,3.3957016936919997,TJ,CH4,10.0,kg/TJ,33.95701693692,kg -f8f5fca4-dcf9-3c50-a558-5a6613550f16,SESCO,II.1.1,San Juan,AR-J,annual,2018,bioetanol combustion consumption by to the public,3.3957016936919997,TJ,N2O,0.6,kg/TJ,2.0374210162151996,kg -7419a174-dfa1-31b8-a440-1775c6bda240,SESCO,II.1.1,San Luis,AR-D,annual,2018,bioetanol combustion consumption by to the public,2.628141374528999,TJ,CH4,10.0,kg/TJ,26.281413745289992,kg -d6ffee56-fbef-33a8-a392-67342680ce64,SESCO,II.1.1,San Luis,AR-D,annual,2018,bioetanol combustion consumption by to the public,2.628141374528999,TJ,N2O,0.6,kg/TJ,1.5768848247173994,kg -27737ae4-22a2-3662-aa5e-8fdead789713,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,bioetanol combustion consumption by to the public,12.078810714167998,TJ,CH4,10.0,kg/TJ,120.78810714167999,kg -7c54cb4f-4786-334f-8168-9b2e7e50a044,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,bioetanol combustion consumption by to the public,12.078810714167998,TJ,N2O,0.6,kg/TJ,7.247286428500798,kg -4d1ddcad-16f9-39a7-842a-04c00f407c91,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2018,bioetanol combustion consumption by to the public,2.3345551664819997,TJ,CH4,10.0,kg/TJ,23.345551664819997,kg -b7a56710-7690-35b0-a5a3-1866fea18e2d,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2018,bioetanol combustion consumption by to the public,2.3345551664819997,TJ,N2O,0.6,kg/TJ,1.4007330998891998,kg -9814370d-a830-374a-9f93-cef3fbad66b0,SESCO,II.1.1,Tucuman,AR-T,annual,2018,bioetanol combustion consumption by to the public,2.483558616528,TJ,CH4,10.0,kg/TJ,24.835586165280002,kg -841d9f04-7068-3f6d-8548-42e704ac5c54,SESCO,II.1.1,Tucuman,AR-T,annual,2018,bioetanol combustion consumption by to the public,2.483558616528,TJ,N2O,0.6,kg/TJ,1.4901351699168,kg -c1478e8a-d7ab-3f30-a5ea-9378f3db1319,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,bioetanol combustion consumption by to the public,4.999357001529,TJ,CH4,10.0,kg/TJ,49.99357001529,kg -681bb59f-053f-3de7-b892-a0d02350d529,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,bioetanol combustion consumption by to the public,4.999357001529,TJ,N2O,0.6,kg/TJ,2.9996142009174,kg -1b9e9749-5c3a-302a-a5d7-4dbc25e03cc6,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,bioetanol combustion consumption by to the public,0.8328396346379999,TJ,CH4,10.0,kg/TJ,8.32839634638,kg -c39bc235-6ae1-3f05-a06e-639dd77a8500,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,bioetanol combustion consumption by to the public,0.8328396346379999,TJ,N2O,0.6,kg/TJ,0.4997037807827999,kg -673b8af7-f428-3cf9-a033-5d034e832b7f,SESCO,II.1.1,Catamarca,AR-K,annual,2018,bioetanol combustion consumption by to the public,0.337475841615,TJ,CH4,10.0,kg/TJ,3.3747584161499997,kg -94aba1ba-4be1-346b-8541-b06a2c942843,SESCO,II.1.1,Catamarca,AR-K,annual,2018,bioetanol combustion consumption by to the public,0.337475841615,TJ,N2O,0.6,kg/TJ,0.202485504969,kg -6920e21c-0b2d-3d7d-a793-0ad4169f22dd,SESCO,II.1.1,Chaco,AR-H,annual,2018,bioetanol combustion consumption by to the public,0.33800988652200004,TJ,CH4,10.0,kg/TJ,3.3800988652200004,kg -9cac5d45-9e3c-3682-b6b6-5555008d84a6,SESCO,II.1.1,Chaco,AR-H,annual,2018,bioetanol combustion consumption by to the public,0.33800988652200004,TJ,N2O,0.6,kg/TJ,0.2028059319132,kg -708dc0e7-4d5f-3499-89a9-ed2221d69333,SESCO,II.1.1,Corrientes,AR-W,annual,2018,bioetanol combustion consumption by to the public,0.94749970887,TJ,CH4,10.0,kg/TJ,9.4749970887,kg -1a90cc18-f0b0-3250-90b9-06f8dd5ce330,SESCO,II.1.1,Corrientes,AR-W,annual,2018,bioetanol combustion consumption by to the public,0.94749970887,TJ,N2O,0.6,kg/TJ,0.5684998253219999,kg -369ea48f-3640-3d46-a845-005c2c938369,SESCO,II.1.1,Córdoba,AR-X,annual,2018,bioetanol combustion consumption by to the public,2.7814385081340003,TJ,CH4,10.0,kg/TJ,27.814385081340003,kg -6c98092f-e781-3ae7-987f-0fb7f45c561c,SESCO,II.1.1,Córdoba,AR-X,annual,2018,bioetanol combustion consumption by to the public,2.7814385081340003,TJ,N2O,0.6,kg/TJ,1.6688631048804001,kg -a86912d6-e2c4-3aaa-ac78-1806647d271a,SESCO,II.1.1,Entre Rios,AR-E,annual,2018,bioetanol combustion consumption by to the public,0.787946352831,TJ,CH4,10.0,kg/TJ,7.87946352831,kg -7377d7e6-7d5d-3c52-ba9c-9c3d72913738,SESCO,II.1.1,Entre Rios,AR-E,annual,2018,bioetanol combustion consumption by to the public,0.787946352831,TJ,N2O,0.6,kg/TJ,0.4727678116986,kg -48a81e83-6208-387b-9335-370f457e2f22,SESCO,II.1.1,Jujuy,AR-Y,annual,2018,bioetanol combustion consumption by to the public,0.011585189187,TJ,CH4,10.0,kg/TJ,0.11585189187,kg -3b45a525-b944-3985-89cf-80ddba678262,SESCO,II.1.1,Jujuy,AR-Y,annual,2018,bioetanol combustion consumption by to the public,0.011585189187,TJ,N2O,0.6,kg/TJ,0.0069511135121999995,kg -de1f1e77-242a-34d5-8470-cf50280bf429,SESCO,II.1.1,La Rioja,AR-F,annual,2018,bioetanol combustion consumption by to the public,0.185349904344,TJ,CH4,10.0,kg/TJ,1.85349904344,kg -9c0ad537-6b6a-3130-862d-404d9dde042a,SESCO,II.1.1,La Rioja,AR-F,annual,2018,bioetanol combustion consumption by to the public,0.185349904344,TJ,N2O,0.6,kg/TJ,0.1112099426064,kg -cc361975-e955-39ba-bd5e-d0a9d6334341,SESCO,II.1.1,Mendoza,AR-M,annual,2018,bioetanol combustion consumption by to the public,0.584773549173,TJ,CH4,10.0,kg/TJ,5.847735491729999,kg -1aec6c5a-fb77-3b74-8cf5-ff2446acdcf3,SESCO,II.1.1,Mendoza,AR-M,annual,2018,bioetanol combustion consumption by to the public,0.584773549173,TJ,N2O,0.6,kg/TJ,0.35086412950379997,kg -4d06af5d-7565-30dd-b534-73cea803c065,SESCO,II.1.1,Misiones,AR-N,annual,2018,bioetanol combustion consumption by to the public,0.503766037071,TJ,CH4,10.0,kg/TJ,5.03766037071,kg -6f01e0de-4d32-3d64-b804-3ed920b7add4,SESCO,II.1.1,Misiones,AR-N,annual,2018,bioetanol combustion consumption by to the public,0.503766037071,TJ,N2O,0.6,kg/TJ,0.3022596222426,kg -5f013baf-15ca-3505-aa0b-c280dd945d17,SESCO,II.1.1,San Juan,AR-J,annual,2018,bioetanol combustion consumption by to the public,0.8090869387589998,TJ,CH4,10.0,kg/TJ,8.090869387589999,kg -bce5919f-e4a8-3f87-99e0-4696b1aaa725,SESCO,II.1.1,San Juan,AR-J,annual,2018,bioetanol combustion consumption by to the public,0.8090869387589998,TJ,N2O,0.6,kg/TJ,0.48545216325539986,kg -457fc922-442f-3687-88c5-b29de8340ed7,SESCO,II.1.1,San Luis,AR-D,annual,2018,bioetanol combustion consumption by to the public,0.735150190599,TJ,CH4,10.0,kg/TJ,7.35150190599,kg -025c6cf8-1d45-3fed-a333-cb299988f7c6,SESCO,II.1.1,San Luis,AR-D,annual,2018,bioetanol combustion consumption by to the public,0.735150190599,TJ,N2O,0.6,kg/TJ,0.4410901143594,kg -ad7ebe54-2198-3ae6-b2d2-cfd9ea0b7eed,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,bioetanol combustion consumption by to the public,2.9112184505250003,TJ,CH4,10.0,kg/TJ,29.112184505250003,kg -ff2c6722-d5df-3092-b491-a590c1f5745b,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,bioetanol combustion consumption by to the public,2.9112184505250003,TJ,N2O,0.6,kg/TJ,1.746731070315,kg -fc5bf17a-063b-3960-be31-5d601c8a0de4,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2018,bioetanol combustion consumption by to the public,0.353544524091,TJ,CH4,10.0,kg/TJ,3.53544524091,kg -ef64a20d-fc5c-3db1-b5c6-eae1219f4f7d,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2018,bioetanol combustion consumption by to the public,0.353544524091,TJ,N2O,0.6,kg/TJ,0.2121267144546,kg -908184cd-f6ec-3a5e-811b-67db7cb5d408,SESCO,II.1.1,Tucuman,AR-T,annual,2018,bioetanol combustion consumption by to the public,0.41825675370599996,TJ,CH4,10.0,kg/TJ,4.18256753706,kg -bb00d44c-d929-368e-a4ce-9c882d8612e9,SESCO,II.1.1,Tucuman,AR-T,annual,2018,bioetanol combustion consumption by to the public,0.41825675370599996,TJ,N2O,0.6,kg/TJ,0.25095405222359995,kg -5bf72a10-b2ce-35f2-aef0-0b2c6568bbf2,SESCO,II.5.1,Buenos Aires,AR-B,annual,2018,bioetanol combustion consumption by agriculture machines,0.9607652999999999,TJ,CH4,10.0,kg/TJ,9.607652999999999,kg -3250116d-471c-33e3-849f-244295312962,SESCO,II.5.1,Buenos Aires,AR-B,annual,2018,bioetanol combustion consumption by agriculture machines,0.9607652999999999,TJ,N2O,0.6,kg/TJ,0.57645918,kg -95dc751f-3e30-3dc9-811c-d98a56a20693,SESCO,II.5.1,Córdoba,AR-X,annual,2018,bioetanol combustion consumption by agriculture machines,0.38899278000000004,TJ,CH4,10.0,kg/TJ,3.8899278000000006,kg -774764ff-2392-36eb-ae01-7a97ed944899,SESCO,II.5.1,Córdoba,AR-X,annual,2018,bioetanol combustion consumption by agriculture machines,0.38899278000000004,TJ,N2O,0.6,kg/TJ,0.233395668,kg -a4f87707-c3c3-3c63-801e-cf6e51eb8871,SESCO,II.5.1,Santa Fe,AR-S,annual,2018,bioetanol combustion consumption by agriculture machines,2.14414695,TJ,CH4,10.0,kg/TJ,21.4414695,kg -a3524caa-6121-3896-be23-7a768db6d56a,SESCO,II.5.1,Santa Fe,AR-S,annual,2018,bioetanol combustion consumption by agriculture machines,2.14414695,TJ,N2O,0.6,kg/TJ,1.28648817,kg -4ae5000f-24fc-30c2-809e-6f2b5c6895e1,SESCO,II.5.1,Tucuman,AR-T,annual,2018,bioetanol combustion consumption by agriculture machines,0.9209286899999999,TJ,CH4,10.0,kg/TJ,9.209286899999999,kg -a566f859-2015-3455-bfc5-2f08bda1c699,SESCO,II.5.1,Tucuman,AR-T,annual,2018,bioetanol combustion consumption by agriculture machines,0.9209286899999999,TJ,N2O,0.6,kg/TJ,0.5525572139999999,kg -11a2a334-fd4a-3c8a-9f93-2d9451396b76,SESCO,II.5.1,Buenos Aires,AR-B,annual,2018,bioetanol combustion consumption by agriculture machines,0.17809308,TJ,CH4,10.0,kg/TJ,1.7809308,kg -d73626e2-a7e0-3dde-b12e-2a951cda1d98,SESCO,II.5.1,Buenos Aires,AR-B,annual,2018,bioetanol combustion consumption by agriculture machines,0.17809308,TJ,N2O,0.6,kg/TJ,0.10685584799999999,kg -567cdcaf-f11f-3b9f-bb89-dc825acef23e,SESCO,II.5.1,Córdoba,AR-X,annual,2018,bioetanol combustion consumption by agriculture machines,0.17106308999999997,TJ,CH4,10.0,kg/TJ,1.7106308999999997,kg -06f7f271-d29a-34ab-8e3d-c38f00f119cc,SESCO,II.5.1,Córdoba,AR-X,annual,2018,bioetanol combustion consumption by agriculture machines,0.17106308999999997,TJ,N2O,0.6,kg/TJ,0.10263785399999999,kg -7b0a58db-93fe-3165-8acd-72616edeae45,SESCO,II.5.1,Santa Fe,AR-S,annual,2018,bioetanol combustion consumption by agriculture machines,0.6842523599999999,TJ,CH4,10.0,kg/TJ,6.842523599999999,kg -71f794a4-1835-3eba-8c15-920f5d2fdf4a,SESCO,II.5.1,Santa Fe,AR-S,annual,2018,bioetanol combustion consumption by agriculture machines,0.6842523599999999,TJ,N2O,0.6,kg/TJ,0.41055141599999995,kg -ad2d3566-7bc7-3f11-b4d2-64c0db938268,SESCO,II.5.1,Tucuman,AR-T,annual,2018,bioetanol combustion consumption by agriculture machines,0.17809308,TJ,CH4,10.0,kg/TJ,1.7809308,kg -c893cc3a-1119-38cd-99fe-5edd1bc7aada,SESCO,II.5.1,Tucuman,AR-T,annual,2018,bioetanol combustion consumption by agriculture machines,0.17809308,TJ,N2O,0.6,kg/TJ,0.10685584799999999,kg -189fe504-c20d-3636-95fb-966d221e4f6e,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,bioetanol combustion consumption by to the public,628.4529860399999,TJ,CH4,10.0,kg/TJ,6284.529860399999,kg -60d9a197-954f-391b-b4d4-caad085252b1,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,bioetanol combustion consumption by to the public,628.4529860399999,TJ,N2O,0.6,kg/TJ,377.07179162399996,kg -71c9ea86-3a2f-3e00-800c-4a9a717ba34f,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,bioetanol combustion consumption by to the public,191.79218717999998,TJ,CH4,10.0,kg/TJ,1917.9218717999997,kg -afd9f387-603c-3a3f-8212-3524cf8b71d7,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,bioetanol combustion consumption by to the public,191.79218717999998,TJ,N2O,0.6,kg/TJ,115.075312308,kg -c4e5624a-8160-3394-a331-37e587867e61,SESCO,II.1.1,Catamarca,AR-K,annual,2018,bioetanol combustion consumption by to the public,25.624313549999997,TJ,CH4,10.0,kg/TJ,256.2431355,kg -4ba6924e-b679-32f8-bd60-cca1a6e826b0,SESCO,II.1.1,Catamarca,AR-K,annual,2018,bioetanol combustion consumption by to the public,25.624313549999997,TJ,N2O,0.6,kg/TJ,15.374588129999998,kg -b1b48dec-e654-38cc-a64a-3935a71844b6,SESCO,II.1.1,Chaco,AR-H,annual,2018,bioetanol combustion consumption by to the public,22.52174463,TJ,CH4,10.0,kg/TJ,225.2174463,kg -1cfb0691-6b0a-3650-9071-65dcf699142c,SESCO,II.1.1,Chaco,AR-H,annual,2018,bioetanol combustion consumption by to the public,22.52174463,TJ,N2O,0.6,kg/TJ,13.513046778,kg -2a97bf43-b44c-3fc7-ac78-853e11cc05bf,SESCO,II.1.1,Chubut,AR-U,annual,2018,bioetanol combustion consumption by to the public,75.07794987,TJ,CH4,10.0,kg/TJ,750.7794987,kg -d5bcaaef-8d93-3ac8-b981-c803738bba93,SESCO,II.1.1,Chubut,AR-U,annual,2018,bioetanol combustion consumption by to the public,75.07794987,TJ,N2O,0.6,kg/TJ,45.046769921999996,kg -a95cd8b0-613f-30e2-a9c9-7cea0b7759ae,SESCO,II.1.1,Corrientes,AR-W,annual,2018,bioetanol combustion consumption by to the public,33.88689513,TJ,CH4,10.0,kg/TJ,338.8689513,kg -0024b267-ab16-3d48-8bf8-92ddaaaf2d12,SESCO,II.1.1,Corrientes,AR-W,annual,2018,bioetanol combustion consumption by to the public,33.88689513,TJ,N2O,0.6,kg/TJ,20.332137078,kg -6b9a6540-cf6f-3f39-898a-e8de617bb39f,SESCO,II.1.1,Córdoba,AR-X,annual,2018,bioetanol combustion consumption by to the public,175.71928670999998,TJ,CH4,10.0,kg/TJ,1757.1928670999998,kg -8dd2b4c9-67b5-3d7a-920c-9046030c763b,SESCO,II.1.1,Córdoba,AR-X,annual,2018,bioetanol combustion consumption by to the public,175.71928670999998,TJ,N2O,0.6,kg/TJ,105.43157202599998,kg -1f56d719-8a48-36a5-8de8-2dbc23038a44,SESCO,II.1.1,Entre Rios,AR-E,annual,2018,bioetanol combustion consumption by to the public,72.31047714,TJ,CH4,10.0,kg/TJ,723.1047714,kg -a6fe7915-faee-3cbb-94a0-992957862530,SESCO,II.1.1,Entre Rios,AR-E,annual,2018,bioetanol combustion consumption by to the public,72.31047714,TJ,N2O,0.6,kg/TJ,43.386286284,kg -04fe6b3e-31d8-3db2-9ed4-dff891fd460c,SESCO,II.1.1,Formosa,AR-P,annual,2018,bioetanol combustion consumption by to the public,37.23082704,TJ,CH4,10.0,kg/TJ,372.3082704,kg -a20f9633-2296-3c51-a313-05ca13a5d758,SESCO,II.1.1,Formosa,AR-P,annual,2018,bioetanol combustion consumption by to the public,37.23082704,TJ,N2O,0.6,kg/TJ,22.338496224,kg -938c1721-0e62-3ea5-b256-5c89782fd850,SESCO,II.1.1,Jujuy,AR-Y,annual,2018,bioetanol combustion consumption by to the public,13.64052393,TJ,CH4,10.0,kg/TJ,136.4052393,kg -f937c4ef-5a21-3b92-a139-c38568e49a54,SESCO,II.1.1,Jujuy,AR-Y,annual,2018,bioetanol combustion consumption by to the public,13.64052393,TJ,N2O,0.6,kg/TJ,8.184314358,kg -7bd0021a-247c-32e9-8b06-90251e5c6793,SESCO,II.1.1,La Pampa,AR-L,annual,2018,bioetanol combustion consumption by to the public,11.37921048,TJ,CH4,10.0,kg/TJ,113.79210479999999,kg -3042d3a4-8473-34ed-a406-2b59db672218,SESCO,II.1.1,La Pampa,AR-L,annual,2018,bioetanol combustion consumption by to the public,11.37921048,TJ,N2O,0.6,kg/TJ,6.827526288,kg -1db1e772-218d-323a-95c1-ff1a74f1e9ca,SESCO,II.1.1,La Rioja,AR-F,annual,2018,bioetanol combustion consumption by to the public,8.112608459999999,TJ,CH4,10.0,kg/TJ,81.12608459999998,kg -bfae81e8-bc31-35b5-ab3a-839b3d3c2425,SESCO,II.1.1,La Rioja,AR-F,annual,2018,bioetanol combustion consumption by to the public,8.112608459999999,TJ,N2O,0.6,kg/TJ,4.867565075999999,kg -13a21011-f1cb-389a-826e-3c5ce8f3f476,SESCO,II.1.1,Mendoza,AR-M,annual,2018,bioetanol combustion consumption by to the public,36.62859123,TJ,CH4,10.0,kg/TJ,366.28591229999995,kg -5037a67c-c8e0-3216-a5e3-c17b44c7f158,SESCO,II.1.1,Mendoza,AR-M,annual,2018,bioetanol combustion consumption by to the public,36.62859123,TJ,N2O,0.6,kg/TJ,21.977154738,kg -2e51360f-c41c-3f58-a636-552fe2de459e,SESCO,II.1.1,Misiones,AR-N,annual,2018,bioetanol combustion consumption by to the public,50.287861799999995,TJ,CH4,10.0,kg/TJ,502.87861799999996,kg -cdf0c3b4-762f-3d9d-aa13-60d28d6e1b3b,SESCO,II.1.1,Misiones,AR-N,annual,2018,bioetanol combustion consumption by to the public,50.287861799999995,TJ,N2O,0.6,kg/TJ,30.172717079999995,kg -c635bd88-ec69-367f-bc93-99dd65f0991b,SESCO,II.1.1,Neuquén,AR-Q,annual,2018,bioetanol combustion consumption by to the public,23.381746739999997,TJ,CH4,10.0,kg/TJ,233.81746739999997,kg -ad67ef9b-2652-3ca2-9ca9-0f0f1f1fc669,SESCO,II.1.1,Neuquén,AR-Q,annual,2018,bioetanol combustion consumption by to the public,23.381746739999997,TJ,N2O,0.6,kg/TJ,14.029048043999998,kg -edf2dac1-8b4a-385b-be9b-2991ef6feeab,SESCO,II.1.1,Rio Negro,AR-R,annual,2018,bioetanol combustion consumption by to the public,37.80025623,TJ,CH4,10.0,kg/TJ,378.0025623,kg -0a368b35-020c-3576-b3b1-22b7a592251e,SESCO,II.1.1,Rio Negro,AR-R,annual,2018,bioetanol combustion consumption by to the public,37.80025623,TJ,N2O,0.6,kg/TJ,22.680153738,kg -6ec0a237-9fd9-3731-9da0-59f9ae0cdede,SESCO,II.1.1,Salta,AR-A,annual,2018,bioetanol combustion consumption by to the public,9.19522692,TJ,CH4,10.0,kg/TJ,91.95226919999999,kg -893caddf-01ae-3789-beef-44740c04efe6,SESCO,II.1.1,Salta,AR-A,annual,2018,bioetanol combustion consumption by to the public,9.19522692,TJ,N2O,0.6,kg/TJ,5.517136152,kg -539a8da3-5436-3f1d-a815-da34384a246d,SESCO,II.1.1,San Juan,AR-J,annual,2018,bioetanol combustion consumption by to the public,16.92352926,TJ,CH4,10.0,kg/TJ,169.23529259999998,kg -a14cedb7-9c55-33c6-94c4-483f2fbb24e8,SESCO,II.1.1,San Juan,AR-J,annual,2018,bioetanol combustion consumption by to the public,16.92352926,TJ,N2O,0.6,kg/TJ,10.154117556,kg -9f131f3e-72d8-38c5-b010-4e6badcc52e0,SESCO,II.1.1,San Luis,AR-D,annual,2018,bioetanol combustion consumption by to the public,35.33975973,TJ,CH4,10.0,kg/TJ,353.3975973,kg -8e5e240e-233a-327c-ba6f-5f1ffeea3844,SESCO,II.1.1,San Luis,AR-D,annual,2018,bioetanol combustion consumption by to the public,35.33975973,TJ,N2O,0.6,kg/TJ,21.203855838,kg -09d25352-3e5d-37f9-bd93-d7e287d86cea,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2018,bioetanol combustion consumption by to the public,39.00707118,TJ,CH4,10.0,kg/TJ,390.07071179999997,kg -19e6c74c-221d-329b-baf8-e089d875b824,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2018,bioetanol combustion consumption by to the public,39.00707118,TJ,N2O,0.6,kg/TJ,23.404242707999998,kg -44ce8536-bd59-3939-bff7-3b05a031dc2c,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,bioetanol combustion consumption by to the public,161.1039375,TJ,CH4,10.0,kg/TJ,1611.039375,kg -29bd83bc-f63d-3b46-beff-456b2a05982a,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,bioetanol combustion consumption by to the public,161.1039375,TJ,N2O,0.6,kg/TJ,96.6623625,kg -2505e31c-fee4-3a7f-937a-3ea54541dff0,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2018,bioetanol combustion consumption by to the public,20.321357759999998,TJ,CH4,10.0,kg/TJ,203.21357759999998,kg -89b25418-487d-3028-b606-3b598d66dd95,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2018,bioetanol combustion consumption by to the public,20.321357759999998,TJ,N2O,0.6,kg/TJ,12.192814655999998,kg -54f5fe40-c775-39cc-8a56-6eeb25f152ab,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2018,bioetanol combustion consumption by to the public,8.80154748,TJ,CH4,10.0,kg/TJ,88.01547479999999,kg -16571e79-9e33-3ab7-a389-e993a072e450,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2018,bioetanol combustion consumption by to the public,8.80154748,TJ,N2O,0.6,kg/TJ,5.280928488,kg -a99fc9c3-f479-3189-b889-d257fb6c974b,SESCO,II.1.1,Tucuman,AR-T,annual,2018,bioetanol combustion consumption by to the public,5.2982691299999995,TJ,CH4,10.0,kg/TJ,52.9826913,kg -4d0f5858-11c3-376b-90e8-ab514498202f,SESCO,II.1.1,Tucuman,AR-T,annual,2018,bioetanol combustion consumption by to the public,5.2982691299999995,TJ,N2O,0.6,kg/TJ,3.1789614779999997,kg -b814ac28-23cd-33d6-9aa3-b9fec8489aa0,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,bioetanol combustion consumption by to the public,147.46341356999997,TJ,CH4,10.0,kg/TJ,1474.6341356999997,kg -261442e2-b4c6-3448-aa2a-aea00979bafc,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,bioetanol combustion consumption by to the public,147.46341356999997,TJ,N2O,0.6,kg/TJ,88.47804814199998,kg -4cd11aca-0fb1-3184-a373-39e6fe272442,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,bioetanol combustion consumption by to the public,65.65776327,TJ,CH4,10.0,kg/TJ,656.5776327000001,kg -dcd75a80-f96e-3e8f-86c7-def1ddc5a497,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,bioetanol combustion consumption by to the public,65.65776327,TJ,N2O,0.6,kg/TJ,39.394657962000004,kg -c46e0308-654a-369b-a6c0-1230edfbb572,SESCO,II.1.1,Catamarca,AR-K,annual,2018,bioetanol combustion consumption by to the public,6.67146051,TJ,CH4,10.0,kg/TJ,66.7146051,kg -b3551964-80f1-3895-80c5-36fed43d6da7,SESCO,II.1.1,Catamarca,AR-K,annual,2018,bioetanol combustion consumption by to the public,6.67146051,TJ,N2O,0.6,kg/TJ,4.002876306,kg -ce5f924d-52ea-3a93-b611-fca4ca449c1b,SESCO,II.1.1,Chaco,AR-H,annual,2018,bioetanol combustion consumption by to the public,4.03990092,TJ,CH4,10.0,kg/TJ,40.3990092,kg -62799495-8b36-35c0-aa1d-01fc138667e2,SESCO,II.1.1,Chaco,AR-H,annual,2018,bioetanol combustion consumption by to the public,4.03990092,TJ,N2O,0.6,kg/TJ,2.423940552,kg -161cd8d7-d231-34a0-8d44-cfd799c1bf12,SESCO,II.1.1,Chubut,AR-U,annual,2018,bioetanol combustion consumption by to the public,13.08984138,TJ,CH4,10.0,kg/TJ,130.8984138,kg -fdf0f149-b5ff-3a64-b50e-0758613cd1c4,SESCO,II.1.1,Chubut,AR-U,annual,2018,bioetanol combustion consumption by to the public,13.08984138,TJ,N2O,0.6,kg/TJ,7.853904827999999,kg -1aa5cfe4-e48e-3360-a098-991db0b3bb11,SESCO,II.1.1,Corrientes,AR-W,annual,2018,bioetanol combustion consumption by to the public,6.715983779999999,TJ,CH4,10.0,kg/TJ,67.15983779999999,kg -1b14707f-b51d-3995-9bca-d0b5c005f974,SESCO,II.1.1,Corrientes,AR-W,annual,2018,bioetanol combustion consumption by to the public,6.715983779999999,TJ,N2O,0.6,kg/TJ,4.029590268,kg -c828b8bc-86ab-3d60-a702-2913b9639b7c,SESCO,II.1.1,Córdoba,AR-X,annual,2018,bioetanol combustion consumption by to the public,37.50968331,TJ,CH4,10.0,kg/TJ,375.0968331,kg -f216809c-7b3c-3327-878f-5e9c90b540eb,SESCO,II.1.1,Córdoba,AR-X,annual,2018,bioetanol combustion consumption by to the public,37.50968331,TJ,N2O,0.6,kg/TJ,22.505809986,kg -c0975220-6d1d-3b9e-add6-720f5d56fbf6,SESCO,II.1.1,Entre Rios,AR-E,annual,2018,bioetanol combustion consumption by to the public,15.829194149999998,TJ,CH4,10.0,kg/TJ,158.29194149999998,kg -7a4a499b-7cb4-3ac1-b0c2-4fd12b6b3bd9,SESCO,II.1.1,Entre Rios,AR-E,annual,2018,bioetanol combustion consumption by to the public,15.829194149999998,TJ,N2O,0.6,kg/TJ,9.497516489999999,kg -11f4d460-81fe-38f8-b914-c8cb3b325c6e,SESCO,II.1.1,Formosa,AR-P,annual,2018,bioetanol combustion consumption by to the public,7.885305449999999,TJ,CH4,10.0,kg/TJ,78.85305449999998,kg -5844f7f5-4eb7-3d1b-9d8c-58b5b1de565a,SESCO,II.1.1,Formosa,AR-P,annual,2018,bioetanol combustion consumption by to the public,7.885305449999999,TJ,N2O,0.6,kg/TJ,4.731183269999999,kg -b423d44f-4683-32b3-96a2-57984c433fd5,SESCO,II.1.1,Jujuy,AR-Y,annual,2018,bioetanol combustion consumption by to the public,2.48627313,TJ,CH4,10.0,kg/TJ,24.8627313,kg -3d2352d3-f599-3812-bbdd-95468111ca33,SESCO,II.1.1,Jujuy,AR-Y,annual,2018,bioetanol combustion consumption by to the public,2.48627313,TJ,N2O,0.6,kg/TJ,1.4917638779999998,kg -96797900-253e-3bdc-81ef-6f1dd11457a2,SESCO,II.1.1,La Pampa,AR-L,annual,2018,bioetanol combustion consumption by to the public,3.71652138,TJ,CH4,10.0,kg/TJ,37.165213800000004,kg -a6d14ac6-0948-3b04-bab1-ed3110bf635d,SESCO,II.1.1,La Pampa,AR-L,annual,2018,bioetanol combustion consumption by to the public,3.71652138,TJ,N2O,0.6,kg/TJ,2.229912828,kg -52adc1e3-a74e-3b14-a6b4-0cdeec1ac180,SESCO,II.1.1,La Rioja,AR-F,annual,2018,bioetanol combustion consumption by to the public,1.26071154,TJ,CH4,10.0,kg/TJ,12.6071154,kg -1563e47c-79b7-30a3-8d4d-e7d45c0d76de,SESCO,II.1.1,La Rioja,AR-F,annual,2018,bioetanol combustion consumption by to the public,1.26071154,TJ,N2O,0.6,kg/TJ,0.756426924,kg -fa48e66f-e136-3a55-a8d8-d381d78372a1,SESCO,II.1.1,Mendoza,AR-M,annual,2018,bioetanol combustion consumption by to the public,9.42721659,TJ,CH4,10.0,kg/TJ,94.2721659,kg -1c876946-e9e8-39eb-913c-06f6a186df9d,SESCO,II.1.1,Mendoza,AR-M,annual,2018,bioetanol combustion consumption by to the public,9.42721659,TJ,N2O,0.6,kg/TJ,5.656329954,kg -74a32193-8ad0-3c56-bd8a-a31f84a78eb6,SESCO,II.1.1,Misiones,AR-N,annual,2018,bioetanol combustion consumption by to the public,5.991894809999999,TJ,CH4,10.0,kg/TJ,59.91894809999999,kg -6e916592-a101-3b69-847c-af067d4c7b70,SESCO,II.1.1,Misiones,AR-N,annual,2018,bioetanol combustion consumption by to the public,5.991894809999999,TJ,N2O,0.6,kg/TJ,3.5951368859999993,kg -8b1edd72-ee5c-36ad-afde-b9624312de42,SESCO,II.1.1,Neuquén,AR-Q,annual,2018,bioetanol combustion consumption by to the public,10.3340853,TJ,CH4,10.0,kg/TJ,103.340853,kg -5348e2e2-66e3-37ba-9a93-8dd8698ad49b,SESCO,II.1.1,Neuquén,AR-Q,annual,2018,bioetanol combustion consumption by to the public,10.3340853,TJ,N2O,0.6,kg/TJ,6.20045118,kg -ae7ba0f9-0754-338f-9800-a478aee0b71b,SESCO,II.1.1,Rio Negro,AR-R,annual,2018,bioetanol combustion consumption by to the public,11.709620009999998,TJ,CH4,10.0,kg/TJ,117.09620009999998,kg -4a067977-af5f-3c21-9c3b-b3d6cae7f9bd,SESCO,II.1.1,Rio Negro,AR-R,annual,2018,bioetanol combustion consumption by to the public,11.709620009999998,TJ,N2O,0.6,kg/TJ,7.025772005999999,kg -f58e6a1f-d383-3e04-80c8-2293300d67d2,SESCO,II.1.1,Salta,AR-A,annual,2018,bioetanol combustion consumption by to the public,1.05918516,TJ,CH4,10.0,kg/TJ,10.5918516,kg -a6e08cf8-3462-375d-b9d1-99d4231d54ed,SESCO,II.1.1,Salta,AR-A,annual,2018,bioetanol combustion consumption by to the public,1.05918516,TJ,N2O,0.6,kg/TJ,0.635511096,kg -7870e7e2-debf-34cc-9044-0f4f0a29b82d,SESCO,II.1.1,San Juan,AR-J,annual,2018,bioetanol combustion consumption by to the public,4.38437043,TJ,CH4,10.0,kg/TJ,43.8437043,kg -3ab3d692-ba6a-35ba-9b6a-1feb82569041,SESCO,II.1.1,San Juan,AR-J,annual,2018,bioetanol combustion consumption by to the public,4.38437043,TJ,N2O,0.6,kg/TJ,2.630622258,kg -d5236302-4625-3642-9885-cb2942f0accf,SESCO,II.1.1,San Luis,AR-D,annual,2018,bioetanol combustion consumption by to the public,6.2332578000000005,TJ,CH4,10.0,kg/TJ,62.332578000000005,kg -25538d6b-7693-3a3e-b2c5-57c46a2a90c7,SESCO,II.1.1,San Luis,AR-D,annual,2018,bioetanol combustion consumption by to the public,6.2332578000000005,TJ,N2O,0.6,kg/TJ,3.7399546800000003,kg -caf9b35d-82c4-3640-808f-d2294fcf85be,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2018,bioetanol combustion consumption by to the public,5.58884205,TJ,CH4,10.0,kg/TJ,55.8884205,kg -56304a26-ac60-3171-86af-3f18b6866902,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2018,bioetanol combustion consumption by to the public,5.58884205,TJ,N2O,0.6,kg/TJ,3.35330523,kg -422109d6-c317-32a6-a223-0111b73552e5,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,bioetanol combustion consumption by to the public,39.5085438,TJ,CH4,10.0,kg/TJ,395.08543799999995,kg -4685fc99-d803-3b3e-9bb4-9c3d100d3811,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,bioetanol combustion consumption by to the public,39.5085438,TJ,N2O,0.6,kg/TJ,23.705126279999998,kg -99106ff4-a3e0-38f5-92ac-8cdd92815d69,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2018,bioetanol combustion consumption by to the public,5.77865178,TJ,CH4,10.0,kg/TJ,57.7865178,kg -2d52310f-db49-3f95-b38c-0adc3e9f8864,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2018,bioetanol combustion consumption by to the public,5.77865178,TJ,N2O,0.6,kg/TJ,3.4671910679999995,kg -c5aba010-fb76-377c-ae18-53e3d982dfa9,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2018,bioetanol combustion consumption by to the public,2.11837032,TJ,CH4,10.0,kg/TJ,21.1837032,kg -2549d0bf-04c7-362f-98fe-3ef7af9396b0,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2018,bioetanol combustion consumption by to the public,2.11837032,TJ,N2O,0.6,kg/TJ,1.271022192,kg -d1172243-d099-33d0-bbd9-6245bd5f5fe5,SESCO,II.1.1,Tucuman,AR-T,annual,2018,bioetanol combustion consumption by to the public,0.90921204,TJ,CH4,10.0,kg/TJ,9.0921204,kg -019e31f5-c022-3c15-bb9d-c8029790aa29,SESCO,II.1.1,Tucuman,AR-T,annual,2018,bioetanol combustion consumption by to the public,0.90921204,TJ,N2O,0.6,kg/TJ,0.545527224,kg -6a8cb409-2a82-3fbe-ae8f-678a13535054,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,bioetanol combustion consumption by freight transport,0.6326991,TJ,CH4,10.0,kg/TJ,6.326991,kg -8406d880-88cf-3d95-ac89-435d9e0031b1,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,bioetanol combustion consumption by freight transport,0.6326991,TJ,N2O,0.6,kg/TJ,0.37961945999999996,kg -a7b42703-3cb7-3850-ab2f-c67710a98e44,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,bioetanol combustion consumption by freight transport,0.25307964,TJ,CH4,10.0,kg/TJ,2.5307964,kg -e88e410b-79cf-30fb-b4d9-689180ad45a3,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,bioetanol combustion consumption by freight transport,0.25307964,TJ,N2O,0.6,kg/TJ,0.15184778399999999,kg -0f313575-54d0-3502-ad0a-e040007bc266,SESCO,II.1.1,Catamarca,AR-K,annual,2018,bioetanol combustion consumption by freight transport,0.00234333,TJ,CH4,10.0,kg/TJ,0.023433299999999997,kg -57689d39-59a5-3fa6-b413-e1463b049bf1,SESCO,II.1.1,Catamarca,AR-K,annual,2018,bioetanol combustion consumption by freight transport,0.00234333,TJ,N2O,0.6,kg/TJ,0.0014059979999999999,kg -b5531fbc-247d-3fc2-a224-b775c5c4c204,SESCO,II.1.1,Chubut,AR-U,annual,2018,bioetanol combustion consumption by freight transport,0.00234333,TJ,CH4,10.0,kg/TJ,0.023433299999999997,kg -81c4662e-13ac-3261-a66f-7a2f036bd95e,SESCO,II.1.1,Chubut,AR-U,annual,2018,bioetanol combustion consumption by freight transport,0.00234333,TJ,N2O,0.6,kg/TJ,0.0014059979999999999,kg -7cf66589-0de2-37c6-aff7-cc3340b386f3,SESCO,II.1.1,Córdoba,AR-X,annual,2018,bioetanol combustion consumption by freight transport,0.14528646,TJ,CH4,10.0,kg/TJ,1.4528646,kg -03a08416-4299-3558-bd44-ca00450be73d,SESCO,II.1.1,Córdoba,AR-X,annual,2018,bioetanol combustion consumption by freight transport,0.14528646,TJ,N2O,0.6,kg/TJ,0.087171876,kg -30401135-e661-3864-a263-268d73016ec5,SESCO,II.1.1,Entre Rios,AR-E,annual,2018,bioetanol combustion consumption by freight transport,0.00234333,TJ,CH4,10.0,kg/TJ,0.023433299999999997,kg -1335f7e7-0467-33d1-a402-f0a79b4fd6b8,SESCO,II.1.1,Entre Rios,AR-E,annual,2018,bioetanol combustion consumption by freight transport,0.00234333,TJ,N2O,0.6,kg/TJ,0.0014059979999999999,kg -ac26f80d-706d-350b-9c71-5e1169969f30,SESCO,II.1.1,La Rioja,AR-F,annual,2018,bioetanol combustion consumption by freight transport,0.00234333,TJ,CH4,10.0,kg/TJ,0.023433299999999997,kg -50f68aa3-4f5b-35fb-be89-47e500263dc0,SESCO,II.1.1,La Rioja,AR-F,annual,2018,bioetanol combustion consumption by freight transport,0.00234333,TJ,N2O,0.6,kg/TJ,0.0014059979999999999,kg -0efd282e-235f-3b45-a837-b47ee548c4ea,SESCO,II.1.1,Mendoza,AR-M,annual,2018,bioetanol combustion consumption by freight transport,0.00702999,TJ,CH4,10.0,kg/TJ,0.0702999,kg -19cec43a-74da-3f3d-8861-a3e9a1e141ea,SESCO,II.1.1,Mendoza,AR-M,annual,2018,bioetanol combustion consumption by freight transport,0.00702999,TJ,N2O,0.6,kg/TJ,0.004217994,kg -c2fdc3b9-9146-38db-b2d4-d6c190a98295,SESCO,II.1.1,Misiones,AR-N,annual,2018,bioetanol combustion consumption by freight transport,0.00234333,TJ,CH4,10.0,kg/TJ,0.023433299999999997,kg -9a152ecb-be16-34c3-89a3-55574f5f5969,SESCO,II.1.1,Misiones,AR-N,annual,2018,bioetanol combustion consumption by freight transport,0.00234333,TJ,N2O,0.6,kg/TJ,0.0014059979999999999,kg -85407a3f-db6b-3c76-bace-bfacbc7bea90,SESCO,II.1.1,Salta,AR-A,annual,2018,bioetanol combustion consumption by freight transport,0.00937332,TJ,CH4,10.0,kg/TJ,0.09373319999999999,kg -05147705-3e8d-3f14-870f-671c77b81da2,SESCO,II.1.1,Salta,AR-A,annual,2018,bioetanol combustion consumption by freight transport,0.00937332,TJ,N2O,0.6,kg/TJ,0.0056239919999999995,kg -4194c315-2d10-33fb-9cbd-9b345c015e0a,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,bioetanol combustion consumption by freight transport,0.08904654,TJ,CH4,10.0,kg/TJ,0.8904654,kg -0f2c30a4-96c2-361f-86f7-8197c4e3e0b7,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,bioetanol combustion consumption by freight transport,0.08904654,TJ,N2O,0.6,kg/TJ,0.053427923999999995,kg -d9f811f7-8acf-3acd-b7f1-5eae288f8841,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2018,bioetanol combustion consumption by freight transport,0.00234333,TJ,CH4,10.0,kg/TJ,0.023433299999999997,kg -738b2b03-fef8-3f9b-ad86-0d6e42383b8a,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2018,bioetanol combustion consumption by freight transport,0.00234333,TJ,N2O,0.6,kg/TJ,0.0014059979999999999,kg -77e64e3c-8818-3600-8e0b-f4229e669093,SESCO,II.1.1,Tucuman,AR-T,annual,2018,bioetanol combustion consumption by freight transport,0.00234333,TJ,CH4,10.0,kg/TJ,0.023433299999999997,kg -2a27a3de-8710-3b00-beaf-8550538b2841,SESCO,II.1.1,Tucuman,AR-T,annual,2018,bioetanol combustion consumption by freight transport,0.00234333,TJ,N2O,0.6,kg/TJ,0.0014059979999999999,kg -7f49cd0c-8a26-3285-bc52-fe82f95b0c6b,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,bioetanol combustion consumption by freight transport,0.41711274000000004,TJ,CH4,10.0,kg/TJ,4.1711274000000005,kg -3afa62fa-7531-3804-88e2-fbd421de8278,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,bioetanol combustion consumption by freight transport,0.41711274000000004,TJ,N2O,0.6,kg/TJ,0.250267644,kg -5187e314-e9fc-3eea-904d-ff1162dfc1d2,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,bioetanol combustion consumption by freight transport,0.20621304,TJ,CH4,10.0,kg/TJ,2.0621304,kg -bfaab497-8250-39eb-b0a0-844b3be906a9,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,bioetanol combustion consumption by freight transport,0.20621304,TJ,N2O,0.6,kg/TJ,0.12372782399999999,kg -b5531fbc-247d-3fc2-a224-b775c5c4c204,SESCO,II.1.1,Chubut,AR-U,annual,2018,bioetanol combustion consumption by freight transport,0.00234333,TJ,CH4,10.0,kg/TJ,0.023433299999999997,kg -81c4662e-13ac-3261-a66f-7a2f036bd95e,SESCO,II.1.1,Chubut,AR-U,annual,2018,bioetanol combustion consumption by freight transport,0.00234333,TJ,N2O,0.6,kg/TJ,0.0014059979999999999,kg -1d31749d-1c41-3a74-8d9a-71fc48a8a303,SESCO,II.1.1,Corrientes,AR-W,annual,2018,bioetanol combustion consumption by freight transport,0.00702999,TJ,CH4,10.0,kg/TJ,0.0702999,kg -302f80e2-5235-3a31-9fb9-e93e862d1b04,SESCO,II.1.1,Corrientes,AR-W,annual,2018,bioetanol combustion consumption by freight transport,0.00702999,TJ,N2O,0.6,kg/TJ,0.004217994,kg -46341ddd-e3fd-36c5-97b4-bab8fe195251,SESCO,II.1.1,Córdoba,AR-X,annual,2018,bioetanol combustion consumption by freight transport,0.10779317999999999,TJ,CH4,10.0,kg/TJ,1.0779318,kg -79b1156b-94f4-37ac-990b-ccd9873f117b,SESCO,II.1.1,Córdoba,AR-X,annual,2018,bioetanol combustion consumption by freight transport,0.10779317999999999,TJ,N2O,0.6,kg/TJ,0.06467590799999999,kg -ff0efea0-a712-395b-a155-6fc2c3cdf713,SESCO,II.1.1,Entre Rios,AR-E,annual,2018,bioetanol combustion consumption by freight transport,0.01874664,TJ,CH4,10.0,kg/TJ,0.18746639999999998,kg -7a7e5eee-751e-3842-b4db-9d272aeb056a,SESCO,II.1.1,Entre Rios,AR-E,annual,2018,bioetanol combustion consumption by freight transport,0.01874664,TJ,N2O,0.6,kg/TJ,0.011247983999999999,kg -f586ee49-9857-3ff2-ab26-fe973c67adbb,SESCO,II.1.1,Jujuy,AR-Y,annual,2018,bioetanol combustion consumption by freight transport,0.00234333,TJ,CH4,10.0,kg/TJ,0.023433299999999997,kg -c115d993-5482-38ce-b0fb-189b01351472,SESCO,II.1.1,Jujuy,AR-Y,annual,2018,bioetanol combustion consumption by freight transport,0.00234333,TJ,N2O,0.6,kg/TJ,0.0014059979999999999,kg -57c7eb7e-b62a-31d7-ac33-ef9a346a491c,SESCO,II.1.1,La Pampa,AR-L,annual,2018,bioetanol combustion consumption by freight transport,0.00234333,TJ,CH4,10.0,kg/TJ,0.023433299999999997,kg -d5369b08-91a3-3817-84ca-790eb1febc81,SESCO,II.1.1,La Pampa,AR-L,annual,2018,bioetanol combustion consumption by freight transport,0.00234333,TJ,N2O,0.6,kg/TJ,0.0014059979999999999,kg -d432f0c9-e41d-3e9f-a639-33480962244f,SESCO,II.1.1,Mendoza,AR-M,annual,2018,bioetanol combustion consumption by freight transport,0.00468666,TJ,CH4,10.0,kg/TJ,0.046866599999999994,kg -7945b11d-2dce-3ffc-bec6-0426a51de0db,SESCO,II.1.1,Mendoza,AR-M,annual,2018,bioetanol combustion consumption by freight transport,0.00468666,TJ,N2O,0.6,kg/TJ,0.0028119959999999998,kg -d1c359bc-5f90-39ce-b309-a39c42ed9252,SESCO,II.1.1,Neuquén,AR-Q,annual,2018,bioetanol combustion consumption by freight transport,0.00234333,TJ,CH4,10.0,kg/TJ,0.023433299999999997,kg -653f198d-c040-30d6-a37f-75d6d15cfe3f,SESCO,II.1.1,Neuquén,AR-Q,annual,2018,bioetanol combustion consumption by freight transport,0.00234333,TJ,N2O,0.6,kg/TJ,0.0014059979999999999,kg -c1646e1a-78e7-32df-af36-673317283f74,SESCO,II.1.1,Rio Negro,AR-R,annual,2018,bioetanol combustion consumption by freight transport,0.00234333,TJ,CH4,10.0,kg/TJ,0.023433299999999997,kg -cb58bac5-219c-312e-a203-12afdceef81f,SESCO,II.1.1,Rio Negro,AR-R,annual,2018,bioetanol combustion consumption by freight transport,0.00234333,TJ,N2O,0.6,kg/TJ,0.0014059979999999999,kg -d179812e-89b1-3cc6-a0b6-afee06648247,SESCO,II.1.1,San Luis,AR-D,annual,2018,bioetanol combustion consumption by freight transport,0.00234333,TJ,CH4,10.0,kg/TJ,0.023433299999999997,kg -b42f79c4-e7d3-376e-939f-bfa7eb305f7e,SESCO,II.1.1,San Luis,AR-D,annual,2018,bioetanol combustion consumption by freight transport,0.00234333,TJ,N2O,0.6,kg/TJ,0.0014059979999999999,kg -45f46ae3-32fa-3722-a880-e29f330ce493,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,bioetanol combustion consumption by freight transport,0.09841986,TJ,CH4,10.0,kg/TJ,0.9841986,kg -7020a7aa-47ae-329f-a3e1-be7218cf3d16,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,bioetanol combustion consumption by freight transport,0.09841986,TJ,N2O,0.6,kg/TJ,0.059051915999999996,kg -d9f811f7-8acf-3acd-b7f1-5eae288f8841,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2018,bioetanol combustion consumption by freight transport,0.00234333,TJ,CH4,10.0,kg/TJ,0.023433299999999997,kg -738b2b03-fef8-3f9b-ad86-0d6e42383b8a,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2018,bioetanol combustion consumption by freight transport,0.00234333,TJ,N2O,0.6,kg/TJ,0.0014059979999999999,kg -77e64e3c-8818-3600-8e0b-f4229e669093,SESCO,II.1.1,Tucuman,AR-T,annual,2018,bioetanol combustion consumption by freight transport,0.00234333,TJ,CH4,10.0,kg/TJ,0.023433299999999997,kg -2a27a3de-8710-3b00-beaf-8550538b2841,SESCO,II.1.1,Tucuman,AR-T,annual,2018,bioetanol combustion consumption by freight transport,0.00234333,TJ,N2O,0.6,kg/TJ,0.0014059979999999999,kg -0229071f-19a0-3647-b19b-921da3875121,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,bioetanol combustion consumption by public passenger transport,0.00234333,TJ,CH4,10.0,kg/TJ,0.023433299999999997,kg -ee0f6b45-2ffe-329d-aea5-d455caf0b8ce,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,bioetanol combustion consumption by public passenger transport,0.00234333,TJ,N2O,0.6,kg/TJ,0.0014059979999999999,kg -140ea528-c49f-3e2e-a591-90b151cfb791,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,bioetanol combustion consumption by public passenger transport,0.00234333,TJ,CH4,10.0,kg/TJ,0.023433299999999997,kg -73775438-642f-3ef0-9989-28744f6cfc68,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,bioetanol combustion consumption by public passenger transport,0.00234333,TJ,N2O,0.6,kg/TJ,0.0014059979999999999,kg -80e22c4d-1a98-3f7c-ac3c-b0571e3a981f,SESCO,II.1.1,Salta,AR-A,annual,2018,bioetanol combustion consumption by public passenger transport,0.05155326,TJ,CH4,10.0,kg/TJ,0.5155326,kg -d3f4706c-2532-323d-bfaa-aaf373b0481d,SESCO,II.1.1,Salta,AR-A,annual,2018,bioetanol combustion consumption by public passenger transport,0.05155326,TJ,N2O,0.6,kg/TJ,0.030931955999999997,kg -836215ac-83b5-37b7-8b0a-8f0640f6e703,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,bioetanol combustion consumption by public passenger transport,0.01640331,TJ,CH4,10.0,kg/TJ,0.16403310000000002,kg -26a4331b-6901-3ad7-bf9e-2a108415978d,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,bioetanol combustion consumption by public passenger transport,0.01640331,TJ,N2O,0.6,kg/TJ,0.009841986,kg -0229071f-19a0-3647-b19b-921da3875121,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,bioetanol combustion consumption by public passenger transport,0.00234333,TJ,CH4,10.0,kg/TJ,0.023433299999999997,kg -ee0f6b45-2ffe-329d-aea5-d455caf0b8ce,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,bioetanol combustion consumption by public passenger transport,0.00234333,TJ,N2O,0.6,kg/TJ,0.0014059979999999999,kg -140ea528-c49f-3e2e-a591-90b151cfb791,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,bioetanol combustion consumption by public passenger transport,0.00234333,TJ,CH4,10.0,kg/TJ,0.023433299999999997,kg -73775438-642f-3ef0-9989-28744f6cfc68,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,bioetanol combustion consumption by public passenger transport,0.00234333,TJ,N2O,0.6,kg/TJ,0.0014059979999999999,kg -c11900d3-ff56-34f8-88bd-6131c370a848,SESCO,II.1.1,Córdoba,AR-X,annual,2018,bioetanol combustion consumption by public passenger transport,0.00234333,TJ,CH4,10.0,kg/TJ,0.023433299999999997,kg -d865e7ed-a05b-30d2-90c1-c6544fea4874,SESCO,II.1.1,Córdoba,AR-X,annual,2018,bioetanol combustion consumption by public passenger transport,0.00234333,TJ,N2O,0.6,kg/TJ,0.0014059979999999999,kg -e75c0557-0693-35e8-810d-56d15cbd80ac,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,bioetanol combustion consumption by public passenger transport,0.00702999,TJ,CH4,10.0,kg/TJ,0.0702999,kg -0c6bcdfe-cddf-3fc0-b9d4-9101488bd81a,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,bioetanol combustion consumption by public passenger transport,0.00702999,TJ,N2O,0.6,kg/TJ,0.004217994,kg -84c9f7b7-1baf-3612-959b-6fb2b3c2b8b0,SESCO,II.5.1,Buenos Aires,AR-B,annual,2018,bioetanol combustion consumption by agriculture machines,0.33627019833,TJ,CH4,10.0,kg/TJ,3.3627019833,kg -d99574ff-015c-3089-89e8-0d13c190b670,SESCO,II.5.1,Buenos Aires,AR-B,annual,2018,bioetanol combustion consumption by agriculture machines,0.33627019833,TJ,N2O,0.6,kg/TJ,0.20176211899799998,kg -f1316e88-03ca-3818-b652-c769f121921e,SESCO,II.5.1,Rio Negro,AR-R,annual,2018,bioetanol combustion consumption by agriculture machines,0.032361387299999995,TJ,CH4,10.0,kg/TJ,0.32361387299999994,kg -a788b157-76d7-301c-a973-e91a005c2c68,SESCO,II.5.1,Rio Negro,AR-R,annual,2018,bioetanol combustion consumption by agriculture machines,0.032361387299999995,TJ,N2O,0.6,kg/TJ,0.019416832379999995,kg -4429b2f5-bef5-3ecc-b762-d9f1eed3f1da,SESCO,II.5.1,Buenos Aires,AR-B,annual,2018,bioetanol combustion consumption by agriculture machines,0.051187700520000004,TJ,CH4,10.0,kg/TJ,0.5118770052,kg -a7685afc-d6f9-3deb-80ae-e949b72c4740,SESCO,II.5.1,Buenos Aires,AR-B,annual,2018,bioetanol combustion consumption by agriculture machines,0.051187700520000004,TJ,N2O,0.6,kg/TJ,0.030712620312,kg -1e7cb11d-a01b-392b-beb2-6b1fc9567a10,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,bioetanol combustion consumption by to the public,108.36182183112,TJ,CH4,10.0,kg/TJ,1083.6182183112,kg -a0f1627f-6260-359e-a937-c43ae9a77fff,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,bioetanol combustion consumption by to the public,108.36182183112,TJ,N2O,0.6,kg/TJ,65.01709309867199,kg -f9177d6d-fba7-3302-8267-e5dbd9afbbe9,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,bioetanol combustion consumption by to the public,7.081409690189999,TJ,CH4,10.0,kg/TJ,70.81409690189999,kg -6bbe7d66-df4e-3284-83b9-bf31acd3d59b,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,bioetanol combustion consumption by to the public,7.081409690189999,TJ,N2O,0.6,kg/TJ,4.2488458141139995,kg -109af613-a0fa-3941-a1f2-41b5a5e0a474,SESCO,II.1.1,Chubut,AR-U,annual,2018,bioetanol combustion consumption by to the public,37.06886544372,TJ,CH4,10.0,kg/TJ,370.6886544372,kg -2309256e-eadf-3018-b96e-de53bda2e7a8,SESCO,II.1.1,Chubut,AR-U,annual,2018,bioetanol combustion consumption by to the public,37.06886544372,TJ,N2O,0.6,kg/TJ,22.241319266232,kg -64d18ce9-86c7-3f6d-886b-e485127710a0,SESCO,II.1.1,Córdoba,AR-X,annual,2018,bioetanol combustion consumption by to the public,10.9964743911,TJ,CH4,10.0,kg/TJ,109.964743911,kg -f792d965-b2ea-347f-93cc-ebc532f03cb1,SESCO,II.1.1,Córdoba,AR-X,annual,2018,bioetanol combustion consumption by to the public,10.9964743911,TJ,N2O,0.6,kg/TJ,6.59788463466,kg -4821649b-35a8-317e-b0eb-7353a4a68e26,SESCO,II.1.1,Entre Rios,AR-E,annual,2018,bioetanol combustion consumption by to the public,3.95272201401,TJ,CH4,10.0,kg/TJ,39.5272201401,kg -e958501f-26ff-37b9-a2f6-d0feae8bf23e,SESCO,II.1.1,Entre Rios,AR-E,annual,2018,bioetanol combustion consumption by to the public,3.95272201401,TJ,N2O,0.6,kg/TJ,2.3716332084059997,kg -d329c144-5023-349d-8f93-c01e5abeb458,SESCO,II.1.1,La Pampa,AR-L,annual,2018,bioetanol combustion consumption by to the public,11.95782786693,TJ,CH4,10.0,kg/TJ,119.5782786693,kg -aebce579-b12a-319f-a999-14009f05705c,SESCO,II.1.1,La Pampa,AR-L,annual,2018,bioetanol combustion consumption by to the public,11.95782786693,TJ,N2O,0.6,kg/TJ,7.174696720158,kg -7d9ad1b6-597c-325c-af0f-ed3ee8f44616,SESCO,II.1.1,Neuquén,AR-Q,annual,2018,bioetanol combustion consumption by to the public,11.397607963829998,TJ,CH4,10.0,kg/TJ,113.97607963829998,kg -3ee90cca-4f21-3ee6-87d1-af01bd12d578,SESCO,II.1.1,Neuquén,AR-Q,annual,2018,bioetanol combustion consumption by to the public,11.397607963829998,TJ,N2O,0.6,kg/TJ,6.838564778297998,kg -659a4763-9ece-3674-8e6e-a678e8be40c0,SESCO,II.1.1,Rio Negro,AR-R,annual,2018,bioetanol combustion consumption by to the public,34.168045520069995,TJ,CH4,10.0,kg/TJ,341.68045520069995,kg -6b59e455-0315-3250-8133-80df7f870f03,SESCO,II.1.1,Rio Negro,AR-R,annual,2018,bioetanol combustion consumption by to the public,34.168045520069995,TJ,N2O,0.6,kg/TJ,20.500827312041995,kg -eed8e800-22db-396e-9479-78609fb6abad,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2018,bioetanol combustion consumption by to the public,22.99444818759,TJ,CH4,10.0,kg/TJ,229.94448187589998,kg -5941cddf-2365-3f16-b715-0ecccb8e2428,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2018,bioetanol combustion consumption by to the public,22.99444818759,TJ,N2O,0.6,kg/TJ,13.796668912553999,kg -1910c4c2-8ca3-3bf2-b760-acbf8e818f75,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,bioetanol combustion consumption by to the public,14.60192661576,TJ,CH4,10.0,kg/TJ,146.0192661576,kg -55c9bdfc-54fd-3257-bdc0-7a11e5b1ac1b,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,bioetanol combustion consumption by to the public,14.60192661576,TJ,N2O,0.6,kg/TJ,8.761155969456,kg -e6ad5506-20cc-3329-814c-9139227d187e,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,bioetanol combustion consumption by to the public,29.326336747289997,TJ,CH4,10.0,kg/TJ,293.2633674729,kg -5dfdf586-0fb3-347a-9b34-29fdb1fd0952,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,bioetanol combustion consumption by to the public,29.326336747289997,TJ,N2O,0.6,kg/TJ,17.595802048373997,kg -3c055619-de2c-3608-a0f9-80734acef40c,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,bioetanol combustion consumption by to the public,2.06897058027,TJ,CH4,10.0,kg/TJ,20.689705802699997,kg -649ac3e1-4146-307b-ad4a-1680578cd116,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,bioetanol combustion consumption by to the public,2.06897058027,TJ,N2O,0.6,kg/TJ,1.2413823481619999,kg -dc0fc928-bc2b-3a70-836e-665de2f4d5dd,SESCO,II.1.1,Chubut,AR-U,annual,2018,bioetanol combustion consumption by to the public,8.150628989249999,TJ,CH4,10.0,kg/TJ,81.50628989249998,kg -06aa9375-8463-378c-b825-77869f11df26,SESCO,II.1.1,Chubut,AR-U,annual,2018,bioetanol combustion consumption by to the public,8.150628989249999,TJ,N2O,0.6,kg/TJ,4.890377393549999,kg -03b01718-8198-34dc-8834-3f8b1af6103b,SESCO,II.1.1,Córdoba,AR-X,annual,2018,bioetanol combustion consumption by to the public,3.09470704785,TJ,CH4,10.0,kg/TJ,30.947070478500002,kg -adddb1a3-01d2-38db-a257-748434336dc8,SESCO,II.1.1,Córdoba,AR-X,annual,2018,bioetanol combustion consumption by to the public,3.09470704785,TJ,N2O,0.6,kg/TJ,1.8568242287099999,kg -642c54bb-79e5-3f8c-ba7e-0988da9e78ad,SESCO,II.1.1,Entre Rios,AR-E,annual,2018,bioetanol combustion consumption by to the public,1.29351347334,TJ,CH4,10.0,kg/TJ,12.9351347334,kg -1a10e58a-c90b-3fcf-a7d1-192a1d8dcdb8,SESCO,II.1.1,Entre Rios,AR-E,annual,2018,bioetanol combustion consumption by to the public,1.29351347334,TJ,N2O,0.6,kg/TJ,0.776108084004,kg -0768556d-4d8f-3c75-9a8a-f2f71fd3ce63,SESCO,II.1.1,La Pampa,AR-L,annual,2018,bioetanol combustion consumption by to the public,4.98959867241,TJ,CH4,10.0,kg/TJ,49.8959867241,kg -ed45217b-0131-360d-8103-9557de89c41e,SESCO,II.1.1,La Pampa,AR-L,annual,2018,bioetanol combustion consumption by to the public,4.98959867241,TJ,N2O,0.6,kg/TJ,2.993759203446,kg -b0e76596-9998-365e-b83c-de0feeaf2877,SESCO,II.1.1,Neuquén,AR-Q,annual,2018,bioetanol combustion consumption by to the public,5.77070086131,TJ,CH4,10.0,kg/TJ,57.7070086131,kg -93c01834-eaf0-3af6-9266-c921456adf20,SESCO,II.1.1,Neuquén,AR-Q,annual,2018,bioetanol combustion consumption by to the public,5.77070086131,TJ,N2O,0.6,kg/TJ,3.462420516786,kg -96c73ba6-2124-3f97-a46d-9ff133ef9b4c,SESCO,II.1.1,Rio Negro,AR-R,annual,2018,bioetanol combustion consumption by to the public,8.84951075844,TJ,CH4,10.0,kg/TJ,88.49510758439999,kg -f1bd42d9-bc81-3866-8a75-98ae541d1628,SESCO,II.1.1,Rio Negro,AR-R,annual,2018,bioetanol combustion consumption by to the public,8.84951075844,TJ,N2O,0.6,kg/TJ,5.309706455063999,kg -c071c6f4-9d81-3ea3-887f-bb6967cf6238,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2018,bioetanol combustion consumption by to the public,4.51082120346,TJ,CH4,10.0,kg/TJ,45.1082120346,kg -632ffccd-0401-37ad-a654-c153c7ed867c,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2018,bioetanol combustion consumption by to the public,4.51082120346,TJ,N2O,0.6,kg/TJ,2.706492722076,kg -ef6c0cac-2381-372c-bb71-09d6e6970e12,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,bioetanol combustion consumption by to the public,6.198653845889999,TJ,CH4,10.0,kg/TJ,61.98653845889999,kg -9ce8abdc-9e76-3a65-a24f-7700285d82a0,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,bioetanol combustion consumption by to the public,6.198653845889999,TJ,N2O,0.6,kg/TJ,3.719192307533999,kg -9a246e0f-a532-37fa-90d1-1f391a0f3185,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,bioetanol combustion consumption by to the public,6.116559966,TJ,CH4,10.0,kg/TJ,61.16559966,kg -991d0bfd-37e6-3474-9c3c-550764b812bc,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,bioetanol combustion consumption by to the public,6.116559966,TJ,N2O,0.6,kg/TJ,3.6699359795999995,kg -172ef57f-cce6-3a8e-bc80-4dc15db9e55d,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,bioetanol combustion consumption by to the public,0.40773942,TJ,CH4,10.0,kg/TJ,4.0773942000000005,kg -c24b4bc4-43e2-3073-96d8-2e194c9c65a0,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,bioetanol combustion consumption by to the public,0.40773942,TJ,N2O,0.6,kg/TJ,0.244643652,kg -8159a1c4-981c-303a-b5f8-2a06a3621467,SESCO,II.1.1,Córdoba,AR-X,annual,2018,bioetanol combustion consumption by to the public,1.25836821,TJ,CH4,10.0,kg/TJ,12.5836821,kg -f6cfa99c-8a2a-3f0e-a8fc-c2418f1ef406,SESCO,II.1.1,Córdoba,AR-X,annual,2018,bioetanol combustion consumption by to the public,1.25836821,TJ,N2O,0.6,kg/TJ,0.7550209259999999,kg -343e9194-38ab-323a-8576-4a426db2a22f,SESCO,II.1.1,Entre Rios,AR-E,annual,2018,bioetanol combustion consumption by to the public,1.7471868480000001,TJ,CH4,10.0,kg/TJ,17.47186848,kg -81a8a303-57d4-3302-a1c1-57b4c91faa60,SESCO,II.1.1,Entre Rios,AR-E,annual,2018,bioetanol combustion consumption by to the public,1.7471868480000001,TJ,N2O,0.6,kg/TJ,1.0483121088,kg -d888e1a2-6b21-362e-abef-1bab6d43c388,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,bioetanol combustion consumption by to the public,0.03983661,TJ,CH4,10.0,kg/TJ,0.3983661,kg -898962b4-c424-3aaa-8d3a-e19e9170c06c,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,bioetanol combustion consumption by to the public,0.03983661,TJ,N2O,0.6,kg/TJ,0.023901966,kg -a98f2e82-8ea9-3c87-b2ee-d13ee366dadc,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,bioetanol combustion consumption by to the public,0.6159911571,TJ,CH4,10.0,kg/TJ,6.159911570999999,kg -86d649a5-16ec-33bf-b507-29336b4b3fd1,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,bioetanol combustion consumption by to the public,0.6159911571,TJ,N2O,0.6,kg/TJ,0.36959469425999997,kg -536b0e44-c0db-332f-a320-04308ea295f8,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,bioetanol combustion consumption by to the public,0.03280662,TJ,CH4,10.0,kg/TJ,0.32806620000000003,kg -84a376ba-983c-3edf-b35a-91bd7c208954,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,bioetanol combustion consumption by to the public,0.03280662,TJ,N2O,0.6,kg/TJ,0.019683972,kg -69e2d2b9-ec12-3ef6-aab0-a67d6c8913e7,SESCO,II.1.1,Córdoba,AR-X,annual,2018,bioetanol combustion consumption by to the public,0.05623992,TJ,CH4,10.0,kg/TJ,0.5623992,kg -be54e6f0-0ceb-34a7-b1fb-e696139d2de3,SESCO,II.1.1,Córdoba,AR-X,annual,2018,bioetanol combustion consumption by to the public,0.05623992,TJ,N2O,0.6,kg/TJ,0.033743952,kg -d51fc32c-362c-3cd5-b9e5-89012518a844,SESCO,II.1.1,Entre Rios,AR-E,annual,2018,bioetanol combustion consumption by to the public,0.120681495,TJ,CH4,10.0,kg/TJ,1.20681495,kg -2415d196-2a29-31d4-98cb-05e844f7ae27,SESCO,II.1.1,Entre Rios,AR-E,annual,2018,bioetanol combustion consumption by to the public,0.120681495,TJ,N2O,0.6,kg/TJ,0.072408897,kg -98b88e70-7de8-3441-a6d0-1647c2449373,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,bioetanol combustion consumption by to the public,0.08435988,TJ,CH4,10.0,kg/TJ,0.8435988,kg -0e6cbe31-4edb-302c-af92-3d7e33bb4bda,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,bioetanol combustion consumption by to the public,0.08435988,TJ,N2O,0.6,kg/TJ,0.050615928,kg -2237bb90-b5f5-3477-b7d2-9a5d302abdf1,SESCO,II.1.1,Catamarca,AR-K,annual,2018,bioetanol combustion consumption by to the public,18.915734692799997,TJ,CH4,10.0,kg/TJ,189.15734692799998,kg -14a13edd-8a09-3a3a-b728-1fc3624c5591,SESCO,II.1.1,Catamarca,AR-K,annual,2018,bioetanol combustion consumption by to the public,18.915734692799997,TJ,N2O,0.6,kg/TJ,11.349440815679998,kg -8b54baec-267e-32f1-bb2f-95b9d2296ca3,SESCO,II.1.1,Chaco,AR-H,annual,2018,bioetanol combustion consumption by to the public,9.77637276,TJ,CH4,10.0,kg/TJ,97.7637276,kg -8ed92259-9a36-37d0-b660-95dd869de6d6,SESCO,II.1.1,Chaco,AR-H,annual,2018,bioetanol combustion consumption by to the public,9.77637276,TJ,N2O,0.6,kg/TJ,5.865823655999999,kg -486605f3-73e2-3102-bfc0-ee581bea3e11,SESCO,II.1.1,Jujuy,AR-Y,annual,2018,bioetanol combustion consumption by to the public,43.83433098,TJ,CH4,10.0,kg/TJ,438.3433098,kg -c45bcf98-09f9-39a1-8b8e-43a383e448e5,SESCO,II.1.1,Jujuy,AR-Y,annual,2018,bioetanol combustion consumption by to the public,43.83433098,TJ,N2O,0.6,kg/TJ,26.300598587999996,kg -b7eb257b-4fb3-3ab9-ba5a-8d76549da554,SESCO,II.1.1,La Rioja,AR-F,annual,2018,bioetanol combustion consumption by to the public,34.3427196816,TJ,CH4,10.0,kg/TJ,343.427196816,kg -c89ffc19-8443-356e-b486-86cc6782f2c5,SESCO,II.1.1,La Rioja,AR-F,annual,2018,bioetanol combustion consumption by to the public,34.3427196816,TJ,N2O,0.6,kg/TJ,20.605631808960002,kg -fc7804cd-5a54-3328-8210-eb005778f0b6,SESCO,II.1.1,Salta,AR-A,annual,2018,bioetanol combustion consumption by to the public,81.460946457,TJ,CH4,10.0,kg/TJ,814.60946457,kg -8a46fc60-0031-3188-af7d-5f955100da19,SESCO,II.1.1,Salta,AR-A,annual,2018,bioetanol combustion consumption by to the public,81.460946457,TJ,N2O,0.6,kg/TJ,48.8765678742,kg -9608a8ac-d18d-3e9e-bc82-b08d757cb279,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2018,bioetanol combustion consumption by to the public,46.5342689394,TJ,CH4,10.0,kg/TJ,465.342689394,kg -a6443c5a-1099-3fdd-9735-de35b8ccb8d0,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2018,bioetanol combustion consumption by to the public,46.5342689394,TJ,N2O,0.6,kg/TJ,27.92056136364,kg -0e703a16-da5e-3650-9698-8c95464df5d4,SESCO,II.1.1,Tucuman,AR-T,annual,2018,bioetanol combustion consumption by to the public,175.7446415406,TJ,CH4,10.0,kg/TJ,1757.4464154060001,kg -5065916b-cddf-3e26-9fd6-10fadc0cc969,SESCO,II.1.1,Tucuman,AR-T,annual,2018,bioetanol combustion consumption by to the public,175.7446415406,TJ,N2O,0.6,kg/TJ,105.44678492436,kg -a4f748fd-5e07-3c34-8391-acb7012722e7,SESCO,II.1.1,Catamarca,AR-K,annual,2018,bioetanol combustion consumption by to the public,1.6661076299999997,TJ,CH4,10.0,kg/TJ,16.661076299999998,kg -7cbfe923-1156-3cbe-b3d9-b27f19486fc5,SESCO,II.1.1,Catamarca,AR-K,annual,2018,bioetanol combustion consumption by to the public,1.6661076299999997,TJ,N2O,0.6,kg/TJ,0.9996645779999997,kg -d8e2cea5-7a52-3ba3-b2d0-174f8195a2b2,SESCO,II.1.1,Chaco,AR-H,annual,2018,bioetanol combustion consumption by to the public,0.26245296,TJ,CH4,10.0,kg/TJ,2.6245296000000002,kg -57184383-0b87-3c05-b731-6e423fe3b289,SESCO,II.1.1,Chaco,AR-H,annual,2018,bioetanol combustion consumption by to the public,0.26245296,TJ,N2O,0.6,kg/TJ,0.157471776,kg -ee53dd73-a41c-30b8-95b7-1d6939691cab,SESCO,II.1.1,Jujuy,AR-Y,annual,2018,bioetanol combustion consumption by to the public,2.02229379,TJ,CH4,10.0,kg/TJ,20.222937899999998,kg -411c476c-ae74-3612-ad1f-312ae5afc232,SESCO,II.1.1,Jujuy,AR-Y,annual,2018,bioetanol combustion consumption by to the public,2.02229379,TJ,N2O,0.6,kg/TJ,1.213376274,kg -ce2fba5a-2dca-3d39-9055-f00620eac04e,SESCO,II.1.1,La Rioja,AR-F,annual,2018,bioetanol combustion consumption by to the public,2.83777263,TJ,CH4,10.0,kg/TJ,28.3777263,kg -5fc1182e-0062-37eb-b643-898e808b724a,SESCO,II.1.1,La Rioja,AR-F,annual,2018,bioetanol combustion consumption by to the public,2.83777263,TJ,N2O,0.6,kg/TJ,1.702663578,kg -47461dcc-895c-34b2-bf22-c6c8ff87bf21,SESCO,II.1.1,Salta,AR-A,annual,2018,bioetanol combustion consumption by to the public,5.0923138563,TJ,CH4,10.0,kg/TJ,50.923138562999995,kg -516b4a98-85bd-3109-bc24-7ca3d54ea5ac,SESCO,II.1.1,Salta,AR-A,annual,2018,bioetanol combustion consumption by to the public,5.0923138563,TJ,N2O,0.6,kg/TJ,3.0553883137799995,kg -96b5e56b-8012-36eb-b42b-c8e30ac565ac,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2018,bioetanol combustion consumption by to the public,5.8068654732,TJ,CH4,10.0,kg/TJ,58.068654732,kg -5d80a4cd-ef63-3403-967d-1e1005d371c8,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2018,bioetanol combustion consumption by to the public,5.8068654732,TJ,N2O,0.6,kg/TJ,3.48411928392,kg -2282825b-5119-32d1-8b7a-100826072b63,SESCO,II.1.1,Tucuman,AR-T,annual,2018,bioetanol combustion consumption by to the public,12.6710648757,TJ,CH4,10.0,kg/TJ,126.710648757,kg -7c06aa2c-6b17-3682-a8b9-f253959399ee,SESCO,II.1.1,Tucuman,AR-T,annual,2018,bioetanol combustion consumption by to the public,12.6710648757,TJ,N2O,0.6,kg/TJ,7.60263892542,kg -26ee8632-2157-3b93-9b96-50f1f0010055,SESCO,II.5.1,Buenos Aires,AR-B,annual,2018,bioetanol combustion consumption by agriculture machines,0.030463289999999997,TJ,CH4,10.0,kg/TJ,0.3046329,kg -0eb40b7b-8567-3623-9505-5601f7a841ba,SESCO,II.5.1,Buenos Aires,AR-B,annual,2018,bioetanol combustion consumption by agriculture machines,0.030463289999999997,TJ,N2O,0.6,kg/TJ,0.018277974,kg -4695f968-a4d8-3051-94ad-7323b7417557,SESCO,II.5.1,Buenos Aires,AR-B,annual,2018,bioetanol combustion consumption by agriculture machines,0.02811996,TJ,CH4,10.0,kg/TJ,0.2811996,kg -af01abf1-4b4d-3f77-95f8-2be2f8b098a2,SESCO,II.5.1,Buenos Aires,AR-B,annual,2018,bioetanol combustion consumption by agriculture machines,0.02811996,TJ,N2O,0.6,kg/TJ,0.016871976,kg -00b41518-ddf8-3805-840c-0d8ae2c2740a,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,bioetanol combustion consumption by to the public,1256.97861531,TJ,CH4,10.0,kg/TJ,12569.786153099998,kg -b013cf08-bf9c-3ab6-b00e-15852c9c4588,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,bioetanol combustion consumption by to the public,1256.97861531,TJ,N2O,0.6,kg/TJ,754.1871691859999,kg -3386f58b-a97c-3a29-ba81-b52d631aeb57,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,bioetanol combustion consumption by to the public,361.11886964999997,TJ,CH4,10.0,kg/TJ,3611.1886964999994,kg -8379d827-00b4-3f1a-ba1d-cb24a032a557,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,bioetanol combustion consumption by to the public,361.11886964999997,TJ,N2O,0.6,kg/TJ,216.67132178999998,kg -f776b1c2-4c15-31b4-ba00-44165adf29cb,SESCO,II.1.1,Catamarca,AR-K,annual,2018,bioetanol combustion consumption by to the public,3.09085227,TJ,CH4,10.0,kg/TJ,30.9085227,kg -7dd9d8ff-4e54-33e8-a4cf-dcd79798d24f,SESCO,II.1.1,Catamarca,AR-K,annual,2018,bioetanol combustion consumption by to the public,3.09085227,TJ,N2O,0.6,kg/TJ,1.854511362,kg -9ca58856-fb6b-39f8-8aa1-1e1470f23b9e,SESCO,II.1.1,Chaco,AR-H,annual,2018,bioetanol combustion consumption by to the public,70.61156289,TJ,CH4,10.0,kg/TJ,706.1156289,kg -e1ac34a1-12a0-3d3d-9fae-4ad2c95eccdb,SESCO,II.1.1,Chaco,AR-H,annual,2018,bioetanol combustion consumption by to the public,70.61156289,TJ,N2O,0.6,kg/TJ,42.366937734,kg -770dd1a7-06aa-3ff3-ac4f-ead632c75717,SESCO,II.1.1,Corrientes,AR-W,annual,2018,bioetanol combustion consumption by to the public,64.38767840999999,TJ,CH4,10.0,kg/TJ,643.8767840999999,kg -fedbbfb0-8db3-37e0-95d1-b77b8cb8b198,SESCO,II.1.1,Corrientes,AR-W,annual,2018,bioetanol combustion consumption by to the public,64.38767840999999,TJ,N2O,0.6,kg/TJ,38.632607046,kg -4e4d4fd8-79b2-3406-b9a1-567d8495ab36,SESCO,II.1.1,Córdoba,AR-X,annual,2018,bioetanol combustion consumption by to the public,306.38571084,TJ,CH4,10.0,kg/TJ,3063.8571084,kg -597e1c45-186b-3a65-847f-b91c3e93bb91,SESCO,II.1.1,Córdoba,AR-X,annual,2018,bioetanol combustion consumption by to the public,306.38571084,TJ,N2O,0.6,kg/TJ,183.831426504,kg -ea47ea85-53ac-33dc-8621-b14e7248bdf8,SESCO,II.1.1,Entre Rios,AR-E,annual,2018,bioetanol combustion consumption by to the public,70.26709337999999,TJ,CH4,10.0,kg/TJ,702.6709338,kg -762a9595-77b5-3a3c-bcc2-49ffd65127a9,SESCO,II.1.1,Entre Rios,AR-E,annual,2018,bioetanol combustion consumption by to the public,70.26709337999999,TJ,N2O,0.6,kg/TJ,42.16025602799999,kg -e64ff7c4-960d-3d68-9f27-f41aab99a3c7,SESCO,II.1.1,Formosa,AR-P,annual,2018,bioetanol combustion consumption by to the public,28.733912459999996,TJ,CH4,10.0,kg/TJ,287.33912459999993,kg -1e192e13-9a75-3675-9326-61ce4243e08b,SESCO,II.1.1,Formosa,AR-P,annual,2018,bioetanol combustion consumption by to the public,28.733912459999996,TJ,N2O,0.6,kg/TJ,17.240347475999997,kg -e8897078-b522-3c6a-bef2-8cc1e7cf9435,SESCO,II.1.1,Jujuy,AR-Y,annual,2018,bioetanol combustion consumption by to the public,13.8490803,TJ,CH4,10.0,kg/TJ,138.490803,kg -b2bd4747-ef8d-3e8e-ad64-33f116656c51,SESCO,II.1.1,Jujuy,AR-Y,annual,2018,bioetanol combustion consumption by to the public,13.8490803,TJ,N2O,0.6,kg/TJ,8.30944818,kg -37cc177a-6477-3212-816a-e7c24b481db7,SESCO,II.1.1,La Pampa,AR-L,annual,2018,bioetanol combustion consumption by to the public,25.60088025,TJ,CH4,10.0,kg/TJ,256.0088025,kg -272f96ed-5af1-3992-9cd8-7ca0c411d77e,SESCO,II.1.1,La Pampa,AR-L,annual,2018,bioetanol combustion consumption by to the public,25.60088025,TJ,N2O,0.6,kg/TJ,15.360528149999999,kg -a7d925eb-ee83-379e-9e8a-3f5e6f49b81f,SESCO,II.1.1,La Rioja,AR-F,annual,2018,bioetanol combustion consumption by to the public,21.354766289999997,TJ,CH4,10.0,kg/TJ,213.54766289999998,kg -3b94988a-82a3-3658-94d3-364b483d0a3f,SESCO,II.1.1,La Rioja,AR-F,annual,2018,bioetanol combustion consumption by to the public,21.354766289999997,TJ,N2O,0.6,kg/TJ,12.812859773999998,kg -de53c326-943c-3678-9eab-b4d87691a08a,SESCO,II.1.1,Mendoza,AR-M,annual,2018,bioetanol combustion consumption by to the public,97.73795096999999,TJ,CH4,10.0,kg/TJ,977.3795096999999,kg -6a6755e3-341a-3956-adb3-e2cb77d7dbe3,SESCO,II.1.1,Mendoza,AR-M,annual,2018,bioetanol combustion consumption by to the public,97.73795096999999,TJ,N2O,0.6,kg/TJ,58.64277058199999,kg -6b21c03b-c3b1-3524-bc7c-cb6d60ef9473,SESCO,II.1.1,Misiones,AR-N,annual,2018,bioetanol combustion consumption by to the public,91.17428364,TJ,CH4,10.0,kg/TJ,911.7428364,kg -0a75f690-cf81-3039-b981-3dc7f1a7ab0b,SESCO,II.1.1,Misiones,AR-N,annual,2018,bioetanol combustion consumption by to the public,91.17428364,TJ,N2O,0.6,kg/TJ,54.704570184,kg -7e8caef5-210a-31e0-938e-a3732b1d3918,SESCO,II.1.1,Neuquén,AR-Q,annual,2018,bioetanol combustion consumption by to the public,38.976607890000004,TJ,CH4,10.0,kg/TJ,389.7660789,kg -e83c7e09-1920-354c-96d1-cf5d43fc1d3b,SESCO,II.1.1,Neuquén,AR-Q,annual,2018,bioetanol combustion consumption by to the public,38.976607890000004,TJ,N2O,0.6,kg/TJ,23.385964734,kg -ffd90e0c-6152-312a-8dcc-b8087d9ac8ed,SESCO,II.1.1,Rio Negro,AR-R,annual,2018,bioetanol combustion consumption by to the public,12.5836821,TJ,CH4,10.0,kg/TJ,125.83682100000001,kg -914e193a-0a57-357a-b156-2f00a589e09b,SESCO,II.1.1,Rio Negro,AR-R,annual,2018,bioetanol combustion consumption by to the public,12.5836821,TJ,N2O,0.6,kg/TJ,7.55020926,kg -543f2b53-18e6-3b0a-94f4-162fbfa55a26,SESCO,II.1.1,Salta,AR-A,annual,2018,bioetanol combustion consumption by to the public,17.38047861,TJ,CH4,10.0,kg/TJ,173.8047861,kg -bf874cf5-a293-3ef5-b53f-34ad33787867,SESCO,II.1.1,Salta,AR-A,annual,2018,bioetanol combustion consumption by to the public,17.38047861,TJ,N2O,0.6,kg/TJ,10.428287166,kg -3d0b6e22-79ee-37c0-b5ed-29d3cdb20922,SESCO,II.1.1,San Juan,AR-J,annual,2018,bioetanol combustion consumption by to the public,18.25922736,TJ,CH4,10.0,kg/TJ,182.5922736,kg -eb3c6423-cf84-3dd9-817c-4a315d063121,SESCO,II.1.1,San Juan,AR-J,annual,2018,bioetanol combustion consumption by to the public,18.25922736,TJ,N2O,0.6,kg/TJ,10.955536416,kg -19e55d97-9bbe-3edb-aade-00b6456769d8,SESCO,II.1.1,San Luis,AR-D,annual,2018,bioetanol combustion consumption by to the public,9.438933239999999,TJ,CH4,10.0,kg/TJ,94.38933239999999,kg -479fe8a4-5e97-303b-bade-ab89258372e7,SESCO,II.1.1,San Luis,AR-D,annual,2018,bioetanol combustion consumption by to the public,9.438933239999999,TJ,N2O,0.6,kg/TJ,5.663359943999999,kg -595f5095-69ef-3f40-b489-43c8bf9dae29,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,bioetanol combustion consumption by to the public,274.31958312,TJ,CH4,10.0,kg/TJ,2743.1958312,kg -a69be76a-6fe8-3ba2-9fd2-4e4ca566c4eb,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,bioetanol combustion consumption by to the public,274.31958312,TJ,N2O,0.6,kg/TJ,164.591749872,kg -2ea7575b-1f44-3fdd-b367-ef7983a26527,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2018,bioetanol combustion consumption by to the public,27.35603442,TJ,CH4,10.0,kg/TJ,273.56034420000003,kg -618a4bfa-fe20-34eb-af9b-1b613563693b,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2018,bioetanol combustion consumption by to the public,27.35603442,TJ,N2O,0.6,kg/TJ,16.413620652,kg -07316b21-bdfb-3ffe-88a7-b77685d69b31,SESCO,II.1.1,Tucuman,AR-T,annual,2018,bioetanol combustion consumption by to the public,67.04735796,TJ,CH4,10.0,kg/TJ,670.4735796,kg -06c6eca1-4a30-3a87-bbdc-61655194cf68,SESCO,II.1.1,Tucuman,AR-T,annual,2018,bioetanol combustion consumption by to the public,67.04735796,TJ,N2O,0.6,kg/TJ,40.228414776,kg -1500e8f6-5b21-3784-84d9-8bf4485a2d10,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,bioetanol combustion consumption by to the public,665.5994532,TJ,CH4,10.0,kg/TJ,6655.994532,kg -bcec63e4-0c1a-3a78-bda2-9d7ec27252e0,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,bioetanol combustion consumption by to the public,665.5994532,TJ,N2O,0.6,kg/TJ,399.35967192,kg -7448ec3e-0472-3a35-9838-de1038d65fea,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,bioetanol combustion consumption by to the public,265.74533864999995,TJ,CH4,10.0,kg/TJ,2657.4533864999994,kg -f2b420b3-c16d-35c6-850b-b2d1a7506261,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,bioetanol combustion consumption by to the public,265.74533864999995,TJ,N2O,0.6,kg/TJ,159.44720318999995,kg -f9dee4a7-d804-311e-931c-c419a72e3497,SESCO,II.1.1,Catamarca,AR-K,annual,2018,bioetanol combustion consumption by to the public,2.83074264,TJ,CH4,10.0,kg/TJ,28.3074264,kg -9835e430-f82b-3116-ae6a-747da20c8095,SESCO,II.1.1,Catamarca,AR-K,annual,2018,bioetanol combustion consumption by to the public,2.83074264,TJ,N2O,0.6,kg/TJ,1.698445584,kg -d85e33da-5352-35e7-b224-b73f731a5a6c,SESCO,II.1.1,Chaco,AR-H,annual,2018,bioetanol combustion consumption by to the public,27.784863809999997,TJ,CH4,10.0,kg/TJ,277.84863809999996,kg -9ec8b527-ba0c-36c2-8597-2f64662f4823,SESCO,II.1.1,Chaco,AR-H,annual,2018,bioetanol combustion consumption by to the public,27.784863809999997,TJ,N2O,0.6,kg/TJ,16.670918286,kg -c1422360-6a33-3f11-93b7-37168cbcd93c,SESCO,II.1.1,Corrientes,AR-W,annual,2018,bioetanol combustion consumption by to the public,27.660667319999998,TJ,CH4,10.0,kg/TJ,276.6066732,kg -662aaba7-65fb-3618-a23d-65518793d22c,SESCO,II.1.1,Corrientes,AR-W,annual,2018,bioetanol combustion consumption by to the public,27.660667319999998,TJ,N2O,0.6,kg/TJ,16.596400392,kg -42577bec-7f53-327d-b497-296bfe03389d,SESCO,II.1.1,Córdoba,AR-X,annual,2018,bioetanol combustion consumption by to the public,148.24374246,TJ,CH4,10.0,kg/TJ,1482.4374246,kg -da120505-55a6-3b89-9989-4dd484fcb747,SESCO,II.1.1,Córdoba,AR-X,annual,2018,bioetanol combustion consumption by to the public,148.24374246,TJ,N2O,0.6,kg/TJ,88.94624547599999,kg -7677c300-1ce8-3482-8db2-7714967eba86,SESCO,II.1.1,Entre Rios,AR-E,annual,2018,bioetanol combustion consumption by to the public,28.72453914,TJ,CH4,10.0,kg/TJ,287.2453914,kg -13e2a116-02c9-337c-a8ce-cac0f974ae0c,SESCO,II.1.1,Entre Rios,AR-E,annual,2018,bioetanol combustion consumption by to the public,28.72453914,TJ,N2O,0.6,kg/TJ,17.234723484,kg -58bf1a2c-564f-3c38-aaef-25a95701ffef,SESCO,II.1.1,Formosa,AR-P,annual,2018,bioetanol combustion consumption by to the public,13.450714199999998,TJ,CH4,10.0,kg/TJ,134.507142,kg -991cfda9-776b-32d8-9db6-c42ea4e5fdee,SESCO,II.1.1,Formosa,AR-P,annual,2018,bioetanol combustion consumption by to the public,13.450714199999998,TJ,N2O,0.6,kg/TJ,8.070428519999998,kg -bff89808-2915-35f8-88e3-712f4fa055dc,SESCO,II.1.1,Jujuy,AR-Y,annual,2018,bioetanol combustion consumption by to the public,3.20567544,TJ,CH4,10.0,kg/TJ,32.056754399999996,kg -9a204c27-e41a-3a8f-b8df-c6594399e780,SESCO,II.1.1,Jujuy,AR-Y,annual,2018,bioetanol combustion consumption by to the public,3.20567544,TJ,N2O,0.6,kg/TJ,1.923405264,kg -45fa5952-1a0e-3b40-9d6f-fe0af93c6ca8,SESCO,II.1.1,La Pampa,AR-L,annual,2018,bioetanol combustion consumption by to the public,15.70734099,TJ,CH4,10.0,kg/TJ,157.0734099,kg -9c390901-9c1c-3c7b-a0c6-ff2850b0defe,SESCO,II.1.1,La Pampa,AR-L,annual,2018,bioetanol combustion consumption by to the public,15.70734099,TJ,N2O,0.6,kg/TJ,9.424404594,kg -d243efe1-8890-3b37-86b5-ec52612d0af7,SESCO,II.1.1,La Rioja,AR-F,annual,2018,bioetanol combustion consumption by to the public,7.594732529999999,TJ,CH4,10.0,kg/TJ,75.94732529999999,kg -6352dce2-8228-3ab8-9132-630f1aee2e23,SESCO,II.1.1,La Rioja,AR-F,annual,2018,bioetanol combustion consumption by to the public,7.594732529999999,TJ,N2O,0.6,kg/TJ,4.556839517999999,kg -6449e173-7a1b-3d16-a99e-db54270a43b5,SESCO,II.1.1,Mendoza,AR-M,annual,2018,bioetanol combustion consumption by to the public,44.79978294,TJ,CH4,10.0,kg/TJ,447.9978294,kg -1d55c85d-2e80-3d24-b2fe-243426559cbd,SESCO,II.1.1,Mendoza,AR-M,annual,2018,bioetanol combustion consumption by to the public,44.79978294,TJ,N2O,0.6,kg/TJ,26.879869764,kg -0d0d454a-d46d-3878-92c0-5d67d371f52e,SESCO,II.1.1,Misiones,AR-N,annual,2018,bioetanol combustion consumption by to the public,22.652971110000003,TJ,CH4,10.0,kg/TJ,226.52971110000004,kg -f2964d4f-8e10-3a78-9331-994705c5bbfb,SESCO,II.1.1,Misiones,AR-N,annual,2018,bioetanol combustion consumption by to the public,22.652971110000003,TJ,N2O,0.6,kg/TJ,13.591782666000002,kg -d1a8bb26-59f2-30f5-b6ca-1cf45cd80e8d,SESCO,II.1.1,Neuquén,AR-Q,annual,2018,bioetanol combustion consumption by to the public,28.422249569999998,TJ,CH4,10.0,kg/TJ,284.22249569999997,kg -9cffa5a6-0124-3a89-9846-68a3cb1abca7,SESCO,II.1.1,Neuquén,AR-Q,annual,2018,bioetanol combustion consumption by to the public,28.422249569999998,TJ,N2O,0.6,kg/TJ,17.053349741999998,kg -fb6444c7-2f76-3ca2-9c6d-7f9e0fc4d211,SESCO,II.1.1,Rio Negro,AR-R,annual,2018,bioetanol combustion consumption by to the public,6.80034366,TJ,CH4,10.0,kg/TJ,68.0034366,kg -54380087-69b8-3a25-b793-fee81ca8a58e,SESCO,II.1.1,Rio Negro,AR-R,annual,2018,bioetanol combustion consumption by to the public,6.80034366,TJ,N2O,0.6,kg/TJ,4.080206196,kg -a1063a88-958b-34d5-b4b7-f73bcc8efc33,SESCO,II.1.1,Salta,AR-A,annual,2018,bioetanol combustion consumption by to the public,9.05462712,TJ,CH4,10.0,kg/TJ,90.54627119999999,kg -7f56d513-f5d9-3706-94e0-6ffcbd6c5133,SESCO,II.1.1,Salta,AR-A,annual,2018,bioetanol combustion consumption by to the public,9.05462712,TJ,N2O,0.6,kg/TJ,5.432776271999999,kg -602b978b-3d68-3ec7-a0dc-820b51dc476a,SESCO,II.1.1,San Juan,AR-J,annual,2018,bioetanol combustion consumption by to the public,3.77979129,TJ,CH4,10.0,kg/TJ,37.7979129,kg -1305824f-7519-3bfd-a914-1d9689ef9cc6,SESCO,II.1.1,San Juan,AR-J,annual,2018,bioetanol combustion consumption by to the public,3.77979129,TJ,N2O,0.6,kg/TJ,2.267874774,kg -3ab55622-f1f2-3733-8921-ecbb003d458c,SESCO,II.1.1,San Luis,AR-D,annual,2018,bioetanol combustion consumption by to the public,4.74524325,TJ,CH4,10.0,kg/TJ,47.4524325,kg -e518b3a8-7ef0-3fe0-a503-b5b70eead658,SESCO,II.1.1,San Luis,AR-D,annual,2018,bioetanol combustion consumption by to the public,4.74524325,TJ,N2O,0.6,kg/TJ,2.84714595,kg -e3ac06fb-e20d-30e0-ba60-f8cbbc9f62b7,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,bioetanol combustion consumption by to the public,140.46388686,TJ,CH4,10.0,kg/TJ,1404.6388686,kg -b88704fb-8215-3605-83cc-a87354378717,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,bioetanol combustion consumption by to the public,140.46388686,TJ,N2O,0.6,kg/TJ,84.278332116,kg -6b92c0bb-cb71-3aaa-abc6-b32fca899084,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2018,bioetanol combustion consumption by to the public,13.028914799999999,TJ,CH4,10.0,kg/TJ,130.28914799999998,kg -66101669-582e-35b3-a49d-f20117a4def7,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2018,bioetanol combustion consumption by to the public,13.028914799999999,TJ,N2O,0.6,kg/TJ,7.817348879999999,kg -54ade29f-04e2-3bb9-8d19-68766d4af1ba,SESCO,II.1.1,Tucuman,AR-T,annual,2018,bioetanol combustion consumption by to the public,22.4022348,TJ,CH4,10.0,kg/TJ,224.022348,kg -31ab3c51-13ee-3021-90a9-be52d906c37d,SESCO,II.1.1,Tucuman,AR-T,annual,2018,bioetanol combustion consumption by to the public,22.4022348,TJ,N2O,0.6,kg/TJ,13.441340879999998,kg -72793fd5-3940-3b29-8ad9-a21d5d96e7d0,SESCO,II.5.1,Buenos Aires,AR-B,annual,2018,bioetanol combustion consumption by agriculture machines,3.95382806577,TJ,CH4,10.0,kg/TJ,39.5382806577,kg -d4ebec83-aacc-331b-b4bd-85cf5258f49a,SESCO,II.5.1,Buenos Aires,AR-B,annual,2018,bioetanol combustion consumption by agriculture machines,3.95382806577,TJ,N2O,0.6,kg/TJ,2.372296839462,kg -c8db28ee-72d0-3f76-aaca-9f7eb676be87,SESCO,II.5.1,Capital Federal,AR-C,annual,2018,bioetanol combustion consumption by agriculture machines,0.7232359978799999,TJ,CH4,10.0,kg/TJ,7.232359978799999,kg -3708d935-e11b-346f-ba4b-9256116d23de,SESCO,II.5.1,Capital Federal,AR-C,annual,2018,bioetanol combustion consumption by agriculture machines,0.7232359978799999,TJ,N2O,0.6,kg/TJ,0.4339415987279999,kg -071be070-eb10-3d82-ba02-c5e91a1e0598,SESCO,II.5.1,Entre Rios,AR-E,annual,2018,bioetanol combustion consumption by agriculture machines,0.36278497728,TJ,CH4,10.0,kg/TJ,3.6278497728,kg -2b08d5e9-1d6a-3339-83e7-b46ee8f49d16,SESCO,II.5.1,Entre Rios,AR-E,annual,2018,bioetanol combustion consumption by agriculture machines,0.36278497728,TJ,N2O,0.6,kg/TJ,0.21767098636799997,kg -d41ff1ce-3b60-39ae-bcbe-a003b01b75b5,SESCO,II.5.1,Santa Fe,AR-S,annual,2018,bioetanol combustion consumption by agriculture machines,1.6210946040299998,TJ,CH4,10.0,kg/TJ,16.210946040299998,kg -b9a65724-cd3d-35cb-8b16-3dbb175c76d3,SESCO,II.5.1,Santa Fe,AR-S,annual,2018,bioetanol combustion consumption by agriculture machines,1.6210946040299998,TJ,N2O,0.6,kg/TJ,0.9726567624179998,kg -e6c8dbd2-9fe3-3d08-9aaf-1d17bfbb2b36,SESCO,II.5.1,Tucuman,AR-T,annual,2018,bioetanol combustion consumption by agriculture machines,0.38563947477,TJ,CH4,10.0,kg/TJ,3.8563947477,kg -3fd51439-937f-3a21-bd38-7d4358f60f73,SESCO,II.5.1,Tucuman,AR-T,annual,2018,bioetanol combustion consumption by agriculture machines,0.38563947477,TJ,N2O,0.6,kg/TJ,0.23138368486199998,kg -df165dfc-4e83-39f5-9924-96b181d96eee,SESCO,II.5.1,Buenos Aires,AR-B,annual,2018,bioetanol combustion consumption by agriculture machines,0.37788539579999997,TJ,CH4,10.0,kg/TJ,3.7788539579999996,kg -6815d499-2f48-3c57-9a6a-8b3e44dca325,SESCO,II.5.1,Buenos Aires,AR-B,annual,2018,bioetanol combustion consumption by agriculture machines,0.37788539579999997,TJ,N2O,0.6,kg/TJ,0.22673123747999996,kg -6a8cb516-a5d7-34ed-ba3e-e21f37cea78e,SESCO,II.5.1,Capital Federal,AR-C,annual,2018,bioetanol combustion consumption by agriculture machines,0.056235233339999996,TJ,CH4,10.0,kg/TJ,0.5623523334,kg -f871bc26-6c3e-3668-aaf4-c05e1ae914bd,SESCO,II.5.1,Capital Federal,AR-C,annual,2018,bioetanol combustion consumption by agriculture machines,0.056235233339999996,TJ,N2O,0.6,kg/TJ,0.033741140004,kg -8252282c-d7de-38e3-b9fe-adae1dc7e9e2,SESCO,II.5.1,Entre Rios,AR-E,annual,2018,bioetanol combustion consumption by agriculture machines,0.03544755291,TJ,CH4,10.0,kg/TJ,0.3544755291,kg -4f363fe1-d9a1-38b3-878d-b43ae9892db0,SESCO,II.5.1,Entre Rios,AR-E,annual,2018,bioetanol combustion consumption by agriculture machines,0.03544755291,TJ,N2O,0.6,kg/TJ,0.021268531745999998,kg -3e4e9e97-ae99-3f57-af00-fefe75f813d3,SESCO,II.5.1,Santa Fe,AR-S,annual,2018,bioetanol combustion consumption by agriculture machines,0.09346606038,TJ,CH4,10.0,kg/TJ,0.9346606037999999,kg -53978efa-1e5d-3535-bbb9-c5efe3ac268d,SESCO,II.5.1,Santa Fe,AR-S,annual,2018,bioetanol combustion consumption by agriculture machines,0.09346606038,TJ,N2O,0.6,kg/TJ,0.056079636227999996,kg -3d0b66bb-0f09-3bd7-aac8-60db8076d790,SESCO,II.5.1,Tucuman,AR-T,annual,2018,bioetanol combustion consumption by agriculture machines,0.02483226801,TJ,CH4,10.0,kg/TJ,0.24832268009999997,kg -102735f7-bcb8-321e-b587-cac4170a2469,SESCO,II.5.1,Tucuman,AR-T,annual,2018,bioetanol combustion consumption by agriculture machines,0.02483226801,TJ,N2O,0.6,kg/TJ,0.014899360805999998,kg -441407e0-4418-3385-ae15-7fe801780b4e,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,bioetanol combustion consumption by to the public,262.62522053162996,TJ,CH4,10.0,kg/TJ,2626.2522053162998,kg -e89ea21a-f877-34a0-b13b-506e038baa28,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,bioetanol combustion consumption by to the public,262.62522053162996,TJ,N2O,0.6,kg/TJ,157.57513231897798,kg -0154b562-f653-318b-b988-b82ee906b2f7,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,bioetanol combustion consumption by to the public,12.78246912723,TJ,CH4,10.0,kg/TJ,127.8246912723,kg -169100dd-8b43-3262-a1bc-3bc2c54946f5,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,bioetanol combustion consumption by to the public,12.78246912723,TJ,N2O,0.6,kg/TJ,7.6694814763379995,kg -ab954bfe-56ab-3a2b-8131-705fdcf40e14,SESCO,II.1.1,Catamarca,AR-K,annual,2018,bioetanol combustion consumption by to the public,0.9505929044699999,TJ,CH4,10.0,kg/TJ,9.505929044699998,kg -8420ef0e-3d08-3829-9fc9-e3bc98832037,SESCO,II.1.1,Catamarca,AR-K,annual,2018,bioetanol combustion consumption by to the public,0.9505929044699999,TJ,N2O,0.6,kg/TJ,0.570355742682,kg -e5327e72-153d-352e-838c-b4cbeec77b39,SESCO,II.1.1,Chaco,AR-H,annual,2018,bioetanol combustion consumption by to the public,1.36130835357,TJ,CH4,10.0,kg/TJ,13.6130835357,kg -47e6d0d6-8bce-3f1f-92d0-9eb8ed78f528,SESCO,II.1.1,Chaco,AR-H,annual,2018,bioetanol combustion consumption by to the public,1.36130835357,TJ,N2O,0.6,kg/TJ,0.8167850121419999,kg -269b00f8-c9a6-3e0f-9bc3-5e82ee6915c4,SESCO,II.1.1,Chubut,AR-U,annual,2018,bioetanol combustion consumption by to the public,6.694190810999999,TJ,CH4,10.0,kg/TJ,66.94190810999999,kg -a700aa3a-67a4-3dab-a7b0-bb6781563c82,SESCO,II.1.1,Chubut,AR-U,annual,2018,bioetanol combustion consumption by to the public,6.694190810999999,TJ,N2O,0.6,kg/TJ,4.016514486599999,kg -bd82b76b-9cb4-3a10-bd11-97028051e73b,SESCO,II.1.1,Corrientes,AR-W,annual,2018,bioetanol combustion consumption by to the public,9.64591489224,TJ,CH4,10.0,kg/TJ,96.4591489224,kg -0da0325a-b253-30d4-923b-494f456bc9d1,SESCO,II.1.1,Corrientes,AR-W,annual,2018,bioetanol combustion consumption by to the public,9.64591489224,TJ,N2O,0.6,kg/TJ,5.787548935344,kg -5fff1837-8496-3c3c-be69-7e6ca9ad6f8a,SESCO,II.1.1,Córdoba,AR-X,annual,2018,bioetanol combustion consumption by to the public,19.999597461029996,TJ,CH4,10.0,kg/TJ,199.99597461029995,kg -ad0c8439-f94e-3dc9-bcbe-10cac2b51cb9,SESCO,II.1.1,Córdoba,AR-X,annual,2018,bioetanol combustion consumption by to the public,19.999597461029996,TJ,N2O,0.6,kg/TJ,11.999758476617997,kg -6170dfdb-adfe-31f0-bab2-09404fe89eaf,SESCO,II.1.1,Entre Rios,AR-E,annual,2018,bioetanol combustion consumption by to the public,17.911723237649998,TJ,CH4,10.0,kg/TJ,179.11723237649997,kg -d0633aef-d019-3cc8-b9af-a92731c641b7,SESCO,II.1.1,Entre Rios,AR-E,annual,2018,bioetanol combustion consumption by to the public,17.911723237649998,TJ,N2O,0.6,kg/TJ,10.747033942589999,kg -d756804a-0e71-32ba-8172-6e19f2911eff,SESCO,II.1.1,Formosa,AR-P,annual,2018,bioetanol combustion consumption by to the public,0.34412035383,TJ,CH4,10.0,kg/TJ,3.4412035383,kg -54e540bc-3a07-3001-8c72-bc2e632ade23,SESCO,II.1.1,Formosa,AR-P,annual,2018,bioetanol combustion consumption by to the public,0.34412035383,TJ,N2O,0.6,kg/TJ,0.206472212298,kg -5bce4a0f-b794-3efe-85e5-fb2fb0c28949,SESCO,II.1.1,Jujuy,AR-Y,annual,2018,bioetanol combustion consumption by to the public,2.4410866976100003,TJ,CH4,10.0,kg/TJ,24.410866976100003,kg -58830290-40b6-3ae7-8591-7cd81c71676d,SESCO,II.1.1,Jujuy,AR-Y,annual,2018,bioetanol combustion consumption by to the public,2.4410866976100003,TJ,N2O,0.6,kg/TJ,1.4646520185660001,kg -8e9d87a1-38ad-36a4-ba39-ea1cf1adc622,SESCO,II.1.1,La Pampa,AR-L,annual,2018,bioetanol combustion consumption by to the public,15.20116062003,TJ,CH4,10.0,kg/TJ,152.0116062003,kg -24b2e280-237e-3a42-9d4d-b2e0d4db765b,SESCO,II.1.1,La Pampa,AR-L,annual,2018,bioetanol combustion consumption by to the public,15.20116062003,TJ,N2O,0.6,kg/TJ,9.120696372018,kg -b899bf53-3cbf-396b-b09b-238e271605e5,SESCO,II.1.1,Mendoza,AR-M,annual,2018,bioetanol combustion consumption by to the public,1.09998956529,TJ,CH4,10.0,kg/TJ,10.999895652900001,kg -cfc91de0-80c6-3b56-a046-f45e1d72c252,SESCO,II.1.1,Mendoza,AR-M,annual,2018,bioetanol combustion consumption by to the public,1.09998956529,TJ,N2O,0.6,kg/TJ,0.659993739174,kg -2f8fc6ba-9c57-39ee-be61-dad334564154,SESCO,II.1.1,Misiones,AR-N,annual,2018,bioetanol combustion consumption by to the public,4.236555516929999,TJ,CH4,10.0,kg/TJ,42.365555169299995,kg -126ec0c4-4096-3089-b854-429fa6f1816a,SESCO,II.1.1,Misiones,AR-N,annual,2018,bioetanol combustion consumption by to the public,4.236555516929999,TJ,N2O,0.6,kg/TJ,2.5419333101579995,kg -92833b54-55ce-3f89-8482-256059bec881,SESCO,II.1.1,Neuquén,AR-Q,annual,2018,bioetanol combustion consumption by to the public,23.331374518320004,TJ,CH4,10.0,kg/TJ,233.31374518320004,kg -2493dba6-a31b-3b7d-a822-1951b7a06e47,SESCO,II.1.1,Neuquén,AR-Q,annual,2018,bioetanol combustion consumption by to the public,23.331374518320004,TJ,N2O,0.6,kg/TJ,13.998824710992002,kg -afd68bd5-eb82-39b2-866b-abfa97f77e75,SESCO,II.1.1,Rio Negro,AR-R,annual,2018,bioetanol combustion consumption by to the public,43.223987248200004,TJ,CH4,10.0,kg/TJ,432.239872482,kg -0755c56c-8dd7-3466-b29f-a977b32e9cf4,SESCO,II.1.1,Rio Negro,AR-R,annual,2018,bioetanol combustion consumption by to the public,43.223987248200004,TJ,N2O,0.6,kg/TJ,25.934392348920003,kg -f9a01cbd-029e-3c26-ad76-a5d7868fc582,SESCO,II.1.1,San Luis,AR-D,annual,2018,bioetanol combustion consumption by to the public,2.2236350469299997,TJ,CH4,10.0,kg/TJ,22.236350469299996,kg -15f17b66-c8d9-3075-833a-ff906844c8bf,SESCO,II.1.1,San Luis,AR-D,annual,2018,bioetanol combustion consumption by to the public,2.2236350469299997,TJ,N2O,0.6,kg/TJ,1.3341810281579998,kg -899a5550-9b5a-3601-b1c8-9a83fa6e3ddb,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,bioetanol combustion consumption by to the public,35.03266867683,TJ,CH4,10.0,kg/TJ,350.32668676829996,kg -d0cd59e8-160d-3d5e-97ec-8cca71f20268,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,bioetanol combustion consumption by to the public,35.03266867683,TJ,N2O,0.6,kg/TJ,21.019601206098,kg -7207a159-bb68-3ca5-8103-c02a6216af4f,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2018,bioetanol combustion consumption by to the public,11.125289584529998,TJ,CH4,10.0,kg/TJ,111.25289584529997,kg -67bd34ea-4136-3bd3-9086-8a0a43e68f12,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2018,bioetanol combustion consumption by to the public,11.125289584529998,TJ,N2O,0.6,kg/TJ,6.675173750717999,kg -48afe241-e331-3505-a609-6be99cd70b7d,SESCO,II.1.1,Tucuman,AR-T,annual,2018,bioetanol combustion consumption by to the public,1.85114165346,TJ,CH4,10.0,kg/TJ,18.511416534600002,kg -df3908b4-6442-3056-a938-a6fed06553f4,SESCO,II.1.1,Tucuman,AR-T,annual,2018,bioetanol combustion consumption by to the public,1.85114165346,TJ,N2O,0.6,kg/TJ,1.110684992076,kg -b365cc0f-a541-3a67-b046-4dc5845a4e94,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,bioetanol combustion consumption by to the public,44.219780645040004,TJ,CH4,10.0,kg/TJ,442.19780645040004,kg -335c22fa-7dd7-3718-91c3-bba55d020179,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,bioetanol combustion consumption by to the public,44.219780645040004,TJ,N2O,0.6,kg/TJ,26.531868387024,kg -eb8c175e-59ca-3e18-ae09-5b0db1ee94e8,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,bioetanol combustion consumption by to the public,2.14502569875,TJ,CH4,10.0,kg/TJ,21.4502569875,kg -be737e36-f8b2-3711-b037-a14829661284,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,bioetanol combustion consumption by to the public,2.14502569875,TJ,N2O,0.6,kg/TJ,1.28701541925,kg -e7138a74-f7dd-3b69-843e-af0120633417,SESCO,II.1.1,Catamarca,AR-K,annual,2018,bioetanol combustion consumption by to the public,0.1293752493,TJ,CH4,10.0,kg/TJ,1.293752493,kg -dd00d326-0669-3b73-81c7-1ce849fe4561,SESCO,II.1.1,Catamarca,AR-K,annual,2018,bioetanol combustion consumption by to the public,0.1293752493,TJ,N2O,0.6,kg/TJ,0.07762514958,kg -096394fe-909c-34e6-a780-96060ed829ba,SESCO,II.1.1,Chaco,AR-H,annual,2018,bioetanol combustion consumption by to the public,0.22744595313,TJ,CH4,10.0,kg/TJ,2.2744595313,kg -86031ca9-0123-343b-8332-cf0b0ef9bfe9,SESCO,II.1.1,Chaco,AR-H,annual,2018,bioetanol combustion consumption by to the public,0.22744595313,TJ,N2O,0.6,kg/TJ,0.136467571878,kg -1f7aaa66-3781-3514-bf45-f130fe7d6caf,SESCO,II.1.1,Chubut,AR-U,annual,2018,bioetanol combustion consumption by to the public,0.9999246876300001,TJ,CH4,10.0,kg/TJ,9.9992468763,kg -84d94ea0-b508-34f2-8cd4-0806871e2dba,SESCO,II.1.1,Chubut,AR-U,annual,2018,bioetanol combustion consumption by to the public,0.9999246876300001,TJ,N2O,0.6,kg/TJ,0.599954812578,kg -879e7264-4ea5-3a1e-9682-ee698f8320e8,SESCO,II.1.1,Corrientes,AR-W,annual,2018,bioetanol combustion consumption by to the public,0.7334435433600001,TJ,CH4,10.0,kg/TJ,7.3344354336,kg -d9c6269d-207b-3ed5-99c0-83b24e21c9be,SESCO,II.1.1,Corrientes,AR-W,annual,2018,bioetanol combustion consumption by to the public,0.7334435433600001,TJ,N2O,0.6,kg/TJ,0.44006612601600004,kg -19653ebc-af02-35b4-ae09-984b93946b58,SESCO,II.1.1,Córdoba,AR-X,annual,2018,bioetanol combustion consumption by to the public,4.408502042339999,TJ,CH4,10.0,kg/TJ,44.085020423399996,kg -318d44a5-3ffb-375a-8f79-170236365b81,SESCO,II.1.1,Córdoba,AR-X,annual,2018,bioetanol combustion consumption by to the public,4.408502042339999,TJ,N2O,0.6,kg/TJ,2.6451012254039994,kg -05fe3493-5c9a-3cdc-afe8-4441f41bf8ff,SESCO,II.1.1,Entre Rios,AR-E,annual,2018,bioetanol combustion consumption by to the public,3.69749822706,TJ,CH4,10.0,kg/TJ,36.9749822706,kg -67ca3755-4b0e-3480-a07e-df08b213230c,SESCO,II.1.1,Entre Rios,AR-E,annual,2018,bioetanol combustion consumption by to the public,3.69749822706,TJ,N2O,0.6,kg/TJ,2.218498936236,kg -c38ca046-126a-3ca3-b855-317d201b23af,SESCO,II.1.1,Formosa,AR-P,annual,2018,bioetanol combustion consumption by to the public,0.08439268661999998,TJ,CH4,10.0,kg/TJ,0.8439268661999998,kg -a667e95e-3c9d-3576-9515-9324a1e29e57,SESCO,II.1.1,Formosa,AR-P,annual,2018,bioetanol combustion consumption by to the public,0.08439268661999998,TJ,N2O,0.6,kg/TJ,0.050635611971999984,kg -a85218be-d793-3975-8a7f-7ea6f0710c7e,SESCO,II.1.1,Jujuy,AR-Y,annual,2018,bioetanol combustion consumption by to the public,0.023583273119999998,TJ,CH4,10.0,kg/TJ,0.23583273119999998,kg -e425b90f-f44b-33d0-adcc-552cc996e188,SESCO,II.1.1,Jujuy,AR-Y,annual,2018,bioetanol combustion consumption by to the public,0.023583273119999998,TJ,N2O,0.6,kg/TJ,0.014149963871999998,kg -8bcb9965-6213-35a4-b671-86bf2be366b9,SESCO,II.1.1,La Pampa,AR-L,annual,2018,bioetanol combustion consumption by to the public,4.47413637231,TJ,CH4,10.0,kg/TJ,44.7413637231,kg -ff25260b-691f-34ae-bccc-36ee3d27208b,SESCO,II.1.1,La Pampa,AR-L,annual,2018,bioetanol combustion consumption by to the public,4.47413637231,TJ,N2O,0.6,kg/TJ,2.684481823386,kg -3b71ba44-1b12-3465-9fd1-b5d9e816a293,SESCO,II.1.1,Mendoza,AR-M,annual,2018,bioetanol combustion consumption by to the public,0.08581743126,TJ,CH4,10.0,kg/TJ,0.8581743125999999,kg -4beac6be-0356-3c85-8856-376fcc4bc96e,SESCO,II.1.1,Mendoza,AR-M,annual,2018,bioetanol combustion consumption by to the public,0.08581743126,TJ,N2O,0.6,kg/TJ,0.051490458755999995,kg -335cdccc-27e9-3cfb-b5f0-ea192de5eb48,SESCO,II.1.1,Misiones,AR-N,annual,2018,bioetanol combustion consumption by to the public,0.40013297082,TJ,CH4,10.0,kg/TJ,4.0013297082,kg -7f85a701-579e-3efd-b738-c449ce2b2bed,SESCO,II.1.1,Misiones,AR-N,annual,2018,bioetanol combustion consumption by to the public,0.40013297082,TJ,N2O,0.6,kg/TJ,0.240079782492,kg -db1e43f8-baec-387b-b9b8-3ef1dcbbdb56,SESCO,II.1.1,Neuquén,AR-Q,annual,2018,bioetanol combustion consumption by to the public,9.95785663851,TJ,CH4,10.0,kg/TJ,99.5785663851,kg -fd0b1882-b1c8-33d0-93fe-d2adfc22a525,SESCO,II.1.1,Neuquén,AR-Q,annual,2018,bioetanol combustion consumption by to the public,9.95785663851,TJ,N2O,0.6,kg/TJ,5.974713983106,kg -0abb18f5-152b-369c-913c-7ee025bbc39c,SESCO,II.1.1,Rio Negro,AR-R,annual,2018,bioetanol combustion consumption by to the public,7.81480871028,TJ,CH4,10.0,kg/TJ,78.1480871028,kg -28f77012-6168-3eea-ab2f-06517960f0b4,SESCO,II.1.1,Rio Negro,AR-R,annual,2018,bioetanol combustion consumption by to the public,7.81480871028,TJ,N2O,0.6,kg/TJ,4.688885226168,kg -dcaccd79-8205-35b7-85a2-acbec8437ab2,SESCO,II.1.1,San Luis,AR-D,annual,2018,bioetanol combustion consumption by to the public,0.7854279760799999,TJ,CH4,10.0,kg/TJ,7.854279760799999,kg -9a511eef-a40e-31a0-bd77-d877bdddd2ad,SESCO,II.1.1,San Luis,AR-D,annual,2018,bioetanol combustion consumption by to the public,0.7854279760799999,TJ,N2O,0.6,kg/TJ,0.47125678564799994,kg -c6a6429b-5514-3900-a1dd-d8a798c79f1f,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,bioetanol combustion consumption by to the public,9.03980321442,TJ,CH4,10.0,kg/TJ,90.39803214419999,kg -41943d26-1dcf-30c0-88dc-11b9ac16b42b,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,bioetanol combustion consumption by to the public,9.03980321442,TJ,N2O,0.6,kg/TJ,5.4238819286519995,kg -a78d95bd-484d-35e2-af0f-6887218782ef,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2018,bioetanol combustion consumption by to the public,2.1514112729999995,TJ,CH4,10.0,kg/TJ,21.514112729999994,kg -8547d8f7-d4b9-3dce-a6c4-62d887d7c607,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2018,bioetanol combustion consumption by to the public,2.1514112729999995,TJ,N2O,0.6,kg/TJ,1.2908467637999996,kg -f92b5c77-0a77-3a5a-8bd9-cffa64eef426,SESCO,II.1.1,Tucuman,AR-T,annual,2018,bioetanol combustion consumption by to the public,0.07242295698,TJ,CH4,10.0,kg/TJ,0.7242295698,kg -1c55bbdf-f4b3-3812-b6da-b155e108fcd3,SESCO,II.1.1,Tucuman,AR-T,annual,2018,bioetanol combustion consumption by to the public,0.07242295698,TJ,N2O,0.6,kg/TJ,0.043453774188,kg -7ae3597c-b953-3e9d-9460-d6521d8e8690,SESCO,II.5.1,Buenos Aires,AR-B,annual,2018,bioetanol combustion consumption by agriculture machines,21.15792657,TJ,CH4,10.0,kg/TJ,211.5792657,kg -12c7f9b2-4d25-3cde-89d8-0ccc882319ad,SESCO,II.5.1,Buenos Aires,AR-B,annual,2018,bioetanol combustion consumption by agriculture machines,21.15792657,TJ,N2O,0.6,kg/TJ,12.694755942,kg -ae18cec6-a5f8-3978-a35d-0e8a003e9389,SESCO,II.5.1,Mendoza,AR-M,annual,2018,bioetanol combustion consumption by agriculture machines,1.53253782,TJ,CH4,10.0,kg/TJ,15.3253782,kg -733ddafd-f23c-39cf-8bc9-b318f741a48c,SESCO,II.5.1,Mendoza,AR-M,annual,2018,bioetanol combustion consumption by agriculture machines,1.53253782,TJ,N2O,0.6,kg/TJ,0.9195226919999999,kg -080f325d-712b-38bb-9f60-017e84ddf552,SESCO,II.5.1,Misiones,AR-N,annual,2018,bioetanol combustion consumption by agriculture machines,0.08435988,TJ,CH4,10.0,kg/TJ,0.8435988,kg -a346fb82-933b-396c-b531-d4cb415396af,SESCO,II.5.1,Misiones,AR-N,annual,2018,bioetanol combustion consumption by agriculture machines,0.08435988,TJ,N2O,0.6,kg/TJ,0.050615928,kg -31da5cf0-cdfb-3dd0-a7f6-c3dca034f33f,SESCO,II.5.1,Salta,AR-A,annual,2018,bioetanol combustion consumption by agriculture machines,0.0468666,TJ,CH4,10.0,kg/TJ,0.468666,kg -07a56451-a396-3e00-add2-e94fcb0f15c9,SESCO,II.5.1,Salta,AR-A,annual,2018,bioetanol combustion consumption by agriculture machines,0.0468666,TJ,N2O,0.6,kg/TJ,0.02811996,kg -72fe89f7-e109-344f-a148-088233c38ba9,SESCO,II.5.1,Santa Fe,AR-S,annual,2018,bioetanol combustion consumption by agriculture machines,9.43658991,TJ,CH4,10.0,kg/TJ,94.36589910000001,kg -89045b93-796f-3785-aca0-58cfb33dc93d,SESCO,II.5.1,Santa Fe,AR-S,annual,2018,bioetanol combustion consumption by agriculture machines,9.43658991,TJ,N2O,0.6,kg/TJ,5.661953946,kg -3bf27370-d864-37ca-91a1-70ce5f09b1f4,SESCO,II.5.1,Buenos Aires,AR-B,annual,2018,bioetanol combustion consumption by agriculture machines,0.09607653,TJ,CH4,10.0,kg/TJ,0.9607652999999999,kg -4617a34e-3dbf-3539-8e07-a8318086a04b,SESCO,II.5.1,Buenos Aires,AR-B,annual,2018,bioetanol combustion consumption by agriculture machines,0.09607653,TJ,N2O,0.6,kg/TJ,0.05764591799999999,kg -d50e0e0b-1f4b-3eaa-b6a7-61dea83d13fa,SESCO,II.5.1,Santa Fe,AR-S,annual,2018,bioetanol combustion consumption by agriculture machines,0.03983661,TJ,CH4,10.0,kg/TJ,0.3983661,kg -45c7e2b3-745e-373d-98b8-fbac230427e3,SESCO,II.5.1,Santa Fe,AR-S,annual,2018,bioetanol combustion consumption by agriculture machines,0.03983661,TJ,N2O,0.6,kg/TJ,0.023901966,kg -2ba4713e-2d19-3b44-8fb3-d9a463e71696,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,bioetanol combustion consumption by to the public,2846.0586448799995,TJ,CH4,10.0,kg/TJ,28460.586448799993,kg -994199fe-9401-3aad-aa65-1efa1ede9792,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,bioetanol combustion consumption by to the public,2846.0586448799995,TJ,N2O,0.6,kg/TJ,1707.6351869279997,kg -b5e8d0d9-8423-3d9d-a4b9-ca46f3213a8e,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,bioetanol combustion consumption by to the public,603.7355412000001,TJ,CH4,10.0,kg/TJ,6037.355412000001,kg -b01cf382-be20-3652-8371-95c02b259806,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,bioetanol combustion consumption by to the public,603.7355412000001,TJ,N2O,0.6,kg/TJ,362.24132472,kg -78aa86b9-6f7a-389f-b7ad-b04d6fe54709,SESCO,II.1.1,Catamarca,AR-K,annual,2018,bioetanol combustion consumption by to the public,55.50645771,TJ,CH4,10.0,kg/TJ,555.0645771,kg -214fc425-8d4c-389a-950e-ad264b1160f6,SESCO,II.1.1,Catamarca,AR-K,annual,2018,bioetanol combustion consumption by to the public,55.50645771,TJ,N2O,0.6,kg/TJ,33.303874625999995,kg -c77987c8-a847-3133-989a-f8f0d3b2d6ad,SESCO,II.1.1,Chaco,AR-H,annual,2018,bioetanol combustion consumption by to the public,179.09836857,TJ,CH4,10.0,kg/TJ,1790.9836857,kg -feac2ce7-5b43-3927-a15b-927888087b3e,SESCO,II.1.1,Chaco,AR-H,annual,2018,bioetanol combustion consumption by to the public,179.09836857,TJ,N2O,0.6,kg/TJ,107.459021142,kg -c00d3dfb-c1e0-3c6e-b725-d05ad7ecd089,SESCO,II.1.1,Chubut,AR-U,annual,2018,bioetanol combustion consumption by to the public,249.31390868999998,TJ,CH4,10.0,kg/TJ,2493.1390868999997,kg -37d21f3b-a1f0-32b7-b25d-b08589ee2da0,SESCO,II.1.1,Chubut,AR-U,annual,2018,bioetanol combustion consumption by to the public,249.31390868999998,TJ,N2O,0.6,kg/TJ,149.588345214,kg -8c47ca1c-4049-30fd-a249-04737a7bd64c,SESCO,II.1.1,Corrientes,AR-W,annual,2018,bioetanol combustion consumption by to the public,181.20970889999998,TJ,CH4,10.0,kg/TJ,1812.0970889999999,kg -28dc23ba-3807-324b-9766-668ba18849b8,SESCO,II.1.1,Corrientes,AR-W,annual,2018,bioetanol combustion consumption by to the public,181.20970889999998,TJ,N2O,0.6,kg/TJ,108.72582533999999,kg -6a601fc6-1c1a-3cd0-9809-aa1df4e6817e,SESCO,II.1.1,Córdoba,AR-X,annual,2018,bioetanol combustion consumption by to the public,683.37595458,TJ,CH4,10.0,kg/TJ,6833.7595458,kg -5d62e6fb-aa1c-3593-914f-e901921144a5,SESCO,II.1.1,Córdoba,AR-X,annual,2018,bioetanol combustion consumption by to the public,683.37595458,TJ,N2O,0.6,kg/TJ,410.025572748,kg -0232d628-390d-38c3-a31b-0f9527db8349,SESCO,II.1.1,Entre Rios,AR-E,annual,2018,bioetanol combustion consumption by to the public,246.85106886,TJ,CH4,10.0,kg/TJ,2468.5106886,kg -e3c3b99e-ea7c-3c5d-8cc9-269fd572c0d8,SESCO,II.1.1,Entre Rios,AR-E,annual,2018,bioetanol combustion consumption by to the public,246.85106886,TJ,N2O,0.6,kg/TJ,148.110641316,kg -0449d847-a7c8-3c6a-9e79-b4c1031d1435,SESCO,II.1.1,Formosa,AR-P,annual,2018,bioetanol combustion consumption by to the public,67.32855756,TJ,CH4,10.0,kg/TJ,673.2855755999999,kg -cafefda4-c532-3319-8864-d676a89f3ec6,SESCO,II.1.1,Formosa,AR-P,annual,2018,bioetanol combustion consumption by to the public,67.32855756,TJ,N2O,0.6,kg/TJ,40.397134535999996,kg -37ec1033-3142-3e05-91bb-007362b438b1,SESCO,II.1.1,Jujuy,AR-Y,annual,2018,bioetanol combustion consumption by to the public,107.96189976,TJ,CH4,10.0,kg/TJ,1079.6189976,kg -e2ab5e21-2d95-30c6-8331-f0c5b2f5b6e3,SESCO,II.1.1,Jujuy,AR-Y,annual,2018,bioetanol combustion consumption by to the public,107.96189976,TJ,N2O,0.6,kg/TJ,64.77713985599999,kg -a1b7e1ef-fba3-3700-95b9-bc385039dcfd,SESCO,II.1.1,La Pampa,AR-L,annual,2018,bioetanol combustion consumption by to the public,123.66221076,TJ,CH4,10.0,kg/TJ,1236.6221076,kg -c56d8437-98d8-3ae9-9fc4-b9a2d3d71dca,SESCO,II.1.1,La Pampa,AR-L,annual,2018,bioetanol combustion consumption by to the public,123.66221076,TJ,N2O,0.6,kg/TJ,74.197326456,kg -0e43597a-5ca5-3661-9826-74d1e29d2d77,SESCO,II.1.1,La Rioja,AR-F,annual,2018,bioetanol combustion consumption by to the public,74.31636762,TJ,CH4,10.0,kg/TJ,743.1636761999999,kg -df5a8bae-c1a9-3903-be9e-7b42cd22f3a6,SESCO,II.1.1,La Rioja,AR-F,annual,2018,bioetanol combustion consumption by to the public,74.31636762,TJ,N2O,0.6,kg/TJ,44.589820571999994,kg -81fa7dfa-c1c4-3d41-aadf-acb3668c075e,SESCO,II.1.1,Mendoza,AR-M,annual,2018,bioetanol combustion consumption by to the public,373.60881854999997,TJ,CH4,10.0,kg/TJ,3736.0881855,kg -8a9bbadd-d5fb-3a4b-9295-0ceab38ee125,SESCO,II.1.1,Mendoza,AR-M,annual,2018,bioetanol combustion consumption by to the public,373.60881854999997,TJ,N2O,0.6,kg/TJ,224.16529112999999,kg -c8b6c80a-df1e-3ef6-b044-5a28201248d0,SESCO,II.1.1,Misiones,AR-N,annual,2018,bioetanol combustion consumption by to the public,244.79362512,TJ,CH4,10.0,kg/TJ,2447.9362512,kg -2b0b818f-7609-3b96-8ce1-0c548601a4c3,SESCO,II.1.1,Misiones,AR-N,annual,2018,bioetanol combustion consumption by to the public,244.79362512,TJ,N2O,0.6,kg/TJ,146.876175072,kg -0f338f68-3317-3a7d-a8c8-e3c9ed86f473,SESCO,II.1.1,Neuquén,AR-Q,annual,2018,bioetanol combustion consumption by to the public,240.13274174999998,TJ,CH4,10.0,kg/TJ,2401.3274174999997,kg -8d0946ee-e103-3ac8-b77d-815d1764cf72,SESCO,II.1.1,Neuquén,AR-Q,annual,2018,bioetanol combustion consumption by to the public,240.13274174999998,TJ,N2O,0.6,kg/TJ,144.07964504999998,kg -37f8fa8a-9c7a-3d01-9ddc-7c85650a59e4,SESCO,II.1.1,Rio Negro,AR-R,annual,2018,bioetanol combustion consumption by to the public,238.22058446999998,TJ,CH4,10.0,kg/TJ,2382.2058447,kg -6f38c8b0-0bbe-3b55-9b6a-99e8cf90a9fa,SESCO,II.1.1,Rio Negro,AR-R,annual,2018,bioetanol combustion consumption by to the public,238.22058446999998,TJ,N2O,0.6,kg/TJ,142.932350682,kg -db376b19-ed3e-30a8-9127-3f51bb2e8d35,SESCO,II.1.1,Salta,AR-A,annual,2018,bioetanol combustion consumption by to the public,242.34484526999998,TJ,CH4,10.0,kg/TJ,2423.4484527,kg -0cdf2d69-a7db-3c78-a33a-88fa48c307f1,SESCO,II.1.1,Salta,AR-A,annual,2018,bioetanol combustion consumption by to the public,242.34484526999998,TJ,N2O,0.6,kg/TJ,145.40690716199998,kg -a834833d-4a4f-3da1-8e81-ef2c92f9d8e2,SESCO,II.1.1,San Juan,AR-J,annual,2018,bioetanol combustion consumption by to the public,127.43731539,TJ,CH4,10.0,kg/TJ,1274.3731539,kg -4bc44a97-0009-38e3-8fff-919b2654802d,SESCO,II.1.1,San Juan,AR-J,annual,2018,bioetanol combustion consumption by to the public,127.43731539,TJ,N2O,0.6,kg/TJ,76.462389234,kg -4b4de417-a3d5-3ac8-b04d-c6cd286a42d6,SESCO,II.1.1,San Luis,AR-D,annual,2018,bioetanol combustion consumption by to the public,105.31159353,TJ,CH4,10.0,kg/TJ,1053.1159353,kg -1522ed2c-592a-3f4b-8224-22465c1e9501,SESCO,II.1.1,San Luis,AR-D,annual,2018,bioetanol combustion consumption by to the public,105.31159353,TJ,N2O,0.6,kg/TJ,63.186956118,kg -9a8f69dd-ca5e-32cd-b56c-426cf61e39bf,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2018,bioetanol combustion consumption by to the public,169.3290258,TJ,CH4,10.0,kg/TJ,1693.290258,kg -2ec9bca0-b064-34d3-bde8-e6bd92875d3d,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2018,bioetanol combustion consumption by to the public,169.3290258,TJ,N2O,0.6,kg/TJ,101.59741548000001,kg -985ee9d9-1b08-3e32-8666-f6daab26c2d1,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,bioetanol combustion consumption by to the public,516.5074252799999,TJ,CH4,10.0,kg/TJ,5165.074252799999,kg -ceb0cd58-7621-320b-9df3-9c1eb152b745,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,bioetanol combustion consumption by to the public,516.5074252799999,TJ,N2O,0.6,kg/TJ,309.9044551679999,kg -d3b382e4-82a9-3cbf-9e9f-a0e4c4cc2a29,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2018,bioetanol combustion consumption by to the public,107.67367017000001,TJ,CH4,10.0,kg/TJ,1076.7367017000001,kg -d136b708-e101-364d-bd2d-8b3ef29d44c1,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2018,bioetanol combustion consumption by to the public,107.67367017000001,TJ,N2O,0.6,kg/TJ,64.604202102,kg -c6221263-be2b-3f8f-a01e-9b4ae92d4fae,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2018,bioetanol combustion consumption by to the public,126.09224396999998,TJ,CH4,10.0,kg/TJ,1260.9224396999998,kg -cff54dcc-90a3-3f6a-8466-5cd7e96ddf73,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2018,bioetanol combustion consumption by to the public,126.09224396999998,TJ,N2O,0.6,kg/TJ,75.65534638199999,kg -8f5580c9-2af4-3b3d-a0cf-eaf24a969f2f,SESCO,II.1.1,Tucuman,AR-T,annual,2018,bioetanol combustion consumption by to the public,193.12788528,TJ,CH4,10.0,kg/TJ,1931.2788527999999,kg -055e11d0-8576-3205-b9a6-86c978ff2802,SESCO,II.1.1,Tucuman,AR-T,annual,2018,bioetanol combustion consumption by to the public,193.12788528,TJ,N2O,0.6,kg/TJ,115.87673116799999,kg -ab649867-9b61-3b2f-9609-5f68cfa63ab0,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,bioetanol combustion consumption by to the public,1300.4544168,TJ,CH4,10.0,kg/TJ,13004.544168,kg -2990f3f6-6491-34f4-a6e2-99839da6cc46,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,bioetanol combustion consumption by to the public,1300.4544168,TJ,N2O,0.6,kg/TJ,780.27265008,kg -2311ff1c-99a4-331b-8c14-cc41f3103c86,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,bioetanol combustion consumption by to the public,303.85725777,TJ,CH4,10.0,kg/TJ,3038.5725777,kg -9c2b3236-261c-3390-b652-0b6a08361978,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,bioetanol combustion consumption by to the public,303.85725777,TJ,N2O,0.6,kg/TJ,182.314354662,kg -21ce8b4c-27be-30eb-9ebb-e5ac7063367a,SESCO,II.1.1,Catamarca,AR-K,annual,2018,bioetanol combustion consumption by to the public,25.56338697,TJ,CH4,10.0,kg/TJ,255.6338697,kg -4d042314-348e-36c8-8d91-59e24624ee8b,SESCO,II.1.1,Catamarca,AR-K,annual,2018,bioetanol combustion consumption by to the public,25.56338697,TJ,N2O,0.6,kg/TJ,15.338032182,kg -63c29e23-8d57-321f-ba01-d73bdfebfd99,SESCO,II.1.1,Chaco,AR-H,annual,2018,bioetanol combustion consumption by to the public,77.09087034,TJ,CH4,10.0,kg/TJ,770.9087033999999,kg -d0b134eb-cc87-3914-a9e0-bde58e8a3b87,SESCO,II.1.1,Chaco,AR-H,annual,2018,bioetanol combustion consumption by to the public,77.09087034,TJ,N2O,0.6,kg/TJ,46.254522204,kg -988ec338-4c80-37ae-9b8a-76cfcb2fb0ac,SESCO,II.1.1,Chubut,AR-U,annual,2018,bioetanol combustion consumption by to the public,110.49972615,TJ,CH4,10.0,kg/TJ,1104.9972615,kg -d16007ef-ad87-3046-be9d-bb3acc22e965,SESCO,II.1.1,Chubut,AR-U,annual,2018,bioetanol combustion consumption by to the public,110.49972615,TJ,N2O,0.6,kg/TJ,66.29983569,kg -4a2e202b-ae33-3114-9a84-9509718b3384,SESCO,II.1.1,Corrientes,AR-W,annual,2018,bioetanol combustion consumption by to the public,84.93399584999999,TJ,CH4,10.0,kg/TJ,849.3399584999999,kg -707760db-e763-3fa1-a40f-610cef9bd99a,SESCO,II.1.1,Corrientes,AR-W,annual,2018,bioetanol combustion consumption by to the public,84.93399584999999,TJ,N2O,0.6,kg/TJ,50.96039750999999,kg -ced9323f-a523-3da6-9b1a-dbd05c36c916,SESCO,II.1.1,Córdoba,AR-X,annual,2018,bioetanol combustion consumption by to the public,298.97141472,TJ,CH4,10.0,kg/TJ,2989.7141472,kg -17de4877-8686-3ae7-b5c1-eb1122ead482,SESCO,II.1.1,Córdoba,AR-X,annual,2018,bioetanol combustion consumption by to the public,298.97141472,TJ,N2O,0.6,kg/TJ,179.38284883199998,kg -498082da-41ef-3b80-9f03-9817736c15b5,SESCO,II.1.1,Entre Rios,AR-E,annual,2018,bioetanol combustion consumption by to the public,112.1752071,TJ,CH4,10.0,kg/TJ,1121.752071,kg -8463143d-fa89-3359-b957-7ee1bce8682e,SESCO,II.1.1,Entre Rios,AR-E,annual,2018,bioetanol combustion consumption by to the public,112.1752071,TJ,N2O,0.6,kg/TJ,67.30512426,kg -c810eb9e-f4f4-3eba-b382-876d2e70403a,SESCO,II.1.1,Formosa,AR-P,annual,2018,bioetanol combustion consumption by to the public,21.729699089999997,TJ,CH4,10.0,kg/TJ,217.29699089999997,kg -f696e06e-3d31-32bc-8c4b-9ec284724cf0,SESCO,II.1.1,Formosa,AR-P,annual,2018,bioetanol combustion consumption by to the public,21.729699089999997,TJ,N2O,0.6,kg/TJ,13.037819453999997,kg -4826e911-8eb8-3aee-94d9-67f54beb774b,SESCO,II.1.1,Jujuy,AR-Y,annual,2018,bioetanol combustion consumption by to the public,36.00760878,TJ,CH4,10.0,kg/TJ,360.0760878,kg -b6f73e6c-c91f-3c2c-ad1c-103dd9ddcf8c,SESCO,II.1.1,Jujuy,AR-Y,annual,2018,bioetanol combustion consumption by to the public,36.00760878,TJ,N2O,0.6,kg/TJ,21.604565267999998,kg -aabd2b36-9d37-3069-91b6-22efd2f0b66b,SESCO,II.1.1,La Pampa,AR-L,annual,2018,bioetanol combustion consumption by to the public,90.59079446999999,TJ,CH4,10.0,kg/TJ,905.9079446999999,kg -8b8f0057-c2a4-3b9b-ba1a-6a5609ee7b3c,SESCO,II.1.1,La Pampa,AR-L,annual,2018,bioetanol combustion consumption by to the public,90.59079446999999,TJ,N2O,0.6,kg/TJ,54.35447668199999,kg -be203458-538b-3670-b0be-17bf7e7ae3e6,SESCO,II.1.1,La Rioja,AR-F,annual,2018,bioetanol combustion consumption by to the public,34.79142051,TJ,CH4,10.0,kg/TJ,347.9142051,kg -4f7a741a-aeb6-3c8f-a568-60acb11138da,SESCO,II.1.1,La Rioja,AR-F,annual,2018,bioetanol combustion consumption by to the public,34.79142051,TJ,N2O,0.6,kg/TJ,20.874852306,kg -2c9765b9-f490-322b-8aa8-e6799e4f1c6d,SESCO,II.1.1,Mendoza,AR-M,annual,2018,bioetanol combustion consumption by to the public,217.18216772999997,TJ,CH4,10.0,kg/TJ,2171.8216773,kg -992edf64-4c26-3e60-bf47-5c0b82c3e543,SESCO,II.1.1,Mendoza,AR-M,annual,2018,bioetanol combustion consumption by to the public,217.18216772999997,TJ,N2O,0.6,kg/TJ,130.30930063799997,kg -0283e9c6-4448-3cf8-ab2a-ff14b7405b16,SESCO,II.1.1,Misiones,AR-N,annual,2018,bioetanol combustion consumption by to the public,72.12535407,TJ,CH4,10.0,kg/TJ,721.2535407,kg -33f328eb-2d43-378c-a613-26a54c7e2908,SESCO,II.1.1,Misiones,AR-N,annual,2018,bioetanol combustion consumption by to the public,72.12535407,TJ,N2O,0.6,kg/TJ,43.275212442,kg -00bb06d0-63c8-37ec-b301-39a8502a26c5,SESCO,II.1.1,Neuquén,AR-Q,annual,2018,bioetanol combustion consumption by to the public,154.95035292,TJ,CH4,10.0,kg/TJ,1549.5035292,kg -291ed650-0163-32e6-98bc-943ef91d9856,SESCO,II.1.1,Neuquén,AR-Q,annual,2018,bioetanol combustion consumption by to the public,154.95035292,TJ,N2O,0.6,kg/TJ,92.970211752,kg -ff3fff0e-df36-3583-9ff8-898a3c37bad4,SESCO,II.1.1,Rio Negro,AR-R,annual,2018,bioetanol combustion consumption by to the public,133.57683999,TJ,CH4,10.0,kg/TJ,1335.7683999,kg -2a3d9a1b-11fc-3c7d-9c0c-8ebe37fc3eb7,SESCO,II.1.1,Rio Negro,AR-R,annual,2018,bioetanol combustion consumption by to the public,133.57683999,TJ,N2O,0.6,kg/TJ,80.146103994,kg -51a82ef8-2f6c-30fa-b019-7359258e69d4,SESCO,II.1.1,Salta,AR-A,annual,2018,bioetanol combustion consumption by to the public,87.31013246999999,TJ,CH4,10.0,kg/TJ,873.1013246999999,kg -f64e68a1-1f3f-39a4-b290-5e2adfeb362e,SESCO,II.1.1,Salta,AR-A,annual,2018,bioetanol combustion consumption by to the public,87.31013246999999,TJ,N2O,0.6,kg/TJ,52.38607948199999,kg -84ca2f86-1e3e-3d1b-a82d-b09ce8af3da1,SESCO,II.1.1,San Juan,AR-J,annual,2018,bioetanol combustion consumption by to the public,62.96059044,TJ,CH4,10.0,kg/TJ,629.6059044,kg -ef085bae-bad3-3dff-9d90-d136e8a609f0,SESCO,II.1.1,San Juan,AR-J,annual,2018,bioetanol combustion consumption by to the public,62.96059044,TJ,N2O,0.6,kg/TJ,37.776354264,kg -681bbcd2-bb36-3aa4-af0e-e9bce894327e,SESCO,II.1.1,San Luis,AR-D,annual,2018,bioetanol combustion consumption by to the public,56.85387246,TJ,CH4,10.0,kg/TJ,568.5387246,kg -e8af54b5-cade-39a1-b41c-fb3a6225bc5a,SESCO,II.1.1,San Luis,AR-D,annual,2018,bioetanol combustion consumption by to the public,56.85387246,TJ,N2O,0.6,kg/TJ,34.112323476,kg -cd9e5314-f65c-31a5-af2b-3acbfe3fe42f,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2018,bioetanol combustion consumption by to the public,58.205973869999994,TJ,CH4,10.0,kg/TJ,582.0597386999999,kg -2e68aa42-0c9f-342d-915a-ee06c951f0dd,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2018,bioetanol combustion consumption by to the public,58.205973869999994,TJ,N2O,0.6,kg/TJ,34.923584321999996,kg -ebecab12-e625-3d9c-98a2-e149c4616db7,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,bioetanol combustion consumption by to the public,263.1325257,TJ,CH4,10.0,kg/TJ,2631.3252569999995,kg -855127a4-2f94-367b-9575-152b417d90bd,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,bioetanol combustion consumption by to the public,263.1325257,TJ,N2O,0.6,kg/TJ,157.87951542,kg -35f0a63d-b59b-3e29-9a4f-86812b55e07b,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2018,bioetanol combustion consumption by to the public,51.000234119999995,TJ,CH4,10.0,kg/TJ,510.00234119999993,kg -906f10b3-785c-3a86-a1f6-13d78c6c06af,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2018,bioetanol combustion consumption by to the public,51.000234119999995,TJ,N2O,0.6,kg/TJ,30.600140471999996,kg -e4eb0082-25eb-37eb-948a-65b098681039,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2018,bioetanol combustion consumption by to the public,25.26344073,TJ,CH4,10.0,kg/TJ,252.6344073,kg -fc35db7e-3783-3da2-8ddb-7e9b3b287192,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2018,bioetanol combustion consumption by to the public,25.26344073,TJ,N2O,0.6,kg/TJ,15.158064437999998,kg -88f1678c-7064-39e7-9d3b-9257c6f83296,SESCO,II.1.1,Tucuman,AR-T,annual,2018,bioetanol combustion consumption by to the public,64.95007761,TJ,CH4,10.0,kg/TJ,649.5007760999999,kg -a10a1c1f-bef7-360a-a3cb-ed57423e1c30,SESCO,II.1.1,Tucuman,AR-T,annual,2018,bioetanol combustion consumption by to the public,64.95007761,TJ,N2O,0.6,kg/TJ,38.97004656599999,kg -615cbca6-72ac-3073-bc86-18508da1cc14,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,bioetanol combustion consumption by freight transport,24.604965,TJ,CH4,10.0,kg/TJ,246.04964999999999,kg -d5e6ee16-4353-3fb0-aed8-6e2a2627545a,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,bioetanol combustion consumption by freight transport,24.604965,TJ,N2O,0.6,kg/TJ,14.762979,kg -d488761a-2aef-3564-bd5f-7c574c500134,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,bioetanol combustion consumption by freight transport,26.62257213,TJ,CH4,10.0,kg/TJ,266.2257213,kg -73fdf42f-d8f9-3a6a-a1a1-8268edd0d5ce,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,bioetanol combustion consumption by freight transport,26.62257213,TJ,N2O,0.6,kg/TJ,15.973543277999998,kg -3ee86c07-ec9f-38c0-bc0c-ce5c6f3ef431,SESCO,II.1.1,Chaco,AR-H,annual,2018,bioetanol combustion consumption by freight transport,1.0427818500000001,TJ,CH4,10.0,kg/TJ,10.4278185,kg -5cd12e91-0235-3b01-9d13-170646358e7d,SESCO,II.1.1,Chaco,AR-H,annual,2018,bioetanol combustion consumption by freight transport,1.0427818500000001,TJ,N2O,0.6,kg/TJ,0.62566911,kg -93fe91e0-8c07-3673-8b91-e0100ba9d04f,SESCO,II.1.1,Chubut,AR-U,annual,2018,bioetanol combustion consumption by freight transport,0.36555948,TJ,CH4,10.0,kg/TJ,3.6555948,kg -c0e9e446-4f83-310b-8f74-f06a7a407bec,SESCO,II.1.1,Chubut,AR-U,annual,2018,bioetanol combustion consumption by freight transport,0.36555948,TJ,N2O,0.6,kg/TJ,0.219335688,kg -cbdbc95e-b1a5-34d4-83bc-17534bb0d881,SESCO,II.1.1,Corrientes,AR-W,annual,2018,bioetanol combustion consumption by freight transport,0.46397934,TJ,CH4,10.0,kg/TJ,4.6397934,kg -683bfad4-c393-3ab5-af92-319ec4ea4523,SESCO,II.1.1,Corrientes,AR-W,annual,2018,bioetanol combustion consumption by freight transport,0.46397934,TJ,N2O,0.6,kg/TJ,0.278387604,kg -09847a92-821f-376b-b292-3dd1f428ffec,SESCO,II.1.1,Córdoba,AR-X,annual,2018,bioetanol combustion consumption by freight transport,2.80262268,TJ,CH4,10.0,kg/TJ,28.026226799999996,kg -d047cf21-4236-3151-a512-1fee49ce046b,SESCO,II.1.1,Córdoba,AR-X,annual,2018,bioetanol combustion consumption by freight transport,2.80262268,TJ,N2O,0.6,kg/TJ,1.6815736079999999,kg -6290208c-8aae-302f-b1c9-6a9bacf10fe0,SESCO,II.1.1,Entre Rios,AR-E,annual,2018,bioetanol combustion consumption by freight transport,1.39428135,TJ,CH4,10.0,kg/TJ,13.9428135,kg -da3835de-acf7-36c0-a972-4190088fd0f5,SESCO,II.1.1,Entre Rios,AR-E,annual,2018,bioetanol combustion consumption by freight transport,1.39428135,TJ,N2O,0.6,kg/TJ,0.8365688099999999,kg -26c48722-edf1-37db-ab76-c70fffa11105,SESCO,II.1.1,Formosa,AR-P,annual,2018,bioetanol combustion consumption by freight transport,0.03514995,TJ,CH4,10.0,kg/TJ,0.35149949999999996,kg -f7cb6e1c-7c7a-32b7-96d1-87e23265875c,SESCO,II.1.1,Formosa,AR-P,annual,2018,bioetanol combustion consumption by freight transport,0.03514995,TJ,N2O,0.6,kg/TJ,0.02108997,kg -05cefa8e-2e7d-3206-889f-e60db399c8f5,SESCO,II.1.1,Jujuy,AR-Y,annual,2018,bioetanol combustion consumption by freight transport,0.07264323,TJ,CH4,10.0,kg/TJ,0.7264323,kg -56686b27-d363-3fe7-a08b-81e4242feb8a,SESCO,II.1.1,Jujuy,AR-Y,annual,2018,bioetanol combustion consumption by freight transport,0.07264323,TJ,N2O,0.6,kg/TJ,0.043585938,kg -0fbca47a-f6e1-3eb2-a097-12629596d0c9,SESCO,II.1.1,La Pampa,AR-L,annual,2018,bioetanol combustion consumption by freight transport,0.2577663,TJ,CH4,10.0,kg/TJ,2.5776630000000003,kg -2436dc11-0882-3b00-a326-ccb02d9ba9af,SESCO,II.1.1,La Pampa,AR-L,annual,2018,bioetanol combustion consumption by freight transport,0.2577663,TJ,N2O,0.6,kg/TJ,0.15465978,kg -2b7bd1dd-bde5-39e2-80e8-8fedbca81ec8,SESCO,II.1.1,La Rioja,AR-F,annual,2018,bioetanol combustion consumption by freight transport,0.02108997,TJ,CH4,10.0,kg/TJ,0.2108997,kg -dca4239e-e65e-3afe-9818-0f013a73d19a,SESCO,II.1.1,La Rioja,AR-F,annual,2018,bioetanol combustion consumption by freight transport,0.02108997,TJ,N2O,0.6,kg/TJ,0.012653982,kg -66974ea4-2443-36b3-89ce-d99927062689,SESCO,II.1.1,Mendoza,AR-M,annual,2018,bioetanol combustion consumption by freight transport,2.31286671,TJ,CH4,10.0,kg/TJ,23.1286671,kg -44c5b281-d9f7-3861-bd57-613be5d2e873,SESCO,II.1.1,Mendoza,AR-M,annual,2018,bioetanol combustion consumption by freight transport,2.31286671,TJ,N2O,0.6,kg/TJ,1.387720026,kg -1a752b4b-b3e9-37eb-8650-dd8b0b6d19e2,SESCO,II.1.1,Misiones,AR-N,annual,2018,bioetanol combustion consumption by freight transport,0.37961945999999996,TJ,CH4,10.0,kg/TJ,3.7961945999999998,kg -0e591d7a-f1d8-39b2-b7a3-889ef3441462,SESCO,II.1.1,Misiones,AR-N,annual,2018,bioetanol combustion consumption by freight transport,0.37961945999999996,TJ,N2O,0.6,kg/TJ,0.22777167599999998,kg -e6c18ab5-a5c3-34c5-a19d-e8193df47956,SESCO,II.1.1,Neuquén,AR-Q,annual,2018,bioetanol combustion consumption by freight transport,0.53427924,TJ,CH4,10.0,kg/TJ,5.3427924,kg -3ddac884-8088-3068-835d-a17c864e29e4,SESCO,II.1.1,Neuquén,AR-Q,annual,2018,bioetanol combustion consumption by freight transport,0.53427924,TJ,N2O,0.6,kg/TJ,0.32056754400000004,kg -2f7f80c4-031f-3340-ae60-8c3c19e4fecb,SESCO,II.1.1,Rio Negro,AR-R,annual,2018,bioetanol combustion consumption by freight transport,0.83656881,TJ,CH4,10.0,kg/TJ,8.3656881,kg -59c1c1d2-1fd5-371c-9253-57ec882cc1e7,SESCO,II.1.1,Rio Negro,AR-R,annual,2018,bioetanol combustion consumption by freight transport,0.83656881,TJ,N2O,0.6,kg/TJ,0.501941286,kg -8d59db7d-8e2c-34d2-900b-f86755b2a155,SESCO,II.1.1,Salta,AR-A,annual,2018,bioetanol combustion consumption by freight transport,0.92795868,TJ,CH4,10.0,kg/TJ,9.2795868,kg -96d7319c-b193-392a-8336-41a884f22478,SESCO,II.1.1,Salta,AR-A,annual,2018,bioetanol combustion consumption by freight transport,0.92795868,TJ,N2O,0.6,kg/TJ,0.556775208,kg -c0d6f17f-5ccf-3886-bbf5-0e855d4399aa,SESCO,II.1.1,San Juan,AR-J,annual,2018,bioetanol combustion consumption by freight transport,0.19683972,TJ,CH4,10.0,kg/TJ,1.9683972,kg -10f811a2-0dcd-34f1-841c-b4d8ff965497,SESCO,II.1.1,San Juan,AR-J,annual,2018,bioetanol combustion consumption by freight transport,0.19683972,TJ,N2O,0.6,kg/TJ,0.11810383199999999,kg -57ed68e5-5f8c-3f05-817b-5d262571c482,SESCO,II.1.1,San Luis,AR-D,annual,2018,bioetanol combustion consumption by freight transport,0.30697623,TJ,CH4,10.0,kg/TJ,3.0697623000000003,kg -45f70bae-cfe1-353e-a992-d3bba397ad13,SESCO,II.1.1,San Luis,AR-D,annual,2018,bioetanol combustion consumption by freight transport,0.30697623,TJ,N2O,0.6,kg/TJ,0.18418573800000002,kg -4bcf9f92-771b-37f9-b1f8-ab19c9d18a27,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2018,bioetanol combustion consumption by freight transport,0.11482316999999999,TJ,CH4,10.0,kg/TJ,1.1482317,kg -63f391e6-ad7b-3c2f-b7f2-2b9b0f018699,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2018,bioetanol combustion consumption by freight transport,0.11482316999999999,TJ,N2O,0.6,kg/TJ,0.06889390199999999,kg -7ecd8475-5bfb-327a-bba1-b3165a8291b6,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,bioetanol combustion consumption by freight transport,3.19864545,TJ,CH4,10.0,kg/TJ,31.9864545,kg -dcd3ab93-7738-32d4-9224-e2a3e32e9c03,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,bioetanol combustion consumption by freight transport,3.19864545,TJ,N2O,0.6,kg/TJ,1.91918727,kg -c8176a50-3674-3f23-aa1f-fde2e7a53d39,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2018,bioetanol combustion consumption by freight transport,0.06795657,TJ,CH4,10.0,kg/TJ,0.6795656999999999,kg -6cfa1aec-0eb7-32b2-8cd4-56ae261c4dd5,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2018,bioetanol combustion consumption by freight transport,0.06795657,TJ,N2O,0.6,kg/TJ,0.040773941999999994,kg -3296200a-14b7-3c72-81e6-d4d6e2f3e5c2,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2018,bioetanol combustion consumption by freight transport,0.52490592,TJ,CH4,10.0,kg/TJ,5.2490592000000005,kg -afccf682-2bd2-3ed6-936d-26909e9d2ee0,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2018,bioetanol combustion consumption by freight transport,0.52490592,TJ,N2O,0.6,kg/TJ,0.314943552,kg -1e8e268f-8937-3945-b65a-f9b88fcaec40,SESCO,II.1.1,Tucuman,AR-T,annual,2018,bioetanol combustion consumption by freight transport,0.76158225,TJ,CH4,10.0,kg/TJ,7.6158225,kg -1f4410a3-420b-3a2d-9a53-fbeedcdb5c00,SESCO,II.1.1,Tucuman,AR-T,annual,2018,bioetanol combustion consumption by freight transport,0.76158225,TJ,N2O,0.6,kg/TJ,0.45694935,kg -259c1149-8d5d-3e8d-8d2d-b5309e1c26cf,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,bioetanol combustion consumption by freight transport,23.742619559999998,TJ,CH4,10.0,kg/TJ,237.42619559999997,kg -9e843863-69d0-3da3-8e56-680428981e3f,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,bioetanol combustion consumption by freight transport,23.742619559999998,TJ,N2O,0.6,kg/TJ,14.245571735999999,kg -48c09b4c-0558-3681-b527-1b13ef30d546,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,bioetanol combustion consumption by freight transport,30.910866029999998,TJ,CH4,10.0,kg/TJ,309.1086603,kg -2ee2e992-a8e2-3c3a-b8f7-0552ddaba897,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,bioetanol combustion consumption by freight transport,30.910866029999998,TJ,N2O,0.6,kg/TJ,18.546519617999998,kg -cb866289-6c5d-3f58-8e63-0c1c9fccf6ac,SESCO,II.1.1,Catamarca,AR-K,annual,2018,bioetanol combustion consumption by freight transport,0.02108997,TJ,CH4,10.0,kg/TJ,0.2108997,kg -a7e08c7a-8daa-3865-8c47-01806201cf6c,SESCO,II.1.1,Catamarca,AR-K,annual,2018,bioetanol combustion consumption by freight transport,0.02108997,TJ,N2O,0.6,kg/TJ,0.012653982,kg -8824c2ff-1094-3b5c-bf3a-cdbe8ee74a4f,SESCO,II.1.1,Chaco,AR-H,annual,2018,bioetanol combustion consumption by freight transport,0.8318821499999999,TJ,CH4,10.0,kg/TJ,8.318821499999999,kg -59af50c4-5b26-33c3-96c0-c4bfd7132013,SESCO,II.1.1,Chaco,AR-H,annual,2018,bioetanol combustion consumption by freight transport,0.8318821499999999,TJ,N2O,0.6,kg/TJ,0.4991292899999999,kg -8893b696-a155-3448-972a-1803f3b9eba1,SESCO,II.1.1,Chubut,AR-U,annual,2018,bioetanol combustion consumption by freight transport,0.31166289,TJ,CH4,10.0,kg/TJ,3.1166289000000003,kg -3b72388e-705b-3067-b7eb-34fd129d1529,SESCO,II.1.1,Chubut,AR-U,annual,2018,bioetanol combustion consumption by freight transport,0.31166289,TJ,N2O,0.6,kg/TJ,0.186997734,kg -93b812e7-1925-31a8-b3e2-7a793ca1fdbf,SESCO,II.1.1,Corrientes,AR-W,annual,2018,bioetanol combustion consumption by freight transport,0.57177252,TJ,CH4,10.0,kg/TJ,5.7177252,kg -b9859610-db2a-36a0-85b4-d8c5591e82f4,SESCO,II.1.1,Corrientes,AR-W,annual,2018,bioetanol combustion consumption by freight transport,0.57177252,TJ,N2O,0.6,kg/TJ,0.343063512,kg -5a69530a-be2c-3674-9055-9119f635f5e7,SESCO,II.1.1,Córdoba,AR-X,annual,2018,bioetanol combustion consumption by freight transport,2.30583672,TJ,CH4,10.0,kg/TJ,23.0583672,kg -51c281c6-0117-3b8a-b7fe-fe0d10fd3b74,SESCO,II.1.1,Córdoba,AR-X,annual,2018,bioetanol combustion consumption by freight transport,2.30583672,TJ,N2O,0.6,kg/TJ,1.3835020319999998,kg -059b2226-5674-368b-b380-6ddd1e721243,SESCO,II.1.1,Entre Rios,AR-E,annual,2018,bioetanol combustion consumption by freight transport,1.80202077,TJ,CH4,10.0,kg/TJ,18.0202077,kg -83a5c2a9-9239-35b8-b591-69d05e7aeee5,SESCO,II.1.1,Entre Rios,AR-E,annual,2018,bioetanol combustion consumption by freight transport,1.80202077,TJ,N2O,0.6,kg/TJ,1.0812124619999999,kg -a1c2f452-014b-3926-b272-1f51b1e261bd,SESCO,II.1.1,Formosa,AR-P,annual,2018,bioetanol combustion consumption by freight transport,0.03749328,TJ,CH4,10.0,kg/TJ,0.37493279999999995,kg -489b92f1-853b-3e18-b344-25b060bb09f0,SESCO,II.1.1,Formosa,AR-P,annual,2018,bioetanol combustion consumption by freight transport,0.03749328,TJ,N2O,0.6,kg/TJ,0.022495967999999998,kg -b1ccde21-281f-3924-92a9-15db9d334a1b,SESCO,II.1.1,Jujuy,AR-Y,annual,2018,bioetanol combustion consumption by freight transport,0.06561324,TJ,CH4,10.0,kg/TJ,0.6561324000000001,kg -73f140e3-b4ab-372d-a6f7-dee697f6953b,SESCO,II.1.1,Jujuy,AR-Y,annual,2018,bioetanol combustion consumption by freight transport,0.06561324,TJ,N2O,0.6,kg/TJ,0.039367944,kg -149e0c2c-21f2-372f-afd1-ce13cdb90ead,SESCO,II.1.1,La Pampa,AR-L,annual,2018,bioetanol combustion consumption by freight transport,0.26479629,TJ,CH4,10.0,kg/TJ,2.6479629,kg -3d529029-eb18-3df2-b383-3227c17ae7de,SESCO,II.1.1,La Pampa,AR-L,annual,2018,bioetanol combustion consumption by freight transport,0.26479629,TJ,N2O,0.6,kg/TJ,0.158877774,kg -42810dee-da4f-30f6-a215-9b2172c4ff3a,SESCO,II.1.1,La Rioja,AR-F,annual,2018,bioetanol combustion consumption by freight transport,0.13591314,TJ,CH4,10.0,kg/TJ,1.3591313999999999,kg -84531ed6-1c75-3a30-b224-1789a60b98c5,SESCO,II.1.1,La Rioja,AR-F,annual,2018,bioetanol combustion consumption by freight transport,0.13591314,TJ,N2O,0.6,kg/TJ,0.08154788399999999,kg -d4c2ea88-c40d-3246-b36e-7c83c3313ee9,SESCO,II.1.1,Mendoza,AR-M,annual,2018,bioetanol combustion consumption by freight transport,4.016467619999999,TJ,CH4,10.0,kg/TJ,40.164676199999995,kg -441a9dc9-d4bf-3db9-97a0-17f81188c1e3,SESCO,II.1.1,Mendoza,AR-M,annual,2018,bioetanol combustion consumption by freight transport,4.016467619999999,TJ,N2O,0.6,kg/TJ,2.4098805719999996,kg -54a83b5b-007c-3305-8c5e-f1e1cba5d0d6,SESCO,II.1.1,Misiones,AR-N,annual,2018,bioetanol combustion consumption by freight transport,0.41476940999999995,TJ,CH4,10.0,kg/TJ,4.1476941,kg -3d6ece41-10dd-3cb3-adf2-b7f523485b4a,SESCO,II.1.1,Misiones,AR-N,annual,2018,bioetanol combustion consumption by freight transport,0.41476940999999995,TJ,N2O,0.6,kg/TJ,0.24886164599999996,kg -9efbaebc-2a92-3773-b6fb-21882cd1863b,SESCO,II.1.1,Neuquén,AR-Q,annual,2018,bioetanol combustion consumption by freight transport,1.2888315,TJ,CH4,10.0,kg/TJ,12.888314999999999,kg -a6722f3b-61a2-3f71-a275-890459dc55ce,SESCO,II.1.1,Neuquén,AR-Q,annual,2018,bioetanol combustion consumption by freight transport,1.2888315,TJ,N2O,0.6,kg/TJ,0.7732988999999999,kg -c7249fda-a652-3d56-899c-5f37c4b72347,SESCO,II.1.1,Rio Negro,AR-R,annual,2018,bioetanol combustion consumption by freight transport,3.5524882799999995,TJ,CH4,10.0,kg/TJ,35.52488279999999,kg -3241adb1-b7bd-361e-a5a9-f2cd96d788c0,SESCO,II.1.1,Rio Negro,AR-R,annual,2018,bioetanol combustion consumption by freight transport,3.5524882799999995,TJ,N2O,0.6,kg/TJ,2.1314929679999994,kg -3a044071-77ae-3e7f-98cc-ea6cece60ddb,SESCO,II.1.1,Salta,AR-A,annual,2018,bioetanol combustion consumption by freight transport,0.44288936999999995,TJ,CH4,10.0,kg/TJ,4.4288937,kg -421d4670-c1e5-3160-adff-b27345d82284,SESCO,II.1.1,Salta,AR-A,annual,2018,bioetanol combustion consumption by freight transport,0.44288936999999995,TJ,N2O,0.6,kg/TJ,0.26573362199999995,kg -b4c552fa-eb90-3758-a06a-682f5f86b661,SESCO,II.1.1,San Juan,AR-J,annual,2018,bioetanol combustion consumption by freight transport,0.08670321,TJ,CH4,10.0,kg/TJ,0.8670321000000001,kg -c409589b-ab40-3306-816c-f68528870b62,SESCO,II.1.1,San Juan,AR-J,annual,2018,bioetanol combustion consumption by freight transport,0.08670321,TJ,N2O,0.6,kg/TJ,0.052021926,kg -18e14f47-051f-3bc5-87e2-4af38b876b8f,SESCO,II.1.1,San Luis,AR-D,annual,2018,bioetanol combustion consumption by freight transport,0.28822959,TJ,CH4,10.0,kg/TJ,2.8822959,kg -bf314eaa-a25a-347e-b83e-7a5ec1e5e8f5,SESCO,II.1.1,San Luis,AR-D,annual,2018,bioetanol combustion consumption by freight transport,0.28822959,TJ,N2O,0.6,kg/TJ,0.17293775399999997,kg -4c630141-514d-3879-a52f-01de32ccc9e9,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2018,bioetanol combustion consumption by freight transport,0.09841986,TJ,CH4,10.0,kg/TJ,0.9841986,kg -28e56533-f7fd-360b-93a2-dc1907f1ef30,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2018,bioetanol combustion consumption by freight transport,0.09841986,TJ,N2O,0.6,kg/TJ,0.059051915999999996,kg -10fecf00-aa8c-329d-b3f6-0ae3169ff6d6,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,bioetanol combustion consumption by freight transport,5.281865819999999,TJ,CH4,10.0,kg/TJ,52.818658199999994,kg -7d55e122-f1e7-32aa-8105-c3560b4b07e2,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,bioetanol combustion consumption by freight transport,5.281865819999999,TJ,N2O,0.6,kg/TJ,3.1691194919999996,kg -3bb3b0de-f3cf-3dd5-a791-3cd98ac45ce2,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2018,bioetanol combustion consumption by freight transport,0.060926579999999994,TJ,CH4,10.0,kg/TJ,0.6092658,kg -ffba881a-457c-38ba-97f3-d38e584255c0,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2018,bioetanol combustion consumption by freight transport,0.060926579999999994,TJ,N2O,0.6,kg/TJ,0.036555948,kg -8ced469f-b83b-3b8d-8517-e386095cd2c3,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2018,bioetanol combustion consumption by freight transport,0.12419648999999999,TJ,CH4,10.0,kg/TJ,1.2419649,kg -cbeeb5c5-de20-3ef3-bc86-9d21f1b13461,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2018,bioetanol combustion consumption by freight transport,0.12419648999999999,TJ,N2O,0.6,kg/TJ,0.07451789399999999,kg -c32e8c7e-6975-3a41-8bee-841ebfd7394f,SESCO,II.1.1,Tucuman,AR-T,annual,2018,bioetanol combustion consumption by freight transport,0.42414272999999997,TJ,CH4,10.0,kg/TJ,4.2414273,kg -b3e2e881-76a8-3182-a954-c8ac64bf51c6,SESCO,II.1.1,Tucuman,AR-T,annual,2018,bioetanol combustion consumption by freight transport,0.42414272999999997,TJ,N2O,0.6,kg/TJ,0.25448563799999996,kg -b2540ee8-11cd-32e0-9a30-93827c35521d,SESCO,II.5.1,Buenos Aires,AR-B,annual,2019,bioetanol combustion consumption by agriculture machines,0.015338159999999998,TJ,CH4,10.0,kg/TJ,0.15338159999999998,kg -a77a22c9-d717-302c-8ce5-2260a93ef55d,SESCO,II.5.1,Buenos Aires,AR-B,annual,2019,bioetanol combustion consumption by agriculture machines,0.015338159999999998,TJ,N2O,0.6,kg/TJ,0.009202895999999999,kg -f03d145a-8edb-3d71-ad6d-ebb69eaf4356,SESCO,II.5.1,Córdoba,AR-X,annual,2019,bioetanol combustion consumption by agriculture machines,0.09458531999999999,TJ,CH4,10.0,kg/TJ,0.9458531999999998,kg -fec48ed7-bee0-36eb-bfa9-275eb6cca815,SESCO,II.5.1,Córdoba,AR-X,annual,2019,bioetanol combustion consumption by agriculture machines,0.09458531999999999,TJ,N2O,0.6,kg/TJ,0.05675119199999999,kg -b8bddf34-68f1-3230-bb74-246507032fb2,SESCO,II.5.1,Santa Fe,AR-S,annual,2019,bioetanol combustion consumption by agriculture machines,0.9023950799999999,TJ,CH4,10.0,kg/TJ,9.0239508,kg -cd1134a8-95d8-317f-8c56-957fab267224,SESCO,II.5.1,Santa Fe,AR-S,annual,2019,bioetanol combustion consumption by agriculture machines,0.9023950799999999,TJ,N2O,0.6,kg/TJ,0.5414370479999999,kg -3e8676f6-b456-3e51-a0c5-decde5b6c22c,SESCO,II.5.1,Santa Fe,AR-S,annual,2019,bioetanol combustion consumption by agriculture machines,0.10736712,TJ,CH4,10.0,kg/TJ,1.0736712,kg -4ee10d13-bb2d-3fe4-b9ee-efbfba182923,SESCO,II.5.1,Santa Fe,AR-S,annual,2019,bioetanol combustion consumption by agriculture machines,0.10736712,TJ,N2O,0.6,kg/TJ,0.064420272,kg -f0c9cc40-de29-34f5-8657-dd1d18be19fb,SESCO,II.1.1,Buenos Aires,AR-B,annual,2019,bioetanol combustion consumption by to the public,36.89850024,TJ,CH4,10.0,kg/TJ,368.9850024,kg -ccf915b0-155e-30c1-9b19-ede005c761fb,SESCO,II.1.1,Buenos Aires,AR-B,annual,2019,bioetanol combustion consumption by to the public,36.89850024,TJ,N2O,0.6,kg/TJ,22.139100143999997,kg -088b76f3-48b4-3962-b06c-9b014a1a63b2,SESCO,II.1.1,Capital Federal,AR-C,annual,2019,bioetanol combustion consumption by to the public,2.9474830799999996,TJ,CH4,10.0,kg/TJ,29.474830799999996,kg -8f53d1d7-0da3-3ac2-ac6c-6321f4932883,SESCO,II.1.1,Capital Federal,AR-C,annual,2019,bioetanol combustion consumption by to the public,2.9474830799999996,TJ,N2O,0.6,kg/TJ,1.7684898479999998,kg -3497ca53-b899-3f64-8d7f-f46bf33e3947,SESCO,II.1.1,Catamarca,AR-K,annual,2019,bioetanol combustion consumption by to the public,3.6581511599999996,TJ,CH4,10.0,kg/TJ,36.5815116,kg -a4eb2889-b145-3817-a82b-b44a0eaa5171,SESCO,II.1.1,Catamarca,AR-K,annual,2019,bioetanol combustion consumption by to the public,3.6581511599999996,TJ,N2O,0.6,kg/TJ,2.194890696,kg -9b441f5b-8e0c-36cc-880b-72f2c830fb96,SESCO,II.1.1,Chaco,AR-H,annual,2019,bioetanol combustion consumption by to the public,3.8115327599999995,TJ,CH4,10.0,kg/TJ,38.11532759999999,kg -28be55a1-1e27-31f5-9d93-68b5f9b80271,SESCO,II.1.1,Chaco,AR-H,annual,2019,bioetanol combustion consumption by to the public,3.8115327599999995,TJ,N2O,0.6,kg/TJ,2.286919656,kg -b7483bc3-8db0-3462-b1c1-7d948dd18585,SESCO,II.1.1,Corrientes,AR-W,annual,2019,bioetanol combustion consumption by to the public,0.5777373599999999,TJ,CH4,10.0,kg/TJ,5.777373599999999,kg -d6beef62-2e9c-3b8b-8e20-767fd5b6488f,SESCO,II.1.1,Corrientes,AR-W,annual,2019,bioetanol combustion consumption by to the public,0.5777373599999999,TJ,N2O,0.6,kg/TJ,0.3466424159999999,kg -44abd8d9-0be8-3e1c-96d1-42f6e5967e7d,SESCO,II.1.1,Córdoba,AR-X,annual,2019,bioetanol combustion consumption by to the public,19.88081172,TJ,CH4,10.0,kg/TJ,198.8081172,kg -3f741b28-cfa3-3bd8-9778-26bde76a0db6,SESCO,II.1.1,Córdoba,AR-X,annual,2019,bioetanol combustion consumption by to the public,19.88081172,TJ,N2O,0.6,kg/TJ,11.928487032,kg -60a1f602-f083-3f39-8526-ec0735171b5f,SESCO,II.1.1,Entre Rios,AR-E,annual,2019,bioetanol combustion consumption by to the public,4.384157399999999,TJ,CH4,10.0,kg/TJ,43.841573999999994,kg -fb37990f-deaa-3c0f-be93-f1cb7edf13f7,SESCO,II.1.1,Entre Rios,AR-E,annual,2019,bioetanol combustion consumption by to the public,4.384157399999999,TJ,N2O,0.6,kg/TJ,2.6304944399999997,kg -01179f5a-9139-3a35-90dc-e38a51d113e0,SESCO,II.1.1,La Pampa,AR-L,annual,2019,bioetanol combustion consumption by to the public,0.03323268,TJ,CH4,10.0,kg/TJ,0.33232680000000003,kg -13ea6912-419e-343c-9655-b3b42644f421,SESCO,II.1.1,La Pampa,AR-L,annual,2019,bioetanol combustion consumption by to the public,0.03323268,TJ,N2O,0.6,kg/TJ,0.019939608,kg -4e939c1e-dad6-3ac8-9516-6941eb3706a5,SESCO,II.1.1,La Rioja,AR-F,annual,2019,bioetanol combustion consumption by to the public,0.028119959999999996,TJ,CH4,10.0,kg/TJ,0.28119959999999994,kg -c889c237-2481-349f-af95-284aa1b36252,SESCO,II.1.1,La Rioja,AR-F,annual,2019,bioetanol combustion consumption by to the public,0.028119959999999996,TJ,N2O,0.6,kg/TJ,0.016871975999999997,kg -aa4d034c-5326-34c0-bb55-41dda5682a1d,SESCO,II.1.1,Mendoza,AR-M,annual,2019,bioetanol combustion consumption by to the public,5.457828599999999,TJ,CH4,10.0,kg/TJ,54.57828599999999,kg -7cbc6045-da99-3674-aa2d-3f1625d5fe5c,SESCO,II.1.1,Mendoza,AR-M,annual,2019,bioetanol combustion consumption by to the public,5.457828599999999,TJ,N2O,0.6,kg/TJ,3.274697159999999,kg -6a7844f8-1294-3374-855d-fa8414bd1a42,SESCO,II.1.1,Misiones,AR-N,annual,2019,bioetanol combustion consumption by to the public,0.028119959999999996,TJ,CH4,10.0,kg/TJ,0.28119959999999994,kg -e121f3a4-26b5-37d7-9b35-1b6cbde959b3,SESCO,II.1.1,Misiones,AR-N,annual,2019,bioetanol combustion consumption by to the public,0.028119959999999996,TJ,N2O,0.6,kg/TJ,0.016871975999999997,kg -3bfeb9a0-dfa9-3159-afa4-a891190eba72,SESCO,II.1.1,San Juan,AR-J,annual,2019,bioetanol combustion consumption by to the public,3.05229384,TJ,CH4,10.0,kg/TJ,30.5229384,kg -ab28bb27-2bf4-398b-a84c-1fbb8aa720e8,SESCO,II.1.1,San Juan,AR-J,annual,2019,bioetanol combustion consumption by to the public,3.05229384,TJ,N2O,0.6,kg/TJ,1.831376304,kg -04a06f9c-6105-3d05-9ec3-eaefa4e30418,SESCO,II.1.1,San Luis,AR-D,annual,2019,bioetanol combustion consumption by to the public,3.19289364,TJ,CH4,10.0,kg/TJ,31.928936399999998,kg -5b82028c-663e-3730-bb0b-b3f1540a78b5,SESCO,II.1.1,San Luis,AR-D,annual,2019,bioetanol combustion consumption by to the public,3.19289364,TJ,N2O,0.6,kg/TJ,1.9157361839999998,kg -97d0e1ac-c1af-3532-b24b-2969d9334459,SESCO,II.1.1,Santa Fe,AR-S,annual,2019,bioetanol combustion consumption by to the public,11.493394559999999,TJ,CH4,10.0,kg/TJ,114.93394559999999,kg -7f5b1cb8-e0c1-3619-a1a7-f496c59c44db,SESCO,II.1.1,Santa Fe,AR-S,annual,2019,bioetanol combustion consumption by to the public,11.493394559999999,TJ,N2O,0.6,kg/TJ,6.896036735999999,kg -99c0084a-7feb-35ce-a62c-055d5785603c,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2019,bioetanol combustion consumption by to the public,2.4668873999999996,TJ,CH4,10.0,kg/TJ,24.668873999999995,kg -05fe16ee-da8f-30b0-b223-93ec68778122,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2019,bioetanol combustion consumption by to the public,2.4668873999999996,TJ,N2O,0.6,kg/TJ,1.4801324399999998,kg -0a791559-8bbe-32ef-a787-33cd2a644e24,SESCO,II.1.1,Tucuman,AR-T,annual,2019,bioetanol combustion consumption by to the public,0.15082524,TJ,CH4,10.0,kg/TJ,1.5082524,kg -6cffd3cc-a291-3aa7-8079-acd7c1a099ec,SESCO,II.1.1,Tucuman,AR-T,annual,2019,bioetanol combustion consumption by to the public,0.15082524,TJ,N2O,0.6,kg/TJ,0.090495144,kg -cb236dda-48e9-3b16-a072-6fe7ad626e91,SESCO,II.1.1,Buenos Aires,AR-B,annual,2019,bioetanol combustion consumption by to the public,2.74297428,TJ,CH4,10.0,kg/TJ,27.4297428,kg -cd5cd459-6ab5-3ca4-96d8-5864b060768e,SESCO,II.1.1,Buenos Aires,AR-B,annual,2019,bioetanol combustion consumption by to the public,2.74297428,TJ,N2O,0.6,kg/TJ,1.6457845679999998,kg -192c08fe-7d5b-362b-b425-a7c496f6b42a,SESCO,II.1.1,Capital Federal,AR-C,annual,2019,bioetanol combustion consumption by to the public,0.4959338399999999,TJ,CH4,10.0,kg/TJ,4.959338399999999,kg -24b97166-b83a-3131-bac5-7a744dd1e4ff,SESCO,II.1.1,Capital Federal,AR-C,annual,2019,bioetanol combustion consumption by to the public,0.4959338399999999,TJ,N2O,0.6,kg/TJ,0.29756030399999994,kg -6d3cdba4-cd57-3838-992e-13d8322f4f5d,SESCO,II.1.1,Catamarca,AR-K,annual,2019,bioetanol combustion consumption by to the public,0.31187592,TJ,CH4,10.0,kg/TJ,3.1187591999999995,kg -e7d92c6d-75ff-3b6a-8ec4-7f653294eed3,SESCO,II.1.1,Catamarca,AR-K,annual,2019,bioetanol combustion consumption by to the public,0.31187592,TJ,N2O,0.6,kg/TJ,0.18712555199999997,kg -a6a0aabb-d4aa-34f3-ad4d-b4063dc12768,SESCO,II.1.1,Chaco,AR-H,annual,2019,bioetanol combustion consumption by to the public,0.2811996,TJ,CH4,10.0,kg/TJ,2.8119959999999997,kg -62b811e4-aae2-3c7e-979f-6c951f42b048,SESCO,II.1.1,Chaco,AR-H,annual,2019,bioetanol combustion consumption by to the public,0.2811996,TJ,N2O,0.6,kg/TJ,0.16871976,kg -91b51055-448d-3516-91ae-884c98191b9e,SESCO,II.1.1,Corrientes,AR-W,annual,2019,bioetanol combustion consumption by to the public,0.06902172,TJ,CH4,10.0,kg/TJ,0.6902172,kg -1bee6d9e-e898-35d5-92b7-e6ce96131d15,SESCO,II.1.1,Corrientes,AR-W,annual,2019,bioetanol combustion consumption by to the public,0.06902172,TJ,N2O,0.6,kg/TJ,0.041413031999999995,kg -ba125d29-57d8-3b03-b106-1f9c67e6041f,SESCO,II.1.1,Córdoba,AR-X,annual,2019,bioetanol combustion consumption by to the public,3.0113920799999994,TJ,CH4,10.0,kg/TJ,30.113920799999995,kg -1c0f454f-868b-3f75-8992-a5f589dbe57e,SESCO,II.1.1,Córdoba,AR-X,annual,2019,bioetanol combustion consumption by to the public,3.0113920799999994,TJ,N2O,0.6,kg/TJ,1.8068352479999996,kg -2642e33b-0e5e-311c-bfab-af753f09ecc4,SESCO,II.1.1,Entre Rios,AR-E,annual,2019,bioetanol combustion consumption by to the public,0.3451086,TJ,CH4,10.0,kg/TJ,3.451086,kg -23723cba-69bd-3c00-b380-877648dc25ff,SESCO,II.1.1,Entre Rios,AR-E,annual,2019,bioetanol combustion consumption by to the public,0.3451086,TJ,N2O,0.6,kg/TJ,0.20706516,kg -c2380854-9090-3fc7-86e2-95bfa2a1e835,SESCO,II.1.1,La Rioja,AR-F,annual,2019,bioetanol combustion consumption by to the public,0.02300724,TJ,CH4,10.0,kg/TJ,0.2300724,kg -823d6d6c-6582-3564-a7e3-0e94a133efde,SESCO,II.1.1,La Rioja,AR-F,annual,2019,bioetanol combustion consumption by to the public,0.02300724,TJ,N2O,0.6,kg/TJ,0.013804344000000001,kg -3c159b85-36e1-34e3-b3c6-71daf7b4ad08,SESCO,II.1.1,Mendoza,AR-M,annual,2019,bioetanol combustion consumption by to the public,0.8435988,TJ,CH4,10.0,kg/TJ,8.435988,kg -0751b0f0-d0e8-3913-bf85-bc0356a92d89,SESCO,II.1.1,Mendoza,AR-M,annual,2019,bioetanol combustion consumption by to the public,0.8435988,TJ,N2O,0.6,kg/TJ,0.50615928,kg -e53867f8-f384-3a01-a709-ce4d5096674f,SESCO,II.1.1,San Juan,AR-J,annual,2019,bioetanol combustion consumption by to the public,0.511272,TJ,CH4,10.0,kg/TJ,5.1127199999999995,kg -86372bb3-129a-35bc-9b96-76e96727fe26,SESCO,II.1.1,San Juan,AR-J,annual,2019,bioetanol combustion consumption by to the public,0.511272,TJ,N2O,0.6,kg/TJ,0.30676319999999996,kg -20e1b148-db9e-33f6-866c-5b7cd6e62811,SESCO,II.1.1,San Luis,AR-D,annual,2019,bioetanol combustion consumption by to the public,0.1022544,TJ,CH4,10.0,kg/TJ,1.022544,kg -8a6b4ff6-0cfc-311a-bf3d-f7781ecda0bc,SESCO,II.1.1,San Luis,AR-D,annual,2019,bioetanol combustion consumption by to the public,0.1022544,TJ,N2O,0.6,kg/TJ,0.06135263999999999,kg -9f458fd6-13ab-3fe2-9b96-1e37ae1d3601,SESCO,II.1.1,Santa Fe,AR-S,annual,2019,bioetanol combustion consumption by to the public,2.1984696,TJ,CH4,10.0,kg/TJ,21.984696,kg -f4513782-e2d2-3adf-a0b1-47e96fa236fe,SESCO,II.1.1,Santa Fe,AR-S,annual,2019,bioetanol combustion consumption by to the public,2.1984696,TJ,N2O,0.6,kg/TJ,1.31908176,kg -e5bb5b41-d8bc-3ce8-ad15-32722e3b5813,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2019,bioetanol combustion consumption by to the public,0.32721407999999996,TJ,CH4,10.0,kg/TJ,3.2721408,kg -5029f9fe-a4ca-3fc3-bc16-d2a14bb9ccc1,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2019,bioetanol combustion consumption by to the public,0.32721407999999996,TJ,N2O,0.6,kg/TJ,0.19632844799999996,kg -92ff7581-d552-3e51-a705-237085ef64c5,SESCO,II.1.1,Tucuman,AR-T,annual,2019,bioetanol combustion consumption by to the public,0.0127818,TJ,CH4,10.0,kg/TJ,0.127818,kg -d8927f5d-3e90-3be0-ae3a-250ab7cf3974,SESCO,II.1.1,Tucuman,AR-T,annual,2019,bioetanol combustion consumption by to the public,0.0127818,TJ,N2O,0.6,kg/TJ,0.007669079999999999,kg -0ebe5911-c2ae-3527-bdcc-f7a31062fbdf,SESCO,II.1.1,Buenos Aires,AR-B,annual,2019,bioetanol combustion consumption by to the public,99.37338228,TJ,CH4,10.0,kg/TJ,993.7338228,kg -fd074edb-eced-3424-b990-5e7348aca2e8,SESCO,II.1.1,Buenos Aires,AR-B,annual,2019,bioetanol combustion consumption by to the public,99.37338228,TJ,N2O,0.6,kg/TJ,59.624029367999995,kg -873723e5-3c59-33d7-87bd-c31890e9970e,SESCO,II.1.1,Capital Federal,AR-C,annual,2019,bioetanol combustion consumption by to the public,5.795268119999999,TJ,CH4,10.0,kg/TJ,57.952681199999994,kg -1f3d7f29-d8f0-3357-8b3f-a37aa5110e4d,SESCO,II.1.1,Capital Federal,AR-C,annual,2019,bioetanol combustion consumption by to the public,5.795268119999999,TJ,N2O,0.6,kg/TJ,3.4771608719999993,kg -2b1bee39-69f3-3d35-b777-5796d687c2f5,SESCO,II.1.1,Catamarca,AR-K,annual,2019,bioetanol combustion consumption by to the public,0.030676319999999997,TJ,CH4,10.0,kg/TJ,0.30676319999999996,kg -c3998574-9a3a-3930-a296-60cd7311a7dc,SESCO,II.1.1,Catamarca,AR-K,annual,2019,bioetanol combustion consumption by to the public,0.030676319999999997,TJ,N2O,0.6,kg/TJ,0.018405791999999997,kg -f1b8d8e2-a6d3-39aa-aaca-a19a0c18bea6,SESCO,II.1.1,Chaco,AR-H,annual,2019,bioetanol combustion consumption by to the public,8.2186974,TJ,CH4,10.0,kg/TJ,82.18697399999999,kg -b12f40f4-12a1-3b6f-8fbf-5d3ddff94f2a,SESCO,II.1.1,Chaco,AR-H,annual,2019,bioetanol combustion consumption by to the public,8.2186974,TJ,N2O,0.6,kg/TJ,4.931218439999999,kg -631afe9e-1264-369d-b3ac-2617498a5ab4,SESCO,II.1.1,Corrientes,AR-W,annual,2019,bioetanol combustion consumption by to the public,3.30281712,TJ,CH4,10.0,kg/TJ,33.028171199999996,kg -ae2224eb-da5d-3bd3-93ee-c152aa86746c,SESCO,II.1.1,Corrientes,AR-W,annual,2019,bioetanol combustion consumption by to the public,3.30281712,TJ,N2O,0.6,kg/TJ,1.9816902719999998,kg -7c973a24-1003-3750-9eef-26af677c7a28,SESCO,II.1.1,Córdoba,AR-X,annual,2019,bioetanol combustion consumption by to the public,55.56504095999999,TJ,CH4,10.0,kg/TJ,555.6504095999999,kg -448b2c0c-f290-3d6e-b9fb-1d4db5b6716d,SESCO,II.1.1,Córdoba,AR-X,annual,2019,bioetanol combustion consumption by to the public,55.56504095999999,TJ,N2O,0.6,kg/TJ,33.33902457599999,kg -6190059a-bfb0-3515-9a89-c74b46d61fff,SESCO,II.1.1,Entre Rios,AR-E,annual,2019,bioetanol combustion consumption by to the public,0.67487904,TJ,CH4,10.0,kg/TJ,6.7487904,kg -49a28fb4-a8cc-33a3-b690-2aed969c1719,SESCO,II.1.1,Entre Rios,AR-E,annual,2019,bioetanol combustion consumption by to the public,0.67487904,TJ,N2O,0.6,kg/TJ,0.404927424,kg -63f6e4f7-7e69-3448-ac13-d629148392b0,SESCO,II.1.1,Formosa,AR-P,annual,2019,bioetanol combustion consumption by to the public,0.06902172,TJ,CH4,10.0,kg/TJ,0.6902172,kg -e9c3b120-edf2-3862-8e58-da8e139a503f,SESCO,II.1.1,Formosa,AR-P,annual,2019,bioetanol combustion consumption by to the public,0.06902172,TJ,N2O,0.6,kg/TJ,0.041413031999999995,kg -c58b36c5-ae18-326e-b899-4c605c23d9e9,SESCO,II.1.1,La Rioja,AR-F,annual,2019,bioetanol combustion consumption by to the public,0.043458119999999996,TJ,CH4,10.0,kg/TJ,0.43458119999999995,kg -36293cf3-5f21-3b4a-abcf-b0d96db76071,SESCO,II.1.1,La Rioja,AR-F,annual,2019,bioetanol combustion consumption by to the public,0.043458119999999996,TJ,N2O,0.6,kg/TJ,0.026074871999999995,kg -7fe2a438-c994-34c1-b88a-a97f5454e009,SESCO,II.1.1,Mendoza,AR-M,annual,2019,bioetanol combustion consumption by to the public,27.813196799999997,TJ,CH4,10.0,kg/TJ,278.131968,kg -7c28570e-e812-3fae-8c2b-8ef4cf8c2cab,SESCO,II.1.1,Mendoza,AR-M,annual,2019,bioetanol combustion consumption by to the public,27.813196799999997,TJ,N2O,0.6,kg/TJ,16.687918079999996,kg -ec3d6e13-2392-33b7-a47e-28bcef79315c,SESCO,II.1.1,Misiones,AR-N,annual,2019,bioetanol combustion consumption by to the public,6.3883436399999995,TJ,CH4,10.0,kg/TJ,63.883436399999994,kg -173448d4-c8ce-34dc-a84a-5975c8133627,SESCO,II.1.1,Misiones,AR-N,annual,2019,bioetanol combustion consumption by to the public,6.3883436399999995,TJ,N2O,0.6,kg/TJ,3.8330061839999994,kg -6f662a3c-b0aa-33f3-8039-99e5d43676f4,SESCO,II.1.1,San Luis,AR-D,annual,2019,bioetanol combustion consumption by to the public,0.54450468,TJ,CH4,10.0,kg/TJ,5.4450468,kg -1ab231f2-215e-3c63-92d0-079bd4d5248e,SESCO,II.1.1,San Luis,AR-D,annual,2019,bioetanol combustion consumption by to the public,0.54450468,TJ,N2O,0.6,kg/TJ,0.32670280799999996,kg -6089cfb1-ec1c-325f-a1f9-bc7f86bb50da,SESCO,II.1.1,Santa Fe,AR-S,annual,2019,bioetanol combustion consumption by to the public,37.708866359999995,TJ,CH4,10.0,kg/TJ,377.08866359999996,kg -e1a7cf3f-0bd7-3123-82eb-7680e7d976d4,SESCO,II.1.1,Santa Fe,AR-S,annual,2019,bioetanol combustion consumption by to the public,37.708866359999995,TJ,N2O,0.6,kg/TJ,22.625319815999998,kg -b7a25bf3-fc4d-3695-a206-bb5d3cbb9de1,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2019,bioetanol combustion consumption by to the public,0.3323268,TJ,CH4,10.0,kg/TJ,3.3232679999999997,kg -3592e92f-3e16-3b1a-a0c0-57116b3c8d4e,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2019,bioetanol combustion consumption by to the public,0.3323268,TJ,N2O,0.6,kg/TJ,0.19939607999999998,kg -962122b1-d88e-3a24-a989-7496b0180d88,SESCO,II.1.1,Tucuman,AR-T,annual,2019,bioetanol combustion consumption by to the public,0.020450879999999998,TJ,CH4,10.0,kg/TJ,0.2045088,kg -0149c71d-07ea-38a8-81c7-989da7be279e,SESCO,II.1.1,Tucuman,AR-T,annual,2019,bioetanol combustion consumption by to the public,0.020450879999999998,TJ,N2O,0.6,kg/TJ,0.012270527999999998,kg -56d6462f-c868-3ecf-99c5-e24ca5dad104,SESCO,II.1.1,Buenos Aires,AR-B,annual,2019,bioetanol combustion consumption by to the public,9.888000479999999,TJ,CH4,10.0,kg/TJ,98.8800048,kg -a613f074-f007-390c-b80b-7fd02b91acda,SESCO,II.1.1,Buenos Aires,AR-B,annual,2019,bioetanol combustion consumption by to the public,9.888000479999999,TJ,N2O,0.6,kg/TJ,5.932800287999999,kg -97b8a35c-c444-31ba-9940-af3c011a89c0,SESCO,II.1.1,Capital Federal,AR-C,annual,2019,bioetanol combustion consumption by to the public,1.0685584799999999,TJ,CH4,10.0,kg/TJ,10.685584799999999,kg -fa600c44-f1e6-346a-a7d2-e5dd506f50da,SESCO,II.1.1,Capital Federal,AR-C,annual,2019,bioetanol combustion consumption by to the public,1.0685584799999999,TJ,N2O,0.6,kg/TJ,0.6411350879999999,kg -5da985bd-c344-39df-b4b5-ba4a9bcb0f80,SESCO,II.1.1,Chaco,AR-H,annual,2019,bioetanol combustion consumption by to the public,0.48059567999999997,TJ,CH4,10.0,kg/TJ,4.8059568,kg -ca725dbe-0abb-3a19-bb14-a387d1e0cb3b,SESCO,II.1.1,Chaco,AR-H,annual,2019,bioetanol combustion consumption by to the public,0.48059567999999997,TJ,N2O,0.6,kg/TJ,0.288357408,kg -e5a369b1-2687-3dd1-9d21-15a8bb9013f3,SESCO,II.1.1,Corrientes,AR-W,annual,2019,bioetanol combustion consumption by to the public,0.16871976,TJ,CH4,10.0,kg/TJ,1.6871976,kg -7099a912-b24b-3da2-b014-356911421d84,SESCO,II.1.1,Corrientes,AR-W,annual,2019,bioetanol combustion consumption by to the public,0.16871976,TJ,N2O,0.6,kg/TJ,0.101231856,kg -97a02d83-cc23-390b-b11a-65ee741fdcda,SESCO,II.1.1,Córdoba,AR-X,annual,2019,bioetanol combustion consumption by to the public,6.6848814,TJ,CH4,10.0,kg/TJ,66.848814,kg -749f9e83-f071-3f32-af5d-cac6ef0f8a58,SESCO,II.1.1,Córdoba,AR-X,annual,2019,bioetanol combustion consumption by to the public,6.6848814,TJ,N2O,0.6,kg/TJ,4.01092884,kg -9c159f83-f341-371b-806b-e03d9576c6e5,SESCO,II.1.1,Entre Rios,AR-E,annual,2019,bioetanol combustion consumption by to the public,0.07413444,TJ,CH4,10.0,kg/TJ,0.7413444,kg -906e299e-8615-391d-8783-b7558432547b,SESCO,II.1.1,Entre Rios,AR-E,annual,2019,bioetanol combustion consumption by to the public,0.07413444,TJ,N2O,0.6,kg/TJ,0.044480663999999996,kg -16fe29cc-f30b-3007-9df0-8c10726b5889,SESCO,II.1.1,Mendoza,AR-M,annual,2019,bioetanol combustion consumption by to the public,3.11364648,TJ,CH4,10.0,kg/TJ,31.1364648,kg -de64bf15-7178-3eb2-8543-5bf086eaa621,SESCO,II.1.1,Mendoza,AR-M,annual,2019,bioetanol combustion consumption by to the public,3.11364648,TJ,N2O,0.6,kg/TJ,1.8681878879999998,kg -ddd50b6d-c9e3-3836-ac9d-d65950c0ea1f,SESCO,II.1.1,Misiones,AR-N,annual,2019,bioetanol combustion consumption by to the public,0.49337748,TJ,CH4,10.0,kg/TJ,4.9337748,kg -c84eb316-9d09-3d81-b82c-09ecfbd3ae1b,SESCO,II.1.1,Misiones,AR-N,annual,2019,bioetanol combustion consumption by to the public,0.49337748,TJ,N2O,0.6,kg/TJ,0.296026488,kg -8be0a4bf-e06f-346c-a77d-595d63a9f586,SESCO,II.1.1,San Luis,AR-D,annual,2019,bioetanol combustion consumption by to the public,0.05368356,TJ,CH4,10.0,kg/TJ,0.5368356,kg -e9e47f2d-6916-3de4-900f-672a01f49d91,SESCO,II.1.1,San Luis,AR-D,annual,2019,bioetanol combustion consumption by to the public,0.05368356,TJ,N2O,0.6,kg/TJ,0.032210136,kg -2e1d2c83-8c4a-3652-8a90-fd67ae91da41,SESCO,II.1.1,Santa Fe,AR-S,annual,2019,bioetanol combustion consumption by to the public,3.88311084,TJ,CH4,10.0,kg/TJ,38.8311084,kg -88c986bd-127b-34f5-9291-0d629c1da350,SESCO,II.1.1,Santa Fe,AR-S,annual,2019,bioetanol combustion consumption by to the public,3.88311084,TJ,N2O,0.6,kg/TJ,2.329866504,kg -fca3e329-b802-38fd-ab64-a5dca29dadb4,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2019,bioetanol combustion consumption by to the public,0.04601448,TJ,CH4,10.0,kg/TJ,0.4601448,kg -5056a9d7-8eca-30df-9c91-32c40fe338ee,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2019,bioetanol combustion consumption by to the public,0.04601448,TJ,N2O,0.6,kg/TJ,0.027608688000000003,kg -224ebc70-42c0-3f2e-b83d-9828fbe682f0,SESCO,I.3.1,Buenos Aires,AR-B,annual,2019,bioetanol combustion consumption by petrochemical industries,0.39367944,TJ,CH4,10.0,kg/TJ,3.9367944,kg -647e7ec7-7a9b-3468-b8c5-77feea522c53,SESCO,I.3.1,Buenos Aires,AR-B,annual,2019,bioetanol combustion consumption by petrochemical industries,0.39367944,TJ,N2O,0.6,kg/TJ,0.23620766399999998,kg -7aa49fbc-feed-314d-b8fc-c72ffb60337e,SESCO,II.5.1,Córdoba,AR-X,annual,2019,bioetanol combustion consumption by agriculture machines,0.10736712,TJ,CH4,10.0,kg/TJ,1.0736712,kg -935dd468-4d7b-3311-b485-e0a165cd6a09,SESCO,II.5.1,Córdoba,AR-X,annual,2019,bioetanol combustion consumption by agriculture machines,0.10736712,TJ,N2O,0.6,kg/TJ,0.064420272,kg -87613766-3652-30cf-88b8-57471f78bdef,SESCO,II.5.1,Santa Fe,AR-S,annual,2019,bioetanol combustion consumption by agriculture machines,0.41413031999999994,TJ,CH4,10.0,kg/TJ,4.141303199999999,kg -4fb553de-b39f-3aec-b142-35b1d4ae3956,SESCO,II.5.1,Santa Fe,AR-S,annual,2019,bioetanol combustion consumption by agriculture machines,0.41413031999999994,TJ,N2O,0.6,kg/TJ,0.24847819199999996,kg -b2e4b6f1-aa77-3bbe-ae5b-f262d9d08b3c,SESCO,II.5.1,Córdoba,AR-X,annual,2019,bioetanol combustion consumption by agriculture machines,0.07669079999999999,TJ,CH4,10.0,kg/TJ,0.7669079999999999,kg -82d5b127-7999-3459-ad61-b60f378110d0,SESCO,II.5.1,Córdoba,AR-X,annual,2019,bioetanol combustion consumption by agriculture machines,0.07669079999999999,TJ,N2O,0.6,kg/TJ,0.04601447999999999,kg -434a3563-769d-3b3d-a5b7-67ac3b4e3752,SESCO,II.5.1,Santa Fe,AR-S,annual,2019,bioetanol combustion consumption by agriculture machines,0.13037436,TJ,CH4,10.0,kg/TJ,1.3037436,kg -13f8eee9-6181-3044-9f84-656351194145,SESCO,II.5.1,Santa Fe,AR-S,annual,2019,bioetanol combustion consumption by agriculture machines,0.13037436,TJ,N2O,0.6,kg/TJ,0.078224616,kg -cda5f6dc-8674-3d00-8163-b61fcd8c97da,SESCO,II.1.1,Buenos Aires,AR-B,annual,2019,bioetanol combustion consumption by to the public,226.12538015999996,TJ,CH4,10.0,kg/TJ,2261.2538016,kg -648b9da3-a9b3-3a38-8fdd-02c44bc05501,SESCO,II.1.1,Buenos Aires,AR-B,annual,2019,bioetanol combustion consumption by to the public,226.12538015999996,TJ,N2O,0.6,kg/TJ,135.67522809599998,kg -f151d829-28eb-3e6f-8cc8-c69e83eb3051,SESCO,II.1.1,Capital Federal,AR-C,annual,2019,bioetanol combustion consumption by to the public,60.79535351999999,TJ,CH4,10.0,kg/TJ,607.9535351999999,kg -90e5816e-ffaa-3ad6-9aaf-dda4249e841e,SESCO,II.1.1,Capital Federal,AR-C,annual,2019,bioetanol combustion consumption by to the public,60.79535351999999,TJ,N2O,0.6,kg/TJ,36.477212112,kg -91c6bee1-2d55-38d4-b91c-5163481fb3ac,SESCO,II.1.1,Catamarca,AR-K,annual,2019,bioetanol combustion consumption by to the public,7.280513279999999,TJ,CH4,10.0,kg/TJ,72.8051328,kg -08717586-3358-34bd-8e45-2e46e0d162f9,SESCO,II.1.1,Catamarca,AR-K,annual,2019,bioetanol combustion consumption by to the public,7.280513279999999,TJ,N2O,0.6,kg/TJ,4.368307967999999,kg -3bc42c64-33ae-36d4-9f62-a24f40ab89e9,SESCO,II.1.1,Chaco,AR-H,annual,2019,bioetanol combustion consumption by to the public,7.850581559999999,TJ,CH4,10.0,kg/TJ,78.50581559999999,kg -17b89df8-435b-33bd-99c5-c3017d42503e,SESCO,II.1.1,Chaco,AR-H,annual,2019,bioetanol combustion consumption by to the public,7.850581559999999,TJ,N2O,0.6,kg/TJ,4.710348935999999,kg -e32264cf-0288-3cab-8c7d-ea84c9d8f15d,SESCO,II.1.1,Chubut,AR-U,annual,2019,bioetanol combustion consumption by to the public,30.827145239999997,TJ,CH4,10.0,kg/TJ,308.2714524,kg -198b41e8-6846-31dc-b58d-511f73b71080,SESCO,II.1.1,Chubut,AR-U,annual,2019,bioetanol combustion consumption by to the public,30.827145239999997,TJ,N2O,0.6,kg/TJ,18.496287143999997,kg -7b611c78-eca9-3c59-b178-8eeb52762204,SESCO,II.1.1,Corrientes,AR-W,annual,2019,bioetanol combustion consumption by to the public,14.100881759999998,TJ,CH4,10.0,kg/TJ,141.0088176,kg -c844c090-de93-3978-8a66-7b1d923cef19,SESCO,II.1.1,Corrientes,AR-W,annual,2019,bioetanol combustion consumption by to the public,14.100881759999998,TJ,N2O,0.6,kg/TJ,8.460529055999999,kg -7ac6cb99-cd89-33f3-a0a7-764e1180049f,SESCO,II.1.1,Córdoba,AR-X,annual,2019,bioetanol combustion consumption by to the public,58.34636064,TJ,CH4,10.0,kg/TJ,583.4636064,kg -7f08660b-f5ca-36b6-bdca-a8f2cff885e0,SESCO,II.1.1,Córdoba,AR-X,annual,2019,bioetanol combustion consumption by to the public,58.34636064,TJ,N2O,0.6,kg/TJ,35.007816384,kg -6e0a0e75-0ca4-3ee2-81e0-1e9c45388305,SESCO,II.1.1,Entre Rios,AR-E,annual,2019,bioetanol combustion consumption by to the public,25.21082232,TJ,CH4,10.0,kg/TJ,252.1082232,kg -d5aef984-e448-3ac9-b7f9-eb7de4dfecc1,SESCO,II.1.1,Entre Rios,AR-E,annual,2019,bioetanol combustion consumption by to the public,25.21082232,TJ,N2O,0.6,kg/TJ,15.126493391999999,kg -8a11ba16-1493-3868-a5ea-8e925ab327d7,SESCO,II.1.1,Formosa,AR-P,annual,2019,bioetanol combustion consumption by to the public,11.531739959999998,TJ,CH4,10.0,kg/TJ,115.31739959999997,kg -fe960b06-6369-3532-bf6e-0dfcfff53843,SESCO,II.1.1,Formosa,AR-P,annual,2019,bioetanol combustion consumption by to the public,11.531739959999998,TJ,N2O,0.6,kg/TJ,6.919043975999998,kg -d697d160-17f4-386d-9dd4-af6bcd47768b,SESCO,II.1.1,Jujuy,AR-Y,annual,2019,bioetanol combustion consumption by to the public,4.4557354799999995,TJ,CH4,10.0,kg/TJ,44.5573548,kg -0a913e8e-f6d9-3783-a9e0-22106aefec6f,SESCO,II.1.1,Jujuy,AR-Y,annual,2019,bioetanol combustion consumption by to the public,4.4557354799999995,TJ,N2O,0.6,kg/TJ,2.673441288,kg -f9f7d5e0-7754-3eb7-9a6d-7b62db2770fd,SESCO,II.1.1,La Pampa,AR-L,annual,2019,bioetanol combustion consumption by to the public,4.3585937999999995,TJ,CH4,10.0,kg/TJ,43.585938,kg -a6d7cec9-e496-3033-87af-34f68406d4d3,SESCO,II.1.1,La Pampa,AR-L,annual,2019,bioetanol combustion consumption by to the public,4.3585937999999995,TJ,N2O,0.6,kg/TJ,2.6151562799999994,kg -b9b08820-237c-3548-a985-4ee2e2d4aae6,SESCO,II.1.1,La Rioja,AR-F,annual,2019,bioetanol combustion consumption by to the public,2.8171087200000002,TJ,CH4,10.0,kg/TJ,28.171087200000002,kg -50e6adb8-372c-390f-9e98-1400e9cfac7e,SESCO,II.1.1,La Rioja,AR-F,annual,2019,bioetanol combustion consumption by to the public,2.8171087200000002,TJ,N2O,0.6,kg/TJ,1.690265232,kg -3aeae81e-71e5-383b-b9c9-9671819370fe,SESCO,II.1.1,Mendoza,AR-M,annual,2019,bioetanol combustion consumption by to the public,13.6893078,TJ,CH4,10.0,kg/TJ,136.893078,kg -a72b7fad-043b-35d8-8cc4-58b7449ae2c0,SESCO,II.1.1,Mendoza,AR-M,annual,2019,bioetanol combustion consumption by to the public,13.6893078,TJ,N2O,0.6,kg/TJ,8.21358468,kg -78468167-aeed-3569-9121-0707aa2893f8,SESCO,II.1.1,Misiones,AR-N,annual,2019,bioetanol combustion consumption by to the public,19.41044148,TJ,CH4,10.0,kg/TJ,194.1044148,kg -2d145723-25f0-3adb-afc6-cc0c325b3731,SESCO,II.1.1,Misiones,AR-N,annual,2019,bioetanol combustion consumption by to the public,19.41044148,TJ,N2O,0.6,kg/TJ,11.646264888,kg -0b6311c2-e4e5-3dcf-b124-c8b815c81f7f,SESCO,II.1.1,Neuquén,AR-Q,annual,2019,bioetanol combustion consumption by to the public,8.4104244,TJ,CH4,10.0,kg/TJ,84.104244,kg -b01754ef-1eb7-30b1-b2aa-deaf96fafc0a,SESCO,II.1.1,Neuquén,AR-Q,annual,2019,bioetanol combustion consumption by to the public,8.4104244,TJ,N2O,0.6,kg/TJ,5.04625464,kg -6a6ea0ac-cd53-3ef1-abc4-dfbdb841161b,SESCO,II.1.1,Rio Negro,AR-R,annual,2019,bioetanol combustion consumption by to the public,15.846875639999999,TJ,CH4,10.0,kg/TJ,158.4687564,kg -4aa81bb0-f268-3ea6-8e56-a26580a544c0,SESCO,II.1.1,Rio Negro,AR-R,annual,2019,bioetanol combustion consumption by to the public,15.846875639999999,TJ,N2O,0.6,kg/TJ,9.508125384,kg -1d6bdf94-a3b5-3ab4-a857-1ca745007716,SESCO,II.1.1,Salta,AR-A,annual,2019,bioetanol combustion consumption by to the public,3.46131144,TJ,CH4,10.0,kg/TJ,34.6131144,kg -fee44ffa-e0b4-3e39-920f-83a5d162637f,SESCO,II.1.1,Salta,AR-A,annual,2019,bioetanol combustion consumption by to the public,3.46131144,TJ,N2O,0.6,kg/TJ,2.076786864,kg -f5bed3e7-ce88-3d52-8dc1-d3f2bfaaf0cb,SESCO,II.1.1,San Juan,AR-J,annual,2019,bioetanol combustion consumption by to the public,5.06670552,TJ,CH4,10.0,kg/TJ,50.6670552,kg -a91a715a-6084-3757-afca-161ff8c2c128,SESCO,II.1.1,San Juan,AR-J,annual,2019,bioetanol combustion consumption by to the public,5.06670552,TJ,N2O,0.6,kg/TJ,3.040023312,kg -fae50c26-b6db-3c16-be7b-ec5c246250d3,SESCO,II.1.1,San Luis,AR-D,annual,2019,bioetanol combustion consumption by to the public,13.17547944,TJ,CH4,10.0,kg/TJ,131.7547944,kg -e91c9d66-0a3d-36b9-aa50-92df135d3e18,SESCO,II.1.1,San Luis,AR-D,annual,2019,bioetanol combustion consumption by to the public,13.17547944,TJ,N2O,0.6,kg/TJ,7.905287663999999,kg -85001c78-2868-3c8d-ae2e-67c614e20986,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2019,bioetanol combustion consumption by to the public,15.547781519999997,TJ,CH4,10.0,kg/TJ,155.47781519999998,kg -0a0ca50c-8a0b-325d-a2e0-d4f679464747,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2019,bioetanol combustion consumption by to the public,15.547781519999997,TJ,N2O,0.6,kg/TJ,9.328668911999998,kg -dc31c267-4184-33ee-b87a-6aa8619a7bdf,SESCO,II.1.1,Santa Fe,AR-S,annual,2019,bioetanol combustion consumption by to the public,53.752581719999995,TJ,CH4,10.0,kg/TJ,537.5258171999999,kg -2de292b7-7e09-3951-b5b2-4442b31c2fae,SESCO,II.1.1,Santa Fe,AR-S,annual,2019,bioetanol combustion consumption by to the public,53.752581719999995,TJ,N2O,0.6,kg/TJ,32.25154903199999,kg -d6f3c530-1648-3868-a831-d5ee2f324d4f,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2019,bioetanol combustion consumption by to the public,7.911934199999999,TJ,CH4,10.0,kg/TJ,79.11934199999999,kg -f193ac4f-4cbf-36a8-8e41-c199a8490c70,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2019,bioetanol combustion consumption by to the public,7.911934199999999,TJ,N2O,0.6,kg/TJ,4.7471605199999996,kg -b5734823-79c1-3614-9cf9-97a8db939743,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2019,bioetanol combustion consumption by to the public,2.7455306399999997,TJ,CH4,10.0,kg/TJ,27.455306399999998,kg -889ae831-1943-376e-bbac-54c81cf96ecc,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2019,bioetanol combustion consumption by to the public,2.7455306399999997,TJ,N2O,0.6,kg/TJ,1.6473183839999999,kg -f2b11a52-d45b-30bd-b28a-c32989eec951,SESCO,II.1.1,Tucuman,AR-T,annual,2019,bioetanol combustion consumption by to the public,1.8099028799999999,TJ,CH4,10.0,kg/TJ,18.0990288,kg -100fd1a2-8f3c-38fd-b614-0bd30328a898,SESCO,II.1.1,Tucuman,AR-T,annual,2019,bioetanol combustion consumption by to the public,1.8099028799999999,TJ,N2O,0.6,kg/TJ,1.0859417279999999,kg -edd6c24d-ab0b-3285-8893-5646aaae1ae3,SESCO,II.1.1,Buenos Aires,AR-B,annual,2019,bioetanol combustion consumption by to the public,49.27128264,TJ,CH4,10.0,kg/TJ,492.71282640000004,kg -7ecae4a5-7ed7-361f-9abf-3dd746649ce6,SESCO,II.1.1,Buenos Aires,AR-B,annual,2019,bioetanol combustion consumption by to the public,49.27128264,TJ,N2O,0.6,kg/TJ,29.562769584,kg -4b39330a-7caa-399c-ab5a-909e47c35e80,SESCO,II.1.1,Capital Federal,AR-C,annual,2019,bioetanol combustion consumption by to the public,19.88081172,TJ,CH4,10.0,kg/TJ,198.8081172,kg -8f2523a2-877c-3525-b015-80a6d7cb9986,SESCO,II.1.1,Capital Federal,AR-C,annual,2019,bioetanol combustion consumption by to the public,19.88081172,TJ,N2O,0.6,kg/TJ,11.928487032,kg -7ccdbca9-0228-3d8e-a3d6-145ee4f0cd67,SESCO,II.1.1,Catamarca,AR-K,annual,2019,bioetanol combustion consumption by to the public,1.9172699999999998,TJ,CH4,10.0,kg/TJ,19.1727,kg -ca5d8ec4-5c3a-33a0-9319-fe575a40afe7,SESCO,II.1.1,Catamarca,AR-K,annual,2019,bioetanol combustion consumption by to the public,1.9172699999999998,TJ,N2O,0.6,kg/TJ,1.1503619999999999,kg -2d431818-3918-3871-96f4-04bbf6f27457,SESCO,II.1.1,Chaco,AR-H,annual,2019,bioetanol combustion consumption by to the public,1.2884054399999998,TJ,CH4,10.0,kg/TJ,12.884054399999998,kg -5a572148-5112-343e-ae8a-b6b11f1870a2,SESCO,II.1.1,Chaco,AR-H,annual,2019,bioetanol combustion consumption by to the public,1.2884054399999998,TJ,N2O,0.6,kg/TJ,0.7730432639999999,kg -cab20e4c-09b1-3de8-aec4-22ecd19b192a,SESCO,II.1.1,Chubut,AR-U,annual,2019,bioetanol combustion consumption by to the public,5.10760728,TJ,CH4,10.0,kg/TJ,51.0760728,kg -f75068f2-f64a-322c-8dad-8c6c00df664d,SESCO,II.1.1,Chubut,AR-U,annual,2019,bioetanol combustion consumption by to the public,5.10760728,TJ,N2O,0.6,kg/TJ,3.0645643679999997,kg -3c870c0f-7d46-3048-877a-d6c36b4b5d36,SESCO,II.1.1,Corrientes,AR-W,annual,2019,bioetanol combustion consumption by to the public,2.6560580399999996,TJ,CH4,10.0,kg/TJ,26.560580399999996,kg -ea7f2d32-a8a8-3f78-97bb-c7213575d8cd,SESCO,II.1.1,Corrientes,AR-W,annual,2019,bioetanol combustion consumption by to the public,2.6560580399999996,TJ,N2O,0.6,kg/TJ,1.5936348239999998,kg -aff9f8cd-f7d8-3d91-856a-09e1191815f7,SESCO,II.1.1,Córdoba,AR-X,annual,2019,bioetanol combustion consumption by to the public,12.66165108,TJ,CH4,10.0,kg/TJ,126.6165108,kg -de1fc1a3-6b58-3ffb-bcfe-53ae2ee2ed79,SESCO,II.1.1,Córdoba,AR-X,annual,2019,bioetanol combustion consumption by to the public,12.66165108,TJ,N2O,0.6,kg/TJ,7.596990648,kg -687a3a53-392e-3fc8-9a55-4bde60ff58de,SESCO,II.1.1,Entre Rios,AR-E,annual,2019,bioetanol combustion consumption by to the public,5.88985344,TJ,CH4,10.0,kg/TJ,58.8985344,kg -bee891e0-a650-3914-a887-bdbcbe43589a,SESCO,II.1.1,Entre Rios,AR-E,annual,2019,bioetanol combustion consumption by to the public,5.88985344,TJ,N2O,0.6,kg/TJ,3.5339120640000004,kg -a14e9e7c-8788-3ec9-bbdf-4b5ea0010bd5,SESCO,II.1.1,Formosa,AR-P,annual,2019,bioetanol combustion consumption by to the public,2.50012008,TJ,CH4,10.0,kg/TJ,25.0012008,kg -1a4841c6-2ddf-3068-9720-be1a8fca957d,SESCO,II.1.1,Formosa,AR-P,annual,2019,bioetanol combustion consumption by to the public,2.50012008,TJ,N2O,0.6,kg/TJ,1.5000720479999998,kg -8a7417f0-bc95-3760-a96b-20b002d1f272,SESCO,II.1.1,Jujuy,AR-Y,annual,2019,bioetanol combustion consumption by to the public,0.8435988,TJ,CH4,10.0,kg/TJ,8.435988,kg -81c7b843-0bef-3c1d-a6ad-b6422a860728,SESCO,II.1.1,Jujuy,AR-Y,annual,2019,bioetanol combustion consumption by to the public,0.8435988,TJ,N2O,0.6,kg/TJ,0.50615928,kg -1d8de937-4d57-3957-9bcb-aeb571aded93,SESCO,II.1.1,La Pampa,AR-L,annual,2019,bioetanol combustion consumption by to the public,1.34720172,TJ,CH4,10.0,kg/TJ,13.4720172,kg -663dbbc4-1bb5-3c1b-a55c-5e050251da3b,SESCO,II.1.1,La Pampa,AR-L,annual,2019,bioetanol combustion consumption by to the public,1.34720172,TJ,N2O,0.6,kg/TJ,0.8083210319999999,kg -c2ca0d94-79ac-32f1-93fd-7ef6f61bcc6f,SESCO,II.1.1,La Rioja,AR-F,annual,2019,bioetanol combustion consumption by to the public,0.44736299999999996,TJ,CH4,10.0,kg/TJ,4.47363,kg -77e084a6-682e-3231-89e9-6bc4bf01d12e,SESCO,II.1.1,La Rioja,AR-F,annual,2019,bioetanol combustion consumption by to the public,0.44736299999999996,TJ,N2O,0.6,kg/TJ,0.2684178,kg -4e1189c7-e885-324d-bd18-05c9859271ee,SESCO,II.1.1,Mendoza,AR-M,annual,2019,bioetanol combustion consumption by to the public,3.26191536,TJ,CH4,10.0,kg/TJ,32.619153600000004,kg -d30ab2c1-b418-3d76-a293-11b496cca0d3,SESCO,II.1.1,Mendoza,AR-M,annual,2019,bioetanol combustion consumption by to the public,3.26191536,TJ,N2O,0.6,kg/TJ,1.957149216,kg -7b7b44be-b15e-3867-bcbd-f9b637b53da7,SESCO,II.1.1,Misiones,AR-N,annual,2019,bioetanol combustion consumption by to the public,2.3262876,TJ,CH4,10.0,kg/TJ,23.262876000000002,kg -f0217d98-de56-3918-9e5f-de7a7e1c3076,SESCO,II.1.1,Misiones,AR-N,annual,2019,bioetanol combustion consumption by to the public,2.3262876,TJ,N2O,0.6,kg/TJ,1.39577256,kg -db91091c-47ed-32e1-af9a-c96f95981e97,SESCO,II.1.1,Neuquén,AR-Q,annual,2019,bioetanol combustion consumption by to the public,3.6274748399999996,TJ,CH4,10.0,kg/TJ,36.27474839999999,kg -9639ded7-172f-3a4a-a8af-9bcbe3592f72,SESCO,II.1.1,Neuquén,AR-Q,annual,2019,bioetanol combustion consumption by to the public,3.6274748399999996,TJ,N2O,0.6,kg/TJ,2.1764849039999996,kg -9d9a9dec-8e0e-3e03-b523-ceee12a178bb,SESCO,II.1.1,Rio Negro,AR-R,annual,2019,bioetanol combustion consumption by to the public,5.36579964,TJ,CH4,10.0,kg/TJ,53.657996399999995,kg -c926861d-6093-36b7-8466-7b1a58e985d4,SESCO,II.1.1,Rio Negro,AR-R,annual,2019,bioetanol combustion consumption by to the public,5.36579964,TJ,N2O,0.6,kg/TJ,3.219479784,kg -d24ca058-07dc-3cfc-b8a3-885469bc9d54,SESCO,II.1.1,Salta,AR-A,annual,2019,bioetanol combustion consumption by to the public,0.37578492,TJ,CH4,10.0,kg/TJ,3.7578492000000003,kg -499e8692-60d9-3636-b620-5ee3472198d1,SESCO,II.1.1,Salta,AR-A,annual,2019,bioetanol combustion consumption by to the public,0.37578492,TJ,N2O,0.6,kg/TJ,0.225470952,kg -0b73dec2-1b00-31df-bdc8-4c5b11abe9eb,SESCO,II.1.1,San Juan,AR-J,annual,2019,bioetanol combustion consumption by to the public,1.3420889999999999,TJ,CH4,10.0,kg/TJ,13.420889999999998,kg -b0ffdadd-20e4-34ae-9f4a-f2c9fcb7a10c,SESCO,II.1.1,San Juan,AR-J,annual,2019,bioetanol combustion consumption by to the public,1.3420889999999999,TJ,N2O,0.6,kg/TJ,0.8052533999999999,kg -d073389e-0356-3154-becc-7512303b618d,SESCO,II.1.1,San Luis,AR-D,annual,2019,bioetanol combustion consumption by to the public,2.4157602,TJ,CH4,10.0,kg/TJ,24.157601999999997,kg -cc9007dd-e63f-366f-a072-2a4a2b832bb0,SESCO,II.1.1,San Luis,AR-D,annual,2019,bioetanol combustion consumption by to the public,2.4157602,TJ,N2O,0.6,kg/TJ,1.4494561199999998,kg -5fb6214d-df94-39b0-bbea-ae372a14bdd4,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2019,bioetanol combustion consumption by to the public,2.1626805599999996,TJ,CH4,10.0,kg/TJ,21.626805599999997,kg -72382653-f1f6-3724-ba54-d409081bfb3c,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2019,bioetanol combustion consumption by to the public,2.1626805599999996,TJ,N2O,0.6,kg/TJ,1.2976083359999997,kg -2ed803eb-c73e-33fd-89a1-ea81d3704af9,SESCO,II.1.1,Santa Fe,AR-S,annual,2019,bioetanol combustion consumption by to the public,12.06857556,TJ,CH4,10.0,kg/TJ,120.6857556,kg -5f08218a-f35f-3596-b57a-852826b546c3,SESCO,II.1.1,Santa Fe,AR-S,annual,2019,bioetanol combustion consumption by to the public,12.06857556,TJ,N2O,0.6,kg/TJ,7.241145335999999,kg -797cf368-10da-3d65-8433-13526ec8fc5e,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2019,bioetanol combustion consumption by to the public,1.8508046399999998,TJ,CH4,10.0,kg/TJ,18.508046399999998,kg -c81d533b-fa2a-3a55-9291-3324051625bb,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2019,bioetanol combustion consumption by to the public,1.8508046399999998,TJ,N2O,0.6,kg/TJ,1.1104827839999998,kg -b9d84be5-125b-37a3-92b0-882684f8a1d7,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2019,bioetanol combustion consumption by to the public,0.6058573199999999,TJ,CH4,10.0,kg/TJ,6.0585732,kg -531c8740-fa8a-3ece-8c4f-b312d304aba5,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2019,bioetanol combustion consumption by to the public,0.6058573199999999,TJ,N2O,0.6,kg/TJ,0.36351439199999996,kg -9af1df80-3368-3bb1-a352-2a2a9a477ab2,SESCO,II.1.1,Tucuman,AR-T,annual,2019,bioetanol combustion consumption by to the public,0.13548707999999998,TJ,CH4,10.0,kg/TJ,1.3548707999999998,kg -0e21e32e-85c2-3ae3-bb40-898780e3e086,SESCO,II.1.1,Tucuman,AR-T,annual,2019,bioetanol combustion consumption by to the public,0.13548707999999998,TJ,N2O,0.6,kg/TJ,0.08129224799999998,kg -280ff9fd-c82a-3dd5-b28f-960a96464e6b,SESCO,II.1.1,Buenos Aires,AR-B,annual,2019,bioetanol combustion consumption by freight transport,0.24029783999999998,TJ,CH4,10.0,kg/TJ,2.4029784,kg -30ced1b5-032e-3bed-95eb-6047dc02e28b,SESCO,II.1.1,Buenos Aires,AR-B,annual,2019,bioetanol combustion consumption by freight transport,0.24029783999999998,TJ,N2O,0.6,kg/TJ,0.144178704,kg -6abeccda-08d1-38e5-b368-3a862ec32eb1,SESCO,II.1.1,Capital Federal,AR-C,annual,2019,bioetanol combustion consumption by freight transport,0.11503619999999998,TJ,CH4,10.0,kg/TJ,1.1503619999999999,kg -d163c0d9-4f04-3d4e-a170-d1249892f9a1,SESCO,II.1.1,Capital Federal,AR-C,annual,2019,bioetanol combustion consumption by freight transport,0.11503619999999998,TJ,N2O,0.6,kg/TJ,0.06902171999999998,kg -d8118ba0-6cf7-37b9-9cab-db132d9a0e8e,SESCO,II.1.1,Córdoba,AR-X,annual,2019,bioetanol combustion consumption by freight transport,0.063909,TJ,CH4,10.0,kg/TJ,0.6390899999999999,kg -f7166e6f-eb45-336d-8fc6-c627253c90cf,SESCO,II.1.1,Córdoba,AR-X,annual,2019,bioetanol combustion consumption by freight transport,0.063909,TJ,N2O,0.6,kg/TJ,0.038345399999999995,kg -1ead6138-3314-3399-87c6-8a8d20e03161,SESCO,II.1.1,Mendoza,AR-M,annual,2019,bioetanol combustion consumption by freight transport,0.005112719999999999,TJ,CH4,10.0,kg/TJ,0.0511272,kg -b3cd3f34-225a-30b6-ae3f-dffcf57f5c45,SESCO,II.1.1,Mendoza,AR-M,annual,2019,bioetanol combustion consumption by freight transport,0.005112719999999999,TJ,N2O,0.6,kg/TJ,0.0030676319999999994,kg -616e2b4d-0dc1-38c2-8343-ca3e86471a59,SESCO,II.1.1,Salta,AR-A,annual,2019,bioetanol combustion consumption by freight transport,0.007669079999999999,TJ,CH4,10.0,kg/TJ,0.07669079999999999,kg -d0854f69-f300-3a72-8ee9-211090365fed,SESCO,II.1.1,Salta,AR-A,annual,2019,bioetanol combustion consumption by freight transport,0.007669079999999999,TJ,N2O,0.6,kg/TJ,0.004601447999999999,kg -37b4c558-94c5-3309-b9e9-e0d7a1ca13f7,SESCO,II.1.1,Santa Fe,AR-S,annual,2019,bioetanol combustion consumption by freight transport,0.035789039999999994,TJ,CH4,10.0,kg/TJ,0.35789039999999994,kg -5f5109a4-d4ee-3e20-b227-b0f0f816addc,SESCO,II.1.1,Santa Fe,AR-S,annual,2019,bioetanol combustion consumption by freight transport,0.035789039999999994,TJ,N2O,0.6,kg/TJ,0.021473423999999994,kg -53137234-5bee-3370-98ef-a94bcafb8a8d,SESCO,II.1.1,Tucuman,AR-T,annual,2019,bioetanol combustion consumption by freight transport,0.0025563599999999997,TJ,CH4,10.0,kg/TJ,0.0255636,kg -5fa21baf-2acb-3d82-a31f-10e581f47c91,SESCO,II.1.1,Tucuman,AR-T,annual,2019,bioetanol combustion consumption by freight transport,0.0025563599999999997,TJ,N2O,0.6,kg/TJ,0.0015338159999999997,kg -ee1aa1f1-09c7-3d45-9bfa-9f6afffb43fa,SESCO,II.1.1,Buenos Aires,AR-B,annual,2019,bioetanol combustion consumption by freight transport,0.14571251999999998,TJ,CH4,10.0,kg/TJ,1.4571252,kg -5af70caf-33f6-36f9-b463-c4809040b52e,SESCO,II.1.1,Buenos Aires,AR-B,annual,2019,bioetanol combustion consumption by freight transport,0.14571251999999998,TJ,N2O,0.6,kg/TJ,0.08742751199999999,kg -a65273fb-ddf5-3080-89fe-8c925f2126ae,SESCO,II.1.1,Capital Federal,AR-C,annual,2019,bioetanol combustion consumption by freight transport,0.063909,TJ,CH4,10.0,kg/TJ,0.6390899999999999,kg -8e69eed9-0198-3f1f-b000-d4965b95049b,SESCO,II.1.1,Capital Federal,AR-C,annual,2019,bioetanol combustion consumption by freight transport,0.063909,TJ,N2O,0.6,kg/TJ,0.038345399999999995,kg -932b14b7-8100-3bf9-b98a-ad886169d113,SESCO,II.1.1,Corrientes,AR-W,annual,2019,bioetanol combustion consumption by freight transport,0.007669079999999999,TJ,CH4,10.0,kg/TJ,0.07669079999999999,kg -54f02717-b0a9-3119-9edd-e8dd7f491cfa,SESCO,II.1.1,Corrientes,AR-W,annual,2019,bioetanol combustion consumption by freight transport,0.007669079999999999,TJ,N2O,0.6,kg/TJ,0.004601447999999999,kg -428402ed-3518-353d-9b5f-2295cf143e52,SESCO,II.1.1,Córdoba,AR-X,annual,2019,bioetanol combustion consumption by freight transport,0.040901759999999995,TJ,CH4,10.0,kg/TJ,0.4090176,kg -4b77ee56-06da-3e3a-96fd-318c10a99d27,SESCO,II.1.1,Córdoba,AR-X,annual,2019,bioetanol combustion consumption by freight transport,0.040901759999999995,TJ,N2O,0.6,kg/TJ,0.024541055999999995,kg -a6d9acb0-0c43-3b08-b944-ca4771e87a81,SESCO,II.1.1,Entre Rios,AR-E,annual,2019,bioetanol combustion consumption by freight transport,0.010225439999999999,TJ,CH4,10.0,kg/TJ,0.1022544,kg -0ad6a27c-c115-3486-a883-f8db452ae7b3,SESCO,II.1.1,Entre Rios,AR-E,annual,2019,bioetanol combustion consumption by freight transport,0.010225439999999999,TJ,N2O,0.6,kg/TJ,0.006135263999999999,kg -d0711613-8448-3183-b938-10c416ffa6a4,SESCO,II.1.1,Santa Fe,AR-S,annual,2019,bioetanol combustion consumption by freight transport,0.038345399999999995,TJ,CH4,10.0,kg/TJ,0.38345399999999996,kg -664b6246-b4b9-35f5-8915-d39cebdd82a6,SESCO,II.1.1,Santa Fe,AR-S,annual,2019,bioetanol combustion consumption by freight transport,0.038345399999999995,TJ,N2O,0.6,kg/TJ,0.023007239999999995,kg -4e9983f9-1fc0-353d-9e08-cb4377baad9e,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2019,bioetanol combustion consumption by freight transport,0.0025563599999999997,TJ,CH4,10.0,kg/TJ,0.0255636,kg -9b33756f-94e1-3203-91ed-bf636d919669,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2019,bioetanol combustion consumption by freight transport,0.0025563599999999997,TJ,N2O,0.6,kg/TJ,0.0015338159999999997,kg -59ae8139-e1e0-3965-8817-b6324e05871e,SESCO,II.1.1,Santa Fe,AR-S,annual,2019,bioetanol combustion consumption by public passenger transport,0.007669079999999999,TJ,CH4,10.0,kg/TJ,0.07669079999999999,kg -6c4d293d-77f7-357a-b4a3-54beeb65ef50,SESCO,II.1.1,Santa Fe,AR-S,annual,2019,bioetanol combustion consumption by public passenger transport,0.007669079999999999,TJ,N2O,0.6,kg/TJ,0.004601447999999999,kg -84e22604-2a2a-3997-a354-6819a6db171c,SESCO,II.5.1,Córdoba,AR-X,annual,2019,bioetanol combustion consumption by agriculture machines,0.21217787999999996,TJ,CH4,10.0,kg/TJ,2.1217787999999995,kg -fc675e99-a56f-38e2-8d12-9d4c33c90d3e,SESCO,II.5.1,Córdoba,AR-X,annual,2019,bioetanol combustion consumption by agriculture machines,0.21217787999999996,TJ,N2O,0.6,kg/TJ,0.12730672799999998,kg -1202876b-99e1-34b6-a5fb-7ebd199fd2e4,SESCO,II.5.1,Santa Fe,AR-S,annual,2019,bioetanol combustion consumption by agriculture machines,2.9832721199999996,TJ,CH4,10.0,kg/TJ,29.832721199999995,kg -2dae29ae-f042-3101-bee0-85893f5806b1,SESCO,II.5.1,Santa Fe,AR-S,annual,2019,bioetanol combustion consumption by agriculture machines,2.9832721199999996,TJ,N2O,0.6,kg/TJ,1.7899632719999998,kg -f9a60b85-1f02-3200-96f4-ae6661b357d2,SESCO,II.5.1,Córdoba,AR-X,annual,2019,bioetanol combustion consumption by agriculture machines,0.127818,TJ,CH4,10.0,kg/TJ,1.2781799999999999,kg -69ca89e7-2ea4-386f-b6bb-7ccc84336e1b,SESCO,II.5.1,Córdoba,AR-X,annual,2019,bioetanol combustion consumption by agriculture machines,0.127818,TJ,N2O,0.6,kg/TJ,0.07669079999999999,kg -a973f41a-0ba5-3f48-9079-a42d2340d647,SESCO,II.5.1,Santa Fe,AR-S,annual,2019,bioetanol combustion consumption by agriculture machines,0.45503207999999995,TJ,CH4,10.0,kg/TJ,4.5503208,kg -7bc359f7-aaa2-3313-9529-d58400df21a4,SESCO,II.5.1,Santa Fe,AR-S,annual,2019,bioetanol combustion consumption by agriculture machines,0.45503207999999995,TJ,N2O,0.6,kg/TJ,0.27301924799999994,kg -85d3a982-679c-350e-876d-aa351935a2d4,SESCO,II.1.1,Buenos Aires,AR-B,annual,2019,bioetanol combustion consumption by to the public,689.02082352,TJ,CH4,10.0,kg/TJ,6890.2082352,kg -e2d6d54c-1207-37c6-ba19-ee356d93d521,SESCO,II.1.1,Buenos Aires,AR-B,annual,2019,bioetanol combustion consumption by to the public,689.02082352,TJ,N2O,0.6,kg/TJ,413.412494112,kg -9b45ee53-c646-3c6e-8c95-7a201ded9cec,SESCO,II.1.1,Capital Federal,AR-C,annual,2019,bioetanol combustion consumption by to the public,203.1155838,TJ,CH4,10.0,kg/TJ,2031.155838,kg -389ab3e6-a3c1-3c48-9768-7379a487a334,SESCO,II.1.1,Capital Federal,AR-C,annual,2019,bioetanol combustion consumption by to the public,203.1155838,TJ,N2O,0.6,kg/TJ,121.86935027999999,kg -972321cc-ac82-304d-8661-b02a258ca850,SESCO,II.1.1,Catamarca,AR-K,annual,2019,bioetanol combustion consumption by to the public,26.097879239999997,TJ,CH4,10.0,kg/TJ,260.9787924,kg -3a84c0ef-35ec-3aa2-955c-f7a4fc36ac84,SESCO,II.1.1,Catamarca,AR-K,annual,2019,bioetanol combustion consumption by to the public,26.097879239999997,TJ,N2O,0.6,kg/TJ,15.658727543999998,kg -663c63e5-36de-3afe-9097-51b985d53ec3,SESCO,II.1.1,Chaco,AR-H,annual,2019,bioetanol combustion consumption by to the public,34.6642416,TJ,CH4,10.0,kg/TJ,346.64241599999997,kg -19dde110-5621-3fba-b37b-8a00dccced5e,SESCO,II.1.1,Chaco,AR-H,annual,2019,bioetanol combustion consumption by to the public,34.6642416,TJ,N2O,0.6,kg/TJ,20.798544959999997,kg -d3b8755f-f78e-3c19-ab07-1a64fd282bae,SESCO,II.1.1,Chubut,AR-U,annual,2019,bioetanol combustion consumption by to the public,100.05081767999998,TJ,CH4,10.0,kg/TJ,1000.5081767999998,kg -ce6d9263-bb01-3739-b011-d1798d69a5ac,SESCO,II.1.1,Chubut,AR-U,annual,2019,bioetanol combustion consumption by to the public,100.05081767999998,TJ,N2O,0.6,kg/TJ,60.03049060799999,kg -270346fa-686b-3e1a-ac08-80a39baa93e0,SESCO,II.1.1,Corrientes,AR-W,annual,2019,bioetanol combustion consumption by to the public,44.73118727999999,TJ,CH4,10.0,kg/TJ,447.31187279999995,kg -d2782c59-6c10-308d-8408-87794fd3a3e6,SESCO,II.1.1,Corrientes,AR-W,annual,2019,bioetanol combustion consumption by to the public,44.73118727999999,TJ,N2O,0.6,kg/TJ,26.838712367999996,kg -aea3a088-6e03-36ff-8084-b0dae9401f27,SESCO,II.1.1,Córdoba,AR-X,annual,2019,bioetanol combustion consumption by to the public,175.76508815999998,TJ,CH4,10.0,kg/TJ,1757.6508815999998,kg -29193f99-4bfa-32fa-aee1-5f789e4d1a0e,SESCO,II.1.1,Córdoba,AR-X,annual,2019,bioetanol combustion consumption by to the public,175.76508815999998,TJ,N2O,0.6,kg/TJ,105.45905289599999,kg -b7cf4d54-aa5f-3cb0-ad56-b46d8001d51e,SESCO,II.1.1,Entre Rios,AR-E,annual,2019,bioetanol combustion consumption by to the public,67.73842728,TJ,CH4,10.0,kg/TJ,677.3842728,kg -9f811e00-8233-33ff-97fc-7e181a9a71db,SESCO,II.1.1,Entre Rios,AR-E,annual,2019,bioetanol combustion consumption by to the public,67.73842728,TJ,N2O,0.6,kg/TJ,40.643056367999996,kg -149a1ae6-e541-3307-b23f-70b42121a4f4,SESCO,II.1.1,Formosa,AR-P,annual,2019,bioetanol combustion consumption by to the public,39.42674028,TJ,CH4,10.0,kg/TJ,394.26740279999996,kg -2a710d14-6bef-3f27-ae0e-796ac827a6be,SESCO,II.1.1,Formosa,AR-P,annual,2019,bioetanol combustion consumption by to the public,39.42674028,TJ,N2O,0.6,kg/TJ,23.656044167999998,kg -6dfaf88e-5e3d-3189-b2f5-d13b4ad08c57,SESCO,II.1.1,Jujuy,AR-Y,annual,2019,bioetanol combustion consumption by to the public,13.33397376,TJ,CH4,10.0,kg/TJ,133.33973759999998,kg -c79bcf34-4702-35fb-ae7b-45c75afb1967,SESCO,II.1.1,Jujuy,AR-Y,annual,2019,bioetanol combustion consumption by to the public,13.33397376,TJ,N2O,0.6,kg/TJ,8.000384255999998,kg -19023cb1-1bd9-3e91-bb5c-b47ad67bd975,SESCO,II.1.1,La Pampa,AR-L,annual,2019,bioetanol combustion consumption by to the public,11.674896119999998,TJ,CH4,10.0,kg/TJ,116.74896119999998,kg -1f0e5281-8084-3aad-a0b4-a7429ccfb78d,SESCO,II.1.1,La Pampa,AR-L,annual,2019,bioetanol combustion consumption by to the public,11.674896119999998,TJ,N2O,0.6,kg/TJ,7.004937671999999,kg -25ffde7c-42c9-38ed-aa4f-4246978b7eac,SESCO,II.1.1,La Rioja,AR-F,annual,2019,bioetanol combustion consumption by to the public,8.354184479999999,TJ,CH4,10.0,kg/TJ,83.54184479999999,kg -367ac22b-de3f-3c0e-abd6-b027f8963cb8,SESCO,II.1.1,La Rioja,AR-F,annual,2019,bioetanol combustion consumption by to the public,8.354184479999999,TJ,N2O,0.6,kg/TJ,5.012510687999999,kg -a6f38c3a-07c6-3a84-9922-7b4b266e6973,SESCO,II.1.1,Mendoza,AR-M,annual,2019,bioetanol combustion consumption by to the public,42.665648399999995,TJ,CH4,10.0,kg/TJ,426.656484,kg -71384ab9-a372-3db6-bfed-f6baed91e1ab,SESCO,II.1.1,Mendoza,AR-M,annual,2019,bioetanol combustion consumption by to the public,42.665648399999995,TJ,N2O,0.6,kg/TJ,25.599389039999995,kg -946b9667-adaf-3698-9d45-f34ba7da15c2,SESCO,II.1.1,Misiones,AR-N,annual,2019,bioetanol combustion consumption by to the public,61.67729771999999,TJ,CH4,10.0,kg/TJ,616.7729771999999,kg -69cf9861-3dd3-3530-b259-bf2c9eb743a4,SESCO,II.1.1,Misiones,AR-N,annual,2019,bioetanol combustion consumption by to the public,61.67729771999999,TJ,N2O,0.6,kg/TJ,37.00637863199999,kg -93603bdf-3f4f-381b-9dc7-d1e202211d99,SESCO,II.1.1,Neuquén,AR-Q,annual,2019,bioetanol combustion consumption by to the public,33.442301519999994,TJ,CH4,10.0,kg/TJ,334.42301519999995,kg -178d6278-d70b-3618-95f3-53e7d11b78f7,SESCO,II.1.1,Neuquén,AR-Q,annual,2019,bioetanol combustion consumption by to the public,33.442301519999994,TJ,N2O,0.6,kg/TJ,20.065380911999995,kg -a601c543-3475-377d-b602-4393a43c2c9d,SESCO,II.1.1,Rio Negro,AR-R,annual,2019,bioetanol combustion consumption by to the public,42.96729888,TJ,CH4,10.0,kg/TJ,429.6729888,kg -ade0cd29-0eaa-3078-b732-edc47024cf64,SESCO,II.1.1,Rio Negro,AR-R,annual,2019,bioetanol combustion consumption by to the public,42.96729888,TJ,N2O,0.6,kg/TJ,25.780379328,kg -59078d3f-18e6-387c-8da3-94375fa3a69f,SESCO,II.1.1,Salta,AR-A,annual,2019,bioetanol combustion consumption by to the public,11.286329399999998,TJ,CH4,10.0,kg/TJ,112.86329399999998,kg -fc43866c-7e21-3d83-ac23-3993b8d5db9d,SESCO,II.1.1,Salta,AR-A,annual,2019,bioetanol combustion consumption by to the public,11.286329399999998,TJ,N2O,0.6,kg/TJ,6.771797639999998,kg -898f19d2-3bee-386f-ad43-7f127f4a0572,SESCO,II.1.1,San Juan,AR-J,annual,2019,bioetanol combustion consumption by to the public,15.235905599999997,TJ,CH4,10.0,kg/TJ,152.35905599999998,kg -689afedf-7d1a-3e1b-9c28-023d2b8b6fd4,SESCO,II.1.1,San Juan,AR-J,annual,2019,bioetanol combustion consumption by to the public,15.235905599999997,TJ,N2O,0.6,kg/TJ,9.141543359999998,kg -13956f48-cc1c-3357-be7a-08f0e7e12b5c,SESCO,II.1.1,San Luis,AR-D,annual,2019,bioetanol combustion consumption by to the public,38.51667612,TJ,CH4,10.0,kg/TJ,385.1667612,kg -06cb77a3-be59-3b3d-a4e3-884fc4ff18f1,SESCO,II.1.1,San Luis,AR-D,annual,2019,bioetanol combustion consumption by to the public,38.51667612,TJ,N2O,0.6,kg/TJ,23.110005672,kg -dacdc3fe-3d0d-31bb-90c7-510211bdbeed,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2019,bioetanol combustion consumption by to the public,51.78162816,TJ,CH4,10.0,kg/TJ,517.8162815999999,kg -c653ce1b-66f9-36e1-9e66-6f79c5d23915,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2019,bioetanol combustion consumption by to the public,51.78162816,TJ,N2O,0.6,kg/TJ,31.068976895999995,kg -e86d0f2a-6ef7-3853-87f9-29a780642f2e,SESCO,II.1.1,Santa Fe,AR-S,annual,2019,bioetanol combustion consumption by to the public,179.37722483999997,TJ,CH4,10.0,kg/TJ,1793.7722483999996,kg -05ff84cf-192b-3063-a486-5b09b78f0fc7,SESCO,II.1.1,Santa Fe,AR-S,annual,2019,bioetanol combustion consumption by to the public,179.37722483999997,TJ,N2O,0.6,kg/TJ,107.62633490399998,kg -ba32f2a1-476f-397d-859b-15efd956bc12,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2019,bioetanol combustion consumption by to the public,25.438338359999996,TJ,CH4,10.0,kg/TJ,254.38338359999995,kg -194a1c6c-28f9-35b9-922b-feb4ce328d70,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2019,bioetanol combustion consumption by to the public,25.438338359999996,TJ,N2O,0.6,kg/TJ,15.263003015999997,kg -b832ffc5-8fd6-3f1c-84a7-dc711c306cce,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2019,bioetanol combustion consumption by to the public,9.300037679999999,TJ,CH4,10.0,kg/TJ,93.0003768,kg -85652570-5fdf-3411-8e21-8b7e44aaa8db,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2019,bioetanol combustion consumption by to the public,9.300037679999999,TJ,N2O,0.6,kg/TJ,5.580022607999999,kg -cdc09b1a-08fd-3660-8109-d06d09c84a9e,SESCO,II.1.1,Tucuman,AR-T,annual,2019,bioetanol combustion consumption by to the public,7.79434164,TJ,CH4,10.0,kg/TJ,77.9434164,kg -30f55916-00f0-3c0a-9af9-47ac9fdf4a90,SESCO,II.1.1,Tucuman,AR-T,annual,2019,bioetanol combustion consumption by to the public,7.79434164,TJ,N2O,0.6,kg/TJ,4.676604984,kg -0a708b57-1fe2-3d6d-8850-64b11b9fc4fd,SESCO,II.1.1,Buenos Aires,AR-B,annual,2019,bioetanol combustion consumption by to the public,141.95211443999997,TJ,CH4,10.0,kg/TJ,1419.5211443999997,kg -20409fbf-8b16-3bb8-aa49-d16c533fa915,SESCO,II.1.1,Buenos Aires,AR-B,annual,2019,bioetanol combustion consumption by to the public,141.95211443999997,TJ,N2O,0.6,kg/TJ,85.17126866399998,kg -38b5e6ac-27b0-380d-a2f9-22478630db8b,SESCO,II.1.1,Capital Federal,AR-C,annual,2019,bioetanol combustion consumption by to the public,67.24504979999999,TJ,CH4,10.0,kg/TJ,672.4504979999999,kg -c8e6aacc-c59f-3c38-872f-87ed9e4fbd02,SESCO,II.1.1,Capital Federal,AR-C,annual,2019,bioetanol combustion consumption by to the public,67.24504979999999,TJ,N2O,0.6,kg/TJ,40.347029879999994,kg -501b6456-5e0d-39da-bbff-5e56397f796f,SESCO,II.1.1,Catamarca,AR-K,annual,2019,bioetanol combustion consumption by to the public,6.257969279999999,TJ,CH4,10.0,kg/TJ,62.57969279999999,kg -582006e4-1896-36a7-84e6-fa7a10fd8c9d,SESCO,II.1.1,Catamarca,AR-K,annual,2019,bioetanol combustion consumption by to the public,6.257969279999999,TJ,N2O,0.6,kg/TJ,3.7547815679999994,kg -50a8cbb0-a25c-3dc5-8145-e2820e89a478,SESCO,II.1.1,Chaco,AR-H,annual,2019,bioetanol combustion consumption by to the public,5.2712143199999995,TJ,CH4,10.0,kg/TJ,52.71214319999999,kg -f6d2ad1e-8a2f-32d8-8782-fe2c4937e109,SESCO,II.1.1,Chaco,AR-H,annual,2019,bioetanol combustion consumption by to the public,5.2712143199999995,TJ,N2O,0.6,kg/TJ,3.1627285919999997,kg -4a9fa713-335e-370f-b4ac-2103e0e287d8,SESCO,II.1.1,Chubut,AR-U,annual,2019,bioetanol combustion consumption by to the public,16.54731828,TJ,CH4,10.0,kg/TJ,165.4731828,kg -70af9a1a-f444-3a3a-b7f3-dba0d1b7ff87,SESCO,II.1.1,Chubut,AR-U,annual,2019,bioetanol combustion consumption by to the public,16.54731828,TJ,N2O,0.6,kg/TJ,9.928390967999999,kg -5b002a1f-fb63-37ab-b709-0dd430f0dfd5,SESCO,II.1.1,Corrientes,AR-W,annual,2019,bioetanol combustion consumption by to the public,7.779003479999999,TJ,CH4,10.0,kg/TJ,77.79003479999999,kg -55ca0f84-4a88-3e9a-b0b8-cae6e791a10e,SESCO,II.1.1,Corrientes,AR-W,annual,2019,bioetanol combustion consumption by to the public,7.779003479999999,TJ,N2O,0.6,kg/TJ,4.667402087999999,kg -7cedea5c-8cba-3f4f-a10d-38b3fdb74159,SESCO,II.1.1,Córdoba,AR-X,annual,2019,bioetanol combustion consumption by to the public,36.08557775999999,TJ,CH4,10.0,kg/TJ,360.8557775999999,kg -f164d0d5-ea96-3450-bc5f-79bd7aacd6f7,SESCO,II.1.1,Córdoba,AR-X,annual,2019,bioetanol combustion consumption by to the public,36.08557775999999,TJ,N2O,0.6,kg/TJ,21.651346655999994,kg -38b26362-e939-3717-a84e-56ae2d37034d,SESCO,II.1.1,Entre Rios,AR-E,annual,2019,bioetanol combustion consumption by to the public,14.2005798,TJ,CH4,10.0,kg/TJ,142.005798,kg -6e8d7cbe-8212-39c1-928b-297d79a01881,SESCO,II.1.1,Entre Rios,AR-E,annual,2019,bioetanol combustion consumption by to the public,14.2005798,TJ,N2O,0.6,kg/TJ,8.52034788,kg -f9fb874b-8775-3724-9fcb-276b5af26b53,SESCO,II.1.1,Formosa,AR-P,annual,2019,bioetanol combustion consumption by to the public,9.17221968,TJ,CH4,10.0,kg/TJ,91.72219679999999,kg -1179dd73-e72f-3a18-ab55-e4a373e16fd5,SESCO,II.1.1,Formosa,AR-P,annual,2019,bioetanol combustion consumption by to the public,9.17221968,TJ,N2O,0.6,kg/TJ,5.5033318079999995,kg -30a7b864-19ab-36bd-8bec-9a5dab6ea425,SESCO,II.1.1,Jujuy,AR-Y,annual,2019,bioetanol combustion consumption by to the public,2.5052328,TJ,CH4,10.0,kg/TJ,25.052328,kg -f3adcdfc-aadb-3d97-b854-d6e626db0b17,SESCO,II.1.1,Jujuy,AR-Y,annual,2019,bioetanol combustion consumption by to the public,2.5052328,TJ,N2O,0.6,kg/TJ,1.5031396799999999,kg -a61f9e36-0a62-3ef9-ab27-4c3cd78799ea,SESCO,II.1.1,La Pampa,AR-L,annual,2019,bioetanol combustion consumption by to the public,3.2644717199999995,TJ,CH4,10.0,kg/TJ,32.644717199999995,kg -77975307-1b76-33b7-a51f-20cd17e675af,SESCO,II.1.1,La Pampa,AR-L,annual,2019,bioetanol combustion consumption by to the public,3.2644717199999995,TJ,N2O,0.6,kg/TJ,1.9586830319999997,kg -a101ea7c-a322-3b7f-8c23-833475dce433,SESCO,II.1.1,La Rioja,AR-F,annual,2019,bioetanol combustion consumption by to the public,1.4008852799999998,TJ,CH4,10.0,kg/TJ,14.008852799999998,kg -8548dcc9-e2c3-34fe-8648-216e4851b762,SESCO,II.1.1,La Rioja,AR-F,annual,2019,bioetanol combustion consumption by to the public,1.4008852799999998,TJ,N2O,0.6,kg/TJ,0.8405311679999998,kg -b6101d35-5be9-322d-b58a-3f814e017c4c,SESCO,II.1.1,Mendoza,AR-M,annual,2019,bioetanol combustion consumption by to the public,11.342569319999999,TJ,CH4,10.0,kg/TJ,113.42569319999998,kg -6788ebef-d282-3610-afa7-8c6e016f1168,SESCO,II.1.1,Mendoza,AR-M,annual,2019,bioetanol combustion consumption by to the public,11.342569319999999,TJ,N2O,0.6,kg/TJ,6.805541591999999,kg -c79126b3-fd0f-3e32-b799-3b5ccff8f13c,SESCO,II.1.1,Misiones,AR-N,annual,2019,bioetanol combustion consumption by to the public,7.216604279999999,TJ,CH4,10.0,kg/TJ,72.1660428,kg -0c5726a9-ff5e-34c8-b9fb-12592ebc049b,SESCO,II.1.1,Misiones,AR-N,annual,2019,bioetanol combustion consumption by to the public,7.216604279999999,TJ,N2O,0.6,kg/TJ,4.329962567999999,kg -edf15a8a-956d-39d7-87b8-9a073fb0be27,SESCO,II.1.1,Neuquén,AR-Q,annual,2019,bioetanol combustion consumption by to the public,12.03023016,TJ,CH4,10.0,kg/TJ,120.3023016,kg -af30165f-3e84-3fb9-b774-b44c0e53e692,SESCO,II.1.1,Neuquén,AR-Q,annual,2019,bioetanol combustion consumption by to the public,12.03023016,TJ,N2O,0.6,kg/TJ,7.218138096,kg -9b74e00b-8161-3c0d-95e8-e42bd3166715,SESCO,II.1.1,Rio Negro,AR-R,annual,2019,bioetanol combustion consumption by to the public,12.232182599999998,TJ,CH4,10.0,kg/TJ,122.32182599999999,kg -db5d4ab2-4d09-34e0-8ffd-3da7de19c4eb,SESCO,II.1.1,Rio Negro,AR-R,annual,2019,bioetanol combustion consumption by to the public,12.232182599999998,TJ,N2O,0.6,kg/TJ,7.3393095599999985,kg -a3ee1160-011c-3367-9453-0da235a4e76a,SESCO,II.1.1,Salta,AR-A,annual,2019,bioetanol combustion consumption by to the public,1.39577256,TJ,CH4,10.0,kg/TJ,13.9577256,kg -d1afe3cc-d99c-3bdf-8a6f-ec20e2c0bccd,SESCO,II.1.1,Salta,AR-A,annual,2019,bioetanol combustion consumption by to the public,1.39577256,TJ,N2O,0.6,kg/TJ,0.8374635359999999,kg -c84a025d-c60e-3e57-9f14-82057a39924f,SESCO,II.1.1,San Juan,AR-J,annual,2019,bioetanol combustion consumption by to the public,2.6841779999999997,TJ,CH4,10.0,kg/TJ,26.841779999999996,kg -7dd9012c-dcc5-3171-bace-077ae7ac79f9,SESCO,II.1.1,San Juan,AR-J,annual,2019,bioetanol combustion consumption by to the public,2.6841779999999997,TJ,N2O,0.6,kg/TJ,1.6105067999999998,kg -8271f9c2-6923-3063-b3f7-62d12531c88c,SESCO,II.1.1,San Luis,AR-D,annual,2019,bioetanol combustion consumption by to the public,6.9354046799999995,TJ,CH4,10.0,kg/TJ,69.35404679999999,kg -bbb36485-0337-31eb-a8a0-b3ea97d7b6e7,SESCO,II.1.1,San Luis,AR-D,annual,2019,bioetanol combustion consumption by to the public,6.9354046799999995,TJ,N2O,0.6,kg/TJ,4.161242808,kg -aefc78c8-38db-3746-8db0-dc37e46b4570,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2019,bioetanol combustion consumption by to the public,6.273307439999999,TJ,CH4,10.0,kg/TJ,62.73307439999999,kg -c2880fe3-c0e7-3398-b9d6-026d71263154,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2019,bioetanol combustion consumption by to the public,6.273307439999999,TJ,N2O,0.6,kg/TJ,3.763984463999999,kg -b00237f2-ad49-3bea-848b-7268782f5116,SESCO,II.1.1,Santa Fe,AR-S,annual,2019,bioetanol combustion consumption by to the public,41.203410479999995,TJ,CH4,10.0,kg/TJ,412.03410479999997,kg -426dadbf-cc3b-3fcd-a162-c8e21ff256e2,SESCO,II.1.1,Santa Fe,AR-S,annual,2019,bioetanol combustion consumption by to the public,41.203410479999995,TJ,N2O,0.6,kg/TJ,24.722046287999998,kg -4f7143fa-1c75-3e6c-8297-9ce49f9c2577,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2019,bioetanol combustion consumption by to the public,6.2886456,TJ,CH4,10.0,kg/TJ,62.886455999999995,kg -4a370da8-f1b6-3592-917d-169e3b67aa41,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2019,bioetanol combustion consumption by to the public,6.2886456,TJ,N2O,0.6,kg/TJ,3.7731873599999997,kg -53b46198-de28-32cd-b9af-1b3e54373ab1,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2019,bioetanol combustion consumption by to the public,1.8584737199999999,TJ,CH4,10.0,kg/TJ,18.5847372,kg -e7754657-2ecf-3ee4-8e9b-64c499c3ce0f,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2019,bioetanol combustion consumption by to the public,1.8584737199999999,TJ,N2O,0.6,kg/TJ,1.1150842319999998,kg -0752fa0f-5bc5-3e8d-a2a5-df3490d15b18,SESCO,II.1.1,Tucuman,AR-T,annual,2019,bioetanol combustion consumption by to the public,1.01487492,TJ,CH4,10.0,kg/TJ,10.148749200000001,kg -c8bcd823-0698-3cad-9d96-10ced88058e2,SESCO,II.1.1,Tucuman,AR-T,annual,2019,bioetanol combustion consumption by to the public,1.01487492,TJ,N2O,0.6,kg/TJ,0.608924952,kg -93743c61-9917-3308-a115-476b6b867df5,SESCO,II.1.1,Buenos Aires,AR-B,annual,2019,bioetanol combustion consumption by freight transport,0.82570428,TJ,CH4,10.0,kg/TJ,8.257042799999999,kg -89c3821a-611a-3cfe-8070-073769932737,SESCO,II.1.1,Buenos Aires,AR-B,annual,2019,bioetanol combustion consumption by freight transport,0.82570428,TJ,N2O,0.6,kg/TJ,0.49542256799999995,kg -7e3e0f88-efa6-34fa-b5ab-303f83c2d23c,SESCO,II.1.1,Capital Federal,AR-C,annual,2019,bioetanol combustion consumption by freight transport,0.37834127999999995,TJ,CH4,10.0,kg/TJ,3.7834127999999994,kg -b1a73049-3e87-35ee-b671-d471c9f69495,SESCO,II.1.1,Capital Federal,AR-C,annual,2019,bioetanol combustion consumption by freight transport,0.37834127999999995,TJ,N2O,0.6,kg/TJ,0.22700476799999997,kg -107077b4-4a33-3c2e-9084-fb26ec4b80a2,SESCO,II.1.1,Córdoba,AR-X,annual,2019,bioetanol combustion consumption by freight transport,0.11759255999999998,TJ,CH4,10.0,kg/TJ,1.1759255999999998,kg -eb0669ed-ca8b-37d1-92e7-6d16b5367117,SESCO,II.1.1,Córdoba,AR-X,annual,2019,bioetanol combustion consumption by freight transport,0.11759255999999998,TJ,N2O,0.6,kg/TJ,0.07055553599999999,kg -d91600d7-2828-3f1a-9d8d-ccf15b3e631b,SESCO,II.1.1,Entre Rios,AR-E,annual,2019,bioetanol combustion consumption by freight transport,0.02300724,TJ,CH4,10.0,kg/TJ,0.2300724,kg -c9c9c5b7-84b3-338d-ae0a-3067ee69606e,SESCO,II.1.1,Entre Rios,AR-E,annual,2019,bioetanol combustion consumption by freight transport,0.02300724,TJ,N2O,0.6,kg/TJ,0.013804344000000001,kg -12ff1f96-1671-3e23-a813-1a46d33d74f8,SESCO,II.1.1,Mendoza,AR-M,annual,2019,bioetanol combustion consumption by freight transport,0.015338159999999998,TJ,CH4,10.0,kg/TJ,0.15338159999999998,kg -a120ea7a-7474-3aa5-a1e9-7bb0a85c9ced,SESCO,II.1.1,Mendoza,AR-M,annual,2019,bioetanol combustion consumption by freight transport,0.015338159999999998,TJ,N2O,0.6,kg/TJ,0.009202895999999999,kg -840cbecc-830c-3a84-ac8f-dbbab0fb8d85,SESCO,II.1.1,Santa Fe,AR-S,annual,2019,bioetanol combustion consumption by freight transport,0.12526163999999998,TJ,CH4,10.0,kg/TJ,1.2526163999999997,kg -ce91a6d9-c795-3289-ae96-3ced081f5f29,SESCO,II.1.1,Santa Fe,AR-S,annual,2019,bioetanol combustion consumption by freight transport,0.12526163999999998,TJ,N2O,0.6,kg/TJ,0.07515698399999998,kg -7c55484a-6038-3520-9563-76f2b0ecf642,SESCO,II.1.1,Buenos Aires,AR-B,annual,2019,bioetanol combustion consumption by freight transport,0.49849019999999994,TJ,CH4,10.0,kg/TJ,4.984901999999999,kg -964a386a-4e9f-3635-b54a-db62673373dc,SESCO,II.1.1,Buenos Aires,AR-B,annual,2019,bioetanol combustion consumption by freight transport,0.49849019999999994,TJ,N2O,0.6,kg/TJ,0.29909411999999996,kg -c536dc73-e71a-3b5a-be56-36496a2c6f9b,SESCO,II.1.1,Capital Federal,AR-C,annual,2019,bioetanol combustion consumption by freight transport,0.20962151999999998,TJ,CH4,10.0,kg/TJ,2.0962151999999996,kg -bfe327be-c272-323a-ae55-6cd5000535e8,SESCO,II.1.1,Capital Federal,AR-C,annual,2019,bioetanol combustion consumption by freight transport,0.20962151999999998,TJ,N2O,0.6,kg/TJ,0.125772912,kg -a86bdc6d-a7f7-3033-a9ed-285f9f3450a9,SESCO,II.1.1,Chaco,AR-H,annual,2019,bioetanol combustion consumption by freight transport,0.0025563599999999997,TJ,CH4,10.0,kg/TJ,0.0255636,kg -52484b72-0eee-3d25-be3c-9188d051949a,SESCO,II.1.1,Chaco,AR-H,annual,2019,bioetanol combustion consumption by freight transport,0.0025563599999999997,TJ,N2O,0.6,kg/TJ,0.0015338159999999997,kg -ca9ef67e-03be-375c-a0a7-4de834f4dcc1,SESCO,II.1.1,Corrientes,AR-W,annual,2019,bioetanol combustion consumption by freight transport,0.0255636,TJ,CH4,10.0,kg/TJ,0.255636,kg -37c15994-77ae-3fb3-8c2e-455df888b61b,SESCO,II.1.1,Corrientes,AR-W,annual,2019,bioetanol combustion consumption by freight transport,0.0255636,TJ,N2O,0.6,kg/TJ,0.015338159999999998,kg -fe2b825f-80fb-36ea-a0e5-4c68e2486995,SESCO,II.1.1,Córdoba,AR-X,annual,2019,bioetanol combustion consumption by freight transport,0.07413444,TJ,CH4,10.0,kg/TJ,0.7413444,kg -75e1affa-735a-320a-9a11-cfa36831efa0,SESCO,II.1.1,Córdoba,AR-X,annual,2019,bioetanol combustion consumption by freight transport,0.07413444,TJ,N2O,0.6,kg/TJ,0.044480663999999996,kg -4276333d-546e-37c8-bd53-2ba79dfe6cd0,SESCO,II.1.1,Entre Rios,AR-E,annual,2019,bioetanol combustion consumption by freight transport,0.08691623999999999,TJ,CH4,10.0,kg/TJ,0.8691623999999999,kg -da37fa33-3e43-39ec-b16d-790d973a8c84,SESCO,II.1.1,Entre Rios,AR-E,annual,2019,bioetanol combustion consumption by freight transport,0.08691623999999999,TJ,N2O,0.6,kg/TJ,0.05214974399999999,kg -0698ad60-4625-364a-ae7c-6704e6e2ea91,SESCO,II.1.1,Santa Fe,AR-S,annual,2019,bioetanol combustion consumption by freight transport,0.10992348,TJ,CH4,10.0,kg/TJ,1.0992348,kg -4ff85572-afed-3724-b5d7-60740d762603,SESCO,II.1.1,Santa Fe,AR-S,annual,2019,bioetanol combustion consumption by freight transport,0.10992348,TJ,N2O,0.6,kg/TJ,0.065954088,kg -d0711613-8448-3183-b938-10c416ffa6a4,SESCO,II.1.1,Santa Fe,AR-S,annual,2019,bioetanol combustion consumption by public passenger transport,0.038345399999999995,TJ,CH4,10.0,kg/TJ,0.38345399999999996,kg -664b6246-b4b9-35f5-8915-d39cebdd82a6,SESCO,II.1.1,Santa Fe,AR-S,annual,2019,bioetanol combustion consumption by public passenger transport,0.038345399999999995,TJ,N2O,0.6,kg/TJ,0.023007239999999995,kg -c429e2a0-bfc8-33e7-896f-154a233ec42b,SESCO,II.1.1,Catamarca,AR-K,annual,2019,bioetanol combustion consumption by to the public,17.6881961844,TJ,CH4,10.0,kg/TJ,176.881961844,kg -f44656fa-8c0f-30c7-85e7-e7f6d186e5d8,SESCO,II.1.1,Catamarca,AR-K,annual,2019,bioetanol combustion consumption by to the public,17.6881961844,TJ,N2O,0.6,kg/TJ,10.61291771064,kg -00c79276-152d-3140-90e9-fb0801336451,SESCO,II.1.1,Chaco,AR-H,annual,2019,bioetanol combustion consumption by to the public,9.190114199999998,TJ,CH4,10.0,kg/TJ,91.90114199999998,kg -8eb142f9-61a9-3287-9bb4-a0620226c6c0,SESCO,II.1.1,Chaco,AR-H,annual,2019,bioetanol combustion consumption by to the public,9.190114199999998,TJ,N2O,0.6,kg/TJ,5.514068519999999,kg -6528be70-8fd9-3172-952d-fea71951aac5,SESCO,II.1.1,Jujuy,AR-Y,annual,2019,bioetanol combustion consumption by to the public,44.18923895999999,TJ,CH4,10.0,kg/TJ,441.8923895999999,kg -b8ca5407-0401-3145-9986-07a3459ba732,SESCO,II.1.1,Jujuy,AR-Y,annual,2019,bioetanol combustion consumption by to the public,44.18923895999999,TJ,N2O,0.6,kg/TJ,26.513543375999994,kg -2e87552a-4e1a-3794-92a2-e885544ed4e6,SESCO,II.1.1,La Rioja,AR-F,annual,2019,bioetanol combustion consumption by to the public,35.4750167376,TJ,CH4,10.0,kg/TJ,354.75016737600004,kg -3f892a67-439f-3f6c-9737-d371092a5ad3,SESCO,II.1.1,La Rioja,AR-F,annual,2019,bioetanol combustion consumption by to the public,35.4750167376,TJ,N2O,0.6,kg/TJ,21.28501004256,kg -64e74f7e-4d9b-3c30-87b7-46011a18dc1f,SESCO,II.1.1,Salta,AR-A,annual,2019,bioetanol combustion consumption by to the public,80.12383809839999,TJ,CH4,10.0,kg/TJ,801.2383809839998,kg -5df73a66-2a81-3fb6-b6f3-a620af6a1df2,SESCO,II.1.1,Salta,AR-A,annual,2019,bioetanol combustion consumption by to the public,80.12383809839999,TJ,N2O,0.6,kg/TJ,48.07430285903999,kg -ed63a4f4-336a-3c1d-880b-9a6e7106f1ae,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2019,bioetanol combustion consumption by to the public,46.80523883879999,TJ,CH4,10.0,kg/TJ,468.0523883879999,kg -13b3ad90-3e91-3889-a2f1-4c2d10e932a8,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2019,bioetanol combustion consumption by to the public,46.80523883879999,TJ,N2O,0.6,kg/TJ,28.083143303279993,kg -502788e1-78b3-3d03-92be-3cc69a5bb042,SESCO,II.1.1,Tucuman,AR-T,annual,2019,bioetanol combustion consumption by to the public,165.04120908719997,TJ,CH4,10.0,kg/TJ,1650.4120908719997,kg -684320ce-7ffb-3e0c-ae37-a598ebf12200,SESCO,II.1.1,Tucuman,AR-T,annual,2019,bioetanol combustion consumption by to the public,165.04120908719997,TJ,N2O,0.6,kg/TJ,99.02472545231998,kg -d2364e79-a54a-36dd-86d0-89fbb96d31d7,SESCO,II.1.1,Catamarca,AR-K,annual,2019,bioetanol combustion consumption by to the public,1.5952197671999997,TJ,CH4,10.0,kg/TJ,15.952197671999997,kg -795bc409-128a-3606-a47a-aa37665e695e,SESCO,II.1.1,Catamarca,AR-K,annual,2019,bioetanol combustion consumption by to the public,1.5952197671999997,TJ,N2O,0.6,kg/TJ,0.9571318603199997,kg -3f5d939f-b493-3e0d-9a8a-1dc7d5ec327e,SESCO,II.1.1,Chaco,AR-H,annual,2019,bioetanol combustion consumption by to the public,0.29909411999999996,TJ,CH4,10.0,kg/TJ,2.9909411999999995,kg -83e80f7f-5577-3702-bb39-8767ea0f4ef6,SESCO,II.1.1,Chaco,AR-H,annual,2019,bioetanol combustion consumption by to the public,0.29909411999999996,TJ,N2O,0.6,kg/TJ,0.17945647199999998,kg -ee7876cc-d23d-3dca-98c6-a22a7488596d,SESCO,II.1.1,Jujuy,AR-Y,annual,2019,bioetanol combustion consumption by to the public,1.9760662799999997,TJ,CH4,10.0,kg/TJ,19.7606628,kg -1591ddd8-f60f-30ea-86e2-70f72a715716,SESCO,II.1.1,Jujuy,AR-Y,annual,2019,bioetanol combustion consumption by to the public,1.9760662799999997,TJ,N2O,0.6,kg/TJ,1.1856397679999997,kg -d71db80c-5f8c-323f-a6a3-a383e87fc179,SESCO,II.1.1,La Rioja,AR-F,annual,2019,bioetanol combustion consumption by to the public,3.8166454799999996,TJ,CH4,10.0,kg/TJ,38.1664548,kg -315d9e20-4f11-33c8-9947-9806df98aa51,SESCO,II.1.1,La Rioja,AR-F,annual,2019,bioetanol combustion consumption by to the public,3.8166454799999996,TJ,N2O,0.6,kg/TJ,2.289987288,kg -445059f9-67b6-39cd-bc24-0dde3d055618,SESCO,II.1.1,Salta,AR-A,annual,2019,bioetanol combustion consumption by to the public,4.9871004696,TJ,CH4,10.0,kg/TJ,49.871004696,kg -42e9ad34-fede-3279-a298-904054fa0b5a,SESCO,II.1.1,Salta,AR-A,annual,2019,bioetanol combustion consumption by to the public,4.9871004696,TJ,N2O,0.6,kg/TJ,2.9922602817599997,kg -2ad56704-c3ba-375a-9ede-97849f20361c,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2019,bioetanol combustion consumption by to the public,3.9904523963999994,TJ,CH4,10.0,kg/TJ,39.90452396399999,kg -de80d1ed-664e-33f8-aff3-09ed9245712b,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2019,bioetanol combustion consumption by to the public,3.9904523963999994,TJ,N2O,0.6,kg/TJ,2.3942714378399996,kg -9b3f145b-63ea-30ec-be8b-256a30a1b223,SESCO,II.1.1,Tucuman,AR-T,annual,2019,bioetanol combustion consumption by to the public,11.0243280636,TJ,CH4,10.0,kg/TJ,110.24328063600001,kg -d6fd8d1c-4bfa-3edc-bd74-13146d3e79e2,SESCO,II.1.1,Tucuman,AR-T,annual,2019,bioetanol combustion consumption by to the public,11.0243280636,TJ,N2O,0.6,kg/TJ,6.61459683816,kg -5c4bea0c-d420-35d4-a9dd-e24bc9a14f2c,SESCO,II.5.1,Buenos Aires,AR-B,annual,2019,bioetanol combustion consumption by agriculture machines,0.08435988,TJ,CH4,10.0,kg/TJ,0.8435988,kg -7bca5573-5f17-37cb-8777-c68262fc4eed,SESCO,II.5.1,Buenos Aires,AR-B,annual,2019,bioetanol combustion consumption by agriculture machines,0.08435988,TJ,N2O,0.6,kg/TJ,0.050615928,kg -dee176f9-822a-315d-ae7a-ceabc0815f95,SESCO,II.5.1,Buenos Aires,AR-B,annual,2019,bioetanol combustion consumption by agriculture machines,0.0511272,TJ,CH4,10.0,kg/TJ,0.511272,kg -69bbc7c6-68d9-33c0-a6b3-fbfb40b6d579,SESCO,II.5.1,Buenos Aires,AR-B,annual,2019,bioetanol combustion consumption by agriculture machines,0.0511272,TJ,N2O,0.6,kg/TJ,0.030676319999999997,kg -1927eba1-bc1d-3042-bdaa-fa4ed5a0a4d3,SESCO,II.1.1,Buenos Aires,AR-B,annual,2019,bioetanol combustion consumption by to the public,1437.7658857199997,TJ,CH4,10.0,kg/TJ,14377.658857199996,kg -1eeaa210-9793-3a93-a873-ab55e705ca3f,SESCO,II.1.1,Buenos Aires,AR-B,annual,2019,bioetanol combustion consumption by to the public,1437.7658857199997,TJ,N2O,0.6,kg/TJ,862.6595314319998,kg -6928f968-7f4f-3d07-930b-720c8bf14267,SESCO,II.1.1,Capital Federal,AR-C,annual,2019,bioetanol combustion consumption by to the public,414.87933347999996,TJ,CH4,10.0,kg/TJ,4148.7933348,kg -1af3d5e9-3b88-36c8-bf53-0f7378b53ad0,SESCO,II.1.1,Capital Federal,AR-C,annual,2019,bioetanol combustion consumption by to the public,414.87933347999996,TJ,N2O,0.6,kg/TJ,248.92760008799996,kg -9bc94295-ec2d-365f-a8c3-221b282ed1a5,SESCO,II.1.1,Catamarca,AR-K,annual,2019,bioetanol combustion consumption by to the public,3.5865730799999995,TJ,CH4,10.0,kg/TJ,35.865730799999994,kg -84052340-7576-3f1b-b806-967bf54569db,SESCO,II.1.1,Catamarca,AR-K,annual,2019,bioetanol combustion consumption by to the public,3.5865730799999995,TJ,N2O,0.6,kg/TJ,2.1519438479999997,kg -8fd78ce0-b3ce-3f20-80f8-ed399fc4d79b,SESCO,II.1.1,Chaco,AR-H,annual,2019,bioetanol combustion consumption by to the public,83.90996064,TJ,CH4,10.0,kg/TJ,839.0996064,kg -e51746db-f69e-356b-a254-5fe3f6f9bc91,SESCO,II.1.1,Chaco,AR-H,annual,2019,bioetanol combustion consumption by to the public,83.90996064,TJ,N2O,0.6,kg/TJ,50.345976384,kg -39132edc-e21d-3e35-8dd5-b6f23462e3e6,SESCO,II.1.1,Corrientes,AR-W,annual,2019,bioetanol combustion consumption by to the public,72.35265707999999,TJ,CH4,10.0,kg/TJ,723.5265707999998,kg -9e4ec187-4317-31e5-979a-e080fde5a926,SESCO,II.1.1,Corrientes,AR-W,annual,2019,bioetanol combustion consumption by to the public,72.35265707999999,TJ,N2O,0.6,kg/TJ,43.41159424799999,kg -52198e80-f4e2-3854-b373-3b45f0af80ad,SESCO,II.1.1,Córdoba,AR-X,annual,2019,bioetanol combustion consumption by to the public,331.76184443999995,TJ,CH4,10.0,kg/TJ,3317.6184443999996,kg -ee377214-03a2-3ae9-8e6f-04c462491865,SESCO,II.1.1,Córdoba,AR-X,annual,2019,bioetanol combustion consumption by to the public,331.76184443999995,TJ,N2O,0.6,kg/TJ,199.05710666399997,kg -239fd029-82ed-3dc8-9ac3-6b2ad54170f3,SESCO,II.1.1,Entre Rios,AR-E,annual,2019,bioetanol combustion consumption by to the public,87.06962159999999,TJ,CH4,10.0,kg/TJ,870.6962159999999,kg -3f6f7566-dc7f-387d-b296-c46fa1031db5,SESCO,II.1.1,Entre Rios,AR-E,annual,2019,bioetanol combustion consumption by to the public,87.06962159999999,TJ,N2O,0.6,kg/TJ,52.24177295999999,kg -4647a99b-4446-3874-93b7-fc9abf3b62c3,SESCO,II.1.1,Formosa,AR-P,annual,2019,bioetanol combustion consumption by to the public,31.39976988,TJ,CH4,10.0,kg/TJ,313.9976988,kg -7fb00cdf-642f-336c-b758-e8182fb16faa,SESCO,II.1.1,Formosa,AR-P,annual,2019,bioetanol combustion consumption by to the public,31.39976988,TJ,N2O,0.6,kg/TJ,18.839861928,kg -5509f16c-ee1f-3dfa-80ad-09fda52fb9bd,SESCO,II.1.1,Jujuy,AR-Y,annual,2019,bioetanol combustion consumption by to the public,15.138763919999999,TJ,CH4,10.0,kg/TJ,151.3876392,kg -b725eb03-dec2-3738-baef-6db2b241b7dd,SESCO,II.1.1,Jujuy,AR-Y,annual,2019,bioetanol combustion consumption by to the public,15.138763919999999,TJ,N2O,0.6,kg/TJ,9.083258352,kg -98c01b44-c789-32b4-9177-313b7ef23a35,SESCO,II.1.1,La Pampa,AR-L,annual,2019,bioetanol combustion consumption by to the public,28.063720079999996,TJ,CH4,10.0,kg/TJ,280.63720079999996,kg -a6ce79aa-5235-3629-891f-b60c3dbc5405,SESCO,II.1.1,La Pampa,AR-L,annual,2019,bioetanol combustion consumption by to the public,28.063720079999996,TJ,N2O,0.6,kg/TJ,16.838232048,kg -14888bc8-0e39-3e73-9f96-6f2c645a1216,SESCO,II.1.1,La Rioja,AR-F,annual,2019,bioetanol combustion consumption by to the public,23.076261719999998,TJ,CH4,10.0,kg/TJ,230.76261719999997,kg -5f7c3997-f434-30f8-ae3f-884494d70b49,SESCO,II.1.1,La Rioja,AR-F,annual,2019,bioetanol combustion consumption by to the public,23.076261719999998,TJ,N2O,0.6,kg/TJ,13.845757031999998,kg -741089c7-fcc7-30e9-8a37-53c017e38f74,SESCO,II.1.1,Mendoza,AR-M,annual,2019,bioetanol combustion consumption by to the public,111.38316155999999,TJ,CH4,10.0,kg/TJ,1113.8316155999999,kg -372198bb-a1d5-3be0-af27-ace228be32c2,SESCO,II.1.1,Mendoza,AR-M,annual,2019,bioetanol combustion consumption by to the public,111.38316155999999,TJ,N2O,0.6,kg/TJ,66.829896936,kg -8d31dd97-dec0-3ae9-8a4c-76d4542147d4,SESCO,II.1.1,Misiones,AR-N,annual,2019,bioetanol combustion consumption by to the public,100.89697283999999,TJ,CH4,10.0,kg/TJ,1008.9697283999999,kg -41386ab0-9841-35d7-9415-4699bc932e67,SESCO,II.1.1,Misiones,AR-N,annual,2019,bioetanol combustion consumption by to the public,100.89697283999999,TJ,N2O,0.6,kg/TJ,60.53818370399999,kg -484db6f8-0e54-323a-8327-29ff71738745,SESCO,II.1.1,Neuquén,AR-Q,annual,2019,bioetanol combustion consumption by to the public,48.76001064,TJ,CH4,10.0,kg/TJ,487.60010639999996,kg -01796ae1-b199-3f39-b257-c6e7c54f7566,SESCO,II.1.1,Neuquén,AR-Q,annual,2019,bioetanol combustion consumption by to the public,48.76001064,TJ,N2O,0.6,kg/TJ,29.256006383999996,kg -4cded1bd-dccd-31f9-9657-55717956f0c1,SESCO,II.1.1,Rio Negro,AR-R,annual,2019,bioetanol combustion consumption by to the public,13.63051152,TJ,CH4,10.0,kg/TJ,136.30511520000002,kg -e804be5b-801f-3980-9059-8d9c6d2d8760,SESCO,II.1.1,Rio Negro,AR-R,annual,2019,bioetanol combustion consumption by to the public,13.63051152,TJ,N2O,0.6,kg/TJ,8.178306912,kg -33166f0d-63be-37ca-aec6-17b7f6a4c98c,SESCO,II.1.1,Salta,AR-A,annual,2019,bioetanol combustion consumption by to the public,20.63749428,TJ,CH4,10.0,kg/TJ,206.37494279999999,kg -8a23aee8-3f3c-3544-8c6a-bef2dda6a28f,SESCO,II.1.1,Salta,AR-A,annual,2019,bioetanol combustion consumption by to the public,20.63749428,TJ,N2O,0.6,kg/TJ,12.382496567999999,kg -c2f778d9-2bcb-3791-9a5b-b645395d2d76,SESCO,II.1.1,San Juan,AR-J,annual,2019,bioetanol combustion consumption by to the public,20.749974119999997,TJ,CH4,10.0,kg/TJ,207.49974119999996,kg -0becab46-7fe4-3e80-946b-f1c3b0396d05,SESCO,II.1.1,San Juan,AR-J,annual,2019,bioetanol combustion consumption by to the public,20.749974119999997,TJ,N2O,0.6,kg/TJ,12.449984471999999,kg -b47b4f05-ca15-3d11-807e-4c6f89c8a2fd,SESCO,II.1.1,San Luis,AR-D,annual,2019,bioetanol combustion consumption by to the public,17.81271648,TJ,CH4,10.0,kg/TJ,178.1271648,kg -b3e2e1e4-864c-37c4-b27e-279e1a88615d,SESCO,II.1.1,San Luis,AR-D,annual,2019,bioetanol combustion consumption by to the public,17.81271648,TJ,N2O,0.6,kg/TJ,10.687629887999998,kg -431f7963-6a56-3ba0-8a4c-c21604a8c5aa,SESCO,II.1.1,Santa Fe,AR-S,annual,2019,bioetanol combustion consumption by to the public,284.88842747999996,TJ,CH4,10.0,kg/TJ,2848.8842747999997,kg -5831ab24-28d0-3141-9e29-c95b380d77bc,SESCO,II.1.1,Santa Fe,AR-S,annual,2019,bioetanol combustion consumption by to the public,284.88842747999996,TJ,N2O,0.6,kg/TJ,170.93305648799998,kg -57bf9e5b-9833-37e9-abfa-a2452de3d8f2,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2019,bioetanol combustion consumption by to the public,35.745581879999996,TJ,CH4,10.0,kg/TJ,357.4558188,kg -80e754a3-dfbf-3329-b599-34543f2a96be,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2019,bioetanol combustion consumption by to the public,35.745581879999996,TJ,N2O,0.6,kg/TJ,21.447349127999995,kg -316d7011-0d93-33b0-9f4a-025c61997063,SESCO,II.1.1,Tucuman,AR-T,annual,2019,bioetanol combustion consumption by to the public,80.68639067999999,TJ,CH4,10.0,kg/TJ,806.8639067999999,kg -af861d3c-a602-3144-8ad4-abf82354a528,SESCO,II.1.1,Tucuman,AR-T,annual,2019,bioetanol combustion consumption by to the public,80.68639067999999,TJ,N2O,0.6,kg/TJ,48.41183440799999,kg -cc978a55-7200-3182-b8d8-8c8f79dd4b43,SESCO,II.1.1,Buenos Aires,AR-B,annual,2019,bioetanol combustion consumption by to the public,639.33541056,TJ,CH4,10.0,kg/TJ,6393.3541056,kg -269ee503-4da8-3659-b5a8-77d59202b9d5,SESCO,II.1.1,Buenos Aires,AR-B,annual,2019,bioetanol combustion consumption by to the public,639.33541056,TJ,N2O,0.6,kg/TJ,383.601246336,kg -0371c16e-76c1-3ad9-8f05-be9e91f63d4b,SESCO,II.1.1,Capital Federal,AR-C,annual,2019,bioetanol combustion consumption by to the public,267.91675344,TJ,CH4,10.0,kg/TJ,2679.1675343999996,kg -8444293d-691a-35cb-94b4-8d524b5bd2b3,SESCO,II.1.1,Capital Federal,AR-C,annual,2019,bioetanol combustion consumption by to the public,267.91675344,TJ,N2O,0.6,kg/TJ,160.750052064,kg -f6bf3c6a-0b19-3fc8-be93-0d96e0683fe1,SESCO,II.1.1,Catamarca,AR-K,annual,2019,bioetanol combustion consumption by to the public,2.84011596,TJ,CH4,10.0,kg/TJ,28.4011596,kg -69e15e99-e323-3a1a-bc44-a80fce8ae9eb,SESCO,II.1.1,Catamarca,AR-K,annual,2019,bioetanol combustion consumption by to the public,2.84011596,TJ,N2O,0.6,kg/TJ,1.704069576,kg -ec29a4c1-cbf8-3ef8-8dec-34ff2fc052e3,SESCO,II.1.1,Chaco,AR-H,annual,2019,bioetanol combustion consumption by to the public,26.1643446,TJ,CH4,10.0,kg/TJ,261.643446,kg -76992cf7-3cab-36a0-a1b8-06ab4856205a,SESCO,II.1.1,Chaco,AR-H,annual,2019,bioetanol combustion consumption by to the public,26.1643446,TJ,N2O,0.6,kg/TJ,15.698606759999999,kg -35ac9d08-4b57-34ca-bee6-bac6cc5c195e,SESCO,II.1.1,Corrientes,AR-W,annual,2019,bioetanol combustion consumption by to the public,26.772758279999998,TJ,CH4,10.0,kg/TJ,267.7275828,kg -456b9329-7c37-323c-9f25-d2e6dc2e5046,SESCO,II.1.1,Corrientes,AR-W,annual,2019,bioetanol combustion consumption by to the public,26.772758279999998,TJ,N2O,0.6,kg/TJ,16.063654967999998,kg -4da4b169-38f3-37e1-b014-3082c6791f8a,SESCO,II.1.1,Córdoba,AR-X,annual,2019,bioetanol combustion consumption by to the public,144.13013315999999,TJ,CH4,10.0,kg/TJ,1441.3013316,kg -123a5b77-d2d7-34d2-b89b-65a2bb4be290,SESCO,II.1.1,Córdoba,AR-X,annual,2019,bioetanol combustion consumption by to the public,144.13013315999999,TJ,N2O,0.6,kg/TJ,86.47807989599998,kg -bb125737-134c-3761-a90f-886514267a2e,SESCO,II.1.1,Entre Rios,AR-E,annual,2019,bioetanol combustion consumption by to the public,30.855265199999995,TJ,CH4,10.0,kg/TJ,308.55265199999997,kg -bd138c73-d1b8-38e6-ae52-a9e305923698,SESCO,II.1.1,Entre Rios,AR-E,annual,2019,bioetanol combustion consumption by to the public,30.855265199999995,TJ,N2O,0.6,kg/TJ,18.513159119999997,kg -7d2429d4-135d-351b-9b81-453de3bd838c,SESCO,II.1.1,Formosa,AR-P,annual,2019,bioetanol combustion consumption by to the public,12.53127672,TJ,CH4,10.0,kg/TJ,125.3127672,kg -c3256d1b-e5f9-3252-8d08-fb8abd4857bf,SESCO,II.1.1,Formosa,AR-P,annual,2019,bioetanol combustion consumption by to the public,12.53127672,TJ,N2O,0.6,kg/TJ,7.518766031999999,kg -b41d87b0-b2c1-36ba-add8-97d0546cd9bf,SESCO,II.1.1,Jujuy,AR-Y,annual,2019,bioetanol combustion consumption by to the public,3.2874789599999996,TJ,CH4,10.0,kg/TJ,32.8747896,kg -c25e1e07-2249-30fa-a6d1-9b52f002ead8,SESCO,II.1.1,Jujuy,AR-Y,annual,2019,bioetanol combustion consumption by to the public,3.2874789599999996,TJ,N2O,0.6,kg/TJ,1.9724873759999997,kg -be7e285f-f4a2-3021-ab00-ab358a143073,SESCO,II.1.1,La Pampa,AR-L,annual,2019,bioetanol combustion consumption by to the public,14.734859039999998,TJ,CH4,10.0,kg/TJ,147.34859039999998,kg -8d882071-f0d7-3d90-b513-8bdf73fffea7,SESCO,II.1.1,La Pampa,AR-L,annual,2019,bioetanol combustion consumption by to the public,14.734859039999998,TJ,N2O,0.6,kg/TJ,8.840915423999999,kg -1052f969-c0a0-3844-805b-e0d0e10a1842,SESCO,II.1.1,La Rioja,AR-F,annual,2019,bioetanol combustion consumption by to the public,7.119462599999999,TJ,CH4,10.0,kg/TJ,71.194626,kg -86c71c6f-d5c5-37eb-9876-2321928daebd,SESCO,II.1.1,La Rioja,AR-F,annual,2019,bioetanol combustion consumption by to the public,7.119462599999999,TJ,N2O,0.6,kg/TJ,4.27167756,kg -9680f1fd-47ff-3dac-bb74-6ca385076c13,SESCO,II.1.1,Mendoza,AR-M,annual,2019,bioetanol combustion consumption by to the public,48.03656076,TJ,CH4,10.0,kg/TJ,480.3656076,kg -07be4d3f-663d-3c1d-b8bc-449078842dd1,SESCO,II.1.1,Mendoza,AR-M,annual,2019,bioetanol combustion consumption by to the public,48.03656076,TJ,N2O,0.6,kg/TJ,28.821936456,kg -494a7e68-efaa-3c50-b3d9-8b6898b400d6,SESCO,II.1.1,Misiones,AR-N,annual,2019,bioetanol combustion consumption by to the public,22.375819079999996,TJ,CH4,10.0,kg/TJ,223.75819079999997,kg -710ecde6-1055-356b-a754-fded26a6c2c5,SESCO,II.1.1,Misiones,AR-N,annual,2019,bioetanol combustion consumption by to the public,22.375819079999996,TJ,N2O,0.6,kg/TJ,13.425491447999997,kg -456b2356-855c-39a0-abd2-ab531236addc,SESCO,II.1.1,Neuquén,AR-Q,annual,2019,bioetanol combustion consumption by to the public,30.545945639999996,TJ,CH4,10.0,kg/TJ,305.45945639999997,kg -c26957eb-7da2-37e1-9a41-e684af1aefc3,SESCO,II.1.1,Neuquén,AR-Q,annual,2019,bioetanol combustion consumption by to the public,30.545945639999996,TJ,N2O,0.6,kg/TJ,18.327567383999998,kg -b12f390b-e0a4-3b45-a0f4-b35bda453f89,SESCO,II.1.1,Rio Negro,AR-R,annual,2019,bioetanol combustion consumption by to the public,6.789692159999999,TJ,CH4,10.0,kg/TJ,67.89692159999998,kg -aff1644d-5858-3135-a45c-208caec6bdac,SESCO,II.1.1,Rio Negro,AR-R,annual,2019,bioetanol combustion consumption by to the public,6.789692159999999,TJ,N2O,0.6,kg/TJ,4.073815295999999,kg -4535a379-703e-3e11-9a0f-c01c952a8eb1,SESCO,II.1.1,Salta,AR-A,annual,2019,bioetanol combustion consumption by to the public,9.19778328,TJ,CH4,10.0,kg/TJ,91.97783279999999,kg -b6e1719a-6580-3882-8804-4e9ec5d98798,SESCO,II.1.1,Salta,AR-A,annual,2019,bioetanol combustion consumption by to the public,9.19778328,TJ,N2O,0.6,kg/TJ,5.518669967999999,kg -9713c651-b99a-3d6b-ad6a-67bcd86558be,SESCO,II.1.1,San Juan,AR-J,annual,2019,bioetanol combustion consumption by to the public,5.05903644,TJ,CH4,10.0,kg/TJ,50.5903644,kg -4657375c-4d72-3543-8cc2-6b9494038c50,SESCO,II.1.1,San Juan,AR-J,annual,2019,bioetanol combustion consumption by to the public,5.05903644,TJ,N2O,0.6,kg/TJ,3.035421864,kg -70f41c86-b2e9-3e6e-95a1-08e2cac0df5d,SESCO,II.1.1,San Luis,AR-D,annual,2019,bioetanol combustion consumption by to the public,7.60005828,TJ,CH4,10.0,kg/TJ,76.0005828,kg -a086ff0a-8d9c-3f3f-830a-e9967a9fa4cb,SESCO,II.1.1,San Luis,AR-D,annual,2019,bioetanol combustion consumption by to the public,7.60005828,TJ,N2O,0.6,kg/TJ,4.560034968,kg -10f5c73d-b9cf-3283-adc3-d243b18e5245,SESCO,II.1.1,Santa Fe,AR-S,annual,2019,bioetanol combustion consumption by to the public,131.04412631999998,TJ,CH4,10.0,kg/TJ,1310.4412631999999,kg -898ce431-894a-3d97-baa1-eee3c36fe1b5,SESCO,II.1.1,Santa Fe,AR-S,annual,2019,bioetanol combustion consumption by to the public,131.04412631999998,TJ,N2O,0.6,kg/TJ,78.62647579199998,kg -4bfcf5e4-2848-3f29-8814-0357eb2ba0e9,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2019,bioetanol combustion consumption by to the public,12.390676919999999,TJ,CH4,10.0,kg/TJ,123.90676919999999,kg -b6f72e6f-e947-34b2-ad1b-bb585bd666b0,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2019,bioetanol combustion consumption by to the public,12.390676919999999,TJ,N2O,0.6,kg/TJ,7.434406151999999,kg -f78e5f02-b515-3565-8072-6fc21691a700,SESCO,II.1.1,Tucuman,AR-T,annual,2019,bioetanol combustion consumption by to the public,22.023041399999997,TJ,CH4,10.0,kg/TJ,220.23041399999997,kg -0ade263b-8c35-388a-832e-5eee00130a79,SESCO,II.1.1,Tucuman,AR-T,annual,2019,bioetanol combustion consumption by to the public,22.023041399999997,TJ,N2O,0.6,kg/TJ,13.213824839999997,kg -a8b7ee04-f1a9-3215-bd22-1ccc8667f50a,SESCO,II.5.1,Buenos Aires,AR-B,annual,2019,bioetanol combustion consumption by agriculture machines,1.2259561215600001,TJ,CH4,10.0,kg/TJ,12.259561215600002,kg -a5423f90-cab2-3b6e-abb8-7ce1d61ddf5a,SESCO,II.5.1,Buenos Aires,AR-B,annual,2019,bioetanol combustion consumption by agriculture machines,1.2259561215600001,TJ,N2O,0.6,kg/TJ,0.7355736729360001,kg -cded5369-999b-38d7-bd31-01f78ca7f8c1,SESCO,II.5.1,Capital Federal,AR-C,annual,2019,bioetanol combustion consumption by agriculture machines,0.85766900544,TJ,CH4,10.0,kg/TJ,8.5766900544,kg -ff733a68-c23f-361d-8fa2-d1215b5a14ca,SESCO,II.5.1,Capital Federal,AR-C,annual,2019,bioetanol combustion consumption by agriculture machines,0.85766900544,TJ,N2O,0.6,kg/TJ,0.514601403264,kg -daabb841-3290-3697-a472-678c9bf77173,SESCO,II.5.1,Córdoba,AR-X,annual,2019,bioetanol combustion consumption by agriculture machines,0.09351164879999999,TJ,CH4,10.0,kg/TJ,0.9351164879999998,kg -48107a53-dc33-30d5-a3d1-86cbbcdf720c,SESCO,II.5.1,Córdoba,AR-X,annual,2019,bioetanol combustion consumption by agriculture machines,0.09351164879999999,TJ,N2O,0.6,kg/TJ,0.05610698927999999,kg -792c7973-0481-3455-8d44-c954831231de,SESCO,II.5.1,Entre Rios,AR-E,annual,2019,bioetanol combustion consumption by agriculture machines,0.0691623198,TJ,CH4,10.0,kg/TJ,0.6916231979999999,kg -cc11b624-b965-385a-9b56-0ef771de4de7,SESCO,II.5.1,Entre Rios,AR-E,annual,2019,bioetanol combustion consumption by agriculture machines,0.0691623198,TJ,N2O,0.6,kg/TJ,0.04149739188,kg -d559e410-2d57-34d7-9237-ee2f84b168ed,SESCO,II.5.1,Santa Fe,AR-S,annual,2019,bioetanol combustion consumption by agriculture machines,13.21152155964,TJ,CH4,10.0,kg/TJ,132.1152155964,kg -a1b0a73a-dbc3-3abe-b0ee-4a8579ce1c29,SESCO,II.5.1,Santa Fe,AR-S,annual,2019,bioetanol combustion consumption by agriculture machines,13.21152155964,TJ,N2O,0.6,kg/TJ,7.926912935783999,kg -620afd95-aff4-377f-ba90-d1fe5d843996,SESCO,II.5.1,Buenos Aires,AR-B,annual,2019,bioetanol combustion consumption by agriculture machines,0.08216652311999999,TJ,CH4,10.0,kg/TJ,0.8216652311999999,kg -5bdeee05-064f-30bd-9cf1-8967f1c6c459,SESCO,II.5.1,Buenos Aires,AR-B,annual,2019,bioetanol combustion consumption by agriculture machines,0.08216652311999999,TJ,N2O,0.6,kg/TJ,0.049299913871999994,kg -2caeccb2-b9ba-345b-b829-dd50b400e6a2,SESCO,II.5.1,Capital Federal,AR-C,annual,2019,bioetanol combustion consumption by agriculture machines,0.23721231348000002,TJ,CH4,10.0,kg/TJ,2.3721231348000003,kg -7de4b6d8-23ab-34e8-bcee-fb341a339e6c,SESCO,II.5.1,Capital Federal,AR-C,annual,2019,bioetanol combustion consumption by agriculture machines,0.23721231348000002,TJ,N2O,0.6,kg/TJ,0.142327388088,kg -29408d41-a2ff-3753-bf29-1e0c0de73673,SESCO,II.5.1,Córdoba,AR-X,annual,2019,bioetanol combustion consumption by agriculture machines,0.06596175707999999,TJ,CH4,10.0,kg/TJ,0.6596175707999998,kg -7c4a5006-80dd-357f-a47e-475567a247e1,SESCO,II.5.1,Córdoba,AR-X,annual,2019,bioetanol combustion consumption by agriculture machines,0.06596175707999999,TJ,N2O,0.6,kg/TJ,0.03957705424799999,kg -d3b2544d-1d19-3199-a4d3-01e5f5c126a0,SESCO,II.5.1,Santa Fe,AR-S,annual,2019,bioetanol combustion consumption by agriculture machines,0.7045609359599999,TJ,CH4,10.0,kg/TJ,7.045609359599999,kg -e8d6ac9e-04fe-3a05-900a-1237627d01f5,SESCO,II.5.1,Santa Fe,AR-S,annual,2019,bioetanol combustion consumption by agriculture machines,0.7045609359599999,TJ,N2O,0.6,kg/TJ,0.4227365615759999,kg -d4fffd0f-9452-3020-8e11-0eb15dccc5f3,SESCO,II.1.1,Buenos Aires,AR-B,annual,2019,bioetanol combustion consumption by to the public,539.18940937176,TJ,CH4,10.0,kg/TJ,5391.8940937176,kg -88a5999c-1a37-3dc1-ad17-d1a06983439d,SESCO,II.1.1,Buenos Aires,AR-B,annual,2019,bioetanol combustion consumption by to the public,539.18940937176,TJ,N2O,0.6,kg/TJ,323.513645623056,kg -e98ac500-7744-3488-99ef-276f0d340a7e,SESCO,II.1.1,Capital Federal,AR-C,annual,2019,bioetanol combustion consumption by to the public,18.448529226479998,TJ,CH4,10.0,kg/TJ,184.48529226479997,kg -93ae4330-3e8e-35ec-bb33-0783c7fd92bd,SESCO,II.1.1,Capital Federal,AR-C,annual,2019,bioetanol combustion consumption by to the public,18.448529226479998,TJ,N2O,0.6,kg/TJ,11.069117535888,kg -ab7ac992-17e1-3eeb-9ef7-657c37a4f144,SESCO,II.1.1,Catamarca,AR-K,annual,2019,bioetanol combustion consumption by to the public,1.5585002121599998,TJ,CH4,10.0,kg/TJ,15.585002121599999,kg -f38f8fc9-4bec-3592-b89f-77cffad36bef,SESCO,II.1.1,Catamarca,AR-K,annual,2019,bioetanol combustion consumption by to the public,1.5585002121599998,TJ,N2O,0.6,kg/TJ,0.9351001272959998,kg -8de1bf6d-ec5c-3ae6-97ae-9739b7097244,SESCO,II.1.1,Chaco,AR-H,annual,2019,bioetanol combustion consumption by to the public,2.5900579375199997,TJ,CH4,10.0,kg/TJ,25.900579375199996,kg -a2dcec55-54c0-3975-8c82-6bf4e8b7616b,SESCO,II.1.1,Chaco,AR-H,annual,2019,bioetanol combustion consumption by to the public,2.5900579375199997,TJ,N2O,0.6,kg/TJ,1.5540347625119997,kg -0ebe02e6-64f4-3b2a-ae72-389d806fd977,SESCO,II.1.1,Chubut,AR-U,annual,2019,bioetanol combustion consumption by to the public,8.510247701639999,TJ,CH4,10.0,kg/TJ,85.10247701639999,kg -4073b9bb-aada-3e19-8584-9f782fe760ee,SESCO,II.1.1,Chubut,AR-U,annual,2019,bioetanol combustion consumption by to the public,8.510247701639999,TJ,N2O,0.6,kg/TJ,5.1061486209839995,kg -d41c86b4-12e6-3838-b1f7-0f4917c1862b,SESCO,II.1.1,Corrientes,AR-W,annual,2019,bioetanol combustion consumption by to the public,15.187076567639997,TJ,CH4,10.0,kg/TJ,151.87076567639997,kg -23f444c9-b703-3255-9abf-06c1b169efb0,SESCO,II.1.1,Corrientes,AR-W,annual,2019,bioetanol combustion consumption by to the public,15.187076567639997,TJ,N2O,0.6,kg/TJ,9.112245940583998,kg -ca08f14e-f8a5-375a-9af6-00db04d0292c,SESCO,II.1.1,Córdoba,AR-X,annual,2019,bioetanol combustion consumption by to the public,27.74418019272,TJ,CH4,10.0,kg/TJ,277.4418019272,kg -d0f5c327-f6aa-38d6-b028-ca9c16aaf0bc,SESCO,II.1.1,Córdoba,AR-X,annual,2019,bioetanol combustion consumption by to the public,27.74418019272,TJ,N2O,0.6,kg/TJ,16.646508115632,kg -95adf5e4-f490-35f2-807c-cde470a671c9,SESCO,II.1.1,Entre Rios,AR-E,annual,2019,bioetanol combustion consumption by to the public,26.943553804319997,TJ,CH4,10.0,kg/TJ,269.4355380432,kg -b171a685-ebda-373c-83d8-c5d4d35c989d,SESCO,II.1.1,Entre Rios,AR-E,annual,2019,bioetanol combustion consumption by to the public,26.943553804319997,TJ,N2O,0.6,kg/TJ,16.166132282592,kg -3bffcd13-995e-3b99-bad1-fcb5e84e3a4f,SESCO,II.1.1,Formosa,AR-P,annual,2019,bioetanol combustion consumption by to the public,0.19348577567999997,TJ,CH4,10.0,kg/TJ,1.9348577567999996,kg -ffae4a75-6343-3b53-8265-279bca869afc,SESCO,II.1.1,Formosa,AR-P,annual,2019,bioetanol combustion consumption by to the public,0.19348577567999997,TJ,N2O,0.6,kg/TJ,0.11609146540799997,kg -b442c26f-ca10-3436-a7cf-81354136a92b,SESCO,II.1.1,Jujuy,AR-Y,annual,2019,bioetanol combustion consumption by to the public,3.0319579962,TJ,CH4,10.0,kg/TJ,30.319579962,kg -13e6d8c9-7284-3457-b180-bcf93a81762e,SESCO,II.1.1,Jujuy,AR-Y,annual,2019,bioetanol combustion consumption by to the public,3.0319579962,TJ,N2O,0.6,kg/TJ,1.81917479772,kg -6543959a-6252-3485-9592-9443b69b3ed1,SESCO,II.1.1,La Pampa,AR-L,annual,2019,bioetanol combustion consumption by to the public,22.893745285079994,TJ,CH4,10.0,kg/TJ,228.93745285079996,kg -8a0d0e2a-c9a1-338e-b165-6d59893bdaa3,SESCO,II.1.1,La Pampa,AR-L,annual,2019,bioetanol combustion consumption by to the public,22.893745285079994,TJ,N2O,0.6,kg/TJ,13.736247171047996,kg -172fdba0-8650-3a40-8408-8670b9c6e452,SESCO,II.1.1,Mendoza,AR-M,annual,2019,bioetanol combustion consumption by to the public,3.8754647672399996,TJ,CH4,10.0,kg/TJ,38.7546476724,kg -1d10ff7a-2467-3fbc-9824-4020208df651,SESCO,II.1.1,Mendoza,AR-M,annual,2019,bioetanol combustion consumption by to the public,3.8754647672399996,TJ,N2O,0.6,kg/TJ,2.3252788603439996,kg -6ed866c9-02d4-3ee5-831d-ccabc30dda4a,SESCO,II.1.1,Misiones,AR-N,annual,2019,bioetanol combustion consumption by to the public,3.0280978926,TJ,CH4,10.0,kg/TJ,30.280978926,kg -3729e66d-5a08-3ecb-9d9f-51804f8e1eb7,SESCO,II.1.1,Misiones,AR-N,annual,2019,bioetanol combustion consumption by to the public,3.0280978926,TJ,N2O,0.6,kg/TJ,1.8168587355599999,kg -f72d5650-576e-39e8-b756-848cc920db49,SESCO,II.1.1,Neuquén,AR-Q,annual,2019,bioetanol combustion consumption by to the public,23.114499752879993,TJ,CH4,10.0,kg/TJ,231.14499752879993,kg -31194f40-ba51-3ce8-bb71-a37e39f1b47b,SESCO,II.1.1,Neuquén,AR-Q,annual,2019,bioetanol combustion consumption by to the public,23.114499752879993,TJ,N2O,0.6,kg/TJ,13.868699851727996,kg -0a8e5a1e-dc35-3102-a21f-5b622c6f4a4d,SESCO,II.1.1,Rio Negro,AR-R,annual,2019,bioetanol combustion consumption by to the public,58.46814818676,TJ,CH4,10.0,kg/TJ,584.6814818675999,kg -3cde773d-1d1e-3c9d-9cb9-4989755c532a,SESCO,II.1.1,Rio Negro,AR-R,annual,2019,bioetanol combustion consumption by to the public,58.46814818676,TJ,N2O,0.6,kg/TJ,35.080888912056,kg -d5f99438-a55c-3089-81fa-0da371e9b186,SESCO,II.1.1,San Juan,AR-J,annual,2019,bioetanol combustion consumption by to the public,5.88767030856,TJ,CH4,10.0,kg/TJ,58.8767030856,kg -100352d4-ee87-3857-b739-e034ca0a660b,SESCO,II.1.1,San Juan,AR-J,annual,2019,bioetanol combustion consumption by to the public,5.88767030856,TJ,N2O,0.6,kg/TJ,3.5326021851359997,kg -0c078ec1-4c7d-3ff5-8bd8-35efc17b96d7,SESCO,II.1.1,San Luis,AR-D,annual,2019,bioetanol combustion consumption by to the public,4.04688659976,TJ,CH4,10.0,kg/TJ,40.4688659976,kg -65debebc-8d21-3960-974b-5cbbe30effcb,SESCO,II.1.1,San Luis,AR-D,annual,2019,bioetanol combustion consumption by to the public,4.04688659976,TJ,N2O,0.6,kg/TJ,2.4281319598559996,kg -0c635cae-8ffd-361e-b352-345742ee4d4d,SESCO,II.1.1,Santa Fe,AR-S,annual,2019,bioetanol combustion consumption by to the public,52.862605436879996,TJ,CH4,10.0,kg/TJ,528.6260543687999,kg -a807aeab-df19-365b-aa23-cc9fb107175d,SESCO,II.1.1,Santa Fe,AR-S,annual,2019,bioetanol combustion consumption by to the public,52.862605436879996,TJ,N2O,0.6,kg/TJ,31.717563262127996,kg -2e00177c-a104-3a51-a6e2-64dd9b09ebe0,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2019,bioetanol combustion consumption by to the public,18.59628427812,TJ,CH4,10.0,kg/TJ,185.96284278119998,kg -d9bbb89d-9c97-36b5-8ceb-defb4b0287cf,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2019,bioetanol combustion consumption by to the public,18.59628427812,TJ,N2O,0.6,kg/TJ,11.157770566872,kg -d657bd28-50b2-3073-af7d-10cb248b2025,SESCO,II.1.1,Tucuman,AR-T,annual,2019,bioetanol combustion consumption by to the public,3.5631414842399995,TJ,CH4,10.0,kg/TJ,35.6314148424,kg -678e5090-e0d2-34f2-9cef-6485eb000b1c,SESCO,II.1.1,Tucuman,AR-T,annual,2019,bioetanol combustion consumption by to the public,3.5631414842399995,TJ,N2O,0.6,kg/TJ,2.1378848905439995,kg -4d052d81-6dc2-3311-9cc0-4b397213994a,SESCO,II.1.1,Buenos Aires,AR-B,annual,2019,bioetanol combustion consumption by to the public,83.17148703228,TJ,CH4,10.0,kg/TJ,831.7148703227999,kg -0ecd6d2b-833e-36b2-a440-2484f93a137c,SESCO,II.1.1,Buenos Aires,AR-B,annual,2019,bioetanol combustion consumption by to the public,83.17148703228,TJ,N2O,0.6,kg/TJ,49.902892219368,kg -dec64d6b-6d17-3b47-be95-a6dcf34aee6b,SESCO,II.1.1,Capital Federal,AR-C,annual,2019,bioetanol combustion consumption by to the public,2.3464828439999996,TJ,CH4,10.0,kg/TJ,23.464828439999998,kg -121a7b42-c16a-301f-ad52-2468ba7bab00,SESCO,II.1.1,Capital Federal,AR-C,annual,2019,bioetanol combustion consumption by to the public,2.3464828439999996,TJ,N2O,0.6,kg/TJ,1.4078897063999998,kg -246f4d6f-1f41-31bc-b3f0-8f05dc38d590,SESCO,II.1.1,Catamarca,AR-K,annual,2019,bioetanol combustion consumption by to the public,0.0712713168,TJ,CH4,10.0,kg/TJ,0.712713168,kg -4e43d027-7ec1-3a61-a9fb-169d383cc0a2,SESCO,II.1.1,Catamarca,AR-K,annual,2019,bioetanol combustion consumption by to the public,0.0712713168,TJ,N2O,0.6,kg/TJ,0.042762790079999995,kg -7f3971a7-540a-35ab-a48d-243903b893e3,SESCO,II.1.1,Chaco,AR-H,annual,2019,bioetanol combustion consumption by to the public,0.30354474276,TJ,CH4,10.0,kg/TJ,3.0354474276,kg -2f47cedf-76ac-3c0b-9062-879f10b445ee,SESCO,II.1.1,Chaco,AR-H,annual,2019,bioetanol combustion consumption by to the public,0.30354474276,TJ,N2O,0.6,kg/TJ,0.18212684565599999,kg -d28a9011-b9aa-3edd-ab42-fb6e6abd8e2b,SESCO,II.1.1,Chubut,AR-U,annual,2019,bioetanol combustion consumption by to the public,1.10418391296,TJ,CH4,10.0,kg/TJ,11.0418391296,kg -b772fabb-6f6b-38b1-864e-f6142ae4aa23,SESCO,II.1.1,Chubut,AR-U,annual,2019,bioetanol combustion consumption by to the public,1.10418391296,TJ,N2O,0.6,kg/TJ,0.6625103477759999,kg -5b75218f-2d44-3b48-b728-d8e6ed87832e,SESCO,II.1.1,Corrientes,AR-W,annual,2019,bioetanol combustion consumption by to the public,1.09543349268,TJ,CH4,10.0,kg/TJ,10.9543349268,kg -b5053fc4-0758-3a54-99e0-bd508206c958,SESCO,II.1.1,Corrientes,AR-W,annual,2019,bioetanol combustion consumption by to the public,1.09543349268,TJ,N2O,0.6,kg/TJ,0.657260095608,kg -13cace51-5bdf-3843-b0c2-b37d8cc769e0,SESCO,II.1.1,Córdoba,AR-X,annual,2019,bioetanol combustion consumption by to the public,4.89376265328,TJ,CH4,10.0,kg/TJ,48.937626532799996,kg -07e2008e-3102-3c07-8241-5b798611ab1d,SESCO,II.1.1,Córdoba,AR-X,annual,2019,bioetanol combustion consumption by to the public,4.89376265328,TJ,N2O,0.6,kg/TJ,2.936257591968,kg -67cfeff8-db86-3a7d-b727-302d13cb3f78,SESCO,II.1.1,Entre Rios,AR-E,annual,2019,bioetanol combustion consumption by to the public,4.798553581439999,TJ,CH4,10.0,kg/TJ,47.985535814399995,kg -7eac7d9d-2247-3a38-8cf4-218be39a7147,SESCO,II.1.1,Entre Rios,AR-E,annual,2019,bioetanol combustion consumption by to the public,4.798553581439999,TJ,N2O,0.6,kg/TJ,2.8791321488639996,kg -e77da2a3-ef83-3935-97fb-a5644bcfaa91,SESCO,II.1.1,Formosa,AR-P,annual,2019,bioetanol combustion consumption by to the public,0.03825081468,TJ,CH4,10.0,kg/TJ,0.3825081468,kg -06f334f9-757d-33cd-b5ee-8b3c2992c31c,SESCO,II.1.1,Formosa,AR-P,annual,2019,bioetanol combustion consumption by to the public,0.03825081468,TJ,N2O,0.6,kg/TJ,0.022950488808000002,kg -eeb4a499-a117-320f-ae00-c52c02881386,SESCO,II.1.1,La Pampa,AR-L,annual,2019,bioetanol combustion consumption by to the public,4.82047181208,TJ,CH4,10.0,kg/TJ,48.2047181208,kg -99be2142-4d3e-3505-94e3-b893ca65bcce,SESCO,II.1.1,La Pampa,AR-L,annual,2019,bioetanol combustion consumption by to the public,4.82047181208,TJ,N2O,0.6,kg/TJ,2.892283087248,kg -7a744881-0907-3453-af45-1a8fec0f28d6,SESCO,II.1.1,Mendoza,AR-M,annual,2019,bioetanol combustion consumption by to the public,0.42980336315999995,TJ,CH4,10.0,kg/TJ,4.298033631599999,kg -cbd2612c-e36b-3714-b12b-2be5053927fa,SESCO,II.1.1,Mendoza,AR-M,annual,2019,bioetanol combustion consumption by to the public,0.42980336315999995,TJ,N2O,0.6,kg/TJ,0.25788201789599996,kg -34b66f55-c873-316c-a6ca-4e4c58492709,SESCO,II.1.1,Misiones,AR-N,annual,2019,bioetanol combustion consumption by to the public,0.20526036983999998,TJ,CH4,10.0,kg/TJ,2.0526036984,kg -bc0c7753-64dc-323d-8b2b-d9cf054bc15d,SESCO,II.1.1,Misiones,AR-N,annual,2019,bioetanol combustion consumption by to the public,0.20526036983999998,TJ,N2O,0.6,kg/TJ,0.12315622190399998,kg -586414db-27a8-3fcd-b1a2-db2b4e6eeebc,SESCO,II.1.1,Neuquén,AR-Q,annual,2019,bioetanol combustion consumption by to the public,7.66447599564,TJ,CH4,10.0,kg/TJ,76.64475995640001,kg -63f42952-692f-342c-9c63-328ba8c5648a,SESCO,II.1.1,Neuquén,AR-Q,annual,2019,bioetanol combustion consumption by to the public,7.66447599564,TJ,N2O,0.6,kg/TJ,4.598685597384,kg -5859c2c4-b39a-3ca9-bbad-9ca87749caae,SESCO,II.1.1,Rio Negro,AR-R,annual,2019,bioetanol combustion consumption by to the public,7.6624181258399995,TJ,CH4,10.0,kg/TJ,76.6241812584,kg -2d2a482c-f73a-31d1-bd44-b9c84484aba1,SESCO,II.1.1,Rio Negro,AR-R,annual,2019,bioetanol combustion consumption by to the public,7.6624181258399995,TJ,N2O,0.6,kg/TJ,4.597450875503999,kg -c47b1b5c-2034-3e78-8bb1-df9a1c6f2b89,SESCO,II.1.1,San Juan,AR-J,annual,2019,bioetanol combustion consumption by to the public,0.62366748012,TJ,CH4,10.0,kg/TJ,6.2366748011999995,kg -52a85b44-fcc6-31cd-9830-fe72aa5e6e79,SESCO,II.1.1,San Juan,AR-J,annual,2019,bioetanol combustion consumption by to the public,0.62366748012,TJ,N2O,0.6,kg/TJ,0.37420048807199996,kg -a3074e3a-be04-395f-b1e8-f28a300bb59c,SESCO,II.1.1,San Luis,AR-D,annual,2019,bioetanol combustion consumption by to the public,0.85749772932,TJ,CH4,10.0,kg/TJ,8.5749772932,kg -280f103a-8cc8-386c-9504-4efa0e4ce478,SESCO,II.1.1,San Luis,AR-D,annual,2019,bioetanol combustion consumption by to the public,0.85749772932,TJ,N2O,0.6,kg/TJ,0.514498637592,kg -4f72f2e7-8f94-3cd2-823a-9f99e8d74af2,SESCO,II.1.1,Santa Fe,AR-S,annual,2019,bioetanol combustion consumption by to the public,9.98687281572,TJ,CH4,10.0,kg/TJ,99.8687281572,kg -55145ccc-9fc4-34e3-83f1-cf341737a217,SESCO,II.1.1,Santa Fe,AR-S,annual,2019,bioetanol combustion consumption by to the public,9.98687281572,TJ,N2O,0.6,kg/TJ,5.992123689432,kg -b8041432-4f4e-33f2-b766-416ead711a4c,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2019,bioetanol combustion consumption by to the public,2.9939755993199992,TJ,CH4,10.0,kg/TJ,29.93975599319999,kg -de3950b0-6d6f-3371-820c-befbee1731ec,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2019,bioetanol combustion consumption by to the public,2.9939755993199992,TJ,N2O,0.6,kg/TJ,1.7963853595919994,kg -ca0ae9e0-8fcc-3570-b570-f6abf493f1d2,SESCO,II.1.1,Tucuman,AR-T,annual,2019,bioetanol combustion consumption by to the public,0.041203410479999994,TJ,CH4,10.0,kg/TJ,0.4120341047999999,kg -fadd848d-d3c1-3402-91d6-920bf6c32ef0,SESCO,II.1.1,Tucuman,AR-T,annual,2019,bioetanol combustion consumption by to the public,0.041203410479999994,TJ,N2O,0.6,kg/TJ,0.024722046287999996,kg -c7648b93-d34b-33bb-a36e-cecbcef91fc1,SESCO,I.3.1,Neuquén,AR-Q,annual,2019,bioetanol combustion consumption by petrochemical industries,0.31022195507999994,TJ,CH4,10.0,kg/TJ,3.1022195507999992,kg -807637ac-99f9-3ee4-8344-21276d093eea,SESCO,I.3.1,Neuquén,AR-Q,annual,2019,bioetanol combustion consumption by petrochemical industries,0.31022195507999994,TJ,N2O,0.6,kg/TJ,0.18613317304799995,kg -45c2028d-22ec-391b-994b-6690eb39b9a1,SESCO,I.3.1,Neuquén,AR-Q,annual,2019,bioetanol combustion consumption by petrochemical industries,0.025663298039999997,TJ,CH4,10.0,kg/TJ,0.2566329804,kg -9c09c66c-c90f-358e-839c-9761a691603d,SESCO,I.3.1,Neuquén,AR-Q,annual,2019,bioetanol combustion consumption by petrochemical industries,0.025663298039999997,TJ,N2O,0.6,kg/TJ,0.015397978823999998,kg -3440d0ce-a3e3-3847-9aea-e734f4e50285,SESCO,II.1.1,Buenos Aires,AR-B,annual,2019,bioetanol combustion consumption by public passenger transport,0.07372542239999999,TJ,CH4,10.0,kg/TJ,0.737254224,kg -b89065ca-5b81-3ded-a291-a3e36d8d1f62,SESCO,II.1.1,Buenos Aires,AR-B,annual,2019,bioetanol combustion consumption by public passenger transport,0.07372542239999999,TJ,N2O,0.6,kg/TJ,0.04423525343999999,kg -413ea82f-d151-3834-8bef-d5b8caebad3f,SESCO,II.5.1,Buenos Aires,AR-B,annual,2019,bioetanol combustion consumption by agriculture machines,4.67302608,TJ,CH4,10.0,kg/TJ,46.730260799999996,kg -11f0da7a-dc44-36bf-aaa9-b32d693a6ad5,SESCO,II.5.1,Buenos Aires,AR-B,annual,2019,bioetanol combustion consumption by agriculture machines,4.67302608,TJ,N2O,0.6,kg/TJ,2.8038156479999996,kg -84cd7a79-d0d4-35ea-8179-1633c573941e,SESCO,II.5.1,Mendoza,AR-M,annual,2019,bioetanol combustion consumption by agriculture machines,0.09458531999999999,TJ,CH4,10.0,kg/TJ,0.9458531999999998,kg -328fbcea-19d1-3115-aa83-a333f77c8da6,SESCO,II.5.1,Mendoza,AR-M,annual,2019,bioetanol combustion consumption by agriculture machines,0.09458531999999999,TJ,N2O,0.6,kg/TJ,0.05675119199999999,kg -9576d758-54e9-3276-afbf-8fb3dc3598a4,SESCO,II.5.1,Salta,AR-A,annual,2019,bioetanol combustion consumption by agriculture machines,0.038345399999999995,TJ,CH4,10.0,kg/TJ,0.38345399999999996,kg -3acb6310-f12e-3133-a695-f3ef715e2f16,SESCO,II.5.1,Salta,AR-A,annual,2019,bioetanol combustion consumption by agriculture machines,0.038345399999999995,TJ,N2O,0.6,kg/TJ,0.023007239999999995,kg -a03e424c-8feb-3213-8749-54b4af287d1f,SESCO,II.5.1,Santa Fe,AR-S,annual,2019,bioetanol combustion consumption by agriculture machines,3.23635176,TJ,CH4,10.0,kg/TJ,32.363517599999994,kg -dc022420-d297-3461-b6d1-13701e49462e,SESCO,II.5.1,Santa Fe,AR-S,annual,2019,bioetanol combustion consumption by agriculture machines,3.23635176,TJ,N2O,0.6,kg/TJ,1.9418110559999997,kg -d313839e-adc3-398f-b782-94e7d60ebeae,SESCO,II.1.1,Buenos Aires,AR-B,annual,2019,bioetanol combustion consumption by to the public,3284.18381196,TJ,CH4,10.0,kg/TJ,32841.838119600005,kg -7b00ffe3-37ef-3b25-a260-f2be18c63800,SESCO,II.1.1,Buenos Aires,AR-B,annual,2019,bioetanol combustion consumption by to the public,3284.18381196,TJ,N2O,0.6,kg/TJ,1970.510287176,kg -a2e341fb-6f49-35a7-a9e8-e5f31e31b41b,SESCO,II.1.1,Capital Federal,AR-C,annual,2019,bioetanol combustion consumption by to the public,668.59806348,TJ,CH4,10.0,kg/TJ,6685.980634799999,kg -66cc4caf-e9fc-388b-b573-bbd5f80302ab,SESCO,II.1.1,Capital Federal,AR-C,annual,2019,bioetanol combustion consumption by to the public,668.59806348,TJ,N2O,0.6,kg/TJ,401.158838088,kg -e872990d-0486-3b71-b4f6-d288e8432cca,SESCO,II.1.1,Catamarca,AR-K,annual,2019,bioetanol combustion consumption by to the public,64.23110136,TJ,CH4,10.0,kg/TJ,642.3110136,kg -13fecf68-d0a7-3a86-98c8-c1a32ebd9254,SESCO,II.1.1,Catamarca,AR-K,annual,2019,bioetanol combustion consumption by to the public,64.23110136,TJ,N2O,0.6,kg/TJ,38.538660816,kg -4e7409cf-24f2-3515-8bde-47fdc081a0dd,SESCO,II.1.1,Chaco,AR-H,annual,2019,bioetanol combustion consumption by to the public,192.66518411999996,TJ,CH4,10.0,kg/TJ,1926.6518411999996,kg -d5734abf-9e97-3f61-848e-9d27b4c7132b,SESCO,II.1.1,Chaco,AR-H,annual,2019,bioetanol combustion consumption by to the public,192.66518411999996,TJ,N2O,0.6,kg/TJ,115.59911047199998,kg -0ca87e3e-dcea-3269-9f9f-fbe8eb1e84ee,SESCO,II.1.1,Chubut,AR-U,annual,2019,bioetanol combustion consumption by to the public,276.66717372,TJ,CH4,10.0,kg/TJ,2766.6717372,kg -79aa3832-b997-3106-9ea4-6b9f251bee99,SESCO,II.1.1,Chubut,AR-U,annual,2019,bioetanol combustion consumption by to the public,276.66717372,TJ,N2O,0.6,kg/TJ,166.000304232,kg -00373603-d408-309a-9648-6cc253f2bf0b,SESCO,II.1.1,Corrientes,AR-W,annual,2019,bioetanol combustion consumption by to the public,198.71353187999998,TJ,CH4,10.0,kg/TJ,1987.1353187999998,kg -fa899d0c-26f7-39af-805b-9ff72ee4df39,SESCO,II.1.1,Corrientes,AR-W,annual,2019,bioetanol combustion consumption by to the public,198.71353187999998,TJ,N2O,0.6,kg/TJ,119.22811912799997,kg -f32e5c51-323b-3a5a-9fd8-6b9bdc5d84dc,SESCO,II.1.1,Córdoba,AR-X,annual,2019,bioetanol combustion consumption by to the public,802.2701278799999,TJ,CH4,10.0,kg/TJ,8022.701278799999,kg -7e5eca60-30d1-3824-89d6-b630f181f25c,SESCO,II.1.1,Córdoba,AR-X,annual,2019,bioetanol combustion consumption by to the public,802.2701278799999,TJ,N2O,0.6,kg/TJ,481.3620767279999,kg -8abcb99e-0605-3102-8410-e25728e94871,SESCO,II.1.1,Entre Rios,AR-E,annual,2019,bioetanol combustion consumption by to the public,279.49962059999996,TJ,CH4,10.0,kg/TJ,2794.996206,kg -2bb61dfc-972d-3cea-95ef-58c85db63b3c,SESCO,II.1.1,Entre Rios,AR-E,annual,2019,bioetanol combustion consumption by to the public,279.49962059999996,TJ,N2O,0.6,kg/TJ,167.69977235999997,kg -3565cce8-6ee5-303f-ba5a-662a151e9529,SESCO,II.1.1,Formosa,AR-P,annual,2019,bioetanol combustion consumption by to the public,88.68779747999999,TJ,CH4,10.0,kg/TJ,886.8779747999998,kg -a4f65916-495f-3fb2-88a5-db9705d8aa92,SESCO,II.1.1,Formosa,AR-P,annual,2019,bioetanol combustion consumption by to the public,88.68779747999999,TJ,N2O,0.6,kg/TJ,53.21267848799999,kg -f5257418-dac4-3394-ac96-673da877e2ba,SESCO,II.1.1,Jujuy,AR-Y,annual,2019,bioetanol combustion consumption by to the public,120.77267183999999,TJ,CH4,10.0,kg/TJ,1207.7267183999998,kg -62c7e60d-bc16-344d-bda9-21eedb63f311,SESCO,II.1.1,Jujuy,AR-Y,annual,2019,bioetanol combustion consumption by to the public,120.77267183999999,TJ,N2O,0.6,kg/TJ,72.46360310399999,kg -b185c81b-aa5e-3928-b4fd-8cab41568cd2,SESCO,II.1.1,La Pampa,AR-L,annual,2019,bioetanol combustion consumption by to the public,142.0824888,TJ,CH4,10.0,kg/TJ,1420.8248879999999,kg -d26e12ce-bf26-3b10-ace8-595a7231d476,SESCO,II.1.1,La Pampa,AR-L,annual,2019,bioetanol combustion consumption by to the public,142.0824888,TJ,N2O,0.6,kg/TJ,85.24949328,kg -2fe912cd-53fa-3c99-87ae-6d7bcb78fd87,SESCO,II.1.1,La Rioja,AR-F,annual,2019,bioetanol combustion consumption by to the public,84.4365708,TJ,CH4,10.0,kg/TJ,844.365708,kg -ef8c63c5-71e7-3802-8a32-78c507dc74bb,SESCO,II.1.1,La Rioja,AR-F,annual,2019,bioetanol combustion consumption by to the public,84.4365708,TJ,N2O,0.6,kg/TJ,50.66194248,kg -0b85551f-fe28-3cae-b3e1-3ab0a42f7454,SESCO,II.1.1,Mendoza,AR-M,annual,2019,bioetanol combustion consumption by to the public,416.59720739999995,TJ,CH4,10.0,kg/TJ,4165.972073999999,kg -746116e8-1f27-3306-8974-8f0fca37a7a8,SESCO,II.1.1,Mendoza,AR-M,annual,2019,bioetanol combustion consumption by to the public,416.59720739999995,TJ,N2O,0.6,kg/TJ,249.95832443999996,kg -0093ac5b-85c2-312b-b37b-d08420e7a70b,SESCO,II.1.1,Misiones,AR-N,annual,2019,bioetanol combustion consumption by to the public,274.24118808,TJ,CH4,10.0,kg/TJ,2742.4118808,kg -c4441633-e4cb-3dc4-a806-1babc5e77881,SESCO,II.1.1,Misiones,AR-N,annual,2019,bioetanol combustion consumption by to the public,274.24118808,TJ,N2O,0.6,kg/TJ,164.544712848,kg -84ed5da6-d8d6-37e1-988e-ec2f7fbcaf94,SESCO,II.1.1,Neuquén,AR-Q,annual,2019,bioetanol combustion consumption by to the public,277.90445195999996,TJ,CH4,10.0,kg/TJ,2779.0445195999996,kg -098011e8-686b-37ae-945b-b460dfd4b99f,SESCO,II.1.1,Neuquén,AR-Q,annual,2019,bioetanol combustion consumption by to the public,277.90445195999996,TJ,N2O,0.6,kg/TJ,166.74267117599996,kg -939bafd6-4e7b-371e-ba92-70205983c555,SESCO,II.1.1,Rio Negro,AR-R,annual,2019,bioetanol combustion consumption by to the public,279.45871883999996,TJ,CH4,10.0,kg/TJ,2794.5871884,kg -8a420770-2a0a-3692-9c15-2c3690884558,SESCO,II.1.1,Rio Negro,AR-R,annual,2019,bioetanol combustion consumption by to the public,279.45871883999996,TJ,N2O,0.6,kg/TJ,167.67523130399996,kg -7c6c917c-606e-360c-894d-f959cca42a2b,SESCO,II.1.1,Salta,AR-A,annual,2019,bioetanol combustion consumption by to the public,269.01598824,TJ,CH4,10.0,kg/TJ,2690.1598824000002,kg -82f059ab-86b2-30c8-a411-297ffb1224ba,SESCO,II.1.1,Salta,AR-A,annual,2019,bioetanol combustion consumption by to the public,269.01598824,TJ,N2O,0.6,kg/TJ,161.409592944,kg -208f9bad-6498-3f5f-a591-d694bbb57e18,SESCO,II.1.1,San Juan,AR-J,annual,2019,bioetanol combustion consumption by to the public,142.21797587999998,TJ,CH4,10.0,kg/TJ,1422.1797588,kg -39707e65-2fa0-30de-9c8b-a21c696352bb,SESCO,II.1.1,San Juan,AR-J,annual,2019,bioetanol combustion consumption by to the public,142.21797587999998,TJ,N2O,0.6,kg/TJ,85.33078552799999,kg -148875e9-e9df-33af-bf09-1cd24d76c354,SESCO,II.1.1,San Luis,AR-D,annual,2019,bioetanol combustion consumption by to the public,120.36621059999999,TJ,CH4,10.0,kg/TJ,1203.6621059999998,kg -d7d3f6f7-0475-3666-8d02-1cd068a4a9ea,SESCO,II.1.1,San Luis,AR-D,annual,2019,bioetanol combustion consumption by to the public,120.36621059999999,TJ,N2O,0.6,kg/TJ,72.21972636,kg -224ed333-dcee-38b5-921b-cdfe4657c58f,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2019,bioetanol combustion consumption by to the public,194.58245411999997,TJ,CH4,10.0,kg/TJ,1945.8245411999997,kg -d2ac04e0-e6ff-38f2-b570-d222372955c6,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2019,bioetanol combustion consumption by to the public,194.58245411999997,TJ,N2O,0.6,kg/TJ,116.74947247199998,kg -f6105c96-fa11-31ba-99b5-b3e16a3759be,SESCO,II.1.1,Santa Fe,AR-S,annual,2019,bioetanol combustion consumption by to the public,615.0985614,TJ,CH4,10.0,kg/TJ,6150.985614,kg -c3073496-26a0-3daa-9209-08e77c292897,SESCO,II.1.1,Santa Fe,AR-S,annual,2019,bioetanol combustion consumption by to the public,615.0985614,TJ,N2O,0.6,kg/TJ,369.05913684,kg -03ba89f4-801a-3ed1-ad2d-9c6d6a3aa01e,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2019,bioetanol combustion consumption by to the public,123.50286431999999,TJ,CH4,10.0,kg/TJ,1235.0286431999998,kg -1f125e31-5d5a-36ad-b1d5-a1152861b127,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2019,bioetanol combustion consumption by to the public,123.50286431999999,TJ,N2O,0.6,kg/TJ,74.10171859199998,kg -a40644b4-53e7-3047-b630-55ab63648a88,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2019,bioetanol combustion consumption by to the public,134.77385556,TJ,CH4,10.0,kg/TJ,1347.7385556,kg -ddb5fc3c-d8b6-3794-8568-edc62e7f3bce,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2019,bioetanol combustion consumption by to the public,134.77385556,TJ,N2O,0.6,kg/TJ,80.864313336,kg -ea6e8259-642b-3e9a-8ebd-ac86cba912bf,SESCO,II.1.1,Tucuman,AR-T,annual,2019,bioetanol combustion consumption by to the public,230.41495224,TJ,CH4,10.0,kg/TJ,2304.1495224,kg -993aa7e6-5e4c-3860-862a-e0d80c86e28a,SESCO,II.1.1,Tucuman,AR-T,annual,2019,bioetanol combustion consumption by to the public,230.41495224,TJ,N2O,0.6,kg/TJ,138.24897134399998,kg -d7077189-aa64-36d8-a54e-3435ec9922f2,SESCO,II.1.1,Buenos Aires,AR-B,annual,2019,bioetanol combustion consumption by to the public,1191.9795408,TJ,CH4,10.0,kg/TJ,11919.795408,kg -c47e97c4-4e88-3bc1-a843-819892e1cadd,SESCO,II.1.1,Buenos Aires,AR-B,annual,2019,bioetanol combustion consumption by to the public,1191.9795408,TJ,N2O,0.6,kg/TJ,715.1877244799999,kg -47bfe369-2d94-3872-a473-8357a5eafd39,SESCO,II.1.1,Capital Federal,AR-C,annual,2019,bioetanol combustion consumption by to the public,281.26606535999997,TJ,CH4,10.0,kg/TJ,2812.6606536,kg -4ce3b1f2-8ab5-31ff-894c-a80c169df148,SESCO,II.1.1,Capital Federal,AR-C,annual,2019,bioetanol combustion consumption by to the public,281.26606535999997,TJ,N2O,0.6,kg/TJ,168.75963921599998,kg -cefc0f5a-d2c2-38f5-9738-f6f725650317,SESCO,II.1.1,Catamarca,AR-K,annual,2019,bioetanol combustion consumption by to the public,22.897316519999997,TJ,CH4,10.0,kg/TJ,228.97316519999998,kg -82e7ae2a-aae8-343e-b8e9-d4ff182d2c65,SESCO,II.1.1,Catamarca,AR-K,annual,2019,bioetanol combustion consumption by to the public,22.897316519999997,TJ,N2O,0.6,kg/TJ,13.738389911999997,kg -c5c68373-6f8e-3615-8d50-b2a40feed510,SESCO,II.1.1,Chaco,AR-H,annual,2019,bioetanol combustion consumption by to the public,65.7751428,TJ,CH4,10.0,kg/TJ,657.751428,kg -85ea1640-91ce-30b4-bee3-c187c1434905,SESCO,II.1.1,Chaco,AR-H,annual,2019,bioetanol combustion consumption by to the public,65.7751428,TJ,N2O,0.6,kg/TJ,39.465085679999994,kg -2c892e54-f5b9-3f28-b19c-78b7313e634e,SESCO,II.1.1,Chubut,AR-U,annual,2019,bioetanol combustion consumption by to the public,97.79610816,TJ,CH4,10.0,kg/TJ,977.9610816,kg -66a2338f-fc1c-35fd-a4f7-6b9ff65b41dd,SESCO,II.1.1,Chubut,AR-U,annual,2019,bioetanol combustion consumption by to the public,97.79610816,TJ,N2O,0.6,kg/TJ,58.677664895999996,kg -d0e61b00-bd04-355f-be2b-6d9df56ac5c8,SESCO,II.1.1,Corrientes,AR-W,annual,2019,bioetanol combustion consumption by to the public,77.57018783999999,TJ,CH4,10.0,kg/TJ,775.7018783999999,kg -04c6d1c1-9624-3e50-b15e-02357bf7c8c3,SESCO,II.1.1,Corrientes,AR-W,annual,2019,bioetanol combustion consumption by to the public,77.57018783999999,TJ,N2O,0.6,kg/TJ,46.54211270399999,kg -e294bf50-27ec-35a3-85df-01c401ebab05,SESCO,II.1.1,Córdoba,AR-X,annual,2019,bioetanol combustion consumption by to the public,287.50869647999997,TJ,CH4,10.0,kg/TJ,2875.0869648,kg -c82cff14-fffb-3f1d-83e0-14838a678df0,SESCO,II.1.1,Córdoba,AR-X,annual,2019,bioetanol combustion consumption by to the public,287.50869647999997,TJ,N2O,0.6,kg/TJ,172.50521788799998,kg -9ee1517d-4681-38b9-a9d9-000fdff6f818,SESCO,II.1.1,Entre Rios,AR-E,annual,2019,bioetanol combustion consumption by to the public,101.81981879999998,TJ,CH4,10.0,kg/TJ,1018.1981879999998,kg -eed81997-0176-3961-8012-fab2c0d0469d,SESCO,II.1.1,Entre Rios,AR-E,annual,2019,bioetanol combustion consumption by to the public,101.81981879999998,TJ,N2O,0.6,kg/TJ,61.091891279999984,kg -cd0778c7-0dc1-3ecd-985c-b7520d7664af,SESCO,II.1.1,Formosa,AR-P,annual,2019,bioetanol combustion consumption by to the public,22.483186199999995,TJ,CH4,10.0,kg/TJ,224.83186199999994,kg -7924e74f-9667-33d1-9182-6e6bb47535c4,SESCO,II.1.1,Formosa,AR-P,annual,2019,bioetanol combustion consumption by to the public,22.483186199999995,TJ,N2O,0.6,kg/TJ,13.489911719999997,kg -aeefc769-fefe-304e-b7c7-756641078c5f,SESCO,II.1.1,Jujuy,AR-Y,annual,2019,bioetanol combustion consumption by to the public,33.805304639999996,TJ,CH4,10.0,kg/TJ,338.05304639999997,kg -53b2e6c2-4e16-3e16-828b-ef153d4a72b0,SESCO,II.1.1,Jujuy,AR-Y,annual,2019,bioetanol combustion consumption by to the public,33.805304639999996,TJ,N2O,0.6,kg/TJ,20.283182783999997,kg -c01359d9-9fa6-33f3-a4d7-6bb2e32410b7,SESCO,II.1.1,La Pampa,AR-L,annual,2019,bioetanol combustion consumption by to the public,84.23717471999998,TJ,CH4,10.0,kg/TJ,842.3717471999998,kg -c82f5856-e718-3d31-8469-47d5bc8123ae,SESCO,II.1.1,La Pampa,AR-L,annual,2019,bioetanol combustion consumption by to the public,84.23717471999998,TJ,N2O,0.6,kg/TJ,50.54230483199999,kg -3a0049d3-ba0d-3fd4-aa6c-4ee80b600b4e,SESCO,II.1.1,La Rioja,AR-F,annual,2019,bioetanol combustion consumption by to the public,32.86967688,TJ,CH4,10.0,kg/TJ,328.6967688,kg -aeafded0-035a-3f69-a283-fa3c2caae911,SESCO,II.1.1,La Rioja,AR-F,annual,2019,bioetanol combustion consumption by to the public,32.86967688,TJ,N2O,0.6,kg/TJ,19.721806128,kg -08a56cb4-a0b4-3e42-8c4c-df465e105c1c,SESCO,II.1.1,Mendoza,AR-M,annual,2019,bioetanol combustion consumption by to the public,199.89968291999998,TJ,CH4,10.0,kg/TJ,1998.9968291999999,kg -4656c335-0e84-35da-bb72-f797a306169b,SESCO,II.1.1,Mendoza,AR-M,annual,2019,bioetanol combustion consumption by to the public,199.89968291999998,TJ,N2O,0.6,kg/TJ,119.93980975199997,kg -04b56fb8-9698-321f-826c-b29ad4daa367,SESCO,II.1.1,Misiones,AR-N,annual,2019,bioetanol combustion consumption by to the public,64.59410448,TJ,CH4,10.0,kg/TJ,645.9410448,kg -b54488a6-f58b-3bf2-a672-5f78b596497e,SESCO,II.1.1,Misiones,AR-N,annual,2019,bioetanol combustion consumption by to the public,64.59410448,TJ,N2O,0.6,kg/TJ,38.756462688,kg -f13b3ab6-3fd2-36d9-8bdc-51100b730330,SESCO,II.1.1,Neuquén,AR-Q,annual,2019,bioetanol combustion consumption by to the public,155.08924847999998,TJ,CH4,10.0,kg/TJ,1550.8924847999997,kg -d9bc515d-1ff6-3193-ad6c-eb35e4ddf7dc,SESCO,II.1.1,Neuquén,AR-Q,annual,2019,bioetanol combustion consumption by to the public,155.08924847999998,TJ,N2O,0.6,kg/TJ,93.05354908799998,kg -9ba01b13-d43f-3599-b32d-73582af7ea49,SESCO,II.1.1,Rio Negro,AR-R,annual,2019,bioetanol combustion consumption by to the public,130.51751615999999,TJ,CH4,10.0,kg/TJ,1305.1751616,kg -7b6ae179-c361-3238-9181-b3ccc5b3d16c,SESCO,II.1.1,Rio Negro,AR-R,annual,2019,bioetanol combustion consumption by to the public,130.51751615999999,TJ,N2O,0.6,kg/TJ,78.31050969599998,kg -4f8e3fe7-6bee-3161-89d0-da7678615c64,SESCO,II.1.1,Salta,AR-A,annual,2019,bioetanol combustion consumption by to the public,76.05937907999999,TJ,CH4,10.0,kg/TJ,760.5937907999999,kg -2e798100-c2d2-3e12-b729-c017a9d8c19f,SESCO,II.1.1,Salta,AR-A,annual,2019,bioetanol combustion consumption by to the public,76.05937907999999,TJ,N2O,0.6,kg/TJ,45.63562744799999,kg -58b02ef7-cac8-3b86-81d8-7b089c4327f6,SESCO,II.1.1,San Juan,AR-J,annual,2019,bioetanol combustion consumption by to the public,58.19297904,TJ,CH4,10.0,kg/TJ,581.9297904,kg -f3a7ede5-7bd2-36f2-a31e-6147413239f6,SESCO,II.1.1,San Juan,AR-J,annual,2019,bioetanol combustion consumption by to the public,58.19297904,TJ,N2O,0.6,kg/TJ,34.915787423999994,kg -45274c4f-95a6-380f-8086-2fd4fd41f058,SESCO,II.1.1,San Luis,AR-D,annual,2019,bioetanol combustion consumption by to the public,49.06677383999999,TJ,CH4,10.0,kg/TJ,490.6677383999999,kg -4eda5e36-ed5f-32fb-ad27-f97695d65be9,SESCO,II.1.1,San Luis,AR-D,annual,2019,bioetanol combustion consumption by to the public,49.06677383999999,TJ,N2O,0.6,kg/TJ,29.440064303999993,kg -705c5686-e683-3fda-80a0-e95e88734b79,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2019,bioetanol combustion consumption by to the public,47.26454003999999,TJ,CH4,10.0,kg/TJ,472.6454003999999,kg -0b3fa80d-8da8-3cea-a1b4-d85019d847da,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2019,bioetanol combustion consumption by to the public,47.26454003999999,TJ,N2O,0.6,kg/TJ,28.358724023999994,kg -9ca6b31c-5838-32c0-a025-7a0c6579554d,SESCO,II.1.1,Santa Fe,AR-S,annual,2019,bioetanol combustion consumption by to the public,254.22744563999998,TJ,CH4,10.0,kg/TJ,2542.2744564,kg -0cd3805c-c730-301f-8211-158800d121d9,SESCO,II.1.1,Santa Fe,AR-S,annual,2019,bioetanol combustion consumption by to the public,254.22744563999998,TJ,N2O,0.6,kg/TJ,152.536467384,kg -d68e1102-bd45-320e-8588-130804d04d1c,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2019,bioetanol combustion consumption by to the public,44.78231448,TJ,CH4,10.0,kg/TJ,447.82314479999997,kg -7b73ddd2-8681-3fe4-9325-a1157cb1c000,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2019,bioetanol combustion consumption by to the public,44.78231448,TJ,N2O,0.6,kg/TJ,26.869388687999997,kg -46db8857-d6fd-3042-80b2-9e0f8c669d46,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2019,bioetanol combustion consumption by to the public,23.515955639999998,TJ,CH4,10.0,kg/TJ,235.15955639999999,kg -097e1784-3d92-3a79-b111-4cb14770f718,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2019,bioetanol combustion consumption by to the public,23.515955639999998,TJ,N2O,0.6,kg/TJ,14.109573383999999,kg -5021d296-2134-3e75-83ce-bb7b6e22ff3d,SESCO,II.1.1,Tucuman,AR-T,annual,2019,bioetanol combustion consumption by to the public,58.65312383999999,TJ,CH4,10.0,kg/TJ,586.5312383999999,kg -d5afbda6-f552-3cd4-b689-c44caa46f061,SESCO,II.1.1,Tucuman,AR-T,annual,2019,bioetanol combustion consumption by to the public,58.65312383999999,TJ,N2O,0.6,kg/TJ,35.191874303999995,kg -9450679b-ec1e-30a3-a576-33cd977e400b,SESCO,II.1.1,Buenos Aires,AR-B,annual,2019,bioetanol combustion consumption by freight transport,33.894777239999996,TJ,CH4,10.0,kg/TJ,338.94777239999996,kg -4584ce6f-d4a7-34a9-86d1-3d9bc42674c6,SESCO,II.1.1,Buenos Aires,AR-B,annual,2019,bioetanol combustion consumption by freight transport,33.894777239999996,TJ,N2O,0.6,kg/TJ,20.336866343999997,kg -4d44b20b-d25c-337f-b37c-f2ce90033fac,SESCO,II.1.1,Capital Federal,AR-C,annual,2019,bioetanol combustion consumption by freight transport,34.42905647999999,TJ,CH4,10.0,kg/TJ,344.2905647999999,kg -cfd7bc65-644e-3e2f-a614-ad08b80713f1,SESCO,II.1.1,Capital Federal,AR-C,annual,2019,bioetanol combustion consumption by freight transport,34.42905647999999,TJ,N2O,0.6,kg/TJ,20.657433887999996,kg -38a13827-234e-37d5-81af-fe38e0f6c0c0,SESCO,II.1.1,Chaco,AR-H,annual,2019,bioetanol combustion consumption by freight transport,1.3855471199999998,TJ,CH4,10.0,kg/TJ,13.855471199999998,kg -1b92e9f4-889d-3e15-a0df-4b48d841b590,SESCO,II.1.1,Chaco,AR-H,annual,2019,bioetanol combustion consumption by freight transport,1.3855471199999998,TJ,N2O,0.6,kg/TJ,0.8313282719999998,kg -8338f41d-a9b6-34b7-9a36-b2e713b5f048,SESCO,II.1.1,Chubut,AR-U,annual,2019,bioetanol combustion consumption by freight transport,1.29863088,TJ,CH4,10.0,kg/TJ,12.9863088,kg -33345b19-e3c2-3123-8189-ff99f55b7029,SESCO,II.1.1,Chubut,AR-U,annual,2019,bioetanol combustion consumption by freight transport,1.29863088,TJ,N2O,0.6,kg/TJ,0.779178528,kg -183cc0f9-2e6f-3cb0-a9d5-7c8d8fd445a4,SESCO,II.1.1,Corrientes,AR-W,annual,2019,bioetanol combustion consumption by freight transport,0.7796898,TJ,CH4,10.0,kg/TJ,7.796898,kg -f9549f08-219a-3103-a25c-c7762e308a55,SESCO,II.1.1,Corrientes,AR-W,annual,2019,bioetanol combustion consumption by freight transport,0.7796898,TJ,N2O,0.6,kg/TJ,0.46781387999999996,kg -a15e9af9-6df5-37cc-afa5-05e851fbccfe,SESCO,II.1.1,Córdoba,AR-X,annual,2019,bioetanol combustion consumption by freight transport,4.6985896799999995,TJ,CH4,10.0,kg/TJ,46.98589679999999,kg -547e3411-3c59-3cc5-864f-11d6e3bee32c,SESCO,II.1.1,Córdoba,AR-X,annual,2019,bioetanol combustion consumption by freight transport,4.6985896799999995,TJ,N2O,0.6,kg/TJ,2.819153808,kg -7e081ba4-35f0-3e20-a861-a97c89f18c7c,SESCO,II.1.1,Entre Rios,AR-E,annual,2019,bioetanol combustion consumption by freight transport,1.8993754799999998,TJ,CH4,10.0,kg/TJ,18.993754799999998,kg -5b033989-b9c4-31ad-934d-d69070f46d54,SESCO,II.1.1,Entre Rios,AR-E,annual,2019,bioetanol combustion consumption by freight transport,1.8993754799999998,TJ,N2O,0.6,kg/TJ,1.1396252879999997,kg -7682e8ec-5eb4-3a06-8039-7307932ba6e8,SESCO,II.1.1,Formosa,AR-P,annual,2019,bioetanol combustion consumption by freight transport,0.040901759999999995,TJ,CH4,10.0,kg/TJ,0.4090176,kg -fec41077-95c0-31c6-b0ae-c4daa46c23c6,SESCO,II.1.1,Formosa,AR-P,annual,2019,bioetanol combustion consumption by freight transport,0.040901759999999995,TJ,N2O,0.6,kg/TJ,0.024541055999999995,kg -31fb6948-d367-33d6-b14a-c720e6766eb4,SESCO,II.1.1,Jujuy,AR-Y,annual,2019,bioetanol combustion consumption by freight transport,0.14826888,TJ,CH4,10.0,kg/TJ,1.4826888,kg -455aab21-66de-369b-ba1f-65185ee9360b,SESCO,II.1.1,Jujuy,AR-Y,annual,2019,bioetanol combustion consumption by freight transport,0.14826888,TJ,N2O,0.6,kg/TJ,0.08896132799999999,kg -9f0349ea-4f02-39f9-b99b-7c733599c445,SESCO,II.1.1,La Pampa,AR-L,annual,2019,bioetanol combustion consumption by freight transport,0.4959338399999999,TJ,CH4,10.0,kg/TJ,4.959338399999999,kg -1d4c188c-6a82-3b7a-9279-145f26377210,SESCO,II.1.1,La Pampa,AR-L,annual,2019,bioetanol combustion consumption by freight transport,0.4959338399999999,TJ,N2O,0.6,kg/TJ,0.29756030399999994,kg -f206ca4b-b93d-3383-a62a-bbf707f3e9be,SESCO,II.1.1,La Rioja,AR-F,annual,2019,bioetanol combustion consumption by freight transport,0.035789039999999994,TJ,CH4,10.0,kg/TJ,0.35789039999999994,kg -eb6961a8-d0a2-3779-ab7b-4c3591d10d71,SESCO,II.1.1,La Rioja,AR-F,annual,2019,bioetanol combustion consumption by freight transport,0.035789039999999994,TJ,N2O,0.6,kg/TJ,0.021473423999999994,kg -9b2d594c-ff2b-3199-82dc-e2620c550bfd,SESCO,II.1.1,Mendoza,AR-M,annual,2019,bioetanol combustion consumption by freight transport,2.68162164,TJ,CH4,10.0,kg/TJ,26.8162164,kg -4102c4b2-ab87-341f-b8c3-4cfaa757f76b,SESCO,II.1.1,Mendoza,AR-M,annual,2019,bioetanol combustion consumption by freight transport,2.68162164,TJ,N2O,0.6,kg/TJ,1.608972984,kg -a6210275-9cae-3212-b516-8ba2337a38e7,SESCO,II.1.1,Misiones,AR-N,annual,2019,bioetanol combustion consumption by freight transport,0.53939196,TJ,CH4,10.0,kg/TJ,5.3939196,kg -c12de55d-48c0-3195-9115-6f20c5b4c704,SESCO,II.1.1,Misiones,AR-N,annual,2019,bioetanol combustion consumption by freight transport,0.53939196,TJ,N2O,0.6,kg/TJ,0.32363517599999997,kg -0a23e30d-0dbe-3a04-99c8-e48686b1f549,SESCO,II.1.1,Neuquén,AR-Q,annual,2019,bioetanol combustion consumption by freight transport,0.9023950799999999,TJ,CH4,10.0,kg/TJ,9.0239508,kg -0e0c7dba-c1c6-3ee3-846b-eb9e80312d37,SESCO,II.1.1,Neuquén,AR-Q,annual,2019,bioetanol combustion consumption by freight transport,0.9023950799999999,TJ,N2O,0.6,kg/TJ,0.5414370479999999,kg -332512d4-7685-3072-bb8b-14a28de28450,SESCO,II.1.1,Rio Negro,AR-R,annual,2019,bioetanol combustion consumption by freight transport,1.4366743199999998,TJ,CH4,10.0,kg/TJ,14.366743199999998,kg -1f3bb211-86f6-36ac-bdb5-f11ca267cd90,SESCO,II.1.1,Rio Negro,AR-R,annual,2019,bioetanol combustion consumption by freight transport,1.4366743199999998,TJ,N2O,0.6,kg/TJ,0.8620045919999999,kg -178f50f7-73b1-355e-a4af-681e700bee4e,SESCO,II.1.1,Salta,AR-A,annual,2019,bioetanol combustion consumption by freight transport,1.23472188,TJ,CH4,10.0,kg/TJ,12.3472188,kg -af986a0c-1be9-33e3-84a4-081bb777ac2c,SESCO,II.1.1,Salta,AR-A,annual,2019,bioetanol combustion consumption by freight transport,1.23472188,TJ,N2O,0.6,kg/TJ,0.7408331279999999,kg -8926d6ea-eb70-3c36-a7fe-58f2ad34e782,SESCO,II.1.1,San Juan,AR-J,annual,2019,bioetanol combustion consumption by freight transport,0.29909411999999996,TJ,CH4,10.0,kg/TJ,2.9909411999999995,kg -bc4a5c2e-9ad2-3994-8ae7-1d28b3e693e1,SESCO,II.1.1,San Juan,AR-J,annual,2019,bioetanol combustion consumption by freight transport,0.29909411999999996,TJ,N2O,0.6,kg/TJ,0.17945647199999998,kg -7730fbff-1795-3cfc-a0ca-01af23ecb891,SESCO,II.1.1,San Luis,AR-D,annual,2019,bioetanol combustion consumption by freight transport,0.4243557599999999,TJ,CH4,10.0,kg/TJ,4.243557599999999,kg -c8f38a04-34c2-3938-86c4-77e83e908ec6,SESCO,II.1.1,San Luis,AR-D,annual,2019,bioetanol combustion consumption by freight transport,0.4243557599999999,TJ,N2O,0.6,kg/TJ,0.25461345599999996,kg -62aa94a9-e6ea-30fe-b4b5-ead006afcb8a,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2019,bioetanol combustion consumption by freight transport,0.1661634,TJ,CH4,10.0,kg/TJ,1.6616339999999998,kg -d3177fac-cc07-35dd-827f-a2e9dbbc4def,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2019,bioetanol combustion consumption by freight transport,0.1661634,TJ,N2O,0.6,kg/TJ,0.09969803999999999,kg -aff6d228-bf63-3e28-b39c-0cd8ea925125,SESCO,II.1.1,Santa Fe,AR-S,annual,2019,bioetanol combustion consumption by freight transport,4.86730944,TJ,CH4,10.0,kg/TJ,48.6730944,kg -b4de510e-f1e5-3042-88a1-ac84978b6c66,SESCO,II.1.1,Santa Fe,AR-S,annual,2019,bioetanol combustion consumption by freight transport,4.86730944,TJ,N2O,0.6,kg/TJ,2.920385664,kg -56d019bf-ebe3-39e9-9dcd-f0b251c0e609,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2019,bioetanol combustion consumption by freight transport,0.07924716,TJ,CH4,10.0,kg/TJ,0.7924715999999999,kg -b3334e33-61ee-3f14-a53d-c43a62a7c41a,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2019,bioetanol combustion consumption by freight transport,0.07924716,TJ,N2O,0.6,kg/TJ,0.047548296,kg -b7a95960-7d20-343c-a532-8e92801d83b2,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2019,bioetanol combustion consumption by freight transport,0.76946436,TJ,CH4,10.0,kg/TJ,7.694643599999999,kg -e1b23a15-0c48-3bf7-97e8-606aa30d051c,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2019,bioetanol combustion consumption by freight transport,0.76946436,TJ,N2O,0.6,kg/TJ,0.46167861599999993,kg -90ee3244-71f1-38e4-b1e4-bd727e890a22,SESCO,II.1.1,Tucuman,AR-T,annual,2019,bioetanol combustion consumption by freight transport,1.10434752,TJ,CH4,10.0,kg/TJ,11.0434752,kg -54982e0f-cda7-3325-8351-d11a0304d52e,SESCO,II.1.1,Tucuman,AR-T,annual,2019,bioetanol combustion consumption by freight transport,1.10434752,TJ,N2O,0.6,kg/TJ,0.6626085119999999,kg -6abfa20e-2ddf-3b50-8640-5a18876f55ac,SESCO,II.1.1,Buenos Aires,AR-B,annual,2019,bioetanol combustion consumption by freight transport,26.179682759999995,TJ,CH4,10.0,kg/TJ,261.7968276,kg -b32005e4-34e7-370d-93e0-d4b6911957a2,SESCO,II.1.1,Buenos Aires,AR-B,annual,2019,bioetanol combustion consumption by freight transport,26.179682759999995,TJ,N2O,0.6,kg/TJ,15.707809655999997,kg -8eaa5987-130e-3451-aab2-2cbfe8cfffad,SESCO,II.1.1,Capital Federal,AR-C,annual,2019,bioetanol combustion consumption by freight transport,43.3686474,TJ,CH4,10.0,kg/TJ,433.686474,kg -dc4967d4-d234-38bc-96af-cfd1447de0a5,SESCO,II.1.1,Capital Federal,AR-C,annual,2019,bioetanol combustion consumption by freight transport,43.3686474,TJ,N2O,0.6,kg/TJ,26.02118844,kg -386f4e6c-4c0c-3f9c-b50c-a5fbe615b2e4,SESCO,II.1.1,Catamarca,AR-K,annual,2019,bioetanol combustion consumption by freight transport,0.0025563599999999997,TJ,CH4,10.0,kg/TJ,0.0255636,kg -4fb72792-2985-37b8-8172-5be3bf43d8f1,SESCO,II.1.1,Catamarca,AR-K,annual,2019,bioetanol combustion consumption by freight transport,0.0025563599999999997,TJ,N2O,0.6,kg/TJ,0.0015338159999999997,kg -43c35d9d-bdfd-3813-a437-acc1bdee620b,SESCO,II.1.1,Chaco,AR-H,annual,2019,bioetanol combustion consumption by freight transport,0.6774353999999999,TJ,CH4,10.0,kg/TJ,6.774353999999999,kg -bff626c8-82dc-3a04-af23-855e1d754884,SESCO,II.1.1,Chaco,AR-H,annual,2019,bioetanol combustion consumption by freight transport,0.6774353999999999,TJ,N2O,0.6,kg/TJ,0.40646123999999995,kg -26336733-e8a2-39bd-a1f4-7343ba4f35b4,SESCO,II.1.1,Chubut,AR-U,annual,2019,bioetanol combustion consumption by freight transport,0.67999176,TJ,CH4,10.0,kg/TJ,6.7999176,kg -497d2b20-c97f-3cb3-9c23-57dccef61ec0,SESCO,II.1.1,Chubut,AR-U,annual,2019,bioetanol combustion consumption by freight transport,0.67999176,TJ,N2O,0.6,kg/TJ,0.40799505599999997,kg -c7adfd14-8a56-3841-834c-06fe06243f98,SESCO,II.1.1,Corrientes,AR-W,annual,2019,bioetanol combustion consumption by freight transport,0.9177332399999999,TJ,CH4,10.0,kg/TJ,9.1773324,kg -3d530304-0ce1-3d42-af1e-89b3958b29d4,SESCO,II.1.1,Corrientes,AR-W,annual,2019,bioetanol combustion consumption by freight transport,0.9177332399999999,TJ,N2O,0.6,kg/TJ,0.5506399439999999,kg -76f65ae9-67d5-3565-bd21-8283e324b352,SESCO,II.1.1,Córdoba,AR-X,annual,2019,bioetanol combustion consumption by freight transport,3.2133445199999997,TJ,CH4,10.0,kg/TJ,32.1334452,kg -a5cc9e9a-6a7d-37f8-952f-84edf101ec11,SESCO,II.1.1,Córdoba,AR-X,annual,2019,bioetanol combustion consumption by freight transport,3.2133445199999997,TJ,N2O,0.6,kg/TJ,1.9280067119999997,kg -eccbc577-ca28-3073-8aff-9993c72c689f,SESCO,II.1.1,Entre Rios,AR-E,annual,2019,bioetanol combustion consumption by freight transport,2.14222968,TJ,CH4,10.0,kg/TJ,21.422296799999998,kg -f0c05773-5e45-3a07-8275-c958ac00e465,SESCO,II.1.1,Entre Rios,AR-E,annual,2019,bioetanol combustion consumption by freight transport,2.14222968,TJ,N2O,0.6,kg/TJ,1.2853378079999997,kg -cba91117-131a-3af2-8058-9e5506e03bb7,SESCO,II.1.1,Formosa,AR-P,annual,2019,bioetanol combustion consumption by freight transport,0.03323268,TJ,CH4,10.0,kg/TJ,0.33232680000000003,kg -e272e4c4-2d23-37d0-8785-a0728c4501f0,SESCO,II.1.1,Formosa,AR-P,annual,2019,bioetanol combustion consumption by freight transport,0.03323268,TJ,N2O,0.6,kg/TJ,0.019939608,kg -c7b77af9-32dc-3c20-9bef-03f902e0adc9,SESCO,II.1.1,Jujuy,AR-Y,annual,2019,bioetanol combustion consumption by freight transport,0.1405998,TJ,CH4,10.0,kg/TJ,1.4059979999999999,kg -10caac1f-2c39-30d3-8b26-eb7f2bf85b6d,SESCO,II.1.1,Jujuy,AR-Y,annual,2019,bioetanol combustion consumption by freight transport,0.1405998,TJ,N2O,0.6,kg/TJ,0.08435988,kg -4e80b970-e720-3c0b-b0a0-624c3dbe8511,SESCO,II.1.1,La Pampa,AR-L,annual,2019,bioetanol combustion consumption by freight transport,0.38856672,TJ,CH4,10.0,kg/TJ,3.8856672,kg -4cd09797-6d9d-37e5-9ffa-a4759a6a896d,SESCO,II.1.1,La Pampa,AR-L,annual,2019,bioetanol combustion consumption by freight transport,0.38856672,TJ,N2O,0.6,kg/TJ,0.23314003199999997,kg -699a600e-04b2-3699-9636-8dd65714324e,SESCO,II.1.1,La Rioja,AR-F,annual,2019,bioetanol combustion consumption by freight transport,0.23518511999999997,TJ,CH4,10.0,kg/TJ,2.3518511999999996,kg -c71efbce-6bcb-33b8-8c57-415f8156c159,SESCO,II.1.1,La Rioja,AR-F,annual,2019,bioetanol combustion consumption by freight transport,0.23518511999999997,TJ,N2O,0.6,kg/TJ,0.14111107199999998,kg -7cc84589-c903-35c1-ab72-e3059cf2cf72,SESCO,II.1.1,Mendoza,AR-M,annual,2019,bioetanol combustion consumption by freight transport,6.582627,TJ,CH4,10.0,kg/TJ,65.82627,kg -a5adb19e-e4c6-3ef3-9e2e-4cc5b4341ac4,SESCO,II.1.1,Mendoza,AR-M,annual,2019,bioetanol combustion consumption by freight transport,6.582627,TJ,N2O,0.6,kg/TJ,3.9495761999999996,kg -f66b97be-f17e-3b3d-9619-9ad13779c57d,SESCO,II.1.1,Misiones,AR-N,annual,2019,bioetanol combustion consumption by freight transport,0.6876608399999999,TJ,CH4,10.0,kg/TJ,6.876608399999999,kg -33147d48-f8b7-385e-a480-856a7bee6ced,SESCO,II.1.1,Misiones,AR-N,annual,2019,bioetanol combustion consumption by freight transport,0.6876608399999999,TJ,N2O,0.6,kg/TJ,0.412596504,kg -ece221e8-e0c3-3939-b3cd-788c3a8557ef,SESCO,II.1.1,Neuquén,AR-Q,annual,2019,bioetanol combustion consumption by freight transport,2.30583672,TJ,CH4,10.0,kg/TJ,23.0583672,kg -a45e7293-0df3-3c9e-b914-02de82af34cd,SESCO,II.1.1,Neuquén,AR-Q,annual,2019,bioetanol combustion consumption by freight transport,2.30583672,TJ,N2O,0.6,kg/TJ,1.3835020319999998,kg -7108e3fe-fdc6-3146-a897-080b4f71c5d9,SESCO,II.1.1,Rio Negro,AR-R,annual,2019,bioetanol combustion consumption by freight transport,4.47618636,TJ,CH4,10.0,kg/TJ,44.7618636,kg -340bb979-29f9-3329-8904-069a63516cf7,SESCO,II.1.1,Rio Negro,AR-R,annual,2019,bioetanol combustion consumption by freight transport,4.47618636,TJ,N2O,0.6,kg/TJ,2.685711816,kg -cf4d7acf-3640-3c24-98e5-49a4a8270368,SESCO,II.1.1,Salta,AR-A,annual,2019,bioetanol combustion consumption by freight transport,0.93818412,TJ,CH4,10.0,kg/TJ,9.3818412,kg -d466f460-f242-3475-be02-0325c5b4b401,SESCO,II.1.1,Salta,AR-A,annual,2019,bioetanol combustion consumption by freight transport,0.93818412,TJ,N2O,0.6,kg/TJ,0.562910472,kg -25585dd2-d3cb-394f-b494-664d181ac2c2,SESCO,II.1.1,San Juan,AR-J,annual,2019,bioetanol combustion consumption by freight transport,0.1405998,TJ,CH4,10.0,kg/TJ,1.4059979999999999,kg -f4312401-a716-32fd-ae40-d849eef664e5,SESCO,II.1.1,San Juan,AR-J,annual,2019,bioetanol combustion consumption by freight transport,0.1405998,TJ,N2O,0.6,kg/TJ,0.08435988,kg -53e1cf6e-2e2c-350c-b190-49a3caa9a9fd,SESCO,II.1.1,San Luis,AR-D,annual,2019,bioetanol combustion consumption by freight transport,0.36300311999999996,TJ,CH4,10.0,kg/TJ,3.6300311999999995,kg -08a8cb83-6ce4-3954-86b3-94e3ca473aa8,SESCO,II.1.1,San Luis,AR-D,annual,2019,bioetanol combustion consumption by freight transport,0.36300311999999996,TJ,N2O,0.6,kg/TJ,0.21780187199999998,kg -25469cf0-be20-33ff-858f-3a80e341cc5f,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2019,bioetanol combustion consumption by freight transport,0.15849432,TJ,CH4,10.0,kg/TJ,1.5849431999999999,kg -60219756-d236-37f0-bb3e-0bfc4bc8c935,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2019,bioetanol combustion consumption by freight transport,0.15849432,TJ,N2O,0.6,kg/TJ,0.095096592,kg -1417248f-fb45-331c-9708-3756b4166d57,SESCO,II.1.1,Santa Fe,AR-S,annual,2019,bioetanol combustion consumption by freight transport,6.500823479999999,TJ,CH4,10.0,kg/TJ,65.0082348,kg -1caebbe2-2422-3182-9957-75a632b7af64,SESCO,II.1.1,Santa Fe,AR-S,annual,2019,bioetanol combustion consumption by freight transport,6.500823479999999,TJ,N2O,0.6,kg/TJ,3.9004940879999994,kg -397cc93b-8708-3825-9d2e-dbd97de7ca05,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2019,bioetanol combustion consumption by freight transport,0.09202896,TJ,CH4,10.0,kg/TJ,0.9202896,kg -52fd4a7a-f4e3-34e4-82e6-1ad86a0f12bc,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2019,bioetanol combustion consumption by freight transport,0.09202896,TJ,N2O,0.6,kg/TJ,0.055217376000000006,kg -fcbe6316-bc9b-36dd-a042-076d800e69ec,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2019,bioetanol combustion consumption by freight transport,0.25307964,TJ,CH4,10.0,kg/TJ,2.5307964,kg -00e18380-65c7-3ede-8c50-6535eb4dfd9a,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2019,bioetanol combustion consumption by freight transport,0.25307964,TJ,N2O,0.6,kg/TJ,0.15184778399999999,kg -1106fa0e-bc2d-33cd-8345-ba266581ad8f,SESCO,II.1.1,Tucuman,AR-T,annual,2019,bioetanol combustion consumption by freight transport,0.56751192,TJ,CH4,10.0,kg/TJ,5.675119199999999,kg -d3aaab9c-d3ce-350d-9e70-576451eebb23,SESCO,II.1.1,Tucuman,AR-T,annual,2019,bioetanol combustion consumption by freight transport,0.56751192,TJ,N2O,0.6,kg/TJ,0.340507152,kg -4a8df0ef-f99d-36cf-950a-6ed02c2602ad,SESCO,II.5.1,Buenos Aires,AR-B,annual,2020,bioetanol combustion consumption by agriculture machines,0.1640331,TJ,CH4,10.0,kg/TJ,1.6403309999999998,kg -5b755399-69a7-33de-aecf-053ba7039fd6,SESCO,II.5.1,Buenos Aires,AR-B,annual,2020,bioetanol combustion consumption by agriculture machines,0.1640331,TJ,N2O,0.6,kg/TJ,0.09841985999999998,kg -d6390178-9e23-3e02-a8bc-eb14bb5b8382,SESCO,II.5.1,Santa Fe,AR-S,annual,2020,bioetanol combustion consumption by agriculture machines,0.07498656,TJ,CH4,10.0,kg/TJ,0.7498655999999999,kg -763de33e-7a53-3836-90fe-dfee75c3e95a,SESCO,II.5.1,Santa Fe,AR-S,annual,2020,bioetanol combustion consumption by agriculture machines,0.07498656,TJ,N2O,0.6,kg/TJ,0.044991935999999996,kg -db92347a-18fd-37bd-8785-2024dc2ddd4c,SESCO,II.5.1,Buenos Aires,AR-B,annual,2020,bioetanol combustion consumption by agriculture machines,0.03514995,TJ,CH4,10.0,kg/TJ,0.35149949999999996,kg -e508485d-4a89-3e59-854f-97aaf57fc28c,SESCO,II.5.1,Buenos Aires,AR-B,annual,2020,bioetanol combustion consumption by agriculture machines,0.03514995,TJ,N2O,0.6,kg/TJ,0.02108997,kg -391c9b27-ef37-3a9c-bd08-10ac6ce6d601,SESCO,II.1.1,Buenos Aires,AR-B,annual,2020,bioetanol combustion consumption by to the public,39.01410117,TJ,CH4,10.0,kg/TJ,390.14101170000004,kg -e84c602e-95ff-36be-8b0f-8c4f8754935a,SESCO,II.1.1,Buenos Aires,AR-B,annual,2020,bioetanol combustion consumption by to the public,39.01410117,TJ,N2O,0.6,kg/TJ,23.408460702000003,kg -282529c9-0342-3389-bd79-6ccbcdf144b3,SESCO,II.1.1,Capital Federal,AR-C,annual,2020,bioetanol combustion consumption by to the public,2.665069209,TJ,CH4,10.0,kg/TJ,26.65069209,kg -8f3d38aa-b3b9-3996-a21e-ea2257bdb646,SESCO,II.1.1,Capital Federal,AR-C,annual,2020,bioetanol combustion consumption by to the public,2.665069209,TJ,N2O,0.6,kg/TJ,1.5990415253999999,kg -a24a8a3a-e232-3383-9d5c-2cf15726b756,SESCO,II.1.1,Catamarca,AR-K,annual,2020,bioetanol combustion consumption by to the public,4.18284405,TJ,CH4,10.0,kg/TJ,41.8284405,kg -c53596c1-df78-3220-a380-a7b02d51bc11,SESCO,II.1.1,Catamarca,AR-K,annual,2020,bioetanol combustion consumption by to the public,4.18284405,TJ,N2O,0.6,kg/TJ,2.50970643,kg -21585c1e-d922-309f-8c18-6f7f970979cf,SESCO,II.1.1,Chaco,AR-H,annual,2020,bioetanol combustion consumption by to the public,2.66436621,TJ,CH4,10.0,kg/TJ,26.6436621,kg -e53ebe1a-7486-38a4-a408-454b5fe01b95,SESCO,II.1.1,Chaco,AR-H,annual,2020,bioetanol combustion consumption by to the public,2.66436621,TJ,N2O,0.6,kg/TJ,1.598619726,kg -469ddc8f-c0e4-353e-8efb-81f09f0156f8,SESCO,II.1.1,Corrientes,AR-W,annual,2020,bioetanol combustion consumption by to the public,1.12245507,TJ,CH4,10.0,kg/TJ,11.2245507,kg -36daca24-7770-3af0-8cbe-ac82bce761c9,SESCO,II.1.1,Corrientes,AR-W,annual,2020,bioetanol combustion consumption by to the public,1.12245507,TJ,N2O,0.6,kg/TJ,0.673473042,kg -001fc0e0-d12c-37b2-9bec-258ac6e9369b,SESCO,II.1.1,Córdoba,AR-X,annual,2020,bioetanol combustion consumption by to the public,16.674667614,TJ,CH4,10.0,kg/TJ,166.74667614,kg -57fa4434-2ba8-3199-9a6f-faf94f12d6b4,SESCO,II.1.1,Córdoba,AR-X,annual,2020,bioetanol combustion consumption by to the public,16.674667614,TJ,N2O,0.6,kg/TJ,10.0048005684,kg -d0f6a0e1-edaa-3469-9ab3-2a2cff5698b9,SESCO,II.1.1,Entre Rios,AR-E,annual,2020,bioetanol combustion consumption by to the public,5.116895388,TJ,CH4,10.0,kg/TJ,51.16895388,kg -6f881352-4725-3cd1-8db0-c1b304a34d00,SESCO,II.1.1,Entre Rios,AR-E,annual,2020,bioetanol combustion consumption by to the public,5.116895388,TJ,N2O,0.6,kg/TJ,3.0701372327999996,kg -b489ecce-f488-31a9-8048-0776c3c24a53,SESCO,II.1.1,Mendoza,AR-M,annual,2020,bioetanol combustion consumption by to the public,13.420485243,TJ,CH4,10.0,kg/TJ,134.20485243,kg -6784f4fa-5610-39cf-886b-7b328cd8007e,SESCO,II.1.1,Mendoza,AR-M,annual,2020,bioetanol combustion consumption by to the public,13.420485243,TJ,N2O,0.6,kg/TJ,8.0522911458,kg -166e2469-4919-384e-b176-82db3f33b865,SESCO,II.1.1,San Juan,AR-J,annual,2020,bioetanol combustion consumption by to the public,0.7034676659999999,TJ,CH4,10.0,kg/TJ,7.034676659999999,kg -9795346b-6534-36ae-af93-8c2b89984589,SESCO,II.1.1,San Juan,AR-J,annual,2020,bioetanol combustion consumption by to the public,0.7034676659999999,TJ,N2O,0.6,kg/TJ,0.42208059959999994,kg -81f958a5-1145-3dec-9b0c-7bfc9762e741,SESCO,II.1.1,San Luis,AR-D,annual,2020,bioetanol combustion consumption by to the public,3.3045639660000004,TJ,CH4,10.0,kg/TJ,33.045639660000006,kg -df720c0e-00aa-3c20-a736-b05cf54932c1,SESCO,II.1.1,San Luis,AR-D,annual,2020,bioetanol combustion consumption by to the public,3.3045639660000004,TJ,N2O,0.6,kg/TJ,1.9827383796000002,kg -e512adbf-bf3b-3ddf-a8ea-897a22b2b93b,SESCO,II.1.1,Santa Fe,AR-S,annual,2020,bioetanol combustion consumption by to the public,12.821061429,TJ,CH4,10.0,kg/TJ,128.21061429,kg -8b546e2e-2977-3ca6-8413-33a7a352a801,SESCO,II.1.1,Santa Fe,AR-S,annual,2020,bioetanol combustion consumption by to the public,12.821061429,TJ,N2O,0.6,kg/TJ,7.6926368574,kg -2277501d-f96b-3909-9ced-f8cf5ab42eb1,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2020,bioetanol combustion consumption by to the public,3.302454969,TJ,CH4,10.0,kg/TJ,33.02454969,kg -5f0b078c-a00f-3b1e-a3f6-b98dd6f57ea5,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2020,bioetanol combustion consumption by to the public,3.302454969,TJ,N2O,0.6,kg/TJ,1.9814729813999998,kg -9d3e94a6-1a68-34a5-8b3a-9b4d3db1bfc9,SESCO,II.1.1,Tucuman,AR-T,annual,2020,bioetanol combustion consumption by to the public,0.9068687099999999,TJ,CH4,10.0,kg/TJ,9.068687099999998,kg -cb7e739a-ca6d-3f9f-a2d9-8ad2c3ff2abc,SESCO,II.1.1,Tucuman,AR-T,annual,2020,bioetanol combustion consumption by to the public,0.9068687099999999,TJ,N2O,0.6,kg/TJ,0.5441212259999999,kg -09830777-65f0-356a-b250-dc409e90b2e5,SESCO,II.1.1,Buenos Aires,AR-B,annual,2020,bioetanol combustion consumption by to the public,3.4268857919999998,TJ,CH4,10.0,kg/TJ,34.268857919999995,kg -808b58ab-eb55-3f77-8a10-2b1b82914fe8,SESCO,II.1.1,Buenos Aires,AR-B,annual,2020,bioetanol combustion consumption by to the public,3.4268857919999998,TJ,N2O,0.6,kg/TJ,2.0561314752,kg -2b895ee7-6876-347b-bfb2-5dc552a2e7b6,SESCO,II.1.1,Capital Federal,AR-C,annual,2020,bioetanol combustion consumption by to the public,0.42203373299999997,TJ,CH4,10.0,kg/TJ,4.2203373299999996,kg -747035f4-478e-3ad8-a3d1-cf24e02b2aeb,SESCO,II.1.1,Capital Federal,AR-C,annual,2020,bioetanol combustion consumption by to the public,0.42203373299999997,TJ,N2O,0.6,kg/TJ,0.25322023979999997,kg -aab22f16-93c7-3492-a679-a91f53e2bf47,SESCO,II.1.1,Catamarca,AR-K,annual,2020,bioetanol combustion consumption by to the public,0.45226268999999997,TJ,CH4,10.0,kg/TJ,4.5226269,kg -0a6b6617-cd19-33db-9dae-f722a1601cf2,SESCO,II.1.1,Catamarca,AR-K,annual,2020,bioetanol combustion consumption by to the public,0.45226268999999997,TJ,N2O,0.6,kg/TJ,0.27135761399999997,kg -9ae8e544-4eed-3485-a9b0-16ffc80f8c5b,SESCO,II.1.1,Chaco,AR-H,annual,2020,bioetanol combustion consumption by to the public,0.13356981,TJ,CH4,10.0,kg/TJ,1.3356981,kg -f8260cd4-a117-3bb6-8ca4-74e50308b117,SESCO,II.1.1,Chaco,AR-H,annual,2020,bioetanol combustion consumption by to the public,0.13356981,TJ,N2O,0.6,kg/TJ,0.08014188600000001,kg -0f470493-4341-36fb-9486-a6fba9b649bb,SESCO,II.1.1,Corrientes,AR-W,annual,2020,bioetanol combustion consumption by to the public,0.07967322,TJ,CH4,10.0,kg/TJ,0.7967322,kg -80bbf75e-5698-3bee-8d16-0a8a2d52a4ff,SESCO,II.1.1,Corrientes,AR-W,annual,2020,bioetanol combustion consumption by to the public,0.07967322,TJ,N2O,0.6,kg/TJ,0.047803932,kg -0c1b0604-4e21-3be4-9f78-917a7963009a,SESCO,II.1.1,Córdoba,AR-X,annual,2020,bioetanol combustion consumption by to the public,1.963944873,TJ,CH4,10.0,kg/TJ,19.639448729999998,kg -05457a10-63dc-3951-9eb9-7442a1bf17f4,SESCO,II.1.1,Córdoba,AR-X,annual,2020,bioetanol combustion consumption by to the public,1.963944873,TJ,N2O,0.6,kg/TJ,1.1783669237999999,kg -bdeeb84a-6dab-3534-bcc0-73785c829e4a,SESCO,II.1.1,Entre Rios,AR-E,annual,2020,bioetanol combustion consumption by to the public,0.45226268999999997,TJ,CH4,10.0,kg/TJ,4.5226269,kg -4528adb8-c321-3caa-825d-6283348d0545,SESCO,II.1.1,Entre Rios,AR-E,annual,2020,bioetanol combustion consumption by to the public,0.45226268999999997,TJ,N2O,0.6,kg/TJ,0.27135761399999997,kg -05cddf65-7bad-3bb6-9cc8-eebe114b252b,SESCO,II.1.1,Mendoza,AR-M,annual,2020,bioetanol combustion consumption by to the public,2.486976129,TJ,CH4,10.0,kg/TJ,24.86976129,kg -ad0ff806-9b93-3723-a513-2ee5289df1d2,SESCO,II.1.1,Mendoza,AR-M,annual,2020,bioetanol combustion consumption by to the public,2.486976129,TJ,N2O,0.6,kg/TJ,1.4921856774,kg -077c3fe8-3113-3e69-8281-cb9e4365488b,SESCO,II.1.1,San Juan,AR-J,annual,2020,bioetanol combustion consumption by to the public,0.124430823,TJ,CH4,10.0,kg/TJ,1.24430823,kg -a3635898-32ba-31c9-ac02-4ea4c287d471,SESCO,II.1.1,San Juan,AR-J,annual,2020,bioetanol combustion consumption by to the public,0.124430823,TJ,N2O,0.6,kg/TJ,0.07465849379999999,kg -59963a40-1fb8-3ce6-bdec-625da53d22b0,SESCO,II.1.1,San Luis,AR-D,annual,2020,bioetanol combustion consumption by to the public,0.12419648999999999,TJ,CH4,10.0,kg/TJ,1.2419649,kg -76bb87f6-8c33-31f0-978b-e7ab9c751952,SESCO,II.1.1,San Luis,AR-D,annual,2020,bioetanol combustion consumption by to the public,0.12419648999999999,TJ,N2O,0.6,kg/TJ,0.07451789399999999,kg -51a69995-6acb-36f0-8a7d-99d3d0111ace,SESCO,II.1.1,Santa Fe,AR-S,annual,2020,bioetanol combustion consumption by to the public,2.313101043,TJ,CH4,10.0,kg/TJ,23.13101043,kg -43eca946-5d03-3a52-bf9a-63332a2af233,SESCO,II.1.1,Santa Fe,AR-S,annual,2020,bioetanol combustion consumption by to the public,2.313101043,TJ,N2O,0.6,kg/TJ,1.3878606258,kg -9bee29fd-d838-33db-9397-b48bdf498706,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2020,bioetanol combustion consumption by to the public,0.35642049299999995,TJ,CH4,10.0,kg/TJ,3.5642049299999994,kg -66aebfd3-2d72-39e1-b354-814b09f74661,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2020,bioetanol combustion consumption by to the public,0.35642049299999995,TJ,N2O,0.6,kg/TJ,0.21385229579999995,kg -30e880e7-f04c-379f-824a-60e83694e7fd,SESCO,II.1.1,Tucuman,AR-T,annual,2020,bioetanol combustion consumption by to the public,0.03280662,TJ,CH4,10.0,kg/TJ,0.32806620000000003,kg -41971ff5-987d-3627-9188-56a9add38eef,SESCO,II.1.1,Tucuman,AR-T,annual,2020,bioetanol combustion consumption by to the public,0.03280662,TJ,N2O,0.6,kg/TJ,0.019683972,kg -9d2de334-b6b9-3634-9225-94b215a8a116,SESCO,II.5.1,Chaco,AR-H,annual,2020,bioetanol combustion consumption by agriculture machines,1.04512518,TJ,CH4,10.0,kg/TJ,10.451251800000001,kg -60bfa357-ef41-3d47-a164-5f7b189a7ddd,SESCO,II.5.1,Chaco,AR-H,annual,2020,bioetanol combustion consumption by agriculture machines,1.04512518,TJ,N2O,0.6,kg/TJ,0.627075108,kg -79262d5f-b366-35d3-a7d3-c5a649f28ddd,SESCO,II.5.1,Córdoba,AR-X,annual,2020,bioetanol combustion consumption by agriculture machines,0.73346229,TJ,CH4,10.0,kg/TJ,7.334622899999999,kg -f5682bf7-13d8-3d61-8ace-3c376cb22af8,SESCO,II.5.1,Córdoba,AR-X,annual,2020,bioetanol combustion consumption by agriculture machines,0.73346229,TJ,N2O,0.6,kg/TJ,0.44007737399999997,kg -1e2a7450-bc01-3224-95d6-3a92777ca88e,SESCO,II.5.1,Mendoza,AR-M,annual,2020,bioetanol combustion consumption by agriculture machines,0.24370631999999998,TJ,CH4,10.0,kg/TJ,2.4370632,kg -24c0b394-c498-3c2f-ae87-f82542fdfc1c,SESCO,II.5.1,Mendoza,AR-M,annual,2020,bioetanol combustion consumption by agriculture machines,0.24370631999999998,TJ,N2O,0.6,kg/TJ,0.146223792,kg -1d8fbb5b-a79d-3d89-9143-e04a200d18f9,SESCO,II.5.1,Santa Fe,AR-S,annual,2020,bioetanol combustion consumption by agriculture machines,0.11013650999999999,TJ,CH4,10.0,kg/TJ,1.1013651,kg -f40575ea-f52e-3b6b-b4c9-6f495182a670,SESCO,II.5.1,Santa Fe,AR-S,annual,2020,bioetanol combustion consumption by agriculture machines,0.11013650999999999,TJ,N2O,0.6,kg/TJ,0.066081906,kg -ec3e0beb-793c-3d1f-b991-44a9c8a40c36,SESCO,II.5.1,Buenos Aires,AR-B,annual,2020,bioetanol combustion consumption by agriculture machines,0.01405998,TJ,CH4,10.0,kg/TJ,0.1405998,kg -8bc7d7d8-a370-3705-83b5-1b284787c2e6,SESCO,II.5.1,Buenos Aires,AR-B,annual,2020,bioetanol combustion consumption by agriculture machines,0.01405998,TJ,N2O,0.6,kg/TJ,0.008435988,kg -eb1ee81b-606d-34c6-90a9-dc8d361e269a,SESCO,II.5.1,Chaco,AR-H,annual,2020,bioetanol combustion consumption by agriculture machines,0.07498656,TJ,CH4,10.0,kg/TJ,0.7498655999999999,kg -b765ae4a-5659-330b-a1d0-a116a81cf943,SESCO,II.5.1,Chaco,AR-H,annual,2020,bioetanol combustion consumption by agriculture machines,0.07498656,TJ,N2O,0.6,kg/TJ,0.044991935999999996,kg -672fafad-ca74-305e-8e75-c815bc50f186,SESCO,II.5.1,Córdoba,AR-X,annual,2020,bioetanol combustion consumption by agriculture machines,0.058583249999999996,TJ,CH4,10.0,kg/TJ,0.5858325,kg -d7817a33-9500-393d-94a6-e5bf91f3e1e5,SESCO,II.5.1,Córdoba,AR-X,annual,2020,bioetanol combustion consumption by agriculture machines,0.058583249999999996,TJ,N2O,0.6,kg/TJ,0.03514995,kg -01b52399-675a-38e3-b688-1c7341d0523d,SESCO,II.5.1,Mendoza,AR-M,annual,2020,bioetanol combustion consumption by agriculture machines,0.00937332,TJ,CH4,10.0,kg/TJ,0.09373319999999999,kg -3b2e44f3-2af7-3091-8a8b-1f2ecc96aa7e,SESCO,II.5.1,Mendoza,AR-M,annual,2020,bioetanol combustion consumption by agriculture machines,0.00937332,TJ,N2O,0.6,kg/TJ,0.0056239919999999995,kg -4917f1dc-727c-3f89-92e7-69eae06656e5,SESCO,II.1.1,Buenos Aires,AR-B,annual,2020,bioetanol combustion consumption by to the public,57.163192020000004,TJ,CH4,10.0,kg/TJ,571.6319202000001,kg -10fb138a-06e4-390a-8b6c-da0b148ec13f,SESCO,II.1.1,Buenos Aires,AR-B,annual,2020,bioetanol combustion consumption by to the public,57.163192020000004,TJ,N2O,0.6,kg/TJ,34.297915212,kg -733f1ab1-3fd2-328a-8c68-b98c5023da9f,SESCO,II.1.1,Capital Federal,AR-C,annual,2020,bioetanol combustion consumption by to the public,10.62934488,TJ,CH4,10.0,kg/TJ,106.2934488,kg -09e0fe0b-8d78-3da7-86a3-5036e82f138a,SESCO,II.1.1,Capital Federal,AR-C,annual,2020,bioetanol combustion consumption by to the public,10.62934488,TJ,N2O,0.6,kg/TJ,6.377606928,kg -c4ce3461-3a66-3ba1-ae63-fc17766a1408,SESCO,II.1.1,Catamarca,AR-K,annual,2020,bioetanol combustion consumption by to the public,6.195764519999999,TJ,CH4,10.0,kg/TJ,61.95764519999999,kg -cc30bbd1-eafd-3dba-bc4c-985cbfe9fb3e,SESCO,II.1.1,Catamarca,AR-K,annual,2020,bioetanol combustion consumption by to the public,6.195764519999999,TJ,N2O,0.6,kg/TJ,3.717458711999999,kg -2c190f8b-0d6a-3bff-8547-cd93300c6a96,SESCO,II.1.1,Chaco,AR-H,annual,2020,bioetanol combustion consumption by to the public,6.62928057,TJ,CH4,10.0,kg/TJ,66.2928057,kg -10b03301-9244-3e3a-b708-0ff9e2cc69a9,SESCO,II.1.1,Chaco,AR-H,annual,2020,bioetanol combustion consumption by to the public,6.62928057,TJ,N2O,0.6,kg/TJ,3.9775683419999996,kg -0b7ee494-a8ec-3a17-84aa-6b2525444559,SESCO,II.1.1,Corrientes,AR-W,annual,2020,bioetanol combustion consumption by to the public,7.31821959,TJ,CH4,10.0,kg/TJ,73.1821959,kg -9adcd444-de04-38e2-8ce6-9770e2068550,SESCO,II.1.1,Corrientes,AR-W,annual,2020,bioetanol combustion consumption by to the public,7.31821959,TJ,N2O,0.6,kg/TJ,4.3909317539999995,kg -598d1855-30be-3545-a58c-f7f8e99ba6ae,SESCO,II.1.1,Córdoba,AR-X,annual,2020,bioetanol combustion consumption by to the public,26.76551526,TJ,CH4,10.0,kg/TJ,267.6551526,kg -bf0fe247-6cb4-3dd7-8d8d-a7c4808db61c,SESCO,II.1.1,Córdoba,AR-X,annual,2020,bioetanol combustion consumption by to the public,26.76551526,TJ,N2O,0.6,kg/TJ,16.059309156,kg -629c61de-f2c8-36a0-97b9-da263e431ca5,SESCO,II.1.1,Entre Rios,AR-E,annual,2020,bioetanol combustion consumption by to the public,5.7575618099999994,TJ,CH4,10.0,kg/TJ,57.57561809999999,kg -956412b4-5902-37b3-bbb2-925cf516849f,SESCO,II.1.1,Entre Rios,AR-E,annual,2020,bioetanol combustion consumption by to the public,5.7575618099999994,TJ,N2O,0.6,kg/TJ,3.4545370859999998,kg -4c87b61b-99fe-3fb8-8b5d-3325034fe66a,SESCO,II.1.1,Formosa,AR-P,annual,2020,bioetanol combustion consumption by to the public,5.29123914,TJ,CH4,10.0,kg/TJ,52.912391400000004,kg -e039bdf5-0bc3-36f8-bf66-aa7487b0f1df,SESCO,II.1.1,Formosa,AR-P,annual,2020,bioetanol combustion consumption by to the public,5.29123914,TJ,N2O,0.6,kg/TJ,3.174743484,kg -f2ba2f30-22a5-3dc4-8a9e-caf247539dc9,SESCO,II.1.1,La Rioja,AR-F,annual,2020,bioetanol combustion consumption by to the public,2.99477574,TJ,CH4,10.0,kg/TJ,29.9477574,kg -f4f086f1-e9c8-3d73-86a6-4b7245061009,SESCO,II.1.1,La Rioja,AR-F,annual,2020,bioetanol combustion consumption by to the public,2.99477574,TJ,N2O,0.6,kg/TJ,1.796865444,kg -f84b8033-f7ca-3823-8f99-6846c057e7c2,SESCO,II.1.1,Mendoza,AR-M,annual,2020,bioetanol combustion consumption by to the public,21.09699999,TJ,CH4,10.0,kg/TJ,210.9699999,kg -79ec6526-d791-3985-8967-456938d9753e,SESCO,II.1.1,Mendoza,AR-M,annual,2020,bioetanol combustion consumption by to the public,21.09699999,TJ,N2O,0.6,kg/TJ,12.658199994,kg -062b5ccb-51d0-3649-b10b-a2621218562c,SESCO,II.1.1,Misiones,AR-N,annual,2020,bioetanol combustion consumption by to the public,6.24028779,TJ,CH4,10.0,kg/TJ,62.4028779,kg -fd6500fa-eaf5-339a-9ffe-966441146ea3,SESCO,II.1.1,Misiones,AR-N,annual,2020,bioetanol combustion consumption by to the public,6.24028779,TJ,N2O,0.6,kg/TJ,3.7441726739999996,kg -d3912e65-1ea2-326e-8fa6-3121274f6f81,SESCO,II.1.1,Salta,AR-A,annual,2020,bioetanol combustion consumption by to the public,0.01405998,TJ,CH4,10.0,kg/TJ,0.1405998,kg -926a967d-b6de-32b1-ab0e-22dd73accc76,SESCO,II.1.1,Salta,AR-A,annual,2020,bioetanol combustion consumption by to the public,0.01405998,TJ,N2O,0.6,kg/TJ,0.008435988,kg -82ed8e77-40eb-3eed-a19b-05c1ea0068b5,SESCO,II.1.1,San Juan,AR-J,annual,2020,bioetanol combustion consumption by to the public,5.541975449999999,TJ,CH4,10.0,kg/TJ,55.41975449999999,kg -a4f17ca7-ecf7-3a97-b614-9525d29448f2,SESCO,II.1.1,San Juan,AR-J,annual,2020,bioetanol combustion consumption by to the public,5.541975449999999,TJ,N2O,0.6,kg/TJ,3.325185269999999,kg -ab779458-5933-3f05-9b80-e3a88d63b314,SESCO,II.1.1,San Luis,AR-D,annual,2020,bioetanol combustion consumption by to the public,2.6034396299999996,TJ,CH4,10.0,kg/TJ,26.034396299999997,kg -545a83df-8f36-313d-9456-dab88816838c,SESCO,II.1.1,San Luis,AR-D,annual,2020,bioetanol combustion consumption by to the public,2.6034396299999996,TJ,N2O,0.6,kg/TJ,1.5620637779999997,kg -fd05b415-dfb1-3737-aa3f-d5d175ef56e6,SESCO,II.1.1,Santa Fe,AR-S,annual,2020,bioetanol combustion consumption by to the public,18.41623047,TJ,CH4,10.0,kg/TJ,184.1623047,kg -795d6476-f6bc-327d-9b93-1a55aa940676,SESCO,II.1.1,Santa Fe,AR-S,annual,2020,bioetanol combustion consumption by to the public,18.41623047,TJ,N2O,0.6,kg/TJ,11.049738281999998,kg -361e69b5-3601-3947-a5a1-f338de5bf2ef,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2020,bioetanol combustion consumption by to the public,4.99597956,TJ,CH4,10.0,kg/TJ,49.95979560000001,kg -6fead9c3-d00f-3136-8a3c-ea707c0a1b31,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2020,bioetanol combustion consumption by to the public,4.99597956,TJ,N2O,0.6,kg/TJ,2.9975877360000003,kg -124370f4-cf8a-32f6-b6b7-03fcfec0e4a1,SESCO,II.1.1,Tucuman,AR-T,annual,2020,bioetanol combustion consumption by to the public,2.09493702,TJ,CH4,10.0,kg/TJ,20.9493702,kg -b055c878-0c37-36c1-bf1a-66f331b6ebc1,SESCO,II.1.1,Tucuman,AR-T,annual,2020,bioetanol combustion consumption by to the public,2.09493702,TJ,N2O,0.6,kg/TJ,1.2569622120000001,kg -39f36542-0ddc-3e90-8817-22a4b310c301,SESCO,II.1.1,Buenos Aires,AR-B,annual,2020,bioetanol combustion consumption by to the public,6.073911359999999,TJ,CH4,10.0,kg/TJ,60.739113599999996,kg -fe66e79b-37a9-32ec-8ec4-ca927a1c18c2,SESCO,II.1.1,Buenos Aires,AR-B,annual,2020,bioetanol combustion consumption by to the public,6.073911359999999,TJ,N2O,0.6,kg/TJ,3.6443468159999997,kg -79651a76-b591-31ff-87c7-3a1b7f1c27bd,SESCO,II.1.1,Capital Federal,AR-C,annual,2020,bioetanol combustion consumption by to the public,1.43880462,TJ,CH4,10.0,kg/TJ,14.3880462,kg -0ea8d085-44d9-30d7-bd1a-8d2b6b98e5da,SESCO,II.1.1,Capital Federal,AR-C,annual,2020,bioetanol combustion consumption by to the public,1.43880462,TJ,N2O,0.6,kg/TJ,0.8632827719999999,kg -a3aadf89-228d-395c-b2d0-aa04027bad5b,SESCO,II.1.1,Catamarca,AR-K,annual,2020,bioetanol combustion consumption by to the public,0.51787593,TJ,CH4,10.0,kg/TJ,5.178759299999999,kg -15ed988c-6aae-39bd-95cf-3fdc72e1e616,SESCO,II.1.1,Catamarca,AR-K,annual,2020,bioetanol combustion consumption by to the public,0.51787593,TJ,N2O,0.6,kg/TJ,0.31072555799999996,kg -c4b09d6c-ccb0-3b5f-ab0e-37537748427d,SESCO,II.1.1,Chaco,AR-H,annual,2020,bioetanol combustion consumption by to the public,0.31869288,TJ,CH4,10.0,kg/TJ,3.1869288,kg -c4ba33de-80ee-3a60-8491-115f066d99da,SESCO,II.1.1,Chaco,AR-H,annual,2020,bioetanol combustion consumption by to the public,0.31869288,TJ,N2O,0.6,kg/TJ,0.191215728,kg -2338a539-c361-33d0-85cd-441e840d42f6,SESCO,II.1.1,Corrientes,AR-W,annual,2020,bioetanol combustion consumption by to the public,0.3046329,TJ,CH4,10.0,kg/TJ,3.046329,kg -dff352d5-6c39-3ff5-8d94-4a4c9107b33b,SESCO,II.1.1,Corrientes,AR-W,annual,2020,bioetanol combustion consumption by to the public,0.3046329,TJ,N2O,0.6,kg/TJ,0.18277974,kg -9b8748bf-4317-310c-9a09-e9c9e8e5bab2,SESCO,II.1.1,Córdoba,AR-X,annual,2020,bioetanol combustion consumption by to the public,3.5852949,TJ,CH4,10.0,kg/TJ,35.852949,kg -362b88ec-a2c6-3afd-afa5-ac198e9e53b6,SESCO,II.1.1,Córdoba,AR-X,annual,2020,bioetanol combustion consumption by to the public,3.5852949,TJ,N2O,0.6,kg/TJ,2.15117694,kg -e2ffadca-fb33-3646-a330-5ae3efe5273a,SESCO,II.1.1,Entre Rios,AR-E,annual,2020,bioetanol combustion consumption by to the public,0.5131892699999999,TJ,CH4,10.0,kg/TJ,5.131892699999999,kg -267c132f-40e6-3190-aa9e-a7f9c39b3b0f,SESCO,II.1.1,Entre Rios,AR-E,annual,2020,bioetanol combustion consumption by to the public,0.5131892699999999,TJ,N2O,0.6,kg/TJ,0.3079135619999999,kg -3621f02e-8ccf-3b7e-99f1-9adaf158403a,SESCO,II.1.1,Formosa,AR-P,annual,2020,bioetanol combustion consumption by to the public,0.42882939,TJ,CH4,10.0,kg/TJ,4.288293899999999,kg -07cdfa45-fbc2-373c-8b60-a594d1b3e271,SESCO,II.1.1,Formosa,AR-P,annual,2020,bioetanol combustion consumption by to the public,0.42882939,TJ,N2O,0.6,kg/TJ,0.257297634,kg -994bc84c-9629-322d-a877-4ce23cf8c272,SESCO,II.1.1,La Rioja,AR-F,annual,2020,bioetanol combustion consumption by to the public,0.36321615,TJ,CH4,10.0,kg/TJ,3.6321615,kg -11509b5a-b515-3e77-be84-e2ad2b22778c,SESCO,II.1.1,La Rioja,AR-F,annual,2020,bioetanol combustion consumption by to the public,0.36321615,TJ,N2O,0.6,kg/TJ,0.21792969,kg -56a247c1-ddbe-30c8-b9af-9f305259fbb6,SESCO,II.1.1,Mendoza,AR-M,annual,2020,bioetanol combustion consumption by to the public,1.30992147,TJ,CH4,10.0,kg/TJ,13.0992147,kg -5557ede1-2aaf-312c-bc29-400fdbfa6311,SESCO,II.1.1,Mendoza,AR-M,annual,2020,bioetanol combustion consumption by to the public,1.30992147,TJ,N2O,0.6,kg/TJ,0.7859528819999999,kg -e1924f28-68ab-312c-a9c3-bb6ed0aa9d20,SESCO,II.1.1,Misiones,AR-N,annual,2020,bioetanol combustion consumption by to the public,0.33040953,TJ,CH4,10.0,kg/TJ,3.3040953,kg -8d420e16-3a8a-3941-a460-f74f73190629,SESCO,II.1.1,Misiones,AR-N,annual,2020,bioetanol combustion consumption by to the public,0.33040953,TJ,N2O,0.6,kg/TJ,0.198245718,kg -52d23ce2-2c5e-3646-8d53-4d7e4aef97bf,SESCO,II.1.1,San Juan,AR-J,annual,2020,bioetanol combustion consumption by to the public,0.62566911,TJ,CH4,10.0,kg/TJ,6.2566911,kg -994c963a-d307-37db-8dac-a1d5edfff529,SESCO,II.1.1,San Juan,AR-J,annual,2020,bioetanol combustion consumption by to the public,0.62566911,TJ,N2O,0.6,kg/TJ,0.375401466,kg -4cac45d8-a853-3a86-8531-fef25eea6ffc,SESCO,II.1.1,San Luis,AR-D,annual,2020,bioetanol combustion consumption by to the public,0.24136299,TJ,CH4,10.0,kg/TJ,2.4136299,kg -a9e17ea9-2999-3873-8d00-0c3e37f1d01b,SESCO,II.1.1,San Luis,AR-D,annual,2020,bioetanol combustion consumption by to the public,0.24136299,TJ,N2O,0.6,kg/TJ,0.144817794,kg -edb57149-1350-3baa-aa06-d8cf34b2fdf7,SESCO,II.1.1,Santa Fe,AR-S,annual,2020,bioetanol combustion consumption by to the public,2.2683434399999998,TJ,CH4,10.0,kg/TJ,22.683434399999996,kg -418f8a5f-2cf3-3e4b-826e-e9b8c1307d35,SESCO,II.1.1,Santa Fe,AR-S,annual,2020,bioetanol combustion consumption by to the public,2.2683434399999998,TJ,N2O,0.6,kg/TJ,1.361006064,kg -d4c5cd0f-5676-3c4a-a72d-62c6e361e2de,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2020,bioetanol combustion consumption by to the public,0.49444263,TJ,CH4,10.0,kg/TJ,4.9444263,kg -ab361b0f-1d82-3c04-bf60-f7b8f8d58f2f,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2020,bioetanol combustion consumption by to the public,0.49444263,TJ,N2O,0.6,kg/TJ,0.296665578,kg -790f1461-6ace-3b28-abab-e64e3b493dc9,SESCO,II.1.1,Tucuman,AR-T,annual,2020,bioetanol combustion consumption by to the public,0.22261634999999996,TJ,CH4,10.0,kg/TJ,2.2261634999999997,kg -ae14da49-dd17-3790-96bb-c00fdd3a990b,SESCO,II.1.1,Tucuman,AR-T,annual,2020,bioetanol combustion consumption by to the public,0.22261634999999996,TJ,N2O,0.6,kg/TJ,0.13356980999999998,kg -5693d78c-b3bd-359d-b92b-ee8230adc2cb,SESCO,I.3.1,Buenos Aires,AR-B,annual,2020,bioetanol combustion consumption by petrochemical industries,0.0937332,TJ,CH4,10.0,kg/TJ,0.937332,kg -7cd12e4a-123a-3aa4-abbf-37d0ecfcc205,SESCO,I.3.1,Buenos Aires,AR-B,annual,2020,bioetanol combustion consumption by petrochemical industries,0.0937332,TJ,N2O,0.6,kg/TJ,0.05623992,kg -f162beea-1495-3080-9d49-323c67fedd23,SESCO,II.5.1,Santa Fe,AR-S,annual,2020,bioetanol combustion consumption by agriculture machines,2.39488326,TJ,CH4,10.0,kg/TJ,23.9488326,kg -9141945d-14d7-3906-a4a9-0a082d638e5b,SESCO,II.5.1,Santa Fe,AR-S,annual,2020,bioetanol combustion consumption by agriculture machines,2.39488326,TJ,N2O,0.6,kg/TJ,1.436929956,kg -5e76ab60-83bb-30be-892a-855dfffe0f4e,SESCO,II.5.1,Santa Fe,AR-S,annual,2020,bioetanol combustion consumption by agriculture machines,0.45694935,TJ,CH4,10.0,kg/TJ,4.5694935,kg -0c6a6a37-152d-3181-ad23-9c683ef7c97b,SESCO,II.5.1,Santa Fe,AR-S,annual,2020,bioetanol combustion consumption by agriculture machines,0.45694935,TJ,N2O,0.6,kg/TJ,0.27416960999999995,kg -3976cde6-b3b2-3b13-9e26-1faa1c51660c,SESCO,II.1.1,Buenos Aires,AR-B,annual,2020,bioetanol combustion consumption by to the public,614.89447866,TJ,CH4,10.0,kg/TJ,6148.9447866,kg -70b7afaf-88a5-30e9-909c-b5e302cdcd5c,SESCO,II.1.1,Buenos Aires,AR-B,annual,2020,bioetanol combustion consumption by to the public,614.89447866,TJ,N2O,0.6,kg/TJ,368.936687196,kg -04085506-012e-3716-b951-967ddab9e81d,SESCO,II.1.1,Capital Federal,AR-C,annual,2020,bioetanol combustion consumption by to the public,144.20384154,TJ,CH4,10.0,kg/TJ,1442.0384154,kg -131ceefc-4095-39a0-94ca-c09465a09c92,SESCO,II.1.1,Capital Federal,AR-C,annual,2020,bioetanol combustion consumption by to the public,144.20384154,TJ,N2O,0.6,kg/TJ,86.52230492400001,kg -4eb60c8c-c1a8-31aa-b092-5c8ad3c4cae9,SESCO,II.1.1,Catamarca,AR-K,annual,2020,bioetanol combustion consumption by to the public,22.92011073,TJ,CH4,10.0,kg/TJ,229.20110730000002,kg -0207cb5c-a199-3629-892a-056d8bdcc451,SESCO,II.1.1,Catamarca,AR-K,annual,2020,bioetanol combustion consumption by to the public,22.92011073,TJ,N2O,0.6,kg/TJ,13.752066438,kg -2e7a84e1-e09f-393c-a8fb-c73b34be26ee,SESCO,II.1.1,Chaco,AR-H,annual,2020,bioetanol combustion consumption by to the public,34.08373485,TJ,CH4,10.0,kg/TJ,340.83734849999996,kg -790b5a2c-f921-3e25-958f-a7091f9e188d,SESCO,II.1.1,Chaco,AR-H,annual,2020,bioetanol combustion consumption by to the public,34.08373485,TJ,N2O,0.6,kg/TJ,20.450240909999998,kg -16213fc0-676b-364f-b10d-1dc1a570aebc,SESCO,II.1.1,Chubut,AR-U,annual,2020,bioetanol combustion consumption by to the public,88.03422144000001,TJ,CH4,10.0,kg/TJ,880.3422144000001,kg -0ae0fcf4-76e7-3436-9619-86f1ae4cf37e,SESCO,II.1.1,Chubut,AR-U,annual,2020,bioetanol combustion consumption by to the public,88.03422144000001,TJ,N2O,0.6,kg/TJ,52.82053286400001,kg -87017ed7-428c-3c5d-9a74-d9c7101a75f7,SESCO,II.1.1,Corrientes,AR-W,annual,2020,bioetanol combustion consumption by to the public,43.26724512,TJ,CH4,10.0,kg/TJ,432.67245119999995,kg -eb1d0bd1-b5ae-3e90-8c27-53b0c1688a45,SESCO,II.1.1,Corrientes,AR-W,annual,2020,bioetanol combustion consumption by to the public,43.26724512,TJ,N2O,0.6,kg/TJ,25.960347071999998,kg -80eaecab-4322-36b3-99f3-270f3343e819,SESCO,II.1.1,Córdoba,AR-X,annual,2020,bioetanol combustion consumption by to the public,151.17759162,TJ,CH4,10.0,kg/TJ,1511.7759161999998,kg -478ffc0f-8000-312e-a0a6-c9946b571b41,SESCO,II.1.1,Córdoba,AR-X,annual,2020,bioetanol combustion consumption by to the public,151.17759162,TJ,N2O,0.6,kg/TJ,90.70655497199999,kg -318d3b99-0a61-31d5-b77c-44f17cfb12e5,SESCO,II.1.1,Entre Rios,AR-E,annual,2020,bioetanol combustion consumption by to the public,62.079498359999995,TJ,CH4,10.0,kg/TJ,620.7949835999999,kg -ffb30c27-e3af-33ae-a7bf-b32e7f7fac6e,SESCO,II.1.1,Entre Rios,AR-E,annual,2020,bioetanol combustion consumption by to the public,62.079498359999995,TJ,N2O,0.6,kg/TJ,37.247699016,kg -0a95b3d7-2fe0-306c-9130-657bcf1a99a1,SESCO,II.1.1,Formosa,AR-P,annual,2020,bioetanol combustion consumption by to the public,42.42833298,TJ,CH4,10.0,kg/TJ,424.2833298,kg -1f5333ff-e330-3905-afd3-499afc683857,SESCO,II.1.1,Formosa,AR-P,annual,2020,bioetanol combustion consumption by to the public,42.42833298,TJ,N2O,0.6,kg/TJ,25.456999788,kg -fdd88d4e-21db-31b0-9e88-cadd42bb46a3,SESCO,II.1.1,Jujuy,AR-Y,annual,2020,bioetanol combustion consumption by to the public,14.4583461,TJ,CH4,10.0,kg/TJ,144.583461,kg -a0db017f-f6c9-3d40-b484-2470bbe3665e,SESCO,II.1.1,Jujuy,AR-Y,annual,2020,bioetanol combustion consumption by to the public,14.4583461,TJ,N2O,0.6,kg/TJ,8.67500766,kg -2641e243-643c-38f5-a4aa-16dbc49c9296,SESCO,II.1.1,La Pampa,AR-L,annual,2020,bioetanol combustion consumption by to the public,10.88945451,TJ,CH4,10.0,kg/TJ,108.8945451,kg -092f2136-b84e-3db2-bf31-a0f08f473b76,SESCO,II.1.1,La Pampa,AR-L,annual,2020,bioetanol combustion consumption by to the public,10.88945451,TJ,N2O,0.6,kg/TJ,6.533672706,kg -cdf9fa94-1af8-30f2-9529-2d87eb83c776,SESCO,II.1.1,La Rioja,AR-F,annual,2020,bioetanol combustion consumption by to the public,6.56366733,TJ,CH4,10.0,kg/TJ,65.6366733,kg -f367ba58-6eeb-3328-b748-ea2d3fdbe308,SESCO,II.1.1,La Rioja,AR-F,annual,2020,bioetanol combustion consumption by to the public,6.56366733,TJ,N2O,0.6,kg/TJ,3.938200398,kg -a8b8ca29-4a23-3c9e-b1ab-860ed487c63f,SESCO,II.1.1,Mendoza,AR-M,annual,2020,bioetanol combustion consumption by to the public,30.37424346,TJ,CH4,10.0,kg/TJ,303.74243459999997,kg -f99ba421-b4d4-3a92-ad1e-81325e5ea1ec,SESCO,II.1.1,Mendoza,AR-M,annual,2020,bioetanol combustion consumption by to the public,30.37424346,TJ,N2O,0.6,kg/TJ,18.224546076,kg -512b28f7-a9fc-3514-ac12-a5f01bdf7c92,SESCO,II.1.1,Misiones,AR-N,annual,2020,bioetanol combustion consumption by to the public,60.95235663,TJ,CH4,10.0,kg/TJ,609.5235663,kg -4ca37dbd-0c0f-3667-be87-3452d8e0c7b1,SESCO,II.1.1,Misiones,AR-N,annual,2020,bioetanol combustion consumption by to the public,60.95235663,TJ,N2O,0.6,kg/TJ,36.571413977999995,kg -ce409911-87ea-309a-830c-9980ec434191,SESCO,II.1.1,Neuquén,AR-Q,annual,2020,bioetanol combustion consumption by to the public,30.043833929999998,TJ,CH4,10.0,kg/TJ,300.4383393,kg -b8bfa025-dc93-3c49-ac69-a79741a38be5,SESCO,II.1.1,Neuquén,AR-Q,annual,2020,bioetanol combustion consumption by to the public,30.043833929999998,TJ,N2O,0.6,kg/TJ,18.026300357999997,kg -3dbd444e-7fe3-36fc-a289-0c4c9a7c2e7e,SESCO,II.1.1,Rio Negro,AR-R,annual,2020,bioetanol combustion consumption by to the public,41.7581406,TJ,CH4,10.0,kg/TJ,417.58140599999996,kg -d371bd1a-8960-33f9-94ed-947a0285f7ac,SESCO,II.1.1,Rio Negro,AR-R,annual,2020,bioetanol combustion consumption by to the public,41.7581406,TJ,N2O,0.6,kg/TJ,25.05488436,kg -f728d650-99d8-35ce-8836-92027316e217,SESCO,II.1.1,Salta,AR-A,annual,2020,bioetanol combustion consumption by to the public,11.435450399999999,TJ,CH4,10.0,kg/TJ,114.35450399999999,kg -b598071d-afc5-3340-9a7d-8d10d1f9a42d,SESCO,II.1.1,Salta,AR-A,annual,2020,bioetanol combustion consumption by to the public,11.435450399999999,TJ,N2O,0.6,kg/TJ,6.861270239999999,kg -2d279214-48de-3ae9-9d07-a2972cc3a0d5,SESCO,II.1.1,San Juan,AR-J,annual,2020,bioetanol combustion consumption by to the public,13.26559113,TJ,CH4,10.0,kg/TJ,132.6559113,kg -db2edc1d-818e-392a-afa9-fbd3045c20f8,SESCO,II.1.1,San Juan,AR-J,annual,2020,bioetanol combustion consumption by to the public,13.26559113,TJ,N2O,0.6,kg/TJ,7.959354678,kg -5d29b120-07b0-3938-88e3-2c05d2305266,SESCO,II.1.1,San Luis,AR-D,annual,2020,bioetanol combustion consumption by to the public,37.01524068,TJ,CH4,10.0,kg/TJ,370.1524068,kg -3e3e014d-ebd5-3714-b272-de9be1c479df,SESCO,II.1.1,San Luis,AR-D,annual,2020,bioetanol combustion consumption by to the public,37.01524068,TJ,N2O,0.6,kg/TJ,22.209144407999997,kg -8ef6b0de-2723-3839-af91-23da7c243c24,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2020,bioetanol combustion consumption by to the public,53.31310083,TJ,CH4,10.0,kg/TJ,533.1310083000001,kg -bb990d6c-67b0-3c70-bbc4-d2fcf74d5222,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2020,bioetanol combustion consumption by to the public,53.31310083,TJ,N2O,0.6,kg/TJ,31.987860498,kg -6fb2ebb9-4084-3605-8aa5-b06cccdd1a10,SESCO,II.1.1,Santa Fe,AR-S,annual,2020,bioetanol combustion consumption by to the public,164.27914965,TJ,CH4,10.0,kg/TJ,1642.7914965,kg -2c779ebc-5178-37b7-840e-baad5178c748,SESCO,II.1.1,Santa Fe,AR-S,annual,2020,bioetanol combustion consumption by to the public,164.27914965,TJ,N2O,0.6,kg/TJ,98.56748979,kg -9adf7c88-3039-3804-8e0c-974a643a4ce4,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2020,bioetanol combustion consumption by to the public,21.317273009999997,TJ,CH4,10.0,kg/TJ,213.17273009999997,kg -24bc69a7-0712-3106-98b7-469232c14a5b,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2020,bioetanol combustion consumption by to the public,21.317273009999997,TJ,N2O,0.6,kg/TJ,12.790363805999998,kg -0302c399-e2eb-332a-b722-58c17d4cdc3b,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2020,bioetanol combustion consumption by to the public,7.55255259,TJ,CH4,10.0,kg/TJ,75.5255259,kg -c4969474-e47e-328d-b782-b1a0425b1c54,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2020,bioetanol combustion consumption by to the public,7.55255259,TJ,N2O,0.6,kg/TJ,4.531531554,kg -838bb59f-dc96-3296-a273-72e7ee8f8b6d,SESCO,II.1.1,Tucuman,AR-T,annual,2020,bioetanol combustion consumption by to the public,10.477028429999999,TJ,CH4,10.0,kg/TJ,104.77028429999999,kg -40960436-3251-3c1c-9bce-dc27254d290e,SESCO,II.1.1,Tucuman,AR-T,annual,2020,bioetanol combustion consumption by to the public,10.477028429999999,TJ,N2O,0.6,kg/TJ,6.286217057999999,kg -6c1a4d25-7576-350c-ae00-76d58e4ed937,SESCO,II.1.1,Buenos Aires,AR-B,annual,2020,bioetanol combustion consumption by to the public,147.70243323,TJ,CH4,10.0,kg/TJ,1477.0243323,kg -ae8957d5-df89-3a74-ba9b-b70adff790b8,SESCO,II.1.1,Buenos Aires,AR-B,annual,2020,bioetanol combustion consumption by to the public,147.70243323,TJ,N2O,0.6,kg/TJ,88.621459938,kg -25bcad72-3f7f-35c3-81bb-8b6b3d1ac016,SESCO,II.1.1,Capital Federal,AR-C,annual,2020,bioetanol combustion consumption by to the public,60.132191129999995,TJ,CH4,10.0,kg/TJ,601.3219113,kg -6a73d78d-df81-3057-bc53-0be78569d39b,SESCO,II.1.1,Capital Federal,AR-C,annual,2020,bioetanol combustion consumption by to the public,60.132191129999995,TJ,N2O,0.6,kg/TJ,36.079314677999996,kg -72857d19-849c-3dfa-95a7-6abf3b641173,SESCO,II.1.1,Catamarca,AR-K,annual,2020,bioetanol combustion consumption by to the public,6.364484279999999,TJ,CH4,10.0,kg/TJ,63.64484279999999,kg -e3b8ebf9-d74e-33b2-9b47-c7f955c41991,SESCO,II.1.1,Catamarca,AR-K,annual,2020,bioetanol combustion consumption by to the public,6.364484279999999,TJ,N2O,0.6,kg/TJ,3.818690567999999,kg -f9090073-c505-36a3-b009-df472aef0c5d,SESCO,II.1.1,Chaco,AR-H,annual,2020,bioetanol combustion consumption by to the public,4.25783061,TJ,CH4,10.0,kg/TJ,42.5783061,kg -9c8be48d-1c75-3190-9bf8-8ca4e8ec2e83,SESCO,II.1.1,Chaco,AR-H,annual,2020,bioetanol combustion consumption by to the public,4.25783061,TJ,N2O,0.6,kg/TJ,2.5546983659999998,kg -1fd0e286-89ed-30e1-8e43-cae02c1bfecb,SESCO,II.1.1,Chubut,AR-U,annual,2020,bioetanol combustion consumption by to the public,14.22166977,TJ,CH4,10.0,kg/TJ,142.2166977,kg -54a386c5-c41e-3093-bf6f-9bcaf632d0a6,SESCO,II.1.1,Chubut,AR-U,annual,2020,bioetanol combustion consumption by to the public,14.22166977,TJ,N2O,0.6,kg/TJ,8.533001861999999,kg -c98a9985-d1ab-3efc-a8de-30c5ae43840a,SESCO,II.1.1,Corrientes,AR-W,annual,2020,bioetanol combustion consumption by to the public,7.8196922099999995,TJ,CH4,10.0,kg/TJ,78.1969221,kg -33bd5346-f05d-32d6-8c18-b8e9ca80f2f5,SESCO,II.1.1,Corrientes,AR-W,annual,2020,bioetanol combustion consumption by to the public,7.8196922099999995,TJ,N2O,0.6,kg/TJ,4.6918153259999995,kg -704bc61b-1cd1-3994-9ec8-1ef9a2b11774,SESCO,II.1.1,Córdoba,AR-X,annual,2020,bioetanol combustion consumption by to the public,35.63267598,TJ,CH4,10.0,kg/TJ,356.3267598,kg -2e61aba1-150a-3845-ab2e-6725895c5d51,SESCO,II.1.1,Córdoba,AR-X,annual,2020,bioetanol combustion consumption by to the public,35.63267598,TJ,N2O,0.6,kg/TJ,21.379605588,kg -86ffd5d0-fc30-3183-bbc4-d929736e34f9,SESCO,II.1.1,Entre Rios,AR-E,annual,2020,bioetanol combustion consumption by to the public,12.97267488,TJ,CH4,10.0,kg/TJ,129.7267488,kg -2e320363-864d-36af-a38c-05c2141787b6,SESCO,II.1.1,Entre Rios,AR-E,annual,2020,bioetanol combustion consumption by to the public,12.97267488,TJ,N2O,0.6,kg/TJ,7.783604927999999,kg -720f2a18-4aef-3c93-8395-1a1547e3beea,SESCO,II.1.1,Formosa,AR-P,annual,2020,bioetanol combustion consumption by to the public,9.79746273,TJ,CH4,10.0,kg/TJ,97.9746273,kg -eee0b2e5-0b50-3bf9-8490-9ce4d8ff8956,SESCO,II.1.1,Formosa,AR-P,annual,2020,bioetanol combustion consumption by to the public,9.79746273,TJ,N2O,0.6,kg/TJ,5.878477638,kg -9b1a0d48-f7b6-3c48-843a-e9fced8e717e,SESCO,II.1.1,Jujuy,AR-Y,annual,2020,bioetanol combustion consumption by to the public,2.96431245,TJ,CH4,10.0,kg/TJ,29.6431245,kg -101e05e4-20c8-3d82-98ff-bb37995f54b6,SESCO,II.1.1,Jujuy,AR-Y,annual,2020,bioetanol combustion consumption by to the public,2.96431245,TJ,N2O,0.6,kg/TJ,1.77858747,kg -a197e86b-d2dc-33d6-a40e-ce29488e414e,SESCO,II.1.1,La Pampa,AR-L,annual,2020,bioetanol combustion consumption by to the public,3.4376651099999997,TJ,CH4,10.0,kg/TJ,34.3766511,kg -a58048fe-ff61-365b-b8a8-42a98c367db3,SESCO,II.1.1,La Pampa,AR-L,annual,2020,bioetanol combustion consumption by to the public,3.4376651099999997,TJ,N2O,0.6,kg/TJ,2.0625990659999998,kg -eec302bd-6c3b-3bc5-b746-5253ae486e4f,SESCO,II.1.1,La Rioja,AR-F,annual,2020,bioetanol combustion consumption by to the public,1.5911210699999998,TJ,CH4,10.0,kg/TJ,15.911210699999998,kg -fea4fe17-bf14-3132-ac56-a305b481c2e4,SESCO,II.1.1,La Rioja,AR-F,annual,2020,bioetanol combustion consumption by to the public,1.5911210699999998,TJ,N2O,0.6,kg/TJ,0.9546726419999998,kg -4df95e28-abd4-391e-b3ea-df6dc118f8ea,SESCO,II.1.1,Mendoza,AR-M,annual,2020,bioetanol combustion consumption by to the public,10.495775069999999,TJ,CH4,10.0,kg/TJ,104.95775069999999,kg -fc9810d9-db42-3eb5-af9e-bdc2b6d72033,SESCO,II.1.1,Mendoza,AR-M,annual,2020,bioetanol combustion consumption by to the public,10.495775069999999,TJ,N2O,0.6,kg/TJ,6.297465041999999,kg -f7db96ec-1b8c-3b86-8c04-a20297af5455,SESCO,II.1.1,Misiones,AR-N,annual,2020,bioetanol combustion consumption by to the public,8.42661468,TJ,CH4,10.0,kg/TJ,84.2661468,kg -1a8330ce-6ba6-3c9c-91b0-f9023dc6bce5,SESCO,II.1.1,Misiones,AR-N,annual,2020,bioetanol combustion consumption by to the public,8.42661468,TJ,N2O,0.6,kg/TJ,5.055968808,kg -9924007c-5aeb-3f03-ba09-436fc51b337b,SESCO,II.1.1,Neuquén,AR-Q,annual,2020,bioetanol combustion consumption by to the public,10.36923525,TJ,CH4,10.0,kg/TJ,103.6923525,kg -50917afc-b39c-3679-a142-75bb3201230c,SESCO,II.1.1,Neuquén,AR-Q,annual,2020,bioetanol combustion consumption by to the public,10.36923525,TJ,N2O,0.6,kg/TJ,6.221541149999999,kg -e1636740-dc9f-31e2-8bae-9f1110115e12,SESCO,II.1.1,Rio Negro,AR-R,annual,2020,bioetanol combustion consumption by to the public,13.211694539999998,TJ,CH4,10.0,kg/TJ,132.1169454,kg -23c1210a-9a8c-34ae-9490-c4b3ce5082ec,SESCO,II.1.1,Rio Negro,AR-R,annual,2020,bioetanol combustion consumption by to the public,13.211694539999998,TJ,N2O,0.6,kg/TJ,7.927016723999999,kg -bc679e6c-8a13-3b6a-8c5e-6a91c0915e2d,SESCO,II.1.1,Salta,AR-A,annual,2020,bioetanol combustion consumption by to the public,1.51144785,TJ,CH4,10.0,kg/TJ,15.114478499999999,kg -6c46ac67-581d-399c-9264-ffeb86533ef8,SESCO,II.1.1,Salta,AR-A,annual,2020,bioetanol combustion consumption by to the public,1.51144785,TJ,N2O,0.6,kg/TJ,0.9068687099999999,kg -d3d9db79-1315-3c83-96e7-c024dbd6529e,SESCO,II.1.1,San Juan,AR-J,annual,2020,bioetanol combustion consumption by to the public,2.38082328,TJ,CH4,10.0,kg/TJ,23.8082328,kg -50664247-03b4-3f9b-b47a-b09a88b95fe5,SESCO,II.1.1,San Juan,AR-J,annual,2020,bioetanol combustion consumption by to the public,2.38082328,TJ,N2O,0.6,kg/TJ,1.428493968,kg -b7d01d27-d297-3216-a6a8-19c25eb5a563,SESCO,II.1.1,San Luis,AR-D,annual,2020,bioetanol combustion consumption by to the public,7.1002899,TJ,CH4,10.0,kg/TJ,71.002899,kg -a53500cd-a2a7-3000-8cdf-5850d77c47c4,SESCO,II.1.1,San Luis,AR-D,annual,2020,bioetanol combustion consumption by to the public,7.1002899,TJ,N2O,0.6,kg/TJ,4.26017394,kg -4336fc72-ef10-381f-afb2-1e9533bb29f7,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2020,bioetanol combustion consumption by to the public,5.865354989999999,TJ,CH4,10.0,kg/TJ,58.653549899999994,kg -e7d238bf-32aa-30cd-911e-78e81571f8aa,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2020,bioetanol combustion consumption by to the public,5.865354989999999,TJ,N2O,0.6,kg/TJ,3.5192129939999997,kg -f43e6337-c7cf-3632-89a5-7d22a4e6e623,SESCO,II.1.1,Santa Fe,AR-S,annual,2020,bioetanol combustion consumption by to the public,42.47051292,TJ,CH4,10.0,kg/TJ,424.7051292,kg -bef843d8-cf3b-3913-b582-1857de3d3219,SESCO,II.1.1,Santa Fe,AR-S,annual,2020,bioetanol combustion consumption by to the public,42.47051292,TJ,N2O,0.6,kg/TJ,25.482307751999997,kg -b1e2cca1-4638-39ee-ac06-42f71be44a6b,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2020,bioetanol combustion consumption by to the public,5.61930534,TJ,CH4,10.0,kg/TJ,56.193053400000004,kg -de29a9aa-7362-3bdb-ab9c-ae5561f24cbc,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2020,bioetanol combustion consumption by to the public,5.61930534,TJ,N2O,0.6,kg/TJ,3.3715832040000002,kg -192fdc3c-d06a-30ff-b0aa-36833b4cc0be,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2020,bioetanol combustion consumption by to the public,1.7715574799999998,TJ,CH4,10.0,kg/TJ,17.7155748,kg -e5cbc7c9-89f0-326e-8eeb-8364c76eef7e,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2020,bioetanol combustion consumption by to the public,1.7715574799999998,TJ,N2O,0.6,kg/TJ,1.0629344879999998,kg -4b210be9-8029-305e-afa7-f765d14d9330,SESCO,II.1.1,Tucuman,AR-T,annual,2020,bioetanol combustion consumption by to the public,1.78561746,TJ,CH4,10.0,kg/TJ,17.856174600000003,kg -c80b1449-4b28-3f40-9b98-9812e39d8737,SESCO,II.1.1,Tucuman,AR-T,annual,2020,bioetanol combustion consumption by to the public,1.78561746,TJ,N2O,0.6,kg/TJ,1.071370476,kg -12ffd935-5c02-30db-813b-7e39ddfe366b,SESCO,II.1.1,Buenos Aires,AR-B,annual,2020,bioetanol combustion consumption by freight transport,0.76626891,TJ,CH4,10.0,kg/TJ,7.6626891,kg -14ad5b85-5383-3a57-ae41-5d358605fe6f,SESCO,II.1.1,Buenos Aires,AR-B,annual,2020,bioetanol combustion consumption by freight transport,0.76626891,TJ,N2O,0.6,kg/TJ,0.45976134599999996,kg -fd39abb8-2f21-3901-9614-eef100c2e162,SESCO,II.1.1,Capital Federal,AR-C,annual,2020,bioetanol combustion consumption by freight transport,0.26713962,TJ,CH4,10.0,kg/TJ,2.6713962,kg -290a77e1-32d8-3a86-a5d4-1761f40185b6,SESCO,II.1.1,Capital Federal,AR-C,annual,2020,bioetanol combustion consumption by freight transport,0.26713962,TJ,N2O,0.6,kg/TJ,0.16028377200000002,kg -f3847240-3796-3e7f-afd5-62e6647c92f7,SESCO,II.1.1,Córdoba,AR-X,annual,2020,bioetanol combustion consumption by freight transport,0.09138987,TJ,CH4,10.0,kg/TJ,0.9138987,kg -4f321fbb-c204-36f0-b8b4-b490ce78dd86,SESCO,II.1.1,Córdoba,AR-X,annual,2020,bioetanol combustion consumption by freight transport,0.09138987,TJ,N2O,0.6,kg/TJ,0.054833922,kg -967e742e-0e1e-3982-a176-e9a87d7f47f5,SESCO,II.1.1,Entre Rios,AR-E,annual,2020,bioetanol combustion consumption by freight transport,0.02577663,TJ,CH4,10.0,kg/TJ,0.2577663,kg -d0bc4e0f-8c23-38be-952a-6d6c13258d08,SESCO,II.1.1,Entre Rios,AR-E,annual,2020,bioetanol combustion consumption by freight transport,0.02577663,TJ,N2O,0.6,kg/TJ,0.015465977999999998,kg -f586ee49-9857-3ff2-ab26-fe973c67adbb,SESCO,II.1.1,Jujuy,AR-Y,annual,2020,bioetanol combustion consumption by freight transport,0.00234333,TJ,CH4,10.0,kg/TJ,0.023433299999999997,kg -c115d993-5482-38ce-b0fb-189b01351472,SESCO,II.1.1,Jujuy,AR-Y,annual,2020,bioetanol combustion consumption by freight transport,0.00234333,TJ,N2O,0.6,kg/TJ,0.0014059979999999999,kg -a93e9cdb-ad4d-3e45-9e39-2d76b293bc68,SESCO,II.1.1,Mendoza,AR-M,annual,2020,bioetanol combustion consumption by freight transport,0.01171665,TJ,CH4,10.0,kg/TJ,0.1171665,kg -4765f33e-6a09-3b9f-83c1-7deec93b64fb,SESCO,II.1.1,Mendoza,AR-M,annual,2020,bioetanol combustion consumption by freight transport,0.01171665,TJ,N2O,0.6,kg/TJ,0.00702999,kg -e038ca7f-ee10-3103-9c00-21bb8978d6c5,SESCO,II.1.1,Santa Fe,AR-S,annual,2020,bioetanol combustion consumption by freight transport,0.09607653,TJ,CH4,10.0,kg/TJ,0.9607652999999999,kg -02d098c8-56bb-38b5-b5d4-f511d410d91b,SESCO,II.1.1,Santa Fe,AR-S,annual,2020,bioetanol combustion consumption by freight transport,0.09607653,TJ,N2O,0.6,kg/TJ,0.05764591799999999,kg -80abfafb-6fb1-398d-9795-83bb1a4e4c91,SESCO,II.1.1,Buenos Aires,AR-B,annual,2020,bioetanol combustion consumption by freight transport,0.44757603,TJ,CH4,10.0,kg/TJ,4.4757603,kg -a199cb69-800e-35bb-90fc-297fe76440ef,SESCO,II.1.1,Buenos Aires,AR-B,annual,2020,bioetanol combustion consumption by freight transport,0.44757603,TJ,N2O,0.6,kg/TJ,0.268545618,kg -54bb91c4-2254-33e1-9357-2359c59331bd,SESCO,II.1.1,Capital Federal,AR-C,annual,2020,bioetanol combustion consumption by freight transport,0.19215306,TJ,CH4,10.0,kg/TJ,1.9215305999999999,kg -4e80c872-b296-351b-a499-9a6d1ed332d4,SESCO,II.1.1,Capital Federal,AR-C,annual,2020,bioetanol combustion consumption by freight transport,0.19215306,TJ,N2O,0.6,kg/TJ,0.11529183599999998,kg -2245d918-727b-301c-a5c6-d4c721e4ce97,SESCO,II.1.1,Corrientes,AR-W,annual,2020,bioetanol combustion consumption by freight transport,0.01874664,TJ,CH4,10.0,kg/TJ,0.18746639999999998,kg -ecca72d7-2bb3-353e-8433-c5291c62dcbc,SESCO,II.1.1,Corrientes,AR-W,annual,2020,bioetanol combustion consumption by freight transport,0.01874664,TJ,N2O,0.6,kg/TJ,0.011247983999999999,kg -c8438087-f63f-3da4-9a53-12af454b87f3,SESCO,II.1.1,Córdoba,AR-X,annual,2020,bioetanol combustion consumption by freight transport,0.053896589999999994,TJ,CH4,10.0,kg/TJ,0.5389659,kg -21c1cdbf-632e-3c6e-aba1-ddbdf81c5ec5,SESCO,II.1.1,Córdoba,AR-X,annual,2020,bioetanol combustion consumption by freight transport,0.053896589999999994,TJ,N2O,0.6,kg/TJ,0.032337953999999995,kg -1030f5fc-6dff-3d89-b642-63dfb0314600,SESCO,II.1.1,Entre Rios,AR-E,annual,2020,bioetanol combustion consumption by freight transport,0.060926579999999994,TJ,CH4,10.0,kg/TJ,0.6092658,kg -7f177305-704f-32a0-a6ee-4899579bdbcd,SESCO,II.1.1,Entre Rios,AR-E,annual,2020,bioetanol combustion consumption by freight transport,0.060926579999999994,TJ,N2O,0.6,kg/TJ,0.036555948,kg -45f46ae3-32fa-3722-a880-e29f330ce493,SESCO,II.1.1,Santa Fe,AR-S,annual,2020,bioetanol combustion consumption by freight transport,0.09841986,TJ,CH4,10.0,kg/TJ,0.9841986,kg -7020a7aa-47ae-329f-a3e1-be7218cf3d16,SESCO,II.1.1,Santa Fe,AR-S,annual,2020,bioetanol combustion consumption by freight transport,0.09841986,TJ,N2O,0.6,kg/TJ,0.059051915999999996,kg -e75c0557-0693-35e8-810d-56d15cbd80ac,SESCO,II.1.1,Santa Fe,AR-S,annual,2020,bioetanol combustion consumption by public passenger transport,0.00702999,TJ,CH4,10.0,kg/TJ,0.0702999,kg -0c6bcdfe-cddf-3fc0-b9d4-9101488bd81a,SESCO,II.1.1,Santa Fe,AR-S,annual,2020,bioetanol combustion consumption by public passenger transport,0.00702999,TJ,N2O,0.6,kg/TJ,0.004217994,kg -c11900d3-ff56-34f8-88bd-6131c370a848,SESCO,II.1.1,Córdoba,AR-X,annual,2020,bioetanol combustion consumption by public passenger transport,0.00234333,TJ,CH4,10.0,kg/TJ,0.023433299999999997,kg -d865e7ed-a05b-30d2-90c1-c6544fea4874,SESCO,II.1.1,Córdoba,AR-X,annual,2020,bioetanol combustion consumption by public passenger transport,0.00234333,TJ,N2O,0.6,kg/TJ,0.0014059979999999999,kg -245d6e79-30f8-3029-9079-b854e8d0ffd8,SESCO,II.1.1,Catamarca,AR-K,annual,2020,bioetanol combustion consumption by to the public,11.43310707,TJ,CH4,10.0,kg/TJ,114.3310707,kg -57fb184b-1003-3140-b0c9-af624d56aebf,SESCO,II.1.1,Catamarca,AR-K,annual,2020,bioetanol combustion consumption by to the public,11.43310707,TJ,N2O,0.6,kg/TJ,6.859864242,kg -9a2d22ce-93ad-3bcd-8967-231552fa361a,SESCO,II.1.1,Chaco,AR-H,annual,2020,bioetanol combustion consumption by to the public,7.8501555,TJ,CH4,10.0,kg/TJ,78.501555,kg -f5996c4c-99d9-3eb7-bb1c-19a24afb53c1,SESCO,II.1.1,Chaco,AR-H,annual,2020,bioetanol combustion consumption by to the public,7.8501555,TJ,N2O,0.6,kg/TJ,4.7100933,kg -5aa764c4-72eb-3a8b-bb61-d5b4c22b9a5f,SESCO,II.1.1,Jujuy,AR-Y,annual,2020,bioetanol combustion consumption by to the public,26.578048860000003,TJ,CH4,10.0,kg/TJ,265.7804886,kg -70556c39-c20b-3906-96e3-52964993fcf7,SESCO,II.1.1,Jujuy,AR-Y,annual,2020,bioetanol combustion consumption by to the public,26.578048860000003,TJ,N2O,0.6,kg/TJ,15.946829316,kg -59b5a289-b4d3-3779-a1f2-d69b582de7de,SESCO,II.1.1,La Rioja,AR-F,annual,2020,bioetanol combustion consumption by to the public,25.4719971,TJ,CH4,10.0,kg/TJ,254.719971,kg -1f92fb0f-9442-3461-9701-8ddec6cba18f,SESCO,II.1.1,La Rioja,AR-F,annual,2020,bioetanol combustion consumption by to the public,25.4719971,TJ,N2O,0.6,kg/TJ,15.283198259999999,kg -c265bf87-a98c-3128-93b6-44337e2f2e05,SESCO,II.1.1,Salta,AR-A,annual,2020,bioetanol combustion consumption by to the public,61.82088846119999,TJ,CH4,10.0,kg/TJ,618.2088846119999,kg -0dfea182-359d-384e-bebf-6a14043dcbd8,SESCO,II.1.1,Salta,AR-A,annual,2020,bioetanol combustion consumption by to the public,61.82088846119999,TJ,N2O,0.6,kg/TJ,37.092533076719995,kg -b21b398b-9f13-39fa-b73a-97c410f47efe,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2020,bioetanol combustion consumption by to the public,19.40980239,TJ,CH4,10.0,kg/TJ,194.0980239,kg -34b58e0c-6330-39e3-86ee-3715543d3e3f,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2020,bioetanol combustion consumption by to the public,19.40980239,TJ,N2O,0.6,kg/TJ,11.645881434,kg -5559cfba-9001-325c-820e-386676bde8b1,SESCO,II.1.1,Tucuman,AR-T,annual,2020,bioetanol combustion consumption by to the public,128.63942024669998,TJ,CH4,10.0,kg/TJ,1286.3942024669998,kg -56d9300e-a093-3f4b-96d4-918a10e7e8e6,SESCO,II.1.1,Tucuman,AR-T,annual,2020,bioetanol combustion consumption by to the public,128.63942024669998,TJ,N2O,0.6,kg/TJ,77.18365214801999,kg -500db6aa-c24d-3ec7-804a-d237aabb5609,SESCO,II.1.1,Catamarca,AR-K,annual,2020,bioetanol combustion consumption by to the public,1.07558847,TJ,CH4,10.0,kg/TJ,10.7558847,kg -79051753-cf28-3971-9014-5835b0ae9cfb,SESCO,II.1.1,Catamarca,AR-K,annual,2020,bioetanol combustion consumption by to the public,1.07558847,TJ,N2O,0.6,kg/TJ,0.645353082,kg -13ef7acd-244e-3186-b02c-60a8d279d6d9,SESCO,II.1.1,Chaco,AR-H,annual,2020,bioetanol combustion consumption by to the public,0.22730301,TJ,CH4,10.0,kg/TJ,2.2730301,kg -26149fff-a6dd-39cf-9c21-7e6bb6ac41a6,SESCO,II.1.1,Chaco,AR-H,annual,2020,bioetanol combustion consumption by to the public,0.22730301,TJ,N2O,0.6,kg/TJ,0.136381806,kg -87736d0b-da67-3790-811a-abeb74efb52d,SESCO,II.1.1,Jujuy,AR-Y,annual,2020,bioetanol combustion consumption by to the public,1.33804143,TJ,CH4,10.0,kg/TJ,13.380414300000002,kg -cf0d0231-aba7-3a65-85f2-d786b0f01119,SESCO,II.1.1,Jujuy,AR-Y,annual,2020,bioetanol combustion consumption by to the public,1.33804143,TJ,N2O,0.6,kg/TJ,0.802824858,kg -b92d1d74-8015-3018-86e2-2e761763efee,SESCO,II.1.1,La Rioja,AR-F,annual,2020,bioetanol combustion consumption by to the public,2.11602699,TJ,CH4,10.0,kg/TJ,21.1602699,kg -91a46fb0-5e20-3d52-b747-13b8bd1f11c5,SESCO,II.1.1,La Rioja,AR-F,annual,2020,bioetanol combustion consumption by to the public,2.11602699,TJ,N2O,0.6,kg/TJ,1.269616194,kg -c074816f-c30b-3d36-a167-3721243f33c3,SESCO,II.1.1,Salta,AR-A,annual,2020,bioetanol combustion consumption by to the public,3.1757745492,TJ,CH4,10.0,kg/TJ,31.757745491999998,kg -804c4d26-65bf-3440-a29d-aa42736a4d2a,SESCO,II.1.1,Salta,AR-A,annual,2020,bioetanol combustion consumption by to the public,3.1757745492,TJ,N2O,0.6,kg/TJ,1.9054647295199998,kg -7c9118ad-8d33-3c7a-b83d-a21cec425105,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2020,bioetanol combustion consumption by to the public,1.8816939899999998,TJ,CH4,10.0,kg/TJ,18.816939899999998,kg -084e79aa-5784-3823-96af-344d77901e2c,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2020,bioetanol combustion consumption by to the public,1.8816939899999998,TJ,N2O,0.6,kg/TJ,1.1290163939999998,kg -6ee18e9b-a4d9-328c-8aae-3f63b4cdc103,SESCO,II.1.1,Tucuman,AR-T,annual,2020,bioetanol combustion consumption by to the public,9.432348482699998,TJ,CH4,10.0,kg/TJ,94.32348482699999,kg -8d46f42a-d70c-3b67-bde5-d31f5de6479b,SESCO,II.1.1,Tucuman,AR-T,annual,2020,bioetanol combustion consumption by to the public,9.432348482699998,TJ,N2O,0.6,kg/TJ,5.659409089619999,kg -73743b3e-3c57-3acd-852e-14ec9f4a144d,SESCO,I.3.1,Jujuy,AR-Y,annual,2020,bioetanol combustion consumption by petrochemical industries,0.23667633,TJ,CH4,10.0,kg/TJ,2.3667632999999997,kg -a50d58cc-a151-3980-9868-d21d4c8de089,SESCO,I.3.1,Jujuy,AR-Y,annual,2020,bioetanol combustion consumption by petrochemical industries,0.23667633,TJ,N2O,0.6,kg/TJ,0.142005798,kg -c54e6f89-14c4-3c63-b324-f30cdebe88a4,SESCO,II.5.1,Buenos Aires,AR-B,annual,2020,bioetanol combustion consumption by agriculture machines,0.08670321,TJ,CH4,10.0,kg/TJ,0.8670321000000001,kg -5f4f2cb0-f2d0-3ed1-8971-2881154c85f0,SESCO,II.5.1,Buenos Aires,AR-B,annual,2020,bioetanol combustion consumption by agriculture machines,0.08670321,TJ,N2O,0.6,kg/TJ,0.052021926,kg -95cd5687-7cce-37ff-8f5d-0e1f89ba3f54,SESCO,II.5.1,Santa Fe,AR-S,annual,2020,bioetanol combustion consumption by agriculture machines,0.06326991,TJ,CH4,10.0,kg/TJ,0.6326991,kg -a3689f92-8ee5-3af1-bb12-55c6643b5848,SESCO,II.5.1,Santa Fe,AR-S,annual,2020,bioetanol combustion consumption by agriculture machines,0.06326991,TJ,N2O,0.6,kg/TJ,0.037961945999999996,kg -db92347a-18fd-37bd-8785-2024dc2ddd4c,SESCO,II.5.1,Buenos Aires,AR-B,annual,2020,bioetanol combustion consumption by agriculture machines,0.03514995,TJ,CH4,10.0,kg/TJ,0.35149949999999996,kg -e508485d-4a89-3e59-854f-97aaf57fc28c,SESCO,II.5.1,Buenos Aires,AR-B,annual,2020,bioetanol combustion consumption by agriculture machines,0.03514995,TJ,N2O,0.6,kg/TJ,0.02108997,kg -378dfa49-318b-3538-9e4e-df7ac32eed4b,SESCO,II.5.1,Santa Fe,AR-S,annual,2020,bioetanol combustion consumption by agriculture machines,0.01405998,TJ,CH4,10.0,kg/TJ,0.1405998,kg -64f51b7f-51d1-3b33-aa6c-404960221609,SESCO,II.5.1,Santa Fe,AR-S,annual,2020,bioetanol combustion consumption by agriculture machines,0.01405998,TJ,N2O,0.6,kg/TJ,0.008435988,kg -70258824-8abf-3054-a3f1-3e371b3894cf,SESCO,II.1.1,Buenos Aires,AR-B,annual,2020,bioetanol combustion consumption by to the public,1018.3174847999999,TJ,CH4,10.0,kg/TJ,10183.174847999999,kg -94da50b1-6156-37ef-8a48-b9013a71b60c,SESCO,II.1.1,Buenos Aires,AR-B,annual,2020,bioetanol combustion consumption by to the public,1018.3174847999999,TJ,N2O,0.6,kg/TJ,610.9904908799999,kg -7807b925-eb24-3de5-8f99-0748016f0ded,SESCO,II.1.1,Capital Federal,AR-C,annual,2020,bioetanol combustion consumption by to the public,250.92143307,TJ,CH4,10.0,kg/TJ,2509.2143307,kg -f1533ad7-9196-36af-8ac5-5c9f6368ce08,SESCO,II.1.1,Capital Federal,AR-C,annual,2020,bioetanol combustion consumption by to the public,250.92143307,TJ,N2O,0.6,kg/TJ,150.552859842,kg -7b884923-260a-3f25-9ea9-510411f923d6,SESCO,II.1.1,Catamarca,AR-K,annual,2020,bioetanol combustion consumption by to the public,3.05101566,TJ,CH4,10.0,kg/TJ,30.510156600000002,kg -b9f1024c-5a10-3c1c-a062-ed0f60d4c79b,SESCO,II.1.1,Catamarca,AR-K,annual,2020,bioetanol combustion consumption by to the public,3.05101566,TJ,N2O,0.6,kg/TJ,1.8306093959999998,kg -de360f71-6e74-3cb0-b35f-2cea3b711535,SESCO,II.1.1,Chaco,AR-H,annual,2020,bioetanol combustion consumption by to the public,61.87797197999999,TJ,CH4,10.0,kg/TJ,618.7797198,kg -223c778b-58e6-3511-8530-0bed83e43657,SESCO,II.1.1,Chaco,AR-H,annual,2020,bioetanol combustion consumption by to the public,61.87797197999999,TJ,N2O,0.6,kg/TJ,37.12678318799999,kg -62a7ae8b-7c8c-3a69-8e85-cd2aca781086,SESCO,II.1.1,Corrientes,AR-W,annual,2020,bioetanol combustion consumption by to the public,63.42456978,TJ,CH4,10.0,kg/TJ,634.2456978,kg -5c24b738-4da7-346c-85a1-7fd25ee52cf4,SESCO,II.1.1,Corrientes,AR-W,annual,2020,bioetanol combustion consumption by to the public,63.42456978,TJ,N2O,0.6,kg/TJ,38.054741868,kg -f653e283-6db1-35a5-b8bf-626f7e24f898,SESCO,II.1.1,Córdoba,AR-X,annual,2020,bioetanol combustion consumption by to the public,233.25272487,TJ,CH4,10.0,kg/TJ,2332.5272487,kg -74b0506b-908e-3f84-a2cd-e8401bf55029,SESCO,II.1.1,Córdoba,AR-X,annual,2020,bioetanol combustion consumption by to the public,233.25272487,TJ,N2O,0.6,kg/TJ,139.951634922,kg -1864cadc-9fa4-3625-93b2-b3d7f9a24d9c,SESCO,II.1.1,Entre Rios,AR-E,annual,2020,bioetanol combustion consumption by to the public,67.35433419,TJ,CH4,10.0,kg/TJ,673.5433419000001,kg -2ca0a51d-a4f5-3667-acf3-e47be90a1ab0,SESCO,II.1.1,Entre Rios,AR-E,annual,2020,bioetanol combustion consumption by to the public,67.35433419,TJ,N2O,0.6,kg/TJ,40.412600514,kg -27471847-3a18-310b-9f1c-80d593647e75,SESCO,II.1.1,Formosa,AR-P,annual,2020,bioetanol combustion consumption by to the public,23.018530589999997,TJ,CH4,10.0,kg/TJ,230.18530589999997,kg -2a9f3126-f0c6-3e60-9b33-b6bf462070db,SESCO,II.1.1,Formosa,AR-P,annual,2020,bioetanol combustion consumption by to the public,23.018530589999997,TJ,N2O,0.6,kg/TJ,13.811118353999998,kg -2bb2e60a-1afb-3a7d-ab11-10c79e439fe1,SESCO,II.1.1,Jujuy,AR-Y,annual,2020,bioetanol combustion consumption by to the public,11.56199022,TJ,CH4,10.0,kg/TJ,115.6199022,kg -bc65f950-f0ab-333f-94b7-1aaba45aa32e,SESCO,II.1.1,Jujuy,AR-Y,annual,2020,bioetanol combustion consumption by to the public,11.56199022,TJ,N2O,0.6,kg/TJ,6.937194132,kg -fdcbd3e0-da5e-3db7-bbed-a690385529ec,SESCO,II.1.1,La Pampa,AR-L,annual,2020,bioetanol combustion consumption by to the public,17.68276818,TJ,CH4,10.0,kg/TJ,176.8276818,kg -6998e51f-e84d-331f-b1d6-d35f0f352d19,SESCO,II.1.1,La Pampa,AR-L,annual,2020,bioetanol combustion consumption by to the public,17.68276818,TJ,N2O,0.6,kg/TJ,10.609660908,kg -8888f225-1fdb-32eb-9307-b0ddce7f10de,SESCO,II.1.1,La Rioja,AR-F,annual,2020,bioetanol combustion consumption by to the public,15.04183527,TJ,CH4,10.0,kg/TJ,150.4183527,kg -5b8ec672-2d6f-3822-8a76-b83187242867,SESCO,II.1.1,La Rioja,AR-F,annual,2020,bioetanol combustion consumption by to the public,15.04183527,TJ,N2O,0.6,kg/TJ,9.025101162,kg -047fbceb-4207-3895-b167-23f3fae5773f,SESCO,II.1.1,Mendoza,AR-M,annual,2020,bioetanol combustion consumption by to the public,86.82271983,TJ,CH4,10.0,kg/TJ,868.2271982999999,kg -63893e8d-ea63-3b9d-90a6-587fdad0de79,SESCO,II.1.1,Mendoza,AR-M,annual,2020,bioetanol combustion consumption by to the public,86.82271983,TJ,N2O,0.6,kg/TJ,52.093631898,kg -356b5f9c-f028-30b7-9427-b869eae23a0d,SESCO,II.1.1,Misiones,AR-N,annual,2020,bioetanol combustion consumption by to the public,75.89577204,TJ,CH4,10.0,kg/TJ,758.9577204,kg -456fe648-4f14-35df-857c-51ca7153d5fe,SESCO,II.1.1,Misiones,AR-N,annual,2020,bioetanol combustion consumption by to the public,75.89577204,TJ,N2O,0.6,kg/TJ,45.537463224,kg -3a45a24a-575a-31fa-a055-1a6d20c3337b,SESCO,II.1.1,Neuquén,AR-Q,annual,2020,bioetanol combustion consumption by to the public,27.470857589999998,TJ,CH4,10.0,kg/TJ,274.70857589999997,kg -93c33a1e-9b2a-35e6-a7d4-8feb31b4ec76,SESCO,II.1.1,Neuquén,AR-Q,annual,2020,bioetanol combustion consumption by to the public,27.470857589999998,TJ,N2O,0.6,kg/TJ,16.482514553999998,kg -dc099754-acd4-3fa4-901b-5ca22eb12b52,SESCO,II.1.1,Rio Negro,AR-R,annual,2020,bioetanol combustion consumption by to the public,15.72140097,TJ,CH4,10.0,kg/TJ,157.2140097,kg -bee96b74-b07d-39d2-919e-b0e82f423c60,SESCO,II.1.1,Rio Negro,AR-R,annual,2020,bioetanol combustion consumption by to the public,15.72140097,TJ,N2O,0.6,kg/TJ,9.432840581999999,kg -22ae675b-e195-336a-8eb0-c29756b95465,SESCO,II.1.1,Salta,AR-A,annual,2020,bioetanol combustion consumption by to the public,16.63998633,TJ,CH4,10.0,kg/TJ,166.3998633,kg -0d2094de-603b-3df2-abbc-c8d09fdf463b,SESCO,II.1.1,Salta,AR-A,annual,2020,bioetanol combustion consumption by to the public,16.63998633,TJ,N2O,0.6,kg/TJ,9.983991798,kg -d6ff72a3-ac7d-3d4e-a27e-30e9ecdbd940,SESCO,II.1.1,San Juan,AR-J,annual,2020,bioetanol combustion consumption by to the public,18.287347320000002,TJ,CH4,10.0,kg/TJ,182.87347320000003,kg -945b25ce-a1eb-3593-89fc-2c2fd7cbfd8e,SESCO,II.1.1,San Juan,AR-J,annual,2020,bioetanol combustion consumption by to the public,18.287347320000002,TJ,N2O,0.6,kg/TJ,10.972408392,kg -e654d1fc-1c85-3cac-9589-318300616cba,SESCO,II.1.1,San Luis,AR-D,annual,2020,bioetanol combustion consumption by to the public,14.63643918,TJ,CH4,10.0,kg/TJ,146.3643918,kg -af0ea0b2-b12c-3b62-9a31-375e46c53d32,SESCO,II.1.1,San Luis,AR-D,annual,2020,bioetanol combustion consumption by to the public,14.63643918,TJ,N2O,0.6,kg/TJ,8.781863507999999,kg -e567896c-b1e3-3c38-9d36-39f851bae9d8,SESCO,II.1.1,Santa Fe,AR-S,annual,2020,bioetanol combustion consumption by to the public,197.01781308,TJ,CH4,10.0,kg/TJ,1970.1781308,kg -1126c523-e74a-367f-b735-6d1218c0de51,SESCO,II.1.1,Santa Fe,AR-S,annual,2020,bioetanol combustion consumption by to the public,197.01781308,TJ,N2O,0.6,kg/TJ,118.21068784799999,kg -1064bf8b-00eb-3677-812e-aec2deda972e,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2020,bioetanol combustion consumption by to the public,30.465633329999996,TJ,CH4,10.0,kg/TJ,304.6563333,kg -d4ebf346-cd5a-3ba6-bb25-1c135942d742,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2020,bioetanol combustion consumption by to the public,30.465633329999996,TJ,N2O,0.6,kg/TJ,18.279379997999996,kg -d2d132b3-b873-3eba-ba33-4f6430ab79cf,SESCO,II.1.1,Tucuman,AR-T,annual,2020,bioetanol combustion consumption by to the public,65.17503728999999,TJ,CH4,10.0,kg/TJ,651.7503728999999,kg -0e59765c-1e16-3015-a9d6-2337f9f6cf7f,SESCO,II.1.1,Tucuman,AR-T,annual,2020,bioetanol combustion consumption by to the public,65.17503728999999,TJ,N2O,0.6,kg/TJ,39.105022373999994,kg -c7fdd9f1-e6c1-3900-94f2-9bca5d6b6970,SESCO,II.1.1,Buenos Aires,AR-B,annual,2020,bioetanol combustion consumption by to the public,444.26724803999997,TJ,CH4,10.0,kg/TJ,4442.6724804,kg -b09cdd30-4e7c-37bd-b27a-b86ffcde4c20,SESCO,II.1.1,Buenos Aires,AR-B,annual,2020,bioetanol combustion consumption by to the public,444.26724803999997,TJ,N2O,0.6,kg/TJ,266.56034882399996,kg -8623c033-5722-3166-b3c6-a36504b658fa,SESCO,II.1.1,Capital Federal,AR-C,annual,2020,bioetanol combustion consumption by to the public,170.06717475,TJ,CH4,10.0,kg/TJ,1700.6717475,kg -2817994d-bd53-3720-9c5c-ba5182469f58,SESCO,II.1.1,Capital Federal,AR-C,annual,2020,bioetanol combustion consumption by to the public,170.06717475,TJ,N2O,0.6,kg/TJ,102.04030485,kg -35444429-d6d6-3255-8ac7-c7c2b74db6af,SESCO,II.1.1,Catamarca,AR-K,annual,2020,bioetanol combustion consumption by to the public,2.10431034,TJ,CH4,10.0,kg/TJ,21.0431034,kg -cc4e3a5b-7a0b-3e1a-bfbd-4128df39085e,SESCO,II.1.1,Catamarca,AR-K,annual,2020,bioetanol combustion consumption by to the public,2.10431034,TJ,N2O,0.6,kg/TJ,1.262586204,kg -1ccc9209-8fe9-3af8-8e6e-d7610f33294b,SESCO,II.1.1,Chaco,AR-H,annual,2020,bioetanol combustion consumption by to the public,16.69388292,TJ,CH4,10.0,kg/TJ,166.9388292,kg -00e9d3c3-55c4-3956-ae74-2e0a9068cfe6,SESCO,II.1.1,Chaco,AR-H,annual,2020,bioetanol combustion consumption by to the public,16.69388292,TJ,N2O,0.6,kg/TJ,10.016329751999999,kg -dc61b43d-61d1-315c-b0fd-085242cbed9a,SESCO,II.1.1,Corrientes,AR-W,annual,2020,bioetanol combustion consumption by to the public,19.16375274,TJ,CH4,10.0,kg/TJ,191.6375274,kg -37541c56-f133-394f-8815-59f8b5b2cfdf,SESCO,II.1.1,Corrientes,AR-W,annual,2020,bioetanol combustion consumption by to the public,19.16375274,TJ,N2O,0.6,kg/TJ,11.498251644,kg -4743a1f3-ae6e-328e-a2af-eb8029caaa65,SESCO,II.1.1,Córdoba,AR-X,annual,2020,bioetanol combustion consumption by to the public,98.96116923,TJ,CH4,10.0,kg/TJ,989.6116923,kg -8a5e4787-9c1c-3e12-9926-8d7d48c19b2f,SESCO,II.1.1,Córdoba,AR-X,annual,2020,bioetanol combustion consumption by to the public,98.96116923,TJ,N2O,0.6,kg/TJ,59.37670153799999,kg -889fec4a-ed9a-3010-ad8a-ec1bc48e5548,SESCO,II.1.1,Entre Rios,AR-E,annual,2020,bioetanol combustion consumption by to the public,21.729699089999997,TJ,CH4,10.0,kg/TJ,217.29699089999997,kg -05053bae-87b4-352a-aa8e-697f86eeea1c,SESCO,II.1.1,Entre Rios,AR-E,annual,2020,bioetanol combustion consumption by to the public,21.729699089999997,TJ,N2O,0.6,kg/TJ,13.037819453999997,kg -99e1476e-27bf-318a-9532-5df3763419f6,SESCO,II.1.1,Formosa,AR-P,annual,2020,bioetanol combustion consumption by to the public,8.2485216,TJ,CH4,10.0,kg/TJ,82.48521600000001,kg -6321edc2-bc27-36c9-9350-41ea5350cdc6,SESCO,II.1.1,Formosa,AR-P,annual,2020,bioetanol combustion consumption by to the public,8.2485216,TJ,N2O,0.6,kg/TJ,4.94911296,kg -ff351f9d-5141-31db-a2c6-bba62b816c39,SESCO,II.1.1,Jujuy,AR-Y,annual,2020,bioetanol combustion consumption by to the public,2.3691066299999997,TJ,CH4,10.0,kg/TJ,23.691066299999996,kg -7412132f-8667-3cd1-a18a-fa887ba550fb,SESCO,II.1.1,Jujuy,AR-Y,annual,2020,bioetanol combustion consumption by to the public,2.3691066299999997,TJ,N2O,0.6,kg/TJ,1.4214639779999998,kg -5da9e1e9-f2ea-3e1a-b276-9cd342985c96,SESCO,II.1.1,La Pampa,AR-L,annual,2020,bioetanol combustion consumption by to the public,8.588304449999999,TJ,CH4,10.0,kg/TJ,85.88304449999998,kg -c7f89f78-a2e0-31f3-b586-3a83d384253d,SESCO,II.1.1,La Pampa,AR-L,annual,2020,bioetanol combustion consumption by to the public,8.588304449999999,TJ,N2O,0.6,kg/TJ,5.152982669999999,kg -1c58d940-9fd6-38e5-b04e-bfdfc4bbfe14,SESCO,II.1.1,La Rioja,AR-F,annual,2020,bioetanol combustion consumption by to the public,3.8454045299999997,TJ,CH4,10.0,kg/TJ,38.4540453,kg -d5c56374-b1b7-39a5-81f5-4aef7bfdfa40,SESCO,II.1.1,La Rioja,AR-F,annual,2020,bioetanol combustion consumption by to the public,3.8454045299999997,TJ,N2O,0.6,kg/TJ,2.307242718,kg -be5c8c06-8dd0-3794-b5af-1c70c9e77aba,SESCO,II.1.1,Mendoza,AR-M,annual,2020,bioetanol combustion consumption by to the public,39.13126767,TJ,CH4,10.0,kg/TJ,391.3126767,kg -70aca0ce-f592-3a72-bc03-bd4821912f7c,SESCO,II.1.1,Mendoza,AR-M,annual,2020,bioetanol combustion consumption by to the public,39.13126767,TJ,N2O,0.6,kg/TJ,23.478760601999998,kg -1e11045a-3571-375b-a646-62603b17a466,SESCO,II.1.1,Misiones,AR-N,annual,2020,bioetanol combustion consumption by to the public,16.396280009999998,TJ,CH4,10.0,kg/TJ,163.96280009999998,kg -75f949f1-315b-309c-9a23-4cecbd4aea89,SESCO,II.1.1,Misiones,AR-N,annual,2020,bioetanol combustion consumption by to the public,16.396280009999998,TJ,N2O,0.6,kg/TJ,9.837768006,kg -56e26eab-f039-3f4b-b295-a1cbb936d084,SESCO,II.1.1,Neuquén,AR-Q,annual,2020,bioetanol combustion consumption by to the public,17.68511151,TJ,CH4,10.0,kg/TJ,176.8511151,kg -47d1e877-2568-3336-b89f-5974c0902263,SESCO,II.1.1,Neuquén,AR-Q,annual,2020,bioetanol combustion consumption by to the public,17.68511151,TJ,N2O,0.6,kg/TJ,10.611066906,kg -66b46e2a-3524-3205-a793-a0c33ebe2a98,SESCO,II.1.1,Rio Negro,AR-R,annual,2020,bioetanol combustion consumption by to the public,7.5689559,TJ,CH4,10.0,kg/TJ,75.689559,kg -adb0d073-c01c-33d5-8db1-78bdaa84767d,SESCO,II.1.1,Rio Negro,AR-R,annual,2020,bioetanol combustion consumption by to the public,7.5689559,TJ,N2O,0.6,kg/TJ,4.5413735399999995,kg -84f6f52f-e3ea-38bd-91f8-f7476e726362,SESCO,II.1.1,Salta,AR-A,annual,2020,bioetanol combustion consumption by to the public,7.786885590000001,TJ,CH4,10.0,kg/TJ,77.8688559,kg -6c5e5cb6-01a7-3193-b604-acdcdef5db18,SESCO,II.1.1,Salta,AR-A,annual,2020,bioetanol combustion consumption by to the public,7.786885590000001,TJ,N2O,0.6,kg/TJ,4.672131354,kg -36e983e3-a9f4-38ae-8a2d-65eee41383e7,SESCO,II.1.1,San Juan,AR-J,annual,2020,bioetanol combustion consumption by to the public,6.02938809,TJ,CH4,10.0,kg/TJ,60.293880900000005,kg -a5c1c69e-fbcf-3cb2-b15e-949934848be8,SESCO,II.1.1,San Juan,AR-J,annual,2020,bioetanol combustion consumption by to the public,6.02938809,TJ,N2O,0.6,kg/TJ,3.617632854,kg -dd745051-a7d9-38b1-9228-f89d312a7547,SESCO,II.1.1,San Luis,AR-D,annual,2020,bioetanol combustion consumption by to the public,6.08562801,TJ,CH4,10.0,kg/TJ,60.8562801,kg -68dbf45c-12d6-3e80-8b43-6e2d638dfaec,SESCO,II.1.1,San Luis,AR-D,annual,2020,bioetanol combustion consumption by to the public,6.08562801,TJ,N2O,0.6,kg/TJ,3.6513768059999996,kg -c9c8804e-7037-3260-a5e3-4cc1023dd2a3,SESCO,II.1.1,Santa Fe,AR-S,annual,2020,bioetanol combustion consumption by to the public,87.81629174999999,TJ,CH4,10.0,kg/TJ,878.1629174999999,kg -d4223679-c357-3682-be75-5409f4f7aaf6,SESCO,II.1.1,Santa Fe,AR-S,annual,2020,bioetanol combustion consumption by to the public,87.81629174999999,TJ,N2O,0.6,kg/TJ,52.689775049999994,kg -746c9c1a-4a62-3708-b55a-524c4b9a706d,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2020,bioetanol combustion consumption by to the public,8.65391769,TJ,CH4,10.0,kg/TJ,86.5391769,kg -7012d23e-3bd9-387e-a0e3-d6d4d2e81b98,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2020,bioetanol combustion consumption by to the public,8.65391769,TJ,N2O,0.6,kg/TJ,5.1923506139999995,kg -8c386ce5-6746-3dc8-b153-239693a307c0,SESCO,II.1.1,Tucuman,AR-T,annual,2020,bioetanol combustion consumption by to the public,17.26565544,TJ,CH4,10.0,kg/TJ,172.6565544,kg -ebd8055a-b25f-34ec-a552-c42447d47b79,SESCO,II.1.1,Tucuman,AR-T,annual,2020,bioetanol combustion consumption by to the public,17.26565544,TJ,N2O,0.6,kg/TJ,10.359393264,kg -24809d53-85c0-3cc1-b08c-f3954e3e6551,SESCO,I.3.1,Buenos Aires,AR-B,annual,2020,bioetanol combustion consumption by petrochemical industries,1.35678807,TJ,CH4,10.0,kg/TJ,13.5678807,kg -4bd0a8ad-cf2f-3808-9d47-b8003d6f7675,SESCO,I.3.1,Buenos Aires,AR-B,annual,2020,bioetanol combustion consumption by petrochemical industries,1.35678807,TJ,N2O,0.6,kg/TJ,0.814072842,kg -f889bf01-4d8d-3b58-981e-c5a166b39a31,SESCO,I.3.1,Misiones,AR-N,annual,2020,bioetanol combustion consumption by petrochemical industries,0.01171665,TJ,CH4,10.0,kg/TJ,0.1171665,kg -b31fe8b7-7f5e-3341-a558-ae1d93c71c76,SESCO,I.3.1,Misiones,AR-N,annual,2020,bioetanol combustion consumption by petrochemical industries,0.01171665,TJ,N2O,0.6,kg/TJ,0.00702999,kg -528f50b4-03e9-3615-ac37-24d62a5a3abe,SESCO,I.3.1,Tucuman,AR-T,annual,2020,bioetanol combustion consumption by petrochemical industries,0.01405998,TJ,CH4,10.0,kg/TJ,0.1405998,kg -99c37eda-5b82-33d0-b8a0-2e458ab88916,SESCO,I.3.1,Tucuman,AR-T,annual,2020,bioetanol combustion consumption by petrochemical industries,0.01405998,TJ,N2O,0.6,kg/TJ,0.008435988,kg -66f26087-e9ed-34fd-9d06-1e063c5847a1,SESCO,I.3.1,Buenos Aires,AR-B,annual,2020,bioetanol combustion consumption by petrochemical industries,0.41008275,TJ,CH4,10.0,kg/TJ,4.1008275,kg -9ec52e86-9424-3c5c-a738-fa5aab3c3642,SESCO,I.3.1,Buenos Aires,AR-B,annual,2020,bioetanol combustion consumption by petrochemical industries,0.41008275,TJ,N2O,0.6,kg/TJ,0.24604964999999998,kg -531c23d4-9401-3c66-8295-7550e75a18a8,SESCO,I.3.1,San Juan,AR-J,annual,2020,bioetanol combustion consumption by petrochemical industries,0.06561324,TJ,CH4,10.0,kg/TJ,0.6561324000000001,kg -547a061c-71af-3641-aec5-c5d945fa258d,SESCO,I.3.1,San Juan,AR-J,annual,2020,bioetanol combustion consumption by petrochemical industries,0.06561324,TJ,N2O,0.6,kg/TJ,0.039367944,kg -c594a5da-7c08-3cff-902e-0865b3e1f7f3,SESCO,I.3.1,Tucuman,AR-T,annual,2020,bioetanol combustion consumption by petrochemical industries,0.01640331,TJ,CH4,10.0,kg/TJ,0.16403310000000002,kg -a7adce2c-446a-3803-90e5-b76a27fbe4f0,SESCO,I.3.1,Tucuman,AR-T,annual,2020,bioetanol combustion consumption by petrochemical industries,0.01640331,TJ,N2O,0.6,kg/TJ,0.009841986,kg -8f9f9782-812f-3706-97bb-36d89cbae81c,SESCO,II.5.1,Buenos Aires,AR-B,annual,2020,bioetanol combustion consumption by agriculture machines,8.48415046149,TJ,CH4,10.0,kg/TJ,84.8415046149,kg -69506542-def8-3c26-bc79-896a4896266b,SESCO,II.5.1,Buenos Aires,AR-B,annual,2020,bioetanol combustion consumption by agriculture machines,8.48415046149,TJ,N2O,0.6,kg/TJ,5.090490276893999,kg -83e6810e-041b-3843-96fa-7159d54f3e68,SESCO,II.5.1,Capital Federal,AR-C,annual,2020,bioetanol combustion consumption by agriculture machines,1.7816408289899999,TJ,CH4,10.0,kg/TJ,17.8164082899,kg -9dcabc3a-d929-32c0-82d7-a2560b614a97,SESCO,II.5.1,Capital Federal,AR-C,annual,2020,bioetanol combustion consumption by agriculture machines,1.7816408289899999,TJ,N2O,0.6,kg/TJ,1.068984497394,kg -6e483344-3331-36eb-b15f-6dae50308f3c,SESCO,II.5.1,Chaco,AR-H,annual,2020,bioetanol combustion consumption by agriculture machines,0.20836187361,TJ,CH4,10.0,kg/TJ,2.0836187361,kg -98513731-b664-313d-ab70-5df859e278af,SESCO,II.5.1,Chaco,AR-H,annual,2020,bioetanol combustion consumption by agriculture machines,0.20836187361,TJ,N2O,0.6,kg/TJ,0.125017124166,kg -18a2b8e4-7948-326a-9df1-174463d51af5,SESCO,II.5.1,Córdoba,AR-X,annual,2020,bioetanol combustion consumption by agriculture machines,0.6695878008599999,TJ,CH4,10.0,kg/TJ,6.695878008599999,kg -ab3145fc-c44e-39c9-85f1-8c1937d434e0,SESCO,II.5.1,Córdoba,AR-X,annual,2020,bioetanol combustion consumption by agriculture machines,0.6695878008599999,TJ,N2O,0.6,kg/TJ,0.40175268051599994,kg -9ab38bdc-e571-3970-812a-0752c0b17c44,SESCO,II.5.1,Rio Negro,AR-R,annual,2020,bioetanol combustion consumption by agriculture machines,1.0575073357199998,TJ,CH4,10.0,kg/TJ,10.575073357199997,kg -4edc3485-36df-3609-a0fc-0a94b1e49244,SESCO,II.5.1,Rio Negro,AR-R,annual,2020,bioetanol combustion consumption by agriculture machines,1.0575073357199998,TJ,N2O,0.6,kg/TJ,0.6345044014319998,kg -f4dbcb02-d93c-3ee8-926a-485d4e7d568a,SESCO,II.5.1,Santa Fe,AR-S,annual,2020,bioetanol combustion consumption by agriculture machines,13.322559825629998,TJ,CH4,10.0,kg/TJ,133.22559825629997,kg -5bcaed44-b344-3e56-8b64-6ed62141841d,SESCO,II.5.1,Santa Fe,AR-S,annual,2020,bioetanol combustion consumption by agriculture machines,13.322559825629998,TJ,N2O,0.6,kg/TJ,7.993535895377999,kg -2c5204a0-d096-36f2-b69d-78288f68c583,SESCO,II.5.1,Buenos Aires,AR-B,annual,2020,bioetanol combustion consumption by agriculture machines,0.7301207014200001,TJ,CH4,10.0,kg/TJ,7.301207014200001,kg -d6ba0601-d2f9-342e-a829-6913ee8fd444,SESCO,II.5.1,Buenos Aires,AR-B,annual,2020,bioetanol combustion consumption by agriculture machines,0.7301207014200001,TJ,N2O,0.6,kg/TJ,0.43807242085200004,kg -0c94e594-dd2d-337a-8942-682705b2ed7c,SESCO,II.5.1,Capital Federal,AR-C,annual,2020,bioetanol combustion consumption by agriculture machines,0.5023021588200001,TJ,CH4,10.0,kg/TJ,5.023021588200001,kg -bbf978e6-66b3-3bde-a6ae-31899f93ed69,SESCO,II.5.1,Capital Federal,AR-C,annual,2020,bioetanol combustion consumption by agriculture machines,0.5023021588200001,TJ,N2O,0.6,kg/TJ,0.30138129529200003,kg -5b5fb57e-405b-3b2f-8fe9-40a6294930dd,SESCO,II.5.1,Córdoba,AR-X,annual,2020,bioetanol combustion consumption by agriculture machines,0.07226361054,TJ,CH4,10.0,kg/TJ,0.7226361053999999,kg -5edff33b-ab9c-38cf-b21d-78695710a589,SESCO,II.5.1,Córdoba,AR-X,annual,2020,bioetanol combustion consumption by agriculture machines,0.07226361054,TJ,N2O,0.6,kg/TJ,0.043358166324,kg -2bb2fba9-e288-3b7d-a39a-3ca502499032,SESCO,II.5.1,Rio Negro,AR-R,annual,2020,bioetanol combustion consumption by agriculture machines,0.21101452317,TJ,CH4,10.0,kg/TJ,2.1101452317,kg -8b0e2212-6f92-3fec-b3cd-683411b40776,SESCO,II.5.1,Rio Negro,AR-R,annual,2020,bioetanol combustion consumption by agriculture machines,0.21101452317,TJ,N2O,0.6,kg/TJ,0.126608713902,kg -11898084-cba0-37fd-aca3-5c8b3f67879d,SESCO,II.5.1,Santa Fe,AR-S,annual,2020,bioetanol combustion consumption by agriculture machines,1.17420985638,TJ,CH4,10.0,kg/TJ,11.7420985638,kg -bae93fb4-74c2-30b0-ab2c-b4076e19acbb,SESCO,II.5.1,Santa Fe,AR-S,annual,2020,bioetanol combustion consumption by agriculture machines,1.17420985638,TJ,N2O,0.6,kg/TJ,0.704525913828,kg -4d5fbeec-ec7b-3328-9777-8f8aa268a2b3,SESCO,II.1.1,Buenos Aires,AR-B,annual,2020,bioetanol combustion consumption by to the public,248.69695911093,TJ,CH4,10.0,kg/TJ,2486.9695911093,kg -6aa4bcad-f65e-3e7a-a045-d6ec4f67382f,SESCO,II.1.1,Buenos Aires,AR-B,annual,2020,bioetanol combustion consumption by to the public,248.69695911093,TJ,N2O,0.6,kg/TJ,149.218175466558,kg -aaa1028c-cdbf-3903-8f1c-1c499e97ec2e,SESCO,II.1.1,Capital Federal,AR-C,annual,2020,bioetanol combustion consumption by to the public,20.285659470779997,TJ,CH4,10.0,kg/TJ,202.85659470779996,kg -63f5dd50-3472-39e2-a605-002c62cd9c77,SESCO,II.1.1,Capital Federal,AR-C,annual,2020,bioetanol combustion consumption by to the public,20.285659470779997,TJ,N2O,0.6,kg/TJ,12.171395682467997,kg -99d8ab14-b0dc-37ae-83ea-fd3a9726ce42,SESCO,II.1.1,Catamarca,AR-K,annual,2020,bioetanol combustion consumption by to the public,1.8097186090499997,TJ,CH4,10.0,kg/TJ,18.097186090499996,kg -15cfad18-b027-387e-8be4-2f7ce8fc9d7b,SESCO,II.1.1,Catamarca,AR-K,annual,2020,bioetanol combustion consumption by to the public,1.8097186090499997,TJ,N2O,0.6,kg/TJ,1.0858311654299997,kg -2c889e96-6771-34c2-87db-e2cd8e101e03,SESCO,II.1.1,Chaco,AR-H,annual,2020,bioetanol combustion consumption by to the public,2.4460358105699997,TJ,CH4,10.0,kg/TJ,24.460358105699996,kg -96fb4df3-b059-34b0-95ae-1ea234460839,SESCO,II.1.1,Chaco,AR-H,annual,2020,bioetanol combustion consumption by to the public,2.4460358105699997,TJ,N2O,0.6,kg/TJ,1.4676214863419998,kg -562e95d7-806e-38ee-abd1-337f4a6321ac,SESCO,II.1.1,Chubut,AR-U,annual,2020,bioetanol combustion consumption by to the public,14.64268181112,TJ,CH4,10.0,kg/TJ,146.4268181112,kg -c6f168d9-0565-3607-ba80-e27276a37472,SESCO,II.1.1,Chubut,AR-U,annual,2020,bioetanol combustion consumption by to the public,14.64268181112,TJ,N2O,0.6,kg/TJ,8.785609086671998,kg -ca9a59e6-d0a9-3f0b-9633-4f93a8129df3,SESCO,II.1.1,Corrientes,AR-W,annual,2020,bioetanol combustion consumption by to the public,17.7235655553,TJ,CH4,10.0,kg/TJ,177.235655553,kg -38c9fedf-5b44-3611-a283-ec7e79d09e6d,SESCO,II.1.1,Corrientes,AR-W,annual,2020,bioetanol combustion consumption by to the public,17.7235655553,TJ,N2O,0.6,kg/TJ,10.634139333179998,kg -f621b0c6-7360-3135-ab10-1eda59285037,SESCO,II.1.1,Córdoba,AR-X,annual,2020,bioetanol combustion consumption by to the public,32.13532859823,TJ,CH4,10.0,kg/TJ,321.35328598229995,kg -d7b3ea29-bf45-3bd6-b575-c2f5942e5448,SESCO,II.1.1,Córdoba,AR-X,annual,2020,bioetanol combustion consumption by to the public,32.13532859823,TJ,N2O,0.6,kg/TJ,19.281197158937996,kg -3e8dd4b1-768d-3816-9265-70f1efa8c070,SESCO,II.1.1,Entre Rios,AR-E,annual,2020,bioetanol combustion consumption by to the public,30.41747321184,TJ,CH4,10.0,kg/TJ,304.1747321184,kg -e9b3abdc-ea7c-3006-ad57-2f8cca82b89c,SESCO,II.1.1,Entre Rios,AR-E,annual,2020,bioetanol combustion consumption by to the public,30.41747321184,TJ,N2O,0.6,kg/TJ,18.250483927104,kg -f53f6e90-cbd0-37f4-9152-91f9d92c5511,SESCO,II.1.1,Formosa,AR-P,annual,2020,bioetanol combustion consumption by to the public,0.10853601561,TJ,CH4,10.0,kg/TJ,1.0853601561,kg -795d547b-15bc-3ee9-9c1f-76491498b58d,SESCO,II.1.1,Formosa,AR-P,annual,2020,bioetanol combustion consumption by to the public,0.10853601561,TJ,N2O,0.6,kg/TJ,0.06512160936599999,kg -1004818e-ed1b-3438-a0c9-cfdfd686ef41,SESCO,II.1.1,Jujuy,AR-Y,annual,2020,bioetanol combustion consumption by to the public,3.4784835752699994,TJ,CH4,10.0,kg/TJ,34.78483575269999,kg -fac7bfcc-ee7f-36df-82c3-12592912b270,SESCO,II.1.1,Jujuy,AR-Y,annual,2020,bioetanol combustion consumption by to the public,3.4784835752699994,TJ,N2O,0.6,kg/TJ,2.0870901451619996,kg -a7cc55fc-beed-39c7-bd12-c8ccbe4faf61,SESCO,II.1.1,La Pampa,AR-L,annual,2020,bioetanol combustion consumption by to the public,27.972013860449998,TJ,CH4,10.0,kg/TJ,279.7201386045,kg -ed8d1a83-39dd-3048-a705-2919274ab354,SESCO,II.1.1,La Pampa,AR-L,annual,2020,bioetanol combustion consumption by to the public,27.972013860449998,TJ,N2O,0.6,kg/TJ,16.78320831627,kg -73ad7582-e14f-35d0-be2d-65868a234b3f,SESCO,II.1.1,Mendoza,AR-M,annual,2020,bioetanol combustion consumption by to the public,5.073904655819999,TJ,CH4,10.0,kg/TJ,50.73904655819999,kg -af571f3d-8674-371d-8d5f-a88ad6efadfe,SESCO,II.1.1,Mendoza,AR-M,annual,2020,bioetanol combustion consumption by to the public,5.073904655819999,TJ,N2O,0.6,kg/TJ,3.044342793491999,kg -4b6cb37b-960c-377e-a329-91a4a4a28b4e,SESCO,II.1.1,Misiones,AR-N,annual,2020,bioetanol combustion consumption by to the public,0.90301861881,TJ,CH4,10.0,kg/TJ,9.0301861881,kg -a2ca0278-d8fb-3aa4-9075-0dc2110e50fc,SESCO,II.1.1,Misiones,AR-N,annual,2020,bioetanol combustion consumption by to the public,0.90301861881,TJ,N2O,0.6,kg/TJ,0.541811171286,kg -d7888144-eac8-31c5-bb55-36c6ce4d0439,SESCO,II.1.1,Neuquén,AR-Q,annual,2020,bioetanol combustion consumption by to the public,20.873493174600004,TJ,CH4,10.0,kg/TJ,208.73493174600003,kg -7e5f1eb0-113b-3074-bcde-db7ecc6f87c7,SESCO,II.1.1,Neuquén,AR-Q,annual,2020,bioetanol combustion consumption by to the public,20.873493174600004,TJ,N2O,0.6,kg/TJ,12.524095904760001,kg -6975cb4b-d309-3601-a4d7-d3d25d55c409,SESCO,II.1.1,Rio Negro,AR-R,annual,2020,bioetanol combustion consumption by to the public,71.76597629454,TJ,CH4,10.0,kg/TJ,717.6597629454,kg -7981689f-278d-3aa4-8950-ecd12c3cf674,SESCO,II.1.1,Rio Negro,AR-R,annual,2020,bioetanol combustion consumption by to the public,71.76597629454,TJ,N2O,0.6,kg/TJ,43.059585776724,kg -4af839cf-75fc-34e0-b840-7b7180eb03c2,SESCO,II.1.1,San Juan,AR-J,annual,2020,bioetanol combustion consumption by to the public,9.00103984956,TJ,CH4,10.0,kg/TJ,90.0103984956,kg -899c032e-5cf3-3a22-ac9b-1df252bb1eee,SESCO,II.1.1,San Juan,AR-J,annual,2020,bioetanol combustion consumption by to the public,9.00103984956,TJ,N2O,0.6,kg/TJ,5.400623909736,kg -15651a4a-e340-384b-9460-a100804a5b70,SESCO,II.1.1,San Luis,AR-D,annual,2020,bioetanol combustion consumption by to the public,3.5565492708899997,TJ,CH4,10.0,kg/TJ,35.565492708899995,kg -a2433596-05bd-34d2-a145-e1bbbf83f866,SESCO,II.1.1,San Luis,AR-D,annual,2020,bioetanol combustion consumption by to the public,3.5565492708899997,TJ,N2O,0.6,kg/TJ,2.1339295625339996,kg -b318ce33-bfc6-34d9-8a38-e9b511f36ecf,SESCO,II.1.1,Santa Fe,AR-S,annual,2020,bioetanol combustion consumption by to the public,55.2947144112,TJ,CH4,10.0,kg/TJ,552.9471441119999,kg -de13c9d2-c724-3ab2-89f9-1cc662be02b0,SESCO,II.1.1,Santa Fe,AR-S,annual,2020,bioetanol combustion consumption by to the public,55.2947144112,TJ,N2O,0.6,kg/TJ,33.17682864672,kg -50917db0-3ec0-338f-8a9e-dca0903364aa,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2020,bioetanol combustion consumption by to the public,11.75542273818,TJ,CH4,10.0,kg/TJ,117.5542273818,kg -3f4f2b0d-9c42-3a53-a763-6ae1ef8a73bc,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2020,bioetanol combustion consumption by to the public,11.75542273818,TJ,N2O,0.6,kg/TJ,7.0532536429079995,kg -fedb1aad-359c-332f-8b82-c54b21cb6f8a,SESCO,II.1.1,Tucuman,AR-T,annual,2020,bioetanol combustion consumption by to the public,0.84297547422,TJ,CH4,10.0,kg/TJ,8.4297547422,kg -2a81e151-d127-3d59-a91e-799e3400a1b6,SESCO,II.1.1,Tucuman,AR-T,annual,2020,bioetanol combustion consumption by to the public,0.84297547422,TJ,N2O,0.6,kg/TJ,0.505785284532,kg -155ceea1-a369-3325-b047-bff6de659968,SESCO,II.1.1,Buenos Aires,AR-B,annual,2020,bioetanol combustion consumption by to the public,37.46829072887999,TJ,CH4,10.0,kg/TJ,374.6829072887999,kg -29e9ab00-d78e-3269-8ac7-b87acacf7d48,SESCO,II.1.1,Buenos Aires,AR-B,annual,2020,bioetanol combustion consumption by to the public,37.46829072887999,TJ,N2O,0.6,kg/TJ,22.480974437327994,kg -51b90e45-93ca-361b-a673-6337d0b6c65e,SESCO,II.1.1,Capital Federal,AR-C,annual,2020,bioetanol combustion consumption by to the public,2.8999107116099996,TJ,CH4,10.0,kg/TJ,28.999107116099996,kg -ee8fab5e-65c1-3a53-b93e-2e6a7d481b8e,SESCO,II.1.1,Capital Federal,AR-C,annual,2020,bioetanol combustion consumption by to the public,2.8999107116099996,TJ,N2O,0.6,kg/TJ,1.7399464269659997,kg -055de227-a792-3509-a221-ea7d64ea8855,SESCO,II.1.1,Catamarca,AR-K,annual,2020,bioetanol combustion consumption by to the public,0.11705402016,TJ,CH4,10.0,kg/TJ,1.1705402016,kg -4e430ec5-9ffa-3289-8f07-f2c06317b715,SESCO,II.1.1,Catamarca,AR-K,annual,2020,bioetanol combustion consumption by to the public,0.11705402016,TJ,N2O,0.6,kg/TJ,0.070232412096,kg -42fcdd72-e84c-3584-bde6-8402baaeeb62,SESCO,II.1.1,Chaco,AR-H,annual,2020,bioetanol combustion consumption by to the public,0.23079925836,TJ,CH4,10.0,kg/TJ,2.3079925836,kg -15fd318f-1fea-30ad-91da-7ec0fdde199f,SESCO,II.1.1,Chaco,AR-H,annual,2020,bioetanol combustion consumption by to the public,0.23079925836,TJ,N2O,0.6,kg/TJ,0.138479555016,kg -a513c0eb-67d1-3f7b-9a1a-2bff750c477c,SESCO,II.1.1,Chubut,AR-U,annual,2020,bioetanol combustion consumption by to the public,1.97264565729,TJ,CH4,10.0,kg/TJ,19.7264565729,kg -ecee4b58-cef2-3a2b-8f98-169c959887f1,SESCO,II.1.1,Chubut,AR-U,annual,2020,bioetanol combustion consumption by to the public,1.97264565729,TJ,N2O,0.6,kg/TJ,1.1835873943739998,kg -0dd5752e-1cac-3fbf-8954-d95ab9bfdd88,SESCO,II.1.1,Corrientes,AR-W,annual,2020,bioetanol combustion consumption by to the public,1.5092404331399998,TJ,CH4,10.0,kg/TJ,15.092404331399997,kg -66756059-3276-3821-94e2-5107bcb168cf,SESCO,II.1.1,Corrientes,AR-W,annual,2020,bioetanol combustion consumption by to the public,1.5092404331399998,TJ,N2O,0.6,kg/TJ,0.9055442598839998,kg -2b21a7e6-6846-3f87-909a-d0256f9a91bc,SESCO,II.1.1,Córdoba,AR-X,annual,2020,bioetanol combustion consumption by to the public,4.71018937653,TJ,CH4,10.0,kg/TJ,47.1018937653,kg -8c74725c-256d-35c5-ae1b-ac820714bc5b,SESCO,II.1.1,Córdoba,AR-X,annual,2020,bioetanol combustion consumption by to the public,4.71018937653,TJ,N2O,0.6,kg/TJ,2.826113625918,kg -4306138b-7a2a-3652-b585-54919665b04c,SESCO,II.1.1,Entre Rios,AR-E,annual,2020,bioetanol combustion consumption by to the public,5.49404732151,TJ,CH4,10.0,kg/TJ,54.9404732151,kg -73beb8e2-14c1-3cb3-9f34-859982b6c3cb,SESCO,II.1.1,Entre Rios,AR-E,annual,2020,bioetanol combustion consumption by to the public,5.49404732151,TJ,N2O,0.6,kg/TJ,3.296428392906,kg -0e0ec8e0-a028-3be7-b8d9-f50dad45cecb,SESCO,II.1.1,Formosa,AR-P,annual,2020,bioetanol combustion consumption by to the public,0.02546731044,TJ,CH4,10.0,kg/TJ,0.2546731044,kg -281686ef-f763-31b0-9865-9644efa97c4f,SESCO,II.1.1,Formosa,AR-P,annual,2020,bioetanol combustion consumption by to the public,0.02546731044,TJ,N2O,0.6,kg/TJ,0.015280386264,kg -2f5d8e0e-013a-3777-b6fc-a6997831bc38,SESCO,II.1.1,La Pampa,AR-L,annual,2020,bioetanol combustion consumption by to the public,5.38526994291,TJ,CH4,10.0,kg/TJ,53.8526994291,kg -fc9eb739-7561-3a26-88e3-c7f9130c3f7f,SESCO,II.1.1,La Pampa,AR-L,annual,2020,bioetanol combustion consumption by to the public,5.38526994291,TJ,N2O,0.6,kg/TJ,3.231161965746,kg -a0a44f16-6b6e-3e1a-9733-aa9e295d0c21,SESCO,II.1.1,Mendoza,AR-M,annual,2020,bioetanol combustion consumption by to the public,0.5925484837799999,TJ,CH4,10.0,kg/TJ,5.925484837799999,kg -0961245c-ac4d-3429-898a-fcec2e697c51,SESCO,II.1.1,Mendoza,AR-M,annual,2020,bioetanol combustion consumption by to the public,0.5925484837799999,TJ,N2O,0.6,kg/TJ,0.35552909026799995,kg -54873bfa-d8d0-3fa8-bc3c-ef255a3d8930,SESCO,II.1.1,Misiones,AR-N,annual,2020,bioetanol combustion consumption by to the public,0.07419685778999999,TJ,CH4,10.0,kg/TJ,0.7419685778999998,kg -902e31fe-b9ad-36e8-a86e-bf1de63ca7c0,SESCO,II.1.1,Misiones,AR-N,annual,2020,bioetanol combustion consumption by to the public,0.07419685778999999,TJ,N2O,0.6,kg/TJ,0.04451811467399999,kg -536d1a4e-3102-3310-9645-120da64172a9,SESCO,II.1.1,Neuquén,AR-Q,annual,2020,bioetanol combustion consumption by to the public,6.41300292765,TJ,CH4,10.0,kg/TJ,64.1300292765,kg -e2577340-a0a6-3acd-b31e-6296ed486907,SESCO,II.1.1,Neuquén,AR-Q,annual,2020,bioetanol combustion consumption by to the public,6.41300292765,TJ,N2O,0.6,kg/TJ,3.84780175659,kg -608a8a94-264e-3015-ae70-295ec389bf3f,SESCO,II.1.1,Rio Negro,AR-R,annual,2020,bioetanol combustion consumption by to the public,9.75595766904,TJ,CH4,10.0,kg/TJ,97.55957669040001,kg -3c3cc730-7a2c-32e0-b534-67efd4aaa3b1,SESCO,II.1.1,Rio Negro,AR-R,annual,2020,bioetanol combustion consumption by to the public,9.75595766904,TJ,N2O,0.6,kg/TJ,5.853574601424,kg -97b6cd65-062b-3681-a7b9-df3be06d30b5,SESCO,II.1.1,San Juan,AR-J,annual,2020,bioetanol combustion consumption by to the public,1.02317989455,TJ,CH4,10.0,kg/TJ,10.2317989455,kg -32d10ebb-903d-3c17-8115-d0e4a1fb0b73,SESCO,II.1.1,San Juan,AR-J,annual,2020,bioetanol combustion consumption by to the public,1.02317989455,TJ,N2O,0.6,kg/TJ,0.6139079367299999,kg -86fe412b-7ad2-3182-a3a2-97e8d84056fd,SESCO,II.1.1,San Luis,AR-D,annual,2020,bioetanol combustion consumption by to the public,0.7566331370400001,TJ,CH4,10.0,kg/TJ,7.566331370400001,kg -5a6b00ed-e531-3a32-8a9b-1c8b58a944c1,SESCO,II.1.1,San Luis,AR-D,annual,2020,bioetanol combustion consumption by to the public,0.7566331370400001,TJ,N2O,0.6,kg/TJ,0.45397988222400004,kg -cc006cef-2300-3760-8e5e-b56598c413f9,SESCO,II.1.1,Santa Fe,AR-S,annual,2020,bioetanol combustion consumption by to the public,11.22379614774,TJ,CH4,10.0,kg/TJ,112.2379614774,kg -b9c2f1f0-0e8d-38c9-b57d-efb036e152ed,SESCO,II.1.1,Santa Fe,AR-S,annual,2020,bioetanol combustion consumption by to the public,11.22379614774,TJ,N2O,0.6,kg/TJ,6.734277688644,kg -af6a1f02-af28-3876-8e0c-4a793f1976d2,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2020,bioetanol combustion consumption by to the public,2.29756710843,TJ,CH4,10.0,kg/TJ,22.9756710843,kg -54c77a2d-a3d0-389f-987f-8f3b3c8def82,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2020,bioetanol combustion consumption by to the public,2.29756710843,TJ,N2O,0.6,kg/TJ,1.3785402650579999,kg -348dd65c-3099-39b7-8b71-d1207b460d7b,SESCO,II.1.1,Tucuman,AR-T,annual,2020,bioetanol combustion consumption by to the public,0.020874383640000004,TJ,CH4,10.0,kg/TJ,0.20874383640000005,kg -15f2c897-9ee3-3b05-871f-265a01926b93,SESCO,II.1.1,Tucuman,AR-T,annual,2020,bioetanol combustion consumption by to the public,0.020874383640000004,TJ,N2O,0.6,kg/TJ,0.012524630184000003,kg -db1a2a9f-f446-3497-96e5-4becb117888d,SESCO,I.3.1,Buenos Aires,AR-B,annual,2020,bioetanol combustion consumption by petrochemical industries,3.8402023373999996,TJ,CH4,10.0,kg/TJ,38.402023373999995,kg -a4c312d3-ac5c-38df-b646-ad57db9d57dd,SESCO,I.3.1,Buenos Aires,AR-B,annual,2020,bioetanol combustion consumption by petrochemical industries,3.8402023373999996,TJ,N2O,0.6,kg/TJ,2.30412140244,kg -42ab7023-7c61-3b9f-9b94-cf5da423ffa4,SESCO,I.3.1,Capital Federal,AR-C,annual,2020,bioetanol combustion consumption by petrochemical industries,0.5803795710899999,TJ,CH4,10.0,kg/TJ,5.803795710899999,kg -4f3e24e7-9f26-35c1-a386-03669acb6472,SESCO,I.3.1,Capital Federal,AR-C,annual,2020,bioetanol combustion consumption by petrochemical industries,0.5803795710899999,TJ,N2O,0.6,kg/TJ,0.34822774265399997,kg -0623c68e-321b-3903-bc0e-844b2160e541,SESCO,I.3.1,Catamarca,AR-K,annual,2020,bioetanol combustion consumption by petrochemical industries,0.34238160297,TJ,CH4,10.0,kg/TJ,3.4238160296999998,kg -5889299d-d7df-3878-bd10-012f301c7ecb,SESCO,I.3.1,Catamarca,AR-K,annual,2020,bioetanol combustion consumption by petrochemical industries,0.34238160297,TJ,N2O,0.6,kg/TJ,0.20542896178199999,kg -0f7a6da6-3400-3a24-a440-eb4e4ee1a202,SESCO,I.3.1,Chaco,AR-H,annual,2020,bioetanol combustion consumption by petrochemical industries,0.43363790315999995,TJ,CH4,10.0,kg/TJ,4.3363790316,kg -d0033b72-5bc2-342d-a502-1823f9b0bd50,SESCO,I.3.1,Chaco,AR-H,annual,2020,bioetanol combustion consumption by petrochemical industries,0.43363790315999995,TJ,N2O,0.6,kg/TJ,0.26018274189599994,kg -fd356c28-077c-34ff-8e95-50ca5c0a5a89,SESCO,I.3.1,Chubut,AR-U,annual,2020,bioetanol combustion consumption by petrochemical industries,0.07276742649,TJ,CH4,10.0,kg/TJ,0.7276742649,kg -d6b140be-b0dd-3a7f-826b-cc728c3dc73c,SESCO,I.3.1,Chubut,AR-U,annual,2020,bioetanol combustion consumption by petrochemical industries,0.07276742649,TJ,N2O,0.6,kg/TJ,0.04366045589399999,kg -72eeae20-dc3d-3774-9814-9c9fd8594b37,SESCO,I.3.1,Córdoba,AR-X,annual,2020,bioetanol combustion consumption by petrochemical industries,1.38035728314,TJ,CH4,10.0,kg/TJ,13.8035728314,kg -cbaee887-32b5-31ec-9b99-eacd17a0eaeb,SESCO,I.3.1,Córdoba,AR-X,annual,2020,bioetanol combustion consumption by petrochemical industries,1.38035728314,TJ,N2O,0.6,kg/TJ,0.828214369884,kg -dac31cee-311b-3f8f-9cd4-3d6fdd23a7f2,SESCO,I.3.1,Entre Rios,AR-E,annual,2020,bioetanol combustion consumption by petrochemical industries,0.84591401004,TJ,CH4,10.0,kg/TJ,8.459140100399999,kg -a23cd836-5473-3ffb-967f-df7abfc705fa,SESCO,I.3.1,Entre Rios,AR-E,annual,2020,bioetanol combustion consumption by petrochemical industries,0.84591401004,TJ,N2O,0.6,kg/TJ,0.507548406024,kg -e0884ce0-26ee-30f4-b314-c45922eefe4c,SESCO,I.3.1,La Pampa,AR-L,annual,2020,bioetanol combustion consumption by petrochemical industries,1.01706380325,TJ,CH4,10.0,kg/TJ,10.1706380325,kg -852825a9-1edc-3bae-83e3-1100ecb0e3e4,SESCO,I.3.1,La Pampa,AR-L,annual,2020,bioetanol combustion consumption by petrochemical industries,1.01706380325,TJ,N2O,0.6,kg/TJ,0.61023828195,kg -02ee8b8a-a9df-3d11-95a3-4e1db7f21a1b,SESCO,I.3.1,Mendoza,AR-M,annual,2020,bioetanol combustion consumption by petrochemical industries,0.17988338412,TJ,CH4,10.0,kg/TJ,1.7988338412,kg -2b20f69c-19ad-3495-b549-0238b645f118,SESCO,I.3.1,Mendoza,AR-M,annual,2020,bioetanol combustion consumption by petrochemical industries,0.17988338412,TJ,N2O,0.6,kg/TJ,0.10793003047199999,kg -440d1cac-05a9-3b48-8174-2ec189c1a9b0,SESCO,I.3.1,Misiones,AR-N,annual,2020,bioetanol combustion consumption by petrochemical industries,0.23380106408999998,TJ,CH4,10.0,kg/TJ,2.3380106409,kg -a9269f62-7c6b-35ed-87d0-97223f07bcf6,SESCO,I.3.1,Misiones,AR-N,annual,2020,bioetanol combustion consumption by petrochemical industries,0.23380106408999998,TJ,N2O,0.6,kg/TJ,0.140280638454,kg -5e46526c-f4cb-3331-b440-b3b5da52fc34,SESCO,I.3.1,Neuquén,AR-Q,annual,2020,bioetanol combustion consumption by petrochemical industries,0.30479458976999996,TJ,CH4,10.0,kg/TJ,3.0479458976999996,kg -639b15de-7831-3aca-93ea-e64db6c78274,SESCO,I.3.1,Neuquén,AR-Q,annual,2020,bioetanol combustion consumption by petrochemical industries,0.30479458976999996,TJ,N2O,0.6,kg/TJ,0.18287675386199997,kg -516332b4-d900-3fa5-a65c-ea0360b02b1b,SESCO,I.3.1,Rio Negro,AR-R,annual,2020,bioetanol combustion consumption by petrochemical industries,0.73260931788,TJ,CH4,10.0,kg/TJ,7.326093178800001,kg -318cd99e-e245-31d6-a81f-e4b251805259,SESCO,I.3.1,Rio Negro,AR-R,annual,2020,bioetanol combustion consumption by petrochemical industries,0.73260931788,TJ,N2O,0.6,kg/TJ,0.439565590728,kg -226d2e1d-9fac-3ec8-998c-f1dd52ddba07,SESCO,I.3.1,San Luis,AR-D,annual,2020,bioetanol combustion consumption by petrochemical industries,0.15037382943000002,TJ,CH4,10.0,kg/TJ,1.5037382943000002,kg -f862a106-d726-3891-9d3d-ad74d53609e8,SESCO,I.3.1,San Luis,AR-D,annual,2020,bioetanol combustion consumption by petrochemical industries,0.15037382943000002,TJ,N2O,0.6,kg/TJ,0.09022429765800001,kg -b566e363-4ed7-35d0-8b88-c561fd342ebf,SESCO,I.3.1,Santa Fe,AR-S,annual,2020,bioetanol combustion consumption by petrochemical industries,3.8856840293699997,TJ,CH4,10.0,kg/TJ,38.856840293699996,kg -19c93775-0d43-3f6f-b70d-5471e996718b,SESCO,I.3.1,Santa Fe,AR-S,annual,2020,bioetanol combustion consumption by petrochemical industries,3.8856840293699997,TJ,N2O,0.6,kg/TJ,2.3314104176219996,kg -7938eab9-01bd-38b9-a62d-ee90278ead1f,SESCO,I.3.1,Santiago del Estero,AR-G,annual,2020,bioetanol combustion consumption by petrochemical industries,0.05838875361,TJ,CH4,10.0,kg/TJ,0.5838875361,kg -792b5184-d3e9-3756-b0b6-6b44612d47ac,SESCO,I.3.1,Santiago del Estero,AR-G,annual,2020,bioetanol combustion consumption by petrochemical industries,0.05838875361,TJ,N2O,0.6,kg/TJ,0.035033252166,kg -d8b44448-88cd-3b76-ada5-620be782b13e,SESCO,I.3.1,Tucuman,AR-T,annual,2020,bioetanol combustion consumption by petrochemical industries,0.32017152123,TJ,CH4,10.0,kg/TJ,3.2017152123,kg -d47f00ee-d794-30e8-9369-e3f995189196,SESCO,I.3.1,Tucuman,AR-T,annual,2020,bioetanol combustion consumption by petrochemical industries,0.32017152123,TJ,N2O,0.6,kg/TJ,0.19210291273799998,kg -0d7f8361-2c4b-3e92-9470-aa16d7d39fdb,SESCO,I.3.1,Buenos Aires,AR-B,annual,2020,bioetanol combustion consumption by petrochemical industries,0.15699842334,TJ,CH4,10.0,kg/TJ,1.5699842334,kg -e899b378-6209-3009-bb97-cb1a678b60ac,SESCO,I.3.1,Buenos Aires,AR-B,annual,2020,bioetanol combustion consumption by petrochemical industries,0.15699842334,TJ,N2O,0.6,kg/TJ,0.094199054004,kg -a2225cec-5841-35f6-b143-8d0c87b79b60,SESCO,I.3.1,Capital Federal,AR-C,annual,2020,bioetanol combustion consumption by petrochemical industries,0.06802452657,TJ,CH4,10.0,kg/TJ,0.6802452657,kg -5ba5a228-4bf0-3a21-9704-4e4b74772bdd,SESCO,I.3.1,Capital Federal,AR-C,annual,2020,bioetanol combustion consumption by petrochemical industries,0.06802452657,TJ,N2O,0.6,kg/TJ,0.04081471594199999,kg -c553bf2e-f99d-380b-9d55-4a7b219744db,SESCO,I.3.1,Chubut,AR-U,annual,2020,bioetanol combustion consumption by petrochemical industries,0.011782263239999997,TJ,CH4,10.0,kg/TJ,0.11782263239999996,kg -0cf2aade-00d9-339c-a2bc-469acde0fe42,SESCO,I.3.1,Chubut,AR-U,annual,2020,bioetanol combustion consumption by petrochemical industries,0.011782263239999997,TJ,N2O,0.6,kg/TJ,0.007069357943999998,kg -da384fcd-a86b-3b01-8943-cfa33743e03a,SESCO,I.3.1,Córdoba,AR-X,annual,2020,bioetanol combustion consumption by petrochemical industries,0.08675241992999999,TJ,CH4,10.0,kg/TJ,0.8675241992999999,kg -7312a848-db27-3854-806f-21bbdbb6ded7,SESCO,I.3.1,Córdoba,AR-X,annual,2020,bioetanol combustion consumption by petrochemical industries,0.08675241992999999,TJ,N2O,0.6,kg/TJ,0.05205145195799999,kg -c5ec0731-a817-3732-88ce-65314b480fbf,SESCO,I.3.1,Entre Rios,AR-E,annual,2020,bioetanol combustion consumption by petrochemical industries,0.06327459665999999,TJ,CH4,10.0,kg/TJ,0.6327459665999999,kg -b8071c86-43e3-3e9e-93a5-e6637093a2d2,SESCO,I.3.1,Entre Rios,AR-E,annual,2020,bioetanol combustion consumption by petrochemical industries,0.06327459665999999,TJ,N2O,0.6,kg/TJ,0.03796475799599999,kg -bdaf0da7-45e9-3a4b-94fc-166724feb270,SESCO,I.3.1,La Pampa,AR-L,annual,2020,bioetanol combustion consumption by petrochemical industries,0.23980936221,TJ,CH4,10.0,kg/TJ,2.3980936220999998,kg -109aa0c8-bb6b-3fcb-a8bf-f426a098bb66,SESCO,I.3.1,La Pampa,AR-L,annual,2020,bioetanol combustion consumption by petrochemical industries,0.23980936221,TJ,N2O,0.6,kg/TJ,0.143885617326,kg -226a9cd1-3b86-32f6-8641-00d74befba48,SESCO,I.3.1,Santa Fe,AR-S,annual,2020,bioetanol combustion consumption by petrochemical industries,0.18262508021999999,TJ,CH4,10.0,kg/TJ,1.8262508022,kg -94b44957-9ee7-3cff-9cab-1cca254b8e6d,SESCO,I.3.1,Santa Fe,AR-S,annual,2020,bioetanol combustion consumption by petrochemical industries,0.18262508021999999,TJ,N2O,0.6,kg/TJ,0.10957504813199999,kg -6dfd156d-2992-36f7-a665-9435b3ba7d1b,SESCO,I.3.1,Santiago del Estero,AR-G,annual,2020,bioetanol combustion consumption by petrochemical industries,0.009300676769999999,TJ,CH4,10.0,kg/TJ,0.09300676769999999,kg -a490a96e-3ff1-350b-bb69-fb093ed7f42a,SESCO,I.3.1,Santiago del Estero,AR-G,annual,2020,bioetanol combustion consumption by petrochemical industries,0.009300676769999999,TJ,N2O,0.6,kg/TJ,0.005580406061999999,kg -1c13038c-d879-3aac-912e-1886b11e6b78,SESCO,I.3.1,Tucuman,AR-T,annual,2020,bioetanol combustion consumption by petrochemical industries,0.00941784327,TJ,CH4,10.0,kg/TJ,0.09417843270000001,kg -de66789d-cd26-33f0-96fb-2fab0cdd0334,SESCO,I.3.1,Tucuman,AR-T,annual,2020,bioetanol combustion consumption by petrochemical industries,0.00941784327,TJ,N2O,0.6,kg/TJ,0.005650705962,kg -80f2e7ca-9070-338e-8eff-8eb2fdf7ac46,SESCO,II.5.1,Buenos Aires,AR-B,annual,2020,bioetanol combustion consumption by agriculture machines,0.01874664,TJ,CH4,10.0,kg/TJ,0.18746639999999998,kg -ddd45c0a-21c6-3548-b915-9244f7d1c5c6,SESCO,II.5.1,Buenos Aires,AR-B,annual,2020,bioetanol combustion consumption by agriculture machines,0.01874664,TJ,N2O,0.6,kg/TJ,0.011247983999999999,kg -aaa305d6-c8b3-399e-823b-9235790c7804,SESCO,II.5.1,Salta,AR-A,annual,2020,bioetanol combustion consumption by agriculture machines,0.05155326,TJ,CH4,10.0,kg/TJ,0.5155326,kg -396e1e0f-794f-3ff9-9609-c58fe4805b19,SESCO,II.5.1,Salta,AR-A,annual,2020,bioetanol combustion consumption by agriculture machines,0.05155326,TJ,N2O,0.6,kg/TJ,0.030931955999999997,kg -80e640c8-901e-30f0-a2fa-69079b9830d7,SESCO,II.5.1,Santa Fe,AR-S,annual,2020,bioetanol combustion consumption by agriculture machines,0.18512306999999997,TJ,CH4,10.0,kg/TJ,1.8512306999999997,kg -90e45eeb-bca0-39d9-addb-1aa812415b6a,SESCO,II.5.1,Santa Fe,AR-S,annual,2020,bioetanol combustion consumption by agriculture machines,0.18512306999999997,TJ,N2O,0.6,kg/TJ,0.11107384199999998,kg -cdbd77a5-e329-33c1-b289-17b0cdfbf4a5,SESCO,II.1.1,Buenos Aires,AR-B,annual,2020,bioetanol combustion consumption by to the public,2092.98268278,TJ,CH4,10.0,kg/TJ,20929.826827799996,kg -7e686da7-fc62-3d26-9e36-e6e5864aa074,SESCO,II.1.1,Buenos Aires,AR-B,annual,2020,bioetanol combustion consumption by to the public,2092.98268278,TJ,N2O,0.6,kg/TJ,1255.789609668,kg -727c458b-3a1f-3ca9-85de-cce0ab7a4ffc,SESCO,II.1.1,Capital Federal,AR-C,annual,2020,bioetanol combustion consumption by to the public,357.20082189,TJ,CH4,10.0,kg/TJ,3572.0082189,kg -6fe8edbe-9e45-31e8-a0c8-56a8799e3294,SESCO,II.1.1,Capital Federal,AR-C,annual,2020,bioetanol combustion consumption by to the public,357.20082189,TJ,N2O,0.6,kg/TJ,214.32049313399997,kg -286f9d48-687c-3e40-bae5-0b754312e360,SESCO,II.1.1,Catamarca,AR-K,annual,2020,bioetanol combustion consumption by to the public,45.49340862,TJ,CH4,10.0,kg/TJ,454.93408619999997,kg -6f857383-4101-3b24-bde8-9db6293503ce,SESCO,II.1.1,Catamarca,AR-K,annual,2020,bioetanol combustion consumption by to the public,45.49340862,TJ,N2O,0.6,kg/TJ,27.296045171999996,kg -fde19739-9841-3d0b-9534-c640efa42690,SESCO,II.1.1,Chaco,AR-H,annual,2020,bioetanol combustion consumption by to the public,127.28734227,TJ,CH4,10.0,kg/TJ,1272.8734227,kg -76dfc9f4-2285-3d8b-87cd-9b61211017e4,SESCO,II.1.1,Chaco,AR-H,annual,2020,bioetanol combustion consumption by to the public,127.28734227,TJ,N2O,0.6,kg/TJ,76.372405362,kg -f176618a-5116-30c9-a69a-6526bed43dcd,SESCO,II.1.1,Chubut,AR-U,annual,2020,bioetanol combustion consumption by to the public,182.96954972999998,TJ,CH4,10.0,kg/TJ,1829.6954972999997,kg -f7f33bd7-0470-3080-9156-e6e76927af87,SESCO,II.1.1,Chubut,AR-U,annual,2020,bioetanol combustion consumption by to the public,182.96954972999998,TJ,N2O,0.6,kg/TJ,109.78172983799999,kg -1a00bfd7-313f-3214-9012-819638ddff62,SESCO,II.1.1,Corrientes,AR-W,annual,2020,bioetanol combustion consumption by to the public,133.6869765,TJ,CH4,10.0,kg/TJ,1336.869765,kg -c291309c-7489-3580-8a9e-839f7fc41aa2,SESCO,II.1.1,Corrientes,AR-W,annual,2020,bioetanol combustion consumption by to the public,133.6869765,TJ,N2O,0.6,kg/TJ,80.2121859,kg -a46c1dae-1c57-3297-9cc3-7204fd2dc6b2,SESCO,II.1.1,Córdoba,AR-X,annual,2020,bioetanol combustion consumption by to the public,515.8606662,TJ,CH4,10.0,kg/TJ,5158.606662,kg -84051af1-398c-374f-ae14-44fecf8040f3,SESCO,II.1.1,Córdoba,AR-X,annual,2020,bioetanol combustion consumption by to the public,515.8606662,TJ,N2O,0.6,kg/TJ,309.51639972,kg -39d1fd93-989b-35cc-a501-2cd7a5e230bb,SESCO,II.1.1,Entre Rios,AR-E,annual,2020,bioetanol combustion consumption by to the public,175.32092061,TJ,CH4,10.0,kg/TJ,1753.2092061,kg -dd6435bc-1463-39d9-bb48-88c99569eb08,SESCO,II.1.1,Entre Rios,AR-E,annual,2020,bioetanol combustion consumption by to the public,175.32092061,TJ,N2O,0.6,kg/TJ,105.192552366,kg -e5d22a80-9ca3-3125-95ec-3a9c75342866,SESCO,II.1.1,Formosa,AR-P,annual,2020,bioetanol combustion consumption by to the public,58.90897287,TJ,CH4,10.0,kg/TJ,589.0897287,kg -05293390-dd4f-3e95-b5cf-30af69e2b5d4,SESCO,II.1.1,Formosa,AR-P,annual,2020,bioetanol combustion consumption by to the public,58.90897287,TJ,N2O,0.6,kg/TJ,35.345383722,kg -b161ce41-94cd-3b1f-b1ef-b79a22d23034,SESCO,II.1.1,Jujuy,AR-Y,annual,2020,bioetanol combustion consumption by to the public,82.79922222,TJ,CH4,10.0,kg/TJ,827.9922222,kg -4452cd94-1115-3c07-96cf-3906795d30fb,SESCO,II.1.1,Jujuy,AR-Y,annual,2020,bioetanol combustion consumption by to the public,82.79922222,TJ,N2O,0.6,kg/TJ,49.679533332,kg -7bd1bbb2-42f5-34c5-928e-002de521af50,SESCO,II.1.1,La Pampa,AR-L,annual,2020,bioetanol combustion consumption by to the public,81.39322422000001,TJ,CH4,10.0,kg/TJ,813.9322422,kg -a6f95a92-068c-312a-83af-b122bead5fd8,SESCO,II.1.1,La Pampa,AR-L,annual,2020,bioetanol combustion consumption by to the public,81.39322422000001,TJ,N2O,0.6,kg/TJ,48.835934532,kg -abb66c39-534c-366f-850e-01fcc5987549,SESCO,II.1.1,La Rioja,AR-F,annual,2020,bioetanol combustion consumption by to the public,52.631191799999996,TJ,CH4,10.0,kg/TJ,526.311918,kg -1988fce9-52b2-3470-84dd-661847431e55,SESCO,II.1.1,La Rioja,AR-F,annual,2020,bioetanol combustion consumption by to the public,52.631191799999996,TJ,N2O,0.6,kg/TJ,31.578715079999995,kg -248fbe12-1d32-38eb-8601-3384db678a0c,SESCO,II.1.1,Mendoza,AR-M,annual,2020,bioetanol combustion consumption by to the public,272.54802564,TJ,CH4,10.0,kg/TJ,2725.4802564,kg -5debe7ec-67e0-3eed-80d2-1bb5df196819,SESCO,II.1.1,Mendoza,AR-M,annual,2020,bioetanol combustion consumption by to the public,272.54802564,TJ,N2O,0.6,kg/TJ,163.52881538399998,kg -050383e3-bf85-3d73-8e6c-58e89630fcc0,SESCO,II.1.1,Misiones,AR-N,annual,2020,bioetanol combustion consumption by to the public,207.37298835,TJ,CH4,10.0,kg/TJ,2073.7298835,kg -2e7cd07b-f3b9-3033-b556-1af6c345b113,SESCO,II.1.1,Misiones,AR-N,annual,2020,bioetanol combustion consumption by to the public,207.37298835,TJ,N2O,0.6,kg/TJ,124.42379301,kg -eb0f7738-21d5-37bd-8afa-7a847777ea70,SESCO,II.1.1,Neuquén,AR-Q,annual,2020,bioetanol combustion consumption by to the public,174.26876544,TJ,CH4,10.0,kg/TJ,1742.6876544000002,kg -dc7961a2-9e55-3525-9677-750199e09a51,SESCO,II.1.1,Neuquén,AR-Q,annual,2020,bioetanol combustion consumption by to the public,174.26876544,TJ,N2O,0.6,kg/TJ,104.561259264,kg -f8914511-421e-321b-8473-5868b0f1e6bc,SESCO,II.1.1,Rio Negro,AR-R,annual,2020,bioetanol combustion consumption by to the public,168.56275689,TJ,CH4,10.0,kg/TJ,1685.6275689,kg -3cbfea3f-0cbf-3a45-9d24-3afd98e0bbff,SESCO,II.1.1,Rio Negro,AR-R,annual,2020,bioetanol combustion consumption by to the public,168.56275689,TJ,N2O,0.6,kg/TJ,101.137654134,kg -a9d8663e-dd98-38b6-836d-a89862c48003,SESCO,II.1.1,Salta,AR-A,annual,2020,bioetanol combustion consumption by to the public,194.74243964999997,TJ,CH4,10.0,kg/TJ,1947.4243964999996,kg -c66e707b-02f2-33d6-8fba-e4facd840057,SESCO,II.1.1,Salta,AR-A,annual,2020,bioetanol combustion consumption by to the public,194.74243964999997,TJ,N2O,0.6,kg/TJ,116.84546378999997,kg -adc9732c-d33a-32c2-a46c-b58262b7b38d,SESCO,II.1.1,San Juan,AR-J,annual,2020,bioetanol combustion consumption by to the public,93.75194664,TJ,CH4,10.0,kg/TJ,937.5194664,kg -0fff48a7-20a7-3eb6-a13d-e9abe89e9cd8,SESCO,II.1.1,San Juan,AR-J,annual,2020,bioetanol combustion consumption by to the public,93.75194664,TJ,N2O,0.6,kg/TJ,56.251167984,kg -5d6d7821-424f-3da1-981a-4fcf7fd928bb,SESCO,II.1.1,San Luis,AR-D,annual,2020,bioetanol combustion consumption by to the public,75.14356310999999,TJ,CH4,10.0,kg/TJ,751.4356310999999,kg -6dd718f5-0f0e-3035-bffd-9a52a4f407de,SESCO,II.1.1,San Luis,AR-D,annual,2020,bioetanol combustion consumption by to the public,75.14356310999999,TJ,N2O,0.6,kg/TJ,45.086137865999994,kg -5acc97cd-7e18-3651-9d7a-d956d25051a1,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2020,bioetanol combustion consumption by to the public,108.72113868000001,TJ,CH4,10.0,kg/TJ,1087.2113868000001,kg -c5cc5e60-31bd-3ec0-b2f6-48a88547f71b,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2020,bioetanol combustion consumption by to the public,108.72113868000001,TJ,N2O,0.6,kg/TJ,65.232683208,kg -1d2926ee-dfe9-3837-ac26-6b5f18da91ed,SESCO,II.1.1,Santa Fe,AR-S,annual,2020,bioetanol combustion consumption by to the public,395.3572642799999,TJ,CH4,10.0,kg/TJ,3953.5726427999994,kg -f9992e90-9f3e-3ee4-bf4b-dbc3caa3abb5,SESCO,II.1.1,Santa Fe,AR-S,annual,2020,bioetanol combustion consumption by to the public,395.3572642799999,TJ,N2O,0.6,kg/TJ,237.21435856799994,kg -b8adc28a-9ae5-30c1-aaed-56b879e9c2f7,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2020,bioetanol combustion consumption by to the public,80.36918901,TJ,CH4,10.0,kg/TJ,803.6918901,kg -c2765b62-029a-36c9-9b3b-0f3381ae0c45,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2020,bioetanol combustion consumption by to the public,80.36918901,TJ,N2O,0.6,kg/TJ,48.221513406,kg -cf5d216c-a1df-32ba-b71e-b8e99db853b3,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2020,bioetanol combustion consumption by to the public,81.7119171,TJ,CH4,10.0,kg/TJ,817.1191709999999,kg -b1435417-4278-3ff4-98d4-06a3e5e14d97,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2020,bioetanol combustion consumption by to the public,81.7119171,TJ,N2O,0.6,kg/TJ,49.02715025999999,kg -f067903d-e1f6-3f48-b38f-6b287cf179d7,SESCO,II.1.1,Tucuman,AR-T,annual,2020,bioetanol combustion consumption by to the public,162.17952597,TJ,CH4,10.0,kg/TJ,1621.7952596999999,kg -96a3c756-c3b1-3cc2-ae1f-792b441c61ff,SESCO,II.1.1,Tucuman,AR-T,annual,2020,bioetanol combustion consumption by to the public,162.17952597,TJ,N2O,0.6,kg/TJ,97.30771558199999,kg -9a72a9dd-8c0b-3428-ae10-7f09e42f7552,SESCO,II.1.1,Buenos Aires,AR-B,annual,2020,bioetanol combustion consumption by to the public,756.90730665,TJ,CH4,10.0,kg/TJ,7569.0730665,kg -0f84543f-79d7-3a4a-8c2e-efc9167b3c33,SESCO,II.1.1,Buenos Aires,AR-B,annual,2020,bioetanol combustion consumption by to the public,756.90730665,TJ,N2O,0.6,kg/TJ,454.14438399,kg -a5ba34d5-a750-33c6-ba50-ac5ed52e6e74,SESCO,II.1.1,Capital Federal,AR-C,annual,2020,bioetanol combustion consumption by to the public,166.52640312,TJ,CH4,10.0,kg/TJ,1665.2640311999999,kg -5cf67d06-ea8d-3d06-9ac7-afab7243af69,SESCO,II.1.1,Capital Federal,AR-C,annual,2020,bioetanol combustion consumption by to the public,166.52640312,TJ,N2O,0.6,kg/TJ,99.915841872,kg -e8a9e642-c1e5-37c6-a9fb-3da30d922c8c,SESCO,II.1.1,Catamarca,AR-K,annual,2020,bioetanol combustion consumption by to the public,15.56205453,TJ,CH4,10.0,kg/TJ,155.6205453,kg -a26bfed7-908d-3bae-8820-9bd291f8c1a7,SESCO,II.1.1,Catamarca,AR-K,annual,2020,bioetanol combustion consumption by to the public,15.56205453,TJ,N2O,0.6,kg/TJ,9.337232718,kg -8a63a7d1-9352-3a40-89cc-7ae6c69a1093,SESCO,II.1.1,Chaco,AR-H,annual,2020,bioetanol combustion consumption by to the public,36.43643817,TJ,CH4,10.0,kg/TJ,364.3643817,kg -0f5acfcd-934e-383e-8a2f-b10ffdcaa4e1,SESCO,II.1.1,Chaco,AR-H,annual,2020,bioetanol combustion consumption by to the public,36.43643817,TJ,N2O,0.6,kg/TJ,21.861862902000002,kg -8e7dc0fe-76df-31f4-8f67-545cc9b3fc74,SESCO,II.1.1,Chubut,AR-U,annual,2020,bioetanol combustion consumption by to the public,62.051378400000004,TJ,CH4,10.0,kg/TJ,620.513784,kg -608d0536-8d4d-36f8-9223-b4eefacd41a6,SESCO,II.1.1,Chubut,AR-U,annual,2020,bioetanol combustion consumption by to the public,62.051378400000004,TJ,N2O,0.6,kg/TJ,37.23082704,kg -0f74a285-4ce9-3c7e-9053-e72f2844c12e,SESCO,II.1.1,Corrientes,AR-W,annual,2020,bioetanol combustion consumption by to the public,49.17712338,TJ,CH4,10.0,kg/TJ,491.7712338,kg -0b895f97-63a0-3eed-8f1e-5a8c0ff72c98,SESCO,II.1.1,Corrientes,AR-W,annual,2020,bioetanol combustion consumption by to the public,49.17712338,TJ,N2O,0.6,kg/TJ,29.506274027999996,kg -d6e808f2-0c75-3a0b-bb9f-05eafe226efb,SESCO,II.1.1,Córdoba,AR-X,annual,2020,bioetanol combustion consumption by to the public,178.21024649999998,TJ,CH4,10.0,kg/TJ,1782.102465,kg -03c49a98-94aa-3e09-a1c9-e12f124f961d,SESCO,II.1.1,Córdoba,AR-X,annual,2020,bioetanol combustion consumption by to the public,178.21024649999998,TJ,N2O,0.6,kg/TJ,106.92614789999999,kg -ca21d049-55a5-35e5-8947-f9d8c00e790f,SESCO,II.1.1,Entre Rios,AR-E,annual,2020,bioetanol combustion consumption by to the public,61.247616210000004,TJ,CH4,10.0,kg/TJ,612.4761621,kg -a01b4351-abd2-3d95-89e0-b58b6f368e3e,SESCO,II.1.1,Entre Rios,AR-E,annual,2020,bioetanol combustion consumption by to the public,61.247616210000004,TJ,N2O,0.6,kg/TJ,36.748569726,kg -7b81147e-1548-38df-b8e3-6c6c62e8248f,SESCO,II.1.1,Formosa,AR-P,annual,2020,bioetanol combustion consumption by to the public,14.934042089999998,TJ,CH4,10.0,kg/TJ,149.34042089999997,kg -6f77dcd0-290e-3799-ab57-354ae6967b4b,SESCO,II.1.1,Formosa,AR-P,annual,2020,bioetanol combustion consumption by to the public,14.934042089999998,TJ,N2O,0.6,kg/TJ,8.960425253999999,kg -19bea1f7-558e-3163-b870-6edf61ddec9a,SESCO,II.1.1,Jujuy,AR-Y,annual,2020,bioetanol combustion consumption by to the public,22.655314439999998,TJ,CH4,10.0,kg/TJ,226.55314439999998,kg -3ab02743-bd4a-3cc2-8886-f8d8a601d533,SESCO,II.1.1,Jujuy,AR-Y,annual,2020,bioetanol combustion consumption by to the public,22.655314439999998,TJ,N2O,0.6,kg/TJ,13.593188663999998,kg -5ae1a063-0166-346b-96bf-612d0385366b,SESCO,II.1.1,La Pampa,AR-L,annual,2020,bioetanol combustion consumption by to the public,48.77641395,TJ,CH4,10.0,kg/TJ,487.7641395,kg -75c4e332-80db-33bf-a9ab-5955ac1d8d8d,SESCO,II.1.1,La Pampa,AR-L,annual,2020,bioetanol combustion consumption by to the public,48.77641395,TJ,N2O,0.6,kg/TJ,29.265848369999997,kg -11d4cf96-5251-3fff-9c73-83f39c930992,SESCO,II.1.1,La Rioja,AR-F,annual,2020,bioetanol combustion consumption by to the public,19.1215728,TJ,CH4,10.0,kg/TJ,191.21572799999998,kg -88d91ba3-845d-3847-9013-26f6b656ca98,SESCO,II.1.1,La Rioja,AR-F,annual,2020,bioetanol combustion consumption by to the public,19.1215728,TJ,N2O,0.6,kg/TJ,11.472943679999998,kg -2b7088c7-7b7f-3888-898e-154509da4c35,SESCO,II.1.1,Mendoza,AR-M,annual,2020,bioetanol combustion consumption by to the public,130.98043034999998,TJ,CH4,10.0,kg/TJ,1309.8043034999998,kg -de74b3aa-1ad8-30a3-962a-1b3a5383e0ea,SESCO,II.1.1,Mendoza,AR-M,annual,2020,bioetanol combustion consumption by to the public,130.98043034999998,TJ,N2O,0.6,kg/TJ,78.58825820999998,kg -1fc64bff-a866-3f8b-a619-aa242eed0590,SESCO,II.1.1,Misiones,AR-N,annual,2020,bioetanol combustion consumption by to the public,47.94453179999999,TJ,CH4,10.0,kg/TJ,479.44531799999993,kg -c1002e36-0b9a-3cee-9702-3e363d7beff9,SESCO,II.1.1,Misiones,AR-N,annual,2020,bioetanol combustion consumption by to the public,47.94453179999999,TJ,N2O,0.6,kg/TJ,28.766719079999994,kg -775a20fc-b05c-3042-bbad-d0417d53de1f,SESCO,II.1.1,Neuquén,AR-Q,annual,2020,bioetanol combustion consumption by to the public,91.43204994,TJ,CH4,10.0,kg/TJ,914.3204994,kg -0fd126d5-fd30-347a-b637-f12785ce9e3b,SESCO,II.1.1,Neuquén,AR-Q,annual,2020,bioetanol combustion consumption by to the public,91.43204994,TJ,N2O,0.6,kg/TJ,54.859229964,kg -20710374-4895-3895-80b6-543c807a6b9f,SESCO,II.1.1,Rio Negro,AR-R,annual,2020,bioetanol combustion consumption by to the public,77.17523022,TJ,CH4,10.0,kg/TJ,771.7523022,kg -aeca245f-5bf5-3b80-8e54-0794cc0f5fba,SESCO,II.1.1,Rio Negro,AR-R,annual,2020,bioetanol combustion consumption by to the public,77.17523022,TJ,N2O,0.6,kg/TJ,46.305138132,kg -8f5eb728-03c3-3e5b-9a8b-94031c7b139f,SESCO,II.1.1,Salta,AR-A,annual,2020,bioetanol combustion consumption by to the public,53.54040384,TJ,CH4,10.0,kg/TJ,535.4040384,kg -3b51c876-e85e-3bc7-9d05-f5579634babe,SESCO,II.1.1,Salta,AR-A,annual,2020,bioetanol combustion consumption by to the public,53.54040384,TJ,N2O,0.6,kg/TJ,32.124242304,kg -6ac1ee60-ab93-35fe-bb57-9ea9ef51c61e,SESCO,II.1.1,San Juan,AR-J,annual,2020,bioetanol combustion consumption by to the public,39.39372063,TJ,CH4,10.0,kg/TJ,393.93720629999996,kg -28585d89-1531-360d-b2ce-bab4d1a8aea1,SESCO,II.1.1,San Juan,AR-J,annual,2020,bioetanol combustion consumption by to the public,39.39372063,TJ,N2O,0.6,kg/TJ,23.636232378,kg -ebb6e8e3-2a5b-3e65-a2c5-341a14fe6f02,SESCO,II.1.1,San Luis,AR-D,annual,2020,bioetanol combustion consumption by to the public,28.95887214,TJ,CH4,10.0,kg/TJ,289.5887214,kg -f94587c0-eae0-30e8-9ecf-226b3a4baca1,SESCO,II.1.1,San Luis,AR-D,annual,2020,bioetanol combustion consumption by to the public,28.95887214,TJ,N2O,0.6,kg/TJ,17.375323284,kg -f6612f18-b2f1-3f5a-a8fc-0a67e12c4a3f,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2020,bioetanol combustion consumption by to the public,26.72333532,TJ,CH4,10.0,kg/TJ,267.2333532,kg -58d0ca13-b452-3372-8f18-9ea486ccb4e1,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2020,bioetanol combustion consumption by to the public,26.72333532,TJ,N2O,0.6,kg/TJ,16.034001191999998,kg -35bf539a-ff69-3440-87af-87d4126048fe,SESCO,II.1.1,Santa Fe,AR-S,annual,2020,bioetanol combustion consumption by to the public,162.09047943,TJ,CH4,10.0,kg/TJ,1620.9047942999998,kg -1055b9f0-80ef-3ebe-aafc-c1a82124129e,SESCO,II.1.1,Santa Fe,AR-S,annual,2020,bioetanol combustion consumption by to the public,162.09047943,TJ,N2O,0.6,kg/TJ,97.254287658,kg -8be86413-6a79-3fd4-a1b9-3a30340f6dda,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2020,bioetanol combustion consumption by to the public,27.023281559999997,TJ,CH4,10.0,kg/TJ,270.2328156,kg -e1ab2287-9a0c-32c6-b1b5-9a05dcf87891,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2020,bioetanol combustion consumption by to the public,27.023281559999997,TJ,N2O,0.6,kg/TJ,16.213968935999997,kg -8597d6ab-1d57-3f57-bdfe-d4834551f618,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2020,bioetanol combustion consumption by to the public,17.842114619999997,TJ,CH4,10.0,kg/TJ,178.42114619999995,kg -d347b519-72ef-39fb-9fe5-bc9ba3426956,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2020,bioetanol combustion consumption by to the public,17.842114619999997,TJ,N2O,0.6,kg/TJ,10.705268771999998,kg -32e3d932-b4e0-3d14-82c5-4bf71ab09b84,SESCO,II.1.1,Tucuman,AR-T,annual,2020,bioetanol combustion consumption by to the public,43.143048629999996,TJ,CH4,10.0,kg/TJ,431.4304863,kg -3dacbac6-aabc-370c-9cae-1e001d47f115,SESCO,II.1.1,Tucuman,AR-T,annual,2020,bioetanol combustion consumption by to the public,43.143048629999996,TJ,N2O,0.6,kg/TJ,25.885829177999998,kg -67229b3f-1545-3b0e-95d9-008fda8cdd87,SESCO,II.1.1,Buenos Aires,AR-B,annual,2020,bioetanol combustion consumption by freight transport,20.86266699,TJ,CH4,10.0,kg/TJ,208.62666990000002,kg -250b71dd-2408-3819-bfce-98a3a0706434,SESCO,II.1.1,Buenos Aires,AR-B,annual,2020,bioetanol combustion consumption by freight transport,20.86266699,TJ,N2O,0.6,kg/TJ,12.517600194,kg -1c5b6a69-6920-3500-a8eb-ff79ac837696,SESCO,II.1.1,Capital Federal,AR-C,annual,2020,bioetanol combustion consumption by freight transport,23.44501665,TJ,CH4,10.0,kg/TJ,234.4501665,kg -8ae75327-4bd1-3425-b1b4-63df4974be60,SESCO,II.1.1,Capital Federal,AR-C,annual,2020,bioetanol combustion consumption by freight transport,23.44501665,TJ,N2O,0.6,kg/TJ,14.067009989999999,kg -9d335193-736c-3644-a85b-61f60973987c,SESCO,II.1.1,Catamarca,AR-K,annual,2020,bioetanol combustion consumption by freight transport,0.01640331,TJ,CH4,10.0,kg/TJ,0.16403310000000002,kg -64de60ed-52a5-3a6f-a213-8723d54e327d,SESCO,II.1.1,Catamarca,AR-K,annual,2020,bioetanol combustion consumption by freight transport,0.01640331,TJ,N2O,0.6,kg/TJ,0.009841986,kg -5ccddbd3-53c0-3f60-9a57-c6851d38687b,SESCO,II.1.1,Chaco,AR-H,annual,2020,bioetanol combustion consumption by freight transport,0.97013862,TJ,CH4,10.0,kg/TJ,9.7013862,kg -bc2158de-b1f7-31d7-b3a3-9d346314cb74,SESCO,II.1.1,Chaco,AR-H,annual,2020,bioetanol combustion consumption by freight transport,0.97013862,TJ,N2O,0.6,kg/TJ,0.5820831719999999,kg -8fabff79-4686-3cc3-9538-47d20e8a5502,SESCO,II.1.1,Chubut,AR-U,annual,2020,bioetanol combustion consumption by freight transport,1.4927012100000001,TJ,CH4,10.0,kg/TJ,14.9270121,kg -7b605c2c-467f-3054-b307-56ad5918c6d3,SESCO,II.1.1,Chubut,AR-U,annual,2020,bioetanol combustion consumption by freight transport,1.4927012100000001,TJ,N2O,0.6,kg/TJ,0.8956207260000001,kg -f9acf13f-e391-363c-af0c-05e6484bbd4e,SESCO,II.1.1,Corrientes,AR-W,annual,2020,bioetanol combustion consumption by freight transport,0.60692247,TJ,CH4,10.0,kg/TJ,6.0692246999999995,kg -a205d091-aa17-3d90-b0ca-e7a3a72b1725,SESCO,II.1.1,Corrientes,AR-W,annual,2020,bioetanol combustion consumption by freight transport,0.60692247,TJ,N2O,0.6,kg/TJ,0.364153482,kg -2a6c1abc-9b6c-371d-9f43-055fc9230a06,SESCO,II.1.1,Córdoba,AR-X,annual,2020,bioetanol combustion consumption by freight transport,4.4968502699999995,TJ,CH4,10.0,kg/TJ,44.968502699999995,kg -0358a389-1317-3746-bd35-81d7c896d02c,SESCO,II.1.1,Córdoba,AR-X,annual,2020,bioetanol combustion consumption by freight transport,4.4968502699999995,TJ,N2O,0.6,kg/TJ,2.6981101619999994,kg -0f1a9683-4af1-30a7-a581-fbd5b152872a,SESCO,II.1.1,Entre Rios,AR-E,annual,2020,bioetanol combustion consumption by freight transport,1.44349128,TJ,CH4,10.0,kg/TJ,14.4349128,kg -9e5c3c26-fdc2-39bb-b17b-c4ee270ad29e,SESCO,II.1.1,Entre Rios,AR-E,annual,2020,bioetanol combustion consumption by freight transport,1.44349128,TJ,N2O,0.6,kg/TJ,0.866094768,kg -3fd3df7b-9301-3811-b056-7c519c1713e8,SESCO,II.1.1,Formosa,AR-P,annual,2020,bioetanol combustion consumption by freight transport,0.03983661,TJ,CH4,10.0,kg/TJ,0.3983661,kg -a640de51-3f86-30e6-a684-07717186f188,SESCO,II.1.1,Formosa,AR-P,annual,2020,bioetanol combustion consumption by freight transport,0.03983661,TJ,N2O,0.6,kg/TJ,0.023901966,kg -dcf83364-550f-3c5f-829b-a89ce0051f1c,SESCO,II.1.1,Jujuy,AR-Y,annual,2020,bioetanol combustion consumption by freight transport,0.16871976,TJ,CH4,10.0,kg/TJ,1.6871976,kg -5f45f360-8dda-38ba-acda-8c8357439271,SESCO,II.1.1,Jujuy,AR-Y,annual,2020,bioetanol combustion consumption by freight transport,0.16871976,TJ,N2O,0.6,kg/TJ,0.101231856,kg -e6d8242e-fe8b-39c9-af60-c5345815ad01,SESCO,II.1.1,La Pampa,AR-L,annual,2020,bioetanol combustion consumption by freight transport,0.50850261,TJ,CH4,10.0,kg/TJ,5.085026099999999,kg -dd98045c-db51-39f9-b0c2-f8a35c6a32f5,SESCO,II.1.1,La Pampa,AR-L,annual,2020,bioetanol combustion consumption by freight transport,0.50850261,TJ,N2O,0.6,kg/TJ,0.305101566,kg -590900b8-4768-3ea6-bec9-ba970a11e834,SESCO,II.1.1,La Rioja,AR-F,annual,2020,bioetanol combustion consumption by freight transport,0.04920993,TJ,CH4,10.0,kg/TJ,0.4920993,kg -35bec974-a7ff-30d9-8b8d-8d9e76144315,SESCO,II.1.1,La Rioja,AR-F,annual,2020,bioetanol combustion consumption by freight transport,0.04920993,TJ,N2O,0.6,kg/TJ,0.029525957999999998,kg -c8d51d9f-135d-39cd-bf2a-59ce6f858db4,SESCO,II.1.1,Mendoza,AR-M,annual,2020,bioetanol combustion consumption by freight transport,2.0504137499999997,TJ,CH4,10.0,kg/TJ,20.5041375,kg -b755d19a-5bef-33d2-acfb-b3d83c4bd4fd,SESCO,II.1.1,Mendoza,AR-M,annual,2020,bioetanol combustion consumption by freight transport,2.0504137499999997,TJ,N2O,0.6,kg/TJ,1.2302482499999998,kg -68351de9-fce4-3cff-979d-a9713883bcdd,SESCO,II.1.1,Misiones,AR-N,annual,2020,bioetanol combustion consumption by freight transport,0.47335266,TJ,CH4,10.0,kg/TJ,4.733526599999999,kg -4d52bbc7-3bba-3995-ba4d-5ecddd2fe391,SESCO,II.1.1,Misiones,AR-N,annual,2020,bioetanol combustion consumption by freight transport,0.47335266,TJ,N2O,0.6,kg/TJ,0.284011596,kg -30a3d132-7cac-3156-8281-b3a8209a7a78,SESCO,II.1.1,Neuquén,AR-Q,annual,2020,bioetanol combustion consumption by freight transport,0.59520582,TJ,CH4,10.0,kg/TJ,5.9520582,kg -38d9ae93-8f07-3a9f-9878-e3b7a53f118a,SESCO,II.1.1,Neuquén,AR-Q,annual,2020,bioetanol combustion consumption by freight transport,0.59520582,TJ,N2O,0.6,kg/TJ,0.357123492,kg -02db61c7-f110-31bc-9cb1-12f077b3aaaa,SESCO,II.1.1,Rio Negro,AR-R,annual,2020,bioetanol combustion consumption by freight transport,1.08730512,TJ,CH4,10.0,kg/TJ,10.873051199999999,kg -492278ec-1dac-38e5-80f9-4fbc21f0fa54,SESCO,II.1.1,Rio Negro,AR-R,annual,2020,bioetanol combustion consumption by freight transport,1.08730512,TJ,N2O,0.6,kg/TJ,0.6523830719999999,kg -2d934582-8a8d-3809-8440-0febbc3d87a7,SESCO,II.1.1,Salta,AR-A,annual,2020,bioetanol combustion consumption by freight transport,1.1810383199999999,TJ,CH4,10.0,kg/TJ,11.810383199999999,kg -dfce9781-ceba-3734-b70c-6b26cd30534a,SESCO,II.1.1,Salta,AR-A,annual,2020,bioetanol combustion consumption by freight transport,1.1810383199999999,TJ,N2O,0.6,kg/TJ,0.7086229919999999,kg -15bd1748-7ca1-3600-b256-b8335ab20fdc,SESCO,II.1.1,San Juan,AR-J,annual,2020,bioetanol combustion consumption by freight transport,0.29994624,TJ,CH4,10.0,kg/TJ,2.9994623999999996,kg -06db8e01-7999-39c2-92f9-4fe6042d2e76,SESCO,II.1.1,San Juan,AR-J,annual,2020,bioetanol combustion consumption by freight transport,0.29994624,TJ,N2O,0.6,kg/TJ,0.17996774399999999,kg -c14c2bb2-822f-3d5a-a317-a6d9f8f8316c,SESCO,II.1.1,San Luis,AR-D,annual,2020,bioetanol combustion consumption by freight transport,0.32103621,TJ,CH4,10.0,kg/TJ,3.2103620999999998,kg -09797079-7c11-318b-919b-29e595203d30,SESCO,II.1.1,San Luis,AR-D,annual,2020,bioetanol combustion consumption by freight transport,0.32103621,TJ,N2O,0.6,kg/TJ,0.192621726,kg -84387b36-5405-31ea-9e76-370aaef02db8,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2020,bioetanol combustion consumption by freight transport,0.17809308,TJ,CH4,10.0,kg/TJ,1.7809308,kg -c493cab5-d256-3779-9c2b-9ccf8c320fba,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2020,bioetanol combustion consumption by freight transport,0.17809308,TJ,N2O,0.6,kg/TJ,0.10685584799999999,kg -27b7c076-f81c-38e2-b8b1-60b4f239eeb2,SESCO,II.1.1,Santa Fe,AR-S,annual,2020,bioetanol combustion consumption by freight transport,4.0539609,TJ,CH4,10.0,kg/TJ,40.539609,kg -fd4eeedb-a6c3-304d-9fe1-6535e1f54620,SESCO,II.1.1,Santa Fe,AR-S,annual,2020,bioetanol combustion consumption by freight transport,4.0539609,TJ,N2O,0.6,kg/TJ,2.43237654,kg -9a2612c3-74fc-307a-939a-24c2bf3df053,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2020,bioetanol combustion consumption by freight transport,0.07732989,TJ,CH4,10.0,kg/TJ,0.7732989,kg -055d0748-c2d3-3189-875b-741838cfb925,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2020,bioetanol combustion consumption by freight transport,0.07732989,TJ,N2O,0.6,kg/TJ,0.046397933999999995,kg -c61486b3-6edc-36e2-8496-ff1dcd7c8a31,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2020,bioetanol combustion consumption by freight transport,0.59989248,TJ,CH4,10.0,kg/TJ,5.998924799999999,kg -172f6ab4-4c48-3d5c-ad36-403659de3d48,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2020,bioetanol combustion consumption by freight transport,0.59989248,TJ,N2O,0.6,kg/TJ,0.35993548799999997,kg -ffd54af2-50e9-39b6-8dde-c66c89411e13,SESCO,II.1.1,Tucuman,AR-T,annual,2020,bioetanol combustion consumption by freight transport,1.09902177,TJ,CH4,10.0,kg/TJ,10.9902177,kg -ee71d225-1092-3d01-97fb-a331e99a73af,SESCO,II.1.1,Tucuman,AR-T,annual,2020,bioetanol combustion consumption by freight transport,1.09902177,TJ,N2O,0.6,kg/TJ,0.6594130619999999,kg -4292011b-ac53-35a3-a645-e5f0bbe42296,SESCO,II.1.1,Buenos Aires,AR-B,annual,2020,bioetanol combustion consumption by freight transport,13.71785382,TJ,CH4,10.0,kg/TJ,137.1785382,kg -719105cb-6960-397b-b0de-39b8e8091d5f,SESCO,II.1.1,Buenos Aires,AR-B,annual,2020,bioetanol combustion consumption by freight transport,13.71785382,TJ,N2O,0.6,kg/TJ,8.230712292,kg -cabe19fa-a547-365e-9510-2fde4806bcb2,SESCO,II.1.1,Capital Federal,AR-C,annual,2020,bioetanol combustion consumption by freight transport,22.06245195,TJ,CH4,10.0,kg/TJ,220.6245195,kg -0820b60f-fb85-3bf2-88ec-ee91d14e6a2a,SESCO,II.1.1,Capital Federal,AR-C,annual,2020,bioetanol combustion consumption by freight transport,22.06245195,TJ,N2O,0.6,kg/TJ,13.23747117,kg -42f58d13-27e7-3f3f-bf5f-1bf7f9bf1e94,SESCO,II.1.1,Catamarca,AR-K,annual,2020,bioetanol combustion consumption by freight transport,0.00937332,TJ,CH4,10.0,kg/TJ,0.09373319999999999,kg -0dc320e9-0e3f-37af-9e4d-3c105aba927e,SESCO,II.1.1,Catamarca,AR-K,annual,2020,bioetanol combustion consumption by freight transport,0.00937332,TJ,N2O,0.6,kg/TJ,0.0056239919999999995,kg -399560d4-28cc-389e-a660-77b278c919f3,SESCO,II.1.1,Chaco,AR-H,annual,2020,bioetanol combustion consumption by freight transport,0.37961945999999996,TJ,CH4,10.0,kg/TJ,3.7961945999999998,kg -127b972d-c9e6-3012-8a43-82fa83691c68,SESCO,II.1.1,Chaco,AR-H,annual,2020,bioetanol combustion consumption by freight transport,0.37961945999999996,TJ,N2O,0.6,kg/TJ,0.22777167599999998,kg -e205dc14-0e0b-30e5-8dff-e58f6a77e14a,SESCO,II.1.1,Chubut,AR-U,annual,2020,bioetanol combustion consumption by freight transport,0.61863912,TJ,CH4,10.0,kg/TJ,6.1863912,kg -a4bdf664-3fe4-37dc-a6c5-c0e3f06ddcc1,SESCO,II.1.1,Chubut,AR-U,annual,2020,bioetanol combustion consumption by freight transport,0.61863912,TJ,N2O,0.6,kg/TJ,0.37118347199999996,kg -0c8d985e-1e8d-35f5-8d23-922a1b0aadd1,SESCO,II.1.1,Corrientes,AR-W,annual,2020,bioetanol combustion consumption by freight transport,0.76626891,TJ,CH4,10.0,kg/TJ,7.6626891,kg -1eb76fe5-699d-3756-a38d-407ff6c7e00e,SESCO,II.1.1,Corrientes,AR-W,annual,2020,bioetanol combustion consumption by freight transport,0.76626891,TJ,N2O,0.6,kg/TJ,0.45976134599999996,kg -554002fd-95b0-3104-8579-1b53822e82d4,SESCO,II.1.1,Córdoba,AR-X,annual,2020,bioetanol combustion consumption by freight transport,9.38269332,TJ,CH4,10.0,kg/TJ,93.8269332,kg -9db352f7-6cb7-3bc9-a8f5-f4749c28e847,SESCO,II.1.1,Córdoba,AR-X,annual,2020,bioetanol combustion consumption by freight transport,9.38269332,TJ,N2O,0.6,kg/TJ,5.629615992,kg -07c977a8-3d14-327b-af3d-805272f40f62,SESCO,II.1.1,Entre Rios,AR-E,annual,2020,bioetanol combustion consumption by freight transport,1.27711485,TJ,CH4,10.0,kg/TJ,12.7711485,kg -540fe75c-f4f2-39b6-be26-5fa8f63ee7c8,SESCO,II.1.1,Entre Rios,AR-E,annual,2020,bioetanol combustion consumption by freight transport,1.27711485,TJ,N2O,0.6,kg/TJ,0.76626891,kg -4c412e63-945c-3bd5-965e-ac0947e12070,SESCO,II.1.1,Formosa,AR-P,annual,2020,bioetanol combustion consumption by freight transport,0.02811996,TJ,CH4,10.0,kg/TJ,0.2811996,kg -45fdfd77-36a2-30ac-8c15-17dd5c14541c,SESCO,II.1.1,Formosa,AR-P,annual,2020,bioetanol combustion consumption by freight transport,0.02811996,TJ,N2O,0.6,kg/TJ,0.016871976,kg -b4ae5967-8941-3cbf-857e-c78b93be6529,SESCO,II.1.1,Jujuy,AR-Y,annual,2020,bioetanol combustion consumption by freight transport,0.12888315,TJ,CH4,10.0,kg/TJ,1.2888315000000001,kg -aa5554b8-7a0b-3380-b0a3-7c3a86a46274,SESCO,II.1.1,Jujuy,AR-Y,annual,2020,bioetanol combustion consumption by freight transport,0.12888315,TJ,N2O,0.6,kg/TJ,0.07732989,kg -25c793dc-f656-35fe-861e-7c6612624eb4,SESCO,II.1.1,La Pampa,AR-L,annual,2020,bioetanol combustion consumption by freight transport,0.26713962,TJ,CH4,10.0,kg/TJ,2.6713962,kg -5b119605-d3f9-3894-96aa-8ed5fed4155a,SESCO,II.1.1,La Pampa,AR-L,annual,2020,bioetanol combustion consumption by freight transport,0.26713962,TJ,N2O,0.6,kg/TJ,0.16028377200000002,kg -953dc6fa-4bcf-371b-b08a-2622480621a2,SESCO,II.1.1,La Rioja,AR-F,annual,2020,bioetanol combustion consumption by freight transport,0.16168976999999998,TJ,CH4,10.0,kg/TJ,1.6168976999999998,kg -09319f91-8065-3bc6-bde3-9e2a26191879,SESCO,II.1.1,La Rioja,AR-F,annual,2020,bioetanol combustion consumption by freight transport,0.16168976999999998,TJ,N2O,0.6,kg/TJ,0.09701386199999999,kg -ada2d9b4-a22f-3715-829d-931dabd6ab5e,SESCO,II.1.1,Mendoza,AR-M,annual,2020,bioetanol combustion consumption by freight transport,3.36970854,TJ,CH4,10.0,kg/TJ,33.6970854,kg -3c73c240-7a5c-32aa-a13e-ef7c26926001,SESCO,II.1.1,Mendoza,AR-M,annual,2020,bioetanol combustion consumption by freight transport,3.36970854,TJ,N2O,0.6,kg/TJ,2.021825124,kg -6a7632f5-a8bf-3d0a-9e5a-ddc1c929463f,SESCO,II.1.1,Misiones,AR-N,annual,2020,bioetanol combustion consumption by freight transport,0.57177252,TJ,CH4,10.0,kg/TJ,5.7177252,kg -cd62c366-4765-3f40-bbe5-006fd9a63cd4,SESCO,II.1.1,Misiones,AR-N,annual,2020,bioetanol combustion consumption by freight transport,0.57177252,TJ,N2O,0.6,kg/TJ,0.343063512,kg -315c4db7-9030-3218-8e7d-75954351b954,SESCO,II.1.1,Neuquén,AR-Q,annual,2020,bioetanol combustion consumption by freight transport,1.69422759,TJ,CH4,10.0,kg/TJ,16.9422759,kg -de22f63c-f348-3555-9847-f9b58a60d7af,SESCO,II.1.1,Neuquén,AR-Q,annual,2020,bioetanol combustion consumption by freight transport,1.69422759,TJ,N2O,0.6,kg/TJ,1.016536554,kg -2ae883d9-7676-3a9d-bb9a-f38e1dc54fe9,SESCO,II.1.1,Rio Negro,AR-R,annual,2020,bioetanol combustion consumption by freight transport,3.2642586899999997,TJ,CH4,10.0,kg/TJ,32.6425869,kg -fe069eed-ecd7-3c49-8c0c-23bab78ab2ae,SESCO,II.1.1,Rio Negro,AR-R,annual,2020,bioetanol combustion consumption by freight transport,3.2642586899999997,TJ,N2O,0.6,kg/TJ,1.9585552139999998,kg -3ff4f572-a732-30a3-9ed6-dce2b30794a7,SESCO,II.1.1,Salta,AR-A,annual,2020,bioetanol combustion consumption by freight transport,0.96779529,TJ,CH4,10.0,kg/TJ,9.6779529,kg -c7372dc1-fb69-3163-b77c-00036300c42e,SESCO,II.1.1,Salta,AR-A,annual,2020,bioetanol combustion consumption by freight transport,0.96779529,TJ,N2O,0.6,kg/TJ,0.580677174,kg -59ff752a-c957-3874-853f-bb943de49a3d,SESCO,II.1.1,San Juan,AR-J,annual,2020,bioetanol combustion consumption by freight transport,0.11950983,TJ,CH4,10.0,kg/TJ,1.1950983,kg -92dc6860-b3ef-38a8-8b04-dc95f32fddd3,SESCO,II.1.1,San Juan,AR-J,annual,2020,bioetanol combustion consumption by freight transport,0.11950983,TJ,N2O,0.6,kg/TJ,0.07170589799999999,kg -298ed66a-c800-32fc-b9a5-ab8fb020c6b8,SESCO,II.1.1,San Luis,AR-D,annual,2020,bioetanol combustion consumption by freight transport,0.29057292,TJ,CH4,10.0,kg/TJ,2.9057292,kg -9ae2e8e6-90c1-3ad2-8e3e-99c045b6e931,SESCO,II.1.1,San Luis,AR-D,annual,2020,bioetanol combustion consumption by freight transport,0.29057292,TJ,N2O,0.6,kg/TJ,0.174343752,kg -4fbdcdb4-b19a-3df6-bb17-94d514b72549,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2020,bioetanol combustion consumption by freight transport,0.13591314,TJ,CH4,10.0,kg/TJ,1.3591313999999999,kg -fc2bfbc0-d6a6-31b5-909d-92ea88654ac0,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2020,bioetanol combustion consumption by freight transport,0.13591314,TJ,N2O,0.6,kg/TJ,0.08154788399999999,kg -845c6aa8-fc68-32bd-9020-440eb85a1f51,SESCO,II.1.1,Santa Fe,AR-S,annual,2020,bioetanol combustion consumption by freight transport,4.45935699,TJ,CH4,10.0,kg/TJ,44.5935699,kg -bae9440e-311d-336a-82a6-e533b1e2ba77,SESCO,II.1.1,Santa Fe,AR-S,annual,2020,bioetanol combustion consumption by freight transport,4.45935699,TJ,N2O,0.6,kg/TJ,2.675614194,kg -445335d6-0f41-30e6-842a-f48e0bc0e685,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2020,bioetanol combustion consumption by freight transport,0.10310652,TJ,CH4,10.0,kg/TJ,1.0310652,kg -5fe17bf7-6852-3c68-b3f5-196451f7a48a,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2020,bioetanol combustion consumption by freight transport,0.10310652,TJ,N2O,0.6,kg/TJ,0.06186391199999999,kg -89943ff1-f12d-3cc7-9520-011789d0c102,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2020,bioetanol combustion consumption by freight transport,0.17809308,TJ,CH4,10.0,kg/TJ,1.7809308,kg -b8e4c7e2-01de-3692-85d3-acef62dd318d,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2020,bioetanol combustion consumption by freight transport,0.17809308,TJ,N2O,0.6,kg/TJ,0.10685584799999999,kg -7fbb2787-4899-34f9-9c26-188e06fc44c8,SESCO,II.1.1,Tucuman,AR-T,annual,2020,bioetanol combustion consumption by freight transport,0.46397934,TJ,CH4,10.0,kg/TJ,4.6397934,kg -f00c9915-21b7-376f-a268-b309af4a067e,SESCO,II.1.1,Tucuman,AR-T,annual,2020,bioetanol combustion consumption by freight transport,0.46397934,TJ,N2O,0.6,kg/TJ,0.278387604,kg -8c6ece75-dc47-3ca8-a664-21aa178b8119,SESCO,II.5.1,Buenos Aires,AR-B,annual,2021,bioetanol combustion consumption by agriculture machines,0.5976258407999999,TJ,CH4,10.0,kg/TJ,5.976258408,kg -7577d7d7-a173-3d1b-bcec-94d4757b9abe,SESCO,II.5.1,Buenos Aires,AR-B,annual,2021,bioetanol combustion consumption by agriculture machines,0.5976258407999999,TJ,N2O,0.6,kg/TJ,0.3585755044799999,kg -997a4f2c-09fb-3dda-bb38-d01c84a7822c,SESCO,II.5.1,Córdoba,AR-X,annual,2021,bioetanol combustion consumption by agriculture machines,0.17383247999999998,TJ,CH4,10.0,kg/TJ,1.7383247999999998,kg -4ced7332-53d4-3a62-8513-c94371d09456,SESCO,II.5.1,Córdoba,AR-X,annual,2021,bioetanol combustion consumption by agriculture machines,0.17383247999999998,TJ,N2O,0.6,kg/TJ,0.10429948799999998,kg -37a287b0-8396-3b20-a9b2-deeb3c30d264,SESCO,II.5.1,Santa Fe,AR-S,annual,2021,bioetanol combustion consumption by agriculture machines,0.5138283599999999,TJ,CH4,10.0,kg/TJ,5.1382835999999985,kg -85da1ca2-eebd-350d-961e-b127eb8f33c3,SESCO,II.5.1,Santa Fe,AR-S,annual,2021,bioetanol combustion consumption by agriculture machines,0.5138283599999999,TJ,N2O,0.6,kg/TJ,0.3082970159999999,kg -cd74402f-0531-3761-b4d5-04bbeb1c679e,SESCO,II.5.1,Buenos Aires,AR-B,annual,2021,bioetanol combustion consumption by agriculture machines,0.10481075999999999,TJ,CH4,10.0,kg/TJ,1.0481075999999998,kg -e60657ad-9732-32eb-bf91-4b1f6e160542,SESCO,II.5.1,Buenos Aires,AR-B,annual,2021,bioetanol combustion consumption by agriculture machines,0.10481075999999999,TJ,N2O,0.6,kg/TJ,0.062886456,kg -af642404-c5c5-31f3-a9e7-0008bb7db7ec,SESCO,II.5.1,Córdoba,AR-X,annual,2021,bioetanol combustion consumption by agriculture machines,0.043458119999999996,TJ,CH4,10.0,kg/TJ,0.43458119999999995,kg -d5bc3141-30b1-3283-b409-8017e7eafd4e,SESCO,II.5.1,Córdoba,AR-X,annual,2021,bioetanol combustion consumption by agriculture machines,0.043458119999999996,TJ,N2O,0.6,kg/TJ,0.026074871999999995,kg -9468589b-08aa-3104-ad9d-baf4743e991e,SESCO,II.1.1,Buenos Aires,AR-B,annual,2021,bioetanol combustion consumption by to the public,74.64315563999999,TJ,CH4,10.0,kg/TJ,746.4315563999999,kg -f120f924-d7a2-3da7-8d45-1acb775f2327,SESCO,II.1.1,Buenos Aires,AR-B,annual,2021,bioetanol combustion consumption by to the public,74.64315563999999,TJ,N2O,0.6,kg/TJ,44.78589338399999,kg -8c5ab38f-67f5-395b-9ab9-cda7ac8c7a7d,SESCO,II.1.1,Capital Federal,AR-C,annual,2021,bioetanol combustion consumption by to the public,4.29724116,TJ,CH4,10.0,kg/TJ,42.972411599999994,kg -d3fbf987-4c17-38ce-9638-411bff9a5777,SESCO,II.1.1,Capital Federal,AR-C,annual,2021,bioetanol combustion consumption by to the public,4.29724116,TJ,N2O,0.6,kg/TJ,2.578344696,kg -b27a6188-8d29-3036-8eed-571059f04f09,SESCO,II.1.1,Catamarca,AR-K,annual,2021,bioetanol combustion consumption by to the public,2.7225233999999996,TJ,CH4,10.0,kg/TJ,27.225233999999997,kg -cc80f814-8031-3354-a077-61b721526460,SESCO,II.1.1,Catamarca,AR-K,annual,2021,bioetanol combustion consumption by to the public,2.7225233999999996,TJ,N2O,0.6,kg/TJ,1.6335140399999997,kg -ce2d013e-8646-360a-899e-39d9b1907610,SESCO,II.1.1,Chaco,AR-H,annual,2021,bioetanol combustion consumption by to the public,0.7490134799999999,TJ,CH4,10.0,kg/TJ,7.490134799999999,kg -da58dc82-4184-3f32-ae9e-a890d7dca818,SESCO,II.1.1,Chaco,AR-H,annual,2021,bioetanol combustion consumption by to the public,0.7490134799999999,TJ,N2O,0.6,kg/TJ,0.44940808799999993,kg -e9fa4cae-2fa2-359e-bf20-532b29045943,SESCO,II.1.1,Corrientes,AR-W,annual,2021,bioetanol combustion consumption by to the public,1.11457296,TJ,CH4,10.0,kg/TJ,11.145729600000001,kg -5e32f2e7-b8ad-3e87-b32f-0f92d8ab6af3,SESCO,II.1.1,Corrientes,AR-W,annual,2021,bioetanol combustion consumption by to the public,1.11457296,TJ,N2O,0.6,kg/TJ,0.668743776,kg -65c661ea-82b4-320d-95a1-1eb07acc1d59,SESCO,II.1.1,Córdoba,AR-X,annual,2021,bioetanol combustion consumption by to the public,35.30077524,TJ,CH4,10.0,kg/TJ,353.0077524,kg -bd42de50-4292-3adf-8863-456d852b36cd,SESCO,II.1.1,Córdoba,AR-X,annual,2021,bioetanol combustion consumption by to the public,35.30077524,TJ,N2O,0.6,kg/TJ,21.180465144,kg -5c03102d-422e-3c09-9a56-68b274d9ceab,SESCO,II.1.1,Entre Rios,AR-E,annual,2021,bioetanol combustion consumption by to the public,9.64770264,TJ,CH4,10.0,kg/TJ,96.4770264,kg -f38126e0-2f7c-3db0-a86a-5a4c3b344529,SESCO,II.1.1,Entre Rios,AR-E,annual,2021,bioetanol combustion consumption by to the public,9.64770264,TJ,N2O,0.6,kg/TJ,5.788621584,kg -088a703e-1557-328f-b13a-26fa37f9d5bf,SESCO,II.1.1,Mendoza,AR-M,annual,2021,bioetanol combustion consumption by to the public,22.738822199999998,TJ,CH4,10.0,kg/TJ,227.38822199999998,kg -426cc70e-8041-3b7e-9b1c-88eb41882f42,SESCO,II.1.1,Mendoza,AR-M,annual,2021,bioetanol combustion consumption by to the public,22.738822199999998,TJ,N2O,0.6,kg/TJ,13.643293319999998,kg -46fef6b2-e1f8-3bea-9ab9-6c7809b9ffaa,SESCO,II.1.1,San Juan,AR-J,annual,2021,bioetanol combustion consumption by to the public,0.29142503999999997,TJ,CH4,10.0,kg/TJ,2.9142504,kg -c770c777-db7f-3c63-bee9-3ae6314fe113,SESCO,II.1.1,San Juan,AR-J,annual,2021,bioetanol combustion consumption by to the public,0.29142503999999997,TJ,N2O,0.6,kg/TJ,0.17485502399999997,kg -2f220e00-307f-35c2-a2ec-1d3307e510fa,SESCO,II.1.1,San Luis,AR-D,annual,2021,bioetanol combustion consumption by to the public,4.166866799999999,TJ,CH4,10.0,kg/TJ,41.668668,kg -7ef13dd6-d1b0-3e88-be6f-b4d8b93247bc,SESCO,II.1.1,San Luis,AR-D,annual,2021,bioetanol combustion consumption by to the public,4.166866799999999,TJ,N2O,0.6,kg/TJ,2.5001200799999994,kg -5c005299-0d80-39ac-8e49-c308dddb3d12,SESCO,II.1.1,Santa Fe,AR-S,annual,2021,bioetanol combustion consumption by to the public,26.15411916,TJ,CH4,10.0,kg/TJ,261.5411916,kg -a775e75d-c62d-3d62-a63e-c4e24799e7bc,SESCO,II.1.1,Santa Fe,AR-S,annual,2021,bioetanol combustion consumption by to the public,26.15411916,TJ,N2O,0.6,kg/TJ,15.692471496,kg -8effdcac-76fc-3f1c-b311-14ef194dcb0b,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2021,bioetanol combustion consumption by to the public,4.1413032,TJ,CH4,10.0,kg/TJ,41.413032,kg -4f1a3811-7fe0-3e90-aa98-a0dcb21ebece,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2021,bioetanol combustion consumption by to the public,4.1413032,TJ,N2O,0.6,kg/TJ,2.48478192,kg -7513a402-fff1-3886-8b84-72fd01f95ea8,SESCO,II.1.1,Tucuman,AR-T,annual,2021,bioetanol combustion consumption by to the public,2.22658956,TJ,CH4,10.0,kg/TJ,22.2658956,kg -349eb982-791c-3378-9b11-42953a252265,SESCO,II.1.1,Tucuman,AR-T,annual,2021,bioetanol combustion consumption by to the public,2.22658956,TJ,N2O,0.6,kg/TJ,1.3359537359999998,kg -8f1f0884-2e0b-3154-90c6-dadbaf3a94d9,SESCO,II.1.1,Buenos Aires,AR-B,annual,2021,bioetanol combustion consumption by to the public,5.309559719999999,TJ,CH4,10.0,kg/TJ,53.09559719999999,kg -8d50333e-ef62-3758-a4cf-febb7a332d3d,SESCO,II.1.1,Buenos Aires,AR-B,annual,2021,bioetanol combustion consumption by to the public,5.309559719999999,TJ,N2O,0.6,kg/TJ,3.1857358319999993,kg -ec505e57-1d26-3d39-9aab-3ddd0a9dfb9e,SESCO,II.1.1,Capital Federal,AR-C,annual,2021,bioetanol combustion consumption by to the public,0.7004426399999999,TJ,CH4,10.0,kg/TJ,7.004426399999999,kg -cb6de2a3-76bd-35d8-adbd-c0ac63f1c940,SESCO,II.1.1,Capital Federal,AR-C,annual,2021,bioetanol combustion consumption by to the public,0.7004426399999999,TJ,N2O,0.6,kg/TJ,0.4202655839999999,kg -b08fb1f3-1a54-3c8b-9268-4f92e03f9131,SESCO,II.1.1,Catamarca,AR-K,annual,2021,bioetanol combustion consumption by to the public,0.30931956,TJ,CH4,10.0,kg/TJ,3.0931956,kg -b4317ac1-f8f4-3871-8784-c7a9c8666977,SESCO,II.1.1,Catamarca,AR-K,annual,2021,bioetanol combustion consumption by to the public,0.30931956,TJ,N2O,0.6,kg/TJ,0.18559173599999998,kg -980b3ac5-06f1-335d-9f18-6f4701d2c61a,SESCO,II.1.1,Chaco,AR-H,annual,2021,bioetanol combustion consumption by to the public,0.017894519999999997,TJ,CH4,10.0,kg/TJ,0.17894519999999997,kg -d1ee5dd1-d789-3840-95c9-e86809dacb90,SESCO,II.1.1,Chaco,AR-H,annual,2021,bioetanol combustion consumption by to the public,0.017894519999999997,TJ,N2O,0.6,kg/TJ,0.010736711999999997,kg -7ddfba58-6a09-31d1-9796-1da53061420c,SESCO,II.1.1,Corrientes,AR-W,annual,2021,bioetanol combustion consumption by to the public,0.035789039999999994,TJ,CH4,10.0,kg/TJ,0.35789039999999994,kg -f4f590bc-45cd-3f77-a380-15beac892e57,SESCO,II.1.1,Corrientes,AR-W,annual,2021,bioetanol combustion consumption by to the public,0.035789039999999994,TJ,N2O,0.6,kg/TJ,0.021473423999999994,kg -36997a05-5fcd-35e7-8267-09a063d33402,SESCO,II.1.1,Córdoba,AR-X,annual,2021,bioetanol combustion consumption by to the public,3.5661222,TJ,CH4,10.0,kg/TJ,35.661222,kg -71306cd5-0b42-390a-80ba-8d81f3a81a13,SESCO,II.1.1,Córdoba,AR-X,annual,2021,bioetanol combustion consumption by to the public,3.5661222,TJ,N2O,0.6,kg/TJ,2.13967332,kg -e8c4cebc-bb27-3bf7-aec0-ee83ebf8d5cb,SESCO,II.1.1,Entre Rios,AR-E,annual,2021,bioetanol combustion consumption by to the public,0.77202072,TJ,CH4,10.0,kg/TJ,7.7202072,kg -cd55a858-a3ce-3689-a8ff-e10d6d770462,SESCO,II.1.1,Entre Rios,AR-E,annual,2021,bioetanol combustion consumption by to the public,0.77202072,TJ,N2O,0.6,kg/TJ,0.46321243199999995,kg -92dbc3ce-1394-30a5-bbd7-28f6e100a2d0,SESCO,II.1.1,Mendoza,AR-M,annual,2021,bioetanol combustion consumption by to the public,3.38206428,TJ,CH4,10.0,kg/TJ,33.8206428,kg -207ff150-c675-30b3-bbc6-24f391feada0,SESCO,II.1.1,Mendoza,AR-M,annual,2021,bioetanol combustion consumption by to the public,3.38206428,TJ,N2O,0.6,kg/TJ,2.029238568,kg -ec05a66e-6c99-3bd6-8572-81864ef4871d,SESCO,II.1.1,San Juan,AR-J,annual,2021,bioetanol combustion consumption by to the public,0.0255636,TJ,CH4,10.0,kg/TJ,0.255636,kg -b115e882-e144-3b16-9943-048c47474fc1,SESCO,II.1.1,San Juan,AR-J,annual,2021,bioetanol combustion consumption by to the public,0.0255636,TJ,N2O,0.6,kg/TJ,0.015338159999999998,kg -66527998-8c39-3df8-a673-bb831eda7ac7,SESCO,II.1.1,San Luis,AR-D,annual,2021,bioetanol combustion consumption by to the public,0.15338159999999998,TJ,CH4,10.0,kg/TJ,1.5338159999999998,kg -4a8b1c1d-71b8-3a5a-8a0a-e54cdc8beaa8,SESCO,II.1.1,San Luis,AR-D,annual,2021,bioetanol combustion consumption by to the public,0.15338159999999998,TJ,N2O,0.6,kg/TJ,0.09202895999999998,kg -8366f3f4-8f4e-3b05-b7d7-ff8ec4691bf1,SESCO,II.1.1,Santa Fe,AR-S,annual,2021,bioetanol combustion consumption by to the public,3.45364236,TJ,CH4,10.0,kg/TJ,34.5364236,kg -7779b0e4-da86-38e7-86e3-10a4adc17880,SESCO,II.1.1,Santa Fe,AR-S,annual,2021,bioetanol combustion consumption by to the public,3.45364236,TJ,N2O,0.6,kg/TJ,2.072185416,kg -696fbd33-659c-3d8c-8cca-8994b3a2d6df,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2021,bioetanol combustion consumption by to the public,0.5010465599999999,TJ,CH4,10.0,kg/TJ,5.010465599999999,kg -b59ad37d-3637-3ce9-aed2-8ed30a672a80,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2021,bioetanol combustion consumption by to the public,0.5010465599999999,TJ,N2O,0.6,kg/TJ,0.30062793599999993,kg -8492dee2-911a-31a9-8f77-a94515682ee1,SESCO,II.1.1,Tucuman,AR-T,annual,2021,bioetanol combustion consumption by to the public,0.015338159999999998,TJ,CH4,10.0,kg/TJ,0.15338159999999998,kg -e4c9483b-85af-356e-8055-adde5ba8ea71,SESCO,II.1.1,Tucuman,AR-T,annual,2021,bioetanol combustion consumption by to the public,0.015338159999999998,TJ,N2O,0.6,kg/TJ,0.009202895999999999,kg -f907bc0d-b35c-37db-9016-20956a8077d0,SESCO,II.5.1,Córdoba,AR-X,annual,2021,bioetanol combustion consumption by agriculture machines,0.46270115999999994,TJ,CH4,10.0,kg/TJ,4.6270115999999994,kg -529e0388-db37-3a2c-818c-cbada789b99d,SESCO,II.5.1,Córdoba,AR-X,annual,2021,bioetanol combustion consumption by agriculture machines,0.46270115999999994,TJ,N2O,0.6,kg/TJ,0.27762069599999994,kg -3c6fa9a9-6965-3260-b464-40db61a1a621,SESCO,II.5.1,Mendoza,AR-M,annual,2021,bioetanol combustion consumption by agriculture machines,0.12270527999999999,TJ,CH4,10.0,kg/TJ,1.2270527999999998,kg -1367eb42-fad6-3efa-9871-df90727a6942,SESCO,II.5.1,Mendoza,AR-M,annual,2021,bioetanol combustion consumption by agriculture machines,0.12270527999999999,TJ,N2O,0.6,kg/TJ,0.07362316799999999,kg -0e04fe80-4361-3510-87f0-210352339202,SESCO,II.5.1,Salta,AR-A,annual,2021,bioetanol combustion consumption by agriculture machines,0.030676319999999997,TJ,CH4,10.0,kg/TJ,0.30676319999999996,kg -c556fd6a-f5db-39a4-972f-42786c72fe52,SESCO,II.5.1,Salta,AR-A,annual,2021,bioetanol combustion consumption by agriculture machines,0.030676319999999997,TJ,N2O,0.6,kg/TJ,0.018405791999999997,kg -dc4de520-bbb5-3916-bf36-2bec8529b04e,SESCO,II.5.1,Córdoba,AR-X,annual,2021,bioetanol combustion consumption by agriculture machines,0.040901759999999995,TJ,CH4,10.0,kg/TJ,0.4090176,kg -bfcb8c6e-8f54-3990-9804-7891518a9db0,SESCO,II.5.1,Córdoba,AR-X,annual,2021,bioetanol combustion consumption by agriculture machines,0.040901759999999995,TJ,N2O,0.6,kg/TJ,0.024541055999999995,kg -61a26da2-4638-3402-950c-bb03fd7d1f4b,SESCO,II.1.1,Buenos Aires,AR-B,annual,2021,bioetanol combustion consumption by to the public,75.03683507999999,TJ,CH4,10.0,kg/TJ,750.3683507999999,kg -fc65a53f-bb3a-3796-a4db-af11451c6167,SESCO,II.1.1,Buenos Aires,AR-B,annual,2021,bioetanol combustion consumption by to the public,75.03683507999999,TJ,N2O,0.6,kg/TJ,45.02210104799999,kg -e7a85ec1-9e51-3408-903e-2bd38955442d,SESCO,II.1.1,Capital Federal,AR-C,annual,2021,bioetanol combustion consumption by to the public,12.827814479999999,TJ,CH4,10.0,kg/TJ,128.27814479999998,kg -927003e3-ecd8-3003-946e-05ae3d04a94b,SESCO,II.1.1,Capital Federal,AR-C,annual,2021,bioetanol combustion consumption by to the public,12.827814479999999,TJ,N2O,0.6,kg/TJ,7.696688687999999,kg -5698618c-11fa-38d5-8251-4081b6d24c98,SESCO,II.1.1,Catamarca,AR-K,annual,2021,bioetanol combustion consumption by to the public,6.219623879999999,TJ,CH4,10.0,kg/TJ,62.196238799999996,kg -7ac6d34d-81cf-3c04-bfc4-9af824ab4d98,SESCO,II.1.1,Catamarca,AR-K,annual,2021,bioetanol combustion consumption by to the public,6.219623879999999,TJ,N2O,0.6,kg/TJ,3.7317743279999993,kg -c7db4823-f796-3694-b246-8dd944fb0655,SESCO,II.1.1,Chaco,AR-H,annual,2021,bioetanol combustion consumption by to the public,14.39486316,TJ,CH4,10.0,kg/TJ,143.9486316,kg -76d53f69-6a1c-3e61-8408-ff22ebe18754,SESCO,II.1.1,Chaco,AR-H,annual,2021,bioetanol combustion consumption by to the public,14.39486316,TJ,N2O,0.6,kg/TJ,8.636917896,kg -76687703-2835-368b-8480-c05a8e41b33f,SESCO,II.1.1,Corrientes,AR-W,annual,2021,bioetanol combustion consumption by to the public,12.999090599999999,TJ,CH4,10.0,kg/TJ,129.990906,kg -c7c8d216-2c91-30f1-8fb6-0fdb300cc67f,SESCO,II.1.1,Corrientes,AR-W,annual,2021,bioetanol combustion consumption by to the public,12.999090599999999,TJ,N2O,0.6,kg/TJ,7.799454359999999,kg -ab778c8f-78d9-3e20-a645-5243cbdc2fcb,SESCO,II.1.1,Córdoba,AR-X,annual,2021,bioetanol combustion consumption by to the public,32.08743072,TJ,CH4,10.0,kg/TJ,320.8743072,kg -e82bc6da-7849-3f11-896e-9b2e2dc2a398,SESCO,II.1.1,Córdoba,AR-X,annual,2021,bioetanol combustion consumption by to the public,32.08743072,TJ,N2O,0.6,kg/TJ,19.252458432,kg -019005e1-ad7a-3f72-a181-65cfb26a6feb,SESCO,II.1.1,Entre Rios,AR-E,annual,2021,bioetanol combustion consumption by to the public,22.925436479999995,TJ,CH4,10.0,kg/TJ,229.25436479999996,kg -4976f740-6313-3222-926b-50f457c2b04a,SESCO,II.1.1,Entre Rios,AR-E,annual,2021,bioetanol combustion consumption by to the public,22.925436479999995,TJ,N2O,0.6,kg/TJ,13.755261887999996,kg -13f71803-d8a4-34f3-b05a-d2428d5b09cd,SESCO,II.1.1,Formosa,AR-P,annual,2021,bioetanol combustion consumption by to the public,3.2005627199999993,TJ,CH4,10.0,kg/TJ,32.00562719999999,kg -c4117b06-a411-3288-9595-0cc539873449,SESCO,II.1.1,Formosa,AR-P,annual,2021,bioetanol combustion consumption by to the public,3.2005627199999993,TJ,N2O,0.6,kg/TJ,1.9203376319999994,kg -a23774a3-896b-3150-ad34-5424570bd6c1,SESCO,II.1.1,La Rioja,AR-F,annual,2021,bioetanol combustion consumption by to the public,5.526850319999999,TJ,CH4,10.0,kg/TJ,55.2685032,kg -0b963970-9f47-30ca-bd54-55ae3205f7f7,SESCO,II.1.1,La Rioja,AR-F,annual,2021,bioetanol combustion consumption by to the public,5.526850319999999,TJ,N2O,0.6,kg/TJ,3.3161101919999996,kg -08aa64e0-8093-3eb6-8caa-328bf79bff5b,SESCO,II.1.1,Mendoza,AR-M,annual,2021,bioetanol combustion consumption by to the public,32.562913679999994,TJ,CH4,10.0,kg/TJ,325.62913679999997,kg -5d5ba784-bd45-3e21-bebd-1b8a498768d1,SESCO,II.1.1,Mendoza,AR-M,annual,2021,bioetanol combustion consumption by to the public,32.562913679999994,TJ,N2O,0.6,kg/TJ,19.537748207999996,kg -909c91b3-69e2-3fe6-9dd1-5b5718516738,SESCO,II.1.1,Misiones,AR-N,annual,2021,bioetanol combustion consumption by to the public,16.030933559999998,TJ,CH4,10.0,kg/TJ,160.30933559999997,kg -67ab8a69-9f4e-3a2b-aa03-e3afe464d055,SESCO,II.1.1,Misiones,AR-N,annual,2021,bioetanol combustion consumption by to the public,16.030933559999998,TJ,N2O,0.6,kg/TJ,9.618560135999997,kg -b9114de6-ee41-3187-abc0-011cf70c68fe,SESCO,II.1.1,Salta,AR-A,annual,2021,bioetanol combustion consumption by to the public,0.063909,TJ,CH4,10.0,kg/TJ,0.6390899999999999,kg -5ef6e0d3-089e-332d-8152-bc72f5a8c93b,SESCO,II.1.1,Salta,AR-A,annual,2021,bioetanol combustion consumption by to the public,0.063909,TJ,N2O,0.6,kg/TJ,0.038345399999999995,kg -c1c30882-4898-3c99-a91c-a25ca7829da5,SESCO,II.1.1,San Juan,AR-J,annual,2021,bioetanol combustion consumption by to the public,3.8754417599999997,TJ,CH4,10.0,kg/TJ,38.7544176,kg -3ea19010-c20a-33f9-8c07-3422faf18351,SESCO,II.1.1,San Juan,AR-J,annual,2021,bioetanol combustion consumption by to the public,3.8754417599999997,TJ,N2O,0.6,kg/TJ,2.3252650559999997,kg -26c63b6d-09e4-3371-8b68-2b534c9432f3,SESCO,II.1.1,San Luis,AR-D,annual,2021,bioetanol combustion consumption by to the public,1.3523144399999998,TJ,CH4,10.0,kg/TJ,13.523144399999998,kg -709b6d96-b0c3-38d9-9c11-d9a9b22c2848,SESCO,II.1.1,San Luis,AR-D,annual,2021,bioetanol combustion consumption by to the public,1.3523144399999998,TJ,N2O,0.6,kg/TJ,0.8113886639999999,kg -51c6bcd9-fe89-336d-8fa6-5d474f22ffe1,SESCO,II.1.1,Santa Fe,AR-S,annual,2021,bioetanol combustion consumption by to the public,24.46692156,TJ,CH4,10.0,kg/TJ,244.6692156,kg -60a80ab8-79bd-3841-b4a3-6729853402b2,SESCO,II.1.1,Santa Fe,AR-S,annual,2021,bioetanol combustion consumption by to the public,24.46692156,TJ,N2O,0.6,kg/TJ,14.680152935999999,kg -538aa8e7-17cf-3b12-b6c7-f7a621b65e53,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2021,bioetanol combustion consumption by to the public,7.51314204,TJ,CH4,10.0,kg/TJ,75.1314204,kg -c814f973-85c0-3437-9bb6-6211c5bf7c3a,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2021,bioetanol combustion consumption by to the public,7.51314204,TJ,N2O,0.6,kg/TJ,4.507885224,kg -a30283cc-bdbd-3ac9-a144-33bc85258f3a,SESCO,II.1.1,Tucuman,AR-T,annual,2021,bioetanol combustion consumption by to the public,3.40762788,TJ,CH4,10.0,kg/TJ,34.076278800000004,kg -801a90fb-5bf3-377d-b32a-ca1db1971956,SESCO,II.1.1,Tucuman,AR-T,annual,2021,bioetanol combustion consumption by to the public,3.40762788,TJ,N2O,0.6,kg/TJ,2.044576728,kg -b813d11b-03ce-3149-afd6-2eca84903495,SESCO,II.1.1,Buenos Aires,AR-B,annual,2021,bioetanol combustion consumption by to the public,8.55613692,TJ,CH4,10.0,kg/TJ,85.5613692,kg -9305fecb-8e8c-3a08-8b73-309fedb4179a,SESCO,II.1.1,Buenos Aires,AR-B,annual,2021,bioetanol combustion consumption by to the public,8.55613692,TJ,N2O,0.6,kg/TJ,5.1336821519999996,kg -1fdccb87-633b-3e92-bb6e-053a8e262e20,SESCO,II.1.1,Capital Federal,AR-C,annual,2021,bioetanol combustion consumption by to the public,1.8533609999999998,TJ,CH4,10.0,kg/TJ,18.53361,kg -0eabea5d-6412-317d-acbc-7c7dcb257470,SESCO,II.1.1,Capital Federal,AR-C,annual,2021,bioetanol combustion consumption by to the public,1.8533609999999998,TJ,N2O,0.6,kg/TJ,1.1120165999999998,kg -e5149e9c-d91e-34f7-9a2a-85a90646227e,SESCO,II.1.1,Catamarca,AR-K,annual,2021,bioetanol combustion consumption by to the public,0.6263082,TJ,CH4,10.0,kg/TJ,6.263082,kg -e9f2ed8e-c0ce-3f92-8c65-16071017771f,SESCO,II.1.1,Catamarca,AR-K,annual,2021,bioetanol combustion consumption by to the public,0.6263082,TJ,N2O,0.6,kg/TJ,0.37578491999999997,kg -b4c9f0d0-7a74-38e9-8e07-c2fcc648c81a,SESCO,II.1.1,Chaco,AR-H,annual,2021,bioetanol combustion consumption by to the public,1.0046494799999999,TJ,CH4,10.0,kg/TJ,10.046494799999998,kg -13beaad1-cafa-3714-a8bf-5f5af9755a8f,SESCO,II.1.1,Chaco,AR-H,annual,2021,bioetanol combustion consumption by to the public,1.0046494799999999,TJ,N2O,0.6,kg/TJ,0.6027896879999999,kg -46d104dc-0e04-3c50-b465-6a4cb2e05551,SESCO,II.1.1,Corrientes,AR-W,annual,2021,bioetanol combustion consumption by to the public,0.7899152399999999,TJ,CH4,10.0,kg/TJ,7.899152399999999,kg -f2749f78-0a25-36ca-9bf1-d74849a2981b,SESCO,II.1.1,Corrientes,AR-W,annual,2021,bioetanol combustion consumption by to the public,0.7899152399999999,TJ,N2O,0.6,kg/TJ,0.47394914399999993,kg -68e8d2ec-dfa2-3e91-ae81-9c204439b38b,SESCO,II.1.1,Córdoba,AR-X,annual,2021,bioetanol combustion consumption by to the public,4.63212432,TJ,CH4,10.0,kg/TJ,46.3212432,kg -b53fdd9c-26ef-3f9e-a379-c82b12cab02b,SESCO,II.1.1,Córdoba,AR-X,annual,2021,bioetanol combustion consumption by to the public,4.63212432,TJ,N2O,0.6,kg/TJ,2.7792745919999997,kg -85ed7925-c9fa-3682-b9cf-c28617cef6f6,SESCO,II.1.1,Entre Rios,AR-E,annual,2021,bioetanol combustion consumption by to the public,1.63862676,TJ,CH4,10.0,kg/TJ,16.3862676,kg -d98eecb7-6c27-36ef-bf1e-d4ad5e906306,SESCO,II.1.1,Entre Rios,AR-E,annual,2021,bioetanol combustion consumption by to the public,1.63862676,TJ,N2O,0.6,kg/TJ,0.9831760559999999,kg -e469d6b3-65a9-39c3-bc0c-ee8d1a87337e,SESCO,II.1.1,Formosa,AR-P,annual,2021,bioetanol combustion consumption by to the public,0.32210135999999995,TJ,CH4,10.0,kg/TJ,3.2210135999999996,kg -b0833be0-5d27-3401-baba-63658bb7dbfb,SESCO,II.1.1,Formosa,AR-P,annual,2021,bioetanol combustion consumption by to the public,0.32210135999999995,TJ,N2O,0.6,kg/TJ,0.19326081599999997,kg -4f61f939-fd61-34cb-b2f1-f68c4fc8b248,SESCO,II.1.1,La Rioja,AR-F,annual,2021,bioetanol combustion consumption by to the public,0.6467590799999999,TJ,CH4,10.0,kg/TJ,6.467590799999999,kg -d0934d53-7377-3681-9ec3-6a2c3d386a51,SESCO,II.1.1,La Rioja,AR-F,annual,2021,bioetanol combustion consumption by to the public,0.6467590799999999,TJ,N2O,0.6,kg/TJ,0.38805544799999997,kg -4fc2f02d-35de-37d0-8b42-2f48bd8bccdc,SESCO,II.1.1,Mendoza,AR-M,annual,2021,bioetanol combustion consumption by to the public,2.3978656799999998,TJ,CH4,10.0,kg/TJ,23.978656799999996,kg -00f1bbd9-d831-30d3-ab82-911678220f75,SESCO,II.1.1,Mendoza,AR-M,annual,2021,bioetanol combustion consumption by to the public,2.3978656799999998,TJ,N2O,0.6,kg/TJ,1.4387194079999999,kg -fb03e17e-5ef7-3457-9418-c9eda3ccd918,SESCO,II.1.1,Misiones,AR-N,annual,2021,bioetanol combustion consumption by to the public,1.5926122799999998,TJ,CH4,10.0,kg/TJ,15.926122799999998,kg -6d6a399a-f55b-3788-8229-199847ee0e96,SESCO,II.1.1,Misiones,AR-N,annual,2021,bioetanol combustion consumption by to the public,1.5926122799999998,TJ,N2O,0.6,kg/TJ,0.9555673679999999,kg -132f29cb-9687-3c1d-a8b9-2e9234a7f003,SESCO,II.1.1,San Juan,AR-J,annual,2021,bioetanol combustion consumption by to the public,0.46525752,TJ,CH4,10.0,kg/TJ,4.652575199999999,kg -cf8381fd-84e3-3894-a8ef-5d0dddd7cc7a,SESCO,II.1.1,San Juan,AR-J,annual,2021,bioetanol combustion consumption by to the public,0.46525752,TJ,N2O,0.6,kg/TJ,0.27915451199999997,kg -27fa34b8-6225-36f3-a9c1-af80babb1555,SESCO,II.1.1,San Luis,AR-D,annual,2021,bioetanol combustion consumption by to the public,0.13548707999999998,TJ,CH4,10.0,kg/TJ,1.3548707999999998,kg -13760e17-2e08-3f5a-a5b9-1ff71f6847c5,SESCO,II.1.1,San Luis,AR-D,annual,2021,bioetanol combustion consumption by to the public,0.13548707999999998,TJ,N2O,0.6,kg/TJ,0.08129224799999998,kg -e1c1f461-7290-33c7-a417-03fe2fe5687b,SESCO,II.1.1,Santa Fe,AR-S,annual,2021,bioetanol combustion consumption by to the public,3.5686785599999995,TJ,CH4,10.0,kg/TJ,35.68678559999999,kg -7cffb1bb-64b1-3bc1-b1a0-1b97e1168279,SESCO,II.1.1,Santa Fe,AR-S,annual,2021,bioetanol combustion consumption by to the public,3.5686785599999995,TJ,N2O,0.6,kg/TJ,2.141207136,kg -aced4492-b93a-3ef1-b184-6a45e689b417,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2021,bioetanol combustion consumption by to the public,0.6365336399999999,TJ,CH4,10.0,kg/TJ,6.365336399999999,kg -8c601998-82b7-3b9a-9853-9a7224a5cba0,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2021,bioetanol combustion consumption by to the public,0.6365336399999999,TJ,N2O,0.6,kg/TJ,0.38192018399999994,kg -0f36b3e0-7ebd-347b-83be-54aa9e925497,SESCO,II.1.1,Tucuman,AR-T,annual,2021,bioetanol combustion consumption by to the public,0.28631231999999995,TJ,CH4,10.0,kg/TJ,2.8631231999999995,kg -12b3c1d4-0f0c-3487-8631-0f1e5f5b7044,SESCO,II.1.1,Tucuman,AR-T,annual,2021,bioetanol combustion consumption by to the public,0.28631231999999995,TJ,N2O,0.6,kg/TJ,0.17178739199999996,kg -382cc73d-d943-32c9-a0f6-14218af66226,SESCO,I.3.1,Buenos Aires,AR-B,annual,2021,bioetanol combustion consumption by petrochemical industries,0.030676319999999997,TJ,CH4,10.0,kg/TJ,0.30676319999999996,kg -45cfa74f-a722-35c2-99ce-7dcf7239a3da,SESCO,I.3.1,Buenos Aires,AR-B,annual,2021,bioetanol combustion consumption by petrochemical industries,0.030676319999999997,TJ,N2O,0.6,kg/TJ,0.018405791999999997,kg -074576fb-0127-3b1c-ab3e-87655232c4ec,SESCO,II.5.1,Santa Fe,AR-S,annual,2021,bioetanol combustion consumption by agriculture machines,0.8998387199999999,TJ,CH4,10.0,kg/TJ,8.998387199999998,kg -2a138c3d-eb82-36aa-a467-1012e8fff348,SESCO,II.5.1,Santa Fe,AR-S,annual,2021,bioetanol combustion consumption by agriculture machines,0.8998387199999999,TJ,N2O,0.6,kg/TJ,0.5399032319999999,kg -f7bcef73-231a-3bb3-ba79-e8c8550b3d51,SESCO,II.5.1,Santa Fe,AR-S,annual,2021,bioetanol combustion consumption by agriculture machines,0.32721407999999996,TJ,CH4,10.0,kg/TJ,3.2721408,kg -23341fb4-859d-32fe-9fad-326499e8de38,SESCO,II.5.1,Santa Fe,AR-S,annual,2021,bioetanol combustion consumption by agriculture machines,0.32721407999999996,TJ,N2O,0.6,kg/TJ,0.19632844799999996,kg -5d4ee641-5843-3a7f-8615-979f523f0223,SESCO,II.1.1,Buenos Aires,AR-B,annual,2021,bioetanol combustion consumption by to the public,838.0642805999998,TJ,CH4,10.0,kg/TJ,8380.642805999998,kg -23f01466-7741-3009-9d5c-501c8a681e8d,SESCO,II.1.1,Buenos Aires,AR-B,annual,2021,bioetanol combustion consumption by to the public,838.0642805999998,TJ,N2O,0.6,kg/TJ,502.8385683599999,kg -d692bbed-1421-3f14-9952-45bad84d1bdd,SESCO,II.1.1,Capital Federal,AR-C,annual,2021,bioetanol combustion consumption by to the public,210.31940627999998,TJ,CH4,10.0,kg/TJ,2103.1940627999998,kg -3d901a39-0e26-382a-9218-aa87a59a77b2,SESCO,II.1.1,Capital Federal,AR-C,annual,2021,bioetanol combustion consumption by to the public,210.31940627999998,TJ,N2O,0.6,kg/TJ,126.19164376799998,kg -5dd38174-b772-3e04-b27c-286dcdf00bd5,SESCO,II.1.1,Catamarca,AR-K,annual,2021,bioetanol combustion consumption by to the public,37.35608868,TJ,CH4,10.0,kg/TJ,373.5608868,kg -1bcb15a2-3428-346f-bc08-d3f1021ea2c5,SESCO,II.1.1,Catamarca,AR-K,annual,2021,bioetanol combustion consumption by to the public,37.35608868,TJ,N2O,0.6,kg/TJ,22.413653208,kg -d9900155-d904-3c39-a6e3-c723511275cc,SESCO,II.1.1,Chaco,AR-H,annual,2021,bioetanol combustion consumption by to the public,52.02703871999999,TJ,CH4,10.0,kg/TJ,520.2703872,kg -0bf63916-8fed-3754-9e8f-d20fbde5b20e,SESCO,II.1.1,Chaco,AR-H,annual,2021,bioetanol combustion consumption by to the public,52.02703871999999,TJ,N2O,0.6,kg/TJ,31.216223231999994,kg -4f2ee527-5690-3c40-9b6a-3786e826858f,SESCO,II.1.1,Chubut,AR-U,annual,2021,bioetanol combustion consumption by to the public,124.43082299999999,TJ,CH4,10.0,kg/TJ,1244.3082299999999,kg -b8576303-abf3-3520-a61b-7d562472f634,SESCO,II.1.1,Chubut,AR-U,annual,2021,bioetanol combustion consumption by to the public,124.43082299999999,TJ,N2O,0.6,kg/TJ,74.65849379999999,kg -1c1df07c-6dfd-305a-b10b-7d4c5f0df35a,SESCO,II.1.1,Corrientes,AR-W,annual,2021,bioetanol combustion consumption by to the public,60.278968799999994,TJ,CH4,10.0,kg/TJ,602.789688,kg -da9dd9c2-7034-3c45-9aad-a3d10d8b3b5b,SESCO,II.1.1,Corrientes,AR-W,annual,2021,bioetanol combustion consumption by to the public,60.278968799999994,TJ,N2O,0.6,kg/TJ,36.167381279999994,kg -3c9e5059-432f-35a4-a692-63b8d4cc244c,SESCO,II.1.1,Córdoba,AR-X,annual,2021,bioetanol combustion consumption by to the public,205.38818783999997,TJ,CH4,10.0,kg/TJ,2053.8818783999996,kg -ac70a231-8f08-3f64-a040-7129e1fc3e34,SESCO,II.1.1,Córdoba,AR-X,annual,2021,bioetanol combustion consumption by to the public,205.38818783999997,TJ,N2O,0.6,kg/TJ,123.23291270399997,kg -91639afa-85fd-3a7a-8190-0b9594ec9d36,SESCO,II.1.1,Entre Rios,AR-E,annual,2021,bioetanol combustion consumption by to the public,80.40774744,TJ,CH4,10.0,kg/TJ,804.0774743999999,kg -caf4926d-f721-3999-9e1b-ec24f4fa5195,SESCO,II.1.1,Entre Rios,AR-E,annual,2021,bioetanol combustion consumption by to the public,80.40774744,TJ,N2O,0.6,kg/TJ,48.244648463999994,kg -2b763dd7-9f1a-34d3-91b7-61b56085127a,SESCO,II.1.1,Formosa,AR-P,annual,2021,bioetanol combustion consumption by to the public,51.94267883999999,TJ,CH4,10.0,kg/TJ,519.4267884,kg -9640741b-2677-32bf-993b-6615b116f30f,SESCO,II.1.1,Formosa,AR-P,annual,2021,bioetanol combustion consumption by to the public,51.94267883999999,TJ,N2O,0.6,kg/TJ,31.165607303999995,kg -f2d93350-0ba7-3e98-9507-74e7a58deed2,SESCO,II.1.1,Jujuy,AR-Y,annual,2021,bioetanol combustion consumption by to the public,18.97074756,TJ,CH4,10.0,kg/TJ,189.7074756,kg -901447cd-362d-3589-8f02-50b4c9a9f929,SESCO,II.1.1,Jujuy,AR-Y,annual,2021,bioetanol combustion consumption by to the public,18.97074756,TJ,N2O,0.6,kg/TJ,11.382448536,kg -3d4e957b-5bb3-3f4e-a88d-810d3c5234c6,SESCO,II.1.1,La Pampa,AR-L,annual,2021,bioetanol combustion consumption by to the public,16.667467199999997,TJ,CH4,10.0,kg/TJ,166.674672,kg -de5b0e55-5d30-361b-9bb7-518549eddb3a,SESCO,II.1.1,La Pampa,AR-L,annual,2021,bioetanol combustion consumption by to the public,16.667467199999997,TJ,N2O,0.6,kg/TJ,10.000480319999998,kg -b278a403-d777-31d3-a2c0-8e92d9a028dd,SESCO,II.1.1,La Rioja,AR-F,annual,2021,bioetanol combustion consumption by to the public,9.185001479999999,TJ,CH4,10.0,kg/TJ,91.85001479999998,kg -d3e03c96-4ad4-3687-8e48-c935351be35a,SESCO,II.1.1,La Rioja,AR-F,annual,2021,bioetanol combustion consumption by to the public,9.185001479999999,TJ,N2O,0.6,kg/TJ,5.511000887999999,kg -ad2808fa-21cd-3af6-a8dd-7e6851ff8aac,SESCO,II.1.1,Mendoza,AR-M,annual,2021,bioetanol combustion consumption by to the public,43.038876959999996,TJ,CH4,10.0,kg/TJ,430.38876959999993,kg -143eaeea-4da4-329d-8bdb-ac652d20abbb,SESCO,II.1.1,Mendoza,AR-M,annual,2021,bioetanol combustion consumption by to the public,43.038876959999996,TJ,N2O,0.6,kg/TJ,25.823326176,kg -7895bcd3-52f0-3cab-a034-b77d3e17dbf2,SESCO,II.1.1,Misiones,AR-N,annual,2021,bioetanol combustion consumption by to the public,95.30876988,TJ,CH4,10.0,kg/TJ,953.0876988,kg -653b7bd7-72b2-3e6b-a934-188d1989c903,SESCO,II.1.1,Misiones,AR-N,annual,2021,bioetanol combustion consumption by to the public,95.30876988,TJ,N2O,0.6,kg/TJ,57.185261927999996,kg -13cfdcd4-8b24-36ef-bd5f-189b06efde44,SESCO,II.1.1,Neuquén,AR-Q,annual,2021,bioetanol combustion consumption by to the public,44.37074052,TJ,CH4,10.0,kg/TJ,443.7074052,kg -79e11471-3147-320f-b0cf-07a35bcfac97,SESCO,II.1.1,Neuquén,AR-Q,annual,2021,bioetanol combustion consumption by to the public,44.37074052,TJ,N2O,0.6,kg/TJ,26.622444312,kg -775af576-30ce-308e-9c3f-559fed3f6718,SESCO,II.1.1,Rio Negro,AR-R,annual,2021,bioetanol combustion consumption by to the public,64.14674147999999,TJ,CH4,10.0,kg/TJ,641.4674147999999,kg -9a59e23c-e56c-3a3f-9999-8b9d9c541179,SESCO,II.1.1,Rio Negro,AR-R,annual,2021,bioetanol combustion consumption by to the public,64.14674147999999,TJ,N2O,0.6,kg/TJ,38.48804488799999,kg -e3807e40-7b15-399d-b210-f98cb81a689e,SESCO,II.1.1,Salta,AR-A,annual,2021,bioetanol combustion consumption by to the public,17.350015319999997,TJ,CH4,10.0,kg/TJ,173.50015319999997,kg -3640fb93-a9c1-37f0-8c0a-b749184ffcf7,SESCO,II.1.1,Salta,AR-A,annual,2021,bioetanol combustion consumption by to the public,17.350015319999997,TJ,N2O,0.6,kg/TJ,10.410009191999999,kg -74b23009-d6fe-36b7-a167-b20c1712bae2,SESCO,II.1.1,San Juan,AR-J,annual,2021,bioetanol combustion consumption by to the public,16.419500279999998,TJ,CH4,10.0,kg/TJ,164.19500279999997,kg -e3ad139c-ad39-3c30-ac82-d0492149babf,SESCO,II.1.1,San Juan,AR-J,annual,2021,bioetanol combustion consumption by to the public,16.419500279999998,TJ,N2O,0.6,kg/TJ,9.851700167999999,kg -98777c9b-cebe-381c-9bf4-75fe5a91d3b4,SESCO,II.1.1,San Luis,AR-D,annual,2021,bioetanol combustion consumption by to the public,51.533661239999994,TJ,CH4,10.0,kg/TJ,515.3366123999999,kg -f86de996-4167-369b-ad6c-3d06405b6983,SESCO,II.1.1,San Luis,AR-D,annual,2021,bioetanol combustion consumption by to the public,51.533661239999994,TJ,N2O,0.6,kg/TJ,30.920196743999995,kg -66b460c9-ae66-3b05-8eb8-ac4bf5a2496e,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2021,bioetanol combustion consumption by to the public,77.59575144,TJ,CH4,10.0,kg/TJ,775.9575144,kg -3e2c8ffd-129a-3fea-a3d5-2aa3a086659c,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2021,bioetanol combustion consumption by to the public,77.59575144,TJ,N2O,0.6,kg/TJ,46.557450863999996,kg -b1d368bf-e17d-3442-8470-32d9bfd313d7,SESCO,II.1.1,Santa Fe,AR-S,annual,2021,bioetanol combustion consumption by to the public,210.86902367999997,TJ,CH4,10.0,kg/TJ,2108.6902367999996,kg -d1a8970e-b956-398a-899d-3c0bacc836ad,SESCO,II.1.1,Santa Fe,AR-S,annual,2021,bioetanol combustion consumption by to the public,210.86902367999997,TJ,N2O,0.6,kg/TJ,126.52141420799998,kg -abe54b5f-8026-38f9-94e5-9dde2447b997,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2021,bioetanol combustion consumption by to the public,33.915228119999995,TJ,CH4,10.0,kg/TJ,339.15228119999995,kg -fb826a2c-e8c9-39df-86a9-befb76ecb311,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2021,bioetanol combustion consumption by to the public,33.915228119999995,TJ,N2O,0.6,kg/TJ,20.349136871999995,kg -a8cb0978-fcf9-368d-b686-2524719f0a77,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2021,bioetanol combustion consumption by to the public,12.255189839999998,TJ,CH4,10.0,kg/TJ,122.55189839999998,kg -c095988f-a48d-32c3-940d-e06d1d3377d6,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2021,bioetanol combustion consumption by to the public,12.255189839999998,TJ,N2O,0.6,kg/TJ,7.353113903999999,kg -e35f2f61-eae1-338c-b8f9-eff84576abc4,SESCO,II.1.1,Tucuman,AR-T,annual,2021,bioetanol combustion consumption by to the public,14.701626359999999,TJ,CH4,10.0,kg/TJ,147.0162636,kg -893255f6-34e9-3e12-91fb-93b10bf2b1c6,SESCO,II.1.1,Tucuman,AR-T,annual,2021,bioetanol combustion consumption by to the public,14.701626359999999,TJ,N2O,0.6,kg/TJ,8.820975815999999,kg -95620ec3-02fa-34f8-a8f2-04b1bad96c2a,SESCO,II.1.1,Buenos Aires,AR-B,annual,2021,bioetanol combustion consumption by to the public,241.08775523999998,TJ,CH4,10.0,kg/TJ,2410.8775524,kg -3c85a6a4-52a5-32c4-b879-a441bc12052b,SESCO,II.1.1,Buenos Aires,AR-B,annual,2021,bioetanol combustion consumption by to the public,241.08775523999998,TJ,N2O,0.6,kg/TJ,144.65265314399997,kg -1d73b185-e3e8-3d0f-bca2-1820519124cf,SESCO,II.1.1,Capital Federal,AR-C,annual,2021,bioetanol combustion consumption by to the public,95.03523935999999,TJ,CH4,10.0,kg/TJ,950.3523935999999,kg -0d4b20b6-0a5f-3d83-a3bf-a6d9eddbe581,SESCO,II.1.1,Capital Federal,AR-C,annual,2021,bioetanol combustion consumption by to the public,95.03523935999999,TJ,N2O,0.6,kg/TJ,57.021143615999996,kg -746b283d-0600-3a13-8e26-df9a52f12b3b,SESCO,II.1.1,Catamarca,AR-K,annual,2021,bioetanol combustion consumption by to the public,10.94377716,TJ,CH4,10.0,kg/TJ,109.43777159999999,kg -3f39cf75-4cfd-3340-8550-2aa6cc764c88,SESCO,II.1.1,Catamarca,AR-K,annual,2021,bioetanol combustion consumption by to the public,10.94377716,TJ,N2O,0.6,kg/TJ,6.566266295999999,kg -5cab73f8-3fb3-3ec5-bc51-8191ea3c4719,SESCO,II.1.1,Chaco,AR-H,annual,2021,bioetanol combustion consumption by to the public,7.32141504,TJ,CH4,10.0,kg/TJ,73.2141504,kg -b4da9990-7fa4-3290-a216-b54d0a96b90f,SESCO,II.1.1,Chaco,AR-H,annual,2021,bioetanol combustion consumption by to the public,7.32141504,TJ,N2O,0.6,kg/TJ,4.392849023999999,kg -2bfa8d17-d056-3e82-81d8-e7a0d4cac6b8,SESCO,II.1.1,Chubut,AR-U,annual,2021,bioetanol combustion consumption by to the public,22.08439404,TJ,CH4,10.0,kg/TJ,220.8439404,kg -12f21458-4f97-38c4-a24b-f8be7111b1d5,SESCO,II.1.1,Chubut,AR-U,annual,2021,bioetanol combustion consumption by to the public,22.08439404,TJ,N2O,0.6,kg/TJ,13.250636424,kg -d593a6f8-b777-3c9a-befc-bd6ab7f56baf,SESCO,II.1.1,Corrientes,AR-W,annual,2021,bioetanol combustion consumption by to the public,9.742287959999999,TJ,CH4,10.0,kg/TJ,97.42287959999999,kg -d3e3a398-78ec-3653-b8ef-51df45f535a5,SESCO,II.1.1,Corrientes,AR-W,annual,2021,bioetanol combustion consumption by to the public,9.742287959999999,TJ,N2O,0.6,kg/TJ,5.845372775999999,kg -5806529a-8898-3cbd-999b-701a36c6723e,SESCO,II.1.1,Córdoba,AR-X,annual,2021,bioetanol combustion consumption by to the public,53.89318151999999,TJ,CH4,10.0,kg/TJ,538.9318152,kg -3efb258b-94d5-3771-9dc6-88f84bc9591a,SESCO,II.1.1,Córdoba,AR-X,annual,2021,bioetanol combustion consumption by to the public,53.89318151999999,TJ,N2O,0.6,kg/TJ,32.335908911999994,kg -19025c25-055d-31ac-a145-6a646caf49a1,SESCO,II.1.1,Entre Rios,AR-E,annual,2021,bioetanol combustion consumption by to the public,21.30981696,TJ,CH4,10.0,kg/TJ,213.0981696,kg -3e75e2df-beac-35c3-91f0-c8cd9c029b03,SESCO,II.1.1,Entre Rios,AR-E,annual,2021,bioetanol combustion consumption by to the public,21.30981696,TJ,N2O,0.6,kg/TJ,12.785890175999999,kg -cb62d199-8ca9-3542-a49e-1b6f03e63b48,SESCO,II.1.1,Formosa,AR-P,annual,2021,bioetanol combustion consumption by to the public,13.60239156,TJ,CH4,10.0,kg/TJ,136.02391559999998,kg -ce18a855-072d-3c20-bc92-5404ee1de22b,SESCO,II.1.1,Formosa,AR-P,annual,2021,bioetanol combustion consumption by to the public,13.60239156,TJ,N2O,0.6,kg/TJ,8.161434936,kg -57f485b6-4565-337d-b151-bc9e102d05f1,SESCO,II.1.1,Jujuy,AR-Y,annual,2021,bioetanol combustion consumption by to the public,4.60400436,TJ,CH4,10.0,kg/TJ,46.040043600000004,kg -8c1e0d9e-8cbc-32be-bb8f-02812ad8e947,SESCO,II.1.1,Jujuy,AR-Y,annual,2021,bioetanol combustion consumption by to the public,4.60400436,TJ,N2O,0.6,kg/TJ,2.762402616,kg -696e136a-a773-3e37-a9eb-1540941857f7,SESCO,II.1.1,La Pampa,AR-L,annual,2021,bioetanol combustion consumption by to the public,5.767148159999999,TJ,CH4,10.0,kg/TJ,57.671481599999986,kg -bca187d6-14ad-3ddb-9ae1-a685d9ea1eb6,SESCO,II.1.1,La Pampa,AR-L,annual,2021,bioetanol combustion consumption by to the public,5.767148159999999,TJ,N2O,0.6,kg/TJ,3.4602888959999993,kg -c001999b-7f95-39ec-b3fa-b79c7b846051,SESCO,II.1.1,La Rioja,AR-F,annual,2021,bioetanol combustion consumption by to the public,3.1238719199999996,TJ,CH4,10.0,kg/TJ,31.238719199999995,kg -d8face93-3950-35ce-90c5-48b295eb8fe1,SESCO,II.1.1,La Rioja,AR-F,annual,2021,bioetanol combustion consumption by to the public,3.1238719199999996,TJ,N2O,0.6,kg/TJ,1.8743231519999997,kg -ac3980b6-b769-37bc-b241-71b8f796fd3a,SESCO,II.1.1,Mendoza,AR-M,annual,2021,bioetanol combustion consumption by to the public,17.55452412,TJ,CH4,10.0,kg/TJ,175.5452412,kg -79117672-b57c-3f39-82c3-f8ba6d51458f,SESCO,II.1.1,Mendoza,AR-M,annual,2021,bioetanol combustion consumption by to the public,17.55452412,TJ,N2O,0.6,kg/TJ,10.532714472,kg -e0f2e3f2-0786-3470-b2a4-56ad324f41cf,SESCO,II.1.1,Misiones,AR-N,annual,2021,bioetanol combustion consumption by to the public,14.295165119999998,TJ,CH4,10.0,kg/TJ,142.9516512,kg -10ab3170-b2a0-3e0e-bf63-fb638238148a,SESCO,II.1.1,Misiones,AR-N,annual,2021,bioetanol combustion consumption by to the public,14.295165119999998,TJ,N2O,0.6,kg/TJ,8.577099072,kg -c6eef368-d818-3e52-8631-c1fad85bd59e,SESCO,II.1.1,Neuquén,AR-Q,annual,2021,bioetanol combustion consumption by to the public,18.796915079999998,TJ,CH4,10.0,kg/TJ,187.96915079999997,kg -272b7834-7910-3422-9453-87318808b342,SESCO,II.1.1,Neuquén,AR-Q,annual,2021,bioetanol combustion consumption by to the public,18.796915079999998,TJ,N2O,0.6,kg/TJ,11.278149047999998,kg -44b043c1-bae5-3fba-a355-8ff596d7998a,SESCO,II.1.1,Rio Negro,AR-R,annual,2021,bioetanol combustion consumption by to the public,23.35490496,TJ,CH4,10.0,kg/TJ,233.5490496,kg -0c2fbf9e-e0da-31fa-8de0-fd771382ef5f,SESCO,II.1.1,Rio Negro,AR-R,annual,2021,bioetanol combustion consumption by to the public,23.35490496,TJ,N2O,0.6,kg/TJ,14.012942976,kg -25d66663-6c60-39a8-890e-f02fd1ff0bae,SESCO,II.1.1,Salta,AR-A,annual,2021,bioetanol combustion consumption by to the public,2.9168067599999996,TJ,CH4,10.0,kg/TJ,29.168067599999997,kg -ec0e6f3a-2b10-328d-b7b0-a2a472d462e3,SESCO,II.1.1,Salta,AR-A,annual,2021,bioetanol combustion consumption by to the public,2.9168067599999996,TJ,N2O,0.6,kg/TJ,1.7500840559999997,kg -db804e3e-42a0-3251-8d7b-13573cf085e8,SESCO,II.1.1,San Juan,AR-J,annual,2021,bioetanol combustion consumption by to the public,3.44852964,TJ,CH4,10.0,kg/TJ,34.485296399999996,kg -fa358f9e-8b29-354f-b818-a6f24b9124a3,SESCO,II.1.1,San Juan,AR-J,annual,2021,bioetanol combustion consumption by to the public,3.44852964,TJ,N2O,0.6,kg/TJ,2.069117784,kg -211f0fa8-e345-3c16-ade2-e330fbe1ab6a,SESCO,II.1.1,San Luis,AR-D,annual,2021,bioetanol combustion consumption by to the public,11.4524928,TJ,CH4,10.0,kg/TJ,114.524928,kg -cb524d72-c107-3e8a-8fca-07dd43ef7cb3,SESCO,II.1.1,San Luis,AR-D,annual,2021,bioetanol combustion consumption by to the public,11.4524928,TJ,N2O,0.6,kg/TJ,6.87149568,kg -68059005-d101-3982-a71c-1aeed3450780,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2021,bioetanol combustion consumption by to the public,9.108310679999999,TJ,CH4,10.0,kg/TJ,91.0831068,kg -e4b0eefe-52f4-3ee1-987f-b5386c4b9a44,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2021,bioetanol combustion consumption by to the public,9.108310679999999,TJ,N2O,0.6,kg/TJ,5.464986407999999,kg -d69c008a-eac0-3856-bdc0-a37bfe799f8e,SESCO,II.1.1,Santa Fe,AR-S,annual,2021,bioetanol combustion consumption by to the public,64.8420714,TJ,CH4,10.0,kg/TJ,648.420714,kg -88e603f3-85c8-3e7a-8036-ea662798a7d5,SESCO,II.1.1,Santa Fe,AR-S,annual,2021,bioetanol combustion consumption by to the public,64.8420714,TJ,N2O,0.6,kg/TJ,38.90524283999999,kg -668b0ffe-82bc-30b7-b78e-c721b62cdcfb,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2021,bioetanol combustion consumption by to the public,10.376265239999999,TJ,CH4,10.0,kg/TJ,103.76265239999998,kg -e5ece5bc-9d58-3ab0-bf4d-8a9022544b6e,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2021,bioetanol combustion consumption by to the public,10.376265239999999,TJ,N2O,0.6,kg/TJ,6.225759143999999,kg -9d8a4baf-7d08-3406-86bf-06fcc7d20cab,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2021,bioetanol combustion consumption by to the public,3.1187592,TJ,CH4,10.0,kg/TJ,31.187592,kg -c546ac5e-096e-378d-af3c-e991b532af4c,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2021,bioetanol combustion consumption by to the public,3.1187592,TJ,N2O,0.6,kg/TJ,1.8712555199999998,kg -f2166d2b-ca8f-3c4e-b022-1ccd8a3b79c6,SESCO,II.1.1,Tucuman,AR-T,annual,2021,bioetanol combustion consumption by to the public,3.0267302399999996,TJ,CH4,10.0,kg/TJ,30.267302399999995,kg -902d10f3-0c4a-3547-b6b4-3f5207436ede,SESCO,II.1.1,Tucuman,AR-T,annual,2021,bioetanol combustion consumption by to the public,3.0267302399999996,TJ,N2O,0.6,kg/TJ,1.8160381439999997,kg -81cf415d-233e-309a-8d3f-31f184577c48,SESCO,II.1.1,Buenos Aires,AR-B,annual,2021,bioetanol combustion consumption by freight transport,0.94329684,TJ,CH4,10.0,kg/TJ,9.4329684,kg -9661f70e-969a-3f16-b1d4-65cb9bada4e2,SESCO,II.1.1,Buenos Aires,AR-B,annual,2021,bioetanol combustion consumption by freight transport,0.94329684,TJ,N2O,0.6,kg/TJ,0.565978104,kg -3a5d0cc6-e980-3358-a589-2b18f7c1c0c8,SESCO,II.1.1,Capital Federal,AR-C,annual,2021,bioetanol combustion consumption by freight transport,0.31954499999999997,TJ,CH4,10.0,kg/TJ,3.1954499999999997,kg -bbac38c1-0a0b-38c5-a7ef-2bc6c518ef58,SESCO,II.1.1,Capital Federal,AR-C,annual,2021,bioetanol combustion consumption by freight transport,0.31954499999999997,TJ,N2O,0.6,kg/TJ,0.19172699999999998,kg -d10faf26-f89a-370e-89a6-710d4bb6683d,SESCO,II.1.1,Córdoba,AR-X,annual,2021,bioetanol combustion consumption by freight transport,0.0894726,TJ,CH4,10.0,kg/TJ,0.894726,kg -2779512a-d9a4-3f73-9e40-62d4af04d8a3,SESCO,II.1.1,Córdoba,AR-X,annual,2021,bioetanol combustion consumption by freight transport,0.0894726,TJ,N2O,0.6,kg/TJ,0.05368356,kg -01ae7b2c-1ff7-373c-b9f9-6816a7d5512d,SESCO,II.1.1,Entre Rios,AR-E,annual,2021,bioetanol combustion consumption by freight transport,0.040901759999999995,TJ,CH4,10.0,kg/TJ,0.4090176,kg -de8be7ab-ab0c-3888-ad78-1d4d8e397e6d,SESCO,II.1.1,Entre Rios,AR-E,annual,2021,bioetanol combustion consumption by freight transport,0.040901759999999995,TJ,N2O,0.6,kg/TJ,0.024541055999999995,kg -68589ead-89c2-39f1-8b6a-e34c9dfccb60,SESCO,II.1.1,Mendoza,AR-M,annual,2021,bioetanol combustion consumption by freight transport,0.007669079999999999,TJ,CH4,10.0,kg/TJ,0.07669079999999999,kg -9c6659a2-6789-3948-97dc-751545ec8b04,SESCO,II.1.1,Mendoza,AR-M,annual,2021,bioetanol combustion consumption by freight transport,0.007669079999999999,TJ,N2O,0.6,kg/TJ,0.004601447999999999,kg -1ee514c5-65ed-3a1f-bb4d-bd4e7a886329,SESCO,II.1.1,Santa Fe,AR-S,annual,2021,bioetanol combustion consumption by freight transport,0.14571251999999998,TJ,CH4,10.0,kg/TJ,1.4571252,kg -fec55789-f151-3a2f-b077-e5e6e7f0069f,SESCO,II.1.1,Santa Fe,AR-S,annual,2021,bioetanol combustion consumption by freight transport,0.14571251999999998,TJ,N2O,0.6,kg/TJ,0.08742751199999999,kg -4c69f6fa-e01e-325b-8678-2012f3a0c60f,SESCO,II.1.1,Buenos Aires,AR-B,annual,2021,bioetanol combustion consumption by freight transport,0.63397728,TJ,CH4,10.0,kg/TJ,6.3397727999999995,kg -d86b114f-75b3-399f-b9a4-733cf458a83a,SESCO,II.1.1,Buenos Aires,AR-B,annual,2021,bioetanol combustion consumption by freight transport,0.63397728,TJ,N2O,0.6,kg/TJ,0.380386368,kg -ed06d00f-ae8f-349c-ba5c-73290cca00a7,SESCO,II.1.1,Capital Federal,AR-C,annual,2021,bioetanol combustion consumption by freight transport,0.24796691999999995,TJ,CH4,10.0,kg/TJ,2.4796691999999996,kg -e01210f0-4b64-315b-ad09-75f9f335ab1e,SESCO,II.1.1,Capital Federal,AR-C,annual,2021,bioetanol combustion consumption by freight transport,0.24796691999999995,TJ,N2O,0.6,kg/TJ,0.14878015199999997,kg -aa339304-a56b-3d78-97b8-11ceeeb66ce8,SESCO,II.1.1,Corrientes,AR-W,annual,2021,bioetanol combustion consumption by freight transport,0.0025563599999999997,TJ,CH4,10.0,kg/TJ,0.0255636,kg -02ec4b80-5f6f-3151-b0d6-88c11c0cd9d0,SESCO,II.1.1,Corrientes,AR-W,annual,2021,bioetanol combustion consumption by freight transport,0.0025563599999999997,TJ,N2O,0.6,kg/TJ,0.0015338159999999997,kg -b5694896-de7e-377b-8c2e-ac414a18736d,SESCO,II.1.1,Córdoba,AR-X,annual,2021,bioetanol combustion consumption by freight transport,0.0511272,TJ,CH4,10.0,kg/TJ,0.511272,kg -0e3c9d56-8e92-36d2-8abf-626f9708a273,SESCO,II.1.1,Córdoba,AR-X,annual,2021,bioetanol combustion consumption by freight transport,0.0511272,TJ,N2O,0.6,kg/TJ,0.030676319999999997,kg -4236db38-10d4-3728-941c-067a5620757b,SESCO,II.1.1,Entre Rios,AR-E,annual,2021,bioetanol combustion consumption by freight transport,0.043458119999999996,TJ,CH4,10.0,kg/TJ,0.43458119999999995,kg -f89416b5-3eaf-33b0-bb4a-957f5617ba79,SESCO,II.1.1,Entre Rios,AR-E,annual,2021,bioetanol combustion consumption by freight transport,0.043458119999999996,TJ,N2O,0.6,kg/TJ,0.026074871999999995,kg -51e01563-1726-3cfa-a382-1c4e7e69e7ce,SESCO,II.1.1,Rio Negro,AR-R,annual,2021,bioetanol combustion consumption by freight transport,0.0025563599999999997,TJ,CH4,10.0,kg/TJ,0.0255636,kg -a60f794d-aceb-342f-8218-fe6a4604e730,SESCO,II.1.1,Rio Negro,AR-R,annual,2021,bioetanol combustion consumption by freight transport,0.0025563599999999997,TJ,N2O,0.6,kg/TJ,0.0015338159999999997,kg -0698ad60-4625-364a-ae7c-6704e6e2ea91,SESCO,II.1.1,Santa Fe,AR-S,annual,2021,bioetanol combustion consumption by freight transport,0.10992348,TJ,CH4,10.0,kg/TJ,1.0992348,kg -4ff85572-afed-3724-b5d7-60740d762603,SESCO,II.1.1,Santa Fe,AR-S,annual,2021,bioetanol combustion consumption by freight transport,0.10992348,TJ,N2O,0.6,kg/TJ,0.065954088,kg -9a223517-e8d3-30ae-991d-0b2d199ddb41,SESCO,II.1.1,Buenos Aires,AR-B,annual,2021,bioetanol combustion consumption by public passenger transport,0.015338159999999998,TJ,CH4,10.0,kg/TJ,0.15338159999999998,kg -f16fa0b0-ed21-3c82-81d1-ef18e2f7f7ef,SESCO,II.1.1,Buenos Aires,AR-B,annual,2021,bioetanol combustion consumption by public passenger transport,0.015338159999999998,TJ,N2O,0.6,kg/TJ,0.009202895999999999,kg -a7d51947-b8fd-3a9e-9450-36e8140ec1df,SESCO,II.1.1,Santa Fe,AR-S,annual,2021,bioetanol combustion consumption by public passenger transport,0.028119959999999996,TJ,CH4,10.0,kg/TJ,0.28119959999999994,kg -90a86b97-08cc-3622-a4c6-77501a2a958e,SESCO,II.1.1,Santa Fe,AR-S,annual,2021,bioetanol combustion consumption by public passenger transport,0.028119959999999996,TJ,N2O,0.6,kg/TJ,0.016871975999999997,kg -78a43899-b587-385e-b588-4313859a2642,SESCO,II.1.1,Buenos Aires,AR-B,annual,2021,bioetanol combustion consumption by public passenger transport,0.0255636,TJ,CH4,10.0,kg/TJ,0.255636,kg -16c52567-d89d-39aa-8d61-dc20dae08a7e,SESCO,II.1.1,Buenos Aires,AR-B,annual,2021,bioetanol combustion consumption by public passenger transport,0.0255636,TJ,N2O,0.6,kg/TJ,0.015338159999999998,kg -d1525bfb-dc52-3711-8bff-35992196b4bf,SESCO,II.1.1,Capital Federal,AR-C,annual,2021,bioetanol combustion consumption by public passenger transport,0.005112719999999999,TJ,CH4,10.0,kg/TJ,0.0511272,kg -1fd712ce-15d9-315c-ad60-978b062b76cd,SESCO,II.1.1,Capital Federal,AR-C,annual,2021,bioetanol combustion consumption by public passenger transport,0.005112719999999999,TJ,N2O,0.6,kg/TJ,0.0030676319999999994,kg -6885ffaf-2338-35a9-be94-cc1a5616cc46,SESCO,II.1.1,Córdoba,AR-X,annual,2021,bioetanol combustion consumption by public passenger transport,0.030676319999999997,TJ,CH4,10.0,kg/TJ,0.30676319999999996,kg -6c669eee-7008-3f6e-a259-ff067004c2fe,SESCO,II.1.1,Córdoba,AR-X,annual,2021,bioetanol combustion consumption by public passenger transport,0.030676319999999997,TJ,N2O,0.6,kg/TJ,0.018405791999999997,kg -55283af6-3416-3d3d-a0c3-44c34f6bbb9d,SESCO,II.1.1,Santa Fe,AR-S,annual,2021,bioetanol combustion consumption by public passenger transport,0.0025563599999999997,TJ,CH4,10.0,kg/TJ,0.0255636,kg -717fe6a5-c810-35ec-8cb9-789e3efb1f37,SESCO,II.1.1,Santa Fe,AR-S,annual,2021,bioetanol combustion consumption by public passenger transport,0.0025563599999999997,TJ,N2O,0.6,kg/TJ,0.0015338159999999997,kg -6747e313-feee-3b07-b09e-1e9f0ba43b68,SESCO,II.1.1,Catamarca,AR-K,annual,2021,bioetanol combustion consumption by to the public,12.477720977999999,TJ,CH4,10.0,kg/TJ,124.77720977999999,kg -dc1c048a-6552-3260-948a-8a56d47954d9,SESCO,II.1.1,Catamarca,AR-K,annual,2021,bioetanol combustion consumption by to the public,12.477720977999999,TJ,N2O,0.6,kg/TJ,7.486632586799999,kg -ecf5b9bb-2a6e-37e4-9a84-1a85ad08f7bd,SESCO,II.1.1,Chaco,AR-H,annual,2021,bioetanol combustion consumption by to the public,9.2712275028,TJ,CH4,10.0,kg/TJ,92.71227502800001,kg -e06dc264-7b42-3d08-a09d-a07c406f96e7,SESCO,II.1.1,Chaco,AR-H,annual,2021,bioetanol combustion consumption by to the public,9.2712275028,TJ,N2O,0.6,kg/TJ,5.56273650168,kg -17d2ab76-8330-327b-ad76-ddf22b486e77,SESCO,II.1.1,Jujuy,AR-Y,annual,2021,bioetanol combustion consumption by to the public,34.582617025199994,TJ,CH4,10.0,kg/TJ,345.82617025199994,kg -e8d13b59-c9a1-34d9-b0b5-8009d90195b7,SESCO,II.1.1,Jujuy,AR-Y,annual,2021,bioetanol combustion consumption by to the public,34.582617025199994,TJ,N2O,0.6,kg/TJ,20.749570215119995,kg -7f655408-ad0b-307f-a1c3-4ac84a55fa26,SESCO,II.1.1,La Rioja,AR-F,annual,2021,bioetanol combustion consumption by to the public,35.3931620904,TJ,CH4,10.0,kg/TJ,353.93162090399994,kg -75cdd188-8289-3553-a14e-6f5c40bd1d33,SESCO,II.1.1,La Rioja,AR-F,annual,2021,bioetanol combustion consumption by to the public,35.3931620904,TJ,N2O,0.6,kg/TJ,21.235897254239998,kg -5df4978c-1c8f-31ea-a0c4-0fde29472be9,SESCO,II.1.1,Salta,AR-A,annual,2021,bioetanol combustion consumption by to the public,84.31504144559999,TJ,CH4,10.0,kg/TJ,843.1504144559999,kg -c3bce339-8bb0-302f-a67b-8c7825829f93,SESCO,II.1.1,Salta,AR-A,annual,2021,bioetanol combustion consumption by to the public,84.31504144559999,TJ,N2O,0.6,kg/TJ,50.58902486735999,kg -8a0c392b-badd-3541-a392-8df97e3cdac6,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2021,bioetanol combustion consumption by to the public,23.4278379108,TJ,CH4,10.0,kg/TJ,234.27837910800002,kg -1c6414a2-83bc-3848-8063-cb54b0f828f8,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2021,bioetanol combustion consumption by to the public,23.4278379108,TJ,N2O,0.6,kg/TJ,14.056702746480001,kg -6e1a0042-5ec1-3dff-b93f-cee506ae8912,SESCO,II.1.1,Tucuman,AR-T,annual,2021,bioetanol combustion consumption by to the public,171.6586537104,TJ,CH4,10.0,kg/TJ,1716.586537104,kg -c3a838e9-8b97-3357-b6b2-1a800eda40f5,SESCO,II.1.1,Tucuman,AR-T,annual,2021,bioetanol combustion consumption by to the public,171.6586537104,TJ,N2O,0.6,kg/TJ,102.99519222624,kg -f406dc62-b0ff-3d27-ba0d-d92080f00e20,SESCO,II.1.1,Catamarca,AR-K,annual,2021,bioetanol combustion consumption by to the public,1.5465722363999999,TJ,CH4,10.0,kg/TJ,15.465722363999998,kg -4613b9dd-0f3a-300b-87fe-faccabeff894,SESCO,II.1.1,Catamarca,AR-K,annual,2021,bioetanol combustion consumption by to the public,1.5465722363999999,TJ,N2O,0.6,kg/TJ,0.9279433418399998,kg -fe2782d6-5bb2-3618-9c8b-2870083bf3b0,SESCO,II.1.1,Chaco,AR-H,annual,2021,bioetanol combustion consumption by to the public,0.33488315999999996,TJ,CH4,10.0,kg/TJ,3.3488315999999996,kg -5e633ad6-b9e7-3f87-8a1d-81752ccfafbb,SESCO,II.1.1,Chaco,AR-H,annual,2021,bioetanol combustion consumption by to the public,0.33488315999999996,TJ,N2O,0.6,kg/TJ,0.20092989599999997,kg -17b2c8dd-1ecf-3b6b-871b-88d7ebce2026,SESCO,II.1.1,Jujuy,AR-Y,annual,2021,bioetanol combustion consumption by to the public,2.1320298035999996,TJ,CH4,10.0,kg/TJ,21.320298035999997,kg -119b0954-0607-308c-94d8-7114ae3af175,SESCO,II.1.1,Jujuy,AR-Y,annual,2021,bioetanol combustion consumption by to the public,2.1320298035999996,TJ,N2O,0.6,kg/TJ,1.2792178821599998,kg -a5a916a8-b460-3a18-bbc9-13db782e6063,SESCO,II.1.1,La Rioja,AR-F,annual,2021,bioetanol combustion consumption by to the public,4.3198905095999995,TJ,CH4,10.0,kg/TJ,43.198905096,kg -bb947ab6-58b4-35ac-abd8-e34499ef36f5,SESCO,II.1.1,La Rioja,AR-F,annual,2021,bioetanol combustion consumption by to the public,4.3198905095999995,TJ,N2O,0.6,kg/TJ,2.5919343057599997,kg -c268a357-4818-32fb-9eab-d27f20b36e2d,SESCO,II.1.1,Salta,AR-A,annual,2021,bioetanol combustion consumption by to the public,5.837013478799999,TJ,CH4,10.0,kg/TJ,58.370134787999994,kg -0097a2ea-1cb2-3050-a01e-726457560aab,SESCO,II.1.1,Salta,AR-A,annual,2021,bioetanol combustion consumption by to the public,5.837013478799999,TJ,N2O,0.6,kg/TJ,3.5022080872799997,kg -56c5308f-7f21-3dbd-9fb8-c21710cbebda,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2021,bioetanol combustion consumption by to the public,2.8719170784,TJ,CH4,10.0,kg/TJ,28.719170784,kg -0b380f5d-570e-3f56-824e-349999fca7b8,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2021,bioetanol combustion consumption by to the public,2.8719170784,TJ,N2O,0.6,kg/TJ,1.72315024704,kg -9fb7ba18-b360-3372-a3d7-0c721e60e99e,SESCO,II.1.1,Tucuman,AR-T,annual,2021,bioetanol combustion consumption by to the public,16.2612360324,TJ,CH4,10.0,kg/TJ,162.612360324,kg -e98010f5-7da0-3452-b661-343b880dc9a6,SESCO,II.1.1,Tucuman,AR-T,annual,2021,bioetanol combustion consumption by to the public,16.2612360324,TJ,N2O,0.6,kg/TJ,9.75674161944,kg -fdf31264-2508-3585-80f4-5ee282649a90,SESCO,I.3.1,La Pampa,AR-L,annual,2021,bioetanol combustion consumption by petrochemical industries,1.2653982,TJ,CH4,10.0,kg/TJ,12.653982,kg -c6a44327-1c93-3a11-a65c-14b46256f495,SESCO,I.3.1,La Pampa,AR-L,annual,2021,bioetanol combustion consumption by petrochemical industries,1.2653982,TJ,N2O,0.6,kg/TJ,0.7592389199999999,kg -b73d8429-3247-375e-b068-8bbe9f8c20e6,SESCO,I.3.1,La Pampa,AR-L,annual,2021,bioetanol combustion consumption by petrochemical industries,0.33488315999999996,TJ,CH4,10.0,kg/TJ,3.3488315999999996,kg -f457bda8-050f-349c-b161-8bfab93f8046,SESCO,I.3.1,La Pampa,AR-L,annual,2021,bioetanol combustion consumption by petrochemical industries,0.33488315999999996,TJ,N2O,0.6,kg/TJ,0.20092989599999997,kg -14339093-13d0-3aea-a1b2-f140df938bcf,SESCO,II.5.1,Santa Fe,AR-S,annual,2021,bioetanol combustion consumption by agriculture machines,0.1022544,TJ,CH4,10.0,kg/TJ,1.022544,kg -04343e66-0984-31c1-a33d-ba615b47fea5,SESCO,II.5.1,Santa Fe,AR-S,annual,2021,bioetanol combustion consumption by agriculture machines,0.1022544,TJ,N2O,0.6,kg/TJ,0.06135263999999999,kg -bc49fc94-6eb8-319c-ad23-cb5c7185ec25,SESCO,II.5.1,Santa Fe,AR-S,annual,2021,bioetanol combustion consumption by agriculture machines,0.04601448,TJ,CH4,10.0,kg/TJ,0.4601448,kg -2a2f0fee-25c2-357e-9fbe-f9bd316556d2,SESCO,II.5.1,Santa Fe,AR-S,annual,2021,bioetanol combustion consumption by agriculture machines,0.04601448,TJ,N2O,0.6,kg/TJ,0.027608688000000003,kg -c4e6ec6a-ff23-3e57-9a26-6a1b41873ae4,SESCO,II.1.1,Buenos Aires,AR-B,annual,2021,bioetanol combustion consumption by to the public,1412.5601761199998,TJ,CH4,10.0,kg/TJ,14125.601761199998,kg -ae1e5477-57b5-33ee-aa72-bf06fd1875ac,SESCO,II.1.1,Buenos Aires,AR-B,annual,2021,bioetanol combustion consumption by to the public,1412.5601761199998,TJ,N2O,0.6,kg/TJ,847.5361056719998,kg -c74155ae-25ed-3715-a294-937f473fda18,SESCO,II.1.1,Capital Federal,AR-C,annual,2021,bioetanol combustion consumption by to the public,368.25132708,TJ,CH4,10.0,kg/TJ,3682.5132708,kg -2a0544b9-3953-324b-b7ea-4bbb2c473757,SESCO,II.1.1,Capital Federal,AR-C,annual,2021,bioetanol combustion consumption by to the public,368.25132708,TJ,N2O,0.6,kg/TJ,220.950796248,kg -806edb88-053d-3a64-82bd-48c9f8f97efe,SESCO,II.1.1,Catamarca,AR-K,annual,2021,bioetanol combustion consumption by to the public,5.5856466,TJ,CH4,10.0,kg/TJ,55.856466,kg -7f413a8e-d1f2-38c8-8fae-a2acfc794dc4,SESCO,II.1.1,Catamarca,AR-K,annual,2021,bioetanol combustion consumption by to the public,5.5856466,TJ,N2O,0.6,kg/TJ,3.35138796,kg -cb377f0b-a39e-371c-9645-884d1755738c,SESCO,II.1.1,Chaco,AR-H,annual,2021,bioetanol combustion consumption by to the public,87.50931552,TJ,CH4,10.0,kg/TJ,875.0931552,kg -baeed79d-219e-3939-bf7b-608355f77657,SESCO,II.1.1,Chaco,AR-H,annual,2021,bioetanol combustion consumption by to the public,87.50931552,TJ,N2O,0.6,kg/TJ,52.505589312,kg -8452f7b6-ea19-3ba0-8c53-ed57cfb985aa,SESCO,II.1.1,Corrientes,AR-W,annual,2021,bioetanol combustion consumption by to the public,91.07799407999998,TJ,CH4,10.0,kg/TJ,910.7799407999998,kg -47e3e416-2451-38f9-b73e-cb5ca04c2d2b,SESCO,II.1.1,Corrientes,AR-W,annual,2021,bioetanol combustion consumption by to the public,91.07799407999998,TJ,N2O,0.6,kg/TJ,54.64679644799999,kg -56eca713-0cf4-33c0-8da6-42a433270988,SESCO,II.1.1,Córdoba,AR-X,annual,2021,bioetanol combustion consumption by to the public,346.94151012,TJ,CH4,10.0,kg/TJ,3469.4151011999998,kg -ddeef86a-ffd9-3e15-b4cb-839420d16237,SESCO,II.1.1,Córdoba,AR-X,annual,2021,bioetanol combustion consumption by to the public,346.94151012,TJ,N2O,0.6,kg/TJ,208.16490607199998,kg -ca955bd6-4f9b-3aff-bfcd-2823b7f8ec05,SESCO,II.1.1,Entre Rios,AR-E,annual,2021,bioetanol combustion consumption by to the public,105.0919596,TJ,CH4,10.0,kg/TJ,1050.919596,kg -4d77be0b-8411-3a0d-bc05-782cb9f511a8,SESCO,II.1.1,Entre Rios,AR-E,annual,2021,bioetanol combustion consumption by to the public,105.0919596,TJ,N2O,0.6,kg/TJ,63.05517576,kg -72b36fe6-ce8a-320c-ad5c-460efa69ea02,SESCO,II.1.1,Formosa,AR-P,annual,2021,bioetanol combustion consumption by to the public,29.277991079999996,TJ,CH4,10.0,kg/TJ,292.7799108,kg -9a262cc8-d325-3ae0-b408-8991d6cf6c95,SESCO,II.1.1,Formosa,AR-P,annual,2021,bioetanol combustion consumption by to the public,29.277991079999996,TJ,N2O,0.6,kg/TJ,17.566794648,kg -73bdd4ae-00bb-3077-a522-d6cc70607c33,SESCO,II.1.1,Jujuy,AR-Y,annual,2021,bioetanol combustion consumption by to the public,20.466218159999997,TJ,CH4,10.0,kg/TJ,204.66218159999997,kg -024af8cb-af78-334b-b1f3-f83e15c14ae5,SESCO,II.1.1,Jujuy,AR-Y,annual,2021,bioetanol combustion consumption by to the public,20.466218159999997,TJ,N2O,0.6,kg/TJ,12.279730895999998,kg -b327438b-a9b6-30af-8c3b-1c9a30e300f7,SESCO,II.1.1,La Pampa,AR-L,annual,2021,bioetanol combustion consumption by to the public,25.2696186,TJ,CH4,10.0,kg/TJ,252.696186,kg -579fdd0f-f6c2-3e62-8872-e0cf160b2662,SESCO,II.1.1,La Pampa,AR-L,annual,2021,bioetanol combustion consumption by to the public,25.2696186,TJ,N2O,0.6,kg/TJ,15.16177116,kg -53a51ed2-aba3-3353-835e-f997f1d73ee0,SESCO,II.1.1,La Rioja,AR-F,annual,2021,bioetanol combustion consumption by to the public,20.131335,TJ,CH4,10.0,kg/TJ,201.31335,kg -da1cc285-8d08-3417-add8-ee3e9c71e2fb,SESCO,II.1.1,La Rioja,AR-F,annual,2021,bioetanol combustion consumption by to the public,20.131335,TJ,N2O,0.6,kg/TJ,12.078801,kg -1c570434-581d-3810-ad2c-5ebfad33636a,SESCO,II.1.1,Mendoza,AR-M,annual,2021,bioetanol combustion consumption by to the public,142.26399035999998,TJ,CH4,10.0,kg/TJ,1422.6399035999998,kg -7f2edda6-1f47-31af-b31a-062c01817462,SESCO,II.1.1,Mendoza,AR-M,annual,2021,bioetanol combustion consumption by to the public,142.26399035999998,TJ,N2O,0.6,kg/TJ,85.35839421599998,kg -59e5a2a1-5df7-3709-a14e-0cff345331a6,SESCO,II.1.1,Misiones,AR-N,annual,2021,bioetanol combustion consumption by to the public,104.98203611999999,TJ,CH4,10.0,kg/TJ,1049.8203612,kg -25c445ca-58eb-3c15-b584-0bb52e53b61b,SESCO,II.1.1,Misiones,AR-N,annual,2021,bioetanol combustion consumption by to the public,104.98203611999999,TJ,N2O,0.6,kg/TJ,62.98922167199999,kg -77e54ba6-46df-3321-bb85-414625f22018,SESCO,II.1.1,Neuquén,AR-Q,annual,2021,bioetanol combustion consumption by to the public,40.69469484,TJ,CH4,10.0,kg/TJ,406.9469484,kg -6bcb94cb-7096-3dff-b223-4e483ccf93f2,SESCO,II.1.1,Neuquén,AR-Q,annual,2021,bioetanol combustion consumption by to the public,40.69469484,TJ,N2O,0.6,kg/TJ,24.416816903999997,kg -d3aafc9e-05b9-3ac9-8550-fab902ae93d2,SESCO,II.1.1,Rio Negro,AR-R,annual,2021,bioetanol combustion consumption by to the public,28.47529404,TJ,CH4,10.0,kg/TJ,284.7529404,kg -348b2adf-1d4c-3695-a24f-db45171feed2,SESCO,II.1.1,Rio Negro,AR-R,annual,2021,bioetanol combustion consumption by to the public,28.47529404,TJ,N2O,0.6,kg/TJ,17.085176424,kg -dca9c6a4-64fb-33db-b89c-3f9e5bda370d,SESCO,II.1.1,Salta,AR-A,annual,2021,bioetanol combustion consumption by to the public,25.796228759999995,TJ,CH4,10.0,kg/TJ,257.96228759999997,kg -a40de6d0-4d07-3a12-920b-6c184cca44e9,SESCO,II.1.1,Salta,AR-A,annual,2021,bioetanol combustion consumption by to the public,25.796228759999995,TJ,N2O,0.6,kg/TJ,15.477737255999996,kg -62fc256f-fe85-3f0f-af7e-d5812c37a5af,SESCO,II.1.1,San Juan,AR-J,annual,2021,bioetanol combustion consumption by to the public,28.707922799999995,TJ,CH4,10.0,kg/TJ,287.07922799999994,kg -892792be-0ef6-3cc1-9803-6937a717795a,SESCO,II.1.1,San Juan,AR-J,annual,2021,bioetanol combustion consumption by to the public,28.707922799999995,TJ,N2O,0.6,kg/TJ,17.224753679999996,kg -18dd08ea-2235-3c27-8e6a-bead62616341,SESCO,II.1.1,San Luis,AR-D,annual,2021,bioetanol combustion consumption by to the public,23.434152119999997,TJ,CH4,10.0,kg/TJ,234.34152119999996,kg -4488ea57-f055-3811-8e06-8d21f4e70403,SESCO,II.1.1,San Luis,AR-D,annual,2021,bioetanol combustion consumption by to the public,23.434152119999997,TJ,N2O,0.6,kg/TJ,14.060491271999998,kg -53d37792-d688-38c4-a5ed-e942cad4c6ce,SESCO,II.1.1,Santa Fe,AR-S,annual,2021,bioetanol combustion consumption by to the public,283.2191244,TJ,CH4,10.0,kg/TJ,2832.191244,kg -c6d0c36d-121b-3c64-b608-200d19bafa7d,SESCO,II.1.1,Santa Fe,AR-S,annual,2021,bioetanol combustion consumption by to the public,283.2191244,TJ,N2O,0.6,kg/TJ,169.93147464,kg -adbeff1c-492d-3de0-95ff-1fd1d2fa4d29,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2021,bioetanol combustion consumption by to the public,44.18923895999999,TJ,CH4,10.0,kg/TJ,441.8923895999999,kg -706f766a-7f56-3020-a38a-1b31cd9a7604,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2021,bioetanol combustion consumption by to the public,44.18923895999999,TJ,N2O,0.6,kg/TJ,26.513543375999994,kg -a8e210f9-8451-3c6f-97da-bfe17b238d66,SESCO,II.1.1,Tucuman,AR-T,annual,2021,bioetanol combustion consumption by to the public,86.19279012,TJ,CH4,10.0,kg/TJ,861.9279012,kg -5f4527e9-8420-39b9-8ab3-d27a3774d16f,SESCO,II.1.1,Tucuman,AR-T,annual,2021,bioetanol combustion consumption by to the public,86.19279012,TJ,N2O,0.6,kg/TJ,51.715674072,kg -06a21bfc-cc0c-312a-9e1f-ebc04ac0dbce,SESCO,II.1.1,Buenos Aires,AR-B,annual,2021,bioetanol combustion consumption by to the public,670.0986468,TJ,CH4,10.0,kg/TJ,6700.986468,kg -5a91bf23-6bb9-32a7-9a14-99b9a994d5d8,SESCO,II.1.1,Buenos Aires,AR-B,annual,2021,bioetanol combustion consumption by to the public,670.0986468,TJ,N2O,0.6,kg/TJ,402.05918807999996,kg -735e2e7a-53e0-349d-8bae-5fdf6835d2e1,SESCO,II.1.1,Capital Federal,AR-C,annual,2021,bioetanol combustion consumption by to the public,263.2028256,TJ,CH4,10.0,kg/TJ,2632.0282559999996,kg -ddabdd1b-a3b0-3545-acc0-f750f4c675b5,SESCO,II.1.1,Capital Federal,AR-C,annual,2021,bioetanol combustion consumption by to the public,263.2028256,TJ,N2O,0.6,kg/TJ,157.92169535999997,kg -2337d36b-77e1-3c13-beb9-cf4cc8f18f34,SESCO,II.1.1,Catamarca,AR-K,annual,2021,bioetanol combustion consumption by to the public,3.1366537199999995,TJ,CH4,10.0,kg/TJ,31.366537199999996,kg -b31d01b4-0380-3622-aac6-06fed51c5df1,SESCO,II.1.1,Catamarca,AR-K,annual,2021,bioetanol combustion consumption by to the public,3.1366537199999995,TJ,N2O,0.6,kg/TJ,1.8819922319999995,kg -6d749794-2620-323e-91f0-0d15cfa1a5ec,SESCO,II.1.1,Chaco,AR-H,annual,2021,bioetanol combustion consumption by to the public,23.60031552,TJ,CH4,10.0,kg/TJ,236.00315519999998,kg -bc90cffc-d278-3f49-89ac-9190b30ec2c6,SESCO,II.1.1,Chaco,AR-H,annual,2021,bioetanol combustion consumption by to the public,23.60031552,TJ,N2O,0.6,kg/TJ,14.160189311999998,kg -22fd7707-2ea6-3dbb-9510-8f6e20864e4e,SESCO,II.1.1,Corrientes,AR-W,annual,2021,bioetanol combustion consumption by to the public,28.83829716,TJ,CH4,10.0,kg/TJ,288.3829716,kg -3492ae4d-d9a5-3e36-ae7a-6341f4a0f62a,SESCO,II.1.1,Corrientes,AR-W,annual,2021,bioetanol combustion consumption by to the public,28.83829716,TJ,N2O,0.6,kg/TJ,17.302978296,kg -6e144df6-b3e4-3bd7-af0a-e915c57a89a4,SESCO,II.1.1,Córdoba,AR-X,annual,2021,bioetanol combustion consumption by to the public,143.74923551999998,TJ,CH4,10.0,kg/TJ,1437.4923551999998,kg -e83a1e0d-56f8-3933-869e-ef2f0a432cdc,SESCO,II.1.1,Córdoba,AR-X,annual,2021,bioetanol combustion consumption by to the public,143.74923551999998,TJ,N2O,0.6,kg/TJ,86.24954131199999,kg -0fde6a1b-3494-31af-99a6-f8ffd8b57dd2,SESCO,II.1.1,Entre Rios,AR-E,annual,2021,bioetanol combustion consumption by to the public,34.85085588,TJ,CH4,10.0,kg/TJ,348.50855879999995,kg -2506b82b-0f58-3cf3-83fb-06d23a96226e,SESCO,II.1.1,Entre Rios,AR-E,annual,2021,bioetanol combustion consumption by to the public,34.85085588,TJ,N2O,0.6,kg/TJ,20.910513528,kg -206cde21-edb5-37c2-800e-6de2eee42a44,SESCO,II.1.1,Formosa,AR-P,annual,2021,bioetanol combustion consumption by to the public,9.97747308,TJ,CH4,10.0,kg/TJ,99.77473079999999,kg -4b30bd4f-e8c1-3449-ae65-97de69adcf61,SESCO,II.1.1,Formosa,AR-P,annual,2021,bioetanol combustion consumption by to the public,9.97747308,TJ,N2O,0.6,kg/TJ,5.986483848,kg -243745bb-779c-3779-8775-e8c355a33294,SESCO,II.1.1,Jujuy,AR-Y,annual,2021,bioetanol combustion consumption by to the public,6.34999824,TJ,CH4,10.0,kg/TJ,63.49998239999999,kg -c9dfe7c6-1a74-3669-8452-5bc5d85b9d33,SESCO,II.1.1,Jujuy,AR-Y,annual,2021,bioetanol combustion consumption by to the public,6.34999824,TJ,N2O,0.6,kg/TJ,3.8099989439999997,kg -833fa6ce-5397-3d95-8b17-d6b83140e347,SESCO,II.1.1,La Pampa,AR-L,annual,2021,bioetanol combustion consumption by to the public,13.390213679999999,TJ,CH4,10.0,kg/TJ,133.9021368,kg -97d9a018-8deb-3ff8-8a2a-89cfad848afe,SESCO,II.1.1,La Pampa,AR-L,annual,2021,bioetanol combustion consumption by to the public,13.390213679999999,TJ,N2O,0.6,kg/TJ,8.034128207999998,kg -8867cf24-5580-3641-a52b-384766149e8d,SESCO,II.1.1,La Rioja,AR-F,annual,2021,bioetanol combustion consumption by to the public,6.597965159999999,TJ,CH4,10.0,kg/TJ,65.9796516,kg -07886b64-77c1-38ec-87a2-a18fb753ede6,SESCO,II.1.1,La Rioja,AR-F,annual,2021,bioetanol combustion consumption by to the public,6.597965159999999,TJ,N2O,0.6,kg/TJ,3.9587790959999993,kg -87f91f28-f577-3753-8e8d-10d2e06189e4,SESCO,II.1.1,Mendoza,AR-M,annual,2021,bioetanol combustion consumption by to the public,59.44559544,TJ,CH4,10.0,kg/TJ,594.4559544,kg -4e631c93-381d-31ee-9d9b-54066a7ba883,SESCO,II.1.1,Mendoza,AR-M,annual,2021,bioetanol combustion consumption by to the public,59.44559544,TJ,N2O,0.6,kg/TJ,35.667357263999996,kg -fb4388e2-a4f2-34f6-bc8d-dbb96cd8a157,SESCO,II.1.1,Misiones,AR-N,annual,2021,bioetanol combustion consumption by to the public,24.441357959999998,TJ,CH4,10.0,kg/TJ,244.4135796,kg -86ded507-1d01-3d12-8aac-8ff53c11b04e,SESCO,II.1.1,Misiones,AR-N,annual,2021,bioetanol combustion consumption by to the public,24.441357959999998,TJ,N2O,0.6,kg/TJ,14.664814775999998,kg -64babc96-4a79-3ad3-9f18-7193e8d9c8f8,SESCO,II.1.1,Neuquén,AR-Q,annual,2021,bioetanol combustion consumption by to the public,24.81714288,TJ,CH4,10.0,kg/TJ,248.1714288,kg -67577193-4192-34a9-b5e2-44303bc1ee52,SESCO,II.1.1,Neuquén,AR-Q,annual,2021,bioetanol combustion consumption by to the public,24.81714288,TJ,N2O,0.6,kg/TJ,14.890285727999998,kg -20f1359c-4d6a-305a-8375-28ade1210830,SESCO,II.1.1,Rio Negro,AR-R,annual,2021,bioetanol combustion consumption by to the public,14.7118518,TJ,CH4,10.0,kg/TJ,147.118518,kg -2079c996-5f6b-3d57-9293-be2fdada7f06,SESCO,II.1.1,Rio Negro,AR-R,annual,2021,bioetanol combustion consumption by to the public,14.7118518,TJ,N2O,0.6,kg/TJ,8.82711108,kg -480b81a4-b88e-34fa-b9a2-cfc976040ee5,SESCO,II.1.1,Salta,AR-A,annual,2021,bioetanol combustion consumption by to the public,11.68000884,TJ,CH4,10.0,kg/TJ,116.80008839999999,kg -fdb62c5f-4c26-3337-b871-961b05ffdd77,SESCO,II.1.1,Salta,AR-A,annual,2021,bioetanol combustion consumption by to the public,11.68000884,TJ,N2O,0.6,kg/TJ,7.008005303999999,kg -a610bfa7-38b1-37cc-b999-62f01a0de12b,SESCO,II.1.1,San Juan,AR-J,annual,2021,bioetanol combustion consumption by to the public,9.07763436,TJ,CH4,10.0,kg/TJ,90.77634359999999,kg -b000176d-9093-331a-abab-97b9eebc897d,SESCO,II.1.1,San Juan,AR-J,annual,2021,bioetanol combustion consumption by to the public,9.07763436,TJ,N2O,0.6,kg/TJ,5.446580615999999,kg -dade3363-c81a-3ac8-be4a-f8877e32897c,SESCO,II.1.1,San Luis,AR-D,annual,2021,bioetanol combustion consumption by to the public,9.921233159999998,TJ,CH4,10.0,kg/TJ,99.21233159999998,kg -c9e371fc-0834-32f5-977a-be9102b4017f,SESCO,II.1.1,San Luis,AR-D,annual,2021,bioetanol combustion consumption by to the public,9.921233159999998,TJ,N2O,0.6,kg/TJ,5.952739895999999,kg -c534678d-2ade-39b6-b785-a0d5676be1cb,SESCO,II.1.1,Santa Fe,AR-S,annual,2021,bioetanol combustion consumption by to the public,131.972085,TJ,CH4,10.0,kg/TJ,1319.72085,kg -51f783d3-81a1-3b6b-806b-2ae353ab9b72,SESCO,II.1.1,Santa Fe,AR-S,annual,2021,bioetanol combustion consumption by to the public,131.972085,TJ,N2O,0.6,kg/TJ,79.183251,kg -1608812c-400f-3268-acd8-4b96c2b62270,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2021,bioetanol combustion consumption by to the public,14.213361599999997,TJ,CH4,10.0,kg/TJ,142.13361599999996,kg -6fd9e982-9698-33e4-8b76-92b83b757cec,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2021,bioetanol combustion consumption by to the public,14.213361599999997,TJ,N2O,0.6,kg/TJ,8.528016959999999,kg -44d0f82e-822b-354e-8d52-03b15c21946c,SESCO,II.1.1,Tucuman,AR-T,annual,2021,bioetanol combustion consumption by to the public,23.63610456,TJ,CH4,10.0,kg/TJ,236.3610456,kg -666b7cd9-c7ca-3b0b-ac89-771b2e1f6c88,SESCO,II.1.1,Tucuman,AR-T,annual,2021,bioetanol combustion consumption by to the public,23.63610456,TJ,N2O,0.6,kg/TJ,14.181662736,kg -e4deccd9-4408-3049-938f-02d84a23e90e,SESCO,I.3.1,Buenos Aires,AR-B,annual,2021,bioetanol combustion consumption by petrochemical industries,3.6683765999999998,TJ,CH4,10.0,kg/TJ,36.683766,kg -a51054a1-fd7d-3063-8b5a-897735eec741,SESCO,I.3.1,Buenos Aires,AR-B,annual,2021,bioetanol combustion consumption by petrochemical industries,3.6683765999999998,TJ,N2O,0.6,kg/TJ,2.20102596,kg -3be00ff5-335c-302f-b30d-5d7f58f5da23,SESCO,I.3.1,Misiones,AR-N,annual,2021,bioetanol combustion consumption by petrochemical industries,0.13293072,TJ,CH4,10.0,kg/TJ,1.3293072000000001,kg -fa597d8a-b5da-31dd-92e3-e326e4eeeff5,SESCO,I.3.1,Misiones,AR-N,annual,2021,bioetanol combustion consumption by petrochemical industries,0.13293072,TJ,N2O,0.6,kg/TJ,0.079758432,kg -aeb5171a-78d9-3837-8a00-e2b84b1ab7f4,SESCO,I.3.1,Buenos Aires,AR-B,annual,2021,bioetanol combustion consumption by petrochemical industries,1.1478056399999998,TJ,CH4,10.0,kg/TJ,11.478056399999998,kg -aa6ea3fe-4459-3eeb-96a5-240d51813389,SESCO,I.3.1,Buenos Aires,AR-B,annual,2021,bioetanol combustion consumption by petrochemical industries,1.1478056399999998,TJ,N2O,0.6,kg/TJ,0.6886833839999998,kg -ae73978a-b450-306d-9579-af8fa9c9b4f1,SESCO,I.3.1,Capital Federal,AR-C,annual,2021,bioetanol combustion consumption by petrochemical industries,0.038345399999999995,TJ,CH4,10.0,kg/TJ,0.38345399999999996,kg -623e00ab-e39c-3ce3-8eff-34aaaaf09365,SESCO,I.3.1,Capital Federal,AR-C,annual,2021,bioetanol combustion consumption by petrochemical industries,0.038345399999999995,TJ,N2O,0.6,kg/TJ,0.023007239999999995,kg -e747949f-7508-3cbc-8f73-ae22ae3eb5b8,SESCO,I.3.1,Entre Rios,AR-E,annual,2021,bioetanol combustion consumption by petrochemical industries,0.11503619999999998,TJ,CH4,10.0,kg/TJ,1.1503619999999999,kg -037ebfba-5065-35ce-ba6e-da54ea2e37eb,SESCO,I.3.1,Entre Rios,AR-E,annual,2021,bioetanol combustion consumption by petrochemical industries,0.11503619999999998,TJ,N2O,0.6,kg/TJ,0.06902171999999998,kg -113817c8-b201-3e5e-89d5-6ea158a7528b,SESCO,I.3.1,La Pampa,AR-L,annual,2021,bioetanol combustion consumption by petrochemical industries,0.020450879999999998,TJ,CH4,10.0,kg/TJ,0.2045088,kg -531c5ef9-5c0e-38c4-8938-8f41cb99fd61,SESCO,I.3.1,La Pampa,AR-L,annual,2021,bioetanol combustion consumption by petrochemical industries,0.020450879999999998,TJ,N2O,0.6,kg/TJ,0.012270527999999998,kg -65fea03a-36d0-38f7-b2ad-406c1dec03c8,SESCO,I.3.1,Misiones,AR-N,annual,2021,bioetanol combustion consumption by petrochemical industries,0.035789039999999994,TJ,CH4,10.0,kg/TJ,0.35789039999999994,kg -40e3c41c-5eab-33a3-ad1f-8e454c04d92b,SESCO,I.3.1,Misiones,AR-N,annual,2021,bioetanol combustion consumption by petrochemical industries,0.035789039999999994,TJ,N2O,0.6,kg/TJ,0.021473423999999994,kg -4afb0f3c-a3ff-3d8d-a94f-4649d7687241,SESCO,I.3.1,Rio Negro,AR-R,annual,2021,bioetanol combustion consumption by petrochemical industries,0.09458531999999999,TJ,CH4,10.0,kg/TJ,0.9458531999999998,kg -959dfb5b-621d-30f1-a108-9cab762595a1,SESCO,I.3.1,Rio Negro,AR-R,annual,2021,bioetanol combustion consumption by petrochemical industries,0.09458531999999999,TJ,N2O,0.6,kg/TJ,0.05675119199999999,kg -91bed77f-8b54-39db-a563-51ad3480f9a3,SESCO,I.3.1,San Juan,AR-J,annual,2021,bioetanol combustion consumption by petrochemical industries,0.2811996,TJ,CH4,10.0,kg/TJ,2.8119959999999997,kg -f42105ab-9538-3dad-8b59-c4b8dc2c6251,SESCO,I.3.1,San Juan,AR-J,annual,2021,bioetanol combustion consumption by petrochemical industries,0.2811996,TJ,N2O,0.6,kg/TJ,0.16871976,kg -a286557f-914e-352d-896e-d310de65adce,SESCO,I.3.1,San Luis,AR-D,annual,2021,bioetanol combustion consumption by petrochemical industries,0.063909,TJ,CH4,10.0,kg/TJ,0.6390899999999999,kg -6ea450ff-79dd-316f-977f-d1dfdc2d7984,SESCO,I.3.1,San Luis,AR-D,annual,2021,bioetanol combustion consumption by petrochemical industries,0.063909,TJ,N2O,0.6,kg/TJ,0.038345399999999995,kg -94168968-248f-3ebb-84e2-9fe1824648db,SESCO,I.3.1,Santa Fe,AR-S,annual,2021,bioetanol combustion consumption by petrochemical industries,0.038345399999999995,TJ,CH4,10.0,kg/TJ,0.38345399999999996,kg -bca2e62d-67e9-3c63-8d0e-894933c674ad,SESCO,I.3.1,Santa Fe,AR-S,annual,2021,bioetanol combustion consumption by petrochemical industries,0.038345399999999995,TJ,N2O,0.6,kg/TJ,0.023007239999999995,kg -fc1a1d15-52b7-3891-9d90-8f8be5ce6c0d,SESCO,I.3.1,Tucuman,AR-T,annual,2021,bioetanol combustion consumption by petrochemical industries,0.06902172,TJ,CH4,10.0,kg/TJ,0.6902172,kg -12140e47-927d-3461-a4ea-d5664cdede4c,SESCO,I.3.1,Tucuman,AR-T,annual,2021,bioetanol combustion consumption by petrochemical industries,0.06902172,TJ,N2O,0.6,kg/TJ,0.041413031999999995,kg -3b1a9823-d56d-31d7-b242-7106e8574120,SESCO,II.5.1,Buenos Aires,AR-B,annual,2021,bioetanol combustion consumption by agriculture machines,5.264542220399999,TJ,CH4,10.0,kg/TJ,52.64542220399999,kg -1ee37ef2-aac7-372f-a568-2189660a253c,SESCO,II.5.1,Buenos Aires,AR-B,annual,2021,bioetanol combustion consumption by agriculture machines,5.264542220399999,TJ,N2O,0.6,kg/TJ,3.1587253322399995,kg -5fd4f5d1-4c2f-3a3f-a1ec-0d81a4c2ecec,SESCO,II.5.1,Capital Federal,AR-C,annual,2021,bioetanol combustion consumption by agriculture machines,1.46413218276,TJ,CH4,10.0,kg/TJ,14.6413218276,kg -5d513abd-9099-32fb-99b5-29c31ce43b67,SESCO,II.5.1,Capital Federal,AR-C,annual,2021,bioetanol combustion consumption by agriculture machines,1.46413218276,TJ,N2O,0.6,kg/TJ,0.878479309656,kg -2cd2659c-fab6-3e05-b3e3-54e0f07d6d9a,SESCO,II.5.1,Córdoba,AR-X,annual,2021,bioetanol combustion consumption by agriculture machines,0.8265402097199999,TJ,CH4,10.0,kg/TJ,8.265402097199999,kg -36c77241-8d91-3d18-87a3-627459399244,SESCO,II.5.1,Córdoba,AR-X,annual,2021,bioetanol combustion consumption by agriculture machines,0.8265402097199999,TJ,N2O,0.6,kg/TJ,0.4959241258319999,kg -3fdfeec4-c898-3790-b654-782eb10bc2e4,SESCO,II.5.1,Santa Fe,AR-S,annual,2021,bioetanol combustion consumption by agriculture machines,20.848046315039998,TJ,CH4,10.0,kg/TJ,208.48046315039997,kg -83ee0066-93b0-36fb-8d87-3730630359b7,SESCO,II.5.1,Santa Fe,AR-S,annual,2021,bioetanol combustion consumption by agriculture machines,20.848046315039998,TJ,N2O,0.6,kg/TJ,12.508827789023998,kg -45279853-a6ee-3c51-a84e-0449bd46358e,SESCO,II.5.1,Tucuman,AR-T,annual,2021,bioetanol combustion consumption by agriculture machines,0.04575884399999999,TJ,CH4,10.0,kg/TJ,0.45758843999999993,kg -dc0f9a5d-ec06-30d1-a220-9529072e3539,SESCO,II.5.1,Tucuman,AR-T,annual,2021,bioetanol combustion consumption by agriculture machines,0.04575884399999999,TJ,N2O,0.6,kg/TJ,0.027455306399999994,kg -b3ed4dde-cedd-3164-9ef4-756aac807305,SESCO,II.5.1,Buenos Aires,AR-B,annual,2021,bioetanol combustion consumption by agriculture machines,1.26310003236,TJ,CH4,10.0,kg/TJ,12.631000323599999,kg -efe0ec41-a964-32bd-b8e9-e87a7f3d5692,SESCO,II.5.1,Buenos Aires,AR-B,annual,2021,bioetanol combustion consumption by agriculture machines,1.26310003236,TJ,N2O,0.6,kg/TJ,0.7578600194159999,kg -11927534-2f57-32f3-96da-e37e0deb0eee,SESCO,II.5.1,Capital Federal,AR-C,annual,2021,bioetanol combustion consumption by agriculture machines,0.3192663567599999,TJ,CH4,10.0,kg/TJ,3.1926635675999995,kg -6d480797-4e8c-396f-bc1d-ec9309b771e2,SESCO,II.5.1,Capital Federal,AR-C,annual,2021,bioetanol combustion consumption by agriculture machines,0.3192663567599999,TJ,N2O,0.6,kg/TJ,0.19155981405599995,kg -87478693-f5ba-31fe-afe8-b21ecb2c1b2a,SESCO,II.5.1,Córdoba,AR-X,annual,2021,bioetanol combustion consumption by agriculture machines,0.19078370315999998,TJ,CH4,10.0,kg/TJ,1.9078370315999997,kg -7017238b-db48-3ca1-9ef7-75c7909dfdc0,SESCO,II.5.1,Córdoba,AR-X,annual,2021,bioetanol combustion consumption by agriculture machines,0.19078370315999998,TJ,N2O,0.6,kg/TJ,0.11447022189599998,kg -22d1f704-b7b5-35b4-81d0-2ea8e2e27393,SESCO,II.5.1,Santa Fe,AR-S,annual,2021,bioetanol combustion consumption by agriculture machines,2.175398451,TJ,CH4,10.0,kg/TJ,21.75398451,kg -70283142-53fe-3b67-97b0-86a50c011044,SESCO,II.5.1,Santa Fe,AR-S,annual,2021,bioetanol combustion consumption by agriculture machines,2.175398451,TJ,N2O,0.6,kg/TJ,1.3052390705999999,kg -f9e66aed-5a39-3cc4-8e0b-99738a3c4a8b,SESCO,II.1.1,Buenos Aires,AR-B,annual,2021,bioetanol combustion consumption by to the public,366.73601145731993,TJ,CH4,10.0,kg/TJ,3667.360114573199,kg -d84d8c0e-8b68-367d-84e4-81b673df8fa0,SESCO,II.1.1,Buenos Aires,AR-B,annual,2021,bioetanol combustion consumption by to the public,366.73601145731993,TJ,N2O,0.6,kg/TJ,220.04160687439196,kg -411450d4-1e8d-3609-8fb4-a0f4972a1dd7,SESCO,II.1.1,Capital Federal,AR-C,annual,2021,bioetanol combustion consumption by to the public,23.1437751876,TJ,CH4,10.0,kg/TJ,231.437751876,kg -e67a2103-68da-3b3d-a1e1-7492776e8dc3,SESCO,II.1.1,Capital Federal,AR-C,annual,2021,bioetanol combustion consumption by to the public,23.1437751876,TJ,N2O,0.6,kg/TJ,13.886265112559999,kg -5c0acd65-6f0b-3013-8534-73e5212ab801,SESCO,II.1.1,Catamarca,AR-K,annual,2021,bioetanol combustion consumption by to the public,3.5926597731600003,TJ,CH4,10.0,kg/TJ,35.926597731600005,kg -2d0d268c-851b-3bb2-84c5-38f73c240c0a,SESCO,II.1.1,Catamarca,AR-K,annual,2021,bioetanol combustion consumption by to the public,3.5926597731600003,TJ,N2O,0.6,kg/TJ,2.155595863896,kg -22bb78d6-e8dd-37e9-b24e-3342cfb514c8,SESCO,II.1.1,Chaco,AR-H,annual,2021,bioetanol combustion consumption by to the public,3.8494052333999997,TJ,CH4,10.0,kg/TJ,38.494052333999996,kg -47bb49b3-8539-38dc-abd2-aafc3fe7c066,SESCO,II.1.1,Chaco,AR-H,annual,2021,bioetanol combustion consumption by to the public,3.8494052333999997,TJ,N2O,0.6,kg/TJ,2.30964314004,kg -1450e207-996f-30b7-b8af-b75e32602dfd,SESCO,II.1.1,Chubut,AR-U,annual,2021,bioetanol combustion consumption by to the public,25.55665181352,TJ,CH4,10.0,kg/TJ,255.5665181352,kg -68b2f30d-05d9-3120-8de7-3e0a51401ad0,SESCO,II.1.1,Chubut,AR-U,annual,2021,bioetanol combustion consumption by to the public,25.55665181352,TJ,N2O,0.6,kg/TJ,15.333991088111999,kg -1533baf8-6e60-35d4-aea1-6b194972590a,SESCO,II.1.1,Corrientes,AR-W,annual,2021,bioetanol combustion consumption by to the public,23.557072134239995,TJ,CH4,10.0,kg/TJ,235.57072134239996,kg -6e080a54-6f77-3804-aa65-932818eaf25e,SESCO,II.1.1,Corrientes,AR-W,annual,2021,bioetanol combustion consumption by to the public,23.557072134239995,TJ,N2O,0.6,kg/TJ,14.134243280543997,kg -f0bbd417-0bb3-3254-9d09-de5856309098,SESCO,II.1.1,Córdoba,AR-X,annual,2021,bioetanol combustion consumption by to the public,56.76159382884,TJ,CH4,10.0,kg/TJ,567.6159382884,kg -41d5ebb9-9969-3f4b-b2fe-24a923e70890,SESCO,II.1.1,Córdoba,AR-X,annual,2021,bioetanol combustion consumption by to the public,56.76159382884,TJ,N2O,0.6,kg/TJ,34.056956297304,kg -11c6791a-9753-30ec-a82a-8e1c47a28ee3,SESCO,II.1.1,Entre Rios,AR-E,annual,2021,bioetanol combustion consumption by to the public,46.46629362276,TJ,CH4,10.0,kg/TJ,464.66293622759997,kg -9b450e5a-4a3e-3a3b-b919-59ef0a58c72d,SESCO,II.1.1,Entre Rios,AR-E,annual,2021,bioetanol combustion consumption by to the public,46.46629362276,TJ,N2O,0.6,kg/TJ,27.879776173655998,kg -b567920f-9309-3c74-9de2-12d9eebcc443,SESCO,II.1.1,Jujuy,AR-Y,annual,2021,bioetanol combustion consumption by to the public,3.8042445776399996,TJ,CH4,10.0,kg/TJ,38.042445776399994,kg -497db59b-4a69-3f34-bb55-e8c0b5f4a420,SESCO,II.1.1,Jujuy,AR-Y,annual,2021,bioetanol combustion consumption by to the public,3.8042445776399996,TJ,N2O,0.6,kg/TJ,2.2825467465839995,kg -14a97ff3-b370-30bd-a541-65b379c3f614,SESCO,II.1.1,La Pampa,AR-L,annual,2021,bioetanol combustion consumption by to the public,29.53945046808,TJ,CH4,10.0,kg/TJ,295.39450468079997,kg -92085314-201b-39a7-b049-09535b502d9a,SESCO,II.1.1,La Pampa,AR-L,annual,2021,bioetanol combustion consumption by to the public,29.53945046808,TJ,N2O,0.6,kg/TJ,17.723670280847998,kg -c1445d73-61ae-3206-acd9-7ae25c6ddbfa,SESCO,II.1.1,Mendoza,AR-M,annual,2021,bioetanol combustion consumption by to the public,7.022988129959999,TJ,CH4,10.0,kg/TJ,70.2298812996,kg -e40fab82-c109-3425-bb85-1b4d3ae8a430,SESCO,II.1.1,Mendoza,AR-M,annual,2021,bioetanol combustion consumption by to the public,7.022988129959999,TJ,N2O,0.6,kg/TJ,4.213792877975999,kg -44ac98b4-e9ad-346b-9ea6-d6a0328bcbc3,SESCO,II.1.1,Neuquén,AR-Q,annual,2021,bioetanol combustion consumption by to the public,31.763522013479996,TJ,CH4,10.0,kg/TJ,317.63522013479997,kg -33fc82fc-4368-3969-8be9-ce66161a4e49,SESCO,II.1.1,Neuquén,AR-Q,annual,2021,bioetanol combustion consumption by to the public,31.763522013479996,TJ,N2O,0.6,kg/TJ,19.058113208087995,kg -db7074eb-10d2-3b19-b272-49f3327f9842,SESCO,II.1.1,Rio Negro,AR-R,annual,2021,bioetanol combustion consumption by to the public,106.15968470663998,TJ,CH4,10.0,kg/TJ,1061.5968470663997,kg -527e978d-b0b9-398a-922a-073b0b26ca9f,SESCO,II.1.1,Rio Negro,AR-R,annual,2021,bioetanol combustion consumption by to the public,106.15968470663998,TJ,N2O,0.6,kg/TJ,63.69581082398398,kg -c4e19342-3628-348a-b3c8-1b3ac705444a,SESCO,II.1.1,San Juan,AR-J,annual,2021,bioetanol combustion consumption by to the public,17.81729492076,TJ,CH4,10.0,kg/TJ,178.17294920759997,kg -d9206cbb-3d46-3218-943c-b85b85b23fe0,SESCO,II.1.1,San Juan,AR-J,annual,2021,bioetanol combustion consumption by to the public,17.81729492076,TJ,N2O,0.6,kg/TJ,10.690376952455999,kg -d3807b30-55e4-330d-ae3f-3482ba8a7adc,SESCO,II.1.1,San Luis,AR-D,annual,2021,bioetanol combustion consumption by to the public,6.4558698894,TJ,CH4,10.0,kg/TJ,64.558698894,kg -b3dcbc25-f201-3b24-96f7-199bf61f9a60,SESCO,II.1.1,San Luis,AR-D,annual,2021,bioetanol combustion consumption by to the public,6.4558698894,TJ,N2O,0.6,kg/TJ,3.8735219336399997,kg -8a1227bc-9521-3733-b8fa-650caa1c2597,SESCO,II.1.1,Santa Fe,AR-S,annual,2021,bioetanol combustion consumption by to the public,80.16329551499999,TJ,CH4,10.0,kg/TJ,801.6329551499998,kg -ec05dd14-acb5-3720-a57c-b366f9e49b81,SESCO,II.1.1,Santa Fe,AR-S,annual,2021,bioetanol combustion consumption by to the public,80.16329551499999,TJ,N2O,0.6,kg/TJ,48.097977308999994,kg -0f5ad232-6496-3c20-9390-744b4bec422f,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2021,bioetanol combustion consumption by to the public,5.3237219544,TJ,CH4,10.0,kg/TJ,53.237219544,kg -c98a21de-267f-3b81-9ceb-ae3a8fc12ea0,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2021,bioetanol combustion consumption by to the public,5.3237219544,TJ,N2O,0.6,kg/TJ,3.1942331726399997,kg -29a2cf1f-445e-3f16-9d46-7b3292535a1f,SESCO,II.1.1,Buenos Aires,AR-B,annual,2021,bioetanol combustion consumption by to the public,58.273097918759994,TJ,CH4,10.0,kg/TJ,582.7309791875999,kg -e389e11c-7498-3da7-8366-f4c953130430,SESCO,II.1.1,Buenos Aires,AR-B,annual,2021,bioetanol combustion consumption by to the public,58.273097918759994,TJ,N2O,0.6,kg/TJ,34.963858751256,kg -0cb3f5b8-a656-3b47-9d8a-e4ae7539b42e,SESCO,II.1.1,Capital Federal,AR-C,annual,2021,bioetanol combustion consumption by to the public,3.72089190348,TJ,CH4,10.0,kg/TJ,37.208919034800005,kg -6598e8e5-46b3-3173-8495-5fdf859f6363,SESCO,II.1.1,Capital Federal,AR-C,annual,2021,bioetanol combustion consumption by to the public,3.72089190348,TJ,N2O,0.6,kg/TJ,2.232535142088,kg -a10919b7-68bb-37eb-94de-ec9a59e359bb,SESCO,II.1.1,Catamarca,AR-K,annual,2021,bioetanol combustion consumption by to the public,0.29172157776,TJ,CH4,10.0,kg/TJ,2.9172157776,kg -5d0c7608-75e7-39a1-86ef-86ab6cdb171a,SESCO,II.1.1,Catamarca,AR-K,annual,2021,bioetanol combustion consumption by to the public,0.29172157776,TJ,N2O,0.6,kg/TJ,0.175032946656,kg -6d83b6f6-8c32-3254-b0ca-1e3e7d5bd1a5,SESCO,II.1.1,Chaco,AR-H,annual,2021,bioetanol combustion consumption by to the public,0.40832482643999995,TJ,CH4,10.0,kg/TJ,4.0832482644,kg -0eb58db6-6ffd-3daf-96d1-5856f4d156a9,SESCO,II.1.1,Chaco,AR-H,annual,2021,bioetanol combustion consumption by to the public,0.40832482643999995,TJ,N2O,0.6,kg/TJ,0.24499489586399997,kg -c4277651-1d61-3cbe-9942-d4f55d7f9c92,SESCO,II.1.1,Chubut,AR-U,annual,2021,bioetanol combustion consumption by to the public,3.82052092176,TJ,CH4,10.0,kg/TJ,38.2052092176,kg -e4c3afeb-eea4-3407-bc69-b7fc01914690,SESCO,II.1.1,Chubut,AR-U,annual,2021,bioetanol combustion consumption by to the public,3.82052092176,TJ,N2O,0.6,kg/TJ,2.292312553056,kg -e423ebb2-8842-3670-bee3-2255b4d107f4,SESCO,II.1.1,Corrientes,AR-W,annual,2021,bioetanol combustion consumption by to the public,2.41791265512,TJ,CH4,10.0,kg/TJ,24.1791265512,kg -8e6a4141-abe0-30a4-89be-b6b4b9d41286,SESCO,II.1.1,Corrientes,AR-W,annual,2021,bioetanol combustion consumption by to the public,2.41791265512,TJ,N2O,0.6,kg/TJ,1.450747593072,kg -bbe216cf-09f6-3113-b849-29a198927445,SESCO,II.1.1,Córdoba,AR-X,annual,2021,bioetanol combustion consumption by to the public,9.51967757484,TJ,CH4,10.0,kg/TJ,95.1967757484,kg -04d8ccaf-5693-3dcd-9cbb-3855c8e39baf,SESCO,II.1.1,Córdoba,AR-X,annual,2021,bioetanol combustion consumption by to the public,9.51967757484,TJ,N2O,0.6,kg/TJ,5.711806544903999,kg -dd46fabc-62e9-38d1-bdfc-7e30cbf6280f,SESCO,II.1.1,Entre Rios,AR-E,annual,2021,bioetanol combustion consumption by to the public,8.81452867608,TJ,CH4,10.0,kg/TJ,88.1452867608,kg -706ed070-ed1c-3e2e-96c2-ab619cdc65e9,SESCO,II.1.1,Entre Rios,AR-E,annual,2021,bioetanol combustion consumption by to the public,8.81452867608,TJ,N2O,0.6,kg/TJ,5.288717205648,kg -4c3648f4-d417-3995-9771-d61eb782f618,SESCO,II.1.1,Jujuy,AR-Y,annual,2021,bioetanol combustion consumption by to the public,0.08563805999999999,TJ,CH4,10.0,kg/TJ,0.8563805999999998,kg -a69a3815-3748-315a-a1e6-355100e08c87,SESCO,II.1.1,Jujuy,AR-Y,annual,2021,bioetanol combustion consumption by to the public,0.08563805999999999,TJ,N2O,0.6,kg/TJ,0.051382835999999994,kg -2262e91b-33a0-39e3-8939-7bc464a4bd90,SESCO,II.1.1,La Pampa,AR-L,annual,2021,bioetanol combustion consumption by to the public,6.855592564439999,TJ,CH4,10.0,kg/TJ,68.55592564439999,kg -b7175859-1d7d-387d-afea-fa9b2bea55f1,SESCO,II.1.1,La Pampa,AR-L,annual,2021,bioetanol combustion consumption by to the public,6.855592564439999,TJ,N2O,0.6,kg/TJ,4.113355538663999,kg -e5680475-9674-389f-bcb5-0caf5cc575e3,SESCO,II.1.1,Mendoza,AR-M,annual,2021,bioetanol combustion consumption by to the public,0.95893409412,TJ,CH4,10.0,kg/TJ,9.5893409412,kg -aec8da2c-550c-3e09-80b0-ab41dafcdd5c,SESCO,II.1.1,Mendoza,AR-M,annual,2021,bioetanol combustion consumption by to the public,0.95893409412,TJ,N2O,0.6,kg/TJ,0.575360456472,kg -a6d08f8d-10d8-3b99-a9e0-66d07dd042e8,SESCO,II.1.1,Neuquén,AR-Q,annual,2021,bioetanol combustion consumption by to the public,9.695460557519999,TJ,CH4,10.0,kg/TJ,96.95460557519999,kg -c1b11594-4fe4-3889-a80a-12afb8f44880,SESCO,II.1.1,Neuquén,AR-Q,annual,2021,bioetanol combustion consumption by to the public,9.695460557519999,TJ,N2O,0.6,kg/TJ,5.817276334511999,kg -fdac0ee2-b790-3276-9b36-8a8269005d32,SESCO,II.1.1,Rio Negro,AR-R,annual,2021,bioetanol combustion consumption by to the public,16.663279882319998,TJ,CH4,10.0,kg/TJ,166.63279882319998,kg -3b5b5ada-32a3-3b2d-8465-33b9865874de,SESCO,II.1.1,Rio Negro,AR-R,annual,2021,bioetanol combustion consumption by to the public,16.663279882319998,TJ,N2O,0.6,kg/TJ,9.997967929391999,kg -098fcb0e-550c-3863-99e1-80cb7a5c8c7f,SESCO,II.1.1,San Juan,AR-J,annual,2021,bioetanol combustion consumption by to the public,2.03803500276,TJ,CH4,10.0,kg/TJ,20.380350027600002,kg -c97adedc-c517-38e1-9a74-b783d47c7582,SESCO,II.1.1,San Juan,AR-J,annual,2021,bioetanol combustion consumption by to the public,2.03803500276,TJ,N2O,0.6,kg/TJ,1.222821001656,kg -5e3efb30-b2d1-35b5-befe-75caed2497f4,SESCO,II.1.1,San Luis,AR-D,annual,2021,bioetanol combustion consumption by to the public,1.40881255236,TJ,CH4,10.0,kg/TJ,14.088125523599999,kg -a0f03de1-a01c-347a-825b-2b2ea01faf72,SESCO,II.1.1,San Luis,AR-D,annual,2021,bioetanol combustion consumption by to the public,1.40881255236,TJ,N2O,0.6,kg/TJ,0.8452875314159999,kg -f7f7c4e4-f5c2-337d-9438-89a9e6a745da,SESCO,II.1.1,Santa Fe,AR-S,annual,2021,bioetanol combustion consumption by to the public,16.400519306999996,TJ,CH4,10.0,kg/TJ,164.00519306999996,kg -89f83a50-7b03-3f66-a6ff-02ef864ba574,SESCO,II.1.1,Santa Fe,AR-S,annual,2021,bioetanol combustion consumption by to the public,16.400519306999996,TJ,N2O,0.6,kg/TJ,9.840311584199997,kg -81e46c1f-5ecf-3b9b-90c6-99a7ffac2bf9,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2021,bioetanol combustion consumption by to the public,0.58886008236,TJ,CH4,10.0,kg/TJ,5.8886008236,kg -e738f6ed-cff1-35dc-acc0-bc9ba39964ab,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2021,bioetanol combustion consumption by to the public,0.58886008236,TJ,N2O,0.6,kg/TJ,0.353316049416,kg -d6725949-ae88-3b29-8b2e-6cefc325b3a3,SESCO,II.5.1,Buenos Aires,AR-B,annual,2021,bioetanol combustion consumption by agriculture machines,0.41157395999999996,TJ,CH4,10.0,kg/TJ,4.1157395999999995,kg -fe84b6dd-3ded-322e-a3b4-d24cd1c941f4,SESCO,II.5.1,Buenos Aires,AR-B,annual,2021,bioetanol combustion consumption by agriculture machines,0.41157395999999996,TJ,N2O,0.6,kg/TJ,0.24694437599999997,kg -496d5eea-bf00-3cf9-baba-623093108044,SESCO,II.5.1,Entre Rios,AR-E,annual,2021,bioetanol combustion consumption by agriculture machines,0.028119959999999996,TJ,CH4,10.0,kg/TJ,0.28119959999999994,kg -ac969ad8-0cb3-3b37-91c7-0d92842c76d4,SESCO,II.5.1,Entre Rios,AR-E,annual,2021,bioetanol combustion consumption by agriculture machines,0.028119959999999996,TJ,N2O,0.6,kg/TJ,0.016871975999999997,kg -9ee3631f-8b0e-3468-b9ca-5cc856bcbe20,SESCO,II.5.1,Salta,AR-A,annual,2021,bioetanol combustion consumption by agriculture machines,0.05368356,TJ,CH4,10.0,kg/TJ,0.5368356,kg -a8bca11d-a81b-3486-83fd-c43825b56070,SESCO,II.5.1,Salta,AR-A,annual,2021,bioetanol combustion consumption by agriculture machines,0.05368356,TJ,N2O,0.6,kg/TJ,0.032210136,kg -8a299b0b-8bc1-3c74-b5c4-bb572e794534,SESCO,II.5.1,Santa Fe,AR-S,annual,2021,bioetanol combustion consumption by agriculture machines,0.89728236,TJ,CH4,10.0,kg/TJ,8.9728236,kg -42329c4e-eca9-3366-a3ec-01afadec023d,SESCO,II.5.1,Santa Fe,AR-S,annual,2021,bioetanol combustion consumption by agriculture machines,0.89728236,TJ,N2O,0.6,kg/TJ,0.538369416,kg -280ba528-b40c-335f-82a5-a97ae881359c,SESCO,II.5.1,Santa Fe,AR-S,annual,2021,bioetanol combustion consumption by agriculture machines,0.06135263999999999,TJ,CH4,10.0,kg/TJ,0.6135263999999999,kg -1081de37-7686-3360-bf4f-162942d4a615,SESCO,II.5.1,Santa Fe,AR-S,annual,2021,bioetanol combustion consumption by agriculture machines,0.06135263999999999,TJ,N2O,0.6,kg/TJ,0.036811583999999994,kg -506295c3-43e0-321c-8ba3-f2c4aa22ce24,SESCO,II.1.1,Buenos Aires,AR-B,annual,2021,bioetanol combustion consumption by to the public,2841.85684116,TJ,CH4,10.0,kg/TJ,28418.568411599997,kg -b5146bd0-618b-39da-8e97-fc644a075721,SESCO,II.1.1,Buenos Aires,AR-B,annual,2021,bioetanol combustion consumption by to the public,2841.85684116,TJ,N2O,0.6,kg/TJ,1705.114104696,kg -61f05e09-803f-363b-ace4-c50df93a5dbe,SESCO,II.1.1,Capital Federal,AR-C,annual,2021,bioetanol combustion consumption by to the public,562.2509311199999,TJ,CH4,10.0,kg/TJ,5622.5093111999995,kg -64c0456e-dc27-3ea7-9c8c-511d37a086fc,SESCO,II.1.1,Capital Federal,AR-C,annual,2021,bioetanol combustion consumption by to the public,562.2509311199999,TJ,N2O,0.6,kg/TJ,337.3505586719999,kg -aa0208ab-c66f-315c-a273-29fc609010a9,SESCO,II.1.1,Catamarca,AR-K,annual,2021,bioetanol combustion consumption by to the public,59.92874747999999,TJ,CH4,10.0,kg/TJ,599.2874747999999,kg -a56b83d9-6078-310e-b993-078e9285303d,SESCO,II.1.1,Catamarca,AR-K,annual,2021,bioetanol combustion consumption by to the public,59.92874747999999,TJ,N2O,0.6,kg/TJ,35.95724848799999,kg -066f5d60-0d07-3129-bde9-472f360fb615,SESCO,II.1.1,Chaco,AR-H,annual,2021,bioetanol combustion consumption by to the public,179.47692287999996,TJ,CH4,10.0,kg/TJ,1794.7692287999996,kg -10ff0ce7-922b-3fa5-871b-c35076c93a6e,SESCO,II.1.1,Chaco,AR-H,annual,2021,bioetanol combustion consumption by to the public,179.47692287999996,TJ,N2O,0.6,kg/TJ,107.68615372799998,kg -87740061-0b69-3da5-aa02-50600f0d2113,SESCO,II.1.1,Chubut,AR-U,annual,2021,bioetanol combustion consumption by to the public,258.128451,TJ,CH4,10.0,kg/TJ,2581.28451,kg -476f6649-0136-39a5-9b38-1b52bdc9075b,SESCO,II.1.1,Chubut,AR-U,annual,2021,bioetanol combustion consumption by to the public,258.128451,TJ,N2O,0.6,kg/TJ,154.8770706,kg -b8eb279b-95a6-3fe7-ae79-2aae79b9105f,SESCO,II.1.1,Corrientes,AR-W,annual,2021,bioetanol combustion consumption by to the public,169.06231223999998,TJ,CH4,10.0,kg/TJ,1690.6231223999998,kg -a1581944-3819-33cb-b4dd-be2498f3e6ce,SESCO,II.1.1,Corrientes,AR-W,annual,2021,bioetanol combustion consumption by to the public,169.06231223999998,TJ,N2O,0.6,kg/TJ,101.43738734399999,kg -fe249e50-eb42-38cf-bd23-afe207c3e6f9,SESCO,II.1.1,Córdoba,AR-X,annual,2021,bioetanol combustion consumption by to the public,740.84079708,TJ,CH4,10.0,kg/TJ,7408.4079708,kg -42f43732-b2ae-3434-a17d-051e54fbe3d2,SESCO,II.1.1,Córdoba,AR-X,annual,2021,bioetanol combustion consumption by to the public,740.84079708,TJ,N2O,0.6,kg/TJ,444.504478248,kg -37bcb362-c8de-345b-b28f-623eb1a4d269,SESCO,II.1.1,Entre Rios,AR-E,annual,2021,bioetanol combustion consumption by to the public,233.64619127999998,TJ,CH4,10.0,kg/TJ,2336.4619128,kg -4e6f9e8d-2028-3e01-bef4-3837c9b57edd,SESCO,II.1.1,Entre Rios,AR-E,annual,2021,bioetanol combustion consumption by to the public,233.64619127999998,TJ,N2O,0.6,kg/TJ,140.18771476799998,kg -e13d8789-cade-399c-bce7-dc423834f78b,SESCO,II.1.1,Formosa,AR-P,annual,2021,bioetanol combustion consumption by to the public,70.73959391999999,TJ,CH4,10.0,kg/TJ,707.3959391999999,kg -3da0f18c-df79-3838-846d-a68ae1a2ca24,SESCO,II.1.1,Formosa,AR-P,annual,2021,bioetanol combustion consumption by to the public,70.73959391999999,TJ,N2O,0.6,kg/TJ,42.443756351999994,kg -5c5b1e29-45f0-3831-9a02-b9a1c2166654,SESCO,II.1.1,Jujuy,AR-Y,annual,2021,bioetanol combustion consumption by to the public,121.07176596,TJ,CH4,10.0,kg/TJ,1210.7176596,kg -fd911507-ef38-3584-acf5-f59140da7ff4,SESCO,II.1.1,Jujuy,AR-Y,annual,2021,bioetanol combustion consumption by to the public,121.07176596,TJ,N2O,0.6,kg/TJ,72.643059576,kg -7d5a8f36-3f9c-345c-83cf-6ad614fc3437,SESCO,II.1.1,La Pampa,AR-L,annual,2021,bioetanol combustion consumption by to the public,118.08082476,TJ,CH4,10.0,kg/TJ,1180.8082476,kg -afd950ac-5123-325a-863a-adf447ea02c0,SESCO,II.1.1,La Pampa,AR-L,annual,2021,bioetanol combustion consumption by to the public,118.08082476,TJ,N2O,0.6,kg/TJ,70.848494856,kg -d9d99a10-aa3d-3464-ad84-95292a1f8783,SESCO,II.1.1,La Rioja,AR-F,annual,2021,bioetanol combustion consumption by to the public,74.50766856,TJ,CH4,10.0,kg/TJ,745.0766856,kg -0ede6c6e-73e3-3706-9ad6-b0fde2480cf1,SESCO,II.1.1,La Rioja,AR-F,annual,2021,bioetanol combustion consumption by to the public,74.50766856,TJ,N2O,0.6,kg/TJ,44.704601136,kg -65709218-066e-3c7b-a2d5-2508b8a77985,SESCO,II.1.1,Mendoza,AR-M,annual,2021,bioetanol combustion consumption by to the public,376.43934816,TJ,CH4,10.0,kg/TJ,3764.3934816,kg -e16ab41f-5eea-34d2-ae8c-bae9942a7f75,SESCO,II.1.1,Mendoza,AR-M,annual,2021,bioetanol combustion consumption by to the public,376.43934816,TJ,N2O,0.6,kg/TJ,225.863608896,kg -ec090c90-4d79-3305-9718-7f31b6ed940d,SESCO,II.1.1,Misiones,AR-N,annual,2021,bioetanol combustion consumption by to the public,287.36554032,TJ,CH4,10.0,kg/TJ,2873.6554032,kg -aa7126e8-2ebf-3545-8179-f5e0c1316696,SESCO,II.1.1,Misiones,AR-N,annual,2021,bioetanol combustion consumption by to the public,287.36554032,TJ,N2O,0.6,kg/TJ,172.41932419199998,kg -56fb0b1b-772c-3a31-9596-673a8d3dfcca,SESCO,II.1.1,Neuquén,AR-Q,annual,2021,bioetanol combustion consumption by to the public,252.45844452,TJ,CH4,10.0,kg/TJ,2524.5844452,kg -f1980ca4-e583-3ff8-ac4c-999a6cc4cd3f,SESCO,II.1.1,Neuquén,AR-Q,annual,2021,bioetanol combustion consumption by to the public,252.45844452,TJ,N2O,0.6,kg/TJ,151.475066712,kg -0412acef-fa07-3953-9b4a-9e566e8192d8,SESCO,II.1.1,Rio Negro,AR-R,annual,2021,bioetanol combustion consumption by to the public,243.86140583999997,TJ,CH4,10.0,kg/TJ,2438.6140583999995,kg -7977edc3-cc9c-3e92-a98a-923e86ff4610,SESCO,II.1.1,Rio Negro,AR-R,annual,2021,bioetanol combustion consumption by to the public,243.86140583999997,TJ,N2O,0.6,kg/TJ,146.316843504,kg -a1e3dded-6560-3dc8-9733-43df6fc3ffbf,SESCO,II.1.1,Salta,AR-A,annual,2021,bioetanol combustion consumption by to the public,259.59835799999996,TJ,CH4,10.0,kg/TJ,2595.9835799999996,kg -33dd86d2-59bf-3255-a020-80cbf1ff76d4,SESCO,II.1.1,Salta,AR-A,annual,2021,bioetanol combustion consumption by to the public,259.59835799999996,TJ,N2O,0.6,kg/TJ,155.75901479999996,kg -84498067-427c-3098-ac61-a22e895c2999,SESCO,II.1.1,San Juan,AR-J,annual,2021,bioetanol combustion consumption by to the public,128.0991996,TJ,CH4,10.0,kg/TJ,1280.991996,kg -9ac4cbc7-331f-308e-b747-e4d765048611,SESCO,II.1.1,San Juan,AR-J,annual,2021,bioetanol combustion consumption by to the public,128.0991996,TJ,N2O,0.6,kg/TJ,76.85951976,kg -375b6d39-7263-3982-a3ea-9db619f0df14,SESCO,II.1.1,San Luis,AR-D,annual,2021,bioetanol combustion consumption by to the public,102.20071643999998,TJ,CH4,10.0,kg/TJ,1022.0071643999997,kg -3d6828ce-a9ba-3b5c-b0ec-9e1210125434,SESCO,II.1.1,San Luis,AR-D,annual,2021,bioetanol combustion consumption by to the public,102.20071643999998,TJ,N2O,0.6,kg/TJ,61.32042986399998,kg -63e84c55-2bfb-3bbf-a579-d1c761e4656d,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2021,bioetanol combustion consumption by to the public,147.35370312,TJ,CH4,10.0,kg/TJ,1473.5370312,kg -33e19736-3ef5-3ce1-a083-11765c1f1435,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2021,bioetanol combustion consumption by to the public,147.35370312,TJ,N2O,0.6,kg/TJ,88.412221872,kg -783e28b9-fd49-3e67-b201-c8a83789848e,SESCO,II.1.1,Santa Fe,AR-S,annual,2021,bioetanol combustion consumption by to the public,534.07217484,TJ,CH4,10.0,kg/TJ,5340.7217484,kg -5de21d62-5cce-3d26-9413-cdd1aaacb0c1,SESCO,II.1.1,Santa Fe,AR-S,annual,2021,bioetanol combustion consumption by to the public,534.07217484,TJ,N2O,0.6,kg/TJ,320.443304904,kg -1078e42e-1663-3382-85ca-d32c2d19c4fb,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2021,bioetanol combustion consumption by to the public,113.58930024,TJ,CH4,10.0,kg/TJ,1135.8930024000001,kg -d521ad41-ff42-3104-a680-f07de66f3d13,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2021,bioetanol combustion consumption by to the public,113.58930024,TJ,N2O,0.6,kg/TJ,68.153580144,kg -7e391c15-3878-3038-b09b-5b8bcdd46b6a,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2021,bioetanol combustion consumption by to the public,119.16727775999999,TJ,CH4,10.0,kg/TJ,1191.6727775999998,kg -9660bbfd-05f1-3665-9783-60e882381961,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2021,bioetanol combustion consumption by to the public,119.16727775999999,TJ,N2O,0.6,kg/TJ,71.500366656,kg -0f88bce0-84c7-345a-a7b0-c24be6f46889,SESCO,II.1.1,Tucuman,AR-T,annual,2021,bioetanol combustion consumption by to the public,219.03403752,TJ,CH4,10.0,kg/TJ,2190.3403752,kg -f2e8c8b6-a8be-38dc-a775-3193bf8900ef,SESCO,II.1.1,Tucuman,AR-T,annual,2021,bioetanol combustion consumption by to the public,219.03403752,TJ,N2O,0.6,kg/TJ,131.420422512,kg -3c4d4eae-34f6-37aa-bb5a-950f573c8c37,SESCO,II.1.1,Buenos Aires,AR-B,annual,2021,bioetanol combustion consumption by to the public,1180.3532155199998,TJ,CH4,10.0,kg/TJ,11803.532155199999,kg -2d0d71b5-dad3-3905-8d61-881e6d60b5ec,SESCO,II.1.1,Buenos Aires,AR-B,annual,2021,bioetanol combustion consumption by to the public,1180.3532155199998,TJ,N2O,0.6,kg/TJ,708.2119293119998,kg -66b045a1-aa99-3130-9bf1-233b5ce5e625,SESCO,II.1.1,Capital Federal,AR-C,annual,2021,bioetanol combustion consumption by to the public,294.33162131999995,TJ,CH4,10.0,kg/TJ,2943.3162131999998,kg -110b12d2-19aa-3fd2-9d96-a7e26f840f25,SESCO,II.1.1,Capital Federal,AR-C,annual,2021,bioetanol combustion consumption by to the public,294.33162131999995,TJ,N2O,0.6,kg/TJ,176.59897279199996,kg -2eba85e0-e55f-329f-bfc8-57c37b32b6d8,SESCO,II.1.1,Catamarca,AR-K,annual,2021,bioetanol combustion consumption by to the public,23.089043519999997,TJ,CH4,10.0,kg/TJ,230.89043519999996,kg -69e65142-390d-38e6-83c4-95c01fade3ad,SESCO,II.1.1,Catamarca,AR-K,annual,2021,bioetanol combustion consumption by to the public,23.089043519999997,TJ,N2O,0.6,kg/TJ,13.853426111999998,kg -2dcb72e1-169b-3707-a685-212050fbcd7a,SESCO,II.1.1,Chaco,AR-H,annual,2021,bioetanol combustion consumption by to the public,56.20924367999999,TJ,CH4,10.0,kg/TJ,562.0924368,kg -68ba4104-8bd4-3731-841e-d9b6a90d94a7,SESCO,II.1.1,Chaco,AR-H,annual,2021,bioetanol combustion consumption by to the public,56.20924367999999,TJ,N2O,0.6,kg/TJ,33.725546208,kg -7dcb9573-4f57-37c8-ae08-2755656029aa,SESCO,II.1.1,Chubut,AR-U,annual,2021,bioetanol combustion consumption by to the public,92.49166116,TJ,CH4,10.0,kg/TJ,924.9166116000001,kg -5c5b9d61-c4ca-3ab8-83e1-c55f06714e28,SESCO,II.1.1,Chubut,AR-U,annual,2021,bioetanol combustion consumption by to the public,92.49166116,TJ,N2O,0.6,kg/TJ,55.494996696,kg -2e7cc16b-c14e-361e-9027-cebc42e998b1,SESCO,II.1.1,Corrientes,AR-W,annual,2021,bioetanol combustion consumption by to the public,68.09631768,TJ,CH4,10.0,kg/TJ,680.9631767999999,kg -668afc84-f4c0-3d30-bdb3-dcf993d260e5,SESCO,II.1.1,Corrientes,AR-W,annual,2021,bioetanol combustion consumption by to the public,68.09631768,TJ,N2O,0.6,kg/TJ,40.857790607999995,kg -0c6db8b8-327d-3da7-9663-dc53f8e723ff,SESCO,II.1.1,Córdoba,AR-X,annual,2021,bioetanol combustion consumption by to the public,292.62908555999996,TJ,CH4,10.0,kg/TJ,2926.2908555999998,kg -c35ed99e-5eda-33db-972d-e0aef040645b,SESCO,II.1.1,Córdoba,AR-X,annual,2021,bioetanol combustion consumption by to the public,292.62908555999996,TJ,N2O,0.6,kg/TJ,175.57745133599997,kg -62058541-fb39-3691-9400-6fb64bf21065,SESCO,II.1.1,Entre Rios,AR-E,annual,2021,bioetanol combustion consumption by to the public,92.28715236,TJ,CH4,10.0,kg/TJ,922.8715235999999,kg -73f8b594-f7a7-3348-be92-61761e3e2b7c,SESCO,II.1.1,Entre Rios,AR-E,annual,2021,bioetanol combustion consumption by to the public,92.28715236,TJ,N2O,0.6,kg/TJ,55.372291415999996,kg -f69b2bfc-1818-3bf0-afbe-49dea91fdb13,SESCO,II.1.1,Formosa,AR-P,annual,2021,bioetanol combustion consumption by to the public,18.52594092,TJ,CH4,10.0,kg/TJ,185.2594092,kg -e7c4719c-ba43-3dd2-86fe-0a7b48773b66,SESCO,II.1.1,Formosa,AR-P,annual,2021,bioetanol combustion consumption by to the public,18.52594092,TJ,N2O,0.6,kg/TJ,11.115564552,kg -840c538c-9b9e-3448-af31-e2cdb2823fe2,SESCO,II.1.1,Jujuy,AR-Y,annual,2021,bioetanol combustion consumption by to the public,34.884088559999995,TJ,CH4,10.0,kg/TJ,348.8408856,kg -51e30b33-9cbb-3676-9fd8-cad9c96b70a6,SESCO,II.1.1,Jujuy,AR-Y,annual,2021,bioetanol combustion consumption by to the public,34.884088559999995,TJ,N2O,0.6,kg/TJ,20.930453135999997,kg -52b336d7-7721-3762-a1d9-de22a441093b,SESCO,II.1.1,La Pampa,AR-L,annual,2021,bioetanol combustion consumption by to the public,77.09726124,TJ,CH4,10.0,kg/TJ,770.9726123999999,kg -d16bb2fd-2500-38f1-802d-b66188630871,SESCO,II.1.1,La Pampa,AR-L,annual,2021,bioetanol combustion consumption by to the public,77.09726124,TJ,N2O,0.6,kg/TJ,46.258356744,kg -655afec7-1dab-3eca-8a45-035be8020e84,SESCO,II.1.1,La Rioja,AR-F,annual,2021,bioetanol combustion consumption by to the public,31.9161546,TJ,CH4,10.0,kg/TJ,319.161546,kg -0e8c503c-a80f-39e6-96c6-d936885ff965,SESCO,II.1.1,La Rioja,AR-F,annual,2021,bioetanol combustion consumption by to the public,31.9161546,TJ,N2O,0.6,kg/TJ,19.149692759999997,kg -3d524dc9-309e-3368-a28a-d7b4d54ef73c,SESCO,II.1.1,Mendoza,AR-M,annual,2021,bioetanol combustion consumption by to the public,196.88829083999997,TJ,CH4,10.0,kg/TJ,1968.8829083999997,kg -726e95b6-1e44-374d-89cf-1687681f42a8,SESCO,II.1.1,Mendoza,AR-M,annual,2021,bioetanol combustion consumption by to the public,196.88829083999997,TJ,N2O,0.6,kg/TJ,118.13297450399998,kg -edcaf841-561a-364e-b873-48bb21e952e7,SESCO,II.1.1,Misiones,AR-N,annual,2021,bioetanol combustion consumption by to the public,76.70613816,TJ,CH4,10.0,kg/TJ,767.0613816,kg -7501f008-76df-3bb7-8456-aed806f09ad4,SESCO,II.1.1,Misiones,AR-N,annual,2021,bioetanol combustion consumption by to the public,76.70613816,TJ,N2O,0.6,kg/TJ,46.023682896,kg -848faccc-1c25-3663-966c-e18d7c21902f,SESCO,II.1.1,Neuquén,AR-Q,annual,2021,bioetanol combustion consumption by to the public,139.03019496,TJ,CH4,10.0,kg/TJ,1390.3019496,kg -8922097a-8beb-36e3-b3ae-a99b039963c5,SESCO,II.1.1,Neuquén,AR-Q,annual,2021,bioetanol combustion consumption by to the public,139.03019496,TJ,N2O,0.6,kg/TJ,83.418116976,kg -c94c4e98-d4c6-3e40-b235-5f38c5c533c6,SESCO,II.1.1,Rio Negro,AR-R,annual,2021,bioetanol combustion consumption by to the public,122.24257884,TJ,CH4,10.0,kg/TJ,1222.4257883999999,kg -51bd8476-d6c0-3dfd-896e-94d55edb02b6,SESCO,II.1.1,Rio Negro,AR-R,annual,2021,bioetanol combustion consumption by to the public,122.24257884,TJ,N2O,0.6,kg/TJ,73.345547304,kg -bd0216de-e3fc-3889-97c3-00002e4fd9c3,SESCO,II.1.1,Salta,AR-A,annual,2021,bioetanol combustion consumption by to the public,79.17813827999998,TJ,CH4,10.0,kg/TJ,791.7813827999998,kg -5b6a0ce2-4d1b-3949-8ee3-8db71d60ba79,SESCO,II.1.1,Salta,AR-A,annual,2021,bioetanol combustion consumption by to the public,79.17813827999998,TJ,N2O,0.6,kg/TJ,47.50688296799999,kg -46761ee4-7df1-3f92-84ce-39b2747cd3cd,SESCO,II.1.1,San Juan,AR-J,annual,2021,bioetanol combustion consumption by to the public,56.47254876,TJ,CH4,10.0,kg/TJ,564.7254876000001,kg -363e33d9-6e07-3a8e-a953-0c761918dd03,SESCO,II.1.1,San Juan,AR-J,annual,2021,bioetanol combustion consumption by to the public,56.47254876,TJ,N2O,0.6,kg/TJ,33.883529256,kg -72b8efac-8e1b-3074-a1f3-ec5f79baf8b6,SESCO,II.1.1,San Luis,AR-D,annual,2021,bioetanol combustion consumption by to the public,43.87736303999999,TJ,CH4,10.0,kg/TJ,438.7736303999999,kg -7a740dac-f8a9-38d8-b0dc-46ef3fedf62b,SESCO,II.1.1,San Luis,AR-D,annual,2021,bioetanol combustion consumption by to the public,43.87736303999999,TJ,N2O,0.6,kg/TJ,26.326417823999993,kg -97ce5a6b-17cf-398a-a632-0bdc37da1260,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2021,bioetanol combustion consumption by to the public,40.75604747999999,TJ,CH4,10.0,kg/TJ,407.56047479999995,kg -2efd69dc-2f63-36a5-83cf-fd60cce8a37e,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2021,bioetanol combustion consumption by to the public,40.75604747999999,TJ,N2O,0.6,kg/TJ,24.453628487999996,kg -0426a31f-47af-3b0b-adc3-1fb3e980b990,SESCO,II.1.1,Santa Fe,AR-S,annual,2021,bioetanol combustion consumption by to the public,249.95321171999998,TJ,CH4,10.0,kg/TJ,2499.5321172,kg -f8930bfe-9291-3e59-9241-7f9e83b6e246,SESCO,II.1.1,Santa Fe,AR-S,annual,2021,bioetanol combustion consumption by to the public,249.95321171999998,TJ,N2O,0.6,kg/TJ,149.971927032,kg -7d291962-43eb-3651-b246-71f6ba288510,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2021,bioetanol combustion consumption by to the public,43.32263292,TJ,CH4,10.0,kg/TJ,433.22632919999995,kg -90043091-101a-310a-b65e-ea8621954091,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2021,bioetanol combustion consumption by to the public,43.32263292,TJ,N2O,0.6,kg/TJ,25.993579752,kg -f1be65e1-b1eb-39af-ae4b-9059ddcd27c5,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2021,bioetanol combustion consumption by to the public,29.249871119999998,TJ,CH4,10.0,kg/TJ,292.4987112,kg -c831933c-f909-3f12-995c-a0f0dbc54591,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2021,bioetanol combustion consumption by to the public,29.249871119999998,TJ,N2O,0.6,kg/TJ,17.549922671999997,kg -1f7f455b-39cb-314a-b318-17fa4cece78a,SESCO,II.1.1,Tucuman,AR-T,annual,2021,bioetanol combustion consumption by to the public,63.53065871999999,TJ,CH4,10.0,kg/TJ,635.3065872,kg -062c52ce-2b73-3694-b741-2b63611a84a3,SESCO,II.1.1,Tucuman,AR-T,annual,2021,bioetanol combustion consumption by to the public,63.53065871999999,TJ,N2O,0.6,kg/TJ,38.11839523199999,kg -2f3b991f-141e-3cb0-9791-c104fd2ac7d6,SESCO,II.1.1,Buenos Aires,AR-B,annual,2021,bioetanol combustion consumption by freight transport,49.71608927999999,TJ,CH4,10.0,kg/TJ,497.16089279999994,kg -32fa55b5-97e5-3190-b935-96a338295f41,SESCO,II.1.1,Buenos Aires,AR-B,annual,2021,bioetanol combustion consumption by freight transport,49.71608927999999,TJ,N2O,0.6,kg/TJ,29.829653567999994,kg -d704396c-f66c-37d7-918c-952a98cbe637,SESCO,II.1.1,Capital Federal,AR-C,annual,2021,bioetanol combustion consumption by freight transport,7.7023126799999995,TJ,CH4,10.0,kg/TJ,77.0231268,kg -d4b1acc6-d8e6-385c-a62d-c602649b58ae,SESCO,II.1.1,Capital Federal,AR-C,annual,2021,bioetanol combustion consumption by freight transport,7.7023126799999995,TJ,N2O,0.6,kg/TJ,4.621387607999999,kg -4368373d-f1ea-3541-8fab-f45a34bea872,SESCO,II.1.1,Catamarca,AR-K,annual,2021,bioetanol combustion consumption by freight transport,0.26586144,TJ,CH4,10.0,kg/TJ,2.6586144000000003,kg -8f603ace-8d3c-33e1-83ac-d005d45faa56,SESCO,II.1.1,Catamarca,AR-K,annual,2021,bioetanol combustion consumption by freight transport,0.26586144,TJ,N2O,0.6,kg/TJ,0.159516864,kg -434e86f4-be0a-3a1f-bce4-3d712267ed37,SESCO,II.1.1,Chaco,AR-H,annual,2021,bioetanol combustion consumption by freight transport,1.17336924,TJ,CH4,10.0,kg/TJ,11.733692399999999,kg -05987d0b-bf75-3501-b122-fbf970ce2e23,SESCO,II.1.1,Chaco,AR-H,annual,2021,bioetanol combustion consumption by freight transport,1.17336924,TJ,N2O,0.6,kg/TJ,0.7040215439999999,kg -3d766ff8-58e5-3200-922f-07403bddc802,SESCO,II.1.1,Chubut,AR-U,annual,2021,bioetanol combustion consumption by freight transport,1.63862676,TJ,CH4,10.0,kg/TJ,16.3862676,kg -f83e2ff9-69be-391d-9854-eb7ca20d0ada,SESCO,II.1.1,Chubut,AR-U,annual,2021,bioetanol combustion consumption by freight transport,1.63862676,TJ,N2O,0.6,kg/TJ,0.9831760559999999,kg -aa67b86b-b60f-388c-aaa9-f3d93c7c48ef,SESCO,II.1.1,Corrientes,AR-W,annual,2021,bioetanol combustion consumption by freight transport,1.2526164,TJ,CH4,10.0,kg/TJ,12.526164,kg -f8fe7356-c297-3ec9-97b3-6c327d3dc549,SESCO,II.1.1,Corrientes,AR-W,annual,2021,bioetanol combustion consumption by freight transport,1.2526164,TJ,N2O,0.6,kg/TJ,0.7515698399999999,kg -ec443f8c-0954-3ae5-88d0-f18d734be12b,SESCO,II.1.1,Córdoba,AR-X,annual,2021,bioetanol combustion consumption by freight transport,7.63584732,TJ,CH4,10.0,kg/TJ,76.35847319999999,kg -536f1027-9244-3c41-8f1f-8c2de0526c43,SESCO,II.1.1,Córdoba,AR-X,annual,2021,bioetanol combustion consumption by freight transport,7.63584732,TJ,N2O,0.6,kg/TJ,4.581508392,kg -9d43bdeb-068b-3454-ac34-357477210cc5,SESCO,II.1.1,Entre Rios,AR-E,annual,2021,bioetanol combustion consumption by freight transport,2.65094532,TJ,CH4,10.0,kg/TJ,26.5094532,kg -a365068f-fefe-3988-ac81-34f7399f25c7,SESCO,II.1.1,Entre Rios,AR-E,annual,2021,bioetanol combustion consumption by freight transport,2.65094532,TJ,N2O,0.6,kg/TJ,1.590567192,kg -35b739b5-9c4e-37ef-9e50-0b43dc30f9eb,SESCO,II.1.1,Formosa,AR-P,annual,2021,bioetanol combustion consumption by freight transport,0.31443228,TJ,CH4,10.0,kg/TJ,3.1443228000000003,kg -3882e093-1e37-3a3a-9c3d-3f36e605d2e5,SESCO,II.1.1,Formosa,AR-P,annual,2021,bioetanol combustion consumption by freight transport,0.31443228,TJ,N2O,0.6,kg/TJ,0.188659368,kg -6d7ed63c-3f4c-3ee0-9549-8c011aeef063,SESCO,II.1.1,Jujuy,AR-Y,annual,2021,bioetanol combustion consumption by freight transport,0.57006828,TJ,CH4,10.0,kg/TJ,5.7006828,kg -eee3d45b-0752-31e6-bf51-3849a5beb615,SESCO,II.1.1,Jujuy,AR-Y,annual,2021,bioetanol combustion consumption by freight transport,0.57006828,TJ,N2O,0.6,kg/TJ,0.342040968,kg -ca64bdc8-b80f-350c-abfc-b3bc587e79fa,SESCO,II.1.1,La Pampa,AR-L,annual,2021,bioetanol combustion consumption by freight transport,0.80269704,TJ,CH4,10.0,kg/TJ,8.0269704,kg -98a64e36-96be-3737-a762-fbf94b88b613,SESCO,II.1.1,La Pampa,AR-L,annual,2021,bioetanol combustion consumption by freight transport,0.80269704,TJ,N2O,0.6,kg/TJ,0.481618224,kg -797bed86-f956-3d7e-be92-18cdbff87294,SESCO,II.1.1,La Rioja,AR-F,annual,2021,bioetanol combustion consumption by freight transport,0.41668668,TJ,CH4,10.0,kg/TJ,4.166866799999999,kg -1ae289d5-d3c0-33d8-a08f-4b799106793b,SESCO,II.1.1,La Rioja,AR-F,annual,2021,bioetanol combustion consumption by freight transport,0.41668668,TJ,N2O,0.6,kg/TJ,0.25001200799999995,kg -1fde8be5-2ee7-3520-8f15-5e593eab94eb,SESCO,II.1.1,Mendoza,AR-M,annual,2021,bioetanol combustion consumption by freight transport,3.59679852,TJ,CH4,10.0,kg/TJ,35.9679852,kg -050a4d5a-3cb4-305d-8927-37a97656d1f6,SESCO,II.1.1,Mendoza,AR-M,annual,2021,bioetanol combustion consumption by freight transport,3.59679852,TJ,N2O,0.6,kg/TJ,2.158079112,kg -dd0593ae-c3e5-344a-a65a-7c7cc1f75247,SESCO,II.1.1,Misiones,AR-N,annual,2021,bioetanol combustion consumption by freight transport,1.2909617999999998,TJ,CH4,10.0,kg/TJ,12.909617999999998,kg -52cde539-b890-35bb-b92e-fb5db894bddd,SESCO,II.1.1,Misiones,AR-N,annual,2021,bioetanol combustion consumption by freight transport,1.2909617999999998,TJ,N2O,0.6,kg/TJ,0.7745770799999999,kg -46cf6408-ebc2-3e17-844e-7af6ecd9ec4d,SESCO,II.1.1,Neuquén,AR-Q,annual,2021,bioetanol combustion consumption by freight transport,1.33186356,TJ,CH4,10.0,kg/TJ,13.3186356,kg -943bfd06-ed7e-3c29-adc7-08eb024c38df,SESCO,II.1.1,Neuquén,AR-Q,annual,2021,bioetanol combustion consumption by freight transport,1.33186356,TJ,N2O,0.6,kg/TJ,0.7991181359999999,kg -c8cdcf87-7c38-31e2-ab1f-7f0485abaf5c,SESCO,II.1.1,Rio Negro,AR-R,annual,2021,bioetanol combustion consumption by freight transport,1.5977249999999998,TJ,CH4,10.0,kg/TJ,15.977249999999998,kg -8e7ae7e2-992f-3216-90cf-ef47143df4c1,SESCO,II.1.1,Rio Negro,AR-R,annual,2021,bioetanol combustion consumption by freight transport,1.5977249999999998,TJ,N2O,0.6,kg/TJ,0.9586349999999999,kg -850050aa-07bc-32f9-9ba3-f146b89595e4,SESCO,II.1.1,Salta,AR-A,annual,2021,bioetanol combustion consumption by freight transport,2.1038842799999995,TJ,CH4,10.0,kg/TJ,21.038842799999994,kg -ef577412-2052-3c77-9943-74288e47d13c,SESCO,II.1.1,Salta,AR-A,annual,2021,bioetanol combustion consumption by freight transport,2.1038842799999995,TJ,N2O,0.6,kg/TJ,1.2623305679999997,kg -2ad6b3af-d1c6-3a5c-aec9-30c3e08066fc,SESCO,II.1.1,San Juan,AR-J,annual,2021,bioetanol combustion consumption by freight transport,0.85893696,TJ,CH4,10.0,kg/TJ,8.5893696,kg -c6f80d0d-14cc-3314-8ff5-fcd70518ebcf,SESCO,II.1.1,San Juan,AR-J,annual,2021,bioetanol combustion consumption by freight transport,0.85893696,TJ,N2O,0.6,kg/TJ,0.515362176,kg -7c0ee150-4a7b-392b-8741-69004ee0ef80,SESCO,II.1.1,San Luis,AR-D,annual,2021,bioetanol combustion consumption by freight transport,0.8129224799999999,TJ,CH4,10.0,kg/TJ,8.1292248,kg -166ea822-0cbb-3314-8cd0-6410ed80cb99,SESCO,II.1.1,San Luis,AR-D,annual,2021,bioetanol combustion consumption by freight transport,0.8129224799999999,TJ,N2O,0.6,kg/TJ,0.4877534879999999,kg -266aaf88-c9bb-306e-80f0-7f71cfe40851,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2021,bioetanol combustion consumption by freight transport,0.8947259999999999,TJ,CH4,10.0,kg/TJ,8.94726,kg -0a288c78-aa51-3cc0-823b-a604a1eb6756,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2021,bioetanol combustion consumption by freight transport,0.8947259999999999,TJ,N2O,0.6,kg/TJ,0.5368356,kg -4f11769f-c036-35c9-8d53-03fc9844276e,SESCO,II.1.1,Santa Fe,AR-S,annual,2021,bioetanol combustion consumption by freight transport,7.157807999999999,TJ,CH4,10.0,kg/TJ,71.57808,kg -64749c8f-ab99-33c7-8e97-03e8c20d3547,SESCO,II.1.1,Santa Fe,AR-S,annual,2021,bioetanol combustion consumption by freight transport,7.157807999999999,TJ,N2O,0.6,kg/TJ,4.2946848,kg -b53d4a95-a888-3dff-9409-f1a5ac126e95,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2021,bioetanol combustion consumption by freight transport,0.56751192,TJ,CH4,10.0,kg/TJ,5.675119199999999,kg -4e1feeb2-cd01-3555-908c-c989edfaaa24,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2021,bioetanol combustion consumption by freight transport,0.56751192,TJ,N2O,0.6,kg/TJ,0.340507152,kg -0d4b6845-bfc5-3e06-ab11-b1cdf25a5d92,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2021,bioetanol combustion consumption by freight transport,1.1938201199999998,TJ,CH4,10.0,kg/TJ,11.938201199999998,kg -d2a207b2-9038-3930-8d3b-49cffe638dc1,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2021,bioetanol combustion consumption by freight transport,1.1938201199999998,TJ,N2O,0.6,kg/TJ,0.7162920719999999,kg -97020f5a-d4b2-35ba-bf73-b0d73615dda2,SESCO,II.1.1,Tucuman,AR-T,annual,2021,bioetanol combustion consumption by freight transport,2.2470404399999997,TJ,CH4,10.0,kg/TJ,22.470404399999996,kg -298037c9-fb51-3052-a67a-94b5175387e6,SESCO,II.1.1,Tucuman,AR-T,annual,2021,bioetanol combustion consumption by freight transport,2.2470404399999997,TJ,N2O,0.6,kg/TJ,1.3482242639999997,kg -1b12576d-6c66-3d6c-86cc-24d89940f9c3,SESCO,II.1.1,Buenos Aires,AR-B,annual,2021,bioetanol combustion consumption by freight transport,43.40443644,TJ,CH4,10.0,kg/TJ,434.04436439999995,kg -27e16329-da5f-35f6-a99c-3744eb49c2dd,SESCO,II.1.1,Buenos Aires,AR-B,annual,2021,bioetanol combustion consumption by freight transport,43.40443644,TJ,N2O,0.6,kg/TJ,26.042661864,kg -72a35131-092e-39e2-8744-c57ab60196e3,SESCO,II.1.1,Capital Federal,AR-C,annual,2021,bioetanol combustion consumption by freight transport,8.773427519999998,TJ,CH4,10.0,kg/TJ,87.73427519999998,kg -92ee2848-ee8a-3514-a7b0-67736832de8a,SESCO,II.1.1,Capital Federal,AR-C,annual,2021,bioetanol combustion consumption by freight transport,8.773427519999998,TJ,N2O,0.6,kg/TJ,5.264056511999999,kg -796c965c-c424-361b-83d7-0e840abcd45d,SESCO,II.1.1,Catamarca,AR-K,annual,2021,bioetanol combustion consumption by freight transport,0.08691623999999999,TJ,CH4,10.0,kg/TJ,0.8691623999999999,kg -c702d6ac-299b-39d9-bf45-4077d1779c9f,SESCO,II.1.1,Catamarca,AR-K,annual,2021,bioetanol combustion consumption by freight transport,0.08691623999999999,TJ,N2O,0.6,kg/TJ,0.05214974399999999,kg -08e2562c-df2b-3936-b503-2e2c80876ace,SESCO,II.1.1,Chaco,AR-H,annual,2021,bioetanol combustion consumption by freight transport,0.93818412,TJ,CH4,10.0,kg/TJ,9.3818412,kg -0d7fd05c-ed7f-3196-a3d7-720fd2fc17c5,SESCO,II.1.1,Chaco,AR-H,annual,2021,bioetanol combustion consumption by freight transport,0.93818412,TJ,N2O,0.6,kg/TJ,0.562910472,kg -3028fbda-d8aa-3132-8fcb-fee81138b134,SESCO,II.1.1,Chubut,AR-U,annual,2021,bioetanol combustion consumption by freight transport,1.12224204,TJ,CH4,10.0,kg/TJ,11.222420399999999,kg -c78629dd-d119-395f-98b1-a3829b4909f1,SESCO,II.1.1,Chubut,AR-U,annual,2021,bioetanol combustion consumption by freight transport,1.12224204,TJ,N2O,0.6,kg/TJ,0.673345224,kg -8467c4e8-1afc-3064-bc8c-48cb71cda92e,SESCO,II.1.1,Corrientes,AR-W,annual,2021,bioetanol combustion consumption by freight transport,1.2628418399999999,TJ,CH4,10.0,kg/TJ,12.6284184,kg -b178e650-cf9d-380c-b538-8799e3882088,SESCO,II.1.1,Corrientes,AR-W,annual,2021,bioetanol combustion consumption by freight transport,1.2628418399999999,TJ,N2O,0.6,kg/TJ,0.7577051039999999,kg -bf62b259-1829-3675-8d53-9da3f3b91a42,SESCO,II.1.1,Córdoba,AR-X,annual,2021,bioetanol combustion consumption by freight transport,15.90822828,TJ,CH4,10.0,kg/TJ,159.0822828,kg -fc8ad2c8-5c77-3d53-86e9-62dc797240c1,SESCO,II.1.1,Córdoba,AR-X,annual,2021,bioetanol combustion consumption by freight transport,15.90822828,TJ,N2O,0.6,kg/TJ,9.544936968,kg -2cb0bc44-cf4e-3fff-8a5b-a3779bfcf45c,SESCO,II.1.1,Entre Rios,AR-E,annual,2021,bioetanol combustion consumption by freight transport,2.2112513999999996,TJ,CH4,10.0,kg/TJ,22.112513999999997,kg -50ebfc08-7828-354c-a1a4-dfa05b5d2429,SESCO,II.1.1,Entre Rios,AR-E,annual,2021,bioetanol combustion consumption by freight transport,2.2112513999999996,TJ,N2O,0.6,kg/TJ,1.3267508399999997,kg -012ea0a3-ecb7-390d-ace5-f37631ed2611,SESCO,II.1.1,Formosa,AR-P,annual,2021,bioetanol combustion consumption by freight transport,0.14315615999999998,TJ,CH4,10.0,kg/TJ,1.4315615999999998,kg -400657a6-4b2f-39be-8641-05dbbd68f9ac,SESCO,II.1.1,Formosa,AR-P,annual,2021,bioetanol combustion consumption by freight transport,0.14315615999999998,TJ,N2O,0.6,kg/TJ,0.08589369599999998,kg -c337245b-49ff-35d4-8e74-b7a675767827,SESCO,II.1.1,Jujuy,AR-Y,annual,2021,bioetanol combustion consumption by freight transport,0.27353052,TJ,CH4,10.0,kg/TJ,2.7353052,kg -aca5a01a-0311-3989-8ec5-7fe40460edb6,SESCO,II.1.1,Jujuy,AR-Y,annual,2021,bioetanol combustion consumption by freight transport,0.27353052,TJ,N2O,0.6,kg/TJ,0.164118312,kg -40afe4f3-d1f2-3f50-a83f-1924f58551ea,SESCO,II.1.1,La Pampa,AR-L,annual,2021,bioetanol combustion consumption by freight transport,0.8435988,TJ,CH4,10.0,kg/TJ,8.435988,kg -c388625d-2a07-382f-8b0a-734f002028d2,SESCO,II.1.1,La Pampa,AR-L,annual,2021,bioetanol combustion consumption by freight transport,0.8435988,TJ,N2O,0.6,kg/TJ,0.50615928,kg -7b51b6e6-0fe8-3827-981b-ba663b5a80ce,SESCO,II.1.1,La Rioja,AR-F,annual,2021,bioetanol combustion consumption by freight transport,0.255636,TJ,CH4,10.0,kg/TJ,2.5563599999999997,kg -d03c67aa-5941-3801-bb6c-fa25231c4cda,SESCO,II.1.1,La Rioja,AR-F,annual,2021,bioetanol combustion consumption by freight transport,0.255636,TJ,N2O,0.6,kg/TJ,0.15338159999999998,kg -457e2808-62cf-31ea-8959-62f1e80e9761,SESCO,II.1.1,Mendoza,AR-M,annual,2021,bioetanol combustion consumption by freight transport,5.897522519999999,TJ,CH4,10.0,kg/TJ,58.97522519999999,kg -54b3358e-0cce-3987-a212-ed933942ddd7,SESCO,II.1.1,Mendoza,AR-M,annual,2021,bioetanol combustion consumption by freight transport,5.897522519999999,TJ,N2O,0.6,kg/TJ,3.5385135119999993,kg -0790038f-402f-36f9-a5df-b7c0a1d1c9a8,SESCO,II.1.1,Misiones,AR-N,annual,2021,bioetanol combustion consumption by freight transport,1.04299488,TJ,CH4,10.0,kg/TJ,10.4299488,kg -9a269a28-d1cb-30a5-942c-b22dab7a463e,SESCO,II.1.1,Misiones,AR-N,annual,2021,bioetanol combustion consumption by freight transport,1.04299488,TJ,N2O,0.6,kg/TJ,0.625796928,kg -fb955cda-1a79-31a7-aaf1-2ce8c6fe0fba,SESCO,II.1.1,Neuquén,AR-Q,annual,2021,bioetanol combustion consumption by freight transport,2.80943964,TJ,CH4,10.0,kg/TJ,28.0943964,kg -4df60f5f-83eb-3d04-a369-cc28414c0629,SESCO,II.1.1,Neuquén,AR-Q,annual,2021,bioetanol combustion consumption by freight transport,2.80943964,TJ,N2O,0.6,kg/TJ,1.685663784,kg -1ab76824-4bdf-3b44-add8-74c825668bf1,SESCO,II.1.1,Rio Negro,AR-R,annual,2021,bioetanol combustion consumption by freight transport,3.53288952,TJ,CH4,10.0,kg/TJ,35.3288952,kg -2e13e73f-b07a-3472-beb3-acd1d574e750,SESCO,II.1.1,Rio Negro,AR-R,annual,2021,bioetanol combustion consumption by freight transport,3.53288952,TJ,N2O,0.6,kg/TJ,2.119733712,kg -66b86d15-40ac-331b-8365-395a58aecff1,SESCO,II.1.1,Salta,AR-A,annual,2021,bioetanol combustion consumption by freight transport,1.59005592,TJ,CH4,10.0,kg/TJ,15.9005592,kg -8fc6f750-610a-3f77-873c-94f85d92396c,SESCO,II.1.1,Salta,AR-A,annual,2021,bioetanol combustion consumption by freight transport,1.59005592,TJ,N2O,0.6,kg/TJ,0.954033552,kg -e643c701-f2f6-3754-aa5c-99323006fd04,SESCO,II.1.1,San Juan,AR-J,annual,2021,bioetanol combustion consumption by freight transport,0.47548296,TJ,CH4,10.0,kg/TJ,4.7548296,kg -1f1385cb-0f38-33bd-99e5-be36487e8644,SESCO,II.1.1,San Juan,AR-J,annual,2021,bioetanol combustion consumption by freight transport,0.47548296,TJ,N2O,0.6,kg/TJ,0.285289776,kg -4523180c-432a-3ad5-b5d7-6d05ca64ad5d,SESCO,II.1.1,San Luis,AR-D,annual,2021,bioetanol combustion consumption by freight transport,0.6007446,TJ,CH4,10.0,kg/TJ,6.007446,kg -04bc0910-0ff4-3aad-aa87-55e25b12e74e,SESCO,II.1.1,San Luis,AR-D,annual,2021,bioetanol combustion consumption by freight transport,0.6007446,TJ,N2O,0.6,kg/TJ,0.36044676,kg -489c1bf8-7ce6-3757-841d-a72d746103ac,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2021,bioetanol combustion consumption by freight transport,0.38856672,TJ,CH4,10.0,kg/TJ,3.8856672,kg -eaa0d7c2-8fda-33d8-bdfd-0366d0eb76ce,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2021,bioetanol combustion consumption by freight transport,0.38856672,TJ,N2O,0.6,kg/TJ,0.23314003199999997,kg -4f11769f-c036-35c9-8d53-03fc9844276e,SESCO,II.1.1,Santa Fe,AR-S,annual,2021,bioetanol combustion consumption by freight transport,7.157807999999999,TJ,CH4,10.0,kg/TJ,71.57808,kg -64749c8f-ab99-33c7-8e97-03e8c20d3547,SESCO,II.1.1,Santa Fe,AR-S,annual,2021,bioetanol combustion consumption by freight transport,7.157807999999999,TJ,N2O,0.6,kg/TJ,4.2946848,kg -334ed519-ed97-396a-aca1-d7ca9f1bc14f,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2021,bioetanol combustion consumption by freight transport,0.29142503999999997,TJ,CH4,10.0,kg/TJ,2.9142504,kg -8b3c8258-c650-3d27-b811-a980966ece76,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2021,bioetanol combustion consumption by freight transport,0.29142503999999997,TJ,N2O,0.6,kg/TJ,0.17485502399999997,kg -ffcc463c-714c-33a4-9030-17ceeb7a7845,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2021,bioetanol combustion consumption by freight transport,0.5905191599999999,TJ,CH4,10.0,kg/TJ,5.905191599999999,kg -1b4e2480-63f4-38df-b1f2-3d1b7eacf305,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2021,bioetanol combustion consumption by freight transport,0.5905191599999999,TJ,N2O,0.6,kg/TJ,0.35431149599999995,kg -ef17a11f-0675-3d7c-8754-4351018acea0,SESCO,II.1.1,Tucuman,AR-T,annual,2021,bioetanol combustion consumption by freight transport,1.0838966399999999,TJ,CH4,10.0,kg/TJ,10.838966399999999,kg -bed9bb05-2358-3da1-8c03-428f8a2fb749,SESCO,II.1.1,Tucuman,AR-T,annual,2021,bioetanol combustion consumption by freight transport,1.0838966399999999,TJ,N2O,0.6,kg/TJ,0.6503379839999999,kg -f7daf5d9-9b28-3020-b310-ca65024d5f29,SESCO,II.5.1,Buenos Aires,AR-B,annual,2022,bioetanol combustion consumption by agriculture machines,2.46177468,TJ,CH4,10.0,kg/TJ,24.6177468,kg -abad7b1d-3f54-3763-a03a-c43d12180e95,SESCO,II.5.1,Buenos Aires,AR-B,annual,2022,bioetanol combustion consumption by agriculture machines,2.46177468,TJ,N2O,0.6,kg/TJ,1.477064808,kg -54854123-6512-3c4c-a611-d277c946da7c,SESCO,II.5.1,Córdoba,AR-X,annual,2022,bioetanol combustion consumption by agriculture machines,0.7260062399999999,TJ,CH4,10.0,kg/TJ,7.260062399999999,kg -cce14e1d-af65-349d-8e42-13fe2b653540,SESCO,II.5.1,Córdoba,AR-X,annual,2022,bioetanol combustion consumption by agriculture machines,0.7260062399999999,TJ,N2O,0.6,kg/TJ,0.43560374399999996,kg -e62539c9-20d5-3574-9f74-6e502460eda1,SESCO,II.5.1,Santa Fe,AR-S,annual,2022,bioetanol combustion consumption by agriculture machines,0.44225027999999994,TJ,CH4,10.0,kg/TJ,4.422502799999999,kg -bfcbf71e-2cff-3252-a279-d15e6ce111b8,SESCO,II.5.1,Santa Fe,AR-S,annual,2022,bioetanol combustion consumption by agriculture machines,0.44225027999999994,TJ,N2O,0.6,kg/TJ,0.26535016799999994,kg -f29cde89-21df-35ca-bd3d-79aa991b2375,SESCO,II.5.1,Buenos Aires,AR-B,annual,2022,bioetanol combustion consumption by agriculture machines,0.31954499999999997,TJ,CH4,10.0,kg/TJ,3.1954499999999997,kg -78a514d5-efb8-3371-9e30-1060c4171bd1,SESCO,II.5.1,Buenos Aires,AR-B,annual,2022,bioetanol combustion consumption by agriculture machines,0.31954499999999997,TJ,N2O,0.6,kg/TJ,0.19172699999999998,kg -5f8650aa-834c-33d4-83f8-21577b476d2d,SESCO,II.5.1,Córdoba,AR-X,annual,2022,bioetanol combustion consumption by agriculture machines,0.18661428,TJ,CH4,10.0,kg/TJ,1.8661428,kg -f9a344a4-11ce-3063-b83d-e012e39a6480,SESCO,II.5.1,Córdoba,AR-X,annual,2022,bioetanol combustion consumption by agriculture machines,0.18661428,TJ,N2O,0.6,kg/TJ,0.11196856799999999,kg -e17ee03e-032e-3ab4-b37b-9836b2c58d8f,SESCO,II.1.1,Buenos Aires,AR-B,annual,2022,bioetanol combustion consumption by to the public,102.50747964,TJ,CH4,10.0,kg/TJ,1025.0747964,kg -5a5924c3-e20c-3c58-92fb-e8e7e779c612,SESCO,II.1.1,Buenos Aires,AR-B,annual,2022,bioetanol combustion consumption by to the public,102.50747964,TJ,N2O,0.6,kg/TJ,61.504487784,kg -131cc752-d7ae-3e8b-b2a2-91613279fb51,SESCO,II.1.1,Capital Federal,AR-C,annual,2022,bioetanol combustion consumption by to the public,5.08204368,TJ,CH4,10.0,kg/TJ,50.820436799999996,kg -81869465-4d01-3fa0-9bb8-9c562fbdcb4b,SESCO,II.1.1,Capital Federal,AR-C,annual,2022,bioetanol combustion consumption by to the public,5.08204368,TJ,N2O,0.6,kg/TJ,3.049226208,kg -8997cfd9-3475-3f3a-b7a1-1701813cdf53,SESCO,II.1.1,Catamarca,AR-K,annual,2022,bioetanol combustion consumption by to the public,2.14222968,TJ,CH4,10.0,kg/TJ,21.422296799999998,kg -07da2381-b910-3e3d-851a-99a53b56e92e,SESCO,II.1.1,Catamarca,AR-K,annual,2022,bioetanol combustion consumption by to the public,2.14222968,TJ,N2O,0.6,kg/TJ,1.2853378079999997,kg -45e156b3-9db7-3231-a366-eb074aa496e1,SESCO,II.1.1,Chaco,AR-H,annual,2022,bioetanol combustion consumption by to the public,0.35022131999999995,TJ,CH4,10.0,kg/TJ,3.5022131999999995,kg -78cc45e2-e896-3475-872f-051b5f7fc243,SESCO,II.1.1,Chaco,AR-H,annual,2022,bioetanol combustion consumption by to the public,0.35022131999999995,TJ,N2O,0.6,kg/TJ,0.21013279199999996,kg -00e9c514-e5bf-32e2-b411-70ae900d19b4,SESCO,II.1.1,Corrientes,AR-W,annual,2022,bioetanol combustion consumption by to the public,0.9100641599999999,TJ,CH4,10.0,kg/TJ,9.1006416,kg -eb2e67f2-6300-329a-9dd4-bdd490bffdad,SESCO,II.1.1,Corrientes,AR-W,annual,2022,bioetanol combustion consumption by to the public,0.9100641599999999,TJ,N2O,0.6,kg/TJ,0.5460384959999999,kg -e39277d4-369a-3e03-81bb-c3b27c11b06a,SESCO,II.1.1,Córdoba,AR-X,annual,2022,bioetanol combustion consumption by to the public,41.691675239999995,TJ,CH4,10.0,kg/TJ,416.91675239999995,kg -b0e3d45a-aeaf-3193-8b86-9d29d4411a50,SESCO,II.1.1,Córdoba,AR-X,annual,2022,bioetanol combustion consumption by to the public,41.691675239999995,TJ,N2O,0.6,kg/TJ,25.015005143999996,kg -b27ef253-de11-3392-a00c-2096438be689,SESCO,II.1.1,Entre Rios,AR-E,annual,2022,bioetanol combustion consumption by to the public,10.97189712,TJ,CH4,10.0,kg/TJ,109.7189712,kg -18b85a85-2baf-3a5c-b43a-55be912838fb,SESCO,II.1.1,Entre Rios,AR-E,annual,2022,bioetanol combustion consumption by to the public,10.97189712,TJ,N2O,0.6,kg/TJ,6.583138271999999,kg -08ee9694-1f5b-32e0-bb54-43aef8c80e4d,SESCO,II.1.1,Mendoza,AR-M,annual,2022,bioetanol combustion consumption by to the public,25.84224324,TJ,CH4,10.0,kg/TJ,258.4224324,kg -c768cca2-79c5-321d-b2f6-1d827328fa4c,SESCO,II.1.1,Mendoza,AR-M,annual,2022,bioetanol combustion consumption by to the public,25.84224324,TJ,N2O,0.6,kg/TJ,15.505345943999998,kg -f392ce11-345b-399e-93e7-1965b157e729,SESCO,II.1.1,San Luis,AR-D,annual,2022,bioetanol combustion consumption by to the public,4.580997119999999,TJ,CH4,10.0,kg/TJ,45.80997119999999,kg -0af84afd-8412-31d8-85fb-936838c9adcd,SESCO,II.1.1,San Luis,AR-D,annual,2022,bioetanol combustion consumption by to the public,4.580997119999999,TJ,N2O,0.6,kg/TJ,2.7485982719999993,kg -eba1646b-8f9f-3847-971f-94628c57c07a,SESCO,II.1.1,Santa Fe,AR-S,annual,2022,bioetanol combustion consumption by to the public,28.362814199999995,TJ,CH4,10.0,kg/TJ,283.62814199999997,kg -45d3cbb7-9592-3aac-a7b4-1d1d8240d38e,SESCO,II.1.1,Santa Fe,AR-S,annual,2022,bioetanol combustion consumption by to the public,28.362814199999995,TJ,N2O,0.6,kg/TJ,17.017688519999997,kg -4bfbe7a5-defb-324a-82e4-e9825c8ce975,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2022,bioetanol combustion consumption by to the public,4.52220084,TJ,CH4,10.0,kg/TJ,45.2220084,kg -15f6b526-588e-3b11-9bbd-9a5745a2cefc,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2022,bioetanol combustion consumption by to the public,4.52220084,TJ,N2O,0.6,kg/TJ,2.713320504,kg -61b6d7f5-e2e8-378a-9ee0-74edd55ff1ea,SESCO,II.1.1,Tucuman,AR-T,annual,2022,bioetanol combustion consumption by to the public,2.4183165599999996,TJ,CH4,10.0,kg/TJ,24.183165599999995,kg -936658e9-12ae-3d9a-b5c7-e1456331df9a,SESCO,II.1.1,Tucuman,AR-T,annual,2022,bioetanol combustion consumption by to the public,2.4183165599999996,TJ,N2O,0.6,kg/TJ,1.4509899359999998,kg -d0c7cba4-c529-3007-91c0-eaa71b041a8a,SESCO,II.1.1,Buenos Aires,AR-B,annual,2022,bioetanol combustion consumption by to the public,8.15223204,TJ,CH4,10.0,kg/TJ,81.5223204,kg -00c137e6-ae4b-3173-b6fa-153b66c5eaa9,SESCO,II.1.1,Buenos Aires,AR-B,annual,2022,bioetanol combustion consumption by to the public,8.15223204,TJ,N2O,0.6,kg/TJ,4.891339223999999,kg -f9a99c3f-0e48-310b-bde7-e5429760e32a,SESCO,II.1.1,Capital Federal,AR-C,annual,2022,bioetanol combustion consumption by to the public,0.7669079999999999,TJ,CH4,10.0,kg/TJ,7.669079999999999,kg -895261a5-55d5-3adc-904e-b8911318c4c6,SESCO,II.1.1,Capital Federal,AR-C,annual,2022,bioetanol combustion consumption by to the public,0.7669079999999999,TJ,N2O,0.6,kg/TJ,0.4601447999999999,kg -27ddb701-7482-3b85-b1b8-55e6936252f7,SESCO,II.1.1,Catamarca,AR-K,annual,2022,bioetanol combustion consumption by to the public,0.22751603999999997,TJ,CH4,10.0,kg/TJ,2.2751604,kg -e1054093-eca6-33da-a80d-92b6d490f99d,SESCO,II.1.1,Catamarca,AR-K,annual,2022,bioetanol combustion consumption by to the public,0.22751603999999997,TJ,N2O,0.6,kg/TJ,0.13650962399999997,kg -c73b5ea3-35b8-3552-99db-e50568c479db,SESCO,II.1.1,Chaco,AR-H,annual,2022,bioetanol combustion consumption by to the public,0.035789039999999994,TJ,CH4,10.0,kg/TJ,0.35789039999999994,kg -3b62a40e-54ef-33e3-8037-484aa427071c,SESCO,II.1.1,Chaco,AR-H,annual,2022,bioetanol combustion consumption by to the public,0.035789039999999994,TJ,N2O,0.6,kg/TJ,0.021473423999999994,kg -cd9502b0-bf87-3691-bfcd-ac77b0e4bd74,SESCO,II.1.1,Corrientes,AR-W,annual,2022,bioetanol combustion consumption by to the public,0.11759255999999998,TJ,CH4,10.0,kg/TJ,1.1759255999999998,kg -e9a4054c-8037-3cef-b2aa-aa991081e9e5,SESCO,II.1.1,Corrientes,AR-W,annual,2022,bioetanol combustion consumption by to the public,0.11759255999999998,TJ,N2O,0.6,kg/TJ,0.07055553599999999,kg -f8e287d6-df15-3a47-a7c7-cdf0bae009ae,SESCO,II.1.1,Córdoba,AR-X,annual,2022,bioetanol combustion consumption by to the public,4.63468068,TJ,CH4,10.0,kg/TJ,46.346806799999996,kg -d99663b1-f01e-39d0-81f6-dc5a7c1168fe,SESCO,II.1.1,Córdoba,AR-X,annual,2022,bioetanol combustion consumption by to the public,4.63468068,TJ,N2O,0.6,kg/TJ,2.780808408,kg -119f1899-6773-3359-8cc1-11e99054dee4,SESCO,II.1.1,Entre Rios,AR-E,annual,2022,bioetanol combustion consumption by to the public,1.4085543600000001,TJ,CH4,10.0,kg/TJ,14.085543600000001,kg -8b35c255-526f-3599-bbe1-6e63b048e315,SESCO,II.1.1,Entre Rios,AR-E,annual,2022,bioetanol combustion consumption by to the public,1.4085543600000001,TJ,N2O,0.6,kg/TJ,0.845132616,kg -ba4e26fa-3a7a-3033-9909-429d2ed666d2,SESCO,II.1.1,Mendoza,AR-M,annual,2022,bioetanol combustion consumption by to the public,4.07228148,TJ,CH4,10.0,kg/TJ,40.7228148,kg -0f9d4669-b2a3-375e-b6b0-11e46ce1d840,SESCO,II.1.1,Mendoza,AR-M,annual,2022,bioetanol combustion consumption by to the public,4.07228148,TJ,N2O,0.6,kg/TJ,2.4433688879999997,kg -7f907ba4-0b44-381b-8d67-da063c7f7f35,SESCO,II.1.1,San Luis,AR-D,annual,2022,bioetanol combustion consumption by to the public,0.19428336,TJ,CH4,10.0,kg/TJ,1.9428336,kg -b2142de9-1481-331a-9144-a217cb3465a1,SESCO,II.1.1,San Luis,AR-D,annual,2022,bioetanol combustion consumption by to the public,0.19428336,TJ,N2O,0.6,kg/TJ,0.11657001599999998,kg -76eaf694-c968-3938-be27-abc56ff3b0f8,SESCO,II.1.1,Santa Fe,AR-S,annual,2022,bioetanol combustion consumption by to the public,4.18731768,TJ,CH4,10.0,kg/TJ,41.873176799999996,kg -b9c5744b-e307-32c5-9bf0-4b8751dab4f7,SESCO,II.1.1,Santa Fe,AR-S,annual,2022,bioetanol combustion consumption by to the public,4.18731768,TJ,N2O,0.6,kg/TJ,2.5123906079999996,kg -56e79be3-c494-3c20-8dd7-6297a155a7d4,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2022,bioetanol combustion consumption by to the public,0.45503207999999995,TJ,CH4,10.0,kg/TJ,4.5503208,kg -8273fcc9-ffe2-30e0-bcb7-e22f34a142ba,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2022,bioetanol combustion consumption by to the public,0.45503207999999995,TJ,N2O,0.6,kg/TJ,0.27301924799999994,kg -8492dee2-911a-31a9-8f77-a94515682ee1,SESCO,II.1.1,Tucuman,AR-T,annual,2022,bioetanol combustion consumption by to the public,0.015338159999999998,TJ,CH4,10.0,kg/TJ,0.15338159999999998,kg -e4c9483b-85af-356e-8055-adde5ba8ea71,SESCO,II.1.1,Tucuman,AR-T,annual,2022,bioetanol combustion consumption by to the public,0.015338159999999998,TJ,N2O,0.6,kg/TJ,0.009202895999999999,kg -bfce8600-ffa0-39f7-a78b-ee06d1ba391f,SESCO,II.5.1,Buenos Aires,AR-B,annual,2022,bioetanol combustion consumption by agriculture machines,0.61608276,TJ,CH4,10.0,kg/TJ,6.160827599999999,kg -be79c5a5-a558-3d47-a35b-efed300661be,SESCO,II.5.1,Buenos Aires,AR-B,annual,2022,bioetanol combustion consumption by agriculture machines,0.61608276,TJ,N2O,0.6,kg/TJ,0.36964965599999994,kg -922bd5e4-470e-3c19-93fb-35bbb693c088,SESCO,II.5.1,Capital Federal,AR-C,annual,2022,bioetanol combustion consumption by agriculture machines,0.07413444,TJ,CH4,10.0,kg/TJ,0.7413444,kg -e4e1aee4-f9eb-3444-8d93-1c1f2aa7368f,SESCO,II.5.1,Capital Federal,AR-C,annual,2022,bioetanol combustion consumption by agriculture machines,0.07413444,TJ,N2O,0.6,kg/TJ,0.044480663999999996,kg -858e44ec-437d-3a9f-b584-9f971a671cdb,SESCO,II.5.1,Córdoba,AR-X,annual,2022,bioetanol combustion consumption by agriculture machines,2.6969597999999997,TJ,CH4,10.0,kg/TJ,26.969597999999998,kg -b650c476-9dd9-3564-bb6c-019cb2a003b5,SESCO,II.5.1,Córdoba,AR-X,annual,2022,bioetanol combustion consumption by agriculture machines,2.6969597999999997,TJ,N2O,0.6,kg/TJ,1.6181758799999997,kg -91163007-8c17-38fd-b08e-7b086cc08a31,SESCO,II.5.1,Santa Fe,AR-S,annual,2022,bioetanol combustion consumption by agriculture machines,0.6390899999999999,TJ,CH4,10.0,kg/TJ,6.390899999999999,kg -2f6e9398-a75d-325b-8034-9e1c3f1901fc,SESCO,II.5.1,Santa Fe,AR-S,annual,2022,bioetanol combustion consumption by agriculture machines,0.6390899999999999,TJ,N2O,0.6,kg/TJ,0.38345399999999996,kg -837f76d4-4f0f-3f00-afec-ce7670bf4d00,SESCO,II.5.1,Buenos Aires,AR-B,annual,2022,bioetanol combustion consumption by agriculture machines,0.13804344,TJ,CH4,10.0,kg/TJ,1.3804344,kg -2212529a-29ac-3511-af37-017baa688d80,SESCO,II.5.1,Buenos Aires,AR-B,annual,2022,bioetanol combustion consumption by agriculture machines,0.13804344,TJ,N2O,0.6,kg/TJ,0.08282606399999999,kg -c63f59c0-d8cb-35d8-992c-b489c669f516,SESCO,II.5.1,Capital Federal,AR-C,annual,2022,bioetanol combustion consumption by agriculture machines,0.007669079999999999,TJ,CH4,10.0,kg/TJ,0.07669079999999999,kg -e29d81a1-3ff3-3cd1-81f9-fb6f3776bb9e,SESCO,II.5.1,Capital Federal,AR-C,annual,2022,bioetanol combustion consumption by agriculture machines,0.007669079999999999,TJ,N2O,0.6,kg/TJ,0.004601447999999999,kg -6ba56373-b9b0-32f3-aee3-f7b6026b5214,SESCO,II.5.1,Córdoba,AR-X,annual,2022,bioetanol combustion consumption by agriculture machines,0.22495967999999997,TJ,CH4,10.0,kg/TJ,2.2495967999999995,kg -9cb5836a-7f88-3db2-b451-279fabfc9cd0,SESCO,II.5.1,Córdoba,AR-X,annual,2022,bioetanol combustion consumption by agriculture machines,0.22495967999999997,TJ,N2O,0.6,kg/TJ,0.13497580799999997,kg -93a1bf44-f930-30ac-b4dd-f8f53dcf21d6,SESCO,II.1.1,Buenos Aires,AR-B,annual,2022,bioetanol combustion consumption by to the public,81.69870924,TJ,CH4,10.0,kg/TJ,816.9870923999999,kg -abdc9bde-17d9-3b8d-ae8f-e6152456585c,SESCO,II.1.1,Buenos Aires,AR-B,annual,2022,bioetanol combustion consumption by to the public,81.69870924,TJ,N2O,0.6,kg/TJ,49.019225544,kg -f5e59bcd-13c8-3555-a79d-f7a19c48c4b7,SESCO,II.1.1,Capital Federal,AR-C,annual,2022,bioetanol combustion consumption by to the public,9.946796759999998,TJ,CH4,10.0,kg/TJ,99.46796759999998,kg -6b7932b7-8268-3d16-98d3-380017dccaa3,SESCO,II.1.1,Capital Federal,AR-C,annual,2022,bioetanol combustion consumption by to the public,9.946796759999998,TJ,N2O,0.6,kg/TJ,5.968078055999999,kg -7bc083c4-78be-3731-97c4-2dc95f618c18,SESCO,II.1.1,Catamarca,AR-K,annual,2022,bioetanol combustion consumption by to the public,5.75947908,TJ,CH4,10.0,kg/TJ,57.5947908,kg -f9f4ed30-3918-39b8-a02a-632007e0e781,SESCO,II.1.1,Catamarca,AR-K,annual,2022,bioetanol combustion consumption by to the public,5.75947908,TJ,N2O,0.6,kg/TJ,3.455687448,kg -3f178e0d-d2af-30b9-8ee2-fd36d136cf09,SESCO,II.1.1,Chaco,AR-H,annual,2022,bioetanol combustion consumption by to the public,22.14574668,TJ,CH4,10.0,kg/TJ,221.4574668,kg -409414df-0942-3c8b-b30f-fd2eeb4e0fca,SESCO,II.1.1,Chaco,AR-H,annual,2022,bioetanol combustion consumption by to the public,22.14574668,TJ,N2O,0.6,kg/TJ,13.287448007999998,kg -475b2e8c-3758-3c26-a8e3-590dd3d3fbf5,SESCO,II.1.1,Corrientes,AR-W,annual,2022,bioetanol combustion consumption by to the public,17.81016012,TJ,CH4,10.0,kg/TJ,178.1016012,kg -98190238-df41-3a72-9a16-ecdafde925ea,SESCO,II.1.1,Corrientes,AR-W,annual,2022,bioetanol combustion consumption by to the public,17.81016012,TJ,N2O,0.6,kg/TJ,10.686096072,kg -a866ce85-d5b9-395b-94d2-16823675158b,SESCO,II.1.1,Córdoba,AR-X,annual,2022,bioetanol combustion consumption by to the public,32.634491759999996,TJ,CH4,10.0,kg/TJ,326.3449176,kg -1a6f03ae-aff2-3d60-92bd-0a79f453d62d,SESCO,II.1.1,Córdoba,AR-X,annual,2022,bioetanol combustion consumption by to the public,32.634491759999996,TJ,N2O,0.6,kg/TJ,19.580695055999996,kg -d3dac181-c48d-3a23-924b-3491b03f35be,SESCO,II.1.1,Entre Rios,AR-E,annual,2022,bioetanol combustion consumption by to the public,19.914044399999998,TJ,CH4,10.0,kg/TJ,199.14044399999997,kg -6d0360fd-12e9-3638-b7ff-33b39a2523cf,SESCO,II.1.1,Entre Rios,AR-E,annual,2022,bioetanol combustion consumption by to the public,19.914044399999998,TJ,N2O,0.6,kg/TJ,11.94842664,kg -6d1873d2-f5fb-3d94-a74c-d59281747e37,SESCO,II.1.1,Formosa,AR-P,annual,2022,bioetanol combustion consumption by to the public,3.3743952,TJ,CH4,10.0,kg/TJ,33.743952,kg -b4969d36-51e2-3457-896b-d2fdae212009,SESCO,II.1.1,Formosa,AR-P,annual,2022,bioetanol combustion consumption by to the public,3.3743952,TJ,N2O,0.6,kg/TJ,2.02463712,kg -0d4e94be-7454-3f66-aaa9-16b749372a5f,SESCO,II.1.1,La Rioja,AR-F,annual,2022,bioetanol combustion consumption by to the public,7.35720408,TJ,CH4,10.0,kg/TJ,73.5720408,kg -b3c120db-a703-369e-a527-d170ef913969,SESCO,II.1.1,La Rioja,AR-F,annual,2022,bioetanol combustion consumption by to the public,7.35720408,TJ,N2O,0.6,kg/TJ,4.414322448,kg -ab97b8af-2c07-303c-9f59-345eb41260c1,SESCO,II.1.1,Mendoza,AR-M,annual,2022,bioetanol combustion consumption by to the public,31.443227999999998,TJ,CH4,10.0,kg/TJ,314.43228,kg -413ee735-cc81-3c44-8420-6c1796f99dbc,SESCO,II.1.1,Mendoza,AR-M,annual,2022,bioetanol combustion consumption by to the public,31.443227999999998,TJ,N2O,0.6,kg/TJ,18.865936799999997,kg -cdc40040-334b-3f5a-99ab-9c29d688bfe2,SESCO,II.1.1,Misiones,AR-N,annual,2022,bioetanol combustion consumption by to the public,25.553374559999998,TJ,CH4,10.0,kg/TJ,255.53374559999997,kg -77885761-ad36-3873-82dd-4ff07a8f6bcc,SESCO,II.1.1,Misiones,AR-N,annual,2022,bioetanol combustion consumption by to the public,25.553374559999998,TJ,N2O,0.6,kg/TJ,15.332024735999997,kg -8ffea237-b927-3ffe-bfb8-d4abc59bf9f7,SESCO,II.1.1,San Juan,AR-J,annual,2022,bioetanol combustion consumption by to the public,6.434358119999999,TJ,CH4,10.0,kg/TJ,64.34358119999999,kg -3f3934f0-e1c7-39eb-9305-8898211216c4,SESCO,II.1.1,San Juan,AR-J,annual,2022,bioetanol combustion consumption by to the public,6.434358119999999,TJ,N2O,0.6,kg/TJ,3.8606148719999993,kg -c7d72634-7135-3ab1-9199-3c52196cb85d,SESCO,II.1.1,San Luis,AR-D,annual,2022,bioetanol combustion consumption by to the public,2.0271934799999998,TJ,CH4,10.0,kg/TJ,20.271934799999997,kg -663fcce9-2552-385f-b935-cd99dddf67ed,SESCO,II.1.1,San Luis,AR-D,annual,2022,bioetanol combustion consumption by to the public,2.0271934799999998,TJ,N2O,0.6,kg/TJ,1.216316088,kg -429e7b83-f02f-3308-862c-dad8cf41785b,SESCO,II.1.1,Santa Fe,AR-S,annual,2022,bioetanol combustion consumption by to the public,40.56687684,TJ,CH4,10.0,kg/TJ,405.6687684,kg -5487f009-ba6f-30a5-811f-919be353325b,SESCO,II.1.1,Santa Fe,AR-S,annual,2022,bioetanol combustion consumption by to the public,40.56687684,TJ,N2O,0.6,kg/TJ,24.340126104,kg -5838ce3a-b390-3a9d-af8e-321b14d846aa,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2022,bioetanol combustion consumption by to the public,12.835483559999998,TJ,CH4,10.0,kg/TJ,128.35483559999997,kg -46291538-07d9-3a0b-af78-313648d553cf,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2022,bioetanol combustion consumption by to the public,12.835483559999998,TJ,N2O,0.6,kg/TJ,7.701290135999999,kg -a2005e14-78f3-3176-931e-004d85fe2e27,SESCO,II.1.1,Tucuman,AR-T,annual,2022,bioetanol combustion consumption by to the public,2.8631232,TJ,CH4,10.0,kg/TJ,28.631232,kg -70512504-092a-31b7-8b08-dde7989353e3,SESCO,II.1.1,Tucuman,AR-T,annual,2022,bioetanol combustion consumption by to the public,2.8631232,TJ,N2O,0.6,kg/TJ,1.71787392,kg -d7cab2b8-dd40-37c8-aa21-e303bec87b24,SESCO,II.1.1,Buenos Aires,AR-B,annual,2022,bioetanol combustion consumption by to the public,9.450862919999999,TJ,CH4,10.0,kg/TJ,94.50862919999999,kg -2f759327-b305-3929-ab9c-ca9779f9f54c,SESCO,II.1.1,Buenos Aires,AR-B,annual,2022,bioetanol combustion consumption by to the public,9.450862919999999,TJ,N2O,0.6,kg/TJ,5.670517751999999,kg -b0a4ed31-b041-347a-be4b-7677a34bb3ae,SESCO,II.1.1,Capital Federal,AR-C,annual,2022,bioetanol combustion consumption by to the public,1.74343752,TJ,CH4,10.0,kg/TJ,17.4343752,kg -250e88fd-8a14-362e-90e6-2a2e89b68411,SESCO,II.1.1,Capital Federal,AR-C,annual,2022,bioetanol combustion consumption by to the public,1.74343752,TJ,N2O,0.6,kg/TJ,1.046062512,kg -e54a49e2-2b18-3f9b-8c4d-135662cb526a,SESCO,II.1.1,Catamarca,AR-K,annual,2022,bioetanol combustion consumption by to the public,0.7566825599999999,TJ,CH4,10.0,kg/TJ,7.566825599999999,kg -5094e064-3322-3ea9-a130-8e0ae7678234,SESCO,II.1.1,Catamarca,AR-K,annual,2022,bioetanol combustion consumption by to the public,0.7566825599999999,TJ,N2O,0.6,kg/TJ,0.45400953599999994,kg -936006e2-3b66-3470-8045-04018a7ba482,SESCO,II.1.1,Chaco,AR-H,annual,2022,bioetanol combustion consumption by to the public,1.6488521999999997,TJ,CH4,10.0,kg/TJ,16.488521999999996,kg -b8ee1abf-6492-3776-aed5-d33b967f345a,SESCO,II.1.1,Chaco,AR-H,annual,2022,bioetanol combustion consumption by to the public,1.6488521999999997,TJ,N2O,0.6,kg/TJ,0.9893113199999998,kg -77eab170-239d-3637-b581-56ff22e3e880,SESCO,II.1.1,Corrientes,AR-W,annual,2022,bioetanol combustion consumption by to the public,0.99953676,TJ,CH4,10.0,kg/TJ,9.9953676,kg -0679e7d2-0077-34c3-8960-820d3e3fbfbb,SESCO,II.1.1,Corrientes,AR-W,annual,2022,bioetanol combustion consumption by to the public,0.99953676,TJ,N2O,0.6,kg/TJ,0.599722056,kg -8c4bd117-fcd8-35ff-a1ff-d0553d3dbb7a,SESCO,II.1.1,Córdoba,AR-X,annual,2022,bioetanol combustion consumption by to the public,4.94144388,TJ,CH4,10.0,kg/TJ,49.4144388,kg -00ccc927-bf5b-37b0-b08d-6cb7b8e1d1e1,SESCO,II.1.1,Córdoba,AR-X,annual,2022,bioetanol combustion consumption by to the public,4.94144388,TJ,N2O,0.6,kg/TJ,2.964866328,kg -a5e69431-9952-369a-9156-d6e2b771b3ee,SESCO,II.1.1,Entre Rios,AR-E,annual,2022,bioetanol combustion consumption by to the public,2.17034964,TJ,CH4,10.0,kg/TJ,21.7034964,kg -56eab2cc-0c95-3939-8caf-cbb759d0edcb,SESCO,II.1.1,Entre Rios,AR-E,annual,2022,bioetanol combustion consumption by to the public,2.17034964,TJ,N2O,0.6,kg/TJ,1.302209784,kg -41740679-4e00-3867-a0df-e034469f3d59,SESCO,II.1.1,Formosa,AR-P,annual,2022,bioetanol combustion consumption by to the public,0.30931956,TJ,CH4,10.0,kg/TJ,3.0931956,kg -509cf9cb-ed63-368e-aa24-2eeecd68d7a9,SESCO,II.1.1,Formosa,AR-P,annual,2022,bioetanol combustion consumption by to the public,0.30931956,TJ,N2O,0.6,kg/TJ,0.18559173599999998,kg -21b22a9a-5a30-3eb2-b75a-2d58c4af11d8,SESCO,II.1.1,La Rioja,AR-F,annual,2022,bioetanol combustion consumption by to the public,0.7285625999999998,TJ,CH4,10.0,kg/TJ,7.285625999999999,kg -353ad1ab-c05a-3fa7-8d8d-8ad4f9a64739,SESCO,II.1.1,La Rioja,AR-F,annual,2022,bioetanol combustion consumption by to the public,0.7285625999999998,TJ,N2O,0.6,kg/TJ,0.43713755999999987,kg -dcedff83-6c34-3553-829b-393a05df05ec,SESCO,II.1.1,Mendoza,AR-M,annual,2022,bioetanol combustion consumption by to the public,2.22147684,TJ,CH4,10.0,kg/TJ,22.214768399999997,kg -8d60eb63-8f99-3b3d-a337-c29aeba5e1dc,SESCO,II.1.1,Mendoza,AR-M,annual,2022,bioetanol combustion consumption by to the public,2.22147684,TJ,N2O,0.6,kg/TJ,1.3328861039999997,kg -26fddf53-fdcb-38eb-870c-aff4993f5c6a,SESCO,II.1.1,Misiones,AR-N,annual,2022,bioetanol combustion consumption by to the public,1.71531756,TJ,CH4,10.0,kg/TJ,17.153175599999997,kg -638734fe-21a6-3842-81f1-5d9225596ef9,SESCO,II.1.1,Misiones,AR-N,annual,2022,bioetanol combustion consumption by to the public,1.71531756,TJ,N2O,0.6,kg/TJ,1.029190536,kg -f6555cfb-5729-3502-a167-2356b02a99dd,SESCO,II.1.1,San Juan,AR-J,annual,2022,bioetanol combustion consumption by to the public,0.88705692,TJ,CH4,10.0,kg/TJ,8.8705692,kg -f1778c91-d084-3c63-a938-9da940a934b9,SESCO,II.1.1,San Juan,AR-J,annual,2022,bioetanol combustion consumption by to the public,0.88705692,TJ,N2O,0.6,kg/TJ,0.532234152,kg -da08bcb8-9f49-3ac5-a5ff-d5eec593f32a,SESCO,II.1.1,San Luis,AR-D,annual,2022,bioetanol combustion consumption by to the public,0.1661634,TJ,CH4,10.0,kg/TJ,1.6616339999999998,kg -de6825da-68f2-38fa-bbc8-9051bcd79f27,SESCO,II.1.1,San Luis,AR-D,annual,2022,bioetanol combustion consumption by to the public,0.1661634,TJ,N2O,0.6,kg/TJ,0.09969803999999999,kg -3330a347-1f33-3ad6-8195-a4bf494f238c,SESCO,II.1.1,Santa Fe,AR-S,annual,2022,bioetanol combustion consumption by to the public,4.63212432,TJ,CH4,10.0,kg/TJ,46.3212432,kg -7f333252-bd78-3763-be21-d8146e8eb042,SESCO,II.1.1,Santa Fe,AR-S,annual,2022,bioetanol combustion consumption by to the public,4.63212432,TJ,N2O,0.6,kg/TJ,2.7792745919999997,kg -9900b73f-50c0-3041-95f4-c27724f9456c,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2022,bioetanol combustion consumption by to the public,1.16825652,TJ,CH4,10.0,kg/TJ,11.682565199999999,kg -f84978b9-ccad-3b0c-8040-6673c77b5472,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2022,bioetanol combustion consumption by to the public,1.16825652,TJ,N2O,0.6,kg/TJ,0.7009539119999999,kg -605f5d45-2094-3a94-85f6-de7600d74275,SESCO,II.1.1,Tucuman,AR-T,annual,2022,bioetanol combustion consumption by to the public,0.29653776,TJ,CH4,10.0,kg/TJ,2.9653776,kg -b7a851a0-23af-30cd-9769-6d1efacb64ac,SESCO,II.1.1,Tucuman,AR-T,annual,2022,bioetanol combustion consumption by to the public,0.29653776,TJ,N2O,0.6,kg/TJ,0.17792265599999998,kg -31a9660b-f3de-3fe1-a238-3da71a808bdf,SESCO,II.5.1,Santa Fe,AR-S,annual,2022,bioetanol combustion consumption by agriculture machines,0.22240332,TJ,CH4,10.0,kg/TJ,2.2240332,kg -4a0eb007-aa36-3de6-b0bf-99125b5f22f2,SESCO,II.5.1,Santa Fe,AR-S,annual,2022,bioetanol combustion consumption by agriculture machines,0.22240332,TJ,N2O,0.6,kg/TJ,0.13344199199999998,kg -d39c1950-f0fd-3ba9-b094-3c0ab83309e3,SESCO,II.5.1,Santa Fe,AR-S,annual,2022,bioetanol combustion consumption by agriculture machines,0.08180351999999999,TJ,CH4,10.0,kg/TJ,0.8180352,kg -d1fcb103-dafe-3593-8256-7f777e26fd4f,SESCO,II.5.1,Santa Fe,AR-S,annual,2022,bioetanol combustion consumption by agriculture machines,0.08180351999999999,TJ,N2O,0.6,kg/TJ,0.04908211199999999,kg -90f0d7fc-94b9-3176-bb56-9be0a78d7911,SESCO,II.1.1,Buenos Aires,AR-B,annual,2022,bioetanol combustion consumption by to the public,888.0999148799999,TJ,CH4,10.0,kg/TJ,8880.9991488,kg -02638d26-739e-39c7-8c14-189a32205084,SESCO,II.1.1,Buenos Aires,AR-B,annual,2022,bioetanol combustion consumption by to the public,888.0999148799999,TJ,N2O,0.6,kg/TJ,532.8599489279999,kg -46cc7d93-9213-3e35-80c1-691dd6fdbdaa,SESCO,II.1.1,Capital Federal,AR-C,annual,2022,bioetanol combustion consumption by to the public,219.48140052,TJ,CH4,10.0,kg/TJ,2194.8140052,kg -91d83460-435b-319f-99ea-b6efa91cabdd,SESCO,II.1.1,Capital Federal,AR-C,annual,2022,bioetanol combustion consumption by to the public,219.48140052,TJ,N2O,0.6,kg/TJ,131.688840312,kg -6eb19b6c-4f90-3e7d-a4ea-a689bc944ea0,SESCO,II.1.1,Catamarca,AR-K,annual,2022,bioetanol combustion consumption by to the public,35.43370596,TJ,CH4,10.0,kg/TJ,354.3370596,kg -fbdcd7e2-de39-34ac-872e-9b04f3305927,SESCO,II.1.1,Catamarca,AR-K,annual,2022,bioetanol combustion consumption by to the public,35.43370596,TJ,N2O,0.6,kg/TJ,21.260223575999998,kg -f306e877-6a79-3e08-b15b-35e17067c530,SESCO,II.1.1,Chaco,AR-H,annual,2022,bioetanol combustion consumption by to the public,64.63500624,TJ,CH4,10.0,kg/TJ,646.3500624,kg -2a166096-8b2e-387d-9be0-139f53bd73f8,SESCO,II.1.1,Chaco,AR-H,annual,2022,bioetanol combustion consumption by to the public,64.63500624,TJ,N2O,0.6,kg/TJ,38.781003743999996,kg -358aab6b-4d52-3443-961c-88325b9e4c2d,SESCO,II.1.1,Chubut,AR-U,annual,2022,bioetanol combustion consumption by to the public,136.35879875999998,TJ,CH4,10.0,kg/TJ,1363.5879876,kg -6c32062f-5c13-3871-90f1-c5f1959f4a5f,SESCO,II.1.1,Chubut,AR-U,annual,2022,bioetanol combustion consumption by to the public,136.35879875999998,TJ,N2O,0.6,kg/TJ,81.81527925599998,kg -726ebd68-2581-3719-86c5-9738b79e1c11,SESCO,II.1.1,Corrientes,AR-W,annual,2022,bioetanol combustion consumption by to the public,92.50955567999999,TJ,CH4,10.0,kg/TJ,925.0955567999999,kg -4c6b31cc-d407-3d26-a622-d0602d7ef1a4,SESCO,II.1.1,Corrientes,AR-W,annual,2022,bioetanol combustion consumption by to the public,92.50955567999999,TJ,N2O,0.6,kg/TJ,55.50573340799999,kg -bc15955c-1bbb-3c59-a1db-bf93d5d88091,SESCO,II.1.1,Córdoba,AR-X,annual,2022,bioetanol combustion consumption by to the public,212.26990895999998,TJ,CH4,10.0,kg/TJ,2122.6990895999998,kg -934895ee-51ff-3a39-a4b7-5eae6a603cb2,SESCO,II.1.1,Córdoba,AR-X,annual,2022,bioetanol combustion consumption by to the public,212.26990895999998,TJ,N2O,0.6,kg/TJ,127.36194537599998,kg -5623f247-fbd4-3a60-9c7a-f54b5c6384e3,SESCO,II.1.1,Entre Rios,AR-E,annual,2022,bioetanol combustion consumption by to the public,91.66084416,TJ,CH4,10.0,kg/TJ,916.6084416,kg -16534ad9-38d5-3af9-b9c9-8ed626d5f3d7,SESCO,II.1.1,Entre Rios,AR-E,annual,2022,bioetanol combustion consumption by to the public,91.66084416,TJ,N2O,0.6,kg/TJ,54.996506495999995,kg -2704e806-559e-3903-acee-cda805e13f32,SESCO,II.1.1,Formosa,AR-P,annual,2022,bioetanol combustion consumption by to the public,78.52626647999999,TJ,CH4,10.0,kg/TJ,785.2626647999999,kg -a30d4250-23a4-36b3-9142-b09da7161fab,SESCO,II.1.1,Formosa,AR-P,annual,2022,bioetanol combustion consumption by to the public,78.52626647999999,TJ,N2O,0.6,kg/TJ,47.11575988799999,kg -2a2daddf-0a91-3a57-b5a9-fa45268af795,SESCO,II.1.1,Jujuy,AR-Y,annual,2022,bioetanol combustion consumption by to the public,21.297035159999997,TJ,CH4,10.0,kg/TJ,212.97035159999996,kg -46f89743-5509-3279-9795-8fef7a1e87bc,SESCO,II.1.1,Jujuy,AR-Y,annual,2022,bioetanol combustion consumption by to the public,21.297035159999997,TJ,N2O,0.6,kg/TJ,12.778221095999998,kg -24ebbcfd-92e1-37c3-9c53-8cfcc417e1c2,SESCO,II.1.1,La Pampa,AR-L,annual,2022,bioetanol combustion consumption by to the public,19.60472484,TJ,CH4,10.0,kg/TJ,196.0472484,kg -5c08309e-6b29-374b-bf9a-9ada2c1ecec4,SESCO,II.1.1,La Pampa,AR-L,annual,2022,bioetanol combustion consumption by to the public,19.60472484,TJ,N2O,0.6,kg/TJ,11.762834904,kg -718a603a-3b12-3541-a7f7-8b56c5b61fb8,SESCO,II.1.1,La Rioja,AR-F,annual,2022,bioetanol combustion consumption by to the public,11.411591039999998,TJ,CH4,10.0,kg/TJ,114.11591039999998,kg -a1709e59-7ee8-3119-8599-b0cac858c2e9,SESCO,II.1.1,La Rioja,AR-F,annual,2022,bioetanol combustion consumption by to the public,11.411591039999998,TJ,N2O,0.6,kg/TJ,6.8469546239999985,kg -94b98db2-edc7-3aab-b5cb-ef9c3a80b755,SESCO,II.1.1,Mendoza,AR-M,annual,2022,bioetanol combustion consumption by to the public,42.69888107999999,TJ,CH4,10.0,kg/TJ,426.9888107999999,kg -1a01714e-d6ca-3847-85a5-f326543614c6,SESCO,II.1.1,Mendoza,AR-M,annual,2022,bioetanol combustion consumption by to the public,42.69888107999999,TJ,N2O,0.6,kg/TJ,25.619328647999996,kg -6cde847d-d1ad-3672-a70d-24f3be74a0e5,SESCO,II.1.1,Misiones,AR-N,annual,2022,bioetanol combustion consumption by to the public,152.90611703999997,TJ,CH4,10.0,kg/TJ,1529.0611703999998,kg -4a72aac8-407f-3f59-8883-e886fda8de74,SESCO,II.1.1,Misiones,AR-N,annual,2022,bioetanol combustion consumption by to the public,152.90611703999997,TJ,N2O,0.6,kg/TJ,91.74367022399998,kg -77d1f86b-3896-376c-8ab9-2dfa7ee4824f,SESCO,II.1.1,Neuquén,AR-Q,annual,2022,bioetanol combustion consumption by to the public,41.33122847999999,TJ,CH4,10.0,kg/TJ,413.31228479999993,kg -0e637051-1fc6-3c70-b8de-0a3dba61a3cf,SESCO,II.1.1,Neuquén,AR-Q,annual,2022,bioetanol combustion consumption by to the public,41.33122847999999,TJ,N2O,0.6,kg/TJ,24.798737087999996,kg -6b01cd25-8f93-326c-9e98-3bb689ddc659,SESCO,II.1.1,Rio Negro,AR-R,annual,2022,bioetanol combustion consumption by to the public,69.6480282,TJ,CH4,10.0,kg/TJ,696.480282,kg -324bf28a-14e1-3c4e-83b7-4dca3a699219,SESCO,II.1.1,Rio Negro,AR-R,annual,2022,bioetanol combustion consumption by to the public,69.6480282,TJ,N2O,0.6,kg/TJ,41.788816919999995,kg -5ffe2dc4-7f25-3f6f-ad93-b68f0f439aec,SESCO,II.1.1,Salta,AR-A,annual,2022,bioetanol combustion consumption by to the public,19.336307039999998,TJ,CH4,10.0,kg/TJ,193.36307039999997,kg -14811066-a3fb-3599-84b8-7a4d81928070,SESCO,II.1.1,Salta,AR-A,annual,2022,bioetanol combustion consumption by to the public,19.336307039999998,TJ,N2O,0.6,kg/TJ,11.601784223999998,kg -27b17386-9fbe-30d4-87be-48e4d1ccb326,SESCO,II.1.1,San Juan,AR-J,annual,2022,bioetanol combustion consumption by to the public,18.72022428,TJ,CH4,10.0,kg/TJ,187.2022428,kg -4eb8d589-4a4c-3128-8807-f4b595402454,SESCO,II.1.1,San Juan,AR-J,annual,2022,bioetanol combustion consumption by to the public,18.72022428,TJ,N2O,0.6,kg/TJ,11.232134568,kg -263b2343-c6f0-3193-89cd-674a27aa289c,SESCO,II.1.1,San Luis,AR-D,annual,2022,bioetanol combustion consumption by to the public,48.808581479999994,TJ,CH4,10.0,kg/TJ,488.0858147999999,kg -970e52ca-0b26-3676-95d6-775c17e8fe3c,SESCO,II.1.1,San Luis,AR-D,annual,2022,bioetanol combustion consumption by to the public,48.808581479999994,TJ,N2O,0.6,kg/TJ,29.285148887999995,kg -8859c372-ff8b-3509-8b9d-bd2c3072ed73,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2022,bioetanol combustion consumption by to the public,78.45724476,TJ,CH4,10.0,kg/TJ,784.5724475999999,kg -6c485e65-fb60-3684-86f9-cc3b77ab6b4a,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2022,bioetanol combustion consumption by to the public,78.45724476,TJ,N2O,0.6,kg/TJ,47.074346856,kg -3de2267c-6c2c-3d4a-86a2-733a89370d44,SESCO,II.1.1,Santa Fe,AR-S,annual,2022,bioetanol combustion consumption by to the public,219.28200443999998,TJ,CH4,10.0,kg/TJ,2192.8200444,kg -c855a832-a4bb-374d-b664-188ae62ab61e,SESCO,II.1.1,Santa Fe,AR-S,annual,2022,bioetanol combustion consumption by to the public,219.28200443999998,TJ,N2O,0.6,kg/TJ,131.569202664,kg -90a7dc87-3b46-3621-b1b2-dc05378e7cb3,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2022,bioetanol combustion consumption by to the public,38.854115639999996,TJ,CH4,10.0,kg/TJ,388.5411564,kg -eb3b370a-dd56-3704-b189-9b86deba1853,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2022,bioetanol combustion consumption by to the public,38.854115639999996,TJ,N2O,0.6,kg/TJ,23.312469383999996,kg -321c7a7a-27c8-3a1e-8108-aa9c5f132a5c,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2022,bioetanol combustion consumption by to the public,15.338159999999998,TJ,CH4,10.0,kg/TJ,153.3816,kg -f16604f8-3a53-34b0-bd94-94036c46b4af,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2022,bioetanol combustion consumption by to the public,15.338159999999998,TJ,N2O,0.6,kg/TJ,9.202895999999999,kg -fed6f18c-ca6a-33f6-9901-801e13e7cb25,SESCO,II.1.1,Tucuman,AR-T,annual,2022,bioetanol combustion consumption by to the public,17.61076404,TJ,CH4,10.0,kg/TJ,176.10764039999998,kg -73a2fec1-f92c-3846-ab09-45926f4f3477,SESCO,II.1.1,Tucuman,AR-T,annual,2022,bioetanol combustion consumption by to the public,17.61076404,TJ,N2O,0.6,kg/TJ,10.566458423999999,kg -c83028d8-f4bc-3448-a563-9de08ca99da4,SESCO,II.1.1,Buenos Aires,AR-B,annual,2022,bioetanol combustion consumption by to the public,277.50821615999996,TJ,CH4,10.0,kg/TJ,2775.0821615999994,kg -6c09d33b-1b02-31a6-9bb1-fc525e992837,SESCO,II.1.1,Buenos Aires,AR-B,annual,2022,bioetanol combustion consumption by to the public,277.50821615999996,TJ,N2O,0.6,kg/TJ,166.50492969599998,kg -ec267efd-62f3-333a-a94c-e77d4568426b,SESCO,II.1.1,Capital Federal,AR-C,annual,2022,bioetanol combustion consumption by to the public,104.89000716,TJ,CH4,10.0,kg/TJ,1048.9000716,kg -931da467-614e-3a16-afd0-e3a8e759e100,SESCO,II.1.1,Capital Federal,AR-C,annual,2022,bioetanol combustion consumption by to the public,104.89000716,TJ,N2O,0.6,kg/TJ,62.934004296,kg -2a647f74-825a-3d99-b3dd-7c4d4f904522,SESCO,II.1.1,Catamarca,AR-K,annual,2022,bioetanol combustion consumption by to the public,11.81805228,TJ,CH4,10.0,kg/TJ,118.1805228,kg -3f0c4566-0582-3531-b94f-6c8660545e7c,SESCO,II.1.1,Catamarca,AR-K,annual,2022,bioetanol combustion consumption by to the public,11.81805228,TJ,N2O,0.6,kg/TJ,7.090831368,kg -6e5f6b70-14d9-3381-9448-4db75d396b74,SESCO,II.1.1,Chaco,AR-H,annual,2022,bioetanol combustion consumption by to the public,10.31235624,TJ,CH4,10.0,kg/TJ,103.1235624,kg -cc82b558-549d-3bb5-a04a-4438a6085639,SESCO,II.1.1,Chaco,AR-H,annual,2022,bioetanol combustion consumption by to the public,10.31235624,TJ,N2O,0.6,kg/TJ,6.187413744,kg -9e152b9a-ed8d-3270-a23f-c95f2d0d329f,SESCO,II.1.1,Chubut,AR-U,annual,2022,bioetanol combustion consumption by to the public,24.198503759999994,TJ,CH4,10.0,kg/TJ,241.98503759999994,kg -f314d410-15dd-3108-8d49-6a49f2ca5cd3,SESCO,II.1.1,Chubut,AR-U,annual,2022,bioetanol combustion consumption by to the public,24.198503759999994,TJ,N2O,0.6,kg/TJ,14.519102255999996,kg -d388cefe-282b-398c-bc48-8d4ae51f4d49,SESCO,II.1.1,Corrientes,AR-W,annual,2022,bioetanol combustion consumption by to the public,12.904505279999999,TJ,CH4,10.0,kg/TJ,129.04505279999998,kg -784a82d3-2524-3931-a68c-a0130517e036,SESCO,II.1.1,Corrientes,AR-W,annual,2022,bioetanol combustion consumption by to the public,12.904505279999999,TJ,N2O,0.6,kg/TJ,7.7427031679999985,kg -18da2cea-5120-3113-bddf-e6d0a9c9914d,SESCO,II.1.1,Córdoba,AR-X,annual,2022,bioetanol combustion consumption by to the public,58.57387668,TJ,CH4,10.0,kg/TJ,585.7387668,kg -23572f31-77cc-3175-898b-6a7ed1b43368,SESCO,II.1.1,Córdoba,AR-X,annual,2022,bioetanol combustion consumption by to the public,58.57387668,TJ,N2O,0.6,kg/TJ,35.144326008,kg -b1d8a42f-ba47-39ec-9130-31bf52fa7649,SESCO,II.1.1,Entre Rios,AR-E,annual,2022,bioetanol combustion consumption by to the public,28.375595999999998,TJ,CH4,10.0,kg/TJ,283.75595999999996,kg -f9455589-2e58-3305-b782-1605219ee73b,SESCO,II.1.1,Entre Rios,AR-E,annual,2022,bioetanol combustion consumption by to the public,28.375595999999998,TJ,N2O,0.6,kg/TJ,17.0253576,kg -49303b9c-5c70-32b1-9255-49bf17d0c4ca,SESCO,II.1.1,Formosa,AR-P,annual,2022,bioetanol combustion consumption by to the public,22.419277199999996,TJ,CH4,10.0,kg/TJ,224.19277199999996,kg -28a97be9-63d6-3926-9a44-47a136580e03,SESCO,II.1.1,Formosa,AR-P,annual,2022,bioetanol combustion consumption by to the public,22.419277199999996,TJ,N2O,0.6,kg/TJ,13.451566319999998,kg -51073536-5d22-3d71-8ea7-bd479c355184,SESCO,II.1.1,Jujuy,AR-Y,annual,2022,bioetanol combustion consumption by to the public,5.1612908399999995,TJ,CH4,10.0,kg/TJ,51.612908399999995,kg -8948f9cd-7934-34c7-b6b4-7be35f1167be,SESCO,II.1.1,Jujuy,AR-Y,annual,2022,bioetanol combustion consumption by to the public,5.1612908399999995,TJ,N2O,0.6,kg/TJ,3.0967745039999994,kg -f141d54b-6a44-3d96-b4b6-479794bca5a1,SESCO,II.1.1,La Pampa,AR-L,annual,2022,bioetanol combustion consumption by to the public,6.784579439999999,TJ,CH4,10.0,kg/TJ,67.84579439999999,kg -4afe22d2-5a5f-317d-b98a-2326f6471449,SESCO,II.1.1,La Pampa,AR-L,annual,2022,bioetanol combustion consumption by to the public,6.784579439999999,TJ,N2O,0.6,kg/TJ,4.070747663999999,kg -0ef56d41-9cd2-3585-b21e-69edf81935dc,SESCO,II.1.1,La Rioja,AR-F,annual,2022,bioetanol combustion consumption by to the public,3.770631,TJ,CH4,10.0,kg/TJ,37.70631,kg -75cc2337-544c-32f0-87fb-5455cebe24e4,SESCO,II.1.1,La Rioja,AR-F,annual,2022,bioetanol combustion consumption by to the public,3.770631,TJ,N2O,0.6,kg/TJ,2.2623786,kg -876eb107-af0b-3cbb-a9f5-5218f7a8397b,SESCO,II.1.1,Mendoza,AR-M,annual,2022,bioetanol combustion consumption by to the public,19.01676204,TJ,CH4,10.0,kg/TJ,190.1676204,kg -9ffa2772-c6f4-3a84-ba2c-5ef26fae7110,SESCO,II.1.1,Mendoza,AR-M,annual,2022,bioetanol combustion consumption by to the public,19.01676204,TJ,N2O,0.6,kg/TJ,11.410057223999999,kg -d961eb9a-8aca-3e4c-a1d4-97859c729b5f,SESCO,II.1.1,Misiones,AR-N,annual,2022,bioetanol combustion consumption by to the public,17.36535348,TJ,CH4,10.0,kg/TJ,173.6535348,kg -7a240bba-bc4f-3874-bec1-b31e34ae2f46,SESCO,II.1.1,Misiones,AR-N,annual,2022,bioetanol combustion consumption by to the public,17.36535348,TJ,N2O,0.6,kg/TJ,10.419212088,kg -f0754b57-3fc1-3b75-9ebd-08c8c6848ebc,SESCO,II.1.1,Neuquén,AR-Q,annual,2022,bioetanol combustion consumption by to the public,19.66352112,TJ,CH4,10.0,kg/TJ,196.6352112,kg -76603907-13e2-3fac-84a0-6025c235270e,SESCO,II.1.1,Neuquén,AR-Q,annual,2022,bioetanol combustion consumption by to the public,19.66352112,TJ,N2O,0.6,kg/TJ,11.798112671999998,kg -5f5fbca9-0f9d-32c8-baeb-fee09228996a,SESCO,II.1.1,Rio Negro,AR-R,annual,2022,bioetanol combustion consumption by to the public,27.61891344,TJ,CH4,10.0,kg/TJ,276.1891344,kg -5ac8dac6-97d3-395e-a58b-bffd29c31688,SESCO,II.1.1,Rio Negro,AR-R,annual,2022,bioetanol combustion consumption by to the public,27.61891344,TJ,N2O,0.6,kg/TJ,16.571348064,kg -6d300930-1cec-3463-9614-023be5c23f7e,SESCO,II.1.1,Salta,AR-A,annual,2022,bioetanol combustion consumption by to the public,3.6019112399999993,TJ,CH4,10.0,kg/TJ,36.01911239999999,kg -efbe8ce4-5aaa-35c8-b83b-a094f81a3773,SESCO,II.1.1,Salta,AR-A,annual,2022,bioetanol combustion consumption by to the public,3.6019112399999993,TJ,N2O,0.6,kg/TJ,2.1611467439999994,kg -f8d88a21-82d6-37bf-9a40-da095e330533,SESCO,II.1.1,San Juan,AR-J,annual,2022,bioetanol combustion consumption by to the public,3.8958926399999996,TJ,CH4,10.0,kg/TJ,38.958926399999996,kg -56a0f1fb-0c89-3a8d-97fc-488f14dfbb79,SESCO,II.1.1,San Juan,AR-J,annual,2022,bioetanol combustion consumption by to the public,3.8958926399999996,TJ,N2O,0.6,kg/TJ,2.337535584,kg -0be3c445-add5-3b06-a4ed-979282d14a62,SESCO,II.1.1,San Luis,AR-D,annual,2022,bioetanol combustion consumption by to the public,11.16618048,TJ,CH4,10.0,kg/TJ,111.6618048,kg -1b255692-8d1e-3a05-853e-981b9b7e6d6d,SESCO,II.1.1,San Luis,AR-D,annual,2022,bioetanol combustion consumption by to the public,11.16618048,TJ,N2O,0.6,kg/TJ,6.699708287999999,kg -f1279f7a-5bbd-3227-9b5c-8392863a03e2,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2022,bioetanol combustion consumption by to the public,11.28888576,TJ,CH4,10.0,kg/TJ,112.8888576,kg -52a56656-ef30-311a-b3ee-6e58269b5bb0,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2022,bioetanol combustion consumption by to the public,11.28888576,TJ,N2O,0.6,kg/TJ,6.773331455999999,kg -9c94c7f0-2e36-3a39-a313-2a3bbee05faf,SESCO,II.1.1,Santa Fe,AR-S,annual,2022,bioetanol combustion consumption by to the public,72.01521756,TJ,CH4,10.0,kg/TJ,720.1521756,kg -405d6f35-efdc-33c8-b7af-3f57e4bd3bf2,SESCO,II.1.1,Santa Fe,AR-S,annual,2022,bioetanol combustion consumption by to the public,72.01521756,TJ,N2O,0.6,kg/TJ,43.209130535999996,kg -eeb23108-b4bf-3fbd-9e79-558466f9f743,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2022,bioetanol combustion consumption by to the public,12.89172348,TJ,CH4,10.0,kg/TJ,128.9172348,kg -9c962583-89f7-3781-af63-24cf418fbf16,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2022,bioetanol combustion consumption by to the public,12.89172348,TJ,N2O,0.6,kg/TJ,7.735034087999999,kg -ff59bcc7-ce0c-3ed7-a05d-5a97bf7bc71e,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2022,bioetanol combustion consumption by to the public,3.6504820799999993,TJ,CH4,10.0,kg/TJ,36.50482079999999,kg -ddd6646a-8a01-36e8-aee4-8f65f626afca,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2022,bioetanol combustion consumption by to the public,3.6504820799999993,TJ,N2O,0.6,kg/TJ,2.1902892479999996,kg -b31b89f1-27b2-3b43-b9c7-90b411ca66a8,SESCO,II.1.1,Tucuman,AR-T,annual,2022,bioetanol combustion consumption by to the public,3.3974024399999996,TJ,CH4,10.0,kg/TJ,33.9740244,kg -d70fcc92-0eb8-3b2c-87e3-21c55d37f460,SESCO,II.1.1,Tucuman,AR-T,annual,2022,bioetanol combustion consumption by to the public,3.3974024399999996,TJ,N2O,0.6,kg/TJ,2.0384414639999995,kg -bf8b8aee-51b1-3bbe-aa4d-64ce57303688,SESCO,II.1.1,Buenos Aires,AR-B,annual,2022,bioetanol combustion consumption by freight transport,1.7255429999999998,TJ,CH4,10.0,kg/TJ,17.255429999999997,kg -34c00d77-198f-326f-a725-50d0793eeea4,SESCO,II.1.1,Buenos Aires,AR-B,annual,2022,bioetanol combustion consumption by freight transport,1.7255429999999998,TJ,N2O,0.6,kg/TJ,1.0353257999999999,kg -4978d8b6-e607-3ac8-94f3-8acb1eb806b5,SESCO,II.1.1,Capital Federal,AR-C,annual,2022,bioetanol combustion consumption by freight transport,1.8150156,TJ,CH4,10.0,kg/TJ,18.150156,kg -a1974c51-ad13-35c6-bd5a-f6299e367fd3,SESCO,II.1.1,Capital Federal,AR-C,annual,2022,bioetanol combustion consumption by freight transport,1.8150156,TJ,N2O,0.6,kg/TJ,1.08900936,kg -77a25d51-e7a1-358e-ace9-24d4a9b11370,SESCO,II.1.1,Chubut,AR-U,annual,2022,bioetanol combustion consumption by freight transport,0.0127818,TJ,CH4,10.0,kg/TJ,0.127818,kg -cf75d5ac-9b19-3a0d-9d6c-d0e62e2fe408,SESCO,II.1.1,Chubut,AR-U,annual,2022,bioetanol combustion consumption by freight transport,0.0127818,TJ,N2O,0.6,kg/TJ,0.007669079999999999,kg -48d8ab01-6272-33bb-b298-15155908c535,SESCO,II.1.1,Corrientes,AR-W,annual,2022,bioetanol combustion consumption by freight transport,0.005112719999999999,TJ,CH4,10.0,kg/TJ,0.0511272,kg -6bf31a4a-90f4-35e9-9a3e-a86f7f18c0ab,SESCO,II.1.1,Corrientes,AR-W,annual,2022,bioetanol combustion consumption by freight transport,0.005112719999999999,TJ,N2O,0.6,kg/TJ,0.0030676319999999994,kg -9bd4ce1b-9d63-3001-a517-2e9025cef5fb,SESCO,II.1.1,Córdoba,AR-X,annual,2022,bioetanol combustion consumption by freight transport,0.23774148,TJ,CH4,10.0,kg/TJ,2.3774148,kg -3ea65333-e28b-3c41-bb4b-f4ecf45aabb8,SESCO,II.1.1,Córdoba,AR-X,annual,2022,bioetanol combustion consumption by freight transport,0.23774148,TJ,N2O,0.6,kg/TJ,0.142644888,kg -1eb423fc-ce35-3cfe-a708-87516a3e35d1,SESCO,II.1.1,Entre Rios,AR-E,annual,2022,bioetanol combustion consumption by freight transport,0.007669079999999999,TJ,CH4,10.0,kg/TJ,0.07669079999999999,kg -55f53ef8-bc01-3e6b-affb-8b4da7c58e4b,SESCO,II.1.1,Entre Rios,AR-E,annual,2022,bioetanol combustion consumption by freight transport,0.007669079999999999,TJ,N2O,0.6,kg/TJ,0.004601447999999999,kg -da9be594-7f63-3ba2-9300-ef4939e087c6,SESCO,II.1.1,Mendoza,AR-M,annual,2022,bioetanol combustion consumption by freight transport,0.0127818,TJ,CH4,10.0,kg/TJ,0.127818,kg -5e7b8975-d3b2-3e2e-831f-339c0c14e34d,SESCO,II.1.1,Mendoza,AR-M,annual,2022,bioetanol combustion consumption by freight transport,0.0127818,TJ,N2O,0.6,kg/TJ,0.007669079999999999,kg -96ee9bb9-0357-353a-8993-a22f3d4b1f94,SESCO,II.1.1,Rio Negro,AR-R,annual,2022,bioetanol combustion consumption by freight transport,0.020450879999999998,TJ,CH4,10.0,kg/TJ,0.2045088,kg -3567dfa8-7cc5-3437-901d-9eaaa450d840,SESCO,II.1.1,Rio Negro,AR-R,annual,2022,bioetanol combustion consumption by freight transport,0.020450879999999998,TJ,N2O,0.6,kg/TJ,0.012270527999999998,kg -f6e88427-782c-329e-bbc3-74864aecd4e2,SESCO,II.1.1,Santa Fe,AR-S,annual,2022,bioetanol combustion consumption by freight transport,0.5981882399999999,TJ,CH4,10.0,kg/TJ,5.981882399999999,kg -edf8e005-5d12-3ee6-9d2e-0aa4f5a97b1f,SESCO,II.1.1,Santa Fe,AR-S,annual,2022,bioetanol combustion consumption by freight transport,0.5981882399999999,TJ,N2O,0.6,kg/TJ,0.35891294399999996,kg -4e9983f9-1fc0-353d-9e08-cb4377baad9e,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2022,bioetanol combustion consumption by freight transport,0.0025563599999999997,TJ,CH4,10.0,kg/TJ,0.0255636,kg -9b33756f-94e1-3203-91ed-bf636d919669,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2022,bioetanol combustion consumption by freight transport,0.0025563599999999997,TJ,N2O,0.6,kg/TJ,0.0015338159999999997,kg -8228249a-4269-3768-a2ee-3073280611f4,SESCO,II.1.1,Buenos Aires,AR-B,annual,2022,bioetanol combustion consumption by freight transport,1.2935181599999999,TJ,CH4,10.0,kg/TJ,12.935181599999998,kg -02ed7881-228c-3861-b11c-4c569b816882,SESCO,II.1.1,Buenos Aires,AR-B,annual,2022,bioetanol combustion consumption by freight transport,1.2935181599999999,TJ,N2O,0.6,kg/TJ,0.7761108959999999,kg -d09b6c98-7336-3034-b5d1-10071854f3d9,SESCO,II.1.1,Capital Federal,AR-C,annual,2022,bioetanol combustion consumption by freight transport,1.3037435999999998,TJ,CH4,10.0,kg/TJ,13.037435999999998,kg -6ddc8cd2-6a84-3b8b-836f-fbcc4bdf0fb7,SESCO,II.1.1,Capital Federal,AR-C,annual,2022,bioetanol combustion consumption by freight transport,1.3037435999999998,TJ,N2O,0.6,kg/TJ,0.7822461599999998,kg -361dab53-ee89-3132-b859-fc1d36b9eb29,SESCO,II.1.1,Córdoba,AR-X,annual,2022,bioetanol combustion consumption by freight transport,0.10992348,TJ,CH4,10.0,kg/TJ,1.0992348,kg -7dfc39f5-f571-30a9-ac57-c0262b351bb4,SESCO,II.1.1,Córdoba,AR-X,annual,2022,bioetanol combustion consumption by freight transport,0.10992348,TJ,N2O,0.6,kg/TJ,0.065954088,kg -28d09fd5-0003-33c5-b770-bf45d687a3dd,SESCO,II.1.1,Entre Rios,AR-E,annual,2022,bioetanol combustion consumption by freight transport,0.035789039999999994,TJ,CH4,10.0,kg/TJ,0.35789039999999994,kg -a39b00bf-a3dd-3cdd-8c1e-bea2df669df1,SESCO,II.1.1,Entre Rios,AR-E,annual,2022,bioetanol combustion consumption by freight transport,0.035789039999999994,TJ,N2O,0.6,kg/TJ,0.021473423999999994,kg -b5a18393-5b29-3368-95f7-35d32aa2edac,SESCO,II.1.1,La Rioja,AR-F,annual,2022,bioetanol combustion consumption by freight transport,0.017894519999999997,TJ,CH4,10.0,kg/TJ,0.17894519999999997,kg -27d432e4-9a88-3279-9678-af7de078e13c,SESCO,II.1.1,La Rioja,AR-F,annual,2022,bioetanol combustion consumption by freight transport,0.017894519999999997,TJ,N2O,0.6,kg/TJ,0.010736711999999997,kg -68589ead-89c2-39f1-8b6a-e34c9dfccb60,SESCO,II.1.1,Mendoza,AR-M,annual,2022,bioetanol combustion consumption by freight transport,0.007669079999999999,TJ,CH4,10.0,kg/TJ,0.07669079999999999,kg -9c6659a2-6789-3948-97dc-751545ec8b04,SESCO,II.1.1,Mendoza,AR-M,annual,2022,bioetanol combustion consumption by freight transport,0.007669079999999999,TJ,N2O,0.6,kg/TJ,0.004601447999999999,kg -b7b4df64-968e-397e-b389-d96250dbc240,SESCO,II.1.1,Rio Negro,AR-R,annual,2022,bioetanol combustion consumption by freight transport,0.0255636,TJ,CH4,10.0,kg/TJ,0.255636,kg -c0b703ed-516c-3e5f-bd5d-a2c073a5bda5,SESCO,II.1.1,Rio Negro,AR-R,annual,2022,bioetanol combustion consumption by freight transport,0.0255636,TJ,N2O,0.6,kg/TJ,0.015338159999999998,kg -2922b56e-a032-3123-b8cc-3b2a281b940b,SESCO,II.1.1,San Luis,AR-D,annual,2022,bioetanol combustion consumption by freight transport,0.0025563599999999997,TJ,CH4,10.0,kg/TJ,0.0255636,kg -bda46b44-0189-355a-b441-4896cf20c72a,SESCO,II.1.1,San Luis,AR-D,annual,2022,bioetanol combustion consumption by freight transport,0.0025563599999999997,TJ,N2O,0.6,kg/TJ,0.0015338159999999997,kg -fb43df20-5b82-3cde-9daf-f1737896f472,SESCO,II.1.1,Santa Fe,AR-S,annual,2022,bioetanol combustion consumption by freight transport,0.56751192,TJ,CH4,10.0,kg/TJ,5.675119199999999,kg -5692decf-4189-3c9c-91fd-b09b1393789a,SESCO,II.1.1,Santa Fe,AR-S,annual,2022,bioetanol combustion consumption by freight transport,0.56751192,TJ,N2O,0.6,kg/TJ,0.340507152,kg -4e9983f9-1fc0-353d-9e08-cb4377baad9e,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2022,bioetanol combustion consumption by freight transport,0.0025563599999999997,TJ,CH4,10.0,kg/TJ,0.0255636,kg -9b33756f-94e1-3203-91ed-bf636d919669,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2022,bioetanol combustion consumption by freight transport,0.0025563599999999997,TJ,N2O,0.6,kg/TJ,0.0015338159999999997,kg -d3adc838-1eee-3803-a47c-8aa552c81a11,SESCO,II.1.1,Buenos Aires,AR-B,annual,2022,bioetanol combustion consumption by public passenger transport,0.010225439999999999,TJ,CH4,10.0,kg/TJ,0.1022544,kg -839a5344-1900-32c3-b23f-8f83aeafb00c,SESCO,II.1.1,Buenos Aires,AR-B,annual,2022,bioetanol combustion consumption by public passenger transport,0.010225439999999999,TJ,N2O,0.6,kg/TJ,0.006135263999999999,kg -de5351ac-721d-34a9-8db9-99a28da76b08,SESCO,II.1.1,Capital Federal,AR-C,annual,2022,bioetanol combustion consumption by public passenger transport,0.007669079999999999,TJ,CH4,10.0,kg/TJ,0.07669079999999999,kg -f822c255-7914-3ace-abf6-a82f12c44f81,SESCO,II.1.1,Capital Federal,AR-C,annual,2022,bioetanol combustion consumption by public passenger transport,0.007669079999999999,TJ,N2O,0.6,kg/TJ,0.004601447999999999,kg -d91600d7-2828-3f1a-9d8d-ccf15b3e631b,SESCO,II.1.1,Entre Rios,AR-E,annual,2022,bioetanol combustion consumption by public passenger transport,0.02300724,TJ,CH4,10.0,kg/TJ,0.2300724,kg -c9c9c5b7-84b3-338d-ae0a-3067ee69606e,SESCO,II.1.1,Entre Rios,AR-E,annual,2022,bioetanol combustion consumption by public passenger transport,0.02300724,TJ,N2O,0.6,kg/TJ,0.013804344000000001,kg -9f9885bf-265d-3105-bd01-fe04c0e64995,SESCO,II.1.1,Santa Fe,AR-S,annual,2022,bioetanol combustion consumption by public passenger transport,0.0255636,TJ,CH4,10.0,kg/TJ,0.255636,kg -edcc2f73-f67e-3ca5-aa71-ce8af8b57f44,SESCO,II.1.1,Santa Fe,AR-S,annual,2022,bioetanol combustion consumption by public passenger transport,0.0255636,TJ,N2O,0.6,kg/TJ,0.015338159999999998,kg -d3adc838-1eee-3803-a47c-8aa552c81a11,SESCO,II.1.1,Buenos Aires,AR-B,annual,2022,bioetanol combustion consumption by public passenger transport,0.010225439999999999,TJ,CH4,10.0,kg/TJ,0.1022544,kg -839a5344-1900-32c3-b23f-8f83aeafb00c,SESCO,II.1.1,Buenos Aires,AR-B,annual,2022,bioetanol combustion consumption by public passenger transport,0.010225439999999999,TJ,N2O,0.6,kg/TJ,0.006135263999999999,kg -a827d23c-30c2-392a-808d-397cd55f2c40,SESCO,II.1.1,Capital Federal,AR-C,annual,2022,bioetanol combustion consumption by public passenger transport,0.05879627999999999,TJ,CH4,10.0,kg/TJ,0.5879627999999999,kg -cc48c8e0-d322-3ed4-b4a6-e227b80d9a65,SESCO,II.1.1,Capital Federal,AR-C,annual,2022,bioetanol combustion consumption by public passenger transport,0.05879627999999999,TJ,N2O,0.6,kg/TJ,0.035277767999999994,kg -57d873a8-d0af-3ebb-8b0c-0f3f8d9c3089,SESCO,II.1.1,Córdoba,AR-X,annual,2022,bioetanol combustion consumption by public passenger transport,0.005112719999999999,TJ,CH4,10.0,kg/TJ,0.0511272,kg -f9528dae-7f41-3885-b0f9-b04840e35eaa,SESCO,II.1.1,Córdoba,AR-X,annual,2022,bioetanol combustion consumption by public passenger transport,0.005112719999999999,TJ,N2O,0.6,kg/TJ,0.0030676319999999994,kg -4236db38-10d4-3728-941c-067a5620757b,SESCO,II.1.1,Entre Rios,AR-E,annual,2022,bioetanol combustion consumption by public passenger transport,0.043458119999999996,TJ,CH4,10.0,kg/TJ,0.43458119999999995,kg -f89416b5-3eaf-33b0-bb4a-957f5617ba79,SESCO,II.1.1,Entre Rios,AR-E,annual,2022,bioetanol combustion consumption by public passenger transport,0.043458119999999996,TJ,N2O,0.6,kg/TJ,0.026074871999999995,kg -e1de8c31-4627-3daa-b643-904fa9fbd723,SESCO,II.1.1,Catamarca,AR-K,annual,2022,bioetanol combustion consumption by to the public,8.288102574,TJ,CH4,10.0,kg/TJ,82.88102574,kg -25078f61-619c-3639-b5b3-390bce1343eb,SESCO,II.1.1,Catamarca,AR-K,annual,2022,bioetanol combustion consumption by to the public,8.288102574,TJ,N2O,0.6,kg/TJ,4.9728615444,kg -f877eb9b-4f95-3acc-8b56-3ef78c740e73,SESCO,II.1.1,Chaco,AR-H,annual,2022,bioetanol combustion consumption by to the public,6.5363313203999995,TJ,CH4,10.0,kg/TJ,65.363313204,kg -a3c5c8f8-d8ff-30f1-a85e-d76e07ef1886,SESCO,II.1.1,Chaco,AR-H,annual,2022,bioetanol combustion consumption by to the public,6.5363313203999995,TJ,N2O,0.6,kg/TJ,3.9217987922399997,kg -e5ad3c26-943f-3ea6-a7e7-ac0bdf45fb04,SESCO,II.1.1,Jujuy,AR-Y,annual,2022,bioetanol combustion consumption by to the public,28.983063826800002,TJ,CH4,10.0,kg/TJ,289.83063826800003,kg -9ba97aab-2513-3627-91dc-70077d40f434,SESCO,II.1.1,Jujuy,AR-Y,annual,2022,bioetanol combustion consumption by to the public,28.983063826800002,TJ,N2O,0.6,kg/TJ,17.38983829608,kg -701b7a4b-5f0e-359e-9694-bba429a10809,SESCO,II.1.1,La Rioja,AR-F,annual,2022,bioetanol combustion consumption by to the public,34.886159211599995,TJ,CH4,10.0,kg/TJ,348.86159211599994,kg -3e4161c8-2e35-36ca-816e-737767053958,SESCO,II.1.1,La Rioja,AR-F,annual,2022,bioetanol combustion consumption by to the public,34.886159211599995,TJ,N2O,0.6,kg/TJ,20.931695526959995,kg -3c986197-9407-3cd3-aac7-31040d1ee76a,SESCO,II.1.1,Salta,AR-A,annual,2022,bioetanol combustion consumption by to the public,89.2185489432,TJ,CH4,10.0,kg/TJ,892.185489432,kg -d1c733d5-31a8-3e12-a85e-8a7b0dfc2188,SESCO,II.1.1,Salta,AR-A,annual,2022,bioetanol combustion consumption by to the public,89.2185489432,TJ,N2O,0.6,kg/TJ,53.53112936592,kg -71fa5d90-8185-3334-8806-8d2232a7beef,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2022,bioetanol combustion consumption by to the public,23.890615761599996,TJ,CH4,10.0,kg/TJ,238.90615761599997,kg -636ffedf-7e00-3ad1-8088-647e017348bc,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2022,bioetanol combustion consumption by to the public,23.890615761599996,TJ,N2O,0.6,kg/TJ,14.334369456959998,kg -d319cf88-cf60-3049-8d17-a23d0302b604,SESCO,II.1.1,Tucuman,AR-T,annual,2022,bioetanol combustion consumption by to the public,155.65821752519997,TJ,CH4,10.0,kg/TJ,1556.5821752519996,kg -b80a367f-2eb9-34c1-9267-084111e74381,SESCO,II.1.1,Tucuman,AR-T,annual,2022,bioetanol combustion consumption by to the public,155.65821752519997,TJ,N2O,0.6,kg/TJ,93.39493051511998,kg -e3f4848b-2140-3bea-b818-cc35b18b954e,SESCO,II.1.1,Catamarca,AR-K,annual,2022,bioetanol combustion consumption by to the public,1.1375546364,TJ,CH4,10.0,kg/TJ,11.375546364,kg -01bb8db0-e39d-3759-bda8-ef9e6defc399,SESCO,II.1.1,Catamarca,AR-K,annual,2022,bioetanol combustion consumption by to the public,1.1375546364,TJ,N2O,0.6,kg/TJ,0.68253278184,kg -5de1c5be-01ed-3c31-be6e-529dfa534b34,SESCO,II.1.1,Chaco,AR-H,annual,2022,bioetanol combustion consumption by to the public,0.255636,TJ,CH4,10.0,kg/TJ,2.5563599999999997,kg -946c3e84-3751-39b1-bdb0-6d1b1a376c40,SESCO,II.1.1,Chaco,AR-H,annual,2022,bioetanol combustion consumption by to the public,0.255636,TJ,N2O,0.6,kg/TJ,0.15338159999999998,kg -1c13224d-26b7-3cb0-9e17-4ce97f5b5f26,SESCO,II.1.1,Jujuy,AR-Y,annual,2022,bioetanol combustion consumption by to the public,1.9428847271999998,TJ,CH4,10.0,kg/TJ,19.428847272,kg -aa226020-b03b-36a8-809e-5c3208c7cfe8,SESCO,II.1.1,Jujuy,AR-Y,annual,2022,bioetanol combustion consumption by to the public,1.9428847271999998,TJ,N2O,0.6,kg/TJ,1.1657308363199999,kg -bc806051-eb81-3d24-944d-945180c81d8e,SESCO,II.1.1,La Rioja,AR-F,annual,2022,bioetanol combustion consumption by to the public,6.196437694799998,TJ,CH4,10.0,kg/TJ,61.96437694799998,kg -1a68c3d7-2052-3991-9242-cab0a96e502f,SESCO,II.1.1,La Rioja,AR-F,annual,2022,bioetanol combustion consumption by to the public,6.196437694799998,TJ,N2O,0.6,kg/TJ,3.717862616879999,kg -7182fbbd-6b58-301d-b8ae-7ebae7a742da,SESCO,II.1.1,Salta,AR-A,annual,2022,bioetanol combustion consumption by to the public,7.894167498000001,TJ,CH4,10.0,kg/TJ,78.94167498,kg -732fb766-f02d-39cd-876c-3d7027aa90f0,SESCO,II.1.1,Salta,AR-A,annual,2022,bioetanol combustion consumption by to the public,7.894167498000001,TJ,N2O,0.6,kg/TJ,4.7365004988,kg -5971b131-482f-30c9-ba35-bb1922de3419,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2022,bioetanol combustion consumption by to the public,3.356628498,TJ,CH4,10.0,kg/TJ,33.56628498,kg -cd4a130d-f318-3a6e-85d0-07c3f2429246,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2022,bioetanol combustion consumption by to the public,3.356628498,TJ,N2O,0.6,kg/TJ,2.0139770988,kg -95c5b1f1-763b-38c9-917e-2a6396587a4f,SESCO,II.1.1,Tucuman,AR-T,annual,2022,bioetanol combustion consumption by to the public,16.8123616848,TJ,CH4,10.0,kg/TJ,168.12361684799998,kg -7600ceee-7d83-3661-a4c7-887b547c08cb,SESCO,II.1.1,Tucuman,AR-T,annual,2022,bioetanol combustion consumption by to the public,16.8123616848,TJ,N2O,0.6,kg/TJ,10.08741701088,kg -5f3a703e-2a41-3b03-909c-4bce0b7634f5,SESCO,II.5.1,Entre Rios,AR-E,annual,2022,bioetanol combustion consumption by agriculture machines,0.14826888,TJ,CH4,10.0,kg/TJ,1.4826888,kg -e858175f-77b1-38da-be14-65f4afdc5867,SESCO,II.5.1,Entre Rios,AR-E,annual,2022,bioetanol combustion consumption by agriculture machines,0.14826888,TJ,N2O,0.6,kg/TJ,0.08896132799999999,kg -097ed94c-ff0e-3eef-ab42-724e9273e0dd,SESCO,II.5.1,Entre Rios,AR-E,annual,2022,bioetanol combustion consumption by agriculture machines,0.0127818,TJ,CH4,10.0,kg/TJ,0.127818,kg -b285bb1d-0316-3725-87b2-dd85fa01dbbb,SESCO,II.5.1,Entre Rios,AR-E,annual,2022,bioetanol combustion consumption by agriculture machines,0.0127818,TJ,N2O,0.6,kg/TJ,0.007669079999999999,kg -8f1ba521-db6f-3bb9-b3a7-bbc87ed1dc26,SESCO,II.5.1,Santa Fe,AR-S,annual,2022,bioetanol combustion consumption by agriculture machines,0.2428542,TJ,CH4,10.0,kg/TJ,2.4285419999999998,kg -b9e8d946-d831-38fe-98d2-2dfd35a11394,SESCO,II.5.1,Santa Fe,AR-S,annual,2022,bioetanol combustion consumption by agriculture machines,0.2428542,TJ,N2O,0.6,kg/TJ,0.14571251999999998,kg -ea0c610c-79b1-3cf8-a102-387ed20e5ef4,SESCO,II.5.1,Santa Fe,AR-S,annual,2022,bioetanol combustion consumption by agriculture machines,0.10992348,TJ,CH4,10.0,kg/TJ,1.0992348,kg -f1ce8b51-c064-339f-a2d8-f8175c7631b0,SESCO,II.5.1,Santa Fe,AR-S,annual,2022,bioetanol combustion consumption by agriculture machines,0.10992348,TJ,N2O,0.6,kg/TJ,0.065954088,kg -3bd659f9-ca97-37ef-baee-6efeea7976b3,SESCO,II.5.1,Tucuman,AR-T,annual,2022,bioetanol combustion consumption by agriculture machines,0.030676319999999997,TJ,CH4,10.0,kg/TJ,0.30676319999999996,kg -bea3418d-d6ae-3698-8579-91df148ae3d8,SESCO,II.5.1,Tucuman,AR-T,annual,2022,bioetanol combustion consumption by agriculture machines,0.030676319999999997,TJ,N2O,0.6,kg/TJ,0.018405791999999997,kg -210e0a35-df1d-3779-9888-9b96f1cc6235,SESCO,II.1.1,Buenos Aires,AR-B,annual,2022,bioetanol combustion consumption by to the public,1584.9227491199997,TJ,CH4,10.0,kg/TJ,15849.227491199998,kg -00daa4ce-f395-376f-9145-2f2ec2de523e,SESCO,II.1.1,Buenos Aires,AR-B,annual,2022,bioetanol combustion consumption by to the public,1584.9227491199997,TJ,N2O,0.6,kg/TJ,950.9536494719998,kg -4a72b1c1-317d-3b48-b034-8abd0a01ab83,SESCO,II.1.1,Capital Federal,AR-C,annual,2022,bioetanol combustion consumption by to the public,417.84726744,TJ,CH4,10.0,kg/TJ,4178.4726744,kg -ee8b1c70-c0bc-3ba4-af1c-813e1d5f1221,SESCO,II.1.1,Capital Federal,AR-C,annual,2022,bioetanol combustion consumption by to the public,417.84726744,TJ,N2O,0.6,kg/TJ,250.70836046399998,kg -73fce036-23c5-3c30-ad55-bca26a089f07,SESCO,II.1.1,Catamarca,AR-K,annual,2022,bioetanol combustion consumption by to the public,10.75460652,TJ,CH4,10.0,kg/TJ,107.54606519999999,kg -d772879f-9eb3-395f-919a-ee1401a87b1f,SESCO,II.1.1,Catamarca,AR-K,annual,2022,bioetanol combustion consumption by to the public,10.75460652,TJ,N2O,0.6,kg/TJ,6.452763911999999,kg -150e8016-d366-3778-973b-1dcba3c7a2cd,SESCO,II.1.1,Chaco,AR-H,annual,2022,bioetanol combustion consumption by to the public,95.15283191999998,TJ,CH4,10.0,kg/TJ,951.5283191999998,kg -fd88978f-d3e5-3d4e-9985-2e16c4afe9f4,SESCO,II.1.1,Chaco,AR-H,annual,2022,bioetanol combustion consumption by to the public,95.15283191999998,TJ,N2O,0.6,kg/TJ,57.09169915199999,kg -6139f7e5-3994-306f-92d7-1071a3477d52,SESCO,II.1.1,Corrientes,AR-W,annual,2022,bioetanol combustion consumption by to the public,105.16609403999998,TJ,CH4,10.0,kg/TJ,1051.6609403999998,kg -813695a5-88b9-3bbf-a589-51cf93ecfb42,SESCO,II.1.1,Corrientes,AR-W,annual,2022,bioetanol combustion consumption by to the public,105.16609403999998,TJ,N2O,0.6,kg/TJ,63.09965642399998,kg -1933929b-0fe5-3bac-962d-2e05d756e355,SESCO,II.1.1,Córdoba,AR-X,annual,2022,bioetanol combustion consumption by to the public,455.00651639999995,TJ,CH4,10.0,kg/TJ,4550.065164,kg -3259c365-5ab5-3825-b10f-c565993135ab,SESCO,II.1.1,Córdoba,AR-X,annual,2022,bioetanol combustion consumption by to the public,455.00651639999995,TJ,N2O,0.6,kg/TJ,273.00390983999995,kg -6e74c627-309b-3465-9a1d-d60dd4600462,SESCO,II.1.1,Entre Rios,AR-E,annual,2022,bioetanol combustion consumption by to the public,150.5312586,TJ,CH4,10.0,kg/TJ,1505.312586,kg -c88ead1e-9bbd-3ec9-a4a1-d8aac026d731,SESCO,II.1.1,Entre Rios,AR-E,annual,2022,bioetanol combustion consumption by to the public,150.5312586,TJ,N2O,0.6,kg/TJ,90.31875516,kg -c6f19392-7f70-3722-a3f7-cf2e161296c0,SESCO,II.1.1,Formosa,AR-P,annual,2022,bioetanol combustion consumption by to the public,51.132312719999994,TJ,CH4,10.0,kg/TJ,511.32312719999993,kg -e5c32743-ab73-365b-a9da-683e1a598471,SESCO,II.1.1,Formosa,AR-P,annual,2022,bioetanol combustion consumption by to the public,51.132312719999994,TJ,N2O,0.6,kg/TJ,30.679387631999994,kg -4e2b85de-e38d-3dba-82ff-565c9ef28566,SESCO,II.1.1,Jujuy,AR-Y,annual,2022,bioetanol combustion consumption by to the public,32.458102919999995,TJ,CH4,10.0,kg/TJ,324.58102919999993,kg -c7f07697-fe83-3c2b-bb9d-59de701b9809,SESCO,II.1.1,Jujuy,AR-Y,annual,2022,bioetanol combustion consumption by to the public,32.458102919999995,TJ,N2O,0.6,kg/TJ,19.474861751999995,kg -bf17080e-80f3-32c8-aa73-6caa7563420d,SESCO,II.1.1,La Pampa,AR-L,annual,2022,bioetanol combustion consumption by to the public,35.92452708,TJ,CH4,10.0,kg/TJ,359.24527079999996,kg -a2713099-40e1-35c0-a0d4-2d66a45117c7,SESCO,II.1.1,La Pampa,AR-L,annual,2022,bioetanol combustion consumption by to the public,35.92452708,TJ,N2O,0.6,kg/TJ,21.554716248,kg -a67a5ea6-499e-3a4f-9894-9a481e6d9ea2,SESCO,II.1.1,La Rioja,AR-F,annual,2022,bioetanol combustion consumption by to the public,26.455769639999996,TJ,CH4,10.0,kg/TJ,264.55769639999994,kg -1994f6b5-9534-3a10-81a7-376795a44d69,SESCO,II.1.1,La Rioja,AR-F,annual,2022,bioetanol combustion consumption by to the public,26.455769639999996,TJ,N2O,0.6,kg/TJ,15.873461783999996,kg -c2fbe091-e9bb-35e5-a2fa-93116c314ea8,SESCO,II.1.1,Mendoza,AR-M,annual,2022,bioetanol combustion consumption by to the public,150.35231339999999,TJ,CH4,10.0,kg/TJ,1503.5231339999998,kg -07789b6f-2cdc-3a93-af1b-f4cc97783352,SESCO,II.1.1,Mendoza,AR-M,annual,2022,bioetanol combustion consumption by to the public,150.35231339999999,TJ,N2O,0.6,kg/TJ,90.21138803999999,kg -3ba6d072-fdae-3dc4-973e-f4a710e5adc5,SESCO,II.1.1,Misiones,AR-N,annual,2022,bioetanol combustion consumption by to the public,192.42744263999998,TJ,CH4,10.0,kg/TJ,1924.2744263999998,kg -17be2a6d-8f3f-3aa0-bedb-0f092ba14dfe,SESCO,II.1.1,Misiones,AR-N,annual,2022,bioetanol combustion consumption by to the public,192.42744263999998,TJ,N2O,0.6,kg/TJ,115.45646558399999,kg -cae90fee-8900-30d1-b122-c6c9b61add71,SESCO,II.1.1,Neuquén,AR-Q,annual,2022,bioetanol combustion consumption by to the public,58.80394907999999,TJ,CH4,10.0,kg/TJ,588.0394907999998,kg -d156bbfa-c4e4-3bb8-8070-cd6b8a081110,SESCO,II.1.1,Neuquén,AR-Q,annual,2022,bioetanol combustion consumption by to the public,58.80394907999999,TJ,N2O,0.6,kg/TJ,35.28236944799999,kg -38d5594b-85b0-3b48-9ef7-e63df2f51e09,SESCO,II.1.1,Rio Negro,AR-R,annual,2022,bioetanol combustion consumption by to the public,30.620080079999997,TJ,CH4,10.0,kg/TJ,306.20080079999997,kg -27b95768-1f47-3690-8447-9a7bc69d7587,SESCO,II.1.1,Rio Negro,AR-R,annual,2022,bioetanol combustion consumption by to the public,30.620080079999997,TJ,N2O,0.6,kg/TJ,18.372048047999996,kg -b3c324f9-bd84-36a4-be47-7c16d37f35c1,SESCO,II.1.1,Salta,AR-A,annual,2022,bioetanol combustion consumption by to the public,29.451823559999998,TJ,CH4,10.0,kg/TJ,294.51823559999997,kg -04b391ea-47b7-3f42-999b-acdc54dfbb26,SESCO,II.1.1,Salta,AR-A,annual,2022,bioetanol combustion consumption by to the public,29.451823559999998,TJ,N2O,0.6,kg/TJ,17.671094135999997,kg -a7257049-bfc4-38e9-aa56-4249d6687f21,SESCO,II.1.1,San Juan,AR-J,annual,2022,bioetanol combustion consumption by to the public,32.557800959999994,TJ,CH4,10.0,kg/TJ,325.5780096,kg -233c0291-c739-3348-bffc-6b6b09222ae3,SESCO,II.1.1,San Juan,AR-J,annual,2022,bioetanol combustion consumption by to the public,32.557800959999994,TJ,N2O,0.6,kg/TJ,19.534680575999996,kg -8f0ba767-99a2-3dbe-8e52-9075de0d1bce,SESCO,II.1.1,San Luis,AR-D,annual,2022,bioetanol combustion consumption by to the public,32.87990232,TJ,CH4,10.0,kg/TJ,328.79902319999997,kg -2b6d0f6d-fdcb-3c02-9f9b-77a4dc060ada,SESCO,II.1.1,San Luis,AR-D,annual,2022,bioetanol combustion consumption by to the public,32.87990232,TJ,N2O,0.6,kg/TJ,19.727941391999998,kg -81088fcb-69cb-3f49-bc86-5b66c54f3046,SESCO,II.1.1,Santa Fe,AR-S,annual,2022,bioetanol combustion consumption by to the public,318.43553976,TJ,CH4,10.0,kg/TJ,3184.3553976,kg -cd6a7f65-f6ce-3f71-887a-b8093b4dd7fb,SESCO,II.1.1,Santa Fe,AR-S,annual,2022,bioetanol combustion consumption by to the public,318.43553976,TJ,N2O,0.6,kg/TJ,191.06132385599997,kg -9cbdb989-2d51-3f39-a192-5b2cadc32a6a,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2022,bioetanol combustion consumption by to the public,58.108619159999996,TJ,CH4,10.0,kg/TJ,581.0861916,kg -5b6d59d2-9162-3ddb-bc82-a525a1563b49,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2022,bioetanol combustion consumption by to the public,58.108619159999996,TJ,N2O,0.6,kg/TJ,34.865171495999995,kg -cc540a7b-ca19-38c6-9523-01e8d6a8bf77,SESCO,II.1.1,Tucuman,AR-T,annual,2022,bioetanol combustion consumption by to the public,108.75011076,TJ,CH4,10.0,kg/TJ,1087.5011076,kg -b68b1a69-fd60-302a-b355-7b57bba60fbf,SESCO,II.1.1,Tucuman,AR-T,annual,2022,bioetanol combustion consumption by to the public,108.75011076,TJ,N2O,0.6,kg/TJ,65.250066456,kg -4d2c2afe-0425-3d38-bf55-1af75b6fd717,SESCO,II.1.1,Buenos Aires,AR-B,annual,2022,bioetanol combustion consumption by to the public,784.6644765599999,TJ,CH4,10.0,kg/TJ,7846.644765599999,kg -a07a0ae2-3582-3151-adfc-c9a2ed84ce83,SESCO,II.1.1,Buenos Aires,AR-B,annual,2022,bioetanol combustion consumption by to the public,784.6644765599999,TJ,N2O,0.6,kg/TJ,470.7986859359999,kg -da2e634e-f7b2-3fec-b238-d5ba91e8d49b,SESCO,II.1.1,Capital Federal,AR-C,annual,2022,bioetanol combustion consumption by to the public,307.17988668,TJ,CH4,10.0,kg/TJ,3071.7988668,kg -91473124-336f-388f-b7b6-1945c832446e,SESCO,II.1.1,Capital Federal,AR-C,annual,2022,bioetanol combustion consumption by to the public,307.17988668,TJ,N2O,0.6,kg/TJ,184.307932008,kg -a474a019-4013-3465-a73a-690af7fa10bb,SESCO,II.1.1,Catamarca,AR-K,annual,2022,bioetanol combustion consumption by to the public,4.02371064,TJ,CH4,10.0,kg/TJ,40.2371064,kg -670c1a3f-d5bc-3abb-8424-3e46381577f3,SESCO,II.1.1,Catamarca,AR-K,annual,2022,bioetanol combustion consumption by to the public,4.02371064,TJ,N2O,0.6,kg/TJ,2.414226384,kg -c05cee72-aacb-3518-b906-aec4f357b8e8,SESCO,II.1.1,Chaco,AR-H,annual,2022,bioetanol combustion consumption by to the public,28.275897959999998,TJ,CH4,10.0,kg/TJ,282.7589796,kg -aed0be25-ebd9-3534-87fd-02cd9b509d51,SESCO,II.1.1,Chaco,AR-H,annual,2022,bioetanol combustion consumption by to the public,28.275897959999998,TJ,N2O,0.6,kg/TJ,16.965538776,kg -7493ea71-bfbb-3398-8cc7-f2cfea672c97,SESCO,II.1.1,Corrientes,AR-W,annual,2022,bioetanol combustion consumption by to the public,34.306351199999995,TJ,CH4,10.0,kg/TJ,343.06351199999995,kg -78cfa121-ae9c-354c-865a-7d7438e1a0dc,SESCO,II.1.1,Corrientes,AR-W,annual,2022,bioetanol combustion consumption by to the public,34.306351199999995,TJ,N2O,0.6,kg/TJ,20.583810719999995,kg -099ce4c4-1b77-3393-a638-727a34687717,SESCO,II.1.1,Córdoba,AR-X,annual,2022,bioetanol combustion consumption by to the public,171.49085424,TJ,CH4,10.0,kg/TJ,1714.9085424,kg -a28320aa-482d-327f-a44b-d9df5b6bf2d6,SESCO,II.1.1,Córdoba,AR-X,annual,2022,bioetanol combustion consumption by to the public,171.49085424,TJ,N2O,0.6,kg/TJ,102.894512544,kg -ef1d1dbb-b4cf-3903-863f-9d96e2310dad,SESCO,II.1.1,Entre Rios,AR-E,annual,2022,bioetanol combustion consumption by to the public,50.99171292,TJ,CH4,10.0,kg/TJ,509.9171292,kg -62a20ac1-aa09-3139-8efe-e88740f34971,SESCO,II.1.1,Entre Rios,AR-E,annual,2022,bioetanol combustion consumption by to the public,50.99171292,TJ,N2O,0.6,kg/TJ,30.595027751999996,kg -90839ef2-7b48-3c24-a78b-7a7d70ce4f4c,SESCO,II.1.1,Formosa,AR-P,annual,2022,bioetanol combustion consumption by to the public,14.821775279999999,TJ,CH4,10.0,kg/TJ,148.2177528,kg -61439c84-8856-329e-83fc-53bac888364a,SESCO,II.1.1,Formosa,AR-P,annual,2022,bioetanol combustion consumption by to the public,14.821775279999999,TJ,N2O,0.6,kg/TJ,8.893065168,kg -38ac542b-d7e3-3d9e-ab46-1c630285ef96,SESCO,II.1.1,Jujuy,AR-Y,annual,2022,bioetanol combustion consumption by to the public,8.139450239999999,TJ,CH4,10.0,kg/TJ,81.3945024,kg -8f8d8a21-9920-3ad8-8981-a3d42fbd74d7,SESCO,II.1.1,Jujuy,AR-Y,annual,2022,bioetanol combustion consumption by to the public,8.139450239999999,TJ,N2O,0.6,kg/TJ,4.883670143999999,kg -02a102d9-b155-32c5-ad32-4175b39f9371,SESCO,II.1.1,La Pampa,AR-L,annual,2022,bioetanol combustion consumption by to the public,17.633771279999998,TJ,CH4,10.0,kg/TJ,176.33771279999996,kg -1d0879cc-ee5c-3900-924e-dbae26ed1843,SESCO,II.1.1,La Pampa,AR-L,annual,2022,bioetanol combustion consumption by to the public,17.633771279999998,TJ,N2O,0.6,kg/TJ,10.580262767999999,kg -66e42054-33af-37ee-bf41-26cc45dbfeca,SESCO,II.1.1,La Rioja,AR-F,annual,2022,bioetanol combustion consumption by to the public,8.8066602,TJ,CH4,10.0,kg/TJ,88.06660199999999,kg -359c321f-e0a8-3fd9-9840-8140fd30d80d,SESCO,II.1.1,La Rioja,AR-F,annual,2022,bioetanol combustion consumption by to the public,8.8066602,TJ,N2O,0.6,kg/TJ,5.283996119999999,kg -3a5789e9-4ca1-358d-95a7-8c6517f4708a,SESCO,II.1.1,Mendoza,AR-M,annual,2022,bioetanol combustion consumption by to the public,64.48418099999999,TJ,CH4,10.0,kg/TJ,644.8418099999999,kg -112745b1-abf7-3f6b-9931-2a48e96734e3,SESCO,II.1.1,Mendoza,AR-M,annual,2022,bioetanol combustion consumption by to the public,64.48418099999999,TJ,N2O,0.6,kg/TJ,38.690508599999994,kg -0373cecb-46f8-3caf-8299-948ea3576545,SESCO,II.1.1,Misiones,AR-N,annual,2022,bioetanol combustion consumption by to the public,32.38908119999999,TJ,CH4,10.0,kg/TJ,323.8908119999999,kg -2ea6705e-55dc-3ec2-aeb2-078bb30fe0a7,SESCO,II.1.1,Misiones,AR-N,annual,2022,bioetanol combustion consumption by to the public,32.38908119999999,TJ,N2O,0.6,kg/TJ,19.433448719999994,kg -ecd75678-75f2-3e92-80de-f30e636a5c4a,SESCO,II.1.1,Neuquén,AR-Q,annual,2022,bioetanol combustion consumption by to the public,28.984009679999996,TJ,CH4,10.0,kg/TJ,289.84009679999997,kg -d7ebfe86-e325-3ece-9534-21f6f40c12b5,SESCO,II.1.1,Neuquén,AR-Q,annual,2022,bioetanol combustion consumption by to the public,28.984009679999996,TJ,N2O,0.6,kg/TJ,17.390405807999997,kg -5d5051f8-6ed9-33b3-8164-fbd1ce7a082d,SESCO,II.1.1,Rio Negro,AR-R,annual,2022,bioetanol combustion consumption by to the public,16.422056639999997,TJ,CH4,10.0,kg/TJ,164.22056639999997,kg -8b64c66b-7ac1-34f9-87e4-9f5c170bae42,SESCO,II.1.1,Rio Negro,AR-R,annual,2022,bioetanol combustion consumption by to the public,16.422056639999997,TJ,N2O,0.6,kg/TJ,9.853233983999997,kg -68b4bf09-7614-30b7-be1f-553dc0432529,SESCO,II.1.1,Salta,AR-A,annual,2022,bioetanol combustion consumption by to the public,11.810383199999999,TJ,CH4,10.0,kg/TJ,118.10383199999998,kg -aa59fd3c-ab46-37fa-a85e-919ca4b4292d,SESCO,II.1.1,Salta,AR-A,annual,2022,bioetanol combustion consumption by to the public,11.810383199999999,TJ,N2O,0.6,kg/TJ,7.086229919999999,kg -c93a0c56-0bde-39bd-b597-904fd9e4b975,SESCO,II.1.1,San Juan,AR-J,annual,2022,bioetanol combustion consumption by to the public,10.348145279999999,TJ,CH4,10.0,kg/TJ,103.48145279999999,kg -5bce3bbe-7d86-379b-857e-ce69123bd4e4,SESCO,II.1.1,San Juan,AR-J,annual,2022,bioetanol combustion consumption by to the public,10.348145279999999,TJ,N2O,0.6,kg/TJ,6.2088871679999995,kg -44a7a99c-30df-32da-ba19-5f3c8e51feef,SESCO,II.1.1,San Luis,AR-D,annual,2022,bioetanol combustion consumption by to the public,13.510362599999999,TJ,CH4,10.0,kg/TJ,135.103626,kg -3148ce9a-1ebe-33aa-8892-d7ccbb53c845,SESCO,II.1.1,San Luis,AR-D,annual,2022,bioetanol combustion consumption by to the public,13.510362599999999,TJ,N2O,0.6,kg/TJ,8.10621756,kg -1684e083-6bea-353d-af1c-97ab2222001d,SESCO,II.1.1,Santa Fe,AR-S,annual,2022,bioetanol combustion consumption by to the public,154.83361248,TJ,CH4,10.0,kg/TJ,1548.3361248,kg -febbb198-3d1b-3dd1-b474-5b1e5f4c33cf,SESCO,II.1.1,Santa Fe,AR-S,annual,2022,bioetanol combustion consumption by to the public,154.83361248,TJ,N2O,0.6,kg/TJ,92.900167488,kg -05820ce9-710b-32f8-898a-60ee1d903c52,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2022,bioetanol combustion consumption by to the public,18.487595519999996,TJ,CH4,10.0,kg/TJ,184.87595519999996,kg -db1b2833-882b-31c1-91cc-cbd6411d1d9e,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2022,bioetanol combustion consumption by to the public,18.487595519999996,TJ,N2O,0.6,kg/TJ,11.092557311999997,kg -566c126d-33e9-3933-afd5-5004d763a208,SESCO,II.1.1,Tucuman,AR-T,annual,2022,bioetanol combustion consumption by to the public,26.23847904,TJ,CH4,10.0,kg/TJ,262.38479040000004,kg -f8472865-de14-3687-8e58-157e0fad2311,SESCO,II.1.1,Tucuman,AR-T,annual,2022,bioetanol combustion consumption by to the public,26.23847904,TJ,N2O,0.6,kg/TJ,15.743087424,kg -f86972e1-33d6-3bd1-92f5-cb3b7d873079,SESCO,I.3.1,Buenos Aires,AR-B,annual,2022,bioetanol combustion consumption by petrochemical industries,3.2184572399999993,TJ,CH4,10.0,kg/TJ,32.18457239999999,kg -ba2671d8-5e28-3ea0-8e3b-20e3b2f2a004,SESCO,I.3.1,Buenos Aires,AR-B,annual,2022,bioetanol combustion consumption by petrochemical industries,3.2184572399999993,TJ,N2O,0.6,kg/TJ,1.9310743439999996,kg -21523c66-efb4-39a3-ac41-4bf6dddcfec8,SESCO,I.3.1,Misiones,AR-N,annual,2022,bioetanol combustion consumption by petrochemical industries,0.0511272,TJ,CH4,10.0,kg/TJ,0.511272,kg -b2ee929d-2f3f-3169-943c-eeaf50c12ef2,SESCO,I.3.1,Misiones,AR-N,annual,2022,bioetanol combustion consumption by petrochemical industries,0.0511272,TJ,N2O,0.6,kg/TJ,0.030676319999999997,kg -9a515889-e121-3450-bc8d-d44986b4fe59,SESCO,I.3.1,Buenos Aires,AR-B,annual,2022,bioetanol combustion consumption by petrochemical industries,1.0378821599999999,TJ,CH4,10.0,kg/TJ,10.378821599999998,kg -6fc06b79-2828-3d74-a079-4dc37f0b1e6a,SESCO,I.3.1,Buenos Aires,AR-B,annual,2022,bioetanol combustion consumption by petrochemical industries,1.0378821599999999,TJ,N2O,0.6,kg/TJ,0.6227292959999999,kg -37a7f7f2-f5bf-34cd-a833-fe01675dc74c,SESCO,I.3.1,Chubut,AR-U,annual,2022,bioetanol combustion consumption by petrochemical industries,0.040901759999999995,TJ,CH4,10.0,kg/TJ,0.4090176,kg -8d73a788-84d6-3742-8a32-386203bbfeec,SESCO,I.3.1,Chubut,AR-U,annual,2022,bioetanol combustion consumption by petrochemical industries,0.040901759999999995,TJ,N2O,0.6,kg/TJ,0.024541055999999995,kg -30c1a80b-c04d-3a7c-9d39-664f1fbbce7a,SESCO,I.3.1,Córdoba,AR-X,annual,2022,bioetanol combustion consumption by petrochemical industries,0.16105067999999997,TJ,CH4,10.0,kg/TJ,1.6105067999999998,kg -688898a2-a812-3e6b-81b1-d157fbcec19f,SESCO,I.3.1,Córdoba,AR-X,annual,2022,bioetanol combustion consumption by petrochemical industries,0.16105067999999997,TJ,N2O,0.6,kg/TJ,0.09663040799999999,kg -a2c232c5-a5d9-30ad-a4df-39958b3d84ee,SESCO,I.3.1,Entre Rios,AR-E,annual,2022,bioetanol combustion consumption by petrochemical industries,0.15593796,TJ,CH4,10.0,kg/TJ,1.5593795999999998,kg -ba24b3ec-b8ec-393b-9bb9-373b14c8f1c1,SESCO,I.3.1,Entre Rios,AR-E,annual,2022,bioetanol combustion consumption by petrochemical industries,0.15593796,TJ,N2O,0.6,kg/TJ,0.09356277599999999,kg -95a46a95-d302-35ef-9367-982858d423e6,SESCO,I.3.1,La Pampa,AR-L,annual,2022,bioetanol combustion consumption by petrochemical industries,0.09969803999999999,TJ,CH4,10.0,kg/TJ,0.9969803999999999,kg -40285db6-c12f-3ea7-aea1-4ec06f8ebf35,SESCO,I.3.1,La Pampa,AR-L,annual,2022,bioetanol combustion consumption by petrochemical industries,0.09969803999999999,TJ,N2O,0.6,kg/TJ,0.05981882399999999,kg -9bc18b99-e458-30a1-8a47-b7a24bebac09,SESCO,I.3.1,Misiones,AR-N,annual,2022,bioetanol combustion consumption by petrochemical industries,0.08691623999999999,TJ,CH4,10.0,kg/TJ,0.8691623999999999,kg -7f724236-debe-35a0-b52e-7778678bf585,SESCO,I.3.1,Misiones,AR-N,annual,2022,bioetanol combustion consumption by petrochemical industries,0.08691623999999999,TJ,N2O,0.6,kg/TJ,0.05214974399999999,kg -cb00e075-b686-3cda-aad2-571de358b69c,SESCO,I.3.1,Neuquén,AR-Q,annual,2022,bioetanol combustion consumption by petrochemical industries,0.10992348,TJ,CH4,10.0,kg/TJ,1.0992348,kg -43c688a2-353e-3245-b10d-17a3b07cfe9a,SESCO,I.3.1,Neuquén,AR-Q,annual,2022,bioetanol combustion consumption by petrochemical industries,0.10992348,TJ,N2O,0.6,kg/TJ,0.065954088,kg -7e3fb9a3-71d4-3e4d-8bd1-2d4eebb4c4bf,SESCO,I.3.1,Rio Negro,AR-R,annual,2022,bioetanol combustion consumption by petrochemical industries,0.043458119999999996,TJ,CH4,10.0,kg/TJ,0.43458119999999995,kg -67b0881a-9912-3ac9-8857-fb9a17e17166,SESCO,I.3.1,Rio Negro,AR-R,annual,2022,bioetanol combustion consumption by petrochemical industries,0.043458119999999996,TJ,N2O,0.6,kg/TJ,0.026074871999999995,kg -6ddcb676-88e8-39d3-8515-d356844935d2,SESCO,I.3.1,San Juan,AR-J,annual,2022,bioetanol combustion consumption by petrochemical industries,0.10736712,TJ,CH4,10.0,kg/TJ,1.0736712,kg -e16d39db-7311-36f0-8a5a-6c8eae79322a,SESCO,I.3.1,San Juan,AR-J,annual,2022,bioetanol combustion consumption by petrochemical industries,0.10736712,TJ,N2O,0.6,kg/TJ,0.064420272,kg -e7b40c6a-f911-3a6b-a49a-24b370dcd052,SESCO,I.3.1,San Luis,AR-D,annual,2022,bioetanol combustion consumption by petrochemical industries,0.04857084,TJ,CH4,10.0,kg/TJ,0.4857084,kg -aa046745-862b-3343-bb9e-019ccabe5cd6,SESCO,I.3.1,San Luis,AR-D,annual,2022,bioetanol combustion consumption by petrochemical industries,0.04857084,TJ,N2O,0.6,kg/TJ,0.029142503999999996,kg -ab226297-2aad-3b0f-9ba6-2a8b2574c377,SESCO,I.3.1,Santa Fe,AR-S,annual,2022,bioetanol combustion consumption by petrochemical industries,0.063909,TJ,CH4,10.0,kg/TJ,0.6390899999999999,kg -f4aa843d-bda4-3cf9-a29a-7606601fe407,SESCO,I.3.1,Santa Fe,AR-S,annual,2022,bioetanol combustion consumption by petrochemical industries,0.063909,TJ,N2O,0.6,kg/TJ,0.038345399999999995,kg -8a9350b1-c711-3edd-835e-0954edf8b5c4,SESCO,I.3.1,Santiago del Estero,AR-G,annual,2022,bioetanol combustion consumption by petrochemical industries,0.04601448,TJ,CH4,10.0,kg/TJ,0.4601448,kg -e9a2472d-b334-3e8d-b0da-c2f8d9c09758,SESCO,I.3.1,Santiago del Estero,AR-G,annual,2022,bioetanol combustion consumption by petrochemical industries,0.04601448,TJ,N2O,0.6,kg/TJ,0.027608688000000003,kg -5640463a-286a-37fd-a226-a0337b056199,SESCO,I.3.1,Tucuman,AR-T,annual,2022,bioetanol combustion consumption by petrochemical industries,0.028119959999999996,TJ,CH4,10.0,kg/TJ,0.28119959999999994,kg -eb91e7d9-3618-3947-9a62-2eb705c8c603,SESCO,I.3.1,Tucuman,AR-T,annual,2022,bioetanol combustion consumption by petrochemical industries,0.028119959999999996,TJ,N2O,0.6,kg/TJ,0.016871975999999997,kg -68a7a813-fded-3a6f-8e84-5eb2b6ca4407,SESCO,II.5.1,Buenos Aires,AR-B,annual,2022,bioetanol combustion consumption by agriculture machines,1.9545826305599998,TJ,CH4,10.0,kg/TJ,19.5458263056,kg -1ec08e8d-3ffb-3cce-9a02-094e7e6a5a42,SESCO,II.5.1,Buenos Aires,AR-B,annual,2022,bioetanol combustion consumption by agriculture machines,1.9545826305599998,TJ,N2O,0.6,kg/TJ,1.1727495783359998,kg -2df02b7d-6f4e-3f76-a67f-8970ca0759d1,SESCO,II.5.1,Capital Federal,AR-C,annual,2022,bioetanol combustion consumption by agriculture machines,0.4855805819999999,TJ,CH4,10.0,kg/TJ,4.85580582,kg -f7d83025-efe5-33c2-9188-75ad617b5d03,SESCO,II.5.1,Capital Federal,AR-C,annual,2022,bioetanol combustion consumption by agriculture machines,0.4855805819999999,TJ,N2O,0.6,kg/TJ,0.29134834919999997,kg -0467fe22-d4b6-3c76-8c86-325325041168,SESCO,II.5.1,Córdoba,AR-X,annual,2022,bioetanol combustion consumption by agriculture machines,1.19574250272,TJ,CH4,10.0,kg/TJ,11.9574250272,kg -ed0bce86-35ac-3e7d-ac8e-ec3106696274,SESCO,II.5.1,Córdoba,AR-X,annual,2022,bioetanol combustion consumption by agriculture machines,1.19574250272,TJ,N2O,0.6,kg/TJ,0.7174455016319999,kg -586894d2-32bd-3e8b-bf33-067351faf5fc,SESCO,II.5.1,Santa Fe,AR-S,annual,2022,bioetanol combustion consumption by agriculture machines,7.72574938848,TJ,CH4,10.0,kg/TJ,77.2574938848,kg -c39bd251-703e-3b5c-855c-b2698e6ba632,SESCO,II.5.1,Santa Fe,AR-S,annual,2022,bioetanol combustion consumption by agriculture machines,7.72574938848,TJ,N2O,0.6,kg/TJ,4.635449633087999,kg -29394853-845a-37aa-9b00-fa142928b120,SESCO,II.5.1,Buenos Aires,AR-B,annual,2022,bioetanol combustion consumption by agriculture machines,0.69035268708,TJ,CH4,10.0,kg/TJ,6.9035268707999995,kg -4a8ca562-b3a9-3ab8-994d-9679e48decf6,SESCO,II.5.1,Buenos Aires,AR-B,annual,2022,bioetanol combustion consumption by agriculture machines,0.69035268708,TJ,N2O,0.6,kg/TJ,0.41421161224799996,kg -f84c2314-4dca-321f-8f78-51da55556f05,SESCO,II.5.1,Capital Federal,AR-C,annual,2022,bioetanol combustion consumption by agriculture machines,0.11708128799999999,TJ,CH4,10.0,kg/TJ,1.17081288,kg -eab87f8e-5b11-3c0c-be40-503b1d72f0a3,SESCO,II.5.1,Capital Federal,AR-C,annual,2022,bioetanol combustion consumption by agriculture machines,0.11708128799999999,TJ,N2O,0.6,kg/TJ,0.0702487728,kg -47966f69-0628-34aa-865d-8fe7fff0363b,SESCO,II.5.1,Córdoba,AR-X,annual,2022,bioetanol combustion consumption by agriculture machines,0.23122276199999997,TJ,CH4,10.0,kg/TJ,2.31222762,kg -b092aaa1-b956-37eb-a0ca-092942952dd8,SESCO,II.5.1,Córdoba,AR-X,annual,2022,bioetanol combustion consumption by agriculture machines,0.23122276199999997,TJ,N2O,0.6,kg/TJ,0.13873365719999997,kg -1bf69907-a6a4-3ab2-b29e-63ae0caff5fc,SESCO,II.5.1,Santa Fe,AR-S,annual,2022,bioetanol combustion consumption by agriculture machines,1.06062353856,TJ,CH4,10.0,kg/TJ,10.6062353856,kg -ed424fbf-2ad3-353e-b0ee-d24ef280db59,SESCO,II.5.1,Santa Fe,AR-S,annual,2022,bioetanol combustion consumption by agriculture machines,1.06062353856,TJ,N2O,0.6,kg/TJ,0.636374123136,kg -c0d764eb-ef9c-378d-8c5c-210315f694ad,SESCO,II.1.1,Buenos Aires,AR-B,annual,2022,bioetanol combustion consumption by to the public,435.6085601822399,TJ,CH4,10.0,kg/TJ,4356.0856018223985,kg -e217bc22-afba-3252-ac10-ee7aa60a2d8f,SESCO,II.1.1,Buenos Aires,AR-B,annual,2022,bioetanol combustion consumption by to the public,435.6085601822399,TJ,N2O,0.6,kg/TJ,261.36513610934395,kg -bc1af83d-fbaf-3bba-aae5-b4c5102f758c,SESCO,II.1.1,Capital Federal,AR-C,annual,2022,bioetanol combustion consumption by to the public,26.00704665648,TJ,CH4,10.0,kg/TJ,260.0704665648,kg -e4da01ce-bc03-3626-8d7a-abe1d63ac384,SESCO,II.1.1,Capital Federal,AR-C,annual,2022,bioetanol combustion consumption by to the public,26.00704665648,TJ,N2O,0.6,kg/TJ,15.604227993888,kg -6738f3f7-accc-3504-9b87-c30599b9022d,SESCO,II.1.1,Catamarca,AR-K,annual,2022,bioetanol combustion consumption by to the public,0.8529295139999999,TJ,CH4,10.0,kg/TJ,8.529295139999999,kg -0dc1d5f9-a554-37fd-b196-94763cb0919f,SESCO,II.1.1,Catamarca,AR-K,annual,2022,bioetanol combustion consumption by to the public,0.8529295139999999,TJ,N2O,0.6,kg/TJ,0.5117577083999999,kg -01394e0d-318f-3252-bd89-6b13f8a6c46a,SESCO,II.1.1,Chaco,AR-H,annual,2022,bioetanol combustion consumption by to the public,6.520663389959999,TJ,CH4,10.0,kg/TJ,65.20663389959999,kg -2f6778bc-ae23-3be1-b2e1-5d409aad7aaa,SESCO,II.1.1,Chaco,AR-H,annual,2022,bioetanol combustion consumption by to the public,6.520663389959999,TJ,N2O,0.6,kg/TJ,3.9123980339759994,kg -b702a31c-f4e2-31d4-9d83-f8615f40d2ed,SESCO,II.1.1,Chubut,AR-U,annual,2022,bioetanol combustion consumption by to the public,26.860259926439998,TJ,CH4,10.0,kg/TJ,268.6025992644,kg -394de330-d0fc-3a4a-ad04-33c0282b97d4,SESCO,II.1.1,Chubut,AR-U,annual,2022,bioetanol combustion consumption by to the public,26.860259926439998,TJ,N2O,0.6,kg/TJ,16.116155955864,kg -d2c05c71-7a52-3cff-9014-2d6575ef06a3,SESCO,II.1.1,Corrientes,AR-W,annual,2022,bioetanol combustion consumption by to the public,38.91347687556,TJ,CH4,10.0,kg/TJ,389.1347687556,kg -0629d0ce-f920-3c96-b2e6-7d6b73b6adee,SESCO,II.1.1,Corrientes,AR-W,annual,2022,bioetanol combustion consumption by to the public,38.91347687556,TJ,N2O,0.6,kg/TJ,23.348086125336,kg -74ca275c-9440-35a9-af4c-3ed45cbec473,SESCO,II.1.1,Córdoba,AR-X,annual,2022,bioetanol combustion consumption by to the public,80.03529601343999,TJ,CH4,10.0,kg/TJ,800.3529601343998,kg -78291fcf-cc70-3e53-991a-f4d6b19d5ad9,SESCO,II.1.1,Córdoba,AR-X,annual,2022,bioetanol combustion consumption by to the public,80.03529601343999,TJ,N2O,0.6,kg/TJ,48.021177608063994,kg -92107345-1323-3701-95f3-3b3f38c2779b,SESCO,II.1.1,Entre Rios,AR-E,annual,2022,bioetanol combustion consumption by to the public,63.25159623696,TJ,CH4,10.0,kg/TJ,632.5159623696,kg -e9eb5e30-9a81-3544-8a79-8e6c362fbf58,SESCO,II.1.1,Entre Rios,AR-E,annual,2022,bioetanol combustion consumption by to the public,63.25159623696,TJ,N2O,0.6,kg/TJ,37.950957742175994,kg -d15bd87f-3c99-3313-a3dd-e41cc2bf4df6,SESCO,II.1.1,Jujuy,AR-Y,annual,2022,bioetanol combustion consumption by to the public,4.1707908126,TJ,CH4,10.0,kg/TJ,41.707908126,kg -dd852aab-405c-3ca3-8acb-e6066ff1396a,SESCO,II.1.1,Jujuy,AR-Y,annual,2022,bioetanol combustion consumption by to the public,4.1707908126,TJ,N2O,0.6,kg/TJ,2.50247448756,kg -0c48600e-21f9-384e-81c5-0ab37e51b77e,SESCO,II.1.1,La Pampa,AR-L,annual,2022,bioetanol combustion consumption by to the public,37.24277802299999,TJ,CH4,10.0,kg/TJ,372.42778022999994,kg -e67b3343-d685-30c9-a497-1646418243e8,SESCO,II.1.1,La Pampa,AR-L,annual,2022,bioetanol combustion consumption by to the public,37.24277802299999,TJ,N2O,0.6,kg/TJ,22.345666813799994,kg -8eee5d73-95af-3fba-ae68-3aa6f2c8e4df,SESCO,II.1.1,Mendoza,AR-M,annual,2022,bioetanol combustion consumption by to the public,8.31980655072,TJ,CH4,10.0,kg/TJ,83.1980655072,kg -4a918aaf-5473-3190-a739-eff81f062a70,SESCO,II.1.1,Mendoza,AR-M,annual,2022,bioetanol combustion consumption by to the public,8.31980655072,TJ,N2O,0.6,kg/TJ,4.9918839304319995,kg -649c9c0b-e403-34ff-aada-e6e9b750a50d,SESCO,II.1.1,Neuquén,AR-Q,annual,2022,bioetanol combustion consumption by to the public,36.51143410332,TJ,CH4,10.0,kg/TJ,365.1143410332,kg -f0963dff-033f-3251-bc1a-b682946eba33,SESCO,II.1.1,Neuquén,AR-Q,annual,2022,bioetanol combustion consumption by to the public,36.51143410332,TJ,N2O,0.6,kg/TJ,21.906860461992,kg -a71e98fa-2c38-3564-84cb-cbd55343a455,SESCO,II.1.1,Rio Negro,AR-R,annual,2022,bioetanol combustion consumption by to the public,127.62795764123999,TJ,CH4,10.0,kg/TJ,1276.2795764123998,kg -6c652113-d475-3747-81ed-7769474ca1fa,SESCO,II.1.1,Rio Negro,AR-R,annual,2022,bioetanol combustion consumption by to the public,127.62795764123999,TJ,N2O,0.6,kg/TJ,76.57677458474399,kg -1c7ac231-fa84-308b-94b0-679f926d122f,SESCO,II.1.1,San Juan,AR-J,annual,2022,bioetanol combustion consumption by to the public,23.83300563264,TJ,CH4,10.0,kg/TJ,238.33005632639998,kg -d40208c1-d41f-3d93-8754-d8b3eaf1a6b9,SESCO,II.1.1,San Juan,AR-J,annual,2022,bioetanol combustion consumption by to the public,23.83300563264,TJ,N2O,0.6,kg/TJ,14.299803379583999,kg -a3625dc9-7346-3dd0-93d5-ddd0722d0a99,SESCO,II.1.1,San Luis,AR-D,annual,2022,bioetanol combustion consumption by to the public,7.670869451999999,TJ,CH4,10.0,kg/TJ,76.70869452,kg -2327975f-084a-30d0-8300-f801659ae463,SESCO,II.1.1,San Luis,AR-D,annual,2022,bioetanol combustion consumption by to the public,7.670869451999999,TJ,N2O,0.6,kg/TJ,4.602521671199999,kg -0a6e3285-0708-3cd5-88b9-f3a9263b6113,SESCO,II.1.1,Santa Fe,AR-S,annual,2022,bioetanol combustion consumption by to the public,102.85439558652,TJ,CH4,10.0,kg/TJ,1028.5439558652,kg -fa5d6e10-e77f-3954-b77a-74cd6dcf5fee,SESCO,II.1.1,Santa Fe,AR-S,annual,2022,bioetanol combustion consumption by to the public,102.85439558652,TJ,N2O,0.6,kg/TJ,61.712637351911994,kg -5e9ca690-04e1-391e-ab90-ba89941ed125,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2022,bioetanol combustion consumption by to the public,7.758097567919999,TJ,CH4,10.0,kg/TJ,77.5809756792,kg -5aef5785-ee21-37bc-b1a8-84923689c500,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2022,bioetanol combustion consumption by to the public,7.758097567919999,TJ,N2O,0.6,kg/TJ,4.654858540752,kg -0a88b37c-830a-33c8-be5c-32d77a73ab4f,SESCO,II.1.1,Tucuman,AR-T,annual,2022,bioetanol combustion consumption by to the public,0.40736619143999997,TJ,CH4,10.0,kg/TJ,4.0736619144,kg -82407a08-903e-3d1c-b4af-311d7b5b2ae0,SESCO,II.1.1,Tucuman,AR-T,annual,2022,bioetanol combustion consumption by to the public,0.40736619143999997,TJ,N2O,0.6,kg/TJ,0.24441971486399997,kg -bedaa603-0507-3d0b-ad6f-b02b76f096d4,SESCO,II.1.1,Buenos Aires,AR-B,annual,2022,bioetanol combustion consumption by to the public,69.87529116035999,TJ,CH4,10.0,kg/TJ,698.7529116036,kg -6b339dc8-9df2-3fe9-80b9-575e8081044b,SESCO,II.1.1,Buenos Aires,AR-B,annual,2022,bioetanol combustion consumption by to the public,69.87529116035999,TJ,N2O,0.6,kg/TJ,41.925174696216,kg -1c609085-1eda-3cbd-862b-1bddf762dcda,SESCO,II.1.1,Capital Federal,AR-C,annual,2022,bioetanol combustion consumption by to the public,4.0117085298,TJ,CH4,10.0,kg/TJ,40.117085298,kg -48806dcd-ebf7-39e8-9917-dfd90c0cd70e,SESCO,II.1.1,Capital Federal,AR-C,annual,2022,bioetanol combustion consumption by to the public,4.0117085298,TJ,N2O,0.6,kg/TJ,2.40702511788,kg -4cda2c76-5c63-33ef-94a6-2999d5f49803,SESCO,II.1.1,Catamarca,AR-K,annual,2022,bioetanol combustion consumption by to the public,0.1114317324,TJ,CH4,10.0,kg/TJ,1.114317324,kg -173027e6-48a3-3db2-9e5c-92617cbd9ef6,SESCO,II.1.1,Catamarca,AR-K,annual,2022,bioetanol combustion consumption by to the public,0.1114317324,TJ,N2O,0.6,kg/TJ,0.06685903943999999,kg -8ece8928-1549-313c-88cc-b97db7bea6ad,SESCO,II.1.1,Chaco,AR-H,annual,2022,bioetanol combustion consumption by to the public,0.8764429132799999,TJ,CH4,10.0,kg/TJ,8.764429132799998,kg -733a8b98-4190-3870-ac5d-9c37f2c48fa6,SESCO,II.1.1,Chaco,AR-H,annual,2022,bioetanol combustion consumption by to the public,0.8764429132799999,TJ,N2O,0.6,kg/TJ,0.5258657479679999,kg -06c74134-37b8-32bf-8855-2a0f84453b58,SESCO,II.1.1,Chubut,AR-U,annual,2022,bioetanol combustion consumption by to the public,4.56725412864,TJ,CH4,10.0,kg/TJ,45.672541286400005,kg -dd1f3d78-4772-3aa2-8c93-01bd7b6531fa,SESCO,II.1.1,Chubut,AR-U,annual,2022,bioetanol combustion consumption by to the public,4.56725412864,TJ,N2O,0.6,kg/TJ,2.740352477184,kg -e70a7f01-c9c0-32e5-8a60-5a8d29f50cc3,SESCO,II.1.1,Corrientes,AR-W,annual,2022,bioetanol combustion consumption by to the public,5.27765890356,TJ,CH4,10.0,kg/TJ,52.7765890356,kg -aad2cee1-ab23-38f4-a863-5ddc54649fdf,SESCO,II.1.1,Corrientes,AR-W,annual,2022,bioetanol combustion consumption by to the public,5.27765890356,TJ,N2O,0.6,kg/TJ,3.166595342136,kg -bf40d0b9-92f6-3da7-8883-494843e2be18,SESCO,II.1.1,Córdoba,AR-X,annual,2022,bioetanol combustion consumption by to the public,13.36380903756,TJ,CH4,10.0,kg/TJ,133.6380903756,kg -3ee2dbb5-dfb3-313e-9ebd-f927bf752ad1,SESCO,II.1.1,Córdoba,AR-X,annual,2022,bioetanol combustion consumption by to the public,13.36380903756,TJ,N2O,0.6,kg/TJ,8.018285422536,kg -c88b47d3-9ce4-30ab-9169-5ab34a9a8cde,SESCO,II.1.1,Entre Rios,AR-E,annual,2022,bioetanol combustion consumption by to the public,13.98324574188,TJ,CH4,10.0,kg/TJ,139.8324574188,kg -add9498b-39c7-3a32-b063-668149119420,SESCO,II.1.1,Entre Rios,AR-E,annual,2022,bioetanol combustion consumption by to the public,13.98324574188,TJ,N2O,0.6,kg/TJ,8.389947445128,kg -84e40d56-425e-3096-833b-de79dd6228a3,SESCO,II.1.1,Jujuy,AR-Y,annual,2022,bioetanol combustion consumption by to the public,0.15302882232,TJ,CH4,10.0,kg/TJ,1.5302882232000001,kg -2b8e15d7-4212-32df-87fd-6a4354019a47,SESCO,II.1.1,Jujuy,AR-Y,annual,2022,bioetanol combustion consumption by to the public,0.15302882232,TJ,N2O,0.6,kg/TJ,0.091817293392,kg -e4d626d8-79be-3c75-8db0-a3f94c064d3a,SESCO,II.1.1,La Pampa,AR-L,annual,2022,bioetanol combustion consumption by to the public,8.91746051148,TJ,CH4,10.0,kg/TJ,89.1746051148,kg -8fec7a92-4b74-381e-93b6-705dd06dd339,SESCO,II.1.1,La Pampa,AR-L,annual,2022,bioetanol combustion consumption by to the public,8.91746051148,TJ,N2O,0.6,kg/TJ,5.350476306888,kg -f8526060-ab0a-33f7-9a56-dcd88e7d20b5,SESCO,II.1.1,Mendoza,AR-M,annual,2022,bioetanol combustion consumption by to the public,1.2654263199599998,TJ,CH4,10.0,kg/TJ,12.654263199599997,kg -fb0ec6d0-8ccc-320e-a823-c580760e439d,SESCO,II.1.1,Mendoza,AR-M,annual,2022,bioetanol combustion consumption by to the public,1.2654263199599998,TJ,N2O,0.6,kg/TJ,0.7592557919759998,kg -eb369f37-50fc-396a-8e9a-c63cdf66b1fa,SESCO,II.1.1,Neuquén,AR-Q,annual,2022,bioetanol combustion consumption by to the public,10.242181601639999,TJ,CH4,10.0,kg/TJ,102.42181601639999,kg -6a8ce6ef-f213-3ef2-bc0e-e7c5c880cd33,SESCO,II.1.1,Neuquén,AR-Q,annual,2022,bioetanol combustion consumption by to the public,10.242181601639999,TJ,N2O,0.6,kg/TJ,6.145308960983999,kg -f94c3a71-52af-3827-bc19-60233db4ac32,SESCO,II.1.1,Rio Negro,AR-R,annual,2022,bioetanol combustion consumption by to the public,19.97810422524,TJ,CH4,10.0,kg/TJ,199.7810422524,kg -e214b877-437b-3664-b19b-19ed5c9aad86,SESCO,II.1.1,Rio Negro,AR-R,annual,2022,bioetanol combustion consumption by to the public,19.97810422524,TJ,N2O,0.6,kg/TJ,11.986862535143999,kg -24f90e86-9245-3070-b354-08f665672db8,SESCO,II.1.1,San Juan,AR-J,annual,2022,bioetanol combustion consumption by to the public,2.59935286248,TJ,CH4,10.0,kg/TJ,25.9935286248,kg -bec2a91e-79c7-36d4-ba6c-8fcddfd9caba,SESCO,II.1.1,San Juan,AR-J,annual,2022,bioetanol combustion consumption by to the public,2.59935286248,TJ,N2O,0.6,kg/TJ,1.559611717488,kg -c3081910-7f62-39c5-80fe-eb955a0c5a11,SESCO,II.1.1,San Luis,AR-D,annual,2022,bioetanol combustion consumption by to the public,1.6169053690800002,TJ,CH4,10.0,kg/TJ,16.169053690800002,kg -f24d98d7-770d-315e-9008-e5258abb8dcd,SESCO,II.1.1,San Luis,AR-D,annual,2022,bioetanol combustion consumption by to the public,1.6169053690800002,TJ,N2O,0.6,kg/TJ,0.970143221448,kg -082bd83e-3b00-33e2-a158-2a4c94a3eaa5,SESCO,II.1.1,Santa Fe,AR-S,annual,2022,bioetanol combustion consumption by to the public,20.596444251119998,TJ,CH4,10.0,kg/TJ,205.9644425112,kg -be96d594-4087-3e29-beba-f396661edc85,SESCO,II.1.1,Santa Fe,AR-S,annual,2022,bioetanol combustion consumption by to the public,20.596444251119998,TJ,N2O,0.6,kg/TJ,12.357866550671998,kg -41c53248-645c-35d2-9391-c5599a5c4bbe,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2022,bioetanol combustion consumption by to the public,0.8093435760000001,TJ,CH4,10.0,kg/TJ,8.09343576,kg -e9218195-9bb3-3985-856c-976c30e1964c,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2022,bioetanol combustion consumption by to the public,0.8093435760000001,TJ,N2O,0.6,kg/TJ,0.48560614560000004,kg -f51f15c7-ed90-327b-b791-23cdbce2dcc2,SESCO,II.1.1,Tucuman,AR-T,annual,2022,bioetanol combustion consumption by to the public,0.062357289479999994,TJ,CH4,10.0,kg/TJ,0.6235728947999999,kg -8a7842f5-8bfb-36aa-b454-ff4edc428e7e,SESCO,II.1.1,Tucuman,AR-T,annual,2022,bioetanol combustion consumption by to the public,0.062357289479999994,TJ,N2O,0.6,kg/TJ,0.037414373688,kg -4ec31465-4a55-3253-8b4c-0f42bc0091e0,SESCO,II.5.1,Buenos Aires,AR-B,annual,2022,bioetanol combustion consumption by agriculture machines,3.21590088,TJ,CH4,10.0,kg/TJ,32.1590088,kg -d290ffcc-2f71-3a1e-b384-177a0abe505e,SESCO,II.5.1,Buenos Aires,AR-B,annual,2022,bioetanol combustion consumption by agriculture machines,3.21590088,TJ,N2O,0.6,kg/TJ,1.929540528,kg -3ddcf968-c14b-36e2-b591-ad6ffe84ab6b,SESCO,II.5.1,Salta,AR-A,annual,2022,bioetanol combustion consumption by agriculture machines,0.0255636,TJ,CH4,10.0,kg/TJ,0.255636,kg -4513edd0-082d-3724-a7a8-f5d760d3985c,SESCO,II.5.1,Salta,AR-A,annual,2022,bioetanol combustion consumption by agriculture machines,0.0255636,TJ,N2O,0.6,kg/TJ,0.015338159999999998,kg -b18a8dc2-8299-38e1-990c-baf9f3740d65,SESCO,II.5.1,Santa Fe,AR-S,annual,2022,bioetanol combustion consumption by agriculture machines,2.01441168,TJ,CH4,10.0,kg/TJ,20.1441168,kg -505a9009-0abf-3627-8c86-f16f92f029c7,SESCO,II.5.1,Santa Fe,AR-S,annual,2022,bioetanol combustion consumption by agriculture machines,2.01441168,TJ,N2O,0.6,kg/TJ,1.2086470079999998,kg -f823ce16-3308-3ffd-bdf6-7b70a3422f99,SESCO,II.5.1,Buenos Aires,AR-B,annual,2022,bioetanol combustion consumption by agriculture machines,0.09969803999999999,TJ,CH4,10.0,kg/TJ,0.9969803999999999,kg -77eb8d0c-e842-3814-8bde-1a81c39abd2f,SESCO,II.5.1,Buenos Aires,AR-B,annual,2022,bioetanol combustion consumption by agriculture machines,0.09969803999999999,TJ,N2O,0.6,kg/TJ,0.05981882399999999,kg -7417f382-1948-37a5-9b9e-e2fb1f071d14,SESCO,II.5.1,Santa Fe,AR-S,annual,2022,bioetanol combustion consumption by agriculture machines,0.13293072,TJ,CH4,10.0,kg/TJ,1.3293072000000001,kg -ae09ef5c-8c78-3a03-8d90-ea2d9bee63b9,SESCO,II.5.1,Santa Fe,AR-S,annual,2022,bioetanol combustion consumption by agriculture machines,0.13293072,TJ,N2O,0.6,kg/TJ,0.079758432,kg -ae8931f9-0c94-329b-8608-91bcd37ede07,SESCO,II.1.1,Buenos Aires,AR-B,annual,2022,bioetanol combustion consumption by to the public,3046.6877425199996,TJ,CH4,10.0,kg/TJ,30466.877425199997,kg -59848313-1a96-391a-829b-dce8ff8a208f,SESCO,II.1.1,Buenos Aires,AR-B,annual,2022,bioetanol combustion consumption by to the public,3046.6877425199996,TJ,N2O,0.6,kg/TJ,1828.0126455119996,kg -e0a8fa76-f19d-3527-ae25-4fd861014561,SESCO,II.1.1,Capital Federal,AR-C,annual,2022,bioetanol combustion consumption by to the public,576.842634,TJ,CH4,10.0,kg/TJ,5768.42634,kg -de605804-e2d1-33a4-b3c4-0b3594e12fd6,SESCO,II.1.1,Capital Federal,AR-C,annual,2022,bioetanol combustion consumption by to the public,576.842634,TJ,N2O,0.6,kg/TJ,346.10558039999995,kg -3976af50-49fa-3775-9002-30356c33cf3b,SESCO,II.1.1,Catamarca,AR-K,annual,2022,bioetanol combustion consumption by to the public,81.12352824,TJ,CH4,10.0,kg/TJ,811.2352824,kg -072b5e2a-ce71-366d-8965-4afc5aa8ce96,SESCO,II.1.1,Catamarca,AR-K,annual,2022,bioetanol combustion consumption by to the public,81.12352824,TJ,N2O,0.6,kg/TJ,48.674116944,kg -8e21b034-c401-3dd8-8716-eda98b23120e,SESCO,II.1.1,Chaco,AR-H,annual,2022,bioetanol combustion consumption by to the public,223.45654032,TJ,CH4,10.0,kg/TJ,2234.5654031999998,kg -6c881f41-bc38-32f7-9116-aa1495a60c2e,SESCO,II.1.1,Chaco,AR-H,annual,2022,bioetanol combustion consumption by to the public,223.45654032,TJ,N2O,0.6,kg/TJ,134.073924192,kg -d6d998aa-d298-39ab-b346-4318e82810e2,SESCO,II.1.1,Chubut,AR-U,annual,2022,bioetanol combustion consumption by to the public,270.91792008,TJ,CH4,10.0,kg/TJ,2709.1792007999998,kg -b9c34867-49d9-3d51-9a48-8478fb4c9d61,SESCO,II.1.1,Chubut,AR-U,annual,2022,bioetanol combustion consumption by to the public,270.91792008,TJ,N2O,0.6,kg/TJ,162.550752048,kg -8e71bb95-b2b9-34f6-87e1-0cb0738aa25c,SESCO,II.1.1,Corrientes,AR-W,annual,2022,bioetanol combustion consumption by to the public,222.14257128,TJ,CH4,10.0,kg/TJ,2221.4257128,kg -f936cd99-ba90-35d8-b205-47447878ea34,SESCO,II.1.1,Corrientes,AR-W,annual,2022,bioetanol combustion consumption by to the public,222.14257128,TJ,N2O,0.6,kg/TJ,133.285542768,kg -a1073e90-3e4b-3b30-9e57-3564fb530195,SESCO,II.1.1,Córdoba,AR-X,annual,2022,bioetanol combustion consumption by to the public,853.1749245599999,TJ,CH4,10.0,kg/TJ,8531.7492456,kg -42f05b72-42fb-329d-9b24-f0dba034c615,SESCO,II.1.1,Córdoba,AR-X,annual,2022,bioetanol combustion consumption by to the public,853.1749245599999,TJ,N2O,0.6,kg/TJ,511.9049547359999,kg -ccacc8b5-b731-3b6a-a4d7-22a70fda9ee1,SESCO,II.1.1,Entre Rios,AR-E,annual,2022,bioetanol combustion consumption by to the public,287.70809255999995,TJ,CH4,10.0,kg/TJ,2877.0809255999993,kg -6e1b3efc-4a4b-335e-bee4-0f15fd05c12b,SESCO,II.1.1,Entre Rios,AR-E,annual,2022,bioetanol combustion consumption by to the public,287.70809255999995,TJ,N2O,0.6,kg/TJ,172.62485553599996,kg -85132852-aca0-3315-8095-a414257688f8,SESCO,II.1.1,Formosa,AR-P,annual,2022,bioetanol combustion consumption by to the public,101.45425931999999,TJ,CH4,10.0,kg/TJ,1014.5425931999999,kg -8d147bce-5ba9-3ae6-83f8-914742da2ec4,SESCO,II.1.1,Formosa,AR-P,annual,2022,bioetanol combustion consumption by to the public,101.45425931999999,TJ,N2O,0.6,kg/TJ,60.87255559199999,kg -b847d25c-0ca0-3af0-b2a7-7f3405ee59c0,SESCO,II.1.1,Jujuy,AR-Y,annual,2022,bioetanol combustion consumption by to the public,136.75247819999998,TJ,CH4,10.0,kg/TJ,1367.524782,kg -5c9f729a-d8cf-378f-a55e-82effa1977c8,SESCO,II.1.1,Jujuy,AR-Y,annual,2022,bioetanol combustion consumption by to the public,136.75247819999998,TJ,N2O,0.6,kg/TJ,82.05148691999999,kg -f4c052b7-6a86-35fd-b8f6-3430bad9ad2d,SESCO,II.1.1,La Pampa,AR-L,annual,2022,bioetanol combustion consumption by to the public,144.0764496,TJ,CH4,10.0,kg/TJ,1440.7644959999998,kg -76ac2990-9596-339f-b526-ad52b4bdb215,SESCO,II.1.1,La Pampa,AR-L,annual,2022,bioetanol combustion consumption by to the public,144.0764496,TJ,N2O,0.6,kg/TJ,86.44586976,kg -61c69ab7-2451-377d-9615-0cd7416592b0,SESCO,II.1.1,La Rioja,AR-F,annual,2022,bioetanol combustion consumption by to the public,89.59530528,TJ,CH4,10.0,kg/TJ,895.9530528,kg -418a3b35-f911-3031-9520-0b02543f2177,SESCO,II.1.1,La Rioja,AR-F,annual,2022,bioetanol combustion consumption by to the public,89.59530528,TJ,N2O,0.6,kg/TJ,53.757183168000005,kg -ddfd4aab-9289-3036-bb81-5dc8bb375dae,SESCO,II.1.1,Mendoza,AR-M,annual,2022,bioetanol combustion consumption by to the public,409.27579235999997,TJ,CH4,10.0,kg/TJ,4092.7579235999997,kg -12ede996-f5df-33f4-95eb-2ea3b27ca35e,SESCO,II.1.1,Mendoza,AR-M,annual,2022,bioetanol combustion consumption by to the public,409.27579235999997,TJ,N2O,0.6,kg/TJ,245.56547541599997,kg -7e2aae8d-6e47-3d97-a8de-249465b5021d,SESCO,II.1.1,Misiones,AR-N,annual,2022,bioetanol combustion consumption by to the public,330.68306051999997,TJ,CH4,10.0,kg/TJ,3306.8306052,kg -8f4622ee-96d3-33b0-8b8f-98b1130b4d3e,SESCO,II.1.1,Misiones,AR-N,annual,2022,bioetanol combustion consumption by to the public,330.68306051999997,TJ,N2O,0.6,kg/TJ,198.40983631199998,kg -1f893aae-acab-3ed0-8c90-343ed310f88f,SESCO,II.1.1,Neuquén,AR-Q,annual,2022,bioetanol combustion consumption by to the public,279.12383567999996,TJ,CH4,10.0,kg/TJ,2791.2383567999996,kg -7d8dc451-207b-3321-8bd6-64ddc8595d4d,SESCO,II.1.1,Neuquén,AR-Q,annual,2022,bioetanol combustion consumption by to the public,279.12383567999996,TJ,N2O,0.6,kg/TJ,167.47430140799997,kg -ed8c30a9-74b0-30af-b974-f71d8ca17f50,SESCO,II.1.1,Rio Negro,AR-R,annual,2022,bioetanol combustion consumption by to the public,270.16635024,TJ,CH4,10.0,kg/TJ,2701.6635023999997,kg -46f4e724-87e2-3e2c-b54f-f073add43df1,SESCO,II.1.1,Rio Negro,AR-R,annual,2022,bioetanol combustion consumption by to the public,270.16635024,TJ,N2O,0.6,kg/TJ,162.09981014399997,kg -c4a47e1a-f9e5-3b4b-994c-537b4053b1d1,SESCO,II.1.1,Salta,AR-A,annual,2022,bioetanol combustion consumption by to the public,294.75086436,TJ,CH4,10.0,kg/TJ,2947.5086435999997,kg -e32c7ff0-e0c5-3135-9fe9-024c38d18595,SESCO,II.1.1,Salta,AR-A,annual,2022,bioetanol combustion consumption by to the public,294.75086436,TJ,N2O,0.6,kg/TJ,176.850518616,kg -e29d404a-1d56-3d86-9490-fd6d85148a87,SESCO,II.1.1,San Juan,AR-J,annual,2022,bioetanol combustion consumption by to the public,142.22053223999998,TJ,CH4,10.0,kg/TJ,1422.2053224,kg -da36bc8f-3547-3144-a92e-6777943f97c5,SESCO,II.1.1,San Juan,AR-J,annual,2022,bioetanol combustion consumption by to the public,142.22053223999998,TJ,N2O,0.6,kg/TJ,85.33231934399998,kg -f2f111c1-ff49-3aa0-88d4-029573dd0610,SESCO,II.1.1,San Luis,AR-D,annual,2022,bioetanol combustion consumption by to the public,124.19819423999999,TJ,CH4,10.0,kg/TJ,1241.9819424,kg -3af7b624-7cb4-3efc-b6ce-0567ef7712e7,SESCO,II.1.1,San Luis,AR-D,annual,2022,bioetanol combustion consumption by to the public,124.19819423999999,TJ,N2O,0.6,kg/TJ,74.51891654399999,kg -fa01ad15-e3d3-3a82-a755-2ed36c1c732a,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2022,bioetanol combustion consumption by to the public,177.83573976,TJ,CH4,10.0,kg/TJ,1778.3573976,kg -42143050-2404-308f-ae95-8af75a301631,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2022,bioetanol combustion consumption by to the public,177.83573976,TJ,N2O,0.6,kg/TJ,106.701443856,kg -debbee14-10fd-3812-a59c-143b8345e2e4,SESCO,II.1.1,Santa Fe,AR-S,annual,2022,bioetanol combustion consumption by to the public,613.1173824,TJ,CH4,10.0,kg/TJ,6131.1738239999995,kg -72d5fd0b-b1ad-3fe1-9430-8d7f6c3dbd16,SESCO,II.1.1,Santa Fe,AR-S,annual,2022,bioetanol combustion consumption by to the public,613.1173824,TJ,N2O,0.6,kg/TJ,367.87042944,kg -d3448de3-c393-3f2a-b17d-48482d90922f,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2022,bioetanol combustion consumption by to the public,142.51451364,TJ,CH4,10.0,kg/TJ,1425.1451364,kg -2308ab40-6172-3cac-b0ca-a76a3bbc17ef,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2022,bioetanol combustion consumption by to the public,142.51451364,TJ,N2O,0.6,kg/TJ,85.50870818399999,kg -38a8bc0c-da36-38e1-9b9a-1fdd85d50f02,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2022,bioetanol combustion consumption by to the public,116.87677919999999,TJ,CH4,10.0,kg/TJ,1168.7677919999999,kg -3131cf0c-f92d-3d88-ab26-17895b0f539b,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2022,bioetanol combustion consumption by to the public,116.87677919999999,TJ,N2O,0.6,kg/TJ,70.12606751999999,kg -a64e603b-8bfd-3ea0-a155-a0d01c80c456,SESCO,II.1.1,Tucuman,AR-T,annual,2022,bioetanol combustion consumption by to the public,265.87677815999996,TJ,CH4,10.0,kg/TJ,2658.7677815999996,kg -6cac72e2-55d5-347a-9d4f-5273c7f1c365,SESCO,II.1.1,Tucuman,AR-T,annual,2022,bioetanol combustion consumption by to the public,265.87677815999996,TJ,N2O,0.6,kg/TJ,159.52606689599997,kg -7bae84f4-e6c0-3262-8e03-9f5981e5d4e2,SESCO,II.1.1,Buenos Aires,AR-B,annual,2022,bioetanol combustion consumption by to the public,1396.0154142,TJ,CH4,10.0,kg/TJ,13960.154142,kg -c48f0457-ff17-3093-ba13-e3df46342bfd,SESCO,II.1.1,Buenos Aires,AR-B,annual,2022,bioetanol combustion consumption by to the public,1396.0154142,TJ,N2O,0.6,kg/TJ,837.6092485199999,kg -522cac3c-0c64-33de-b868-b4c8e19bae72,SESCO,II.1.1,Capital Federal,AR-C,annual,2022,bioetanol combustion consumption by to the public,352.26896436,TJ,CH4,10.0,kg/TJ,3522.6896435999997,kg -f5ccba5d-0231-32e8-a2b8-583f83b36838,SESCO,II.1.1,Capital Federal,AR-C,annual,2022,bioetanol combustion consumption by to the public,352.26896436,TJ,N2O,0.6,kg/TJ,211.361378616,kg -fd8c88e8-374a-3679-9cf8-9adb20ce3297,SESCO,II.1.1,Catamarca,AR-K,annual,2022,bioetanol combustion consumption by to the public,32.468328359999994,TJ,CH4,10.0,kg/TJ,324.6832835999999,kg -ce4d10b1-7ca9-3379-896e-47273e76ec96,SESCO,II.1.1,Catamarca,AR-K,annual,2022,bioetanol combustion consumption by to the public,32.468328359999994,TJ,N2O,0.6,kg/TJ,19.480997015999996,kg -cd664367-e25d-36ce-96a2-3beb4d4668b0,SESCO,II.1.1,Chaco,AR-H,annual,2022,bioetanol combustion consumption by to the public,69.20322156,TJ,CH4,10.0,kg/TJ,692.0322156,kg -06d6e25c-bbf9-33ae-baa9-1c184eb12bc2,SESCO,II.1.1,Chaco,AR-H,annual,2022,bioetanol combustion consumption by to the public,69.20322156,TJ,N2O,0.6,kg/TJ,41.521932936,kg -dd66100c-9ad4-3e77-bb61-7f7f3814eb09,SESCO,II.1.1,Chubut,AR-U,annual,2022,bioetanol combustion consumption by to the public,97.90347528,TJ,CH4,10.0,kg/TJ,979.0347528,kg -5a40d43b-011c-389a-bfe8-fd6149d9c939,SESCO,II.1.1,Chubut,AR-U,annual,2022,bioetanol combustion consumption by to the public,97.90347528,TJ,N2O,0.6,kg/TJ,58.742085167999996,kg -3d7f9f0b-8eb5-345b-8ae9-9d8b6e35dd53,SESCO,II.1.1,Corrientes,AR-W,annual,2022,bioetanol combustion consumption by to the public,89.06102604,TJ,CH4,10.0,kg/TJ,890.6102604,kg -3dffa0c4-292f-3004-83bb-59486b1c41b0,SESCO,II.1.1,Corrientes,AR-W,annual,2022,bioetanol combustion consumption by to the public,89.06102604,TJ,N2O,0.6,kg/TJ,53.436615624,kg -98f823e3-37c2-3b19-a6c8-95c383b389ca,SESCO,II.1.1,Córdoba,AR-X,annual,2022,bioetanol combustion consumption by to the public,363.2715378,TJ,CH4,10.0,kg/TJ,3632.715378,kg -4df86cc8-e085-39e6-a966-f323fcf77e16,SESCO,II.1.1,Córdoba,AR-X,annual,2022,bioetanol combustion consumption by to the public,363.2715378,TJ,N2O,0.6,kg/TJ,217.96292268,kg -f8b1a29c-139f-3f23-bb73-d3433e3be11e,SESCO,II.1.1,Entre Rios,AR-E,annual,2022,bioetanol combustion consumption by to the public,125.26164,TJ,CH4,10.0,kg/TJ,1252.6163999999999,kg -2f233db9-a9f9-3a62-a6b4-61f730652a3d,SESCO,II.1.1,Entre Rios,AR-E,annual,2022,bioetanol combustion consumption by to the public,125.26164,TJ,N2O,0.6,kg/TJ,75.156984,kg -bf3ae350-3bc4-3997-b4d9-65b3305aa336,SESCO,II.1.1,Formosa,AR-P,annual,2022,bioetanol combustion consumption by to the public,29.311223759999994,TJ,CH4,10.0,kg/TJ,293.11223759999996,kg -ae1b88f4-664e-342e-bc3d-6bf9011554d1,SESCO,II.1.1,Formosa,AR-P,annual,2022,bioetanol combustion consumption by to the public,29.311223759999994,TJ,N2O,0.6,kg/TJ,17.586734255999996,kg -81573cb4-d081-3840-b7e4-f567b72aed59,SESCO,II.1.1,Jujuy,AR-Y,annual,2022,bioetanol combustion consumption by to the public,43.02865152,TJ,CH4,10.0,kg/TJ,430.28651519999994,kg -5cc8b047-649b-3b9c-acd1-881355b1c35c,SESCO,II.1.1,Jujuy,AR-Y,annual,2022,bioetanol combustion consumption by to the public,43.02865152,TJ,N2O,0.6,kg/TJ,25.817190911999997,kg -cbe157f4-ba05-3a6e-823a-c0aaf9160f70,SESCO,II.1.1,La Pampa,AR-L,annual,2022,bioetanol combustion consumption by to the public,92.2718142,TJ,CH4,10.0,kg/TJ,922.718142,kg -059c260e-cb50-3d74-ad87-836e4abac7c8,SESCO,II.1.1,La Pampa,AR-L,annual,2022,bioetanol combustion consumption by to the public,92.2718142,TJ,N2O,0.6,kg/TJ,55.36308852,kg -75f9ed81-bf87-3f7f-8e3d-bceab81f8acf,SESCO,II.1.1,La Rioja,AR-F,annual,2022,bioetanol combustion consumption by to the public,40.817400119999995,TJ,CH4,10.0,kg/TJ,408.17400119999996,kg -3f234e3a-dac2-3446-abad-033a749de334,SESCO,II.1.1,La Rioja,AR-F,annual,2022,bioetanol combustion consumption by to the public,40.817400119999995,TJ,N2O,0.6,kg/TJ,24.490440071999995,kg -0732229a-4e89-39cc-8881-c89952535940,SESCO,II.1.1,Mendoza,AR-M,annual,2022,bioetanol combustion consumption by to the public,230.04939276,TJ,CH4,10.0,kg/TJ,2300.4939276,kg -50f02913-a488-3908-accd-490272a3594d,SESCO,II.1.1,Mendoza,AR-M,annual,2022,bioetanol combustion consumption by to the public,230.04939276,TJ,N2O,0.6,kg/TJ,138.02963565599998,kg -ed19a4fe-8a5a-3775-a868-9643e48b2110,SESCO,II.1.1,Misiones,AR-N,annual,2022,bioetanol combustion consumption by to the public,110.39129387999999,TJ,CH4,10.0,kg/TJ,1103.9129388,kg -a2928727-89f4-3efb-8598-e6ad582a908b,SESCO,II.1.1,Misiones,AR-N,annual,2022,bioetanol combustion consumption by to the public,110.39129387999999,TJ,N2O,0.6,kg/TJ,66.234776328,kg -6b06517f-d3be-38ac-962a-8923cf773306,SESCO,II.1.1,Neuquén,AR-Q,annual,2022,bioetanol combustion consumption by to the public,154.56775104,TJ,CH4,10.0,kg/TJ,1545.6775103999998,kg -1c19fc22-f356-3000-a6e8-3a71b892f223,SESCO,II.1.1,Neuquén,AR-Q,annual,2022,bioetanol combustion consumption by to the public,154.56775104,TJ,N2O,0.6,kg/TJ,92.740650624,kg -e975fffc-74bd-3311-9d2c-32ab8ac8d18d,SESCO,II.1.1,Rio Negro,AR-R,annual,2022,bioetanol combustion consumption by to the public,140.66370899999998,TJ,CH4,10.0,kg/TJ,1406.6370899999997,kg -f2ccb9fc-a6dc-3b84-b25b-c0b11956acad,SESCO,II.1.1,Rio Negro,AR-R,annual,2022,bioetanol combustion consumption by to the public,140.66370899999998,TJ,N2O,0.6,kg/TJ,84.39822539999999,kg -9f37e8d8-23ab-3733-a279-6b0320052ba0,SESCO,II.1.1,Salta,AR-A,annual,2022,bioetanol combustion consumption by to the public,96.76845143999999,TJ,CH4,10.0,kg/TJ,967.6845143999999,kg -74b44859-2a1d-354e-b3ab-defd2c9afa78,SESCO,II.1.1,Salta,AR-A,annual,2022,bioetanol combustion consumption by to the public,96.76845143999999,TJ,N2O,0.6,kg/TJ,58.061070863999994,kg -6eb387be-7b74-30f0-817b-590e01f4266b,SESCO,II.1.1,San Juan,AR-J,annual,2022,bioetanol combustion consumption by to the public,64.2413268,TJ,CH4,10.0,kg/TJ,642.413268,kg -b523e817-d885-3db0-8fb3-11ff1b51fe81,SESCO,II.1.1,San Juan,AR-J,annual,2022,bioetanol combustion consumption by to the public,64.2413268,TJ,N2O,0.6,kg/TJ,38.54479608,kg -e6a06a5b-a571-3572-84f9-5f644f60c2dd,SESCO,II.1.1,San Luis,AR-D,annual,2022,bioetanol combustion consumption by to the public,55.14579791999999,TJ,CH4,10.0,kg/TJ,551.4579792,kg -2fc54278-c7a4-3b05-b48e-85defb968f26,SESCO,II.1.1,San Luis,AR-D,annual,2022,bioetanol combustion consumption by to the public,55.14579791999999,TJ,N2O,0.6,kg/TJ,33.087478751999996,kg -46bb5897-f49e-374b-9d08-5829b9de23f6,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2022,bioetanol combustion consumption by to the public,51.87621348,TJ,CH4,10.0,kg/TJ,518.7621348,kg -dc7a47c1-9565-3592-a75e-5fe72f22c883,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2022,bioetanol combustion consumption by to the public,51.87621348,TJ,N2O,0.6,kg/TJ,31.125728087999995,kg -9b13714c-14ca-322d-a7ee-910fe423c605,SESCO,II.1.1,Santa Fe,AR-S,annual,2022,bioetanol combustion consumption by to the public,308.89009152,TJ,CH4,10.0,kg/TJ,3088.9009152,kg -300c9679-0fb1-383c-85eb-cf85257a9042,SESCO,II.1.1,Santa Fe,AR-S,annual,2022,bioetanol combustion consumption by to the public,308.89009152,TJ,N2O,0.6,kg/TJ,185.334054912,kg -d9f85088-85d8-31b2-9ec4-6a7b072a9e9b,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2022,bioetanol combustion consumption by to the public,54.98985995999999,TJ,CH4,10.0,kg/TJ,549.8985995999999,kg -a4b11201-030f-35f9-afee-c9d3f1d3ceb1,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2022,bioetanol combustion consumption by to the public,54.98985995999999,TJ,N2O,0.6,kg/TJ,32.99391597599999,kg -ce4f9412-085e-3e37-90ce-5c3a5d12d8c8,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2022,bioetanol combustion consumption by to the public,33.820642799999995,TJ,CH4,10.0,kg/TJ,338.20642799999996,kg -d15d3e45-89b3-398c-b949-5cc82cc61fe8,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2022,bioetanol combustion consumption by to the public,33.820642799999995,TJ,N2O,0.6,kg/TJ,20.292385679999995,kg -71b4b7f7-c4ae-394a-b4dc-ef8750af14fc,SESCO,II.1.1,Tucuman,AR-T,annual,2022,bioetanol combustion consumption by to the public,80.60458716,TJ,CH4,10.0,kg/TJ,806.0458715999999,kg -03b37faa-6db1-3f20-a1d9-f52c9d1403ed,SESCO,II.1.1,Tucuman,AR-T,annual,2022,bioetanol combustion consumption by to the public,80.60458716,TJ,N2O,0.6,kg/TJ,48.362752296,kg -2e005f71-b0b5-3ba1-9733-192aefc66a1a,SESCO,II.1.1,Buenos Aires,AR-B,annual,2022,bioetanol combustion consumption by freight transport,54.47091888,TJ,CH4,10.0,kg/TJ,544.7091888,kg -431e21fe-8879-371c-9446-f71db1470d89,SESCO,II.1.1,Buenos Aires,AR-B,annual,2022,bioetanol combustion consumption by freight transport,54.47091888,TJ,N2O,0.6,kg/TJ,32.682551327999995,kg -eafea905-a413-339c-99f6-e11c548c1408,SESCO,II.1.1,Capital Federal,AR-C,annual,2022,bioetanol combustion consumption by freight transport,7.298407799999999,TJ,CH4,10.0,kg/TJ,72.98407799999998,kg -d316b37d-2532-31e6-b865-f39ee5a276ed,SESCO,II.1.1,Capital Federal,AR-C,annual,2022,bioetanol combustion consumption by freight transport,7.298407799999999,TJ,N2O,0.6,kg/TJ,4.379044679999999,kg -2dadd01e-3bc6-38c2-96bb-d0634248fa2d,SESCO,II.1.1,Catamarca,AR-K,annual,2022,bioetanol combustion consumption by freight transport,0.3962357999999999,TJ,CH4,10.0,kg/TJ,3.962357999999999,kg -54b27e2a-f6f2-3a39-b136-a92bc0452e7b,SESCO,II.1.1,Catamarca,AR-K,annual,2022,bioetanol combustion consumption by freight transport,0.3962357999999999,TJ,N2O,0.6,kg/TJ,0.23774147999999995,kg -05b7a51f-d018-3d5a-a2a6-e938eae53bdd,SESCO,II.1.1,Chaco,AR-H,annual,2022,bioetanol combustion consumption by freight transport,1.4980269599999998,TJ,CH4,10.0,kg/TJ,14.980269599999998,kg -a6e27fe3-f602-30c0-9bb9-b0c11381a8c8,SESCO,II.1.1,Chaco,AR-H,annual,2022,bioetanol combustion consumption by freight transport,1.4980269599999998,TJ,N2O,0.6,kg/TJ,0.8988161759999999,kg -2437abe5-04d2-3c31-8c16-93da5871e301,SESCO,II.1.1,Chubut,AR-U,annual,2022,bioetanol combustion consumption by freight transport,1.8252410399999996,TJ,CH4,10.0,kg/TJ,18.252410399999995,kg -cd3ff636-313c-39dc-a089-ab6682bffd53,SESCO,II.1.1,Chubut,AR-U,annual,2022,bioetanol combustion consumption by freight transport,1.8252410399999996,TJ,N2O,0.6,kg/TJ,1.0951446239999998,kg -ce593eea-87e2-3bac-938c-d6a3447be705,SESCO,II.1.1,Corrientes,AR-W,annual,2022,bioetanol combustion consumption by freight transport,1.5159214799999998,TJ,CH4,10.0,kg/TJ,15.159214799999997,kg -28585b97-3745-3a6c-bc1c-01e756701e06,SESCO,II.1.1,Corrientes,AR-W,annual,2022,bioetanol combustion consumption by freight transport,1.5159214799999998,TJ,N2O,0.6,kg/TJ,0.9095528879999999,kg -d563c427-014b-3cf5-91ce-2a5e4e146ec4,SESCO,II.1.1,Córdoba,AR-X,annual,2022,bioetanol combustion consumption by freight transport,8.9983872,TJ,CH4,10.0,kg/TJ,89.98387199999999,kg -7c98f2a2-004e-392d-beee-59eaf21943c9,SESCO,II.1.1,Córdoba,AR-X,annual,2022,bioetanol combustion consumption by freight transport,8.9983872,TJ,N2O,0.6,kg/TJ,5.39903232,kg -e18bb183-8fb4-3c1d-bdab-df017bf92367,SESCO,II.1.1,Entre Rios,AR-E,annual,2022,bioetanol combustion consumption by freight transport,3.2389081199999996,TJ,CH4,10.0,kg/TJ,32.38908119999999,kg -ff0e7f2d-9e40-3bae-8c2d-cb13cd51caf6,SESCO,II.1.1,Entre Rios,AR-E,annual,2022,bioetanol combustion consumption by freight transport,3.2389081199999996,TJ,N2O,0.6,kg/TJ,1.9433448719999997,kg -781ab786-57fb-37f8-9f70-a4b36ebfd9a9,SESCO,II.1.1,Formosa,AR-P,annual,2022,bioetanol combustion consumption by freight transport,0.48315203999999995,TJ,CH4,10.0,kg/TJ,4.8315204,kg -641d8085-150f-3e6a-bdf6-173224152a41,SESCO,II.1.1,Formosa,AR-P,annual,2022,bioetanol combustion consumption by freight transport,0.48315203999999995,TJ,N2O,0.6,kg/TJ,0.28989122399999995,kg -afb5090a-d9e7-326f-9c02-248cdd774846,SESCO,II.1.1,Jujuy,AR-Y,annual,2022,bioetanol combustion consumption by freight transport,0.73623168,TJ,CH4,10.0,kg/TJ,7.3623168,kg -3fa9660d-b7c9-3b3c-b743-b20c925a5578,SESCO,II.1.1,Jujuy,AR-Y,annual,2022,bioetanol combustion consumption by freight transport,0.73623168,TJ,N2O,0.6,kg/TJ,0.44173900800000004,kg -22fd9657-6a1f-36e7-9f7b-14b0987650ca,SESCO,II.1.1,La Pampa,AR-L,annual,2022,bioetanol combustion consumption by freight transport,0.9177332399999999,TJ,CH4,10.0,kg/TJ,9.1773324,kg -2c3baca5-c4e8-3395-8706-5903a81e71bf,SESCO,II.1.1,La Pampa,AR-L,annual,2022,bioetanol combustion consumption by freight transport,0.9177332399999999,TJ,N2O,0.6,kg/TJ,0.5506399439999999,kg -a756a078-3f17-3c5d-82b6-d8e6a4c61217,SESCO,II.1.1,La Rioja,AR-F,annual,2022,bioetanol combustion consumption by freight transport,0.68254812,TJ,CH4,10.0,kg/TJ,6.8254812,kg -f398b893-1684-3ec4-b904-31fff587a38c,SESCO,II.1.1,La Rioja,AR-F,annual,2022,bioetanol combustion consumption by freight transport,0.68254812,TJ,N2O,0.6,kg/TJ,0.409528872,kg -182e7add-0577-3b5f-a639-236975bcd4dc,SESCO,II.1.1,Mendoza,AR-M,annual,2022,bioetanol combustion consumption by freight transport,4.1413032,TJ,CH4,10.0,kg/TJ,41.413032,kg -b9587177-0bb3-3df7-b68f-f1ff9071c7f5,SESCO,II.1.1,Mendoza,AR-M,annual,2022,bioetanol combustion consumption by freight transport,4.1413032,TJ,N2O,0.6,kg/TJ,2.48478192,kg -6a774ba3-7630-3a2b-b805-541bdd1f61ec,SESCO,II.1.1,Misiones,AR-N,annual,2022,bioetanol combustion consumption by freight transport,1.3932161999999997,TJ,CH4,10.0,kg/TJ,13.932161999999996,kg -6cd038b2-d625-3e91-b44e-8b77685f55e7,SESCO,II.1.1,Misiones,AR-N,annual,2022,bioetanol combustion consumption by freight transport,1.3932161999999997,TJ,N2O,0.6,kg/TJ,0.8359297199999998,kg -02c38665-581e-381c-bc4f-429ce205f97a,SESCO,II.1.1,Neuquén,AR-Q,annual,2022,bioetanol combustion consumption by freight transport,1.6769721599999998,TJ,CH4,10.0,kg/TJ,16.769721599999997,kg -cd1320d0-8d01-3f43-be56-cc12a39fdc09,SESCO,II.1.1,Neuquén,AR-Q,annual,2022,bioetanol combustion consumption by freight transport,1.6769721599999998,TJ,N2O,0.6,kg/TJ,1.006183296,kg -62f79345-720d-3a06-99e0-41ce260d02b7,SESCO,II.1.1,Rio Negro,AR-R,annual,2022,bioetanol combustion consumption by freight transport,1.9070445599999999,TJ,CH4,10.0,kg/TJ,19.0704456,kg -9092abf4-d3da-330b-b0e3-b9f964393f87,SESCO,II.1.1,Rio Negro,AR-R,annual,2022,bioetanol combustion consumption by freight transport,1.9070445599999999,TJ,N2O,0.6,kg/TJ,1.1442267359999998,kg -49a29f4c-f596-3590-a41a-3162d739afe7,SESCO,II.1.1,Salta,AR-A,annual,2022,bioetanol combustion consumption by freight transport,2.47455648,TJ,CH4,10.0,kg/TJ,24.7455648,kg -02d512ac-9c2b-3302-b16a-f2ba8ca368e2,SESCO,II.1.1,Salta,AR-A,annual,2022,bioetanol combustion consumption by freight transport,2.47455648,TJ,N2O,0.6,kg/TJ,1.4847338879999998,kg -3f555b9b-1266-3e17-9a83-e6debc88ae17,SESCO,II.1.1,San Juan,AR-J,annual,2022,bioetanol combustion consumption by freight transport,1.0966784399999998,TJ,CH4,10.0,kg/TJ,10.966784399999998,kg -a413a6a0-5ba2-3859-a76c-693b618dc39d,SESCO,II.1.1,San Juan,AR-J,annual,2022,bioetanol combustion consumption by freight transport,1.0966784399999998,TJ,N2O,0.6,kg/TJ,0.6580070639999999,kg -4fa2158d-4936-37fa-bbca-fc396461b630,SESCO,II.1.1,San Luis,AR-D,annual,2022,bioetanol combustion consumption by freight transport,0.9484095599999999,TJ,CH4,10.0,kg/TJ,9.484095599999998,kg -ccabcbee-9310-33c3-8e2a-c51588b7bebf,SESCO,II.1.1,San Luis,AR-D,annual,2022,bioetanol combustion consumption by freight transport,0.9484095599999999,TJ,N2O,0.6,kg/TJ,0.5690457359999999,kg -edbacc6a-1694-3451-b6ef-c6203db2dd2a,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2022,bioetanol combustion consumption by freight transport,1.0097622,TJ,CH4,10.0,kg/TJ,10.097622,kg -a0bcd035-84ea-33b4-93b1-c67a0b0ade2e,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2022,bioetanol combustion consumption by freight transport,1.0097622,TJ,N2O,0.6,kg/TJ,0.6058573199999999,kg -a7aa0c85-11b4-3763-bb21-0f9023b8133f,SESCO,II.1.1,Santa Fe,AR-S,annual,2022,bioetanol combustion consumption by freight transport,8.34907176,TJ,CH4,10.0,kg/TJ,83.4907176,kg -5834620a-4131-37ef-ac60-00a42b70ade7,SESCO,II.1.1,Santa Fe,AR-S,annual,2022,bioetanol combustion consumption by freight transport,8.34907176,TJ,N2O,0.6,kg/TJ,5.009443055999999,kg -ebc8cdfa-8cf2-38c2-b841-e0a10d956c33,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2022,bioetanol combustion consumption by freight transport,0.7848025199999998,TJ,CH4,10.0,kg/TJ,7.848025199999999,kg -795fe18b-4db2-3342-a1da-951c8034bbb3,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2022,bioetanol combustion consumption by freight transport,0.7848025199999998,TJ,N2O,0.6,kg/TJ,0.4708815119999999,kg -ef0ea6a7-0491-3996-932e-3ecc5ce93728,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2022,bioetanol combustion consumption by freight transport,0.9611913599999999,TJ,CH4,10.0,kg/TJ,9.6119136,kg -16ed9d4d-7710-3d18-a444-184dd945ce4f,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2022,bioetanol combustion consumption by freight transport,0.9611913599999999,TJ,N2O,0.6,kg/TJ,0.576714816,kg -850bae4b-f8a1-3ae7-bd04-e0e5503fd6e0,SESCO,II.1.1,Tucuman,AR-T,annual,2022,bioetanol combustion consumption by freight transport,2.71996704,TJ,CH4,10.0,kg/TJ,27.1996704,kg -3c0b1e2d-35a4-3912-a03f-327fa6f30c06,SESCO,II.1.1,Tucuman,AR-T,annual,2022,bioetanol combustion consumption by freight transport,2.71996704,TJ,N2O,0.6,kg/TJ,1.6319802239999999,kg -8d1ab358-c477-3986-8efc-83f4fd1cd954,SESCO,II.1.1,Buenos Aires,AR-B,annual,2022,bioetanol combustion consumption by freight transport,56.861115479999995,TJ,CH4,10.0,kg/TJ,568.6111547999999,kg -fb0a9a3e-77f1-3e84-a7d6-29f35b649e3c,SESCO,II.1.1,Buenos Aires,AR-B,annual,2022,bioetanol combustion consumption by freight transport,56.861115479999995,TJ,N2O,0.6,kg/TJ,34.116669288,kg -8725cb61-dd8e-31b9-9aa2-6f6f48632e83,SESCO,II.1.1,Capital Federal,AR-C,annual,2022,bioetanol combustion consumption by freight transport,10.07717112,TJ,CH4,10.0,kg/TJ,100.7717112,kg -6df9f63c-fa73-3aea-85b0-162bef932555,SESCO,II.1.1,Capital Federal,AR-C,annual,2022,bioetanol combustion consumption by freight transport,10.07717112,TJ,N2O,0.6,kg/TJ,6.0463026719999995,kg -2006156a-04ab-3c09-98d3-eb8a1a322a50,SESCO,II.1.1,Catamarca,AR-K,annual,2022,bioetanol combustion consumption by freight transport,0.1661634,TJ,CH4,10.0,kg/TJ,1.6616339999999998,kg -da2f4ccc-eb3d-3b9a-8dec-e796af178a4a,SESCO,II.1.1,Catamarca,AR-K,annual,2022,bioetanol combustion consumption by freight transport,0.1661634,TJ,N2O,0.6,kg/TJ,0.09969803999999999,kg -92b35201-c26e-31e4-9be2-b9bdd2e63812,SESCO,II.1.1,Chaco,AR-H,annual,2022,bioetanol combustion consumption by freight transport,1.39832892,TJ,CH4,10.0,kg/TJ,13.9832892,kg -12ba80d0-5008-3c23-95ad-764cbcc91987,SESCO,II.1.1,Chaco,AR-H,annual,2022,bioetanol combustion consumption by freight transport,1.39832892,TJ,N2O,0.6,kg/TJ,0.8389973519999999,kg -1f12f329-7800-3019-9f57-dbba8cc466de,SESCO,II.1.1,Chubut,AR-U,annual,2022,bioetanol combustion consumption by freight transport,1.3088563199999999,TJ,CH4,10.0,kg/TJ,13.0885632,kg -42894ba5-91ea-3473-a2b0-6cdb14f968f4,SESCO,II.1.1,Chubut,AR-U,annual,2022,bioetanol combustion consumption by freight transport,1.3088563199999999,TJ,N2O,0.6,kg/TJ,0.7853137919999998,kg -ccce4ccf-1755-3fa5-9100-b586feab74e7,SESCO,II.1.1,Corrientes,AR-W,annual,2022,bioetanol combustion consumption by freight transport,1.8099028799999999,TJ,CH4,10.0,kg/TJ,18.0990288,kg -30c5f6cd-49e1-3ce4-96a7-ef861c600299,SESCO,II.1.1,Corrientes,AR-W,annual,2022,bioetanol combustion consumption by freight transport,1.8099028799999999,TJ,N2O,0.6,kg/TJ,1.0859417279999999,kg -140b693a-a0e6-33ba-8081-e00fab3cedba,SESCO,II.1.1,Córdoba,AR-X,annual,2022,bioetanol combustion consumption by freight transport,11.081820599999999,TJ,CH4,10.0,kg/TJ,110.81820599999999,kg -933f97cb-d014-34e7-a4d6-880774e66ccb,SESCO,II.1.1,Córdoba,AR-X,annual,2022,bioetanol combustion consumption by freight transport,11.081820599999999,TJ,N2O,0.6,kg/TJ,6.649092359999999,kg -8ed3b188-8c21-35bd-ab80-7e97c28419e6,SESCO,II.1.1,Entre Rios,AR-E,annual,2022,bioetanol combustion consumption by freight transport,2.9909412,TJ,CH4,10.0,kg/TJ,29.909412,kg -a47cb48c-1b6d-3e27-aba5-0ac39698b610,SESCO,II.1.1,Entre Rios,AR-E,annual,2022,bioetanol combustion consumption by freight transport,2.9909412,TJ,N2O,0.6,kg/TJ,1.79456472,kg -a170682a-912c-3f8e-9069-2b831aa548a6,SESCO,II.1.1,Formosa,AR-P,annual,2022,bioetanol combustion consumption by freight transport,0.31187592,TJ,CH4,10.0,kg/TJ,3.1187591999999995,kg -99b8c909-7180-3f22-97e2-9cce0c07a16f,SESCO,II.1.1,Formosa,AR-P,annual,2022,bioetanol combustion consumption by freight transport,0.31187592,TJ,N2O,0.6,kg/TJ,0.18712555199999997,kg -f5a7de29-060c-3662-9788-8f19cb9e7442,SESCO,II.1.1,Jujuy,AR-Y,annual,2022,bioetanol combustion consumption by freight transport,0.40390488,TJ,CH4,10.0,kg/TJ,4.0390488,kg -c833ae67-5938-3ec1-a7b5-9815a769a68d,SESCO,II.1.1,Jujuy,AR-Y,annual,2022,bioetanol combustion consumption by freight transport,0.40390488,TJ,N2O,0.6,kg/TJ,0.242342928,kg -1b2751fe-51d9-3040-9153-49863b6f221d,SESCO,II.1.1,La Pampa,AR-L,annual,2022,bioetanol combustion consumption by freight transport,1.1375802,TJ,CH4,10.0,kg/TJ,11.375802,kg -24725ea3-0ff8-3213-ba54-a348980e7131,SESCO,II.1.1,La Pampa,AR-L,annual,2022,bioetanol combustion consumption by freight transport,1.1375802,TJ,N2O,0.6,kg/TJ,0.68254812,kg -f0602fcf-5fb2-364a-aa71-7b3179f3088a,SESCO,II.1.1,La Rioja,AR-F,annual,2022,bioetanol combustion consumption by freight transport,0.5879627999999999,TJ,CH4,10.0,kg/TJ,5.8796279999999985,kg -fa47ebe5-7bb7-308f-9a06-ffd3882a42e8,SESCO,II.1.1,La Rioja,AR-F,annual,2022,bioetanol combustion consumption by freight transport,0.5879627999999999,TJ,N2O,0.6,kg/TJ,0.3527776799999999,kg -4d772dd5-75f5-31f6-bb81-8f1713fa74f6,SESCO,II.1.1,Mendoza,AR-M,annual,2022,bioetanol combustion consumption by freight transport,5.7773736,TJ,CH4,10.0,kg/TJ,57.773736,kg -7d14d15e-86d3-3f87-b7ec-d7aefec47ec0,SESCO,II.1.1,Mendoza,AR-M,annual,2022,bioetanol combustion consumption by freight transport,5.7773736,TJ,N2O,0.6,kg/TJ,3.46642416,kg -b587720d-06ec-3358-a985-d77c025c5c55,SESCO,II.1.1,Misiones,AR-N,annual,2022,bioetanol combustion consumption by freight transport,1.4494561199999998,TJ,CH4,10.0,kg/TJ,14.494561199999998,kg -02f7af03-ab3f-3f0e-8510-757f82d318a2,SESCO,II.1.1,Misiones,AR-N,annual,2022,bioetanol combustion consumption by freight transport,1.4494561199999998,TJ,N2O,0.6,kg/TJ,0.8696736719999999,kg -7992eb50-ca19-3749-b69e-443492e2f8c7,SESCO,II.1.1,Neuquén,AR-Q,annual,2022,bioetanol combustion consumption by freight transport,3.56356584,TJ,CH4,10.0,kg/TJ,35.6356584,kg -eb1bded1-5c26-3036-a1b6-601c964cfab1,SESCO,II.1.1,Neuquén,AR-Q,annual,2022,bioetanol combustion consumption by freight transport,3.56356584,TJ,N2O,0.6,kg/TJ,2.1381395039999997,kg -a47e1062-0b76-3d04-a8b5-6968b935ad6b,SESCO,II.1.1,Rio Negro,AR-R,annual,2022,bioetanol combustion consumption by freight transport,3.2337953999999995,TJ,CH4,10.0,kg/TJ,32.337953999999996,kg -7a383461-0973-3f9a-af13-675892608285,SESCO,II.1.1,Rio Negro,AR-R,annual,2022,bioetanol combustion consumption by freight transport,3.2337953999999995,TJ,N2O,0.6,kg/TJ,1.9402772399999997,kg -397cef0c-515c-313d-92aa-7cefdbb015e2,SESCO,II.1.1,Salta,AR-A,annual,2022,bioetanol combustion consumption by freight transport,1.9223827199999999,TJ,CH4,10.0,kg/TJ,19.2238272,kg -3d3a3329-f8d5-3957-b28d-a749fe177ca2,SESCO,II.1.1,Salta,AR-A,annual,2022,bioetanol combustion consumption by freight transport,1.9223827199999999,TJ,N2O,0.6,kg/TJ,1.153429632,kg -5ff36317-70b5-3819-b7d7-b9510b753c5f,SESCO,II.1.1,San Juan,AR-J,annual,2022,bioetanol combustion consumption by freight transport,0.7490134799999999,TJ,CH4,10.0,kg/TJ,7.490134799999999,kg -79642fec-3460-3122-a28f-d58ec40bb7c1,SESCO,II.1.1,San Juan,AR-J,annual,2022,bioetanol combustion consumption by freight transport,0.7490134799999999,TJ,N2O,0.6,kg/TJ,0.44940808799999993,kg -2f16a00e-5aa4-3040-89de-58b4be718254,SESCO,II.1.1,San Luis,AR-D,annual,2022,bioetanol combustion consumption by freight transport,0.80269704,TJ,CH4,10.0,kg/TJ,8.0269704,kg -fea7755e-81b9-3541-ab55-24930adf4934,SESCO,II.1.1,San Luis,AR-D,annual,2022,bioetanol combustion consumption by freight transport,0.80269704,TJ,N2O,0.6,kg/TJ,0.481618224,kg -aa5232b0-0006-3ce1-9d43-620c86ed31d1,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2022,bioetanol combustion consumption by freight transport,0.54450468,TJ,CH4,10.0,kg/TJ,5.4450468,kg -5e159361-1646-3c07-9b17-a50ba4b67669,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2022,bioetanol combustion consumption by freight transport,0.54450468,TJ,N2O,0.6,kg/TJ,0.32670280799999996,kg -385c351f-48fc-30e6-bea0-69ee5a0b598c,SESCO,II.1.1,Santa Fe,AR-S,annual,2022,bioetanol combustion consumption by freight transport,9.330714,TJ,CH4,10.0,kg/TJ,93.30714,kg -6f00359d-f11b-34df-9a4c-28e79e5c42f1,SESCO,II.1.1,Santa Fe,AR-S,annual,2022,bioetanol combustion consumption by freight transport,9.330714,TJ,N2O,0.6,kg/TJ,5.5984284,kg -c167b794-291b-3ac1-aa9f-a1dc81cc01f7,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2022,bioetanol combustion consumption by freight transport,0.5087156399999999,TJ,CH4,10.0,kg/TJ,5.0871564,kg -20c14a4c-b38b-3d96-9c40-441f07fb15b4,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2022,bioetanol combustion consumption by freight transport,0.5087156399999999,TJ,N2O,0.6,kg/TJ,0.30522938399999994,kg -acfdf1e8-cba5-3740-b03d-c96c3ab71b29,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2022,bioetanol combustion consumption by freight transport,0.6135263999999999,TJ,CH4,10.0,kg/TJ,6.135263999999999,kg -bc9ddd36-947f-3998-82c2-1d90a69bd42b,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2022,bioetanol combustion consumption by freight transport,0.6135263999999999,TJ,N2O,0.6,kg/TJ,0.3681158399999999,kg -2517bacc-da01-30c7-a301-22f07740dfa7,SESCO,II.1.1,Tucuman,AR-T,annual,2022,bioetanol combustion consumption by freight transport,1.3727653199999998,TJ,CH4,10.0,kg/TJ,13.727653199999999,kg -3393224c-e71c-3b0a-89f3-2c10c1a208c0,SESCO,II.1.1,Tucuman,AR-T,annual,2022,bioetanol combustion consumption by freight transport,1.3727653199999998,TJ,N2O,0.6,kg/TJ,0.8236591919999999,kg -7a054522-2924-3c49-8f37-3cb1f73c3047,SESCO,II.5.1,Buenos Aires,AR-B,annual,2023,bioetanol combustion consumption by agriculture machines,2.8350032399999994,TJ,CH4,10.0,kg/TJ,28.350032399999993,kg -2a2e0229-14c8-30c4-bfd6-b47cf27f8793,SESCO,II.5.1,Buenos Aires,AR-B,annual,2023,bioetanol combustion consumption by agriculture machines,2.8350032399999994,TJ,N2O,0.6,kg/TJ,1.7010019439999995,kg -47e75d01-5a6f-3511-8b2d-9f4c95bedfa0,SESCO,II.5.1,Córdoba,AR-X,annual,2023,bioetanol combustion consumption by agriculture machines,1.1478056399999998,TJ,CH4,10.0,kg/TJ,11.478056399999998,kg -42715fee-3881-3bd4-a740-0c02115a1963,SESCO,II.5.1,Córdoba,AR-X,annual,2023,bioetanol combustion consumption by agriculture machines,1.1478056399999998,TJ,N2O,0.6,kg/TJ,0.6886833839999998,kg -2b2c2c03-19ad-321f-8d12-c235e7a8a72b,SESCO,II.5.1,Tucuman,AR-T,annual,2023,bioetanol combustion consumption by agriculture machines,0.62375184,TJ,CH4,10.0,kg/TJ,6.237518399999999,kg -2d7234cd-9a8e-3953-add6-1df4d0e24059,SESCO,II.5.1,Tucuman,AR-T,annual,2023,bioetanol combustion consumption by agriculture machines,0.62375184,TJ,N2O,0.6,kg/TJ,0.37425110399999995,kg -273536c4-8acc-3654-bbbb-72832643be86,SESCO,II.5.1,Buenos Aires,AR-B,annual,2023,bioetanol combustion consumption by agriculture machines,0.36555948,TJ,CH4,10.0,kg/TJ,3.6555948,kg -19a87ded-8fe5-3fd6-8990-e4b7597f7fae,SESCO,II.5.1,Buenos Aires,AR-B,annual,2023,bioetanol combustion consumption by agriculture machines,0.36555948,TJ,N2O,0.6,kg/TJ,0.219335688,kg -439b43e1-7c4d-3997-9f8e-06ca2d9c954b,SESCO,II.5.1,Córdoba,AR-X,annual,2023,bioetanol combustion consumption by agriculture machines,0.12014891999999999,TJ,CH4,10.0,kg/TJ,1.2014892,kg -f369918c-b683-30de-bed7-78186b18c6c4,SESCO,II.5.1,Córdoba,AR-X,annual,2023,bioetanol combustion consumption by agriculture machines,0.12014891999999999,TJ,N2O,0.6,kg/TJ,0.072089352,kg -73a8d45d-19d9-3a22-9f0c-ad3df76b99ae,SESCO,II.5.1,Tucuman,AR-T,annual,2023,bioetanol combustion consumption by agriculture machines,0.015338159999999998,TJ,CH4,10.0,kg/TJ,0.15338159999999998,kg -40c67e36-df2c-35c5-9285-23a128ecbbce,SESCO,II.5.1,Tucuman,AR-T,annual,2023,bioetanol combustion consumption by agriculture machines,0.015338159999999998,TJ,N2O,0.6,kg/TJ,0.009202895999999999,kg -f33aec77-6c0d-3c4f-a5b7-e295bd351170,SESCO,II.1.1,Buenos Aires,AR-B,annual,2023,bioetanol combustion consumption by to the public,120.00320747999999,TJ,CH4,10.0,kg/TJ,1200.0320748,kg -76bcde04-8e15-3ed3-b1e5-f61fd4b7187f,SESCO,II.1.1,Buenos Aires,AR-B,annual,2023,bioetanol combustion consumption by to the public,120.00320747999999,TJ,N2O,0.6,kg/TJ,72.00192448799999,kg -11098db3-8867-3518-b302-84e2de3bff1b,SESCO,II.1.1,Capital Federal,AR-C,annual,2023,bioetanol combustion consumption by to the public,6.83570664,TJ,CH4,10.0,kg/TJ,68.3570664,kg -d9c517bf-d42f-3405-8f9d-67e8bf3d19de,SESCO,II.1.1,Capital Federal,AR-C,annual,2023,bioetanol combustion consumption by to the public,6.83570664,TJ,N2O,0.6,kg/TJ,4.101423983999999,kg -703ec5ee-392a-3fd0-8f88-401789781645,SESCO,II.1.1,Catamarca,AR-K,annual,2023,bioetanol combustion consumption by to the public,2.60237448,TJ,CH4,10.0,kg/TJ,26.0237448,kg -21063a3c-4bb5-300e-ae49-007bbfef7d63,SESCO,II.1.1,Catamarca,AR-K,annual,2023,bioetanol combustion consumption by to the public,2.60237448,TJ,N2O,0.6,kg/TJ,1.561424688,kg -5a217653-abe7-3d64-ab7c-3fc336d6b398,SESCO,II.1.1,Corrientes,AR-W,annual,2023,bioetanol combustion consumption by to the public,0.05368356,TJ,CH4,10.0,kg/TJ,0.5368356,kg -9835cb43-f60b-3286-ad93-a32af17c08a8,SESCO,II.1.1,Corrientes,AR-W,annual,2023,bioetanol combustion consumption by to the public,0.05368356,TJ,N2O,0.6,kg/TJ,0.032210136,kg -f4979ef3-98a5-3716-aba1-95e20cfbb283,SESCO,II.1.1,Córdoba,AR-X,annual,2023,bioetanol combustion consumption by to the public,43.39932372,TJ,CH4,10.0,kg/TJ,433.99323719999995,kg -eca41356-40f6-3114-9add-4e2647474a0e,SESCO,II.1.1,Córdoba,AR-X,annual,2023,bioetanol combustion consumption by to the public,43.39932372,TJ,N2O,0.6,kg/TJ,26.039594232,kg -f9288476-e604-3b7d-85c4-f4c3603e50da,SESCO,II.1.1,Entre Rios,AR-E,annual,2023,bioetanol combustion consumption by to the public,12.697440119999998,TJ,CH4,10.0,kg/TJ,126.97440119999997,kg -ada28ac5-6c54-3194-82f5-00da42b52565,SESCO,II.1.1,Entre Rios,AR-E,annual,2023,bioetanol combustion consumption by to the public,12.697440119999998,TJ,N2O,0.6,kg/TJ,7.618464071999998,kg -c49a220e-a610-3f5f-ac9f-8fe9f134bc00,SESCO,II.1.1,La Rioja,AR-F,annual,2023,bioetanol combustion consumption by to the public,0.11503619999999998,TJ,CH4,10.0,kg/TJ,1.1503619999999999,kg -dbad50e4-6ea2-312c-a60a-85e41b3e54c0,SESCO,II.1.1,La Rioja,AR-F,annual,2023,bioetanol combustion consumption by to the public,0.11503619999999998,TJ,N2O,0.6,kg/TJ,0.06902171999999998,kg -182f49ab-04ad-3968-803c-b528c773b64c,SESCO,II.1.1,Mendoza,AR-M,annual,2023,bioetanol combustion consumption by to the public,31.780667519999998,TJ,CH4,10.0,kg/TJ,317.8066752,kg -ef26f952-9d5a-3b7f-951f-84e15edf36b9,SESCO,II.1.1,Mendoza,AR-M,annual,2023,bioetanol combustion consumption by to the public,31.780667519999998,TJ,N2O,0.6,kg/TJ,19.068400511999997,kg -78990c8a-6539-30e0-a8aa-0d7847913780,SESCO,II.1.1,San Luis,AR-D,annual,2023,bioetanol combustion consumption by to the public,5.186854439999999,TJ,CH4,10.0,kg/TJ,51.86854439999999,kg -8c79d313-055d-3961-b146-3097dba94245,SESCO,II.1.1,San Luis,AR-D,annual,2023,bioetanol combustion consumption by to the public,5.186854439999999,TJ,N2O,0.6,kg/TJ,3.1121126639999996,kg -7d4f2f9c-7870-3e7a-bad4-42474c6d43c9,SESCO,II.1.1,Santa Fe,AR-S,annual,2023,bioetanol combustion consumption by to the public,37.24616519999999,TJ,CH4,10.0,kg/TJ,372.46165199999996,kg -d0d1b9fb-abb6-3762-8bad-b9839ff8f1a8,SESCO,II.1.1,Santa Fe,AR-S,annual,2023,bioetanol combustion consumption by to the public,37.24616519999999,TJ,N2O,0.6,kg/TJ,22.347699119999994,kg -7bc8449b-4d76-3f3d-b8af-67679e212f5d,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2023,bioetanol combustion consumption by to the public,4.785505919999999,TJ,CH4,10.0,kg/TJ,47.85505919999999,kg -297f83eb-de3c-3f08-adf3-1e3e0f970d41,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2023,bioetanol combustion consumption by to the public,4.785505919999999,TJ,N2O,0.6,kg/TJ,2.8713035519999996,kg -0290de53-b592-368b-9fd1-078dc3e2cec9,SESCO,II.1.1,Tucuman,AR-T,annual,2023,bioetanol combustion consumption by to the public,1.74343752,TJ,CH4,10.0,kg/TJ,17.4343752,kg -ea558be7-12a7-3750-a23f-3728fd2fc7be,SESCO,II.1.1,Tucuman,AR-T,annual,2023,bioetanol combustion consumption by to the public,1.74343752,TJ,N2O,0.6,kg/TJ,1.046062512,kg -2028e601-a71c-326e-8023-f37bb1e65aa4,SESCO,II.1.1,Buenos Aires,AR-B,annual,2023,bioetanol combustion consumption by to the public,8.995830839999998,TJ,CH4,10.0,kg/TJ,89.95830839999998,kg -776e4c97-851a-3347-b6b3-cfabeb4acbbd,SESCO,II.1.1,Buenos Aires,AR-B,annual,2023,bioetanol combustion consumption by to the public,8.995830839999998,TJ,N2O,0.6,kg/TJ,5.397498503999999,kg -f7c94193-2eab-3435-a776-1c28b47dfb1e,SESCO,II.1.1,Capital Federal,AR-C,annual,2023,bioetanol combustion consumption by to the public,0.86660604,TJ,CH4,10.0,kg/TJ,8.6660604,kg -af1df5fd-4ae9-3d17-8a3d-095971c7bd85,SESCO,II.1.1,Capital Federal,AR-C,annual,2023,bioetanol combustion consumption by to the public,0.86660604,TJ,N2O,0.6,kg/TJ,0.519963624,kg -769aa5b3-2d25-3bbd-b1a6-88fb7571078f,SESCO,II.1.1,Catamarca,AR-K,annual,2023,bioetanol combustion consumption by to the public,0.31443228,TJ,CH4,10.0,kg/TJ,3.1443228000000003,kg -655eab8f-f67c-3c8d-a876-3c24261686bc,SESCO,II.1.1,Catamarca,AR-K,annual,2023,bioetanol combustion consumption by to the public,0.31443228,TJ,N2O,0.6,kg/TJ,0.188659368,kg -7f84cb44-ca23-3ab2-901d-16f1ec67b558,SESCO,II.1.1,Córdoba,AR-X,annual,2023,bioetanol combustion consumption by to the public,4.64490612,TJ,CH4,10.0,kg/TJ,46.4490612,kg -1cca27fa-ec73-36df-9971-7930496254e4,SESCO,II.1.1,Córdoba,AR-X,annual,2023,bioetanol combustion consumption by to the public,4.64490612,TJ,N2O,0.6,kg/TJ,2.786943672,kg -ce99b815-5149-3071-8ac0-a508a58406bb,SESCO,II.1.1,Entre Rios,AR-E,annual,2023,bioetanol combustion consumption by to the public,1.6590776399999998,TJ,CH4,10.0,kg/TJ,16.5907764,kg -167e337d-de7f-38e0-8938-efbaa805207e,SESCO,II.1.1,Entre Rios,AR-E,annual,2023,bioetanol combustion consumption by to the public,1.6590776399999998,TJ,N2O,0.6,kg/TJ,0.9954465839999999,kg -c58b36c5-ae18-326e-b899-4c605c23d9e9,SESCO,II.1.1,La Rioja,AR-F,annual,2023,bioetanol combustion consumption by to the public,0.043458119999999996,TJ,CH4,10.0,kg/TJ,0.43458119999999995,kg -36293cf3-5f21-3b4a-abcf-b0d96db76071,SESCO,II.1.1,La Rioja,AR-F,annual,2023,bioetanol combustion consumption by to the public,0.043458119999999996,TJ,N2O,0.6,kg/TJ,0.026074871999999995,kg -ac13e83a-e3ff-369b-ba5f-7afeb47a0fbc,SESCO,II.1.1,Mendoza,AR-M,annual,2023,bioetanol combustion consumption by to the public,4.55543352,TJ,CH4,10.0,kg/TJ,45.554335200000004,kg -3758a8b5-64bd-36e3-8015-f3b66d84567d,SESCO,II.1.1,Mendoza,AR-M,annual,2023,bioetanol combustion consumption by to the public,4.55543352,TJ,N2O,0.6,kg/TJ,2.733260112,kg -a60cda4a-48a7-3347-9ae8-f38947ae4d0d,SESCO,II.1.1,San Luis,AR-D,annual,2023,bioetanol combustion consumption by to the public,0.21984696,TJ,CH4,10.0,kg/TJ,2.1984696,kg -2ae31a6c-68cc-3582-a167-733039afc1ef,SESCO,II.1.1,San Luis,AR-D,annual,2023,bioetanol combustion consumption by to the public,0.21984696,TJ,N2O,0.6,kg/TJ,0.131908176,kg -82c13ef0-70f6-3d36-977d-99e7a9e81e8b,SESCO,II.1.1,Santa Fe,AR-S,annual,2023,bioetanol combustion consumption by to the public,5.1612908399999995,TJ,CH4,10.0,kg/TJ,51.612908399999995,kg -422bd458-9674-3f44-837b-3714a39337c6,SESCO,II.1.1,Santa Fe,AR-S,annual,2023,bioetanol combustion consumption by to the public,5.1612908399999995,TJ,N2O,0.6,kg/TJ,3.0967745039999994,kg -c6a90c91-4ba4-3494-804b-646aebba0ad2,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2023,bioetanol combustion consumption by to the public,0.4090176,TJ,CH4,10.0,kg/TJ,4.090176,kg -e4b6f92f-503b-3958-afda-594138ed806f,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2023,bioetanol combustion consumption by to the public,0.4090176,TJ,N2O,0.6,kg/TJ,0.24541055999999997,kg -8f99b71d-4a54-39f5-976a-7e97dfe894c7,SESCO,II.1.1,Tucuman,AR-T,annual,2023,bioetanol combustion consumption by to the public,0.043458119999999996,TJ,CH4,10.0,kg/TJ,0.43458119999999995,kg -861a5393-ec1a-3545-80b6-88d54d244faa,SESCO,II.1.1,Tucuman,AR-T,annual,2023,bioetanol combustion consumption by to the public,0.043458119999999996,TJ,N2O,0.6,kg/TJ,0.026074871999999995,kg -c7e4da88-633f-3145-a072-1be606e17d8d,SESCO,II.5.1,Buenos Aires,AR-B,annual,2023,bioetanol combustion consumption by agriculture machines,0.5189410799999999,TJ,CH4,10.0,kg/TJ,5.189410799999999,kg -f491f814-96f7-383a-b6f9-1e8c676f4aec,SESCO,II.5.1,Buenos Aires,AR-B,annual,2023,bioetanol combustion consumption by agriculture machines,0.5189410799999999,TJ,N2O,0.6,kg/TJ,0.31136464799999997,kg -031c3d44-8d7c-3249-8059-e9d35950be9d,SESCO,II.5.1,Capital Federal,AR-C,annual,2023,bioetanol combustion consumption by agriculture machines,0.19939607999999998,TJ,CH4,10.0,kg/TJ,1.9939607999999998,kg -2e3aa5a2-0802-3ead-aec9-02fd615ecc85,SESCO,II.5.1,Capital Federal,AR-C,annual,2023,bioetanol combustion consumption by agriculture machines,0.19939607999999998,TJ,N2O,0.6,kg/TJ,0.11963764799999999,kg -91509ae1-f80c-31bf-82dd-c292018b8f30,SESCO,II.5.1,Córdoba,AR-X,annual,2023,bioetanol combustion consumption by agriculture machines,3.41785332,TJ,CH4,10.0,kg/TJ,34.1785332,kg -657147b5-ee80-37ca-9961-adfa2522b5e3,SESCO,II.5.1,Córdoba,AR-X,annual,2023,bioetanol combustion consumption by agriculture machines,3.41785332,TJ,N2O,0.6,kg/TJ,2.0507119919999997,kg -09c9c992-b529-305b-bb41-fcd71e0e6b3f,SESCO,II.5.1,Santa Fe,AR-S,annual,2023,bioetanol combustion consumption by agriculture machines,1.77411384,TJ,CH4,10.0,kg/TJ,17.7411384,kg -90404223-cff2-326a-b0e1-63fd2b55b6d1,SESCO,II.5.1,Santa Fe,AR-S,annual,2023,bioetanol combustion consumption by agriculture machines,1.77411384,TJ,N2O,0.6,kg/TJ,1.064468304,kg -ddb32f52-a346-30ee-a665-7dc9643e3a98,SESCO,II.5.1,Buenos Aires,AR-B,annual,2023,bioetanol combustion consumption by agriculture machines,0.06902172,TJ,CH4,10.0,kg/TJ,0.6902172,kg -dfdf3062-8170-3bb2-9c43-014024f98404,SESCO,II.5.1,Buenos Aires,AR-B,annual,2023,bioetanol combustion consumption by agriculture machines,0.06902172,TJ,N2O,0.6,kg/TJ,0.041413031999999995,kg -4491f7bb-5345-3cef-890c-cd8ed1ea1b00,SESCO,II.5.1,Córdoba,AR-X,annual,2023,bioetanol combustion consumption by agriculture machines,0.1789452,TJ,CH4,10.0,kg/TJ,1.789452,kg -b3e81c62-57d1-3b3f-a279-bfbeef77110b,SESCO,II.5.1,Córdoba,AR-X,annual,2023,bioetanol combustion consumption by agriculture machines,0.1789452,TJ,N2O,0.6,kg/TJ,0.10736712,kg -cd2a5fcf-ff96-307b-b619-3496dd5b164b,SESCO,II.5.1,Santa Fe,AR-S,annual,2023,bioetanol combustion consumption by agriculture machines,0.10481075999999999,TJ,CH4,10.0,kg/TJ,1.0481075999999998,kg -4cf820c9-c95b-3d3f-9128-467685d43941,SESCO,II.5.1,Santa Fe,AR-S,annual,2023,bioetanol combustion consumption by agriculture machines,0.10481075999999999,TJ,N2O,0.6,kg/TJ,0.062886456,kg -38fab0e7-3bad-3ce0-85cf-672bfe65cc96,SESCO,II.1.1,Buenos Aires,AR-B,annual,2023,bioetanol combustion consumption by to the public,77.54718059999999,TJ,CH4,10.0,kg/TJ,775.4718059999999,kg -6475cdd7-feae-38d3-ada0-c86fa41d0149,SESCO,II.1.1,Buenos Aires,AR-B,annual,2023,bioetanol combustion consumption by to the public,77.54718059999999,TJ,N2O,0.6,kg/TJ,46.52830835999999,kg -cb4aa4f4-d6c2-3ed9-829d-1ae01f1e2761,SESCO,II.1.1,Capital Federal,AR-C,annual,2023,bioetanol combustion consumption by to the public,8.86034376,TJ,CH4,10.0,kg/TJ,88.60343759999999,kg -9fe9a5dc-548a-3d05-952f-70ed028fa6d0,SESCO,II.1.1,Capital Federal,AR-C,annual,2023,bioetanol combustion consumption by to the public,8.86034376,TJ,N2O,0.6,kg/TJ,5.316206255999999,kg -ab6e4aef-99c3-38cd-80f2-0215312622fe,SESCO,II.1.1,Catamarca,AR-K,annual,2023,bioetanol combustion consumption by to the public,6.51616164,TJ,CH4,10.0,kg/TJ,65.1616164,kg -0022fe4c-42ef-3e8f-9334-4b37b1538aa1,SESCO,II.1.1,Catamarca,AR-K,annual,2023,bioetanol combustion consumption by to the public,6.51616164,TJ,N2O,0.6,kg/TJ,3.909696984,kg -8a373e49-c90d-3c0b-9868-d70729aee560,SESCO,II.1.1,Chaco,AR-H,annual,2023,bioetanol combustion consumption by to the public,22.544538839999998,TJ,CH4,10.0,kg/TJ,225.44538839999998,kg -fdf78f90-a410-3b12-aff2-eb9ea568081b,SESCO,II.1.1,Chaco,AR-H,annual,2023,bioetanol combustion consumption by to the public,22.544538839999998,TJ,N2O,0.6,kg/TJ,13.526723303999999,kg -5d7fbc4a-e60b-3ac6-8146-c6b84e65513c,SESCO,II.1.1,Corrientes,AR-W,annual,2023,bioetanol combustion consumption by to the public,21.0132792,TJ,CH4,10.0,kg/TJ,210.132792,kg -fc0ff1e1-1aad-33cb-a027-be540cc4f80f,SESCO,II.1.1,Corrientes,AR-W,annual,2023,bioetanol combustion consumption by to the public,21.0132792,TJ,N2O,0.6,kg/TJ,12.607967519999999,kg -cc824605-5a00-36c2-8f22-f09cbf3822b7,SESCO,II.1.1,Córdoba,AR-X,annual,2023,bioetanol combustion consumption by to the public,33.72861384,TJ,CH4,10.0,kg/TJ,337.2861384,kg -12eed125-38bf-3e8e-95a8-b6d0a700c5e1,SESCO,II.1.1,Córdoba,AR-X,annual,2023,bioetanol combustion consumption by to the public,33.72861384,TJ,N2O,0.6,kg/TJ,20.237168304,kg -8302f00b-616c-3b21-937d-a882d81e1682,SESCO,II.1.1,Entre Rios,AR-E,annual,2023,bioetanol combustion consumption by to the public,22.40393904,TJ,CH4,10.0,kg/TJ,224.0393904,kg -a9c2f4dd-6fdf-37c8-a528-73a02bfdbcc2,SESCO,II.1.1,Entre Rios,AR-E,annual,2023,bioetanol combustion consumption by to the public,22.40393904,TJ,N2O,0.6,kg/TJ,13.442363424,kg -2ff322c8-09f4-3d3e-a8a9-eb21d1a648c0,SESCO,II.1.1,Formosa,AR-P,annual,2023,bioetanol combustion consumption by to the public,2.88101772,TJ,CH4,10.0,kg/TJ,28.8101772,kg -64a99ec1-1bee-3094-8369-abf42967f0d5,SESCO,II.1.1,Formosa,AR-P,annual,2023,bioetanol combustion consumption by to the public,2.88101772,TJ,N2O,0.6,kg/TJ,1.7286106319999999,kg -90ebfb6a-fc33-3738-a2f8-eed905c5e08b,SESCO,II.1.1,La Rioja,AR-F,annual,2023,bioetanol combustion consumption by to the public,8.221253759999998,TJ,CH4,10.0,kg/TJ,82.21253759999998,kg -1d25eb87-80b0-326d-885a-ac9440bd4fd3,SESCO,II.1.1,La Rioja,AR-F,annual,2023,bioetanol combustion consumption by to the public,8.221253759999998,TJ,N2O,0.6,kg/TJ,4.932752255999999,kg -a68350ec-0a0e-3b59-bfa8-1ee7c2c75e05,SESCO,II.1.1,Mendoza,AR-M,annual,2023,bioetanol combustion consumption by to the public,32.97960036,TJ,CH4,10.0,kg/TJ,329.7960036,kg -90605d44-7904-3ace-b3dd-36257e2ab7fb,SESCO,II.1.1,Mendoza,AR-M,annual,2023,bioetanol combustion consumption by to the public,32.97960036,TJ,N2O,0.6,kg/TJ,19.787760216,kg -5ba1b653-84df-3246-9854-72e3d8ba5f50,SESCO,II.1.1,Misiones,AR-N,annual,2023,bioetanol combustion consumption by to the public,22.66724412,TJ,CH4,10.0,kg/TJ,226.67244119999998,kg -e4a8b73f-6e37-3204-b304-4bbb83be75a9,SESCO,II.1.1,Misiones,AR-N,annual,2023,bioetanol combustion consumption by to the public,22.66724412,TJ,N2O,0.6,kg/TJ,13.600346472,kg -b04472b6-400d-30c4-aa3a-c6558d5558e2,SESCO,II.1.1,San Juan,AR-J,annual,2023,bioetanol combustion consumption by to the public,8.80410384,TJ,CH4,10.0,kg/TJ,88.04103839999999,kg -cb0f4676-4254-36dc-b099-bc0c1abc82f3,SESCO,II.1.1,San Juan,AR-J,annual,2023,bioetanol combustion consumption by to the public,8.80410384,TJ,N2O,0.6,kg/TJ,5.282462304,kg -c35a4cd5-3118-35af-8dbc-c8d25f398206,SESCO,II.1.1,San Luis,AR-D,annual,2023,bioetanol combustion consumption by to the public,2.8043269199999994,TJ,CH4,10.0,kg/TJ,28.043269199999994,kg -4aeae859-6d37-3635-93d3-ed2375efb890,SESCO,II.1.1,San Luis,AR-D,annual,2023,bioetanol combustion consumption by to the public,2.8043269199999994,TJ,N2O,0.6,kg/TJ,1.6825961519999997,kg -25c6287a-badf-3dab-aaa1-4ef6afb3b27e,SESCO,II.1.1,Santa Fe,AR-S,annual,2023,bioetanol combustion consumption by to the public,46.99356588,TJ,CH4,10.0,kg/TJ,469.9356588,kg -cc6b98e5-8ddd-37ea-a177-aeab204ad8c6,SESCO,II.1.1,Santa Fe,AR-S,annual,2023,bioetanol combustion consumption by to the public,46.99356588,TJ,N2O,0.6,kg/TJ,28.196139528,kg -a74720d8-0cde-3fc1-ab80-188a8044fa58,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2023,bioetanol combustion consumption by to the public,13.415777279999999,TJ,CH4,10.0,kg/TJ,134.15777279999998,kg -633f9555-00d4-3848-99cf-49ba60d1fa1f,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2023,bioetanol combustion consumption by to the public,13.415777279999999,TJ,N2O,0.6,kg/TJ,8.049466368,kg -00b12c48-2084-3d14-aaff-0aa9021288b5,SESCO,II.1.1,Tucuman,AR-T,annual,2023,bioetanol combustion consumption by to the public,3.9700270799999995,TJ,CH4,10.0,kg/TJ,39.7002708,kg -b1490b25-4b3b-37e5-a6ad-a30341b9fd4f,SESCO,II.1.1,Tucuman,AR-T,annual,2023,bioetanol combustion consumption by to the public,3.9700270799999995,TJ,N2O,0.6,kg/TJ,2.382016248,kg -3abddf02-1ae9-3280-aeff-bf0e6ea581b0,SESCO,II.1.1,Buenos Aires,AR-B,annual,2023,bioetanol combustion consumption by to the public,9.545448239999999,TJ,CH4,10.0,kg/TJ,95.45448239999999,kg -d83b7243-8503-31ef-b78d-c25978af5136,SESCO,II.1.1,Buenos Aires,AR-B,annual,2023,bioetanol combustion consumption by to the public,9.545448239999999,TJ,N2O,0.6,kg/TJ,5.7272689439999995,kg -3af9ce6d-7843-3f7a-922e-8637a4b7508b,SESCO,II.1.1,Capital Federal,AR-C,annual,2023,bioetanol combustion consumption by to the public,1.3395326399999998,TJ,CH4,10.0,kg/TJ,13.395326399999998,kg -87a1971c-0fd3-37b0-a35a-86f1e9fb5893,SESCO,II.1.1,Capital Federal,AR-C,annual,2023,bioetanol combustion consumption by to the public,1.3395326399999998,TJ,N2O,0.6,kg/TJ,0.8037195839999999,kg -6adf77ad-7abf-3e4d-beb9-55cbe743c7ea,SESCO,II.1.1,Catamarca,AR-K,annual,2023,bioetanol combustion consumption by to the public,0.9279586799999998,TJ,CH4,10.0,kg/TJ,9.279586799999999,kg -0248a0c6-930e-30d9-b828-887d8345dde6,SESCO,II.1.1,Catamarca,AR-K,annual,2023,bioetanol combustion consumption by to the public,0.9279586799999998,TJ,N2O,0.6,kg/TJ,0.5567752079999999,kg -90f5d88e-d0f2-361b-b6f9-a4a0d75741ae,SESCO,II.1.1,Chaco,AR-H,annual,2023,bioetanol combustion consumption by to the public,1.8150156,TJ,CH4,10.0,kg/TJ,18.150156,kg -7c1547ad-ccb6-31d0-8c7a-a0d39956030a,SESCO,II.1.1,Chaco,AR-H,annual,2023,bioetanol combustion consumption by to the public,1.8150156,TJ,N2O,0.6,kg/TJ,1.08900936,kg -0a02db59-0184-3b8f-b36d-5a62f5d02c7b,SESCO,II.1.1,Corrientes,AR-W,annual,2023,bioetanol combustion consumption by to the public,1.04299488,TJ,CH4,10.0,kg/TJ,10.4299488,kg -17a96deb-5cf6-375b-a101-def73b1a9c27,SESCO,II.1.1,Corrientes,AR-W,annual,2023,bioetanol combustion consumption by to the public,1.04299488,TJ,N2O,0.6,kg/TJ,0.625796928,kg -c3cf119e-e0fa-37bd-ab6b-06484edf5eaa,SESCO,II.1.1,Córdoba,AR-X,annual,2023,bioetanol combustion consumption by to the public,4.2614521199999995,TJ,CH4,10.0,kg/TJ,42.6145212,kg -bf575a8a-f380-375f-9cb3-610582d49036,SESCO,II.1.1,Córdoba,AR-X,annual,2023,bioetanol combustion consumption by to the public,4.2614521199999995,TJ,N2O,0.6,kg/TJ,2.5568712719999995,kg -5f013935-ce83-3ead-9aa2-db8256a6176f,SESCO,II.1.1,Entre Rios,AR-E,annual,2023,bioetanol combustion consumption by to the public,2.8528977599999994,TJ,CH4,10.0,kg/TJ,28.528977599999994,kg -329010d0-87da-3d4b-8eac-e0aeb01a0d29,SESCO,II.1.1,Entre Rios,AR-E,annual,2023,bioetanol combustion consumption by to the public,2.8528977599999994,TJ,N2O,0.6,kg/TJ,1.7117386559999996,kg -44ebe84b-d726-377f-a2f0-f81876b95a81,SESCO,II.1.1,Formosa,AR-P,annual,2023,bioetanol combustion consumption by to the public,0.18150155999999998,TJ,CH4,10.0,kg/TJ,1.8150155999999997,kg -c495d050-7396-38e8-a0a6-4119873e1c99,SESCO,II.1.1,Formosa,AR-P,annual,2023,bioetanol combustion consumption by to the public,0.18150155999999998,TJ,N2O,0.6,kg/TJ,0.10890093599999999,kg -825272ac-ce1b-31f6-8cae-0c3e9713af5d,SESCO,II.1.1,La Rioja,AR-F,annual,2023,bioetanol combustion consumption by to the public,0.7643516399999999,TJ,CH4,10.0,kg/TJ,7.643516399999999,kg -32252a61-3587-3b84-a3e0-60a784a2687a,SESCO,II.1.1,La Rioja,AR-F,annual,2023,bioetanol combustion consumption by to the public,0.7643516399999999,TJ,N2O,0.6,kg/TJ,0.4586109839999999,kg -94b91ffa-6179-31e4-a79f-f461bd2ec011,SESCO,II.1.1,Mendoza,AR-M,annual,2023,bioetanol combustion consumption by to the public,1.71531756,TJ,CH4,10.0,kg/TJ,17.153175599999997,kg -df6ea4f2-3113-3448-8aa1-21ec2cef8265,SESCO,II.1.1,Mendoza,AR-M,annual,2023,bioetanol combustion consumption by to the public,1.71531756,TJ,N2O,0.6,kg/TJ,1.029190536,kg -71df75f0-2a5c-3e23-9872-2915075e2ba1,SESCO,II.1.1,Misiones,AR-N,annual,2023,bioetanol combustion consumption by to the public,1.3906598399999999,TJ,CH4,10.0,kg/TJ,13.906598399999998,kg -8d389d53-6b0c-3b40-9fa2-b5f638df5310,SESCO,II.1.1,Misiones,AR-N,annual,2023,bioetanol combustion consumption by to the public,1.3906598399999999,TJ,N2O,0.6,kg/TJ,0.8343959039999999,kg -c9abc601-a2e5-394a-ae16-ffbfba4e0516,SESCO,II.1.1,San Juan,AR-J,annual,2023,bioetanol combustion consumption by to the public,1.2142709999999999,TJ,CH4,10.0,kg/TJ,12.14271,kg -df338cd4-89eb-347a-b439-9064937fba37,SESCO,II.1.1,San Juan,AR-J,annual,2023,bioetanol combustion consumption by to the public,1.2142709999999999,TJ,N2O,0.6,kg/TJ,0.7285626,kg -f2c11148-e354-3dd8-909e-b658c7596d05,SESCO,II.1.1,San Luis,AR-D,annual,2023,bioetanol combustion consumption by to the public,0.23518511999999997,TJ,CH4,10.0,kg/TJ,2.3518511999999996,kg -dd5b7138-5619-30f2-b82f-1e568b9967fd,SESCO,II.1.1,San Luis,AR-D,annual,2023,bioetanol combustion consumption by to the public,0.23518511999999997,TJ,N2O,0.6,kg/TJ,0.14111107199999998,kg -7d303ed7-9f41-3c99-aff0-cde664f2767d,SESCO,II.1.1,Santa Fe,AR-S,annual,2023,bioetanol combustion consumption by to the public,4.897985759999999,TJ,CH4,10.0,kg/TJ,48.97985759999999,kg -037b99dd-2dc4-32c6-a7e2-85af49a60008,SESCO,II.1.1,Santa Fe,AR-S,annual,2023,bioetanol combustion consumption by to the public,4.897985759999999,TJ,N2O,0.6,kg/TJ,2.9387914559999992,kg -a5cf4916-6091-3565-8617-199702c07ea7,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2023,bioetanol combustion consumption by to the public,1.4443434,TJ,CH4,10.0,kg/TJ,14.443434,kg -026a0c5e-2d8e-3fff-84d9-1240375e2745,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2023,bioetanol combustion consumption by to the public,1.4443434,TJ,N2O,0.6,kg/TJ,0.86660604,kg -8d9ddc29-fc35-3799-ae7c-e3daae0e86fc,SESCO,II.1.1,Tucuman,AR-T,annual,2023,bioetanol combustion consumption by to the public,0.3578904,TJ,CH4,10.0,kg/TJ,3.578904,kg -bb293172-f4d2-3343-b8a6-8beadc658a09,SESCO,II.1.1,Tucuman,AR-T,annual,2023,bioetanol combustion consumption by to the public,0.3578904,TJ,N2O,0.6,kg/TJ,0.21473424,kg -4ad74ec4-157a-3575-b107-b7345b292bbf,SESCO,II.5.1,Santa Fe,AR-S,annual,2023,bioetanol combustion consumption by agriculture machines,0.13548707999999998,TJ,CH4,10.0,kg/TJ,1.3548707999999998,kg -3ab8ee20-d2af-3436-8f63-c066506d30b6,SESCO,II.5.1,Santa Fe,AR-S,annual,2023,bioetanol combustion consumption by agriculture machines,0.13548707999999998,TJ,N2O,0.6,kg/TJ,0.08129224799999998,kg -b8fde464-3c32-33cc-80e3-06a336af0cca,SESCO,II.5.1,Santa Fe,AR-S,annual,2023,bioetanol combustion consumption by agriculture machines,0.08691623999999999,TJ,CH4,10.0,kg/TJ,0.8691623999999999,kg -d96c3dc3-9546-3f1d-9541-94a160c5dec5,SESCO,II.5.1,Santa Fe,AR-S,annual,2023,bioetanol combustion consumption by agriculture machines,0.08691623999999999,TJ,N2O,0.6,kg/TJ,0.05214974399999999,kg -d58be2c4-a2b7-3731-a4bd-6fc3a1cfe05e,SESCO,II.1.1,Buenos Aires,AR-B,annual,2023,bioetanol combustion consumption by to the public,880.7350417199999,TJ,CH4,10.0,kg/TJ,8807.3504172,kg -a3340a3a-05f6-3f24-80b3-88e27492e844,SESCO,II.1.1,Buenos Aires,AR-B,annual,2023,bioetanol combustion consumption by to the public,880.7350417199999,TJ,N2O,0.6,kg/TJ,528.441025032,kg -805b67a3-d0dd-34aa-a42c-e33af8829c03,SESCO,II.1.1,Capital Federal,AR-C,annual,2023,bioetanol combustion consumption by to the public,232.31177135999997,TJ,CH4,10.0,kg/TJ,2323.1177135999997,kg -b697b532-591a-3b1a-a41a-8ed2a192d6b3,SESCO,II.1.1,Capital Federal,AR-C,annual,2023,bioetanol combustion consumption by to the public,232.31177135999997,TJ,N2O,0.6,kg/TJ,139.38706281599997,kg -b102d1c3-2fbc-31eb-8508-fad3d3697d61,SESCO,II.1.1,Catamarca,AR-K,annual,2023,bioetanol combustion consumption by to the public,31.402326239999997,TJ,CH4,10.0,kg/TJ,314.02326239999996,kg -95e34842-25d8-372d-b56b-b959d6b820c3,SESCO,II.1.1,Catamarca,AR-K,annual,2023,bioetanol combustion consumption by to the public,31.402326239999997,TJ,N2O,0.6,kg/TJ,18.841395743999996,kg -19cc24e7-80ef-3424-9282-5c5db197878a,SESCO,II.1.1,Chaco,AR-H,annual,2023,bioetanol combustion consumption by to the public,63.584342279999994,TJ,CH4,10.0,kg/TJ,635.8434228,kg -b67a5295-7d28-3ab9-9b79-7fd8f8cb0970,SESCO,II.1.1,Chaco,AR-H,annual,2023,bioetanol combustion consumption by to the public,63.584342279999994,TJ,N2O,0.6,kg/TJ,38.150605367999994,kg -7d4d0a29-d972-35d0-a8e9-5419a26a2a26,SESCO,II.1.1,Chubut,AR-U,annual,2023,bioetanol combustion consumption by to the public,131.6014128,TJ,CH4,10.0,kg/TJ,1316.0141279999998,kg -2c0f1239-52a4-31db-bcf2-94680e20df77,SESCO,II.1.1,Chubut,AR-U,annual,2023,bioetanol combustion consumption by to the public,131.6014128,TJ,N2O,0.6,kg/TJ,78.96084767999999,kg -941f08c5-8755-314a-a83a-2204973ecd54,SESCO,II.1.1,Corrientes,AR-W,annual,2023,bioetanol combustion consumption by to the public,82.48351176,TJ,CH4,10.0,kg/TJ,824.8351176,kg -45db7cfe-b57a-3257-bce6-93560327f189,SESCO,II.1.1,Corrientes,AR-W,annual,2023,bioetanol combustion consumption by to the public,82.48351176,TJ,N2O,0.6,kg/TJ,49.490107056,kg -69df0cf8-0541-385f-94ee-e9e2acb0bab3,SESCO,II.1.1,Córdoba,AR-X,annual,2023,bioetanol combustion consumption by to the public,207.40259952,TJ,CH4,10.0,kg/TJ,2074.0259952,kg -fe785459-274c-3eec-a760-cd7b873969fb,SESCO,II.1.1,Córdoba,AR-X,annual,2023,bioetanol combustion consumption by to the public,207.40259952,TJ,N2O,0.6,kg/TJ,124.44155971199999,kg -830ef6d6-698f-3826-8e2a-f9ac4569de0c,SESCO,II.1.1,Entre Rios,AR-E,annual,2023,bioetanol combustion consumption by to the public,93.38638716,TJ,CH4,10.0,kg/TJ,933.8638716,kg -b2e7b236-2402-3675-baef-fbfc2e57f175,SESCO,II.1.1,Entre Rios,AR-E,annual,2023,bioetanol combustion consumption by to the public,93.38638716,TJ,N2O,0.6,kg/TJ,56.031832296,kg -95686c19-b84e-3af9-b8c9-8129ff399efa,SESCO,II.1.1,Formosa,AR-P,annual,2023,bioetanol combustion consumption by to the public,68.73285132,TJ,CH4,10.0,kg/TJ,687.3285132,kg -e4f3ba3a-b1c6-34b7-8cd2-b6c7842b4699,SESCO,II.1.1,Formosa,AR-P,annual,2023,bioetanol combustion consumption by to the public,68.73285132,TJ,N2O,0.6,kg/TJ,41.239710792,kg -eb9d798b-3bce-3b0e-a183-5cd332b79051,SESCO,II.1.1,Jujuy,AR-Y,annual,2023,bioetanol combustion consumption by to the public,27.468088199999997,TJ,CH4,10.0,kg/TJ,274.680882,kg -3e4047a8-df5f-3800-92ff-7dc4fff6d152,SESCO,II.1.1,Jujuy,AR-Y,annual,2023,bioetanol combustion consumption by to the public,27.468088199999997,TJ,N2O,0.6,kg/TJ,16.480852919999997,kg -b848695e-2467-3032-8921-427976545493,SESCO,II.1.1,La Pampa,AR-L,annual,2023,bioetanol combustion consumption by to the public,20.88034848,TJ,CH4,10.0,kg/TJ,208.80348479999998,kg -bdb85b79-457c-302b-a93d-bd6700c754bf,SESCO,II.1.1,La Pampa,AR-L,annual,2023,bioetanol combustion consumption by to the public,20.88034848,TJ,N2O,0.6,kg/TJ,12.528209087999999,kg -21ef9b0f-58df-3b14-9917-ac1c69d78309,SESCO,II.1.1,La Rioja,AR-F,annual,2023,bioetanol combustion consumption by to the public,15.386730839999998,TJ,CH4,10.0,kg/TJ,153.86730839999998,kg -ced79505-2432-3f9e-825c-5f2fcf30db40,SESCO,II.1.1,La Rioja,AR-F,annual,2023,bioetanol combustion consumption by to the public,15.386730839999998,TJ,N2O,0.6,kg/TJ,9.232038503999998,kg -d549c4fa-0f47-300a-9c23-b4ec945e37e6,SESCO,II.1.1,Mendoza,AR-M,annual,2023,bioetanol combustion consumption by to the public,40.66146216,TJ,CH4,10.0,kg/TJ,406.61462159999996,kg -842a5cda-a065-3d93-84e6-5965e6289e82,SESCO,II.1.1,Mendoza,AR-M,annual,2023,bioetanol combustion consumption by to the public,40.66146216,TJ,N2O,0.6,kg/TJ,24.396877296,kg -a2f19812-1fdd-35a9-95c4-ffdf31113c6b,SESCO,II.1.1,Misiones,AR-N,annual,2023,bioetanol combustion consumption by to the public,156.64351535999998,TJ,CH4,10.0,kg/TJ,1566.4351536,kg -a272d69c-8d5d-35c9-8029-f57a87f47ed7,SESCO,II.1.1,Misiones,AR-N,annual,2023,bioetanol combustion consumption by to the public,156.64351535999998,TJ,N2O,0.6,kg/TJ,93.98610921599999,kg -4449f391-2e0d-351f-8d9b-b2b00e7c9d2f,SESCO,II.1.1,Neuquén,AR-Q,annual,2023,bioetanol combustion consumption by to the public,40.129739279999995,TJ,CH4,10.0,kg/TJ,401.29739279999995,kg -c08b97a5-9325-390e-a364-a78d7273735d,SESCO,II.1.1,Neuquén,AR-Q,annual,2023,bioetanol combustion consumption by to the public,40.129739279999995,TJ,N2O,0.6,kg/TJ,24.077843567999995,kg -756d8d84-01c8-34cd-80a8-21607a5f214f,SESCO,II.1.1,Rio Negro,AR-R,annual,2023,bioetanol combustion consumption by to the public,68.82232391999999,TJ,CH4,10.0,kg/TJ,688.2232391999999,kg -728cfdf2-4a43-3298-972e-3e563ec3deb9,SESCO,II.1.1,Rio Negro,AR-R,annual,2023,bioetanol combustion consumption by to the public,68.82232391999999,TJ,N2O,0.6,kg/TJ,41.29339435199999,kg -9d4cc7a3-e194-3f63-a10e-510565e984c5,SESCO,II.1.1,Salta,AR-A,annual,2023,bioetanol combustion consumption by to the public,23.500617479999995,TJ,CH4,10.0,kg/TJ,235.00617479999994,kg -71baf3e2-5ca2-3f30-b7bc-a603b1b2ef82,SESCO,II.1.1,Salta,AR-A,annual,2023,bioetanol combustion consumption by to the public,23.500617479999995,TJ,N2O,0.6,kg/TJ,14.100370487999998,kg -fbdba8a7-4a3a-3f49-955d-522e95052dc9,SESCO,II.1.1,San Juan,AR-J,annual,2023,bioetanol combustion consumption by to the public,21.051624599999997,TJ,CH4,10.0,kg/TJ,210.51624599999997,kg -f90dabd5-ba2f-3bfa-b9b4-383f808594e1,SESCO,II.1.1,San Juan,AR-J,annual,2023,bioetanol combustion consumption by to the public,21.051624599999997,TJ,N2O,0.6,kg/TJ,12.630974759999997,kg -64e76acd-5b3e-3217-a6ee-92e165790dd8,SESCO,II.1.1,San Luis,AR-D,annual,2023,bioetanol combustion consumption by to the public,46.9603332,TJ,CH4,10.0,kg/TJ,469.603332,kg -7e8eb6a8-7a39-39cf-808d-8613dba8ce39,SESCO,II.1.1,San Luis,AR-D,annual,2023,bioetanol combustion consumption by to the public,46.9603332,TJ,N2O,0.6,kg/TJ,28.17619992,kg -bf195808-5114-3876-8488-593abf90c472,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2023,bioetanol combustion consumption by to the public,76.34313503999999,TJ,CH4,10.0,kg/TJ,763.4313503999999,kg -92c39f70-44eb-3aa4-9052-97901010405d,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2023,bioetanol combustion consumption by to the public,76.34313503999999,TJ,N2O,0.6,kg/TJ,45.805881023999994,kg -c8ce1243-b2d6-3597-9bfc-02548685c66a,SESCO,II.1.1,Santa Fe,AR-S,annual,2023,bioetanol combustion consumption by to the public,206.15253948,TJ,CH4,10.0,kg/TJ,2061.5253948,kg -a4453a98-a23e-3515-9198-27ae14b6d736,SESCO,II.1.1,Santa Fe,AR-S,annual,2023,bioetanol combustion consumption by to the public,206.15253948,TJ,N2O,0.6,kg/TJ,123.69152368799999,kg -209812dc-30df-3e10-a5b9-97dd1f259d85,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2023,bioetanol combustion consumption by to the public,41.54340636,TJ,CH4,10.0,kg/TJ,415.4340636,kg -c9cd59b5-e74a-3e5b-b2bc-d37bcf38738b,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2023,bioetanol combustion consumption by to the public,41.54340636,TJ,N2O,0.6,kg/TJ,24.926043816,kg -6cf716fd-cb8e-3d51-ab57-9628192bea37,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2023,bioetanol combustion consumption by to the public,15.110643959999997,TJ,CH4,10.0,kg/TJ,151.1064396,kg -b005565e-19db-3db5-b740-6c2d67414f70,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2023,bioetanol combustion consumption by to the public,15.110643959999997,TJ,N2O,0.6,kg/TJ,9.066386375999999,kg -b459ddc8-c8fb-3c73-961b-423471ac59f1,SESCO,II.1.1,Tucuman,AR-T,annual,2023,bioetanol combustion consumption by to the public,16.87708872,TJ,CH4,10.0,kg/TJ,168.7708872,kg -987b2038-d2a9-386b-95ea-6abccd2da17a,SESCO,II.1.1,Tucuman,AR-T,annual,2023,bioetanol combustion consumption by to the public,16.87708872,TJ,N2O,0.6,kg/TJ,10.126253232,kg -319c6f1c-de69-3221-91e1-24da15572d5f,SESCO,II.1.1,Buenos Aires,AR-B,annual,2023,bioetanol combustion consumption by to the public,282.4522164,TJ,CH4,10.0,kg/TJ,2824.522164,kg -25cf9bb6-3b26-39bf-b709-ccde5b8fa83e,SESCO,II.1.1,Buenos Aires,AR-B,annual,2023,bioetanol combustion consumption by to the public,282.4522164,TJ,N2O,0.6,kg/TJ,169.47132983999998,kg -9d8cdb04-8255-3d88-aec6-59489bc29ea1,SESCO,II.1.1,Capital Federal,AR-C,annual,2023,bioetanol combustion consumption by to the public,114.0392196,TJ,CH4,10.0,kg/TJ,1140.392196,kg -9dfd1bfc-e428-3561-b239-786f3f704842,SESCO,II.1.1,Capital Federal,AR-C,annual,2023,bioetanol combustion consumption by to the public,114.0392196,TJ,N2O,0.6,kg/TJ,68.42353175999999,kg -fdaaa27e-edd1-3566-9e6c-f839eefda5d0,SESCO,II.1.1,Catamarca,AR-K,annual,2023,bioetanol combustion consumption by to the public,11.056256999999999,TJ,CH4,10.0,kg/TJ,110.56257,kg -1e6b204e-3aa7-381b-96e2-214e2223f327,SESCO,II.1.1,Catamarca,AR-K,annual,2023,bioetanol combustion consumption by to the public,11.056256999999999,TJ,N2O,0.6,kg/TJ,6.633754199999999,kg -79df7207-c694-378f-83fe-d8d8ded00781,SESCO,II.1.1,Chaco,AR-H,annual,2023,bioetanol combustion consumption by to the public,8.85267468,TJ,CH4,10.0,kg/TJ,88.5267468,kg -7137cec6-ef98-3298-bb67-cd8db14394e2,SESCO,II.1.1,Chaco,AR-H,annual,2023,bioetanol combustion consumption by to the public,8.85267468,TJ,N2O,0.6,kg/TJ,5.311604807999999,kg -4c5bca5a-3600-3874-bc6f-a0f51911c2fc,SESCO,II.1.1,Chubut,AR-U,annual,2023,bioetanol combustion consumption by to the public,23.2884396,TJ,CH4,10.0,kg/TJ,232.884396,kg -7a56e6ec-2935-35ef-bdf6-adf5061d8fd5,SESCO,II.1.1,Chubut,AR-U,annual,2023,bioetanol combustion consumption by to the public,23.2884396,TJ,N2O,0.6,kg/TJ,13.97306376,kg -0af54804-7750-33bd-b80a-89a596c65c16,SESCO,II.1.1,Corrientes,AR-W,annual,2023,bioetanol combustion consumption by to the public,12.365113319999999,TJ,CH4,10.0,kg/TJ,123.65113319999999,kg -80690fe4-bbba-376f-b6d3-20f0aa1973d1,SESCO,II.1.1,Corrientes,AR-W,annual,2023,bioetanol combustion consumption by to the public,12.365113319999999,TJ,N2O,0.6,kg/TJ,7.419067991999999,kg -998dc9e7-bd05-32cc-b915-6d9da8bba870,SESCO,II.1.1,Córdoba,AR-X,annual,2023,bioetanol combustion consumption by to the public,55.879473239999996,TJ,CH4,10.0,kg/TJ,558.7947323999999,kg -f98d68c2-7efd-3941-a2dd-28fa938c6b8d,SESCO,II.1.1,Córdoba,AR-X,annual,2023,bioetanol combustion consumption by to the public,55.879473239999996,TJ,N2O,0.6,kg/TJ,33.527683943999996,kg -fd85879c-340c-3556-b39e-caaf63fa2735,SESCO,II.1.1,Entre Rios,AR-E,annual,2023,bioetanol combustion consumption by to the public,28.623562919999998,TJ,CH4,10.0,kg/TJ,286.23562919999995,kg -02977f7a-3776-30b3-9523-4246790dcda4,SESCO,II.1.1,Entre Rios,AR-E,annual,2023,bioetanol combustion consumption by to the public,28.623562919999998,TJ,N2O,0.6,kg/TJ,17.174137751999996,kg -2ddc840b-37dd-3c88-817b-04171662e097,SESCO,II.1.1,Formosa,AR-P,annual,2023,bioetanol combustion consumption by to the public,20.09554596,TJ,CH4,10.0,kg/TJ,200.95545959999998,kg -e30903fb-9926-3907-86a6-5e5a49b299c9,SESCO,II.1.1,Formosa,AR-P,annual,2023,bioetanol combustion consumption by to the public,20.09554596,TJ,N2O,0.6,kg/TJ,12.057327575999999,kg -5a08fa4a-7b95-373c-980c-1e356680acfc,SESCO,II.1.1,Jujuy,AR-Y,annual,2023,bioetanol combustion consumption by to the public,6.373005479999999,TJ,CH4,10.0,kg/TJ,63.73005479999999,kg -0483fe9e-9983-37e2-9b07-fe32eebd6a79,SESCO,II.1.1,Jujuy,AR-Y,annual,2023,bioetanol combustion consumption by to the public,6.373005479999999,TJ,N2O,0.6,kg/TJ,3.8238032879999992,kg -2c0ed90b-5c62-3c1b-9544-440f33bf9834,SESCO,II.1.1,La Pampa,AR-L,annual,2023,bioetanol combustion consumption by to the public,6.60563424,TJ,CH4,10.0,kg/TJ,66.05634239999999,kg -b8d9421f-044f-3513-b504-a5d142ec0e4f,SESCO,II.1.1,La Pampa,AR-L,annual,2023,bioetanol combustion consumption by to the public,6.60563424,TJ,N2O,0.6,kg/TJ,3.9633805439999996,kg -c57f65e0-4a02-39c5-88ba-aef07b4e5e3d,SESCO,II.1.1,La Rioja,AR-F,annual,2023,bioetanol combustion consumption by to the public,4.276790279999999,TJ,CH4,10.0,kg/TJ,42.767902799999995,kg -504f4965-a1b5-3fe1-93de-d304621f694a,SESCO,II.1.1,La Rioja,AR-F,annual,2023,bioetanol combustion consumption by to the public,4.276790279999999,TJ,N2O,0.6,kg/TJ,2.5660741679999997,kg -b2916267-d0a6-305b-b34f-155f786be28b,SESCO,II.1.1,Mendoza,AR-M,annual,2023,bioetanol combustion consumption by to the public,17.32700808,TJ,CH4,10.0,kg/TJ,173.2700808,kg -3ceb4253-b8c3-3eb2-bd92-635d38529bb7,SESCO,II.1.1,Mendoza,AR-M,annual,2023,bioetanol combustion consumption by to the public,17.32700808,TJ,N2O,0.6,kg/TJ,10.396204847999998,kg -6bd3c07c-36ff-3498-ab69-6870750daf25,SESCO,II.1.1,Misiones,AR-N,annual,2023,bioetanol combustion consumption by to the public,14.080430879999998,TJ,CH4,10.0,kg/TJ,140.80430879999997,kg -bde78e69-2031-3681-8109-dd992495a2a4,SESCO,II.1.1,Misiones,AR-N,annual,2023,bioetanol combustion consumption by to the public,14.080430879999998,TJ,N2O,0.6,kg/TJ,8.448258527999998,kg -f9d96847-15da-3c12-afbc-3671c0bd6919,SESCO,II.1.1,Neuquén,AR-Q,annual,2023,bioetanol combustion consumption by to the public,19.205932679999997,TJ,CH4,10.0,kg/TJ,192.05932679999995,kg -f8999209-f424-3108-b586-978b76ee266f,SESCO,II.1.1,Neuquén,AR-Q,annual,2023,bioetanol combustion consumption by to the public,19.205932679999997,TJ,N2O,0.6,kg/TJ,11.523559607999998,kg -b32658ca-d3b3-385d-bfc7-1603c2a08442,SESCO,II.1.1,Rio Negro,AR-R,annual,2023,bioetanol combustion consumption by to the public,27.20478312,TJ,CH4,10.0,kg/TJ,272.04783119999996,kg -54966fbb-9b25-3eca-8569-bf393a81ff3e,SESCO,II.1.1,Rio Negro,AR-R,annual,2023,bioetanol combustion consumption by to the public,27.20478312,TJ,N2O,0.6,kg/TJ,16.322869872,kg -f4413e2a-82b0-3689-9023-29d0e9307dc8,SESCO,II.1.1,Salta,AR-A,annual,2023,bioetanol combustion consumption by to the public,4.542651719999999,TJ,CH4,10.0,kg/TJ,45.42651719999999,kg -e4a1a553-e2a5-30c0-b4c0-f289b0823552,SESCO,II.1.1,Salta,AR-A,annual,2023,bioetanol combustion consumption by to the public,4.542651719999999,TJ,N2O,0.6,kg/TJ,2.7255910319999996,kg -c4d8c109-f6b9-31aa-8239-9ed637f360f7,SESCO,II.1.1,San Juan,AR-J,annual,2023,bioetanol combustion consumption by to the public,4.105514159999999,TJ,CH4,10.0,kg/TJ,41.05514159999999,kg -66713d83-7bc5-3841-af86-78bef470eef4,SESCO,II.1.1,San Juan,AR-J,annual,2023,bioetanol combustion consumption by to the public,4.105514159999999,TJ,N2O,0.6,kg/TJ,2.4633084959999993,kg -578d3caf-aee4-3d75-9421-065dc1e5ff58,SESCO,II.1.1,San Luis,AR-D,annual,2023,bioetanol combustion consumption by to the public,9.3690594,TJ,CH4,10.0,kg/TJ,93.69059399999999,kg -e5d0f151-b319-3ae5-b83b-921f9c33ba92,SESCO,II.1.1,San Luis,AR-D,annual,2023,bioetanol combustion consumption by to the public,9.3690594,TJ,N2O,0.6,kg/TJ,5.62143564,kg -e7aebc0e-ae9a-3266-ad2e-cf67a30c8725,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2023,bioetanol combustion consumption by to the public,12.46992408,TJ,CH4,10.0,kg/TJ,124.6992408,kg -e07a7827-017a-3793-8e4d-382fe73679b4,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2023,bioetanol combustion consumption by to the public,12.46992408,TJ,N2O,0.6,kg/TJ,7.481954448,kg -92984006-e056-38cc-974c-a29df88f2a65,SESCO,II.1.1,Santa Fe,AR-S,annual,2023,bioetanol combustion consumption by to the public,66.54460716,TJ,CH4,10.0,kg/TJ,665.4460716,kg -856eb96b-0b18-37e1-9b42-75af290221bb,SESCO,II.1.1,Santa Fe,AR-S,annual,2023,bioetanol combustion consumption by to the public,66.54460716,TJ,N2O,0.6,kg/TJ,39.926764295999995,kg -42863bfa-c105-3cec-b11d-fb5c61f084cb,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2023,bioetanol combustion consumption by to the public,13.54615164,TJ,CH4,10.0,kg/TJ,135.4615164,kg -e9ae9269-04a8-3d22-a3cd-518df2c26dd5,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2023,bioetanol combustion consumption by to the public,13.54615164,TJ,N2O,0.6,kg/TJ,8.127690984,kg -ff59bcc7-ce0c-3ed7-a05d-5a97bf7bc71e,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2023,bioetanol combustion consumption by to the public,3.6504820799999993,TJ,CH4,10.0,kg/TJ,36.50482079999999,kg -ddd6646a-8a01-36e8-aee4-8f65f626afca,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2023,bioetanol combustion consumption by to the public,3.6504820799999993,TJ,N2O,0.6,kg/TJ,2.1902892479999996,kg -6bfc373c-7088-368d-b7d9-1c3b8f97c4f6,SESCO,II.1.1,Tucuman,AR-T,annual,2023,bioetanol combustion consumption by to the public,3.36416976,TJ,CH4,10.0,kg/TJ,33.6416976,kg -b53236cf-6541-36f1-aa97-7c5079f2ac4a,SESCO,II.1.1,Tucuman,AR-T,annual,2023,bioetanol combustion consumption by to the public,3.36416976,TJ,N2O,0.6,kg/TJ,2.018501856,kg -00337677-e951-35d3-9233-9905d242e0d8,SESCO,II.1.1,Buenos Aires,AR-B,annual,2023,bioetanol combustion consumption by freight transport,1.6616339999999998,TJ,CH4,10.0,kg/TJ,16.616339999999997,kg -f4ffcb1d-b1e9-3c4f-b89f-b1ec8b98c71b,SESCO,II.1.1,Buenos Aires,AR-B,annual,2023,bioetanol combustion consumption by freight transport,1.6616339999999998,TJ,N2O,0.6,kg/TJ,0.9969803999999999,kg -08aed0d3-8945-3f8b-93c7-4bd32d894c65,SESCO,II.1.1,Capital Federal,AR-C,annual,2023,bioetanol combustion consumption by freight transport,2.15245512,TJ,CH4,10.0,kg/TJ,21.524551199999998,kg -a7671fcb-4519-3129-b882-2062e430abac,SESCO,II.1.1,Capital Federal,AR-C,annual,2023,bioetanol combustion consumption by freight transport,2.15245512,TJ,N2O,0.6,kg/TJ,1.2914730719999998,kg -a86bdc6d-a7f7-3033-a9ed-285f9f3450a9,SESCO,II.1.1,Chaco,AR-H,annual,2023,bioetanol combustion consumption by freight transport,0.0025563599999999997,TJ,CH4,10.0,kg/TJ,0.0255636,kg -52484b72-0eee-3d25-be3c-9188d051949a,SESCO,II.1.1,Chaco,AR-H,annual,2023,bioetanol combustion consumption by freight transport,0.0025563599999999997,TJ,N2O,0.6,kg/TJ,0.0015338159999999997,kg -aa339304-a56b-3d78-97b8-11ceeeb66ce8,SESCO,II.1.1,Corrientes,AR-W,annual,2023,bioetanol combustion consumption by freight transport,0.0025563599999999997,TJ,CH4,10.0,kg/TJ,0.0255636,kg -02ec4b80-5f6f-3151-b0d6-88c11c0cd9d0,SESCO,II.1.1,Corrientes,AR-W,annual,2023,bioetanol combustion consumption by freight transport,0.0025563599999999997,TJ,N2O,0.6,kg/TJ,0.0015338159999999997,kg -abe38a22-f9db-38a5-92c0-8a93d3b7a248,SESCO,II.1.1,Córdoba,AR-X,annual,2023,bioetanol combustion consumption by freight transport,0.28375596,TJ,CH4,10.0,kg/TJ,2.8375595999999996,kg -bf11152a-a5e2-3f50-b3ca-d02d38209cee,SESCO,II.1.1,Córdoba,AR-X,annual,2023,bioetanol combustion consumption by freight transport,0.28375596,TJ,N2O,0.6,kg/TJ,0.170253576,kg -12ff1f96-1671-3e23-a813-1a46d33d74f8,SESCO,II.1.1,Mendoza,AR-M,annual,2023,bioetanol combustion consumption by freight transport,0.015338159999999998,TJ,CH4,10.0,kg/TJ,0.15338159999999998,kg -a120ea7a-7474-3aa5-a1e9-7bb0a85c9ced,SESCO,II.1.1,Mendoza,AR-M,annual,2023,bioetanol combustion consumption by freight transport,0.015338159999999998,TJ,N2O,0.6,kg/TJ,0.009202895999999999,kg -163273f2-12a9-3c4a-a596-bb2e116adf71,SESCO,II.1.1,Rio Negro,AR-R,annual,2023,bioetanol combustion consumption by freight transport,0.03323268,TJ,CH4,10.0,kg/TJ,0.33232680000000003,kg -40ec4a1f-62a0-3312-8397-61ace4acc73b,SESCO,II.1.1,Rio Negro,AR-R,annual,2023,bioetanol combustion consumption by freight transport,0.03323268,TJ,N2O,0.6,kg/TJ,0.019939608,kg -90914e22-23e2-319a-9fc2-480fa27b2e68,SESCO,II.1.1,Santa Fe,AR-S,annual,2023,bioetanol combustion consumption by freight transport,0.85126788,TJ,CH4,10.0,kg/TJ,8.5126788,kg -cd580372-c641-3773-b119-245fe269cf73,SESCO,II.1.1,Santa Fe,AR-S,annual,2023,bioetanol combustion consumption by freight transport,0.85126788,TJ,N2O,0.6,kg/TJ,0.5107607279999999,kg -b6422eb9-837a-39ce-a617-b872986a9895,SESCO,II.1.1,Buenos Aires,AR-B,annual,2023,bioetanol combustion consumption by freight transport,0.9841985999999998,TJ,CH4,10.0,kg/TJ,9.841985999999999,kg -7f93373b-b349-3fa6-958e-6e18fde39466,SESCO,II.1.1,Buenos Aires,AR-B,annual,2023,bioetanol combustion consumption by freight transport,0.9841985999999998,TJ,N2O,0.6,kg/TJ,0.5905191599999998,kg -41a150f5-51ef-3309-b4ea-2e4c71ae53fb,SESCO,II.1.1,Capital Federal,AR-C,annual,2023,bioetanol combustion consumption by freight transport,1.62073224,TJ,CH4,10.0,kg/TJ,16.2073224,kg -6ba2c222-8793-3f1a-8863-8719c26062ca,SESCO,II.1.1,Capital Federal,AR-C,annual,2023,bioetanol combustion consumption by freight transport,1.62073224,TJ,N2O,0.6,kg/TJ,0.9724393439999999,kg -d2fba04f-cd19-3a69-8987-78e7e1f7598b,SESCO,II.1.1,Chubut,AR-U,annual,2023,bioetanol combustion consumption by freight transport,0.005112719999999999,TJ,CH4,10.0,kg/TJ,0.0511272,kg -61368e93-2f03-3a07-bb06-01035d42d8c5,SESCO,II.1.1,Chubut,AR-U,annual,2023,bioetanol combustion consumption by freight transport,0.005112719999999999,TJ,N2O,0.6,kg/TJ,0.0030676319999999994,kg -361dab53-ee89-3132-b859-fc1d36b9eb29,SESCO,II.1.1,Córdoba,AR-X,annual,2023,bioetanol combustion consumption by freight transport,0.10992348,TJ,CH4,10.0,kg/TJ,1.0992348,kg -7dfc39f5-f571-30a9-ac57-c0262b351bb4,SESCO,II.1.1,Córdoba,AR-X,annual,2023,bioetanol combustion consumption by freight transport,0.10992348,TJ,N2O,0.6,kg/TJ,0.065954088,kg -1eb423fc-ce35-3cfe-a708-87516a3e35d1,SESCO,II.1.1,Entre Rios,AR-E,annual,2023,bioetanol combustion consumption by freight transport,0.007669079999999999,TJ,CH4,10.0,kg/TJ,0.07669079999999999,kg -55f53ef8-bc01-3e6b-affb-8b4da7c58e4b,SESCO,II.1.1,Entre Rios,AR-E,annual,2023,bioetanol combustion consumption by freight transport,0.007669079999999999,TJ,N2O,0.6,kg/TJ,0.004601447999999999,kg -e677a857-06bc-3baf-b537-d64b9ae8b526,SESCO,II.1.1,La Rioja,AR-F,annual,2023,bioetanol combustion consumption by freight transport,0.030676319999999997,TJ,CH4,10.0,kg/TJ,0.30676319999999996,kg -cbaf4b9e-f6c0-337b-b2ec-5520bad63a8b,SESCO,II.1.1,La Rioja,AR-F,annual,2023,bioetanol combustion consumption by freight transport,0.030676319999999997,TJ,N2O,0.6,kg/TJ,0.018405791999999997,kg -3c951a8e-3fd2-3e86-8fea-baf0e0727658,SESCO,II.1.1,Neuquén,AR-Q,annual,2023,bioetanol combustion consumption by freight transport,0.0025563599999999997,TJ,CH4,10.0,kg/TJ,0.0255636,kg -e981f0ec-df2d-31d7-9c51-6634f95709bd,SESCO,II.1.1,Neuquén,AR-Q,annual,2023,bioetanol combustion consumption by freight transport,0.0025563599999999997,TJ,N2O,0.6,kg/TJ,0.0015338159999999997,kg -4ab73c9e-36a3-3bc9-a3dd-e9046101da1d,SESCO,II.1.1,Rio Negro,AR-R,annual,2023,bioetanol combustion consumption by freight transport,0.043458119999999996,TJ,CH4,10.0,kg/TJ,0.43458119999999995,kg -d237146e-5e5e-3e20-b24c-3eff07673601,SESCO,II.1.1,Rio Negro,AR-R,annual,2023,bioetanol combustion consumption by freight transport,0.043458119999999996,TJ,N2O,0.6,kg/TJ,0.026074871999999995,kg -aa03b24c-33f4-3b25-9f7e-4a51c2633998,SESCO,II.1.1,San Luis,AR-D,annual,2023,bioetanol combustion consumption by freight transport,0.07413444,TJ,CH4,10.0,kg/TJ,0.7413444,kg -7682becc-b6bb-390a-a9d2-a42d1fe7ba9c,SESCO,II.1.1,San Luis,AR-D,annual,2023,bioetanol combustion consumption by freight transport,0.07413444,TJ,N2O,0.6,kg/TJ,0.044480663999999996,kg -2bbd2031-2426-3895-b80f-3a01ed46c50a,SESCO,II.1.1,Santa Fe,AR-S,annual,2023,bioetanol combustion consumption by freight transport,0.6467590799999999,TJ,CH4,10.0,kg/TJ,6.467590799999999,kg -f1e7f708-0cd1-30f7-b0c4-2cb8e6c2d3cf,SESCO,II.1.1,Santa Fe,AR-S,annual,2023,bioetanol combustion consumption by freight transport,0.6467590799999999,TJ,N2O,0.6,kg/TJ,0.38805544799999997,kg -5f479867-6d23-36ae-b22c-566d4021a107,SESCO,II.1.1,Buenos Aires,AR-B,annual,2023,bioetanol combustion consumption by public passenger transport,0.005112719999999999,TJ,CH4,10.0,kg/TJ,0.0511272,kg -679f4ae0-d8b6-35dd-a3b2-d926fb1a9188,SESCO,II.1.1,Buenos Aires,AR-B,annual,2023,bioetanol combustion consumption by public passenger transport,0.005112719999999999,TJ,N2O,0.6,kg/TJ,0.0030676319999999994,kg -d91600d7-2828-3f1a-9d8d-ccf15b3e631b,SESCO,II.1.1,Entre Rios,AR-E,annual,2023,bioetanol combustion consumption by public passenger transport,0.02300724,TJ,CH4,10.0,kg/TJ,0.2300724,kg -c9c9c5b7-84b3-338d-ae0a-3067ee69606e,SESCO,II.1.1,Entre Rios,AR-E,annual,2023,bioetanol combustion consumption by public passenger transport,0.02300724,TJ,N2O,0.6,kg/TJ,0.013804344000000001,kg -355b0e43-e2e6-3fd4-a498-74b0cbfa05da,SESCO,II.1.1,Buenos Aires,AR-B,annual,2023,bioetanol combustion consumption by public passenger transport,0.0025563599999999997,TJ,CH4,10.0,kg/TJ,0.0255636,kg -e08d602b-f4c9-3be9-ae01-5eafd413cdfc,SESCO,II.1.1,Buenos Aires,AR-B,annual,2023,bioetanol combustion consumption by public passenger transport,0.0025563599999999997,TJ,N2O,0.6,kg/TJ,0.0015338159999999997,kg -8a180273-816e-34e9-97aa-aa0f0bdf7f6b,SESCO,II.1.1,Capital Federal,AR-C,annual,2023,bioetanol combustion consumption by public passenger transport,0.05623991999999999,TJ,CH4,10.0,kg/TJ,0.5623991999999999,kg -8f96a54a-d952-384f-b75b-c277d854338f,SESCO,II.1.1,Capital Federal,AR-C,annual,2023,bioetanol combustion consumption by public passenger transport,0.05623991999999999,TJ,N2O,0.6,kg/TJ,0.033743951999999994,kg -e2f5d5c3-74a8-3e8d-b2f7-e48268158336,SESCO,II.1.1,Entre Rios,AR-E,annual,2023,bioetanol combustion consumption by public passenger transport,0.05879627999999999,TJ,CH4,10.0,kg/TJ,0.5879627999999999,kg -238dc51e-e460-3ca3-a43c-c5bc2e590f1e,SESCO,II.1.1,Entre Rios,AR-E,annual,2023,bioetanol combustion consumption by public passenger transport,0.05879627999999999,TJ,N2O,0.6,kg/TJ,0.035277767999999994,kg -3d64ddb9-ea07-3ab9-a80b-b8bb78fa2626,SESCO,II.1.1,Catamarca,AR-K,annual,2023,bioetanol combustion consumption by to the public,5.025420305999999,TJ,CH4,10.0,kg/TJ,50.254203059999995,kg -dee6518f-edf4-36de-83f3-6efc94c4effa,SESCO,II.1.1,Catamarca,AR-K,annual,2023,bioetanol combustion consumption by to the public,5.025420305999999,TJ,N2O,0.6,kg/TJ,3.0152521835999995,kg -21c5f1d3-af90-31fb-98b8-48c44819d79f,SESCO,II.1.1,Chaco,AR-H,annual,2023,bioetanol combustion consumption by to the public,5.329397073599999,TJ,CH4,10.0,kg/TJ,53.29397073599999,kg -1aed10f2-133b-3e7f-9fab-24a6cb7fd0f4,SESCO,II.1.1,Chaco,AR-H,annual,2023,bioetanol combustion consumption by to the public,5.329397073599999,TJ,N2O,0.6,kg/TJ,3.1976382441599993,kg -1833651a-ba5d-38f7-a86b-b2b09ac991c8,SESCO,II.1.1,Córdoba,AR-X,annual,2023,bioetanol combustion consumption by to the public,0.6850533528,TJ,CH4,10.0,kg/TJ,6.850533528,kg -28fe29c7-5893-3037-bb49-63ed3e87bd18,SESCO,II.1.1,Córdoba,AR-X,annual,2023,bioetanol combustion consumption by to the public,0.6850533528,TJ,N2O,0.6,kg/TJ,0.41103201168,kg -3a8cb100-a57d-3421-a813-d856ff244050,SESCO,II.1.1,Jujuy,AR-Y,annual,2023,bioetanol combustion consumption by to the public,26.779328125199996,TJ,CH4,10.0,kg/TJ,267.79328125199993,kg -83d6d156-8bd1-35c4-909d-1922eb323f04,SESCO,II.1.1,Jujuy,AR-Y,annual,2023,bioetanol combustion consumption by to the public,26.779328125199996,TJ,N2O,0.6,kg/TJ,16.067596875119996,kg -f20be714-c38f-3c1d-a1f9-fa42c18b602a,SESCO,II.1.1,La Rioja,AR-F,annual,2023,bioetanol combustion consumption by to the public,27.101173849199995,TJ,CH4,10.0,kg/TJ,271.01173849199995,kg -551c64f4-8848-3413-aec9-efb4c29b8487,SESCO,II.1.1,La Rioja,AR-F,annual,2023,bioetanol combustion consumption by to the public,27.101173849199995,TJ,N2O,0.6,kg/TJ,16.260704309519998,kg -483c9611-d30d-3e9e-aacd-604f610acdde,SESCO,II.1.1,Salta,AR-A,annual,2023,bioetanol combustion consumption by to the public,72.53121882599999,TJ,CH4,10.0,kg/TJ,725.3121882599999,kg -e0cb043c-3344-3d18-9f40-30d943b0ce2f,SESCO,II.1.1,Salta,AR-A,annual,2023,bioetanol combustion consumption by to the public,72.53121882599999,TJ,N2O,0.6,kg/TJ,43.51873129559999,kg -7dd1cb52-9564-397f-9e2a-2b3e86493408,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2023,bioetanol combustion consumption by to the public,24.837798268799997,TJ,CH4,10.0,kg/TJ,248.37798268799997,kg -50233573-907f-3bf8-aca4-125e3423918d,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2023,bioetanol combustion consumption by to the public,24.837798268799997,TJ,N2O,0.6,kg/TJ,14.902678961279998,kg -5173035a-63df-3e73-96ff-8a88b9c05540,SESCO,II.1.1,Tucuman,AR-T,annual,2023,bioetanol combustion consumption by to the public,134.25120775799996,TJ,CH4,10.0,kg/TJ,1342.5120775799996,kg -e52bd3f6-585c-3ee7-b738-8a3154523965,SESCO,II.1.1,Tucuman,AR-T,annual,2023,bioetanol combustion consumption by to the public,134.25120775799996,TJ,N2O,0.6,kg/TJ,80.55072465479998,kg -699bb4c4-f2aa-3a6e-8ee1-329117991a36,SESCO,II.1.1,Catamarca,AR-K,annual,2023,bioetanol combustion consumption by to the public,0.44986823280000005,TJ,CH4,10.0,kg/TJ,4.498682328,kg -c36bac8b-3628-39ad-8a42-32715a8fe347,SESCO,II.1.1,Catamarca,AR-K,annual,2023,bioetanol combustion consumption by to the public,0.44986823280000005,TJ,N2O,0.6,kg/TJ,0.26992093968,kg -0218036f-65d1-3d5b-8ae5-d49571d52ffa,SESCO,II.1.1,Chaco,AR-H,annual,2023,bioetanol combustion consumption by to the public,0.20448323640000002,TJ,CH4,10.0,kg/TJ,2.0448323640000003,kg -270a3ab1-7335-30f8-be63-30aa2e1a0cd5,SESCO,II.1.1,Chaco,AR-H,annual,2023,bioetanol combustion consumption by to the public,0.20448323640000002,TJ,N2O,0.6,kg/TJ,0.12268994184000001,kg -7b5a41af-38d9-3f4b-a704-b36b556b01f8,SESCO,II.1.1,Córdoba,AR-X,annual,2023,bioetanol combustion consumption by to the public,0.09967247639999999,TJ,CH4,10.0,kg/TJ,0.9967247639999999,kg -18d9f7ad-b762-325f-9dee-a7f7b6e2ef00,SESCO,II.1.1,Córdoba,AR-X,annual,2023,bioetanol combustion consumption by to the public,0.09967247639999999,TJ,N2O,0.6,kg/TJ,0.05980348583999999,kg -6aac035a-96e7-3d68-a908-25041832d181,SESCO,II.1.1,Jujuy,AR-Y,annual,2023,bioetanol combustion consumption by to the public,2.0271679164,TJ,CH4,10.0,kg/TJ,20.271679164,kg -44db82d1-d456-3520-8f0e-af1bc5500110,SESCO,II.1.1,Jujuy,AR-Y,annual,2023,bioetanol combustion consumption by to the public,2.0271679164,TJ,N2O,0.6,kg/TJ,1.2163007498399998,kg -72b08370-6ed3-3d1d-af89-e3d0f68e7349,SESCO,II.1.1,La Rioja,AR-F,annual,2023,bioetanol combustion consumption by to the public,3.7317232008,TJ,CH4,10.0,kg/TJ,37.317232008,kg -43bf18d8-58af-3f6f-9b3e-525874485604,SESCO,II.1.1,La Rioja,AR-F,annual,2023,bioetanol combustion consumption by to the public,3.7317232008,TJ,N2O,0.6,kg/TJ,2.23903392048,kg -7472b364-6d76-324a-9e5b-eeedb409df04,SESCO,II.1.1,Salta,AR-A,annual,2023,bioetanol combustion consumption by to the public,5.8217775731999994,TJ,CH4,10.0,kg/TJ,58.21777573199999,kg -afe90501-1f52-3cf1-965b-d822f13c3ebf,SESCO,II.1.1,Salta,AR-A,annual,2023,bioetanol combustion consumption by to the public,5.8217775731999994,TJ,N2O,0.6,kg/TJ,3.4930665439199995,kg -643a473b-fa3e-3869-acf7-39e6cc798f0b,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2023,bioetanol combustion consumption by to the public,3.1185802548,TJ,CH4,10.0,kg/TJ,31.185802547999998,kg -89559185-ae5a-3a02-b22b-50e91d042fb0,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2023,bioetanol combustion consumption by to the public,3.1185802548,TJ,N2O,0.6,kg/TJ,1.8711481528799998,kg -a778033b-a78d-3787-af2f-de9451bf2d09,SESCO,II.1.1,Tucuman,AR-T,annual,2023,bioetanol combustion consumption by to the public,11.881807898399998,TJ,CH4,10.0,kg/TJ,118.81807898399998,kg -d9c3e1c3-431e-3999-8e35-ff3dfa365c94,SESCO,II.1.1,Tucuman,AR-T,annual,2023,bioetanol combustion consumption by to the public,11.881807898399998,TJ,N2O,0.6,kg/TJ,7.129084739039999,kg -ef7c7eef-a5b6-37bb-8707-b3a961edd063,SESCO,II.5.1,Corrientes,AR-W,annual,2023,bioetanol combustion consumption by agriculture machines,0.09202896,TJ,CH4,10.0,kg/TJ,0.9202896,kg -2fd6ba1a-cfca-30e0-bb90-6e0de24aa2f8,SESCO,II.5.1,Corrientes,AR-W,annual,2023,bioetanol combustion consumption by agriculture machines,0.09202896,TJ,N2O,0.6,kg/TJ,0.055217376000000006,kg -bc068af1-85f3-3dba-8eee-65c16fec101e,SESCO,II.5.1,Córdoba,AR-X,annual,2023,bioetanol combustion consumption by agriculture machines,0.9714168,TJ,CH4,10.0,kg/TJ,9.714167999999999,kg -8ecffcc9-f199-3ccd-9527-6395a7a9ef80,SESCO,II.5.1,Córdoba,AR-X,annual,2023,bioetanol combustion consumption by agriculture machines,0.9714168,TJ,N2O,0.6,kg/TJ,0.5828500799999999,kg -fbbe56c6-e012-3bdf-8b70-c0d016434c7c,SESCO,II.5.1,Salta,AR-A,annual,2023,bioetanol combustion consumption by agriculture machines,0.017894519999999997,TJ,CH4,10.0,kg/TJ,0.17894519999999997,kg -f6b48d54-60ba-32c6-b479-103b48e3d6d4,SESCO,II.5.1,Salta,AR-A,annual,2023,bioetanol combustion consumption by agriculture machines,0.017894519999999997,TJ,N2O,0.6,kg/TJ,0.010736711999999997,kg -aabf77e5-fc61-3fb0-80ec-41f013df6445,SESCO,II.5.1,Santa Fe,AR-S,annual,2023,bioetanol combustion consumption by agriculture machines,8.303057279999999,TJ,CH4,10.0,kg/TJ,83.03057279999999,kg -99ab1651-1895-3712-a6ba-c55b453480ad,SESCO,II.5.1,Santa Fe,AR-S,annual,2023,bioetanol combustion consumption by agriculture machines,8.303057279999999,TJ,N2O,0.6,kg/TJ,4.9818343679999995,kg -997a4f2c-09fb-3dda-bb38-d01c84a7822c,SESCO,II.5.1,Córdoba,AR-X,annual,2023,bioetanol combustion consumption by agriculture machines,0.17383247999999998,TJ,CH4,10.0,kg/TJ,1.7383247999999998,kg -4ced7332-53d4-3a62-8513-c94371d09456,SESCO,II.5.1,Córdoba,AR-X,annual,2023,bioetanol combustion consumption by agriculture machines,0.17383247999999998,TJ,N2O,0.6,kg/TJ,0.10429948799999998,kg -83db9cc9-04a6-30b5-82f1-b203b2fdd0cf,SESCO,II.5.1,Santa Fe,AR-S,annual,2023,bioetanol combustion consumption by agriculture machines,1.68208488,TJ,CH4,10.0,kg/TJ,16.8208488,kg -066c406d-b0ad-36a2-b20d-1154fa38fd2c,SESCO,II.5.1,Santa Fe,AR-S,annual,2023,bioetanol combustion consumption by agriculture machines,1.68208488,TJ,N2O,0.6,kg/TJ,1.009250928,kg -7a452d4b-b925-3a06-bd6c-001b47d45deb,SESCO,II.5.1,Tucuman,AR-T,annual,2023,bioetanol combustion consumption by agriculture machines,0.0894726,TJ,CH4,10.0,kg/TJ,0.894726,kg -4f6ef73d-691d-3b4c-a12b-f2c48d847b50,SESCO,II.5.1,Tucuman,AR-T,annual,2023,bioetanol combustion consumption by agriculture machines,0.0894726,TJ,N2O,0.6,kg/TJ,0.05368356,kg -bf3e84b2-ba4e-34e5-a4c1-3bd3985538e6,SESCO,II.1.1,Buenos Aires,AR-B,annual,2023,bioetanol combustion consumption by to the public,1613.2497742799999,TJ,CH4,10.0,kg/TJ,16132.497742799998,kg -307870d4-aacd-38a0-98fb-2112deb15139,SESCO,II.1.1,Buenos Aires,AR-B,annual,2023,bioetanol combustion consumption by to the public,1613.2497742799999,TJ,N2O,0.6,kg/TJ,967.9498645679998,kg -c85c3593-bb0b-3deb-8e2f-f63cc2fcf351,SESCO,II.1.1,Capital Federal,AR-C,annual,2023,bioetanol combustion consumption by to the public,452.23797851999996,TJ,CH4,10.0,kg/TJ,4522.3797852,kg -17880d8d-494b-3f52-a523-d6e30eb5524a,SESCO,II.1.1,Capital Federal,AR-C,annual,2023,bioetanol combustion consumption by to the public,452.23797851999996,TJ,N2O,0.6,kg/TJ,271.34278711199994,kg -da7a5d68-d976-352f-8a6b-64d608492ba7,SESCO,II.1.1,Catamarca,AR-K,annual,2023,bioetanol combustion consumption by to the public,10.46318148,TJ,CH4,10.0,kg/TJ,104.6318148,kg -86bc6682-bff5-3864-826a-d8806442f22e,SESCO,II.1.1,Catamarca,AR-K,annual,2023,bioetanol combustion consumption by to the public,10.46318148,TJ,N2O,0.6,kg/TJ,6.277908888,kg -cf3410b3-7c73-3519-8898-a6b72671ce93,SESCO,II.1.1,Chaco,AR-H,annual,2023,bioetanol combustion consumption by to the public,91.8116694,TJ,CH4,10.0,kg/TJ,918.116694,kg -5e267f51-fedd-3b66-b1df-5256ab04a7f7,SESCO,II.1.1,Chaco,AR-H,annual,2023,bioetanol combustion consumption by to the public,91.8116694,TJ,N2O,0.6,kg/TJ,55.08700164,kg -e97c7554-50d3-3e13-b053-3a7abe967064,SESCO,II.1.1,Corrientes,AR-W,annual,2023,bioetanol combustion consumption by to the public,108.88304147999999,TJ,CH4,10.0,kg/TJ,1088.8304148,kg -c2510a37-d301-3cf8-9dba-41d73fccc68b,SESCO,II.1.1,Corrientes,AR-W,annual,2023,bioetanol combustion consumption by to the public,108.88304147999999,TJ,N2O,0.6,kg/TJ,65.32982488799999,kg -23df1c2c-aa16-3a18-9dae-0dc450226da5,SESCO,II.1.1,Córdoba,AR-X,annual,2023,bioetanol combustion consumption by to the public,483.87548988,TJ,CH4,10.0,kg/TJ,4838.7548988,kg -4fbeb731-88c0-3efd-9eb2-8618a9acd519,SESCO,II.1.1,Córdoba,AR-X,annual,2023,bioetanol combustion consumption by to the public,483.87548988,TJ,N2O,0.6,kg/TJ,290.32529392799995,kg -921c3d32-e5c8-325b-80c4-2ed402c200dd,SESCO,II.1.1,Entre Rios,AR-E,annual,2023,bioetanol combustion consumption by to the public,160.7183532,TJ,CH4,10.0,kg/TJ,1607.183532,kg -14a35c25-6d92-377d-971b-acc88e3d1978,SESCO,II.1.1,Entre Rios,AR-E,annual,2023,bioetanol combustion consumption by to the public,160.7183532,TJ,N2O,0.6,kg/TJ,96.43101191999999,kg -8de1d7d9-41b5-3244-93e4-63e238cff928,SESCO,II.1.1,Formosa,AR-P,annual,2023,bioetanol combustion consumption by to the public,45.086521319999996,TJ,CH4,10.0,kg/TJ,450.86521319999997,kg -96897f98-6b68-32fe-9d08-dd2cc915b51c,SESCO,II.1.1,Formosa,AR-P,annual,2023,bioetanol combustion consumption by to the public,45.086521319999996,TJ,N2O,0.6,kg/TJ,27.051912791999996,kg -e6f0a794-de90-3934-9629-8277feecfe7b,SESCO,II.1.1,Jujuy,AR-Y,annual,2023,bioetanol combustion consumption by to the public,34.3574784,TJ,CH4,10.0,kg/TJ,343.57478399999997,kg -82a6bbe0-4b39-3b82-9fc1-62690169ecd3,SESCO,II.1.1,Jujuy,AR-Y,annual,2023,bioetanol combustion consumption by to the public,34.3574784,TJ,N2O,0.6,kg/TJ,20.614487039999997,kg -0bd7f72c-27d9-36a7-a737-ca2669fdb968,SESCO,II.1.1,La Pampa,AR-L,annual,2023,bioetanol combustion consumption by to the public,41.203410479999995,TJ,CH4,10.0,kg/TJ,412.03410479999997,kg -c3a28fd2-a2f1-32c3-a016-127f73a1ac61,SESCO,II.1.1,La Pampa,AR-L,annual,2023,bioetanol combustion consumption by to the public,41.203410479999995,TJ,N2O,0.6,kg/TJ,24.722046287999998,kg -6fe21b85-5c2a-3d87-aff4-57ea6cba1e25,SESCO,II.1.1,La Rioja,AR-F,annual,2023,bioetanol combustion consumption by to the public,28.2222144,TJ,CH4,10.0,kg/TJ,282.22214399999996,kg -cece14cd-9303-3c59-a113-6fa2634bbbf1,SESCO,II.1.1,La Rioja,AR-F,annual,2023,bioetanol combustion consumption by to the public,28.2222144,TJ,N2O,0.6,kg/TJ,16.93332864,kg -9f8bc4ea-dfe1-3972-9cb7-9ac7ce692eea,SESCO,II.1.1,Mendoza,AR-M,annual,2023,bioetanol combustion consumption by to the public,147.22588512,TJ,CH4,10.0,kg/TJ,1472.2588511999998,kg -5938360e-9893-3587-a8c2-b16f36cc4f41,SESCO,II.1.1,Mendoza,AR-M,annual,2023,bioetanol combustion consumption by to the public,147.22588512,TJ,N2O,0.6,kg/TJ,88.335531072,kg -f15d72cc-0652-3b73-aa69-7b3808acea52,SESCO,II.1.1,Misiones,AR-N,annual,2023,bioetanol combustion consumption by to the public,179.8271442,TJ,CH4,10.0,kg/TJ,1798.271442,kg -381f257a-69fd-3ce3-b7e9-5fb39b541b1b,SESCO,II.1.1,Misiones,AR-N,annual,2023,bioetanol combustion consumption by to the public,179.8271442,TJ,N2O,0.6,kg/TJ,107.89628651999999,kg -c4be7453-053b-3ca5-859f-398c695ee916,SESCO,II.1.1,Neuquén,AR-Q,annual,2023,bioetanol combustion consumption by to the public,48.03911712,TJ,CH4,10.0,kg/TJ,480.39117120000003,kg -1be27b06-b864-3c7a-8136-cb576dc04f2d,SESCO,II.1.1,Neuquén,AR-Q,annual,2023,bioetanol combustion consumption by to the public,48.03911712,TJ,N2O,0.6,kg/TJ,28.823470271999998,kg -8b96a823-8a89-3f2a-838a-9c671ffa8fdc,SESCO,II.1.1,Rio Negro,AR-R,annual,2023,bioetanol combustion consumption by to the public,29.8710666,TJ,CH4,10.0,kg/TJ,298.710666,kg -68b65f69-d39e-3d66-85de-7e1c40ea3212,SESCO,II.1.1,Rio Negro,AR-R,annual,2023,bioetanol combustion consumption by to the public,29.8710666,TJ,N2O,0.6,kg/TJ,17.922639959999998,kg -afa54eb0-9956-3586-91d8-fcfd198ec701,SESCO,II.1.1,Salta,AR-A,annual,2023,bioetanol combustion consumption by to the public,27.9665784,TJ,CH4,10.0,kg/TJ,279.665784,kg -3deaf687-3717-38d2-880f-3a3362f5d430,SESCO,II.1.1,Salta,AR-A,annual,2023,bioetanol combustion consumption by to the public,27.9665784,TJ,N2O,0.6,kg/TJ,16.77994704,kg -3f2dd650-0a1d-3bed-a53f-fa0b9b4b22cb,SESCO,II.1.1,San Juan,AR-J,annual,2023,bioetanol combustion consumption by to the public,33.5777886,TJ,CH4,10.0,kg/TJ,335.77788599999997,kg -45429998-8c2f-337c-9c79-9b1ec2ca2889,SESCO,II.1.1,San Juan,AR-J,annual,2023,bioetanol combustion consumption by to the public,33.5777886,TJ,N2O,0.6,kg/TJ,20.14667316,kg -f356f428-3a8d-3dcc-bef3-87dfc65fa826,SESCO,II.1.1,San Luis,AR-D,annual,2023,bioetanol combustion consumption by to the public,35.178069959999995,TJ,CH4,10.0,kg/TJ,351.78069959999993,kg -e9da4237-ce30-3a03-a4d2-cf0fb7b9e479,SESCO,II.1.1,San Luis,AR-D,annual,2023,bioetanol combustion consumption by to the public,35.178069959999995,TJ,N2O,0.6,kg/TJ,21.106841975999995,kg -beacd802-0682-3b8d-9a0d-2a88652d3d11,SESCO,II.1.1,Santa Fe,AR-S,annual,2023,bioetanol combustion consumption by to the public,320.61611483999997,TJ,CH4,10.0,kg/TJ,3206.1611483999995,kg -4c0f61cb-b6ab-3d06-9c35-06c50eb05139,SESCO,II.1.1,Santa Fe,AR-S,annual,2023,bioetanol combustion consumption by to the public,320.61611483999997,TJ,N2O,0.6,kg/TJ,192.36966890399998,kg -dea2e2ca-60c5-32f4-bfe3-00d3aafbd4aa,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2023,bioetanol combustion consumption by to the public,62.802096119999995,TJ,CH4,10.0,kg/TJ,628.0209612,kg -ad38a2b1-7126-319d-ad8c-7f7aad0a04e7,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2023,bioetanol combustion consumption by to the public,62.802096119999995,TJ,N2O,0.6,kg/TJ,37.681257671999994,kg -74817482-b5f6-3219-8959-716447905f87,SESCO,II.1.1,Tucuman,AR-T,annual,2023,bioetanol combustion consumption by to the public,112.38781103999999,TJ,CH4,10.0,kg/TJ,1123.8781104,kg -95314d95-abbc-38f4-a602-6089ed2a8d5a,SESCO,II.1.1,Tucuman,AR-T,annual,2023,bioetanol combustion consumption by to the public,112.38781103999999,TJ,N2O,0.6,kg/TJ,67.43268662399998,kg -c80da156-9c80-3c83-8176-e5e35a584f18,SESCO,II.1.1,Buenos Aires,AR-B,annual,2023,bioetanol combustion consumption by to the public,804.31521588,TJ,CH4,10.0,kg/TJ,8043.1521588,kg -2967c275-2f0a-3227-8038-2af371e466df,SESCO,II.1.1,Buenos Aires,AR-B,annual,2023,bioetanol combustion consumption by to the public,804.31521588,TJ,N2O,0.6,kg/TJ,482.58912952799994,kg -ee3450eb-4241-3169-8cb9-fa2b27d5ec4c,SESCO,II.1.1,Capital Federal,AR-C,annual,2023,bioetanol combustion consumption by to the public,324.89546148,TJ,CH4,10.0,kg/TJ,3248.9546148,kg -d893902d-ccd2-305a-acb0-0e3b4edf8202,SESCO,II.1.1,Capital Federal,AR-C,annual,2023,bioetanol combustion consumption by to the public,324.89546148,TJ,N2O,0.6,kg/TJ,194.93727688799999,kg -874aefb2-58be-37cf-8aa0-a89ed76a32d4,SESCO,II.1.1,Catamarca,AR-K,annual,2023,bioetanol combustion consumption by to the public,4.765055039999999,TJ,CH4,10.0,kg/TJ,47.65055039999999,kg -527cc4f1-cc07-39a5-b8ca-80b8d4529007,SESCO,II.1.1,Catamarca,AR-K,annual,2023,bioetanol combustion consumption by to the public,4.765055039999999,TJ,N2O,0.6,kg/TJ,2.8590330239999995,kg -b0f71af2-bc17-3495-a071-fa36bbb41a4a,SESCO,II.1.1,Chaco,AR-H,annual,2023,bioetanol combustion consumption by to the public,26.967041639999998,TJ,CH4,10.0,kg/TJ,269.67041639999997,kg -6172caac-0d7b-3380-8115-f9912767bebf,SESCO,II.1.1,Chaco,AR-H,annual,2023,bioetanol combustion consumption by to the public,26.967041639999998,TJ,N2O,0.6,kg/TJ,16.180224984,kg -921ce44e-b288-3942-991c-2df9563fb82a,SESCO,II.1.1,Corrientes,AR-W,annual,2023,bioetanol combustion consumption by to the public,34.94288484,TJ,CH4,10.0,kg/TJ,349.4288484,kg -2f1e85a1-d17a-3d53-a6ac-61b0a8ada009,SESCO,II.1.1,Corrientes,AR-W,annual,2023,bioetanol combustion consumption by to the public,34.94288484,TJ,N2O,0.6,kg/TJ,20.965730903999997,kg -e5de52e0-9feb-3a63-aea6-14968587c7ba,SESCO,II.1.1,Córdoba,AR-X,annual,2023,bioetanol combustion consumption by to the public,174.09834143999998,TJ,CH4,10.0,kg/TJ,1740.9834144,kg -970b0d6a-04b5-3e99-a94d-b4f3cc5c49d7,SESCO,II.1.1,Córdoba,AR-X,annual,2023,bioetanol combustion consumption by to the public,174.09834143999998,TJ,N2O,0.6,kg/TJ,104.459004864,kg -166ba566-06d4-3993-be81-39e66da49da6,SESCO,II.1.1,Entre Rios,AR-E,annual,2023,bioetanol combustion consumption by to the public,64.9443258,TJ,CH4,10.0,kg/TJ,649.443258,kg -aed4c53c-179b-323e-8257-8a457c1514d0,SESCO,II.1.1,Entre Rios,AR-E,annual,2023,bioetanol combustion consumption by to the public,64.9443258,TJ,N2O,0.6,kg/TJ,38.96659548,kg -ddeccf2a-1a7d-3e96-b98d-200f843ed027,SESCO,II.1.1,Formosa,AR-P,annual,2023,bioetanol combustion consumption by to the public,16.58822004,TJ,CH4,10.0,kg/TJ,165.8822004,kg -123373b6-3040-3aeb-9b01-26e31a51b7e6,SESCO,II.1.1,Formosa,AR-P,annual,2023,bioetanol combustion consumption by to the public,16.58822004,TJ,N2O,0.6,kg/TJ,9.952932023999999,kg -f6b4ff02-371e-33c7-9742-6b3356079aa8,SESCO,II.1.1,Jujuy,AR-Y,annual,2023,bioetanol combustion consumption by to the public,8.47177704,TJ,CH4,10.0,kg/TJ,84.71777039999999,kg -720f27e9-3997-350a-a3a0-bc03dde3ebea,SESCO,II.1.1,Jujuy,AR-Y,annual,2023,bioetanol combustion consumption by to the public,8.47177704,TJ,N2O,0.6,kg/TJ,5.0830662239999995,kg -0e689288-b8a5-3641-bfaa-ed9f4e9307ff,SESCO,II.1.1,La Pampa,AR-L,annual,2023,bioetanol combustion consumption by to the public,19.55871036,TJ,CH4,10.0,kg/TJ,195.58710359999998,kg -39eae213-c85e-38d5-ab01-80b082c1d21e,SESCO,II.1.1,La Pampa,AR-L,annual,2023,bioetanol combustion consumption by to the public,19.55871036,TJ,N2O,0.6,kg/TJ,11.735226216,kg -4599d623-c1f9-3330-97d1-d68728c95752,SESCO,II.1.1,La Rioja,AR-F,annual,2023,bioetanol combustion consumption by to the public,9.90333864,TJ,CH4,10.0,kg/TJ,99.0333864,kg -28944079-c189-3f13-9a79-d158733ea005,SESCO,II.1.1,La Rioja,AR-F,annual,2023,bioetanol combustion consumption by to the public,9.90333864,TJ,N2O,0.6,kg/TJ,5.942003184,kg -46120fbe-4477-3a5a-84f1-0c72f2916b5f,SESCO,II.1.1,Mendoza,AR-M,annual,2023,bioetanol combustion consumption by to the public,68.87600748,TJ,CH4,10.0,kg/TJ,688.7600748,kg -10de0200-0eaf-3adf-9cc6-9b516b3a338f,SESCO,II.1.1,Mendoza,AR-M,annual,2023,bioetanol combustion consumption by to the public,68.87600748,TJ,N2O,0.6,kg/TJ,41.325604487999996,kg -293f151a-a555-3632-8a20-93a5cf76ff6b,SESCO,II.1.1,Misiones,AR-N,annual,2023,bioetanol combustion consumption by to the public,46.02470544,TJ,CH4,10.0,kg/TJ,460.24705439999997,kg -21ab0616-1e29-3e53-8266-14eaa032e8b2,SESCO,II.1.1,Misiones,AR-N,annual,2023,bioetanol combustion consumption by to the public,46.02470544,TJ,N2O,0.6,kg/TJ,27.614823263999998,kg -35503bbd-ee38-3e06-a5c7-2ce145ab5d04,SESCO,II.1.1,Neuquén,AR-Q,annual,2023,bioetanol combustion consumption by to the public,29.050475039999995,TJ,CH4,10.0,kg/TJ,290.5047503999999,kg -fddbb944-f85d-3e71-b322-98a9bea565ce,SESCO,II.1.1,Neuquén,AR-Q,annual,2023,bioetanol combustion consumption by to the public,29.050475039999995,TJ,N2O,0.6,kg/TJ,17.430285023999996,kg -752f67d6-7ecb-304d-944e-85952bc5afbf,SESCO,II.1.1,Rio Negro,AR-R,annual,2023,bioetanol combustion consumption by to the public,15.491541599999998,TJ,CH4,10.0,kg/TJ,154.915416,kg -893c0c3e-9321-3720-bc6c-551315cde8b6,SESCO,II.1.1,Rio Negro,AR-R,annual,2023,bioetanol combustion consumption by to the public,15.491541599999998,TJ,N2O,0.6,kg/TJ,9.294924959999998,kg -2116ed27-b660-3d0a-b60f-647e06fe634f,SESCO,II.1.1,Salta,AR-A,annual,2023,bioetanol combustion consumption by to the public,12.799694520000001,TJ,CH4,10.0,kg/TJ,127.99694520000001,kg -c370ede3-cf40-3f37-9c04-96802629c6ec,SESCO,II.1.1,Salta,AR-A,annual,2023,bioetanol combustion consumption by to the public,12.799694520000001,TJ,N2O,0.6,kg/TJ,7.679816712,kg -5235cb4e-f278-39d4-adcc-a8475fa9f7d2,SESCO,II.1.1,San Juan,AR-J,annual,2023,bioetanol combustion consumption by to the public,10.966784399999998,TJ,CH4,10.0,kg/TJ,109.66784399999997,kg -1d89dd5a-ac2c-3471-9d63-12589307f6ce,SESCO,II.1.1,San Juan,AR-J,annual,2023,bioetanol combustion consumption by to the public,10.966784399999998,TJ,N2O,0.6,kg/TJ,6.580070639999999,kg -c94693a0-37cd-3fd6-adfa-b8c3081ca17b,SESCO,II.1.1,San Luis,AR-D,annual,2023,bioetanol combustion consumption by to the public,13.658631479999999,TJ,CH4,10.0,kg/TJ,136.5863148,kg -3aa2051a-a7be-3a52-9db7-6d1896199daf,SESCO,II.1.1,San Luis,AR-D,annual,2023,bioetanol combustion consumption by to the public,13.658631479999999,TJ,N2O,0.6,kg/TJ,8.195178888,kg -aa8b98e1-3b8d-3285-8c55-560ca433ca6c,SESCO,II.1.1,Santa Fe,AR-S,annual,2023,bioetanol combustion consumption by to the public,152.26702704,TJ,CH4,10.0,kg/TJ,1522.6702704,kg -d92cc3f5-1b87-39c6-be34-966695503a35,SESCO,II.1.1,Santa Fe,AR-S,annual,2023,bioetanol combustion consumption by to the public,152.26702704,TJ,N2O,0.6,kg/TJ,91.36021622399998,kg -b7a7999f-c847-327c-a310-c84a60bbd3b3,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2023,bioetanol combustion consumption by to the public,21.537333,TJ,CH4,10.0,kg/TJ,215.37333,kg -7f4b8f82-bc4a-3393-a748-d802ca4add31,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2023,bioetanol combustion consumption by to the public,21.537333,TJ,N2O,0.6,kg/TJ,12.922399799999999,kg -e80ee963-f63f-37e5-ad0a-d396fad30e87,SESCO,II.1.1,Tucuman,AR-T,annual,2023,bioetanol combustion consumption by to the public,27.365833799999997,TJ,CH4,10.0,kg/TJ,273.65833799999996,kg -d8b770d9-05a8-384a-97d5-9063c2caa947,SESCO,II.1.1,Tucuman,AR-T,annual,2023,bioetanol combustion consumption by to the public,27.365833799999997,TJ,N2O,0.6,kg/TJ,16.419500279999998,kg -76c3a953-41d3-34ef-9426-5a5d6921f5d7,SESCO,I.3.1,Buenos Aires,AR-B,annual,2023,bioetanol combustion consumption by petrochemical industries,0.7822461599999999,TJ,CH4,10.0,kg/TJ,7.822461599999999,kg -2bfca054-f817-348a-98ad-f829683229a8,SESCO,I.3.1,Buenos Aires,AR-B,annual,2023,bioetanol combustion consumption by petrochemical industries,0.7822461599999999,TJ,N2O,0.6,kg/TJ,0.4693476959999999,kg -26d2d88b-cceb-3941-b650-c0c2cca1c17b,SESCO,I.3.1,Misiones,AR-N,annual,2023,bioetanol combustion consumption by petrochemical industries,0.015338159999999998,TJ,CH4,10.0,kg/TJ,0.15338159999999998,kg -44905aeb-eebc-3ab9-94d3-6f687198d4ca,SESCO,I.3.1,Misiones,AR-N,annual,2023,bioetanol combustion consumption by petrochemical industries,0.015338159999999998,TJ,N2O,0.6,kg/TJ,0.009202895999999999,kg -08e075ad-db9a-3445-8bfc-1385cf818755,SESCO,I.3.1,Buenos Aires,AR-B,annual,2023,bioetanol combustion consumption by petrochemical industries,0.35277768,TJ,CH4,10.0,kg/TJ,3.5277768,kg -7660d6ba-ceb3-3990-b7f1-6608a4964ba8,SESCO,I.3.1,Buenos Aires,AR-B,annual,2023,bioetanol combustion consumption by petrochemical industries,0.35277768,TJ,N2O,0.6,kg/TJ,0.21166660799999998,kg -0ec006d9-358f-38d9-a4c9-64877ddd3e89,SESCO,I.3.1,Entre Rios,AR-E,annual,2023,bioetanol combustion consumption by petrochemical industries,0.0255636,TJ,CH4,10.0,kg/TJ,0.255636,kg -8daaf9a7-7e06-3f14-b162-68c172c5cb0a,SESCO,I.3.1,Entre Rios,AR-E,annual,2023,bioetanol combustion consumption by petrochemical industries,0.0255636,TJ,N2O,0.6,kg/TJ,0.015338159999999998,kg -f106a8bd-3715-3e75-b2e9-1285515480d8,SESCO,I.3.1,La Pampa,AR-L,annual,2023,bioetanol combustion consumption by petrochemical industries,0.07413444,TJ,CH4,10.0,kg/TJ,0.7413444,kg -311ffabc-8272-3434-8f1e-faf34903fe3e,SESCO,I.3.1,La Pampa,AR-L,annual,2023,bioetanol combustion consumption by petrochemical industries,0.07413444,TJ,N2O,0.6,kg/TJ,0.044480663999999996,kg -eecf7e2b-dc7a-390f-b9a9-06b611fefd7a,SESCO,I.3.1,Neuquén,AR-Q,annual,2023,bioetanol combustion consumption by petrochemical industries,0.04857084,TJ,CH4,10.0,kg/TJ,0.4857084,kg -5dbf080e-e6f9-314b-bafc-86580c0073e8,SESCO,I.3.1,Neuquén,AR-Q,annual,2023,bioetanol combustion consumption by petrochemical industries,0.04857084,TJ,N2O,0.6,kg/TJ,0.029142503999999996,kg -795f8fb6-a248-32f5-b31a-99c080247470,SESCO,I.3.1,Rio Negro,AR-R,annual,2023,bioetanol combustion consumption by petrochemical industries,0.05368356,TJ,CH4,10.0,kg/TJ,0.5368356,kg -4c4f9f39-9070-3321-aeff-5f90670e8cfb,SESCO,I.3.1,Rio Negro,AR-R,annual,2023,bioetanol combustion consumption by petrochemical industries,0.05368356,TJ,N2O,0.6,kg/TJ,0.032210136,kg -c57f51be-1a95-3c65-9761-aa37a591a1ec,SESCO,II.5.1,Buenos Aires,AR-B,annual,2023,bioetanol combustion consumption by agriculture machines,0.52235126424,TJ,CH4,10.0,kg/TJ,5.2235126424,kg -c4d13a6d-4ed9-335d-8681-ca9926568bf6,SESCO,II.5.1,Buenos Aires,AR-B,annual,2023,bioetanol combustion consumption by agriculture machines,0.52235126424,TJ,N2O,0.6,kg/TJ,0.31341075854399997,kg -f989b31b-c1cf-386c-8944-0eace9dd9327,SESCO,II.5.1,Capital Federal,AR-C,annual,2023,bioetanol combustion consumption by agriculture machines,0.44935440443999997,TJ,CH4,10.0,kg/TJ,4.4935440444,kg -69b7e62a-941c-3dc1-a8b6-57611c5e2e02,SESCO,II.5.1,Capital Federal,AR-C,annual,2023,bioetanol combustion consumption by agriculture machines,0.44935440443999997,TJ,N2O,0.6,kg/TJ,0.269612642664,kg -689cbb29-2b0e-35ca-b589-c9973820d48f,SESCO,II.5.1,Córdoba,AR-X,annual,2023,bioetanol combustion consumption by agriculture machines,0.6071227182,TJ,CH4,10.0,kg/TJ,6.0712271819999994,kg -50e80ac8-2394-3f59-b753-76a65eaf85bb,SESCO,II.5.1,Córdoba,AR-X,annual,2023,bioetanol combustion consumption by agriculture machines,0.6071227182,TJ,N2O,0.6,kg/TJ,0.36427363092,kg -e9125b11-12c1-39d0-8103-f69e455c2728,SESCO,II.5.1,Santa Fe,AR-S,annual,2023,bioetanol combustion consumption by agriculture machines,1.20728958084,TJ,CH4,10.0,kg/TJ,12.072895808399998,kg -a250b3ce-3300-37d0-8d07-a3e4ae646337,SESCO,II.5.1,Santa Fe,AR-S,annual,2023,bioetanol combustion consumption by agriculture machines,1.20728958084,TJ,N2O,0.6,kg/TJ,0.7243737485039999,kg -9d2d44d7-21d6-3822-859d-e39551d97c67,SESCO,II.5.1,Buenos Aires,AR-B,annual,2023,bioetanol combustion consumption by agriculture machines,0.35357782067999993,TJ,CH4,10.0,kg/TJ,3.5357782067999994,kg -85c5737b-34ec-3c2e-9f81-aa37a97e46b0,SESCO,II.5.1,Buenos Aires,AR-B,annual,2023,bioetanol combustion consumption by agriculture machines,0.35357782067999993,TJ,N2O,0.6,kg/TJ,0.21214669240799996,kg -c43a902e-a186-371b-b38c-9360f6cfb466,SESCO,II.5.1,Capital Federal,AR-C,annual,2023,bioetanol combustion consumption by agriculture machines,0.10664111375999999,TJ,CH4,10.0,kg/TJ,1.0664111375999998,kg -25b6d303-bbcb-3623-9c8a-d47c0f544b57,SESCO,II.5.1,Capital Federal,AR-C,annual,2023,bioetanol combustion consumption by agriculture machines,0.10664111375999999,TJ,N2O,0.6,kg/TJ,0.063984668256,kg -fee8ed7e-d38f-31df-a9e6-b514901283e5,SESCO,II.5.1,Córdoba,AR-X,annual,2023,bioetanol combustion consumption by agriculture machines,0.22895271431999997,TJ,CH4,10.0,kg/TJ,2.2895271432,kg -b7db65ae-f496-3f24-8ca6-67e9281c0a69,SESCO,II.5.1,Córdoba,AR-X,annual,2023,bioetanol combustion consumption by agriculture machines,0.22895271431999997,TJ,N2O,0.6,kg/TJ,0.13737162859199997,kg -9bb79027-fa4b-3baf-8fa1-ca3408bd81f1,SESCO,II.5.1,Santa Fe,AR-S,annual,2023,bioetanol combustion consumption by agriculture machines,0.31316943816,TJ,CH4,10.0,kg/TJ,3.1316943816,kg -d9bc7c7f-bb50-3edc-9158-ef7eb8b1bf5c,SESCO,II.5.1,Santa Fe,AR-S,annual,2023,bioetanol combustion consumption by agriculture machines,0.31316943816,TJ,N2O,0.6,kg/TJ,0.187901662896,kg -f35fdb26-172e-39c6-9beb-8c1ad18ba473,SESCO,II.1.1,Buenos Aires,AR-B,annual,2023,bioetanol combustion consumption by to the public,446.67705447756,TJ,CH4,10.0,kg/TJ,4466.7705447756,kg -091e319e-157c-33ba-9187-114399876b67,SESCO,II.1.1,Buenos Aires,AR-B,annual,2023,bioetanol combustion consumption by to the public,446.67705447756,TJ,N2O,0.6,kg/TJ,268.00623268653595,kg -a03d9fef-5945-38e5-b1ff-9dcf95595541,SESCO,II.1.1,Capital Federal,AR-C,annual,2023,bioetanol combustion consumption by to the public,33.92398365299999,TJ,CH4,10.0,kg/TJ,339.23983652999993,kg -46950ee9-f193-353b-ad1a-cc4e0116e093,SESCO,II.1.1,Capital Federal,AR-C,annual,2023,bioetanol combustion consumption by to the public,33.92398365299999,TJ,N2O,0.6,kg/TJ,20.354390191799997,kg -731a9735-53e1-38e8-bfd9-96a7c0381e06,SESCO,II.1.1,Chaco,AR-H,annual,2023,bioetanol combustion consumption by to the public,5.0294721366,TJ,CH4,10.0,kg/TJ,50.294721366,kg -d817e73c-7bbd-377b-92da-020e0c6618ee,SESCO,II.1.1,Chaco,AR-H,annual,2023,bioetanol combustion consumption by to the public,5.0294721366,TJ,N2O,0.6,kg/TJ,3.0176832819599997,kg -cd35105a-5d2f-31b4-bfcb-69419274fdf0,SESCO,II.1.1,Chubut,AR-U,annual,2023,bioetanol combustion consumption by to the public,26.955729746999996,TJ,CH4,10.0,kg/TJ,269.55729747,kg -3ac51907-5bed-3f06-a074-5d76d951818b,SESCO,II.1.1,Chubut,AR-U,annual,2023,bioetanol combustion consumption by to the public,26.955729746999996,TJ,N2O,0.6,kg/TJ,16.173437848199995,kg -bdd44533-6b9d-3714-a91d-9251d9a9c93f,SESCO,II.1.1,Corrientes,AR-W,annual,2023,bioetanol combustion consumption by to the public,39.68814598452,TJ,CH4,10.0,kg/TJ,396.88145984519997,kg -442a27da-21a2-35e1-8071-5a76798469dd,SESCO,II.1.1,Corrientes,AR-W,annual,2023,bioetanol combustion consumption by to the public,39.68814598452,TJ,N2O,0.6,kg/TJ,23.812887590712,kg -31542b9d-9be1-3e4d-a1c5-197506529187,SESCO,II.1.1,Córdoba,AR-X,annual,2023,bioetanol combustion consumption by to the public,93.38661723239998,TJ,CH4,10.0,kg/TJ,933.8661723239999,kg -8a5c8a03-353e-33bb-9e55-74d894729205,SESCO,II.1.1,Córdoba,AR-X,annual,2023,bioetanol combustion consumption by to the public,93.38661723239998,TJ,N2O,0.6,kg/TJ,56.03197033943999,kg -50953ea7-6c86-33c4-b285-ef84ead8ab72,SESCO,II.1.1,Entre Rios,AR-E,annual,2023,bioetanol combustion consumption by to the public,74.24327191428,TJ,CH4,10.0,kg/TJ,742.4327191428,kg -43a59487-b516-37f0-99d2-41490054c4ff,SESCO,II.1.1,Entre Rios,AR-E,annual,2023,bioetanol combustion consumption by to the public,74.24327191428,TJ,N2O,0.6,kg/TJ,44.545963148568,kg -27c8a453-7a6e-344c-85b1-1e7de3698844,SESCO,II.1.1,Jujuy,AR-Y,annual,2023,bioetanol combustion consumption by to the public,3.7071616939199994,TJ,CH4,10.0,kg/TJ,37.07161693919999,kg -1241f732-e7e5-39b7-94be-c3403f9cd548,SESCO,II.1.1,Jujuy,AR-Y,annual,2023,bioetanol combustion consumption by to the public,3.7071616939199994,TJ,N2O,0.6,kg/TJ,2.2242970163519997,kg -f6ad7607-9d92-3902-93e4-24bc473ebbed,SESCO,II.1.1,La Pampa,AR-L,annual,2023,bioetanol combustion consumption by to the public,35.704444934879994,TJ,CH4,10.0,kg/TJ,357.04444934879996,kg -aecd415d-9a18-3d03-a172-ec283eeb42e1,SESCO,II.1.1,La Pampa,AR-L,annual,2023,bioetanol combustion consumption by to the public,35.704444934879994,TJ,N2O,0.6,kg/TJ,21.422666960927994,kg -5ea47f88-0ddf-3be4-94a8-a0ff7c7b478c,SESCO,II.1.1,Mendoza,AR-M,annual,2023,bioetanol combustion consumption by to the public,7.913404106999998,TJ,CH4,10.0,kg/TJ,79.13404106999998,kg -0310589b-2a3e-3649-9801-a5c367d828c0,SESCO,II.1.1,Mendoza,AR-M,annual,2023,bioetanol combustion consumption by to the public,7.913404106999998,TJ,N2O,0.6,kg/TJ,4.748042464199998,kg -30e4698f-7705-38a2-80bb-50c3515f939d,SESCO,II.1.1,Neuquén,AR-Q,annual,2023,bioetanol combustion consumption by to the public,36.7800257358,TJ,CH4,10.0,kg/TJ,367.800257358,kg -b070f4d9-66de-302e-9be1-7ce087fb472e,SESCO,II.1.1,Neuquén,AR-Q,annual,2023,bioetanol combustion consumption by to the public,36.7800257358,TJ,N2O,0.6,kg/TJ,22.06801544148,kg -9cb69728-8e38-32de-b8fe-c47e41855ad9,SESCO,II.1.1,Rio Negro,AR-R,annual,2023,bioetanol combustion consumption by to the public,117.08272467431999,TJ,CH4,10.0,kg/TJ,1170.8272467431998,kg -fc6139e5-774b-31b7-8809-1eebca8d0827,SESCO,II.1.1,Rio Negro,AR-R,annual,2023,bioetanol combustion consumption by to the public,117.08272467431999,TJ,N2O,0.6,kg/TJ,70.24963480459199,kg -43e88638-7619-333f-94ef-86a9c1a931f2,SESCO,II.1.1,San Juan,AR-J,annual,2023,bioetanol combustion consumption by to the public,24.64994159784,TJ,CH4,10.0,kg/TJ,246.4994159784,kg -f54d00fd-4824-3729-953e-3c2f76313eb6,SESCO,II.1.1,San Juan,AR-J,annual,2023,bioetanol combustion consumption by to the public,24.64994159784,TJ,N2O,0.6,kg/TJ,14.789964958704001,kg -298d1f19-c643-330e-8a1f-be14ae22fd9b,SESCO,II.1.1,San Luis,AR-D,annual,2023,bioetanol combustion consumption by to the public,8.49995579628,TJ,CH4,10.0,kg/TJ,84.9995579628,kg -e3e07e01-c35e-3488-aa80-da0cd275d451,SESCO,II.1.1,San Luis,AR-D,annual,2023,bioetanol combustion consumption by to the public,8.49995579628,TJ,N2O,0.6,kg/TJ,5.099973477768,kg -e6f5dca2-e417-3d11-8505-5c73c06393a6,SESCO,II.1.1,Santa Fe,AR-S,annual,2023,bioetanol combustion consumption by to the public,110.20208745096,TJ,CH4,10.0,kg/TJ,1102.0208745096,kg -f4ea16b1-bdeb-3662-aff8-4f136eaea46e,SESCO,II.1.1,Santa Fe,AR-S,annual,2023,bioetanol combustion consumption by to the public,110.20208745096,TJ,N2O,0.6,kg/TJ,66.121252470576,kg -43542474-f4bf-3991-a439-8ae100ae94b6,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2023,bioetanol combustion consumption by to the public,7.51311903276,TJ,CH4,10.0,kg/TJ,75.1311903276,kg -348c5de9-d62c-3a05-8186-214718dd66e5,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2023,bioetanol combustion consumption by to the public,7.51311903276,TJ,N2O,0.6,kg/TJ,4.5078714196559995,kg -417a8cab-cfd7-3ae3-b002-93cb9179699e,SESCO,II.1.1,Tucuman,AR-T,annual,2023,bioetanol combustion consumption by to the public,0.3035268482399999,TJ,CH4,10.0,kg/TJ,3.0352684823999994,kg -c22d2560-b8e9-3a00-82e9-3aeb137dd5ae,SESCO,II.1.1,Tucuman,AR-T,annual,2023,bioetanol combustion consumption by to the public,0.3035268482399999,TJ,N2O,0.6,kg/TJ,0.18211610894399996,kg -3c2f222a-1abe-357f-aea5-5353ea2f45ee,SESCO,II.1.1,Buenos Aires,AR-B,annual,2023,bioetanol combustion consumption by to the public,69.39372406356,TJ,CH4,10.0,kg/TJ,693.9372406356,kg -89c5506b-2060-3d66-a54a-c2e14cf4ff37,SESCO,II.1.1,Buenos Aires,AR-B,annual,2023,bioetanol combustion consumption by to the public,69.39372406356,TJ,N2O,0.6,kg/TJ,41.636234438136,kg -6021927a-2ffe-3481-b8ec-ee5ae79d5eff,SESCO,II.1.1,Capital Federal,AR-C,annual,2023,bioetanol combustion consumption by to the public,4.69082601468,TJ,CH4,10.0,kg/TJ,46.9082601468,kg -3a18fd28-f0b6-3269-8fe8-756af20ef7eb,SESCO,II.1.1,Capital Federal,AR-C,annual,2023,bioetanol combustion consumption by to the public,4.69082601468,TJ,N2O,0.6,kg/TJ,2.814495608808,kg -42aaa25f-75e8-3318-a9ce-c5ec6252ebe2,SESCO,II.1.1,Chaco,AR-H,annual,2023,bioetanol combustion consumption by to the public,0.60470951436,TJ,CH4,10.0,kg/TJ,6.0470951436,kg -e4dd9a11-c6e2-397c-a07c-b2c63a08d9ea,SESCO,II.1.1,Chaco,AR-H,annual,2023,bioetanol combustion consumption by to the public,0.60470951436,TJ,N2O,0.6,kg/TJ,0.362825708616,kg -473b4b93-42e1-3d3c-a109-53cf0c0e6e33,SESCO,II.1.1,Chubut,AR-U,annual,2023,bioetanol combustion consumption by to the public,4.02534926676,TJ,CH4,10.0,kg/TJ,40.2534926676,kg -891b1ba9-057c-360e-8987-65139bb3fb84,SESCO,II.1.1,Chubut,AR-U,annual,2023,bioetanol combustion consumption by to the public,4.02534926676,TJ,N2O,0.6,kg/TJ,2.415209560056,kg -e29e9c9c-4c9e-3304-a3dd-87d05bce3dc8,SESCO,II.1.1,Corrientes,AR-W,annual,2023,bioetanol combustion consumption by to the public,5.4881981568,TJ,CH4,10.0,kg/TJ,54.881981568,kg -c4f66b7a-277c-38e8-baed-4f57be38006e,SESCO,II.1.1,Corrientes,AR-W,annual,2023,bioetanol combustion consumption by to the public,5.4881981568,TJ,N2O,0.6,kg/TJ,3.29291889408,kg -6371f553-5e87-3170-add7-f61bb8cf30e6,SESCO,II.1.1,Córdoba,AR-X,annual,2023,bioetanol combustion consumption by to the public,15.93144514152,TJ,CH4,10.0,kg/TJ,159.31445141519998,kg -8bd202b5-fa2b-3a09-bfee-51c4c787c82a,SESCO,II.1.1,Córdoba,AR-X,annual,2023,bioetanol combustion consumption by to the public,15.93144514152,TJ,N2O,0.6,kg/TJ,9.558867084911999,kg -a7d23add-45ad-3a90-a6e5-89d958fa5e75,SESCO,II.1.1,Entre Rios,AR-E,annual,2023,bioetanol combustion consumption by to the public,17.58033313056,TJ,CH4,10.0,kg/TJ,175.8033313056,kg -f9ea8777-15b4-3e49-ae80-5401ad13eb1c,SESCO,II.1.1,Entre Rios,AR-E,annual,2023,bioetanol combustion consumption by to the public,17.58033313056,TJ,N2O,0.6,kg/TJ,10.548199878336,kg -7b7bd1ab-7488-33c4-854a-57ff3ff11e63,SESCO,II.1.1,Jujuy,AR-Y,annual,2023,bioetanol combustion consumption by to the public,0.26523768816,TJ,CH4,10.0,kg/TJ,2.6523768816,kg -385c88b2-bdfe-3f29-9f7e-039097486d33,SESCO,II.1.1,Jujuy,AR-Y,annual,2023,bioetanol combustion consumption by to the public,0.26523768816,TJ,N2O,0.6,kg/TJ,0.15914261289599999,kg -dae4083f-b7bb-34f8-8afe-9aba65544d29,SESCO,II.1.1,La Pampa,AR-L,annual,2023,bioetanol combustion consumption by to the public,7.265474214119999,TJ,CH4,10.0,kg/TJ,72.65474214119999,kg -8bcac303-c6b2-39cb-9d00-57bc347927e3,SESCO,II.1.1,La Pampa,AR-L,annual,2023,bioetanol combustion consumption by to the public,7.265474214119999,TJ,N2O,0.6,kg/TJ,4.359284528471999,kg -63da1c64-adc6-3584-85b2-b6344c937508,SESCO,II.1.1,Mendoza,AR-M,annual,2023,bioetanol combustion consumption by to the public,1.3286987863199997,TJ,CH4,10.0,kg/TJ,13.286987863199997,kg -fbadb934-5b71-3dcb-a5db-69564b23e626,SESCO,II.1.1,Mendoza,AR-M,annual,2023,bioetanol combustion consumption by to the public,1.3286987863199997,TJ,N2O,0.6,kg/TJ,0.7972192717919998,kg -3909023c-d7c3-357a-96ac-6802b0068eff,SESCO,II.1.1,Neuquén,AR-Q,annual,2023,bioetanol combustion consumption by to the public,10.10253532392,TJ,CH4,10.0,kg/TJ,101.0253532392,kg -0b259795-e589-34f1-ac15-373a89cfd5bb,SESCO,II.1.1,Neuquén,AR-Q,annual,2023,bioetanol combustion consumption by to the public,10.10253532392,TJ,N2O,0.6,kg/TJ,6.061521194351999,kg -1bec52ca-1a92-3613-902f-9bd7b757480a,SESCO,II.1.1,Rio Negro,AR-R,annual,2023,bioetanol combustion consumption by to the public,18.20464225704,TJ,CH4,10.0,kg/TJ,182.0464225704,kg -59fa648d-eaba-39e3-87bd-6be3eadb40fa,SESCO,II.1.1,Rio Negro,AR-R,annual,2023,bioetanol combustion consumption by to the public,18.20464225704,TJ,N2O,0.6,kg/TJ,10.922785354223999,kg -d5ca8ae2-bd31-34da-aa1e-1ef3a3219eb4,SESCO,II.1.1,San Juan,AR-J,annual,2023,bioetanol combustion consumption by to the public,2.4337032908399996,TJ,CH4,10.0,kg/TJ,24.337032908399998,kg -e0c70116-c0f1-3cd6-9833-ccbb30cdb2b9,SESCO,II.1.1,San Juan,AR-J,annual,2023,bioetanol combustion consumption by to the public,2.4337032908399996,TJ,N2O,0.6,kg/TJ,1.4602219745039997,kg -ec5c4561-6d3a-3e6d-9f02-a84cbd65b921,SESCO,II.1.1,San Luis,AR-D,annual,2023,bioetanol combustion consumption by to the public,1.2104645799599998,TJ,CH4,10.0,kg/TJ,12.104645799599998,kg -63adb18c-3419-3a78-99ff-00f1d6f0371c,SESCO,II.1.1,San Luis,AR-D,annual,2023,bioetanol combustion consumption by to the public,1.2104645799599998,TJ,N2O,0.6,kg/TJ,0.7262787479759999,kg -252137c1-728e-3368-887b-3ef74720de96,SESCO,II.1.1,Santa Fe,AR-S,annual,2023,bioetanol combustion consumption by to the public,21.258495476639997,TJ,CH4,10.0,kg/TJ,212.58495476639996,kg -d99bdeba-f0a2-3b70-9ed8-dc90337381c1,SESCO,II.1.1,Santa Fe,AR-S,annual,2023,bioetanol combustion consumption by to the public,21.258495476639997,TJ,N2O,0.6,kg/TJ,12.755097285983998,kg -a24cc4e0-34b8-3a55-82d3-051bae516914,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2023,bioetanol combustion consumption by to the public,1.1037979026,TJ,CH4,10.0,kg/TJ,11.037979026,kg -27f9fa16-ea5d-32f7-8c71-7eab5610a476,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2023,bioetanol combustion consumption by to the public,1.1037979026,TJ,N2O,0.6,kg/TJ,0.66227874156,kg -bf999efe-2d2e-3bf0-8a0c-999ce03b86d6,SESCO,II.1.1,Tucuman,AR-T,annual,2023,bioetanol combustion consumption by to the public,0.05057246987999999,TJ,CH4,10.0,kg/TJ,0.5057246987999999,kg -0e4a57a5-f5d0-3652-897b-de6839e7bc26,SESCO,II.1.1,Tucuman,AR-T,annual,2023,bioetanol combustion consumption by to the public,0.05057246987999999,TJ,N2O,0.6,kg/TJ,0.030343481927999995,kg -2288b29f-d8f3-33e7-b8e9-3f655b40a20c,SESCO,II.5.1,Buenos Aires,AR-B,annual,2023,bioetanol combustion consumption by agriculture machines,8.067872159999999,TJ,CH4,10.0,kg/TJ,80.67872159999999,kg -f39b27b1-68f3-3947-bc7d-cd764f13178c,SESCO,II.5.1,Buenos Aires,AR-B,annual,2023,bioetanol combustion consumption by agriculture machines,8.067872159999999,TJ,N2O,0.6,kg/TJ,4.840723295999999,kg -1595c918-3a01-357a-92f8-a20489ad40a4,SESCO,II.5.1,Salta,AR-A,annual,2023,bioetanol combustion consumption by agriculture machines,0.07157807999999999,TJ,CH4,10.0,kg/TJ,0.7157807999999999,kg -3279daf9-c1e6-3b59-a63c-cf4907355935,SESCO,II.5.1,Salta,AR-A,annual,2023,bioetanol combustion consumption by agriculture machines,0.07157807999999999,TJ,N2O,0.6,kg/TJ,0.04294684799999999,kg -9aeef23a-a6a0-33eb-88ac-68016ccbf293,SESCO,II.5.1,Santa Fe,AR-S,annual,2023,bioetanol combustion consumption by agriculture machines,3.17499912,TJ,CH4,10.0,kg/TJ,31.749991199999997,kg -f46f3164-0d44-3150-a609-f60581513906,SESCO,II.5.1,Santa Fe,AR-S,annual,2023,bioetanol combustion consumption by agriculture machines,3.17499912,TJ,N2O,0.6,kg/TJ,1.9049994719999999,kg -790539d5-5d43-39dd-82c9-cd6332e5c397,SESCO,II.5.1,Buenos Aires,AR-B,annual,2023,bioetanol combustion consumption by agriculture machines,0.64164636,TJ,CH4,10.0,kg/TJ,6.4164636,kg -1e6abdba-4ee7-35ed-ab4c-a69e8fad6cd2,SESCO,II.5.1,Buenos Aires,AR-B,annual,2023,bioetanol combustion consumption by agriculture machines,0.64164636,TJ,N2O,0.6,kg/TJ,0.384987816,kg -155a6b3f-5ce8-377f-a3f6-d26c104cb805,SESCO,II.5.1,Santa Fe,AR-S,annual,2023,bioetanol combustion consumption by agriculture machines,0.34255223999999995,TJ,CH4,10.0,kg/TJ,3.4255223999999993,kg -d9b5f19e-d431-36c8-afe7-5bfb519a1e7e,SESCO,II.5.1,Santa Fe,AR-S,annual,2023,bioetanol combustion consumption by agriculture machines,0.34255223999999995,TJ,N2O,0.6,kg/TJ,0.20553134399999998,kg -507d6e89-fd03-371b-a4a8-ec578238844e,SESCO,II.1.1,Buenos Aires,AR-B,annual,2023,bioetanol combustion consumption by to the public,3243.9978327599997,TJ,CH4,10.0,kg/TJ,32439.978327599998,kg -59d906b2-5cfc-3812-b12e-e51e9c2b4b08,SESCO,II.1.1,Buenos Aires,AR-B,annual,2023,bioetanol combustion consumption by to the public,3243.9978327599997,TJ,N2O,0.6,kg/TJ,1946.3986996559997,kg -6251e2b4-8736-3776-8097-d8832fd2c6c6,SESCO,II.1.1,Capital Federal,AR-C,annual,2023,bioetanol combustion consumption by to the public,706.28903532,TJ,CH4,10.0,kg/TJ,7062.8903532,kg -55e2ae17-7de5-3f4f-b116-012badb888af,SESCO,II.1.1,Capital Federal,AR-C,annual,2023,bioetanol combustion consumption by to the public,706.28903532,TJ,N2O,0.6,kg/TJ,423.773421192,kg -1747466e-dda9-3270-af92-1c4356438d40,SESCO,II.1.1,Catamarca,AR-K,annual,2023,bioetanol combustion consumption by to the public,95.87883816,TJ,CH4,10.0,kg/TJ,958.7883816,kg -e43c687f-8451-3c9b-ad18-524d98a21640,SESCO,II.1.1,Catamarca,AR-K,annual,2023,bioetanol combustion consumption by to the public,95.87883816,TJ,N2O,0.6,kg/TJ,57.527302896,kg -c129ae3e-3b35-3bc9-b55a-1a97bc85e40b,SESCO,II.1.1,Chaco,AR-H,annual,2023,bioetanol combustion consumption by to the public,253.67015915999997,TJ,CH4,10.0,kg/TJ,2536.7015915999996,kg -00b03867-7700-3b10-a7ea-420f1c94225d,SESCO,II.1.1,Chaco,AR-H,annual,2023,bioetanol combustion consumption by to the public,253.67015915999997,TJ,N2O,0.6,kg/TJ,152.20209549599997,kg -4ab9429a-3f6b-30ce-aacc-70008b839acd,SESCO,II.1.1,Chubut,AR-U,annual,2023,bioetanol combustion consumption by to the public,279.99555444,TJ,CH4,10.0,kg/TJ,2799.9555444,kg -4efe8907-947e-3085-a346-4bf33c4e1b2a,SESCO,II.1.1,Chubut,AR-U,annual,2023,bioetanol combustion consumption by to the public,279.99555444,TJ,N2O,0.6,kg/TJ,167.99733266399997,kg -c1d8aa55-b952-30c2-be50-56144c6060c3,SESCO,II.1.1,Corrientes,AR-W,annual,2023,bioetanol combustion consumption by to the public,259.48843452,TJ,CH4,10.0,kg/TJ,2594.8843452,kg -8f01d75a-8ed0-3289-8138-133f6672ed74,SESCO,II.1.1,Corrientes,AR-W,annual,2023,bioetanol combustion consumption by to the public,259.48843452,TJ,N2O,0.6,kg/TJ,155.693060712,kg -cb0f02c7-f1ea-3db7-9d30-c62ef26ce492,SESCO,II.1.1,Córdoba,AR-X,annual,2023,bioetanol combustion consumption by to the public,977.7616855199999,TJ,CH4,10.0,kg/TJ,9777.616855199998,kg -676835fc-ceb4-337d-879a-f92586c03672,SESCO,II.1.1,Córdoba,AR-X,annual,2023,bioetanol combustion consumption by to the public,977.7616855199999,TJ,N2O,0.6,kg/TJ,586.6570113119999,kg -5cdc4eb3-d841-34a1-8382-094c93556806,SESCO,II.1.1,Entre Rios,AR-E,annual,2023,bioetanol combustion consumption by to the public,324.45576755999997,TJ,CH4,10.0,kg/TJ,3244.5576755999996,kg -45246fd6-989b-3a7f-95ec-e13203b5d6e1,SESCO,II.1.1,Entre Rios,AR-E,annual,2023,bioetanol combustion consumption by to the public,324.45576755999997,TJ,N2O,0.6,kg/TJ,194.67346053599996,kg -72ef49e6-d00f-3a12-87ec-915be8ba1f6f,SESCO,II.1.1,Formosa,AR-P,annual,2023,bioetanol combustion consumption by to the public,124.93698228,TJ,CH4,10.0,kg/TJ,1249.3698227999998,kg -41805e12-b78e-3c1f-b3c4-98a5163942ac,SESCO,II.1.1,Formosa,AR-P,annual,2023,bioetanol combustion consumption by to the public,124.93698228,TJ,N2O,0.6,kg/TJ,74.962189368,kg -41053a86-f5cb-3711-8fa2-41fe9aa0fdf8,SESCO,II.1.1,Jujuy,AR-Y,annual,2023,bioetanol combustion consumption by to the public,147.14152524,TJ,CH4,10.0,kg/TJ,1471.4152523999999,kg -e21069bb-8fb8-37ab-ad1f-ff5b5c5ebdeb,SESCO,II.1.1,Jujuy,AR-Y,annual,2023,bioetanol combustion consumption by to the public,147.14152524,TJ,N2O,0.6,kg/TJ,88.284915144,kg -17bec33c-81bf-3994-bcfe-9e4dc4917923,SESCO,II.1.1,La Pampa,AR-L,annual,2023,bioetanol combustion consumption by to the public,156.15269424,TJ,CH4,10.0,kg/TJ,1561.5269423999998,kg -19905c70-0908-31cd-9b6f-713fa0b9ee00,SESCO,II.1.1,La Pampa,AR-L,annual,2023,bioetanol combustion consumption by to the public,156.15269424,TJ,N2O,0.6,kg/TJ,93.69161654399998,kg -10031e66-5404-3e30-8830-604c2bd7a65a,SESCO,II.1.1,La Rioja,AR-F,annual,2023,bioetanol combustion consumption by to the public,102.77078472,TJ,CH4,10.0,kg/TJ,1027.7078471999998,kg -428d9b5d-3ba1-305d-b890-750d5733a927,SESCO,II.1.1,La Rioja,AR-F,annual,2023,bioetanol combustion consumption by to the public,102.77078472,TJ,N2O,0.6,kg/TJ,61.662470832,kg -b76b1f36-dbbd-37e4-9c86-617b0c549ffe,SESCO,II.1.1,Mendoza,AR-M,annual,2023,bioetanol combustion consumption by to the public,453.17616264,TJ,CH4,10.0,kg/TJ,4531.7616264,kg -aafd35a7-35f2-3bdc-9ee6-98a3b4f04d22,SESCO,II.1.1,Mendoza,AR-M,annual,2023,bioetanol combustion consumption by to the public,453.17616264,TJ,N2O,0.6,kg/TJ,271.905697584,kg -aba3b1ed-5b9e-37b8-97e0-87acaa1482a9,SESCO,II.1.1,Misiones,AR-N,annual,2023,bioetanol combustion consumption by to the public,377.29828512,TJ,CH4,10.0,kg/TJ,3772.9828512,kg -eb15201c-50af-37a7-b774-a71a746cd811,SESCO,II.1.1,Misiones,AR-N,annual,2023,bioetanol combustion consumption by to the public,377.29828512,TJ,N2O,0.6,kg/TJ,226.37897107199998,kg -bbe2affa-73d7-33f5-a161-12649188f894,SESCO,II.1.1,Neuquén,AR-Q,annual,2023,bioetanol combustion consumption by to the public,308.89520424,TJ,CH4,10.0,kg/TJ,3088.9520424,kg -9c7480be-8d00-3ab4-ad77-c60469697920,SESCO,II.1.1,Neuquén,AR-Q,annual,2023,bioetanol combustion consumption by to the public,308.89520424,TJ,N2O,0.6,kg/TJ,185.33712254399998,kg -fd41f2e0-ce28-3e4c-8d5e-59224dfed244,SESCO,II.1.1,Rio Negro,AR-R,annual,2023,bioetanol combustion consumption by to the public,304.65931572,TJ,CH4,10.0,kg/TJ,3046.5931572,kg -69532cef-00de-3acc-890e-4c36884cf605,SESCO,II.1.1,Rio Negro,AR-R,annual,2023,bioetanol combustion consumption by to the public,304.65931572,TJ,N2O,0.6,kg/TJ,182.79558943199999,kg -e3362f74-0220-342a-8cf7-1c002eb1c3c9,SESCO,II.1.1,Salta,AR-A,annual,2023,bioetanol combustion consumption by to the public,322.52571575999997,TJ,CH4,10.0,kg/TJ,3225.2571575999996,kg -11b0012c-ec3b-3e19-93c4-e7a552d4249b,SESCO,II.1.1,Salta,AR-A,annual,2023,bioetanol combustion consumption by to the public,322.52571575999997,TJ,N2O,0.6,kg/TJ,193.51542945599996,kg -9a4125fc-5086-3d79-8db0-8cde2206ee3a,SESCO,II.1.1,San Juan,AR-J,annual,2023,bioetanol combustion consumption by to the public,152.45875403999997,TJ,CH4,10.0,kg/TJ,1524.5875403999999,kg -9a8b85c3-f4bc-3d12-8bab-9c1d720a1d38,SESCO,II.1.1,San Juan,AR-J,annual,2023,bioetanol combustion consumption by to the public,152.45875403999997,TJ,N2O,0.6,kg/TJ,91.47525242399998,kg -e9939f26-bb66-395f-97a0-d0a1e4041100,SESCO,II.1.1,San Luis,AR-D,annual,2023,bioetanol combustion consumption by to the public,139.03530768,TJ,CH4,10.0,kg/TJ,1390.3530767999998,kg -bda326a0-b33a-3eb1-8c79-8cceb2e729b5,SESCO,II.1.1,San Luis,AR-D,annual,2023,bioetanol combustion consumption by to the public,139.03530768,TJ,N2O,0.6,kg/TJ,83.42118460799999,kg -f68cf759-b044-349d-aa4d-2048963a2aed,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2023,bioetanol combustion consumption by to the public,190.10115504,TJ,CH4,10.0,kg/TJ,1901.0115504,kg -adba31a1-6e2a-3548-9b41-67621990f517,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2023,bioetanol combustion consumption by to the public,190.10115504,TJ,N2O,0.6,kg/TJ,114.060693024,kg -129bddb7-e481-3d1c-a062-a70e21dc4dcd,SESCO,II.1.1,Santa Fe,AR-S,annual,2023,bioetanol combustion consumption by to the public,677.5938943199999,TJ,CH4,10.0,kg/TJ,6775.938943199999,kg -485b23b1-5958-33a3-9535-0b06af5038e4,SESCO,II.1.1,Santa Fe,AR-S,annual,2023,bioetanol combustion consumption by to the public,677.5938943199999,TJ,N2O,0.6,kg/TJ,406.5563365919999,kg -0b2440c7-6f03-3b34-91c0-d70463ad2975,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2023,bioetanol combustion consumption by to the public,161.42135219999997,TJ,CH4,10.0,kg/TJ,1614.2135219999998,kg -e5adfc81-2a91-396d-9833-85e2a318459b,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2023,bioetanol combustion consumption by to the public,161.42135219999997,TJ,N2O,0.6,kg/TJ,96.85281131999999,kg -06046b35-2a01-3ecb-8874-ab4b7b27ce0b,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2023,bioetanol combustion consumption by to the public,117.47496743999999,TJ,CH4,10.0,kg/TJ,1174.7496743999998,kg -9ea4f41c-b3b0-31f3-a9b4-8e81392fdf25,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2023,bioetanol combustion consumption by to the public,117.47496743999999,TJ,N2O,0.6,kg/TJ,70.48498046399999,kg -41b3ebd3-b9e2-3b10-951d-f5e4449bf93f,SESCO,II.1.1,Tucuman,AR-T,annual,2023,bioetanol combustion consumption by to the public,322.94751515999997,TJ,CH4,10.0,kg/TJ,3229.4751515999997,kg -66a6fef6-9f3e-3805-9e93-b56e86716f5c,SESCO,II.1.1,Tucuman,AR-T,annual,2023,bioetanol combustion consumption by to the public,322.94751515999997,TJ,N2O,0.6,kg/TJ,193.76850909599997,kg -76d3fc28-9bfd-3eeb-a62c-b87740c360d1,SESCO,II.1.1,Buenos Aires,AR-B,annual,2023,bioetanol combustion consumption by to the public,1343.7020631599999,TJ,CH4,10.0,kg/TJ,13437.020631599999,kg -bfa5f561-783e-3de1-b734-1ca631549ebf,SESCO,II.1.1,Buenos Aires,AR-B,annual,2023,bioetanol combustion consumption by to the public,1343.7020631599999,TJ,N2O,0.6,kg/TJ,806.2212378959999,kg -c312db34-c542-3a28-a4ad-041fa132721d,SESCO,II.1.1,Capital Federal,AR-C,annual,2023,bioetanol combustion consumption by to the public,358.5524972399999,TJ,CH4,10.0,kg/TJ,3585.524972399999,kg -1839eaf9-3776-3ef8-9b4d-a6a57ba5c2d3,SESCO,II.1.1,Capital Federal,AR-C,annual,2023,bioetanol combustion consumption by to the public,358.5524972399999,TJ,N2O,0.6,kg/TJ,215.13149834399994,kg -a4984ee0-f951-3b71-99e5-884c9278b278,SESCO,II.1.1,Catamarca,AR-K,annual,2023,bioetanol combustion consumption by to the public,35.2266408,TJ,CH4,10.0,kg/TJ,352.26640799999996,kg -7794c727-abca-39d7-927c-207815e0b7be,SESCO,II.1.1,Catamarca,AR-K,annual,2023,bioetanol combustion consumption by to the public,35.2266408,TJ,N2O,0.6,kg/TJ,21.135984479999998,kg -5c2dfbaa-fcd0-3517-9eb7-365f6722cbad,SESCO,II.1.1,Chaco,AR-H,annual,2023,bioetanol combustion consumption by to the public,65.33289251999999,TJ,CH4,10.0,kg/TJ,653.3289251999998,kg -33c7381d-f459-3e03-b416-7bf0bc553d55,SESCO,II.1.1,Chaco,AR-H,annual,2023,bioetanol combustion consumption by to the public,65.33289251999999,TJ,N2O,0.6,kg/TJ,39.19973551199999,kg -19ad20ac-d11a-3143-8c13-ebdcc1ef018d,SESCO,II.1.1,Chubut,AR-U,annual,2023,bioetanol combustion consumption by to the public,90.10657728,TJ,CH4,10.0,kg/TJ,901.0657728,kg -6350eb26-efe2-3f98-a4e4-a18e8d36d819,SESCO,II.1.1,Chubut,AR-U,annual,2023,bioetanol combustion consumption by to the public,90.10657728,TJ,N2O,0.6,kg/TJ,54.063946367999996,kg -37ffd8a7-25a9-3f14-9e36-4eed0acb0a32,SESCO,II.1.1,Corrientes,AR-W,annual,2023,bioetanol combustion consumption by to the public,86.55579324,TJ,CH4,10.0,kg/TJ,865.5579324,kg -1fc368e1-add7-3f65-8534-0e0439b27476,SESCO,II.1.1,Corrientes,AR-W,annual,2023,bioetanol combustion consumption by to the public,86.55579324,TJ,N2O,0.6,kg/TJ,51.933475944,kg -eb9b9641-a0c6-37b1-aead-fb1a66a996c8,SESCO,II.1.1,Córdoba,AR-X,annual,2023,bioetanol combustion consumption by to the public,362.62989144,TJ,CH4,10.0,kg/TJ,3626.2989144,kg -e59f8ec3-09de-3dca-a2a3-c99b9daac490,SESCO,II.1.1,Córdoba,AR-X,annual,2023,bioetanol combustion consumption by to the public,362.62989144,TJ,N2O,0.6,kg/TJ,217.57793486399999,kg -32b4b871-f28c-34e4-bc96-a424ca620e12,SESCO,II.1.1,Entre Rios,AR-E,annual,2023,bioetanol combustion consumption by to the public,136.00857743999998,TJ,CH4,10.0,kg/TJ,1360.0857743999998,kg -03703040-13c1-3e21-8f64-27dab4684fcd,SESCO,II.1.1,Entre Rios,AR-E,annual,2023,bioetanol combustion consumption by to the public,136.00857743999998,TJ,N2O,0.6,kg/TJ,81.60514646399999,kg -2cd328ef-009d-3c5b-89ba-40e4fc6dc71a,SESCO,II.1.1,Formosa,AR-P,annual,2023,bioetanol combustion consumption by to the public,34.17342048,TJ,CH4,10.0,kg/TJ,341.7342048,kg -0b6cd6ee-672f-36f4-854a-6242a814f23d,SESCO,II.1.1,Formosa,AR-P,annual,2023,bioetanol combustion consumption by to the public,34.17342048,TJ,N2O,0.6,kg/TJ,20.504052287999997,kg -7f245ed3-898a-3310-b4bc-be15bb4fbb8e,SESCO,II.1.1,Jujuy,AR-Y,annual,2023,bioetanol combustion consumption by to the public,43.85946852,TJ,CH4,10.0,kg/TJ,438.5946852,kg -b8ea6ef5-6e75-3bfa-bb5e-af70646b3f86,SESCO,II.1.1,Jujuy,AR-Y,annual,2023,bioetanol combustion consumption by to the public,43.85946852,TJ,N2O,0.6,kg/TJ,26.315681112,kg -5033ea21-f365-3303-a02c-3af6a62e8e2b,SESCO,II.1.1,La Pampa,AR-L,annual,2023,bioetanol combustion consumption by to the public,85.94737956,TJ,CH4,10.0,kg/TJ,859.4737956,kg -3572cb02-6ab4-3396-a322-6ef77f8dd33e,SESCO,II.1.1,La Pampa,AR-L,annual,2023,bioetanol combustion consumption by to the public,85.94737956,TJ,N2O,0.6,kg/TJ,51.568427736,kg -b281fd3b-278f-382b-82f2-764158fe1ebc,SESCO,II.1.1,La Rioja,AR-F,annual,2023,bioetanol combustion consumption by to the public,41.880845879999995,TJ,CH4,10.0,kg/TJ,418.8084587999999,kg -3746d59c-9027-3dcb-86b6-06fa87628a0c,SESCO,II.1.1,La Rioja,AR-F,annual,2023,bioetanol combustion consumption by to the public,41.880845879999995,TJ,N2O,0.6,kg/TJ,25.128507527999997,kg -06eff2d2-e767-326a-82c3-04b8ea2317e7,SESCO,II.1.1,Mendoza,AR-M,annual,2023,bioetanol combustion consumption by to the public,223.45909668,TJ,CH4,10.0,kg/TJ,2234.5909668,kg -6cb4f256-c962-3e89-bcdd-8ec6585465b8,SESCO,II.1.1,Mendoza,AR-M,annual,2023,bioetanol combustion consumption by to the public,223.45909668,TJ,N2O,0.6,kg/TJ,134.075458008,kg -975e8d55-ba8c-3ebd-90f3-4f0edaabc838,SESCO,II.1.1,Misiones,AR-N,annual,2023,bioetanol combustion consumption by to the public,112.21653491999999,TJ,CH4,10.0,kg/TJ,1122.1653491999998,kg -8f1a6cf0-a99c-383b-b40e-636e9dee1a05,SESCO,II.1.1,Misiones,AR-N,annual,2023,bioetanol combustion consumption by to the public,112.21653491999999,TJ,N2O,0.6,kg/TJ,67.329920952,kg -e18715be-280e-328c-babc-e3e9200e1aae,SESCO,II.1.1,Neuquén,AR-Q,annual,2023,bioetanol combustion consumption by to the public,158.80363956,TJ,CH4,10.0,kg/TJ,1588.0363955999999,kg -5f043bba-9e55-313a-a2d9-4581913005ef,SESCO,II.1.1,Neuquén,AR-Q,annual,2023,bioetanol combustion consumption by to the public,158.80363956,TJ,N2O,0.6,kg/TJ,95.282183736,kg -dcc0e558-61f7-3ba5-afbf-475f93b88c83,SESCO,II.1.1,Rio Negro,AR-R,annual,2023,bioetanol combustion consumption by to the public,143.98186427999997,TJ,CH4,10.0,kg/TJ,1439.8186427999997,kg -33577c51-b3ea-3c86-a372-325a9dbcffe8,SESCO,II.1.1,Rio Negro,AR-R,annual,2023,bioetanol combustion consumption by to the public,143.98186427999997,TJ,N2O,0.6,kg/TJ,86.38911856799997,kg -7476f183-bf39-3a14-9cb4-5a750a62df15,SESCO,II.1.1,Salta,AR-A,annual,2023,bioetanol combustion consumption by to the public,102.30297083999999,TJ,CH4,10.0,kg/TJ,1023.0297083999999,kg -c87d852d-28e3-37c2-bd2c-9a084ce3bae0,SESCO,II.1.1,Salta,AR-A,annual,2023,bioetanol combustion consumption by to the public,102.30297083999999,TJ,N2O,0.6,kg/TJ,61.381782503999986,kg -1934eabf-7f48-3d6c-a61a-077e4297013e,SESCO,II.1.1,San Juan,AR-J,annual,2023,bioetanol combustion consumption by to the public,60.767233559999994,TJ,CH4,10.0,kg/TJ,607.6723356,kg -3579a7be-0883-3e00-af9b-511ae78a7dc0,SESCO,II.1.1,San Juan,AR-J,annual,2023,bioetanol combustion consumption by to the public,60.767233559999994,TJ,N2O,0.6,kg/TJ,36.46034013599999,kg -c2568f7a-3b8f-35fb-a227-a0f4bca1440d,SESCO,II.1.1,San Luis,AR-D,annual,2023,bioetanol combustion consumption by to the public,51.38539236,TJ,CH4,10.0,kg/TJ,513.8539235999999,kg -7964877c-8b52-3e78-a037-383bffcd355e,SESCO,II.1.1,San Luis,AR-D,annual,2023,bioetanol combustion consumption by to the public,51.38539236,TJ,N2O,0.6,kg/TJ,30.831235416,kg -fabb1b0e-dadd-3cb4-ba41-2f8e4d37b121,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2023,bioetanol combustion consumption by to the public,51.814860839999994,TJ,CH4,10.0,kg/TJ,518.1486084,kg -41ab8bdf-ff35-361a-b165-05d6630fd792,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2023,bioetanol combustion consumption by to the public,51.814860839999994,TJ,N2O,0.6,kg/TJ,31.088916503999997,kg -b95d62be-c83d-3f14-833a-a6434727801b,SESCO,II.1.1,Santa Fe,AR-S,annual,2023,bioetanol combustion consumption by to the public,297.65744567999997,TJ,CH4,10.0,kg/TJ,2976.5744567999996,kg -e58651b9-683c-3374-a79c-4210b56c31b6,SESCO,II.1.1,Santa Fe,AR-S,annual,2023,bioetanol combustion consumption by to the public,297.65744567999997,TJ,N2O,0.6,kg/TJ,178.59446740799999,kg -9f869421-bacb-3700-b505-44bccb922e67,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2023,bioetanol combustion consumption by to the public,54.5910678,TJ,CH4,10.0,kg/TJ,545.910678,kg -b05fa324-4c15-3c67-abf0-8a1873f9c44d,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2023,bioetanol combustion consumption by to the public,54.5910678,TJ,N2O,0.6,kg/TJ,32.754640679999994,kg -f421263f-9077-3542-abe5-c59594a0d5c6,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2023,bioetanol combustion consumption by to the public,33.426963359999995,TJ,CH4,10.0,kg/TJ,334.26963359999996,kg -0f381a8c-2948-3887-975f-719c3011a81e,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2023,bioetanol combustion consumption by to the public,33.426963359999995,TJ,N2O,0.6,kg/TJ,20.056178015999997,kg -ccf9b03f-34d3-3660-a17c-7e3407f4015f,SESCO,II.1.1,Tucuman,AR-T,annual,2023,bioetanol combustion consumption by to the public,83.53928843999999,TJ,CH4,10.0,kg/TJ,835.3928844,kg -fe5655a2-c84b-3392-a7d2-41b1ed74733c,SESCO,II.1.1,Tucuman,AR-T,annual,2023,bioetanol combustion consumption by to the public,83.53928843999999,TJ,N2O,0.6,kg/TJ,50.12357306399999,kg -4a9b9dda-3ee8-323b-b094-0d4b92178f9e,SESCO,II.1.1,Buenos Aires,AR-B,annual,2023,bioetanol combustion consumption by freight transport,60.30708876,TJ,CH4,10.0,kg/TJ,603.0708876,kg -086f1970-33d0-365f-97a8-9ccb4c814b1f,SESCO,II.1.1,Buenos Aires,AR-B,annual,2023,bioetanol combustion consumption by freight transport,60.30708876,TJ,N2O,0.6,kg/TJ,36.184253256,kg -8dfd059e-6e09-3e92-8a9f-7f2f77ecec49,SESCO,II.1.1,Capital Federal,AR-C,annual,2023,bioetanol combustion consumption by freight transport,9.210565079999999,TJ,CH4,10.0,kg/TJ,92.10565079999998,kg -5975a96d-860b-34f0-874d-0a1cfe528994,SESCO,II.1.1,Capital Federal,AR-C,annual,2023,bioetanol combustion consumption by freight transport,9.210565079999999,TJ,N2O,0.6,kg/TJ,5.526339047999999,kg -8cf918c9-e216-3072-b98d-6da991283393,SESCO,II.1.1,Catamarca,AR-K,annual,2023,bioetanol combustion consumption by freight transport,0.4090176,TJ,CH4,10.0,kg/TJ,4.090176,kg -f2684436-7217-3f67-9ec1-c6a0a1c466dc,SESCO,II.1.1,Catamarca,AR-K,annual,2023,bioetanol combustion consumption by freight transport,0.4090176,TJ,N2O,0.6,kg/TJ,0.24541055999999997,kg -34558553-286b-390c-a849-9964a8f61d20,SESCO,II.1.1,Chaco,AR-H,annual,2023,bioetanol combustion consumption by freight transport,1.6565212799999998,TJ,CH4,10.0,kg/TJ,16.565212799999998,kg -2e1a252a-ce3e-3100-98a4-cb9dcb7101d3,SESCO,II.1.1,Chaco,AR-H,annual,2023,bioetanol combustion consumption by freight transport,1.6565212799999998,TJ,N2O,0.6,kg/TJ,0.9939127679999998,kg -9380fee1-8e08-3627-a706-7bd9fa457d11,SESCO,II.1.1,Chubut,AR-U,annual,2023,bioetanol combustion consumption by freight transport,1.7715574799999998,TJ,CH4,10.0,kg/TJ,17.7155748,kg -592e5a51-2046-3d7f-82ce-b42500320091,SESCO,II.1.1,Chubut,AR-U,annual,2023,bioetanol combustion consumption by freight transport,1.7715574799999998,TJ,N2O,0.6,kg/TJ,1.0629344879999998,kg -299656f3-6205-3d93-b198-785b588eafc2,SESCO,II.1.1,Corrientes,AR-W,annual,2023,bioetanol combustion consumption by freight transport,1.5977249999999998,TJ,CH4,10.0,kg/TJ,15.977249999999998,kg -f5377f24-005f-30fe-a504-ce91e9aa5c78,SESCO,II.1.1,Corrientes,AR-W,annual,2023,bioetanol combustion consumption by freight transport,1.5977249999999998,TJ,N2O,0.6,kg/TJ,0.9586349999999999,kg -4ab609d8-a160-338f-8523-73de0135033d,SESCO,II.1.1,Córdoba,AR-X,annual,2023,bioetanol combustion consumption by freight transport,10.225439999999999,TJ,CH4,10.0,kg/TJ,102.25439999999999,kg -dea01e60-550c-3aa0-82f8-ac2d0d1e9e4a,SESCO,II.1.1,Córdoba,AR-X,annual,2023,bioetanol combustion consumption by freight transport,10.225439999999999,TJ,N2O,0.6,kg/TJ,6.135263999999999,kg -6a2ec9ec-ef7d-3580-a39d-d71b9dc1fd7a,SESCO,II.1.1,Entre Rios,AR-E,annual,2023,bioetanol combustion consumption by freight transport,3.33349344,TJ,CH4,10.0,kg/TJ,33.334934399999995,kg -58dc7513-4ba9-37cd-8b48-53a9795bfb26,SESCO,II.1.1,Entre Rios,AR-E,annual,2023,bioetanol combustion consumption by freight transport,3.33349344,TJ,N2O,0.6,kg/TJ,2.0000960639999996,kg -c6128bde-2675-38fc-be46-e8ee7a50e128,SESCO,II.1.1,Formosa,AR-P,annual,2023,bioetanol combustion consumption by freight transport,0.57006828,TJ,CH4,10.0,kg/TJ,5.7006828,kg -8b26daa6-b9b4-3b86-b918-909878f52218,SESCO,II.1.1,Formosa,AR-P,annual,2023,bioetanol combustion consumption by freight transport,0.57006828,TJ,N2O,0.6,kg/TJ,0.342040968,kg -b248eddb-1199-3618-a59f-75242468770a,SESCO,II.1.1,Jujuy,AR-Y,annual,2023,bioetanol combustion consumption by freight transport,0.75156984,TJ,CH4,10.0,kg/TJ,7.515698400000001,kg -773fa0f8-01dc-39ce-8b2c-82e42131c350,SESCO,II.1.1,Jujuy,AR-Y,annual,2023,bioetanol combustion consumption by freight transport,0.75156984,TJ,N2O,0.6,kg/TJ,0.450941904,kg -210d0f17-56ff-3202-8d6a-5367be7cc960,SESCO,II.1.1,La Pampa,AR-L,annual,2023,bioetanol combustion consumption by freight transport,1.0660021199999998,TJ,CH4,10.0,kg/TJ,10.6600212,kg -8082d2bd-cc92-39c1-9da5-7f9970f21295,SESCO,II.1.1,La Pampa,AR-L,annual,2023,bioetanol combustion consumption by freight transport,1.0660021199999998,TJ,N2O,0.6,kg/TJ,0.6396012719999998,kg -da070d9b-d98c-35a9-9f8a-6e63373118fe,SESCO,II.1.1,La Rioja,AR-F,annual,2023,bioetanol combustion consumption by freight transport,0.6518717999999999,TJ,CH4,10.0,kg/TJ,6.518717999999999,kg -bf6dee62-9a38-3bd4-9e2c-42decf8585a9,SESCO,II.1.1,La Rioja,AR-F,annual,2023,bioetanol combustion consumption by freight transport,0.6518717999999999,TJ,N2O,0.6,kg/TJ,0.3911230799999999,kg -1720fa31-9a74-32ad-bc6c-ed189ae21074,SESCO,II.1.1,Mendoza,AR-M,annual,2023,bioetanol combustion consumption by freight transport,4.43784096,TJ,CH4,10.0,kg/TJ,44.3784096,kg -e4a818f2-7fa4-3e41-aaba-2250a7aa82ce,SESCO,II.1.1,Mendoza,AR-M,annual,2023,bioetanol combustion consumption by freight transport,4.43784096,TJ,N2O,0.6,kg/TJ,2.662704576,kg -78c0d060-40ef-3c89-8687-2e985162e06e,SESCO,II.1.1,Misiones,AR-N,annual,2023,bioetanol combustion consumption by freight transport,1.3293072,TJ,CH4,10.0,kg/TJ,13.293071999999999,kg -da0a8f4e-efe8-3b5e-b859-0e521a602569,SESCO,II.1.1,Misiones,AR-N,annual,2023,bioetanol combustion consumption by freight transport,1.3293072,TJ,N2O,0.6,kg/TJ,0.7975843199999999,kg -69f6c851-644d-35ea-8661-1c63db0b7e1a,SESCO,II.1.1,Neuquén,AR-Q,annual,2023,bioetanol combustion consumption by freight transport,1.7996774399999997,TJ,CH4,10.0,kg/TJ,17.996774399999996,kg -26361d6d-aabf-3978-858b-b6694942807b,SESCO,II.1.1,Neuquén,AR-Q,annual,2023,bioetanol combustion consumption by freight transport,1.7996774399999997,TJ,N2O,0.6,kg/TJ,1.0798064639999998,kg -6deb290a-c644-30db-93c9-f8697b885b88,SESCO,II.1.1,Rio Negro,AR-R,annual,2023,bioetanol combustion consumption by freight transport,2.0169680399999996,TJ,CH4,10.0,kg/TJ,20.169680399999997,kg -12c49b0b-aef8-3ee5-b498-a4adcf685915,SESCO,II.1.1,Rio Negro,AR-R,annual,2023,bioetanol combustion consumption by freight transport,2.0169680399999996,TJ,N2O,0.6,kg/TJ,1.2101808239999998,kg -627a03a5-16bc-3353-b0a2-9c8177c6085b,SESCO,II.1.1,Salta,AR-A,annual,2023,bioetanol combustion consumption by freight transport,2.2495968,TJ,CH4,10.0,kg/TJ,22.495967999999998,kg -034f6eec-5519-3c3c-bb25-6c05d49c53d2,SESCO,II.1.1,Salta,AR-A,annual,2023,bioetanol combustion consumption by freight transport,2.2495968,TJ,N2O,0.6,kg/TJ,1.34975808,kg -2d9cb39a-7afd-3328-80f9-7c84a4a221a8,SESCO,II.1.1,San Juan,AR-J,annual,2023,bioetanol combustion consumption by freight transport,1.2014892,TJ,CH4,10.0,kg/TJ,12.014892,kg -8c1a2fd5-296d-336d-8cf5-5a74c203ef89,SESCO,II.1.1,San Juan,AR-J,annual,2023,bioetanol combustion consumption by freight transport,1.2014892,TJ,N2O,0.6,kg/TJ,0.72089352,kg -93f13214-be26-3993-9c4f-08611df34a98,SESCO,II.1.1,San Luis,AR-D,annual,2023,bioetanol combustion consumption by freight transport,0.9714168,TJ,CH4,10.0,kg/TJ,9.714167999999999,kg -c574b95c-6acb-35ad-8f0c-fef121e0085e,SESCO,II.1.1,San Luis,AR-D,annual,2023,bioetanol combustion consumption by freight transport,0.9714168,TJ,N2O,0.6,kg/TJ,0.5828500799999999,kg -8a6b0f4c-5306-3b69-a4f0-2756fbbd4fd0,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2023,bioetanol combustion consumption by freight transport,1.0020931199999998,TJ,CH4,10.0,kg/TJ,10.020931199999998,kg -92c48b79-a942-39f6-9a94-5ca5837d2d46,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2023,bioetanol combustion consumption by freight transport,1.0020931199999998,TJ,N2O,0.6,kg/TJ,0.6012558719999999,kg -658ea077-85cc-330e-966f-1861b478d3ab,SESCO,II.1.1,Santa Fe,AR-S,annual,2023,bioetanol combustion consumption by freight transport,9.3690594,TJ,CH4,10.0,kg/TJ,93.69059399999999,kg -15ce058b-2db9-31aa-add0-1d4e9932b1ca,SESCO,II.1.1,Santa Fe,AR-S,annual,2023,bioetanol combustion consumption by freight transport,9.3690594,TJ,N2O,0.6,kg/TJ,5.62143564,kg -6c4225d5-8731-3b55-8171-bc709b166a85,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2023,bioetanol combustion consumption by freight transport,0.78735888,TJ,CH4,10.0,kg/TJ,7.8735888,kg -5f9069a4-f4ff-3ae5-a311-05f1fbb3e28d,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2023,bioetanol combustion consumption by freight transport,0.78735888,TJ,N2O,0.6,kg/TJ,0.47241532799999997,kg -3977a68d-edf6-3d4e-9970-578313ddb145,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2023,bioetanol combustion consumption by freight transport,0.7975843199999999,TJ,CH4,10.0,kg/TJ,7.975843199999999,kg -4a981cd0-0f0a-319f-9a53-d971e9b48de2,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2023,bioetanol combustion consumption by freight transport,0.7975843199999999,TJ,N2O,0.6,kg/TJ,0.47855059199999994,kg -42078f7b-3290-3325-a3bd-aa4378a4d3a1,SESCO,II.1.1,Tucuman,AR-T,annual,2023,bioetanol combustion consumption by freight transport,2.82222144,TJ,CH4,10.0,kg/TJ,28.2222144,kg -d75a2987-f8bd-39af-8a78-1157275aaf28,SESCO,II.1.1,Tucuman,AR-T,annual,2023,bioetanol combustion consumption by freight transport,2.82222144,TJ,N2O,0.6,kg/TJ,1.6933328639999998,kg -54e3f308-7c69-3e14-b9a1-9c4f419eced0,SESCO,II.1.1,Buenos Aires,AR-B,annual,2023,bioetanol combustion consumption by freight transport,59.990100119999994,TJ,CH4,10.0,kg/TJ,599.9010011999999,kg -d68e3704-f117-31ea-9f3d-7240f171c8c8,SESCO,II.1.1,Buenos Aires,AR-B,annual,2023,bioetanol combustion consumption by freight transport,59.990100119999994,TJ,N2O,0.6,kg/TJ,35.994060071999996,kg -6256613a-8015-3382-9bb5-f3374675684e,SESCO,II.1.1,Capital Federal,AR-C,annual,2023,bioetanol combustion consumption by freight transport,9.617026319999999,TJ,CH4,10.0,kg/TJ,96.1702632,kg -15ae8f53-ac28-3897-9e4d-a4cd072c0f0b,SESCO,II.1.1,Capital Federal,AR-C,annual,2023,bioetanol combustion consumption by freight transport,9.617026319999999,TJ,N2O,0.6,kg/TJ,5.770215791999999,kg -3d1ed2e5-eb68-3048-b495-162b920379a3,SESCO,II.1.1,Catamarca,AR-K,annual,2023,bioetanol combustion consumption by freight transport,0.18661428,TJ,CH4,10.0,kg/TJ,1.8661428,kg -a011d82d-9639-3692-909c-436b61b09c51,SESCO,II.1.1,Catamarca,AR-K,annual,2023,bioetanol combustion consumption by freight transport,0.18661428,TJ,N2O,0.6,kg/TJ,0.11196856799999999,kg -c7deffbf-4abf-3af0-b06f-c65297faad35,SESCO,II.1.1,Chaco,AR-H,annual,2023,bioetanol combustion consumption by freight transport,1.3369762799999998,TJ,CH4,10.0,kg/TJ,13.369762799999998,kg -349a51d0-46e4-3cec-b7bf-d3ad62f7bd6e,SESCO,II.1.1,Chaco,AR-H,annual,2023,bioetanol combustion consumption by freight transport,1.3369762799999998,TJ,N2O,0.6,kg/TJ,0.8021857679999999,kg -7fec9e26-08e1-3a18-bb2d-32a08af899cf,SESCO,II.1.1,Chubut,AR-U,annual,2023,bioetanol combustion consumption by freight transport,1.30118724,TJ,CH4,10.0,kg/TJ,13.0118724,kg -9b1c640b-dc5e-3e10-8a9b-d2bc6c355b36,SESCO,II.1.1,Chubut,AR-U,annual,2023,bioetanol combustion consumption by freight transport,1.30118724,TJ,N2O,0.6,kg/TJ,0.780712344,kg -3ea844d8-3f7c-32a1-9686-9ae5a184b20e,SESCO,II.1.1,Corrientes,AR-W,annual,2023,bioetanol combustion consumption by freight transport,1.7229866399999998,TJ,CH4,10.0,kg/TJ,17.2298664,kg -b27b64f3-9969-38fb-abcf-4aacccf149c7,SESCO,II.1.1,Corrientes,AR-W,annual,2023,bioetanol combustion consumption by freight transport,1.7229866399999998,TJ,N2O,0.6,kg/TJ,1.0337919839999998,kg -a3d46246-2ced-3b4c-be91-65c46c4ed2e5,SESCO,II.1.1,Córdoba,AR-X,annual,2023,bioetanol combustion consumption by freight transport,8.8577874,TJ,CH4,10.0,kg/TJ,88.577874,kg -7581d4fd-9470-311e-a030-074319b0a19d,SESCO,II.1.1,Córdoba,AR-X,annual,2023,bioetanol combustion consumption by freight transport,8.8577874,TJ,N2O,0.6,kg/TJ,5.31467244,kg -62add3c0-3d74-3eb1-982e-b97d1f7dae59,SESCO,II.1.1,Entre Rios,AR-E,annual,2023,bioetanol combustion consumption by freight transport,3.2568026399999996,TJ,CH4,10.0,kg/TJ,32.568026399999994,kg -70d9d63a-af35-3b7d-946b-9fd8f9bf458a,SESCO,II.1.1,Entre Rios,AR-E,annual,2023,bioetanol combustion consumption by freight transport,3.2568026399999996,TJ,N2O,0.6,kg/TJ,1.9540815839999996,kg -1603156c-de6a-324f-89a1-aecd3cbf16e7,SESCO,II.1.1,Formosa,AR-P,annual,2023,bioetanol combustion consumption by freight transport,0.28375596,TJ,CH4,10.0,kg/TJ,2.8375595999999996,kg -deaca44b-1751-31ad-be1c-39b45642640e,SESCO,II.1.1,Formosa,AR-P,annual,2023,bioetanol combustion consumption by freight transport,0.28375596,TJ,N2O,0.6,kg/TJ,0.170253576,kg -9036ef2a-c7c8-35b3-ab2d-c1011650f5a2,SESCO,II.1.1,Jujuy,AR-Y,annual,2023,bioetanol combustion consumption by freight transport,0.34255223999999995,TJ,CH4,10.0,kg/TJ,3.4255223999999993,kg -80e068e2-1569-3803-95c0-90d26241cbc3,SESCO,II.1.1,Jujuy,AR-Y,annual,2023,bioetanol combustion consumption by freight transport,0.34255223999999995,TJ,N2O,0.6,kg/TJ,0.20553134399999998,kg -3cb6868a-7035-3597-88a1-142078cf32ea,SESCO,II.1.1,La Pampa,AR-L,annual,2023,bioetanol combustion consumption by freight transport,1.17336924,TJ,CH4,10.0,kg/TJ,11.733692399999999,kg -67d98567-0de4-3074-ac36-9b350c77a7b3,SESCO,II.1.1,La Pampa,AR-L,annual,2023,bioetanol combustion consumption by freight transport,1.17336924,TJ,N2O,0.6,kg/TJ,0.7040215439999999,kg -d16411d3-0400-3a5b-b426-2e62c4964e73,SESCO,II.1.1,La Rioja,AR-F,annual,2023,bioetanol combustion consumption by freight transport,0.49849019999999994,TJ,CH4,10.0,kg/TJ,4.984901999999999,kg -e4712f81-998f-3d73-a539-f59ac04ac798,SESCO,II.1.1,La Rioja,AR-F,annual,2023,bioetanol combustion consumption by freight transport,0.49849019999999994,TJ,N2O,0.6,kg/TJ,0.29909411999999996,kg -50102a36-c5ae-3514-85ce-56c8b5874eed,SESCO,II.1.1,Mendoza,AR-M,annual,2023,bioetanol combustion consumption by freight transport,5.19196716,TJ,CH4,10.0,kg/TJ,51.9196716,kg -e90a6c9b-20f8-3c4c-969e-7fb3d2eff2e6,SESCO,II.1.1,Mendoza,AR-M,annual,2023,bioetanol combustion consumption by freight transport,5.19196716,TJ,N2O,0.6,kg/TJ,3.1151802959999997,kg -a33dc027-ef9e-3206-94ba-d949fe9311b0,SESCO,II.1.1,Misiones,AR-N,annual,2023,bioetanol combustion consumption by freight transport,1.39832892,TJ,CH4,10.0,kg/TJ,13.9832892,kg -f106ffd3-fae5-3ef5-9100-fe11ced349e0,SESCO,II.1.1,Misiones,AR-N,annual,2023,bioetanol combustion consumption by freight transport,1.39832892,TJ,N2O,0.6,kg/TJ,0.8389973519999999,kg -f56a49b2-1e3c-35a4-8fbd-7e060b42b922,SESCO,II.1.1,Neuquén,AR-Q,annual,2023,bioetanol combustion consumption by freight transport,3.4996568399999997,TJ,CH4,10.0,kg/TJ,34.996568399999994,kg -d28a18d7-6b76-300c-812b-9b277eeb127c,SESCO,II.1.1,Neuquén,AR-Q,annual,2023,bioetanol combustion consumption by freight transport,3.4996568399999997,TJ,N2O,0.6,kg/TJ,2.099794104,kg -af3384d1-804c-3708-b42e-36cc3ea6b859,SESCO,II.1.1,Rio Negro,AR-R,annual,2023,bioetanol combustion consumption by freight transport,2.59214904,TJ,CH4,10.0,kg/TJ,25.921490399999996,kg -7f711c4c-0342-3286-8fbe-4ccc6c899c8d,SESCO,II.1.1,Rio Negro,AR-R,annual,2023,bioetanol combustion consumption by freight transport,2.59214904,TJ,N2O,0.6,kg/TJ,1.555289424,kg -c4895b9b-4e9e-39a8-8270-07255aaa7eda,SESCO,II.1.1,Salta,AR-A,annual,2023,bioetanol combustion consumption by freight transport,1.9044881999999996,TJ,CH4,10.0,kg/TJ,19.044881999999998,kg -aebd2cf1-c659-3d90-9ac9-41e0d73b6d76,SESCO,II.1.1,Salta,AR-A,annual,2023,bioetanol combustion consumption by freight transport,1.9044881999999996,TJ,N2O,0.6,kg/TJ,1.1426929199999998,kg -5be930f5-1d7b-3553-ad7b-a66a47e83699,SESCO,II.1.1,San Juan,AR-J,annual,2023,bioetanol combustion consumption by freight transport,0.7260062399999999,TJ,CH4,10.0,kg/TJ,7.260062399999999,kg -eedcb45a-de22-3525-b039-037a573fea98,SESCO,II.1.1,San Juan,AR-J,annual,2023,bioetanol combustion consumption by freight transport,0.7260062399999999,TJ,N2O,0.6,kg/TJ,0.43560374399999996,kg -9fd937de-96e2-3683-845f-2ebea7b9991d,SESCO,II.1.1,San Luis,AR-D,annual,2023,bioetanol combustion consumption by freight transport,0.7643516399999999,TJ,CH4,10.0,kg/TJ,7.643516399999999,kg -385f97b2-adf6-312e-821a-0ae870b7d506,SESCO,II.1.1,San Luis,AR-D,annual,2023,bioetanol combustion consumption by freight transport,0.7643516399999999,TJ,N2O,0.6,kg/TJ,0.4586109839999999,kg -dfccddbb-64c4-38fc-8740-c6f5883f64f0,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2023,bioetanol combustion consumption by freight transport,0.47548296,TJ,CH4,10.0,kg/TJ,4.7548296,kg -973aa319-1d82-31c7-8b88-3feea716cc9e,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2023,bioetanol combustion consumption by freight transport,0.47548296,TJ,N2O,0.6,kg/TJ,0.285289776,kg -b69247bb-9f0f-3dc9-929f-668cf4236e07,SESCO,II.1.1,Santa Fe,AR-S,annual,2023,bioetanol combustion consumption by freight transport,9.256579559999999,TJ,CH4,10.0,kg/TJ,92.56579559999999,kg -fa5151a5-a209-3213-822e-4ca73ac7fd97,SESCO,II.1.1,Santa Fe,AR-S,annual,2023,bioetanol combustion consumption by freight transport,9.256579559999999,TJ,N2O,0.6,kg/TJ,5.553947735999999,kg -c167b794-291b-3ac1-aa9f-a1dc81cc01f7,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2023,bioetanol combustion consumption by freight transport,0.5087156399999999,TJ,CH4,10.0,kg/TJ,5.0871564,kg -20c14a4c-b38b-3d96-9c40-441f07fb15b4,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2023,bioetanol combustion consumption by freight transport,0.5087156399999999,TJ,N2O,0.6,kg/TJ,0.30522938399999994,kg -3bcb5b1d-cc43-3971-88be-2f23e557c7cc,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2023,bioetanol combustion consumption by freight transport,0.32977043999999994,TJ,CH4,10.0,kg/TJ,3.2977043999999993,kg -a6807b4b-875f-3d26-ba36-3f48af22c27f,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2023,bioetanol combustion consumption by freight transport,0.32977043999999994,TJ,N2O,0.6,kg/TJ,0.19786226399999995,kg -3907dfcd-c7fc-30af-bddc-1c14a7fe6f19,SESCO,II.1.1,Tucuman,AR-T,annual,2023,bioetanol combustion consumption by freight transport,1.56704868,TJ,CH4,10.0,kg/TJ,15.6704868,kg -24679619-63e5-3cf5-8a5d-5721425c176b,SESCO,II.1.1,Tucuman,AR-T,annual,2023,bioetanol combustion consumption by freight transport,1.56704868,TJ,N2O,0.6,kg/TJ,0.940229208,kg -ecb999bd-4dcf-3452-87ff-9658e0f7fade,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,naphtha combustion consumption by to the public,65.74905259999998,TJ,CO2,73300.0,kg/TJ,4819405.5555799985,kg -386c416b-332d-3148-aeb8-224835eac5ff,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,naphtha combustion consumption by to the public,65.74905259999998,TJ,CH4,3.0,kg/TJ,197.24715779999997,kg -71764d1a-d3b3-3563-bcb6-785ed0eb3a46,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,naphtha combustion consumption by to the public,65.74905259999998,TJ,N2O,0.6,kg/TJ,39.44943155999999,kg -0dc3f3f6-42ea-308c-a891-1bd241d11dcd,SESCO,II.1.1,Capital Federal,AR-C,annual,2010,naphtha combustion consumption by to the public,7.589012199999999,TJ,CO2,73300.0,kg/TJ,556274.5942599999,kg -473257e4-a44a-3636-8f13-6f0a1d052445,SESCO,II.1.1,Capital Federal,AR-C,annual,2010,naphtha combustion consumption by to the public,7.589012199999999,TJ,CH4,3.0,kg/TJ,22.767036599999997,kg -89f207ae-6880-3dbc-9f59-2db88768b7a9,SESCO,II.1.1,Capital Federal,AR-C,annual,2010,naphtha combustion consumption by to the public,7.589012199999999,TJ,N2O,0.6,kg/TJ,4.553407319999999,kg -5e68800d-a7c2-3214-8090-95b183e20c48,SESCO,II.1.1,Corrientes,AR-W,annual,2010,naphtha combustion consumption by to the public,10.208228799999999,TJ,CO2,73300.0,kg/TJ,748263.1710399999,kg -9fbae8e4-3d70-30ab-8cc2-6d3936921392,SESCO,II.1.1,Corrientes,AR-W,annual,2010,naphtha combustion consumption by to the public,10.208228799999999,TJ,CH4,3.0,kg/TJ,30.624686399999995,kg -dacc68e4-6f2a-3f6a-bf3b-27b7788a2d28,SESCO,II.1.1,Corrientes,AR-W,annual,2010,naphtha combustion consumption by to the public,10.208228799999999,TJ,N2O,0.6,kg/TJ,6.124937279999999,kg -c7f22e6f-f2f8-3f47-97d6-9f366e5bfc2a,SESCO,II.1.1,Córdoba,AR-X,annual,2010,naphtha combustion consumption by to the public,9.9060115,TJ,CO2,73300.0,kg/TJ,726110.64295,kg -e6d0abac-3a3c-3979-9380-de46496a5c36,SESCO,II.1.1,Córdoba,AR-X,annual,2010,naphtha combustion consumption by to the public,9.9060115,TJ,CH4,3.0,kg/TJ,29.7180345,kg -1a8a8595-abf9-314a-b9a6-6b1f2c045d8e,SESCO,II.1.1,Córdoba,AR-X,annual,2010,naphtha combustion consumption by to the public,9.9060115,TJ,N2O,0.6,kg/TJ,5.9436069,kg -17a68351-0a3b-369e-8b07-0d5e9320772f,SESCO,II.1.1,Entre Rios,AR-E,annual,2010,naphtha combustion consumption by to the public,2.3841586999999995,TJ,CO2,73300.0,kg/TJ,174758.83270999996,kg -1284ae13-c2d0-33e3-9d87-8cd68c64a65a,SESCO,II.1.1,Entre Rios,AR-E,annual,2010,naphtha combustion consumption by to the public,2.3841586999999995,TJ,CH4,3.0,kg/TJ,7.152476099999999,kg -59274e12-5537-30ac-a366-ca9b8795e4d7,SESCO,II.1.1,Entre Rios,AR-E,annual,2010,naphtha combustion consumption by to the public,2.3841586999999995,TJ,N2O,0.6,kg/TJ,1.4304952199999996,kg -543e5b19-2b0c-3fca-84c6-f9f9918ae080,SESCO,II.1.1,Jujuy,AR-Y,annual,2010,naphtha combustion consumption by to the public,2.686376,TJ,CO2,73300.0,kg/TJ,196911.3608,kg -5163c59c-54f1-309d-a598-103c4d32117e,SESCO,II.1.1,Jujuy,AR-Y,annual,2010,naphtha combustion consumption by to the public,2.686376,TJ,CH4,3.0,kg/TJ,8.059128000000001,kg -aba0e99b-bd74-3224-ab32-bc2cfb110f9e,SESCO,II.1.1,Jujuy,AR-Y,annual,2010,naphtha combustion consumption by to the public,2.686376,TJ,N2O,0.6,kg/TJ,1.6118256,kg -e7e8be78-fd11-3c03-844c-612a3f1b66c4,SESCO,II.1.1,La Pampa,AR-L,annual,2010,naphtha combustion consumption by to the public,1.1081301000000001,TJ,CO2,73300.0,kg/TJ,81225.93633000001,kg -8f87cf18-37ad-331e-9088-5dfe9bb8af93,SESCO,II.1.1,La Pampa,AR-L,annual,2010,naphtha combustion consumption by to the public,1.1081301000000001,TJ,CH4,3.0,kg/TJ,3.3243903,kg -e5ef3b22-5a29-3e89-8ca4-9dcb6f6223fe,SESCO,II.1.1,La Pampa,AR-L,annual,2010,naphtha combustion consumption by to the public,1.1081301000000001,TJ,N2O,0.6,kg/TJ,0.66487806,kg -5c4e2047-5fb8-347b-aeac-8321f8745751,SESCO,II.1.1,Mendoza,AR-M,annual,2010,naphtha combustion consumption by to the public,0.8730722,TJ,CO2,73300.0,kg/TJ,63996.192259999996,kg -f063c5e8-e3f2-3824-9c80-4e29ba8e55eb,SESCO,II.1.1,Mendoza,AR-M,annual,2010,naphtha combustion consumption by to the public,0.8730722,TJ,CH4,3.0,kg/TJ,2.6192165999999997,kg -0f0cece1-d2f0-344a-9f0f-c342b5d901f8,SESCO,II.1.1,Mendoza,AR-M,annual,2010,naphtha combustion consumption by to the public,0.8730722,TJ,N2O,0.6,kg/TJ,0.52384332,kg -54418432-ac46-347a-8136-f8d301757f5d,SESCO,II.1.1,Santa Fe,AR-S,annual,2010,naphtha combustion consumption by to the public,4.365361,TJ,CO2,73300.0,kg/TJ,319980.9613,kg -c33184aa-cb42-3fab-a0d1-1486dcfe9bb1,SESCO,II.1.1,Santa Fe,AR-S,annual,2010,naphtha combustion consumption by to the public,4.365361,TJ,CH4,3.0,kg/TJ,13.096083,kg -79dde3a8-e3ab-3a46-86ff-9a2df1957860,SESCO,II.1.1,Santa Fe,AR-S,annual,2010,naphtha combustion consumption by to the public,4.365361,TJ,N2O,0.6,kg/TJ,2.6192166,kg -9b1414f2-399f-3286-82e6-d09a2288aa08,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2010,naphtha combustion consumption by to the public,5.507070799999999,TJ,CO2,73300.0,kg/TJ,403668.28964,kg -7aad9632-0b3c-3a01-af83-e9668aa71f81,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2010,naphtha combustion consumption by to the public,5.507070799999999,TJ,CH4,3.0,kg/TJ,16.521212399999996,kg -ce1feca5-4c8d-3de9-9c3f-5213f6491f63,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2010,naphtha combustion consumption by to the public,5.507070799999999,TJ,N2O,0.6,kg/TJ,3.3042424799999996,kg -f2f233e4-8fa8-3e45-acea-40ac531dba06,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,naphtha combustion consumption by to the public,494.19244489999994,TJ,CO2,73300.0,kg/TJ,36224306.211169995,kg -5777964c-e392-3b49-9691-df21edd00ce6,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,naphtha combustion consumption by to the public,494.19244489999994,TJ,CH4,3.0,kg/TJ,1482.5773347,kg -410e0c17-89f8-3330-819b-46b314f3317b,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,naphtha combustion consumption by to the public,494.19244489999994,TJ,N2O,0.6,kg/TJ,296.51546693999995,kg -cda587bc-cdbb-31da-9b86-917924ded1c9,SESCO,II.1.1,Capital Federal,AR-C,annual,2010,naphtha combustion consumption by to the public,159.53715469999997,TJ,CO2,73300.0,kg/TJ,11694073.439509997,kg -b855a1c8-4eb7-3c64-acc1-8760df145901,SESCO,II.1.1,Capital Federal,AR-C,annual,2010,naphtha combustion consumption by to the public,159.53715469999997,TJ,CH4,3.0,kg/TJ,478.6114640999999,kg -76da2156-4b5e-30f6-8a5a-165c3226da90,SESCO,II.1.1,Capital Federal,AR-C,annual,2010,naphtha combustion consumption by to the public,159.53715469999997,TJ,N2O,0.6,kg/TJ,95.72229281999998,kg -1244ba03-789e-3049-a00c-4fef994ff0e6,SESCO,II.1.1,Chaco,AR-H,annual,2010,naphtha combustion consumption by to the public,5.540650499999999,TJ,CO2,73300.0,kg/TJ,406129.6816499999,kg -d358faa6-5295-307a-989e-75fe31817f29,SESCO,II.1.1,Chaco,AR-H,annual,2010,naphtha combustion consumption by to the public,5.540650499999999,TJ,CH4,3.0,kg/TJ,16.621951499999998,kg -e09f67aa-f631-381b-8816-d4fe2f89be1e,SESCO,II.1.1,Chaco,AR-H,annual,2010,naphtha combustion consumption by to the public,5.540650499999999,TJ,N2O,0.6,kg/TJ,3.3243902999999992,kg -39b757fa-6bda-373f-a192-240572f7c621,SESCO,II.1.1,Corrientes,AR-W,annual,2010,naphtha combustion consumption by to the public,39.1539302,TJ,CO2,73300.0,kg/TJ,2869983.08366,kg -597deb7f-933a-339b-a9e7-1a504906cb8b,SESCO,II.1.1,Corrientes,AR-W,annual,2010,naphtha combustion consumption by to the public,39.1539302,TJ,CH4,3.0,kg/TJ,117.4617906,kg -e1d1427d-b6f8-3c2e-bfef-eda9d2f32614,SESCO,II.1.1,Corrientes,AR-W,annual,2010,naphtha combustion consumption by to the public,39.1539302,TJ,N2O,0.6,kg/TJ,23.49235812,kg -b943e78b-fa22-3b2f-952f-a46daca1d320,SESCO,II.1.1,Córdoba,AR-X,annual,2010,naphtha combustion consumption by to the public,147.5827815,TJ,CO2,73300.0,kg/TJ,10817817.88395,kg -5132a7f3-9341-320e-a8ee-5f43a54fe65e,SESCO,II.1.1,Córdoba,AR-X,annual,2010,naphtha combustion consumption by to the public,147.5827815,TJ,CH4,3.0,kg/TJ,442.74834450000003,kg -d59e5252-2a7c-3df9-889f-cd97970825e2,SESCO,II.1.1,Córdoba,AR-X,annual,2010,naphtha combustion consumption by to the public,147.5827815,TJ,N2O,0.6,kg/TJ,88.5496689,kg -1b87dd3a-1c38-336a-b6f9-fb8a84cf0758,SESCO,II.1.1,Entre Rios,AR-E,annual,2010,naphtha combustion consumption by to the public,18.468835,TJ,CO2,73300.0,kg/TJ,1353765.6054999998,kg -c3bdd3f3-88ea-3c50-9a8a-32619a68354d,SESCO,II.1.1,Entre Rios,AR-E,annual,2010,naphtha combustion consumption by to the public,18.468835,TJ,CH4,3.0,kg/TJ,55.406504999999996,kg -2457dc7a-161a-3a0d-8485-9d6de432024b,SESCO,II.1.1,Entre Rios,AR-E,annual,2010,naphtha combustion consumption by to the public,18.468835,TJ,N2O,0.6,kg/TJ,11.081300999999998,kg -81c0be91-5faa-3f89-af64-05457b44f2f9,SESCO,II.1.1,Formosa,AR-P,annual,2010,naphtha combustion consumption by to the public,1.2088691999999999,TJ,CO2,73300.0,kg/TJ,88610.11235999998,kg -07bb157b-4084-31e3-9b8c-1ac17d731be2,SESCO,II.1.1,Formosa,AR-P,annual,2010,naphtha combustion consumption by to the public,1.2088691999999999,TJ,CH4,3.0,kg/TJ,3.6266076,kg -9d346b4d-8f18-37c6-891b-69d46d8aca57,SESCO,II.1.1,Formosa,AR-P,annual,2010,naphtha combustion consumption by to the public,1.2088691999999999,TJ,N2O,0.6,kg/TJ,0.7253215199999999,kg -9dccc0a4-1aab-319b-ae41-f223618f3a92,SESCO,II.1.1,Jujuy,AR-Y,annual,2010,naphtha combustion consumption by to the public,12.6259672,TJ,CO2,73300.0,kg/TJ,925483.39576,kg -52826862-9695-374e-a06f-6f3cab25ad53,SESCO,II.1.1,Jujuy,AR-Y,annual,2010,naphtha combustion consumption by to the public,12.6259672,TJ,CH4,3.0,kg/TJ,37.8779016,kg -ec579a94-8087-354c-ba99-4bd6b53dc116,SESCO,II.1.1,Jujuy,AR-Y,annual,2010,naphtha combustion consumption by to the public,12.6259672,TJ,N2O,0.6,kg/TJ,7.575580319999999,kg -24629d0c-e0f4-3d1b-a11f-937c84a69411,SESCO,II.1.1,La Pampa,AR-L,annual,2010,naphtha combustion consumption by to the public,22.2969208,TJ,CO2,73300.0,kg/TJ,1634364.29464,kg -033b3a7c-c94e-35d5-8329-4f0333278adf,SESCO,II.1.1,La Pampa,AR-L,annual,2010,naphtha combustion consumption by to the public,22.2969208,TJ,CH4,3.0,kg/TJ,66.8907624,kg -92c4c5c0-4ad5-3bb7-b043-35b0d0459555,SESCO,II.1.1,La Pampa,AR-L,annual,2010,naphtha combustion consumption by to the public,22.2969208,TJ,N2O,0.6,kg/TJ,13.378152479999999,kg -d4f63b44-c816-30cf-b791-c348ae64986f,SESCO,II.1.1,Mendoza,AR-M,annual,2010,naphtha combustion consumption by to the public,21.4238486,TJ,CO2,73300.0,kg/TJ,1570368.10238,kg -c35d04cf-5f9c-3b31-b11a-3c4f65d2dea0,SESCO,II.1.1,Mendoza,AR-M,annual,2010,naphtha combustion consumption by to the public,21.4238486,TJ,CH4,3.0,kg/TJ,64.2715458,kg -25c191ba-93ea-3bcf-8e15-b31ccd816219,SESCO,II.1.1,Mendoza,AR-M,annual,2010,naphtha combustion consumption by to the public,21.4238486,TJ,N2O,0.6,kg/TJ,12.85430916,kg -36205493-c16d-357b-bc5d-4fb264a79154,SESCO,II.1.1,Misiones,AR-N,annual,2010,naphtha combustion consumption by to the public,4.7347377,TJ,CO2,73300.0,kg/TJ,347056.27341,kg -55ea8313-9107-339e-ae7c-1cc2f14f8507,SESCO,II.1.1,Misiones,AR-N,annual,2010,naphtha combustion consumption by to the public,4.7347377,TJ,CH4,3.0,kg/TJ,14.2042131,kg -8e65f0bb-da81-30c7-a162-b5cf99c19972,SESCO,II.1.1,Misiones,AR-N,annual,2010,naphtha combustion consumption by to the public,4.7347377,TJ,N2O,0.6,kg/TJ,2.84084262,kg -a4e310c8-064d-3f14-b60a-971c51032d53,SESCO,II.1.1,San Juan,AR-J,annual,2010,naphtha combustion consumption by to the public,0.1678985,TJ,CO2,73300.0,kg/TJ,12306.96005,kg -6e1026bb-e7aa-3e86-bfdc-2b8bf064ab0b,SESCO,II.1.1,San Juan,AR-J,annual,2010,naphtha combustion consumption by to the public,0.1678985,TJ,CH4,3.0,kg/TJ,0.5036955000000001,kg -ff03980d-5993-3912-8ebf-dc426c7f7e95,SESCO,II.1.1,San Juan,AR-J,annual,2010,naphtha combustion consumption by to the public,0.1678985,TJ,N2O,0.6,kg/TJ,0.1007391,kg -c993408e-9fb1-3398-82a1-470ac8a4d61a,SESCO,II.1.1,Santa Fe,AR-S,annual,2010,naphtha combustion consumption by to the public,101.0077376,TJ,CO2,73300.0,kg/TJ,7403867.16608,kg -6af7d055-3057-320e-b47a-0e8efeed5e35,SESCO,II.1.1,Santa Fe,AR-S,annual,2010,naphtha combustion consumption by to the public,101.0077376,TJ,CH4,3.0,kg/TJ,303.0232128,kg -d5633474-ef7e-3728-a457-300c49bb8609,SESCO,II.1.1,Santa Fe,AR-S,annual,2010,naphtha combustion consumption by to the public,101.0077376,TJ,N2O,0.6,kg/TJ,60.604642559999995,kg -4404446a-83bd-323c-b9a0-76ae5ede83c8,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2010,naphtha combustion consumption by to the public,40.12774149999999,TJ,CO2,73300.0,kg/TJ,2941363.451949999,kg -3e2bcb43-b5db-3b85-aafe-eaf21e7fa295,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2010,naphtha combustion consumption by to the public,40.12774149999999,TJ,CH4,3.0,kg/TJ,120.38322449999998,kg -0ae3660a-3c22-3b77-b417-ba3cf2353ca7,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2010,naphtha combustion consumption by to the public,40.12774149999999,TJ,N2O,0.6,kg/TJ,24.076644899999994,kg -ef24bdb9-01b9-300f-a577-6b736bb4a9a0,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,naphtha combustion consumption by to the public,51.47768009999999,TJ,CO2,73300.0,kg/TJ,3773313.9513299996,kg -ec67e7f5-e7e9-380b-856b-6b3f1d787e0d,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,naphtha combustion consumption by to the public,51.47768009999999,TJ,CH4,3.0,kg/TJ,154.4330403,kg -e2c42ee9-d4af-3c64-b1a5-be8f175f361e,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,naphtha combustion consumption by to the public,51.47768009999999,TJ,N2O,0.6,kg/TJ,30.886608059999993,kg -b7d37f44-0182-3e0b-bc2c-68b158dc6d8b,SESCO,II.1.1,Capital Federal,AR-C,annual,2010,naphtha combustion consumption by to the public,16.554792099999997,TJ,CO2,73300.0,kg/TJ,1213466.2609299996,kg -44294274-3a3e-38fb-bc8f-4f35b92d55dc,SESCO,II.1.1,Capital Federal,AR-C,annual,2010,naphtha combustion consumption by to the public,16.554792099999997,TJ,CH4,3.0,kg/TJ,49.66437629999999,kg -9721dec7-8797-3a9b-8d75-a3a06c6ad00e,SESCO,II.1.1,Capital Federal,AR-C,annual,2010,naphtha combustion consumption by to the public,16.554792099999997,TJ,N2O,0.6,kg/TJ,9.932875259999998,kg -e0c0a679-267c-3c07-aeae-202db46e2c46,SESCO,II.1.1,Chaco,AR-H,annual,2010,naphtha combustion consumption by to the public,1.3096082999999998,TJ,CO2,73300.0,kg/TJ,95994.28838999999,kg -c870e2eb-6dc4-36e7-ae29-df643aaa57ac,SESCO,II.1.1,Chaco,AR-H,annual,2010,naphtha combustion consumption by to the public,1.3096082999999998,TJ,CH4,3.0,kg/TJ,3.9288248999999995,kg -3bd2cc2a-1a47-3e63-bb71-fd91ccf42a1d,SESCO,II.1.1,Chaco,AR-H,annual,2010,naphtha combustion consumption by to the public,1.3096082999999998,TJ,N2O,0.6,kg/TJ,0.7857649799999998,kg -0114073b-fa54-3834-b4a0-2eaf23c1d472,SESCO,II.1.1,Corrientes,AR-W,annual,2010,naphtha combustion consumption by to the public,2.2162602000000002,TJ,CO2,73300.0,kg/TJ,162451.87266000002,kg -8f823a5a-714c-3f85-910d-6dd2f3591f80,SESCO,II.1.1,Corrientes,AR-W,annual,2010,naphtha combustion consumption by to the public,2.2162602000000002,TJ,CH4,3.0,kg/TJ,6.6487806,kg -f835fc13-17f9-30e4-9a2c-54371ada46c3,SESCO,II.1.1,Corrientes,AR-W,annual,2010,naphtha combustion consumption by to the public,2.2162602000000002,TJ,N2O,0.6,kg/TJ,1.32975612,kg -571b3260-4b57-3634-a68b-bc4bdf74db09,SESCO,II.1.1,Córdoba,AR-X,annual,2010,naphtha combustion consumption by to the public,16.6891109,TJ,CO2,73300.0,kg/TJ,1223311.82897,kg -524060e7-0121-3461-a5b3-d079ea737b90,SESCO,II.1.1,Córdoba,AR-X,annual,2010,naphtha combustion consumption by to the public,16.6891109,TJ,CH4,3.0,kg/TJ,50.067332699999994,kg -15969b84-a86e-34c5-8551-362e09d796a0,SESCO,II.1.1,Córdoba,AR-X,annual,2010,naphtha combustion consumption by to the public,16.6891109,TJ,N2O,0.6,kg/TJ,10.01346654,kg -143f6f06-8e8d-3491-a87d-4b26d1923e62,SESCO,II.1.1,Entre Rios,AR-E,annual,2010,naphtha combustion consumption by to the public,0.9738112999999999,TJ,CO2,73300.0,kg/TJ,71380.36829,kg -ff8d2461-e005-3870-8031-0a4ce9cbccf5,SESCO,II.1.1,Entre Rios,AR-E,annual,2010,naphtha combustion consumption by to the public,0.9738112999999999,TJ,CH4,3.0,kg/TJ,2.9214339,kg -8b43b35f-3cdf-3ba7-8d83-b0042f281c84,SESCO,II.1.1,Entre Rios,AR-E,annual,2010,naphtha combustion consumption by to the public,0.9738112999999999,TJ,N2O,0.6,kg/TJ,0.5842867799999999,kg -f6963d8b-0848-3179-8924-fe3fc8420fd1,SESCO,II.1.1,Jujuy,AR-Y,annual,2010,naphtha combustion consumption by to the public,0.20147819999999997,TJ,CO2,73300.0,kg/TJ,14768.352059999997,kg -05b56aa7-05d6-33c6-9a88-272b790dfdc3,SESCO,II.1.1,Jujuy,AR-Y,annual,2010,naphtha combustion consumption by to the public,0.20147819999999997,TJ,CH4,3.0,kg/TJ,0.6044345999999999,kg -7cc417c1-af0f-37c9-a95d-1d1a8d62af0f,SESCO,II.1.1,Jujuy,AR-Y,annual,2010,naphtha combustion consumption by to the public,0.20147819999999997,TJ,N2O,0.6,kg/TJ,0.12088691999999998,kg -9c5f53f7-00f7-3906-9c62-97758be3e64c,SESCO,II.1.1,La Pampa,AR-L,annual,2010,naphtha combustion consumption by to the public,1.5446661999999998,TJ,CO2,73300.0,kg/TJ,113224.03245999999,kg -8add8ba1-a6cd-3a43-864f-934df2d0213e,SESCO,II.1.1,La Pampa,AR-L,annual,2010,naphtha combustion consumption by to the public,1.5446661999999998,TJ,CH4,3.0,kg/TJ,4.633998599999999,kg -b7497cd0-8da5-3094-9725-66192700cc12,SESCO,II.1.1,La Pampa,AR-L,annual,2010,naphtha combustion consumption by to the public,1.5446661999999998,TJ,N2O,0.6,kg/TJ,0.9267997199999998,kg -1fcec6d8-a4bd-3009-89ca-4fb049041f46,SESCO,II.1.1,Mendoza,AR-M,annual,2010,naphtha combustion consumption by to the public,2.8878541999999996,TJ,CO2,73300.0,kg/TJ,211679.71285999997,kg -f1b13fa2-772b-3296-8762-156c30a84167,SESCO,II.1.1,Mendoza,AR-M,annual,2010,naphtha combustion consumption by to the public,2.8878541999999996,TJ,CH4,3.0,kg/TJ,8.663562599999999,kg -2167c19f-dacc-3c05-abcb-275fe2596f04,SESCO,II.1.1,Mendoza,AR-M,annual,2010,naphtha combustion consumption by to the public,2.8878541999999996,TJ,N2O,0.6,kg/TJ,1.7327125199999998,kg -61f41a77-b92c-3047-b22d-c3d11f48f6da,SESCO,II.1.1,Santa Fe,AR-S,annual,2010,naphtha combustion consumption by to the public,12.5252281,TJ,CO2,73300.0,kg/TJ,918099.21973,kg -a6cc4246-2238-3421-a5af-ffc3d060f810,SESCO,II.1.1,Santa Fe,AR-S,annual,2010,naphtha combustion consumption by to the public,12.5252281,TJ,CH4,3.0,kg/TJ,37.5756843,kg -1647403e-eede-3771-808a-23e4319b62e8,SESCO,II.1.1,Santa Fe,AR-S,annual,2010,naphtha combustion consumption by to the public,12.5252281,TJ,N2O,0.6,kg/TJ,7.515136859999999,kg -3623b057-afac-3d1a-bbff-8bc4eeb8247e,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2010,naphtha combustion consumption by to the public,3.7609264,TJ,CO2,73300.0,kg/TJ,275675.90512,kg -7242dcbc-82e3-3260-bc8c-25edb62158cc,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2010,naphtha combustion consumption by to the public,3.7609264,TJ,CH4,3.0,kg/TJ,11.2827792,kg -86f076a1-ba35-3fa5-9e9b-239bb0aba2a9,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2010,naphtha combustion consumption by to the public,3.7609264,TJ,N2O,0.6,kg/TJ,2.25655584,kg -0c4ef70e-f4ab-3495-87e2-bbf004b24359,SESCO,II.5.1,Buenos Aires,AR-B,annual,2010,naphtha combustion consumption by agriculture machines,14.0027349,TJ,CO2,73300.0,kg/TJ,1026400.46817,kg -e9406b72-76d9-32ae-8d9a-03baa1dfde3e,SESCO,II.5.1,Buenos Aires,AR-B,annual,2010,naphtha combustion consumption by agriculture machines,14.0027349,TJ,CH4,3.0,kg/TJ,42.0082047,kg -ca5fd763-2abc-354f-b0ea-7af02fc25ff7,SESCO,II.5.1,Buenos Aires,AR-B,annual,2010,naphtha combustion consumption by agriculture machines,14.0027349,TJ,N2O,0.6,kg/TJ,8.40164094,kg -ccc225d7-15f0-3753-9d46-169ca25b4fd9,SESCO,II.5.1,Córdoba,AR-X,annual,2010,naphtha combustion consumption by agriculture machines,8.529579597,TJ,CO2,73300.0,kg/TJ,625218.1844601,kg -c7fc19d7-e157-3385-b7f7-af1c29b0e427,SESCO,II.5.1,Córdoba,AR-X,annual,2010,naphtha combustion consumption by agriculture machines,8.529579597,TJ,CH4,3.0,kg/TJ,25.588738790999997,kg -532b8315-1bf0-379c-b500-18f1962f93c9,SESCO,II.5.1,Córdoba,AR-X,annual,2010,naphtha combustion consumption by agriculture machines,8.529579597,TJ,N2O,0.6,kg/TJ,5.117747758199999,kg -029b696d-11bc-3ef2-8f1a-5e0d6f9ba4bd,SESCO,II.5.1,Santa Fe,AR-S,annual,2010,naphtha combustion consumption by agriculture machines,16.663254531,TJ,CO2,73300.0,kg/TJ,1221416.5571223,kg -59c9f069-79db-3957-98cd-db666201dbe2,SESCO,II.5.1,Santa Fe,AR-S,annual,2010,naphtha combustion consumption by agriculture machines,16.663254531,TJ,CH4,3.0,kg/TJ,49.989763593,kg -db2ad01d-c6cd-3792-9659-6776533d4197,SESCO,II.5.1,Santa Fe,AR-S,annual,2010,naphtha combustion consumption by agriculture machines,16.663254531,TJ,N2O,0.6,kg/TJ,9.997952718599999,kg -78141d2e-82bd-39b9-aed4-9d10db0d5222,SESCO,II.5.1,Córdoba,AR-X,annual,2010,naphtha combustion consumption by agriculture machines,4.331781299999999,TJ,CO2,73300.0,kg/TJ,317519.56928999996,kg -9826ac0c-7ec0-3514-9c42-a1af3de97d4a,SESCO,II.5.1,Córdoba,AR-X,annual,2010,naphtha combustion consumption by agriculture machines,4.331781299999999,TJ,CH4,3.0,kg/TJ,12.995343899999998,kg -3fc6b86a-3f86-37db-a6ff-448a47636abc,SESCO,II.5.1,Córdoba,AR-X,annual,2010,naphtha combustion consumption by agriculture machines,4.331781299999999,TJ,N2O,0.6,kg/TJ,2.5990687799999996,kg -84037d05-f301-3ffb-bf13-78f2be5fd12d,SESCO,II.5.1,Santa Fe,AR-S,annual,2010,naphtha combustion consumption by agriculture machines,1.1014141599999998,TJ,CO2,73300.0,kg/TJ,80733.65792799999,kg -3c943f3b-3472-3dea-afb2-3ae700212aed,SESCO,II.5.1,Santa Fe,AR-S,annual,2010,naphtha combustion consumption by agriculture machines,1.1014141599999998,TJ,CH4,3.0,kg/TJ,3.304242479999999,kg -1504406f-c596-3c3b-963e-267f2329abb6,SESCO,II.5.1,Santa Fe,AR-S,annual,2010,naphtha combustion consumption by agriculture machines,1.1014141599999998,TJ,N2O,0.6,kg/TJ,0.6608484959999998,kg -0341eb95-da79-37d9-900f-13315c7e4da0,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,naphtha combustion consumption by to the public,563.5552440749,TJ,CO2,73300.0,kg/TJ,41308599.39069017,kg -aefe2d4f-7d3d-3b97-8b85-b755e95cf6aa,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,naphtha combustion consumption by to the public,563.5552440749,TJ,CH4,3.0,kg/TJ,1690.6657322247,kg -5ac04cee-37c4-3a4b-9556-6eb4509390f5,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,naphtha combustion consumption by to the public,563.5552440749,TJ,N2O,0.6,kg/TJ,338.13314644494,kg -11e2cf3b-291d-3bc1-9a90-546657c85974,SESCO,II.1.1,Capital Federal,AR-C,annual,2010,naphtha combustion consumption by to the public,17.7376370325,TJ,CO2,73300.0,kg/TJ,1300168.79448225,kg -4a3db138-23a2-3098-aa28-73eda9363f11,SESCO,II.1.1,Capital Federal,AR-C,annual,2010,naphtha combustion consumption by to the public,17.7376370325,TJ,CH4,3.0,kg/TJ,53.2129110975,kg -f036299e-f7b2-3869-bc27-b3e1f8f80b40,SESCO,II.1.1,Capital Federal,AR-C,annual,2010,naphtha combustion consumption by to the public,17.7376370325,TJ,N2O,0.6,kg/TJ,10.6425822195,kg -1e090be8-acc4-31e3-ba46-6ebda8ee0961,SESCO,II.1.1,Chaco,AR-H,annual,2010,naphtha combustion consumption by to the public,10.263635305000001,TJ,CO2,73300.0,kg/TJ,752324.4678565001,kg -fb1f0a6d-8c86-3538-94b1-01e63d02ab86,SESCO,II.1.1,Chaco,AR-H,annual,2010,naphtha combustion consumption by to the public,10.263635305000001,TJ,CH4,3.0,kg/TJ,30.790905915000003,kg -bdac4c9e-54c2-3ad7-8179-32a13b8d69c6,SESCO,II.1.1,Chaco,AR-H,annual,2010,naphtha combustion consumption by to the public,10.263635305000001,TJ,N2O,0.6,kg/TJ,6.158181183000001,kg -dd9bd933-aeca-3326-923e-d7182474de2d,SESCO,II.1.1,Corrientes,AR-W,annual,2010,naphtha combustion consumption by to the public,146.545504567,TJ,CO2,73300.0,kg/TJ,10741785.4847611,kg -44c65992-9697-3019-a844-6073b6724487,SESCO,II.1.1,Corrientes,AR-W,annual,2010,naphtha combustion consumption by to the public,146.545504567,TJ,CH4,3.0,kg/TJ,439.636513701,kg -b9e62a62-3a5c-3c35-a834-d1427e8a86e7,SESCO,II.1.1,Corrientes,AR-W,annual,2010,naphtha combustion consumption by to the public,146.545504567,TJ,N2O,0.6,kg/TJ,87.92730274019999,kg -6b8f09a8-6b17-336d-bd8a-4ac5bd935494,SESCO,II.1.1,Córdoba,AR-X,annual,2010,naphtha combustion consumption by to the public,64.253748559,TJ,CO2,73300.0,kg/TJ,4709799.7693747,kg -9b428b40-5634-3bb4-8ffb-58a484e35a8b,SESCO,II.1.1,Córdoba,AR-X,annual,2010,naphtha combustion consumption by to the public,64.253748559,TJ,CH4,3.0,kg/TJ,192.761245677,kg -02ac1ca3-f164-37a9-8b69-01da8285e1a1,SESCO,II.1.1,Córdoba,AR-X,annual,2010,naphtha combustion consumption by to the public,64.253748559,TJ,N2O,0.6,kg/TJ,38.5522491354,kg -afd730ba-8860-37bf-93ff-82c50a9358cb,SESCO,II.1.1,Entre Rios,AR-E,annual,2010,naphtha combustion consumption by to the public,26.948380844,TJ,CO2,73300.0,kg/TJ,1975316.3158652,kg -0c35a782-84a2-3e5a-82eb-7ddbf015071f,SESCO,II.1.1,Entre Rios,AR-E,annual,2010,naphtha combustion consumption by to the public,26.948380844,TJ,CH4,3.0,kg/TJ,80.845142532,kg -d6dc6d68-8e56-3bb2-9592-6d5fe4155b0d,SESCO,II.1.1,Entre Rios,AR-E,annual,2010,naphtha combustion consumption by to the public,26.948380844,TJ,N2O,0.6,kg/TJ,16.1690285064,kg -871dccea-d5e6-32cb-9cb5-4d284db42d24,SESCO,II.1.1,La Pampa,AR-L,annual,2010,naphtha combustion consumption by to the public,2.277375254,TJ,CO2,73300.0,kg/TJ,166931.6061182,kg -0a0bad11-9098-3552-b4bc-f8e4c84d0775,SESCO,II.1.1,La Pampa,AR-L,annual,2010,naphtha combustion consumption by to the public,2.277375254,TJ,CH4,3.0,kg/TJ,6.8321257619999995,kg -40913c24-8c06-3d6b-9c1e-36af5d646a3e,SESCO,II.1.1,La Pampa,AR-L,annual,2010,naphtha combustion consumption by to the public,2.277375254,TJ,N2O,0.6,kg/TJ,1.3664251524,kg -6feaf25b-48af-3868-bba6-aba9e20e96de,SESCO,II.1.1,Mendoza,AR-M,annual,2010,naphtha combustion consumption by to the public,24.762006576999998,TJ,CO2,73300.0,kg/TJ,1815055.0820940998,kg -5c04ac3f-e688-363e-85ee-94f9d8d0a18c,SESCO,II.1.1,Mendoza,AR-M,annual,2010,naphtha combustion consumption by to the public,24.762006576999998,TJ,CH4,3.0,kg/TJ,74.286019731,kg -17698e19-5a1e-3b8d-ba7c-506674560e10,SESCO,II.1.1,Mendoza,AR-M,annual,2010,naphtha combustion consumption by to the public,24.762006576999998,TJ,N2O,0.6,kg/TJ,14.857203946199999,kg -1dc8b39d-2f32-3fa5-94b1-27a61e1d8f1b,SESCO,II.1.1,Misiones,AR-N,annual,2010,naphtha combustion consumption by to the public,277.44622690399996,TJ,CO2,73300.0,kg/TJ,20336808.432063196,kg -4b9a971d-5f4b-3e5c-b909-5ed86ba59ee1,SESCO,II.1.1,Misiones,AR-N,annual,2010,naphtha combustion consumption by to the public,277.44622690399996,TJ,CH4,3.0,kg/TJ,832.3386807119998,kg -569bb913-fc97-3f5a-9e77-32df8e1ccadc,SESCO,II.1.1,Misiones,AR-N,annual,2010,naphtha combustion consumption by to the public,277.44622690399996,TJ,N2O,0.6,kg/TJ,166.46773614239996,kg -af1fc30f-feb4-37b9-bd9d-c5d1bf01f6f4,SESCO,II.1.1,Rio Negro,AR-R,annual,2010,naphtha combustion consumption by to the public,3.8777837559999995,TJ,CO2,73300.0,kg/TJ,284241.54931479995,kg -069fe55b-0955-32bd-a1c4-65b7a4e41bf4,SESCO,II.1.1,Rio Negro,AR-R,annual,2010,naphtha combustion consumption by to the public,3.8777837559999995,TJ,CH4,3.0,kg/TJ,11.633351267999998,kg -243eb21b-fa83-3e9b-b4e6-5299dc1c20a5,SESCO,II.1.1,Rio Negro,AR-R,annual,2010,naphtha combustion consumption by to the public,3.8777837559999995,TJ,N2O,0.6,kg/TJ,2.3266702535999997,kg -cba74db8-e2b0-3930-8d1c-c29514079bdc,SESCO,II.1.1,Santa Fe,AR-S,annual,2010,naphtha combustion consumption by to the public,201.86839611399998,TJ,CO2,73300.0,kg/TJ,14796953.435156198,kg -192550cf-9b5f-3012-9462-47f0d0ac0c10,SESCO,II.1.1,Santa Fe,AR-S,annual,2010,naphtha combustion consumption by to the public,201.86839611399998,TJ,CH4,3.0,kg/TJ,605.6051883419999,kg -b5da8a91-29e6-3a07-b4f0-83e2efd2ed02,SESCO,II.1.1,Santa Fe,AR-S,annual,2010,naphtha combustion consumption by to the public,201.86839611399998,TJ,N2O,0.6,kg/TJ,121.12103766839998,kg -0a947fe2-123f-32f2-b1da-5387d2bdfb5b,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,naphtha combustion consumption by to the public,6479.535486870599,TJ,CO2,73300.0,kg/TJ,474949951.1876149,kg -e161be4f-c3c9-342a-afdc-0a26af20bdbb,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,naphtha combustion consumption by to the public,6479.535486870599,TJ,CH4,3.0,kg/TJ,19438.606460611798,kg -54fd6f47-297e-3da1-b7be-ee7f96abdab7,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,naphtha combustion consumption by to the public,6479.535486870599,TJ,N2O,0.6,kg/TJ,3887.721292122359,kg -1fc7fab3-f85e-36ca-9217-64abc894da13,SESCO,II.1.1,Capital Federal,AR-C,annual,2010,naphtha combustion consumption by to the public,2255.4807187450997,TJ,CO2,73300.0,kg/TJ,165326736.6840158,kg -e28e2c15-8c09-3298-a330-3a65a307b596,SESCO,II.1.1,Capital Federal,AR-C,annual,2010,naphtha combustion consumption by to the public,2255.4807187450997,TJ,CH4,3.0,kg/TJ,6766.442156235299,kg -0234fbd1-3e55-3902-84e7-bfbc9552ac9b,SESCO,II.1.1,Capital Federal,AR-C,annual,2010,naphtha combustion consumption by to the public,2255.4807187450997,TJ,N2O,0.6,kg/TJ,1353.2884312470599,kg -1939216f-3315-33e4-89b0-81275dde6af4,SESCO,II.1.1,Catamarca,AR-K,annual,2010,naphtha combustion consumption by to the public,249.95083274699996,TJ,CO2,73300.0,kg/TJ,18321396.040355098,kg -5d4eaccf-b424-3e8d-9c53-b36b1b605bb5,SESCO,II.1.1,Catamarca,AR-K,annual,2010,naphtha combustion consumption by to the public,249.95083274699996,TJ,CH4,3.0,kg/TJ,749.8524982409999,kg -af185b43-f68d-37e2-8a7e-71f036f591fa,SESCO,II.1.1,Catamarca,AR-K,annual,2010,naphtha combustion consumption by to the public,249.95083274699996,TJ,N2O,0.6,kg/TJ,149.97049964819996,kg -29e6a8dc-2225-3750-98d2-27fed060a62e,SESCO,II.1.1,Chaco,AR-H,annual,2010,naphtha combustion consumption by to the public,323.30468000599996,TJ,CO2,73300.0,kg/TJ,23698233.044439796,kg -2a4d6bae-e936-31f8-ac8c-c21c9bdac0cb,SESCO,II.1.1,Chaco,AR-H,annual,2010,naphtha combustion consumption by to the public,323.30468000599996,TJ,CH4,3.0,kg/TJ,969.9140400179999,kg -7589edb6-14fe-35d4-a5a8-101c83d4fa3d,SESCO,II.1.1,Chaco,AR-H,annual,2010,naphtha combustion consumption by to the public,323.30468000599996,TJ,N2O,0.6,kg/TJ,193.98280800359996,kg -fdbb216d-38bf-311f-8f06-92b68b130ccf,SESCO,II.1.1,Chubut,AR-U,annual,2010,naphtha combustion consumption by to the public,276.500286755,TJ,CO2,73300.0,kg/TJ,20267471.0191415,kg -57c3df17-6f25-3fa6-a37e-3716b79bfc8f,SESCO,II.1.1,Chubut,AR-U,annual,2010,naphtha combustion consumption by to the public,276.500286755,TJ,CH4,3.0,kg/TJ,829.500860265,kg -3ec1763d-bf19-3bab-8b15-fa85bbcc2047,SESCO,II.1.1,Chubut,AR-U,annual,2010,naphtha combustion consumption by to the public,276.500286755,TJ,N2O,0.6,kg/TJ,165.90017205299998,kg -64a79fcc-eaa7-32ed-a203-cc38d11599d0,SESCO,II.1.1,Corrientes,AR-W,annual,2010,naphtha combustion consumption by to the public,365.11711505499994,TJ,CO2,73300.0,kg/TJ,26763084.533531494,kg -96c2f112-8754-334b-8716-ae1602df88f0,SESCO,II.1.1,Corrientes,AR-W,annual,2010,naphtha combustion consumption by to the public,365.11711505499994,TJ,CH4,3.0,kg/TJ,1095.3513451649999,kg -62a23c16-4559-30a5-b433-5da10a570960,SESCO,II.1.1,Corrientes,AR-W,annual,2010,naphtha combustion consumption by to the public,365.11711505499994,TJ,N2O,0.6,kg/TJ,219.07026903299996,kg -921cd43a-a1ee-3335-b24f-3e43d1141beb,SESCO,II.1.1,Córdoba,AR-X,annual,2010,naphtha combustion consumption by to the public,2368.4774837954997,TJ,CO2,73300.0,kg/TJ,173609399.5622101,kg -da7bb059-a70c-39f1-aba7-9d52e6570de8,SESCO,II.1.1,Córdoba,AR-X,annual,2010,naphtha combustion consumption by to the public,2368.4774837954997,TJ,CH4,3.0,kg/TJ,7105.432451386499,kg -3673baaa-fa80-32d5-ac22-4cdfc45d394d,SESCO,II.1.1,Córdoba,AR-X,annual,2010,naphtha combustion consumption by to the public,2368.4774837954997,TJ,N2O,0.6,kg/TJ,1421.0864902772998,kg -5cf8593d-7b29-3536-87ee-bf1c5a48c118,SESCO,II.1.1,Entre Rios,AR-E,annual,2010,naphtha combustion consumption by to the public,692.0772812029999,TJ,CO2,73300.0,kg/TJ,50729264.71217989,kg -bf620cf5-56ce-3717-aae5-5f3e2820466a,SESCO,II.1.1,Entre Rios,AR-E,annual,2010,naphtha combustion consumption by to the public,692.0772812029999,TJ,CH4,3.0,kg/TJ,2076.2318436089995,kg -8a92b082-5ae5-39fa-9832-a9f81a3de199,SESCO,II.1.1,Entre Rios,AR-E,annual,2010,naphtha combustion consumption by to the public,692.0772812029999,TJ,N2O,0.6,kg/TJ,415.2463687217999,kg -0fb4f6cc-f810-3dc5-b6c6-754e6f536912,SESCO,II.1.1,Formosa,AR-P,annual,2010,naphtha combustion consumption by to the public,287.174265994,TJ,CO2,73300.0,kg/TJ,21049873.6973602,kg -ba5752a1-6d94-35dd-8977-4e20e290781e,SESCO,II.1.1,Formosa,AR-P,annual,2010,naphtha combustion consumption by to the public,287.174265994,TJ,CH4,3.0,kg/TJ,861.5227979819999,kg -80001fd3-0b1b-300f-9a38-f1dd264d5ca2,SESCO,II.1.1,Formosa,AR-P,annual,2010,naphtha combustion consumption by to the public,287.174265994,TJ,N2O,0.6,kg/TJ,172.3045595964,kg -869bf6a6-729c-3b0d-a7fe-efee4cfd6845,SESCO,II.1.1,Jujuy,AR-Y,annual,2010,naphtha combustion consumption by to the public,52.762439422,TJ,CO2,73300.0,kg/TJ,3867486.8096326,kg -c36a1814-3158-3a2d-88cb-42886d375f92,SESCO,II.1.1,Jujuy,AR-Y,annual,2010,naphtha combustion consumption by to the public,52.762439422,TJ,CH4,3.0,kg/TJ,158.287318266,kg -59db6ff8-93a7-39fb-b316-9f90a66eecce,SESCO,II.1.1,Jujuy,AR-Y,annual,2010,naphtha combustion consumption by to the public,52.762439422,TJ,N2O,0.6,kg/TJ,31.657463653199997,kg -520638de-1a3c-38d5-9617-af2c08157624,SESCO,II.1.1,La Pampa,AR-L,annual,2010,naphtha combustion consumption by to the public,87.556381374,TJ,CO2,73300.0,kg/TJ,6417882.754714199,kg -5c682fed-b8a6-32ce-94fb-5311f9ea5022,SESCO,II.1.1,La Pampa,AR-L,annual,2010,naphtha combustion consumption by to the public,87.556381374,TJ,CH4,3.0,kg/TJ,262.669144122,kg -b9121763-faf6-3999-b430-ec48ff452ee0,SESCO,II.1.1,La Pampa,AR-L,annual,2010,naphtha combustion consumption by to the public,87.556381374,TJ,N2O,0.6,kg/TJ,52.5338288244,kg -54007756-cf36-3044-9446-5bf9331f1600,SESCO,II.1.1,La Rioja,AR-F,annual,2010,naphtha combustion consumption by to the public,177.74306064899997,TJ,CO2,73300.0,kg/TJ,13028566.345571699,kg -b789b836-f6d4-3baa-9dbc-00672f8da891,SESCO,II.1.1,La Rioja,AR-F,annual,2010,naphtha combustion consumption by to the public,177.74306064899997,TJ,CH4,3.0,kg/TJ,533.2291819469999,kg -1394684d-48b5-3bc6-9068-a9eb1a20cc34,SESCO,II.1.1,La Rioja,AR-F,annual,2010,naphtha combustion consumption by to the public,177.74306064899997,TJ,N2O,0.6,kg/TJ,106.64583638939997,kg -22d396ca-5e96-3768-a9c3-bf9c0f181548,SESCO,II.1.1,Mendoza,AR-M,annual,2010,naphtha combustion consumption by to the public,257.103644644,TJ,CO2,73300.0,kg/TJ,18845697.1524052,kg -eaa5044a-9e52-3fc8-bae6-7b3baf97d2b4,SESCO,II.1.1,Mendoza,AR-M,annual,2010,naphtha combustion consumption by to the public,257.103644644,TJ,CH4,3.0,kg/TJ,771.3109339319999,kg -d0c3d397-fef3-38bc-88da-f51533a6e051,SESCO,II.1.1,Mendoza,AR-M,annual,2010,naphtha combustion consumption by to the public,257.103644644,TJ,N2O,0.6,kg/TJ,154.26218678639998,kg -c61e2c84-18a1-3c8d-a54a-2f5a842c287b,SESCO,II.1.1,Misiones,AR-N,annual,2010,naphtha combustion consumption by to the public,587.3146615489999,TJ,CO2,73300.0,kg/TJ,43050164.691541694,kg -f2b55239-2030-3cbe-aa55-c1a7bebf3a45,SESCO,II.1.1,Misiones,AR-N,annual,2010,naphtha combustion consumption by to the public,587.3146615489999,TJ,CH4,3.0,kg/TJ,1761.9439846469995,kg -d5fe3294-4e6d-397e-b953-fd6431085bfa,SESCO,II.1.1,Misiones,AR-N,annual,2010,naphtha combustion consumption by to the public,587.3146615489999,TJ,N2O,0.6,kg/TJ,352.3887969293999,kg -17a8f033-2f7f-3ae6-b09d-3830b5cf6d76,SESCO,II.1.1,Neuquén,AR-Q,annual,2010,naphtha combustion consumption by to the public,252.10597789299996,TJ,CO2,73300.0,kg/TJ,18479368.1795569,kg -6ed3e055-fcd1-3a22-888b-f66a2b4fc1b6,SESCO,II.1.1,Neuquén,AR-Q,annual,2010,naphtha combustion consumption by to the public,252.10597789299996,TJ,CH4,3.0,kg/TJ,756.3179336789999,kg -030db075-3edc-379d-b8bf-43c2a836bf6d,SESCO,II.1.1,Neuquén,AR-Q,annual,2010,naphtha combustion consumption by to the public,252.10597789299996,TJ,N2O,0.6,kg/TJ,151.26358673579998,kg -75bcb0c3-9c72-3564-a6da-7db5668e4b5d,SESCO,II.1.1,Rio Negro,AR-R,annual,2010,naphtha combustion consumption by to the public,378.61481126699994,TJ,CO2,73300.0,kg/TJ,27752465.665871095,kg -79cecd54-ff8b-3cd3-81c8-47a1642c082f,SESCO,II.1.1,Rio Negro,AR-R,annual,2010,naphtha combustion consumption by to the public,378.61481126699994,TJ,CH4,3.0,kg/TJ,1135.844433801,kg -d5ade6a9-3359-38f3-9ec2-1e3bf9dc4c51,SESCO,II.1.1,Rio Negro,AR-R,annual,2010,naphtha combustion consumption by to the public,378.61481126699994,TJ,N2O,0.6,kg/TJ,227.16888676019997,kg -7b36c558-08a6-3e57-bb33-9838fa9bcfc5,SESCO,II.1.1,Salta,AR-A,annual,2010,naphtha combustion consumption by to the public,49.29432800599999,TJ,CO2,73300.0,kg/TJ,3613274.2428397997,kg -12d83423-ae34-392e-9689-6bb6332efe66,SESCO,II.1.1,Salta,AR-A,annual,2010,naphtha combustion consumption by to the public,49.29432800599999,TJ,CH4,3.0,kg/TJ,147.88298401799997,kg -d001c6d1-20bc-3c2f-8931-9ea2b70c4676,SESCO,II.1.1,Salta,AR-A,annual,2010,naphtha combustion consumption by to the public,49.29432800599999,TJ,N2O,0.6,kg/TJ,29.576596803599994,kg -de0a9067-b965-36a5-b658-8b4c985e299c,SESCO,II.1.1,San Juan,AR-J,annual,2010,naphtha combustion consumption by to the public,211.892272361,TJ,CO2,73300.0,kg/TJ,15531703.5640613,kg -0ee13477-c098-3769-a8f1-6fb898235797,SESCO,II.1.1,San Juan,AR-J,annual,2010,naphtha combustion consumption by to the public,211.892272361,TJ,CH4,3.0,kg/TJ,635.6768170830001,kg -59fcc52f-7a14-3c9d-a3cf-a4a08e99af79,SESCO,II.1.1,San Juan,AR-J,annual,2010,naphtha combustion consumption by to the public,211.892272361,TJ,N2O,0.6,kg/TJ,127.1353634166,kg -0211a8d5-c7b3-3190-bb02-e9c403aac382,SESCO,II.1.1,San Luis,AR-D,annual,2010,naphtha combustion consumption by to the public,437.9981601379999,TJ,CO2,73300.0,kg/TJ,32105265.13811539,kg -96d0871a-e461-36b1-b26f-12f24081f084,SESCO,II.1.1,San Luis,AR-D,annual,2010,naphtha combustion consumption by to the public,437.9981601379999,TJ,CH4,3.0,kg/TJ,1313.9944804139996,kg -f5d53e42-093c-31de-b061-1e9e34f88f98,SESCO,II.1.1,San Luis,AR-D,annual,2010,naphtha combustion consumption by to the public,437.9981601379999,TJ,N2O,0.6,kg/TJ,262.7988960827999,kg -593548d1-7bb8-3ab0-9663-2ee25a46f064,SESCO,II.1.1,Santa Fe,AR-S,annual,2010,naphtha combustion consumption by to the public,1965.2830373021998,TJ,CO2,73300.0,kg/TJ,144055246.63425124,kg -c2eaf0e6-6951-3759-a568-47edad7c6c47,SESCO,II.1.1,Santa Fe,AR-S,annual,2010,naphtha combustion consumption by to the public,1965.2830373021998,TJ,CH4,3.0,kg/TJ,5895.849111906599,kg -14c6fae8-8e55-3031-9681-0a6758aeec92,SESCO,II.1.1,Santa Fe,AR-S,annual,2010,naphtha combustion consumption by to the public,1965.2830373021998,TJ,N2O,0.6,kg/TJ,1179.1698223813198,kg -ed61e8f2-b9c5-3707-bfdb-59f2b30e37d7,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2010,naphtha combustion consumption by to the public,181.37369781299998,TJ,CO2,73300.0,kg/TJ,13294692.049692899,kg -68ced933-0760-3e0a-b4f5-707acff53282,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2010,naphtha combustion consumption by to the public,181.37369781299998,TJ,CH4,3.0,kg/TJ,544.1210934389999,kg -69a7907a-1dba-3152-9cb3-99c3475ab1bd,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2010,naphtha combustion consumption by to the public,181.37369781299998,TJ,N2O,0.6,kg/TJ,108.82421868779998,kg -20bf8a86-e4c7-3797-9699-5aa2abea06c6,SESCO,II.1.1,Tucuman,AR-T,annual,2010,naphtha combustion consumption by to the public,58.92666495099999,TJ,CO2,73300.0,kg/TJ,4319324.540908299,kg -69005809-2484-3bbf-b4f4-39ea492b4ad4,SESCO,II.1.1,Tucuman,AR-T,annual,2010,naphtha combustion consumption by to the public,58.92666495099999,TJ,CH4,3.0,kg/TJ,176.77999485299998,kg -50ad0e70-d6bc-375f-966d-53c9538f1b89,SESCO,II.1.1,Tucuman,AR-T,annual,2010,naphtha combustion consumption by to the public,58.92666495099999,TJ,N2O,0.6,kg/TJ,35.35599897059999,kg -03fadeb0-4267-35bf-9e04-fe9a029ed111,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,naphtha combustion consumption by to the public,1369.0091774743998,TJ,CO2,73300.0,kg/TJ,100348372.70887351,kg -0b0339dd-1180-31af-9f65-98c148b991d3,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,naphtha combustion consumption by to the public,1369.0091774743998,TJ,CH4,3.0,kg/TJ,4107.0275324232,kg -021ba4be-0133-3b5b-a042-8995fc555ad7,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,naphtha combustion consumption by to the public,1369.0091774743998,TJ,N2O,0.6,kg/TJ,821.4055064846399,kg -83396201-4a10-3b0a-a67b-3b628ae5b68a,SESCO,II.1.1,Capital Federal,AR-C,annual,2010,naphtha combustion consumption by to the public,754.7230658274999,TJ,CO2,73300.0,kg/TJ,55321200.72515574,kg -e7eb477f-885b-3b89-bc75-240aba2eddd5,SESCO,II.1.1,Capital Federal,AR-C,annual,2010,naphtha combustion consumption by to the public,754.7230658274999,TJ,CH4,3.0,kg/TJ,2264.1691974825,kg -820cb83f-8da0-3143-b26e-314f0c3906a4,SESCO,II.1.1,Capital Federal,AR-C,annual,2010,naphtha combustion consumption by to the public,754.7230658274999,TJ,N2O,0.6,kg/TJ,452.83383949649993,kg -c1eb263e-5c00-3ee9-a0b0-0ffd7897b3ce,SESCO,II.1.1,Catamarca,AR-K,annual,2010,naphtha combustion consumption by to the public,39.304367256,TJ,CO2,73300.0,kg/TJ,2881010.1198648,kg -b3df14e0-e266-39af-982f-4cdfe35dae35,SESCO,II.1.1,Catamarca,AR-K,annual,2010,naphtha combustion consumption by to the public,39.304367256,TJ,CH4,3.0,kg/TJ,117.91310176799999,kg -ab36689e-9d25-3492-8bb8-b9831af65416,SESCO,II.1.1,Catamarca,AR-K,annual,2010,naphtha combustion consumption by to the public,39.304367256,TJ,N2O,0.6,kg/TJ,23.5826203536,kg -e761287d-d07a-3d6f-81ec-27be2ad14cf4,SESCO,II.1.1,Chaco,AR-H,annual,2010,naphtha combustion consumption by to the public,44.175438537999995,TJ,CO2,73300.0,kg/TJ,3238059.6448353995,kg -261e3910-475e-3bd9-b6ea-416e38acf43d,SESCO,II.1.1,Chaco,AR-H,annual,2010,naphtha combustion consumption by to the public,44.175438537999995,TJ,CH4,3.0,kg/TJ,132.526315614,kg -221218c3-0fa1-3ae8-91e1-40e230306c40,SESCO,II.1.1,Chaco,AR-H,annual,2010,naphtha combustion consumption by to the public,44.175438537999995,TJ,N2O,0.6,kg/TJ,26.505263122799995,kg -5a661213-a27e-3287-ab3d-07ca775d53cf,SESCO,II.1.1,Chubut,AR-U,annual,2010,naphtha combustion consumption by to the public,24.095785328999998,TJ,CO2,73300.0,kg/TJ,1766221.0646157,kg -76e20106-402a-3b99-b456-a61bfbc37c14,SESCO,II.1.1,Chubut,AR-U,annual,2010,naphtha combustion consumption by to the public,24.095785328999998,TJ,CH4,3.0,kg/TJ,72.287355987,kg -874dea7c-558a-39fa-91fa-4f50c2a2a119,SESCO,II.1.1,Chubut,AR-U,annual,2010,naphtha combustion consumption by to the public,24.095785328999998,TJ,N2O,0.6,kg/TJ,14.457471197399999,kg -5346dadb-fc93-350e-8c6e-0f075d90da38,SESCO,II.1.1,Corrientes,AR-W,annual,2010,naphtha combustion consumption by to the public,32.36814442399999,TJ,CO2,73300.0,kg/TJ,2372584.9862791994,kg -cabfbd81-c616-3665-9c32-b0d38148cf1c,SESCO,II.1.1,Corrientes,AR-W,annual,2010,naphtha combustion consumption by to the public,32.36814442399999,TJ,CH4,3.0,kg/TJ,97.10443327199998,kg -1a75c818-02fd-33ae-8470-56061bdced59,SESCO,II.1.1,Corrientes,AR-W,annual,2010,naphtha combustion consumption by to the public,32.36814442399999,TJ,N2O,0.6,kg/TJ,19.420886654399997,kg -1e14ecb8-757c-36ac-aac9-ccac8e450fbd,SESCO,II.1.1,Córdoba,AR-X,annual,2010,naphtha combustion consumption by to the public,477.5979280149,TJ,CO2,73300.0,kg/TJ,35007928.12349217,kg -817b8303-6c27-3b8a-9d2d-1929bbe2f89d,SESCO,II.1.1,Córdoba,AR-X,annual,2010,naphtha combustion consumption by to the public,477.5979280149,TJ,CH4,3.0,kg/TJ,1432.7937840447,kg -e03f699d-4a13-37fa-aa61-1107a9d5937d,SESCO,II.1.1,Córdoba,AR-X,annual,2010,naphtha combustion consumption by to the public,477.5979280149,TJ,N2O,0.6,kg/TJ,286.55875680893996,kg -ab33d85f-ba51-3bf3-b1b6-41db8bcda65a,SESCO,II.1.1,Entre Rios,AR-E,annual,2010,naphtha combustion consumption by to the public,124.61258771499998,TJ,CO2,73300.0,kg/TJ,9134102.679509498,kg -fb208edb-d2e6-3eb9-b0fb-37227c7ac846,SESCO,II.1.1,Entre Rios,AR-E,annual,2010,naphtha combustion consumption by to the public,124.61258771499998,TJ,CH4,3.0,kg/TJ,373.83776314499994,kg -f919decd-11e4-3517-b16d-8d332fa7cf7d,SESCO,II.1.1,Entre Rios,AR-E,annual,2010,naphtha combustion consumption by to the public,124.61258771499998,TJ,N2O,0.6,kg/TJ,74.76755262899998,kg -e5c25cb1-78bb-3e0a-906d-fdb08f2eb1e8,SESCO,II.1.1,Formosa,AR-P,annual,2010,naphtha combustion consumption by to the public,46.22950878699999,TJ,CO2,73300.0,kg/TJ,3388622.9940870996,kg -29b8d624-8ce4-3f56-b363-612dba7dc38b,SESCO,II.1.1,Formosa,AR-P,annual,2010,naphtha combustion consumption by to the public,46.22950878699999,TJ,CH4,3.0,kg/TJ,138.688526361,kg -7bd2d483-af01-332e-b5c9-df94ac9b8fae,SESCO,II.1.1,Formosa,AR-P,annual,2010,naphtha combustion consumption by to the public,46.22950878699999,TJ,N2O,0.6,kg/TJ,27.737705272199996,kg -80efa628-e821-3fb6-a8c6-6985b45cb2b7,SESCO,II.1.1,Jujuy,AR-Y,annual,2010,naphtha combustion consumption by to the public,1.3361362629999998,TJ,CO2,73300.0,kg/TJ,97938.78807789998,kg -800be713-7948-356b-941f-abf56bf67995,SESCO,II.1.1,Jujuy,AR-Y,annual,2010,naphtha combustion consumption by to the public,1.3361362629999998,TJ,CH4,3.0,kg/TJ,4.008408788999999,kg -87404ce9-3baf-3788-8ad6-a3f52ec88cd5,SESCO,II.1.1,Jujuy,AR-Y,annual,2010,naphtha combustion consumption by to the public,1.3361362629999998,TJ,N2O,0.6,kg/TJ,0.8016817577999998,kg -21f26a4b-692d-3fd8-a3bc-8b5692853363,SESCO,II.1.1,La Pampa,AR-L,annual,2010,naphtha combustion consumption by to the public,17.733775367,TJ,CO2,73300.0,kg/TJ,1299885.7344011,kg -1d8da0da-a420-3f07-8812-43f11505059a,SESCO,II.1.1,La Pampa,AR-L,annual,2010,naphtha combustion consumption by to the public,17.733775367,TJ,CH4,3.0,kg/TJ,53.201326101,kg -bc4071da-1343-3c34-9759-c95caae9fe86,SESCO,II.1.1,La Pampa,AR-L,annual,2010,naphtha combustion consumption by to the public,17.733775367,TJ,N2O,0.6,kg/TJ,10.6402652202,kg -ad84a59a-727f-39ab-a220-30d90385fe19,SESCO,II.1.1,La Rioja,AR-F,annual,2010,naphtha combustion consumption by to the public,33.020933792,TJ,CO2,73300.0,kg/TJ,2420434.4469536003,kg -f970edcc-19cc-3fbd-b440-a85fcaf7bfed,SESCO,II.1.1,La Rioja,AR-F,annual,2010,naphtha combustion consumption by to the public,33.020933792,TJ,CH4,3.0,kg/TJ,99.06280137600001,kg -55b42670-544e-3f1e-8f7e-9936e36c338b,SESCO,II.1.1,La Rioja,AR-F,annual,2010,naphtha combustion consumption by to the public,33.020933792,TJ,N2O,0.6,kg/TJ,19.8125602752,kg -37da60a6-bbf0-3331-9629-8b2888c3f41e,SESCO,II.1.1,Mendoza,AR-M,annual,2010,naphtha combustion consumption by to the public,53.441085159,TJ,CO2,73300.0,kg/TJ,3917231.5421546996,kg -66f5d65a-3da6-3828-8ade-dd2bae534acb,SESCO,II.1.1,Mendoza,AR-M,annual,2010,naphtha combustion consumption by to the public,53.441085159,TJ,CH4,3.0,kg/TJ,160.32325547699998,kg -be13e84c-80be-3ff1-b442-c3cfc89e0152,SESCO,II.1.1,Mendoza,AR-M,annual,2010,naphtha combustion consumption by to the public,53.441085159,TJ,N2O,0.6,kg/TJ,32.064651095399995,kg -2e9c5dec-9166-3a24-a7b4-f9d2780da09e,SESCO,II.1.1,Misiones,AR-N,annual,2010,naphtha combustion consumption by to the public,39.373877234999995,TJ,CO2,73300.0,kg/TJ,2886105.2013254995,kg -a877688a-723e-3c6a-9d7d-793e3bffdaf1,SESCO,II.1.1,Misiones,AR-N,annual,2010,naphtha combustion consumption by to the public,39.373877234999995,TJ,CH4,3.0,kg/TJ,118.12163170499998,kg -a42bee3f-f5d9-3f3c-8833-6ab1032ea935,SESCO,II.1.1,Misiones,AR-N,annual,2010,naphtha combustion consumption by to the public,39.373877234999995,TJ,N2O,0.6,kg/TJ,23.624326340999996,kg -d3770476-ba75-30bf-a7be-20353d51dbf2,SESCO,II.1.1,Neuquén,AR-Q,annual,2010,naphtha combustion consumption by to the public,42.968248323,TJ,CO2,73300.0,kg/TJ,3149572.6020759,kg -d91f81c0-7c07-310a-bf6a-a6c540691f86,SESCO,II.1.1,Neuquén,AR-Q,annual,2010,naphtha combustion consumption by to the public,42.968248323,TJ,CH4,3.0,kg/TJ,128.90474496899998,kg -597001eb-3abe-33be-a376-4b47d89ceb5b,SESCO,II.1.1,Neuquén,AR-Q,annual,2010,naphtha combustion consumption by to the public,42.968248323,TJ,N2O,0.6,kg/TJ,25.7809489938,kg -e1f79162-e52f-3ee8-a447-5ddf6ebe9850,SESCO,II.1.1,Rio Negro,AR-R,annual,2010,naphtha combustion consumption by to the public,67.022059027,TJ,CO2,73300.0,kg/TJ,4912716.9266791,kg -eff08a92-b933-32d9-92b0-21dabb3ee45c,SESCO,II.1.1,Rio Negro,AR-R,annual,2010,naphtha combustion consumption by to the public,67.022059027,TJ,CH4,3.0,kg/TJ,201.06617708099998,kg -29b0d102-b2c5-3546-afe9-5193941b3362,SESCO,II.1.1,Rio Negro,AR-R,annual,2010,naphtha combustion consumption by to the public,67.022059027,TJ,N2O,0.6,kg/TJ,40.2132354162,kg -0ff85840-3a29-38e6-a7ff-5b0c6d698255,SESCO,II.1.1,Salta,AR-A,annual,2010,naphtha combustion consumption by to the public,6.139040754,TJ,CO2,73300.0,kg/TJ,449991.6872682,kg -a6685f37-4c8a-3ca6-b17a-722ab214db40,SESCO,II.1.1,Salta,AR-A,annual,2010,naphtha combustion consumption by to the public,6.139040754,TJ,CH4,3.0,kg/TJ,18.417122262,kg -9fafc117-833c-3913-8dff-22692ffcff60,SESCO,II.1.1,Salta,AR-A,annual,2010,naphtha combustion consumption by to the public,6.139040754,TJ,N2O,0.6,kg/TJ,3.6834244523999997,kg -a6108f38-4778-392f-9df7-004a8c55b9fe,SESCO,II.1.1,San Juan,AR-J,annual,2010,naphtha combustion consumption by to the public,37.440022312,TJ,CO2,73300.0,kg/TJ,2744353.6354696,kg -eebd0cc6-8555-39bd-8200-07a89f94358a,SESCO,II.1.1,San Juan,AR-J,annual,2010,naphtha combustion consumption by to the public,37.440022312,TJ,CH4,3.0,kg/TJ,112.32006693600002,kg -7a9a0d6b-74c4-3d0e-bcb8-ab0161a27cfe,SESCO,II.1.1,San Juan,AR-J,annual,2010,naphtha combustion consumption by to the public,37.440022312,TJ,N2O,0.6,kg/TJ,22.4640133872,kg -da058152-59a4-32e7-b3ee-be5f924c6dce,SESCO,II.1.1,San Luis,AR-D,annual,2010,naphtha combustion consumption by to the public,59.826265113999995,TJ,CO2,73300.0,kg/TJ,4385265.232856199,kg -8db4802b-fa62-3886-af9a-a9e9b6f7ffec,SESCO,II.1.1,San Luis,AR-D,annual,2010,naphtha combustion consumption by to the public,59.826265113999995,TJ,CH4,3.0,kg/TJ,179.47879534199998,kg -38a4d48d-445c-3383-9f81-3a26144580c1,SESCO,II.1.1,San Luis,AR-D,annual,2010,naphtha combustion consumption by to the public,59.826265113999995,TJ,N2O,0.6,kg/TJ,35.8957590684,kg -9452b850-dd89-38b4-a66a-f8f3b0f8fd05,SESCO,II.1.1,Santa Fe,AR-S,annual,2010,naphtha combustion consumption by to the public,433.38172372109995,TJ,CO2,73300.0,kg/TJ,31766880.348756626,kg -96d104d5-a4e7-374b-8ef1-ab83c3bbd47e,SESCO,II.1.1,Santa Fe,AR-S,annual,2010,naphtha combustion consumption by to the public,433.38172372109995,TJ,CH4,3.0,kg/TJ,1300.1451711633,kg -49704c85-9267-30c7-9ac8-6f82a6fb8e5a,SESCO,II.1.1,Santa Fe,AR-S,annual,2010,naphtha combustion consumption by to the public,433.38172372109995,TJ,N2O,0.6,kg/TJ,260.02903423265997,kg -0c640068-5dc0-379e-9aed-d9698672fb52,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2010,naphtha combustion consumption by to the public,64.44616024,TJ,CO2,73300.0,kg/TJ,4723903.545592,kg -0ba55574-b15a-31f4-8a26-a022fcee549f,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2010,naphtha combustion consumption by to the public,64.44616024,TJ,CH4,3.0,kg/TJ,193.33848072,kg -5a561d89-812a-32c9-aef0-7b0153d9cd7a,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2010,naphtha combustion consumption by to the public,64.44616024,TJ,N2O,0.6,kg/TJ,38.667696144,kg -b958a5e4-2e13-3d38-a819-eb72ed3a56e5,SESCO,II.1.1,Tucuman,AR-T,annual,2010,naphtha combustion consumption by to the public,15.317715952,TJ,CO2,73300.0,kg/TJ,1122788.5792816,kg -efc8c975-799d-328f-8ffa-12e823e033ea,SESCO,II.1.1,Tucuman,AR-T,annual,2010,naphtha combustion consumption by to the public,15.317715952,TJ,CH4,3.0,kg/TJ,45.953147856,kg -7431d725-7377-334e-ae53-8243b5271255,SESCO,II.1.1,Tucuman,AR-T,annual,2010,naphtha combustion consumption by to the public,15.317715952,TJ,N2O,0.6,kg/TJ,9.1906295712,kg -e68ab9b6-f7b3-30a8-bce2-9a4d282f3f7a,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,naphtha combustion consumption by freight transport,0.0010073909999999998,TJ,CO2,73300.0,kg/TJ,73.84176029999999,kg -ad20e0fe-d585-3e22-b267-af33f1a76270,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,naphtha combustion consumption by freight transport,0.0010073909999999998,TJ,CH4,3.0,kg/TJ,0.0030221729999999995,kg -06ed6ad3-e099-34fa-9a0d-1e9dbd3eaac7,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,naphtha combustion consumption by freight transport,0.0010073909999999998,TJ,N2O,0.6,kg/TJ,0.0006044345999999999,kg -c669c511-8d33-3cc4-85c3-c64f13f468a3,SESCO,II.1.1,Capital Federal,AR-C,annual,2010,naphtha combustion consumption by freight transport,0.015782459,TJ,CO2,73300.0,kg/TJ,1156.8542447,kg -632b6a90-723b-3768-87f7-a1fad323e442,SESCO,II.1.1,Capital Federal,AR-C,annual,2010,naphtha combustion consumption by freight transport,0.015782459,TJ,CH4,3.0,kg/TJ,0.047347376999999996,kg -ea141dba-3032-3776-9dad-15cbe1afba55,SESCO,II.1.1,Capital Federal,AR-C,annual,2010,naphtha combustion consumption by freight transport,0.015782459,TJ,N2O,0.6,kg/TJ,0.009469475399999998,kg -769fc8f0-9a32-389a-9eb2-60caafd8d1f5,SESCO,II.1.1,Misiones,AR-N,annual,2010,naphtha combustion consumption by freight transport,0.002350579,TJ,CO2,73300.0,kg/TJ,172.2974407,kg -f40d46c6-aa3d-3bed-88f9-88acb711da85,SESCO,II.1.1,Misiones,AR-N,annual,2010,naphtha combustion consumption by freight transport,0.002350579,TJ,CH4,3.0,kg/TJ,0.007051737000000001,kg -e90f4943-05ab-31e7-89e0-d5d96c24a5ee,SESCO,II.1.1,Misiones,AR-N,annual,2010,naphtha combustion consumption by freight transport,0.002350579,TJ,N2O,0.6,kg/TJ,0.0014103474,kg -a52fb5a7-5be1-3723-9b3f-fe9af2ca8bd0,SESCO,II.1.1,Santa Fe,AR-S,annual,2010,naphtha combustion consumption by freight transport,0.076897513,TJ,CO2,73300.0,kg/TJ,5636.5877029,kg -27ec69c1-8da8-3754-9748-908afccd41b0,SESCO,II.1.1,Santa Fe,AR-S,annual,2010,naphtha combustion consumption by freight transport,0.076897513,TJ,CH4,3.0,kg/TJ,0.230692539,kg -bfd0f2f0-bc9a-3943-be1c-8af5ed564a46,SESCO,II.1.1,Santa Fe,AR-S,annual,2010,naphtha combustion consumption by freight transport,0.076897513,TJ,N2O,0.6,kg/TJ,0.0461385078,kg -e9745cbf-25af-3583-9e7e-f4724ed8a881,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,naphtha combustion consumption by freight transport,4.3989407,TJ,CO2,73300.0,kg/TJ,322442.35331,kg -ad49f1dd-7de3-3695-aa06-043d26ac9a1c,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,naphtha combustion consumption by freight transport,4.3989407,TJ,CH4,3.0,kg/TJ,13.196822099999999,kg -a282be36-e3ed-31f6-b9cb-9b109ff2da6d,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,naphtha combustion consumption by freight transport,4.3989407,TJ,N2O,0.6,kg/TJ,2.6393644199999997,kg -e8fce2a0-3381-372f-bd3d-fa51b98df7d1,SESCO,II.1.1,Capital Federal,AR-C,annual,2010,naphtha combustion consumption by freight transport,15.567884716999998,TJ,CO2,73300.0,kg/TJ,1141125.9497560998,kg -9586a83e-1414-368c-85a9-55c923b1e134,SESCO,II.1.1,Capital Federal,AR-C,annual,2010,naphtha combustion consumption by freight transport,15.567884716999998,TJ,CH4,3.0,kg/TJ,46.703654150999995,kg -ed3d5175-9e85-3821-91e3-fadd960bcd71,SESCO,II.1.1,Capital Federal,AR-C,annual,2010,naphtha combustion consumption by freight transport,15.567884716999998,TJ,N2O,0.6,kg/TJ,9.340730830199998,kg -43f8f7ac-5af8-335e-8ec9-7b150c044e48,SESCO,II.1.1,Corrientes,AR-W,annual,2010,naphtha combustion consumption by freight transport,0.008730722,TJ,CO2,73300.0,kg/TJ,639.9619226,kg -f58ff51e-cc64-3bbf-9d09-fbe6867e32b1,SESCO,II.1.1,Corrientes,AR-W,annual,2010,naphtha combustion consumption by freight transport,0.008730722,TJ,CH4,3.0,kg/TJ,0.026192166,kg -ca28e352-be3b-3064-8827-9c5cd59c98da,SESCO,II.1.1,Corrientes,AR-W,annual,2010,naphtha combustion consumption by freight transport,0.008730722,TJ,N2O,0.6,kg/TJ,0.0052384332,kg -7d32cc48-da89-35a8-9ae0-46bb3817eab2,SESCO,II.1.1,Córdoba,AR-X,annual,2010,naphtha combustion consumption by freight transport,0.46138507799999995,TJ,CO2,73300.0,kg/TJ,33819.526217399994,kg -201191d8-694e-3d09-bd5a-7fc7099334ab,SESCO,II.1.1,Córdoba,AR-X,annual,2010,naphtha combustion consumption by freight transport,0.46138507799999995,TJ,CH4,3.0,kg/TJ,1.3841552339999998,kg -705c53e4-b539-335c-923e-f28143e02127,SESCO,II.1.1,Córdoba,AR-X,annual,2010,naphtha combustion consumption by freight transport,0.46138507799999995,TJ,N2O,0.6,kg/TJ,0.2768310468,kg -b33d4660-c828-332a-b4c5-11e8016fc7c0,SESCO,II.1.1,Entre Rios,AR-E,annual,2010,naphtha combustion consumption by freight transport,35.841628592000006,TJ,CO2,73300.0,kg/TJ,2627191.3757936005,kg -6411fe08-3803-3756-a7a0-fda1bc61e4b2,SESCO,II.1.1,Entre Rios,AR-E,annual,2010,naphtha combustion consumption by freight transport,35.841628592000006,TJ,CH4,3.0,kg/TJ,107.52488577600002,kg -cda4e925-d000-3876-a746-1c7afff26761,SESCO,II.1.1,Entre Rios,AR-E,annual,2010,naphtha combustion consumption by freight transport,35.841628592000006,TJ,N2O,0.6,kg/TJ,21.504977155200002,kg -fedf40cc-4bb0-380d-8788-9ea92a626dc8,SESCO,II.1.1,Misiones,AR-N,annual,2010,naphtha combustion consumption by freight transport,0.022162602,TJ,CO2,73300.0,kg/TJ,1624.5187266,kg -1107c831-9f53-32ff-a453-6cab65af1e98,SESCO,II.1.1,Misiones,AR-N,annual,2010,naphtha combustion consumption by freight transport,0.022162602,TJ,CH4,3.0,kg/TJ,0.066487806,kg -f6aa657c-d044-3b48-a0a3-d5c868b6f29f,SESCO,II.1.1,Misiones,AR-N,annual,2010,naphtha combustion consumption by freight transport,0.022162602,TJ,N2O,0.6,kg/TJ,0.0132975612,kg -a18e7510-f47c-3803-8a87-bfe4e1e5dd69,SESCO,II.1.1,Salta,AR-A,annual,2010,naphtha combustion consumption by freight transport,1.012763752,TJ,CO2,73300.0,kg/TJ,74235.58302159999,kg -b8d50a7b-cf32-3feb-9735-8cd68ac3afd3,SESCO,II.1.1,Salta,AR-A,annual,2010,naphtha combustion consumption by freight transport,1.012763752,TJ,CH4,3.0,kg/TJ,3.038291256,kg -b7230195-7428-3116-bf83-4ab08af7ee0b,SESCO,II.1.1,Salta,AR-A,annual,2010,naphtha combustion consumption by freight transport,1.012763752,TJ,N2O,0.6,kg/TJ,0.6076582511999999,kg -55321016-25fd-375f-8a64-d60582ec9873,SESCO,II.1.1,San Luis,AR-D,annual,2010,naphtha combustion consumption by freight transport,0.06883838499999999,TJ,CO2,73300.0,kg/TJ,5045.853620499999,kg -9ee98f25-8d24-38e2-8b2d-c66d3de11d42,SESCO,II.1.1,San Luis,AR-D,annual,2010,naphtha combustion consumption by freight transport,0.06883838499999999,TJ,CH4,3.0,kg/TJ,0.20651515499999995,kg -622c5bb0-da96-310a-9db6-34cfc3231eb9,SESCO,II.1.1,San Luis,AR-D,annual,2010,naphtha combustion consumption by freight transport,0.06883838499999999,TJ,N2O,0.6,kg/TJ,0.04130303099999999,kg -a9213fdc-ea76-3c3b-b2dc-6322a72eeff4,SESCO,II.1.1,Santa Fe,AR-S,annual,2010,naphtha combustion consumption by freight transport,0.762594987,TJ,CO2,73300.0,kg/TJ,55898.212547099996,kg -d86241b3-1363-344f-a146-603740a2747c,SESCO,II.1.1,Santa Fe,AR-S,annual,2010,naphtha combustion consumption by freight transport,0.762594987,TJ,CH4,3.0,kg/TJ,2.287784961,kg -4d32b855-40be-382a-a7e6-077cdee8ec40,SESCO,II.1.1,Santa Fe,AR-S,annual,2010,naphtha combustion consumption by freight transport,0.762594987,TJ,N2O,0.6,kg/TJ,0.45755699219999996,kg -c9ae0eff-3876-3011-8500-1afbdec10ad1,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2010,naphtha combustion consumption by freight transport,0.029550135999999998,TJ,CO2,73300.0,kg/TJ,2166.0249688,kg -fc9570b3-b2b1-3aeb-897d-b401dea8211a,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2010,naphtha combustion consumption by freight transport,0.029550135999999998,TJ,CH4,3.0,kg/TJ,0.08865040799999999,kg -508d72fe-2175-3e91-a59c-530f287457cd,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2010,naphtha combustion consumption by freight transport,0.029550135999999998,TJ,N2O,0.6,kg/TJ,0.0177300816,kg -e2bd17c3-24b3-3455-929f-736c4872cb33,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2010,naphtha combustion consumption by freight transport,0.018133037999999997,TJ,CO2,73300.0,kg/TJ,1329.1516853999997,kg -34267336-59ef-31c8-89f2-5d09cf21479c,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2010,naphtha combustion consumption by freight transport,0.018133037999999997,TJ,CH4,3.0,kg/TJ,0.05439911399999999,kg -ae62ce1b-5daf-3ff1-8edf-cad6a74cb0c6,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2010,naphtha combustion consumption by freight transport,0.018133037999999997,TJ,N2O,0.6,kg/TJ,0.010879822799999998,kg -b28b729f-84c3-3d07-868d-d15641021321,SESCO,II.1.1,Tucuman,AR-T,annual,2010,naphtha combustion consumption by freight transport,0.15144444699999998,TJ,CO2,73300.0,kg/TJ,11100.877965099999,kg -2568b0c3-48cc-35f3-8316-d8366f118b0e,SESCO,II.1.1,Tucuman,AR-T,annual,2010,naphtha combustion consumption by freight transport,0.15144444699999998,TJ,CH4,3.0,kg/TJ,0.45433334099999995,kg -ef1d9ec6-af3f-32bf-a26d-c00e23eb9582,SESCO,II.1.1,Tucuman,AR-T,annual,2010,naphtha combustion consumption by freight transport,0.15144444699999998,TJ,N2O,0.6,kg/TJ,0.09086666819999999,kg -bbdb0a3a-cde6-33ca-b268-afaa40a0936b,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,naphtha combustion consumption by freight transport,3.152126439,TJ,CO2,73300.0,kg/TJ,231050.8679787,kg -6f945280-a055-3294-bd58-1400f9b6aa2e,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,naphtha combustion consumption by freight transport,3.152126439,TJ,CH4,3.0,kg/TJ,9.456379317,kg -7e57dc9d-ae86-3e01-87a4-e8bd04986a85,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,naphtha combustion consumption by freight transport,3.152126439,TJ,N2O,0.6,kg/TJ,1.8912758633999998,kg -2f72d7a3-43ad-3f81-b84b-58626f6b448c,SESCO,II.1.1,Capital Federal,AR-C,annual,2010,naphtha combustion consumption by freight transport,15.996361688999999,TJ,CO2,73300.0,kg/TJ,1172533.3118037,kg -7999d89e-85c6-31b7-b4f4-6b432233ae8b,SESCO,II.1.1,Capital Federal,AR-C,annual,2010,naphtha combustion consumption by freight transport,15.996361688999999,TJ,CH4,3.0,kg/TJ,47.989085067,kg -3ed9e5ce-62a9-3b72-9079-99832e543e88,SESCO,II.1.1,Capital Federal,AR-C,annual,2010,naphtha combustion consumption by freight transport,15.996361688999999,TJ,N2O,0.6,kg/TJ,9.597817013399998,kg -ec8d705c-ad1b-3291-81f2-e9b5c3361efd,SESCO,II.1.1,Chaco,AR-H,annual,2010,naphtha combustion consumption by freight transport,0.011417098,TJ,CO2,73300.0,kg/TJ,836.8732834,kg -dd7dc02c-1739-3b96-ba4f-c397c8637e4f,SESCO,II.1.1,Chaco,AR-H,annual,2010,naphtha combustion consumption by freight transport,0.011417098,TJ,CH4,3.0,kg/TJ,0.034251294,kg -b1496e72-0663-3254-92e5-75544c55a430,SESCO,II.1.1,Chaco,AR-H,annual,2010,naphtha combustion consumption by freight transport,0.011417098,TJ,N2O,0.6,kg/TJ,0.0068502588,kg -3a106cf0-6864-3acd-88af-f9669d35c689,SESCO,II.1.1,Corrientes,AR-W,annual,2010,naphtha combustion consumption by freight transport,0.051376940999999995,TJ,CO2,73300.0,kg/TJ,3765.9297752999996,kg -5afb5e19-8d9d-3ec6-893a-86c901366c2d,SESCO,II.1.1,Corrientes,AR-W,annual,2010,naphtha combustion consumption by freight transport,0.051376940999999995,TJ,CH4,3.0,kg/TJ,0.15413082299999997,kg -920ec3c0-5a5b-3f1b-b53c-cb909fe67c1b,SESCO,II.1.1,Corrientes,AR-W,annual,2010,naphtha combustion consumption by freight transport,0.051376940999999995,TJ,N2O,0.6,kg/TJ,0.030826164599999997,kg -6cae6ebe-2a7b-3adf-9c70-c8cf2069fcef,SESCO,II.1.1,Córdoba,AR-X,annual,2010,naphtha combustion consumption by freight transport,0.2981877359999999,TJ,CO2,73300.0,kg/TJ,21857.161048799993,kg -90a77bc8-2430-3063-a588-9f83b4946535,SESCO,II.1.1,Córdoba,AR-X,annual,2010,naphtha combustion consumption by freight transport,0.2981877359999999,TJ,CH4,3.0,kg/TJ,0.8945632079999998,kg -21be30a3-f653-3099-bb87-84c043dc18db,SESCO,II.1.1,Córdoba,AR-X,annual,2010,naphtha combustion consumption by freight transport,0.2981877359999999,TJ,N2O,0.6,kg/TJ,0.17891264159999995,kg -ba0a51e2-d157-3986-a7fb-fe11ff3e9599,SESCO,II.1.1,Entre Rios,AR-E,annual,2010,naphtha combustion consumption by freight transport,1.113167055,TJ,CO2,73300.0,kg/TJ,81595.14513149999,kg -cc276340-36b2-3a45-9a54-a680cbe6c943,SESCO,II.1.1,Entre Rios,AR-E,annual,2010,naphtha combustion consumption by freight transport,1.113167055,TJ,CH4,3.0,kg/TJ,3.3395011649999997,kg -335f2e69-13b2-3281-b347-b5c04db10116,SESCO,II.1.1,Entre Rios,AR-E,annual,2010,naphtha combustion consumption by freight transport,1.113167055,TJ,N2O,0.6,kg/TJ,0.6679002329999999,kg -aca2c31a-387b-3b5d-ae72-dd2ea364f928,SESCO,II.1.1,Misiones,AR-N,annual,2010,naphtha combustion consumption by freight transport,0.023841586999999997,TJ,CO2,73300.0,kg/TJ,1747.5883270999998,kg -d569858d-05c7-380d-b066-495b7af37faf,SESCO,II.1.1,Misiones,AR-N,annual,2010,naphtha combustion consumption by freight transport,0.023841586999999997,TJ,CH4,3.0,kg/TJ,0.07152476099999999,kg -ef6b543e-97af-3127-b1c1-630924e4c371,SESCO,II.1.1,Misiones,AR-N,annual,2010,naphtha combustion consumption by freight transport,0.023841586999999997,TJ,N2O,0.6,kg/TJ,0.014304952199999998,kg -7c67438a-b996-34a0-94d7-f51e8e6f6084,SESCO,II.1.1,San Luis,AR-D,annual,2010,naphtha combustion consumption by freight transport,0.03022173,TJ,CO2,73300.0,kg/TJ,2215.252809,kg -9aa2ce30-86bf-3e59-a24c-0c6bbc00768c,SESCO,II.1.1,San Luis,AR-D,annual,2010,naphtha combustion consumption by freight transport,0.03022173,TJ,CH4,3.0,kg/TJ,0.09066518999999999,kg -46ddd026-1407-3678-852d-7463c8b7aa57,SESCO,II.1.1,San Luis,AR-D,annual,2010,naphtha combustion consumption by freight transport,0.03022173,TJ,N2O,0.6,kg/TJ,0.018133037999999997,kg -dbe22e38-4de4-3978-ba27-edf53950d285,SESCO,II.1.1,Santa Fe,AR-S,annual,2010,naphtha combustion consumption by freight transport,0.2810620889999999,TJ,CO2,73300.0,kg/TJ,20601.85112369999,kg -4591414e-52c3-3dfd-bf01-ca56a39c8289,SESCO,II.1.1,Santa Fe,AR-S,annual,2010,naphtha combustion consumption by freight transport,0.2810620889999999,TJ,CH4,3.0,kg/TJ,0.8431862669999997,kg -57f0c1a5-4625-3a69-aa81-f2f289d1efd4,SESCO,II.1.1,Santa Fe,AR-S,annual,2010,naphtha combustion consumption by freight transport,0.2810620889999999,TJ,N2O,0.6,kg/TJ,0.16863725339999994,kg -59b51742-9a61-3fa7-a7e5-b4c26bb64e64,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2010,naphtha combustion consumption by freight transport,0.185695741,TJ,CO2,73300.0,kg/TJ,13611.4978153,kg -2963c060-d4f0-33c0-bd25-c68cd7c52382,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2010,naphtha combustion consumption by freight transport,0.185695741,TJ,CH4,3.0,kg/TJ,0.557087223,kg -e9fa3444-b83a-3d66-a2da-4cf37a187755,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2010,naphtha combustion consumption by freight transport,0.185695741,TJ,N2O,0.6,kg/TJ,0.1114174446,kg -04ec98de-2ca2-3548-9aa5-2e9768679ca3,SESCO,II.1.1,Tucuman,AR-T,annual,2010,naphtha combustion consumption by freight transport,0.07286794899999999,TJ,CO2,73300.0,kg/TJ,5341.220661699999,kg -d873c3db-6d70-39cc-be6f-7033b4d055c8,SESCO,II.1.1,Tucuman,AR-T,annual,2010,naphtha combustion consumption by freight transport,0.07286794899999999,TJ,CH4,3.0,kg/TJ,0.21860384699999996,kg -fb4de40d-9975-3fe0-8cb3-758870d0915f,SESCO,II.1.1,Tucuman,AR-T,annual,2010,naphtha combustion consumption by freight transport,0.07286794899999999,TJ,N2O,0.6,kg/TJ,0.04372076939999999,kg -19450e44-3b14-3afb-a545-33da2ebb4b7e,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,naphtha combustion consumption by public passenger transport,0.20450037299999996,TJ,CO2,73300.0,kg/TJ,14989.877340899997,kg -8c64dea4-2ee5-353d-aee6-83b157513513,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,naphtha combustion consumption by public passenger transport,0.20450037299999996,TJ,CH4,3.0,kg/TJ,0.6135011189999999,kg -6bc5f8f0-d48c-3824-9123-c380feb7c1ef,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,naphtha combustion consumption by public passenger transport,0.20450037299999996,TJ,N2O,0.6,kg/TJ,0.12270022379999997,kg -6a310463-4582-3ea0-bae2-ee6a23517c72,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,naphtha combustion consumption by public passenger transport,142.555564613,TJ,CO2,73300.0,kg/TJ,10449322.8861329,kg -6786e7a5-2e05-3af2-9f30-1ba0fc96b87f,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,naphtha combustion consumption by public passenger transport,142.555564613,TJ,CH4,3.0,kg/TJ,427.666693839,kg -b4d63b76-69d2-33bc-8b8c-a9fd60656978,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,naphtha combustion consumption by public passenger transport,142.555564613,TJ,N2O,0.6,kg/TJ,85.5333387678,kg -89037811-0d32-3056-84e6-89f72338491c,SESCO,II.1.1,Capital Federal,AR-C,annual,2010,naphtha combustion consumption by public passenger transport,0.024848977999999997,TJ,CO2,73300.0,kg/TJ,1821.4300873999998,kg -40638139-f4c1-35ed-b981-6ab687ffb849,SESCO,II.1.1,Capital Federal,AR-C,annual,2010,naphtha combustion consumption by public passenger transport,0.024848977999999997,TJ,CH4,3.0,kg/TJ,0.074546934,kg -459b90dc-1ef2-3696-a71f-c38095fd83a8,SESCO,II.1.1,Capital Federal,AR-C,annual,2010,naphtha combustion consumption by public passenger transport,0.024848977999999997,TJ,N2O,0.6,kg/TJ,0.014909386799999997,kg -684fb8df-fde0-36f4-af0d-dd150560d914,SESCO,II.1.1,Córdoba,AR-X,annual,2010,naphtha combustion consumption by public passenger transport,0.03022173,TJ,CO2,73300.0,kg/TJ,2215.252809,kg -b7c8cfaa-c05b-32cc-9337-3a8824fddecf,SESCO,II.1.1,Córdoba,AR-X,annual,2010,naphtha combustion consumption by public passenger transport,0.03022173,TJ,CH4,3.0,kg/TJ,0.09066518999999999,kg -5f427d02-9e4d-351b-82a4-dbdb43f0e799,SESCO,II.1.1,Córdoba,AR-X,annual,2010,naphtha combustion consumption by public passenger transport,0.03022173,TJ,N2O,0.6,kg/TJ,0.018133037999999997,kg -e45392e3-b160-3acd-8abf-0d7cd1db216a,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,naphtha combustion consumption by public passenger transport,31.980970482999997,TJ,CO2,73300.0,kg/TJ,2344205.1364038996,kg -0af0e7ea-3234-37e0-a5ce-2e41e2c75f95,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,naphtha combustion consumption by public passenger transport,31.980970482999997,TJ,CH4,3.0,kg/TJ,95.942911449,kg -b6be48ae-2c5f-3fa5-bc2a-dc31882b261e,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,naphtha combustion consumption by public passenger transport,31.980970482999997,TJ,N2O,0.6,kg/TJ,19.188582289799996,kg -ec50dbb0-f89c-3b94-b8da-41af007e3f46,SESCO,II.1.1,Capital Federal,AR-C,annual,2010,naphtha combustion consumption by public passenger transport,0.42209682899999995,TJ,CO2,73300.0,kg/TJ,30939.697565699997,kg -edc8babe-0258-3013-bf0f-39a2cff2f36f,SESCO,II.1.1,Capital Federal,AR-C,annual,2010,naphtha combustion consumption by public passenger transport,0.42209682899999995,TJ,CH4,3.0,kg/TJ,1.2662904869999998,kg -32a486ab-9a28-3aa5-9ed9-cf256fae92b7,SESCO,II.1.1,Capital Federal,AR-C,annual,2010,naphtha combustion consumption by public passenger transport,0.42209682899999995,TJ,N2O,0.6,kg/TJ,0.25325809739999994,kg -d39bac5a-43fb-3ae9-a693-026907ebfad8,SESCO,II.1.1,Córdoba,AR-X,annual,2010,naphtha combustion consumption by public passenger transport,0.06950997899999999,TJ,CO2,73300.0,kg/TJ,5095.081460699999,kg -f878dafa-c85f-3216-a061-5e2bedd1c266,SESCO,II.1.1,Córdoba,AR-X,annual,2010,naphtha combustion consumption by public passenger transport,0.06950997899999999,TJ,CH4,3.0,kg/TJ,0.20852993699999994,kg -0f524179-d24d-35a5-8bbd-82d66c267fda,SESCO,II.1.1,Córdoba,AR-X,annual,2010,naphtha combustion consumption by public passenger transport,0.06950997899999999,TJ,N2O,0.6,kg/TJ,0.04170598739999999,kg -d3eb464c-ffc5-3a16-8890-2bb78013df28,SESCO,II.5.1,Buenos Aires,AR-B,annual,2010,naphtha combustion consumption by agriculture machines,6.9168809248,TJ,CO2,73300.0,kg/TJ,507007.37178784,kg -83c92526-c3c2-3876-9977-c93be78ec017,SESCO,II.5.1,Buenos Aires,AR-B,annual,2010,naphtha combustion consumption by agriculture machines,6.9168809248,TJ,CH4,3.0,kg/TJ,20.7506427744,kg -2dfe80dc-25af-326b-969b-3e35daf4d161,SESCO,II.5.1,Buenos Aires,AR-B,annual,2010,naphtha combustion consumption by agriculture machines,6.9168809248,TJ,N2O,0.6,kg/TJ,4.15012855488,kg -01e92027-122a-3f35-a639-b81b990f22b5,SESCO,II.5.1,Córdoba,AR-X,annual,2010,naphtha combustion consumption by agriculture machines,1.2935236236999998,TJ,CO2,73300.0,kg/TJ,94815.28161720998,kg -2ab2b216-9db5-3624-a8d2-e494dded0a67,SESCO,II.5.1,Córdoba,AR-X,annual,2010,naphtha combustion consumption by agriculture machines,1.2935236236999998,TJ,CH4,3.0,kg/TJ,3.8805708710999998,kg -b8db8b58-49f0-39f0-877c-f33d993a8c42,SESCO,II.5.1,Córdoba,AR-X,annual,2010,naphtha combustion consumption by agriculture machines,1.2935236236999998,TJ,N2O,0.6,kg/TJ,0.7761141742199998,kg -276e400e-a111-349f-a2e5-5c8a33b6d5cb,SESCO,II.5.1,La Pampa,AR-L,annual,2010,naphtha combustion consumption by agriculture machines,0.43804718649999996,TJ,CO2,73300.0,kg/TJ,32108.85877045,kg -1efee6be-693c-3a17-8287-997366514066,SESCO,II.5.1,La Pampa,AR-L,annual,2010,naphtha combustion consumption by agriculture machines,0.43804718649999996,TJ,CH4,3.0,kg/TJ,1.3141415595,kg -9d690e8a-8493-3d43-a5b0-30c8da344724,SESCO,II.5.1,La Pampa,AR-L,annual,2010,naphtha combustion consumption by agriculture machines,0.43804718649999996,TJ,N2O,0.6,kg/TJ,0.26282831189999994,kg -7ef15455-b8f9-3a7a-9b74-e4f6aa3c6a45,SESCO,II.5.1,San Luis,AR-D,annual,2010,naphtha combustion consumption by agriculture machines,12.558136205999999,TJ,CO2,73300.0,kg/TJ,920511.3838997999,kg -18c1d958-442f-3258-a501-3b6423eb7f05,SESCO,II.5.1,San Luis,AR-D,annual,2010,naphtha combustion consumption by agriculture machines,12.558136205999999,TJ,CH4,3.0,kg/TJ,37.674408617999994,kg -7e2e31fe-6e0d-3bcd-aa57-10dfeb05b749,SESCO,II.5.1,San Luis,AR-D,annual,2010,naphtha combustion consumption by agriculture machines,12.558136205999999,TJ,N2O,0.6,kg/TJ,7.534881723599999,kg -93ec917f-fa1b-3161-a600-5d324e3b3d8c,SESCO,II.5.1,Santa Fe,AR-S,annual,2010,naphtha combustion consumption by agriculture machines,2.1151853029999996,TJ,CO2,73300.0,kg/TJ,155043.0827099,kg -013ed95e-d6dc-3060-bcaa-96c2c84fa90e,SESCO,II.5.1,Santa Fe,AR-S,annual,2010,naphtha combustion consumption by agriculture machines,2.1151853029999996,TJ,CH4,3.0,kg/TJ,6.345555908999999,kg -36f93abd-7d06-3823-9784-6f8828461394,SESCO,II.5.1,Santa Fe,AR-S,annual,2010,naphtha combustion consumption by agriculture machines,2.1151853029999996,TJ,N2O,0.6,kg/TJ,1.2691111817999998,kg -d074524c-1eb9-3629-9a2f-7392a951fd48,SESCO,II.5.1,Santiago del Estero,AR-G,annual,2010,naphtha combustion consumption by agriculture machines,6.870406619999999,TJ,CO2,73300.0,kg/TJ,503600.80524599995,kg -4b1ee94c-0bc4-39ae-8618-30833c022379,SESCO,II.5.1,Santiago del Estero,AR-G,annual,2010,naphtha combustion consumption by agriculture machines,6.870406619999999,TJ,CH4,3.0,kg/TJ,20.61121986,kg -46273899-ceca-397a-807c-f223989ce2f7,SESCO,II.5.1,Santiago del Estero,AR-G,annual,2010,naphtha combustion consumption by agriculture machines,6.870406619999999,TJ,N2O,0.6,kg/TJ,4.122243971999999,kg -c61c30f6-2644-3209-bca2-8360f2a31bd2,SESCO,II.5.1,Santa Fe,AR-S,annual,2010,naphtha combustion consumption by agriculture machines,0.8263628372999999,TJ,CO2,73300.0,kg/TJ,60572.395974089995,kg -c84b3747-091f-306e-b9aa-f7f4745cb228,SESCO,II.5.1,Santa Fe,AR-S,annual,2010,naphtha combustion consumption by agriculture machines,0.8263628372999999,TJ,CH4,3.0,kg/TJ,2.4790885118999997,kg -b705d581-50e7-3497-9630-7bf4e91626dc,SESCO,II.5.1,Santa Fe,AR-S,annual,2010,naphtha combustion consumption by agriculture machines,0.8263628372999999,TJ,N2O,0.6,kg/TJ,0.49581770237999995,kg -f6d1759e-65b2-36c2-b96b-1011b57339e2,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,naphtha combustion consumption by to the public,644.3540466208999,TJ,CO2,73300.0,kg/TJ,47231151.61731196,kg -17ceba55-3664-3120-9ca5-f92ceb974065,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,naphtha combustion consumption by to the public,644.3540466208999,TJ,CH4,3.0,kg/TJ,1933.0621398626997,kg -503da9fa-be60-3a00-86f4-fbce95fa19da,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,naphtha combustion consumption by to the public,644.3540466208999,TJ,N2O,0.6,kg/TJ,386.61242797253993,kg -666d63cc-02bd-31fd-9748-1069e615276a,SESCO,II.1.1,Capital Federal,AR-C,annual,2010,naphtha combustion consumption by to the public,0.49459540129999996,TJ,CO2,73300.0,kg/TJ,36253.84291529,kg -ea88abed-33b5-32b5-928c-1413919d38d6,SESCO,II.1.1,Capital Federal,AR-C,annual,2010,naphtha combustion consumption by to the public,0.49459540129999996,TJ,CH4,3.0,kg/TJ,1.4837862038999998,kg -85d94753-706b-31f2-a65b-867a7aed814f,SESCO,II.1.1,Capital Federal,AR-C,annual,2010,naphtha combustion consumption by to the public,0.49459540129999996,TJ,N2O,0.6,kg/TJ,0.29675724078,kg -52750e0f-692e-38c6-a6c5-f199480424e8,SESCO,II.1.1,Chaco,AR-H,annual,2010,naphtha combustion consumption by to the public,12.146314765199998,TJ,CO2,73300.0,kg/TJ,890324.8722891598,kg -9b7d70e2-a833-361f-bc4f-0ff470c499ac,SESCO,II.1.1,Chaco,AR-H,annual,2010,naphtha combustion consumption by to the public,12.146314765199998,TJ,CH4,3.0,kg/TJ,36.438944295599995,kg -ee8e277f-c7ad-39f5-8e20-6515e3383bcb,SESCO,II.1.1,Chaco,AR-H,annual,2010,naphtha combustion consumption by to the public,12.146314765199998,TJ,N2O,0.6,kg/TJ,7.287788859119998,kg -1960582d-1162-33f7-bc4b-62e639b00383,SESCO,II.1.1,Chubut,AR-U,annual,2010,naphtha combustion consumption by to the public,114.26738731869999,TJ,CO2,73300.0,kg/TJ,8375799.490460709,kg -02808f9b-2c19-3287-b28a-38888aa2db0e,SESCO,II.1.1,Chubut,AR-U,annual,2010,naphtha combustion consumption by to the public,114.26738731869999,TJ,CH4,3.0,kg/TJ,342.80216195609995,kg -a949b0c3-9f55-3cd6-b98c-a4c8b2942df0,SESCO,II.1.1,Chubut,AR-U,annual,2010,naphtha combustion consumption by to the public,114.26738731869999,TJ,N2O,0.6,kg/TJ,68.56043239121999,kg -2c8b08f0-bfcb-3efc-a7c2-0b21235c1520,SESCO,II.1.1,Corrientes,AR-W,annual,2010,naphtha combustion consumption by to the public,13.576574927299998,TJ,CO2,73300.0,kg/TJ,995162.9421710898,kg -4d616296-e94b-3c13-b7e1-c9acca82a040,SESCO,II.1.1,Corrientes,AR-W,annual,2010,naphtha combustion consumption by to the public,13.576574927299998,TJ,CH4,3.0,kg/TJ,40.72972478189999,kg -b9c98edb-1026-3d5a-bf3c-9448a50a622a,SESCO,II.1.1,Corrientes,AR-W,annual,2010,naphtha combustion consumption by to the public,13.576574927299998,TJ,N2O,0.6,kg/TJ,8.145944956379997,kg -b3451b14-85ae-3e1f-a068-ba82e678bf7b,SESCO,II.1.1,Entre Rios,AR-E,annual,2010,naphtha combustion consumption by to the public,52.27338467119999,TJ,CO2,73300.0,kg/TJ,3831639.0963989594,kg -8a7fde9a-d365-3158-b45d-ba3e02a9c5d9,SESCO,II.1.1,Entre Rios,AR-E,annual,2010,naphtha combustion consumption by to the public,52.27338467119999,TJ,CH4,3.0,kg/TJ,156.82015401359996,kg -b187c0db-bda5-390d-99c1-8c1c84458ac7,SESCO,II.1.1,Entre Rios,AR-E,annual,2010,naphtha combustion consumption by to the public,52.27338467119999,TJ,N2O,0.6,kg/TJ,31.364030802719995,kg -a552e574-4b5f-3aa7-b4da-6a56ee4a0b85,SESCO,II.1.1,La Pampa,AR-L,annual,2010,naphtha combustion consumption by to the public,20.029216499599997,TJ,CO2,73300.0,kg/TJ,1468141.5694206797,kg -1a81f05e-b1c5-380f-a82a-e042953c384c,SESCO,II.1.1,La Pampa,AR-L,annual,2010,naphtha combustion consumption by to the public,20.029216499599997,TJ,CH4,3.0,kg/TJ,60.08764949879999,kg -9b260b20-ffa5-3c88-9067-dcb84ebe2fa9,SESCO,II.1.1,La Pampa,AR-L,annual,2010,naphtha combustion consumption by to the public,20.029216499599997,TJ,N2O,0.6,kg/TJ,12.017529899759998,kg -1ff27852-c643-3489-a3b8-9e32041f28aa,SESCO,II.1.1,Misiones,AR-N,annual,2010,naphtha combustion consumption by to the public,41.0162939417,TJ,CO2,73300.0,kg/TJ,3006494.34592661,kg -2ba9bcb3-3dc7-35bb-978b-11d570750c70,SESCO,II.1.1,Misiones,AR-N,annual,2010,naphtha combustion consumption by to the public,41.0162939417,TJ,CH4,3.0,kg/TJ,123.0488818251,kg -4aa305b9-f0fe-3b0a-874e-61708ec5a981,SESCO,II.1.1,Misiones,AR-N,annual,2010,naphtha combustion consumption by to the public,41.0162939417,TJ,N2O,0.6,kg/TJ,24.60977636502,kg -04fe5b1f-ea10-30de-8d7f-bf8bcd750080,SESCO,II.1.1,Neuquén,AR-Q,annual,2010,naphtha combustion consumption by to the public,58.81534824549999,TJ,CO2,73300.0,kg/TJ,4311165.0263951495,kg -3c2db6a5-948d-3573-82dd-3373f6ceda52,SESCO,II.1.1,Neuquén,AR-Q,annual,2010,naphtha combustion consumption by to the public,58.81534824549999,TJ,CH4,3.0,kg/TJ,176.44604473649997,kg -86e96882-9cc6-3e06-942d-c3058c8d984c,SESCO,II.1.1,Neuquén,AR-Q,annual,2010,naphtha combustion consumption by to the public,58.81534824549999,TJ,N2O,0.6,kg/TJ,35.28920894729999,kg -43638a41-522c-3bd2-9b3f-1d2b8c76b9ec,SESCO,II.1.1,Rio Negro,AR-R,annual,2010,naphtha combustion consumption by to the public,202.03333960039998,TJ,CO2,73300.0,kg/TJ,14809043.792709319,kg -45714e1a-7687-3607-b20f-3facb6e24eff,SESCO,II.1.1,Rio Negro,AR-R,annual,2010,naphtha combustion consumption by to the public,202.03333960039998,TJ,CH4,3.0,kg/TJ,606.1000188011999,kg -a10732c2-4e42-3691-871e-b3dba4e950b1,SESCO,II.1.1,Rio Negro,AR-R,annual,2010,naphtha combustion consumption by to the public,202.03333960039998,TJ,N2O,0.6,kg/TJ,121.22000376023999,kg -7a8e1fa3-5aab-3093-b31a-ca830ce77675,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2010,naphtha combustion consumption by to the public,37.80990270749999,TJ,CO2,73300.0,kg/TJ,2771465.868459749,kg -b43ec4cb-7857-35ba-9472-8ac786c861a7,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2010,naphtha combustion consumption by to the public,37.80990270749999,TJ,CH4,3.0,kg/TJ,113.42970812249996,kg -f26b07bf-f698-39e0-8e49-33e1fbedf8c2,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2010,naphtha combustion consumption by to the public,37.80990270749999,TJ,N2O,0.6,kg/TJ,22.685941624499993,kg -9cc12e31-3d3c-3b18-b7a3-901bce4f5b90,SESCO,II.1.1,Santa Fe,AR-S,annual,2010,naphtha combustion consumption by to the public,37.7641671561,TJ,CO2,73300.0,kg/TJ,2768113.45254213,kg -389a88ce-229c-3ff9-ad93-8cb3b082dfa3,SESCO,II.1.1,Santa Fe,AR-S,annual,2010,naphtha combustion consumption by to the public,37.7641671561,TJ,CH4,3.0,kg/TJ,113.2925014683,kg -c4707624-e059-3ddf-9378-5b8f488f77e6,SESCO,II.1.1,Santa Fe,AR-S,annual,2010,naphtha combustion consumption by to the public,37.7641671561,TJ,N2O,0.6,kg/TJ,22.65850029366,kg -1a28963c-1945-305e-8c7b-81941344e48c,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,naphtha combustion consumption by to the public,6547.4335731112,TJ,CO2,73300.0,kg/TJ,479926880.90905094,kg -cd62da81-b29b-3ced-90b8-ba2e351874b5,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,naphtha combustion consumption by to the public,6547.4335731112,TJ,CH4,3.0,kg/TJ,19642.300719333598,kg -b7a9d220-dad4-3ec5-8426-4fb0675637f5,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,naphtha combustion consumption by to the public,6547.4335731112,TJ,N2O,0.6,kg/TJ,3928.4601438667196,kg -1b51070c-daa3-3ac2-8160-ef2b3280b661,SESCO,II.1.1,Capital Federal,AR-C,annual,2010,naphtha combustion consumption by to the public,1062.7817561207,TJ,CO2,73300.0,kg/TJ,77901902.72364731,kg -f970c7b9-abbf-3fef-9820-56e4f075db9f,SESCO,II.1.1,Capital Federal,AR-C,annual,2010,naphtha combustion consumption by to the public,1062.7817561207,TJ,CH4,3.0,kg/TJ,3188.3452683621,kg -d984ac0c-7dd5-3a94-b7f8-c8980c6d8fd9,SESCO,II.1.1,Capital Federal,AR-C,annual,2010,naphtha combustion consumption by to the public,1062.7817561207,TJ,N2O,0.6,kg/TJ,637.66905367242,kg -0f3f911b-db57-3e71-aa37-7df4b4eb07e1,SESCO,II.1.1,Catamarca,AR-K,annual,2010,naphtha combustion consumption by to the public,168.2839613763,TJ,CO2,73300.0,kg/TJ,12335214.36888279,kg -45d2d3fa-2607-3bb8-8c3d-347b57e17a62,SESCO,II.1.1,Catamarca,AR-K,annual,2010,naphtha combustion consumption by to the public,168.2839613763,TJ,CH4,3.0,kg/TJ,504.8518841289,kg -16304275-8ebb-3e3c-bdda-cdccb1badbc8,SESCO,II.1.1,Catamarca,AR-K,annual,2010,naphtha combustion consumption by to the public,168.2839613763,TJ,N2O,0.6,kg/TJ,100.97037682578,kg -1e521e92-a439-36eb-b6c1-de7043eec2f8,SESCO,II.1.1,Chaco,AR-H,annual,2010,naphtha combustion consumption by to the public,384.8499571223999,TJ,CO2,73300.0,kg/TJ,28209501.857071914,kg -6bc6e436-97dd-369c-8462-3308a4b495ed,SESCO,II.1.1,Chaco,AR-H,annual,2010,naphtha combustion consumption by to the public,384.8499571223999,TJ,CH4,3.0,kg/TJ,1154.5498713671998,kg -12b6a3c2-6a1e-38e3-9cf6-eaa825aa94d6,SESCO,II.1.1,Chaco,AR-H,annual,2010,naphtha combustion consumption by to the public,384.8499571223999,TJ,N2O,0.6,kg/TJ,230.90997427343996,kg -737151d0-e052-3eba-a1b8-1de2cc92f460,SESCO,II.1.1,Chubut,AR-U,annual,2010,naphtha combustion consumption by to the public,1454.8262647071997,TJ,CO2,73300.0,kg/TJ,106638765.20303774,kg -9811d3e3-97b1-3ce1-a980-203807637af8,SESCO,II.1.1,Chubut,AR-U,annual,2010,naphtha combustion consumption by to the public,1454.8262647071997,TJ,CH4,3.0,kg/TJ,4364.478794121599,kg -fe0b91c8-fb0d-3121-a058-149486ac0643,SESCO,II.1.1,Chubut,AR-U,annual,2010,naphtha combustion consumption by to the public,1454.8262647071997,TJ,N2O,0.6,kg/TJ,872.8957588243198,kg -a826f09d-07b9-361b-892a-6d2886f1a52b,SESCO,II.1.1,Corrientes,AR-W,annual,2010,naphtha combustion consumption by to the public,438.51814179249993,TJ,CO2,73300.0,kg/TJ,32143379.793390244,kg -9401dc09-52cf-3d6b-aca0-9b0c2f12ba54,SESCO,II.1.1,Corrientes,AR-W,annual,2010,naphtha combustion consumption by to the public,438.51814179249993,TJ,CH4,3.0,kg/TJ,1315.5544253774997,kg -5bc541b1-58c8-3c51-bee6-45156c06cefe,SESCO,II.1.1,Corrientes,AR-W,annual,2010,naphtha combustion consumption by to the public,438.51814179249993,TJ,N2O,0.6,kg/TJ,263.11088507549994,kg -23179bd4-124e-30af-876c-ff158bf3f11e,SESCO,II.1.1,Córdoba,AR-X,annual,2010,naphtha combustion consumption by to the public,1641.2328543765,TJ,CO2,73300.0,kg/TJ,120302368.22579744,kg -e587e990-479f-376a-b95e-d61136b84daa,SESCO,II.1.1,Córdoba,AR-X,annual,2010,naphtha combustion consumption by to the public,1641.2328543765,TJ,CH4,3.0,kg/TJ,4923.6985631295,kg -9525d046-8551-355a-b8e3-3b01d0a88c39,SESCO,II.1.1,Córdoba,AR-X,annual,2010,naphtha combustion consumption by to the public,1641.2328543765,TJ,N2O,0.6,kg/TJ,984.7397126259,kg -b627a42b-7102-3cec-9ce5-7b65ab44fb97,SESCO,II.1.1,Entre Rios,AR-E,annual,2010,naphtha combustion consumption by to the public,562.6494988267999,TJ,CO2,73300.0,kg/TJ,41242208.26400443,kg -72cd1b94-2494-366e-9d16-b4761aeeb33c,SESCO,II.1.1,Entre Rios,AR-E,annual,2010,naphtha combustion consumption by to the public,562.6494988267999,TJ,CH4,3.0,kg/TJ,1687.9484964803996,kg -fa233bc0-d3c9-3dab-9b71-1f9c8353df4b,SESCO,II.1.1,Entre Rios,AR-E,annual,2010,naphtha combustion consumption by to the public,562.6494988267999,TJ,N2O,0.6,kg/TJ,337.5896992960799,kg -187275e7-dc06-3220-9d44-aadd1f7929c0,SESCO,II.1.1,Formosa,AR-P,annual,2010,naphtha combustion consumption by to the public,66.860876467,TJ,CO2,73300.0,kg/TJ,4900902.2450311,kg -33f73d21-d673-3a81-8898-924d9231dc14,SESCO,II.1.1,Formosa,AR-P,annual,2010,naphtha combustion consumption by to the public,66.860876467,TJ,CH4,3.0,kg/TJ,200.582629401,kg -78324f0c-dc3c-39a0-ba5e-6bd7ac9d6414,SESCO,II.1.1,Formosa,AR-P,annual,2010,naphtha combustion consumption by to the public,66.860876467,TJ,N2O,0.6,kg/TJ,40.116525880199994,kg -f060990a-aa0e-3984-bcee-451d67679710,SESCO,II.1.1,Jujuy,AR-Y,annual,2010,naphtha combustion consumption by to the public,19.770014795299996,TJ,CO2,73300.0,kg/TJ,1449142.0844954897,kg -8f2751d8-6be0-375e-8929-f644f5a345a7,SESCO,II.1.1,Jujuy,AR-Y,annual,2010,naphtha combustion consumption by to the public,19.770014795299996,TJ,CH4,3.0,kg/TJ,59.310044385899985,kg -95dd6fc9-51d3-3851-9042-6f83b667167a,SESCO,II.1.1,Jujuy,AR-Y,annual,2010,naphtha combustion consumption by to the public,19.770014795299996,TJ,N2O,0.6,kg/TJ,11.862008877179997,kg -b810d8de-42a6-303f-893e-78ff32f61871,SESCO,II.1.1,La Pampa,AR-L,annual,2010,naphtha combustion consumption by to the public,197.17371899609998,TJ,CO2,73300.0,kg/TJ,14452833.60241413,kg -cfbc7563-d286-3e9d-8f98-cb6f5df255c6,SESCO,II.1.1,La Pampa,AR-L,annual,2010,naphtha combustion consumption by to the public,197.17371899609998,TJ,CH4,3.0,kg/TJ,591.5211569882999,kg -a3390299-5eb7-3256-b86f-6e7b960d0aea,SESCO,II.1.1,La Pampa,AR-L,annual,2010,naphtha combustion consumption by to the public,197.17371899609998,TJ,N2O,0.6,kg/TJ,118.30423139765998,kg -e726501d-374a-3dfd-a10b-d90a4306cb60,SESCO,II.1.1,La Rioja,AR-F,annual,2010,naphtha combustion consumption by to the public,105.98565948739999,TJ,CO2,73300.0,kg/TJ,7768748.840426419,kg -24ae60f1-e882-3bcf-9ac4-436cb191fa1a,SESCO,II.1.1,La Rioja,AR-F,annual,2010,naphtha combustion consumption by to the public,105.98565948739999,TJ,CH4,3.0,kg/TJ,317.95697846219997,kg -e4995416-9b94-3ac7-bb10-ea440f416852,SESCO,II.1.1,La Rioja,AR-F,annual,2010,naphtha combustion consumption by to the public,105.98565948739999,TJ,N2O,0.6,kg/TJ,63.59139569243999,kg -3a21c929-ccb6-3203-a55a-85f3703f87e3,SESCO,II.1.1,Mendoza,AR-M,annual,2010,naphtha combustion consumption by to the public,368.8596397793999,TJ,CO2,73300.0,kg/TJ,27037411.595830012,kg -3997df19-10af-3041-92d5-e8aebbb321b0,SESCO,II.1.1,Mendoza,AR-M,annual,2010,naphtha combustion consumption by to the public,368.8596397793999,TJ,CH4,3.0,kg/TJ,1106.5789193381997,kg -ccb73a24-1f76-3a15-9879-db1138542b80,SESCO,II.1.1,Mendoza,AR-M,annual,2010,naphtha combustion consumption by to the public,368.8596397793999,TJ,N2O,0.6,kg/TJ,221.31578386763994,kg -692a3cab-0dec-36b4-8621-4257f8d0f3fc,SESCO,II.1.1,Misiones,AR-N,annual,2010,naphtha combustion consumption by to the public,146.0109493227,TJ,CO2,73300.0,kg/TJ,10702602.585353909,kg -61206251-25d7-35af-8a9d-f1577a951ad8,SESCO,II.1.1,Misiones,AR-N,annual,2010,naphtha combustion consumption by to the public,146.0109493227,TJ,CH4,3.0,kg/TJ,438.0328479681,kg -c4424bde-941a-3c24-8c25-9c5760910045,SESCO,II.1.1,Misiones,AR-N,annual,2010,naphtha combustion consumption by to the public,146.0109493227,TJ,N2O,0.6,kg/TJ,87.60656959362,kg -6eec445e-3743-32f2-a18e-5df8f27af667,SESCO,II.1.1,Neuquén,AR-Q,annual,2010,naphtha combustion consumption by to the public,555.8586760958,TJ,CO2,73300.0,kg/TJ,40744440.95782214,kg -563a26d9-2672-3dac-83f8-9a8f40830870,SESCO,II.1.1,Neuquén,AR-Q,annual,2010,naphtha combustion consumption by to the public,555.8586760958,TJ,CH4,3.0,kg/TJ,1667.5760282873998,kg -083049b7-a926-3e82-b56e-e510404e6b61,SESCO,II.1.1,Neuquén,AR-Q,annual,2010,naphtha combustion consumption by to the public,555.8586760958,TJ,N2O,0.6,kg/TJ,333.51520565747995,kg -856a48bf-7de6-3c37-abba-fc33552b1ffc,SESCO,II.1.1,Rio Negro,AR-R,annual,2010,naphtha combustion consumption by to the public,1035.0816936922,TJ,CO2,73300.0,kg/TJ,75871488.14763825,kg -81847fed-90cf-304c-a4e6-8f4facb3c7e7,SESCO,II.1.1,Rio Negro,AR-R,annual,2010,naphtha combustion consumption by to the public,1035.0816936922,TJ,CH4,3.0,kg/TJ,3105.2450810765995,kg -16ba0c55-2f5c-3d6e-aa7c-db1a4c90ee11,SESCO,II.1.1,Rio Negro,AR-R,annual,2010,naphtha combustion consumption by to the public,1035.0816936922,TJ,N2O,0.6,kg/TJ,621.04901621532,kg -0706d463-482f-3fbf-ac53-c9d6904d3f92,SESCO,II.1.1,Salta,AR-A,annual,2010,naphtha combustion consumption by to the public,37.491365673299995,TJ,CO2,73300.0,kg/TJ,2748117.1038528895,kg -5d625f0e-aad2-373c-aac2-9cfed20e811c,SESCO,II.1.1,Salta,AR-A,annual,2010,naphtha combustion consumption by to the public,37.491365673299995,TJ,CH4,3.0,kg/TJ,112.47409701989999,kg -8892b91c-eba5-39e8-9604-a461f4411bb8,SESCO,II.1.1,Salta,AR-A,annual,2010,naphtha combustion consumption by to the public,37.491365673299995,TJ,N2O,0.6,kg/TJ,22.494819403979996,kg -1cadaf2f-167d-3403-aba4-8ceee4884896,SESCO,II.1.1,San Juan,AR-J,annual,2010,naphtha combustion consumption by to the public,248.4059650688,TJ,CO2,73300.0,kg/TJ,18208157.23954304,kg -a48b14e9-a647-3c64-b527-f3561be23eac,SESCO,II.1.1,San Juan,AR-J,annual,2010,naphtha combustion consumption by to the public,248.4059650688,TJ,CH4,3.0,kg/TJ,745.2178952063999,kg -7b87c5cf-5738-3751-8cdd-d097cfb51b60,SESCO,II.1.1,San Juan,AR-J,annual,2010,naphtha combustion consumption by to the public,248.4059650688,TJ,N2O,0.6,kg/TJ,149.04357904128,kg -680bcc06-b70a-3199-b0b2-b73d4d7a0e7b,SESCO,II.1.1,San Luis,AR-D,annual,2010,naphtha combustion consumption by to the public,112.74639480719999,TJ,CO2,73300.0,kg/TJ,8264310.73936776,kg -4dd2fbf6-a313-3acd-96b6-91e571f6e800,SESCO,II.1.1,San Luis,AR-D,annual,2010,naphtha combustion consumption by to the public,112.74639480719999,TJ,CH4,3.0,kg/TJ,338.2391844216,kg -b718fe68-93de-358c-b652-ee0d89d49403,SESCO,II.1.1,San Luis,AR-D,annual,2010,naphtha combustion consumption by to the public,112.74639480719999,TJ,N2O,0.6,kg/TJ,67.64783688431999,kg -ea20bc90-9ba2-3f88-a324-611293b9f5a1,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2010,naphtha combustion consumption by to the public,1013.0419933941998,TJ,CO2,73300.0,kg/TJ,74255978.11579485,kg -f1f90194-b4e9-3bad-b9f2-8b15a9f0c8b1,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2010,naphtha combustion consumption by to the public,1013.0419933941998,TJ,CH4,3.0,kg/TJ,3039.1259801825995,kg -220ddca4-3245-3240-ac07-920d7917eef9,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2010,naphtha combustion consumption by to the public,1013.0419933941998,TJ,N2O,0.6,kg/TJ,607.8251960365199,kg -5078261d-8052-3691-8d8c-6dfb69ce0553,SESCO,II.1.1,Santa Fe,AR-S,annual,2010,naphtha combustion consumption by to the public,1763.3657827246998,TJ,CO2,73300.0,kg/TJ,129254711.8737205,kg -a4c67eb4-42ac-36af-8107-889ff6de20b5,SESCO,II.1.1,Santa Fe,AR-S,annual,2010,naphtha combustion consumption by to the public,1763.3657827246998,TJ,CH4,3.0,kg/TJ,5290.097348174099,kg -31aef919-81b2-3922-b67d-ebace4d6a782,SESCO,II.1.1,Santa Fe,AR-S,annual,2010,naphtha combustion consumption by to the public,1763.3657827246998,TJ,N2O,0.6,kg/TJ,1058.0194696348199,kg -26697419-9b5e-3eea-b2d5-e6d569382627,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2010,naphtha combustion consumption by to the public,149.7044141054,TJ,CO2,73300.0,kg/TJ,10973333.55392582,kg -116a7663-6bd8-368d-b800-4ddc69622810,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2010,naphtha combustion consumption by to the public,149.7044141054,TJ,CH4,3.0,kg/TJ,449.11324231619994,kg -bb05a4b0-2d81-3a94-bad3-18aa418950bd,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2010,naphtha combustion consumption by to the public,149.7044141054,TJ,N2O,0.6,kg/TJ,89.82264846323999,kg -e2fb273b-7e93-3ba4-a6b2-b632a7dd315e,SESCO,II.1.1,Tucuman,AR-T,annual,2010,naphtha combustion consumption by to the public,217.73396487149998,TJ,CO2,73300.0,kg/TJ,15959899.625080949,kg -cbca3d0e-c300-3299-bbe4-6c1077560312,SESCO,II.1.1,Tucuman,AR-T,annual,2010,naphtha combustion consumption by to the public,217.73396487149998,TJ,CH4,3.0,kg/TJ,653.2018946144999,kg -9e26da91-1c25-39b9-999a-8ccc52b78a11,SESCO,II.1.1,Tucuman,AR-T,annual,2010,naphtha combustion consumption by to the public,217.73396487149998,TJ,N2O,0.6,kg/TJ,130.64037892289997,kg -8e68fb5f-601f-34f4-8d80-efa743df3b5b,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,naphtha combustion consumption by to the public,1352.9192627412,TJ,CO2,73300.0,kg/TJ,99168981.95892997,kg -11e10926-5566-3c93-b5fb-440ee0b1970a,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,naphtha combustion consumption by to the public,1352.9192627412,TJ,CH4,3.0,kg/TJ,4058.7577882236,kg -4f276248-fd77-3b1e-b9fd-22a557a50d36,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,naphtha combustion consumption by to the public,1352.9192627412,TJ,N2O,0.6,kg/TJ,811.75155764472,kg -c8d434d9-f009-30fc-b7db-a40d5c1706d4,SESCO,II.1.1,Capital Federal,AR-C,annual,2010,naphtha combustion consumption by to the public,275.57785239599997,TJ,CO2,73300.0,kg/TJ,20199856.580626797,kg -dcef1b59-3bea-33d2-8d50-06cfd7f9d229,SESCO,II.1.1,Capital Federal,AR-C,annual,2010,naphtha combustion consumption by to the public,275.57785239599997,TJ,CH4,3.0,kg/TJ,826.7335571879998,kg -24c3b7ea-03f8-3c11-adbb-a845a4ece9c9,SESCO,II.1.1,Capital Federal,AR-C,annual,2010,naphtha combustion consumption by to the public,275.57785239599997,TJ,N2O,0.6,kg/TJ,165.34671143759996,kg -38a28dec-9d48-3004-952b-e7d02805e7b4,SESCO,II.1.1,Catamarca,AR-K,annual,2010,naphtha combustion consumption by to the public,17.681861150799996,TJ,CO2,73300.0,kg/TJ,1296080.4223536397,kg -1d24a07e-bb54-36d6-a848-700804fd6441,SESCO,II.1.1,Catamarca,AR-K,annual,2010,naphtha combustion consumption by to the public,17.681861150799996,TJ,CH4,3.0,kg/TJ,53.04558345239999,kg -50fdf5b0-1e3c-3050-ad3b-0b890295bf4a,SESCO,II.1.1,Catamarca,AR-K,annual,2010,naphtha combustion consumption by to the public,17.681861150799996,TJ,N2O,0.6,kg/TJ,10.609116690479997,kg -05fa61ee-b854-3cbf-b9d7-3b44b6facfbd,SESCO,II.1.1,Chaco,AR-H,annual,2010,naphtha combustion consumption by to the public,25.227454798699995,TJ,CO2,73300.0,kg/TJ,1849172.4367447097,kg -85a09c16-5088-3c15-b560-b3d8e33540d0,SESCO,II.1.1,Chaco,AR-H,annual,2010,naphtha combustion consumption by to the public,25.227454798699995,TJ,CH4,3.0,kg/TJ,75.68236439609998,kg -845ec121-45e9-3a17-908d-2428bf34141c,SESCO,II.1.1,Chaco,AR-H,annual,2010,naphtha combustion consumption by to the public,25.227454798699995,TJ,N2O,0.6,kg/TJ,15.136472879219996,kg -45411856-d339-375b-b5a8-2191c1e41481,SESCO,II.1.1,Chubut,AR-U,annual,2010,naphtha combustion consumption by to the public,196.82539676799996,TJ,CO2,73300.0,kg/TJ,14427301.583094398,kg -c03324a9-c7e0-303e-b792-abe629e08b59,SESCO,II.1.1,Chubut,AR-U,annual,2010,naphtha combustion consumption by to the public,196.82539676799996,TJ,CH4,3.0,kg/TJ,590.4761903039998,kg -812597c9-ddc5-3da1-b120-72cfe6271334,SESCO,II.1.1,Chubut,AR-U,annual,2010,naphtha combustion consumption by to the public,196.82539676799996,TJ,N2O,0.6,kg/TJ,118.09523806079997,kg -394887eb-f5b8-3438-922e-aa5838b0fe0e,SESCO,II.1.1,Corrientes,AR-W,annual,2010,naphtha combustion consumption by to the public,44.0723152793,TJ,CO2,73300.0,kg/TJ,3230500.70997269,kg -7c9ff56a-fcfb-3a8e-abc0-7fd3457c4128,SESCO,II.1.1,Corrientes,AR-W,annual,2010,naphtha combustion consumption by to the public,44.0723152793,TJ,CH4,3.0,kg/TJ,132.2169458379,kg -19b227ad-944a-3359-a52c-2a1be945a2aa,SESCO,II.1.1,Corrientes,AR-W,annual,2010,naphtha combustion consumption by to the public,44.0723152793,TJ,N2O,0.6,kg/TJ,26.443389167579998,kg -35939a01-4ee5-3160-a8e5-aaad99461408,SESCO,II.1.1,Córdoba,AR-X,annual,2010,naphtha combustion consumption by to the public,282.0722671151,TJ,CO2,73300.0,kg/TJ,20675897.179536827,kg -84ca895e-b5cf-3fab-8796-304842fc3de2,SESCO,II.1.1,Córdoba,AR-X,annual,2010,naphtha combustion consumption by to the public,282.0722671151,TJ,CH4,3.0,kg/TJ,846.2168013452999,kg -efa7bd51-9b6f-301c-80c9-83f3c148c73d,SESCO,II.1.1,Córdoba,AR-X,annual,2010,naphtha combustion consumption by to the public,282.0722671151,TJ,N2O,0.6,kg/TJ,169.24336026906,kg -ef724f0e-e926-3bd5-b73b-184dc5ee9d5b,SESCO,II.1.1,Entre Rios,AR-E,annual,2010,naphtha combustion consumption by to the public,80.38254858479999,TJ,CO2,73300.0,kg/TJ,5892040.811265839,kg -875ef23a-a577-3864-9ecf-bcf3e49aa92b,SESCO,II.1.1,Entre Rios,AR-E,annual,2010,naphtha combustion consumption by to the public,80.38254858479999,TJ,CH4,3.0,kg/TJ,241.14764575439997,kg -16184c66-a5e0-362b-ae97-c9639eb6db94,SESCO,II.1.1,Entre Rios,AR-E,annual,2010,naphtha combustion consumption by to the public,80.38254858479999,TJ,N2O,0.6,kg/TJ,48.22952915087999,kg -7820a56b-c7a2-3506-ab62-eeebe7fe1bc9,SESCO,II.1.1,Jujuy,AR-Y,annual,2010,naphtha combustion consumption by to the public,1.8010807892,TJ,CO2,73300.0,kg/TJ,132019.22184836,kg -8d93c746-a7de-3d6d-b91a-b9a89d636198,SESCO,II.1.1,Jujuy,AR-Y,annual,2010,naphtha combustion consumption by to the public,1.8010807892,TJ,CH4,3.0,kg/TJ,5.4032423676,kg -2a3f5889-25f0-35f6-9bb7-62e95c81552f,SESCO,II.1.1,Jujuy,AR-Y,annual,2010,naphtha combustion consumption by to the public,1.8010807892,TJ,N2O,0.6,kg/TJ,1.08064847352,kg -2117e4b0-4950-36fe-aef1-e708f214dc8f,SESCO,II.1.1,La Pampa,AR-L,annual,2010,naphtha combustion consumption by to the public,40.482208813199996,TJ,CO2,73300.0,kg/TJ,2967345.9060075595,kg -21a509ee-8c4a-3aad-b630-91e919633373,SESCO,II.1.1,La Pampa,AR-L,annual,2010,naphtha combustion consumption by to the public,40.482208813199996,TJ,CH4,3.0,kg/TJ,121.44662643959998,kg -3d90035e-f141-397e-a341-f83efaf3aafe,SESCO,II.1.1,La Pampa,AR-L,annual,2010,naphtha combustion consumption by to the public,40.482208813199996,TJ,N2O,0.6,kg/TJ,24.289325287919997,kg -9765b869-8070-398e-b5c8-20353f32b1d4,SESCO,II.1.1,La Rioja,AR-F,annual,2010,naphtha combustion consumption by to the public,5.609791102299999,TJ,CO2,73300.0,kg/TJ,411197.68779858993,kg -5226a195-f0b4-39e7-bca6-2317fda81934,SESCO,II.1.1,La Rioja,AR-F,annual,2010,naphtha combustion consumption by to the public,5.609791102299999,TJ,CH4,3.0,kg/TJ,16.829373306899996,kg -33cb6c89-0c03-3d77-88c8-eb60fb201d00,SESCO,II.1.1,La Rioja,AR-F,annual,2010,naphtha combustion consumption by to the public,5.609791102299999,TJ,N2O,0.6,kg/TJ,3.3658746613799995,kg -c4e71184-750f-34cc-994e-561a813812ec,SESCO,II.1.1,Mendoza,AR-M,annual,2010,naphtha combustion consumption by to the public,50.36149087199999,TJ,CO2,73300.0,kg/TJ,3691497.2809175993,kg -f20be571-68c5-305a-b7bb-2c76aa0710b0,SESCO,II.1.1,Mendoza,AR-M,annual,2010,naphtha combustion consumption by to the public,50.36149087199999,TJ,CH4,3.0,kg/TJ,151.08447261599997,kg -5b85a0be-778b-33c3-b2ef-2a152f341c9a,SESCO,II.1.1,Mendoza,AR-M,annual,2010,naphtha combustion consumption by to the public,50.36149087199999,TJ,N2O,0.6,kg/TJ,30.216894523199993,kg -2d9fa8fb-5c82-3358-a9a5-bd90cd46839e,SESCO,II.1.1,Misiones,AR-N,annual,2010,naphtha combustion consumption by to the public,14.083695556699999,TJ,CO2,73300.0,kg/TJ,1032334.8843061099,kg -9327d17e-2a14-3c68-b387-55ae1fd15f4d,SESCO,II.1.1,Misiones,AR-N,annual,2010,naphtha combustion consumption by to the public,14.083695556699999,TJ,CH4,3.0,kg/TJ,42.251086670099994,kg -b34a7416-d097-370c-9c71-ee880f76948c,SESCO,II.1.1,Misiones,AR-N,annual,2010,naphtha combustion consumption by to the public,14.083695556699999,TJ,N2O,0.6,kg/TJ,8.45021733402,kg -d01b236f-a3bc-39dd-adab-132fb28ec609,SESCO,II.1.1,Neuquén,AR-Q,annual,2010,naphtha combustion consumption by to the public,105.54774661969999,TJ,CO2,73300.0,kg/TJ,7736649.82722401,kg -6cf148ad-758d-33fd-b2e9-699cb9ece856,SESCO,II.1.1,Neuquén,AR-Q,annual,2010,naphtha combustion consumption by to the public,105.54774661969999,TJ,CH4,3.0,kg/TJ,316.6432398591,kg -ff24ac15-50d5-3d63-88d2-0f4f87f106dd,SESCO,II.1.1,Neuquén,AR-Q,annual,2010,naphtha combustion consumption by to the public,105.54774661969999,TJ,N2O,0.6,kg/TJ,63.32864797181999,kg -34b430fd-8ca4-320e-8b4a-3ad5429ca557,SESCO,II.1.1,Rio Negro,AR-R,annual,2010,naphtha combustion consumption by to the public,117.839898022,TJ,CO2,73300.0,kg/TJ,8637664.5250126,kg -733d5dcc-27b0-3ca5-ad98-3d20c5dda36f,SESCO,II.1.1,Rio Negro,AR-R,annual,2010,naphtha combustion consumption by to the public,117.839898022,TJ,CH4,3.0,kg/TJ,353.519694066,kg -09f15338-1552-3ec5-a8f5-65160c71d674,SESCO,II.1.1,Rio Negro,AR-R,annual,2010,naphtha combustion consumption by to the public,117.839898022,TJ,N2O,0.6,kg/TJ,70.7039388132,kg -96040500-89ff-38d1-9efe-292f080bf705,SESCO,II.1.1,Salta,AR-A,annual,2010,naphtha combustion consumption by to the public,2.6328499582,TJ,CO2,73300.0,kg/TJ,192987.90193606,kg -7723abec-f69b-32d5-bf1a-b20c81ce4834,SESCO,II.1.1,Salta,AR-A,annual,2010,naphtha combustion consumption by to the public,2.6328499582,TJ,CH4,3.0,kg/TJ,7.8985498746000005,kg -42221677-65d2-37ff-837e-e0398a26ebde,SESCO,II.1.1,Salta,AR-A,annual,2010,naphtha combustion consumption by to the public,2.6328499582,TJ,N2O,0.6,kg/TJ,1.5797099749199999,kg -e24ba60d-fe1e-38aa-a6ef-26301e7933d9,SESCO,II.1.1,San Juan,AR-J,annual,2010,naphtha combustion consumption by to the public,47.34690688419999,TJ,CO2,73300.0,kg/TJ,3470528.274611859,kg -6a14b6c6-c4f8-3f6e-9c74-c4ebab4e6104,SESCO,II.1.1,San Juan,AR-J,annual,2010,naphtha combustion consumption by to the public,47.34690688419999,TJ,CH4,3.0,kg/TJ,142.04072065259996,kg -bc351887-ae66-3dbe-b6c8-db4f0a23ccd6,SESCO,II.1.1,San Juan,AR-J,annual,2010,naphtha combustion consumption by to the public,47.34690688419999,TJ,N2O,0.6,kg/TJ,28.408144130519993,kg -9a3c21e8-a78a-3939-91ba-f052a97c360b,SESCO,II.1.1,San Luis,AR-D,annual,2010,naphtha combustion consumption by to the public,17.0436789523,TJ,CO2,73300.0,kg/TJ,1249301.6672035898,kg -6c62152b-b15a-32e5-86ea-90566c87b3f7,SESCO,II.1.1,San Luis,AR-D,annual,2010,naphtha combustion consumption by to the public,17.0436789523,TJ,CH4,3.0,kg/TJ,51.131036856899996,kg -fcb5f04d-60e1-3dac-b81c-3274883c957a,SESCO,II.1.1,San Luis,AR-D,annual,2010,naphtha combustion consumption by to the public,17.0436789523,TJ,N2O,0.6,kg/TJ,10.22620737138,kg -ed476475-6268-3225-9937-af62eb84460a,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2010,naphtha combustion consumption by to the public,141.85905447559998,TJ,CO2,73300.0,kg/TJ,10398268.693061478,kg -88f2dbe4-be4a-3cf4-a03a-84dbe47515fa,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2010,naphtha combustion consumption by to the public,141.85905447559998,TJ,CH4,3.0,kg/TJ,425.5771634267999,kg -f1058bc6-27ec-339b-b56e-f9ad37996b78,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2010,naphtha combustion consumption by to the public,141.85905447559998,TJ,N2O,0.6,kg/TJ,85.11543268535998,kg -c59763f7-36ce-3456-ae86-06b6245a1c1a,SESCO,II.1.1,Santa Fe,AR-S,annual,2010,naphtha combustion consumption by to the public,363.940482367,TJ,CO2,73300.0,kg/TJ,26676837.3575011,kg -5bb72150-9d0d-3367-8327-a60c0f567131,SESCO,II.1.1,Santa Fe,AR-S,annual,2010,naphtha combustion consumption by to the public,363.940482367,TJ,CH4,3.0,kg/TJ,1091.821447101,kg -96e6f2b3-ca5d-387e-9485-6bd3c866f807,SESCO,II.1.1,Santa Fe,AR-S,annual,2010,naphtha combustion consumption by to the public,363.940482367,TJ,N2O,0.6,kg/TJ,218.3642894202,kg -145318cc-be14-3119-9575-578ab6e1e0bc,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2010,naphtha combustion consumption by to the public,15.068957534399999,TJ,CO2,73300.0,kg/TJ,1104554.58727152,kg -6417ee1c-d5c6-3ea4-b39a-b50bfb5c28f0,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2010,naphtha combustion consumption by to the public,15.068957534399999,TJ,CH4,3.0,kg/TJ,45.2068726032,kg -b48de37f-9c39-3f11-9d05-dd12345408f3,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2010,naphtha combustion consumption by to the public,15.068957534399999,TJ,N2O,0.6,kg/TJ,9.04137452064,kg -2a0dda2f-ef19-3c03-bdad-9e7e080c4fe6,SESCO,II.1.1,Tucuman,AR-T,annual,2010,naphtha combustion consumption by to the public,16.873429873299997,TJ,CO2,73300.0,kg/TJ,1236822.4097128897,kg -15a03855-d929-36bb-ba42-3bb499a2bd78,SESCO,II.1.1,Tucuman,AR-T,annual,2010,naphtha combustion consumption by to the public,16.873429873299997,TJ,CH4,3.0,kg/TJ,50.62028961989999,kg -78d17f1b-db64-38d0-9554-7d520c2ac2dc,SESCO,II.1.1,Tucuman,AR-T,annual,2010,naphtha combustion consumption by to the public,16.873429873299997,TJ,N2O,0.6,kg/TJ,10.124057923979999,kg -a2c70b28-2a71-31ca-ae2c-b401c50a6661,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,naphtha combustion consumption by to the public,179.352199873,TJ,CO2,73300.0,kg/TJ,13146516.2506909,kg -444a09a4-80ec-3b68-aa27-422abfee41ba,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,naphtha combustion consumption by to the public,179.352199873,TJ,CH4,3.0,kg/TJ,538.0565996189999,kg -47957071-d27a-3bf9-9a83-cd147565905c,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,naphtha combustion consumption by to the public,179.352199873,TJ,N2O,0.6,kg/TJ,107.6113199238,kg -8cf433db-4287-3e17-8db9-c11b0ca57ca7,SESCO,II.1.1,Capital Federal,AR-C,annual,2010,naphtha combustion consumption by to the public,1.6118255999999997,TJ,CO2,73300.0,kg/TJ,118146.81647999998,kg -0698cac9-4fd7-36bc-a8d0-b08bd894f9cf,SESCO,II.1.1,Capital Federal,AR-C,annual,2010,naphtha combustion consumption by to the public,1.6118255999999997,TJ,CH4,3.0,kg/TJ,4.8354767999999995,kg -e97f76e0-e607-3f33-8b90-5a77a6e94db7,SESCO,II.1.1,Capital Federal,AR-C,annual,2010,naphtha combustion consumption by to the public,1.6118255999999997,TJ,N2O,0.6,kg/TJ,0.9670953599999998,kg -91720fa8-6c30-321d-bcc9-e3d7a7578538,SESCO,II.1.1,Corrientes,AR-W,annual,2010,naphtha combustion consumption by to the public,1.343188,TJ,CO2,73300.0,kg/TJ,98455.6804,kg -81492efb-1783-3d4e-94b5-25ef2b7f0549,SESCO,II.1.1,Corrientes,AR-W,annual,2010,naphtha combustion consumption by to the public,1.343188,TJ,CH4,3.0,kg/TJ,4.029564000000001,kg -8ec978ee-fb0f-3188-a5a9-13729aed4c0d,SESCO,II.1.1,Corrientes,AR-W,annual,2010,naphtha combustion consumption by to the public,1.343188,TJ,N2O,0.6,kg/TJ,0.8059128,kg -6a18ced6-3775-309a-887e-7ee2ba5b2dfb,SESCO,II.1.1,Córdoba,AR-X,annual,2010,naphtha combustion consumption by to the public,63.09625629999999,TJ,CO2,73300.0,kg/TJ,4624955.586789999,kg -35e25917-5e6f-39ae-af5c-49b7899f89be,SESCO,II.1.1,Córdoba,AR-X,annual,2010,naphtha combustion consumption by to the public,63.09625629999999,TJ,CH4,3.0,kg/TJ,189.28876889999998,kg -e6ff8bee-376d-395e-9e19-3465640c0f86,SESCO,II.1.1,Córdoba,AR-X,annual,2010,naphtha combustion consumption by to the public,63.09625629999999,TJ,N2O,0.6,kg/TJ,37.857753779999996,kg -bc69c83f-2f06-3264-93b1-6cfc817b3093,SESCO,II.1.1,Entre Rios,AR-E,annual,2010,naphtha combustion consumption by to the public,15.120938909999998,TJ,CO2,73300.0,kg/TJ,1108364.8221029998,kg -0cee280e-db00-3aae-b47e-d00e199e591d,SESCO,II.1.1,Entre Rios,AR-E,annual,2010,naphtha combustion consumption by to the public,15.120938909999998,TJ,CH4,3.0,kg/TJ,45.36281672999999,kg -56173e74-6ae0-3c5c-9c3e-a9f12c4660ba,SESCO,II.1.1,Entre Rios,AR-E,annual,2010,naphtha combustion consumption by to the public,15.120938909999998,TJ,N2O,0.6,kg/TJ,9.072563345999999,kg -ebb9650c-4644-31d0-9e4f-901f55e62a85,SESCO,II.1.1,Santa Fe,AR-S,annual,2010,naphtha combustion consumption by to the public,22.397659899999997,TJ,CO2,73300.0,kg/TJ,1641748.4706699997,kg -891a6b42-2d8e-3e81-8e5d-8af4939dca49,SESCO,II.1.1,Santa Fe,AR-S,annual,2010,naphtha combustion consumption by to the public,22.397659899999997,TJ,CH4,3.0,kg/TJ,67.1929797,kg -122fcd5c-c800-3898-95e5-a0145514ace4,SESCO,II.1.1,Santa Fe,AR-S,annual,2010,naphtha combustion consumption by to the public,22.397659899999997,TJ,N2O,0.6,kg/TJ,13.438595939999997,kg -80f99ba7-74fb-3670-aa95-f5a1525d2f82,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,naphtha combustion consumption by to the public,1210.4091650419998,TJ,CO2,73300.0,kg/TJ,88722991.79757859,kg -6b55f8a0-1dd4-3ace-b163-51947ae09b8f,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,naphtha combustion consumption by to the public,1210.4091650419998,TJ,CH4,3.0,kg/TJ,3631.2274951259997,kg -4c7cc9ee-7c70-311b-b131-727410fe4c11,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,naphtha combustion consumption by to the public,1210.4091650419998,TJ,N2O,0.6,kg/TJ,726.2454990251998,kg -32f039c2-aaa9-3d5f-ac55-6dd7b76c92f2,SESCO,II.1.1,Capital Federal,AR-C,annual,2010,naphtha combustion consumption by to the public,27.9383104,TJ,CO2,73300.0,kg/TJ,2047878.1523199999,kg -77563ffc-6386-3619-8bc7-3a174af4206c,SESCO,II.1.1,Capital Federal,AR-C,annual,2010,naphtha combustion consumption by to the public,27.9383104,TJ,CH4,3.0,kg/TJ,83.81493119999999,kg -ec0c5f27-aead-37e3-9ca3-37f2c5e0b95f,SESCO,II.1.1,Capital Federal,AR-C,annual,2010,naphtha combustion consumption by to the public,27.9383104,TJ,N2O,0.6,kg/TJ,16.76298624,kg -696bbf04-24e0-3567-acb7-cf07110660da,SESCO,II.1.1,Corrientes,AR-W,annual,2010,naphtha combustion consumption by to the public,25.060530109999995,TJ,CO2,73300.0,kg/TJ,1836936.8570629996,kg -46a1d503-7ac2-3e75-889b-20230c5b9473,SESCO,II.1.1,Corrientes,AR-W,annual,2010,naphtha combustion consumption by to the public,25.060530109999995,TJ,CH4,3.0,kg/TJ,75.18159032999998,kg -022410bc-7926-3c0f-97eb-574b6e59310f,SESCO,II.1.1,Corrientes,AR-W,annual,2010,naphtha combustion consumption by to the public,25.060530109999995,TJ,N2O,0.6,kg/TJ,15.036318065999996,kg -5a1023d2-80e8-3acf-9408-b4e4e5b44492,SESCO,II.1.1,Córdoba,AR-X,annual,2010,naphtha combustion consumption by to the public,478.61818003999997,TJ,CO2,73300.0,kg/TJ,35082712.596932,kg -6f6aa325-ef3e-37f7-a87e-73d5bb1f488e,SESCO,II.1.1,Córdoba,AR-X,annual,2010,naphtha combustion consumption by to the public,478.61818003999997,TJ,CH4,3.0,kg/TJ,1435.85454012,kg -26e4bc8c-824a-3523-a103-6ab3d4bfa75b,SESCO,II.1.1,Córdoba,AR-X,annual,2010,naphtha combustion consumption by to the public,478.61818003999997,TJ,N2O,0.6,kg/TJ,287.17090802399997,kg -8713d4c4-2d41-3735-aa4a-6e6c42cd0966,SESCO,II.1.1,Entre Rios,AR-E,annual,2010,naphtha combustion consumption by to the public,167.81119277999997,TJ,CO2,73300.0,kg/TJ,12300560.430773998,kg -b5091e0a-183b-3311-9111-1c2f41e10b18,SESCO,II.1.1,Entre Rios,AR-E,annual,2010,naphtha combustion consumption by to the public,167.81119277999997,TJ,CH4,3.0,kg/TJ,503.43357833999994,kg -601d1ece-5d97-385a-a239-7b23fa382275,SESCO,II.1.1,Entre Rios,AR-E,annual,2010,naphtha combustion consumption by to the public,167.81119277999997,TJ,N2O,0.6,kg/TJ,100.68671566799998,kg -56a9d1a8-8519-3580-b3f3-99e84b3841f6,SESCO,II.1.1,Santa Fe,AR-S,annual,2010,naphtha combustion consumption by to the public,177.50229419999997,TJ,CO2,73300.0,kg/TJ,13010918.164859997,kg -545ce0b1-b238-3df8-a47c-2dbda47a1ffa,SESCO,II.1.1,Santa Fe,AR-S,annual,2010,naphtha combustion consumption by to the public,177.50229419999997,TJ,CH4,3.0,kg/TJ,532.5068825999999,kg -6720d988-6669-3937-bfea-c777b70a388f,SESCO,II.1.1,Santa Fe,AR-S,annual,2010,naphtha combustion consumption by to the public,177.50229419999997,TJ,N2O,0.6,kg/TJ,106.50137651999998,kg -a0a3d2f8-d6d8-3ad9-856b-9f9a42ea01e0,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,naphtha combustion consumption by to the public,100.34379977159999,TJ,CO2,73300.0,kg/TJ,7355200.523258279,kg -91a58066-1d5a-3440-a28e-bbcfb684c543,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,naphtha combustion consumption by to the public,100.34379977159999,TJ,CH4,3.0,kg/TJ,301.03139931479996,kg -4b72cae2-5153-35b9-9ced-5c5dc36aecc6,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,naphtha combustion consumption by to the public,100.34379977159999,TJ,N2O,0.6,kg/TJ,60.20627986295999,kg -f29ffae0-cc81-3572-bf93-a77e3fc4d8db,SESCO,II.1.1,Capital Federal,AR-C,annual,2010,naphtha combustion consumption by to the public,1.8468834999999997,TJ,CO2,73300.0,kg/TJ,135376.56054999997,kg -d33d073a-6691-3f17-a366-01d4ec29f915,SESCO,II.1.1,Capital Federal,AR-C,annual,2010,naphtha combustion consumption by to the public,1.8468834999999997,TJ,CH4,3.0,kg/TJ,5.540650499999999,kg -bc14cd7b-560c-38e7-a392-f1b6cf79640a,SESCO,II.1.1,Capital Federal,AR-C,annual,2010,naphtha combustion consumption by to the public,1.8468834999999997,TJ,N2O,0.6,kg/TJ,1.1081300999999997,kg -6e2e26da-c360-3f33-887a-ac25c12b834c,SESCO,II.1.1,Corrientes,AR-W,annual,2010,naphtha combustion consumption by to the public,2.42109637,TJ,CO2,73300.0,kg/TJ,177466.36392099998,kg -75791265-f33d-318b-9051-351bba561fb4,SESCO,II.1.1,Corrientes,AR-W,annual,2010,naphtha combustion consumption by to the public,2.42109637,TJ,CH4,3.0,kg/TJ,7.26328911,kg -5341765a-0b3f-3ea2-ae7e-411f6fce960c,SESCO,II.1.1,Corrientes,AR-W,annual,2010,naphtha combustion consumption by to the public,2.42109637,TJ,N2O,0.6,kg/TJ,1.452657822,kg -77e685b4-d8ff-3bbb-8361-c8d0c171f8b2,SESCO,II.1.1,Córdoba,AR-X,annual,2010,naphtha combustion consumption by to the public,29.1807593,TJ,CO2,73300.0,kg/TJ,2138949.65669,kg -c7f3a49e-5b7c-3170-84ad-5683f2100680,SESCO,II.1.1,Córdoba,AR-X,annual,2010,naphtha combustion consumption by to the public,29.1807593,TJ,CH4,3.0,kg/TJ,87.54227789999999,kg -58ec7863-e50a-385c-abcf-72aa6f957db7,SESCO,II.1.1,Córdoba,AR-X,annual,2010,naphtha combustion consumption by to the public,29.1807593,TJ,N2O,0.6,kg/TJ,17.50845558,kg -8ef8beb5-c557-3db8-b17f-6963d6c51e7a,SESCO,II.1.1,Entre Rios,AR-E,annual,2010,naphtha combustion consumption by to the public,8.28411199,TJ,CO2,73300.0,kg/TJ,607225.408867,kg -1bffc234-f4cc-368f-9e00-778e39aec2d2,SESCO,II.1.1,Entre Rios,AR-E,annual,2010,naphtha combustion consumption by to the public,8.28411199,TJ,CH4,3.0,kg/TJ,24.85233597,kg -a4af9e13-58a1-3592-ae67-d85c4aeab7dc,SESCO,II.1.1,Entre Rios,AR-E,annual,2010,naphtha combustion consumption by to the public,8.28411199,TJ,N2O,0.6,kg/TJ,4.970467193999999,kg -aeb2019c-256b-3499-acfe-4d8cc3373b25,SESCO,II.1.1,Santa Fe,AR-S,annual,2010,naphtha combustion consumption by to the public,22.7334569,TJ,CO2,73300.0,kg/TJ,1666362.39077,kg -5f52772d-25d9-3eeb-9d62-5d156e496fb9,SESCO,II.1.1,Santa Fe,AR-S,annual,2010,naphtha combustion consumption by to the public,22.7334569,TJ,CH4,3.0,kg/TJ,68.20037070000001,kg -4b8290bd-2bcd-39c3-a2c1-44118f370524,SESCO,II.1.1,Santa Fe,AR-S,annual,2010,naphtha combustion consumption by to the public,22.7334569,TJ,N2O,0.6,kg/TJ,13.64007414,kg -e06556c0-5e4d-36bd-92ef-5caa08fd7b5f,SESCO,II.1.1,Catamarca,AR-K,annual,2010,naphtha combustion consumption by to the public,61.458574331,TJ,CO2,73300.0,kg/TJ,4504913.4984623,kg -5bae199e-f772-3ce6-ba1a-db87a52d2420,SESCO,II.1.1,Catamarca,AR-K,annual,2010,naphtha combustion consumption by to the public,61.458574331,TJ,CH4,3.0,kg/TJ,184.375722993,kg -bc665813-8ede-3c2f-90da-7e6a7f880df2,SESCO,II.1.1,Catamarca,AR-K,annual,2010,naphtha combustion consumption by to the public,61.458574331,TJ,N2O,0.6,kg/TJ,36.8751445986,kg -261d76f2-20e5-31cb-8149-c72f19684277,SESCO,II.1.1,Chaco,AR-H,annual,2010,naphtha combustion consumption by to the public,94.63800430699999,TJ,CO2,73300.0,kg/TJ,6936965.715703099,kg -056d41fb-57c6-33f5-86b2-a8506258d13d,SESCO,II.1.1,Chaco,AR-H,annual,2010,naphtha combustion consumption by to the public,94.63800430699999,TJ,CH4,3.0,kg/TJ,283.914012921,kg -4a112d35-9e8d-3e82-89cc-dfcf328c20a3,SESCO,II.1.1,Chaco,AR-H,annual,2010,naphtha combustion consumption by to the public,94.63800430699999,TJ,N2O,0.6,kg/TJ,56.78280258419999,kg -cbbccab2-430d-3d9b-95ea-893940030f29,SESCO,II.1.1,Córdoba,AR-X,annual,2010,naphtha combustion consumption by to the public,10.883516567000001,TJ,CO2,73300.0,kg/TJ,797761.7643611,kg -71a8bbf1-fe76-34e1-8f8e-164eb84934c8,SESCO,II.1.1,Córdoba,AR-X,annual,2010,naphtha combustion consumption by to the public,10.883516567000001,TJ,CH4,3.0,kg/TJ,32.650549701,kg -ebac8475-0c68-3433-a428-723d14d83e16,SESCO,II.1.1,Córdoba,AR-X,annual,2010,naphtha combustion consumption by to the public,10.883516567000001,TJ,N2O,0.6,kg/TJ,6.5301099402,kg -38d36b15-5441-3c65-89b4-9e38a1af7c09,SESCO,II.1.1,Jujuy,AR-Y,annual,2010,naphtha combustion consumption by to the public,146.968608787,TJ,CO2,73300.0,kg/TJ,10772799.0240871,kg -14335bac-ebef-3633-9f7d-5b1a5e20ea2f,SESCO,II.1.1,Jujuy,AR-Y,annual,2010,naphtha combustion consumption by to the public,146.968608787,TJ,CH4,3.0,kg/TJ,440.905826361,kg -757d11c7-e4f0-33d6-a2a5-f6b5fbd91c69,SESCO,II.1.1,Jujuy,AR-Y,annual,2010,naphtha combustion consumption by to the public,146.968608787,TJ,N2O,0.6,kg/TJ,88.18116527219999,kg -fbc3d39a-2bf8-3066-9907-839a4a277312,SESCO,II.1.1,La Rioja,AR-F,annual,2010,naphtha combustion consumption by to the public,52.02502920999999,TJ,CO2,73300.0,kg/TJ,3813434.6410929994,kg -d47ae0ac-e1e1-3c36-8e41-af3b5f722218,SESCO,II.1.1,La Rioja,AR-F,annual,2010,naphtha combustion consumption by to the public,52.02502920999999,TJ,CH4,3.0,kg/TJ,156.07508762999998,kg -b279e3a0-303e-3192-81ea-aba53c4ec417,SESCO,II.1.1,La Rioja,AR-F,annual,2010,naphtha combustion consumption by to the public,52.02502920999999,TJ,N2O,0.6,kg/TJ,31.215017525999993,kg -f36eafe3-da9e-38c3-b94d-b7532d49d9cf,SESCO,II.1.1,Salta,AR-A,annual,2010,naphtha combustion consumption by to the public,271.80785947699997,TJ,CO2,73300.0,kg/TJ,19923516.099664096,kg -3164266d-e639-3a0d-bd8e-55f9fd280060,SESCO,II.1.1,Salta,AR-A,annual,2010,naphtha combustion consumption by to the public,271.80785947699997,TJ,CH4,3.0,kg/TJ,815.4235784309999,kg -1d315a4e-c745-3b83-bf58-7b1f227f46e9,SESCO,II.1.1,Salta,AR-A,annual,2010,naphtha combustion consumption by to the public,271.80785947699997,TJ,N2O,0.6,kg/TJ,163.08471568619998,kg -089f01eb-df66-3fa9-aa78-1e4e895e3b79,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2010,naphtha combustion consumption by to the public,93.310598766,TJ,CO2,73300.0,kg/TJ,6839666.8895478,kg -85ed14d7-61c2-3a83-8bc8-68d8b91160b7,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2010,naphtha combustion consumption by to the public,93.310598766,TJ,CH4,3.0,kg/TJ,279.931796298,kg -eab24fcb-a2b7-39af-b5f7-d0ef919c8c43,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2010,naphtha combustion consumption by to the public,93.310598766,TJ,N2O,0.6,kg/TJ,55.9863592596,kg -95c14465-4bd5-3cc7-ac78-4644dd7a7715,SESCO,II.1.1,Tucuman,AR-T,annual,2010,naphtha combustion consumption by to the public,209.58165320399996,TJ,CO2,73300.0,kg/TJ,15362335.179853197,kg -1fe0b594-1572-37ad-839c-4b541937b954,SESCO,II.1.1,Tucuman,AR-T,annual,2010,naphtha combustion consumption by to the public,209.58165320399996,TJ,CH4,3.0,kg/TJ,628.7449596119999,kg -0868dc62-da28-3cdf-8003-6c0d025b69d0,SESCO,II.1.1,Tucuman,AR-T,annual,2010,naphtha combustion consumption by to the public,209.58165320399996,TJ,N2O,0.6,kg/TJ,125.74899192239997,kg -1b1c573b-0382-33c9-b679-a8b464057dc8,SESCO,II.1.1,Catamarca,AR-K,annual,2010,naphtha combustion consumption by to the public,191.326385096,TJ,CO2,73300.0,kg/TJ,14024224.0275368,kg -01d19ab1-ab03-326a-bb95-f6335d169bb8,SESCO,II.1.1,Catamarca,AR-K,annual,2010,naphtha combustion consumption by to the public,191.326385096,TJ,CH4,3.0,kg/TJ,573.979155288,kg -bc3a16bd-ff53-32b7-9ef7-728fc591ba7d,SESCO,II.1.1,Catamarca,AR-K,annual,2010,naphtha combustion consumption by to the public,191.326385096,TJ,N2O,0.6,kg/TJ,114.7958310576,kg -c8ed4715-e870-36cb-8752-523e4afded44,SESCO,II.1.1,Chaco,AR-H,annual,2010,naphtha combustion consumption by to the public,74.245724091,TJ,CO2,73300.0,kg/TJ,5442211.5758703,kg -ecf08a38-8334-3f92-bfdf-1e1090c74dda,SESCO,II.1.1,Chaco,AR-H,annual,2010,naphtha combustion consumption by to the public,74.245724091,TJ,CH4,3.0,kg/TJ,222.737172273,kg -3a38503e-2e3e-3907-a7df-97f2d4f2002e,SESCO,II.1.1,Chaco,AR-H,annual,2010,naphtha combustion consumption by to the public,74.245724091,TJ,N2O,0.6,kg/TJ,44.5474344546,kg -db080903-b8fd-3a4e-9e40-da8b78ef80fc,SESCO,II.1.1,Córdoba,AR-X,annual,2010,naphtha combustion consumption by to the public,61.15266326399999,TJ,CO2,73300.0,kg/TJ,4482490.217251199,kg -2e3be6f5-780e-37d6-94e5-e8df17a5c011,SESCO,II.1.1,Córdoba,AR-X,annual,2010,naphtha combustion consumption by to the public,61.15266326399999,TJ,CH4,3.0,kg/TJ,183.45798979199998,kg -bf841e74-f8f6-3cdd-801f-9791b2c90851,SESCO,II.1.1,Córdoba,AR-X,annual,2010,naphtha combustion consumption by to the public,61.15266326399999,TJ,N2O,0.6,kg/TJ,36.691597958399996,kg -23f802ae-f7d2-3811-ac73-716c66efbc07,SESCO,II.1.1,Jujuy,AR-Y,annual,2010,naphtha combustion consumption by to the public,242.33394939599998,TJ,CO2,73300.0,kg/TJ,17763078.4907268,kg -68e29e07-c704-3149-81b4-37165d6b1891,SESCO,II.1.1,Jujuy,AR-Y,annual,2010,naphtha combustion consumption by to the public,242.33394939599998,TJ,CH4,3.0,kg/TJ,727.0018481879999,kg -9723200b-b251-3df2-97d1-62441b34652e,SESCO,II.1.1,Jujuy,AR-Y,annual,2010,naphtha combustion consumption by to the public,242.33394939599998,TJ,N2O,0.6,kg/TJ,145.4003696376,kg -fad341ed-724a-39bd-b03e-8935ea92b078,SESCO,II.1.1,La Rioja,AR-F,annual,2010,naphtha combustion consumption by to the public,186.22529286899996,TJ,CO2,73300.0,kg/TJ,13650313.967297697,kg -66bbeef6-0ecf-3368-9f2c-cc002fc5c440,SESCO,II.1.1,La Rioja,AR-F,annual,2010,naphtha combustion consumption by to the public,186.22529286899996,TJ,CH4,3.0,kg/TJ,558.6758786069998,kg -e81e633d-5ba2-3b99-98cb-cfc60e454fff,SESCO,II.1.1,La Rioja,AR-F,annual,2010,naphtha combustion consumption by to the public,186.22529286899996,TJ,N2O,0.6,kg/TJ,111.73517572139997,kg -8969ea19-6c4a-30cd-b910-0c5147536964,SESCO,II.1.1,Salta,AR-A,annual,2010,naphtha combustion consumption by to the public,552.4444936780001,TJ,CO2,73300.0,kg/TJ,40494181.3865974,kg -8d79ea41-3f21-36a9-b463-1218884a5777,SESCO,II.1.1,Salta,AR-A,annual,2010,naphtha combustion consumption by to the public,552.4444936780001,TJ,CH4,3.0,kg/TJ,1657.3334810340002,kg -aab5431e-5926-308e-a621-fe5f74f5f53d,SESCO,II.1.1,Salta,AR-A,annual,2010,naphtha combustion consumption by to the public,552.4444936780001,TJ,N2O,0.6,kg/TJ,331.4666962068,kg -bdb4e14d-c902-3703-aab2-acb9145b708d,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2010,naphtha combustion consumption by to the public,174.761519086,TJ,CO2,73300.0,kg/TJ,12810019.3490038,kg -4e0cf6c2-20c1-3ad9-a895-413d103a718d,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2010,naphtha combustion consumption by to the public,174.761519086,TJ,CH4,3.0,kg/TJ,524.284557258,kg -d9e83084-8abd-3c9e-8afd-dbc21261cc0f,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2010,naphtha combustion consumption by to the public,174.761519086,TJ,N2O,0.6,kg/TJ,104.8569114516,kg -085e6598-8f56-3b0b-8991-23b42bcc86a7,SESCO,II.1.1,Tucuman,AR-T,annual,2010,naphtha combustion consumption by to the public,1041.319593083,TJ,CO2,73300.0,kg/TJ,76328726.1729839,kg -d6f2372c-5123-3821-b816-166e0cfffbb3,SESCO,II.1.1,Tucuman,AR-T,annual,2010,naphtha combustion consumption by to the public,1041.319593083,TJ,CH4,3.0,kg/TJ,3123.958779249,kg -ede900c3-c891-3b4a-a19f-ce54a2a401b5,SESCO,II.1.1,Tucuman,AR-T,annual,2010,naphtha combustion consumption by to the public,1041.319593083,TJ,N2O,0.6,kg/TJ,624.7917558498,kg -3ca8c4ea-8de5-3491-872e-4a3df04cd2d0,SESCO,II.1.1,Catamarca,AR-K,annual,2010,naphtha combustion consumption by to the public,7.938241079999998,TJ,CO2,73300.0,kg/TJ,581873.0711639998,kg -fbb959e6-856b-34da-9037-34d269861d69,SESCO,II.1.1,Catamarca,AR-K,annual,2010,naphtha combustion consumption by to the public,7.938241079999998,TJ,CH4,3.0,kg/TJ,23.814723239999996,kg -049fc2a2-a8e3-3a9f-8d4f-69aa880af623,SESCO,II.1.1,Catamarca,AR-K,annual,2010,naphtha combustion consumption by to the public,7.938241079999998,TJ,N2O,0.6,kg/TJ,4.762944647999999,kg -2bc62b49-7661-393e-9af1-5d27891996f1,SESCO,II.1.1,Chaco,AR-H,annual,2010,naphtha combustion consumption by to the public,0.601412427,TJ,CO2,73300.0,kg/TJ,44083.5308991,kg -0441abaa-24a4-3aa8-9f60-486c1dc2fa76,SESCO,II.1.1,Chaco,AR-H,annual,2010,naphtha combustion consumption by to the public,0.601412427,TJ,CH4,3.0,kg/TJ,1.8042372809999998,kg -131ab36b-591e-365b-b1d2-076928ef5d44,SESCO,II.1.1,Chaco,AR-H,annual,2010,naphtha combustion consumption by to the public,0.601412427,TJ,N2O,0.6,kg/TJ,0.36084745619999997,kg -45ac5c38-a295-3816-82e0-85f89fea8a19,SESCO,II.1.1,Córdoba,AR-X,annual,2010,naphtha combustion consumption by to the public,5.137358303,TJ,CO2,73300.0,kg/TJ,376568.3636099,kg -3953cc88-3abd-322e-8f44-1f7101a64867,SESCO,II.1.1,Córdoba,AR-X,annual,2010,naphtha combustion consumption by to the public,5.137358303,TJ,CH4,3.0,kg/TJ,15.412074909000001,kg -3f5749b0-408d-39cc-b63f-d3d502298067,SESCO,II.1.1,Córdoba,AR-X,annual,2010,naphtha combustion consumption by to the public,5.137358303,TJ,N2O,0.6,kg/TJ,3.0824149818,kg -db84d86c-12e4-3f88-a4b3-7b0e1d04c9c1,SESCO,II.1.1,Jujuy,AR-Y,annual,2010,naphtha combustion consumption by to the public,17.577629762,TJ,CO2,73300.0,kg/TJ,1288440.2615546,kg -ead7a34e-2320-32c9-8d04-e952a3794e01,SESCO,II.1.1,Jujuy,AR-Y,annual,2010,naphtha combustion consumption by to the public,17.577629762,TJ,CH4,3.0,kg/TJ,52.732889286,kg -5dc21b8f-b804-3e77-b4a7-af8377937ad9,SESCO,II.1.1,Jujuy,AR-Y,annual,2010,naphtha combustion consumption by to the public,17.577629762,TJ,N2O,0.6,kg/TJ,10.5465778572,kg -84f07d8c-d132-3bcc-8045-c6d7eecc5e3a,SESCO,II.1.1,La Rioja,AR-F,annual,2010,naphtha combustion consumption by to the public,9.741806766999998,TJ,CO2,73300.0,kg/TJ,714074.4360210999,kg -3fc45cfc-f0f5-39cb-af90-fe369383cdda,SESCO,II.1.1,La Rioja,AR-F,annual,2010,naphtha combustion consumption by to the public,9.741806766999998,TJ,CH4,3.0,kg/TJ,29.225420300999993,kg -32954be2-3368-3167-8872-e45269f2d604,SESCO,II.1.1,La Rioja,AR-F,annual,2010,naphtha combustion consumption by to the public,9.741806766999998,TJ,N2O,0.6,kg/TJ,5.845084060199999,kg -b9bdaa30-dba0-3571-8276-c41d8b9c4319,SESCO,II.1.1,Salta,AR-A,annual,2010,naphtha combustion consumption by to the public,43.50585931999999,TJ,CO2,73300.0,kg/TJ,3188979.488155999,kg -7ac0094a-cd37-3a8a-813e-fcf1044fac47,SESCO,II.1.1,Salta,AR-A,annual,2010,naphtha combustion consumption by to the public,43.50585931999999,TJ,CH4,3.0,kg/TJ,130.51757795999998,kg -85f44427-d2f6-32b8-99e5-cf59a12acf00,SESCO,II.1.1,Salta,AR-A,annual,2010,naphtha combustion consumption by to the public,43.50585931999999,TJ,N2O,0.6,kg/TJ,26.103515591999994,kg -4dd69ea6-6f46-36b4-99f4-e577ea7c3296,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2010,naphtha combustion consumption by to the public,16.625645267,TJ,CO2,73300.0,kg/TJ,1218659.7980711,kg -f87fcb43-16cb-3448-8ef0-e2ac8616ed89,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2010,naphtha combustion consumption by to the public,16.625645267,TJ,CH4,3.0,kg/TJ,49.876935801,kg -9089f095-7391-36d9-9532-e0becbc67dac,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2010,naphtha combustion consumption by to the public,16.625645267,TJ,N2O,0.6,kg/TJ,9.975387160199999,kg -e3c58b9e-1163-369a-8e47-5d026749c62b,SESCO,II.1.1,Tucuman,AR-T,annual,2010,naphtha combustion consumption by to the public,82.894511623,TJ,CO2,73300.0,kg/TJ,6076167.7019659,kg -bcb75960-7a90-30fa-a973-442f41ff0538,SESCO,II.1.1,Tucuman,AR-T,annual,2010,naphtha combustion consumption by to the public,82.894511623,TJ,CH4,3.0,kg/TJ,248.683534869,kg -9b001bb5-ce29-3ac4-8be7-78b251261638,SESCO,II.1.1,Tucuman,AR-T,annual,2010,naphtha combustion consumption by to the public,82.894511623,TJ,N2O,0.6,kg/TJ,49.7367069738,kg -25fa6390-3d5c-332b-887e-a075d53de0df,SESCO,II.5.1,Misiones,AR-N,annual,2010,naphtha combustion consumption by agriculture machines,8.3613453,TJ,CO2,73300.0,kg/TJ,612886.61049,kg -f0a0d78c-41a6-3f22-8483-a5dc387d5717,SESCO,II.5.1,Misiones,AR-N,annual,2010,naphtha combustion consumption by agriculture machines,8.3613453,TJ,CH4,3.0,kg/TJ,25.0840359,kg -47f905fc-2ef2-3aea-8e7d-ba07124c83f7,SESCO,II.5.1,Misiones,AR-N,annual,2010,naphtha combustion consumption by agriculture machines,8.3613453,TJ,N2O,0.6,kg/TJ,5.01680718,kg -fb75b335-757f-3888-924d-f127f62986de,SESCO,II.5.1,Capital Federal,AR-C,annual,2010,naphtha combustion consumption by agriculture machines,0.5372752,TJ,CO2,73300.0,kg/TJ,39382.27215999999,kg -34a74087-a231-3b5a-9540-11e177f5eb27,SESCO,II.5.1,Capital Federal,AR-C,annual,2010,naphtha combustion consumption by agriculture machines,0.5372752,TJ,CH4,3.0,kg/TJ,1.6118256,kg -71e467a8-7d76-397c-877f-7e9f0d3ee460,SESCO,II.5.1,Capital Federal,AR-C,annual,2010,naphtha combustion consumption by agriculture machines,0.5372752,TJ,N2O,0.6,kg/TJ,0.32236511999999995,kg -27fb56e9-4246-3bdf-8887-15782830d222,SESCO,II.5.1,Salta,AR-A,annual,2010,naphtha combustion consumption by agriculture machines,0.20147819999999997,TJ,CO2,73300.0,kg/TJ,14768.352059999997,kg -6037b45b-c532-36c7-9ff7-4482a28b06c7,SESCO,II.5.1,Salta,AR-A,annual,2010,naphtha combustion consumption by agriculture machines,0.20147819999999997,TJ,CH4,3.0,kg/TJ,0.6044345999999999,kg -c1c375e4-9ec3-3520-a30a-56874bd11145,SESCO,II.5.1,Salta,AR-A,annual,2010,naphtha combustion consumption by agriculture machines,0.20147819999999997,TJ,N2O,0.6,kg/TJ,0.12088691999999998,kg -6bcb76c6-78a1-37e7-addc-6e15a84a30a3,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,naphtha combustion consumption by to the public,391.4721426,TJ,CO2,73300.0,kg/TJ,28694908.05258,kg -cef9ffe5-b950-39cb-9b62-4fb7ccaddbbd,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,naphtha combustion consumption by to the public,391.4721426,TJ,CH4,3.0,kg/TJ,1174.4164277999998,kg -7fb66fb6-2a00-35c4-b5a2-e50dd89a77c5,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,naphtha combustion consumption by to the public,391.4721426,TJ,N2O,0.6,kg/TJ,234.88328556,kg -55ccfc08-9464-3a1f-9c7c-5eeeecde6b35,SESCO,II.1.1,Capital Federal,AR-C,annual,2010,naphtha combustion consumption by to the public,10.745504,TJ,CO2,73300.0,kg/TJ,787645.4432,kg -15f00c55-7123-3492-a044-1ad56f553ed2,SESCO,II.1.1,Capital Federal,AR-C,annual,2010,naphtha combustion consumption by to the public,10.745504,TJ,CH4,3.0,kg/TJ,32.236512000000005,kg -ae8aba41-1c3d-3473-b340-50f4f929633e,SESCO,II.1.1,Capital Federal,AR-C,annual,2010,naphtha combustion consumption by to the public,10.745504,TJ,N2O,0.6,kg/TJ,6.4473024,kg -7fafaffb-9c67-3181-a413-59c2599c850c,SESCO,II.1.1,Chaco,AR-H,annual,2010,naphtha combustion consumption by to the public,20.3157185,TJ,CO2,73300.0,kg/TJ,1489142.1660499999,kg -e4261cbb-9355-3296-bcd1-0b798259316c,SESCO,II.1.1,Chaco,AR-H,annual,2010,naphtha combustion consumption by to the public,20.3157185,TJ,CH4,3.0,kg/TJ,60.947155499999994,kg -a4c985ef-0809-3cbb-a9fc-9dceb52cb8ed,SESCO,II.1.1,Chaco,AR-H,annual,2010,naphtha combustion consumption by to the public,20.3157185,TJ,N2O,0.6,kg/TJ,12.189431099999998,kg -9fb1ef87-2228-3816-af9b-6c6cbe68823b,SESCO,II.1.1,Chubut,AR-U,annual,2010,naphtha combustion consumption by to the public,8.495664099999999,TJ,CO2,73300.0,kg/TJ,622732.1785299999,kg -6ce06d59-18a3-38c5-87de-6762e4091c7f,SESCO,II.1.1,Chubut,AR-U,annual,2010,naphtha combustion consumption by to the public,8.495664099999999,TJ,CH4,3.0,kg/TJ,25.486992299999997,kg -27efea37-4045-3955-9c14-012fa6eb7649,SESCO,II.1.1,Chubut,AR-U,annual,2010,naphtha combustion consumption by to the public,8.495664099999999,TJ,N2O,0.6,kg/TJ,5.097398459999999,kg -9c9233a4-b90b-39b1-b250-f7962ab77843,SESCO,II.1.1,Corrientes,AR-W,annual,2010,naphtha combustion consumption by to the public,32.505149599999996,TJ,CO2,73300.0,kg/TJ,2382627.46568,kg -4d990097-46ed-3431-8e15-f37520596280,SESCO,II.1.1,Corrientes,AR-W,annual,2010,naphtha combustion consumption by to the public,32.505149599999996,TJ,CH4,3.0,kg/TJ,97.51544879999999,kg -46e0e7e0-37a0-311c-bc76-f13e55c9346c,SESCO,II.1.1,Corrientes,AR-W,annual,2010,naphtha combustion consumption by to the public,32.505149599999996,TJ,N2O,0.6,kg/TJ,19.503089759999998,kg -4f55bd82-fcff-360e-b681-185935593f7b,SESCO,II.1.1,Córdoba,AR-X,annual,2010,naphtha combustion consumption by to the public,29.2479187,TJ,CO2,73300.0,kg/TJ,2143872.4407099998,kg -a2695592-db58-3a5e-839b-a8af74fdf76a,SESCO,II.1.1,Córdoba,AR-X,annual,2010,naphtha combustion consumption by to the public,29.2479187,TJ,CH4,3.0,kg/TJ,87.7437561,kg -ecf348cc-be1b-3f36-aae2-27c8c544481b,SESCO,II.1.1,Córdoba,AR-X,annual,2010,naphtha combustion consumption by to the public,29.2479187,TJ,N2O,0.6,kg/TJ,17.54875122,kg -b7aff69d-6b0a-356f-b62c-5a696ab73704,SESCO,II.1.1,Entre Rios,AR-E,annual,2010,naphtha combustion consumption by to the public,47.0451597,TJ,CO2,73300.0,kg/TJ,3448410.20601,kg -c3419c7f-ae47-3738-9702-67eee515c9fc,SESCO,II.1.1,Entre Rios,AR-E,annual,2010,naphtha combustion consumption by to the public,47.0451597,TJ,CH4,3.0,kg/TJ,141.1354791,kg -d9c03300-21d7-3846-81e5-2061931c4454,SESCO,II.1.1,Entre Rios,AR-E,annual,2010,naphtha combustion consumption by to the public,47.0451597,TJ,N2O,0.6,kg/TJ,28.22709582,kg -1bef7367-53b3-39a6-b1be-8d719f19bcf0,SESCO,II.1.1,Jujuy,AR-Y,annual,2010,naphtha combustion consumption by to the public,4.197462499999999,TJ,CO2,73300.0,kg/TJ,307674.00125,kg -d3e559d2-e6c1-31a4-8196-103369d6206f,SESCO,II.1.1,Jujuy,AR-Y,annual,2010,naphtha combustion consumption by to the public,4.197462499999999,TJ,CH4,3.0,kg/TJ,12.592387499999997,kg -97216b61-e8c2-3ab4-9385-2aec46d68f80,SESCO,II.1.1,Jujuy,AR-Y,annual,2010,naphtha combustion consumption by to the public,4.197462499999999,TJ,N2O,0.6,kg/TJ,2.5184774999999995,kg -9aba0a89-e13c-357d-b9ca-42dccfbefb6c,SESCO,II.1.1,La Pampa,AR-L,annual,2010,naphtha combustion consumption by to the public,12.894604799999998,TJ,CO2,73300.0,kg/TJ,945174.5318399998,kg -df9e51d4-1150-3c73-a19e-f967be2f5d64,SESCO,II.1.1,La Pampa,AR-L,annual,2010,naphtha combustion consumption by to the public,12.894604799999998,TJ,CH4,3.0,kg/TJ,38.683814399999996,kg -10200b75-19fc-3bb4-9036-97a371918156,SESCO,II.1.1,La Pampa,AR-L,annual,2010,naphtha combustion consumption by to the public,12.894604799999998,TJ,N2O,0.6,kg/TJ,7.736762879999999,kg -841c79b7-304b-36e8-82c5-539df20f4161,SESCO,II.1.1,Mendoza,AR-M,annual,2010,naphtha combustion consumption by to the public,38.616654999999994,TJ,CO2,73300.0,kg/TJ,2830600.8114999994,kg -f1b1536d-ef9f-39ab-ae46-e48f530dbf34,SESCO,II.1.1,Mendoza,AR-M,annual,2010,naphtha combustion consumption by to the public,38.616654999999994,TJ,CH4,3.0,kg/TJ,115.84996499999998,kg -744cb17f-5d6b-3d3e-acf5-ee4b0fff2190,SESCO,II.1.1,Mendoza,AR-M,annual,2010,naphtha combustion consumption by to the public,38.616654999999994,TJ,N2O,0.6,kg/TJ,23.169992999999995,kg -f735b99b-23fc-37d6-861a-0359c55d5455,SESCO,II.1.1,Misiones,AR-N,annual,2010,naphtha combustion consumption by to the public,76.12517989999999,TJ,CO2,73300.0,kg/TJ,5579975.68667,kg -6a21a234-a5ca-3173-89a6-2136ccc8ab9d,SESCO,II.1.1,Misiones,AR-N,annual,2010,naphtha combustion consumption by to the public,76.12517989999999,TJ,CH4,3.0,kg/TJ,228.3755397,kg -027604d8-1e46-3a39-ab54-9e1518c5bc3a,SESCO,II.1.1,Misiones,AR-N,annual,2010,naphtha combustion consumption by to the public,76.12517989999999,TJ,N2O,0.6,kg/TJ,45.67510794,kg -08c7e905-8dd9-3577-be87-50f4858921a8,SESCO,II.1.1,Neuquén,AR-Q,annual,2010,naphtha combustion consumption by to the public,28.0054698,TJ,CO2,73300.0,kg/TJ,2052800.93634,kg -64954965-e4a3-3469-86db-9b15d56b9682,SESCO,II.1.1,Neuquén,AR-Q,annual,2010,naphtha combustion consumption by to the public,28.0054698,TJ,CH4,3.0,kg/TJ,84.0164094,kg -3f194673-227c-3280-8c54-335cade9b408,SESCO,II.1.1,Neuquén,AR-Q,annual,2010,naphtha combustion consumption by to the public,28.0054698,TJ,N2O,0.6,kg/TJ,16.80328188,kg -0cf5dad6-23c3-39f5-9914-32107cd3670e,SESCO,II.1.1,Rio Negro,AR-R,annual,2010,naphtha combustion consumption by to the public,35.628061699999996,TJ,CO2,73300.0,kg/TJ,2611536.92261,kg -06ebac53-cbd0-3bca-ae90-a60d75dc61e2,SESCO,II.1.1,Rio Negro,AR-R,annual,2010,naphtha combustion consumption by to the public,35.628061699999996,TJ,CH4,3.0,kg/TJ,106.8841851,kg -48e0d0cf-b20d-387d-a6f3-dd6038d18bd4,SESCO,II.1.1,Rio Negro,AR-R,annual,2010,naphtha combustion consumption by to the public,35.628061699999996,TJ,N2O,0.6,kg/TJ,21.376837019999996,kg -dd12e6b7-bf65-30e8-863e-1ea156af97e5,SESCO,II.1.1,Salta,AR-A,annual,2010,naphtha combustion consumption by to the public,9.2344175,TJ,CO2,73300.0,kg/TJ,676882.8027499999,kg -a4c85ebe-727d-3aac-b883-e3fa8a22a945,SESCO,II.1.1,Salta,AR-A,annual,2010,naphtha combustion consumption by to the public,9.2344175,TJ,CH4,3.0,kg/TJ,27.703252499999998,kg -a7f2195f-709c-3d1e-a18f-bfbde3ebc492,SESCO,II.1.1,Salta,AR-A,annual,2010,naphtha combustion consumption by to the public,9.2344175,TJ,N2O,0.6,kg/TJ,5.540650499999999,kg -3243e2aa-66a2-3b3c-b977-a54393c39048,SESCO,II.1.1,Santa Fe,AR-S,annual,2010,naphtha combustion consumption by to the public,23.304311799999997,TJ,CO2,73300.0,kg/TJ,1708206.0549399997,kg -92dd7b04-fa01-3140-8f2c-e00a920e1f1a,SESCO,II.1.1,Santa Fe,AR-S,annual,2010,naphtha combustion consumption by to the public,23.304311799999997,TJ,CH4,3.0,kg/TJ,69.9129354,kg -097fe3eb-cb04-3a22-871b-9e89a3331a5e,SESCO,II.1.1,Santa Fe,AR-S,annual,2010,naphtha combustion consumption by to the public,23.304311799999997,TJ,N2O,0.6,kg/TJ,13.982587079999998,kg -71853ff0-596a-39c3-a4f5-8b5e6a4f17f5,SESCO,II.1.1,Tucuman,AR-T,annual,2010,naphtha combustion consumption by to the public,15.110864999999999,TJ,CO2,73300.0,kg/TJ,1107626.4045,kg -3553559c-1ad0-3de6-a196-3ad5172832b7,SESCO,II.1.1,Tucuman,AR-T,annual,2010,naphtha combustion consumption by to the public,15.110864999999999,TJ,CH4,3.0,kg/TJ,45.332595,kg -aebdd22c-e7fe-3c01-b4a6-68a288b4930d,SESCO,II.1.1,Tucuman,AR-T,annual,2010,naphtha combustion consumption by to the public,15.110864999999999,TJ,N2O,0.6,kg/TJ,9.066519,kg -92ae5514-20b3-3581-8743-b662fe2f9add,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,naphtha combustion consumption by to the public,9950.0344867,TJ,CO2,73300.0,kg/TJ,729337527.87511,kg -1684a568-8880-306d-867f-9a3001b8b580,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,naphtha combustion consumption by to the public,9950.0344867,TJ,CH4,3.0,kg/TJ,29850.1034601,kg -3e1b6d1a-c0f4-3daf-b143-73c2e8282a5a,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,naphtha combustion consumption by to the public,9950.0344867,TJ,N2O,0.6,kg/TJ,5970.02069202,kg -28b0e6d7-de4a-31be-a167-3d37b4866b6d,SESCO,II.1.1,Capital Federal,AR-C,annual,2010,naphtha combustion consumption by to the public,3493.6319879999996,TJ,CO2,73300.0,kg/TJ,256083224.72039998,kg -d8fafae7-f274-37c1-88ea-840a18b22471,SESCO,II.1.1,Capital Federal,AR-C,annual,2010,naphtha combustion consumption by to the public,3493.6319879999996,TJ,CH4,3.0,kg/TJ,10480.895964,kg -b862b584-3953-36a9-9883-fbf07d3ed1e9,SESCO,II.1.1,Capital Federal,AR-C,annual,2010,naphtha combustion consumption by to the public,3493.6319879999996,TJ,N2O,0.6,kg/TJ,2096.1791928,kg -3ede896b-b802-3b91-9aee-43de35bdd728,SESCO,II.1.1,Catamarca,AR-K,annual,2010,naphtha combustion consumption by to the public,53.022346299999995,TJ,CO2,73300.0,kg/TJ,3886537.9837899995,kg -55a99e6e-4121-3206-8c11-7aa3bacc9f50,SESCO,II.1.1,Catamarca,AR-K,annual,2010,naphtha combustion consumption by to the public,53.022346299999995,TJ,CH4,3.0,kg/TJ,159.0670389,kg -3ce4f45d-8211-3f99-b4d1-761ef24f6947,SESCO,II.1.1,Catamarca,AR-K,annual,2010,naphtha combustion consumption by to the public,53.022346299999995,TJ,N2O,0.6,kg/TJ,31.813407779999995,kg -9c2907db-cefb-3092-afd9-bb7be7848d3c,SESCO,II.1.1,Chaco,AR-H,annual,2010,naphtha combustion consumption by to the public,676.1272594999999,TJ,CO2,73300.0,kg/TJ,49560128.12135,kg -c314489e-5aaf-3f6d-9977-7c9f3db2ac39,SESCO,II.1.1,Chaco,AR-H,annual,2010,naphtha combustion consumption by to the public,676.1272594999999,TJ,CH4,3.0,kg/TJ,2028.3817784999997,kg -02d84d2f-e442-3318-b82c-b5eed3de3abf,SESCO,II.1.1,Chaco,AR-H,annual,2010,naphtha combustion consumption by to the public,676.1272594999999,TJ,N2O,0.6,kg/TJ,405.67635569999993,kg -9993ddc1-e703-3d9c-b8fe-a6ec6ee21097,SESCO,II.1.1,Chubut,AR-U,annual,2010,naphtha combustion consumption by to the public,125.78955619999999,TJ,CO2,73300.0,kg/TJ,9220374.46946,kg -3b381df4-ae2c-3815-b8ff-70df38493fdf,SESCO,II.1.1,Chubut,AR-U,annual,2010,naphtha combustion consumption by to the public,125.78955619999999,TJ,CH4,3.0,kg/TJ,377.3686686,kg -9c669550-90a7-3cbc-bbcc-7a2a6240923a,SESCO,II.1.1,Chubut,AR-U,annual,2010,naphtha combustion consumption by to the public,125.78955619999999,TJ,N2O,0.6,kg/TJ,75.47373372,kg -76a98485-72ea-3f65-afee-408ee6ca9231,SESCO,II.1.1,Corrientes,AR-W,annual,2010,naphtha combustion consumption by to the public,713.2664077,TJ,CO2,73300.0,kg/TJ,52282427.68441,kg -941bf632-2a98-39b1-a40b-6c36fb2973bd,SESCO,II.1.1,Corrientes,AR-W,annual,2010,naphtha combustion consumption by to the public,713.2664077,TJ,CH4,3.0,kg/TJ,2139.7992231,kg -5bccf0c9-7e6b-317b-956c-78ce526520ab,SESCO,II.1.1,Corrientes,AR-W,annual,2010,naphtha combustion consumption by to the public,713.2664077,TJ,N2O,0.6,kg/TJ,427.95984461999996,kg -4fd58930-ed85-3431-87a6-80b2e0ba0c15,SESCO,II.1.1,Córdoba,AR-X,annual,2010,naphtha combustion consumption by to the public,2433.2522213999996,TJ,CO2,73300.0,kg/TJ,178357387.82861996,kg -5571b62d-f16a-3b5b-bf79-04afc24c78d3,SESCO,II.1.1,Córdoba,AR-X,annual,2010,naphtha combustion consumption by to the public,2433.2522213999996,TJ,CH4,3.0,kg/TJ,7299.756664199998,kg -d049905f-af0e-31d7-ad9b-975c5fd046c6,SESCO,II.1.1,Córdoba,AR-X,annual,2010,naphtha combustion consumption by to the public,2433.2522213999996,TJ,N2O,0.6,kg/TJ,1459.9513328399996,kg -8c7d3af5-eec1-354c-b33d-ed043e280b3a,SESCO,II.1.1,Entre Rios,AR-E,annual,2010,naphtha combustion consumption by to the public,764.0053343999999,TJ,CO2,73300.0,kg/TJ,56001591.01151999,kg -15139d76-87d4-3afc-9c9a-3bcecd50230b,SESCO,II.1.1,Entre Rios,AR-E,annual,2010,naphtha combustion consumption by to the public,764.0053343999999,TJ,CH4,3.0,kg/TJ,2292.0160032,kg -38d23de2-3ac3-32f3-8174-236b21105968,SESCO,II.1.1,Entre Rios,AR-E,annual,2010,naphtha combustion consumption by to the public,764.0053343999999,TJ,N2O,0.6,kg/TJ,458.40320063999997,kg -e4bb797f-7b40-3317-bb1a-03bc7501b274,SESCO,II.1.1,Formosa,AR-P,annual,2010,naphtha combustion consumption by to the public,294.4603893,TJ,CO2,73300.0,kg/TJ,21583946.53569,kg -dbaa96c2-08cb-381d-8ea6-9272ea4ca56e,SESCO,II.1.1,Formosa,AR-P,annual,2010,naphtha combustion consumption by to the public,294.4603893,TJ,CH4,3.0,kg/TJ,883.3811678999999,kg -d7ca35f9-91c9-3fac-945f-82abc9a4650c,SESCO,II.1.1,Formosa,AR-P,annual,2010,naphtha combustion consumption by to the public,294.4603893,TJ,N2O,0.6,kg/TJ,176.67623357999997,kg -01ee7675-dc1f-3b2d-bd99-b2a758d76c82,SESCO,II.1.1,Jujuy,AR-Y,annual,2010,naphtha combustion consumption by to the public,204.86974969999997,TJ,CO2,73300.0,kg/TJ,15016952.653009998,kg -d2af4835-e3ba-3b84-b7b2-98cff663d6e1,SESCO,II.1.1,Jujuy,AR-Y,annual,2010,naphtha combustion consumption by to the public,204.86974969999997,TJ,CH4,3.0,kg/TJ,614.6092490999999,kg -218ad84d-5741-3489-8469-a4854cbc0fe5,SESCO,II.1.1,Jujuy,AR-Y,annual,2010,naphtha combustion consumption by to the public,204.86974969999997,TJ,N2O,0.6,kg/TJ,122.92184981999998,kg -b1b34f75-7dbe-3bde-9647-39bbe76c350e,SESCO,II.1.1,La Pampa,AR-L,annual,2010,naphtha combustion consumption by to the public,239.89337679999997,TJ,CO2,73300.0,kg/TJ,17584184.51944,kg -5a5b09bb-33e4-34d0-8d81-d9d522eab2d0,SESCO,II.1.1,La Pampa,AR-L,annual,2010,naphtha combustion consumption by to the public,239.89337679999997,TJ,CH4,3.0,kg/TJ,719.6801303999999,kg -73594f9e-2c26-3b02-b5eb-01fa2db2495c,SESCO,II.1.1,La Pampa,AR-L,annual,2010,naphtha combustion consumption by to the public,239.89337679999997,TJ,N2O,0.6,kg/TJ,143.93602607999998,kg -5f8fabd9-fb1b-3461-8322-2e1b55689bfb,SESCO,II.1.1,La Rioja,AR-F,annual,2010,naphtha combustion consumption by to the public,201.2431421,TJ,CO2,73300.0,kg/TJ,14751122.31593,kg -cfd15500-4154-31cd-aee8-98a6981e28c2,SESCO,II.1.1,La Rioja,AR-F,annual,2010,naphtha combustion consumption by to the public,201.2431421,TJ,CH4,3.0,kg/TJ,603.7294263,kg -b65f60ec-7859-32cb-9a07-6e0626788a1f,SESCO,II.1.1,La Rioja,AR-F,annual,2010,naphtha combustion consumption by to the public,201.2431421,TJ,N2O,0.6,kg/TJ,120.74588526,kg -5ad52130-f729-3103-b02e-07ccf3b42a01,SESCO,II.1.1,Mendoza,AR-M,annual,2010,naphtha combustion consumption by to the public,561.3182651999999,TJ,CO2,73300.0,kg/TJ,41144628.839159995,kg -e2a604a0-6d65-3afc-bf5e-0d357574302d,SESCO,II.1.1,Mendoza,AR-M,annual,2010,naphtha combustion consumption by to the public,561.3182651999999,TJ,CH4,3.0,kg/TJ,1683.9547955999997,kg -fa8be831-6bd5-3add-9335-abd3e0e2b2f1,SESCO,II.1.1,Mendoza,AR-M,annual,2010,naphtha combustion consumption by to the public,561.3182651999999,TJ,N2O,0.6,kg/TJ,336.79095911999997,kg -2784d646-db8b-3e96-9d57-bba7ab09dffa,SESCO,II.1.1,Misiones,AR-N,annual,2010,naphtha combustion consumption by to the public,776.1947654999999,TJ,CO2,73300.0,kg/TJ,56895076.31114999,kg -9892dc11-e081-3bf5-a6f0-1a197e88e984,SESCO,II.1.1,Misiones,AR-N,annual,2010,naphtha combustion consumption by to the public,776.1947654999999,TJ,CH4,3.0,kg/TJ,2328.5842964999997,kg -d3805f76-63d6-339b-ae21-877478206305,SESCO,II.1.1,Misiones,AR-N,annual,2010,naphtha combustion consumption by to the public,776.1947654999999,TJ,N2O,0.6,kg/TJ,465.7168592999999,kg -deb1b3a0-c536-3cd8-beda-a354a4eacccc,SESCO,II.1.1,Neuquén,AR-Q,annual,2010,naphtha combustion consumption by to the public,139.691552,TJ,CO2,73300.0,kg/TJ,10239390.7616,kg -abf0f268-3758-37c9-91c2-9ad816a6d884,SESCO,II.1.1,Neuquén,AR-Q,annual,2010,naphtha combustion consumption by to the public,139.691552,TJ,CH4,3.0,kg/TJ,419.074656,kg -7cdf5d2e-153e-34c7-ae4c-1c024c2b43b1,SESCO,II.1.1,Neuquén,AR-Q,annual,2010,naphtha combustion consumption by to the public,139.691552,TJ,N2O,0.6,kg/TJ,83.8149312,kg -863904c0-ea1c-3bb5-a580-2dbec658d4d7,SESCO,II.1.1,Rio Negro,AR-R,annual,2010,naphtha combustion consumption by to the public,156.9850975,TJ,CO2,73300.0,kg/TJ,11507007.64675,kg -bdd7fab1-5343-3605-80c4-bf8ff7e04fe9,SESCO,II.1.1,Rio Negro,AR-R,annual,2010,naphtha combustion consumption by to the public,156.9850975,TJ,CH4,3.0,kg/TJ,470.9552925,kg -360ac7fb-4486-3294-8e0a-8dc307061203,SESCO,II.1.1,Rio Negro,AR-R,annual,2010,naphtha combustion consumption by to the public,156.9850975,TJ,N2O,0.6,kg/TJ,94.1910585,kg -6fbe2365-63c2-3756-bcb2-17dbef127698,SESCO,II.1.1,Salta,AR-A,annual,2010,naphtha combustion consumption by to the public,265.07815179999994,TJ,CO2,73300.0,kg/TJ,19430228.526939996,kg -ba20de41-765b-3001-a6e8-8d29835ba9bb,SESCO,II.1.1,Salta,AR-A,annual,2010,naphtha combustion consumption by to the public,265.07815179999994,TJ,CH4,3.0,kg/TJ,795.2344553999999,kg -473d7cfb-34de-3018-9e1e-6c18ef2873bf,SESCO,II.1.1,Salta,AR-A,annual,2010,naphtha combustion consumption by to the public,265.07815179999994,TJ,N2O,0.6,kg/TJ,159.04689107999997,kg -c37b0c8c-805b-3d6d-985e-c330795e73e0,SESCO,II.1.1,San Juan,AR-J,annual,2010,naphtha combustion consumption by to the public,223.8087005,TJ,CO2,73300.0,kg/TJ,16405177.74665,kg -7f1f97f4-1fa6-3573-95cf-429bbaf23648,SESCO,II.1.1,San Juan,AR-J,annual,2010,naphtha combustion consumption by to the public,223.8087005,TJ,CH4,3.0,kg/TJ,671.4261015,kg -7619ed87-4876-3994-a9fc-8af3b15e574d,SESCO,II.1.1,San Juan,AR-J,annual,2010,naphtha combustion consumption by to the public,223.8087005,TJ,N2O,0.6,kg/TJ,134.2852203,kg -1b08dff5-be95-3336-a9ae-8b3408e04263,SESCO,II.1.1,San Luis,AR-D,annual,2010,naphtha combustion consumption by to the public,11.182040099999998,TJ,CO2,73300.0,kg/TJ,819643.5393299998,kg -f653c548-3abe-3342-8700-48be6aeccf97,SESCO,II.1.1,San Luis,AR-D,annual,2010,naphtha combustion consumption by to the public,11.182040099999998,TJ,CH4,3.0,kg/TJ,33.5461203,kg -ac804f9f-c69c-3c1d-a27f-543df3aa102d,SESCO,II.1.1,San Luis,AR-D,annual,2010,naphtha combustion consumption by to the public,11.182040099999998,TJ,N2O,0.6,kg/TJ,6.709224059999999,kg -b9dbad25-899b-3fb3-9dd9-50cec56c6709,SESCO,II.1.1,Santa Fe,AR-S,annual,2010,naphtha combustion consumption by to the public,2821.366394,TJ,CO2,73300.0,kg/TJ,206806156.6802,kg -8f5e3e19-af4f-378b-b59e-af7b61950375,SESCO,II.1.1,Santa Fe,AR-S,annual,2010,naphtha combustion consumption by to the public,2821.366394,TJ,CH4,3.0,kg/TJ,8464.099182,kg -fcc85db0-d863-39da-a11d-db17407d07dd,SESCO,II.1.1,Santa Fe,AR-S,annual,2010,naphtha combustion consumption by to the public,2821.366394,TJ,N2O,0.6,kg/TJ,1692.8198364,kg -e24eb1ef-b4e5-3749-9d52-8467120deae0,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2010,naphtha combustion consumption by to the public,286.6363192,TJ,CO2,73300.0,kg/TJ,21010442.19736,kg -b77975a5-6714-3485-aa78-a74595e6ea0c,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2010,naphtha combustion consumption by to the public,286.6363192,TJ,CH4,3.0,kg/TJ,859.9089576,kg -6e194c16-a52f-309d-889c-976b7dd79998,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2010,naphtha combustion consumption by to the public,286.6363192,TJ,N2O,0.6,kg/TJ,171.98179152,kg -a581cc96-d675-3f1d-a3d2-3bc17562f3cb,SESCO,II.1.1,Tucuman,AR-T,annual,2010,naphtha combustion consumption by to the public,519.9144951,TJ,CO2,73300.0,kg/TJ,38109732.49083,kg -ef3e1ea4-a296-3c21-8e14-9355ddea87c7,SESCO,II.1.1,Tucuman,AR-T,annual,2010,naphtha combustion consumption by to the public,519.9144951,TJ,CH4,3.0,kg/TJ,1559.7434853,kg -99c46ebf-eaab-335f-bf22-ae4006a2e89e,SESCO,II.1.1,Tucuman,AR-T,annual,2010,naphtha combustion consumption by to the public,519.9144951,TJ,N2O,0.6,kg/TJ,311.94869706,kg -367bd99a-dbb6-3800-9b50-dffda8ca4205,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,naphtha combustion consumption by to the public,3536.9498009999993,TJ,CO2,73300.0,kg/TJ,259258420.41329995,kg -b2614277-498a-30b6-aabe-61a014e447c6,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,naphtha combustion consumption by to the public,3536.9498009999993,TJ,CH4,3.0,kg/TJ,10610.849402999998,kg -515e73b1-978f-39f0-94e2-7ef6ef25e1ce,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,naphtha combustion consumption by to the public,3536.9498009999993,TJ,N2O,0.6,kg/TJ,2122.1698805999995,kg -2409791e-8867-389c-a65a-b6d4d34cb28a,SESCO,II.1.1,Capital Federal,AR-C,annual,2010,naphtha combustion consumption by to the public,1967.9718981999997,TJ,CO2,73300.0,kg/TJ,144252340.13805997,kg -3f1e650c-9477-3542-8fb2-3486c5e644aa,SESCO,II.1.1,Capital Federal,AR-C,annual,2010,naphtha combustion consumption by to the public,1967.9718981999997,TJ,CH4,3.0,kg/TJ,5903.915694599999,kg -a5c3ea05-4e79-3f05-94b1-36cdb9d824ab,SESCO,II.1.1,Capital Federal,AR-C,annual,2010,naphtha combustion consumption by to the public,1967.9718981999997,TJ,N2O,0.6,kg/TJ,1180.7831389199998,kg -1e42a973-c4cc-343e-82c2-e3134d2106c2,SESCO,II.1.1,Catamarca,AR-K,annual,2010,naphtha combustion consumption by to the public,18.133038,TJ,CO2,73300.0,kg/TJ,1329151.6853999998,kg -719852a9-c62d-3e2b-afe6-0c6a10f21108,SESCO,II.1.1,Catamarca,AR-K,annual,2010,naphtha combustion consumption by to the public,18.133038,TJ,CH4,3.0,kg/TJ,54.399114,kg -bdaee9e2-c840-35a5-a460-ed4895ddd8b0,SESCO,II.1.1,Catamarca,AR-K,annual,2010,naphtha combustion consumption by to the public,18.133038,TJ,N2O,0.6,kg/TJ,10.8798228,kg -505c78c9-27b2-3b1e-a90b-cd7d04305a2d,SESCO,II.1.1,Chaco,AR-H,annual,2010,naphtha combustion consumption by to the public,129.95343899999997,TJ,CO2,73300.0,kg/TJ,9525587.078699999,kg -8a92ad82-b457-3b69-aa95-65efcdd915d4,SESCO,II.1.1,Chaco,AR-H,annual,2010,naphtha combustion consumption by to the public,129.95343899999997,TJ,CH4,3.0,kg/TJ,389.8603169999999,kg -8153f11b-e522-32a8-ac94-3b31da4a89e1,SESCO,II.1.1,Chaco,AR-H,annual,2010,naphtha combustion consumption by to the public,129.95343899999997,TJ,N2O,0.6,kg/TJ,77.97206339999998,kg -f587b596-e747-3ffa-aa57-e5d9ab9f7717,SESCO,II.1.1,Chubut,AR-U,annual,2010,naphtha combustion consumption by to the public,18.0994583,TJ,CO2,73300.0,kg/TJ,1326690.2933899998,kg -3cd5b4be-8bc5-3a42-a78d-0550ecdaf5a1,SESCO,II.1.1,Chubut,AR-U,annual,2010,naphtha combustion consumption by to the public,18.0994583,TJ,CH4,3.0,kg/TJ,54.2983749,kg -8816f51a-13ea-3318-a33e-113217644441,SESCO,II.1.1,Chubut,AR-U,annual,2010,naphtha combustion consumption by to the public,18.0994583,TJ,N2O,0.6,kg/TJ,10.85967498,kg -142a6898-e330-3bc8-8d1e-dea100384957,SESCO,II.1.1,Corrientes,AR-W,annual,2010,naphtha combustion consumption by to the public,109.134025,TJ,CO2,73300.0,kg/TJ,7999524.0325,kg -13f75ce4-be36-3379-8b50-a34b716f60fe,SESCO,II.1.1,Corrientes,AR-W,annual,2010,naphtha combustion consumption by to the public,109.134025,TJ,CH4,3.0,kg/TJ,327.40207499999997,kg -2784e42f-0d73-3997-8ba5-96ee428f2209,SESCO,II.1.1,Corrientes,AR-W,annual,2010,naphtha combustion consumption by to the public,109.134025,TJ,N2O,0.6,kg/TJ,65.480415,kg -a968f95a-8a5b-3318-9823-f46c526b19fb,SESCO,II.1.1,Córdoba,AR-X,annual,2010,naphtha combustion consumption by to the public,616.4225528999999,TJ,CO2,73300.0,kg/TJ,45183773.127569996,kg -1cd13c05-de78-315f-82ab-9c281f10e55c,SESCO,II.1.1,Córdoba,AR-X,annual,2010,naphtha combustion consumption by to the public,616.4225528999999,TJ,CH4,3.0,kg/TJ,1849.2676586999996,kg -c0f6d75b-28ab-3836-a8f8-e8208833574a,SESCO,II.1.1,Córdoba,AR-X,annual,2010,naphtha combustion consumption by to the public,616.4225528999999,TJ,N2O,0.6,kg/TJ,369.85353173999994,kg -277edf10-3286-3750-8d12-02fd5d3667fd,SESCO,II.1.1,Entre Rios,AR-E,annual,2010,naphtha combustion consumption by to the public,209.03363249999998,TJ,CO2,73300.0,kg/TJ,15322165.262249999,kg -9c16fbba-9005-3467-b5da-641db6c5dfae,SESCO,II.1.1,Entre Rios,AR-E,annual,2010,naphtha combustion consumption by to the public,209.03363249999998,TJ,CH4,3.0,kg/TJ,627.1008975,kg -ed1d9980-179e-3709-86eb-b18bb2872d83,SESCO,II.1.1,Entre Rios,AR-E,annual,2010,naphtha combustion consumption by to the public,209.03363249999998,TJ,N2O,0.6,kg/TJ,125.42017949999999,kg -90860d28-0c55-3c04-8eaf-cbae3baba285,SESCO,II.1.1,Formosa,AR-P,annual,2010,naphtha combustion consumption by to the public,77.09899119999999,TJ,CO2,73300.0,kg/TJ,5651356.054959999,kg -855d5698-4214-3707-b8d6-a71cdcfcfe4c,SESCO,II.1.1,Formosa,AR-P,annual,2010,naphtha combustion consumption by to the public,77.09899119999999,TJ,CH4,3.0,kg/TJ,231.29697359999994,kg -1e9f072c-a88e-32ba-b957-4f3df7b4ef65,SESCO,II.1.1,Formosa,AR-P,annual,2010,naphtha combustion consumption by to the public,77.09899119999999,TJ,N2O,0.6,kg/TJ,46.25939471999999,kg -171f8a3c-f947-376b-a97a-4e9255d978ac,SESCO,II.1.1,Jujuy,AR-Y,annual,2010,naphtha combustion consumption by to the public,30.7254255,TJ,CO2,73300.0,kg/TJ,2252173.68915,kg -494c2d12-b93e-38fb-b321-0875805e34fa,SESCO,II.1.1,Jujuy,AR-Y,annual,2010,naphtha combustion consumption by to the public,30.7254255,TJ,CH4,3.0,kg/TJ,92.1762765,kg -b02f0463-8910-3695-adc7-8fc8e76aeeb8,SESCO,II.1.1,Jujuy,AR-Y,annual,2010,naphtha combustion consumption by to the public,30.7254255,TJ,N2O,0.6,kg/TJ,18.435255299999998,kg -c0f1b1ca-cb89-330f-be6b-f5e57dd17d35,SESCO,II.1.1,La Pampa,AR-L,annual,2010,naphtha combustion consumption by to the public,90.83308849999999,TJ,CO2,73300.0,kg/TJ,6658065.387049999,kg -5ac634dd-21d6-3f48-a9af-0d43c3658b78,SESCO,II.1.1,La Pampa,AR-L,annual,2010,naphtha combustion consumption by to the public,90.83308849999999,TJ,CH4,3.0,kg/TJ,272.4992655,kg -adc64f14-397c-301a-abf8-13dca4209761,SESCO,II.1.1,La Pampa,AR-L,annual,2010,naphtha combustion consumption by to the public,90.83308849999999,TJ,N2O,0.6,kg/TJ,54.49985309999999,kg -f615ab3c-8817-3f1b-a3b7-063943821e70,SESCO,II.1.1,La Rioja,AR-F,annual,2010,naphtha combustion consumption by to the public,31.699236799999998,TJ,CO2,73300.0,kg/TJ,2323554.0574399997,kg -e7453c3a-676e-37ec-851d-246d9a57fc9b,SESCO,II.1.1,La Rioja,AR-F,annual,2010,naphtha combustion consumption by to the public,31.699236799999998,TJ,CH4,3.0,kg/TJ,95.0977104,kg -8384a2ae-ea7b-31d0-b160-b8ca21e1f0ea,SESCO,II.1.1,La Rioja,AR-F,annual,2010,naphtha combustion consumption by to the public,31.699236799999998,TJ,N2O,0.6,kg/TJ,19.019542079999997,kg -ac608604-6ae6-3eac-bd7f-cd404593d437,SESCO,II.1.1,Mendoza,AR-M,annual,2010,naphtha combustion consumption by to the public,140.7325227,TJ,CO2,73300.0,kg/TJ,10315693.91391,kg -75d10993-11e8-3287-ac3d-4a08899806fb,SESCO,II.1.1,Mendoza,AR-M,annual,2010,naphtha combustion consumption by to the public,140.7325227,TJ,CH4,3.0,kg/TJ,422.1975681,kg -e006135d-c97c-3c99-af92-7721a5e66c0c,SESCO,II.1.1,Mendoza,AR-M,annual,2010,naphtha combustion consumption by to the public,140.7325227,TJ,N2O,0.6,kg/TJ,84.43951362,kg -d3d486d2-2987-3ded-b381-6c28b01cb460,SESCO,II.1.1,Misiones,AR-N,annual,2010,naphtha combustion consumption by to the public,113.26432809999999,TJ,CO2,73300.0,kg/TJ,8302275.249729999,kg -d81ceb9c-2f03-3f3f-abcc-9087b44339a6,SESCO,II.1.1,Misiones,AR-N,annual,2010,naphtha combustion consumption by to the public,113.26432809999999,TJ,CH4,3.0,kg/TJ,339.79298429999994,kg -e4ac2b49-c5ad-378b-995d-67ab1b60edce,SESCO,II.1.1,Misiones,AR-N,annual,2010,naphtha combustion consumption by to the public,113.26432809999999,TJ,N2O,0.6,kg/TJ,67.95859685999999,kg -99318be6-f8bd-32eb-b717-843ee801f8c8,SESCO,II.1.1,Neuquén,AR-Q,annual,2010,naphtha combustion consumption by to the public,22.6662975,TJ,CO2,73300.0,kg/TJ,1661439.6067499998,kg -8fef138e-f0ec-3eab-852a-9d124cd095ed,SESCO,II.1.1,Neuquén,AR-Q,annual,2010,naphtha combustion consumption by to the public,22.6662975,TJ,CH4,3.0,kg/TJ,67.9988925,kg -d1adf1a2-2fc5-3460-a08d-8c269464da67,SESCO,II.1.1,Neuquén,AR-Q,annual,2010,naphtha combustion consumption by to the public,22.6662975,TJ,N2O,0.6,kg/TJ,13.5997785,kg -b36b9970-8d85-3ead-9bd1-e5cd219c7ba5,SESCO,II.1.1,Rio Negro,AR-R,annual,2010,naphtha combustion consumption by to the public,43.720769399999995,TJ,CO2,73300.0,kg/TJ,3204732.3970199996,kg -02ba82b2-f05f-3ae7-a1b2-ac57bb82febe,SESCO,II.1.1,Rio Negro,AR-R,annual,2010,naphtha combustion consumption by to the public,43.720769399999995,TJ,CH4,3.0,kg/TJ,131.16230819999998,kg -c09eb864-879a-3cd4-815a-2c408f0ed0c4,SESCO,II.1.1,Rio Negro,AR-R,annual,2010,naphtha combustion consumption by to the public,43.720769399999995,TJ,N2O,0.6,kg/TJ,26.232461639999997,kg -baa18a99-61b9-3e8d-b982-700ba57f4a1b,SESCO,II.1.1,Salta,AR-A,annual,2010,naphtha combustion consumption by to the public,51.57841919999999,TJ,CO2,73300.0,kg/TJ,3780698.1273599993,kg -d69656a5-9710-3bc8-b1a1-6553eb1a6ff8,SESCO,II.1.1,Salta,AR-A,annual,2010,naphtha combustion consumption by to the public,51.57841919999999,TJ,CH4,3.0,kg/TJ,154.73525759999998,kg -2f98c421-59cd-3e0d-990b-32deddaaac06,SESCO,II.1.1,Salta,AR-A,annual,2010,naphtha combustion consumption by to the public,51.57841919999999,TJ,N2O,0.6,kg/TJ,30.947051519999995,kg -1c429c38-2187-3428-9a6e-ee6cf8a85edb,SESCO,II.1.1,San Juan,AR-J,annual,2010,naphtha combustion consumption by to the public,22.632717799999998,TJ,CO2,73300.0,kg/TJ,1658978.21474,kg -8b3f5902-3d3e-360c-982d-58c8601b72b2,SESCO,II.1.1,San Juan,AR-J,annual,2010,naphtha combustion consumption by to the public,22.632717799999998,TJ,CH4,3.0,kg/TJ,67.8981534,kg -653e610e-f527-3329-b7a6-1e21dbc05112,SESCO,II.1.1,San Juan,AR-J,annual,2010,naphtha combustion consumption by to the public,22.632717799999998,TJ,N2O,0.6,kg/TJ,13.57963068,kg -e1c2b58c-72c9-3881-94ed-176428320453,SESCO,II.1.1,San Luis,AR-D,annual,2010,naphtha combustion consumption by to the public,6.010766299999999,TJ,CO2,73300.0,kg/TJ,440589.16978999996,kg -62f758c8-87f4-37c0-9494-d4fd0df3de58,SESCO,II.1.1,San Luis,AR-D,annual,2010,naphtha combustion consumption by to the public,6.010766299999999,TJ,CH4,3.0,kg/TJ,18.032298899999997,kg -32c791fe-83da-3faa-a6f5-701fa88f784d,SESCO,II.1.1,San Luis,AR-D,annual,2010,naphtha combustion consumption by to the public,6.010766299999999,TJ,N2O,0.6,kg/TJ,3.6064597799999993,kg -dd8004e1-153b-370b-8e76-b5e4dbf7dc40,SESCO,II.1.1,Santa Fe,AR-S,annual,2010,naphtha combustion consumption by to the public,947.4512354999999,TJ,CO2,73300.0,kg/TJ,69448175.56215,kg -7609eb31-ee5a-3055-b6df-49c607e55cd4,SESCO,II.1.1,Santa Fe,AR-S,annual,2010,naphtha combustion consumption by to the public,947.4512354999999,TJ,CH4,3.0,kg/TJ,2842.3537065,kg -f4b6e4ec-95e7-3e4b-9d63-6c01d3f01d2e,SESCO,II.1.1,Santa Fe,AR-S,annual,2010,naphtha combustion consumption by to the public,947.4512354999999,TJ,N2O,0.6,kg/TJ,568.4707413,kg -9b9ef1aa-fd94-3a6f-8d74-a7de3d188ad7,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2010,naphtha combustion consumption by to the public,80.7927582,TJ,CO2,73300.0,kg/TJ,5922109.1760599995,kg -ee5a693b-ac7a-32e4-a0d7-000140baa181,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2010,naphtha combustion consumption by to the public,80.7927582,TJ,CH4,3.0,kg/TJ,242.3782746,kg -1ae1b7fa-72f4-3855-855f-866eb9f99266,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2010,naphtha combustion consumption by to the public,80.7927582,TJ,N2O,0.6,kg/TJ,48.47565492,kg -04d51342-c343-3c3b-b925-850ab6e3c24a,SESCO,II.1.1,Tucuman,AR-T,annual,2010,naphtha combustion consumption by to the public,122.36442679999999,TJ,CO2,73300.0,kg/TJ,8969312.484439999,kg -063ffe5d-df44-325d-acc7-eb231d06575a,SESCO,II.1.1,Tucuman,AR-T,annual,2010,naphtha combustion consumption by to the public,122.36442679999999,TJ,CH4,3.0,kg/TJ,367.09328039999997,kg -29b7bfb1-052c-3028-92ba-3367d0631aaf,SESCO,II.1.1,Tucuman,AR-T,annual,2010,naphtha combustion consumption by to the public,122.36442679999999,TJ,N2O,0.6,kg/TJ,73.41865607999999,kg -6302ae2c-502e-3b2f-909b-89311d56169c,SESCO,II.2.1,Buenos Aires,AR-B,annual,2010,naphtha combustion consumption by railway transport,183.00936499999997,TJ,CO2,73300.0,kg/TJ,13414586.454499997,kg -f7d7dfb0-594f-3a65-bb4e-1e8bbe98586d,SESCO,II.2.1,Buenos Aires,AR-B,annual,2010,naphtha combustion consumption by railway transport,183.00936499999997,TJ,CH4,3.0,kg/TJ,549.0280949999999,kg -d1915715-d5e6-36ab-9f52-650613d52d66,SESCO,II.2.1,Buenos Aires,AR-B,annual,2010,naphtha combustion consumption by railway transport,183.00936499999997,TJ,N2O,0.6,kg/TJ,109.80561899999998,kg -c16750c4-ef92-3462-945c-3a5d78d1f655,SESCO,II.5.1,Buenos Aires,AR-B,annual,2010,naphtha combustion consumption by agriculture machines,1.9476225999999999,TJ,CO2,73300.0,kg/TJ,142760.73658,kg -8cfdda35-414e-3016-8800-b003f638c903,SESCO,II.5.1,Buenos Aires,AR-B,annual,2010,naphtha combustion consumption by agriculture machines,1.9476225999999999,TJ,CH4,3.0,kg/TJ,5.8428678,kg -82d13313-129b-3654-8f3d-2c5867480de0,SESCO,II.5.1,Buenos Aires,AR-B,annual,2010,naphtha combustion consumption by agriculture machines,1.9476225999999999,TJ,N2O,0.6,kg/TJ,1.1685735599999998,kg -a64385a8-61f0-3555-b5d7-f3782c006411,SESCO,II.5.1,Entre Rios,AR-E,annual,2010,naphtha combustion consumption by agriculture machines,1.1081301000000001,TJ,CO2,73300.0,kg/TJ,81225.93633000001,kg -ce7877c6-e415-3588-ac5b-fa194041e742,SESCO,II.5.1,Entre Rios,AR-E,annual,2010,naphtha combustion consumption by agriculture machines,1.1081301000000001,TJ,CH4,3.0,kg/TJ,3.3243903,kg -21abe357-5050-3ec9-87ff-22d376f7eeb6,SESCO,II.5.1,Entre Rios,AR-E,annual,2010,naphtha combustion consumption by agriculture machines,1.1081301000000001,TJ,N2O,0.6,kg/TJ,0.66487806,kg -577750b6-6327-3fd8-b013-c40de3be7d32,SESCO,II.5.1,Santa Fe,AR-S,annual,2010,naphtha combustion consumption by agriculture machines,20.8529937,TJ,CO2,73300.0,kg/TJ,1528524.4382099998,kg -11971d09-7a55-3c06-bc1c-23ee394b8fa6,SESCO,II.5.1,Santa Fe,AR-S,annual,2010,naphtha combustion consumption by agriculture machines,20.8529937,TJ,CH4,3.0,kg/TJ,62.5589811,kg -e9692cef-c99e-3532-8aaf-630876f4e542,SESCO,II.5.1,Santa Fe,AR-S,annual,2010,naphtha combustion consumption by agriculture machines,20.8529937,TJ,N2O,0.6,kg/TJ,12.511796219999999,kg -90888e80-6ed0-36bb-8b8c-f51823ac9252,SESCO,II.5.1,Santiago del Estero,AR-G,annual,2010,naphtha combustion consumption by agriculture machines,0.5036955,TJ,CO2,73300.0,kg/TJ,36920.88015,kg -d51600a5-b12f-3378-a214-172ae8844bb4,SESCO,II.5.1,Santiago del Estero,AR-G,annual,2010,naphtha combustion consumption by agriculture machines,0.5036955,TJ,CH4,3.0,kg/TJ,1.5110864999999998,kg -6ce5a287-d475-36eb-89c5-8236be97ba39,SESCO,II.5.1,Santiago del Estero,AR-G,annual,2010,naphtha combustion consumption by agriculture machines,0.5036955,TJ,N2O,0.6,kg/TJ,0.30221729999999997,kg -0a7c9643-5398-3518-a8df-5eb8b5742cd3,SESCO,II.5.1,Buenos Aires,AR-B,annual,2010,naphtha combustion consumption by agriculture machines,0.1678985,TJ,CO2,73300.0,kg/TJ,12306.96005,kg -f371ee52-8a7c-37e6-8397-2c731e62aa0f,SESCO,II.5.1,Buenos Aires,AR-B,annual,2010,naphtha combustion consumption by agriculture machines,0.1678985,TJ,CH4,3.0,kg/TJ,0.5036955000000001,kg -f90aecbf-4bee-3bb3-8364-b3d8cde582d0,SESCO,II.5.1,Buenos Aires,AR-B,annual,2010,naphtha combustion consumption by agriculture machines,0.1678985,TJ,N2O,0.6,kg/TJ,0.1007391,kg -5873c75a-dc4d-3bd4-8418-ea52a2e55b1d,SESCO,II.5.1,Entre Rios,AR-E,annual,2010,naphtha combustion consumption by agriculture machines,0.2350579,TJ,CO2,73300.0,kg/TJ,17229.74407,kg -5ad9d8e0-0ad7-3510-88cc-2d5fd048f309,SESCO,II.5.1,Entre Rios,AR-E,annual,2010,naphtha combustion consumption by agriculture machines,0.2350579,TJ,CH4,3.0,kg/TJ,0.7051737,kg -be0183b6-2882-3d46-bd52-aafd41f6e7ca,SESCO,II.5.1,Entre Rios,AR-E,annual,2010,naphtha combustion consumption by agriculture machines,0.2350579,TJ,N2O,0.6,kg/TJ,0.14103474,kg -0adda0b6-ea06-3046-a5f8-215ac4d5aba4,SESCO,II.5.1,Santa Fe,AR-S,annual,2010,naphtha combustion consumption by agriculture machines,2.1155211,TJ,CO2,73300.0,kg/TJ,155067.69663,kg -5731e6dd-9b0c-3d84-8f61-58fe850a9d5e,SESCO,II.5.1,Santa Fe,AR-S,annual,2010,naphtha combustion consumption by agriculture machines,2.1155211,TJ,CH4,3.0,kg/TJ,6.3465633,kg -6b9fc178-809e-3c98-95aa-11b5f3a70c4d,SESCO,II.5.1,Santa Fe,AR-S,annual,2010,naphtha combustion consumption by agriculture machines,2.1155211,TJ,N2O,0.6,kg/TJ,1.26931266,kg -bb7ed017-db10-32ba-8ec6-d2acdc467f7b,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,naphtha combustion consumption by to the public,1419.8504550999999,TJ,CO2,73300.0,kg/TJ,104075038.35882999,kg -b34b2f8e-e96c-31b5-a017-6bcbc039f5ca,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,naphtha combustion consumption by to the public,1419.8504550999999,TJ,CH4,3.0,kg/TJ,4259.5513653,kg -826c5bbe-8bd5-3173-9675-1999b90c3118,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,naphtha combustion consumption by to the public,1419.8504550999999,TJ,N2O,0.6,kg/TJ,851.9102730599999,kg -f60fc9ed-7e58-3a12-89be-c0dadf0b669f,SESCO,II.1.1,Capital Federal,AR-C,annual,2010,naphtha combustion consumption by to the public,52.451491399999995,TJ,CO2,73300.0,kg/TJ,3844694.3196199997,kg -ad83d8a5-7f69-3804-a595-169714f0f50d,SESCO,II.1.1,Capital Federal,AR-C,annual,2010,naphtha combustion consumption by to the public,52.451491399999995,TJ,CH4,3.0,kg/TJ,157.35447419999997,kg -36937352-1fac-33b0-b049-81c5d05ab274,SESCO,II.1.1,Capital Federal,AR-C,annual,2010,naphtha combustion consumption by to the public,52.451491399999995,TJ,N2O,0.6,kg/TJ,31.470894839999996,kg -d01a8223-9536-356b-b911-29b51f4ad6f3,SESCO,II.1.1,Catamarca,AR-K,annual,2010,naphtha combustion consumption by to the public,0.40295639999999994,TJ,CO2,73300.0,kg/TJ,29536.704119999995,kg -c5385c6a-1d66-3540-8a82-cb3de7b4605d,SESCO,II.1.1,Catamarca,AR-K,annual,2010,naphtha combustion consumption by to the public,0.40295639999999994,TJ,CH4,3.0,kg/TJ,1.2088691999999999,kg -0ce9d564-1fe8-37aa-b35b-4db985ff1679,SESCO,II.1.1,Catamarca,AR-K,annual,2010,naphtha combustion consumption by to the public,0.40295639999999994,TJ,N2O,0.6,kg/TJ,0.24177383999999996,kg -2510a609-29d5-3d2e-bd3c-18efb4ddfbf4,SESCO,II.1.1,Chaco,AR-H,annual,2010,naphtha combustion consumption by to the public,7.824070099999999,TJ,CO2,73300.0,kg/TJ,573504.3383299999,kg -b951399f-07ec-3d30-950b-8096bda87f4d,SESCO,II.1.1,Chaco,AR-H,annual,2010,naphtha combustion consumption by to the public,7.824070099999999,TJ,CH4,3.0,kg/TJ,23.472210299999997,kg -154e9751-053b-3d95-85a9-b942b512f9f5,SESCO,II.1.1,Chaco,AR-H,annual,2010,naphtha combustion consumption by to the public,7.824070099999999,TJ,N2O,0.6,kg/TJ,4.694442059999999,kg -43799a36-6be5-3d39-98e6-a191e57eb5cf,SESCO,II.1.1,Corrientes,AR-W,annual,2010,naphtha combustion consumption by to the public,45.366174699999995,TJ,CO2,73300.0,kg/TJ,3325340.6055099997,kg -cf2b3971-b221-3d87-8c48-e727729303b1,SESCO,II.1.1,Corrientes,AR-W,annual,2010,naphtha combustion consumption by to the public,45.366174699999995,TJ,CH4,3.0,kg/TJ,136.0985241,kg -681632aa-441d-3b25-8412-c80afcc7c215,SESCO,II.1.1,Corrientes,AR-W,annual,2010,naphtha combustion consumption by to the public,45.366174699999995,TJ,N2O,0.6,kg/TJ,27.219704819999997,kg -539b2cd7-7ace-3741-87cc-1108435ce4f7,SESCO,II.1.1,Entre Rios,AR-E,annual,2010,naphtha combustion consumption by to the public,127.43496149999999,TJ,CO2,73300.0,kg/TJ,9340982.677949999,kg -31fbf71f-1098-3a82-b9ae-68a518666c66,SESCO,II.1.1,Entre Rios,AR-E,annual,2010,naphtha combustion consumption by to the public,127.43496149999999,TJ,CH4,3.0,kg/TJ,382.30488449999996,kg -f00342fd-a4c9-3e05-a010-9b251c272110,SESCO,II.1.1,Entre Rios,AR-E,annual,2010,naphtha combustion consumption by to the public,127.43496149999999,TJ,N2O,0.6,kg/TJ,76.46097689999999,kg -0e23ecfe-b8f3-3fd1-bb10-e1c37dfd2636,SESCO,II.1.1,Jujuy,AR-Y,annual,2010,naphtha combustion consumption by to the public,106.783446,TJ,CO2,73300.0,kg/TJ,7827226.5918,kg -f326ccd4-419e-39a2-945b-0bae38219f04,SESCO,II.1.1,Jujuy,AR-Y,annual,2010,naphtha combustion consumption by to the public,106.783446,TJ,CH4,3.0,kg/TJ,320.35033799999997,kg -8d08e153-0e53-3d24-90dd-9133ad561b33,SESCO,II.1.1,Jujuy,AR-Y,annual,2010,naphtha combustion consumption by to the public,106.783446,TJ,N2O,0.6,kg/TJ,64.0700676,kg -1f6dcb14-f609-3700-acbb-e613e49e3730,SESCO,II.1.1,La Pampa,AR-L,annual,2010,naphtha combustion consumption by to the public,82.4045838,TJ,CO2,73300.0,kg/TJ,6040255.99254,kg -91394f59-82ac-33b9-808e-30819693940c,SESCO,II.1.1,La Pampa,AR-L,annual,2010,naphtha combustion consumption by to the public,82.4045838,TJ,CH4,3.0,kg/TJ,247.21375139999998,kg -34ddff67-c9c4-3a96-82da-e79b24cca994,SESCO,II.1.1,La Pampa,AR-L,annual,2010,naphtha combustion consumption by to the public,82.4045838,TJ,N2O,0.6,kg/TJ,49.44275028,kg -7df73e09-88d1-3fae-b7df-c329803987e8,SESCO,II.1.1,Misiones,AR-N,annual,2010,naphtha combustion consumption by to the public,435.8980856999999,TJ,CO2,73300.0,kg/TJ,31951329.68180999,kg -466e2127-6114-3e46-80bd-4f45ce572298,SESCO,II.1.1,Misiones,AR-N,annual,2010,naphtha combustion consumption by to the public,435.8980856999999,TJ,CH4,3.0,kg/TJ,1307.6942570999997,kg -f4ac3847-5fc3-332c-8813-69e114eb8032,SESCO,II.1.1,Misiones,AR-N,annual,2010,naphtha combustion consumption by to the public,435.8980856999999,TJ,N2O,0.6,kg/TJ,261.53885141999996,kg -2abaaa45-2368-38a4-a454-7dc42848b9fe,SESCO,II.1.1,Neuquén,AR-Q,annual,2010,naphtha combustion consumption by to the public,51.041143999999996,TJ,CO2,73300.0,kg/TJ,3741315.8551999996,kg -2791425c-deae-3717-bd43-a7f2b7e55861,SESCO,II.1.1,Neuquén,AR-Q,annual,2010,naphtha combustion consumption by to the public,51.041143999999996,TJ,CH4,3.0,kg/TJ,153.12343199999998,kg -ee48b1f7-a058-30f5-b7ba-fc8998e52d02,SESCO,II.1.1,Neuquén,AR-Q,annual,2010,naphtha combustion consumption by to the public,51.041143999999996,TJ,N2O,0.6,kg/TJ,30.624686399999995,kg -5af1968c-0d89-3fb3-b816-a6fb7ca92dd1,SESCO,II.1.1,Rio Negro,AR-R,annual,2010,naphtha combustion consumption by to the public,19.7784433,TJ,CO2,73300.0,kg/TJ,1449759.89389,kg -00d8785b-90bf-3d08-ac53-b2e3bc9d1227,SESCO,II.1.1,Rio Negro,AR-R,annual,2010,naphtha combustion consumption by to the public,19.7784433,TJ,CH4,3.0,kg/TJ,59.3353299,kg -a4645699-b696-3a96-9af5-5401e8ea82e1,SESCO,II.1.1,Rio Negro,AR-R,annual,2010,naphtha combustion consumption by to the public,19.7784433,TJ,N2O,0.6,kg/TJ,11.86706598,kg -bd9828a5-2bb2-3693-86e1-0ed097637f20,SESCO,II.1.1,Salta,AR-A,annual,2010,naphtha combustion consumption by to the public,57.5891855,TJ,CO2,73300.0,kg/TJ,4221287.29715,kg -5e8f0d45-b773-3a86-b778-163a5284afad,SESCO,II.1.1,Salta,AR-A,annual,2010,naphtha combustion consumption by to the public,57.5891855,TJ,CH4,3.0,kg/TJ,172.7675565,kg -7c769689-7137-3eea-bfa7-8c93510e64d6,SESCO,II.1.1,Salta,AR-A,annual,2010,naphtha combustion consumption by to the public,57.5891855,TJ,N2O,0.6,kg/TJ,34.5535113,kg -edcd9918-3cc7-30a5-a145-9e96dd769a1c,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2010,naphtha combustion consumption by to the public,5.809288099999999,TJ,CO2,73300.0,kg/TJ,425820.81772999995,kg -73a836d5-b8af-37c6-a04e-2e5f5013188c,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2010,naphtha combustion consumption by to the public,5.809288099999999,TJ,CH4,3.0,kg/TJ,17.427864299999996,kg -e1b57e66-57a3-358d-a800-5822151e409e,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2010,naphtha combustion consumption by to the public,5.809288099999999,TJ,N2O,0.6,kg/TJ,3.485572859999999,kg -57e40727-fd0f-3a5a-b97f-733e2fe87572,SESCO,II.1.1,Santa Fe,AR-S,annual,2010,naphtha combustion consumption by to the public,115.3798492,TJ,CO2,73300.0,kg/TJ,8457342.94636,kg -048812f3-c9c8-396f-a297-7fd35331cb92,SESCO,II.1.1,Santa Fe,AR-S,annual,2010,naphtha combustion consumption by to the public,115.3798492,TJ,CH4,3.0,kg/TJ,346.1395476,kg -6f730b2e-67f8-3ace-b973-1ea960fb69c5,SESCO,II.1.1,Santa Fe,AR-S,annual,2010,naphtha combustion consumption by to the public,115.3798492,TJ,N2O,0.6,kg/TJ,69.22790952,kg -8ceeb229-4795-34a5-b654-7cc680e364c3,SESCO,II.1.1,Tucuman,AR-T,annual,2010,naphtha combustion consumption by to the public,30.926903699999997,TJ,CO2,73300.0,kg/TJ,2266942.04121,kg -79ced93b-975a-39d2-adc5-2962e5d94bcf,SESCO,II.1.1,Tucuman,AR-T,annual,2010,naphtha combustion consumption by to the public,30.926903699999997,TJ,CH4,3.0,kg/TJ,92.78071109999999,kg -a305d156-bf43-379a-b7bf-4269fb81af81,SESCO,II.1.1,Tucuman,AR-T,annual,2010,naphtha combustion consumption by to the public,30.926903699999997,TJ,N2O,0.6,kg/TJ,18.556142219999998,kg -af81fa51-4080-34ce-9389-095f82c4df44,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,naphtha combustion consumption by to the public,30630.059151999998,TJ,CO2,73300.0,kg/TJ,2245183335.8416,kg -a459bfa5-abb0-32f9-b2f7-856ee528a0e2,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,naphtha combustion consumption by to the public,30630.059151999998,TJ,CH4,3.0,kg/TJ,91890.17745599999,kg -8125f0da-04a7-378a-b473-6d45c83651ed,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,naphtha combustion consumption by to the public,30630.059151999998,TJ,N2O,0.6,kg/TJ,18378.035491199997,kg -2e1a6cde-e228-3e7a-8e08-a136080f5fde,SESCO,II.1.1,Capital Federal,AR-C,annual,2010,naphtha combustion consumption by to the public,7131.2537296,TJ,CO2,73300.0,kg/TJ,522720898.37968,kg -3ad316bc-38ed-3972-b29c-ca1843415664,SESCO,II.1.1,Capital Federal,AR-C,annual,2010,naphtha combustion consumption by to the public,7131.2537296,TJ,CH4,3.0,kg/TJ,21393.7611888,kg -37e81de6-16f8-3a51-975e-5a3e653872ad,SESCO,II.1.1,Capital Federal,AR-C,annual,2010,naphtha combustion consumption by to the public,7131.2537296,TJ,N2O,0.6,kg/TJ,4278.75223776,kg -89466f86-ab18-3cf8-aaf5-d63db9909f2d,SESCO,II.1.1,Catamarca,AR-K,annual,2010,naphtha combustion consumption by to the public,539.5921993,TJ,CO2,73300.0,kg/TJ,39552108.208689995,kg -4073544d-8110-3e73-a873-005b37130414,SESCO,II.1.1,Catamarca,AR-K,annual,2010,naphtha combustion consumption by to the public,539.5921993,TJ,CH4,3.0,kg/TJ,1618.7765978999998,kg -fa202120-fd4c-3c47-af6c-1912878bc1ef,SESCO,II.1.1,Catamarca,AR-K,annual,2010,naphtha combustion consumption by to the public,539.5921993,TJ,N2O,0.6,kg/TJ,323.75531957999993,kg -24295bec-0d07-329b-87d9-84017959395c,SESCO,II.1.1,Chaco,AR-H,annual,2010,naphtha combustion consumption by to the public,1859.0393514,TJ,CO2,73300.0,kg/TJ,136267584.45762,kg -5253cc08-aec0-3a23-a4cf-4573dda9650a,SESCO,II.1.1,Chaco,AR-H,annual,2010,naphtha combustion consumption by to the public,1859.0393514,TJ,CH4,3.0,kg/TJ,5577.1180542,kg -72892866-28a2-3d4d-b565-78b6b79d47a1,SESCO,II.1.1,Chaco,AR-H,annual,2010,naphtha combustion consumption by to the public,1859.0393514,TJ,N2O,0.6,kg/TJ,1115.42361084,kg -d5b15eaa-bf66-3656-91a6-b0d033419c8d,SESCO,II.1.1,Chubut,AR-U,annual,2010,naphtha combustion consumption by to the public,3140.4742830999994,TJ,CO2,73300.0,kg/TJ,230196764.95122996,kg -5751de0b-b780-33ff-8826-d2de4d4890d3,SESCO,II.1.1,Chubut,AR-U,annual,2010,naphtha combustion consumption by to the public,3140.4742830999994,TJ,CH4,3.0,kg/TJ,9421.422849299997,kg -6f4bc9b6-b687-3c31-9766-9cd821d5a920,SESCO,II.1.1,Chubut,AR-U,annual,2010,naphtha combustion consumption by to the public,3140.4742830999994,TJ,N2O,0.6,kg/TJ,1884.2845698599995,kg -97d1da8f-eb77-3f24-8dd1-61196ee3adb8,SESCO,II.1.1,Corrientes,AR-W,annual,2010,naphtha combustion consumption by to the public,2048.697497,TJ,CO2,73300.0,kg/TJ,150169526.53010002,kg -5775825c-1ee6-39ad-8c18-d80ddfdd8520,SESCO,II.1.1,Corrientes,AR-W,annual,2010,naphtha combustion consumption by to the public,2048.697497,TJ,CH4,3.0,kg/TJ,6146.092491,kg -2d744d33-1088-30b1-a625-b9072ac4558f,SESCO,II.1.1,Corrientes,AR-W,annual,2010,naphtha combustion consumption by to the public,2048.697497,TJ,N2O,0.6,kg/TJ,1229.2184982,kg -5d3e3e15-db5a-32d8-9672-66055ab5a6e4,SESCO,II.1.1,Córdoba,AR-X,annual,2010,naphtha combustion consumption by to the public,8019.000258499999,TJ,CO2,73300.0,kg/TJ,587792718.9480499,kg -30d61796-5681-3f18-93f2-0969fa9f59ae,SESCO,II.1.1,Córdoba,AR-X,annual,2010,naphtha combustion consumption by to the public,8019.000258499999,TJ,CH4,3.0,kg/TJ,24057.000775499997,kg -3dd33955-e8ff-3387-8ccf-53e1d4d25770,SESCO,II.1.1,Córdoba,AR-X,annual,2010,naphtha combustion consumption by to the public,8019.000258499999,TJ,N2O,0.6,kg/TJ,4811.400155099999,kg -bafe3d9c-8883-3675-bfee-f62fc3fb816c,SESCO,II.1.1,Entre Rios,AR-E,annual,2010,naphtha combustion consumption by to the public,2287.8857000999997,TJ,CO2,73300.0,kg/TJ,167702021.81732997,kg -b4adf16e-7bea-39c6-aad4-cb4c69093caf,SESCO,II.1.1,Entre Rios,AR-E,annual,2010,naphtha combustion consumption by to the public,2287.8857000999997,TJ,CH4,3.0,kg/TJ,6863.657100299999,kg -ef93603c-e37b-38db-8ff2-91f1ea44b730,SESCO,II.1.1,Entre Rios,AR-E,annual,2010,naphtha combustion consumption by to the public,2287.8857000999997,TJ,N2O,0.6,kg/TJ,1372.7314200599997,kg -214bec74-f3af-3f00-9ec8-5ab905c71f82,SESCO,II.1.1,Formosa,AR-P,annual,2010,naphtha combustion consumption by to the public,791.6414275,TJ,CO2,73300.0,kg/TJ,58027316.635749996,kg -cdb8af86-64b4-321d-aca7-1a6bd6bc7573,SESCO,II.1.1,Formosa,AR-P,annual,2010,naphtha combustion consumption by to the public,791.6414275,TJ,CH4,3.0,kg/TJ,2374.9242825,kg -65381e74-ef19-3002-b654-995efe99ee46,SESCO,II.1.1,Formosa,AR-P,annual,2010,naphtha combustion consumption by to the public,791.6414275,TJ,N2O,0.6,kg/TJ,474.9848565,kg -64575015-9cb1-397d-a4aa-d2696e285391,SESCO,II.1.1,Jujuy,AR-Y,annual,2010,naphtha combustion consumption by to the public,797.4842953,TJ,CO2,73300.0,kg/TJ,58455598.84549,kg -308b5de5-fc51-3e3d-9da9-fc0d1f576405,SESCO,II.1.1,Jujuy,AR-Y,annual,2010,naphtha combustion consumption by to the public,797.4842953,TJ,CH4,3.0,kg/TJ,2392.4528859,kg -848a37a7-a87b-3968-90f5-2b45b78744a1,SESCO,II.1.1,Jujuy,AR-Y,annual,2010,naphtha combustion consumption by to the public,797.4842953,TJ,N2O,0.6,kg/TJ,478.49057717999995,kg -289b2dbd-15ba-3d53-967c-73bf42e0f6e4,SESCO,II.1.1,La Pampa,AR-L,annual,2010,naphtha combustion consumption by to the public,1263.8055891999998,TJ,CO2,73300.0,kg/TJ,92636949.68835998,kg -98f73b3b-d118-33e2-ad92-ce0c0abdcbd4,SESCO,II.1.1,La Pampa,AR-L,annual,2010,naphtha combustion consumption by to the public,1263.8055891999998,TJ,CH4,3.0,kg/TJ,3791.4167675999993,kg -0d70c92f-2def-3a67-b2ee-4e6a788d84dd,SESCO,II.1.1,La Pampa,AR-L,annual,2010,naphtha combustion consumption by to the public,1263.8055891999998,TJ,N2O,0.6,kg/TJ,758.2833535199999,kg -fa5d78c3-af3e-3cb8-9733-ded69087bc1c,SESCO,II.1.1,La Rioja,AR-F,annual,2010,naphtha combustion consumption by to the public,763.3337403999999,TJ,CO2,73300.0,kg/TJ,55952363.17131999,kg -88834bec-3bda-32aa-ae58-df86b6be7926,SESCO,II.1.1,La Rioja,AR-F,annual,2010,naphtha combustion consumption by to the public,763.3337403999999,TJ,CH4,3.0,kg/TJ,2290.0012211999997,kg -84ccb90e-7a07-3708-a25e-a017ec0da799,SESCO,II.1.1,La Rioja,AR-F,annual,2010,naphtha combustion consumption by to the public,763.3337403999999,TJ,N2O,0.6,kg/TJ,458.0002442399999,kg -d9863257-c3fc-3539-8e00-a124fa86cae7,SESCO,II.1.1,Mendoza,AR-M,annual,2010,naphtha combustion consumption by to the public,3882.4177545999996,TJ,CO2,73300.0,kg/TJ,284581221.41217995,kg -39028f0d-221c-31c9-9635-8096567f1ff1,SESCO,II.1.1,Mendoza,AR-M,annual,2010,naphtha combustion consumption by to the public,3882.4177545999996,TJ,CH4,3.0,kg/TJ,11647.2532638,kg -0ec9b3f3-4d8f-365c-a684-4d6d71179c69,SESCO,II.1.1,Mendoza,AR-M,annual,2010,naphtha combustion consumption by to the public,3882.4177545999996,TJ,N2O,0.6,kg/TJ,2329.4506527599997,kg -47ee55a9-c26d-3848-93cc-669d7dcaabf7,SESCO,II.1.1,Misiones,AR-N,annual,2010,naphtha combustion consumption by to the public,2418.074197,TJ,CO2,73300.0,kg/TJ,177244838.6401,kg -73e6712e-eff5-3693-b444-59f4f2593832,SESCO,II.1.1,Misiones,AR-N,annual,2010,naphtha combustion consumption by to the public,2418.074197,TJ,CH4,3.0,kg/TJ,7254.222591,kg -0dc7e8f5-e2da-35d9-81bc-51085a075264,SESCO,II.1.1,Misiones,AR-N,annual,2010,naphtha combustion consumption by to the public,2418.074197,TJ,N2O,0.6,kg/TJ,1450.8445181999998,kg -687b0cce-a812-3f8b-b26b-62f686b8505a,SESCO,II.1.1,Neuquén,AR-Q,annual,2010,naphtha combustion consumption by to the public,2431.1367003,TJ,CO2,73300.0,kg/TJ,178202320.13199002,kg -7ad539e1-d45f-3484-bf78-f50b4d1b3562,SESCO,II.1.1,Neuquén,AR-Q,annual,2010,naphtha combustion consumption by to the public,2431.1367003,TJ,CH4,3.0,kg/TJ,7293.4101009000005,kg -2883d014-c3ed-3506-b00c-8ae808428ba7,SESCO,II.1.1,Neuquén,AR-Q,annual,2010,naphtha combustion consumption by to the public,2431.1367003,TJ,N2O,0.6,kg/TJ,1458.6820201799999,kg -7c710db2-3cb8-3222-adab-b226f73dc5da,SESCO,II.1.1,Rio Negro,AR-R,annual,2010,naphtha combustion consumption by to the public,2397.2212032999996,TJ,CO2,73300.0,kg/TJ,175716314.20188996,kg -8a8053a3-9376-364e-8683-bc1a67d3f06e,SESCO,II.1.1,Rio Negro,AR-R,annual,2010,naphtha combustion consumption by to the public,2397.2212032999996,TJ,CH4,3.0,kg/TJ,7191.663609899999,kg -ac01e1d8-fd4d-3636-8674-b918d72e3734,SESCO,II.1.1,Rio Negro,AR-R,annual,2010,naphtha combustion consumption by to the public,2397.2212032999996,TJ,N2O,0.6,kg/TJ,1438.3327219799996,kg -b34b9a4a-a0d2-3250-b3e2-bdeef02ce8b6,SESCO,II.1.1,Salta,AR-A,annual,2010,naphtha combustion consumption by to the public,1862.330162,TJ,CO2,73300.0,kg/TJ,136508800.8746,kg -22b42f4f-5c99-36b4-97d5-05ac969ee93a,SESCO,II.1.1,Salta,AR-A,annual,2010,naphtha combustion consumption by to the public,1862.330162,TJ,CH4,3.0,kg/TJ,5586.990486,kg -556c4021-8a36-34a9-9187-2916591e61cb,SESCO,II.1.1,Salta,AR-A,annual,2010,naphtha combustion consumption by to the public,1862.330162,TJ,N2O,0.6,kg/TJ,1117.3980972,kg -528a2036-33a0-3f4f-a099-bb0770e16e3b,SESCO,II.1.1,San Juan,AR-J,annual,2010,naphtha combustion consumption by to the public,1204.7724766,TJ,CO2,73300.0,kg/TJ,88309822.53478,kg -0fc6ecb1-2efa-3adb-9f0a-9dfd502748ec,SESCO,II.1.1,San Juan,AR-J,annual,2010,naphtha combustion consumption by to the public,1204.7724766,TJ,CH4,3.0,kg/TJ,3614.3174297999994,kg -b6d7950d-8179-3c6c-a297-dce13b91aeec,SESCO,II.1.1,San Juan,AR-J,annual,2010,naphtha combustion consumption by to the public,1204.7724766,TJ,N2O,0.6,kg/TJ,722.8634859599999,kg -98fd1125-560d-3faf-a3a9-e395cd61aa9f,SESCO,II.1.1,San Luis,AR-D,annual,2010,naphtha combustion consumption by to the public,1018.0693445999999,TJ,CO2,73300.0,kg/TJ,74624482.95918,kg -dbc0de6f-be13-3b5e-9656-ddfcfcc61743,SESCO,II.1.1,San Luis,AR-D,annual,2010,naphtha combustion consumption by to the public,1018.0693445999999,TJ,CH4,3.0,kg/TJ,3054.2080337999996,kg -937e4ae5-e9e8-3286-b6c6-6fe4e8020699,SESCO,II.1.1,San Luis,AR-D,annual,2010,naphtha combustion consumption by to the public,1018.0693445999999,TJ,N2O,0.6,kg/TJ,610.8416067599999,kg -6ccba809-6013-3b5d-9bf1-b4fd9d250802,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2010,naphtha combustion consumption by to the public,2141.6125269,TJ,CO2,73300.0,kg/TJ,156980198.22177,kg -487d1329-6d29-39f2-8480-9b03e7fc51cf,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2010,naphtha combustion consumption by to the public,2141.6125269,TJ,CH4,3.0,kg/TJ,6424.837580699999,kg -507729c0-97ee-35a3-abc4-d1ad9e432de4,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2010,naphtha combustion consumption by to the public,2141.6125269,TJ,N2O,0.6,kg/TJ,1284.9675161399998,kg -f7651117-a39d-3872-87ab-47d746ad2c76,SESCO,II.1.1,Santa Fe,AR-S,annual,2010,naphtha combustion consumption by to the public,5635.412413399999,TJ,CO2,73300.0,kg/TJ,413075729.90221995,kg -fb036dee-15c5-3e6e-b753-390074943497,SESCO,II.1.1,Santa Fe,AR-S,annual,2010,naphtha combustion consumption by to the public,5635.412413399999,TJ,CH4,3.0,kg/TJ,16906.237240199996,kg -6b5e46cf-d7c5-3406-970f-f42cbc66c90f,SESCO,II.1.1,Santa Fe,AR-S,annual,2010,naphtha combustion consumption by to the public,5635.412413399999,TJ,N2O,0.6,kg/TJ,3381.2474480399997,kg -e9f7a02d-44f4-3555-963f-c9f4b0e7a614,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2010,naphtha combustion consumption by to the public,859.2709433,TJ,CO2,73300.0,kg/TJ,62984560.14389,kg -6f1f6477-f028-310b-864e-6cad1584db38,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2010,naphtha combustion consumption by to the public,859.2709433,TJ,CH4,3.0,kg/TJ,2577.8128299,kg -3788fa13-7e05-30a4-9ba0-57aa6b569975,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2010,naphtha combustion consumption by to the public,859.2709433,TJ,N2O,0.6,kg/TJ,515.5625659799999,kg -7dc51977-5ee4-3617-8fc9-5611cdd4e4fb,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2010,naphtha combustion consumption by to the public,1543.6252293,TJ,CO2,73300.0,kg/TJ,113147729.30769,kg -9615c25a-f7e1-329a-a552-a803b21233e4,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2010,naphtha combustion consumption by to the public,1543.6252293,TJ,CH4,3.0,kg/TJ,4630.8756879,kg -f043b015-c808-30eb-b5e1-0b783ec27982,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2010,naphtha combustion consumption by to the public,1543.6252293,TJ,N2O,0.6,kg/TJ,926.17513758,kg -42d1022e-e3b4-3b53-8a11-39c8ef28dcb7,SESCO,II.1.1,Tucuman,AR-T,annual,2010,naphtha combustion consumption by to the public,1671.4295674999998,TJ,CO2,73300.0,kg/TJ,122515787.29775,kg -ffbe5b0c-8202-3cd0-b9f4-cb39b1c7c366,SESCO,II.1.1,Tucuman,AR-T,annual,2010,naphtha combustion consumption by to the public,1671.4295674999998,TJ,CH4,3.0,kg/TJ,5014.2887025,kg -594fad14-ee9e-3890-a534-24584443e314,SESCO,II.1.1,Tucuman,AR-T,annual,2010,naphtha combustion consumption by to the public,1671.4295674999998,TJ,N2O,0.6,kg/TJ,1002.8577404999999,kg -90ae51aa-ef85-3900-b481-641dd3b3b1ef,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,naphtha combustion consumption by to the public,10457.6252319,TJ,CO2,73300.0,kg/TJ,766543929.4982699,kg -655f4b38-6af4-3265-be21-6f23603f2e34,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,naphtha combustion consumption by to the public,10457.6252319,TJ,CH4,3.0,kg/TJ,31372.8756957,kg -f898f39a-8661-386f-b430-381a2f63370f,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,naphtha combustion consumption by to the public,10457.6252319,TJ,N2O,0.6,kg/TJ,6274.57513914,kg -cc56eb6d-e864-36b3-bc70-ab49be8e334c,SESCO,II.1.1,Capital Federal,AR-C,annual,2010,naphtha combustion consumption by to the public,3065.8601896999994,TJ,CO2,73300.0,kg/TJ,224727551.90500996,kg -88e6bcc9-809f-304c-81e4-7ca58f020ce7,SESCO,II.1.1,Capital Federal,AR-C,annual,2010,naphtha combustion consumption by to the public,3065.8601896999994,TJ,CH4,3.0,kg/TJ,9197.580569099999,kg -e72c85fd-fa70-3680-84fc-7062717926e2,SESCO,II.1.1,Capital Federal,AR-C,annual,2010,naphtha combustion consumption by to the public,3065.8601896999994,TJ,N2O,0.6,kg/TJ,1839.5161138199996,kg -4cf2f8f3-c27e-3be7-8f62-2590cc91de6e,SESCO,II.1.1,Catamarca,AR-K,annual,2010,naphtha combustion consumption by to the public,126.0581938,TJ,CO2,73300.0,kg/TJ,9240065.60554,kg -7a0719c1-0daa-35ea-a2dc-4d91f181d2de,SESCO,II.1.1,Catamarca,AR-K,annual,2010,naphtha combustion consumption by to the public,126.0581938,TJ,CH4,3.0,kg/TJ,378.17458139999997,kg -1f656515-d342-3f74-9c0a-61fc13089ec3,SESCO,II.1.1,Catamarca,AR-K,annual,2010,naphtha combustion consumption by to the public,126.0581938,TJ,N2O,0.6,kg/TJ,75.63491628,kg -9f728905-1f4d-303c-a050-788bb962a094,SESCO,II.1.1,Chaco,AR-H,annual,2010,naphtha combustion consumption by to the public,419.51119209999996,TJ,CO2,73300.0,kg/TJ,30750170.380929995,kg -5cf4863c-2894-3ee1-9e2b-5784016dd0fb,SESCO,II.1.1,Chaco,AR-H,annual,2010,naphtha combustion consumption by to the public,419.51119209999996,TJ,CH4,3.0,kg/TJ,1258.5335762999998,kg -8d6675d9-f88f-31fc-812d-e5ecabeed076,SESCO,II.1.1,Chaco,AR-H,annual,2010,naphtha combustion consumption by to the public,419.51119209999996,TJ,N2O,0.6,kg/TJ,251.70671525999995,kg -e865ffd4-3f09-3baf-8100-64163af07369,SESCO,II.1.1,Chubut,AR-U,annual,2010,naphtha combustion consumption by to the public,717.2623919999999,TJ,CO2,73300.0,kg/TJ,52575333.33359999,kg -aae68e63-040a-3175-be60-7ea9368a7d3f,SESCO,II.1.1,Chubut,AR-U,annual,2010,naphtha combustion consumption by to the public,717.2623919999999,TJ,CH4,3.0,kg/TJ,2151.787176,kg -049fe3bd-4882-376d-bf37-61f77b7c5ce9,SESCO,II.1.1,Chubut,AR-U,annual,2010,naphtha combustion consumption by to the public,717.2623919999999,TJ,N2O,0.6,kg/TJ,430.3574351999999,kg -5c9f03d1-a9d2-3722-85fa-18f78118f50a,SESCO,II.1.1,Corrientes,AR-W,annual,2010,naphtha combustion consumption by to the public,319.91380189999995,TJ,CO2,73300.0,kg/TJ,23449681.679269996,kg -a64c23c0-40ae-32f4-94a0-8b77c6725931,SESCO,II.1.1,Corrientes,AR-W,annual,2010,naphtha combustion consumption by to the public,319.91380189999995,TJ,CH4,3.0,kg/TJ,959.7414056999999,kg -d5954e63-8bf1-361b-9ddc-d556c017fbf5,SESCO,II.1.1,Corrientes,AR-W,annual,2010,naphtha combustion consumption by to the public,319.91380189999995,TJ,N2O,0.6,kg/TJ,191.94828113999998,kg -67d4b8dd-19a9-31a4-9e14-079e70ea915a,SESCO,II.1.1,Córdoba,AR-X,annual,2010,naphtha combustion consumption by to the public,2353.7690715,TJ,CO2,73300.0,kg/TJ,172531272.94094998,kg -307d80e8-16af-360e-a4e1-158c73b359ce,SESCO,II.1.1,Córdoba,AR-X,annual,2010,naphtha combustion consumption by to the public,2353.7690715,TJ,CH4,3.0,kg/TJ,7061.3072145,kg -49c46f87-8762-3782-b062-7722664e26bb,SESCO,II.1.1,Córdoba,AR-X,annual,2010,naphtha combustion consumption by to the public,2353.7690715,TJ,N2O,0.6,kg/TJ,1412.2614428999998,kg -9c674e71-b4f2-3dbb-bedd-6c687e5634c6,SESCO,II.1.1,Entre Rios,AR-E,annual,2010,naphtha combustion consumption by to the public,726.3960704,TJ,CO2,73300.0,kg/TJ,53244831.960319996,kg -e1df1716-75cc-3ef3-b9e4-51544f92fd39,SESCO,II.1.1,Entre Rios,AR-E,annual,2010,naphtha combustion consumption by to the public,726.3960704,TJ,CH4,3.0,kg/TJ,2179.1882112,kg -69797bf1-d71b-32c6-a499-30f6f0fc6ec5,SESCO,II.1.1,Entre Rios,AR-E,annual,2010,naphtha combustion consumption by to the public,726.3960704,TJ,N2O,0.6,kg/TJ,435.83764224,kg -e4c8bf57-de29-32ae-8abb-120fc5147a10,SESCO,II.1.1,Formosa,AR-P,annual,2010,naphtha combustion consumption by to the public,140.8668415,TJ,CO2,73300.0,kg/TJ,10325539.48195,kg -71e3b156-96ed-3fbe-ad1c-1515d6669ec2,SESCO,II.1.1,Formosa,AR-P,annual,2010,naphtha combustion consumption by to the public,140.8668415,TJ,CH4,3.0,kg/TJ,422.6005245,kg -ee3b500c-0fd5-332d-81b7-a8fb9341349d,SESCO,II.1.1,Formosa,AR-P,annual,2010,naphtha combustion consumption by to the public,140.8668415,TJ,N2O,0.6,kg/TJ,84.52010489999999,kg -c9f44cbe-b7ba-3ab1-ba5a-479cb758e2d5,SESCO,II.1.1,Jujuy,AR-Y,annual,2010,naphtha combustion consumption by to the public,143.5532175,TJ,CO2,73300.0,kg/TJ,10522450.84275,kg -7f5ea297-15de-3d93-baf7-12daba6f75a9,SESCO,II.1.1,Jujuy,AR-Y,annual,2010,naphtha combustion consumption by to the public,143.5532175,TJ,CH4,3.0,kg/TJ,430.6596525,kg -39f614a5-1681-3b4f-b2f8-7505ddb60658,SESCO,II.1.1,Jujuy,AR-Y,annual,2010,naphtha combustion consumption by to the public,143.5532175,TJ,N2O,0.6,kg/TJ,86.1319305,kg -6a954ec6-e073-3303-88dd-33f80f70f7ee,SESCO,II.1.1,La Pampa,AR-L,annual,2010,naphtha combustion consumption by to the public,423.5743357999999,TJ,CO2,73300.0,kg/TJ,31047998.814139992,kg -cd24d0d5-3ec9-34a8-bccd-c98456876c59,SESCO,II.1.1,La Pampa,AR-L,annual,2010,naphtha combustion consumption by to the public,423.5743357999999,TJ,CH4,3.0,kg/TJ,1270.7230073999997,kg -2e1679ec-85a5-302c-9b27-17d267ad5f3d,SESCO,II.1.1,La Pampa,AR-L,annual,2010,naphtha combustion consumption by to the public,423.5743357999999,TJ,N2O,0.6,kg/TJ,254.14460147999995,kg -195f0032-7fc6-35b9-9fbe-5db0751f1404,SESCO,II.1.1,La Rioja,AR-F,annual,2010,naphtha combustion consumption by to the public,169.7789632,TJ,CO2,73300.0,kg/TJ,12444798.002559999,kg -62577374-b125-390b-b20a-f004edacb91b,SESCO,II.1.1,La Rioja,AR-F,annual,2010,naphtha combustion consumption by to the public,169.7789632,TJ,CH4,3.0,kg/TJ,509.33688959999995,kg -595a22ee-5143-3e82-abda-15263de0d5e6,SESCO,II.1.1,La Rioja,AR-F,annual,2010,naphtha combustion consumption by to the public,169.7789632,TJ,N2O,0.6,kg/TJ,101.86737792,kg -e0159bfc-e058-3e71-a73f-4e086f70372c,SESCO,II.1.1,Mendoza,AR-M,annual,2010,naphtha combustion consumption by to the public,1072.2669804,TJ,CO2,73300.0,kg/TJ,78597169.66332,kg -b7c1e511-4d4b-3825-98da-87d9623bf4df,SESCO,II.1.1,Mendoza,AR-M,annual,2010,naphtha combustion consumption by to the public,1072.2669804,TJ,CH4,3.0,kg/TJ,3216.8009412,kg -02946baa-bca5-3b0b-9ffc-e7e20d4fcc12,SESCO,II.1.1,Mendoza,AR-M,annual,2010,naphtha combustion consumption by to the public,1072.2669804,TJ,N2O,0.6,kg/TJ,643.36018824,kg -0c067ab1-547f-3ae9-be30-6150c031f4b6,SESCO,II.1.1,Misiones,AR-N,annual,2010,naphtha combustion consumption by to the public,419.0410763,TJ,CO2,73300.0,kg/TJ,30715710.892789997,kg -fa004c14-8585-38bd-841c-f24b04f0d009,SESCO,II.1.1,Misiones,AR-N,annual,2010,naphtha combustion consumption by to the public,419.0410763,TJ,CH4,3.0,kg/TJ,1257.1232289,kg -1ff75bf3-d1ec-3c48-9ca8-3e60354fd446,SESCO,II.1.1,Misiones,AR-N,annual,2010,naphtha combustion consumption by to the public,419.0410763,TJ,N2O,0.6,kg/TJ,251.42464578,kg -cef361a2-2f27-351d-8ed6-f3b333a488f4,SESCO,II.1.1,Neuquén,AR-Q,annual,2010,naphtha combustion consumption by to the public,532.9434186999999,TJ,CO2,73300.0,kg/TJ,39064752.59071,kg -32b31b31-32ea-3e10-8ad6-a9e886bf2503,SESCO,II.1.1,Neuquén,AR-Q,annual,2010,naphtha combustion consumption by to the public,532.9434186999999,TJ,CH4,3.0,kg/TJ,1598.8302560999998,kg -e0ec8d5c-c840-3898-b81a-6c614965f647,SESCO,II.1.1,Neuquén,AR-Q,annual,2010,naphtha combustion consumption by to the public,532.9434186999999,TJ,N2O,0.6,kg/TJ,319.76605121999995,kg -82b31a58-0462-3801-be05-1e9da97a686e,SESCO,II.1.1,Rio Negro,AR-R,annual,2010,naphtha combustion consumption by to the public,548.4908197999999,TJ,CO2,73300.0,kg/TJ,40204377.09134,kg -784dc139-f8db-3d17-b7e3-432021bb6d7e,SESCO,II.1.1,Rio Negro,AR-R,annual,2010,naphtha combustion consumption by to the public,548.4908197999999,TJ,CH4,3.0,kg/TJ,1645.4724594,kg -15e2b9fe-7291-36c8-af86-7e2d452d0972,SESCO,II.1.1,Rio Negro,AR-R,annual,2010,naphtha combustion consumption by to the public,548.4908197999999,TJ,N2O,0.6,kg/TJ,329.09449187999996,kg -8b220ff6-c13e-3421-b988-602cee3af039,SESCO,II.1.1,Salta,AR-A,annual,2010,naphtha combustion consumption by to the public,402.9564,TJ,CO2,73300.0,kg/TJ,29536704.119999997,kg -dd83b68c-be4a-3c07-aa5c-444ced84c0dc,SESCO,II.1.1,Salta,AR-A,annual,2010,naphtha combustion consumption by to the public,402.9564,TJ,CH4,3.0,kg/TJ,1208.8691999999999,kg -49064e5a-25a6-3725-b309-4894c31dde02,SESCO,II.1.1,Salta,AR-A,annual,2010,naphtha combustion consumption by to the public,402.9564,TJ,N2O,0.6,kg/TJ,241.77383999999998,kg -755f934e-462e-35f0-b8ea-a7cbc015dfef,SESCO,II.1.1,San Juan,AR-J,annual,2010,naphtha combustion consumption by to the public,329.6183352,TJ,CO2,73300.0,kg/TJ,24161023.97016,kg -88490e5c-c1fd-3dcb-9060-9ace1d1b66b7,SESCO,II.1.1,San Juan,AR-J,annual,2010,naphtha combustion consumption by to the public,329.6183352,TJ,CH4,3.0,kg/TJ,988.8550055999999,kg -ebc80272-498d-30b2-81df-4481f716d4ee,SESCO,II.1.1,San Juan,AR-J,annual,2010,naphtha combustion consumption by to the public,329.6183352,TJ,N2O,0.6,kg/TJ,197.77100112,kg -68d292c6-dd50-3c6d-93aa-813568096169,SESCO,II.1.1,San Luis,AR-D,annual,2010,naphtha combustion consumption by to the public,335.2261451,TJ,CO2,73300.0,kg/TJ,24572076.43583,kg -a2e80207-c9d9-315a-a8c9-5caa1adceb42,SESCO,II.1.1,San Luis,AR-D,annual,2010,naphtha combustion consumption by to the public,335.2261451,TJ,CH4,3.0,kg/TJ,1005.6784353,kg -2456440b-005d-3a5c-9bef-dffe3e8f532b,SESCO,II.1.1,San Luis,AR-D,annual,2010,naphtha combustion consumption by to the public,335.2261451,TJ,N2O,0.6,kg/TJ,201.13568705999998,kg -6efc6f02-2bbd-3f5c-b2fc-50d908e77399,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2010,naphtha combustion consumption by to the public,387.2411004,TJ,CO2,73300.0,kg/TJ,28384772.65932,kg -a501e5c0-d113-3c02-b3f7-2e263564ca58,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2010,naphtha combustion consumption by to the public,387.2411004,TJ,CH4,3.0,kg/TJ,1161.7233012,kg -10bf1fbb-1b01-3392-a238-9fd028a8ea29,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2010,naphtha combustion consumption by to the public,387.2411004,TJ,N2O,0.6,kg/TJ,232.34466024,kg -cde8d241-6c33-366f-937e-fe53722d1d1a,SESCO,II.1.1,Santa Fe,AR-S,annual,2010,naphtha combustion consumption by to the public,2034.9633996999999,TJ,CO2,73300.0,kg/TJ,149162817.19801,kg -04b7ead6-6e4c-3d19-a183-7b9b36f89088,SESCO,II.1.1,Santa Fe,AR-S,annual,2010,naphtha combustion consumption by to the public,2034.9633996999999,TJ,CH4,3.0,kg/TJ,6104.890199099999,kg -07f2b315-0159-3773-b5ec-cb73224463a4,SESCO,II.1.1,Santa Fe,AR-S,annual,2010,naphtha combustion consumption by to the public,2034.9633996999999,TJ,N2O,0.6,kg/TJ,1220.9780398199998,kg -503778bb-2283-3671-afbf-abad41ddd60b,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2010,naphtha combustion consumption by to the public,302.62025639999996,TJ,CO2,73300.0,kg/TJ,22182064.79412,kg -82b50394-3a02-3895-9c4a-f7879112e4e7,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2010,naphtha combustion consumption by to the public,302.62025639999996,TJ,CH4,3.0,kg/TJ,907.8607691999998,kg -f6ef55ab-db1a-352c-a9f2-d387fd819f89,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2010,naphtha combustion consumption by to the public,302.62025639999996,TJ,N2O,0.6,kg/TJ,181.57215383999997,kg -6126640f-c76d-3821-a011-365e450f1a2e,SESCO,II.1.1,Tucuman,AR-T,annual,2010,naphtha combustion consumption by to the public,397.41574949999995,TJ,CO2,73300.0,kg/TJ,29130574.438349996,kg -8e5d0b0b-bb12-365a-ab9b-dd48c051f0cf,SESCO,II.1.1,Tucuman,AR-T,annual,2010,naphtha combustion consumption by to the public,397.41574949999995,TJ,CH4,3.0,kg/TJ,1192.2472484999998,kg -3ea04f84-078a-3202-9b5a-601181ab00d4,SESCO,II.1.1,Tucuman,AR-T,annual,2010,naphtha combustion consumption by to the public,397.41574949999995,TJ,N2O,0.6,kg/TJ,238.44944969999995,kg -57f4f498-88d0-328d-8e6e-2f7553c6a6cc,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,naphtha combustion consumption by freight transport,0.2686376,TJ,CO2,73300.0,kg/TJ,19691.136079999997,kg -dc152019-20a0-3b15-bd96-dd8687b917fd,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,naphtha combustion consumption by freight transport,0.2686376,TJ,CH4,3.0,kg/TJ,0.8059128,kg -418305bc-ebd0-3a9c-abfc-d45a2c12006b,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,naphtha combustion consumption by freight transport,0.2686376,TJ,N2O,0.6,kg/TJ,0.16118255999999997,kg -6b0ca964-3ddd-3c0c-9a43-21cbed36b4a3,SESCO,II.1.1,Santa Fe,AR-S,annual,2010,naphtha combustion consumption by freight transport,0.0671594,TJ,CO2,73300.0,kg/TJ,4922.784019999999,kg -0655f1e2-4e75-3a0d-9ecb-087d07159bb3,SESCO,II.1.1,Santa Fe,AR-S,annual,2010,naphtha combustion consumption by freight transport,0.0671594,TJ,CH4,3.0,kg/TJ,0.2014782,kg -395885b9-69cc-342b-9d09-729c833ee2a8,SESCO,II.1.1,Santa Fe,AR-S,annual,2010,naphtha combustion consumption by freight transport,0.0671594,TJ,N2O,0.6,kg/TJ,0.040295639999999994,kg -cffca3d2-f6c9-303e-8e49-e1b6c10fd72c,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,naphtha combustion consumption by freight transport,115.48058829999998,TJ,CO2,73300.0,kg/TJ,8464727.122389998,kg -6612a9ef-7df1-3fa3-9e92-927812d83128,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,naphtha combustion consumption by freight transport,115.48058829999998,TJ,CH4,3.0,kg/TJ,346.44176489999995,kg -3e5e77b3-4834-3cfd-ac82-acc43214316c,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,naphtha combustion consumption by freight transport,115.48058829999998,TJ,N2O,0.6,kg/TJ,69.28835297999998,kg -9957216b-e315-3890-ba63-ab6a9bb2f29a,SESCO,II.1.1,Capital Federal,AR-C,annual,2010,naphtha combustion consumption by freight transport,20.382877899999997,TJ,CO2,73300.0,kg/TJ,1494064.9500699998,kg -3697139b-624d-3980-a93d-759321303303,SESCO,II.1.1,Capital Federal,AR-C,annual,2010,naphtha combustion consumption by freight transport,20.382877899999997,TJ,CH4,3.0,kg/TJ,61.14863369999999,kg -c5ce8047-1a3e-3b4f-924d-8e1ff6e67d42,SESCO,II.1.1,Capital Federal,AR-C,annual,2010,naphtha combustion consumption by freight transport,20.382877899999997,TJ,N2O,0.6,kg/TJ,12.229726739999998,kg -cbaad4c3-7ed7-3207-8419-041e06657a25,SESCO,II.1.1,Catamarca,AR-K,annual,2010,naphtha combustion consumption by freight transport,0.1343188,TJ,CO2,73300.0,kg/TJ,9845.568039999998,kg -f1cee474-ea69-39f5-8fe2-6f02c86b3f01,SESCO,II.1.1,Catamarca,AR-K,annual,2010,naphtha combustion consumption by freight transport,0.1343188,TJ,CH4,3.0,kg/TJ,0.4029564,kg -145e4b2e-426b-3bb3-90b2-c714eead2be1,SESCO,II.1.1,Catamarca,AR-K,annual,2010,naphtha combustion consumption by freight transport,0.1343188,TJ,N2O,0.6,kg/TJ,0.08059127999999999,kg -be05dbab-de78-3351-9efd-38848e4730be,SESCO,II.1.1,Chaco,AR-H,annual,2010,naphtha combustion consumption by freight transport,3.35797,TJ,CO2,73300.0,kg/TJ,246139.201,kg -4b02df36-9d25-3c04-a059-3e444fe1e06b,SESCO,II.1.1,Chaco,AR-H,annual,2010,naphtha combustion consumption by freight transport,3.35797,TJ,CH4,3.0,kg/TJ,10.07391,kg -5ab3f81d-11f0-3f7c-9d9a-878960a86a7f,SESCO,II.1.1,Chaco,AR-H,annual,2010,naphtha combustion consumption by freight transport,3.35797,TJ,N2O,0.6,kg/TJ,2.014782,kg -8bf606c8-fd77-3e46-8bb6-d4a350f555ed,SESCO,II.1.1,Chubut,AR-U,annual,2010,naphtha combustion consumption by freight transport,4.1638828,TJ,CO2,73300.0,kg/TJ,305212.60923999996,kg -e3893efe-63a5-3dc9-9c02-c1ff761706b7,SESCO,II.1.1,Chubut,AR-U,annual,2010,naphtha combustion consumption by freight transport,4.1638828,TJ,CH4,3.0,kg/TJ,12.491648399999999,kg -2cbb8e7e-2a9f-3e46-9b56-c3a876f0b52d,SESCO,II.1.1,Chubut,AR-U,annual,2010,naphtha combustion consumption by freight transport,4.1638828,TJ,N2O,0.6,kg/TJ,2.49832968,kg -b5764f49-458c-3e48-92d9-5dec69c3830e,SESCO,II.1.1,Corrientes,AR-W,annual,2010,naphtha combustion consumption by freight transport,4.264621899999999,TJ,CO2,73300.0,kg/TJ,312596.78526999993,kg -5534bbfe-812d-328b-8ead-f9abe283d1a2,SESCO,II.1.1,Corrientes,AR-W,annual,2010,naphtha combustion consumption by freight transport,4.264621899999999,TJ,CH4,3.0,kg/TJ,12.793865699999998,kg -21e732ea-744b-3ad1-937a-8eb4cb00c1f0,SESCO,II.1.1,Corrientes,AR-W,annual,2010,naphtha combustion consumption by freight transport,4.264621899999999,TJ,N2O,0.6,kg/TJ,2.558773139999999,kg -8b469d57-6677-3957-8de3-4c23e06318df,SESCO,II.1.1,Córdoba,AR-X,annual,2010,naphtha combustion consumption by freight transport,14.775067999999997,TJ,CO2,73300.0,kg/TJ,1083012.4843999997,kg -7461d9d1-bb83-33d0-bc0c-cb23c943e797,SESCO,II.1.1,Córdoba,AR-X,annual,2010,naphtha combustion consumption by freight transport,14.775067999999997,TJ,CH4,3.0,kg/TJ,44.32520399999999,kg -a27661aa-9b97-3afd-aefb-9299755dd3b2,SESCO,II.1.1,Córdoba,AR-X,annual,2010,naphtha combustion consumption by freight transport,14.775067999999997,TJ,N2O,0.6,kg/TJ,8.865040799999997,kg -dacd1fd6-b55f-38e5-ab20-701552c365ec,SESCO,II.1.1,Entre Rios,AR-E,annual,2010,naphtha combustion consumption by freight transport,5.8428678,TJ,CO2,73300.0,kg/TJ,428282.20973999996,kg -1a5dba28-d5ea-3d7d-a765-1c15d607d7ae,SESCO,II.1.1,Entre Rios,AR-E,annual,2010,naphtha combustion consumption by freight transport,5.8428678,TJ,CH4,3.0,kg/TJ,17.528603399999998,kg -204cddbf-7957-3d75-9f9f-fe8be9279a1e,SESCO,II.1.1,Entre Rios,AR-E,annual,2010,naphtha combustion consumption by freight transport,5.8428678,TJ,N2O,0.6,kg/TJ,3.5057206799999996,kg -2bb628d6-e59e-3dac-b192-af3dea974926,SESCO,II.1.1,Formosa,AR-P,annual,2010,naphtha combustion consumption by freight transport,0.2686376,TJ,CO2,73300.0,kg/TJ,19691.136079999997,kg -193962a6-f9d8-31d1-9e42-b3571db0af75,SESCO,II.1.1,Formosa,AR-P,annual,2010,naphtha combustion consumption by freight transport,0.2686376,TJ,CH4,3.0,kg/TJ,0.8059128,kg -6532a8f1-40e4-32b9-bdd9-544e949cbe23,SESCO,II.1.1,Formosa,AR-P,annual,2010,naphtha combustion consumption by freight transport,0.2686376,TJ,N2O,0.6,kg/TJ,0.16118255999999997,kg -9a043285-f311-3533-a6e1-d4e62e0fd6eb,SESCO,II.1.1,Jujuy,AR-Y,annual,2010,naphtha combustion consumption by freight transport,2.7871151,TJ,CO2,73300.0,kg/TJ,204295.53683,kg -ceb8b2e1-f2c9-3f9e-9e04-b5e866e2ace9,SESCO,II.1.1,Jujuy,AR-Y,annual,2010,naphtha combustion consumption by freight transport,2.7871151,TJ,CH4,3.0,kg/TJ,8.3613453,kg -a0ea3e07-1784-3814-bcfd-19d666bff428,SESCO,II.1.1,Jujuy,AR-Y,annual,2010,naphtha combustion consumption by freight transport,2.7871151,TJ,N2O,0.6,kg/TJ,1.6722690599999999,kg -b08d36e2-f719-37ec-b663-f9ec03039fe0,SESCO,II.1.1,La Pampa,AR-L,annual,2010,naphtha combustion consumption by freight transport,1.8804632,TJ,CO2,73300.0,kg/TJ,137837.95256,kg -80537d65-8586-3894-b0cf-70ca8d5f61d5,SESCO,II.1.1,La Pampa,AR-L,annual,2010,naphtha combustion consumption by freight transport,1.8804632,TJ,CH4,3.0,kg/TJ,5.6413896,kg -dfe634c9-c1ec-3fc4-ba39-4d10ceb3ac64,SESCO,II.1.1,La Pampa,AR-L,annual,2010,naphtha combustion consumption by freight transport,1.8804632,TJ,N2O,0.6,kg/TJ,1.12827792,kg -d05b253b-c20c-3a56-9626-3122b283eca7,SESCO,II.1.1,La Rioja,AR-F,annual,2010,naphtha combustion consumption by freight transport,1.1752894999999999,TJ,CO2,73300.0,kg/TJ,86148.72034999999,kg -0a4bbb26-6c49-3956-85da-5070eab9b496,SESCO,II.1.1,La Rioja,AR-F,annual,2010,naphtha combustion consumption by freight transport,1.1752894999999999,TJ,CH4,3.0,kg/TJ,3.5258684999999996,kg -8038500f-0f03-350f-a939-1682715cf029,SESCO,II.1.1,La Rioja,AR-F,annual,2010,naphtha combustion consumption by freight transport,1.1752894999999999,TJ,N2O,0.6,kg/TJ,0.7051736999999999,kg -2273e56d-a35f-355b-90f0-55e38ef92c5a,SESCO,II.1.1,Mendoza,AR-M,annual,2010,naphtha combustion consumption by freight transport,15.3459229,TJ,CO2,73300.0,kg/TJ,1124856.14857,kg -ef8f34c3-b73b-39b5-a91c-fc44564fab45,SESCO,II.1.1,Mendoza,AR-M,annual,2010,naphtha combustion consumption by freight transport,15.3459229,TJ,CH4,3.0,kg/TJ,46.0377687,kg -0f497da2-6b9f-380a-bbe5-f366406c10bc,SESCO,II.1.1,Mendoza,AR-M,annual,2010,naphtha combustion consumption by freight transport,15.3459229,TJ,N2O,0.6,kg/TJ,9.20755374,kg -73b704b2-c2bd-33a2-9131-c6cbd14e7105,SESCO,II.1.1,Misiones,AR-N,annual,2010,naphtha combustion consumption by freight transport,4.0631436999999995,TJ,CO2,73300.0,kg/TJ,297828.43321,kg -5e064580-750d-35eb-82a8-f9bfb135ae7a,SESCO,II.1.1,Misiones,AR-N,annual,2010,naphtha combustion consumption by freight transport,4.0631436999999995,TJ,CH4,3.0,kg/TJ,12.189431099999998,kg -ec76603e-c6e2-3c9c-9f6a-33c37ac70b76,SESCO,II.1.1,Misiones,AR-N,annual,2010,naphtha combustion consumption by freight transport,4.0631436999999995,TJ,N2O,0.6,kg/TJ,2.4378862199999998,kg -13dbc5db-3aed-399d-b386-ef6e44cd02ad,SESCO,II.1.1,Neuquén,AR-Q,annual,2010,naphtha combustion consumption by freight transport,4.801897099999999,TJ,CO2,73300.0,kg/TJ,351979.0574299999,kg -7e18c8ae-456b-3663-9c66-ba680fe7a865,SESCO,II.1.1,Neuquén,AR-Q,annual,2010,naphtha combustion consumption by freight transport,4.801897099999999,TJ,CH4,3.0,kg/TJ,14.405691299999997,kg -6b702b2b-b9c6-359b-b6c6-d4f53758197f,SESCO,II.1.1,Neuquén,AR-Q,annual,2010,naphtha combustion consumption by freight transport,4.801897099999999,TJ,N2O,0.6,kg/TJ,2.8811382599999993,kg -980f8af2-32ba-3d0c-aa12-4bc408b8f02d,SESCO,II.1.1,Rio Negro,AR-R,annual,2010,naphtha combustion consumption by freight transport,3.35797,TJ,CO2,73300.0,kg/TJ,246139.201,kg -7b8c82af-90d3-3281-bcd2-7a865c962b4e,SESCO,II.1.1,Rio Negro,AR-R,annual,2010,naphtha combustion consumption by freight transport,3.35797,TJ,CH4,3.0,kg/TJ,10.07391,kg -3915b4b7-b677-3af3-9785-cf83520a73ff,SESCO,II.1.1,Rio Negro,AR-R,annual,2010,naphtha combustion consumption by freight transport,3.35797,TJ,N2O,0.6,kg/TJ,2.014782,kg -d2ae399b-e73a-34aa-a2de-3484a6a0e650,SESCO,II.1.1,Salta,AR-A,annual,2010,naphtha combustion consumption by freight transport,2.9885933,TJ,CO2,73300.0,kg/TJ,219063.88888999997,kg -b716cf10-d526-3e13-8fb2-259098adc861,SESCO,II.1.1,Salta,AR-A,annual,2010,naphtha combustion consumption by freight transport,2.9885933,TJ,CH4,3.0,kg/TJ,8.9657799,kg -78fad841-261b-3e97-b160-7211fed4592c,SESCO,II.1.1,Salta,AR-A,annual,2010,naphtha combustion consumption by freight transport,2.9885933,TJ,N2O,0.6,kg/TJ,1.7931559799999999,kg -9ae218e9-c123-3096-997c-f3a2a844bbe5,SESCO,II.1.1,San Juan,AR-J,annual,2010,naphtha combustion consumption by freight transport,1.2088691999999999,TJ,CO2,73300.0,kg/TJ,88610.11235999998,kg -60d9c607-b8ed-31c6-9e14-0aa6c60c9f37,SESCO,II.1.1,San Juan,AR-J,annual,2010,naphtha combustion consumption by freight transport,1.2088691999999999,TJ,CH4,3.0,kg/TJ,3.6266076,kg -c48acf82-50be-3ffb-aeb3-eab6688cbe86,SESCO,II.1.1,San Juan,AR-J,annual,2010,naphtha combustion consumption by freight transport,1.2088691999999999,TJ,N2O,0.6,kg/TJ,0.7253215199999999,kg -ef58020c-2528-33b2-a5dd-8380d837f113,SESCO,II.1.1,San Luis,AR-D,annual,2010,naphtha combustion consumption by freight transport,2.7535353999999996,TJ,CO2,73300.0,kg/TJ,201834.14482,kg -28deda38-d606-3603-9970-f4c3481f91dd,SESCO,II.1.1,San Luis,AR-D,annual,2010,naphtha combustion consumption by freight transport,2.7535353999999996,TJ,CH4,3.0,kg/TJ,8.260606199999998,kg -9fb9716c-8392-33d8-be32-0bed294e6e10,SESCO,II.1.1,San Luis,AR-D,annual,2010,naphtha combustion consumption by freight transport,2.7535353999999996,TJ,N2O,0.6,kg/TJ,1.6521212399999998,kg -0d765c8c-7e61-3a0e-b2dd-1402c92fae70,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2010,naphtha combustion consumption by freight transport,2.1491008,TJ,CO2,73300.0,kg/TJ,157529.08863999997,kg -aeb6b615-9d66-3f99-9e6b-a7fedb7e3753,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2010,naphtha combustion consumption by freight transport,2.1491008,TJ,CH4,3.0,kg/TJ,6.4473024,kg -3e7eb36a-0912-3479-8e7a-443e217a9a2c,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2010,naphtha combustion consumption by freight transport,2.1491008,TJ,N2O,0.6,kg/TJ,1.2894604799999998,kg -c947d579-3cb3-30fd-9971-6973ab751744,SESCO,II.1.1,Santa Fe,AR-S,annual,2010,naphtha combustion consumption by freight transport,22.9685148,TJ,CO2,73300.0,kg/TJ,1683592.1348400002,kg -413c00e6-a912-3fba-a0b8-fe0b0a3c41a4,SESCO,II.1.1,Santa Fe,AR-S,annual,2010,naphtha combustion consumption by freight transport,22.9685148,TJ,CH4,3.0,kg/TJ,68.9055444,kg -a12e1c82-1e5f-3446-b9cd-5b8d671cf588,SESCO,II.1.1,Santa Fe,AR-S,annual,2010,naphtha combustion consumption by freight transport,22.9685148,TJ,N2O,0.6,kg/TJ,13.78110888,kg -f29899b8-a986-3b70-9ecf-9b324aeba0bb,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2010,naphtha combustion consumption by freight transport,1.5782459,TJ,CO2,73300.0,kg/TJ,115685.42447,kg -9f67040a-74a2-3936-af4d-9b96446d94de,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2010,naphtha combustion consumption by freight transport,1.5782459,TJ,CH4,3.0,kg/TJ,4.7347377,kg -2c78e480-f39c-3df2-9b38-859cb6723c4d,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2010,naphtha combustion consumption by freight transport,1.5782459,TJ,N2O,0.6,kg/TJ,0.9469475399999999,kg -10f4a569-ad42-3b27-938e-e04e78df66fe,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2010,naphtha combustion consumption by freight transport,0.6380142999999999,TJ,CO2,73300.0,kg/TJ,46766.448189999996,kg -7234c4eb-d117-354a-83fe-d363f3af591f,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2010,naphtha combustion consumption by freight transport,0.6380142999999999,TJ,CH4,3.0,kg/TJ,1.9140428999999997,kg -20687cea-4d7f-3294-8d89-e513fe5a511f,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2010,naphtha combustion consumption by freight transport,0.6380142999999999,TJ,N2O,0.6,kg/TJ,0.38280857999999995,kg -0d4873fb-5d67-3f0e-91b6-45062bbc1bdb,SESCO,II.1.1,Tucuman,AR-T,annual,2010,naphtha combustion consumption by freight transport,3.5594481999999994,TJ,CO2,73300.0,kg/TJ,260907.55305999995,kg -a1087845-558c-311f-9063-b042d542dd32,SESCO,II.1.1,Tucuman,AR-T,annual,2010,naphtha combustion consumption by freight transport,3.5594481999999994,TJ,CH4,3.0,kg/TJ,10.678344599999999,kg -5c5cf8cf-77a7-3620-bc24-b80337a6493d,SESCO,II.1.1,Tucuman,AR-T,annual,2010,naphtha combustion consumption by freight transport,3.5594481999999994,TJ,N2O,0.6,kg/TJ,2.1356689199999996,kg -2991c79a-ff8d-3b96-953a-4ac8771c07c5,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,naphtha combustion consumption by freight transport,146.94476719999997,TJ,CO2,73300.0,kg/TJ,10771051.435759999,kg -24a21022-c940-3087-8754-9a866a532d19,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,naphtha combustion consumption by freight transport,146.94476719999997,TJ,CH4,3.0,kg/TJ,440.8343015999999,kg -af82d1df-0a35-3244-b631-a11b5be7cbfa,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,naphtha combustion consumption by freight transport,146.94476719999997,TJ,N2O,0.6,kg/TJ,88.16686031999998,kg -1a786ca6-5d94-3397-ae2a-352a57561c9e,SESCO,II.1.1,Capital Federal,AR-C,annual,2010,naphtha combustion consumption by freight transport,40.69859639999999,TJ,CO2,73300.0,kg/TJ,2983207.1161199994,kg -0af3cc51-e44b-30d3-a3bc-b5b1cb2dde54,SESCO,II.1.1,Capital Federal,AR-C,annual,2010,naphtha combustion consumption by freight transport,40.69859639999999,TJ,CH4,3.0,kg/TJ,122.09578919999998,kg -713d2142-f326-38b2-8830-c6824b1ef448,SESCO,II.1.1,Capital Federal,AR-C,annual,2010,naphtha combustion consumption by freight transport,40.69859639999999,TJ,N2O,0.6,kg/TJ,24.419157839999993,kg -f93f2653-def3-3db7-a405-f7cd6a65d42b,SESCO,II.1.1,Chaco,AR-H,annual,2010,naphtha combustion consumption by freight transport,3.3915496999999997,TJ,CO2,73300.0,kg/TJ,248600.59300999998,kg -dc36c9cd-7461-3429-a1e1-d7d4db35cd93,SESCO,II.1.1,Chaco,AR-H,annual,2010,naphtha combustion consumption by freight transport,3.3915496999999997,TJ,CH4,3.0,kg/TJ,10.1746491,kg -73a7c589-6b06-3f54-8c92-7362df55ad43,SESCO,II.1.1,Chaco,AR-H,annual,2010,naphtha combustion consumption by freight transport,3.3915496999999997,TJ,N2O,0.6,kg/TJ,2.03492982,kg -7933b874-4cf3-305e-b19b-4621d3dc164e,SESCO,II.1.1,Chubut,AR-U,annual,2010,naphtha combustion consumption by freight transport,3.0893323999999995,TJ,CO2,73300.0,kg/TJ,226448.06491999998,kg -68d09f66-e49d-3b44-9f4a-2ebfcfb70f6e,SESCO,II.1.1,Chubut,AR-U,annual,2010,naphtha combustion consumption by freight transport,3.0893323999999995,TJ,CH4,3.0,kg/TJ,9.267997199999998,kg -c823075f-833a-35b3-9a33-45bfd6e6da34,SESCO,II.1.1,Chubut,AR-U,annual,2010,naphtha combustion consumption by freight transport,3.0893323999999995,TJ,N2O,0.6,kg/TJ,1.8535994399999995,kg -d3283949-0a7b-3b60-b5a6-eace98f0cda7,SESCO,II.1.1,Corrientes,AR-W,annual,2010,naphtha combustion consumption by freight transport,2.5520571999999997,TJ,CO2,73300.0,kg/TJ,187065.79275999998,kg -31dd90b5-f141-3f81-afa1-96ceecec3b0b,SESCO,II.1.1,Corrientes,AR-W,annual,2010,naphtha combustion consumption by freight transport,2.5520571999999997,TJ,CH4,3.0,kg/TJ,7.656171599999999,kg -a04eb641-899d-3159-9317-1c324cd7183f,SESCO,II.1.1,Corrientes,AR-W,annual,2010,naphtha combustion consumption by freight transport,2.5520571999999997,TJ,N2O,0.6,kg/TJ,1.5312343199999998,kg -48548058-e59e-3d79-b66e-16f83378dd32,SESCO,II.1.1,Córdoba,AR-X,annual,2010,naphtha combustion consumption by freight transport,12.659546899999999,TJ,CO2,73300.0,kg/TJ,927944.7877699999,kg -a0253afe-4232-3951-b4c0-09ff70ccb7ab,SESCO,II.1.1,Córdoba,AR-X,annual,2010,naphtha combustion consumption by freight transport,12.659546899999999,TJ,CH4,3.0,kg/TJ,37.9786407,kg -bc420897-ee01-35f4-8490-3949e2c247f0,SESCO,II.1.1,Córdoba,AR-X,annual,2010,naphtha combustion consumption by freight transport,12.659546899999999,TJ,N2O,0.6,kg/TJ,7.5957281399999985,kg -faf18342-9465-335a-b24a-a2441e344613,SESCO,II.1.1,Entre Rios,AR-E,annual,2010,naphtha combustion consumption by freight transport,5.3391722999999995,TJ,CO2,73300.0,kg/TJ,391361.32959,kg -9aacf9d4-eef5-3e59-98d8-7e0260136819,SESCO,II.1.1,Entre Rios,AR-E,annual,2010,naphtha combustion consumption by freight transport,5.3391722999999995,TJ,CH4,3.0,kg/TJ,16.017516899999997,kg -b65b4a93-b16b-3d4e-849a-1e41824def9d,SESCO,II.1.1,Entre Rios,AR-E,annual,2010,naphtha combustion consumption by freight transport,5.3391722999999995,TJ,N2O,0.6,kg/TJ,3.2035033799999995,kg -16f5de82-7832-342a-a1a2-58c645548a03,SESCO,II.1.1,Formosa,AR-P,annual,2010,naphtha combustion consumption by freight transport,0.36937669999999995,TJ,CO2,73300.0,kg/TJ,27075.312109999995,kg -fe992aca-4ab4-3128-b230-c1e4f1c67483,SESCO,II.1.1,Formosa,AR-P,annual,2010,naphtha combustion consumption by freight transport,0.36937669999999995,TJ,CH4,3.0,kg/TJ,1.1081301,kg -38ed3e9b-df37-30e1-a38a-c81bc5c358aa,SESCO,II.1.1,Formosa,AR-P,annual,2010,naphtha combustion consumption by freight transport,0.36937669999999995,TJ,N2O,0.6,kg/TJ,0.22162601999999995,kg -f6963d8b-0848-3179-8924-fe3fc8420fd1,SESCO,II.1.1,Jujuy,AR-Y,annual,2010,naphtha combustion consumption by freight transport,0.20147819999999997,TJ,CO2,73300.0,kg/TJ,14768.352059999997,kg -05b56aa7-05d6-33c6-9a88-272b790dfdc3,SESCO,II.1.1,Jujuy,AR-Y,annual,2010,naphtha combustion consumption by freight transport,0.20147819999999997,TJ,CH4,3.0,kg/TJ,0.6044345999999999,kg -7cc417c1-af0f-37c9-a95d-1d1a8d62af0f,SESCO,II.1.1,Jujuy,AR-Y,annual,2010,naphtha combustion consumption by freight transport,0.20147819999999997,TJ,N2O,0.6,kg/TJ,0.12088691999999998,kg -31b79ef8-de01-364e-9c25-30f876ef997b,SESCO,II.1.1,La Pampa,AR-L,annual,2010,naphtha combustion consumption by freight transport,1.4775067999999998,TJ,CO2,73300.0,kg/TJ,108301.24843999998,kg -cfaada9e-212d-39d7-85b7-824743a87078,SESCO,II.1.1,La Pampa,AR-L,annual,2010,naphtha combustion consumption by freight transport,1.4775067999999998,TJ,CH4,3.0,kg/TJ,4.4325204,kg -6291bd91-d7e6-32c3-830e-806ebe2e1e9f,SESCO,II.1.1,La Pampa,AR-L,annual,2010,naphtha combustion consumption by freight transport,1.4775067999999998,TJ,N2O,0.6,kg/TJ,0.8865040799999998,kg -0ddb1710-a9a1-3dfb-b0e9-a02f23dd8004,SESCO,II.1.1,La Rioja,AR-F,annual,2010,naphtha combustion consumption by freight transport,0.36937669999999995,TJ,CO2,73300.0,kg/TJ,27075.312109999995,kg -129278da-ed21-32b9-886b-5146318fbcae,SESCO,II.1.1,La Rioja,AR-F,annual,2010,naphtha combustion consumption by freight transport,0.36937669999999995,TJ,CH4,3.0,kg/TJ,1.1081301,kg -d88057ec-acd8-3e95-9366-fbe31240365c,SESCO,II.1.1,La Rioja,AR-F,annual,2010,naphtha combustion consumption by freight transport,0.36937669999999995,TJ,N2O,0.6,kg/TJ,0.22162601999999995,kg -df0de501-52b0-3bf2-9eeb-7863a63d65f2,SESCO,II.1.1,Mendoza,AR-M,annual,2010,naphtha combustion consumption by freight transport,10.376127299999998,TJ,CO2,73300.0,kg/TJ,760570.1310899999,kg -efe421bb-41eb-331e-9d1c-c3dc714d27cb,SESCO,II.1.1,Mendoza,AR-M,annual,2010,naphtha combustion consumption by freight transport,10.376127299999998,TJ,CH4,3.0,kg/TJ,31.128381899999994,kg -a286b276-e996-386e-8c38-bc9e55d514c2,SESCO,II.1.1,Mendoza,AR-M,annual,2010,naphtha combustion consumption by freight transport,10.376127299999998,TJ,N2O,0.6,kg/TJ,6.225676379999999,kg -efb7d2b3-02c5-35ae-ac53-6e0895db3cd0,SESCO,II.1.1,Misiones,AR-N,annual,2010,naphtha combustion consumption by freight transport,1.9476225999999999,TJ,CO2,73300.0,kg/TJ,142760.73658,kg -4cc6d842-822f-3055-926e-1c9759584338,SESCO,II.1.1,Misiones,AR-N,annual,2010,naphtha combustion consumption by freight transport,1.9476225999999999,TJ,CH4,3.0,kg/TJ,5.8428678,kg -30c3b8fb-102c-3066-b847-3e4e5041c31f,SESCO,II.1.1,Misiones,AR-N,annual,2010,naphtha combustion consumption by freight transport,1.9476225999999999,TJ,N2O,0.6,kg/TJ,1.1685735599999998,kg -d73935f1-bb47-3eea-9b3d-ffd23e10e879,SESCO,II.1.1,Neuquén,AR-Q,annual,2010,naphtha combustion consumption by freight transport,3.4251293999999994,TJ,CO2,73300.0,kg/TJ,251061.98501999996,kg -78b3eb87-5478-3e8b-bc21-849ecfccf97a,SESCO,II.1.1,Neuquén,AR-Q,annual,2010,naphtha combustion consumption by freight transport,3.4251293999999994,TJ,CH4,3.0,kg/TJ,10.275388199999998,kg -da6d3cd7-9778-3b49-94a7-6f8e30c8d566,SESCO,II.1.1,Neuquén,AR-Q,annual,2010,naphtha combustion consumption by freight transport,3.4251293999999994,TJ,N2O,0.6,kg/TJ,2.0550776399999995,kg -3d8579b4-f652-38d3-9f6a-69faab703bd6,SESCO,II.1.1,Rio Negro,AR-R,annual,2010,naphtha combustion consumption by freight transport,2.3505789999999998,TJ,CO2,73300.0,kg/TJ,172297.44069999998,kg -928d8bff-bcd0-39a5-8688-436ab5879b4f,SESCO,II.1.1,Rio Negro,AR-R,annual,2010,naphtha combustion consumption by freight transport,2.3505789999999998,TJ,CH4,3.0,kg/TJ,7.051736999999999,kg -3efb39e4-84fb-3502-b71d-e13331df598e,SESCO,II.1.1,Rio Negro,AR-R,annual,2010,naphtha combustion consumption by freight transport,2.3505789999999998,TJ,N2O,0.6,kg/TJ,1.4103473999999998,kg -3ad72d02-8796-3e18-93e7-d4816c920086,SESCO,II.1.1,Salta,AR-A,annual,2010,naphtha combustion consumption by freight transport,1.9476225999999999,TJ,CO2,73300.0,kg/TJ,142760.73658,kg -20360ce7-5761-3a81-9b3a-c59d3cb2e32e,SESCO,II.1.1,Salta,AR-A,annual,2010,naphtha combustion consumption by freight transport,1.9476225999999999,TJ,CH4,3.0,kg/TJ,5.8428678,kg -9f5e6ed4-7347-375f-bde5-8f9c7fca9dd0,SESCO,II.1.1,Salta,AR-A,annual,2010,naphtha combustion consumption by freight transport,1.9476225999999999,TJ,N2O,0.6,kg/TJ,1.1685735599999998,kg -7d2db5ea-ae5a-3f85-af46-afcfda0a3c89,SESCO,II.1.1,San Juan,AR-J,annual,2010,naphtha combustion consumption by freight transport,1.1752894999999999,TJ,CO2,73300.0,kg/TJ,86148.72034999999,kg -06bee1d8-5772-3f0d-9278-c00d1c1a25e7,SESCO,II.1.1,San Juan,AR-J,annual,2010,naphtha combustion consumption by freight transport,1.1752894999999999,TJ,CH4,3.0,kg/TJ,3.5258684999999996,kg -cc2a188b-0213-3885-bbf3-5440ee0a640f,SESCO,II.1.1,San Juan,AR-J,annual,2010,naphtha combustion consumption by freight transport,1.1752894999999999,TJ,N2O,0.6,kg/TJ,0.7051736999999999,kg -773fe49a-d9e8-3231-8f9f-f3290dbfce81,SESCO,II.1.1,San Luis,AR-D,annual,2010,naphtha combustion consumption by freight transport,1.4439270999999998,TJ,CO2,73300.0,kg/TJ,105839.85642999999,kg -64fd034c-5d8d-380b-b519-923140226179,SESCO,II.1.1,San Luis,AR-D,annual,2010,naphtha combustion consumption by freight transport,1.4439270999999998,TJ,CH4,3.0,kg/TJ,4.331781299999999,kg -8ae9b97a-0fad-381f-bf05-e96a98ec32b0,SESCO,II.1.1,San Luis,AR-D,annual,2010,naphtha combustion consumption by freight transport,1.4439270999999998,TJ,N2O,0.6,kg/TJ,0.8663562599999999,kg -0b3e8fee-0039-3b8e-bc63-a99fee3a04ab,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2010,naphtha combustion consumption by freight transport,0.7051736999999999,TJ,CO2,73300.0,kg/TJ,51689.232209999995,kg -5758678a-2083-37fb-8418-4a6d38293484,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2010,naphtha combustion consumption by freight transport,0.7051736999999999,TJ,CH4,3.0,kg/TJ,2.1155210999999996,kg -c9f9aad7-0164-30e7-976b-54473c32e55f,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2010,naphtha combustion consumption by freight transport,0.7051736999999999,TJ,N2O,0.6,kg/TJ,0.4231042199999999,kg -3741e888-1040-3ecc-8b22-7be7543e82da,SESCO,II.1.1,Santa Fe,AR-S,annual,2010,naphtha combustion consumption by freight transport,19.509805699999998,TJ,CO2,73300.0,kg/TJ,1430068.7578099999,kg -e7fcfd88-5ad8-388e-b762-079757488950,SESCO,II.1.1,Santa Fe,AR-S,annual,2010,naphtha combustion consumption by freight transport,19.509805699999998,TJ,CH4,3.0,kg/TJ,58.52941709999999,kg -5ddfc2ab-0dbb-3b03-8fa8-1403f72c78ce,SESCO,II.1.1,Santa Fe,AR-S,annual,2010,naphtha combustion consumption by freight transport,19.509805699999998,TJ,N2O,0.6,kg/TJ,11.705883419999997,kg -9cfc8b32-c371-3731-ae67-14ef9152da7b,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2010,naphtha combustion consumption by freight transport,0.671594,TJ,CO2,73300.0,kg/TJ,49227.8402,kg -f14055e9-50e6-3945-8025-f7e814ad352b,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2010,naphtha combustion consumption by freight transport,0.671594,TJ,CH4,3.0,kg/TJ,2.0147820000000003,kg -3e4ef8b6-decd-3e34-8f43-2c95b9b9ffd8,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2010,naphtha combustion consumption by freight transport,0.671594,TJ,N2O,0.6,kg/TJ,0.4029564,kg -e2d8975c-37bc-3ff9-ba26-1071c23647c6,SESCO,II.1.1,Tucuman,AR-T,annual,2010,naphtha combustion consumption by freight transport,2.6527963,TJ,CO2,73300.0,kg/TJ,194449.96878999998,kg -915514bf-e9ca-33b7-af1c-a6c36ac85388,SESCO,II.1.1,Tucuman,AR-T,annual,2010,naphtha combustion consumption by freight transport,2.6527963,TJ,CH4,3.0,kg/TJ,7.958388899999999,kg -5cf54486-fb60-3ddd-832c-a3a61bac876d,SESCO,II.1.1,Tucuman,AR-T,annual,2010,naphtha combustion consumption by freight transport,2.6527963,TJ,N2O,0.6,kg/TJ,1.59167778,kg -fad87dff-87dd-3e7f-977f-c9ac81645666,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,naphtha combustion consumption by public passenger transport,1.240769915,TJ,CO2,73300.0,kg/TJ,90948.4347695,kg -0a6b21d6-0a12-366e-8882-5717b5972378,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,naphtha combustion consumption by public passenger transport,1.240769915,TJ,CH4,3.0,kg/TJ,3.722309745,kg -e03f7b56-19c7-313f-9680-394b16ad5bad,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,naphtha combustion consumption by public passenger transport,1.240769915,TJ,N2O,0.6,kg/TJ,0.744461949,kg -a116db10-e17c-31af-84f1-3d1cc5b89d4a,SESCO,II.1.1,Capital Federal,AR-C,annual,2010,naphtha combustion consumption by public passenger transport,0.19744863599999996,TJ,CO2,73300.0,kg/TJ,14472.985018799996,kg -99a13797-bf1b-3487-9ca1-7378d82662ba,SESCO,II.1.1,Capital Federal,AR-C,annual,2010,naphtha combustion consumption by public passenger transport,0.19744863599999996,TJ,CH4,3.0,kg/TJ,0.5923459079999999,kg -110ee490-fe4e-3891-a8c9-1a6b6fa45b47,SESCO,II.1.1,Capital Federal,AR-C,annual,2010,naphtha combustion consumption by public passenger transport,0.19744863599999996,TJ,N2O,0.6,kg/TJ,0.11846918159999997,kg -84beb036-7338-35fb-a918-52b0c1389d91,SESCO,II.1.1,Chubut,AR-U,annual,2010,naphtha combustion consumption by public passenger transport,0.07387534,TJ,CO2,73300.0,kg/TJ,5415.062422,kg -a78682ed-5513-3d14-86f8-3069b8fa22de,SESCO,II.1.1,Chubut,AR-U,annual,2010,naphtha combustion consumption by public passenger transport,0.07387534,TJ,CH4,3.0,kg/TJ,0.22162601999999998,kg -f8027daa-d16a-3825-98c7-3cb1af4bb05c,SESCO,II.1.1,Chubut,AR-U,annual,2010,naphtha combustion consumption by public passenger transport,0.07387534,TJ,N2O,0.6,kg/TJ,0.044325204,kg -01045933-e55b-3821-853b-6ae91e761d18,SESCO,II.1.1,Córdoba,AR-X,annual,2010,naphtha combustion consumption by public passenger transport,0.035258685000000005,TJ,CO2,73300.0,kg/TJ,2584.4616105000005,kg -56fba308-9555-3bc1-91d4-8e5e993bea5a,SESCO,II.1.1,Córdoba,AR-X,annual,2010,naphtha combustion consumption by public passenger transport,0.035258685000000005,TJ,CH4,3.0,kg/TJ,0.10577605500000001,kg -8c0967e6-4a6d-3a65-98b3-943176f561a6,SESCO,II.1.1,Córdoba,AR-X,annual,2010,naphtha combustion consumption by public passenger transport,0.035258685000000005,TJ,N2O,0.6,kg/TJ,0.021155211000000004,kg -5be04469-8c76-37cd-94d9-7c45a7d752df,SESCO,II.1.1,Entre Rios,AR-E,annual,2010,naphtha combustion consumption by public passenger transport,0.0335797,TJ,CO2,73300.0,kg/TJ,2461.3920099999996,kg -73676ae2-fac3-38ce-8f0a-0765ed142ecd,SESCO,II.1.1,Entre Rios,AR-E,annual,2010,naphtha combustion consumption by public passenger transport,0.0335797,TJ,CH4,3.0,kg/TJ,0.1007391,kg -8128bbe0-e568-346b-a7e9-1d92e25c57b0,SESCO,II.1.1,Entre Rios,AR-E,annual,2010,naphtha combustion consumption by public passenger transport,0.0335797,TJ,N2O,0.6,kg/TJ,0.020147819999999997,kg -0277d32d-4ab3-3cb7-9a83-cd1c4f8764d2,SESCO,II.1.1,La Pampa,AR-L,annual,2010,naphtha combustion consumption by public passenger transport,0.020819413999999998,TJ,CO2,73300.0,kg/TJ,1526.0630462,kg -3c81d8b2-c19e-30cd-b46e-0127513a82e9,SESCO,II.1.1,La Pampa,AR-L,annual,2010,naphtha combustion consumption by public passenger transport,0.020819413999999998,TJ,CH4,3.0,kg/TJ,0.062458242,kg -b7a24073-7641-3eb4-86d2-59e2f2a2cc8f,SESCO,II.1.1,La Pampa,AR-L,annual,2010,naphtha combustion consumption by public passenger transport,0.020819413999999998,TJ,N2O,0.6,kg/TJ,0.012491648399999998,kg -b3619790-5f5a-3469-bd65-843fdd94f903,SESCO,II.1.1,Mendoza,AR-M,annual,2010,naphtha combustion consumption by public passenger transport,0.530895057,TJ,CO2,73300.0,kg/TJ,38914.607678099994,kg -973a4aa1-761c-3a82-af69-76aa849e79c8,SESCO,II.1.1,Mendoza,AR-M,annual,2010,naphtha combustion consumption by public passenger transport,0.530895057,TJ,CH4,3.0,kg/TJ,1.5926851709999998,kg -d834fe91-69ee-3462-bb83-8d909261ed35,SESCO,II.1.1,Mendoza,AR-M,annual,2010,naphtha combustion consumption by public passenger transport,0.530895057,TJ,N2O,0.6,kg/TJ,0.31853703419999996,kg -a47ac1f3-939d-30af-ba40-3ea6fd4fb6f2,SESCO,II.1.1,Misiones,AR-N,annual,2010,naphtha combustion consumption by public passenger transport,0.12088692,TJ,CO2,73300.0,kg/TJ,8861.011236,kg -d7dc7a0c-a37e-38c9-b7f6-9885ff8df2c9,SESCO,II.1.1,Misiones,AR-N,annual,2010,naphtha combustion consumption by public passenger transport,0.12088692,TJ,CH4,3.0,kg/TJ,0.36266075999999997,kg -c67a0f8a-3e8a-3b45-a0ac-84632b10caa6,SESCO,II.1.1,Misiones,AR-N,annual,2010,naphtha combustion consumption by public passenger transport,0.12088692,TJ,N2O,0.6,kg/TJ,0.07253215199999999,kg -f387b281-c840-35cf-bdea-1ca208bb6a90,SESCO,II.1.1,Neuquén,AR-Q,annual,2010,naphtha combustion consumption by public passenger transport,0.3149775859999999,TJ,CO2,73300.0,kg/TJ,23087.857053799995,kg -de6fe383-0c78-392b-84d5-ab2b0240da48,SESCO,II.1.1,Neuquén,AR-Q,annual,2010,naphtha combustion consumption by public passenger transport,0.3149775859999999,TJ,CH4,3.0,kg/TJ,0.9449327579999998,kg -ba2ba212-ca01-335b-9383-bc79f2e25c91,SESCO,II.1.1,Neuquén,AR-Q,annual,2010,naphtha combustion consumption by public passenger transport,0.3149775859999999,TJ,N2O,0.6,kg/TJ,0.18898655159999994,kg -658ade9d-f324-35e4-a3ae-8f9c41d59d6b,SESCO,II.1.1,Rio Negro,AR-R,annual,2010,naphtha combustion consumption by public passenger transport,0.5117546279999999,TJ,CO2,73300.0,kg/TJ,37511.614232399996,kg -08322eb1-35bb-3b8e-8818-060da59e5056,SESCO,II.1.1,Rio Negro,AR-R,annual,2010,naphtha combustion consumption by public passenger transport,0.5117546279999999,TJ,CH4,3.0,kg/TJ,1.535263884,kg -50a4b3d6-0717-3f1e-b4a3-c87565a95412,SESCO,II.1.1,Rio Negro,AR-R,annual,2010,naphtha combustion consumption by public passenger transport,0.5117546279999999,TJ,N2O,0.6,kg/TJ,0.3070527767999999,kg -25d718dc-4ff3-3414-a577-176c58460212,SESCO,II.1.1,San Juan,AR-J,annual,2010,naphtha combustion consumption by public passenger transport,0.001343188,TJ,CO2,73300.0,kg/TJ,98.45568039999999,kg -f1b89470-24c0-3fff-82f9-45889577741e,SESCO,II.1.1,San Juan,AR-J,annual,2010,naphtha combustion consumption by public passenger transport,0.001343188,TJ,CH4,3.0,kg/TJ,0.004029563999999999,kg -8952967e-0c59-3b60-8d04-e3933cbbc0a7,SESCO,II.1.1,San Juan,AR-J,annual,2010,naphtha combustion consumption by public passenger transport,0.001343188,TJ,N2O,0.6,kg/TJ,0.0008059127999999999,kg -5cd0b545-ba3a-3fff-b0c4-8870fcc09110,SESCO,II.1.1,San Luis,AR-D,annual,2010,naphtha combustion consumption by public passenger transport,0.005372752,TJ,CO2,73300.0,kg/TJ,393.82272159999997,kg -773a0a0d-10c9-347e-90fc-3b205bc0d975,SESCO,II.1.1,San Luis,AR-D,annual,2010,naphtha combustion consumption by public passenger transport,0.005372752,TJ,CH4,3.0,kg/TJ,0.016118255999999997,kg -9384e4d1-6395-338f-ad07-35fa2288bd0a,SESCO,II.1.1,San Luis,AR-D,annual,2010,naphtha combustion consumption by public passenger transport,0.005372752,TJ,N2O,0.6,kg/TJ,0.0032236511999999998,kg -5147deb6-7f26-38f1-8a89-acecfef9ffdf,SESCO,II.1.1,Santa Fe,AR-S,annual,2010,naphtha combustion consumption by public passenger transport,0.31598497699999994,TJ,CO2,73300.0,kg/TJ,23161.698814099997,kg -85583e1c-41bc-30e9-b528-65bea1d6a6d5,SESCO,II.1.1,Santa Fe,AR-S,annual,2010,naphtha combustion consumption by public passenger transport,0.31598497699999994,TJ,CH4,3.0,kg/TJ,0.9479549309999998,kg -b3c84c51-44c9-39f6-9356-badb706812e7,SESCO,II.1.1,Santa Fe,AR-S,annual,2010,naphtha combustion consumption by public passenger transport,0.31598497699999994,TJ,N2O,0.6,kg/TJ,0.18959098619999995,kg -50c5b4e9-c4ff-355a-9d35-51aafd0f62bf,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,naphtha combustion consumption by public passenger transport,3.491617206,TJ,CO2,73300.0,kg/TJ,255935.5411998,kg -693d9a89-e7fa-325b-a2b8-6bd42c59f522,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,naphtha combustion consumption by public passenger transport,3.491617206,TJ,CH4,3.0,kg/TJ,10.474851617999999,kg -aa4c8fca-6cf2-3b0f-b4cc-13b73b3b87f0,SESCO,II.1.1,Buenos Aires,AR-B,annual,2010,naphtha combustion consumption by public passenger transport,3.491617206,TJ,N2O,0.6,kg/TJ,2.0949703235999997,kg -4efab5c4-f266-3e87-9bed-573200e8d817,SESCO,II.1.1,Capital Federal,AR-C,annual,2010,naphtha combustion consumption by public passenger transport,0.40967233999999997,TJ,CO2,73300.0,kg/TJ,30028.982522,kg -94b08186-f169-3e51-8bf7-1cace4754abb,SESCO,II.1.1,Capital Federal,AR-C,annual,2010,naphtha combustion consumption by public passenger transport,0.40967233999999997,TJ,CH4,3.0,kg/TJ,1.22901702,kg -f44bc7ea-d5f1-3da5-955d-6bfa8229681d,SESCO,II.1.1,Capital Federal,AR-C,annual,2010,naphtha combustion consumption by public passenger transport,0.40967233999999997,TJ,N2O,0.6,kg/TJ,0.24580340399999998,kg -c001ecab-56b7-3b31-bc45-d66a432bf514,SESCO,II.1.1,Chaco,AR-H,annual,2010,naphtha combustion consumption by public passenger transport,0.04633998599999999,TJ,CO2,73300.0,kg/TJ,3396.7209737999997,kg -ecb06bc7-aa61-3fc9-99d1-bcf269b15a17,SESCO,II.1.1,Chaco,AR-H,annual,2010,naphtha combustion consumption by public passenger transport,0.04633998599999999,TJ,CH4,3.0,kg/TJ,0.13901995799999997,kg -b2feb14a-e602-3df6-b75f-1ac6d7b105e2,SESCO,II.1.1,Chaco,AR-H,annual,2010,naphtha combustion consumption by public passenger transport,0.04633998599999999,TJ,N2O,0.6,kg/TJ,0.027803991599999994,kg -5a003ab2-fe80-32be-9237-dc8f57726e4b,SESCO,II.1.1,Chubut,AR-U,annual,2010,naphtha combustion consumption by public passenger transport,0.006044346,TJ,CO2,73300.0,kg/TJ,443.05056179999997,kg -3de6493c-4d63-3cf9-b387-190c68d63273,SESCO,II.1.1,Chubut,AR-U,annual,2010,naphtha combustion consumption by public passenger transport,0.006044346,TJ,CH4,3.0,kg/TJ,0.018133038,kg -6f97c9dc-f459-3638-a938-58cb6790ca07,SESCO,II.1.1,Chubut,AR-U,annual,2010,naphtha combustion consumption by public passenger transport,0.006044346,TJ,N2O,0.6,kg/TJ,0.0036266075999999998,kg -bb025d04-82ef-305b-b4cb-768f98f85b3d,SESCO,II.1.1,Córdoba,AR-X,annual,2010,naphtha combustion consumption by public passenger transport,0.24479601299999998,TJ,CO2,73300.0,kg/TJ,17943.547752899998,kg -1769373b-f139-3848-a878-f267831f95eb,SESCO,II.1.1,Córdoba,AR-X,annual,2010,naphtha combustion consumption by public passenger transport,0.24479601299999998,TJ,CH4,3.0,kg/TJ,0.7343880389999999,kg -ac3a0cd5-59bb-35d2-a04c-61c73c06a465,SESCO,II.1.1,Córdoba,AR-X,annual,2010,naphtha combustion consumption by public passenger transport,0.24479601299999998,TJ,N2O,0.6,kg/TJ,0.14687760779999998,kg -4a5239e2-ea8f-36ce-a4c4-1f302684ca50,SESCO,II.1.1,Entre Rios,AR-E,annual,2010,naphtha combustion consumption by public passenger transport,0.24110224599999996,TJ,CO2,73300.0,kg/TJ,17672.794631799996,kg -63b4253f-53d9-3ccd-8b83-1d56a2b088e4,SESCO,II.1.1,Entre Rios,AR-E,annual,2010,naphtha combustion consumption by public passenger transport,0.24110224599999996,TJ,CH4,3.0,kg/TJ,0.7233067379999999,kg -30c65ab6-36d3-3bbf-aa02-8dc1db53eff9,SESCO,II.1.1,Entre Rios,AR-E,annual,2010,naphtha combustion consumption by public passenger transport,0.24110224599999996,TJ,N2O,0.6,kg/TJ,0.14466134759999996,kg -e60d606f-0ae7-314d-a0ca-f6a2b8e6c725,SESCO,II.1.1,Formosa,AR-P,annual,2010,naphtha combustion consumption by public passenger transport,0.0010073909999999998,TJ,CO2,73300.0,kg/TJ,73.84176029999999,kg -e35474f7-90f5-3e50-8e78-03207d926766,SESCO,II.1.1,Formosa,AR-P,annual,2010,naphtha combustion consumption by public passenger transport,0.0010073909999999998,TJ,CH4,3.0,kg/TJ,0.0030221729999999995,kg -6d9f592d-ffb7-315d-833c-fde0bdf15286,SESCO,II.1.1,Formosa,AR-P,annual,2010,naphtha combustion consumption by public passenger transport,0.0010073909999999998,TJ,N2O,0.6,kg/TJ,0.0006044345999999999,kg -9e8dcd9a-4116-317d-9375-4fe8547b63c7,SESCO,II.1.1,Jujuy,AR-Y,annual,2010,naphtha combustion consumption by public passenger transport,0.001343188,TJ,CO2,73300.0,kg/TJ,98.45568039999999,kg -b9c4478a-44ce-39a4-b962-074854b4a382,SESCO,II.1.1,Jujuy,AR-Y,annual,2010,naphtha combustion consumption by public passenger transport,0.001343188,TJ,CH4,3.0,kg/TJ,0.004029563999999999,kg -0e3c0dd3-ad2f-3181-9880-6314026920d0,SESCO,II.1.1,Jujuy,AR-Y,annual,2010,naphtha combustion consumption by public passenger transport,0.001343188,TJ,N2O,0.6,kg/TJ,0.0008059127999999999,kg -d420292d-820d-36d8-941c-0f5a88c1dbff,SESCO,II.1.1,La Pampa,AR-L,annual,2010,naphtha combustion consumption by public passenger transport,0.0016789849999999998,TJ,CO2,73300.0,kg/TJ,123.06960049999999,kg -02b49fb6-5c4b-31c6-ab36-0c39ac0122d9,SESCO,II.1.1,La Pampa,AR-L,annual,2010,naphtha combustion consumption by public passenger transport,0.0016789849999999998,TJ,CH4,3.0,kg/TJ,0.005036954999999999,kg -f36d166d-fba1-31d8-855e-6d83c78b2272,SESCO,II.1.1,La Pampa,AR-L,annual,2010,naphtha combustion consumption by public passenger transport,0.0016789849999999998,TJ,N2O,0.6,kg/TJ,0.0010073909999999998,kg -63faef15-d07c-355a-935f-ff66f91ac3ca,SESCO,II.1.1,La Rioja,AR-F,annual,2010,naphtha combustion consumption by public passenger transport,0.0010073909999999998,TJ,CO2,73300.0,kg/TJ,73.84176029999999,kg -7d0c0e65-a074-3e47-a030-ad361d6a964f,SESCO,II.1.1,La Rioja,AR-F,annual,2010,naphtha combustion consumption by public passenger transport,0.0010073909999999998,TJ,CH4,3.0,kg/TJ,0.0030221729999999995,kg -c1ae09be-f46a-308a-99a9-2eaee92388c1,SESCO,II.1.1,La Rioja,AR-F,annual,2010,naphtha combustion consumption by public passenger transport,0.0010073909999999998,TJ,N2O,0.6,kg/TJ,0.0006044345999999999,kg -04368da2-b4a8-31e1-b5ad-4579cb2565fa,SESCO,II.1.1,Mendoza,AR-M,annual,2010,naphtha combustion consumption by public passenger transport,0.5298876659999999,TJ,CO2,73300.0,kg/TJ,38840.765917799996,kg -fa4826da-2afa-350a-b2ef-9e8e19996108,SESCO,II.1.1,Mendoza,AR-M,annual,2010,naphtha combustion consumption by public passenger transport,0.5298876659999999,TJ,CH4,3.0,kg/TJ,1.5896629979999997,kg -63b0ab50-be29-3653-a1fb-72585a3a7581,SESCO,II.1.1,Mendoza,AR-M,annual,2010,naphtha combustion consumption by public passenger transport,0.5298876659999999,TJ,N2O,0.6,kg/TJ,0.3179325995999999,kg -3fb71139-3080-3302-ad8f-c00403737548,SESCO,II.1.1,Misiones,AR-N,annual,2010,naphtha combustion consumption by public passenger transport,0.019812023,TJ,CO2,73300.0,kg/TJ,1452.2212859,kg -f56ad08e-543f-3ffe-ba31-d7088361b960,SESCO,II.1.1,Misiones,AR-N,annual,2010,naphtha combustion consumption by public passenger transport,0.019812023,TJ,CH4,3.0,kg/TJ,0.05943606900000001,kg -d5325aaf-224a-3251-a801-c031942969d5,SESCO,II.1.1,Misiones,AR-N,annual,2010,naphtha combustion consumption by public passenger transport,0.019812023,TJ,N2O,0.6,kg/TJ,0.011887213800000001,kg -6665cc81-4a22-320d-abee-ee645ea00b80,SESCO,II.1.1,Neuquén,AR-Q,annual,2010,naphtha combustion consumption by public passenger transport,0.021826804999999998,TJ,CO2,73300.0,kg/TJ,1599.9048064999997,kg -f9efc00f-7ae9-38d5-94fb-6529c2c875f7,SESCO,II.1.1,Neuquén,AR-Q,annual,2010,naphtha combustion consumption by public passenger transport,0.021826804999999998,TJ,CH4,3.0,kg/TJ,0.06548041499999999,kg -9c9b8dcf-62b4-3e7b-a9ab-8f492c9c79b8,SESCO,II.1.1,Neuquén,AR-Q,annual,2010,naphtha combustion consumption by public passenger transport,0.021826804999999998,TJ,N2O,0.6,kg/TJ,0.013096082999999998,kg -deb2d0e3-aaa1-3e55-9336-0de9c0514aeb,SESCO,II.1.1,Rio Negro,AR-R,annual,2010,naphtha combustion consumption by public passenger transport,0.16957748499999997,TJ,CO2,73300.0,kg/TJ,12430.029650499999,kg -e277e07d-8424-305d-b254-8754cd31b39c,SESCO,II.1.1,Rio Negro,AR-R,annual,2010,naphtha combustion consumption by public passenger transport,0.16957748499999997,TJ,CH4,3.0,kg/TJ,0.5087324549999999,kg -a190bbf9-3fb8-30c0-9182-ed6a15fdd9ca,SESCO,II.1.1,Rio Negro,AR-R,annual,2010,naphtha combustion consumption by public passenger transport,0.16957748499999997,TJ,N2O,0.6,kg/TJ,0.10174649099999998,kg -4c935c26-6636-39d9-8209-7ffe9c20d5da,SESCO,II.1.1,Salta,AR-A,annual,2010,naphtha combustion consumption by public passenger transport,0.0016789849999999998,TJ,CO2,73300.0,kg/TJ,123.06960049999999,kg -9d045ecd-205a-3c4c-8134-1aaccd997046,SESCO,II.1.1,Salta,AR-A,annual,2010,naphtha combustion consumption by public passenger transport,0.0016789849999999998,TJ,CH4,3.0,kg/TJ,0.005036954999999999,kg -9c47cc75-486a-3d66-a40d-41f69b7e2119,SESCO,II.1.1,Salta,AR-A,annual,2010,naphtha combustion consumption by public passenger transport,0.0016789849999999998,TJ,N2O,0.6,kg/TJ,0.0010073909999999998,kg -25d718dc-4ff3-3414-a577-176c58460212,SESCO,II.1.1,San Juan,AR-J,annual,2010,naphtha combustion consumption by public passenger transport,0.001343188,TJ,CO2,73300.0,kg/TJ,98.45568039999999,kg -f1b89470-24c0-3fff-82f9-45889577741e,SESCO,II.1.1,San Juan,AR-J,annual,2010,naphtha combustion consumption by public passenger transport,0.001343188,TJ,CH4,3.0,kg/TJ,0.004029563999999999,kg -8952967e-0c59-3b60-8d04-e3933cbbc0a7,SESCO,II.1.1,San Juan,AR-J,annual,2010,naphtha combustion consumption by public passenger transport,0.001343188,TJ,N2O,0.6,kg/TJ,0.0008059127999999999,kg -6ee24818-10f8-3b5f-a00a-ae9157d4a289,SESCO,II.1.1,San Luis,AR-D,annual,2010,naphtha combustion consumption by public passenger transport,0.04264621899999999,TJ,CO2,73300.0,kg/TJ,3125.9678526999996,kg -2f6a2702-5b4f-31e4-95f3-4598db1fbb90,SESCO,II.1.1,San Luis,AR-D,annual,2010,naphtha combustion consumption by public passenger transport,0.04264621899999999,TJ,CH4,3.0,kg/TJ,0.12793865699999998,kg -682b5c0d-7ddf-3fe2-8b5d-a90cea35e70f,SESCO,II.1.1,San Luis,AR-D,annual,2010,naphtha combustion consumption by public passenger transport,0.04264621899999999,TJ,N2O,0.6,kg/TJ,0.025587731399999994,kg -80db25f6-fc40-3a2d-9f68-eef33641e4a7,SESCO,II.1.1,Santa Fe,AR-S,annual,2010,naphtha combustion consumption by public passenger transport,0.7578938289999999,TJ,CO2,73300.0,kg/TJ,55553.617665699996,kg -1b93d027-20ec-352b-8055-47bea0d67dc8,SESCO,II.1.1,Santa Fe,AR-S,annual,2010,naphtha combustion consumption by public passenger transport,0.7578938289999999,TJ,CH4,3.0,kg/TJ,2.2736814869999997,kg -83444b29-c539-36cd-bb86-c934d04f458f,SESCO,II.1.1,Santa Fe,AR-S,annual,2010,naphtha combustion consumption by public passenger transport,0.7578938289999999,TJ,N2O,0.6,kg/TJ,0.45473629739999993,kg -7194cba7-ca7e-3fb8-812f-60e8f2446b3e,SESCO,II.1.1,Tucuman,AR-T,annual,2010,naphtha combustion consumption by public passenger transport,0.0010073909999999998,TJ,CO2,73300.0,kg/TJ,73.84176029999999,kg -b74d2098-0427-35b7-86aa-9f29251f5deb,SESCO,II.1.1,Tucuman,AR-T,annual,2010,naphtha combustion consumption by public passenger transport,0.0010073909999999998,TJ,CH4,3.0,kg/TJ,0.0030221729999999995,kg -2112d494-9c84-33c5-b74b-d84e52327d25,SESCO,II.1.1,Tucuman,AR-T,annual,2010,naphtha combustion consumption by public passenger transport,0.0010073909999999998,TJ,N2O,0.6,kg/TJ,0.0006044345999999999,kg -e75637ab-9793-3783-80a1-2bee6568ca2c,SESCO,II.1.1,Capital Federal,AR-C,annual,2011,naphtha combustion consumption by to the public,41.3366107,TJ,CO2,73300.0,kg/TJ,3029973.5643100003,kg -7cc74fb6-99fd-3ea4-b34c-c3e25a26bdb8,SESCO,II.1.1,Capital Federal,AR-C,annual,2011,naphtha combustion consumption by to the public,41.3366107,TJ,CH4,3.0,kg/TJ,124.00983210000001,kg -ca0ee047-6520-3a67-b140-8bdbdb2c7599,SESCO,II.1.1,Capital Federal,AR-C,annual,2011,naphtha combustion consumption by to the public,41.3366107,TJ,N2O,0.6,kg/TJ,24.80196642,kg -a2dce5ad-66d5-3299-b649-7284d6d786f5,SESCO,II.1.1,Capital Federal,AR-C,annual,2011,naphtha combustion consumption by to the public,5.238433199999999,TJ,CO2,73300.0,kg/TJ,383977.15355999995,kg -7b80fec1-c41c-3b8c-9f84-f21b66688785,SESCO,II.1.1,Capital Federal,AR-C,annual,2011,naphtha combustion consumption by to the public,5.238433199999999,TJ,CH4,3.0,kg/TJ,15.715299599999998,kg -8fc7f846-249a-3277-a01b-7e460bba453a,SESCO,II.1.1,Capital Federal,AR-C,annual,2011,naphtha combustion consumption by to the public,5.238433199999999,TJ,N2O,0.6,kg/TJ,3.1430599199999993,kg -7b3109c2-ffce-3c2f-abfd-441a9e7c4f6c,SESCO,II.5.1,Córdoba,AR-X,annual,2011,naphtha combustion consumption by agriculture machines,9.980558434,TJ,CO2,73300.0,kg/TJ,731574.9332122001,kg -0b877d4e-fa88-3d59-9ea1-f692fe82208a,SESCO,II.5.1,Córdoba,AR-X,annual,2011,naphtha combustion consumption by agriculture machines,9.980558434,TJ,CH4,3.0,kg/TJ,29.941675302,kg -91a5cb11-9ec3-3578-8f13-c5db344906df,SESCO,II.5.1,Córdoba,AR-X,annual,2011,naphtha combustion consumption by agriculture machines,9.980558434,TJ,N2O,0.6,kg/TJ,5.9883350604,kg -4046cc8d-a67d-3d81-b14d-06fc6990592d,SESCO,II.5.1,Santa Fe,AR-S,annual,2011,naphtha combustion consumption by agriculture machines,20.893289340000003,TJ,CO2,73300.0,kg/TJ,1531478.108622,kg -b4caac93-dc63-38b1-bd90-88816185fd7e,SESCO,II.5.1,Santa Fe,AR-S,annual,2011,naphtha combustion consumption by agriculture machines,20.893289340000003,TJ,CH4,3.0,kg/TJ,62.67986802000001,kg -665bdf18-17f3-39bd-a900-aecc0e438418,SESCO,II.5.1,Santa Fe,AR-S,annual,2011,naphtha combustion consumption by agriculture machines,20.893289340000003,TJ,N2O,0.6,kg/TJ,12.535973604,kg -204d0bfd-4f58-3447-8119-813742324677,SESCO,II.5.1,Córdoba,AR-X,annual,2011,naphtha combustion consumption by agriculture machines,5.346224037,TJ,CO2,73300.0,kg/TJ,391878.2219121,kg -5a022bc3-7d76-31f6-b358-1452a12c0270,SESCO,II.5.1,Córdoba,AR-X,annual,2011,naphtha combustion consumption by agriculture machines,5.346224037,TJ,CH4,3.0,kg/TJ,16.038672111,kg -e8f2715c-1060-3862-b8d9-64972c24de81,SESCO,II.5.1,Córdoba,AR-X,annual,2011,naphtha combustion consumption by agriculture machines,5.346224037,TJ,N2O,0.6,kg/TJ,3.2077344221999997,kg -b8f69ccb-3834-323c-9439-b34879fc7981,SESCO,II.5.1,Santa Fe,AR-S,annual,2011,naphtha combustion consumption by agriculture machines,1.007391,TJ,CO2,73300.0,kg/TJ,73841.7603,kg -88b43a9c-dc0d-3e9e-93a4-1cc1f4ae30bc,SESCO,II.5.1,Santa Fe,AR-S,annual,2011,naphtha combustion consumption by agriculture machines,1.007391,TJ,CH4,3.0,kg/TJ,3.0221729999999996,kg -0d9f948b-a395-31a5-86d7-6dd7fccf9504,SESCO,II.5.1,Santa Fe,AR-S,annual,2011,naphtha combustion consumption by agriculture machines,1.007391,TJ,N2O,0.6,kg/TJ,0.6044345999999999,kg -e6be9040-4369-33e1-83ed-977cf8c4e036,SESCO,II.1.1,Buenos Aires,AR-B,annual,2011,naphtha combustion consumption by to the public,320.0836480226,TJ,CO2,73300.0,kg/TJ,23462131.400056582,kg -9f8cad3c-25f9-3e4d-8736-1e90e5ba09c0,SESCO,II.1.1,Buenos Aires,AR-B,annual,2011,naphtha combustion consumption by to the public,320.0836480226,TJ,CH4,3.0,kg/TJ,960.2509440678,kg -c2f2118b-6703-3805-9f7c-ed16a9b0c441,SESCO,II.1.1,Buenos Aires,AR-B,annual,2011,naphtha combustion consumption by to the public,320.0836480226,TJ,N2O,0.6,kg/TJ,192.05018881356,kg -8e9899b2-2f1c-3804-92b1-7b2a91c5d5b9,SESCO,II.1.1,Capital Federal,AR-C,annual,2011,naphtha combustion consumption by to the public,15.761303788999998,TJ,CO2,73300.0,kg/TJ,1155303.5677337,kg -e7b9f307-7c81-3286-b865-0be9ba287750,SESCO,II.1.1,Capital Federal,AR-C,annual,2011,naphtha combustion consumption by to the public,15.761303788999998,TJ,CH4,3.0,kg/TJ,47.283911366999995,kg -88e51062-90eb-35e6-84b8-c32f1b5f015a,SESCO,II.1.1,Capital Federal,AR-C,annual,2011,naphtha combustion consumption by to the public,15.761303788999998,TJ,N2O,0.6,kg/TJ,9.456782273399998,kg -2971273d-2984-304f-9e17-7c9053da243d,SESCO,II.1.1,Catamarca,AR-K,annual,2011,naphtha combustion consumption by to the public,0.6712582029999999,TJ,CO2,73300.0,kg/TJ,49203.226279899995,kg -48291f32-f807-31f8-9794-04273a8ca626,SESCO,II.1.1,Catamarca,AR-K,annual,2011,naphtha combustion consumption by to the public,0.6712582029999999,TJ,CH4,3.0,kg/TJ,2.013774609,kg -ac3bd9ea-4202-323f-be53-40e0fbb2fbc4,SESCO,II.1.1,Catamarca,AR-K,annual,2011,naphtha combustion consumption by to the public,0.6712582029999999,TJ,N2O,0.6,kg/TJ,0.40275492179999994,kg -d2f5dacf-15b9-3bce-9bfd-1ac133cba81f,SESCO,II.1.1,Chaco,AR-H,annual,2011,naphtha combustion consumption by to the public,1.231031802,TJ,CO2,73300.0,kg/TJ,90234.6310866,kg -f7467170-c05d-3190-99f1-265867c1975f,SESCO,II.1.1,Chaco,AR-H,annual,2011,naphtha combustion consumption by to the public,1.231031802,TJ,CH4,3.0,kg/TJ,3.693095406,kg -845b0603-047b-3aef-9fda-291cb5d6cd55,SESCO,II.1.1,Chaco,AR-H,annual,2011,naphtha combustion consumption by to the public,1.231031802,TJ,N2O,0.6,kg/TJ,0.7386190812,kg -4681a4cb-27f3-347b-85b2-86a79647a409,SESCO,II.1.1,Corrientes,AR-W,annual,2011,naphtha combustion consumption by to the public,115.47051438999999,TJ,CO2,73300.0,kg/TJ,8463988.704787,kg -d200523b-acad-3a98-a008-42109f495def,SESCO,II.1.1,Corrientes,AR-W,annual,2011,naphtha combustion consumption by to the public,115.47051438999999,TJ,CH4,3.0,kg/TJ,346.41154316999996,kg -8b5328b0-1685-3dd9-8404-ef885b99f32a,SESCO,II.1.1,Corrientes,AR-W,annual,2011,naphtha combustion consumption by to the public,115.47051438999999,TJ,N2O,0.6,kg/TJ,69.28230863399999,kg -a47c470e-28ac-3bbd-ac78-ade316813400,SESCO,II.1.1,Córdoba,AR-X,annual,2011,naphtha combustion consumption by to the public,171.28534854199995,TJ,CO2,73300.0,kg/TJ,12555216.048128596,kg -fc896631-b882-3efb-96d5-e221e7d65369,SESCO,II.1.1,Córdoba,AR-X,annual,2011,naphtha combustion consumption by to the public,171.28534854199995,TJ,CH4,3.0,kg/TJ,513.8560456259999,kg -87289263-bb13-3344-97df-cc046693dd5d,SESCO,II.1.1,Córdoba,AR-X,annual,2011,naphtha combustion consumption by to the public,171.28534854199995,TJ,N2O,0.6,kg/TJ,102.77120912519997,kg -b5d1223c-5836-37dc-8e13-d970fea18319,SESCO,II.1.1,Entre Rios,AR-E,annual,2011,naphtha combustion consumption by to the public,18.414771682999998,TJ,CO2,73300.0,kg/TJ,1349802.7643638998,kg -781187d5-20b5-3854-82cb-f7595551a787,SESCO,II.1.1,Entre Rios,AR-E,annual,2011,naphtha combustion consumption by to the public,18.414771682999998,TJ,CH4,3.0,kg/TJ,55.244315048999994,kg -2ab2963d-e98f-3b72-b6de-106a1fd73f49,SESCO,II.1.1,Entre Rios,AR-E,annual,2011,naphtha combustion consumption by to the public,18.414771682999998,TJ,N2O,0.6,kg/TJ,11.048863009799998,kg -5e4ed6a5-8783-39e6-960d-a159d5bc7765,SESCO,II.1.1,Mendoza,AR-M,annual,2011,naphtha combustion consumption by to the public,157.30847001099997,TJ,CO2,73300.0,kg/TJ,11530710.851806298,kg -b067a6c9-ef6f-30ae-b92d-e6cece6ba30b,SESCO,II.1.1,Mendoza,AR-M,annual,2011,naphtha combustion consumption by to the public,157.30847001099997,TJ,CH4,3.0,kg/TJ,471.92541003299993,kg -d9a2b9f1-e085-3d7a-8f4e-dc097fcb1824,SESCO,II.1.1,Mendoza,AR-M,annual,2011,naphtha combustion consumption by to the public,157.30847001099997,TJ,N2O,0.6,kg/TJ,94.38508200659997,kg -f31f1a8d-f4c1-38d0-856e-0dc335623487,SESCO,II.1.1,Misiones,AR-N,annual,2011,naphtha combustion consumption by to the public,190.451633911,TJ,CO2,73300.0,kg/TJ,13960104.7656763,kg -60f153ec-2b2e-3098-9516-893e764960f7,SESCO,II.1.1,Misiones,AR-N,annual,2011,naphtha combustion consumption by to the public,190.451633911,TJ,CH4,3.0,kg/TJ,571.3549017329999,kg -35fd6915-d7f1-38ee-89dc-e2843a300f2b,SESCO,II.1.1,Misiones,AR-N,annual,2011,naphtha combustion consumption by to the public,190.451633911,TJ,N2O,0.6,kg/TJ,114.27098034659998,kg -be9e046b-15df-3b1d-90fa-a3d467c13b10,SESCO,II.1.1,Rio Negro,AR-R,annual,2011,naphtha combustion consumption by to the public,1.50101259,TJ,CO2,73300.0,kg/TJ,110024.222847,kg -c1936597-26af-3944-8984-2d1e6a365f53,SESCO,II.1.1,Rio Negro,AR-R,annual,2011,naphtha combustion consumption by to the public,1.50101259,TJ,CH4,3.0,kg/TJ,4.50303777,kg -33f177ea-b8f2-3bbf-8081-023e03845303,SESCO,II.1.1,Rio Negro,AR-R,annual,2011,naphtha combustion consumption by to the public,1.50101259,TJ,N2O,0.6,kg/TJ,0.9006075539999999,kg -2bb0cb01-bed6-3ef7-8e1b-520dcdee44ee,SESCO,II.1.1,San Juan,AR-J,annual,2011,naphtha combustion consumption by to the public,36.047136356,TJ,CO2,73300.0,kg/TJ,2642255.0948948003,kg -3bfb924d-0615-3bed-be25-3fe3c11d2570,SESCO,II.1.1,San Juan,AR-J,annual,2011,naphtha combustion consumption by to the public,36.047136356,TJ,CH4,3.0,kg/TJ,108.141409068,kg -fd5aa5ce-5abb-3caa-87fc-dba5fb8cea1e,SESCO,II.1.1,San Juan,AR-J,annual,2011,naphtha combustion consumption by to the public,36.047136356,TJ,N2O,0.6,kg/TJ,21.6282818136,kg -8b500bb3-4960-3244-8800-28e1121b8291,SESCO,II.1.1,Santa Fe,AR-S,annual,2011,naphtha combustion consumption by to the public,161.25979331,TJ,CO2,73300.0,kg/TJ,11820342.849623,kg -bc591b1d-36c2-3404-99c7-9367fcfc279a,SESCO,II.1.1,Santa Fe,AR-S,annual,2011,naphtha combustion consumption by to the public,161.25979331,TJ,CH4,3.0,kg/TJ,483.77937993,kg -1f0c9d09-98f2-3c1a-99d6-e4c69dd10ca5,SESCO,II.1.1,Santa Fe,AR-S,annual,2011,naphtha combustion consumption by to the public,161.25979331,TJ,N2O,0.6,kg/TJ,96.75587598599999,kg -3dfe189b-4439-3445-af35-ebaae96894bd,SESCO,II.1.1,Buenos Aires,AR-B,annual,2011,naphtha combustion consumption by to the public,7099.462618740799,TJ,CO2,73300.0,kg/TJ,520390609.9537006,kg -5ee704fe-040c-35ab-9b59-7afe0cea1078,SESCO,II.1.1,Buenos Aires,AR-B,annual,2011,naphtha combustion consumption by to the public,7099.462618740799,TJ,CH4,3.0,kg/TJ,21298.387856222398,kg -69dbf7f9-e9ed-37ff-b405-ffea5fad97e6,SESCO,II.1.1,Buenos Aires,AR-B,annual,2011,naphtha combustion consumption by to the public,7099.462618740799,TJ,N2O,0.6,kg/TJ,4259.67757124448,kg -e49f2625-4580-3c85-a861-4203dc55bda7,SESCO,II.1.1,Capital Federal,AR-C,annual,2011,naphtha combustion consumption by to the public,2173.3454777188,TJ,CO2,73300.0,kg/TJ,159306223.51678804,kg -72c41261-e8e5-3cb5-9596-9c0bdb60e4a6,SESCO,II.1.1,Capital Federal,AR-C,annual,2011,naphtha combustion consumption by to the public,2173.3454777188,TJ,CH4,3.0,kg/TJ,6520.0364331564,kg -1c8255ac-ea82-34b8-8385-970cd4e8af87,SESCO,II.1.1,Capital Federal,AR-C,annual,2011,naphtha combustion consumption by to the public,2173.3454777188,TJ,N2O,0.6,kg/TJ,1304.0072866312798,kg -b07d6764-0ed3-376f-b078-136dcfe7d459,SESCO,II.1.1,Catamarca,AR-K,annual,2011,naphtha combustion consumption by to the public,278.96100717099995,TJ,CO2,73300.0,kg/TJ,20447841.825634297,kg -e8ef496d-ccaa-3fe1-962c-60430e70bfdd,SESCO,II.1.1,Catamarca,AR-K,annual,2011,naphtha combustion consumption by to the public,278.96100717099995,TJ,CH4,3.0,kg/TJ,836.8830215129999,kg -6ebc3d25-8305-3e61-971e-3fc2248da9f3,SESCO,II.1.1,Catamarca,AR-K,annual,2011,naphtha combustion consumption by to the public,278.96100717099995,TJ,N2O,0.6,kg/TJ,167.37660430259996,kg -7e94f9a9-b6ce-3446-93ad-0577e28e0664,SESCO,II.1.1,Chaco,AR-H,annual,2011,naphtha combustion consumption by to the public,376.436831925,TJ,CO2,73300.0,kg/TJ,27592819.7801025,kg -e87b5420-a20d-3fb1-88e1-a7ecbf39c47d,SESCO,II.1.1,Chaco,AR-H,annual,2011,naphtha combustion consumption by to the public,376.436831925,TJ,CH4,3.0,kg/TJ,1129.310495775,kg -c3f81021-a150-3527-a691-c38e4f765b8b,SESCO,II.1.1,Chaco,AR-H,annual,2011,naphtha combustion consumption by to the public,376.436831925,TJ,N2O,0.6,kg/TJ,225.86209915499998,kg -327b2a67-6072-3783-a738-01c1643b843c,SESCO,II.1.1,Chubut,AR-U,annual,2011,naphtha combustion consumption by to the public,310.63707397799993,TJ,CO2,73300.0,kg/TJ,22769697.522587396,kg -f43f209c-8802-31ca-ba2f-bdff4f2f4260,SESCO,II.1.1,Chubut,AR-U,annual,2011,naphtha combustion consumption by to the public,310.63707397799993,TJ,CH4,3.0,kg/TJ,931.9112219339997,kg -fce8bf96-f168-3d6f-ab2c-c98057a5da63,SESCO,II.1.1,Chubut,AR-U,annual,2011,naphtha combustion consumption by to the public,310.63707397799993,TJ,N2O,0.6,kg/TJ,186.38224438679995,kg -3e68de7b-9887-39eb-8cf3-4873e3fa0e4d,SESCO,II.1.1,Corrientes,AR-W,annual,2011,naphtha combustion consumption by to the public,400.4043428,TJ,CO2,73300.0,kg/TJ,29349638.32724,kg -9fa2afe7-d189-3238-9b18-a4ddafa3ba20,SESCO,II.1.1,Corrientes,AR-W,annual,2011,naphtha combustion consumption by to the public,400.4043428,TJ,CH4,3.0,kg/TJ,1201.2130284,kg -f8beb31d-252d-3651-aeb1-cfcf4d418db4,SESCO,II.1.1,Corrientes,AR-W,annual,2011,naphtha combustion consumption by to the public,400.4043428,TJ,N2O,0.6,kg/TJ,240.24260568,kg -deae680a-0d7c-32fb-9635-aab617038dd9,SESCO,II.1.1,Córdoba,AR-X,annual,2011,naphtha combustion consumption by to the public,2717.4832938483996,TJ,CO2,73300.0,kg/TJ,199191525.4390877,kg -b53b3f9b-270a-3b3e-9e78-0dce055c26f0,SESCO,II.1.1,Córdoba,AR-X,annual,2011,naphtha combustion consumption by to the public,2717.4832938483996,TJ,CH4,3.0,kg/TJ,8152.449881545199,kg -4a22b86c-6ff5-32fa-9893-a594fa8fbc4b,SESCO,II.1.1,Córdoba,AR-X,annual,2011,naphtha combustion consumption by to the public,2717.4832938483996,TJ,N2O,0.6,kg/TJ,1630.4899763090398,kg -48306a1a-7807-32d6-b6a4-9c8da43cc1d1,SESCO,II.1.1,Entre Rios,AR-E,annual,2011,naphtha combustion consumption by to the public,871.390864421,TJ,CO2,73300.0,kg/TJ,63872950.362059295,kg -388cae7b-feee-3133-99c7-9b87a93bf7d0,SESCO,II.1.1,Entre Rios,AR-E,annual,2011,naphtha combustion consumption by to the public,871.390864421,TJ,CH4,3.0,kg/TJ,2614.1725932629997,kg -9cb23f02-5bff-370b-b380-8249067931f7,SESCO,II.1.1,Entre Rios,AR-E,annual,2011,naphtha combustion consumption by to the public,871.390864421,TJ,N2O,0.6,kg/TJ,522.8345186526,kg -8bb7a810-908c-3e30-9afc-2684554193d8,SESCO,II.1.1,Formosa,AR-P,annual,2011,naphtha combustion consumption by to the public,297.681354124,TJ,CO2,73300.0,kg/TJ,21820043.2572892,kg -89ea927e-e75c-335b-9616-7ab664df0b14,SESCO,II.1.1,Formosa,AR-P,annual,2011,naphtha combustion consumption by to the public,297.681354124,TJ,CH4,3.0,kg/TJ,893.044062372,kg -54e36d54-a95d-357e-8488-8acfa6a313cb,SESCO,II.1.1,Formosa,AR-P,annual,2011,naphtha combustion consumption by to the public,297.681354124,TJ,N2O,0.6,kg/TJ,178.6088124744,kg -78f4db19-b336-31e0-aa80-83bf26c4cb8f,SESCO,II.1.1,Jujuy,AR-Y,annual,2011,naphtha combustion consumption by to the public,74.15270832200001,TJ,CO2,73300.0,kg/TJ,5435393.520002601,kg -2046e177-b807-3e1f-a6dc-c2baafc7d767,SESCO,II.1.1,Jujuy,AR-Y,annual,2011,naphtha combustion consumption by to the public,74.15270832200001,TJ,CH4,3.0,kg/TJ,222.458124966,kg -f423232f-84c1-3ee4-bb8b-78cb31d0439d,SESCO,II.1.1,Jujuy,AR-Y,annual,2011,naphtha combustion consumption by to the public,74.15270832200001,TJ,N2O,0.6,kg/TJ,44.491624993200006,kg -e22018c7-9b99-3c49-a839-e4336d399dcf,SESCO,II.1.1,La Pampa,AR-L,annual,2011,naphtha combustion consumption by to the public,96.010742443,TJ,CO2,73300.0,kg/TJ,7037587.4210719,kg -fb728f13-feac-34c0-9360-03854fd62665,SESCO,II.1.1,La Pampa,AR-L,annual,2011,naphtha combustion consumption by to the public,96.010742443,TJ,CH4,3.0,kg/TJ,288.03222732899997,kg -a74bb15c-61d6-3dcb-b69a-1764f52e17b1,SESCO,II.1.1,La Pampa,AR-L,annual,2011,naphtha combustion consumption by to the public,96.010742443,TJ,N2O,0.6,kg/TJ,57.60644546579999,kg -4e848c0d-72c5-3882-b11c-158ec692163b,SESCO,II.1.1,La Rioja,AR-F,annual,2011,naphtha combustion consumption by to the public,194.55708803299999,TJ,CO2,73300.0,kg/TJ,14261034.552818898,kg -570a8685-30a3-3ade-b240-e92f33ff5eef,SESCO,II.1.1,La Rioja,AR-F,annual,2011,naphtha combustion consumption by to the public,194.55708803299999,TJ,CH4,3.0,kg/TJ,583.6712640989999,kg -96fa867e-a63d-3be7-8d25-bb5c1ff21dbb,SESCO,II.1.1,La Rioja,AR-F,annual,2011,naphtha combustion consumption by to the public,194.55708803299999,TJ,N2O,0.6,kg/TJ,116.73425281979999,kg -16f60a60-a997-3c33-b9d9-013722ed1388,SESCO,II.1.1,Mendoza,AR-M,annual,2011,naphtha combustion consumption by to the public,352.54487537499995,TJ,CO2,73300.0,kg/TJ,25841539.364987496,kg -8b869aa4-a5ea-36c3-b90d-e4c55ab1af1c,SESCO,II.1.1,Mendoza,AR-M,annual,2011,naphtha combustion consumption by to the public,352.54487537499995,TJ,CH4,3.0,kg/TJ,1057.6346261249998,kg -d3c55014-17fc-3020-b723-da6942ea4535,SESCO,II.1.1,Mendoza,AR-M,annual,2011,naphtha combustion consumption by to the public,352.54487537499995,TJ,N2O,0.6,kg/TJ,211.52692522499996,kg -d8a7e440-26f5-3916-bd3a-6e49701d097d,SESCO,II.1.1,Misiones,AR-N,annual,2011,naphtha combustion consumption by to the public,593.5171679360001,TJ,CO2,73300.0,kg/TJ,43504808.409708805,kg -e14cc690-f827-3e1b-ae0f-009e132c0d80,SESCO,II.1.1,Misiones,AR-N,annual,2011,naphtha combustion consumption by to the public,593.5171679360001,TJ,CH4,3.0,kg/TJ,1780.5515038080002,kg -dff3573d-f227-3d7f-a040-ae331de9b35d,SESCO,II.1.1,Misiones,AR-N,annual,2011,naphtha combustion consumption by to the public,593.5171679360001,TJ,N2O,0.6,kg/TJ,356.11030076160006,kg -22ddffb8-948b-3b25-849f-5c18d6b4f710,SESCO,II.1.1,Neuquén,AR-Q,annual,2011,naphtha combustion consumption by to the public,266.03718803199996,TJ,CO2,73300.0,kg/TJ,19500525.882745598,kg -1fd5e5ba-3382-30ec-8614-396ce4437b87,SESCO,II.1.1,Neuquén,AR-Q,annual,2011,naphtha combustion consumption by to the public,266.03718803199996,TJ,CH4,3.0,kg/TJ,798.1115640959999,kg -4f5e7bb7-aa8f-3d48-9d01-1f277d471d99,SESCO,II.1.1,Neuquén,AR-Q,annual,2011,naphtha combustion consumption by to the public,266.03718803199996,TJ,N2O,0.6,kg/TJ,159.62231281919998,kg -e08c155f-16e9-36df-b48b-b29a9b2a8ba2,SESCO,II.1.1,Rio Negro,AR-R,annual,2011,naphtha combustion consumption by to the public,368.32498379599997,TJ,CO2,73300.0,kg/TJ,26998221.3122468,kg -ccbd3c43-7855-31e9-acfc-4cf5dacb1bf6,SESCO,II.1.1,Rio Negro,AR-R,annual,2011,naphtha combustion consumption by to the public,368.32498379599997,TJ,CH4,3.0,kg/TJ,1104.974951388,kg -0933d355-53a6-3f20-838d-4da03d8c4120,SESCO,II.1.1,Rio Negro,AR-R,annual,2011,naphtha combustion consumption by to the public,368.32498379599997,TJ,N2O,0.6,kg/TJ,220.99499027759998,kg -7d1caa51-7084-3520-9646-c68ca8379f41,SESCO,II.1.1,Salta,AR-A,annual,2011,naphtha combustion consumption by to the public,56.283270966999986,TJ,CO2,73300.0,kg/TJ,4125563.761881099,kg -3f8ea3c8-daae-3910-8a6a-b9658ed64398,SESCO,II.1.1,Salta,AR-A,annual,2011,naphtha combustion consumption by to the public,56.283270966999986,TJ,CH4,3.0,kg/TJ,168.84981290099995,kg -607702a0-dac7-3080-8ccb-4666428b5904,SESCO,II.1.1,Salta,AR-A,annual,2011,naphtha combustion consumption by to the public,56.283270966999986,TJ,N2O,0.6,kg/TJ,33.76996258019999,kg -344ebc04-777f-351f-8bf0-eb22cfe810b3,SESCO,II.1.1,San Juan,AR-J,annual,2011,naphtha combustion consumption by to the public,264.86290592299997,TJ,CO2,73300.0,kg/TJ,19414451.004155897,kg -ef88dc50-f7a8-3433-8e37-131bb5f48775,SESCO,II.1.1,San Juan,AR-J,annual,2011,naphtha combustion consumption by to the public,264.86290592299997,TJ,CH4,3.0,kg/TJ,794.5887177689999,kg -2299e333-cdb8-3244-a96e-19ef5f5b69eb,SESCO,II.1.1,San Juan,AR-J,annual,2011,naphtha combustion consumption by to the public,264.86290592299997,TJ,N2O,0.6,kg/TJ,158.91774355379997,kg -9e3c87ed-b2c9-3d25-8c6b-c25a8b6a35e5,SESCO,II.1.1,San Luis,AR-D,annual,2011,naphtha combustion consumption by to the public,477.04866486199995,TJ,CO2,73300.0,kg/TJ,34967667.134384595,kg -b47e5afe-0d9f-3e15-9474-ae6038272a78,SESCO,II.1.1,San Luis,AR-D,annual,2011,naphtha combustion consumption by to the public,477.04866486199995,TJ,CH4,3.0,kg/TJ,1431.145994586,kg -1ba414cf-1460-387f-9999-7efde3299f58,SESCO,II.1.1,San Luis,AR-D,annual,2011,naphtha combustion consumption by to the public,477.04866486199995,TJ,N2O,0.6,kg/TJ,286.22919891719994,kg -ada275c5-d5ea-301c-b6e0-d4fc780ec825,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2011,naphtha combustion consumption by to the public,33.191854465,TJ,CO2,73300.0,kg/TJ,2432962.9322845,kg -3c4f8ee3-fd5e-3d47-8c99-808a03ab395e,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2011,naphtha combustion consumption by to the public,33.191854465,TJ,CH4,3.0,kg/TJ,99.57556339499999,kg -8a63451d-da7a-3432-9018-a557ad1ce0e5,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2011,naphtha combustion consumption by to the public,33.191854465,TJ,N2O,0.6,kg/TJ,19.915112679,kg -e6527036-e890-3d8e-ae21-40146d9c8e00,SESCO,II.1.1,Santa Fe,AR-S,annual,2011,naphtha combustion consumption by to the public,2225.1543879796,TJ,CO2,73300.0,kg/TJ,163103816.6389047,kg -13f8d0fb-a595-3efc-ae77-90b8a3bed1c1,SESCO,II.1.1,Santa Fe,AR-S,annual,2011,naphtha combustion consumption by to the public,2225.1543879796,TJ,CH4,3.0,kg/TJ,6675.4631639388,kg -b3a3371c-914e-3148-b02f-14a905c364e5,SESCO,II.1.1,Santa Fe,AR-S,annual,2011,naphtha combustion consumption by to the public,2225.1543879796,TJ,N2O,0.6,kg/TJ,1335.0926327877598,kg -034d8391-7669-317e-bc0f-c7b8393c2fb0,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2011,naphtha combustion consumption by to the public,206.33550360499996,TJ,CO2,73300.0,kg/TJ,15124392.414246498,kg -ed4b1aae-5887-3cff-a344-9478c0e6c4b3,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2011,naphtha combustion consumption by to the public,206.33550360499996,TJ,CH4,3.0,kg/TJ,619.0065108149998,kg -a634b424-b5dd-3c14-9e42-779d1ed6d157,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2011,naphtha combustion consumption by to the public,206.33550360499996,TJ,N2O,0.6,kg/TJ,123.80130216299997,kg -0b854639-20de-3985-a6fb-e835a726cbb5,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2011,naphtha combustion consumption by to the public,25.041389681,TJ,CO2,73300.0,kg/TJ,1835533.8636172998,kg -d7cda45f-db1a-394f-a75e-cd85d544fd33,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2011,naphtha combustion consumption by to the public,25.041389681,TJ,CH4,3.0,kg/TJ,75.124169043,kg -e9af8ba4-616b-3e4a-9533-be9db87a6d79,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2011,naphtha combustion consumption by to the public,25.041389681,TJ,N2O,0.6,kg/TJ,15.024833808599999,kg -f96eae24-c3ae-30c1-935c-20d260451945,SESCO,II.1.1,Tucuman,AR-T,annual,2011,naphtha combustion consumption by to the public,65.483101376,TJ,CO2,73300.0,kg/TJ,4799911.330860799,kg -a1d0bbe2-bb55-3203-9935-ee5d40cbd90a,SESCO,II.1.1,Tucuman,AR-T,annual,2011,naphtha combustion consumption by to the public,65.483101376,TJ,CH4,3.0,kg/TJ,196.449304128,kg -d9768ed3-91be-3a1d-b79b-eb43834d0150,SESCO,II.1.1,Tucuman,AR-T,annual,2011,naphtha combustion consumption by to the public,65.483101376,TJ,N2O,0.6,kg/TJ,39.289860825599995,kg -5a611395-5833-3474-8d98-a8e847a86316,SESCO,II.1.1,Buenos Aires,AR-B,annual,2011,naphtha combustion consumption by to the public,1916.2471722470998,TJ,CO2,73300.0,kg/TJ,140460917.72571242,kg -70e77238-0507-38a5-800e-0d7c47e3f519,SESCO,II.1.1,Buenos Aires,AR-B,annual,2011,naphtha combustion consumption by to the public,1916.2471722470998,TJ,CH4,3.0,kg/TJ,5748.741516741299,kg -c3a7e9ef-a033-3154-9201-b9f56e60e724,SESCO,II.1.1,Buenos Aires,AR-B,annual,2011,naphtha combustion consumption by to the public,1916.2471722470998,TJ,N2O,0.6,kg/TJ,1149.74830334826,kg -a62c4843-43e9-3dbd-927a-3b8ff312f219,SESCO,II.1.1,Capital Federal,AR-C,annual,2011,naphtha combustion consumption by to the public,881.9337485112,TJ,CO2,73300.0,kg/TJ,64645743.76587096,kg -d71868d4-e206-30df-855e-b19d8fc06f35,SESCO,II.1.1,Capital Federal,AR-C,annual,2011,naphtha combustion consumption by to the public,881.9337485112,TJ,CH4,3.0,kg/TJ,2645.8012455335997,kg -f26ac3cd-b27b-3dca-b69d-056da91a9ace,SESCO,II.1.1,Capital Federal,AR-C,annual,2011,naphtha combustion consumption by to the public,881.9337485112,TJ,N2O,0.6,kg/TJ,529.1602491067199,kg -8c3dd696-04a6-315e-af4c-d50ff78140a0,SESCO,II.1.1,Catamarca,AR-K,annual,2011,naphtha combustion consumption by to the public,53.574060771,TJ,CO2,73300.0,kg/TJ,3926978.6545143,kg -405ac5a0-aac0-3629-914e-19066d269b6e,SESCO,II.1.1,Catamarca,AR-K,annual,2011,naphtha combustion consumption by to the public,53.574060771,TJ,CH4,3.0,kg/TJ,160.722182313,kg -f1e8e91c-4ef7-3ebc-8c5c-440008b47e00,SESCO,II.1.1,Catamarca,AR-K,annual,2011,naphtha combustion consumption by to the public,53.574060771,TJ,N2O,0.6,kg/TJ,32.1444364626,kg -ba2500dc-9a58-3434-854e-851b0d2c61d4,SESCO,II.1.1,Chaco,AR-H,annual,2011,naphtha combustion consumption by to the public,75.80583695299998,TJ,CO2,73300.0,kg/TJ,5556567.848654899,kg -f7c34563-2fc9-383f-bfbc-96e76eadab5d,SESCO,II.1.1,Chaco,AR-H,annual,2011,naphtha combustion consumption by to the public,75.80583695299998,TJ,CH4,3.0,kg/TJ,227.41751085899995,kg -33c8e2e4-8ab5-3c63-be80-29cff9373926,SESCO,II.1.1,Chaco,AR-H,annual,2011,naphtha combustion consumption by to the public,75.80583695299998,TJ,N2O,0.6,kg/TJ,45.48350217179999,kg -a269c5c9-7982-3873-82e6-50b47a3aadf1,SESCO,II.1.1,Chubut,AR-U,annual,2011,naphtha combustion consumption by to the public,33.373184845,TJ,CO2,73300.0,kg/TJ,2446254.4491385,kg -6237b97b-dd27-3cbe-b427-336fdcd0949b,SESCO,II.1.1,Chubut,AR-U,annual,2011,naphtha combustion consumption by to the public,33.373184845,TJ,CH4,3.0,kg/TJ,100.11955453499999,kg -f3ca1978-3776-3c73-ae79-db3cc07cbf35,SESCO,II.1.1,Chubut,AR-U,annual,2011,naphtha combustion consumption by to the public,33.373184845,TJ,N2O,0.6,kg/TJ,20.023910906999998,kg -4fee1fa8-c1c9-3324-869c-b6ffa1df6441,SESCO,II.1.1,Corrientes,AR-W,annual,2011,naphtha combustion consumption by to the public,51.016630819,TJ,CO2,73300.0,kg/TJ,3739519.0390327,kg -4c874777-5817-3310-a225-dbaf1775d93b,SESCO,II.1.1,Corrientes,AR-W,annual,2011,naphtha combustion consumption by to the public,51.016630819,TJ,CH4,3.0,kg/TJ,153.049892457,kg -2b7e17c7-dcb0-3084-b69d-a5fdc483ea28,SESCO,II.1.1,Corrientes,AR-W,annual,2011,naphtha combustion consumption by to the public,51.016630819,TJ,N2O,0.6,kg/TJ,30.6099784914,kg -808b2841-7957-3afc-b5aa-7474e2a869e8,SESCO,II.1.1,Córdoba,AR-X,annual,2011,naphtha combustion consumption by to the public,650.4690778893998,TJ,CO2,73300.0,kg/TJ,47679383.40929301,kg -d2ac580b-3c14-3a16-bfc9-791716e5be48,SESCO,II.1.1,Córdoba,AR-X,annual,2011,naphtha combustion consumption by to the public,650.4690778893998,TJ,CH4,3.0,kg/TJ,1951.4072336681995,kg -836ad075-7f41-3647-b936-9f1730587cb2,SESCO,II.1.1,Córdoba,AR-X,annual,2011,naphtha combustion consumption by to the public,650.4690778893998,TJ,N2O,0.6,kg/TJ,390.2814467336399,kg -d3501f36-b500-3092-90cf-2b103063b490,SESCO,II.1.1,Entre Rios,AR-E,annual,2011,naphtha combustion consumption by to the public,171.11207728999997,TJ,CO2,73300.0,kg/TJ,12542515.265356999,kg -e68889b0-ecee-3782-a7ad-3ac15392cc49,SESCO,II.1.1,Entre Rios,AR-E,annual,2011,naphtha combustion consumption by to the public,171.11207728999997,TJ,CH4,3.0,kg/TJ,513.3362318699999,kg -de9d57e9-99bb-399f-8161-f7ac71e70253,SESCO,II.1.1,Entre Rios,AR-E,annual,2011,naphtha combustion consumption by to the public,171.11207728999997,TJ,N2O,0.6,kg/TJ,102.66724637399999,kg -afb46260-ba41-378c-8d5b-d718b7988661,SESCO,II.1.1,Formosa,AR-P,annual,2011,naphtha combustion consumption by to the public,75.421685185,TJ,CO2,73300.0,kg/TJ,5528409.5240605,kg -8d03d375-4842-3c86-b6fe-29b23ecbf185,SESCO,II.1.1,Formosa,AR-P,annual,2011,naphtha combustion consumption by to the public,75.421685185,TJ,CH4,3.0,kg/TJ,226.265055555,kg -485dbbc5-a9ad-35dd-bd47-d4fc62cf1154,SESCO,II.1.1,Formosa,AR-P,annual,2011,naphtha combustion consumption by to the public,75.421685185,TJ,N2O,0.6,kg/TJ,45.253011111,kg -86bd05f2-1fef-3613-ae91-0005ea0bd6d8,SESCO,II.1.1,Jujuy,AR-Y,annual,2011,naphtha combustion consumption by to the public,6.496328761999999,TJ,CO2,73300.0,kg/TJ,476180.89825459995,kg -895799e1-5ee6-3181-94c7-4c4a2b6e6943,SESCO,II.1.1,Jujuy,AR-Y,annual,2011,naphtha combustion consumption by to the public,6.496328761999999,TJ,CH4,3.0,kg/TJ,19.488986286,kg -1f3781d1-1c21-370e-a42b-4e8867a7efde,SESCO,II.1.1,Jujuy,AR-Y,annual,2011,naphtha combustion consumption by to the public,6.496328761999999,TJ,N2O,0.6,kg/TJ,3.8977972571999993,kg -02b210df-9ba3-319c-a25c-ed7c37e0dcd6,SESCO,II.1.1,La Pampa,AR-L,annual,2011,naphtha combustion consumption by to the public,18.702549712,TJ,CO2,73300.0,kg/TJ,1370896.8938896,kg -733d4b6c-740e-3a3e-ae03-994ffa5abfd0,SESCO,II.1.1,La Pampa,AR-L,annual,2011,naphtha combustion consumption by to the public,18.702549712,TJ,CH4,3.0,kg/TJ,56.107649136,kg -7d542db3-0691-340c-8ac5-d8a2d7dda70e,SESCO,II.1.1,La Pampa,AR-L,annual,2011,naphtha combustion consumption by to the public,18.702549712,TJ,N2O,0.6,kg/TJ,11.2215298272,kg -8b711c68-8cfb-351f-9b42-2851dc1bc7a1,SESCO,II.1.1,La Rioja,AR-F,annual,2011,naphtha combustion consumption by to the public,40.569314555,TJ,CO2,73300.0,kg/TJ,2973730.7568814997,kg -2cd64028-a274-3124-8e6f-05c1e8c16c3a,SESCO,II.1.1,La Rioja,AR-F,annual,2011,naphtha combustion consumption by to the public,40.569314555,TJ,CH4,3.0,kg/TJ,121.70794366499999,kg -d4754d25-2003-33b5-b1ed-e52268b7a3a6,SESCO,II.1.1,La Rioja,AR-F,annual,2011,naphtha combustion consumption by to the public,40.569314555,TJ,N2O,0.6,kg/TJ,24.341588733,kg -f9f758e7-af24-309f-853a-7faca4191489,SESCO,II.1.1,Mendoza,AR-M,annual,2011,naphtha combustion consumption by to the public,72.65774007799997,TJ,CO2,73300.0,kg/TJ,5325812.347717398,kg -b3d66a82-8b55-3562-aa9f-7d9f1e35fe83,SESCO,II.1.1,Mendoza,AR-M,annual,2011,naphtha combustion consumption by to the public,72.65774007799997,TJ,CH4,3.0,kg/TJ,217.97322023399994,kg -2e15dd07-838c-338a-9aa4-2d3d0415ba1a,SESCO,II.1.1,Mendoza,AR-M,annual,2011,naphtha combustion consumption by to the public,72.65774007799997,TJ,N2O,0.6,kg/TJ,43.594644046799985,kg -886beb0a-478a-39bb-baf6-e8bcfe514ce7,SESCO,II.1.1,Misiones,AR-N,annual,2011,naphtha combustion consumption by to the public,83.340785836,TJ,CO2,73300.0,kg/TJ,6108879.6017788,kg -d9c895bb-7ebd-3beb-8bd7-1fcc34461c2f,SESCO,II.1.1,Misiones,AR-N,annual,2011,naphtha combustion consumption by to the public,83.340785836,TJ,CH4,3.0,kg/TJ,250.02235750799997,kg -9c152f72-5f1f-3eb5-9ba8-efbb2a6b2205,SESCO,II.1.1,Misiones,AR-N,annual,2011,naphtha combustion consumption by to the public,83.340785836,TJ,N2O,0.6,kg/TJ,50.004471501599994,kg -45e88317-93b8-379f-8e78-3dd28260ea22,SESCO,II.1.1,Neuquén,AR-Q,annual,2011,naphtha combustion consumption by to the public,52.367877947,TJ,CO2,73300.0,kg/TJ,3838565.4535151,kg -e1613051-3ce2-39ba-a7ce-69c66ff9abf5,SESCO,II.1.1,Neuquén,AR-Q,annual,2011,naphtha combustion consumption by to the public,52.367877947,TJ,CH4,3.0,kg/TJ,157.10363384099998,kg -d7e6d539-eda7-3984-8656-62a05ecc4e34,SESCO,II.1.1,Neuquén,AR-Q,annual,2011,naphtha combustion consumption by to the public,52.367877947,TJ,N2O,0.6,kg/TJ,31.420726768199998,kg -73ec1786-53e9-3fb7-8d7e-285986c8e86e,SESCO,II.1.1,Rio Negro,AR-R,annual,2011,naphtha combustion consumption by to the public,80.41028541700001,TJ,CO2,73300.0,kg/TJ,5894073.921066101,kg -2c9b2c9e-1935-3b21-b3de-9e1dccf4bc82,SESCO,II.1.1,Rio Negro,AR-R,annual,2011,naphtha combustion consumption by to the public,80.41028541700001,TJ,CH4,3.0,kg/TJ,241.23085625100003,kg -7e676d80-1d18-30b2-a4da-03c86c20000f,SESCO,II.1.1,Rio Negro,AR-R,annual,2011,naphtha combustion consumption by to the public,80.41028541700001,TJ,N2O,0.6,kg/TJ,48.24617125020001,kg -24b4cd59-c839-3b87-a8a5-a2586ee87228,SESCO,II.1.1,Salta,AR-A,annual,2011,naphtha combustion consumption by to the public,11.981572757,TJ,CO2,73300.0,kg/TJ,878249.2830881,kg -7b1feb97-322d-37c5-adf7-91bdf5e5c24b,SESCO,II.1.1,Salta,AR-A,annual,2011,naphtha combustion consumption by to the public,11.981572757,TJ,CH4,3.0,kg/TJ,35.944718271,kg -2fa84a38-cdae-34d2-9ec0-3fa52033883a,SESCO,II.1.1,Salta,AR-A,annual,2011,naphtha combustion consumption by to the public,11.981572757,TJ,N2O,0.6,kg/TJ,7.1889436542,kg -fc4fcbcd-5df2-3ea7-8c96-5a600438a745,SESCO,II.1.1,San Juan,AR-J,annual,2011,naphtha combustion consumption by to the public,44.343337037999994,TJ,CO2,73300.0,kg/TJ,3250366.6048854,kg -0cf339fb-9bec-3a20-ad3c-4c43f8ed8498,SESCO,II.1.1,San Juan,AR-J,annual,2011,naphtha combustion consumption by to the public,44.343337037999994,TJ,CH4,3.0,kg/TJ,133.030011114,kg -52b2ab55-0159-3b35-a424-faaa989e1cb5,SESCO,II.1.1,San Juan,AR-J,annual,2011,naphtha combustion consumption by to the public,44.343337037999994,TJ,N2O,0.6,kg/TJ,26.606002222799997,kg -a5871f2e-8da0-3566-ae4f-4e401a49829d,SESCO,II.1.1,San Luis,AR-D,annual,2011,naphtha combustion consumption by to the public,68.661419981,TJ,CO2,73300.0,kg/TJ,5032882.084607299,kg -60b91cd1-977f-3871-a15c-c729f2d8178a,SESCO,II.1.1,San Luis,AR-D,annual,2011,naphtha combustion consumption by to the public,68.661419981,TJ,CH4,3.0,kg/TJ,205.98425994299998,kg -e3b2e7c1-d251-3362-b868-923bb99d7cf8,SESCO,II.1.1,San Luis,AR-D,annual,2011,naphtha combustion consumption by to the public,68.661419981,TJ,N2O,0.6,kg/TJ,41.196851988599995,kg -49a7f073-a6dd-3045-ad48-1113093c1696,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2011,naphtha combustion consumption by to the public,14.831481896,TJ,CO2,73300.0,kg/TJ,1087147.6229768,kg -3a934cb7-d522-317c-bda4-038fedb55807,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2011,naphtha combustion consumption by to the public,14.831481896,TJ,CH4,3.0,kg/TJ,44.494445688,kg -27dd32f3-2f35-3783-a6c3-06154e2174ee,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2011,naphtha combustion consumption by to the public,14.831481896,TJ,N2O,0.6,kg/TJ,8.8988891376,kg -2099e5c3-5481-3de6-a216-5e6a6901110f,SESCO,II.1.1,Santa Fe,AR-S,annual,2011,naphtha combustion consumption by to the public,614.4557562913,TJ,CO2,73300.0,kg/TJ,45039606.93615229,kg -a8d7e03f-b035-3669-b3fc-6405ac42c673,SESCO,II.1.1,Santa Fe,AR-S,annual,2011,naphtha combustion consumption by to the public,614.4557562913,TJ,CH4,3.0,kg/TJ,1843.3672688738998,kg -81a5b5fb-3013-3b69-88f9-84b34489ec76,SESCO,II.1.1,Santa Fe,AR-S,annual,2011,naphtha combustion consumption by to the public,614.4557562913,TJ,N2O,0.6,kg/TJ,368.67345377477994,kg -92049f3c-a711-3567-a198-f2fbc92751de,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2011,naphtha combustion consumption by to the public,74.41328679399999,TJ,CO2,73300.0,kg/TJ,5454493.922000199,kg -2c302595-c379-3e72-a69c-c0ca6d040ea5,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2011,naphtha combustion consumption by to the public,74.41328679399999,TJ,CH4,3.0,kg/TJ,223.23986038199996,kg -6adcb332-0cc0-3a90-8ac1-b1777f2ffed8,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2011,naphtha combustion consumption by to the public,74.41328679399999,TJ,N2O,0.6,kg/TJ,44.64797207639999,kg -ed4bc6fb-669b-368e-8fe2-d81a423faae0,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2011,naphtha combustion consumption by to the public,9.790161535,TJ,CO2,73300.0,kg/TJ,717618.8405154999,kg -981ecfc8-487b-3e5d-b92f-e04ff0eecc60,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2011,naphtha combustion consumption by to the public,9.790161535,TJ,CH4,3.0,kg/TJ,29.370484604999998,kg -c86b5b61-c2e7-3c84-85ea-c6007827709b,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2011,naphtha combustion consumption by to the public,9.790161535,TJ,N2O,0.6,kg/TJ,5.874096921,kg -d71db52f-e02a-313d-b5d7-e96290cec4a0,SESCO,II.1.1,Tucuman,AR-T,annual,2011,naphtha combustion consumption by to the public,25.879538992999993,TJ,CO2,73300.0,kg/TJ,1896970.2081868995,kg -a5597f63-3701-3429-ace6-4117e8c59dda,SESCO,II.1.1,Tucuman,AR-T,annual,2011,naphtha combustion consumption by to the public,25.879538992999993,TJ,CH4,3.0,kg/TJ,77.63861697899998,kg -a770eae5-8903-3381-aa49-0c13c887dce0,SESCO,II.1.1,Tucuman,AR-T,annual,2011,naphtha combustion consumption by to the public,25.879538992999993,TJ,N2O,0.6,kg/TJ,15.527723395799995,kg -9348a412-8358-3819-b7f5-3b535c50cda6,SESCO,II.1.1,Capital Federal,AR-C,annual,2011,naphtha combustion consumption by freight transport,0.023169993,TJ,CO2,73300.0,kg/TJ,1698.3604869,kg -d67e0ed1-ba94-3a7a-876e-103d7294b98b,SESCO,II.1.1,Capital Federal,AR-C,annual,2011,naphtha combustion consumption by freight transport,0.023169993,TJ,CH4,3.0,kg/TJ,0.069509979,kg -8b19f6a7-33c2-36f2-a67c-3ebc71af38c1,SESCO,II.1.1,Capital Federal,AR-C,annual,2011,naphtha combustion consumption by freight transport,0.023169993,TJ,N2O,0.6,kg/TJ,0.013901995799999999,kg -fcdb2b7a-8e48-3107-807a-7e2d48b77f2a,SESCO,II.1.1,Misiones,AR-N,annual,2011,naphtha combustion consumption by freight transport,0.0010073909999999998,TJ,CO2,73300.0,kg/TJ,73.84176029999999,kg -a1862a6c-8137-3618-9f8b-58ab8f7eeb58,SESCO,II.1.1,Misiones,AR-N,annual,2011,naphtha combustion consumption by freight transport,0.0010073909999999998,TJ,CH4,3.0,kg/TJ,0.0030221729999999995,kg -d838e5d0-e90a-3ddc-8dea-c1e3e6c0ef2b,SESCO,II.1.1,Misiones,AR-N,annual,2011,naphtha combustion consumption by freight transport,0.0010073909999999998,TJ,N2O,0.6,kg/TJ,0.0006044345999999999,kg -370aba0e-0d18-38f4-bd1d-da21609ef856,SESCO,II.1.1,Buenos Aires,AR-B,annual,2011,naphtha combustion consumption by freight transport,5.261603192999999,TJ,CO2,73300.0,kg/TJ,385675.5140468999,kg -308105f7-8414-30c9-8512-56bf007c3d46,SESCO,II.1.1,Buenos Aires,AR-B,annual,2011,naphtha combustion consumption by freight transport,5.261603192999999,TJ,CH4,3.0,kg/TJ,15.784809578999997,kg -b8724eae-3997-3a51-9a6c-7d304336bcfd,SESCO,II.1.1,Buenos Aires,AR-B,annual,2011,naphtha combustion consumption by freight transport,5.261603192999999,TJ,N2O,0.6,kg/TJ,3.1569619157999993,kg -959b9e3a-0dfd-355a-8bc7-c6750a5bbbb8,SESCO,II.1.1,Capital Federal,AR-C,annual,2011,naphtha combustion consumption by freight transport,110.725031186,TJ,CO2,73300.0,kg/TJ,8116144.7859338,kg -19488c72-df20-3dae-b682-eb2da2d071b4,SESCO,II.1.1,Capital Federal,AR-C,annual,2011,naphtha combustion consumption by freight transport,110.725031186,TJ,CH4,3.0,kg/TJ,332.17509355799996,kg -821798bb-f4d2-3082-895e-ee522b9f8b2c,SESCO,II.1.1,Capital Federal,AR-C,annual,2011,naphtha combustion consumption by freight transport,110.725031186,TJ,N2O,0.6,kg/TJ,66.4350187116,kg -d5545c4a-2a80-35fe-a85c-1da7fa96dfa1,SESCO,II.1.1,Chaco,AR-H,annual,2011,naphtha combustion consumption by freight transport,0.006715939999999999,TJ,CO2,73300.0,kg/TJ,492.27840199999997,kg -2a5969ff-1cee-3240-8377-e39b9437b974,SESCO,II.1.1,Chaco,AR-H,annual,2011,naphtha combustion consumption by freight transport,0.006715939999999999,TJ,CH4,3.0,kg/TJ,0.020147819999999997,kg -fd8cde9a-aecf-379c-8560-2340f0de11b2,SESCO,II.1.1,Chaco,AR-H,annual,2011,naphtha combustion consumption by freight transport,0.006715939999999999,TJ,N2O,0.6,kg/TJ,0.004029563999999999,kg -bdef3208-8316-3ce3-969c-381670c15135,SESCO,II.1.1,Corrientes,AR-W,annual,2011,naphtha combustion consumption by freight transport,0.028878542,TJ,CO2,73300.0,kg/TJ,2116.7971286,kg -98028d58-4e14-3cb6-a548-7c964717c5c6,SESCO,II.1.1,Corrientes,AR-W,annual,2011,naphtha combustion consumption by freight transport,0.028878542,TJ,CH4,3.0,kg/TJ,0.086635626,kg -78d08473-eac2-3957-8d0a-2ae6b41110b9,SESCO,II.1.1,Corrientes,AR-W,annual,2011,naphtha combustion consumption by freight transport,0.028878542,TJ,N2O,0.6,kg/TJ,0.017327125199999998,kg -a4eaa0fe-78a4-3a15-a17b-cc581ef779b9,SESCO,II.1.1,Córdoba,AR-X,annual,2011,naphtha combustion consumption by freight transport,0.47548855199999995,TJ,CO2,73300.0,kg/TJ,34853.310861599995,kg -1f2111bd-6f10-3fa3-9c38-3e55bdb2c598,SESCO,II.1.1,Córdoba,AR-X,annual,2011,naphtha combustion consumption by freight transport,0.47548855199999995,TJ,CH4,3.0,kg/TJ,1.426465656,kg -a8eb5de9-31d2-3f83-b30f-57bb90d01e86,SESCO,II.1.1,Córdoba,AR-X,annual,2011,naphtha combustion consumption by freight transport,0.47548855199999995,TJ,N2O,0.6,kg/TJ,0.28529313119999994,kg -1f6d185b-625d-3d4f-9953-8c966ea325b9,SESCO,II.1.1,Entre Rios,AR-E,annual,2011,naphtha combustion consumption by freight transport,18.456074714,TJ,CO2,73300.0,kg/TJ,1352830.2765362,kg -8b590439-aa52-3ada-aab9-1123f9b99858,SESCO,II.1.1,Entre Rios,AR-E,annual,2011,naphtha combustion consumption by freight transport,18.456074714,TJ,CH4,3.0,kg/TJ,55.368224142,kg -4c834780-689f-3c3b-93d7-769678cf7baf,SESCO,II.1.1,Entre Rios,AR-E,annual,2011,naphtha combustion consumption by freight transport,18.456074714,TJ,N2O,0.6,kg/TJ,11.073644828399999,kg -4b4770e8-7678-3178-b46b-9280c8ccfb5b,SESCO,II.1.1,Mendoza,AR-M,annual,2011,naphtha combustion consumption by freight transport,0.0016789849999999998,TJ,CO2,73300.0,kg/TJ,123.06960049999999,kg -9a11c100-c56c-3cb2-9992-5e3b53010679,SESCO,II.1.1,Mendoza,AR-M,annual,2011,naphtha combustion consumption by freight transport,0.0016789849999999998,TJ,CH4,3.0,kg/TJ,0.005036954999999999,kg -9005a508-7728-3ffe-8c95-361e72772256,SESCO,II.1.1,Mendoza,AR-M,annual,2011,naphtha combustion consumption by freight transport,0.0016789849999999998,TJ,N2O,0.6,kg/TJ,0.0010073909999999998,kg -e8af5ad4-baa9-3132-8db4-2303384106ed,SESCO,II.1.1,Misiones,AR-N,annual,2011,naphtha combustion consumption by freight transport,0.001343188,TJ,CO2,73300.0,kg/TJ,98.45568039999999,kg -d19d4d12-df42-33eb-9bd5-6d354482ae1e,SESCO,II.1.1,Misiones,AR-N,annual,2011,naphtha combustion consumption by freight transport,0.001343188,TJ,CH4,3.0,kg/TJ,0.004029563999999999,kg -bc7e2fbd-a81a-3999-a588-83d03f78a5a9,SESCO,II.1.1,Misiones,AR-N,annual,2011,naphtha combustion consumption by freight transport,0.001343188,TJ,N2O,0.6,kg/TJ,0.0008059127999999999,kg -0bd69bae-c509-33c0-b54c-81cb6ce6b4e0,SESCO,II.1.1,San Luis,AR-D,annual,2011,naphtha combustion consumption by freight transport,0.020147819999999997,TJ,CO2,73300.0,kg/TJ,1476.8352059999997,kg -35b67176-1877-3dcc-a9be-2e14efd8a335,SESCO,II.1.1,San Luis,AR-D,annual,2011,naphtha combustion consumption by freight transport,0.020147819999999997,TJ,CH4,3.0,kg/TJ,0.06044345999999999,kg -0195da79-0c9b-3e77-9b21-9b0d27e3f64d,SESCO,II.1.1,San Luis,AR-D,annual,2011,naphtha combustion consumption by freight transport,0.020147819999999997,TJ,N2O,0.6,kg/TJ,0.012088691999999998,kg -6525f9e2-a6ed-38bf-b8c5-dee3d7929040,SESCO,II.1.1,Santa Fe,AR-S,annual,2011,naphtha combustion consumption by freight transport,0.7061810909999999,TJ,CO2,73300.0,kg/TJ,51763.07397029999,kg -a5c5a6d9-e8b5-310c-86ba-242df386e1c7,SESCO,II.1.1,Santa Fe,AR-S,annual,2011,naphtha combustion consumption by freight transport,0.7061810909999999,TJ,CH4,3.0,kg/TJ,2.118543273,kg -5fbd99d4-ad45-3456-9a6e-07e56e740fb4,SESCO,II.1.1,Santa Fe,AR-S,annual,2011,naphtha combustion consumption by freight transport,0.7061810909999999,TJ,N2O,0.6,kg/TJ,0.42370865459999996,kg -334b44e7-52dd-3259-8703-cf64d796dcac,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2011,naphtha combustion consumption by freight transport,0.025856369,TJ,CO2,73300.0,kg/TJ,1895.2718477,kg -7927144e-2ada-36b7-abff-28ded044f72c,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2011,naphtha combustion consumption by freight transport,0.025856369,TJ,CH4,3.0,kg/TJ,0.077569107,kg -993fbbd9-4dfa-385a-adf1-501657cfa4d5,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2011,naphtha combustion consumption by freight transport,0.025856369,TJ,N2O,0.6,kg/TJ,0.015513821399999999,kg -40b3b796-68bf-3009-a200-8584ab9b77c9,SESCO,II.1.1,Tucuman,AR-T,annual,2011,naphtha combustion consumption by freight transport,0.045332595,TJ,CO2,73300.0,kg/TJ,3322.8792135000003,kg -e7513752-67c2-3acd-8868-2958bd256ce3,SESCO,II.1.1,Tucuman,AR-T,annual,2011,naphtha combustion consumption by freight transport,0.045332595,TJ,CH4,3.0,kg/TJ,0.135997785,kg -b2c02b9f-7f3d-34ae-bdcc-e43970816d66,SESCO,II.1.1,Tucuman,AR-T,annual,2011,naphtha combustion consumption by freight transport,0.045332595,TJ,N2O,0.6,kg/TJ,0.027199557000000003,kg -c61466ab-2fb5-30b4-a987-8ba46cc25eaf,SESCO,II.1.1,Buenos Aires,AR-B,annual,2011,naphtha combustion consumption by freight transport,3.3767746319999996,TJ,CO2,73300.0,kg/TJ,247517.58052559997,kg -4ad0df82-25cd-3cec-92a3-c94cd0591951,SESCO,II.1.1,Buenos Aires,AR-B,annual,2011,naphtha combustion consumption by freight transport,3.3767746319999996,TJ,CH4,3.0,kg/TJ,10.130323895999998,kg -c2895b5d-16d8-35c8-af25-00109f616c55,SESCO,II.1.1,Buenos Aires,AR-B,annual,2011,naphtha combustion consumption by freight transport,3.3767746319999996,TJ,N2O,0.6,kg/TJ,2.0260647791999995,kg -823333e6-c28b-37fb-9ac3-8f4b75880c2a,SESCO,II.1.1,Capital Federal,AR-C,annual,2011,naphtha combustion consumption by freight transport,19.858698782999998,TJ,CO2,73300.0,kg/TJ,1455642.6207938998,kg -2e9655a5-6d34-3648-8ab0-75d8abd8c515,SESCO,II.1.1,Capital Federal,AR-C,annual,2011,naphtha combustion consumption by freight transport,19.858698782999998,TJ,CH4,3.0,kg/TJ,59.576096349,kg -4570c0bf-772a-3ecc-b752-b4758c2e3801,SESCO,II.1.1,Capital Federal,AR-C,annual,2011,naphtha combustion consumption by freight transport,19.858698782999998,TJ,N2O,0.6,kg/TJ,11.915219269799998,kg -1b3d7b85-d936-3af2-ae5b-f4bd9af2fc9b,SESCO,II.1.1,Chaco,AR-H,annual,2011,naphtha combustion consumption by freight transport,0.041974625,TJ,CO2,73300.0,kg/TJ,3076.7400125,kg -63ca6ae5-c8c2-3fd2-bd64-c81da8ee56f2,SESCO,II.1.1,Chaco,AR-H,annual,2011,naphtha combustion consumption by freight transport,0.041974625,TJ,CH4,3.0,kg/TJ,0.12592387500000002,kg -32250583-d112-3131-bebc-a17524bc57dd,SESCO,II.1.1,Chaco,AR-H,annual,2011,naphtha combustion consumption by freight transport,0.041974625,TJ,N2O,0.6,kg/TJ,0.025184775,kg -c2dea953-535a-3f72-a181-94784b086ce9,SESCO,II.1.1,Corrientes,AR-W,annual,2011,naphtha combustion consumption by freight transport,0.029214339,TJ,CO2,73300.0,kg/TJ,2141.4110487,kg -ca8825c3-46c8-33ee-9c9e-aa22136a3896,SESCO,II.1.1,Corrientes,AR-W,annual,2011,naphtha combustion consumption by freight transport,0.029214339,TJ,CH4,3.0,kg/TJ,0.08764301699999999,kg -6ed19c7b-9c30-375b-8311-2f94eae622e6,SESCO,II.1.1,Corrientes,AR-W,annual,2011,naphtha combustion consumption by freight transport,0.029214339,TJ,N2O,0.6,kg/TJ,0.0175286034,kg -c39fe52b-5c31-3443-af48-aa99e8962977,SESCO,II.1.1,Córdoba,AR-X,annual,2011,naphtha combustion consumption by freight transport,0.593353299,TJ,CO2,73300.0,kg/TJ,43492.7968167,kg -f2d8009f-ba6e-3778-bbc0-30fd306fae70,SESCO,II.1.1,Córdoba,AR-X,annual,2011,naphtha combustion consumption by freight transport,0.593353299,TJ,CH4,3.0,kg/TJ,1.7800598970000001,kg -a4fe4aa2-6c62-3dbb-a030-5f94895d27cd,SESCO,II.1.1,Córdoba,AR-X,annual,2011,naphtha combustion consumption by freight transport,0.593353299,TJ,N2O,0.6,kg/TJ,0.3560119794,kg -8e1a2842-8a7f-357d-bfac-372fdc33311d,SESCO,II.1.1,Entre Rios,AR-E,annual,2011,naphtha combustion consumption by freight transport,0.371391482,TJ,CO2,73300.0,kg/TJ,27222.9956306,kg -aae541b5-73d0-3f32-a930-15f56fed9eef,SESCO,II.1.1,Entre Rios,AR-E,annual,2011,naphtha combustion consumption by freight transport,0.371391482,TJ,CH4,3.0,kg/TJ,1.114174446,kg -551df676-8a0e-3efe-8727-39aa19318f14,SESCO,II.1.1,Entre Rios,AR-E,annual,2011,naphtha combustion consumption by freight transport,0.371391482,TJ,N2O,0.6,kg/TJ,0.2228348892,kg -05502622-9f07-3d6d-be58-7e53384c4e87,SESCO,II.1.1,Misiones,AR-N,annual,2011,naphtha combustion consumption by freight transport,0.015446662,TJ,CO2,73300.0,kg/TJ,1132.2403246,kg -2be6912e-1102-377d-a82a-45b1636d934d,SESCO,II.1.1,Misiones,AR-N,annual,2011,naphtha combustion consumption by freight transport,0.015446662,TJ,CH4,3.0,kg/TJ,0.046339986,kg -ca2ff99f-3e68-3c33-b9e4-02aed46a19da,SESCO,II.1.1,Misiones,AR-N,annual,2011,naphtha combustion consumption by freight transport,0.015446662,TJ,N2O,0.6,kg/TJ,0.0092679972,kg -18091329-b0b3-3b86-9cc2-4bb849eb169d,SESCO,II.1.1,San Luis,AR-D,annual,2011,naphtha combustion consumption by freight transport,0.004701158,TJ,CO2,73300.0,kg/TJ,344.5948814,kg -0a0ed485-5ad1-394e-95a9-fbdbc9180e55,SESCO,II.1.1,San Luis,AR-D,annual,2011,naphtha combustion consumption by freight transport,0.004701158,TJ,CH4,3.0,kg/TJ,0.014103474000000001,kg -3f6c94c6-5f6e-363c-a67b-7310e99f1cb2,SESCO,II.1.1,San Luis,AR-D,annual,2011,naphtha combustion consumption by freight transport,0.004701158,TJ,N2O,0.6,kg/TJ,0.0028206948,kg -847a4863-ff86-3aea-b4b0-4d62ba9eefeb,SESCO,II.1.1,Santa Fe,AR-S,annual,2011,naphtha combustion consumption by freight transport,0.534588824,TJ,CO2,73300.0,kg/TJ,39185.360799199996,kg -3f330958-d14c-3858-8f91-8d466a28a7f6,SESCO,II.1.1,Santa Fe,AR-S,annual,2011,naphtha combustion consumption by freight transport,0.534588824,TJ,CH4,3.0,kg/TJ,1.6037664719999998,kg -52b4588d-17c7-3aa2-a660-785453e537e6,SESCO,II.1.1,Santa Fe,AR-S,annual,2011,naphtha combustion consumption by freight transport,0.534588824,TJ,N2O,0.6,kg/TJ,0.32075329439999994,kg -96f64288-7607-3913-b66d-ff2f018a2423,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2011,naphtha combustion consumption by freight transport,0.8854966889999998,TJ,CO2,73300.0,kg/TJ,64906.90730369998,kg -03ade897-6c2b-3cee-96cf-132a6abd13b8,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2011,naphtha combustion consumption by freight transport,0.8854966889999998,TJ,CH4,3.0,kg/TJ,2.656490066999999,kg -8672b6ff-ee1a-3536-9fdf-df6b84b784e5,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2011,naphtha combustion consumption by freight transport,0.8854966889999998,TJ,N2O,0.6,kg/TJ,0.5312980133999998,kg -b27311c2-7cef-3466-aa07-a776c6c2f0f2,SESCO,II.1.1,Tucuman,AR-T,annual,2011,naphtha combustion consumption by freight transport,0.054734911,TJ,CO2,73300.0,kg/TJ,4012.0689762999996,kg -3b14e5aa-405d-372f-be0e-21355f679f73,SESCO,II.1.1,Tucuman,AR-T,annual,2011,naphtha combustion consumption by freight transport,0.054734911,TJ,CH4,3.0,kg/TJ,0.164204733,kg -32b4613c-8e70-3ea1-a508-88091be80f61,SESCO,II.1.1,Tucuman,AR-T,annual,2011,naphtha combustion consumption by freight transport,0.054734911,TJ,N2O,0.6,kg/TJ,0.0328409466,kg -3169fa5f-2fea-39d6-b99b-645a86ba1bfc,SESCO,II.1.1,Capital Federal,AR-C,annual,2011,naphtha combustion consumption by public passenger transport,0.0016789849999999998,TJ,CO2,73300.0,kg/TJ,123.06960049999999,kg -a3b41bfa-eca9-3b7e-9bc6-2f6063ba2a25,SESCO,II.1.1,Capital Federal,AR-C,annual,2011,naphtha combustion consumption by public passenger transport,0.0016789849999999998,TJ,CH4,3.0,kg/TJ,0.005036954999999999,kg -b4edbd21-be29-3ce7-8525-a3bae8b035ce,SESCO,II.1.1,Capital Federal,AR-C,annual,2011,naphtha combustion consumption by public passenger transport,0.0016789849999999998,TJ,N2O,0.6,kg/TJ,0.0010073909999999998,kg -45f7b12f-030d-363b-a8c7-4685cb5f10a3,SESCO,II.1.1,Capital Federal,AR-C,annual,2011,naphtha combustion consumption by public passenger transport,0.02014782,TJ,CO2,73300.0,kg/TJ,1476.835206,kg -3109aa48-bf62-30a7-abfe-93c12a184fb0,SESCO,II.1.1,Capital Federal,AR-C,annual,2011,naphtha combustion consumption by public passenger transport,0.02014782,TJ,CH4,3.0,kg/TJ,0.060443460000000004,kg -933a0bcc-ab27-3bf2-9048-fbfae9fb1e0e,SESCO,II.1.1,Capital Federal,AR-C,annual,2011,naphtha combustion consumption by public passenger transport,0.02014782,TJ,N2O,0.6,kg/TJ,0.012088692,kg -d81d87e3-e7b3-341c-83bd-cb9245850c14,SESCO,II.1.1,Córdoba,AR-X,annual,2011,naphtha combustion consumption by public passenger transport,0.031564918,TJ,CO2,73300.0,kg/TJ,2313.7084894,kg -e501cced-d28d-3f05-8630-dcbe711ef1b5,SESCO,II.1.1,Córdoba,AR-X,annual,2011,naphtha combustion consumption by public passenger transport,0.031564918,TJ,CH4,3.0,kg/TJ,0.09469475399999999,kg -6b7e20f4-c9bb-3f1f-9de7-6f4723ff1aa7,SESCO,II.1.1,Córdoba,AR-X,annual,2011,naphtha combustion consumption by public passenger transport,0.031564918,TJ,N2O,0.6,kg/TJ,0.018938950799999996,kg -d117bc5c-cd85-349b-9839-3c7dea0fe65f,SESCO,II.1.1,Tucuman,AR-T,annual,2011,naphtha combustion consumption by public passenger transport,0.0016789849999999998,TJ,CO2,73300.0,kg/TJ,123.06960049999999,kg -0547ee86-23b5-3f83-af81-87086ac3096e,SESCO,II.1.1,Tucuman,AR-T,annual,2011,naphtha combustion consumption by public passenger transport,0.0016789849999999998,TJ,CH4,3.0,kg/TJ,0.005036954999999999,kg -1c412239-eddc-3f35-91a1-2944dcfaf1e0,SESCO,II.1.1,Tucuman,AR-T,annual,2011,naphtha combustion consumption by public passenger transport,0.0016789849999999998,TJ,N2O,0.6,kg/TJ,0.0010073909999999998,kg -e98925a4-884c-352f-ae4b-36bd1de66c52,SESCO,II.1.1,Capital Federal,AR-C,annual,2011,naphtha combustion consumption by public passenger transport,0.365682933,TJ,CO2,73300.0,kg/TJ,26804.5589889,kg -88be197a-7c9b-3914-81d6-f36ca0ea3ddc,SESCO,II.1.1,Capital Federal,AR-C,annual,2011,naphtha combustion consumption by public passenger transport,0.365682933,TJ,CH4,3.0,kg/TJ,1.097048799,kg -e9284cea-1d25-368a-adbc-d978d1113726,SESCO,II.1.1,Capital Federal,AR-C,annual,2011,naphtha combustion consumption by public passenger transport,0.365682933,TJ,N2O,0.6,kg/TJ,0.2194097598,kg -040ac71d-31c0-3a73-9f93-710912afa7a5,SESCO,II.1.1,Córdoba,AR-X,annual,2011,naphtha combustion consumption by public passenger transport,0.020147819999999997,TJ,CO2,73300.0,kg/TJ,1476.8352059999997,kg -0aa4f6de-621f-32c4-93b1-37abf8d21c1c,SESCO,II.1.1,Córdoba,AR-X,annual,2011,naphtha combustion consumption by public passenger transport,0.020147819999999997,TJ,CH4,3.0,kg/TJ,0.06044345999999999,kg -1d4b3bfc-0f62-3b0f-b7ed-f6e07e1d4d17,SESCO,II.1.1,Córdoba,AR-X,annual,2011,naphtha combustion consumption by public passenger transport,0.020147819999999997,TJ,N2O,0.6,kg/TJ,0.012088691999999998,kg -ff56b702-610b-3c26-ba16-93e53437f22e,SESCO,II.1.1,Tucuman,AR-T,annual,2011,naphtha combustion consumption by public passenger transport,0.007723331,TJ,CO2,73300.0,kg/TJ,566.1201623,kg -a275f3b5-e155-3e3c-93de-d8b4a64fb8eb,SESCO,II.1.1,Tucuman,AR-T,annual,2011,naphtha combustion consumption by public passenger transport,0.007723331,TJ,CH4,3.0,kg/TJ,0.023169993,kg -19b98294-f9a8-36d0-9874-79dd7d576ab8,SESCO,II.1.1,Tucuman,AR-T,annual,2011,naphtha combustion consumption by public passenger transport,0.007723331,TJ,N2O,0.6,kg/TJ,0.0046339986,kg -7bf7952d-0f1c-3908-a3e4-6e5a364ab33c,SESCO,II.5.1,Córdoba,AR-X,annual,2011,naphtha combustion consumption by agriculture machines,1.67349136108,TJ,CO2,73300.0,kg/TJ,122666.916767164,kg -86f129a1-a372-3eeb-86b2-ec00a76af5d3,SESCO,II.5.1,Córdoba,AR-X,annual,2011,naphtha combustion consumption by agriculture machines,1.67349136108,TJ,CH4,3.0,kg/TJ,5.02047408324,kg -f557c0f0-9ded-3417-8975-52e85ea20cfd,SESCO,II.5.1,Córdoba,AR-X,annual,2011,naphtha combustion consumption by agriculture machines,1.67349136108,TJ,N2O,0.6,kg/TJ,1.004094816648,kg -a5e5e0b9-8507-3675-85fb-5dd035229f08,SESCO,II.1.1,Buenos Aires,AR-B,annual,2011,naphtha combustion consumption by to the public,1567.2467987476298,TJ,CO2,73300.0,kg/TJ,114879190.34820126,kg -4506aadd-5121-3e48-994b-0b52375ef74c,SESCO,II.1.1,Buenos Aires,AR-B,annual,2011,naphtha combustion consumption by to the public,1567.2467987476298,TJ,CH4,3.0,kg/TJ,4701.740396242889,kg -10ebee96-c379-3f11-99ea-e61de4f8120e,SESCO,II.1.1,Buenos Aires,AR-B,annual,2011,naphtha combustion consumption by to the public,1567.2467987476298,TJ,N2O,0.6,kg/TJ,940.3480792485778,kg -816d65a8-28a6-3bc0-a6e5-0cf90607e01a,SESCO,II.1.1,Capital Federal,AR-C,annual,2011,naphtha combustion consumption by to the public,244.95050648376,TJ,CO2,73300.0,kg/TJ,17954872.125259608,kg -e9c6fd5c-56a4-3f54-b82f-571fd858ac42,SESCO,II.1.1,Capital Federal,AR-C,annual,2011,naphtha combustion consumption by to the public,244.95050648376,TJ,CH4,3.0,kg/TJ,734.85151945128,kg -10564a08-072e-3e89-a3e8-f9de84478d71,SESCO,II.1.1,Capital Federal,AR-C,annual,2011,naphtha combustion consumption by to the public,244.95050648376,TJ,N2O,0.6,kg/TJ,146.970303890256,kg -bbf10042-529f-3ab4-99ab-d4553a3c6e8b,SESCO,II.1.1,Catamarca,AR-K,annual,2011,naphtha combustion consumption by to the public,115.00480088866998,TJ,CO2,73300.0,kg/TJ,8429851.90513951,kg -b29e622b-a39a-3a9c-bbbb-745cc93d7811,SESCO,II.1.1,Catamarca,AR-K,annual,2011,naphtha combustion consumption by to the public,115.00480088866998,TJ,CH4,3.0,kg/TJ,345.0144026660099,kg -e5054107-2b45-3e4e-9f74-4a7950e9d7f0,SESCO,II.1.1,Catamarca,AR-K,annual,2011,naphtha combustion consumption by to the public,115.00480088866998,TJ,N2O,0.6,kg/TJ,69.00288053320199,kg -ad37dcf6-f911-3ec6-9394-bbca1a0003a9,SESCO,II.1.1,Chaco,AR-H,annual,2011,naphtha combustion consumption by to the public,264.03291312013,TJ,CO2,73300.0,kg/TJ,19353612.53170553,kg -212d140c-fec8-3c23-ac18-c376dfe12d9c,SESCO,II.1.1,Chaco,AR-H,annual,2011,naphtha combustion consumption by to the public,264.03291312013,TJ,CH4,3.0,kg/TJ,792.09873936039,kg -873a0733-86a5-35b3-88b7-a74a7d00083e,SESCO,II.1.1,Chaco,AR-H,annual,2011,naphtha combustion consumption by to the public,264.03291312013,TJ,N2O,0.6,kg/TJ,158.41974787207798,kg -e7b64e51-c450-3c3b-a299-6793975dcca1,SESCO,II.1.1,Corrientes,AR-W,annual,2011,naphtha combustion consumption by to the public,336.50367471258994,TJ,CO2,73300.0,kg/TJ,24665719.356432844,kg -1c2f3716-39a6-307e-bf30-14c63a3d9d55,SESCO,II.1.1,Corrientes,AR-W,annual,2011,naphtha combustion consumption by to the public,336.50367471258994,TJ,CH4,3.0,kg/TJ,1009.5110241377698,kg -db711b1f-67ef-331e-be58-09b49ea89e7e,SESCO,II.1.1,Corrientes,AR-W,annual,2011,naphtha combustion consumption by to the public,336.50367471258994,TJ,N2O,0.6,kg/TJ,201.90220482755396,kg -997d866d-a98f-3080-9a01-7586f576a5a3,SESCO,II.1.1,Córdoba,AR-X,annual,2011,naphtha combustion consumption by to the public,615.08846835667,TJ,CO2,73300.0,kg/TJ,45085984.73054391,kg -38392525-18cf-36ca-9432-330ef8840b14,SESCO,II.1.1,Córdoba,AR-X,annual,2011,naphtha combustion consumption by to the public,615.08846835667,TJ,CH4,3.0,kg/TJ,1845.2654050700098,kg -b6a5749d-ecad-3dba-9dd4-4c82663b5482,SESCO,II.1.1,Córdoba,AR-X,annual,2011,naphtha combustion consumption by to the public,615.08846835667,TJ,N2O,0.6,kg/TJ,369.053081014002,kg -ebca86a8-5253-36fb-a8da-dfc604380dc5,SESCO,II.1.1,Entre Rios,AR-E,annual,2011,naphtha combustion consumption by to the public,298.58145798249996,TJ,CO2,73300.0,kg/TJ,21886020.870117247,kg -6044c699-bc4f-3883-9aee-bf58e157448b,SESCO,II.1.1,Entre Rios,AR-E,annual,2011,naphtha combustion consumption by to the public,298.58145798249996,TJ,CH4,3.0,kg/TJ,895.7443739474999,kg -8afd44e8-677c-36e3-9df8-e13e03c20912,SESCO,II.1.1,Entre Rios,AR-E,annual,2011,naphtha combustion consumption by to the public,298.58145798249996,TJ,N2O,0.6,kg/TJ,179.14887478949996,kg -7d8501f0-5f99-36bd-8e76-1acc8ec0b02b,SESCO,II.1.1,Formosa,AR-P,annual,2011,naphtha combustion consumption by to the public,43.732666687709994,TJ,CO2,73300.0,kg/TJ,3205604.4682091423,kg -2580363d-4461-3910-99bc-f0cdffc1ec2b,SESCO,II.1.1,Formosa,AR-P,annual,2011,naphtha combustion consumption by to the public,43.732666687709994,TJ,CH4,3.0,kg/TJ,131.19800006313,kg -302970f3-62f9-3c57-8e8b-edfe66fd4b66,SESCO,II.1.1,Formosa,AR-P,annual,2011,naphtha combustion consumption by to the public,43.732666687709994,TJ,N2O,0.6,kg/TJ,26.239600012625996,kg -757fd74c-fad3-3d25-8bf1-fbc2e241374f,SESCO,II.1.1,Jujuy,AR-Y,annual,2011,naphtha combustion consumption by to the public,16.80883932035,TJ,CO2,73300.0,kg/TJ,1232087.922181655,kg -eb6c73ef-175b-3381-b4cb-06c48252e011,SESCO,II.1.1,Jujuy,AR-Y,annual,2011,naphtha combustion consumption by to the public,16.80883932035,TJ,CH4,3.0,kg/TJ,50.426517961049996,kg -c024b168-e74c-330e-a7a4-bbe0dce94ea6,SESCO,II.1.1,Jujuy,AR-Y,annual,2011,naphtha combustion consumption by to the public,16.80883932035,TJ,N2O,0.6,kg/TJ,10.08530359221,kg -912f5036-f055-39c5-81b5-6ba906a1278e,SESCO,II.1.1,La Pampa,AR-L,annual,2011,naphtha combustion consumption by to the public,8.86515497098,TJ,CO2,73300.0,kg/TJ,649815.8593728341,kg -f5bd73de-2a4d-37a1-9bd4-2d0ef57f65a1,SESCO,II.1.1,La Pampa,AR-L,annual,2011,naphtha combustion consumption by to the public,8.86515497098,TJ,CH4,3.0,kg/TJ,26.595464912940002,kg -f2d68d05-9268-32cb-988d-c97e528550da,SESCO,II.1.1,La Pampa,AR-L,annual,2011,naphtha combustion consumption by to the public,8.86515497098,TJ,N2O,0.6,kg/TJ,5.319092982588001,kg -efedbfa2-316a-3069-8960-817fa9c5c59f,SESCO,II.1.1,La Rioja,AR-F,annual,2011,naphtha combustion consumption by to the public,68.29082433788999,TJ,CO2,73300.0,kg/TJ,5005717.423967336,kg -f75a2a96-a0fa-3095-9029-c9d86430c32b,SESCO,II.1.1,La Rioja,AR-F,annual,2011,naphtha combustion consumption by to the public,68.29082433788999,TJ,CH4,3.0,kg/TJ,204.87247301366995,kg -10f14ae4-a0f1-3b80-bee4-60821b578207,SESCO,II.1.1,La Rioja,AR-F,annual,2011,naphtha combustion consumption by to the public,68.29082433788999,TJ,N2O,0.6,kg/TJ,40.97449460273399,kg -65237436-a797-30f6-be9a-4dab45067fce,SESCO,II.1.1,Mendoza,AR-M,annual,2011,naphtha combustion consumption by to the public,238.77258715309998,TJ,CO2,73300.0,kg/TJ,17502030.638322227,kg -b1a25a69-47fe-322b-aabf-f0bcfaa847db,SESCO,II.1.1,Mendoza,AR-M,annual,2011,naphtha combustion consumption by to the public,238.77258715309998,TJ,CH4,3.0,kg/TJ,716.3177614593,kg -dc594a12-f08f-3a3c-9eee-c75937092e44,SESCO,II.1.1,Mendoza,AR-M,annual,2011,naphtha combustion consumption by to the public,238.77258715309998,TJ,N2O,0.6,kg/TJ,143.26355229185998,kg -12c19489-065b-36b4-b078-cbaa3929c065,SESCO,II.1.1,Misiones,AR-N,annual,2011,naphtha combustion consumption by to the public,116.60336922310998,TJ,CO2,73300.0,kg/TJ,8547026.964053962,kg -195f2384-8d5c-3a77-8531-cbe7bbd97d50,SESCO,II.1.1,Misiones,AR-N,annual,2011,naphtha combustion consumption by to the public,116.60336922310998,TJ,CH4,3.0,kg/TJ,349.8101076693299,kg -b3b57b37-d3de-3abd-8109-108b38bb09de,SESCO,II.1.1,Misiones,AR-N,annual,2011,naphtha combustion consumption by to the public,116.60336922310998,TJ,N2O,0.6,kg/TJ,69.96202153386598,kg -6291280e-d36b-3cda-8247-d8d183fea330,SESCO,II.1.1,Salta,AR-A,annual,2011,naphtha combustion consumption by to the public,7.30295009367,TJ,CO2,73300.0,kg/TJ,535306.2418660109,kg -a4c3c192-bb36-337f-b2c3-0910784d95dd,SESCO,II.1.1,Salta,AR-A,annual,2011,naphtha combustion consumption by to the public,7.30295009367,TJ,CH4,3.0,kg/TJ,21.90885028101,kg -e5c85940-5e98-3364-957b-d81e0e578fe6,SESCO,II.1.1,Salta,AR-A,annual,2011,naphtha combustion consumption by to the public,7.30295009367,TJ,N2O,0.6,kg/TJ,4.381770056202,kg -394d8706-100a-3769-ab34-cd4a41bdd96d,SESCO,II.1.1,San Juan,AR-J,annual,2011,naphtha combustion consumption by to the public,181.92248413416,TJ,CO2,73300.0,kg/TJ,13334918.087033927,kg -f0120c48-471d-3081-8d57-f34cb2e5b21c,SESCO,II.1.1,San Juan,AR-J,annual,2011,naphtha combustion consumption by to the public,181.92248413416,TJ,CH4,3.0,kg/TJ,545.76745240248,kg -2a559acc-5788-3d5d-917b-bda918277622,SESCO,II.1.1,San Juan,AR-J,annual,2011,naphtha combustion consumption by to the public,181.92248413416,TJ,N2O,0.6,kg/TJ,109.15349048049599,kg -0383fe2e-72a5-346f-8d09-9cff48142867,SESCO,II.1.1,San Luis,AR-D,annual,2011,naphtha combustion consumption by to the public,78.98885335802998,TJ,CO2,73300.0,kg/TJ,5789882.951143598,kg -08f43741-00c4-31b1-9790-5ccf31808d16,SESCO,II.1.1,San Luis,AR-D,annual,2011,naphtha combustion consumption by to the public,78.98885335802998,TJ,CH4,3.0,kg/TJ,236.96656007408995,kg -ca1741cd-cb07-3a85-9d75-eca40229a5b9,SESCO,II.1.1,San Luis,AR-D,annual,2011,naphtha combustion consumption by to the public,78.98885335802998,TJ,N2O,0.6,kg/TJ,47.39331201481799,kg -82b47b8c-d5e2-33aa-aa7a-9361473b85d7,SESCO,II.1.1,Santa Fe,AR-S,annual,2011,naphtha combustion consumption by to the public,791.56883826251,TJ,CO2,73300.0,kg/TJ,58021995.84464198,kg -c870748b-ef52-3051-9520-ebf525ae83aa,SESCO,II.1.1,Santa Fe,AR-S,annual,2011,naphtha combustion consumption by to the public,791.56883826251,TJ,CH4,3.0,kg/TJ,2374.70651478753,kg -740f910a-55f7-3640-80f9-6a9d9d13dd4c,SESCO,II.1.1,Santa Fe,AR-S,annual,2011,naphtha combustion consumption by to the public,791.56883826251,TJ,N2O,0.6,kg/TJ,474.94130295750597,kg -c360460e-ff5d-3b32-ace4-0b62eb2e55a5,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2011,naphtha combustion consumption by to the public,119.13866679483999,TJ,CO2,73300.0,kg/TJ,8732864.276061771,kg -8a581654-adbd-31c7-92e6-6c8265261179,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2011,naphtha combustion consumption by to the public,119.13866679483999,TJ,CH4,3.0,kg/TJ,357.41600038452,kg -dca0482b-c2cb-3378-aa2f-688138e14d22,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2011,naphtha combustion consumption by to the public,119.13866679483999,TJ,N2O,0.6,kg/TJ,71.483200076904,kg -b5b8d390-eefe-3c3e-a292-bd674eeee95c,SESCO,II.1.1,Tucuman,AR-T,annual,2011,naphtha combustion consumption by to the public,152.95194383007,TJ,CO2,73300.0,kg/TJ,11211377.482744131,kg -08734401-1c4f-34aa-92b2-3b230fb6961b,SESCO,II.1.1,Tucuman,AR-T,annual,2011,naphtha combustion consumption by to the public,152.95194383007,TJ,CH4,3.0,kg/TJ,458.85583149021,kg -d5af6001-a594-3460-b99a-d8dea3703d6f,SESCO,II.1.1,Tucuman,AR-T,annual,2011,naphtha combustion consumption by to the public,152.95194383007,TJ,N2O,0.6,kg/TJ,91.771166298042,kg -257ad653-58ac-3f55-935b-ef0a8396a07d,SESCO,II.1.1,Buenos Aires,AR-B,annual,2011,naphtha combustion consumption by to the public,276.01975453205995,TJ,CO2,73300.0,kg/TJ,20232248.007199995,kg -969c0c55-fcfb-325b-bba1-a7246e98fe78,SESCO,II.1.1,Buenos Aires,AR-B,annual,2011,naphtha combustion consumption by to the public,276.01975453205995,TJ,CH4,3.0,kg/TJ,828.0592635961798,kg -860bbdfe-1aba-3281-a970-63079a3ea026,SESCO,II.1.1,Buenos Aires,AR-B,annual,2011,naphtha combustion consumption by to the public,276.01975453205995,TJ,N2O,0.6,kg/TJ,165.61185271923597,kg -62a529da-4a9c-3532-8d77-2d768a9576db,SESCO,II.1.1,Capital Federal,AR-C,annual,2011,naphtha combustion consumption by to the public,38.617041166549996,TJ,CO2,73300.0,kg/TJ,2830629.117508115,kg -550e72a5-52b1-3a11-aa4c-aae590dbd81c,SESCO,II.1.1,Capital Federal,AR-C,annual,2011,naphtha combustion consumption by to the public,38.617041166549996,TJ,CH4,3.0,kg/TJ,115.85112349964999,kg -f82a2e06-891e-31a9-b3b7-954582a09cab,SESCO,II.1.1,Capital Federal,AR-C,annual,2011,naphtha combustion consumption by to the public,38.617041166549996,TJ,N2O,0.6,kg/TJ,23.170224699929996,kg -bb36600c-ae52-3cc5-a31f-5ccc3fdedaca,SESCO,II.1.1,Catamarca,AR-K,annual,2011,naphtha combustion consumption by to the public,14.591343387389996,TJ,CO2,73300.0,kg/TJ,1069545.4702956867,kg -d4d21ae9-231e-3d2b-98a6-6637ae27158a,SESCO,II.1.1,Catamarca,AR-K,annual,2011,naphtha combustion consumption by to the public,14.591343387389996,TJ,CH4,3.0,kg/TJ,43.774030162169986,kg -7ba377e4-60a4-3978-b1a3-b619af911e28,SESCO,II.1.1,Catamarca,AR-K,annual,2011,naphtha combustion consumption by to the public,14.591343387389996,TJ,N2O,0.6,kg/TJ,8.754806032433997,kg -8df7c6ff-09dd-3c04-a4e7-c5a6506c86e8,SESCO,II.1.1,Chaco,AR-H,annual,2011,naphtha combustion consumption by to the public,21.487206777959997,TJ,CO2,73300.0,kg/TJ,1575012.2568244678,kg -cc012742-37ac-39de-8c4c-14f2c4d94ce6,SESCO,II.1.1,Chaco,AR-H,annual,2011,naphtha combustion consumption by to the public,21.487206777959997,TJ,CH4,3.0,kg/TJ,64.46162033387999,kg -11328114-c46e-354e-920e-6d0336aee4b1,SESCO,II.1.1,Chaco,AR-H,annual,2011,naphtha combustion consumption by to the public,21.487206777959997,TJ,N2O,0.6,kg/TJ,12.892324066775998,kg -e63d9123-78f0-36cd-9929-292eb1759313,SESCO,II.1.1,Corrientes,AR-W,annual,2011,naphtha combustion consumption by to the public,30.74959281009,TJ,CO2,73300.0,kg/TJ,2253945.152979597,kg -af440145-c0da-36ed-9e3c-73c285680cc8,SESCO,II.1.1,Corrientes,AR-W,annual,2011,naphtha combustion consumption by to the public,30.74959281009,TJ,CH4,3.0,kg/TJ,92.24877843027,kg -7f34b3e9-6f7d-3362-8a0e-957ed981249c,SESCO,II.1.1,Corrientes,AR-W,annual,2011,naphtha combustion consumption by to the public,30.74959281009,TJ,N2O,0.6,kg/TJ,18.449755686054,kg -849c2854-4b4c-3169-ad89-09c6eef9298a,SESCO,II.1.1,Córdoba,AR-X,annual,2011,naphtha combustion consumption by to the public,104.94734158369998,TJ,CO2,73300.0,kg/TJ,7692640.138085209,kg -28a14451-41c4-3fe6-9c15-c0466487c795,SESCO,II.1.1,Córdoba,AR-X,annual,2011,naphtha combustion consumption by to the public,104.94734158369998,TJ,CH4,3.0,kg/TJ,314.8420247510999,kg -f9cebb44-3986-39f1-a1a3-372677d4d385,SESCO,II.1.1,Córdoba,AR-X,annual,2011,naphtha combustion consumption by to the public,104.94734158369998,TJ,N2O,0.6,kg/TJ,62.968404950219984,kg -341006dc-c445-3c6c-aae8-fa43d05f2180,SESCO,II.1.1,Entre Rios,AR-E,annual,2011,naphtha combustion consumption by to the public,52.80585125815999,TJ,CO2,73300.0,kg/TJ,3870668.897223127,kg -7ba17183-4f55-31f1-a44b-e001f845b309,SESCO,II.1.1,Entre Rios,AR-E,annual,2011,naphtha combustion consumption by to the public,52.80585125815999,TJ,CH4,3.0,kg/TJ,158.41755377447998,kg -dde82698-5577-3086-8c9d-73c97e993c5d,SESCO,II.1.1,Entre Rios,AR-E,annual,2011,naphtha combustion consumption by to the public,52.80585125815999,TJ,N2O,0.6,kg/TJ,31.68351075489599,kg -74b07935-c694-36f2-88f3-d1fe7812a7b6,SESCO,II.1.1,Jujuy,AR-Y,annual,2011,naphtha combustion consumption by to the public,2.0425154742299996,TJ,CO2,73300.0,kg/TJ,149716.38426105896,kg -f968451d-3b08-3920-b115-7a5767f75628,SESCO,II.1.1,Jujuy,AR-Y,annual,2011,naphtha combustion consumption by to the public,2.0425154742299996,TJ,CH4,3.0,kg/TJ,6.127546422689999,kg -e1e573ca-c650-3162-9aac-78787ec8d4db,SESCO,II.1.1,Jujuy,AR-Y,annual,2011,naphtha combustion consumption by to the public,2.0425154742299996,TJ,N2O,0.6,kg/TJ,1.2255092845379998,kg -4de4bc48-d781-3bfa-bcdf-b4f701deb27c,SESCO,II.1.1,La Pampa,AR-L,annual,2011,naphtha combustion consumption by to the public,3.7665073461399996,TJ,CO2,73300.0,kg/TJ,276084.988472062,kg -049054cb-f61c-32f7-bc0b-a1da94a11946,SESCO,II.1.1,La Pampa,AR-L,annual,2011,naphtha combustion consumption by to the public,3.7665073461399996,TJ,CH4,3.0,kg/TJ,11.29952203842,kg -443a0b4d-9c00-306f-a6c6-da3020b41f3c,SESCO,II.1.1,La Pampa,AR-L,annual,2011,naphtha combustion consumption by to the public,3.7665073461399996,TJ,N2O,0.6,kg/TJ,2.2599044076839996,kg -eee7fd0c-18bd-38fe-bb38-42e0ef6f4079,SESCO,II.1.1,La Rioja,AR-F,annual,2011,naphtha combustion consumption by to the public,8.701034187229999,TJ,CO2,73300.0,kg/TJ,637785.8059239589,kg -2c2273fd-3103-34fd-a01e-b90ac6ce235b,SESCO,II.1.1,La Rioja,AR-F,annual,2011,naphtha combustion consumption by to the public,8.701034187229999,TJ,CH4,3.0,kg/TJ,26.103102561689994,kg -13c5717b-1924-3475-b344-c0cef9e40838,SESCO,II.1.1,La Rioja,AR-F,annual,2011,naphtha combustion consumption by to the public,8.701034187229999,TJ,N2O,0.6,kg/TJ,5.220620512337999,kg -d5e38ce0-0868-39e5-8411-e80f19de7eae,SESCO,II.1.1,Mendoza,AR-M,annual,2011,naphtha combustion consumption by to the public,42.51807214886,TJ,CO2,73300.0,kg/TJ,3116574.688511438,kg -9280b8a1-bd28-3f45-a615-bd29315dc78f,SESCO,II.1.1,Mendoza,AR-M,annual,2011,naphtha combustion consumption by to the public,42.51807214886,TJ,CH4,3.0,kg/TJ,127.55421644658,kg -3dc4c103-a850-3bfc-af61-811a2706d815,SESCO,II.1.1,Mendoza,AR-M,annual,2011,naphtha combustion consumption by to the public,42.51807214886,TJ,N2O,0.6,kg/TJ,25.510843289316,kg -55288a44-a077-361c-bd7b-84bb3a7749b1,SESCO,II.1.1,Misiones,AR-N,annual,2011,naphtha combustion consumption by to the public,10.722572422869998,TJ,CO2,73300.0,kg/TJ,785964.5585963709,kg -3edc2853-b8e2-34e5-afe6-3d691c205662,SESCO,II.1.1,Misiones,AR-N,annual,2011,naphtha combustion consumption by to the public,10.722572422869998,TJ,CH4,3.0,kg/TJ,32.16771726860999,kg -8010b7e3-5bf8-37c5-a89b-8081761e4d6c,SESCO,II.1.1,Misiones,AR-N,annual,2011,naphtha combustion consumption by to the public,10.722572422869998,TJ,N2O,0.6,kg/TJ,6.433543453721999,kg -5462b77b-edf2-3052-9856-ebb30ed58aef,SESCO,II.1.1,Salta,AR-A,annual,2011,naphtha combustion consumption by to the public,0.57329278622,TJ,CO2,73300.0,kg/TJ,42022.361229926,kg -b0144b10-207e-393b-bf16-ccf6f08ee51e,SESCO,II.1.1,Salta,AR-A,annual,2011,naphtha combustion consumption by to the public,0.57329278622,TJ,CH4,3.0,kg/TJ,1.71987835866,kg -6622adc5-c7d9-3a68-b313-447cb7293b9c,SESCO,II.1.1,Salta,AR-A,annual,2011,naphtha combustion consumption by to the public,0.57329278622,TJ,N2O,0.6,kg/TJ,0.343975671732,kg -bbd9991c-37c6-364a-acae-2fd456b8827d,SESCO,II.1.1,San Juan,AR-J,annual,2011,naphtha combustion consumption by to the public,37.08617958122,TJ,CO2,73300.0,kg/TJ,2718416.9633034263,kg -ad5b4f72-e945-3e9b-8cdb-ed4cb24c03da,SESCO,II.1.1,San Juan,AR-J,annual,2011,naphtha combustion consumption by to the public,37.08617958122,TJ,CH4,3.0,kg/TJ,111.25853874366001,kg -fbf961b6-c3d3-35af-b07a-d91520e084e8,SESCO,II.1.1,San Juan,AR-J,annual,2011,naphtha combustion consumption by to the public,37.08617958122,TJ,N2O,0.6,kg/TJ,22.251707748732,kg -390047ac-93ef-3edc-a86a-0502648495b1,SESCO,II.1.1,San Luis,AR-D,annual,2011,naphtha combustion consumption by to the public,13.14092868935,TJ,CO2,73300.0,kg/TJ,963230.072929355,kg -20f990a0-a5d7-3987-9b45-d9e505849e99,SESCO,II.1.1,San Luis,AR-D,annual,2011,naphtha combustion consumption by to the public,13.14092868935,TJ,CH4,3.0,kg/TJ,39.42278606805,kg -70eae4d5-866e-3199-8500-31929cb10b24,SESCO,II.1.1,San Luis,AR-D,annual,2011,naphtha combustion consumption by to the public,13.14092868935,TJ,N2O,0.6,kg/TJ,7.88455721361,kg -23fcf9b8-9727-3959-8346-33d05af84c38,SESCO,II.1.1,Santa Fe,AR-S,annual,2011,naphtha combustion consumption by to the public,150.95033850435,TJ,CO2,73300.0,kg/TJ,11064659.812368855,kg -1da1e11e-9133-3eaa-8404-a1dbd4f95d04,SESCO,II.1.1,Santa Fe,AR-S,annual,2011,naphtha combustion consumption by to the public,150.95033850435,TJ,CH4,3.0,kg/TJ,452.85101551304996,kg -e8d19392-5883-30bb-b309-7231769a93a1,SESCO,II.1.1,Santa Fe,AR-S,annual,2011,naphtha combustion consumption by to the public,150.95033850435,TJ,N2O,0.6,kg/TJ,90.57020310261,kg -e3533305-351e-3746-9b2b-dc72226fc3ec,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2011,naphtha combustion consumption by to the public,15.141892642799997,TJ,CO2,73300.0,kg/TJ,1109900.7307172397,kg -762317db-0b2f-3c21-9549-4aefa7b2b0e0,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2011,naphtha combustion consumption by to the public,15.141892642799997,TJ,CH4,3.0,kg/TJ,45.42567792839999,kg -9b7b0c52-4ee7-3afc-9fa9-6ecd495f89ea,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2011,naphtha combustion consumption by to the public,15.141892642799997,TJ,N2O,0.6,kg/TJ,9.085135585679998,kg -e06988d2-1ea3-35b2-94ef-92cf631a95b0,SESCO,II.1.1,Tucuman,AR-T,annual,2011,naphtha combustion consumption by to the public,23.31350592186,TJ,CO2,73300.0,kg/TJ,1708879.9840723379,kg -2534df29-d0cb-3289-8b74-b320f37cd6b6,SESCO,II.1.1,Tucuman,AR-T,annual,2011,naphtha combustion consumption by to the public,23.31350592186,TJ,CH4,3.0,kg/TJ,69.94051776558,kg -04bc5fef-3d21-33d0-969c-afc89a2557a2,SESCO,II.1.1,Tucuman,AR-T,annual,2011,naphtha combustion consumption by to the public,23.31350592186,TJ,N2O,0.6,kg/TJ,13.988103553116,kg -858e72ee-3161-3f0f-91d2-22569df17668,SESCO,II.5.1,Santiago del Estero,AR-G,annual,2011,naphtha combustion consumption by agriculture machines,1.7568563242999997,TJ,CO2,73300.0,kg/TJ,128777.56857118999,kg -17b1e7a0-86df-3194-b8cd-07ac9c6ed980,SESCO,II.5.1,Santiago del Estero,AR-G,annual,2011,naphtha combustion consumption by agriculture machines,1.7568563242999997,TJ,CH4,3.0,kg/TJ,5.2705689729,kg -45e91999-a5c3-3f49-9a1d-e5a7d16cb58a,SESCO,II.5.1,Santiago del Estero,AR-G,annual,2011,naphtha combustion consumption by agriculture machines,1.7568563242999997,TJ,N2O,0.6,kg/TJ,1.0541137945799999,kg -3cbff7fe-d16d-3c2f-b9ea-31ec09a38edc,SESCO,II.1.1,Buenos Aires,AR-B,annual,2011,naphtha combustion consumption by to the public,175.7116566975,TJ,CO2,73300.0,kg/TJ,12879664.435926748,kg -e2894098-1369-3409-b56b-d1c34260bd6f,SESCO,II.1.1,Buenos Aires,AR-B,annual,2011,naphtha combustion consumption by to the public,175.7116566975,TJ,CH4,3.0,kg/TJ,527.1349700925,kg -fb31e21c-6b17-3721-8498-ca76c85129e7,SESCO,II.1.1,Buenos Aires,AR-B,annual,2011,naphtha combustion consumption by to the public,175.7116566975,TJ,N2O,0.6,kg/TJ,105.4269940185,kg -24a1454c-5473-3037-91e4-1f7bbe8c43c3,SESCO,II.1.1,Chubut,AR-U,annual,2011,naphtha combustion consumption by to the public,43.366503565,TJ,CO2,73300.0,kg/TJ,3178764.7113145003,kg -59fa92ef-2de0-353c-b5f4-b8ac6306bb4c,SESCO,II.1.1,Chubut,AR-U,annual,2011,naphtha combustion consumption by to the public,43.366503565,TJ,CH4,3.0,kg/TJ,130.099510695,kg -7f48d252-6b46-3052-a259-c4aee454c6a3,SESCO,II.1.1,Chubut,AR-U,annual,2011,naphtha combustion consumption by to the public,43.366503565,TJ,N2O,0.6,kg/TJ,26.019902139,kg -87a4ca68-2194-3651-9714-e3ec966c6e0f,SESCO,II.1.1,Entre Rios,AR-E,annual,2011,naphtha combustion consumption by to the public,1.6069901232,TJ,CO2,73300.0,kg/TJ,117792.37603055999,kg -4401849d-5cb2-3e4c-b83e-81595cb7d35d,SESCO,II.1.1,Entre Rios,AR-E,annual,2011,naphtha combustion consumption by to the public,1.6069901232,TJ,CH4,3.0,kg/TJ,4.8209703695999995,kg -b8040f87-1fa8-3949-a2de-a944705119fb,SESCO,II.1.1,Entre Rios,AR-E,annual,2011,naphtha combustion consumption by to the public,1.6069901232,TJ,N2O,0.6,kg/TJ,0.9641940739199999,kg -38889700-9fee-3576-89c1-ee1b01ef3aa2,SESCO,II.1.1,La Pampa,AR-L,annual,2011,naphtha combustion consumption by to the public,0.9920114973999999,TJ,CO2,73300.0,kg/TJ,72714.44275942,kg -40dae016-d124-3ad8-8b09-526c08a92d81,SESCO,II.1.1,La Pampa,AR-L,annual,2011,naphtha combustion consumption by to the public,0.9920114973999999,TJ,CH4,3.0,kg/TJ,2.9760344921999997,kg -4b02aae4-fb90-3bf0-9554-659e91bb86d8,SESCO,II.1.1,La Pampa,AR-L,annual,2011,naphtha combustion consumption by to the public,0.9920114973999999,TJ,N2O,0.6,kg/TJ,0.59520689844,kg -09e56609-d9b2-383e-80fc-b47cdf5ebf14,SESCO,II.1.1,Neuquén,AR-Q,annual,2011,naphtha combustion consumption by to the public,15.369160052399998,TJ,CO2,73300.0,kg/TJ,1126559.43184092,kg -7ad707ec-809d-3246-afd4-9ab7763dbb45,SESCO,II.1.1,Neuquén,AR-Q,annual,2011,naphtha combustion consumption by to the public,15.369160052399998,TJ,CH4,3.0,kg/TJ,46.107480157199994,kg -3ec17b8b-f379-3d59-8354-1488b7ca227b,SESCO,II.1.1,Neuquén,AR-Q,annual,2011,naphtha combustion consumption by to the public,15.369160052399998,TJ,N2O,0.6,kg/TJ,9.22149603144,kg -a4697cb4-9375-3a87-8921-727ef23f54fb,SESCO,II.1.1,Rio Negro,AR-R,annual,2011,naphtha combustion consumption by to the public,95.02806610219999,TJ,CO2,73300.0,kg/TJ,6965557.245291259,kg -f5ca9c0f-144d-37a3-8136-233d967a418f,SESCO,II.1.1,Rio Negro,AR-R,annual,2011,naphtha combustion consumption by to the public,95.02806610219999,TJ,CH4,3.0,kg/TJ,285.08419830659994,kg -ee0a7ada-9200-3e7f-bb97-2285ca6478ae,SESCO,II.1.1,Rio Negro,AR-R,annual,2011,naphtha combustion consumption by to the public,95.02806610219999,TJ,N2O,0.6,kg/TJ,57.01683966131999,kg -59d321a8-e79b-3809-b4b5-d23b85ad5934,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2011,naphtha combustion consumption by to the public,2.5051463591,TJ,CO2,73300.0,kg/TJ,183627.22812202998,kg -8759e21e-0557-3c26-b11e-d11bade89594,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2011,naphtha combustion consumption by to the public,2.5051463591,TJ,CH4,3.0,kg/TJ,7.5154390773,kg -176a40d9-ce88-353e-8ddc-8be9e90a8a03,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2011,naphtha combustion consumption by to the public,2.5051463591,TJ,N2O,0.6,kg/TJ,1.5030878154599998,kg -73a5a90b-1fb6-3208-8efb-01b987133a8b,SESCO,II.1.1,Santa Fe,AR-S,annual,2011,naphtha combustion consumption by to the public,0.19869108489999998,TJ,CO2,73300.0,kg/TJ,14564.056523169998,kg -cab16a8e-7473-32cc-8a43-ff9c9bdb524b,SESCO,II.1.1,Santa Fe,AR-S,annual,2011,naphtha combustion consumption by to the public,0.19869108489999998,TJ,CH4,3.0,kg/TJ,0.5960732546999999,kg -c4a63aa5-50e6-3e82-bb89-6e69e77c4cb5,SESCO,II.1.1,Santa Fe,AR-S,annual,2011,naphtha combustion consumption by to the public,0.19869108489999998,TJ,N2O,0.6,kg/TJ,0.11921465093999999,kg -7195aadc-d9c4-30b3-b959-1be2a6d894c2,SESCO,II.1.1,Buenos Aires,AR-B,annual,2011,naphtha combustion consumption by to the public,6023.9046934220005,TJ,CO2,73300.0,kg/TJ,441552214.0278326,kg -24bbac4c-ebaa-3c23-a659-23bd4cce1047,SESCO,II.1.1,Buenos Aires,AR-B,annual,2011,naphtha combustion consumption by to the public,6023.9046934220005,TJ,CH4,3.0,kg/TJ,18071.714080266,kg -cc1e0257-6ccf-3626-9e0a-1bec5f95227a,SESCO,II.1.1,Buenos Aires,AR-B,annual,2011,naphtha combustion consumption by to the public,6023.9046934220005,TJ,N2O,0.6,kg/TJ,3614.3428160532003,kg -afc5eef9-97d6-3516-b252-35dbb089eb59,SESCO,II.1.1,Capital Federal,AR-C,annual,2011,naphtha combustion consumption by to the public,851.1995251297999,TJ,CO2,73300.0,kg/TJ,62392925.19201433,kg -294918a7-4215-36ff-8b87-4ea0b93b55e1,SESCO,II.1.1,Capital Federal,AR-C,annual,2011,naphtha combustion consumption by to the public,851.1995251297999,TJ,CH4,3.0,kg/TJ,2553.5985753893997,kg -b1f8b9b7-024f-3991-b168-89347e4273ed,SESCO,II.1.1,Capital Federal,AR-C,annual,2011,naphtha combustion consumption by to the public,851.1995251297999,TJ,N2O,0.6,kg/TJ,510.7197150778799,kg -f60a955a-c0d4-3b55-922f-11d5fd798533,SESCO,II.1.1,Catamarca,AR-K,annual,2011,naphtha combustion consumption by to the public,60.84655071879999,TJ,CO2,73300.0,kg/TJ,4460052.167688039,kg -20d1bdbd-10d4-3b5b-b894-d61996d0da19,SESCO,II.1.1,Catamarca,AR-K,annual,2011,naphtha combustion consumption by to the public,60.84655071879999,TJ,CH4,3.0,kg/TJ,182.53965215639997,kg -ebb7d42e-e02c-3ca0-89d7-c4b8ef150f9b,SESCO,II.1.1,Catamarca,AR-K,annual,2011,naphtha combustion consumption by to the public,60.84655071879999,TJ,N2O,0.6,kg/TJ,36.507930431279995,kg -1a32915f-cbb1-344c-b6df-b3f2be09599d,SESCO,II.1.1,Chaco,AR-H,annual,2011,naphtha combustion consumption by to the public,117.04587243579998,TJ,CO2,73300.0,kg/TJ,8579462.44954414,kg -1bc891a6-b654-3232-b6cc-a7b24b4e0fb2,SESCO,II.1.1,Chaco,AR-H,annual,2011,naphtha combustion consumption by to the public,117.04587243579998,TJ,CH4,3.0,kg/TJ,351.1376173073999,kg -ce3b30e7-b67f-3c84-ba34-438de1b65599,SESCO,II.1.1,Chaco,AR-H,annual,2011,naphtha combustion consumption by to the public,117.04587243579998,TJ,N2O,0.6,kg/TJ,70.22752346147999,kg -d3c1a128-0b5f-370a-8319-e8c9fde02e0a,SESCO,II.1.1,Chubut,AR-U,annual,2011,naphtha combustion consumption by to the public,1531.0932181006,TJ,CO2,73300.0,kg/TJ,112229132.88677399,kg -5ed4bbe5-1955-3c8a-b459-409d8cc0b994,SESCO,II.1.1,Chubut,AR-U,annual,2011,naphtha combustion consumption by to the public,1531.0932181006,TJ,CH4,3.0,kg/TJ,4593.2796543018,kg -88cded83-f6e1-3225-9779-3e03e3090f3c,SESCO,II.1.1,Chubut,AR-U,annual,2011,naphtha combustion consumption by to the public,1531.0932181006,TJ,N2O,0.6,kg/TJ,918.6559308603601,kg -ba8db461-5af5-3702-8ce6-a72875effa08,SESCO,II.1.1,Corrientes,AR-W,annual,2011,naphtha combustion consumption by to the public,163.14717392819998,TJ,CO2,73300.0,kg/TJ,11958687.848937059,kg -57bd7b1c-c11f-3bb9-a9a0-dd2f971d7113,SESCO,II.1.1,Corrientes,AR-W,annual,2011,naphtha combustion consumption by to the public,163.14717392819998,TJ,CH4,3.0,kg/TJ,489.4415217845999,kg -b72b2223-7204-34ad-b3d6-4151e42f5c89,SESCO,II.1.1,Corrientes,AR-W,annual,2011,naphtha combustion consumption by to the public,163.14717392819998,TJ,N2O,0.6,kg/TJ,97.88830435691999,kg -1b189b48-d93f-3748-ad4e-ea2ff9b9b8a4,SESCO,II.1.1,Córdoba,AR-X,annual,2011,naphtha combustion consumption by to the public,1045.7094336842997,TJ,CO2,73300.0,kg/TJ,76650501.48905917,kg -98ee32d7-20fc-385a-a7fd-ca4b86426b8c,SESCO,II.1.1,Córdoba,AR-X,annual,2011,naphtha combustion consumption by to the public,1045.7094336842997,TJ,CH4,3.0,kg/TJ,3137.128301052899,kg -1441b98a-4515-32dd-9c06-fa322e338c11,SESCO,II.1.1,Córdoba,AR-X,annual,2011,naphtha combustion consumption by to the public,1045.7094336842997,TJ,N2O,0.6,kg/TJ,627.4256602105798,kg -14f915f6-a607-3c9f-8877-bf67099b033c,SESCO,II.1.1,Entre Rios,AR-E,annual,2011,naphtha combustion consumption by to the public,263.0501729779,TJ,CO2,73300.0,kg/TJ,19281577.67928007,kg -33801a87-ede6-3ed9-ae80-dca9450776b9,SESCO,II.1.1,Entre Rios,AR-E,annual,2011,naphtha combustion consumption by to the public,263.0501729779,TJ,CH4,3.0,kg/TJ,789.1505189336999,kg -5c5e707f-16df-3b9d-8d5c-5e4a7497ce07,SESCO,II.1.1,Entre Rios,AR-E,annual,2011,naphtha combustion consumption by to the public,263.0501729779,TJ,N2O,0.6,kg/TJ,157.83010378673998,kg -1ba9a3ba-58e2-30d5-bbad-4313a4de3115,SESCO,II.1.1,Formosa,AR-P,annual,2011,naphtha combustion consumption by to the public,16.3295730521,TJ,CO2,73300.0,kg/TJ,1196957.70471893,kg -bd47e5a4-6280-32e6-a370-627e60dbe3d6,SESCO,II.1.1,Formosa,AR-P,annual,2011,naphtha combustion consumption by to the public,16.3295730521,TJ,CH4,3.0,kg/TJ,48.98871915629999,kg -92a912cb-a941-389c-ba99-94ea63488b7d,SESCO,II.1.1,Formosa,AR-P,annual,2011,naphtha combustion consumption by to the public,16.3295730521,TJ,N2O,0.6,kg/TJ,9.797743831259998,kg -abfcbd86-cda5-3029-8416-e8f339935d5a,SESCO,II.1.1,Jujuy,AR-Y,annual,2011,naphtha combustion consumption by to the public,8.0770931395,TJ,CO2,73300.0,kg/TJ,592050.92712535,kg -433277b9-03d6-3604-997b-720ea77fb35b,SESCO,II.1.1,Jujuy,AR-Y,annual,2011,naphtha combustion consumption by to the public,8.0770931395,TJ,CH4,3.0,kg/TJ,24.2312794185,kg -22d7c360-ff6c-3e70-b946-149240be799d,SESCO,II.1.1,Jujuy,AR-Y,annual,2011,naphtha combustion consumption by to the public,8.0770931395,TJ,N2O,0.6,kg/TJ,4.8462558837000005,kg -bd338dfe-03a3-3db9-a4c9-ac4439b8b03e,SESCO,II.1.1,La Pampa,AR-L,annual,2011,naphtha combustion consumption by to the public,237.0676114653,TJ,CO2,73300.0,kg/TJ,17377055.92040649,kg -0197d6f2-77dc-392d-9917-0bb23ae4e54e,SESCO,II.1.1,La Pampa,AR-L,annual,2011,naphtha combustion consumption by to the public,237.0676114653,TJ,CH4,3.0,kg/TJ,711.2028343959,kg -d177eafe-df02-39b1-a41b-7b66ce9daf3f,SESCO,II.1.1,La Pampa,AR-L,annual,2011,naphtha combustion consumption by to the public,237.0676114653,TJ,N2O,0.6,kg/TJ,142.24056687918,kg -170b2a3f-d855-3740-9f33-37089b09912c,SESCO,II.1.1,La Rioja,AR-F,annual,2011,naphtha combustion consumption by to the public,31.6263016916,TJ,CO2,73300.0,kg/TJ,2318207.9139942797,kg -8663d11d-f0ea-341d-83f3-e36c2a2941eb,SESCO,II.1.1,La Rioja,AR-F,annual,2011,naphtha combustion consumption by to the public,31.6263016916,TJ,CH4,3.0,kg/TJ,94.8789050748,kg -74b1d09a-d04e-3146-919f-a0863bf891c5,SESCO,II.1.1,La Rioja,AR-F,annual,2011,naphtha combustion consumption by to the public,31.6263016916,TJ,N2O,0.6,kg/TJ,18.97578101496,kg -5cdcadb4-ad7e-3143-ad90-2179d8acc945,SESCO,II.1.1,Mendoza,AR-M,annual,2011,naphtha combustion consumption by to the public,133.3305830087,TJ,CO2,73300.0,kg/TJ,9773131.73453771,kg -5ed439e7-d796-3e6a-8470-cf76d33c4276,SESCO,II.1.1,Mendoza,AR-M,annual,2011,naphtha combustion consumption by to the public,133.3305830087,TJ,CH4,3.0,kg/TJ,399.99174902609997,kg -393ded2a-ed69-3777-a4f9-e1a323a36833,SESCO,II.1.1,Mendoza,AR-M,annual,2011,naphtha combustion consumption by to the public,133.3305830087,TJ,N2O,0.6,kg/TJ,79.99834980521999,kg -e70eeee1-e11b-36c8-b70c-89599c3fa308,SESCO,II.1.1,Misiones,AR-N,annual,2011,naphtha combustion consumption by to the public,55.737903059299995,TJ,CO2,73300.0,kg/TJ,4085588.29424669,kg -9bc5ea76-38f1-3ab4-b4d0-dfaa681e4fcf,SESCO,II.1.1,Misiones,AR-N,annual,2011,naphtha combustion consumption by to the public,55.737903059299995,TJ,CH4,3.0,kg/TJ,167.2137091779,kg -896e44bc-71b3-3631-96d2-2566504c1031,SESCO,II.1.1,Misiones,AR-N,annual,2011,naphtha combustion consumption by to the public,55.737903059299995,TJ,N2O,0.6,kg/TJ,33.442741835579994,kg -d5cc651c-e0ac-3bdc-9c1e-29206c6ddb6f,SESCO,II.1.1,Neuquén,AR-Q,annual,2011,naphtha combustion consumption by to the public,576.2103920342,TJ,CO2,73300.0,kg/TJ,42236221.736106865,kg -dfd99880-e932-384e-8e4a-f10c78eba56d,SESCO,II.1.1,Neuquén,AR-Q,annual,2011,naphtha combustion consumption by to the public,576.2103920342,TJ,CH4,3.0,kg/TJ,1728.6311761026,kg -fbdf0f87-1f5e-38e6-8f61-80f8b7037ffe,SESCO,II.1.1,Neuquén,AR-Q,annual,2011,naphtha combustion consumption by to the public,576.2103920342,TJ,N2O,0.6,kg/TJ,345.72623522052,kg -5306936e-9403-32ea-aada-bdf885fbd5ca,SESCO,II.1.1,Rio Negro,AR-R,annual,2011,naphtha combustion consumption by to the public,1130.1300083534998,TJ,CO2,73300.0,kg/TJ,82838529.61231153,kg -c27add13-e7f9-3cba-a328-477976e690a6,SESCO,II.1.1,Rio Negro,AR-R,annual,2011,naphtha combustion consumption by to the public,1130.1300083534998,TJ,CH4,3.0,kg/TJ,3390.3900250604993,kg -7c41024e-d2c4-36ca-aaf0-e962e81c5d15,SESCO,II.1.1,Rio Negro,AR-R,annual,2011,naphtha combustion consumption by to the public,1130.1300083534998,TJ,N2O,0.6,kg/TJ,678.0780050120999,kg -9720f3c9-b3e7-3d8d-90c9-21afd86078dd,SESCO,II.1.1,Salta,AR-A,annual,2011,naphtha combustion consumption by to the public,10.715315849699998,TJ,CO2,73300.0,kg/TJ,785432.6517830099,kg -a96d71e1-d53e-312d-bb93-12699260131a,SESCO,II.1.1,Salta,AR-A,annual,2011,naphtha combustion consumption by to the public,10.715315849699998,TJ,CH4,3.0,kg/TJ,32.14594754909999,kg -34751e8d-5541-3b2c-981f-3265fb302541,SESCO,II.1.1,Salta,AR-A,annual,2011,naphtha combustion consumption by to the public,10.715315849699998,TJ,N2O,0.6,kg/TJ,6.429189509819999,kg -1399d666-5a58-3cc2-b9dd-dfec64690032,SESCO,II.1.1,San Juan,AR-J,annual,2011,naphtha combustion consumption by to the public,80.52163570219999,TJ,CO2,73300.0,kg/TJ,5902235.896971259,kg -7deaa9e6-8a64-317c-bd61-c2779a314153,SESCO,II.1.1,San Juan,AR-J,annual,2011,naphtha combustion consumption by to the public,80.52163570219999,TJ,CH4,3.0,kg/TJ,241.56490710659995,kg -b2d8d57d-484d-35df-9963-34a2edacbca5,SESCO,II.1.1,San Juan,AR-J,annual,2011,naphtha combustion consumption by to the public,80.52163570219999,TJ,N2O,0.6,kg/TJ,48.31298142131999,kg -aae15c89-6b07-3c5c-825c-3240cd50491c,SESCO,II.1.1,San Luis,AR-D,annual,2011,naphtha combustion consumption by to the public,46.447575358799995,TJ,CO2,73300.0,kg/TJ,3404607.2738000397,kg -c2a3ea25-28df-3e43-93b7-eed9e859e571,SESCO,II.1.1,San Luis,AR-D,annual,2011,naphtha combustion consumption by to the public,46.447575358799995,TJ,CH4,3.0,kg/TJ,139.34272607639997,kg -2b4772e0-80d2-374e-9557-3537249e7726,SESCO,II.1.1,San Luis,AR-D,annual,2011,naphtha combustion consumption by to the public,46.447575358799995,TJ,N2O,0.6,kg/TJ,27.868545215279998,kg -4c494061-ffce-3435-b0ef-adac52e0596c,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2011,naphtha combustion consumption by to the public,1024.1423005043998,TJ,CO2,73300.0,kg/TJ,75069630.62697251,kg -ffd297cc-bb1a-3eb3-9d89-bfb111e1475a,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2011,naphtha combustion consumption by to the public,1024.1423005043998,TJ,CH4,3.0,kg/TJ,3072.4269015131995,kg -b517a534-ca7b-3243-b6ed-cafe67525b62,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2011,naphtha combustion consumption by to the public,1024.1423005043998,TJ,N2O,0.6,kg/TJ,614.4853803026399,kg -7d3928d1-5067-3fd4-8cac-c4f7b7aef85c,SESCO,II.1.1,Santa Fe,AR-S,annual,2011,naphtha combustion consumption by to the public,1038.2476213879,TJ,CO2,73300.0,kg/TJ,76103550.64773306,kg -0f4869ff-dca5-3feb-8aef-a0694025c28e,SESCO,II.1.1,Santa Fe,AR-S,annual,2011,naphtha combustion consumption by to the public,1038.2476213879,TJ,CH4,3.0,kg/TJ,3114.7428641637,kg -512d9272-8c20-36be-8e94-31e285963528,SESCO,II.1.1,Santa Fe,AR-S,annual,2011,naphtha combustion consumption by to the public,1038.2476213879,TJ,N2O,0.6,kg/TJ,622.94857283274,kg -51e02f0f-9f91-39e7-b72a-44f65211491c,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2011,naphtha combustion consumption by to the public,60.0549092913,TJ,CO2,73300.0,kg/TJ,4402024.85105229,kg -be82aa70-9a0d-36d3-9d48-80395947f1e7,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2011,naphtha combustion consumption by to the public,60.0549092913,TJ,CH4,3.0,kg/TJ,180.1647278739,kg -78beb0e6-f0e9-30a3-a15c-34c3d0a8d47e,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2011,naphtha combustion consumption by to the public,60.0549092913,TJ,N2O,0.6,kg/TJ,36.03294557478,kg -90c0039e-9eeb-3ac5-9fe3-1a7b575c1e85,SESCO,II.1.1,Tucuman,AR-T,annual,2011,naphtha combustion consumption by to the public,87.24610494599999,TJ,CO2,73300.0,kg/TJ,6395139.492541799,kg -9c09eafe-8b25-3cf9-8e45-483ee4d83c66,SESCO,II.1.1,Tucuman,AR-T,annual,2011,naphtha combustion consumption by to the public,87.24610494599999,TJ,CH4,3.0,kg/TJ,261.73831483799995,kg -f7e863d8-ef5a-396e-ac93-e05f0f64e3df,SESCO,II.1.1,Tucuman,AR-T,annual,2011,naphtha combustion consumption by to the public,87.24610494599999,TJ,N2O,0.6,kg/TJ,52.347662967599994,kg -790bca9b-44f0-3743-82b8-0cda82bbd08b,SESCO,II.1.1,Buenos Aires,AR-B,annual,2011,naphtha combustion consumption by to the public,1434.0538287074999,TJ,CO2,73300.0,kg/TJ,105116145.64425974,kg -c230ef0e-340c-3bd0-ba88-ed8a8ef9723c,SESCO,II.1.1,Buenos Aires,AR-B,annual,2011,naphtha combustion consumption by to the public,1434.0538287074999,TJ,CH4,3.0,kg/TJ,4302.1614861225,kg -80e2f313-5d29-3845-91a5-8d1e8b58c1a9,SESCO,II.1.1,Buenos Aires,AR-B,annual,2011,naphtha combustion consumption by to the public,1434.0538287074999,TJ,N2O,0.6,kg/TJ,860.4322972244998,kg -39d8ef34-8e49-3c5c-bdd5-8f37ec8e6763,SESCO,II.1.1,Capital Federal,AR-C,annual,2011,naphtha combustion consumption by to the public,249.45408824489996,TJ,CO2,73300.0,kg/TJ,18284984.668351166,kg -380ab357-4aad-318b-be5f-f6887612a6b3,SESCO,II.1.1,Capital Federal,AR-C,annual,2011,naphtha combustion consumption by to the public,249.45408824489996,TJ,CH4,3.0,kg/TJ,748.3622647346999,kg -5a4d77e0-5539-3f46-834d-97a4b7755391,SESCO,II.1.1,Capital Federal,AR-C,annual,2011,naphtha combustion consumption by to the public,249.45408824489996,TJ,N2O,0.6,kg/TJ,149.67245294693998,kg -8bf8f9b7-0881-3faf-aa8f-e6ef2d5291cf,SESCO,II.1.1,Catamarca,AR-K,annual,2011,naphtha combustion consumption by to the public,6.7756111268999994,TJ,CO2,73300.0,kg/TJ,496652.29560176993,kg -978cd108-6d49-3faa-a68a-1143c4823a0d,SESCO,II.1.1,Catamarca,AR-K,annual,2011,naphtha combustion consumption by to the public,6.7756111268999994,TJ,CH4,3.0,kg/TJ,20.3268333807,kg -ae226753-8c8c-3076-9aed-47b3983c2ebb,SESCO,II.1.1,Catamarca,AR-K,annual,2011,naphtha combustion consumption by to the public,6.7756111268999994,TJ,N2O,0.6,kg/TJ,4.065366676139999,kg -c3653177-9d43-318f-af73-4c23868d8b2d,SESCO,II.1.1,Chaco,AR-H,annual,2011,naphtha combustion consumption by to the public,9.1880103546,TJ,CO2,73300.0,kg/TJ,673481.1589921799,kg -8ced0356-3b06-377c-ae36-a2fb160bce32,SESCO,II.1.1,Chaco,AR-H,annual,2011,naphtha combustion consumption by to the public,9.1880103546,TJ,CH4,3.0,kg/TJ,27.564031063799998,kg -78faa18d-b1f6-3ec8-90a2-a77f00a5594d,SESCO,II.1.1,Chaco,AR-H,annual,2011,naphtha combustion consumption by to the public,9.1880103546,TJ,N2O,0.6,kg/TJ,5.512806212759999,kg -d89fb5fb-8a37-3d00-9c68-f83fa3e7dcfe,SESCO,II.1.1,Chubut,AR-U,annual,2011,naphtha combustion consumption by to the public,238.78900762639998,TJ,CO2,73300.0,kg/TJ,17503234.259015117,kg -f89888aa-3d8f-35c9-92ef-322ebb1971dc,SESCO,II.1.1,Chubut,AR-U,annual,2011,naphtha combustion consumption by to the public,238.78900762639998,TJ,CH4,3.0,kg/TJ,716.3670228791999,kg -a90ddd57-1437-3d0c-b0b6-285f0c68bd98,SESCO,II.1.1,Chubut,AR-U,annual,2011,naphtha combustion consumption by to the public,238.78900762639998,TJ,N2O,0.6,kg/TJ,143.27340457583998,kg -5136e1cf-b518-35ac-b4b8-6c7e89141940,SESCO,II.1.1,Corrientes,AR-W,annual,2011,naphtha combustion consumption by to the public,21.9290887662,TJ,CO2,73300.0,kg/TJ,1607402.20656246,kg -ca467daf-db23-3c8a-a4af-7e79d0472d84,SESCO,II.1.1,Corrientes,AR-W,annual,2011,naphtha combustion consumption by to the public,21.9290887662,TJ,CH4,3.0,kg/TJ,65.7872662986,kg -c0c99196-d3d7-32a0-a3ab-5b3332580476,SESCO,II.1.1,Corrientes,AR-W,annual,2011,naphtha combustion consumption by to the public,21.9290887662,TJ,N2O,0.6,kg/TJ,13.157453259719999,kg -cf23f766-ef4d-32d7-ae50-1e51aa8980d4,SESCO,II.1.1,Córdoba,AR-X,annual,2011,naphtha combustion consumption by to the public,200.84643152419997,TJ,CO2,73300.0,kg/TJ,14722043.430723857,kg -92bc24ac-a0f3-3ac4-a372-00884bca1dc2,SESCO,II.1.1,Córdoba,AR-X,annual,2011,naphtha combustion consumption by to the public,200.84643152419997,TJ,CH4,3.0,kg/TJ,602.5392945725999,kg -0842d3f1-d819-3ac8-9649-3cfe0ec1949a,SESCO,II.1.1,Córdoba,AR-X,annual,2011,naphtha combustion consumption by to the public,200.84643152419997,TJ,N2O,0.6,kg/TJ,120.50785891451997,kg -539b987b-844f-377e-8614-396eeaea869c,SESCO,II.1.1,Entre Rios,AR-E,annual,2011,naphtha combustion consumption by to the public,51.13264868249999,TJ,CO2,73300.0,kg/TJ,3748023.1484272494,kg -8bce0156-a1c2-3332-b2d9-a6f2da658d74,SESCO,II.1.1,Entre Rios,AR-E,annual,2011,naphtha combustion consumption by to the public,51.13264868249999,TJ,CH4,3.0,kg/TJ,153.39794604749997,kg -26d17ca5-44b7-3153-8d2d-c950d0d57938,SESCO,II.1.1,Entre Rios,AR-E,annual,2011,naphtha combustion consumption by to the public,51.13264868249999,TJ,N2O,0.6,kg/TJ,30.679589209499994,kg -b769d6b2-9a27-3da2-92cf-c5842f350aa7,SESCO,II.1.1,Jujuy,AR-Y,annual,2011,naphtha combustion consumption by to the public,1.3615896755999999,TJ,CO2,73300.0,kg/TJ,99804.52322147999,kg -232a1260-7967-32f9-a6fd-796776011bfa,SESCO,II.1.1,Jujuy,AR-Y,annual,2011,naphtha combustion consumption by to the public,1.3615896755999999,TJ,CH4,3.0,kg/TJ,4.0847690268,kg -602d6cc8-da2d-3e74-a993-5400fcfd58d9,SESCO,II.1.1,Jujuy,AR-Y,annual,2011,naphtha combustion consumption by to the public,1.3615896755999999,TJ,N2O,0.6,kg/TJ,0.81695380536,kg -4d97e88e-a9f7-3cde-a1ef-cc5a0e25a058,SESCO,II.1.1,La Pampa,AR-L,annual,2011,naphtha combustion consumption by to the public,51.631307227499995,TJ,CO2,73300.0,kg/TJ,3784574.8197757495,kg -0942a8ad-51c0-354e-b1a0-21149e764625,SESCO,II.1.1,La Pampa,AR-L,annual,2011,naphtha combustion consumption by to the public,51.631307227499995,TJ,CH4,3.0,kg/TJ,154.89392168249998,kg -a3780714-f10e-3987-9a73-78fb7eff039a,SESCO,II.1.1,La Pampa,AR-L,annual,2011,naphtha combustion consumption by to the public,51.631307227499995,TJ,N2O,0.6,kg/TJ,30.978784336499995,kg -63eb887e-3f80-3cae-b09e-6b6edc0f3e5f,SESCO,II.1.1,La Rioja,AR-F,annual,2011,naphtha combustion consumption by to the public,3.1875530224999995,TJ,CO2,73300.0,kg/TJ,233647.63654924996,kg -419d582c-614f-357b-a73e-6d3415037fbb,SESCO,II.1.1,La Rioja,AR-F,annual,2011,naphtha combustion consumption by to the public,3.1875530224999995,TJ,CH4,3.0,kg/TJ,9.562659067499998,kg -98f68ef5-d114-3f02-9aed-f97795a0deef,SESCO,II.1.1,La Rioja,AR-F,annual,2011,naphtha combustion consumption by to the public,3.1875530224999995,TJ,N2O,0.6,kg/TJ,1.9125318134999996,kg -b98367ba-116f-3145-83aa-6f7ddc5ef523,SESCO,II.1.1,Mendoza,AR-M,annual,2011,naphtha combustion consumption by to the public,18.4836772274,TJ,CO2,73300.0,kg/TJ,1354853.54076842,kg -25af291a-cd3b-3128-beda-68b2657a16e1,SESCO,II.1.1,Mendoza,AR-M,annual,2011,naphtha combustion consumption by to the public,18.4836772274,TJ,CH4,3.0,kg/TJ,55.451031682200004,kg -274c274b-da17-36fb-b6e3-03e1b4c53e16,SESCO,II.1.1,Mendoza,AR-M,annual,2011,naphtha combustion consumption by to the public,18.4836772274,TJ,N2O,0.6,kg/TJ,11.09020633644,kg -865e0c38-8513-38b9-ab0d-54acdb89ef9e,SESCO,II.1.1,Misiones,AR-N,annual,2011,naphtha combustion consumption by to the public,7.459193079799999,TJ,CO2,73300.0,kg/TJ,546758.8527493399,kg -999e9374-75b4-399b-b82e-64c49e7a8fe0,SESCO,II.1.1,Misiones,AR-N,annual,2011,naphtha combustion consumption by to the public,7.459193079799999,TJ,CH4,3.0,kg/TJ,22.377579239399996,kg -23e8639b-a893-3213-ac06-bac639c4db57,SESCO,II.1.1,Misiones,AR-N,annual,2011,naphtha combustion consumption by to the public,7.459193079799999,TJ,N2O,0.6,kg/TJ,4.475515847879999,kg -7280b7f7-d51b-3f08-a7c8-6e32fb41d6d6,SESCO,II.1.1,Neuquén,AR-Q,annual,2011,naphtha combustion consumption by to the public,141.3975014991,TJ,CO2,73300.0,kg/TJ,10364436.85988403,kg -45f6034d-bd98-36d2-be47-c05f18fb893e,SESCO,II.1.1,Neuquén,AR-Q,annual,2011,naphtha combustion consumption by to the public,141.3975014991,TJ,CH4,3.0,kg/TJ,424.1925044973,kg -948c8b25-6898-3816-b7e0-5d431ac34fba,SESCO,II.1.1,Neuquén,AR-Q,annual,2011,naphtha combustion consumption by to the public,141.3975014991,TJ,N2O,0.6,kg/TJ,84.83850089946,kg -a4e6eb6f-d4b3-3ff2-b72b-3df09bec929c,SESCO,II.1.1,Rio Negro,AR-R,annual,2011,naphtha combustion consumption by to the public,166.7518875638,TJ,CO2,73300.0,kg/TJ,12222913.358426541,kg -3d593515-3cc2-3314-8064-27ba5637f349,SESCO,II.1.1,Rio Negro,AR-R,annual,2011,naphtha combustion consumption by to the public,166.7518875638,TJ,CH4,3.0,kg/TJ,500.25566269140006,kg -8ce610c5-45a3-31b4-916e-f2fea9b96871,SESCO,II.1.1,Rio Negro,AR-R,annual,2011,naphtha combustion consumption by to the public,166.7518875638,TJ,N2O,0.6,kg/TJ,100.05113253828,kg -b7bb9db1-1a16-3057-89e1-1e9341cb34e8,SESCO,II.1.1,Salta,AR-A,annual,2011,naphtha combustion consumption by to the public,1.3915763477,TJ,CO2,73300.0,kg/TJ,102002.54628641,kg -1e540d9c-3e62-3af5-8721-65759ad0a481,SESCO,II.1.1,Salta,AR-A,annual,2011,naphtha combustion consumption by to the public,1.3915763477,TJ,CH4,3.0,kg/TJ,4.1747290431,kg -1d1dce97-2b5f-3512-a920-146e28b22e0a,SESCO,II.1.1,Salta,AR-A,annual,2011,naphtha combustion consumption by to the public,1.3915763477,TJ,N2O,0.6,kg/TJ,0.83494580862,kg -f10598f2-30bf-30b5-ab22-849a370c5e19,SESCO,II.1.1,San Juan,AR-J,annual,2011,naphtha combustion consumption by to the public,13.535137577499997,TJ,CO2,73300.0,kg/TJ,992125.5844307498,kg -ef104539-a906-39cc-944e-df534dc9d199,SESCO,II.1.1,San Juan,AR-J,annual,2011,naphtha combustion consumption by to the public,13.535137577499997,TJ,CH4,3.0,kg/TJ,40.60541273249999,kg -afb2ca53-65c9-38ee-a159-fd86e12581ab,SESCO,II.1.1,San Juan,AR-J,annual,2011,naphtha combustion consumption by to the public,13.535137577499997,TJ,N2O,0.6,kg/TJ,8.121082546499999,kg -46a37dd2-8476-3070-9a79-6ed0546a29c4,SESCO,II.1.1,San Luis,AR-D,annual,2011,naphtha combustion consumption by to the public,8.494320912,TJ,CO2,73300.0,kg/TJ,622633.7228495999,kg -112ac9c4-dac3-3f2f-ad84-fb4e555aa93c,SESCO,II.1.1,San Luis,AR-D,annual,2011,naphtha combustion consumption by to the public,8.494320912,TJ,CH4,3.0,kg/TJ,25.482962735999998,kg -02cc3911-8418-3c7d-9e92-bf10dfd3209d,SESCO,II.1.1,San Luis,AR-D,annual,2011,naphtha combustion consumption by to the public,8.494320912,TJ,N2O,0.6,kg/TJ,5.096592547199999,kg -dc0a3767-9a21-3845-ba30-0e7168a0b50c,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2011,naphtha combustion consumption by to the public,185.33734486189996,TJ,CO2,73300.0,kg/TJ,13585227.378377268,kg -e8117515-975e-3015-95ef-9c8519b5e85f,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2011,naphtha combustion consumption by to the public,185.33734486189996,TJ,CH4,3.0,kg/TJ,556.0120345856999,kg -b1df03af-b88b-3c4e-a346-619ab721d3c8,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2011,naphtha combustion consumption by to the public,185.33734486189996,TJ,N2O,0.6,kg/TJ,111.20240691713998,kg -d4d4e95f-91ec-3f25-82aa-7263c8c05433,SESCO,II.1.1,Santa Fe,AR-S,annual,2011,naphtha combustion consumption by to the public,297.82614979039994,TJ,CO2,73300.0,kg/TJ,21830656.779636316,kg -0a58f007-103b-3b03-92aa-05dbd1637fc3,SESCO,II.1.1,Santa Fe,AR-S,annual,2011,naphtha combustion consumption by to the public,297.82614979039994,TJ,CH4,3.0,kg/TJ,893.4784493711998,kg -e26c6270-bca7-370d-9da6-c7422ee3bb5f,SESCO,II.1.1,Santa Fe,AR-S,annual,2011,naphtha combustion consumption by to the public,297.82614979039994,TJ,N2O,0.6,kg/TJ,178.69568987423995,kg -3b9bd056-d147-3ceb-a477-54751be35c0d,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2011,naphtha combustion consumption by to the public,7.0343762950999995,TJ,CO2,73300.0,kg/TJ,515619.78243082995,kg -e1c06aab-0e40-30ef-8117-f89a5d4848ee,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2011,naphtha combustion consumption by to the public,7.0343762950999995,TJ,CH4,3.0,kg/TJ,21.1031288853,kg -4583fcdf-2129-368e-bb39-685030994fa4,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2011,naphtha combustion consumption by to the public,7.0343762950999995,TJ,N2O,0.6,kg/TJ,4.2206257770599995,kg -5311cf36-1dae-3aa5-8e0d-dc5a641db5e5,SESCO,II.1.1,Tucuman,AR-T,annual,2011,naphtha combustion consumption by to the public,9.4265941231,TJ,CO2,73300.0,kg/TJ,690969.3492232299,kg -249b5c83-96f7-3199-9fac-9646ffe4b871,SESCO,II.1.1,Tucuman,AR-T,annual,2011,naphtha combustion consumption by to the public,9.4265941231,TJ,CH4,3.0,kg/TJ,28.279782369299998,kg -2c983abe-e91e-3b13-b008-995945665e12,SESCO,II.1.1,Tucuman,AR-T,annual,2011,naphtha combustion consumption by to the public,9.4265941231,TJ,N2O,0.6,kg/TJ,5.655956473859999,kg -12be8481-6678-34fa-956c-4046ab428237,SESCO,I.3.1,La Pampa,AR-L,annual,2011,naphtha combustion consumption by petrochemical industries,0.5385176488999999,TJ,CO2,73300.0,kg/TJ,39473.34366436999,kg -d4a4a738-6d6d-394d-a766-b05bab2145a2,SESCO,I.3.1,La Pampa,AR-L,annual,2011,naphtha combustion consumption by petrochemical industries,0.5385176488999999,TJ,CH4,3.0,kg/TJ,1.6155529466999996,kg -d468dc47-b505-3538-96ae-14184c9761bb,SESCO,I.3.1,La Pampa,AR-L,annual,2011,naphtha combustion consumption by petrochemical industries,0.5385176488999999,TJ,N2O,0.6,kg/TJ,0.3231105893399999,kg -8045f628-dfa0-339f-99e8-52666a29ca67,SESCO,I.3.1,La Pampa,AR-L,annual,2011,naphtha combustion consumption by petrochemical industries,0.6710903045,TJ,CO2,73300.0,kg/TJ,49190.91931985,kg -94232fe2-7756-3d63-a2b0-3cbd5d6ee6b3,SESCO,I.3.1,La Pampa,AR-L,annual,2011,naphtha combustion consumption by petrochemical industries,0.6710903045,TJ,CH4,3.0,kg/TJ,2.0132709135,kg -cb3667e8-0578-3786-acdf-755519580478,SESCO,I.3.1,La Pampa,AR-L,annual,2011,naphtha combustion consumption by petrochemical industries,0.6710903045,TJ,N2O,0.6,kg/TJ,0.4026541827,kg -c7bcd63f-760a-3f98-9191-bc8bc2d68e36,SESCO,II.1.1,Buenos Aires,AR-B,annual,2011,naphtha combustion consumption by to the public,111.83047490999999,TJ,CO2,73300.0,kg/TJ,8197173.810903,kg -edae664d-ed8c-3b02-81a8-d7314e739530,SESCO,II.1.1,Buenos Aires,AR-B,annual,2011,naphtha combustion consumption by to the public,111.83047490999999,TJ,CH4,3.0,kg/TJ,335.49142472999995,kg -f47be2f3-cb79-3dde-8376-7b9a3b11dbb9,SESCO,II.1.1,Buenos Aires,AR-B,annual,2011,naphtha combustion consumption by to the public,111.83047490999999,TJ,N2O,0.6,kg/TJ,67.09828494599999,kg -75ddaf17-fa3b-38e8-bca1-20e7eac7b799,SESCO,II.1.1,Capital Federal,AR-C,annual,2011,naphtha combustion consumption by to the public,0.0671594,TJ,CO2,73300.0,kg/TJ,4922.784019999999,kg -0cde5c81-0918-3d73-93fa-4234b06c3d85,SESCO,II.1.1,Capital Federal,AR-C,annual,2011,naphtha combustion consumption by to the public,0.0671594,TJ,CH4,3.0,kg/TJ,0.2014782,kg -50073524-4243-3257-acbd-801e8187fa38,SESCO,II.1.1,Capital Federal,AR-C,annual,2011,naphtha combustion consumption by to the public,0.0671594,TJ,N2O,0.6,kg/TJ,0.040295639999999994,kg -2a605ac3-2889-3a39-bb71-95d8d61fe460,SESCO,II.1.1,Chaco,AR-H,annual,2011,naphtha combustion consumption by to the public,0.5372752,TJ,CO2,73300.0,kg/TJ,39382.27215999999,kg -c2b1c7cb-880e-33a9-ac12-8277308079ae,SESCO,II.1.1,Chaco,AR-H,annual,2011,naphtha combustion consumption by to the public,0.5372752,TJ,CH4,3.0,kg/TJ,1.6118256,kg -d2faac08-e588-3f3d-ae96-7af971ed6bbe,SESCO,II.1.1,Chaco,AR-H,annual,2011,naphtha combustion consumption by to the public,0.5372752,TJ,N2O,0.6,kg/TJ,0.32236511999999995,kg -66329981-6a9b-35d4-9c51-3fcb4f3d16a0,SESCO,II.1.1,Corrientes,AR-W,annual,2011,naphtha combustion consumption by to the public,1.1081301000000001,TJ,CO2,73300.0,kg/TJ,81225.93633000001,kg -b231c920-b1cb-38e8-ad17-9e750b37a87e,SESCO,II.1.1,Corrientes,AR-W,annual,2011,naphtha combustion consumption by to the public,1.1081301000000001,TJ,CH4,3.0,kg/TJ,3.3243903,kg -ddec6631-9a20-3828-a412-a0f260bec315,SESCO,II.1.1,Corrientes,AR-W,annual,2011,naphtha combustion consumption by to the public,1.1081301000000001,TJ,N2O,0.6,kg/TJ,0.66487806,kg -bc1a0201-db75-3cba-bc67-992f37179cbb,SESCO,II.1.1,Córdoba,AR-X,annual,2011,naphtha combustion consumption by to the public,44.6274213,TJ,CO2,73300.0,kg/TJ,3271189.98129,kg -8fb58569-c088-3160-88b9-c0b55071bad9,SESCO,II.1.1,Córdoba,AR-X,annual,2011,naphtha combustion consumption by to the public,44.6274213,TJ,CH4,3.0,kg/TJ,133.8822639,kg -b0ce1e9a-4b92-3105-b92f-b16ba52ea815,SESCO,II.1.1,Córdoba,AR-X,annual,2011,naphtha combustion consumption by to the public,44.6274213,TJ,N2O,0.6,kg/TJ,26.77645278,kg -b47a819e-3a11-3e6e-908d-67ad53902d00,SESCO,II.1.1,Entre Rios,AR-E,annual,2011,naphtha combustion consumption by to the public,10.376127299999998,TJ,CO2,73300.0,kg/TJ,760570.1310899999,kg -67797e5f-875b-39a9-997c-c64b18624675,SESCO,II.1.1,Entre Rios,AR-E,annual,2011,naphtha combustion consumption by to the public,10.376127299999998,TJ,CH4,3.0,kg/TJ,31.128381899999994,kg -87ffa79b-9c69-3c6f-a774-c9f430597bbd,SESCO,II.1.1,Entre Rios,AR-E,annual,2011,naphtha combustion consumption by to the public,10.376127299999998,TJ,N2O,0.6,kg/TJ,6.225676379999999,kg -cf9cab22-8b45-3668-8d2d-675014249f7f,SESCO,II.1.1,Santa Fe,AR-S,annual,2011,naphtha combustion consumption by to the public,30.053831499999998,TJ,CO2,73300.0,kg/TJ,2202945.84895,kg -06380af0-cfe1-35ae-9305-9de5d7f3e2a6,SESCO,II.1.1,Santa Fe,AR-S,annual,2011,naphtha combustion consumption by to the public,30.053831499999998,TJ,CH4,3.0,kg/TJ,90.16149449999999,kg -389a68fd-3752-343a-af9d-3c03ec93d54f,SESCO,II.1.1,Santa Fe,AR-S,annual,2011,naphtha combustion consumption by to the public,30.053831499999998,TJ,N2O,0.6,kg/TJ,18.032298899999997,kg -c7112dc9-5dd7-3dcc-89dc-e16dd3bc0971,SESCO,II.1.1,Buenos Aires,AR-B,annual,2011,naphtha combustion consumption by to the public,1204.96052292,TJ,CO2,73300.0,kg/TJ,88323606.330036,kg -7a00d48b-2876-3c47-855c-8e44c59b36b4,SESCO,II.1.1,Buenos Aires,AR-B,annual,2011,naphtha combustion consumption by to the public,1204.96052292,TJ,CH4,3.0,kg/TJ,3614.88156876,kg -c2dad380-1252-31f3-a4b6-5918c77eeb96,SESCO,II.1.1,Buenos Aires,AR-B,annual,2011,naphtha combustion consumption by to the public,1204.96052292,TJ,N2O,0.6,kg/TJ,722.9763137519999,kg -29fb1381-6e0b-301d-a296-02835888609c,SESCO,II.1.1,Capital Federal,AR-C,annual,2011,naphtha combustion consumption by to the public,38.14653919999999,TJ,CO2,73300.0,kg/TJ,2796141.3233599993,kg -e7297827-b345-3fdd-929c-7acedafa735b,SESCO,II.1.1,Capital Federal,AR-C,annual,2011,naphtha combustion consumption by to the public,38.14653919999999,TJ,CH4,3.0,kg/TJ,114.43961759999998,kg -4799745e-9a2b-3fa6-903a-906b656b584a,SESCO,II.1.1,Capital Federal,AR-C,annual,2011,naphtha combustion consumption by to the public,38.14653919999999,TJ,N2O,0.6,kg/TJ,22.887923519999994,kg -8b58942b-429d-371b-824e-082e0e93a7be,SESCO,II.1.1,Chaco,AR-H,annual,2011,naphtha combustion consumption by to the public,5.137694099999999,TJ,CO2,73300.0,kg/TJ,376592.9775299999,kg -2edeb93d-f6da-3106-a799-baa9d2335dc5,SESCO,II.1.1,Chaco,AR-H,annual,2011,naphtha combustion consumption by to the public,5.137694099999999,TJ,CH4,3.0,kg/TJ,15.413082299999997,kg -11ae919e-6d9e-3278-a954-4b446aae419f,SESCO,II.1.1,Chaco,AR-H,annual,2011,naphtha combustion consumption by to the public,5.137694099999999,TJ,N2O,0.6,kg/TJ,3.0826164599999992,kg -a126c80d-70f2-39b5-aa9a-f6e140f8dc5c,SESCO,II.1.1,Corrientes,AR-W,annual,2011,naphtha combustion consumption by to the public,3.022173,TJ,CO2,73300.0,kg/TJ,221525.2809,kg -f8b8befb-fd87-39cd-bb0a-f382ad1bb344,SESCO,II.1.1,Corrientes,AR-W,annual,2011,naphtha combustion consumption by to the public,3.022173,TJ,CH4,3.0,kg/TJ,9.066519,kg -e08b859d-6964-391b-b6d9-aaac3342ef24,SESCO,II.1.1,Corrientes,AR-W,annual,2011,naphtha combustion consumption by to the public,3.022173,TJ,N2O,0.6,kg/TJ,1.8133038,kg -ca487731-2958-353c-a416-6818d33a64d5,SESCO,II.1.1,Córdoba,AR-X,annual,2011,naphtha combustion consumption by to the public,425.62269749999996,TJ,CO2,73300.0,kg/TJ,31198143.726749998,kg -a8cc1791-576b-3145-b17a-6d965eb70bf3,SESCO,II.1.1,Córdoba,AR-X,annual,2011,naphtha combustion consumption by to the public,425.62269749999996,TJ,CH4,3.0,kg/TJ,1276.8680924999999,kg -bbcb94c4-f220-3d75-b97f-4bd3c6a00096,SESCO,II.1.1,Córdoba,AR-X,annual,2011,naphtha combustion consumption by to the public,425.62269749999996,TJ,N2O,0.6,kg/TJ,255.37361849999996,kg -ca85601c-9fb9-3c1c-9d9b-5fdfc0221145,SESCO,II.1.1,Entre Rios,AR-E,annual,2011,naphtha combustion consumption by to the public,150.19192418999998,TJ,CO2,73300.0,kg/TJ,11009068.043126998,kg -f5534fd0-9b20-3b65-b5e1-fa077e2a9498,SESCO,II.1.1,Entre Rios,AR-E,annual,2011,naphtha combustion consumption by to the public,150.19192418999998,TJ,CH4,3.0,kg/TJ,450.5757725699999,kg -db38797c-5c53-3139-87ea-80f71666ab66,SESCO,II.1.1,Entre Rios,AR-E,annual,2011,naphtha combustion consumption by to the public,150.19192418999998,TJ,N2O,0.6,kg/TJ,90.11515451399998,kg -93626840-a479-30e7-b739-04a38d6e88dd,SESCO,II.1.1,Santa Fe,AR-S,annual,2011,naphtha combustion consumption by to the public,193.3519126,TJ,CO2,73300.0,kg/TJ,14172695.19358,kg -6c646f37-d1ad-3fb0-8e22-290c89f47b08,SESCO,II.1.1,Santa Fe,AR-S,annual,2011,naphtha combustion consumption by to the public,193.3519126,TJ,CH4,3.0,kg/TJ,580.0557378,kg -548cadfe-ded2-39a5-8ee6-dc5b7ffaca0a,SESCO,II.1.1,Santa Fe,AR-S,annual,2011,naphtha combustion consumption by to the public,193.3519126,TJ,N2O,0.6,kg/TJ,116.01114755999998,kg -456f28ec-bc05-3c73-bcd6-1ef1199dc1f2,SESCO,II.1.1,Buenos Aires,AR-B,annual,2011,naphtha combustion consumption by to the public,143.34502336,TJ,CO2,73300.0,kg/TJ,10507190.212288,kg -6bce4620-11c1-38d5-9c32-27a21a93585f,SESCO,II.1.1,Buenos Aires,AR-B,annual,2011,naphtha combustion consumption by to the public,143.34502336,TJ,CH4,3.0,kg/TJ,430.03507007999997,kg -7e2f3c9d-874d-3666-8452-3608d81c7854,SESCO,II.1.1,Buenos Aires,AR-B,annual,2011,naphtha combustion consumption by to the public,143.34502336,TJ,N2O,0.6,kg/TJ,86.007014016,kg -217d515c-a023-38a0-8571-d2c2cd3caa43,SESCO,II.1.1,Capital Federal,AR-C,annual,2011,naphtha combustion consumption by to the public,2.0483617,TJ,CO2,73300.0,kg/TJ,150144.91261,kg -bfbb4b84-00d8-3df5-9cc8-93cb9e2d0806,SESCO,II.1.1,Capital Federal,AR-C,annual,2011,naphtha combustion consumption by to the public,2.0483617,TJ,CH4,3.0,kg/TJ,6.1450851,kg -94b08186-f169-3e51-8bf7-1cace4754abb,SESCO,II.1.1,Capital Federal,AR-C,annual,2011,naphtha combustion consumption by to the public,2.0483617,TJ,N2O,0.6,kg/TJ,1.22901702,kg -e194769d-7c58-34bf-a884-414e9a2b8d38,SESCO,II.1.1,Chaco,AR-H,annual,2011,naphtha combustion consumption by to the public,0.1343188,TJ,CO2,73300.0,kg/TJ,9845.568039999998,kg -c3afc7fc-e031-3556-9b3d-bc6402c315f5,SESCO,II.1.1,Chaco,AR-H,annual,2011,naphtha combustion consumption by to the public,0.1343188,TJ,CH4,3.0,kg/TJ,0.4029564,kg -0e595fe4-e0bf-32b1-84ce-1518565a019c,SESCO,II.1.1,Chaco,AR-H,annual,2011,naphtha combustion consumption by to the public,0.1343188,TJ,N2O,0.6,kg/TJ,0.08059127999999999,kg -b5a0a4e4-a6c8-3fb6-b002-f521d71d4309,SESCO,II.1.1,Corrientes,AR-W,annual,2011,naphtha combustion consumption by to the public,0.2686376,TJ,CO2,73300.0,kg/TJ,19691.136079999997,kg -8ec978ee-fb0f-3188-a5a9-13729aed4c0d,SESCO,II.1.1,Corrientes,AR-W,annual,2011,naphtha combustion consumption by to the public,0.2686376,TJ,CH4,3.0,kg/TJ,0.8059128,kg -4c59d0ab-cee4-388c-8273-582dc5708936,SESCO,II.1.1,Corrientes,AR-W,annual,2011,naphtha combustion consumption by to the public,0.2686376,TJ,N2O,0.6,kg/TJ,0.16118255999999997,kg -ef128869-3268-3759-b1e1-c1784a20b547,SESCO,II.1.1,Córdoba,AR-X,annual,2011,naphtha combustion consumption by to the public,49.46625606999999,TJ,CO2,73300.0,kg/TJ,3625876.5699309995,kg -d9fd2bcd-fb8b-3374-9f12-8e66b01a3925,SESCO,II.1.1,Córdoba,AR-X,annual,2011,naphtha combustion consumption by to the public,49.46625606999999,TJ,CH4,3.0,kg/TJ,148.39876821,kg -3100ca98-ff0b-3776-9b10-58e033593d34,SESCO,II.1.1,Córdoba,AR-X,annual,2011,naphtha combustion consumption by to the public,49.46625606999999,TJ,N2O,0.6,kg/TJ,29.679753641999994,kg -8e54f489-e850-35a7-8ae3-e0c195335a3e,SESCO,II.1.1,Entre Rios,AR-E,annual,2011,naphtha combustion consumption by to the public,23.875166699999998,TJ,CO2,73300.0,kg/TJ,1750049.7191099997,kg -fa52498e-8551-3d26-a096-1ad9fa8f477b,SESCO,II.1.1,Entre Rios,AR-E,annual,2011,naphtha combustion consumption by to the public,23.875166699999998,TJ,CH4,3.0,kg/TJ,71.6255001,kg -06e4a235-a47f-3ec5-8b40-7e87ee11cd5c,SESCO,II.1.1,Entre Rios,AR-E,annual,2011,naphtha combustion consumption by to the public,23.875166699999998,TJ,N2O,0.6,kg/TJ,14.325100019999999,kg -a224337e-adf6-3242-8b94-bd3054a02517,SESCO,II.1.1,Santa Fe,AR-S,annual,2011,naphtha combustion consumption by to the public,35.057206799999996,TJ,CO2,73300.0,kg/TJ,2569693.2584399995,kg -9457f064-7fb5-38d5-8035-cb56064282cb,SESCO,II.1.1,Santa Fe,AR-S,annual,2011,naphtha combustion consumption by to the public,35.057206799999996,TJ,CH4,3.0,kg/TJ,105.1716204,kg -c84a3ae1-cec1-3581-af3d-47e74967b87c,SESCO,II.1.1,Santa Fe,AR-S,annual,2011,naphtha combustion consumption by to the public,35.057206799999996,TJ,N2O,0.6,kg/TJ,21.034324079999998,kg -6a0fb599-b918-3af5-a1f5-4d4c9ae15885,SESCO,II.1.1,Catamarca,AR-K,annual,2011,naphtha combustion consumption by to the public,63.196659603,TJ,CO2,73300.0,kg/TJ,4632315.1488999,kg -97fb1247-781b-3ef3-83b6-2cbab7a45907,SESCO,II.1.1,Catamarca,AR-K,annual,2011,naphtha combustion consumption by to the public,63.196659603,TJ,CH4,3.0,kg/TJ,189.589978809,kg -4fdde8cb-af6d-3b2d-a56a-ccc03ab85d08,SESCO,II.1.1,Catamarca,AR-K,annual,2011,naphtha combustion consumption by to the public,63.196659603,TJ,N2O,0.6,kg/TJ,37.9179957618,kg -b0b0a85f-057a-3a7e-a622-92ca06c6345d,SESCO,II.1.1,Chaco,AR-H,annual,2011,naphtha combustion consumption by to the public,62.13251890999999,TJ,CO2,73300.0,kg/TJ,4554313.636102999,kg -305f789c-376d-3894-92fb-56b59b3f360c,SESCO,II.1.1,Chaco,AR-H,annual,2011,naphtha combustion consumption by to the public,62.13251890999999,TJ,CH4,3.0,kg/TJ,186.39755672999996,kg -1d7ef613-c3c5-3ae3-8bdb-5d192ad20c2c,SESCO,II.1.1,Chaco,AR-H,annual,2011,naphtha combustion consumption by to the public,62.13251890999999,TJ,N2O,0.6,kg/TJ,37.27951134599999,kg -86553f0a-6a7e-3c0a-8516-db7bc62c1acc,SESCO,II.1.1,Córdoba,AR-X,annual,2011,naphtha combustion consumption by to the public,5.102771212,TJ,CO2,73300.0,kg/TJ,374033.1298396,kg -496e6124-bc86-3d50-ad89-f6e62f5e0392,SESCO,II.1.1,Córdoba,AR-X,annual,2011,naphtha combustion consumption by to the public,5.102771212,TJ,CH4,3.0,kg/TJ,15.308313636000001,kg -139d3508-22a9-380b-8636-34aa4997a0cc,SESCO,II.1.1,Córdoba,AR-X,annual,2011,naphtha combustion consumption by to the public,5.102771212,TJ,N2O,0.6,kg/TJ,3.0616627272000003,kg -2b95dac0-f986-3efe-9e27-985b9cc6ee40,SESCO,II.1.1,Jujuy,AR-Y,annual,2011,naphtha combustion consumption by to the public,150.218452153,TJ,CO2,73300.0,kg/TJ,11011012.5428149,kg -60581cf9-7b80-34da-8078-449ef5d7be11,SESCO,II.1.1,Jujuy,AR-Y,annual,2011,naphtha combustion consumption by to the public,150.218452153,TJ,CH4,3.0,kg/TJ,450.65535645899996,kg -39bd9ab8-3ae1-3ddd-aead-ad99a7036f69,SESCO,II.1.1,Jujuy,AR-Y,annual,2011,naphtha combustion consumption by to the public,150.218452153,TJ,N2O,0.6,kg/TJ,90.13107129179998,kg -b4a8f4b8-a01c-3335-bcb2-ffc62439f32a,SESCO,II.1.1,La Rioja,AR-F,annual,2011,naphtha combustion consumption by to the public,50.55423835,TJ,CO2,73300.0,kg/TJ,3705625.671055,kg -eeab618c-6df6-33f6-90ab-14c72f9eb002,SESCO,II.1.1,La Rioja,AR-F,annual,2011,naphtha combustion consumption by to the public,50.55423835,TJ,CH4,3.0,kg/TJ,151.66271505,kg -3c47305a-8552-3f3d-85b4-773cea1631c2,SESCO,II.1.1,La Rioja,AR-F,annual,2011,naphtha combustion consumption by to the public,50.55423835,TJ,N2O,0.6,kg/TJ,30.33254301,kg -0fd69e79-46e1-38c1-8c1d-ddb714f6a6a1,SESCO,II.1.1,Salta,AR-A,annual,2011,naphtha combustion consumption by to the public,287.463051414,TJ,CO2,73300.0,kg/TJ,21071041.6686462,kg -8f6e1d51-4e3b-32f9-a613-96bd77bf0f9a,SESCO,II.1.1,Salta,AR-A,annual,2011,naphtha combustion consumption by to the public,287.463051414,TJ,CH4,3.0,kg/TJ,862.389154242,kg -4689f7be-f8b2-3d6c-bb6b-ecd86ff93c05,SESCO,II.1.1,Salta,AR-A,annual,2011,naphtha combustion consumption by to the public,287.463051414,TJ,N2O,0.6,kg/TJ,172.4778308484,kg -3aaf456a-20b2-3cf2-ab41-e48e59adfd34,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2011,naphtha combustion consumption by to the public,97.318335961,TJ,CO2,73300.0,kg/TJ,7133434.0259413,kg -d8b486b2-55cb-3d24-bf83-fa308309b3bc,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2011,naphtha combustion consumption by to the public,97.318335961,TJ,CH4,3.0,kg/TJ,291.955007883,kg -ca2056cb-d20f-34b3-a3c1-b6b7da0c2fb6,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2011,naphtha combustion consumption by to the public,97.318335961,TJ,N2O,0.6,kg/TJ,58.3910015766,kg -cbb4f395-06cf-3435-940e-db0bb0ab5b5e,SESCO,II.1.1,Tucuman,AR-T,annual,2011,naphtha combustion consumption by to the public,226.92422506599996,TJ,CO2,73300.0,kg/TJ,16633545.697337797,kg -6ed7cbe8-177d-30bf-a758-e87f14bb8172,SESCO,II.1.1,Tucuman,AR-T,annual,2011,naphtha combustion consumption by to the public,226.92422506599996,TJ,CH4,3.0,kg/TJ,680.7726751979999,kg -84f22d8a-cdc0-3764-a4ea-cfcf0e2ea4d7,SESCO,II.1.1,Tucuman,AR-T,annual,2011,naphtha combustion consumption by to the public,226.92422506599996,TJ,N2O,0.6,kg/TJ,136.15453503959998,kg -5aee4bfa-8966-31d4-88b2-3f9e2cb8ccbf,SESCO,II.1.1,Catamarca,AR-K,annual,2011,naphtha combustion consumption by to the public,196.051048886,TJ,CO2,73300.0,kg/TJ,14370541.883343799,kg -8ac86634-2d98-3c3c-ba06-b5fad34de51e,SESCO,II.1.1,Catamarca,AR-K,annual,2011,naphtha combustion consumption by to the public,196.051048886,TJ,CH4,3.0,kg/TJ,588.153146658,kg -79304d26-70a9-3ed6-8f2c-b945c338d8b9,SESCO,II.1.1,Catamarca,AR-K,annual,2011,naphtha combustion consumption by to the public,196.051048886,TJ,N2O,0.6,kg/TJ,117.63062933159999,kg -18b993a8-2964-3ae2-b779-c36cf24abcb0,SESCO,II.1.1,Chaco,AR-H,annual,2011,naphtha combustion consumption by to the public,75.29945507699999,TJ,CO2,73300.0,kg/TJ,5519450.057144099,kg -33fd755c-5208-3a31-bec2-e57c0015ab17,SESCO,II.1.1,Chaco,AR-H,annual,2011,naphtha combustion consumption by to the public,75.29945507699999,TJ,CH4,3.0,kg/TJ,225.89836523099996,kg -05256f47-a656-303e-9a54-e9ef401fcb81,SESCO,II.1.1,Chaco,AR-H,annual,2011,naphtha combustion consumption by to the public,75.29945507699999,TJ,N2O,0.6,kg/TJ,45.179673046199994,kg -3caad6c6-1edb-3f66-8817-8e3d1a462a3f,SESCO,II.1.1,Córdoba,AR-X,annual,2011,naphtha combustion consumption by to the public,23.686448785999996,TJ,CO2,73300.0,kg/TJ,1736216.6960137996,kg -ddd315ae-1699-3b16-a263-0679e93ad1d8,SESCO,II.1.1,Córdoba,AR-X,annual,2011,naphtha combustion consumption by to the public,23.686448785999996,TJ,CH4,3.0,kg/TJ,71.05934635799998,kg -44d9f62e-680a-3c07-9161-1606975a6a31,SESCO,II.1.1,Córdoba,AR-X,annual,2011,naphtha combustion consumption by to the public,23.686448785999996,TJ,N2O,0.6,kg/TJ,14.211869271599998,kg -ed9a46f8-856e-3583-9014-c397d094c2f8,SESCO,II.1.1,Jujuy,AR-Y,annual,2011,naphtha combustion consumption by to the public,264.357195641,TJ,CO2,73300.0,kg/TJ,19377382.4404853,kg -3434c4e2-c4a1-32b6-8443-9be890e61bb2,SESCO,II.1.1,Jujuy,AR-Y,annual,2011,naphtha combustion consumption by to the public,264.357195641,TJ,CH4,3.0,kg/TJ,793.0715869229999,kg -9795f366-065b-30c3-a02a-45f599c5d115,SESCO,II.1.1,Jujuy,AR-Y,annual,2011,naphtha combustion consumption by to the public,264.357195641,TJ,N2O,0.6,kg/TJ,158.61431738459999,kg -93a90884-3b8d-3254-9654-6f2b2641c416,SESCO,II.1.1,La Rioja,AR-F,annual,2011,naphtha combustion consumption by to the public,192.36131145,TJ,CO2,73300.0,kg/TJ,14100084.129284998,kg -2ec7d653-0793-3f71-86a0-0a45f9d8f131,SESCO,II.1.1,La Rioja,AR-F,annual,2011,naphtha combustion consumption by to the public,192.36131145,TJ,CH4,3.0,kg/TJ,577.0839343499999,kg -1d6876d5-6ba9-3137-af73-a5da842d0bb0,SESCO,II.1.1,La Rioja,AR-F,annual,2011,naphtha combustion consumption by to the public,192.36131145,TJ,N2O,0.6,kg/TJ,115.41678686999998,kg -5e69208d-daf1-3708-a526-ab0f2e59ee3f,SESCO,II.1.1,Salta,AR-A,annual,2011,naphtha combustion consumption by to the public,605.8221132039998,TJ,CO2,73300.0,kg/TJ,44406760.89785319,kg -aa2d9dc9-7c1b-3a45-93f3-f725da4f1634,SESCO,II.1.1,Salta,AR-A,annual,2011,naphtha combustion consumption by to the public,605.8221132039998,TJ,CH4,3.0,kg/TJ,1817.4663396119995,kg -d1f470a0-f11f-3f10-b518-eba1ddded4b9,SESCO,II.1.1,Salta,AR-A,annual,2011,naphtha combustion consumption by to the public,605.8221132039998,TJ,N2O,0.6,kg/TJ,363.49326792239987,kg -4be3b165-a596-39cc-a6fa-d3c751cefc2d,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2011,naphtha combustion consumption by to the public,192.99361720099998,TJ,CO2,73300.0,kg/TJ,14146432.140833298,kg -fdc57d07-6975-3415-9c81-9e3c8cf30e71,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2011,naphtha combustion consumption by to the public,192.99361720099998,TJ,CH4,3.0,kg/TJ,578.9808516029999,kg -304f22ba-9ac3-3922-a28c-f3eb4ae4d2fc,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2011,naphtha combustion consumption by to the public,192.99361720099998,TJ,N2O,0.6,kg/TJ,115.79617032059998,kg -1553f294-7ec5-3cfe-bb2b-ef2f729e7cc6,SESCO,II.1.1,Tucuman,AR-T,annual,2011,naphtha combustion consumption by to the public,1110.579739115,TJ,CO2,73300.0,kg/TJ,81405494.8771295,kg -99a009d1-3bd3-36bf-8b78-96e5cc1c4f9f,SESCO,II.1.1,Tucuman,AR-T,annual,2011,naphtha combustion consumption by to the public,1110.579739115,TJ,CH4,3.0,kg/TJ,3331.739217345,kg -da55af74-090d-39b2-9e59-259230c8109e,SESCO,II.1.1,Tucuman,AR-T,annual,2011,naphtha combustion consumption by to the public,1110.579739115,TJ,N2O,0.6,kg/TJ,666.3478434689999,kg -b9c24cae-2b3f-3fea-a99c-8445274f885a,SESCO,II.1.1,Catamarca,AR-K,annual,2011,naphtha combustion consumption by to the public,10.569882169,TJ,CO2,73300.0,kg/TJ,774772.3629876999,kg -41d36bc5-f769-3de7-a187-921820800434,SESCO,II.1.1,Catamarca,AR-K,annual,2011,naphtha combustion consumption by to the public,10.569882169,TJ,CH4,3.0,kg/TJ,31.709646507,kg -b8e92f1a-86e7-318a-a40c-d036bb6d0c4e,SESCO,II.1.1,Catamarca,AR-K,annual,2011,naphtha combustion consumption by to the public,10.569882169,TJ,N2O,0.6,kg/TJ,6.3419293013999996,kg -5a8b873f-c4a0-34ff-9d16-de09305d3c5c,SESCO,II.1.1,Chaco,AR-H,annual,2011,naphtha combustion consumption by to the public,2.2716667050000003,TJ,CO2,73300.0,kg/TJ,166513.1694765,kg -3e645c61-6890-309c-928a-847cfa1b896a,SESCO,II.1.1,Chaco,AR-H,annual,2011,naphtha combustion consumption by to the public,2.2716667050000003,TJ,CH4,3.0,kg/TJ,6.815000115000001,kg -f9b65207-c93a-329d-9d43-3399cb5faa35,SESCO,II.1.1,Chaco,AR-H,annual,2011,naphtha combustion consumption by to the public,2.2716667050000003,TJ,N2O,0.6,kg/TJ,1.3630000230000001,kg -eefffc3d-43f4-3d74-a68a-0f3e01a66e38,SESCO,II.1.1,Córdoba,AR-X,annual,2011,naphtha combustion consumption by to the public,3.8002146489999995,TJ,CO2,73300.0,kg/TJ,278555.73377169995,kg -fc6a1120-0269-3862-8c85-992eb59cb61b,SESCO,II.1.1,Córdoba,AR-X,annual,2011,naphtha combustion consumption by to the public,3.8002146489999995,TJ,CH4,3.0,kg/TJ,11.400643946999999,kg -a814e603-ccef-366a-8c2f-72558a29f858,SESCO,II.1.1,Córdoba,AR-X,annual,2011,naphtha combustion consumption by to the public,3.8002146489999995,TJ,N2O,0.6,kg/TJ,2.2801287893999995,kg -473de584-4f3d-3cf7-8e80-d5a770bb3c54,SESCO,II.1.1,Jujuy,AR-Y,annual,2011,naphtha combustion consumption by to the public,27.999761250999995,TJ,CO2,73300.0,kg/TJ,2052382.4996982997,kg -7fe5d47b-1361-3f43-b7a6-3c311bdbeadc,SESCO,II.1.1,Jujuy,AR-Y,annual,2011,naphtha combustion consumption by to the public,27.999761250999995,TJ,CH4,3.0,kg/TJ,83.99928375299999,kg -b31d5b98-61b8-383f-8ea3-0bfac3495791,SESCO,II.1.1,Jujuy,AR-Y,annual,2011,naphtha combustion consumption by to the public,27.999761250999995,TJ,N2O,0.6,kg/TJ,16.799856750599997,kg -87f01ad2-977b-3217-a672-701e65a5c8dc,SESCO,II.1.1,La Rioja,AR-F,annual,2011,naphtha combustion consumption by to the public,12.315690771999998,TJ,CO2,73300.0,kg/TJ,902740.1335875998,kg -5ba6fa34-65a3-349b-af89-a1aeb4a98c37,SESCO,II.1.1,La Rioja,AR-F,annual,2011,naphtha combustion consumption by to the public,12.315690771999998,TJ,CH4,3.0,kg/TJ,36.947072315999996,kg -2a3b9dec-866e-3488-90b6-f79117c3a74b,SESCO,II.1.1,La Rioja,AR-F,annual,2011,naphtha combustion consumption by to the public,12.315690771999998,TJ,N2O,0.6,kg/TJ,7.389414463199999,kg -0779a470-6bbe-3b4a-971d-ce603fd0cd68,SESCO,II.1.1,Salta,AR-A,annual,2011,naphtha combustion consumption by to the public,79.93580425599998,TJ,CO2,73300.0,kg/TJ,5859294.451964798,kg -8e2b83a8-3522-36e5-ba7c-6be2e5ad6bad,SESCO,II.1.1,Salta,AR-A,annual,2011,naphtha combustion consumption by to the public,79.93580425599998,TJ,CH4,3.0,kg/TJ,239.80741276799995,kg -0cf191bb-bf6b-3f2f-8502-ccfb499baef7,SESCO,II.1.1,Salta,AR-A,annual,2011,naphtha combustion consumption by to the public,79.93580425599998,TJ,N2O,0.6,kg/TJ,47.961482553599986,kg -b11c46a0-9bbb-3644-ae56-8ce443d092a9,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2011,naphtha combustion consumption by to the public,22.23311937,TJ,CO2,73300.0,kg/TJ,1629687.649821,kg -b94fee35-7822-35e5-abad-08441bfd16f8,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2011,naphtha combustion consumption by to the public,22.23311937,TJ,CH4,3.0,kg/TJ,66.69935811,kg -06b0c132-421a-3f9c-84d6-e156b0a432ba,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2011,naphtha combustion consumption by to the public,22.23311937,TJ,N2O,0.6,kg/TJ,13.339871622,kg -12b166f6-ab0f-3e8b-93ba-41a8ee6fe3d2,SESCO,II.1.1,Tucuman,AR-T,annual,2011,naphtha combustion consumption by to the public,123.28081681299999,TJ,CO2,73300.0,kg/TJ,9036483.872392898,kg -896b85f2-491e-3684-9570-5ebdf4bd6968,SESCO,II.1.1,Tucuman,AR-T,annual,2011,naphtha combustion consumption by to the public,123.28081681299999,TJ,CH4,3.0,kg/TJ,369.84245043899995,kg -2a0b575b-f0b6-3de4-959e-7e6da26b270e,SESCO,II.1.1,Tucuman,AR-T,annual,2011,naphtha combustion consumption by to the public,123.28081681299999,TJ,N2O,0.6,kg/TJ,73.96849008779999,kg -8352f034-6377-3176-84d5-87f7d66d6817,SESCO,II.5.1,Capital Federal,AR-C,annual,2011,naphtha combustion consumption by agriculture machines,1.007391,TJ,CO2,73300.0,kg/TJ,73841.7603,kg -0d6b4e15-3b7c-3bf3-ade1-2fe3448adc0d,SESCO,II.5.1,Capital Federal,AR-C,annual,2011,naphtha combustion consumption by agriculture machines,1.007391,TJ,CH4,3.0,kg/TJ,3.0221729999999996,kg -96836e58-0945-3937-aac5-67d27d05c7ff,SESCO,II.5.1,Capital Federal,AR-C,annual,2011,naphtha combustion consumption by agriculture machines,1.007391,TJ,N2O,0.6,kg/TJ,0.6044345999999999,kg -67f29cec-bc9d-332b-a96f-7689a8c110f1,SESCO,II.1.1,Buenos Aires,AR-B,annual,2011,naphtha combustion consumption by to the public,460.8142231,TJ,CO2,73300.0,kg/TJ,33777682.55323,kg -75091ff7-9592-30d5-8756-e4c66ab44726,SESCO,II.1.1,Buenos Aires,AR-B,annual,2011,naphtha combustion consumption by to the public,460.8142231,TJ,CH4,3.0,kg/TJ,1382.4426693,kg -14e1155d-9247-3ce8-b298-9beaf2cf8eaa,SESCO,II.1.1,Buenos Aires,AR-B,annual,2011,naphtha combustion consumption by to the public,460.8142231,TJ,N2O,0.6,kg/TJ,276.48853385999996,kg -581214f0-91a7-3460-878d-6414073a6091,SESCO,II.1.1,Capital Federal,AR-C,annual,2011,naphtha combustion consumption by to the public,13.096082999999998,TJ,CO2,73300.0,kg/TJ,959942.8838999999,kg -c20a4071-25fe-3506-ac9c-6ce3dac20700,SESCO,II.1.1,Capital Federal,AR-C,annual,2011,naphtha combustion consumption by to the public,13.096082999999998,TJ,CH4,3.0,kg/TJ,39.28824899999999,kg -4f34e963-3ea0-3dbc-8b14-d232b213d10c,SESCO,II.1.1,Capital Federal,AR-C,annual,2011,naphtha combustion consumption by to the public,13.096082999999998,TJ,N2O,0.6,kg/TJ,7.857649799999999,kg -382223b5-7a3f-34c3-93c3-e3fc26d16f25,SESCO,II.1.1,Chaco,AR-H,annual,2011,naphtha combustion consumption by to the public,21.0544719,TJ,CO2,73300.0,kg/TJ,1543292.79027,kg -907df678-29b7-32c7-9b3c-90551f0713e3,SESCO,II.1.1,Chaco,AR-H,annual,2011,naphtha combustion consumption by to the public,21.0544719,TJ,CH4,3.0,kg/TJ,63.1634157,kg -aac8673d-71cc-38b6-910d-5380edb31bbd,SESCO,II.1.1,Chaco,AR-H,annual,2011,naphtha combustion consumption by to the public,21.0544719,TJ,N2O,0.6,kg/TJ,12.63268314,kg -5a872beb-2d6a-3048-83ec-8498e14dcd00,SESCO,II.1.1,Corrientes,AR-W,annual,2011,naphtha combustion consumption by to the public,23.9423261,TJ,CO2,73300.0,kg/TJ,1754972.5031299999,kg -3224bb09-83b9-3df5-8a13-9b2a36e00590,SESCO,II.1.1,Corrientes,AR-W,annual,2011,naphtha combustion consumption by to the public,23.9423261,TJ,CH4,3.0,kg/TJ,71.8269783,kg -efd2dd42-4e2f-3f79-9c0d-863f9cd7ff5d,SESCO,II.1.1,Corrientes,AR-W,annual,2011,naphtha combustion consumption by to the public,23.9423261,TJ,N2O,0.6,kg/TJ,14.365395659999999,kg -5765377e-e210-3257-b62f-86902fe60800,SESCO,II.1.1,Córdoba,AR-X,annual,2011,naphtha combustion consumption by to the public,14.6071695,TJ,CO2,73300.0,kg/TJ,1070705.5243499998,kg -d16549e8-62e9-37be-a570-87c46f0105d8,SESCO,II.1.1,Córdoba,AR-X,annual,2011,naphtha combustion consumption by to the public,14.6071695,TJ,CH4,3.0,kg/TJ,43.8215085,kg -640a3d88-1c28-3947-99af-e6c0516dbd3a,SESCO,II.1.1,Córdoba,AR-X,annual,2011,naphtha combustion consumption by to the public,14.6071695,TJ,N2O,0.6,kg/TJ,8.764301699999999,kg -00064361-d969-325f-8538-441f8ae52fdd,SESCO,II.1.1,Entre Rios,AR-E,annual,2011,naphtha combustion consumption by to the public,43.217073899999995,TJ,CO2,73300.0,kg/TJ,3167811.5168699995,kg -f85b606a-4816-3e63-9b6e-c94bd86f97ee,SESCO,II.1.1,Entre Rios,AR-E,annual,2011,naphtha combustion consumption by to the public,43.217073899999995,TJ,CH4,3.0,kg/TJ,129.65122169999998,kg -41bc603f-0bb5-3e5b-a260-a0e94143679b,SESCO,II.1.1,Entre Rios,AR-E,annual,2011,naphtha combustion consumption by to the public,43.217073899999995,TJ,N2O,0.6,kg/TJ,25.930244339999998,kg -90b85466-af3b-376a-a900-d3e91d17f49c,SESCO,II.1.1,La Pampa,AR-L,annual,2011,naphtha combustion consumption by to the public,8.495664099999999,TJ,CO2,73300.0,kg/TJ,622732.1785299999,kg -49819bbc-89db-3dc8-a5d2-5f1128b0ed42,SESCO,II.1.1,La Pampa,AR-L,annual,2011,naphtha combustion consumption by to the public,8.495664099999999,TJ,CH4,3.0,kg/TJ,25.486992299999997,kg -6b3ab36f-cff2-39a1-ac18-5b68bb6faa30,SESCO,II.1.1,La Pampa,AR-L,annual,2011,naphtha combustion consumption by to the public,8.495664099999999,TJ,N2O,0.6,kg/TJ,5.097398459999999,kg -349416bd-ed9e-3f1b-90cb-238d1a949b63,SESCO,II.1.1,Mendoza,AR-M,annual,2011,naphtha combustion consumption by to the public,96.20584049999998,TJ,CO2,73300.0,kg/TJ,7051888.108649999,kg -460b798d-baec-3034-9233-df5ed8364b77,SESCO,II.1.1,Mendoza,AR-M,annual,2011,naphtha combustion consumption by to the public,96.20584049999998,TJ,CH4,3.0,kg/TJ,288.61752149999995,kg -7e95f788-cd97-3589-a256-984f139be358,SESCO,II.1.1,Mendoza,AR-M,annual,2011,naphtha combustion consumption by to the public,96.20584049999998,TJ,N2O,0.6,kg/TJ,57.72350429999999,kg -b9da563a-d311-3184-bb2e-a07326988990,SESCO,II.1.1,Misiones,AR-N,annual,2011,naphtha combustion consumption by to the public,40.765755799999994,TJ,CO2,73300.0,kg/TJ,2988129.9001399996,kg -3ba6b5af-8585-3208-94ca-e521d0c80551,SESCO,II.1.1,Misiones,AR-N,annual,2011,naphtha combustion consumption by to the public,40.765755799999994,TJ,CH4,3.0,kg/TJ,122.29726739999998,kg -bf5164e1-a1c9-3990-a143-fab42b896ba4,SESCO,II.1.1,Misiones,AR-N,annual,2011,naphtha combustion consumption by to the public,40.765755799999994,TJ,N2O,0.6,kg/TJ,24.459453479999997,kg -ef8d6be2-74c0-35b9-b332-784f3d2c6f65,SESCO,II.1.1,Neuquén,AR-Q,annual,2011,naphtha combustion consumption by to the public,25.889948699999998,TJ,CO2,73300.0,kg/TJ,1897733.2397099999,kg -57261d12-3972-3b84-b733-dec7b825bb35,SESCO,II.1.1,Neuquén,AR-Q,annual,2011,naphtha combustion consumption by to the public,25.889948699999998,TJ,CH4,3.0,kg/TJ,77.6698461,kg -ee6cc264-1b71-3f88-8315-0d3ef4c2b9aa,SESCO,II.1.1,Neuquén,AR-Q,annual,2011,naphtha combustion consumption by to the public,25.889948699999998,TJ,N2O,0.6,kg/TJ,15.533969219999998,kg -fb5cad49-137a-3aa8-8b29-69ac10f3cc1d,SESCO,II.1.1,Rio Negro,AR-R,annual,2011,naphtha combustion consumption by to the public,27.669672799999997,TJ,CO2,73300.0,kg/TJ,2028187.0162399998,kg -9b187e4d-0100-3e38-ba3d-c1b6d17db025,SESCO,II.1.1,Rio Negro,AR-R,annual,2011,naphtha combustion consumption by to the public,27.669672799999997,TJ,CH4,3.0,kg/TJ,83.00901839999999,kg -629d8bee-18e2-3f4e-83d9-1c3902256cf6,SESCO,II.1.1,Rio Negro,AR-R,annual,2011,naphtha combustion consumption by to the public,27.669672799999997,TJ,N2O,0.6,kg/TJ,16.601803679999996,kg -a731ebf0-f303-32a0-b4f8-44dc79c4ed8f,SESCO,II.1.1,Santa Fe,AR-S,annual,2011,naphtha combustion consumption by to the public,9.9060115,TJ,CO2,73300.0,kg/TJ,726110.64295,kg -3d35b5fd-82bd-3cea-99bc-8f57eab83bdf,SESCO,II.1.1,Santa Fe,AR-S,annual,2011,naphtha combustion consumption by to the public,9.9060115,TJ,CH4,3.0,kg/TJ,29.7180345,kg -18887134-9711-3cc6-b67d-f82f53cdfa62,SESCO,II.1.1,Santa Fe,AR-S,annual,2011,naphtha combustion consumption by to the public,9.9060115,TJ,N2O,0.6,kg/TJ,5.9436069,kg -b1f4c3e7-4529-33f0-b7a6-b32b17389323,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2011,naphtha combustion consumption by to the public,12.021532599999999,TJ,CO2,73300.0,kg/TJ,881178.3395799999,kg -50ec5053-7fe5-387b-ab94-4e1a4e14cb77,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2011,naphtha combustion consumption by to the public,12.021532599999999,TJ,CH4,3.0,kg/TJ,36.064597799999994,kg -8a4bb7c4-a769-3234-b794-c47f439e6b07,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2011,naphtha combustion consumption by to the public,12.021532599999999,TJ,N2O,0.6,kg/TJ,7.212919559999999,kg -e4b894b4-bfce-3f27-864e-45024c5f9067,SESCO,II.1.1,Tucuman,AR-T,annual,2011,naphtha combustion consumption by to the public,2.6192165999999997,TJ,CO2,73300.0,kg/TJ,191988.57677999997,kg -c6fad439-49ed-323a-937b-7498041bc4a9,SESCO,II.1.1,Tucuman,AR-T,annual,2011,naphtha combustion consumption by to the public,2.6192165999999997,TJ,CH4,3.0,kg/TJ,7.857649799999999,kg -ad9915ac-fffb-3965-87d5-aeb3bd79e3d9,SESCO,II.1.1,Tucuman,AR-T,annual,2011,naphtha combustion consumption by to the public,2.6192165999999997,TJ,N2O,0.6,kg/TJ,1.5715299599999997,kg -05b4b4a4-7b6a-37bb-b74b-f783afd71a8d,SESCO,II.1.1,Buenos Aires,AR-B,annual,2011,naphtha combustion consumption by to the public,12608.7072342,TJ,CO2,73300.0,kg/TJ,924218240.2668599,kg -120c2ae7-6393-3391-bfed-09c618a4598c,SESCO,II.1.1,Buenos Aires,AR-B,annual,2011,naphtha combustion consumption by to the public,12608.7072342,TJ,CH4,3.0,kg/TJ,37826.121702599994,kg -75dbce09-7eee-3ed0-90a2-ef733f5cd371,SESCO,II.1.1,Buenos Aires,AR-B,annual,2011,naphtha combustion consumption by to the public,12608.7072342,TJ,N2O,0.6,kg/TJ,7565.224340519999,kg -1c585714-b2e9-375f-a6cc-970dbd32c4fd,SESCO,II.1.1,Capital Federal,AR-C,annual,2011,naphtha combustion consumption by to the public,4045.4471980999992,TJ,CO2,73300.0,kg/TJ,296531279.6207299,kg -bf2f14f5-cfdf-3160-8a79-0e5ec5817f6b,SESCO,II.1.1,Capital Federal,AR-C,annual,2011,naphtha combustion consumption by to the public,4045.4471980999992,TJ,CH4,3.0,kg/TJ,12136.341594299998,kg -196616a1-7db4-33be-8b39-dd0ea24b5290,SESCO,II.1.1,Capital Federal,AR-C,annual,2011,naphtha combustion consumption by to the public,4045.4471980999992,TJ,N2O,0.6,kg/TJ,2427.2683188599995,kg -482d63b2-6f18-3fbc-aab6-e8f345b661ec,SESCO,II.1.1,Catamarca,AR-K,annual,2011,naphtha combustion consumption by to the public,62.92835779999999,TJ,CO2,73300.0,kg/TJ,4612648.626739999,kg -bb0f7eaf-808b-3746-b63a-569915664b94,SESCO,II.1.1,Catamarca,AR-K,annual,2011,naphtha combustion consumption by to the public,62.92835779999999,TJ,CH4,3.0,kg/TJ,188.7850734,kg -030195f2-2e60-3e08-854e-1053387c109e,SESCO,II.1.1,Catamarca,AR-K,annual,2011,naphtha combustion consumption by to the public,62.92835779999999,TJ,N2O,0.6,kg/TJ,37.75701468,kg -643725c0-af42-3f04-9bbe-ecb68fe93a3a,SESCO,II.1.1,Chaco,AR-H,annual,2011,naphtha combustion consumption by to the public,824.1465771,TJ,CO2,73300.0,kg/TJ,60409944.10143,kg -6059d39a-c9b2-3ece-9824-7abb3ae150b0,SESCO,II.1.1,Chaco,AR-H,annual,2011,naphtha combustion consumption by to the public,824.1465771,TJ,CH4,3.0,kg/TJ,2472.4397313,kg -42a0e61e-3387-321c-904c-ed5ec222762e,SESCO,II.1.1,Chaco,AR-H,annual,2011,naphtha combustion consumption by to the public,824.1465771,TJ,N2O,0.6,kg/TJ,494.48794625999994,kg -f8c7099a-b611-3bd2-b358-d545bf810f16,SESCO,II.1.1,Chubut,AR-U,annual,2011,naphtha combustion consumption by to the public,142.2771889,TJ,CO2,73300.0,kg/TJ,10428917.94637,kg -5a905025-a281-3ac8-ac85-ef00b071c442,SESCO,II.1.1,Chubut,AR-U,annual,2011,naphtha combustion consumption by to the public,142.2771889,TJ,CH4,3.0,kg/TJ,426.8315667,kg -46b27198-8243-3fcd-890b-6660e8da35fc,SESCO,II.1.1,Chubut,AR-U,annual,2011,naphtha combustion consumption by to the public,142.2771889,TJ,N2O,0.6,kg/TJ,85.36631333999999,kg -54b9468a-531e-36bb-a026-34af8e79268b,SESCO,II.1.1,Corrientes,AR-W,annual,2011,naphtha combustion consumption by to the public,859.0358854,TJ,CO2,73300.0,kg/TJ,62967330.39982,kg -b053d361-92b3-3808-b88f-bafcc59e2277,SESCO,II.1.1,Corrientes,AR-W,annual,2011,naphtha combustion consumption by to the public,859.0358854,TJ,CH4,3.0,kg/TJ,2577.1076562,kg -83a3f5d0-db24-362e-8321-9611aeb34d30,SESCO,II.1.1,Corrientes,AR-W,annual,2011,naphtha combustion consumption by to the public,859.0358854,TJ,N2O,0.6,kg/TJ,515.4215312399999,kg -17b88f31-5441-38f0-8aa1-59556cebbae5,SESCO,II.1.1,Córdoba,AR-X,annual,2011,naphtha combustion consumption by to the public,3020.9641307999996,TJ,CO2,73300.0,kg/TJ,221436670.78763998,kg -320da1a9-e3db-3e3f-9bae-2076ad9a0cca,SESCO,II.1.1,Córdoba,AR-X,annual,2011,naphtha combustion consumption by to the public,3020.9641307999996,TJ,CH4,3.0,kg/TJ,9062.8923924,kg -e004eb3a-bd5a-32c2-babf-9670461e4fa7,SESCO,II.1.1,Córdoba,AR-X,annual,2011,naphtha combustion consumption by to the public,3020.9641307999996,TJ,N2O,0.6,kg/TJ,1812.5784784799996,kg -362250b6-e111-36c8-a98d-677ea177dfb4,SESCO,II.1.1,Entre Rios,AR-E,annual,2011,naphtha combustion consumption by to the public,1083.0796437999998,TJ,CO2,73300.0,kg/TJ,79389737.89053999,kg -c1a605f7-f78a-3f0b-aaf5-0e41499045e3,SESCO,II.1.1,Entre Rios,AR-E,annual,2011,naphtha combustion consumption by to the public,1083.0796437999998,TJ,CH4,3.0,kg/TJ,3249.2389313999993,kg -ff44de4d-8510-3b14-8f4c-bd0500c6a3d9,SESCO,II.1.1,Entre Rios,AR-E,annual,2011,naphtha combustion consumption by to the public,1083.0796437999998,TJ,N2O,0.6,kg/TJ,649.8477862799998,kg -c387c1d8-c708-3006-b4cf-1e7d9195c785,SESCO,II.1.1,Formosa,AR-P,annual,2011,naphtha combustion consumption by to the public,342.94947609999997,TJ,CO2,73300.0,kg/TJ,25138196.59813,kg -8738019c-47ac-3982-a35a-7587658e6a74,SESCO,II.1.1,Formosa,AR-P,annual,2011,naphtha combustion consumption by to the public,342.94947609999997,TJ,CH4,3.0,kg/TJ,1028.8484282999998,kg -47023759-01ce-392d-85b9-d42273e052ac,SESCO,II.1.1,Formosa,AR-P,annual,2011,naphtha combustion consumption by to the public,342.94947609999997,TJ,N2O,0.6,kg/TJ,205.76968565999996,kg -3b0806c9-2bfd-36aa-a9c8-e5e789358cd4,SESCO,II.1.1,Jujuy,AR-Y,annual,2011,naphtha combustion consumption by to the public,236.06529099999997,TJ,CO2,73300.0,kg/TJ,17303585.8303,kg -b69eabe8-4407-3e5e-b46a-5307b1e6574b,SESCO,II.1.1,Jujuy,AR-Y,annual,2011,naphtha combustion consumption by to the public,236.06529099999997,TJ,CH4,3.0,kg/TJ,708.1958729999999,kg -01f86c62-25aa-3d46-b0c5-d5c9855a6b87,SESCO,II.1.1,Jujuy,AR-Y,annual,2011,naphtha combustion consumption by to the public,236.06529099999997,TJ,N2O,0.6,kg/TJ,141.6391746,kg -5f12c3f4-acf7-366f-ab5e-5d46f28227a0,SESCO,II.1.1,La Pampa,AR-L,annual,2011,naphtha combustion consumption by to the public,290.66588319999994,TJ,CO2,73300.0,kg/TJ,21305809.238559995,kg -4ad1b62f-c87d-3dcf-9496-8f4a72b07993,SESCO,II.1.1,La Pampa,AR-L,annual,2011,naphtha combustion consumption by to the public,290.66588319999994,TJ,CH4,3.0,kg/TJ,871.9976495999998,kg -9ce216d6-9589-3f37-bbaf-98634ed36759,SESCO,II.1.1,La Pampa,AR-L,annual,2011,naphtha combustion consumption by to the public,290.66588319999994,TJ,N2O,0.6,kg/TJ,174.39952991999996,kg -db08a49c-6d83-3a49-a82b-d65d8cd9d1c4,SESCO,II.1.1,La Rioja,AR-F,annual,2011,naphtha combustion consumption by to the public,290.1621877,TJ,CO2,73300.0,kg/TJ,21268888.35841,kg -bebbb6ba-5c13-36a7-bb5e-198ac3400438,SESCO,II.1.1,La Rioja,AR-F,annual,2011,naphtha combustion consumption by to the public,290.1621877,TJ,CH4,3.0,kg/TJ,870.4865631,kg -cb279dd4-7053-3ea6-a218-7831288caa0b,SESCO,II.1.1,La Rioja,AR-F,annual,2011,naphtha combustion consumption by to the public,290.1621877,TJ,N2O,0.6,kg/TJ,174.09731262,kg -20492050-0498-3916-828e-07cf3a1f2757,SESCO,II.1.1,Mendoza,AR-M,annual,2011,naphtha combustion consumption by to the public,737.4773713999999,TJ,CO2,73300.0,kg/TJ,54057091.32361999,kg -347455c9-8d4e-3ade-9900-24453ffea2c9,SESCO,II.1.1,Mendoza,AR-M,annual,2011,naphtha combustion consumption by to the public,737.4773713999999,TJ,CH4,3.0,kg/TJ,2212.4321142,kg -9f826f12-3cab-3571-9bf8-e566a5217969,SESCO,II.1.1,Mendoza,AR-M,annual,2011,naphtha combustion consumption by to the public,737.4773713999999,TJ,N2O,0.6,kg/TJ,442.48642283999993,kg -cec53ff1-72db-3b24-b347-b84fdbf3ee69,SESCO,II.1.1,Misiones,AR-N,annual,2011,naphtha combustion consumption by to the public,1035.4300494999998,TJ,CO2,73300.0,kg/TJ,75897022.62834999,kg -38452079-3187-3f5e-a9ec-fb67a52ee359,SESCO,II.1.1,Misiones,AR-N,annual,2011,naphtha combustion consumption by to the public,1035.4300494999998,TJ,CH4,3.0,kg/TJ,3106.2901484999993,kg -fa6d4d51-78ef-307e-a832-2932e5872569,SESCO,II.1.1,Misiones,AR-N,annual,2011,naphtha combustion consumption by to the public,1035.4300494999998,TJ,N2O,0.6,kg/TJ,621.2580296999998,kg -3c5456b2-7372-333c-b579-73ffb7ac1bc6,SESCO,II.1.1,Neuquén,AR-Q,annual,2011,naphtha combustion consumption by to the public,240.36349259999997,TJ,CO2,73300.0,kg/TJ,17618644.007579997,kg -f215f0dc-cf56-36c2-8cc9-3238a794530a,SESCO,II.1.1,Neuquén,AR-Q,annual,2011,naphtha combustion consumption by to the public,240.36349259999997,TJ,CH4,3.0,kg/TJ,721.0904777999999,kg -3652c426-0b03-374a-8aa5-89fc58cf4691,SESCO,II.1.1,Neuquén,AR-Q,annual,2011,naphtha combustion consumption by to the public,240.36349259999997,TJ,N2O,0.6,kg/TJ,144.21809555999997,kg -6ef0f929-718e-340d-9dd5-f3f0e240b31a,SESCO,II.1.1,Rio Negro,AR-R,annual,2011,naphtha combustion consumption by to the public,208.7985746,TJ,CO2,73300.0,kg/TJ,15304935.51818,kg -d6863687-c414-32d3-84fd-76f705f91b98,SESCO,II.1.1,Rio Negro,AR-R,annual,2011,naphtha combustion consumption by to the public,208.7985746,TJ,CH4,3.0,kg/TJ,626.3957238,kg -344b8a19-786f-3540-ad13-96eac3047aa6,SESCO,II.1.1,Rio Negro,AR-R,annual,2011,naphtha combustion consumption by to the public,208.7985746,TJ,N2O,0.6,kg/TJ,125.27914476,kg -f5919212-e26f-3102-abe9-123a53efdd31,SESCO,II.1.1,Salta,AR-A,annual,2011,naphtha combustion consumption by to the public,327.70429229999996,TJ,CO2,73300.0,kg/TJ,24020724.625589997,kg -a91405d1-b12f-3036-844b-33d7c716db44,SESCO,II.1.1,Salta,AR-A,annual,2011,naphtha combustion consumption by to the public,327.70429229999996,TJ,CH4,3.0,kg/TJ,983.1128769,kg -95677c3d-b447-3886-8a66-c207667271c3,SESCO,II.1.1,Salta,AR-A,annual,2011,naphtha combustion consumption by to the public,327.70429229999996,TJ,N2O,0.6,kg/TJ,196.62257537999997,kg -4ea9ac89-ba46-3bda-ac35-be142050593f,SESCO,II.1.1,San Juan,AR-J,annual,2011,naphtha combustion consumption by to the public,249.7322289,TJ,CO2,73300.0,kg/TJ,18305372.37837,kg -5fb4060a-3180-31ea-86bf-190b47275f41,SESCO,II.1.1,San Juan,AR-J,annual,2011,naphtha combustion consumption by to the public,249.7322289,TJ,CH4,3.0,kg/TJ,749.1966867,kg -7b906aa9-a378-3cde-93c0-80a7fd0c4243,SESCO,II.1.1,San Juan,AR-J,annual,2011,naphtha combustion consumption by to the public,249.7322289,TJ,N2O,0.6,kg/TJ,149.83933734,kg -443ce675-20f1-3075-9a42-c7dcbbb1273c,SESCO,II.1.1,San Luis,AR-D,annual,2011,naphtha combustion consumption by to the public,5.8428678,TJ,CO2,73300.0,kg/TJ,428282.20973999996,kg -3d8127e6-0822-3784-8775-89bda13eb7f3,SESCO,II.1.1,San Luis,AR-D,annual,2011,naphtha combustion consumption by to the public,5.8428678,TJ,CH4,3.0,kg/TJ,17.528603399999998,kg -c348667a-0fa6-3ed5-90c5-2ecf68874632,SESCO,II.1.1,San Luis,AR-D,annual,2011,naphtha combustion consumption by to the public,5.8428678,TJ,N2O,0.6,kg/TJ,3.5057206799999996,kg -3c232ed6-a85e-38a6-9f7a-efba3780b15b,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2011,naphtha combustion consumption by to the public,0.8394925,TJ,CO2,73300.0,kg/TJ,61534.80025,kg -e8a347c9-f175-33f2-893c-1e8fd36e33df,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2011,naphtha combustion consumption by to the public,0.8394925,TJ,CH4,3.0,kg/TJ,2.5184775,kg -f24f2db1-6e7c-3bc2-a39b-994e558f4156,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2011,naphtha combustion consumption by to the public,0.8394925,TJ,N2O,0.6,kg/TJ,0.5036955,kg -a3e0cfd3-4c12-374f-81d0-2a185d07a50d,SESCO,II.1.1,Santa Fe,AR-S,annual,2011,naphtha combustion consumption by to the public,3314.4171291,TJ,CO2,73300.0,kg/TJ,242946775.56302997,kg -c3dcf65c-8e9b-3857-99d3-575d0fcefb0b,SESCO,II.1.1,Santa Fe,AR-S,annual,2011,naphtha combustion consumption by to the public,3314.4171291,TJ,CH4,3.0,kg/TJ,9943.251387299999,kg -77ac9df3-4d4d-3f01-a27c-5eb6dc4f9e6a,SESCO,II.1.1,Santa Fe,AR-S,annual,2011,naphtha combustion consumption by to the public,3314.4171291,TJ,N2O,0.6,kg/TJ,1988.6502774599999,kg -15cf8c52-8468-386d-943f-c4d194868bf7,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2011,naphtha combustion consumption by to the public,343.8897077,TJ,CO2,73300.0,kg/TJ,25207115.57441,kg -4fc90202-e0dd-34cb-8239-84e9711de49e,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2011,naphtha combustion consumption by to the public,343.8897077,TJ,CH4,3.0,kg/TJ,1031.6691231,kg -2bc669af-169a-33df-bde5-dbdb41259e1f,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2011,naphtha combustion consumption by to the public,343.8897077,TJ,N2O,0.6,kg/TJ,206.33382461999997,kg -5c0dfc4d-1fa7-3dad-bc01-287ad2e4ca7a,SESCO,II.1.1,Tucuman,AR-T,annual,2011,naphtha combustion consumption by to the public,757.1550755999999,TJ,CO2,73300.0,kg/TJ,55499467.04148,kg -8be70b00-8c66-3015-9a83-c3eb192090aa,SESCO,II.1.1,Tucuman,AR-T,annual,2011,naphtha combustion consumption by to the public,757.1550755999999,TJ,CH4,3.0,kg/TJ,2271.4652268,kg -c075b8ba-15c7-3132-8899-3f595203b0c5,SESCO,II.1.1,Tucuman,AR-T,annual,2011,naphtha combustion consumption by to the public,757.1550755999999,TJ,N2O,0.6,kg/TJ,454.29304535999995,kg -85d903e8-d1bc-30be-b493-e9b3e9d52654,SESCO,II.1.1,Buenos Aires,AR-B,annual,2011,naphtha combustion consumption by to the public,4747.3636672,TJ,CO2,73300.0,kg/TJ,347981756.80576,kg -d0d16cee-ab0c-311c-9733-97739b0730f3,SESCO,II.1.1,Buenos Aires,AR-B,annual,2011,naphtha combustion consumption by to the public,4747.3636672,TJ,CH4,3.0,kg/TJ,14242.091001600002,kg -862220b3-da67-3dbc-838a-f0d8cc3fe906,SESCO,II.1.1,Buenos Aires,AR-B,annual,2011,naphtha combustion consumption by to the public,4747.3636672,TJ,N2O,0.6,kg/TJ,2848.41820032,kg -3479704d-f2ed-3cc9-88eb-8e75223d0087,SESCO,II.1.1,Capital Federal,AR-C,annual,2011,naphtha combustion consumption by to the public,2329.1551514,TJ,CO2,73300.0,kg/TJ,170727072.59761998,kg -94609bb9-ed28-3df5-ab03-5d69f26c085e,SESCO,II.1.1,Capital Federal,AR-C,annual,2011,naphtha combustion consumption by to the public,2329.1551514,TJ,CH4,3.0,kg/TJ,6987.465454199999,kg -6c6e86db-da7a-3a80-9a7a-6f41f3267326,SESCO,II.1.1,Capital Federal,AR-C,annual,2011,naphtha combustion consumption by to the public,2329.1551514,TJ,N2O,0.6,kg/TJ,1397.49309084,kg -122b9db0-70be-3786-b353-40f13f8cb234,SESCO,II.1.1,Catamarca,AR-K,annual,2011,naphtha combustion consumption by to the public,29.214339,TJ,CO2,73300.0,kg/TJ,2141411.0486999997,kg -11c2495a-4440-328c-af2c-e2ab5a3cf07b,SESCO,II.1.1,Catamarca,AR-K,annual,2011,naphtha combustion consumption by to the public,29.214339,TJ,CH4,3.0,kg/TJ,87.643017,kg -44a828fb-2f0c-3341-a9b8-9bf7c1166b08,SESCO,II.1.1,Catamarca,AR-K,annual,2011,naphtha combustion consumption by to the public,29.214339,TJ,N2O,0.6,kg/TJ,17.528603399999998,kg -d94bf043-86d1-369a-84b3-889a47b70cda,SESCO,II.1.1,Chaco,AR-H,annual,2011,naphtha combustion consumption by to the public,200.4036496,TJ,CO2,73300.0,kg/TJ,14689587.51568,kg -b01bdd7a-2f7c-3c06-9626-9822f4901b41,SESCO,II.1.1,Chaco,AR-H,annual,2011,naphtha combustion consumption by to the public,200.4036496,TJ,CH4,3.0,kg/TJ,601.2109488,kg -346439f8-ada4-390d-aafb-cc72a3caf2e7,SESCO,II.1.1,Chaco,AR-H,annual,2011,naphtha combustion consumption by to the public,200.4036496,TJ,N2O,0.6,kg/TJ,120.24218975999999,kg -3dfa2d4d-5cec-3f5f-82da-0523a311a93d,SESCO,II.1.1,Chubut,AR-U,annual,2011,naphtha combustion consumption by to the public,28.576324699999997,TJ,CO2,73300.0,kg/TJ,2094644.6005099998,kg -669f6fa1-6547-3257-9bf1-9fc34162d4c6,SESCO,II.1.1,Chubut,AR-U,annual,2011,naphtha combustion consumption by to the public,28.576324699999997,TJ,CH4,3.0,kg/TJ,85.72897409999999,kg -e2a19662-4580-3bdb-9eec-0c5544159f71,SESCO,II.1.1,Chubut,AR-U,annual,2011,naphtha combustion consumption by to the public,28.576324699999997,TJ,N2O,0.6,kg/TJ,17.14579482,kg -e0ee69a5-fe9a-39f9-84f6-edf88280c353,SESCO,II.1.1,Corrientes,AR-W,annual,2011,naphtha combustion consumption by to the public,187.20682749999997,TJ,CO2,73300.0,kg/TJ,13722260.455749998,kg -aa831cfb-9765-314d-9ac5-dffbc6786f25,SESCO,II.1.1,Corrientes,AR-W,annual,2011,naphtha combustion consumption by to the public,187.20682749999997,TJ,CH4,3.0,kg/TJ,561.6204825,kg -907b8b94-d962-322b-a75d-74384ed9ad31,SESCO,II.1.1,Corrientes,AR-W,annual,2011,naphtha combustion consumption by to the public,187.20682749999997,TJ,N2O,0.6,kg/TJ,112.32409649999998,kg -02057a26-d51c-344d-9d2b-618f05e476d7,SESCO,II.1.1,Córdoba,AR-X,annual,2011,naphtha combustion consumption by to the public,860.0768561,TJ,CO2,73300.0,kg/TJ,63043633.55213,kg -63ec4e02-7d4d-3815-936c-a407237cb145,SESCO,II.1.1,Córdoba,AR-X,annual,2011,naphtha combustion consumption by to the public,860.0768561,TJ,CH4,3.0,kg/TJ,2580.2305683,kg -f7e6b727-6867-3266-9235-c4143acf358f,SESCO,II.1.1,Córdoba,AR-X,annual,2011,naphtha combustion consumption by to the public,860.0768561,TJ,N2O,0.6,kg/TJ,516.04611366,kg -8db3fcb5-2711-3573-bd89-40ebbf98a3c7,SESCO,II.1.1,Entre Rios,AR-E,annual,2011,naphtha combustion consumption by to the public,306.5155016,TJ,CO2,73300.0,kg/TJ,22467586.26728,kg -97e35318-e2b7-3e56-80a5-4ddfc536ec8c,SESCO,II.1.1,Entre Rios,AR-E,annual,2011,naphtha combustion consumption by to the public,306.5155016,TJ,CH4,3.0,kg/TJ,919.5465048,kg -27db26ae-a458-3331-b928-d80dec02c481,SESCO,II.1.1,Entre Rios,AR-E,annual,2011,naphtha combustion consumption by to the public,306.5155016,TJ,N2O,0.6,kg/TJ,183.90930096,kg -985c66c8-1add-377d-b36a-b134da51979f,SESCO,II.1.1,Formosa,AR-P,annual,2011,naphtha combustion consumption by to the public,111.9882995,TJ,CO2,73300.0,kg/TJ,8208742.3533499995,kg -f8bcf780-5645-39f8-9c5b-e2a96c3689a5,SESCO,II.1.1,Formosa,AR-P,annual,2011,naphtha combustion consumption by to the public,111.9882995,TJ,CH4,3.0,kg/TJ,335.9648985,kg -46c15e38-853d-3e0d-aada-a27d26401a69,SESCO,II.1.1,Formosa,AR-P,annual,2011,naphtha combustion consumption by to the public,111.9882995,TJ,N2O,0.6,kg/TJ,67.1929797,kg -5c89fb34-30ff-3f20-aeab-39d36fd92a38,SESCO,II.1.1,Jujuy,AR-Y,annual,2011,naphtha combustion consumption by to the public,35.3258444,TJ,CO2,73300.0,kg/TJ,2589384.39452,kg -c3ddb5cc-0468-36d7-9237-ee389ee9bacf,SESCO,II.1.1,Jujuy,AR-Y,annual,2011,naphtha combustion consumption by to the public,35.3258444,TJ,CH4,3.0,kg/TJ,105.97753320000001,kg -c75473b4-e0ee-3fff-b959-7440bf97ceda,SESCO,II.1.1,Jujuy,AR-Y,annual,2011,naphtha combustion consumption by to the public,35.3258444,TJ,N2O,0.6,kg/TJ,21.19550664,kg -0eb96a94-78a0-3a78-a4be-06fb6dc22045,SESCO,II.1.1,La Pampa,AR-L,annual,2011,naphtha combustion consumption by to the public,104.8358234,TJ,CO2,73300.0,kg/TJ,7684465.855219999,kg -8de191f8-da7f-370f-96d4-64220c0b44e4,SESCO,II.1.1,La Pampa,AR-L,annual,2011,naphtha combustion consumption by to the public,104.8358234,TJ,CH4,3.0,kg/TJ,314.5074702,kg -2477adb5-b1cf-3ca5-bc92-c055a3ffc836,SESCO,II.1.1,La Pampa,AR-L,annual,2011,naphtha combustion consumption by to the public,104.8358234,TJ,N2O,0.6,kg/TJ,62.901494039999996,kg -7383a20b-1b79-3657-b561-4f4e9193fe66,SESCO,II.1.1,La Rioja,AR-F,annual,2011,naphtha combustion consumption by to the public,57.79066369999999,TJ,CO2,73300.0,kg/TJ,4236055.6492099995,kg -cd74271f-abd6-3c79-96b9-2f5f0589bdf4,SESCO,II.1.1,La Rioja,AR-F,annual,2011,naphtha combustion consumption by to the public,57.79066369999999,TJ,CH4,3.0,kg/TJ,173.37199109999997,kg -a70ab89a-cb5e-36ca-84ec-c888618da33e,SESCO,II.1.1,La Rioja,AR-F,annual,2011,naphtha combustion consumption by to the public,57.79066369999999,TJ,N2O,0.6,kg/TJ,34.67439821999999,kg -453158c0-c83d-3837-8a62-835ced5d8efb,SESCO,II.1.1,Mendoza,AR-M,annual,2011,naphtha combustion consumption by to the public,214.43996419999996,TJ,CO2,73300.0,kg/TJ,15718449.375859998,kg -a221a42d-80de-3f04-87e1-c00398538e7c,SESCO,II.1.1,Mendoza,AR-M,annual,2011,naphtha combustion consumption by to the public,214.43996419999996,TJ,CH4,3.0,kg/TJ,643.3198925999999,kg -b2645734-5cb3-37ed-b5fd-11377e2c3ad1,SESCO,II.1.1,Mendoza,AR-M,annual,2011,naphtha combustion consumption by to the public,214.43996419999996,TJ,N2O,0.6,kg/TJ,128.66397851999997,kg -cc636d8e-b6e2-332c-8aac-ad1821eceb4e,SESCO,II.1.1,Misiones,AR-N,annual,2011,naphtha combustion consumption by to the public,175.9912077,TJ,CO2,73300.0,kg/TJ,12900155.52441,kg -1107722e-8d2d-36c7-af0a-1f2d0c10d056,SESCO,II.1.1,Misiones,AR-N,annual,2011,naphtha combustion consumption by to the public,175.9912077,TJ,CH4,3.0,kg/TJ,527.9736230999999,kg -84f928ed-a63b-3603-bc48-30ad3ed2b1b1,SESCO,II.1.1,Misiones,AR-N,annual,2011,naphtha combustion consumption by to the public,175.9912077,TJ,N2O,0.6,kg/TJ,105.59472462,kg -c966ba52-f947-32c2-9d26-0ef7fbad5f01,SESCO,II.1.1,Neuquén,AR-Q,annual,2011,naphtha combustion consumption by to the public,47.851072499999994,TJ,CO2,73300.0,kg/TJ,3507483.6142499996,kg -5010af71-63fa-3c18-ac58-2d4b0f9dace8,SESCO,II.1.1,Neuquén,AR-Q,annual,2011,naphtha combustion consumption by to the public,47.851072499999994,TJ,CH4,3.0,kg/TJ,143.5532175,kg -38337dfc-28c6-3405-9994-15c4b1684e97,SESCO,II.1.1,Neuquén,AR-Q,annual,2011,naphtha combustion consumption by to the public,47.851072499999994,TJ,N2O,0.6,kg/TJ,28.710643499999996,kg -3bd6946f-081b-3595-8003-ab88d82f111c,SESCO,II.1.1,Rio Negro,AR-R,annual,2011,naphtha combustion consumption by to the public,58.798054699999994,TJ,CO2,73300.0,kg/TJ,4309897.40951,kg -28477616-37e7-38fb-8657-94d8c1de00b5,SESCO,II.1.1,Rio Negro,AR-R,annual,2011,naphtha combustion consumption by to the public,58.798054699999994,TJ,CH4,3.0,kg/TJ,176.39416409999998,kg -34dbe02d-7696-3199-9e80-20905995e650,SESCO,II.1.1,Rio Negro,AR-R,annual,2011,naphtha combustion consumption by to the public,58.798054699999994,TJ,N2O,0.6,kg/TJ,35.27883282,kg -b06a1244-0263-3d35-b017-85783ffc1258,SESCO,II.1.1,Salta,AR-A,annual,2011,naphtha combustion consumption by to the public,70.0472542,TJ,CO2,73300.0,kg/TJ,5134463.73286,kg -6986836b-0264-3763-bb97-747d15ea1326,SESCO,II.1.1,Salta,AR-A,annual,2011,naphtha combustion consumption by to the public,70.0472542,TJ,CH4,3.0,kg/TJ,210.1417626,kg -9ffdf52e-1818-3880-b0e5-43c6776ccf39,SESCO,II.1.1,Salta,AR-A,annual,2011,naphtha combustion consumption by to the public,70.0472542,TJ,N2O,0.6,kg/TJ,42.02835252,kg -349d406a-6aa7-3eb5-a13c-7403f4110a85,SESCO,II.1.1,San Juan,AR-J,annual,2011,naphtha combustion consumption by to the public,40.53069789999999,TJ,CO2,73300.0,kg/TJ,2970900.1560699996,kg -a073fb92-b3a6-3077-817e-3b671e7ecae1,SESCO,II.1.1,San Juan,AR-J,annual,2011,naphtha combustion consumption by to the public,40.53069789999999,TJ,CH4,3.0,kg/TJ,121.59209369999998,kg -f4cbe1f6-d012-37c9-a9e4-683b18b6e5c3,SESCO,II.1.1,San Juan,AR-J,annual,2011,naphtha combustion consumption by to the public,40.53069789999999,TJ,N2O,0.6,kg/TJ,24.318418739999995,kg -fcd0e542-254c-3682-907e-c3c2f8f04b28,SESCO,II.1.1,San Luis,AR-D,annual,2011,naphtha combustion consumption by to the public,3.5930278999999996,TJ,CO2,73300.0,kg/TJ,263368.94506999996,kg -b7072578-4fd0-370d-b1a2-5d9da14c8f19,SESCO,II.1.1,San Luis,AR-D,annual,2011,naphtha combustion consumption by to the public,3.5930278999999996,TJ,CH4,3.0,kg/TJ,10.7790837,kg -b3602816-5b0e-3b60-a024-9698456fa3ba,SESCO,II.1.1,San Luis,AR-D,annual,2011,naphtha combustion consumption by to the public,3.5930278999999996,TJ,N2O,0.6,kg/TJ,2.1558167399999997,kg -64fcee28-0d7e-340f-a439-7e1dcf0974d3,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2011,naphtha combustion consumption by to the public,0.2350579,TJ,CO2,73300.0,kg/TJ,17229.74407,kg -1bfa39e6-c4ce-3196-bdf3-2fd161e0de52,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2011,naphtha combustion consumption by to the public,0.2350579,TJ,CH4,3.0,kg/TJ,0.7051737,kg -d13c44b0-dafc-3c7b-a941-1fd832929b24,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2011,naphtha combustion consumption by to the public,0.2350579,TJ,N2O,0.6,kg/TJ,0.14103474,kg -f4707bee-903b-31ee-8df5-26931361ba50,SESCO,II.1.1,Santa Fe,AR-S,annual,2011,naphtha combustion consumption by to the public,1239.6617849,TJ,CO2,73300.0,kg/TJ,90867208.83317,kg -8a5c9c5b-a9c1-39d1-9131-50ad5fa23e30,SESCO,II.1.1,Santa Fe,AR-S,annual,2011,naphtha combustion consumption by to the public,1239.6617849,TJ,CH4,3.0,kg/TJ,3718.9853547,kg -9bbd8654-b3db-33f3-8f64-7194da593f4e,SESCO,II.1.1,Santa Fe,AR-S,annual,2011,naphtha combustion consumption by to the public,1239.6617849,TJ,N2O,0.6,kg/TJ,743.7970709399999,kg -9c3240d8-e91b-3c6e-a8bc-74bc8fb1053a,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2011,naphtha combustion consumption by to the public,121.49135459999998,TJ,CO2,73300.0,kg/TJ,8905316.292179998,kg -539c9eb4-7f76-3c71-937a-1aeb72f3b2f3,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2011,naphtha combustion consumption by to the public,121.49135459999998,TJ,CH4,3.0,kg/TJ,364.47406379999995,kg -1ce53173-7124-32de-a89d-79c62d6187bc,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2011,naphtha combustion consumption by to the public,121.49135459999998,TJ,N2O,0.6,kg/TJ,72.89481275999998,kg -4ea54b8c-e5dc-3bd9-a21d-d964b488f926,SESCO,II.1.1,Tucuman,AR-T,annual,2011,naphtha combustion consumption by to the public,218.2344703,TJ,CO2,73300.0,kg/TJ,15996586.67299,kg -23a244ec-72f7-3987-b732-ff457ae155db,SESCO,II.1.1,Tucuman,AR-T,annual,2011,naphtha combustion consumption by to the public,218.2344703,TJ,CH4,3.0,kg/TJ,654.7034109,kg -6a21ba9b-4e05-3be6-8a23-9828244fa03c,SESCO,II.1.1,Tucuman,AR-T,annual,2011,naphtha combustion consumption by to the public,218.2344703,TJ,N2O,0.6,kg/TJ,130.94068217999998,kg -56524a60-7e3c-3dfa-b4d5-f8e5c79bd3fb,SESCO,II.5.1,Buenos Aires,AR-B,annual,2011,naphtha combustion consumption by agriculture machines,17.293545499999997,TJ,CO2,73300.0,kg/TJ,1267616.8851499998,kg -42e81338-1f7b-39fe-bf9f-e58410a49e5d,SESCO,II.5.1,Buenos Aires,AR-B,annual,2011,naphtha combustion consumption by agriculture machines,17.293545499999997,TJ,CH4,3.0,kg/TJ,51.880636499999994,kg -0b5340f5-718e-34aa-9eb4-8969fa44e30a,SESCO,II.5.1,Buenos Aires,AR-B,annual,2011,naphtha combustion consumption by agriculture machines,17.293545499999997,TJ,N2O,0.6,kg/TJ,10.376127299999998,kg -e744dd87-edba-3316-a90a-4d7a92f9f84c,SESCO,II.5.1,Entre Rios,AR-E,annual,2011,naphtha combustion consumption by agriculture machines,3.8952451999999997,TJ,CO2,73300.0,kg/TJ,285521.47316,kg -edbdd079-7d55-3720-90b2-a6416c3e1148,SESCO,II.5.1,Entre Rios,AR-E,annual,2011,naphtha combustion consumption by agriculture machines,3.8952451999999997,TJ,CH4,3.0,kg/TJ,11.6857356,kg -e750638e-ffb4-3931-adca-4fc3028d3f77,SESCO,II.5.1,Entre Rios,AR-E,annual,2011,naphtha combustion consumption by agriculture machines,3.8952451999999997,TJ,N2O,0.6,kg/TJ,2.3371471199999996,kg -33c3ed0e-e048-3c2a-a980-7867e2b14d8a,SESCO,II.5.1,Jujuy,AR-Y,annual,2011,naphtha combustion consumption by agriculture machines,0.7723330999999999,TJ,CO2,73300.0,kg/TJ,56612.016229999994,kg -aede0689-de0f-39ab-9174-3d1ff393c454,SESCO,II.5.1,Jujuy,AR-Y,annual,2011,naphtha combustion consumption by agriculture machines,0.7723330999999999,TJ,CH4,3.0,kg/TJ,2.3169992999999995,kg -65269be0-a233-3fe1-9c19-0dfb07951b27,SESCO,II.5.1,Jujuy,AR-Y,annual,2011,naphtha combustion consumption by agriculture machines,0.7723330999999999,TJ,N2O,0.6,kg/TJ,0.4633998599999999,kg -78abb994-3f5d-3c99-bd2a-37066e645bb8,SESCO,II.5.1,La Pampa,AR-L,annual,2011,naphtha combustion consumption by agriculture machines,1.5782459,TJ,CO2,73300.0,kg/TJ,115685.42447,kg -4712fc31-dcf8-38a2-b934-47745dffd940,SESCO,II.5.1,La Pampa,AR-L,annual,2011,naphtha combustion consumption by agriculture machines,1.5782459,TJ,CH4,3.0,kg/TJ,4.7347377,kg -ba2a9e55-3798-3ccb-90cd-7ce45e6a06be,SESCO,II.5.1,La Pampa,AR-L,annual,2011,naphtha combustion consumption by agriculture machines,1.5782459,TJ,N2O,0.6,kg/TJ,0.9469475399999999,kg -f33e89da-9bba-3e76-8b9d-60ce3a30bc3b,SESCO,II.5.1,Salta,AR-A,annual,2011,naphtha combustion consumption by agriculture machines,0.8730722,TJ,CO2,73300.0,kg/TJ,63996.192259999996,kg -92d96a57-7261-3c65-b21f-2a68a4f78921,SESCO,II.5.1,Salta,AR-A,annual,2011,naphtha combustion consumption by agriculture machines,0.8730722,TJ,CH4,3.0,kg/TJ,2.6192165999999997,kg -84fa2ddd-c409-30e9-9f20-10937707ea38,SESCO,II.5.1,Salta,AR-A,annual,2011,naphtha combustion consumption by agriculture machines,0.8730722,TJ,N2O,0.6,kg/TJ,0.52384332,kg -2d36d463-4d6f-35d9-bb24-dfee6cfc6fd7,SESCO,II.5.1,Santa Fe,AR-S,annual,2011,naphtha combustion consumption by agriculture machines,77.23330999999999,TJ,CO2,73300.0,kg/TJ,5661201.622999999,kg -d438f057-275f-35f7-87e6-6a41e9eb4fad,SESCO,II.5.1,Santa Fe,AR-S,annual,2011,naphtha combustion consumption by agriculture machines,77.23330999999999,TJ,CH4,3.0,kg/TJ,231.69992999999997,kg -67f031d5-4b09-3443-9284-e00857468021,SESCO,II.5.1,Santa Fe,AR-S,annual,2011,naphtha combustion consumption by agriculture machines,77.23330999999999,TJ,N2O,0.6,kg/TJ,46.33998599999999,kg -aba82722-0395-35d4-81ea-a075733cd41f,SESCO,II.5.1,Santiago del Estero,AR-G,annual,2011,naphtha combustion consumption by agriculture machines,1.2760285999999998,TJ,CO2,73300.0,kg/TJ,93532.89637999999,kg -d7f53cee-ebaa-3ade-9a1d-ff9f36c6d89c,SESCO,II.5.1,Santiago del Estero,AR-G,annual,2011,naphtha combustion consumption by agriculture machines,1.2760285999999998,TJ,CH4,3.0,kg/TJ,3.8280857999999993,kg -5cfa9cb1-9ce4-3d88-b882-a6b92623f52a,SESCO,II.5.1,Santiago del Estero,AR-G,annual,2011,naphtha combustion consumption by agriculture machines,1.2760285999999998,TJ,N2O,0.6,kg/TJ,0.7656171599999999,kg -cba776d8-d41d-3aa1-a4ec-29ab17092cc7,SESCO,II.5.1,Buenos Aires,AR-B,annual,2011,naphtha combustion consumption by agriculture machines,0.4701158,TJ,CO2,73300.0,kg/TJ,34459.48814,kg -c30a48b6-6a15-3c08-b71b-986f697921ae,SESCO,II.5.1,Buenos Aires,AR-B,annual,2011,naphtha combustion consumption by agriculture machines,0.4701158,TJ,CH4,3.0,kg/TJ,1.4103474,kg -72c0a3f8-25df-3d2e-8016-af115baf906f,SESCO,II.5.1,Buenos Aires,AR-B,annual,2011,naphtha combustion consumption by agriculture machines,0.4701158,TJ,N2O,0.6,kg/TJ,0.28206948,kg -f82422d4-6aba-320b-b5bd-812a30c0aa64,SESCO,II.1.1,Buenos Aires,AR-B,annual,2011,naphtha combustion consumption by to the public,18.166617699999996,TJ,CO2,73300.0,kg/TJ,1331613.0774099997,kg -f10b0af8-84c2-33cc-ad02-f92baae5f869,SESCO,II.1.1,Buenos Aires,AR-B,annual,2011,naphtha combustion consumption by to the public,18.166617699999996,TJ,CH4,3.0,kg/TJ,54.49985309999999,kg -74cf159b-e171-37ea-a3e6-0665384e26ff,SESCO,II.1.1,Buenos Aires,AR-B,annual,2011,naphtha combustion consumption by to the public,18.166617699999996,TJ,N2O,0.6,kg/TJ,10.899970619999998,kg -266ebcfb-ca8f-3004-b355-9d380401738b,SESCO,II.1.1,Capital Federal,AR-C,annual,2011,naphtha combustion consumption by to the public,7.555432499999999,TJ,CO2,73300.0,kg/TJ,553813.20225,kg -877f8544-e1ec-360e-af02-928018f8dd17,SESCO,II.1.1,Capital Federal,AR-C,annual,2011,naphtha combustion consumption by to the public,7.555432499999999,TJ,CH4,3.0,kg/TJ,22.6662975,kg -b9855fb2-5eed-35c4-a9e7-c729136cb16d,SESCO,II.1.1,Capital Federal,AR-C,annual,2011,naphtha combustion consumption by to the public,7.555432499999999,TJ,N2O,0.6,kg/TJ,4.5332595,kg -2a605ac3-2889-3a39-bb71-95d8d61fe460,SESCO,II.1.1,Chaco,AR-H,annual,2011,naphtha combustion consumption by to the public,0.5372752,TJ,CO2,73300.0,kg/TJ,39382.27215999999,kg -c2b1c7cb-880e-33a9-ac12-8277308079ae,SESCO,II.1.1,Chaco,AR-H,annual,2011,naphtha combustion consumption by to the public,0.5372752,TJ,CH4,3.0,kg/TJ,1.6118256,kg -d2faac08-e588-3f3d-ae96-7af971ed6bbe,SESCO,II.1.1,Chaco,AR-H,annual,2011,naphtha combustion consumption by to the public,0.5372752,TJ,N2O,0.6,kg/TJ,0.32236511999999995,kg -32f21eb5-2f8c-3525-8a35-8f8f7ac36c47,SESCO,II.1.1,Entre Rios,AR-E,annual,2011,naphtha combustion consumption by to the public,0.7051736999999999,TJ,CO2,73300.0,kg/TJ,51689.232209999995,kg -f8584169-6dda-3fdf-8f6b-f0fe6cb2013e,SESCO,II.1.1,Entre Rios,AR-E,annual,2011,naphtha combustion consumption by to the public,0.7051736999999999,TJ,CH4,3.0,kg/TJ,2.1155210999999996,kg -e9ee62f7-1aa8-34b6-9b8c-8fdef327dd65,SESCO,II.1.1,Entre Rios,AR-E,annual,2011,naphtha combustion consumption by to the public,0.7051736999999999,TJ,N2O,0.6,kg/TJ,0.4231042199999999,kg -c8665a18-49c2-37d1-8e3c-ebfe91678829,SESCO,II.1.1,Jujuy,AR-Y,annual,2011,naphtha combustion consumption by to the public,0.2350579,TJ,CO2,73300.0,kg/TJ,17229.74407,kg -5831ef9f-51a5-32bf-a25f-c995044dee46,SESCO,II.1.1,Jujuy,AR-Y,annual,2011,naphtha combustion consumption by to the public,0.2350579,TJ,CH4,3.0,kg/TJ,0.7051737,kg -ce05f4fe-e30a-3b4c-bd86-e3d9ed9cdbe6,SESCO,II.1.1,Jujuy,AR-Y,annual,2011,naphtha combustion consumption by to the public,0.2350579,TJ,N2O,0.6,kg/TJ,0.14103474,kg -2e0113a4-aa83-3c7b-a75d-654e31dc7598,SESCO,II.1.1,Misiones,AR-N,annual,2011,naphtha combustion consumption by to the public,2.686376,TJ,CO2,73300.0,kg/TJ,196911.3608,kg -5035d006-3b22-336e-8534-9d96a2cb3833,SESCO,II.1.1,Misiones,AR-N,annual,2011,naphtha combustion consumption by to the public,2.686376,TJ,CH4,3.0,kg/TJ,8.059128000000001,kg -3586b78b-dba9-3fa2-8c2e-4e026d61272a,SESCO,II.1.1,Misiones,AR-N,annual,2011,naphtha combustion consumption by to the public,2.686376,TJ,N2O,0.6,kg/TJ,1.6118256,kg -1aadefec-9217-36ac-8c91-b5bdb0b7c5c4,SESCO,II.1.1,Salta,AR-A,annual,2011,naphtha combustion consumption by to the public,0.0671594,TJ,CO2,73300.0,kg/TJ,4922.784019999999,kg -384100e2-ba09-3074-8f77-901bda5d1d2f,SESCO,II.1.1,Salta,AR-A,annual,2011,naphtha combustion consumption by to the public,0.0671594,TJ,CH4,3.0,kg/TJ,0.2014782,kg -2226a6d7-41e4-3a35-bfb7-3f6f7c48fb9c,SESCO,II.1.1,Salta,AR-A,annual,2011,naphtha combustion consumption by to the public,0.0671594,TJ,N2O,0.6,kg/TJ,0.040295639999999994,kg -fca1ab8d-7c2e-3cdf-87a5-751984fefc7c,SESCO,II.1.1,Santa Fe,AR-S,annual,2011,naphtha combustion consumption by to the public,3.0557526999999998,TJ,CO2,73300.0,kg/TJ,223986.67291,kg -800d1203-e696-33ff-9056-e97dd8dee05d,SESCO,II.1.1,Santa Fe,AR-S,annual,2011,naphtha combustion consumption by to the public,3.0557526999999998,TJ,CH4,3.0,kg/TJ,9.1672581,kg -4bfd9f6b-5683-3037-b69e-c5a21adcc9a0,SESCO,II.1.1,Santa Fe,AR-S,annual,2011,naphtha combustion consumption by to the public,3.0557526999999998,TJ,N2O,0.6,kg/TJ,1.8334516199999997,kg -30aee469-f809-3830-abeb-831737f24a9b,SESCO,II.1.1,Buenos Aires,AR-B,annual,2011,naphtha combustion consumption by to the public,32328.688276499997,TJ,CO2,73300.0,kg/TJ,2369692850.66745,kg -841b207d-0b61-3dd6-90b8-0b7691a321b1,SESCO,II.1.1,Buenos Aires,AR-B,annual,2011,naphtha combustion consumption by to the public,32328.688276499997,TJ,CH4,3.0,kg/TJ,96986.06482949998,kg -a43337e4-56d4-33f7-81a3-5acb133b6cde,SESCO,II.1.1,Buenos Aires,AR-B,annual,2011,naphtha combustion consumption by to the public,32328.688276499997,TJ,N2O,0.6,kg/TJ,19397.2129659,kg -dcff5f2f-6dce-3bb2-a829-3e2da6dfed5c,SESCO,II.1.1,Capital Federal,AR-C,annual,2011,naphtha combustion consumption by to the public,7089.2791046,TJ,CO2,73300.0,kg/TJ,519644158.36718,kg -bcf33087-0a4a-35e1-a68c-8e6aba14df54,SESCO,II.1.1,Capital Federal,AR-C,annual,2011,naphtha combustion consumption by to the public,7089.2791046,TJ,CH4,3.0,kg/TJ,21267.837313800002,kg -ca03a49c-11fd-3edd-8f6c-cdba131197fa,SESCO,II.1.1,Capital Federal,AR-C,annual,2011,naphtha combustion consumption by to the public,7089.2791046,TJ,N2O,0.6,kg/TJ,4253.56746276,kg -f6f3a8ef-7a0b-3a9b-ba74-4d52b4394a4f,SESCO,II.1.1,Catamarca,AR-K,annual,2011,naphtha combustion consumption by to the public,523.4067838999999,TJ,CO2,73300.0,kg/TJ,38365717.25986999,kg -25a27b4c-a307-3e6e-bc4a-ae10d89ac1bf,SESCO,II.1.1,Catamarca,AR-K,annual,2011,naphtha combustion consumption by to the public,523.4067838999999,TJ,CH4,3.0,kg/TJ,1570.2203516999998,kg -00308e7c-9c3b-3741-8be0-bf3f56efb51c,SESCO,II.1.1,Catamarca,AR-K,annual,2011,naphtha combustion consumption by to the public,523.4067838999999,TJ,N2O,0.6,kg/TJ,314.04407033999996,kg -d4f58969-059f-379f-bc29-f3aac31f39b0,SESCO,II.1.1,Chaco,AR-H,annual,2011,naphtha combustion consumption by to the public,1784.3245189,TJ,CO2,73300.0,kg/TJ,130790987.23537,kg -0c2fe060-28f1-3fc9-8341-c3ddf46fe1da,SESCO,II.1.1,Chaco,AR-H,annual,2011,naphtha combustion consumption by to the public,1784.3245189,TJ,CH4,3.0,kg/TJ,5352.9735567,kg -9d5ea273-bb33-38c1-8442-17f98a5e24e0,SESCO,II.1.1,Chaco,AR-H,annual,2011,naphtha combustion consumption by to the public,1784.3245189,TJ,N2O,0.6,kg/TJ,1070.59471134,kg -ea589a9b-f37b-3a31-9049-fdaeb995ff96,SESCO,II.1.1,Chubut,AR-U,annual,2011,naphtha combustion consumption by to the public,3240.7432673,TJ,CO2,73300.0,kg/TJ,237546481.49308997,kg -e6f0b0a0-3297-3810-8901-da7e7a078b7a,SESCO,II.1.1,Chubut,AR-U,annual,2011,naphtha combustion consumption by to the public,3240.7432673,TJ,CH4,3.0,kg/TJ,9722.229801899999,kg -c6b1cc7b-0655-3b11-9fa3-c1f8faf12c7a,SESCO,II.1.1,Chubut,AR-U,annual,2011,naphtha combustion consumption by to the public,3240.7432673,TJ,N2O,0.6,kg/TJ,1944.4459603799999,kg -9b9691e7-c838-3ddf-9c7c-a0f90553620e,SESCO,II.1.1,Corrientes,AR-W,annual,2011,naphtha combustion consumption by to the public,2013.5731308,TJ,CO2,73300.0,kg/TJ,147594910.48764,kg -b3402a3f-b3d5-3958-bfc7-f9909fb3ddcc,SESCO,II.1.1,Corrientes,AR-W,annual,2011,naphtha combustion consumption by to the public,2013.5731308,TJ,CH4,3.0,kg/TJ,6040.7193924,kg -088847a3-38aa-3c58-bf58-d312b963659f,SESCO,II.1.1,Corrientes,AR-W,annual,2011,naphtha combustion consumption by to the public,2013.5731308,TJ,N2O,0.6,kg/TJ,1208.14387848,kg -5ac2ca27-689a-35df-bfc9-a480da66d0f6,SESCO,II.1.1,Córdoba,AR-X,annual,2011,naphtha combustion consumption by to the public,8267.322139999998,TJ,CO2,73300.0,kg/TJ,605994712.8619999,kg -b80f5401-b2ae-316e-a3dc-10f23594d09b,SESCO,II.1.1,Córdoba,AR-X,annual,2011,naphtha combustion consumption by to the public,8267.322139999998,TJ,CH4,3.0,kg/TJ,24801.966419999997,kg -40559397-0ca9-3fb7-93e7-1783f31e020c,SESCO,II.1.1,Córdoba,AR-X,annual,2011,naphtha combustion consumption by to the public,8267.322139999998,TJ,N2O,0.6,kg/TJ,4960.393283999999,kg -b4f119ae-bcc9-3db0-a4cc-abd0a12ddaa3,SESCO,II.1.1,Entre Rios,AR-E,annual,2011,naphtha combustion consumption by to the public,2347.0867111999996,TJ,CO2,73300.0,kg/TJ,172041455.93095997,kg -76886a45-966e-3563-afc6-1e21d3a1d04e,SESCO,II.1.1,Entre Rios,AR-E,annual,2011,naphtha combustion consumption by to the public,2347.0867111999996,TJ,CH4,3.0,kg/TJ,7041.260133599999,kg -fd2d52c3-30d6-3f9a-aa4b-36100da440e1,SESCO,II.1.1,Entre Rios,AR-E,annual,2011,naphtha combustion consumption by to the public,2347.0867111999996,TJ,N2O,0.6,kg/TJ,1408.2520267199998,kg -40fcd966-6fa9-3486-9939-0d14f7b0b79a,SESCO,II.1.1,Formosa,AR-P,annual,2011,naphtha combustion consumption by to the public,744.797746,TJ,CO2,73300.0,kg/TJ,54593674.781799994,kg -cae1c21e-1b1a-315d-9d04-79c61c52eea9,SESCO,II.1.1,Formosa,AR-P,annual,2011,naphtha combustion consumption by to the public,744.797746,TJ,CH4,3.0,kg/TJ,2234.3932379999997,kg -46afe825-067a-3342-8db2-0d3eed12ad29,SESCO,II.1.1,Formosa,AR-P,annual,2011,naphtha combustion consumption by to the public,744.797746,TJ,N2O,0.6,kg/TJ,446.87864759999997,kg -6a5f6c52-fb93-3ce7-a1d0-6655c8dd92ed,SESCO,II.1.1,Jujuy,AR-Y,annual,2011,naphtha combustion consumption by to the public,928.1093282999999,TJ,CO2,73300.0,kg/TJ,68030413.76438999,kg -6d01e9bd-84e5-38ae-bba1-5201c1827f82,SESCO,II.1.1,Jujuy,AR-Y,annual,2011,naphtha combustion consumption by to the public,928.1093282999999,TJ,CH4,3.0,kg/TJ,2784.3279848999996,kg -27ead714-24c7-340e-a1c2-901668eb6f97,SESCO,II.1.1,Jujuy,AR-Y,annual,2011,naphtha combustion consumption by to the public,928.1093282999999,TJ,N2O,0.6,kg/TJ,556.86559698,kg -74fcd6c7-0a84-387a-8151-8a73b447b42b,SESCO,II.1.1,La Pampa,AR-L,annual,2011,naphtha combustion consumption by to the public,1372.5366577999998,TJ,CO2,73300.0,kg/TJ,100606937.01674,kg -b929e470-afbb-37bc-91b5-31c9cd899482,SESCO,II.1.1,La Pampa,AR-L,annual,2011,naphtha combustion consumption by to the public,1372.5366577999998,TJ,CH4,3.0,kg/TJ,4117.6099734,kg -35819d58-3d3b-308a-9241-b3ff1c8f1ea2,SESCO,II.1.1,La Pampa,AR-L,annual,2011,naphtha combustion consumption by to the public,1372.5366577999998,TJ,N2O,0.6,kg/TJ,823.5219946799999,kg -1da6d506-26bf-3c1e-bb4e-0c96bc0c842e,SESCO,II.1.1,La Rioja,AR-F,annual,2011,naphtha combustion consumption by to the public,755.8118876,TJ,CO2,73300.0,kg/TJ,55401011.36108,kg -809905f4-33d2-3c5f-9563-3f0f488274ff,SESCO,II.1.1,La Rioja,AR-F,annual,2011,naphtha combustion consumption by to the public,755.8118876,TJ,CH4,3.0,kg/TJ,2267.4356628,kg -f31c3570-4532-3082-b429-367150d75efc,SESCO,II.1.1,La Rioja,AR-F,annual,2011,naphtha combustion consumption by to the public,755.8118876,TJ,N2O,0.6,kg/TJ,453.48713255999996,kg -2ea9ad07-a164-350f-914c-7ac967ce6ba5,SESCO,II.1.1,Mendoza,AR-M,annual,2011,naphtha combustion consumption by to the public,4034.1979985999997,TJ,CO2,73300.0,kg/TJ,295706713.29738,kg -2fa3fefe-c6db-3e3a-80ed-cb76fc67f731,SESCO,II.1.1,Mendoza,AR-M,annual,2011,naphtha combustion consumption by to the public,4034.1979985999997,TJ,CH4,3.0,kg/TJ,12102.593995799998,kg -3375fea6-a8b4-36d9-8f34-c6a1ce51356b,SESCO,II.1.1,Mendoza,AR-M,annual,2011,naphtha combustion consumption by to the public,4034.1979985999997,TJ,N2O,0.6,kg/TJ,2420.5187991599996,kg -97377765-5057-3e68-a5df-23908c69efaf,SESCO,II.1.1,Misiones,AR-N,annual,2011,naphtha combustion consumption by to the public,2522.3727451999994,TJ,CO2,73300.0,kg/TJ,184889922.22315997,kg -eba1c0cf-6671-34c4-830e-9cc15954ca5c,SESCO,II.1.1,Misiones,AR-N,annual,2011,naphtha combustion consumption by to the public,2522.3727451999994,TJ,CH4,3.0,kg/TJ,7567.118235599998,kg -9ea20c65-0e29-3de3-b82c-222cd239eec2,SESCO,II.1.1,Misiones,AR-N,annual,2011,naphtha combustion consumption by to the public,2522.3727451999994,TJ,N2O,0.6,kg/TJ,1513.4236471199995,kg -85a52326-4a4f-3b02-b76e-932aee2f7b6a,SESCO,II.1.1,Neuquén,AR-Q,annual,2011,naphtha combustion consumption by to the public,2478.8198743,TJ,CO2,73300.0,kg/TJ,181697496.78618997,kg -1c678912-3890-3bed-8b13-deaf00c7c88c,SESCO,II.1.1,Neuquén,AR-Q,annual,2011,naphtha combustion consumption by to the public,2478.8198743,TJ,CH4,3.0,kg/TJ,7436.4596229,kg -773c900b-b4dd-34a8-8a9e-05ef051092f2,SESCO,II.1.1,Neuquén,AR-Q,annual,2011,naphtha combustion consumption by to the public,2478.8198743,TJ,N2O,0.6,kg/TJ,1487.2919245799999,kg -6b1ae084-ecb0-3ec3-b3dd-fc261ce5636d,SESCO,II.1.1,Rio Negro,AR-R,annual,2011,naphtha combustion consumption by to the public,2495.9119416,TJ,CO2,73300.0,kg/TJ,182950345.31928,kg -a6d9a7b4-8525-3be4-966c-f4e0ef4726d8,SESCO,II.1.1,Rio Negro,AR-R,annual,2011,naphtha combustion consumption by to the public,2495.9119416,TJ,CH4,3.0,kg/TJ,7487.7358248,kg -da1c9d6d-15bf-3bea-921f-e333802e0138,SESCO,II.1.1,Rio Negro,AR-R,annual,2011,naphtha combustion consumption by to the public,2495.9119416,TJ,N2O,0.6,kg/TJ,1497.54716496,kg -16bd459e-75c5-3312-897d-bcffb97435d8,SESCO,II.1.1,Salta,AR-A,annual,2011,naphtha combustion consumption by to the public,1942.9550216999999,TJ,CO2,73300.0,kg/TJ,142418603.09061,kg -32dcce44-fee4-3b89-a85d-4ab960bb56ce,SESCO,II.1.1,Salta,AR-A,annual,2011,naphtha combustion consumption by to the public,1942.9550216999999,TJ,CH4,3.0,kg/TJ,5828.8650651,kg -918694b7-1fd7-3d2d-bff4-c89002e979e3,SESCO,II.1.1,Salta,AR-A,annual,2011,naphtha combustion consumption by to the public,1942.9550216999999,TJ,N2O,0.6,kg/TJ,1165.7730130199998,kg -ce4fceb0-d3e7-3882-96eb-ca8603b8fb6d,SESCO,II.1.1,San Juan,AR-J,annual,2011,naphtha combustion consumption by to the public,1256.7874318999998,TJ,CO2,73300.0,kg/TJ,92122518.75826998,kg -52a24759-740e-3bae-863d-a884600ffb86,SESCO,II.1.1,San Juan,AR-J,annual,2011,naphtha combustion consumption by to the public,1256.7874318999998,TJ,CH4,3.0,kg/TJ,3770.3622956999993,kg -3cbee838-86ff-3f21-9b40-819bf530e128,SESCO,II.1.1,San Juan,AR-J,annual,2011,naphtha combustion consumption by to the public,1256.7874318999998,TJ,N2O,0.6,kg/TJ,754.0724591399999,kg -6189997e-97b3-31fc-95d0-0937cb47fda9,SESCO,II.1.1,San Luis,AR-D,annual,2011,naphtha combustion consumption by to the public,1068.5732134,TJ,CO2,73300.0,kg/TJ,78326416.54222,kg -9a950f78-bac7-3eff-93bf-1b469a7c18ec,SESCO,II.1.1,San Luis,AR-D,annual,2011,naphtha combustion consumption by to the public,1068.5732134,TJ,CH4,3.0,kg/TJ,3205.7196402,kg -82055917-aed1-3c15-b228-6fd9b025b6a0,SESCO,II.1.1,San Luis,AR-D,annual,2011,naphtha combustion consumption by to the public,1068.5732134,TJ,N2O,0.6,kg/TJ,641.14392804,kg -983c0e6d-7a90-317b-9c59-4a6c832e795b,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2011,naphtha combustion consumption by to the public,2279.7929924,TJ,CO2,73300.0,kg/TJ,167108826.34292,kg -e14d2800-9b88-336f-b802-c247b51a3ce4,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2011,naphtha combustion consumption by to the public,2279.7929924,TJ,CH4,3.0,kg/TJ,6839.3789772,kg -18055bbc-8e11-3d76-8899-5bb1f330ea4b,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2011,naphtha combustion consumption by to the public,2279.7929924,TJ,N2O,0.6,kg/TJ,1367.87579544,kg -8d710c8b-42ec-32ff-9577-179f6b9b0302,SESCO,II.1.1,Santa Fe,AR-S,annual,2011,naphtha combustion consumption by to the public,5758.045477799999,TJ,CO2,73300.0,kg/TJ,422064733.52273995,kg -64979bbb-032e-333d-aad6-95fd5164bc80,SESCO,II.1.1,Santa Fe,AR-S,annual,2011,naphtha combustion consumption by to the public,5758.045477799999,TJ,CH4,3.0,kg/TJ,17274.1364334,kg -4e4da11a-8cac-3086-8914-193750b8dd4b,SESCO,II.1.1,Santa Fe,AR-S,annual,2011,naphtha combustion consumption by to the public,5758.045477799999,TJ,N2O,0.6,kg/TJ,3454.8272866799994,kg -eb4e4713-3ce1-3d80-8531-029111a32435,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2011,naphtha combustion consumption by to the public,862.5617538999999,TJ,CO2,73300.0,kg/TJ,63225776.56086999,kg -f5e33de9-e64c-37e1-8e26-5e27486982e2,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2011,naphtha combustion consumption by to the public,862.5617538999999,TJ,CH4,3.0,kg/TJ,2587.6852616999995,kg -37c3b36c-30c9-32f3-af60-eb52a31c39b1,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2011,naphtha combustion consumption by to the public,862.5617538999999,TJ,N2O,0.6,kg/TJ,517.53705234,kg -e560279d-6dc4-322b-9fbb-16e9315698f0,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2011,naphtha combustion consumption by to the public,1719.9858136999999,TJ,CO2,73300.0,kg/TJ,126074960.14421,kg -5ce46576-0b10-3cba-b961-00aa6f386b37,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2011,naphtha combustion consumption by to the public,1719.9858136999999,TJ,CH4,3.0,kg/TJ,5159.957441099999,kg -70a14770-32c2-3f15-8095-4c9157e885b9,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2011,naphtha combustion consumption by to the public,1719.9858136999999,TJ,N2O,0.6,kg/TJ,1031.9914882199998,kg -dccc76e5-4087-37f3-a3d8-c5f3105e92db,SESCO,II.1.1,Tucuman,AR-T,annual,2011,naphtha combustion consumption by to the public,1680.6304052999997,TJ,CO2,73300.0,kg/TJ,123190208.70848997,kg -15ab4a92-d009-37dc-a289-674837f1c671,SESCO,II.1.1,Tucuman,AR-T,annual,2011,naphtha combustion consumption by to the public,1680.6304052999997,TJ,CH4,3.0,kg/TJ,5041.891215899999,kg -ea6b0978-31f7-3c5f-96a2-465476703415,SESCO,II.1.1,Tucuman,AR-T,annual,2011,naphtha combustion consumption by to the public,1680.6304052999997,TJ,N2O,0.6,kg/TJ,1008.3782431799998,kg -949e04f3-25fc-3f22-b6b5-d89a9f020ccd,SESCO,II.1.1,Buenos Aires,AR-B,annual,2011,naphtha combustion consumption by to the public,14564.1539043,TJ,CO2,73300.0,kg/TJ,1067552481.18519,kg -c9b7710a-abaa-333f-88b5-d46725cb8e33,SESCO,II.1.1,Buenos Aires,AR-B,annual,2011,naphtha combustion consumption by to the public,14564.1539043,TJ,CH4,3.0,kg/TJ,43692.461712899996,kg -a6a7b60a-4df7-3abf-ac21-f25f5079432b,SESCO,II.1.1,Buenos Aires,AR-B,annual,2011,naphtha combustion consumption by to the public,14564.1539043,TJ,N2O,0.6,kg/TJ,8738.492342579999,kg -53bc616f-62e5-3bed-82f9-3f2cd4bf2691,SESCO,II.1.1,Capital Federal,AR-C,annual,2011,naphtha combustion consumption by to the public,3199.5073957,TJ,CO2,73300.0,kg/TJ,234523892.10481,kg -adb1bbe5-7aca-3587-abf4-d3c44be079c1,SESCO,II.1.1,Capital Federal,AR-C,annual,2011,naphtha combustion consumption by to the public,3199.5073957,TJ,CH4,3.0,kg/TJ,9598.5221871,kg -86a03317-490f-3806-a30d-564af1691a94,SESCO,II.1.1,Capital Federal,AR-C,annual,2011,naphtha combustion consumption by to the public,3199.5073957,TJ,N2O,0.6,kg/TJ,1919.70443742,kg -ba908a4f-956c-3877-8aaf-5a0b3a90d57a,SESCO,II.1.1,Catamarca,AR-K,annual,2011,naphtha combustion consumption by to the public,201.98189549999998,TJ,CO2,73300.0,kg/TJ,14805272.940149998,kg -33a22298-33ee-3279-b773-ac39912af690,SESCO,II.1.1,Catamarca,AR-K,annual,2011,naphtha combustion consumption by to the public,201.98189549999998,TJ,CH4,3.0,kg/TJ,605.9456865,kg -4485c9bd-b689-3684-a1ed-ac4d9f9cadb4,SESCO,II.1.1,Catamarca,AR-K,annual,2011,naphtha combustion consumption by to the public,201.98189549999998,TJ,N2O,0.6,kg/TJ,121.18913729999998,kg -54d6fe80-bed7-3300-aee2-0c52622a37fc,SESCO,II.1.1,Chaco,AR-H,annual,2011,naphtha combustion consumption by to the public,736.1006037,TJ,CO2,73300.0,kg/TJ,53956174.25121,kg -abcf6c4c-a44d-3a8e-aec9-112bdd2089bf,SESCO,II.1.1,Chaco,AR-H,annual,2011,naphtha combustion consumption by to the public,736.1006037,TJ,CH4,3.0,kg/TJ,2208.3018111,kg -e56ce2e0-bf1b-30e6-83d4-f4abcdb567b0,SESCO,II.1.1,Chaco,AR-H,annual,2011,naphtha combustion consumption by to the public,736.1006037,TJ,N2O,0.6,kg/TJ,441.66036221999997,kg -6f3d8fdb-0831-3346-9b95-9ddeeb7c0e0c,SESCO,II.1.1,Chubut,AR-U,annual,2011,naphtha combustion consumption by to the public,1010.4131729999999,TJ,CO2,73300.0,kg/TJ,74063285.5809,kg -f8b31d76-1a8a-3d4e-832d-5a63a96fb982,SESCO,II.1.1,Chubut,AR-U,annual,2011,naphtha combustion consumption by to the public,1010.4131729999999,TJ,CH4,3.0,kg/TJ,3031.2395189999997,kg -ee666abb-ade6-3e0a-acd5-05fc3dc00438,SESCO,II.1.1,Chubut,AR-U,annual,2011,naphtha combustion consumption by to the public,1010.4131729999999,TJ,N2O,0.6,kg/TJ,606.2479037999999,kg -3742e5b1-9da3-3ac4-934a-9796102b45d6,SESCO,II.1.1,Corrientes,AR-W,annual,2011,naphtha combustion consumption by to the public,646.6107032,TJ,CO2,73300.0,kg/TJ,47396564.54456,kg -090f7ab4-c9e4-3940-b826-6739796b1769,SESCO,II.1.1,Corrientes,AR-W,annual,2011,naphtha combustion consumption by to the public,646.6107032,TJ,CH4,3.0,kg/TJ,1939.8321096,kg -742e2b1e-36c4-317a-a081-c8160d078e0b,SESCO,II.1.1,Corrientes,AR-W,annual,2011,naphtha combustion consumption by to the public,646.6107032,TJ,N2O,0.6,kg/TJ,387.96642191999996,kg -f9642ec3-8a5a-341c-b068-468613f3ab2d,SESCO,II.1.1,Córdoba,AR-X,annual,2011,naphtha combustion consumption by to the public,3231.7439076999995,TJ,CO2,73300.0,kg/TJ,236886828.43440995,kg -b24ebd73-8525-3d13-b9b2-23608c490fb3,SESCO,II.1.1,Córdoba,AR-X,annual,2011,naphtha combustion consumption by to the public,3231.7439076999995,TJ,CH4,3.0,kg/TJ,9695.231723099998,kg -6d9c75c2-bc93-3836-b6e0-7af54fd44dc6,SESCO,II.1.1,Córdoba,AR-X,annual,2011,naphtha combustion consumption by to the public,3231.7439076999995,TJ,N2O,0.6,kg/TJ,1939.0463446199997,kg -982d443b-3b7e-3740-87ab-04ba91b90c10,SESCO,II.1.1,Entre Rios,AR-E,annual,2011,naphtha combustion consumption by to the public,1101.0112036,TJ,CO2,73300.0,kg/TJ,80704121.22388001,kg -9450d118-b989-3554-8187-ccda74b843f1,SESCO,II.1.1,Entre Rios,AR-E,annual,2011,naphtha combustion consumption by to the public,1101.0112036,TJ,CH4,3.0,kg/TJ,3303.0336108,kg -9a097c8f-9706-3892-9f61-d3660a9814b0,SESCO,II.1.1,Entre Rios,AR-E,annual,2011,naphtha combustion consumption by to the public,1101.0112036,TJ,N2O,0.6,kg/TJ,660.60672216,kg -5a0a09ae-02f9-38e2-af43-d296ec4750b7,SESCO,II.1.1,Formosa,AR-P,annual,2011,naphtha combustion consumption by to the public,273.338758,TJ,CO2,73300.0,kg/TJ,20035730.9614,kg -0c685a9b-6b5b-383e-b150-6db5d5711379,SESCO,II.1.1,Formosa,AR-P,annual,2011,naphtha combustion consumption by to the public,273.338758,TJ,CH4,3.0,kg/TJ,820.016274,kg -8c79ab56-b756-3c0d-9d7b-1722ff679edb,SESCO,II.1.1,Formosa,AR-P,annual,2011,naphtha combustion consumption by to the public,273.338758,TJ,N2O,0.6,kg/TJ,164.00325479999998,kg -51d72991-e5a7-3fdf-8b1e-07ee9957db78,SESCO,II.1.1,Jujuy,AR-Y,annual,2011,naphtha combustion consumption by to the public,263.9028623,TJ,CO2,73300.0,kg/TJ,19344079.80659,kg -94bf40ee-b462-3cd1-9fdb-b2fe80865e3a,SESCO,II.1.1,Jujuy,AR-Y,annual,2011,naphtha combustion consumption by to the public,263.9028623,TJ,CH4,3.0,kg/TJ,791.7085869,kg -5c7ff7d8-d4f5-3293-aee6-a6f2d82fef97,SESCO,II.1.1,Jujuy,AR-Y,annual,2011,naphtha combustion consumption by to the public,263.9028623,TJ,N2O,0.6,kg/TJ,158.34171737999998,kg -80ddbce8-2bf0-372f-99b9-630ac037d42e,SESCO,II.1.1,La Pampa,AR-L,annual,2011,naphtha combustion consumption by to the public,603.763006,TJ,CO2,73300.0,kg/TJ,44255828.3398,kg -169f67f9-c231-3c58-a603-885c8c4db91c,SESCO,II.1.1,La Pampa,AR-L,annual,2011,naphtha combustion consumption by to the public,603.763006,TJ,CH4,3.0,kg/TJ,1811.289018,kg -ac7cbf29-d0dc-30a8-9d7d-56dd8374fc7a,SESCO,II.1.1,La Pampa,AR-L,annual,2011,naphtha combustion consumption by to the public,603.763006,TJ,N2O,0.6,kg/TJ,362.2578036,kg -e5d2ed1b-f93e-37bc-a3fb-cc91c50b247a,SESCO,II.1.1,La Rioja,AR-F,annual,2011,naphtha combustion consumption by to the public,286.7034786,TJ,CO2,73300.0,kg/TJ,21015364.981379997,kg -3af396f8-dd12-394e-bb85-b15fa7593c61,SESCO,II.1.1,La Rioja,AR-F,annual,2011,naphtha combustion consumption by to the public,286.7034786,TJ,CH4,3.0,kg/TJ,860.1104358,kg -77000d1e-033e-3c6a-ac17-fa7cb5eddf97,SESCO,II.1.1,La Rioja,AR-F,annual,2011,naphtha combustion consumption by to the public,286.7034786,TJ,N2O,0.6,kg/TJ,172.02208715999998,kg -d6136856-6c96-3e8a-b572-92a6794ca821,SESCO,II.1.1,Mendoza,AR-M,annual,2011,naphtha combustion consumption by to the public,1528.547944,TJ,CO2,73300.0,kg/TJ,112042564.29519999,kg -332a3552-6ae4-367e-96a0-c9f0e8460e20,SESCO,II.1.1,Mendoza,AR-M,annual,2011,naphtha combustion consumption by to the public,1528.547944,TJ,CH4,3.0,kg/TJ,4585.643832,kg -7d8eaa9f-a2f6-3f33-9a38-c44638eebf14,SESCO,II.1.1,Mendoza,AR-M,annual,2011,naphtha combustion consumption by to the public,1528.547944,TJ,N2O,0.6,kg/TJ,917.1287663999999,kg -edbd1faf-a0a2-3bfc-80cb-464b11b566c3,SESCO,II.1.1,Misiones,AR-N,annual,2011,naphtha combustion consumption by to the public,981.8032685999999,TJ,CO2,73300.0,kg/TJ,71966179.58838,kg -cb3385f4-d19a-36b2-bebf-8f5f8d427210,SESCO,II.1.1,Misiones,AR-N,annual,2011,naphtha combustion consumption by to the public,981.8032685999999,TJ,CH4,3.0,kg/TJ,2945.4098058,kg -6feca29c-8c15-34ab-bf19-5db64ec48438,SESCO,II.1.1,Misiones,AR-N,annual,2011,naphtha combustion consumption by to the public,981.8032685999999,TJ,N2O,0.6,kg/TJ,589.0819611599999,kg -dfb39b4f-07c4-33f3-9f69-3902020f6cab,SESCO,II.1.1,Neuquén,AR-Q,annual,2011,naphtha combustion consumption by to the public,822.9377079,TJ,CO2,73300.0,kg/TJ,60321333.98907,kg -bdbeec5d-84ea-35aa-8304-701010b0f6bd,SESCO,II.1.1,Neuquén,AR-Q,annual,2011,naphtha combustion consumption by to the public,822.9377079,TJ,CH4,3.0,kg/TJ,2468.8131237,kg -8741d67d-fd50-35e6-b7f3-d51cb9093c85,SESCO,II.1.1,Neuquén,AR-Q,annual,2011,naphtha combustion consumption by to the public,822.9377079,TJ,N2O,0.6,kg/TJ,493.76262474,kg -ea1db9ea-f407-32c8-b26c-a1bab568126e,SESCO,II.1.1,Rio Negro,AR-R,annual,2011,naphtha combustion consumption by to the public,777.3364753,TJ,CO2,73300.0,kg/TJ,56978763.63948999,kg -5bca19c3-c119-3ed5-866d-316e49de0c57,SESCO,II.1.1,Rio Negro,AR-R,annual,2011,naphtha combustion consumption by to the public,777.3364753,TJ,CH4,3.0,kg/TJ,2332.0094258999998,kg -5efbcd02-89ee-310a-a370-d310f26e97d4,SESCO,II.1.1,Rio Negro,AR-R,annual,2011,naphtha combustion consumption by to the public,777.3364753,TJ,N2O,0.6,kg/TJ,466.40188517999997,kg -e8a58696-6b16-3024-b161-191d24196d84,SESCO,II.1.1,Salta,AR-A,annual,2011,naphtha combustion consumption by to the public,696.9802532,TJ,CO2,73300.0,kg/TJ,51088652.55956,kg -9861bd52-230b-3c18-807d-8cbd6b52b49c,SESCO,II.1.1,Salta,AR-A,annual,2011,naphtha combustion consumption by to the public,696.9802532,TJ,CH4,3.0,kg/TJ,2090.9407596,kg -e3ea9bb6-e44a-3be7-b750-a827057183e6,SESCO,II.1.1,Salta,AR-A,annual,2011,naphtha combustion consumption by to the public,696.9802532,TJ,N2O,0.6,kg/TJ,418.18815192,kg -6147c13e-9dd6-38f7-9783-5fd2af83255f,SESCO,II.1.1,San Juan,AR-J,annual,2011,naphtha combustion consumption by to the public,504.13203609999994,TJ,CO2,73300.0,kg/TJ,36952878.24613,kg -28cfafa3-eddb-3073-b2a8-4bd8483b6082,SESCO,II.1.1,San Juan,AR-J,annual,2011,naphtha combustion consumption by to the public,504.13203609999994,TJ,CH4,3.0,kg/TJ,1512.3961083,kg -062ef391-c487-37d7-9515-656488b45a9e,SESCO,II.1.1,San Juan,AR-J,annual,2011,naphtha combustion consumption by to the public,504.13203609999994,TJ,N2O,0.6,kg/TJ,302.47922165999995,kg -3accce5f-91db-3acb-944c-989a2f8c1387,SESCO,II.1.1,San Luis,AR-D,annual,2011,naphtha combustion consumption by to the public,486.09973719999994,TJ,CO2,73300.0,kg/TJ,35631110.73676,kg -68487bc5-aafd-341f-b31a-546bdc1857ce,SESCO,II.1.1,San Luis,AR-D,annual,2011,naphtha combustion consumption by to the public,486.09973719999994,TJ,CH4,3.0,kg/TJ,1458.2992115999998,kg -52e01ecb-31d8-3c91-8a70-7da89ed4ae30,SESCO,II.1.1,San Luis,AR-D,annual,2011,naphtha combustion consumption by to the public,486.09973719999994,TJ,N2O,0.6,kg/TJ,291.65984231999994,kg -ef8b7d3c-e39b-3576-ab43-ff6c826cb2fc,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2011,naphtha combustion consumption by to the public,541.8420391999999,TJ,CO2,73300.0,kg/TJ,39717021.473359995,kg -adb9dd46-0811-35f5-b050-6eb3dfb4ea98,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2011,naphtha combustion consumption by to the public,541.8420391999999,TJ,CH4,3.0,kg/TJ,1625.5261176,kg -6b93f6f7-c8bb-315b-9741-41776fe2e01d,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2011,naphtha combustion consumption by to the public,541.8420391999999,TJ,N2O,0.6,kg/TJ,325.1052235199999,kg -c1362743-32b9-3526-8252-4045b119e0fb,SESCO,II.1.1,Santa Fe,AR-S,annual,2011,naphtha combustion consumption by to the public,2859.5800925999997,TJ,CO2,73300.0,kg/TJ,209607220.78757998,kg -21551f09-01b0-3c80-85ea-1ec065a4ea62,SESCO,II.1.1,Santa Fe,AR-S,annual,2011,naphtha combustion consumption by to the public,2859.5800925999997,TJ,CH4,3.0,kg/TJ,8578.7402778,kg -5f8fc2ee-33fa-39dc-9508-a578f6fa54c0,SESCO,II.1.1,Santa Fe,AR-S,annual,2011,naphtha combustion consumption by to the public,2859.5800925999997,TJ,N2O,0.6,kg/TJ,1715.7480555599998,kg -6a0a4169-a89a-385d-9f84-b77fc8e42f8d,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2011,naphtha combustion consumption by to the public,482.07017319999994,TJ,CO2,73300.0,kg/TJ,35335743.69555999,kg -66be7c6d-9fe1-3e3d-b205-b34d3c6f4191,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2011,naphtha combustion consumption by to the public,482.07017319999994,TJ,CH4,3.0,kg/TJ,1446.2105195999998,kg -5451610b-6825-3b61-b5fe-fb1a7a454e7d,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2011,naphtha combustion consumption by to the public,482.07017319999994,TJ,N2O,0.6,kg/TJ,289.24210392,kg -6a0cd2c2-901a-38dc-80ab-a09d12990a4d,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2011,naphtha combustion consumption by to the public,31.9342947,TJ,CO2,73300.0,kg/TJ,2340783.80151,kg -2fd75143-0883-3c78-a266-d34cc3f4a1a9,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2011,naphtha combustion consumption by to the public,31.9342947,TJ,CH4,3.0,kg/TJ,95.8028841,kg -ef70c7a2-a89a-325e-814d-4e153929546b,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2011,naphtha combustion consumption by to the public,31.9342947,TJ,N2O,0.6,kg/TJ,19.16057682,kg -4f67fa04-c788-39b2-8e6a-08494405edaf,SESCO,II.1.1,Tucuman,AR-T,annual,2011,naphtha combustion consumption by to the public,717.2623919999999,TJ,CO2,73300.0,kg/TJ,52575333.33359999,kg -92d9b148-5e46-3906-907f-8af89acbac43,SESCO,II.1.1,Tucuman,AR-T,annual,2011,naphtha combustion consumption by to the public,717.2623919999999,TJ,CH4,3.0,kg/TJ,2151.787176,kg -dc3b0f61-0a44-307b-8c03-472a612ccc95,SESCO,II.1.1,Tucuman,AR-T,annual,2011,naphtha combustion consumption by to the public,717.2623919999999,TJ,N2O,0.6,kg/TJ,430.3574351999999,kg -7f09e98d-7072-3c20-b718-594d8f5d2a39,SESCO,II.1.1,Buenos Aires,AR-B,annual,2011,naphtha combustion consumption by freight transport,27.333875799999998,TJ,CO2,73300.0,kg/TJ,2003573.0961399998,kg -8e88ac37-b67a-3300-8a0f-e82d02389f6c,SESCO,II.1.1,Buenos Aires,AR-B,annual,2011,naphtha combustion consumption by freight transport,27.333875799999998,TJ,CH4,3.0,kg/TJ,82.00162739999999,kg -439ac43b-f988-3e23-aed3-46e49f32fa04,SESCO,II.1.1,Buenos Aires,AR-B,annual,2011,naphtha combustion consumption by freight transport,27.333875799999998,TJ,N2O,0.6,kg/TJ,16.40032548,kg -5e238956-172f-3c4c-a865-9f9987fecd7f,SESCO,II.1.1,Capital Federal,AR-C,annual,2011,naphtha combustion consumption by freight transport,4.365361,TJ,CO2,73300.0,kg/TJ,319980.9613,kg -c0e1cd73-7809-3225-9d1c-38755f4b9960,SESCO,II.1.1,Capital Federal,AR-C,annual,2011,naphtha combustion consumption by freight transport,4.365361,TJ,CH4,3.0,kg/TJ,13.096083,kg -0ef37612-bf61-33d0-815b-0f6a348ce98d,SESCO,II.1.1,Capital Federal,AR-C,annual,2011,naphtha combustion consumption by freight transport,4.365361,TJ,N2O,0.6,kg/TJ,2.6192166,kg -81accab0-adf3-337b-b4aa-d44fc93e996b,SESCO,II.1.1,Catamarca,AR-K,annual,2011,naphtha combustion consumption by freight transport,0.0335797,TJ,CO2,73300.0,kg/TJ,2461.3920099999996,kg -fbe6d11d-93ab-3c54-b9d2-ac6abc387cb4,SESCO,II.1.1,Catamarca,AR-K,annual,2011,naphtha combustion consumption by freight transport,0.0335797,TJ,CH4,3.0,kg/TJ,0.1007391,kg -fa14c1c5-2a59-39a1-baca-75b4053034ab,SESCO,II.1.1,Catamarca,AR-K,annual,2011,naphtha combustion consumption by freight transport,0.0335797,TJ,N2O,0.6,kg/TJ,0.020147819999999997,kg -60f98696-cf44-3e3f-a94e-fb217792ac88,SESCO,II.1.1,Chaco,AR-H,annual,2011,naphtha combustion consumption by freight transport,0.5036955,TJ,CO2,73300.0,kg/TJ,36920.88015,kg -8af53c8c-c775-3ef4-b931-cb04003ecabc,SESCO,II.1.1,Chaco,AR-H,annual,2011,naphtha combustion consumption by freight transport,0.5036955,TJ,CH4,3.0,kg/TJ,1.5110864999999998,kg -47e4296e-327a-36da-a984-6f30f92e399e,SESCO,II.1.1,Chaco,AR-H,annual,2011,naphtha combustion consumption by freight transport,0.5036955,TJ,N2O,0.6,kg/TJ,0.30221729999999997,kg -8d299b70-d5e6-3f09-8ba9-38348dd93c02,SESCO,II.1.1,Chubut,AR-U,annual,2011,naphtha combustion consumption by freight transport,0.7387533999999999,TJ,CO2,73300.0,kg/TJ,54150.62421999999,kg -e97ceda8-4009-3e9d-af6f-657ce7586cee,SESCO,II.1.1,Chubut,AR-U,annual,2011,naphtha combustion consumption by freight transport,0.7387533999999999,TJ,CH4,3.0,kg/TJ,2.2162602,kg -a7cab1da-5736-3b4d-97ce-bb7cde945eb3,SESCO,II.1.1,Chubut,AR-U,annual,2011,naphtha combustion consumption by freight transport,0.7387533999999999,TJ,N2O,0.6,kg/TJ,0.4432520399999999,kg -c07ee73a-2542-38b3-a07d-fc740229897a,SESCO,II.1.1,Corrientes,AR-W,annual,2011,naphtha combustion consumption by freight transport,0.671594,TJ,CO2,73300.0,kg/TJ,49227.8402,kg -14d67396-cdee-3b5b-96ec-90861d0b7aba,SESCO,II.1.1,Corrientes,AR-W,annual,2011,naphtha combustion consumption by freight transport,0.671594,TJ,CH4,3.0,kg/TJ,2.0147820000000003,kg -e4fc945c-066b-3770-8317-feb71f92cfb2,SESCO,II.1.1,Corrientes,AR-W,annual,2011,naphtha combustion consumption by freight transport,0.671594,TJ,N2O,0.6,kg/TJ,0.4029564,kg -5fe7a6a2-64ab-3360-9149-561e57610598,SESCO,II.1.1,Córdoba,AR-X,annual,2011,naphtha combustion consumption by freight transport,2.5520571999999997,TJ,CO2,73300.0,kg/TJ,187065.79275999998,kg -7483cd2f-9504-3a88-b013-7a49f59b3a2f,SESCO,II.1.1,Córdoba,AR-X,annual,2011,naphtha combustion consumption by freight transport,2.5520571999999997,TJ,CH4,3.0,kg/TJ,7.656171599999999,kg -ffbd4aa3-a3c3-31f7-8148-8f3fbdb0931e,SESCO,II.1.1,Córdoba,AR-X,annual,2011,naphtha combustion consumption by freight transport,2.5520571999999997,TJ,N2O,0.6,kg/TJ,1.5312343199999998,kg -32f7d0bd-472d-3ee4-a0e2-1d1189fb63e9,SESCO,II.1.1,Entre Rios,AR-E,annual,2011,naphtha combustion consumption by freight transport,1.007391,TJ,CO2,73300.0,kg/TJ,73841.7603,kg -c37d27e5-e477-3dde-ba49-8ebb839950e3,SESCO,II.1.1,Entre Rios,AR-E,annual,2011,naphtha combustion consumption by freight transport,1.007391,TJ,CH4,3.0,kg/TJ,3.0221729999999996,kg -b06cbca5-5a12-3714-9d62-ce6cbd9b62c2,SESCO,II.1.1,Entre Rios,AR-E,annual,2011,naphtha combustion consumption by freight transport,1.007391,TJ,N2O,0.6,kg/TJ,0.6044345999999999,kg -22555468-b853-3375-8543-5c8aa15737fa,SESCO,II.1.1,Formosa,AR-P,annual,2011,naphtha combustion consumption by freight transport,0.0335797,TJ,CO2,73300.0,kg/TJ,2461.3920099999996,kg -bc51265c-ebb4-3617-b40f-b71d79c481e1,SESCO,II.1.1,Formosa,AR-P,annual,2011,naphtha combustion consumption by freight transport,0.0335797,TJ,CH4,3.0,kg/TJ,0.1007391,kg -1cc97f5c-0918-3c32-ad95-770cde51140d,SESCO,II.1.1,Formosa,AR-P,annual,2011,naphtha combustion consumption by freight transport,0.0335797,TJ,N2O,0.6,kg/TJ,0.020147819999999997,kg -2f68b57b-2818-3434-83b5-c3fc54bc1004,SESCO,II.1.1,Jujuy,AR-Y,annual,2011,naphtha combustion consumption by freight transport,0.1343188,TJ,CO2,73300.0,kg/TJ,9845.568039999998,kg -0d0ca93f-2231-335b-8c3b-a4e51f2a79e2,SESCO,II.1.1,Jujuy,AR-Y,annual,2011,naphtha combustion consumption by freight transport,0.1343188,TJ,CH4,3.0,kg/TJ,0.4029564,kg -7fb85025-4227-3bdd-8bf7-cd64ac2b95a4,SESCO,II.1.1,Jujuy,AR-Y,annual,2011,naphtha combustion consumption by freight transport,0.1343188,TJ,N2O,0.6,kg/TJ,0.08059127999999999,kg -a54382ca-3351-3820-bce5-80f892d6fd01,SESCO,II.1.1,La Pampa,AR-L,annual,2011,naphtha combustion consumption by freight transport,0.2350579,TJ,CO2,73300.0,kg/TJ,17229.74407,kg -eff7f516-4f05-3529-a5e5-4e1c7fcd35c8,SESCO,II.1.1,La Pampa,AR-L,annual,2011,naphtha combustion consumption by freight transport,0.2350579,TJ,CH4,3.0,kg/TJ,0.7051737,kg -a04fdac5-de2d-32ce-aa1d-85aa4b10e180,SESCO,II.1.1,La Pampa,AR-L,annual,2011,naphtha combustion consumption by freight transport,0.2350579,TJ,N2O,0.6,kg/TJ,0.14103474,kg -f032dbd3-3012-38ae-877c-feae38c9fdbf,SESCO,II.1.1,La Rioja,AR-F,annual,2011,naphtha combustion consumption by freight transport,0.10073909999999998,TJ,CO2,73300.0,kg/TJ,7384.176029999999,kg -5a23d29c-f1e0-3183-81d4-2f85ed6a9e41,SESCO,II.1.1,La Rioja,AR-F,annual,2011,naphtha combustion consumption by freight transport,0.10073909999999998,TJ,CH4,3.0,kg/TJ,0.30221729999999997,kg -2f0023cf-2eb8-3e67-88d6-5ac45550fdfb,SESCO,II.1.1,La Rioja,AR-F,annual,2011,naphtha combustion consumption by freight transport,0.10073909999999998,TJ,N2O,0.6,kg/TJ,0.06044345999999999,kg -651273da-6733-39fb-bb17-f0997f737885,SESCO,II.1.1,Mendoza,AR-M,annual,2011,naphtha combustion consumption by freight transport,2.5520571999999997,TJ,CO2,73300.0,kg/TJ,187065.79275999998,kg -c3210227-39d0-3fb6-9f00-2f3bda72d4b0,SESCO,II.1.1,Mendoza,AR-M,annual,2011,naphtha combustion consumption by freight transport,2.5520571999999997,TJ,CH4,3.0,kg/TJ,7.656171599999999,kg -9ea9809a-4b78-3efe-87c4-2a4e65858d80,SESCO,II.1.1,Mendoza,AR-M,annual,2011,naphtha combustion consumption by freight transport,2.5520571999999997,TJ,N2O,0.6,kg/TJ,1.5312343199999998,kg -da21e52c-2ed1-3ebb-8cc1-9a0fe67eb8b8,SESCO,II.1.1,Misiones,AR-N,annual,2011,naphtha combustion consumption by freight transport,0.6380142999999999,TJ,CO2,73300.0,kg/TJ,46766.448189999996,kg -d4171ca8-1dca-358d-964b-84885b6b5a97,SESCO,II.1.1,Misiones,AR-N,annual,2011,naphtha combustion consumption by freight transport,0.6380142999999999,TJ,CH4,3.0,kg/TJ,1.9140428999999997,kg -aabedebd-9aa6-38b1-bc36-5457a86576d9,SESCO,II.1.1,Misiones,AR-N,annual,2011,naphtha combustion consumption by freight transport,0.6380142999999999,TJ,N2O,0.6,kg/TJ,0.38280857999999995,kg -070cb4f0-6cf8-3280-b11c-078ce5e8662a,SESCO,II.1.1,Neuquén,AR-Q,annual,2011,naphtha combustion consumption by freight transport,0.8394925,TJ,CO2,73300.0,kg/TJ,61534.80025,kg -aedfcc9f-fe07-32ce-a368-cfa024237530,SESCO,II.1.1,Neuquén,AR-Q,annual,2011,naphtha combustion consumption by freight transport,0.8394925,TJ,CH4,3.0,kg/TJ,2.5184775,kg -3d597daf-e7a6-34ce-bd9e-f4f9e24a3040,SESCO,II.1.1,Neuquén,AR-Q,annual,2011,naphtha combustion consumption by freight transport,0.8394925,TJ,N2O,0.6,kg/TJ,0.5036955,kg -2d61186c-5cc9-3542-8105-3868910179dc,SESCO,II.1.1,Rio Negro,AR-R,annual,2011,naphtha combustion consumption by freight transport,0.8394925,TJ,CO2,73300.0,kg/TJ,61534.80025,kg -8feaa39c-f2a4-3550-8123-a305d69a96cc,SESCO,II.1.1,Rio Negro,AR-R,annual,2011,naphtha combustion consumption by freight transport,0.8394925,TJ,CH4,3.0,kg/TJ,2.5184775,kg -eaa90382-ef82-3df2-bc83-fb7bd90f6d5b,SESCO,II.1.1,Rio Negro,AR-R,annual,2011,naphtha combustion consumption by freight transport,0.8394925,TJ,N2O,0.6,kg/TJ,0.5036955,kg -383404aa-578e-3b2f-a944-47ec4de6ea18,SESCO,II.1.1,Salta,AR-A,annual,2011,naphtha combustion consumption by freight transport,0.671594,TJ,CO2,73300.0,kg/TJ,49227.8402,kg -f7d15d72-91dc-3132-8398-ed91b07aecb5,SESCO,II.1.1,Salta,AR-A,annual,2011,naphtha combustion consumption by freight transport,0.671594,TJ,CH4,3.0,kg/TJ,2.0147820000000003,kg -c5c05b35-867f-3f91-9607-bcb106521f7c,SESCO,II.1.1,Salta,AR-A,annual,2011,naphtha combustion consumption by freight transport,0.671594,TJ,N2O,0.6,kg/TJ,0.4029564,kg -a4e310c8-064d-3f14-b60a-971c51032d53,SESCO,II.1.1,San Juan,AR-J,annual,2011,naphtha combustion consumption by freight transport,0.1678985,TJ,CO2,73300.0,kg/TJ,12306.96005,kg -6e1026bb-e7aa-3e86-bfdc-2b8bf064ab0b,SESCO,II.1.1,San Juan,AR-J,annual,2011,naphtha combustion consumption by freight transport,0.1678985,TJ,CH4,3.0,kg/TJ,0.5036955000000001,kg -ff03980d-5993-3912-8ebf-dc426c7f7e95,SESCO,II.1.1,San Juan,AR-J,annual,2011,naphtha combustion consumption by freight transport,0.1678985,TJ,N2O,0.6,kg/TJ,0.1007391,kg -c11f7fbe-a0ea-3de3-a08a-f97f6e092d1c,SESCO,II.1.1,San Luis,AR-D,annual,2011,naphtha combustion consumption by freight transport,0.36937669999999995,TJ,CO2,73300.0,kg/TJ,27075.312109999995,kg -95d64d2e-fe16-37fb-bdc8-badc9cd465d1,SESCO,II.1.1,San Luis,AR-D,annual,2011,naphtha combustion consumption by freight transport,0.36937669999999995,TJ,CH4,3.0,kg/TJ,1.1081301,kg -83604b7c-8e06-3bbc-bfff-bfc250497388,SESCO,II.1.1,San Luis,AR-D,annual,2011,naphtha combustion consumption by freight transport,0.36937669999999995,TJ,N2O,0.6,kg/TJ,0.22162601999999995,kg -64fcee28-0d7e-340f-a439-7e1dcf0974d3,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2011,naphtha combustion consumption by freight transport,0.2350579,TJ,CO2,73300.0,kg/TJ,17229.74407,kg -1bfa39e6-c4ce-3196-bdf3-2fd161e0de52,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2011,naphtha combustion consumption by freight transport,0.2350579,TJ,CH4,3.0,kg/TJ,0.7051737,kg -d13c44b0-dafc-3c7b-a941-1fd832929b24,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2011,naphtha combustion consumption by freight transport,0.2350579,TJ,N2O,0.6,kg/TJ,0.14103474,kg -255dacc6-086c-3996-a919-558e63a85ac5,SESCO,II.1.1,Santa Fe,AR-S,annual,2011,naphtha combustion consumption by freight transport,4.0631436999999995,TJ,CO2,73300.0,kg/TJ,297828.43321,kg -9d36d043-b496-366b-94e5-e621b59001ff,SESCO,II.1.1,Santa Fe,AR-S,annual,2011,naphtha combustion consumption by freight transport,4.0631436999999995,TJ,CH4,3.0,kg/TJ,12.189431099999998,kg -010e6255-1655-38c5-a935-59286e22e70d,SESCO,II.1.1,Santa Fe,AR-S,annual,2011,naphtha combustion consumption by freight transport,4.0631436999999995,TJ,N2O,0.6,kg/TJ,2.4378862199999998,kg -38519526-cfcc-3842-8f2b-041741a0538f,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2011,naphtha combustion consumption by freight transport,0.20147819999999997,TJ,CO2,73300.0,kg/TJ,14768.352059999997,kg -e23f34ee-8868-3274-918d-effba886e772,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2011,naphtha combustion consumption by freight transport,0.20147819999999997,TJ,CH4,3.0,kg/TJ,0.6044345999999999,kg -6dbf873f-e44e-3bd8-9576-a89db0d71c03,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2011,naphtha combustion consumption by freight transport,0.20147819999999997,TJ,N2O,0.6,kg/TJ,0.12088691999999998,kg -df1746a9-f834-3615-9b2a-c2d9f3dddfda,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2011,naphtha combustion consumption by freight transport,0.10073909999999998,TJ,CO2,73300.0,kg/TJ,7384.176029999999,kg -47858f80-1db0-3f9f-96a1-ebb622e2c6b6,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2011,naphtha combustion consumption by freight transport,0.10073909999999998,TJ,CH4,3.0,kg/TJ,0.30221729999999997,kg -039fc0e1-d15f-3ed1-a8dc-cfde1b286d40,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2011,naphtha combustion consumption by freight transport,0.10073909999999998,TJ,N2O,0.6,kg/TJ,0.06044345999999999,kg -bce3349d-92a7-3e9e-af09-d7ccc09b6a04,SESCO,II.1.1,Tucuman,AR-T,annual,2011,naphtha combustion consumption by freight transport,0.5708548999999999,TJ,CO2,73300.0,kg/TJ,41843.66417,kg -36420b79-f09a-3656-9260-2c46c4b233b4,SESCO,II.1.1,Tucuman,AR-T,annual,2011,naphtha combustion consumption by freight transport,0.5708548999999999,TJ,CH4,3.0,kg/TJ,1.7125646999999997,kg -461c82a0-0b00-3f96-938d-23007342ad93,SESCO,II.1.1,Tucuman,AR-T,annual,2011,naphtha combustion consumption by freight transport,0.5708548999999999,TJ,N2O,0.6,kg/TJ,0.34251293999999993,kg -012f683b-1a8b-324b-b6fa-7ea9e8db8f6b,SESCO,II.1.1,Buenos Aires,AR-B,annual,2011,naphtha combustion consumption by freight transport,30.423208199999998,TJ,CO2,73300.0,kg/TJ,2230021.16106,kg -7ebc00a1-6139-3b01-8bcf-701e6896c989,SESCO,II.1.1,Buenos Aires,AR-B,annual,2011,naphtha combustion consumption by freight transport,30.423208199999998,TJ,CH4,3.0,kg/TJ,91.26962459999999,kg -f39865b3-fa5d-32e6-8b46-628325b0bef2,SESCO,II.1.1,Buenos Aires,AR-B,annual,2011,naphtha combustion consumption by freight transport,30.423208199999998,TJ,N2O,0.6,kg/TJ,18.25392492,kg -1c34e6b6-1305-35aa-9ff0-ef6e94c72818,SESCO,II.1.1,Capital Federal,AR-C,annual,2011,naphtha combustion consumption by freight transport,8.2270265,TJ,CO2,73300.0,kg/TJ,603041.04245,kg -2f551c5b-c38c-3929-b011-a6f2e65d7916,SESCO,II.1.1,Capital Federal,AR-C,annual,2011,naphtha combustion consumption by freight transport,8.2270265,TJ,CH4,3.0,kg/TJ,24.681079499999996,kg -0678b380-4590-3762-bf76-54d1fc6992d6,SESCO,II.1.1,Capital Federal,AR-C,annual,2011,naphtha combustion consumption by freight transport,8.2270265,TJ,N2O,0.6,kg/TJ,4.9362159,kg -81accab0-adf3-337b-b4aa-d44fc93e996b,SESCO,II.1.1,Catamarca,AR-K,annual,2011,naphtha combustion consumption by freight transport,0.0335797,TJ,CO2,73300.0,kg/TJ,2461.3920099999996,kg -fbe6d11d-93ab-3c54-b9d2-ac6abc387cb4,SESCO,II.1.1,Catamarca,AR-K,annual,2011,naphtha combustion consumption by freight transport,0.0335797,TJ,CH4,3.0,kg/TJ,0.1007391,kg -fa14c1c5-2a59-39a1-baca-75b4053034ab,SESCO,II.1.1,Catamarca,AR-K,annual,2011,naphtha combustion consumption by freight transport,0.0335797,TJ,N2O,0.6,kg/TJ,0.020147819999999997,kg -00800d31-b42c-3d86-8738-b338d68ced3e,SESCO,II.1.1,Chaco,AR-H,annual,2011,naphtha combustion consumption by freight transport,0.8059127999999999,TJ,CO2,73300.0,kg/TJ,59073.40823999999,kg -79d23eb9-7771-3b43-b752-9a166774c5f0,SESCO,II.1.1,Chaco,AR-H,annual,2011,naphtha combustion consumption by freight transport,0.8059127999999999,TJ,CH4,3.0,kg/TJ,2.4177383999999997,kg -370d119f-a200-3fde-a7be-6934b2dad243,SESCO,II.1.1,Chaco,AR-H,annual,2011,naphtha combustion consumption by freight transport,0.8059127999999999,TJ,N2O,0.6,kg/TJ,0.4835476799999999,kg -9050f80b-a522-399c-aa0f-36b5dae2b492,SESCO,II.1.1,Chubut,AR-U,annual,2011,naphtha combustion consumption by freight transport,0.6044345999999999,TJ,CO2,73300.0,kg/TJ,44305.05617999999,kg -e156aa20-64cc-32e9-89c6-8d7a18955e64,SESCO,II.1.1,Chubut,AR-U,annual,2011,naphtha combustion consumption by freight transport,0.6044345999999999,TJ,CH4,3.0,kg/TJ,1.8133038,kg -484d2208-4c51-3590-ad4d-720329800d78,SESCO,II.1.1,Chubut,AR-U,annual,2011,naphtha combustion consumption by freight transport,0.6044345999999999,TJ,N2O,0.6,kg/TJ,0.36266075999999997,kg -3595e322-639f-3c22-9c37-a354e2a453a8,SESCO,II.1.1,Corrientes,AR-W,annual,2011,naphtha combustion consumption by freight transport,0.5372752,TJ,CO2,73300.0,kg/TJ,39382.27215999999,kg -54416d98-5087-3472-857b-8bf5abf7aa61,SESCO,II.1.1,Corrientes,AR-W,annual,2011,naphtha combustion consumption by freight transport,0.5372752,TJ,CH4,3.0,kg/TJ,1.6118256,kg -4fbf5609-9b20-3492-ad20-371c597cb454,SESCO,II.1.1,Corrientes,AR-W,annual,2011,naphtha combustion consumption by freight transport,0.5372752,TJ,N2O,0.6,kg/TJ,0.32236511999999995,kg -0e5c4403-bfc1-36e4-ac66-a4bebe1b2881,SESCO,II.1.1,Córdoba,AR-X,annual,2011,naphtha combustion consumption by freight transport,2.4177383999999997,TJ,CO2,73300.0,kg/TJ,177220.22471999997,kg -05978e6e-d1c6-3561-8f7e-a5f9fc3967c7,SESCO,II.1.1,Córdoba,AR-X,annual,2011,naphtha combustion consumption by freight transport,2.4177383999999997,TJ,CH4,3.0,kg/TJ,7.2532152,kg -826e367b-17bd-3be5-b78c-23c62aea978f,SESCO,II.1.1,Córdoba,AR-X,annual,2011,naphtha combustion consumption by freight transport,2.4177383999999997,TJ,N2O,0.6,kg/TJ,1.4506430399999999,kg -6e18fcd2-eb2e-3224-8bea-d27f6fbb02a1,SESCO,II.1.1,Entre Rios,AR-E,annual,2011,naphtha combustion consumption by freight transport,0.9402316,TJ,CO2,73300.0,kg/TJ,68918.97628,kg -0c9367e8-8507-315e-a1f5-0d64358fc5df,SESCO,II.1.1,Entre Rios,AR-E,annual,2011,naphtha combustion consumption by freight transport,0.9402316,TJ,CH4,3.0,kg/TJ,2.8206948,kg -59dc8e6b-2fe6-3c6a-87e9-98eab2b41ca4,SESCO,II.1.1,Entre Rios,AR-E,annual,2011,naphtha combustion consumption by freight transport,0.9402316,TJ,N2O,0.6,kg/TJ,0.56413896,kg -360bd600-d7ed-3911-93e4-aa9106d0b25d,SESCO,II.1.1,Formosa,AR-P,annual,2011,naphtha combustion consumption by freight transport,0.0671594,TJ,CO2,73300.0,kg/TJ,4922.784019999999,kg -1711d9a5-e191-33ae-9281-fe7a8777f12e,SESCO,II.1.1,Formosa,AR-P,annual,2011,naphtha combustion consumption by freight transport,0.0671594,TJ,CH4,3.0,kg/TJ,0.2014782,kg -1b483d69-6ff8-3e7b-a0be-f700c30610b8,SESCO,II.1.1,Formosa,AR-P,annual,2011,naphtha combustion consumption by freight transport,0.0671594,TJ,N2O,0.6,kg/TJ,0.040295639999999994,kg -69d5a740-f822-3411-bd11-c8189213b6bf,SESCO,II.1.1,Jujuy,AR-Y,annual,2011,naphtha combustion consumption by freight transport,0.0671594,TJ,CO2,73300.0,kg/TJ,4922.784019999999,kg -d106d6b4-f6b1-3af3-93a5-b4f6b7612db8,SESCO,II.1.1,Jujuy,AR-Y,annual,2011,naphtha combustion consumption by freight transport,0.0671594,TJ,CH4,3.0,kg/TJ,0.2014782,kg -486ed45b-4971-3165-86c8-5adf67deddec,SESCO,II.1.1,Jujuy,AR-Y,annual,2011,naphtha combustion consumption by freight transport,0.0671594,TJ,N2O,0.6,kg/TJ,0.040295639999999994,kg -e992e217-becb-3551-9bc2-4f5c614c8e73,SESCO,II.1.1,La Pampa,AR-L,annual,2011,naphtha combustion consumption by freight transport,0.20147819999999997,TJ,CO2,73300.0,kg/TJ,14768.352059999997,kg -e02d9202-d267-34f5-af52-dd21a122e42b,SESCO,II.1.1,La Pampa,AR-L,annual,2011,naphtha combustion consumption by freight transport,0.20147819999999997,TJ,CH4,3.0,kg/TJ,0.6044345999999999,kg -1db4b36c-d462-33d8-88d0-b52c5dabe7b2,SESCO,II.1.1,La Pampa,AR-L,annual,2011,naphtha combustion consumption by freight transport,0.20147819999999997,TJ,N2O,0.6,kg/TJ,0.12088691999999998,kg -5c083e9d-2d98-33fa-9460-20b7dd3431c6,SESCO,II.1.1,La Rioja,AR-F,annual,2011,naphtha combustion consumption by freight transport,0.0671594,TJ,CO2,73300.0,kg/TJ,4922.784019999999,kg -71414c0e-75de-3585-96f6-e6df13982b2d,SESCO,II.1.1,La Rioja,AR-F,annual,2011,naphtha combustion consumption by freight transport,0.0671594,TJ,CH4,3.0,kg/TJ,0.2014782,kg -32da6db0-c839-37ed-a53c-2ddea382efaf,SESCO,II.1.1,La Rioja,AR-F,annual,2011,naphtha combustion consumption by freight transport,0.0671594,TJ,N2O,0.6,kg/TJ,0.040295639999999994,kg -248c5efc-0117-3301-b905-cba451705b0a,SESCO,II.1.1,Mendoza,AR-M,annual,2011,naphtha combustion consumption by freight transport,1.6454053,TJ,CO2,73300.0,kg/TJ,120608.20848999999,kg -78f14bee-7d22-34c8-88d3-e9848b99c71d,SESCO,II.1.1,Mendoza,AR-M,annual,2011,naphtha combustion consumption by freight transport,1.6454053,TJ,CH4,3.0,kg/TJ,4.9362159,kg -57cfbd28-4d8f-30ec-9d2a-4fa8e5d7b5f7,SESCO,II.1.1,Mendoza,AR-M,annual,2011,naphtha combustion consumption by freight transport,1.6454053,TJ,N2O,0.6,kg/TJ,0.9872431799999999,kg -6f9e10fb-f652-3f90-87ce-8ac9d82da1a2,SESCO,II.1.1,Misiones,AR-N,annual,2011,naphtha combustion consumption by freight transport,0.4701158,TJ,CO2,73300.0,kg/TJ,34459.48814,kg -7eb2d0ce-8b80-39e3-8e89-abc059300946,SESCO,II.1.1,Misiones,AR-N,annual,2011,naphtha combustion consumption by freight transport,0.4701158,TJ,CH4,3.0,kg/TJ,1.4103474,kg -b9426a77-a4ac-3799-a168-b27d0f82f67e,SESCO,II.1.1,Misiones,AR-N,annual,2011,naphtha combustion consumption by freight transport,0.4701158,TJ,N2O,0.6,kg/TJ,0.28206948,kg -8fa522a8-0179-33b1-93c9-c2dff96fdc97,SESCO,II.1.1,Neuquén,AR-Q,annual,2011,naphtha combustion consumption by freight transport,0.6380142999999999,TJ,CO2,73300.0,kg/TJ,46766.448189999996,kg -7104d559-4853-32bc-8646-3211f5bd7616,SESCO,II.1.1,Neuquén,AR-Q,annual,2011,naphtha combustion consumption by freight transport,0.6380142999999999,TJ,CH4,3.0,kg/TJ,1.9140428999999997,kg -b7d6af82-8810-3e28-9a5c-428602ca6ba2,SESCO,II.1.1,Neuquén,AR-Q,annual,2011,naphtha combustion consumption by freight transport,0.6380142999999999,TJ,N2O,0.6,kg/TJ,0.38280857999999995,kg -719b6521-ef2d-3c79-8df5-4c32d0cf89d8,SESCO,II.1.1,Rio Negro,AR-R,annual,2011,naphtha combustion consumption by freight transport,0.6044345999999999,TJ,CO2,73300.0,kg/TJ,44305.05617999999,kg -9691f37e-5a4b-3820-89f7-d3fd09be53ca,SESCO,II.1.1,Rio Negro,AR-R,annual,2011,naphtha combustion consumption by freight transport,0.6044345999999999,TJ,CH4,3.0,kg/TJ,1.8133038,kg -ac537d70-a5bc-3970-9895-9a09a91cd522,SESCO,II.1.1,Rio Negro,AR-R,annual,2011,naphtha combustion consumption by freight transport,0.6044345999999999,TJ,N2O,0.6,kg/TJ,0.36266075999999997,kg -15a0dba1-fdf9-3d59-862a-c34ce653bbd8,SESCO,II.1.1,Salta,AR-A,annual,2011,naphtha combustion consumption by freight transport,0.4365361,TJ,CO2,73300.0,kg/TJ,31998.096129999998,kg -99796f22-251b-32f6-96cb-fbeef09351d4,SESCO,II.1.1,Salta,AR-A,annual,2011,naphtha combustion consumption by freight transport,0.4365361,TJ,CH4,3.0,kg/TJ,1.3096082999999998,kg -c600ba61-c3ff-331b-bf7b-46d698278ab9,SESCO,II.1.1,Salta,AR-A,annual,2011,naphtha combustion consumption by freight transport,0.4365361,TJ,N2O,0.6,kg/TJ,0.26192166,kg -8e2488b4-6a23-30b1-b549-40b79185f56e,SESCO,II.1.1,San Juan,AR-J,annual,2011,naphtha combustion consumption by freight transport,0.1343188,TJ,CO2,73300.0,kg/TJ,9845.568039999998,kg -c1112b1d-de7c-33de-8189-59c79831e380,SESCO,II.1.1,San Juan,AR-J,annual,2011,naphtha combustion consumption by freight transport,0.1343188,TJ,CH4,3.0,kg/TJ,0.4029564,kg -f9a35c29-94c5-3ae8-b79f-9b84d3988f7d,SESCO,II.1.1,San Juan,AR-J,annual,2011,naphtha combustion consumption by freight transport,0.1343188,TJ,N2O,0.6,kg/TJ,0.08059127999999999,kg -87d2ef54-a0df-3dbb-af88-30f1d8a281c4,SESCO,II.1.1,San Luis,AR-D,annual,2011,naphtha combustion consumption by freight transport,0.2686376,TJ,CO2,73300.0,kg/TJ,19691.136079999997,kg -e7170331-0829-3954-bf9b-efc8a02b326b,SESCO,II.1.1,San Luis,AR-D,annual,2011,naphtha combustion consumption by freight transport,0.2686376,TJ,CH4,3.0,kg/TJ,0.8059128,kg -846c067b-6d4b-395a-9749-653c88ef264e,SESCO,II.1.1,San Luis,AR-D,annual,2011,naphtha combustion consumption by freight transport,0.2686376,TJ,N2O,0.6,kg/TJ,0.16118255999999997,kg -d923db9f-90fd-3406-862f-d8deeba1904b,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2011,naphtha combustion consumption by freight transport,0.1343188,TJ,CO2,73300.0,kg/TJ,9845.568039999998,kg -faf33348-2345-330b-afb5-1a0551b1eb5b,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2011,naphtha combustion consumption by freight transport,0.1343188,TJ,CH4,3.0,kg/TJ,0.4029564,kg -14890568-c669-3b48-b1ac-4446655128be,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2011,naphtha combustion consumption by freight transport,0.1343188,TJ,N2O,0.6,kg/TJ,0.08059127999999999,kg -15be5887-c2b3-36f9-b497-1d39550d3b3b,SESCO,II.1.1,Santa Fe,AR-S,annual,2011,naphtha combustion consumption by freight transport,3.7609264,TJ,CO2,73300.0,kg/TJ,275675.90512,kg -b2ae24d0-64bb-3b7e-b9cd-8387222ed2c3,SESCO,II.1.1,Santa Fe,AR-S,annual,2011,naphtha combustion consumption by freight transport,3.7609264,TJ,CH4,3.0,kg/TJ,11.2827792,kg -f64de856-0bf9-37e6-9a15-fd8b0f130fb8,SESCO,II.1.1,Santa Fe,AR-S,annual,2011,naphtha combustion consumption by freight transport,3.7609264,TJ,N2O,0.6,kg/TJ,2.25655584,kg -fc7d3748-bc57-37e2-a85f-6b8cc212ab52,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2011,naphtha combustion consumption by freight transport,0.10073909999999998,TJ,CO2,73300.0,kg/TJ,7384.176029999999,kg -071af27a-6381-35d7-96ee-f82599a8ac91,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2011,naphtha combustion consumption by freight transport,0.10073909999999998,TJ,CH4,3.0,kg/TJ,0.30221729999999997,kg -b2a1d65a-1e5e-3a96-a238-dc624274066d,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2011,naphtha combustion consumption by freight transport,0.10073909999999998,TJ,N2O,0.6,kg/TJ,0.06044345999999999,kg -fa926560-7331-3588-890d-90b6ea5ec0bd,SESCO,II.1.1,Tucuman,AR-T,annual,2011,naphtha combustion consumption by freight transport,0.6380142999999999,TJ,CO2,73300.0,kg/TJ,46766.448189999996,kg -9b257886-3eee-34fd-9574-52c853851098,SESCO,II.1.1,Tucuman,AR-T,annual,2011,naphtha combustion consumption by freight transport,0.6380142999999999,TJ,CH4,3.0,kg/TJ,1.9140428999999997,kg -d90904a8-638f-32d5-9e95-c8f6661ca059,SESCO,II.1.1,Tucuman,AR-T,annual,2011,naphtha combustion consumption by freight transport,0.6380142999999999,TJ,N2O,0.6,kg/TJ,0.38280857999999995,kg -473454cb-120f-3e38-844b-aa449f4c3c51,SESCO,II.1.1,Capital Federal,AR-C,annual,2012,naphtha combustion consumption by to the public,42.0781053,TJ,CO2,73300.0,kg/TJ,3084325.11849,kg -ad47ea99-cc90-312e-8db7-b529245d4bb7,SESCO,II.1.1,Capital Federal,AR-C,annual,2012,naphtha combustion consumption by to the public,42.0781053,TJ,CH4,3.0,kg/TJ,126.23431589999998,kg -c3e1fea1-220c-3c51-b6be-6fd5d8bfa6af,SESCO,II.1.1,Capital Federal,AR-C,annual,2012,naphtha combustion consumption by to the public,42.0781053,TJ,N2O,0.6,kg/TJ,25.24686318,kg -d950181d-c76d-37e6-b3c2-4196124ef505,SESCO,II.1.1,Capital Federal,AR-C,annual,2012,naphtha combustion consumption by to the public,5.317927999999999,TJ,CO2,73300.0,kg/TJ,389804.12239999993,kg -1843a2cf-096b-3f4f-afa6-a14e8bca1976,SESCO,II.1.1,Capital Federal,AR-C,annual,2012,naphtha combustion consumption by to the public,5.317927999999999,TJ,CH4,3.0,kg/TJ,15.953783999999999,kg -cc6a8d17-6d70-3df4-9820-b6a02ee3f546,SESCO,II.1.1,Capital Federal,AR-C,annual,2012,naphtha combustion consumption by to the public,5.317927999999999,TJ,N2O,0.6,kg/TJ,3.1907567999999995,kg -229cf067-3d21-37f2-bfae-562bea35d4b4,SESCO,II.5.1,Córdoba,AR-X,annual,2012,naphtha combustion consumption by agriculture machines,7.6378740899999995,TJ,CO2,73300.0,kg/TJ,559856.1707969999,kg -dce1290d-5696-3aaf-8a66-8bf9d13a01bc,SESCO,II.5.1,Córdoba,AR-X,annual,2012,naphtha combustion consumption by agriculture machines,7.6378740899999995,TJ,CH4,3.0,kg/TJ,22.913622269999998,kg -d97b7a9e-959b-3126-9a6f-74ca24e3a89e,SESCO,II.5.1,Córdoba,AR-X,annual,2012,naphtha combustion consumption by agriculture machines,7.6378740899999995,TJ,N2O,0.6,kg/TJ,4.582724453999999,kg -496aefb1-98f4-303f-983b-005311a98fa5,SESCO,II.5.1,Santa Fe,AR-S,annual,2012,naphtha combustion consumption by agriculture machines,20.700034739999996,TJ,CO2,73300.0,kg/TJ,1517312.5464419997,kg -da219172-bf41-39c0-97cc-07f36d3d8205,SESCO,II.5.1,Santa Fe,AR-S,annual,2012,naphtha combustion consumption by agriculture machines,20.700034739999996,TJ,CH4,3.0,kg/TJ,62.10010421999999,kg -4d92e4cf-4d8d-35ca-a0c5-3f7e8ac92419,SESCO,II.5.1,Santa Fe,AR-S,annual,2012,naphtha combustion consumption by agriculture machines,20.700034739999996,TJ,N2O,0.6,kg/TJ,12.420020843999998,kg -f7e7b5d3-ef1f-3312-b26d-8ca60fd3679b,SESCO,II.5.1,Córdoba,AR-X,annual,2012,naphtha combustion consumption by agriculture machines,3.6427806799999995,TJ,CO2,73300.0,kg/TJ,267015.82384399994,kg -41c04000-af9c-35fc-8503-1486c64b41ab,SESCO,II.5.1,Córdoba,AR-X,annual,2012,naphtha combustion consumption by agriculture machines,3.6427806799999995,TJ,CH4,3.0,kg/TJ,10.928342039999999,kg -ebe9b7d8-0b66-34c3-ad59-967dd869ae33,SESCO,II.5.1,Córdoba,AR-X,annual,2012,naphtha combustion consumption by agriculture machines,3.6427806799999995,TJ,N2O,0.6,kg/TJ,2.1856684079999997,kg -38f64a82-bbf7-3491-aa78-fb85da7e133d,SESCO,II.5.1,Santa Fe,AR-S,annual,2012,naphtha combustion consumption by agriculture machines,0.5982668999999999,TJ,CO2,73300.0,kg/TJ,43852.963769999995,kg -4cb9e770-5de1-355f-8948-2ff8fc657106,SESCO,II.5.1,Santa Fe,AR-S,annual,2012,naphtha combustion consumption by agriculture machines,0.5982668999999999,TJ,CH4,3.0,kg/TJ,1.7948006999999997,kg -1ed3b68f-5082-3a31-afb9-289eed0fab1b,SESCO,II.5.1,Santa Fe,AR-S,annual,2012,naphtha combustion consumption by agriculture machines,0.5982668999999999,TJ,N2O,0.6,kg/TJ,0.3589601399999999,kg -692f0559-7c9b-34c0-a945-f87f653c646f,SESCO,II.1.1,Buenos Aires,AR-B,annual,2012,naphtha combustion consumption by to the public,15.488465299999998,TJ,CO2,73300.0,kg/TJ,1135304.5064899998,kg -8f494600-8c06-3ff0-ad37-9e5e0712d25c,SESCO,II.1.1,Buenos Aires,AR-B,annual,2012,naphtha combustion consumption by to the public,15.488465299999998,TJ,CH4,3.0,kg/TJ,46.46539589999999,kg -8de75e9f-856f-347e-a27c-f261fc29acdd,SESCO,II.1.1,Buenos Aires,AR-B,annual,2012,naphtha combustion consumption by to the public,15.488465299999998,TJ,N2O,0.6,kg/TJ,9.293079179999998,kg -678aefed-6d11-3e1a-8ed6-099dd4984cd4,SESCO,II.1.1,Chaco,AR-H,annual,2012,naphtha combustion consumption by to the public,4.61994995,TJ,CO2,73300.0,kg/TJ,338642.331335,kg -f3e98919-801c-3b2a-ba04-0b192385edcf,SESCO,II.1.1,Chaco,AR-H,annual,2012,naphtha combustion consumption by to the public,4.61994995,TJ,CH4,3.0,kg/TJ,13.85984985,kg -c209eec4-ac0b-32e4-ab16-e42eec965255,SESCO,II.1.1,Chaco,AR-H,annual,2012,naphtha combustion consumption by to the public,4.61994995,TJ,N2O,0.6,kg/TJ,2.77196997,kg -2f51c6ff-b361-349e-bffb-e92b448ea524,SESCO,II.1.1,Entre Rios,AR-E,annual,2012,naphtha combustion consumption by to the public,2.7254381,TJ,CO2,73300.0,kg/TJ,199774.61273,kg -1a986f38-e2cc-33e7-a6a0-233ef308da60,SESCO,II.1.1,Entre Rios,AR-E,annual,2012,naphtha combustion consumption by to the public,2.7254381,TJ,CH4,3.0,kg/TJ,8.1763143,kg -fe6fe926-48e8-3a4a-a642-4f4e133e0997,SESCO,II.1.1,Entre Rios,AR-E,annual,2012,naphtha combustion consumption by to the public,2.7254381,TJ,N2O,0.6,kg/TJ,1.6352628599999999,kg -8d6e1223-96a2-3cc2-abab-62c091b63782,SESCO,II.1.1,Santa Fe,AR-S,annual,2012,naphtha combustion consumption by to the public,1.2962449499999997,TJ,CO2,73300.0,kg/TJ,95014.75483499999,kg -9077c986-12c2-3d17-8f86-bdd6cab36d27,SESCO,II.1.1,Santa Fe,AR-S,annual,2012,naphtha combustion consumption by to the public,1.2962449499999997,TJ,CH4,3.0,kg/TJ,3.888734849999999,kg -22bd28af-a170-3571-a237-356442ec609c,SESCO,II.1.1,Santa Fe,AR-S,annual,2012,naphtha combustion consumption by to the public,1.2962449499999997,TJ,N2O,0.6,kg/TJ,0.7777469699999998,kg -f131108c-7276-3977-84ad-7a5ac99212ca,SESCO,II.1.1,Buenos Aires,AR-B,annual,2012,naphtha combustion consumption by to the public,8260.238951396355,TJ,CO2,73300.0,kg/TJ,605475515.1373528,kg -673e5380-9129-327b-9d97-f546d28228e0,SESCO,II.1.1,Buenos Aires,AR-B,annual,2012,naphtha combustion consumption by to the public,8260.238951396355,TJ,CH4,3.0,kg/TJ,24780.716854189064,kg -d2e54392-5c61-347b-87b7-2140991b3538,SESCO,II.1.1,Buenos Aires,AR-B,annual,2012,naphtha combustion consumption by to the public,8260.238951396355,TJ,N2O,0.6,kg/TJ,4956.143370837813,kg -e436a18a-e583-3860-a2ef-2ae84bc9e723,SESCO,II.1.1,Capital Federal,AR-C,annual,2012,naphtha combustion consumption by to the public,2799.42718342133,TJ,CO2,73300.0,kg/TJ,205198012.5447835,kg -517d1bc0-9f63-3c10-845c-ec9b9d7c4559,SESCO,II.1.1,Capital Federal,AR-C,annual,2012,naphtha combustion consumption by to the public,2799.42718342133,TJ,CH4,3.0,kg/TJ,8398.28155026399,kg -4afd4c2e-bd80-321e-aee0-d9f983008a9f,SESCO,II.1.1,Capital Federal,AR-C,annual,2012,naphtha combustion consumption by to the public,2799.42718342133,TJ,N2O,0.6,kg/TJ,1679.656310052798,kg -4b3cd332-1682-3efe-a1e9-ce7974a33b1a,SESCO,II.1.1,Catamarca,AR-K,annual,2012,naphtha combustion consumption by to the public,322.87691166846497,TJ,CO2,73300.0,kg/TJ,23666877.62529848,kg -93c8f4f8-90ef-357c-91f6-327834ac0cf3,SESCO,II.1.1,Catamarca,AR-K,annual,2012,naphtha combustion consumption by to the public,322.87691166846497,TJ,CH4,3.0,kg/TJ,968.6307350053949,kg -a5e8e758-ad1c-3fc7-9b75-c030bb74ef68,SESCO,II.1.1,Catamarca,AR-K,annual,2012,naphtha combustion consumption by to the public,322.87691166846497,TJ,N2O,0.6,kg/TJ,193.72614700107897,kg -d1bc4f8f-59f3-3599-a846-094edfc706e7,SESCO,II.1.1,Chaco,AR-H,annual,2012,naphtha combustion consumption by to the public,405.92576679731997,TJ,CO2,73300.0,kg/TJ,29754358.706243552,kg -9662a40b-68c3-3edd-ba17-24fbf930c0b8,SESCO,II.1.1,Chaco,AR-H,annual,2012,naphtha combustion consumption by to the public,405.92576679731997,TJ,CH4,3.0,kg/TJ,1217.77730039196,kg -42d8a3bb-5aa8-3b93-b04c-914b74ea0117,SESCO,II.1.1,Chaco,AR-H,annual,2012,naphtha combustion consumption by to the public,405.92576679731997,TJ,N2O,0.6,kg/TJ,243.55546007839197,kg -4dae53f0-2403-335a-bcbe-557f0c4d2804,SESCO,II.1.1,Chubut,AR-U,annual,2012,naphtha combustion consumption by to the public,361.4011586920349,TJ,CO2,73300.0,kg/TJ,26490704.93212616,kg -cbfad3e9-8211-395c-aff1-954d76fd721d,SESCO,II.1.1,Chubut,AR-U,annual,2012,naphtha combustion consumption by to the public,361.4011586920349,TJ,CH4,3.0,kg/TJ,1084.2034760761048,kg -1a2fcbd0-fb71-3d7b-915b-302426c03366,SESCO,II.1.1,Chubut,AR-U,annual,2012,naphtha combustion consumption by to the public,361.4011586920349,TJ,N2O,0.6,kg/TJ,216.84069521522096,kg -040b97b4-7f8f-3e1e-85eb-95b3842b6269,SESCO,II.1.1,Corrientes,AR-W,annual,2012,naphtha combustion consumption by to the public,263.27689502576,TJ,CO2,73300.0,kg/TJ,19298196.405388206,kg -f2e6d12b-35db-35d4-b0e1-98acbdf2280c,SESCO,II.1.1,Corrientes,AR-W,annual,2012,naphtha combustion consumption by to the public,263.27689502576,TJ,CH4,3.0,kg/TJ,789.8306850772799,kg -ee794658-f8a1-3abb-a5a4-ac4201591194,SESCO,II.1.1,Corrientes,AR-W,annual,2012,naphtha combustion consumption by to the public,263.27689502576,TJ,N2O,0.6,kg/TJ,157.96613701545598,kg -6aa909c9-5ef8-3040-913f-293d707d3745,SESCO,II.1.1,Córdoba,AR-X,annual,2012,naphtha combustion consumption by to the public,2664.60697970159,TJ,CO2,73300.0,kg/TJ,195315691.61212653,kg -eb889bcc-53b6-3b1c-a5b3-75ab4996f6a0,SESCO,II.1.1,Córdoba,AR-X,annual,2012,naphtha combustion consumption by to the public,2664.60697970159,TJ,CH4,3.0,kg/TJ,7993.820939104769,kg -5c22cc56-92c2-393e-9bcc-6ba9e7154d67,SESCO,II.1.1,Córdoba,AR-X,annual,2012,naphtha combustion consumption by to the public,2664.60697970159,TJ,N2O,0.6,kg/TJ,1598.7641878209538,kg -f449aa37-b05e-3269-b0f3-5b0b78b475eb,SESCO,II.1.1,Entre Rios,AR-E,annual,2012,naphtha combustion consumption by to the public,906.391453962225,TJ,CO2,73300.0,kg/TJ,66438493.57543109,kg -65cb7b79-7a92-3830-a693-dc9726c81c27,SESCO,II.1.1,Entre Rios,AR-E,annual,2012,naphtha combustion consumption by to the public,906.391453962225,TJ,CH4,3.0,kg/TJ,2719.174361886675,kg -5adc3c05-5477-317b-9a56-f0c46f55e08c,SESCO,II.1.1,Entre Rios,AR-E,annual,2012,naphtha combustion consumption by to the public,906.391453962225,TJ,N2O,0.6,kg/TJ,543.8348723773349,kg -a10d154a-aaaf-3821-9413-b70b8740e5fa,SESCO,II.1.1,Formosa,AR-P,annual,2012,naphtha combustion consumption by to the public,371.346727695405,TJ,CO2,73300.0,kg/TJ,27219715.140073184,kg -6ac567ce-279c-3f32-a78c-921aff485654,SESCO,II.1.1,Formosa,AR-P,annual,2012,naphtha combustion consumption by to the public,371.346727695405,TJ,CH4,3.0,kg/TJ,1114.040183086215,kg -155e759e-6d75-3914-b7ba-6040e0afc376,SESCO,II.1.1,Formosa,AR-P,annual,2012,naphtha combustion consumption by to the public,371.346727695405,TJ,N2O,0.6,kg/TJ,222.80803661724298,kg -a8982c83-8648-32f4-909e-e7c3aa4f393f,SESCO,II.1.1,Jujuy,AR-Y,annual,2012,naphtha combustion consumption by to the public,97.431935914775,TJ,CO2,73300.0,kg/TJ,7141760.902553007,kg -97d9f621-9790-306c-b534-e1fff6f5562d,SESCO,II.1.1,Jujuy,AR-Y,annual,2012,naphtha combustion consumption by to the public,97.431935914775,TJ,CH4,3.0,kg/TJ,292.295807744325,kg -b1b92f95-c86a-31f4-b2c6-46df8156f540,SESCO,II.1.1,Jujuy,AR-Y,annual,2012,naphtha combustion consumption by to the public,97.431935914775,TJ,N2O,0.6,kg/TJ,58.459161548865,kg -10806cce-de61-3a7b-9af1-9338b627492d,SESCO,II.1.1,La Pampa,AR-L,annual,2012,naphtha combustion consumption by to the public,105.44464748355999,TJ,CO2,73300.0,kg/TJ,7729092.660544948,kg -a27e1664-4782-3ad4-b16d-4da987e41fed,SESCO,II.1.1,La Pampa,AR-L,annual,2012,naphtha combustion consumption by to the public,105.44464748355999,TJ,CH4,3.0,kg/TJ,316.33394245067996,kg -c3160300-da9a-3bf9-a9b4-ecfff646ce76,SESCO,II.1.1,La Pampa,AR-L,annual,2012,naphtha combustion consumption by to the public,105.44464748355999,TJ,N2O,0.6,kg/TJ,63.266788490135994,kg -2ea2dc2a-6ab2-367d-b4e5-ff9e3d70a079,SESCO,II.1.1,La Rioja,AR-F,annual,2012,naphtha combustion consumption by to the public,225.91401035587998,TJ,CO2,73300.0,kg/TJ,16559496.959086003,kg -11f0d1de-4d59-3724-aeb1-2e6ba2e94308,SESCO,II.1.1,La Rioja,AR-F,annual,2012,naphtha combustion consumption by to the public,225.91401035587998,TJ,CH4,3.0,kg/TJ,677.7420310676399,kg -ace126fc-36db-38f6-87e3-4c9655858f3b,SESCO,II.1.1,La Rioja,AR-F,annual,2012,naphtha combustion consumption by to the public,225.91401035587998,TJ,N2O,0.6,kg/TJ,135.54840621352798,kg -91f8c45a-0e92-37e8-8b7c-d7e6da5321c2,SESCO,II.1.1,Mendoza,AR-M,annual,2012,naphtha combustion consumption by to the public,402.61344548694495,TJ,CO2,73300.0,kg/TJ,29511565.554193065,kg -5e501553-8b8b-3063-8c91-7dd883c4aaa7,SESCO,II.1.1,Mendoza,AR-M,annual,2012,naphtha combustion consumption by to the public,402.61344548694495,TJ,CH4,3.0,kg/TJ,1207.8403364608348,kg -73980bfb-0e18-3618-9f19-4550f486e3f9,SESCO,II.1.1,Mendoza,AR-M,annual,2012,naphtha combustion consumption by to the public,402.61344548694495,TJ,N2O,0.6,kg/TJ,241.56806729216697,kg -5c6491bb-7f3c-3a98-adb2-79db56adc919,SESCO,II.1.1,Misiones,AR-N,annual,2012,naphtha combustion consumption by to the public,763.95092863859,TJ,CO2,73300.0,kg/TJ,55997603.069208644,kg -9bc44398-ac11-3543-b1ba-37af79f76ce5,SESCO,II.1.1,Misiones,AR-N,annual,2012,naphtha combustion consumption by to the public,763.95092863859,TJ,CH4,3.0,kg/TJ,2291.85278591577,kg -020c3c53-2bb1-37bf-8551-c6022a8a44f1,SESCO,II.1.1,Misiones,AR-N,annual,2012,naphtha combustion consumption by to the public,763.95092863859,TJ,N2O,0.6,kg/TJ,458.37055718315395,kg -d1b5be93-c995-32a9-bc72-369643487ddd,SESCO,II.1.1,Neuquén,AR-Q,annual,2012,naphtha combustion consumption by to the public,278.74336072236497,TJ,CO2,73300.0,kg/TJ,20431888.340949353,kg -ee8b3c70-3ea0-3f6a-a915-6c8c2f8f5535,SESCO,II.1.1,Neuquén,AR-Q,annual,2012,naphtha combustion consumption by to the public,278.74336072236497,TJ,CH4,3.0,kg/TJ,836.2300821670949,kg -328f4cc0-34c4-3160-8c69-a0519c00c53f,SESCO,II.1.1,Neuquén,AR-Q,annual,2012,naphtha combustion consumption by to the public,278.74336072236497,TJ,N2O,0.6,kg/TJ,167.246016433419,kg -397270c7-16ec-3a9d-8c6c-73755b6347b6,SESCO,II.1.1,Rio Negro,AR-R,annual,2012,naphtha combustion consumption by to the public,400.17743894204995,TJ,CO2,73300.0,kg/TJ,29333006.27445226,kg -cf5699f5-94d7-3a37-af5b-64ee9108bebe,SESCO,II.1.1,Rio Negro,AR-R,annual,2012,naphtha combustion consumption by to the public,400.17743894204995,TJ,CH4,3.0,kg/TJ,1200.5323168261498,kg -a2ee5ad1-85da-3756-95c2-30bc2ae57b21,SESCO,II.1.1,Rio Negro,AR-R,annual,2012,naphtha combustion consumption by to the public,400.17743894204995,TJ,N2O,0.6,kg/TJ,240.10646336522996,kg -b1203d41-db14-308d-a840-9d1372822ced,SESCO,II.1.1,Salta,AR-A,annual,2012,naphtha combustion consumption by to the public,67.124239963935,TJ,CO2,73300.0,kg/TJ,4920206.789356436,kg -ca5b3458-c984-35b5-8eb0-267106b1dcee,SESCO,II.1.1,Salta,AR-A,annual,2012,naphtha combustion consumption by to the public,67.124239963935,TJ,CH4,3.0,kg/TJ,201.372719891805,kg -cd966fa7-4d16-3550-b800-997e8cd1c53a,SESCO,II.1.1,Salta,AR-A,annual,2012,naphtha combustion consumption by to the public,67.124239963935,TJ,N2O,0.6,kg/TJ,40.274543978360995,kg -1695f92d-8612-37fb-9ac3-6bdae2e89f40,SESCO,II.1.1,San Juan,AR-J,annual,2012,naphtha combustion consumption by to the public,317.72735591635495,TJ,CO2,73300.0,kg/TJ,23289415.188668817,kg -27ee37f9-bd1e-3f9f-b80e-3cc2829aa4dd,SESCO,II.1.1,San Juan,AR-J,annual,2012,naphtha combustion consumption by to the public,317.72735591635495,TJ,CH4,3.0,kg/TJ,953.1820677490648,kg -73ea3eaf-6914-3203-8789-c2599131718f,SESCO,II.1.1,San Juan,AR-J,annual,2012,naphtha combustion consumption by to the public,317.72735591635495,TJ,N2O,0.6,kg/TJ,190.63641354981297,kg -b9b6e4b7-950e-335e-b171-8e17040cb313,SESCO,II.1.1,San Luis,AR-D,annual,2012,naphtha combustion consumption by to the public,520.1367859295299,TJ,CO2,73300.0,kg/TJ,38126026.40863454,kg -a71b64f4-b388-31b4-b912-a051fb9855b0,SESCO,II.1.1,San Luis,AR-D,annual,2012,naphtha combustion consumption by to the public,520.1367859295299,TJ,CH4,3.0,kg/TJ,1560.4103577885896,kg -7fbd0f8a-4267-3c4c-88fc-af632df236c2,SESCO,II.1.1,San Luis,AR-D,annual,2012,naphtha combustion consumption by to the public,520.1367859295299,TJ,N2O,0.6,kg/TJ,312.08207155771794,kg -78dec38e-4479-39da-a120-014a92f1a9f0,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2012,naphtha combustion consumption by to the public,42.01060749886,TJ,CO2,73300.0,kg/TJ,3079377.529666438,kg -0e298234-4aaa-3ee0-ac69-86bbfcf8d484,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2012,naphtha combustion consumption by to the public,42.01060749886,TJ,CH4,3.0,kg/TJ,126.03182249657999,kg -249fef22-4cc5-3065-acbb-0ce8126d4377,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2012,naphtha combustion consumption by to the public,42.01060749886,TJ,N2O,0.6,kg/TJ,25.206364499316,kg -7a694d37-bcc0-32c6-940d-d69442292fe8,SESCO,II.1.1,Santa Fe,AR-S,annual,2012,naphtha combustion consumption by to the public,2536.1800222604998,TJ,CO2,73300.0,kg/TJ,185901995.63169464,kg -c414c582-c9df-3f87-84c1-b921c23d1609,SESCO,II.1.1,Santa Fe,AR-S,annual,2012,naphtha combustion consumption by to the public,2536.1800222604998,TJ,CH4,3.0,kg/TJ,7608.540066781499,kg -42ddceb6-7aae-30ab-8714-bf7216e4cad6,SESCO,II.1.1,Santa Fe,AR-S,annual,2012,naphtha combustion consumption by to the public,2536.1800222604998,TJ,N2O,0.6,kg/TJ,1521.7080133562997,kg -dad7c3bd-109f-3f17-b67f-03a005d53482,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2012,naphtha combustion consumption by to the public,265.31088947979,TJ,CO2,73300.0,kg/TJ,19447288.198868606,kg -70272057-71b7-3ceb-bb7d-7d1f8766a9d1,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2012,naphtha combustion consumption by to the public,265.31088947979,TJ,CH4,3.0,kg/TJ,795.93266843937,kg -330df499-b73e-31e9-8311-bab035e3d456,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2012,naphtha combustion consumption by to the public,265.31088947979,TJ,N2O,0.6,kg/TJ,159.18653368787398,kg -31a4e658-8efe-3d61-a825-dbdaccb01268,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2012,naphtha combustion consumption by to the public,96.56849053505499,TJ,CO2,73300.0,kg/TJ,7078470.356219531,kg -28b53341-c1c4-38e4-8683-2b575decf019,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2012,naphtha combustion consumption by to the public,96.56849053505499,TJ,CH4,3.0,kg/TJ,289.705471605165,kg -0aac53dd-be3a-38ab-92c0-8642fc8a76cc,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2012,naphtha combustion consumption by to the public,96.56849053505499,TJ,N2O,0.6,kg/TJ,57.94109432103299,kg -9b175eda-ccce-347e-9a09-79089e6d25c0,SESCO,II.1.1,Tucuman,AR-T,annual,2012,naphtha combustion consumption by to the public,91.10218902014999,TJ,CO2,73300.0,kg/TJ,6677790.455176994,kg -13e68873-16b2-3f37-b30b-dd7704ac2bcc,SESCO,II.1.1,Tucuman,AR-T,annual,2012,naphtha combustion consumption by to the public,91.10218902014999,TJ,CH4,3.0,kg/TJ,273.30656706045,kg -f8808924-98d1-38c7-b66a-4e9a8a62365e,SESCO,II.1.1,Tucuman,AR-T,annual,2012,naphtha combustion consumption by to the public,91.10218902014999,TJ,N2O,0.6,kg/TJ,54.661313412089996,kg -4f4a2ed2-9141-368f-ba1b-97a427650f89,SESCO,II.1.1,Buenos Aires,AR-B,annual,2012,naphtha combustion consumption by to the public,1897.0397470170296,TJ,CO2,73300.0,kg/TJ,139053013.45634827,kg -7f2b8bb6-426e-3492-8c38-303c7af2cd69,SESCO,II.1.1,Buenos Aires,AR-B,annual,2012,naphtha combustion consumption by to the public,1897.0397470170296,TJ,CH4,3.0,kg/TJ,5691.1192410510885,kg -bfe0247d-9a70-3807-9737-6a47bcc0d602,SESCO,II.1.1,Buenos Aires,AR-B,annual,2012,naphtha combustion consumption by to the public,1897.0397470170296,TJ,N2O,0.6,kg/TJ,1138.2238482102177,kg -944ca527-fc6c-32ad-ad08-a45e9563b810,SESCO,II.1.1,Capital Federal,AR-C,annual,2012,naphtha combustion consumption by to the public,961.969205906555,TJ,CO2,73300.0,kg/TJ,70512342.79295048,kg -df5330f5-c050-39d1-a13f-865828e81600,SESCO,II.1.1,Capital Federal,AR-C,annual,2012,naphtha combustion consumption by to the public,961.969205906555,TJ,CH4,3.0,kg/TJ,2885.907617719665,kg -c646ebb4-2257-36d8-9896-1b821762b121,SESCO,II.1.1,Capital Federal,AR-C,annual,2012,naphtha combustion consumption by to the public,961.969205906555,TJ,N2O,0.6,kg/TJ,577.1815235439329,kg -87f1bbaa-56d1-3629-afb1-fd14d6ca5ae7,SESCO,II.1.1,Catamarca,AR-K,annual,2012,naphtha combustion consumption by to the public,63.425597773999996,TJ,CO2,73300.0,kg/TJ,4649096.3168342,kg -60c7c63f-eff9-3918-9969-b9da9c47141a,SESCO,II.1.1,Catamarca,AR-K,annual,2012,naphtha combustion consumption by to the public,63.425597773999996,TJ,CH4,3.0,kg/TJ,190.276793322,kg -f0605988-3c4a-3ef7-bb26-213ddccf2096,SESCO,II.1.1,Catamarca,AR-K,annual,2012,naphtha combustion consumption by to the public,63.425597773999996,TJ,N2O,0.6,kg/TJ,38.055358664399996,kg -f98291be-c2c7-374b-a54d-67d8b5bc8608,SESCO,II.1.1,Chaco,AR-H,annual,2012,naphtha combustion consumption by to the public,82.89540299271,TJ,CO2,73300.0,kg/TJ,6076233.039365644,kg -92c7eb43-1032-349f-82d4-c322d01bd6ae,SESCO,II.1.1,Chaco,AR-H,annual,2012,naphtha combustion consumption by to the public,82.89540299271,TJ,CH4,3.0,kg/TJ,248.68620897813003,kg -df2b2f98-d6cd-3040-8d82-e9bd96de928a,SESCO,II.1.1,Chaco,AR-H,annual,2012,naphtha combustion consumption by to the public,82.89540299271,TJ,N2O,0.6,kg/TJ,49.737241795626,kg -43ec9e4c-1937-3871-9038-1c47fc537eb2,SESCO,II.1.1,Chubut,AR-U,annual,2012,naphtha combustion consumption by to the public,46.040756025495,TJ,CO2,73300.0,kg/TJ,3374787.4166687834,kg -7fea5252-c197-3945-9693-2256dfe34f8e,SESCO,II.1.1,Chubut,AR-U,annual,2012,naphtha combustion consumption by to the public,46.040756025495,TJ,CH4,3.0,kg/TJ,138.122268076485,kg -a17e7436-7522-327e-ac28-0ee3014535b7,SESCO,II.1.1,Chubut,AR-U,annual,2012,naphtha combustion consumption by to the public,46.040756025495,TJ,N2O,0.6,kg/TJ,27.624453615297,kg -25f9f02d-84b6-3c89-8298-53064115300d,SESCO,II.1.1,Corrientes,AR-W,annual,2012,naphtha combustion consumption by to the public,58.71882932569499,TJ,CO2,73300.0,kg/TJ,4304090.189573443,kg -e6df1988-fc51-359d-a23e-984a356b0a88,SESCO,II.1.1,Corrientes,AR-W,annual,2012,naphtha combustion consumption by to the public,58.71882932569499,TJ,CH4,3.0,kg/TJ,176.15648797708496,kg -a1cb32e2-c37e-3d55-a8b7-37a308f474b3,SESCO,II.1.1,Corrientes,AR-W,annual,2012,naphtha combustion consumption by to the public,58.71882932569499,TJ,N2O,0.6,kg/TJ,35.23129759541699,kg -c1764a37-4be9-3de4-acad-767b58df3e8e,SESCO,II.1.1,Córdoba,AR-X,annual,2012,naphtha combustion consumption by to the public,625.35236366449,TJ,CO2,73300.0,kg/TJ,45838328.256607115,kg -f74f7f21-d8f0-3a7f-af87-3b5d4e4cbe65,SESCO,II.1.1,Córdoba,AR-X,annual,2012,naphtha combustion consumption by to the public,625.35236366449,TJ,CH4,3.0,kg/TJ,1876.05709099347,kg -e0535f3e-41a9-3eef-aed6-676f324d8c5e,SESCO,II.1.1,Córdoba,AR-X,annual,2012,naphtha combustion consumption by to the public,625.35236366449,TJ,N2O,0.6,kg/TJ,375.211418198694,kg -46960bb4-beed-3152-aff1-da67be28eb3b,SESCO,II.1.1,Entre Rios,AR-E,annual,2012,naphtha combustion consumption by to the public,194.922372361255,TJ,CO2,73300.0,kg/TJ,14287809.89407999,kg -56930a28-a286-35d9-b9a0-44e40211d23f,SESCO,II.1.1,Entre Rios,AR-E,annual,2012,naphtha combustion consumption by to the public,194.922372361255,TJ,CH4,3.0,kg/TJ,584.767117083765,kg -3d2c16a6-8d02-3a81-8241-bd454bfe2a67,SESCO,II.1.1,Entre Rios,AR-E,annual,2012,naphtha combustion consumption by to the public,194.922372361255,TJ,N2O,0.6,kg/TJ,116.95342341675298,kg -834f56af-2af9-3b54-ba99-e8952a5482dc,SESCO,II.1.1,Formosa,AR-P,annual,2012,naphtha combustion consumption by to the public,77.840144075155,TJ,CO2,73300.0,kg/TJ,5705682.560708861,kg -6a25ce03-f4c5-36bc-91d2-89f3fd6adf80,SESCO,II.1.1,Formosa,AR-P,annual,2012,naphtha combustion consumption by to the public,77.840144075155,TJ,CH4,3.0,kg/TJ,233.520432225465,kg -659b8321-6f9b-3150-9191-0814dd2c3a13,SESCO,II.1.1,Formosa,AR-P,annual,2012,naphtha combustion consumption by to the public,77.840144075155,TJ,N2O,0.6,kg/TJ,46.704086445093,kg -b3e5977f-397f-316e-b252-a6617143fb30,SESCO,II.1.1,Jujuy,AR-Y,annual,2012,naphtha combustion consumption by to the public,6.247641410009999,TJ,CO2,73300.0,kg/TJ,457952.11535373295,kg -a32a5022-d2c5-3be1-97ef-37c2d2e53570,SESCO,II.1.1,Jujuy,AR-Y,annual,2012,naphtha combustion consumption by to the public,6.247641410009999,TJ,CH4,3.0,kg/TJ,18.74292423003,kg -206d0280-2a25-35c6-b065-fab254119155,SESCO,II.1.1,Jujuy,AR-Y,annual,2012,naphtha combustion consumption by to the public,6.247641410009999,TJ,N2O,0.6,kg/TJ,3.748584846005999,kg -b3d81eaa-0109-3158-bd02-a8d85294ba5e,SESCO,II.1.1,La Pampa,AR-L,annual,2012,naphtha combustion consumption by to the public,23.011934140194995,TJ,CO2,73300.0,kg/TJ,1686774.7724762931,kg -f1acf00c-f43d-35b5-a321-999d5d256e9c,SESCO,II.1.1,La Pampa,AR-L,annual,2012,naphtha combustion consumption by to the public,23.011934140194995,TJ,CH4,3.0,kg/TJ,69.03580242058499,kg -4395579e-7f2d-31d6-bb90-5373ca70c31c,SESCO,II.1.1,La Pampa,AR-L,annual,2012,naphtha combustion consumption by to the public,23.011934140194995,TJ,N2O,0.6,kg/TJ,13.807160484116997,kg -31d0a1eb-3400-3be0-b778-4bb490245c69,SESCO,II.1.1,La Rioja,AR-F,annual,2012,naphtha combustion consumption by to the public,39.075759365334996,TJ,CO2,73300.0,kg/TJ,2864253.1614790554,kg -aca2cf01-f09c-314e-a5d8-6c1a273b0f08,SESCO,II.1.1,La Rioja,AR-F,annual,2012,naphtha combustion consumption by to the public,39.075759365334996,TJ,CH4,3.0,kg/TJ,117.227278096005,kg -ed149702-2cc7-33c0-835a-8eec45a6400e,SESCO,II.1.1,La Rioja,AR-F,annual,2012,naphtha combustion consumption by to the public,39.075759365334996,TJ,N2O,0.6,kg/TJ,23.445455619200995,kg -901b7ac6-c822-3283-865d-73b821ee3b9c,SESCO,II.1.1,Mendoza,AR-M,annual,2012,naphtha combustion consumption by to the public,71.86572118726,TJ,CO2,73300.0,kg/TJ,5267757.363026158,kg -b18ca890-296f-3c1a-ab3e-390b40bc3d31,SESCO,II.1.1,Mendoza,AR-M,annual,2012,naphtha combustion consumption by to the public,71.86572118726,TJ,CH4,3.0,kg/TJ,215.59716356177998,kg -6e1c57ce-c17e-3ab9-a6b9-d6b37884dda8,SESCO,II.1.1,Mendoza,AR-M,annual,2012,naphtha combustion consumption by to the public,71.86572118726,TJ,N2O,0.6,kg/TJ,43.119432712355994,kg -e0e8271b-16a6-3638-8dd9-74212a131465,SESCO,II.1.1,Misiones,AR-N,annual,2012,naphtha combustion consumption by to the public,95.30340531942998,TJ,CO2,73300.0,kg/TJ,6985739.609914218,kg -f684f6c8-e76e-3164-83a9-b65a6446df86,SESCO,II.1.1,Misiones,AR-N,annual,2012,naphtha combustion consumption by to the public,95.30340531942998,TJ,CH4,3.0,kg/TJ,285.91021595828994,kg -b2acbc6b-1736-31d1-b6c0-34c87c7b16ac,SESCO,II.1.1,Misiones,AR-N,annual,2012,naphtha combustion consumption by to the public,95.30340531942998,TJ,N2O,0.6,kg/TJ,57.18204319165799,kg -fb6922e3-0059-3a2b-9111-b45f4ba0cfc8,SESCO,II.1.1,Neuquén,AR-Q,annual,2012,naphtha combustion consumption by to the public,60.462331962724996,TJ,CO2,73300.0,kg/TJ,4431888.932867742,kg -4119732d-4147-32f5-80a7-9d5cc3694e9e,SESCO,II.1.1,Neuquén,AR-Q,annual,2012,naphtha combustion consumption by to the public,60.462331962724996,TJ,CH4,3.0,kg/TJ,181.386995888175,kg -5e01c505-864d-304f-a356-c2b25008c90d,SESCO,II.1.1,Neuquén,AR-Q,annual,2012,naphtha combustion consumption by to the public,60.462331962724996,TJ,N2O,0.6,kg/TJ,36.277399177635,kg -7fe79a61-7339-3b91-9348-306e31bf8388,SESCO,II.1.1,Rio Negro,AR-R,annual,2012,naphtha combustion consumption by to the public,83.82884559972999,TJ,CO2,73300.0,kg/TJ,6144654.382460208,kg -194e074e-105a-308e-bf3d-2de54d7b5f42,SESCO,II.1.1,Rio Negro,AR-R,annual,2012,naphtha combustion consumption by to the public,83.82884559972999,TJ,CH4,3.0,kg/TJ,251.48653679918996,kg -96f02e63-68d8-3d3d-a63b-854c46d57871,SESCO,II.1.1,Rio Negro,AR-R,annual,2012,naphtha combustion consumption by to the public,83.82884559972999,TJ,N2O,0.6,kg/TJ,50.297307359837994,kg -1bf72a12-c278-38e1-a165-03baf72579b0,SESCO,II.1.1,Salta,AR-A,annual,2012,naphtha combustion consumption by to the public,10.561747349614999,TJ,CO2,73300.0,kg/TJ,774176.0807267794,kg -137c68be-15ca-351c-8dce-d59ec0425604,SESCO,II.1.1,Salta,AR-A,annual,2012,naphtha combustion consumption by to the public,10.561747349614999,TJ,CH4,3.0,kg/TJ,31.685242048844998,kg -dca836a5-a768-346c-9584-8d0222dc6516,SESCO,II.1.1,Salta,AR-A,annual,2012,naphtha combustion consumption by to the public,10.561747349614999,TJ,N2O,0.6,kg/TJ,6.337048409768999,kg -04a7c9e9-b939-3070-a681-9be84e524f7a,SESCO,II.1.1,San Juan,AR-J,annual,2012,naphtha combustion consumption by to the public,58.98531402148,TJ,CO2,73300.0,kg/TJ,4323623.517774484,kg -10803278-55b1-34d5-8369-b0f193fde0b0,SESCO,II.1.1,San Juan,AR-J,annual,2012,naphtha combustion consumption by to the public,58.98531402148,TJ,CH4,3.0,kg/TJ,176.95594206444,kg -5a5a605d-f53c-3bd1-b191-98b7f428a42f,SESCO,II.1.1,San Juan,AR-J,annual,2012,naphtha combustion consumption by to the public,58.98531402148,TJ,N2O,0.6,kg/TJ,35.391188412888,kg -3f9ccf08-d4a4-3357-a7d2-53b79ee2ebc6,SESCO,II.1.1,San Luis,AR-D,annual,2012,naphtha combustion consumption by to the public,85.35204642194999,TJ,CO2,73300.0,kg/TJ,6256305.002728934,kg -cdf7370e-06ff-3743-b00a-342bdac313ad,SESCO,II.1.1,San Luis,AR-D,annual,2012,naphtha combustion consumption by to the public,85.35204642194999,TJ,CH4,3.0,kg/TJ,256.05613926585,kg -1fa4bfdc-6242-3b5e-8ce2-d13f23326dd3,SESCO,II.1.1,San Luis,AR-D,annual,2012,naphtha combustion consumption by to the public,85.35204642194999,TJ,N2O,0.6,kg/TJ,51.211227853169994,kg -ea8685ca-cba1-3d3d-ab3f-d60eef8c8ffd,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2012,naphtha combustion consumption by to the public,20.301037249569998,TJ,CO2,73300.0,kg/TJ,1488066.0303934808,kg -86ab1fef-c60e-3f39-8c68-e21882bc01e7,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2012,naphtha combustion consumption by to the public,20.301037249569998,TJ,CH4,3.0,kg/TJ,60.90311174870999,kg -643e2501-0998-3254-a0ec-75c846fb8db6,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2012,naphtha combustion consumption by to the public,20.301037249569998,TJ,N2O,0.6,kg/TJ,12.180622349741999,kg -c1bf75bb-4b45-3987-b44a-492d597cd8a0,SESCO,II.1.1,Santa Fe,AR-S,annual,2012,naphtha combustion consumption by to the public,605.5438197269998,TJ,CO2,73300.0,kg/TJ,44386361.98598909,kg -a56e15ef-aee7-31c7-8977-76aea54c6d4d,SESCO,II.1.1,Santa Fe,AR-S,annual,2012,naphtha combustion consumption by to the public,605.5438197269998,TJ,CH4,3.0,kg/TJ,1816.6314591809994,kg -f669c18e-a059-37c2-9879-ff9b60c618ce,SESCO,II.1.1,Santa Fe,AR-S,annual,2012,naphtha combustion consumption by to the public,605.5438197269998,TJ,N2O,0.6,kg/TJ,363.32629183619986,kg -d0721dc0-d780-35e6-8af6-8aca996be098,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2012,naphtha combustion consumption by to the public,71.70733002548499,TJ,CO2,73300.0,kg/TJ,5256147.29086805,kg -2e2adb2c-6de8-3188-a9c0-c6cd52347f55,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2012,naphtha combustion consumption by to the public,71.70733002548499,TJ,CH4,3.0,kg/TJ,215.12199007645498,kg -9a098cd7-32f1-37f1-b3c1-2c0350ad0cc3,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2012,naphtha combustion consumption by to the public,71.70733002548499,TJ,N2O,0.6,kg/TJ,43.02439801529099,kg -6b04cadc-10fe-388f-ae78-ab29121e4ee6,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2012,naphtha combustion consumption by to the public,43.495067215599995,TJ,CO2,73300.0,kg/TJ,3188188.4269034797,kg -83386988-99ad-30c2-bc89-1e968d918330,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2012,naphtha combustion consumption by to the public,43.495067215599995,TJ,CH4,3.0,kg/TJ,130.4852016468,kg -c8517f12-6001-31c7-8103-6dd2e287835e,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2012,naphtha combustion consumption by to the public,43.495067215599995,TJ,N2O,0.6,kg/TJ,26.097040329359995,kg -69e238cb-c402-306e-8993-f86da59f50b1,SESCO,II.1.1,Tucuman,AR-T,annual,2012,naphtha combustion consumption by to the public,21.986973315999997,TJ,CO2,73300.0,kg/TJ,1611645.1440627999,kg -9ef0beb3-a899-359b-b9de-726e909b7c59,SESCO,II.1.1,Tucuman,AR-T,annual,2012,naphtha combustion consumption by to the public,21.986973315999997,TJ,CH4,3.0,kg/TJ,65.960919948,kg -2568b239-6355-3929-b81c-be88354a820e,SESCO,II.1.1,Tucuman,AR-T,annual,2012,naphtha combustion consumption by to the public,21.986973315999997,TJ,N2O,0.6,kg/TJ,13.192183989599998,kg -483dc302-05f1-3614-a7f8-1e20fe4832ac,SESCO,II.1.1,Buenos Aires,AR-B,annual,2012,naphtha combustion consumption by freight transport,0.360954363,TJ,CO2,73300.0,kg/TJ,26457.9548079,kg -3b1cfdc1-9ca0-342d-ae70-845d916ba461,SESCO,II.1.1,Buenos Aires,AR-B,annual,2012,naphtha combustion consumption by freight transport,0.360954363,TJ,CH4,3.0,kg/TJ,1.082863089,kg -617052c3-02ad-3f23-922a-9224e7378b91,SESCO,II.1.1,Buenos Aires,AR-B,annual,2012,naphtha combustion consumption by freight transport,0.360954363,TJ,N2O,0.6,kg/TJ,0.2165726178,kg -e0c8d56f-fd6d-3000-b868-96cf25171669,SESCO,II.1.1,Capital Federal,AR-C,annual,2012,naphtha combustion consumption by freight transport,13.195441220499998,TJ,CO2,73300.0,kg/TJ,967225.8414626499,kg -14348013-9edc-3623-bdb2-4247f9d0dfb6,SESCO,II.1.1,Capital Federal,AR-C,annual,2012,naphtha combustion consumption by freight transport,13.195441220499998,TJ,CH4,3.0,kg/TJ,39.58632366149999,kg -28eb54cc-293b-365e-acb5-cdce0dac6f77,SESCO,II.1.1,Capital Federal,AR-C,annual,2012,naphtha combustion consumption by freight transport,13.195441220499998,TJ,N2O,0.6,kg/TJ,7.917264732299998,kg -694fb702-ce01-3946-9553-6098ef63b0e7,SESCO,II.1.1,Misiones,AR-N,annual,2012,naphtha combustion consumption by freight transport,2.3930675999999997,TJ,CO2,73300.0,kg/TJ,175411.85507999998,kg -d2fa2600-201e-366d-b631-d7c98ab15c46,SESCO,II.1.1,Misiones,AR-N,annual,2012,naphtha combustion consumption by freight transport,2.3930675999999997,TJ,CH4,3.0,kg/TJ,7.179202799999999,kg -f45c181b-3e47-38fd-96a0-bf3debc73f86,SESCO,II.1.1,Misiones,AR-N,annual,2012,naphtha combustion consumption by freight transport,2.3930675999999997,TJ,N2O,0.6,kg/TJ,1.4358405599999997,kg -6c8be75e-c1ad-3174-9aa8-94958d034fcd,SESCO,II.1.1,Santa Fe,AR-S,annual,2012,naphtha combustion consumption by freight transport,0.03323705,TJ,CO2,73300.0,kg/TJ,2436.275765,kg -182a09ae-2486-333a-902a-dbe38b20d63e,SESCO,II.1.1,Santa Fe,AR-S,annual,2012,naphtha combustion consumption by freight transport,0.03323705,TJ,CH4,3.0,kg/TJ,0.09971115,kg -c7c891dd-0639-3fda-97dc-9a196f35122e,SESCO,II.1.1,Santa Fe,AR-S,annual,2012,naphtha combustion consumption by freight transport,0.03323705,TJ,N2O,0.6,kg/TJ,0.01994223,kg -1b0b65d7-7c24-3ebc-8595-cd2620175cef,SESCO,II.1.1,Buenos Aires,AR-B,annual,2012,naphtha combustion consumption by freight transport,4.5597908894999994,TJ,CO2,73300.0,kg/TJ,334232.67220035,kg -36779dd5-88bf-3e0d-9c9c-4a68f105c919,SESCO,II.1.1,Buenos Aires,AR-B,annual,2012,naphtha combustion consumption by freight transport,4.5597908894999994,TJ,CH4,3.0,kg/TJ,13.679372668499997,kg -06dd061e-fa07-3754-9133-200725a887db,SESCO,II.1.1,Buenos Aires,AR-B,annual,2012,naphtha combustion consumption by freight transport,4.5597908894999994,TJ,N2O,0.6,kg/TJ,2.7358745336999997,kg -7885800f-4829-345f-bff0-5357cad7449e,SESCO,II.1.1,Capital Federal,AR-C,annual,2012,naphtha combustion consumption by freight transport,11.5615078425,TJ,CO2,73300.0,kg/TJ,847458.5248552499,kg -e9fa397b-9933-39ce-a4c5-1d2cdadf50b0,SESCO,II.1.1,Capital Federal,AR-C,annual,2012,naphtha combustion consumption by freight transport,11.5615078425,TJ,CH4,3.0,kg/TJ,34.6845235275,kg -f31fc0d3-df11-3b8e-a773-85b18186a42c,SESCO,II.1.1,Capital Federal,AR-C,annual,2012,naphtha combustion consumption by freight transport,11.5615078425,TJ,N2O,0.6,kg/TJ,6.936904705499999,kg -2f50d321-05b7-3225-ae1d-142f7cacbcbf,SESCO,II.1.1,Chaco,AR-H,annual,2012,naphtha combustion consumption by freight transport,0.0422110535,TJ,CO2,73300.0,kg/TJ,3094.07022155,kg -ab3bc099-d70b-370e-9d1c-517150bbe300,SESCO,II.1.1,Chaco,AR-H,annual,2012,naphtha combustion consumption by freight transport,0.0422110535,TJ,CH4,3.0,kg/TJ,0.1266331605,kg -318c39ab-4225-35a0-98d1-a26feb67b90b,SESCO,II.1.1,Chaco,AR-H,annual,2012,naphtha combustion consumption by freight transport,0.0422110535,TJ,N2O,0.6,kg/TJ,0.0253266321,kg -8a103f2e-af73-3319-a99a-e6ef5bd53e77,SESCO,II.1.1,Corrientes,AR-W,annual,2012,naphtha combustion consumption by freight transport,0.0023265935,TJ,CO2,73300.0,kg/TJ,170.53930354999997,kg -a2cc4d7e-3353-35d5-ab2c-a93e4ed8eae7,SESCO,II.1.1,Corrientes,AR-W,annual,2012,naphtha combustion consumption by freight transport,0.0023265935,TJ,CH4,3.0,kg/TJ,0.006979780499999999,kg -75e1999d-2875-3906-9e3a-5f78769f896d,SESCO,II.1.1,Corrientes,AR-W,annual,2012,naphtha combustion consumption by freight transport,0.0023265935,TJ,N2O,0.6,kg/TJ,0.0013959560999999999,kg -12c2abe5-c85e-3bbb-9a22-f72dd5fc7571,SESCO,II.1.1,Córdoba,AR-X,annual,2012,naphtha combustion consumption by freight transport,0.448700175,TJ,CO2,73300.0,kg/TJ,32889.7228275,kg -ba391028-b68a-3f89-a40d-ec1076306b8b,SESCO,II.1.1,Córdoba,AR-X,annual,2012,naphtha combustion consumption by freight transport,0.448700175,TJ,CH4,3.0,kg/TJ,1.346100525,kg -5e6b3e18-db16-3b80-b7f0-c0efa3b618e6,SESCO,II.1.1,Córdoba,AR-X,annual,2012,naphtha combustion consumption by freight transport,0.448700175,TJ,N2O,0.6,kg/TJ,0.269220105,kg -74266f6c-ee73-3031-b7fb-2102dcca9fa9,SESCO,II.1.1,Entre Rios,AR-E,annual,2012,naphtha combustion consumption by freight transport,0.0016618524999999999,TJ,CO2,73300.0,kg/TJ,121.81378824999999,kg -23b87143-bf0a-362a-b5c9-06da31274d6c,SESCO,II.1.1,Entre Rios,AR-E,annual,2012,naphtha combustion consumption by freight transport,0.0016618524999999999,TJ,CH4,3.0,kg/TJ,0.0049855575,kg -4a34868b-a16c-3585-880f-f591fbc8aa7c,SESCO,II.1.1,Entre Rios,AR-E,annual,2012,naphtha combustion consumption by freight transport,0.0016618524999999999,TJ,N2O,0.6,kg/TJ,0.0009971115,kg -7dddc01e-29f7-3397-b5e9-3be58416a94a,SESCO,II.1.1,Misiones,AR-N,annual,2012,naphtha combustion consumption by freight transport,0.0036560754999999997,TJ,CO2,73300.0,kg/TJ,267.99033414999997,kg -bb124d99-4c8d-3e9b-b0de-8d9a6ffd3a77,SESCO,II.1.1,Misiones,AR-N,annual,2012,naphtha combustion consumption by freight transport,0.0036560754999999997,TJ,CH4,3.0,kg/TJ,0.010968226499999999,kg -6f522d1d-77c2-34da-859d-409b03e0e4c5,SESCO,II.1.1,Misiones,AR-N,annual,2012,naphtha combustion consumption by freight transport,0.0036560754999999997,TJ,N2O,0.6,kg/TJ,0.0021936453,kg -ad7dac2a-7dcf-3ab7-adc6-e58e4594a05f,SESCO,II.1.1,San Luis,AR-D,annual,2012,naphtha combustion consumption by freight transport,0.015621413499999999,TJ,CO2,73300.0,kg/TJ,1145.04960955,kg -ecbe205c-a0c8-36db-bb47-7ef4bbf6dff1,SESCO,II.1.1,San Luis,AR-D,annual,2012,naphtha combustion consumption by freight transport,0.015621413499999999,TJ,CH4,3.0,kg/TJ,0.046864240499999994,kg -8b1216a8-95ea-3283-b8d7-decbdf6b077a,SESCO,II.1.1,San Luis,AR-D,annual,2012,naphtha combustion consumption by freight transport,0.015621413499999999,TJ,N2O,0.6,kg/TJ,0.0093728481,kg -8721ba2c-522a-37b6-9949-5138dae4d97d,SESCO,II.1.1,Santa Fe,AR-S,annual,2012,naphtha combustion consumption by freight transport,0.6673999639999999,TJ,CO2,73300.0,kg/TJ,48920.417361199994,kg -df52ed5f-4c73-3bc9-bb7e-3535cbe90051,SESCO,II.1.1,Santa Fe,AR-S,annual,2012,naphtha combustion consumption by freight transport,0.6673999639999999,TJ,CH4,3.0,kg/TJ,2.0021998919999997,kg -eb3fe103-9dfa-33d0-ad14-2f7f38c96e84,SESCO,II.1.1,Santa Fe,AR-S,annual,2012,naphtha combustion consumption by freight transport,0.6673999639999999,TJ,N2O,0.6,kg/TJ,0.40043997839999995,kg -c68500aa-6d63-3db5-b9d4-084b98a28f49,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2012,naphtha combustion consumption by freight transport,0.0069797805,TJ,CO2,73300.0,kg/TJ,511.61791065,kg -7db1d2fb-0d6d-3f8f-8acd-4030e5edec14,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2012,naphtha combustion consumption by freight transport,0.0069797805,TJ,CH4,3.0,kg/TJ,0.0209393415,kg -653c91e3-782a-3128-bb84-8d46b18938ca,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2012,naphtha combustion consumption by freight transport,0.0069797805,TJ,N2O,0.6,kg/TJ,0.0041878683,kg -5f83113b-b913-34dc-a163-ab3340cb15be,SESCO,II.1.1,Tucuman,AR-T,annual,2012,naphtha combustion consumption by freight transport,0.037890237,TJ,CO2,73300.0,kg/TJ,2777.3543721,kg -7c95620c-e1ec-3e82-ad64-9ca5455cb88e,SESCO,II.1.1,Tucuman,AR-T,annual,2012,naphtha combustion consumption by freight transport,0.037890237,TJ,CH4,3.0,kg/TJ,0.11367071100000001,kg -0895fce6-2924-31f3-b85e-ec63ed6153c6,SESCO,II.1.1,Tucuman,AR-T,annual,2012,naphtha combustion consumption by freight transport,0.037890237,TJ,N2O,0.6,kg/TJ,0.022734142199999998,kg -259dfff8-9841-30ae-837a-e7cd7ee90a10,SESCO,II.1.1,Buenos Aires,AR-B,annual,2012,naphtha combustion consumption by freight transport,2.6406836225,TJ,CO2,73300.0,kg/TJ,193562.10952925,kg -5175801a-0e80-393a-a87a-d434e602676a,SESCO,II.1.1,Buenos Aires,AR-B,annual,2012,naphtha combustion consumption by freight transport,2.6406836225,TJ,CH4,3.0,kg/TJ,7.9220508675,kg -b96780ed-7f53-3a35-ace8-f37998c3a497,SESCO,II.1.1,Buenos Aires,AR-B,annual,2012,naphtha combustion consumption by freight transport,2.6406836225,TJ,N2O,0.6,kg/TJ,1.5844101735,kg -6014e0ec-471b-39f0-a1e5-5ab72ac53991,SESCO,II.1.1,Capital Federal,AR-C,annual,2012,naphtha combustion consumption by freight transport,10.712301215,TJ,CO2,73300.0,kg/TJ,785211.6790595,kg -597b04f1-110a-3539-9cb5-bf97b00d4416,SESCO,II.1.1,Capital Federal,AR-C,annual,2012,naphtha combustion consumption by freight transport,10.712301215,TJ,CH4,3.0,kg/TJ,32.136903645000004,kg -cbfa9ac0-b2b7-37ba-ad09-6bbbf72f8a00,SESCO,II.1.1,Capital Federal,AR-C,annual,2012,naphtha combustion consumption by freight transport,10.712301215,TJ,N2O,0.6,kg/TJ,6.427380729,kg -b1aceff4-f6d8-3dd1-b905-f8c7886c08d2,SESCO,II.1.1,Chaco,AR-H,annual,2012,naphtha combustion consumption by freight transport,0.021271711999999998,TJ,CO2,73300.0,kg/TJ,1559.2164896,kg -777ebe45-ec19-38c0-be2e-fcf51fbea7e9,SESCO,II.1.1,Chaco,AR-H,annual,2012,naphtha combustion consumption by freight transport,0.021271711999999998,TJ,CH4,3.0,kg/TJ,0.063815136,kg -8eb41d30-a6e8-3a3a-a255-8b1dd5455ef5,SESCO,II.1.1,Chaco,AR-H,annual,2012,naphtha combustion consumption by freight transport,0.021271711999999998,TJ,N2O,0.6,kg/TJ,0.012763027199999999,kg -d1743418-2900-3c2b-a633-80ed09fef5a0,SESCO,II.1.1,Córdoba,AR-X,annual,2012,naphtha combustion consumption by freight transport,0.3852174095,TJ,CO2,73300.0,kg/TJ,28236.43611635,kg -55f25ea7-e236-3279-abe3-3c9650fb257e,SESCO,II.1.1,Córdoba,AR-X,annual,2012,naphtha combustion consumption by freight transport,0.3852174095,TJ,CH4,3.0,kg/TJ,1.1556522285,kg -f01aa763-cf5c-38e4-a68b-06cf22267c3d,SESCO,II.1.1,Córdoba,AR-X,annual,2012,naphtha combustion consumption by freight transport,0.3852174095,TJ,N2O,0.6,kg/TJ,0.2311304457,kg -60a305cd-4d89-3ac2-8222-2546eb9f7d2c,SESCO,II.1.1,Entre Rios,AR-E,annual,2012,naphtha combustion consumption by freight transport,0.09605507449999999,TJ,CO2,73300.0,kg/TJ,7040.836960849999,kg -4b06cfe8-bb63-3e44-a8a6-daa4166ab6bf,SESCO,II.1.1,Entre Rios,AR-E,annual,2012,naphtha combustion consumption by freight transport,0.09605507449999999,TJ,CH4,3.0,kg/TJ,0.28816522349999996,kg -0fa3d347-0a84-3691-8383-9971d5bc397a,SESCO,II.1.1,Entre Rios,AR-E,annual,2012,naphtha combustion consumption by freight transport,0.09605507449999999,TJ,N2O,0.6,kg/TJ,0.05763304469999999,kg -179591cc-5549-340b-ac07-dc461e125f34,SESCO,II.1.1,Misiones,AR-N,annual,2012,naphtha combustion consumption by freight transport,0.009971115,TJ,CO2,73300.0,kg/TJ,730.8827295,kg -9e00adda-f3a4-3151-bd58-e09610b2e551,SESCO,II.1.1,Misiones,AR-N,annual,2012,naphtha combustion consumption by freight transport,0.009971115,TJ,CH4,3.0,kg/TJ,0.029913344999999997,kg -95cf0c92-aaf1-31cb-a018-3f174d0bbdd2,SESCO,II.1.1,Misiones,AR-N,annual,2012,naphtha combustion consumption by freight transport,0.009971115,TJ,N2O,0.6,kg/TJ,0.0059826689999999995,kg -6720d67e-a20c-34f8-84df-7de79ee09d83,SESCO,II.1.1,San Luis,AR-D,annual,2012,naphtha combustion consumption by freight transport,0.0013294819999999999,TJ,CO2,73300.0,kg/TJ,97.4510306,kg -b4b25bad-1fbf-3a3c-a21d-2245a68d3e0a,SESCO,II.1.1,San Luis,AR-D,annual,2012,naphtha combustion consumption by freight transport,0.0013294819999999999,TJ,CH4,3.0,kg/TJ,0.003988446,kg -b68ba034-002e-36d2-95f4-277970379e80,SESCO,II.1.1,San Luis,AR-D,annual,2012,naphtha combustion consumption by freight transport,0.0013294819999999999,TJ,N2O,0.6,kg/TJ,0.0007976891999999999,kg -52667e87-569d-3ba6-920e-411bbba9d478,SESCO,II.1.1,Santa Fe,AR-S,annual,2012,naphtha combustion consumption by freight transport,0.4496972864999999,TJ,CO2,73300.0,kg/TJ,32962.811100449995,kg -24af8b36-ec22-3562-8d0e-8d9bcad75316,SESCO,II.1.1,Santa Fe,AR-S,annual,2012,naphtha combustion consumption by freight transport,0.4496972864999999,TJ,CH4,3.0,kg/TJ,1.3490918594999997,kg -47e9a603-ecb7-326f-9ead-7b550688b16b,SESCO,II.1.1,Santa Fe,AR-S,annual,2012,naphtha combustion consumption by freight transport,0.4496972864999999,TJ,N2O,0.6,kg/TJ,0.2698183718999999,kg -a9ffd17a-166d-348b-81cf-28c6131df4ac,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2012,naphtha combustion consumption by freight transport,0.222688235,TJ,CO2,73300.0,kg/TJ,16323.047625500001,kg -b0d1c6e5-b33d-376f-b988-7d88ddc04fbb,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2012,naphtha combustion consumption by freight transport,0.222688235,TJ,CH4,3.0,kg/TJ,0.668064705,kg -0842e5d4-8399-3cde-9acc-372ec95dab07,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2012,naphtha combustion consumption by freight transport,0.222688235,TJ,N2O,0.6,kg/TJ,0.133612941,kg -2935fcc8-d173-3d7c-a372-83356387ebf2,SESCO,II.1.1,Tucuman,AR-T,annual,2012,naphtha combustion consumption by freight transport,0.028916233499999996,TJ,CO2,73300.0,kg/TJ,2119.55991555,kg -d7e474af-7f23-3bf4-8bd6-e03384d6cc56,SESCO,II.1.1,Tucuman,AR-T,annual,2012,naphtha combustion consumption by freight transport,0.028916233499999996,TJ,CH4,3.0,kg/TJ,0.08674870049999998,kg -a8b3497a-bc22-3a3a-8e98-9eb4b5537b4b,SESCO,II.1.1,Tucuman,AR-T,annual,2012,naphtha combustion consumption by freight transport,0.028916233499999996,TJ,N2O,0.6,kg/TJ,0.017349740099999997,kg -cfee1b09-c4b8-398a-a223-457d59320bd3,SESCO,II.1.1,Capital Federal,AR-C,annual,2012,naphtha combustion consumption by public passenger transport,19.525769763499998,TJ,CO2,73300.0,kg/TJ,1431238.9236645498,kg -cf510264-fd05-3147-a0c4-7226cd133523,SESCO,II.1.1,Capital Federal,AR-C,annual,2012,naphtha combustion consumption by public passenger transport,19.525769763499998,TJ,CH4,3.0,kg/TJ,58.5773092905,kg -99f71a23-da8b-3a35-a3df-81e0fe8c7d06,SESCO,II.1.1,Capital Federal,AR-C,annual,2012,naphtha combustion consumption by public passenger transport,19.525769763499998,TJ,N2O,0.6,kg/TJ,11.715461858099998,kg -1e5c5b45-8e46-3077-bd1e-ad1301a9caa6,SESCO,II.1.1,Córdoba,AR-X,annual,2012,naphtha combustion consumption by public passenger transport,0.014956672499999997,TJ,CO2,73300.0,kg/TJ,1096.3240942499997,kg -687c8a58-05b5-3af8-b045-88c0024b082c,SESCO,II.1.1,Córdoba,AR-X,annual,2012,naphtha combustion consumption by public passenger transport,0.014956672499999997,TJ,CH4,3.0,kg/TJ,0.04487001749999999,kg -5d9f9d05-7b7d-3ae8-974a-76aa29b5257a,SESCO,II.1.1,Córdoba,AR-X,annual,2012,naphtha combustion consumption by public passenger transport,0.014956672499999997,TJ,N2O,0.6,kg/TJ,0.008974003499999997,kg -47e1f0de-d037-331f-837b-7647ff13f5b3,SESCO,II.1.1,Misiones,AR-N,annual,2012,naphtha combustion consumption by public passenger transport,19.809281799999997,TJ,CO2,73300.0,kg/TJ,1452020.3559399997,kg -863b37d9-9b48-3c9a-bbb4-322cf834d102,SESCO,II.1.1,Misiones,AR-N,annual,2012,naphtha combustion consumption by public passenger transport,19.809281799999997,TJ,CH4,3.0,kg/TJ,59.427845399999995,kg -4ab31b03-6606-3b59-a221-dab98aa591bb,SESCO,II.1.1,Misiones,AR-N,annual,2012,naphtha combustion consumption by public passenger transport,19.809281799999997,TJ,N2O,0.6,kg/TJ,11.885569079999998,kg -70651b83-46cf-3f04-b62e-371f681bcc5b,SESCO,II.1.1,Santa Fe,AR-S,annual,2012,naphtha combustion consumption by public passenger transport,0.09838166799999999,TJ,CO2,73300.0,kg/TJ,7211.376264399999,kg -3e83e6f3-ff32-3e7c-af91-29992b34eadd,SESCO,II.1.1,Santa Fe,AR-S,annual,2012,naphtha combustion consumption by public passenger transport,0.09838166799999999,TJ,CH4,3.0,kg/TJ,0.295145004,kg -c96c5552-8414-3658-b559-bead5859c786,SESCO,II.1.1,Santa Fe,AR-S,annual,2012,naphtha combustion consumption by public passenger transport,0.09838166799999999,TJ,N2O,0.6,kg/TJ,0.059029000799999995,kg -11af6126-cd64-3976-b514-56e8e18d01a7,SESCO,II.1.1,Buenos Aires,AR-B,annual,2012,naphtha combustion consumption by public passenger transport,0.003988446,TJ,CO2,73300.0,kg/TJ,292.35309179999996,kg -7e282172-f7eb-367b-9023-057786901234,SESCO,II.1.1,Buenos Aires,AR-B,annual,2012,naphtha combustion consumption by public passenger transport,0.003988446,TJ,CH4,3.0,kg/TJ,0.011965337999999999,kg -ad51a85d-7e6a-31d1-bad1-4a550fe3715a,SESCO,II.1.1,Buenos Aires,AR-B,annual,2012,naphtha combustion consumption by public passenger transport,0.003988446,TJ,N2O,0.6,kg/TJ,0.0023930676,kg -82cbccb3-da73-3610-8789-d768035a026e,SESCO,II.1.1,Capital Federal,AR-C,annual,2012,naphtha combustion consumption by public passenger transport,0.22833853349999997,TJ,CO2,73300.0,kg/TJ,16737.214505549997,kg -e5e44cc7-5605-312d-936a-24cb47e4c963,SESCO,II.1.1,Capital Federal,AR-C,annual,2012,naphtha combustion consumption by public passenger transport,0.22833853349999997,TJ,CH4,3.0,kg/TJ,0.6850156004999999,kg -e16ef1bb-c6c7-31dd-b19d-e9e4074017f3,SESCO,II.1.1,Capital Federal,AR-C,annual,2012,naphtha combustion consumption by public passenger transport,0.22833853349999997,TJ,N2O,0.6,kg/TJ,0.1370031201,kg -19146f51-bb31-3104-800e-a9bd26981b8d,SESCO,II.1.1,Córdoba,AR-X,annual,2012,naphtha combustion consumption by public passenger transport,0.0076445215,TJ,CO2,73300.0,kg/TJ,560.34342595,kg -855d18d4-7a5a-38bf-ba6b-c5cfe10c3cbf,SESCO,II.1.1,Córdoba,AR-X,annual,2012,naphtha combustion consumption by public passenger transport,0.0076445215,TJ,CH4,3.0,kg/TJ,0.0229335645,kg -0b6a5efe-1cb8-30e3-b6a2-dc1f803c2388,SESCO,II.1.1,Córdoba,AR-X,annual,2012,naphtha combustion consumption by public passenger transport,0.0076445215,TJ,N2O,0.6,kg/TJ,0.0045867129,kg -1f390067-eb42-3b82-a6e4-3c134eb868eb,SESCO,II.1.1,Santa Fe,AR-S,annual,2012,naphtha combustion consumption by public passenger transport,0.084422107,TJ,CO2,73300.0,kg/TJ,6188.1404431,kg -7cbbe32a-5768-3eb0-adaf-5072110b849d,SESCO,II.1.1,Santa Fe,AR-S,annual,2012,naphtha combustion consumption by public passenger transport,0.084422107,TJ,CH4,3.0,kg/TJ,0.253266321,kg -d3bd1883-a6de-3f96-a6f0-d3a533ef4a8a,SESCO,II.1.1,Santa Fe,AR-S,annual,2012,naphtha combustion consumption by public passenger transport,0.084422107,TJ,N2O,0.6,kg/TJ,0.0506532642,kg -ed41f753-ed82-3272-b93d-60c5dd10d10f,SESCO,II.5.1,Córdoba,AR-X,annual,2012,naphtha combustion consumption by agriculture machines,0.8533845246849999,TJ,CO2,73300.0,kg/TJ,62553.08565941049,kg -83aa38fe-3884-35a5-8ddb-6adc1ea9241c,SESCO,II.5.1,Córdoba,AR-X,annual,2012,naphtha combustion consumption by agriculture machines,0.8533845246849999,TJ,CH4,3.0,kg/TJ,2.5601535740549997,kg -36366a41-ba3a-3985-8f9f-16fde7e342fb,SESCO,II.5.1,Córdoba,AR-X,annual,2012,naphtha combustion consumption by agriculture machines,0.8533845246849999,TJ,N2O,0.6,kg/TJ,0.5120307148109999,kg -88c1732a-1ebd-3a7f-94ab-d5d34115ac79,SESCO,II.5.1,Santa Fe,AR-S,annual,2012,naphtha combustion consumption by agriculture machines,1.7757691651699998,TJ,CO2,73300.0,kg/TJ,130163.87980696099,kg -024ca34b-ac8b-37dd-9099-fbe759a6bb30,SESCO,II.5.1,Santa Fe,AR-S,annual,2012,naphtha combustion consumption by agriculture machines,1.7757691651699998,TJ,CH4,3.0,kg/TJ,5.3273074955099995,kg -c1ec918c-3eb3-3566-b896-3c5ce6aab24e,SESCO,II.5.1,Santa Fe,AR-S,annual,2012,naphtha combustion consumption by agriculture machines,1.7757691651699998,TJ,N2O,0.6,kg/TJ,1.065461499102,kg -dbe41b2c-8f66-3c30-b62f-8f41d7be4ff2,SESCO,II.1.1,Buenos Aires,AR-B,annual,2012,naphtha combustion consumption by to the public,2369.351738377855,TJ,CO2,73300.0,kg/TJ,173673482.42309678,kg -52aa7a3a-efd4-3d8f-badd-9070ac767ba6,SESCO,II.1.1,Buenos Aires,AR-B,annual,2012,naphtha combustion consumption by to the public,2369.351738377855,TJ,CH4,3.0,kg/TJ,7108.055215133565,kg -53f1cae2-8f59-315c-9415-6f05c189f21b,SESCO,II.1.1,Buenos Aires,AR-B,annual,2012,naphtha combustion consumption by to the public,2369.351738377855,TJ,N2O,0.6,kg/TJ,1421.6110430267129,kg -3d471fe4-574b-31f5-a8ce-9c44c66ca4d3,SESCO,II.1.1,Capital Federal,AR-C,annual,2012,naphtha combustion consumption by to the public,338.00086956481994,TJ,CO2,73300.0,kg/TJ,24775463.739101302,kg -34bf8a03-9e00-35e2-84af-d18d41664997,SESCO,II.1.1,Capital Federal,AR-C,annual,2012,naphtha combustion consumption by to the public,338.00086956481994,TJ,CH4,3.0,kg/TJ,1014.0026086944598,kg -5e1c7873-4b33-398e-ad7f-ed707545cd42,SESCO,II.1.1,Capital Federal,AR-C,annual,2012,naphtha combustion consumption by to the public,338.00086956481994,TJ,N2O,0.6,kg/TJ,202.80052173889194,kg -a8e2bbe3-5435-3081-a9c2-13a361248e8e,SESCO,II.1.1,Catamarca,AR-K,annual,2012,naphtha combustion consumption by to the public,193.35940340870997,TJ,CO2,73300.0,kg/TJ,14173244.26985844,kg -2c5926dd-73db-3caa-be8f-303842a50386,SESCO,II.1.1,Catamarca,AR-K,annual,2012,naphtha combustion consumption by to the public,193.35940340870997,TJ,CH4,3.0,kg/TJ,580.0782102261298,kg -accf39a6-1ebe-3db2-8d5c-54621e8ef43c,SESCO,II.1.1,Catamarca,AR-K,annual,2012,naphtha combustion consumption by to the public,193.35940340870997,TJ,N2O,0.6,kg/TJ,116.01564204522597,kg -bd5105e9-b633-30d7-8e1e-43ad2dff61ea,SESCO,II.1.1,Chaco,AR-H,annual,2012,naphtha combustion consumption by to the public,353.2198787767649,TJ,CO2,73300.0,kg/TJ,25891017.114336867,kg -25dcbc55-03b5-365d-8a58-656c2686ed80,SESCO,II.1.1,Chaco,AR-H,annual,2012,naphtha combustion consumption by to the public,353.2198787767649,TJ,CH4,3.0,kg/TJ,1059.6596363302947,kg -bea91ef6-076c-368c-8ab8-198e2f199ef0,SESCO,II.1.1,Chaco,AR-H,annual,2012,naphtha combustion consumption by to the public,353.2198787767649,TJ,N2O,0.6,kg/TJ,211.93192726605895,kg -9fcf112d-b93f-3244-99f6-032de71ca120,SESCO,II.1.1,Corrientes,AR-W,annual,2012,naphtha combustion consumption by to the public,451.16630760701497,TJ,CO2,73300.0,kg/TJ,33070490.347594198,kg -b33a284c-99c2-3b0a-8e7f-561ad77b91bf,SESCO,II.1.1,Corrientes,AR-W,annual,2012,naphtha combustion consumption by to the public,451.16630760701497,TJ,CH4,3.0,kg/TJ,1353.498922821045,kg -a188dd25-2ee1-3f92-a4a6-d003fe8441ac,SESCO,II.1.1,Corrientes,AR-W,annual,2012,naphtha combustion consumption by to the public,451.16630760701497,TJ,N2O,0.6,kg/TJ,270.699784564209,kg -b397e907-3e3a-38b7-8404-a7ae9217d658,SESCO,II.1.1,Córdoba,AR-X,annual,2012,naphtha combustion consumption by to the public,801.5635332362349,TJ,CO2,73300.0,kg/TJ,58754606.986216016,kg -d8a66369-283e-3e2c-a91b-b4a2bfc3e78b,SESCO,II.1.1,Córdoba,AR-X,annual,2012,naphtha combustion consumption by to the public,801.5635332362349,TJ,CH4,3.0,kg/TJ,2404.6905997087047,kg -fba61785-c96e-3119-9598-1771264de703,SESCO,II.1.1,Córdoba,AR-X,annual,2012,naphtha combustion consumption by to the public,801.5635332362349,TJ,N2O,0.6,kg/TJ,480.9381199417409,kg -2b15f884-7a56-3c89-b403-210a6a23d8eb,SESCO,II.1.1,Entre Rios,AR-E,annual,2012,naphtha combustion consumption by to the public,502.66735921248,TJ,CO2,73300.0,kg/TJ,36845517.430274785,kg -bc1a8d8d-2ba6-308c-baa6-85f5c46e1951,SESCO,II.1.1,Entre Rios,AR-E,annual,2012,naphtha combustion consumption by to the public,502.66735921248,TJ,CH4,3.0,kg/TJ,1508.00207763744,kg -7fdcf9d9-dd00-3154-8302-5ac60224fdd0,SESCO,II.1.1,Entre Rios,AR-E,annual,2012,naphtha combustion consumption by to the public,502.66735921248,TJ,N2O,0.6,kg/TJ,301.600415527488,kg -f4f33bdf-338a-39d4-b2df-cc87da7e1f2c,SESCO,II.1.1,Formosa,AR-P,annual,2012,naphtha combustion consumption by to the public,64.71852899011499,TJ,CO2,73300.0,kg/TJ,4743868.174975429,kg -7d3d6117-9aac-34c6-b108-8e39dcee3c76,SESCO,II.1.1,Formosa,AR-P,annual,2012,naphtha combustion consumption by to the public,64.71852899011499,TJ,CH4,3.0,kg/TJ,194.15558697034498,kg -0abb077a-d7b7-30df-9f4b-47d6d199be0e,SESCO,II.1.1,Formosa,AR-P,annual,2012,naphtha combustion consumption by to the public,64.71852899011499,TJ,N2O,0.6,kg/TJ,38.83111739406899,kg -37f63483-ca7e-312f-9746-d93acfd31d80,SESCO,II.1.1,Jujuy,AR-Y,annual,2012,naphtha combustion consumption by to the public,27.2252653442,TJ,CO2,73300.0,kg/TJ,1995611.94972986,kg -fcee3b4c-64c5-3a6c-a946-c05fdca7def4,SESCO,II.1.1,Jujuy,AR-Y,annual,2012,naphtha combustion consumption by to the public,27.2252653442,TJ,CH4,3.0,kg/TJ,81.6757960326,kg -16b0eb2d-9c6b-36e6-b8e7-50659a758211,SESCO,II.1.1,Jujuy,AR-Y,annual,2012,naphtha combustion consumption by to the public,27.2252653442,TJ,N2O,0.6,kg/TJ,16.33515920652,kg -d01671df-9ad7-3c59-abf2-28b2ab3a778c,SESCO,II.1.1,La Pampa,AR-L,annual,2012,naphtha combustion consumption by to the public,15.598812306,TJ,CO2,73300.0,kg/TJ,1143392.9420298,kg -705233e0-24e2-36fd-86c7-316efd3c2069,SESCO,II.1.1,La Pampa,AR-L,annual,2012,naphtha combustion consumption by to the public,15.598812306,TJ,CH4,3.0,kg/TJ,46.796436918,kg -6b4efce2-b81e-35bc-8852-1c2d265d6ffa,SESCO,II.1.1,La Pampa,AR-L,annual,2012,naphtha combustion consumption by to the public,15.598812306,TJ,N2O,0.6,kg/TJ,9.3592873836,kg -f4ba0c72-e084-3c9f-a283-8ca1d6e915d0,SESCO,II.1.1,La Rioja,AR-F,annual,2012,naphtha combustion consumption by to the public,102.42751770905498,TJ,CO2,73300.0,kg/TJ,7507937.04807373,kg -b8766c4e-aab4-324d-b01e-ad20db29c786,SESCO,II.1.1,La Rioja,AR-F,annual,2012,naphtha combustion consumption by to the public,102.42751770905498,TJ,CH4,3.0,kg/TJ,307.28255312716493,kg -9c3811ed-15f6-35cb-a804-0a62ecad7f4f,SESCO,II.1.1,La Rioja,AR-F,annual,2012,naphtha combustion consumption by to the public,102.42751770905498,TJ,N2O,0.6,kg/TJ,61.45651062543298,kg -00a5b4d5-8982-30ed-96a2-727175dabe60,SESCO,II.1.1,Mendoza,AR-M,annual,2012,naphtha combustion consumption by to the public,397.158361476415,TJ,CO2,73300.0,kg/TJ,29111707.89622122,kg -60f352a1-d509-3563-88d6-e0a9281f1cd2,SESCO,II.1.1,Mendoza,AR-M,annual,2012,naphtha combustion consumption by to the public,397.158361476415,TJ,CH4,3.0,kg/TJ,1191.475084429245,kg -974bad1b-5bbe-31df-a4a1-3d49587c4b2d,SESCO,II.1.1,Mendoza,AR-M,annual,2012,naphtha combustion consumption by to the public,397.158361476415,TJ,N2O,0.6,kg/TJ,238.29501688584898,kg -c5e314a9-6b3c-343e-9227-461f4996cba8,SESCO,II.1.1,Misiones,AR-N,annual,2012,naphtha combustion consumption by to the public,208.959754590125,TJ,CO2,73300.0,kg/TJ,15316750.011456162,kg -9f3a1dbf-cf96-30b4-a4fc-49e8a8dd95ee,SESCO,II.1.1,Misiones,AR-N,annual,2012,naphtha combustion consumption by to the public,208.959754590125,TJ,CH4,3.0,kg/TJ,626.879263770375,kg -c8be231f-2fc0-3f78-98da-8ddee49a5a47,SESCO,II.1.1,Misiones,AR-N,annual,2012,naphtha combustion consumption by to the public,208.959754590125,TJ,N2O,0.6,kg/TJ,125.37585275407498,kg -5162a430-cdcf-3e36-b903-5be98567af3b,SESCO,II.1.1,Rio Negro,AR-R,annual,2012,naphtha combustion consumption by to the public,20.577436557369996,TJ,CO2,73300.0,kg/TJ,1508326.0996552208,kg -095459e6-f748-3fb1-9e1d-fc57537cb449,SESCO,II.1.1,Rio Negro,AR-R,annual,2012,naphtha combustion consumption by to the public,20.577436557369996,TJ,CH4,3.0,kg/TJ,61.73230967210999,kg -c4f1949c-79de-30f2-80e7-57052f6b6c27,SESCO,II.1.1,Rio Negro,AR-R,annual,2012,naphtha combustion consumption by to the public,20.577436557369996,TJ,N2O,0.6,kg/TJ,12.346461934421997,kg -97f5a422-4432-3fa7-a218-deb1cc5df8b1,SESCO,II.1.1,San Juan,AR-J,annual,2012,naphtha combustion consumption by to the public,254.782691608445,TJ,CO2,73300.0,kg/TJ,18675571.294899017,kg -e13a23bb-5e11-3e20-816b-1a853b585b8b,SESCO,II.1.1,San Juan,AR-J,annual,2012,naphtha combustion consumption by to the public,254.782691608445,TJ,CH4,3.0,kg/TJ,764.348074825335,kg -6c9e2979-7862-3d65-90f7-c11fa9a1081e,SESCO,II.1.1,San Juan,AR-J,annual,2012,naphtha combustion consumption by to the public,254.782691608445,TJ,N2O,0.6,kg/TJ,152.869614965067,kg -953c8d88-5d85-3504-8be0-7a79ceb99740,SESCO,II.1.1,San Luis,AR-D,annual,2012,naphtha combustion consumption by to the public,153.75481931194,TJ,CO2,73300.0,kg/TJ,11270228.255565202,kg -e244bcaf-62c8-3f50-8f5e-910791828e15,SESCO,II.1.1,San Luis,AR-D,annual,2012,naphtha combustion consumption by to the public,153.75481931194,TJ,CH4,3.0,kg/TJ,461.26445793582,kg -a10a72ab-2d99-32bd-b960-863d7a60eb83,SESCO,II.1.1,San Luis,AR-D,annual,2012,naphtha combustion consumption by to the public,153.75481931194,TJ,N2O,0.6,kg/TJ,92.252891587164,kg -fef738e4-72ec-3504-bb25-8162b94c009e,SESCO,II.1.1,Santa Fe,AR-S,annual,2012,naphtha combustion consumption by to the public,1253.3871566862797,TJ,CO2,73300.0,kg/TJ,91873278.5851043,kg -73ec1079-0228-31a2-8472-f1a87d3d2ed5,SESCO,II.1.1,Santa Fe,AR-S,annual,2012,naphtha combustion consumption by to the public,1253.3871566862797,TJ,CH4,3.0,kg/TJ,3760.161470058839,kg -dc57b1c0-dcb8-347f-8e8b-14d1215165a1,SESCO,II.1.1,Santa Fe,AR-S,annual,2012,naphtha combustion consumption by to the public,1253.3871566862797,TJ,N2O,0.6,kg/TJ,752.0322940117678,kg -d1bc4ff2-452d-3cb8-b556-b8acb1bc78f0,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2012,naphtha combustion consumption by to the public,184.23969200521498,TJ,CO2,73300.0,kg/TJ,13504769.423982257,kg -08b22bd4-cfb4-310b-9cdf-537b21a1d707,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2012,naphtha combustion consumption by to the public,184.23969200521498,TJ,CH4,3.0,kg/TJ,552.719076015645,kg -a3c10d6f-29a2-3f99-ac80-816d19718239,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2012,naphtha combustion consumption by to the public,184.23969200521498,TJ,N2O,0.6,kg/TJ,110.54381520312899,kg -51a8cdba-c862-31db-bd34-926041e5adc5,SESCO,II.1.1,Tucuman,AR-T,annual,2012,naphtha combustion consumption by to the public,221.99382660916996,TJ,CO2,73300.0,kg/TJ,16272147.490452157,kg -da5ea52e-9ce9-3dcf-b190-e5337028c111,SESCO,II.1.1,Tucuman,AR-T,annual,2012,naphtha combustion consumption by to the public,221.99382660916996,TJ,CH4,3.0,kg/TJ,665.9814798275099,kg -e3d9e47d-2a64-3b2a-b395-fde0ae860cc4,SESCO,II.1.1,Tucuman,AR-T,annual,2012,naphtha combustion consumption by to the public,221.99382660916996,TJ,N2O,0.6,kg/TJ,133.19629596550197,kg -f18266f5-74c9-33c7-8f99-86f70d6ae563,SESCO,II.1.1,Buenos Aires,AR-B,annual,2012,naphtha combustion consumption by to the public,402.52108637240497,TJ,CO2,73300.0,kg/TJ,29504795.631097283,kg -657a439f-8a88-37e5-872c-d7647c431222,SESCO,II.1.1,Buenos Aires,AR-B,annual,2012,naphtha combustion consumption by to the public,402.52108637240497,TJ,CH4,3.0,kg/TJ,1207.5632591172148,kg -81ba6d76-29db-3715-aa32-bdd18b713a9d,SESCO,II.1.1,Buenos Aires,AR-B,annual,2012,naphtha combustion consumption by to the public,402.52108637240497,TJ,N2O,0.6,kg/TJ,241.51265182344298,kg -d08f1b8b-7a94-3a2d-a237-d0fce4040d01,SESCO,II.1.1,Capital Federal,AR-C,annual,2012,naphtha combustion consumption by to the public,64.89472856328,TJ,CO2,73300.0,kg/TJ,4756783.6036884235,kg -5dad00ac-2442-36a1-a3d9-9e3035ecd1a3,SESCO,II.1.1,Capital Federal,AR-C,annual,2012,naphtha combustion consumption by to the public,64.89472856328,TJ,CH4,3.0,kg/TJ,194.68418568983998,kg -680ac40c-f63a-3cb3-8f56-30edcad03bec,SESCO,II.1.1,Capital Federal,AR-C,annual,2012,naphtha combustion consumption by to the public,64.89472856328,TJ,N2O,0.6,kg/TJ,38.936837137968,kg -a7b60525-4bd9-3b5a-ba56-e94b1c591f7b,SESCO,II.1.1,Catamarca,AR-K,annual,2012,naphtha combustion consumption by to the public,18.527541498620003,TJ,CO2,73300.0,kg/TJ,1358068.7918488462,kg -29b8c44c-f43e-3931-8e03-b2eab98445f5,SESCO,II.1.1,Catamarca,AR-K,annual,2012,naphtha combustion consumption by to the public,18.527541498620003,TJ,CH4,3.0,kg/TJ,55.58262449586001,kg -ff627ff5-8ebd-3726-b41f-b569bc63ee3d,SESCO,II.1.1,Catamarca,AR-K,annual,2012,naphtha combustion consumption by to the public,18.527541498620003,TJ,N2O,0.6,kg/TJ,11.116524899172001,kg -7c185054-b2d0-3344-bfb2-52689d0ad968,SESCO,II.1.1,Chaco,AR-H,annual,2012,naphtha combustion consumption by to the public,31.79863689233,TJ,CO2,73300.0,kg/TJ,2330840.084207789,kg -ec71701f-16e4-3a3b-a55a-873f06ba2630,SESCO,II.1.1,Chaco,AR-H,annual,2012,naphtha combustion consumption by to the public,31.79863689233,TJ,CH4,3.0,kg/TJ,95.39591067699,kg -e480def2-a270-3f61-9f1c-772f07eec0fc,SESCO,II.1.1,Chaco,AR-H,annual,2012,naphtha combustion consumption by to the public,31.79863689233,TJ,N2O,0.6,kg/TJ,19.079182135398,kg -f700147e-36b5-3c0c-88ed-c5f19de2d86a,SESCO,II.1.1,Chubut,AR-U,annual,2012,naphtha combustion consumption by to the public,0.54561276539,TJ,CO2,73300.0,kg/TJ,39993.415703087005,kg -037be725-cf88-3cc9-8eb4-8ecb92de5aba,SESCO,II.1.1,Chubut,AR-U,annual,2012,naphtha combustion consumption by to the public,0.54561276539,TJ,CH4,3.0,kg/TJ,1.63683829617,kg -694645ea-c6ed-39c1-8544-52f956cb9001,SESCO,II.1.1,Chubut,AR-U,annual,2012,naphtha combustion consumption by to the public,0.54561276539,TJ,N2O,0.6,kg/TJ,0.327367659234,kg -e82566ec-e264-3241-ae00-4ef74572d1a0,SESCO,II.1.1,Corrientes,AR-W,annual,2012,naphtha combustion consumption by to the public,61.49962705617499,TJ,CO2,73300.0,kg/TJ,4507922.6632176265,kg -2d1dda74-e9a5-3171-b870-741b7118a2b6,SESCO,II.1.1,Corrientes,AR-W,annual,2012,naphtha combustion consumption by to the public,61.49962705617499,TJ,CH4,3.0,kg/TJ,184.49888116852497,kg -daa36112-b469-3b8d-89c0-e3a637020f9f,SESCO,II.1.1,Corrientes,AR-W,annual,2012,naphtha combustion consumption by to the public,61.49962705617499,TJ,N2O,0.6,kg/TJ,36.89977623370499,kg -e2890355-d6b6-339e-ba24-5abc9f1a7605,SESCO,II.1.1,Córdoba,AR-X,annual,2012,naphtha combustion consumption by to the public,148.86920229758496,TJ,CO2,73300.0,kg/TJ,10912112.528412977,kg -4cd666ce-e452-32d5-bd6d-e5754fdc20db,SESCO,II.1.1,Córdoba,AR-X,annual,2012,naphtha combustion consumption by to the public,148.86920229758496,TJ,CH4,3.0,kg/TJ,446.6076068927549,kg -f0748d3e-1d27-325a-9fc4-536d900fa072,SESCO,II.1.1,Córdoba,AR-X,annual,2012,naphtha combustion consumption by to the public,148.86920229758496,TJ,N2O,0.6,kg/TJ,89.32152137855097,kg -9d019e4d-fc3f-3d39-99cd-e9d971bdb993,SESCO,II.1.1,Entre Rios,AR-E,annual,2012,naphtha combustion consumption by to the public,89.60715327409999,TJ,CO2,73300.0,kg/TJ,6568204.334991529,kg -025d59f7-81dc-33cb-85fc-11f198fe7a89,SESCO,II.1.1,Entre Rios,AR-E,annual,2012,naphtha combustion consumption by to the public,89.60715327409999,TJ,CH4,3.0,kg/TJ,268.82145982229997,kg -539922ab-7bad-32bd-8892-bdcd4fba5ee1,SESCO,II.1.1,Entre Rios,AR-E,annual,2012,naphtha combustion consumption by to the public,89.60715327409999,TJ,N2O,0.6,kg/TJ,53.76429196445999,kg -561b0633-a7be-356d-ba0e-f6fd00f3d5dd,SESCO,II.1.1,Jujuy,AR-Y,annual,2012,naphtha combustion consumption by to the public,4.51987319245,TJ,CO2,73300.0,kg/TJ,331306.70500658505,kg -b3f6b83f-a343-361d-9a8e-3df5beab486a,SESCO,II.1.1,Jujuy,AR-Y,annual,2012,naphtha combustion consumption by to the public,4.51987319245,TJ,CH4,3.0,kg/TJ,13.559619577350002,kg -87a6049b-e7cf-38a3-8cef-fc9caf8d2f63,SESCO,II.1.1,Jujuy,AR-Y,annual,2012,naphtha combustion consumption by to the public,4.51987319245,TJ,N2O,0.6,kg/TJ,2.7119239154700003,kg -0efafa1d-f3c2-3505-b4ec-bb083e3cfbcd,SESCO,II.1.1,La Pampa,AR-L,annual,2012,naphtha combustion consumption by to the public,5.314966578845,TJ,CO2,73300.0,kg/TJ,389587.05022933846,kg -35f278c7-67f2-3dfe-b3ed-1149396f7e61,SESCO,II.1.1,La Pampa,AR-L,annual,2012,naphtha combustion consumption by to the public,5.314966578845,TJ,CH4,3.0,kg/TJ,15.944899736535,kg -62259b09-2623-3d93-bca6-810b82245c62,SESCO,II.1.1,La Pampa,AR-L,annual,2012,naphtha combustion consumption by to the public,5.314966578845,TJ,N2O,0.6,kg/TJ,3.1889799473069997,kg -8e9cab68-aa29-387f-97f2-633c894bbd2b,SESCO,II.1.1,La Rioja,AR-F,annual,2012,naphtha combustion consumption by to the public,6.513185497279999,TJ,CO2,73300.0,kg/TJ,477416.4969506239,kg -9363e5cd-7615-3730-9b97-3c2c570cbe8e,SESCO,II.1.1,La Rioja,AR-F,annual,2012,naphtha combustion consumption by to the public,6.513185497279999,TJ,CH4,3.0,kg/TJ,19.53955649184,kg -9a52146c-8a4f-378c-a75c-85347a5a34d2,SESCO,II.1.1,La Rioja,AR-F,annual,2012,naphtha combustion consumption by to the public,6.513185497279999,TJ,N2O,0.6,kg/TJ,3.9079112983679996,kg -fc33fbb6-eb72-37bb-9795-9999162ddb23,SESCO,II.1.1,Mendoza,AR-M,annual,2012,naphtha combustion consumption by to the public,57.336693191085,TJ,CO2,73300.0,kg/TJ,4202779.61090653,kg -951d3e10-8ae3-3f2e-9538-ef17fa5ca01e,SESCO,II.1.1,Mendoza,AR-M,annual,2012,naphtha combustion consumption by to the public,57.336693191085,TJ,CH4,3.0,kg/TJ,172.01007957325498,kg -5cc65b3e-a62b-3416-b438-beb05d9e75f5,SESCO,II.1.1,Mendoza,AR-M,annual,2012,naphtha combustion consumption by to the public,57.336693191085,TJ,N2O,0.6,kg/TJ,34.402015914650995,kg -bce7eacd-bd5e-3fa7-91ab-396238373087,SESCO,II.1.1,Misiones,AR-N,annual,2012,naphtha combustion consumption by to the public,22.561060262124997,TJ,CO2,73300.0,kg/TJ,1653725.7172137622,kg -be065172-f701-38f4-8464-02c4059a8526,SESCO,II.1.1,Misiones,AR-N,annual,2012,naphtha combustion consumption by to the public,22.561060262124997,TJ,CH4,3.0,kg/TJ,67.68318078637499,kg -8954e975-04db-3885-8214-3e7b642f8275,SESCO,II.1.1,Misiones,AR-N,annual,2012,naphtha combustion consumption by to the public,22.561060262124997,TJ,N2O,0.6,kg/TJ,13.536636157274998,kg -d0920296-912b-3931-b059-b4677d0fb6b0,SESCO,II.1.1,San Juan,AR-J,annual,2012,naphtha combustion consumption by to the public,52.40779821392499,TJ,CO2,73300.0,kg/TJ,3841491.609080702,kg -4b8ac9d1-f752-3b7c-9f77-dae01b2f0df6,SESCO,II.1.1,San Juan,AR-J,annual,2012,naphtha combustion consumption by to the public,52.40779821392499,TJ,CH4,3.0,kg/TJ,157.22339464177497,kg -87a32fa0-0c3a-32f4-afc9-6a8ed780daa0,SESCO,II.1.1,San Juan,AR-J,annual,2012,naphtha combustion consumption by to the public,52.40779821392499,TJ,N2O,0.6,kg/TJ,31.444678928354993,kg -d2842e65-4757-3730-bc63-9386cabad039,SESCO,II.1.1,San Luis,AR-D,annual,2012,naphtha combustion consumption by to the public,27.571083554629997,TJ,CO2,73300.0,kg/TJ,2020960.4245543787,kg -c27be797-e1d4-3849-ac35-83f1ea619bea,SESCO,II.1.1,San Luis,AR-D,annual,2012,naphtha combustion consumption by to the public,27.571083554629997,TJ,CH4,3.0,kg/TJ,82.71325066389,kg -9db0610b-d8e6-3b45-be9b-b12e5b3c6f57,SESCO,II.1.1,San Luis,AR-D,annual,2012,naphtha combustion consumption by to the public,27.571083554629997,TJ,N2O,0.6,kg/TJ,16.542650132777997,kg -0e159bb0-9a7b-390a-afa0-acb1aa94d4f2,SESCO,II.1.1,Santa Fe,AR-S,annual,2012,naphtha combustion consumption by to the public,217.11786163413498,TJ,CO2,73300.0,kg/TJ,15914739.257782094,kg -edf3305a-30da-3e0f-9934-8bf2177a0695,SESCO,II.1.1,Santa Fe,AR-S,annual,2012,naphtha combustion consumption by to the public,217.11786163413498,TJ,CH4,3.0,kg/TJ,651.3535849024049,kg -1326743d-7e66-3454-a909-926e7af22202,SESCO,II.1.1,Santa Fe,AR-S,annual,2012,naphtha combustion consumption by to the public,217.11786163413498,TJ,N2O,0.6,kg/TJ,130.27071698048098,kg -3a2fcafb-4efc-3974-8a32-b053ac9162ce,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2012,naphtha combustion consumption by to the public,24.764753122339997,TJ,CO2,73300.0,kg/TJ,1815256.4038675218,kg -d33ba7fc-4879-39a0-88bc-432053470a14,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2012,naphtha combustion consumption by to the public,24.764753122339997,TJ,CH4,3.0,kg/TJ,74.29425936701999,kg -9dfd1a52-0919-340b-a45c-a044ebe050f7,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2012,naphtha combustion consumption by to the public,24.764753122339997,TJ,N2O,0.6,kg/TJ,14.858851873403998,kg -541c84eb-22b3-3a75-af6e-0abbced1f588,SESCO,II.1.1,Tucuman,AR-T,annual,2012,naphtha combustion consumption by to the public,27.742629940794995,TJ,CO2,73300.0,kg/TJ,2033534.7746602732,kg -18511148-136a-3f26-9465-cfd08d526c8d,SESCO,II.1.1,Tucuman,AR-T,annual,2012,naphtha combustion consumption by to the public,27.742629940794995,TJ,CH4,3.0,kg/TJ,83.22788982238498,kg -cd5544ce-b92d-3ce2-8823-58a579a2e68e,SESCO,II.1.1,Tucuman,AR-T,annual,2012,naphtha combustion consumption by to the public,27.742629940794995,TJ,N2O,0.6,kg/TJ,16.645577964476995,kg -ae5ad634-1142-35b6-bf00-3bb3704d75f5,SESCO,II.5.1,Buenos Aires,AR-B,annual,2012,naphtha combustion consumption by agriculture machines,2.0490641325,TJ,CO2,73300.0,kg/TJ,150196.40091224998,kg -46b01474-9c82-3830-972b-5dea678b3451,SESCO,II.5.1,Buenos Aires,AR-B,annual,2012,naphtha combustion consumption by agriculture machines,2.0490641325,TJ,CH4,3.0,kg/TJ,6.1471923975,kg -a82576f4-b580-33ed-ad04-5fc70925e2c4,SESCO,II.5.1,Buenos Aires,AR-B,annual,2012,naphtha combustion consumption by agriculture machines,2.0490641325,TJ,N2O,0.6,kg/TJ,1.2294384795,kg -a791136f-a043-36a9-86be-703d5e2cdee7,SESCO,II.5.1,Santa Cruz,AR-Z,annual,2012,naphtha combustion consumption by agriculture machines,2.2561974280999997,TJ,CO2,73300.0,kg/TJ,165379.27147972997,kg -6124c6b5-b13b-3cba-a176-1fe4a451f6b7,SESCO,II.5.1,Santa Cruz,AR-Z,annual,2012,naphtha combustion consumption by agriculture machines,2.2561974280999997,TJ,CH4,3.0,kg/TJ,6.768592284299999,kg -98c76bd7-3efe-3f72-a7bd-0341791a6d44,SESCO,II.5.1,Santa Cruz,AR-Z,annual,2012,naphtha combustion consumption by agriculture machines,2.2561974280999997,TJ,N2O,0.6,kg/TJ,1.3537184568599998,kg -9c8d89f4-fbbd-3b17-a0d3-9ca368aa77e2,SESCO,II.1.1,Buenos Aires,AR-B,annual,2012,naphtha combustion consumption by to the public,5325.761673551549,TJ,CO2,73300.0,kg/TJ,390378330.67132854,kg -b1e810f2-8742-3c24-810b-d3edfe486fd3,SESCO,II.1.1,Buenos Aires,AR-B,annual,2012,naphtha combustion consumption by to the public,5325.761673551549,TJ,CH4,3.0,kg/TJ,15977.285020654648,kg -1fb5d353-52b2-3fea-b4c6-7476ad89ea67,SESCO,II.1.1,Buenos Aires,AR-B,annual,2012,naphtha combustion consumption by to the public,5325.761673551549,TJ,N2O,0.6,kg/TJ,3195.4570041309294,kg -81070735-9026-392c-9120-f5e191ed011c,SESCO,II.1.1,Capital Federal,AR-C,annual,2012,naphtha combustion consumption by to the public,763.1275538463499,TJ,CO2,73300.0,kg/TJ,55937249.69693745,kg -b3b230aa-1b20-389b-bb3b-3050d487a2b7,SESCO,II.1.1,Capital Federal,AR-C,annual,2012,naphtha combustion consumption by to the public,763.1275538463499,TJ,CH4,3.0,kg/TJ,2289.38266153905,kg -86ca1a8a-cf31-3614-a3aa-b80e3ba826c9,SESCO,II.1.1,Capital Federal,AR-C,annual,2012,naphtha combustion consumption by to the public,763.1275538463499,TJ,N2O,0.6,kg/TJ,457.8765323078099,kg -a7770079-73b1-3706-b75d-e87c77745055,SESCO,II.1.1,Chaco,AR-H,annual,2012,naphtha combustion consumption by to the public,6.17102336235,TJ,CO2,73300.0,kg/TJ,452336.012460255,kg -b0377adb-7ce3-3afe-b3ec-8714d6619d94,SESCO,II.1.1,Chaco,AR-H,annual,2012,naphtha combustion consumption by to the public,6.17102336235,TJ,CH4,3.0,kg/TJ,18.51307008705,kg -c444a024-1c95-3db5-bc71-4d163ceaa3b9,SESCO,II.1.1,Chaco,AR-H,annual,2012,naphtha combustion consumption by to the public,6.17102336235,TJ,N2O,0.6,kg/TJ,3.7026140174099997,kg -65730eb1-6894-3bcc-94a3-c79d68a22d03,SESCO,II.1.1,Chubut,AR-U,annual,2012,naphtha combustion consumption by to the public,1586.1142038164498,TJ,CO2,73300.0,kg/TJ,116262171.13974577,kg -4074bac7-89fc-3e73-a0d6-8f553c7489c9,SESCO,II.1.1,Chubut,AR-U,annual,2012,naphtha combustion consumption by to the public,1586.1142038164498,TJ,CH4,3.0,kg/TJ,4758.3426114493495,kg -f5ebfb1f-6ca3-31fe-a6df-a1798eaa5af8,SESCO,II.1.1,Chubut,AR-U,annual,2012,naphtha combustion consumption by to the public,1586.1142038164498,TJ,N2O,0.6,kg/TJ,951.6685222898699,kg -249a9c6a-6edf-34dd-8da9-f0997c37801c,SESCO,II.1.1,Córdoba,AR-X,annual,2012,naphtha combustion consumption by to the public,674.4211911013499,TJ,CO2,73300.0,kg/TJ,49435073.307728946,kg -c4257378-de8e-31f2-bb92-ddde023022c3,SESCO,II.1.1,Córdoba,AR-X,annual,2012,naphtha combustion consumption by to the public,674.4211911013499,TJ,CH4,3.0,kg/TJ,2023.2635733040497,kg -339da3f0-9577-3bbe-abc8-fb07edee7571,SESCO,II.1.1,Córdoba,AR-X,annual,2012,naphtha combustion consumption by to the public,674.4211911013499,TJ,N2O,0.6,kg/TJ,404.6527146608099,kg -055c1a25-521b-374b-bc90-84210a8ee03a,SESCO,II.1.1,Entre Rios,AR-E,annual,2012,naphtha combustion consumption by to the public,107.79882108765,TJ,CO2,73300.0,kg/TJ,7901653.585724745,kg -144d24ad-dd69-3a04-a14a-e41ee577fd9b,SESCO,II.1.1,Entre Rios,AR-E,annual,2012,naphtha combustion consumption by to the public,107.79882108765,TJ,CH4,3.0,kg/TJ,323.39646326294996,kg -19830139-67cf-3bf9-9750-08dffab50b5e,SESCO,II.1.1,Entre Rios,AR-E,annual,2012,naphtha combustion consumption by to the public,107.79882108765,TJ,N2O,0.6,kg/TJ,64.67929265259,kg -c6318395-2754-3642-ac91-0576810e8ae2,SESCO,II.1.1,La Pampa,AR-L,annual,2012,naphtha combustion consumption by to the public,234.69827683224997,TJ,CO2,73300.0,kg/TJ,17203383.691803925,kg -90f65e75-e1a7-3d26-8f26-5c0683c0c0fe,SESCO,II.1.1,La Pampa,AR-L,annual,2012,naphtha combustion consumption by to the public,234.69827683224997,TJ,CH4,3.0,kg/TJ,704.0948304967499,kg -4e51c6b9-83cb-3164-8e04-7b75aed5d9c1,SESCO,II.1.1,La Pampa,AR-L,annual,2012,naphtha combustion consumption by to the public,234.69827683224997,TJ,N2O,0.6,kg/TJ,140.81896609934998,kg -ad9e191f-706e-3cd7-b645-26ae905f108a,SESCO,II.1.1,La Rioja,AR-F,annual,2012,naphtha combustion consumption by to the public,0.7532512641499999,TJ,CO2,73300.0,kg/TJ,55213.31766219499,kg -62becd94-d568-3179-b9d1-9889fe47d3ef,SESCO,II.1.1,La Rioja,AR-F,annual,2012,naphtha combustion consumption by to the public,0.7532512641499999,TJ,CH4,3.0,kg/TJ,2.2597537924499997,kg -38b8f876-0e0c-3462-b809-fe5b17f5bfed,SESCO,II.1.1,La Rioja,AR-F,annual,2012,naphtha combustion consumption by to the public,0.7532512641499999,TJ,N2O,0.6,kg/TJ,0.4519507584899999,kg -925b426a-ed23-38b4-8041-2773d6019549,SESCO,II.1.1,Mendoza,AR-M,annual,2012,naphtha combustion consumption by to the public,27.34495196125,TJ,CO2,73300.0,kg/TJ,2004384.978759625,kg -87352906-354f-3875-80e5-4b1ac28d09f2,SESCO,II.1.1,Mendoza,AR-M,annual,2012,naphtha combustion consumption by to the public,27.34495196125,TJ,CH4,3.0,kg/TJ,82.03485588375,kg -ac62ff8b-6b6a-3160-9269-0dd859feafb2,SESCO,II.1.1,Mendoza,AR-M,annual,2012,naphtha combustion consumption by to the public,27.34495196125,TJ,N2O,0.6,kg/TJ,16.406971176749998,kg -113be437-3ec5-33e5-934b-8c9e07b66d04,SESCO,II.1.1,Neuquén,AR-Q,annual,2012,naphtha combustion consumption by to the public,582.1497226621999,TJ,CO2,73300.0,kg/TJ,42671574.671139255,kg -c0adb543-98d3-34e9-9720-0b4214c181c9,SESCO,II.1.1,Neuquén,AR-Q,annual,2012,naphtha combustion consumption by to the public,582.1497226621999,TJ,CH4,3.0,kg/TJ,1746.4491679865996,kg -ce02782a-6840-344e-9430-336eb78523ef,SESCO,II.1.1,Neuquén,AR-Q,annual,2012,naphtha combustion consumption by to the public,582.1497226621999,TJ,N2O,0.6,kg/TJ,349.28983359731996,kg -012d4249-bdf6-393a-8feb-503beac071ce,SESCO,II.1.1,Rio Negro,AR-R,annual,2012,naphtha combustion consumption by to the public,1145.1281819362,TJ,CO2,73300.0,kg/TJ,83937895.73592345,kg -0fbf9426-4c92-34d4-ae60-0d5fc69b0b02,SESCO,II.1.1,Rio Negro,AR-R,annual,2012,naphtha combustion consumption by to the public,1145.1281819362,TJ,CH4,3.0,kg/TJ,3435.3845458086,kg -3778636d-a317-3a67-84f8-5ff3690242eb,SESCO,II.1.1,Rio Negro,AR-R,annual,2012,naphtha combustion consumption by to the public,1145.1281819362,TJ,N2O,0.6,kg/TJ,687.07690916172,kg -c8622831-df33-3a87-a369-7bc56043f081,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2012,naphtha combustion consumption by to the public,996.2568424962999,TJ,CO2,73300.0,kg/TJ,73025626.55497879,kg -8104b5cb-4ae7-3b3b-aa66-5d80332f99a4,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2012,naphtha combustion consumption by to the public,996.2568424962999,TJ,CH4,3.0,kg/TJ,2988.7705274888995,kg -3f9e6170-4789-39a4-bc3c-b7e428b51986,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2012,naphtha combustion consumption by to the public,996.2568424962999,TJ,N2O,0.6,kg/TJ,597.75410549778,kg -348a00f2-c88d-318d-832a-f4f37df28ea8,SESCO,II.1.1,Santa Fe,AR-S,annual,2012,naphtha combustion consumption by to the public,675.49155705955,TJ,CO2,73300.0,kg/TJ,49513531.13246502,kg -31dd9bab-0fc3-306e-8786-d271ebc5f588,SESCO,II.1.1,Santa Fe,AR-S,annual,2012,naphtha combustion consumption by to the public,675.49155705955,TJ,CH4,3.0,kg/TJ,2026.4746711786502,kg -dd44187a-e9e6-3f78-8f65-a5fdf9f15f65,SESCO,II.1.1,Santa Fe,AR-S,annual,2012,naphtha combustion consumption by to the public,675.49155705955,TJ,N2O,0.6,kg/TJ,405.29493423573,kg -3d98827d-d205-3ec2-9bff-342297e70e95,SESCO,II.1.1,Buenos Aires,AR-B,annual,2012,naphtha combustion consumption by to the public,1349.3830160579998,TJ,CO2,73300.0,kg/TJ,98909775.07705139,kg -f4a288dd-d96d-3c83-8933-9d8e9d82c40d,SESCO,II.1.1,Buenos Aires,AR-B,annual,2012,naphtha combustion consumption by to the public,1349.3830160579998,TJ,CH4,3.0,kg/TJ,4048.1490481739993,kg -cee3a169-1616-3410-9d81-be734c51851b,SESCO,II.1.1,Buenos Aires,AR-B,annual,2012,naphtha combustion consumption by to the public,1349.3830160579998,TJ,N2O,0.6,kg/TJ,809.6298096347999,kg -bb53ec90-f969-3c4b-b7f9-a05fe9f20e8d,SESCO,II.1.1,Capital Federal,AR-C,annual,2012,naphtha combustion consumption by to the public,251.06792280185,TJ,CO2,73300.0,kg/TJ,18403278.741375603,kg -1e84b196-3db0-3939-9a67-a16c9f1d81a2,SESCO,II.1.1,Capital Federal,AR-C,annual,2012,naphtha combustion consumption by to the public,251.06792280185,TJ,CH4,3.0,kg/TJ,753.2037684055499,kg -faad82cf-d26b-355b-a26d-d9d92a5f32f9,SESCO,II.1.1,Capital Federal,AR-C,annual,2012,naphtha combustion consumption by to the public,251.06792280185,TJ,N2O,0.6,kg/TJ,150.64075368111,kg -ecbc567d-a126-3ab4-a937-6697cbbb42d0,SESCO,II.1.1,Chubut,AR-U,annual,2012,naphtha combustion consumption by to the public,244.00162626069996,TJ,CO2,73300.0,kg/TJ,17885319.204909306,kg -c6da2df3-f413-3665-a2a8-fed48bcd736c,SESCO,II.1.1,Chubut,AR-U,annual,2012,naphtha combustion consumption by to the public,244.00162626069996,TJ,CH4,3.0,kg/TJ,732.0048787820999,kg -ff300673-525b-3a1c-a354-52b34b362a94,SESCO,II.1.1,Chubut,AR-U,annual,2012,naphtha combustion consumption by to the public,244.00162626069996,TJ,N2O,0.6,kg/TJ,146.40097575641997,kg -975baf7a-f2e3-3474-8973-a61c44e15971,SESCO,II.1.1,Córdoba,AR-X,annual,2012,naphtha combustion consumption by to the public,146.10531890184998,TJ,CO2,73300.0,kg/TJ,10709519.875505604,kg -0d2d1b1a-3e17-3d4b-a273-81a03c4abe39,SESCO,II.1.1,Córdoba,AR-X,annual,2012,naphtha combustion consumption by to the public,146.10531890184998,TJ,CH4,3.0,kg/TJ,438.31595670555,kg -de6b5720-01f8-349b-8ff1-1b27133a7caf,SESCO,II.1.1,Córdoba,AR-X,annual,2012,naphtha combustion consumption by to the public,146.10531890184998,TJ,N2O,0.6,kg/TJ,87.66319134111,kg -fa93cd15-d0ec-3501-a77d-69041cbe9d4f,SESCO,II.1.1,Entre Rios,AR-E,annual,2012,naphtha combustion consumption by to the public,22.87702827795,TJ,CO2,73300.0,kg/TJ,1676886.172773735,kg -d3c1eb33-c818-3980-9ad8-ef8fabc71a5c,SESCO,II.1.1,Entre Rios,AR-E,annual,2012,naphtha combustion consumption by to the public,22.87702827795,TJ,CH4,3.0,kg/TJ,68.63108483385,kg -eabf7d4d-70bf-393f-8658-7bc83c9d7031,SESCO,II.1.1,Entre Rios,AR-E,annual,2012,naphtha combustion consumption by to the public,22.87702827795,TJ,N2O,0.6,kg/TJ,13.72621696677,kg -9e2c7c34-771f-3087-b63e-d94940420269,SESCO,II.1.1,La Pampa,AR-L,annual,2012,naphtha combustion consumption by to the public,51.53444486959999,TJ,CO2,73300.0,kg/TJ,3777474.808941679,kg -c2475d51-3558-3414-9232-f4b8dfed97be,SESCO,II.1.1,La Pampa,AR-L,annual,2012,naphtha combustion consumption by to the public,51.53444486959999,TJ,CH4,3.0,kg/TJ,154.60333460879997,kg -dda84cda-7692-3eba-931e-88e27abeb264,SESCO,II.1.1,La Pampa,AR-L,annual,2012,naphtha combustion consumption by to the public,51.53444486959999,TJ,N2O,0.6,kg/TJ,30.92066692175999,kg -7bd8253d-fd60-32de-b267-ded74a116534,SESCO,II.1.1,Mendoza,AR-M,annual,2012,naphtha combustion consumption by to the public,2.5459580299999995,TJ,CO2,73300.0,kg/TJ,186618.72359899996,kg -338c9c50-964f-367f-8f29-a7d1517e0033,SESCO,II.1.1,Mendoza,AR-M,annual,2012,naphtha combustion consumption by to the public,2.5459580299999995,TJ,CH4,3.0,kg/TJ,7.637874089999999,kg -91fb8e13-6eb5-35fe-ba2e-6fa722125d0a,SESCO,II.1.1,Mendoza,AR-M,annual,2012,naphtha combustion consumption by to the public,2.5459580299999995,TJ,N2O,0.6,kg/TJ,1.5275748179999997,kg -73c27fca-91b6-394f-aaf6-60dd735b91ff,SESCO,II.1.1,Neuquén,AR-Q,annual,2012,naphtha combustion consumption by to the public,144.17092259184997,TJ,CO2,73300.0,kg/TJ,10567728.625982603,kg -af16e535-eb15-37d3-9c8e-70c77a0e8f2d,SESCO,II.1.1,Neuquén,AR-Q,annual,2012,naphtha combustion consumption by to the public,144.17092259184997,TJ,CH4,3.0,kg/TJ,432.51276777554995,kg -8a5e2e13-d7c1-34f2-91d0-b738bfb1412d,SESCO,II.1.1,Neuquén,AR-Q,annual,2012,naphtha combustion consumption by to the public,144.17092259184997,TJ,N2O,0.6,kg/TJ,86.50255355510998,kg -29a87f09-b5eb-3a36-a432-f2dc02f47735,SESCO,II.1.1,Rio Negro,AR-R,annual,2012,naphtha combustion consumption by to the public,181.77485564314998,TJ,CO2,73300.0,kg/TJ,13324096.918642893,kg -2ab58355-9c37-3634-80fd-717dd592e05e,SESCO,II.1.1,Rio Negro,AR-R,annual,2012,naphtha combustion consumption by to the public,181.77485564314998,TJ,CH4,3.0,kg/TJ,545.3245669294499,kg -e3ab02d6-e81d-3789-8bfe-a1a3cad59dc2,SESCO,II.1.1,Rio Negro,AR-R,annual,2012,naphtha combustion consumption by to the public,181.77485564314998,TJ,N2O,0.6,kg/TJ,109.06491338588998,kg -cc86434c-1b5b-36f3-83bb-2c78a7fd3e1a,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2012,naphtha combustion consumption by to the public,171.3276199019,TJ,CO2,73300.0,kg/TJ,12558314.53880927,kg -67ebb6f0-fc8b-3287-96af-364e915a2220,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2012,naphtha combustion consumption by to the public,171.3276199019,TJ,CH4,3.0,kg/TJ,513.9828597057,kg -8bd2ce43-72cb-3dd6-9c9b-38cbfa7ec3d9,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2012,naphtha combustion consumption by to the public,171.3276199019,TJ,N2O,0.6,kg/TJ,102.79657194113999,kg -83cd292b-4250-39ed-9e83-0f75ff694622,SESCO,II.1.1,Santa Fe,AR-S,annual,2012,naphtha combustion consumption by to the public,201.24920769029998,TJ,CO2,73300.0,kg/TJ,14751566.923698988,kg -05af7bb4-6039-3d80-8eb2-c988cc58bf4f,SESCO,II.1.1,Santa Fe,AR-S,annual,2012,naphtha combustion consumption by to the public,201.24920769029998,TJ,CH4,3.0,kg/TJ,603.7476230709,kg -4070be1a-2b18-3a0a-9c73-cd96c2f96f40,SESCO,II.1.1,Santa Fe,AR-S,annual,2012,naphtha combustion consumption by to the public,201.24920769029998,TJ,N2O,0.6,kg/TJ,120.74952461417999,kg -051527e7-c6f5-3403-a517-6f6634fb5cb2,SESCO,II.1.1,Buenos Aires,AR-B,annual,2012,naphtha combustion consumption by to the public,87.58959786499999,TJ,CO2,73300.0,kg/TJ,6420317.523504499,kg -190043dc-f941-3ea8-bb52-ccb5ec870bd6,SESCO,II.1.1,Buenos Aires,AR-B,annual,2012,naphtha combustion consumption by to the public,87.58959786499999,TJ,CH4,3.0,kg/TJ,262.768793595,kg -b8055f71-7ac2-3cb3-b442-16360f523c6f,SESCO,II.1.1,Buenos Aires,AR-B,annual,2012,naphtha combustion consumption by to the public,87.58959786499999,TJ,N2O,0.6,kg/TJ,52.553758718999994,kg -2a064c63-b38c-3392-9782-2e1d5c421599,SESCO,II.1.1,Capital Federal,AR-C,annual,2012,naphtha combustion consumption by to the public,52.01598324999999,TJ,CO2,73300.0,kg/TJ,3812771.5722249993,kg -1d36a0fa-e335-3a58-a65f-a56c007a5bae,SESCO,II.1.1,Capital Federal,AR-C,annual,2012,naphtha combustion consumption by to the public,52.01598324999999,TJ,CH4,3.0,kg/TJ,156.04794975,kg -46d0e753-b1e9-3e5e-a357-dd8faa159072,SESCO,II.1.1,Capital Federal,AR-C,annual,2012,naphtha combustion consumption by to the public,52.01598324999999,TJ,N2O,0.6,kg/TJ,31.209589949999994,kg -58ec1269-39bd-34de-a980-65b27e59f37b,SESCO,II.1.1,Chaco,AR-H,annual,2012,naphtha combustion consumption by to the public,10.469670749999999,TJ,CO2,73300.0,kg/TJ,767426.865975,kg -c0ead2f2-962d-3a74-ab83-008589a5e94f,SESCO,II.1.1,Chaco,AR-H,annual,2012,naphtha combustion consumption by to the public,10.469670749999999,TJ,CH4,3.0,kg/TJ,31.409012249999996,kg -cb822c21-3fc5-3e07-85d9-5ecdfc666714,SESCO,II.1.1,Chaco,AR-H,annual,2012,naphtha combustion consumption by to the public,10.469670749999999,TJ,N2O,0.6,kg/TJ,6.281802449999999,kg -8951dfc7-6fcf-3a61-9b4c-86caaf4bf2f6,SESCO,II.1.1,Córdoba,AR-X,annual,2012,naphtha combustion consumption by to the public,31.9740421,TJ,CO2,73300.0,kg/TJ,2343697.28593,kg -422d7b46-d6bc-314a-a09a-df3bc7f6f54b,SESCO,II.1.1,Córdoba,AR-X,annual,2012,naphtha combustion consumption by to the public,31.9740421,TJ,CH4,3.0,kg/TJ,95.9221263,kg -a3729fc3-691a-3420-8e5b-a5c3a09afb70,SESCO,II.1.1,Córdoba,AR-X,annual,2012,naphtha combustion consumption by to the public,31.9740421,TJ,N2O,0.6,kg/TJ,19.184425259999998,kg -03dc9b6f-8f30-318f-8e6c-44b102879e78,SESCO,II.1.1,Entre Rios,AR-E,annual,2012,naphtha combustion consumption by to the public,8.974003499999998,TJ,CO2,73300.0,kg/TJ,657794.4565499999,kg -08fb5c70-0acd-3396-abb9-6079e1c55550,SESCO,II.1.1,Entre Rios,AR-E,annual,2012,naphtha combustion consumption by to the public,8.974003499999998,TJ,CH4,3.0,kg/TJ,26.922010499999995,kg -49802460-2710-323e-b0df-6e62a13dda40,SESCO,II.1.1,Entre Rios,AR-E,annual,2012,naphtha combustion consumption by to the public,8.974003499999998,TJ,N2O,0.6,kg/TJ,5.384402099999999,kg -db21b1ec-f7a6-31ce-b197-8b82d4fea180,SESCO,II.1.1,Santa Fe,AR-S,annual,2012,naphtha combustion consumption by to the public,42.842557449999994,TJ,CO2,73300.0,kg/TJ,3140359.4610849996,kg -0488c83e-1cba-3f1f-bf9f-6198db44f392,SESCO,II.1.1,Santa Fe,AR-S,annual,2012,naphtha combustion consumption by to the public,42.842557449999994,TJ,CH4,3.0,kg/TJ,128.52767235,kg -2b9ab3f0-516b-339a-bf99-6fb5ec79bde7,SESCO,II.1.1,Santa Fe,AR-S,annual,2012,naphtha combustion consumption by to the public,42.842557449999994,TJ,N2O,0.6,kg/TJ,25.705534469999996,kg -26b95fb2-d3fb-3fc6-acd6-8b0e7f274bd4,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2012,naphtha combustion consumption by to the public,1.1300597,TJ,CO2,73300.0,kg/TJ,82833.37600999999,kg -a8c665d6-4f99-30f9-a139-6ca422023562,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2012,naphtha combustion consumption by to the public,1.1300597,TJ,CH4,3.0,kg/TJ,3.3901790999999997,kg -35bb47a2-3de9-382a-8cd2-c3c3389eb742,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2012,naphtha combustion consumption by to the public,1.1300597,TJ,N2O,0.6,kg/TJ,0.67803582,kg -10b85d60-b5b0-3169-b8ab-1cd136759984,SESCO,II.1.1,Buenos Aires,AR-B,annual,2012,naphtha combustion consumption by to the public,1298.767642095,TJ,CO2,73300.0,kg/TJ,95199668.1655635,kg -2dbd0f02-4cb3-3e88-ab6f-92d7fd6da4a4,SESCO,II.1.1,Buenos Aires,AR-B,annual,2012,naphtha combustion consumption by to the public,1298.767642095,TJ,CH4,3.0,kg/TJ,3896.3029262849996,kg -7e5691b7-dc19-396a-ac43-646fa060a884,SESCO,II.1.1,Buenos Aires,AR-B,annual,2012,naphtha combustion consumption by to the public,1298.767642095,TJ,N2O,0.6,kg/TJ,779.2605852569999,kg -72b72710-7ade-317d-92a5-ba7f9b9e0870,SESCO,II.1.1,Capital Federal,AR-C,annual,2012,naphtha combustion consumption by to the public,300.76206545,TJ,CO2,73300.0,kg/TJ,22045859.397485003,kg -8d33d717-74ce-3d04-a440-075f95f5df56,SESCO,II.1.1,Capital Federal,AR-C,annual,2012,naphtha combustion consumption by to the public,300.76206545,TJ,CH4,3.0,kg/TJ,902.2861963500001,kg -746675ca-8347-3001-90cb-1d33050ad90f,SESCO,II.1.1,Capital Federal,AR-C,annual,2012,naphtha combustion consumption by to the public,300.76206545,TJ,N2O,0.6,kg/TJ,180.45723927,kg -da1a1d27-b495-3f0f-9c87-33bc82f887d7,SESCO,II.1.1,Chaco,AR-H,annual,2012,naphtha combustion consumption by to the public,84.05649944999999,TJ,CO2,73300.0,kg/TJ,6161341.409684999,kg -f4f0f298-05e6-3f1b-911d-0d3aec5a5306,SESCO,II.1.1,Chaco,AR-H,annual,2012,naphtha combustion consumption by to the public,84.05649944999999,TJ,CH4,3.0,kg/TJ,252.16949834999997,kg -122d4ad6-d5bf-319e-ab17-329a11dc9905,SESCO,II.1.1,Chaco,AR-H,annual,2012,naphtha combustion consumption by to the public,84.05649944999999,TJ,N2O,0.6,kg/TJ,50.433899669999995,kg -0695e345-f971-3921-9ddf-e660496ea1a2,SESCO,II.1.1,Córdoba,AR-X,annual,2012,naphtha combustion consumption by to the public,358.8936659,TJ,CO2,73300.0,kg/TJ,26306905.71047,kg -8d565542-a13e-3a8c-b3ce-42a89983b89b,SESCO,II.1.1,Córdoba,AR-X,annual,2012,naphtha combustion consumption by to the public,358.8936659,TJ,CH4,3.0,kg/TJ,1076.6809976999998,kg -f7f3f372-c611-316e-853d-1f49b3a76037,SESCO,II.1.1,Córdoba,AR-X,annual,2012,naphtha combustion consumption by to the public,358.8936659,TJ,N2O,0.6,kg/TJ,215.33619953999997,kg -44ae3af6-7a3c-31e9-bcd9-85167cdd492a,SESCO,II.1.1,Entre Rios,AR-E,annual,2012,naphtha combustion consumption by to the public,143.78347829999998,TJ,CO2,73300.0,kg/TJ,10539328.95939,kg -10b4bef6-3dff-3cce-a0cb-7ef8ddf2a4e3,SESCO,II.1.1,Entre Rios,AR-E,annual,2012,naphtha combustion consumption by to the public,143.78347829999998,TJ,CH4,3.0,kg/TJ,431.3504349,kg -3dbd52f2-e831-3060-a7b5-9c73f59273cb,SESCO,II.1.1,Entre Rios,AR-E,annual,2012,naphtha combustion consumption by to the public,143.78347829999998,TJ,N2O,0.6,kg/TJ,86.27008697999999,kg -23e55041-d6e5-38dd-8f6a-78d3ea56378b,SESCO,II.1.1,Santa Fe,AR-S,annual,2012,naphtha combustion consumption by to the public,183.5349901,TJ,CO2,73300.0,kg/TJ,13453114.77433,kg -66edcf40-10b2-3836-b373-a89b1f2e8e11,SESCO,II.1.1,Santa Fe,AR-S,annual,2012,naphtha combustion consumption by to the public,183.5349901,TJ,CH4,3.0,kg/TJ,550.6049703,kg -4187c5f8-3cfa-3605-8932-72c09271a93d,SESCO,II.1.1,Santa Fe,AR-S,annual,2012,naphtha combustion consumption by to the public,183.5349901,TJ,N2O,0.6,kg/TJ,110.12099405999999,kg -3c6ea0c6-e9e7-3c33-b7e5-ee4f2c7f670f,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2012,naphtha combustion consumption by to the public,5.7167726,TJ,CO2,73300.0,kg/TJ,419039.43158,kg -99ea9866-0d3e-31ee-ae31-a4ca2c8c65e8,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2012,naphtha combustion consumption by to the public,5.7167726,TJ,CH4,3.0,kg/TJ,17.1503178,kg -a880ebb6-e8da-3cbe-95a5-b304a9471707,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2012,naphtha combustion consumption by to the public,5.7167726,TJ,N2O,0.6,kg/TJ,3.43006356,kg -f59c15f0-8476-313b-8d40-30881ada0a79,SESCO,II.1.1,Buenos Aires,AR-B,annual,2012,naphtha combustion consumption by to the public,156.15763201500002,TJ,CO2,73300.0,kg/TJ,11446354.4266995,kg -9a72bcff-4902-38d9-b76f-906e43f06d23,SESCO,II.1.1,Buenos Aires,AR-B,annual,2012,naphtha combustion consumption by to the public,156.15763201500002,TJ,CH4,3.0,kg/TJ,468.4728960450001,kg -da02f30e-9ce9-322a-8bae-0cd6e49e3b95,SESCO,II.1.1,Buenos Aires,AR-B,annual,2012,naphtha combustion consumption by to the public,156.15763201500002,TJ,N2O,0.6,kg/TJ,93.69457920900001,kg -d176794d-ff8a-368e-ad83-ddc69ecb1003,SESCO,II.1.1,Capital Federal,AR-C,annual,2012,naphtha combustion consumption by to the public,15.45522825,TJ,CO2,73300.0,kg/TJ,1132868.230725,kg -a7e15101-579f-362f-9887-f277cb52f914,SESCO,II.1.1,Capital Federal,AR-C,annual,2012,naphtha combustion consumption by to the public,15.45522825,TJ,CH4,3.0,kg/TJ,46.36568475,kg -7647bae8-f228-3166-90da-fc747e5259a3,SESCO,II.1.1,Capital Federal,AR-C,annual,2012,naphtha combustion consumption by to the public,15.45522825,TJ,N2O,0.6,kg/TJ,9.27313695,kg -c440b548-fb65-3a4a-a3ef-954cb118550c,SESCO,II.1.1,Chaco,AR-H,annual,2012,naphtha combustion consumption by to the public,0.6647409999999999,TJ,CO2,73300.0,kg/TJ,48725.51529999999,kg -07cfa2ab-bdbf-3420-b582-c5eec5d561e5,SESCO,II.1.1,Chaco,AR-H,annual,2012,naphtha combustion consumption by to the public,0.6647409999999999,TJ,CH4,3.0,kg/TJ,1.9942229999999999,kg -8689de45-46c1-3abc-ac7c-e558671eb43d,SESCO,II.1.1,Chaco,AR-H,annual,2012,naphtha combustion consumption by to the public,0.6647409999999999,TJ,N2O,0.6,kg/TJ,0.39884459999999994,kg -0f175ca7-027a-3a93-b419-56832f9ee8a7,SESCO,II.1.1,Córdoba,AR-X,annual,2012,naphtha combustion consumption by to the public,34.8324284,TJ,CO2,73300.0,kg/TJ,2553217.00172,kg -ebd88379-8c01-3cff-bf34-02c147e153b0,SESCO,II.1.1,Córdoba,AR-X,annual,2012,naphtha combustion consumption by to the public,34.8324284,TJ,CH4,3.0,kg/TJ,104.4972852,kg -65e25bb7-5562-3641-920c-31b877f99931,SESCO,II.1.1,Córdoba,AR-X,annual,2012,naphtha combustion consumption by to the public,34.8324284,TJ,N2O,0.6,kg/TJ,20.899457039999998,kg -d867fe3f-2b91-3c38-bb16-4e12b700b43a,SESCO,II.1.1,Entre Rios,AR-E,annual,2012,naphtha combustion consumption by to the public,19.5433854,TJ,CO2,73300.0,kg/TJ,1432530.14982,kg -e8f760d1-2d91-3178-8a6c-9284a773bf93,SESCO,II.1.1,Entre Rios,AR-E,annual,2012,naphtha combustion consumption by to the public,19.5433854,TJ,CH4,3.0,kg/TJ,58.630156199999995,kg -b1d7ac88-af5f-340c-8a0a-3404c8ae366c,SESCO,II.1.1,Entre Rios,AR-E,annual,2012,naphtha combustion consumption by to the public,19.5433854,TJ,N2O,0.6,kg/TJ,11.72603124,kg -5ba6e75c-9f4a-3da0-bf8d-74da25400a6b,SESCO,II.1.1,Santa Fe,AR-S,annual,2012,naphtha combustion consumption by to the public,27.885884949999998,TJ,CO2,73300.0,kg/TJ,2044035.3668349998,kg -41e7a8fe-ea42-3e00-b635-0ca40970395d,SESCO,II.1.1,Santa Fe,AR-S,annual,2012,naphtha combustion consumption by to the public,27.885884949999998,TJ,CH4,3.0,kg/TJ,83.65765485,kg -eb1aa815-c0b4-3d43-a46b-074533bdd42e,SESCO,II.1.1,Santa Fe,AR-S,annual,2012,naphtha combustion consumption by to the public,27.885884949999998,TJ,N2O,0.6,kg/TJ,16.731530969999998,kg -2159fd5c-5f77-3e1b-bde5-a2abe3a0215c,SESCO,II.1.1,Catamarca,AR-K,annual,2012,naphtha combustion consumption by to the public,45.2166799315,TJ,CO2,73300.0,kg/TJ,3314382.63897895,kg -5cc55eb0-0696-3330-b9a9-e6b420515e15,SESCO,II.1.1,Catamarca,AR-K,annual,2012,naphtha combustion consumption by to the public,45.2166799315,TJ,CH4,3.0,kg/TJ,135.6500397945,kg -ed662970-1699-3ad8-8626-d47073b74f5f,SESCO,II.1.1,Catamarca,AR-K,annual,2012,naphtha combustion consumption by to the public,45.2166799315,TJ,N2O,0.6,kg/TJ,27.130007958900002,kg -a2093b94-40a9-3d52-bc0b-7bdb3be1fbba,SESCO,II.1.1,Chaco,AR-H,annual,2012,naphtha combustion consumption by to the public,44.785595392999994,TJ,CO2,73300.0,kg/TJ,3282784.1423068997,kg -80b65ce8-45d5-3799-991b-b0def52f30fa,SESCO,II.1.1,Chaco,AR-H,annual,2012,naphtha combustion consumption by to the public,44.785595392999994,TJ,CH4,3.0,kg/TJ,134.35678617899998,kg -61a93662-bfad-35b6-929c-d4b1df43fa31,SESCO,II.1.1,Chaco,AR-H,annual,2012,naphtha combustion consumption by to the public,44.785595392999994,TJ,N2O,0.6,kg/TJ,26.871357235799994,kg -9cadd2b1-e4f2-377f-88a8-f5452b15bf7c,SESCO,II.1.1,Córdoba,AR-X,annual,2012,naphtha combustion consumption by to the public,1.8788904364999999,TJ,CO2,73300.0,kg/TJ,137722.66899545,kg -37eed3ff-441d-3ebf-83a7-f8e2d0b2e984,SESCO,II.1.1,Córdoba,AR-X,annual,2012,naphtha combustion consumption by to the public,1.8788904364999999,TJ,CH4,3.0,kg/TJ,5.6366713095,kg -0f1c71a6-b007-3d6d-a16b-488c73babeef,SESCO,II.1.1,Córdoba,AR-X,annual,2012,naphtha combustion consumption by to the public,1.8788904364999999,TJ,N2O,0.6,kg/TJ,1.1273342619,kg -8d3cee33-4ea0-3c3f-af0a-ae73d16bb512,SESCO,II.1.1,Jujuy,AR-Y,annual,2012,naphtha combustion consumption by to the public,119.745778999,TJ,CO2,73300.0,kg/TJ,8777365.6006267,kg -810972f2-fef3-3111-89a1-cffbbb2d5224,SESCO,II.1.1,Jujuy,AR-Y,annual,2012,naphtha combustion consumption by to the public,119.745778999,TJ,CH4,3.0,kg/TJ,359.237336997,kg -ba8ff398-729a-3686-932d-ea0d6a4d00e5,SESCO,II.1.1,Jujuy,AR-Y,annual,2012,naphtha combustion consumption by to the public,119.745778999,TJ,N2O,0.6,kg/TJ,71.84746739939999,kg -608f29be-0b94-3f57-b670-6e901b1a855b,SESCO,II.1.1,La Rioja,AR-F,annual,2012,naphtha combustion consumption by to the public,36.52718557949999,TJ,CO2,73300.0,kg/TJ,2677442.7029773495,kg -c620af7e-8556-3cd3-b680-37f8513ce6c3,SESCO,II.1.1,La Rioja,AR-F,annual,2012,naphtha combustion consumption by to the public,36.52718557949999,TJ,CH4,3.0,kg/TJ,109.58155673849998,kg -981f7b31-8d16-3786-b177-7b4a56c078f9,SESCO,II.1.1,La Rioja,AR-F,annual,2012,naphtha combustion consumption by to the public,36.52718557949999,TJ,N2O,0.6,kg/TJ,21.916311347699995,kg -3aba627c-e18c-30e8-abc4-799fcd66189c,SESCO,II.1.1,Salta,AR-A,annual,2012,naphtha combustion consumption by to the public,241.25910431699995,TJ,CO2,73300.0,kg/TJ,17684292.3464361,kg -0ead04dc-dfb9-3a95-839e-ba54469d29d7,SESCO,II.1.1,Salta,AR-A,annual,2012,naphtha combustion consumption by to the public,241.25910431699995,TJ,CH4,3.0,kg/TJ,723.7773129509999,kg -3ac053e0-f710-3f8b-b9bd-ce1d45ab10ef,SESCO,II.1.1,Salta,AR-A,annual,2012,naphtha combustion consumption by to the public,241.25910431699995,TJ,N2O,0.6,kg/TJ,144.75546259019995,kg -a11aa779-2f5d-35fb-b9d2-f33d4c89feb2,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2012,naphtha combustion consumption by to the public,58.70361008049999,TJ,CO2,73300.0,kg/TJ,4302974.618900649,kg -944a2288-0968-3502-ac6c-d7606250dc89,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2012,naphtha combustion consumption by to the public,58.70361008049999,TJ,CH4,3.0,kg/TJ,176.11083024149997,kg -ab7f2a9d-c4e4-3845-97a7-47d725afa54b,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2012,naphtha combustion consumption by to the public,58.70361008049999,TJ,N2O,0.6,kg/TJ,35.2221660483,kg -9500d359-a2f9-3b13-b673-ab7cd652c9ce,SESCO,II.1.1,Tucuman,AR-T,annual,2012,naphtha combustion consumption by to the public,175.73259261249999,TJ,CO2,73300.0,kg/TJ,12881199.038496248,kg -05a8f381-fe24-3a8e-ac24-eaaf2c9b8ac2,SESCO,II.1.1,Tucuman,AR-T,annual,2012,naphtha combustion consumption by to the public,175.73259261249999,TJ,CH4,3.0,kg/TJ,527.1977778375,kg -d652c09d-c73b-32f6-bf5d-5e56d4276a5e,SESCO,II.1.1,Tucuman,AR-T,annual,2012,naphtha combustion consumption by to the public,175.73259261249999,TJ,N2O,0.6,kg/TJ,105.4395555675,kg -4c853178-a32c-334b-a10a-7b99192bfe97,SESCO,II.1.1,Catamarca,AR-K,annual,2012,naphtha combustion consumption by to the public,225.35118744599998,TJ,CO2,73300.0,kg/TJ,16518242.039791798,kg -ea397610-a8e3-3116-9494-a8b3746e4a29,SESCO,II.1.1,Catamarca,AR-K,annual,2012,naphtha combustion consumption by to the public,225.35118744599998,TJ,CH4,3.0,kg/TJ,676.0535623379999,kg -17405726-b7f1-30a9-8e94-be84b6c14bb7,SESCO,II.1.1,Catamarca,AR-K,annual,2012,naphtha combustion consumption by to the public,225.35118744599998,TJ,N2O,0.6,kg/TJ,135.2107124676,kg -2a590081-4308-3dbe-b139-8eec2fe07d8e,SESCO,II.1.1,Chaco,AR-H,annual,2012,naphtha combustion consumption by to the public,74.89902743399999,TJ,CO2,73300.0,kg/TJ,5490098.7109122,kg -921973a4-c880-3a1c-8cfb-d4dc2ac63f28,SESCO,II.1.1,Chaco,AR-H,annual,2012,naphtha combustion consumption by to the public,74.89902743399999,TJ,CH4,3.0,kg/TJ,224.69708230199996,kg -5fc9d376-2d91-31e7-9357-680121790e6c,SESCO,II.1.1,Chaco,AR-H,annual,2012,naphtha combustion consumption by to the public,74.89902743399999,TJ,N2O,0.6,kg/TJ,44.93941646039999,kg -c9c77561-7257-34d5-882d-9c3fb2cb3fc9,SESCO,II.1.1,Córdoba,AR-X,annual,2012,naphtha combustion consumption by to the public,19.492200343,TJ,CO2,73300.0,kg/TJ,1428778.2851419,kg -dbfd5acf-3ab7-30ca-b2b4-a2d2a347888e,SESCO,II.1.1,Córdoba,AR-X,annual,2012,naphtha combustion consumption by to the public,19.492200343,TJ,CH4,3.0,kg/TJ,58.476601029,kg -1a991719-b855-3f64-a49c-4ef4006d5ed7,SESCO,II.1.1,Córdoba,AR-X,annual,2012,naphtha combustion consumption by to the public,19.492200343,TJ,N2O,0.6,kg/TJ,11.6953202058,kg -885b337a-9818-385b-af02-3a562f3c17d7,SESCO,II.1.1,Jujuy,AR-Y,annual,2012,naphtha combustion consumption by to the public,347.8715953789999,TJ,CO2,73300.0,kg/TJ,25498987.941280697,kg -e464813f-a010-307d-bed8-a66524a7a92e,SESCO,II.1.1,Jujuy,AR-Y,annual,2012,naphtha combustion consumption by to the public,347.8715953789999,TJ,CH4,3.0,kg/TJ,1043.6147861369998,kg -48302bad-23d0-3d0d-b00f-8e0eb77a7396,SESCO,II.1.1,Jujuy,AR-Y,annual,2012,naphtha combustion consumption by to the public,347.8715953789999,TJ,N2O,0.6,kg/TJ,208.72295722739995,kg -c9ec1a4a-ef64-3b25-a423-3825b0e7681f,SESCO,II.1.1,La Rioja,AR-F,annual,2012,naphtha combustion consumption by to the public,227.66215953249997,TJ,CO2,73300.0,kg/TJ,16687636.293732248,kg -86f12519-eaa4-3745-8d95-bbb7624a3bd7,SESCO,II.1.1,La Rioja,AR-F,annual,2012,naphtha combustion consumption by to the public,227.66215953249997,TJ,CH4,3.0,kg/TJ,682.9864785974999,kg -6ef376c1-db98-3e7e-91d5-150655fc105a,SESCO,II.1.1,La Rioja,AR-F,annual,2012,naphtha combustion consumption by to the public,227.66215953249997,TJ,N2O,0.6,kg/TJ,136.59729571949998,kg -cbbf7cac-04c3-357a-9a22-04601402ac46,SESCO,II.1.1,Salta,AR-A,annual,2012,naphtha combustion consumption by to the public,754.9749375629999,TJ,CO2,73300.0,kg/TJ,55339662.923367895,kg -72e1687e-2b81-3e50-9f2b-a55a15e83fc1,SESCO,II.1.1,Salta,AR-A,annual,2012,naphtha combustion consumption by to the public,754.9749375629999,TJ,CH4,3.0,kg/TJ,2264.9248126889997,kg -af053fe4-c0ca-3faf-8efe-81b08ec9c419,SESCO,II.1.1,Salta,AR-A,annual,2012,naphtha combustion consumption by to the public,754.9749375629999,TJ,N2O,0.6,kg/TJ,452.98496253779996,kg -0b83a973-d687-3ace-9111-cd2fe893b618,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2012,naphtha combustion consumption by to the public,239.01593581249998,TJ,CO2,73300.0,kg/TJ,17519868.095056247,kg -ee2ab702-bb6c-3696-ad53-3eb7683ee397,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2012,naphtha combustion consumption by to the public,239.01593581249998,TJ,CH4,3.0,kg/TJ,717.0478074375,kg -ec493479-577a-39d9-9f75-ffee9988179d,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2012,naphtha combustion consumption by to the public,239.01593581249998,TJ,N2O,0.6,kg/TJ,143.40956148749999,kg -5e33fc68-65b4-32fd-9f14-04cfa4e428cc,SESCO,II.1.1,Tucuman,AR-T,annual,2012,naphtha combustion consumption by to the public,1322.4467136265,TJ,CO2,73300.0,kg/TJ,96935344.10882245,kg -d558e028-734e-3a10-a475-116b5a6df6b1,SESCO,II.1.1,Tucuman,AR-T,annual,2012,naphtha combustion consumption by to the public,1322.4467136265,TJ,CH4,3.0,kg/TJ,3967.3401408795,kg -039a69a4-0d5a-3158-b91d-3a1fc387275d,SESCO,II.1.1,Tucuman,AR-T,annual,2012,naphtha combustion consumption by to the public,1322.4467136265,TJ,N2O,0.6,kg/TJ,793.4680281759,kg -b2dad741-226e-362e-9d78-987441bb3a23,SESCO,II.1.1,Catamarca,AR-K,annual,2012,naphtha combustion consumption by to the public,14.294590464,TJ,CO2,73300.0,kg/TJ,1047793.4810112,kg -d0ee7b8d-313f-332f-82a6-06cafa422f40,SESCO,II.1.1,Catamarca,AR-K,annual,2012,naphtha combustion consumption by to the public,14.294590464,TJ,CH4,3.0,kg/TJ,42.883771392,kg -ad3e5f55-5567-38a5-9275-dda9788ac4d6,SESCO,II.1.1,Catamarca,AR-K,annual,2012,naphtha combustion consumption by to the public,14.294590464,TJ,N2O,0.6,kg/TJ,8.5767542784,kg -4da21f61-fd52-3b03-b37c-a44f19028545,SESCO,II.1.1,Chaco,AR-H,annual,2012,naphtha combustion consumption by to the public,1.5817512095,TJ,CO2,73300.0,kg/TJ,115942.36365634999,kg -7b47d3c6-7c69-3a84-a2bb-f639f6bc90bc,SESCO,II.1.1,Chaco,AR-H,annual,2012,naphtha combustion consumption by to the public,1.5817512095,TJ,CH4,3.0,kg/TJ,4.7452536284999995,kg -0c681808-6d35-3e0c-a9b9-ab575097e8de,SESCO,II.1.1,Chaco,AR-H,annual,2012,naphtha combustion consumption by to the public,1.5817512095,TJ,N2O,0.6,kg/TJ,0.9490507256999999,kg -2537b1ee-11f4-3fab-a236-e004c476a20b,SESCO,II.1.1,Córdoba,AR-X,annual,2012,naphtha combustion consumption by to the public,3.533098415,TJ,CO2,73300.0,kg/TJ,258976.1138195,kg -1c77f5f8-5a5f-3185-abb3-7e77f86b40d4,SESCO,II.1.1,Córdoba,AR-X,annual,2012,naphtha combustion consumption by to the public,3.533098415,TJ,CH4,3.0,kg/TJ,10.599295245,kg -c5fb3fae-56f2-3fce-b2bc-9b3c23d95928,SESCO,II.1.1,Córdoba,AR-X,annual,2012,naphtha combustion consumption by to the public,3.533098415,TJ,N2O,0.6,kg/TJ,2.119859049,kg -40ca6a84-8f21-304f-a160-29d510bba436,SESCO,II.1.1,Jujuy,AR-Y,annual,2012,naphtha combustion consumption by to the public,33.815707040499994,TJ,CO2,73300.0,kg/TJ,2478691.3260686495,kg -a231a006-1120-394a-b256-18391a4cc0b1,SESCO,II.1.1,Jujuy,AR-Y,annual,2012,naphtha combustion consumption by to the public,33.815707040499994,TJ,CH4,3.0,kg/TJ,101.44712112149998,kg -906fa66d-b3ab-37b3-8724-d6073a61f550,SESCO,II.1.1,Jujuy,AR-Y,annual,2012,naphtha combustion consumption by to the public,33.815707040499994,TJ,N2O,0.6,kg/TJ,20.289424224299996,kg -c7947046-f84d-393a-98ee-eeac081f1507,SESCO,II.1.1,La Rioja,AR-F,annual,2012,naphtha combustion consumption by to the public,11.869615296,TJ,CO2,73300.0,kg/TJ,870042.8011968,kg -779c0edb-429d-3b7a-83b1-1781940670ec,SESCO,II.1.1,La Rioja,AR-F,annual,2012,naphtha combustion consumption by to the public,11.869615296,TJ,CH4,3.0,kg/TJ,35.608845888,kg -e7a0c2c1-3fdc-32d5-a5e7-d87e9cc9ff24,SESCO,II.1.1,La Rioja,AR-F,annual,2012,naphtha combustion consumption by to the public,11.869615296,TJ,N2O,0.6,kg/TJ,7.121769177599999,kg -fe1a20cc-1e4c-3f12-a503-93f39c663ef5,SESCO,II.1.1,Salta,AR-A,annual,2012,naphtha combustion consumption by to the public,70.90260454199999,TJ,CO2,73300.0,kg/TJ,5197160.912928599,kg -95884087-68fd-3224-ac69-ad599664d5b6,SESCO,II.1.1,Salta,AR-A,annual,2012,naphtha combustion consumption by to the public,70.90260454199999,TJ,CH4,3.0,kg/TJ,212.70781362599996,kg -33a7bbcf-61db-3fc5-a03a-2bbd70df3c1e,SESCO,II.1.1,Salta,AR-A,annual,2012,naphtha combustion consumption by to the public,70.90260454199999,TJ,N2O,0.6,kg/TJ,42.541562725199995,kg -ba1fc74b-7119-3eb5-92a2-c9c7f1a9e0e7,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2012,naphtha combustion consumption by to the public,24.484072882499994,TJ,CO2,73300.0,kg/TJ,1794682.5422872496,kg -1ea42f02-882f-3714-a268-3838a7984bfb,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2012,naphtha combustion consumption by to the public,24.484072882499994,TJ,CH4,3.0,kg/TJ,73.45221864749999,kg -1e42dd48-f0e7-31be-9610-4b07d0089c2d,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2012,naphtha combustion consumption by to the public,24.484072882499994,TJ,N2O,0.6,kg/TJ,14.690443729499997,kg -7a2b8d0c-2f82-3536-8fa7-2e6e37885394,SESCO,II.1.1,Tucuman,AR-T,annual,2012,naphtha combustion consumption by to the public,117.8742007135,TJ,CO2,73300.0,kg/TJ,8640178.912299551,kg -5893b353-d294-38ab-9662-1b98fd501f3d,SESCO,II.1.1,Tucuman,AR-T,annual,2012,naphtha combustion consumption by to the public,117.8742007135,TJ,CH4,3.0,kg/TJ,353.6226021405,kg -63977f54-5ab3-354e-b5d0-7e93e6c2050c,SESCO,II.1.1,Tucuman,AR-T,annual,2012,naphtha combustion consumption by to the public,117.8742007135,TJ,N2O,0.6,kg/TJ,70.72452042809999,kg -4e9b40e4-a445-3248-945c-7a1125a05f8d,SESCO,II.5.1,Capital Federal,AR-C,annual,2012,naphtha combustion consumption by agriculture machines,0.3988446,TJ,CO2,73300.0,kg/TJ,29235.30918,kg -464d0476-4e23-3251-bc8b-30e9338b0e9c,SESCO,II.5.1,Capital Federal,AR-C,annual,2012,naphtha combustion consumption by agriculture machines,0.3988446,TJ,CH4,3.0,kg/TJ,1.1965338,kg -d96eb345-cfd7-3813-b51d-09c0e93a9d98,SESCO,II.5.1,Capital Federal,AR-C,annual,2012,naphtha combustion consumption by agriculture machines,0.3988446,TJ,N2O,0.6,kg/TJ,0.23930675999999998,kg -24b6e2f6-736e-3b11-99f8-4b119d32c8ea,SESCO,II.5.1,Santa Fe,AR-S,annual,2012,naphtha combustion consumption by agriculture machines,4.553475849999999,TJ,CO2,73300.0,kg/TJ,333769.77980499994,kg -f89e05de-a497-3d0e-8fd7-608e93381827,SESCO,II.5.1,Santa Fe,AR-S,annual,2012,naphtha combustion consumption by agriculture machines,4.553475849999999,TJ,CH4,3.0,kg/TJ,13.660427549999998,kg -efac2d95-b1bb-361d-aa03-09d02b2ab197,SESCO,II.5.1,Santa Fe,AR-S,annual,2012,naphtha combustion consumption by agriculture machines,4.553475849999999,TJ,N2O,0.6,kg/TJ,2.732085509999999,kg -71e64ba2-5944-3668-88be-c94d4c46bb40,SESCO,II.1.1,Buenos Aires,AR-B,annual,2012,naphtha combustion consumption by to the public,302.5236291,TJ,CO2,73300.0,kg/TJ,22174982.01303,kg -dd8c9f3a-2187-3428-9327-d41bb8114fa1,SESCO,II.1.1,Buenos Aires,AR-B,annual,2012,naphtha combustion consumption by to the public,302.5236291,TJ,CH4,3.0,kg/TJ,907.5708873,kg -fcce5508-44f5-3c2e-8e39-4816006ff99b,SESCO,II.1.1,Buenos Aires,AR-B,annual,2012,naphtha combustion consumption by to the public,302.5236291,TJ,N2O,0.6,kg/TJ,181.51417745999998,kg -d624fd17-7a6a-37dd-80c8-1de85aab9c71,SESCO,II.1.1,Capital Federal,AR-C,annual,2012,naphtha combustion consumption by to the public,3.8222607499999994,TJ,CO2,73300.0,kg/TJ,280171.712975,kg -460870de-a01a-3414-a525-57e496dc67ea,SESCO,II.1.1,Capital Federal,AR-C,annual,2012,naphtha combustion consumption by to the public,3.8222607499999994,TJ,CH4,3.0,kg/TJ,11.466782249999998,kg -223891f6-1d78-3654-97e0-7cf5e2c91fb0,SESCO,II.1.1,Capital Federal,AR-C,annual,2012,naphtha combustion consumption by to the public,3.8222607499999994,TJ,N2O,0.6,kg/TJ,2.2933564499999997,kg -f83165bc-166e-30d0-9ca2-6be02c578e6a,SESCO,II.1.1,Chaco,AR-H,annual,2012,naphtha combustion consumption by to the public,10.669093049999999,TJ,CO2,73300.0,kg/TJ,782044.5205649999,kg -6a8795a0-f812-3962-9901-74c8260de14e,SESCO,II.1.1,Chaco,AR-H,annual,2012,naphtha combustion consumption by to the public,10.669093049999999,TJ,CH4,3.0,kg/TJ,32.007279149999995,kg -c416bf2c-5c3e-352c-864c-3366a92b0db5,SESCO,II.1.1,Chaco,AR-H,annual,2012,naphtha combustion consumption by to the public,10.669093049999999,TJ,N2O,0.6,kg/TJ,6.401455829999999,kg -efb313af-0de1-3d0e-9ced-6f585929f8db,SESCO,II.1.1,Corrientes,AR-W,annual,2012,naphtha combustion consumption by to the public,2.9248603999999996,TJ,CO2,73300.0,kg/TJ,214392.26731999996,kg -bfecf491-1424-3b40-abf8-2d5bb93a02d3,SESCO,II.1.1,Corrientes,AR-W,annual,2012,naphtha combustion consumption by to the public,2.9248603999999996,TJ,CH4,3.0,kg/TJ,8.774581199999998,kg -a7ebe1ac-63af-31aa-85b5-4bb5e7621e8f,SESCO,II.1.1,Corrientes,AR-W,annual,2012,naphtha combustion consumption by to the public,2.9248603999999996,TJ,N2O,0.6,kg/TJ,1.7549162399999998,kg -e9b7c693-8957-31b3-9bfe-bfce415f464e,SESCO,II.1.1,Córdoba,AR-X,annual,2012,naphtha combustion consumption by to the public,0.7644521499999999,TJ,CO2,73300.0,kg/TJ,56034.342594999995,kg -c2e43149-f1c5-30a9-aa6f-3fd1ba0a21a4,SESCO,II.1.1,Córdoba,AR-X,annual,2012,naphtha combustion consumption by to the public,0.7644521499999999,TJ,CH4,3.0,kg/TJ,2.2933564499999997,kg -44d71264-215b-3bad-8b0f-ffc066198e52,SESCO,II.1.1,Córdoba,AR-X,annual,2012,naphtha combustion consumption by to the public,0.7644521499999999,TJ,N2O,0.6,kg/TJ,0.4586712899999999,kg -98fb7604-7549-3246-999a-598d31cc0a1a,SESCO,II.1.1,Entre Rios,AR-E,annual,2012,naphtha combustion consumption by to the public,24.927787499999997,TJ,CO2,73300.0,kg/TJ,1827206.8237499997,kg -3df7edb3-d44b-3a22-b33d-738982a47d82,SESCO,II.1.1,Entre Rios,AR-E,annual,2012,naphtha combustion consumption by to the public,24.927787499999997,TJ,CH4,3.0,kg/TJ,74.7833625,kg -223d5229-e1e9-3eb6-b266-78ce2d69104a,SESCO,II.1.1,Entre Rios,AR-E,annual,2012,naphtha combustion consumption by to the public,24.927787499999997,TJ,N2O,0.6,kg/TJ,14.956672499999998,kg -6e16bb9d-fd78-346f-881a-ffb1ae146e6e,SESCO,II.1.1,La Pampa,AR-L,annual,2012,naphtha combustion consumption by to the public,1.9942229999999999,TJ,CO2,73300.0,kg/TJ,146176.5459,kg -5d0589b7-e3eb-3b19-b65a-920a94690159,SESCO,II.1.1,La Pampa,AR-L,annual,2012,naphtha combustion consumption by to the public,1.9942229999999999,TJ,CH4,3.0,kg/TJ,5.982669,kg -8b9f1b92-ed11-3ec7-bc7b-bc996a28110a,SESCO,II.1.1,La Pampa,AR-L,annual,2012,naphtha combustion consumption by to the public,1.9942229999999999,TJ,N2O,0.6,kg/TJ,1.1965337999999999,kg -ab2ee27b-b3ec-3353-af58-fa5ad10b8983,SESCO,II.1.1,Mendoza,AR-M,annual,2012,naphtha combustion consumption by to the public,74.68365135,TJ,CO2,73300.0,kg/TJ,5474311.643955001,kg -cd3b8743-d655-3806-8e84-cc5e10bc880e,SESCO,II.1.1,Mendoza,AR-M,annual,2012,naphtha combustion consumption by to the public,74.68365135,TJ,CH4,3.0,kg/TJ,224.05095405000003,kg -c95dd880-b1fd-3eef-ad41-31756c4e8e64,SESCO,II.1.1,Mendoza,AR-M,annual,2012,naphtha combustion consumption by to the public,74.68365135,TJ,N2O,0.6,kg/TJ,44.81019081,kg -80383b0f-c34d-3030-acc6-5ac0120bc1ca,SESCO,II.1.1,Misiones,AR-N,annual,2012,naphtha combustion consumption by to the public,25.49281735,TJ,CO2,73300.0,kg/TJ,1868623.5117549999,kg -cbbd06f9-ef89-390e-8f15-ab5b6345413f,SESCO,II.1.1,Misiones,AR-N,annual,2012,naphtha combustion consumption by to the public,25.49281735,TJ,CH4,3.0,kg/TJ,76.47845205,kg -1b56a26f-c8f9-32ea-8b01-e22a66366b0e,SESCO,II.1.1,Misiones,AR-N,annual,2012,naphtha combustion consumption by to the public,25.49281735,TJ,N2O,0.6,kg/TJ,15.295690409999999,kg -36fd2381-e85c-3c6c-869b-a7763067a016,SESCO,II.1.1,Neuquén,AR-Q,annual,2012,naphtha combustion consumption by to the public,14.98990955,TJ,CO2,73300.0,kg/TJ,1098760.370015,kg -adc2a841-f3ab-3151-b43b-55bd8d5b7c89,SESCO,II.1.1,Neuquén,AR-Q,annual,2012,naphtha combustion consumption by to the public,14.98990955,TJ,CH4,3.0,kg/TJ,44.96972865,kg -9a1ea552-145e-3ad5-9dc0-9b1d07272cbc,SESCO,II.1.1,Neuquén,AR-Q,annual,2012,naphtha combustion consumption by to the public,14.98990955,TJ,N2O,0.6,kg/TJ,8.99394573,kg -0b621037-ab15-3e8f-94b6-70ba3b896fb8,SESCO,II.1.1,Rio Negro,AR-R,annual,2012,naphtha combustion consumption by to the public,7.744232649999999,TJ,CO2,73300.0,kg/TJ,567652.2532449999,kg -e809f3e9-8e13-364d-a057-0a062d98269e,SESCO,II.1.1,Rio Negro,AR-R,annual,2012,naphtha combustion consumption by to the public,7.744232649999999,TJ,CH4,3.0,kg/TJ,23.232697949999995,kg -10903e8e-cde4-39c6-bc9b-31360c891b85,SESCO,II.1.1,Rio Negro,AR-R,annual,2012,naphtha combustion consumption by to the public,7.744232649999999,TJ,N2O,0.6,kg/TJ,4.646539589999999,kg -f4a5aa1a-1351-343f-b7f1-216cd83304f4,SESCO,II.1.1,Santa Fe,AR-S,annual,2012,naphtha combustion consumption by to the public,3.55636435,TJ,CO2,73300.0,kg/TJ,260681.50685499999,kg -8b51953a-e01a-3c30-a558-1838bce0996c,SESCO,II.1.1,Santa Fe,AR-S,annual,2012,naphtha combustion consumption by to the public,3.55636435,TJ,CH4,3.0,kg/TJ,10.66909305,kg -32712da3-8ee5-3e7c-8789-5631c8a761c7,SESCO,II.1.1,Santa Fe,AR-S,annual,2012,naphtha combustion consumption by to the public,3.55636435,TJ,N2O,0.6,kg/TJ,2.13381861,kg -6ac025a2-545a-3729-8acd-70519eaba6c8,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2012,naphtha combustion consumption by to the public,1.8945118499999998,TJ,CO2,73300.0,kg/TJ,138867.71860499997,kg -9918925e-ddd7-37f8-b960-b4ecc9a46fbd,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2012,naphtha combustion consumption by to the public,1.8945118499999998,TJ,CH4,3.0,kg/TJ,5.683535549999999,kg -faf8a259-0802-381a-a89f-ec80f09694ce,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2012,naphtha combustion consumption by to the public,1.8945118499999998,TJ,N2O,0.6,kg/TJ,1.13670711,kg -95b6bc97-0c14-3f38-8e9b-8b18b400a4f0,SESCO,II.1.1,Tucuman,AR-T,annual,2012,naphtha combustion consumption by to the public,7.1127287,TJ,CO2,73300.0,kg/TJ,521363.01370999997,kg -9eccd8ac-d630-3dcb-ac65-fb3c39a6bfb5,SESCO,II.1.1,Tucuman,AR-T,annual,2012,naphtha combustion consumption by to the public,7.1127287,TJ,CH4,3.0,kg/TJ,21.3381861,kg -9008a4db-f578-3e0e-a08f-40a6e3dbff21,SESCO,II.1.1,Tucuman,AR-T,annual,2012,naphtha combustion consumption by to the public,7.1127287,TJ,N2O,0.6,kg/TJ,4.26763722,kg -22da8532-d126-3183-bc0f-aca46dfa7732,SESCO,II.1.1,Buenos Aires,AR-B,annual,2012,naphtha combustion consumption by to the public,14191.522371949999,TJ,CO2,73300.0,kg/TJ,1040238589.8639349,kg -3a54b1d6-e2b5-376b-8721-e419d0dc3aa1,SESCO,II.1.1,Buenos Aires,AR-B,annual,2012,naphtha combustion consumption by to the public,14191.522371949999,TJ,CH4,3.0,kg/TJ,42574.56711585,kg -330b149b-4eee-33ce-87b4-fee17deca136,SESCO,II.1.1,Buenos Aires,AR-B,annual,2012,naphtha combustion consumption by to the public,14191.522371949999,TJ,N2O,0.6,kg/TJ,8514.913423169999,kg -6aad65b2-8b11-3f7f-ba02-bd25c1061b65,SESCO,II.1.1,Capital Federal,AR-C,annual,2012,naphtha combustion consumption by to the public,4197.9058890999995,TJ,CO2,73300.0,kg/TJ,307706501.67103,kg -3dd35726-53c6-370b-a534-782fc15e79ab,SESCO,II.1.1,Capital Federal,AR-C,annual,2012,naphtha combustion consumption by to the public,4197.9058890999995,TJ,CH4,3.0,kg/TJ,12593.7176673,kg -74ceb176-5df4-333b-a474-6d6fc3a1067b,SESCO,II.1.1,Capital Federal,AR-C,annual,2012,naphtha combustion consumption by to the public,4197.9058890999995,TJ,N2O,0.6,kg/TJ,2518.7435334599995,kg -b96e3f72-94e4-3b3a-a8ab-e01a26bf43ae,SESCO,II.1.1,Catamarca,AR-K,annual,2012,naphtha combustion consumption by to the public,64.31369174999999,TJ,CO2,73300.0,kg/TJ,4714193.6052749995,kg -fc750a45-8aa4-3d94-ae70-46fc3df924cb,SESCO,II.1.1,Catamarca,AR-K,annual,2012,naphtha combustion consumption by to the public,64.31369174999999,TJ,CH4,3.0,kg/TJ,192.94107524999998,kg -9ca4a632-f41b-3289-9148-81008bb4798c,SESCO,II.1.1,Catamarca,AR-K,annual,2012,naphtha combustion consumption by to the public,64.31369174999999,TJ,N2O,0.6,kg/TJ,38.588215049999995,kg -85c3828c-7abd-3631-b726-5fff01a63aff,SESCO,II.1.1,Chaco,AR-H,annual,2012,naphtha combustion consumption by to the public,930.1720812999998,TJ,CO2,73300.0,kg/TJ,68181613.55928999,kg -2147632f-86cd-34d2-9132-7201003cb7d5,SESCO,II.1.1,Chaco,AR-H,annual,2012,naphtha combustion consumption by to the public,930.1720812999998,TJ,CH4,3.0,kg/TJ,2790.5162438999996,kg -3897c11f-08a2-3b9d-a3ec-cb69268e4ef0,SESCO,II.1.1,Chaco,AR-H,annual,2012,naphtha combustion consumption by to the public,930.1720812999998,TJ,N2O,0.6,kg/TJ,558.1032487799998,kg -cc9fbae8-40f4-3d52-81c1-7395775b1a5c,SESCO,II.1.1,Chubut,AR-U,annual,2012,naphtha combustion consumption by to the public,99.01317195,TJ,CO2,73300.0,kg/TJ,7257665.503935,kg -d6e13b73-128d-3cbc-846c-e8b69b36c962,SESCO,II.1.1,Chubut,AR-U,annual,2012,naphtha combustion consumption by to the public,99.01317195,TJ,CH4,3.0,kg/TJ,297.03951585,kg -e10f315c-60ba-3c12-a921-57f384b84015,SESCO,II.1.1,Chubut,AR-U,annual,2012,naphtha combustion consumption by to the public,99.01317195,TJ,N2O,0.6,kg/TJ,59.40790317,kg -fd0c8414-2fa4-33cc-bd1e-cde5996afa0b,SESCO,II.1.1,Corrientes,AR-W,annual,2012,naphtha combustion consumption by to the public,892.9465852999999,TJ,CO2,73300.0,kg/TJ,65452984.702489994,kg -dd771e8c-d441-326c-ad38-0be8fd12e8db,SESCO,II.1.1,Corrientes,AR-W,annual,2012,naphtha combustion consumption by to the public,892.9465852999999,TJ,CH4,3.0,kg/TJ,2678.8397558999995,kg -96f7c4a1-06b0-3526-9dc5-fc0063fda191,SESCO,II.1.1,Corrientes,AR-W,annual,2012,naphtha combustion consumption by to the public,892.9465852999999,TJ,N2O,0.6,kg/TJ,535.76795118,kg -7cc53ff8-dbd7-3f05-bcd1-59daaf6697d8,SESCO,II.1.1,Córdoba,AR-X,annual,2012,naphtha combustion consumption by to the public,2876.63344045,TJ,CO2,73300.0,kg/TJ,210857231.18498498,kg -cc50a113-69b4-3006-bdf7-d4e2f5c35223,SESCO,II.1.1,Córdoba,AR-X,annual,2012,naphtha combustion consumption by to the public,2876.63344045,TJ,CH4,3.0,kg/TJ,8629.90032135,kg -933a744b-c72e-30b6-a25b-9daeaefc5c55,SESCO,II.1.1,Córdoba,AR-X,annual,2012,naphtha combustion consumption by to the public,2876.63344045,TJ,N2O,0.6,kg/TJ,1725.98006427,kg -7f1bfed8-cefa-31cd-ba8d-c060c2b3d49d,SESCO,II.1.1,Entre Rios,AR-E,annual,2012,naphtha combustion consumption by to the public,1117.5293321499998,TJ,CO2,73300.0,kg/TJ,81914900.04659499,kg -9028d754-3683-3b80-8525-04940e3139aa,SESCO,II.1.1,Entre Rios,AR-E,annual,2012,naphtha combustion consumption by to the public,1117.5293321499998,TJ,CH4,3.0,kg/TJ,3352.5879964499995,kg -12ebb38e-44bc-3886-a869-9a6565ead208,SESCO,II.1.1,Entre Rios,AR-E,annual,2012,naphtha combustion consumption by to the public,1117.5293321499998,TJ,N2O,0.6,kg/TJ,670.5175992899999,kg -626c9e7c-a2a2-3294-b40f-c607502e38fb,SESCO,II.1.1,Formosa,AR-P,annual,2012,naphtha combustion consumption by to the public,443.24929879999996,TJ,CO2,73300.0,kg/TJ,32490173.602039997,kg -588614d0-6155-3e59-8004-3a8978a288d0,SESCO,II.1.1,Formosa,AR-P,annual,2012,naphtha combustion consumption by to the public,443.24929879999996,TJ,CH4,3.0,kg/TJ,1329.7478964,kg -19a8e05c-0bb1-3038-a8c1-9ead4935119f,SESCO,II.1.1,Formosa,AR-P,annual,2012,naphtha combustion consumption by to the public,443.24929879999996,TJ,N2O,0.6,kg/TJ,265.94957927999997,kg -60e245fe-615b-35ee-a4c2-c0a87e631cda,SESCO,II.1.1,Jujuy,AR-Y,annual,2012,naphtha combustion consumption by to the public,219.29805589999998,TJ,CO2,73300.0,kg/TJ,16074547.497469999,kg -9c92cb1c-d892-3f05-9e0f-558c4dd6b591,SESCO,II.1.1,Jujuy,AR-Y,annual,2012,naphtha combustion consumption by to the public,219.29805589999998,TJ,CH4,3.0,kg/TJ,657.8941676999999,kg -cdc5ae7a-4085-38cc-9bcb-a5ea2aa61f93,SESCO,II.1.1,Jujuy,AR-Y,annual,2012,naphtha combustion consumption by to the public,219.29805589999998,TJ,N2O,0.6,kg/TJ,131.57883353999998,kg -599cde3f-880c-307b-a607-d97fd080e3de,SESCO,II.1.1,La Pampa,AR-L,annual,2012,naphtha combustion consumption by to the public,298.9007906499999,TJ,CO2,73300.0,kg/TJ,21909427.954644993,kg -77012311-de92-38aa-bcc6-2b6e8fdfdfef,SESCO,II.1.1,La Pampa,AR-L,annual,2012,naphtha combustion consumption by to the public,298.9007906499999,TJ,CH4,3.0,kg/TJ,896.7023719499998,kg -853fc8cb-a3a8-37b3-8e68-7a09381d5dcd,SESCO,II.1.1,La Pampa,AR-L,annual,2012,naphtha combustion consumption by to the public,298.9007906499999,TJ,N2O,0.6,kg/TJ,179.34047438999994,kg -36a1775d-8503-3646-8e49-9fe8e39e951c,SESCO,II.1.1,La Rioja,AR-F,annual,2012,naphtha combustion consumption by to the public,283.64498469999995,TJ,CO2,73300.0,kg/TJ,20791177.37851,kg -aee5f60e-726f-3d4b-beae-39fe3de0e752,SESCO,II.1.1,La Rioja,AR-F,annual,2012,naphtha combustion consumption by to the public,283.64498469999995,TJ,CH4,3.0,kg/TJ,850.9349540999999,kg -85962779-72a8-3af9-ba2a-821d281dc3ea,SESCO,II.1.1,La Rioja,AR-F,annual,2012,naphtha combustion consumption by to the public,283.64498469999995,TJ,N2O,0.6,kg/TJ,170.18699081999998,kg -46fb17d6-0023-381b-bdb8-dcb6446a9e96,SESCO,II.1.1,Mendoza,AR-M,annual,2012,naphtha combustion consumption by to the public,759.10098495,TJ,CO2,73300.0,kg/TJ,55642102.196835,kg -5e486aa1-2a49-3cdd-afbf-7022d0da93cf,SESCO,II.1.1,Mendoza,AR-M,annual,2012,naphtha combustion consumption by to the public,759.10098495,TJ,CH4,3.0,kg/TJ,2277.30295485,kg -44d92bb1-3374-35fd-be1b-ca3c472b9ed7,SESCO,II.1.1,Mendoza,AR-M,annual,2012,naphtha combustion consumption by to the public,759.10098495,TJ,N2O,0.6,kg/TJ,455.46059097,kg -26e3228f-c4fa-3de6-8009-ccf63cc32fab,SESCO,II.1.1,Misiones,AR-N,annual,2012,naphtha combustion consumption by to the public,1152.56118285,TJ,CO2,73300.0,kg/TJ,84482734.702905,kg -f85306bd-aaad-3bc0-8efe-05cc248f300a,SESCO,II.1.1,Misiones,AR-N,annual,2012,naphtha combustion consumption by to the public,1152.56118285,TJ,CH4,3.0,kg/TJ,3457.68354855,kg -a551ed49-b97a-368f-8d9a-fe014a947165,SESCO,II.1.1,Misiones,AR-N,annual,2012,naphtha combustion consumption by to the public,1152.56118285,TJ,N2O,0.6,kg/TJ,691.53670971,kg -efd5fafb-d4cf-3440-b069-ab875cbde070,SESCO,II.1.1,Neuquén,AR-Q,annual,2012,naphtha combustion consumption by to the public,240.03797509999998,TJ,CO2,73300.0,kg/TJ,17594783.57483,kg -189abe20-bf0c-34d7-89c3-5c4ecf595bae,SESCO,II.1.1,Neuquén,AR-Q,annual,2012,naphtha combustion consumption by to the public,240.03797509999998,TJ,CH4,3.0,kg/TJ,720.1139252999999,kg -7086ddeb-58a8-35e1-adb9-7f929d0046d4,SESCO,II.1.1,Neuquén,AR-Q,annual,2012,naphtha combustion consumption by to the public,240.03797509999998,TJ,N2O,0.6,kg/TJ,144.02278506,kg -72c6389c-694c-39db-8577-a73f0d4fbe68,SESCO,II.1.1,Rio Negro,AR-R,annual,2012,naphtha combustion consumption by to the public,204.8731762,TJ,CO2,73300.0,kg/TJ,15017203.815459998,kg -1c65cf38-06da-337c-bb33-b25067a137ae,SESCO,II.1.1,Rio Negro,AR-R,annual,2012,naphtha combustion consumption by to the public,204.8731762,TJ,CH4,3.0,kg/TJ,614.6195286,kg -12c1572f-e3fe-3cb8-80be-cf5fd3731602,SESCO,II.1.1,Rio Negro,AR-R,annual,2012,naphtha combustion consumption by to the public,204.8731762,TJ,N2O,0.6,kg/TJ,122.92390572,kg -13545685-6ef7-3615-a325-6eda12896003,SESCO,II.1.1,Salta,AR-A,annual,2012,naphtha combustion consumption by to the public,330.01066944999997,TJ,CO2,73300.0,kg/TJ,24189782.070685,kg -4d387df1-8e13-3ed7-b7f1-1a4450f0dde7,SESCO,II.1.1,Salta,AR-A,annual,2012,naphtha combustion consumption by to the public,330.01066944999997,TJ,CH4,3.0,kg/TJ,990.0320083499998,kg -28de91da-fb08-3aa3-b36e-6d6b6179438f,SESCO,II.1.1,Salta,AR-A,annual,2012,naphtha combustion consumption by to the public,330.01066944999997,TJ,N2O,0.6,kg/TJ,198.00640166999997,kg -bfb3e3d6-2a78-3bc3-ab4d-e55f7bae029d,SESCO,II.1.1,San Juan,AR-J,annual,2012,naphtha combustion consumption by to the public,227.44113314999998,TJ,CO2,73300.0,kg/TJ,16671435.059895,kg -631872bd-5c7e-37c7-acd7-2afda5d51cdc,SESCO,II.1.1,San Juan,AR-J,annual,2012,naphtha combustion consumption by to the public,227.44113314999998,TJ,CH4,3.0,kg/TJ,682.3233994499999,kg -baea2188-cf37-3342-acea-23254c435825,SESCO,II.1.1,San Juan,AR-J,annual,2012,naphtha combustion consumption by to the public,227.44113314999998,TJ,N2O,0.6,kg/TJ,136.46467988999999,kg -d10a496b-46fd-3aed-8da9-837ef010302a,SESCO,II.1.1,San Luis,AR-D,annual,2012,naphtha combustion consumption by to the public,15.787598749999999,TJ,CO2,73300.0,kg/TJ,1157230.988375,kg -d12a008a-b8b7-3164-a549-cbbf893b3167,SESCO,II.1.1,San Luis,AR-D,annual,2012,naphtha combustion consumption by to the public,15.787598749999999,TJ,CH4,3.0,kg/TJ,47.362796249999995,kg -f793ba82-9d72-3d49-aabc-5ba39341962f,SESCO,II.1.1,San Luis,AR-D,annual,2012,naphtha combustion consumption by to the public,15.787598749999999,TJ,N2O,0.6,kg/TJ,9.47255925,kg -605db8a5-d6ca-3e96-bcdf-ef38880664f7,SESCO,II.1.1,Santa Fe,AR-S,annual,2012,naphtha combustion consumption by to the public,3294.6890553499998,TJ,CO2,73300.0,kg/TJ,241500707.75715497,kg -799eeafc-bb37-333b-86b7-6e561fd7a948,SESCO,II.1.1,Santa Fe,AR-S,annual,2012,naphtha combustion consumption by to the public,3294.6890553499998,TJ,CH4,3.0,kg/TJ,9884.06716605,kg -59c5d45c-6a67-31e9-8383-4d8d037fc04b,SESCO,II.1.1,Santa Fe,AR-S,annual,2012,naphtha combustion consumption by to the public,3294.6890553499998,TJ,N2O,0.6,kg/TJ,1976.8134332099999,kg -e01b3261-8243-33a1-89b0-feda27efc0ad,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2012,naphtha combustion consumption by to the public,370.65958159999997,TJ,CO2,73300.0,kg/TJ,27169347.331279997,kg -b420ffe6-a87e-33ea-a431-d399a7353ad2,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2012,naphtha combustion consumption by to the public,370.65958159999997,TJ,CH4,3.0,kg/TJ,1111.9787448,kg -fda08e5c-6d2a-3a80-9624-9869f7299cbf,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2012,naphtha combustion consumption by to the public,370.65958159999997,TJ,N2O,0.6,kg/TJ,222.39574895999996,kg -5fcaf8cb-d8aa-3e46-bcb3-17414f22f55e,SESCO,II.1.1,Tucuman,AR-T,annual,2012,naphtha combustion consumption by to the public,862.2023140499999,TJ,CO2,73300.0,kg/TJ,63199429.61986499,kg -44d5ab82-15d2-31aa-8027-ea9c70c9ec46,SESCO,II.1.1,Tucuman,AR-T,annual,2012,naphtha combustion consumption by to the public,862.2023140499999,TJ,CH4,3.0,kg/TJ,2586.6069421499997,kg -94da0d5c-2324-34c7-9745-8f270740bc12,SESCO,II.1.1,Tucuman,AR-T,annual,2012,naphtha combustion consumption by to the public,862.2023140499999,TJ,N2O,0.6,kg/TJ,517.32138843,kg -63cb1cf8-f596-39e5-89b6-82823b6fcd2e,SESCO,II.1.1,Buenos Aires,AR-B,annual,2012,naphtha combustion consumption by to the public,5909.414541799999,TJ,CO2,73300.0,kg/TJ,433160085.9139399,kg -354acdd5-9486-33ea-be93-3f6f93bf775e,SESCO,II.1.1,Buenos Aires,AR-B,annual,2012,naphtha combustion consumption by to the public,5909.414541799999,TJ,CH4,3.0,kg/TJ,17728.2436254,kg -4838aecc-6f08-3a17-b5cc-83e6536a7f2a,SESCO,II.1.1,Buenos Aires,AR-B,annual,2012,naphtha combustion consumption by to the public,5909.414541799999,TJ,N2O,0.6,kg/TJ,3545.648725079999,kg -ea89f508-e136-3701-9a5f-b6e117768d75,SESCO,II.1.1,Capital Federal,AR-C,annual,2012,naphtha combustion consumption by to the public,2562.4103697499995,TJ,CO2,73300.0,kg/TJ,187824680.10267496,kg -ad54ecba-ad48-3c4b-b6c6-a97e46409426,SESCO,II.1.1,Capital Federal,AR-C,annual,2012,naphtha combustion consumption by to the public,2562.4103697499995,TJ,CH4,3.0,kg/TJ,7687.231109249999,kg -31756f36-22b6-3353-a2ff-899932eec9b1,SESCO,II.1.1,Capital Federal,AR-C,annual,2012,naphtha combustion consumption by to the public,2562.4103697499995,TJ,N2O,0.6,kg/TJ,1537.4462218499996,kg -387d8a59-411a-38c0-94e7-976c6abd0696,SESCO,II.1.1,Catamarca,AR-K,annual,2012,naphtha combustion consumption by to the public,31.60843455,TJ,CO2,73300.0,kg/TJ,2316898.252515,kg -afb8289e-6c2e-3c04-a6b8-e42c8cdfd011,SESCO,II.1.1,Catamarca,AR-K,annual,2012,naphtha combustion consumption by to the public,31.60843455,TJ,CH4,3.0,kg/TJ,94.82530365,kg -dd4a637a-8a73-36b2-833a-536a4505f83c,SESCO,II.1.1,Catamarca,AR-K,annual,2012,naphtha combustion consumption by to the public,31.60843455,TJ,N2O,0.6,kg/TJ,18.965060729999998,kg -f47e4918-6996-3c6b-bf76-0c257d6a9365,SESCO,II.1.1,Chaco,AR-H,annual,2012,naphtha combustion consumption by to the public,247.0177556,TJ,CO2,73300.0,kg/TJ,18106401.48548,kg -a38c3108-dd6f-315f-bb04-93b0bcf9f122,SESCO,II.1.1,Chaco,AR-H,annual,2012,naphtha combustion consumption by to the public,247.0177556,TJ,CH4,3.0,kg/TJ,741.0532668,kg -c15d2494-32dc-390a-8a63-07ecded87741,SESCO,II.1.1,Chaco,AR-H,annual,2012,naphtha combustion consumption by to the public,247.0177556,TJ,N2O,0.6,kg/TJ,148.21065335999998,kg -172e191a-df58-3728-b2e4-b5dcf692e820,SESCO,II.1.1,Chubut,AR-U,annual,2012,naphtha combustion consumption by to the public,31.3093011,TJ,CO2,73300.0,kg/TJ,2294971.77063,kg -fcbea22d-40be-379f-83c9-10d28ae19e90,SESCO,II.1.1,Chubut,AR-U,annual,2012,naphtha combustion consumption by to the public,31.3093011,TJ,CH4,3.0,kg/TJ,93.9279033,kg -3a75d49a-4afa-3044-a0a6-af58a5cabab6,SESCO,II.1.1,Chubut,AR-U,annual,2012,naphtha combustion consumption by to the public,31.3093011,TJ,N2O,0.6,kg/TJ,18.785580659999997,kg -96118414-56bc-3c74-9b99-da3d8a2ae6a2,SESCO,II.1.1,Corrientes,AR-W,annual,2012,naphtha combustion consumption by to the public,271.5466985,TJ,CO2,73300.0,kg/TJ,19904373.00005,kg -f2f7c888-5e2c-33cb-811c-4f876c10fe1a,SESCO,II.1.1,Corrientes,AR-W,annual,2012,naphtha combustion consumption by to the public,271.5466985,TJ,CH4,3.0,kg/TJ,814.6400954999999,kg -db49afb2-e4e5-38ea-a3dc-51ece02de267,SESCO,II.1.1,Corrientes,AR-W,annual,2012,naphtha combustion consumption by to the public,271.5466985,TJ,N2O,0.6,kg/TJ,162.9280191,kg -1df04e8a-371d-3c7f-aa04-65491910cdc9,SESCO,II.1.1,Córdoba,AR-X,annual,2012,naphtha combustion consumption by to the public,1037.8601233,TJ,CO2,73300.0,kg/TJ,76075147.03789,kg -4e7d3284-aa10-3353-b6e0-9855615bad36,SESCO,II.1.1,Córdoba,AR-X,annual,2012,naphtha combustion consumption by to the public,1037.8601233,TJ,CH4,3.0,kg/TJ,3113.5803699,kg -7f23afc3-ae0a-3e7b-9b39-1b0588a40ccb,SESCO,II.1.1,Córdoba,AR-X,annual,2012,naphtha combustion consumption by to the public,1037.8601233,TJ,N2O,0.6,kg/TJ,622.7160739799999,kg -53735f4a-08d0-3789-a972-39af9752291c,SESCO,II.1.1,Entre Rios,AR-E,annual,2012,naphtha combustion consumption by to the public,365.37489064999994,TJ,CO2,73300.0,kg/TJ,26781979.484644994,kg -568232e1-1ff8-3e8e-825b-ef05598c3450,SESCO,II.1.1,Entre Rios,AR-E,annual,2012,naphtha combustion consumption by to the public,365.37489064999994,TJ,CH4,3.0,kg/TJ,1096.1246719499998,kg -be43ebd1-00ea-312f-b016-8d04196d4bbd,SESCO,II.1.1,Entre Rios,AR-E,annual,2012,naphtha combustion consumption by to the public,365.37489064999994,TJ,N2O,0.6,kg/TJ,219.22493438999996,kg -0672b4af-6687-351e-9813-0833d123c1b2,SESCO,II.1.1,Formosa,AR-P,annual,2012,naphtha combustion consumption by to the public,139.59561,TJ,CO2,73300.0,kg/TJ,10232358.213,kg -38502aec-af45-3124-bfb7-77ae494770f5,SESCO,II.1.1,Formosa,AR-P,annual,2012,naphtha combustion consumption by to the public,139.59561,TJ,CH4,3.0,kg/TJ,418.78683,kg -e05c59a9-ea55-3357-b934-3b46afb24c58,SESCO,II.1.1,Formosa,AR-P,annual,2012,naphtha combustion consumption by to the public,139.59561,TJ,N2O,0.6,kg/TJ,83.75736599999999,kg -bf0688da-d285-3370-9344-f92388209542,SESCO,II.1.1,Jujuy,AR-Y,annual,2012,naphtha combustion consumption by to the public,60.19229755,TJ,CO2,73300.0,kg/TJ,4412095.410415,kg -5b016142-cfd2-323b-adf6-8c809e816c3a,SESCO,II.1.1,Jujuy,AR-Y,annual,2012,naphtha combustion consumption by to the public,60.19229755,TJ,CH4,3.0,kg/TJ,180.57689265,kg -603e50cd-b315-3886-8cf4-9a66924caed6,SESCO,II.1.1,Jujuy,AR-Y,annual,2012,naphtha combustion consumption by to the public,60.19229755,TJ,N2O,0.6,kg/TJ,36.11537853,kg -7ac13c90-684d-3f54-9447-8b070a44a321,SESCO,II.1.1,La Pampa,AR-L,annual,2012,naphtha combustion consumption by to the public,116.99441599999999,TJ,CO2,73300.0,kg/TJ,8575690.692799998,kg -be13961b-f640-3ce0-aa26-27b6e3a1463c,SESCO,II.1.1,La Pampa,AR-L,annual,2012,naphtha combustion consumption by to the public,116.99441599999999,TJ,CH4,3.0,kg/TJ,350.98324799999995,kg -8215bc97-7e3c-3eb2-aba7-07621cbeb8f3,SESCO,II.1.1,La Pampa,AR-L,annual,2012,naphtha combustion consumption by to the public,116.99441599999999,TJ,N2O,0.6,kg/TJ,70.19664959999999,kg -c5e88d4b-50a9-35a0-b0d3-a40761fa75dd,SESCO,II.1.1,La Rioja,AR-F,annual,2012,naphtha combustion consumption by to the public,71.3931834,TJ,CO2,73300.0,kg/TJ,5233120.34322,kg -9b0a69ff-2930-3c07-b1b4-51d5ad041d3f,SESCO,II.1.1,La Rioja,AR-F,annual,2012,naphtha combustion consumption by to the public,71.3931834,TJ,CH4,3.0,kg/TJ,214.1795502,kg -2fdabe2f-698e-337f-b8bd-38b9d00979a6,SESCO,II.1.1,La Rioja,AR-F,annual,2012,naphtha combustion consumption by to the public,71.3931834,TJ,N2O,0.6,kg/TJ,42.835910039999995,kg -dd8e00b1-881b-36db-b230-380840186c53,SESCO,II.1.1,Mendoza,AR-M,annual,2012,naphtha combustion consumption by to the public,273.24178804999997,TJ,CO2,73300.0,kg/TJ,20028623.064065,kg -93571391-9bd9-3c88-a066-5075531cfa1a,SESCO,II.1.1,Mendoza,AR-M,annual,2012,naphtha combustion consumption by to the public,273.24178804999997,TJ,CH4,3.0,kg/TJ,819.7253641499999,kg -e9386a8e-0bde-36e4-a816-683ef661ff51,SESCO,II.1.1,Mendoza,AR-M,annual,2012,naphtha combustion consumption by to the public,273.24178804999997,TJ,N2O,0.6,kg/TJ,163.94507283,kg -b232fd5e-4138-3a19-b819-556afe52d169,SESCO,II.1.1,Misiones,AR-N,annual,2012,naphtha combustion consumption by to the public,197.06246944999998,TJ,CO2,73300.0,kg/TJ,14444679.010684999,kg -9d45f814-ca80-3151-adb2-4df9ac4e7d95,SESCO,II.1.1,Misiones,AR-N,annual,2012,naphtha combustion consumption by to the public,197.06246944999998,TJ,CH4,3.0,kg/TJ,591.1874083499999,kg -c12abd90-8dae-340d-a241-bc1f0e69406d,SESCO,II.1.1,Misiones,AR-N,annual,2012,naphtha combustion consumption by to the public,197.06246944999998,TJ,N2O,0.6,kg/TJ,118.23748166999998,kg -63ecf0c8-ec9d-3ac9-ba1f-cde0caa157ae,SESCO,II.1.1,Neuquén,AR-Q,annual,2012,naphtha combustion consumption by to the public,62.81802449999999,TJ,CO2,73300.0,kg/TJ,4604561.19585,kg -55f4d01a-8e27-3dc1-86f8-5d4475833d96,SESCO,II.1.1,Neuquén,AR-Q,annual,2012,naphtha combustion consumption by to the public,62.81802449999999,TJ,CH4,3.0,kg/TJ,188.4540735,kg -0d212542-100f-3121-90fe-0895f23de222,SESCO,II.1.1,Neuquén,AR-Q,annual,2012,naphtha combustion consumption by to the public,62.81802449999999,TJ,N2O,0.6,kg/TJ,37.6908147,kg -2b78a96c-3d25-3dd1-bf39-ef35d8936fc0,SESCO,II.1.1,Rio Negro,AR-R,annual,2012,naphtha combustion consumption by to the public,75.31515529999999,TJ,CO2,73300.0,kg/TJ,5520600.883489999,kg -c9ff3211-56bc-32ed-8489-1421a6bff12e,SESCO,II.1.1,Rio Negro,AR-R,annual,2012,naphtha combustion consumption by to the public,75.31515529999999,TJ,CH4,3.0,kg/TJ,225.94546589999996,kg -ffafd7a0-ea80-394a-b396-4fa0aa4e41a8,SESCO,II.1.1,Rio Negro,AR-R,annual,2012,naphtha combustion consumption by to the public,75.31515529999999,TJ,N2O,0.6,kg/TJ,45.18909317999999,kg -1238f98f-4c45-3e2a-ac53-0369f0510c5c,SESCO,II.1.1,Salta,AR-A,annual,2012,naphtha combustion consumption by to the public,92.36576194999999,TJ,CO2,73300.0,kg/TJ,6770410.350934999,kg -eea17f5e-8365-3541-bb0d-5e088b751b95,SESCO,II.1.1,Salta,AR-A,annual,2012,naphtha combustion consumption by to the public,92.36576194999999,TJ,CH4,3.0,kg/TJ,277.09728585,kg -ac2462e5-b78c-3616-a559-4219b9961968,SESCO,II.1.1,Salta,AR-A,annual,2012,naphtha combustion consumption by to the public,92.36576194999999,TJ,N2O,0.6,kg/TJ,55.419457169999994,kg -7fa0f71e-b653-32cc-8459-bc77df3d30fa,SESCO,II.1.1,San Juan,AR-J,annual,2012,naphtha combustion consumption by to the public,36.261621549999994,TJ,CO2,73300.0,kg/TJ,2657976.8596149995,kg -f03bc841-b0fe-311d-a35d-42846fccb660,SESCO,II.1.1,San Juan,AR-J,annual,2012,naphtha combustion consumption by to the public,36.261621549999994,TJ,CH4,3.0,kg/TJ,108.78486464999997,kg -5186dd53-2894-34f2-91fa-62a08df9596a,SESCO,II.1.1,San Juan,AR-J,annual,2012,naphtha combustion consumption by to the public,36.261621549999994,TJ,N2O,0.6,kg/TJ,21.756972929999996,kg -38139050-b6b0-3128-8c29-fc5657e76fc7,SESCO,II.1.1,San Luis,AR-D,annual,2012,naphtha combustion consumption by to the public,14.4248797,TJ,CO2,73300.0,kg/TJ,1057343.68201,kg -a3b74fee-9d0a-329b-9260-2a356a7c22e6,SESCO,II.1.1,San Luis,AR-D,annual,2012,naphtha combustion consumption by to the public,14.4248797,TJ,CH4,3.0,kg/TJ,43.2746391,kg -9cadeaa1-79e1-3ed4-a7dc-5a975e110fa0,SESCO,II.1.1,San Luis,AR-D,annual,2012,naphtha combustion consumption by to the public,14.4248797,TJ,N2O,0.6,kg/TJ,8.65492782,kg -f6925641-f836-33c9-82db-f61d2a98c379,SESCO,II.1.1,Santa Fe,AR-S,annual,2012,naphtha combustion consumption by to the public,1317.8157954499998,TJ,CO2,73300.0,kg/TJ,96595897.80648498,kg -6368aa95-2e91-3173-a93f-9030fa09a5f7,SESCO,II.1.1,Santa Fe,AR-S,annual,2012,naphtha combustion consumption by to the public,1317.8157954499998,TJ,CH4,3.0,kg/TJ,3953.4473863499993,kg -9d879d6c-bdc5-3046-b2f3-ab41830d0244,SESCO,II.1.1,Santa Fe,AR-S,annual,2012,naphtha combustion consumption by to the public,1317.8157954499998,TJ,N2O,0.6,kg/TJ,790.6894772699999,kg -68675aca-131c-3921-a455-29657e069d66,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2012,naphtha combustion consumption by to the public,122.17939579999998,TJ,CO2,73300.0,kg/TJ,8955749.71214,kg -9e09661c-e3df-359e-b95a-277c2355b7d0,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2012,naphtha combustion consumption by to the public,122.17939579999998,TJ,CH4,3.0,kg/TJ,366.53818739999997,kg -e6424395-847f-3c51-ba78-5c819b0346d1,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2012,naphtha combustion consumption by to the public,122.17939579999998,TJ,N2O,0.6,kg/TJ,73.30763747999998,kg -1764875b-0ebe-325b-9b58-00767c10e438,SESCO,II.1.1,Tucuman,AR-T,annual,2012,naphtha combustion consumption by to the public,268.85449745,TJ,CO2,73300.0,kg/TJ,19707034.663085,kg -4839df0e-e2da-30de-a8cd-99cbd9cab2bf,SESCO,II.1.1,Tucuman,AR-T,annual,2012,naphtha combustion consumption by to the public,268.85449745,TJ,CH4,3.0,kg/TJ,806.5634923499999,kg -9f4079e8-b079-3040-ae7a-37f6c9acecdf,SESCO,II.1.1,Tucuman,AR-T,annual,2012,naphtha combustion consumption by to the public,268.85449745,TJ,N2O,0.6,kg/TJ,161.31269847,kg -90910472-cd30-3191-b971-a64c648520cb,SESCO,II.5.1,Buenos Aires,AR-B,annual,2012,naphtha combustion consumption by agriculture machines,4.8526093,TJ,CO2,73300.0,kg/TJ,355696.26169,kg -0cc835df-3157-34a0-9414-d145397733db,SESCO,II.5.1,Buenos Aires,AR-B,annual,2012,naphtha combustion consumption by agriculture machines,4.8526093,TJ,CH4,3.0,kg/TJ,14.5578279,kg -b1a631ad-2601-3120-a991-6b123b65a3b1,SESCO,II.5.1,Buenos Aires,AR-B,annual,2012,naphtha combustion consumption by agriculture machines,4.8526093,TJ,N2O,0.6,kg/TJ,2.91156558,kg -a737197f-d701-3e04-9375-1f266c54560d,SESCO,II.5.1,Chubut,AR-U,annual,2012,naphtha combustion consumption by agriculture machines,8.575158899999998,TJ,CO2,73300.0,kg/TJ,628559.1473699999,kg -c893d62f-3e96-348a-98f5-03cf55290a3f,SESCO,II.5.1,Chubut,AR-U,annual,2012,naphtha combustion consumption by agriculture machines,8.575158899999998,TJ,CH4,3.0,kg/TJ,25.725476699999994,kg -cd68e0db-27cb-34f1-ae79-08610f0e1d30,SESCO,II.5.1,Chubut,AR-U,annual,2012,naphtha combustion consumption by agriculture machines,8.575158899999998,TJ,N2O,0.6,kg/TJ,5.145095339999998,kg -3267956d-8bd9-3b52-a493-01f2f7bcd294,SESCO,II.5.1,Corrientes,AR-W,annual,2012,naphtha combustion consumption by agriculture machines,0.7312150999999999,TJ,CO2,73300.0,kg/TJ,53598.06682999999,kg -76a0bbe0-0c1a-3a30-98bd-d9bbf574b3a0,SESCO,II.5.1,Corrientes,AR-W,annual,2012,naphtha combustion consumption by agriculture machines,0.7312150999999999,TJ,CH4,3.0,kg/TJ,2.1936452999999996,kg -e6a69d65-c440-3e9e-a26c-d1c7d92bca97,SESCO,II.5.1,Corrientes,AR-W,annual,2012,naphtha combustion consumption by agriculture machines,0.7312150999999999,TJ,N2O,0.6,kg/TJ,0.43872905999999995,kg -4aee5abf-7773-3342-bc09-1a8cee37db29,SESCO,II.5.1,Entre Rios,AR-E,annual,2012,naphtha combustion consumption by agriculture machines,7.013017549999999,TJ,CO2,73300.0,kg/TJ,514054.18641499995,kg -24aa0e37-0bdc-3754-baeb-04b7c117ea93,SESCO,II.5.1,Entre Rios,AR-E,annual,2012,naphtha combustion consumption by agriculture machines,7.013017549999999,TJ,CH4,3.0,kg/TJ,21.039052649999995,kg -7443fe5e-c5ea-32ef-b46f-92f42f384038,SESCO,II.5.1,Entre Rios,AR-E,annual,2012,naphtha combustion consumption by agriculture machines,7.013017549999999,TJ,N2O,0.6,kg/TJ,4.207810529999999,kg -dfb006f5-ba19-3c7d-8ab8-f35cc1ec1805,SESCO,II.5.1,Jujuy,AR-Y,annual,2012,naphtha combustion consumption by agriculture machines,0.5317928,TJ,CO2,73300.0,kg/TJ,38980.41224,kg -fc42ec21-fb4d-3ac0-bdef-915860e25e7d,SESCO,II.5.1,Jujuy,AR-Y,annual,2012,naphtha combustion consumption by agriculture machines,0.5317928,TJ,CH4,3.0,kg/TJ,1.5953784,kg -5eaa908d-eb89-3133-bf03-8fbc6f64450c,SESCO,II.5.1,Jujuy,AR-Y,annual,2012,naphtha combustion consumption by agriculture machines,0.5317928,TJ,N2O,0.6,kg/TJ,0.31907568,kg -543da18e-e31c-3bff-9eed-f5f7cbb5f967,SESCO,II.5.1,Salta,AR-A,annual,2012,naphtha combustion consumption by agriculture machines,0.1994223,TJ,CO2,73300.0,kg/TJ,14617.65459,kg -875335e9-0df3-3507-8ee2-981658542634,SESCO,II.5.1,Salta,AR-A,annual,2012,naphtha combustion consumption by agriculture machines,0.1994223,TJ,CH4,3.0,kg/TJ,0.5982669,kg -c2f57e9e-4370-3fd5-ade7-54177c4797cf,SESCO,II.5.1,Salta,AR-A,annual,2012,naphtha combustion consumption by agriculture machines,0.1994223,TJ,N2O,0.6,kg/TJ,0.11965337999999999,kg -c39f5f14-ce19-37dc-8371-77b7b3dfbbc0,SESCO,II.5.1,Santa Fe,AR-S,annual,2012,naphtha combustion consumption by agriculture machines,86.25014474999999,TJ,CO2,73300.0,kg/TJ,6322135.610175,kg -621e3c8e-5f79-3cc4-b2b8-d902b2126611,SESCO,II.5.1,Santa Fe,AR-S,annual,2012,naphtha combustion consumption by agriculture machines,86.25014474999999,TJ,CH4,3.0,kg/TJ,258.75043424999996,kg -e5986bdf-42c3-3667-ad14-e2428f550716,SESCO,II.5.1,Santa Fe,AR-S,annual,2012,naphtha combustion consumption by agriculture machines,86.25014474999999,TJ,N2O,0.6,kg/TJ,51.750086849999995,kg -83ad0df6-3f73-32ab-b77f-25ae4c7046ab,SESCO,II.5.1,Santiago del Estero,AR-G,annual,2012,naphtha combustion consumption by agriculture machines,0.49855574999999996,TJ,CO2,73300.0,kg/TJ,36544.136475,kg -a80735f5-602f-312f-9bc1-46e114c0cf90,SESCO,II.5.1,Santiago del Estero,AR-G,annual,2012,naphtha combustion consumption by agriculture machines,0.49855574999999996,TJ,CH4,3.0,kg/TJ,1.49566725,kg -4c5d3ae8-432f-344c-84be-70a21f80cc61,SESCO,II.5.1,Santiago del Estero,AR-G,annual,2012,naphtha combustion consumption by agriculture machines,0.49855574999999996,TJ,N2O,0.6,kg/TJ,0.29913344999999997,kg -5df79895-186f-382b-a979-7017e27eedc4,SESCO,II.5.1,Buenos Aires,AR-B,annual,2012,naphtha combustion consumption by agriculture machines,0.9971114999999999,TJ,CO2,73300.0,kg/TJ,73088.27295,kg -62deba08-a67e-3876-8540-66ef44896069,SESCO,II.5.1,Buenos Aires,AR-B,annual,2012,naphtha combustion consumption by agriculture machines,0.9971114999999999,TJ,CH4,3.0,kg/TJ,2.9913345,kg -d9d73afa-d06a-3e77-a6a3-fb5fba7a9e2a,SESCO,II.5.1,Buenos Aires,AR-B,annual,2012,naphtha combustion consumption by agriculture machines,0.9971114999999999,TJ,N2O,0.6,kg/TJ,0.5982668999999999,kg -fa897ab7-d788-3907-95a3-c93abdec1bae,SESCO,II.5.1,Santa Fe,AR-S,annual,2012,naphtha combustion consumption by agriculture machines,1.22977085,TJ,CO2,73300.0,kg/TJ,90142.203305,kg -31886207-5323-3090-a514-1ad3b5bbb7c5,SESCO,II.5.1,Santa Fe,AR-S,annual,2012,naphtha combustion consumption by agriculture machines,1.22977085,TJ,CH4,3.0,kg/TJ,3.68931255,kg -9c23e885-cb29-3a11-af5f-179f317c2fa1,SESCO,II.5.1,Santa Fe,AR-S,annual,2012,naphtha combustion consumption by agriculture machines,1.22977085,TJ,N2O,0.6,kg/TJ,0.7378625099999999,kg -4247b9c1-4bf4-301e-b2da-72cd76ea43a5,SESCO,II.1.1,Buenos Aires,AR-B,annual,2012,naphtha combustion consumption by to the public,2.35983055,TJ,CO2,73300.0,kg/TJ,172975.57931499998,kg -8d6558a0-f480-391c-9d3a-18aff2cd293f,SESCO,II.1.1,Buenos Aires,AR-B,annual,2012,naphtha combustion consumption by to the public,2.35983055,TJ,CH4,3.0,kg/TJ,7.07949165,kg -8c2917fc-0cdb-303c-8a96-f4a96f02be70,SESCO,II.1.1,Buenos Aires,AR-B,annual,2012,naphtha combustion consumption by to the public,2.35983055,TJ,N2O,0.6,kg/TJ,1.4158983299999999,kg -fbc748c8-aad1-3464-89df-e895eb9aa5d9,SESCO,II.1.1,Capital Federal,AR-C,annual,2012,naphtha combustion consumption by to the public,1.5289042999999998,TJ,CO2,73300.0,kg/TJ,112068.68518999999,kg -6a16cc56-06e9-3c82-8c8c-1e3029cfe90f,SESCO,II.1.1,Capital Federal,AR-C,annual,2012,naphtha combustion consumption by to the public,1.5289042999999998,TJ,CH4,3.0,kg/TJ,4.586712899999999,kg -1800a71a-e23a-385d-bccc-ff19558673f8,SESCO,II.1.1,Capital Federal,AR-C,annual,2012,naphtha combustion consumption by to the public,1.5289042999999998,TJ,N2O,0.6,kg/TJ,0.9173425799999998,kg -f2bf32f3-f542-3399-8c41-8b06bfd7aabc,SESCO,II.1.1,Córdoba,AR-X,annual,2012,naphtha combustion consumption by to the public,0.6647409999999999,TJ,CO2,73300.0,kg/TJ,48725.51529999999,kg -7647a4a2-ca97-3a9d-a322-ddb5d7afbf6b,SESCO,II.1.1,Córdoba,AR-X,annual,2012,naphtha combustion consumption by to the public,0.6647409999999999,TJ,CH4,3.0,kg/TJ,1.9942229999999999,kg -883e56a1-4fb3-3988-aaa0-f931801d466f,SESCO,II.1.1,Córdoba,AR-X,annual,2012,naphtha combustion consumption by to the public,0.6647409999999999,TJ,N2O,0.6,kg/TJ,0.39884459999999994,kg -66684f8f-7f99-34ba-b077-10d054c7ce56,SESCO,II.1.1,Buenos Aires,AR-B,annual,2012,naphtha combustion consumption by to the public,35610.9730592,TJ,CO2,73300.0,kg/TJ,2610284325.23936,kg -7cf75b80-74d3-318c-a27a-9b55ed40a519,SESCO,II.1.1,Buenos Aires,AR-B,annual,2012,naphtha combustion consumption by to the public,35610.9730592,TJ,CH4,3.0,kg/TJ,106832.9191776,kg -eabfb4bc-ec26-310c-bba5-cf3de6726a82,SESCO,II.1.1,Buenos Aires,AR-B,annual,2012,naphtha combustion consumption by to the public,35610.9730592,TJ,N2O,0.6,kg/TJ,21366.58383552,kg -e64942c4-7c8d-3ed3-b441-5b5b19497885,SESCO,II.1.1,Capital Federal,AR-C,annual,2012,naphtha combustion consumption by to the public,7434.031262349999,TJ,CO2,73300.0,kg/TJ,544914491.530255,kg -4f66eea2-9191-3045-af9f-5cd92ea1f754,SESCO,II.1.1,Capital Federal,AR-C,annual,2012,naphtha combustion consumption by to the public,7434.031262349999,TJ,CH4,3.0,kg/TJ,22302.09378705,kg -41f3022b-3884-3a9e-a4ad-dbf2a2041028,SESCO,II.1.1,Capital Federal,AR-C,annual,2012,naphtha combustion consumption by to the public,7434.031262349999,TJ,N2O,0.6,kg/TJ,4460.41875741,kg -c820c39e-c9da-38ea-a1d4-18738dbaf934,SESCO,II.1.1,Catamarca,AR-K,annual,2012,naphtha combustion consumption by to the public,579.9865225,TJ,CO2,73300.0,kg/TJ,42513012.099249996,kg -a266ad9d-ef2a-3057-bcee-ec113c4c5c0a,SESCO,II.1.1,Catamarca,AR-K,annual,2012,naphtha combustion consumption by to the public,579.9865225,TJ,CH4,3.0,kg/TJ,1739.9595675,kg -de76c2e6-99b0-3271-86e1-1dbbbdb21ee9,SESCO,II.1.1,Catamarca,AR-K,annual,2012,naphtha combustion consumption by to the public,579.9865225,TJ,N2O,0.6,kg/TJ,347.99191349999995,kg -18826192-81c1-3a2c-b5ff-91e896b78c8e,SESCO,II.1.1,Chaco,AR-H,annual,2012,naphtha combustion consumption by to the public,1910.0335523499998,TJ,CO2,73300.0,kg/TJ,140005459.38725498,kg -c1156e88-4b67-34fa-bff4-70cf18bc7ccc,SESCO,II.1.1,Chaco,AR-H,annual,2012,naphtha combustion consumption by to the public,1910.0335523499998,TJ,CH4,3.0,kg/TJ,5730.100657049999,kg -4aead638-ee0d-3796-9cf7-66e7550932d9,SESCO,II.1.1,Chaco,AR-H,annual,2012,naphtha combustion consumption by to the public,1910.0335523499998,TJ,N2O,0.6,kg/TJ,1146.0201314099997,kg -9bce20e8-ca7a-34ec-8a65-fd7cb8135f0a,SESCO,II.1.1,Chubut,AR-U,annual,2012,naphtha combustion consumption by to the public,3497.6344826499994,TJ,CO2,73300.0,kg/TJ,256376607.57824495,kg -d5bc35b1-65c2-3ddd-b39b-80329f66866e,SESCO,II.1.1,Chubut,AR-U,annual,2012,naphtha combustion consumption by to the public,3497.6344826499994,TJ,CH4,3.0,kg/TJ,10492.903447949999,kg -5d924c7e-5b42-3f44-8989-1f071e461209,SESCO,II.1.1,Chubut,AR-U,annual,2012,naphtha combustion consumption by to the public,3497.6344826499994,TJ,N2O,0.6,kg/TJ,2098.5806895899996,kg -9088c86e-8963-3362-8cf4-51b700d36ea0,SESCO,II.1.1,Corrientes,AR-W,annual,2012,naphtha combustion consumption by to the public,2151.9660393,TJ,CO2,73300.0,kg/TJ,157739110.68069,kg -45f6f72e-700c-345d-8ce4-9bc92ef4b07b,SESCO,II.1.1,Corrientes,AR-W,annual,2012,naphtha combustion consumption by to the public,2151.9660393,TJ,CH4,3.0,kg/TJ,6455.8981179,kg -7a2438a6-b02a-3ca0-baa2-6b7372878935,SESCO,II.1.1,Corrientes,AR-W,annual,2012,naphtha combustion consumption by to the public,2151.9660393,TJ,N2O,0.6,kg/TJ,1291.17962358,kg -4bc9c23a-50c2-31ee-a7c3-5461de594626,SESCO,II.1.1,Córdoba,AR-X,annual,2012,naphtha combustion consumption by to the public,8874.4252982,TJ,CO2,73300.0,kg/TJ,650495374.35806,kg -3cc33014-f36f-38cc-8dc1-37ecc4515b23,SESCO,II.1.1,Córdoba,AR-X,annual,2012,naphtha combustion consumption by to the public,8874.4252982,TJ,CH4,3.0,kg/TJ,26623.2758946,kg -91e9305e-f109-367d-aa0e-3445267577d4,SESCO,II.1.1,Córdoba,AR-X,annual,2012,naphtha combustion consumption by to the public,8874.4252982,TJ,N2O,0.6,kg/TJ,5324.655178919999,kg -fac6adba-978a-38f1-aca7-2bbaa987a13d,SESCO,II.1.1,Entre Rios,AR-E,annual,2012,naphtha combustion consumption by to the public,2557.0924417499996,TJ,CO2,73300.0,kg/TJ,187434875.98027498,kg -ffb8a22e-d4e5-3e94-a7a5-2e87cdff0341,SESCO,II.1.1,Entre Rios,AR-E,annual,2012,naphtha combustion consumption by to the public,2557.0924417499996,TJ,CH4,3.0,kg/TJ,7671.277325249999,kg -0dc65a55-bb08-36c8-9f7c-e464ef184ff9,SESCO,II.1.1,Entre Rios,AR-E,annual,2012,naphtha combustion consumption by to the public,2557.0924417499996,TJ,N2O,0.6,kg/TJ,1534.2554650499997,kg -61ae8140-7477-3704-9312-979e8451cd81,SESCO,II.1.1,Formosa,AR-P,annual,2012,naphtha combustion consumption by to the public,775.4536135499999,TJ,CO2,73300.0,kg/TJ,56840749.87321499,kg -b759e67b-fc66-3c8d-8f6d-526d751c19ab,SESCO,II.1.1,Formosa,AR-P,annual,2012,naphtha combustion consumption by to the public,775.4536135499999,TJ,CH4,3.0,kg/TJ,2326.36084065,kg -73813934-7adf-315e-bcd3-b9b19786c44a,SESCO,II.1.1,Formosa,AR-P,annual,2012,naphtha combustion consumption by to the public,775.4536135499999,TJ,N2O,0.6,kg/TJ,465.2721681299999,kg -6166e336-1c49-3385-8ef7-12a0ebc29257,SESCO,II.1.1,Jujuy,AR-Y,annual,2012,naphtha combustion consumption by to the public,934.2934754999999,TJ,CO2,73300.0,kg/TJ,68483711.75414999,kg -b1ab8a15-d8a1-3d9e-904e-e3d66d4d1c75,SESCO,II.1.1,Jujuy,AR-Y,annual,2012,naphtha combustion consumption by to the public,934.2934754999999,TJ,CH4,3.0,kg/TJ,2802.8804265,kg -61860e2b-16d5-3e00-a41d-e1ed50748dc3,SESCO,II.1.1,Jujuy,AR-Y,annual,2012,naphtha combustion consumption by to the public,934.2934754999999,TJ,N2O,0.6,kg/TJ,560.5760852999999,kg -a6006c85-7322-3d7a-bfd5-5dad8a6b533c,SESCO,II.1.1,La Pampa,AR-L,annual,2012,naphtha combustion consumption by to the public,1535.4519988499997,TJ,CO2,73300.0,kg/TJ,112548631.51570497,kg -49fede42-576d-3c7a-a018-2185f6ec94f7,SESCO,II.1.1,La Pampa,AR-L,annual,2012,naphtha combustion consumption by to the public,1535.4519988499997,TJ,CH4,3.0,kg/TJ,4606.355996549999,kg -56898f5b-24d1-3fdf-9be9-fbe67583e298,SESCO,II.1.1,La Pampa,AR-L,annual,2012,naphtha combustion consumption by to the public,1535.4519988499997,TJ,N2O,0.6,kg/TJ,921.2711993099998,kg -1e017e12-909c-34ff-87c4-a35b75f6ce10,SESCO,II.1.1,La Rioja,AR-F,annual,2012,naphtha combustion consumption by to the public,794.46520615,TJ,CO2,73300.0,kg/TJ,58234299.610795,kg -db3ba4ae-e612-3475-84ce-5fcc0976847f,SESCO,II.1.1,La Rioja,AR-F,annual,2012,naphtha combustion consumption by to the public,794.46520615,TJ,CH4,3.0,kg/TJ,2383.39561845,kg -8aaa5437-9612-338d-91c1-3d81b05e09d5,SESCO,II.1.1,La Rioja,AR-F,annual,2012,naphtha combustion consumption by to the public,794.46520615,TJ,N2O,0.6,kg/TJ,476.67912369,kg -c574e5c2-3709-36a6-89ff-1d19f51abf6b,SESCO,II.1.1,Mendoza,AR-M,annual,2012,naphtha combustion consumption by to the public,4509.7358922,TJ,CO2,73300.0,kg/TJ,330563640.89826,kg -c1aaf9d5-de04-32ba-9623-ff696777f6ff,SESCO,II.1.1,Mendoza,AR-M,annual,2012,naphtha combustion consumption by to the public,4509.7358922,TJ,CH4,3.0,kg/TJ,13529.207676600001,kg -dd0a9d3e-e29d-3d98-8fab-bdd9717f1952,SESCO,II.1.1,Mendoza,AR-M,annual,2012,naphtha combustion consumption by to the public,4509.7358922,TJ,N2O,0.6,kg/TJ,2705.8415353200003,kg -40c96b9a-e27a-3a67-b88d-ff8d1fe50696,SESCO,II.1.1,Misiones,AR-N,annual,2012,naphtha combustion consumption by to the public,2672.8903239499996,TJ,CO2,73300.0,kg/TJ,195922860.74553496,kg -e85cbef6-113c-374d-bd2d-e8c72638d5a1,SESCO,II.1.1,Misiones,AR-N,annual,2012,naphtha combustion consumption by to the public,2672.8903239499996,TJ,CH4,3.0,kg/TJ,8018.670971849999,kg -67997c52-9968-3b95-9d4f-85d802355a9c,SESCO,II.1.1,Misiones,AR-N,annual,2012,naphtha combustion consumption by to the public,2672.8903239499996,TJ,N2O,0.6,kg/TJ,1603.7341943699996,kg -4265307d-36f8-3bc7-b90f-f3d2ad2cde67,SESCO,II.1.1,Neuquén,AR-Q,annual,2012,naphtha combustion consumption by to the public,2783.37027815,TJ,CO2,73300.0,kg/TJ,204021041.388395,kg -fcbc6f49-fe85-36f0-9ef6-3dcee1642299,SESCO,II.1.1,Neuquén,AR-Q,annual,2012,naphtha combustion consumption by to the public,2783.37027815,TJ,CH4,3.0,kg/TJ,8350.11083445,kg -8fb913b1-7f9c-3e94-967d-a6d11cc40820,SESCO,II.1.1,Neuquén,AR-Q,annual,2012,naphtha combustion consumption by to the public,2783.37027815,TJ,N2O,0.6,kg/TJ,1670.02216689,kg -79799942-7c6d-32c3-ac45-90a52a4156c5,SESCO,II.1.1,Rio Negro,AR-R,annual,2012,naphtha combustion consumption by to the public,2686.7834108499997,TJ,CO2,73300.0,kg/TJ,196941224.01530498,kg -7e90228c-89a6-3258-ba44-dffcb83a1091,SESCO,II.1.1,Rio Negro,AR-R,annual,2012,naphtha combustion consumption by to the public,2686.7834108499997,TJ,CH4,3.0,kg/TJ,8060.350232549999,kg -8e4a1ac2-e591-3a78-a187-add70082eff2,SESCO,II.1.1,Rio Negro,AR-R,annual,2012,naphtha combustion consumption by to the public,2686.7834108499997,TJ,N2O,0.6,kg/TJ,1612.0700465099997,kg -41fac4c3-cf11-3b40-b2a8-01c9a1eca9df,SESCO,II.1.1,Salta,AR-A,annual,2012,naphtha combustion consumption by to the public,2092.9370384999997,TJ,CO2,73300.0,kg/TJ,153412284.92204997,kg -f94a8e2a-63c9-3f2a-bd0a-d75fdf84d544,SESCO,II.1.1,Salta,AR-A,annual,2012,naphtha combustion consumption by to the public,2092.9370384999997,TJ,CH4,3.0,kg/TJ,6278.811115499999,kg -f12647c0-2ea2-3e3c-aef7-404ef8a18a3b,SESCO,II.1.1,Salta,AR-A,annual,2012,naphtha combustion consumption by to the public,2092.9370384999997,TJ,N2O,0.6,kg/TJ,1255.7622230999998,kg -46cac5f1-f619-33b2-93f0-64292e010aa8,SESCO,II.1.1,San Juan,AR-J,annual,2012,naphtha combustion consumption by to the public,1348.2609332499999,TJ,CO2,73300.0,kg/TJ,98827526.407225,kg -1b910c5a-51f1-3565-bb6e-4c420677d454,SESCO,II.1.1,San Juan,AR-J,annual,2012,naphtha combustion consumption by to the public,1348.2609332499999,TJ,CH4,3.0,kg/TJ,4044.78279975,kg -794661f2-12e0-395b-89ef-78340045976e,SESCO,II.1.1,San Juan,AR-J,annual,2012,naphtha combustion consumption by to the public,1348.2609332499999,TJ,N2O,0.6,kg/TJ,808.9565599499999,kg -f82628e9-90c6-399d-a9fe-d214641fbc0d,SESCO,II.1.1,San Luis,AR-D,annual,2012,naphtha combustion consumption by to the public,1115.0365534,TJ,CO2,73300.0,kg/TJ,81732179.36422,kg -b7a5713c-fb40-3ff4-b4c4-1407572678f3,SESCO,II.1.1,San Luis,AR-D,annual,2012,naphtha combustion consumption by to the public,1115.0365534,TJ,CH4,3.0,kg/TJ,3345.1096602,kg -ea6210a7-f0c6-3870-9e1b-51cafa285473,SESCO,II.1.1,San Luis,AR-D,annual,2012,naphtha combustion consumption by to the public,1115.0365534,TJ,N2O,0.6,kg/TJ,669.02193204,kg -a8403ddc-f163-3b3b-8134-358b54e2f7ea,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2012,naphtha combustion consumption by to the public,2493.27730575,TJ,CO2,73300.0,kg/TJ,182757226.511475,kg -ecd56a2d-919a-37ef-92d9-a50869e3cdfd,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2012,naphtha combustion consumption by to the public,2493.27730575,TJ,CH4,3.0,kg/TJ,7479.83191725,kg -d06e9484-4143-354e-b1a2-57c07fcd3d70,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2012,naphtha combustion consumption by to the public,2493.27730575,TJ,N2O,0.6,kg/TJ,1495.96638345,kg -3d0bf536-eece-32a9-b74b-936168feaad0,SESCO,II.1.1,Santa Fe,AR-S,annual,2012,naphtha combustion consumption by to the public,6459.1553488,TJ,CO2,73300.0,kg/TJ,473456087.06704,kg -8d4ce2a8-8160-30ee-b679-a5814fb24424,SESCO,II.1.1,Santa Fe,AR-S,annual,2012,naphtha combustion consumption by to the public,6459.1553488,TJ,CH4,3.0,kg/TJ,19377.4660464,kg -f5148bcc-70bf-3f41-a0c1-d6850ca52f28,SESCO,II.1.1,Santa Fe,AR-S,annual,2012,naphtha combustion consumption by to the public,6459.1553488,TJ,N2O,0.6,kg/TJ,3875.49320928,kg -840c6541-bca7-38e8-8809-6035937ff05b,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2012,naphtha combustion consumption by to the public,945.7934947999998,TJ,CO2,73300.0,kg/TJ,69326663.16883999,kg -7ba39b8f-40ee-35a5-9826-1716d5e7223f,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2012,naphtha combustion consumption by to the public,945.7934947999998,TJ,CH4,3.0,kg/TJ,2837.3804843999997,kg -e9e181ab-119f-3861-ac95-e3387771d395,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2012,naphtha combustion consumption by to the public,945.7934947999998,TJ,N2O,0.6,kg/TJ,567.4760968799999,kg -c41b5464-f9ca-35eb-ad72-8339989a2a38,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2012,naphtha combustion consumption by to the public,1831.3614549999998,TJ,CO2,73300.0,kg/TJ,134238794.6515,kg -0f706bd2-da61-3451-844b-e2e7b03b07e2,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2012,naphtha combustion consumption by to the public,1831.3614549999998,TJ,CH4,3.0,kg/TJ,5494.084364999999,kg -0fc3daec-0b7b-39e5-bdf3-ba76dd85f2cb,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2012,naphtha combustion consumption by to the public,1831.3614549999998,TJ,N2O,0.6,kg/TJ,1098.8168729999998,kg -13ef2805-64b9-3fb7-a3ca-9d1f8c98c735,SESCO,II.1.1,Tucuman,AR-T,annual,2012,naphtha combustion consumption by to the public,1777.4509599,TJ,CO2,73300.0,kg/TJ,130287155.36067,kg -511d189d-2790-39b0-9bd7-38d005840624,SESCO,II.1.1,Tucuman,AR-T,annual,2012,naphtha combustion consumption by to the public,1777.4509599,TJ,CH4,3.0,kg/TJ,5332.3528797,kg -f9849b3d-3b09-3df2-b3ac-51e73d035dde,SESCO,II.1.1,Tucuman,AR-T,annual,2012,naphtha combustion consumption by to the public,1777.4509599,TJ,N2O,0.6,kg/TJ,1066.47057594,kg -cec512e6-5e42-3038-9fdb-a6796565ff78,SESCO,II.1.1,Buenos Aires,AR-B,annual,2012,naphtha combustion consumption by to the public,13920.008910499999,TJ,CO2,73300.0,kg/TJ,1020336653.1396499,kg -304b868d-d465-3a00-9c6b-27501bb2f421,SESCO,II.1.1,Buenos Aires,AR-B,annual,2012,naphtha combustion consumption by to the public,13920.008910499999,TJ,CH4,3.0,kg/TJ,41760.026731499995,kg -6e31451a-e105-3ad3-a7cb-cf902b6283a6,SESCO,II.1.1,Buenos Aires,AR-B,annual,2012,naphtha combustion consumption by to the public,13920.008910499999,TJ,N2O,0.6,kg/TJ,8352.005346299999,kg -4a11ca94-4afd-3567-b214-8117e065b8fd,SESCO,II.1.1,Capital Federal,AR-C,annual,2012,naphtha combustion consumption by to the public,2957.4327089999997,TJ,CO2,73300.0,kg/TJ,216779817.56969997,kg -609b9dae-cc6c-3279-8cfa-996ce19c8617,SESCO,II.1.1,Capital Federal,AR-C,annual,2012,naphtha combustion consumption by to the public,2957.4327089999997,TJ,CH4,3.0,kg/TJ,8872.298126999998,kg -1e5d6108-9be9-36a7-9635-ba04b401062f,SESCO,II.1.1,Capital Federal,AR-C,annual,2012,naphtha combustion consumption by to the public,2957.4327089999997,TJ,N2O,0.6,kg/TJ,1774.4596253999998,kg -710b0efb-ea85-3eb5-9859-523f768bcebd,SESCO,II.1.1,Catamarca,AR-K,annual,2012,naphtha combustion consumption by to the public,209.99168189999997,TJ,CO2,73300.0,kg/TJ,15392390.283269998,kg -f839b8f9-e6cc-330a-9101-a11a43cd6cde,SESCO,II.1.1,Catamarca,AR-K,annual,2012,naphtha combustion consumption by to the public,209.99168189999997,TJ,CH4,3.0,kg/TJ,629.9750456999999,kg -a0c7b6d4-4e24-3440-b664-7821d9393b98,SESCO,II.1.1,Catamarca,AR-K,annual,2012,naphtha combustion consumption by to the public,209.99168189999997,TJ,N2O,0.6,kg/TJ,125.99500913999998,kg -8de14cbb-b049-3bb4-9b2f-3c068e60ab98,SESCO,II.1.1,Chaco,AR-H,annual,2012,naphtha combustion consumption by to the public,780.1732746499999,TJ,CO2,73300.0,kg/TJ,57186701.031844996,kg -05c10a50-8c53-3066-9bff-e26dde01d961,SESCO,II.1.1,Chaco,AR-H,annual,2012,naphtha combustion consumption by to the public,780.1732746499999,TJ,CH4,3.0,kg/TJ,2340.5198239499996,kg -1e63784a-b458-3643-b78d-6709ee625507,SESCO,II.1.1,Chaco,AR-H,annual,2012,naphtha combustion consumption by to the public,780.1732746499999,TJ,N2O,0.6,kg/TJ,468.10396478999996,kg -2a282e9e-d222-3020-9669-5a0205e6e702,SESCO,II.1.1,Chubut,AR-U,annual,2012,naphtha combustion consumption by to the public,1009.1433120999999,TJ,CO2,73300.0,kg/TJ,73970204.77692999,kg -05a30a85-ac59-34ef-8cd2-f5f5c42021b1,SESCO,II.1.1,Chubut,AR-U,annual,2012,naphtha combustion consumption by to the public,1009.1433120999999,TJ,CH4,3.0,kg/TJ,3027.4299362999996,kg -240b1d59-a420-3155-a7b8-a3616b6e7c7c,SESCO,II.1.1,Chubut,AR-U,annual,2012,naphtha combustion consumption by to the public,1009.1433120999999,TJ,N2O,0.6,kg/TJ,605.4859872599999,kg -bf452765-4702-3442-8283-41692551105b,SESCO,II.1.1,Corrientes,AR-W,annual,2012,naphtha combustion consumption by to the public,695.81764175,TJ,CO2,73300.0,kg/TJ,51003433.140275,kg -737a8a0b-c6a8-38f8-9516-997a0372ae0b,SESCO,II.1.1,Corrientes,AR-W,annual,2012,naphtha combustion consumption by to the public,695.81764175,TJ,CH4,3.0,kg/TJ,2087.45292525,kg -3b720467-1ab1-30f9-b528-ace58418c80d,SESCO,II.1.1,Corrientes,AR-W,annual,2012,naphtha combustion consumption by to the public,695.81764175,TJ,N2O,0.6,kg/TJ,417.49058505,kg -daf372d2-6430-390e-acac-60e0377427f8,SESCO,II.1.1,Córdoba,AR-X,annual,2012,naphtha combustion consumption by to the public,3547.9886133999994,TJ,CO2,73300.0,kg/TJ,260067565.36221996,kg -9ba067fc-9377-3189-8b9c-2346f95fd948,SESCO,II.1.1,Córdoba,AR-X,annual,2012,naphtha combustion consumption by to the public,3547.9886133999994,TJ,CH4,3.0,kg/TJ,10643.965840199999,kg -fcdf1e59-60d4-3547-ae1c-74f6a88e28a7,SESCO,II.1.1,Córdoba,AR-X,annual,2012,naphtha combustion consumption by to the public,3547.9886133999994,TJ,N2O,0.6,kg/TJ,2128.7931680399997,kg -32c4d68e-0a33-3f7c-8fad-005d95d5e687,SESCO,II.1.1,Entre Rios,AR-E,annual,2012,naphtha combustion consumption by to the public,1143.2880458999998,TJ,CO2,73300.0,kg/TJ,83803013.76446998,kg -2531e910-ae69-3e1c-b5bf-fee200ef63cc,SESCO,II.1.1,Entre Rios,AR-E,annual,2012,naphtha combustion consumption by to the public,1143.2880458999998,TJ,CH4,3.0,kg/TJ,3429.8641376999994,kg -1d8666d5-77ad-3268-93a1-6f0a9fbb723e,SESCO,II.1.1,Entre Rios,AR-E,annual,2012,naphtha combustion consumption by to the public,1143.2880458999998,TJ,N2O,0.6,kg/TJ,685.9728275399999,kg -e55682d3-e8e6-3439-8d5b-8fec2982fb5c,SESCO,II.1.1,Formosa,AR-P,annual,2012,naphtha combustion consumption by to the public,238.07698914999997,TJ,CO2,73300.0,kg/TJ,17451043.304695,kg -51d02708-bd4e-33ee-8235-5f50d58fd367,SESCO,II.1.1,Formosa,AR-P,annual,2012,naphtha combustion consumption by to the public,238.07698914999997,TJ,CH4,3.0,kg/TJ,714.23096745,kg -b1c4389e-4d6a-3895-86c1-cab312a969f2,SESCO,II.1.1,Formosa,AR-P,annual,2012,naphtha combustion consumption by to the public,238.07698914999997,TJ,N2O,0.6,kg/TJ,142.84619349,kg -5de859fc-d4ab-3911-a157-2df5bb7f3672,SESCO,II.1.1,Jujuy,AR-Y,annual,2012,naphtha combustion consumption by to the public,303.02218485,TJ,CO2,73300.0,kg/TJ,22211526.149504997,kg -59f43670-5bb1-3a15-92f9-5ef76126136e,SESCO,II.1.1,Jujuy,AR-Y,annual,2012,naphtha combustion consumption by to the public,303.02218485,TJ,CH4,3.0,kg/TJ,909.0665545499999,kg -d93a5c72-c459-32b8-96cc-c785fc927c18,SESCO,II.1.1,Jujuy,AR-Y,annual,2012,naphtha combustion consumption by to the public,303.02218485,TJ,N2O,0.6,kg/TJ,181.81331090999998,kg -85be9818-7ddc-3a57-b40f-c6b67eff18e4,SESCO,II.1.1,La Pampa,AR-L,annual,2012,naphtha combustion consumption by to the public,579.68738905,TJ,CO2,73300.0,kg/TJ,42491085.617364995,kg -25be45da-745e-34a0-9a1b-5b924bae72c3,SESCO,II.1.1,La Pampa,AR-L,annual,2012,naphtha combustion consumption by to the public,579.68738905,TJ,CH4,3.0,kg/TJ,1739.0621671499998,kg -73c20acf-2e8e-305a-87ae-7fb8379c0934,SESCO,II.1.1,La Pampa,AR-L,annual,2012,naphtha combustion consumption by to the public,579.68738905,TJ,N2O,0.6,kg/TJ,347.81243343,kg -1c58b7ff-16b9-3fb1-9ab6-089f6454bb47,SESCO,II.1.1,La Rioja,AR-F,annual,2012,naphtha combustion consumption by to the public,310.13491354999996,TJ,CO2,73300.0,kg/TJ,22732889.163214996,kg -ad68f062-f2a2-3072-9c1f-a4069ad19b69,SESCO,II.1.1,La Rioja,AR-F,annual,2012,naphtha combustion consumption by to the public,310.13491354999996,TJ,CH4,3.0,kg/TJ,930.4047406499999,kg -ad8c7349-babb-377b-b2a5-b4e789e5d52c,SESCO,II.1.1,La Rioja,AR-F,annual,2012,naphtha combustion consumption by to the public,310.13491354999996,TJ,N2O,0.6,kg/TJ,186.08094812999997,kg -b32f94b1-8fa0-3712-905d-0d4bf90ffe08,SESCO,II.1.1,Mendoza,AR-M,annual,2012,naphtha combustion consumption by to the public,1739.4277746999999,TJ,CO2,73300.0,kg/TJ,127500055.88551,kg -8f20abfe-2000-3a87-b48a-c7b1eee481dd,SESCO,II.1.1,Mendoza,AR-M,annual,2012,naphtha combustion consumption by to the public,1739.4277746999999,TJ,CH4,3.0,kg/TJ,5218.2833241,kg -05d60818-2883-3a96-b2c2-aeea870acf51,SESCO,II.1.1,Mendoza,AR-M,annual,2012,naphtha combustion consumption by to the public,1739.4277746999999,TJ,N2O,0.6,kg/TJ,1043.6566648199998,kg -260bd29a-fafa-32b0-89e8-c317fcf0a2cc,SESCO,II.1.1,Misiones,AR-N,annual,2012,naphtha combustion consumption by to the public,883.4407889999999,TJ,CO2,73300.0,kg/TJ,64756209.833699994,kg -b0bedea3-6236-3650-b9fb-eb250d269c6a,SESCO,II.1.1,Misiones,AR-N,annual,2012,naphtha combustion consumption by to the public,883.4407889999999,TJ,CH4,3.0,kg/TJ,2650.3223669999998,kg -5be4ffae-6cc4-3677-8e38-df0f1616d66d,SESCO,II.1.1,Misiones,AR-N,annual,2012,naphtha combustion consumption by to the public,883.4407889999999,TJ,N2O,0.6,kg/TJ,530.0644733999999,kg -8184e2de-1d35-3596-9f9f-beae14ab43ac,SESCO,II.1.1,Neuquén,AR-Q,annual,2012,naphtha combustion consumption by to the public,904.1474711499999,TJ,CO2,73300.0,kg/TJ,66274009.63529499,kg -d0bfcd57-45c2-3045-bd34-ba72524acb44,SESCO,II.1.1,Neuquén,AR-Q,annual,2012,naphtha combustion consumption by to the public,904.1474711499999,TJ,CH4,3.0,kg/TJ,2712.4424134499995,kg -698b3b7b-88c7-3372-9721-da3e268c5977,SESCO,II.1.1,Neuquén,AR-Q,annual,2012,naphtha combustion consumption by to the public,904.1474711499999,TJ,N2O,0.6,kg/TJ,542.48848269,kg -a942685d-44b6-3336-bc30-19cb8a791fd3,SESCO,II.1.1,Rio Negro,AR-R,annual,2012,naphtha combustion consumption by to the public,864.8612780499999,TJ,CO2,73300.0,kg/TJ,63394331.68106499,kg -46f4e1f0-6bd0-3461-8f85-d0a39af620f8,SESCO,II.1.1,Rio Negro,AR-R,annual,2012,naphtha combustion consumption by to the public,864.8612780499999,TJ,CH4,3.0,kg/TJ,2594.58383415,kg -675a6a82-d49e-3ac2-ba54-8d14be3605bb,SESCO,II.1.1,Rio Negro,AR-R,annual,2012,naphtha combustion consumption by to the public,864.8612780499999,TJ,N2O,0.6,kg/TJ,518.9167668299999,kg -62978633-eb19-3385-98a0-687674f0510d,SESCO,II.1.1,Salta,AR-A,annual,2012,naphtha combustion consumption by to the public,766.3798988999998,TJ,CO2,73300.0,kg/TJ,56175646.58936999,kg -0917caf4-b2c1-303d-8e94-97a2d82f6b1e,SESCO,II.1.1,Salta,AR-A,annual,2012,naphtha combustion consumption by to the public,766.3798988999998,TJ,CH4,3.0,kg/TJ,2299.1396966999996,kg -aca71d1f-71a6-3a2c-bba0-14e9f0727524,SESCO,II.1.1,Salta,AR-A,annual,2012,naphtha combustion consumption by to the public,766.3798988999998,TJ,N2O,0.6,kg/TJ,459.8279393399999,kg -c87978cd-e946-384e-a48a-9c7fb9ffe26e,SESCO,II.1.1,San Juan,AR-J,annual,2012,naphtha combustion consumption by to the public,555.1584461499999,TJ,CO2,73300.0,kg/TJ,40693114.102795,kg -2c16d117-a66a-32a5-97a7-b574d95d6509,SESCO,II.1.1,San Juan,AR-J,annual,2012,naphtha combustion consumption by to the public,555.1584461499999,TJ,CH4,3.0,kg/TJ,1665.4753384499998,kg -d33334a4-6e54-3985-ad6c-97e497e379fe,SESCO,II.1.1,San Juan,AR-J,annual,2012,naphtha combustion consumption by to the public,555.1584461499999,TJ,N2O,0.6,kg/TJ,333.09506768999995,kg -17dc1f37-ff3a-361a-b00c-3baf027ced9c,SESCO,II.1.1,San Luis,AR-D,annual,2012,naphtha combustion consumption by to the public,522.9517447,TJ,CO2,73300.0,kg/TJ,38332362.88651,kg -0f39f51f-d665-3082-9272-2dc7df7aa9ef,SESCO,II.1.1,San Luis,AR-D,annual,2012,naphtha combustion consumption by to the public,522.9517447,TJ,CH4,3.0,kg/TJ,1568.8552341,kg -ec9a6950-e41c-37c8-83d4-a53060e92996,SESCO,II.1.1,San Luis,AR-D,annual,2012,naphtha combustion consumption by to the public,522.9517447,TJ,N2O,0.6,kg/TJ,313.77104682,kg -7cacd442-dc1a-3944-9858-5da1b51a2ae0,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2012,naphtha combustion consumption by to the public,533.2552301999999,TJ,CO2,73300.0,kg/TJ,39087608.37365999,kg -a0c7b4ee-94ff-397d-9002-1b92f06be037,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2012,naphtha combustion consumption by to the public,533.2552301999999,TJ,CH4,3.0,kg/TJ,1599.7656905999997,kg -d5e56413-f684-33ab-8f71-bf1017ab5ed0,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2012,naphtha combustion consumption by to the public,533.2552301999999,TJ,N2O,0.6,kg/TJ,319.95313811999995,kg -4a39b670-da22-3e68-805a-5c459576c50d,SESCO,II.1.1,Santa Fe,AR-S,annual,2012,naphtha combustion consumption by to the public,2942.5425105999993,TJ,CO2,73300.0,kg/TJ,215688366.02697995,kg -f1e40f8c-57cc-3509-9e6a-4d10dae8cb23,SESCO,II.1.1,Santa Fe,AR-S,annual,2012,naphtha combustion consumption by to the public,2942.5425105999993,TJ,CH4,3.0,kg/TJ,8827.627531799997,kg -25aa9e5c-4cff-32d8-8c1a-c46ca0472f05,SESCO,II.1.1,Santa Fe,AR-S,annual,2012,naphtha combustion consumption by to the public,2942.5425105999993,TJ,N2O,0.6,kg/TJ,1765.5255063599996,kg -4ce6b53b-6a9f-33e5-a54d-6178dbcf93a0,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2012,naphtha combustion consumption by to the public,545.98502035,TJ,CO2,73300.0,kg/TJ,40020701.991655,kg -e536e24d-f2de-3aa5-a3d8-fb1cbf79832b,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2012,naphtha combustion consumption by to the public,545.98502035,TJ,CH4,3.0,kg/TJ,1637.95506105,kg -7477b70b-5fda-3a51-8f3e-1dcf9eae6178,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2012,naphtha combustion consumption by to the public,545.98502035,TJ,N2O,0.6,kg/TJ,327.59101221,kg -96e6dc5f-5cfd-39da-82c3-455cd5f6c916,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2012,naphtha combustion consumption by to the public,42.609898099999995,TJ,CO2,73300.0,kg/TJ,3123305.5307299998,kg -91861c96-d9d3-387e-bc6f-e86c3ecc12bb,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2012,naphtha combustion consumption by to the public,42.609898099999995,TJ,CH4,3.0,kg/TJ,127.82969429999999,kg -5ed15a04-6b7d-3cfb-93c5-4e82bf207017,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2012,naphtha combustion consumption by to the public,42.609898099999995,TJ,N2O,0.6,kg/TJ,25.565938859999996,kg -c48efe98-e656-3948-9a3f-9d807c9e35d3,SESCO,II.1.1,Tucuman,AR-T,annual,2012,naphtha combustion consumption by to the public,749.9607962,TJ,CO2,73300.0,kg/TJ,54972126.36146,kg -a9581e46-61aa-3e3d-8dda-acf5e0361f42,SESCO,II.1.1,Tucuman,AR-T,annual,2012,naphtha combustion consumption by to the public,749.9607962,TJ,CH4,3.0,kg/TJ,2249.8823886,kg -1b811242-a8e6-3475-8540-6119891a636f,SESCO,II.1.1,Tucuman,AR-T,annual,2012,naphtha combustion consumption by to the public,749.9607962,TJ,N2O,0.6,kg/TJ,449.97647772,kg -b131acfc-1a5e-3ab7-9573-f6f51bc31efe,SESCO,II.1.1,Buenos Aires,AR-B,annual,2012,naphtha combustion consumption by freight transport,10.53614485,TJ,CO2,73300.0,kg/TJ,772299.4175049999,kg -731bcf58-54f9-30e0-bf18-6514775a4484,SESCO,II.1.1,Buenos Aires,AR-B,annual,2012,naphtha combustion consumption by freight transport,10.53614485,TJ,CH4,3.0,kg/TJ,31.60843455,kg -d38fc8e4-a9d1-330e-949e-f42deb6cb637,SESCO,II.1.1,Buenos Aires,AR-B,annual,2012,naphtha combustion consumption by freight transport,10.53614485,TJ,N2O,0.6,kg/TJ,6.3216869099999995,kg -a356c05c-a89d-389b-abad-cfa549ed6060,SESCO,II.1.1,Capital Federal,AR-C,annual,2013,naphtha combustion consumption by to the public,35.4622191,TJ,CO2,73300.0,kg/TJ,2599380.66003,kg -cc123979-1c77-3eb4-8e73-7df856262c35,SESCO,II.1.1,Capital Federal,AR-C,annual,2013,naphtha combustion consumption by to the public,35.4622191,TJ,CH4,3.0,kg/TJ,106.3866573,kg -684cff33-4d27-3e3a-bc60-3830e24f2ff4,SESCO,II.1.1,Capital Federal,AR-C,annual,2013,naphtha combustion consumption by to the public,35.4622191,TJ,N2O,0.6,kg/TJ,21.27733146,kg -a713ea85-bb1e-3b61-af39-91ff079e243c,SESCO,II.1.1,Capital Federal,AR-C,annual,2013,naphtha combustion consumption by to the public,5.797637999999999,TJ,CO2,73300.0,kg/TJ,424966.86539999995,kg -65dd29f1-f8d0-3b98-8c22-b71f25e392cf,SESCO,II.1.1,Capital Federal,AR-C,annual,2013,naphtha combustion consumption by to the public,5.797637999999999,TJ,CH4,3.0,kg/TJ,17.392913999999998,kg -fd95fcaa-f9ba-3b2a-85bd-b38a970951b2,SESCO,II.1.1,Capital Federal,AR-C,annual,2013,naphtha combustion consumption by to the public,5.797637999999999,TJ,N2O,0.6,kg/TJ,3.4785827999999994,kg -5d54a3c6-89c8-3146-90d7-4ccc03a60bae,SESCO,II.5.1,Buenos Aires,AR-B,annual,2013,naphtha combustion consumption by agriculture machines,4.844892821999999,TJ,CO2,73300.0,kg/TJ,355130.64385259995,kg -461cb88c-504d-3af2-8552-5f1cf4f3be9b,SESCO,II.5.1,Buenos Aires,AR-B,annual,2013,naphtha combustion consumption by agriculture machines,4.844892821999999,TJ,CH4,3.0,kg/TJ,14.534678465999999,kg -61bbc6b0-2d56-35bc-b215-279c301ff366,SESCO,II.5.1,Buenos Aires,AR-B,annual,2013,naphtha combustion consumption by agriculture machines,4.844892821999999,TJ,N2O,0.6,kg/TJ,2.9069356931999994,kg -8504ccec-b341-37a4-8f1e-0a59b8fe89f4,SESCO,II.5.1,Córdoba,AR-X,annual,2013,naphtha combustion consumption by agriculture machines,5.385361519999999,TJ,CO2,73300.0,kg/TJ,394746.9994159999,kg -c3470097-1708-3fb0-95c9-f38acf11f49c,SESCO,II.5.1,Córdoba,AR-X,annual,2013,naphtha combustion consumption by agriculture machines,5.385361519999999,TJ,CH4,3.0,kg/TJ,16.156084559999996,kg -59bc4c72-b6d9-3f72-a304-f086e529e841,SESCO,II.5.1,Córdoba,AR-X,annual,2013,naphtha combustion consumption by agriculture machines,5.385361519999999,TJ,N2O,0.6,kg/TJ,3.2312169119999994,kg -61604b07-672f-3313-9dfc-3e117e426511,SESCO,II.5.1,Santa Fe,AR-S,annual,2013,naphtha combustion consumption by agriculture machines,16.51038466,TJ,CO2,73300.0,kg/TJ,1210211.195578,kg -13b922ca-2eb5-31f0-ba09-988829725ddf,SESCO,II.5.1,Santa Fe,AR-S,annual,2013,naphtha combustion consumption by agriculture machines,16.51038466,TJ,CH4,3.0,kg/TJ,49.53115398,kg -db564177-ac04-3f99-86a9-9f0de3ee3c85,SESCO,II.5.1,Santa Fe,AR-S,annual,2013,naphtha combustion consumption by agriculture machines,16.51038466,TJ,N2O,0.6,kg/TJ,9.906230796,kg -cb76ad15-66cc-3acb-aa2e-4aceeb436c51,SESCO,II.5.1,Buenos Aires,AR-B,annual,2013,naphtha combustion consumption by agriculture machines,0.2254637,TJ,CO2,73300.0,kg/TJ,16526.48921,kg -f1c8e074-71b3-3eb0-9a15-7cdadbb39864,SESCO,II.5.1,Buenos Aires,AR-B,annual,2013,naphtha combustion consumption by agriculture machines,0.2254637,TJ,CH4,3.0,kg/TJ,0.6763911,kg -c888f8be-a527-3182-8972-5e359df71d05,SESCO,II.5.1,Buenos Aires,AR-B,annual,2013,naphtha combustion consumption by agriculture machines,0.2254637,TJ,N2O,0.6,kg/TJ,0.13527821999999998,kg -4499752c-e884-3182-9f47-2ef8022e4b96,SESCO,II.5.1,Capital Federal,AR-C,annual,2013,naphtha combustion consumption by agriculture machines,0.027377734999999997,TJ,CO2,73300.0,kg/TJ,2006.7879754999997,kg -36a539f5-8df8-3e14-9a66-449a415f256b,SESCO,II.5.1,Capital Federal,AR-C,annual,2013,naphtha combustion consumption by agriculture machines,0.027377734999999997,TJ,CH4,3.0,kg/TJ,0.08213320499999999,kg -3a22a5af-5d35-391a-b57c-ec55312ca8c4,SESCO,II.5.1,Capital Federal,AR-C,annual,2013,naphtha combustion consumption by agriculture machines,0.027377734999999997,TJ,N2O,0.6,kg/TJ,0.016426641,kg -6a45ca9a-3acf-35a0-b92d-06a7e089c9ce,SESCO,II.5.1,Córdoba,AR-X,annual,2013,naphtha combustion consumption by agriculture machines,2.7893080599999998,TJ,CO2,73300.0,kg/TJ,204456.280798,kg -1575e8c4-1c76-3bfe-baf0-3b52eda07e7f,SESCO,II.5.1,Córdoba,AR-X,annual,2013,naphtha combustion consumption by agriculture machines,2.7893080599999998,TJ,CH4,3.0,kg/TJ,8.36792418,kg -60a50714-17b1-3b24-a78f-ec75313be26c,SESCO,II.5.1,Córdoba,AR-X,annual,2013,naphtha combustion consumption by agriculture machines,2.7893080599999998,TJ,N2O,0.6,kg/TJ,1.6735848359999999,kg -3e3e1529-e873-3732-95b9-987d3cb886ad,SESCO,II.5.1,Santa Fe,AR-S,annual,2013,naphtha combustion consumption by agriculture machines,1.2271667099999999,TJ,CO2,73300.0,kg/TJ,89951.31984299999,kg -38390408-34a6-3ea9-b037-bade7cd9fc40,SESCO,II.5.1,Santa Fe,AR-S,annual,2013,naphtha combustion consumption by agriculture machines,1.2271667099999999,TJ,CH4,3.0,kg/TJ,3.68150013,kg -a0a5e46c-45ed-3a24-ae7c-afcd48cbfa2a,SESCO,II.5.1,Santa Fe,AR-S,annual,2013,naphtha combustion consumption by agriculture machines,1.2271667099999999,TJ,N2O,0.6,kg/TJ,0.7363000259999999,kg -2d9b57e8-c481-3044-b387-b1046e034269,SESCO,II.1.1,Buenos Aires,AR-B,annual,2013,naphtha combustion consumption by to the public,1.9647550999999999,TJ,CO2,73300.0,kg/TJ,144016.54882999999,kg -78398fc5-6e40-33af-aa7f-50383362a4f9,SESCO,II.1.1,Buenos Aires,AR-B,annual,2013,naphtha combustion consumption by to the public,1.9647550999999999,TJ,CH4,3.0,kg/TJ,5.8942653,kg -90134449-a38a-3ee2-badd-d3f6444ee7f7,SESCO,II.1.1,Buenos Aires,AR-B,annual,2013,naphtha combustion consumption by to the public,1.9647550999999999,TJ,N2O,0.6,kg/TJ,1.1788530599999998,kg -fb24f6d9-5f3c-3ec5-b328-161e16311393,SESCO,II.1.1,Entre Rios,AR-E,annual,2013,naphtha combustion consumption by to the public,0.16104549999999998,TJ,CO2,73300.0,kg/TJ,11804.635149999998,kg -b1d709d5-cd94-3f2d-ba66-3e69bd1b2736,SESCO,II.1.1,Entre Rios,AR-E,annual,2013,naphtha combustion consumption by to the public,0.16104549999999998,TJ,CH4,3.0,kg/TJ,0.48313649999999997,kg -1233fb06-dc8b-3e29-bf98-de53911049fc,SESCO,II.1.1,Entre Rios,AR-E,annual,2013,naphtha combustion consumption by to the public,0.16104549999999998,TJ,N2O,0.6,kg/TJ,0.09662729999999999,kg -57b41271-cfbc-3b12-8b6d-bee95d426f1f,SESCO,II.1.1,Santa Fe,AR-S,annual,2013,naphtha combustion consumption by to the public,0.2254637,TJ,CO2,73300.0,kg/TJ,16526.48921,kg -cda1089c-f2d9-3771-bffc-325af7733b5d,SESCO,II.1.1,Santa Fe,AR-S,annual,2013,naphtha combustion consumption by to the public,0.2254637,TJ,CH4,3.0,kg/TJ,0.6763911,kg -63f1ac01-a987-3cfa-a6de-d0fdc35697c2,SESCO,II.1.1,Santa Fe,AR-S,annual,2013,naphtha combustion consumption by to the public,0.2254637,TJ,N2O,0.6,kg/TJ,0.13527821999999998,kg -039abd9c-d3ff-349a-904f-164c735348a5,SESCO,II.1.1,Buenos Aires,AR-B,annual,2013,naphtha combustion consumption by to the public,8433.088986937999,TJ,CO2,73300.0,kg/TJ,618145422.7425554,kg -da74f9c7-bbff-371c-8716-a90bc5fdb3dd,SESCO,II.1.1,Buenos Aires,AR-B,annual,2013,naphtha combustion consumption by to the public,8433.088986937999,TJ,CH4,3.0,kg/TJ,25299.266960814,kg -b6a9e30a-4929-3376-ae27-48e186fe4d62,SESCO,II.1.1,Buenos Aires,AR-B,annual,2013,naphtha combustion consumption by to the public,8433.088986937999,TJ,N2O,0.6,kg/TJ,5059.8533921627995,kg -bf79fc8b-d1f9-30bd-9753-f7d011e4f754,SESCO,II.1.1,Capital Federal,AR-C,annual,2013,naphtha combustion consumption by to the public,2887.0813597779998,TJ,CO2,73300.0,kg/TJ,211623063.6717274,kg -7f6ae6cf-3e52-32b4-b741-7016a4309f10,SESCO,II.1.1,Capital Federal,AR-C,annual,2013,naphtha combustion consumption by to the public,2887.0813597779998,TJ,CH4,3.0,kg/TJ,8661.244079334,kg -bf6d98ae-01b9-33d0-ad53-96803bc438a3,SESCO,II.1.1,Capital Federal,AR-C,annual,2013,naphtha combustion consumption by to the public,2887.0813597779998,TJ,N2O,0.6,kg/TJ,1732.2488158667998,kg -3b341f35-cfd4-3bdc-b656-8dd8c9d7a573,SESCO,II.1.1,Catamarca,AR-K,annual,2013,naphtha combustion consumption by to the public,393.898611722,TJ,CO2,73300.0,kg/TJ,28872768.2392226,kg -7cf09887-6492-3c75-ac11-c9bc885d9be7,SESCO,II.1.1,Catamarca,AR-K,annual,2013,naphtha combustion consumption by to the public,393.898611722,TJ,CH4,3.0,kg/TJ,1181.695835166,kg -e5f57424-b53f-3454-91a2-9ae12767d482,SESCO,II.1.1,Catamarca,AR-K,annual,2013,naphtha combustion consumption by to the public,393.898611722,TJ,N2O,0.6,kg/TJ,236.3391670332,kg -d8a7577f-7dfd-3f2a-a520-93c37538b922,SESCO,II.1.1,Chaco,AR-H,annual,2013,naphtha combustion consumption by to the public,457.81660439899997,TJ,CO2,73300.0,kg/TJ,33557957.1024467,kg -1862c2dd-3c88-3308-b746-e0b5a9e73caa,SESCO,II.1.1,Chaco,AR-H,annual,2013,naphtha combustion consumption by to the public,457.81660439899997,TJ,CH4,3.0,kg/TJ,1373.449813197,kg -7910970b-6033-345e-90f0-7fcc07fda7f0,SESCO,II.1.1,Chaco,AR-H,annual,2013,naphtha combustion consumption by to the public,457.81660439899997,TJ,N2O,0.6,kg/TJ,274.6899626394,kg -f6b12401-735b-3f91-ac18-af6fa64ef4ff,SESCO,II.1.1,Chubut,AR-U,annual,2013,naphtha combustion consumption by to the public,331.90382440599996,TJ,CO2,73300.0,kg/TJ,24328550.328959797,kg -0cffd71d-16aa-346b-a6ae-bd101f398ab4,SESCO,II.1.1,Chubut,AR-U,annual,2013,naphtha combustion consumption by to the public,331.90382440599996,TJ,CH4,3.0,kg/TJ,995.7114732179998,kg -b82d9daa-9d14-3ff2-854f-75f2d1b651e2,SESCO,II.1.1,Chubut,AR-U,annual,2013,naphtha combustion consumption by to the public,331.90382440599996,TJ,N2O,0.6,kg/TJ,199.14229464359997,kg -ca96be4d-9c71-3748-a195-a685e21a3f01,SESCO,II.1.1,Corrientes,AR-W,annual,2013,naphtha combustion consumption by to the public,276.767320753,TJ,CO2,73300.0,kg/TJ,20287044.611194897,kg -f26efcf3-1882-3bf8-980a-bbdcbecdf278,SESCO,II.1.1,Corrientes,AR-W,annual,2013,naphtha combustion consumption by to the public,276.767320753,TJ,CH4,3.0,kg/TJ,830.301962259,kg -774f8678-9928-36b3-92d3-17b08ba1aa61,SESCO,II.1.1,Corrientes,AR-W,annual,2013,naphtha combustion consumption by to the public,276.767320753,TJ,N2O,0.6,kg/TJ,166.06039245179997,kg -956bb401-c2de-3f26-8716-47263f917b7e,SESCO,II.1.1,Córdoba,AR-X,annual,2013,naphtha combustion consumption by to the public,2904.4752400509997,TJ,CO2,73300.0,kg/TJ,212898035.09573826,kg -f5e210ba-1960-32c8-95cd-91b0296c5bd1,SESCO,II.1.1,Córdoba,AR-X,annual,2013,naphtha combustion consumption by to the public,2904.4752400509997,TJ,CH4,3.0,kg/TJ,8713.425720152998,kg -d757854e-cded-3d84-ada3-1744817a8266,SESCO,II.1.1,Córdoba,AR-X,annual,2013,naphtha combustion consumption by to the public,2904.4752400509997,TJ,N2O,0.6,kg/TJ,1742.6851440305998,kg -bebe9d48-c40d-31d6-8503-92d9fbe6012d,SESCO,II.1.1,Entre Rios,AR-E,annual,2013,naphtha combustion consumption by to the public,941.0316946029999,TJ,CO2,73300.0,kg/TJ,68977623.21439989,kg -eb8eef7b-3043-3a2f-8e8f-1fd56281bde6,SESCO,II.1.1,Entre Rios,AR-E,annual,2013,naphtha combustion consumption by to the public,941.0316946029999,TJ,CH4,3.0,kg/TJ,2823.095083809,kg -e69f4ca9-4ec0-367d-8d51-c6b93ac2d36d,SESCO,II.1.1,Entre Rios,AR-E,annual,2013,naphtha combustion consumption by to the public,941.0316946029999,TJ,N2O,0.6,kg/TJ,564.6190167617999,kg -d8247f57-354c-3b30-96cf-c50a369a9f3f,SESCO,II.1.1,Formosa,AR-P,annual,2013,naphtha combustion consumption by to the public,461.94484474599994,TJ,CO2,73300.0,kg/TJ,33860557.119881794,kg -75a213e1-5dbe-3dba-bbed-2fa0072a0b2a,SESCO,II.1.1,Formosa,AR-P,annual,2013,naphtha combustion consumption by to the public,461.94484474599994,TJ,CH4,3.0,kg/TJ,1385.8345342379998,kg -6d06b8e8-c336-3382-8458-2b38035bec61,SESCO,II.1.1,Formosa,AR-P,annual,2013,naphtha combustion consumption by to the public,461.94484474599994,TJ,N2O,0.6,kg/TJ,277.16690684759993,kg -5416ed25-9768-3649-b14e-7e6cf662d75c,SESCO,II.1.1,Jujuy,AR-Y,annual,2013,naphtha combustion consumption by to the public,131.33904707,TJ,CO2,73300.0,kg/TJ,9627152.150231,kg -876b8ae4-c620-3687-8018-1e2c05e1e3ac,SESCO,II.1.1,Jujuy,AR-Y,annual,2013,naphtha combustion consumption by to the public,131.33904707,TJ,CH4,3.0,kg/TJ,394.01714121,kg -2e3b65a3-7220-3e2d-8ab2-2491a8c91186,SESCO,II.1.1,Jujuy,AR-Y,annual,2013,naphtha combustion consumption by to the public,131.33904707,TJ,N2O,0.6,kg/TJ,78.803428242,kg -49bf771e-9179-3976-86e7-8c2466ec6e09,SESCO,II.1.1,La Pampa,AR-L,annual,2013,naphtha combustion consumption by to the public,115.85613269999999,TJ,CO2,73300.0,kg/TJ,8492254.52691,kg -aaad6449-a16a-3e47-8dcd-db00617009f8,SESCO,II.1.1,La Pampa,AR-L,annual,2013,naphtha combustion consumption by to the public,115.85613269999999,TJ,CH4,3.0,kg/TJ,347.56839809999997,kg -6554203d-ed78-36b6-9b04-15410ba5608a,SESCO,II.1.1,La Pampa,AR-L,annual,2013,naphtha combustion consumption by to the public,115.85613269999999,TJ,N2O,0.6,kg/TJ,69.51367961999999,kg -a7de9a5b-72a0-361b-8b43-78f880b84030,SESCO,II.1.1,La Rioja,AR-F,annual,2013,naphtha combustion consumption by to the public,233.66671358799996,TJ,CO2,73300.0,kg/TJ,17127770.106000397,kg -cb00f41d-1849-37ea-9208-81c409b29569,SESCO,II.1.1,La Rioja,AR-F,annual,2013,naphtha combustion consumption by to the public,233.66671358799996,TJ,CH4,3.0,kg/TJ,701.0001407639999,kg -b31df5c8-ac92-3c1e-9e06-155eadb8006a,SESCO,II.1.1,La Rioja,AR-F,annual,2013,naphtha combustion consumption by to the public,233.66671358799996,TJ,N2O,0.6,kg/TJ,140.20002815279997,kg -116c0e19-24b5-327f-82f0-578ac5a3fa09,SESCO,II.1.1,Mendoza,AR-M,annual,2013,naphtha combustion consumption by to the public,488.6461886459999,TJ,CO2,73300.0,kg/TJ,35817765.6277518,kg -85e53f03-2d59-3138-964a-ab2399e6fe13,SESCO,II.1.1,Mendoza,AR-M,annual,2013,naphtha combustion consumption by to the public,488.6461886459999,TJ,CH4,3.0,kg/TJ,1465.9385659379998,kg -930e0bdf-b577-3240-800e-b6d839c511a6,SESCO,II.1.1,Mendoza,AR-M,annual,2013,naphtha combustion consumption by to the public,488.6461886459999,TJ,N2O,0.6,kg/TJ,293.18771318759997,kg -47a66194-f474-3cc6-ac01-dfddfd8cafc7,SESCO,II.1.1,Misiones,AR-N,annual,2013,naphtha combustion consumption by to the public,841.8640628859999,TJ,CO2,73300.0,kg/TJ,61708635.809543796,kg -368c8a5c-c277-3cf5-b657-37ead06e8647,SESCO,II.1.1,Misiones,AR-N,annual,2013,naphtha combustion consumption by to the public,841.8640628859999,TJ,CH4,3.0,kg/TJ,2525.592188658,kg -c378beea-87c1-3dc5-8465-601b2df50c6f,SESCO,II.1.1,Misiones,AR-N,annual,2013,naphtha combustion consumption by to the public,841.8640628859999,TJ,N2O,0.6,kg/TJ,505.11843773159995,kg -85cfaf8e-24cc-3ee9-b6fc-f864e53087d8,SESCO,II.1.1,Neuquén,AR-Q,annual,2013,naphtha combustion consumption by to the public,280.53063199699994,TJ,CO2,73300.0,kg/TJ,20562895.325380094,kg -eba7ec18-51ac-3883-9ab9-565a80548c83,SESCO,II.1.1,Neuquén,AR-Q,annual,2013,naphtha combustion consumption by to the public,280.53063199699994,TJ,CH4,3.0,kg/TJ,841.5918959909998,kg -2c7f7739-4dda-37a4-8e08-0f2763391ddc,SESCO,II.1.1,Neuquén,AR-Q,annual,2013,naphtha combustion consumption by to the public,280.53063199699994,TJ,N2O,0.6,kg/TJ,168.31837919819995,kg -200bfd2a-5c71-3436-8ea5-bed4c40fcd89,SESCO,II.1.1,Rio Negro,AR-R,annual,2013,naphtha combustion consumption by to the public,396.121039622,TJ,CO2,73300.0,kg/TJ,29035672.2042926,kg -66134e9d-189a-3005-84a9-fc740c223be4,SESCO,II.1.1,Rio Negro,AR-R,annual,2013,naphtha combustion consumption by to the public,396.121039622,TJ,CH4,3.0,kg/TJ,1188.3631188660001,kg -554743ee-b058-3b34-a1f0-4475df9e6620,SESCO,II.1.1,Rio Negro,AR-R,annual,2013,naphtha combustion consumption by to the public,396.121039622,TJ,N2O,0.6,kg/TJ,237.6726237732,kg -712ea690-db5e-3b86-b8b1-04d418c82bd8,SESCO,II.1.1,Salta,AR-A,annual,2013,naphtha combustion consumption by to the public,81.81433490999999,TJ,CO2,73300.0,kg/TJ,5996990.748902999,kg -a372e6a1-7271-327b-b0a2-f16e30358f38,SESCO,II.1.1,Salta,AR-A,annual,2013,naphtha combustion consumption by to the public,81.81433490999999,TJ,CH4,3.0,kg/TJ,245.44300472999996,kg -8e46f2a4-0241-38dd-907a-1194eb5f8b69,SESCO,II.1.1,Salta,AR-A,annual,2013,naphtha combustion consumption by to the public,81.81433490999999,TJ,N2O,0.6,kg/TJ,49.08860094599999,kg -e3397261-b9aa-3902-8e76-01a258e15329,SESCO,II.1.1,San Juan,AR-J,annual,2013,naphtha combustion consumption by to the public,321.27288885999997,TJ,CO2,73300.0,kg/TJ,23549302.753437996,kg -7e5df551-23b5-3fba-8829-9c3ae463b0f8,SESCO,II.1.1,San Juan,AR-J,annual,2013,naphtha combustion consumption by to the public,321.27288885999997,TJ,CH4,3.0,kg/TJ,963.8186665799999,kg -506a40d9-52aa-321d-bfd5-6e96a3e2f99d,SESCO,II.1.1,San Juan,AR-J,annual,2013,naphtha combustion consumption by to the public,321.27288885999997,TJ,N2O,0.6,kg/TJ,192.76373331599999,kg -c1065e0a-672c-3f06-a491-adb5a9dad7f3,SESCO,II.1.1,San Luis,AR-D,annual,2013,naphtha combustion consumption by to the public,557.618433295,TJ,CO2,73300.0,kg/TJ,40873431.160523504,kg -0b390d4b-e962-3fcb-9c2c-654b45f511a8,SESCO,II.1.1,San Luis,AR-D,annual,2013,naphtha combustion consumption by to the public,557.618433295,TJ,CH4,3.0,kg/TJ,1672.855299885,kg -a0211a83-66c6-364f-9f45-2687b7b6dcf6,SESCO,II.1.1,San Luis,AR-D,annual,2013,naphtha combustion consumption by to the public,557.618433295,TJ,N2O,0.6,kg/TJ,334.571059977,kg -fc353c3d-6b20-332a-a0a5-278e79dabd80,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2013,naphtha combustion consumption by to the public,55.982958801,TJ,CO2,73300.0,kg/TJ,4103550.8801133004,kg -62390581-9bca-3443-9bcc-f2f346851a55,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2013,naphtha combustion consumption by to the public,55.982958801,TJ,CH4,3.0,kg/TJ,167.948876403,kg -83bb1a31-29b8-3af9-aeb6-44317fe68d9f,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2013,naphtha combustion consumption by to the public,55.982958801,TJ,N2O,0.6,kg/TJ,33.5897752806,kg -5e6e4e4e-0a36-3bc9-a2d7-fa84910f471c,SESCO,II.1.1,Santa Fe,AR-S,annual,2013,naphtha combustion consumption by to the public,2640.3222912219994,TJ,CO2,73300.0,kg/TJ,193535623.94657257,kg -fd270408-a01b-3209-83f4-325246537cbd,SESCO,II.1.1,Santa Fe,AR-S,annual,2013,naphtha combustion consumption by to the public,2640.3222912219994,TJ,CH4,3.0,kg/TJ,7920.966873665999,kg -d277b87a-ec6d-37cb-aaf1-432d0953e835,SESCO,II.1.1,Santa Fe,AR-S,annual,2013,naphtha combustion consumption by to the public,2640.3222912219994,TJ,N2O,0.6,kg/TJ,1584.1933747331996,kg -0b60efdb-247b-3079-a03c-f39de94980fb,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2013,naphtha combustion consumption by to the public,317.954063196,TJ,CO2,73300.0,kg/TJ,23306032.8322668,kg -a4d5fd77-0277-3da7-bee5-0bfe3cd7f297,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2013,naphtha combustion consumption by to the public,317.954063196,TJ,CH4,3.0,kg/TJ,953.862189588,kg -05abc08b-9fbb-3724-a3bd-0f7e14c83ce5,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2013,naphtha combustion consumption by to the public,317.954063196,TJ,N2O,0.6,kg/TJ,190.7724379176,kg -ad82e230-264c-39f6-97d1-e3036a5aa8b1,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2013,naphtha combustion consumption by to the public,131.48656474799998,TJ,CO2,73300.0,kg/TJ,9637965.196028398,kg -8f79b885-08c4-3e6c-bbf2-ac6946c913b4,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2013,naphtha combustion consumption by to the public,131.48656474799998,TJ,CH4,3.0,kg/TJ,394.45969424399993,kg -e0f5c471-d947-3c9d-8813-b78ab6b4f2e3,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2013,naphtha combustion consumption by to the public,131.48656474799998,TJ,N2O,0.6,kg/TJ,78.89193884879998,kg -ff8bf128-2e21-3ee1-82de-164dd1610b4f,SESCO,II.1.1,Tucuman,AR-T,annual,2013,naphtha combustion consumption by to the public,108.16975307599999,TJ,CO2,73300.0,kg/TJ,7928842.9004708,kg -5f393e4d-859b-30aa-a260-383cc2575426,SESCO,II.1.1,Tucuman,AR-T,annual,2013,naphtha combustion consumption by to the public,108.16975307599999,TJ,CH4,3.0,kg/TJ,324.50925922799996,kg -11393edf-7426-3a14-9208-35721388c132,SESCO,II.1.1,Tucuman,AR-T,annual,2013,naphtha combustion consumption by to the public,108.16975307599999,TJ,N2O,0.6,kg/TJ,64.90185184559999,kg -84fae250-0194-3d88-9065-f89185327be0,SESCO,II.1.1,Buenos Aires,AR-B,annual,2013,naphtha combustion consumption by to the public,2261.319099886,TJ,CO2,73300.0,kg/TJ,165754690.0216438,kg -98c9a8bf-c0aa-36b0-8544-4d3b1e611864,SESCO,II.1.1,Buenos Aires,AR-B,annual,2013,naphtha combustion consumption by to the public,2261.319099886,TJ,CH4,3.0,kg/TJ,6783.957299658,kg -40eb183a-a430-36a2-8964-f381f13ff06f,SESCO,II.1.1,Buenos Aires,AR-B,annual,2013,naphtha combustion consumption by to the public,2261.319099886,TJ,N2O,0.6,kg/TJ,1356.7914599316,kg -d9360c8a-63b0-31d8-b0cd-1d1f5618a0cb,SESCO,II.1.1,Capital Federal,AR-C,annual,2013,naphtha combustion consumption by to the public,1077.88320674342,TJ,CO2,73300.0,kg/TJ,79008839.0542927,kg -10257cca-a24c-3121-86ac-6e3a076c1d8f,SESCO,II.1.1,Capital Federal,AR-C,annual,2013,naphtha combustion consumption by to the public,1077.88320674342,TJ,CH4,3.0,kg/TJ,3233.64962023026,kg -b04e8745-d13f-35b5-9a48-cc43a9bf3815,SESCO,II.1.1,Capital Federal,AR-C,annual,2013,naphtha combustion consumption by to the public,1077.88320674342,TJ,N2O,0.6,kg/TJ,646.729924046052,kg -895f72d4-bc34-3608-b2d7-f99833cb18f2,SESCO,II.1.1,Catamarca,AR-K,annual,2013,naphtha combustion consumption by to the public,91.86990963996998,TJ,CO2,73300.0,kg/TJ,6734064.376609799,kg -10ccb3c0-e944-3602-909d-02e724ffc8b2,SESCO,II.1.1,Catamarca,AR-K,annual,2013,naphtha combustion consumption by to the public,91.86990963996998,TJ,CH4,3.0,kg/TJ,275.6097289199099,kg -d23d1c71-7b5e-379c-a7d3-482fbf31b071,SESCO,II.1.1,Catamarca,AR-K,annual,2013,naphtha combustion consumption by to the public,91.86990963996998,TJ,N2O,0.6,kg/TJ,55.121945783981985,kg -45cd8a4b-52b4-39c6-bda7-3a90db996a26,SESCO,II.1.1,Chaco,AR-H,annual,2013,naphtha combustion consumption by to the public,91.80548499814999,TJ,CO2,73300.0,kg/TJ,6729342.050364395,kg -f2ccdc22-dc22-367e-9cbf-7deb8c5a140d,SESCO,II.1.1,Chaco,AR-H,annual,2013,naphtha combustion consumption by to the public,91.80548499814999,TJ,CH4,3.0,kg/TJ,275.41645499444996,kg -e82a3c4c-79fd-34fa-89cd-0b6700d9bd2d,SESCO,II.1.1,Chaco,AR-H,annual,2013,naphtha combustion consumption by to the public,91.80548499814999,TJ,N2O,0.6,kg/TJ,55.08329099888999,kg -8e69584c-2aa7-3baf-a1b1-abb6c655c1a5,SESCO,II.1.1,Chubut,AR-U,annual,2013,naphtha combustion consumption by to the public,48.139736964549996,TJ,CO2,73300.0,kg/TJ,3528642.719501515,kg -908e6cc9-071a-3ea7-bbfe-ba156a64d124,SESCO,II.1.1,Chubut,AR-U,annual,2013,naphtha combustion consumption by to the public,48.139736964549996,TJ,CH4,3.0,kg/TJ,144.41921089365,kg -99bba9d4-ea94-32f4-b01d-2c8651dfbbaf,SESCO,II.1.1,Chubut,AR-U,annual,2013,naphtha combustion consumption by to the public,48.139736964549996,TJ,N2O,0.6,kg/TJ,28.883842178729996,kg -5b7d22a3-30d2-37e6-aa82-001a0d4e6666,SESCO,II.1.1,Corrientes,AR-W,annual,2013,naphtha combustion consumption by to the public,77.19979835029,TJ,CO2,73300.0,kg/TJ,5658745.219076256,kg -cab357d2-f82a-3e2e-9e87-fdd531e54e8a,SESCO,II.1.1,Corrientes,AR-W,annual,2013,naphtha combustion consumption by to the public,77.19979835029,TJ,CH4,3.0,kg/TJ,231.59939505087,kg -d941e41f-fc03-3c28-bda2-a924feb9df46,SESCO,II.1.1,Corrientes,AR-W,annual,2013,naphtha combustion consumption by to the public,77.19979835029,TJ,N2O,0.6,kg/TJ,46.319879010174,kg -fe8c198f-0ba1-34c3-94ce-4b37e2c19c69,SESCO,II.1.1,Córdoba,AR-X,annual,2013,naphtha combustion consumption by to the public,621.56515004738,TJ,CO2,73300.0,kg/TJ,45560725.49847296,kg -3dec3ea2-9cca-300d-8534-50967f23f68e,SESCO,II.1.1,Córdoba,AR-X,annual,2013,naphtha combustion consumption by to the public,621.56515004738,TJ,CH4,3.0,kg/TJ,1864.69545014214,kg -cb79c33b-6ac1-3188-ade8-b2a0bc2ed958,SESCO,II.1.1,Córdoba,AR-X,annual,2013,naphtha combustion consumption by to the public,621.56515004738,TJ,N2O,0.6,kg/TJ,372.939090028428,kg -5a80ba6e-8aa2-365e-b305-9a867deae15f,SESCO,II.1.1,Entre Rios,AR-E,annual,2013,naphtha combustion consumption by to the public,229.72706718422998,TJ,CO2,73300.0,kg/TJ,16838994.024604056,kg -f06896f3-f05e-3f7b-a671-fcffab8ab14e,SESCO,II.1.1,Entre Rios,AR-E,annual,2013,naphtha combustion consumption by to the public,229.72706718422998,TJ,CH4,3.0,kg/TJ,689.1812015526899,kg -4681a49f-6e30-368e-a981-6e16ce80634d,SESCO,II.1.1,Entre Rios,AR-E,annual,2013,naphtha combustion consumption by to the public,229.72706718422998,TJ,N2O,0.6,kg/TJ,137.836240310538,kg -4473668d-1071-3a2f-9479-e0ae2bd03c94,SESCO,II.1.1,Formosa,AR-P,annual,2013,naphtha combustion consumption by to the public,103.53828741332998,TJ,CO2,73300.0,kg/TJ,7589356.467397087,kg -4ed5d30a-9c18-3725-91c4-875fb16f512c,SESCO,II.1.1,Formosa,AR-P,annual,2013,naphtha combustion consumption by to the public,103.53828741332998,TJ,CH4,3.0,kg/TJ,310.61486223999,kg -d1f54bff-80cb-33ca-be5e-7d5b9f1c1c5e,SESCO,II.1.1,Formosa,AR-P,annual,2013,naphtha combustion consumption by to the public,103.53828741332998,TJ,N2O,0.6,kg/TJ,62.12297244799799,kg -4259acf8-5829-3856-81cf-2a4221cd76a9,SESCO,II.1.1,Jujuy,AR-Y,annual,2013,naphtha combustion consumption by to the public,5.36982707107,TJ,CO2,73300.0,kg/TJ,393608.32430943096,kg -ecff2891-ec14-33e1-baca-050f5e890658,SESCO,II.1.1,Jujuy,AR-Y,annual,2013,naphtha combustion consumption by to the public,5.36982707107,TJ,CH4,3.0,kg/TJ,16.10948121321,kg -e42b2733-1502-3a7e-9f45-08a79d52b63a,SESCO,II.1.1,Jujuy,AR-Y,annual,2013,naphtha combustion consumption by to the public,5.36982707107,TJ,N2O,0.6,kg/TJ,3.2218962426419995,kg -d161bc87-f81d-3f1e-b360-6eb1346298bc,SESCO,II.1.1,La Pampa,AR-L,annual,2013,naphtha combustion consumption by to the public,29.662973865909997,TJ,CO2,73300.0,kg/TJ,2174295.984371203,kg -374bc8e9-2c6f-330b-ad6c-1e3a5dc59d59,SESCO,II.1.1,La Pampa,AR-L,annual,2013,naphtha combustion consumption by to the public,29.662973865909997,TJ,CH4,3.0,kg/TJ,88.98892159772998,kg -874c3e96-411c-3afc-9fb2-ebaed0a6bd63,SESCO,II.1.1,La Pampa,AR-L,annual,2013,naphtha combustion consumption by to the public,29.662973865909997,TJ,N2O,0.6,kg/TJ,17.797784319545997,kg -14ed0f04-0545-34c8-8628-a3fa373663b9,SESCO,II.1.1,La Rioja,AR-F,annual,2013,naphtha combustion consumption by to the public,47.948881942499995,TJ,CO2,73300.0,kg/TJ,3514653.0463852496,kg -e5b097af-b6a5-3d9e-bb25-09dd68c672f5,SESCO,II.1.1,La Rioja,AR-F,annual,2013,naphtha combustion consumption by to the public,47.948881942499995,TJ,CH4,3.0,kg/TJ,143.84664582749997,kg -f1758944-be6c-3c51-a4e0-4341ff39262e,SESCO,II.1.1,La Rioja,AR-F,annual,2013,naphtha combustion consumption by to the public,47.948881942499995,TJ,N2O,0.6,kg/TJ,28.769329165499997,kg -f6536793-b3bb-3a3f-b87a-145522d3d30e,SESCO,II.1.1,Mendoza,AR-M,annual,2013,naphtha combustion consumption by to the public,96.78615206029,TJ,CO2,73300.0,kg/TJ,7094424.9460192565,kg -facfbc4f-5a70-39f2-8acf-35585ae563c3,SESCO,II.1.1,Mendoza,AR-M,annual,2013,naphtha combustion consumption by to the public,96.78615206029,TJ,CH4,3.0,kg/TJ,290.35845618087,kg -76337b57-fcad-3354-a99b-adba191cc448,SESCO,II.1.1,Mendoza,AR-M,annual,2013,naphtha combustion consumption by to the public,96.78615206029,TJ,N2O,0.6,kg/TJ,58.07169123617399,kg -9e4847a1-d5a7-337a-a33c-f23207870fbb,SESCO,II.1.1,Misiones,AR-N,annual,2013,naphtha combustion consumption by to the public,128.15740318381,TJ,CO2,73300.0,kg/TJ,9393937.653373273,kg -0ff95659-ec11-3376-83e8-10ddfa408c27,SESCO,II.1.1,Misiones,AR-N,annual,2013,naphtha combustion consumption by to the public,128.15740318381,TJ,CH4,3.0,kg/TJ,384.47220955143,kg -1ff011e5-2ea5-3026-8367-885c864a1cd6,SESCO,II.1.1,Misiones,AR-N,annual,2013,naphtha combustion consumption by to the public,128.15740318381,TJ,N2O,0.6,kg/TJ,76.894441910286,kg -e7174501-2e4e-397c-8044-4e35aec3bc01,SESCO,II.1.1,Neuquén,AR-Q,annual,2013,naphtha combustion consumption by to the public,75.98808234555999,TJ,CO2,73300.0,kg/TJ,5569926.435929547,kg -72564799-7509-3321-8871-9c25dde102b3,SESCO,II.1.1,Neuquén,AR-Q,annual,2013,naphtha combustion consumption by to the public,75.98808234555999,TJ,CH4,3.0,kg/TJ,227.96424703667998,kg -c54e2245-acdd-3b8b-9044-2bfe9bb5d77b,SESCO,II.1.1,Neuquén,AR-Q,annual,2013,naphtha combustion consumption by to the public,75.98808234555999,TJ,N2O,0.6,kg/TJ,45.59284940733599,kg -adddaa15-66cb-304b-86d0-018f3720a36b,SESCO,II.1.1,Rio Negro,AR-R,annual,2013,naphtha combustion consumption by to the public,109.85042713490999,TJ,CO2,73300.0,kg/TJ,8052036.308988903,kg -684bbc36-86d4-3784-8850-1d12a32fa9f5,SESCO,II.1.1,Rio Negro,AR-R,annual,2013,naphtha combustion consumption by to the public,109.85042713490999,TJ,CH4,3.0,kg/TJ,329.55128140473,kg -a5348fe6-3333-3aa1-9e74-0724cfad5117,SESCO,II.1.1,Rio Negro,AR-R,annual,2013,naphtha combustion consumption by to the public,109.85042713490999,TJ,N2O,0.6,kg/TJ,65.91025628094599,kg -76d112d9-4cd6-3186-83b3-ad8829554bd0,SESCO,II.1.1,Salta,AR-A,annual,2013,naphtha combustion consumption by to the public,10.598893933319998,TJ,CO2,73300.0,kg/TJ,776898.9253123559,kg -72c99039-d7da-3317-9dbd-40e437e128bd,SESCO,II.1.1,Salta,AR-A,annual,2013,naphtha combustion consumption by to the public,10.598893933319998,TJ,CH4,3.0,kg/TJ,31.79668179995999,kg -8b7e5ff7-923b-329c-91c1-6fe05ffbfe7c,SESCO,II.1.1,Salta,AR-A,annual,2013,naphtha combustion consumption by to the public,10.598893933319998,TJ,N2O,0.6,kg/TJ,6.359336359991999,kg -9958fc3e-5108-35c5-a2c4-862e26a868e0,SESCO,II.1.1,San Juan,AR-J,annual,2013,naphtha combustion consumption by to the public,67.10196850202999,TJ,CO2,73300.0,kg/TJ,4918574.291198798,kg -07f545f9-6c5b-38df-ab78-44a2b9f3f5ee,SESCO,II.1.1,San Juan,AR-J,annual,2013,naphtha combustion consumption by to the public,67.10196850202999,TJ,CH4,3.0,kg/TJ,201.30590550608997,kg -b13bfc3d-5967-3d68-9919-726160c17388,SESCO,II.1.1,San Juan,AR-J,annual,2013,naphtha combustion consumption by to the public,67.10196850202999,TJ,N2O,0.6,kg/TJ,40.26118110121799,kg -d891f309-7a26-3da0-8f53-aa022eeed626,SESCO,II.1.1,San Luis,AR-D,annual,2013,naphtha combustion consumption by to the public,129.01590131429998,TJ,CO2,73300.0,kg/TJ,9456865.566338189,kg -a5943259-4100-3b34-b616-2bbb55853504,SESCO,II.1.1,San Luis,AR-D,annual,2013,naphtha combustion consumption by to the public,129.01590131429998,TJ,CH4,3.0,kg/TJ,387.04770394289994,kg -c0965fbb-8f16-335c-ac08-b31c08b1aa6c,SESCO,II.1.1,San Luis,AR-D,annual,2013,naphtha combustion consumption by to the public,129.01590131429998,TJ,N2O,0.6,kg/TJ,77.40954078857999,kg -20f455cf-f2a8-3c9d-86f2-a148d2c78b87,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2013,naphtha combustion consumption by to the public,27.620594834909998,TJ,CO2,73300.0,kg/TJ,2024589.601398903,kg -3745118f-8dc8-369c-b226-72c4016e2d67,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2013,naphtha combustion consumption by to the public,27.620594834909998,TJ,CH4,3.0,kg/TJ,82.86178450473,kg -08b516fc-4bf7-3e59-bd91-f2f44a417d2e,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2013,naphtha combustion consumption by to the public,27.620594834909998,TJ,N2O,0.6,kg/TJ,16.572356900945998,kg -b49aa15d-5249-38fa-9b64-cb6656ab2e42,SESCO,II.1.1,Santa Fe,AR-S,annual,2013,naphtha combustion consumption by to the public,603.9350256886099,TJ,CO2,73300.0,kg/TJ,44268437.38297511,kg -d537ff9b-8102-3eea-bf4f-5685f5daafda,SESCO,II.1.1,Santa Fe,AR-S,annual,2013,naphtha combustion consumption by to the public,603.9350256886099,TJ,CH4,3.0,kg/TJ,1811.8050770658297,kg -eb18d8c3-4f73-342b-af1a-0ee7fff9e2f8,SESCO,II.1.1,Santa Fe,AR-S,annual,2013,naphtha combustion consumption by to the public,603.9350256886099,TJ,N2O,0.6,kg/TJ,362.36101541316594,kg -98d7d237-5897-3c6e-956e-e3b94908cfc5,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2013,naphtha combustion consumption by to the public,80.98580734706,TJ,CO2,73300.0,kg/TJ,5936259.678539498,kg -7dfdbaf2-981f-35d2-9467-35175e311175,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2013,naphtha combustion consumption by to the public,80.98580734706,TJ,CH4,3.0,kg/TJ,242.95742204118,kg -cc871db4-2f09-3444-a428-46c8da618f8d,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2013,naphtha combustion consumption by to the public,80.98580734706,TJ,N2O,0.6,kg/TJ,48.591484408236,kg -6f04ffdb-4e09-3613-b434-6adf8927bb46,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2013,naphtha combustion consumption by to the public,62.24028185529,TJ,CO2,73300.0,kg/TJ,4562212.659992757,kg -7ec6aad0-9896-3e62-9206-1c4ff48ee731,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2013,naphtha combustion consumption by to the public,62.24028185529,TJ,CH4,3.0,kg/TJ,186.72084556587,kg -56676aab-78cd-336c-ad3a-2d650a64d3ac,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2013,naphtha combustion consumption by to the public,62.24028185529,TJ,N2O,0.6,kg/TJ,37.344169113174,kg -553e60ef-8b50-3311-b7eb-82e624b34451,SESCO,II.1.1,Tucuman,AR-T,annual,2013,naphtha combustion consumption by to the public,22.924746402249998,TJ,CO2,73300.0,kg/TJ,1680383.9112849247,kg -d8ed9cca-5bda-3392-a48d-dc633e7caa6f,SESCO,II.1.1,Tucuman,AR-T,annual,2013,naphtha combustion consumption by to the public,22.924746402249998,TJ,CH4,3.0,kg/TJ,68.77423920675,kg -2b8194d5-6108-3a2f-8ddb-a922e832028d,SESCO,II.1.1,Tucuman,AR-T,annual,2013,naphtha combustion consumption by to the public,22.924746402249998,TJ,N2O,0.6,kg/TJ,13.754847841349997,kg -aa3cd41c-c544-3b82-a3b0-f5818d5bfede,SESCO,I.3.1,Buenos Aires,AR-B,annual,2013,naphtha combustion consumption by petrochemical industries,18.0048869,TJ,CO2,73300.0,kg/TJ,1319758.2097699998,kg -ca6275e4-b591-3c46-80d9-5d284f655d59,SESCO,I.3.1,Buenos Aires,AR-B,annual,2013,naphtha combustion consumption by petrochemical industries,18.0048869,TJ,CH4,3.0,kg/TJ,54.01466069999999,kg -d7c384d8-fb72-31ee-831d-baf342fd95c8,SESCO,I.3.1,Buenos Aires,AR-B,annual,2013,naphtha combustion consumption by petrochemical industries,18.0048869,TJ,N2O,0.6,kg/TJ,10.80293214,kg -70bf6ccc-155b-3869-80fa-959fffcd2a38,SESCO,I.3.1,Buenos Aires,AR-B,annual,2013,naphtha combustion consumption by petrochemical industries,1.4494094999999998,TJ,CO2,73300.0,kg/TJ,106241.71634999999,kg -8212cd7b-457e-372d-81d9-4f4487bba361,SESCO,I.3.1,Buenos Aires,AR-B,annual,2013,naphtha combustion consumption by petrochemical industries,1.4494094999999998,TJ,CH4,3.0,kg/TJ,4.348228499999999,kg -48ce7849-5317-3581-80ed-51ac0ece46a2,SESCO,I.3.1,Buenos Aires,AR-B,annual,2013,naphtha combustion consumption by petrochemical industries,1.4494094999999998,TJ,N2O,0.6,kg/TJ,0.8696456999999999,kg -d0cb8848-28d0-342f-aa2a-64621a2e7785,SESCO,II.1.1,Buenos Aires,AR-B,annual,2013,naphtha combustion consumption by freight transport,5.039416460539999,TJ,CO2,73300.0,kg/TJ,369389.2265575819,kg -9d85d87a-c800-3663-b441-8095f45d0dda,SESCO,II.1.1,Buenos Aires,AR-B,annual,2013,naphtha combustion consumption by freight transport,5.039416460539999,TJ,CH4,3.0,kg/TJ,15.118249381619997,kg -c75e07e2-5276-3864-9e4e-5b675277cae6,SESCO,II.1.1,Buenos Aires,AR-B,annual,2013,naphtha combustion consumption by freight transport,5.039416460539999,TJ,N2O,0.6,kg/TJ,3.0236498763239994,kg -9045f7e7-d1d8-3d82-87b5-095861f78e3f,SESCO,II.1.1,Capital Federal,AR-C,annual,2013,naphtha combustion consumption by freight transport,12.722478547239998,TJ,CO2,73300.0,kg/TJ,932557.6775126918,kg -4fc63fb6-e6b3-3ddb-9530-7a6d4165cf7b,SESCO,II.1.1,Capital Federal,AR-C,annual,2013,naphtha combustion consumption by freight transport,12.722478547239998,TJ,CH4,3.0,kg/TJ,38.16743564171999,kg -3fa83326-101e-3ad5-acd2-7c1dcd5b30ca,SESCO,II.1.1,Capital Federal,AR-C,annual,2013,naphtha combustion consumption by freight transport,12.722478547239998,TJ,N2O,0.6,kg/TJ,7.633487128343998,kg -dff71774-d6a7-3798-a229-37cd99780ea4,SESCO,II.1.1,Chaco,AR-H,annual,2013,naphtha combustion consumption by freight transport,0.24236059385999997,TJ,CO2,73300.0,kg/TJ,17765.031529937998,kg -5c10251e-6eed-3287-babb-03735f29ac12,SESCO,II.1.1,Chaco,AR-H,annual,2013,naphtha combustion consumption by freight transport,0.24236059385999997,TJ,CH4,3.0,kg/TJ,0.7270817815799999,kg -8076229a-a0d8-3585-98cc-bb5f4ad61393,SESCO,II.1.1,Chaco,AR-H,annual,2013,naphtha combustion consumption by freight transport,0.24236059385999997,TJ,N2O,0.6,kg/TJ,0.14541635631599997,kg -1cdc4816-8af2-3d03-82c6-35e5d3dd90a3,SESCO,II.1.1,Corrientes,AR-W,annual,2013,naphtha combustion consumption by freight transport,0.01699674207,TJ,CO2,73300.0,kg/TJ,1245.8611937310002,kg -5865d8d9-127a-3363-838d-106da5b52547,SESCO,II.1.1,Corrientes,AR-W,annual,2013,naphtha combustion consumption by freight transport,0.01699674207,TJ,CH4,3.0,kg/TJ,0.05099022621,kg -89646373-1741-338d-8ce8-1674ddcf2631,SESCO,II.1.1,Corrientes,AR-W,annual,2013,naphtha combustion consumption by freight transport,0.01699674207,TJ,N2O,0.6,kg/TJ,0.010198045242000001,kg -6833a6b2-fcda-3573-b197-655bd22e4c1f,SESCO,II.1.1,Córdoba,AR-X,annual,2013,naphtha combustion consumption by freight transport,0.43827566551999997,TJ,CO2,73300.0,kg/TJ,32125.606282615998,kg -5f39abed-1120-3eb0-ba48-7e5b089bac97,SESCO,II.1.1,Córdoba,AR-X,annual,2013,naphtha combustion consumption by freight transport,0.43827566551999997,TJ,CH4,3.0,kg/TJ,1.31482699656,kg -320f487a-a75c-3b15-9e85-d6ddac7e3525,SESCO,II.1.1,Córdoba,AR-X,annual,2013,naphtha combustion consumption by freight transport,0.43827566551999997,TJ,N2O,0.6,kg/TJ,0.26296539931199997,kg -63904085-fea1-3573-9ef4-c8a28fb7ac90,SESCO,II.1.1,Entre Rios,AR-E,annual,2013,naphtha combustion consumption by freight transport,0.0016104549999999998,TJ,CO2,73300.0,kg/TJ,118.04635149999999,kg -f2c29478-e1a8-3e4e-ac41-4cbe5674a184,SESCO,II.1.1,Entre Rios,AR-E,annual,2013,naphtha combustion consumption by freight transport,0.0016104549999999998,TJ,CH4,3.0,kg/TJ,0.004831364999999999,kg -5d413b52-0db6-3c68-94a4-c98cd6a4e801,SESCO,II.1.1,Entre Rios,AR-E,annual,2013,naphtha combustion consumption by freight transport,0.0016104549999999998,TJ,N2O,0.6,kg/TJ,0.0009662729999999998,kg -ca8e1795-991d-3dbf-b5d3-7dc6c367b1b6,SESCO,II.1.1,Misiones,AR-N,annual,2013,naphtha combustion consumption by freight transport,0.006119729,TJ,CO2,73300.0,kg/TJ,448.5761357,kg -6e39fbd6-fd9c-3265-93b7-f254db8c6e97,SESCO,II.1.1,Misiones,AR-N,annual,2013,naphtha combustion consumption by freight transport,0.006119729,TJ,CH4,3.0,kg/TJ,0.018359187,kg -f90cb6d6-940b-31f6-9095-b747b511dfbe,SESCO,II.1.1,Misiones,AR-N,annual,2013,naphtha combustion consumption by freight transport,0.006119729,TJ,N2O,0.6,kg/TJ,0.0036718374,kg -0d9b1bd4-2961-3805-8fb2-563eecb1421a,SESCO,II.1.1,San Luis,AR-D,annual,2013,naphtha combustion consumption by freight transport,0.09921046982,TJ,CO2,73300.0,kg/TJ,7272.127437806,kg -c4d2fa55-c6d3-3cfb-a8ff-f071722c5af1,SESCO,II.1.1,San Luis,AR-D,annual,2013,naphtha combustion consumption by freight transport,0.09921046982,TJ,CH4,3.0,kg/TJ,0.29763140946,kg -b7febb2b-d08e-3e36-99cb-92e9bb0acb85,SESCO,II.1.1,San Luis,AR-D,annual,2013,naphtha combustion consumption by freight transport,0.09921046982,TJ,N2O,0.6,kg/TJ,0.059526281891999995,kg -017d4659-2caa-394b-907e-df346eb91137,SESCO,II.1.1,Santa Fe,AR-S,annual,2013,naphtha combustion consumption by freight transport,0.9399646071199999,TJ,CO2,73300.0,kg/TJ,68899.40570189599,kg -c9440c81-0fba-3039-839e-30c585106e36,SESCO,II.1.1,Santa Fe,AR-S,annual,2013,naphtha combustion consumption by freight transport,0.9399646071199999,TJ,CH4,3.0,kg/TJ,2.8198938213599996,kg -301dd87b-c804-3acd-b889-49c0a53847f0,SESCO,II.1.1,Santa Fe,AR-S,annual,2013,naphtha combustion consumption by freight transport,0.9399646071199999,TJ,N2O,0.6,kg/TJ,0.5639787642719999,kg -2685182a-b26c-3256-91df-6c387e7aa51e,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2013,naphtha combustion consumption by freight transport,0.02835689164,TJ,CO2,73300.0,kg/TJ,2078.560157212,kg -078b7aff-ec2c-35a6-8d8f-56942220f8e6,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2013,naphtha combustion consumption by freight transport,0.02835689164,TJ,CH4,3.0,kg/TJ,0.08507067492,kg -69311a95-2fdd-386f-a011-20b121820395,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2013,naphtha combustion consumption by freight transport,0.02835689164,TJ,N2O,0.6,kg/TJ,0.017014134984,kg -8fae3a06-0f93-3caa-a56e-35d322e96375,SESCO,II.1.1,Tucuman,AR-T,annual,2013,naphtha combustion consumption by freight transport,0.05120924809,TJ,CO2,73300.0,kg/TJ,3753.637884997,kg -ce135c39-4ee2-3a4a-b990-beac64e4f22d,SESCO,II.1.1,Tucuman,AR-T,annual,2013,naphtha combustion consumption by freight transport,0.05120924809,TJ,CH4,3.0,kg/TJ,0.15362774427,kg -6f539cf8-f15e-34bb-8738-7ea423de7ef6,SESCO,II.1.1,Tucuman,AR-T,annual,2013,naphtha combustion consumption by freight transport,0.05120924809,TJ,N2O,0.6,kg/TJ,0.030725548853999998,kg -27758781-8729-3d7c-a1a6-923c801a9791,SESCO,II.1.1,Buenos Aires,AR-B,annual,2013,naphtha combustion consumption by freight transport,24.671848509,TJ,CO2,73300.0,kg/TJ,1808446.4957097,kg -fc31ccf3-33ce-32aa-9ed8-07f79fd598a1,SESCO,II.1.1,Buenos Aires,AR-B,annual,2013,naphtha combustion consumption by freight transport,24.671848509,TJ,CH4,3.0,kg/TJ,74.015545527,kg -6dae9a06-55d8-305f-9aeb-6638ddd82400,SESCO,II.1.1,Buenos Aires,AR-B,annual,2013,naphtha combustion consumption by freight transport,24.671848509,TJ,N2O,0.6,kg/TJ,14.803109105399999,kg -d908673b-6778-3fa0-87c1-b63eccddd14a,SESCO,II.1.1,Capital Federal,AR-C,annual,2013,naphtha combustion consumption by freight transport,8.005893896,TJ,CO2,73300.0,kg/TJ,586832.0225768,kg -47c3f25b-46c6-3839-90a2-731c8f0e9010,SESCO,II.1.1,Capital Federal,AR-C,annual,2013,naphtha combustion consumption by freight transport,8.005893896,TJ,CH4,3.0,kg/TJ,24.017681688,kg -290a928c-013c-36c4-9440-4e572b2c8f12,SESCO,II.1.1,Capital Federal,AR-C,annual,2013,naphtha combustion consumption by freight transport,8.005893896,TJ,N2O,0.6,kg/TJ,4.8035363376,kg -d5ee6d8a-8b76-31b6-ba82-e90dbdd1093b,SESCO,II.1.1,Chaco,AR-H,annual,2013,naphtha combustion consumption by freight transport,0.05938713858,TJ,CO2,73300.0,kg/TJ,4353.077257914,kg -dcbb1d6e-cf28-30ed-a5c5-90a8c8c84c5e,SESCO,II.1.1,Chaco,AR-H,annual,2013,naphtha combustion consumption by freight transport,0.05938713858,TJ,CH4,3.0,kg/TJ,0.17816141574,kg -4dc9c71d-2139-3df6-aa57-76f449eb59a3,SESCO,II.1.1,Chaco,AR-H,annual,2013,naphtha combustion consumption by freight transport,0.05938713858,TJ,N2O,0.6,kg/TJ,0.035632283147999995,kg -7213b2bf-4867-394a-975b-cc0147082229,SESCO,II.1.1,Corrientes,AR-W,annual,2013,naphtha combustion consumption by freight transport,0.004509274000000001,TJ,CO2,73300.0,kg/TJ,330.52978420000005,kg -4ab14e7d-2d21-31ef-88d9-d20af94102bf,SESCO,II.1.1,Corrientes,AR-W,annual,2013,naphtha combustion consumption by freight transport,0.004509274000000001,TJ,CH4,3.0,kg/TJ,0.013527822000000002,kg -0a62b92a-7b5d-3cd9-b3b7-5c941a1b31af,SESCO,II.1.1,Corrientes,AR-W,annual,2013,naphtha combustion consumption by freight transport,0.004509274000000001,TJ,N2O,0.6,kg/TJ,0.0027055644000000003,kg -640ba093-6a78-3e80-ba6f-419fde4ac6e4,SESCO,II.1.1,Córdoba,AR-X,annual,2013,naphtha combustion consumption by freight transport,0.3239913369,TJ,CO2,73300.0,kg/TJ,23748.56499477,kg -8690a153-09fc-30be-8faf-4dc9a27de4f8,SESCO,II.1.1,Córdoba,AR-X,annual,2013,naphtha combustion consumption by freight transport,0.3239913369,TJ,CH4,3.0,kg/TJ,0.9719740106999999,kg -e5695930-6219-32ba-a534-ab979d39b03f,SESCO,II.1.1,Córdoba,AR-X,annual,2013,naphtha combustion consumption by freight transport,0.3239913369,TJ,N2O,0.6,kg/TJ,0.19439480214,kg -be0e933b-b517-3446-9fb5-fccba1f13035,SESCO,II.1.1,Entre Rios,AR-E,annual,2013,naphtha combustion consumption by freight transport,0.025767279999999997,TJ,CO2,73300.0,kg/TJ,1888.7416239999998,kg -6e16cc40-67c7-3cb6-8e9b-8eb8b378490c,SESCO,II.1.1,Entre Rios,AR-E,annual,2013,naphtha combustion consumption by freight transport,0.025767279999999997,TJ,CH4,3.0,kg/TJ,0.07730183999999998,kg -bfeb6c41-b169-3f24-a546-d4cbf9302eb2,SESCO,II.1.1,Entre Rios,AR-E,annual,2013,naphtha combustion consumption by freight transport,0.025767279999999997,TJ,N2O,0.6,kg/TJ,0.015460367999999997,kg -f33db89b-fbb1-3ffc-b258-4d2003e8c60f,SESCO,II.1.1,Mendoza,AR-M,annual,2013,naphtha combustion consumption by freight transport,0.0052951760399999985,TJ,CO2,73300.0,kg/TJ,388.1364037319999,kg -ff27d499-754c-3dfd-8cf8-a536d6e9ed1c,SESCO,II.1.1,Mendoza,AR-M,annual,2013,naphtha combustion consumption by freight transport,0.0052951760399999985,TJ,CH4,3.0,kg/TJ,0.015885528119999996,kg -40d0e5a9-8269-3af0-bb87-e44375bb61ac,SESCO,II.1.1,Mendoza,AR-M,annual,2013,naphtha combustion consumption by freight transport,0.0052951760399999985,TJ,N2O,0.6,kg/TJ,0.003177105623999999,kg -e889eeaa-0bbd-383c-90a3-5f2aa977f52f,SESCO,II.1.1,Misiones,AR-N,annual,2013,naphtha combustion consumption by freight transport,0.0038650919999999997,TJ,CO2,73300.0,kg/TJ,283.31124359999995,kg -144d3f7f-7472-362f-a65f-f39e37a67143,SESCO,II.1.1,Misiones,AR-N,annual,2013,naphtha combustion consumption by freight transport,0.0038650919999999997,TJ,CH4,3.0,kg/TJ,0.011595275999999998,kg -2993c10c-27e7-3c42-8c1e-9f5d36695aad,SESCO,II.1.1,Misiones,AR-N,annual,2013,naphtha combustion consumption by freight transport,0.0038650919999999997,TJ,N2O,0.6,kg/TJ,0.0023190551999999996,kg -45ecdd3b-05c7-36be-8471-83b86a1463cd,SESCO,II.1.1,San Luis,AR-D,annual,2013,naphtha combustion consumption by freight transport,0.009340639,TJ,CO2,73300.0,kg/TJ,684.6688386999999,kg -72edb4a4-a40f-38a5-a3fb-56c74ff35bf7,SESCO,II.1.1,San Luis,AR-D,annual,2013,naphtha combustion consumption by freight transport,0.009340639,TJ,CH4,3.0,kg/TJ,0.028021917,kg -562b5fdc-5ae6-36e5-a5a1-4c149c42f7c1,SESCO,II.1.1,San Luis,AR-D,annual,2013,naphtha combustion consumption by freight transport,0.009340639,TJ,N2O,0.6,kg/TJ,0.005604383399999999,kg -a2ae9035-9dc8-38d1-b7de-c46a50b4d8cd,SESCO,II.1.1,Santa Fe,AR-S,annual,2013,naphtha combustion consumption by freight transport,0.6796248936399999,TJ,CO2,73300.0,kg/TJ,49816.504703811996,kg -8620ff4b-b033-3d86-adef-1e7664bee8ad,SESCO,II.1.1,Santa Fe,AR-S,annual,2013,naphtha combustion consumption by freight transport,0.6796248936399999,TJ,CH4,3.0,kg/TJ,2.03887468092,kg -33ba075d-12e7-3828-a063-c8e0b1a5408a,SESCO,II.1.1,Santa Fe,AR-S,annual,2013,naphtha combustion consumption by freight transport,0.6796248936399999,TJ,N2O,0.6,kg/TJ,0.4077749361839999,kg -8cb13d59-f435-3407-aa7f-413b129be2e9,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2013,naphtha combustion consumption by freight transport,0.2487186702,TJ,CO2,73300.0,kg/TJ,18231.07852566,kg -b05e5ea3-10a1-3aaf-90cb-ca20fb3ea33d,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2013,naphtha combustion consumption by freight transport,0.2487186702,TJ,CH4,3.0,kg/TJ,0.7461560106,kg -e3c3951d-6e05-3d72-8719-96db4857ab7d,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2013,naphtha combustion consumption by freight transport,0.2487186702,TJ,N2O,0.6,kg/TJ,0.14923120212,kg -3dcfff3c-8938-39fb-9019-efc6f5507f8f,SESCO,II.1.1,Tucuman,AR-T,annual,2013,naphtha combustion consumption by freight transport,0.04764692162999999,TJ,CO2,73300.0,kg/TJ,3492.5193554789994,kg -d19c9913-f187-37f5-8365-cb48a4a39eb8,SESCO,II.1.1,Tucuman,AR-T,annual,2013,naphtha combustion consumption by freight transport,0.04764692162999999,TJ,CH4,3.0,kg/TJ,0.14294076488999996,kg -72bd501c-7082-3962-906c-43eb152858a7,SESCO,II.1.1,Tucuman,AR-T,annual,2013,naphtha combustion consumption by freight transport,0.04764692162999999,TJ,N2O,0.6,kg/TJ,0.028588152977999992,kg -13c22e9b-921e-3b2f-a316-c410ce4198ad,SESCO,II.1.1,Buenos Aires,AR-B,annual,2013,naphtha combustion consumption by public passenger transport,2.2227499909999997,TJ,CO2,73300.0,kg/TJ,162927.57434029997,kg -bf819787-6b8e-37d6-a725-003e26cb83be,SESCO,II.1.1,Buenos Aires,AR-B,annual,2013,naphtha combustion consumption by public passenger transport,2.2227499909999997,TJ,CH4,3.0,kg/TJ,6.668249972999999,kg -7f79efa4-c6a7-304a-a7dc-1422646adb0c,SESCO,II.1.1,Buenos Aires,AR-B,annual,2013,naphtha combustion consumption by public passenger transport,2.2227499909999997,TJ,N2O,0.6,kg/TJ,1.3336499945999998,kg -e4bc32ed-253b-3cd5-bd55-0d0ba7b78a76,SESCO,II.1.1,Capital Federal,AR-C,annual,2013,naphtha combustion consumption by public passenger transport,0.039939284,TJ,CO2,73300.0,kg/TJ,2927.5495172,kg -6b262adb-ef0c-36aa-84a1-9a65aea4832c,SESCO,II.1.1,Capital Federal,AR-C,annual,2013,naphtha combustion consumption by public passenger transport,0.039939284,TJ,CH4,3.0,kg/TJ,0.119817852,kg -ac54cfdb-c2ae-3575-87ef-b700c81ec1fa,SESCO,II.1.1,Capital Federal,AR-C,annual,2013,naphtha combustion consumption by public passenger transport,0.039939284,TJ,N2O,0.6,kg/TJ,0.0239635704,kg -e06d0f96-a39b-3eae-8f69-b3c525573653,SESCO,II.1.1,Córdoba,AR-X,annual,2013,naphtha combustion consumption by public passenger transport,0.001288364,TJ,CO2,73300.0,kg/TJ,94.4370812,kg -876e68db-a29b-36ec-8bb5-e76ea74dfa40,SESCO,II.1.1,Córdoba,AR-X,annual,2013,naphtha combustion consumption by public passenger transport,0.001288364,TJ,CH4,3.0,kg/TJ,0.0038650919999999997,kg -d9855b46-25ab-3692-badd-a432b514fc01,SESCO,II.1.1,Córdoba,AR-X,annual,2013,naphtha combustion consumption by public passenger transport,0.001288364,TJ,N2O,0.6,kg/TJ,0.0007730183999999999,kg -d6d972a4-ae10-3ab0-b55b-fe1bf242b9bd,SESCO,II.1.1,Entre Rios,AR-E,annual,2013,naphtha combustion consumption by public passenger transport,0.0009662729999999999,TJ,CO2,73300.0,kg/TJ,70.82781089999999,kg -af8e80cd-b2d1-3404-9847-a79c963931b8,SESCO,II.1.1,Entre Rios,AR-E,annual,2013,naphtha combustion consumption by public passenger transport,0.0009662729999999999,TJ,CH4,3.0,kg/TJ,0.0028988189999999995,kg -b0821d67-88a3-3b16-8d16-43cb1d0c3162,SESCO,II.1.1,Entre Rios,AR-E,annual,2013,naphtha combustion consumption by public passenger transport,0.0009662729999999999,TJ,N2O,0.6,kg/TJ,0.0005797637999999999,kg -551663cd-ba19-30b3-85e9-7ba3058b6c3b,SESCO,II.1.1,Santa Fe,AR-S,annual,2013,naphtha combustion consumption by public passenger transport,0.053099922259999995,TJ,CO2,73300.0,kg/TJ,3892.2243016579996,kg -41a8e84a-0a13-376f-80e3-8d9a19f07195,SESCO,II.1.1,Santa Fe,AR-S,annual,2013,naphtha combustion consumption by public passenger transport,0.053099922259999995,TJ,CH4,3.0,kg/TJ,0.15929976678,kg -3cafadc9-6199-3671-b3a2-c44589968ab7,SESCO,II.1.1,Santa Fe,AR-S,annual,2013,naphtha combustion consumption by public passenger transport,0.053099922259999995,TJ,N2O,0.6,kg/TJ,0.031859953356,kg -e2e7017d-805d-3a52-96d1-6cce072da6f4,SESCO,II.1.1,Buenos Aires,AR-B,annual,2013,naphtha combustion consumption by public passenger transport,0.4187183,TJ,CO2,73300.0,kg/TJ,30692.05139,kg -130294c4-2c98-3e28-b0b7-e307f83a632c,SESCO,II.1.1,Buenos Aires,AR-B,annual,2013,naphtha combustion consumption by public passenger transport,0.4187183,TJ,CH4,3.0,kg/TJ,1.2561548999999999,kg -c9153a32-d546-3ad1-a420-6eb38e5cc814,SESCO,II.1.1,Buenos Aires,AR-B,annual,2013,naphtha combustion consumption by public passenger transport,0.4187183,TJ,N2O,0.6,kg/TJ,0.25123098,kg -d7d67c14-1b99-3b5c-9d88-c0b0f741bb6a,SESCO,II.1.1,Capital Federal,AR-C,annual,2013,naphtha combustion consumption by public passenger transport,0.19228832699999998,TJ,CO2,73300.0,kg/TJ,14094.734369099999,kg -032615aa-230b-3a3d-8d37-c4ee758355d6,SESCO,II.1.1,Capital Federal,AR-C,annual,2013,naphtha combustion consumption by public passenger transport,0.19228832699999998,TJ,CH4,3.0,kg/TJ,0.5768649809999999,kg -8156ee8e-949f-3e06-b8e5-2fc8c9249848,SESCO,II.1.1,Capital Federal,AR-C,annual,2013,naphtha combustion consumption by public passenger transport,0.19228832699999998,TJ,N2O,0.6,kg/TJ,0.11537299619999998,kg -e163b765-3ae5-3af6-8df8-8c5c5f61053e,SESCO,II.1.1,Entre Rios,AR-E,annual,2013,naphtha combustion consumption by public passenger transport,0.001288364,TJ,CO2,73300.0,kg/TJ,94.4370812,kg -839dfb69-7ccd-38b4-a312-07b3562a57d9,SESCO,II.1.1,Entre Rios,AR-E,annual,2013,naphtha combustion consumption by public passenger transport,0.001288364,TJ,CH4,3.0,kg/TJ,0.0038650919999999997,kg -bdfcd56d-fc34-321f-8b02-b426c672db77,SESCO,II.1.1,Entre Rios,AR-E,annual,2013,naphtha combustion consumption by public passenger transport,0.001288364,TJ,N2O,0.6,kg/TJ,0.0007730183999999999,kg -ace0d2c1-e6e9-35f3-8ae0-26a83acf4fbe,SESCO,II.1.1,Santa Fe,AR-S,annual,2013,naphtha combustion consumption by public passenger transport,0.011273184999999998,TJ,CO2,73300.0,kg/TJ,826.3244604999999,kg -a7fcd63c-4309-3bec-bee8-d5df536b8e79,SESCO,II.1.1,Santa Fe,AR-S,annual,2013,naphtha combustion consumption by public passenger transport,0.011273184999999998,TJ,CH4,3.0,kg/TJ,0.033819554999999994,kg -f4e092f9-ab2d-37ec-bd5e-497995f2b4c2,SESCO,II.1.1,Santa Fe,AR-S,annual,2013,naphtha combustion consumption by public passenger transport,0.011273184999999998,TJ,N2O,0.6,kg/TJ,0.006763910999999998,kg -da06fcbb-6b87-34e7-941c-31899fce326d,SESCO,II.5.1,Córdoba,AR-X,annual,2013,naphtha combustion consumption by agriculture machines,6.34692232867,TJ,CO2,73300.0,kg/TJ,465229.406691511,kg -9c1270d9-1679-3360-a28b-d22633cfc7f6,SESCO,II.5.1,Córdoba,AR-X,annual,2013,naphtha combustion consumption by agriculture machines,6.34692232867,TJ,CH4,3.0,kg/TJ,19.04076698601,kg -afb0373b-c073-3d86-b9f4-52f0822bf9f6,SESCO,II.5.1,Córdoba,AR-X,annual,2013,naphtha combustion consumption by agriculture machines,6.34692232867,TJ,N2O,0.6,kg/TJ,3.8081533972019996,kg -84a3df06-67e5-30c3-9afe-da9cb87507d0,SESCO,II.5.1,Santa Fe,AR-S,annual,2013,naphtha combustion consumption by agriculture machines,1.4225020178599999,TJ,CO2,73300.0,kg/TJ,104269.39790913799,kg -a56244cf-aee0-3bd8-8753-e60ccfd2bd14,SESCO,II.5.1,Santa Fe,AR-S,annual,2013,naphtha combustion consumption by agriculture machines,1.4225020178599999,TJ,CH4,3.0,kg/TJ,4.26750605358,kg -6eb10722-e4ea-3db8-b91f-0351579e6a45,SESCO,II.5.1,Santa Fe,AR-S,annual,2013,naphtha combustion consumption by agriculture machines,1.4225020178599999,TJ,N2O,0.6,kg/TJ,0.8535012107159999,kg -d60197dc-2b46-3f76-9bae-77d965b8a43a,SESCO,II.1.1,Buenos Aires,AR-B,annual,2013,naphtha combustion consumption by to the public,2319.96940054803,TJ,CO2,73300.0,kg/TJ,170053757.0601706,kg -440795eb-62de-3822-8985-d6f2eb7d7736,SESCO,II.1.1,Buenos Aires,AR-B,annual,2013,naphtha combustion consumption by to the public,2319.96940054803,TJ,CH4,3.0,kg/TJ,6959.90820164409,kg -28c5f149-259d-38d3-8a88-01e95f83b2c0,SESCO,II.1.1,Buenos Aires,AR-B,annual,2013,naphtha combustion consumption by to the public,2319.96940054803,TJ,N2O,0.6,kg/TJ,1391.981640328818,kg -ee0c0647-9e0f-3639-92b3-3ffa215f619a,SESCO,II.1.1,Capital Federal,AR-C,annual,2013,naphtha combustion consumption by to the public,254.41007936728997,TJ,CO2,73300.0,kg/TJ,18648258.817622356,kg -9d36cf40-9900-3e7b-b9bb-7ec5b5bafd85,SESCO,II.1.1,Capital Federal,AR-C,annual,2013,naphtha combustion consumption by to the public,254.41007936728997,TJ,CH4,3.0,kg/TJ,763.2302381018699,kg -489f0135-1800-31bd-a3b8-bebaa8db756f,SESCO,II.1.1,Capital Federal,AR-C,annual,2013,naphtha combustion consumption by to the public,254.41007936728997,TJ,N2O,0.6,kg/TJ,152.64604762037396,kg -527ab64f-141e-3021-a8b1-7b31af772d1a,SESCO,II.1.1,Catamarca,AR-K,annual,2013,naphtha combustion consumption by to the public,182.18581394859996,TJ,CO2,73300.0,kg/TJ,13354220.162432376,kg -11c0dd88-91ac-3594-a9d0-02e25d2db5b2,SESCO,II.1.1,Catamarca,AR-K,annual,2013,naphtha combustion consumption by to the public,182.18581394859996,TJ,CH4,3.0,kg/TJ,546.5574418457999,kg -44fb6920-b2fb-31a7-b232-7649423a8034,SESCO,II.1.1,Catamarca,AR-K,annual,2013,naphtha combustion consumption by to the public,182.18581394859996,TJ,N2O,0.6,kg/TJ,109.31148836915997,kg -0d1a604a-1400-3b09-83b6-55592ad624ea,SESCO,II.1.1,Chaco,AR-H,annual,2013,naphtha combustion consumption by to the public,329.74686794356995,TJ,CO2,73300.0,kg/TJ,24170445.420263678,kg -7d2c6a0e-e690-3c2e-a890-182c93aef592,SESCO,II.1.1,Chaco,AR-H,annual,2013,naphtha combustion consumption by to the public,329.74686794356995,TJ,CH4,3.0,kg/TJ,989.2406038307099,kg -d58233f3-7e0f-3545-9d5f-64fd20890177,SESCO,II.1.1,Chaco,AR-H,annual,2013,naphtha combustion consumption by to the public,329.74686794356995,TJ,N2O,0.6,kg/TJ,197.84812076614196,kg -2b146e3d-ebe1-33ed-aaa1-62e3a4ce8373,SESCO,II.1.1,Corrientes,AR-W,annual,2013,naphtha combustion consumption by to the public,439.04743420691995,TJ,CO2,73300.0,kg/TJ,32182176.927367233,kg -ae1e66eb-fdfc-3397-b97a-db05059fe8fa,SESCO,II.1.1,Corrientes,AR-W,annual,2013,naphtha combustion consumption by to the public,439.04743420691995,TJ,CH4,3.0,kg/TJ,1317.14230262076,kg -eaf05da0-a6c8-3665-9443-0d4ddf21024e,SESCO,II.1.1,Corrientes,AR-W,annual,2013,naphtha combustion consumption by to the public,439.04743420691995,TJ,N2O,0.6,kg/TJ,263.42846052415194,kg -d3cbe16c-cb3f-3880-ae26-02fbb55e8bda,SESCO,II.1.1,Córdoba,AR-X,annual,2013,naphtha combustion consumption by to the public,869.7781405982898,TJ,CO2,73300.0,kg/TJ,63754737.70585465,kg -9314e55b-542f-35d8-b8d3-1344bef55caf,SESCO,II.1.1,Córdoba,AR-X,annual,2013,naphtha combustion consumption by to the public,869.7781405982898,TJ,CH4,3.0,kg/TJ,2609.3344217948697,kg -03efecaa-a7e3-3456-bea5-11c37ffc2702,SESCO,II.1.1,Córdoba,AR-X,annual,2013,naphtha combustion consumption by to the public,869.7781405982898,TJ,N2O,0.6,kg/TJ,521.8668843589738,kg -a6d4f3de-eea6-3f0c-bd25-a920a70bc3dc,SESCO,II.1.1,Entre Rios,AR-E,annual,2013,naphtha combustion consumption by to the public,559.79368452623,TJ,CO2,73300.0,kg/TJ,41032877.07577266,kg -97f9bc87-e761-3864-9de1-1db7728228a0,SESCO,II.1.1,Entre Rios,AR-E,annual,2013,naphtha combustion consumption by to the public,559.79368452623,TJ,CH4,3.0,kg/TJ,1679.38105357869,kg -7aec3598-aac6-3986-8a97-d915bb1dd0a4,SESCO,II.1.1,Entre Rios,AR-E,annual,2013,naphtha combustion consumption by to the public,559.79368452623,TJ,N2O,0.6,kg/TJ,335.87621071573795,kg -4df6caf2-f679-3449-aff6-adc9acc99744,SESCO,II.1.1,Formosa,AR-P,annual,2013,naphtha combustion consumption by to the public,18.922643332669995,TJ,CO2,73300.0,kg/TJ,1387029.7562847107,kg -458cbd98-23b6-31fd-b15e-5388ec78b8f8,SESCO,II.1.1,Formosa,AR-P,annual,2013,naphtha combustion consumption by to the public,18.922643332669995,TJ,CH4,3.0,kg/TJ,56.76792999800999,kg -17d005f4-da70-3b7c-85c6-42b8a1ae245a,SESCO,II.1.1,Formosa,AR-P,annual,2013,naphtha combustion consumption by to the public,18.922643332669995,TJ,N2O,0.6,kg/TJ,11.353585999601997,kg -15ffa2f0-e670-382d-904e-7e164a1c0080,SESCO,II.1.1,Jujuy,AR-Y,annual,2013,naphtha combustion consumption by to the public,34.61887857197,TJ,CO2,73300.0,kg/TJ,2537563.799325401,kg -d9639664-cbd8-3f17-b9d1-714f687d1935,SESCO,II.1.1,Jujuy,AR-Y,annual,2013,naphtha combustion consumption by to the public,34.61887857197,TJ,CH4,3.0,kg/TJ,103.85663571591,kg -d1d25015-4ebe-300e-82f4-07db5842d251,SESCO,II.1.1,Jujuy,AR-Y,annual,2013,naphtha combustion consumption by to the public,34.61887857197,TJ,N2O,0.6,kg/TJ,20.771327143182,kg -f21aa27b-3f66-3eb6-8cc6-b13396456830,SESCO,II.1.1,La Pampa,AR-L,annual,2013,naphtha combustion consumption by to the public,18.615899968819996,TJ,CO2,73300.0,kg/TJ,1364545.4677145057,kg -23854e19-9cd3-3264-9ac8-d847cb245a62,SESCO,II.1.1,La Pampa,AR-L,annual,2013,naphtha combustion consumption by to the public,18.615899968819996,TJ,CH4,3.0,kg/TJ,55.84769990645999,kg -25e014ee-9f2a-343d-937b-2622afe77591,SESCO,II.1.1,La Pampa,AR-L,annual,2013,naphtha combustion consumption by to the public,18.615899968819996,TJ,N2O,0.6,kg/TJ,11.169539981291997,kg -aa4cca80-f694-3ea0-aa42-57192fbbda29,SESCO,II.1.1,La Rioja,AR-F,annual,2013,naphtha combustion consumption by to the public,92.29998164771999,TJ,CO2,73300.0,kg/TJ,6765588.654777875,kg -bcdf9fd6-61d9-364d-9c24-db5869653cbb,SESCO,II.1.1,La Rioja,AR-F,annual,2013,naphtha combustion consumption by to the public,92.29998164771999,TJ,CH4,3.0,kg/TJ,276.89994494316,kg -4af5113a-73ff-3245-9198-c1cc828fa845,SESCO,II.1.1,La Rioja,AR-F,annual,2013,naphtha combustion consumption by to the public,92.29998164771999,TJ,N2O,0.6,kg/TJ,55.37998898863199,kg -b83b11f7-c2d7-3de1-9736-6df6e9e09e78,SESCO,II.1.1,Mendoza,AR-M,annual,2013,naphtha combustion consumption by to the public,396.62081534306,TJ,CO2,73300.0,kg/TJ,29072305.764646295,kg -3d12559b-6cba-3964-b6c1-43b86637e09f,SESCO,II.1.1,Mendoza,AR-M,annual,2013,naphtha combustion consumption by to the public,396.62081534306,TJ,CH4,3.0,kg/TJ,1189.8624460291799,kg -b332f547-68fe-312a-9e97-a184ccc3804d,SESCO,II.1.1,Mendoza,AR-M,annual,2013,naphtha combustion consumption by to the public,396.62081534306,TJ,N2O,0.6,kg/TJ,237.97248920583598,kg -c05a3236-6eee-3174-b537-61ca179825e7,SESCO,II.1.1,Misiones,AR-N,annual,2013,naphtha combustion consumption by to the public,265.17573591586,TJ,CO2,73300.0,kg/TJ,19437381.442632537,kg -13d1a868-abae-39cc-8359-da3d24710ebc,SESCO,II.1.1,Misiones,AR-N,annual,2013,naphtha combustion consumption by to the public,265.17573591586,TJ,CH4,3.0,kg/TJ,795.52720774758,kg -a59a8c77-c9d3-3f85-b164-ce70820443b0,SESCO,II.1.1,Misiones,AR-N,annual,2013,naphtha combustion consumption by to the public,265.17573591586,TJ,N2O,0.6,kg/TJ,159.105441549516,kg -27179abf-5119-3c39-b39d-4599bebd5e70,SESCO,II.1.1,Rio Negro,AR-R,annual,2013,naphtha combustion consumption by to the public,17.743584134429998,TJ,CO2,73300.0,kg/TJ,1300604.7170537189,kg -52db7ede-480e-3751-8194-6213e614b147,SESCO,II.1.1,Rio Negro,AR-R,annual,2013,naphtha combustion consumption by to the public,17.743584134429998,TJ,CH4,3.0,kg/TJ,53.23075240329,kg -61a995f5-3838-34b1-b053-43685779827b,SESCO,II.1.1,Rio Negro,AR-R,annual,2013,naphtha combustion consumption by to the public,17.743584134429998,TJ,N2O,0.6,kg/TJ,10.646150480658,kg -57ae8fea-9f10-3509-842c-75afb9e6055a,SESCO,II.1.1,San Juan,AR-J,annual,2013,naphtha combustion consumption by to the public,254.04614874638997,TJ,CO2,73300.0,kg/TJ,18621582.703110386,kg -c5f730f5-b3b0-3d72-bfb4-e2c524b54592,SESCO,II.1.1,San Juan,AR-J,annual,2013,naphtha combustion consumption by to the public,254.04614874638997,TJ,CH4,3.0,kg/TJ,762.13844623917,kg -10adb85c-bf0f-328b-87e5-502e525ebb29,SESCO,II.1.1,San Juan,AR-J,annual,2013,naphtha combustion consumption by to the public,254.04614874638997,TJ,N2O,0.6,kg/TJ,152.42768924783397,kg -5e58bc03-4f91-32d1-84f9-275ec30f26b7,SESCO,II.1.1,San Luis,AR-D,annual,2013,naphtha combustion consumption by to the public,168.97645298303,TJ,CO2,73300.0,kg/TJ,12385974.003656099,kg -649c84fc-c21d-3135-8d1d-83689d905c00,SESCO,II.1.1,San Luis,AR-D,annual,2013,naphtha combustion consumption by to the public,168.97645298303,TJ,CH4,3.0,kg/TJ,506.92935894909,kg -529d2c90-c655-3c33-a952-a526ab893941,SESCO,II.1.1,San Luis,AR-D,annual,2013,naphtha combustion consumption by to the public,168.97645298303,TJ,N2O,0.6,kg/TJ,101.38587178981798,kg -36709cf0-5fe1-3f55-9329-0ba228b3e8cc,SESCO,II.1.1,Santa Fe,AR-S,annual,2013,naphtha combustion consumption by to the public,1350.8699135238999,TJ,CO2,73300.0,kg/TJ,99018764.66130187,kg -a6efd4e2-54f0-35b4-a7d3-41c7f99e5fd7,SESCO,II.1.1,Santa Fe,AR-S,annual,2013,naphtha combustion consumption by to the public,1350.8699135238999,TJ,CH4,3.0,kg/TJ,4052.6097405716996,kg -0673dabd-6045-3967-a462-df10d5678612,SESCO,II.1.1,Santa Fe,AR-S,annual,2013,naphtha combustion consumption by to the public,1350.8699135238999,TJ,N2O,0.6,kg/TJ,810.5219481143399,kg -72eb03fa-ce76-3c9a-a20c-3652d7f6fd3f,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2013,naphtha combustion consumption by to the public,214.33715981138997,TJ,CO2,73300.0,kg/TJ,15710913.814174885,kg -fc81d96c-84e6-3252-bab2-41dce9e05cf2,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2013,naphtha combustion consumption by to the public,214.33715981138997,TJ,CH4,3.0,kg/TJ,643.0114794341699,kg -473560c3-95c9-3f10-8f07-6529fc0eeed3,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2013,naphtha combustion consumption by to the public,214.33715981138997,TJ,N2O,0.6,kg/TJ,128.60229588683399,kg -b066b840-29b6-3119-b2dd-4aede18d3bd8,SESCO,II.1.1,Tucuman,AR-T,annual,2013,naphtha combustion consumption by to the public,210.69139567783998,TJ,CO2,73300.0,kg/TJ,15443679.30318567,kg -c3b651ef-9024-36ac-905c-e16c13549773,SESCO,II.1.1,Tucuman,AR-T,annual,2013,naphtha combustion consumption by to the public,210.69139567783998,TJ,CH4,3.0,kg/TJ,632.0741870335199,kg -ba20cf0f-bf74-3db1-802e-87e37af1988a,SESCO,II.1.1,Tucuman,AR-T,annual,2013,naphtha combustion consumption by to the public,210.69139567783998,TJ,N2O,0.6,kg/TJ,126.41483740670398,kg -3c7ce6d9-8ed9-3aab-ab67-8d79dcbee588,SESCO,II.1.1,Buenos Aires,AR-B,annual,2013,naphtha combustion consumption by to the public,379.22455803848,TJ,CO2,73300.0,kg/TJ,27797160.104220584,kg -3f795218-2655-37a5-af5e-7bcefe34c0df,SESCO,II.1.1,Buenos Aires,AR-B,annual,2013,naphtha combustion consumption by to the public,379.22455803848,TJ,CH4,3.0,kg/TJ,1137.67367411544,kg -4e216c5a-0fda-34cd-bf23-233b5698d742,SESCO,II.1.1,Buenos Aires,AR-B,annual,2013,naphtha combustion consumption by to the public,379.22455803848,TJ,N2O,0.6,kg/TJ,227.53473482308797,kg -7b700e72-2e7e-3ca8-88fe-58d8e4e63992,SESCO,II.1.1,Capital Federal,AR-C,annual,2013,naphtha combustion consumption by to the public,69.14097846117,TJ,CO2,73300.0,kg/TJ,5068033.72120376,kg -ac865dfb-f1fd-3c6d-9b4e-78ecb366945f,SESCO,II.1.1,Capital Federal,AR-C,annual,2013,naphtha combustion consumption by to the public,69.14097846117,TJ,CH4,3.0,kg/TJ,207.42293538350998,kg -021a683e-0cd4-3263-87c8-89f39f5dd419,SESCO,II.1.1,Capital Federal,AR-C,annual,2013,naphtha combustion consumption by to the public,69.14097846117,TJ,N2O,0.6,kg/TJ,41.48458707670199,kg -c7f29313-6bb9-3737-b0b2-d2c8e671ce09,SESCO,II.1.1,Catamarca,AR-K,annual,2013,naphtha combustion consumption by to the public,16.414849248489997,TJ,CO2,73300.0,kg/TJ,1203208.4499143169,kg -7aa7553c-1541-32d5-bd39-0188149f788d,SESCO,II.1.1,Catamarca,AR-K,annual,2013,naphtha combustion consumption by to the public,16.414849248489997,TJ,CH4,3.0,kg/TJ,49.24454774546999,kg -d86a2ec4-02e4-3a5d-84c8-2afdd72a9c29,SESCO,II.1.1,Catamarca,AR-K,annual,2013,naphtha combustion consumption by to the public,16.414849248489997,TJ,N2O,0.6,kg/TJ,9.848909549093998,kg -ecec2e15-4642-3a1c-b2d9-d2cb96e927cd,SESCO,II.1.1,Chaco,AR-H,annual,2013,naphtha combustion consumption by to the public,28.121311061689998,TJ,CO2,73300.0,kg/TJ,2061292.100821877,kg -942b9e8d-0535-3b32-b0b0-c8b94c2de739,SESCO,II.1.1,Chaco,AR-H,annual,2013,naphtha combustion consumption by to the public,28.121311061689998,TJ,CH4,3.0,kg/TJ,84.36393318507,kg -84681bed-77fb-343c-8873-857ac3a8c4ba,SESCO,II.1.1,Chaco,AR-H,annual,2013,naphtha combustion consumption by to the public,28.121311061689998,TJ,N2O,0.6,kg/TJ,16.872786637014,kg -bf57b5d7-c2f6-37ed-be94-8b4f85ac58a2,SESCO,II.1.1,Corrientes,AR-W,annual,2013,naphtha combustion consumption by to the public,67.99324583359,TJ,CO2,73300.0,kg/TJ,4983904.919602146,kg -001901a9-1bdf-35b8-87ec-e18e73f0c7fe,SESCO,II.1.1,Corrientes,AR-W,annual,2013,naphtha combustion consumption by to the public,67.99324583359,TJ,CH4,3.0,kg/TJ,203.97973750077,kg -5582f5c0-784f-32c3-9484-afccd23e47bc,SESCO,II.1.1,Corrientes,AR-W,annual,2013,naphtha combustion consumption by to the public,67.99324583359,TJ,N2O,0.6,kg/TJ,40.79594750015399,kg -b7fd5d03-1853-3dd4-939e-d2c2510e77fc,SESCO,II.1.1,Córdoba,AR-X,annual,2013,naphtha combustion consumption by to the public,159.37531000314,TJ,CO2,73300.0,kg/TJ,11682210.22323016,kg -2e4eb262-bdf7-386a-b82a-59dd45e79c62,SESCO,II.1.1,Córdoba,AR-X,annual,2013,naphtha combustion consumption by to the public,159.37531000314,TJ,CH4,3.0,kg/TJ,478.12593000941996,kg -46a86732-7946-3bcc-aa20-e51a92d9a2e7,SESCO,II.1.1,Córdoba,AR-X,annual,2013,naphtha combustion consumption by to the public,159.37531000314,TJ,N2O,0.6,kg/TJ,95.62518600188399,kg -787bc443-1592-32ba-adf6-ccabf6b962cb,SESCO,II.1.1,Entre Rios,AR-E,annual,2013,naphtha combustion consumption by to the public,103.36460950431,TJ,CO2,73300.0,kg/TJ,7576625.876665923,kg -d6875bd4-a7c8-3808-b2a8-7ffe6a17b8a8,SESCO,II.1.1,Entre Rios,AR-E,annual,2013,naphtha combustion consumption by to the public,103.36460950431,TJ,CH4,3.0,kg/TJ,310.09382851293,kg -e8aec188-4989-3bb4-b6ad-f0e3e519114a,SESCO,II.1.1,Entre Rios,AR-E,annual,2013,naphtha combustion consumption by to the public,103.36460950431,TJ,N2O,0.6,kg/TJ,62.018765702585995,kg -4dd50c8e-16b1-3fa2-b387-f1953e340a5e,SESCO,II.1.1,Jujuy,AR-Y,annual,2013,naphtha combustion consumption by to the public,2.2427325166399994,TJ,CO2,73300.0,kg/TJ,164392.29346971196,kg -9d084528-a0a4-32be-9465-13e9becf50f4,SESCO,II.1.1,Jujuy,AR-Y,annual,2013,naphtha combustion consumption by to the public,2.2427325166399994,TJ,CH4,3.0,kg/TJ,6.728197549919998,kg -73aa4f23-77f2-3549-8790-e2745764bb99,SESCO,II.1.1,Jujuy,AR-Y,annual,2013,naphtha combustion consumption by to the public,2.2427325166399994,TJ,N2O,0.6,kg/TJ,1.3456395099839995,kg -60efd8a6-ab82-3ef9-9c89-1ce98ccca7b3,SESCO,II.1.1,La Pampa,AR-L,annual,2013,naphtha combustion consumption by to the public,3.58961078861,TJ,CO2,73300.0,kg/TJ,263118.470805113,kg -36565f29-6bdf-3944-91d1-7859284fd8fc,SESCO,II.1.1,La Pampa,AR-L,annual,2013,naphtha combustion consumption by to the public,3.58961078861,TJ,CH4,3.0,kg/TJ,10.76883236583,kg -0eea4e79-12b0-300d-8c2f-6b0c84e96bcb,SESCO,II.1.1,La Pampa,AR-L,annual,2013,naphtha combustion consumption by to the public,3.58961078861,TJ,N2O,0.6,kg/TJ,2.153766473166,kg -1179d870-9060-310f-b0fe-f3d40028f49c,SESCO,II.1.1,La Rioja,AR-F,annual,2013,naphtha combustion consumption by to the public,5.555535078939998,TJ,CO2,73300.0,kg/TJ,407220.7212863019,kg -cb3af812-0a82-31ce-8a81-9cfd9d2a06e5,SESCO,II.1.1,La Rioja,AR-F,annual,2013,naphtha combustion consumption by to the public,5.555535078939998,TJ,CH4,3.0,kg/TJ,16.666605236819997,kg -6276318d-7564-3015-b5a1-70722bffedde,SESCO,II.1.1,La Rioja,AR-F,annual,2013,naphtha combustion consumption by to the public,5.555535078939998,TJ,N2O,0.6,kg/TJ,3.333321047363999,kg -b646b9c2-cca5-35bc-842f-afc3d0418a60,SESCO,II.1.1,Mendoza,AR-M,annual,2013,naphtha combustion consumption by to the public,66.42757436622999,TJ,CO2,73300.0,kg/TJ,4869141.201044658,kg -c292b064-17a7-3f55-97da-1c6714688c3a,SESCO,II.1.1,Mendoza,AR-M,annual,2013,naphtha combustion consumption by to the public,66.42757436622999,TJ,CH4,3.0,kg/TJ,199.28272309868998,kg -d3e799fb-23e1-3991-aa15-5d311ecbc793,SESCO,II.1.1,Mendoza,AR-M,annual,2013,naphtha combustion consumption by to the public,66.42757436622999,TJ,N2O,0.6,kg/TJ,39.856544619737996,kg -09b6a1c6-12a9-36cf-a739-eb17b4251b84,SESCO,II.1.1,Misiones,AR-N,annual,2013,naphtha combustion consumption by to the public,31.92853297172,TJ,CO2,73300.0,kg/TJ,2340361.466827076,kg -f7c59c75-ac49-3de9-8b50-69b364e9707b,SESCO,II.1.1,Misiones,AR-N,annual,2013,naphtha combustion consumption by to the public,31.92853297172,TJ,CH4,3.0,kg/TJ,95.78559891516,kg -e4348b1e-9c05-3718-bcfa-861d825ed346,SESCO,II.1.1,Misiones,AR-N,annual,2013,naphtha combustion consumption by to the public,31.92853297172,TJ,N2O,0.6,kg/TJ,19.157119783031998,kg -0769d20c-5b62-32b5-bc43-0f8712bec75c,SESCO,II.1.1,Rio Negro,AR-R,annual,2013,naphtha combustion consumption by to the public,1.3955365593400002,TJ,CO2,73300.0,kg/TJ,102292.82979962202,kg -06fedcb5-6789-38ad-9a61-0cfc6c6a7b57,SESCO,II.1.1,Rio Negro,AR-R,annual,2013,naphtha combustion consumption by to the public,1.3955365593400002,TJ,CH4,3.0,kg/TJ,4.186609678020001,kg -13244d77-1006-30b8-984d-b6dbde230350,SESCO,II.1.1,Rio Negro,AR-R,annual,2013,naphtha combustion consumption by to the public,1.3955365593400002,TJ,N2O,0.6,kg/TJ,0.8373219356040001,kg -6eabc73b-ee29-302a-8a4b-9389048d274e,SESCO,II.1.1,San Juan,AR-J,annual,2013,naphtha combustion consumption by to the public,61.04368802300999,TJ,CO2,73300.0,kg/TJ,4474502.332086632,kg -52d97248-7c22-3293-9ba7-50809ac63f2a,SESCO,II.1.1,San Juan,AR-J,annual,2013,naphtha combustion consumption by to the public,61.04368802300999,TJ,CH4,3.0,kg/TJ,183.13106406902997,kg -7ef55a77-d39d-3c60-8950-1041e3d0d91d,SESCO,II.1.1,San Juan,AR-J,annual,2013,naphtha combustion consumption by to the public,61.04368802300999,TJ,N2O,0.6,kg/TJ,36.62621281380599,kg -3184b0ba-1f17-3f46-acc9-85769742a469,SESCO,II.1.1,San Luis,AR-D,annual,2013,naphtha combustion consumption by to the public,35.41363167265,TJ,CO2,73300.0,kg/TJ,2595819.201605245,kg -b6f41625-0835-3c45-b918-9520b1cd0d59,SESCO,II.1.1,San Luis,AR-D,annual,2013,naphtha combustion consumption by to the public,35.41363167265,TJ,CH4,3.0,kg/TJ,106.24089501795,kg -47eac5ff-4453-39f9-809f-146abefe8acb,SESCO,II.1.1,San Luis,AR-D,annual,2013,naphtha combustion consumption by to the public,35.41363167265,TJ,N2O,0.6,kg/TJ,21.24817900359,kg -b13a85df-49e3-3ac7-8a05-d05f8ac5964e,SESCO,II.1.1,Santa Fe,AR-S,annual,2013,naphtha combustion consumption by to the public,240.47756613033997,TJ,CO2,73300.0,kg/TJ,17627005.59735392,kg -e43ca2da-291c-31cc-a39e-75ac224036e6,SESCO,II.1.1,Santa Fe,AR-S,annual,2013,naphtha combustion consumption by to the public,240.47756613033997,TJ,CH4,3.0,kg/TJ,721.4326983910199,kg -963b79fc-8247-36b5-aa89-1ef6f9340560,SESCO,II.1.1,Santa Fe,AR-S,annual,2013,naphtha combustion consumption by to the public,240.47756613033997,TJ,N2O,0.6,kg/TJ,144.28653967820398,kg -59c584b7-cea2-3cb4-b919-44885aef21f0,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2013,naphtha combustion consumption by to the public,27.29202980581,TJ,CO2,73300.0,kg/TJ,2000505.7847658729,kg -616029be-92d6-3927-80bc-84edbdc234e7,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2013,naphtha combustion consumption by to the public,27.29202980581,TJ,CH4,3.0,kg/TJ,81.87608941743,kg -0581c7f4-2307-3cdc-af95-2b071727408c,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2013,naphtha combustion consumption by to the public,27.29202980581,TJ,N2O,0.6,kg/TJ,16.375217883486,kg -21bf8c9c-a992-3ecc-bd9b-e8aced300d94,SESCO,II.1.1,Tucuman,AR-T,annual,2013,naphtha combustion consumption by to the public,29.140210510179998,TJ,CO2,73300.0,kg/TJ,2135977.4303961936,kg -cb9c18eb-58e1-3e18-b715-9b8878df2829,SESCO,II.1.1,Tucuman,AR-T,annual,2013,naphtha combustion consumption by to the public,29.140210510179998,TJ,CH4,3.0,kg/TJ,87.42063153053999,kg -ec08fe25-4b28-387d-89df-873c15d1f9b1,SESCO,II.1.1,Tucuman,AR-T,annual,2013,naphtha combustion consumption by to the public,29.140210510179998,TJ,N2O,0.6,kg/TJ,17.484126306108,kg -819ccc68-3668-3912-835f-caacc98b0702,SESCO,II.5.1,Buenos Aires,AR-B,annual,2013,naphtha combustion consumption by agriculture machines,4.48672763,TJ,CO2,73300.0,kg/TJ,328877.135279,kg -84d3153a-57fa-3e6e-ae77-b9c7a6812286,SESCO,II.5.1,Buenos Aires,AR-B,annual,2013,naphtha combustion consumption by agriculture machines,4.48672763,TJ,CH4,3.0,kg/TJ,13.460182889999999,kg -5a0097f2-673b-307e-a367-5ff8a1fc3480,SESCO,II.5.1,Buenos Aires,AR-B,annual,2013,naphtha combustion consumption by agriculture machines,4.48672763,TJ,N2O,0.6,kg/TJ,2.6920365779999997,kg -8cfc1b1e-e683-3de0-ac97-14f35683b866,SESCO,II.1.1,Buenos Aires,AR-B,annual,2013,naphtha combustion consumption by to the public,5138.661555142499,TJ,CO2,73300.0,kg/TJ,376663891.9919452,kg -a98dddf5-c6ff-31a7-88f6-f34962377a09,SESCO,II.1.1,Buenos Aires,AR-B,annual,2013,naphtha combustion consumption by to the public,5138.661555142499,TJ,CH4,3.0,kg/TJ,15415.984665427499,kg -34d6b239-e9bf-3b1c-8e93-76eccdb555bc,SESCO,II.1.1,Buenos Aires,AR-B,annual,2013,naphtha combustion consumption by to the public,5138.661555142499,TJ,N2O,0.6,kg/TJ,3083.1969330854995,kg -582e853d-af71-3b6f-badd-0aefe2cb2d7c,SESCO,II.1.1,Capital Federal,AR-C,annual,2013,naphtha combustion consumption by to the public,656.7803317922,TJ,CO2,73300.0,kg/TJ,48141998.32036825,kg -93bf5375-2269-3611-bc7c-9847970f1853,SESCO,II.1.1,Capital Federal,AR-C,annual,2013,naphtha combustion consumption by to the public,656.7803317922,TJ,CH4,3.0,kg/TJ,1970.3409953766,kg -ddcae0ef-fe45-3fe2-89a4-550707be5c14,SESCO,II.1.1,Capital Federal,AR-C,annual,2013,naphtha combustion consumption by to the public,656.7803317922,TJ,N2O,0.6,kg/TJ,394.06819907531997,kg -67208cb9-59ed-32e8-929e-c4710d7995c3,SESCO,II.1.1,Chaco,AR-H,annual,2013,naphtha combustion consumption by to the public,5.6491218399,TJ,CO2,73300.0,kg/TJ,414080.63086467003,kg -5ff54b38-6bb2-37fb-bf52-e464d50a8d2e,SESCO,II.1.1,Chaco,AR-H,annual,2013,naphtha combustion consumption by to the public,5.6491218399,TJ,CH4,3.0,kg/TJ,16.9473655197,kg -c9397861-eb97-3d51-bf10-9a6e21d1c793,SESCO,II.1.1,Chaco,AR-H,annual,2013,naphtha combustion consumption by to the public,5.6491218399,TJ,N2O,0.6,kg/TJ,3.38947310394,kg -aff1fbcb-1438-3af3-8c63-c26b083435e9,SESCO,II.1.1,Chubut,AR-U,annual,2013,naphtha combustion consumption by to the public,1521.7293974574998,TJ,CO2,73300.0,kg/TJ,111542764.83363473,kg -5fec8fa1-b3d6-3b84-8196-b997a2332588,SESCO,II.1.1,Chubut,AR-U,annual,2013,naphtha combustion consumption by to the public,1521.7293974574998,TJ,CH4,3.0,kg/TJ,4565.1881923724995,kg -72c5b360-4292-3d57-8dc8-81943569065a,SESCO,II.1.1,Chubut,AR-U,annual,2013,naphtha combustion consumption by to the public,1521.7293974574998,TJ,N2O,0.6,kg/TJ,913.0376384744999,kg -163b668c-9d6b-3f9f-85b3-4d90176fb8c2,SESCO,II.1.1,Córdoba,AR-X,annual,2013,naphtha combustion consumption by to the public,644.5573004332,TJ,CO2,73300.0,kg/TJ,47246050.12175356,kg -195e22dc-b260-3ae4-994e-3cbb484cb881,SESCO,II.1.1,Córdoba,AR-X,annual,2013,naphtha combustion consumption by to the public,644.5573004332,TJ,CH4,3.0,kg/TJ,1933.6719012996,kg -1cbcc9c3-935f-3b8f-9873-9ac79d657274,SESCO,II.1.1,Córdoba,AR-X,annual,2013,naphtha combustion consumption by to the public,644.5573004332,TJ,N2O,0.6,kg/TJ,386.73438025992,kg -ce010818-107e-35c1-8408-e4782f3261ce,SESCO,II.1.1,Entre Rios,AR-E,annual,2013,naphtha combustion consumption by to the public,118.35159714069998,TJ,CO2,73300.0,kg/TJ,8675172.070413308,kg -db5fa0c9-b041-30d5-9052-e3698e9acfab,SESCO,II.1.1,Entre Rios,AR-E,annual,2013,naphtha combustion consumption by to the public,118.35159714069998,TJ,CH4,3.0,kg/TJ,355.0547914220999,kg -ed060c2e-f909-3b54-b085-3e011e055822,SESCO,II.1.1,Entre Rios,AR-E,annual,2013,naphtha combustion consumption by to the public,118.35159714069998,TJ,N2O,0.6,kg/TJ,71.01095828441998,kg -ebfccaa1-fdd4-3cf3-b523-c5903feeffdd,SESCO,II.1.1,La Pampa,AR-L,annual,2013,naphtha combustion consumption by to the public,234.215234561,TJ,CO2,73300.0,kg/TJ,17167976.6933213,kg -466b774e-8a02-3885-94a2-78aaded3df95,SESCO,II.1.1,La Pampa,AR-L,annual,2013,naphtha combustion consumption by to the public,234.215234561,TJ,CH4,3.0,kg/TJ,702.645703683,kg -cc4e8242-7de7-31b2-b178-84f27d846b1f,SESCO,II.1.1,La Pampa,AR-L,annual,2013,naphtha combustion consumption by to the public,234.215234561,TJ,N2O,0.6,kg/TJ,140.5291407366,kg -0a567a98-729a-36a7-9b00-b24a41372622,SESCO,II.1.1,Mendoza,AR-M,annual,2013,naphtha combustion consumption by to the public,34.0724930623,TJ,CO2,73300.0,kg/TJ,2497513.7414665897,kg -1bbb3369-c17e-3513-a2af-04c0754e2d6d,SESCO,II.1.1,Mendoza,AR-M,annual,2013,naphtha combustion consumption by to the public,34.0724930623,TJ,CH4,3.0,kg/TJ,102.2174791869,kg -5e65ae99-9386-3856-b771-9437e930520e,SESCO,II.1.1,Mendoza,AR-M,annual,2013,naphtha combustion consumption by to the public,34.0724930623,TJ,N2O,0.6,kg/TJ,20.44349583738,kg -26e7ecd7-e766-3d66-af8b-5f03a330f2c5,SESCO,II.1.1,Neuquén,AR-Q,annual,2013,naphtha combustion consumption by to the public,591.3928633459,TJ,CO2,73300.0,kg/TJ,43349096.88325447,kg -d980ce8d-50da-3b83-987a-9c16115716dd,SESCO,II.1.1,Neuquén,AR-Q,annual,2013,naphtha combustion consumption by to the public,591.3928633459,TJ,CH4,3.0,kg/TJ,1774.1785900377,kg -b834cbcd-a737-381e-853a-a8111344777b,SESCO,II.1.1,Neuquén,AR-Q,annual,2013,naphtha combustion consumption by to the public,591.3928633459,TJ,N2O,0.6,kg/TJ,354.83571800754,kg -6cc0e20d-051a-3a4f-8328-7736c1652577,SESCO,II.1.1,Rio Negro,AR-R,annual,2013,naphtha combustion consumption by to the public,1090.9907579647997,TJ,CO2,73300.0,kg/TJ,79969622.55881982,kg -0cd18306-a7c1-3f66-9cc7-d92851d375de,SESCO,II.1.1,Rio Negro,AR-R,annual,2013,naphtha combustion consumption by to the public,1090.9907579647997,TJ,CH4,3.0,kg/TJ,3272.972273894399,kg -91b203b5-a70a-3555-b4f6-3086396324b3,SESCO,II.1.1,Rio Negro,AR-R,annual,2013,naphtha combustion consumption by to the public,1090.9907579647997,TJ,N2O,0.6,kg/TJ,654.5944547788798,kg -425e9ee1-2a02-3f6f-959f-19609468391b,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2013,naphtha combustion consumption by to the public,960.5723436000999,TJ,CO2,73300.0,kg/TJ,70409952.78588732,kg -0e8dd43f-4768-33a6-88b7-056d859a7779,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2013,naphtha combustion consumption by to the public,960.5723436000999,TJ,CH4,3.0,kg/TJ,2881.7170308002997,kg -b16f6a19-323b-3b23-add7-b1692fcdc827,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2013,naphtha combustion consumption by to the public,960.5723436000999,TJ,N2O,0.6,kg/TJ,576.3434061600599,kg -ded24dc4-c365-3625-8574-5fee08edec18,SESCO,II.1.1,Santa Fe,AR-S,annual,2013,naphtha combustion consumption by to the public,627.8151390895999,TJ,CO2,73300.0,kg/TJ,46018849.69526768,kg -66070480-2f21-30f8-b77e-d5d3a25b1803,SESCO,II.1.1,Santa Fe,AR-S,annual,2013,naphtha combustion consumption by to the public,627.8151390895999,TJ,CH4,3.0,kg/TJ,1883.4454172687997,kg -8c2a855e-ef2c-3bb7-a789-09cb0250ecef,SESCO,II.1.1,Santa Fe,AR-S,annual,2013,naphtha combustion consumption by to the public,627.8151390895999,TJ,N2O,0.6,kg/TJ,376.68908345375996,kg -fd97de7f-78ae-349e-910a-51032eace2fe,SESCO,II.1.1,Buenos Aires,AR-B,annual,2013,naphtha combustion consumption by to the public,1439.6369691781,TJ,CO2,73300.0,kg/TJ,105525389.84075472,kg -ff524bae-d5fc-348b-92ca-2faee0d2f6ac,SESCO,II.1.1,Buenos Aires,AR-B,annual,2013,naphtha combustion consumption by to the public,1439.6369691781,TJ,CH4,3.0,kg/TJ,4318.910907534299,kg -f03fb9f7-25bc-3faa-8646-81dd68f093a7,SESCO,II.1.1,Buenos Aires,AR-B,annual,2013,naphtha combustion consumption by to the public,1439.6369691781,TJ,N2O,0.6,kg/TJ,863.78218150686,kg -c2bce913-2d33-3d5c-bfd7-6edb71455098,SESCO,II.1.1,Capital Federal,AR-C,annual,2013,naphtha combustion consumption by to the public,250.3072874302,TJ,CO2,73300.0,kg/TJ,18347524.168633662,kg -74f80d5c-1d6c-39d8-8fe0-b22cbb9c1884,SESCO,II.1.1,Capital Federal,AR-C,annual,2013,naphtha combustion consumption by to the public,250.3072874302,TJ,CH4,3.0,kg/TJ,750.9218622906001,kg -c677f1f4-a14e-3794-8ded-9b6d11f6b191,SESCO,II.1.1,Capital Federal,AR-C,annual,2013,naphtha combustion consumption by to the public,250.3072874302,TJ,N2O,0.6,kg/TJ,150.18437245812,kg -01dc991e-359b-39f8-b8e1-187506049785,SESCO,II.1.1,Chubut,AR-U,annual,2013,naphtha combustion consumption by to the public,252.53831515989998,TJ,CO2,73300.0,kg/TJ,18511058.50122067,kg -96547c61-9e88-3e81-bd71-656244bbfd6d,SESCO,II.1.1,Chubut,AR-U,annual,2013,naphtha combustion consumption by to the public,252.53831515989998,TJ,CH4,3.0,kg/TJ,757.6149454796999,kg -7d09fee3-8bb5-3ece-bbc5-58f77f072d54,SESCO,II.1.1,Chubut,AR-U,annual,2013,naphtha combustion consumption by to the public,252.53831515989998,TJ,N2O,0.6,kg/TJ,151.52298909593998,kg -76cc7fb3-37d4-3d0a-8082-3a212cf5a1de,SESCO,II.1.1,Córdoba,AR-X,annual,2013,naphtha combustion consumption by to the public,156.34989635649998,TJ,CO2,73300.0,kg/TJ,11460447.402931448,kg -643fee03-a909-3448-8d95-edefa00c8e98,SESCO,II.1.1,Córdoba,AR-X,annual,2013,naphtha combustion consumption by to the public,156.34989635649998,TJ,CH4,3.0,kg/TJ,469.04968906949995,kg -ac98a0b7-983c-3bab-b437-9e060e406f8a,SESCO,II.1.1,Córdoba,AR-X,annual,2013,naphtha combustion consumption by to the public,156.34989635649998,TJ,N2O,0.6,kg/TJ,93.80993781389999,kg -48ee69cf-156a-36f3-9bbb-beded440940c,SESCO,II.1.1,Entre Rios,AR-E,annual,2013,naphtha combustion consumption by to the public,30.0022290953,TJ,CO2,73300.0,kg/TJ,2199163.3926854897,kg -fb60eccf-5418-331b-a38e-7ab515bcf8a1,SESCO,II.1.1,Entre Rios,AR-E,annual,2013,naphtha combustion consumption by to the public,30.0022290953,TJ,CH4,3.0,kg/TJ,90.0066872859,kg -34576d80-e967-34fd-8a13-587276131eef,SESCO,II.1.1,Entre Rios,AR-E,annual,2013,naphtha combustion consumption by to the public,30.0022290953,TJ,N2O,0.6,kg/TJ,18.00133745718,kg -4458cd5b-bf2b-34cb-b23f-9fa15291e27d,SESCO,II.1.1,La Pampa,AR-L,annual,2013,naphtha combustion consumption by to the public,56.71877569049999,TJ,CO2,73300.0,kg/TJ,4157486.258113649,kg -280088b4-7e35-3ce9-a974-5fddd0308edc,SESCO,II.1.1,La Pampa,AR-L,annual,2013,naphtha combustion consumption by to the public,56.71877569049999,TJ,CH4,3.0,kg/TJ,170.15632707149996,kg -660cf72d-6379-3d88-90bc-6874fcfd1b60,SESCO,II.1.1,La Pampa,AR-L,annual,2013,naphtha combustion consumption by to the public,56.71877569049999,TJ,N2O,0.6,kg/TJ,34.031265414299995,kg -163a6241-b18d-3647-aec1-8cd8c86ba1f3,SESCO,II.1.1,Mendoza,AR-M,annual,2013,naphtha combustion consumption by to the public,3.2391403506,TJ,CO2,73300.0,kg/TJ,237428.98769898,kg -26b13680-a3c7-34a7-8933-c3b6a7ced321,SESCO,II.1.1,Mendoza,AR-M,annual,2013,naphtha combustion consumption by to the public,3.2391403506,TJ,CH4,3.0,kg/TJ,9.7174210518,kg -3ef45ca3-6203-3712-87dc-ab9fcea909a8,SESCO,II.1.1,Mendoza,AR-M,annual,2013,naphtha combustion consumption by to the public,3.2391403506,TJ,N2O,0.6,kg/TJ,1.9434842103599999,kg -c7c854a6-b3d3-3839-bcec-3344edd6fdda,SESCO,II.1.1,Neuquén,AR-Q,annual,2013,naphtha combustion consumption by to the public,168.7167735561,TJ,CO2,73300.0,kg/TJ,12366939.501662131,kg -9e0182c5-69a9-3971-8dbd-84ba15c79841,SESCO,II.1.1,Neuquén,AR-Q,annual,2013,naphtha combustion consumption by to the public,168.7167735561,TJ,CH4,3.0,kg/TJ,506.1503206683,kg -decfb3e3-2613-30cf-88c8-566c51398ff3,SESCO,II.1.1,Neuquén,AR-Q,annual,2013,naphtha combustion consumption by to the public,168.7167735561,TJ,N2O,0.6,kg/TJ,101.23006413366001,kg -b4dfc6ff-191a-3a85-b793-5aa6c552f063,SESCO,II.1.1,Rio Negro,AR-R,annual,2013,naphtha combustion consumption by to the public,204.0064807165,TJ,CO2,73300.0,kg/TJ,14953675.03651945,kg -0d0c7a77-2f46-314f-a813-c8ccbe27a5a8,SESCO,II.1.1,Rio Negro,AR-R,annual,2013,naphtha combustion consumption by to the public,204.0064807165,TJ,CH4,3.0,kg/TJ,612.0194421495,kg -0972723e-6fc4-3d66-ad70-0094bd3718eb,SESCO,II.1.1,Rio Negro,AR-R,annual,2013,naphtha combustion consumption by to the public,204.0064807165,TJ,N2O,0.6,kg/TJ,122.4038884299,kg -1e08c4a8-aa58-3ff9-a0a8-97d09edcbf28,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2013,naphtha combustion consumption by to the public,189.49721523039997,TJ,CO2,73300.0,kg/TJ,13890145.876388319,kg -9179ec15-e14b-38f5-babe-ddb556a68951,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2013,naphtha combustion consumption by to the public,189.49721523039997,TJ,CH4,3.0,kg/TJ,568.4916456911999,kg -aad2d62f-2b0a-3a3a-8d58-8647d5ce5ba4,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2013,naphtha combustion consumption by to the public,189.49721523039997,TJ,N2O,0.6,kg/TJ,113.69832913823998,kg -51fc9c64-186a-3ff4-9e31-8657e71cd4bd,SESCO,II.1.1,Santa Fe,AR-S,annual,2013,naphtha combustion consumption by to the public,216.43874238909996,TJ,CO2,73300.0,kg/TJ,15864959.817121027,kg -f190cca4-2729-32fb-9c4a-e690ce5905f9,SESCO,II.1.1,Santa Fe,AR-S,annual,2013,naphtha combustion consumption by to the public,216.43874238909996,TJ,CH4,3.0,kg/TJ,649.3162271672999,kg -2e0b24e3-7bff-304b-ba20-d844bc603e85,SESCO,II.1.1,Santa Fe,AR-S,annual,2013,naphtha combustion consumption by to the public,216.43874238909996,TJ,N2O,0.6,kg/TJ,129.86324543345998,kg -5ab3f4a4-1e54-3215-a588-bc0ce9881e82,SESCO,II.1.1,Buenos Aires,AR-B,annual,2013,naphtha combustion consumption by freight transport,0.1268394358,TJ,CO2,73300.0,kg/TJ,9297.33064414,kg -50b78d04-c21a-3305-bc29-67e1ff0efc9d,SESCO,II.1.1,Buenos Aires,AR-B,annual,2013,naphtha combustion consumption by freight transport,0.1268394358,TJ,CH4,3.0,kg/TJ,0.38051830740000003,kg -e8d43d38-1160-3603-866d-b01815726337,SESCO,II.1.1,Buenos Aires,AR-B,annual,2013,naphtha combustion consumption by freight transport,0.1268394358,TJ,N2O,0.6,kg/TJ,0.07610366148,kg -e7a4188b-84b2-351d-8364-b9cb8c4c27ea,SESCO,II.1.1,Buenos Aires,AR-B,annual,2013,naphtha combustion consumption by to the public,39.28866018,TJ,CO2,73300.0,kg/TJ,2879858.7911940003,kg -c5c75a92-2cdc-3f80-a1d8-82a17b6a76dd,SESCO,II.1.1,Buenos Aires,AR-B,annual,2013,naphtha combustion consumption by to the public,39.28866018,TJ,CH4,3.0,kg/TJ,117.86598054000001,kg -a084d6e4-0c41-330e-8135-a60023c19552,SESCO,II.1.1,Buenos Aires,AR-B,annual,2013,naphtha combustion consumption by to the public,39.28866018,TJ,N2O,0.6,kg/TJ,23.573196108,kg -713e2233-0c41-3167-9c24-ee63165a4f92,SESCO,II.1.1,Capital Federal,AR-C,annual,2013,naphtha combustion consumption by to the public,12.013994299999998,TJ,CO2,73300.0,kg/TJ,880625.7821899999,kg -82d568c6-979d-38b4-a209-ef787a639078,SESCO,II.1.1,Capital Federal,AR-C,annual,2013,naphtha combustion consumption by to the public,12.013994299999998,TJ,CH4,3.0,kg/TJ,36.041982899999994,kg -1c0c2aea-c257-30de-874f-bdb5907af555,SESCO,II.1.1,Capital Federal,AR-C,annual,2013,naphtha combustion consumption by to the public,12.013994299999998,TJ,N2O,0.6,kg/TJ,7.208396579999999,kg -61d80234-bf48-33d3-a417-032309b112cb,SESCO,II.1.1,Córdoba,AR-X,annual,2013,naphtha combustion consumption by to the public,2.3190552,TJ,CO2,73300.0,kg/TJ,169986.74616,kg -a65401e9-99b7-3588-a2b6-e5f266d03cce,SESCO,II.1.1,Córdoba,AR-X,annual,2013,naphtha combustion consumption by to the public,2.3190552,TJ,CH4,3.0,kg/TJ,6.957165600000001,kg -2ced1d5b-0f08-35c9-b926-11c5b4b0b1b3,SESCO,II.1.1,Córdoba,AR-X,annual,2013,naphtha combustion consumption by to the public,2.3190552,TJ,N2O,0.6,kg/TJ,1.39143312,kg -02cd56ca-238e-3075-804c-6a3173a336c4,SESCO,II.1.1,Entre Rios,AR-E,annual,2013,naphtha combustion consumption by to the public,2.254637,TJ,CO2,73300.0,kg/TJ,165264.8921,kg -84604f4d-e9c3-33b1-83f8-b5a1b523a364,SESCO,II.1.1,Entre Rios,AR-E,annual,2013,naphtha combustion consumption by to the public,2.254637,TJ,CH4,3.0,kg/TJ,6.763910999999999,kg -70b7e0b9-bd00-31f7-bec6-e6e8147779af,SESCO,II.1.1,Entre Rios,AR-E,annual,2013,naphtha combustion consumption by to the public,2.254637,TJ,N2O,0.6,kg/TJ,1.3527821999999998,kg -f064d459-bd05-3176-b165-584bc15ea14e,SESCO,II.1.1,Santa Fe,AR-S,annual,2013,naphtha combustion consumption by to the public,13.4956129,TJ,CO2,73300.0,kg/TJ,989228.42557,kg -729a8ab3-0bc2-39f3-8a73-d0723bb20b58,SESCO,II.1.1,Santa Fe,AR-S,annual,2013,naphtha combustion consumption by to the public,13.4956129,TJ,CH4,3.0,kg/TJ,40.4868387,kg -c3f3ec39-f183-386c-9678-625f5250490c,SESCO,II.1.1,Santa Fe,AR-S,annual,2013,naphtha combustion consumption by to the public,13.4956129,TJ,N2O,0.6,kg/TJ,8.09736774,kg -c9bea3b0-716c-337f-ba01-b6218fda2cbd,SESCO,II.1.1,Buenos Aires,AR-B,annual,2013,naphtha combustion consumption by to the public,1267.76950146,TJ,CO2,73300.0,kg/TJ,92927504.45701799,kg -4c6cfe9d-f623-3c4a-9030-127d7eff094b,SESCO,II.1.1,Buenos Aires,AR-B,annual,2013,naphtha combustion consumption by to the public,1267.76950146,TJ,CH4,3.0,kg/TJ,3803.3085043799997,kg -c0f7c677-7d7c-36e3-b76c-d89aca14777d,SESCO,II.1.1,Buenos Aires,AR-B,annual,2013,naphtha combustion consumption by to the public,1267.76950146,TJ,N2O,0.6,kg/TJ,760.6617008759999,kg -589a0067-bd5d-3237-9d83-fdbc5cd7a0d6,SESCO,II.1.1,Capital Federal,AR-C,annual,2013,naphtha combustion consumption by to the public,184.2682611,TJ,CO2,73300.0,kg/TJ,13506863.53863,kg -340df49c-a139-3bf0-a78e-478298ae0ea3,SESCO,II.1.1,Capital Federal,AR-C,annual,2013,naphtha combustion consumption by to the public,184.2682611,TJ,CH4,3.0,kg/TJ,552.8047832999999,kg -6b31e16a-5e8a-3e77-8737-14d1e6ee7a41,SESCO,II.1.1,Capital Federal,AR-C,annual,2013,naphtha combustion consumption by to the public,184.2682611,TJ,N2O,0.6,kg/TJ,110.56095665999999,kg -f1a5d366-bd20-341d-99fb-499e06c679b5,SESCO,II.1.1,Chaco,AR-H,annual,2013,naphtha combustion consumption by to the public,2.9310281,TJ,CO2,73300.0,kg/TJ,214844.35973,kg -bca58983-457d-3c41-ac34-f59fce2da90c,SESCO,II.1.1,Chaco,AR-H,annual,2013,naphtha combustion consumption by to the public,2.9310281,TJ,CH4,3.0,kg/TJ,8.7930843,kg -8bbe8370-2f69-3f37-a4f1-a63805874167,SESCO,II.1.1,Chaco,AR-H,annual,2013,naphtha combustion consumption by to the public,2.9310281,TJ,N2O,0.6,kg/TJ,1.7586168599999998,kg -33afeee2-e6a7-3b0f-aa43-a6d8bbc4e9d6,SESCO,II.1.1,Córdoba,AR-X,annual,2013,naphtha combustion consumption by to the public,262.8906742,TJ,CO2,73300.0,kg/TJ,19269886.41886,kg -ded7606a-69fc-3d4e-9d42-5c367bad432e,SESCO,II.1.1,Córdoba,AR-X,annual,2013,naphtha combustion consumption by to the public,262.8906742,TJ,CH4,3.0,kg/TJ,788.6720226,kg -d21ba7f1-6b7d-33f2-81ea-0a0d664316cc,SESCO,II.1.1,Córdoba,AR-X,annual,2013,naphtha combustion consumption by to the public,262.8906742,TJ,N2O,0.6,kg/TJ,157.73440451999997,kg -5b1cfcd7-6e44-3240-97c0-062ff5ad9dd8,SESCO,II.1.1,Entre Rios,AR-E,annual,2013,naphtha combustion consumption by to the public,182.88326979999997,TJ,CO2,73300.0,kg/TJ,13405343.676339997,kg -3e45783f-8aad-3b5c-9c22-073595efd063,SESCO,II.1.1,Entre Rios,AR-E,annual,2013,naphtha combustion consumption by to the public,182.88326979999997,TJ,CH4,3.0,kg/TJ,548.6498093999999,kg -9702960b-2297-38fa-9d52-8c96c0559f08,SESCO,II.1.1,Entre Rios,AR-E,annual,2013,naphtha combustion consumption by to the public,182.88326979999997,TJ,N2O,0.6,kg/TJ,109.72996187999998,kg -9001703f-e1af-37b0-8466-290008492598,SESCO,II.1.1,Rio Negro,AR-R,annual,2013,naphtha combustion consumption by to the public,0.4509274,TJ,CO2,73300.0,kg/TJ,33052.97842,kg -49e50000-4d59-3164-abc2-c6273159e461,SESCO,II.1.1,Rio Negro,AR-R,annual,2013,naphtha combustion consumption by to the public,0.4509274,TJ,CH4,3.0,kg/TJ,1.3527822,kg -b95ee241-3104-3356-9bd8-dd8d44705a21,SESCO,II.1.1,Rio Negro,AR-R,annual,2013,naphtha combustion consumption by to the public,0.4509274,TJ,N2O,0.6,kg/TJ,0.27055643999999995,kg -191e6139-28b7-386b-a3a6-4c09e86d67f6,SESCO,II.1.1,Santa Fe,AR-S,annual,2013,naphtha combustion consumption by to the public,140.15789865,TJ,CO2,73300.0,kg/TJ,10273573.971044999,kg -16f1afd7-46fc-399e-9c53-5b2bb6909cd2,SESCO,II.1.1,Santa Fe,AR-S,annual,2013,naphtha combustion consumption by to the public,140.15789865,TJ,CH4,3.0,kg/TJ,420.47369595,kg -7deee6f8-5444-36a1-8918-52ac0c82615a,SESCO,II.1.1,Santa Fe,AR-S,annual,2013,naphtha combustion consumption by to the public,140.15789865,TJ,N2O,0.6,kg/TJ,84.09473919,kg -816fa3f7-5970-316d-8510-72c288dca226,SESCO,II.1.1,Buenos Aires,AR-B,annual,2013,naphtha combustion consumption by to the public,139.23671839,TJ,CO2,73300.0,kg/TJ,10206051.457987,kg -63e1fb0d-bc31-3a20-8b57-0539fb0db396,SESCO,II.1.1,Buenos Aires,AR-B,annual,2013,naphtha combustion consumption by to the public,139.23671839,TJ,CH4,3.0,kg/TJ,417.71015517,kg -94704624-41ef-3585-a64f-a18ad5aac588,SESCO,II.1.1,Buenos Aires,AR-B,annual,2013,naphtha combustion consumption by to the public,139.23671839,TJ,N2O,0.6,kg/TJ,83.54203103399999,kg -375a26ba-015b-3d78-8b51-27536faf0ba8,SESCO,II.1.1,Capital Federal,AR-C,annual,2013,naphtha combustion consumption by to the public,13.205730999999998,TJ,CO2,73300.0,kg/TJ,967980.0822999999,kg -cbfbee96-c671-3249-af7a-aa37bddaac96,SESCO,II.1.1,Capital Federal,AR-C,annual,2013,naphtha combustion consumption by to the public,13.205730999999998,TJ,CH4,3.0,kg/TJ,39.61719299999999,kg -17e5ef48-15ca-3837-9859-6645be0292e7,SESCO,II.1.1,Capital Federal,AR-C,annual,2013,naphtha combustion consumption by to the public,13.205730999999998,TJ,N2O,0.6,kg/TJ,7.923438599999999,kg -ce398703-e87b-3153-9bad-3215c35d7cd5,SESCO,II.1.1,Chaco,AR-H,annual,2013,naphtha combustion consumption by to the public,0.16104549999999998,TJ,CO2,73300.0,kg/TJ,11804.635149999998,kg -942a029b-67f3-373f-862b-47932bf00e51,SESCO,II.1.1,Chaco,AR-H,annual,2013,naphtha combustion consumption by to the public,0.16104549999999998,TJ,CH4,3.0,kg/TJ,0.48313649999999997,kg -534aacb3-76dc-3b61-b8e1-fd36ff7a248f,SESCO,II.1.1,Chaco,AR-H,annual,2013,naphtha combustion consumption by to the public,0.16104549999999998,TJ,N2O,0.6,kg/TJ,0.09662729999999999,kg -2ce20c1a-85df-3ec6-8e89-a7f4d8de91d0,SESCO,II.1.1,Córdoba,AR-X,annual,2013,naphtha combustion consumption by to the public,17.070822999999997,TJ,CO2,73300.0,kg/TJ,1251291.3258999998,kg -116d2b54-a066-39cd-a5d2-a4faf635ad63,SESCO,II.1.1,Córdoba,AR-X,annual,2013,naphtha combustion consumption by to the public,17.070822999999997,TJ,CH4,3.0,kg/TJ,51.21246899999999,kg -f226a03a-0220-3334-aba2-aefdd50c2c7a,SESCO,II.1.1,Córdoba,AR-X,annual,2013,naphtha combustion consumption by to the public,17.070822999999997,TJ,N2O,0.6,kg/TJ,10.242493799999998,kg -1a73ffb0-5f7c-32c9-b450-a13da24b44e4,SESCO,II.1.1,Entre Rios,AR-E,annual,2013,naphtha combustion consumption by to the public,17.4573322,TJ,CO2,73300.0,kg/TJ,1279622.45026,kg -1c649a54-a36a-3a23-990b-1292992f9c15,SESCO,II.1.1,Entre Rios,AR-E,annual,2013,naphtha combustion consumption by to the public,17.4573322,TJ,CH4,3.0,kg/TJ,52.3719966,kg -588553b6-ea25-3436-b8f5-7f778506d59f,SESCO,II.1.1,Entre Rios,AR-E,annual,2013,naphtha combustion consumption by to the public,17.4573322,TJ,N2O,0.6,kg/TJ,10.47439932,kg -57cfa0c0-9e53-343a-ab14-1ebc3b15e619,SESCO,II.1.1,Santa Fe,AR-S,annual,2013,naphtha combustion consumption by to the public,20.259523899999998,TJ,CO2,73300.0,kg/TJ,1485023.10187,kg -48d7f1ca-0f2a-35a5-b759-298e79cde4c4,SESCO,II.1.1,Santa Fe,AR-S,annual,2013,naphtha combustion consumption by to the public,20.259523899999998,TJ,CH4,3.0,kg/TJ,60.77857169999999,kg -9ba8553e-ee39-35a3-8693-bf6252b43f3c,SESCO,II.1.1,Santa Fe,AR-S,annual,2013,naphtha combustion consumption by to the public,20.259523899999998,TJ,N2O,0.6,kg/TJ,12.155714339999998,kg -e58adda9-c275-3911-a072-bb388a2a4737,SESCO,II.1.1,Catamarca,AR-K,annual,2013,naphtha combustion consumption by to the public,29.352474920999995,TJ,CO2,73300.0,kg/TJ,2151536.4117093,kg -bcb64a1e-471d-3750-a324-714a676f858c,SESCO,II.1.1,Catamarca,AR-K,annual,2013,naphtha combustion consumption by to the public,29.352474920999995,TJ,CH4,3.0,kg/TJ,88.05742476299999,kg -28ae7eb9-c379-382c-8238-e07422098ee1,SESCO,II.1.1,Catamarca,AR-K,annual,2013,naphtha combustion consumption by to the public,29.352474920999995,TJ,N2O,0.6,kg/TJ,17.611484952599998,kg -e245ae8d-a6f4-30a2-8165-39abc1dd67d9,SESCO,II.1.1,Chaco,AR-H,annual,2013,naphtha combustion consumption by to the public,101.797182641,TJ,CO2,73300.0,kg/TJ,7461733.487585301,kg -5a6aa929-0d65-3f59-b2cd-b49ab02de55b,SESCO,II.1.1,Chaco,AR-H,annual,2013,naphtha combustion consumption by to the public,101.797182641,TJ,CH4,3.0,kg/TJ,305.391547923,kg -1cc170e1-5ff3-39e0-a403-d055a19af561,SESCO,II.1.1,Chaco,AR-H,annual,2013,naphtha combustion consumption by to the public,101.797182641,TJ,N2O,0.6,kg/TJ,61.0783095846,kg -ea9b8904-5166-3e3b-9d5d-4163256cd6df,SESCO,II.1.1,Córdoba,AR-X,annual,2013,naphtha combustion consumption by to the public,1.4706675059999996,TJ,CO2,73300.0,kg/TJ,107799.92818979998,kg -fa2a3d2a-1294-3b84-9551-2faa5053d164,SESCO,II.1.1,Córdoba,AR-X,annual,2013,naphtha combustion consumption by to the public,1.4706675059999996,TJ,CH4,3.0,kg/TJ,4.412002517999999,kg -bb683f9b-7c04-3b0f-8456-a73512463f4a,SESCO,II.1.1,Córdoba,AR-X,annual,2013,naphtha combustion consumption by to the public,1.4706675059999996,TJ,N2O,0.6,kg/TJ,0.8824005035999998,kg -7006d0c8-b8f8-36e6-a1ea-44a7efedebba,SESCO,II.1.1,Jujuy,AR-Y,annual,2013,naphtha combustion consumption by to the public,87.891869989,TJ,CO2,73300.0,kg/TJ,6442474.0701937,kg -4472cdc5-9ca5-35ca-b857-4e1497ae77b2,SESCO,II.1.1,Jujuy,AR-Y,annual,2013,naphtha combustion consumption by to the public,87.891869989,TJ,CH4,3.0,kg/TJ,263.675609967,kg -2feaee88-5a50-3e33-9875-cb9b19005750,SESCO,II.1.1,Jujuy,AR-Y,annual,2013,naphtha combustion consumption by to the public,87.891869989,TJ,N2O,0.6,kg/TJ,52.7351219934,kg -1c30fc5d-f578-38a1-9268-fd05e9df6dca,SESCO,II.1.1,La Rioja,AR-F,annual,2013,naphtha combustion consumption by to the public,28.043175005999995,TJ,CO2,73300.0,kg/TJ,2055564.7279397997,kg -184c30c4-71e1-306f-93ca-af5ef81fa772,SESCO,II.1.1,La Rioja,AR-F,annual,2013,naphtha combustion consumption by to the public,28.043175005999995,TJ,CH4,3.0,kg/TJ,84.12952501799998,kg -29dc53d7-e870-3a42-af6e-c538d466ae3f,SESCO,II.1.1,La Rioja,AR-F,annual,2013,naphtha combustion consumption by to the public,28.043175005999995,TJ,N2O,0.6,kg/TJ,16.825905003599996,kg -99ab3cc5-cf24-381d-af34-54e26be7818a,SESCO,II.1.1,Salta,AR-A,annual,2013,naphtha combustion consumption by to the public,152.34163490699999,TJ,CO2,73300.0,kg/TJ,11166641.838683099,kg -e457f477-dad3-3415-92c1-11e0336900c9,SESCO,II.1.1,Salta,AR-A,annual,2013,naphtha combustion consumption by to the public,152.34163490699999,TJ,CH4,3.0,kg/TJ,457.024904721,kg -c6c54f8f-a248-3462-a6f9-d5b231b7e019,SESCO,II.1.1,Salta,AR-A,annual,2013,naphtha combustion consumption by to the public,152.34163490699999,TJ,N2O,0.6,kg/TJ,91.40498094419999,kg -904b5a0b-bda2-393f-9209-bb8480ad6f54,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2013,naphtha combustion consumption by to the public,26.242686316,TJ,CO2,73300.0,kg/TJ,1923588.9069628,kg -69b84dff-00c7-38e1-85f0-21f35542dec5,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2013,naphtha combustion consumption by to the public,26.242686316,TJ,CH4,3.0,kg/TJ,78.728058948,kg -36ac3bac-e618-3c3d-be27-ab232d103041,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2013,naphtha combustion consumption by to the public,26.242686316,TJ,N2O,0.6,kg/TJ,15.7456117896,kg -484f918a-fa57-3058-8119-e4962e9f74fe,SESCO,II.1.1,Tucuman,AR-T,annual,2013,naphtha combustion consumption by to the public,97.86316316699998,TJ,CO2,73300.0,kg/TJ,7173369.8601410985,kg -e8476be8-d4f2-3715-9585-091a508d6000,SESCO,II.1.1,Tucuman,AR-T,annual,2013,naphtha combustion consumption by to the public,97.86316316699998,TJ,CH4,3.0,kg/TJ,293.58948950099995,kg -8409fa9c-c1f7-3533-a611-b0d1ced4e7ab,SESCO,II.1.1,Tucuman,AR-T,annual,2013,naphtha combustion consumption by to the public,97.86316316699998,TJ,N2O,0.6,kg/TJ,58.717897900199986,kg -6be0356e-e320-303c-b011-540dfb3758de,SESCO,II.1.1,Catamarca,AR-K,annual,2013,naphtha combustion consumption by to the public,241.539905992,TJ,CO2,73300.0,kg/TJ,17704875.1092136,kg -ae702332-0593-3d80-bc57-ae8344c2e558,SESCO,II.1.1,Catamarca,AR-K,annual,2013,naphtha combustion consumption by to the public,241.539905992,TJ,CH4,3.0,kg/TJ,724.619717976,kg -881fb781-573c-387f-95db-f74d7ef7008c,SESCO,II.1.1,Catamarca,AR-K,annual,2013,naphtha combustion consumption by to the public,241.539905992,TJ,N2O,0.6,kg/TJ,144.9239435952,kg -930e59fc-914d-3808-9aad-0b4336612873,SESCO,II.1.1,Chaco,AR-H,annual,2013,naphtha combustion consumption by to the public,93.29526860499999,TJ,CO2,73300.0,kg/TJ,6838543.188746499,kg -42bc0fcb-1919-3c8b-94d3-99a9b776a6b8,SESCO,II.1.1,Chaco,AR-H,annual,2013,naphtha combustion consumption by to the public,93.29526860499999,TJ,CH4,3.0,kg/TJ,279.88580581499997,kg -7d736afb-ef8c-3b2d-a564-96d8cf5c2004,SESCO,II.1.1,Chaco,AR-H,annual,2013,naphtha combustion consumption by to the public,93.29526860499999,TJ,N2O,0.6,kg/TJ,55.97716116299999,kg -40f2d94e-6edf-318b-9c91-203605335640,SESCO,II.1.1,Córdoba,AR-X,annual,2013,naphtha combustion consumption by to the public,23.152545261999997,TJ,CO2,73300.0,kg/TJ,1697081.5677045998,kg -573d7b08-6426-313c-9b6f-73e067f43943,SESCO,II.1.1,Córdoba,AR-X,annual,2013,naphtha combustion consumption by to the public,23.152545261999997,TJ,CH4,3.0,kg/TJ,69.457635786,kg -764a8bca-6da2-3d22-87eb-c50b3298b936,SESCO,II.1.1,Córdoba,AR-X,annual,2013,naphtha combustion consumption by to the public,23.152545261999997,TJ,N2O,0.6,kg/TJ,13.891527157199997,kg -5b372c21-2ec0-3218-85bf-f14434921a36,SESCO,II.1.1,Jujuy,AR-Y,annual,2013,naphtha combustion consumption by to the public,511.8834438409999,TJ,CO2,73300.0,kg/TJ,37521056.43354529,kg -bd797ec1-e8c4-3903-a3f6-a11e561e08d7,SESCO,II.1.1,Jujuy,AR-Y,annual,2013,naphtha combustion consumption by to the public,511.8834438409999,TJ,CH4,3.0,kg/TJ,1535.6503315229997,kg -a8f2c50c-e641-370c-8f81-631c04e8e8aa,SESCO,II.1.1,Jujuy,AR-Y,annual,2013,naphtha combustion consumption by to the public,511.8834438409999,TJ,N2O,0.6,kg/TJ,307.13006630459995,kg -61d44870-2c62-3b75-ba00-1679275a6a3b,SESCO,II.1.1,La Rioja,AR-F,annual,2013,naphtha combustion consumption by to the public,248.16660622599997,TJ,CO2,73300.0,kg/TJ,18190612.2363658,kg -1643a5fa-528f-3f83-b3d1-9d13fc1162ed,SESCO,II.1.1,La Rioja,AR-F,annual,2013,naphtha combustion consumption by to the public,248.16660622599997,TJ,CH4,3.0,kg/TJ,744.4998186779999,kg -df2c6837-0f78-3568-ad4f-fa0e65902c07,SESCO,II.1.1,La Rioja,AR-F,annual,2013,naphtha combustion consumption by to the public,248.16660622599997,TJ,N2O,0.6,kg/TJ,148.89996373559998,kg -285c0962-d5d4-3744-8654-360fbd6dc3b7,SESCO,II.1.1,Salta,AR-A,annual,2013,naphtha combustion consumption by to the public,1002.6551109959998,TJ,CO2,73300.0,kg/TJ,73494619.63600679,kg -259b11ab-c48d-37ba-9692-de0c2c52d5d7,SESCO,II.1.1,Salta,AR-A,annual,2013,naphtha combustion consumption by to the public,1002.6551109959998,TJ,CH4,3.0,kg/TJ,3007.9653329879993,kg -5904c5fb-8731-3286-9f28-45dc0e40f762,SESCO,II.1.1,Salta,AR-A,annual,2013,naphtha combustion consumption by to the public,1002.6551109959998,TJ,N2O,0.6,kg/TJ,601.5930665975999,kg -126cb610-aed7-3721-aaac-4f78e675d0f0,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2013,naphtha combustion consumption by to the public,283.47067864499996,TJ,CO2,73300.0,kg/TJ,20778400.744678497,kg -50436727-f4e6-381e-a192-3c154fab3e56,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2013,naphtha combustion consumption by to the public,283.47067864499996,TJ,CH4,3.0,kg/TJ,850.412035935,kg -b4a22161-201f-33cc-b953-d1b949f982d5,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2013,naphtha combustion consumption by to the public,283.47067864499996,TJ,N2O,0.6,kg/TJ,170.08240718699997,kg -c7afc458-7b42-3683-b106-d210dc9ff5d2,SESCO,II.1.1,Tucuman,AR-T,annual,2013,naphtha combustion consumption by to the public,1691.4099961219997,TJ,CO2,73300.0,kg/TJ,123980352.71574257,kg -c547b811-d667-3549-acd3-71e979564913,SESCO,II.1.1,Tucuman,AR-T,annual,2013,naphtha combustion consumption by to the public,1691.4099961219997,TJ,CH4,3.0,kg/TJ,5074.229988365999,kg -5d26c5c4-20cd-3cc3-848a-f743f5085982,SESCO,II.1.1,Tucuman,AR-T,annual,2013,naphtha combustion consumption by to the public,1691.4099961219997,TJ,N2O,0.6,kg/TJ,1014.8459976731998,kg -b8c3e2d9-fc9d-3a30-9962-40e7dbeb58bc,SESCO,II.1.1,Catamarca,AR-K,annual,2013,naphtha combustion consumption by to the public,15.566013847999999,TJ,CO2,73300.0,kg/TJ,1140988.8150584,kg -eb576f0c-b2fd-3533-892c-686b3079d74a,SESCO,II.1.1,Catamarca,AR-K,annual,2013,naphtha combustion consumption by to the public,15.566013847999999,TJ,CH4,3.0,kg/TJ,46.698041544,kg -a7cb52bc-8f45-343b-a654-a7ee419c8b19,SESCO,II.1.1,Catamarca,AR-K,annual,2013,naphtha combustion consumption by to the public,15.566013847999999,TJ,N2O,0.6,kg/TJ,9.339608308799999,kg -180e6e88-ad94-3ea8-865f-2a19cfb64bc4,SESCO,II.1.1,Chaco,AR-H,annual,2013,naphtha combustion consumption by to the public,1.4722779609999999,TJ,CO2,73300.0,kg/TJ,107917.97454129999,kg -5b5c127f-467e-3899-8685-2300134bc0b2,SESCO,II.1.1,Chaco,AR-H,annual,2013,naphtha combustion consumption by to the public,1.4722779609999999,TJ,CH4,3.0,kg/TJ,4.416833883,kg -ab132ba6-1ec3-3d54-ab4b-bc960e51e1ed,SESCO,II.1.1,Chaco,AR-H,annual,2013,naphtha combustion consumption by to the public,1.4722779609999999,TJ,N2O,0.6,kg/TJ,0.8833667765999998,kg -d4c208eb-eae2-3cf1-8357-330168b4109a,SESCO,II.1.1,Córdoba,AR-X,annual,2013,naphtha combustion consumption by to the public,3.77168561,TJ,CO2,73300.0,kg/TJ,276464.555213,kg -735a9768-e622-390a-8d30-97b319cdd71a,SESCO,II.1.1,Córdoba,AR-X,annual,2013,naphtha combustion consumption by to the public,3.77168561,TJ,CH4,3.0,kg/TJ,11.31505683,kg -d92192f4-0199-3f07-aa82-6ebff45406a4,SESCO,II.1.1,Córdoba,AR-X,annual,2013,naphtha combustion consumption by to the public,3.77168561,TJ,N2O,0.6,kg/TJ,2.2630113659999997,kg -0ebe98b9-4f95-3c82-815b-78c723e286f3,SESCO,II.1.1,Jujuy,AR-Y,annual,2013,naphtha combustion consumption by to the public,30.502661881999998,TJ,CO2,73300.0,kg/TJ,2235845.1159506,kg -ebaec136-0299-3d20-b749-d07252f5d8d0,SESCO,II.1.1,Jujuy,AR-Y,annual,2013,naphtha combustion consumption by to the public,30.502661881999998,TJ,CH4,3.0,kg/TJ,91.507985646,kg -d06cf595-ae58-3fd7-bf4e-926003ca98f8,SESCO,II.1.1,Jujuy,AR-Y,annual,2013,naphtha combustion consumption by to the public,30.502661881999998,TJ,N2O,0.6,kg/TJ,18.301597129199997,kg -8f60cae4-9d13-30c2-9150-02b554b0a836,SESCO,II.1.1,La Rioja,AR-F,annual,2013,naphtha combustion consumption by to the public,10.184195328999998,TJ,CO2,73300.0,kg/TJ,746501.5176156998,kg -fd625eba-dd3f-392c-8335-cddaae99b68f,SESCO,II.1.1,La Rioja,AR-F,annual,2013,naphtha combustion consumption by to the public,10.184195328999998,TJ,CH4,3.0,kg/TJ,30.552585986999993,kg -9e635973-3bd4-3de0-a8a5-698a77c30bb5,SESCO,II.1.1,La Rioja,AR-F,annual,2013,naphtha combustion consumption by to the public,10.184195328999998,TJ,N2O,0.6,kg/TJ,6.110517197399998,kg -5b022b4b-59a5-3631-ae14-bc4e6ebfc05b,SESCO,II.1.1,Salta,AR-A,annual,2013,naphtha combustion consumption by to the public,54.132546006,TJ,CO2,73300.0,kg/TJ,3967915.6222397997,kg -67a48033-6de2-361c-96ba-caa00029cfd5,SESCO,II.1.1,Salta,AR-A,annual,2013,naphtha combustion consumption by to the public,54.132546006,TJ,CH4,3.0,kg/TJ,162.397638018,kg -ed806f0a-b4af-3412-9698-e86085bba121,SESCO,II.1.1,Salta,AR-A,annual,2013,naphtha combustion consumption by to the public,54.132546006,TJ,N2O,0.6,kg/TJ,32.4795276036,kg -9665794e-dbe4-3818-878f-9ec2b976bc3b,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2013,naphtha combustion consumption by to the public,28.574303064999995,TJ,CO2,73300.0,kg/TJ,2094496.4146644997,kg -8f997d68-dd63-368d-926d-5285bf2c807b,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2013,naphtha combustion consumption by to the public,28.574303064999995,TJ,CH4,3.0,kg/TJ,85.72290919499999,kg -4fbf0781-5905-3fa8-bb9e-9a504291f700,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2013,naphtha combustion consumption by to the public,28.574303064999995,TJ,N2O,0.6,kg/TJ,17.144581838999997,kg -6d69aeb9-de41-3ca5-9c6a-2ed0b8e0a5d5,SESCO,II.1.1,Tucuman,AR-T,annual,2013,naphtha combustion consumption by to the public,105.43036912099998,TJ,CO2,73300.0,kg/TJ,7728046.056569299,kg -5e5a8d2a-9c90-35b9-824a-ea2b09a97a71,SESCO,II.1.1,Tucuman,AR-T,annual,2013,naphtha combustion consumption by to the public,105.43036912099998,TJ,CH4,3.0,kg/TJ,316.2911073629999,kg -6b3eb05d-ef4c-3ed3-892f-eb9f02401a85,SESCO,II.1.1,Tucuman,AR-T,annual,2013,naphtha combustion consumption by to the public,105.43036912099998,TJ,N2O,0.6,kg/TJ,63.258221472599985,kg -90c4aa92-0d5c-31a8-9fc7-fe598daf567f,SESCO,II.5.1,Capital Federal,AR-C,annual,2013,naphtha combustion consumption by agriculture machines,0.38650919999999994,TJ,CO2,73300.0,kg/TJ,28331.124359999994,kg -a65a661c-13f2-36f1-b8f0-d9fc18215ab1,SESCO,II.5.1,Capital Federal,AR-C,annual,2013,naphtha combustion consumption by agriculture machines,0.38650919999999994,TJ,CH4,3.0,kg/TJ,1.1595275999999999,kg -ba2e4e81-8dce-3814-905b-c7d1fd91be6b,SESCO,II.5.1,Capital Federal,AR-C,annual,2013,naphtha combustion consumption by agriculture machines,0.38650919999999994,TJ,N2O,0.6,kg/TJ,0.23190551999999995,kg -cf22b81f-2416-3858-82ec-21ecae671a69,SESCO,II.5.1,Santa Fe,AR-S,annual,2013,naphtha combustion consumption by agriculture machines,32.4345637,TJ,CO2,73300.0,kg/TJ,2377453.51921,kg -2859dd0b-e2b9-3e53-9c17-af6e2c90ad66,SESCO,II.5.1,Santa Fe,AR-S,annual,2013,naphtha combustion consumption by agriculture machines,32.4345637,TJ,CH4,3.0,kg/TJ,97.3036911,kg -8dd542d1-e6fb-35c8-bbf5-2488f37d46d4,SESCO,II.5.1,Santa Fe,AR-S,annual,2013,naphtha combustion consumption by agriculture machines,32.4345637,TJ,N2O,0.6,kg/TJ,19.46073822,kg -84741f64-e503-3b9a-a8bb-6ad1d6ca2538,SESCO,II.1.1,Buenos Aires,AR-B,annual,2013,naphtha combustion consumption by to the public,742.2909185999999,TJ,CO2,73300.0,kg/TJ,54409924.33338,kg -1ce76c1b-00e5-3108-9710-af2385e89725,SESCO,II.1.1,Buenos Aires,AR-B,annual,2013,naphtha combustion consumption by to the public,742.2909185999999,TJ,CH4,3.0,kg/TJ,2226.8727558,kg -449f1051-5d36-3405-83a3-cc0730bb85bc,SESCO,II.1.1,Buenos Aires,AR-B,annual,2013,naphtha combustion consumption by to the public,742.2909185999999,TJ,N2O,0.6,kg/TJ,445.37455115999995,kg -5329bd76-1c5c-3690-bc79-72cdb1e4b2ce,SESCO,II.1.1,Capital Federal,AR-C,annual,2013,naphtha combustion consumption by to the public,10.1458665,TJ,CO2,73300.0,kg/TJ,743692.01445,kg -28f4a8d8-056c-37fc-8f32-db0f5c1ad5d8,SESCO,II.1.1,Capital Federal,AR-C,annual,2013,naphtha combustion consumption by to the public,10.1458665,TJ,CH4,3.0,kg/TJ,30.4375995,kg -9b34e73e-578e-3295-ae04-ffa1f458a5bd,SESCO,II.1.1,Capital Federal,AR-C,annual,2013,naphtha combustion consumption by to the public,10.1458665,TJ,N2O,0.6,kg/TJ,6.0875199,kg -4ab0e667-0fd6-3fdd-8852-13608f952a86,SESCO,II.1.1,Chaco,AR-H,annual,2013,naphtha combustion consumption by to the public,20.6782422,TJ,CO2,73300.0,kg/TJ,1515715.15326,kg -0990389b-32aa-33ae-927c-ac0272eba6d1,SESCO,II.1.1,Chaco,AR-H,annual,2013,naphtha combustion consumption by to the public,20.6782422,TJ,CH4,3.0,kg/TJ,62.0347266,kg -046797d3-ad2d-3c5f-ab07-a614c89e2569,SESCO,II.1.1,Chaco,AR-H,annual,2013,naphtha combustion consumption by to the public,20.6782422,TJ,N2O,0.6,kg/TJ,12.40694532,kg -f33897b9-9245-35d4-987e-3e8c9f62afa8,SESCO,II.1.1,Entre Rios,AR-E,annual,2013,naphtha combustion consumption by to the public,22.288697199999998,TJ,CO2,73300.0,kg/TJ,1633761.50476,kg -4450e844-7b7a-3802-a7b2-bdd0ec8060d4,SESCO,II.1.1,Entre Rios,AR-E,annual,2013,naphtha combustion consumption by to the public,22.288697199999998,TJ,CH4,3.0,kg/TJ,66.86609159999999,kg -9a7aecb1-aded-3571-9c48-5f985f506081,SESCO,II.1.1,Entre Rios,AR-E,annual,2013,naphtha combustion consumption by to the public,22.288697199999998,TJ,N2O,0.6,kg/TJ,13.373218319999998,kg -7c6bd053-4ac1-3f59-8de6-4182adf4de09,SESCO,II.1.1,Mendoza,AR-M,annual,2013,naphtha combustion consumption by to the public,47.282958799999996,TJ,CO2,73300.0,kg/TJ,3465840.8800399997,kg -7ac79590-2dcd-36d6-9771-ad2e20e9b841,SESCO,II.1.1,Mendoza,AR-M,annual,2013,naphtha combustion consumption by to the public,47.282958799999996,TJ,CH4,3.0,kg/TJ,141.8488764,kg -93476964-8957-3923-9de4-716769453d3e,SESCO,II.1.1,Mendoza,AR-M,annual,2013,naphtha combustion consumption by to the public,47.282958799999996,TJ,N2O,0.6,kg/TJ,28.369775279999995,kg -38a83be4-2fc1-35f5-9ff5-d67e98bc4c8a,SESCO,II.1.1,Misiones,AR-N,annual,2013,naphtha combustion consumption by to the public,12.271667099999998,TJ,CO2,73300.0,kg/TJ,899513.1984299999,kg -d2cc9e4c-0f8f-3e44-bda1-d28467edefd1,SESCO,II.1.1,Misiones,AR-N,annual,2013,naphtha combustion consumption by to the public,12.271667099999998,TJ,CH4,3.0,kg/TJ,36.81500129999999,kg -9f672f43-1a8c-3999-9b3b-46ba3728294a,SESCO,II.1.1,Misiones,AR-N,annual,2013,naphtha combustion consumption by to the public,12.271667099999998,TJ,N2O,0.6,kg/TJ,7.363000259999999,kg -b1b5ca77-6fc1-3872-8655-e6aa94ddff7a,SESCO,II.1.1,Neuquén,AR-Q,annual,2013,naphtha combustion consumption by to the public,9.952611899999999,TJ,CO2,73300.0,kg/TJ,729526.4522699999,kg -25bf6449-573c-3d11-bdf1-29f06148fa1e,SESCO,II.1.1,Neuquén,AR-Q,annual,2013,naphtha combustion consumption by to the public,9.952611899999999,TJ,CH4,3.0,kg/TJ,29.857835699999995,kg -69c4f948-ced3-31b4-bef1-114b5f2e3a29,SESCO,II.1.1,Neuquén,AR-Q,annual,2013,naphtha combustion consumption by to the public,9.952611899999999,TJ,N2O,0.6,kg/TJ,5.971567139999999,kg -57b41271-cfbc-3b12-8b6d-bee95d426f1f,SESCO,II.1.1,Santa Fe,AR-S,annual,2013,naphtha combustion consumption by to the public,0.2254637,TJ,CO2,73300.0,kg/TJ,16526.48921,kg -cda1089c-f2d9-3771-bffc-325af7733b5d,SESCO,II.1.1,Santa Fe,AR-S,annual,2013,naphtha combustion consumption by to the public,0.2254637,TJ,CH4,3.0,kg/TJ,0.6763911,kg -63f1ac01-a987-3cfa-a6de-d0fdc35697c2,SESCO,II.1.1,Santa Fe,AR-S,annual,2013,naphtha combustion consumption by to the public,0.2254637,TJ,N2O,0.6,kg/TJ,0.13527821999999998,kg -dea9ff48-4f8b-3fcd-9f04-a2ac97c08062,SESCO,II.1.1,Tucuman,AR-T,annual,2013,naphtha combustion consumption by to the public,12.561549,TJ,CO2,73300.0,kg/TJ,920761.5417,kg -8c6ad803-d349-3b23-8534-ed6ab7153da7,SESCO,II.1.1,Tucuman,AR-T,annual,2013,naphtha combustion consumption by to the public,12.561549,TJ,CH4,3.0,kg/TJ,37.684647,kg -d6f0e3b6-73d4-32bb-8d7f-6f97fe7156fa,SESCO,II.1.1,Tucuman,AR-T,annual,2013,naphtha combustion consumption by to the public,12.561549,TJ,N2O,0.6,kg/TJ,7.536929399999999,kg -cddd1ecb-294a-3a4d-ae27-ee24cc75dfdd,SESCO,II.1.1,Buenos Aires,AR-B,annual,2013,naphtha combustion consumption by to the public,14850.649736999998,TJ,CO2,73300.0,kg/TJ,1088552625.7220998,kg -a4859235-0dd5-36e9-b51d-d8d1917df212,SESCO,II.1.1,Buenos Aires,AR-B,annual,2013,naphtha combustion consumption by to the public,14850.649736999998,TJ,CH4,3.0,kg/TJ,44551.94921099999,kg -aa370ff3-4f67-3429-bc2b-ac20fe72e114,SESCO,II.1.1,Buenos Aires,AR-B,annual,2013,naphtha combustion consumption by to the public,14850.649736999998,TJ,N2O,0.6,kg/TJ,8910.389842199998,kg -b642c05b-0780-3ed4-9185-53099cdbced2,SESCO,II.1.1,Capital Federal,AR-C,annual,2013,naphtha combustion consumption by to the public,4324.039465899999,TJ,CO2,73300.0,kg/TJ,316952092.85046995,kg -aa4b77c9-a8fe-3dde-a32e-097118d16f74,SESCO,II.1.1,Capital Federal,AR-C,annual,2013,naphtha combustion consumption by to the public,4324.039465899999,TJ,CH4,3.0,kg/TJ,12972.118397699998,kg -8708b0a8-b0ec-3d27-9ddc-c34925f0dc55,SESCO,II.1.1,Capital Federal,AR-C,annual,2013,naphtha combustion consumption by to the public,4324.039465899999,TJ,N2O,0.6,kg/TJ,2594.4236795399997,kg -b698b908-8dc4-3097-9b77-bdb1fa4afd5c,SESCO,II.1.1,Catamarca,AR-K,annual,2013,naphtha combustion consumption by to the public,57.65428899999999,TJ,CO2,73300.0,kg/TJ,4226059.383699999,kg -6e9d06c0-bf27-3aec-9f37-ad6f5e1a2d4d,SESCO,II.1.1,Catamarca,AR-K,annual,2013,naphtha combustion consumption by to the public,57.65428899999999,TJ,CH4,3.0,kg/TJ,172.96286699999996,kg -adafb885-68bf-3cc7-90cb-6b20234af942,SESCO,II.1.1,Catamarca,AR-K,annual,2013,naphtha combustion consumption by to the public,57.65428899999999,TJ,N2O,0.6,kg/TJ,34.59257339999999,kg -6707ba03-e0d6-32cb-879d-a0abf3ae5768,SESCO,II.1.1,Chaco,AR-H,annual,2013,naphtha combustion consumption by to the public,836.7279997999999,TJ,CO2,73300.0,kg/TJ,61332162.38533999,kg -818c789f-bf7e-3a85-bb9c-9cf9601ed146,SESCO,II.1.1,Chaco,AR-H,annual,2013,naphtha combustion consumption by to the public,836.7279997999999,TJ,CH4,3.0,kg/TJ,2510.1839993999997,kg -cba3dacf-1b0a-3e59-932f-8c7dd244c0eb,SESCO,II.1.1,Chaco,AR-H,annual,2013,naphtha combustion consumption by to the public,836.7279997999999,TJ,N2O,0.6,kg/TJ,502.03679987999993,kg -4ccef40b-163c-3234-b9c3-059e58164f06,SESCO,II.1.1,Chubut,AR-U,annual,2013,naphtha combustion consumption by to the public,43.450075899999995,TJ,CO2,73300.0,kg/TJ,3184890.5634699995,kg -0287297e-dd13-32c0-acda-bb760c4a4c10,SESCO,II.1.1,Chubut,AR-U,annual,2013,naphtha combustion consumption by to the public,43.450075899999995,TJ,CH4,3.0,kg/TJ,130.35022769999998,kg -dbff82dd-ecf6-3006-86e1-78661fab5661,SESCO,II.1.1,Chubut,AR-U,annual,2013,naphtha combustion consumption by to the public,43.450075899999995,TJ,N2O,0.6,kg/TJ,26.070045539999995,kg -fc8922b3-1738-31f1-8221-15753ea7e6bf,SESCO,II.1.1,Corrientes,AR-W,annual,2013,naphtha combustion consumption by to the public,856.4721781,TJ,CO2,73300.0,kg/TJ,62779410.65473,kg -6928350c-6019-372d-b95c-696d81d89427,SESCO,II.1.1,Corrientes,AR-W,annual,2013,naphtha combustion consumption by to the public,856.4721781,TJ,CH4,3.0,kg/TJ,2569.4165343,kg -7d928c77-6091-3c16-b104-9addf85b4270,SESCO,II.1.1,Corrientes,AR-W,annual,2013,naphtha combustion consumption by to the public,856.4721781,TJ,N2O,0.6,kg/TJ,513.88330686,kg -45397f87-3784-3569-a84d-5ab540b5bba5,SESCO,II.1.1,Córdoba,AR-X,annual,2013,naphtha combustion consumption by to the public,3089.4324537999996,TJ,CO2,73300.0,kg/TJ,226455398.86353996,kg -5ee87ab8-a7d6-3204-9193-1663c6db1f88,SESCO,II.1.1,Córdoba,AR-X,annual,2013,naphtha combustion consumption by to the public,3089.4324537999996,TJ,CH4,3.0,kg/TJ,9268.297361399998,kg -fc7afb63-3d8f-3de8-8595-9172a49deb4e,SESCO,II.1.1,Córdoba,AR-X,annual,2013,naphtha combustion consumption by to the public,3089.4324537999996,TJ,N2O,0.6,kg/TJ,1853.6594722799996,kg -5494eedb-6282-37fc-94ee-ca99e666eb6e,SESCO,II.1.1,Entre Rios,AR-E,annual,2013,naphtha combustion consumption by to the public,975.9035209,TJ,CO2,73300.0,kg/TJ,71533728.08197,kg -090d81dc-41cd-3fa5-83b0-633835092ef5,SESCO,II.1.1,Entre Rios,AR-E,annual,2013,naphtha combustion consumption by to the public,975.9035209,TJ,CH4,3.0,kg/TJ,2927.7105627,kg -04553660-a366-3818-a60c-d5b4c06929e8,SESCO,II.1.1,Entre Rios,AR-E,annual,2013,naphtha combustion consumption by to the public,975.9035209,TJ,N2O,0.6,kg/TJ,585.54211254,kg -7d6a9a2e-69e0-3151-bb20-b0e4f51fb626,SESCO,II.1.1,Formosa,AR-P,annual,2013,naphtha combustion consumption by to the public,444.7432528,TJ,CO2,73300.0,kg/TJ,32599680.430239998,kg -85cfe90d-ab5f-3458-be16-7716a54d3b79,SESCO,II.1.1,Formosa,AR-P,annual,2013,naphtha combustion consumption by to the public,444.7432528,TJ,CH4,3.0,kg/TJ,1334.2297584,kg -f8aea587-5d38-3824-a4f2-d6aefbc8e50c,SESCO,II.1.1,Formosa,AR-P,annual,2013,naphtha combustion consumption by to the public,444.7432528,TJ,N2O,0.6,kg/TJ,266.84595168,kg -7506fe9c-12af-30e0-bb47-ca3e45021a3f,SESCO,II.1.1,Jujuy,AR-Y,annual,2013,naphtha combustion consumption by to the public,212.8699419,TJ,CO2,73300.0,kg/TJ,15603366.741269998,kg -9b894911-2046-374a-8ea8-da4d2a93db7a,SESCO,II.1.1,Jujuy,AR-Y,annual,2013,naphtha combustion consumption by to the public,212.8699419,TJ,CH4,3.0,kg/TJ,638.6098257,kg -c315bc58-eb2f-3cae-b50e-62ebd9975a94,SESCO,II.1.1,Jujuy,AR-Y,annual,2013,naphtha combustion consumption by to the public,212.8699419,TJ,N2O,0.6,kg/TJ,127.72196513999998,kg -430c23b6-b3f5-3910-8a2d-a3ef1f1c388b,SESCO,II.1.1,La Pampa,AR-L,annual,2013,naphtha combustion consumption by to the public,286.4677354,TJ,CO2,73300.0,kg/TJ,20998085.00482,kg -dd4bbea0-d306-36a4-8cf2-e45da53d34b9,SESCO,II.1.1,La Pampa,AR-L,annual,2013,naphtha combustion consumption by to the public,286.4677354,TJ,CH4,3.0,kg/TJ,859.4032061999999,kg -75a2c2af-ac8b-3f2d-9c45-a4ddd933edd7,SESCO,II.1.1,La Pampa,AR-L,annual,2013,naphtha combustion consumption by to the public,286.4677354,TJ,N2O,0.6,kg/TJ,171.88064124,kg -dba8b7dd-4a96-3033-a33b-022155c30f1a,SESCO,II.1.1,La Rioja,AR-F,annual,2013,naphtha combustion consumption by to the public,282.5704343,TJ,CO2,73300.0,kg/TJ,20712412.83419,kg -0ac3cce0-34e3-3aec-8c46-43786de68a92,SESCO,II.1.1,La Rioja,AR-F,annual,2013,naphtha combustion consumption by to the public,282.5704343,TJ,CH4,3.0,kg/TJ,847.7113029,kg -0b097f53-ea7b-35cf-8f86-4a55ebe592a4,SESCO,II.1.1,La Rioja,AR-F,annual,2013,naphtha combustion consumption by to the public,282.5704343,TJ,N2O,0.6,kg/TJ,169.54226057999998,kg -8008cf3b-b11b-35aa-a9d7-a37e3d9610df,SESCO,II.1.1,Mendoza,AR-M,annual,2013,naphtha combustion consumption by to the public,727.3458962,TJ,CO2,73300.0,kg/TJ,53314454.19146,kg -1daecb79-1c1e-362b-80c2-ffa17dc010b2,SESCO,II.1.1,Mendoza,AR-M,annual,2013,naphtha combustion consumption by to the public,727.3458962,TJ,CH4,3.0,kg/TJ,2182.0376886,kg -229b0980-55d0-378f-9099-bf483f11ce32,SESCO,II.1.1,Mendoza,AR-M,annual,2013,naphtha combustion consumption by to the public,727.3458962,TJ,N2O,0.6,kg/TJ,436.40753772,kg -066d8dfd-e1ca-35d4-8e42-9c220d89b349,SESCO,II.1.1,Misiones,AR-N,annual,2013,naphtha combustion consumption by to the public,1238.439895,TJ,CO2,73300.0,kg/TJ,90777644.3035,kg -711209b3-a3b4-3388-aa33-721db1e5e604,SESCO,II.1.1,Misiones,AR-N,annual,2013,naphtha combustion consumption by to the public,1238.439895,TJ,CH4,3.0,kg/TJ,3715.319685,kg -da9bbc0c-2e27-3afa-86ea-4384234a869a,SESCO,II.1.1,Misiones,AR-N,annual,2013,naphtha combustion consumption by to the public,1238.439895,TJ,N2O,0.6,kg/TJ,743.063937,kg -4bfaf536-e190-39eb-854b-b97cdbac6595,SESCO,II.1.1,Neuquén,AR-Q,annual,2013,naphtha combustion consumption by to the public,338.4854318999999,TJ,CO2,73300.0,kg/TJ,24810982.158269994,kg -d64f555c-935c-30f6-8a3a-4076aacfd867,SESCO,II.1.1,Neuquén,AR-Q,annual,2013,naphtha combustion consumption by to the public,338.4854318999999,TJ,CH4,3.0,kg/TJ,1015.4562956999998,kg -3b17a822-3560-300b-add3-d4638b9ad81e,SESCO,II.1.1,Neuquén,AR-Q,annual,2013,naphtha combustion consumption by to the public,338.4854318999999,TJ,N2O,0.6,kg/TJ,203.09125913999995,kg -95c64b44-8573-3c07-ac4b-7b99bd38207c,SESCO,II.1.1,Rio Negro,AR-R,annual,2013,naphtha combustion consumption by to the public,172.41531229999998,TJ,CO2,73300.0,kg/TJ,12638042.39159,kg -064001f9-a30e-3530-819b-6d7cd8258ba8,SESCO,II.1.1,Rio Negro,AR-R,annual,2013,naphtha combustion consumption by to the public,172.41531229999998,TJ,CH4,3.0,kg/TJ,517.2459369,kg -cd740188-a227-3878-940c-af4dc4342b73,SESCO,II.1.1,Rio Negro,AR-R,annual,2013,naphtha combustion consumption by to the public,172.41531229999998,TJ,N2O,0.6,kg/TJ,103.44918737999998,kg -2161e300-f5fb-3299-b4b3-edd01a39f248,SESCO,II.1.1,Salta,AR-A,annual,2013,naphtha combustion consumption by to the public,301.155085,TJ,CO2,73300.0,kg/TJ,22074667.730499998,kg -44353d17-7401-343f-b286-25244768bfc3,SESCO,II.1.1,Salta,AR-A,annual,2013,naphtha combustion consumption by to the public,301.155085,TJ,CH4,3.0,kg/TJ,903.465255,kg -7e76dc7f-8d59-338c-8b84-ab9f42fc41fb,SESCO,II.1.1,Salta,AR-A,annual,2013,naphtha combustion consumption by to the public,301.155085,TJ,N2O,0.6,kg/TJ,180.693051,kg -6c4da51b-5a9a-39d6-9571-5fd14b626722,SESCO,II.1.1,San Juan,AR-J,annual,2013,naphtha combustion consumption by to the public,211.4849506,TJ,CO2,73300.0,kg/TJ,15501846.87898,kg -228c4fab-2c1d-36c7-8c5e-ded941690854,SESCO,II.1.1,San Juan,AR-J,annual,2013,naphtha combustion consumption by to the public,211.4849506,TJ,CH4,3.0,kg/TJ,634.4548517999999,kg -7fe1a74f-af8d-3556-b035-cac3132c2998,SESCO,II.1.1,San Juan,AR-J,annual,2013,naphtha combustion consumption by to the public,211.4849506,TJ,N2O,0.6,kg/TJ,126.89097035999998,kg -18694a38-3db6-344a-bce7-04b3ad9d7fd7,SESCO,II.1.1,San Luis,AR-D,annual,2013,naphtha combustion consumption by to the public,21.386842399999995,TJ,CO2,73300.0,kg/TJ,1567655.5479199996,kg -955dbf29-66c8-3b2c-be80-8dbfc3309123,SESCO,II.1.1,San Luis,AR-D,annual,2013,naphtha combustion consumption by to the public,21.386842399999995,TJ,CH4,3.0,kg/TJ,64.16052719999999,kg -46249eb0-48ea-30d9-a143-ad6e18a8c529,SESCO,II.1.1,San Luis,AR-D,annual,2013,naphtha combustion consumption by to the public,21.386842399999995,TJ,N2O,0.6,kg/TJ,12.832105439999998,kg -765e9f58-ea0e-3f1f-b521-8ac685c89a84,SESCO,II.1.1,Santa Fe,AR-S,annual,2013,naphtha combustion consumption by to the public,3454.5870204999997,TJ,CO2,73300.0,kg/TJ,253221228.60265,kg -1c3a2649-2293-3450-b403-fbd13f832af4,SESCO,II.1.1,Santa Fe,AR-S,annual,2013,naphtha combustion consumption by to the public,3454.5870204999997,TJ,CH4,3.0,kg/TJ,10363.7610615,kg -258ef690-b5b3-352b-933f-24c6b28bca61,SESCO,II.1.1,Santa Fe,AR-S,annual,2013,naphtha combustion consumption by to the public,3454.5870204999997,TJ,N2O,0.6,kg/TJ,2072.7522123,kg -14a61962-10dc-36ef-8644-ea16d954099b,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2013,naphtha combustion consumption by to the public,364.41375739999995,TJ,CO2,73300.0,kg/TJ,26711528.417419996,kg -b36d8e74-51c3-3466-ba73-4b0dae7efc78,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2013,naphtha combustion consumption by to the public,364.41375739999995,TJ,CH4,3.0,kg/TJ,1093.2412722,kg -102238c1-75ea-3b59-a26e-1c2d04caa4e4,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2013,naphtha combustion consumption by to the public,364.41375739999995,TJ,N2O,0.6,kg/TJ,218.64825443999996,kg -3c3c8b18-f6e9-3e80-9122-1f8dcf81d80b,SESCO,II.1.1,Tucuman,AR-T,annual,2013,naphtha combustion consumption by to the public,828.9978158,TJ,CO2,73300.0,kg/TJ,60765539.89814,kg -19e38f34-b49f-3b04-8c49-639d12ae8cf4,SESCO,II.1.1,Tucuman,AR-T,annual,2013,naphtha combustion consumption by to the public,828.9978158,TJ,CH4,3.0,kg/TJ,2486.9934474,kg -9d056192-d3fc-3a19-b9b1-60cdb09920ff,SESCO,II.1.1,Tucuman,AR-T,annual,2013,naphtha combustion consumption by to the public,828.9978158,TJ,N2O,0.6,kg/TJ,497.39868948,kg -6a80d3d2-b8c2-3204-a46e-21787f7f3d17,SESCO,II.1.1,Buenos Aires,AR-B,annual,2013,naphtha combustion consumption by to the public,6553.553367899999,TJ,CO2,73300.0,kg/TJ,480375461.86706996,kg -25abcec6-4554-38fd-a830-f0a3730d689d,SESCO,II.1.1,Buenos Aires,AR-B,annual,2013,naphtha combustion consumption by to the public,6553.553367899999,TJ,CH4,3.0,kg/TJ,19660.660103699996,kg -8e06cb37-d7da-3db3-bcf8-b143a7f8c226,SESCO,II.1.1,Buenos Aires,AR-B,annual,2013,naphtha combustion consumption by to the public,6553.553367899999,TJ,N2O,0.6,kg/TJ,3932.1320207399995,kg -4cb898e4-f344-3a29-a1a7-732f0d7cac01,SESCO,II.1.1,Capital Federal,AR-C,annual,2013,naphtha combustion consumption by to the public,2661.0836329,TJ,CO2,73300.0,kg/TJ,195057430.29156998,kg -249ab70a-dc5f-3e8b-922d-6e8763dc165e,SESCO,II.1.1,Capital Federal,AR-C,annual,2013,naphtha combustion consumption by to the public,2661.0836329,TJ,CH4,3.0,kg/TJ,7983.2508987,kg -f1b93982-1dd2-3dce-92c3-b5205cfab2cb,SESCO,II.1.1,Capital Federal,AR-C,annual,2013,naphtha combustion consumption by to the public,2661.0836329,TJ,N2O,0.6,kg/TJ,1596.6501797399999,kg -eca7b725-3b36-30e7-aaa3-297d4135520c,SESCO,II.1.1,Catamarca,AR-K,annual,2013,naphtha combustion consumption by to the public,32.9821184,TJ,CO2,73300.0,kg/TJ,2417589.27872,kg -442dddef-0998-3328-9c52-832146ffe5df,SESCO,II.1.1,Catamarca,AR-K,annual,2013,naphtha combustion consumption by to the public,32.9821184,TJ,CH4,3.0,kg/TJ,98.9463552,kg -331b63c2-7f2c-354b-ad95-f790456000ea,SESCO,II.1.1,Catamarca,AR-K,annual,2013,naphtha combustion consumption by to the public,32.9821184,TJ,N2O,0.6,kg/TJ,19.78927104,kg -82092458-e99c-3d52-96b3-489083a22100,SESCO,II.1.1,Chaco,AR-H,annual,2013,naphtha combustion consumption by to the public,242.11580469999996,TJ,CO2,73300.0,kg/TJ,17747088.484509997,kg -561ea4dd-31da-31fe-95eb-ca0eebbdca08,SESCO,II.1.1,Chaco,AR-H,annual,2013,naphtha combustion consumption by to the public,242.11580469999996,TJ,CH4,3.0,kg/TJ,726.3474140999999,kg -ca524060-605c-323b-996a-3c4ef18d2e24,SESCO,II.1.1,Chaco,AR-H,annual,2013,naphtha combustion consumption by to the public,242.11580469999996,TJ,N2O,0.6,kg/TJ,145.26948281999998,kg -69664fb0-48eb-32db-8b0a-c0ae88556cb4,SESCO,II.1.1,Chubut,AR-U,annual,2013,naphtha combustion consumption by to the public,20.774869499999998,TJ,CO2,73300.0,kg/TJ,1522797.9343499998,kg -23014ec9-399e-381d-bc2c-2df5b5a834aa,SESCO,II.1.1,Chubut,AR-U,annual,2013,naphtha combustion consumption by to the public,20.774869499999998,TJ,CH4,3.0,kg/TJ,62.3246085,kg -6df978e0-c120-38ea-8474-8f1434cd6f1a,SESCO,II.1.1,Chubut,AR-U,annual,2013,naphtha combustion consumption by to the public,20.774869499999998,TJ,N2O,0.6,kg/TJ,12.464921699999998,kg -4317f1de-86ad-3237-8d30-45791062299e,SESCO,II.1.1,Corrientes,AR-W,annual,2013,naphtha combustion consumption by to the public,277.3847692,TJ,CO2,73300.0,kg/TJ,20332303.58236,kg -777124c1-9405-35f5-be79-c11e4ce4b62f,SESCO,II.1.1,Corrientes,AR-W,annual,2013,naphtha combustion consumption by to the public,277.3847692,TJ,CH4,3.0,kg/TJ,832.1543076,kg -bcc7d8ab-1e90-391f-91d8-38a2cbb55ad4,SESCO,II.1.1,Corrientes,AR-W,annual,2013,naphtha combustion consumption by to the public,277.3847692,TJ,N2O,0.6,kg/TJ,166.43086151999998,kg -b7dac6d0-7355-34b2-a932-36dcebb39e27,SESCO,II.1.1,Córdoba,AR-X,annual,2013,naphtha combustion consumption by to the public,1100.1340195999999,TJ,CO2,73300.0,kg/TJ,80639823.63667999,kg -dce839ec-4e31-321d-979f-51b790e44162,SESCO,II.1.1,Córdoba,AR-X,annual,2013,naphtha combustion consumption by to the public,1100.1340195999999,TJ,CH4,3.0,kg/TJ,3300.4020587999994,kg -ce685e70-4d0a-36d2-ab8e-d2765741c89a,SESCO,II.1.1,Córdoba,AR-X,annual,2013,naphtha combustion consumption by to the public,1100.1340195999999,TJ,N2O,0.6,kg/TJ,660.08041176,kg -cdcc5df6-43dc-3d75-aa56-653523a51e38,SESCO,II.1.1,Entre Rios,AR-E,annual,2013,naphtha combustion consumption by to the public,377.1363518999999,TJ,CO2,73300.0,kg/TJ,27644094.594269995,kg -42979a01-1d95-372b-bf11-acc358c5951e,SESCO,II.1.1,Entre Rios,AR-E,annual,2013,naphtha combustion consumption by to the public,377.1363518999999,TJ,CH4,3.0,kg/TJ,1131.4090556999997,kg -933f1b14-733d-3ffe-acfb-5039bf2c1ef6,SESCO,II.1.1,Entre Rios,AR-E,annual,2013,naphtha combustion consumption by to the public,377.1363518999999,TJ,N2O,0.6,kg/TJ,226.28181113999995,kg -ac9cc59d-1665-360c-9ae9-7c0815d70b37,SESCO,II.1.1,Formosa,AR-P,annual,2013,naphtha combustion consumption by to the public,145.0697864,TJ,CO2,73300.0,kg/TJ,10633615.34312,kg -ca542951-c13e-3b4d-854c-4095ac5fbc6d,SESCO,II.1.1,Formosa,AR-P,annual,2013,naphtha combustion consumption by to the public,145.0697864,TJ,CH4,3.0,kg/TJ,435.2093592,kg -76c8bbb0-3494-3346-8508-bec3343df46d,SESCO,II.1.1,Formosa,AR-P,annual,2013,naphtha combustion consumption by to the public,145.0697864,TJ,N2O,0.6,kg/TJ,87.04187184,kg -6d19e60b-a52b-32ab-b795-f4f4ddc308f9,SESCO,II.1.1,Jujuy,AR-Y,annual,2013,naphtha combustion consumption by to the public,49.408759399999994,TJ,CO2,73300.0,kg/TJ,3621662.0640199995,kg -47a5a152-4ccb-3f0e-b75b-8d1dfb327a4e,SESCO,II.1.1,Jujuy,AR-Y,annual,2013,naphtha combustion consumption by to the public,49.408759399999994,TJ,CH4,3.0,kg/TJ,148.22627819999997,kg -09f185fd-9075-3dfc-903e-6fa4ddfe90d4,SESCO,II.1.1,Jujuy,AR-Y,annual,2013,naphtha combustion consumption by to the public,49.408759399999994,TJ,N2O,0.6,kg/TJ,29.645255639999995,kg -8c4164c4-89a0-36af-b70f-707343c8eae7,SESCO,II.1.1,La Pampa,AR-L,annual,2013,naphtha combustion consumption by to the public,129.9637185,TJ,CO2,73300.0,kg/TJ,9526340.56605,kg -fb30921b-cc77-343c-86cc-f7fd1c75ca6e,SESCO,II.1.1,La Pampa,AR-L,annual,2013,naphtha combustion consumption by to the public,129.9637185,TJ,CH4,3.0,kg/TJ,389.89115549999997,kg -431d4e33-aba4-3b69-b2e0-70759586b12a,SESCO,II.1.1,La Pampa,AR-L,annual,2013,naphtha combustion consumption by to the public,129.9637185,TJ,N2O,0.6,kg/TJ,77.9782311,kg -613e6c3d-d0a0-3df0-ad61-bab957640228,SESCO,II.1.1,La Rioja,AR-F,annual,2013,naphtha combustion consumption by to the public,73.21128429999999,TJ,CO2,73300.0,kg/TJ,5366387.13919,kg -a93ebccb-6f81-375c-a75c-f061ab72e33a,SESCO,II.1.1,La Rioja,AR-F,annual,2013,naphtha combustion consumption by to the public,73.21128429999999,TJ,CH4,3.0,kg/TJ,219.63385289999997,kg -3e4a3fe7-31b4-3cb0-8699-63880cb769d7,SESCO,II.1.1,La Rioja,AR-F,annual,2013,naphtha combustion consumption by to the public,73.21128429999999,TJ,N2O,0.6,kg/TJ,43.92677057999999,kg -e26dbef0-fcb3-33ef-bfff-50b3c19feeac,SESCO,II.1.1,Mendoza,AR-M,annual,2013,naphtha combustion consumption by to the public,288.2070268,TJ,CO2,73300.0,kg/TJ,21125575.06444,kg -6d3c0aa7-8604-3324-ae04-a29b71e1e7b5,SESCO,II.1.1,Mendoza,AR-M,annual,2013,naphtha combustion consumption by to the public,288.2070268,TJ,CH4,3.0,kg/TJ,864.6210804,kg -cc8df88f-bc8d-35c9-b239-4b4708ff9fc9,SESCO,II.1.1,Mendoza,AR-M,annual,2013,naphtha combustion consumption by to the public,288.2070268,TJ,N2O,0.6,kg/TJ,172.92421607999998,kg -beced9a9-a930-3040-bc28-30cdd04e85d2,SESCO,II.1.1,Misiones,AR-N,annual,2013,naphtha combustion consumption by to the public,238.73384919999998,TJ,CO2,73300.0,kg/TJ,17499191.14636,kg -be7d583f-12f5-3ba8-9d38-b25960d7ec9c,SESCO,II.1.1,Misiones,AR-N,annual,2013,naphtha combustion consumption by to the public,238.73384919999998,TJ,CH4,3.0,kg/TJ,716.2015475999999,kg -e3f7075c-d0f8-3d00-8882-afbac74e57cc,SESCO,II.1.1,Misiones,AR-N,annual,2013,naphtha combustion consumption by to the public,238.73384919999998,TJ,N2O,0.6,kg/TJ,143.24030951999998,kg -bb8ce9be-28f4-3d41-9aab-2bb526179bd1,SESCO,II.1.1,Neuquén,AR-Q,annual,2013,naphtha combustion consumption by to the public,126.87164489999998,TJ,CO2,73300.0,kg/TJ,9299691.571169998,kg -ee4cfd29-bc31-3aeb-9313-65ab5fd70bc9,SESCO,II.1.1,Neuquén,AR-Q,annual,2013,naphtha combustion consumption by to the public,126.87164489999998,TJ,CH4,3.0,kg/TJ,380.61493469999994,kg -89ee00e5-99a2-339a-83c2-d381e072af1b,SESCO,II.1.1,Neuquén,AR-Q,annual,2013,naphtha combustion consumption by to the public,126.87164489999998,TJ,N2O,0.6,kg/TJ,76.12298693999999,kg -8799e99d-81e0-324b-9781-3705acf5aaf3,SESCO,II.1.1,Rio Negro,AR-R,annual,2013,naphtha combustion consumption by to the public,76.7864944,TJ,CO2,73300.0,kg/TJ,5628450.03952,kg -b1bac0fe-329a-381c-9031-57cd69b9efca,SESCO,II.1.1,Rio Negro,AR-R,annual,2013,naphtha combustion consumption by to the public,76.7864944,TJ,CH4,3.0,kg/TJ,230.3594832,kg -4d7eeced-cdc7-3fea-80ff-3c3685cf4d8b,SESCO,II.1.1,Rio Negro,AR-R,annual,2013,naphtha combustion consumption by to the public,76.7864944,TJ,N2O,0.6,kg/TJ,46.07189664,kg -d89fa99f-ba05-31c1-9a6d-5d9a4ffeff3d,SESCO,II.1.1,Salta,AR-A,annual,2013,naphtha combustion consumption by to the public,86.35259709999998,TJ,CO2,73300.0,kg/TJ,6329645.367429999,kg -4f7e53a5-c4fb-311a-9e6d-accd737c5982,SESCO,II.1.1,Salta,AR-A,annual,2013,naphtha combustion consumption by to the public,86.35259709999998,TJ,CH4,3.0,kg/TJ,259.05779129999996,kg -b140c7c7-736b-3b46-b93d-e6892c3a25bc,SESCO,II.1.1,Salta,AR-A,annual,2013,naphtha combustion consumption by to the public,86.35259709999998,TJ,N2O,0.6,kg/TJ,51.81155825999999,kg -c76c3c27-f2b3-3e09-ad24-b5c4223f7687,SESCO,II.1.1,San Juan,AR-J,annual,2013,naphtha combustion consumption by to the public,32.8210729,TJ,CO2,73300.0,kg/TJ,2405784.64357,kg -a8da858b-e5e8-3cc3-9b7c-43dc8a3e9e82,SESCO,II.1.1,San Juan,AR-J,annual,2013,naphtha combustion consumption by to the public,32.8210729,TJ,CH4,3.0,kg/TJ,98.4632187,kg -5f0f15b3-1eb9-3b13-92f6-f69f721c6369,SESCO,II.1.1,San Juan,AR-J,annual,2013,naphtha combustion consumption by to the public,32.8210729,TJ,N2O,0.6,kg/TJ,19.692643739999998,kg -60a0f647-f34b-3b7c-b310-af1b27df02a4,SESCO,II.1.1,San Luis,AR-D,annual,2013,naphtha combustion consumption by to the public,33.658509499999994,TJ,CO2,73300.0,kg/TJ,2467168.7463499997,kg -e95cc4e4-47b9-3dec-83d3-3a81a3abbe4a,SESCO,II.1.1,San Luis,AR-D,annual,2013,naphtha combustion consumption by to the public,33.658509499999994,TJ,CH4,3.0,kg/TJ,100.97552849999998,kg -4b39b3d8-b759-3742-8392-d23ac3252614,SESCO,II.1.1,San Luis,AR-D,annual,2013,naphtha combustion consumption by to the public,33.658509499999994,TJ,N2O,0.6,kg/TJ,20.195105699999996,kg -efcdeba6-29a3-33c8-9a9e-fd52fbdf0e88,SESCO,II.1.1,Santa Fe,AR-S,annual,2013,naphtha combustion consumption by to the public,1442.8710526999998,TJ,CO2,73300.0,kg/TJ,105762448.16290998,kg -d3259cdf-9a67-3597-a7f8-c24ab025936a,SESCO,II.1.1,Santa Fe,AR-S,annual,2013,naphtha combustion consumption by to the public,1442.8710526999998,TJ,CH4,3.0,kg/TJ,4328.613158099999,kg -d96280ce-14b7-3a75-8fbe-8fcc532cec8a,SESCO,II.1.1,Santa Fe,AR-S,annual,2013,naphtha combustion consumption by to the public,1442.8710526999998,TJ,N2O,0.6,kg/TJ,865.7226316199999,kg -862581c9-bf12-3e48-ae95-5247b79d850f,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2013,naphtha combustion consumption by to the public,129.480582,TJ,CO2,73300.0,kg/TJ,9490926.6606,kg -07881a6a-88e0-3630-858c-19e4bc2f0842,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2013,naphtha combustion consumption by to the public,129.480582,TJ,CH4,3.0,kg/TJ,388.44174599999997,kg -9316c6b7-42ba-3611-aadb-aa436530dec3,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2013,naphtha combustion consumption by to the public,129.480582,TJ,N2O,0.6,kg/TJ,77.68834919999999,kg -88834532-7886-3e82-80c1-eb359ada6a1f,SESCO,II.1.1,Tucuman,AR-T,annual,2013,naphtha combustion consumption by to the public,258.316982,TJ,CO2,73300.0,kg/TJ,18934634.7806,kg -5bc6ee2e-7641-306a-8814-2f4f67597e33,SESCO,II.1.1,Tucuman,AR-T,annual,2013,naphtha combustion consumption by to the public,258.316982,TJ,CH4,3.0,kg/TJ,774.9509459999999,kg -faa2561e-0688-39b1-849f-2824025d53d3,SESCO,II.1.1,Tucuman,AR-T,annual,2013,naphtha combustion consumption by to the public,258.316982,TJ,N2O,0.6,kg/TJ,154.9901892,kg -5f2091c9-97ce-31f5-977d-9af1464e966f,SESCO,II.5.1,Buenos Aires,AR-B,annual,2013,naphtha combustion consumption by agriculture machines,4.1549739,TJ,CO2,73300.0,kg/TJ,304559.58687,kg -b70d7c33-7354-391b-be37-c2767cfe7cb5,SESCO,II.5.1,Buenos Aires,AR-B,annual,2013,naphtha combustion consumption by agriculture machines,4.1549739,TJ,CH4,3.0,kg/TJ,12.4649217,kg -c6ed47a1-120a-39f0-8590-b9c81c2fdd49,SESCO,II.5.1,Buenos Aires,AR-B,annual,2013,naphtha combustion consumption by agriculture machines,4.1549739,TJ,N2O,0.6,kg/TJ,2.49298434,kg -841e44bd-a41d-3358-927d-f68ddb4d78b2,SESCO,II.5.1,Chubut,AR-U,annual,2013,naphtha combustion consumption by agriculture machines,12.6581763,TJ,CO2,73300.0,kg/TJ,927844.3227899999,kg -727eacdd-be7f-3366-8fec-1f5a354d49c1,SESCO,II.5.1,Chubut,AR-U,annual,2013,naphtha combustion consumption by agriculture machines,12.6581763,TJ,CH4,3.0,kg/TJ,37.974528899999996,kg -0328e283-1096-3fe5-8412-0bb7414814cb,SESCO,II.5.1,Chubut,AR-U,annual,2013,naphtha combustion consumption by agriculture machines,12.6581763,TJ,N2O,0.6,kg/TJ,7.5949057799999995,kg -9da89179-8763-382e-85dc-5a5cee8e3bd9,SESCO,II.5.1,Entre Rios,AR-E,annual,2013,naphtha combustion consumption by agriculture machines,3.7362556,TJ,CO2,73300.0,kg/TJ,273867.53547999996,kg -9f9e6800-2176-3233-9452-5699609816f5,SESCO,II.5.1,Entre Rios,AR-E,annual,2013,naphtha combustion consumption by agriculture machines,3.7362556,TJ,CH4,3.0,kg/TJ,11.2087668,kg -f6bd7de5-fb2f-38a4-890d-e8dbe130351e,SESCO,II.5.1,Entre Rios,AR-E,annual,2013,naphtha combustion consumption by agriculture machines,3.7362556,TJ,N2O,0.6,kg/TJ,2.2417533599999997,kg -383ffc24-8a65-3742-a551-ffb829149fdc,SESCO,II.5.1,La Pampa,AR-L,annual,2013,naphtha combustion consumption by agriculture machines,0.8696456999999999,TJ,CO2,73300.0,kg/TJ,63745.02980999999,kg -690aecff-aa1c-3df7-8138-8fddb77ffdab,SESCO,II.5.1,La Pampa,AR-L,annual,2013,naphtha combustion consumption by agriculture machines,0.8696456999999999,TJ,CH4,3.0,kg/TJ,2.6089370999999995,kg -bd98fa72-dc78-3bf4-b04a-dfad35145b73,SESCO,II.5.1,La Pampa,AR-L,annual,2013,naphtha combustion consumption by agriculture machines,0.8696456999999999,TJ,N2O,0.6,kg/TJ,0.5217874199999999,kg -12a469a4-4c5f-3273-b35c-995ecee4e744,SESCO,II.5.1,Santa Fe,AR-S,annual,2013,naphtha combustion consumption by agriculture machines,29.471326499999996,TJ,CO2,73300.0,kg/TJ,2160248.2324499995,kg -48bf8e49-99d8-3fb1-a1c3-62a3569d1b70,SESCO,II.5.1,Santa Fe,AR-S,annual,2013,naphtha combustion consumption by agriculture machines,29.471326499999996,TJ,CH4,3.0,kg/TJ,88.41397949999998,kg -1c904729-d019-3103-b2a4-b5db3e08475c,SESCO,II.5.1,Santa Fe,AR-S,annual,2013,naphtha combustion consumption by agriculture machines,29.471326499999996,TJ,N2O,0.6,kg/TJ,17.6827959,kg -01683a27-818c-3d98-ae20-da488d07063f,SESCO,II.5.1,Santiago del Estero,AR-G,annual,2013,naphtha combustion consumption by agriculture machines,0.4187183,TJ,CO2,73300.0,kg/TJ,30692.05139,kg -ca75203c-2117-376b-87e9-0eab5537c002,SESCO,II.5.1,Santiago del Estero,AR-G,annual,2013,naphtha combustion consumption by agriculture machines,0.4187183,TJ,CH4,3.0,kg/TJ,1.2561548999999999,kg -05d69700-68e9-3059-bb63-81164d50dcb4,SESCO,II.5.1,Santiago del Estero,AR-G,annual,2013,naphtha combustion consumption by agriculture machines,0.4187183,TJ,N2O,0.6,kg/TJ,0.25123098,kg -3794966e-2b80-384b-b58d-668c5e2b578c,SESCO,II.5.1,Buenos Aires,AR-B,annual,2013,naphtha combustion consumption by agriculture machines,0.9018548,TJ,CO2,73300.0,kg/TJ,66105.95684,kg -2a21747e-0382-323f-b308-0b6fccae1ad2,SESCO,II.5.1,Buenos Aires,AR-B,annual,2013,naphtha combustion consumption by agriculture machines,0.9018548,TJ,CH4,3.0,kg/TJ,2.7055644,kg -51ea8292-b3da-3a88-8f53-d13b24360ba7,SESCO,II.5.1,Buenos Aires,AR-B,annual,2013,naphtha combustion consumption by agriculture machines,0.9018548,TJ,N2O,0.6,kg/TJ,0.5411128799999999,kg -4fe52e8b-4633-358b-9b37-33e529adfeaf,SESCO,II.5.1,Santa Fe,AR-S,annual,2013,naphtha combustion consumption by agriculture machines,2.1258006,TJ,CO2,73300.0,kg/TJ,155821.18397999997,kg -82f47be6-acc8-3a73-8285-f953502cded5,SESCO,II.5.1,Santa Fe,AR-S,annual,2013,naphtha combustion consumption by agriculture machines,2.1258006,TJ,CH4,3.0,kg/TJ,6.3774017999999995,kg -7267a9e0-922c-34ff-9b07-4b52438a6875,SESCO,II.5.1,Santa Fe,AR-S,annual,2013,naphtha combustion consumption by agriculture machines,2.1258006,TJ,N2O,0.6,kg/TJ,1.2754803599999998,kg -9ef4705c-df0b-38c8-aef4-3a996dfd7139,SESCO,II.1.1,Buenos Aires,AR-B,annual,2013,naphtha combustion consumption by to the public,38359.3632268,TJ,CO2,73300.0,kg/TJ,2811741324.52444,kg -9fd0b783-320c-3f56-a3e3-cbbba96ee402,SESCO,II.1.1,Buenos Aires,AR-B,annual,2013,naphtha combustion consumption by to the public,38359.3632268,TJ,CH4,3.0,kg/TJ,115078.08968040001,kg -0dcaa4f8-8fa7-3230-936c-a73f16184a6b,SESCO,II.1.1,Buenos Aires,AR-B,annual,2013,naphtha combustion consumption by to the public,38359.3632268,TJ,N2O,0.6,kg/TJ,23015.617936079998,kg -46eff68c-3bac-3ef2-9f34-2f4325fdaffd,SESCO,II.1.1,Capital Federal,AR-C,annual,2013,naphtha combustion consumption by to the public,7874.480767999999,TJ,CO2,73300.0,kg/TJ,577199440.2944,kg -6a489afd-9a5b-3181-bcb5-e96924188b0a,SESCO,II.1.1,Capital Federal,AR-C,annual,2013,naphtha combustion consumption by to the public,7874.480767999999,TJ,CH4,3.0,kg/TJ,23623.442303999997,kg -c54936d2-d49b-3d56-bc29-4b2fd943486a,SESCO,II.1.1,Capital Federal,AR-C,annual,2013,naphtha combustion consumption by to the public,7874.480767999999,TJ,N2O,0.6,kg/TJ,4724.688460799999,kg -d455bb10-e5ef-343e-906c-c6292b20d35a,SESCO,II.1.1,Catamarca,AR-K,annual,2013,naphtha combustion consumption by to the public,648.5624376,TJ,CO2,73300.0,kg/TJ,47539626.676079996,kg -a83511c6-0d34-3407-b428-30e94004da8a,SESCO,II.1.1,Catamarca,AR-K,annual,2013,naphtha combustion consumption by to the public,648.5624376,TJ,CH4,3.0,kg/TJ,1945.6873127999997,kg -d7bd4df9-7cd1-33d4-b71a-fd7bab11d037,SESCO,II.1.1,Catamarca,AR-K,annual,2013,naphtha combustion consumption by to the public,648.5624376,TJ,N2O,0.6,kg/TJ,389.13746255999996,kg -e3752f0b-34da-3605-8958-7c7514569504,SESCO,II.1.1,Chaco,AR-H,annual,2013,naphtha combustion consumption by to the public,2081.1587873999997,TJ,CO2,73300.0,kg/TJ,152548939.11641997,kg -be5eaece-e957-36ad-bf8b-2fe01fb86d24,SESCO,II.1.1,Chaco,AR-H,annual,2013,naphtha combustion consumption by to the public,2081.1587873999997,TJ,CH4,3.0,kg/TJ,6243.476362199999,kg -34edec11-bb11-313c-9b4d-1e07df8a4289,SESCO,II.1.1,Chaco,AR-H,annual,2013,naphtha combustion consumption by to the public,2081.1587873999997,TJ,N2O,0.6,kg/TJ,1248.6952724399998,kg -63f1d1ec-8ab2-3f7e-b287-c9f9f0bc9391,SESCO,II.1.1,Chubut,AR-U,annual,2013,naphtha combustion consumption by to the public,3747.3677395,TJ,CO2,73300.0,kg/TJ,274682055.30535,kg -c034be78-9347-3365-aa04-dfc2bf1f87be,SESCO,II.1.1,Chubut,AR-U,annual,2013,naphtha combustion consumption by to the public,3747.3677395,TJ,CH4,3.0,kg/TJ,11242.1032185,kg -163ec42b-1376-372c-8078-aa0188658c5f,SESCO,II.1.1,Chubut,AR-U,annual,2013,naphtha combustion consumption by to the public,3747.3677395,TJ,N2O,0.6,kg/TJ,2248.4206437,kg -60b004d9-998b-3286-8d68-5578e6bc8f39,SESCO,II.1.1,Corrientes,AR-W,annual,2013,naphtha combustion consumption by to the public,2295.1882569,TJ,CO2,73300.0,kg/TJ,168237299.23077,kg -a6531b04-ee3b-38dc-8936-e0c7139f4894,SESCO,II.1.1,Corrientes,AR-W,annual,2013,naphtha combustion consumption by to the public,2295.1882569,TJ,CH4,3.0,kg/TJ,6885.5647707,kg -7ba3edb1-1387-3371-88cd-b1d9f3fe70e2,SESCO,II.1.1,Corrientes,AR-W,annual,2013,naphtha combustion consumption by to the public,2295.1882569,TJ,N2O,0.6,kg/TJ,1377.1129541399998,kg -b6b6052d-abf4-32b9-85bf-37a900f028ec,SESCO,II.1.1,Córdoba,AR-X,annual,2013,naphtha combustion consumption by to the public,9504.4866917,TJ,CO2,73300.0,kg/TJ,696678874.50161,kg -6650a112-dfac-3ad5-aa44-c9b2b0a31af5,SESCO,II.1.1,Córdoba,AR-X,annual,2013,naphtha combustion consumption by to the public,9504.4866917,TJ,CH4,3.0,kg/TJ,28513.4600751,kg -17957da4-f760-3543-a731-d95f704e441d,SESCO,II.1.1,Córdoba,AR-X,annual,2013,naphtha combustion consumption by to the public,9504.4866917,TJ,N2O,0.6,kg/TJ,5702.692015019999,kg -36c2627f-cae1-347f-8b4f-a54d05d2dac5,SESCO,II.1.1,Entre Rios,AR-E,annual,2013,naphtha combustion consumption by to the public,2935.9560923,TJ,CO2,73300.0,kg/TJ,215205581.56559,kg -b80f4134-3c2f-3f6f-9280-beb1047a2dfb,SESCO,II.1.1,Entre Rios,AR-E,annual,2013,naphtha combustion consumption by to the public,2935.9560923,TJ,CH4,3.0,kg/TJ,8807.8682769,kg -2f9ddbaf-0eb6-33c0-902f-5f20eb9359b1,SESCO,II.1.1,Entre Rios,AR-E,annual,2013,naphtha combustion consumption by to the public,2935.9560923,TJ,N2O,0.6,kg/TJ,1761.57365538,kg -89e7409b-0c6d-3d75-a2eb-1edf8e16d3c0,SESCO,II.1.1,Formosa,AR-P,annual,2013,naphtha combustion consumption by to the public,792.5049055,TJ,CO2,73300.0,kg/TJ,58090609.573149994,kg -26af93cf-a5a2-32b0-98bf-8f29ff0dbe60,SESCO,II.1.1,Formosa,AR-P,annual,2013,naphtha combustion consumption by to the public,792.5049055,TJ,CH4,3.0,kg/TJ,2377.5147165,kg -c80ee30c-b4de-3740-a027-5cca9e07c7eb,SESCO,II.1.1,Formosa,AR-P,annual,2013,naphtha combustion consumption by to the public,792.5049055,TJ,N2O,0.6,kg/TJ,475.50294329999997,kg -820bf624-5ee0-3399-9278-015201a86938,SESCO,II.1.1,Jujuy,AR-Y,annual,2013,naphtha combustion consumption by to the public,1007.9515753999999,TJ,CO2,73300.0,kg/TJ,73882850.47681999,kg -708581bc-4e50-3f81-85d7-222703a05f9b,SESCO,II.1.1,Jujuy,AR-Y,annual,2013,naphtha combustion consumption by to the public,1007.9515753999999,TJ,CH4,3.0,kg/TJ,3023.8547261999997,kg -a5101f8a-61c4-3d14-aeb2-a86261ab4d64,SESCO,II.1.1,Jujuy,AR-Y,annual,2013,naphtha combustion consumption by to the public,1007.9515753999999,TJ,N2O,0.6,kg/TJ,604.77094524,kg -c813a4f9-744b-3a42-a7ca-2544f51796a2,SESCO,II.1.1,La Pampa,AR-L,annual,2013,naphtha combustion consumption by to the public,1635.4814706999998,TJ,CO2,73300.0,kg/TJ,119880791.80230999,kg -1d46df78-4e4c-32da-b75b-d5570a84f9bc,SESCO,II.1.1,La Pampa,AR-L,annual,2013,naphtha combustion consumption by to the public,1635.4814706999998,TJ,CH4,3.0,kg/TJ,4906.4444121,kg -1e411006-fd0a-385a-9208-46a00b1a95f9,SESCO,II.1.1,La Pampa,AR-L,annual,2013,naphtha combustion consumption by to the public,1635.4814706999998,TJ,N2O,0.6,kg/TJ,981.2888824199998,kg -ac2ff34a-1ed8-3125-8b1a-c4677a627384,SESCO,II.1.1,La Rioja,AR-F,annual,2013,naphtha combustion consumption by to the public,894.6399615999999,TJ,CO2,73300.0,kg/TJ,65577109.18527999,kg -9703109e-46de-3747-8229-90e7336d7e72,SESCO,II.1.1,La Rioja,AR-F,annual,2013,naphtha combustion consumption by to the public,894.6399615999999,TJ,CH4,3.0,kg/TJ,2683.9198847999996,kg -b3bb5318-772d-3fce-8a00-cda78a11da36,SESCO,II.1.1,La Rioja,AR-F,annual,2013,naphtha combustion consumption by to the public,894.6399615999999,TJ,N2O,0.6,kg/TJ,536.7839769599999,kg -29509798-d8f8-358a-a2f0-06ddaf5fc1bc,SESCO,II.1.1,Mendoza,AR-M,annual,2013,naphtha combustion consumption by to the public,5240.227315399999,TJ,CO2,73300.0,kg/TJ,384108662.2188199,kg -af604ce2-878c-397c-a2b9-621f82e6f850,SESCO,II.1.1,Mendoza,AR-M,annual,2013,naphtha combustion consumption by to the public,5240.227315399999,TJ,CH4,3.0,kg/TJ,15720.681946199995,kg -0275fe73-9018-3663-a929-ed513ed92f3d,SESCO,II.1.1,Mendoza,AR-M,annual,2013,naphtha combustion consumption by to the public,5240.227315399999,TJ,N2O,0.6,kg/TJ,3144.136389239999,kg -c84204d0-d50e-3cf7-b8fc-e7fbf563b6c7,SESCO,II.1.1,Misiones,AR-N,annual,2013,naphtha combustion consumption by to the public,3061.3139094999997,TJ,CO2,73300.0,kg/TJ,224394309.56634998,kg -28198087-9ad6-3e4c-95ef-b0203c5f9da7,SESCO,II.1.1,Misiones,AR-N,annual,2013,naphtha combustion consumption by to the public,3061.3139094999997,TJ,CH4,3.0,kg/TJ,9183.941728499998,kg -b576ad30-be66-3b88-9f9d-867732c6add2,SESCO,II.1.1,Misiones,AR-N,annual,2013,naphtha combustion consumption by to the public,3061.3139094999997,TJ,N2O,0.6,kg/TJ,1836.7883456999998,kg -398e6d65-3cc4-3766-993a-09d47ce6ce93,SESCO,II.1.1,Neuquén,AR-Q,annual,2013,naphtha combustion consumption by to the public,2977.9567586999997,TJ,CO2,73300.0,kg/TJ,218284230.41270998,kg -a3217cba-d364-3148-a4cc-959d21d31b01,SESCO,II.1.1,Neuquén,AR-Q,annual,2013,naphtha combustion consumption by to the public,2977.9567586999997,TJ,CH4,3.0,kg/TJ,8933.870276099999,kg -ee8baff8-5e6a-318b-af52-142f4609ffb4,SESCO,II.1.1,Neuquén,AR-Q,annual,2013,naphtha combustion consumption by to the public,2977.9567586999997,TJ,N2O,0.6,kg/TJ,1786.7740552199998,kg -95b6eb39-a46c-38d9-ae58-8008b7e2e6ff,SESCO,II.1.1,Rio Negro,AR-R,annual,2013,naphtha combustion consumption by to the public,3045.2093594999997,TJ,CO2,73300.0,kg/TJ,223213846.05134997,kg -17642d3c-c228-3756-a231-e104050b2723,SESCO,II.1.1,Rio Negro,AR-R,annual,2013,naphtha combustion consumption by to the public,3045.2093594999997,TJ,CH4,3.0,kg/TJ,9135.628078499998,kg -082cf6ef-f6d7-3c13-a40a-07612b167006,SESCO,II.1.1,Rio Negro,AR-R,annual,2013,naphtha combustion consumption by to the public,3045.2093594999997,TJ,N2O,0.6,kg/TJ,1827.1256156999998,kg -220570f4-c482-3095-8f68-20e557d2ccdc,SESCO,II.1.1,Salta,AR-A,annual,2013,naphtha combustion consumption by to the public,2344.5325980999996,TJ,CO2,73300.0,kg/TJ,171854239.44072998,kg -12b4628a-ddca-3c99-a144-9b78bd5a86fb,SESCO,II.1.1,Salta,AR-A,annual,2013,naphtha combustion consumption by to the public,2344.5325980999996,TJ,CH4,3.0,kg/TJ,7033.597794299999,kg -f35403c1-ce8b-3553-9326-998f0baea882,SESCO,II.1.1,Salta,AR-A,annual,2013,naphtha combustion consumption by to the public,2344.5325980999996,TJ,N2O,0.6,kg/TJ,1406.7195588599998,kg -308c4162-76a5-3f8e-8685-ab7c33dbf526,SESCO,II.1.1,San Juan,AR-J,annual,2013,naphtha combustion consumption by to the public,1536.6317427999998,TJ,CO2,73300.0,kg/TJ,112635106.74723998,kg -8c651fa1-a427-383b-a60e-9c4453c5b7d4,SESCO,II.1.1,San Juan,AR-J,annual,2013,naphtha combustion consumption by to the public,1536.6317427999998,TJ,CH4,3.0,kg/TJ,4609.895228399999,kg -a614a811-4413-37b1-8768-d2793491ef07,SESCO,II.1.1,San Juan,AR-J,annual,2013,naphtha combustion consumption by to the public,1536.6317427999998,TJ,N2O,0.6,kg/TJ,921.9790456799998,kg -f04814c5-0517-320b-90e2-e508736751a6,SESCO,II.1.1,San Luis,AR-D,annual,2013,naphtha combustion consumption by to the public,1249.3909889999998,TJ,CO2,73300.0,kg/TJ,91580359.49369998,kg -e182dec4-ff40-360a-90e0-5272187480d8,SESCO,II.1.1,San Luis,AR-D,annual,2013,naphtha combustion consumption by to the public,1249.3909889999998,TJ,CH4,3.0,kg/TJ,3748.1729669999995,kg -f087b1ca-f744-3b1c-bac4-e642abea737d,SESCO,II.1.1,San Luis,AR-D,annual,2013,naphtha combustion consumption by to the public,1249.3909889999998,TJ,N2O,0.6,kg/TJ,749.6345933999999,kg -1bb2557e-be59-3366-ae40-82f4ecdd0ebd,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2013,naphtha combustion consumption by to the public,2583.4274928,TJ,CO2,73300.0,kg/TJ,189365235.22224,kg -66ee3145-d842-3275-9168-d7036fe4ea4a,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2013,naphtha combustion consumption by to the public,2583.4274928,TJ,CH4,3.0,kg/TJ,7750.2824784,kg -d2701d70-28fa-32cb-b5b1-3f4161ce5c62,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2013,naphtha combustion consumption by to the public,2583.4274928,TJ,N2O,0.6,kg/TJ,1550.05649568,kg -cf7551cd-88bf-3027-89a1-fb1b965ef9b6,SESCO,II.1.1,Santa Fe,AR-S,annual,2013,naphtha combustion consumption by to the public,7192.581911899999,TJ,CO2,73300.0,kg/TJ,527216254.1422699,kg -a9844745-f3f3-3389-b1d2-ac3ecbf8a8f8,SESCO,II.1.1,Santa Fe,AR-S,annual,2013,naphtha combustion consumption by to the public,7192.581911899999,TJ,CH4,3.0,kg/TJ,21577.745735699995,kg -32f0190d-2e41-3f97-8fd2-70d913db66e5,SESCO,II.1.1,Santa Fe,AR-S,annual,2013,naphtha combustion consumption by to the public,7192.581911899999,TJ,N2O,0.6,kg/TJ,4315.549147139999,kg -212473c0-9c59-3c26-8770-53d22b3a13a0,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2013,naphtha combustion consumption by to the public,1055.9109253,TJ,CO2,73300.0,kg/TJ,77398270.82449,kg -50268a5a-f265-3ebb-85ad-4e839d2e8697,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2013,naphtha combustion consumption by to the public,1055.9109253,TJ,CH4,3.0,kg/TJ,3167.7327759,kg -a548005a-2f4c-3ff6-875c-10a7e6452450,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2013,naphtha combustion consumption by to the public,1055.9109253,TJ,N2O,0.6,kg/TJ,633.5465551799999,kg -5dd86792-60dc-3c06-a1ac-142dacf563fb,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2013,naphtha combustion consumption by to the public,1903.7188554999998,TJ,CO2,73300.0,kg/TJ,139542592.10814998,kg -0d1a5ff5-f0d2-390a-bcdb-b2a1ec051d87,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2013,naphtha combustion consumption by to the public,1903.7188554999998,TJ,CH4,3.0,kg/TJ,5711.1565665,kg -dc293328-eca3-33c6-aa3b-31bca32da82f,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2013,naphtha combustion consumption by to the public,1903.7188554999998,TJ,N2O,0.6,kg/TJ,1142.2313132999998,kg -8f5f237a-abad-33d1-aac7-c8805d19a476,SESCO,II.1.1,Tucuman,AR-T,annual,2013,naphtha combustion consumption by to the public,2010.6208583999996,TJ,CO2,73300.0,kg/TJ,147378508.92071998,kg -343acbe5-8869-3a81-b11c-f234e8cfeb06,SESCO,II.1.1,Tucuman,AR-T,annual,2013,naphtha combustion consumption by to the public,2010.6208583999996,TJ,CH4,3.0,kg/TJ,6031.862575199999,kg -c52a501c-90ff-3f6c-9886-d004b258457f,SESCO,II.1.1,Tucuman,AR-T,annual,2013,naphtha combustion consumption by to the public,2010.6208583999996,TJ,N2O,0.6,kg/TJ,1206.3725150399998,kg -696f116c-2978-3acd-b585-868c3c5d85f5,SESCO,II.1.1,Buenos Aires,AR-B,annual,2013,naphtha combustion consumption by to the public,13505.468884599999,TJ,CO2,73300.0,kg/TJ,989950869.24118,kg -91d541cf-84e0-3aea-9e34-5f8582442a89,SESCO,II.1.1,Buenos Aires,AR-B,annual,2013,naphtha combustion consumption by to the public,13505.468884599999,TJ,CH4,3.0,kg/TJ,40516.4066538,kg -fe514570-1632-3fcf-bd88-035e97727b21,SESCO,II.1.1,Buenos Aires,AR-B,annual,2013,naphtha combustion consumption by to the public,13505.468884599999,TJ,N2O,0.6,kg/TJ,8103.281330759999,kg -461d7436-af14-310c-b23e-c408facbf8a7,SESCO,II.1.1,Capital Federal,AR-C,annual,2013,naphtha combustion consumption by to the public,3136.0068124,TJ,CO2,73300.0,kg/TJ,229869299.34892,kg -e37f7b88-57c3-3f3d-8ba1-548c38766fe2,SESCO,II.1.1,Capital Federal,AR-C,annual,2013,naphtha combustion consumption by to the public,3136.0068124,TJ,CH4,3.0,kg/TJ,9408.0204372,kg -63474893-8db5-3c57-a4c2-12880485e1f6,SESCO,II.1.1,Capital Federal,AR-C,annual,2013,naphtha combustion consumption by to the public,3136.0068124,TJ,N2O,0.6,kg/TJ,1881.6040874399998,kg -a9fe51ac-c172-3c81-b536-630c1c9f3273,SESCO,II.1.1,Catamarca,AR-K,annual,2013,naphtha combustion consumption by to the public,208.2318315,TJ,CO2,73300.0,kg/TJ,15263393.248949999,kg -f7d5add8-bd8a-367d-a182-c08138a1d83a,SESCO,II.1.1,Catamarca,AR-K,annual,2013,naphtha combustion consumption by to the public,208.2318315,TJ,CH4,3.0,kg/TJ,624.6954945,kg -9b819912-44f9-39e3-9042-c7306b024cfa,SESCO,II.1.1,Catamarca,AR-K,annual,2013,naphtha combustion consumption by to the public,208.2318315,TJ,N2O,0.6,kg/TJ,124.93909889999999,kg -b280cb48-0727-3c1c-becc-46bc609227e3,SESCO,II.1.1,Chaco,AR-H,annual,2013,naphtha combustion consumption by to the public,772.2131724999999,TJ,CO2,73300.0,kg/TJ,56603225.54425,kg -959195f2-3fbb-35ce-b9ff-c11f97c39f33,SESCO,II.1.1,Chaco,AR-H,annual,2013,naphtha combustion consumption by to the public,772.2131724999999,TJ,CH4,3.0,kg/TJ,2316.6395175,kg -f6a2f478-a176-3742-936c-e2d48b4427f9,SESCO,II.1.1,Chaco,AR-H,annual,2013,naphtha combustion consumption by to the public,772.2131724999999,TJ,N2O,0.6,kg/TJ,463.32790349999993,kg -12f12c89-3535-36f5-809f-022376e8be18,SESCO,II.1.1,Chubut,AR-U,annual,2013,naphtha combustion consumption by to the public,1033.2035098,TJ,CO2,73300.0,kg/TJ,75733817.26833999,kg -9a8c65a7-7da4-36d2-8be6-6f05d8ddd67d,SESCO,II.1.1,Chubut,AR-U,annual,2013,naphtha combustion consumption by to the public,1033.2035098,TJ,CH4,3.0,kg/TJ,3099.6105294,kg -12470b6f-b681-3a62-9020-3f69f521d3f2,SESCO,II.1.1,Chubut,AR-U,annual,2013,naphtha combustion consumption by to the public,1033.2035098,TJ,N2O,0.6,kg/TJ,619.9221058799999,kg -c7b7c5f5-44a2-3b7e-aacb-270dde0148b0,SESCO,II.1.1,Corrientes,AR-W,annual,2013,naphtha combustion consumption by to the public,750.1177299,TJ,CO2,73300.0,kg/TJ,54983629.60167,kg -50139b28-9499-3f5f-9cfa-89c08c50abe1,SESCO,II.1.1,Corrientes,AR-W,annual,2013,naphtha combustion consumption by to the public,750.1177299,TJ,CH4,3.0,kg/TJ,2250.3531897,kg -5258582c-d4a1-3324-9d32-de9cc42919db,SESCO,II.1.1,Corrientes,AR-W,annual,2013,naphtha combustion consumption by to the public,750.1177299,TJ,N2O,0.6,kg/TJ,450.07063794,kg -d1ff3955-5052-3d3d-b441-7e8efa707a7e,SESCO,II.1.1,Córdoba,AR-X,annual,2013,naphtha combustion consumption by to the public,3249.4472625999997,TJ,CO2,73300.0,kg/TJ,238184484.34857997,kg -a610c2e8-375b-3e35-9640-a0105e459d5b,SESCO,II.1.1,Córdoba,AR-X,annual,2013,naphtha combustion consumption by to the public,3249.4472625999997,TJ,CH4,3.0,kg/TJ,9748.3417878,kg -3617742a-5e5b-32b7-a075-3781fce45772,SESCO,II.1.1,Córdoba,AR-X,annual,2013,naphtha combustion consumption by to the public,3249.4472625999997,TJ,N2O,0.6,kg/TJ,1949.6683575599998,kg -1be2ad2f-3dec-31ab-a091-ea05886619b7,SESCO,II.1.1,Entre Rios,AR-E,annual,2013,naphtha combustion consumption by to the public,1188.6446263999999,TJ,CO2,73300.0,kg/TJ,87127651.11512,kg -1505faff-c7ae-395d-99cf-047946d9c8b5,SESCO,II.1.1,Entre Rios,AR-E,annual,2013,naphtha combustion consumption by to the public,1188.6446263999999,TJ,CH4,3.0,kg/TJ,3565.9338792,kg -0141ff0f-86da-33cd-96ab-8b6a7015bd6f,SESCO,II.1.1,Entre Rios,AR-E,annual,2013,naphtha combustion consumption by to the public,1188.6446263999999,TJ,N2O,0.6,kg/TJ,713.1867758399999,kg -c61b2225-ea77-3b54-b558-aed76b730751,SESCO,II.1.1,Formosa,AR-P,annual,2013,naphtha combustion consumption by to the public,193.12576359999997,TJ,CO2,73300.0,kg/TJ,14156118.471879998,kg -03d4b23b-6e1a-33bb-afc9-86729346ef9f,SESCO,II.1.1,Formosa,AR-P,annual,2013,naphtha combustion consumption by to the public,193.12576359999997,TJ,CH4,3.0,kg/TJ,579.3772907999999,kg -07674a7f-0d08-36b0-8bfc-fabd2c6e2d3d,SESCO,II.1.1,Formosa,AR-P,annual,2013,naphtha combustion consumption by to the public,193.12576359999997,TJ,N2O,0.6,kg/TJ,115.87545815999998,kg -cedaf929-bea3-3e57-9c54-7d8ac713744d,SESCO,II.1.1,Jujuy,AR-Y,annual,2013,naphtha combustion consumption by to the public,291.170264,TJ,CO2,73300.0,kg/TJ,21342780.3512,kg -2801c294-ceb2-3a94-8c1a-e4ee80c06792,SESCO,II.1.1,Jujuy,AR-Y,annual,2013,naphtha combustion consumption by to the public,291.170264,TJ,CH4,3.0,kg/TJ,873.5107919999999,kg -167a7311-6672-3891-b196-c02a1add701f,SESCO,II.1.1,Jujuy,AR-Y,annual,2013,naphtha combustion consumption by to the public,291.170264,TJ,N2O,0.6,kg/TJ,174.70215839999997,kg -8bb0de76-e461-3862-859d-9dc43c79752e,SESCO,II.1.1,La Pampa,AR-L,annual,2013,naphtha combustion consumption by to the public,619.2843657,TJ,CO2,73300.0,kg/TJ,45393544.00581,kg -3071a60a-830a-3fe7-954c-18c543cc37a8,SESCO,II.1.1,La Pampa,AR-L,annual,2013,naphtha combustion consumption by to the public,619.2843657,TJ,CH4,3.0,kg/TJ,1857.8530971,kg -3c65080b-2576-39a5-aed0-2da2c2589274,SESCO,II.1.1,La Pampa,AR-L,annual,2013,naphtha combustion consumption by to the public,619.2843657,TJ,N2O,0.6,kg/TJ,371.57061941999996,kg -7ccb9a10-10a2-3f2d-a51d-513352c624b9,SESCO,II.1.1,La Rioja,AR-F,annual,2013,naphtha combustion consumption by to the public,298.256266,TJ,CO2,73300.0,kg/TJ,21862184.297799997,kg -87c8afde-e47a-3bcb-9cd4-6da89a668496,SESCO,II.1.1,La Rioja,AR-F,annual,2013,naphtha combustion consumption by to the public,298.256266,TJ,CH4,3.0,kg/TJ,894.768798,kg -2034a370-1c9c-3909-8c40-a0acdef4cf2d,SESCO,II.1.1,La Rioja,AR-F,annual,2013,naphtha combustion consumption by to the public,298.256266,TJ,N2O,0.6,kg/TJ,178.95375959999998,kg -5a36e0e0-d80f-3779-9da3-4f09b91272a1,SESCO,II.1.1,Mendoza,AR-M,annual,2013,naphtha combustion consumption by to the public,1881.3013218999997,TJ,CO2,73300.0,kg/TJ,137899386.89527,kg -6b7168aa-4191-39e8-94b0-ef711bc24f06,SESCO,II.1.1,Mendoza,AR-M,annual,2013,naphtha combustion consumption by to the public,1881.3013218999997,TJ,CH4,3.0,kg/TJ,5643.903965699999,kg -2ae259fb-b6e0-3f38-9cf7-6fbf3d9a6815,SESCO,II.1.1,Mendoza,AR-M,annual,2013,naphtha combustion consumption by to the public,1881.3013218999997,TJ,N2O,0.6,kg/TJ,1128.7807931399998,kg -0a98f458-c7d5-3818-a0f2-461c640e7b9d,SESCO,II.1.1,Misiones,AR-N,annual,2013,naphtha combustion consumption by to the public,887.5217504999999,TJ,CO2,73300.0,kg/TJ,65055344.31164999,kg -043002a1-9c8e-355d-817f-0873aa5deefa,SESCO,II.1.1,Misiones,AR-N,annual,2013,naphtha combustion consumption by to the public,887.5217504999999,TJ,CH4,3.0,kg/TJ,2662.5652514999997,kg -fdff61bb-5d08-314c-a0c7-f00587cdafe1,SESCO,II.1.1,Misiones,AR-N,annual,2013,naphtha combustion consumption by to the public,887.5217504999999,TJ,N2O,0.6,kg/TJ,532.5130502999999,kg -a830c8d1-a4dd-3038-87e1-45f06b1a8ad3,SESCO,II.1.1,Neuquén,AR-Q,annual,2013,naphtha combustion consumption by to the public,965.7254452999999,TJ,CO2,73300.0,kg/TJ,70787675.14049,kg -0c0b22cb-0839-35aa-8800-a5e67aa991de,SESCO,II.1.1,Neuquén,AR-Q,annual,2013,naphtha combustion consumption by to the public,965.7254452999999,TJ,CH4,3.0,kg/TJ,2897.1763358999997,kg -23bf8a6f-d0c6-3c82-8ba9-06b7a2651f39,SESCO,II.1.1,Neuquén,AR-Q,annual,2013,naphtha combustion consumption by to the public,965.7254452999999,TJ,N2O,0.6,kg/TJ,579.43526718,kg -07d10bf7-dc8d-3d26-a40c-3b2897c92b9e,SESCO,II.1.1,Rio Negro,AR-R,annual,2013,naphtha combustion consumption by to the public,977.6750213999999,TJ,CO2,73300.0,kg/TJ,71663579.06862,kg -fa561996-e01e-338c-a231-133be973c03f,SESCO,II.1.1,Rio Negro,AR-R,annual,2013,naphtha combustion consumption by to the public,977.6750213999999,TJ,CH4,3.0,kg/TJ,2933.0250641999996,kg -8bf89288-5166-3ec4-b602-9b5fd7fe7649,SESCO,II.1.1,Rio Negro,AR-R,annual,2013,naphtha combustion consumption by to the public,977.6750213999999,TJ,N2O,0.6,kg/TJ,586.6050128399999,kg -038c3f91-a597-3f7c-baa5-1bed1db70e7f,SESCO,II.1.1,Salta,AR-A,annual,2013,naphtha combustion consumption by to the public,719.6801303999999,TJ,CO2,73300.0,kg/TJ,52752553.55831999,kg -58cf613c-21e8-3fcb-9682-4fa39037f672,SESCO,II.1.1,Salta,AR-A,annual,2013,naphtha combustion consumption by to the public,719.6801303999999,TJ,CH4,3.0,kg/TJ,2159.0403911999997,kg -f3e7d79e-77ba-399a-adee-d8dec815283c,SESCO,II.1.1,Salta,AR-A,annual,2013,naphtha combustion consumption by to the public,719.6801303999999,TJ,N2O,0.6,kg/TJ,431.80807823999993,kg -1f564d1d-a4fb-3a3a-8675-4c183743e810,SESCO,II.1.1,San Juan,AR-J,annual,2013,naphtha combustion consumption by to the public,621.5390027,TJ,CO2,73300.0,kg/TJ,45558808.89791,kg -973d594e-9bd5-323a-a72d-874010ee5c4a,SESCO,II.1.1,San Juan,AR-J,annual,2013,naphtha combustion consumption by to the public,621.5390027,TJ,CH4,3.0,kg/TJ,1864.6170081,kg -8e3b860d-b0c7-3209-93bd-1a4d9d57c9bc,SESCO,II.1.1,San Juan,AR-J,annual,2013,naphtha combustion consumption by to the public,621.5390027,TJ,N2O,0.6,kg/TJ,372.92340162,kg -deaf38c9-20a8-398d-8f83-451099184dd7,SESCO,II.1.1,San Luis,AR-D,annual,2013,naphtha combustion consumption by to the public,560.7926401,TJ,CO2,73300.0,kg/TJ,41106100.519329995,kg -b85666d1-ead2-3e91-960e-b976a5dfe40d,SESCO,II.1.1,San Luis,AR-D,annual,2013,naphtha combustion consumption by to the public,560.7926401,TJ,CH4,3.0,kg/TJ,1682.3779203,kg -8ac386af-f622-3957-a0ca-3859151dea46,SESCO,II.1.1,San Luis,AR-D,annual,2013,naphtha combustion consumption by to the public,560.7926401,TJ,N2O,0.6,kg/TJ,336.47558405999996,kg -e0328e0e-9797-35b9-8083-2905ada47e4b,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2013,naphtha combustion consumption by to the public,522.0450928,TJ,CO2,73300.0,kg/TJ,38265905.30224,kg -804e167f-dfc7-3442-9937-508eb274a303,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2013,naphtha combustion consumption by to the public,522.0450928,TJ,CH4,3.0,kg/TJ,1566.1352784,kg -23521648-9aff-3f2b-bfc0-a70690100a62,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2013,naphtha combustion consumption by to the public,522.0450928,TJ,N2O,0.6,kg/TJ,313.22705568,kg -5dcc781f-b92e-34ad-80ad-098a15f73838,SESCO,II.1.1,Santa Fe,AR-S,annual,2013,naphtha combustion consumption by to the public,2947.6479955999994,TJ,CO2,73300.0,kg/TJ,216062598.07747996,kg -5ddd5e9f-66e1-3857-8630-1e9621587fa7,SESCO,II.1.1,Santa Fe,AR-S,annual,2013,naphtha combustion consumption by to the public,2947.6479955999994,TJ,CH4,3.0,kg/TJ,8842.943986799997,kg -ccd2647c-e277-3258-ada8-9f0ccab88396,SESCO,II.1.1,Santa Fe,AR-S,annual,2013,naphtha combustion consumption by to the public,2947.6479955999994,TJ,N2O,0.6,kg/TJ,1768.5887973599995,kg -8c5d7fec-3090-31d2-8d59-f5ba44ec6670,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2013,naphtha combustion consumption by to the public,556.7987117,TJ,CO2,73300.0,kg/TJ,40813345.56761,kg -f257d6d6-e0d7-3f80-846a-02f42445316b,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2013,naphtha combustion consumption by to the public,556.7987117,TJ,CH4,3.0,kg/TJ,1670.3961351,kg -8b5baae8-3c08-39d2-98cb-5dbac95cfb1a,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2013,naphtha combustion consumption by to the public,556.7987117,TJ,N2O,0.6,kg/TJ,334.07922702,kg -f5725181-0dd9-322f-b4f7-1a5a17619c56,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2013,naphtha combustion consumption by to the public,42.097293699999994,TJ,CO2,73300.0,kg/TJ,3085731.6282099998,kg -5b062c0f-fd73-34b7-a7ad-2e57ccd1f169,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2013,naphtha combustion consumption by to the public,42.097293699999994,TJ,CH4,3.0,kg/TJ,126.29188109999998,kg -235b588e-5e4a-3bcb-94d5-6b859c22be12,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2013,naphtha combustion consumption by to the public,42.097293699999994,TJ,N2O,0.6,kg/TJ,25.258376219999995,kg -6ca90749-fc9e-3239-b48a-0c476fe37ef6,SESCO,II.1.1,Tucuman,AR-T,annual,2013,naphtha combustion consumption by to the public,604.0816705,TJ,CO2,73300.0,kg/TJ,44279186.44765,kg -5679cd17-dd37-3173-ab44-f5eaba3df0b0,SESCO,II.1.1,Tucuman,AR-T,annual,2013,naphtha combustion consumption by to the public,604.0816705,TJ,CH4,3.0,kg/TJ,1812.2450115,kg -ec472839-db05-398e-8e2e-b0907458336f,SESCO,II.1.1,Tucuman,AR-T,annual,2013,naphtha combustion consumption by to the public,604.0816705,TJ,N2O,0.6,kg/TJ,362.44900229999996,kg -3b71db4c-f583-3b9e-8fcf-e0c8bb4eae53,SESCO,I.3.1,Neuquén,AR-Q,annual,2013,naphtha combustion consumption by petrochemical industries,0.32209099999999996,TJ,CO2,73300.0,kg/TJ,23609.270299999996,kg -76d6287f-759c-3325-85fc-eba536c01369,SESCO,I.3.1,Neuquén,AR-Q,annual,2013,naphtha combustion consumption by petrochemical industries,0.32209099999999996,TJ,CH4,3.0,kg/TJ,0.9662729999999999,kg -62e53599-c5ae-398d-82f6-e2d08b8a4daf,SESCO,I.3.1,Neuquén,AR-Q,annual,2013,naphtha combustion consumption by petrochemical industries,0.32209099999999996,TJ,N2O,0.6,kg/TJ,0.19325459999999997,kg -446d517a-2307-317d-ac49-2b8b304756e5,SESCO,II.1.1,Buenos Aires,AR-B,annual,2013,naphtha combustion consumption by freight transport,159.112954,TJ,CO2,73300.0,kg/TJ,11662979.5282,kg -fff1d268-244b-30f6-9748-ae7ce41cc481,SESCO,II.1.1,Buenos Aires,AR-B,annual,2013,naphtha combustion consumption by freight transport,159.112954,TJ,CH4,3.0,kg/TJ,477.338862,kg -8ada9be9-4d1c-3713-b693-0a668b8cc4d8,SESCO,II.1.1,Buenos Aires,AR-B,annual,2013,naphtha combustion consumption by freight transport,159.112954,TJ,N2O,0.6,kg/TJ,95.4677724,kg -7df6e31c-09f2-302e-b093-445123d52ea4,SESCO,II.1.1,Capital Federal,AR-C,annual,2013,naphtha combustion consumption by freight transport,156.7938988,TJ,CO2,73300.0,kg/TJ,11492992.78204,kg -c09ba2c1-3307-3075-a5ec-aa3d4ec381fe,SESCO,II.1.1,Capital Federal,AR-C,annual,2013,naphtha combustion consumption by freight transport,156.7938988,TJ,CH4,3.0,kg/TJ,470.3816964,kg -b321a483-fa70-358d-9983-ae77321d89a5,SESCO,II.1.1,Capital Federal,AR-C,annual,2013,naphtha combustion consumption by freight transport,156.7938988,TJ,N2O,0.6,kg/TJ,94.07633928,kg -58e80d2b-f986-377e-b032-f964afc2ac0b,SESCO,II.1.1,Chaco,AR-H,annual,2013,naphtha combustion consumption by freight transport,4.605901299999999,TJ,CO2,73300.0,kg/TJ,337612.56528999994,kg -89557aa0-d890-336f-a2ae-49d9f981fce5,SESCO,II.1.1,Chaco,AR-H,annual,2013,naphtha combustion consumption by freight transport,4.605901299999999,TJ,CH4,3.0,kg/TJ,13.817703899999998,kg -1962f524-e2f3-3458-a41e-eb8af5482536,SESCO,II.1.1,Chaco,AR-H,annual,2013,naphtha combustion consumption by freight transport,4.605901299999999,TJ,N2O,0.6,kg/TJ,2.7635407799999996,kg -273a22c0-c507-3941-9e63-81ae12ebd3b6,SESCO,II.1.1,Chubut,AR-U,annual,2013,naphtha combustion consumption by freight transport,0.8374366,TJ,CO2,73300.0,kg/TJ,61384.10278,kg -9eac39aa-33cf-31d1-95af-0a35a816c941,SESCO,II.1.1,Chubut,AR-U,annual,2013,naphtha combustion consumption by freight transport,0.8374366,TJ,CH4,3.0,kg/TJ,2.5123097999999997,kg -272db47e-b16e-3077-9f6b-8e469fe547b0,SESCO,II.1.1,Chubut,AR-U,annual,2013,naphtha combustion consumption by freight transport,0.8374366,TJ,N2O,0.6,kg/TJ,0.50246196,kg -7a5ebdc2-a0b0-3b2b-85ea-c56e31cc9a8c,SESCO,II.1.1,Corrientes,AR-W,annual,2013,naphtha combustion consumption by freight transport,1.3849913,TJ,CO2,73300.0,kg/TJ,101519.86229,kg -c84f38a2-e383-3b72-839b-d0a0b8e2a36d,SESCO,II.1.1,Corrientes,AR-W,annual,2013,naphtha combustion consumption by freight transport,1.3849913,TJ,CH4,3.0,kg/TJ,4.1549739,kg -bd0f4e75-ce7b-3cf7-9508-27eca05447e8,SESCO,II.1.1,Corrientes,AR-W,annual,2013,naphtha combustion consumption by freight transport,1.3849913,TJ,N2O,0.6,kg/TJ,0.83099478,kg -e0e5ef2f-6bc1-3a53-ad43-563460e93c6b,SESCO,II.1.1,Córdoba,AR-X,annual,2013,naphtha combustion consumption by freight transport,2.3834733999999997,TJ,CO2,73300.0,kg/TJ,174708.60022,kg -739e2ebe-782a-3534-a1fb-87b8d7084efc,SESCO,II.1.1,Córdoba,AR-X,annual,2013,naphtha combustion consumption by freight transport,2.3834733999999997,TJ,CH4,3.0,kg/TJ,7.150420199999999,kg -f999b734-54c4-37d4-ba1c-c6358744e374,SESCO,II.1.1,Córdoba,AR-X,annual,2013,naphtha combustion consumption by freight transport,2.3834733999999997,TJ,N2O,0.6,kg/TJ,1.43008404,kg -699c0590-ec62-3f1c-ad08-bfca71b8f549,SESCO,II.1.1,Entre Rios,AR-E,annual,2013,naphtha combustion consumption by freight transport,2.5123097999999997,TJ,CO2,73300.0,kg/TJ,184152.30834,kg -f943af78-2635-38fa-891e-15e6b8b72837,SESCO,II.1.1,Entre Rios,AR-E,annual,2013,naphtha combustion consumption by freight transport,2.5123097999999997,TJ,CH4,3.0,kg/TJ,7.536929399999999,kg -61ceaf91-8954-3478-b14b-e82ec327ce4c,SESCO,II.1.1,Entre Rios,AR-E,annual,2013,naphtha combustion consumption by freight transport,2.5123097999999997,TJ,N2O,0.6,kg/TJ,1.5073858799999997,kg -9dd57940-5c1c-3ad5-8f5e-daced77dcdd5,SESCO,II.1.1,Mendoza,AR-M,annual,2013,naphtha combustion consumption by freight transport,4.3804376,TJ,CO2,73300.0,kg/TJ,321086.07607999997,kg -b6e45622-e8b0-36ad-97ca-d460ec46a82d,SESCO,II.1.1,Mendoza,AR-M,annual,2013,naphtha combustion consumption by freight transport,4.3804376,TJ,CH4,3.0,kg/TJ,13.141312799999998,kg -c2bee99f-49f4-3ecf-a93d-02508bd235e0,SESCO,II.1.1,Mendoza,AR-M,annual,2013,naphtha combustion consumption by freight transport,4.3804376,TJ,N2O,0.6,kg/TJ,2.6282625599999996,kg -18977aa7-a2f3-3516-8aff-0c0edaafdb59,SESCO,II.1.1,Misiones,AR-N,annual,2013,naphtha combustion consumption by freight transport,0.48313649999999997,TJ,CO2,73300.0,kg/TJ,35413.90545,kg -418c97c7-0ecb-395d-8e61-f79c9d0d4acc,SESCO,II.1.1,Misiones,AR-N,annual,2013,naphtha combustion consumption by freight transport,0.48313649999999997,TJ,CH4,3.0,kg/TJ,1.4494094999999998,kg -455bf802-2abe-3b92-b5f3-aa0e65e345b0,SESCO,II.1.1,Misiones,AR-N,annual,2013,naphtha combustion consumption by freight transport,0.48313649999999997,TJ,N2O,0.6,kg/TJ,0.28988189999999997,kg -b8026665-51f7-3123-a69d-e179711ad3f3,SESCO,II.1.1,Neuquén,AR-Q,annual,2013,naphtha combustion consumption by freight transport,0.4509274,TJ,CO2,73300.0,kg/TJ,33052.97842,kg -0e04bf6b-f48b-310d-b57d-10042e54c267,SESCO,II.1.1,Neuquén,AR-Q,annual,2013,naphtha combustion consumption by freight transport,0.4509274,TJ,CH4,3.0,kg/TJ,1.3527822,kg -3949477b-ce33-3261-8cdb-c87522341810,SESCO,II.1.1,Neuquén,AR-Q,annual,2013,naphtha combustion consumption by freight transport,0.4509274,TJ,N2O,0.6,kg/TJ,0.27055643999999995,kg -c00d1fe4-9afc-3ccb-a3df-790c0005be28,SESCO,II.1.1,Rio Negro,AR-R,annual,2013,naphtha combustion consumption by freight transport,1.2883639999999998,TJ,CO2,73300.0,kg/TJ,94437.08119999999,kg -90f52023-b65e-33f1-9b71-b4702ab1c627,SESCO,II.1.1,Rio Negro,AR-R,annual,2013,naphtha combustion consumption by freight transport,1.2883639999999998,TJ,CH4,3.0,kg/TJ,3.8650919999999998,kg -254ce89e-8fd7-33c3-90c0-acb26cff72d2,SESCO,II.1.1,Rio Negro,AR-R,annual,2013,naphtha combustion consumption by freight transport,1.2883639999999998,TJ,N2O,0.6,kg/TJ,0.7730183999999999,kg -1c70968c-37bc-35b1-908f-c13b32a5f3b4,SESCO,II.1.1,Salta,AR-A,annual,2013,naphtha combustion consumption by freight transport,9.823775499999998,TJ,CO2,73300.0,kg/TJ,720082.7441499999,kg -fd88a84e-6d2f-3c07-85a2-73aaec6d7b0f,SESCO,II.1.1,Salta,AR-A,annual,2013,naphtha combustion consumption by freight transport,9.823775499999998,TJ,CH4,3.0,kg/TJ,29.471326499999996,kg -e965293b-1569-3423-8b5b-47bdd1f5764d,SESCO,II.1.1,Salta,AR-A,annual,2013,naphtha combustion consumption by freight transport,9.823775499999998,TJ,N2O,0.6,kg/TJ,5.894265299999999,kg -3d2db979-1e0e-3644-bbcb-3d7c6ee8778c,SESCO,II.1.1,Santa Fe,AR-S,annual,2013,naphtha combustion consumption by freight transport,15.234904299999998,TJ,CO2,73300.0,kg/TJ,1116718.48519,kg -71bbd743-a62f-38ab-a948-603eb3e13271,SESCO,II.1.1,Santa Fe,AR-S,annual,2013,naphtha combustion consumption by freight transport,15.234904299999998,TJ,CH4,3.0,kg/TJ,45.7047129,kg -de71a53e-51dc-3574-aeb0-5f3ebb2d8500,SESCO,II.1.1,Santa Fe,AR-S,annual,2013,naphtha combustion consumption by freight transport,15.234904299999998,TJ,N2O,0.6,kg/TJ,9.140942579999999,kg -535391d5-b000-37b1-8d57-6499c1c54b4e,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2013,naphtha combustion consumption by freight transport,0.0322091,TJ,CO2,73300.0,kg/TJ,2360.92703,kg -8e471670-ea16-3d91-b470-d5d3d726ffaf,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2013,naphtha combustion consumption by freight transport,0.0322091,TJ,CH4,3.0,kg/TJ,0.0966273,kg -09b6e2a1-f960-304a-a8db-4d0e8717e5cc,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2013,naphtha combustion consumption by freight transport,0.0322091,TJ,N2O,0.6,kg/TJ,0.01932546,kg -09daf76a-cb9d-346c-a46d-19af8fca2472,SESCO,II.1.1,Tucuman,AR-T,annual,2013,naphtha combustion consumption by freight transport,0.9340639,TJ,CO2,73300.0,kg/TJ,68466.88386999999,kg -b5b712cc-4190-317a-981c-33ca724a4448,SESCO,II.1.1,Tucuman,AR-T,annual,2013,naphtha combustion consumption by freight transport,0.9340639,TJ,CH4,3.0,kg/TJ,2.8021917,kg -b695a789-5041-3d19-8108-9570018bc1f3,SESCO,II.1.1,Tucuman,AR-T,annual,2013,naphtha combustion consumption by freight transport,0.9340639,TJ,N2O,0.6,kg/TJ,0.5604383399999999,kg -736c98ec-d66f-369e-9593-8bebd8083516,SESCO,II.1.1,Buenos Aires,AR-B,annual,2013,naphtha combustion consumption by freight transport,160.27248159999996,TJ,CO2,73300.0,kg/TJ,11747972.901279997,kg -f807c718-2b7d-3cc1-81e3-d7d622fc0335,SESCO,II.1.1,Buenos Aires,AR-B,annual,2013,naphtha combustion consumption by freight transport,160.27248159999996,TJ,CH4,3.0,kg/TJ,480.81744479999986,kg -91f2055e-7708-3343-b1e5-c0226a11dec1,SESCO,II.1.1,Buenos Aires,AR-B,annual,2013,naphtha combustion consumption by freight transport,160.27248159999996,TJ,N2O,0.6,kg/TJ,96.16348895999998,kg -021d7616-9387-3d67-b616-0c764fe85f75,SESCO,II.1.1,Capital Federal,AR-C,annual,2013,naphtha combustion consumption by freight transport,154.281589,TJ,CO2,73300.0,kg/TJ,11308840.4737,kg -13863acd-8a42-35e8-b13a-d74dc3f13270,SESCO,II.1.1,Capital Federal,AR-C,annual,2013,naphtha combustion consumption by freight transport,154.281589,TJ,CH4,3.0,kg/TJ,462.844767,kg -9e9f5ce0-ab30-3438-9043-17f62d478249,SESCO,II.1.1,Capital Federal,AR-C,annual,2013,naphtha combustion consumption by freight transport,154.281589,TJ,N2O,0.6,kg/TJ,92.5689534,kg -5aa8576c-2cff-3a29-af0a-556f60bb9c55,SESCO,II.1.1,Chaco,AR-H,annual,2013,naphtha combustion consumption by freight transport,5.7332198,TJ,CO2,73300.0,kg/TJ,420245.01133999997,kg -b7fd4df7-ba0a-3eed-89f8-4e2ec7158341,SESCO,II.1.1,Chaco,AR-H,annual,2013,naphtha combustion consumption by freight transport,5.7332198,TJ,CH4,3.0,kg/TJ,17.199659399999998,kg -75abfa02-e6c3-3e83-8acf-835057b006bc,SESCO,II.1.1,Chaco,AR-H,annual,2013,naphtha combustion consumption by freight transport,5.7332198,TJ,N2O,0.6,kg/TJ,3.4399318799999996,kg -8b3dbf6f-b9c5-30f0-b861-b0cd31bafcae,SESCO,II.1.1,Chubut,AR-U,annual,2013,naphtha combustion consumption by freight transport,0.6119728999999999,TJ,CO2,73300.0,kg/TJ,44857.613569999994,kg -1875cb1a-6e2e-34e6-8cf8-9e7984b9474a,SESCO,II.1.1,Chubut,AR-U,annual,2013,naphtha combustion consumption by freight transport,0.6119728999999999,TJ,CH4,3.0,kg/TJ,1.8359186999999997,kg -8826222c-34ac-35f7-8305-34287c1f0577,SESCO,II.1.1,Chubut,AR-U,annual,2013,naphtha combustion consumption by freight transport,0.6119728999999999,TJ,N2O,0.6,kg/TJ,0.3671837399999999,kg -561a7a41-5cb9-3c02-b185-3c75bef796b0,SESCO,II.1.1,Corrientes,AR-W,annual,2013,naphtha combustion consumption by freight transport,2.0291732999999996,TJ,CO2,73300.0,kg/TJ,148738.40288999997,kg -25f06bd7-7ad0-348c-a93f-3ffad64105ae,SESCO,II.1.1,Corrientes,AR-W,annual,2013,naphtha combustion consumption by freight transport,2.0291732999999996,TJ,CH4,3.0,kg/TJ,6.087519899999998,kg -79fb5599-1740-3bbf-a32a-fc078c77b8fd,SESCO,II.1.1,Corrientes,AR-W,annual,2013,naphtha combustion consumption by freight transport,2.0291732999999996,TJ,N2O,0.6,kg/TJ,1.2175039799999998,kg -7c3bdee8-a52c-3604-a57b-589604a73137,SESCO,II.1.1,Córdoba,AR-X,annual,2013,naphtha combustion consumption by freight transport,3.5752100999999996,TJ,CO2,73300.0,kg/TJ,262062.90032999997,kg -c3082eb3-14a1-36d1-8e62-cb13756c6b6a,SESCO,II.1.1,Córdoba,AR-X,annual,2013,naphtha combustion consumption by freight transport,3.5752100999999996,TJ,CH4,3.0,kg/TJ,10.725630299999999,kg -66412c09-c73b-3eba-a982-5b554e06308b,SESCO,II.1.1,Córdoba,AR-X,annual,2013,naphtha combustion consumption by freight transport,3.5752100999999996,TJ,N2O,0.6,kg/TJ,2.1451260599999995,kg -0f599a58-8e44-3d5d-ab3c-fecfce1f06ef,SESCO,II.1.1,Entre Rios,AR-E,annual,2013,naphtha combustion consumption by freight transport,2.8344007999999996,TJ,CO2,73300.0,kg/TJ,207761.57863999996,kg -633b7e14-5da0-37aa-b1d9-6b1f4282f6f0,SESCO,II.1.1,Entre Rios,AR-E,annual,2013,naphtha combustion consumption by freight transport,2.8344007999999996,TJ,CH4,3.0,kg/TJ,8.5032024,kg -380d3425-27e0-37f5-9384-d0dc59682a2a,SESCO,II.1.1,Entre Rios,AR-E,annual,2013,naphtha combustion consumption by freight transport,2.8344007999999996,TJ,N2O,0.6,kg/TJ,1.7006404799999997,kg -42967411-fa1b-32c1-b9c8-33178b11c4ea,SESCO,II.1.1,Jujuy,AR-Y,annual,2013,naphtha combustion consumption by freight transport,0.09662729999999999,TJ,CO2,73300.0,kg/TJ,7082.781089999999,kg -e1995120-83a8-3e7f-94f4-83b7e6a37bf4,SESCO,II.1.1,Jujuy,AR-Y,annual,2013,naphtha combustion consumption by freight transport,0.09662729999999999,TJ,CH4,3.0,kg/TJ,0.28988189999999997,kg -e2ef89f6-7031-3f9d-849c-78e75157391d,SESCO,II.1.1,Jujuy,AR-Y,annual,2013,naphtha combustion consumption by freight transport,0.09662729999999999,TJ,N2O,0.6,kg/TJ,0.05797637999999999,kg -bd3df6e7-c66d-38df-a6d0-0114b3fd2bb8,SESCO,II.1.1,La Pampa,AR-L,annual,2013,naphtha combustion consumption by freight transport,0.0322091,TJ,CO2,73300.0,kg/TJ,2360.92703,kg -b2c0e8de-2085-3893-9c5f-d0c1157b545d,SESCO,II.1.1,La Pampa,AR-L,annual,2013,naphtha combustion consumption by freight transport,0.0322091,TJ,CH4,3.0,kg/TJ,0.0966273,kg -108c7a13-25ea-3dcc-bb86-84bd6a549abc,SESCO,II.1.1,La Pampa,AR-L,annual,2013,naphtha combustion consumption by freight transport,0.0322091,TJ,N2O,0.6,kg/TJ,0.01932546,kg -5b8d64f4-a290-36cb-883b-142d0b786bce,SESCO,II.1.1,La Rioja,AR-F,annual,2013,naphtha combustion consumption by freight transport,0.35430009999999995,TJ,CO2,73300.0,kg/TJ,25970.197329999995,kg -5f817853-4e42-3515-b490-36924136bfa9,SESCO,II.1.1,La Rioja,AR-F,annual,2013,naphtha combustion consumption by freight transport,0.35430009999999995,TJ,CH4,3.0,kg/TJ,1.0629003,kg -f2fbee70-1fc4-3274-a294-3caf6d41db5a,SESCO,II.1.1,La Rioja,AR-F,annual,2013,naphtha combustion consumption by freight transport,0.35430009999999995,TJ,N2O,0.6,kg/TJ,0.21258005999999996,kg -b76674d5-52b4-3e58-bbbf-2bec21dcfe48,SESCO,II.1.1,Mendoza,AR-M,annual,2013,naphtha combustion consumption by freight transport,3.7040464999999996,TJ,CO2,73300.0,kg/TJ,271506.60844999994,kg -2c330069-b9a0-34db-940b-1a1fc764963a,SESCO,II.1.1,Mendoza,AR-M,annual,2013,naphtha combustion consumption by freight transport,3.7040464999999996,TJ,CH4,3.0,kg/TJ,11.112139499999998,kg -103430fa-357c-3569-9468-e15095d688ae,SESCO,II.1.1,Mendoza,AR-M,annual,2013,naphtha combustion consumption by freight transport,3.7040464999999996,TJ,N2O,0.6,kg/TJ,2.2224278999999996,kg -88dee853-08b6-3ed3-86d7-cb29e8cc543a,SESCO,II.1.1,Misiones,AR-N,annual,2013,naphtha combustion consumption by freight transport,0.7086001999999999,TJ,CO2,73300.0,kg/TJ,51940.39465999999,kg -49ad7f16-f790-33e9-a81b-48617216e686,SESCO,II.1.1,Misiones,AR-N,annual,2013,naphtha combustion consumption by freight transport,0.7086001999999999,TJ,CH4,3.0,kg/TJ,2.1258006,kg -b9549121-e83e-3962-ba0a-48a2136516f7,SESCO,II.1.1,Misiones,AR-N,annual,2013,naphtha combustion consumption by freight transport,0.7086001999999999,TJ,N2O,0.6,kg/TJ,0.4251601199999999,kg -a5f1a00f-c142-382e-a3fa-511db5f6d334,SESCO,II.1.1,Neuquén,AR-Q,annual,2013,naphtha combustion consumption by freight transport,0.32209099999999996,TJ,CO2,73300.0,kg/TJ,23609.270299999996,kg -c151b481-c2be-3efe-a485-19271a7c775b,SESCO,II.1.1,Neuquén,AR-Q,annual,2013,naphtha combustion consumption by freight transport,0.32209099999999996,TJ,CH4,3.0,kg/TJ,0.9662729999999999,kg -a3489bcf-5846-37e7-af02-8b02d53c227e,SESCO,II.1.1,Neuquén,AR-Q,annual,2013,naphtha combustion consumption by freight transport,0.32209099999999996,TJ,N2O,0.6,kg/TJ,0.19325459999999997,kg -5bfdb49d-a915-3254-a36e-1c51463ec0a6,SESCO,II.1.1,Rio Negro,AR-R,annual,2013,naphtha combustion consumption by freight transport,1.3527821999999998,TJ,CO2,73300.0,kg/TJ,99158.93525999998,kg -779428c1-6e71-34a8-9f62-d0481003b260,SESCO,II.1.1,Rio Negro,AR-R,annual,2013,naphtha combustion consumption by freight transport,1.3527821999999998,TJ,CH4,3.0,kg/TJ,4.058346599999999,kg -213849c7-91d6-3def-9766-b8d8ec2d917b,SESCO,II.1.1,Rio Negro,AR-R,annual,2013,naphtha combustion consumption by freight transport,1.3527821999999998,TJ,N2O,0.6,kg/TJ,0.8116693199999999,kg -42d5eaa0-24db-331b-8835-9b686ec664f2,SESCO,II.1.1,Salta,AR-A,annual,2013,naphtha combustion consumption by freight transport,1.4816186,TJ,CO2,73300.0,kg/TJ,108602.64338,kg -e3955581-268d-3962-8631-7876c05fb758,SESCO,II.1.1,Salta,AR-A,annual,2013,naphtha combustion consumption by freight transport,1.4816186,TJ,CH4,3.0,kg/TJ,4.4448558,kg -969522f5-ed94-3fcc-9b23-b19c5342e8b5,SESCO,II.1.1,Salta,AR-A,annual,2013,naphtha combustion consumption by freight transport,1.4816186,TJ,N2O,0.6,kg/TJ,0.88897116,kg -c12355e4-5b75-38dc-9e17-0c84d7883e15,SESCO,II.1.1,San Luis,AR-D,annual,2013,naphtha combustion consumption by freight transport,0.38650919999999994,TJ,CO2,73300.0,kg/TJ,28331.124359999994,kg -113646b6-9cc9-3bc4-8f75-05de8959b233,SESCO,II.1.1,San Luis,AR-D,annual,2013,naphtha combustion consumption by freight transport,0.38650919999999994,TJ,CH4,3.0,kg/TJ,1.1595275999999999,kg -d38aab98-110e-3333-a6cd-7950be5ecf5a,SESCO,II.1.1,San Luis,AR-D,annual,2013,naphtha combustion consumption by freight transport,0.38650919999999994,TJ,N2O,0.6,kg/TJ,0.23190551999999995,kg -9dd58c23-9f48-36fb-88fe-c8a484e50c60,SESCO,II.1.1,Santa Fe,AR-S,annual,2013,naphtha combustion consumption by freight transport,21.7411425,TJ,CO2,73300.0,kg/TJ,1593625.74525,kg -37f1dd17-5c4a-3ef2-848e-57b088a52f5b,SESCO,II.1.1,Santa Fe,AR-S,annual,2013,naphtha combustion consumption by freight transport,21.7411425,TJ,CH4,3.0,kg/TJ,65.2234275,kg -9862cddf-8302-3c83-b478-033c99987396,SESCO,II.1.1,Santa Fe,AR-S,annual,2013,naphtha combustion consumption by freight transport,21.7411425,TJ,N2O,0.6,kg/TJ,13.044685499999998,kg -2e821be0-b347-30df-9770-ed211d7ea8d3,SESCO,II.1.1,Tucuman,AR-T,annual,2013,naphtha combustion consumption by freight transport,0.8374366,TJ,CO2,73300.0,kg/TJ,61384.10278,kg -b60efca5-8bec-3329-8416-91fdd696036c,SESCO,II.1.1,Tucuman,AR-T,annual,2013,naphtha combustion consumption by freight transport,0.8374366,TJ,CH4,3.0,kg/TJ,2.5123097999999997,kg -ad3a624c-7a44-39a2-9399-695bcd7ef130,SESCO,II.1.1,Tucuman,AR-T,annual,2013,naphtha combustion consumption by freight transport,0.8374366,TJ,N2O,0.6,kg/TJ,0.50246196,kg -cc39f759-ec8b-332d-ac75-3193e9d3ee5f,SESCO,II.1.1,Capital Federal,AR-C,annual,2014,naphtha combustion consumption by to the public,33.6043708,TJ,CO2,73300.0,kg/TJ,2463200.37964,kg -1a65d7ec-6708-3362-8906-444546439667,SESCO,II.1.1,Capital Federal,AR-C,annual,2014,naphtha combustion consumption by to the public,33.6043708,TJ,CH4,3.0,kg/TJ,100.8131124,kg -41873c93-fe62-39e5-a9f5-58979278c9d8,SESCO,II.1.1,Capital Federal,AR-C,annual,2014,naphtha combustion consumption by to the public,33.6043708,TJ,N2O,0.6,kg/TJ,20.16262248,kg -a483baa2-c3d1-3efa-b47d-6d32b6a7f62b,SESCO,II.1.1,Capital Federal,AR-C,annual,2014,naphtha combustion consumption by to the public,4.823141399999999,TJ,CO2,73300.0,kg/TJ,353536.2646199999,kg -81ce7424-0fe6-32f9-b328-ea0d1b81d63d,SESCO,II.1.1,Capital Federal,AR-C,annual,2014,naphtha combustion consumption by to the public,4.823141399999999,TJ,CH4,3.0,kg/TJ,14.469424199999997,kg -09da86a5-01b2-36aa-9ede-1b38bbe12c78,SESCO,II.1.1,Capital Federal,AR-C,annual,2014,naphtha combustion consumption by to the public,4.823141399999999,TJ,N2O,0.6,kg/TJ,2.8938848399999992,kg -f83befd2-22e2-36dc-9283-5070cd7739bf,SESCO,II.5.1,Córdoba,AR-X,annual,2014,naphtha combustion consumption by agriculture machines,5.89810298,TJ,CO2,73300.0,kg/TJ,432330.948434,kg -ce5a3e65-4e49-36d0-ab37-f6ea34d4c5ae,SESCO,II.5.1,Córdoba,AR-X,annual,2014,naphtha combustion consumption by agriculture machines,5.89810298,TJ,CH4,3.0,kg/TJ,17.69430894,kg -a20348d5-a5ac-3819-80de-751e85cdec86,SESCO,II.5.1,Córdoba,AR-X,annual,2014,naphtha combustion consumption by agriculture machines,5.89810298,TJ,N2O,0.6,kg/TJ,3.5388617879999997,kg -8e9436ee-27d2-3417-8d87-b11e01026215,SESCO,II.5.1,Santa Fe,AR-S,annual,2014,naphtha combustion consumption by agriculture machines,17.697461319999995,TJ,CO2,73300.0,kg/TJ,1297223.9147559996,kg -bbe00a05-0117-3380-b940-817d53563d80,SESCO,II.5.1,Santa Fe,AR-S,annual,2014,naphtha combustion consumption by agriculture machines,17.697461319999995,TJ,CH4,3.0,kg/TJ,53.092383959999985,kg -6ec2ad6f-37d2-31f2-8ce0-3c39969200d1,SESCO,II.5.1,Santa Fe,AR-S,annual,2014,naphtha combustion consumption by agriculture machines,17.697461319999995,TJ,N2O,0.6,kg/TJ,10.618476791999997,kg -9b7ec86c-dc87-3985-a66f-eec8c2be54ec,SESCO,II.5.1,Buenos Aires,AR-B,annual,2014,naphtha combustion consumption by agriculture machines,0.2521904,TJ,CO2,73300.0,kg/TJ,18485.55632,kg -8b60d99c-80e1-387c-b189-17a8f4ac855b,SESCO,II.5.1,Buenos Aires,AR-B,annual,2014,naphtha combustion consumption by agriculture machines,0.2521904,TJ,CH4,3.0,kg/TJ,0.7565712,kg -544f0ba4-7084-322c-a7c0-14a204213694,SESCO,II.5.1,Buenos Aires,AR-B,annual,2014,naphtha combustion consumption by agriculture machines,0.2521904,TJ,N2O,0.6,kg/TJ,0.15131424,kg -757f1e01-bc00-3f19-b6d9-643e8f8194b9,SESCO,II.5.1,Córdoba,AR-X,annual,2014,naphtha combustion consumption by agriculture machines,2.51559924,TJ,CO2,73300.0,kg/TJ,184393.42429199998,kg -b2aedad2-4b12-3c44-80a7-2081acac4521,SESCO,II.5.1,Córdoba,AR-X,annual,2014,naphtha combustion consumption by agriculture machines,2.51559924,TJ,CH4,3.0,kg/TJ,7.546797719999999,kg -cad1e1cb-daea-3674-9a22-116e6d9ba227,SESCO,II.5.1,Córdoba,AR-X,annual,2014,naphtha combustion consumption by agriculture machines,2.51559924,TJ,N2O,0.6,kg/TJ,1.5093595439999998,kg -40cf23b8-c1a5-39ae-8e29-57791f76c0ca,SESCO,II.5.1,Santa Fe,AR-S,annual,2014,naphtha combustion consumption by agriculture machines,3.5306655999999994,TJ,CO2,73300.0,kg/TJ,258797.78847999996,kg -a7642d31-9765-33e7-a17d-cf8ae4b6bd8d,SESCO,II.5.1,Santa Fe,AR-S,annual,2014,naphtha combustion consumption by agriculture machines,3.5306655999999994,TJ,CH4,3.0,kg/TJ,10.591996799999999,kg -bceb6045-5588-36c8-95eb-3d70dd8e0a32,SESCO,II.5.1,Santa Fe,AR-S,annual,2014,naphtha combustion consumption by agriculture machines,3.5306655999999994,TJ,N2O,0.6,kg/TJ,2.1183993599999997,kg -5f586ef6-ef79-3043-b078-2618cb819bfc,SESCO,II.1.1,Buenos Aires,AR-B,annual,2014,naphtha combustion consumption by to the public,8402.569590029998,TJ,CO2,73300.0,kg/TJ,615908350.9491988,kg -94462cb7-89bd-33ac-a7f1-d924955a2638,SESCO,II.1.1,Buenos Aires,AR-B,annual,2014,naphtha combustion consumption by to the public,8402.569590029998,TJ,CH4,3.0,kg/TJ,25207.708770089994,kg -c847048f-beb1-33fd-8fd8-ff631063fb9d,SESCO,II.1.1,Buenos Aires,AR-B,annual,2014,naphtha combustion consumption by to the public,8402.569590029998,TJ,N2O,0.6,kg/TJ,5041.541754017999,kg -0bcb7a4f-a9db-332e-9979-6fcfeb465a69,SESCO,II.1.1,Capital Federal,AR-C,annual,2014,naphtha combustion consumption by to the public,2804.0309766699997,TJ,CO2,73300.0,kg/TJ,205535470.58991098,kg -ead483f1-052c-3392-87a9-b4e65a17ac58,SESCO,II.1.1,Capital Federal,AR-C,annual,2014,naphtha combustion consumption by to the public,2804.0309766699997,TJ,CH4,3.0,kg/TJ,8412.09293001,kg -cc97bb17-81c0-30c2-b092-0c599c10245a,SESCO,II.1.1,Capital Federal,AR-C,annual,2014,naphtha combustion consumption by to the public,2804.0309766699997,TJ,N2O,0.6,kg/TJ,1682.4185860019998,kg -b87aada6-931d-32d5-a8fb-fbed9fc1015c,SESCO,II.1.1,Catamarca,AR-K,annual,2014,naphtha combustion consumption by to the public,429.63787019999995,TJ,CO2,73300.0,kg/TJ,31492455.885659996,kg -9637d53f-d71f-3e9a-8d21-d43eefb3a3ec,SESCO,II.1.1,Catamarca,AR-K,annual,2014,naphtha combustion consumption by to the public,429.63787019999995,TJ,CH4,3.0,kg/TJ,1288.9136105999999,kg -e4f891db-cfc4-355b-a5b6-d637ac439818,SESCO,II.1.1,Catamarca,AR-K,annual,2014,naphtha combustion consumption by to the public,429.63787019999995,TJ,N2O,0.6,kg/TJ,257.78272211999996,kg -95f549cd-927b-3a8f-a09d-8cc1e2e04375,SESCO,II.1.1,Chaco,AR-H,annual,2014,naphtha combustion consumption by to the public,387.49054959999995,TJ,CO2,73300.0,kg/TJ,28403057.285679996,kg -11640921-e2e8-30a0-8a88-a0eacf29f5dd,SESCO,II.1.1,Chaco,AR-H,annual,2014,naphtha combustion consumption by to the public,387.49054959999995,TJ,CH4,3.0,kg/TJ,1162.4716488,kg -242b0ef5-36d4-3dbf-8f81-ca51bb9e6119,SESCO,II.1.1,Chaco,AR-H,annual,2014,naphtha combustion consumption by to the public,387.49054959999995,TJ,N2O,0.6,kg/TJ,232.49432975999997,kg -ea4a499f-5945-39b2-a5d2-c667df925be8,SESCO,II.1.1,Chubut,AR-U,annual,2014,naphtha combustion consumption by to the public,280.0259154,TJ,CO2,73300.0,kg/TJ,20525899.598819997,kg -ea15d612-1349-36d4-a616-6d2996e804f0,SESCO,II.1.1,Chubut,AR-U,annual,2014,naphtha combustion consumption by to the public,280.0259154,TJ,CH4,3.0,kg/TJ,840.0777461999999,kg -4c3eb5b2-7f3e-370f-8da3-be661972c0fb,SESCO,II.1.1,Chubut,AR-U,annual,2014,naphtha combustion consumption by to the public,280.0259154,TJ,N2O,0.6,kg/TJ,168.01554923999998,kg -02dc7fbe-a4bd-38df-ba24-530e2924d0d8,SESCO,II.1.1,Corrientes,AR-W,annual,2014,naphtha combustion consumption by to the public,287.5916274,TJ,CO2,73300.0,kg/TJ,21080466.28842,kg -25dffdf3-af2e-3503-b574-8e5e5490ed3a,SESCO,II.1.1,Corrientes,AR-W,annual,2014,naphtha combustion consumption by to the public,287.5916274,TJ,CH4,3.0,kg/TJ,862.7748822,kg -39061cbb-ef42-3cf6-bbed-73211ad5686a,SESCO,II.1.1,Corrientes,AR-W,annual,2014,naphtha combustion consumption by to the public,287.5916274,TJ,N2O,0.6,kg/TJ,172.55497644,kg -23132f56-a07d-36aa-8929-fe34dc5be13b,SESCO,II.1.1,Córdoba,AR-X,annual,2014,naphtha combustion consumption by to the public,2678.612907894,TJ,CO2,73300.0,kg/TJ,196342326.14863017,kg -34e24e34-56bf-38c0-a034-0551aa7d5e66,SESCO,II.1.1,Córdoba,AR-X,annual,2014,naphtha combustion consumption by to the public,2678.612907894,TJ,CH4,3.0,kg/TJ,8035.838723682,kg -d0b0eeca-0847-3164-b99a-45dd71eeb23d,SESCO,II.1.1,Córdoba,AR-X,annual,2014,naphtha combustion consumption by to the public,2678.612907894,TJ,N2O,0.6,kg/TJ,1607.1677447363998,kg -1d0dc0c8-1178-3441-9d47-94cb155b34ea,SESCO,II.1.1,Entre Rios,AR-E,annual,2014,naphtha combustion consumption by to the public,956.0222825999999,TJ,CO2,73300.0,kg/TJ,70076433.31458,kg -ddd99a73-05b2-30c7-aa44-f37384bf46b3,SESCO,II.1.1,Entre Rios,AR-E,annual,2014,naphtha combustion consumption by to the public,956.0222825999999,TJ,CH4,3.0,kg/TJ,2868.0668478,kg -736ff1f3-2175-338c-9b1e-6683933f5e39,SESCO,II.1.1,Entre Rios,AR-E,annual,2014,naphtha combustion consumption by to the public,956.0222825999999,TJ,N2O,0.6,kg/TJ,573.6133695599999,kg -59baa958-0f42-3bc1-96ba-01dd4b965ea2,SESCO,II.1.1,Formosa,AR-P,annual,2014,naphtha combustion consumption by to the public,477.93233179999993,TJ,CO2,73300.0,kg/TJ,35032439.92094,kg -56e57c65-9822-3fe7-8179-8f2700e71636,SESCO,II.1.1,Formosa,AR-P,annual,2014,naphtha combustion consumption by to the public,477.93233179999993,TJ,CH4,3.0,kg/TJ,1433.7969953999998,kg -70d1b059-82a2-3ea3-babc-79ef84e18a4f,SESCO,II.1.1,Formosa,AR-P,annual,2014,naphtha combustion consumption by to the public,477.93233179999993,TJ,N2O,0.6,kg/TJ,286.7593990799999,kg -49a478d1-fad5-3fd1-8c8d-ea44b142346b,SESCO,II.1.1,Jujuy,AR-Y,annual,2014,naphtha combustion consumption by to the public,129.4682466,TJ,CO2,73300.0,kg/TJ,9490022.475779999,kg -d891e665-2303-31a8-8986-51c3116c1dba,SESCO,II.1.1,Jujuy,AR-Y,annual,2014,naphtha combustion consumption by to the public,129.4682466,TJ,CH4,3.0,kg/TJ,388.40473979999996,kg -cbee6caf-d052-30eb-8f4d-9e62d04559b6,SESCO,II.1.1,Jujuy,AR-Y,annual,2014,naphtha combustion consumption by to the public,129.4682466,TJ,N2O,0.6,kg/TJ,77.68094795999998,kg -e979bc29-10f3-3f92-933a-a5f61fc096af,SESCO,II.1.1,La Pampa,AR-L,annual,2014,naphtha combustion consumption by to the public,110.45939519999999,TJ,CO2,73300.0,kg/TJ,8096673.668159999,kg -a462dec2-633a-32d4-8a3c-bdd0b46064c6,SESCO,II.1.1,La Pampa,AR-L,annual,2014,naphtha combustion consumption by to the public,110.45939519999999,TJ,CH4,3.0,kg/TJ,331.37818559999994,kg -9944853a-6817-3895-9a86-7894840c34f6,SESCO,II.1.1,La Pampa,AR-L,annual,2014,naphtha combustion consumption by to the public,110.45939519999999,TJ,N2O,0.6,kg/TJ,66.27563711999998,kg -35150ce8-ad22-309b-8b97-9af405e078ba,SESCO,II.1.1,La Rioja,AR-F,annual,2014,naphtha combustion consumption by to the public,112.9497754,TJ,CO2,73300.0,kg/TJ,8279218.536819999,kg -d57b77d7-3a28-3600-8177-cc58e44da0f1,SESCO,II.1.1,La Rioja,AR-F,annual,2014,naphtha combustion consumption by to the public,112.9497754,TJ,CH4,3.0,kg/TJ,338.84932619999995,kg -f6bb478d-a320-398e-adcd-e25e481f7957,SESCO,II.1.1,La Rioja,AR-F,annual,2014,naphtha combustion consumption by to the public,112.9497754,TJ,N2O,0.6,kg/TJ,67.76986523999999,kg -272bf035-bbef-3c42-9520-a9f18b29c274,SESCO,II.1.1,Mendoza,AR-M,annual,2014,naphtha combustion consumption by to the public,427.71491839999993,TJ,CO2,73300.0,kg/TJ,31351503.518719994,kg -a2fa71b6-ea48-3c5b-ac0f-66846b0e010c,SESCO,II.1.1,Mendoza,AR-M,annual,2014,naphtha combustion consumption by to the public,427.71491839999993,TJ,CH4,3.0,kg/TJ,1283.1447551999997,kg -e168f7c6-6527-301c-94e7-b15e5e88d839,SESCO,II.1.1,Mendoza,AR-M,annual,2014,naphtha combustion consumption by to the public,427.71491839999993,TJ,N2O,0.6,kg/TJ,256.62895103999995,kg -c43fedb6-35da-3ac3-96a5-d4b3d59505e6,SESCO,II.1.1,Misiones,AR-N,annual,2014,naphtha combustion consumption by to the public,778.2595743999999,TJ,CO2,73300.0,kg/TJ,57046426.803519994,kg -a73c144e-91c8-3afd-b7e3-3df103cad9b2,SESCO,II.1.1,Misiones,AR-N,annual,2014,naphtha combustion consumption by to the public,778.2595743999999,TJ,CH4,3.0,kg/TJ,2334.7787231999996,kg -7ee8aff3-5cad-33ef-acee-7ecdfdbef043,SESCO,II.1.1,Misiones,AR-N,annual,2014,naphtha combustion consumption by to the public,778.2595743999999,TJ,N2O,0.6,kg/TJ,466.9557446399999,kg -56cffd19-e76f-3b83-b4ba-fe1af93f2bff,SESCO,II.1.1,Neuquén,AR-Q,annual,2014,naphtha combustion consumption by to the public,267.79468099999997,TJ,CO2,73300.0,kg/TJ,19629350.117299996,kg -c71b86bd-8a07-3aa6-ab56-33a5c6f4956b,SESCO,II.1.1,Neuquén,AR-Q,annual,2014,naphtha combustion consumption by to the public,267.79468099999997,TJ,CH4,3.0,kg/TJ,803.3840429999999,kg -988c75a9-323f-3974-aa5d-f9184476b460,SESCO,II.1.1,Neuquén,AR-Q,annual,2014,naphtha combustion consumption by to the public,267.79468099999997,TJ,N2O,0.6,kg/TJ,160.6768086,kg -dbfa6ce1-90f0-3565-8b55-f3d36d622f12,SESCO,II.1.1,Rio Negro,AR-R,annual,2014,naphtha combustion consumption by to the public,351.5218938,TJ,CO2,73300.0,kg/TJ,25766554.81554,kg -bc8dbc03-9b46-3a08-a2c2-6a8da06968ef,SESCO,II.1.1,Rio Negro,AR-R,annual,2014,naphtha combustion consumption by to the public,351.5218938,TJ,CH4,3.0,kg/TJ,1054.5656814,kg -e6544d28-cc5d-3c0b-868b-9937b994e570,SESCO,II.1.1,Rio Negro,AR-R,annual,2014,naphtha combustion consumption by to the public,351.5218938,TJ,N2O,0.6,kg/TJ,210.91313627999997,kg -5a65463d-0745-3de8-a9d3-ef004b5002c1,SESCO,II.1.1,Salta,AR-A,annual,2014,naphtha combustion consumption by to the public,64.12571396,TJ,CO2,73300.0,kg/TJ,4700414.833268,kg -43379f07-48d7-3969-b83b-843204ec4b2c,SESCO,II.1.1,Salta,AR-A,annual,2014,naphtha combustion consumption by to the public,64.12571396,TJ,CH4,3.0,kg/TJ,192.37714188,kg -91d2132d-a591-3673-af76-fdc9adcf2a4c,SESCO,II.1.1,Salta,AR-A,annual,2014,naphtha combustion consumption by to the public,64.12571396,TJ,N2O,0.6,kg/TJ,38.475428375999996,kg -47b3fe5d-a595-388d-a124-57ff76f923ea,SESCO,II.1.1,San Juan,AR-J,annual,2014,naphtha combustion consumption by to the public,270.8209658,TJ,CO2,73300.0,kg/TJ,19851176.79314,kg -b7d48c56-f51e-3356-b8af-e7e3aac31682,SESCO,II.1.1,San Juan,AR-J,annual,2014,naphtha combustion consumption by to the public,270.8209658,TJ,CH4,3.0,kg/TJ,812.4628974,kg -67e7e079-48df-3bc9-bf12-163c49dd90df,SESCO,II.1.1,San Juan,AR-J,annual,2014,naphtha combustion consumption by to the public,270.8209658,TJ,N2O,0.6,kg/TJ,162.49257948,kg -2da5f303-131c-3076-9523-0719ff4775b6,SESCO,II.1.1,San Luis,AR-D,annual,2014,naphtha combustion consumption by to the public,538.8993609999999,TJ,CO2,73300.0,kg/TJ,39501323.16129999,kg -105f29d8-2a1c-3388-b5ab-9829fbafefde,SESCO,II.1.1,San Luis,AR-D,annual,2014,naphtha combustion consumption by to the public,538.8993609999999,TJ,CH4,3.0,kg/TJ,1616.6980829999998,kg -96f521fa-3a53-3f86-aacf-f0e82ebbf174,SESCO,II.1.1,San Luis,AR-D,annual,2014,naphtha combustion consumption by to the public,538.8993609999999,TJ,N2O,0.6,kg/TJ,323.33961659999994,kg -fd11f17b-cd77-3018-ac4b-48c42bb47768,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2014,naphtha combustion consumption by to the public,60.87245779999999,TJ,CO2,73300.0,kg/TJ,4461951.15674,kg -153c0567-5a5c-356b-89f7-8b8923b7c04d,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2014,naphtha combustion consumption by to the public,60.87245779999999,TJ,CH4,3.0,kg/TJ,182.61737339999996,kg -6502fb15-a114-343f-87d5-c8dfe6399473,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2014,naphtha combustion consumption by to the public,60.87245779999999,TJ,N2O,0.6,kg/TJ,36.52347467999999,kg -a125b166-c499-343f-b6e0-00f1afb4b14f,SESCO,II.1.1,Santa Fe,AR-S,annual,2014,naphtha combustion consumption by to the public,2532.0212483719997,TJ,CO2,73300.0,kg/TJ,185597157.50566757,kg -e5e16a9b-1f64-3e9c-b116-7188a5c2125b,SESCO,II.1.1,Santa Fe,AR-S,annual,2014,naphtha combustion consumption by to the public,2532.0212483719997,TJ,CH4,3.0,kg/TJ,7596.063745115999,kg -7891e0c1-f3d5-3dcd-8ea1-b31ccbd6924b,SESCO,II.1.1,Santa Fe,AR-S,annual,2014,naphtha combustion consumption by to the public,2532.0212483719997,TJ,N2O,0.6,kg/TJ,1519.2127490231999,kg -c3a1a456-ba75-3526-ae81-03996eb5ed11,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2014,naphtha combustion consumption by to the public,334.18380379999996,TJ,CO2,73300.0,kg/TJ,24495672.818539996,kg -368a7bef-0793-3653-821e-26a1bbd09cb5,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2014,naphtha combustion consumption by to the public,334.18380379999996,TJ,CH4,3.0,kg/TJ,1002.5514113999999,kg -47ced68f-c7ea-3b9b-b947-97ef2bc7a39c,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2014,naphtha combustion consumption by to the public,334.18380379999996,TJ,N2O,0.6,kg/TJ,200.51028227999998,kg -1f47565c-d641-3a68-872d-66dd25bfa47f,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2014,naphtha combustion consumption by to the public,117.80444059999999,TJ,CO2,73300.0,kg/TJ,8635065.49598,kg -829b62a1-68e7-3f90-a5d2-7f441f5fca97,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2014,naphtha combustion consumption by to the public,117.80444059999999,TJ,CH4,3.0,kg/TJ,353.41332179999995,kg -876514c4-3d4c-3adc-a8b1-b12fc96a5543,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2014,naphtha combustion consumption by to the public,117.80444059999999,TJ,N2O,0.6,kg/TJ,70.68266435999999,kg -17e41d60-0406-3b34-b0cf-263b2b31fda3,SESCO,II.1.1,Tucuman,AR-T,annual,2014,naphtha combustion consumption by to the public,95.86387579999999,TJ,CO2,73300.0,kg/TJ,7026822.096139999,kg -1d93cb42-1c1e-3840-a3a3-a388dbf5f1fc,SESCO,II.1.1,Tucuman,AR-T,annual,2014,naphtha combustion consumption by to the public,95.86387579999999,TJ,CH4,3.0,kg/TJ,287.5916274,kg -2371b6c2-9436-3b33-9784-7ca6bb146422,SESCO,II.1.1,Tucuman,AR-T,annual,2014,naphtha combustion consumption by to the public,95.86387579999999,TJ,N2O,0.6,kg/TJ,57.518325479999994,kg -2c7d25d2-e1fb-370c-a526-fa73de25f2fb,SESCO,II.1.1,Buenos Aires,AR-B,annual,2014,naphtha combustion consumption by to the public,2088.2137453099995,TJ,CO2,73300.0,kg/TJ,153066067.53122297,kg -d3541e25-9abd-3a6a-9787-0764141b44ce,SESCO,II.1.1,Buenos Aires,AR-B,annual,2014,naphtha combustion consumption by to the public,2088.2137453099995,TJ,CH4,3.0,kg/TJ,6264.641235929998,kg -9b12aa07-fd16-3f55-9494-015c1c515cbc,SESCO,II.1.1,Buenos Aires,AR-B,annual,2014,naphtha combustion consumption by to the public,2088.2137453099995,TJ,N2O,0.6,kg/TJ,1252.9282471859997,kg -a1fed806-e9f3-382a-8519-70a84e23a623,SESCO,II.1.1,Capital Federal,AR-C,annual,2014,naphtha combustion consumption by to the public,986.0051992559999,TJ,CO2,73300.0,kg/TJ,72274181.10546479,kg -18dcc1e1-d822-3db7-a229-fb37bec2e8b4,SESCO,II.1.1,Capital Federal,AR-C,annual,2014,naphtha combustion consumption by to the public,986.0051992559999,TJ,CH4,3.0,kg/TJ,2958.0155977679997,kg -46d6e45a-fb3f-3b02-b069-2dfda8191f3d,SESCO,II.1.1,Capital Federal,AR-C,annual,2014,naphtha combustion consumption by to the public,986.0051992559999,TJ,N2O,0.6,kg/TJ,591.6031195535999,kg -aa95ebf1-4c01-333e-9660-01aa6bdd7ab7,SESCO,II.1.1,Catamarca,AR-K,annual,2014,naphtha combustion consumption by to the public,93.90940019999998,TJ,CO2,73300.0,kg/TJ,6883559.0346599985,kg -11b584b7-fcf7-3854-9403-22288edf2198,SESCO,II.1.1,Catamarca,AR-K,annual,2014,naphtha combustion consumption by to the public,93.90940019999998,TJ,CH4,3.0,kg/TJ,281.7282005999999,kg -f93b0bd8-4a90-39f4-ad8d-69daee4b2d3d,SESCO,II.1.1,Catamarca,AR-K,annual,2014,naphtha combustion consumption by to the public,93.90940019999998,TJ,N2O,0.6,kg/TJ,56.345640119999985,kg -6651516f-4b24-333e-8e20-dc74707c591d,SESCO,II.1.1,Chaco,AR-H,annual,2014,naphtha combustion consumption by to the public,79.07698574775999,TJ,CO2,73300.0,kg/TJ,5796343.055310807,kg -6814a524-6274-3bf1-8575-380c22c93572,SESCO,II.1.1,Chaco,AR-H,annual,2014,naphtha combustion consumption by to the public,79.07698574775999,TJ,CH4,3.0,kg/TJ,237.23095724328,kg -94e1f1c3-70bb-31b2-a151-29140f59885a,SESCO,II.1.1,Chaco,AR-H,annual,2014,naphtha combustion consumption by to the public,79.07698574775999,TJ,N2O,0.6,kg/TJ,47.446191448655995,kg -48f40f0a-0b63-33e7-9d4a-2270dcaa485b,SESCO,II.1.1,Chubut,AR-U,annual,2014,naphtha combustion consumption by to the public,50.34096147696,TJ,CO2,73300.0,kg/TJ,3689992.476261168,kg -01d91d7d-2182-31de-8691-b8dbfde75a96,SESCO,II.1.1,Chubut,AR-U,annual,2014,naphtha combustion consumption by to the public,50.34096147696,TJ,CH4,3.0,kg/TJ,151.02288443088,kg -8ddc857b-f4f3-31a7-9a2a-82c832ffa751,SESCO,II.1.1,Chubut,AR-U,annual,2014,naphtha combustion consumption by to the public,50.34096147696,TJ,N2O,0.6,kg/TJ,30.204576886175996,kg -dd299bd4-48ce-322e-b627-eaa56dbebb4d,SESCO,II.1.1,Corrientes,AR-W,annual,2014,naphtha combustion consumption by to the public,81.42107660148,TJ,CO2,73300.0,kg/TJ,5968164.9148884835,kg -3229f70e-fb2a-3cf2-a4f1-8f10692808ec,SESCO,II.1.1,Corrientes,AR-W,annual,2014,naphtha combustion consumption by to the public,81.42107660148,TJ,CH4,3.0,kg/TJ,244.26322980444,kg -e96e9c7a-923c-365d-bf51-04f51fe9bfc4,SESCO,II.1.1,Corrientes,AR-W,annual,2014,naphtha combustion consumption by to the public,81.42107660148,TJ,N2O,0.6,kg/TJ,48.852645960888,kg -13827c83-483b-31f6-9819-42d4c3691867,SESCO,II.1.1,Córdoba,AR-X,annual,2014,naphtha combustion consumption by to the public,536.8883253980399,TJ,CO2,73300.0,kg/TJ,39353914.25167633,kg -cf48c917-9c24-34f6-b8a1-732d2944f5d3,SESCO,II.1.1,Córdoba,AR-X,annual,2014,naphtha combustion consumption by to the public,536.8883253980399,TJ,CH4,3.0,kg/TJ,1610.6649761941198,kg -009ab9c4-14a6-39bb-ada9-77d93a67d522,SESCO,II.1.1,Córdoba,AR-X,annual,2014,naphtha combustion consumption by to the public,536.8883253980399,TJ,N2O,0.6,kg/TJ,322.1329952388239,kg -1fb65a26-f43c-35e8-b0bb-22b79b450527,SESCO,II.1.1,Entre Rios,AR-E,annual,2014,naphtha combustion consumption by to the public,228.52376214051998,TJ,CO2,73300.0,kg/TJ,16750791.764900114,kg -ba594385-a62b-3d95-8cc7-f314192afbc8,SESCO,II.1.1,Entre Rios,AR-E,annual,2014,naphtha combustion consumption by to the public,228.52376214051998,TJ,CH4,3.0,kg/TJ,685.57128642156,kg -8f6cdb59-cd07-3d0f-946b-72848d9ba743,SESCO,II.1.1,Entre Rios,AR-E,annual,2014,naphtha combustion consumption by to the public,228.52376214051998,TJ,N2O,0.6,kg/TJ,137.11425728431198,kg -7b505b89-8aa5-30d1-8880-17cd94007ec5,SESCO,II.1.1,Formosa,AR-P,annual,2014,naphtha combustion consumption by to the public,92.41640466057999,TJ,CO2,73300.0,kg/TJ,6774122.461620513,kg -930a5162-d944-348f-98b3-52d06b3ef2b2,SESCO,II.1.1,Formosa,AR-P,annual,2014,naphtha combustion consumption by to the public,92.41640466057999,TJ,CH4,3.0,kg/TJ,277.24921398173996,kg -3a81f81a-6126-3a70-be0e-8e2a12a9aae6,SESCO,II.1.1,Formosa,AR-P,annual,2014,naphtha combustion consumption by to the public,92.41640466057999,TJ,N2O,0.6,kg/TJ,55.44984279634799,kg -a380da21-6fab-3045-a82d-78a876686bf1,SESCO,II.1.1,Jujuy,AR-Y,annual,2014,naphtha combustion consumption by to the public,4.75912601934,TJ,CO2,73300.0,kg/TJ,348843.937217622,kg -8d55ce21-c304-347e-be08-1c19d67ec930,SESCO,II.1.1,Jujuy,AR-Y,annual,2014,naphtha combustion consumption by to the public,4.75912601934,TJ,CH4,3.0,kg/TJ,14.27737805802,kg -ecfe7841-db83-319d-a1d5-44ecb3b15f66,SESCO,II.1.1,Jujuy,AR-Y,annual,2014,naphtha combustion consumption by to the public,4.75912601934,TJ,N2O,0.6,kg/TJ,2.855475611604,kg -62dbb886-b0be-3ef4-be1c-5d099421ce95,SESCO,II.1.1,La Pampa,AR-L,annual,2014,naphtha combustion consumption by to the public,28.974498665419997,TJ,CO2,73300.0,kg/TJ,2123830.752175286,kg -d8f8b61c-00fb-364b-bb2a-2305b45ea49d,SESCO,II.1.1,La Pampa,AR-L,annual,2014,naphtha combustion consumption by to the public,28.974498665419997,TJ,CH4,3.0,kg/TJ,86.92349599625999,kg -e70a1da7-f3eb-3e2a-b917-ac9ff4d0b320,SESCO,II.1.1,La Pampa,AR-L,annual,2014,naphtha combustion consumption by to the public,28.974498665419997,TJ,N2O,0.6,kg/TJ,17.384699199251997,kg -ac27bf1a-500e-338f-9279-c49975398852,SESCO,II.1.1,La Rioja,AR-F,annual,2014,naphtha combustion consumption by to the public,18.62260919288,TJ,CO2,73300.0,kg/TJ,1365037.253838104,kg -228d4301-8a7e-30bd-9d6b-ab782334c264,SESCO,II.1.1,La Rioja,AR-F,annual,2014,naphtha combustion consumption by to the public,18.62260919288,TJ,CH4,3.0,kg/TJ,55.86782757864,kg -edab0fa2-b988-38da-b3a9-c19694a5bc38,SESCO,II.1.1,La Rioja,AR-F,annual,2014,naphtha combustion consumption by to the public,18.62260919288,TJ,N2O,0.6,kg/TJ,11.173565515727999,kg -742c111a-56fe-3b9e-a306-06bc15e82692,SESCO,II.1.1,Mendoza,AR-M,annual,2014,naphtha combustion consumption by to the public,102.65145116842,TJ,CO2,73300.0,kg/TJ,7524351.370645186,kg -b102083c-ff99-38eb-9076-6489c5132ed9,SESCO,II.1.1,Mendoza,AR-M,annual,2014,naphtha combustion consumption by to the public,102.65145116842,TJ,CH4,3.0,kg/TJ,307.95435350526,kg -2d15cbd5-3bd7-3980-b24e-101022970e35,SESCO,II.1.1,Mendoza,AR-M,annual,2014,naphtha combustion consumption by to the public,102.65145116842,TJ,N2O,0.6,kg/TJ,61.590870701052,kg -1754107d-59cd-3a79-b5c9-fb178ed23492,SESCO,II.1.1,Misiones,AR-N,annual,2014,naphtha combustion consumption by to the public,119.73764393976,TJ,CO2,73300.0,kg/TJ,8776769.300784409,kg -9753a8d9-ba15-346c-8d46-a6808e430a90,SESCO,II.1.1,Misiones,AR-N,annual,2014,naphtha combustion consumption by to the public,119.73764393976,TJ,CH4,3.0,kg/TJ,359.21293181928,kg -5c2237a8-3363-3f5e-8867-6a110dc122c4,SESCO,II.1.1,Misiones,AR-N,annual,2014,naphtha combustion consumption by to the public,119.73764393976,TJ,N2O,0.6,kg/TJ,71.842586363856,kg -e729c30c-e439-3456-a0c6-a07f7b83f24e,SESCO,II.1.1,Neuquén,AR-Q,annual,2014,naphtha combustion consumption by to the public,76.23586229182,TJ,CO2,73300.0,kg/TJ,5588088.705990406,kg -e32f0f45-e601-3789-b0b5-bcd60245f78e,SESCO,II.1.1,Neuquén,AR-Q,annual,2014,naphtha combustion consumption by to the public,76.23586229182,TJ,CH4,3.0,kg/TJ,228.70758687545998,kg -69173c8e-6e6b-351b-8386-0055ada150d2,SESCO,II.1.1,Neuquén,AR-Q,annual,2014,naphtha combustion consumption by to the public,76.23586229182,TJ,N2O,0.6,kg/TJ,45.741517375091995,kg -8f47a4cf-a084-3858-a527-5171790c0f87,SESCO,II.1.1,Rio Negro,AR-R,annual,2014,naphtha combustion consumption by to the public,101.55053604387999,TJ,CO2,73300.0,kg/TJ,7443654.292016403,kg -eafa13ca-6f74-3b4b-afcc-b61fda9c2135,SESCO,II.1.1,Rio Negro,AR-R,annual,2014,naphtha combustion consumption by to the public,101.55053604387999,TJ,CH4,3.0,kg/TJ,304.65160813163993,kg -5e2fe383-2cd6-3236-aa28-0419517c9d94,SESCO,II.1.1,Rio Negro,AR-R,annual,2014,naphtha combustion consumption by to the public,101.55053604387999,TJ,N2O,0.6,kg/TJ,60.93032162632799,kg -19a0088e-9f8f-3c8c-89b8-29bccd6a23b1,SESCO,II.1.1,Salta,AR-A,annual,2014,naphtha combustion consumption by to the public,7.912473799999999,TJ,CO2,73300.0,kg/TJ,579984.32954,kg -1b65d4bd-08b6-3da0-b141-43706569ecf2,SESCO,II.1.1,Salta,AR-A,annual,2014,naphtha combustion consumption by to the public,7.912473799999999,TJ,CH4,3.0,kg/TJ,23.737421399999995,kg -01c9960a-b7ee-3611-aab1-fccb3f07dddd,SESCO,II.1.1,Salta,AR-A,annual,2014,naphtha combustion consumption by to the public,7.912473799999999,TJ,N2O,0.6,kg/TJ,4.747484279999999,kg -80e41fc6-30bc-3431-ad0a-f3a847893885,SESCO,II.1.1,San Juan,AR-J,annual,2014,naphtha combustion consumption by to the public,55.866717940879994,TJ,CO2,73300.0,kg/TJ,4095030.4250665037,kg -a9c332c5-7ffc-30b6-9c0f-9abb33b3f730,SESCO,II.1.1,San Juan,AR-J,annual,2014,naphtha combustion consumption by to the public,55.866717940879994,TJ,CH4,3.0,kg/TJ,167.60015382263998,kg -02728942-7e21-32fd-b0fd-7c4ebb75b911,SESCO,II.1.1,San Juan,AR-J,annual,2014,naphtha combustion consumption by to the public,55.866717940879994,TJ,N2O,0.6,kg/TJ,33.520030764527995,kg -2f2decd6-39f6-310d-90fd-c196afb2baa0,SESCO,II.1.1,San Luis,AR-D,annual,2014,naphtha combustion consumption by to the public,127.61306781761999,TJ,CO2,73300.0,kg/TJ,9354037.871031545,kg -a164beda-98b5-30fd-b578-de9a39eeeed2,SESCO,II.1.1,San Luis,AR-D,annual,2014,naphtha combustion consumption by to the public,127.61306781761999,TJ,CH4,3.0,kg/TJ,382.83920345286,kg -6ef5a98f-370e-31fa-b7a5-f1a20cff4dc1,SESCO,II.1.1,San Luis,AR-D,annual,2014,naphtha combustion consumption by to the public,127.61306781761999,TJ,N2O,0.6,kg/TJ,76.567840690572,kg -cc341a01-11c3-30e3-bd97-7323fe0d666d,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2014,naphtha combustion consumption by to the public,27.845234187539997,TJ,CO2,73300.0,kg/TJ,2041055.6659466818,kg -0eecbe83-e6cc-3ad5-afc1-906b495702a9,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2014,naphtha combustion consumption by to the public,27.845234187539997,TJ,CH4,3.0,kg/TJ,83.53570256261999,kg -93ab785c-8332-3ea2-916c-14f8cc684d93,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2014,naphtha combustion consumption by to the public,27.845234187539997,TJ,N2O,0.6,kg/TJ,16.707140512524,kg -67f781e7-df02-32bf-b360-f24aca526a9f,SESCO,II.1.1,Santa Fe,AR-S,annual,2014,naphtha combustion consumption by to the public,581.0751759628199,TJ,CO2,73300.0,kg/TJ,42592810.3980747,kg -1539845f-faea-3897-a468-7727be820d77,SESCO,II.1.1,Santa Fe,AR-S,annual,2014,naphtha combustion consumption by to the public,581.0751759628199,TJ,CH4,3.0,kg/TJ,1743.2255278884597,kg -1a9c6261-6568-36fb-acb5-ab1d721398f3,SESCO,II.1.1,Santa Fe,AR-S,annual,2014,naphtha combustion consumption by to the public,581.0751759628199,TJ,N2O,0.6,kg/TJ,348.64510557769194,kg -f3baee6c-0057-3d0d-af50-3e274dd02f56,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2014,naphtha combustion consumption by to the public,79.1497678972,TJ,CO2,73300.0,kg/TJ,5801677.98686476,kg -223a9757-1650-3792-9465-3fae709abb87,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2014,naphtha combustion consumption by to the public,79.1497678972,TJ,CH4,3.0,kg/TJ,237.4493036916,kg -2a4a3a3c-d025-397f-81f1-883766c23d7f,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2014,naphtha combustion consumption by to the public,79.1497678972,TJ,N2O,0.6,kg/TJ,47.48986073832,kg -a92c1d7b-7f50-363c-99d7-645202f2f0c8,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2014,naphtha combustion consumption by to the public,53.91823186288,TJ,CO2,73300.0,kg/TJ,3952206.395549104,kg -9bfe7fda-ed58-34e7-b572-73daa2f06c77,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2014,naphtha combustion consumption by to the public,53.91823186288,TJ,CH4,3.0,kg/TJ,161.75469558864,kg -4845afa9-a97b-3fd7-80c0-c189d467194e,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2014,naphtha combustion consumption by to the public,53.91823186288,TJ,N2O,0.6,kg/TJ,32.350939117728,kg -7a916aa3-e935-330a-98ce-480b4beced33,SESCO,II.1.1,Tucuman,AR-T,annual,2014,naphtha combustion consumption by to the public,19.83476865524,TJ,CO2,73300.0,kg/TJ,1453888.542429092,kg -767784c0-9ce1-3667-a1f5-a06deb3a6112,SESCO,II.1.1,Tucuman,AR-T,annual,2014,naphtha combustion consumption by to the public,19.83476865524,TJ,CH4,3.0,kg/TJ,59.50430596572001,kg -4a96363f-8351-3ba6-86f5-ca2174ff973a,SESCO,II.1.1,Tucuman,AR-T,annual,2014,naphtha combustion consumption by to the public,19.83476865524,TJ,N2O,0.6,kg/TJ,11.900861193144001,kg -66f0d6b0-4901-3f28-b50b-d89a99692554,SESCO,I.3.1,Buenos Aires,AR-B,annual,2014,naphtha combustion consumption by petrochemical industries,12.76083424,TJ,CO2,73300.0,kg/TJ,935369.149792,kg -f92a135f-d546-3048-8631-d830b95dc7d7,SESCO,I.3.1,Buenos Aires,AR-B,annual,2014,naphtha combustion consumption by petrochemical industries,12.76083424,TJ,CH4,3.0,kg/TJ,38.28250272,kg -095d6ec5-6426-3ba2-8d96-7c5b80968d9d,SESCO,I.3.1,Buenos Aires,AR-B,annual,2014,naphtha combustion consumption by petrochemical industries,12.76083424,TJ,N2O,0.6,kg/TJ,7.656500543999999,kg -632d58ce-9534-36f5-9a68-6b9dfd1b922a,SESCO,I.3.1,Córdoba,AR-X,annual,2014,naphtha combustion consumption by petrochemical industries,2.6164753999999997,TJ,CO2,73300.0,kg/TJ,191787.64681999997,kg -b0b23a9a-a342-39a1-b956-ddc3e32652fe,SESCO,I.3.1,Córdoba,AR-X,annual,2014,naphtha combustion consumption by petrochemical industries,2.6164753999999997,TJ,CH4,3.0,kg/TJ,7.849426199999999,kg -b13a454c-66cb-3685-a53c-f264f3d0f28f,SESCO,I.3.1,Córdoba,AR-X,annual,2014,naphtha combustion consumption by petrochemical industries,2.6164753999999997,TJ,N2O,0.6,kg/TJ,1.5698852399999998,kg -a976584b-a85d-3abb-80bd-c40e7b5d1e1b,SESCO,I.3.1,Buenos Aires,AR-B,annual,2014,naphtha combustion consumption by petrochemical industries,0.47285699999999997,TJ,CO2,73300.0,kg/TJ,34660.418099999995,kg -a5d16c57-72d4-3bf8-b89a-e3ee949080be,SESCO,I.3.1,Buenos Aires,AR-B,annual,2014,naphtha combustion consumption by petrochemical industries,0.47285699999999997,TJ,CH4,3.0,kg/TJ,1.418571,kg -2096722c-999d-3871-ac2c-4c95e1d6a68a,SESCO,I.3.1,Buenos Aires,AR-B,annual,2014,naphtha combustion consumption by petrochemical industries,0.47285699999999997,TJ,N2O,0.6,kg/TJ,0.28371419999999997,kg -2030e5cb-1de0-3d49-a58c-9b0fda8b3c8f,SESCO,II.1.1,Buenos Aires,AR-B,annual,2014,naphtha combustion consumption by freight transport,5.0337203839999995,TJ,CO2,73300.0,kg/TJ,368971.7041472,kg -cab3dd91-a30c-3413-b6fd-27620667c462,SESCO,II.1.1,Buenos Aires,AR-B,annual,2014,naphtha combustion consumption by freight transport,5.0337203839999995,TJ,CH4,3.0,kg/TJ,15.101161152,kg -70e07855-3f20-3fc0-88ab-8da68a9e3012,SESCO,II.1.1,Buenos Aires,AR-B,annual,2014,naphtha combustion consumption by freight transport,5.0337203839999995,TJ,N2O,0.6,kg/TJ,3.0202322303999996,kg -b28312bb-8de5-30b5-877d-46b8670b90cc,SESCO,II.1.1,Capital Federal,AR-C,annual,2014,naphtha combustion consumption by freight transport,9.461238093999999,TJ,CO2,73300.0,kg/TJ,693508.7522901999,kg -93253653-177e-39f9-a359-ac537ac28315,SESCO,II.1.1,Capital Federal,AR-C,annual,2014,naphtha combustion consumption by freight transport,9.461238093999999,TJ,CH4,3.0,kg/TJ,28.383714281999996,kg -6340fc22-713f-3bd6-8f06-991e9a9dca22,SESCO,II.1.1,Capital Federal,AR-C,annual,2014,naphtha combustion consumption by freight transport,9.461238093999999,TJ,N2O,0.6,kg/TJ,5.676742856399999,kg -a0924338-4f6f-34c3-a231-378f3d365a38,SESCO,II.1.1,Chaco,AR-H,annual,2014,naphtha combustion consumption by freight transport,0.08038569,TJ,CO2,73300.0,kg/TJ,5892.271076999999,kg -41bf64fe-e8b8-3847-b94b-a86529fb9abd,SESCO,II.1.1,Chaco,AR-H,annual,2014,naphtha combustion consumption by freight transport,0.08038569,TJ,CH4,3.0,kg/TJ,0.24115706999999997,kg -bae06977-4f2e-33df-b1df-6c15d957a8cc,SESCO,II.1.1,Chaco,AR-H,annual,2014,naphtha combustion consumption by freight transport,0.08038569,TJ,N2O,0.6,kg/TJ,0.04823141399999999,kg -94dce36c-d0d7-36e3-809c-398073cfe7b0,SESCO,II.1.1,Corrientes,AR-W,annual,2014,naphtha combustion consumption by freight transport,0.034676179999999994,TJ,CO2,73300.0,kg/TJ,2541.7639939999995,kg -b8eaf2cf-fbe9-3b21-b909-a3f1ecc28cd6,SESCO,II.1.1,Corrientes,AR-W,annual,2014,naphtha combustion consumption by freight transport,0.034676179999999994,TJ,CH4,3.0,kg/TJ,0.10402853999999997,kg -622cf18a-db8a-314c-be51-07b9da4b817b,SESCO,II.1.1,Corrientes,AR-W,annual,2014,naphtha combustion consumption by freight transport,0.034676179999999994,TJ,N2O,0.6,kg/TJ,0.020805707999999996,kg -c039cfed-eaf2-3158-be16-62739b248458,SESCO,II.1.1,Córdoba,AR-X,annual,2014,naphtha combustion consumption by freight transport,0.528654126,TJ,CO2,73300.0,kg/TJ,38750.347435799995,kg -260eb602-2539-372c-bdc8-5479b6d375ee,SESCO,II.1.1,Córdoba,AR-X,annual,2014,naphtha combustion consumption by freight transport,0.528654126,TJ,CH4,3.0,kg/TJ,1.5859623779999998,kg -86a4c197-09ce-30d2-82f8-a5c5986f6e5b,SESCO,II.1.1,Córdoba,AR-X,annual,2014,naphtha combustion consumption by freight transport,0.528654126,TJ,N2O,0.6,kg/TJ,0.31719247559999997,kg -b4ed6f2b-80f1-3272-8db6-d72d7b595f15,SESCO,II.1.1,Entre Rios,AR-E,annual,2014,naphtha combustion consumption by freight transport,0.0037828560000000002,TJ,CO2,73300.0,kg/TJ,277.2833448,kg -8bee616f-eab2-37f8-b890-f22b3231dbce,SESCO,II.1.1,Entre Rios,AR-E,annual,2014,naphtha combustion consumption by freight transport,0.0037828560000000002,TJ,CH4,3.0,kg/TJ,0.011348568,kg -639b17c2-8a46-3dba-aeec-7d9578d97ec4,SESCO,II.1.1,Entre Rios,AR-E,annual,2014,naphtha combustion consumption by freight transport,0.0037828560000000002,TJ,N2O,0.6,kg/TJ,0.0022697136000000002,kg -8370f98d-790d-3eb5-917c-2c42e86f93ff,SESCO,II.1.1,Mendoza,AR-M,annual,2014,naphtha combustion consumption by freight transport,0.0012609519999999999,TJ,CO2,73300.0,kg/TJ,92.42778159999999,kg -bc06c53f-3b86-34d8-9f3a-cd87270a1181,SESCO,II.1.1,Mendoza,AR-M,annual,2014,naphtha combustion consumption by freight transport,0.0012609519999999999,TJ,CH4,3.0,kg/TJ,0.0037828559999999994,kg -35c954e0-160c-36bc-aa1a-7459b3a61300,SESCO,II.1.1,Mendoza,AR-M,annual,2014,naphtha combustion consumption by freight transport,0.0012609519999999999,TJ,N2O,0.6,kg/TJ,0.0007565711999999999,kg -bc528653-d4bc-3ae6-891a-b00e90e97979,SESCO,II.1.1,San Luis,AR-D,annual,2014,naphtha combustion consumption by freight transport,0.070298074,TJ,CO2,73300.0,kg/TJ,5152.8488242,kg -0eae5d7d-a81d-3c60-9da5-c82048e594ea,SESCO,II.1.1,San Luis,AR-D,annual,2014,naphtha combustion consumption by freight transport,0.070298074,TJ,CH4,3.0,kg/TJ,0.21089422200000002,kg -5e5f21d5-e4af-3f01-b6c5-ff69fc0f9346,SESCO,II.1.1,San Luis,AR-D,annual,2014,naphtha combustion consumption by freight transport,0.070298074,TJ,N2O,0.6,kg/TJ,0.0421788444,kg -8be534ad-6ba5-3fd3-a4ad-b99f800c4beb,SESCO,II.1.1,Santa Fe,AR-S,annual,2014,naphtha combustion consumption by freight transport,4.139705415999999,TJ,CO2,73300.0,kg/TJ,303440.40699279995,kg -de65edd7-e35b-3657-b0c0-1ae4d0d0dc6d,SESCO,II.1.1,Santa Fe,AR-S,annual,2014,naphtha combustion consumption by freight transport,4.139705415999999,TJ,CH4,3.0,kg/TJ,12.419116247999998,kg -17f8ed3e-a127-3986-b3ac-6a3c32df6d52,SESCO,II.1.1,Santa Fe,AR-S,annual,2014,naphtha combustion consumption by freight transport,4.139705415999999,TJ,N2O,0.6,kg/TJ,2.4838232495999994,kg -6e35bcff-c396-3aa6-aa77-a3c2c41189ea,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2014,naphtha combustion consumption by freight transport,0.0031523799999999998,TJ,CO2,73300.0,kg/TJ,231.06945399999998,kg -ca08e985-2631-33d9-82b1-bf7b0f4f206c,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2014,naphtha combustion consumption by freight transport,0.0031523799999999998,TJ,CH4,3.0,kg/TJ,0.00945714,kg -29d5ceba-244b-3cce-ba35-fb24c90492fb,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2014,naphtha combustion consumption by freight transport,0.0031523799999999998,TJ,N2O,0.6,kg/TJ,0.0018914279999999997,kg -6d4268ec-c803-35ea-af0d-612c5dc92a6d,SESCO,II.1.1,Tucuman,AR-T,annual,2014,naphtha combustion consumption by freight transport,0.05674284,TJ,CO2,73300.0,kg/TJ,4159.250172,kg -3d78db23-9400-3067-adb0-b31b5edf52e6,SESCO,II.1.1,Tucuman,AR-T,annual,2014,naphtha combustion consumption by freight transport,0.05674284,TJ,CH4,3.0,kg/TJ,0.17022852,kg -4270a69b-9010-3968-9668-6cfd40ce4b10,SESCO,II.1.1,Tucuman,AR-T,annual,2014,naphtha combustion consumption by freight transport,0.05674284,TJ,N2O,0.6,kg/TJ,0.034045704,kg -e1ac4f03-2c4f-31ad-9466-065039e21603,SESCO,II.1.1,Buenos Aires,AR-B,annual,2014,naphtha combustion consumption by freight transport,5.959259152,TJ,CO2,73300.0,kg/TJ,436813.69584159995,kg -5c061d49-d35b-3787-be9b-629e7b964f70,SESCO,II.1.1,Buenos Aires,AR-B,annual,2014,naphtha combustion consumption by freight transport,5.959259152,TJ,CH4,3.0,kg/TJ,17.877777455999997,kg -f7fd336b-9e9f-3e9a-9c1e-22419c0b3df3,SESCO,II.1.1,Buenos Aires,AR-B,annual,2014,naphtha combustion consumption by freight transport,5.959259152,TJ,N2O,0.6,kg/TJ,3.5755554912,kg -66dca8fa-72ba-3d26-b0f6-aadfc49bc224,SESCO,II.1.1,Capital Federal,AR-C,annual,2014,naphtha combustion consumption by freight transport,8.099094696,TJ,CO2,73300.0,kg/TJ,593663.6412168,kg -fba03e62-a0c9-34cb-8902-22ad3cc79ccf,SESCO,II.1.1,Capital Federal,AR-C,annual,2014,naphtha combustion consumption by freight transport,8.099094696,TJ,CH4,3.0,kg/TJ,24.297284087999998,kg -ad48a798-ef70-391e-92f8-0e8b88ea3683,SESCO,II.1.1,Capital Federal,AR-C,annual,2014,naphtha combustion consumption by freight transport,8.099094696,TJ,N2O,0.6,kg/TJ,4.8594568176,kg -d1488a21-c93c-3cf0-bb50-79d256b7fce0,SESCO,II.1.1,Chaco,AR-H,annual,2014,naphtha combustion consumption by freight transport,0.052644746,TJ,CO2,73300.0,kg/TJ,3858.8598818,kg -ebdaf645-fe8c-3537-b8b3-ee0756b6ac6e,SESCO,II.1.1,Chaco,AR-H,annual,2014,naphtha combustion consumption by freight transport,0.052644746,TJ,CH4,3.0,kg/TJ,0.157934238,kg -349abb10-763a-3552-974b-5811b29dfa13,SESCO,II.1.1,Chaco,AR-H,annual,2014,naphtha combustion consumption by freight transport,0.052644746,TJ,N2O,0.6,kg/TJ,0.031586847599999995,kg -c4122ca7-3537-3142-ba03-17cb6e4edd98,SESCO,II.1.1,Corrientes,AR-W,annual,2014,naphtha combustion consumption by freight transport,0.09772377999999998,TJ,CO2,73300.0,kg/TJ,7163.153073999999,kg -1eeeb246-2691-35d1-8253-e10dda668bd9,SESCO,II.1.1,Corrientes,AR-W,annual,2014,naphtha combustion consumption by freight transport,0.09772377999999998,TJ,CH4,3.0,kg/TJ,0.29317133999999995,kg -68900e4a-faea-322a-a41c-c5ab6bc70ae7,SESCO,II.1.1,Corrientes,AR-W,annual,2014,naphtha combustion consumption by freight transport,0.09772377999999998,TJ,N2O,0.6,kg/TJ,0.05863426799999999,kg -e0c29878-cdf5-3313-950f-e642866a841d,SESCO,II.1.1,Córdoba,AR-X,annual,2014,naphtha combustion consumption by freight transport,0.52802365,TJ,CO2,73300.0,kg/TJ,38704.133545,kg -98aba04b-470b-3651-9d9c-8507c222c0b5,SESCO,II.1.1,Córdoba,AR-X,annual,2014,naphtha combustion consumption by freight transport,0.52802365,TJ,CH4,3.0,kg/TJ,1.5840709499999999,kg -38a3f435-f107-324f-b192-d0974a3c820a,SESCO,II.1.1,Córdoba,AR-X,annual,2014,naphtha combustion consumption by freight transport,0.52802365,TJ,N2O,0.6,kg/TJ,0.31681418999999994,kg -bb818e72-1a85-3c93-9261-30ea6969628c,SESCO,II.1.1,Entre Rios,AR-E,annual,2014,naphtha combustion consumption by freight transport,0.16234756999999997,TJ,CO2,73300.0,kg/TJ,11900.076880999997,kg -1bd8d8f5-fca0-342b-9542-2cbf3e8df402,SESCO,II.1.1,Entre Rios,AR-E,annual,2014,naphtha combustion consumption by freight transport,0.16234756999999997,TJ,CH4,3.0,kg/TJ,0.4870427099999999,kg -f333be85-ce93-3d7c-94d2-18372cfd805f,SESCO,II.1.1,Entre Rios,AR-E,annual,2014,naphtha combustion consumption by freight transport,0.16234756999999997,TJ,N2O,0.6,kg/TJ,0.09740854199999997,kg -094b5b9e-8680-3169-838c-fa5e09f6cba1,SESCO,II.1.1,Misiones,AR-N,annual,2014,naphtha combustion consumption by freight transport,0.0063047599999999995,TJ,CO2,73300.0,kg/TJ,462.13890799999996,kg -6d54452d-b19c-30d7-881f-84e196809cc2,SESCO,II.1.1,Misiones,AR-N,annual,2014,naphtha combustion consumption by freight transport,0.0063047599999999995,TJ,CH4,3.0,kg/TJ,0.01891428,kg -7fcc169a-1909-3f54-acbf-22916ebdb855,SESCO,II.1.1,Misiones,AR-N,annual,2014,naphtha combustion consumption by freight transport,0.0063047599999999995,TJ,N2O,0.6,kg/TJ,0.0037828559999999994,kg -c29233c9-16bf-3431-98ea-776fea98d3d9,SESCO,II.1.1,San Luis,AR-D,annual,2014,naphtha combustion consumption by freight transport,0.0028371419999999995,TJ,CO2,73300.0,kg/TJ,207.96250859999998,kg -4dbfc78e-a9d5-3243-bcb4-fab74f31a80d,SESCO,II.1.1,San Luis,AR-D,annual,2014,naphtha combustion consumption by freight transport,0.0028371419999999995,TJ,CH4,3.0,kg/TJ,0.008511425999999999,kg -dc2b66b7-1404-392e-975b-902be4ee079c,SESCO,II.1.1,San Luis,AR-D,annual,2014,naphtha combustion consumption by freight transport,0.0028371419999999995,TJ,N2O,0.6,kg/TJ,0.0017022851999999996,kg -2ace8a0c-999c-3982-96ca-79c4fecac065,SESCO,II.1.1,Santa Fe,AR-S,annual,2014,naphtha combustion consumption by freight transport,0.749005488,TJ,CO2,73300.0,kg/TJ,54902.1022704,kg -65336fd1-89bb-3537-b8d1-6e06c0bdebbf,SESCO,II.1.1,Santa Fe,AR-S,annual,2014,naphtha combustion consumption by freight transport,0.749005488,TJ,CH4,3.0,kg/TJ,2.247016464,kg -f6cba3e3-68f5-3cd3-bc58-36394f428ccf,SESCO,II.1.1,Santa Fe,AR-S,annual,2014,naphtha combustion consumption by freight transport,0.749005488,TJ,N2O,0.6,kg/TJ,0.44940329279999996,kg -69b27560-3bf4-380e-a863-c462683ba604,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2014,naphtha combustion consumption by freight transport,0.09457139999999999,TJ,CO2,73300.0,kg/TJ,6932.083619999999,kg -b4874558-9d77-3874-adf5-7ef034d8281f,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2014,naphtha combustion consumption by freight transport,0.09457139999999999,TJ,CH4,3.0,kg/TJ,0.28371419999999997,kg -2bb96b8f-da28-3248-8ad3-3e0bddfb1efd,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2014,naphtha combustion consumption by freight transport,0.09457139999999999,TJ,N2O,0.6,kg/TJ,0.05674283999999999,kg -28b546e5-97e6-3b56-b1c9-88ff56056044,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2014,naphtha combustion consumption by freight transport,0.05201426999999999,TJ,CO2,73300.0,kg/TJ,3812.645990999999,kg -ebbc56c0-61f5-32ad-9887-036c12351233,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2014,naphtha combustion consumption by freight transport,0.05201426999999999,TJ,CH4,3.0,kg/TJ,0.15604280999999998,kg -8afac765-3513-3b11-bf57-e375044b5ac7,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2014,naphtha combustion consumption by freight transport,0.05201426999999999,TJ,N2O,0.6,kg/TJ,0.031208561999999992,kg -7071c101-d081-3cf3-9dbc-3d835c1c6c18,SESCO,II.1.1,Tucuman,AR-T,annual,2014,naphtha combustion consumption by freight transport,0.14217233799999998,TJ,CO2,73300.0,kg/TJ,10421.232375399999,kg -77d8c3cf-4908-330c-a2c2-f04b93e8c7b6,SESCO,II.1.1,Tucuman,AR-T,annual,2014,naphtha combustion consumption by freight transport,0.14217233799999998,TJ,CH4,3.0,kg/TJ,0.42651701399999997,kg -0a830b03-ffcc-31ee-b3cd-ad8c1f0be251,SESCO,II.1.1,Tucuman,AR-T,annual,2014,naphtha combustion consumption by freight transport,0.14217233799999998,TJ,N2O,0.6,kg/TJ,0.08530340279999998,kg -51777799-763d-3ed2-9421-a99c9db5a438,SESCO,II.1.1,Capital Federal,AR-C,annual,2014,naphtha combustion consumption by public passenger transport,0.025849516,TJ,CO2,73300.0,kg/TJ,1894.7695228,kg -8c4117d1-749e-377c-aad8-e685b52db32f,SESCO,II.1.1,Capital Federal,AR-C,annual,2014,naphtha combustion consumption by public passenger transport,0.025849516,TJ,CH4,3.0,kg/TJ,0.077548548,kg -7567a4b5-2677-33cf-9013-3dde84f8228d,SESCO,II.1.1,Capital Federal,AR-C,annual,2014,naphtha combustion consumption by public passenger transport,0.025849516,TJ,N2O,0.6,kg/TJ,0.0155097096,kg -0c873747-f02c-343f-9e93-224b18ff1f37,SESCO,II.1.1,Entre Rios,AR-E,annual,2014,naphtha combustion consumption by public passenger transport,0.0012609519999999999,TJ,CO2,73300.0,kg/TJ,92.42778159999999,kg -0f6863d7-0879-380d-a4f9-37af80c8a2b0,SESCO,II.1.1,Entre Rios,AR-E,annual,2014,naphtha combustion consumption by public passenger transport,0.0012609519999999999,TJ,CH4,3.0,kg/TJ,0.0037828559999999994,kg -86c8b99f-a141-3cd3-96bd-cc8a460d79ba,SESCO,II.1.1,Entre Rios,AR-E,annual,2014,naphtha combustion consumption by public passenger transport,0.0012609519999999999,TJ,N2O,0.6,kg/TJ,0.0007565711999999999,kg -3e00b6c3-ee0c-345c-a003-507b720cc525,SESCO,II.1.1,Santa Fe,AR-S,annual,2014,naphtha combustion consumption by public passenger transport,1.2924757999999998,TJ,CO2,73300.0,kg/TJ,94738.47613999998,kg -c1951d35-efa9-3876-8b6e-2b0988de43d4,SESCO,II.1.1,Santa Fe,AR-S,annual,2014,naphtha combustion consumption by public passenger transport,1.2924757999999998,TJ,CH4,3.0,kg/TJ,3.8774273999999993,kg -36ef0f92-1bd2-3999-abd5-f91285910b38,SESCO,II.1.1,Santa Fe,AR-S,annual,2014,naphtha combustion consumption by public passenger transport,1.2924757999999998,TJ,N2O,0.6,kg/TJ,0.7754854799999998,kg -55dd885b-00b7-33c4-a7a2-79b9e43bdfa2,SESCO,II.1.1,Buenos Aires,AR-B,annual,2014,naphtha combustion consumption by public passenger transport,0.9299521,TJ,CO2,73300.0,kg/TJ,68165.48892999999,kg -80d9987b-0f8b-3e2b-931a-c5670ef63370,SESCO,II.1.1,Buenos Aires,AR-B,annual,2014,naphtha combustion consumption by public passenger transport,0.9299521,TJ,CH4,3.0,kg/TJ,2.7898563,kg -dac1b2e4-2631-30b8-83ab-e958c3a14d36,SESCO,II.1.1,Buenos Aires,AR-B,annual,2014,naphtha combustion consumption by public passenger transport,0.9299521,TJ,N2O,0.6,kg/TJ,0.55797126,kg -3e9cac1a-3a1a-380c-92f1-8c3f3af7d71c,SESCO,II.1.1,Capital Federal,AR-C,annual,2014,naphtha combustion consumption by public passenger transport,0.24588564,TJ,CO2,73300.0,kg/TJ,18023.417412,kg -f89442a2-2a57-30e2-9bb6-9621995dde94,SESCO,II.1.1,Capital Federal,AR-C,annual,2014,naphtha combustion consumption by public passenger transport,0.24588564,TJ,CH4,3.0,kg/TJ,0.7376569199999999,kg -f044d5f5-65ba-3e0d-856c-d5ec318ea98a,SESCO,II.1.1,Capital Federal,AR-C,annual,2014,naphtha combustion consumption by public passenger transport,0.24588564,TJ,N2O,0.6,kg/TJ,0.147531384,kg -cc51166c-01dc-3abd-ae02-1ac91dba03c4,SESCO,II.1.1,Chaco,AR-H,annual,2014,naphtha combustion consumption by public passenger transport,0.00945714,TJ,CO2,73300.0,kg/TJ,693.208362,kg -30aeb30b-47e7-3839-b125-ec3f915d9cc9,SESCO,II.1.1,Chaco,AR-H,annual,2014,naphtha combustion consumption by public passenger transport,0.00945714,TJ,CH4,3.0,kg/TJ,0.028371419999999998,kg -ad452479-72e4-3eb8-8930-02b5ed01bbb9,SESCO,II.1.1,Chaco,AR-H,annual,2014,naphtha combustion consumption by public passenger transport,0.00945714,TJ,N2O,0.6,kg/TJ,0.005674283999999999,kg -ffe02dc2-78cc-3f2d-a5b9-3ee416d7efc3,SESCO,II.1.1,Entre Rios,AR-E,annual,2014,naphtha combustion consumption by public passenger transport,0.063362838,TJ,CO2,73300.0,kg/TJ,4644.496025400001,kg -9b9ebd79-3fe7-3a39-9348-de2e8094f8c7,SESCO,II.1.1,Entre Rios,AR-E,annual,2014,naphtha combustion consumption by public passenger transport,0.063362838,TJ,CH4,3.0,kg/TJ,0.19008851400000001,kg -2c788d6a-e83f-3b52-bea9-50fffa9ba48f,SESCO,II.1.1,Entre Rios,AR-E,annual,2014,naphtha combustion consumption by public passenger transport,0.063362838,TJ,N2O,0.6,kg/TJ,0.038017702800000004,kg -f81c221b-cb79-3495-8b3b-bbe2e36620e2,SESCO,II.1.1,Rio Negro,AR-R,annual,2014,naphtha combustion consumption by public passenger transport,1.1663805999999999,TJ,CO2,73300.0,kg/TJ,85495.69798,kg -13cdf7b1-0b24-332a-b813-0c7063fdc327,SESCO,II.1.1,Rio Negro,AR-R,annual,2014,naphtha combustion consumption by public passenger transport,1.1663805999999999,TJ,CH4,3.0,kg/TJ,3.4991417999999994,kg -7498684e-f8f9-3809-8d62-a9c2e51c2d48,SESCO,II.1.1,Rio Negro,AR-R,annual,2014,naphtha combustion consumption by public passenger transport,1.1663805999999999,TJ,N2O,0.6,kg/TJ,0.6998283599999999,kg -1e452d7a-e59d-361e-91b0-282c36302b83,SESCO,II.5.1,Córdoba,AR-X,annual,2014,naphtha combustion consumption by agriculture machines,2.7829273687599994,TJ,CO2,73300.0,kg/TJ,203988.57613010795,kg -d0a10cd7-aeec-3826-8b2e-27367320574a,SESCO,II.5.1,Córdoba,AR-X,annual,2014,naphtha combustion consumption by agriculture machines,2.7829273687599994,TJ,CH4,3.0,kg/TJ,8.348782106279998,kg -cb0c6f53-c4fa-3183-9640-52d9c2f33727,SESCO,II.5.1,Córdoba,AR-X,annual,2014,naphtha combustion consumption by agriculture machines,2.7829273687599994,TJ,N2O,0.6,kg/TJ,1.6697564212559997,kg -dbd7d2f6-6239-34b1-bdb4-7f43ab24c04a,SESCO,II.5.1,Santa Fe,AR-S,annual,2014,naphtha combustion consumption by agriculture machines,4.433072203559999,TJ,CO2,73300.0,kg/TJ,324944.19252094795,kg -1061c42b-ae15-3276-b735-c2e3a493b5b7,SESCO,II.5.1,Santa Fe,AR-S,annual,2014,naphtha combustion consumption by agriculture machines,4.433072203559999,TJ,CH4,3.0,kg/TJ,13.299216610679998,kg -1d62aef2-9431-399b-9ee8-b3d97c323062,SESCO,II.5.1,Santa Fe,AR-S,annual,2014,naphtha combustion consumption by agriculture machines,4.433072203559999,TJ,N2O,0.6,kg/TJ,2.6598433221359996,kg -06849651-59d3-38f6-982b-d0b13cac4dd5,SESCO,II.5.1,Santiago del Estero,AR-G,annual,2014,naphtha combustion consumption by agriculture machines,2.28693189956,TJ,CO2,73300.0,kg/TJ,167632.10823774798,kg -0040cda7-7d90-342e-aebf-a817eda622da,SESCO,II.5.1,Santiago del Estero,AR-G,annual,2014,naphtha combustion consumption by agriculture machines,2.28693189956,TJ,CH4,3.0,kg/TJ,6.86079569868,kg -e46cd18f-aa53-30ba-a632-cd972b972981,SESCO,II.5.1,Santiago del Estero,AR-G,annual,2014,naphtha combustion consumption by agriculture machines,2.28693189956,TJ,N2O,0.6,kg/TJ,1.3721591397359998,kg -c894c262-369e-36a6-a82c-a10d1b7d6d90,SESCO,II.1.1,Buenos Aires,AR-B,annual,2014,naphtha combustion consumption by to the public,1964.1162747159797,TJ,CO2,73300.0,kg/TJ,143969722.9366813,kg -2cfe60d3-31ad-39c9-95d4-c3a95e7e3ba5,SESCO,II.1.1,Buenos Aires,AR-B,annual,2014,naphtha combustion consumption by to the public,1964.1162747159797,TJ,CH4,3.0,kg/TJ,5892.348824147939,kg -9abb8b16-9c53-3245-bcf2-f215666dbf89,SESCO,II.1.1,Buenos Aires,AR-B,annual,2014,naphtha combustion consumption by to the public,1964.1162747159797,TJ,N2O,0.6,kg/TJ,1178.4697648295878,kg -4d53ded7-701a-3f68-b536-c8e74ddb700f,SESCO,II.1.1,Capital Federal,AR-C,annual,2014,naphtha combustion consumption by to the public,240.27758435141996,TJ,CO2,73300.0,kg/TJ,17612346.932959083,kg -ea973fe1-5df7-388b-b0b1-683447593180,SESCO,II.1.1,Capital Federal,AR-C,annual,2014,naphtha combustion consumption by to the public,240.27758435141996,TJ,CH4,3.0,kg/TJ,720.8327530542599,kg -c1025b12-de2a-3900-8f46-fb0f21d2ebb8,SESCO,II.1.1,Capital Federal,AR-C,annual,2014,naphtha combustion consumption by to the public,240.27758435141996,TJ,N2O,0.6,kg/TJ,144.16655061085197,kg -e9ff8f0a-31ff-369e-bc1f-38ff289cdfa8,SESCO,II.1.1,Catamarca,AR-K,annual,2014,naphtha combustion consumption by to the public,173.64654475784,TJ,CO2,73300.0,kg/TJ,12728291.73074967,kg -5f0acda4-88bf-3e45-b464-91322d0e4399,SESCO,II.1.1,Catamarca,AR-K,annual,2014,naphtha combustion consumption by to the public,173.64654475784,TJ,CH4,3.0,kg/TJ,520.9396342735199,kg -66c57f4b-bcb2-3ebb-b1d0-363cfe6dc912,SESCO,II.1.1,Catamarca,AR-K,annual,2014,naphtha combustion consumption by to the public,173.64654475784,TJ,N2O,0.6,kg/TJ,104.18792685470399,kg -dc205423-8e8a-3a22-bf13-6689cd18b991,SESCO,II.1.1,Chaco,AR-H,annual,2014,naphtha combustion consumption by to the public,331.03420104678,TJ,CO2,73300.0,kg/TJ,24264806.936728977,kg -fb9988c2-a946-36bb-b1e1-90a1ba7e7501,SESCO,II.1.1,Chaco,AR-H,annual,2014,naphtha combustion consumption by to the public,331.03420104678,TJ,CH4,3.0,kg/TJ,993.1026031403401,kg -45de6a9b-4344-3ce4-b123-8fdefef5b153,SESCO,II.1.1,Chaco,AR-H,annual,2014,naphtha combustion consumption by to the public,331.03420104678,TJ,N2O,0.6,kg/TJ,198.62052062806802,kg -e069d8ea-c778-35a7-99eb-3d871a999aa7,SESCO,II.1.1,Corrientes,AR-W,annual,2014,naphtha combustion consumption by to the public,328.75072730807995,TJ,CO2,73300.0,kg/TJ,24097428.31168226,kg -cbe710c5-d053-315c-9670-fbf3fd134964,SESCO,II.1.1,Corrientes,AR-W,annual,2014,naphtha combustion consumption by to the public,328.75072730807995,TJ,CH4,3.0,kg/TJ,986.2521819242398,kg -ad09fcaf-f46f-360e-9045-5ef5fdd9e7bb,SESCO,II.1.1,Corrientes,AR-W,annual,2014,naphtha combustion consumption by to the public,328.75072730807995,TJ,N2O,0.6,kg/TJ,197.25043638484797,kg -c35cad95-f359-3499-9e2f-834c748f9689,SESCO,II.1.1,Córdoba,AR-X,annual,2014,naphtha combustion consumption by to the public,822.3066106070199,TJ,CO2,73300.0,kg/TJ,60275074.55749456,kg -37fb082d-60c8-3aba-97d6-0b8b9db4c4a2,SESCO,II.1.1,Córdoba,AR-X,annual,2014,naphtha combustion consumption by to the public,822.3066106070199,TJ,CH4,3.0,kg/TJ,2466.9198318210597,kg -d3d0fd72-c93b-3096-aac8-b098c51142c3,SESCO,II.1.1,Córdoba,AR-X,annual,2014,naphtha combustion consumption by to the public,822.3066106070199,TJ,N2O,0.6,kg/TJ,493.3839663642119,kg -4d2b0f52-9e7d-3984-a7a4-90da7ed503d3,SESCO,II.1.1,Entre Rios,AR-E,annual,2014,naphtha combustion consumption by to the public,480.45508694259996,TJ,CO2,73300.0,kg/TJ,35217357.87289258,kg -3ef3e53b-43c8-33f3-ab4b-6313e9000032,SESCO,II.1.1,Entre Rios,AR-E,annual,2014,naphtha combustion consumption by to the public,480.45508694259996,TJ,CH4,3.0,kg/TJ,1441.3652608277998,kg -c5aaf86d-eee1-3a0e-846a-e4fe2ddb72a7,SESCO,II.1.1,Entre Rios,AR-E,annual,2014,naphtha combustion consumption by to the public,480.45508694259996,TJ,N2O,0.6,kg/TJ,288.27305216556,kg -1defe901-e540-3d3f-91a1-2717ff2d80d0,SESCO,II.1.1,Jujuy,AR-Y,annual,2014,naphtha combustion consumption by to the public,46.401116952959995,TJ,CO2,73300.0,kg/TJ,3401201.8726519677,kg -ae3b6663-848a-32f7-8fde-d9f0e4437c5f,SESCO,II.1.1,Jujuy,AR-Y,annual,2014,naphtha combustion consumption by to the public,46.401116952959995,TJ,CH4,3.0,kg/TJ,139.20335085888,kg -472a17f1-4f0f-3295-9687-b2d01a16fcd5,SESCO,II.1.1,Jujuy,AR-Y,annual,2014,naphtha combustion consumption by to the public,46.401116952959995,TJ,N2O,0.6,kg/TJ,27.840670171775997,kg -f8ddf3b5-b343-3b55-b577-5a48755d41d3,SESCO,II.1.1,La Pampa,AR-L,annual,2014,naphtha combustion consumption by to the public,10.88627462538,TJ,CO2,73300.0,kg/TJ,797963.930040354,kg -f7d459cd-4b29-3424-88f9-01323b2f2211,SESCO,II.1.1,La Pampa,AR-L,annual,2014,naphtha combustion consumption by to the public,10.88627462538,TJ,CH4,3.0,kg/TJ,32.658823876140005,kg -9c572858-24ea-35a3-8af5-9c16589374a5,SESCO,II.1.1,La Pampa,AR-L,annual,2014,naphtha combustion consumption by to the public,10.88627462538,TJ,N2O,0.6,kg/TJ,6.531764775228,kg -efb58344-87a1-3712-8390-e6d890c08db3,SESCO,II.1.1,La Rioja,AR-F,annual,2014,naphtha combustion consumption by to the public,73.96768390088,TJ,CO2,73300.0,kg/TJ,5421831.229934504,kg -abb6664f-f826-3f61-bcfc-ab6f5b13b6af,SESCO,II.1.1,La Rioja,AR-F,annual,2014,naphtha combustion consumption by to the public,73.96768390088,TJ,CH4,3.0,kg/TJ,221.90305170264003,kg -6c04ccaf-d2d1-3c8b-8c37-70327119e6f4,SESCO,II.1.1,La Rioja,AR-F,annual,2014,naphtha combustion consumption by to the public,73.96768390088,TJ,N2O,0.6,kg/TJ,44.380610340528,kg -e3b712e5-755a-3e6d-b2e1-2c77ddd25c38,SESCO,II.1.1,Mendoza,AR-M,annual,2014,naphtha combustion consumption by to the public,321.940275118,TJ,CO2,73300.0,kg/TJ,23598222.1661494,kg -ddb08872-97b5-37a4-82d0-1fe764140ac2,SESCO,II.1.1,Mendoza,AR-M,annual,2014,naphtha combustion consumption by to the public,321.940275118,TJ,CH4,3.0,kg/TJ,965.8208253539999,kg -2cd98c29-354a-38c9-8367-d81746fdd7ac,SESCO,II.1.1,Mendoza,AR-M,annual,2014,naphtha combustion consumption by to the public,321.940275118,TJ,N2O,0.6,kg/TJ,193.16416507079998,kg -1c24cfb1-4467-39b0-a275-97c31be506b2,SESCO,II.1.1,Misiones,AR-N,annual,2014,naphtha combustion consumption by to the public,238.41842726547998,TJ,CO2,73300.0,kg/TJ,17476070.718559682,kg -5f5deb23-caa1-30c6-a9e9-5223ecec8bff,SESCO,II.1.1,Misiones,AR-N,annual,2014,naphtha combustion consumption by to the public,238.41842726547998,TJ,CH4,3.0,kg/TJ,715.2552817964399,kg -0597e0f6-0896-33cd-a038-ce53920a79b8,SESCO,II.1.1,Misiones,AR-N,annual,2014,naphtha combustion consumption by to the public,238.41842726547998,TJ,N2O,0.6,kg/TJ,143.05105635928797,kg -459246fa-c4b6-366d-8104-60ad232c938f,SESCO,II.1.1,Salta,AR-A,annual,2014,naphtha combustion consumption by to the public,7.508783169579999,TJ,CO2,73300.0,kg/TJ,550393.8063302139,kg -b5efcd7a-4340-3c88-9fd0-09dcb23af826,SESCO,II.1.1,Salta,AR-A,annual,2014,naphtha combustion consumption by to the public,7.508783169579999,TJ,CH4,3.0,kg/TJ,22.526349508739997,kg -b60777a6-83a7-3adb-b8ad-93dbb50deb32,SESCO,II.1.1,Salta,AR-A,annual,2014,naphtha combustion consumption by to the public,7.508783169579999,TJ,N2O,0.6,kg/TJ,4.505269901747999,kg -3a596476-e5a1-33bb-80b5-0a546b213aba,SESCO,II.1.1,San Juan,AR-J,annual,2014,naphtha combustion consumption by to the public,242.80230973151998,TJ,CO2,73300.0,kg/TJ,17797409.303320415,kg -4993b773-206b-3f7c-a89a-fb226fd3b41a,SESCO,II.1.1,San Juan,AR-J,annual,2014,naphtha combustion consumption by to the public,242.80230973151998,TJ,CH4,3.0,kg/TJ,728.40692919456,kg -dd10f8a3-0563-3d0d-b07f-4b6e9b59f963,SESCO,II.1.1,San Juan,AR-J,annual,2014,naphtha combustion consumption by to the public,242.80230973151998,TJ,N2O,0.6,kg/TJ,145.68138583891198,kg -2fbf434f-b7f4-3ff6-9b7d-2ee66f61b5ae,SESCO,II.1.1,San Luis,AR-D,annual,2014,naphtha combustion consumption by to the public,155.89835849125998,TJ,CO2,73300.0,kg/TJ,11427349.677409356,kg -a48cb0d2-01fe-3c93-9e4f-7ea4a0c2dff9,SESCO,II.1.1,San Luis,AR-D,annual,2014,naphtha combustion consumption by to the public,155.89835849125998,TJ,CH4,3.0,kg/TJ,467.69507547378,kg -9ffe6038-c5f8-3263-830a-87527dfdb391,SESCO,II.1.1,San Luis,AR-D,annual,2014,naphtha combustion consumption by to the public,155.89835849125998,TJ,N2O,0.6,kg/TJ,93.53901509475598,kg -7d15a670-53fa-3b1c-8586-7251719550c0,SESCO,II.1.1,Santa Fe,AR-S,annual,2014,naphtha combustion consumption by to the public,1183.0934154269999,TJ,CO2,73300.0,kg/TJ,86720747.35079908,kg -8880f4c9-f98d-30cc-b0f3-30c75af294c0,SESCO,II.1.1,Santa Fe,AR-S,annual,2014,naphtha combustion consumption by to the public,1183.0934154269999,TJ,CH4,3.0,kg/TJ,3549.2802462809996,kg -61ced04f-87a7-3c1d-93f2-f0beadc18286,SESCO,II.1.1,Santa Fe,AR-S,annual,2014,naphtha combustion consumption by to the public,1183.0934154269999,TJ,N2O,0.6,kg/TJ,709.8560492561999,kg -da82d11c-ed5c-33de-87f2-d0dad6fbafbf,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2014,naphtha combustion consumption by to the public,195.85592876234,TJ,CO2,73300.0,kg/TJ,14356239.578279521,kg -e478e419-efa9-3d8b-a389-a34ec8f8c7d3,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2014,naphtha combustion consumption by to the public,195.85592876234,TJ,CH4,3.0,kg/TJ,587.56778628702,kg -58e41a05-86ac-37ef-a684-a7a72cd18143,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2014,naphtha combustion consumption by to the public,195.85592876234,TJ,N2O,0.6,kg/TJ,117.51355725740399,kg -6db8a34c-63dd-39c7-858c-075f2a88bda0,SESCO,II.1.1,Tucuman,AR-T,annual,2014,naphtha combustion consumption by to the public,202.98530093225997,TJ,CO2,73300.0,kg/TJ,14878822.558334656,kg -46117473-569e-3a2f-9295-d7b657722b8f,SESCO,II.1.1,Tucuman,AR-T,annual,2014,naphtha combustion consumption by to the public,202.98530093225997,TJ,CH4,3.0,kg/TJ,608.9559027967799,kg -fecb11a6-0458-3756-a330-e7f6ca579d11,SESCO,II.1.1,Tucuman,AR-T,annual,2014,naphtha combustion consumption by to the public,202.98530093225997,TJ,N2O,0.6,kg/TJ,121.79118055935598,kg -513759c4-9b0b-358e-8a58-f036a8cb0d85,SESCO,II.1.1,Buenos Aires,AR-B,annual,2014,naphtha combustion consumption by to the public,316.50678881667994,TJ,CO2,73300.0,kg/TJ,23199947.62026264,kg -c84d84f6-5ba1-3511-ab0f-9e5887a33134,SESCO,II.1.1,Buenos Aires,AR-B,annual,2014,naphtha combustion consumption by to the public,316.50678881667994,TJ,CH4,3.0,kg/TJ,949.5203664500398,kg -06bdfcea-5892-3ac1-b5aa-d534661b4486,SESCO,II.1.1,Buenos Aires,AR-B,annual,2014,naphtha combustion consumption by to the public,316.50678881667994,TJ,N2O,0.6,kg/TJ,189.90407329000797,kg -d8c17f79-b5c8-349c-9892-377f64aefe2f,SESCO,II.1.1,Capital Federal,AR-C,annual,2014,naphtha combustion consumption by to the public,71.66556383448001,TJ,CO2,73300.0,kg/TJ,5253085.829067385,kg -cd065dd6-9ffb-381f-877e-22176bf5ce8d,SESCO,II.1.1,Capital Federal,AR-C,annual,2014,naphtha combustion consumption by to the public,71.66556383448001,TJ,CH4,3.0,kg/TJ,214.99669150344005,kg -61a0227f-cddc-3cf7-a7a8-f534bea0449a,SESCO,II.1.1,Capital Federal,AR-C,annual,2014,naphtha combustion consumption by to the public,71.66556383448001,TJ,N2O,0.6,kg/TJ,42.999338300688,kg -5c2708ab-8ba1-3016-8ca2-2de0b7c17594,SESCO,II.1.1,Catamarca,AR-K,annual,2014,naphtha combustion consumption by to the public,15.265942359359999,TJ,CO2,73300.0,kg/TJ,1118993.574941088,kg -1ceb571c-c9b6-3565-8b79-185b0930b2e3,SESCO,II.1.1,Catamarca,AR-K,annual,2014,naphtha combustion consumption by to the public,15.265942359359999,TJ,CH4,3.0,kg/TJ,45.79782707808,kg -8dd4b3d3-a4c1-34d0-8c6c-da6d8b0f9898,SESCO,II.1.1,Catamarca,AR-K,annual,2014,naphtha combustion consumption by to the public,15.265942359359999,TJ,N2O,0.6,kg/TJ,9.159565415616,kg -56226122-fcd4-308c-9aa4-38e9d9751693,SESCO,II.1.1,Chaco,AR-H,annual,2014,naphtha combustion consumption by to the public,28.117974952759997,TJ,CO2,73300.0,kg/TJ,2061047.5640373079,kg -3d9cc608-f8db-3b1b-a041-d7f7c079cfc3,SESCO,II.1.1,Chaco,AR-H,annual,2014,naphtha combustion consumption by to the public,28.117974952759997,TJ,CH4,3.0,kg/TJ,84.35392485828,kg -20d33bf4-a378-3cef-90cf-229574b440b3,SESCO,II.1.1,Chaco,AR-H,annual,2014,naphtha combustion consumption by to the public,28.117974952759997,TJ,N2O,0.6,kg/TJ,16.870784971655997,kg -8e2aef87-d7c0-3050-9a73-aa4535612649,SESCO,II.1.1,Corrientes,AR-W,annual,2014,naphtha combustion consumption by to the public,60.667417547659994,TJ,CO2,73300.0,kg/TJ,4446921.706243478,kg -e9a34547-fc96-3763-a8a0-dfd01655a811,SESCO,II.1.1,Corrientes,AR-W,annual,2014,naphtha combustion consumption by to the public,60.667417547659994,TJ,CH4,3.0,kg/TJ,182.00225264297998,kg -e68fc1f1-64e5-3a32-a6ad-f0431fd15434,SESCO,II.1.1,Corrientes,AR-W,annual,2014,naphtha combustion consumption by to the public,60.667417547659994,TJ,N2O,0.6,kg/TJ,36.400450528596,kg -bfa4c881-040d-3fce-890a-e44c03763362,SESCO,II.1.1,Córdoba,AR-X,annual,2014,naphtha combustion consumption by to the public,142.1529981487,TJ,CO2,73300.0,kg/TJ,10419814.76429971,kg -04ddf11b-ea12-3dee-8961-bea850dff391,SESCO,II.1.1,Córdoba,AR-X,annual,2014,naphtha combustion consumption by to the public,142.1529981487,TJ,CH4,3.0,kg/TJ,426.45899444609995,kg -c8049e13-a939-3655-b5c4-f54ef5b9dbea,SESCO,II.1.1,Córdoba,AR-X,annual,2014,naphtha combustion consumption by to the public,142.1529981487,TJ,N2O,0.6,kg/TJ,85.29179888921999,kg -7b313750-0dc8-3a08-8cce-c79b85fdd42d,SESCO,II.1.1,Entre Rios,AR-E,annual,2014,naphtha combustion consumption by to the public,90.28485357122,TJ,CO2,73300.0,kg/TJ,6617879.766770426,kg -24bfd968-73e2-371b-99b7-d49e45eae74a,SESCO,II.1.1,Entre Rios,AR-E,annual,2014,naphtha combustion consumption by to the public,90.28485357122,TJ,CH4,3.0,kg/TJ,270.85456071366,kg -14412548-7d83-32de-9f2d-0e262b9aa270,SESCO,II.1.1,Entre Rios,AR-E,annual,2014,naphtha combustion consumption by to the public,90.28485357122,TJ,N2O,0.6,kg/TJ,54.170912142732,kg -050a8e9a-ee83-3581-a10e-008f45845e27,SESCO,II.1.1,Jujuy,AR-Y,annual,2014,naphtha combustion consumption by to the public,2.1624916990600003,TJ,CO2,73300.0,kg/TJ,158510.641541098,kg -6d8f3d75-88d6-3b57-b792-38e89ba715f0,SESCO,II.1.1,Jujuy,AR-Y,annual,2014,naphtha combustion consumption by to the public,2.1624916990600003,TJ,CH4,3.0,kg/TJ,6.487475097180001,kg -68e31c9d-ac76-3279-8f55-9ef919c1e630,SESCO,II.1.1,Jujuy,AR-Y,annual,2014,naphtha combustion consumption by to the public,2.1624916990600003,TJ,N2O,0.6,kg/TJ,1.2974950194360002,kg -b01e4f8e-ac6e-355c-a28b-9026138bfff9,SESCO,II.1.1,La Pampa,AR-L,annual,2014,naphtha combustion consumption by to the public,2.8487963488599997,TJ,CO2,73300.0,kg/TJ,208816.77237143798,kg -f9f91722-6540-32e4-b179-dcb95831e954,SESCO,II.1.1,La Pampa,AR-L,annual,2014,naphtha combustion consumption by to the public,2.8487963488599997,TJ,CH4,3.0,kg/TJ,8.54638904658,kg -fa36d322-b8dc-31e8-a12e-db9bed71a116,SESCO,II.1.1,La Pampa,AR-L,annual,2014,naphtha combustion consumption by to the public,2.8487963488599997,TJ,N2O,0.6,kg/TJ,1.7092778093159997,kg -7a48488a-5b6a-3464-ad80-98951e2cec5e,SESCO,II.1.1,La Rioja,AR-F,annual,2014,naphtha combustion consumption by to the public,6.21692208368,TJ,CO2,73300.0,kg/TJ,455700.388733744,kg -a8c7baae-8a30-35e8-9f69-79ba993b93ac,SESCO,II.1.1,La Rioja,AR-F,annual,2014,naphtha combustion consumption by to the public,6.21692208368,TJ,CH4,3.0,kg/TJ,18.65076625104,kg -87d69f02-5bf8-35b7-922e-34e35f84e03c,SESCO,II.1.1,La Rioja,AR-F,annual,2014,naphtha combustion consumption by to the public,6.21692208368,TJ,N2O,0.6,kg/TJ,3.7301532502079997,kg -329e3e5c-c016-3c39-b29b-4d756228e4bc,SESCO,II.1.1,Mendoza,AR-M,annual,2014,naphtha combustion consumption by to the public,46.021400172439996,TJ,CO2,73300.0,kg/TJ,3373368.632639852,kg -70a21cce-d07d-3d01-b204-0adf40d37e01,SESCO,II.1.1,Mendoza,AR-M,annual,2014,naphtha combustion consumption by to the public,46.021400172439996,TJ,CH4,3.0,kg/TJ,138.06420051732,kg -6bf605e7-f52a-3544-9560-52c29135fb39,SESCO,II.1.1,Mendoza,AR-M,annual,2014,naphtha combustion consumption by to the public,46.021400172439996,TJ,N2O,0.6,kg/TJ,27.612840103464,kg -0b2350c2-9559-3328-96b9-93395f07a386,SESCO,II.1.1,Misiones,AR-N,annual,2014,naphtha combustion consumption by to the public,26.781050594759996,TJ,CO2,73300.0,kg/TJ,1963051.0085959078,kg -11d7f962-034d-33f4-a125-e9ac07fcd882,SESCO,II.1.1,Misiones,AR-N,annual,2014,naphtha combustion consumption by to the public,26.781050594759996,TJ,CH4,3.0,kg/TJ,80.34315178428,kg -37018745-b08e-3fb9-8c0f-c16b27e691b4,SESCO,II.1.1,Misiones,AR-N,annual,2014,naphtha combustion consumption by to the public,26.781050594759996,TJ,N2O,0.6,kg/TJ,16.068630356855998,kg -35ceb9e3-dd80-366b-9a02-9988659b957a,SESCO,II.1.1,San Juan,AR-J,annual,2014,naphtha combustion consumption by to the public,46.19645498621999,TJ,CO2,73300.0,kg/TJ,3386200.1504899254,kg -b3531751-aab7-3af1-8410-b2bfdb2a2fc8,SESCO,II.1.1,San Juan,AR-J,annual,2014,naphtha combustion consumption by to the public,46.19645498621999,TJ,CH4,3.0,kg/TJ,138.58936495865998,kg -b76aa660-d235-3d43-b1a9-de89d5758a36,SESCO,II.1.1,San Juan,AR-J,annual,2014,naphtha combustion consumption by to the public,46.19645498621999,TJ,N2O,0.6,kg/TJ,27.717872991731994,kg -20e16bdc-a53b-315e-b206-4e9a7a673bcb,SESCO,II.1.1,San Luis,AR-D,annual,2014,naphtha combustion consumption by to the public,37.39657675908,TJ,CO2,73300.0,kg/TJ,2741169.076440564,kg -cce0f8b6-98e9-35bb-956e-864c784ed159,SESCO,II.1.1,San Luis,AR-D,annual,2014,naphtha combustion consumption by to the public,37.39657675908,TJ,CH4,3.0,kg/TJ,112.18973027723999,kg -83e84b0b-685e-38ca-b4c0-749a3f6c9a56,SESCO,II.1.1,San Luis,AR-D,annual,2014,naphtha combustion consumption by to the public,37.39657675908,TJ,N2O,0.6,kg/TJ,22.437946055448,kg -22a5b83a-b0e0-3d7b-9825-fa9ba6358dfb,SESCO,II.1.1,Santa Fe,AR-S,annual,2014,naphtha combustion consumption by to the public,207.77881626501997,TJ,CO2,73300.0,kg/TJ,15230187.232225964,kg -387a91a9-287a-3eb9-bb11-1529fc0ca33c,SESCO,II.1.1,Santa Fe,AR-S,annual,2014,naphtha combustion consumption by to the public,207.77881626501997,TJ,CH4,3.0,kg/TJ,623.3364487950599,kg -6bf8fd05-d0a0-30b8-a0aa-db7df82c9a27,SESCO,II.1.1,Santa Fe,AR-S,annual,2014,naphtha combustion consumption by to the public,207.77881626501997,TJ,N2O,0.6,kg/TJ,124.66728975901198,kg -5252edc4-8046-3e1e-985b-ab9818c985e3,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2014,naphtha combustion consumption by to the public,24.608745536759994,TJ,CO2,73300.0,kg/TJ,1803821.0478445075,kg -e8031707-5c04-365a-a83d-cf3ce6095f58,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2014,naphtha combustion consumption by to the public,24.608745536759994,TJ,CH4,3.0,kg/TJ,73.82623661027998,kg -796a700e-2515-3274-abd0-e8cfc54d6942,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2014,naphtha combustion consumption by to the public,24.608745536759994,TJ,N2O,0.6,kg/TJ,14.765247322055995,kg -3440947f-1510-31d9-b7a5-4f14516488d0,SESCO,II.1.1,Tucuman,AR-T,annual,2014,naphtha combustion consumption by to the public,22.738514139879996,TJ,CO2,73300.0,kg/TJ,1666733.0864532038,kg -40822bb3-2ec1-3dab-92db-e071bc8f662b,SESCO,II.1.1,Tucuman,AR-T,annual,2014,naphtha combustion consumption by to the public,22.738514139879996,TJ,CH4,3.0,kg/TJ,68.21554241963999,kg -af880f17-a1d7-39aa-8839-6a3a9769fffd,SESCO,II.1.1,Tucuman,AR-T,annual,2014,naphtha combustion consumption by to the public,22.738514139879996,TJ,N2O,0.6,kg/TJ,13.643108483927998,kg -65746b1f-78a8-3662-a2f2-2c7a9123f877,SESCO,II.5.1,Buenos Aires,AR-B,annual,2014,naphtha combustion consumption by agriculture machines,6.0274451313999995,TJ,CO2,73300.0,kg/TJ,441811.72813162,kg -d61e6b59-f251-308d-a5e8-47582fb606fc,SESCO,II.5.1,Buenos Aires,AR-B,annual,2014,naphtha combustion consumption by agriculture machines,6.0274451313999995,TJ,CH4,3.0,kg/TJ,18.082335394199998,kg -28bc4ad8-9fba-3d66-a173-17ac3b0c009c,SESCO,II.5.1,Buenos Aires,AR-B,annual,2014,naphtha combustion consumption by agriculture machines,6.0274451313999995,TJ,N2O,0.6,kg/TJ,3.6164670788399995,kg -e492f95c-a774-3deb-99d9-0abf269e9470,SESCO,II.1.1,Buenos Aires,AR-B,annual,2014,naphtha combustion consumption by to the public,4390.6777048442,TJ,CO2,73300.0,kg/TJ,321836675.76507986,kg -9b33e015-c98f-3e4b-91b7-8338179b1006,SESCO,II.1.1,Buenos Aires,AR-B,annual,2014,naphtha combustion consumption by to the public,4390.6777048442,TJ,CH4,3.0,kg/TJ,13172.0331145326,kg -d3fc0de8-0491-3208-a593-83346bdedd84,SESCO,II.1.1,Buenos Aires,AR-B,annual,2014,naphtha combustion consumption by to the public,4390.6777048442,TJ,N2O,0.6,kg/TJ,2634.4066229065197,kg -c5f89e52-b6da-3cea-85b3-78d502a17180,SESCO,II.1.1,Capital Federal,AR-C,annual,2014,naphtha combustion consumption by to the public,502.7057513631999,TJ,CO2,73300.0,kg/TJ,36848331.574922554,kg -d4040dda-7cc9-3b16-9f46-e1b07e0ece3e,SESCO,II.1.1,Capital Federal,AR-C,annual,2014,naphtha combustion consumption by to the public,502.7057513631999,TJ,CH4,3.0,kg/TJ,1508.1172540895998,kg -d8c484b6-e35a-3e0b-9d91-1241a3a55b80,SESCO,II.1.1,Capital Federal,AR-C,annual,2014,naphtha combustion consumption by to the public,502.7057513631999,TJ,N2O,0.6,kg/TJ,301.62345081791995,kg -d92161de-fd17-3f51-a4fa-9ac04b5fbca9,SESCO,II.1.1,Chaco,AR-H,annual,2014,naphtha combustion consumption by to the public,3.1919738927999997,TJ,CO2,73300.0,kg/TJ,233971.68634223996,kg -98c0e852-67a4-3240-a5ee-137be8698ebc,SESCO,II.1.1,Chaco,AR-H,annual,2014,naphtha combustion consumption by to the public,3.1919738927999997,TJ,CH4,3.0,kg/TJ,9.575921678399999,kg -0e2a3600-9781-3f2f-8c33-8beb78330722,SESCO,II.1.1,Chaco,AR-H,annual,2014,naphtha combustion consumption by to the public,3.1919738927999997,TJ,N2O,0.6,kg/TJ,1.9151843356799998,kg -5e48312a-4877-33a2-be6d-f83248620eac,SESCO,II.1.1,Chubut,AR-U,annual,2014,naphtha combustion consumption by to the public,1420.4983966557998,TJ,CO2,73300.0,kg/TJ,104122532.47487012,kg -7c2347f1-27e3-35b5-84ea-1c0169d37ce4,SESCO,II.1.1,Chubut,AR-U,annual,2014,naphtha combustion consumption by to the public,1420.4983966557998,TJ,CH4,3.0,kg/TJ,4261.4951899674,kg -ddbcca09-ab61-3737-b511-4bb1948472fb,SESCO,II.1.1,Chubut,AR-U,annual,2014,naphtha combustion consumption by to the public,1420.4983966557998,TJ,N2O,0.6,kg/TJ,852.2990379934798,kg -b22fdd03-e3cd-3ef2-8b50-d29563494bf0,SESCO,II.1.1,Córdoba,AR-X,annual,2014,naphtha combustion consumption by to the public,488.4025206368,TJ,CO2,73300.0,kg/TJ,35799904.76267744,kg -00c43384-9d0a-3d8c-be2b-17ecb5b49c72,SESCO,II.1.1,Córdoba,AR-X,annual,2014,naphtha combustion consumption by to the public,488.4025206368,TJ,CH4,3.0,kg/TJ,1465.2075619103998,kg -e2a3f73b-b26a-32b0-9c5c-9647c5bf99e3,SESCO,II.1.1,Córdoba,AR-X,annual,2014,naphtha combustion consumption by to the public,488.4025206368,TJ,N2O,0.6,kg/TJ,293.04151238208,kg -2edad4df-44df-3404-8ee7-b7bd267ee4ec,SESCO,II.1.1,Entre Rios,AR-E,annual,2014,naphtha combustion consumption by to the public,101.2649115016,TJ,CO2,73300.0,kg/TJ,7422718.01306728,kg -c0a52da8-4e08-3f01-b0c5-130b87ebdc6a,SESCO,II.1.1,Entre Rios,AR-E,annual,2014,naphtha combustion consumption by to the public,101.2649115016,TJ,CH4,3.0,kg/TJ,303.7947345048,kg -c9ccaca6-9009-3a10-acaf-39462bb79a22,SESCO,II.1.1,Entre Rios,AR-E,annual,2014,naphtha combustion consumption by to the public,101.2649115016,TJ,N2O,0.6,kg/TJ,60.75894690096,kg -48844a14-a1fd-3e8a-ad66-361fc1d5cc37,SESCO,II.1.1,La Pampa,AR-L,annual,2014,naphtha combustion consumption by to the public,223.146892584,TJ,CO2,73300.0,kg/TJ,16356667.2264072,kg -13763762-5a5c-3029-97ce-665c6f530f21,SESCO,II.1.1,La Pampa,AR-L,annual,2014,naphtha combustion consumption by to the public,223.146892584,TJ,CH4,3.0,kg/TJ,669.440677752,kg -956c4318-97e6-3caf-91ad-d031fc8b2ad7,SESCO,II.1.1,La Pampa,AR-L,annual,2014,naphtha combustion consumption by to the public,223.146892584,TJ,N2O,0.6,kg/TJ,133.8881355504,kg -6b443796-7a07-3afb-a5c3-2f7080155781,SESCO,II.1.1,Mendoza,AR-M,annual,2014,naphtha combustion consumption by to the public,31.031114529799996,TJ,CO2,73300.0,kg/TJ,2274580.6950343396,kg -46a5fca6-b470-3934-bac0-8a229f1ff73d,SESCO,II.1.1,Mendoza,AR-M,annual,2014,naphtha combustion consumption by to the public,31.031114529799996,TJ,CH4,3.0,kg/TJ,93.09334358939999,kg -5814176e-daf2-3bd9-91ef-ec0c6aa41fdf,SESCO,II.1.1,Mendoza,AR-M,annual,2014,naphtha combustion consumption by to the public,31.031114529799996,TJ,N2O,0.6,kg/TJ,18.61866871788,kg -965a8cde-31bd-3fe4-a2a2-cbee24eb3169,SESCO,II.1.1,Neuquén,AR-Q,annual,2014,naphtha combustion consumption by to the public,550.2738415636,TJ,CO2,73300.0,kg/TJ,40335072.586611874,kg -a4c31646-8b5a-356e-9291-a105b0fed252,SESCO,II.1.1,Neuquén,AR-Q,annual,2014,naphtha combustion consumption by to the public,550.2738415636,TJ,CH4,3.0,kg/TJ,1650.8215246907998,kg -d9d32c93-6033-38d5-a241-c90c138d5fe0,SESCO,II.1.1,Neuquén,AR-Q,annual,2014,naphtha combustion consumption by to the public,550.2738415636,TJ,N2O,0.6,kg/TJ,330.16430493815994,kg -f942fe56-26db-3e43-af0f-e14ff3c08bdf,SESCO,II.1.1,Rio Negro,AR-R,annual,2014,naphtha combustion consumption by to the public,1103.3604257060001,TJ,CO2,73300.0,kg/TJ,80876319.20424981,kg -0204954a-82a2-30ae-ae27-678eefaca709,SESCO,II.1.1,Rio Negro,AR-R,annual,2014,naphtha combustion consumption by to the public,1103.3604257060001,TJ,CH4,3.0,kg/TJ,3310.0812771180003,kg -71ccc87e-72d1-3f4e-a36c-61297b9b4a46,SESCO,II.1.1,Rio Negro,AR-R,annual,2014,naphtha combustion consumption by to the public,1103.3604257060001,TJ,N2O,0.6,kg/TJ,662.0162554236,kg -58d6346a-6ca8-35a1-95e6-36d9195a8749,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2014,naphtha combustion consumption by to the public,897.4864949511999,TJ,CO2,73300.0,kg/TJ,65785760.07992295,kg -d9b166e8-9126-3905-9baa-d1647107b636,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2014,naphtha combustion consumption by to the public,897.4864949511999,TJ,CH4,3.0,kg/TJ,2692.4594848536,kg -bdb7a6ea-6216-3bfe-b80b-8b9f2b9b1b65,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2014,naphtha combustion consumption by to the public,897.4864949511999,TJ,N2O,0.6,kg/TJ,538.49189697072,kg -522fdff9-c8f8-33e8-af2a-3b9731b51c49,SESCO,II.1.1,Santa Fe,AR-S,annual,2014,naphtha combustion consumption by to the public,580.9394061086,TJ,CO2,73300.0,kg/TJ,42582858.46776038,kg -32d8d58b-8d01-38fd-870d-caf473749378,SESCO,II.1.1,Santa Fe,AR-S,annual,2014,naphtha combustion consumption by to the public,580.9394061086,TJ,CH4,3.0,kg/TJ,1742.8182183258,kg -a9c0d103-2fc8-3178-b5fd-3ed9b2fea5cc,SESCO,II.1.1,Santa Fe,AR-S,annual,2014,naphtha combustion consumption by to the public,580.9394061086,TJ,N2O,0.6,kg/TJ,348.56364366516,kg -a62355ac-03df-37e9-b886-694dac4cb703,SESCO,II.1.1,Buenos Aires,AR-B,annual,2014,naphtha combustion consumption by to the public,1160.1682993053996,TJ,CO2,73300.0,kg/TJ,85040336.33908579,kg -d9f189a0-9747-3e15-9df5-d1e4ab154b13,SESCO,II.1.1,Buenos Aires,AR-B,annual,2014,naphtha combustion consumption by to the public,1160.1682993053996,TJ,CH4,3.0,kg/TJ,3480.504897916199,kg -1bdf48b5-b194-36e8-be21-0be1e7eb6389,SESCO,II.1.1,Buenos Aires,AR-B,annual,2014,naphtha combustion consumption by to the public,1160.1682993053996,TJ,N2O,0.6,kg/TJ,696.1009795832398,kg -71edf619-98e3-35c9-b4c4-bdbf09f0930f,SESCO,II.1.1,Capital Federal,AR-C,annual,2014,naphtha combustion consumption by to the public,228.92334521979998,TJ,CO2,73300.0,kg/TJ,16780081.20461134,kg -633bf7b9-b6f3-3333-ac74-a534fb83c891,SESCO,II.1.1,Capital Federal,AR-C,annual,2014,naphtha combustion consumption by to the public,228.92334521979998,TJ,CH4,3.0,kg/TJ,686.7700356593999,kg -6a1d3623-bc9a-381c-b1e7-ffcdde9de610,SESCO,II.1.1,Capital Federal,AR-C,annual,2014,naphtha combustion consumption by to the public,228.92334521979998,TJ,N2O,0.6,kg/TJ,137.35400713188,kg -55c3548f-8177-36c4-8618-e41333b259bb,SESCO,II.1.1,Chubut,AR-U,annual,2014,naphtha combustion consumption by to the public,234.40703632499998,TJ,CO2,73300.0,kg/TJ,17182035.762622498,kg -9c4f893b-f182-310a-8890-d236c852da79,SESCO,II.1.1,Chubut,AR-U,annual,2014,naphtha combustion consumption by to the public,234.40703632499998,TJ,CH4,3.0,kg/TJ,703.2211089749999,kg -772cf80c-f4d8-3658-872d-74dde4331a76,SESCO,II.1.1,Chubut,AR-U,annual,2014,naphtha combustion consumption by to the public,234.40703632499998,TJ,N2O,0.6,kg/TJ,140.644221795,kg -2de3fe82-818e-3894-b7b7-41f08a3c69e1,SESCO,II.1.1,Córdoba,AR-X,annual,2014,naphtha combustion consumption by to the public,113.7316286876,TJ,CO2,73300.0,kg/TJ,8336528.382801079,kg -c3edc29b-a97a-34c7-ae69-b9061cd48c1e,SESCO,II.1.1,Córdoba,AR-X,annual,2014,naphtha combustion consumption by to the public,113.7316286876,TJ,CH4,3.0,kg/TJ,341.1948860628,kg -fa7ccf20-beef-3a95-8339-705b7a95de88,SESCO,II.1.1,Córdoba,AR-X,annual,2014,naphtha combustion consumption by to the public,113.7316286876,TJ,N2O,0.6,kg/TJ,68.23897721255999,kg -e889516b-cb3c-380a-b934-4fed42b49499,SESCO,II.1.1,Entre Rios,AR-E,annual,2014,naphtha combustion consumption by to the public,25.458715451399996,TJ,CO2,73300.0,kg/TJ,1866123.8425876198,kg -5553b1cc-9470-3a3f-9a5b-6ed1037674bb,SESCO,II.1.1,Entre Rios,AR-E,annual,2014,naphtha combustion consumption by to the public,25.458715451399996,TJ,CH4,3.0,kg/TJ,76.37614635419999,kg -571773f0-c16d-338a-a149-72f9942dbc34,SESCO,II.1.1,Entre Rios,AR-E,annual,2014,naphtha combustion consumption by to the public,25.458715451399996,TJ,N2O,0.6,kg/TJ,15.275229270839997,kg -21e446ab-2955-373b-9f48-956b7f3c9247,SESCO,II.1.1,La Pampa,AR-L,annual,2014,naphtha combustion consumption by to the public,52.225857745599995,TJ,CO2,73300.0,kg/TJ,3828155.3727524797,kg -408c8ccc-80ab-3cfd-b225-6b879c3bef8f,SESCO,II.1.1,La Pampa,AR-L,annual,2014,naphtha combustion consumption by to the public,52.225857745599995,TJ,CH4,3.0,kg/TJ,156.6775732368,kg -9905cba2-ce95-3410-92ca-5d8c07b6689d,SESCO,II.1.1,La Pampa,AR-L,annual,2014,naphtha combustion consumption by to the public,52.225857745599995,TJ,N2O,0.6,kg/TJ,31.335514647359997,kg -409c9558-c322-3197-8fb8-a46ff31b063e,SESCO,II.1.1,Mendoza,AR-M,annual,2014,naphtha combustion consumption by to the public,3.1070172518000003,TJ,CO2,73300.0,kg/TJ,227744.36455694,kg -0f861c72-f7e0-33ec-aae3-133cb382f4a8,SESCO,II.1.1,Mendoza,AR-M,annual,2014,naphtha combustion consumption by to the public,3.1070172518000003,TJ,CH4,3.0,kg/TJ,9.321051755400001,kg -91169aab-4a4d-3de1-a498-6e04f71f3f10,SESCO,II.1.1,Mendoza,AR-M,annual,2014,naphtha combustion consumption by to the public,3.1070172518000003,TJ,N2O,0.6,kg/TJ,1.86421035108,kg -6572658d-ab92-38ea-97d9-afd5181ef649,SESCO,II.1.1,Neuquén,AR-Q,annual,2014,naphtha combustion consumption by to the public,160.09721201319996,TJ,CO2,73300.0,kg/TJ,11735125.640567558,kg -cd24a7d8-7db1-3238-9274-766cc80cf091,SESCO,II.1.1,Neuquén,AR-Q,annual,2014,naphtha combustion consumption by to the public,160.09721201319996,TJ,CH4,3.0,kg/TJ,480.2916360395999,kg -e7c4f47a-00ba-39e3-b438-2714c3d50c0e,SESCO,II.1.1,Neuquén,AR-Q,annual,2014,naphtha combustion consumption by to the public,160.09721201319996,TJ,N2O,0.6,kg/TJ,96.05832720791997,kg -f14591bd-0eda-34e1-8b53-a632fc4cabc0,SESCO,II.1.1,Rio Negro,AR-R,annual,2014,naphtha combustion consumption by to the public,190.761862368,TJ,CO2,73300.0,kg/TJ,13982844.5115744,kg -1adf8559-dbcf-3635-8eb6-a2825a3edd28,SESCO,II.1.1,Rio Negro,AR-R,annual,2014,naphtha combustion consumption by to the public,190.761862368,TJ,CH4,3.0,kg/TJ,572.285587104,kg -81a63811-3314-3355-a197-09eb71445a92,SESCO,II.1.1,Rio Negro,AR-R,annual,2014,naphtha combustion consumption by to the public,190.761862368,TJ,N2O,0.6,kg/TJ,114.4571174208,kg -a8180225-b723-3785-ba6f-853ef8db97d7,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2014,naphtha combustion consumption by to the public,167.53052405319997,TJ,CO2,73300.0,kg/TJ,12279987.413099557,kg -2c7e28fe-f59e-357c-b35d-b3c6df92aaa9,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2014,naphtha combustion consumption by to the public,167.53052405319997,TJ,CH4,3.0,kg/TJ,502.5915721595999,kg -3853514e-c242-3a38-8be7-903f45cde725,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2014,naphtha combustion consumption by to the public,167.53052405319997,TJ,N2O,0.6,kg/TJ,100.51831443191998,kg -4f597e50-e092-3a2a-ace4-72ce6782edd4,SESCO,II.1.1,Santa Fe,AR-S,annual,2014,naphtha combustion consumption by to the public,186.0194849436,TJ,CO2,73300.0,kg/TJ,13635228.246365879,kg -66a84a74-980c-3cf7-8d9d-78482900bdab,SESCO,II.1.1,Santa Fe,AR-S,annual,2014,naphtha combustion consumption by to the public,186.0194849436,TJ,CH4,3.0,kg/TJ,558.0584548308,kg -7851e558-aeab-3df9-ae8e-bd20369ef818,SESCO,II.1.1,Santa Fe,AR-S,annual,2014,naphtha combustion consumption by to the public,186.0194849436,TJ,N2O,0.6,kg/TJ,111.61169096616,kg -b32349ee-b364-3820-857e-6087148bc246,SESCO,II.1.1,Buenos Aires,AR-B,annual,2014,naphtha combustion consumption by to the public,0.050438079999999996,TJ,CO2,73300.0,kg/TJ,3697.1112639999997,kg -215b73ae-6d1d-33f7-9822-fdfc20574a48,SESCO,II.1.1,Buenos Aires,AR-B,annual,2014,naphtha combustion consumption by to the public,0.050438079999999996,TJ,CH4,3.0,kg/TJ,0.15131424,kg -2a685ef8-af3a-3b8b-914e-5fd4d7772b2b,SESCO,II.1.1,Buenos Aires,AR-B,annual,2014,naphtha combustion consumption by to the public,0.050438079999999996,TJ,N2O,0.6,kg/TJ,0.030262847999999995,kg -46fd4c5f-5b05-33de-820d-21a5880fba9b,SESCO,II.1.1,Buenos Aires,AR-B,annual,2014,naphtha combustion consumption by to the public,721.3906391999999,TJ,CO2,73300.0,kg/TJ,52877933.85335999,kg -394d1fde-264d-3b66-9271-29c7519191c8,SESCO,II.1.1,Buenos Aires,AR-B,annual,2014,naphtha combustion consumption by to the public,721.3906391999999,TJ,CH4,3.0,kg/TJ,2164.1719175999997,kg -8fbff8ac-d652-36ed-ac37-136c0a569e7d,SESCO,II.1.1,Buenos Aires,AR-B,annual,2014,naphtha combustion consumption by to the public,721.3906391999999,TJ,N2O,0.6,kg/TJ,432.8343835199999,kg -3c0a689e-3447-367e-93df-ca9fac20855c,SESCO,II.1.1,Capital Federal,AR-C,annual,2014,naphtha combustion consumption by to the public,19.103422799999997,TJ,CO2,73300.0,kg/TJ,1400280.8912399998,kg -9058bcc4-7538-3749-b49d-2dce4d0db894,SESCO,II.1.1,Capital Federal,AR-C,annual,2014,naphtha combustion consumption by to the public,19.103422799999997,TJ,CH4,3.0,kg/TJ,57.31026839999999,kg -f5e40fa7-ea2f-3f01-8447-5051607b9fa4,SESCO,II.1.1,Capital Federal,AR-C,annual,2014,naphtha combustion consumption by to the public,19.103422799999997,TJ,N2O,0.6,kg/TJ,11.462053679999999,kg -a325db8b-1105-3666-9156-38d34d4eb3d9,SESCO,II.1.1,Córdoba,AR-X,annual,2014,naphtha combustion consumption by to the public,130.60310339999998,TJ,CO2,73300.0,kg/TJ,9573207.47922,kg -a847fda3-3e22-32a5-8060-55540d3f6ffc,SESCO,II.1.1,Córdoba,AR-X,annual,2014,naphtha combustion consumption by to the public,130.60310339999998,TJ,CH4,3.0,kg/TJ,391.8093101999999,kg -5bb22c0e-9c8a-3c67-a9fe-53e72fb91fea,SESCO,II.1.1,Córdoba,AR-X,annual,2014,naphtha combustion consumption by to the public,130.60310339999998,TJ,N2O,0.6,kg/TJ,78.36186203999999,kg -bb68b0f0-f917-3255-9f04-f2b4b499e3ca,SESCO,II.1.1,Entre Rios,AR-E,annual,2014,naphtha combustion consumption by to the public,98.0074942,TJ,CO2,73300.0,kg/TJ,7183949.32486,kg -63886abe-869b-3727-8a3a-8c0c4060e3ee,SESCO,II.1.1,Entre Rios,AR-E,annual,2014,naphtha combustion consumption by to the public,98.0074942,TJ,CH4,3.0,kg/TJ,294.0224826,kg -335b8a20-42f8-343a-9c9a-86be77c1f25b,SESCO,II.1.1,Entre Rios,AR-E,annual,2014,naphtha combustion consumption by to the public,98.0074942,TJ,N2O,0.6,kg/TJ,58.804496519999994,kg -92dcbd5c-e01f-398d-a582-cdb36c25a2f6,SESCO,II.1.1,Santa Fe,AR-S,annual,2014,naphtha combustion consumption by to the public,78.05292879999999,TJ,CO2,73300.0,kg/TJ,5721279.681039999,kg -b56dd672-f716-3e6a-923e-459f7a6865a0,SESCO,II.1.1,Santa Fe,AR-S,annual,2014,naphtha combustion consumption by to the public,78.05292879999999,TJ,CH4,3.0,kg/TJ,234.15878639999997,kg -8abb4e02-c509-3a58-9642-4f237bec8707,SESCO,II.1.1,Santa Fe,AR-S,annual,2014,naphtha combustion consumption by to the public,78.05292879999999,TJ,N2O,0.6,kg/TJ,46.83175727999999,kg -251c72cf-547e-3333-a3fa-ebd2d1f99fe2,SESCO,II.1.1,Buenos Aires,AR-B,annual,2014,naphtha combustion consumption by to the public,72.04134014,TJ,CO2,73300.0,kg/TJ,5280630.232262,kg -9a35c045-575a-3339-9f9a-069da04bf045,SESCO,II.1.1,Buenos Aires,AR-B,annual,2014,naphtha combustion consumption by to the public,72.04134014,TJ,CH4,3.0,kg/TJ,216.12402042000002,kg -915f5c50-6fc0-316c-98c2-f632c69446c1,SESCO,II.1.1,Buenos Aires,AR-B,annual,2014,naphtha combustion consumption by to the public,72.04134014,TJ,N2O,0.6,kg/TJ,43.224804084,kg -1e079b33-a758-3c75-99c7-4448d5a5d98a,SESCO,II.1.1,Capital Federal,AR-C,annual,2014,naphtha combustion consumption by to the public,1.1348567999999999,TJ,CO2,73300.0,kg/TJ,83185.00343999999,kg -d44529b9-9672-3cfb-acc1-0fb477cf9e81,SESCO,II.1.1,Capital Federal,AR-C,annual,2014,naphtha combustion consumption by to the public,1.1348567999999999,TJ,CH4,3.0,kg/TJ,3.4045704,kg -c45eb760-eab9-3ac8-8d6c-5795b6fc6a8a,SESCO,II.1.1,Capital Federal,AR-C,annual,2014,naphtha combustion consumption by to the public,1.1348567999999999,TJ,N2O,0.6,kg/TJ,0.6809140799999999,kg -29264966-cbb0-3a7b-a648-c8b1f34da009,SESCO,II.1.1,Córdoba,AR-X,annual,2014,naphtha combustion consumption by to the public,5.516665,TJ,CO2,73300.0,kg/TJ,404371.54449999996,kg -3bb1f837-a4fd-3666-a58b-d45fe7923c79,SESCO,II.1.1,Córdoba,AR-X,annual,2014,naphtha combustion consumption by to the public,5.516665,TJ,CH4,3.0,kg/TJ,16.549995,kg -b3801366-f25c-3182-9a85-c59be16e7d82,SESCO,II.1.1,Córdoba,AR-X,annual,2014,naphtha combustion consumption by to the public,5.516665,TJ,N2O,0.6,kg/TJ,3.309999,kg -bf672f0d-7ca2-3d4e-9749-f96ea4e81c60,SESCO,II.1.1,Entre Rios,AR-E,annual,2014,naphtha combustion consumption by to the public,7.943997599999999,TJ,CO2,73300.0,kg/TJ,582295.02408,kg -bbe078c9-d25e-3457-978c-bd921b8c7079,SESCO,II.1.1,Entre Rios,AR-E,annual,2014,naphtha combustion consumption by to the public,7.943997599999999,TJ,CH4,3.0,kg/TJ,23.8319928,kg -ad3774cf-7734-30a8-ac65-7533f59d3ff3,SESCO,II.1.1,Entre Rios,AR-E,annual,2014,naphtha combustion consumption by to the public,7.943997599999999,TJ,N2O,0.6,kg/TJ,4.76639856,kg -ff1fcd76-d5bc-3333-9045-d345f44e3dbf,SESCO,II.1.1,Santa Fe,AR-S,annual,2014,naphtha combustion consumption by to the public,9.299520999999999,TJ,CO2,73300.0,kg/TJ,681654.8892999999,kg -cf9a2d9f-79ca-3c52-8532-1246fc1eba51,SESCO,II.1.1,Santa Fe,AR-S,annual,2014,naphtha combustion consumption by to the public,9.299520999999999,TJ,CH4,3.0,kg/TJ,27.898562999999996,kg -022cb9f0-cfd0-3f19-8ad7-db7aea36ecaa,SESCO,II.1.1,Santa Fe,AR-S,annual,2014,naphtha combustion consumption by to the public,9.299520999999999,TJ,N2O,0.6,kg/TJ,5.579712599999999,kg -9597c6f4-dd5f-3f08-a1a6-9e433910f767,SESCO,II.1.1,Catamarca,AR-K,annual,2014,naphtha combustion consumption by to the public,0.0315238,TJ,CO2,73300.0,kg/TJ,2310.69454,kg -4c7a9be0-2a4e-3d91-a0de-39e5bb8167f3,SESCO,II.1.1,Catamarca,AR-K,annual,2014,naphtha combustion consumption by to the public,0.0315238,TJ,CH4,3.0,kg/TJ,0.0945714,kg -d47c48cd-db16-3d05-819f-4f6555bd1b59,SESCO,II.1.1,Catamarca,AR-K,annual,2014,naphtha combustion consumption by to the public,0.0315238,TJ,N2O,0.6,kg/TJ,0.01891428,kg -c8dc158c-72b2-3042-96e3-760d22b8a8a1,SESCO,II.1.1,Salta,AR-A,annual,2014,naphtha combustion consumption by to the public,0.5957998199999999,TJ,CO2,73300.0,kg/TJ,43672.12680599999,kg -4f9ab08d-962d-38bd-97ee-7d376eb01b5b,SESCO,II.1.1,Salta,AR-A,annual,2014,naphtha combustion consumption by to the public,0.5957998199999999,TJ,CH4,3.0,kg/TJ,1.7873994599999996,kg -2406bf17-2e6f-39a9-a930-cd1c011d66ef,SESCO,II.1.1,Salta,AR-A,annual,2014,naphtha combustion consumption by to the public,0.5957998199999999,TJ,N2O,0.6,kg/TJ,0.3574798919999999,kg -d07f6202-fcea-3cbc-be27-8c31fb5412c3,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2014,naphtha combustion consumption by to the public,0.027740943999999997,TJ,CO2,73300.0,kg/TJ,2033.4111951999998,kg -972d1777-c030-3be1-af1a-33e070ae442c,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2014,naphtha combustion consumption by to the public,0.027740943999999997,TJ,CH4,3.0,kg/TJ,0.083222832,kg -616ce68d-11ac-3c59-9f92-7932f4ec485f,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2014,naphtha combustion consumption by to the public,0.027740943999999997,TJ,N2O,0.6,kg/TJ,0.016644566399999998,kg -19f7e14d-acd7-3195-9b2a-6928c18ddfd6,SESCO,II.1.1,Tucuman,AR-T,annual,2014,naphtha combustion consumption by to the public,0.030262847999999995,TJ,CO2,73300.0,kg/TJ,2218.2667583999996,kg -ebe16401-4439-3985-bcb6-24ad2668e3fb,SESCO,II.1.1,Tucuman,AR-T,annual,2014,naphtha combustion consumption by to the public,0.030262847999999995,TJ,CH4,3.0,kg/TJ,0.09078854399999998,kg -5724ec92-3daf-36c4-81af-f93c907d7898,SESCO,II.1.1,Tucuman,AR-T,annual,2014,naphtha combustion consumption by to the public,0.030262847999999995,TJ,N2O,0.6,kg/TJ,0.018157708799999995,kg -7788073d-580a-3758-8762-a09736253e31,SESCO,II.1.1,Catamarca,AR-K,annual,2014,naphtha combustion consumption by to the public,242.852104726,TJ,CO2,73300.0,kg/TJ,17801059.2764158,kg -e0f6b094-9aed-3bae-affd-1d4a975aebd9,SESCO,II.1.1,Catamarca,AR-K,annual,2014,naphtha combustion consumption by to the public,242.852104726,TJ,CH4,3.0,kg/TJ,728.556314178,kg -cf1bb135-9082-3682-97a6-4e05b47a821c,SESCO,II.1.1,Catamarca,AR-K,annual,2014,naphtha combustion consumption by to the public,242.852104726,TJ,N2O,0.6,kg/TJ,145.7112628356,kg -9cc28e05-7df0-37c2-b1bb-ef9c98bb86ba,SESCO,II.1.1,Chaco,AR-H,annual,2014,naphtha combustion consumption by to the public,106.29100312599999,TJ,CO2,73300.0,kg/TJ,7791130.529135799,kg -76b7ad71-5965-3d56-8d3e-f585dd95be27,SESCO,II.1.1,Chaco,AR-H,annual,2014,naphtha combustion consumption by to the public,106.29100312599999,TJ,CH4,3.0,kg/TJ,318.873009378,kg -e944a364-f239-302b-962e-8b5220653254,SESCO,II.1.1,Chaco,AR-H,annual,2014,naphtha combustion consumption by to the public,106.29100312599999,TJ,N2O,0.6,kg/TJ,63.77460187559999,kg -118d4f34-0eb9-3175-ab65-fa3865e2ad7e,SESCO,II.1.1,Córdoba,AR-X,annual,2014,naphtha combustion consumption by to the public,35.21366078999999,TJ,CO2,73300.0,kg/TJ,2581161.335906999,kg -5a532dee-8f61-3ff5-85e9-ac02acb48838,SESCO,II.1.1,Córdoba,AR-X,annual,2014,naphtha combustion consumption by to the public,35.21366078999999,TJ,CH4,3.0,kg/TJ,105.64098236999997,kg -f0f985a4-9771-3d48-b676-f28112a7891c,SESCO,II.1.1,Córdoba,AR-X,annual,2014,naphtha combustion consumption by to the public,35.21366078999999,TJ,N2O,0.6,kg/TJ,21.128196473999996,kg -1784ffbf-2f45-3e93-9a4c-517dcf70a077,SESCO,II.1.1,Jujuy,AR-Y,annual,2014,naphtha combustion consumption by to the public,552.8703939219998,TJ,CO2,73300.0,kg/TJ,40525399.87448259,kg -2d65ad64-ee3d-3f70-aaad-3a82bd75ea27,SESCO,II.1.1,Jujuy,AR-Y,annual,2014,naphtha combustion consumption by to the public,552.8703939219998,TJ,CH4,3.0,kg/TJ,1658.6111817659994,kg -b6ba3afc-1664-3987-b9d8-7049719b1bf6,SESCO,II.1.1,Jujuy,AR-Y,annual,2014,naphtha combustion consumption by to the public,552.8703939219998,TJ,N2O,0.6,kg/TJ,331.7222363531999,kg -4b236c1a-57cb-3519-a825-baaf6007460a,SESCO,II.1.1,La Rioja,AR-F,annual,2014,naphtha combustion consumption by to the public,276.107822298,TJ,CO2,73300.0,kg/TJ,20238703.374443397,kg -02286317-10f2-3f72-aa76-33fa142c0846,SESCO,II.1.1,La Rioja,AR-F,annual,2014,naphtha combustion consumption by to the public,276.107822298,TJ,CH4,3.0,kg/TJ,828.3234668939999,kg -bf935dad-a06b-39cd-bdf1-3bc4f7ea8270,SESCO,II.1.1,La Rioja,AR-F,annual,2014,naphtha combustion consumption by to the public,276.107822298,TJ,N2O,0.6,kg/TJ,165.66469337879997,kg -b6c89252-b273-3f37-813f-8e500af978c5,SESCO,II.1.1,Salta,AR-A,annual,2014,naphtha combustion consumption by to the public,1048.6603279459998,TJ,CO2,73300.0,kg/TJ,76866802.03844179,kg -be733552-ab07-36a3-b3df-1e2f87f84905,SESCO,II.1.1,Salta,AR-A,annual,2014,naphtha combustion consumption by to the public,1048.6603279459998,TJ,CH4,3.0,kg/TJ,3145.9809838379997,kg -220243a4-c4aa-3753-8606-913fca7b1c98,SESCO,II.1.1,Salta,AR-A,annual,2014,naphtha combustion consumption by to the public,1048.6603279459998,TJ,N2O,0.6,kg/TJ,629.1961967675999,kg -52ab3989-6a99-3eff-892b-a6a0ccd7f3df,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2014,naphtha combustion consumption by to the public,311.03335555599995,TJ,CO2,73300.0,kg/TJ,22798744.962254796,kg -4573e38c-972e-3477-a5c7-c960aab9982d,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2014,naphtha combustion consumption by to the public,311.03335555599995,TJ,CH4,3.0,kg/TJ,933.1000666679998,kg -a1a616d0-f199-32a7-b448-5efc0f2eb688,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2014,naphtha combustion consumption by to the public,311.03335555599995,TJ,N2O,0.6,kg/TJ,186.62001333359996,kg -aff756e9-c146-3491-98ce-8c88b0a2346b,SESCO,II.1.1,Tucuman,AR-T,annual,2014,naphtha combustion consumption by to the public,1666.0520595179996,TJ,CO2,73300.0,kg/TJ,122121615.96266937,kg -c207b528-b928-32e6-afd4-0fc2e51e1af3,SESCO,II.1.1,Tucuman,AR-T,annual,2014,naphtha combustion consumption by to the public,1666.0520595179996,TJ,CH4,3.0,kg/TJ,4998.156178553999,kg -026f75df-ca4d-3ff1-a924-8a553afe6713,SESCO,II.1.1,Tucuman,AR-T,annual,2014,naphtha combustion consumption by to the public,1666.0520595179996,TJ,N2O,0.6,kg/TJ,999.6312357107997,kg -b058670d-9adc-313d-8606-76562ebfb7bc,SESCO,II.1.1,Catamarca,AR-K,annual,2014,naphtha combustion consumption by to the public,17.770596535999996,TJ,CO2,73300.0,kg/TJ,1302584.7260887998,kg -d5a23879-cb45-374e-9c8e-44b9aa8ebbfa,SESCO,II.1.1,Catamarca,AR-K,annual,2014,naphtha combustion consumption by to the public,17.770596535999996,TJ,CH4,3.0,kg/TJ,53.311789607999984,kg -cbbe578d-18c8-3995-89b4-d3261e4341e7,SESCO,II.1.1,Catamarca,AR-K,annual,2014,naphtha combustion consumption by to the public,17.770596535999996,TJ,N2O,0.6,kg/TJ,10.662357921599996,kg -da0a2a18-fad5-3c7b-9570-7e5640a3baca,SESCO,II.1.1,Chaco,AR-H,annual,2014,naphtha combustion consumption by to the public,1.250549146,TJ,CO2,73300.0,kg/TJ,91665.2524018,kg -22f991e4-b9c9-3c12-a408-e929194ee1f2,SESCO,II.1.1,Chaco,AR-H,annual,2014,naphtha combustion consumption by to the public,1.250549146,TJ,CH4,3.0,kg/TJ,3.751647438,kg -3ec802e6-9eca-3be5-a71d-edc6c98ab8d9,SESCO,II.1.1,Chaco,AR-H,annual,2014,naphtha combustion consumption by to the public,1.250549146,TJ,N2O,0.6,kg/TJ,0.7503294876,kg -becd1fb5-ac3d-3107-8dcb-80cf95cba713,SESCO,II.1.1,Córdoba,AR-X,annual,2014,naphtha combustion consumption by to the public,4.0315787819999995,TJ,CO2,73300.0,kg/TJ,295514.72472059994,kg -beda55e6-a0da-32fa-9448-8920b0030261,SESCO,II.1.1,Córdoba,AR-X,annual,2014,naphtha combustion consumption by to the public,4.0315787819999995,TJ,CH4,3.0,kg/TJ,12.094736345999998,kg -dedc329f-3a28-3363-9388-78034918a78d,SESCO,II.1.1,Córdoba,AR-X,annual,2014,naphtha combustion consumption by to the public,4.0315787819999995,TJ,N2O,0.6,kg/TJ,2.4189472692,kg -1231d1d7-7ab0-31f3-9d2c-850dbc41bffb,SESCO,II.1.1,Jujuy,AR-Y,annual,2014,naphtha combustion consumption by to the public,29.070617884,TJ,CO2,73300.0,kg/TJ,2130876.2908972,kg -ff980fe6-0688-3715-bcda-ed6986bd97a5,SESCO,II.1.1,Jujuy,AR-Y,annual,2014,naphtha combustion consumption by to the public,29.070617884,TJ,CH4,3.0,kg/TJ,87.211853652,kg -c72b8aa2-11a0-3c2b-a680-ea6eb9428e60,SESCO,II.1.1,Jujuy,AR-Y,annual,2014,naphtha combustion consumption by to the public,29.070617884,TJ,N2O,0.6,kg/TJ,17.4423707304,kg -6dd27228-0c16-3cc5-94e0-7d24f9c80b0a,SESCO,II.1.1,La Rioja,AR-F,annual,2014,naphtha combustion consumption by to the public,7.166935929999999,TJ,CO2,73300.0,kg/TJ,525336.4036689999,kg -5b205abd-053f-32f7-91b2-a753921b035d,SESCO,II.1.1,La Rioja,AR-F,annual,2014,naphtha combustion consumption by to the public,7.166935929999999,TJ,CH4,3.0,kg/TJ,21.500807789999996,kg -75e9e378-31cf-3b02-a36b-f28cfe6415c0,SESCO,II.1.1,La Rioja,AR-F,annual,2014,naphtha combustion consumption by to the public,7.166935929999999,TJ,N2O,0.6,kg/TJ,4.300161557999999,kg -53c28d1c-80ad-36be-83c5-a1bba89c101e,SESCO,II.1.1,Salta,AR-A,annual,2014,naphtha combustion consumption by to the public,55.629104145999996,TJ,CO2,73300.0,kg/TJ,4077613.3339017997,kg -475baf97-51a3-3cb8-a6cc-8c5336cbe518,SESCO,II.1.1,Salta,AR-A,annual,2014,naphtha combustion consumption by to the public,55.629104145999996,TJ,CH4,3.0,kg/TJ,166.88731243799998,kg -5dbf4057-a4d6-3137-87c8-c5e32388f656,SESCO,II.1.1,Salta,AR-A,annual,2014,naphtha combustion consumption by to the public,55.629104145999996,TJ,N2O,0.6,kg/TJ,33.3774624876,kg -a7e4eda4-a0f3-32d4-a5f5-6fcc903de75b,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2014,naphtha combustion consumption by to the public,30.160395649999998,TJ,CO2,73300.0,kg/TJ,2210757.0011449996,kg -4b23d87a-47a8-310b-b6ec-ea5a73430e11,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2014,naphtha combustion consumption by to the public,30.160395649999998,TJ,CH4,3.0,kg/TJ,90.48118695,kg -8f265a39-e5fb-300f-a8c0-110b6c6ff52a,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2014,naphtha combustion consumption by to the public,30.160395649999998,TJ,N2O,0.6,kg/TJ,18.09623739,kg -cd6967c7-90df-37fb-80e5-e1b3d95fea64,SESCO,II.1.1,Tucuman,AR-T,annual,2014,naphtha combustion consumption by to the public,97.91702089399999,TJ,CO2,73300.0,kg/TJ,7177317.631530199,kg -caa2fe29-13a4-3cb2-8d67-772b12e0781f,SESCO,II.1.1,Tucuman,AR-T,annual,2014,naphtha combustion consumption by to the public,97.91702089399999,TJ,CH4,3.0,kg/TJ,293.751062682,kg -99bcb879-ee69-3e5d-83d2-1c81a54fa109,SESCO,II.1.1,Tucuman,AR-T,annual,2014,naphtha combustion consumption by to the public,97.91702089399999,TJ,N2O,0.6,kg/TJ,58.75021253639999,kg -be3e224d-bf6f-3227-ad49-978d358e0755,SESCO,II.5.1,Santa Fe,AR-S,annual,2014,naphtha combustion consumption by agriculture machines,49.870651599999995,TJ,CO2,73300.0,kg/TJ,3655518.7622799994,kg -8286a2ba-94c2-3d5d-a6f8-c28828a06091,SESCO,II.5.1,Santa Fe,AR-S,annual,2014,naphtha combustion consumption by agriculture machines,49.870651599999995,TJ,CH4,3.0,kg/TJ,149.61195479999998,kg -47b5b30f-a318-3728-b7af-f62ec79bef1e,SESCO,II.5.1,Santa Fe,AR-S,annual,2014,naphtha combustion consumption by agriculture machines,49.870651599999995,TJ,N2O,0.6,kg/TJ,29.922390959999994,kg -2b1683ba-04eb-38db-80f9-63ebc0093983,SESCO,II.5.1,Santa Fe,AR-S,annual,2014,naphtha combustion consumption by agriculture machines,4.760093799999999,TJ,CO2,73300.0,kg/TJ,348914.8755399999,kg -f7e3ed0b-65ca-3dd4-a05a-4348673f6e13,SESCO,II.5.1,Santa Fe,AR-S,annual,2014,naphtha combustion consumption by agriculture machines,4.760093799999999,TJ,CH4,3.0,kg/TJ,14.280281399999996,kg -dc6940af-57fc-3090-b91e-9f7b94b51e77,SESCO,II.5.1,Santa Fe,AR-S,annual,2014,naphtha combustion consumption by agriculture machines,4.760093799999999,TJ,N2O,0.6,kg/TJ,2.8560562799999993,kg -f976b4ea-f279-3826-9a84-ede1c16bd929,SESCO,II.1.1,Buenos Aires,AR-B,annual,2014,naphtha combustion consumption by to the public,89.02321119999999,TJ,CO2,73300.0,kg/TJ,6525401.38096,kg -a84009c3-b6c6-33b2-abef-9968614138b4,SESCO,II.1.1,Buenos Aires,AR-B,annual,2014,naphtha combustion consumption by to the public,89.02321119999999,TJ,CH4,3.0,kg/TJ,267.0696336,kg -fe22891b-cd0b-37ab-b9be-9137eeb26237,SESCO,II.1.1,Buenos Aires,AR-B,annual,2014,naphtha combustion consumption by to the public,89.02321119999999,TJ,N2O,0.6,kg/TJ,53.41392671999999,kg -afc5d050-de15-3b2b-9c51-b60ee71a5f3b,SESCO,II.1.1,Entre Rios,AR-E,annual,2014,naphtha combustion consumption by to the public,19.450184599999996,TJ,CO2,73300.0,kg/TJ,1425698.5311799997,kg -b75b553e-5e8b-37cd-9775-c781425acd08,SESCO,II.1.1,Entre Rios,AR-E,annual,2014,naphtha combustion consumption by to the public,19.450184599999996,TJ,CH4,3.0,kg/TJ,58.350553799999986,kg -68016e55-e25e-31d9-9d54-1f9a8d818fca,SESCO,II.1.1,Entre Rios,AR-E,annual,2014,naphtha combustion consumption by to the public,19.450184599999996,TJ,N2O,0.6,kg/TJ,11.670110759999998,kg -d336667d-1de4-39f0-b1f1-f36d00c57267,SESCO,II.1.1,Misiones,AR-N,annual,2014,naphtha combustion consumption by to the public,0.9457139999999999,TJ,CO2,73300.0,kg/TJ,69320.83619999999,kg -0d6f78dd-9edf-3b65-b40f-61e7ea177bef,SESCO,II.1.1,Misiones,AR-N,annual,2014,naphtha combustion consumption by to the public,0.9457139999999999,TJ,CH4,3.0,kg/TJ,2.837142,kg -f92cdb6d-fbca-3730-b847-73c50e9d7496,SESCO,II.1.1,Misiones,AR-N,annual,2014,naphtha combustion consumption by to the public,0.9457139999999999,TJ,N2O,0.6,kg/TJ,0.5674283999999999,kg -ea113bdb-28e5-323d-8b52-637d5144fa9f,SESCO,II.1.1,Buenos Aires,AR-B,annual,2014,naphtha combustion consumption by to the public,13461.2300284,TJ,CO2,73300.0,kg/TJ,986708161.08172,kg -518b8c80-4d73-3efa-8cf0-e2403a1ee9c9,SESCO,II.1.1,Buenos Aires,AR-B,annual,2014,naphtha combustion consumption by to the public,13461.2300284,TJ,CH4,3.0,kg/TJ,40383.690085199996,kg -61ba27e9-618b-3973-a47b-6958d71b3810,SESCO,II.1.1,Buenos Aires,AR-B,annual,2014,naphtha combustion consumption by to the public,13461.2300284,TJ,N2O,0.6,kg/TJ,8076.738017039999,kg -1cbd3471-ce04-3aff-adf6-6da4192fde83,SESCO,II.1.1,Capital Federal,AR-C,annual,2014,naphtha combustion consumption by to the public,4222.234724399999,TJ,CO2,73300.0,kg/TJ,309489805.29851997,kg -c3b406c2-3c9f-3ff8-bbe0-6cd027f8a9a7,SESCO,II.1.1,Capital Federal,AR-C,annual,2014,naphtha combustion consumption by to the public,4222.234724399999,TJ,CH4,3.0,kg/TJ,12666.704173199998,kg -7d882115-fbed-3c6f-8dec-1666131b4e23,SESCO,II.1.1,Capital Federal,AR-C,annual,2014,naphtha combustion consumption by to the public,4222.234724399999,TJ,N2O,0.6,kg/TJ,2533.3408346399997,kg -47e95c83-bf43-3d2e-84ac-b3b9816e4e52,SESCO,II.1.1,Catamarca,AR-K,annual,2014,naphtha combustion consumption by to the public,54.3155074,TJ,CO2,73300.0,kg/TJ,3981326.69242,kg -87335392-7aeb-322b-9db5-89b7fb2a267a,SESCO,II.1.1,Catamarca,AR-K,annual,2014,naphtha combustion consumption by to the public,54.3155074,TJ,CH4,3.0,kg/TJ,162.9465222,kg -0175a912-6af0-350b-9e4d-480132148dfc,SESCO,II.1.1,Catamarca,AR-K,annual,2014,naphtha combustion consumption by to the public,54.3155074,TJ,N2O,0.6,kg/TJ,32.58930444,kg -e3243a03-fa1f-3795-879b-4147d62ca90f,SESCO,II.1.1,Chaco,AR-H,annual,2014,naphtha combustion consumption by to the public,819.2405143999999,TJ,CO2,73300.0,kg/TJ,60050329.70552,kg -6cc600dd-df83-3c29-9f47-8eb62faf76aa,SESCO,II.1.1,Chaco,AR-H,annual,2014,naphtha combustion consumption by to the public,819.2405143999999,TJ,CH4,3.0,kg/TJ,2457.7215432,kg -07990841-72f0-3d1e-b189-5ee0107ca885,SESCO,II.1.1,Chaco,AR-H,annual,2014,naphtha combustion consumption by to the public,819.2405143999999,TJ,N2O,0.6,kg/TJ,491.54430863999994,kg -25cfa453-ce19-3fc1-938f-f5843a341b85,SESCO,II.1.1,Corrientes,AR-W,annual,2014,naphtha combustion consumption by to the public,811.5487072,TJ,CO2,73300.0,kg/TJ,59486520.23776,kg -52520d45-ea86-3967-9d11-fec00c437486,SESCO,II.1.1,Corrientes,AR-W,annual,2014,naphtha combustion consumption by to the public,811.5487072,TJ,CH4,3.0,kg/TJ,2434.6461216,kg -2f3311aa-da88-3ef8-8516-ce3120d35326,SESCO,II.1.1,Corrientes,AR-W,annual,2014,naphtha combustion consumption by to the public,811.5487072,TJ,N2O,0.6,kg/TJ,486.92922431999995,kg -3cb275fb-3413-3f96-b853-3030dd0e7789,SESCO,II.1.1,Córdoba,AR-X,annual,2014,naphtha combustion consumption by to the public,2717.2569886,TJ,CO2,73300.0,kg/TJ,199174937.26438,kg -66006169-c2b4-316d-830b-b6d5fe2c34f2,SESCO,II.1.1,Córdoba,AR-X,annual,2014,naphtha combustion consumption by to the public,2717.2569886,TJ,CH4,3.0,kg/TJ,8151.7709658,kg -420d76c4-8897-37d9-9c1c-a8947fbca926,SESCO,II.1.1,Córdoba,AR-X,annual,2014,naphtha combustion consumption by to the public,2717.2569886,TJ,N2O,0.6,kg/TJ,1630.35419316,kg -11df9a25-d5eb-3456-a553-9a727ea593f4,SESCO,II.1.1,Entre Rios,AR-E,annual,2014,naphtha combustion consumption by to the public,830.2423206,TJ,CO2,73300.0,kg/TJ,60856762.09998,kg -50f24220-7b8c-3448-bb04-f6b8f3c28a64,SESCO,II.1.1,Entre Rios,AR-E,annual,2014,naphtha combustion consumption by to the public,830.2423206,TJ,CH4,3.0,kg/TJ,2490.7269618,kg -416e7ed8-330c-3460-88cb-190a1b25e452,SESCO,II.1.1,Entre Rios,AR-E,annual,2014,naphtha combustion consumption by to the public,830.2423206,TJ,N2O,0.6,kg/TJ,498.14539235999996,kg -af37575c-4442-3532-9af1-5720b15f388b,SESCO,II.1.1,Formosa,AR-P,annual,2014,naphtha combustion consumption by to the public,429.73244159999996,TJ,CO2,73300.0,kg/TJ,31499387.969279997,kg -b484ffab-bc5b-30e2-b580-c48bbfa9ec7e,SESCO,II.1.1,Formosa,AR-P,annual,2014,naphtha combustion consumption by to the public,429.73244159999996,TJ,CH4,3.0,kg/TJ,1289.1973248,kg -1123c424-4fdd-3429-8d27-735e117f38ac,SESCO,II.1.1,Formosa,AR-P,annual,2014,naphtha combustion consumption by to the public,429.73244159999996,TJ,N2O,0.6,kg/TJ,257.83946496,kg -9bab8ed9-1f18-376e-b4ee-a08afb02247e,SESCO,II.1.1,Jujuy,AR-Y,annual,2014,naphtha combustion consumption by to the public,199.86089199999998,TJ,CO2,73300.0,kg/TJ,14649803.383599998,kg -72000623-e98b-34c5-8c91-2004b903d06e,SESCO,II.1.1,Jujuy,AR-Y,annual,2014,naphtha combustion consumption by to the public,199.86089199999998,TJ,CH4,3.0,kg/TJ,599.582676,kg -9534407c-1e8c-320e-b181-85ac5fda92d8,SESCO,II.1.1,Jujuy,AR-Y,annual,2014,naphtha combustion consumption by to the public,199.86089199999998,TJ,N2O,0.6,kg/TJ,119.91653519999998,kg -00fbe968-6002-36f7-b30d-05e79509d519,SESCO,II.1.1,La Pampa,AR-L,annual,2014,naphtha combustion consumption by to the public,261.17468299999996,TJ,CO2,73300.0,kg/TJ,19144104.263899997,kg -4faa52a3-3344-32f0-b3ca-23d4413d6ca9,SESCO,II.1.1,La Pampa,AR-L,annual,2014,naphtha combustion consumption by to the public,261.17468299999996,TJ,CH4,3.0,kg/TJ,783.5240489999999,kg -3e34d566-13e8-38d6-8e90-a5bced4be969,SESCO,II.1.1,La Pampa,AR-L,annual,2014,naphtha combustion consumption by to the public,261.17468299999996,TJ,N2O,0.6,kg/TJ,156.70480979999996,kg -c5a64695-6ebd-3d6a-b968-8a243cb9d0fb,SESCO,II.1.1,La Rioja,AR-F,annual,2014,naphtha combustion consumption by to the public,246.61068739999996,TJ,CO2,73300.0,kg/TJ,18076563.386419997,kg -9ec8c8da-9cd4-3040-9646-a0ea9348675d,SESCO,II.1.1,La Rioja,AR-F,annual,2014,naphtha combustion consumption by to the public,246.61068739999996,TJ,CH4,3.0,kg/TJ,739.8320621999999,kg -036019a9-1e69-3700-bc5a-be16ef87e17c,SESCO,II.1.1,La Rioja,AR-F,annual,2014,naphtha combustion consumption by to the public,246.61068739999996,TJ,N2O,0.6,kg/TJ,147.96641243999997,kg -737c189e-9f7e-3f56-9cfa-885aa5d71cb2,SESCO,II.1.1,Mendoza,AR-M,annual,2014,naphtha combustion consumption by to the public,571.1797321999999,TJ,CO2,73300.0,kg/TJ,41867474.37025999,kg -e17a3234-19ec-3cc6-a8b0-c85ae8e1bdcf,SESCO,II.1.1,Mendoza,AR-M,annual,2014,naphtha combustion consumption by to the public,571.1797321999999,TJ,CH4,3.0,kg/TJ,1713.5391965999997,kg -41aa28f3-6821-3523-b514-4a77c4b2c946,SESCO,II.1.1,Mendoza,AR-M,annual,2014,naphtha combustion consumption by to the public,571.1797321999999,TJ,N2O,0.6,kg/TJ,342.7078393199999,kg -a3cd76ec-2609-3f01-be9a-31d325fd5b56,SESCO,II.1.1,Misiones,AR-N,annual,2014,naphtha combustion consumption by to the public,1218.3948699999999,TJ,CO2,73300.0,kg/TJ,89308343.97099999,kg -dc52b752-cc2f-3f87-b0d6-8d72ea551478,SESCO,II.1.1,Misiones,AR-N,annual,2014,naphtha combustion consumption by to the public,1218.3948699999999,TJ,CH4,3.0,kg/TJ,3655.1846099999993,kg -c3f4c1ca-db47-389f-bb00-25b15bb48531,SESCO,II.1.1,Misiones,AR-N,annual,2014,naphtha combustion consumption by to the public,1218.3948699999999,TJ,N2O,0.6,kg/TJ,731.0369219999999,kg -6d1df37b-7ba6-3774-9f2d-78e188cfd09f,SESCO,II.1.1,Neuquén,AR-Q,annual,2014,naphtha combustion consumption by to the public,407.3820674,TJ,CO2,73300.0,kg/TJ,29861105.54042,kg -ac32b538-0d14-36d5-8ef4-6c85f158da46,SESCO,II.1.1,Neuquén,AR-Q,annual,2014,naphtha combustion consumption by to the public,407.3820674,TJ,CH4,3.0,kg/TJ,1222.1462022,kg -245d54c5-bb15-316b-b989-a8596cfcde53,SESCO,II.1.1,Neuquén,AR-Q,annual,2014,naphtha combustion consumption by to the public,407.3820674,TJ,N2O,0.6,kg/TJ,244.42924043999997,kg -96bf838f-82a0-3f21-be77-91fa9df3ce0d,SESCO,II.1.1,Rio Negro,AR-R,annual,2014,naphtha combustion consumption by to the public,127.86053279999999,TJ,CO2,73300.0,kg/TJ,9372177.05424,kg -b32e2a1b-e7db-3599-9262-9217f541ddb5,SESCO,II.1.1,Rio Negro,AR-R,annual,2014,naphtha combustion consumption by to the public,127.86053279999999,TJ,CH4,3.0,kg/TJ,383.58159839999996,kg -5295772e-15a5-3ae9-94a0-4bae404a5fc3,SESCO,II.1.1,Rio Negro,AR-R,annual,2014,naphtha combustion consumption by to the public,127.86053279999999,TJ,N2O,0.6,kg/TJ,76.71631967999998,kg -b737b2da-86e2-379e-9784-12d963829e05,SESCO,II.1.1,Salta,AR-A,annual,2014,naphtha combustion consumption by to the public,255.31125619999997,TJ,CO2,73300.0,kg/TJ,18714315.07946,kg -32d8032b-c9ed-3c5b-bba3-4e7b8470362a,SESCO,II.1.1,Salta,AR-A,annual,2014,naphtha combustion consumption by to the public,255.31125619999997,TJ,CH4,3.0,kg/TJ,765.9337685999999,kg -fd1f794e-b9d0-31a1-a362-438ebb31dc74,SESCO,II.1.1,Salta,AR-A,annual,2014,naphtha combustion consumption by to the public,255.31125619999997,TJ,N2O,0.6,kg/TJ,153.18675371999998,kg -6e9b310f-cf01-35d2-8504-ffae667352eb,SESCO,II.1.1,San Juan,AR-J,annual,2014,naphtha combustion consumption by to the public,175.902804,TJ,CO2,73300.0,kg/TJ,12893675.5332,kg -385653dd-951d-3494-8ffa-ff64c2f3b4d6,SESCO,II.1.1,San Juan,AR-J,annual,2014,naphtha combustion consumption by to the public,175.902804,TJ,CH4,3.0,kg/TJ,527.708412,kg -91e09f21-df8c-3c09-a222-06f86d8d0f22,SESCO,II.1.1,San Juan,AR-J,annual,2014,naphtha combustion consumption by to the public,175.902804,TJ,N2O,0.6,kg/TJ,105.5416824,kg -bd39509d-bcdc-3d45-90b0-facad4c57d0b,SESCO,II.1.1,San Luis,AR-D,annual,2014,naphtha combustion consumption by to the public,18.8197086,TJ,CO2,73300.0,kg/TJ,1379484.64038,kg -8c261410-4d2e-3557-a474-bff44ff7b364,SESCO,II.1.1,San Luis,AR-D,annual,2014,naphtha combustion consumption by to the public,18.8197086,TJ,CH4,3.0,kg/TJ,56.459125799999995,kg -1d45a6d0-2da5-3822-abc9-70bc7e119c16,SESCO,II.1.1,San Luis,AR-D,annual,2014,naphtha combustion consumption by to the public,18.8197086,TJ,N2O,0.6,kg/TJ,11.291825159999998,kg -cc9c166b-1bb7-38d9-b800-30acdac0203d,SESCO,II.1.1,Santa Fe,AR-S,annual,2014,naphtha combustion consumption by to the public,3131.5427682,TJ,CO2,73300.0,kg/TJ,229542084.90906,kg -69162504-665a-3a5d-90b1-8c1fd61a4cb0,SESCO,II.1.1,Santa Fe,AR-S,annual,2014,naphtha combustion consumption by to the public,3131.5427682,TJ,CH4,3.0,kg/TJ,9394.628304599999,kg -ef063158-5299-31ed-8b1d-e2d4c1b60c86,SESCO,II.1.1,Santa Fe,AR-S,annual,2014,naphtha combustion consumption by to the public,3131.5427682,TJ,N2O,0.6,kg/TJ,1878.92566092,kg -ed7aa4df-f78f-3657-a323-61eed68a8ae1,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2014,naphtha combustion consumption by to the public,331.78799499999997,TJ,CO2,73300.0,kg/TJ,24320060.033499997,kg -28f7bb22-2be3-3475-a4c1-179f62cd207f,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2014,naphtha combustion consumption by to the public,331.78799499999997,TJ,CH4,3.0,kg/TJ,995.363985,kg -74a189f4-0cac-33ee-b78c-d66e11a4073d,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2014,naphtha combustion consumption by to the public,331.78799499999997,TJ,N2O,0.6,kg/TJ,199.07279699999998,kg -26b93ae0-94fb-3252-8b5f-d3443a4ef620,SESCO,II.1.1,Tucuman,AR-T,annual,2014,naphtha combustion consumption by to the public,817.0653722,TJ,CO2,73300.0,kg/TJ,59890891.78225999,kg -5299bfcd-b1e4-3b28-b855-0df2672ee492,SESCO,II.1.1,Tucuman,AR-T,annual,2014,naphtha combustion consumption by to the public,817.0653722,TJ,CH4,3.0,kg/TJ,2451.1961166,kg -b91d657f-4006-3230-b0ba-48385acf5b47,SESCO,II.1.1,Tucuman,AR-T,annual,2014,naphtha combustion consumption by to the public,817.0653722,TJ,N2O,0.6,kg/TJ,490.23922331999995,kg -acc4470f-c689-31ff-9d9f-e12b40b379f2,SESCO,II.1.1,Buenos Aires,AR-B,annual,2014,naphtha combustion consumption by to the public,5806.589388599999,TJ,CO2,73300.0,kg/TJ,425623002.18437994,kg -c2078ade-bbaf-3847-8986-992438fe68a4,SESCO,II.1.1,Buenos Aires,AR-B,annual,2014,naphtha combustion consumption by to the public,5806.589388599999,TJ,CH4,3.0,kg/TJ,17419.7681658,kg -c7cb534d-efa5-3345-8654-217bcd5b04da,SESCO,II.1.1,Buenos Aires,AR-B,annual,2014,naphtha combustion consumption by to the public,5806.589388599999,TJ,N2O,0.6,kg/TJ,3483.9536331599998,kg -ae329a0b-4ab7-3908-887a-77026be66c82,SESCO,II.1.1,Capital Federal,AR-C,annual,2014,naphtha combustion consumption by to the public,2558.5031317999997,TJ,CO2,73300.0,kg/TJ,187538279.56093997,kg -0c723755-dbe6-3db7-b2a3-a397711582fb,SESCO,II.1.1,Capital Federal,AR-C,annual,2014,naphtha combustion consumption by to the public,2558.5031317999997,TJ,CH4,3.0,kg/TJ,7675.5093953999985,kg -5761417d-ae1a-3846-902c-2ba8f4d986b5,SESCO,II.1.1,Capital Federal,AR-C,annual,2014,naphtha combustion consumption by to the public,2558.5031317999997,TJ,N2O,0.6,kg/TJ,1535.1018790799997,kg -da5217cd-722a-3da5-8ce1-ecf11bc4ff94,SESCO,II.1.1,Catamarca,AR-K,annual,2014,naphtha combustion consumption by to the public,31.775990399999998,TJ,CO2,73300.0,kg/TJ,2329180.09632,kg -c154d689-f1bf-384c-98cd-7712e8f607e9,SESCO,II.1.1,Catamarca,AR-K,annual,2014,naphtha combustion consumption by to the public,31.775990399999998,TJ,CH4,3.0,kg/TJ,95.3279712,kg -35e325d7-7e1a-3e46-afaa-2eb7259ed84a,SESCO,II.1.1,Catamarca,AR-K,annual,2014,naphtha combustion consumption by to the public,31.775990399999998,TJ,N2O,0.6,kg/TJ,19.06559424,kg -e592ebe3-5d63-396f-9eea-cd29bc92780c,SESCO,II.1.1,Chaco,AR-H,annual,2014,naphtha combustion consumption by to the public,226.75069339999996,TJ,CO2,73300.0,kg/TJ,16620825.826219996,kg -e2f74af2-548b-31be-bea9-9a6aa1180e02,SESCO,II.1.1,Chaco,AR-H,annual,2014,naphtha combustion consumption by to the public,226.75069339999996,TJ,CH4,3.0,kg/TJ,680.2520801999999,kg -7e64a8be-0ccc-334d-ad79-5161079e7bc5,SESCO,II.1.1,Chaco,AR-H,annual,2014,naphtha combustion consumption by to the public,226.75069339999996,TJ,N2O,0.6,kg/TJ,136.05041603999996,kg -33354bfe-0249-3846-be01-cc2cb71798b9,SESCO,II.1.1,Corrientes,AR-W,annual,2014,naphtha combustion consumption by to the public,275.2658216,TJ,CO2,73300.0,kg/TJ,20176984.723279998,kg -86e49055-4946-34b4-b302-d446dfc1d8ff,SESCO,II.1.1,Corrientes,AR-W,annual,2014,naphtha combustion consumption by to the public,275.2658216,TJ,CH4,3.0,kg/TJ,825.7974648,kg -a6b34459-2050-38f5-a4d3-e05c3f457d24,SESCO,II.1.1,Corrientes,AR-W,annual,2014,naphtha combustion consumption by to the public,275.2658216,TJ,N2O,0.6,kg/TJ,165.15949296,kg -e52f1120-2a22-3d01-89c3-678440be4db0,SESCO,II.1.1,Córdoba,AR-X,annual,2014,naphtha combustion consumption by to the public,976.3551335999998,TJ,CO2,73300.0,kg/TJ,71566831.29287998,kg -48771cbd-0a64-34a9-9c42-7e2e4b8342ba,SESCO,II.1.1,Córdoba,AR-X,annual,2014,naphtha combustion consumption by to the public,976.3551335999998,TJ,CH4,3.0,kg/TJ,2929.065400799999,kg -0410e8ec-ae41-317b-b1d0-c2428ce76f5f,SESCO,II.1.1,Córdoba,AR-X,annual,2014,naphtha combustion consumption by to the public,976.3551335999998,TJ,N2O,0.6,kg/TJ,585.8130801599999,kg -799dfb3c-412a-39be-ac09-dacec5427be1,SESCO,II.1.1,Entre Rios,AR-E,annual,2014,naphtha combustion consumption by to the public,326.83875839999996,TJ,CO2,73300.0,kg/TJ,23957280.990719996,kg -63003459-7823-3b40-81ea-934dd43a950e,SESCO,II.1.1,Entre Rios,AR-E,annual,2014,naphtha combustion consumption by to the public,326.83875839999996,TJ,CH4,3.0,kg/TJ,980.5162751999999,kg -10862009-4e5e-31e2-aaf3-a1bf389d5223,SESCO,II.1.1,Entre Rios,AR-E,annual,2014,naphtha combustion consumption by to the public,326.83875839999996,TJ,N2O,0.6,kg/TJ,196.10325503999996,kg -86f80673-4cc6-342a-a0e3-0da73184fd93,SESCO,II.1.1,Formosa,AR-P,annual,2014,naphtha combustion consumption by to the public,140.21786239999997,TJ,CO2,73300.0,kg/TJ,10277969.313919999,kg -0ad645c0-f370-3fe3-8f36-e600485db746,SESCO,II.1.1,Formosa,AR-P,annual,2014,naphtha combustion consumption by to the public,140.21786239999997,TJ,CH4,3.0,kg/TJ,420.65358719999995,kg -be44908b-5279-355f-a490-df7a46152b92,SESCO,II.1.1,Formosa,AR-P,annual,2014,naphtha combustion consumption by to the public,140.21786239999997,TJ,N2O,0.6,kg/TJ,84.13071743999998,kg -0d1867f4-e296-3212-b464-f40d238823c5,SESCO,II.1.1,Jujuy,AR-Y,annual,2014,naphtha combustion consumption by to the public,33.667418399999995,TJ,CO2,73300.0,kg/TJ,2467821.7687199996,kg -3ae4093a-4495-37cb-8a7f-479fd7580ec5,SESCO,II.1.1,Jujuy,AR-Y,annual,2014,naphtha combustion consumption by to the public,33.667418399999995,TJ,CH4,3.0,kg/TJ,101.00225519999998,kg -491084e3-8ecc-3420-aefc-7a0c371b6719,SESCO,II.1.1,Jujuy,AR-Y,annual,2014,naphtha combustion consumption by to the public,33.667418399999995,TJ,N2O,0.6,kg/TJ,20.200451039999997,kg -1e6b3ad3-9a6b-3eb3-afea-dace4a94b5c9,SESCO,II.1.1,La Pampa,AR-L,annual,2014,naphtha combustion consumption by to the public,103.6502544,TJ,CO2,73300.0,kg/TJ,7597563.647519999,kg -8bd759e2-c0d7-3246-9546-08d0f759b1c1,SESCO,II.1.1,La Pampa,AR-L,annual,2014,naphtha combustion consumption by to the public,103.6502544,TJ,CH4,3.0,kg/TJ,310.9507632,kg -be75304b-277d-3a42-94e8-dd39ef48f242,SESCO,II.1.1,La Pampa,AR-L,annual,2014,naphtha combustion consumption by to the public,103.6502544,TJ,N2O,0.6,kg/TJ,62.190152639999994,kg -f3a1343d-fe14-380d-b29f-4a81a991cc90,SESCO,II.1.1,La Rioja,AR-F,annual,2014,naphtha combustion consumption by to the public,65.569504,TJ,CO2,73300.0,kg/TJ,4806244.6432,kg -5bb255ab-b139-3025-93cd-4dc88ae9c5e1,SESCO,II.1.1,La Rioja,AR-F,annual,2014,naphtha combustion consumption by to the public,65.569504,TJ,CH4,3.0,kg/TJ,196.70851199999998,kg -b59d5d7d-1810-3bef-a6f5-f74438ff4668,SESCO,II.1.1,La Rioja,AR-F,annual,2014,naphtha combustion consumption by to the public,65.569504,TJ,N2O,0.6,kg/TJ,39.341702399999996,kg -9c601230-c69d-3044-a935-2fd8dd4ba356,SESCO,II.1.1,Mendoza,AR-M,annual,2014,naphtha combustion consumption by to the public,253.98725659999997,TJ,CO2,73300.0,kg/TJ,18617265.908779997,kg -7eb52b2a-3a7d-316c-92fd-65835455430b,SESCO,II.1.1,Mendoza,AR-M,annual,2014,naphtha combustion consumption by to the public,253.98725659999997,TJ,CH4,3.0,kg/TJ,761.9617698,kg -8fe602c9-3ced-35d3-877a-266f9a1dd3bb,SESCO,II.1.1,Mendoza,AR-M,annual,2014,naphtha combustion consumption by to the public,253.98725659999997,TJ,N2O,0.6,kg/TJ,152.39235395999998,kg -a00a4b8a-52bf-3775-b457-f16d8d39193e,SESCO,II.1.1,Misiones,AR-N,annual,2014,naphtha combustion consumption by to the public,231.85754899999998,TJ,CO2,73300.0,kg/TJ,16995158.3417,kg -9e49a60d-6b56-3bd9-ad39-761321eaca83,SESCO,II.1.1,Misiones,AR-N,annual,2014,naphtha combustion consumption by to the public,231.85754899999998,TJ,CH4,3.0,kg/TJ,695.572647,kg -5d00bbc2-9f0a-3caa-a1f9-645e39c5dd59,SESCO,II.1.1,Misiones,AR-N,annual,2014,naphtha combustion consumption by to the public,231.85754899999998,TJ,N2O,0.6,kg/TJ,139.11452939999998,kg -bf19167c-9323-399f-9fb6-3c0dcdd31768,SESCO,II.1.1,Neuquén,AR-Q,annual,2014,naphtha combustion consumption by to the public,164.8064264,TJ,CO2,73300.0,kg/TJ,12080311.055119999,kg -be6011e9-68fa-3479-ad8a-bacf0900c9b6,SESCO,II.1.1,Neuquén,AR-Q,annual,2014,naphtha combustion consumption by to the public,164.8064264,TJ,CH4,3.0,kg/TJ,494.4192792,kg -4e00ea00-fa8e-3e80-83f1-4931c3b5ba02,SESCO,II.1.1,Neuquén,AR-Q,annual,2014,naphtha combustion consumption by to the public,164.8064264,TJ,N2O,0.6,kg/TJ,98.88385584,kg -a27922ca-270c-3f73-9935-2dd1fb348767,SESCO,II.1.1,Rio Negro,AR-R,annual,2014,naphtha combustion consumption by to the public,53.212174399999995,TJ,CO2,73300.0,kg/TJ,3900452.3835199997,kg -49bc2d1b-fcad-3897-8f2b-809515121f2c,SESCO,II.1.1,Rio Negro,AR-R,annual,2014,naphtha combustion consumption by to the public,53.212174399999995,TJ,CH4,3.0,kg/TJ,159.6365232,kg -a731c4cc-2783-3c8d-be26-b01e2aaf88b4,SESCO,II.1.1,Rio Negro,AR-R,annual,2014,naphtha combustion consumption by to the public,53.212174399999995,TJ,N2O,0.6,kg/TJ,31.927304639999996,kg -368722e9-a5ef-3961-b254-4f359e0ea513,SESCO,II.1.1,Salta,AR-A,annual,2014,naphtha combustion consumption by to the public,70.26655019999998,TJ,CO2,73300.0,kg/TJ,5150538.129659999,kg -a8f52094-8984-3512-9829-c60ff7b5beb2,SESCO,II.1.1,Salta,AR-A,annual,2014,naphtha combustion consumption by to the public,70.26655019999998,TJ,CH4,3.0,kg/TJ,210.79965059999995,kg -e6dd5052-c237-3eeb-a065-df4fcb05e201,SESCO,II.1.1,Salta,AR-A,annual,2014,naphtha combustion consumption by to the public,70.26655019999998,TJ,N2O,0.6,kg/TJ,42.15993011999999,kg -b2166d72-7385-361e-9b77-20cbb7468cba,SESCO,II.1.1,San Juan,AR-J,annual,2014,naphtha combustion consumption by to the public,28.655134199999996,TJ,CO2,73300.0,kg/TJ,2100421.3368599997,kg -a04a8fbd-996f-3211-a19d-c27c50999f99,SESCO,II.1.1,San Juan,AR-J,annual,2014,naphtha combustion consumption by to the public,28.655134199999996,TJ,CH4,3.0,kg/TJ,85.96540259999999,kg -03d33ea5-dbfb-319e-aabf-afc7987ffd35,SESCO,II.1.1,San Juan,AR-J,annual,2014,naphtha combustion consumption by to the public,28.655134199999996,TJ,N2O,0.6,kg/TJ,17.193080519999995,kg -79abbd91-5e74-3b53-a81a-81356d6bc98b,SESCO,II.1.1,San Luis,AR-D,annual,2014,naphtha combustion consumption by to the public,23.64285,TJ,CO2,73300.0,kg/TJ,1733020.905,kg -ffdcacf5-a968-33b4-8334-c5ac5766c308,SESCO,II.1.1,San Luis,AR-D,annual,2014,naphtha combustion consumption by to the public,23.64285,TJ,CH4,3.0,kg/TJ,70.92855,kg -e163914e-6aa0-3271-9ac1-67510db54403,SESCO,II.1.1,San Luis,AR-D,annual,2014,naphtha combustion consumption by to the public,23.64285,TJ,N2O,0.6,kg/TJ,14.185709999999998,kg -a5de2937-e68b-39a2-b021-80b4566e2566,SESCO,II.1.1,Santa Fe,AR-S,annual,2014,naphtha combustion consumption by to the public,1210.986777,TJ,CO2,73300.0,kg/TJ,88765330.75410001,kg -273af5ce-edb6-3322-93a5-2640f708f690,SESCO,II.1.1,Santa Fe,AR-S,annual,2014,naphtha combustion consumption by to the public,1210.986777,TJ,CH4,3.0,kg/TJ,3632.960331,kg -ab40d961-d2f7-39d5-814a-d70c5d45d4fa,SESCO,II.1.1,Santa Fe,AR-S,annual,2014,naphtha combustion consumption by to the public,1210.986777,TJ,N2O,0.6,kg/TJ,726.5920662,kg -bc3864b4-960e-32d7-82ff-680cc69eb9b8,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2014,naphtha combustion consumption by to the public,121.77643939999999,TJ,CO2,73300.0,kg/TJ,8926213.008019999,kg -3645dafe-7591-3870-8879-463645defb3d,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2014,naphtha combustion consumption by to the public,121.77643939999999,TJ,CH4,3.0,kg/TJ,365.3293182,kg -e15fcd20-5d60-31a4-8bbd-eff6f1b45103,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2014,naphtha combustion consumption by to the public,121.77643939999999,TJ,N2O,0.6,kg/TJ,73.06586363999999,kg -01403344-a053-3609-a6d6-13567b741cb2,SESCO,II.1.1,Tucuman,AR-T,annual,2014,naphtha combustion consumption by to the public,194.94317919999997,TJ,CO2,73300.0,kg/TJ,14289335.035359997,kg -6a26bbcf-3fd6-33d0-9259-aa18194f3032,SESCO,II.1.1,Tucuman,AR-T,annual,2014,naphtha combustion consumption by to the public,194.94317919999997,TJ,CH4,3.0,kg/TJ,584.8295375999999,kg -2009b075-ec67-3623-914c-f3826fd6ddf4,SESCO,II.1.1,Tucuman,AR-T,annual,2014,naphtha combustion consumption by to the public,194.94317919999997,TJ,N2O,0.6,kg/TJ,116.96590751999997,kg -f45e59af-2b64-3a01-a67a-4e55ab9466f0,SESCO,II.5.1,Buenos Aires,AR-B,annual,2014,naphtha combustion consumption by agriculture machines,3.7198084,TJ,CO2,73300.0,kg/TJ,272661.95571999997,kg -8f997a9c-84d6-33be-a522-fc38f99e45f7,SESCO,II.5.1,Buenos Aires,AR-B,annual,2014,naphtha combustion consumption by agriculture machines,3.7198084,TJ,CH4,3.0,kg/TJ,11.1594252,kg -1c4609dc-4ee8-3b7c-9ded-b0871bb8179f,SESCO,II.5.1,Buenos Aires,AR-B,annual,2014,naphtha combustion consumption by agriculture machines,3.7198084,TJ,N2O,0.6,kg/TJ,2.23188504,kg -0edafafe-8702-360e-a147-5e3fa3473e02,SESCO,II.5.1,Chubut,AR-U,annual,2014,naphtha combustion consumption by agriculture machines,0.47285699999999997,TJ,CO2,73300.0,kg/TJ,34660.418099999995,kg -24fa30a7-9e89-37dd-9df7-f479f6c9e24e,SESCO,II.5.1,Chubut,AR-U,annual,2014,naphtha combustion consumption by agriculture machines,0.47285699999999997,TJ,CH4,3.0,kg/TJ,1.418571,kg -d27df038-7b0b-3d8e-8234-c8e35d7b30aa,SESCO,II.5.1,Chubut,AR-U,annual,2014,naphtha combustion consumption by agriculture machines,0.47285699999999997,TJ,N2O,0.6,kg/TJ,0.28371419999999997,kg -701925ba-a3af-3fed-90b0-ac037a0c44ce,SESCO,II.5.1,Entre Rios,AR-E,annual,2014,naphtha combustion consumption by agriculture machines,1.4185709999999998,TJ,CO2,73300.0,kg/TJ,103981.25429999999,kg -11a12412-cafc-3897-860e-02fe7c7f9b67,SESCO,II.5.1,Entre Rios,AR-E,annual,2014,naphtha combustion consumption by agriculture machines,1.4185709999999998,TJ,CH4,3.0,kg/TJ,4.255712999999999,kg -6c712e88-f902-3023-b0fb-3226b48297fd,SESCO,II.5.1,Entre Rios,AR-E,annual,2014,naphtha combustion consumption by agriculture machines,1.4185709999999998,TJ,N2O,0.6,kg/TJ,0.8511425999999999,kg -900646d3-2e0c-378a-bdc6-8ce272705a39,SESCO,II.5.1,Salta,AR-A,annual,2014,naphtha combustion consumption by agriculture machines,0.15761899999999998,TJ,CO2,73300.0,kg/TJ,11553.472699999998,kg -769eb2a4-09cf-3724-894f-9157ec7db8d4,SESCO,II.5.1,Salta,AR-A,annual,2014,naphtha combustion consumption by agriculture machines,0.15761899999999998,TJ,CH4,3.0,kg/TJ,0.47285699999999997,kg -c502b425-f5bb-3b73-8f23-df01d1a0895b,SESCO,II.5.1,Salta,AR-A,annual,2014,naphtha combustion consumption by agriculture machines,0.15761899999999998,TJ,N2O,0.6,kg/TJ,0.09457139999999999,kg -75435dec-51d8-3240-b961-5aac813e4632,SESCO,II.5.1,Santa Fe,AR-S,annual,2014,naphtha combustion consumption by agriculture machines,28.465991399999997,TJ,CO2,73300.0,kg/TJ,2086557.1696199998,kg -f8479a7f-5a4d-30c7-8548-e7feb3be329d,SESCO,II.5.1,Santa Fe,AR-S,annual,2014,naphtha combustion consumption by agriculture machines,28.465991399999997,TJ,CH4,3.0,kg/TJ,85.3979742,kg -71c4b59c-cb35-3f51-8937-88ddff2e3b02,SESCO,II.5.1,Santa Fe,AR-S,annual,2014,naphtha combustion consumption by agriculture machines,28.465991399999997,TJ,N2O,0.6,kg/TJ,17.07959484,kg -fd9669f8-0720-3d78-9824-69839658b708,SESCO,II.5.1,Buenos Aires,AR-B,annual,2014,naphtha combustion consumption by agriculture machines,0.6304759999999999,TJ,CO2,73300.0,kg/TJ,46213.890799999994,kg -e4cd36bf-ad05-398b-a526-7d198bad39b6,SESCO,II.5.1,Buenos Aires,AR-B,annual,2014,naphtha combustion consumption by agriculture machines,0.6304759999999999,TJ,CH4,3.0,kg/TJ,1.8914279999999999,kg -9e907de6-fd4c-3ec4-82ed-44de67ff93d5,SESCO,II.5.1,Buenos Aires,AR-B,annual,2014,naphtha combustion consumption by agriculture machines,0.6304759999999999,TJ,N2O,0.6,kg/TJ,0.37828559999999994,kg -9db0e24d-34d9-330a-9c80-9e5d416f0f8d,SESCO,II.5.1,Santa Fe,AR-S,annual,2014,naphtha combustion consumption by agriculture machines,0.8826663999999999,TJ,CO2,73300.0,kg/TJ,64699.44711999999,kg -57282bec-ac6f-37f1-8e0e-2c9427e3840e,SESCO,II.5.1,Santa Fe,AR-S,annual,2014,naphtha combustion consumption by agriculture machines,0.8826663999999999,TJ,CH4,3.0,kg/TJ,2.6479991999999997,kg -85dadb93-88b3-3af5-b0ed-f53ad3e2ea97,SESCO,II.5.1,Santa Fe,AR-S,annual,2014,naphtha combustion consumption by agriculture machines,0.8826663999999999,TJ,N2O,0.6,kg/TJ,0.5295998399999999,kg -a9769e22-867a-37d5-8d4f-10182b7bc1d0,SESCO,II.1.1,Buenos Aires,AR-B,annual,2014,naphtha combustion consumption by to the public,39291.579558,TJ,CO2,73300.0,kg/TJ,2880072781.6014,kg -c18d9897-84e4-356b-871e-36578a864a2a,SESCO,II.1.1,Buenos Aires,AR-B,annual,2014,naphtha combustion consumption by to the public,39291.579558,TJ,CH4,3.0,kg/TJ,117874.738674,kg -6377035d-f458-37d5-a3d1-9d8ab9b96327,SESCO,II.1.1,Buenos Aires,AR-B,annual,2014,naphtha combustion consumption by to the public,39291.579558,TJ,N2O,0.6,kg/TJ,23574.947734799996,kg -a6a60353-e08d-362e-895b-77d26fc67d49,SESCO,II.1.1,Capital Federal,AR-C,annual,2014,naphtha combustion consumption by to the public,8394.661844799999,TJ,CO2,73300.0,kg/TJ,615328713.2238399,kg -678dfdfd-5891-3079-9944-468f0a14a9fd,SESCO,II.1.1,Capital Federal,AR-C,annual,2014,naphtha combustion consumption by to the public,8394.661844799999,TJ,CH4,3.0,kg/TJ,25183.985534399995,kg -e3acc418-a0ca-344e-8c8c-90157c42458f,SESCO,II.1.1,Capital Federal,AR-C,annual,2014,naphtha combustion consumption by to the public,8394.661844799999,TJ,N2O,0.6,kg/TJ,5036.797106879999,kg -f60147cc-af15-3e33-9fc5-f02eea2793a8,SESCO,II.1.1,Catamarca,AR-K,annual,2014,naphtha combustion consumption by to the public,675.4289387999999,TJ,CO2,73300.0,kg/TJ,49508941.21403999,kg -b78ca5dc-b3eb-3229-bf60-1f0762079a89,SESCO,II.1.1,Catamarca,AR-K,annual,2014,naphtha combustion consumption by to the public,675.4289387999999,TJ,CH4,3.0,kg/TJ,2026.2868163999997,kg -c9962ad9-3231-337a-a58d-45241fc29eed,SESCO,II.1.1,Catamarca,AR-K,annual,2014,naphtha combustion consumption by to the public,675.4289387999999,TJ,N2O,0.6,kg/TJ,405.2573632799999,kg -85ab8801-8738-32ee-b390-b18a9b09fef9,SESCO,II.1.1,Chaco,AR-H,annual,2014,naphtha combustion consumption by to the public,2227.1249462,TJ,CO2,73300.0,kg/TJ,163248258.55646,kg -b8ebb0a9-e3f9-3784-ad08-ec5076b27dfc,SESCO,II.1.1,Chaco,AR-H,annual,2014,naphtha combustion consumption by to the public,2227.1249462,TJ,CH4,3.0,kg/TJ,6681.374838600001,kg -fb2cbf4c-2468-3bb5-97db-e778aea2969e,SESCO,II.1.1,Chaco,AR-H,annual,2014,naphtha combustion consumption by to the public,2227.1249462,TJ,N2O,0.6,kg/TJ,1336.27496772,kg -c9a803d7-43e4-3511-a602-dfa6d3fa26d7,SESCO,II.1.1,Chubut,AR-U,annual,2014,naphtha combustion consumption by to the public,3742.2533455999996,TJ,CO2,73300.0,kg/TJ,274307170.23248,kg -c4c21d38-4578-3581-bbfa-88b6bfa6653d,SESCO,II.1.1,Chubut,AR-U,annual,2014,naphtha combustion consumption by to the public,3742.2533455999996,TJ,CH4,3.0,kg/TJ,11226.760036799998,kg -a83b5113-be19-3f60-85fb-1c09c75c5846,SESCO,II.1.1,Chubut,AR-U,annual,2014,naphtha combustion consumption by to the public,3742.2533455999996,TJ,N2O,0.6,kg/TJ,2245.35200736,kg -632195b2-fa35-3274-9a9c-a52d68d9501b,SESCO,II.1.1,Corrientes,AR-W,annual,2014,naphtha combustion consumption by to the public,2439.5323105999996,TJ,CO2,73300.0,kg/TJ,178817718.36698,kg -56fa4c6c-906d-3279-8a7f-308b42d3ed12,SESCO,II.1.1,Corrientes,AR-W,annual,2014,naphtha combustion consumption by to the public,2439.5323105999996,TJ,CH4,3.0,kg/TJ,7318.596931799999,kg -0b3d1907-3252-3687-9bd5-aed984f1898f,SESCO,II.1.1,Corrientes,AR-W,annual,2014,naphtha combustion consumption by to the public,2439.5323105999996,TJ,N2O,0.6,kg/TJ,1463.7193863599998,kg -a5b72416-b45f-3ea8-99f0-c2c3ac9dd6d1,SESCO,II.1.1,Córdoba,AR-X,annual,2014,naphtha combustion consumption by to the public,9728.4338228,TJ,CO2,73300.0,kg/TJ,713094199.2112399,kg -566e9dd5-9bfd-36c3-b1ec-17c8466550bb,SESCO,II.1.1,Córdoba,AR-X,annual,2014,naphtha combustion consumption by to the public,9728.4338228,TJ,CH4,3.0,kg/TJ,29185.3014684,kg -36be34e8-6188-3f4f-a9f1-72b5562ab2fa,SESCO,II.1.1,Córdoba,AR-X,annual,2014,naphtha combustion consumption by to the public,9728.4338228,TJ,N2O,0.6,kg/TJ,5837.06029368,kg -27217339-325c-3cc2-bd9a-cbe76ca244ec,SESCO,II.1.1,Entre Rios,AR-E,annual,2014,naphtha combustion consumption by to the public,3305.1758586,TJ,CO2,73300.0,kg/TJ,242269390.43538,kg -cebfe6ad-57e9-3b10-a83c-6cd642cdb31d,SESCO,II.1.1,Entre Rios,AR-E,annual,2014,naphtha combustion consumption by to the public,3305.1758586,TJ,CH4,3.0,kg/TJ,9915.5275758,kg -46dfe2a8-68e3-3efa-b2e1-bc6e647a72ff,SESCO,II.1.1,Entre Rios,AR-E,annual,2014,naphtha combustion consumption by to the public,3305.1758586,TJ,N2O,0.6,kg/TJ,1983.1055151599999,kg -07b9f307-601b-3038-852a-29897fff9140,SESCO,II.1.1,Formosa,AR-P,annual,2014,naphtha combustion consumption by to the public,855.8711699999999,TJ,CO2,73300.0,kg/TJ,62735356.76099999,kg -2b3e5ec4-df06-3ce9-acb6-bf79e5f7f332,SESCO,II.1.1,Formosa,AR-P,annual,2014,naphtha combustion consumption by to the public,855.8711699999999,TJ,CH4,3.0,kg/TJ,2567.6135099999997,kg -99799022-175f-3957-b0c5-93076a2096b2,SESCO,II.1.1,Formosa,AR-P,annual,2014,naphtha combustion consumption by to the public,855.8711699999999,TJ,N2O,0.6,kg/TJ,513.5227019999999,kg -84680326-1df1-3855-85e9-2d941941f69b,SESCO,II.1.1,Jujuy,AR-Y,annual,2014,naphtha combustion consumption by to the public,1110.5519502,TJ,CO2,73300.0,kg/TJ,81403457.94966,kg -60d0261b-aa36-392a-be63-032c2af3dcfd,SESCO,II.1.1,Jujuy,AR-Y,annual,2014,naphtha combustion consumption by to the public,1110.5519502,TJ,CH4,3.0,kg/TJ,3331.6558506,kg -06ad292d-7f9e-34e8-b9d9-d76e2137a230,SESCO,II.1.1,Jujuy,AR-Y,annual,2014,naphtha combustion consumption by to the public,1110.5519502,TJ,N2O,0.6,kg/TJ,666.3311701199999,kg -f48f31a1-2120-3acd-a826-143b978d8587,SESCO,II.1.1,La Pampa,AR-L,annual,2014,naphtha combustion consumption by to the public,1605.3495149999999,TJ,CO2,73300.0,kg/TJ,117672119.4495,kg -72de36cc-95c0-3e2d-af7b-e886ce9eb0b0,SESCO,II.1.1,La Pampa,AR-L,annual,2014,naphtha combustion consumption by to the public,1605.3495149999999,TJ,CH4,3.0,kg/TJ,4816.048545,kg -7c935830-b99e-3e6c-a560-23f1ec9dc410,SESCO,II.1.1,La Pampa,AR-L,annual,2014,naphtha combustion consumption by to the public,1605.3495149999999,TJ,N2O,0.6,kg/TJ,963.2097089999999,kg -a5c6d936-16d1-3ca6-98c2-cdf0cb0b73d0,SESCO,II.1.1,La Rioja,AR-F,annual,2014,naphtha combustion consumption by to the public,994.7019852,TJ,CO2,73300.0,kg/TJ,72911655.51516,kg -4570f245-6d59-3f9c-bba7-045e1bcf90bc,SESCO,II.1.1,La Rioja,AR-F,annual,2014,naphtha combustion consumption by to the public,994.7019852,TJ,CH4,3.0,kg/TJ,2984.1059556,kg -01619417-0a86-345f-8b7b-7cfba206f0d7,SESCO,II.1.1,La Rioja,AR-F,annual,2014,naphtha combustion consumption by to the public,994.7019852,TJ,N2O,0.6,kg/TJ,596.82119112,kg -5c651971-7b70-3b64-bfca-8d1d97621643,SESCO,II.1.1,Mendoza,AR-M,annual,2014,naphtha combustion consumption by to the public,5360.243904399999,TJ,CO2,73300.0,kg/TJ,392905878.19251996,kg -d095b9b5-4745-382d-b849-c8c26599aa3d,SESCO,II.1.1,Mendoza,AR-M,annual,2014,naphtha combustion consumption by to the public,5360.243904399999,TJ,CH4,3.0,kg/TJ,16080.731713199999,kg -9500c83a-3e4a-3500-a2e4-9c28eaa7a4d3,SESCO,II.1.1,Mendoza,AR-M,annual,2014,naphtha combustion consumption by to the public,5360.243904399999,TJ,N2O,0.6,kg/TJ,3216.1463426399996,kg -2fcafa0f-3ab4-34fb-b79d-2c0a24a9c0bf,SESCO,II.1.1,Misiones,AR-N,annual,2014,naphtha combustion consumption by to the public,3202.9126513999995,TJ,CO2,73300.0,kg/TJ,234773497.34761995,kg -2fb91f2b-afbf-3848-b9fa-0d3cedb37cac,SESCO,II.1.1,Misiones,AR-N,annual,2014,naphtha combustion consumption by to the public,3202.9126513999995,TJ,CH4,3.0,kg/TJ,9608.737954199998,kg -4cf89f65-2d31-38fe-8b5b-bba6a3e14356,SESCO,II.1.1,Misiones,AR-N,annual,2014,naphtha combustion consumption by to the public,3202.9126513999995,TJ,N2O,0.6,kg/TJ,1921.7475908399997,kg -b866e399-f49e-3526-8a35-706a9f04f6d2,SESCO,II.1.1,Neuquén,AR-Q,annual,2014,naphtha combustion consumption by to the public,3024.2042291999996,TJ,CO2,73300.0,kg/TJ,221674170.00035998,kg -fa94c410-5454-3fb2-b6ee-353e5ef3471a,SESCO,II.1.1,Neuquén,AR-Q,annual,2014,naphtha combustion consumption by to the public,3024.2042291999996,TJ,CH4,3.0,kg/TJ,9072.612687599998,kg -d7ad439f-1795-37f0-83b9-f99009fd74a1,SESCO,II.1.1,Neuquén,AR-Q,annual,2014,naphtha combustion consumption by to the public,3024.2042291999996,TJ,N2O,0.6,kg/TJ,1814.5225375199998,kg -f0e5345a-da07-37bc-a8d8-45c38b682045,SESCO,II.1.1,Rio Negro,AR-R,annual,2014,naphtha combustion consumption by to the public,3001.7908073999997,TJ,CO2,73300.0,kg/TJ,220031266.18242,kg -eefc1c98-c84e-32eb-b781-5a5940988f2e,SESCO,II.1.1,Rio Negro,AR-R,annual,2014,naphtha combustion consumption by to the public,3001.7908073999997,TJ,CH4,3.0,kg/TJ,9005.372422199998,kg -84f8b607-a2a8-3b5f-ae60-20a9dd85d888,SESCO,II.1.1,Rio Negro,AR-R,annual,2014,naphtha combustion consumption by to the public,3001.7908073999997,TJ,N2O,0.6,kg/TJ,1801.0744844399999,kg -16fd73d7-e07b-3f53-a69e-e816d7bec36b,SESCO,II.1.1,Salta,AR-A,annual,2014,naphtha combustion consumption by to the public,2567.9917955999995,TJ,CO2,73300.0,kg/TJ,188233798.61747995,kg -ce758057-f2f4-3a5f-889b-199022d4b83c,SESCO,II.1.1,Salta,AR-A,annual,2014,naphtha combustion consumption by to the public,2567.9917955999995,TJ,CH4,3.0,kg/TJ,7703.975386799999,kg -ac6da6ad-9b70-38f9-a123-e0a6c7c9c4ff,SESCO,II.1.1,Salta,AR-A,annual,2014,naphtha combustion consumption by to the public,2567.9917955999995,TJ,N2O,0.6,kg/TJ,1540.7950773599996,kg -9871dca0-d90d-366b-b4e9-e60c00d6efc1,SESCO,II.1.1,San Juan,AR-J,annual,2014,naphtha combustion consumption by to the public,1677.1607313999998,TJ,CO2,73300.0,kg/TJ,122935881.61161998,kg -3f217f87-091b-348a-a806-92f9aa8dca5a,SESCO,II.1.1,San Juan,AR-J,annual,2014,naphtha combustion consumption by to the public,1677.1607313999998,TJ,CH4,3.0,kg/TJ,5031.4821942,kg -e969723a-092f-3515-aa99-e5b3ae7046f8,SESCO,II.1.1,San Juan,AR-J,annual,2014,naphtha combustion consumption by to the public,1677.1607313999998,TJ,N2O,0.6,kg/TJ,1006.2964388399998,kg -67a3a210-bc96-3977-bdc0-e2333dbd60e7,SESCO,II.1.1,San Luis,AR-D,annual,2014,naphtha combustion consumption by to the public,1290.3006577999997,TJ,CO2,73300.0,kg/TJ,94579038.21673998,kg -773aee20-07a9-3fb3-aac7-a3b4bd3849b2,SESCO,II.1.1,San Luis,AR-D,annual,2014,naphtha combustion consumption by to the public,1290.3006577999997,TJ,CH4,3.0,kg/TJ,3870.9019733999994,kg -d45bddb4-0397-36c8-8c1e-e1547bf27ece,SESCO,II.1.1,San Luis,AR-D,annual,2014,naphtha combustion consumption by to the public,1290.3006577999997,TJ,N2O,0.6,kg/TJ,774.1803946799998,kg -4ea677c1-f4f9-3222-96f8-92a2dd0d7734,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2014,naphtha combustion consumption by to the public,2568.7798905999994,TJ,CO2,73300.0,kg/TJ,188291565.98097995,kg -081d69a6-19c7-300d-819c-996cc760ce6d,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2014,naphtha combustion consumption by to the public,2568.7798905999994,TJ,CH4,3.0,kg/TJ,7706.3396717999985,kg -f8f52858-a3f9-3df2-b607-5e13cc2e9a66,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2014,naphtha combustion consumption by to the public,2568.7798905999994,TJ,N2O,0.6,kg/TJ,1541.2679343599996,kg -e8555226-3add-3b51-bfa5-4cab1a64dfe2,SESCO,II.1.1,Santa Fe,AR-S,annual,2014,naphtha combustion consumption by to the public,7631.060837399999,TJ,CO2,73300.0,kg/TJ,559356759.3814199,kg -025c9256-8276-3f8a-ae83-b698b780ecc5,SESCO,II.1.1,Santa Fe,AR-S,annual,2014,naphtha combustion consumption by to the public,7631.060837399999,TJ,CH4,3.0,kg/TJ,22893.182512199997,kg -61a5618a-0ff7-33b3-97c1-c7f74c4ddc21,SESCO,II.1.1,Santa Fe,AR-S,annual,2014,naphtha combustion consumption by to the public,7631.060837399999,TJ,N2O,0.6,kg/TJ,4578.636502439999,kg -cf9aa653-3325-32b3-a833-35eb6da5a288,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2014,naphtha combustion consumption by to the public,1191.0952591999999,TJ,CO2,73300.0,kg/TJ,87307282.49936,kg -55598a47-fc33-3f6f-9797-a2f6c22d5be6,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2014,naphtha combustion consumption by to the public,1191.0952591999999,TJ,CH4,3.0,kg/TJ,3573.2857775999996,kg -dc62c4d7-7dc7-3c83-8e04-6187bb3676f4,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2014,naphtha combustion consumption by to the public,1191.0952591999999,TJ,N2O,0.6,kg/TJ,714.65715552,kg -78034697-eb71-333b-9cf5-6db8137bc2d6,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2014,naphtha combustion consumption by to the public,1882.0023837999997,TJ,CO2,73300.0,kg/TJ,137950774.73253998,kg -4df36401-541b-3a0b-97eb-7f277f6bdf76,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2014,naphtha combustion consumption by to the public,1882.0023837999997,TJ,CH4,3.0,kg/TJ,5646.007151399999,kg -83febc2a-d642-34ca-b0ba-a8835d96baa4,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2014,naphtha combustion consumption by to the public,1882.0023837999997,TJ,N2O,0.6,kg/TJ,1129.2014302799998,kg -ff4664f2-9d8e-31ba-9933-f38052d3ce5a,SESCO,II.1.1,Tucuman,AR-T,annual,2014,naphtha combustion consumption by to the public,2182.4557216,TJ,CO2,73300.0,kg/TJ,159974004.39328,kg -063fd55c-715e-336b-abe1-39ef83cc0b59,SESCO,II.1.1,Tucuman,AR-T,annual,2014,naphtha combustion consumption by to the public,2182.4557216,TJ,CH4,3.0,kg/TJ,6547.3671648,kg -72dc3924-8419-3eaf-95c3-549cf284e6de,SESCO,II.1.1,Tucuman,AR-T,annual,2014,naphtha combustion consumption by to the public,2182.4557216,TJ,N2O,0.6,kg/TJ,1309.4734329599999,kg -e33f0001-4b89-3508-96e5-84a4b5a819c9,SESCO,II.1.1,Buenos Aires,AR-B,annual,2014,naphtha combustion consumption by to the public,13488.624210599997,TJ,CO2,73300.0,kg/TJ,988716154.6369798,kg -d95ddcf5-6d02-3c4d-9865-298d603f3fde,SESCO,II.1.1,Buenos Aires,AR-B,annual,2014,naphtha combustion consumption by to the public,13488.624210599997,TJ,CH4,3.0,kg/TJ,40465.87263179999,kg -e195ea64-82c0-39e8-8378-5c7b7b993f90,SESCO,II.1.1,Buenos Aires,AR-B,annual,2014,naphtha combustion consumption by to the public,13488.624210599997,TJ,N2O,0.6,kg/TJ,8093.174526359998,kg -a415fdfb-f3e2-3a82-b7e8-a9ce0d559e83,SESCO,II.1.1,Capital Federal,AR-C,annual,2014,naphtha combustion consumption by to the public,3274.9445343999996,TJ,CO2,73300.0,kg/TJ,240053434.37151998,kg -741aa12d-6245-36e4-b4e6-1e5f1e33058a,SESCO,II.1.1,Capital Federal,AR-C,annual,2014,naphtha combustion consumption by to the public,3274.9445343999996,TJ,CH4,3.0,kg/TJ,9824.833603199999,kg -86b72fe1-d395-3b5b-9d5c-31fd4630f023,SESCO,II.1.1,Capital Federal,AR-C,annual,2014,naphtha combustion consumption by to the public,3274.9445343999996,TJ,N2O,0.6,kg/TJ,1964.9667206399997,kg -a1089948-2cd8-3c49-bf41-cb5e974f11e4,SESCO,II.1.1,Catamarca,AR-K,annual,2014,naphtha combustion consumption by to the public,203.2969862,TJ,CO2,73300.0,kg/TJ,14901669.08846,kg -dacf714b-63f0-3410-9d2c-3d7c6e21533f,SESCO,II.1.1,Catamarca,AR-K,annual,2014,naphtha combustion consumption by to the public,203.2969862,TJ,CH4,3.0,kg/TJ,609.8909586,kg -2765c2fd-4048-36b8-bcb4-790e713a7bcd,SESCO,II.1.1,Catamarca,AR-K,annual,2014,naphtha combustion consumption by to the public,203.2969862,TJ,N2O,0.6,kg/TJ,121.97819171999998,kg -73ad731e-8a50-3288-8718-56fb3c229e68,SESCO,II.1.1,Chaco,AR-H,annual,2014,naphtha combustion consumption by to the public,810.6029932,TJ,CO2,73300.0,kg/TJ,59417199.40156,kg -991442df-a78f-39c7-8176-13d6a53b6447,SESCO,II.1.1,Chaco,AR-H,annual,2014,naphtha combustion consumption by to the public,810.6029932,TJ,CH4,3.0,kg/TJ,2431.8089796,kg -d14a7eef-c09c-3222-ad79-e826b6a56cff,SESCO,II.1.1,Chaco,AR-H,annual,2014,naphtha combustion consumption by to the public,810.6029932,TJ,N2O,0.6,kg/TJ,486.36179591999996,kg -f4f5aab5-258d-32b3-ae20-0efc420d0b8c,SESCO,II.1.1,Chubut,AR-U,annual,2014,naphtha combustion consumption by to the public,1088.832052,TJ,CO2,73300.0,kg/TJ,79811389.4116,kg -0779c5c3-a1d3-33d7-a8cc-850ba628ca45,SESCO,II.1.1,Chubut,AR-U,annual,2014,naphtha combustion consumption by to the public,1088.832052,TJ,CH4,3.0,kg/TJ,3266.496156,kg -dd118522-32da-3d28-9b22-f185079b2b89,SESCO,II.1.1,Chubut,AR-U,annual,2014,naphtha combustion consumption by to the public,1088.832052,TJ,N2O,0.6,kg/TJ,653.2992312,kg -f255b4bb-1873-3bb6-a8ef-4462006f6f9f,SESCO,II.1.1,Corrientes,AR-W,annual,2014,naphtha combustion consumption by to the public,816.8447056,TJ,CO2,73300.0,kg/TJ,59874716.92048,kg -a3f9e3eb-4d7b-3c15-bc61-28cefa2cf25c,SESCO,II.1.1,Corrientes,AR-W,annual,2014,naphtha combustion consumption by to the public,816.8447056,TJ,CH4,3.0,kg/TJ,2450.5341168,kg -c25b2f4f-ef39-311d-bf0f-9655865d0c3b,SESCO,II.1.1,Corrientes,AR-W,annual,2014,naphtha combustion consumption by to the public,816.8447056,TJ,N2O,0.6,kg/TJ,490.10682335999996,kg -3e692498-250c-3a6c-80a3-9ee0d7c51120,SESCO,II.1.1,Córdoba,AR-X,annual,2014,naphtha combustion consumption by to the public,2798.9036305999994,TJ,CO2,73300.0,kg/TJ,205159636.12297994,kg -8044548f-c12d-39fb-aada-b79bc45a17b7,SESCO,II.1.1,Córdoba,AR-X,annual,2014,naphtha combustion consumption by to the public,2798.9036305999994,TJ,CH4,3.0,kg/TJ,8396.710891799998,kg -ffbd6757-ae0a-322e-b545-2e9609cdce3f,SESCO,II.1.1,Córdoba,AR-X,annual,2014,naphtha combustion consumption by to the public,2798.9036305999994,TJ,N2O,0.6,kg/TJ,1679.3421783599995,kg -71f6744e-b660-3a71-9074-a4f5a6c5b2a8,SESCO,II.1.1,Entre Rios,AR-E,annual,2014,naphtha combustion consumption by to the public,1168.3350756,TJ,CO2,73300.0,kg/TJ,85638961.04148,kg -46cbdb18-18f8-3508-bffe-fa3777067b1e,SESCO,II.1.1,Entre Rios,AR-E,annual,2014,naphtha combustion consumption by to the public,1168.3350756,TJ,CH4,3.0,kg/TJ,3505.0052268,kg -afa4feb8-d3e4-33ea-ab95-d300af8b033b,SESCO,II.1.1,Entre Rios,AR-E,annual,2014,naphtha combustion consumption by to the public,1168.3350756,TJ,N2O,0.6,kg/TJ,701.0010453599999,kg -09c993c2-294c-3a3c-b4d3-cb130e557aa6,SESCO,II.1.1,Formosa,AR-P,annual,2014,naphtha combustion consumption by to the public,216.85222019999998,TJ,CO2,73300.0,kg/TJ,15895267.740659999,kg -4c2c3879-f2d6-3d1d-a0ee-784951e9d5b7,SESCO,II.1.1,Formosa,AR-P,annual,2014,naphtha combustion consumption by to the public,216.85222019999998,TJ,CH4,3.0,kg/TJ,650.5566606,kg -42336b52-3ac6-3394-a7c1-07c0cd09d783,SESCO,II.1.1,Formosa,AR-P,annual,2014,naphtha combustion consumption by to the public,216.85222019999998,TJ,N2O,0.6,kg/TJ,130.11133212,kg -4dc5aa54-dfeb-3488-9bdf-3228e8f3a293,SESCO,II.1.1,Jujuy,AR-Y,annual,2014,naphtha combustion consumption by to the public,260.1974452,TJ,CO2,73300.0,kg/TJ,19072472.73316,kg -1478251c-3b1b-3300-82c0-733714288a59,SESCO,II.1.1,Jujuy,AR-Y,annual,2014,naphtha combustion consumption by to the public,260.1974452,TJ,CH4,3.0,kg/TJ,780.5923356000001,kg -9cdf0de5-e4e6-3c94-87fd-c43999b60ce7,SESCO,II.1.1,Jujuy,AR-Y,annual,2014,naphtha combustion consumption by to the public,260.1974452,TJ,N2O,0.6,kg/TJ,156.11846712,kg -7709807d-a6ac-39b1-a7b2-fbaddc738b86,SESCO,II.1.1,La Pampa,AR-L,annual,2014,naphtha combustion consumption by to the public,649.8316132,TJ,CO2,73300.0,kg/TJ,47632657.24756,kg -dcdf0607-61a4-3a93-985f-685e9cb934c5,SESCO,II.1.1,La Pampa,AR-L,annual,2014,naphtha combustion consumption by to the public,649.8316132,TJ,CH4,3.0,kg/TJ,1949.4948396,kg -e3700db5-5a0c-3709-8a35-cf0d5b4cfbf6,SESCO,II.1.1,La Pampa,AR-L,annual,2014,naphtha combustion consumption by to the public,649.8316132,TJ,N2O,0.6,kg/TJ,389.89896791999996,kg -024ef589-e3ae-3cef-8219-6272f643fe0c,SESCO,II.1.1,La Rioja,AR-F,annual,2014,naphtha combustion consumption by to the public,286.2991516,TJ,CO2,73300.0,kg/TJ,20985727.812280003,kg -35764a3c-b6c3-3516-a674-2d7d199d97dc,SESCO,II.1.1,La Rioja,AR-F,annual,2014,naphtha combustion consumption by to the public,286.2991516,TJ,CH4,3.0,kg/TJ,858.8974548000001,kg -16242aee-ae4d-33a0-9ec8-48a8dbcb3658,SESCO,II.1.1,La Rioja,AR-F,annual,2014,naphtha combustion consumption by to the public,286.2991516,TJ,N2O,0.6,kg/TJ,171.77949096,kg -1aef03be-a18d-3808-b9f5-02a5bd9524f4,SESCO,II.1.1,Mendoza,AR-M,annual,2014,naphtha combustion consumption by to the public,1941.3932229999998,TJ,CO2,73300.0,kg/TJ,142304123.24589998,kg -41484bfa-eaac-3196-8248-c98999b37eb1,SESCO,II.1.1,Mendoza,AR-M,annual,2014,naphtha combustion consumption by to the public,1941.3932229999998,TJ,CH4,3.0,kg/TJ,5824.179668999999,kg -48f3ffb2-d854-3cbc-a88c-c2eb80984a82,SESCO,II.1.1,Mendoza,AR-M,annual,2014,naphtha combustion consumption by to the public,1941.3932229999998,TJ,N2O,0.6,kg/TJ,1164.8359337999998,kg -806897af-c54b-3b43-84f1-2efa98704ba4,SESCO,II.1.1,Misiones,AR-N,annual,2014,naphtha combustion consumption by to the public,836.799271,TJ,CO2,73300.0,kg/TJ,61337386.5643,kg -c85d4e05-bb48-34b2-b136-714bc85e2084,SESCO,II.1.1,Misiones,AR-N,annual,2014,naphtha combustion consumption by to the public,836.799271,TJ,CH4,3.0,kg/TJ,2510.397813,kg -ed9a9796-7654-31f8-b084-b00741221e4c,SESCO,II.1.1,Misiones,AR-N,annual,2014,naphtha combustion consumption by to the public,836.799271,TJ,N2O,0.6,kg/TJ,502.0795626,kg -b80edaa3-d9c2-38be-b4e1-9c426af3e95b,SESCO,II.1.1,Neuquén,AR-Q,annual,2014,naphtha combustion consumption by to the public,1062.8564408,TJ,CO2,73300.0,kg/TJ,77907377.11064,kg -12ef10c6-c57d-3457-94a2-63488fde6236,SESCO,II.1.1,Neuquén,AR-Q,annual,2014,naphtha combustion consumption by to the public,1062.8564408,TJ,CH4,3.0,kg/TJ,3188.5693223999997,kg -a52b0f9c-b8c1-3216-9d77-6d17746040e7,SESCO,II.1.1,Neuquén,AR-Q,annual,2014,naphtha combustion consumption by to the public,1062.8564408,TJ,N2O,0.6,kg/TJ,637.71386448,kg -67368fa6-f1cc-33a3-ac9d-7ee0d2c60bf2,SESCO,II.1.1,Rio Negro,AR-R,annual,2014,naphtha combustion consumption by to the public,1063.9912975999998,TJ,CO2,73300.0,kg/TJ,77990562.11407998,kg -c2b79a30-6f0b-3f71-be10-13f838aca68c,SESCO,II.1.1,Rio Negro,AR-R,annual,2014,naphtha combustion consumption by to the public,1063.9912975999998,TJ,CH4,3.0,kg/TJ,3191.9738927999997,kg -d1a45f1c-2d46-3a98-8b96-2152097bc383,SESCO,II.1.1,Rio Negro,AR-R,annual,2014,naphtha combustion consumption by to the public,1063.9912975999998,TJ,N2O,0.6,kg/TJ,638.3947785599998,kg -0a861704-af77-3f34-b32c-7acdd3e9f98a,SESCO,II.1.1,Salta,AR-A,annual,2014,naphtha combustion consumption by to the public,644.5356148,TJ,CO2,73300.0,kg/TJ,47244460.56484,kg -ac69e10f-bb78-33d2-a63d-d680b926e11e,SESCO,II.1.1,Salta,AR-A,annual,2014,naphtha combustion consumption by to the public,644.5356148,TJ,CH4,3.0,kg/TJ,1933.6068443999998,kg -8231d771-a711-3c00-841d-b1f9f257169c,SESCO,II.1.1,Salta,AR-A,annual,2014,naphtha combustion consumption by to the public,644.5356148,TJ,N2O,0.6,kg/TJ,386.72136887999994,kg -0b081133-42e8-38ca-b73e-d53bf1cc7bb8,SESCO,II.1.1,San Juan,AR-J,annual,2014,naphtha combustion consumption by to the public,555.9852606,TJ,CO2,73300.0,kg/TJ,40753719.60197999,kg -c5e9d0f3-3081-33da-a872-080515103b8b,SESCO,II.1.1,San Juan,AR-J,annual,2014,naphtha combustion consumption by to the public,555.9852606,TJ,CH4,3.0,kg/TJ,1667.9557817999998,kg -9973d1b4-0eda-3fc1-a76d-42ca43406bd8,SESCO,II.1.1,San Juan,AR-J,annual,2014,naphtha combustion consumption by to the public,555.9852606,TJ,N2O,0.6,kg/TJ,333.59115635999996,kg -a79d2bd2-8d34-3925-a7c2-e8320f44d76a,SESCO,II.1.1,San Luis,AR-D,annual,2014,naphtha combustion consumption by to the public,544.2899308,TJ,CO2,73300.0,kg/TJ,39896451.92764,kg -5d95ba9b-e549-35e2-9181-2a4cc948241b,SESCO,II.1.1,San Luis,AR-D,annual,2014,naphtha combustion consumption by to the public,544.2899308,TJ,CH4,3.0,kg/TJ,1632.8697923999998,kg -dee6c367-b9ab-3bbb-b4ff-6bb23623ac9c,SESCO,II.1.1,San Luis,AR-D,annual,2014,naphtha combustion consumption by to the public,544.2899308,TJ,N2O,0.6,kg/TJ,326.57395848,kg -ce1d0e32-0812-3139-bbc7-e6fa97f5ffd4,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2014,naphtha combustion consumption by to the public,538.0166945999999,TJ,CO2,73300.0,kg/TJ,39436623.71417999,kg -f6a79d28-7df8-3250-90bf-ac0a7f915b07,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2014,naphtha combustion consumption by to the public,538.0166945999999,TJ,CH4,3.0,kg/TJ,1614.0500837999998,kg -3ad35ec0-0759-31eb-828e-533de0f89a46,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2014,naphtha combustion consumption by to the public,538.0166945999999,TJ,N2O,0.6,kg/TJ,322.81001675999994,kg -7a91ab94-77f5-3c6a-bd1f-91c14c499f55,SESCO,II.1.1,Santa Fe,AR-S,annual,2014,naphtha combustion consumption by to the public,2824.5955275999995,TJ,CO2,73300.0,kg/TJ,207042852.17307997,kg -2a9394c8-9309-3235-939e-5c1f2b7e40a7,SESCO,II.1.1,Santa Fe,AR-S,annual,2014,naphtha combustion consumption by to the public,2824.5955275999995,TJ,CH4,3.0,kg/TJ,8473.7865828,kg -a94bef11-4783-386b-a390-2478d8ee655e,SESCO,II.1.1,Santa Fe,AR-S,annual,2014,naphtha combustion consumption by to the public,2824.5955275999995,TJ,N2O,0.6,kg/TJ,1694.7573165599997,kg -e5287b65-0afb-34a5-af41-59abe3ed0ede,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2014,naphtha combustion consumption by to the public,502.8991814,TJ,CO2,73300.0,kg/TJ,36862509.99662,kg -42f1c2b4-eca0-333e-81c6-3d8959b345a6,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2014,naphtha combustion consumption by to the public,502.8991814,TJ,CH4,3.0,kg/TJ,1508.6975441999998,kg -53198ed4-529c-3ed3-b924-94469e3e2f7c,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2014,naphtha combustion consumption by to the public,502.8991814,TJ,N2O,0.6,kg/TJ,301.73950884,kg -73be79ef-6576-389a-a94d-9e52747ba41e,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2014,naphtha combustion consumption by to the public,62.889981,TJ,CO2,73300.0,kg/TJ,4609835.6073,kg -3648a9de-f2df-335d-85d6-ff0f59164c2b,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2014,naphtha combustion consumption by to the public,62.889981,TJ,CH4,3.0,kg/TJ,188.669943,kg -18a75947-45d7-3588-b456-1a4948afbaae,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2014,naphtha combustion consumption by to the public,62.889981,TJ,N2O,0.6,kg/TJ,37.733988599999996,kg -6ad72a23-706b-31b5-bd64-fb5f4f30795e,SESCO,II.1.1,Tucuman,AR-T,annual,2014,naphtha combustion consumption by to the public,496.7520404,TJ,CO2,73300.0,kg/TJ,36411924.56132,kg -cc2233c1-ec3b-32cc-91b7-c07254ab87e3,SESCO,II.1.1,Tucuman,AR-T,annual,2014,naphtha combustion consumption by to the public,496.7520404,TJ,CH4,3.0,kg/TJ,1490.2561212,kg -a10d81bf-3ab6-312d-ac4d-ef9dfb408f8e,SESCO,II.1.1,Tucuman,AR-T,annual,2014,naphtha combustion consumption by to the public,496.7520404,TJ,N2O,0.6,kg/TJ,298.05122424,kg -786e2b23-1b96-367a-9800-39882c4d7fe7,SESCO,II.1.1,Buenos Aires,AR-B,annual,2014,naphtha combustion consumption by freight transport,181.8292784,TJ,CO2,73300.0,kg/TJ,13328086.106719999,kg -de377a62-a1e8-3e7f-b020-373a1e9b5f96,SESCO,II.1.1,Buenos Aires,AR-B,annual,2014,naphtha combustion consumption by freight transport,181.8292784,TJ,CH4,3.0,kg/TJ,545.4878352,kg -f3e2215b-b3a5-313f-92a4-757d0e68521d,SESCO,II.1.1,Buenos Aires,AR-B,annual,2014,naphtha combustion consumption by freight transport,181.8292784,TJ,N2O,0.6,kg/TJ,109.09756703999999,kg -f8b8d5aa-c3c4-3946-b73e-24f4300efd48,SESCO,II.1.1,Capital Federal,AR-C,annual,2014,naphtha combustion consumption by freight transport,197.49660699999998,TJ,CO2,73300.0,kg/TJ,14476501.2931,kg -8addc9e5-69e3-368b-a54d-813b104b12c1,SESCO,II.1.1,Capital Federal,AR-C,annual,2014,naphtha combustion consumption by freight transport,197.49660699999998,TJ,CH4,3.0,kg/TJ,592.4898209999999,kg -00176249-8377-3679-840b-261a4b03863d,SESCO,II.1.1,Capital Federal,AR-C,annual,2014,naphtha combustion consumption by freight transport,197.49660699999998,TJ,N2O,0.6,kg/TJ,118.49796419999998,kg -ff4ef875-5f4a-38a8-813d-862f774884bb,SESCO,II.1.1,Chaco,AR-H,annual,2014,naphtha combustion consumption by freight transport,5.0122842,TJ,CO2,73300.0,kg/TJ,367400.43186,kg -1f785e34-a44f-31bb-8870-40610e0b4735,SESCO,II.1.1,Chaco,AR-H,annual,2014,naphtha combustion consumption by freight transport,5.0122842,TJ,CH4,3.0,kg/TJ,15.0368526,kg -b2f2d43f-3c15-34fd-a805-f5e5675e4234,SESCO,II.1.1,Chaco,AR-H,annual,2014,naphtha combustion consumption by freight transport,5.0122842,TJ,N2O,0.6,kg/TJ,3.00737052,kg -61119b30-e7b5-3dd0-902d-ba17dce8fe4a,SESCO,II.1.1,Chubut,AR-U,annual,2014,naphtha combustion consumption by freight transport,0.5043808,TJ,CO2,73300.0,kg/TJ,36971.11264,kg -45b7d5f2-9c03-31ee-8c4f-cfef34f8fcb1,SESCO,II.1.1,Chubut,AR-U,annual,2014,naphtha combustion consumption by freight transport,0.5043808,TJ,CH4,3.0,kg/TJ,1.5131424,kg -c801d87c-ab19-3012-8e27-886730a30bed,SESCO,II.1.1,Chubut,AR-U,annual,2014,naphtha combustion consumption by freight transport,0.5043808,TJ,N2O,0.6,kg/TJ,0.30262848,kg -0ec84690-391c-3615-98f2-78196b28049f,SESCO,II.1.1,Corrientes,AR-W,annual,2014,naphtha combustion consumption by freight transport,1.6077138,TJ,CO2,73300.0,kg/TJ,117845.42154,kg -986406b5-a65f-37fa-a972-c9a8fbbcff64,SESCO,II.1.1,Corrientes,AR-W,annual,2014,naphtha combustion consumption by freight transport,1.6077138,TJ,CH4,3.0,kg/TJ,4.8231414,kg -634dc8df-1cb1-3d48-a796-0d44d66055bf,SESCO,II.1.1,Corrientes,AR-W,annual,2014,naphtha combustion consumption by freight transport,1.6077138,TJ,N2O,0.6,kg/TJ,0.9646282799999999,kg -a201234a-23e8-36e0-9208-83daebc0be90,SESCO,II.1.1,Córdoba,AR-X,annual,2014,naphtha combustion consumption by freight transport,4.9492366,TJ,CO2,73300.0,kg/TJ,362779.04278,kg -99f3e944-63a0-3273-b8be-bbe056a603d6,SESCO,II.1.1,Córdoba,AR-X,annual,2014,naphtha combustion consumption by freight transport,4.9492366,TJ,CH4,3.0,kg/TJ,14.8477098,kg -a464298b-ef1e-3f36-b5b9-2393deb49779,SESCO,II.1.1,Córdoba,AR-X,annual,2014,naphtha combustion consumption by freight transport,4.9492366,TJ,N2O,0.6,kg/TJ,2.96954196,kg -2756e267-190a-3ba0-b1f7-c9f7568b242b,SESCO,II.1.1,Entre Rios,AR-E,annual,2014,naphtha combustion consumption by freight transport,1.8283804,TJ,CO2,73300.0,kg/TJ,134020.28332,kg -74ca6039-3a97-3d46-a74f-f0fe7942609f,SESCO,II.1.1,Entre Rios,AR-E,annual,2014,naphtha combustion consumption by freight transport,1.8283804,TJ,CH4,3.0,kg/TJ,5.485141199999999,kg -a94d7aca-04a5-38e5-9e12-27f199195e97,SESCO,II.1.1,Entre Rios,AR-E,annual,2014,naphtha combustion consumption by freight transport,1.8283804,TJ,N2O,0.6,kg/TJ,1.09702824,kg -d127e758-d63d-3672-9b1f-4a7d7cb68a84,SESCO,II.1.1,Mendoza,AR-M,annual,2014,naphtha combustion consumption by freight transport,4.9492366,TJ,CO2,73300.0,kg/TJ,362779.04278,kg -32723ee2-69a4-3ed0-acf3-1efb01b90459,SESCO,II.1.1,Mendoza,AR-M,annual,2014,naphtha combustion consumption by freight transport,4.9492366,TJ,CH4,3.0,kg/TJ,14.8477098,kg -9b5a7be9-38a9-3d74-93eb-2ed993ae971c,SESCO,II.1.1,Mendoza,AR-M,annual,2014,naphtha combustion consumption by freight transport,4.9492366,TJ,N2O,0.6,kg/TJ,2.96954196,kg -506715ba-a4ac-3327-b4c9-aa0af8f21e95,SESCO,II.1.1,Misiones,AR-N,annual,2014,naphtha combustion consumption by freight transport,0.5674283999999999,TJ,CO2,73300.0,kg/TJ,41592.50171999999,kg -07c145f3-3fe3-337d-ba9e-a48075f4682c,SESCO,II.1.1,Misiones,AR-N,annual,2014,naphtha combustion consumption by freight transport,0.5674283999999999,TJ,CH4,3.0,kg/TJ,1.7022852,kg -f7d73caf-20bd-3fbb-b6b1-051e15ec40d4,SESCO,II.1.1,Misiones,AR-N,annual,2014,naphtha combustion consumption by freight transport,0.5674283999999999,TJ,N2O,0.6,kg/TJ,0.34045703999999993,kg -0c12b029-be25-342c-98b3-b6fe4260be2b,SESCO,II.1.1,Neuquén,AR-Q,annual,2014,naphtha combustion consumption by freight transport,0.2521904,TJ,CO2,73300.0,kg/TJ,18485.55632,kg -a9ad05cc-a9e8-314a-986e-7750e1cd8b28,SESCO,II.1.1,Neuquén,AR-Q,annual,2014,naphtha combustion consumption by freight transport,0.2521904,TJ,CH4,3.0,kg/TJ,0.7565712,kg -b5ee9f3d-41ed-38c9-ac94-2a83e24698d7,SESCO,II.1.1,Neuquén,AR-Q,annual,2014,naphtha combustion consumption by freight transport,0.2521904,TJ,N2O,0.6,kg/TJ,0.15131424,kg -89e4a9b0-60f3-3d2e-b100-e3b5f5a3b246,SESCO,II.1.1,Rio Negro,AR-R,annual,2014,naphtha combustion consumption by freight transport,1.6392376,TJ,CO2,73300.0,kg/TJ,120156.11607999999,kg -296f5f3c-43b0-309b-846e-8201f8078014,SESCO,II.1.1,Rio Negro,AR-R,annual,2014,naphtha combustion consumption by freight transport,1.6392376,TJ,CH4,3.0,kg/TJ,4.9177128,kg -ab567da6-12cc-33b2-bc30-531afcd436c4,SESCO,II.1.1,Rio Negro,AR-R,annual,2014,naphtha combustion consumption by freight transport,1.6392376,TJ,N2O,0.6,kg/TJ,0.98354256,kg -2b747ecb-a1b1-31f8-b698-e38ff30db097,SESCO,II.1.1,Salta,AR-A,annual,2014,naphtha combustion consumption by freight transport,10.245235,TJ,CO2,73300.0,kg/TJ,750975.7255,kg -aedb27a3-64ff-3937-a65c-d46fca8d3b41,SESCO,II.1.1,Salta,AR-A,annual,2014,naphtha combustion consumption by freight transport,10.245235,TJ,CH4,3.0,kg/TJ,30.735704999999996,kg -9c996e7a-7362-39f6-9ab7-220625d9f08e,SESCO,II.1.1,Salta,AR-A,annual,2014,naphtha combustion consumption by freight transport,10.245235,TJ,N2O,0.6,kg/TJ,6.1471409999999995,kg -9ec26297-599c-3c9e-af55-1da5257a775e,SESCO,II.1.1,San Juan,AR-J,annual,2014,naphtha combustion consumption by freight transport,0.0630476,TJ,CO2,73300.0,kg/TJ,4621.38908,kg -e76f0ef4-b74a-3b3f-a26e-cc28929a1037,SESCO,II.1.1,San Juan,AR-J,annual,2014,naphtha combustion consumption by freight transport,0.0630476,TJ,CH4,3.0,kg/TJ,0.1891428,kg -22d61689-21d6-32c6-aa77-1643dfa75c24,SESCO,II.1.1,San Juan,AR-J,annual,2014,naphtha combustion consumption by freight transport,0.0630476,TJ,N2O,0.6,kg/TJ,0.03782856,kg -e9474df3-f5ee-357c-8b8f-b088959ba38b,SESCO,II.1.1,San Luis,AR-D,annual,2014,naphtha combustion consumption by freight transport,0.2521904,TJ,CO2,73300.0,kg/TJ,18485.55632,kg -3c1299c6-b2ed-36a5-be61-20e25f83ca5f,SESCO,II.1.1,San Luis,AR-D,annual,2014,naphtha combustion consumption by freight transport,0.2521904,TJ,CH4,3.0,kg/TJ,0.7565712,kg -9862f300-1864-3b2d-9112-dc7561299936,SESCO,II.1.1,San Luis,AR-D,annual,2014,naphtha combustion consumption by freight transport,0.2521904,TJ,N2O,0.6,kg/TJ,0.15131424,kg -074e4cf3-6761-377b-820d-8682a238f045,SESCO,II.1.1,Santa Fe,AR-S,annual,2014,naphtha combustion consumption by freight transport,15.887995199999999,TJ,CO2,73300.0,kg/TJ,1164590.04816,kg -e2f71466-e462-3df8-ba18-64a98ce8a6cd,SESCO,II.1.1,Santa Fe,AR-S,annual,2014,naphtha combustion consumption by freight transport,15.887995199999999,TJ,CH4,3.0,kg/TJ,47.6639856,kg -d8d30076-711f-37bf-8110-e48b7ca83b89,SESCO,II.1.1,Santa Fe,AR-S,annual,2014,naphtha combustion consumption by freight transport,15.887995199999999,TJ,N2O,0.6,kg/TJ,9.53279712,kg -141eba78-27ed-3c9b-aba6-126c56592376,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2014,naphtha combustion consumption by freight transport,0.0315238,TJ,CO2,73300.0,kg/TJ,2310.69454,kg -3c361047-cfa2-3633-b5c4-6e6c488fefb8,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2014,naphtha combustion consumption by freight transport,0.0315238,TJ,CH4,3.0,kg/TJ,0.0945714,kg -144d1d16-8723-30f2-9df6-f2d1d4b118b1,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2014,naphtha combustion consumption by freight transport,0.0315238,TJ,N2O,0.6,kg/TJ,0.01891428,kg -27d1ac21-9cb6-349c-bc4c-def761a97b13,SESCO,II.1.1,Tucuman,AR-T,annual,2014,naphtha combustion consumption by freight transport,1.1979043999999999,TJ,CO2,73300.0,kg/TJ,87806.39252,kg -2afcd4a6-8685-3847-aba7-112e88835e10,SESCO,II.1.1,Tucuman,AR-T,annual,2014,naphtha combustion consumption by freight transport,1.1979043999999999,TJ,CH4,3.0,kg/TJ,3.5937132,kg -c001904c-705a-3b19-84ca-79a73c44978d,SESCO,II.1.1,Tucuman,AR-T,annual,2014,naphtha combustion consumption by freight transport,1.1979043999999999,TJ,N2O,0.6,kg/TJ,0.7187426399999999,kg -aa8a4796-5272-39fc-85e4-93a91b1aa8a3,SESCO,II.1.1,Buenos Aires,AR-B,annual,2014,naphtha combustion consumption by freight transport,182.83803999999998,TJ,CO2,73300.0,kg/TJ,13402028.331999999,kg -1bf356cf-bdef-31d6-8b9c-638fa5fd6e4f,SESCO,II.1.1,Buenos Aires,AR-B,annual,2014,naphtha combustion consumption by freight transport,182.83803999999998,TJ,CH4,3.0,kg/TJ,548.5141199999999,kg -8dcd0c0f-3031-3ccc-aebf-d3f59642e4bc,SESCO,II.1.1,Buenos Aires,AR-B,annual,2014,naphtha combustion consumption by freight transport,182.83803999999998,TJ,N2O,0.6,kg/TJ,109.70282399999998,kg -d55607e0-514d-3d14-bacd-e7c5f2179568,SESCO,II.1.1,Capital Federal,AR-C,annual,2014,naphtha combustion consumption by freight transport,178.9921364,TJ,CO2,73300.0,kg/TJ,13120123.59812,kg -8c20e3ab-a539-3977-bd9c-044c85d9acd3,SESCO,II.1.1,Capital Federal,AR-C,annual,2014,naphtha combustion consumption by freight transport,178.9921364,TJ,CH4,3.0,kg/TJ,536.9764092,kg -73d0b85b-c954-393c-a4fc-c318b3ef8ea6,SESCO,II.1.1,Capital Federal,AR-C,annual,2014,naphtha combustion consumption by freight transport,178.9921364,TJ,N2O,0.6,kg/TJ,107.39528184,kg -bcfded3b-445b-3ef9-995b-558e887d8561,SESCO,II.1.1,Chaco,AR-H,annual,2014,naphtha combustion consumption by freight transport,5.9264744,TJ,CO2,73300.0,kg/TJ,434410.57352,kg -f4ca5441-0bc3-3ae3-a255-82dc834ba3b8,SESCO,II.1.1,Chaco,AR-H,annual,2014,naphtha combustion consumption by freight transport,5.9264744,TJ,CH4,3.0,kg/TJ,17.7794232,kg -1daa1544-3750-3405-b19d-989d5a7d068d,SESCO,II.1.1,Chaco,AR-H,annual,2014,naphtha combustion consumption by freight transport,5.9264744,TJ,N2O,0.6,kg/TJ,3.55588464,kg -9e5236d0-7225-33eb-91d5-b39b1d04aad8,SESCO,II.1.1,Chubut,AR-U,annual,2014,naphtha combustion consumption by freight transport,0.4098094,TJ,CO2,73300.0,kg/TJ,30039.029019999998,kg -522fca75-a8bf-385e-8acb-410a6d8aeca4,SESCO,II.1.1,Chubut,AR-U,annual,2014,naphtha combustion consumption by freight transport,0.4098094,TJ,CH4,3.0,kg/TJ,1.2294282,kg -ded89e2c-11bb-301c-97b1-1371c27e6b53,SESCO,II.1.1,Chubut,AR-U,annual,2014,naphtha combustion consumption by freight transport,0.4098094,TJ,N2O,0.6,kg/TJ,0.24588564,kg -7ab15674-8056-33af-832f-d669208ad556,SESCO,II.1.1,Corrientes,AR-W,annual,2014,naphtha combustion consumption by freight transport,2.6479991999999997,TJ,CO2,73300.0,kg/TJ,194098.34135999996,kg -985a0cde-5710-3a04-b40e-cbe9541bd330,SESCO,II.1.1,Corrientes,AR-W,annual,2014,naphtha combustion consumption by freight transport,2.6479991999999997,TJ,CH4,3.0,kg/TJ,7.943997599999999,kg -82323341-c405-3ab0-a19c-2ee2a168fcc5,SESCO,II.1.1,Corrientes,AR-W,annual,2014,naphtha combustion consumption by freight transport,2.6479991999999997,TJ,N2O,0.6,kg/TJ,1.5887995199999998,kg -a90fc728-8727-3fa4-b484-ac23ab11a246,SESCO,II.1.1,Córdoba,AR-X,annual,2014,naphtha combustion consumption by freight transport,4.886188999999999,TJ,CO2,73300.0,kg/TJ,358157.6536999999,kg -1862ffae-9b4b-3536-a483-9d99afb4748c,SESCO,II.1.1,Córdoba,AR-X,annual,2014,naphtha combustion consumption by freight transport,4.886188999999999,TJ,CH4,3.0,kg/TJ,14.658566999999998,kg -5e28e3a5-7a1b-349c-82a9-fafa2c41fc7b,SESCO,II.1.1,Córdoba,AR-X,annual,2014,naphtha combustion consumption by freight transport,4.886188999999999,TJ,N2O,0.6,kg/TJ,2.931713399999999,kg -26e077c0-0c2b-3fe0-923f-91ef3ff59565,SESCO,II.1.1,Entre Rios,AR-E,annual,2014,naphtha combustion consumption by freight transport,2.049047,TJ,CO2,73300.0,kg/TJ,150195.1451,kg -57f655a1-75da-3832-94cc-08432e2d6367,SESCO,II.1.1,Entre Rios,AR-E,annual,2014,naphtha combustion consumption by freight transport,2.049047,TJ,CH4,3.0,kg/TJ,6.1471409999999995,kg -17bba64a-7067-3fe8-9161-591e07959ff4,SESCO,II.1.1,Entre Rios,AR-E,annual,2014,naphtha combustion consumption by freight transport,2.049047,TJ,N2O,0.6,kg/TJ,1.2294281999999999,kg -82ff8b04-448e-3ed4-bec7-f0dfd92c07ab,SESCO,II.1.1,Jujuy,AR-Y,annual,2014,naphtha combustion consumption by freight transport,0.09457139999999999,TJ,CO2,73300.0,kg/TJ,6932.083619999999,kg -ae4186e2-1ae7-3f4c-a318-15b8bf6218db,SESCO,II.1.1,Jujuy,AR-Y,annual,2014,naphtha combustion consumption by freight transport,0.09457139999999999,TJ,CH4,3.0,kg/TJ,0.28371419999999997,kg -6e9774a2-c9d1-3d6d-aa23-adef76ce937f,SESCO,II.1.1,Jujuy,AR-Y,annual,2014,naphtha combustion consumption by freight transport,0.09457139999999999,TJ,N2O,0.6,kg/TJ,0.05674283999999999,kg -8c7c8c30-26c1-33dd-9bbb-796035a66324,SESCO,II.1.1,La Rioja,AR-F,annual,2014,naphtha combustion consumption by freight transport,0.47285699999999997,TJ,CO2,73300.0,kg/TJ,34660.418099999995,kg -18a169ed-5a70-3ab1-a5e0-e0139db31381,SESCO,II.1.1,La Rioja,AR-F,annual,2014,naphtha combustion consumption by freight transport,0.47285699999999997,TJ,CH4,3.0,kg/TJ,1.418571,kg -70b47f85-a626-3748-91c0-a836b2b47d22,SESCO,II.1.1,La Rioja,AR-F,annual,2014,naphtha combustion consumption by freight transport,0.47285699999999997,TJ,N2O,0.6,kg/TJ,0.28371419999999997,kg -53c19eba-4571-3964-a89f-fc3b932a7e28,SESCO,II.1.1,Mendoza,AR-M,annual,2014,naphtha combustion consumption by freight transport,4.129617799999999,TJ,CO2,73300.0,kg/TJ,302700.9847399999,kg -290fa7e5-86e1-3c91-9b21-5e938a53ebd3,SESCO,II.1.1,Mendoza,AR-M,annual,2014,naphtha combustion consumption by freight transport,4.129617799999999,TJ,CH4,3.0,kg/TJ,12.388853399999999,kg -f85b3638-d3e0-3653-9cce-f0d40c5312e8,SESCO,II.1.1,Mendoza,AR-M,annual,2014,naphtha combustion consumption by freight transport,4.129617799999999,TJ,N2O,0.6,kg/TJ,2.4777706799999994,kg -a454ffe8-c236-36d0-b1ad-7337da6d98e2,SESCO,II.1.1,Misiones,AR-N,annual,2014,naphtha combustion consumption by freight transport,0.7565711999999999,TJ,CO2,73300.0,kg/TJ,55456.668959999995,kg -4e8ef685-7b0b-3c12-a024-01a0b0c6455e,SESCO,II.1.1,Misiones,AR-N,annual,2014,naphtha combustion consumption by freight transport,0.7565711999999999,TJ,CH4,3.0,kg/TJ,2.2697135999999998,kg -70cac9b0-f154-34fc-aa13-97f60205ad01,SESCO,II.1.1,Misiones,AR-N,annual,2014,naphtha combustion consumption by freight transport,0.7565711999999999,TJ,N2O,0.6,kg/TJ,0.4539427199999999,kg -0c12b029-be25-342c-98b3-b6fe4260be2b,SESCO,II.1.1,Neuquén,AR-Q,annual,2014,naphtha combustion consumption by freight transport,0.2521904,TJ,CO2,73300.0,kg/TJ,18485.55632,kg -a9ad05cc-a9e8-314a-986e-7750e1cd8b28,SESCO,II.1.1,Neuquén,AR-Q,annual,2014,naphtha combustion consumption by freight transport,0.2521904,TJ,CH4,3.0,kg/TJ,0.7565712,kg -b5ee9f3d-41ed-38c9-ac94-2a83e24698d7,SESCO,II.1.1,Neuquén,AR-Q,annual,2014,naphtha combustion consumption by freight transport,0.2521904,TJ,N2O,0.6,kg/TJ,0.15131424,kg -1ddbf8e7-df26-3bcf-b7c6-30898ce9f9e9,SESCO,II.1.1,Rio Negro,AR-R,annual,2014,naphtha combustion consumption by freight transport,1.8914279999999999,TJ,CO2,73300.0,kg/TJ,138641.67239999998,kg -824b43f4-1917-36c5-a5d4-089ac09c1293,SESCO,II.1.1,Rio Negro,AR-R,annual,2014,naphtha combustion consumption by freight transport,1.8914279999999999,TJ,CH4,3.0,kg/TJ,5.674284,kg -a9fd78f4-fd68-3263-80f4-180ba8ca20d5,SESCO,II.1.1,Rio Negro,AR-R,annual,2014,naphtha combustion consumption by freight transport,1.8914279999999999,TJ,N2O,0.6,kg/TJ,1.1348567999999999,kg -ce319457-6883-380e-b4c7-484b92fb65c9,SESCO,II.1.1,Salta,AR-A,annual,2014,naphtha combustion consumption by freight transport,1.0087616,TJ,CO2,73300.0,kg/TJ,73942.22528,kg -73c30594-57ed-34de-971f-88fbcb6dade2,SESCO,II.1.1,Salta,AR-A,annual,2014,naphtha combustion consumption by freight transport,1.0087616,TJ,CH4,3.0,kg/TJ,3.0262848,kg -076e25d1-a844-3ae8-95f1-ead5ffb87ddd,SESCO,II.1.1,Salta,AR-A,annual,2014,naphtha combustion consumption by freight transport,1.0087616,TJ,N2O,0.6,kg/TJ,0.60525696,kg -840427fb-ce14-3104-9c94-979e9b53d540,SESCO,II.1.1,San Luis,AR-D,annual,2014,naphtha combustion consumption by freight transport,0.34676179999999995,TJ,CO2,73300.0,kg/TJ,25417.639939999997,kg -f07de3e8-cbf3-3a04-b18a-398e380b880d,SESCO,II.1.1,San Luis,AR-D,annual,2014,naphtha combustion consumption by freight transport,0.34676179999999995,TJ,CH4,3.0,kg/TJ,1.0402854,kg -876f014d-08a7-3fe7-963b-379b8c2dd753,SESCO,II.1.1,San Luis,AR-D,annual,2014,naphtha combustion consumption by freight transport,0.34676179999999995,TJ,N2O,0.6,kg/TJ,0.20805707999999998,kg -37d2b3d1-1679-334e-9558-05f3a4185a7b,SESCO,II.1.1,Santa Fe,AR-S,annual,2014,naphtha combustion consumption by freight transport,21.6883744,TJ,CO2,73300.0,kg/TJ,1589757.84352,kg -bfe6a0aa-2246-3cba-8a60-819af46f4b44,SESCO,II.1.1,Santa Fe,AR-S,annual,2014,naphtha combustion consumption by freight transport,21.6883744,TJ,CH4,3.0,kg/TJ,65.0651232,kg -36db6474-a632-3f6b-bb32-0e4baad86af5,SESCO,II.1.1,Santa Fe,AR-S,annual,2014,naphtha combustion consumption by freight transport,21.6883744,TJ,N2O,0.6,kg/TJ,13.01302464,kg -58950076-65f1-3f2b-bbc5-3ca59a56bc93,SESCO,II.1.1,Tucuman,AR-T,annual,2014,naphtha combustion consumption by freight transport,0.7565711999999999,TJ,CO2,73300.0,kg/TJ,55456.668959999995,kg -d4509dbd-130a-39ea-8af4-e26e2fc10cb7,SESCO,II.1.1,Tucuman,AR-T,annual,2014,naphtha combustion consumption by freight transport,0.7565711999999999,TJ,CH4,3.0,kg/TJ,2.2697135999999998,kg -b055b2b7-8f64-3bd2-ba3c-18d959a6812b,SESCO,II.1.1,Tucuman,AR-T,annual,2014,naphtha combustion consumption by freight transport,0.7565711999999999,TJ,N2O,0.6,kg/TJ,0.4539427199999999,kg -74a1073d-af8d-3d3e-86d9-8278e2ebb3d8,SESCO,II.1.1,Buenos Aires,AR-B,annual,2014,naphtha combustion consumption by public passenger transport,0.18914279999999997,TJ,CO2,73300.0,kg/TJ,13864.167239999999,kg -6a1964c9-7312-3609-bfec-dd3d8eb9a7a3,SESCO,II.1.1,Buenos Aires,AR-B,annual,2014,naphtha combustion consumption by public passenger transport,0.18914279999999997,TJ,CH4,3.0,kg/TJ,0.5674283999999999,kg -aaf351f8-2d9a-3386-97da-05645abe230c,SESCO,II.1.1,Buenos Aires,AR-B,annual,2014,naphtha combustion consumption by public passenger transport,0.18914279999999997,TJ,N2O,0.6,kg/TJ,0.11348567999999998,kg -aecd8e8b-3a27-37da-8ed1-192d4e3eb51c,SESCO,II.1.1,Capital Federal,AR-C,annual,2015,naphtha combustion consumption by to the public,22.8869641,TJ,CO2,73300.0,kg/TJ,1677614.46853,kg -cbe8c701-d396-3133-8aac-f3d6f52550b8,SESCO,II.1.1,Capital Federal,AR-C,annual,2015,naphtha combustion consumption by to the public,22.8869641,TJ,CH4,3.0,kg/TJ,68.6608923,kg -2ba102df-4221-3a7e-9ae6-8b7b66ea241d,SESCO,II.1.1,Capital Federal,AR-C,annual,2015,naphtha combustion consumption by to the public,22.8869641,TJ,N2O,0.6,kg/TJ,13.73217846,kg -7a81716d-7813-3c97-a0e2-a51c075e0c8d,SESCO,II.1.1,Capital Federal,AR-C,annual,2015,naphtha combustion consumption by to the public,7.078121049999999,TJ,CO2,73300.0,kg/TJ,518826.27296499995,kg -9cdd8d0a-6b32-3ce2-8f8e-ca3317496901,SESCO,II.1.1,Capital Federal,AR-C,annual,2015,naphtha combustion consumption by to the public,7.078121049999999,TJ,CH4,3.0,kg/TJ,21.234363149999997,kg -e477856f-03d0-3c43-be77-2d25b34134fc,SESCO,II.1.1,Capital Federal,AR-C,annual,2015,naphtha combustion consumption by to the public,7.078121049999999,TJ,N2O,0.6,kg/TJ,4.2468726299999995,kg -7fe027bd-c329-35a1-93ab-fdf9c65f0245,SESCO,II.5.1,Córdoba,AR-X,annual,2015,naphtha combustion consumption by agriculture machines,6.766309549999999,TJ,CO2,73300.0,kg/TJ,495970.49001499993,kg -802e5077-a824-3c9a-9ed8-ad2986983e51,SESCO,II.5.1,Córdoba,AR-X,annual,2015,naphtha combustion consumption by agriculture machines,6.766309549999999,TJ,CH4,3.0,kg/TJ,20.298928649999997,kg -6deb7aaf-f9c9-384e-8486-6c374d76bc62,SESCO,II.5.1,Córdoba,AR-X,annual,2015,naphtha combustion consumption by agriculture machines,6.766309549999999,TJ,N2O,0.6,kg/TJ,4.059785729999999,kg -503146f2-890e-3976-a74a-9efc6364d4fe,SESCO,II.5.1,Santa Fe,AR-S,annual,2015,naphtha combustion consumption by agriculture machines,17.1496325,TJ,CO2,73300.0,kg/TJ,1257068.06225,kg -8362ca99-3b8e-36c0-bc82-6d66fd835537,SESCO,II.5.1,Santa Fe,AR-S,annual,2015,naphtha combustion consumption by agriculture machines,17.1496325,TJ,CH4,3.0,kg/TJ,51.4488975,kg -5c0c4695-f1e3-3122-ac58-6365ff281de3,SESCO,II.5.1,Santa Fe,AR-S,annual,2015,naphtha combustion consumption by agriculture machines,17.1496325,TJ,N2O,0.6,kg/TJ,10.2897795,kg -85120266-3fa9-3342-a9c9-abc017c7fbf6,SESCO,II.5.1,Córdoba,AR-X,annual,2015,naphtha combustion consumption by agriculture machines,3.3675642,TJ,CO2,73300.0,kg/TJ,246842.45586,kg -84962e06-2f67-3de2-9063-12a03f13427c,SESCO,II.5.1,Córdoba,AR-X,annual,2015,naphtha combustion consumption by agriculture machines,3.3675642,TJ,CH4,3.0,kg/TJ,10.1026926,kg -a26da804-2904-3282-bdb9-aebb7065ec7e,SESCO,II.5.1,Córdoba,AR-X,annual,2015,naphtha combustion consumption by agriculture machines,3.3675642,TJ,N2O,0.6,kg/TJ,2.0205385199999997,kg -601f49ac-0978-3f65-aa7d-a71bf83f13e4,SESCO,II.5.1,Santa Fe,AR-S,annual,2015,naphtha combustion consumption by agriculture machines,6.14268655,TJ,CO2,73300.0,kg/TJ,450258.924115,kg -9cddfdf6-f860-368a-acd8-7eb23aecbd0f,SESCO,II.5.1,Santa Fe,AR-S,annual,2015,naphtha combustion consumption by agriculture machines,6.14268655,TJ,CH4,3.0,kg/TJ,18.428059649999998,kg -f17987ed-3efc-3ab2-a567-b907266c3588,SESCO,II.5.1,Santa Fe,AR-S,annual,2015,naphtha combustion consumption by agriculture machines,6.14268655,TJ,N2O,0.6,kg/TJ,3.6856119299999994,kg -d6ad05f6-480c-32f1-9e9b-59f53017dc39,SESCO,II.1.1,Buenos Aires,AR-B,annual,2015,naphtha combustion consumption by to the public,8995.91821706578,TJ,CO2,73300.0,kg/TJ,659400805.3109217,kg -dc2df741-650c-37bb-a177-d65b74261952,SESCO,II.1.1,Buenos Aires,AR-B,annual,2015,naphtha combustion consumption by to the public,8995.91821706578,TJ,CH4,3.0,kg/TJ,26987.75465119734,kg -1aa2ab64-1125-3a01-8e6e-68f40084ddb7,SESCO,II.1.1,Buenos Aires,AR-B,annual,2015,naphtha combustion consumption by to the public,8995.91821706578,TJ,N2O,0.6,kg/TJ,5397.5509302394685,kg -c7c1b348-2eab-3699-9045-01347322bdcc,SESCO,II.1.1,Capital Federal,AR-C,annual,2015,naphtha combustion consumption by to the public,3220.3946037563296,TJ,CO2,73300.0,kg/TJ,236054924.45533895,kg -b25a9291-95d2-3095-80be-87c743dbe464,SESCO,II.1.1,Capital Federal,AR-C,annual,2015,naphtha combustion consumption by to the public,3220.3946037563296,TJ,CH4,3.0,kg/TJ,9661.18381126899,kg -877b383a-b98f-32a3-8458-a5abc1e3299f,SESCO,II.1.1,Capital Federal,AR-C,annual,2015,naphtha combustion consumption by to the public,3220.3946037563296,TJ,N2O,0.6,kg/TJ,1932.2367622537977,kg -dd365915-5f8e-3c28-bb33-e5beb65347a2,SESCO,II.1.1,Catamarca,AR-K,annual,2015,naphtha combustion consumption by to the public,416.24865848566,TJ,CO2,73300.0,kg/TJ,30511026.666998874,kg -e6e56da4-fba1-3cb5-9ca2-000527aded2c,SESCO,II.1.1,Catamarca,AR-K,annual,2015,naphtha combustion consumption by to the public,416.24865848566,TJ,CH4,3.0,kg/TJ,1248.74597545698,kg -2fb767d0-7e7a-357e-9c93-9bd3612b0944,SESCO,II.1.1,Catamarca,AR-K,annual,2015,naphtha combustion consumption by to the public,416.24865848566,TJ,N2O,0.6,kg/TJ,249.74919509139596,kg -53e3de70-6df9-3aa8-b747-64bebbebd78a,SESCO,II.1.1,Chaco,AR-H,annual,2015,naphtha combustion consumption by to the public,416.84742699099496,TJ,CO2,73300.0,kg/TJ,30554916.39843993,kg -1c8a24d4-6180-36a5-ac3f-0cd943313dc1,SESCO,II.1.1,Chaco,AR-H,annual,2015,naphtha combustion consumption by to the public,416.84742699099496,TJ,CH4,3.0,kg/TJ,1250.5422809729848,kg -ef10570b-03e8-3c74-96b2-c05b71bd4dd0,SESCO,II.1.1,Chaco,AR-H,annual,2015,naphtha combustion consumption by to the public,416.84742699099496,TJ,N2O,0.6,kg/TJ,250.10845619459695,kg -c95e1264-8c2f-3dec-9c5b-b94825bcbc86,SESCO,II.1.1,Chubut,AR-U,annual,2015,naphtha combustion consumption by to the public,303.50711786395,TJ,CO2,73300.0,kg/TJ,22247071.739427533,kg -29978be2-f135-391a-84f4-47cbf3fc443c,SESCO,II.1.1,Chubut,AR-U,annual,2015,naphtha combustion consumption by to the public,303.50711786395,TJ,CH4,3.0,kg/TJ,910.5213535918499,kg -65c5c7cb-9591-30f9-accf-f489ff9d67ec,SESCO,II.1.1,Chubut,AR-U,annual,2015,naphtha combustion consumption by to the public,303.50711786395,TJ,N2O,0.6,kg/TJ,182.10427071836997,kg -0c9c382b-a8a4-3bf8-8871-cba966945435,SESCO,II.1.1,Corrientes,AR-W,annual,2015,naphtha combustion consumption by to the public,360.48512236236496,TJ,CO2,73300.0,kg/TJ,26423559.46916135,kg -4b6f7f0d-05fc-3a21-b11a-5b94afbf12ee,SESCO,II.1.1,Corrientes,AR-W,annual,2015,naphtha combustion consumption by to the public,360.48512236236496,TJ,CH4,3.0,kg/TJ,1081.4553670870948,kg -2a2233a9-fd69-3324-81a5-584bdce85836,SESCO,II.1.1,Corrientes,AR-W,annual,2015,naphtha combustion consumption by to the public,360.48512236236496,TJ,N2O,0.6,kg/TJ,216.29107341741897,kg -6c8339c3-5eca-3f8a-8ba8-1ba829c8d38d,SESCO,II.1.1,Córdoba,AR-X,annual,2015,naphtha combustion consumption by to the public,2654.936063484705,TJ,CO2,73300.0,kg/TJ,194606813.45342886,kg -996f3133-0633-3026-b238-fd92d5eadd09,SESCO,II.1.1,Córdoba,AR-X,annual,2015,naphtha combustion consumption by to the public,2654.936063484705,TJ,CH4,3.0,kg/TJ,7964.808190454114,kg -087e9222-556f-325d-a549-e54339827398,SESCO,II.1.1,Córdoba,AR-X,annual,2015,naphtha combustion consumption by to the public,2654.936063484705,TJ,N2O,0.6,kg/TJ,1592.9616380908228,kg -ee9a760f-5bc6-3b15-b051-a0aecc07589f,SESCO,II.1.1,Entre Rios,AR-E,annual,2015,naphtha combustion consumption by to the public,1002.3633012443049,TJ,CO2,73300.0,kg/TJ,73473229.98120755,kg -306ad7fa-d0fa-33c4-adac-ed62bb7b664d,SESCO,II.1.1,Entre Rios,AR-E,annual,2015,naphtha combustion consumption by to the public,1002.3633012443049,TJ,CH4,3.0,kg/TJ,3007.0899037329145,kg -ecd16b8d-d8c3-3c72-8500-30c61dd6d4d7,SESCO,II.1.1,Entre Rios,AR-E,annual,2015,naphtha combustion consumption by to the public,1002.3633012443049,TJ,N2O,0.6,kg/TJ,601.4179807465829,kg -60ec819c-f276-3b25-9269-e9a3015dadba,SESCO,II.1.1,Formosa,AR-P,annual,2015,naphtha combustion consumption by to the public,515.711578537155,TJ,CO2,73300.0,kg/TJ,37801658.70677346,kg -a1753401-2b5b-326a-9ff4-a8fcb18ebc25,SESCO,II.1.1,Formosa,AR-P,annual,2015,naphtha combustion consumption by to the public,515.711578537155,TJ,CH4,3.0,kg/TJ,1547.134735611465,kg -65317dfa-0683-3fee-bedc-2d0c8e3cce8c,SESCO,II.1.1,Formosa,AR-P,annual,2015,naphtha combustion consumption by to the public,515.711578537155,TJ,N2O,0.6,kg/TJ,309.426947122293,kg -aa6ccd33-3f17-392c-b6f9-e50866486f13,SESCO,II.1.1,Jujuy,AR-Y,annual,2015,naphtha combustion consumption by to the public,95.63373451631999,TJ,CO2,73300.0,kg/TJ,7009952.740046255,kg -8ebda0df-eeaa-394a-9120-8f17fd5fcbb8,SESCO,II.1.1,Jujuy,AR-Y,annual,2015,naphtha combustion consumption by to the public,95.63373451631999,TJ,CH4,3.0,kg/TJ,286.90120354896,kg -4097f7d2-96a0-3d86-9f9b-87a9de02ad2e,SESCO,II.1.1,Jujuy,AR-Y,annual,2015,naphtha combustion consumption by to the public,95.63373451631999,TJ,N2O,0.6,kg/TJ,57.38024070979199,kg -dc3313ce-d611-31fd-98a0-7331abd29ca1,SESCO,II.1.1,La Pampa,AR-L,annual,2015,naphtha combustion consumption by to the public,110.12537665629497,TJ,CO2,73300.0,kg/TJ,8072190.108906422,kg -d5d9f4f8-e5fd-30a4-a13f-dbacb81dcdfd,SESCO,II.1.1,La Pampa,AR-L,annual,2015,naphtha combustion consumption by to the public,110.12537665629497,TJ,CH4,3.0,kg/TJ,330.3761299688849,kg -85f2ddbc-4e2a-3d25-a0be-de8d0c3ec7dc,SESCO,II.1.1,La Pampa,AR-L,annual,2015,naphtha combustion consumption by to the public,110.12537665629497,TJ,N2O,0.6,kg/TJ,66.07522599377698,kg -955038ab-4b01-3d1f-9450-919a9a13f081,SESCO,II.1.1,La Rioja,AR-F,annual,2015,naphtha combustion consumption by to the public,98.41452559938999,TJ,CO2,73300.0,kg/TJ,7213784.726435286,kg -099c7d4d-5382-30e0-a1b0-c3c6d88ca4e8,SESCO,II.1.1,La Rioja,AR-F,annual,2015,naphtha combustion consumption by to the public,98.41452559938999,TJ,CH4,3.0,kg/TJ,295.24357679816995,kg -15e0dafc-2798-3ee7-9f9d-cd3af07c02fd,SESCO,II.1.1,La Rioja,AR-F,annual,2015,naphtha combustion consumption by to the public,98.41452559938999,TJ,N2O,0.6,kg/TJ,59.04871535963399,kg -9ee1e923-d17c-3cf4-9b59-2cd2cf53230d,SESCO,II.1.1,Mendoza,AR-M,annual,2015,naphtha combustion consumption by to the public,456.716512216965,TJ,CO2,73300.0,kg/TJ,33477320.345503535,kg -18212472-2a9c-3bb6-b1b0-cae46656c400,SESCO,II.1.1,Mendoza,AR-M,annual,2015,naphtha combustion consumption by to the public,456.716512216965,TJ,CH4,3.0,kg/TJ,1370.149536650895,kg -4ae84307-9b9c-312b-b425-7f4c0b214109,SESCO,II.1.1,Mendoza,AR-M,annual,2015,naphtha combustion consumption by to the public,456.716512216965,TJ,N2O,0.6,kg/TJ,274.02990733017896,kg -524a80cd-9ede-37f1-a84c-37788b53d02e,SESCO,II.1.1,Misiones,AR-N,annual,2015,naphtha combustion consumption by to the public,754.4198171509998,TJ,CO2,73300.0,kg/TJ,55298972.59716829,kg -77ef8a8d-bbce-3247-997a-e1d18d8ff183,SESCO,II.1.1,Misiones,AR-N,annual,2015,naphtha combustion consumption by to the public,754.4198171509998,TJ,CH4,3.0,kg/TJ,2263.2594514529997,kg -6748bebe-9a14-3641-acdb-e45b5eebe7be,SESCO,II.1.1,Misiones,AR-N,annual,2015,naphtha combustion consumption by to the public,754.4198171509998,TJ,N2O,0.6,kg/TJ,452.6518902905999,kg -6ec74529-1424-306a-ae41-a0f005fd4d2c,SESCO,II.1.1,Neuquén,AR-Q,annual,2015,naphtha combustion consumption by to the public,272.1765727380699,TJ,CO2,73300.0,kg/TJ,19950542.781700525,kg -72cf60ce-e7bc-32c9-ae1e-a41953043f3d,SESCO,II.1.1,Neuquén,AR-Q,annual,2015,naphtha combustion consumption by to the public,272.1765727380699,TJ,CH4,3.0,kg/TJ,816.5297182142098,kg -c30ec982-249b-36fc-a841-3f223c839e06,SESCO,II.1.1,Neuquén,AR-Q,annual,2015,naphtha combustion consumption by to the public,272.1765727380699,TJ,N2O,0.6,kg/TJ,163.30594364284195,kg -0ac33652-fe1f-3b9e-ad1e-766118ce5e41,SESCO,II.1.1,Rio Negro,AR-R,annual,2015,naphtha combustion consumption by to the public,299.62354304882996,TJ,CO2,73300.0,kg/TJ,21962405.705479234,kg -0a4a3199-acfc-3df2-aa6e-f3cab9c72c5d,SESCO,II.1.1,Rio Negro,AR-R,annual,2015,naphtha combustion consumption by to the public,299.62354304882996,TJ,CH4,3.0,kg/TJ,898.8706291464898,kg -9c2cc717-df05-3651-bf88-128ccf9dde47,SESCO,II.1.1,Rio Negro,AR-R,annual,2015,naphtha combustion consumption by to the public,299.62354304882996,TJ,N2O,0.6,kg/TJ,179.77412582929796,kg -9e3b5e31-3c9e-306e-8e9e-91d03bbdd359,SESCO,II.1.1,Salta,AR-A,annual,2015,naphtha combustion consumption by to the public,52.960013981875,TJ,CO2,73300.0,kg/TJ,3881969.0248714373,kg -49d7c40b-8192-322a-9e24-194817e11992,SESCO,II.1.1,Salta,AR-A,annual,2015,naphtha combustion consumption by to the public,52.960013981875,TJ,CH4,3.0,kg/TJ,158.880041945625,kg -549d37aa-692c-3e2c-b71c-7c01491c12a8,SESCO,II.1.1,Salta,AR-A,annual,2015,naphtha combustion consumption by to the public,52.960013981875,TJ,N2O,0.6,kg/TJ,31.776008389125,kg -eb08876b-173e-34cb-bd91-d51d16639a55,SESCO,II.1.1,San Juan,AR-J,annual,2015,naphtha combustion consumption by to the public,276.75450187385,TJ,CO2,73300.0,kg/TJ,20286104.987353206,kg -307af693-2062-3b76-8849-2f2a2d586771,SESCO,II.1.1,San Juan,AR-J,annual,2015,naphtha combustion consumption by to the public,276.75450187385,TJ,CH4,3.0,kg/TJ,830.26350562155,kg -53f95e32-a1f4-3f43-8cb9-7560282d8222,SESCO,II.1.1,San Juan,AR-J,annual,2015,naphtha combustion consumption by to the public,276.75450187385,TJ,N2O,0.6,kg/TJ,166.05270112431,kg -94918c83-5b01-3954-a158-362e9ddab48e,SESCO,II.1.1,San Luis,AR-D,annual,2015,naphtha combustion consumption by to the public,556.038297029215,TJ,CO2,73300.0,kg/TJ,40757607.17224146,kg -92d405ac-e296-3745-ad83-252bd08d8f7d,SESCO,II.1.1,San Luis,AR-D,annual,2015,naphtha combustion consumption by to the public,556.038297029215,TJ,CH4,3.0,kg/TJ,1668.114891087645,kg -83b058dc-5f71-349c-9115-e475f41cc726,SESCO,II.1.1,San Luis,AR-D,annual,2015,naphtha combustion consumption by to the public,556.038297029215,TJ,N2O,0.6,kg/TJ,333.62297821752895,kg -10515cd0-c807-3e92-9580-3ceda73c38e6,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2015,naphtha combustion consumption by to the public,61.07099815316499,TJ,CO2,73300.0,kg/TJ,4476504.164626994,kg -e665636b-b034-325c-9d88-af35ef7b9d26,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2015,naphtha combustion consumption by to the public,61.07099815316499,TJ,CH4,3.0,kg/TJ,183.21299445949498,kg -314c77ee-0122-3e8d-b551-31e913fd2ab9,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2015,naphtha combustion consumption by to the public,61.07099815316499,TJ,N2O,0.6,kg/TJ,36.64259889189899,kg -10513dfa-55fc-33d4-8933-9c75303f04fc,SESCO,II.1.1,Santa Fe,AR-S,annual,2015,naphtha combustion consumption by to the public,2438.5916004550095,TJ,CO2,73300.0,kg/TJ,178748764.3133522,kg -6ca5761e-801f-3872-8c25-cf5428f2fc8b,SESCO,II.1.1,Santa Fe,AR-S,annual,2015,naphtha combustion consumption by to the public,2438.5916004550095,TJ,CH4,3.0,kg/TJ,7315.774801365029,kg -ab661389-c7ca-30cb-b36b-94686f748f2c,SESCO,II.1.1,Santa Fe,AR-S,annual,2015,naphtha combustion consumption by to the public,2438.5916004550095,TJ,N2O,0.6,kg/TJ,1463.1549602730056,kg -acccbb02-0acc-3d43-8131-a145fee3feb5,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2015,naphtha combustion consumption by to the public,322.93191103673496,TJ,CO2,73300.0,kg/TJ,23670909.078992672,kg -dfa7d791-4367-31c4-8c62-33482dde1f78,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2015,naphtha combustion consumption by to the public,322.93191103673496,TJ,CH4,3.0,kg/TJ,968.7957331102049,kg -03bc4cf9-20ce-3d8a-8b7e-bd7d69468407,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2015,naphtha combustion consumption by to the public,322.93191103673496,TJ,N2O,0.6,kg/TJ,193.75914662204096,kg -a2ba041c-371b-3512-90e2-e90b71866807,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2015,naphtha combustion consumption by to the public,119.04546489836,TJ,CO2,73300.0,kg/TJ,8726032.577049788,kg -3b94fadb-ae92-3e40-b046-15760b0db401,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2015,naphtha combustion consumption by to the public,119.04546489836,TJ,CH4,3.0,kg/TJ,357.13639469507996,kg -ba2b743a-9a5b-32e1-be62-0d340e200343,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2015,naphtha combustion consumption by to the public,119.04546489836,TJ,N2O,0.6,kg/TJ,71.42727893901599,kg -d43bb917-675c-305e-aacf-480a2361afee,SESCO,II.1.1,Tucuman,AR-T,annual,2015,naphtha combustion consumption by to the public,121.17390890604999,TJ,CO2,73300.0,kg/TJ,8882047.522813464,kg -bceed0ea-5baa-3c7b-a0c3-53e757d7a77a,SESCO,II.1.1,Tucuman,AR-T,annual,2015,naphtha combustion consumption by to the public,121.17390890604999,TJ,CH4,3.0,kg/TJ,363.52172671815,kg -1dd6fa16-22ff-3c04-855e-32c9a2e32727,SESCO,II.1.1,Tucuman,AR-T,annual,2015,naphtha combustion consumption by to the public,121.17390890604999,TJ,N2O,0.6,kg/TJ,72.70434534363,kg -9df00bba-5507-3e49-9daa-cc1e9843752b,SESCO,II.1.1,Buenos Aires,AR-B,annual,2015,naphtha combustion consumption by to the public,2514.69227772763,TJ,CO2,73300.0,kg/TJ,184326943.95743528,kg -1960c364-652f-3553-80f6-4fc63be7c95a,SESCO,II.1.1,Buenos Aires,AR-B,annual,2015,naphtha combustion consumption by to the public,2514.69227772763,TJ,CH4,3.0,kg/TJ,7544.0768331828895,kg -35beaf56-edd8-3d05-8f6f-27ad8d019b0d,SESCO,II.1.1,Buenos Aires,AR-B,annual,2015,naphtha combustion consumption by to the public,2514.69227772763,TJ,N2O,0.6,kg/TJ,1508.815366636578,kg -e4bb97aa-ff08-3ee1-a602-b3970ce372f0,SESCO,II.1.1,Capital Federal,AR-C,annual,2015,naphtha combustion consumption by to the public,1284.357009610675,TJ,CO2,73300.0,kg/TJ,94143368.80446248,kg -192a207a-2255-3625-8455-92b3f6185277,SESCO,II.1.1,Capital Federal,AR-C,annual,2015,naphtha combustion consumption by to the public,1284.357009610675,TJ,CH4,3.0,kg/TJ,3853.071028832025,kg -11a2e41b-7adb-3283-a68e-4479d3717fef,SESCO,II.1.1,Capital Federal,AR-C,annual,2015,naphtha combustion consumption by to the public,1284.357009610675,TJ,N2O,0.6,kg/TJ,770.614205766405,kg -4a0ce86d-9cf6-3580-9ea1-05020ed73aa1,SESCO,II.1.1,Catamarca,AR-K,annual,2015,naphtha combustion consumption by to the public,113.65317766803,TJ,CO2,73300.0,kg/TJ,8330777.923066598,kg -bc0463cc-4c08-333d-8fd0-5b881804e35a,SESCO,II.1.1,Catamarca,AR-K,annual,2015,naphtha combustion consumption by to the public,113.65317766803,TJ,CH4,3.0,kg/TJ,340.95953300408996,kg -ad98b643-bc0f-3938-951e-1ca163966472,SESCO,II.1.1,Catamarca,AR-K,annual,2015,naphtha combustion consumption by to the public,113.65317766803,TJ,N2O,0.6,kg/TJ,68.191906600818,kg -4af7deec-38e6-378a-b6b3-7f1b4b057e57,SESCO,II.1.1,Chaco,AR-H,annual,2015,naphtha combustion consumption by to the public,84.41923435945999,TJ,CO2,73300.0,kg/TJ,6187929.878548417,kg -62a7aa10-933b-324f-af8c-e0f3438c2e4d,SESCO,II.1.1,Chaco,AR-H,annual,2015,naphtha combustion consumption by to the public,84.41923435945999,TJ,CH4,3.0,kg/TJ,253.25770307837996,kg -aec339bf-2d96-33e3-a1ac-2eaebaf1abbe,SESCO,II.1.1,Chaco,AR-H,annual,2015,naphtha combustion consumption by to the public,84.41923435945999,TJ,N2O,0.6,kg/TJ,50.65154061567599,kg -fe7e1345-7055-33ce-9226-d37c8ee7aad0,SESCO,II.1.1,Chubut,AR-U,annual,2015,naphtha combustion consumption by to the public,69.060893446545,TJ,CO2,73300.0,kg/TJ,5062163.489631748,kg -2146b101-9125-3082-90cf-3114d1a93009,SESCO,II.1.1,Chubut,AR-U,annual,2015,naphtha combustion consumption by to the public,69.060893446545,TJ,CH4,3.0,kg/TJ,207.182680339635,kg -88e6eac9-01cb-37cd-aecd-2eb102cbb315,SESCO,II.1.1,Chubut,AR-U,annual,2015,naphtha combustion consumption by to the public,69.060893446545,TJ,N2O,0.6,kg/TJ,41.436536067926994,kg -1e60d037-e51e-3dc3-920d-c21252d9f694,SESCO,II.1.1,Corrientes,AR-W,annual,2015,naphtha combustion consumption by to the public,106.36721554459,TJ,CO2,73300.0,kg/TJ,7796716.899418447,kg -3c4bd47c-9b35-34a4-a5d8-0fbd618097ad,SESCO,II.1.1,Corrientes,AR-W,annual,2015,naphtha combustion consumption by to the public,106.36721554459,TJ,CH4,3.0,kg/TJ,319.10164663377,kg -5e76d97c-1c0e-3290-879d-e41939b93aac,SESCO,II.1.1,Corrientes,AR-W,annual,2015,naphtha combustion consumption by to the public,106.36721554459,TJ,N2O,0.6,kg/TJ,63.82032932675399,kg -146376eb-b775-3aea-b132-617712a3d8e6,SESCO,II.1.1,Córdoba,AR-X,annual,2015,naphtha combustion consumption by to the public,620.5114829313399,TJ,CO2,73300.0,kg/TJ,45483491.69886721,kg -96310aef-6624-325f-a5da-5fee6914ee9a,SESCO,II.1.1,Córdoba,AR-X,annual,2015,naphtha combustion consumption by to the public,620.5114829313399,TJ,CH4,3.0,kg/TJ,1861.5344487940197,kg -83b2857a-c1d4-3876-9bb7-ececd31bbe93,SESCO,II.1.1,Córdoba,AR-X,annual,2015,naphtha combustion consumption by to the public,620.5114829313399,TJ,N2O,0.6,kg/TJ,372.3068897588039,kg -e4e604ec-fc6b-3992-bb81-36fb5014d98c,SESCO,II.1.1,Entre Rios,AR-E,annual,2015,naphtha combustion consumption by to the public,266.58436756451493,TJ,CO2,73300.0,kg/TJ,19540634.142478943,kg -d99cdade-7182-398b-be6c-3ca0197e718c,SESCO,II.1.1,Entre Rios,AR-E,annual,2015,naphtha combustion consumption by to the public,266.58436756451493,TJ,CH4,3.0,kg/TJ,799.7531026935449,kg -90b2889a-653c-3800-b82e-68862c7bb0de,SESCO,II.1.1,Entre Rios,AR-E,annual,2015,naphtha combustion consumption by to the public,266.58436756451493,TJ,N2O,0.6,kg/TJ,159.95062053870896,kg -d8d2cdc0-d22a-3fb3-9ad5-2f7b23c62c21,SESCO,II.1.1,Formosa,AR-P,annual,2015,naphtha combustion consumption by to the public,124.29234819000999,TJ,CO2,73300.0,kg/TJ,9110629.122327732,kg -f7c8ef06-3db9-3340-bfb6-78df176a61e4,SESCO,II.1.1,Formosa,AR-P,annual,2015,naphtha combustion consumption by to the public,124.29234819000999,TJ,CH4,3.0,kg/TJ,372.87704457002997,kg -23b2af58-a33d-3bca-8b52-75bdd148d2ee,SESCO,II.1.1,Formosa,AR-P,annual,2015,naphtha combustion consumption by to the public,124.29234819000999,TJ,N2O,0.6,kg/TJ,74.57540891400599,kg -6d242c5c-7276-3c8b-81ec-8ffc7f19a8de,SESCO,II.1.1,Jujuy,AR-Y,annual,2015,naphtha combustion consumption by to the public,4.458564575464999,TJ,CO2,73300.0,kg/TJ,326812.78338158445,kg -8d6d6023-9d6c-3255-b9c6-597b49d401cc,SESCO,II.1.1,Jujuy,AR-Y,annual,2015,naphtha combustion consumption by to the public,4.458564575464999,TJ,CH4,3.0,kg/TJ,13.375693726394998,kg -eccaa349-8391-3218-bb7f-59563cb884ed,SESCO,II.1.1,Jujuy,AR-Y,annual,2015,naphtha combustion consumption by to the public,4.458564575464999,TJ,N2O,0.6,kg/TJ,2.6751387452789994,kg -653d1f90-ea91-36f7-8fb3-6c751dfe9ad9,SESCO,II.1.1,La Pampa,AR-L,annual,2015,naphtha combustion consumption by to the public,35.66287281557,TJ,CO2,73300.0,kg/TJ,2614088.5773812807,kg -fadd6698-6725-31ad-aabf-7fa435639159,SESCO,II.1.1,La Pampa,AR-L,annual,2015,naphtha combustion consumption by to the public,35.66287281557,TJ,CH4,3.0,kg/TJ,106.98861844670999,kg -8e8b19bb-6de4-356a-8a18-3ebe9813fa0a,SESCO,II.1.1,La Pampa,AR-L,annual,2015,naphtha combustion consumption by to the public,35.66287281557,TJ,N2O,0.6,kg/TJ,21.397723689341998,kg -3c5c4371-b2a1-3d68-a1bf-a5bff2d0eac8,SESCO,II.1.1,La Rioja,AR-F,annual,2015,naphtha combustion consumption by to the public,17.502020030494997,TJ,CO2,73300.0,kg/TJ,1282898.0682352833,kg -04ab5bd4-2ec2-32ce-8cf1-c7a7ec4212d2,SESCO,II.1.1,La Rioja,AR-F,annual,2015,naphtha combustion consumption by to the public,17.502020030494997,TJ,CH4,3.0,kg/TJ,52.50606009148499,kg -38c842e6-0d06-3117-a7ca-3ea99ccb08c5,SESCO,II.1.1,La Rioja,AR-F,annual,2015,naphtha combustion consumption by to the public,17.502020030494997,TJ,N2O,0.6,kg/TJ,10.501212018296998,kg -5978dcd5-d007-34ce-a7a5-46bdfe280d73,SESCO,II.1.1,Mendoza,AR-M,annual,2015,naphtha combustion consumption by to the public,125.89568604112499,TJ,CO2,73300.0,kg/TJ,9228153.786814462,kg -67957536-9c9d-3727-a8d5-3fcc6ebe847a,SESCO,II.1.1,Mendoza,AR-M,annual,2015,naphtha combustion consumption by to the public,125.89568604112499,TJ,CH4,3.0,kg/TJ,377.687058123375,kg -5a96776f-4e1c-361c-9f8b-66c99b6d8f10,SESCO,II.1.1,Mendoza,AR-M,annual,2015,naphtha combustion consumption by to the public,125.89568604112499,TJ,N2O,0.6,kg/TJ,75.53741162467499,kg -98c514f8-af7f-353e-a1f6-f7630399c58d,SESCO,II.1.1,Misiones,AR-N,annual,2015,naphtha combustion consumption by to the public,123.247246467345,TJ,CO2,73300.0,kg/TJ,9034023.166056387,kg -abf4f3f3-ff2c-357d-9954-87eadbc79bdc,SESCO,II.1.1,Misiones,AR-N,annual,2015,naphtha combustion consumption by to the public,123.247246467345,TJ,CH4,3.0,kg/TJ,369.74173940203497,kg -0483e8a9-1e4e-35fa-8163-571ef77e2aa3,SESCO,II.1.1,Misiones,AR-N,annual,2015,naphtha combustion consumption by to the public,123.247246467345,TJ,N2O,0.6,kg/TJ,73.948347880407,kg -1da937e5-aa38-3e01-9cb3-4c7872559136,SESCO,II.1.1,Neuquén,AR-Q,annual,2015,naphtha combustion consumption by to the public,99.462121814055,TJ,CO2,73300.0,kg/TJ,7290573.528970231,kg -dfcc43b1-0770-36fb-b4cc-246a547d1136,SESCO,II.1.1,Neuquén,AR-Q,annual,2015,naphtha combustion consumption by to the public,99.462121814055,TJ,CH4,3.0,kg/TJ,298.386365442165,kg -c52643d2-7809-360b-b7e4-f23eda34c9bc,SESCO,II.1.1,Neuquén,AR-Q,annual,2015,naphtha combustion consumption by to the public,99.462121814055,TJ,N2O,0.6,kg/TJ,59.677273088433,kg -8410cab3-0500-3a83-922b-59b01cf96de5,SESCO,II.1.1,Rio Negro,AR-R,annual,2015,naphtha combustion consumption by to the public,105.798892314115,TJ,CO2,73300.0,kg/TJ,7755058.806624629,kg -2c51b49e-6eb9-31c5-a8b0-544b8ca53c3f,SESCO,II.1.1,Rio Negro,AR-R,annual,2015,naphtha combustion consumption by to the public,105.798892314115,TJ,CH4,3.0,kg/TJ,317.396676942345,kg -c1ba223a-9657-3893-a2a0-63c359459f07,SESCO,II.1.1,Rio Negro,AR-R,annual,2015,naphtha combustion consumption by to the public,105.798892314115,TJ,N2O,0.6,kg/TJ,63.479335388468996,kg -9698fc35-26f9-3552-85ed-620e60b41f4c,SESCO,II.1.1,Salta,AR-A,annual,2015,naphtha combustion consumption by to the public,8.792095857545,TJ,CO2,73300.0,kg/TJ,644460.6263580485,kg -4168988c-a3b3-3bd5-b95e-9db7120f09f2,SESCO,II.1.1,Salta,AR-A,annual,2015,naphtha combustion consumption by to the public,8.792095857545,TJ,CH4,3.0,kg/TJ,26.376287572635,kg -f4e8f38b-f02d-3802-9112-102f4f94cfc5,SESCO,II.1.1,Salta,AR-A,annual,2015,naphtha combustion consumption by to the public,8.792095857545,TJ,N2O,0.6,kg/TJ,5.2752575145269995,kg -2a7c0069-0934-359c-acce-ed91f002f353,SESCO,II.1.1,San Juan,AR-J,annual,2015,naphtha combustion consumption by to the public,76.57753683579999,TJ,CO2,73300.0,kg/TJ,5613133.450064139,kg -e428cf1b-e49e-308a-8234-da5d52b99e82,SESCO,II.1.1,San Juan,AR-J,annual,2015,naphtha combustion consumption by to the public,76.57753683579999,TJ,CH4,3.0,kg/TJ,229.73261050739995,kg -afb3a06b-d851-3c1a-ba29-d3ecf5904e1d,SESCO,II.1.1,San Juan,AR-J,annual,2015,naphtha combustion consumption by to the public,76.57753683579999,TJ,N2O,0.6,kg/TJ,45.94652210147999,kg -f5829782-4dc4-33dc-82a1-3d75a728a551,SESCO,II.1.1,San Luis,AR-D,annual,2015,naphtha combustion consumption by to the public,139.811066229835,TJ,CO2,73300.0,kg/TJ,10248151.154646905,kg -5ac10642-1da3-3a00-a037-073600b63d04,SESCO,II.1.1,San Luis,AR-D,annual,2015,naphtha combustion consumption by to the public,139.811066229835,TJ,CH4,3.0,kg/TJ,419.43319868950505,kg -df4354da-ab31-3fd9-a60c-8f7f570eb7af,SESCO,II.1.1,San Luis,AR-D,annual,2015,naphtha combustion consumption by to the public,139.811066229835,TJ,N2O,0.6,kg/TJ,83.886639737901,kg -b4fede89-73b5-3412-8b76-9c539d01ebb5,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2015,naphtha combustion consumption by to the public,32.79575983684,TJ,CO2,73300.0,kg/TJ,2403929.196040372,kg -6844d1f9-ac4e-375a-af5e-bca5fa0c492c,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2015,naphtha combustion consumption by to the public,32.79575983684,TJ,CH4,3.0,kg/TJ,98.38727951051999,kg -934eeea1-39ee-3ca0-9547-d59e27167be2,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2015,naphtha combustion consumption by to the public,32.79575983684,TJ,N2O,0.6,kg/TJ,19.677455902103997,kg -c29e4ea7-2a60-3a64-86be-987570fcdd63,SESCO,II.1.1,Santa Fe,AR-S,annual,2015,naphtha combustion consumption by to the public,681.161529323275,TJ,CO2,73300.0,kg/TJ,49929140.09939606,kg -77169093-4692-3b2e-9aaf-5a0a455c0718,SESCO,II.1.1,Santa Fe,AR-S,annual,2015,naphtha combustion consumption by to the public,681.161529323275,TJ,CH4,3.0,kg/TJ,2043.484587969825,kg -6e5c267b-8c0a-35c2-93a9-d8876b2daba3,SESCO,II.1.1,Santa Fe,AR-S,annual,2015,naphtha combustion consumption by to the public,681.161529323275,TJ,N2O,0.6,kg/TJ,408.696917593965,kg -5c8b27da-1fe1-39f3-ad13-c9d1213f0d62,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2015,naphtha combustion consumption by to the public,88.83459121536998,TJ,CO2,73300.0,kg/TJ,6511575.53608662,kg -a4f0c050-63b3-30a0-8267-489f7de6f64d,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2015,naphtha combustion consumption by to the public,88.83459121536998,TJ,CH4,3.0,kg/TJ,266.50377364610995,kg -dacc7640-d2b9-32ac-b743-343af131f131,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2015,naphtha combustion consumption by to the public,88.83459121536998,TJ,N2O,0.6,kg/TJ,53.300754729221985,kg -3ea4d2c3-3e66-3bd8-9170-2bf1f73cbd27,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2015,naphtha combustion consumption by to the public,65.918949811715,TJ,CO2,73300.0,kg/TJ,4831859.0211987095,kg -1851db1e-44e4-37fb-ab71-2ec159c2f65d,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2015,naphtha combustion consumption by to the public,65.918949811715,TJ,CH4,3.0,kg/TJ,197.756849435145,kg -8142b6e4-3576-3ba5-a7b2-47bd3fd4c45a,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2015,naphtha combustion consumption by to the public,65.918949811715,TJ,N2O,0.6,kg/TJ,39.551369887029,kg -bac8748c-0c48-3cff-ae92-c563c0fa6b24,SESCO,II.1.1,Tucuman,AR-T,annual,2015,naphtha combustion consumption by to the public,21.941576576919996,TJ,CO2,73300.0,kg/TJ,1608317.5630882357,kg -1cc91a65-ffa7-338d-a3e1-53abab614359,SESCO,II.1.1,Tucuman,AR-T,annual,2015,naphtha combustion consumption by to the public,21.941576576919996,TJ,CH4,3.0,kg/TJ,65.82472973075998,kg -0c9327d4-bbcd-39d1-abe2-8c3f2522a34f,SESCO,II.1.1,Tucuman,AR-T,annual,2015,naphtha combustion consumption by to the public,21.941576576919996,TJ,N2O,0.6,kg/TJ,13.164945946151997,kg -4a4ec2cf-6f62-3734-9040-202f64a6f171,SESCO,I.3.1,Buenos Aires,AR-B,annual,2015,naphtha combustion consumption by petrochemical industries,512.0880264499999,TJ,CO2,73300.0,kg/TJ,37536052.33878499,kg -2c1a052b-229b-36e2-ba55-770d3e3607af,SESCO,I.3.1,Buenos Aires,AR-B,annual,2015,naphtha combustion consumption by petrochemical industries,512.0880264499999,TJ,CH4,3.0,kg/TJ,1536.2640793499997,kg -bae4d315-5935-335a-b2aa-66e3ba2aa9c6,SESCO,I.3.1,Buenos Aires,AR-B,annual,2015,naphtha combustion consumption by petrochemical industries,512.0880264499999,TJ,N2O,0.6,kg/TJ,307.25281586999995,kg -b6429835-47e6-306c-b457-ea4b698f72ad,SESCO,I.3.1,Buenos Aires,AR-B,annual,2015,naphtha combustion consumption by petrochemical industries,44.18368955,TJ,CO2,73300.0,kg/TJ,3238664.4440149995,kg -f61ab1ac-1767-3b31-a531-eea89a21f900,SESCO,I.3.1,Buenos Aires,AR-B,annual,2015,naphtha combustion consumption by petrochemical industries,44.18368955,TJ,CH4,3.0,kg/TJ,132.55106865,kg -2230ea48-496d-3c24-b666-a93885e3cd46,SESCO,I.3.1,Buenos Aires,AR-B,annual,2015,naphtha combustion consumption by petrochemical industries,44.18368955,TJ,N2O,0.6,kg/TJ,26.510213729999997,kg -315e8a99-93f9-31c7-8517-32a7774279d2,SESCO,II.1.1,Buenos Aires,AR-B,annual,2015,naphtha combustion consumption by freight transport,7.078121049999999,TJ,CO2,73300.0,kg/TJ,518826.27296499995,kg -b05cd9e2-d1cb-3b64-ad7c-a344f3f2a0a7,SESCO,II.1.1,Buenos Aires,AR-B,annual,2015,naphtha combustion consumption by freight transport,7.078121049999999,TJ,CH4,3.0,kg/TJ,21.234363149999997,kg -e09937fc-292e-37f3-81d8-40587f884c90,SESCO,II.1.1,Buenos Aires,AR-B,annual,2015,naphtha combustion consumption by freight transport,7.078121049999999,TJ,N2O,0.6,kg/TJ,4.2468726299999995,kg -ab3dce63-4db9-361e-8a5f-606551803667,SESCO,II.1.1,Capital Federal,AR-C,annual,2015,naphtha combustion consumption by freight transport,5.768512749999999,TJ,CO2,73300.0,kg/TJ,422831.98457499995,kg -0aa4052e-0137-34f6-becb-18c4cd7c3e6d,SESCO,II.1.1,Capital Federal,AR-C,annual,2015,naphtha combustion consumption by freight transport,5.768512749999999,TJ,CH4,3.0,kg/TJ,17.305538249999998,kg -d9962a30-d5df-315c-8672-2086529e92d7,SESCO,II.1.1,Capital Federal,AR-C,annual,2015,naphtha combustion consumption by freight transport,5.768512749999999,TJ,N2O,0.6,kg/TJ,3.4611076499999993,kg -dfca2f44-24cc-34f1-b57c-651b9ce6948b,SESCO,II.1.1,Córdoba,AR-X,annual,2015,naphtha combustion consumption by freight transport,0.6859852999999999,TJ,CO2,73300.0,kg/TJ,50282.72248999999,kg -e23436fc-86ef-3669-8eb5-a86c4c9dbe76,SESCO,II.1.1,Córdoba,AR-X,annual,2015,naphtha combustion consumption by freight transport,0.6859852999999999,TJ,CH4,3.0,kg/TJ,2.0579558999999996,kg -71e76f7a-3f55-3fbe-9dd2-52e65390a4e0,SESCO,II.1.1,Córdoba,AR-X,annual,2015,naphtha combustion consumption by freight transport,0.6859852999999999,TJ,N2O,0.6,kg/TJ,0.41159117999999995,kg -f3242e3d-4f5a-3b9c-b050-717c4436a54f,SESCO,II.1.1,Santa Fe,AR-S,annual,2015,naphtha combustion consumption by freight transport,14.966952,TJ,CO2,73300.0,kg/TJ,1097077.5816,kg -f2f4f594-9554-3650-bc4f-bd7695ebf09b,SESCO,II.1.1,Santa Fe,AR-S,annual,2015,naphtha combustion consumption by freight transport,14.966952,TJ,CH4,3.0,kg/TJ,44.900856,kg -e4df1d5e-c8c8-3cf2-a8ee-4357745a7595,SESCO,II.1.1,Santa Fe,AR-S,annual,2015,naphtha combustion consumption by freight transport,14.966952,TJ,N2O,0.6,kg/TJ,8.9801712,kg -93cd7ba1-6702-35b9-9d36-be7611902aad,SESCO,II.1.1,Tucuman,AR-T,annual,2015,naphtha combustion consumption by freight transport,0.062362299999999996,TJ,CO2,73300.0,kg/TJ,4571.15659,kg -f36103ff-366e-3735-a2de-3c47c5db6823,SESCO,II.1.1,Tucuman,AR-T,annual,2015,naphtha combustion consumption by freight transport,0.062362299999999996,TJ,CH4,3.0,kg/TJ,0.1870869,kg -97de2e61-dd6c-3b6c-a048-c8d548c301f4,SESCO,II.1.1,Tucuman,AR-T,annual,2015,naphtha combustion consumption by freight transport,0.062362299999999996,TJ,N2O,0.6,kg/TJ,0.03741737999999999,kg -b72b7c69-24e6-3ec1-861d-f85f75f2c367,SESCO,II.1.1,Buenos Aires,AR-B,annual,2015,naphtha combustion consumption by freight transport,5.051346299999999,TJ,CO2,73300.0,kg/TJ,370263.6837899999,kg -eb570a8b-65ea-309c-91e1-6c4889b6eeac,SESCO,II.1.1,Buenos Aires,AR-B,annual,2015,naphtha combustion consumption by freight transport,5.051346299999999,TJ,CH4,3.0,kg/TJ,15.154038899999996,kg -e4de9a40-adf1-33d7-9ff7-3158e44f17bd,SESCO,II.1.1,Buenos Aires,AR-B,annual,2015,naphtha combustion consumption by freight transport,5.051346299999999,TJ,N2O,0.6,kg/TJ,3.030807779999999,kg -6fd38983-97ca-3275-8b21-5f77d75bdb90,SESCO,II.1.1,Capital Federal,AR-C,annual,2015,naphtha combustion consumption by freight transport,5.519063549999999,TJ,CO2,73300.0,kg/TJ,404547.35821499996,kg -44f6d17b-9786-3746-9a14-970af5c46b25,SESCO,II.1.1,Capital Federal,AR-C,annual,2015,naphtha combustion consumption by freight transport,5.519063549999999,TJ,CH4,3.0,kg/TJ,16.55719065,kg -33825db9-18a9-3c1b-bb6c-0c834d8ea8e6,SESCO,II.1.1,Capital Federal,AR-C,annual,2015,naphtha combustion consumption by freight transport,5.519063549999999,TJ,N2O,0.6,kg/TJ,3.3114381299999995,kg -635a0d6b-ca40-35cb-a29b-521cdcfa30ec,SESCO,II.1.1,Córdoba,AR-X,annual,2015,naphtha combustion consumption by freight transport,0.8730722,TJ,CO2,73300.0,kg/TJ,63996.192259999996,kg -60de7b98-e8e1-3b0f-9fa1-3194cf26eb0c,SESCO,II.1.1,Córdoba,AR-X,annual,2015,naphtha combustion consumption by freight transport,0.8730722,TJ,CH4,3.0,kg/TJ,2.6192165999999997,kg -99ec01d7-004c-36e4-a549-85ecf97e7a62,SESCO,II.1.1,Córdoba,AR-X,annual,2015,naphtha combustion consumption by freight transport,0.8730722,TJ,N2O,0.6,kg/TJ,0.52384332,kg -04671bdc-4bb1-392e-b244-04407cf53e58,SESCO,II.1.1,Santa Fe,AR-S,annual,2015,naphtha combustion consumption by freight transport,0.84189105,TJ,CO2,73300.0,kg/TJ,61710.613965,kg -4088d627-a796-3552-b983-3f320a36963d,SESCO,II.1.1,Santa Fe,AR-S,annual,2015,naphtha combustion consumption by freight transport,0.84189105,TJ,CH4,3.0,kg/TJ,2.52567315,kg -9bc09164-692f-30cf-af6c-a7c389b55eb1,SESCO,II.1.1,Santa Fe,AR-S,annual,2015,naphtha combustion consumption by freight transport,0.84189105,TJ,N2O,0.6,kg/TJ,0.5051346299999999,kg -f1b4e1f2-8fc2-380b-99c7-619fe1c606fb,SESCO,II.1.1,Buenos Aires,AR-B,annual,2015,naphtha combustion consumption by public passenger transport,0.24944919999999998,TJ,CO2,73300.0,kg/TJ,18284.62636,kg -403e3db5-879a-316a-829c-6a6364f2b896,SESCO,II.1.1,Buenos Aires,AR-B,annual,2015,naphtha combustion consumption by public passenger transport,0.24944919999999998,TJ,CH4,3.0,kg/TJ,0.7483476,kg -4e96e27e-664f-3a92-91ff-3cecee1c81b7,SESCO,II.1.1,Buenos Aires,AR-B,annual,2015,naphtha combustion consumption by public passenger transport,0.24944919999999998,TJ,N2O,0.6,kg/TJ,0.14966951999999997,kg -8a2c8af6-b0b3-316f-81c7-6644307facb2,SESCO,II.1.1,Capital Federal,AR-C,annual,2015,naphtha combustion consumption by public passenger transport,0.09354344999999999,TJ,CO2,73300.0,kg/TJ,6856.734884999999,kg -7df0bdd2-d39a-340d-ab7c-8a62ecb04da3,SESCO,II.1.1,Capital Federal,AR-C,annual,2015,naphtha combustion consumption by public passenger transport,0.09354344999999999,TJ,CH4,3.0,kg/TJ,0.28063035,kg -8a45334b-42f7-3702-9e8e-f341eb68f7f2,SESCO,II.1.1,Capital Federal,AR-C,annual,2015,naphtha combustion consumption by public passenger transport,0.09354344999999999,TJ,N2O,0.6,kg/TJ,0.05612606999999999,kg -119683d4-4ae2-3392-abc7-d0546253b914,SESCO,II.5.1,Córdoba,AR-X,annual,2015,naphtha combustion consumption by agriculture machines,6.378216484639999,TJ,CO2,73300.0,kg/TJ,467523.26832411194,kg -28a914ca-2427-3f31-b6df-823fd16c2b7e,SESCO,II.5.1,Córdoba,AR-X,annual,2015,naphtha combustion consumption by agriculture machines,6.378216484639999,TJ,CH4,3.0,kg/TJ,19.134649453919998,kg -a9bae978-f598-3ec9-b097-a9c22b3c0234,SESCO,II.5.1,Córdoba,AR-X,annual,2015,naphtha combustion consumption by agriculture machines,6.378216484639999,TJ,N2O,0.6,kg/TJ,3.8269298907839993,kg -10f14bc5-2cdb-3528-add4-dce8dc2cf50d,SESCO,II.5.1,Santa Fe,AR-S,annual,2015,naphtha combustion consumption by agriculture machines,13.343876480935,TJ,CO2,73300.0,kg/TJ,978106.1460525355,kg -51e177a3-b74a-34a0-a9fe-c7b51bf19522,SESCO,II.5.1,Santa Fe,AR-S,annual,2015,naphtha combustion consumption by agriculture machines,13.343876480935,TJ,CH4,3.0,kg/TJ,40.031629442805,kg -c43c3b2a-e726-3bd4-aeec-2460a0761f94,SESCO,II.5.1,Santa Fe,AR-S,annual,2015,naphtha combustion consumption by agriculture machines,13.343876480935,TJ,N2O,0.6,kg/TJ,8.006325888561,kg -730e671b-dd9a-386f-9c8b-56a3561f11bb,SESCO,II.5.1,Santiago del Estero,AR-G,annual,2015,naphtha combustion consumption by agriculture machines,14.596816158924998,TJ,CO2,73300.0,kg/TJ,1069946.6244492023,kg -353c380e-53e5-3f51-a3d4-e923ee56e73e,SESCO,II.5.1,Santiago del Estero,AR-G,annual,2015,naphtha combustion consumption by agriculture machines,14.596816158924998,TJ,CH4,3.0,kg/TJ,43.790448476775,kg -35b039b5-84f0-362b-a8e2-3746b68926b3,SESCO,II.5.1,Santiago del Estero,AR-G,annual,2015,naphtha combustion consumption by agriculture machines,14.596816158924998,TJ,N2O,0.6,kg/TJ,8.758089695354998,kg -a394de23-0318-3132-84f3-7f71ccd6e672,SESCO,II.5.1,Santa Fe,AR-S,annual,2015,naphtha combustion consumption by agriculture machines,1.049149035935,TJ,CO2,73300.0,kg/TJ,76902.6243340355,kg -7171a8ba-90b3-348f-b371-a518d9024e53,SESCO,II.5.1,Santa Fe,AR-S,annual,2015,naphtha combustion consumption by agriculture machines,1.049149035935,TJ,CH4,3.0,kg/TJ,3.147447107805,kg -20ee3fff-cd66-3c30-985e-4511dfb0eb7c,SESCO,II.5.1,Santa Fe,AR-S,annual,2015,naphtha combustion consumption by agriculture machines,1.049149035935,TJ,N2O,0.6,kg/TJ,0.629489421561,kg -2c58685e-5952-313a-8967-a5c9a5fb9873,SESCO,II.1.1,Buenos Aires,AR-B,annual,2015,naphtha combustion consumption by to the public,1857.9887716289898,TJ,CO2,73300.0,kg/TJ,136190576.96040496,kg -2b0bec1b-03b2-3769-9267-37c6ced48cd9,SESCO,II.1.1,Buenos Aires,AR-B,annual,2015,naphtha combustion consumption by to the public,1857.9887716289898,TJ,CH4,3.0,kg/TJ,5573.9663148869695,kg -5f02248f-0aab-324c-ad3c-9d3923a34159,SESCO,II.1.1,Buenos Aires,AR-B,annual,2015,naphtha combustion consumption by to the public,1857.9887716289898,TJ,N2O,0.6,kg/TJ,1114.7932629773939,kg -8636453c-fa1f-3347-808a-83c85144abae,SESCO,II.1.1,Capital Federal,AR-C,annual,2015,naphtha combustion consumption by to the public,216.633025864255,TJ,CO2,73300.0,kg/TJ,15879200.795849891,kg -6db0845c-bc97-38dd-be53-edaa278cba98,SESCO,II.1.1,Capital Federal,AR-C,annual,2015,naphtha combustion consumption by to the public,216.633025864255,TJ,CH4,3.0,kg/TJ,649.899077592765,kg -4225c6b1-3702-3149-b276-dce14f05cf0a,SESCO,II.1.1,Capital Federal,AR-C,annual,2015,naphtha combustion consumption by to the public,216.633025864255,TJ,N2O,0.6,kg/TJ,129.97981551855298,kg -246fff0f-f6e3-3c19-a42f-3c738de1989d,SESCO,II.1.1,Catamarca,AR-K,annual,2015,naphtha combustion consumption by to the public,179.32607390697996,TJ,CO2,73300.0,kg/TJ,13144601.21738163,kg -d942c65d-36d7-34f7-9a60-f81bb1651f18,SESCO,II.1.1,Catamarca,AR-K,annual,2015,naphtha combustion consumption by to the public,179.32607390697996,TJ,CH4,3.0,kg/TJ,537.9782217209399,kg -c74e1324-3eab-3854-b5ce-4f8cb9cbd1a1,SESCO,II.1.1,Catamarca,AR-K,annual,2015,naphtha combustion consumption by to the public,179.32607390697996,TJ,N2O,0.6,kg/TJ,107.59564434418797,kg -a4510caf-7a39-30f3-8b78-09b02944178f,SESCO,II.1.1,Chaco,AR-H,annual,2015,naphtha combustion consumption by to the public,302.31133635202497,TJ,CO2,73300.0,kg/TJ,22159420.95460343,kg -24d65742-af41-304b-9964-d3b9373274ce,SESCO,II.1.1,Chaco,AR-H,annual,2015,naphtha combustion consumption by to the public,302.31133635202497,TJ,CH4,3.0,kg/TJ,906.934009056075,kg -94f9e30b-36d2-322d-a680-37e45b245054,SESCO,II.1.1,Chaco,AR-H,annual,2015,naphtha combustion consumption by to the public,302.31133635202497,TJ,N2O,0.6,kg/TJ,181.38680181121498,kg -4d55cea2-0e59-3154-ba9b-f646929ee7d3,SESCO,II.1.1,Corrientes,AR-W,annual,2015,naphtha combustion consumption by to the public,317.41435665439496,TJ,CO2,73300.0,kg/TJ,23266472.34276715,kg -9f2c5ad7-72c7-396d-bc3f-cd0746e11523,SESCO,II.1.1,Corrientes,AR-W,annual,2015,naphtha combustion consumption by to the public,317.41435665439496,TJ,CH4,3.0,kg/TJ,952.2430699631849,kg -ab5e56ae-b263-3212-8cf1-268c83b79b3a,SESCO,II.1.1,Corrientes,AR-W,annual,2015,naphtha combustion consumption by to the public,317.41435665439496,TJ,N2O,0.6,kg/TJ,190.44861399263698,kg -75aeddb7-9a1b-37c1-8169-1b19a212e780,SESCO,II.1.1,Córdoba,AR-X,annual,2015,naphtha combustion consumption by to the public,861.2006724771448,TJ,CO2,73300.0,kg/TJ,63126009.29257472,kg -49fcc7cf-a6a0-358c-aa8c-b177e1b60735,SESCO,II.1.1,Córdoba,AR-X,annual,2015,naphtha combustion consumption by to the public,861.2006724771448,TJ,CH4,3.0,kg/TJ,2583.6020174314344,kg -64c537bf-6387-35d1-8322-4fd3197be7f7,SESCO,II.1.1,Córdoba,AR-X,annual,2015,naphtha combustion consumption by to the public,861.2006724771448,TJ,N2O,0.6,kg/TJ,516.7204034862868,kg -db19481e-20cf-3d19-929b-eb909840627b,SESCO,II.1.1,Entre Rios,AR-E,annual,2015,naphtha combustion consumption by to the public,433.279606174415,TJ,CO2,73300.0,kg/TJ,31759395.13258462,kg -4597595b-b9a4-3671-9967-289a499e0804,SESCO,II.1.1,Entre Rios,AR-E,annual,2015,naphtha combustion consumption by to the public,433.279606174415,TJ,CH4,3.0,kg/TJ,1299.838818523245,kg -856fc775-3273-30a4-978c-7e0d26ebfedb,SESCO,II.1.1,Entre Rios,AR-E,annual,2015,naphtha combustion consumption by to the public,433.279606174415,TJ,N2O,0.6,kg/TJ,259.967763704649,kg -d6060fa6-9451-3b66-b9b3-41ffe172d707,SESCO,II.1.1,Jujuy,AR-Y,annual,2015,naphtha combustion consumption by to the public,58.836619306464996,TJ,CO2,73300.0,kg/TJ,4312724.195163884,kg -c19e77e4-e32e-3096-bac1-a1bdba3d1511,SESCO,II.1.1,Jujuy,AR-Y,annual,2015,naphtha combustion consumption by to the public,58.836619306464996,TJ,CH4,3.0,kg/TJ,176.509857919395,kg -2ee9e462-6e2d-35fc-b5fc-b02e119865c8,SESCO,II.1.1,Jujuy,AR-Y,annual,2015,naphtha combustion consumption by to the public,58.836619306464996,TJ,N2O,0.6,kg/TJ,35.301971583878995,kg -55effa4c-c8dc-31ee-a9a5-2c0a89c67864,SESCO,II.1.1,La Pampa,AR-L,annual,2015,naphtha combustion consumption by to the public,13.539781410154998,TJ,CO2,73300.0,kg/TJ,992465.9773643613,kg -b42eb4d7-8c24-37ad-9ab0-c0c33227c81b,SESCO,II.1.1,La Pampa,AR-L,annual,2015,naphtha combustion consumption by to the public,13.539781410154998,TJ,CH4,3.0,kg/TJ,40.61934423046499,kg -8232d938-37e1-355f-a3a1-721a4b9ceb22,SESCO,II.1.1,La Pampa,AR-L,annual,2015,naphtha combustion consumption by to the public,13.539781410154998,TJ,N2O,0.6,kg/TJ,8.123868846092998,kg -b595adaa-c8e0-3136-b463-f0c0632d78a4,SESCO,II.1.1,La Rioja,AR-F,annual,2015,naphtha combustion consumption by to the public,55.735204930405,TJ,CO2,73300.0,kg/TJ,4085390.5213986863,kg -ba498793-ade7-3788-8cd2-394b6599e2c5,SESCO,II.1.1,La Rioja,AR-F,annual,2015,naphtha combustion consumption by to the public,55.735204930405,TJ,CH4,3.0,kg/TJ,167.205614791215,kg -7496f38a-f34e-3b68-afe0-f986235b6a3e,SESCO,II.1.1,La Rioja,AR-F,annual,2015,naphtha combustion consumption by to the public,55.735204930405,TJ,N2O,0.6,kg/TJ,33.441122958243,kg -2512e748-dca2-3955-9d7f-defef92a9bb1,SESCO,II.1.1,Mendoza,AR-M,annual,2015,naphtha combustion consumption by to the public,300.277377465065,TJ,CO2,73300.0,kg/TJ,22010331.768189266,kg -a355ae87-1ab4-368d-976a-3dba767a7244,SESCO,II.1.1,Mendoza,AR-M,annual,2015,naphtha combustion consumption by to the public,300.277377465065,TJ,CH4,3.0,kg/TJ,900.832132395195,kg -5f6e7f45-e5da-3ba4-949f-398991963706,SESCO,II.1.1,Mendoza,AR-M,annual,2015,naphtha combustion consumption by to the public,300.277377465065,TJ,N2O,0.6,kg/TJ,180.166426479039,kg -922c8b71-39e3-3b81-846f-1ee85382959f,SESCO,II.1.1,Misiones,AR-N,annual,2015,naphtha combustion consumption by to the public,260.75817280513,TJ,CO2,73300.0,kg/TJ,19113574.06661603,kg -52236142-dd16-3b17-8bf2-38bf3ae53405,SESCO,II.1.1,Misiones,AR-N,annual,2015,naphtha combustion consumption by to the public,260.75817280513,TJ,CH4,3.0,kg/TJ,782.27451841539,kg -dcdfc63b-840b-3db9-82fc-80080cac0844,SESCO,II.1.1,Misiones,AR-N,annual,2015,naphtha combustion consumption by to the public,260.75817280513,TJ,N2O,0.6,kg/TJ,156.45490368307802,kg -7a38702b-20ac-3bf7-b9ff-ff947a2fd2d5,SESCO,II.1.1,Salta,AR-A,annual,2015,naphtha combustion consumption by to the public,51.114619981425,TJ,CO2,73300.0,kg/TJ,3746701.6446384527,kg -b6f4e0e0-de30-3a91-bef5-2bdc0b9efa62,SESCO,II.1.1,Salta,AR-A,annual,2015,naphtha combustion consumption by to the public,51.114619981425,TJ,CH4,3.0,kg/TJ,153.343859944275,kg -b451f5d5-0ce2-3a13-b5e4-32c585456a6c,SESCO,II.1.1,Salta,AR-A,annual,2015,naphtha combustion consumption by to the public,51.114619981425,TJ,N2O,0.6,kg/TJ,30.668771988855,kg -3c30ba8a-774d-365a-9e81-6a6332fe2a85,SESCO,II.1.1,San Juan,AR-J,annual,2015,naphtha combustion consumption by to the public,256.92128864401997,TJ,CO2,73300.0,kg/TJ,18832330.457606662,kg -2e5d33ca-df53-3648-9eb4-62a25d21c7d8,SESCO,II.1.1,San Juan,AR-J,annual,2015,naphtha combustion consumption by to the public,256.92128864401997,TJ,CH4,3.0,kg/TJ,770.7638659320598,kg -ae699ee8-cc14-3c94-a6a5-9ef17b204e2c,SESCO,II.1.1,San Juan,AR-J,annual,2015,naphtha combustion consumption by to the public,256.92128864401997,TJ,N2O,0.6,kg/TJ,154.15277318641196,kg -ddecb6fd-4e03-3b46-a820-b48ad7083143,SESCO,II.1.1,San Luis,AR-D,annual,2015,naphtha combustion consumption by to the public,145.214435240875,TJ,CO2,73300.0,kg/TJ,10644218.103156136,kg -bfe7c4d3-2463-390f-b308-0035d5cd9f2b,SESCO,II.1.1,San Luis,AR-D,annual,2015,naphtha combustion consumption by to the public,145.214435240875,TJ,CH4,3.0,kg/TJ,435.643305722625,kg -edd26d2e-42ce-3323-97fb-5f294adf6a21,SESCO,II.1.1,San Luis,AR-D,annual,2015,naphtha combustion consumption by to the public,145.214435240875,TJ,N2O,0.6,kg/TJ,87.128661144525,kg -18f6ecbd-aed4-3e81-9e7b-41ca4bf57464,SESCO,II.1.1,Santa Fe,AR-S,annual,2015,naphtha combustion consumption by to the public,1043.621537883925,TJ,CO2,73300.0,kg/TJ,76497458.7268917,kg -f6e95f55-30eb-3cb2-8000-084bc5a16d74,SESCO,II.1.1,Santa Fe,AR-S,annual,2015,naphtha combustion consumption by to the public,1043.621537883925,TJ,CH4,3.0,kg/TJ,3130.8646136517746,kg -f2b5cb7a-793b-3ab0-94c7-e904f417069a,SESCO,II.1.1,Santa Fe,AR-S,annual,2015,naphtha combustion consumption by to the public,1043.621537883925,TJ,N2O,0.6,kg/TJ,626.1729227303549,kg -56e94183-fd47-36c4-92ec-7c08e2c36df2,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2015,naphtha combustion consumption by to the public,191.45323073376497,TJ,CO2,73300.0,kg/TJ,14033521.812784972,kg -422c7bbd-6f5b-3ec6-8db8-e1dbee1b70de,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2015,naphtha combustion consumption by to the public,191.45323073376497,TJ,CH4,3.0,kg/TJ,574.3596922012949,kg -906e9145-04ae-31d4-aea9-4648b3bf4307,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2015,naphtha combustion consumption by to the public,191.45323073376497,TJ,N2O,0.6,kg/TJ,114.87193844025897,kg -a86b7a97-bd67-3941-971d-42778753da4b,SESCO,II.1.1,Tucuman,AR-T,annual,2015,naphtha combustion consumption by to the public,211.749072449915,TJ,CO2,73300.0,kg/TJ,15521207.010578768,kg -899898ed-b862-34c8-98ad-c602e5e194e8,SESCO,II.1.1,Tucuman,AR-T,annual,2015,naphtha combustion consumption by to the public,211.749072449915,TJ,CH4,3.0,kg/TJ,635.2472173497449,kg -59d7a813-77a4-3a35-aacc-51f1203bc731,SESCO,II.1.1,Tucuman,AR-T,annual,2015,naphtha combustion consumption by to the public,211.749072449915,TJ,N2O,0.6,kg/TJ,127.04944346994898,kg -3cd19cc7-995f-3835-ab6c-5f82c0b90cb1,SESCO,II.1.1,Buenos Aires,AR-B,annual,2015,naphtha combustion consumption by to the public,360.10446288316496,TJ,CO2,73300.0,kg/TJ,26395657.129335992,kg -1c4ccd6a-1dd1-3227-af25-9809517d6f3d,SESCO,II.1.1,Buenos Aires,AR-B,annual,2015,naphtha combustion consumption by to the public,360.10446288316496,TJ,CH4,3.0,kg/TJ,1080.3133886494948,kg -cfd170c8-65b1-3672-badc-3b0b9f1a7fbf,SESCO,II.1.1,Buenos Aires,AR-B,annual,2015,naphtha combustion consumption by to the public,360.10446288316496,TJ,N2O,0.6,kg/TJ,216.06267772989898,kg -23a33f32-6e5d-3e09-8642-075f42c03cf9,SESCO,II.1.1,Capital Federal,AR-C,annual,2015,naphtha combustion consumption by to the public,70.55237827637998,TJ,CO2,73300.0,kg/TJ,5171489.327658652,kg -c64fa9ee-ff2c-3a2e-8ab9-4229e5ba1600,SESCO,II.1.1,Capital Federal,AR-C,annual,2015,naphtha combustion consumption by to the public,70.55237827637998,TJ,CH4,3.0,kg/TJ,211.65713482913995,kg -5ea6fde5-7104-392d-b104-6f477a655c10,SESCO,II.1.1,Capital Federal,AR-C,annual,2015,naphtha combustion consumption by to the public,70.55237827637998,TJ,N2O,0.6,kg/TJ,42.33142696582799,kg -641f3f3f-40da-3950-932b-c28e29a5d451,SESCO,II.1.1,Catamarca,AR-K,annual,2015,naphtha combustion consumption by to the public,19.315924187559997,TJ,CO2,73300.0,kg/TJ,1415857.2429481477,kg -ff676e20-757e-332d-8636-951f10f058b1,SESCO,II.1.1,Catamarca,AR-K,annual,2015,naphtha combustion consumption by to the public,19.315924187559997,TJ,CH4,3.0,kg/TJ,57.94777256267999,kg -a287b24f-73cf-3c43-bdc1-98a5bd82534d,SESCO,II.1.1,Catamarca,AR-K,annual,2015,naphtha combustion consumption by to the public,19.315924187559997,TJ,N2O,0.6,kg/TJ,11.589554512535997,kg -782bfa66-f5df-3943-ab83-b34794c9d4d5,SESCO,II.1.1,Chaco,AR-H,annual,2015,naphtha combustion consumption by to the public,32.139555653204994,TJ,CO2,73300.0,kg/TJ,2355829.429379926,kg -6e1579cf-783d-35ec-9784-788f65f4e773,SESCO,II.1.1,Chaco,AR-H,annual,2015,naphtha combustion consumption by to the public,32.139555653204994,TJ,CH4,3.0,kg/TJ,96.41866695961498,kg -dddbe51b-07e6-39e1-92f1-1decbb667fd8,SESCO,II.1.1,Chaco,AR-H,annual,2015,naphtha combustion consumption by to the public,32.139555653204994,TJ,N2O,0.6,kg/TJ,19.283733391922997,kg -fcdee289-5cff-3f1b-9285-c58478d2416f,SESCO,II.1.1,Corrientes,AR-W,annual,2015,naphtha combustion consumption by to the public,77.155401498175,TJ,CO2,73300.0,kg/TJ,5655490.929816227,kg -d20df7c6-210b-3b53-aa38-d1bb319599d3,SESCO,II.1.1,Corrientes,AR-W,annual,2015,naphtha combustion consumption by to the public,77.155401498175,TJ,CH4,3.0,kg/TJ,231.466204494525,kg -c9068bc1-9f4a-3413-a5e0-fbfce186fac5,SESCO,II.1.1,Corrientes,AR-W,annual,2015,naphtha combustion consumption by to the public,77.155401498175,TJ,N2O,0.6,kg/TJ,46.293240898905,kg -3c7ff509-924b-3188-a6e1-528587397e39,SESCO,II.1.1,Córdoba,AR-X,annual,2015,naphtha combustion consumption by to the public,166.929125297935,TJ,CO2,73300.0,kg/TJ,12235904.884338636,kg -bea06b17-d6e6-3d66-b80b-d50b832ba817,SESCO,II.1.1,Córdoba,AR-X,annual,2015,naphtha combustion consumption by to the public,166.929125297935,TJ,CH4,3.0,kg/TJ,500.787375893805,kg -4bb911c7-5378-3088-af2e-727a2033704f,SESCO,II.1.1,Córdoba,AR-X,annual,2015,naphtha combustion consumption by to the public,166.929125297935,TJ,N2O,0.6,kg/TJ,100.157475178761,kg -42df0572-06f6-35d5-b04e-434d759fd878,SESCO,II.1.1,Entre Rios,AR-E,annual,2015,naphtha combustion consumption by to the public,94.58817754886499,TJ,CO2,73300.0,kg/TJ,6933313.414331804,kg -8bdf2a3c-5dd2-3566-af0a-5a8cacfea738,SESCO,II.1.1,Entre Rios,AR-E,annual,2015,naphtha combustion consumption by to the public,94.58817754886499,TJ,CH4,3.0,kg/TJ,283.76453264659494,kg -f3d0e188-fa37-3004-994e-f65444de02f8,SESCO,II.1.1,Entre Rios,AR-E,annual,2015,naphtha combustion consumption by to the public,94.58817754886499,TJ,N2O,0.6,kg/TJ,56.75290652931899,kg -64c4babe-216f-3c26-98c3-327c47c4514d,SESCO,II.1.1,Jujuy,AR-Y,annual,2015,naphtha combustion consumption by to the public,2.0453493610549995,TJ,CO2,73300.0,kg/TJ,149924.10816533148,kg -9860d87d-fa88-3281-ba98-f23f5e747c7b,SESCO,II.1.1,Jujuy,AR-Y,annual,2015,naphtha combustion consumption by to the public,2.0453493610549995,TJ,CH4,3.0,kg/TJ,6.136048083164999,kg -2e289e48-d34b-37f5-a484-c8900c5e202e,SESCO,II.1.1,Jujuy,AR-Y,annual,2015,naphtha combustion consumption by to the public,2.0453493610549995,TJ,N2O,0.6,kg/TJ,1.2272096166329998,kg -61508afb-2833-33cf-a1e9-0c4af735312d,SESCO,II.1.1,La Pampa,AR-L,annual,2015,naphtha combustion consumption by to the public,2.7586524665699996,TJ,CO2,73300.0,kg/TJ,202209.22579958098,kg -293a6a25-005e-357b-b4e7-c940c53177fc,SESCO,II.1.1,La Pampa,AR-L,annual,2015,naphtha combustion consumption by to the public,2.7586524665699996,TJ,CH4,3.0,kg/TJ,8.275957399709998,kg -d32773ee-466a-31d2-8712-6e2dd1032a2b,SESCO,II.1.1,La Pampa,AR-L,annual,2015,naphtha combustion consumption by to the public,2.7586524665699996,TJ,N2O,0.6,kg/TJ,1.6551914799419998,kg -bcea08ce-ec8d-3b29-a14f-2a16b21ebc4e,SESCO,II.1.1,La Rioja,AR-F,annual,2015,naphtha combustion consumption by to the public,6.701742742695,TJ,CO2,73300.0,kg/TJ,491237.7430395435,kg -b463e8e8-b7f8-3e34-afe1-2266ab3e37fe,SESCO,II.1.1,La Rioja,AR-F,annual,2015,naphtha combustion consumption by to the public,6.701742742695,TJ,CH4,3.0,kg/TJ,20.105228228085,kg -1ab26bac-7757-3199-85ef-44e656da5714,SESCO,II.1.1,La Rioja,AR-F,annual,2015,naphtha combustion consumption by to the public,6.701742742695,TJ,N2O,0.6,kg/TJ,4.021045645617,kg -0f036d19-6067-3483-8378-7d6bde882abb,SESCO,II.1.1,Mendoza,AR-M,annual,2015,naphtha combustion consumption by to the public,51.001070705585,TJ,CO2,73300.0,kg/TJ,3738378.4827193804,kg -50dd8721-a629-393a-84b8-2b2cdf5bb62f,SESCO,II.1.1,Mendoza,AR-M,annual,2015,naphtha combustion consumption by to the public,51.001070705585,TJ,CH4,3.0,kg/TJ,153.003212116755,kg -5d34f4d0-9cb6-3cd7-8198-1afaec6257ab,SESCO,II.1.1,Mendoza,AR-M,annual,2015,naphtha combustion consumption by to the public,51.001070705585,TJ,N2O,0.6,kg/TJ,30.600642423350997,kg -49b07d5a-b555-390b-a3f8-4a3aa125a65e,SESCO,II.1.1,Misiones,AR-N,annual,2015,naphtha combustion consumption by to the public,41.100388303974995,TJ,CO2,73300.0,kg/TJ,3012658.462681367,kg -36804aed-7e2a-342d-bfd0-e5b51b5c2e18,SESCO,II.1.1,Misiones,AR-N,annual,2015,naphtha combustion consumption by to the public,41.100388303974995,TJ,CH4,3.0,kg/TJ,123.30116491192499,kg -f7d69c81-6700-3a92-bf7d-4b5b43299a6b,SESCO,II.1.1,Misiones,AR-N,annual,2015,naphtha combustion consumption by to the public,41.100388303974995,TJ,N2O,0.6,kg/TJ,24.660232982384997,kg -76922c9e-2e42-3a75-ad9b-15af4892733d,SESCO,II.1.1,Salta,AR-A,annual,2015,naphtha combustion consumption by to the public,1.7342612637349997,TJ,CO2,73300.0,kg/TJ,127121.35063177548,kg -a48ea9c4-8ae2-39be-a833-d8eef2564ffe,SESCO,II.1.1,Salta,AR-A,annual,2015,naphtha combustion consumption by to the public,1.7342612637349997,TJ,CH4,3.0,kg/TJ,5.202783791204999,kg -850dc348-856d-3fe9-9a49-5070f1e7b7cd,SESCO,II.1.1,Salta,AR-A,annual,2015,naphtha combustion consumption by to the public,1.7342612637349997,TJ,N2O,0.6,kg/TJ,1.0405567582409998,kg -c34cebe9-df0b-3e19-ab9d-5abf56271a7a,SESCO,II.1.1,San Juan,AR-J,annual,2015,naphtha combustion consumption by to the public,53.775164077635,TJ,CO2,73300.0,kg/TJ,3941719.5268906453,kg -efe6c552-2eab-396d-9d8d-181f60fe4b2c,SESCO,II.1.1,San Juan,AR-J,annual,2015,naphtha combustion consumption by to the public,53.775164077635,TJ,CH4,3.0,kg/TJ,161.325492232905,kg -63f5ecd6-ae7f-3513-934b-3719259fe399,SESCO,II.1.1,San Juan,AR-J,annual,2015,naphtha combustion consumption by to the public,53.775164077635,TJ,N2O,0.6,kg/TJ,32.265098446581,kg -c2420f01-f9a4-3da5-891b-ff5a1fd706d7,SESCO,II.1.1,San Luis,AR-D,annual,2015,naphtha combustion consumption by to the public,40.76334189927999,TJ,CO2,73300.0,kg/TJ,2987952.9612172237,kg -6729171e-977d-398c-b9dd-b18dd425ce00,SESCO,II.1.1,San Luis,AR-D,annual,2015,naphtha combustion consumption by to the public,40.76334189927999,TJ,CH4,3.0,kg/TJ,122.29002569783998,kg -1308eaba-1f88-311b-9648-0b870a770d60,SESCO,II.1.1,San Luis,AR-D,annual,2015,naphtha combustion consumption by to the public,40.76334189927999,TJ,N2O,0.6,kg/TJ,24.458005139567994,kg -af60f673-f03e-3539-aacb-da85fa4347a5,SESCO,II.1.1,Santa Fe,AR-S,annual,2015,naphtha combustion consumption by to the public,224.30787929049498,TJ,CO2,73300.0,kg/TJ,16441767.551993283,kg -cb797409-0219-3c20-aa16-bd78a4198db6,SESCO,II.1.1,Santa Fe,AR-S,annual,2015,naphtha combustion consumption by to the public,224.30787929049498,TJ,CH4,3.0,kg/TJ,672.923637871485,kg -14f3b189-415b-3a7b-adae-446e84e4d8b5,SESCO,II.1.1,Santa Fe,AR-S,annual,2015,naphtha combustion consumption by to the public,224.30787929049498,TJ,N2O,0.6,kg/TJ,134.58472757429698,kg -4c531e1c-a23c-3c54-96eb-c45880b5ee39,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2015,naphtha combustion consumption by to the public,26.179334956774998,TJ,CO2,73300.0,kg/TJ,1918945.2523316073,kg -1d04eb91-b984-3ef1-9804-e6485603ad48,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2015,naphtha combustion consumption by to the public,26.179334956774998,TJ,CH4,3.0,kg/TJ,78.538004870325,kg -db728aa0-a6e5-3a2b-b579-f9256da151af,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2015,naphtha combustion consumption by to the public,26.179334956774998,TJ,N2O,0.6,kg/TJ,15.707600974064999,kg -7610a4cf-0a41-3056-b163-91b52a06137a,SESCO,II.1.1,Tucuman,AR-T,annual,2015,naphtha combustion consumption by to the public,25.052105203124995,TJ,CO2,73300.0,kg/TJ,1836319.311389062,kg -eea6a22c-7831-3a8b-8f94-83260d2c90b9,SESCO,II.1.1,Tucuman,AR-T,annual,2015,naphtha combustion consumption by to the public,25.052105203124995,TJ,CH4,3.0,kg/TJ,75.15631560937499,kg -f15667e0-bafa-35cb-895a-81859ce7b049,SESCO,II.1.1,Tucuman,AR-T,annual,2015,naphtha combustion consumption by to the public,25.052105203124995,TJ,N2O,0.6,kg/TJ,15.031263121874996,kg -6f4ea12f-8b72-3fea-bfbc-651cb195abfe,SESCO,II.5.1,Buenos Aires,AR-B,annual,2015,naphtha combustion consumption by agriculture machines,8.040496063600001,TJ,CO2,73300.0,kg/TJ,589368.36146188,kg -3c3e987b-d7dc-3a5b-9f5b-f9475fbd56dc,SESCO,II.5.1,Buenos Aires,AR-B,annual,2015,naphtha combustion consumption by agriculture machines,8.040496063600001,TJ,CH4,3.0,kg/TJ,24.1214881908,kg -d5b79998-d91c-371c-955a-778e7e5382b4,SESCO,II.5.1,Buenos Aires,AR-B,annual,2015,naphtha combustion consumption by agriculture machines,8.040496063600001,TJ,N2O,0.6,kg/TJ,4.82429763816,kg -b576071b-6bbc-3f5d-a186-de34d8ac7135,SESCO,II.5.1,Rio Negro,AR-R,annual,2015,naphtha combustion consumption by agriculture machines,0.21415213819999998,TJ,CO2,73300.0,kg/TJ,15697.351730059998,kg -c4480d99-2aed-3682-b0a9-b355e2c110ce,SESCO,II.5.1,Rio Negro,AR-R,annual,2015,naphtha combustion consumption by agriculture machines,0.21415213819999998,TJ,CH4,3.0,kg/TJ,0.6424564145999999,kg -1c1d43c0-cbc7-3264-bfb1-5e33ef22ed23,SESCO,II.5.1,Rio Negro,AR-R,annual,2015,naphtha combustion consumption by agriculture machines,0.21415213819999998,TJ,N2O,0.6,kg/TJ,0.12849128291999998,kg -d2f8cacf-12f8-3c6a-ab26-60cf222c86d0,SESCO,II.1.1,Buenos Aires,AR-B,annual,2015,naphtha combustion consumption by to the public,4265.75228624545,TJ,CO2,73300.0,kg/TJ,312679642.58179146,kg -b97a0390-d7d6-3677-a17f-ec343bef708d,SESCO,II.1.1,Buenos Aires,AR-B,annual,2015,naphtha combustion consumption by to the public,4265.75228624545,TJ,CH4,3.0,kg/TJ,12797.25685873635,kg -260a46f6-e065-3c6b-88e7-0465adead218,SESCO,II.1.1,Buenos Aires,AR-B,annual,2015,naphtha combustion consumption by to the public,4265.75228624545,TJ,N2O,0.6,kg/TJ,2559.4513717472696,kg -f1aa0eee-143c-39ff-a6e5-9b67aa0ddb15,SESCO,II.1.1,Capital Federal,AR-C,annual,2015,naphtha combustion consumption by to the public,452.20671701205,TJ,CO2,73300.0,kg/TJ,33146752.356983263,kg -c1cbe901-b97d-31ad-aaed-3ff231414880,SESCO,II.1.1,Capital Federal,AR-C,annual,2015,naphtha combustion consumption by to the public,452.20671701205,TJ,CH4,3.0,kg/TJ,1356.62015103615,kg -df8d611b-3a30-347c-9cf0-a5367c11f96b,SESCO,II.1.1,Capital Federal,AR-C,annual,2015,naphtha combustion consumption by to the public,452.20671701205,TJ,N2O,0.6,kg/TJ,271.32403020722995,kg -620587d6-d1d8-3a22-b01c-bad82f67cbfa,SESCO,II.1.1,Chaco,AR-H,annual,2015,naphtha combustion consumption by to the public,1.05439058725,TJ,CO2,73300.0,kg/TJ,77286.830045425,kg -59bf409d-a8b6-331c-a7c0-ab7b58fb6b4b,SESCO,II.1.1,Chaco,AR-H,annual,2015,naphtha combustion consumption by to the public,1.05439058725,TJ,CH4,3.0,kg/TJ,3.1631717617499997,kg -5a7b348d-817f-36eb-bbb2-9842f22e8f1f,SESCO,II.1.1,Chaco,AR-H,annual,2015,naphtha combustion consumption by to the public,1.05439058725,TJ,N2O,0.6,kg/TJ,0.6326343523499999,kg -7e10cbbf-db6a-3395-9d61-2555ed3f997d,SESCO,II.1.1,Chubut,AR-U,annual,2015,naphtha combustion consumption by to the public,1456.6798689442999,TJ,CO2,73300.0,kg/TJ,106774634.39361718,kg -6c9baabc-4b55-3671-8102-b6d3a50d8ba5,SESCO,II.1.1,Chubut,AR-U,annual,2015,naphtha combustion consumption by to the public,1456.6798689442999,TJ,CH4,3.0,kg/TJ,4370.039606832899,kg -80e6e7cc-171a-382e-b164-f1d9e6cfc104,SESCO,II.1.1,Chubut,AR-U,annual,2015,naphtha combustion consumption by to the public,1456.6798689442999,TJ,N2O,0.6,kg/TJ,874.0079213665799,kg -93aa97cb-0b06-3d5f-88a6-7c39b3901943,SESCO,II.1.1,Córdoba,AR-X,annual,2015,naphtha combustion consumption by to the public,507.7368216920999,TJ,CO2,73300.0,kg/TJ,37217109.03003092,kg -c48bc961-33c1-38a6-9826-a1ccfa987e0c,SESCO,II.1.1,Córdoba,AR-X,annual,2015,naphtha combustion consumption by to the public,507.7368216920999,TJ,CH4,3.0,kg/TJ,1523.2104650762997,kg -36ad3041-2083-329b-bd08-683d4559aefa,SESCO,II.1.1,Córdoba,AR-X,annual,2015,naphtha combustion consumption by to the public,507.7368216920999,TJ,N2O,0.6,kg/TJ,304.64209301525995,kg -220d0e17-0300-3b46-830d-97dca023b197,SESCO,II.1.1,Entre Rios,AR-E,annual,2015,naphtha combustion consumption by to the public,110.09156693534999,TJ,CO2,73300.0,kg/TJ,8069711.8563611545,kg -fc11d4a2-827c-3046-8b99-1286bf6c71fa,SESCO,II.1.1,Entre Rios,AR-E,annual,2015,naphtha combustion consumption by to the public,110.09156693534999,TJ,CH4,3.0,kg/TJ,330.27470080604996,kg -63a01242-8edc-382e-9f4d-33b41b55424b,SESCO,II.1.1,Entre Rios,AR-E,annual,2015,naphtha combustion consumption by to the public,110.09156693534999,TJ,N2O,0.6,kg/TJ,66.05494016120998,kg -754994c5-d61b-315b-987f-bbbb123bbd3d,SESCO,II.1.1,La Pampa,AR-L,annual,2015,naphtha combustion consumption by to the public,212.48694006539995,TJ,CO2,73300.0,kg/TJ,15575292.706793817,kg -c0619293-468e-37ef-84c6-2c564b2999be,SESCO,II.1.1,La Pampa,AR-L,annual,2015,naphtha combustion consumption by to the public,212.48694006539995,TJ,CH4,3.0,kg/TJ,637.4608201961998,kg -1d2cbc87-e69a-33c3-8397-cd8aa711b32d,SESCO,II.1.1,La Pampa,AR-L,annual,2015,naphtha combustion consumption by to the public,212.48694006539995,TJ,N2O,0.6,kg/TJ,127.49216403923997,kg -a29bb5a8-35c7-35d8-b55c-55ee415bcf55,SESCO,II.1.1,Mendoza,AR-M,annual,2015,naphtha combustion consumption by to the public,20.349286207249996,TJ,CO2,73300.0,kg/TJ,1491602.6789914246,kg -3034a1a3-e71f-31b4-9cb0-8ec1feb00cd2,SESCO,II.1.1,Mendoza,AR-M,annual,2015,naphtha combustion consumption by to the public,20.349286207249996,TJ,CH4,3.0,kg/TJ,61.04785862174999,kg -11404396-9862-30c4-9fa7-10b9422cc29d,SESCO,II.1.1,Mendoza,AR-M,annual,2015,naphtha combustion consumption by to the public,20.349286207249996,TJ,N2O,0.6,kg/TJ,12.209571724349997,kg -0076a605-3467-3bd4-89d3-c789f7cbde14,SESCO,II.1.1,Neuquén,AR-Q,annual,2015,naphtha combustion consumption by to the public,568.6506325499998,TJ,CO2,73300.0,kg/TJ,41682091.365914986,kg -2c9878d4-40d6-3d40-9bd8-792dea1fd967,SESCO,II.1.1,Neuquén,AR-Q,annual,2015,naphtha combustion consumption by to the public,568.6506325499998,TJ,CH4,3.0,kg/TJ,1705.9518976499994,kg -a47c1969-9233-3155-b4b2-e845f4ea8e07,SESCO,II.1.1,Neuquén,AR-Q,annual,2015,naphtha combustion consumption by to the public,568.6506325499998,TJ,N2O,0.6,kg/TJ,341.1903795299999,kg -05523f11-cc94-3683-ac68-535743d28e72,SESCO,II.1.1,Rio Negro,AR-R,annual,2015,naphtha combustion consumption by to the public,1196.5943421432,TJ,CO2,73300.0,kg/TJ,87710365.27909656,kg -0998ef52-41e4-3d7d-9123-6944842c50b4,SESCO,II.1.1,Rio Negro,AR-R,annual,2015,naphtha combustion consumption by to the public,1196.5943421432,TJ,CH4,3.0,kg/TJ,3589.7830264296,kg -c0e587f4-d7b6-39b2-99cc-924fe507282d,SESCO,II.1.1,Rio Negro,AR-R,annual,2015,naphtha combustion consumption by to the public,1196.5943421432,TJ,N2O,0.6,kg/TJ,717.95660528592,kg -0bfa0b62-7c69-3f87-8177-714102f83944,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2015,naphtha combustion consumption by to the public,842.2185144373,TJ,CO2,73300.0,kg/TJ,61734617.10825409,kg -9c9cd189-3edd-3017-b532-ffe28eaf91f2,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2015,naphtha combustion consumption by to the public,842.2185144373,TJ,CH4,3.0,kg/TJ,2526.6555433119,kg -a1b35d89-5c5f-3f4a-96be-a75d21256f70,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2015,naphtha combustion consumption by to the public,842.2185144373,TJ,N2O,0.6,kg/TJ,505.33110866237996,kg -d91ed15c-5669-3718-a45c-5bdfa3405af1,SESCO,II.1.1,Santa Fe,AR-S,annual,2015,naphtha combustion consumption by to the public,544.8735089798,TJ,CO2,73300.0,kg/TJ,39939228.20821934,kg -e4ea1302-1263-398f-a037-a49813c39276,SESCO,II.1.1,Santa Fe,AR-S,annual,2015,naphtha combustion consumption by to the public,544.8735089798,TJ,CH4,3.0,kg/TJ,1634.6205269394,kg -ce10a253-82c4-3f18-8a45-7f898258500e,SESCO,II.1.1,Santa Fe,AR-S,annual,2015,naphtha combustion consumption by to the public,544.8735089798,TJ,N2O,0.6,kg/TJ,326.92410538788,kg -3d29328c-aaba-3881-8b8e-00350c270088,SESCO,II.1.1,Buenos Aires,AR-B,annual,2015,naphtha combustion consumption by to the public,1204.79258364465,TJ,CO2,73300.0,kg/TJ,88311296.38115284,kg -c952cb92-074e-367d-98e3-bf11fbae9422,SESCO,II.1.1,Buenos Aires,AR-B,annual,2015,naphtha combustion consumption by to the public,1204.79258364465,TJ,CH4,3.0,kg/TJ,3614.3777509339498,kg -69eb5cbb-0d30-39b7-904b-006b82013164,SESCO,II.1.1,Buenos Aires,AR-B,annual,2015,naphtha combustion consumption by to the public,1204.79258364465,TJ,N2O,0.6,kg/TJ,722.87555018679,kg -8d70eabd-e61c-3520-8931-7a0900a96fc8,SESCO,II.1.1,Capital Federal,AR-C,annual,2015,naphtha combustion consumption by to the public,239.33194580295,TJ,CO2,73300.0,kg/TJ,17543031.627356235,kg -ddf77511-e1bb-3d73-bc4e-78fa8755acf3,SESCO,II.1.1,Capital Federal,AR-C,annual,2015,naphtha combustion consumption by to the public,239.33194580295,TJ,CH4,3.0,kg/TJ,717.99583740885,kg -2cbaeebb-42ba-3da2-aec3-a234f4ef1a6a,SESCO,II.1.1,Capital Federal,AR-C,annual,2015,naphtha combustion consumption by to the public,239.33194580295,TJ,N2O,0.6,kg/TJ,143.59916748177,kg -2dd260ce-6a9d-3860-a25d-271263057714,SESCO,II.1.1,Chubut,AR-U,annual,2015,naphtha combustion consumption by to the public,302.17007015195,TJ,CO2,73300.0,kg/TJ,22149066.142137934,kg -d34f7edc-54d7-341e-a68f-30e5731acfc4,SESCO,II.1.1,Chubut,AR-U,annual,2015,naphtha combustion consumption by to the public,302.17007015195,TJ,CH4,3.0,kg/TJ,906.5102104558499,kg -912e000b-701f-3bb0-be57-a4dd79c8041f,SESCO,II.1.1,Chubut,AR-U,annual,2015,naphtha combustion consumption by to the public,302.17007015195,TJ,N2O,0.6,kg/TJ,181.30204209116997,kg -598807d0-9d37-3f57-82fd-d49253b6dfbc,SESCO,II.1.1,Córdoba,AR-X,annual,2015,naphtha combustion consumption by to the public,124.72060881279998,TJ,CO2,73300.0,kg/TJ,9142020.625978239,kg -cfd1b326-93ca-31eb-a882-7dbac582a08b,SESCO,II.1.1,Córdoba,AR-X,annual,2015,naphtha combustion consumption by to the public,124.72060881279998,TJ,CH4,3.0,kg/TJ,374.16182643839994,kg -cd5a4e19-68a9-31a9-82f1-56dece1d7d27,SESCO,II.1.1,Córdoba,AR-X,annual,2015,naphtha combustion consumption by to the public,124.72060881279998,TJ,N2O,0.6,kg/TJ,74.83236528767999,kg -d83127de-00da-3a59-b212-884ba92b1e00,SESCO,II.1.1,Entre Rios,AR-E,annual,2015,naphtha combustion consumption by to the public,36.85452906134999,TJ,CO2,73300.0,kg/TJ,2701436.9801969547,kg -89da6634-bc86-3788-96aa-9e20913b8b23,SESCO,II.1.1,Entre Rios,AR-E,annual,2015,naphtha combustion consumption by to the public,36.85452906134999,TJ,CH4,3.0,kg/TJ,110.56358718404998,kg -0929efc0-609f-3a47-8f22-e56e31a079b5,SESCO,II.1.1,Entre Rios,AR-E,annual,2015,naphtha combustion consumption by to the public,36.85452906134999,TJ,N2O,0.6,kg/TJ,22.112717436809994,kg -60fa1c89-d9ce-3058-aaab-29537da7f1bf,SESCO,II.1.1,La Pampa,AR-L,annual,2015,naphtha combustion consumption by to the public,63.6896191932,TJ,CO2,73300.0,kg/TJ,4668449.08686156,kg -0f7e0230-7f9f-3d26-881e-3e36c562a383,SESCO,II.1.1,La Pampa,AR-L,annual,2015,naphtha combustion consumption by to the public,63.6896191932,TJ,CH4,3.0,kg/TJ,191.0688575796,kg -48ee9342-c04d-3eda-8ed8-457756090c69,SESCO,II.1.1,La Pampa,AR-L,annual,2015,naphtha combustion consumption by to the public,63.6896191932,TJ,N2O,0.6,kg/TJ,38.21377151592,kg -b573719a-92ef-3583-a188-22c515eb16e9,SESCO,II.1.1,Mendoza,AR-M,annual,2015,naphtha combustion consumption by to the public,3.79028705055,TJ,CO2,73300.0,kg/TJ,277828.040805315,kg -8b3333db-f8f4-3ad6-8a4a-0ae33cd6a4a2,SESCO,II.1.1,Mendoza,AR-M,annual,2015,naphtha combustion consumption by to the public,3.79028705055,TJ,CH4,3.0,kg/TJ,11.37086115165,kg -8854c183-bc75-35b0-9fc3-d31d18a05384,SESCO,II.1.1,Mendoza,AR-M,annual,2015,naphtha combustion consumption by to the public,3.79028705055,TJ,N2O,0.6,kg/TJ,2.27417223033,kg -8848f89c-1a9f-3fd9-a449-a62878fa4b2b,SESCO,II.1.1,Neuquén,AR-Q,annual,2015,naphtha combustion consumption by to the public,219.89461468974997,TJ,CO2,73300.0,kg/TJ,16118275.256758673,kg -5028a1e8-c1bf-35fb-8a75-6d8b5c5f7ff1,SESCO,II.1.1,Neuquén,AR-Q,annual,2015,naphtha combustion consumption by to the public,219.89461468974997,TJ,CH4,3.0,kg/TJ,659.68384406925,kg -fef87696-43f5-3fa8-bf22-18af13051015,SESCO,II.1.1,Neuquén,AR-Q,annual,2015,naphtha combustion consumption by to the public,219.89461468974997,TJ,N2O,0.6,kg/TJ,131.93676881384997,kg -befa5376-9316-3820-bf73-24654c93b909,SESCO,II.1.1,Rio Negro,AR-R,annual,2015,naphtha combustion consumption by to the public,229.25597544849998,TJ,CO2,73300.0,kg/TJ,16804463.000375047,kg -d2f5dc57-52b1-30f1-9318-979668e88f34,SESCO,II.1.1,Rio Negro,AR-R,annual,2015,naphtha combustion consumption by to the public,229.25597544849998,TJ,CH4,3.0,kg/TJ,687.7679263455,kg -15f23a6d-b688-3295-ac9f-a16c6e25ebae,SESCO,II.1.1,Rio Negro,AR-R,annual,2015,naphtha combustion consumption by to the public,229.25597544849998,TJ,N2O,0.6,kg/TJ,137.55358526909998,kg -fd1a8329-3c91-3e4e-abb3-ae0049f7d81b,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2015,naphtha combustion consumption by to the public,189.16181844559998,TJ,CO2,73300.0,kg/TJ,13865561.292062478,kg -6c69a103-774f-37c2-a89e-abf11eba2af9,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2015,naphtha combustion consumption by to the public,189.16181844559998,TJ,CH4,3.0,kg/TJ,567.4854553368,kg -2df8874d-363b-3c88-886c-37b01e2a38f0,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2015,naphtha combustion consumption by to the public,189.16181844559998,TJ,N2O,0.6,kg/TJ,113.49709106735999,kg -59b81a30-b9bf-37ac-8683-0bb39cae22cc,SESCO,II.1.1,Santa Fe,AR-S,annual,2015,naphtha combustion consumption by to the public,189.41472875325,TJ,CO2,73300.0,kg/TJ,13884099.617613224,kg -41bdfce1-b34b-3374-a493-608089c6f321,SESCO,II.1.1,Santa Fe,AR-S,annual,2015,naphtha combustion consumption by to the public,189.41472875325,TJ,CH4,3.0,kg/TJ,568.24418625975,kg -95505d63-4c75-314b-96c9-75e213719c25,SESCO,II.1.1,Santa Fe,AR-S,annual,2015,naphtha combustion consumption by to the public,189.41472875325,TJ,N2O,0.6,kg/TJ,113.64883725194998,kg -ce32d31c-86be-3a40-8509-71509a5355f7,SESCO,II.1.1,Buenos Aires,AR-B,annual,2015,naphtha combustion consumption by to the public,385.4863212199999,TJ,CO2,73300.0,kg/TJ,28256147.345425993,kg -cffec005-d44c-38d5-913e-b4353e5ee973,SESCO,II.1.1,Buenos Aires,AR-B,annual,2015,naphtha combustion consumption by to the public,385.4863212199999,TJ,CH4,3.0,kg/TJ,1156.4589636599999,kg -4fb25c81-ca9b-3f3e-bc1f-d48030059435,SESCO,II.1.1,Buenos Aires,AR-B,annual,2015,naphtha combustion consumption by to the public,385.4863212199999,TJ,N2O,0.6,kg/TJ,231.29179273199995,kg -55a75d0b-2874-35de-8b27-ee023c23fad8,SESCO,II.1.1,Capital Federal,AR-C,annual,2015,naphtha combustion consumption by to the public,15.55939385,TJ,CO2,73300.0,kg/TJ,1140503.569205,kg -8f7c6318-9463-306d-b485-5e734bb36745,SESCO,II.1.1,Capital Federal,AR-C,annual,2015,naphtha combustion consumption by to the public,15.55939385,TJ,CH4,3.0,kg/TJ,46.67818155,kg -3708e90c-e0e5-3155-b704-73cdc774c6c3,SESCO,II.1.1,Capital Federal,AR-C,annual,2015,naphtha combustion consumption by to the public,15.55939385,TJ,N2O,0.6,kg/TJ,9.33563631,kg -d00cfde7-c0e2-3425-b132-ceb2b30e81ba,SESCO,II.1.1,Córdoba,AR-X,annual,2015,naphtha combustion consumption by to the public,98.31416594999999,TJ,CO2,73300.0,kg/TJ,7206428.364134999,kg -4a50ee0c-2be2-3552-89d9-e94a7748cae5,SESCO,II.1.1,Córdoba,AR-X,annual,2015,naphtha combustion consumption by to the public,98.31416594999999,TJ,CH4,3.0,kg/TJ,294.94249785,kg -f53c706f-03ce-3783-ae66-f1d6352c2007,SESCO,II.1.1,Córdoba,AR-X,annual,2015,naphtha combustion consumption by to the public,98.31416594999999,TJ,N2O,0.6,kg/TJ,58.98849956999999,kg -1182062f-fff3-33e7-a7ef-20cacfb81534,SESCO,II.1.1,Entre Rios,AR-E,annual,2015,naphtha combustion consumption by to the public,25.194369199999997,TJ,CO2,73300.0,kg/TJ,1846747.2623599998,kg -ba462ab8-6cc4-3557-b2a1-21c522ae71c4,SESCO,II.1.1,Entre Rios,AR-E,annual,2015,naphtha combustion consumption by to the public,25.194369199999997,TJ,CH4,3.0,kg/TJ,75.58310759999999,kg -783f1116-027e-30b9-b0e0-0d14e213ef5a,SESCO,II.1.1,Entre Rios,AR-E,annual,2015,naphtha combustion consumption by to the public,25.194369199999997,TJ,N2O,0.6,kg/TJ,15.116621519999997,kg -e61fcdce-25ef-3095-82e4-f54465d18209,SESCO,II.1.1,Salta,AR-A,annual,2015,naphtha combustion consumption by to the public,4.02236835,TJ,CO2,73300.0,kg/TJ,294839.600055,kg -a6c7d628-deac-3319-9ae2-81397e39a683,SESCO,II.1.1,Salta,AR-A,annual,2015,naphtha combustion consumption by to the public,4.02236835,TJ,CH4,3.0,kg/TJ,12.067105049999999,kg -c0c37d62-969e-3f3e-b103-961116fd0437,SESCO,II.1.1,Salta,AR-A,annual,2015,naphtha combustion consumption by to the public,4.02236835,TJ,N2O,0.6,kg/TJ,2.41342101,kg -6316d123-162d-3593-ba52-4f350bdcf94d,SESCO,II.1.1,Santa Fe,AR-S,annual,2015,naphtha combustion consumption by to the public,16.80663985,TJ,CO2,73300.0,kg/TJ,1231926.701005,kg -619709bf-3065-300d-b634-50757791f787,SESCO,II.1.1,Santa Fe,AR-S,annual,2015,naphtha combustion consumption by to the public,16.80663985,TJ,CH4,3.0,kg/TJ,50.41991955,kg -80b7b1f3-9cf9-3658-a2fe-c7dbbc4631ee,SESCO,II.1.1,Santa Fe,AR-S,annual,2015,naphtha combustion consumption by to the public,16.80663985,TJ,N2O,0.6,kg/TJ,10.083983909999999,kg -b96850aa-275f-3f9b-b6ea-36e3a03319c5,SESCO,II.1.1,Buenos Aires,AR-B,annual,2015,naphtha combustion consumption by to the public,61.448692304999994,TJ,CO2,73300.0,kg/TJ,4504189.1459564995,kg -6d446e73-617b-3580-9bfc-68f01a2fbd9b,SESCO,II.1.1,Buenos Aires,AR-B,annual,2015,naphtha combustion consumption by to the public,61.448692304999994,TJ,CH4,3.0,kg/TJ,184.34607691499997,kg -c8ad6cd7-3ace-3c64-9390-6fef217e4f90,SESCO,II.1.1,Buenos Aires,AR-B,annual,2015,naphtha combustion consumption by to the public,61.448692304999994,TJ,N2O,0.6,kg/TJ,36.869215383,kg -50148584-0c62-30d6-ad7b-5498a1539420,SESCO,II.1.1,Capital Federal,AR-C,annual,2015,naphtha combustion consumption by to the public,1.5278763499999999,TJ,CO2,73300.0,kg/TJ,111993.336455,kg -b502ebc2-39e2-3a35-ab71-465612d0d792,SESCO,II.1.1,Capital Federal,AR-C,annual,2015,naphtha combustion consumption by to the public,1.5278763499999999,TJ,CH4,3.0,kg/TJ,4.58362905,kg -6d029e4b-1a80-387c-8d02-8eb289cf4441,SESCO,II.1.1,Capital Federal,AR-C,annual,2015,naphtha combustion consumption by to the public,1.5278763499999999,TJ,N2O,0.6,kg/TJ,0.9167258099999999,kg -037508e7-fe4a-369e-ae48-aab500fb3ee9,SESCO,II.1.1,Córdoba,AR-X,annual,2015,naphtha combustion consumption by to the public,6.267411149999999,TJ,CO2,73300.0,kg/TJ,459401.23729499994,kg -004206d3-9d15-3f6c-8608-f532f882f949,SESCO,II.1.1,Córdoba,AR-X,annual,2015,naphtha combustion consumption by to the public,6.267411149999999,TJ,CH4,3.0,kg/TJ,18.802233449999996,kg -27f4e24f-4d94-3110-917b-2069f6a6a810,SESCO,II.1.1,Córdoba,AR-X,annual,2015,naphtha combustion consumption by to the public,6.267411149999999,TJ,N2O,0.6,kg/TJ,3.7604466899999993,kg -8242658c-d5ea-3e9a-984f-44cd2444fefd,SESCO,II.1.1,Entre Rios,AR-E,annual,2015,naphtha combustion consumption by to the public,1.9955935999999999,TJ,CO2,73300.0,kg/TJ,146277.01088,kg -9c8405be-0359-381b-a7ee-adefd96cc82d,SESCO,II.1.1,Entre Rios,AR-E,annual,2015,naphtha combustion consumption by to the public,1.9955935999999999,TJ,CH4,3.0,kg/TJ,5.9867808,kg -e4054b05-57cf-3c93-ba9b-410e429af426,SESCO,II.1.1,Entre Rios,AR-E,annual,2015,naphtha combustion consumption by to the public,1.9955935999999999,TJ,N2O,0.6,kg/TJ,1.1973561599999998,kg -07d51ae9-1271-3e34-b876-a41fa86f1845,SESCO,II.1.1,Santa Fe,AR-S,annual,2015,naphtha combustion consumption by to the public,2.3385862499999996,TJ,CO2,73300.0,kg/TJ,171418.37212499997,kg -33cf63ce-8cbc-36df-ac56-3e0ce012d6fb,SESCO,II.1.1,Santa Fe,AR-S,annual,2015,naphtha combustion consumption by to the public,2.3385862499999996,TJ,CH4,3.0,kg/TJ,7.015758749999999,kg -7fa76f09-1526-313c-8d97-22d8d5712e47,SESCO,II.1.1,Santa Fe,AR-S,annual,2015,naphtha combustion consumption by to the public,2.3385862499999996,TJ,N2O,0.6,kg/TJ,1.4031517499999997,kg -77daa151-2c18-3379-a8d0-1a3e458c29a6,SESCO,II.1.1,Catamarca,AR-K,annual,2015,naphtha combustion consumption by to the public,0.24944919999999998,TJ,CO2,73300.0,kg/TJ,18284.62636,kg -850a17cb-0eee-3657-9ae6-253217018478,SESCO,II.1.1,Catamarca,AR-K,annual,2015,naphtha combustion consumption by to the public,0.24944919999999998,TJ,CH4,3.0,kg/TJ,0.7483476,kg -cb1c6e8a-77e1-3568-94db-11b85bf39bfb,SESCO,II.1.1,Catamarca,AR-K,annual,2015,naphtha combustion consumption by to the public,0.24944919999999998,TJ,N2O,0.6,kg/TJ,0.14966951999999997,kg -ca5aa7ad-6433-3c4d-b63c-92e45d9aaecc,SESCO,II.1.1,Jujuy,AR-Y,annual,2015,naphtha combustion consumption by to the public,2.1826805,TJ,CO2,73300.0,kg/TJ,159990.48065,kg -e1241ca3-ba4f-3554-a811-3d9f74761bd9,SESCO,II.1.1,Jujuy,AR-Y,annual,2015,naphtha combustion consumption by to the public,2.1826805,TJ,CH4,3.0,kg/TJ,6.5480415,kg -72cd2d21-2978-36b1-9e11-d919c66224d8,SESCO,II.1.1,Jujuy,AR-Y,annual,2015,naphtha combustion consumption by to the public,2.1826805,TJ,N2O,0.6,kg/TJ,1.3096083,kg -ec8f77c1-7e44-3529-8f54-2ee3dc9c7a90,SESCO,II.1.1,Salta,AR-A,annual,2015,naphtha combustion consumption by to the public,15.495160680999998,TJ,CO2,73300.0,kg/TJ,1135795.2779173,kg -05fd84ce-be2a-356c-9f9b-ebe04e1329c3,SESCO,II.1.1,Salta,AR-A,annual,2015,naphtha combustion consumption by to the public,15.495160680999998,TJ,CH4,3.0,kg/TJ,46.48548204299999,kg -da0e30d9-4d14-3cf3-8d91-1bd2b052911c,SESCO,II.1.1,Salta,AR-A,annual,2015,naphtha combustion consumption by to the public,15.495160680999998,TJ,N2O,0.6,kg/TJ,9.297096408599998,kg -74ed378e-fada-3cb3-9aef-ef8d9b66b838,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2015,naphtha combustion consumption by to the public,0.34299264999999995,TJ,CO2,73300.0,kg/TJ,25141.361244999996,kg -350e8076-eefd-3892-b5f2-476dafe0175d,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2015,naphtha combustion consumption by to the public,0.34299264999999995,TJ,CH4,3.0,kg/TJ,1.0289779499999998,kg -94952d45-c43e-35ff-b31f-b75c2c06c0b5,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2015,naphtha combustion consumption by to the public,0.34299264999999995,TJ,N2O,0.6,kg/TJ,0.20579558999999997,kg -e20ca998-d5dd-39c1-8358-a12d68dffbc1,SESCO,II.1.1,Tucuman,AR-T,annual,2015,naphtha combustion consumption by to the public,1.40315175,TJ,CO2,73300.0,kg/TJ,102851.023275,kg -f314e1dc-c6ee-37fe-88c1-e41e11c0a88b,SESCO,II.1.1,Tucuman,AR-T,annual,2015,naphtha combustion consumption by to the public,1.40315175,TJ,CH4,3.0,kg/TJ,4.2094552499999995,kg -f9c9ab67-c9bc-3c75-b249-b0ce6d403595,SESCO,II.1.1,Tucuman,AR-T,annual,2015,naphtha combustion consumption by to the public,1.40315175,TJ,N2O,0.6,kg/TJ,0.84189105,kg -edda6b1f-a08b-3701-af93-c47c7370eda5,SESCO,II.1.1,Catamarca,AR-K,annual,2015,naphtha combustion consumption by to the public,252.47813691099998,TJ,CO2,73300.0,kg/TJ,18506647.435576297,kg -45f7d97a-ef4e-3ed2-b142-369ddaced664,SESCO,II.1.1,Catamarca,AR-K,annual,2015,naphtha combustion consumption by to the public,252.47813691099998,TJ,CH4,3.0,kg/TJ,757.4344107329999,kg -545f5784-85ad-32c4-bc55-a1ba1a7777ed,SESCO,II.1.1,Catamarca,AR-K,annual,2015,naphtha combustion consumption by to the public,252.47813691099998,TJ,N2O,0.6,kg/TJ,151.48688214659998,kg -a87f5579-655b-3fcf-b40d-a749e2069360,SESCO,II.1.1,Chaco,AR-H,annual,2015,naphtha combustion consumption by to the public,98.795602906,TJ,CO2,73300.0,kg/TJ,7241717.6930098,kg -2bbf0008-c2a3-3890-8b93-280aa8ad3ff9,SESCO,II.1.1,Chaco,AR-H,annual,2015,naphtha combustion consumption by to the public,98.795602906,TJ,CH4,3.0,kg/TJ,296.386808718,kg -5a8f44ac-a0f9-31bc-904c-4f3c789d52fd,SESCO,II.1.1,Chaco,AR-H,annual,2015,naphtha combustion consumption by to the public,98.795602906,TJ,N2O,0.6,kg/TJ,59.2773617436,kg -125dba59-d0f3-3d61-a278-370ae89393a7,SESCO,II.1.1,Córdoba,AR-X,annual,2015,naphtha combustion consumption by to the public,0.8736958229999999,TJ,CO2,73300.0,kg/TJ,64041.90382589999,kg -e3a9cf53-2ec4-36d9-a79a-5c86414e723f,SESCO,II.1.1,Córdoba,AR-X,annual,2015,naphtha combustion consumption by to the public,0.8736958229999999,TJ,CH4,3.0,kg/TJ,2.621087469,kg -f7103961-f46e-3e12-81f2-6ad88792906a,SESCO,II.1.1,Córdoba,AR-X,annual,2015,naphtha combustion consumption by to the public,0.8736958229999999,TJ,N2O,0.6,kg/TJ,0.5242174937999999,kg -29fcb96d-5939-3571-82d1-28402dbf2fc7,SESCO,II.1.1,Jujuy,AR-Y,annual,2015,naphtha combustion consumption by to the public,578.8184937534999,TJ,CO2,73300.0,kg/TJ,42427395.59213154,kg -3507460c-84fe-3a7c-8579-7ac4ed83e967,SESCO,II.1.1,Jujuy,AR-Y,annual,2015,naphtha combustion consumption by to the public,578.8184937534999,TJ,CH4,3.0,kg/TJ,1736.4554812604997,kg -baeffc14-c284-3db8-a41e-c2e3a1f266ae,SESCO,II.1.1,Jujuy,AR-Y,annual,2015,naphtha combustion consumption by to the public,578.8184937534999,TJ,N2O,0.6,kg/TJ,347.2910962520999,kg -1e41780e-af47-352c-a589-847ea32a1f30,SESCO,II.1.1,La Rioja,AR-F,annual,2015,naphtha combustion consumption by to the public,295.72732739549997,TJ,CO2,73300.0,kg/TJ,21676813.09809015,kg -47088a5f-9c7b-3cf5-9a8c-d1d4eec2e6a7,SESCO,II.1.1,La Rioja,AR-F,annual,2015,naphtha combustion consumption by to the public,295.72732739549997,TJ,CH4,3.0,kg/TJ,887.1819821864999,kg -4ee80f97-6b57-3203-9a09-bf0d4102dbed,SESCO,II.1.1,La Rioja,AR-F,annual,2015,naphtha combustion consumption by to the public,295.72732739549997,TJ,N2O,0.6,kg/TJ,177.43639643729998,kg -545b24e4-dfcf-3923-b9de-d24c2eb18519,SESCO,II.1.1,Salta,AR-A,annual,2015,naphtha combustion consumption by to the public,1107.4836667895,TJ,CO2,73300.0,kg/TJ,81178552.77567035,kg -15f167b0-e6a4-305b-9a25-788156275960,SESCO,II.1.1,Salta,AR-A,annual,2015,naphtha combustion consumption by to the public,1107.4836667895,TJ,CH4,3.0,kg/TJ,3322.4510003685,kg -fd806adb-b9c1-356d-a2d2-51751e5580e0,SESCO,II.1.1,Salta,AR-A,annual,2015,naphtha combustion consumption by to the public,1107.4836667895,TJ,N2O,0.6,kg/TJ,664.4902000737,kg -9f43ca75-3d69-397b-a5ce-df0c2b81a8aa,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2015,naphtha combustion consumption by to the public,310.4067891925,TJ,CO2,73300.0,kg/TJ,22752817.64781025,kg -160d5062-c9f8-3fa4-8cda-63ff62646105,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2015,naphtha combustion consumption by to the public,310.4067891925,TJ,CH4,3.0,kg/TJ,931.2203675775,kg -5a35fba6-8f15-3b24-a415-4a33ce8cf673,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2015,naphtha combustion consumption by to the public,310.4067891925,TJ,N2O,0.6,kg/TJ,186.2440735155,kg -47b76390-6333-30ba-8c86-52a9d8262929,SESCO,II.1.1,Tucuman,AR-T,annual,2015,naphtha combustion consumption by to the public,1742.764986963,TJ,CO2,73300.0,kg/TJ,127744673.54438789,kg -38d4f551-ecc9-3634-a2ad-06c50a1bafd5,SESCO,II.1.1,Tucuman,AR-T,annual,2015,naphtha combustion consumption by to the public,1742.764986963,TJ,CH4,3.0,kg/TJ,5228.294960888999,kg -aca68d28-747e-322e-92fe-3716cd7a1998,SESCO,II.1.1,Tucuman,AR-T,annual,2015,naphtha combustion consumption by to the public,1742.764986963,TJ,N2O,0.6,kg/TJ,1045.6589921778,kg -7876bda2-1a4a-3977-ad70-b802955908fd,SESCO,II.1.1,Catamarca,AR-K,annual,2015,naphtha combustion consumption by to the public,20.527174668,TJ,CO2,73300.0,kg/TJ,1504641.9031644,kg -5527fd6f-58ca-31af-a437-a34a676a2018,SESCO,II.1.1,Catamarca,AR-K,annual,2015,naphtha combustion consumption by to the public,20.527174668,TJ,CH4,3.0,kg/TJ,61.581524004,kg -28e79936-75df-3bfd-9c0e-784f10705504,SESCO,II.1.1,Catamarca,AR-K,annual,2015,naphtha combustion consumption by to the public,20.527174668,TJ,N2O,0.6,kg/TJ,12.3163048008,kg -3e04d18e-a69a-37a3-800f-d4d4707e2418,SESCO,II.1.1,Chaco,AR-H,annual,2015,naphtha combustion consumption by to the public,1.3719705999999998,TJ,CO2,73300.0,kg/TJ,100565.44497999999,kg -22fb7e57-6608-38e0-95f7-1e6de4233502,SESCO,II.1.1,Chaco,AR-H,annual,2015,naphtha combustion consumption by to the public,1.3719705999999998,TJ,CH4,3.0,kg/TJ,4.115911799999999,kg -9420a750-6e8e-3fe8-b46c-870e396c3f4e,SESCO,II.1.1,Chaco,AR-H,annual,2015,naphtha combustion consumption by to the public,1.3719705999999998,TJ,N2O,0.6,kg/TJ,0.8231823599999999,kg -bcc37387-5d98-3964-ae9c-6ac260e98343,SESCO,II.1.1,Córdoba,AR-X,annual,2015,naphtha combustion consumption by to the public,0.369808439,TJ,CO2,73300.0,kg/TJ,27106.9585787,kg -829ebc34-8a44-3c43-9cf0-0be99eeaf213,SESCO,II.1.1,Córdoba,AR-X,annual,2015,naphtha combustion consumption by to the public,0.369808439,TJ,CH4,3.0,kg/TJ,1.109425317,kg -f8e9c1f8-7d49-3082-be07-8326bf05159e,SESCO,II.1.1,Córdoba,AR-X,annual,2015,naphtha combustion consumption by to the public,0.369808439,TJ,N2O,0.6,kg/TJ,0.2218850634,kg -bbd92e74-49cb-3fa7-b344-e3e8b5fe494a,SESCO,II.1.1,Jujuy,AR-Y,annual,2015,naphtha combustion consumption by to the public,31.823169878499993,TJ,CO2,73300.0,kg/TJ,2332638.3520940496,kg -4fe5308c-5a69-3aaa-b668-ee1c6c919293,SESCO,II.1.1,Jujuy,AR-Y,annual,2015,naphtha combustion consumption by to the public,31.823169878499993,TJ,CH4,3.0,kg/TJ,95.46950963549997,kg -33f6586d-fa47-35e1-b1a3-6c2cba0ba13f,SESCO,II.1.1,Jujuy,AR-Y,annual,2015,naphtha combustion consumption by to the public,31.823169878499993,TJ,N2O,0.6,kg/TJ,19.093901927099996,kg -af8b2b24-86da-3657-90f6-ce104d3ce8ab,SESCO,II.1.1,La Rioja,AR-F,annual,2015,naphtha combustion consumption by to the public,12.3773574925,TJ,CO2,73300.0,kg/TJ,907260.30420025,kg -a94f501c-2d69-3577-a227-ed742c9dde3c,SESCO,II.1.1,La Rioja,AR-F,annual,2015,naphtha combustion consumption by to the public,12.3773574925,TJ,CH4,3.0,kg/TJ,37.1320724775,kg -9ef403af-1351-3bea-9363-7e74fa6bd1d1,SESCO,II.1.1,La Rioja,AR-F,annual,2015,naphtha combustion consumption by to the public,12.3773574925,TJ,N2O,0.6,kg/TJ,7.4264144954999995,kg -6e015d37-5080-3686-bda1-5deafba61ebc,SESCO,II.1.1,Salta,AR-A,annual,2015,naphtha combustion consumption by to the public,61.6766265115,TJ,CO2,73300.0,kg/TJ,4520896.72329295,kg -78da8264-cdf7-3281-838c-a3d9cc66f308,SESCO,II.1.1,Salta,AR-A,annual,2015,naphtha combustion consumption by to the public,61.6766265115,TJ,CH4,3.0,kg/TJ,185.0298795345,kg -2ffac4ae-70e8-33e4-b029-17a6f2f5536d,SESCO,II.1.1,Salta,AR-A,annual,2015,naphtha combustion consumption by to the public,61.6766265115,TJ,N2O,0.6,kg/TJ,37.0059759069,kg -6b6f340c-ca5d-3483-8a8d-d339cf91f860,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2015,naphtha combustion consumption by to the public,30.041478967499998,TJ,CO2,73300.0,kg/TJ,2202040.40831775,kg -c5f9f8f6-c83f-365b-8f26-0f6b4d466ff8,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2015,naphtha combustion consumption by to the public,30.041478967499998,TJ,CH4,3.0,kg/TJ,90.1244369025,kg -a2e125c2-b5df-37ff-8a89-2d888655583a,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2015,naphtha combustion consumption by to the public,30.041478967499998,TJ,N2O,0.6,kg/TJ,18.024887380499997,kg -2bf6a4f0-b6f3-39de-9c1d-94ee9eba083a,SESCO,II.1.1,Tucuman,AR-T,annual,2015,naphtha combustion consumption by to the public,111.22908646849999,TJ,CO2,73300.0,kg/TJ,8153092.0381410485,kg -185d526e-55c5-3094-ba36-565ed416458f,SESCO,II.1.1,Tucuman,AR-T,annual,2015,naphtha combustion consumption by to the public,111.22908646849999,TJ,CH4,3.0,kg/TJ,333.68725940549996,kg -9343c37b-12b2-311e-b005-baab98ed7904,SESCO,II.1.1,Tucuman,AR-T,annual,2015,naphtha combustion consumption by to the public,111.22908646849999,TJ,N2O,0.6,kg/TJ,66.73745188109999,kg -678efc0f-7f1a-35fe-af7e-d6e0d592b0b3,SESCO,II.5.1,Santa Fe,AR-S,annual,2015,naphtha combustion consumption by agriculture machines,34.486351899999995,TJ,CO2,73300.0,kg/TJ,2527849.59427,kg -c6f8edc4-1a7e-32b6-bad1-a0c5b5b9e7bd,SESCO,II.5.1,Santa Fe,AR-S,annual,2015,naphtha combustion consumption by agriculture machines,34.486351899999995,TJ,CH4,3.0,kg/TJ,103.4590557,kg -70285abe-543b-3db3-9358-0af039d71c2c,SESCO,II.5.1,Santa Fe,AR-S,annual,2015,naphtha combustion consumption by agriculture machines,34.486351899999995,TJ,N2O,0.6,kg/TJ,20.691811139999995,kg -11c95496-715c-31df-9014-e7886f4bfb4e,SESCO,II.5.1,Santa Fe,AR-S,annual,2015,naphtha combustion consumption by agriculture machines,5.768512749999999,TJ,CO2,73300.0,kg/TJ,422831.98457499995,kg -4cb08f4e-531f-34a3-8e45-2967f36a7563,SESCO,II.5.1,Santa Fe,AR-S,annual,2015,naphtha combustion consumption by agriculture machines,5.768512749999999,TJ,CH4,3.0,kg/TJ,17.305538249999998,kg -4154db61-037a-3d7b-8075-06325196c4a5,SESCO,II.5.1,Santa Fe,AR-S,annual,2015,naphtha combustion consumption by agriculture machines,5.768512749999999,TJ,N2O,0.6,kg/TJ,3.4611076499999993,kg -594a731d-83d0-37de-af8d-9992c0f493bb,SESCO,II.1.1,Buenos Aires,AR-B,annual,2015,naphtha combustion consumption by to the public,27.47059315,TJ,CO2,73300.0,kg/TJ,2013594.477895,kg -9de75175-4e1a-3c62-8c94-c0b636668ef7,SESCO,II.1.1,Buenos Aires,AR-B,annual,2015,naphtha combustion consumption by to the public,27.47059315,TJ,CH4,3.0,kg/TJ,82.41177945,kg -61023a2e-ddfa-3db0-a6ea-b30826c7a4a1,SESCO,II.1.1,Buenos Aires,AR-B,annual,2015,naphtha combustion consumption by to the public,27.47059315,TJ,N2O,0.6,kg/TJ,16.482355889999997,kg -a155e7a1-f1f0-3498-b026-d9210b2224e4,SESCO,II.1.1,Entre Rios,AR-E,annual,2015,naphtha combustion consumption by to the public,23.0116887,TJ,CO2,73300.0,kg/TJ,1686756.78171,kg -713d58c9-bf98-3ab5-99f2-4aba40a619bc,SESCO,II.1.1,Entre Rios,AR-E,annual,2015,naphtha combustion consumption by to the public,23.0116887,TJ,CH4,3.0,kg/TJ,69.0350661,kg -0abd5dd5-9b1a-3012-94fa-b52cb5ab8950,SESCO,II.1.1,Entre Rios,AR-E,annual,2015,naphtha combustion consumption by to the public,23.0116887,TJ,N2O,0.6,kg/TJ,13.80701322,kg -faadc172-f338-3bf4-b1f6-999c151dd8c7,SESCO,II.1.1,Buenos Aires,AR-B,annual,2015,naphtha combustion consumption by to the public,12994.868987099999,TJ,CO2,73300.0,kg/TJ,952523896.7544299,kg -b3619895-5673-3213-92c8-90f39b71bfdd,SESCO,II.1.1,Buenos Aires,AR-B,annual,2015,naphtha combustion consumption by to the public,12994.868987099999,TJ,CH4,3.0,kg/TJ,38984.6069613,kg -8e43db7a-fb0c-3d69-9f9a-b057856f77f5,SESCO,II.1.1,Buenos Aires,AR-B,annual,2015,naphtha combustion consumption by to the public,12994.868987099999,TJ,N2O,0.6,kg/TJ,7796.921392259999,kg -115e9597-93b4-37cb-853d-ed2017838ddf,SESCO,II.1.1,Capital Federal,AR-C,annual,2015,naphtha combustion consumption by to the public,4110.57982335,TJ,CO2,73300.0,kg/TJ,301305501.051555,kg -043ae9a1-10c0-34a0-a603-ed612c296175,SESCO,II.1.1,Capital Federal,AR-C,annual,2015,naphtha combustion consumption by to the public,4110.57982335,TJ,CH4,3.0,kg/TJ,12331.73947005,kg -9204f4a4-4985-3818-9958-e397d0a28e9f,SESCO,II.1.1,Capital Federal,AR-C,annual,2015,naphtha combustion consumption by to the public,4110.57982335,TJ,N2O,0.6,kg/TJ,2466.34789401,kg -1292210e-c391-39cb-bea2-a67594d5360f,SESCO,II.1.1,Catamarca,AR-K,annual,2015,naphtha combustion consumption by to the public,51.2618106,TJ,CO2,73300.0,kg/TJ,3757490.7169799996,kg -0789a98c-8b4e-3e5b-8801-a8d56774797d,SESCO,II.1.1,Catamarca,AR-K,annual,2015,naphtha combustion consumption by to the public,51.2618106,TJ,CH4,3.0,kg/TJ,153.7854318,kg -67029039-cfcb-3ed8-922b-9869fb1b2254,SESCO,II.1.1,Catamarca,AR-K,annual,2015,naphtha combustion consumption by to the public,51.2618106,TJ,N2O,0.6,kg/TJ,30.757086359999995,kg -0a10c379-97d3-3fab-92dd-89686b8ddb55,SESCO,II.1.1,Chaco,AR-H,annual,2015,naphtha combustion consumption by to the public,765.4660513499999,TJ,CO2,73300.0,kg/TJ,56108661.563954994,kg -63e67e2b-ecb7-389a-9847-1e9c73d9af46,SESCO,II.1.1,Chaco,AR-H,annual,2015,naphtha combustion consumption by to the public,765.4660513499999,TJ,CH4,3.0,kg/TJ,2296.39815405,kg -d4bb5ebc-1cf6-382b-ac8f-7b1d902324ec,SESCO,II.1.1,Chaco,AR-H,annual,2015,naphtha combustion consumption by to the public,765.4660513499999,TJ,N2O,0.6,kg/TJ,459.27963080999996,kg -be251734-16e9-39b8-81db-dd58e784839b,SESCO,II.1.1,Corrientes,AR-W,annual,2015,naphtha combustion consumption by to the public,814.7634494999999,TJ,CO2,73300.0,kg/TJ,59722160.84834999,kg -1032948d-5961-32ed-886b-859a7dc5e76d,SESCO,II.1.1,Corrientes,AR-W,annual,2015,naphtha combustion consumption by to the public,814.7634494999999,TJ,CH4,3.0,kg/TJ,2444.2903484999997,kg -8d3d296f-7718-35fe-9dbc-50a01561fdb0,SESCO,II.1.1,Corrientes,AR-W,annual,2015,naphtha combustion consumption by to the public,814.7634494999999,TJ,N2O,0.6,kg/TJ,488.8580696999999,kg -81fde9b7-a9cf-3f0d-bcac-74951a4c858f,SESCO,II.1.1,Córdoba,AR-X,annual,2015,naphtha combustion consumption by to the public,2603.78193075,TJ,CO2,73300.0,kg/TJ,190857215.52397498,kg -d112c8b4-4d90-37c4-a576-040233abb0ec,SESCO,II.1.1,Córdoba,AR-X,annual,2015,naphtha combustion consumption by to the public,2603.78193075,TJ,CH4,3.0,kg/TJ,7811.34579225,kg -9218997c-f88a-3e08-9f70-04138de04170,SESCO,II.1.1,Córdoba,AR-X,annual,2015,naphtha combustion consumption by to the public,2603.78193075,TJ,N2O,0.6,kg/TJ,1562.2691584499998,kg -0485ca7d-742b-3636-929e-f73c72dea93f,SESCO,II.1.1,Entre Rios,AR-E,annual,2015,naphtha combustion consumption by to the public,801.3243738499999,TJ,CO2,73300.0,kg/TJ,58737076.603204995,kg -b1ca0673-84b3-3597-887d-3f2135ccfec3,SESCO,II.1.1,Entre Rios,AR-E,annual,2015,naphtha combustion consumption by to the public,801.3243738499999,TJ,CH4,3.0,kg/TJ,2403.9731215499996,kg -21967348-c4eb-3c30-a9d2-1a6209bee07c,SESCO,II.1.1,Entre Rios,AR-E,annual,2015,naphtha combustion consumption by to the public,801.3243738499999,TJ,N2O,0.6,kg/TJ,480.7946243099999,kg -f55f065c-3787-3900-8fb4-368f4f1be2af,SESCO,II.1.1,Formosa,AR-P,annual,2015,naphtha combustion consumption by to the public,406.94518865,TJ,CO2,73300.0,kg/TJ,29829082.328045,kg -499fe1e7-e185-3b48-aa58-23d159d96c1e,SESCO,II.1.1,Formosa,AR-P,annual,2015,naphtha combustion consumption by to the public,406.94518865,TJ,CH4,3.0,kg/TJ,1220.8355659499998,kg -4f7bd23d-db1a-3deb-97d6-cd4a3012291a,SESCO,II.1.1,Formosa,AR-P,annual,2015,naphtha combustion consumption by to the public,406.94518865,TJ,N2O,0.6,kg/TJ,244.16711318999998,kg -a4574d43-716c-3632-9e5b-08f5fa3df79d,SESCO,II.1.1,Jujuy,AR-Y,annual,2015,naphtha combustion consumption by to the public,180.63240194999997,TJ,CO2,73300.0,kg/TJ,13240355.062934998,kg -aa334b1c-a2bd-3990-879c-2a64309317b0,SESCO,II.1.1,Jujuy,AR-Y,annual,2015,naphtha combustion consumption by to the public,180.63240194999997,TJ,CH4,3.0,kg/TJ,541.8972058499999,kg -d60461c2-a3a4-3165-8e0f-a701859f2b76,SESCO,II.1.1,Jujuy,AR-Y,annual,2015,naphtha combustion consumption by to the public,180.63240194999997,TJ,N2O,0.6,kg/TJ,108.37944116999998,kg -29fed3e5-4d33-3e5f-b256-3750d7e140c3,SESCO,II.1.1,La Pampa,AR-L,annual,2015,naphtha combustion consumption by to the public,239.75186234999998,TJ,CO2,73300.0,kg/TJ,17573811.510254998,kg -9a930b41-01d5-3705-84b2-4d8755f8912f,SESCO,II.1.1,La Pampa,AR-L,annual,2015,naphtha combustion consumption by to the public,239.75186234999998,TJ,CH4,3.0,kg/TJ,719.2555870499999,kg -aa2ccc5b-4003-3831-a5bd-efbcbb038da3,SESCO,II.1.1,La Pampa,AR-L,annual,2015,naphtha combustion consumption by to the public,239.75186234999998,TJ,N2O,0.6,kg/TJ,143.85111740999997,kg -3737fee8-3bad-38a5-8738-a841b982c80d,SESCO,II.1.1,La Rioja,AR-F,annual,2015,naphtha combustion consumption by to the public,258.08637854999995,TJ,CO2,73300.0,kg/TJ,18917731.547714997,kg -7a28f5f4-c634-3e7b-9d0a-05f0800c1b68,SESCO,II.1.1,La Rioja,AR-F,annual,2015,naphtha combustion consumption by to the public,258.08637854999995,TJ,CH4,3.0,kg/TJ,774.2591356499998,kg -c93e8b14-018f-3e21-adc6-7e28b420a524,SESCO,II.1.1,La Rioja,AR-F,annual,2015,naphtha combustion consumption by to the public,258.08637854999995,TJ,N2O,0.6,kg/TJ,154.85182712999998,kg -20809c75-c20d-3b80-8e5d-f89ebbba0acd,SESCO,II.1.1,Mendoza,AR-M,annual,2015,naphtha combustion consumption by to the public,637.1868002499999,TJ,CO2,73300.0,kg/TJ,46705792.45832499,kg -0ea34ac5-adea-392c-ad4c-3edfbe1f63e6,SESCO,II.1.1,Mendoza,AR-M,annual,2015,naphtha combustion consumption by to the public,637.1868002499999,TJ,CH4,3.0,kg/TJ,1911.5604007499996,kg -f301e96b-9205-3941-b491-e480e3449b54,SESCO,II.1.1,Mendoza,AR-M,annual,2015,naphtha combustion consumption by to the public,637.1868002499999,TJ,N2O,0.6,kg/TJ,382.31208014999993,kg -7d945fac-25a6-33bf-8c14-cd386ce749db,SESCO,II.1.1,Misiones,AR-N,annual,2015,naphtha combustion consumption by to the public,1102.9396378,TJ,CO2,73300.0,kg/TJ,80845475.45074,kg -84983ed9-bbba-36cf-8cba-0cef8b86c2fa,SESCO,II.1.1,Misiones,AR-N,annual,2015,naphtha combustion consumption by to the public,1102.9396378,TJ,CH4,3.0,kg/TJ,3308.8189133999995,kg -8ccf9a2a-86b5-3374-8352-a5421aa65363,SESCO,II.1.1,Misiones,AR-N,annual,2015,naphtha combustion consumption by to the public,1102.9396378,TJ,N2O,0.6,kg/TJ,661.76378268,kg -6d5481c0-447f-3ac5-92bf-be1ff4a12723,SESCO,II.1.1,Neuquén,AR-Q,annual,2015,naphtha combustion consumption by to the public,401.92502349999995,TJ,CO2,73300.0,kg/TJ,29461104.222549997,kg -8aebeebc-41ff-3d10-baf6-6a1eed9f8964,SESCO,II.1.1,Neuquén,AR-Q,annual,2015,naphtha combustion consumption by to the public,401.92502349999995,TJ,CH4,3.0,kg/TJ,1205.7750704999999,kg -045313ff-13a5-3c01-a16f-c3741beb3689,SESCO,II.1.1,Neuquén,AR-Q,annual,2015,naphtha combustion consumption by to the public,401.92502349999995,TJ,N2O,0.6,kg/TJ,241.15501409999996,kg -12eae914-1829-3089-a67e-ab6a8073d567,SESCO,II.1.1,Rio Negro,AR-R,annual,2015,naphtha combustion consumption by to the public,132.05217025,TJ,CO2,73300.0,kg/TJ,9679424.079325,kg -59717330-9011-3118-8bc3-5aec3b4e9ca5,SESCO,II.1.1,Rio Negro,AR-R,annual,2015,naphtha combustion consumption by to the public,132.05217025,TJ,CH4,3.0,kg/TJ,396.15651074999994,kg -7657f70c-256c-32d0-a002-c9731ca011ab,SESCO,II.1.1,Rio Negro,AR-R,annual,2015,naphtha combustion consumption by to the public,132.05217025,TJ,N2O,0.6,kg/TJ,79.23130214999999,kg -70a1ef79-ea33-379c-8f07-9fcab41d4efc,SESCO,II.1.1,Salta,AR-A,annual,2015,naphtha combustion consumption by to the public,218.7669484,TJ,CO2,73300.0,kg/TJ,16035617.31772,kg -b305f5d3-ce71-3753-a3e8-9ab6f9c20e24,SESCO,II.1.1,Salta,AR-A,annual,2015,naphtha combustion consumption by to the public,218.7669484,TJ,CH4,3.0,kg/TJ,656.3008451999999,kg -929f261f-4151-3f1d-927c-f9e7785fa9a8,SESCO,II.1.1,Salta,AR-A,annual,2015,naphtha combustion consumption by to the public,218.7669484,TJ,N2O,0.6,kg/TJ,131.26016904,kg -9f344466-c5cf-342e-8ef5-c351a4fab21e,SESCO,II.1.1,San Juan,AR-J,annual,2015,naphtha combustion consumption by to the public,180.25822814999998,TJ,CO2,73300.0,kg/TJ,13212928.123394998,kg -06208913-e7e0-3df6-9b27-349202961f08,SESCO,II.1.1,San Juan,AR-J,annual,2015,naphtha combustion consumption by to the public,180.25822814999998,TJ,CH4,3.0,kg/TJ,540.77468445,kg -74848969-8764-34c1-a541-485bebfe924c,SESCO,II.1.1,San Juan,AR-J,annual,2015,naphtha combustion consumption by to the public,180.25822814999998,TJ,N2O,0.6,kg/TJ,108.15493688999999,kg -9b7afa1d-1fa8-3108-b9cf-5773490a2333,SESCO,II.1.1,San Luis,AR-D,annual,2015,naphtha combustion consumption by to the public,21.23436315,TJ,CO2,73300.0,kg/TJ,1556478.818895,kg -9b0d5936-5e38-3646-8b1c-92b276e184a6,SESCO,II.1.1,San Luis,AR-D,annual,2015,naphtha combustion consumption by to the public,21.23436315,TJ,CH4,3.0,kg/TJ,63.70308945,kg -91b28754-f91f-3ccc-a7c5-6335790040ca,SESCO,II.1.1,San Luis,AR-D,annual,2015,naphtha combustion consumption by to the public,21.23436315,TJ,N2O,0.6,kg/TJ,12.74061789,kg -7681c044-5e52-3b93-85ee-4b1760e4c115,SESCO,II.1.1,Santa Fe,AR-S,annual,2015,naphtha combustion consumption by to the public,3208.2908857999996,TJ,CO2,73300.0,kg/TJ,235167721.92913997,kg -5cca1c69-2dec-3a69-bfd2-34e41c5ed2ca,SESCO,II.1.1,Santa Fe,AR-S,annual,2015,naphtha combustion consumption by to the public,3208.2908857999996,TJ,CH4,3.0,kg/TJ,9624.8726574,kg -4d0e6b3a-72c5-3c69-a964-4d8de80c80e8,SESCO,II.1.1,Santa Fe,AR-S,annual,2015,naphtha combustion consumption by to the public,3208.2908857999996,TJ,N2O,0.6,kg/TJ,1924.9745314799998,kg -e2b31346-5e3f-35e6-adf7-fef0ffa536df,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2015,naphtha combustion consumption by to the public,321.4152942,TJ,CO2,73300.0,kg/TJ,23559741.06486,kg -138209da-0031-3ec2-8b3e-d4d81f59b7d3,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2015,naphtha combustion consumption by to the public,321.4152942,TJ,CH4,3.0,kg/TJ,964.2458826,kg -8ad96763-9a10-349f-8864-9bee6a1b762c,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2015,naphtha combustion consumption by to the public,321.4152942,TJ,N2O,0.6,kg/TJ,192.84917652,kg -973af00d-41d2-3c72-8b1e-8844a7dc444f,SESCO,II.1.1,Tucuman,AR-T,annual,2015,naphtha combustion consumption by to the public,762.6285666999999,TJ,CO2,73300.0,kg/TJ,55900673.93910999,kg -2f3f5f67-5b05-3d11-a357-928ea171115b,SESCO,II.1.1,Tucuman,AR-T,annual,2015,naphtha combustion consumption by to the public,762.6285666999999,TJ,CH4,3.0,kg/TJ,2287.8857000999997,kg -c6b06d8d-5da5-3a87-b81e-97554a66e559,SESCO,II.1.1,Tucuman,AR-T,annual,2015,naphtha combustion consumption by to the public,762.6285666999999,TJ,N2O,0.6,kg/TJ,457.5771400199999,kg -971a6b54-3d94-31dc-9325-37d758909d19,SESCO,II.1.1,Buenos Aires,AR-B,annual,2015,naphtha combustion consumption by to the public,7108.054953999999,TJ,CO2,73300.0,kg/TJ,521020428.12819993,kg -8f48a127-50ad-3378-b1f2-6c40a76e10ca,SESCO,II.1.1,Buenos Aires,AR-B,annual,2015,naphtha combustion consumption by to the public,7108.054953999999,TJ,CH4,3.0,kg/TJ,21324.164861999998,kg -9d798d91-3346-3e72-a267-a23dffae16b2,SESCO,II.1.1,Buenos Aires,AR-B,annual,2015,naphtha combustion consumption by to the public,7108.054953999999,TJ,N2O,0.6,kg/TJ,4264.8329724,kg -92a66134-2709-38e3-bb55-e3c085020e9e,SESCO,II.1.1,Capital Federal,AR-C,annual,2015,naphtha combustion consumption by to the public,2960.2136563999998,TJ,CO2,73300.0,kg/TJ,216983661.01411998,kg -f973e7a8-3e51-3ada-9262-d9620d4020d3,SESCO,II.1.1,Capital Federal,AR-C,annual,2015,naphtha combustion consumption by to the public,2960.2136563999998,TJ,CH4,3.0,kg/TJ,8880.6409692,kg -819f0e7e-f716-38ae-b6f4-03b9160674b8,SESCO,II.1.1,Capital Federal,AR-C,annual,2015,naphtha combustion consumption by to the public,2960.2136563999998,TJ,N2O,0.6,kg/TJ,1776.1281938399998,kg -a38a67de-21d7-34bf-bd44-6444cb5d7a6a,SESCO,II.1.1,Catamarca,AR-K,annual,2015,naphtha combustion consumption by to the public,38.5399014,TJ,CO2,73300.0,kg/TJ,2824974.77262,kg -b35bd273-a379-31cd-b563-d7edd526da13,SESCO,II.1.1,Catamarca,AR-K,annual,2015,naphtha combustion consumption by to the public,38.5399014,TJ,CH4,3.0,kg/TJ,115.6197042,kg -a657025f-a056-335a-a91e-0fd939d8f336,SESCO,II.1.1,Catamarca,AR-K,annual,2015,naphtha combustion consumption by to the public,38.5399014,TJ,N2O,0.6,kg/TJ,23.12394084,kg -00f388e1-13f3-3fc3-b59b-5e1072fe3b8d,SESCO,II.1.1,Chaco,AR-H,annual,2015,naphtha combustion consumption by to the public,300.74219175,TJ,CO2,73300.0,kg/TJ,22044402.655275002,kg -95a14aaf-8719-30f4-be69-636f6a041f66,SESCO,II.1.1,Chaco,AR-H,annual,2015,naphtha combustion consumption by to the public,300.74219175,TJ,CH4,3.0,kg/TJ,902.22657525,kg -694946ee-7594-3cd4-95a2-1ea7a6f2c72d,SESCO,II.1.1,Chaco,AR-H,annual,2015,naphtha combustion consumption by to the public,300.74219175,TJ,N2O,0.6,kg/TJ,180.44531505,kg -d85f70bf-3cfe-3f8a-9e8a-83baa5df33ac,SESCO,II.1.1,Corrientes,AR-W,annual,2015,naphtha combustion consumption by to the public,351.81691545,TJ,CO2,73300.0,kg/TJ,25788179.902485,kg -aba05e12-4bad-3639-8a96-dc8ba9d0da52,SESCO,II.1.1,Corrientes,AR-W,annual,2015,naphtha combustion consumption by to the public,351.81691545,TJ,CH4,3.0,kg/TJ,1055.45074635,kg -f81d2853-aa08-3488-8a95-fc47325a117f,SESCO,II.1.1,Corrientes,AR-W,annual,2015,naphtha combustion consumption by to the public,351.81691545,TJ,N2O,0.6,kg/TJ,211.09014927,kg -45a58de9-b29b-3013-9617-cf35361eda65,SESCO,II.1.1,Córdoba,AR-X,annual,2015,naphtha combustion consumption by to the public,1116.2539888499998,TJ,CO2,73300.0,kg/TJ,81821417.38270499,kg -f2eac7d2-e37a-3aa3-9790-49645a617790,SESCO,II.1.1,Córdoba,AR-X,annual,2015,naphtha combustion consumption by to the public,1116.2539888499998,TJ,CH4,3.0,kg/TJ,3348.7619665499997,kg -4ce36b6c-48b4-3cfa-8d57-4b7d9c8e2130,SESCO,II.1.1,Córdoba,AR-X,annual,2015,naphtha combustion consumption by to the public,1116.2539888499998,TJ,N2O,0.6,kg/TJ,669.7523933099999,kg -1d1e14f2-12c8-3f4c-ad21-8448a0c73706,SESCO,II.1.1,Entre Rios,AR-E,annual,2015,naphtha combustion consumption by to the public,379.8487693,TJ,CO2,73300.0,kg/TJ,27842914.789690003,kg -5079d306-d29c-3678-bd3d-a0de0e875db0,SESCO,II.1.1,Entre Rios,AR-E,annual,2015,naphtha combustion consumption by to the public,379.8487693,TJ,CH4,3.0,kg/TJ,1139.5463079,kg -eeb18277-d7f3-3c39-8aae-5104906361b4,SESCO,II.1.1,Entre Rios,AR-E,annual,2015,naphtha combustion consumption by to the public,379.8487693,TJ,N2O,0.6,kg/TJ,227.90926158,kg -67d6ae2f-1b21-3e5a-9681-df578f383ccd,SESCO,II.1.1,Formosa,AR-P,annual,2015,naphtha combustion consumption by to the public,176.42294669999998,TJ,CO2,73300.0,kg/TJ,12931801.99311,kg -6281e47b-dfe6-3ea1-a96b-f0d36203699b,SESCO,II.1.1,Formosa,AR-P,annual,2015,naphtha combustion consumption by to the public,176.42294669999998,TJ,CH4,3.0,kg/TJ,529.2688400999999,kg -c7f58333-e75c-35ae-a559-1b4bd2d59003,SESCO,II.1.1,Formosa,AR-P,annual,2015,naphtha combustion consumption by to the public,176.42294669999998,TJ,N2O,0.6,kg/TJ,105.85376801999999,kg -12392160-fe74-3afe-97e7-59b14d0ea832,SESCO,II.1.1,Jujuy,AR-Y,annual,2015,naphtha combustion consumption by to the public,37.88509725,TJ,CO2,73300.0,kg/TJ,2776977.6284250002,kg -e6b33d46-915c-360a-837e-8206fd5055ef,SESCO,II.1.1,Jujuy,AR-Y,annual,2015,naphtha combustion consumption by to the public,37.88509725,TJ,CH4,3.0,kg/TJ,113.65529175,kg -9fa1d218-7bab-3ecc-aee5-58fef988f91a,SESCO,II.1.1,Jujuy,AR-Y,annual,2015,naphtha combustion consumption by to the public,37.88509725,TJ,N2O,0.6,kg/TJ,22.73105835,kg -6a00a36c-1b74-3f4a-a609-23beb7cd53dd,SESCO,II.1.1,La Pampa,AR-L,annual,2015,naphtha combustion consumption by to the public,117.89592814999999,TJ,CO2,73300.0,kg/TJ,8641771.533395,kg -95ba66d2-99be-301a-a3f5-ccd2dba730aa,SESCO,II.1.1,La Pampa,AR-L,annual,2015,naphtha combustion consumption by to the public,117.89592814999999,TJ,CH4,3.0,kg/TJ,353.68778445,kg -4d52f7aa-5cd9-3a0c-9b5d-71afe252bf44,SESCO,II.1.1,La Pampa,AR-L,annual,2015,naphtha combustion consumption by to the public,117.89592814999999,TJ,N2O,0.6,kg/TJ,70.73755689,kg -4cb5f64b-8d27-3311-9911-b5add619df47,SESCO,II.1.1,La Rioja,AR-F,annual,2015,naphtha combustion consumption by to the public,80.91508424999999,TJ,CO2,73300.0,kg/TJ,5931075.675524999,kg -dda981c7-5d86-3642-a63a-54148eb5426b,SESCO,II.1.1,La Rioja,AR-F,annual,2015,naphtha combustion consumption by to the public,80.91508424999999,TJ,CH4,3.0,kg/TJ,242.74525274999996,kg -498de8c1-77b5-3c9a-8ddf-7f5ed3fc728b,SESCO,II.1.1,La Rioja,AR-F,annual,2015,naphtha combustion consumption by to the public,80.91508424999999,TJ,N2O,0.6,kg/TJ,48.54905055,kg -298ee64b-6b85-3c0d-9ecc-49adbfd2e12a,SESCO,II.1.1,Mendoza,AR-M,annual,2015,naphtha combustion consumption by to the public,355.37156654999995,TJ,CO2,73300.0,kg/TJ,26048735.828114998,kg -4c988abd-a049-3627-a81e-75672243a5b6,SESCO,II.1.1,Mendoza,AR-M,annual,2015,naphtha combustion consumption by to the public,355.37156654999995,TJ,CH4,3.0,kg/TJ,1066.11469965,kg -a96aca3d-ef56-3bfd-a48d-ecf2a998a56b,SESCO,II.1.1,Mendoza,AR-M,annual,2015,naphtha combustion consumption by to the public,355.37156654999995,TJ,N2O,0.6,kg/TJ,213.22293992999997,kg -19ba9511-f2eb-3489-a5cf-8b3a2130d034,SESCO,II.1.1,Misiones,AR-N,annual,2015,naphtha combustion consumption by to the public,316.39512905,TJ,CO2,73300.0,kg/TJ,23191762.959365,kg -2677ef30-2911-3f13-91e7-c1c1fbe211b2,SESCO,II.1.1,Misiones,AR-N,annual,2015,naphtha combustion consumption by to the public,316.39512905,TJ,CH4,3.0,kg/TJ,949.18538715,kg -16324dc4-e1a9-3295-a61c-43258647c6c0,SESCO,II.1.1,Misiones,AR-N,annual,2015,naphtha combustion consumption by to the public,316.39512905,TJ,N2O,0.6,kg/TJ,189.83707743,kg -24448200-3ef7-39ad-b31c-5015803b3e8d,SESCO,II.1.1,Neuquén,AR-Q,annual,2015,naphtha combustion consumption by to the public,252.47377154999998,TJ,CO2,73300.0,kg/TJ,18506327.454614997,kg -933b3d35-3b5b-3529-852a-10ad7cf3edf4,SESCO,II.1.1,Neuquén,AR-Q,annual,2015,naphtha combustion consumption by to the public,252.47377154999998,TJ,CH4,3.0,kg/TJ,757.4213146499999,kg -c0f751d1-bedc-3cd7-9ebc-8fa535b0d93f,SESCO,II.1.1,Neuquén,AR-Q,annual,2015,naphtha combustion consumption by to the public,252.47377154999998,TJ,N2O,0.6,kg/TJ,151.48426292999997,kg -67e5d7b6-345a-37f8-8bbc-f53351e2d198,SESCO,II.1.1,Rio Negro,AR-R,annual,2015,naphtha combustion consumption by to the public,68.59853,TJ,CO2,73300.0,kg/TJ,5028272.249,kg -9fd2fd54-156f-3f05-9bbf-253ddbb12e5f,SESCO,II.1.1,Rio Negro,AR-R,annual,2015,naphtha combustion consumption by to the public,68.59853,TJ,CH4,3.0,kg/TJ,205.79559,kg -2fe3b460-9c08-3458-bb80-881ecf99e6a5,SESCO,II.1.1,Rio Negro,AR-R,annual,2015,naphtha combustion consumption by to the public,68.59853,TJ,N2O,0.6,kg/TJ,41.159118,kg -6acf8bdd-bb4a-3e08-8717-35532f1ffa3f,SESCO,II.1.1,Salta,AR-A,annual,2015,naphtha combustion consumption by to the public,76.48736095,TJ,CO2,73300.0,kg/TJ,5606523.557635,kg -3d2b4eb4-411e-3f5d-b796-44efb0f50e31,SESCO,II.1.1,Salta,AR-A,annual,2015,naphtha combustion consumption by to the public,76.48736095,TJ,CH4,3.0,kg/TJ,229.46208285,kg -00d49c15-813d-3d28-91c3-46558846b1a5,SESCO,II.1.1,Salta,AR-A,annual,2015,naphtha combustion consumption by to the public,76.48736095,TJ,N2O,0.6,kg/TJ,45.892416569999995,kg -708895e0-a9df-3097-b70a-410c5613dd9d,SESCO,II.1.1,San Juan,AR-J,annual,2015,naphtha combustion consumption by to the public,34.112178099999994,TJ,CO2,73300.0,kg/TJ,2500422.6547299996,kg -0fed29e9-b4aa-3812-9959-6030a8c74c83,SESCO,II.1.1,San Juan,AR-J,annual,2015,naphtha combustion consumption by to the public,34.112178099999994,TJ,CH4,3.0,kg/TJ,102.33653429999998,kg -344105e9-a780-32f3-9d5e-04e8a17aab2f,SESCO,II.1.1,San Juan,AR-J,annual,2015,naphtha combustion consumption by to the public,34.112178099999994,TJ,N2O,0.6,kg/TJ,20.467306859999997,kg -51ced15e-d44c-366b-b00f-cff0357a72c7,SESCO,II.1.1,San Luis,AR-D,annual,2015,naphtha combustion consumption by to the public,23.292319049999996,TJ,CO2,73300.0,kg/TJ,1707326.9863649998,kg -fbeb2e9e-2446-3ab2-9e72-f5745739f37f,SESCO,II.1.1,San Luis,AR-D,annual,2015,naphtha combustion consumption by to the public,23.292319049999996,TJ,CH4,3.0,kg/TJ,69.87695714999998,kg -cf4e23e6-6c3b-36b6-8eb6-930e8cd07188,SESCO,II.1.1,San Luis,AR-D,annual,2015,naphtha combustion consumption by to the public,23.292319049999996,TJ,N2O,0.6,kg/TJ,13.975391429999997,kg -cff1d31b-2def-383b-939b-aa8b30cef3f8,SESCO,II.1.1,Santa Fe,AR-S,annual,2015,naphtha combustion consumption by to the public,1557.3737179,TJ,CO2,73300.0,kg/TJ,114155493.52207,kg -255d4ff1-e1f7-30b0-9a83-b1f25933d417,SESCO,II.1.1,Santa Fe,AR-S,annual,2015,naphtha combustion consumption by to the public,1557.3737179,TJ,CH4,3.0,kg/TJ,4672.1211537,kg -0341351a-1cca-3220-a058-ee50b27a4997,SESCO,II.1.1,Santa Fe,AR-S,annual,2015,naphtha combustion consumption by to the public,1557.3737179,TJ,N2O,0.6,kg/TJ,934.42423074,kg -b7433022-3c67-3f05-b50e-f9bb2f1f528f,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2015,naphtha combustion consumption by to the public,146.64494844999996,TJ,CO2,73300.0,kg/TJ,10749074.721384997,kg -12e02872-6614-3d43-929e-c3dd81e74f6f,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2015,naphtha combustion consumption by to the public,146.64494844999996,TJ,CH4,3.0,kg/TJ,439.9348453499999,kg -9c1a90a2-2c3c-300e-9a47-5c7dc1fc31b6,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2015,naphtha combustion consumption by to the public,146.64494844999996,TJ,N2O,0.6,kg/TJ,87.98696906999997,kg -33af53c1-d13c-3958-8bc1-1f622ea2a96b,SESCO,II.1.1,Tucuman,AR-T,annual,2015,naphtha combustion consumption by to the public,225.15908414999996,TJ,CO2,73300.0,kg/TJ,16504160.868194997,kg -b112b95d-4c78-3429-8013-59dd242f64de,SESCO,II.1.1,Tucuman,AR-T,annual,2015,naphtha combustion consumption by to the public,225.15908414999996,TJ,CH4,3.0,kg/TJ,675.4772524499999,kg -21e219c6-6792-3898-a5ab-bc93953d0c89,SESCO,II.1.1,Tucuman,AR-T,annual,2015,naphtha combustion consumption by to the public,225.15908414999996,TJ,N2O,0.6,kg/TJ,135.09545048999996,kg -0d4285e4-0d1e-3fb9-b955-ec9dc179c5d3,SESCO,II.5.1,Buenos Aires,AR-B,annual,2015,naphtha combustion consumption by agriculture machines,0.6859852999999999,TJ,CO2,73300.0,kg/TJ,50282.72248999999,kg -c8761d0c-db07-354e-8852-8c4c62ad393a,SESCO,II.5.1,Buenos Aires,AR-B,annual,2015,naphtha combustion consumption by agriculture machines,0.6859852999999999,TJ,CH4,3.0,kg/TJ,2.0579558999999996,kg -d6c78a40-00c0-3c95-b205-8bdb3da9b00a,SESCO,II.5.1,Buenos Aires,AR-B,annual,2015,naphtha combustion consumption by agriculture machines,0.6859852999999999,TJ,N2O,0.6,kg/TJ,0.41159117999999995,kg -cc46e53a-a831-363c-aee1-26c987742692,SESCO,II.5.1,Entre Rios,AR-E,annual,2015,naphtha combustion consumption by agriculture machines,1.2472459999999999,TJ,CO2,73300.0,kg/TJ,91423.13179999999,kg -dc8bf5f0-53ed-3b7f-9a31-561936325ae8,SESCO,II.5.1,Entre Rios,AR-E,annual,2015,naphtha combustion consumption by agriculture machines,1.2472459999999999,TJ,CH4,3.0,kg/TJ,3.741738,kg -008381a8-4173-3101-a6d9-8b984f64da62,SESCO,II.5.1,Entre Rios,AR-E,annual,2015,naphtha combustion consumption by agriculture machines,1.2472459999999999,TJ,N2O,0.6,kg/TJ,0.7483475999999999,kg -44f78de2-5a41-3860-b763-3633814fbfec,SESCO,II.5.1,Salta,AR-A,annual,2015,naphtha combustion consumption by agriculture machines,0.31181149999999996,TJ,CO2,73300.0,kg/TJ,22855.782949999997,kg -39c343bf-5248-3ef0-9370-9d3ff0e467bd,SESCO,II.5.1,Salta,AR-A,annual,2015,naphtha combustion consumption by agriculture machines,0.31181149999999996,TJ,CH4,3.0,kg/TJ,0.9354345,kg -13ba4c17-846a-31a9-bb3b-da43977e32a3,SESCO,II.5.1,Salta,AR-A,annual,2015,naphtha combustion consumption by agriculture machines,0.31181149999999996,TJ,N2O,0.6,kg/TJ,0.18708689999999997,kg -7917db78-ecd1-3165-b304-2eedf5e1c53c,SESCO,II.5.1,Santa Fe,AR-S,annual,2015,naphtha combustion consumption by agriculture machines,25.9427168,TJ,CO2,73300.0,kg/TJ,1901601.14144,kg -ef54e814-aa6a-3cfe-aa6f-5174db83cf6a,SESCO,II.5.1,Santa Fe,AR-S,annual,2015,naphtha combustion consumption by agriculture machines,25.9427168,TJ,CH4,3.0,kg/TJ,77.8281504,kg -45d7943e-4205-323c-b3fa-5019041e8336,SESCO,II.5.1,Santa Fe,AR-S,annual,2015,naphtha combustion consumption by agriculture machines,25.9427168,TJ,N2O,0.6,kg/TJ,15.565630079999998,kg -2cfb9910-7fed-32b4-98cf-69b1c80114b6,SESCO,II.5.1,Buenos Aires,AR-B,annual,2015,naphtha combustion consumption by agriculture machines,0.15590574999999998,TJ,CO2,73300.0,kg/TJ,11427.891474999999,kg -b7771dfc-a28f-3190-98f3-22210ef5de1c,SESCO,II.5.1,Buenos Aires,AR-B,annual,2015,naphtha combustion consumption by agriculture machines,0.15590574999999998,TJ,CH4,3.0,kg/TJ,0.46771725,kg -2b6b4a55-8a8a-369b-8de9-029a6e5c50e4,SESCO,II.5.1,Buenos Aires,AR-B,annual,2015,naphtha combustion consumption by agriculture machines,0.15590574999999998,TJ,N2O,0.6,kg/TJ,0.09354344999999999,kg -882c03b3-1fd9-35af-afe0-64a8cd0d8f2d,SESCO,II.5.1,Santa Fe,AR-S,annual,2015,naphtha combustion consumption by agriculture machines,0.40535495,TJ,CO2,73300.0,kg/TJ,29712.517835,kg -b3003afc-c4c7-3fd7-9fe0-53747f149a41,SESCO,II.5.1,Santa Fe,AR-S,annual,2015,naphtha combustion consumption by agriculture machines,0.40535495,TJ,CH4,3.0,kg/TJ,1.21606485,kg -87bba416-efdc-3f39-abb6-b1f08fca5678,SESCO,II.5.1,Santa Fe,AR-S,annual,2015,naphtha combustion consumption by agriculture machines,0.40535495,TJ,N2O,0.6,kg/TJ,0.24321296999999997,kg -182663a6-7e01-38c7-ba79-e83a7815b0d0,SESCO,II.1.1,Buenos Aires,AR-B,annual,2015,naphtha combustion consumption by to the public,36762.54466885,TJ,CO2,73300.0,kg/TJ,2694694524.226705,kg -50811657-6f00-36ab-bd66-0b6b756a2645,SESCO,II.1.1,Buenos Aires,AR-B,annual,2015,naphtha combustion consumption by to the public,36762.54466885,TJ,CH4,3.0,kg/TJ,110287.63400655001,kg -f84e1f5a-157d-3138-9458-a11ba94dca50,SESCO,II.1.1,Buenos Aires,AR-B,annual,2015,naphtha combustion consumption by to the public,36762.54466885,TJ,N2O,0.6,kg/TJ,22057.52680131,kg -78e3d9d7-5d7a-358a-80b4-8787475e16af,SESCO,II.1.1,Capital Federal,AR-C,annual,2015,naphtha combustion consumption by to the public,8075.76194425,TJ,CO2,73300.0,kg/TJ,591953350.513525,kg -cfcbc580-e57c-3026-b2bd-cbd92da79192,SESCO,II.1.1,Capital Federal,AR-C,annual,2015,naphtha combustion consumption by to the public,8075.76194425,TJ,CH4,3.0,kg/TJ,24227.28583275,kg -1d1b1d89-b70a-33c1-9e74-1da6ca664cba,SESCO,II.1.1,Capital Federal,AR-C,annual,2015,naphtha combustion consumption by to the public,8075.76194425,TJ,N2O,0.6,kg/TJ,4845.45716655,kg -841dd806-ec91-3ae8-af24-87ca74645b9c,SESCO,II.1.1,Catamarca,AR-K,annual,2015,naphtha combustion consumption by to the public,665.7799147999999,TJ,CO2,73300.0,kg/TJ,48801667.754839994,kg -a2055195-74fd-3063-aa15-3e3d792192b1,SESCO,II.1.1,Catamarca,AR-K,annual,2015,naphtha combustion consumption by to the public,665.7799147999999,TJ,CH4,3.0,kg/TJ,1997.3397443999997,kg -bf01466e-2ded-3e76-b24c-14ddd9bc1d12,SESCO,II.1.1,Catamarca,AR-K,annual,2015,naphtha combustion consumption by to the public,665.7799147999999,TJ,N2O,0.6,kg/TJ,399.46794887999994,kg -878da947-1ded-3a26-8e50-acb609c13148,SESCO,II.1.1,Chaco,AR-H,annual,2015,naphtha combustion consumption by to the public,2217.1044896,TJ,CO2,73300.0,kg/TJ,162513759.08767998,kg -06b4ea91-2bbb-34c1-8a87-791b8591900f,SESCO,II.1.1,Chaco,AR-H,annual,2015,naphtha combustion consumption by to the public,2217.1044896,TJ,CH4,3.0,kg/TJ,6651.313468799999,kg -2ef35db2-bca4-3b89-ba98-39979e04de2e,SESCO,II.1.1,Chaco,AR-H,annual,2015,naphtha combustion consumption by to the public,2217.1044896,TJ,N2O,0.6,kg/TJ,1330.2626937599998,kg -64bb4f11-f621-3098-a02b-eabbe40379de,SESCO,II.1.1,Chubut,AR-U,annual,2015,naphtha combustion consumption by to the public,3446.5460529499996,TJ,CO2,73300.0,kg/TJ,252631825.681235,kg -5fce7e07-df14-397f-8753-45d4d1aee546,SESCO,II.1.1,Chubut,AR-U,annual,2015,naphtha combustion consumption by to the public,3446.5460529499996,TJ,CH4,3.0,kg/TJ,10339.638158849999,kg -fb90ed9b-c1de-39cc-8031-ef0693f67a6a,SESCO,II.1.1,Chubut,AR-U,annual,2015,naphtha combustion consumption by to the public,3446.5460529499996,TJ,N2O,0.6,kg/TJ,2067.9276317699996,kg -679b3b2e-9229-3e89-b25c-3c4cf4d9e2f0,SESCO,II.1.1,Corrientes,AR-W,annual,2015,naphtha combustion consumption by to the public,2361.25494605,TJ,CO2,73300.0,kg/TJ,173079987.545465,kg -b4cda8a9-5160-3072-8d54-9998d6452fd7,SESCO,II.1.1,Corrientes,AR-W,annual,2015,naphtha combustion consumption by to the public,2361.25494605,TJ,CH4,3.0,kg/TJ,7083.76483815,kg -ac5dbb48-4e76-3b78-8231-91c37f4c7097,SESCO,II.1.1,Corrientes,AR-W,annual,2015,naphtha combustion consumption by to the public,2361.25494605,TJ,N2O,0.6,kg/TJ,1416.7529676299998,kg -bc67b8b0-24da-391d-93bf-f583148f353a,SESCO,II.1.1,Córdoba,AR-X,annual,2015,naphtha combustion consumption by to the public,9347.110973199999,TJ,CO2,73300.0,kg/TJ,685143234.3355598,kg -f0dbbb9e-b515-3a7b-aac9-2d88abd6fd18,SESCO,II.1.1,Córdoba,AR-X,annual,2015,naphtha combustion consumption by to the public,9347.110973199999,TJ,CH4,3.0,kg/TJ,28041.332919599998,kg -7c80f184-05db-311e-a01f-117dc4841741,SESCO,II.1.1,Córdoba,AR-X,annual,2015,naphtha combustion consumption by to the public,9347.110973199999,TJ,N2O,0.6,kg/TJ,5608.266583919999,kg -1741b2da-e040-3aa3-9ce3-7664d42e65b4,SESCO,II.1.1,Entre Rios,AR-E,annual,2015,naphtha combustion consumption by to the public,3280.1322554,TJ,CO2,73300.0,kg/TJ,240433694.32082,kg -2f66e8d7-04e1-351a-920b-358b98f0a2b5,SESCO,II.1.1,Entre Rios,AR-E,annual,2015,naphtha combustion consumption by to the public,3280.1322554,TJ,CH4,3.0,kg/TJ,9840.3967662,kg -52ada25b-7b04-3110-92dd-3c6d701ac74d,SESCO,II.1.1,Entre Rios,AR-E,annual,2015,naphtha combustion consumption by to the public,3280.1322554,TJ,N2O,0.6,kg/TJ,1968.0793532399998,kg -d304aca7-905e-30b4-81c6-cb9fbc56437b,SESCO,II.1.1,Formosa,AR-P,annual,2015,naphtha combustion consumption by to the public,773.5107880499999,TJ,CO2,73300.0,kg/TJ,56698340.76406499,kg -8106993d-545e-3e48-9e9e-6603170bb8a8,SESCO,II.1.1,Formosa,AR-P,annual,2015,naphtha combustion consumption by to the public,773.5107880499999,TJ,CH4,3.0,kg/TJ,2320.5323641499995,kg -cd68b131-7c46-3b03-b21e-2ede92163f17,SESCO,II.1.1,Formosa,AR-P,annual,2015,naphtha combustion consumption by to the public,773.5107880499999,TJ,N2O,0.6,kg/TJ,464.1064728299999,kg -027a4812-9c3b-3e7a-b3cc-73331511098b,SESCO,II.1.1,Jujuy,AR-Y,annual,2015,naphtha combustion consumption by to the public,1146.81151585,TJ,CO2,73300.0,kg/TJ,84061284.11180499,kg -e2871a30-9b32-30bc-8841-0d16eaaaa7fb,SESCO,II.1.1,Jujuy,AR-Y,annual,2015,naphtha combustion consumption by to the public,1146.81151585,TJ,CH4,3.0,kg/TJ,3440.43454755,kg -dd8504b1-ad37-33a0-bcb4-fa882fb9a74d,SESCO,II.1.1,Jujuy,AR-Y,annual,2015,naphtha combustion consumption by to the public,1146.81151585,TJ,N2O,0.6,kg/TJ,688.0869095099999,kg -a378545a-d0ea-3164-905a-710c081988e8,SESCO,II.1.1,La Pampa,AR-L,annual,2015,naphtha combustion consumption by to the public,1477.7994230999998,TJ,CO2,73300.0,kg/TJ,108322697.71322998,kg -f1e439dd-eb3f-3121-ab51-17778ce6786a,SESCO,II.1.1,La Pampa,AR-L,annual,2015,naphtha combustion consumption by to the public,1477.7994230999998,TJ,CH4,3.0,kg/TJ,4433.3982693,kg -3f95ae07-fbe9-372a-acee-ab6688a2a923,SESCO,II.1.1,La Pampa,AR-L,annual,2015,naphtha combustion consumption by to the public,1477.7994230999998,TJ,N2O,0.6,kg/TJ,886.6796538599998,kg -f59f6a8a-554c-30df-abb5-6568d2636eea,SESCO,II.1.1,La Rioja,AR-F,annual,2015,naphtha combustion consumption by to the public,1007.6500434,TJ,CO2,73300.0,kg/TJ,73860748.18122,kg -67ebac0a-7920-31d8-9f04-3343783a37fc,SESCO,II.1.1,La Rioja,AR-F,annual,2015,naphtha combustion consumption by to the public,1007.6500434,TJ,CH4,3.0,kg/TJ,3022.9501302,kg -0db139b9-5fe2-3020-82c1-cb2e57381dd9,SESCO,II.1.1,La Rioja,AR-F,annual,2015,naphtha combustion consumption by to the public,1007.6500434,TJ,N2O,0.6,kg/TJ,604.59002604,kg -4713a6df-9139-34ba-a0cf-984dbf6af01a,SESCO,II.1.1,Mendoza,AR-M,annual,2015,naphtha combustion consumption by to the public,5023.969250299999,TJ,CO2,73300.0,kg/TJ,368256946.0469899,kg -d0a99a67-d528-3086-88a4-519f9736a4d1,SESCO,II.1.1,Mendoza,AR-M,annual,2015,naphtha combustion consumption by to the public,5023.969250299999,TJ,CH4,3.0,kg/TJ,15071.907750899996,kg -e309c94c-1fee-3a4c-8361-f9332d69e26a,SESCO,II.1.1,Mendoza,AR-M,annual,2015,naphtha combustion consumption by to the public,5023.969250299999,TJ,N2O,0.6,kg/TJ,3014.381550179999,kg -b8b38bd5-9d44-34ea-a92b-c41376bf1840,SESCO,II.1.1,Misiones,AR-N,annual,2015,naphtha combustion consumption by to the public,3237.4140798999997,TJ,CO2,73300.0,kg/TJ,237302452.05666998,kg -3be86b12-b4ea-33a2-8880-8f819abd8b3a,SESCO,II.1.1,Misiones,AR-N,annual,2015,naphtha combustion consumption by to the public,3237.4140798999997,TJ,CH4,3.0,kg/TJ,9712.2422397,kg -6863e1d6-5219-3ac7-a41d-8351a58ef28e,SESCO,II.1.1,Misiones,AR-N,annual,2015,naphtha combustion consumption by to the public,3237.4140798999997,TJ,N2O,0.6,kg/TJ,1942.4484479399998,kg -bb541382-da94-3a9f-b812-a4d601aff455,SESCO,II.1.1,Neuquén,AR-Q,annual,2015,naphtha combustion consumption by to the public,2997.1321379999995,TJ,CO2,73300.0,kg/TJ,219689785.71539995,kg -fd4c28f2-44c3-35ea-81fe-d8a76a5189be,SESCO,II.1.1,Neuquén,AR-Q,annual,2015,naphtha combustion consumption by to the public,2997.1321379999995,TJ,CH4,3.0,kg/TJ,8991.396413999999,kg -fc4dd6e4-5631-3338-9d8c-56c98543a5db,SESCO,II.1.1,Neuquén,AR-Q,annual,2015,naphtha combustion consumption by to the public,2997.1321379999995,TJ,N2O,0.6,kg/TJ,1798.2792827999997,kg -00125c57-583d-35ab-98ae-b2516a3783b5,SESCO,II.1.1,Rio Negro,AR-R,annual,2015,naphtha combustion consumption by to the public,2936.4848012499997,TJ,CO2,73300.0,kg/TJ,215244335.93162498,kg -10e4719e-ecb1-3bdd-8542-be74b707d351,SESCO,II.1.1,Rio Negro,AR-R,annual,2015,naphtha combustion consumption by to the public,2936.4848012499997,TJ,CH4,3.0,kg/TJ,8809.454403749998,kg -c0d495fc-bda3-3b84-87fd-e34c27892e1f,SESCO,II.1.1,Rio Negro,AR-R,annual,2015,naphtha combustion consumption by to the public,2936.4848012499997,TJ,N2O,0.6,kg/TJ,1761.8908807499997,kg -9b01acdf-dfe6-320d-b29c-04c7006fe044,SESCO,II.1.1,Salta,AR-A,annual,2015,naphtha combustion consumption by to the public,2695.08033795,TJ,CO2,73300.0,kg/TJ,197549388.77173498,kg -5150a403-8313-3550-ba1a-bd683ffdfd96,SESCO,II.1.1,Salta,AR-A,annual,2015,naphtha combustion consumption by to the public,2695.08033795,TJ,CH4,3.0,kg/TJ,8085.24101385,kg -ec9eef80-bff5-301f-b703-6c30738e6591,SESCO,II.1.1,Salta,AR-A,annual,2015,naphtha combustion consumption by to the public,2695.08033795,TJ,N2O,0.6,kg/TJ,1617.0482027699998,kg -1be2e179-1e6e-36cf-a59f-5f1321382c7d,SESCO,II.1.1,San Juan,AR-J,annual,2015,naphtha combustion consumption by to the public,1636.3243897,TJ,CO2,73300.0,kg/TJ,119942577.76501,kg -64bae776-3f80-3ed8-95a9-c54e88ff6a53,SESCO,II.1.1,San Juan,AR-J,annual,2015,naphtha combustion consumption by to the public,1636.3243897,TJ,CH4,3.0,kg/TJ,4908.9731691,kg -cb73d02e-5a8d-3505-bc83-2687dbf8b89d,SESCO,II.1.1,San Juan,AR-J,annual,2015,naphtha combustion consumption by to the public,1636.3243897,TJ,N2O,0.6,kg/TJ,981.79463382,kg -fdec74c7-c27b-38da-bfc5-b0e0248b2790,SESCO,II.1.1,San Luis,AR-D,annual,2015,naphtha combustion consumption by to the public,1272.1909199999998,TJ,CO2,73300.0,kg/TJ,93251594.43599999,kg -e5836217-7ea9-302e-bb1e-fbdeb9e400e9,SESCO,II.1.1,San Luis,AR-D,annual,2015,naphtha combustion consumption by to the public,1272.1909199999998,TJ,CH4,3.0,kg/TJ,3816.572759999999,kg -c87ea062-9373-3bfd-a5c0-a4ae482b4c7f,SESCO,II.1.1,San Luis,AR-D,annual,2015,naphtha combustion consumption by to the public,1272.1909199999998,TJ,N2O,0.6,kg/TJ,763.3145519999998,kg -cb649a0a-331a-3a48-b0f5-a9c2366c9974,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2015,naphtha combustion consumption by to the public,2399.8260286,TJ,CO2,73300.0,kg/TJ,175907247.89638,kg -2054a3d1-8a11-35c2-8021-7215c6620b6f,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2015,naphtha combustion consumption by to the public,2399.8260286,TJ,CH4,3.0,kg/TJ,7199.4780857999995,kg -cfc25a25-1307-38bf-929a-458b8fa1a630,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2015,naphtha combustion consumption by to the public,2399.8260286,TJ,N2O,0.6,kg/TJ,1439.89561716,kg -4fe70eab-9bab-301e-a773-80c3875dbcac,SESCO,II.1.1,Santa Fe,AR-S,annual,2015,naphtha combustion consumption by to the public,7161.717713149999,TJ,CO2,73300.0,kg/TJ,524953908.37389493,kg -844ed04a-382e-38e7-8a0e-47af5dc84f72,SESCO,II.1.1,Santa Fe,AR-S,annual,2015,naphtha combustion consumption by to the public,7161.717713149999,TJ,CH4,3.0,kg/TJ,21485.153139449998,kg -6d241b0b-22d7-39c2-8847-d9b147641850,SESCO,II.1.1,Santa Fe,AR-S,annual,2015,naphtha combustion consumption by to the public,7161.717713149999,TJ,N2O,0.6,kg/TJ,4297.03062789,kg -d6eadc24-8280-3f77-837c-35fa7ded2e71,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2015,naphtha combustion consumption by to the public,1219.21414615,TJ,CO2,73300.0,kg/TJ,89368396.912795,kg -5164bf67-3249-3e70-be70-004f6d8c3fff,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2015,naphtha combustion consumption by to the public,1219.21414615,TJ,CH4,3.0,kg/TJ,3657.64243845,kg -7c726de5-0eb8-38a0-af4b-fef869063f4a,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2015,naphtha combustion consumption by to the public,1219.21414615,TJ,N2O,0.6,kg/TJ,731.52848769,kg -33b365d8-2457-34f0-a35c-b690182f7279,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2015,naphtha combustion consumption by to the public,1827.0283031,TJ,CO2,73300.0,kg/TJ,133921174.61723,kg -c509aa6a-3c5c-3777-8782-c567e477ed39,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2015,naphtha combustion consumption by to the public,1827.0283031,TJ,CH4,3.0,kg/TJ,5481.0849093,kg -8f6b53e4-b6a8-36de-8381-96a3ed28a1b6,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2015,naphtha combustion consumption by to the public,1827.0283031,TJ,N2O,0.6,kg/TJ,1096.2169818599998,kg -5d0dbd6c-f07c-38b2-8db5-308cc4951729,SESCO,II.1.1,Tucuman,AR-T,annual,2015,naphtha combustion consumption by to the public,2204.7879353499998,TJ,CO2,73300.0,kg/TJ,161610955.661155,kg -e4aa82ac-414b-3855-b606-bb722bb1b2a0,SESCO,II.1.1,Tucuman,AR-T,annual,2015,naphtha combustion consumption by to the public,2204.7879353499998,TJ,CH4,3.0,kg/TJ,6614.36380605,kg -fee884ca-7979-342b-bc4a-0217b7bbcf97,SESCO,II.1.1,Tucuman,AR-T,annual,2015,naphtha combustion consumption by to the public,2204.7879353499998,TJ,N2O,0.6,kg/TJ,1322.87276121,kg -589abb7b-a8a1-3b24-b223-b12e78efe140,SESCO,II.1.1,Buenos Aires,AR-B,annual,2015,naphtha combustion consumption by to the public,16140.672848299997,TJ,CO2,73300.0,kg/TJ,1183111319.7803898,kg -f9b46d83-465e-3447-a196-95f00faacdee,SESCO,II.1.1,Buenos Aires,AR-B,annual,2015,naphtha combustion consumption by to the public,16140.672848299997,TJ,CH4,3.0,kg/TJ,48422.01854489999,kg -c0cef832-3e49-3544-81aa-905a9ba73c9a,SESCO,II.1.1,Buenos Aires,AR-B,annual,2015,naphtha combustion consumption by to the public,16140.672848299997,TJ,N2O,0.6,kg/TJ,9684.403708979999,kg -b44bc4cf-6d72-3837-a2ca-42e45fe76bd2,SESCO,II.1.1,Capital Federal,AR-C,annual,2015,naphtha combustion consumption by to the public,3934.3751446999995,TJ,CO2,73300.0,kg/TJ,288389698.10651,kg -430b39bf-55ea-320f-9f5f-ebad451a25f9,SESCO,II.1.1,Capital Federal,AR-C,annual,2015,naphtha combustion consumption by to the public,3934.3751446999995,TJ,CH4,3.0,kg/TJ,11803.125434099999,kg -09bdd1eb-f255-3dfc-ae8e-b03ab8e35999,SESCO,II.1.1,Capital Federal,AR-C,annual,2015,naphtha combustion consumption by to the public,3934.3751446999995,TJ,N2O,0.6,kg/TJ,2360.6250868199995,kg -321bdac4-010f-385a-9b1e-38ff6ba78cfa,SESCO,II.1.1,Catamarca,AR-K,annual,2015,naphtha combustion consumption by to the public,272.3361641,TJ,CO2,73300.0,kg/TJ,19962240.828530002,kg -aa646e87-c0fa-3a27-a892-6df56724e983,SESCO,II.1.1,Catamarca,AR-K,annual,2015,naphtha combustion consumption by to the public,272.3361641,TJ,CH4,3.0,kg/TJ,817.0084923000001,kg -ef2d2f41-66d9-3338-8c8b-74e42b2cf2fe,SESCO,II.1.1,Catamarca,AR-K,annual,2015,naphtha combustion consumption by to the public,272.3361641,TJ,N2O,0.6,kg/TJ,163.40169846,kg -1ffd0a79-0836-3849-80c1-3add8c8a8779,SESCO,II.1.1,Chaco,AR-H,annual,2015,naphtha combustion consumption by to the public,1002.3492478999999,TJ,CO2,73300.0,kg/TJ,73472199.87107,kg -9c9803d5-9b23-3fa0-bf8f-00f1cac78ed0,SESCO,II.1.1,Chaco,AR-H,annual,2015,naphtha combustion consumption by to the public,1002.3492478999999,TJ,CH4,3.0,kg/TJ,3007.0477437,kg -11ede36b-adf5-313a-bc43-070c56cfbc31,SESCO,II.1.1,Chaco,AR-H,annual,2015,naphtha combustion consumption by to the public,1002.3492478999999,TJ,N2O,0.6,kg/TJ,601.4095487399999,kg -c74cd7de-47f5-3def-b78d-c89e84012475,SESCO,II.1.1,Chubut,AR-U,annual,2015,naphtha combustion consumption by to the public,1511.1944347499998,TJ,CO2,73300.0,kg/TJ,110770552.06717499,kg -31c494cf-f899-385f-9cca-89fb8007b6ce,SESCO,II.1.1,Chubut,AR-U,annual,2015,naphtha combustion consumption by to the public,1511.1944347499998,TJ,CH4,3.0,kg/TJ,4533.58330425,kg -2a3b7f00-734c-38ce-9854-a147759ff56f,SESCO,II.1.1,Chubut,AR-U,annual,2015,naphtha combustion consumption by to the public,1511.1944347499998,TJ,N2O,0.6,kg/TJ,906.7166608499998,kg -f80dbcaa-8040-3c61-998a-1879fef101f7,SESCO,II.1.1,Corrientes,AR-W,annual,2015,naphtha combustion consumption by to the public,1064.4309175499998,TJ,CO2,73300.0,kg/TJ,78022786.25641498,kg -0a4cc785-50cf-31e1-a16c-69bb31fe81c5,SESCO,II.1.1,Corrientes,AR-W,annual,2015,naphtha combustion consumption by to the public,1064.4309175499998,TJ,CH4,3.0,kg/TJ,3193.2927526499993,kg -a243d715-4463-3c4d-8086-cc2540921a71,SESCO,II.1.1,Corrientes,AR-W,annual,2015,naphtha combustion consumption by to the public,1064.4309175499998,TJ,N2O,0.6,kg/TJ,638.6585505299998,kg -333d3809-c880-3b19-8e8e-2e1b592cb472,SESCO,II.1.1,Córdoba,AR-X,annual,2015,naphtha combustion consumption by to the public,3308.22647155,TJ,CO2,73300.0,kg/TJ,242493000.364615,kg -0941245a-8ed8-371e-9415-3e942a85df1e,SESCO,II.1.1,Córdoba,AR-X,annual,2015,naphtha combustion consumption by to the public,3308.22647155,TJ,CH4,3.0,kg/TJ,9924.67941465,kg -e7721521-31b5-36af-89ad-d2267f925d1b,SESCO,II.1.1,Córdoba,AR-X,annual,2015,naphtha combustion consumption by to the public,3308.22647155,TJ,N2O,0.6,kg/TJ,1984.93588293,kg -07aeda72-0168-3029-ab32-82145b536f5b,SESCO,II.1.1,Entre Rios,AR-E,annual,2015,naphtha combustion consumption by to the public,1426.0698952499997,TJ,CO2,73300.0,kg/TJ,104530923.32182498,kg -d1f9a58c-472d-3d17-bac3-3e3883f64e2b,SESCO,II.1.1,Entre Rios,AR-E,annual,2015,naphtha combustion consumption by to the public,1426.0698952499997,TJ,CH4,3.0,kg/TJ,4278.209685749999,kg -ce6ecbb5-92fe-3ab1-9b5c-b65081040250,SESCO,II.1.1,Entre Rios,AR-E,annual,2015,naphtha combustion consumption by to the public,1426.0698952499997,TJ,N2O,0.6,kg/TJ,855.6419371499998,kg -45f91125-62e5-3fcb-bc3e-d8b2405ec0b2,SESCO,II.1.1,Formosa,AR-P,annual,2015,naphtha combustion consumption by to the public,282.59476244999996,TJ,CO2,73300.0,kg/TJ,20714196.087585,kg -0c27c028-d387-3397-bc39-5b93b8e31bc6,SESCO,II.1.1,Formosa,AR-P,annual,2015,naphtha combustion consumption by to the public,282.59476244999996,TJ,CH4,3.0,kg/TJ,847.7842873499999,kg -f79d0bb8-12d5-3566-a0e2-7ca91a006f33,SESCO,II.1.1,Formosa,AR-P,annual,2015,naphtha combustion consumption by to the public,282.59476244999996,TJ,N2O,0.6,kg/TJ,169.55685746999998,kg -a2ebfd7c-d4fa-30ed-ab39-5f3a1a42269c,SESCO,II.1.1,Jujuy,AR-Y,annual,2015,naphtha combustion consumption by to the public,366.1914256,TJ,CO2,73300.0,kg/TJ,26841831.49648,kg -cbfab2d2-7332-3f50-8c29-e65d93598758,SESCO,II.1.1,Jujuy,AR-Y,annual,2015,naphtha combustion consumption by to the public,366.1914256,TJ,CH4,3.0,kg/TJ,1098.5742768,kg -3de8e3b6-fe81-3501-b0f9-9a217272cc35,SESCO,II.1.1,Jujuy,AR-Y,annual,2015,naphtha combustion consumption by to the public,366.1914256,TJ,N2O,0.6,kg/TJ,219.71485536,kg -4d90debd-4da9-3f69-ab3e-39692a95a7b5,SESCO,II.1.1,La Pampa,AR-L,annual,2015,naphtha combustion consumption by to the public,860.5685588499999,TJ,CO2,73300.0,kg/TJ,63079675.363704994,kg -e7ba5638-c6e2-380e-a519-d3c3b07e4674,SESCO,II.1.1,La Pampa,AR-L,annual,2015,naphtha combustion consumption by to the public,860.5685588499999,TJ,CH4,3.0,kg/TJ,2581.7056765499997,kg -6998f57b-32c2-3431-abac-f8ca9fd90afc,SESCO,II.1.1,La Pampa,AR-L,annual,2015,naphtha combustion consumption by to the public,860.5685588499999,TJ,N2O,0.6,kg/TJ,516.3411353099999,kg -a0f3f38c-ddbe-33c6-afac-83cc083f0b32,SESCO,II.1.1,La Rioja,AR-F,annual,2015,naphtha combustion consumption by to the public,380.78420379999994,TJ,CO2,73300.0,kg/TJ,27911482.138539996,kg -9c249b6c-7fc0-34ec-a424-96d342342b87,SESCO,II.1.1,La Rioja,AR-F,annual,2015,naphtha combustion consumption by to the public,380.78420379999994,TJ,CH4,3.0,kg/TJ,1142.3526114,kg -50bc5e5e-b81e-3fc3-990d-0621bc3193ee,SESCO,II.1.1,La Rioja,AR-F,annual,2015,naphtha combustion consumption by to the public,380.78420379999994,TJ,N2O,0.6,kg/TJ,228.47052227999995,kg -7a8d3756-3dbe-3474-99d2-d0df999d8b2b,SESCO,II.1.1,Mendoza,AR-M,annual,2015,naphtha combustion consumption by to the public,2663.8056444999997,TJ,CO2,73300.0,kg/TJ,195256953.74185,kg -54283e1b-9424-3fe4-8e45-8b72f0d5d6fa,SESCO,II.1.1,Mendoza,AR-M,annual,2015,naphtha combustion consumption by to the public,2663.8056444999997,TJ,CH4,3.0,kg/TJ,7991.416933499999,kg -d6885ad9-c837-312c-974c-7403c7ecbce0,SESCO,II.1.1,Mendoza,AR-M,annual,2015,naphtha combustion consumption by to the public,2663.8056444999997,TJ,N2O,0.6,kg/TJ,1598.2833866999997,kg -8f9837fc-be27-3e0c-afb9-e8592fdc5d32,SESCO,II.1.1,Misiones,AR-N,annual,2015,naphtha combustion consumption by to the public,1022.02455355,TJ,CO2,73300.0,kg/TJ,74914399.775215,kg -8d676824-10de-3b28-b969-50555b7670bc,SESCO,II.1.1,Misiones,AR-N,annual,2015,naphtha combustion consumption by to the public,1022.02455355,TJ,CH4,3.0,kg/TJ,3066.07366065,kg -28b02ccc-692a-3041-8b2d-119f40ad56e2,SESCO,II.1.1,Misiones,AR-N,annual,2015,naphtha combustion consumption by to the public,1022.02455355,TJ,N2O,0.6,kg/TJ,613.2147321299999,kg -e4f4b062-ce76-3aa1-b936-63c4e05686dd,SESCO,II.1.1,Neuquén,AR-Q,annual,2015,naphtha combustion consumption by to the public,1489.18054285,TJ,CO2,73300.0,kg/TJ,109156933.790905,kg -2e496666-0968-30a6-a1a5-9152caec63cf,SESCO,II.1.1,Neuquén,AR-Q,annual,2015,naphtha combustion consumption by to the public,1489.18054285,TJ,CH4,3.0,kg/TJ,4467.54162855,kg -5195f060-ebdc-33f7-8737-028719d82e18,SESCO,II.1.1,Neuquén,AR-Q,annual,2015,naphtha combustion consumption by to the public,1489.18054285,TJ,N2O,0.6,kg/TJ,893.5083257099999,kg -da92383e-7fac-39eb-a8d6-96c8a27178bb,SESCO,II.1.1,Rio Negro,AR-R,annual,2015,naphtha combustion consumption by to the public,1383.28935745,TJ,CO2,73300.0,kg/TJ,101395109.90108499,kg -0ea9e785-58b9-3357-bf64-30e347b128cc,SESCO,II.1.1,Rio Negro,AR-R,annual,2015,naphtha combustion consumption by to the public,1383.28935745,TJ,CH4,3.0,kg/TJ,4149.86807235,kg -e4b307d4-732e-3453-b689-fd2f48eabc26,SESCO,II.1.1,Rio Negro,AR-R,annual,2015,naphtha combustion consumption by to the public,1383.28935745,TJ,N2O,0.6,kg/TJ,829.9736144699999,kg -67dd8762-0da9-3472-957e-4d7208121970,SESCO,II.1.1,Salta,AR-A,annual,2015,naphtha combustion consumption by to the public,882.7383564999999,TJ,CO2,73300.0,kg/TJ,64704721.531449996,kg -16432061-e6f5-37e7-a9c8-aa5c75770121,SESCO,II.1.1,Salta,AR-A,annual,2015,naphtha combustion consumption by to the public,882.7383564999999,TJ,CH4,3.0,kg/TJ,2648.2150694999996,kg -fc056566-7bec-3d71-b58c-9aed4f35ece2,SESCO,II.1.1,Salta,AR-A,annual,2015,naphtha combustion consumption by to the public,882.7383564999999,TJ,N2O,0.6,kg/TJ,529.6430138999999,kg -98fdf235-e3ad-36d5-94ee-838e7725bc92,SESCO,II.1.1,San Juan,AR-J,annual,2015,naphtha combustion consumption by to the public,684.6756916999999,TJ,CO2,73300.0,kg/TJ,50186728.20160999,kg -3fbe6d0e-cdfb-3550-9768-c1cf5937525e,SESCO,II.1.1,San Juan,AR-J,annual,2015,naphtha combustion consumption by to the public,684.6756916999999,TJ,CH4,3.0,kg/TJ,2054.0270751,kg -7171a25c-f9ce-36fe-a1a0-3328bff76437,SESCO,II.1.1,San Juan,AR-J,annual,2015,naphtha combustion consumption by to the public,684.6756916999999,TJ,N2O,0.6,kg/TJ,410.80541501999994,kg -f1612816-9a3f-3a2e-b473-320d39833d37,SESCO,II.1.1,San Luis,AR-D,annual,2015,naphtha combustion consumption by to the public,645.4186238499999,TJ,CO2,73300.0,kg/TJ,47309185.128204994,kg -5fd9889e-4208-36fc-89d2-4af0abf54174,SESCO,II.1.1,San Luis,AR-D,annual,2015,naphtha combustion consumption by to the public,645.4186238499999,TJ,CH4,3.0,kg/TJ,1936.2558715499997,kg -bbb23758-3f55-358c-be5f-78b05a253337,SESCO,II.1.1,San Luis,AR-D,annual,2015,naphtha combustion consumption by to the public,645.4186238499999,TJ,N2O,0.6,kg/TJ,387.25117430999995,kg -eb11b4d4-489e-334d-9529-4338b846fa60,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2015,naphtha combustion consumption by to the public,923.6792064499999,TJ,CO2,73300.0,kg/TJ,67705685.832785,kg -40ec3788-6286-3ea6-9b59-09a25e288ca0,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2015,naphtha combustion consumption by to the public,923.6792064499999,TJ,CH4,3.0,kg/TJ,2771.0376193499997,kg -ffbf1e8b-4a41-3b1d-a46a-a78a813e0419,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2015,naphtha combustion consumption by to the public,923.6792064499999,TJ,N2O,0.6,kg/TJ,554.2075238699999,kg -a30bfeaa-eac6-3c18-b32e-64b54727f795,SESCO,II.1.1,Santa Fe,AR-S,annual,2015,naphtha combustion consumption by to the public,3354.74874735,TJ,CO2,73300.0,kg/TJ,245903083.180755,kg -805a9bc8-5125-389c-ad4e-078ae7545c37,SESCO,II.1.1,Santa Fe,AR-S,annual,2015,naphtha combustion consumption by to the public,3354.74874735,TJ,CH4,3.0,kg/TJ,10064.24624205,kg -c7006c01-3284-3b38-8594-9da0b2473b2c,SESCO,II.1.1,Santa Fe,AR-S,annual,2015,naphtha combustion consumption by to the public,3354.74874735,TJ,N2O,0.6,kg/TJ,2012.84924841,kg -132892a8-ee0c-3c11-813e-73e797222a16,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2015,naphtha combustion consumption by to the public,634.5052213499999,TJ,CO2,73300.0,kg/TJ,46509232.72495499,kg -2123302e-ae5d-35d7-8586-02674de25314,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2015,naphtha combustion consumption by to the public,634.5052213499999,TJ,CH4,3.0,kg/TJ,1903.51566405,kg -64bf2609-1bff-35e7-95ec-bc1d5e3d2706,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2015,naphtha combustion consumption by to the public,634.5052213499999,TJ,N2O,0.6,kg/TJ,380.70313280999994,kg -daf6b7ec-96ea-3344-a314-1baf2da34735,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2015,naphtha combustion consumption by to the public,147.79865099999998,TJ,CO2,73300.0,kg/TJ,10833641.118299998,kg -8d66b53d-fa93-3778-b01d-67c6622fcf2c,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2015,naphtha combustion consumption by to the public,147.79865099999998,TJ,CH4,3.0,kg/TJ,443.39595299999996,kg -0f6e6165-d587-3365-b88f-b03f78f28984,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2015,naphtha combustion consumption by to the public,147.79865099999998,TJ,N2O,0.6,kg/TJ,88.67919059999998,kg -4f97df5f-36a5-3b69-91d1-be135ac41376,SESCO,II.1.1,Tucuman,AR-T,annual,2015,naphtha combustion consumption by to the public,651.4677669499999,TJ,CO2,73300.0,kg/TJ,47752587.317435,kg -fc97e548-f88c-38c5-bab7-8afd2f181c9e,SESCO,II.1.1,Tucuman,AR-T,annual,2015,naphtha combustion consumption by to the public,651.4677669499999,TJ,CH4,3.0,kg/TJ,1954.4033008499998,kg -08608ee2-f377-332a-b5dc-2f33b2526cf3,SESCO,II.1.1,Tucuman,AR-T,annual,2015,naphtha combustion consumption by to the public,651.4677669499999,TJ,N2O,0.6,kg/TJ,390.88066016999994,kg -f09a98ac-7bf3-3e5b-b1dd-e57933038207,SESCO,II.1.1,Buenos Aires,AR-B,annual,2015,naphtha combustion consumption by freight transport,198.84219354999996,TJ,CO2,73300.0,kg/TJ,14575132.787214996,kg -f672053a-af5c-3d7f-b173-cb15db9ad2f4,SESCO,II.1.1,Buenos Aires,AR-B,annual,2015,naphtha combustion consumption by freight transport,198.84219354999996,TJ,CH4,3.0,kg/TJ,596.5265806499999,kg -f79b0ad2-607f-3238-8728-7d16534235d3,SESCO,II.1.1,Buenos Aires,AR-B,annual,2015,naphtha combustion consumption by freight transport,198.84219354999996,TJ,N2O,0.6,kg/TJ,119.30531612999997,kg -26f666ab-ff29-3836-a55b-6162d1fb0504,SESCO,II.1.1,Capital Federal,AR-C,annual,2015,naphtha combustion consumption by freight transport,206.9181114,TJ,CO2,73300.0,kg/TJ,15167097.56562,kg -3b11fb42-4be8-3ce0-906c-e403a0da7b39,SESCO,II.1.1,Capital Federal,AR-C,annual,2015,naphtha combustion consumption by freight transport,206.9181114,TJ,CH4,3.0,kg/TJ,620.7543341999999,kg -446088ff-e17f-39a2-bd39-fa7787104ac6,SESCO,II.1.1,Capital Federal,AR-C,annual,2015,naphtha combustion consumption by freight transport,206.9181114,TJ,N2O,0.6,kg/TJ,124.15086683999999,kg -734b49d5-2426-3879-8801-7031f9787ae0,SESCO,II.1.1,Chaco,AR-H,annual,2015,naphtha combustion consumption by freight transport,5.95559965,TJ,CO2,73300.0,kg/TJ,436545.454345,kg -96481764-2157-3ab3-979d-109031c767d3,SESCO,II.1.1,Chaco,AR-H,annual,2015,naphtha combustion consumption by freight transport,5.95559965,TJ,CH4,3.0,kg/TJ,17.86679895,kg -25d59e64-ee34-374e-87ce-83081876593a,SESCO,II.1.1,Chaco,AR-H,annual,2015,naphtha combustion consumption by freight transport,5.95559965,TJ,N2O,0.6,kg/TJ,3.57335979,kg -97ac548e-3b6d-3abb-bd14-445a77a6921c,SESCO,II.1.1,Chubut,AR-U,annual,2015,naphtha combustion consumption by freight transport,1.02897795,TJ,CO2,73300.0,kg/TJ,75424.08373500001,kg -d6cea011-522d-3305-a2c5-9909c045cfda,SESCO,II.1.1,Chubut,AR-U,annual,2015,naphtha combustion consumption by freight transport,1.02897795,TJ,CH4,3.0,kg/TJ,3.0869338500000003,kg -8edd5844-6bee-3481-9ecb-90109932785f,SESCO,II.1.1,Chubut,AR-U,annual,2015,naphtha combustion consumption by freight transport,1.02897795,TJ,N2O,0.6,kg/TJ,0.61738677,kg -e8a7e6ef-e9d8-3aa1-ad10-46ba1ca6bcbb,SESCO,II.1.1,Corrientes,AR-W,annual,2015,naphtha combustion consumption by freight transport,1.1848836999999999,TJ,CO2,73300.0,kg/TJ,86851.97520999999,kg -ede68e28-f647-3b7b-b44e-c83f5e0e749a,SESCO,II.1.1,Corrientes,AR-W,annual,2015,naphtha combustion consumption by freight transport,1.1848836999999999,TJ,CH4,3.0,kg/TJ,3.5546510999999996,kg -1869ed7f-b968-31e6-9a6f-7adaabf884ca,SESCO,II.1.1,Corrientes,AR-W,annual,2015,naphtha combustion consumption by freight transport,1.1848836999999999,TJ,N2O,0.6,kg/TJ,0.71093022,kg -13d0ac29-d3d1-3d8f-a234-007be1fed6d8,SESCO,II.1.1,Córdoba,AR-X,annual,2015,naphtha combustion consumption by freight transport,4.147092949999999,TJ,CO2,73300.0,kg/TJ,303981.9132349999,kg -fc3dc1dc-4f56-3bfb-99b2-89329b7acddd,SESCO,II.1.1,Córdoba,AR-X,annual,2015,naphtha combustion consumption by freight transport,4.147092949999999,TJ,CH4,3.0,kg/TJ,12.441278849999998,kg -62a85c8e-c30e-374e-9af9-da117f14ff69,SESCO,II.1.1,Córdoba,AR-X,annual,2015,naphtha combustion consumption by freight transport,4.147092949999999,TJ,N2O,0.6,kg/TJ,2.4882557699999994,kg -27681296-d9e0-3028-85ea-3f4a20dfcfa4,SESCO,II.1.1,Entre Rios,AR-E,annual,2015,naphtha combustion consumption by freight transport,2.0891370499999997,TJ,CO2,73300.0,kg/TJ,153133.74576499997,kg -242c53a5-6b35-3c22-908b-643b064bc086,SESCO,II.1.1,Entre Rios,AR-E,annual,2015,naphtha combustion consumption by freight transport,2.0891370499999997,TJ,CH4,3.0,kg/TJ,6.267411149999999,kg -de6c6c56-708b-39c8-9e21-a0c1ca542b29,SESCO,II.1.1,Entre Rios,AR-E,annual,2015,naphtha combustion consumption by freight transport,2.0891370499999997,TJ,N2O,0.6,kg/TJ,1.2534822299999997,kg -111ac5d1-7593-3da4-9f08-62a3c0188326,SESCO,II.1.1,Mendoza,AR-M,annual,2015,naphtha combustion consumption by freight transport,6.1738677,TJ,CO2,73300.0,kg/TJ,452544.50240999996,kg -2e233c0e-1254-3703-b66f-77136b11f038,SESCO,II.1.1,Mendoza,AR-M,annual,2015,naphtha combustion consumption by freight transport,6.1738677,TJ,CH4,3.0,kg/TJ,18.5216031,kg -e54ee413-9ef9-3d1c-9245-0caa546b1ff6,SESCO,II.1.1,Mendoza,AR-M,annual,2015,naphtha combustion consumption by freight transport,6.1738677,TJ,N2O,0.6,kg/TJ,3.70432062,kg -ae30f169-fbcb-3b27-bafd-75b31b42937c,SESCO,II.1.1,Misiones,AR-N,annual,2015,naphtha combustion consumption by freight transport,0.4365361,TJ,CO2,73300.0,kg/TJ,31998.096129999998,kg -bb70b9aa-865c-33e4-b293-ed9c68f965bf,SESCO,II.1.1,Misiones,AR-N,annual,2015,naphtha combustion consumption by freight transport,0.4365361,TJ,CH4,3.0,kg/TJ,1.3096082999999998,kg -b6ed7f26-0651-3959-a8cc-aa851bcb5f37,SESCO,II.1.1,Misiones,AR-N,annual,2015,naphtha combustion consumption by freight transport,0.4365361,TJ,N2O,0.6,kg/TJ,0.26192166,kg -4cba6e98-d6af-3424-966c-8e3129a09d66,SESCO,II.1.1,Neuquén,AR-Q,annual,2015,naphtha combustion consumption by freight transport,0.9354345,TJ,CO2,73300.0,kg/TJ,68567.34885,kg -721ae151-3dd2-3c65-b458-25301c8b59e4,SESCO,II.1.1,Neuquén,AR-Q,annual,2015,naphtha combustion consumption by freight transport,0.9354345,TJ,CH4,3.0,kg/TJ,2.8063035,kg -64bc4e69-d9cf-3ffd-9c31-923688a49bdf,SESCO,II.1.1,Neuquén,AR-Q,annual,2015,naphtha combustion consumption by freight transport,0.9354345,TJ,N2O,0.6,kg/TJ,0.5612607,kg -5013bbb9-6128-3f46-99f0-964de643c5d1,SESCO,II.1.1,Rio Negro,AR-R,annual,2015,naphtha combustion consumption by freight transport,1.21606485,TJ,CO2,73300.0,kg/TJ,89137.553505,kg -09ee84f1-e060-3280-8f93-5281a2ccb968,SESCO,II.1.1,Rio Negro,AR-R,annual,2015,naphtha combustion consumption by freight transport,1.21606485,TJ,CH4,3.0,kg/TJ,3.64819455,kg -b89d7724-6084-32f5-a723-5226eaf18f4f,SESCO,II.1.1,Rio Negro,AR-R,annual,2015,naphtha combustion consumption by freight transport,1.21606485,TJ,N2O,0.6,kg/TJ,0.7296389099999999,kg -5e5893e0-8c6d-3267-8dc8-1acf25e90d34,SESCO,II.1.1,Salta,AR-A,annual,2015,naphtha combustion consumption by freight transport,10.69513445,TJ,CO2,73300.0,kg/TJ,783953.355185,kg -5e0157be-5890-39cb-b871-241704b22d10,SESCO,II.1.1,Salta,AR-A,annual,2015,naphtha combustion consumption by freight transport,10.69513445,TJ,CH4,3.0,kg/TJ,32.08540335,kg -a17784cc-7ddf-3942-a1b9-c7bf04dd6ac5,SESCO,II.1.1,Salta,AR-A,annual,2015,naphtha combustion consumption by freight transport,10.69513445,TJ,N2O,0.6,kg/TJ,6.41708067,kg -56838f25-a7c9-3014-adf3-4455a212da49,SESCO,II.1.1,San Juan,AR-J,annual,2015,naphtha combustion consumption by freight transport,0.031181149999999998,TJ,CO2,73300.0,kg/TJ,2285.578295,kg -8d528d5a-f4e8-3e5a-b5b5-a4be3e8d6e8b,SESCO,II.1.1,San Juan,AR-J,annual,2015,naphtha combustion consumption by freight transport,0.031181149999999998,TJ,CH4,3.0,kg/TJ,0.09354345,kg -f4e1fa6b-f40e-3d30-b109-1683d394e045,SESCO,II.1.1,San Juan,AR-J,annual,2015,naphtha combustion consumption by freight transport,0.031181149999999998,TJ,N2O,0.6,kg/TJ,0.018708689999999997,kg -0f0ea935-202a-32f6-b875-cb4a4d3e6a09,SESCO,II.1.1,San Luis,AR-D,annual,2015,naphtha combustion consumption by freight transport,0.15590574999999998,TJ,CO2,73300.0,kg/TJ,11427.891474999999,kg -b1d792e2-b330-326a-87ac-baf73710831e,SESCO,II.1.1,San Luis,AR-D,annual,2015,naphtha combustion consumption by freight transport,0.15590574999999998,TJ,CH4,3.0,kg/TJ,0.46771725,kg -2210eb06-8a65-3ec2-9e57-277b9ece5773,SESCO,II.1.1,San Luis,AR-D,annual,2015,naphtha combustion consumption by freight transport,0.15590574999999998,TJ,N2O,0.6,kg/TJ,0.09354344999999999,kg -ad690d76-d643-3c18-b425-aff32394ceba,SESCO,II.1.1,Santa Fe,AR-S,annual,2015,naphtha combustion consumption by freight transport,17.49262515,TJ,CO2,73300.0,kg/TJ,1282209.423495,kg -e9d876a6-bddb-3ea6-8396-ab8de2e5ed8d,SESCO,II.1.1,Santa Fe,AR-S,annual,2015,naphtha combustion consumption by freight transport,17.49262515,TJ,CH4,3.0,kg/TJ,52.47787545,kg -4509fc4b-cfe1-354f-9a97-f536761b14f3,SESCO,II.1.1,Santa Fe,AR-S,annual,2015,naphtha combustion consumption by freight transport,17.49262515,TJ,N2O,0.6,kg/TJ,10.495575089999999,kg -375498ea-65de-3b51-88e4-521cbab6c206,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2015,naphtha combustion consumption by freight transport,0.062362299999999996,TJ,CO2,73300.0,kg/TJ,4571.15659,kg -2a605596-d1d3-3459-929a-0e44e8a5ec75,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2015,naphtha combustion consumption by freight transport,0.062362299999999996,TJ,CH4,3.0,kg/TJ,0.1870869,kg -21354e44-5546-375b-9710-0eff6180dd54,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2015,naphtha combustion consumption by freight transport,0.062362299999999996,TJ,N2O,0.6,kg/TJ,0.03741737999999999,kg -3e006134-3d59-3da2-993c-14d381cdede8,SESCO,II.1.1,Tucuman,AR-T,annual,2015,naphtha combustion consumption by freight transport,1.46551405,TJ,CO2,73300.0,kg/TJ,107422.179865,kg -8a460f68-5683-3672-8370-ba7c7441ccde,SESCO,II.1.1,Tucuman,AR-T,annual,2015,naphtha combustion consumption by freight transport,1.46551405,TJ,CH4,3.0,kg/TJ,4.39654215,kg -6fcd5c37-e381-3eb2-97ba-62fd607abad9,SESCO,II.1.1,Tucuman,AR-T,annual,2015,naphtha combustion consumption by freight transport,1.46551405,TJ,N2O,0.6,kg/TJ,0.8793084299999999,kg -05d69e68-7d05-3af7-b872-12059dbf0bdb,SESCO,II.1.1,Buenos Aires,AR-B,annual,2015,naphtha combustion consumption by freight transport,196.44124499999998,TJ,CO2,73300.0,kg/TJ,14399143.258499999,kg -97c25a78-75bc-39ba-a759-9e849c8edf72,SESCO,II.1.1,Buenos Aires,AR-B,annual,2015,naphtha combustion consumption by freight transport,196.44124499999998,TJ,CH4,3.0,kg/TJ,589.3237349999999,kg -ea9ebbc4-f719-3417-901d-40c7d5b48e7d,SESCO,II.1.1,Buenos Aires,AR-B,annual,2015,naphtha combustion consumption by freight transport,196.44124499999998,TJ,N2O,0.6,kg/TJ,117.86474699999998,kg -60686d4b-7173-3358-9ce3-ff7ca1e7b226,SESCO,II.1.1,Capital Federal,AR-C,annual,2015,naphtha combustion consumption by freight transport,211.9694577,TJ,CO2,73300.0,kg/TJ,15537361.24941,kg -c955b5cb-d7e9-3367-bab8-b3e7bd79b06a,SESCO,II.1.1,Capital Federal,AR-C,annual,2015,naphtha combustion consumption by freight transport,211.9694577,TJ,CH4,3.0,kg/TJ,635.9083731,kg -889003fd-f49e-354c-a7ca-458703a68de4,SESCO,II.1.1,Capital Federal,AR-C,annual,2015,naphtha combustion consumption by freight transport,211.9694577,TJ,N2O,0.6,kg/TJ,127.18167462,kg -cc64db45-e115-33e6-8765-7bf173efdeec,SESCO,II.1.1,Chaco,AR-H,annual,2015,naphtha combustion consumption by freight transport,6.4233169,TJ,CO2,73300.0,kg/TJ,470829.12876999995,kg -a1aca994-e217-3ad2-b297-6a9ca439388b,SESCO,II.1.1,Chaco,AR-H,annual,2015,naphtha combustion consumption by freight transport,6.4233169,TJ,CH4,3.0,kg/TJ,19.2699507,kg -2013bb7d-1ab1-3030-9fda-f473398232f0,SESCO,II.1.1,Chaco,AR-H,annual,2015,naphtha combustion consumption by freight transport,6.4233169,TJ,N2O,0.6,kg/TJ,3.8539901399999996,kg -5c9c793e-3688-3ee2-95ae-dc2437e2c275,SESCO,II.1.1,Chubut,AR-U,annual,2015,naphtha combustion consumption by freight transport,0.5612607,TJ,CO2,73300.0,kg/TJ,41140.409309999995,kg -48f33449-6af3-39d8-91c7-caeca1779c7c,SESCO,II.1.1,Chubut,AR-U,annual,2015,naphtha combustion consumption by freight transport,0.5612607,TJ,CH4,3.0,kg/TJ,1.6837820999999997,kg -37d53cf3-c707-3511-974b-5e8a619512d3,SESCO,II.1.1,Chubut,AR-U,annual,2015,naphtha combustion consumption by freight transport,0.5612607,TJ,N2O,0.6,kg/TJ,0.33675641999999995,kg -5c2dc1af-81a9-3068-a305-2ca247aa7679,SESCO,II.1.1,Corrientes,AR-W,annual,2015,naphtha combustion consumption by freight transport,2.9310281,TJ,CO2,73300.0,kg/TJ,214844.35973,kg -a9e21995-44cf-338e-ab7c-d898cd11eddf,SESCO,II.1.1,Corrientes,AR-W,annual,2015,naphtha combustion consumption by freight transport,2.9310281,TJ,CH4,3.0,kg/TJ,8.7930843,kg -47170bf7-3f36-38af-8d1c-2505b7d4ee8e,SESCO,II.1.1,Corrientes,AR-W,annual,2015,naphtha combustion consumption by freight transport,2.9310281,TJ,N2O,0.6,kg/TJ,1.7586168599999998,kg -903c306d-7196-301b-9c8f-87089ce2442c,SESCO,II.1.1,Córdoba,AR-X,annual,2015,naphtha combustion consumption by freight transport,5.89323735,TJ,CO2,73300.0,kg/TJ,431974.297755,kg -91d1d53c-30c8-3efe-af6a-e2b6d657212c,SESCO,II.1.1,Córdoba,AR-X,annual,2015,naphtha combustion consumption by freight transport,5.89323735,TJ,CH4,3.0,kg/TJ,17.67971205,kg -aab65966-fd3b-390a-9562-0b26986e9224,SESCO,II.1.1,Córdoba,AR-X,annual,2015,naphtha combustion consumption by freight transport,5.89323735,TJ,N2O,0.6,kg/TJ,3.5359424099999996,kg -70e87260-4eb9-398a-ae66-b7666bfdca73,SESCO,II.1.1,Entre Rios,AR-E,annual,2015,naphtha combustion consumption by freight transport,2.3074051,TJ,CO2,73300.0,kg/TJ,169132.79383,kg -f4c7b345-5578-332f-96d2-2423330af175,SESCO,II.1.1,Entre Rios,AR-E,annual,2015,naphtha combustion consumption by freight transport,2.3074051,TJ,CH4,3.0,kg/TJ,6.9222152999999995,kg -36716b47-d32e-3d4f-b19f-dd5a3f63d2c9,SESCO,II.1.1,Entre Rios,AR-E,annual,2015,naphtha combustion consumption by freight transport,2.3074051,TJ,N2O,0.6,kg/TJ,1.38444306,kg -ef54276d-f531-3483-9c8b-c01fe6dd9c67,SESCO,II.1.1,Jujuy,AR-Y,annual,2015,naphtha combustion consumption by freight transport,0.062362299999999996,TJ,CO2,73300.0,kg/TJ,4571.15659,kg -023a0200-da63-3d68-8edc-32b9aacc1e3a,SESCO,II.1.1,Jujuy,AR-Y,annual,2015,naphtha combustion consumption by freight transport,0.062362299999999996,TJ,CH4,3.0,kg/TJ,0.1870869,kg -b2f10bb5-ceec-3338-a62b-ce701a184bda,SESCO,II.1.1,Jujuy,AR-Y,annual,2015,naphtha combustion consumption by freight transport,0.062362299999999996,TJ,N2O,0.6,kg/TJ,0.03741737999999999,kg -fb51e3a2-3335-3498-9920-4ff0f28b2eec,SESCO,II.1.1,La Pampa,AR-L,annual,2015,naphtha combustion consumption by freight transport,0.09354344999999999,TJ,CO2,73300.0,kg/TJ,6856.734884999999,kg -280f5c3e-28aa-3d1e-820e-c43b562a02b7,SESCO,II.1.1,La Pampa,AR-L,annual,2015,naphtha combustion consumption by freight transport,0.09354344999999999,TJ,CH4,3.0,kg/TJ,0.28063035,kg -36603072-33b3-37df-a607-ec70a2991d76,SESCO,II.1.1,La Pampa,AR-L,annual,2015,naphtha combustion consumption by freight transport,0.09354344999999999,TJ,N2O,0.6,kg/TJ,0.05612606999999999,kg -ca280b48-92a3-3b37-bbcc-e214518d409d,SESCO,II.1.1,La Rioja,AR-F,annual,2015,naphtha combustion consumption by freight transport,0.9666156499999999,TJ,CO2,73300.0,kg/TJ,70852.927145,kg -dfc9cabc-bfd3-3785-aaae-fcdd72e4655f,SESCO,II.1.1,La Rioja,AR-F,annual,2015,naphtha combustion consumption by freight transport,0.9666156499999999,TJ,CH4,3.0,kg/TJ,2.8998469499999997,kg -fd9129cd-9ef9-33bb-a152-ed4d0eb2e1d8,SESCO,II.1.1,La Rioja,AR-F,annual,2015,naphtha combustion consumption by freight transport,0.9666156499999999,TJ,N2O,0.6,kg/TJ,0.5799693899999999,kg -13ae1bdc-d20e-3ea7-aac0-050ebf5eb766,SESCO,II.1.1,Mendoza,AR-M,annual,2015,naphtha combustion consumption by freight transport,4.83307825,TJ,CO2,73300.0,kg/TJ,354264.635725,kg -bc8490ce-91db-3cc3-8a56-9ba9a1e8719c,SESCO,II.1.1,Mendoza,AR-M,annual,2015,naphtha combustion consumption by freight transport,4.83307825,TJ,CH4,3.0,kg/TJ,14.49923475,kg -3dab4c30-671a-31d4-b64f-6917d682339d,SESCO,II.1.1,Mendoza,AR-M,annual,2015,naphtha combustion consumption by freight transport,4.83307825,TJ,N2O,0.6,kg/TJ,2.8998469499999997,kg -4ab0b1fd-621b-3191-aa9a-d68b2062af39,SESCO,II.1.1,Misiones,AR-N,annual,2015,naphtha combustion consumption by freight transport,1.870869,TJ,CO2,73300.0,kg/TJ,137134.6977,kg -19e2a8eb-fcb7-3ac5-b4d5-d9d359559a94,SESCO,II.1.1,Misiones,AR-N,annual,2015,naphtha combustion consumption by freight transport,1.870869,TJ,CH4,3.0,kg/TJ,5.612607,kg -8760b67d-c364-312c-ab5f-63958dd3c2a0,SESCO,II.1.1,Misiones,AR-N,annual,2015,naphtha combustion consumption by freight transport,1.870869,TJ,N2O,0.6,kg/TJ,1.1225214,kg -64f14518-720a-35c6-aef9-dd4f68e769b6,SESCO,II.1.1,Neuquén,AR-Q,annual,2015,naphtha combustion consumption by freight transport,1.5278763499999999,TJ,CO2,73300.0,kg/TJ,111993.336455,kg -98d02195-d0fa-32c7-8651-0336145193de,SESCO,II.1.1,Neuquén,AR-Q,annual,2015,naphtha combustion consumption by freight transport,1.5278763499999999,TJ,CH4,3.0,kg/TJ,4.58362905,kg -97946a50-2459-38b1-8c1f-46d78fe831f7,SESCO,II.1.1,Neuquén,AR-Q,annual,2015,naphtha combustion consumption by freight transport,1.5278763499999999,TJ,N2O,0.6,kg/TJ,0.9167258099999999,kg -c65593ca-0028-37bc-8c5c-4154b4834fc2,SESCO,II.1.1,Rio Negro,AR-R,annual,2015,naphtha combustion consumption by freight transport,2.4633108499999996,TJ,CO2,73300.0,kg/TJ,180560.68530499996,kg -09b339df-6ca2-3377-92f9-9734bdc52d8b,SESCO,II.1.1,Rio Negro,AR-R,annual,2015,naphtha combustion consumption by freight transport,2.4633108499999996,TJ,CH4,3.0,kg/TJ,7.389932549999999,kg -701c52b5-2356-356b-8cd5-f50a9f79504e,SESCO,II.1.1,Rio Negro,AR-R,annual,2015,naphtha combustion consumption by freight transport,2.4633108499999996,TJ,N2O,0.6,kg/TJ,1.4779865099999998,kg -1f62fde3-bc24-3a8d-80d3-a3df5d133cb5,SESCO,II.1.1,Salta,AR-A,annual,2015,naphtha combustion consumption by freight transport,1.3096082999999998,TJ,CO2,73300.0,kg/TJ,95994.28838999999,kg -7fcdd5f6-baa6-3c46-8818-81929feab371,SESCO,II.1.1,Salta,AR-A,annual,2015,naphtha combustion consumption by freight transport,1.3096082999999998,TJ,CH4,3.0,kg/TJ,3.9288248999999995,kg -54607e9e-8e7c-3511-b9be-5f3cf0a2b4fc,SESCO,II.1.1,Salta,AR-A,annual,2015,naphtha combustion consumption by freight transport,1.3096082999999998,TJ,N2O,0.6,kg/TJ,0.7857649799999998,kg -e981aff9-253e-339c-9570-b7e7ebcd8cca,SESCO,II.1.1,San Luis,AR-D,annual,2015,naphtha combustion consumption by freight transport,0.37417379999999995,TJ,CO2,73300.0,kg/TJ,27426.939539999996,kg -245cf904-31bb-352f-a370-7e6e7cfbf216,SESCO,II.1.1,San Luis,AR-D,annual,2015,naphtha combustion consumption by freight transport,0.37417379999999995,TJ,CH4,3.0,kg/TJ,1.1225214,kg -6ad82ef2-d550-3a50-a426-6ba256eea8fb,SESCO,II.1.1,San Luis,AR-D,annual,2015,naphtha combustion consumption by freight transport,0.37417379999999995,TJ,N2O,0.6,kg/TJ,0.22450427999999997,kg -60de40e7-fcf6-320f-bbbe-20077f71b785,SESCO,II.1.1,Santa Fe,AR-S,annual,2015,naphtha combustion consumption by freight transport,23.978304349999995,TJ,CO2,73300.0,kg/TJ,1757609.7088549996,kg -01341164-c381-35ee-b8a7-dd792adbfd7f,SESCO,II.1.1,Santa Fe,AR-S,annual,2015,naphtha combustion consumption by freight transport,23.978304349999995,TJ,CH4,3.0,kg/TJ,71.93491304999998,kg -22425f19-1aed-3eb5-bf19-7e13b4c9dcc8,SESCO,II.1.1,Santa Fe,AR-S,annual,2015,naphtha combustion consumption by freight transport,23.978304349999995,TJ,N2O,0.6,kg/TJ,14.386982609999997,kg -375498ea-65de-3b51-88e4-521cbab6c206,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2015,naphtha combustion consumption by freight transport,0.062362299999999996,TJ,CO2,73300.0,kg/TJ,4571.15659,kg -2a605596-d1d3-3459-929a-0e44e8a5ec75,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2015,naphtha combustion consumption by freight transport,0.062362299999999996,TJ,CH4,3.0,kg/TJ,0.1870869,kg -21354e44-5546-375b-9710-0eff6180dd54,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2015,naphtha combustion consumption by freight transport,0.062362299999999996,TJ,N2O,0.6,kg/TJ,0.03741737999999999,kg -f4eebb2f-d0cd-3aa1-bcff-abb8fd0d9de2,SESCO,II.1.1,Tucuman,AR-T,annual,2015,naphtha combustion consumption by freight transport,1.21606485,TJ,CO2,73300.0,kg/TJ,89137.553505,kg -ef492bb1-4be3-3621-9fde-a50872e34756,SESCO,II.1.1,Tucuman,AR-T,annual,2015,naphtha combustion consumption by freight transport,1.21606485,TJ,CH4,3.0,kg/TJ,3.64819455,kg -b28693f4-d646-3587-b156-6a089ba17a11,SESCO,II.1.1,Tucuman,AR-T,annual,2015,naphtha combustion consumption by freight transport,1.21606485,TJ,N2O,0.6,kg/TJ,0.7296389099999999,kg -8daaf80d-9621-30b4-a1c8-eea97d01d60d,SESCO,II.1.1,Buenos Aires,AR-B,annual,2015,naphtha combustion consumption by public passenger transport,0.15590574999999998,TJ,CO2,73300.0,kg/TJ,11427.891474999999,kg -b0879815-65f9-3eed-9919-30c3ab291dbe,SESCO,II.1.1,Buenos Aires,AR-B,annual,2015,naphtha combustion consumption by public passenger transport,0.15590574999999998,TJ,CH4,3.0,kg/TJ,0.46771725,kg -42dd4645-2401-30e1-961f-d4773d80e0ff,SESCO,II.1.1,Buenos Aires,AR-B,annual,2015,naphtha combustion consumption by public passenger transport,0.15590574999999998,TJ,N2O,0.6,kg/TJ,0.09354344999999999,kg -da419dbf-8d0c-3d81-bc63-4f2cc99dae00,SESCO,II.1.1,Capital Federal,AR-C,annual,2016,naphtha combustion consumption by to the public,21.682549349999995,TJ,CO2,73300.0,kg/TJ,1589330.8673549995,kg -1b3ed01a-09e0-3e41-8c37-95c3dfc0bcaf,SESCO,II.1.1,Capital Federal,AR-C,annual,2016,naphtha combustion consumption by to the public,21.682549349999995,TJ,CH4,3.0,kg/TJ,65.04764804999999,kg -2f032ea4-ec0f-3b8f-b25f-11488e336ee7,SESCO,II.1.1,Capital Federal,AR-C,annual,2016,naphtha combustion consumption by to the public,21.682549349999995,TJ,N2O,0.6,kg/TJ,13.009529609999996,kg -6ba24911-7258-3b39-86ef-2cb6a59389fe,SESCO,II.1.1,Capital Federal,AR-C,annual,2016,naphtha combustion consumption by to the public,4.452394099999999,TJ,CO2,73300.0,kg/TJ,326360.4875299999,kg -a2de641a-8aba-30a8-97b9-14bff9c6c6eb,SESCO,II.1.1,Capital Federal,AR-C,annual,2016,naphtha combustion consumption by to the public,4.452394099999999,TJ,CH4,3.0,kg/TJ,13.357182299999998,kg -1d0f406b-1aa3-3c12-8075-fada8796fcb1,SESCO,II.1.1,Capital Federal,AR-C,annual,2016,naphtha combustion consumption by to the public,4.452394099999999,TJ,N2O,0.6,kg/TJ,2.6714364599999993,kg -75c056f1-91e2-3005-bc74-59153fd48b18,SESCO,II.5.1,Buenos Aires,AR-B,annual,2016,naphtha combustion consumption by agriculture machines,15.278420849999998,TJ,CO2,73300.0,kg/TJ,1119908.248305,kg -3b80805b-480b-33a7-8dc5-cbead476ff8d,SESCO,II.5.1,Buenos Aires,AR-B,annual,2016,naphtha combustion consumption by agriculture machines,15.278420849999998,TJ,CH4,3.0,kg/TJ,45.835262549999996,kg -70d23622-96d7-3eb7-b722-389a2fceb1a3,SESCO,II.5.1,Buenos Aires,AR-B,annual,2016,naphtha combustion consumption by agriculture machines,15.278420849999998,TJ,N2O,0.6,kg/TJ,9.167052509999998,kg -08b36b59-d2d6-373b-82e6-da7d12869c47,SESCO,II.5.1,Chaco,AR-H,annual,2016,naphtha combustion consumption by agriculture machines,8.965779899999998,TJ,CO2,73300.0,kg/TJ,657191.6666699998,kg -77c09eae-9b54-36af-8cd2-101e9b315933,SESCO,II.5.1,Chaco,AR-H,annual,2016,naphtha combustion consumption by agriculture machines,8.965779899999998,TJ,CH4,3.0,kg/TJ,26.897339699999993,kg -71f42f2d-380b-38f5-ba8d-ebb1a8a01500,SESCO,II.5.1,Chaco,AR-H,annual,2016,naphtha combustion consumption by agriculture machines,8.965779899999998,TJ,N2O,0.6,kg/TJ,5.379467939999999,kg -88c522e5-0d68-352e-adb0-680373de61c8,SESCO,II.5.1,Córdoba,AR-X,annual,2016,naphtha combustion consumption by agriculture machines,10.551564099999998,TJ,CO2,73300.0,kg/TJ,773429.6485299999,kg -06388eab-8435-3066-8c1a-c5441632bbca,SESCO,II.5.1,Córdoba,AR-X,annual,2016,naphtha combustion consumption by agriculture machines,10.551564099999998,TJ,CH4,3.0,kg/TJ,31.654692299999994,kg -6fd9dbc2-7a04-32f6-8daf-09df843dc542,SESCO,II.5.1,Córdoba,AR-X,annual,2016,naphtha combustion consumption by agriculture machines,10.551564099999998,TJ,N2O,0.6,kg/TJ,6.330938459999999,kg -11c9d764-3467-3dd2-9916-dabfda3a0319,SESCO,II.5.1,Santa Fe,AR-S,annual,2016,naphtha combustion consumption by agriculture machines,32.752542899999995,TJ,CO2,73300.0,kg/TJ,2400761.3945699995,kg -58b64bc1-afb8-39d7-9984-f1c8877dc258,SESCO,II.5.1,Santa Fe,AR-S,annual,2016,naphtha combustion consumption by agriculture machines,32.752542899999995,TJ,CH4,3.0,kg/TJ,98.25762869999998,kg -5db36d4a-8462-3fd8-88c1-3324c4c2dfb9,SESCO,II.5.1,Santa Fe,AR-S,annual,2016,naphtha combustion consumption by agriculture machines,32.752542899999995,TJ,N2O,0.6,kg/TJ,19.651525739999997,kg -ffccb861-19bc-344e-8268-344065e701d2,SESCO,II.5.1,Tucuman,AR-T,annual,2016,naphtha combustion consumption by agriculture machines,11.6494147,TJ,CO2,73300.0,kg/TJ,853902.09751,kg -0de40000-4ca3-3df7-8c1e-ebd0bc8779f3,SESCO,II.5.1,Tucuman,AR-T,annual,2016,naphtha combustion consumption by agriculture machines,11.6494147,TJ,CH4,3.0,kg/TJ,34.9482441,kg -63fc48d2-eb24-372a-bd68-9e3f38edb7c5,SESCO,II.5.1,Tucuman,AR-T,annual,2016,naphtha combustion consumption by agriculture machines,11.6494147,TJ,N2O,0.6,kg/TJ,6.989648819999999,kg -29d4a87d-741d-3934-83dd-4b8e22ef9407,SESCO,II.5.1,Buenos Aires,AR-B,annual,2016,naphtha combustion consumption by agriculture machines,3.5375185999999994,TJ,CO2,73300.0,kg/TJ,259300.11337999997,kg -d756a017-9c2f-3031-9cf0-3b849079aa33,SESCO,II.5.1,Buenos Aires,AR-B,annual,2016,naphtha combustion consumption by agriculture machines,3.5375185999999994,TJ,CH4,3.0,kg/TJ,10.612555799999999,kg -35b68d2d-6e4c-35da-92e4-1c5bbf055ea2,SESCO,II.5.1,Buenos Aires,AR-B,annual,2016,naphtha combustion consumption by agriculture machines,3.5375185999999994,TJ,N2O,0.6,kg/TJ,2.1225111599999997,kg -c6f5d8a4-39ff-3e5d-ac26-1aaa55513772,SESCO,II.5.1,Chaco,AR-H,annual,2016,naphtha combustion consumption by agriculture machines,1.2808257,TJ,CO2,73300.0,kg/TJ,93884.52381,kg -0c3504c5-d6c8-3012-b646-6126550fd69b,SESCO,II.5.1,Chaco,AR-H,annual,2016,naphtha combustion consumption by agriculture machines,1.2808257,TJ,CH4,3.0,kg/TJ,3.8424771,kg -0125a94c-42a3-3a6b-9be0-ddfb57e845e2,SESCO,II.5.1,Chaco,AR-H,annual,2016,naphtha combustion consumption by agriculture machines,1.2808257,TJ,N2O,0.6,kg/TJ,0.76849542,kg -f9ecafa4-e0ac-3801-808f-f88d650b9262,SESCO,II.5.1,Córdoba,AR-X,annual,2016,naphtha combustion consumption by agriculture machines,4.42189825,TJ,CO2,73300.0,kg/TJ,324125.141725,kg -43c6da89-3d4e-31e0-976c-8851dd21ac89,SESCO,II.5.1,Córdoba,AR-X,annual,2016,naphtha combustion consumption by agriculture machines,4.42189825,TJ,CH4,3.0,kg/TJ,13.26569475,kg -f5f27cc3-ba7b-3b91-8d71-e52e6639a581,SESCO,II.5.1,Córdoba,AR-X,annual,2016,naphtha combustion consumption by agriculture machines,4.42189825,TJ,N2O,0.6,kg/TJ,2.6531389499999998,kg -51887668-8143-38a1-b6f6-8df666057c9a,SESCO,II.5.1,Santa Fe,AR-S,annual,2016,naphtha combustion consumption by agriculture machines,11.618918849999998,TJ,CO2,73300.0,kg/TJ,851666.7517049998,kg -c20ceec3-e815-32f8-adce-f4d272639d09,SESCO,II.5.1,Santa Fe,AR-S,annual,2016,naphtha combustion consumption by agriculture machines,11.618918849999998,TJ,CH4,3.0,kg/TJ,34.85675654999999,kg -a03fd313-7c27-3018-a59a-a1ef37601ab6,SESCO,II.5.1,Santa Fe,AR-S,annual,2016,naphtha combustion consumption by agriculture machines,11.618918849999998,TJ,N2O,0.6,kg/TJ,6.971351309999998,kg -0ccefe1f-f3a9-3403-82da-6c7b12d34b20,SESCO,II.5.1,Tucuman,AR-T,annual,2016,naphtha combustion consumption by agriculture machines,3.2935518,TJ,CO2,73300.0,kg/TJ,241417.34694,kg -4e01d849-07d0-3d23-be31-b490ac580d42,SESCO,II.5.1,Tucuman,AR-T,annual,2016,naphtha combustion consumption by agriculture machines,3.2935518,TJ,CH4,3.0,kg/TJ,9.8806554,kg -f4038559-88e6-3a7f-8a92-57d394d0ff3d,SESCO,II.5.1,Tucuman,AR-T,annual,2016,naphtha combustion consumption by agriculture machines,3.2935518,TJ,N2O,0.6,kg/TJ,1.9761310799999998,kg -f7956105-24ba-361d-89ca-c1b65f05df4d,SESCO,II.1.1,Buenos Aires,AR-B,annual,2016,naphtha combustion consumption by to the public,6.73958285,TJ,CO2,73300.0,kg/TJ,494011.422905,kg -d8b63c96-0552-3e40-9083-09f47d68bd60,SESCO,II.1.1,Buenos Aires,AR-B,annual,2016,naphtha combustion consumption by to the public,6.73958285,TJ,CH4,3.0,kg/TJ,20.21874855,kg -60339cef-9537-38b9-8dc9-68c9c9dd1464,SESCO,II.1.1,Buenos Aires,AR-B,annual,2016,naphtha combustion consumption by to the public,6.73958285,TJ,N2O,0.6,kg/TJ,4.043749709999999,kg -efc734eb-cae5-3b28-9f0c-c11fba9d8402,SESCO,II.1.1,Santa Fe,AR-S,annual,2016,naphtha combustion consumption by to the public,11.1614811,TJ,CO2,73300.0,kg/TJ,818136.5646299999,kg -ed9467d1-9611-3ede-b7f1-34ea34333ac0,SESCO,II.1.1,Santa Fe,AR-S,annual,2016,naphtha combustion consumption by to the public,11.1614811,TJ,CH4,3.0,kg/TJ,33.484443299999995,kg -767d676b-d80d-3992-99aa-a7d4e78974ba,SESCO,II.1.1,Santa Fe,AR-S,annual,2016,naphtha combustion consumption by to the public,11.1614811,TJ,N2O,0.6,kg/TJ,6.69688866,kg -cc3e09dc-da52-3ded-8387-3137aa59813c,SESCO,II.1.1,Buenos Aires,AR-B,annual,2016,naphtha combustion consumption by to the public,9425.62682215,TJ,CO2,73300.0,kg/TJ,690898446.0635949,kg -25d0a585-ec6a-3646-ae70-92e4813e98b2,SESCO,II.1.1,Buenos Aires,AR-B,annual,2016,naphtha combustion consumption by to the public,9425.62682215,TJ,CH4,3.0,kg/TJ,28276.88046645,kg -b5ee2eac-e586-345a-abff-a6190c16c3d2,SESCO,II.1.1,Buenos Aires,AR-B,annual,2016,naphtha combustion consumption by to the public,9425.62682215,TJ,N2O,0.6,kg/TJ,5655.3760932899995,kg -4455ccd4-bc4c-3e34-9939-8c7fb439c1c0,SESCO,II.1.1,Capital Federal,AR-C,annual,2016,naphtha combustion consumption by to the public,3632.45218105,TJ,CO2,73300.0,kg/TJ,266258744.870965,kg -9956eb87-9873-3b04-8865-8fea4be04e14,SESCO,II.1.1,Capital Federal,AR-C,annual,2016,naphtha combustion consumption by to the public,3632.45218105,TJ,CH4,3.0,kg/TJ,10897.35654315,kg -f4ef9d34-f4d8-36fa-b6c2-e808ae521209,SESCO,II.1.1,Capital Federal,AR-C,annual,2016,naphtha combustion consumption by to the public,3632.45218105,TJ,N2O,0.6,kg/TJ,2179.47130863,kg -222a6631-acff-3a77-9755-94054751f94b,SESCO,II.1.1,Catamarca,AR-K,annual,2016,naphtha combustion consumption by to the public,360.91838475,TJ,CO2,73300.0,kg/TJ,26455317.602174997,kg -4f989f88-0dca-3566-932e-90ceb625d980,SESCO,II.1.1,Catamarca,AR-K,annual,2016,naphtha combustion consumption by to the public,360.91838475,TJ,CH4,3.0,kg/TJ,1082.75515425,kg -46e46259-b975-3ccf-a6f6-05adbd658066,SESCO,II.1.1,Catamarca,AR-K,annual,2016,naphtha combustion consumption by to the public,360.91838475,TJ,N2O,0.6,kg/TJ,216.55103085,kg -aa2c828f-d24e-31e5-b9d1-11ef94e8de5f,SESCO,II.1.1,Chaco,AR-H,annual,2016,naphtha combustion consumption by to the public,451.55205094999997,TJ,CO2,73300.0,kg/TJ,33098765.334634997,kg -eb646aed-40d8-32ff-9e68-db38747df3c4,SESCO,II.1.1,Chaco,AR-H,annual,2016,naphtha combustion consumption by to the public,451.55205094999997,TJ,CH4,3.0,kg/TJ,1354.65615285,kg -f8249a5d-5d45-3990-8b87-64808359986e,SESCO,II.1.1,Chaco,AR-H,annual,2016,naphtha combustion consumption by to the public,451.55205094999997,TJ,N2O,0.6,kg/TJ,270.93123056999997,kg -08d7f2f1-81b0-30a3-b6ea-1a9a09188285,SESCO,II.1.1,Chubut,AR-U,annual,2016,naphtha combustion consumption by to the public,307.7031265,TJ,CO2,73300.0,kg/TJ,22554639.17245,kg -027dcdb9-7b50-39f3-918a-d5d4a5ffc45a,SESCO,II.1.1,Chubut,AR-U,annual,2016,naphtha combustion consumption by to the public,307.7031265,TJ,CH4,3.0,kg/TJ,923.1093794999999,kg -e94ffdd6-eaae-392a-9df8-e7a4fbeb3b68,SESCO,II.1.1,Chubut,AR-U,annual,2016,naphtha combustion consumption by to the public,307.7031265,TJ,N2O,0.6,kg/TJ,184.6218759,kg -3522bc67-7990-3983-9f35-9dd31bd13625,SESCO,II.1.1,Corrientes,AR-W,annual,2016,naphtha combustion consumption by to the public,571.1872705,TJ,CO2,73300.0,kg/TJ,41868026.92765,kg -6aafabdd-ebf2-32c1-8839-949ac8a2038e,SESCO,II.1.1,Corrientes,AR-W,annual,2016,naphtha combustion consumption by to the public,571.1872705,TJ,CH4,3.0,kg/TJ,1713.5618114999997,kg -2eced1b2-dc66-3b98-804e-ed93da921ce0,SESCO,II.1.1,Corrientes,AR-W,annual,2016,naphtha combustion consumption by to the public,571.1872705,TJ,N2O,0.6,kg/TJ,342.71236229999994,kg -ea94405f-e2eb-313a-8b6e-4b8bdbd6e657,SESCO,II.1.1,Córdoba,AR-X,annual,2016,naphtha combustion consumption by to the public,2871.1842774999996,TJ,CO2,73300.0,kg/TJ,210457807.54074997,kg -4d132fe4-cb4d-3e73-ae81-3e84c20fc1e8,SESCO,II.1.1,Córdoba,AR-X,annual,2016,naphtha combustion consumption by to the public,2871.1842774999996,TJ,CH4,3.0,kg/TJ,8613.552832499998,kg -5e4cc60a-cbfc-34d5-bfff-962c2c039b38,SESCO,II.1.1,Córdoba,AR-X,annual,2016,naphtha combustion consumption by to the public,2871.1842774999996,TJ,N2O,0.6,kg/TJ,1722.7105664999997,kg -1ea72da5-4ebd-330d-adc0-cdd132e0f589,SESCO,II.1.1,Entre Rios,AR-E,annual,2016,naphtha combustion consumption by to the public,1016.5181680499999,TJ,CO2,73300.0,kg/TJ,74510781.718065,kg -7ca209af-3b3a-3f31-a7c3-facfdec2e2ec,SESCO,II.1.1,Entre Rios,AR-E,annual,2016,naphtha combustion consumption by to the public,1016.5181680499999,TJ,CH4,3.0,kg/TJ,3049.5545041499995,kg -d682ee44-d999-395e-8fe1-48b6899ae56e,SESCO,II.1.1,Entre Rios,AR-E,annual,2016,naphtha combustion consumption by to the public,1016.5181680499999,TJ,N2O,0.6,kg/TJ,609.91090083,kg -63d2c794-123d-3db8-9902-f16616efb8fe,SESCO,II.1.1,Formosa,AR-P,annual,2016,naphtha combustion consumption by to the public,590.61312695,TJ,CO2,73300.0,kg/TJ,43291942.205435,kg -8f0f2a9f-91af-39f6-afd5-f108ee24929a,SESCO,II.1.1,Formosa,AR-P,annual,2016,naphtha combustion consumption by to the public,590.61312695,TJ,CH4,3.0,kg/TJ,1771.83938085,kg -abd16242-afc2-3584-8681-ad53bab46dcc,SESCO,II.1.1,Formosa,AR-P,annual,2016,naphtha combustion consumption by to the public,590.61312695,TJ,N2O,0.6,kg/TJ,354.36787617,kg -b05c9c26-fc8d-32ac-abbb-2c26aa1f42ec,SESCO,II.1.1,Jujuy,AR-Y,annual,2016,naphtha combustion consumption by to the public,168.2761003,TJ,CO2,73300.0,kg/TJ,12334638.15199,kg -f98def6c-c882-3733-a510-77d2ef3a62fa,SESCO,II.1.1,Jujuy,AR-Y,annual,2016,naphtha combustion consumption by to the public,168.2761003,TJ,CH4,3.0,kg/TJ,504.8283009,kg -0df216cf-31b4-3c9f-b7b7-f14445e9ff6e,SESCO,II.1.1,Jujuy,AR-Y,annual,2016,naphtha combustion consumption by to the public,168.2761003,TJ,N2O,0.6,kg/TJ,100.96566018,kg -5a2a5e64-40e7-3871-b24c-c4d129eb789f,SESCO,II.1.1,La Pampa,AR-L,annual,2016,naphtha combustion consumption by to the public,142.93404895,TJ,CO2,73300.0,kg/TJ,10477065.788035,kg -610c0bce-5424-35de-8c30-d7df4c04b868,SESCO,II.1.1,La Pampa,AR-L,annual,2016,naphtha combustion consumption by to the public,142.93404895,TJ,CH4,3.0,kg/TJ,428.80214685,kg -1223f142-c7e8-33b8-b006-8b513f2af24e,SESCO,II.1.1,La Pampa,AR-L,annual,2016,naphtha combustion consumption by to the public,142.93404895,TJ,N2O,0.6,kg/TJ,85.76042937,kg -3cf777d3-7028-34b5-bbdd-bb601ac1c652,SESCO,II.1.1,La Rioja,AR-F,annual,2016,naphtha combustion consumption by to the public,98.28812454999998,TJ,CO2,73300.0,kg/TJ,7204519.529514998,kg -444deca4-550c-3271-bc12-e803b85a7548,SESCO,II.1.1,La Rioja,AR-F,annual,2016,naphtha combustion consumption by to the public,98.28812454999998,TJ,CH4,3.0,kg/TJ,294.86437364999995,kg -86642cb2-e49b-3080-8b32-5c8517f9545e,SESCO,II.1.1,La Rioja,AR-F,annual,2016,naphtha combustion consumption by to the public,98.28812454999998,TJ,N2O,0.6,kg/TJ,58.97287472999999,kg -903c7db6-7062-3a39-ad30-53ee7026b44c,SESCO,II.1.1,Mendoza,AR-M,annual,2016,naphtha combustion consumption by to the public,416.4818234499999,TJ,CO2,73300.0,kg/TJ,30528117.658884995,kg -0ad05bda-4b46-3504-a3b6-368b533110e9,SESCO,II.1.1,Mendoza,AR-M,annual,2016,naphtha combustion consumption by to the public,416.4818234499999,TJ,CH4,3.0,kg/TJ,1249.4454703499998,kg -8d66a56a-dac3-3cae-afc5-726ab7987f3f,SESCO,II.1.1,Mendoza,AR-M,annual,2016,naphtha combustion consumption by to the public,416.4818234499999,TJ,N2O,0.6,kg/TJ,249.88909406999994,kg -4a40a754-a6ee-3ffb-b29b-87a45bcdf949,SESCO,II.1.1,Misiones,AR-N,annual,2016,naphtha combustion consumption by to the public,668.8959738999998,TJ,CO2,73300.0,kg/TJ,49030074.88686999,kg -1954f187-b195-340a-8026-622ff7c512df,SESCO,II.1.1,Misiones,AR-N,annual,2016,naphtha combustion consumption by to the public,668.8959738999998,TJ,CH4,3.0,kg/TJ,2006.6879216999996,kg -caaabafb-e672-39e7-a254-0cfdfa79b86e,SESCO,II.1.1,Misiones,AR-N,annual,2016,naphtha combustion consumption by to the public,668.8959738999998,TJ,N2O,0.6,kg/TJ,401.33758433999986,kg -639e52a1-93e7-33fd-a904-2c0b19f74830,SESCO,II.1.1,Neuquén,AR-Q,annual,2016,naphtha combustion consumption by to the public,237.07473789999997,TJ,CO2,73300.0,kg/TJ,17377578.288069997,kg -4ef81c92-7466-39a8-b8e3-037b7d276db3,SESCO,II.1.1,Neuquén,AR-Q,annual,2016,naphtha combustion consumption by to the public,237.07473789999997,TJ,CH4,3.0,kg/TJ,711.2242137,kg -770a65f2-a10f-3ca5-8c40-eded26ef52a5,SESCO,II.1.1,Neuquén,AR-Q,annual,2016,naphtha combustion consumption by to the public,237.07473789999997,TJ,N2O,0.6,kg/TJ,142.24484273999997,kg -80021e77-869c-3092-b2e2-0b01b87f21cf,SESCO,II.1.1,Rio Negro,AR-R,annual,2016,naphtha combustion consumption by to the public,437.37148069999995,TJ,CO2,73300.0,kg/TJ,32059329.535309996,kg -b98f9862-4ce2-3603-ba41-9844ae0cdd41,SESCO,II.1.1,Rio Negro,AR-R,annual,2016,naphtha combustion consumption by to the public,437.37148069999995,TJ,CH4,3.0,kg/TJ,1312.1144421,kg -7b60baf5-ceae-3230-9392-76fda942d714,SESCO,II.1.1,Rio Negro,AR-R,annual,2016,naphtha combustion consumption by to the public,437.37148069999995,TJ,N2O,0.6,kg/TJ,262.42288841999994,kg -419feb49-846b-3ce1-8b47-dfcca6721d48,SESCO,II.1.1,Salta,AR-A,annual,2016,naphtha combustion consumption by to the public,88.22449404999999,TJ,CO2,73300.0,kg/TJ,6466855.413864999,kg -63ad8c7c-bf17-38f6-a6bd-15e7de831b2b,SESCO,II.1.1,Salta,AR-A,annual,2016,naphtha combustion consumption by to the public,88.22449404999999,TJ,CH4,3.0,kg/TJ,264.67348215,kg -37745630-158a-333d-aa6e-0a97f059b965,SESCO,II.1.1,Salta,AR-A,annual,2016,naphtha combustion consumption by to the public,88.22449404999999,TJ,N2O,0.6,kg/TJ,52.934696429999995,kg -20fd37c1-0e89-37d2-9fcf-85a651bcba59,SESCO,II.1.1,San Juan,AR-J,annual,2016,naphtha combustion consumption by to the public,226.43168624999998,TJ,CO2,73300.0,kg/TJ,16597442.602124998,kg -bd9414e1-f382-3304-b1d6-3391195f1e35,SESCO,II.1.1,San Juan,AR-J,annual,2016,naphtha combustion consumption by to the public,226.43168624999998,TJ,CH4,3.0,kg/TJ,679.29505875,kg -9cd24e59-dde0-3af5-beaf-ee2b63d5c774,SESCO,II.1.1,San Juan,AR-J,annual,2016,naphtha combustion consumption by to the public,226.43168624999998,TJ,N2O,0.6,kg/TJ,135.85901174999998,kg -88b7b8d8-aa0f-359c-97e7-a1b440104048,SESCO,II.1.1,San Luis,AR-D,annual,2016,naphtha combustion consumption by to the public,513.4281306,TJ,CO2,73300.0,kg/TJ,37634281.97298,kg -a88b370d-2722-3f22-9366-df122afac791,SESCO,II.1.1,San Luis,AR-D,annual,2016,naphtha combustion consumption by to the public,513.4281306,TJ,CH4,3.0,kg/TJ,1540.2843918,kg -1d8e6185-cb5f-3491-aa60-e4583de17880,SESCO,II.1.1,San Luis,AR-D,annual,2016,naphtha combustion consumption by to the public,513.4281306,TJ,N2O,0.6,kg/TJ,308.05687836,kg -8ad05d3e-3c60-3409-bded-b95ba7911862,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2016,naphtha combustion consumption by to the public,66.54194469999999,TJ,CO2,73300.0,kg/TJ,4877524.546509999,kg -ce32d7f3-bc1d-3484-82ba-e1549b6037fb,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2016,naphtha combustion consumption by to the public,66.54194469999999,TJ,CH4,3.0,kg/TJ,199.62583409999996,kg -b32049f5-9f91-3cd2-ac2a-0a0e2d05cbe7,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2016,naphtha combustion consumption by to the public,66.54194469999999,TJ,N2O,0.6,kg/TJ,39.925166819999994,kg -11d9f070-eea2-30ca-b541-dff150bf45cc,SESCO,II.1.1,Santa Fe,AR-S,annual,2016,naphtha combustion consumption by to the public,2497.0916855499995,TJ,CO2,73300.0,kg/TJ,183036820.55081496,kg -da9f532d-26ac-39e9-844e-1699051d6849,SESCO,II.1.1,Santa Fe,AR-S,annual,2016,naphtha combustion consumption by to the public,2497.0916855499995,TJ,CH4,3.0,kg/TJ,7491.275056649998,kg -de48edd2-41be-3d2d-95ba-f9a8a97c0cbc,SESCO,II.1.1,Santa Fe,AR-S,annual,2016,naphtha combustion consumption by to the public,2497.0916855499995,TJ,N2O,0.6,kg/TJ,1498.2550113299997,kg -6a03dd0a-1a52-38ac-a7a8-fb8fbb622872,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2016,naphtha combustion consumption by to the public,371.22598204999997,TJ,CO2,73300.0,kg/TJ,27210864.484265,kg -d1a348a6-7332-3f25-8d9e-0195c933801e,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2016,naphtha combustion consumption by to the public,371.22598204999997,TJ,CH4,3.0,kg/TJ,1113.67794615,kg -a1047ad4-5e35-39a1-83c5-60753659b871,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2016,naphtha combustion consumption by to the public,371.22598204999997,TJ,N2O,0.6,kg/TJ,222.73558923,kg -536d5dac-d74f-31fa-8af8-5d43a1b5454e,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2016,naphtha combustion consumption by to the public,124.39257214999999,TJ,CO2,73300.0,kg/TJ,9117975.538595,kg -bc89b549-6c62-366e-8d71-2566b9ff6aad,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2016,naphtha combustion consumption by to the public,124.39257214999999,TJ,CH4,3.0,kg/TJ,373.17771645,kg -ec51afba-7c6b-3d06-925a-94c9d9ea5a28,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2016,naphtha combustion consumption by to the public,124.39257214999999,TJ,N2O,0.6,kg/TJ,74.63554328999999,kg -fee1ca5d-bebe-3ec2-8f99-254f50cf4adb,SESCO,II.1.1,Tucuman,AR-T,annual,2016,naphtha combustion consumption by to the public,139.33553865,TJ,CO2,73300.0,kg/TJ,10213294.983044999,kg -dc432831-51c6-39bd-8bef-eca36e1be522,SESCO,II.1.1,Tucuman,AR-T,annual,2016,naphtha combustion consumption by to the public,139.33553865,TJ,CH4,3.0,kg/TJ,418.00661594999997,kg -9d07e726-4be6-301b-9eb9-2dd98583e9a6,SESCO,II.1.1,Tucuman,AR-T,annual,2016,naphtha combustion consumption by to the public,139.33553865,TJ,N2O,0.6,kg/TJ,83.60132318999999,kg -51a7166f-f999-3e6a-8d45-b9e3e29007e8,SESCO,II.1.1,Buenos Aires,AR-B,annual,2016,naphtha combustion consumption by to the public,2523.31811655,TJ,CO2,73300.0,kg/TJ,184959217.943115,kg -da176dd9-eabc-3494-a5ca-29b8bb5ec3f4,SESCO,II.1.1,Buenos Aires,AR-B,annual,2016,naphtha combustion consumption by to the public,2523.31811655,TJ,CH4,3.0,kg/TJ,7569.95434965,kg -22c08d01-8362-3546-bd40-ca4569f7117a,SESCO,II.1.1,Buenos Aires,AR-B,annual,2016,naphtha combustion consumption by to the public,2523.31811655,TJ,N2O,0.6,kg/TJ,1513.99086993,kg -b75800dc-12a1-3cf5-aa40-6276922cb10c,SESCO,II.1.1,Capital Federal,AR-C,annual,2016,naphtha combustion consumption by to the public,1255.6971196,TJ,CO2,73300.0,kg/TJ,92042598.86668,kg -48d5abea-72e3-32ec-ba93-5329ccae1c5c,SESCO,II.1.1,Capital Federal,AR-C,annual,2016,naphtha combustion consumption by to the public,1255.6971196,TJ,CH4,3.0,kg/TJ,3767.0913588,kg -8ac3fb79-4dfd-3cce-98e4-11054a1a43c5,SESCO,II.1.1,Capital Federal,AR-C,annual,2016,naphtha combustion consumption by to the public,1255.6971196,TJ,N2O,0.6,kg/TJ,753.4182717599999,kg -e76a0a49-9ba7-3111-b54d-89853f0aa867,SESCO,II.1.1,Catamarca,AR-K,annual,2016,naphtha combustion consumption by to the public,105.30217004999999,TJ,CO2,73300.0,kg/TJ,7718649.064664999,kg -a580e693-596f-3312-8a64-da0684b6378e,SESCO,II.1.1,Catamarca,AR-K,annual,2016,naphtha combustion consumption by to the public,105.30217004999999,TJ,CH4,3.0,kg/TJ,315.90651015,kg -e02064b3-4c68-3d73-ba22-6c94148725e0,SESCO,II.1.1,Catamarca,AR-K,annual,2016,naphtha combustion consumption by to the public,105.30217004999999,TJ,N2O,0.6,kg/TJ,63.18130202999999,kg -1871ce22-d2a2-3b99-a5e3-675f86c58f37,SESCO,II.1.1,Chaco,AR-H,annual,2016,naphtha combustion consumption by to the public,92.37192964999998,TJ,CO2,73300.0,kg/TJ,6770862.443344999,kg -bb3592f9-305d-3ddd-ae33-9f4e5b9b45d8,SESCO,II.1.1,Chaco,AR-H,annual,2016,naphtha combustion consumption by to the public,92.37192964999998,TJ,CH4,3.0,kg/TJ,277.11578894999997,kg -887b482c-6956-3144-9cd9-fcd44abaca2d,SESCO,II.1.1,Chaco,AR-H,annual,2016,naphtha combustion consumption by to the public,92.37192964999998,TJ,N2O,0.6,kg/TJ,55.42315778999999,kg -a36c5062-139f-331b-8481-eeadcbc573bd,SESCO,II.1.1,Chubut,AR-U,annual,2016,naphtha combustion consumption by to the public,61.4186419,TJ,CO2,73300.0,kg/TJ,4501986.45127,kg -4036a71e-9b29-3f59-aaa2-6f781ef89e3b,SESCO,II.1.1,Chubut,AR-U,annual,2016,naphtha combustion consumption by to the public,61.4186419,TJ,CH4,3.0,kg/TJ,184.25592569999998,kg -27a5de69-6c99-388b-a437-23c2c1b0dddf,SESCO,II.1.1,Chubut,AR-U,annual,2016,naphtha combustion consumption by to the public,61.4186419,TJ,N2O,0.6,kg/TJ,36.85118514,kg -a64686a5-7ee5-3ea7-b52a-56aff24157fc,SESCO,II.1.1,Corrientes,AR-W,annual,2016,naphtha combustion consumption by to the public,140.34190169999997,TJ,CO2,73300.0,kg/TJ,10287061.394609997,kg -70aa88f3-5c88-39f2-b6fe-509100f85914,SESCO,II.1.1,Corrientes,AR-W,annual,2016,naphtha combustion consumption by to the public,140.34190169999997,TJ,CH4,3.0,kg/TJ,421.02570509999987,kg -5eea0bbe-f27f-3cde-8455-4e39d3ffee86,SESCO,II.1.1,Corrientes,AR-W,annual,2016,naphtha combustion consumption by to the public,140.34190169999997,TJ,N2O,0.6,kg/TJ,84.20514101999997,kg -50e42c97-05f5-34c2-b330-f91a438136d3,SESCO,II.1.1,Córdoba,AR-X,annual,2016,naphtha combustion consumption by to the public,665.6329179499999,TJ,CO2,73300.0,kg/TJ,48790892.88573499,kg -d555fef4-9f52-30cf-b02f-a529bc5446ba,SESCO,II.1.1,Córdoba,AR-X,annual,2016,naphtha combustion consumption by to the public,665.6329179499999,TJ,CH4,3.0,kg/TJ,1996.8987538499996,kg -626ed5eb-a1c3-3156-b62e-a7af80121726,SESCO,II.1.1,Córdoba,AR-X,annual,2016,naphtha combustion consumption by to the public,665.6329179499999,TJ,N2O,0.6,kg/TJ,399.37975076999993,kg -4788fd33-0d27-344a-99f8-ccc0840947a1,SESCO,II.1.1,Entre Rios,AR-E,annual,2016,naphtha combustion consumption by to the public,265.55786179999996,TJ,CO2,73300.0,kg/TJ,19465391.269939996,kg -334a4137-add2-368f-bf8e-e438dbcbac8b,SESCO,II.1.1,Entre Rios,AR-E,annual,2016,naphtha combustion consumption by to the public,265.55786179999996,TJ,CH4,3.0,kg/TJ,796.6735853999999,kg -e9c53505-eb09-3497-bfad-4c561b6b64ba,SESCO,II.1.1,Entre Rios,AR-E,annual,2016,naphtha combustion consumption by to the public,265.55786179999996,TJ,N2O,0.6,kg/TJ,159.33471707999996,kg -c5507b21-c996-3420-95d0-ae4141a76b7c,SESCO,II.1.1,Formosa,AR-P,annual,2016,naphtha combustion consumption by to the public,145.58718789999998,TJ,CO2,73300.0,kg/TJ,10671540.873069998,kg -be7265c4-6bde-36be-b40a-5ae5370b55bf,SESCO,II.1.1,Formosa,AR-P,annual,2016,naphtha combustion consumption by to the public,145.58718789999998,TJ,CH4,3.0,kg/TJ,436.7615636999999,kg -f5b2ffaf-fddf-3742-ad2d-abd3d71b4414,SESCO,II.1.1,Formosa,AR-P,annual,2016,naphtha combustion consumption by to the public,145.58718789999998,TJ,N2O,0.6,kg/TJ,87.35231273999999,kg -81b5d89b-581f-326d-86ea-ce8f903cb558,SESCO,II.1.1,Jujuy,AR-Y,annual,2016,naphtha combustion consumption by to the public,19.639327399999996,TJ,CO2,73300.0,kg/TJ,1439562.6984199996,kg -8b6f191c-1dbc-3289-87ec-5c5f66d4259f,SESCO,II.1.1,Jujuy,AR-Y,annual,2016,naphtha combustion consumption by to the public,19.639327399999996,TJ,CH4,3.0,kg/TJ,58.91798219999998,kg -01ad8f3f-7135-3bb4-b62a-f94916c4f801,SESCO,II.1.1,Jujuy,AR-Y,annual,2016,naphtha combustion consumption by to the public,19.639327399999996,TJ,N2O,0.6,kg/TJ,11.783596439999997,kg -1dbdfd31-2025-3e72-98ce-ecb76c652a97,SESCO,II.1.1,La Pampa,AR-L,annual,2016,naphtha combustion consumption by to the public,47.390550899999994,TJ,CO2,73300.0,kg/TJ,3473727.3809699994,kg -a40cf4dc-08df-3f75-a3cf-433a0124139a,SESCO,II.1.1,La Pampa,AR-L,annual,2016,naphtha combustion consumption by to the public,47.390550899999994,TJ,CH4,3.0,kg/TJ,142.17165269999998,kg -3722f507-a1ec-3cd1-b619-9612781c9b4e,SESCO,II.1.1,La Pampa,AR-L,annual,2016,naphtha combustion consumption by to the public,47.390550899999994,TJ,N2O,0.6,kg/TJ,28.434330539999994,kg -6992d170-3562-3bb6-94ba-8d58111f820a,SESCO,II.1.1,La Rioja,AR-F,annual,2016,naphtha combustion consumption by to the public,17.809576399999997,TJ,CO2,73300.0,kg/TJ,1305441.9501199997,kg -af653195-aa25-3c4c-bc80-36c8a2537b88,SESCO,II.1.1,La Rioja,AR-F,annual,2016,naphtha combustion consumption by to the public,17.809576399999997,TJ,CH4,3.0,kg/TJ,53.42872919999999,kg -3d0ae382-7dbc-30d8-b0e8-7d1ab20e0991,SESCO,II.1.1,La Rioja,AR-F,annual,2016,naphtha combustion consumption by to the public,17.809576399999997,TJ,N2O,0.6,kg/TJ,10.685745839999997,kg -428df677-c7a8-3d29-91c5-8c6e11de16ee,SESCO,II.1.1,Mendoza,AR-M,annual,2016,naphtha combustion consumption by to the public,139.88446394999997,TJ,CO2,73300.0,kg/TJ,10253531.207534997,kg -cf2fdded-62e0-3677-b829-b3b785be0806,SESCO,II.1.1,Mendoza,AR-M,annual,2016,naphtha combustion consumption by to the public,139.88446394999997,TJ,CH4,3.0,kg/TJ,419.65339184999993,kg -3a07978e-7acd-3400-bc69-95473a6311e4,SESCO,II.1.1,Mendoza,AR-M,annual,2016,naphtha combustion consumption by to the public,139.88446394999997,TJ,N2O,0.6,kg/TJ,83.93067836999998,kg -d11fcbc9-dcc1-3a1f-8c97-6df789321d6d,SESCO,II.1.1,Misiones,AR-N,annual,2016,naphtha combustion consumption by to the public,94.87258934999998,TJ,CO2,73300.0,kg/TJ,6954160.799354998,kg -349fbfd2-bddb-3235-925f-782dc836d327,SESCO,II.1.1,Misiones,AR-N,annual,2016,naphtha combustion consumption by to the public,94.87258934999998,TJ,CH4,3.0,kg/TJ,284.61776804999994,kg -9eee9dfa-1ad3-3085-aceb-7940f6862d07,SESCO,II.1.1,Misiones,AR-N,annual,2016,naphtha combustion consumption by to the public,94.87258934999998,TJ,N2O,0.6,kg/TJ,56.92355360999999,kg -f70299a9-96d6-30b1-bb6a-8bce7ca0ac47,SESCO,II.1.1,Neuquén,AR-Q,annual,2016,naphtha combustion consumption by to the public,101.76465144999999,TJ,CO2,73300.0,kg/TJ,7459348.951284999,kg -89449589-0926-30ae-8ab6-aba14f6f4097,SESCO,II.1.1,Neuquén,AR-Q,annual,2016,naphtha combustion consumption by to the public,101.76465144999999,TJ,CH4,3.0,kg/TJ,305.29395435,kg -4b61d3ba-b342-3b4f-80db-932fcc513ff4,SESCO,II.1.1,Neuquén,AR-Q,annual,2016,naphtha combustion consumption by to the public,101.76465144999999,TJ,N2O,0.6,kg/TJ,61.05879086999999,kg -eeead1fb-9b72-35ac-91e8-13e57949457e,SESCO,II.1.1,Rio Negro,AR-R,annual,2016,naphtha combustion consumption by to the public,157.32809014999998,TJ,CO2,73300.0,kg/TJ,11532149.007994998,kg -2c548647-67f1-3854-ab40-ca85148f8d93,SESCO,II.1.1,Rio Negro,AR-R,annual,2016,naphtha combustion consumption by to the public,157.32809014999998,TJ,CH4,3.0,kg/TJ,471.98427044999994,kg -4d2d6dd6-6420-3465-a123-5a0d3c36cb5d,SESCO,II.1.1,Rio Negro,AR-R,annual,2016,naphtha combustion consumption by to the public,157.32809014999998,TJ,N2O,0.6,kg/TJ,94.39685408999999,kg -0d7414e5-6a89-376a-9b85-6fffe16a1708,SESCO,II.1.1,Salta,AR-A,annual,2016,naphtha combustion consumption by to the public,12.869248699999998,TJ,CO2,73300.0,kg/TJ,943315.9297099998,kg -fb2c14c8-7a1d-3e87-b420-661373f6a6c4,SESCO,II.1.1,Salta,AR-A,annual,2016,naphtha combustion consumption by to the public,12.869248699999998,TJ,CH4,3.0,kg/TJ,38.60774609999999,kg -b679bfdf-f498-350c-bcf9-5bfa5b4f6af8,SESCO,II.1.1,Salta,AR-A,annual,2016,naphtha combustion consumption by to the public,12.869248699999998,TJ,N2O,0.6,kg/TJ,7.721549219999998,kg -e70ce9af-d909-32e3-a6fb-1ea650dede41,SESCO,II.1.1,San Juan,AR-J,annual,2016,naphtha combustion consumption by to the public,59.8328577,TJ,CO2,73300.0,kg/TJ,4385748.469409999,kg -f0148657-9e83-3126-8cda-5fc757c6262f,SESCO,II.1.1,San Juan,AR-J,annual,2016,naphtha combustion consumption by to the public,59.8328577,TJ,CH4,3.0,kg/TJ,179.4985731,kg -87b8ced0-4a47-36d7-826a-afdeaf0acc72,SESCO,II.1.1,San Juan,AR-J,annual,2016,naphtha combustion consumption by to the public,59.8328577,TJ,N2O,0.6,kg/TJ,35.89971462,kg -ecebe372-c1f9-3984-97eb-413e036dc75f,SESCO,II.1.1,San Luis,AR-D,annual,2016,naphtha combustion consumption by to the public,121.7394332,TJ,CO2,73300.0,kg/TJ,8923500.45356,kg -a26281a0-8ac0-3677-b643-749876f4dd28,SESCO,II.1.1,San Luis,AR-D,annual,2016,naphtha combustion consumption by to the public,121.7394332,TJ,CH4,3.0,kg/TJ,365.21829959999997,kg -baf8f8e2-2363-3b20-9aa6-a604a467baf5,SESCO,II.1.1,San Luis,AR-D,annual,2016,naphtha combustion consumption by to the public,121.7394332,TJ,N2O,0.6,kg/TJ,73.04365992,kg -0a988488-10b0-38b4-8f0f-fb083a40b2f0,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2016,naphtha combustion consumption by to the public,33.0575014,TJ,CO2,73300.0,kg/TJ,2423114.85262,kg -a29d0324-1a99-3d9c-9d29-7f2e7090377b,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2016,naphtha combustion consumption by to the public,33.0575014,TJ,CH4,3.0,kg/TJ,99.17250419999999,kg -f9158194-0fe4-31ac-8a06-9d6f744f907b,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2016,naphtha combustion consumption by to the public,33.0575014,TJ,N2O,0.6,kg/TJ,19.83450084,kg -772eb836-7295-3a4f-b801-0bf8015d79e1,SESCO,II.1.1,Santa Fe,AR-S,annual,2016,naphtha combustion consumption by to the public,682.0701810999999,TJ,CO2,73300.0,kg/TJ,49995744.274629995,kg -f00e2191-2c6c-3830-b5ec-bc7853bec8a6,SESCO,II.1.1,Santa Fe,AR-S,annual,2016,naphtha combustion consumption by to the public,682.0701810999999,TJ,CH4,3.0,kg/TJ,2046.2105432999997,kg -a31bcc9a-96c3-39c2-8c65-0c206abce5a8,SESCO,II.1.1,Santa Fe,AR-S,annual,2016,naphtha combustion consumption by to the public,682.0701810999999,TJ,N2O,0.6,kg/TJ,409.24210865999993,kg -604902db-c5a6-3f52-ab67-7dcbcfec6d67,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2016,naphtha combustion consumption by to the public,99.2944876,TJ,CO2,73300.0,kg/TJ,7278285.941079999,kg -a7603528-dc41-32e5-9ffb-093269681f90,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2016,naphtha combustion consumption by to the public,99.2944876,TJ,CH4,3.0,kg/TJ,297.88346279999996,kg -a2722c94-c9e2-3e54-8c93-56fc1132575d,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2016,naphtha combustion consumption by to the public,99.2944876,TJ,N2O,0.6,kg/TJ,59.57669256,kg -98b2334a-2c90-347c-be6c-95195820fc5a,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2016,naphtha combustion consumption by to the public,57.36269384999999,TJ,CO2,73300.0,kg/TJ,4204685.459205,kg -ed135fbf-182e-3723-8750-a12736ff4932,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2016,naphtha combustion consumption by to the public,57.36269384999999,TJ,CH4,3.0,kg/TJ,172.08808154999997,kg -682aacfd-0fce-32bc-a3a3-ab85806e815c,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2016,naphtha combustion consumption by to the public,57.36269384999999,TJ,N2O,0.6,kg/TJ,34.41761630999999,kg -b68271bd-e7af-3fbc-a7b9-ee0003210b10,SESCO,II.1.1,Tucuman,AR-T,annual,2016,naphtha combustion consumption by to the public,20.88965725,TJ,CO2,73300.0,kg/TJ,1531211.876425,kg -4b6948a9-17ef-3fd5-811e-c98aed5836e9,SESCO,II.1.1,Tucuman,AR-T,annual,2016,naphtha combustion consumption by to the public,20.88965725,TJ,CH4,3.0,kg/TJ,62.66897175,kg -02a7f198-720b-3ece-87d2-926b442536ca,SESCO,II.1.1,Tucuman,AR-T,annual,2016,naphtha combustion consumption by to the public,20.88965725,TJ,N2O,0.6,kg/TJ,12.533794349999999,kg -1b5c3756-472a-3a45-81dd-98c22886b2ee,SESCO,II.1.1,Buenos Aires,AR-B,annual,2016,naphtha combustion consumption by freight transport,8.2338795,TJ,CO2,73300.0,kg/TJ,603543.3673500001,kg -5a871921-7f19-37ba-8344-b0d52fcbfc5b,SESCO,II.1.1,Buenos Aires,AR-B,annual,2016,naphtha combustion consumption by freight transport,8.2338795,TJ,CH4,3.0,kg/TJ,24.7016385,kg -3c5d14ba-51e4-3326-8323-8c75e080b540,SESCO,II.1.1,Buenos Aires,AR-B,annual,2016,naphtha combustion consumption by freight transport,8.2338795,TJ,N2O,0.6,kg/TJ,4.9403277,kg -3ee62f9b-f42a-3c0a-9adc-55ec52afb993,SESCO,II.1.1,Capital Federal,AR-C,annual,2016,naphtha combustion consumption by freight transport,5.5502446999999995,TJ,CO2,73300.0,kg/TJ,406832.93650999997,kg -e232892e-9194-366f-96a1-0cf8c0e59925,SESCO,II.1.1,Capital Federal,AR-C,annual,2016,naphtha combustion consumption by freight transport,5.5502446999999995,TJ,CH4,3.0,kg/TJ,16.650734099999998,kg -ff53c0b7-9e37-34aa-aa27-d8eb3c725957,SESCO,II.1.1,Capital Federal,AR-C,annual,2016,naphtha combustion consumption by freight transport,5.5502446999999995,TJ,N2O,0.6,kg/TJ,3.3301468199999995,kg -850a2aea-b2f7-337f-adb3-f9d1c27d876c,SESCO,II.1.1,Córdoba,AR-X,annual,2016,naphtha combustion consumption by freight transport,1.5247924999999998,TJ,CO2,73300.0,kg/TJ,111767.29024999998,kg -5db02c6e-da5f-3dea-b40d-8b79e6ec64f1,SESCO,II.1.1,Córdoba,AR-X,annual,2016,naphtha combustion consumption by freight transport,1.5247924999999998,TJ,CH4,3.0,kg/TJ,4.574377499999999,kg -3d031b75-0671-373c-a7d8-c03730810e2e,SESCO,II.1.1,Córdoba,AR-X,annual,2016,naphtha combustion consumption by freight transport,1.5247924999999998,TJ,N2O,0.6,kg/TJ,0.9148754999999998,kg -133b1b9c-fdd2-36d5-ac34-8ef7514f1fbc,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2016,naphtha combustion consumption by freight transport,2.40917215,TJ,CO2,73300.0,kg/TJ,176592.318595,kg -79a5f83e-dac0-3bc9-a2cf-479ae1f588a0,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2016,naphtha combustion consumption by freight transport,2.40917215,TJ,CH4,3.0,kg/TJ,7.2275164499999995,kg -65849e8f-a669-317a-a260-2f3e12eef619,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2016,naphtha combustion consumption by freight transport,2.40917215,TJ,N2O,0.6,kg/TJ,1.4455032899999998,kg -b1fe2260-1f4e-3ba8-abd0-3bdcc553a9d4,SESCO,II.1.1,Santa Fe,AR-S,annual,2016,naphtha combustion consumption by freight transport,6.495616049999999,TJ,CO2,73300.0,kg/TJ,476128.6564649999,kg -72411cb7-1ff4-34ec-9dd0-008204200b58,SESCO,II.1.1,Santa Fe,AR-S,annual,2016,naphtha combustion consumption by freight transport,6.495616049999999,TJ,CH4,3.0,kg/TJ,19.486848149999997,kg -7303feb1-3a8e-3ad9-b02d-2da0bcba0946,SESCO,II.1.1,Santa Fe,AR-S,annual,2016,naphtha combustion consumption by freight transport,6.495616049999999,TJ,N2O,0.6,kg/TJ,3.897369629999999,kg -a3c99869-bf3a-3a7d-bf3b-7ce7a1352592,SESCO,II.1.1,Buenos Aires,AR-B,annual,2016,naphtha combustion consumption by freight transport,5.489252999999999,TJ,CO2,73300.0,kg/TJ,402362.24489999993,kg -012c5c41-c60c-39c0-b489-14cdfdc94d83,SESCO,II.1.1,Buenos Aires,AR-B,annual,2016,naphtha combustion consumption by freight transport,5.489252999999999,TJ,CH4,3.0,kg/TJ,16.467758999999997,kg -dee881e7-d295-374e-9f6e-6ce6ab37529e,SESCO,II.1.1,Buenos Aires,AR-B,annual,2016,naphtha combustion consumption by freight transport,5.489252999999999,TJ,N2O,0.6,kg/TJ,3.293551799999999,kg -25fe2391-4f7f-3a63-8879-e391e139973e,SESCO,II.1.1,Capital Federal,AR-C,annual,2016,naphtha combustion consumption by freight transport,4.7573526,TJ,CO2,73300.0,kg/TJ,348713.94558,kg -7ea62b94-6d17-39fc-ad61-f0d263e71faf,SESCO,II.1.1,Capital Federal,AR-C,annual,2016,naphtha combustion consumption by freight transport,4.7573526,TJ,CH4,3.0,kg/TJ,14.272057799999999,kg -716bb79d-3a9d-35ee-83e5-a8a3eb06a408,SESCO,II.1.1,Capital Federal,AR-C,annual,2016,naphtha combustion consumption by freight transport,4.7573526,TJ,N2O,0.6,kg/TJ,2.85441156,kg -86b71a2b-7041-3f32-acaf-f370925c61c8,SESCO,II.1.1,Córdoba,AR-X,annual,2016,naphtha combustion consumption by freight transport,0.5489253,TJ,CO2,73300.0,kg/TJ,40236.22448999999,kg -9f85280f-7f0d-3694-9dba-fa48a67dd1d3,SESCO,II.1.1,Córdoba,AR-X,annual,2016,naphtha combustion consumption by freight transport,0.5489253,TJ,CH4,3.0,kg/TJ,1.6467758999999997,kg -1769f4ba-a52a-3467-9d40-a64cced1bd26,SESCO,II.1.1,Córdoba,AR-X,annual,2016,naphtha combustion consumption by freight transport,0.5489253,TJ,N2O,0.6,kg/TJ,0.32935517999999997,kg -8ad75766-5434-356d-9424-f0b1ec73fb33,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2016,naphtha combustion consumption by freight transport,0.30495849999999997,TJ,CO2,73300.0,kg/TJ,22353.458049999997,kg -641c846a-dd9e-38f7-a012-f089d0cd0336,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2016,naphtha combustion consumption by freight transport,0.30495849999999997,TJ,CH4,3.0,kg/TJ,0.9148755,kg -9cb3b713-87c0-3419-b10d-7e6d101e25f4,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2016,naphtha combustion consumption by freight transport,0.30495849999999997,TJ,N2O,0.6,kg/TJ,0.18297509999999997,kg -1a2185e8-7eee-3697-b668-ce9ac0f46496,SESCO,II.1.1,Santa Fe,AR-S,annual,2016,naphtha combustion consumption by freight transport,1.25032985,TJ,CO2,73300.0,kg/TJ,91649.178005,kg -74b5d93a-63cb-3f3c-989f-81048c0ca766,SESCO,II.1.1,Santa Fe,AR-S,annual,2016,naphtha combustion consumption by freight transport,1.25032985,TJ,CH4,3.0,kg/TJ,3.75098955,kg -ebaab00c-0418-3265-bea8-9e456e2b304b,SESCO,II.1.1,Santa Fe,AR-S,annual,2016,naphtha combustion consumption by freight transport,1.25032985,TJ,N2O,0.6,kg/TJ,0.7501979099999999,kg -a29201e3-66a9-34ef-8a23-4d240296cfa4,SESCO,II.1.1,Santa Fe,AR-S,annual,2016,naphtha combustion consumption by public passenger transport,0.6099169999999999,TJ,CO2,73300.0,kg/TJ,44706.916099999995,kg -47536d47-d4f7-3962-9da7-09c74c4fad38,SESCO,II.1.1,Santa Fe,AR-S,annual,2016,naphtha combustion consumption by public passenger transport,0.6099169999999999,TJ,CH4,3.0,kg/TJ,1.829751,kg -30ade8a5-5952-3452-b66f-ff5f41ba7621,SESCO,II.1.1,Santa Fe,AR-S,annual,2016,naphtha combustion consumption by public passenger transport,0.6099169999999999,TJ,N2O,0.6,kg/TJ,0.36595019999999995,kg -53fb16ff-cf1d-35bf-9c44-0a659ff9985e,SESCO,II.1.1,Buenos Aires,AR-B,annual,2016,naphtha combustion consumption by public passenger transport,0.30495849999999997,TJ,CO2,73300.0,kg/TJ,22353.458049999997,kg -808e37ea-f3a3-3f61-a930-177662b75223,SESCO,II.1.1,Buenos Aires,AR-B,annual,2016,naphtha combustion consumption by public passenger transport,0.30495849999999997,TJ,CH4,3.0,kg/TJ,0.9148755,kg -60d123a5-c0b8-356c-b9b5-f7c5de06091e,SESCO,II.1.1,Buenos Aires,AR-B,annual,2016,naphtha combustion consumption by public passenger transport,0.30495849999999997,TJ,N2O,0.6,kg/TJ,0.18297509999999997,kg -5c9e121e-0703-3d47-a737-96979e4d1218,SESCO,II.1.1,Capital Federal,AR-C,annual,2016,naphtha combustion consumption by public passenger transport,0.21347095,TJ,CO2,73300.0,kg/TJ,15647.420634999999,kg -58453588-a1ce-3435-933d-2fec092f090d,SESCO,II.1.1,Capital Federal,AR-C,annual,2016,naphtha combustion consumption by public passenger transport,0.21347095,TJ,CH4,3.0,kg/TJ,0.6404128499999999,kg -0d306eaf-3f45-32d3-bd23-26026a8083c0,SESCO,II.1.1,Capital Federal,AR-C,annual,2016,naphtha combustion consumption by public passenger transport,0.21347095,TJ,N2O,0.6,kg/TJ,0.12808256999999998,kg -e9fffc06-cba2-37bc-8e2d-b4d9bd251771,SESCO,II.1.1,Santa Fe,AR-S,annual,2016,naphtha combustion consumption by public passenger transport,0.48793359999999997,TJ,CO2,73300.0,kg/TJ,35765.53288,kg -c67e7b30-f20f-38ba-8cdc-909471753adf,SESCO,II.1.1,Santa Fe,AR-S,annual,2016,naphtha combustion consumption by public passenger transport,0.48793359999999997,TJ,CH4,3.0,kg/TJ,1.4638008,kg -f29cb214-aa3a-32e4-96b0-30458ec94e1c,SESCO,II.1.1,Santa Fe,AR-S,annual,2016,naphtha combustion consumption by public passenger transport,0.48793359999999997,TJ,N2O,0.6,kg/TJ,0.29276016,kg -bf820bfa-3fbe-3bca-a579-4660e8018fb1,SESCO,II.5.1,Santa Fe,AR-S,annual,2016,naphtha combustion consumption by agriculture machines,4.664035299,TJ,CO2,73300.0,kg/TJ,341873.7874167,kg -33e93c32-1240-3e15-8ab5-ac0667106aa5,SESCO,II.5.1,Santa Fe,AR-S,annual,2016,naphtha combustion consumption by agriculture machines,4.664035299,TJ,CH4,3.0,kg/TJ,13.992105897,kg -708bdc55-6b39-3570-8ce9-0a93b1352fb8,SESCO,II.5.1,Santa Fe,AR-S,annual,2016,naphtha combustion consumption by agriculture machines,4.664035299,TJ,N2O,0.6,kg/TJ,2.7984211794,kg -7bba12be-85a6-3353-b73c-cdf5fc3cd834,SESCO,II.5.1,Santiago del Estero,AR-G,annual,2016,naphtha combustion consumption by agriculture machines,4.185433429099999,TJ,CO2,73300.0,kg/TJ,306792.2703530299,kg -6888826b-edea-386b-bead-31246eb8d53b,SESCO,II.5.1,Santiago del Estero,AR-G,annual,2016,naphtha combustion consumption by agriculture machines,4.185433429099999,TJ,CH4,3.0,kg/TJ,12.556300287299997,kg -21af7cf5-1851-3b19-8ad5-bd5c3d2a64a4,SESCO,II.5.1,Santiago del Estero,AR-G,annual,2016,naphtha combustion consumption by agriculture machines,4.185433429099999,TJ,N2O,0.6,kg/TJ,2.511260057459999,kg -dd4546eb-1487-36ff-a23f-4398a6dd9cc7,SESCO,II.1.1,Buenos Aires,AR-B,annual,2016,naphtha combustion consumption by to the public,1726.9625327250449,TJ,CO2,73300.0,kg/TJ,126586353.64874579,kg -735a511f-8fb6-3f5b-ad85-148616b25def,SESCO,II.1.1,Buenos Aires,AR-B,annual,2016,naphtha combustion consumption by to the public,1726.9625327250449,TJ,CH4,3.0,kg/TJ,5180.887598175134,kg -2434794d-8368-3061-a193-0b756cacf9c4,SESCO,II.1.1,Buenos Aires,AR-B,annual,2016,naphtha combustion consumption by to the public,1726.9625327250449,TJ,N2O,0.6,kg/TJ,1036.1775196350268,kg -664e8430-4880-337e-ad6c-aef819987d27,SESCO,II.1.1,Capital Federal,AR-C,annual,2016,naphtha combustion consumption by to the public,195.92402520729496,TJ,CO2,73300.0,kg/TJ,14361231.04769472,kg -83383cba-55e2-3db2-9efa-22a6a12e9a8f,SESCO,II.1.1,Capital Federal,AR-C,annual,2016,naphtha combustion consumption by to the public,195.92402520729496,TJ,CH4,3.0,kg/TJ,587.7720756218848,kg -2d0e3b98-9792-301f-91e4-eb51595dbec0,SESCO,II.1.1,Capital Federal,AR-C,annual,2016,naphtha combustion consumption by to the public,195.92402520729496,TJ,N2O,0.6,kg/TJ,117.55441512437697,kg -83b5aa01-ad5f-3e60-921f-28ded2c68a0b,SESCO,II.1.1,Catamarca,AR-K,annual,2016,naphtha combustion consumption by to the public,166.07026227945997,TJ,CO2,73300.0,kg/TJ,12172950.225084415,kg -a18c8739-7dda-3263-a235-1d56dfc6834d,SESCO,II.1.1,Catamarca,AR-K,annual,2016,naphtha combustion consumption by to the public,166.07026227945997,TJ,CH4,3.0,kg/TJ,498.21078683837993,kg -0abc7b0d-435f-3cd4-885c-a64ab8274680,SESCO,II.1.1,Catamarca,AR-K,annual,2016,naphtha combustion consumption by to the public,166.07026227945997,TJ,N2O,0.6,kg/TJ,99.64215736767598,kg -87a9b4b6-d22d-3b52-aa86-76401875aa13,SESCO,II.1.1,Chaco,AR-H,annual,2016,naphtha combustion consumption by to the public,271.442673420765,TJ,CO2,73300.0,kg/TJ,19896747.961742073,kg -1e39d064-015a-3498-ac25-64da5e21a63a,SESCO,II.1.1,Chaco,AR-H,annual,2016,naphtha combustion consumption by to the public,271.442673420765,TJ,CH4,3.0,kg/TJ,814.328020262295,kg -d5a0af55-0256-386b-9f7e-0e86337863bb,SESCO,II.1.1,Chaco,AR-H,annual,2016,naphtha combustion consumption by to the public,271.442673420765,TJ,N2O,0.6,kg/TJ,162.865604052459,kg -67500ced-2564-334c-b960-416a2134d893,SESCO,II.1.1,Corrientes,AR-W,annual,2016,naphtha combustion consumption by to the public,263.82288580262997,TJ,CO2,73300.0,kg/TJ,19338217.529332776,kg -17b2effa-4e04-3206-bfe1-a225aa7d7953,SESCO,II.1.1,Corrientes,AR-W,annual,2016,naphtha combustion consumption by to the public,263.82288580262997,TJ,CH4,3.0,kg/TJ,791.4686574078899,kg -4c941e22-358e-3a63-a4fc-bf36cfa5a403,SESCO,II.1.1,Corrientes,AR-W,annual,2016,naphtha combustion consumption by to the public,263.82288580262997,TJ,N2O,0.6,kg/TJ,158.29373148157796,kg -307e82a7-ea40-33f2-abb9-a612df078f7b,SESCO,II.1.1,Córdoba,AR-X,annual,2016,naphtha combustion consumption by to the public,779.103678934735,TJ,CO2,73300.0,kg/TJ,57108299.66591607,kg -1bc82898-cccb-3010-a214-2ac029cd7d89,SESCO,II.1.1,Córdoba,AR-X,annual,2016,naphtha combustion consumption by to the public,779.103678934735,TJ,CH4,3.0,kg/TJ,2337.311036804205,kg -02f47059-1fc2-3040-8f74-7a2e898f6ba7,SESCO,II.1.1,Córdoba,AR-X,annual,2016,naphtha combustion consumption by to the public,779.103678934735,TJ,N2O,0.6,kg/TJ,467.4622073608409,kg -02d8b9eb-de0c-3b65-a336-2d9c20b52d10,SESCO,II.1.1,Entre Rios,AR-E,annual,2016,naphtha combustion consumption by to the public,365.75242831358,TJ,CO2,73300.0,kg/TJ,26809652.995385416,kg -f2f32d62-49c2-3520-80b7-dd1f0ad7a945,SESCO,II.1.1,Entre Rios,AR-E,annual,2016,naphtha combustion consumption by to the public,365.75242831358,TJ,CH4,3.0,kg/TJ,1097.2572849407402,kg -5f084cca-7250-3a3c-a848-f15bd8e5e9ee,SESCO,II.1.1,Entre Rios,AR-E,annual,2016,naphtha combustion consumption by to the public,365.75242831358,TJ,N2O,0.6,kg/TJ,219.451456988148,kg -162cf9be-2fa8-31fe-b4a4-42254f9cb816,SESCO,II.1.1,Jujuy,AR-Y,annual,2016,naphtha combustion consumption by to the public,65.50986754928,TJ,CO2,73300.0,kg/TJ,4801873.291362224,kg -a3dd0151-0039-3a5c-a233-b2dd9cfa6a93,SESCO,II.1.1,Jujuy,AR-Y,annual,2016,naphtha combustion consumption by to the public,65.50986754928,TJ,CH4,3.0,kg/TJ,196.52960264784002,kg -8b8573fe-be2c-3903-ad3d-bc609f8940f1,SESCO,II.1.1,Jujuy,AR-Y,annual,2016,naphtha combustion consumption by to the public,65.50986754928,TJ,N2O,0.6,kg/TJ,39.305920529568,kg -9bd80e68-9ae3-341c-a22a-4f7a0aaff610,SESCO,II.1.1,La Pampa,AR-L,annual,2016,naphtha combustion consumption by to the public,12.065121928859998,TJ,CO2,73300.0,kg/TJ,884373.4373854379,kg -698aebf5-15c8-31af-a12e-08168458e917,SESCO,II.1.1,La Pampa,AR-L,annual,2016,naphtha combustion consumption by to the public,12.065121928859998,TJ,CH4,3.0,kg/TJ,36.19536578658,kg -49544a7f-3ac3-3c2f-bc88-016c202321b5,SESCO,II.1.1,La Pampa,AR-L,annual,2016,naphtha combustion consumption by to the public,12.065121928859998,TJ,N2O,0.6,kg/TJ,7.239073157315999,kg -63702063-5a1e-374e-a7ac-dc1a35add9a3,SESCO,II.1.1,La Rioja,AR-F,annual,2016,naphtha combustion consumption by to the public,36.37560845842,TJ,CO2,73300.0,kg/TJ,2666332.100002186,kg -87709c63-d048-331c-9a87-17dd14a5544c,SESCO,II.1.1,La Rioja,AR-F,annual,2016,naphtha combustion consumption by to the public,36.37560845842,TJ,CH4,3.0,kg/TJ,109.12682537525998,kg -87a0326f-5f33-3237-b24b-2c6e84b26fcf,SESCO,II.1.1,La Rioja,AR-F,annual,2016,naphtha combustion consumption by to the public,36.37560845842,TJ,N2O,0.6,kg/TJ,21.825365075051998,kg -43bcab2c-8623-3092-b4cf-9cc528854486,SESCO,II.1.1,Mendoza,AR-M,annual,2016,naphtha combustion consumption by to the public,247.71580731974996,TJ,CO2,73300.0,kg/TJ,18157568.67653767,kg -d464988d-d23a-3f25-8d94-9f102f92b68e,SESCO,II.1.1,Mendoza,AR-M,annual,2016,naphtha combustion consumption by to the public,247.71580731974996,TJ,CH4,3.0,kg/TJ,743.1474219592499,kg -341ef813-8b7e-3f2d-8fc8-cbbe09372721,SESCO,II.1.1,Mendoza,AR-M,annual,2016,naphtha combustion consumption by to the public,247.71580731974996,TJ,N2O,0.6,kg/TJ,148.62948439184996,kg -322432b8-137d-37ce-8ec9-73578817cfea,SESCO,II.1.1,Misiones,AR-N,annual,2016,naphtha combustion consumption by to the public,250.09928366653998,TJ,CO2,73300.0,kg/TJ,18332277.49275738,kg -12912fa7-0e6c-3f07-bae1-2ba543f060dd,SESCO,II.1.1,Misiones,AR-N,annual,2016,naphtha combustion consumption by to the public,250.09928366653998,TJ,CH4,3.0,kg/TJ,750.2978509996199,kg -4fa76c20-4024-3cfc-81ef-2fe034481ea0,SESCO,II.1.1,Misiones,AR-N,annual,2016,naphtha combustion consumption by to the public,250.09928366653998,TJ,N2O,0.6,kg/TJ,150.05957019992397,kg -02992873-f10c-3c1f-94ce-3c1a937a3bab,SESCO,II.1.1,Salta,AR-A,annual,2016,naphtha combustion consumption by to the public,27.94989786358,TJ,CO2,73300.0,kg/TJ,2048727.5134004138,kg -5e29818c-8061-39cf-afb1-00e3aa3c64fb,SESCO,II.1.1,Salta,AR-A,annual,2016,naphtha combustion consumption by to the public,27.94989786358,TJ,CH4,3.0,kg/TJ,83.84969359074,kg -ed02ba3b-9141-3f97-a7e2-86ee89d8e6a2,SESCO,II.1.1,Salta,AR-A,annual,2016,naphtha combustion consumption by to the public,27.94989786358,TJ,N2O,0.6,kg/TJ,16.769938718147998,kg -1145957d-3fc5-3a72-b78a-5480af2ad2e8,SESCO,II.1.1,San Juan,AR-J,annual,2016,naphtha combustion consumption by to the public,255.635045887375,TJ,CO2,73300.0,kg/TJ,18738048.863544587,kg -c8bd6db4-b9ef-385a-8d9c-50330d25f6b9,SESCO,II.1.1,San Juan,AR-J,annual,2016,naphtha combustion consumption by to the public,255.635045887375,TJ,CH4,3.0,kg/TJ,766.905137662125,kg -5a7e5490-3f35-34ad-83f5-8fec81c7da06,SESCO,II.1.1,San Juan,AR-J,annual,2016,naphtha combustion consumption by to the public,255.635045887375,TJ,N2O,0.6,kg/TJ,153.38102753242498,kg -ba6ff81d-3b8f-3579-a89e-3b3bf2f433af,SESCO,II.1.1,San Luis,AR-D,annual,2016,naphtha combustion consumption by to the public,159.49693670448997,TJ,CO2,73300.0,kg/TJ,11691125.460439114,kg -6eb3a194-212f-3181-a893-cf046f6c6103,SESCO,II.1.1,San Luis,AR-D,annual,2016,naphtha combustion consumption by to the public,159.49693670448997,TJ,CH4,3.0,kg/TJ,478.49081011346993,kg -c7828900-c417-30e7-bfac-f1c2e2f78550,SESCO,II.1.1,San Luis,AR-D,annual,2016,naphtha combustion consumption by to the public,159.49693670448997,TJ,N2O,0.6,kg/TJ,95.69816202269398,kg -72923d12-74a8-3171-acc1-888f6ead14f1,SESCO,II.1.1,Santa Fe,AR-S,annual,2016,naphtha combustion consumption by to the public,972.84506736417,TJ,CO2,73300.0,kg/TJ,71309543.43779366,kg -2d52ad6e-c575-3b66-8653-3bceffd8f8de,SESCO,II.1.1,Santa Fe,AR-S,annual,2016,naphtha combustion consumption by to the public,972.84506736417,TJ,CH4,3.0,kg/TJ,2918.5352020925097,kg -d194373c-b746-321a-826f-3090b9c34c57,SESCO,II.1.1,Santa Fe,AR-S,annual,2016,naphtha combustion consumption by to the public,972.84506736417,TJ,N2O,0.6,kg/TJ,583.707040418502,kg -07935cb4-59a6-3100-9a8f-9d95fb6c1adc,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2016,naphtha combustion consumption by to the public,176.238520991225,TJ,CO2,73300.0,kg/TJ,12918283.588656792,kg -718eb6e8-9807-32d2-bbff-9b7bdee20055,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2016,naphtha combustion consumption by to the public,176.238520991225,TJ,CH4,3.0,kg/TJ,528.715562973675,kg -ea6b732f-c5cc-39ca-8ae8-ce4f3135b0e6,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2016,naphtha combustion consumption by to the public,176.238520991225,TJ,N2O,0.6,kg/TJ,105.743112594735,kg -ca78306d-3d20-3da5-9bea-11baad655033,SESCO,II.1.1,Tucuman,AR-T,annual,2016,naphtha combustion consumption by to the public,203.25932618953496,TJ,CO2,73300.0,kg/TJ,14898908.609692913,kg -2effb6cf-ebfd-326a-90ad-1e40e241fdcb,SESCO,II.1.1,Tucuman,AR-T,annual,2016,naphtha combustion consumption by to the public,203.25932618953496,TJ,CH4,3.0,kg/TJ,609.7779785686049,kg -8e5989f4-d196-3d8b-ae30-641a461f7b57,SESCO,II.1.1,Tucuman,AR-T,annual,2016,naphtha combustion consumption by to the public,203.25932618953496,TJ,N2O,0.6,kg/TJ,121.95559571372097,kg -1ec09db2-152a-3afd-88bb-e7a25b539936,SESCO,II.1.1,Buenos Aires,AR-B,annual,2016,naphtha combustion consumption by to the public,324.80965767327,TJ,CO2,73300.0,kg/TJ,23808547.90745069,kg -2f2a611f-f5ed-3b08-af3a-413f9248d88c,SESCO,II.1.1,Buenos Aires,AR-B,annual,2016,naphtha combustion consumption by to the public,324.80965767327,TJ,CH4,3.0,kg/TJ,974.42897301981,kg -924a66bb-df69-3083-9345-1b70ecc1ce2f,SESCO,II.1.1,Buenos Aires,AR-B,annual,2016,naphtha combustion consumption by to the public,324.80965767327,TJ,N2O,0.6,kg/TJ,194.885794603962,kg -a50f8f78-dd78-3dc7-8f17-10e7a318e4b7,SESCO,II.1.1,Capital Federal,AR-C,annual,2016,naphtha combustion consumption by to the public,62.98920257167999,TJ,CO2,73300.0,kg/TJ,4617108.548504143,kg -2ab467c3-fa0e-3ce5-91d0-7b67f00e9ecd,SESCO,II.1.1,Capital Federal,AR-C,annual,2016,naphtha combustion consumption by to the public,62.98920257167999,TJ,CH4,3.0,kg/TJ,188.96760771503997,kg -f110d406-efd3-3306-be92-0c30e6d5c687,SESCO,II.1.1,Capital Federal,AR-C,annual,2016,naphtha combustion consumption by to the public,62.98920257167999,TJ,N2O,0.6,kg/TJ,37.79352154300799,kg -64a1b47d-a92e-346c-986f-379c0e71f3a6,SESCO,II.1.1,Catamarca,AR-K,annual,2016,naphtha combustion consumption by to the public,19.600905678584997,TJ,CO2,73300.0,kg/TJ,1436746.3862402802,kg -cc54227d-6a62-3328-bbef-e488663f8a8a,SESCO,II.1.1,Catamarca,AR-K,annual,2016,naphtha combustion consumption by to the public,19.600905678584997,TJ,CH4,3.0,kg/TJ,58.802717035754995,kg -ef400971-9386-32c7-a43b-a156f6015335,SESCO,II.1.1,Catamarca,AR-K,annual,2016,naphtha combustion consumption by to the public,19.600905678584997,TJ,N2O,0.6,kg/TJ,11.760543407150998,kg -5f064b97-fdde-31ff-b8cb-5d3edd04c1bf,SESCO,II.1.1,Chaco,AR-H,annual,2016,naphtha combustion consumption by to the public,26.576944200729997,TJ,CO2,73300.0,kg/TJ,1948090.0099135088,kg -34ae1337-3ada-376f-98e7-6ddfb03554ac,SESCO,II.1.1,Chaco,AR-H,annual,2016,naphtha combustion consumption by to the public,26.576944200729997,TJ,CH4,3.0,kg/TJ,79.73083260218999,kg -3e485f31-5a81-360a-8d20-a756a5d358f3,SESCO,II.1.1,Chaco,AR-H,annual,2016,naphtha combustion consumption by to the public,26.576944200729997,TJ,N2O,0.6,kg/TJ,15.946166520437998,kg -26d5cd33-c260-3080-ad34-ba25ed1497db,SESCO,II.1.1,Corrientes,AR-W,annual,2016,naphtha combustion consumption by to the public,69.25412666518498,TJ,CO2,73300.0,kg/TJ,5076327.484558059,kg -22b84ec5-8ba7-3e87-9b4b-998d68b81566,SESCO,II.1.1,Corrientes,AR-W,annual,2016,naphtha combustion consumption by to the public,69.25412666518498,TJ,CH4,3.0,kg/TJ,207.76237999555497,kg -71079490-9c97-3f44-8daf-17b02a7595cd,SESCO,II.1.1,Corrientes,AR-W,annual,2016,naphtha combustion consumption by to the public,69.25412666518498,TJ,N2O,0.6,kg/TJ,41.55247599911099,kg -f684dbc3-b7b8-3e83-8ad9-dd131b0324f6,SESCO,II.1.1,Córdoba,AR-X,annual,2016,naphtha combustion consumption by to the public,150.36579610745,TJ,CO2,73300.0,kg/TJ,11021812.854676085,kg -203c5b44-6993-3727-b05c-52e78a0d0e5e,SESCO,II.1.1,Córdoba,AR-X,annual,2016,naphtha combustion consumption by to the public,150.36579610745,TJ,CH4,3.0,kg/TJ,451.09738832234996,kg -cdf73073-60a7-3fb9-b284-ffd0dfdaed97,SESCO,II.1.1,Córdoba,AR-X,annual,2016,naphtha combustion consumption by to the public,150.36579610745,TJ,N2O,0.6,kg/TJ,90.21947766446999,kg -7cf6a18b-8089-3cc3-8fe6-465aa2f53856,SESCO,II.1.1,Entre Rios,AR-E,annual,2016,naphtha combustion consumption by to the public,79.202653628945,TJ,CO2,73300.0,kg/TJ,5805554.511001669,kg -bac535b1-284b-3bca-99fc-7ac09ff0f8c2,SESCO,II.1.1,Entre Rios,AR-E,annual,2016,naphtha combustion consumption by to the public,79.202653628945,TJ,CH4,3.0,kg/TJ,237.607960886835,kg -97de9de6-9ff1-367d-ac1a-e92697a72975,SESCO,II.1.1,Entre Rios,AR-E,annual,2016,naphtha combustion consumption by to the public,79.202653628945,TJ,N2O,0.6,kg/TJ,47.521592177367,kg -8507391d-10e8-3b79-a0d2-8ce572d2c64f,SESCO,II.1.1,Jujuy,AR-Y,annual,2016,naphtha combustion consumption by to the public,1.6073081709299997,TJ,CO2,73300.0,kg/TJ,117815.68892916897,kg -14069b26-aebe-32af-9d22-568323a13d86,SESCO,II.1.1,Jujuy,AR-Y,annual,2016,naphtha combustion consumption by to the public,1.6073081709299997,TJ,CH4,3.0,kg/TJ,4.821924512789999,kg -abeaddbb-5ccd-3d33-a74b-e00f61dc66e6,SESCO,II.1.1,Jujuy,AR-Y,annual,2016,naphtha combustion consumption by to the public,1.6073081709299997,TJ,N2O,0.6,kg/TJ,0.9643849025579998,kg -ce17a61a-3e32-3072-98d9-3b7aac83736e,SESCO,II.1.1,La Pampa,AR-L,annual,2016,naphtha combustion consumption by to the public,3.8808134330349993,TJ,CO2,73300.0,kg/TJ,284463.62464146543,kg -225bad29-e695-3cf4-bf9e-bcb762d9474e,SESCO,II.1.1,La Pampa,AR-L,annual,2016,naphtha combustion consumption by to the public,3.8808134330349993,TJ,CH4,3.0,kg/TJ,11.642440299104997,kg -477027b9-d08a-393b-9bc7-9eeebe1f1696,SESCO,II.1.1,La Pampa,AR-L,annual,2016,naphtha combustion consumption by to the public,3.8808134330349993,TJ,N2O,0.6,kg/TJ,2.3284880598209994,kg -afa23a96-1cc2-3944-a25d-849ecc5fb6b5,SESCO,II.1.1,La Rioja,AR-F,annual,2016,naphtha combustion consumption by to the public,5.913483818935,TJ,CO2,73300.0,kg/TJ,433458.3639279355,kg -ef76db4e-05b9-30ab-94b8-b2b68f85ba12,SESCO,II.1.1,La Rioja,AR-F,annual,2016,naphtha combustion consumption by to the public,5.913483818935,TJ,CH4,3.0,kg/TJ,17.740451456805,kg -768cdd02-393d-339b-9ce8-45e5f3292952,SESCO,II.1.1,La Rioja,AR-F,annual,2016,naphtha combustion consumption by to the public,5.913483818935,TJ,N2O,0.6,kg/TJ,3.548090291361,kg -01c455bb-ff8d-3565-b792-d8b7233e6672,SESCO,II.1.1,Mendoza,AR-M,annual,2016,naphtha combustion consumption by to the public,46.00506954196999,TJ,CO2,73300.0,kg/TJ,3372171.5974264,kg -3d24d023-5267-3052-b8b1-0458c12a733c,SESCO,II.1.1,Mendoza,AR-M,annual,2016,naphtha combustion consumption by to the public,46.00506954196999,TJ,CH4,3.0,kg/TJ,138.01520862590996,kg -334f722c-f719-33c5-a28b-8db41467197a,SESCO,II.1.1,Mendoza,AR-M,annual,2016,naphtha combustion consumption by to the public,46.00506954196999,TJ,N2O,0.6,kg/TJ,27.603041725181992,kg -7fef4c61-4bf0-37bc-9e23-3bfd566b050b,SESCO,II.1.1,Misiones,AR-N,annual,2016,naphtha combustion consumption by to the public,38.875023927739996,TJ,CO2,73300.0,kg/TJ,2849539.2539033415,kg -613c00b0-b4df-3e0a-8034-a3a5a678e4b5,SESCO,II.1.1,Misiones,AR-N,annual,2016,naphtha combustion consumption by to the public,38.875023927739996,TJ,CH4,3.0,kg/TJ,116.62507178322,kg -0cbadd3c-71da-3405-be3e-7f7b134337e8,SESCO,II.1.1,Misiones,AR-N,annual,2016,naphtha combustion consumption by to the public,38.875023927739996,TJ,N2O,0.6,kg/TJ,23.325014356643997,kg -5543a1cf-2e53-3030-afe9-4a78788acb2b,SESCO,II.1.1,Salta,AR-A,annual,2016,naphtha combustion consumption by to the public,0.7278170056849999,TJ,CO2,73300.0,kg/TJ,53348.98651671049,kg -a7f016f3-78c9-3f41-8a69-9be0fe935524,SESCO,II.1.1,Salta,AR-A,annual,2016,naphtha combustion consumption by to the public,0.7278170056849999,TJ,CH4,3.0,kg/TJ,2.1834510170549994,kg -60938dd7-8af6-33c0-84b8-5ad8444b6b7f,SESCO,II.1.1,Salta,AR-A,annual,2016,naphtha combustion consumption by to the public,0.7278170056849999,TJ,N2O,0.6,kg/TJ,0.4366902034109999,kg -053bdfc4-7520-3eca-b83a-148009c159a1,SESCO,II.1.1,San Juan,AR-J,annual,2016,naphtha combustion consumption by to the public,61.01548066383,TJ,CO2,73300.0,kg/TJ,4472434.732658739,kg -7b28748c-4b03-375a-a294-b051460c61f0,SESCO,II.1.1,San Juan,AR-J,annual,2016,naphtha combustion consumption by to the public,61.01548066383,TJ,CH4,3.0,kg/TJ,183.04644199148998,kg -6b9bb90f-47d3-3863-9646-549d26c5cde5,SESCO,II.1.1,San Juan,AR-J,annual,2016,naphtha combustion consumption by to the public,61.01548066383,TJ,N2O,0.6,kg/TJ,36.609288398298,kg -d06a4829-ef27-3d95-b82b-4a44797c04ad,SESCO,II.1.1,San Luis,AR-D,annual,2016,naphtha combustion consumption by to the public,39.71989925365,TJ,CO2,73300.0,kg/TJ,2911468.615292545,kg -f2e37853-6b38-3234-9857-427808f85ede,SESCO,II.1.1,San Luis,AR-D,annual,2016,naphtha combustion consumption by to the public,39.71989925365,TJ,CH4,3.0,kg/TJ,119.15969776095,kg -6e152f39-31cf-385c-9460-59b018eb349e,SESCO,II.1.1,San Luis,AR-D,annual,2016,naphtha combustion consumption by to the public,39.71989925365,TJ,N2O,0.6,kg/TJ,23.831939552189997,kg -787d8d17-0be6-3841-ab0e-02df0c05e339,SESCO,II.1.1,Santa Fe,AR-S,annual,2016,naphtha combustion consumption by to the public,207.064659344235,TJ,CO2,73300.0,kg/TJ,15177839.529932424,kg -bc2f165f-2344-3d8a-a028-3d312ac741cd,SESCO,II.1.1,Santa Fe,AR-S,annual,2016,naphtha combustion consumption by to the public,207.064659344235,TJ,CH4,3.0,kg/TJ,621.193978032705,kg -fe66f1e0-c23b-3ddb-9433-79768e82e897,SESCO,II.1.1,Santa Fe,AR-S,annual,2016,naphtha combustion consumption by to the public,207.064659344235,TJ,N2O,0.6,kg/TJ,124.23879560654099,kg -b87f9da1-fadb-3ae2-b1d4-2c02d6617dfc,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2016,naphtha combustion consumption by to the public,25.980064176604998,TJ,CO2,73300.0,kg/TJ,1904338.7041451463,kg -d18f9661-1516-3f5f-8876-42463cf7c097,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2016,naphtha combustion consumption by to the public,25.980064176604998,TJ,CH4,3.0,kg/TJ,77.940192529815,kg -5b64bea7-c797-30a8-a03f-68e8951906cc,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2016,naphtha combustion consumption by to the public,25.980064176604998,TJ,N2O,0.6,kg/TJ,15.588038505962999,kg -6df6a305-d594-3c7a-b02a-a94e9210e8ac,SESCO,II.1.1,Tucuman,AR-T,annual,2016,naphtha combustion consumption by to the public,26.470522832984997,TJ,CO2,73300.0,kg/TJ,1940289.3236578002,kg -239b159b-3cb2-33e3-9399-b42d8464f6b2,SESCO,II.1.1,Tucuman,AR-T,annual,2016,naphtha combustion consumption by to the public,26.470522832984997,TJ,CH4,3.0,kg/TJ,79.41156849895499,kg -7be0f149-aabc-3304-bdf0-c57df523ab8f,SESCO,II.1.1,Tucuman,AR-T,annual,2016,naphtha combustion consumption by to the public,26.470522832984997,TJ,N2O,0.6,kg/TJ,15.882313699790998,kg -d68161fa-cf1e-3422-991a-270c413c13d0,SESCO,II.5.1,Buenos Aires,AR-B,annual,2016,naphtha combustion consumption by agriculture machines,6.624976396114999,TJ,CO2,73300.0,kg/TJ,485610.76983522944,kg -9feb0b5b-e362-3186-b9db-27eb92c796e5,SESCO,II.5.1,Buenos Aires,AR-B,annual,2016,naphtha combustion consumption by agriculture machines,6.624976396114999,TJ,CH4,3.0,kg/TJ,19.874929188344996,kg -a696e1d0-7a83-325c-a96d-9201f76ecb2f,SESCO,II.5.1,Buenos Aires,AR-B,annual,2016,naphtha combustion consumption by agriculture machines,6.624976396114999,TJ,N2O,0.6,kg/TJ,3.9749858376689993,kg -f666d387-878f-30bd-8df5-058a1dc6bad6,SESCO,II.5.1,Rio Negro,AR-R,annual,2016,naphtha combustion consumption by agriculture machines,1.9076374009,TJ,CO2,73300.0,kg/TJ,139829.82148597,kg -39da4433-f3e7-37de-9595-eb2320a31e7b,SESCO,II.5.1,Rio Negro,AR-R,annual,2016,naphtha combustion consumption by agriculture machines,1.9076374009,TJ,CH4,3.0,kg/TJ,5.7229122027,kg -f111c945-0dd2-3d4a-93ca-3373929a2684,SESCO,II.5.1,Rio Negro,AR-R,annual,2016,naphtha combustion consumption by agriculture machines,1.9076374009,TJ,N2O,0.6,kg/TJ,1.1445824405399998,kg -aeaf9f35-3812-39dc-ad14-d61055f842dd,SESCO,II.1.1,Buenos Aires,AR-B,annual,2016,naphtha combustion consumption by to the public,3858.07833162059,TJ,CO2,73300.0,kg/TJ,282797141.70778924,kg -02c76ad7-bf1e-3cff-bc09-5215d166f0bb,SESCO,II.1.1,Buenos Aires,AR-B,annual,2016,naphtha combustion consumption by to the public,3858.07833162059,TJ,CH4,3.0,kg/TJ,11574.23499486177,kg -cfa460bf-7687-336d-9fab-7f28ba56d2a9,SESCO,II.1.1,Buenos Aires,AR-B,annual,2016,naphtha combustion consumption by to the public,3858.07833162059,TJ,N2O,0.6,kg/TJ,2314.846998972354,kg -88b656c0-3c6a-3666-9122-0d9f21893846,SESCO,II.1.1,Capital Federal,AR-C,annual,2016,naphtha combustion consumption by to the public,707.3343338507599,TJ,CO2,73300.0,kg/TJ,51847606.6712607,kg -229bd3eb-696c-34ee-9bc8-f88f9c04d4fd,SESCO,II.1.1,Capital Federal,AR-C,annual,2016,naphtha combustion consumption by to the public,707.3343338507599,TJ,CH4,3.0,kg/TJ,2122.00300155228,kg -fe5c7351-e28c-3e2a-b853-40cd543f616a,SESCO,II.1.1,Capital Federal,AR-C,annual,2016,naphtha combustion consumption by to the public,707.3343338507599,TJ,N2O,0.6,kg/TJ,424.4006003104559,kg -51c8748d-965b-38ac-9ac2-eeb73c03c074,SESCO,II.1.1,Chubut,AR-U,annual,2016,naphtha combustion consumption by to the public,1349.3502469993698,TJ,CO2,73300.0,kg/TJ,98907373.10505381,kg -695fe131-8e90-3f1e-a8d3-2065d1f58b23,SESCO,II.1.1,Chubut,AR-U,annual,2016,naphtha combustion consumption by to the public,1349.3502469993698,TJ,CH4,3.0,kg/TJ,4048.050740998109,kg -6b9e0492-f5ab-3d39-834d-63e4b2539e49,SESCO,II.1.1,Chubut,AR-U,annual,2016,naphtha combustion consumption by to the public,1349.3502469993698,TJ,N2O,0.6,kg/TJ,809.6101481996219,kg -e4face9e-4f8c-3d36-b0ad-a904e143bc9c,SESCO,II.1.1,Córdoba,AR-X,annual,2016,naphtha combustion consumption by to the public,460.50471458491495,TJ,CO2,73300.0,kg/TJ,33754995.57907426,kg -4e9d34c8-2907-3367-ad6b-0a87b210c090,SESCO,II.1.1,Córdoba,AR-X,annual,2016,naphtha combustion consumption by to the public,460.50471458491495,TJ,CH4,3.0,kg/TJ,1381.514143754745,kg -fcd0928d-d1e1-377d-a080-87c800680ec4,SESCO,II.1.1,Córdoba,AR-X,annual,2016,naphtha combustion consumption by to the public,460.50471458491495,TJ,N2O,0.6,kg/TJ,276.30282875094895,kg -9f785a84-7ab9-3661-9cc5-e9c41c6da409,SESCO,II.1.1,Entre Rios,AR-E,annual,2016,naphtha combustion consumption by to the public,150.485605153345,TJ,CO2,73300.0,kg/TJ,11030594.857740188,kg -c1ae3df1-7347-396e-bcc9-24cf082ad5f0,SESCO,II.1.1,Entre Rios,AR-E,annual,2016,naphtha combustion consumption by to the public,150.485605153345,TJ,CH4,3.0,kg/TJ,451.45681546003505,kg -9234480c-85cf-32b9-ad1e-4f52cba09d73,SESCO,II.1.1,Entre Rios,AR-E,annual,2016,naphtha combustion consumption by to the public,150.485605153345,TJ,N2O,0.6,kg/TJ,90.291363092007,kg -05fdf4ff-09b7-34e3-b4d8-3157b4ea2f3c,SESCO,II.1.1,La Pampa,AR-L,annual,2016,naphtha combustion consumption by to the public,378.1771634048099,TJ,CO2,73300.0,kg/TJ,27720386.077572566,kg -80838132-08c2-3d99-ab32-9b00d0454875,SESCO,II.1.1,La Pampa,AR-L,annual,2016,naphtha combustion consumption by to the public,378.1771634048099,TJ,CH4,3.0,kg/TJ,1134.5314902144296,kg -3ed7e9e9-e68e-3690-8dea-1c4a7ea6ac20,SESCO,II.1.1,La Pampa,AR-L,annual,2016,naphtha combustion consumption by to the public,378.1771634048099,TJ,N2O,0.6,kg/TJ,226.90629804288594,kg -c4cf38dd-1380-3358-9d00-57574dd48b7d,SESCO,II.1.1,Mendoza,AR-M,annual,2016,naphtha combustion consumption by to the public,7.077729983554999,TJ,CO2,73300.0,kg/TJ,518797.60779458145,kg -3ca391bb-0dab-3973-af88-cafa2efc4866,SESCO,II.1.1,Mendoza,AR-M,annual,2016,naphtha combustion consumption by to the public,7.077729983554999,TJ,CH4,3.0,kg/TJ,21.233189950664997,kg -cab285eb-dde9-32b3-bccc-6d4f1b86d5d1,SESCO,II.1.1,Mendoza,AR-M,annual,2016,naphtha combustion consumption by to the public,7.077729983554999,TJ,N2O,0.6,kg/TJ,4.246637990132999,kg -98079c56-3080-3855-8452-df70ce9928cc,SESCO,II.1.1,Neuquén,AR-Q,annual,2016,naphtha combustion consumption by to the public,545.6502469826099,TJ,CO2,73300.0,kg/TJ,39996163.10382531,kg -e239fd05-883f-3b87-869f-be10ff14b802,SESCO,II.1.1,Neuquén,AR-Q,annual,2016,naphtha combustion consumption by to the public,545.6502469826099,TJ,CH4,3.0,kg/TJ,1636.9507409478297,kg -9ec88111-e746-346c-a5fe-d16f4c178ead,SESCO,II.1.1,Neuquén,AR-Q,annual,2016,naphtha combustion consumption by to the public,545.6502469826099,TJ,N2O,0.6,kg/TJ,327.39014818956593,kg -d29173f8-cc26-38f8-be84-28891389e42e,SESCO,II.1.1,Rio Negro,AR-R,annual,2016,naphtha combustion consumption by to the public,1154.644024768465,TJ,CO2,73300.0,kg/TJ,84635407.01552849,kg -74c1457e-3ac0-3382-8f56-1c331b911697,SESCO,II.1.1,Rio Negro,AR-R,annual,2016,naphtha combustion consumption by to the public,1154.644024768465,TJ,CH4,3.0,kg/TJ,3463.932074305395,kg -f5d610cf-8382-3625-8df8-ec757dbf6103,SESCO,II.1.1,Rio Negro,AR-R,annual,2016,naphtha combustion consumption by to the public,1154.644024768465,TJ,N2O,0.6,kg/TJ,692.7864148610789,kg -a16b6a41-0dd6-34b7-b971-ce8dc9dfcd9d,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2016,naphtha combustion consumption by to the public,781.1642164283649,TJ,CO2,73300.0,kg/TJ,57259337.06419914,kg -d607672a-b61a-3742-89a1-4dd12c6cd865,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2016,naphtha combustion consumption by to the public,781.1642164283649,TJ,CH4,3.0,kg/TJ,2343.4926492850946,kg -9129d278-d878-3cf2-8b82-e77e3585bcac,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2016,naphtha combustion consumption by to the public,781.1642164283649,TJ,N2O,0.6,kg/TJ,468.6985298570189,kg -cc97ae3a-2b78-39b3-8e57-cde2d2ddd0de,SESCO,II.1.1,Santa Fe,AR-S,annual,2016,naphtha combustion consumption by to the public,548.203569965975,TJ,CO2,73300.0,kg/TJ,40183321.67850597,kg -8f8650a3-151e-3981-91a2-153a44420961,SESCO,II.1.1,Santa Fe,AR-S,annual,2016,naphtha combustion consumption by to the public,548.203569965975,TJ,CH4,3.0,kg/TJ,1644.610709897925,kg -9c0dd4fe-87aa-3850-9d18-5e51b9d44a50,SESCO,II.1.1,Santa Fe,AR-S,annual,2016,naphtha combustion consumption by to the public,548.203569965975,TJ,N2O,0.6,kg/TJ,328.922141979585,kg -0e275928-51de-325a-b6f9-162cffa77a90,SESCO,II.1.1,Buenos Aires,AR-B,annual,2016,naphtha combustion consumption by to the public,1025.670170858025,TJ,CO2,73300.0,kg/TJ,75181623.52389322,kg -3a869fc9-7819-3880-a8b6-5eeb31f28ca5,SESCO,II.1.1,Buenos Aires,AR-B,annual,2016,naphtha combustion consumption by to the public,1025.670170858025,TJ,CH4,3.0,kg/TJ,3077.0105125740747,kg -e9420829-4bdb-3134-b6eb-241dbf452d50,SESCO,II.1.1,Buenos Aires,AR-B,annual,2016,naphtha combustion consumption by to the public,1025.670170858025,TJ,N2O,0.6,kg/TJ,615.4021025148149,kg -85274f9d-dc32-3905-ab33-c0f08811ab20,SESCO,II.1.1,Capital Federal,AR-C,annual,2016,naphtha combustion consumption by to the public,267.75578309788,TJ,CO2,73300.0,kg/TJ,19626498.901074603,kg -f85bff17-a307-3201-8cc5-6375cb443bda,SESCO,II.1.1,Capital Federal,AR-C,annual,2016,naphtha combustion consumption by to the public,267.75578309788,TJ,CH4,3.0,kg/TJ,803.26734929364,kg -b7fac903-77bb-3367-b124-b5763eddcad2,SESCO,II.1.1,Capital Federal,AR-C,annual,2016,naphtha combustion consumption by to the public,267.75578309788,TJ,N2O,0.6,kg/TJ,160.653469858728,kg -bb387bcf-a620-3824-a0cb-1cd9e6b48212,SESCO,II.1.1,Chubut,AR-U,annual,2016,naphtha combustion consumption by to the public,283.197536670895,TJ,CO2,73300.0,kg/TJ,20758379.437976602,kg -8225079b-f3ef-3bec-b8a8-23bbb936d491,SESCO,II.1.1,Chubut,AR-U,annual,2016,naphtha combustion consumption by to the public,283.197536670895,TJ,CH4,3.0,kg/TJ,849.5926100126849,kg -40181adc-b5af-35b8-8688-562c8075fac3,SESCO,II.1.1,Chubut,AR-U,annual,2016,naphtha combustion consumption by to the public,283.197536670895,TJ,N2O,0.6,kg/TJ,169.91852200253697,kg -1acd302f-0e5d-3c57-9e8d-f1c2b9d05700,SESCO,II.1.1,Córdoba,AR-X,annual,2016,naphtha combustion consumption by to the public,117.239968755525,TJ,CO2,73300.0,kg/TJ,8593689.709779982,kg -bcfb02a8-53c1-396b-8beb-8c5283ec6c3a,SESCO,II.1.1,Córdoba,AR-X,annual,2016,naphtha combustion consumption by to the public,117.239968755525,TJ,CH4,3.0,kg/TJ,351.719906266575,kg -989d3789-4dc3-3a1b-8915-8c6f0e7eea4f,SESCO,II.1.1,Córdoba,AR-X,annual,2016,naphtha combustion consumption by to the public,117.239968755525,TJ,N2O,0.6,kg/TJ,70.343981253315,kg -eb10f5a5-943a-36c2-8e00-c272a4ca52f0,SESCO,II.1.1,Entre Rios,AR-E,annual,2016,naphtha combustion consumption by to the public,46.33223207035499,TJ,CO2,73300.0,kg/TJ,3396152.610757021,kg -981d0e15-86a9-35d4-9134-d2960db88e09,SESCO,II.1.1,Entre Rios,AR-E,annual,2016,naphtha combustion consumption by to the public,46.33223207035499,TJ,CH4,3.0,kg/TJ,138.99669621106497,kg -504e77c0-1ea4-3d9e-97d8-fd594964d24b,SESCO,II.1.1,Entre Rios,AR-E,annual,2016,naphtha combustion consumption by to the public,46.33223207035499,TJ,N2O,0.6,kg/TJ,27.799339242212994,kg -85f00818-52d0-3b04-b16d-1e6dc1689af3,SESCO,II.1.1,La Pampa,AR-L,annual,2016,naphtha combustion consumption by to the public,130.26821976784,TJ,CO2,73300.0,kg/TJ,9548660.508982673,kg -c5168855-e47d-3b16-bec3-4b153c31dabf,SESCO,II.1.1,La Pampa,AR-L,annual,2016,naphtha combustion consumption by to the public,130.26821976784,TJ,CH4,3.0,kg/TJ,390.80465930352,kg -555bbe37-fefc-3b27-9f78-c0bf47c8d36b,SESCO,II.1.1,La Pampa,AR-L,annual,2016,naphtha combustion consumption by to the public,130.26821976784,TJ,N2O,0.6,kg/TJ,78.160931860704,kg -74f1e21e-033f-36a9-b955-4c608463a938,SESCO,II.1.1,Mendoza,AR-M,annual,2016,naphtha combustion consumption by to the public,2.0651118711299996,TJ,CO2,73300.0,kg/TJ,151372.70015382898,kg -8c3d6681-9e5e-3c6e-a2e2-ff66a92f9810,SESCO,II.1.1,Mendoza,AR-M,annual,2016,naphtha combustion consumption by to the public,2.0651118711299996,TJ,CH4,3.0,kg/TJ,6.195335613389998,kg -ee219e03-9d3e-3950-b8e1-90413a60fe8c,SESCO,II.1.1,Mendoza,AR-M,annual,2016,naphtha combustion consumption by to the public,2.0651118711299996,TJ,N2O,0.6,kg/TJ,1.2390671226779997,kg -6102fa6b-833f-3e1c-8cf7-0890263727b3,SESCO,II.1.1,Neuquén,AR-Q,annual,2016,naphtha combustion consumption by to the public,238.29184862059498,TJ,CO2,73300.0,kg/TJ,17466792.503889613,kg -a0cfbc7d-c297-3d6c-a495-f163e55dbb8f,SESCO,II.1.1,Neuquén,AR-Q,annual,2016,naphtha combustion consumption by to the public,238.29184862059498,TJ,CH4,3.0,kg/TJ,714.875545861785,kg -4c390408-99c7-3f29-8c4f-1d288b5c1960,SESCO,II.1.1,Neuquén,AR-Q,annual,2016,naphtha combustion consumption by to the public,238.29184862059498,TJ,N2O,0.6,kg/TJ,142.97510917235698,kg -375f1135-5f7a-370e-aa11-3b17c3700274,SESCO,II.1.1,Rio Negro,AR-R,annual,2016,naphtha combustion consumption by to the public,268.34276721867997,TJ,CO2,73300.0,kg/TJ,19669524.837129243,kg -d60a0a41-f1e3-39b8-aec3-ae3ebd38e0b0,SESCO,II.1.1,Rio Negro,AR-R,annual,2016,naphtha combustion consumption by to the public,268.34276721867997,TJ,CH4,3.0,kg/TJ,805.02830165604,kg -98f8b8aa-abef-32b4-8c6c-f524829ce83d,SESCO,II.1.1,Rio Negro,AR-R,annual,2016,naphtha combustion consumption by to the public,268.34276721867997,TJ,N2O,0.6,kg/TJ,161.00566033120796,kg -422e1bd6-7245-3c92-afbc-46d837cd451b,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2016,naphtha combustion consumption by to the public,174.15058907554,TJ,CO2,73300.0,kg/TJ,12765238.179237083,kg -936cfd93-fb0c-3111-a605-a4b5c1c61ebd,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2016,naphtha combustion consumption by to the public,174.15058907554,TJ,CH4,3.0,kg/TJ,522.4517672266201,kg -d48e8d8e-ebad-3624-abb4-faf997ecbb9c,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2016,naphtha combustion consumption by to the public,174.15058907554,TJ,N2O,0.6,kg/TJ,104.490353445324,kg -2e9ccd23-166a-3d13-be51-7e06e2ee2b27,SESCO,II.1.1,Santa Fe,AR-S,annual,2016,naphtha combustion consumption by to the public,190.17524947420998,TJ,CO2,73300.0,kg/TJ,13939845.786459591,kg -753996e5-01e5-3140-bfdd-977b44cf8ca6,SESCO,II.1.1,Santa Fe,AR-S,annual,2016,naphtha combustion consumption by to the public,190.17524947420998,TJ,CH4,3.0,kg/TJ,570.5257484226299,kg -01f11c88-f8f3-3afd-8289-48383365f851,SESCO,II.1.1,Santa Fe,AR-S,annual,2016,naphtha combustion consumption by to the public,190.17524947420998,TJ,N2O,0.6,kg/TJ,114.10514968452598,kg -8147c13d-9a44-3f7c-8d7f-34b6ad3fad39,SESCO,II.1.1,Buenos Aires,AR-B,annual,2016,naphtha combustion consumption by to the public,383.99154486000003,TJ,CO2,73300.0,kg/TJ,28146580.238238003,kg -632d7a7c-1f53-3632-a982-3ddc28b12bbf,SESCO,II.1.1,Buenos Aires,AR-B,annual,2016,naphtha combustion consumption by to the public,383.99154486000003,TJ,CH4,3.0,kg/TJ,1151.9746345800002,kg -0306d4fe-59b2-3567-a80c-81368c53b8ec,SESCO,II.1.1,Buenos Aires,AR-B,annual,2016,naphtha combustion consumption by to the public,383.99154486000003,TJ,N2O,0.6,kg/TJ,230.394926916,kg -3c32c38a-a22b-3088-8de6-a8a9387f4754,SESCO,II.1.1,Capital Federal,AR-C,annual,2016,naphtha combustion consumption by to the public,36.93047435,TJ,CO2,73300.0,kg/TJ,2707003.7698549996,kg -1279d7ab-96d8-3659-b052-9abf33a72b58,SESCO,II.1.1,Capital Federal,AR-C,annual,2016,naphtha combustion consumption by to the public,36.93047435,TJ,CH4,3.0,kg/TJ,110.79142304999999,kg -82853801-840f-3925-886c-3a4fdffacc36,SESCO,II.1.1,Capital Federal,AR-C,annual,2016,naphtha combustion consumption by to the public,36.93047435,TJ,N2O,0.6,kg/TJ,22.15828461,kg -624a1be1-4576-3614-b259-4421d2347140,SESCO,II.1.1,Corrientes,AR-W,annual,2016,naphtha combustion consumption by to the public,3.7814853999999998,TJ,CO2,73300.0,kg/TJ,277182.87982,kg -e6b7c982-f77f-3ef5-9ab4-f6b2379078b2,SESCO,II.1.1,Corrientes,AR-W,annual,2016,naphtha combustion consumption by to the public,3.7814853999999998,TJ,CH4,3.0,kg/TJ,11.3444562,kg -8b1dfc12-dda0-3723-8147-35a0fd1f7ca0,SESCO,II.1.1,Corrientes,AR-W,annual,2016,naphtha combustion consumption by to the public,3.7814853999999998,TJ,N2O,0.6,kg/TJ,2.26889124,kg -6756ccc6-5040-3e81-b505-bae1865f3e24,SESCO,II.1.1,Córdoba,AR-X,annual,2016,naphtha combustion consumption by to the public,120.51959919999997,TJ,CO2,73300.0,kg/TJ,8834086.621359998,kg -5659a670-f367-33ef-934b-7b9f130bb660,SESCO,II.1.1,Córdoba,AR-X,annual,2016,naphtha combustion consumption by to the public,120.51959919999997,TJ,CH4,3.0,kg/TJ,361.55879759999993,kg -bb87f36c-0686-375a-84c3-c4e9eda46464,SESCO,II.1.1,Córdoba,AR-X,annual,2016,naphtha combustion consumption by to the public,120.51959919999997,TJ,N2O,0.6,kg/TJ,72.31175951999998,kg -589e96d6-11ce-38f2-9500-fb2d5c23d67e,SESCO,II.1.1,Entre Rios,AR-E,annual,2016,naphtha combustion consumption by to the public,33.270972349999994,TJ,CO2,73300.0,kg/TJ,2438762.2732549994,kg -0aa32927-e093-3ad6-a305-3f1f53f4ea4d,SESCO,II.1.1,Entre Rios,AR-E,annual,2016,naphtha combustion consumption by to the public,33.270972349999994,TJ,CH4,3.0,kg/TJ,99.81291704999998,kg -48900a53-8778-333b-b045-6f26595b3dbf,SESCO,II.1.1,Entre Rios,AR-E,annual,2016,naphtha combustion consumption by to the public,33.270972349999994,TJ,N2O,0.6,kg/TJ,19.962583409999997,kg -95196042-7fd0-3154-996a-9ca1d589dc8c,SESCO,II.1.1,Santa Fe,AR-S,annual,2016,naphtha combustion consumption by to the public,20.5542029,TJ,CO2,73300.0,kg/TJ,1506623.07257,kg -ce1b36eb-35cb-32b4-a9d7-bc12b1217120,SESCO,II.1.1,Santa Fe,AR-S,annual,2016,naphtha combustion consumption by to the public,20.5542029,TJ,CH4,3.0,kg/TJ,61.6626087,kg -966164d9-77f9-3b50-afc4-3e643f07162f,SESCO,II.1.1,Santa Fe,AR-S,annual,2016,naphtha combustion consumption by to the public,20.5542029,TJ,N2O,0.6,kg/TJ,12.332521739999999,kg -ba00e66f-f8e1-34b7-85d6-85306fe7d059,SESCO,II.1.1,Buenos Aires,AR-B,annual,2016,naphtha combustion consumption by to the public,48.49145108499999,TJ,CO2,73300.0,kg/TJ,3554423.364530499,kg -6e6d44e5-1a15-3dda-88ef-8004affd361a,SESCO,II.1.1,Buenos Aires,AR-B,annual,2016,naphtha combustion consumption by to the public,48.49145108499999,TJ,CH4,3.0,kg/TJ,145.47435325499995,kg -9f271321-3e88-36ce-b82a-af58111b4e84,SESCO,II.1.1,Buenos Aires,AR-B,annual,2016,naphtha combustion consumption by to the public,48.49145108499999,TJ,N2O,0.6,kg/TJ,29.09487065099999,kg -78517e23-12da-3bc1-938e-94b2d6539b86,SESCO,II.1.1,Capital Federal,AR-C,annual,2016,naphtha combustion consumption by to the public,2.9885933,TJ,CO2,73300.0,kg/TJ,219063.88888999997,kg -dcdd8d6a-18db-3bfc-ae6c-90221cb98a80,SESCO,II.1.1,Capital Federal,AR-C,annual,2016,naphtha combustion consumption by to the public,2.9885933,TJ,CH4,3.0,kg/TJ,8.9657799,kg -869dfcc2-c329-30d6-a3e4-0931af0ec873,SESCO,II.1.1,Capital Federal,AR-C,annual,2016,naphtha combustion consumption by to the public,2.9885933,TJ,N2O,0.6,kg/TJ,1.7931559799999999,kg -a689ad80-3674-3b52-b9de-329cbb1294c7,SESCO,II.1.1,Córdoba,AR-X,annual,2016,naphtha combustion consumption by to the public,7.1360288999999995,TJ,CO2,73300.0,kg/TJ,523070.91836999997,kg -ff0dd5d0-c379-34c0-be57-98d64a98bffd,SESCO,II.1.1,Córdoba,AR-X,annual,2016,naphtha combustion consumption by to the public,7.1360288999999995,TJ,CH4,3.0,kg/TJ,21.4080867,kg -a504d4e7-c5e0-37b3-ba56-2bc74f6c0fa6,SESCO,II.1.1,Córdoba,AR-X,annual,2016,naphtha combustion consumption by to the public,7.1360288999999995,TJ,N2O,0.6,kg/TJ,4.2816173399999995,kg -fa6f6a4f-fe97-32f1-b96d-930bf52acd0b,SESCO,II.1.1,Entre Rios,AR-E,annual,2016,naphtha combustion consumption by to the public,2.833064465,TJ,CO2,73300.0,kg/TJ,207663.6252845,kg -6dc7574b-91be-3997-929a-586b5e2f2fdf,SESCO,II.1.1,Entre Rios,AR-E,annual,2016,naphtha combustion consumption by to the public,2.833064465,TJ,CH4,3.0,kg/TJ,8.499193395,kg -8a643e85-ebff-3074-89ba-4192d44ed55e,SESCO,II.1.1,Entre Rios,AR-E,annual,2016,naphtha combustion consumption by to the public,2.833064465,TJ,N2O,0.6,kg/TJ,1.699838679,kg -b3de75f4-cc86-3261-9cff-52c03ca828af,SESCO,II.1.1,Santa Fe,AR-S,annual,2016,naphtha combustion consumption by to the public,2.0127261,TJ,CO2,73300.0,kg/TJ,147532.82313,kg -37dc1568-74ff-3bce-bec2-425f17853cac,SESCO,II.1.1,Santa Fe,AR-S,annual,2016,naphtha combustion consumption by to the public,2.0127261,TJ,CH4,3.0,kg/TJ,6.0381783,kg -5ec9ef8f-5edd-3bc2-9c62-62d94279b8df,SESCO,II.1.1,Santa Fe,AR-S,annual,2016,naphtha combustion consumption by to the public,2.0127261,TJ,N2O,0.6,kg/TJ,1.20763566,kg -e109ac60-080a-30f3-9b5f-c4ec64f03714,SESCO,II.1.1,Catamarca,AR-K,annual,2016,naphtha combustion consumption by to the public,265.700582378,TJ,CO2,73300.0,kg/TJ,19475852.688307397,kg -2e76dd3d-7873-375a-a929-561e33523747,SESCO,II.1.1,Catamarca,AR-K,annual,2016,naphtha combustion consumption by to the public,265.700582378,TJ,CH4,3.0,kg/TJ,797.1017471339999,kg -e5407c91-5576-378d-99f7-c8a8ba00302c,SESCO,II.1.1,Catamarca,AR-K,annual,2016,naphtha combustion consumption by to the public,265.700582378,TJ,N2O,0.6,kg/TJ,159.4203494268,kg -80e6cf73-069d-360c-a25d-e5c6ceb8f56f,SESCO,II.1.1,Chaco,AR-H,annual,2016,naphtha combustion consumption by to the public,92.6491369265,TJ,CO2,73300.0,kg/TJ,6791181.73671245,kg -f795ac9f-351c-3439-970f-aa817c5ad4dc,SESCO,II.1.1,Chaco,AR-H,annual,2016,naphtha combustion consumption by to the public,92.6491369265,TJ,CH4,3.0,kg/TJ,277.94741077950005,kg -414d89b5-52d4-3172-b3c6-0e32afa34c8b,SESCO,II.1.1,Chaco,AR-H,annual,2016,naphtha combustion consumption by to the public,92.6491369265,TJ,N2O,0.6,kg/TJ,55.5894821559,kg -0c5be58b-5cd2-3081-aca5-4478f02eb063,SESCO,II.1.1,Jujuy,AR-Y,annual,2016,naphtha combustion consumption by to the public,534.8392668849999,TJ,CO2,73300.0,kg/TJ,39203718.262670495,kg -0f26bbaa-eb09-33b8-9893-5b891acbacd4,SESCO,II.1.1,Jujuy,AR-Y,annual,2016,naphtha combustion consumption by to the public,534.8392668849999,TJ,CH4,3.0,kg/TJ,1604.5178006549997,kg -f2ba2740-51ad-3d84-b8fa-684fe1bcf1b5,SESCO,II.1.1,Jujuy,AR-Y,annual,2016,naphtha combustion consumption by to the public,534.8392668849999,TJ,N2O,0.6,kg/TJ,320.90356013099995,kg -c283312c-97de-3ca7-9841-dcf688222180,SESCO,II.1.1,La Rioja,AR-F,annual,2016,naphtha combustion consumption by to the public,451.165973489,TJ,CO2,73300.0,kg/TJ,33070465.8567437,kg -1edcb609-1f71-3240-9202-598b104303e8,SESCO,II.1.1,La Rioja,AR-F,annual,2016,naphtha combustion consumption by to the public,451.165973489,TJ,CH4,3.0,kg/TJ,1353.497920467,kg -315a618f-5fbf-38d2-bd5e-7b760cb912cd,SESCO,II.1.1,La Rioja,AR-F,annual,2016,naphtha combustion consumption by to the public,451.165973489,TJ,N2O,0.6,kg/TJ,270.6995840934,kg -92b2c62e-811d-313e-8281-93f5912b4107,SESCO,II.1.1,Salta,AR-A,annual,2016,naphtha combustion consumption by to the public,1059.3602629225,TJ,CO2,73300.0,kg/TJ,77651107.27221924,kg -be5aa2da-62e6-33a1-b3e0-479139ceeadc,SESCO,II.1.1,Salta,AR-A,annual,2016,naphtha combustion consumption by to the public,1059.3602629225,TJ,CH4,3.0,kg/TJ,3178.0807887675,kg -bc11236f-1703-372a-8190-09586ad9aa9b,SESCO,II.1.1,Salta,AR-A,annual,2016,naphtha combustion consumption by to the public,1059.3602629225,TJ,N2O,0.6,kg/TJ,635.6161577534999,kg -26905620-3400-3936-97f2-9d2b72331c6c,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2016,naphtha combustion consumption by to the public,511.2028484254999,TJ,CO2,73300.0,kg/TJ,37471168.789589144,kg -54b6cbe4-101d-34c0-b2fb-02eefe77641f,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2016,naphtha combustion consumption by to the public,511.2028484254999,TJ,CH4,3.0,kg/TJ,1533.6085452764996,kg -14ab1b4d-43ab-3adc-be4d-e497f979043a,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2016,naphtha combustion consumption by to the public,511.2028484254999,TJ,N2O,0.6,kg/TJ,306.7217090552999,kg -0f0abb7b-09e4-357f-9c9d-1cc7f1f5554b,SESCO,II.1.1,Tucuman,AR-T,annual,2016,naphtha combustion consumption by to the public,1952.5885887584998,TJ,CO2,73300.0,kg/TJ,143124743.55599803,kg -554216a5-e51e-3e3b-b114-7fb0f6d12b9f,SESCO,II.1.1,Tucuman,AR-T,annual,2016,naphtha combustion consumption by to the public,1952.5885887584998,TJ,CH4,3.0,kg/TJ,5857.765766275499,kg -56242675-1d5c-32e9-993f-3817011fd1b2,SESCO,II.1.1,Tucuman,AR-T,annual,2016,naphtha combustion consumption by to the public,1952.5885887584998,TJ,N2O,0.6,kg/TJ,1171.5531532551,kg -3b63e711-b3b6-3beb-b129-1aadf2eee120,SESCO,II.1.1,Catamarca,AR-K,annual,2016,naphtha combustion consumption by to the public,21.939934324,TJ,CO2,73300.0,kg/TJ,1608197.1859492,kg -fcba3fb4-0539-37d5-8d10-ce74b4a894c0,SESCO,II.1.1,Catamarca,AR-K,annual,2016,naphtha combustion consumption by to the public,21.939934324,TJ,CH4,3.0,kg/TJ,65.81980297199999,kg -ae5ea7f3-a5e2-3541-81b9-b3d83a2d1b40,SESCO,II.1.1,Catamarca,AR-K,annual,2016,naphtha combustion consumption by to the public,21.939934324,TJ,N2O,0.6,kg/TJ,13.163960594399999,kg -dc71eb2d-c4d8-3d14-bec7-be1dd3073698,SESCO,II.1.1,Chaco,AR-H,annual,2016,naphtha combustion consumption by to the public,1.4952115255,TJ,CO2,73300.0,kg/TJ,109599.00481915,kg -30d92d82-6e71-3fe3-8025-c9dfe1be08b4,SESCO,II.1.1,Chaco,AR-H,annual,2016,naphtha combustion consumption by to the public,1.4952115255,TJ,CH4,3.0,kg/TJ,4.4856345765,kg -3000353d-1cf0-3f58-9eab-2529dfb5a852,SESCO,II.1.1,Chaco,AR-H,annual,2016,naphtha combustion consumption by to the public,1.4952115255,TJ,N2O,0.6,kg/TJ,0.8971269153,kg -afacb7c6-cc86-396d-ae88-c6f8b36dbd9f,SESCO,II.1.1,Jujuy,AR-Y,annual,2016,naphtha combustion consumption by to the public,25.478977716499998,TJ,CO2,73300.0,kg/TJ,1867609.0666194498,kg -7fdc686c-e611-3dbf-b9ce-7cc520fd5a16,SESCO,II.1.1,Jujuy,AR-Y,annual,2016,naphtha combustion consumption by to the public,25.478977716499998,TJ,CH4,3.0,kg/TJ,76.43693314949999,kg -4e9054a6-896f-3ef4-816d-d48a2d225dbb,SESCO,II.1.1,Jujuy,AR-Y,annual,2016,naphtha combustion consumption by to the public,25.478977716499998,TJ,N2O,0.6,kg/TJ,15.287386629899999,kg -f393b90e-6d7c-3d73-9366-f8859a96ab04,SESCO,II.1.1,La Rioja,AR-F,annual,2016,naphtha combustion consumption by to the public,29.962782542,TJ,CO2,73300.0,kg/TJ,2196271.9603286,kg -3cc2029e-d603-36d3-9b56-4ec9cb45cd03,SESCO,II.1.1,La Rioja,AR-F,annual,2016,naphtha combustion consumption by to the public,29.962782542,TJ,CH4,3.0,kg/TJ,89.888347626,kg -bc81c90e-e049-3d2a-abb2-b1dd5b2d9639,SESCO,II.1.1,La Rioja,AR-F,annual,2016,naphtha combustion consumption by to the public,29.962782542,TJ,N2O,0.6,kg/TJ,17.9776695252,kg -6b9ad408-47bd-3540-a498-03a6d1fffb05,SESCO,II.1.1,Salta,AR-A,annual,2016,naphtha combustion consumption by to the public,59.469042209499996,TJ,CO2,73300.0,kg/TJ,4359080.79395635,kg -078bbf45-44ca-3c29-a03f-ff5919cbbc20,SESCO,II.1.1,Salta,AR-A,annual,2016,naphtha combustion consumption by to the public,59.469042209499996,TJ,CH4,3.0,kg/TJ,178.40712662849998,kg -c2b1098c-7d20-32c1-9c83-1e0e204f8ece,SESCO,II.1.1,Salta,AR-A,annual,2016,naphtha combustion consumption by to the public,59.469042209499996,TJ,N2O,0.6,kg/TJ,35.6814253257,kg -a8c183da-cf76-3d08-ac51-44a74f576c43,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2016,naphtha combustion consumption by to the public,39.912053604499995,TJ,CO2,73300.0,kg/TJ,2925553.5292098494,kg -93a735dd-6237-3e90-bede-d7c672484a36,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2016,naphtha combustion consumption by to the public,39.912053604499995,TJ,CH4,3.0,kg/TJ,119.73616081349999,kg -7a3753b7-d0a2-3470-9c67-1b05dfd49644,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2016,naphtha combustion consumption by to the public,39.912053604499995,TJ,N2O,0.6,kg/TJ,23.947232162699997,kg -ec9c3a72-9d00-3125-b242-21d12f34e682,SESCO,II.1.1,Tucuman,AR-T,annual,2016,naphtha combustion consumption by to the public,125.5938036815,TJ,CO2,73300.0,kg/TJ,9206025.80985395,kg -c82a800f-aa7a-3ccc-936c-04125efa3113,SESCO,II.1.1,Tucuman,AR-T,annual,2016,naphtha combustion consumption by to the public,125.5938036815,TJ,CH4,3.0,kg/TJ,376.78141104450003,kg -622b3bf8-ec6f-3f68-b8b0-2d77235cf028,SESCO,II.1.1,Tucuman,AR-T,annual,2016,naphtha combustion consumption by to the public,125.5938036815,TJ,N2O,0.6,kg/TJ,75.3562822089,kg -dda740c9-1b54-399b-b939-eb0fb56b185b,SESCO,II.1.1,Buenos Aires,AR-B,annual,2016,naphtha combustion consumption by to the public,46.84162559999999,TJ,CO2,73300.0,kg/TJ,3433491.1564799994,kg -641ba089-8987-3da8-bf68-1ec87e65128b,SESCO,II.1.1,Buenos Aires,AR-B,annual,2016,naphtha combustion consumption by to the public,46.84162559999999,TJ,CH4,3.0,kg/TJ,140.5248768,kg -3538125a-5b34-3753-86ac-b792aba5b615,SESCO,II.1.1,Buenos Aires,AR-B,annual,2016,naphtha combustion consumption by to the public,46.84162559999999,TJ,N2O,0.6,kg/TJ,28.104975359999994,kg -6d103023-c6d6-37f1-b298-373ae9613b9f,SESCO,II.1.1,Entre Rios,AR-E,annual,2016,naphtha combustion consumption by to the public,23.634283749999998,TJ,CO2,73300.0,kg/TJ,1732392.9988749998,kg -36b901e2-eb22-3db7-8cc2-468a0c6d8fb0,SESCO,II.1.1,Entre Rios,AR-E,annual,2016,naphtha combustion consumption by to the public,23.634283749999998,TJ,CH4,3.0,kg/TJ,70.90285125,kg -78ce7a66-4c43-3489-a56b-9694934b2f67,SESCO,II.1.1,Entre Rios,AR-E,annual,2016,naphtha combustion consumption by to the public,23.634283749999998,TJ,N2O,0.6,kg/TJ,14.180570249999999,kg -4781c67a-f53a-315d-a1f1-879888aca2dc,SESCO,II.1.1,Buenos Aires,AR-B,annual,2016,naphtha combustion consumption by to the public,14119.97499605,TJ,CO2,73300.0,kg/TJ,1034994167.210465,kg -a7c86875-afef-32bd-bf06-ba3cb0f01b80,SESCO,II.1.1,Buenos Aires,AR-B,annual,2016,naphtha combustion consumption by to the public,14119.97499605,TJ,CH4,3.0,kg/TJ,42359.92498815,kg -d2fd5842-032e-3d0d-af03-3ac8fda2a9e2,SESCO,II.1.1,Buenos Aires,AR-B,annual,2016,naphtha combustion consumption by to the public,14119.97499605,TJ,N2O,0.6,kg/TJ,8471.98499763,kg -5becb604-f42f-3fe7-bc2a-9370fe700de1,SESCO,II.1.1,Capital Federal,AR-C,annual,2016,naphtha combustion consumption by to the public,4276.738004,TJ,CO2,73300.0,kg/TJ,313484895.6932,kg -f04f6264-f862-3dae-aeaf-ebf6ad3da0dd,SESCO,II.1.1,Capital Federal,AR-C,annual,2016,naphtha combustion consumption by to the public,4276.738004,TJ,CH4,3.0,kg/TJ,12830.214012,kg -7bd832bb-1b8c-3153-898c-142a2fdfb0f5,SESCO,II.1.1,Capital Federal,AR-C,annual,2016,naphtha combustion consumption by to the public,4276.738004,TJ,N2O,0.6,kg/TJ,2566.0428024,kg -3335b9a1-a3dd-3a34-b681-329dfaaaa570,SESCO,II.1.1,Catamarca,AR-K,annual,2016,naphtha combustion consumption by to the public,56.44781834999999,TJ,CO2,73300.0,kg/TJ,4137625.085054999,kg -75df5a7c-066b-3df8-be70-885de9acba3e,SESCO,II.1.1,Catamarca,AR-K,annual,2016,naphtha combustion consumption by to the public,56.44781834999999,TJ,CH4,3.0,kg/TJ,169.34345505,kg -812ad758-f53d-32f1-9fb1-294f7cc133ea,SESCO,II.1.1,Catamarca,AR-K,annual,2016,naphtha combustion consumption by to the public,56.44781834999999,TJ,N2O,0.6,kg/TJ,33.86869100999999,kg -ffd45504-db2e-3591-ae2b-5661c4751a36,SESCO,II.1.1,Chaco,AR-H,annual,2016,naphtha combustion consumption by to the public,824.5467922999999,TJ,CO2,73300.0,kg/TJ,60439279.87558999,kg -da27b3f1-5af8-3244-b167-45246a5156e5,SESCO,II.1.1,Chaco,AR-H,annual,2016,naphtha combustion consumption by to the public,824.5467922999999,TJ,CH4,3.0,kg/TJ,2473.6403769,kg -2db3d685-7cc7-3cd3-a0af-1d8c8128900f,SESCO,II.1.1,Chaco,AR-H,annual,2016,naphtha combustion consumption by to the public,824.5467922999999,TJ,N2O,0.6,kg/TJ,494.7280753799999,kg -e9acbbc3-58f2-3019-82cc-860e9150d372,SESCO,II.1.1,Corrientes,AR-W,annual,2016,naphtha combustion consumption by to the public,835.1593481,TJ,CO2,73300.0,kg/TJ,61217180.21573,kg -253dedf1-f4dd-329e-bf25-27b69b8643bf,SESCO,II.1.1,Corrientes,AR-W,annual,2016,naphtha combustion consumption by to the public,835.1593481,TJ,CH4,3.0,kg/TJ,2505.4780443,kg -e407a7d0-4fa9-3456-b841-7511b91d3599,SESCO,II.1.1,Corrientes,AR-W,annual,2016,naphtha combustion consumption by to the public,835.1593481,TJ,N2O,0.6,kg/TJ,501.09560885999997,kg -26e58ee9-b1ba-3cc5-892b-06eac2ceec11,SESCO,II.1.1,Córdoba,AR-X,annual,2016,naphtha combustion consumption by to the public,2921.89887605,TJ,CO2,73300.0,kg/TJ,214175187.614465,kg -7a4b57fc-441a-39f2-a838-785801e54fd5,SESCO,II.1.1,Córdoba,AR-X,annual,2016,naphtha combustion consumption by to the public,2921.89887605,TJ,CH4,3.0,kg/TJ,8765.69662815,kg -1969fdad-b9c8-37e4-a58f-8d9a5325e039,SESCO,II.1.1,Córdoba,AR-X,annual,2016,naphtha combustion consumption by to the public,2921.89887605,TJ,N2O,0.6,kg/TJ,1753.13932563,kg -4c9d7539-b311-37d8-b736-791a6d1f2461,SESCO,II.1.1,Entre Rios,AR-E,annual,2016,naphtha combustion consumption by to the public,836.3791820999999,TJ,CO2,73300.0,kg/TJ,61306594.04792999,kg -6bb7c0e0-535d-3b4a-92ec-71d4068ddf9f,SESCO,II.1.1,Entre Rios,AR-E,annual,2016,naphtha combustion consumption by to the public,836.3791820999999,TJ,CH4,3.0,kg/TJ,2509.1375462999995,kg -c98175b5-f6f6-3eaf-8537-244d237fa2d4,SESCO,II.1.1,Entre Rios,AR-E,annual,2016,naphtha combustion consumption by to the public,836.3791820999999,TJ,N2O,0.6,kg/TJ,501.8275092599999,kg -4d3d9a06-f1f6-341c-bb9b-6a6a4b40edbb,SESCO,II.1.1,Formosa,AR-P,annual,2016,naphtha combustion consumption by to the public,389.98092979999996,TJ,CO2,73300.0,kg/TJ,28585602.154339995,kg -fef95a91-6c4a-3796-a709-82293973299a,SESCO,II.1.1,Formosa,AR-P,annual,2016,naphtha combustion consumption by to the public,389.98092979999996,TJ,CH4,3.0,kg/TJ,1169.9427893999998,kg -061b881f-cb86-344e-9407-9e29bf63b6e6,SESCO,II.1.1,Formosa,AR-P,annual,2016,naphtha combustion consumption by to the public,389.98092979999996,TJ,N2O,0.6,kg/TJ,233.98855787999997,kg -7df6f4f5-9e16-3eba-807e-9d4dd30efea4,SESCO,II.1.1,Jujuy,AR-Y,annual,2016,naphtha combustion consumption by to the public,174.8632039,TJ,CO2,73300.0,kg/TJ,12817472.84587,kg -b0a2a781-a9d6-300b-9ec7-1d5ace91e066,SESCO,II.1.1,Jujuy,AR-Y,annual,2016,naphtha combustion consumption by to the public,174.8632039,TJ,CH4,3.0,kg/TJ,524.5896117,kg -7a7ec6d8-30d5-3d23-8240-c2bf04f7daeb,SESCO,II.1.1,Jujuy,AR-Y,annual,2016,naphtha combustion consumption by to the public,174.8632039,TJ,N2O,0.6,kg/TJ,104.91792234,kg -69a950bd-6e07-3cc2-8af1-f1289ca37b36,SESCO,II.1.1,La Pampa,AR-L,annual,2016,naphtha combustion consumption by to the public,292.18073884999995,TJ,CO2,73300.0,kg/TJ,21416848.157704998,kg -36cd83e8-3e06-36b5-861f-cb57fdf217ce,SESCO,II.1.1,La Pampa,AR-L,annual,2016,naphtha combustion consumption by to the public,292.18073884999995,TJ,CH4,3.0,kg/TJ,876.5422165499999,kg -51e27f9e-e715-3f4a-8c62-de562a035162,SESCO,II.1.1,La Pampa,AR-L,annual,2016,naphtha combustion consumption by to the public,292.18073884999995,TJ,N2O,0.6,kg/TJ,175.30844330999997,kg -d7a4fb6f-37de-3fae-9b92-003d6adc5068,SESCO,II.1.1,La Rioja,AR-F,annual,2016,naphtha combustion consumption by to the public,273.76124545,TJ,CO2,73300.0,kg/TJ,20066699.291485,kg -cf9ec597-d03c-3f23-91b9-d8a1a06e3e70,SESCO,II.1.1,La Rioja,AR-F,annual,2016,naphtha combustion consumption by to the public,273.76124545,TJ,CH4,3.0,kg/TJ,821.28373635,kg -79d9fd9f-103f-3ff4-8098-2c4bc8eba1e1,SESCO,II.1.1,La Rioja,AR-F,annual,2016,naphtha combustion consumption by to the public,273.76124545,TJ,N2O,0.6,kg/TJ,164.25674726999998,kg -19a36811-25a5-3ecd-9b38-5d0e7d8dec6e,SESCO,II.1.1,Mendoza,AR-M,annual,2016,naphtha combustion consumption by to the public,813.3853111999999,TJ,CO2,73300.0,kg/TJ,59621143.310959995,kg -6c6c024d-6233-3503-a491-f6d5557d25a1,SESCO,II.1.1,Mendoza,AR-M,annual,2016,naphtha combustion consumption by to the public,813.3853111999999,TJ,CH4,3.0,kg/TJ,2440.1559336,kg -666cf79f-c376-3743-9615-847cd9b48420,SESCO,II.1.1,Mendoza,AR-M,annual,2016,naphtha combustion consumption by to the public,813.3853111999999,TJ,N2O,0.6,kg/TJ,488.03118671999994,kg -7f46c118-0568-3c6a-a550-b0d8a4941045,SESCO,II.1.1,Misiones,AR-N,annual,2016,naphtha combustion consumption by to the public,1076.9914385999998,TJ,CO2,73300.0,kg/TJ,78943472.44937998,kg -8c88c68d-b9dc-3beb-84c7-4dacbd5cc1ea,SESCO,II.1.1,Misiones,AR-N,annual,2016,naphtha combustion consumption by to the public,1076.9914385999998,TJ,CH4,3.0,kg/TJ,3230.974315799999,kg -8477999c-6802-3b73-b382-2e477cd7cf6f,SESCO,II.1.1,Misiones,AR-N,annual,2016,naphtha combustion consumption by to the public,1076.9914385999998,TJ,N2O,0.6,kg/TJ,646.1948631599998,kg -be1fae81-9191-35b4-a1ba-1127558a0e27,SESCO,II.1.1,Neuquén,AR-Q,annual,2016,naphtha combustion consumption by to the public,430.63189785,TJ,CO2,73300.0,kg/TJ,31565318.112405,kg -36802708-7a30-382a-96fb-054cb377b3d7,SESCO,II.1.1,Neuquén,AR-Q,annual,2016,naphtha combustion consumption by to the public,430.63189785,TJ,CH4,3.0,kg/TJ,1291.89569355,kg -b2cf69c2-9abb-38f7-8572-64c7222a9a04,SESCO,II.1.1,Neuquén,AR-Q,annual,2016,naphtha combustion consumption by to the public,430.63189785,TJ,N2O,0.6,kg/TJ,258.37913870999995,kg -4771e8a4-3d53-39fd-8893-f309a668cdf0,SESCO,II.1.1,Rio Negro,AR-R,annual,2016,naphtha combustion consumption by to the public,139.9149598,TJ,CO2,73300.0,kg/TJ,10255766.55334,kg -6d3c0375-5c79-3f9a-a7d9-49b42c9001c9,SESCO,II.1.1,Rio Negro,AR-R,annual,2016,naphtha combustion consumption by to the public,139.9149598,TJ,CH4,3.0,kg/TJ,419.74487939999995,kg -835da01d-a1f4-36ff-8ac6-49325dede797,SESCO,II.1.1,Rio Negro,AR-R,annual,2016,naphtha combustion consumption by to the public,139.9149598,TJ,N2O,0.6,kg/TJ,83.94897587999999,kg -316121be-bb57-3323-8c1d-e3afd7be84cc,SESCO,II.1.1,Salta,AR-A,annual,2016,naphtha combustion consumption by to the public,228.71887499999997,TJ,CO2,73300.0,kg/TJ,16765093.537499998,kg -d0a7a704-f9fd-37d8-a44d-7cdfa0db2234,SESCO,II.1.1,Salta,AR-A,annual,2016,naphtha combustion consumption by to the public,228.71887499999997,TJ,CH4,3.0,kg/TJ,686.1566249999998,kg -5a139d43-fab2-3bf2-bbb0-2e0f1df5a919,SESCO,II.1.1,Salta,AR-A,annual,2016,naphtha combustion consumption by to the public,228.71887499999997,TJ,N2O,0.6,kg/TJ,137.23132499999997,kg -24a230bd-cd8f-339b-9689-3295731ada41,SESCO,II.1.1,San Juan,AR-J,annual,2016,naphtha combustion consumption by to the public,166.14139079999998,TJ,CO2,73300.0,kg/TJ,12178163.94564,kg -5f921e82-971b-36af-aab2-9027703efb49,SESCO,II.1.1,San Juan,AR-J,annual,2016,naphtha combustion consumption by to the public,166.14139079999998,TJ,CH4,3.0,kg/TJ,498.4241724,kg -7a0629ee-705d-3066-9f68-e991e7bd56ed,SESCO,II.1.1,San Juan,AR-J,annual,2016,naphtha combustion consumption by to the public,166.14139079999998,TJ,N2O,0.6,kg/TJ,99.68483447999999,kg -8dad52f4-3a98-3ff1-a811-5d096469c4a4,SESCO,II.1.1,San Luis,AR-D,annual,2016,naphtha combustion consumption by to the public,30.678825099999997,TJ,CO2,73300.0,kg/TJ,2248757.87983,kg -3f38f00a-5453-320b-96b1-4db9ff15bb9b,SESCO,II.1.1,San Luis,AR-D,annual,2016,naphtha combustion consumption by to the public,30.678825099999997,TJ,CH4,3.0,kg/TJ,92.03647529999999,kg -db697a72-6d47-3a1b-aaf3-b334468fef89,SESCO,II.1.1,San Luis,AR-D,annual,2016,naphtha combustion consumption by to the public,30.678825099999997,TJ,N2O,0.6,kg/TJ,18.40729506,kg -d255460c-d9cf-3956-83b2-44131e264600,SESCO,II.1.1,Santa Fe,AR-S,annual,2016,naphtha combustion consumption by to the public,3257.0482675499998,TJ,CO2,73300.0,kg/TJ,238741638.01141497,kg -f6075be7-132e-33ff-b718-85c0ef09ef51,SESCO,II.1.1,Santa Fe,AR-S,annual,2016,naphtha combustion consumption by to the public,3257.0482675499998,TJ,CH4,3.0,kg/TJ,9771.14480265,kg -0b3bba4e-a4e5-36c4-a936-eb515a75c46b,SESCO,II.1.1,Santa Fe,AR-S,annual,2016,naphtha combustion consumption by to the public,3257.0482675499998,TJ,N2O,0.6,kg/TJ,1954.2289605299998,kg -87b4cfdb-98e1-332e-87a7-fb12cf929dd9,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2016,naphtha combustion consumption by to the public,330.78848494999994,TJ,CO2,73300.0,kg/TJ,24246795.946834996,kg -ec75ccb0-31e5-3d22-aba1-ff2913cdf469,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2016,naphtha combustion consumption by to the public,330.78848494999994,TJ,CH4,3.0,kg/TJ,992.3654548499999,kg -06ee4506-d3f9-3472-8e7c-3d94f87cd616,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2016,naphtha combustion consumption by to the public,330.78848494999994,TJ,N2O,0.6,kg/TJ,198.47309096999996,kg -264e5cde-f924-32cc-80c0-ad4aca8991f4,SESCO,II.1.1,Tucuman,AR-T,annual,2016,naphtha combustion consumption by to the public,724.2154458,TJ,CO2,73300.0,kg/TJ,53084992.17714,kg -83be0bb7-122c-3b0b-aa4d-3a3433d9800e,SESCO,II.1.1,Tucuman,AR-T,annual,2016,naphtha combustion consumption by to the public,724.2154458,TJ,CH4,3.0,kg/TJ,2172.6463374,kg -7ff71c66-bf7b-3fb7-ba96-d7e81a9eee3c,SESCO,II.1.1,Tucuman,AR-T,annual,2016,naphtha combustion consumption by to the public,724.2154458,TJ,N2O,0.6,kg/TJ,434.52926748,kg -ff57b31e-da8c-3372-911e-569b24cabbed,SESCO,II.1.1,Buenos Aires,AR-B,annual,2016,naphtha combustion consumption by to the public,7480.78448425,TJ,CO2,73300.0,kg/TJ,548341502.695525,kg -5f1aaa93-3d33-3154-a1a4-0cc840bef448,SESCO,II.1.1,Buenos Aires,AR-B,annual,2016,naphtha combustion consumption by to the public,7480.78448425,TJ,CH4,3.0,kg/TJ,22442.35345275,kg -b949cfc1-0fc7-329a-84a0-e6e299903404,SESCO,II.1.1,Buenos Aires,AR-B,annual,2016,naphtha combustion consumption by to the public,7480.78448425,TJ,N2O,0.6,kg/TJ,4488.47069055,kg -2fa04eec-b308-3327-bef5-6217301f006b,SESCO,II.1.1,Capital Federal,AR-C,annual,2016,naphtha combustion consumption by to the public,3167.7564187499997,TJ,CO2,73300.0,kg/TJ,232196545.494375,kg -a5417ab3-10a5-3c27-8b21-aea437ca00f9,SESCO,II.1.1,Capital Federal,AR-C,annual,2016,naphtha combustion consumption by to the public,3167.7564187499997,TJ,CH4,3.0,kg/TJ,9503.26925625,kg -26256e9c-ed7b-3a27-bdd8-5daf2e25fe34,SESCO,II.1.1,Capital Federal,AR-C,annual,2016,naphtha combustion consumption by to the public,3167.7564187499997,TJ,N2O,0.6,kg/TJ,1900.6538512499997,kg -d9f8281e-1372-3ae6-92f0-01654f2d34c1,SESCO,II.1.1,Catamarca,AR-K,annual,2016,naphtha combustion consumption by to the public,40.52898464999999,TJ,CO2,73300.0,kg/TJ,2970774.5748449992,kg -4274b0ad-ea8a-3660-bd46-38b365eb77d2,SESCO,II.1.1,Catamarca,AR-K,annual,2016,naphtha combustion consumption by to the public,40.52898464999999,TJ,CH4,3.0,kg/TJ,121.58695394999998,kg -7e72cc72-ea76-344c-8eee-785a5a4e0fa6,SESCO,II.1.1,Catamarca,AR-K,annual,2016,naphtha combustion consumption by to the public,40.52898464999999,TJ,N2O,0.6,kg/TJ,24.317390789999994,kg -8612f9d2-6e23-3d20-94e1-85cb5088bf30,SESCO,II.1.1,Chaco,AR-H,annual,2016,naphtha combustion consumption by to the public,333.83806995,TJ,CO2,73300.0,kg/TJ,24470330.527335,kg -c1eb64db-22ba-305a-98ec-557cac669137,SESCO,II.1.1,Chaco,AR-H,annual,2016,naphtha combustion consumption by to the public,333.83806995,TJ,CH4,3.0,kg/TJ,1001.5142098499999,kg -9e0c57bd-c052-3948-8c32-4ed502d5eab5,SESCO,II.1.1,Chaco,AR-H,annual,2016,naphtha combustion consumption by to the public,333.83806995,TJ,N2O,0.6,kg/TJ,200.30284196999997,kg -d280f3f7-6b5e-3020-9e2b-830f71cc250e,SESCO,II.1.1,Corrientes,AR-W,annual,2016,naphtha combustion consumption by to the public,337.2231092999999,TJ,CO2,73300.0,kg/TJ,24718453.911689993,kg -3d130836-2fac-3de0-b7fa-7a2fb92db6f6,SESCO,II.1.1,Corrientes,AR-W,annual,2016,naphtha combustion consumption by to the public,337.2231092999999,TJ,CH4,3.0,kg/TJ,1011.6693278999998,kg -b3e919fd-b080-339a-9d3f-59e2cac4d254,SESCO,II.1.1,Corrientes,AR-W,annual,2016,naphtha combustion consumption by to the public,337.2231092999999,TJ,N2O,0.6,kg/TJ,202.33386557999995,kg -8926ea4a-53d2-36e3-b379-9ba7695a3316,SESCO,II.1.1,Córdoba,AR-X,annual,2016,naphtha combustion consumption by to the public,1344.7754974499999,TJ,CO2,73300.0,kg/TJ,98572043.963085,kg -46594356-97d9-3a32-a0e2-2d33a4e6af03,SESCO,II.1.1,Córdoba,AR-X,annual,2016,naphtha combustion consumption by to the public,1344.7754974499999,TJ,CH4,3.0,kg/TJ,4034.3264923499996,kg -d7694fe1-fbd9-3133-bf2f-724c560b28c1,SESCO,II.1.1,Córdoba,AR-X,annual,2016,naphtha combustion consumption by to the public,1344.7754974499999,TJ,N2O,0.6,kg/TJ,806.8652984699999,kg -76d4f4b0-8273-384b-8305-f371c62f41d5,SESCO,II.1.1,Entre Rios,AR-E,annual,2016,naphtha combustion consumption by to the public,378.51449019999995,TJ,CO2,73300.0,kg/TJ,27745112.131659996,kg -5b77b32d-9248-32f5-be14-3f601efb2c27,SESCO,II.1.1,Entre Rios,AR-E,annual,2016,naphtha combustion consumption by to the public,378.51449019999995,TJ,CH4,3.0,kg/TJ,1135.5434705999999,kg -f4ac4408-1ae8-35c5-b372-47e2b9025545,SESCO,II.1.1,Entre Rios,AR-E,annual,2016,naphtha combustion consumption by to the public,378.51449019999995,TJ,N2O,0.6,kg/TJ,227.10869411999997,kg -a9cf17ce-07d3-33c1-8fe7-47ec2b73eeea,SESCO,II.1.1,Formosa,AR-P,annual,2016,naphtha combustion consumption by to the public,182.79212489999998,TJ,CO2,73300.0,kg/TJ,13398662.755169999,kg -f78b3b9e-ebc2-3d88-bcca-3eae7afa9911,SESCO,II.1.1,Formosa,AR-P,annual,2016,naphtha combustion consumption by to the public,182.79212489999998,TJ,CH4,3.0,kg/TJ,548.3763746999999,kg -5d5b4107-c7f7-3f26-a935-e1268b94e1ce,SESCO,II.1.1,Formosa,AR-P,annual,2016,naphtha combustion consumption by to the public,182.79212489999998,TJ,N2O,0.6,kg/TJ,109.67527493999998,kg -aa56fcc1-de62-3144-a374-53c63d9dbb6b,SESCO,II.1.1,Jujuy,AR-Y,annual,2016,naphtha combustion consumption by to the public,38.485762699999995,TJ,CO2,73300.0,kg/TJ,2821006.4059099997,kg -f5bdef73-9737-3da0-bf3b-04dc2040be75,SESCO,II.1.1,Jujuy,AR-Y,annual,2016,naphtha combustion consumption by to the public,38.485762699999995,TJ,CH4,3.0,kg/TJ,115.45728809999999,kg -dfe85bbd-e8c5-38fb-90f8-afd3c24c8d36,SESCO,II.1.1,Jujuy,AR-Y,annual,2016,naphtha combustion consumption by to the public,38.485762699999995,TJ,N2O,0.6,kg/TJ,23.091457619999996,kg -f9efdb3f-3fb4-30dc-9c0a-bda5ebaac37b,SESCO,II.1.1,La Pampa,AR-L,annual,2016,naphtha combustion consumption by to the public,159.52379134999998,TJ,CO2,73300.0,kg/TJ,11693093.905954998,kg -b0fe2b7a-02b6-33c1-8993-95bd3e7cc5b3,SESCO,II.1.1,La Pampa,AR-L,annual,2016,naphtha combustion consumption by to the public,159.52379134999998,TJ,CH4,3.0,kg/TJ,478.5713740499999,kg -cc20c0ce-f206-32c4-9dd6-c09c65926671,SESCO,II.1.1,La Pampa,AR-L,annual,2016,naphtha combustion consumption by to the public,159.52379134999998,TJ,N2O,0.6,kg/TJ,95.71427480999999,kg -adc0a623-d457-3153-97e4-f6fae44437cf,SESCO,II.1.1,La Rioja,AR-F,annual,2016,naphtha combustion consumption by to the public,91.27407905,TJ,CO2,73300.0,kg/TJ,6690389.994365,kg -ea7901e6-004a-3476-bcfa-b283281d658a,SESCO,II.1.1,La Rioja,AR-F,annual,2016,naphtha combustion consumption by to the public,91.27407905,TJ,CH4,3.0,kg/TJ,273.82223715,kg -2143def4-8201-3b61-bdc2-b535a560d6f1,SESCO,II.1.1,La Rioja,AR-F,annual,2016,naphtha combustion consumption by to the public,91.27407905,TJ,N2O,0.6,kg/TJ,54.76444743,kg -f6ede424-4b46-3d04-9e1e-7219360e9253,SESCO,II.1.1,Mendoza,AR-M,annual,2016,naphtha combustion consumption by to the public,433.77297039999996,TJ,CO2,73300.0,kg/TJ,31795558.730319995,kg -3b416758-b9b2-30ce-bbbb-a3a3caa20fdd,SESCO,II.1.1,Mendoza,AR-M,annual,2016,naphtha combustion consumption by to the public,433.77297039999996,TJ,CH4,3.0,kg/TJ,1301.3189112,kg -b5b64c4a-de80-3c14-9f92-de821da8bec9,SESCO,II.1.1,Mendoza,AR-M,annual,2016,naphtha combustion consumption by to the public,433.77297039999996,TJ,N2O,0.6,kg/TJ,260.26378223999995,kg -1110d2eb-7caa-357c-b3d6-5377f6b2317d,SESCO,II.1.1,Misiones,AR-N,annual,2016,naphtha combustion consumption by to the public,317.33981509999995,TJ,CO2,73300.0,kg/TJ,23261008.446829997,kg -3fac36ba-1f95-34e3-bdd5-47f32de840cd,SESCO,II.1.1,Misiones,AR-N,annual,2016,naphtha combustion consumption by to the public,317.33981509999995,TJ,CH4,3.0,kg/TJ,952.0194452999999,kg -fe126e5c-fe70-3233-95e1-eb5df1347caf,SESCO,II.1.1,Misiones,AR-N,annual,2016,naphtha combustion consumption by to the public,317.33981509999995,TJ,N2O,0.6,kg/TJ,190.40388905999995,kg -300dd58d-ec1b-3c9d-a9a4-82954e21cb38,SESCO,II.1.1,Neuquén,AR-Q,annual,2016,naphtha combustion consumption by to the public,322.98154734999997,TJ,CO2,73300.0,kg/TJ,23674547.420755,kg -b0c285bf-47ae-3e70-a852-a17e9767fec1,SESCO,II.1.1,Neuquén,AR-Q,annual,2016,naphtha combustion consumption by to the public,322.98154734999997,TJ,CH4,3.0,kg/TJ,968.9446420499999,kg -d1ce5717-e99a-38ce-9a90-a537c17ffc37,SESCO,II.1.1,Neuquén,AR-Q,annual,2016,naphtha combustion consumption by to the public,322.98154734999997,TJ,N2O,0.6,kg/TJ,193.78892840999998,kg -202a6737-d79d-38ca-844d-25c4328368b3,SESCO,II.1.1,Rio Negro,AR-R,annual,2016,naphtha combustion consumption by to the public,79.68565604999999,TJ,CO2,73300.0,kg/TJ,5840958.588465,kg -ced2fdc9-99ea-3d63-abe6-63441a76cff1,SESCO,II.1.1,Rio Negro,AR-R,annual,2016,naphtha combustion consumption by to the public,79.68565604999999,TJ,CH4,3.0,kg/TJ,239.05696815,kg -9ccaa83a-bf47-3f35-af23-213107b8dabf,SESCO,II.1.1,Rio Negro,AR-R,annual,2016,naphtha combustion consumption by to the public,79.68565604999999,TJ,N2O,0.6,kg/TJ,47.81139362999999,kg -a9670605-5de9-3ed1-83fb-929d39794e96,SESCO,II.1.1,Salta,AR-A,annual,2016,naphtha combustion consumption by to the public,85.72383434999999,TJ,CO2,73300.0,kg/TJ,6283557.057854999,kg -19c63b2a-0ccb-350d-a016-71967e34c182,SESCO,II.1.1,Salta,AR-A,annual,2016,naphtha combustion consumption by to the public,85.72383434999999,TJ,CH4,3.0,kg/TJ,257.17150304999996,kg -37a69e9b-48a5-3aa2-802f-cdb86b774d56,SESCO,II.1.1,Salta,AR-A,annual,2016,naphtha combustion consumption by to the public,85.72383434999999,TJ,N2O,0.6,kg/TJ,51.434300609999994,kg -7a4facb6-496f-39fd-a0f7-bd6eab13ad9f,SESCO,II.1.1,San Juan,AR-J,annual,2016,naphtha combustion consumption by to the public,32.020642499999994,TJ,CO2,73300.0,kg/TJ,2347113.09525,kg -18fa3761-48a8-3e7d-a411-946d8cb17557,SESCO,II.1.1,San Juan,AR-J,annual,2016,naphtha combustion consumption by to the public,32.020642499999994,TJ,CH4,3.0,kg/TJ,96.06192749999998,kg -2f086a62-6905-3490-9192-7f1240c8c361,SESCO,II.1.1,San Juan,AR-J,annual,2016,naphtha combustion consumption by to the public,32.020642499999994,TJ,N2O,0.6,kg/TJ,19.212385499999996,kg -ae85c17d-8aa9-38f0-bd55-75d51cd02a3f,SESCO,II.1.1,San Luis,AR-D,annual,2016,naphtha combustion consumption by to the public,20.0662693,TJ,CO2,73300.0,kg/TJ,1470857.5396899998,kg -59f201ec-7185-3b60-aa52-ae4d4f2bb723,SESCO,II.1.1,San Luis,AR-D,annual,2016,naphtha combustion consumption by to the public,20.0662693,TJ,CH4,3.0,kg/TJ,60.19880789999999,kg -73aea26d-adc8-3ec5-9913-f405a3a02552,SESCO,II.1.1,San Luis,AR-D,annual,2016,naphtha combustion consumption by to the public,20.0662693,TJ,N2O,0.6,kg/TJ,12.039761579999999,kg -c0a548fd-669b-3eb1-9b72-2da4a51048e4,SESCO,II.1.1,Santa Fe,AR-S,annual,2016,naphtha combustion consumption by to the public,1653.0580450999996,TJ,CO2,73300.0,kg/TJ,121169154.70582998,kg -5d590b9a-9d20-30f5-aa70-3264d5646531,SESCO,II.1.1,Santa Fe,AR-S,annual,2016,naphtha combustion consumption by to the public,1653.0580450999996,TJ,CH4,3.0,kg/TJ,4959.174135299999,kg -666c82e1-4ae1-3dca-a542-0c9094275416,SESCO,II.1.1,Santa Fe,AR-S,annual,2016,naphtha combustion consumption by to the public,1653.0580450999996,TJ,N2O,0.6,kg/TJ,991.8348270599997,kg -dfbda9f6-971e-3854-a4af-5c5e5ca776ce,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2016,naphtha combustion consumption by to the public,159.24932869999998,TJ,CO2,73300.0,kg/TJ,11672975.793709999,kg -7d4e19b8-5404-3187-b41c-7683a745bbd3,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2016,naphtha combustion consumption by to the public,159.24932869999998,TJ,CH4,3.0,kg/TJ,477.74798609999993,kg -36a57edb-cf5f-3888-8220-8a0455e922b9,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2016,naphtha combustion consumption by to the public,159.24932869999998,TJ,N2O,0.6,kg/TJ,95.54959721999998,kg -862f740a-fdea-3e0e-a7f7-e1e68bf8f6b0,SESCO,II.1.1,Tucuman,AR-T,annual,2016,naphtha combustion consumption by to the public,229.20680859999996,TJ,CO2,73300.0,kg/TJ,16800859.07038,kg -4ffbf861-b752-3b3c-9924-734071e7313d,SESCO,II.1.1,Tucuman,AR-T,annual,2016,naphtha combustion consumption by to the public,229.20680859999996,TJ,CH4,3.0,kg/TJ,687.6204257999999,kg -f84da041-febd-3f19-bc6a-78e3ea1ddc50,SESCO,II.1.1,Tucuman,AR-T,annual,2016,naphtha combustion consumption by to the public,229.20680859999996,TJ,N2O,0.6,kg/TJ,137.52408515999997,kg -9df00c57-cb2d-37aa-87bf-d59acfc59075,SESCO,II.5.1,Buenos Aires,AR-B,annual,2016,naphtha combustion consumption by agriculture machines,135.98099514999998,TJ,CO2,73300.0,kg/TJ,9967406.944494998,kg -685fab11-32e2-330b-803f-af5070e20911,SESCO,II.5.1,Buenos Aires,AR-B,annual,2016,naphtha combustion consumption by agriculture machines,135.98099514999998,TJ,CH4,3.0,kg/TJ,407.9429854499999,kg -6f33731e-b501-30b1-8cc5-fbcae251d12f,SESCO,II.5.1,Buenos Aires,AR-B,annual,2016,naphtha combustion consumption by agriculture machines,135.98099514999998,TJ,N2O,0.6,kg/TJ,81.58859709,kg -ce16b8dd-ba86-3912-a1dd-52d06da1474e,SESCO,II.5.1,Entre Rios,AR-E,annual,2016,naphtha combustion consumption by agriculture machines,0.51842945,TJ,CO2,73300.0,kg/TJ,38000.878684999996,kg -6d6f328f-18f2-3887-bf01-f2b5e12ed720,SESCO,II.5.1,Entre Rios,AR-E,annual,2016,naphtha combustion consumption by agriculture machines,0.51842945,TJ,CH4,3.0,kg/TJ,1.5552883499999999,kg -d154ee89-ea80-3090-9485-f42714c4217e,SESCO,II.5.1,Entre Rios,AR-E,annual,2016,naphtha combustion consumption by agriculture machines,0.51842945,TJ,N2O,0.6,kg/TJ,0.31105766999999995,kg -1de0aa7c-b1d2-3787-b078-a664a6a21648,SESCO,II.5.1,Jujuy,AR-Y,annual,2016,naphtha combustion consumption by agriculture machines,1.00636305,TJ,CO2,73300.0,kg/TJ,73766.411565,kg -d357671f-e8fb-30c1-9fdb-2ee56daeff87,SESCO,II.5.1,Jujuy,AR-Y,annual,2016,naphtha combustion consumption by agriculture machines,1.00636305,TJ,CH4,3.0,kg/TJ,3.01908915,kg -bdafb358-4c7e-3fc4-bdae-06ab532ec29b,SESCO,II.5.1,Jujuy,AR-Y,annual,2016,naphtha combustion consumption by agriculture machines,1.00636305,TJ,N2O,0.6,kg/TJ,0.60381783,kg -7def8125-93f3-32dd-8b7b-b0c3ae4ae293,SESCO,II.5.1,Salta,AR-A,annual,2016,naphtha combustion consumption by agriculture machines,0.64041285,TJ,CO2,73300.0,kg/TJ,46942.261905,kg -d7ca8592-a669-3a4b-8cd1-9c8608820df6,SESCO,II.5.1,Salta,AR-A,annual,2016,naphtha combustion consumption by agriculture machines,0.64041285,TJ,CH4,3.0,kg/TJ,1.92123855,kg -656238d4-dc74-3fc2-837d-649dcb1e245c,SESCO,II.5.1,Salta,AR-A,annual,2016,naphtha combustion consumption by agriculture machines,0.64041285,TJ,N2O,0.6,kg/TJ,0.38424771,kg -23841019-45bb-388a-b88c-cfee485e2202,SESCO,II.5.1,Santa Fe,AR-S,annual,2016,naphtha combustion consumption by agriculture machines,42.968652649999996,TJ,CO2,73300.0,kg/TJ,3149602.239245,kg -75ff417a-6416-3a73-8123-f80ab12b8c28,SESCO,II.5.1,Santa Fe,AR-S,annual,2016,naphtha combustion consumption by agriculture machines,42.968652649999996,TJ,CH4,3.0,kg/TJ,128.90595795,kg -1c2959bb-427c-3a13-a2c6-ff007a56c029,SESCO,II.5.1,Santa Fe,AR-S,annual,2016,naphtha combustion consumption by agriculture machines,42.968652649999996,TJ,N2O,0.6,kg/TJ,25.781191589999995,kg -489ca91b-e276-3bcf-aa01-408cf472a946,SESCO,II.5.1,Santa Fe,AR-S,annual,2016,naphtha combustion consumption by agriculture machines,0.82338795,TJ,CO2,73300.0,kg/TJ,60354.336735,kg -d5210230-88ef-3b7a-b0be-df2a18a1c83d,SESCO,II.5.1,Santa Fe,AR-S,annual,2016,naphtha combustion consumption by agriculture machines,0.82338795,TJ,CH4,3.0,kg/TJ,2.47016385,kg -0b584a0b-ce92-3982-82e7-e402b262ac38,SESCO,II.5.1,Santa Fe,AR-S,annual,2016,naphtha combustion consumption by agriculture machines,0.82338795,TJ,N2O,0.6,kg/TJ,0.49403276999999995,kg -28eafbdc-787f-3a2d-8d5e-7011cb4994c4,SESCO,II.1.1,Buenos Aires,AR-B,annual,2016,naphtha combustion consumption by to the public,34034.25297965,TJ,CO2,73300.0,kg/TJ,2494710743.408345,kg -bffb3c27-ab60-3fee-bb56-9ed6687dd1ca,SESCO,II.1.1,Buenos Aires,AR-B,annual,2016,naphtha combustion consumption by to the public,34034.25297965,TJ,CH4,3.0,kg/TJ,102102.75893895,kg -786bae65-271b-3b42-aed0-41e073bbaddc,SESCO,II.1.1,Buenos Aires,AR-B,annual,2016,naphtha combustion consumption by to the public,34034.25297965,TJ,N2O,0.6,kg/TJ,20420.551787790002,kg -0cc168d0-47d2-3eef-8dc8-d7d9eda3f0a0,SESCO,II.1.1,Capital Federal,AR-C,annual,2016,naphtha combustion consumption by to the public,7852.223937249999,TJ,CO2,73300.0,kg/TJ,575568014.6004249,kg -49aac960-89cf-3929-a2a1-77c35ad88a2b,SESCO,II.1.1,Capital Federal,AR-C,annual,2016,naphtha combustion consumption by to the public,7852.223937249999,TJ,CH4,3.0,kg/TJ,23556.67181175,kg -c907f97d-5aba-3cbc-929b-c3b1b4bcd72f,SESCO,II.1.1,Capital Federal,AR-C,annual,2016,naphtha combustion consumption by to the public,7852.223937249999,TJ,N2O,0.6,kg/TJ,4711.3343623499995,kg -42de3215-f562-3e8c-99fb-561ebb4b4511,SESCO,II.1.1,Catamarca,AR-K,annual,2016,naphtha combustion consumption by to the public,638.7355782499999,TJ,CO2,73300.0,kg/TJ,46819317.88572499,kg -a78019bc-e7f5-3319-97f9-552758296cae,SESCO,II.1.1,Catamarca,AR-K,annual,2016,naphtha combustion consumption by to the public,638.7355782499999,TJ,CH4,3.0,kg/TJ,1916.2067347499997,kg -5be94df8-44dd-38c9-bf3c-2e934e9a7981,SESCO,II.1.1,Catamarca,AR-K,annual,2016,naphtha combustion consumption by to the public,638.7355782499999,TJ,N2O,0.6,kg/TJ,383.2413469499999,kg -34022118-3195-37e0-a7c2-ca1005d1055e,SESCO,II.1.1,Chaco,AR-H,annual,2016,naphtha combustion consumption by to the public,2156.2700659499997,TJ,CO2,73300.0,kg/TJ,158054595.83413497,kg -934584fa-4843-354e-9d77-4ddba4c4c3e3,SESCO,II.1.1,Chaco,AR-H,annual,2016,naphtha combustion consumption by to the public,2156.2700659499997,TJ,CH4,3.0,kg/TJ,6468.810197849999,kg -93f5dcb4-daa5-31d9-b844-f708b0ce3594,SESCO,II.1.1,Chaco,AR-H,annual,2016,naphtha combustion consumption by to the public,2156.2700659499997,TJ,N2O,0.6,kg/TJ,1293.7620395699998,kg -ee5e350a-0360-3a24-9ed0-f11c0fc8b694,SESCO,II.1.1,Chubut,AR-U,annual,2016,naphtha combustion consumption by to the public,3318.9243471999994,TJ,CO2,73300.0,kg/TJ,243277154.64975995,kg -890e267e-81e3-3d28-9e0b-cb98de481bca,SESCO,II.1.1,Chubut,AR-U,annual,2016,naphtha combustion consumption by to the public,3318.9243471999994,TJ,CH4,3.0,kg/TJ,9956.773041599998,kg -f7c7f08f-d459-3799-bae2-9b66c4861b39,SESCO,II.1.1,Chubut,AR-U,annual,2016,naphtha combustion consumption by to the public,3318.9243471999994,TJ,N2O,0.6,kg/TJ,1991.3546083199994,kg -7ecdd849-4d5c-3c69-b7f9-334d645cd658,SESCO,II.1.1,Corrientes,AR-W,annual,2016,naphtha combustion consumption by to the public,2236.71811825,TJ,CO2,73300.0,kg/TJ,163951438.067725,kg -a33f40ac-96a4-3e12-b767-feff97df37e0,SESCO,II.1.1,Corrientes,AR-W,annual,2016,naphtha combustion consumption by to the public,2236.71811825,TJ,CH4,3.0,kg/TJ,6710.15435475,kg -a6d325b7-cd7e-320b-909c-be96dc8a31fb,SESCO,II.1.1,Corrientes,AR-W,annual,2016,naphtha combustion consumption by to the public,2236.71811825,TJ,N2O,0.6,kg/TJ,1342.0308709499998,kg -59aaa494-9eff-33c1-9a9e-fef24a751d75,SESCO,II.1.1,Córdoba,AR-X,annual,2016,naphtha combustion consumption by to the public,8603.519697849999,TJ,CO2,73300.0,kg/TJ,630637993.852405,kg -7545c3a8-730f-3184-879a-6c4412b3d386,SESCO,II.1.1,Córdoba,AR-X,annual,2016,naphtha combustion consumption by to the public,8603.519697849999,TJ,CH4,3.0,kg/TJ,25810.559093549997,kg -ce2ba04e-bab4-37a5-bf15-137ac222fa50,SESCO,II.1.1,Córdoba,AR-X,annual,2016,naphtha combustion consumption by to the public,8603.519697849999,TJ,N2O,0.6,kg/TJ,5162.111818709999,kg -642f46a2-a941-3222-b880-816b85910fac,SESCO,II.1.1,Entre Rios,AR-E,annual,2016,naphtha combustion consumption by to the public,3026.80460005,TJ,CO2,73300.0,kg/TJ,221864777.18366498,kg -50f78d6b-a4c7-350a-9e5a-565e3d609807,SESCO,II.1.1,Entre Rios,AR-E,annual,2016,naphtha combustion consumption by to the public,3026.80460005,TJ,CH4,3.0,kg/TJ,9080.41380015,kg -2189ff68-8fb9-35a9-aa39-b354c4f41111,SESCO,II.1.1,Entre Rios,AR-E,annual,2016,naphtha combustion consumption by to the public,3026.80460005,TJ,N2O,0.6,kg/TJ,1816.08276003,kg -13bf9bd8-146a-3c11-9a8a-5fafaa866589,SESCO,II.1.1,Formosa,AR-P,annual,2016,naphtha combustion consumption by to the public,683.99141965,TJ,CO2,73300.0,kg/TJ,50136571.060345,kg -359e5e26-8de2-3131-8267-28f0457bac1d,SESCO,II.1.1,Formosa,AR-P,annual,2016,naphtha combustion consumption by to the public,683.99141965,TJ,CH4,3.0,kg/TJ,2051.97425895,kg -f9911fcb-eb5a-34d4-82fd-fb7e37064c5b,SESCO,II.1.1,Formosa,AR-P,annual,2016,naphtha combustion consumption by to the public,683.99141965,TJ,N2O,0.6,kg/TJ,410.39485179,kg -6f1ee2f5-8ee3-3b71-a59b-34e792d1f721,SESCO,II.1.1,Jujuy,AR-Y,annual,2016,naphtha combustion consumption by to the public,1178.3901398499997,TJ,CO2,73300.0,kg/TJ,86375997.25100498,kg -2f90cbc8-b00d-327d-9678-f1d149e38172,SESCO,II.1.1,Jujuy,AR-Y,annual,2016,naphtha combustion consumption by to the public,1178.3901398499997,TJ,CH4,3.0,kg/TJ,3535.170419549999,kg -d47680e0-dd73-301c-bfbe-72c0572cf6fe,SESCO,II.1.1,Jujuy,AR-Y,annual,2016,naphtha combustion consumption by to the public,1178.3901398499997,TJ,N2O,0.6,kg/TJ,707.0340839099998,kg -9073b72c-4fc6-3e14-8ab6-b27ab1d74802,SESCO,II.1.1,La Pampa,AR-L,annual,2016,naphtha combustion consumption by to the public,1467.0943518,TJ,CO2,73300.0,kg/TJ,107538015.98694,kg -618b3981-ce74-3f8d-bab5-c68faf7613a1,SESCO,II.1.1,La Pampa,AR-L,annual,2016,naphtha combustion consumption by to the public,1467.0943518,TJ,CH4,3.0,kg/TJ,4401.283055399999,kg -b0376b30-9443-3612-9c24-3d9ff0875769,SESCO,II.1.1,La Pampa,AR-L,annual,2016,naphtha combustion consumption by to the public,1467.0943518,TJ,N2O,0.6,kg/TJ,880.25661108,kg -f07f4d8a-a444-3d97-88af-b71a184e9f0d,SESCO,II.1.1,La Rioja,AR-F,annual,2016,naphtha combustion consumption by to the public,931.4347465499999,TJ,CO2,73300.0,kg/TJ,68274166.922115,kg -116cc4e3-6d90-30cb-94d4-92641369dda2,SESCO,II.1.1,La Rioja,AR-F,annual,2016,naphtha combustion consumption by to the public,931.4347465499999,TJ,CH4,3.0,kg/TJ,2794.3042396499995,kg -dff08b0a-d6bf-3794-824e-1bc38e3a5289,SESCO,II.1.1,La Rioja,AR-F,annual,2016,naphtha combustion consumption by to the public,931.4347465499999,TJ,N2O,0.6,kg/TJ,558.8608479299999,kg -1ba4947f-8eda-3046-a20c-1acc20c13d60,SESCO,II.1.1,Mendoza,AR-M,annual,2016,naphtha combustion consumption by to the public,4819.594629849999,TJ,CO2,73300.0,kg/TJ,353276286.368005,kg -002703cf-dbf2-3aa6-84c0-8345a9363ed0,SESCO,II.1.1,Mendoza,AR-M,annual,2016,naphtha combustion consumption by to the public,4819.594629849999,TJ,CH4,3.0,kg/TJ,14458.783889549999,kg -39bc86e3-0cbe-3865-9e94-40b64dbd2ea7,SESCO,II.1.1,Mendoza,AR-M,annual,2016,naphtha combustion consumption by to the public,4819.594629849999,TJ,N2O,0.6,kg/TJ,2891.7567779099995,kg -59b4718e-a733-3794-8dd8-775dd41a558e,SESCO,II.1.1,Misiones,AR-N,annual,2016,naphtha combustion consumption by to the public,2990.9414804499997,TJ,CO2,73300.0,kg/TJ,219236010.51698497,kg -d68103ee-996f-365d-a86e-881bfc726351,SESCO,II.1.1,Misiones,AR-N,annual,2016,naphtha combustion consumption by to the public,2990.9414804499997,TJ,CH4,3.0,kg/TJ,8972.82444135,kg -77f47022-0041-3e4c-9a63-c83bcac65cea,SESCO,II.1.1,Misiones,AR-N,annual,2016,naphtha combustion consumption by to the public,2990.9414804499997,TJ,N2O,0.6,kg/TJ,1794.5648882699998,kg -4d0faf93-a7b6-3061-945d-2019bffdff12,SESCO,II.1.1,Neuquén,AR-Q,annual,2016,naphtha combustion consumption by to the public,2933.8227534,TJ,CO2,73300.0,kg/TJ,215049207.82421997,kg -862afb0c-9e93-36fc-b5a0-a6a9381de075,SESCO,II.1.1,Neuquén,AR-Q,annual,2016,naphtha combustion consumption by to the public,2933.8227534,TJ,CH4,3.0,kg/TJ,8801.4682602,kg -ba1492a4-724f-3620-8ac4-877b3ed3cd0a,SESCO,II.1.1,Neuquén,AR-Q,annual,2016,naphtha combustion consumption by to the public,2933.8227534,TJ,N2O,0.6,kg/TJ,1760.2936520399999,kg -10a6eff9-4a7b-3e81-ae93-efae16dbef3d,SESCO,II.1.1,Rio Negro,AR-R,annual,2016,naphtha combustion consumption by to the public,2884.81592245,TJ,CO2,73300.0,kg/TJ,211457007.115585,kg -b64167ac-d846-36ee-9832-7bc5dc4dd25d,SESCO,II.1.1,Rio Negro,AR-R,annual,2016,naphtha combustion consumption by to the public,2884.81592245,TJ,CH4,3.0,kg/TJ,8654.44776735,kg -0c1bc9ed-5adc-33b7-aeb0-d37b4380c7fc,SESCO,II.1.1,Rio Negro,AR-R,annual,2016,naphtha combustion consumption by to the public,2884.81592245,TJ,N2O,0.6,kg/TJ,1730.88955347,kg -4a287721-657f-3ff0-84f8-419117671912,SESCO,II.1.1,Salta,AR-A,annual,2016,naphtha combustion consumption by to the public,2789.5163912,TJ,CO2,73300.0,kg/TJ,204471551.47496,kg -43ba5e8c-c4f3-3d7c-a595-ecb625249db1,SESCO,II.1.1,Salta,AR-A,annual,2016,naphtha combustion consumption by to the public,2789.5163912,TJ,CH4,3.0,kg/TJ,8368.5491736,kg -5cbd8505-5bac-3c7d-9ebf-765eaa7fc8f0,SESCO,II.1.1,Salta,AR-A,annual,2016,naphtha combustion consumption by to the public,2789.5163912,TJ,N2O,0.6,kg/TJ,1673.70983472,kg -a6f8cc97-cecf-3e2c-9865-6aa23b7136c0,SESCO,II.1.1,San Juan,AR-J,annual,2016,naphtha combustion consumption by to the public,1580.6608971999997,TJ,CO2,73300.0,kg/TJ,115862443.76475997,kg -895d9c4d-48a1-37e3-966e-413faf0c843d,SESCO,II.1.1,San Juan,AR-J,annual,2016,naphtha combustion consumption by to the public,1580.6608971999997,TJ,CH4,3.0,kg/TJ,4741.982691599999,kg -ddbdcf18-4d93-3310-86aa-4b9e53c7cca5,SESCO,II.1.1,San Juan,AR-J,annual,2016,naphtha combustion consumption by to the public,1580.6608971999997,TJ,N2O,0.6,kg/TJ,948.3965383199998,kg -402a3f2c-2892-3d36-8edf-51bc6fc0bad3,SESCO,II.1.1,San Luis,AR-D,annual,2016,naphtha combustion consumption by to the public,1236.2712631499999,TJ,CO2,73300.0,kg/TJ,90618683.588895,kg -2af5ea10-c00e-3be6-9709-aa57bb18db95,SESCO,II.1.1,San Luis,AR-D,annual,2016,naphtha combustion consumption by to the public,1236.2712631499999,TJ,CH4,3.0,kg/TJ,3708.8137894499996,kg -2b0e964a-f420-36d2-8366-d547e71349e3,SESCO,II.1.1,San Luis,AR-D,annual,2016,naphtha combustion consumption by to the public,1236.2712631499999,TJ,N2O,0.6,kg/TJ,741.7627578899999,kg -d4e91f85-a825-3a13-a80d-08855c040f29,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2016,naphtha combustion consumption by to the public,2232.2657241499996,TJ,CO2,73300.0,kg/TJ,163625077.58019498,kg -59c74a4e-d92d-35f7-a97d-9f00abf6c357,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2016,naphtha combustion consumption by to the public,2232.2657241499996,TJ,CH4,3.0,kg/TJ,6696.7971724499985,kg -82213fab-22c0-3c14-b515-38523b160dc6,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2016,naphtha combustion consumption by to the public,2232.2657241499996,TJ,N2O,0.6,kg/TJ,1339.3594344899998,kg -4976569b-a69b-3269-85cf-fd880dd66078,SESCO,II.1.1,Santa Fe,AR-S,annual,2016,naphtha combustion consumption by to the public,6456.55086615,TJ,CO2,73300.0,kg/TJ,473265178.488795,kg -f26e20a9-239b-396e-9229-fac2f415b25a,SESCO,II.1.1,Santa Fe,AR-S,annual,2016,naphtha combustion consumption by to the public,6456.55086615,TJ,CH4,3.0,kg/TJ,19369.65259845,kg -010c1a5f-898f-3882-a890-8df259187ddd,SESCO,II.1.1,Santa Fe,AR-S,annual,2016,naphtha combustion consumption by to the public,6456.55086615,TJ,N2O,0.6,kg/TJ,3873.9305196899995,kg -31b1de45-c036-3c2d-ab03-2b3abd0cdd94,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2016,naphtha combustion consumption by to the public,1189.8260835999997,TJ,CO2,73300.0,kg/TJ,87214251.92787997,kg -69ee95fe-514c-39d1-b113-7b0d2fb36563,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2016,naphtha combustion consumption by to the public,1189.8260835999997,TJ,CH4,3.0,kg/TJ,3569.478250799999,kg -9826dc57-8259-34eb-8a9d-e052d0ab7ec1,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2016,naphtha combustion consumption by to the public,1189.8260835999997,TJ,N2O,0.6,kg/TJ,713.8956501599998,kg -bf78a4b3-89cf-3947-832f-b7bae0d0fe3b,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2016,naphtha combustion consumption by to the public,1708.6214837999999,TJ,CO2,73300.0,kg/TJ,125241954.76253998,kg -cda7d27f-81bd-3cf4-9d6f-1063db26a7c9,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2016,naphtha combustion consumption by to the public,1708.6214837999999,TJ,CH4,3.0,kg/TJ,5125.8644514,kg -ef95f4ae-6988-36b8-9b5b-6831e95ad773,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2016,naphtha combustion consumption by to the public,1708.6214837999999,TJ,N2O,0.6,kg/TJ,1025.1728902799998,kg -ac59352b-d768-3b8b-853b-43b54ea1805d,SESCO,II.1.1,Tucuman,AR-T,annual,2016,naphtha combustion consumption by to the public,2098.4194385,TJ,CO2,73300.0,kg/TJ,153814144.84205002,kg -aa03815e-b195-33b4-a92d-a7128635a448,SESCO,II.1.1,Tucuman,AR-T,annual,2016,naphtha combustion consumption by to the public,2098.4194385,TJ,CH4,3.0,kg/TJ,6295.2583155,kg -7afb2316-64c5-3c86-9643-bcb983d8a128,SESCO,II.1.1,Tucuman,AR-T,annual,2016,naphtha combustion consumption by to the public,2098.4194385,TJ,N2O,0.6,kg/TJ,1259.0516631,kg -1fdec5ce-b31a-3656-9f95-44927f0f26ba,SESCO,II.1.1,Buenos Aires,AR-B,annual,2016,naphtha combustion consumption by to the public,15276.896057499998,TJ,CO2,73300.0,kg/TJ,1119796481.0147498,kg -41c7a0fa-e71e-3c1f-ab75-bbb0e210e2c5,SESCO,II.1.1,Buenos Aires,AR-B,annual,2016,naphtha combustion consumption by to the public,15276.896057499998,TJ,CH4,3.0,kg/TJ,45830.6881725,kg -e91012f2-0512-3f26-8406-eaa99cbca4bf,SESCO,II.1.1,Buenos Aires,AR-B,annual,2016,naphtha combustion consumption by to the public,15276.896057499998,TJ,N2O,0.6,kg/TJ,9166.137634499999,kg -8d47be94-f430-3f97-9ff9-c0e630341114,SESCO,II.1.1,Capital Federal,AR-C,annual,2016,naphtha combustion consumption by to the public,3995.7187462499996,TJ,CO2,73300.0,kg/TJ,292886184.10012496,kg -9650d00e-6041-3f99-a0a4-8368b961496e,SESCO,II.1.1,Capital Federal,AR-C,annual,2016,naphtha combustion consumption by to the public,3995.7187462499996,TJ,CH4,3.0,kg/TJ,11987.156238749998,kg -67c2f7da-2ac8-3091-8626-922901c31bba,SESCO,II.1.1,Capital Federal,AR-C,annual,2016,naphtha combustion consumption by to the public,3995.7187462499996,TJ,N2O,0.6,kg/TJ,2397.43124775,kg -f231cc5c-f175-37a8-89d6-08ad74d970c7,SESCO,II.1.1,Catamarca,AR-K,annual,2016,naphtha combustion consumption by to the public,278.73206899999997,TJ,CO2,73300.0,kg/TJ,20431060.6577,kg -e5aa14b1-c914-3031-a2e9-6d8bc9f60892,SESCO,II.1.1,Catamarca,AR-K,annual,2016,naphtha combustion consumption by to the public,278.73206899999997,TJ,CH4,3.0,kg/TJ,836.196207,kg -136262f6-fea3-366c-8a0c-570d49d80ff9,SESCO,II.1.1,Catamarca,AR-K,annual,2016,naphtha combustion consumption by to the public,278.73206899999997,TJ,N2O,0.6,kg/TJ,167.23924139999997,kg -5d50d2d0-2035-3c9b-88fc-a53d115c9f8f,SESCO,II.1.1,Chaco,AR-H,annual,2016,naphtha combustion consumption by to the public,955.8009307,TJ,CO2,73300.0,kg/TJ,70060208.22031,kg -99bc058d-580d-3269-a3bd-8083c9917743,SESCO,II.1.1,Chaco,AR-H,annual,2016,naphtha combustion consumption by to the public,955.8009307,TJ,CH4,3.0,kg/TJ,2867.4027920999997,kg -cb21e7a9-2504-3452-8880-c5bf36223eb4,SESCO,II.1.1,Chaco,AR-H,annual,2016,naphtha combustion consumption by to the public,955.8009307,TJ,N2O,0.6,kg/TJ,573.48055842,kg -af9be83a-8206-3200-a507-5ab6df715936,SESCO,II.1.1,Chubut,AR-U,annual,2016,naphtha combustion consumption by to the public,1496.09590515,TJ,CO2,73300.0,kg/TJ,109663829.84749499,kg -2f48ec50-e582-3fc9-b1d0-95bae208656c,SESCO,II.1.1,Chubut,AR-U,annual,2016,naphtha combustion consumption by to the public,1496.09590515,TJ,CH4,3.0,kg/TJ,4488.28771545,kg -babb7d13-bb16-3aff-98fe-1223f37c737f,SESCO,II.1.1,Chubut,AR-U,annual,2016,naphtha combustion consumption by to the public,1496.09590515,TJ,N2O,0.6,kg/TJ,897.6575430899999,kg -d698044b-d851-3f5b-9d9f-80cc24621769,SESCO,II.1.1,Corrientes,AR-W,annual,2016,naphtha combustion consumption by to the public,1043.7509621,TJ,CO2,73300.0,kg/TJ,76506945.52193,kg -efac99c2-1466-3d9c-a0d1-9f954d341583,SESCO,II.1.1,Corrientes,AR-W,annual,2016,naphtha combustion consumption by to the public,1043.7509621,TJ,CH4,3.0,kg/TJ,3131.2528863,kg -fa37ff06-2765-3e91-b4cc-c10a24e0c756,SESCO,II.1.1,Corrientes,AR-W,annual,2016,naphtha combustion consumption by to the public,1043.7509621,TJ,N2O,0.6,kg/TJ,626.2505772599999,kg -cf9e0270-e0a3-3154-aabe-e7f25ea3f82f,SESCO,II.1.1,Córdoba,AR-X,annual,2016,naphtha combustion consumption by to the public,3367.6567155,TJ,CO2,73300.0,kg/TJ,246849237.24615,kg -29e816a7-8319-31b8-a6c6-272e242b96fa,SESCO,II.1.1,Córdoba,AR-X,annual,2016,naphtha combustion consumption by to the public,3367.6567155,TJ,CH4,3.0,kg/TJ,10102.9701465,kg -60121334-e751-3921-8bfe-676ca7aed8f1,SESCO,II.1.1,Córdoba,AR-X,annual,2016,naphtha combustion consumption by to the public,3367.6567155,TJ,N2O,0.6,kg/TJ,2020.5940292999999,kg -7a68d0d1-ee27-3a87-85f4-d092adbacc55,SESCO,II.1.1,Entre Rios,AR-E,annual,2016,naphtha combustion consumption by to the public,1350.6611964999997,TJ,CO2,73300.0,kg/TJ,99003465.70344998,kg -3dc105c1-4bb4-37ba-b3da-76e34efe094e,SESCO,II.1.1,Entre Rios,AR-E,annual,2016,naphtha combustion consumption by to the public,1350.6611964999997,TJ,CH4,3.0,kg/TJ,4051.983589499999,kg -a8f60c9e-d228-3b2c-bddc-5b21da77ebb6,SESCO,II.1.1,Entre Rios,AR-E,annual,2016,naphtha combustion consumption by to the public,1350.6611964999997,TJ,N2O,0.6,kg/TJ,810.3967178999998,kg -83456250-f677-35ac-b34b-de4f1009808f,SESCO,II.1.1,Formosa,AR-P,annual,2016,naphtha combustion consumption by to the public,251.40778739999996,TJ,CO2,73300.0,kg/TJ,18428190.816419996,kg -13ebe9fc-d75d-34fa-a097-1327b41d601c,SESCO,II.1.1,Formosa,AR-P,annual,2016,naphtha combustion consumption by to the public,251.40778739999996,TJ,CH4,3.0,kg/TJ,754.2233621999999,kg -29005b2f-3cd0-3c53-97ed-3ce2b81171bd,SESCO,II.1.1,Formosa,AR-P,annual,2016,naphtha combustion consumption by to the public,251.40778739999996,TJ,N2O,0.6,kg/TJ,150.84467243999998,kg -36d3c8a8-4ade-353f-ab18-83ec8f4aace7,SESCO,II.1.1,Jujuy,AR-Y,annual,2016,naphtha combustion consumption by to the public,365.85871245,TJ,CO2,73300.0,kg/TJ,26817443.622585,kg -cf7641f8-c40b-3240-997e-dabf0d6073b4,SESCO,II.1.1,Jujuy,AR-Y,annual,2016,naphtha combustion consumption by to the public,365.85871245,TJ,CH4,3.0,kg/TJ,1097.57613735,kg -8e09cb5a-50cf-36b7-bcee-910c9152fcca,SESCO,II.1.1,Jujuy,AR-Y,annual,2016,naphtha combustion consumption by to the public,365.85871245,TJ,N2O,0.6,kg/TJ,219.51522746999999,kg -c740068f-734f-32fd-8238-c410e23b933e,SESCO,II.1.1,La Pampa,AR-L,annual,2016,naphtha combustion consumption by to the public,1042.13468205,TJ,CO2,73300.0,kg/TJ,76388472.19426501,kg -3b2c4e95-9406-37ae-b834-a1e9a1d3688b,SESCO,II.1.1,La Pampa,AR-L,annual,2016,naphtha combustion consumption by to the public,1042.13468205,TJ,CH4,3.0,kg/TJ,3126.40404615,kg -383f511b-1a96-3c3d-a5ae-90ad9d4f5d4a,SESCO,II.1.1,La Pampa,AR-L,annual,2016,naphtha combustion consumption by to the public,1042.13468205,TJ,N2O,0.6,kg/TJ,625.28080923,kg -ebc11cc4-3a1b-3dab-b896-d7c5bfe6361f,SESCO,II.1.1,La Rioja,AR-F,annual,2016,naphtha combustion consumption by to the public,377.4776313,TJ,CO2,73300.0,kg/TJ,27669110.37429,kg -0f99094c-60cc-3c4a-900f-e73647e58777,SESCO,II.1.1,La Rioja,AR-F,annual,2016,naphtha combustion consumption by to the public,377.4776313,TJ,CH4,3.0,kg/TJ,1132.4328939,kg -47b65c5f-3318-37de-a1e5-593a6bb7368d,SESCO,II.1.1,La Rioja,AR-F,annual,2016,naphtha combustion consumption by to the public,377.4776313,TJ,N2O,0.6,kg/TJ,226.48657877999997,kg -7c27d84d-c6c4-354b-8679-4e3f12503812,SESCO,II.1.1,Mendoza,AR-M,annual,2016,naphtha combustion consumption by to the public,2634.3230105499997,TJ,CO2,73300.0,kg/TJ,193095876.673315,kg -4189016a-dc41-31f6-8a69-89d3c78deabd,SESCO,II.1.1,Mendoza,AR-M,annual,2016,naphtha combustion consumption by to the public,2634.3230105499997,TJ,CH4,3.0,kg/TJ,7902.969031649999,kg -b936c432-6022-3745-830c-96c483e49b18,SESCO,II.1.1,Mendoza,AR-M,annual,2016,naphtha combustion consumption by to the public,2634.3230105499997,TJ,N2O,0.6,kg/TJ,1580.5938063299998,kg -4c6eeac9-3a52-3eda-a14f-ee9db18a8b6b,SESCO,II.1.1,Misiones,AR-N,annual,2016,naphtha combustion consumption by to the public,893.5893966999998,TJ,CO2,73300.0,kg/TJ,65500102.77810999,kg -386d0054-f449-3bac-833c-8c93c705eb54,SESCO,II.1.1,Misiones,AR-N,annual,2016,naphtha combustion consumption by to the public,893.5893966999998,TJ,CH4,3.0,kg/TJ,2680.7681900999996,kg -027957b6-92bd-3b60-9175-6b641b1f7672,SESCO,II.1.1,Misiones,AR-N,annual,2016,naphtha combustion consumption by to the public,893.5893966999998,TJ,N2O,0.6,kg/TJ,536.1536380199999,kg -d57434ba-fd4a-3f43-961d-bbb06d6fb80f,SESCO,II.1.1,Neuquén,AR-Q,annual,2016,naphtha combustion consumption by to the public,1774.5840073499999,TJ,CO2,73300.0,kg/TJ,130077007.73875499,kg -8a7fb51f-f756-37df-9817-bba7b272d5d2,SESCO,II.1.1,Neuquén,AR-Q,annual,2016,naphtha combustion consumption by to the public,1774.5840073499999,TJ,CH4,3.0,kg/TJ,5323.752022049999,kg -25303c7a-0c36-314c-834f-f480ddd077da,SESCO,II.1.1,Neuquén,AR-Q,annual,2016,naphtha combustion consumption by to the public,1774.5840073499999,TJ,N2O,0.6,kg/TJ,1064.7504044099999,kg -da0c4f44-280d-366e-af35-bcdce69098a8,SESCO,II.1.1,Rio Negro,AR-R,annual,2016,naphtha combustion consumption by to the public,1566.3583435499997,TJ,CO2,73300.0,kg/TJ,114814066.58221498,kg -8563ca50-cb1d-38aa-b866-1b4fee32b447,SESCO,II.1.1,Rio Negro,AR-R,annual,2016,naphtha combustion consumption by to the public,1566.3583435499997,TJ,CH4,3.0,kg/TJ,4699.0750306499995,kg -11d40538-a0c7-34da-8fed-a6345e8a7ca0,SESCO,II.1.1,Rio Negro,AR-R,annual,2016,naphtha combustion consumption by to the public,1566.3583435499997,TJ,N2O,0.6,kg/TJ,939.8150061299998,kg -9c0c35e9-cb92-33a1-8070-bb9b50c068e5,SESCO,II.1.1,Salta,AR-A,annual,2016,naphtha combustion consumption by to the public,926.31144375,TJ,CO2,73300.0,kg/TJ,67898628.826875,kg -54909e19-0de9-32e4-840f-0ce99a0b69ea,SESCO,II.1.1,Salta,AR-A,annual,2016,naphtha combustion consumption by to the public,926.31144375,TJ,CH4,3.0,kg/TJ,2778.93433125,kg -ef8342bc-4804-3021-b506-15630451743b,SESCO,II.1.1,Salta,AR-A,annual,2016,naphtha combustion consumption by to the public,926.31144375,TJ,N2O,0.6,kg/TJ,555.78686625,kg -f24e0f3c-d96a-3926-ba5b-7fd78a9016d2,SESCO,II.1.1,San Juan,AR-J,annual,2016,naphtha combustion consumption by to the public,690.21257305,TJ,CO2,73300.0,kg/TJ,50592581.604564995,kg -62ed67e5-dd28-325a-87ac-79ffcdac3ae2,SESCO,II.1.1,San Juan,AR-J,annual,2016,naphtha combustion consumption by to the public,690.21257305,TJ,CH4,3.0,kg/TJ,2070.6377191499996,kg -8ea65fd3-e679-3171-b3f9-7c665807f998,SESCO,II.1.1,San Juan,AR-J,annual,2016,naphtha combustion consumption by to the public,690.21257305,TJ,N2O,0.6,kg/TJ,414.12754383,kg -9dac04a8-f662-394c-b400-5c977e5373e1,SESCO,II.1.1,San Luis,AR-D,annual,2016,naphtha combustion consumption by to the public,649.0736713999999,TJ,CO2,73300.0,kg/TJ,47577100.11361999,kg -98eaaa77-9d71-3425-87df-3d9af2d7d276,SESCO,II.1.1,San Luis,AR-D,annual,2016,naphtha combustion consumption by to the public,649.0736713999999,TJ,CH4,3.0,kg/TJ,1947.2210141999994,kg -5e6f57b0-0b54-39dd-8ce9-3a3bad5f9516,SESCO,II.1.1,San Luis,AR-D,annual,2016,naphtha combustion consumption by to the public,649.0736713999999,TJ,N2O,0.6,kg/TJ,389.4442028399999,kg -95a9c231-cabc-39ba-92d4-4c78b4ff464b,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2016,naphtha combustion consumption by to the public,862.6056130999999,TJ,CO2,73300.0,kg/TJ,63228991.44023,kg -b08e713a-fdfc-333c-9034-75c8fbc7fdf0,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2016,naphtha combustion consumption by to the public,862.6056130999999,TJ,CH4,3.0,kg/TJ,2587.8168392999996,kg -ab518857-53ab-3d89-916a-e1dca7677874,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2016,naphtha combustion consumption by to the public,862.6056130999999,TJ,N2O,0.6,kg/TJ,517.56336786,kg -dda3b41d-5312-3186-8689-c31a0ee8ed67,SESCO,II.1.1,Santa Fe,AR-S,annual,2016,naphtha combustion consumption by to the public,3162.2366699,TJ,CO2,73300.0,kg/TJ,231791947.90366998,kg -bea3f8b2-4c85-371b-87ce-2163841415a1,SESCO,II.1.1,Santa Fe,AR-S,annual,2016,naphtha combustion consumption by to the public,3162.2366699,TJ,CH4,3.0,kg/TJ,9486.7100097,kg -14cc31f5-d904-3d08-889e-8eae5f41c447,SESCO,II.1.1,Santa Fe,AR-S,annual,2016,naphtha combustion consumption by to the public,3162.2366699,TJ,N2O,0.6,kg/TJ,1897.3420019399998,kg -3ba59875-d98f-33c5-a84a-16aa5ad9f3b2,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2016,naphtha combustion consumption by to the public,594.6995708499999,TJ,CO2,73300.0,kg/TJ,43591478.54330499,kg -7578f004-d220-31ac-99da-bf57807c77d6,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2016,naphtha combustion consumption by to the public,594.6995708499999,TJ,CH4,3.0,kg/TJ,1784.0987125499996,kg -e19d9e8b-b584-3700-a238-aa72dd8f77e1,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2016,naphtha combustion consumption by to the public,594.6995708499999,TJ,N2O,0.6,kg/TJ,356.8197425099999,kg -619a3f4e-4c89-3183-8871-42cecb22dba3,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2016,naphtha combustion consumption by to the public,223.93102654999998,TJ,CO2,73300.0,kg/TJ,16414144.246114999,kg -37ed0b70-4f54-31f0-8eb4-e09054cf3e03,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2016,naphtha combustion consumption by to the public,223.93102654999998,TJ,CH4,3.0,kg/TJ,671.79307965,kg -f5a8dd8d-beb7-3b93-ad60-46d84affe393,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2016,naphtha combustion consumption by to the public,223.93102654999998,TJ,N2O,0.6,kg/TJ,134.35861592999998,kg -8e1a6588-d424-31ef-80f6-4734b2f70c2b,SESCO,II.1.1,Tucuman,AR-T,annual,2016,naphtha combustion consumption by to the public,667.40167725,TJ,CO2,73300.0,kg/TJ,48920542.942425005,kg -973d9a65-f8bc-34d8-a9be-2eaebc72bc51,SESCO,II.1.1,Tucuman,AR-T,annual,2016,naphtha combustion consumption by to the public,667.40167725,TJ,CH4,3.0,kg/TJ,2002.2050317500002,kg -d7d86704-ca6f-3da8-9022-2ee129af214b,SESCO,II.1.1,Tucuman,AR-T,annual,2016,naphtha combustion consumption by to the public,667.40167725,TJ,N2O,0.6,kg/TJ,400.44100635,kg -5a268d56-c96e-3e1b-8be7-3224f072263b,SESCO,II.1.1,Buenos Aires,AR-B,annual,2016,naphtha combustion consumption by freight transport,213.44045414999997,TJ,CO2,73300.0,kg/TJ,15645185.289194997,kg -cee97fdf-2bdb-31ee-86b1-b6c28dbe4209,SESCO,II.1.1,Buenos Aires,AR-B,annual,2016,naphtha combustion consumption by freight transport,213.44045414999997,TJ,CH4,3.0,kg/TJ,640.3213624499999,kg -b13ad856-74f9-399c-97a8-85ded090b45d,SESCO,II.1.1,Buenos Aires,AR-B,annual,2016,naphtha combustion consumption by freight transport,213.44045414999997,TJ,N2O,0.6,kg/TJ,128.06427248999998,kg -0ef5cf64-bae7-3459-907d-27e87f65bd9e,SESCO,II.1.1,Capital Federal,AR-C,annual,2016,naphtha combustion consumption by freight transport,224.02251409999997,TJ,CO2,73300.0,kg/TJ,16420850.283529997,kg -95dd76ca-b2bd-3cb9-9318-c8c434c61ef6,SESCO,II.1.1,Capital Federal,AR-C,annual,2016,naphtha combustion consumption by freight transport,224.02251409999997,TJ,CH4,3.0,kg/TJ,672.0675422999999,kg -90fd6302-b142-30f3-863d-5b285ab3ef9e,SESCO,II.1.1,Capital Federal,AR-C,annual,2016,naphtha combustion consumption by freight transport,224.02251409999997,TJ,N2O,0.6,kg/TJ,134.41350845999997,kg -ddb9d103-45a8-319c-adfb-7042928c3e5e,SESCO,II.1.1,Chaco,AR-H,annual,2016,naphtha combustion consumption by freight transport,7.501979099999999,TJ,CO2,73300.0,kg/TJ,549895.06803,kg -570eedb8-7a7d-35c0-a1f5-5f2967ab9def,SESCO,II.1.1,Chaco,AR-H,annual,2016,naphtha combustion consumption by freight transport,7.501979099999999,TJ,CH4,3.0,kg/TJ,22.505937299999996,kg -215738e0-c805-3883-9b79-6056932598bb,SESCO,II.1.1,Chaco,AR-H,annual,2016,naphtha combustion consumption by freight transport,7.501979099999999,TJ,N2O,0.6,kg/TJ,4.501187459999999,kg -4804b1aa-bf49-36ce-a128-871296574067,SESCO,II.1.1,Chubut,AR-U,annual,2016,naphtha combustion consumption by freight transport,1.4638007999999998,TJ,CO2,73300.0,kg/TJ,107296.59863999998,kg -2d43a5d8-f6c5-316f-b1a5-1d383fa45517,SESCO,II.1.1,Chubut,AR-U,annual,2016,naphtha combustion consumption by freight transport,1.4638007999999998,TJ,CH4,3.0,kg/TJ,4.3914024,kg -3b38c15e-140e-34de-87be-12a7ab79bfe5,SESCO,II.1.1,Chubut,AR-U,annual,2016,naphtha combustion consumption by freight transport,1.4638007999999998,TJ,N2O,0.6,kg/TJ,0.8782804799999998,kg -a9ebe348-81f4-3146-8f08-634c622f3c59,SESCO,II.1.1,Corrientes,AR-W,annual,2016,naphtha combustion consumption by freight transport,1.1588422999999999,TJ,CO2,73300.0,kg/TJ,84943.14059,kg -e1c19fd7-a01e-3299-9d02-4a0d4c68ca99,SESCO,II.1.1,Corrientes,AR-W,annual,2016,naphtha combustion consumption by freight transport,1.1588422999999999,TJ,CH4,3.0,kg/TJ,3.4765268999999996,kg -d98cc5fc-2b1e-369a-9599-485bb896bc81,SESCO,II.1.1,Corrientes,AR-W,annual,2016,naphtha combustion consumption by freight transport,1.1588422999999999,TJ,N2O,0.6,kg/TJ,0.6953053799999999,kg -ef67fc6b-1973-327b-a136-c211743c3144,SESCO,II.1.1,Córdoba,AR-X,annual,2016,naphtha combustion consumption by freight transport,5.76371565,TJ,CO2,73300.0,kg/TJ,422480.357145,kg -7452cb25-6d23-367b-9aed-92de415bef56,SESCO,II.1.1,Córdoba,AR-X,annual,2016,naphtha combustion consumption by freight transport,5.76371565,TJ,CH4,3.0,kg/TJ,17.291146949999998,kg -e5b1de0c-7865-341f-9856-15bcb356e3ae,SESCO,II.1.1,Córdoba,AR-X,annual,2016,naphtha combustion consumption by freight transport,5.76371565,TJ,N2O,0.6,kg/TJ,3.45822939,kg -ca357043-7b09-31bb-897b-9187a1ee4dff,SESCO,II.1.1,Entre Rios,AR-E,annual,2016,naphtha combustion consumption by freight transport,1.8602468499999998,TJ,CO2,73300.0,kg/TJ,136356.094105,kg -dd4fb945-e1e6-3aca-bd61-e7ca7f7b52ac,SESCO,II.1.1,Entre Rios,AR-E,annual,2016,naphtha combustion consumption by freight transport,1.8602468499999998,TJ,CH4,3.0,kg/TJ,5.58074055,kg -13d16e6a-4128-3f82-a457-0d55af5fca06,SESCO,II.1.1,Entre Rios,AR-E,annual,2016,naphtha combustion consumption by freight transport,1.8602468499999998,TJ,N2O,0.6,kg/TJ,1.11614811,kg -df7f0b68-d436-32ad-b969-3000fa44828e,SESCO,II.1.1,Formosa,AR-P,annual,2016,naphtha combustion consumption by freight transport,0.12198339999999999,TJ,CO2,73300.0,kg/TJ,8941.38322,kg -5f465a18-8705-3cc8-b35d-607515437e40,SESCO,II.1.1,Formosa,AR-P,annual,2016,naphtha combustion consumption by freight transport,0.12198339999999999,TJ,CH4,3.0,kg/TJ,0.3659502,kg -1997caf0-7ba5-31db-9877-55f837609a23,SESCO,II.1.1,Formosa,AR-P,annual,2016,naphtha combustion consumption by freight transport,0.12198339999999999,TJ,N2O,0.6,kg/TJ,0.07319004,kg -5a31265f-1605-3555-833a-f7bc9504b42e,SESCO,II.1.1,Mendoza,AR-M,annual,2016,naphtha combustion consumption by freight transport,9.85015955,TJ,CO2,73300.0,kg/TJ,722016.6950150001,kg -eb83ff09-0354-3dcc-9318-bdc31da3b4d2,SESCO,II.1.1,Mendoza,AR-M,annual,2016,naphtha combustion consumption by freight transport,9.85015955,TJ,CH4,3.0,kg/TJ,29.550478650000002,kg -add4d7ea-2111-3413-832a-37bdb163152e,SESCO,II.1.1,Mendoza,AR-M,annual,2016,naphtha combustion consumption by freight transport,9.85015955,TJ,N2O,0.6,kg/TJ,5.91009573,kg -93f301d9-a24a-3bc6-97c1-12d1c59e5ec6,SESCO,II.1.1,Misiones,AR-N,annual,2016,naphtha combustion consumption by freight transport,0.64041285,TJ,CO2,73300.0,kg/TJ,46942.261905,kg -ab09f78e-fbf8-3cc5-bcb0-da4c2f5cb03e,SESCO,II.1.1,Misiones,AR-N,annual,2016,naphtha combustion consumption by freight transport,0.64041285,TJ,CH4,3.0,kg/TJ,1.92123855,kg -b336b34c-a2fa-3918-b2ca-1a64164d43f3,SESCO,II.1.1,Misiones,AR-N,annual,2016,naphtha combustion consumption by freight transport,0.64041285,TJ,N2O,0.6,kg/TJ,0.38424771,kg -ce5edc45-79f5-3001-9402-5d4c8387c321,SESCO,II.1.1,Neuquén,AR-Q,annual,2016,naphtha combustion consumption by freight transport,1.6162800499999999,TJ,CO2,73300.0,kg/TJ,118473.32766499999,kg -98bf00f5-8869-3737-9643-7feb902fa489,SESCO,II.1.1,Neuquén,AR-Q,annual,2016,naphtha combustion consumption by freight transport,1.6162800499999999,TJ,CH4,3.0,kg/TJ,4.848840149999999,kg -59fb8451-8318-32dc-b0f6-8ffe6a74b128,SESCO,II.1.1,Neuquén,AR-Q,annual,2016,naphtha combustion consumption by freight transport,1.6162800499999999,TJ,N2O,0.6,kg/TJ,0.9697680299999999,kg -acf5a64e-f24a-309d-bef6-b4c6f74b1fe7,SESCO,II.1.1,Rio Negro,AR-R,annual,2016,naphtha combustion consumption by freight transport,1.5247924999999998,TJ,CO2,73300.0,kg/TJ,111767.29024999998,kg -e70e2115-5ca0-3846-8d40-4869770a8d92,SESCO,II.1.1,Rio Negro,AR-R,annual,2016,naphtha combustion consumption by freight transport,1.5247924999999998,TJ,CH4,3.0,kg/TJ,4.574377499999999,kg -ce0220e0-ed89-3114-b102-db4fd6927819,SESCO,II.1.1,Rio Negro,AR-R,annual,2016,naphtha combustion consumption by freight transport,1.5247924999999998,TJ,N2O,0.6,kg/TJ,0.9148754999999998,kg -c56d93f8-05d0-3d96-9ee0-678560f10f51,SESCO,II.1.1,Salta,AR-A,annual,2016,naphtha combustion consumption by freight transport,9.758671999999999,TJ,CO2,73300.0,kg/TJ,715310.6575999999,kg -b15b24dd-4d65-3a61-95f8-487519b46190,SESCO,II.1.1,Salta,AR-A,annual,2016,naphtha combustion consumption by freight transport,9.758671999999999,TJ,CH4,3.0,kg/TJ,29.276016,kg -60b78482-1b03-35b2-9cb6-13a338047976,SESCO,II.1.1,Salta,AR-A,annual,2016,naphtha combustion consumption by freight transport,9.758671999999999,TJ,N2O,0.6,kg/TJ,5.855203199999999,kg -c4f2c08e-f4e7-3e67-a651-1faa9c4cbb50,SESCO,II.1.1,San Juan,AR-J,annual,2016,naphtha combustion consumption by freight transport,0.21347095,TJ,CO2,73300.0,kg/TJ,15647.420634999999,kg -241442d6-e563-36b3-859e-e926b4c1faad,SESCO,II.1.1,San Juan,AR-J,annual,2016,naphtha combustion consumption by freight transport,0.21347095,TJ,CH4,3.0,kg/TJ,0.6404128499999999,kg -8f61e6bc-648f-3ac8-812c-40a08d6c0acf,SESCO,II.1.1,San Juan,AR-J,annual,2016,naphtha combustion consumption by freight transport,0.21347095,TJ,N2O,0.6,kg/TJ,0.12808256999999998,kg -56ceccec-f883-3f1b-8a7d-d06c7e27bed9,SESCO,II.1.1,San Luis,AR-D,annual,2016,naphtha combustion consumption by freight transport,0.36595019999999995,TJ,CO2,73300.0,kg/TJ,26824.149659999995,kg -0dc500f8-2094-32b1-9983-ec97fd0356a5,SESCO,II.1.1,San Luis,AR-D,annual,2016,naphtha combustion consumption by freight transport,0.36595019999999995,TJ,CH4,3.0,kg/TJ,1.0978506,kg -cdc9bfcc-0444-32f3-9e3f-11f5b2a8b34f,SESCO,II.1.1,San Luis,AR-D,annual,2016,naphtha combustion consumption by freight transport,0.36595019999999995,TJ,N2O,0.6,kg/TJ,0.21957011999999995,kg -a991aa7a-c311-337c-bad1-5e3a1716c5dc,SESCO,II.1.1,Santa Fe,AR-S,annual,2016,naphtha combustion consumption by freight transport,16.010321249999997,TJ,CO2,73300.0,kg/TJ,1173556.547625,kg -fd3cd026-b9cd-3f76-8b1a-57c98c59443f,SESCO,II.1.1,Santa Fe,AR-S,annual,2016,naphtha combustion consumption by freight transport,16.010321249999997,TJ,CH4,3.0,kg/TJ,48.03096374999999,kg -fe39d34f-1224-33fa-b7b3-dbfd0570b10b,SESCO,II.1.1,Santa Fe,AR-S,annual,2016,naphtha combustion consumption by freight transport,16.010321249999997,TJ,N2O,0.6,kg/TJ,9.606192749999998,kg -1b7e0c36-b53e-3339-abb6-f3bf221fe25e,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2016,naphtha combustion consumption by freight transport,0.12198339999999999,TJ,CO2,73300.0,kg/TJ,8941.38322,kg -90245563-8e3c-3110-9b39-12294d11a5ff,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2016,naphtha combustion consumption by freight transport,0.12198339999999999,TJ,CH4,3.0,kg/TJ,0.3659502,kg -54bbb972-c30b-3f19-a8b2-db34f48a9de3,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2016,naphtha combustion consumption by freight transport,0.12198339999999999,TJ,N2O,0.6,kg/TJ,0.07319004,kg -4705480b-7d79-3592-b3bb-d36467bb9dd1,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2016,naphtha combustion consumption by freight transport,0.21347095,TJ,CO2,73300.0,kg/TJ,15647.420634999999,kg -b8b89a22-016e-3d56-a5e4-5afa7d323bb8,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2016,naphtha combustion consumption by freight transport,0.21347095,TJ,CH4,3.0,kg/TJ,0.6404128499999999,kg -7015c760-97b1-3c09-be51-4228ca10081b,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2016,naphtha combustion consumption by freight transport,0.21347095,TJ,N2O,0.6,kg/TJ,0.12808256999999998,kg -025c76bc-9027-37d9-95cb-3bd4ca31c161,SESCO,II.1.1,Tucuman,AR-T,annual,2016,naphtha combustion consumption by freight transport,2.04322195,TJ,CO2,73300.0,kg/TJ,149768.168935,kg -e554092e-a9bb-395e-bd16-a7bddbe6fb0b,SESCO,II.1.1,Tucuman,AR-T,annual,2016,naphtha combustion consumption by freight transport,2.04322195,TJ,CH4,3.0,kg/TJ,6.12966585,kg -685377e8-fae7-3267-af5a-db8258fd2885,SESCO,II.1.1,Tucuman,AR-T,annual,2016,naphtha combustion consumption by freight transport,2.04322195,TJ,N2O,0.6,kg/TJ,1.22593317,kg -1a736b1e-fc63-3d2c-a314-b796adbde14b,SESCO,II.1.1,Buenos Aires,AR-B,annual,2016,naphtha combustion consumption by freight transport,208.62210985,TJ,CO2,73300.0,kg/TJ,15292000.652004998,kg -29ef17cd-aa38-3c36-b859-016d59183192,SESCO,II.1.1,Buenos Aires,AR-B,annual,2016,naphtha combustion consumption by freight transport,208.62210985,TJ,CH4,3.0,kg/TJ,625.8663295499999,kg -29d912bb-5f74-3dff-aa97-1799d26ccd8c,SESCO,II.1.1,Buenos Aires,AR-B,annual,2016,naphtha combustion consumption by freight transport,208.62210985,TJ,N2O,0.6,kg/TJ,125.17326590999998,kg -350eedd1-7cd4-3410-83eb-83f94854b7af,SESCO,II.1.1,Capital Federal,AR-C,annual,2016,naphtha combustion consumption by freight transport,235.51944955,TJ,CO2,73300.0,kg/TJ,17263575.652015,kg -1399ea06-0e24-3156-a5ba-c6560dbd2898,SESCO,II.1.1,Capital Federal,AR-C,annual,2016,naphtha combustion consumption by freight transport,235.51944955,TJ,CH4,3.0,kg/TJ,706.55834865,kg -62d83552-d687-3a16-a1b3-9a2ef72f46ab,SESCO,II.1.1,Capital Federal,AR-C,annual,2016,naphtha combustion consumption by freight transport,235.51944955,TJ,N2O,0.6,kg/TJ,141.31166972999998,kg -38a617f1-c077-30eb-8c2b-b1b53df66601,SESCO,II.1.1,Chaco,AR-H,annual,2016,naphtha combustion consumption by freight transport,8.2948712,TJ,CO2,73300.0,kg/TJ,608014.0589599999,kg -233d831e-d64d-37a1-aedd-4392f34fa4fe,SESCO,II.1.1,Chaco,AR-H,annual,2016,naphtha combustion consumption by freight transport,8.2948712,TJ,CH4,3.0,kg/TJ,24.884613599999998,kg -61cecfa2-a05a-3480-aad6-bd9d21cc2f63,SESCO,II.1.1,Chaco,AR-H,annual,2016,naphtha combustion consumption by freight transport,8.2948712,TJ,N2O,0.6,kg/TJ,4.976922719999999,kg -9640dd7a-cbac-32ab-9333-37ae23e35bf6,SESCO,II.1.1,Chubut,AR-U,annual,2016,naphtha combustion consumption by freight transport,0.9758671999999999,TJ,CO2,73300.0,kg/TJ,71531.06576,kg -4de3b63c-142c-3ec7-b4eb-873e43c54b0d,SESCO,II.1.1,Chubut,AR-U,annual,2016,naphtha combustion consumption by freight transport,0.9758671999999999,TJ,CH4,3.0,kg/TJ,2.9276016,kg -39b0fa46-f234-36bc-b6a8-972c7c63c64f,SESCO,II.1.1,Chubut,AR-U,annual,2016,naphtha combustion consumption by freight transport,0.9758671999999999,TJ,N2O,0.6,kg/TJ,0.58552032,kg -3c44d3e1-8c4d-3ff6-a2be-86789fc8e3b1,SESCO,II.1.1,Corrientes,AR-W,annual,2016,naphtha combustion consumption by freight transport,3.1105766999999998,TJ,CO2,73300.0,kg/TJ,228005.27211,kg -2a37ee13-77e8-3d17-828d-1709a0fdcde6,SESCO,II.1.1,Corrientes,AR-W,annual,2016,naphtha combustion consumption by freight transport,3.1105766999999998,TJ,CH4,3.0,kg/TJ,9.3317301,kg -541e3093-bd9e-33cf-a8c2-793ce6bbb82f,SESCO,II.1.1,Corrientes,AR-W,annual,2016,naphtha combustion consumption by freight transport,3.1105766999999998,TJ,N2O,0.6,kg/TJ,1.8663460199999997,kg -bb5e9904-b367-3a22-b495-80909cb4af76,SESCO,II.1.1,Córdoba,AR-X,annual,2016,naphtha combustion consumption by freight transport,7.288508149999999,TJ,CO2,73300.0,kg/TJ,534247.647395,kg -6cedc262-1429-311d-918a-8650f3f292d4,SESCO,II.1.1,Córdoba,AR-X,annual,2016,naphtha combustion consumption by freight transport,7.288508149999999,TJ,CH4,3.0,kg/TJ,21.86552445,kg -fedd2d61-acb3-35eb-9efd-4edb5b2bbf59,SESCO,II.1.1,Córdoba,AR-X,annual,2016,naphtha combustion consumption by freight transport,7.288508149999999,TJ,N2O,0.6,kg/TJ,4.37310489,kg -3c926977-9d8f-3497-a963-61215e546e5c,SESCO,II.1.1,Entre Rios,AR-E,annual,2016,naphtha combustion consumption by freight transport,3.20206425,TJ,CO2,73300.0,kg/TJ,234711.309525,kg -e891e378-8138-3c4d-864f-4292d75e5cb4,SESCO,II.1.1,Entre Rios,AR-E,annual,2016,naphtha combustion consumption by freight transport,3.20206425,TJ,CH4,3.0,kg/TJ,9.60619275,kg -f92ceb3a-3b32-323d-bb24-04fdfdd7c7d9,SESCO,II.1.1,Entre Rios,AR-E,annual,2016,naphtha combustion consumption by freight transport,3.20206425,TJ,N2O,0.6,kg/TJ,1.9212385499999998,kg -66b4a2b4-0ad6-305d-84f9-33b70cfa2cf6,SESCO,II.1.1,Formosa,AR-P,annual,2016,naphtha combustion consumption by freight transport,0.060991699999999996,TJ,CO2,73300.0,kg/TJ,4470.69161,kg -2a102aa2-04bd-39f1-9b2a-f3e764a99790,SESCO,II.1.1,Formosa,AR-P,annual,2016,naphtha combustion consumption by freight transport,0.060991699999999996,TJ,CH4,3.0,kg/TJ,0.1829751,kg -1ed581af-e87b-37f9-9143-553c08782983,SESCO,II.1.1,Formosa,AR-P,annual,2016,naphtha combustion consumption by freight transport,0.060991699999999996,TJ,N2O,0.6,kg/TJ,0.03659502,kg -24d9cd3f-a60f-378c-a1cf-fa69829bff65,SESCO,II.1.1,Jujuy,AR-Y,annual,2016,naphtha combustion consumption by freight transport,0.030495849999999998,TJ,CO2,73300.0,kg/TJ,2235.345805,kg -a03871f8-083c-3afd-b4c0-0fba3ef4d022,SESCO,II.1.1,Jujuy,AR-Y,annual,2016,naphtha combustion consumption by freight transport,0.030495849999999998,TJ,CH4,3.0,kg/TJ,0.09148755,kg -c001fb4a-7dc0-3bba-9d9f-b00c7f1ba396,SESCO,II.1.1,Jujuy,AR-Y,annual,2016,naphtha combustion consumption by freight transport,0.030495849999999998,TJ,N2O,0.6,kg/TJ,0.01829751,kg -a18ee56c-dd72-3da3-8c30-842a8fb6bd2d,SESCO,II.1.1,La Pampa,AR-L,annual,2016,naphtha combustion consumption by freight transport,0.18297509999999997,TJ,CO2,73300.0,kg/TJ,13412.074829999998,kg -915fc8e9-3ed8-3203-8e9a-75006f00939b,SESCO,II.1.1,La Pampa,AR-L,annual,2016,naphtha combustion consumption by freight transport,0.18297509999999997,TJ,CH4,3.0,kg/TJ,0.5489253,kg -3c419261-aec1-3526-8dbe-69ad41efdecf,SESCO,II.1.1,La Pampa,AR-L,annual,2016,naphtha combustion consumption by freight transport,0.18297509999999997,TJ,N2O,0.6,kg/TJ,0.10978505999999998,kg -409b7edb-8d47-3d7a-82ee-cf571f0786bc,SESCO,II.1.1,La Rioja,AR-F,annual,2016,naphtha combustion consumption by freight transport,1.0673547499999998,TJ,CO2,73300.0,kg/TJ,78237.10317499998,kg -a1cef207-18c3-3c5b-b3f8-6c1ecb9f8937,SESCO,II.1.1,La Rioja,AR-F,annual,2016,naphtha combustion consumption by freight transport,1.0673547499999998,TJ,CH4,3.0,kg/TJ,3.2020642499999994,kg -7a5d5e59-33f3-3e3a-bdf4-3dc0c35cc9b8,SESCO,II.1.1,La Rioja,AR-F,annual,2016,naphtha combustion consumption by freight transport,1.0673547499999998,TJ,N2O,0.6,kg/TJ,0.6404128499999998,kg -c8134b33-756c-39e2-a5cc-de6c350172e9,SESCO,II.1.1,Mendoza,AR-M,annual,2016,naphtha combustion consumption by freight transport,7.014045499999999,TJ,CO2,73300.0,kg/TJ,514129.53514999995,kg -7adc24dc-61c4-3302-a8eb-8cda0c1d3a74,SESCO,II.1.1,Mendoza,AR-M,annual,2016,naphtha combustion consumption by freight transport,7.014045499999999,TJ,CH4,3.0,kg/TJ,21.042136499999998,kg -7b62361a-5162-3ff5-a95c-a75493854d69,SESCO,II.1.1,Mendoza,AR-M,annual,2016,naphtha combustion consumption by freight transport,7.014045499999999,TJ,N2O,0.6,kg/TJ,4.208427299999999,kg -3266ea30-e56c-3377-90e6-0e2036366508,SESCO,II.1.1,Misiones,AR-N,annual,2016,naphtha combustion consumption by freight transport,2.0127261,TJ,CO2,73300.0,kg/TJ,147532.82313,kg -4ca518cf-bb2d-3a84-bbc0-f5681573773f,SESCO,II.1.1,Misiones,AR-N,annual,2016,naphtha combustion consumption by freight transport,2.0127261,TJ,CH4,3.0,kg/TJ,6.0381783,kg -4388bbdb-af30-3032-9342-22f0b9e5b8c0,SESCO,II.1.1,Misiones,AR-N,annual,2016,naphtha combustion consumption by freight transport,2.0127261,TJ,N2O,0.6,kg/TJ,1.20763566,kg -29a6dee5-e55b-3d19-aab1-8d512bdba795,SESCO,II.1.1,Neuquén,AR-Q,annual,2016,naphtha combustion consumption by freight transport,2.53115555,TJ,CO2,73300.0,kg/TJ,185533.70181499998,kg -933d17f6-1a9e-3a02-8cf6-ebe4e5c8383c,SESCO,II.1.1,Neuquén,AR-Q,annual,2016,naphtha combustion consumption by freight transport,2.53115555,TJ,CH4,3.0,kg/TJ,7.59346665,kg -dacf398d-5a57-3e24-8bac-41e50cad70cc,SESCO,II.1.1,Neuquén,AR-Q,annual,2016,naphtha combustion consumption by freight transport,2.53115555,TJ,N2O,0.6,kg/TJ,1.5186933299999998,kg -c9566e5e-de34-34b5-91e0-e5f24f34844d,SESCO,II.1.1,Rio Negro,AR-R,annual,2016,naphtha combustion consumption by freight transport,5.367269599999999,TJ,CO2,73300.0,kg/TJ,393420.86168,kg -ea9c8069-ec7e-3e8e-8798-7eed3505d6ad,SESCO,II.1.1,Rio Negro,AR-R,annual,2016,naphtha combustion consumption by freight transport,5.367269599999999,TJ,CH4,3.0,kg/TJ,16.101808799999997,kg -6841c748-2a5a-38e0-824c-e73986e2f860,SESCO,II.1.1,Rio Negro,AR-R,annual,2016,naphtha combustion consumption by freight transport,5.367269599999999,TJ,N2O,0.6,kg/TJ,3.2203617599999994,kg -125c26f3-657f-3291-a754-d3013433495a,SESCO,II.1.1,Salta,AR-A,annual,2016,naphtha combustion consumption by freight transport,2.6226430999999994,TJ,CO2,73300.0,kg/TJ,192239.73922999995,kg -0b8a61a7-2be8-3fcb-bdd6-2b305795b93b,SESCO,II.1.1,Salta,AR-A,annual,2016,naphtha combustion consumption by freight transport,2.6226430999999994,TJ,CH4,3.0,kg/TJ,7.867929299999998,kg -eadd0e98-dfb8-38be-892c-d46892bf4f17,SESCO,II.1.1,Salta,AR-A,annual,2016,naphtha combustion consumption by freight transport,2.6226430999999994,TJ,N2O,0.6,kg/TJ,1.5735858599999997,kg -00eb8c20-1e13-366c-81b0-ab52804887bd,SESCO,II.1.1,San Juan,AR-J,annual,2016,naphtha combustion consumption by freight transport,0.09148754999999999,TJ,CO2,73300.0,kg/TJ,6706.037414999999,kg -dc6c72c7-183c-3f0a-80bf-c31d229ffc56,SESCO,II.1.1,San Juan,AR-J,annual,2016,naphtha combustion consumption by freight transport,0.09148754999999999,TJ,CH4,3.0,kg/TJ,0.27446265,kg -c422a870-6b79-33de-93df-dbd35dca219f,SESCO,II.1.1,San Juan,AR-J,annual,2016,naphtha combustion consumption by freight transport,0.09148754999999999,TJ,N2O,0.6,kg/TJ,0.05489252999999999,kg -03909507-598d-3ec8-b8d4-665693da83c4,SESCO,II.1.1,San Luis,AR-D,annual,2016,naphtha combustion consumption by freight transport,0.51842945,TJ,CO2,73300.0,kg/TJ,38000.878684999996,kg -b1264480-4077-3d28-8ddb-e126578f3ddb,SESCO,II.1.1,San Luis,AR-D,annual,2016,naphtha combustion consumption by freight transport,0.51842945,TJ,CH4,3.0,kg/TJ,1.5552883499999999,kg -0365b0ee-e481-3d4c-ac62-13305ada27fc,SESCO,II.1.1,San Luis,AR-D,annual,2016,naphtha combustion consumption by freight transport,0.51842945,TJ,N2O,0.6,kg/TJ,0.31105766999999995,kg -989c4eab-11e5-3c38-b313-7f529f67d3d5,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2016,naphtha combustion consumption by freight transport,0.09148754999999999,TJ,CO2,73300.0,kg/TJ,6706.037414999999,kg -cef3746d-b6c0-3e74-a264-e793386731ec,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2016,naphtha combustion consumption by freight transport,0.09148754999999999,TJ,CH4,3.0,kg/TJ,0.27446265,kg -9cfc3858-25b4-34c8-a2c6-ec034352ed48,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2016,naphtha combustion consumption by freight transport,0.09148754999999999,TJ,N2O,0.6,kg/TJ,0.05489252999999999,kg -7ec2cf18-fed8-3d1a-8b51-39717324b944,SESCO,II.1.1,Santa Fe,AR-S,annual,2016,naphtha combustion consumption by freight transport,24.701638499999998,TJ,CO2,73300.0,kg/TJ,1810630.1020499999,kg -44955277-444f-3b36-b5b5-ff3e0112f593,SESCO,II.1.1,Santa Fe,AR-S,annual,2016,naphtha combustion consumption by freight transport,24.701638499999998,TJ,CH4,3.0,kg/TJ,74.10491549999999,kg -9143472b-3c27-36db-8795-cfd659f0e6d6,SESCO,II.1.1,Santa Fe,AR-S,annual,2016,naphtha combustion consumption by freight transport,24.701638499999998,TJ,N2O,0.6,kg/TJ,14.820983099999998,kg -9ea3f3ce-dae8-3a9a-a441-f2af4d07c004,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2016,naphtha combustion consumption by freight transport,0.36595019999999995,TJ,CO2,73300.0,kg/TJ,26824.149659999995,kg -c9a64556-1008-3d19-9c32-badc19ce09ec,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2016,naphtha combustion consumption by freight transport,0.36595019999999995,TJ,CH4,3.0,kg/TJ,1.0978506,kg -347eabbf-905a-3743-81ef-dc9a90f416d3,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2016,naphtha combustion consumption by freight transport,0.36595019999999995,TJ,N2O,0.6,kg/TJ,0.21957011999999995,kg -9e8a23d5-fbf9-3ca7-a035-f71c8a9ed1a6,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2016,naphtha combustion consumption by freight transport,0.060991699999999996,TJ,CO2,73300.0,kg/TJ,4470.69161,kg -fb160075-d3c8-314f-bca0-67571c571f4e,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2016,naphtha combustion consumption by freight transport,0.060991699999999996,TJ,CH4,3.0,kg/TJ,0.1829751,kg -0e9b2473-fea2-326d-a4d5-e5ba2243c1fb,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2016,naphtha combustion consumption by freight transport,0.060991699999999996,TJ,N2O,0.6,kg/TJ,0.03659502,kg -67fc95d6-6e0f-3560-9e77-6e676ff81786,SESCO,II.1.1,Tucuman,AR-T,annual,2016,naphtha combustion consumption by freight transport,1.7687592999999997,TJ,CO2,73300.0,kg/TJ,129650.05668999998,kg -fc250f48-71b7-3706-81bd-2beccd021d5d,SESCO,II.1.1,Tucuman,AR-T,annual,2016,naphtha combustion consumption by freight transport,1.7687592999999997,TJ,CH4,3.0,kg/TJ,5.3062778999999995,kg -01defdea-d6ac-315a-a195-d9b345739ae9,SESCO,II.1.1,Tucuman,AR-T,annual,2016,naphtha combustion consumption by freight transport,1.7687592999999997,TJ,N2O,0.6,kg/TJ,1.0612555799999999,kg -3b67df44-80d1-39ae-96ef-d778c03db5b8,SESCO,II.1.1,Capital Federal,AR-C,annual,2017,naphtha combustion consumption by to the public,18.061766799999997,TJ,CO2,73300.0,kg/TJ,1323927.50644,kg -fb566717-6045-38e6-bb02-31bc659e573a,SESCO,II.1.1,Capital Federal,AR-C,annual,2017,naphtha combustion consumption by to the public,18.061766799999997,TJ,CH4,3.0,kg/TJ,54.18530039999999,kg -cac53262-d7fe-30d8-ba48-95cd2d193a7e,SESCO,II.1.1,Capital Federal,AR-C,annual,2017,naphtha combustion consumption by to the public,18.061766799999997,TJ,N2O,0.6,kg/TJ,10.837060079999999,kg -cc148f4d-4640-3416-92f7-ca2c22562961,SESCO,II.1.1,Capital Federal,AR-C,annual,2017,naphtha combustion consumption by to the public,4.1008352,TJ,CO2,73300.0,kg/TJ,300591.22015999997,kg -b7cec397-7130-3791-a252-de939abcf700,SESCO,II.1.1,Capital Federal,AR-C,annual,2017,naphtha combustion consumption by to the public,4.1008352,TJ,CH4,3.0,kg/TJ,12.3025056,kg -3eedd72a-3df9-31ad-96d3-5539577cfa7f,SESCO,II.1.1,Capital Federal,AR-C,annual,2017,naphtha combustion consumption by to the public,4.1008352,TJ,N2O,0.6,kg/TJ,2.4605011199999995,kg -3a9ec4f2-3396-3100-96d0-efd573582f9f,SESCO,II.5.1,Buenos Aires,AR-B,annual,2017,naphtha combustion consumption by agriculture machines,45.109187199999994,TJ,CO2,73300.0,kg/TJ,3306503.4217599994,kg -ac2ac784-aa0a-36fd-bb1e-2c46db6bb73b,SESCO,II.5.1,Buenos Aires,AR-B,annual,2017,naphtha combustion consumption by agriculture machines,45.109187199999994,TJ,CH4,3.0,kg/TJ,135.32756159999997,kg -60348c40-f536-3209-834b-2c5db0c913e5,SESCO,II.5.1,Buenos Aires,AR-B,annual,2017,naphtha combustion consumption by agriculture machines,45.109187199999994,TJ,N2O,0.6,kg/TJ,27.065512319999996,kg -537770ea-d885-30f2-bac4-2a281eca5306,SESCO,II.5.1,Chaco,AR-H,annual,2017,naphtha combustion consumption by agriculture machines,18.0316136,TJ,CO2,73300.0,kg/TJ,1321717.27688,kg -2d945d7d-b3cc-3625-8ad9-53bedfc14ace,SESCO,II.5.1,Chaco,AR-H,annual,2017,naphtha combustion consumption by agriculture machines,18.0316136,TJ,CH4,3.0,kg/TJ,54.0948408,kg -c9476f86-b15a-35b9-a6ad-8f1d2b356a7f,SESCO,II.5.1,Chaco,AR-H,annual,2017,naphtha combustion consumption by agriculture machines,18.0316136,TJ,N2O,0.6,kg/TJ,10.818968159999999,kg -24008298-014f-32ae-9c4c-60f47a424c25,SESCO,II.5.1,Córdoba,AR-X,annual,2017,naphtha combustion consumption by agriculture machines,8.8348876,TJ,CO2,73300.0,kg/TJ,647597.26108,kg -c588277a-8eb9-3b0a-839c-873ec3e20e34,SESCO,II.5.1,Córdoba,AR-X,annual,2017,naphtha combustion consumption by agriculture machines,8.8348876,TJ,CH4,3.0,kg/TJ,26.5046628,kg -1101c00d-7e38-32a9-a2cd-aa410095c265,SESCO,II.5.1,Córdoba,AR-X,annual,2017,naphtha combustion consumption by agriculture machines,8.8348876,TJ,N2O,0.6,kg/TJ,5.30093256,kg -8b83fb3b-8610-349c-905e-0c504845a369,SESCO,II.5.1,Santa Fe,AR-S,annual,2017,naphtha combustion consumption by agriculture machines,54.5471388,TJ,CO2,73300.0,kg/TJ,3998305.27404,kg -4f626f46-005c-3827-9037-2b03a5546572,SESCO,II.5.1,Santa Fe,AR-S,annual,2017,naphtha combustion consumption by agriculture machines,54.5471388,TJ,CH4,3.0,kg/TJ,163.6414164,kg -417af5e0-1db2-3efa-8a18-8db3ad58736a,SESCO,II.5.1,Santa Fe,AR-S,annual,2017,naphtha combustion consumption by agriculture machines,54.5471388,TJ,N2O,0.6,kg/TJ,32.72828328,kg -76b92e86-7be3-3abe-ae5e-c13bf3795d40,SESCO,II.5.1,Tucuman,AR-T,annual,2017,naphtha combustion consumption by agriculture machines,38.053338399999994,TJ,CO2,73300.0,kg/TJ,2789309.7047199993,kg -209fe868-8a8d-3da1-a671-4c396b2e3dce,SESCO,II.5.1,Tucuman,AR-T,annual,2017,naphtha combustion consumption by agriculture machines,38.053338399999994,TJ,CH4,3.0,kg/TJ,114.16001519999998,kg -c6882673-8b10-35c4-a66f-b1a247437398,SESCO,II.5.1,Tucuman,AR-T,annual,2017,naphtha combustion consumption by agriculture machines,38.053338399999994,TJ,N2O,0.6,kg/TJ,22.832003039999996,kg -e4ac92cf-1f52-3e77-bc75-dfd7234f1d3c,SESCO,II.5.1,Buenos Aires,AR-B,annual,2017,naphtha combustion consumption by agriculture machines,10.101322,TJ,CO2,73300.0,kg/TJ,740426.9026,kg -e666a57b-cfbb-33d1-bf55-827557c63086,SESCO,II.5.1,Buenos Aires,AR-B,annual,2017,naphtha combustion consumption by agriculture machines,10.101322,TJ,CH4,3.0,kg/TJ,30.303966,kg -24c0c06b-0191-35ce-91a3-5b2b57fc4a01,SESCO,II.5.1,Buenos Aires,AR-B,annual,2017,naphtha combustion consumption by agriculture machines,10.101322,TJ,N2O,0.6,kg/TJ,6.0607932,kg -ec1af56e-607d-3d13-bcfc-c952a0e76866,SESCO,II.5.1,Chaco,AR-H,annual,2017,naphtha combustion consumption by agriculture machines,2.8344007999999996,TJ,CO2,73300.0,kg/TJ,207761.57863999996,kg -404ef750-d2e1-3b18-99db-faf155323cdd,SESCO,II.5.1,Chaco,AR-H,annual,2017,naphtha combustion consumption by agriculture machines,2.8344007999999996,TJ,CH4,3.0,kg/TJ,8.5032024,kg -888074b9-a09a-3aad-80bd-ea53ce84b71f,SESCO,II.5.1,Chaco,AR-H,annual,2017,naphtha combustion consumption by agriculture machines,2.8344007999999996,TJ,N2O,0.6,kg/TJ,1.7006404799999997,kg -a48a2bce-b82f-323b-b9dc-e6324a86dd7c,SESCO,II.5.1,Córdoba,AR-X,annual,2017,naphtha combustion consumption by agriculture machines,4.6134395999999995,TJ,CO2,73300.0,kg/TJ,338165.12268,kg -f7788566-5602-398b-9e0d-a27a0307afc7,SESCO,II.5.1,Córdoba,AR-X,annual,2017,naphtha combustion consumption by agriculture machines,4.6134395999999995,TJ,CH4,3.0,kg/TJ,13.840318799999999,kg -c868b1c2-5a58-3404-ac4d-aeccdab09889,SESCO,II.5.1,Córdoba,AR-X,annual,2017,naphtha combustion consumption by agriculture machines,4.6134395999999995,TJ,N2O,0.6,kg/TJ,2.7680637599999995,kg -36dcb8e6-1ee4-37b1-ac1c-3a99cb666fa8,SESCO,II.5.1,Santa Fe,AR-S,annual,2017,naphtha combustion consumption by agriculture machines,17.941153999999997,TJ,CO2,73300.0,kg/TJ,1315086.5881999999,kg -5f081bfb-f610-3424-9086-ce23b1ea8c91,SESCO,II.5.1,Santa Fe,AR-S,annual,2017,naphtha combustion consumption by agriculture machines,17.941153999999997,TJ,CH4,3.0,kg/TJ,53.82346199999999,kg -162a0487-a5c9-3d41-91b7-b067a7cd7117,SESCO,II.5.1,Santa Fe,AR-S,annual,2017,naphtha combustion consumption by agriculture machines,17.941153999999997,TJ,N2O,0.6,kg/TJ,10.764692399999998,kg -38d18e0e-2ca3-39aa-9e93-1cdbc488c315,SESCO,II.5.1,Tucuman,AR-T,annual,2017,naphtha combustion consumption by agriculture machines,9.980709199999998,TJ,CO2,73300.0,kg/TJ,731585.9843599999,kg -5408f9aa-df2d-3bf8-90bd-087068f815a1,SESCO,II.5.1,Tucuman,AR-T,annual,2017,naphtha combustion consumption by agriculture machines,9.980709199999998,TJ,CH4,3.0,kg/TJ,29.942127599999992,kg -b062b95a-8379-3648-bf71-209e78051c35,SESCO,II.5.1,Tucuman,AR-T,annual,2017,naphtha combustion consumption by agriculture machines,9.980709199999998,TJ,N2O,0.6,kg/TJ,5.988425519999999,kg -ccf1825f-2f11-3e11-8fae-b55e3d7b3d09,SESCO,II.1.1,Buenos Aires,AR-B,annual,2017,naphtha combustion consumption by to the public,1.8393452,TJ,CO2,73300.0,kg/TJ,134824.00316,kg -bd8b3615-5682-3064-b26c-d6d311512bcc,SESCO,II.1.1,Buenos Aires,AR-B,annual,2017,naphtha combustion consumption by to the public,1.8393452,TJ,CH4,3.0,kg/TJ,5.518035599999999,kg -439ae19d-8c95-3987-9f8f-cc1957a18d3c,SESCO,II.1.1,Buenos Aires,AR-B,annual,2017,naphtha combustion consumption by to the public,1.8393452,TJ,N2O,0.6,kg/TJ,1.10360712,kg -e447802f-d4c0-375d-a9ef-62c08ad88ccf,SESCO,II.1.1,Santa Fe,AR-S,annual,2017,naphtha combustion consumption by to the public,0.9950555999999999,TJ,CO2,73300.0,kg/TJ,72937.57548,kg -605cacda-0735-3a2a-8e5f-fba96b37d021,SESCO,II.1.1,Santa Fe,AR-S,annual,2017,naphtha combustion consumption by to the public,0.9950555999999999,TJ,CH4,3.0,kg/TJ,2.9851668,kg -1b50fca8-f324-3983-a295-7c64126b65a7,SESCO,II.1.1,Santa Fe,AR-S,annual,2017,naphtha combustion consumption by to the public,0.9950555999999999,TJ,N2O,0.6,kg/TJ,0.59703336,kg -21d09130-9d01-38d4-942c-ba571fa6018b,SESCO,II.1.1,Tucuman,AR-T,annual,2017,naphtha combustion consumption by to the public,1.4172003999999998,TJ,CO2,73300.0,kg/TJ,103880.78931999998,kg -173c7c15-b45e-317b-967e-4daa5b1bbbfa,SESCO,II.1.1,Tucuman,AR-T,annual,2017,naphtha combustion consumption by to the public,1.4172003999999998,TJ,CH4,3.0,kg/TJ,4.2516012,kg -add479fd-3ffc-3a11-b60e-ac02e24ae34d,SESCO,II.1.1,Tucuman,AR-T,annual,2017,naphtha combustion consumption by to the public,1.4172003999999998,TJ,N2O,0.6,kg/TJ,0.8503202399999998,kg -27efbd21-2155-3e93-87c1-56acdcbf70d2,SESCO,II.1.1,Buenos Aires,AR-B,annual,2017,naphtha combustion consumption by to the public,9735.8953692,TJ,CO2,73300.0,kg/TJ,713641130.5623599,kg -5d1af1b9-d562-3a16-b96c-07684d31fbec,SESCO,II.1.1,Buenos Aires,AR-B,annual,2017,naphtha combustion consumption by to the public,9735.8953692,TJ,CH4,3.0,kg/TJ,29207.6861076,kg -00080a5e-5f80-3a1f-ad9a-17504eb8ab09,SESCO,II.1.1,Buenos Aires,AR-B,annual,2017,naphtha combustion consumption by to the public,9735.8953692,TJ,N2O,0.6,kg/TJ,5841.53722152,kg -89b4bdd4-9bd7-3e18-bd88-ca7b2cd93761,SESCO,II.1.1,Capital Federal,AR-C,annual,2017,naphtha combustion consumption by to the public,3249.1882192,TJ,CO2,73300.0,kg/TJ,238165496.46736,kg -c3779c2c-ad9d-3ebc-849a-5bf53975880c,SESCO,II.1.1,Capital Federal,AR-C,annual,2017,naphtha combustion consumption by to the public,3249.1882192,TJ,CH4,3.0,kg/TJ,9747.5646576,kg -9b285475-46db-3605-bf7d-f59aaf01fbd7,SESCO,II.1.1,Capital Federal,AR-C,annual,2017,naphtha combustion consumption by to the public,3249.1882192,TJ,N2O,0.6,kg/TJ,1949.5129315199997,kg -359cba13-29e0-3704-8d3a-e96f4a2eef1c,SESCO,II.1.1,Catamarca,AR-K,annual,2017,naphtha combustion consumption by to the public,416.05385359999997,TJ,CO2,73300.0,kg/TJ,30496747.468879998,kg -0ffd2883-3a44-317d-94ab-492c1d473b92,SESCO,II.1.1,Catamarca,AR-K,annual,2017,naphtha combustion consumption by to the public,416.05385359999997,TJ,CH4,3.0,kg/TJ,1248.1615608,kg -02e473ea-63ad-3e32-8c22-4ead7f1cda3d,SESCO,II.1.1,Catamarca,AR-K,annual,2017,naphtha combustion consumption by to the public,416.05385359999997,TJ,N2O,0.6,kg/TJ,249.63231215999997,kg -d9ba0f02-e590-3d97-907f-8950dd35a545,SESCO,II.1.1,Chaco,AR-H,annual,2017,naphtha combustion consumption by to the public,413.52098479999995,TJ,CO2,73300.0,kg/TJ,30311088.185839996,kg -2019d316-94c7-305b-8a63-bb71792a1010,SESCO,II.1.1,Chaco,AR-H,annual,2017,naphtha combustion consumption by to the public,413.52098479999995,TJ,CH4,3.0,kg/TJ,1240.5629543999999,kg -6ebe1feb-844a-3bae-9b71-7615860222cb,SESCO,II.1.1,Chaco,AR-H,annual,2017,naphtha combustion consumption by to the public,413.52098479999995,TJ,N2O,0.6,kg/TJ,248.11259087999997,kg -8a55a5b4-a299-3cf8-8e28-7ff7fd952a8a,SESCO,II.1.1,Chubut,AR-U,annual,2017,naphtha combustion consumption by to the public,307.77371239999997,TJ,CO2,73300.0,kg/TJ,22559813.11892,kg -1b60117e-5ba3-3107-8529-ae6b7eddfa1a,SESCO,II.1.1,Chubut,AR-U,annual,2017,naphtha combustion consumption by to the public,307.77371239999997,TJ,CH4,3.0,kg/TJ,923.3211371999998,kg -2522a85c-e4cc-3851-bd79-7ac3ef55a56c,SESCO,II.1.1,Chubut,AR-U,annual,2017,naphtha combustion consumption by to the public,307.77371239999997,TJ,N2O,0.6,kg/TJ,184.66422743999996,kg -8564aba9-8acf-31e8-8c12-c06b1433abc2,SESCO,II.1.1,Corrientes,AR-W,annual,2017,naphtha combustion consumption by to the public,582.5296708,TJ,CO2,73300.0,kg/TJ,42699424.86964,kg -19ceb00f-dd2f-30c7-8d3c-98b033b61d54,SESCO,II.1.1,Corrientes,AR-W,annual,2017,naphtha combustion consumption by to the public,582.5296708,TJ,CH4,3.0,kg/TJ,1747.5890123999998,kg -28090c40-aa72-3960-8f9d-23a763c87828,SESCO,II.1.1,Corrientes,AR-W,annual,2017,naphtha combustion consumption by to the public,582.5296708,TJ,N2O,0.6,kg/TJ,349.51780247999994,kg -f845917d-e1e4-309c-baea-4c108670a639,SESCO,II.1.1,Córdoba,AR-X,annual,2017,naphtha combustion consumption by to the public,3036.6081591999996,TJ,CO2,73300.0,kg/TJ,222583378.06935996,kg -ffc811fe-0bff-385c-bed0-59aaee674cc3,SESCO,II.1.1,Córdoba,AR-X,annual,2017,naphtha combustion consumption by to the public,3036.6081591999996,TJ,CH4,3.0,kg/TJ,9109.8244776,kg -8c0aa0bf-2dff-3d12-94c4-dd040e94a8a6,SESCO,II.1.1,Córdoba,AR-X,annual,2017,naphtha combustion consumption by to the public,3036.6081591999996,TJ,N2O,0.6,kg/TJ,1821.9648955199998,kg -d0dc942a-1a36-35e3-b7ad-d673b47ad2e5,SESCO,II.1.1,Entre Rios,AR-E,annual,2017,naphtha combustion consumption by to the public,1056.4776683999999,TJ,CO2,73300.0,kg/TJ,77439813.09371999,kg -0c71956d-3da0-3834-be9c-c92233cccfeb,SESCO,II.1.1,Entre Rios,AR-E,annual,2017,naphtha combustion consumption by to the public,1056.4776683999999,TJ,CH4,3.0,kg/TJ,3169.4330051999996,kg -7373863d-06fd-381a-883f-8b11522c06f9,SESCO,II.1.1,Entre Rios,AR-E,annual,2017,naphtha combustion consumption by to the public,1056.4776683999999,TJ,N2O,0.6,kg/TJ,633.8866010399998,kg -7f3ecfe1-8cc6-3927-a255-436fc0cbb797,SESCO,II.1.1,Formosa,AR-P,annual,2017,naphtha combustion consumption by to the public,644.2532712,TJ,CO2,73300.0,kg/TJ,47223764.77896,kg -1d1c297f-a50c-3250-9e7a-b2ed7ff88e0a,SESCO,II.1.1,Formosa,AR-P,annual,2017,naphtha combustion consumption by to the public,644.2532712,TJ,CH4,3.0,kg/TJ,1932.7598136,kg -8c5cc984-de87-3ef3-93f6-ee6dd3fa1557,SESCO,II.1.1,Formosa,AR-P,annual,2017,naphtha combustion consumption by to the public,644.2532712,TJ,N2O,0.6,kg/TJ,386.55196271999995,kg -e22eb363-f851-3712-9751-8189d2b0ac44,SESCO,II.1.1,Jujuy,AR-Y,annual,2017,naphtha combustion consumption by to the public,198.92066039999997,TJ,CO2,73300.0,kg/TJ,14580884.407319998,kg -2e17e746-1bfc-3485-8033-8d90b35f9ec4,SESCO,II.1.1,Jujuy,AR-Y,annual,2017,naphtha combustion consumption by to the public,198.92066039999997,TJ,CH4,3.0,kg/TJ,596.7619811999999,kg -1280f026-d5f9-3558-be9d-f662c737afc8,SESCO,II.1.1,Jujuy,AR-Y,annual,2017,naphtha combustion consumption by to the public,198.92066039999997,TJ,N2O,0.6,kg/TJ,119.35239623999998,kg -1094cb3f-424a-3a72-aed9-d87aa5bfda64,SESCO,II.1.1,La Pampa,AR-L,annual,2017,naphtha combustion consumption by to the public,164.96815719999998,TJ,CO2,73300.0,kg/TJ,12092165.922759999,kg -d953ba4d-996c-33b6-b17b-51e0c7553dab,SESCO,II.1.1,La Pampa,AR-L,annual,2017,naphtha combustion consumption by to the public,164.96815719999998,TJ,CH4,3.0,kg/TJ,494.90447159999997,kg -f129f6c2-e035-39e6-8517-81ea1b1a6bba,SESCO,II.1.1,La Pampa,AR-L,annual,2017,naphtha combustion consumption by to the public,164.96815719999998,TJ,N2O,0.6,kg/TJ,98.98089431999999,kg -931498b7-9675-3cc7-a1cd-e0c3cee836a2,SESCO,II.1.1,La Rioja,AR-F,annual,2017,naphtha combustion consumption by to the public,101.10367959999999,TJ,CO2,73300.0,kg/TJ,7410899.714679999,kg -73bd9872-5b8b-3326-8338-306b1efc058b,SESCO,II.1.1,La Rioja,AR-F,annual,2017,naphtha combustion consumption by to the public,101.10367959999999,TJ,CH4,3.0,kg/TJ,303.3110388,kg -a0e53744-fc41-35b5-a53e-37777c0c7710,SESCO,II.1.1,La Rioja,AR-F,annual,2017,naphtha combustion consumption by to the public,101.10367959999999,TJ,N2O,0.6,kg/TJ,60.662207759999994,kg -b86d2c97-b83b-3d51-a7e8-09808eb7d4b0,SESCO,II.1.1,Mendoza,AR-M,annual,2017,naphtha combustion consumption by to the public,388.37321599999996,TJ,CO2,73300.0,kg/TJ,28467756.732799996,kg -5ab54675-c771-3943-adb8-9f584804e1ea,SESCO,II.1.1,Mendoza,AR-M,annual,2017,naphtha combustion consumption by to the public,388.37321599999996,TJ,CH4,3.0,kg/TJ,1165.1196479999999,kg -47b9811a-b641-30c3-be59-519af5506bb4,SESCO,II.1.1,Mendoza,AR-M,annual,2017,naphtha combustion consumption by to the public,388.37321599999996,TJ,N2O,0.6,kg/TJ,233.02392959999997,kg -7ec628a4-dac1-3d5f-bb83-d0f0fba86da4,SESCO,II.1.1,Misiones,AR-N,annual,2017,naphtha combustion consumption by to the public,734.98425,TJ,CO2,73300.0,kg/TJ,53874345.525,kg -8978fad1-3ca2-3a4f-8bcb-544ad7cd6cb8,SESCO,II.1.1,Misiones,AR-N,annual,2017,naphtha combustion consumption by to the public,734.98425,TJ,CH4,3.0,kg/TJ,2204.95275,kg -9c3069da-e477-33fb-b792-46461be0dfdf,SESCO,II.1.1,Misiones,AR-N,annual,2017,naphtha combustion consumption by to the public,734.98425,TJ,N2O,0.6,kg/TJ,440.99055,kg -0441fb2f-7b36-396b-97bb-046665228130,SESCO,II.1.1,Neuquén,AR-Q,annual,2017,naphtha combustion consumption by to the public,267.94133519999997,TJ,CO2,73300.0,kg/TJ,19640099.87016,kg -03c925cc-d871-39d6-bf46-ff820d85e3cb,SESCO,II.1.1,Neuquén,AR-Q,annual,2017,naphtha combustion consumption by to the public,267.94133519999997,TJ,CH4,3.0,kg/TJ,803.8240056,kg -665f1a5b-29de-3c84-a548-accf4ed3feb2,SESCO,II.1.1,Neuquén,AR-Q,annual,2017,naphtha combustion consumption by to the public,267.94133519999997,TJ,N2O,0.6,kg/TJ,160.76480112,kg -0f552e58-ff6c-3f3a-af7a-7cabc0b839a3,SESCO,II.1.1,Rio Negro,AR-R,annual,2017,naphtha combustion consumption by to the public,552.5573899999999,TJ,CO2,73300.0,kg/TJ,40502456.687,kg -207875c3-33f0-339f-95a8-02d910cc44d3,SESCO,II.1.1,Rio Negro,AR-R,annual,2017,naphtha combustion consumption by to the public,552.5573899999999,TJ,CH4,3.0,kg/TJ,1657.6721699999998,kg -8568684e-350f-3287-ac9b-9ab0a0ab3d67,SESCO,II.1.1,Rio Negro,AR-R,annual,2017,naphtha combustion consumption by to the public,552.5573899999999,TJ,N2O,0.6,kg/TJ,331.534434,kg -41ca80d7-82e8-385f-a08f-7e428c757276,SESCO,II.1.1,Salta,AR-A,annual,2017,naphtha combustion consumption by to the public,134.6038848,TJ,CO2,73300.0,kg/TJ,9866464.75584,kg -39a97058-e5e2-3a1d-a026-c207283c69bd,SESCO,II.1.1,Salta,AR-A,annual,2017,naphtha combustion consumption by to the public,134.6038848,TJ,CH4,3.0,kg/TJ,403.8116544,kg -e2dbb493-2081-3f7b-ab00-8498364d55ea,SESCO,II.1.1,Salta,AR-A,annual,2017,naphtha combustion consumption by to the public,134.6038848,TJ,N2O,0.6,kg/TJ,80.76233088,kg -97dab49d-fb96-3b2e-88b0-176c854f10a2,SESCO,II.1.1,San Juan,AR-J,annual,2017,naphtha combustion consumption by to the public,224.7016464,TJ,CO2,73300.0,kg/TJ,16470630.681119999,kg -6b805906-864d-35ec-8908-7df23850b1a8,SESCO,II.1.1,San Juan,AR-J,annual,2017,naphtha combustion consumption by to the public,224.7016464,TJ,CH4,3.0,kg/TJ,674.1049392,kg -858058af-0904-3850-8fe9-ee10dbbc1439,SESCO,II.1.1,San Juan,AR-J,annual,2017,naphtha combustion consumption by to the public,224.7016464,TJ,N2O,0.6,kg/TJ,134.82098784,kg -c752ab0f-15a8-3c75-abb3-7a5b541f01db,SESCO,II.1.1,San Luis,AR-D,annual,2017,naphtha combustion consumption by to the public,514.9865027999999,TJ,CO2,73300.0,kg/TJ,37748510.65523999,kg -6a3dfd27-bf1d-33b4-bccb-5099a5c0bda7,SESCO,II.1.1,San Luis,AR-D,annual,2017,naphtha combustion consumption by to the public,514.9865027999999,TJ,CH4,3.0,kg/TJ,1544.9595083999998,kg -618ad435-738f-3ac4-a96e-6026910f6b7f,SESCO,II.1.1,San Luis,AR-D,annual,2017,naphtha combustion consumption by to the public,514.9865027999999,TJ,N2O,0.6,kg/TJ,308.99190167999996,kg -0e3c7f4b-3eb7-3234-8934-0b6ae193bf94,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2017,naphtha combustion consumption by to the public,59.8239488,TJ,CO2,73300.0,kg/TJ,4385095.44704,kg -c6d4ed0d-a602-3ab7-8f4a-2b1644de5bb3,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2017,naphtha combustion consumption by to the public,59.8239488,TJ,CH4,3.0,kg/TJ,179.4718464,kg -b26e68d2-de58-362b-8968-727d8cac9be5,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2017,naphtha combustion consumption by to the public,59.8239488,TJ,N2O,0.6,kg/TJ,35.89436928,kg -7c67de00-fe75-3654-86e5-614f1159d12d,SESCO,II.1.1,Santa Fe,AR-S,annual,2017,naphtha combustion consumption by to the public,2511.7012535999997,TJ,CO2,73300.0,kg/TJ,184107701.88887998,kg -ef8cd4a7-1552-3609-84d6-7b08809b1d47,SESCO,II.1.1,Santa Fe,AR-S,annual,2017,naphtha combustion consumption by to the public,2511.7012535999997,TJ,CH4,3.0,kg/TJ,7535.103760799999,kg -dd014a4f-74bd-31e0-abe4-a3882f87f504,SESCO,II.1.1,Santa Fe,AR-S,annual,2017,naphtha combustion consumption by to the public,2511.7012535999997,TJ,N2O,0.6,kg/TJ,1507.0207521599998,kg -d4b83dd4-40a5-34c1-9ba8-1a42bf2076d7,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2017,naphtha combustion consumption by to the public,337.565074,TJ,CO2,73300.0,kg/TJ,24743519.9242,kg -c58626a1-79b1-3d99-9623-5b3660a0b3e7,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2017,naphtha combustion consumption by to the public,337.565074,TJ,CH4,3.0,kg/TJ,1012.695222,kg -139ffd45-42f3-3ed2-9251-dc3051d3f6e2,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2017,naphtha combustion consumption by to the public,337.565074,TJ,N2O,0.6,kg/TJ,202.5390444,kg -a40ffb55-2424-37ce-87b2-bc2562d22d54,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2017,naphtha combustion consumption by to the public,154.98744799999997,TJ,CO2,73300.0,kg/TJ,11360579.938399998,kg -5197f74d-3295-3c94-97cb-391696724593,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2017,naphtha combustion consumption by to the public,154.98744799999997,TJ,CH4,3.0,kg/TJ,464.9623439999999,kg -c07efa28-b8ca-3fc3-87f4-c4da195091ec,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2017,naphtha combustion consumption by to the public,154.98744799999997,TJ,N2O,0.6,kg/TJ,92.99246879999998,kg -c09ea0b5-0866-3d8c-98e9-950945159c25,SESCO,II.1.1,Tucuman,AR-T,annual,2017,naphtha combustion consumption by to the public,87.83627159999999,TJ,CO2,73300.0,kg/TJ,6438398.708279999,kg -ab17db84-2d57-372e-b343-b011ca1461ac,SESCO,II.1.1,Tucuman,AR-T,annual,2017,naphtha combustion consumption by to the public,87.83627159999999,TJ,CH4,3.0,kg/TJ,263.5088148,kg -7fd54dc6-935e-3b48-9014-52dceb0694b9,SESCO,II.1.1,Tucuman,AR-T,annual,2017,naphtha combustion consumption by to the public,87.83627159999999,TJ,N2O,0.6,kg/TJ,52.70176295999999,kg -00d9fb40-801f-3bd6-b515-b3536d544cc4,SESCO,II.1.1,Buenos Aires,AR-B,annual,2017,naphtha combustion consumption by to the public,2885.962772,TJ,CO2,73300.0,kg/TJ,211541071.1876,kg -ac963d7c-7d1c-3a02-a15e-556fbfd9f01d,SESCO,II.1.1,Buenos Aires,AR-B,annual,2017,naphtha combustion consumption by to the public,2885.962772,TJ,CH4,3.0,kg/TJ,8657.888316,kg -f981ed74-d4f5-34fe-ab14-d043366b6c55,SESCO,II.1.1,Buenos Aires,AR-B,annual,2017,naphtha combustion consumption by to the public,2885.962772,TJ,N2O,0.6,kg/TJ,1731.5776632,kg -ecccf4cf-84d5-3e7d-abed-0ef0abd4f29d,SESCO,II.1.1,Capital Federal,AR-C,annual,2017,naphtha combustion consumption by to the public,1279.5811952,TJ,CO2,73300.0,kg/TJ,93793301.60815999,kg -0da8404f-7da9-3d43-8bfe-b9bfd3a30f16,SESCO,II.1.1,Capital Federal,AR-C,annual,2017,naphtha combustion consumption by to the public,1279.5811952,TJ,CH4,3.0,kg/TJ,3838.7435855999997,kg -1e1c3dd2-f3e2-3979-a0f2-08a71a9848b2,SESCO,II.1.1,Capital Federal,AR-C,annual,2017,naphtha combustion consumption by to the public,1279.5811952,TJ,N2O,0.6,kg/TJ,767.7487171199999,kg -adb39193-4944-3a0e-a718-b48b2065f3c5,SESCO,II.1.1,Catamarca,AR-K,annual,2017,naphtha combustion consumption by to the public,139.006252,TJ,CO2,73300.0,kg/TJ,10189158.271599999,kg -2300e902-258a-3e82-9cdb-7bca1be72f5c,SESCO,II.1.1,Catamarca,AR-K,annual,2017,naphtha combustion consumption by to the public,139.006252,TJ,CH4,3.0,kg/TJ,417.01875599999994,kg -52a4acdb-a317-3512-abc8-adba8c7f10f1,SESCO,II.1.1,Catamarca,AR-K,annual,2017,naphtha combustion consumption by to the public,139.006252,TJ,N2O,0.6,kg/TJ,83.40375119999999,kg -3fa5ea41-570a-3f4a-8171-2059338116fd,SESCO,II.1.1,Chaco,AR-H,annual,2017,naphtha combustion consumption by to the public,87.80611839999999,TJ,CO2,73300.0,kg/TJ,6436188.478719999,kg -1daf2f92-55c0-30b0-9404-8b34930cf636,SESCO,II.1.1,Chaco,AR-H,annual,2017,naphtha combustion consumption by to the public,87.80611839999999,TJ,CH4,3.0,kg/TJ,263.41835519999995,kg -59649734-3cc5-3dc8-bbf0-d58aeaac4978,SESCO,II.1.1,Chaco,AR-H,annual,2017,naphtha combustion consumption by to the public,87.80611839999999,TJ,N2O,0.6,kg/TJ,52.68367103999999,kg -241bfc50-58de-3b4f-b8df-9c0e63cc74da,SESCO,II.1.1,Chubut,AR-U,annual,2017,naphtha combustion consumption by to the public,74.8703956,TJ,CO2,73300.0,kg/TJ,5487999.997479999,kg -9ba9956a-2a4f-3805-a401-12da6e68e73e,SESCO,II.1.1,Chubut,AR-U,annual,2017,naphtha combustion consumption by to the public,74.8703956,TJ,CH4,3.0,kg/TJ,224.61118679999998,kg -4124c5c5-0faa-3732-aa2d-6b512402f4c0,SESCO,II.1.1,Chubut,AR-U,annual,2017,naphtha combustion consumption by to the public,74.8703956,TJ,N2O,0.6,kg/TJ,44.92223736,kg -754eadd6-9c03-3c6b-827e-6ac89d461ea7,SESCO,II.1.1,Corrientes,AR-W,annual,2017,naphtha combustion consumption by to the public,155.4095928,TJ,CO2,73300.0,kg/TJ,11391523.15224,kg -cb7f8ad7-636f-3014-acea-6f43d0db7daa,SESCO,II.1.1,Corrientes,AR-W,annual,2017,naphtha combustion consumption by to the public,155.4095928,TJ,CH4,3.0,kg/TJ,466.2287784,kg -6e9af893-6cc7-3bf8-a3b0-3b963bc1a99f,SESCO,II.1.1,Corrientes,AR-W,annual,2017,naphtha combustion consumption by to the public,155.4095928,TJ,N2O,0.6,kg/TJ,93.24575568,kg -b43163c0-dc55-35fe-a593-ddc0ca1b5d41,SESCO,II.1.1,Córdoba,AR-X,annual,2017,naphtha combustion consumption by to the public,753.8299999999999,TJ,CO2,73300.0,kg/TJ,55255738.99999999,kg -84973768-60f6-36a5-9607-f1645c5562b5,SESCO,II.1.1,Córdoba,AR-X,annual,2017,naphtha combustion consumption by to the public,753.8299999999999,TJ,CH4,3.0,kg/TJ,2261.49,kg -e29303fa-0827-3282-93f1-3c23a9c7ec1c,SESCO,II.1.1,Córdoba,AR-X,annual,2017,naphtha combustion consumption by to the public,753.8299999999999,TJ,N2O,0.6,kg/TJ,452.29799999999994,kg -9f2416dd-4a95-3657-85af-2e796c1daa59,SESCO,II.1.1,Entre Rios,AR-E,annual,2017,naphtha combustion consumption by to the public,314.4074164,TJ,CO2,73300.0,kg/TJ,23046063.62212,kg -aab543cc-09a1-3e2f-a221-50254aa8e11f,SESCO,II.1.1,Entre Rios,AR-E,annual,2017,naphtha combustion consumption by to the public,314.4074164,TJ,CH4,3.0,kg/TJ,943.2222492,kg -09193883-9c4f-3777-a013-eab688a91831,SESCO,II.1.1,Entre Rios,AR-E,annual,2017,naphtha combustion consumption by to the public,314.4074164,TJ,N2O,0.6,kg/TJ,188.64444984,kg -870c1a5d-fcd6-3ef6-93ea-c8c5a7ddcf21,SESCO,II.1.1,Formosa,AR-P,annual,2017,naphtha combustion consumption by to the public,171.722474,TJ,CO2,73300.0,kg/TJ,12587257.3442,kg -b0e40deb-5cb2-3a16-af6f-91209eaee041,SESCO,II.1.1,Formosa,AR-P,annual,2017,naphtha combustion consumption by to the public,171.722474,TJ,CH4,3.0,kg/TJ,515.167422,kg -4269ebb9-6089-3629-b76d-0760d504f04a,SESCO,II.1.1,Formosa,AR-P,annual,2017,naphtha combustion consumption by to the public,171.722474,TJ,N2O,0.6,kg/TJ,103.0334844,kg -928bd6b4-440b-3b7f-9bc8-3db8a0f49b4e,SESCO,II.1.1,Jujuy,AR-Y,annual,2017,naphtha combustion consumption by to the public,37.4502744,TJ,CO2,73300.0,kg/TJ,2745105.1135199997,kg -aef9960d-77ec-3b6c-a589-679d8127b735,SESCO,II.1.1,Jujuy,AR-Y,annual,2017,naphtha combustion consumption by to the public,37.4502744,TJ,CH4,3.0,kg/TJ,112.3508232,kg -d9e148a7-2a8f-39b9-9ed2-c16343bae5f2,SESCO,II.1.1,Jujuy,AR-Y,annual,2017,naphtha combustion consumption by to the public,37.4502744,TJ,N2O,0.6,kg/TJ,22.470164639999997,kg -8a4d5e5a-d498-3905-9585-b5e5b6420a04,SESCO,II.1.1,La Pampa,AR-L,annual,2017,naphtha combustion consumption by to the public,63.201107199999996,TJ,CO2,73300.0,kg/TJ,4632641.15776,kg -baf13098-f72c-3102-97a4-945b14e2c6e8,SESCO,II.1.1,La Pampa,AR-L,annual,2017,naphtha combustion consumption by to the public,63.201107199999996,TJ,CH4,3.0,kg/TJ,189.6033216,kg -df7d6a54-a48a-3666-a181-0d93c2cb78b6,SESCO,II.1.1,La Pampa,AR-L,annual,2017,naphtha combustion consumption by to the public,63.201107199999996,TJ,N2O,0.6,kg/TJ,37.92066431999999,kg -5575321c-e7b8-3cab-a647-ef65fffbc3fa,SESCO,II.1.1,La Rioja,AR-F,annual,2017,naphtha combustion consumption by to the public,23.0068916,TJ,CO2,73300.0,kg/TJ,1686405.15428,kg -08309bcc-1143-36ee-a1fe-083384c3e003,SESCO,II.1.1,La Rioja,AR-F,annual,2017,naphtha combustion consumption by to the public,23.0068916,TJ,CH4,3.0,kg/TJ,69.0206748,kg -8f9f806f-38c1-3978-be5e-b31169b69549,SESCO,II.1.1,La Rioja,AR-F,annual,2017,naphtha combustion consumption by to the public,23.0068916,TJ,N2O,0.6,kg/TJ,13.804134959999999,kg -fdc737b7-4702-3f44-81e8-bb01c7f7e226,SESCO,II.1.1,Mendoza,AR-M,annual,2017,naphtha combustion consumption by to the public,164.00325479999998,TJ,CO2,73300.0,kg/TJ,12021438.576839998,kg -014ad7b6-c77e-338c-87b9-6a42f5d655ea,SESCO,II.1.1,Mendoza,AR-M,annual,2017,naphtha combustion consumption by to the public,164.00325479999998,TJ,CH4,3.0,kg/TJ,492.00976439999994,kg -b9c250ba-d06f-3a0a-a86e-272cf3cdf1ec,SESCO,II.1.1,Mendoza,AR-M,annual,2017,naphtha combustion consumption by to the public,164.00325479999998,TJ,N2O,0.6,kg/TJ,98.40195287999998,kg -e93e422f-2014-393e-b74f-36a8c0fe5528,SESCO,II.1.1,Misiones,AR-N,annual,2017,naphtha combustion consumption by to the public,120.4318808,TJ,CO2,73300.0,kg/TJ,8827656.86264,kg -750d45fc-5f9f-3be8-aba6-eb5ce8f2d9aa,SESCO,II.1.1,Misiones,AR-N,annual,2017,naphtha combustion consumption by to the public,120.4318808,TJ,CH4,3.0,kg/TJ,361.2956424,kg -d1e8b510-d43f-350a-ba0e-0db587280f3e,SESCO,II.1.1,Misiones,AR-N,annual,2017,naphtha combustion consumption by to the public,120.4318808,TJ,N2O,0.6,kg/TJ,72.25912848,kg -bca510f7-9cd7-349c-a5ff-a07b4a224f4a,SESCO,II.1.1,Neuquén,AR-Q,annual,2017,naphtha combustion consumption by to the public,139.45854999999997,TJ,CO2,73300.0,kg/TJ,10222311.714999998,kg -5a6a8327-a06d-36fa-8623-eb9ea792a875,SESCO,II.1.1,Neuquén,AR-Q,annual,2017,naphtha combustion consumption by to the public,139.45854999999997,TJ,CH4,3.0,kg/TJ,418.37564999999995,kg -dc70939a-ac6c-31a0-aefd-f7012e99bbc6,SESCO,II.1.1,Neuquén,AR-Q,annual,2017,naphtha combustion consumption by to the public,139.45854999999997,TJ,N2O,0.6,kg/TJ,83.67512999999998,kg -9c5b891b-802c-3691-9091-c2bc9650780b,SESCO,II.1.1,Rio Negro,AR-R,annual,2017,naphtha combustion consumption by to the public,212.88159199999998,TJ,CO2,73300.0,kg/TJ,15604220.693599999,kg -054b9d4f-c42a-3559-9a62-ef0604b84d05,SESCO,II.1.1,Rio Negro,AR-R,annual,2017,naphtha combustion consumption by to the public,212.88159199999998,TJ,CH4,3.0,kg/TJ,638.644776,kg -8c0eaeb9-42c7-357b-b6b6-4f54b696ce30,SESCO,II.1.1,Rio Negro,AR-R,annual,2017,naphtha combustion consumption by to the public,212.88159199999998,TJ,N2O,0.6,kg/TJ,127.72895519999999,kg -e87ec0f4-81fb-360c-809c-2024d44c8d3a,SESCO,II.1.1,Salta,AR-A,annual,2017,naphtha combustion consumption by to the public,17.3682432,TJ,CO2,73300.0,kg/TJ,1273092.2265599999,kg -0416eba8-540f-394a-96dc-ac0db58cfc79,SESCO,II.1.1,Salta,AR-A,annual,2017,naphtha combustion consumption by to the public,17.3682432,TJ,CH4,3.0,kg/TJ,52.1047296,kg -38cba91c-21c0-3335-95c8-bf5754af9190,SESCO,II.1.1,Salta,AR-A,annual,2017,naphtha combustion consumption by to the public,17.3682432,TJ,N2O,0.6,kg/TJ,10.42094592,kg -40df4b16-2bd6-3bf7-9b6b-93b4d4ae23e2,SESCO,II.1.1,San Juan,AR-J,annual,2017,naphtha combustion consumption by to the public,64.79922679999999,TJ,CO2,73300.0,kg/TJ,4749783.324439999,kg -eb679cf1-1e89-3353-b69d-7036916bb9f3,SESCO,II.1.1,San Juan,AR-J,annual,2017,naphtha combustion consumption by to the public,64.79922679999999,TJ,CH4,3.0,kg/TJ,194.39768039999996,kg -27d95b31-89ee-3296-98b8-5b887a0a7fa5,SESCO,II.1.1,San Juan,AR-J,annual,2017,naphtha combustion consumption by to the public,64.79922679999999,TJ,N2O,0.6,kg/TJ,38.87953607999999,kg -446db239-911c-32cb-8b18-7ce2d33d9ef7,SESCO,II.1.1,San Luis,AR-D,annual,2017,naphtha combustion consumption by to the public,131.76948399999998,TJ,CO2,73300.0,kg/TJ,9658703.177199999,kg -29464f92-d39d-3c2d-b405-54804da73c4c,SESCO,II.1.1,San Luis,AR-D,annual,2017,naphtha combustion consumption by to the public,131.76948399999998,TJ,CH4,3.0,kg/TJ,395.30845199999993,kg -f8e4f8be-f28a-3bd7-8772-fd337d2cf23d,SESCO,II.1.1,San Luis,AR-D,annual,2017,naphtha combustion consumption by to the public,131.76948399999998,TJ,N2O,0.6,kg/TJ,79.06169039999999,kg -43a123da-bcf9-3d2a-b45a-5b7fd6ae1036,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2017,naphtha combustion consumption by to the public,28.886765599999997,TJ,CO2,73300.0,kg/TJ,2117399.91848,kg -e14826a4-409f-3a7c-930e-ec1dfc206e93,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2017,naphtha combustion consumption by to the public,28.886765599999997,TJ,CH4,3.0,kg/TJ,86.6602968,kg -84639715-7ed3-3afe-9046-d7d8d54c9d19,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2017,naphtha combustion consumption by to the public,28.886765599999997,TJ,N2O,0.6,kg/TJ,17.33205936,kg -96c353be-0018-3c14-be40-a570d145856a,SESCO,II.1.1,Santa Fe,AR-S,annual,2017,naphtha combustion consumption by to the public,766.1626587999999,TJ,CO2,73300.0,kg/TJ,56159722.890039995,kg -b86a6b0b-0a7e-3579-a3fe-d229d1827ead,SESCO,II.1.1,Santa Fe,AR-S,annual,2017,naphtha combustion consumption by to the public,766.1626587999999,TJ,CH4,3.0,kg/TJ,2298.4879763999998,kg -b27c8eb2-0e59-3f1a-9b6e-634524cd6ad8,SESCO,II.1.1,Santa Fe,AR-S,annual,2017,naphtha combustion consumption by to the public,766.1626587999999,TJ,N2O,0.6,kg/TJ,459.6975952799999,kg -d8fb3436-3751-35aa-b581-5e18855a2181,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2017,naphtha combustion consumption by to the public,115.3962964,TJ,CO2,73300.0,kg/TJ,8458548.52612,kg -64f9fa35-c2f5-3455-bc85-5f7b040a4f75,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2017,naphtha combustion consumption by to the public,115.3962964,TJ,CH4,3.0,kg/TJ,346.1888892,kg -fd4ff3a7-79c7-3eae-84f9-d069dd70e513,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2017,naphtha combustion consumption by to the public,115.3962964,TJ,N2O,0.6,kg/TJ,69.23777783999999,kg -3eb64c10-68fb-371a-b4c8-f5c9b96ae3b5,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2017,naphtha combustion consumption by to the public,59.251037999999994,TJ,CO2,73300.0,kg/TJ,4343101.085399999,kg -18c5e551-aaec-3b20-b76b-92fdfefb50ed,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2017,naphtha combustion consumption by to the public,59.251037999999994,TJ,CH4,3.0,kg/TJ,177.75311399999998,kg -0c332bb9-7857-3d78-9340-249df4fb573f,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2017,naphtha combustion consumption by to the public,59.251037999999994,TJ,N2O,0.6,kg/TJ,35.55062279999999,kg -a548d4b4-12c7-337b-9ad8-10784a480597,SESCO,II.1.1,Tucuman,AR-T,annual,2017,naphtha combustion consumption by to the public,25.268381599999998,TJ,CO2,73300.0,kg/TJ,1852172.3712799998,kg -4ae7ac61-7018-3e56-b4ce-b1ebc1fa9219,SESCO,II.1.1,Tucuman,AR-T,annual,2017,naphtha combustion consumption by to the public,25.268381599999998,TJ,CH4,3.0,kg/TJ,75.8051448,kg -c9e68fd9-e545-3d1e-ba3c-5ec24b1258ef,SESCO,II.1.1,Tucuman,AR-T,annual,2017,naphtha combustion consumption by to the public,25.268381599999998,TJ,N2O,0.6,kg/TJ,15.161028959999998,kg -ba615831-c8c4-31ee-962e-cf88a224e9c9,SESCO,II.1.1,Buenos Aires,AR-B,annual,2017,naphtha combustion consumption by freight transport,8.292129999999998,TJ,CO2,73300.0,kg/TJ,607813.1289999998,kg -c3bf8575-44f9-39e9-8165-1c4c2c8e5e46,SESCO,II.1.1,Buenos Aires,AR-B,annual,2017,naphtha combustion consumption by freight transport,8.292129999999998,TJ,CH4,3.0,kg/TJ,24.876389999999994,kg -150ebf16-f74e-3f57-ac15-f3a6293c2e7e,SESCO,II.1.1,Buenos Aires,AR-B,annual,2017,naphtha combustion consumption by freight transport,8.292129999999998,TJ,N2O,0.6,kg/TJ,4.9752779999999985,kg -36eb0c95-63f7-32f6-bc71-693f891a8170,SESCO,II.1.1,Capital Federal,AR-C,annual,2017,naphtha combustion consumption by freight transport,4.0103756,TJ,CO2,73300.0,kg/TJ,293960.53148,kg -0ea75969-f3bd-3392-a2e2-ce12f6d9d6d9,SESCO,II.1.1,Capital Federal,AR-C,annual,2017,naphtha combustion consumption by freight transport,4.0103756,TJ,CH4,3.0,kg/TJ,12.0311268,kg -4b136a5a-4638-30d9-967a-87891bff537a,SESCO,II.1.1,Capital Federal,AR-C,annual,2017,naphtha combustion consumption by freight transport,4.0103756,TJ,N2O,0.6,kg/TJ,2.4062253599999996,kg -9dae2ae0-6f6a-314a-9a04-341768aa823e,SESCO,II.1.1,Chubut,AR-U,annual,2017,naphtha combustion consumption by freight transport,0.030153199999999998,TJ,CO2,73300.0,kg/TJ,2210.2295599999998,kg -b2174810-99ed-39bf-8284-83807e98baa6,SESCO,II.1.1,Chubut,AR-U,annual,2017,naphtha combustion consumption by freight transport,0.030153199999999998,TJ,CH4,3.0,kg/TJ,0.0904596,kg -b79f7968-cddb-3090-9685-b34dc23e1445,SESCO,II.1.1,Chubut,AR-U,annual,2017,naphtha combustion consumption by freight transport,0.030153199999999998,TJ,N2O,0.6,kg/TJ,0.018091919999999997,kg -78c85ffa-0f31-3944-87dc-fdfe775eec02,SESCO,II.1.1,Córdoba,AR-X,annual,2017,naphtha combustion consumption by freight transport,1.4473536,TJ,CO2,73300.0,kg/TJ,106091.01888,kg -b261d6bc-1db9-3cce-93f8-0050d317e512,SESCO,II.1.1,Córdoba,AR-X,annual,2017,naphtha combustion consumption by freight transport,1.4473536,TJ,CH4,3.0,kg/TJ,4.3420608000000005,kg -31e4cd9e-8aab-3dcc-8966-637a3924e84f,SESCO,II.1.1,Córdoba,AR-X,annual,2017,naphtha combustion consumption by freight transport,1.4473536,TJ,N2O,0.6,kg/TJ,0.86841216,kg -b18a0809-8941-3b79-bfd7-20ffc805f464,SESCO,II.1.1,Santa Fe,AR-S,annual,2017,naphtha combustion consumption by freight transport,0.2713788,TJ,CO2,73300.0,kg/TJ,19892.066039999998,kg -25290fdc-307d-3f9e-920c-93f62d339159,SESCO,II.1.1,Santa Fe,AR-S,annual,2017,naphtha combustion consumption by freight transport,0.2713788,TJ,CH4,3.0,kg/TJ,0.8141364,kg -f0afb7e9-d9c2-3e0b-ad33-deaa002f130d,SESCO,II.1.1,Santa Fe,AR-S,annual,2017,naphtha combustion consumption by freight transport,0.2713788,TJ,N2O,0.6,kg/TJ,0.16282728,kg -0de19201-d87e-39dd-8111-070178346af1,SESCO,II.1.1,Buenos Aires,AR-B,annual,2017,naphtha combustion consumption by freight transport,7.025695599999999,TJ,CO2,73300.0,kg/TJ,514983.4874799999,kg -c527f3c7-9401-3a49-8180-cf2b3c21850f,SESCO,II.1.1,Buenos Aires,AR-B,annual,2017,naphtha combustion consumption by freight transport,7.025695599999999,TJ,CH4,3.0,kg/TJ,21.077086799999996,kg -40cd6979-fa33-3b42-bfb5-280ac31f9302,SESCO,II.1.1,Buenos Aires,AR-B,annual,2017,naphtha combustion consumption by freight transport,7.025695599999999,TJ,N2O,0.6,kg/TJ,4.215417359999999,kg -cb59ec41-cee1-3301-80e4-e9a6c17ae887,SESCO,II.1.1,Capital Federal,AR-C,annual,2017,naphtha combustion consumption by freight transport,4.0405288,TJ,CO2,73300.0,kg/TJ,296170.76103999995,kg -57cd4571-57c0-3229-842d-f51d91a78921,SESCO,II.1.1,Capital Federal,AR-C,annual,2017,naphtha combustion consumption by freight transport,4.0405288,TJ,CH4,3.0,kg/TJ,12.121586399999998,kg -7c6f2214-7865-3768-8227-cc0444837b35,SESCO,II.1.1,Capital Federal,AR-C,annual,2017,naphtha combustion consumption by freight transport,4.0405288,TJ,N2O,0.6,kg/TJ,2.42431728,kg -9dae2ae0-6f6a-314a-9a04-341768aa823e,SESCO,II.1.1,Chubut,AR-U,annual,2017,naphtha combustion consumption by freight transport,0.030153199999999998,TJ,CO2,73300.0,kg/TJ,2210.2295599999998,kg -b2174810-99ed-39bf-8284-83807e98baa6,SESCO,II.1.1,Chubut,AR-U,annual,2017,naphtha combustion consumption by freight transport,0.030153199999999998,TJ,CH4,3.0,kg/TJ,0.0904596,kg -b79f7968-cddb-3090-9685-b34dc23e1445,SESCO,II.1.1,Chubut,AR-U,annual,2017,naphtha combustion consumption by freight transport,0.030153199999999998,TJ,N2O,0.6,kg/TJ,0.018091919999999997,kg -514a50df-6edb-33ca-80ae-a47185bbc566,SESCO,II.1.1,Córdoba,AR-X,annual,2017,naphtha combustion consumption by freight transport,1.6282728,TJ,CO2,73300.0,kg/TJ,119352.39624,kg -0995adf6-f88b-3ff2-8208-12bdcb991028,SESCO,II.1.1,Córdoba,AR-X,annual,2017,naphtha combustion consumption by freight transport,1.6282728,TJ,CH4,3.0,kg/TJ,4.8848184,kg -8c37649f-bb1b-3427-926b-632043f156a9,SESCO,II.1.1,Córdoba,AR-X,annual,2017,naphtha combustion consumption by freight transport,1.6282728,TJ,N2O,0.6,kg/TJ,0.9769636799999999,kg -e447802f-d4c0-375d-a9ef-62c08ad88ccf,SESCO,II.1.1,Santa Fe,AR-S,annual,2017,naphtha combustion consumption by freight transport,0.9950555999999999,TJ,CO2,73300.0,kg/TJ,72937.57548,kg -605cacda-0735-3a2a-8e5f-fba96b37d021,SESCO,II.1.1,Santa Fe,AR-S,annual,2017,naphtha combustion consumption by freight transport,0.9950555999999999,TJ,CH4,3.0,kg/TJ,2.9851668,kg -1b50fca8-f324-3983-a295-7c64126b65a7,SESCO,II.1.1,Santa Fe,AR-S,annual,2017,naphtha combustion consumption by freight transport,0.9950555999999999,TJ,N2O,0.6,kg/TJ,0.59703336,kg -91e1c74f-c1f3-34e5-970f-66a609f8d576,SESCO,II.1.1,Buenos Aires,AR-B,annual,2017,naphtha combustion consumption by public passenger transport,0.030153199999999998,TJ,CO2,73300.0,kg/TJ,2210.2295599999998,kg -0f77e354-d408-3afe-b8dc-485b037f493d,SESCO,II.1.1,Buenos Aires,AR-B,annual,2017,naphtha combustion consumption by public passenger transport,0.030153199999999998,TJ,CH4,3.0,kg/TJ,0.0904596,kg -f14385c7-3c36-387b-b772-1152e2b12a65,SESCO,II.1.1,Buenos Aires,AR-B,annual,2017,naphtha combustion consumption by public passenger transport,0.030153199999999998,TJ,N2O,0.6,kg/TJ,0.018091919999999997,kg -db7945e7-5538-3460-8bf9-57fe538d2dc5,SESCO,II.1.1,Santa Fe,AR-S,annual,2017,naphtha combustion consumption by public passenger transport,1.6885792,TJ,CO2,73300.0,kg/TJ,123772.85536,kg -bd2217ef-5146-3423-956d-48bf5e7fbb1a,SESCO,II.1.1,Santa Fe,AR-S,annual,2017,naphtha combustion consumption by public passenger transport,1.6885792,TJ,CH4,3.0,kg/TJ,5.0657376,kg -9a6721f2-bffa-3ade-8be8-570a97ddded0,SESCO,II.1.1,Santa Fe,AR-S,annual,2017,naphtha combustion consumption by public passenger transport,1.6885792,TJ,N2O,0.6,kg/TJ,1.01314752,kg -2624d344-ffd6-3d89-b7b4-aebfe2656c6c,SESCO,II.1.1,Santa Fe,AR-S,annual,2017,naphtha combustion consumption by public passenger transport,0.5729107999999999,TJ,CO2,73300.0,kg/TJ,41994.361639999996,kg -0cb33cdf-6346-3e69-9f3d-a272e15f214e,SESCO,II.1.1,Santa Fe,AR-S,annual,2017,naphtha combustion consumption by public passenger transport,0.5729107999999999,TJ,CH4,3.0,kg/TJ,1.7187324,kg -145b0c9c-8a3b-3f83-900a-cd7d6d3be18e,SESCO,II.1.1,Santa Fe,AR-S,annual,2017,naphtha combustion consumption by public passenger transport,0.5729107999999999,TJ,N2O,0.6,kg/TJ,0.34374647999999997,kg -cf048e18-8da5-3048-8b58-363db471e3d2,SESCO,II.5.1,Santiago del Estero,AR-G,annual,2017,naphtha combustion consumption by agriculture machines,0.4468885159199999,TJ,CO2,73300.0,kg/TJ,32756.928216935994,kg -09870832-156b-3f5c-b355-d9b09e43d3c2,SESCO,II.5.1,Santiago del Estero,AR-G,annual,2017,naphtha combustion consumption by agriculture machines,0.4468885159199999,TJ,CH4,3.0,kg/TJ,1.3406655477599996,kg -b7e06ccb-784b-3df4-ae7b-eed8947c7c4e,SESCO,II.5.1,Santiago del Estero,AR-G,annual,2017,naphtha combustion consumption by agriculture machines,0.4468885159199999,TJ,N2O,0.6,kg/TJ,0.2681331095519999,kg -f3bcf601-3616-3e72-8caf-a3efcbb64519,SESCO,II.1.1,Buenos Aires,AR-B,annual,2017,naphtha combustion consumption by to the public,1861.3249379185997,TJ,CO2,73300.0,kg/TJ,136435117.94943336,kg -2f222687-4f55-37ef-8211-3b60ae319249,SESCO,II.1.1,Buenos Aires,AR-B,annual,2017,naphtha combustion consumption by to the public,1861.3249379185997,TJ,CH4,3.0,kg/TJ,5583.974813755799,kg -64801fb8-df7c-3a35-8352-3e0351aae4ad,SESCO,II.1.1,Buenos Aires,AR-B,annual,2017,naphtha combustion consumption by to the public,1861.3249379185997,TJ,N2O,0.6,kg/TJ,1116.7949627511598,kg -b074f77b-8522-382f-83a7-32501d3d3b55,SESCO,II.1.1,Capital Federal,AR-C,annual,2017,naphtha combustion consumption by to the public,187.60665509432002,TJ,CO2,73300.0,kg/TJ,13751567.818413658,kg -ceaea81b-9d8b-3937-965a-62e66061b565,SESCO,II.1.1,Capital Federal,AR-C,annual,2017,naphtha combustion consumption by to the public,187.60665509432002,TJ,CH4,3.0,kg/TJ,562.8199652829601,kg -f2bb4a56-d8eb-3596-b29b-3165f64d1c2c,SESCO,II.1.1,Capital Federal,AR-C,annual,2017,naphtha combustion consumption by to the public,187.60665509432002,TJ,N2O,0.6,kg/TJ,112.56399305659201,kg -9240cce7-4178-31be-b169-7c22fd57c83b,SESCO,II.1.1,Catamarca,AR-K,annual,2017,naphtha combustion consumption by to the public,175.75768377551998,TJ,CO2,73300.0,kg/TJ,12883038.220745614,kg -16bc13ff-9af3-3d34-b6e2-eb0aec755c9a,SESCO,II.1.1,Catamarca,AR-K,annual,2017,naphtha combustion consumption by to the public,175.75768377551998,TJ,CH4,3.0,kg/TJ,527.2730513265599,kg -ebf87ff7-62e6-3064-873a-a55d91081874,SESCO,II.1.1,Catamarca,AR-K,annual,2017,naphtha combustion consumption by to the public,175.75768377551998,TJ,N2O,0.6,kg/TJ,105.45461026531198,kg -c2981ca4-2e89-36be-b680-0038be12de29,SESCO,II.1.1,Chaco,AR-H,annual,2017,naphtha combustion consumption by to the public,250.78373622456,TJ,CO2,73300.0,kg/TJ,18382447.865260247,kg -037522c1-bc64-3f60-ab9c-63bf0722cef7,SESCO,II.1.1,Chaco,AR-H,annual,2017,naphtha combustion consumption by to the public,250.78373622456,TJ,CH4,3.0,kg/TJ,752.3512086736799,kg -5ec13900-7c95-3e97-b033-6c1bc6f04942,SESCO,II.1.1,Chaco,AR-H,annual,2017,naphtha combustion consumption by to the public,250.78373622456,TJ,N2O,0.6,kg/TJ,150.470241734736,kg -f20fff97-8076-3735-84ab-96629e5d9a4d,SESCO,II.1.1,Corrientes,AR-W,annual,2017,naphtha combustion consumption by to the public,241.11071932331998,TJ,CO2,73300.0,kg/TJ,17673415.726399355,kg -a992ba39-c519-36ca-94d2-1660ea28c644,SESCO,II.1.1,Corrientes,AR-W,annual,2017,naphtha combustion consumption by to the public,241.11071932331998,TJ,CH4,3.0,kg/TJ,723.33215796996,kg -e564c520-0067-3cad-9dfc-f3b445a5bd2a,SESCO,II.1.1,Corrientes,AR-W,annual,2017,naphtha combustion consumption by to the public,241.11071932331998,TJ,N2O,0.6,kg/TJ,144.66643159399197,kg -70242d98-d34b-3ab5-828c-83567a025944,SESCO,II.1.1,Córdoba,AR-X,annual,2017,naphtha combustion consumption by to the public,810.91909577448,TJ,CO2,73300.0,kg/TJ,59440369.72026938,kg -2161e2cc-a307-365c-b0ff-af09fd45a7f6,SESCO,II.1.1,Córdoba,AR-X,annual,2017,naphtha combustion consumption by to the public,810.91909577448,TJ,CH4,3.0,kg/TJ,2432.75728732344,kg -2f59112e-b6c7-33c8-9c03-7ca39147433f,SESCO,II.1.1,Córdoba,AR-X,annual,2017,naphtha combustion consumption by to the public,810.91909577448,TJ,N2O,0.6,kg/TJ,486.5514574646879,kg -cccbfd70-abe9-3161-8a5d-15e71922b98e,SESCO,II.1.1,Entre Rios,AR-E,annual,2017,naphtha combustion consumption by to the public,371.83890779112,TJ,CO2,73300.0,kg/TJ,27255791.941089094,kg -a5270402-9b43-3094-a048-70ca689c94af,SESCO,II.1.1,Entre Rios,AR-E,annual,2017,naphtha combustion consumption by to the public,371.83890779112,TJ,CH4,3.0,kg/TJ,1115.51672337336,kg -eec7c11d-6cf9-36bb-9837-e2294c52c700,SESCO,II.1.1,Entre Rios,AR-E,annual,2017,naphtha combustion consumption by to the public,371.83890779112,TJ,N2O,0.6,kg/TJ,223.103344674672,kg -86f11393-ca60-357a-b92f-2c4eb376c21a,SESCO,II.1.1,Jujuy,AR-Y,annual,2017,naphtha combustion consumption by to the public,71.87884536756,TJ,CO2,73300.0,kg/TJ,5268719.365442148,kg -60edacb6-c46a-3b6e-ad25-a2cbdf5eb7a1,SESCO,II.1.1,Jujuy,AR-Y,annual,2017,naphtha combustion consumption by to the public,71.87884536756,TJ,CH4,3.0,kg/TJ,215.63653610268,kg -b682b9a5-ea25-3f6e-b9a4-f4a547d5797e,SESCO,II.1.1,Jujuy,AR-Y,annual,2017,naphtha combustion consumption by to the public,71.87884536756,TJ,N2O,0.6,kg/TJ,43.127307220536004,kg -73067b35-227e-32ed-a65b-101798d677a1,SESCO,II.1.1,La Pampa,AR-L,annual,2017,naphtha combustion consumption by to the public,9.2742046474,TJ,CO2,73300.0,kg/TJ,679799.20065442,kg -ca8ef64e-1163-3936-a545-d45701233690,SESCO,II.1.1,La Pampa,AR-L,annual,2017,naphtha combustion consumption by to the public,9.2742046474,TJ,CH4,3.0,kg/TJ,27.8226139422,kg -3bb7868d-0c57-3fc1-9f88-734384764889,SESCO,II.1.1,La Pampa,AR-L,annual,2017,naphtha combustion consumption by to the public,9.2742046474,TJ,N2O,0.6,kg/TJ,5.56452278844,kg -523e57f7-826a-3afa-9373-237e7461c849,SESCO,II.1.1,La Rioja,AR-F,annual,2017,naphtha combustion consumption by to the public,44.077564814359995,TJ,CO2,73300.0,kg/TJ,3230885.5008925875,kg -1d55b80c-7f8f-3094-b51e-ef577e50c334,SESCO,II.1.1,La Rioja,AR-F,annual,2017,naphtha combustion consumption by to the public,44.077564814359995,TJ,CH4,3.0,kg/TJ,132.23269444308,kg -6a240e95-e090-3263-bf77-71aa57d30cbd,SESCO,II.1.1,La Rioja,AR-F,annual,2017,naphtha combustion consumption by to the public,44.077564814359995,TJ,N2O,0.6,kg/TJ,26.446538888615997,kg -2f45d1c2-fe82-3c96-a938-9e73e98acaf6,SESCO,II.1.1,Mendoza,AR-M,annual,2017,naphtha combustion consumption by to the public,247.04113611715997,TJ,CO2,73300.0,kg/TJ,18108115.277387824,kg -5ad47e00-9bfb-362a-acb8-084d77b801e1,SESCO,II.1.1,Mendoza,AR-M,annual,2017,naphtha combustion consumption by to the public,247.04113611715997,TJ,CH4,3.0,kg/TJ,741.1234083514798,kg -59eb1a46-434a-3ad4-a7d3-e77379ad673d,SESCO,II.1.1,Mendoza,AR-M,annual,2017,naphtha combustion consumption by to the public,247.04113611715997,TJ,N2O,0.6,kg/TJ,148.22468167029598,kg -f6d97419-0d6a-3386-af61-a7b6e5c0a10e,SESCO,II.1.1,Misiones,AR-N,annual,2017,naphtha combustion consumption by to the public,277.4340600878,TJ,CO2,73300.0,kg/TJ,20335916.60443574,kg -dddb1edb-0af5-36aa-88f5-d1cb20f233bd,SESCO,II.1.1,Misiones,AR-N,annual,2017,naphtha combustion consumption by to the public,277.4340600878,TJ,CH4,3.0,kg/TJ,832.3021802634,kg -bac1c144-4485-3c59-8368-a1b41247e68d,SESCO,II.1.1,Misiones,AR-N,annual,2017,naphtha combustion consumption by to the public,277.4340600878,TJ,N2O,0.6,kg/TJ,166.46043605268,kg -8fea493e-fb14-39bd-aaf6-c5ccf2e4e962,SESCO,II.1.1,San Juan,AR-J,annual,2017,naphtha combustion consumption by to the public,283.55160161019995,TJ,CO2,73300.0,kg/TJ,20784332.398027655,kg -88caeeb9-3b92-3db4-8c99-64c46db3cb42,SESCO,II.1.1,San Juan,AR-J,annual,2017,naphtha combustion consumption by to the public,283.55160161019995,TJ,CH4,3.0,kg/TJ,850.6548048305999,kg -a4e67916-acc5-39ae-a594-dedf392effb7,SESCO,II.1.1,San Juan,AR-J,annual,2017,naphtha combustion consumption by to the public,283.55160161019995,TJ,N2O,0.6,kg/TJ,170.13096096611997,kg -71345b28-5662-36a9-bfd8-b8458600d90d,SESCO,II.1.1,San Luis,AR-D,annual,2017,naphtha combustion consumption by to the public,190.86180761647998,TJ,CO2,73300.0,kg/TJ,13990170.498287983,kg -07e73d77-703d-3ec0-9946-3980bcfb6d36,SESCO,II.1.1,San Luis,AR-D,annual,2017,naphtha combustion consumption by to the public,190.86180761647998,TJ,CH4,3.0,kg/TJ,572.58542284944,kg -9d814d94-68cb-3502-8e68-628ecd0af04f,SESCO,II.1.1,San Luis,AR-D,annual,2017,naphtha combustion consumption by to the public,190.86180761647998,TJ,N2O,0.6,kg/TJ,114.51708456988798,kg -25eed408-1831-35ef-ac8b-7cb1a70140eb,SESCO,II.1.1,Santa Fe,AR-S,annual,2017,naphtha combustion consumption by to the public,997.4022938972399,TJ,CO2,73300.0,kg/TJ,73109588.14266768,kg -13fbdf38-8d62-3106-9fa3-b190df174186,SESCO,II.1.1,Santa Fe,AR-S,annual,2017,naphtha combustion consumption by to the public,997.4022938972399,TJ,CH4,3.0,kg/TJ,2992.20688169172,kg -3974118d-2d3c-3ffa-a0dc-aa245e8e81c1,SESCO,II.1.1,Santa Fe,AR-S,annual,2017,naphtha combustion consumption by to the public,997.4022938972399,TJ,N2O,0.6,kg/TJ,598.441376338344,kg -249914b8-e227-3a7d-93c0-da51d41269de,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2017,naphtha combustion consumption by to the public,202.76431292655997,TJ,CO2,73300.0,kg/TJ,14862624.137516845,kg -99a58730-b08d-3ec3-a2f1-da355d0114df,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2017,naphtha combustion consumption by to the public,202.76431292655997,TJ,CH4,3.0,kg/TJ,608.2929387796798,kg -37888093-a5c9-3209-a8fc-07ca6ff40712,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2017,naphtha combustion consumption by to the public,202.76431292655997,TJ,N2O,0.6,kg/TJ,121.65858775593597,kg -4dcfc158-e5b9-3150-b810-00b55fc1f37c,SESCO,II.1.1,Tucuman,AR-T,annual,2017,naphtha combustion consumption by to the public,194.06686662748,TJ,CO2,73300.0,kg/TJ,14225101.323794285,kg -260ff7c9-7025-3e2a-99dd-a6b5bae296c5,SESCO,II.1.1,Tucuman,AR-T,annual,2017,naphtha combustion consumption by to the public,194.06686662748,TJ,CH4,3.0,kg/TJ,582.20059988244,kg -ad9bdfe1-1c70-3468-b688-066dd90847cb,SESCO,II.1.1,Tucuman,AR-T,annual,2017,naphtha combustion consumption by to the public,194.06686662748,TJ,N2O,0.6,kg/TJ,116.440119976488,kg -7ed008ac-b49e-3f29-9346-bed2aac34262,SESCO,II.1.1,Buenos Aires,AR-B,annual,2017,naphtha combustion consumption by to the public,347.61457471048,TJ,CO2,73300.0,kg/TJ,25480148.326278184,kg -bae26f85-ef97-370b-af4c-c70d4a13e63e,SESCO,II.1.1,Buenos Aires,AR-B,annual,2017,naphtha combustion consumption by to the public,347.61457471048,TJ,CH4,3.0,kg/TJ,1042.84372413144,kg -a9dd13b9-6843-36b3-85a5-78dd17f5a590,SESCO,II.1.1,Buenos Aires,AR-B,annual,2017,naphtha combustion consumption by to the public,347.61457471048,TJ,N2O,0.6,kg/TJ,208.568744826288,kg -9e6d8a56-3077-305c-87b2-57bcb047726d,SESCO,II.1.1,Capital Federal,AR-C,annual,2017,naphtha combustion consumption by to the public,63.568762152279994,TJ,CO2,73300.0,kg/TJ,4659590.265762123,kg -e6ab1511-2244-3e1d-84dc-27ed85259a48,SESCO,II.1.1,Capital Federal,AR-C,annual,2017,naphtha combustion consumption by to the public,63.568762152279994,TJ,CH4,3.0,kg/TJ,190.70628645684,kg -47e0856a-09b6-35c7-b096-9c333c0b5eed,SESCO,II.1.1,Capital Federal,AR-C,annual,2017,naphtha combustion consumption by to the public,63.568762152279994,TJ,N2O,0.6,kg/TJ,38.14125729136799,kg -578e0da1-883f-31f3-95f5-78a6d26d608f,SESCO,II.1.1,Catamarca,AR-K,annual,2017,naphtha combustion consumption by to the public,23.0013584878,TJ,CO2,73300.0,kg/TJ,1685999.57715574,kg -84c89888-4c14-30a3-82aa-02395f168fe3,SESCO,II.1.1,Catamarca,AR-K,annual,2017,naphtha combustion consumption by to the public,23.0013584878,TJ,CH4,3.0,kg/TJ,69.0040754634,kg -5c37cec9-9293-30b2-9430-d1f85be1fcb1,SESCO,II.1.1,Catamarca,AR-K,annual,2017,naphtha combustion consumption by to the public,23.0013584878,TJ,N2O,0.6,kg/TJ,13.80081509268,kg -ce452435-0723-3c98-9521-12a8b924eb52,SESCO,II.1.1,Chaco,AR-H,annual,2017,naphtha combustion consumption by to the public,31.11458050624,TJ,CO2,73300.0,kg/TJ,2280698.751107392,kg -a7c9a03b-5567-3f3b-bc18-351a6392576b,SESCO,II.1.1,Chaco,AR-H,annual,2017,naphtha combustion consumption by to the public,31.11458050624,TJ,CH4,3.0,kg/TJ,93.34374151872,kg -b886db04-1b75-369b-ab95-41c5e7f95ccf,SESCO,II.1.1,Chaco,AR-H,annual,2017,naphtha combustion consumption by to the public,31.11458050624,TJ,N2O,0.6,kg/TJ,18.668748303744,kg -553fdf7a-1ced-3803-b88d-2514445c322e,SESCO,II.1.1,Corrientes,AR-W,annual,2017,naphtha combustion consumption by to the public,61.380405723559996,TJ,CO2,73300.0,kg/TJ,4499183.739536948,kg -f802e0a5-8e07-3f87-8f0f-afda26530377,SESCO,II.1.1,Corrientes,AR-W,annual,2017,naphtha combustion consumption by to the public,61.380405723559996,TJ,CH4,3.0,kg/TJ,184.14121717068,kg -131ee1bf-8acd-3226-b076-3cdd4cc0327d,SESCO,II.1.1,Corrientes,AR-W,annual,2017,naphtha combustion consumption by to the public,61.380405723559996,TJ,N2O,0.6,kg/TJ,36.828243434136,kg -f9fe6af2-473f-3e7b-b0d8-64ba18900b5d,SESCO,II.1.1,Córdoba,AR-X,annual,2017,naphtha combustion consumption by to the public,179.14433138756002,TJ,CO2,73300.0,kg/TJ,13131279.49070815,kg -4d1790f5-5dca-3c12-8145-0c6eb41c9d1c,SESCO,II.1.1,Córdoba,AR-X,annual,2017,naphtha combustion consumption by to the public,179.14433138756002,TJ,CH4,3.0,kg/TJ,537.4329941626801,kg -7bf5977d-f17c-3636-8b67-5b6198a83e45,SESCO,II.1.1,Córdoba,AR-X,annual,2017,naphtha combustion consumption by to the public,179.14433138756002,TJ,N2O,0.6,kg/TJ,107.486598832536,kg -b646c411-1196-3e77-b435-d6610a44cf91,SESCO,II.1.1,Entre Rios,AR-E,annual,2017,naphtha combustion consumption by to the public,75.36566794064,TJ,CO2,73300.0,kg/TJ,5524303.460048911,kg -979779d7-104d-3be2-97c7-aa2905508e82,SESCO,II.1.1,Entre Rios,AR-E,annual,2017,naphtha combustion consumption by to the public,75.36566794064,TJ,CH4,3.0,kg/TJ,226.09700382192,kg -47d9bcef-7427-3587-9bf9-6a7e1775f71b,SESCO,II.1.1,Entre Rios,AR-E,annual,2017,naphtha combustion consumption by to the public,75.36566794064,TJ,N2O,0.6,kg/TJ,45.219400764384,kg -6f7c7b81-a210-33d8-80b2-6a15542f1e33,SESCO,II.1.1,Jujuy,AR-Y,annual,2017,naphtha combustion consumption by to the public,1.7111910846799998,TJ,CO2,73300.0,kg/TJ,125430.30650704399,kg -40e48394-9d80-3167-b3b3-c00e3fb814da,SESCO,II.1.1,Jujuy,AR-Y,annual,2017,naphtha combustion consumption by to the public,1.7111910846799998,TJ,CH4,3.0,kg/TJ,5.13357325404,kg -2cb91b70-5e98-3d12-99c1-bd8cb5fa5625,SESCO,II.1.1,Jujuy,AR-Y,annual,2017,naphtha combustion consumption by to the public,1.7111910846799998,TJ,N2O,0.6,kg/TJ,1.0267146508079998,kg -e00442a6-ad5f-34ba-aedf-a091e2621048,SESCO,II.1.1,La Pampa,AR-L,annual,2017,naphtha combustion consumption by to the public,3.846342192,TJ,CO2,73300.0,kg/TJ,281936.8826736,kg -032f5aae-c163-3825-8987-15ae9de5c55d,SESCO,II.1.1,La Pampa,AR-L,annual,2017,naphtha combustion consumption by to the public,3.846342192,TJ,CH4,3.0,kg/TJ,11.539026576,kg -288ef6ed-ffdf-3ff9-baee-ade65b324c03,SESCO,II.1.1,La Pampa,AR-L,annual,2017,naphtha combustion consumption by to the public,3.846342192,TJ,N2O,0.6,kg/TJ,2.3078053152,kg -3bde428b-dba8-343a-8d24-da13f907817e,SESCO,II.1.1,La Rioja,AR-F,annual,2017,naphtha combustion consumption by to the public,9.38858176564,TJ,CO2,73300.0,kg/TJ,688183.043421412,kg -81255f68-b7a0-3fe1-9006-0849a2110cbc,SESCO,II.1.1,La Rioja,AR-F,annual,2017,naphtha combustion consumption by to the public,9.38858176564,TJ,CH4,3.0,kg/TJ,28.16574529692,kg -74710ca4-0600-352b-a8b6-84192627ed73,SESCO,II.1.1,La Rioja,AR-F,annual,2017,naphtha combustion consumption by to the public,9.38858176564,TJ,N2O,0.6,kg/TJ,5.6331490593839995,kg -4bcd172d-1f42-3426-acfe-408e893dd181,SESCO,II.1.1,Mendoza,AR-M,annual,2017,naphtha combustion consumption by to the public,51.126466317079995,TJ,CO2,73300.0,kg/TJ,3747569.9810419637,kg -ee449325-9fe2-3d40-af53-97dba56e6546,SESCO,II.1.1,Mendoza,AR-M,annual,2017,naphtha combustion consumption by to the public,51.126466317079995,TJ,CH4,3.0,kg/TJ,153.37939895123998,kg -4c8bfcb4-2c21-3544-bd81-41779697e0bb,SESCO,II.1.1,Mendoza,AR-M,annual,2017,naphtha combustion consumption by to the public,51.126466317079995,TJ,N2O,0.6,kg/TJ,30.675879790247997,kg -d7dea0be-aeed-30c6-9da0-0d891f0c2a24,SESCO,II.1.1,Misiones,AR-N,annual,2017,naphtha combustion consumption by to the public,39.21021717844,TJ,CO2,73300.0,kg/TJ,2874108.919179652,kg -3bb3a088-a312-3dd2-9bf2-5cd5494347b2,SESCO,II.1.1,Misiones,AR-N,annual,2017,naphtha combustion consumption by to the public,39.21021717844,TJ,CH4,3.0,kg/TJ,117.63065153532,kg -8f67464d-513d-3945-a837-24b2fd8a7ca9,SESCO,II.1.1,Misiones,AR-N,annual,2017,naphtha combustion consumption by to the public,39.21021717844,TJ,N2O,0.6,kg/TJ,23.526130307063998,kg -695c6f45-e1aa-38d8-b090-0883e6149150,SESCO,II.1.1,San Juan,AR-J,annual,2017,naphtha combustion consumption by to the public,70.34760556516,TJ,CO2,73300.0,kg/TJ,5156479.487926228,kg -e9915c90-a45d-3bd0-b066-f9ccff5d8c9a,SESCO,II.1.1,San Juan,AR-J,annual,2017,naphtha combustion consumption by to the public,70.34760556516,TJ,CH4,3.0,kg/TJ,211.04281669547998,kg -6bf02e93-4d41-39b1-b968-dd5ef933de99,SESCO,II.1.1,San Juan,AR-J,annual,2017,naphtha combustion consumption by to the public,70.34760556516,TJ,N2O,0.6,kg/TJ,42.208563339095996,kg -18d91a2c-a14e-30e2-ad27-a3ecfe387711,SESCO,II.1.1,San Luis,AR-D,annual,2017,naphtha combustion consumption by to the public,46.432972986399996,TJ,CO2,73300.0,kg/TJ,3403536.9199031196,kg -3943277c-1ec5-39a1-80f0-8c797fd31ce8,SESCO,II.1.1,San Luis,AR-D,annual,2017,naphtha combustion consumption by to the public,46.432972986399996,TJ,CH4,3.0,kg/TJ,139.2989189592,kg -7dad4826-7a5f-3d04-a462-2c0922c02bb9,SESCO,II.1.1,San Luis,AR-D,annual,2017,naphtha combustion consumption by to the public,46.432972986399996,TJ,N2O,0.6,kg/TJ,27.859783791839998,kg -97c00563-c3bd-362e-ae73-fc97df1cc1d7,SESCO,II.1.1,Santa Fe,AR-S,annual,2017,naphtha combustion consumption by to the public,226.79979953091998,TJ,CO2,73300.0,kg/TJ,16624425.305616435,kg -76294dce-b2c4-383b-8cc7-bfa63f014818,SESCO,II.1.1,Santa Fe,AR-S,annual,2017,naphtha combustion consumption by to the public,226.79979953091998,TJ,CH4,3.0,kg/TJ,680.39939859276,kg -1276c7ee-9b5b-31ae-b0c6-0761b038f780,SESCO,II.1.1,Santa Fe,AR-S,annual,2017,naphtha combustion consumption by to the public,226.79979953091998,TJ,N2O,0.6,kg/TJ,136.07987971855198,kg -c0be0008-92ba-32d0-b5f0-6e3677c377f3,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2017,naphtha combustion consumption by to the public,36.67879271672,TJ,CO2,73300.0,kg/TJ,2688555.506135576,kg -afd508e0-f26f-38f9-9571-1e89e7bd5eba,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2017,naphtha combustion consumption by to the public,36.67879271672,TJ,CH4,3.0,kg/TJ,110.03637815015999,kg -2194bfc9-333e-39a8-96fe-869694b0362c,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2017,naphtha combustion consumption by to the public,36.67879271672,TJ,N2O,0.6,kg/TJ,22.007275630031998,kg -aea55db3-f21c-3600-9fc6-3b89f8106daf,SESCO,II.1.1,Tucuman,AR-T,annual,2017,naphtha combustion consumption by to the public,26.496051046079995,TJ,CO2,73300.0,kg/TJ,1942160.5416776636,kg -be5d36c4-8b21-34dd-881a-7ed5c156a45f,SESCO,II.1.1,Tucuman,AR-T,annual,2017,naphtha combustion consumption by to the public,26.496051046079995,TJ,CH4,3.0,kg/TJ,79.48815313823998,kg -ca2c5bf0-2199-3dc5-951a-5557eed734f5,SESCO,II.1.1,Tucuman,AR-T,annual,2017,naphtha combustion consumption by to the public,26.496051046079995,TJ,N2O,0.6,kg/TJ,15.897630627647995,kg -62a65cf7-23c9-371b-8440-ab712df1418b,SESCO,II.5.1,Buenos Aires,AR-B,annual,2017,naphtha combustion consumption by agriculture machines,7.851109296800001,TJ,CO2,73300.0,kg/TJ,575486.31145544,kg -e8bedd23-c89b-31b0-9941-f61e88202caf,SESCO,II.5.1,Buenos Aires,AR-B,annual,2017,naphtha combustion consumption by agriculture machines,7.851109296800001,TJ,CH4,3.0,kg/TJ,23.553327890400002,kg -f3539ebe-d332-3ca4-8fa2-4748c5866975,SESCO,II.5.1,Buenos Aires,AR-B,annual,2017,naphtha combustion consumption by agriculture machines,7.851109296800001,TJ,N2O,0.6,kg/TJ,4.71066557808,kg -be3b7df4-2d53-34cf-b049-826b9ce911d2,SESCO,II.5.1,Neuquén,AR-Q,annual,2017,naphtha combustion consumption by agriculture machines,3.1429584956,TJ,CO2,73300.0,kg/TJ,230378.85772747998,kg -ed5b4ca3-5f32-3f66-a924-8493219e6bc0,SESCO,II.5.1,Neuquén,AR-Q,annual,2017,naphtha combustion consumption by agriculture machines,3.1429584956,TJ,CH4,3.0,kg/TJ,9.428875486799999,kg -105f8a06-66ee-3683-8682-33fdadd08142,SESCO,II.5.1,Neuquén,AR-Q,annual,2017,naphtha combustion consumption by agriculture machines,3.1429584956,TJ,N2O,0.6,kg/TJ,1.8857750973599998,kg -28bbeaf9-7f0c-3e66-91f1-81ebf2b3bba4,SESCO,II.5.1,Rio Negro,AR-R,annual,2017,naphtha combustion consumption by agriculture machines,1.2912806367999998,TJ,CO2,73300.0,kg/TJ,94650.87067743999,kg -a34ede69-aa44-3607-b53f-bb5d964e0304,SESCO,II.5.1,Rio Negro,AR-R,annual,2017,naphtha combustion consumption by agriculture machines,1.2912806367999998,TJ,CH4,3.0,kg/TJ,3.8738419103999995,kg -14341a0d-f0a7-3b73-8d5b-a9015b076cd5,SESCO,II.5.1,Rio Negro,AR-R,annual,2017,naphtha combustion consumption by agriculture machines,1.2912806367999998,TJ,N2O,0.6,kg/TJ,0.7747683820799999,kg -fd50bd7a-ca80-320f-aff5-76b884ab1d61,SESCO,II.5.1,Buenos Aires,AR-B,annual,2017,naphtha combustion consumption by agriculture machines,1.6286949447999999,TJ,CO2,73300.0,kg/TJ,119383.33945383999,kg -13c6878a-9a52-31b6-9c29-d10cd6339acb,SESCO,II.5.1,Buenos Aires,AR-B,annual,2017,naphtha combustion consumption by agriculture machines,1.6286949447999999,TJ,CH4,3.0,kg/TJ,4.8860848344,kg -b67f6829-dcfa-33cd-b607-670e0019eda0,SESCO,II.5.1,Buenos Aires,AR-B,annual,2017,naphtha combustion consumption by agriculture machines,1.6286949447999999,TJ,N2O,0.6,kg/TJ,0.9772169668799999,kg -96b6bd1e-46b7-3cb6-b2b7-25a1528e7150,SESCO,II.1.1,Buenos Aires,AR-B,annual,2017,naphtha combustion consumption by to the public,3978.4654031891996,TJ,CO2,73300.0,kg/TJ,291621514.05376834,kg -0ba91e92-aff2-3caa-9438-f42c3dac86a1,SESCO,II.1.1,Buenos Aires,AR-B,annual,2017,naphtha combustion consumption by to the public,3978.4654031891996,TJ,CH4,3.0,kg/TJ,11935.3962095676,kg -a41a4a6b-b25c-3238-88d1-aba22b2f5f24,SESCO,II.1.1,Buenos Aires,AR-B,annual,2017,naphtha combustion consumption by to the public,3978.4654031891996,TJ,N2O,0.6,kg/TJ,2387.0792419135196,kg -9944565b-ddef-370b-b625-0af4b9674425,SESCO,II.1.1,Capital Federal,AR-C,annual,2017,naphtha combustion consumption by to the public,462.70311549,TJ,CO2,73300.0,kg/TJ,33916138.365417,kg -3b4f2556-5811-30e0-88bb-076d6f3a4a85,SESCO,II.1.1,Capital Federal,AR-C,annual,2017,naphtha combustion consumption by to the public,462.70311549,TJ,CH4,3.0,kg/TJ,1388.10934647,kg -61bb8e0a-0ff6-354a-99b2-147f3ca43b45,SESCO,II.1.1,Capital Federal,AR-C,annual,2017,naphtha combustion consumption by to the public,462.70311549,TJ,N2O,0.6,kg/TJ,277.621869294,kg -04027823-8326-334a-8735-f9668beff522,SESCO,II.1.1,Chubut,AR-U,annual,2017,naphtha combustion consumption by to the public,1351.7248670771996,TJ,CO2,73300.0,kg/TJ,99081432.75675873,kg -936a9b61-96a0-32d4-a463-7db5edf27dd7,SESCO,II.1.1,Chubut,AR-U,annual,2017,naphtha combustion consumption by to the public,1351.7248670771996,TJ,CH4,3.0,kg/TJ,4055.174601231599,kg -2bba9481-52f7-3528-a17e-862801fb3097,SESCO,II.1.1,Chubut,AR-U,annual,2017,naphtha combustion consumption by to the public,1351.7248670771996,TJ,N2O,0.6,kg/TJ,811.0349202463198,kg -2c1709ab-ebed-3796-aa5a-6b9fd60acdc1,SESCO,II.1.1,Córdoba,AR-X,annual,2017,naphtha combustion consumption by to the public,443.9747518976,TJ,CO2,73300.0,kg/TJ,32543349.31409408,kg -0964b045-6eb4-37f0-bda2-580c77379d9f,SESCO,II.1.1,Córdoba,AR-X,annual,2017,naphtha combustion consumption by to the public,443.9747518976,TJ,CH4,3.0,kg/TJ,1331.9242556928,kg -007f664c-0f1c-3ba3-9d16-66ba630167b8,SESCO,II.1.1,Córdoba,AR-X,annual,2017,naphtha combustion consumption by to the public,443.9747518976,TJ,N2O,0.6,kg/TJ,266.38485113856,kg -bfdbc302-2c90-3100-ac6d-7ec375882e20,SESCO,II.1.1,Entre Rios,AR-E,annual,2017,naphtha combustion consumption by to the public,128.4608035172,TJ,CO2,73300.0,kg/TJ,9416176.897810759,kg -8317e25d-ac2f-3842-9f39-980116a9a888,SESCO,II.1.1,Entre Rios,AR-E,annual,2017,naphtha combustion consumption by to the public,128.4608035172,TJ,CH4,3.0,kg/TJ,385.38241055159995,kg -1ede61bc-402b-3f55-a5c6-939512eeb754,SESCO,II.1.1,Entre Rios,AR-E,annual,2017,naphtha combustion consumption by to the public,128.4608035172,TJ,N2O,0.6,kg/TJ,77.07648211031999,kg -ed8ea7bb-901e-3161-96e8-73b7105566c6,SESCO,II.1.1,La Pampa,AR-L,annual,2017,naphtha combustion consumption by to the public,387.999165554,TJ,CO2,73300.0,kg/TJ,28440338.8351082,kg -f97e2ec0-a902-3898-8847-a3eb3fcfd537,SESCO,II.1.1,La Pampa,AR-L,annual,2017,naphtha combustion consumption by to the public,387.999165554,TJ,CH4,3.0,kg/TJ,1163.997496662,kg -1397b00a-0abd-36bc-a76d-bc167572102f,SESCO,II.1.1,La Pampa,AR-L,annual,2017,naphtha combustion consumption by to the public,387.999165554,TJ,N2O,0.6,kg/TJ,232.7994993324,kg -c0d72020-7dae-3c8b-addb-f3fb8d02cff1,SESCO,II.1.1,Neuquén,AR-Q,annual,2017,naphtha combustion consumption by to the public,468.4222427808,TJ,CO2,73300.0,kg/TJ,34335350.39583264,kg -a16b018c-c15c-31c3-8eca-1975bf281b09,SESCO,II.1.1,Neuquén,AR-Q,annual,2017,naphtha combustion consumption by to the public,468.4222427808,TJ,CH4,3.0,kg/TJ,1405.2667283424,kg -7949ed3f-5507-3914-899d-806ad4a37228,SESCO,II.1.1,Neuquén,AR-Q,annual,2017,naphtha combustion consumption by to the public,468.4222427808,TJ,N2O,0.6,kg/TJ,281.05334566848,kg -2860f705-dbec-36f0-8258-684f169d2f5a,SESCO,II.1.1,Rio Negro,AR-R,annual,2017,naphtha combustion consumption by to the public,1209.2407449891998,TJ,CO2,73300.0,kg/TJ,88637346.60770835,kg -5004b7a1-ffbf-3247-89eb-f0b850150b79,SESCO,II.1.1,Rio Negro,AR-R,annual,2017,naphtha combustion consumption by to the public,1209.2407449891998,TJ,CH4,3.0,kg/TJ,3627.7222349675994,kg -b9e71499-7a3e-3fc3-bf13-a38ca1e941a1,SESCO,II.1.1,Rio Negro,AR-R,annual,2017,naphtha combustion consumption by to the public,1209.2407449891998,TJ,N2O,0.6,kg/TJ,725.5444469935198,kg -623f5a6a-da0f-3ad9-ba17-c789dffe159e,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2017,naphtha combustion consumption by to the public,786.3957575319998,TJ,CO2,73300.0,kg/TJ,57642809.027095586,kg -5f44e715-c0dc-3222-8bc9-2074677bbfbe,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2017,naphtha combustion consumption by to the public,786.3957575319998,TJ,CH4,3.0,kg/TJ,2359.1872725959993,kg -5916c357-0495-38c4-8f18-22d70ec6105d,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2017,naphtha combustion consumption by to the public,786.3957575319998,TJ,N2O,0.6,kg/TJ,471.83745451919987,kg -32403173-76c7-3f8d-828c-7de51458624a,SESCO,II.1.1,Santa Fe,AR-S,annual,2017,naphtha combustion consumption by to the public,543.3643426904,TJ,CO2,73300.0,kg/TJ,39828606.31920632,kg -8d851dd3-cf49-3fa6-bbe9-8cdbe48b863f,SESCO,II.1.1,Santa Fe,AR-S,annual,2017,naphtha combustion consumption by to the public,543.3643426904,TJ,CH4,3.0,kg/TJ,1630.0930280712,kg -b306cfc9-f590-3ae8-a85a-4dd4de1c2a46,SESCO,II.1.1,Santa Fe,AR-S,annual,2017,naphtha combustion consumption by to the public,543.3643426904,TJ,N2O,0.6,kg/TJ,326.01860561424,kg -62a1a131-6c60-3f7d-94ef-e35b370bb0df,SESCO,II.1.1,Buenos Aires,AR-B,annual,2017,naphtha combustion consumption by to the public,1104.6380880612,TJ,CO2,73300.0,kg/TJ,80969971.85488597,kg -a9c83974-9a06-31f2-92ed-fbf72865d6f0,SESCO,II.1.1,Buenos Aires,AR-B,annual,2017,naphtha combustion consumption by to the public,1104.6380880612,TJ,CH4,3.0,kg/TJ,3313.9142641836,kg -59835193-902c-31a0-b1a9-b659c4cca412,SESCO,II.1.1,Buenos Aires,AR-B,annual,2017,naphtha combustion consumption by to the public,1104.6380880612,TJ,N2O,0.6,kg/TJ,662.78285283672,kg -ebd4c858-01b6-3fba-acf3-d1bb7f21da7c,SESCO,II.1.1,Capital Federal,AR-C,annual,2017,naphtha combustion consumption by to the public,162.7329909436,TJ,CO2,73300.0,kg/TJ,11928328.23616588,kg -68d34a01-84f2-3c50-8640-be3bfac103a7,SESCO,II.1.1,Capital Federal,AR-C,annual,2017,naphtha combustion consumption by to the public,162.7329909436,TJ,CH4,3.0,kg/TJ,488.19897283079996,kg -d1ade175-a2c7-3bef-ba82-68c264a4f8bd,SESCO,II.1.1,Capital Federal,AR-C,annual,2017,naphtha combustion consumption by to the public,162.7329909436,TJ,N2O,0.6,kg/TJ,97.63979456615999,kg -36c3883a-aa13-31b6-8571-4e4b8c2125e9,SESCO,II.1.1,Chubut,AR-U,annual,2017,naphtha combustion consumption by to the public,297.869290796,TJ,CO2,73300.0,kg/TJ,21833819.0153468,kg -3b8157e1-2929-3312-8df2-b7f0e0cefede,SESCO,II.1.1,Chubut,AR-U,annual,2017,naphtha combustion consumption by to the public,297.869290796,TJ,CH4,3.0,kg/TJ,893.6078723879999,kg -9fc87771-c42f-35f4-99ca-18c3bb139b1e,SESCO,II.1.1,Chubut,AR-U,annual,2017,naphtha combustion consumption by to the public,297.869290796,TJ,N2O,0.6,kg/TJ,178.72157447759997,kg -75177490-795a-3cd5-b791-bc7bf35bb400,SESCO,II.1.1,Córdoba,AR-X,annual,2017,naphtha combustion consumption by to the public,126.02322485983998,TJ,CO2,73300.0,kg/TJ,9237502.382226272,kg -04b8a0dd-d3d2-377a-93fe-997924101968,SESCO,II.1.1,Córdoba,AR-X,annual,2017,naphtha combustion consumption by to the public,126.02322485983998,TJ,CH4,3.0,kg/TJ,378.06967457952,kg -9af496c9-0a06-3e17-bc59-92a911bc7177,SESCO,II.1.1,Córdoba,AR-X,annual,2017,naphtha combustion consumption by to the public,126.02322485983998,TJ,N2O,0.6,kg/TJ,75.61393491590398,kg -8c8ebcc6-1308-39d3-bd7a-31e88ceb776f,SESCO,II.1.1,Entre Rios,AR-E,annual,2017,naphtha combustion consumption by to the public,44.032627500400004,TJ,CO2,73300.0,kg/TJ,3227591.59577932,kg -97cf3e18-7b2d-3607-9cbd-1d5f1bad4d65,SESCO,II.1.1,Entre Rios,AR-E,annual,2017,naphtha combustion consumption by to the public,44.032627500400004,TJ,CH4,3.0,kg/TJ,132.09788250120002,kg -78cdc885-7842-36ce-83dd-d06e9a56e5d0,SESCO,II.1.1,Entre Rios,AR-E,annual,2017,naphtha combustion consumption by to the public,44.032627500400004,TJ,N2O,0.6,kg/TJ,26.41957650024,kg -e7d92781-936b-3a3c-99ff-c7a7dc57285b,SESCO,II.1.1,La Pampa,AR-L,annual,2017,naphtha combustion consumption by to the public,149.2714264888,TJ,CO2,73300.0,kg/TJ,10941595.561629038,kg -4ad425e3-89c1-3e1d-83fb-330aa8da56ae,SESCO,II.1.1,La Pampa,AR-L,annual,2017,naphtha combustion consumption by to the public,149.2714264888,TJ,CH4,3.0,kg/TJ,447.81427946639997,kg -0724fab4-5c8d-39bb-9cd5-93ab6e40bfeb,SESCO,II.1.1,La Pampa,AR-L,annual,2017,naphtha combustion consumption by to the public,149.2714264888,TJ,N2O,0.6,kg/TJ,89.56285589327999,kg -26609f8e-1cd2-33cf-ba18-b2cb9b7492d6,SESCO,II.1.1,Neuquén,AR-Q,annual,2017,naphtha combustion consumption by to the public,232.8302254432,TJ,CO2,73300.0,kg/TJ,17066455.524986558,kg -73eade5e-3636-3681-84f2-2bab724d1694,SESCO,II.1.1,Neuquén,AR-Q,annual,2017,naphtha combustion consumption by to the public,232.8302254432,TJ,CH4,3.0,kg/TJ,698.4906763296,kg -ece1b853-f64c-32bc-883d-022c09f9fa63,SESCO,II.1.1,Neuquén,AR-Q,annual,2017,naphtha combustion consumption by to the public,232.8302254432,TJ,N2O,0.6,kg/TJ,139.69813526592,kg -553e3e13-382f-3c50-98df-e62b8a7f5f3b,SESCO,II.1.1,Rio Negro,AR-R,annual,2017,naphtha combustion consumption by to the public,294.4159051064,TJ,CO2,73300.0,kg/TJ,21580685.84429912,kg -15c5db0a-d1f4-3567-bb75-8ab9a12aedc6,SESCO,II.1.1,Rio Negro,AR-R,annual,2017,naphtha combustion consumption by to the public,294.4159051064,TJ,CH4,3.0,kg/TJ,883.2477153191999,kg -adad4368-682d-36ef-833b-b3ac610cd9da,SESCO,II.1.1,Rio Negro,AR-R,annual,2017,naphtha combustion consumption by to the public,294.4159051064,TJ,N2O,0.6,kg/TJ,176.64954306383999,kg -1f8606e3-ef29-3e09-a6da-9ef81074eab8,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2017,naphtha combustion consumption by to the public,167.7422817532,TJ,CO2,73300.0,kg/TJ,12295509.252509559,kg -cf09d0c9-b535-3135-bd5a-84e0df105d86,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2017,naphtha combustion consumption by to the public,167.7422817532,TJ,CH4,3.0,kg/TJ,503.22684525959994,kg -ebbf7d43-86b7-306a-8bf6-02b9add1e2d0,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2017,naphtha combustion consumption by to the public,167.7422817532,TJ,N2O,0.6,kg/TJ,100.64536905191999,kg -8949d295-6667-3375-848f-9d541a960cff,SESCO,II.1.1,Santa Fe,AR-S,annual,2017,naphtha combustion consumption by to the public,214.0171313588,TJ,CO2,73300.0,kg/TJ,15687455.728600038,kg -6760af17-d33e-3fa7-8280-18ffb66134b9,SESCO,II.1.1,Santa Fe,AR-S,annual,2017,naphtha combustion consumption by to the public,214.0171313588,TJ,CH4,3.0,kg/TJ,642.0513940763999,kg -8096d426-d229-3a9d-8b75-a77d514740e7,SESCO,II.1.1,Santa Fe,AR-S,annual,2017,naphtha combustion consumption by to the public,214.0171313588,TJ,N2O,0.6,kg/TJ,128.41027881527998,kg -2b4db489-2a56-3435-bef4-473778b56481,SESCO,I.3.1,Santa Cruz,AR-Z,annual,2017,naphtha combustion consumption by petrochemical industries,0.3635872855999999,TJ,CO2,73300.0,kg/TJ,26650.948034479996,kg -01d391f1-7422-32d9-b175-578037815cd1,SESCO,I.3.1,Santa Cruz,AR-Z,annual,2017,naphtha combustion consumption by petrochemical industries,0.3635872855999999,TJ,CH4,3.0,kg/TJ,1.0907618567999997,kg -9401eac3-5921-3821-93b2-dad73cba7941,SESCO,I.3.1,Santa Cruz,AR-Z,annual,2017,naphtha combustion consumption by petrochemical industries,0.3635872855999999,TJ,N2O,0.6,kg/TJ,0.21815237135999996,kg -7bfa9e67-2447-3f27-8331-1862851bbedd,SESCO,II.1.1,Buenos Aires,AR-B,annual,2017,naphtha combustion consumption by to the public,297.3407052,TJ,CO2,73300.0,kg/TJ,21795073.69116,kg -7ca7a479-2333-3235-b0a0-f50dfb1809fc,SESCO,II.1.1,Buenos Aires,AR-B,annual,2017,naphtha combustion consumption by to the public,297.3407052,TJ,CH4,3.0,kg/TJ,892.0221156,kg -de63d59b-83ad-3cc4-9390-396c65c3882d,SESCO,II.1.1,Buenos Aires,AR-B,annual,2017,naphtha combustion consumption by to the public,297.3407052,TJ,N2O,0.6,kg/TJ,178.40442312,kg -cc1d55c3-964a-3f96-b0e2-83b347309f9c,SESCO,II.1.1,Capital Federal,AR-C,annual,2017,naphtha combustion consumption by to the public,30.334119199999996,TJ,CO2,73300.0,kg/TJ,2223490.93736,kg -d7383e39-c318-307f-a10a-26ac9db4d175,SESCO,II.1.1,Capital Federal,AR-C,annual,2017,naphtha combustion consumption by to the public,30.334119199999996,TJ,CH4,3.0,kg/TJ,91.00235759999998,kg -5e80fe24-fdbb-347d-9d65-5dc3c7e6e132,SESCO,II.1.1,Capital Federal,AR-C,annual,2017,naphtha combustion consumption by to the public,30.334119199999996,TJ,N2O,0.6,kg/TJ,18.200471519999997,kg -c728a7d3-b1aa-3b42-8c17-59545e37d013,SESCO,II.1.1,Corrientes,AR-W,annual,2017,naphtha combustion consumption by to the public,10.4330072,TJ,CO2,73300.0,kg/TJ,764739.42776,kg -198455b8-dc69-375c-a8f3-335c79b346e8,SESCO,II.1.1,Corrientes,AR-W,annual,2017,naphtha combustion consumption by to the public,10.4330072,TJ,CH4,3.0,kg/TJ,31.299021600000003,kg -303bea6b-4902-34d2-8a5f-826d804459e9,SESCO,II.1.1,Corrientes,AR-W,annual,2017,naphtha combustion consumption by to the public,10.4330072,TJ,N2O,0.6,kg/TJ,6.25980432,kg -fea2143e-cb10-39d4-b6eb-b1fec09baf5c,SESCO,II.1.1,Córdoba,AR-X,annual,2017,naphtha combustion consumption by to the public,108.9736648,TJ,CO2,73300.0,kg/TJ,7987769.62984,kg -fde17d41-3a1d-3676-9ae2-8df9260c800c,SESCO,II.1.1,Córdoba,AR-X,annual,2017,naphtha combustion consumption by to the public,108.9736648,TJ,CH4,3.0,kg/TJ,326.9209944,kg -86a51a40-fc39-380e-bd33-44acba155e44,SESCO,II.1.1,Córdoba,AR-X,annual,2017,naphtha combustion consumption by to the public,108.9736648,TJ,N2O,0.6,kg/TJ,65.38419888,kg -ef0fb7aa-8411-3f0f-beb6-b3a9abd662ec,SESCO,II.1.1,Entre Rios,AR-E,annual,2017,naphtha combustion consumption by to the public,52.31580199999999,TJ,CO2,73300.0,kg/TJ,3834748.2865999993,kg -983d0a1c-d646-3cb8-a782-59d66b195e63,SESCO,II.1.1,Entre Rios,AR-E,annual,2017,naphtha combustion consumption by to the public,52.31580199999999,TJ,CH4,3.0,kg/TJ,156.94740599999997,kg -8bac221f-4c2d-3fb3-8ac1-a9eda4e06b2e,SESCO,II.1.1,Entre Rios,AR-E,annual,2017,naphtha combustion consumption by to the public,52.31580199999999,TJ,N2O,0.6,kg/TJ,31.38948119999999,kg -8812fc78-44cc-3ae8-93e7-e24435327d17,SESCO,II.1.1,Salta,AR-A,annual,2017,naphtha combustion consumption by to the public,17.3983964,TJ,CO2,73300.0,kg/TJ,1275302.45612,kg -31c672d3-b525-3dc1-86ea-f240783ef74b,SESCO,II.1.1,Salta,AR-A,annual,2017,naphtha combustion consumption by to the public,17.3983964,TJ,CH4,3.0,kg/TJ,52.1951892,kg -e50a345a-439a-37fc-96e0-5e58e18fe4c5,SESCO,II.1.1,Salta,AR-A,annual,2017,naphtha combustion consumption by to the public,17.3983964,TJ,N2O,0.6,kg/TJ,10.43903784,kg -d89aa993-ad7d-3d18-a01d-6cab5508a162,SESCO,II.1.1,Santa Fe,AR-S,annual,2017,naphtha combustion consumption by to the public,14.624301999999998,TJ,CO2,73300.0,kg/TJ,1071961.3365999998,kg -4435ae3f-4ff6-35fd-b47a-3dea3475eacc,SESCO,II.1.1,Santa Fe,AR-S,annual,2017,naphtha combustion consumption by to the public,14.624301999999998,TJ,CH4,3.0,kg/TJ,43.87290599999999,kg -28caa6f0-d083-31df-978c-59075a0dc637,SESCO,II.1.1,Santa Fe,AR-S,annual,2017,naphtha combustion consumption by to the public,14.624301999999998,TJ,N2O,0.6,kg/TJ,8.774581199999998,kg -448a98bd-c215-33a6-9edc-f26956acedda,SESCO,II.1.1,Buenos Aires,AR-B,annual,2017,naphtha combustion consumption by to the public,22.910401359999998,TJ,CO2,73300.0,kg/TJ,1679332.4196879999,kg -65dffc10-6590-35dd-b298-6a31792a1b3e,SESCO,II.1.1,Buenos Aires,AR-B,annual,2017,naphtha combustion consumption by to the public,22.910401359999998,TJ,CH4,3.0,kg/TJ,68.73120408,kg -d6c5c306-056f-33d7-a2da-25902612f8ae,SESCO,II.1.1,Buenos Aires,AR-B,annual,2017,naphtha combustion consumption by to the public,22.910401359999998,TJ,N2O,0.6,kg/TJ,13.746240815999998,kg -458f2873-481f-35f9-9044-a59e5395dee5,SESCO,II.1.1,Capital Federal,AR-C,annual,2017,naphtha combustion consumption by to the public,2.0504176,TJ,CO2,73300.0,kg/TJ,150295.61007999998,kg -115e69af-7c43-373a-b8aa-21c5259fcf7c,SESCO,II.1.1,Capital Federal,AR-C,annual,2017,naphtha combustion consumption by to the public,2.0504176,TJ,CH4,3.0,kg/TJ,6.1512528,kg -9ac7f807-795d-3f68-b5a5-9b564bfb0d38,SESCO,II.1.1,Capital Federal,AR-C,annual,2017,naphtha combustion consumption by to the public,2.0504176,TJ,N2O,0.6,kg/TJ,1.2302505599999998,kg -f5cd6cfd-0d52-30a3-ac86-1369e1e87361,SESCO,II.1.1,Corrientes,AR-W,annual,2017,naphtha combustion consumption by to the public,0.1809192,TJ,CO2,73300.0,kg/TJ,13261.37736,kg -1e6e46db-7248-3a43-8f7b-74ff659decd9,SESCO,II.1.1,Corrientes,AR-W,annual,2017,naphtha combustion consumption by to the public,0.1809192,TJ,CH4,3.0,kg/TJ,0.5427576000000001,kg -714dfa33-9d97-3301-bb15-4d2e5d0552bd,SESCO,II.1.1,Corrientes,AR-W,annual,2017,naphtha combustion consumption by to the public,0.1809192,TJ,N2O,0.6,kg/TJ,0.10855152,kg -6141c7e4-fcee-355a-97ed-e6c7ac29a901,SESCO,II.1.1,Córdoba,AR-X,annual,2017,naphtha combustion consumption by to the public,8.865040800000001,TJ,CO2,73300.0,kg/TJ,649807.4906400001,kg -af8b9436-5924-3e46-b30b-ea52eeac8b7e,SESCO,II.1.1,Córdoba,AR-X,annual,2017,naphtha combustion consumption by to the public,8.865040800000001,TJ,CH4,3.0,kg/TJ,26.5951224,kg -5ecd6be0-7032-3d35-90fa-20a82ce180eb,SESCO,II.1.1,Córdoba,AR-X,annual,2017,naphtha combustion consumption by to the public,8.865040800000001,TJ,N2O,0.6,kg/TJ,5.31902448,kg -ceb444de-9e24-37a5-9418-53633c6b3345,SESCO,II.1.1,Entre Rios,AR-E,annual,2017,naphtha combustion consumption by to the public,2.9429523199999994,TJ,CO2,73300.0,kg/TJ,215718.40505599996,kg -2ce956ad-1dd7-3c12-a558-afd42159d5f4,SESCO,II.1.1,Entre Rios,AR-E,annual,2017,naphtha combustion consumption by to the public,2.9429523199999994,TJ,CH4,3.0,kg/TJ,8.828856959999998,kg -d1083fde-a890-3138-b71b-4ab2fc7ffd62,SESCO,II.1.1,Entre Rios,AR-E,annual,2017,naphtha combustion consumption by to the public,2.9429523199999994,TJ,N2O,0.6,kg/TJ,1.7657713919999996,kg -e548eaaf-2310-3ced-bfcf-4c8e2ee769be,SESCO,II.1.1,Santa Fe,AR-S,annual,2017,naphtha combustion consumption by to the public,1.1759747999999999,TJ,CO2,73300.0,kg/TJ,86198.95284,kg -b9f6d85a-da42-390e-9848-3190de3d2d4a,SESCO,II.1.1,Santa Fe,AR-S,annual,2017,naphtha combustion consumption by to the public,1.1759747999999999,TJ,CH4,3.0,kg/TJ,3.5279244,kg -bd1f3e05-27d0-36d6-b929-a651e24ca2c0,SESCO,II.1.1,Santa Fe,AR-S,annual,2017,naphtha combustion consumption by to the public,1.1759747999999999,TJ,N2O,0.6,kg/TJ,0.7055848799999999,kg -7f009481-a6e4-3a29-8032-c0096fa29eac,SESCO,II.1.1,Catamarca,AR-K,annual,2017,naphtha combustion consumption by to the public,246.53889537199998,TJ,CO2,73300.0,kg/TJ,18071301.030767597,kg -3c42e7bc-7041-3a0d-98eb-28159dc3cdfa,SESCO,II.1.1,Catamarca,AR-K,annual,2017,naphtha combustion consumption by to the public,246.53889537199998,TJ,CH4,3.0,kg/TJ,739.616686116,kg -e25d4fc5-49f4-3995-949e-1b5096dcc609,SESCO,II.1.1,Catamarca,AR-K,annual,2017,naphtha combustion consumption by to the public,246.53889537199998,TJ,N2O,0.6,kg/TJ,147.92333722319998,kg -40dc0c74-0382-3f2c-933e-005e7b0f2371,SESCO,II.1.1,Chaco,AR-H,annual,2017,naphtha combustion consumption by to the public,128.94412916,TJ,CO2,73300.0,kg/TJ,9451604.667428,kg -15434825-c4c5-3aa2-a100-e35b3781e50c,SESCO,II.1.1,Chaco,AR-H,annual,2017,naphtha combustion consumption by to the public,128.94412916,TJ,CH4,3.0,kg/TJ,386.83238747999997,kg -cadd1a62-cb6b-361c-bd07-e4aba7b9eb12,SESCO,II.1.1,Chaco,AR-H,annual,2017,naphtha combustion consumption by to the public,128.94412916,TJ,N2O,0.6,kg/TJ,77.36647749599999,kg -cb37209e-b3e1-3427-a0a6-d5d2775ccee8,SESCO,II.1.1,Jujuy,AR-Y,annual,2017,naphtha combustion consumption by to the public,524.265848568,TJ,CO2,73300.0,kg/TJ,38428686.7000344,kg -b2f7a82f-68cf-34fd-b584-1eb68e39b00a,SESCO,II.1.1,Jujuy,AR-Y,annual,2017,naphtha combustion consumption by to the public,524.265848568,TJ,CH4,3.0,kg/TJ,1572.7975457040002,kg -9f5d6e93-643c-3bbc-98e6-97d3abfbdd24,SESCO,II.1.1,Jujuy,AR-Y,annual,2017,naphtha combustion consumption by to the public,524.265848568,TJ,N2O,0.6,kg/TJ,314.5595091408,kg -f0c0a44e-2a9c-3cbb-8604-6e4ffaca0a50,SESCO,II.1.1,La Rioja,AR-F,annual,2017,naphtha combustion consumption by to the public,469.43768194399996,TJ,CO2,73300.0,kg/TJ,34409782.0864952,kg -d0b7bef0-4111-3cac-a2ee-b71a9b154531,SESCO,II.1.1,La Rioja,AR-F,annual,2017,naphtha combustion consumption by to the public,469.43768194399996,TJ,CH4,3.0,kg/TJ,1408.313045832,kg -e1e00d80-72f5-3b29-a210-6612f5faa3c0,SESCO,II.1.1,La Rioja,AR-F,annual,2017,naphtha combustion consumption by to the public,469.43768194399996,TJ,N2O,0.6,kg/TJ,281.6626091664,kg -ead8479f-bd1c-35d8-82ac-b6e649cc4186,SESCO,II.1.1,Salta,AR-A,annual,2017,naphtha combustion consumption by to the public,1108.699392416,TJ,CO2,73300.0,kg/TJ,81267665.46409279,kg -268a6d26-af5b-3713-8e7a-b58026fb5e7f,SESCO,II.1.1,Salta,AR-A,annual,2017,naphtha combustion consumption by to the public,1108.699392416,TJ,CH4,3.0,kg/TJ,3326.098177248,kg -58b45725-974f-3398-8b69-99c654d1d217,SESCO,II.1.1,Salta,AR-A,annual,2017,naphtha combustion consumption by to the public,1108.699392416,TJ,N2O,0.6,kg/TJ,665.2196354495999,kg -a28864e6-73bc-34ec-8a00-eacecc4476f2,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2017,naphtha combustion consumption by to the public,514.278505664,TJ,CO2,73300.0,kg/TJ,37696614.4651712,kg -156226e4-909b-3366-b62e-b6d43475698d,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2017,naphtha combustion consumption by to the public,514.278505664,TJ,CH4,3.0,kg/TJ,1542.835516992,kg -5c3fdc36-a4a2-3a2b-b1ad-b7d1617bf343,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2017,naphtha combustion consumption by to the public,514.278505664,TJ,N2O,0.6,kg/TJ,308.5671033984,kg -9a59115c-833f-36b1-a190-c97ec2c3e371,SESCO,II.1.1,Tucuman,AR-T,annual,2017,naphtha combustion consumption by to the public,2166.845437372,TJ,CO2,73300.0,kg/TJ,158829770.5593676,kg -8e5f6b5f-8f87-37f4-93dd-c02c9767bb77,SESCO,II.1.1,Tucuman,AR-T,annual,2017,naphtha combustion consumption by to the public,2166.845437372,TJ,CH4,3.0,kg/TJ,6500.536312116001,kg -fa841d0f-f5f2-31ee-846d-2fd367e84211,SESCO,II.1.1,Tucuman,AR-T,annual,2017,naphtha combustion consumption by to the public,2166.845437372,TJ,N2O,0.6,kg/TJ,1300.1072624232,kg -dbfdd2f2-8d0b-36e4-b1c4-a1d6a095cbf1,SESCO,II.1.1,Catamarca,AR-K,annual,2017,naphtha combustion consumption by to the public,22.92246264,TJ,CO2,73300.0,kg/TJ,1680216.5115119999,kg -0e1019c4-7afb-33f3-b9a3-bd269085a80b,SESCO,II.1.1,Catamarca,AR-K,annual,2017,naphtha combustion consumption by to the public,22.92246264,TJ,CH4,3.0,kg/TJ,68.76738792,kg -ce44b63d-45af-3a7c-9014-f6dbfe16c8dc,SESCO,II.1.1,Catamarca,AR-K,annual,2017,naphtha combustion consumption by to the public,22.92246264,TJ,N2O,0.6,kg/TJ,13.753477583999999,kg -2e16f52d-8ff5-338f-a272-f95c08de09a8,SESCO,II.1.1,Chaco,AR-H,annual,2017,naphtha combustion consumption by to the public,2.44391686,TJ,CO2,73300.0,kg/TJ,179139.105838,kg -85cdf810-b6e9-32ce-9a2b-68e9c456adab,SESCO,II.1.1,Chaco,AR-H,annual,2017,naphtha combustion consumption by to the public,2.44391686,TJ,CH4,3.0,kg/TJ,7.33175058,kg -32dce29b-d9cb-3dbf-964a-9a3df366bedc,SESCO,II.1.1,Chaco,AR-H,annual,2017,naphtha combustion consumption by to the public,2.44391686,TJ,N2O,0.6,kg/TJ,1.4663501159999999,kg -749f9a68-8155-3e0c-8268-4f694e6b9b92,SESCO,II.1.1,Jujuy,AR-Y,annual,2017,naphtha combustion consumption by to the public,27.778937031999998,TJ,CO2,73300.0,kg/TJ,2036196.0844456,kg -c65c4ffd-f07a-3507-b181-6b325c366287,SESCO,II.1.1,Jujuy,AR-Y,annual,2017,naphtha combustion consumption by to the public,27.778937031999998,TJ,CH4,3.0,kg/TJ,83.33681109599999,kg -555b17a1-2174-33cd-bd50-7607eaedb005,SESCO,II.1.1,Jujuy,AR-Y,annual,2017,naphtha combustion consumption by to the public,27.778937031999998,TJ,N2O,0.6,kg/TJ,16.667362219199997,kg -fef3d838-82c3-3626-b804-28973d606a87,SESCO,II.1.1,La Rioja,AR-F,annual,2017,naphtha combustion consumption by to the public,36.705188828,TJ,CO2,73300.0,kg/TJ,2690490.3410924,kg -b8488a03-3903-3563-b6a4-8a06e9eb0f58,SESCO,II.1.1,La Rioja,AR-F,annual,2017,naphtha combustion consumption by to the public,36.705188828,TJ,CH4,3.0,kg/TJ,110.115566484,kg -2a056bf0-867c-3279-9a96-5237e7e26819,SESCO,II.1.1,La Rioja,AR-F,annual,2017,naphtha combustion consumption by to the public,36.705188828,TJ,N2O,0.6,kg/TJ,22.0231132968,kg -bd7f6489-0e2d-3181-a52c-a699902b69c4,SESCO,II.1.1,Salta,AR-A,annual,2017,naphtha combustion consumption by to the public,71.37714738,TJ,CO2,73300.0,kg/TJ,5231944.902954,kg -b09026c2-0a0b-3884-a32d-cf093234c9da,SESCO,II.1.1,Salta,AR-A,annual,2017,naphtha combustion consumption by to the public,71.37714738,TJ,CH4,3.0,kg/TJ,214.13144214,kg -0836ed75-fb6d-3ef5-a6f5-7b242a167d06,SESCO,II.1.1,Salta,AR-A,annual,2017,naphtha combustion consumption by to the public,71.37714738,TJ,N2O,0.6,kg/TJ,42.826288428,kg -90fbac20-9ccc-3d86-ae40-35f410469430,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2017,naphtha combustion consumption by to the public,64.75369546799999,TJ,CO2,73300.0,kg/TJ,4746445.8778043995,kg -b480d65d-03d8-31e5-85df-debbdc4050ff,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2017,naphtha combustion consumption by to the public,64.75369546799999,TJ,CH4,3.0,kg/TJ,194.26108640399997,kg -9346ca90-9edf-3270-9274-7f0d88e16d58,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2017,naphtha combustion consumption by to the public,64.75369546799999,TJ,N2O,0.6,kg/TJ,38.85221728079999,kg -11698fd0-37ce-32ba-bcab-6ddd949c52a4,SESCO,II.1.1,Tucuman,AR-T,annual,2017,naphtha combustion consumption by to the public,166.768604772,TJ,CO2,73300.0,kg/TJ,12224138.729787601,kg -d0761316-0a1e-37e5-b2cf-4ff4a29fae8c,SESCO,II.1.1,Tucuman,AR-T,annual,2017,naphtha combustion consumption by to the public,166.768604772,TJ,CH4,3.0,kg/TJ,500.305814316,kg -05b4a3e7-561a-335c-bc34-1ce316e2bd82,SESCO,II.1.1,Tucuman,AR-T,annual,2017,naphtha combustion consumption by to the public,166.768604772,TJ,N2O,0.6,kg/TJ,100.0611628632,kg -18ade3e2-3dbe-3108-a356-d34e1fe89aa3,SESCO,II.1.1,Buenos Aires,AR-B,annual,2017,naphtha combustion consumption by to the public,30.303965999999996,TJ,CO2,73300.0,kg/TJ,2221280.7077999995,kg -9efcdafe-d9fc-30a8-955b-e842e8ca6b3e,SESCO,II.1.1,Buenos Aires,AR-B,annual,2017,naphtha combustion consumption by to the public,30.303965999999996,TJ,CH4,3.0,kg/TJ,90.91189799999998,kg -632960ce-d255-3f95-8389-b0f338224b35,SESCO,II.1.1,Buenos Aires,AR-B,annual,2017,naphtha combustion consumption by to the public,30.303965999999996,TJ,N2O,0.6,kg/TJ,18.182379599999997,kg -cb85f080-efbc-362f-80ef-34a3c3221bea,SESCO,II.1.1,Entre Rios,AR-E,annual,2017,naphtha combustion consumption by to the public,3.2565456,TJ,CO2,73300.0,kg/TJ,238704.79248,kg -f46d10da-457c-3856-8ae5-149c7ecc9f5f,SESCO,II.1.1,Entre Rios,AR-E,annual,2017,naphtha combustion consumption by to the public,3.2565456,TJ,CH4,3.0,kg/TJ,9.7696368,kg -2c997c1d-01a9-3a0d-b712-1d8a3c507418,SESCO,II.1.1,Entre Rios,AR-E,annual,2017,naphtha combustion consumption by to the public,3.2565456,TJ,N2O,0.6,kg/TJ,1.9539273599999998,kg -1fc679a5-2580-3117-a276-07e35c8c45a3,SESCO,II.1.1,Buenos Aires,AR-B,annual,2017,naphtha combustion consumption by to the public,15257.1272084,TJ,CO2,73300.0,kg/TJ,1118347424.37572,kg -766dfcef-660a-3ca7-b306-c7f1177ff792,SESCO,II.1.1,Buenos Aires,AR-B,annual,2017,naphtha combustion consumption by to the public,15257.1272084,TJ,CH4,3.0,kg/TJ,45771.381625199996,kg -9f995d16-7f37-37e6-8183-311ec29ac6db,SESCO,II.1.1,Buenos Aires,AR-B,annual,2017,naphtha combustion consumption by to the public,15257.1272084,TJ,N2O,0.6,kg/TJ,9154.276325039998,kg -923c0f77-7945-3530-8355-57ff44554603,SESCO,II.1.1,Capital Federal,AR-C,annual,2017,naphtha combustion consumption by to the public,4329.969366799999,TJ,CO2,73300.0,kg/TJ,317386754.5864399,kg -e8647f73-6fb9-3859-b184-4e079c30f7df,SESCO,II.1.1,Capital Federal,AR-C,annual,2017,naphtha combustion consumption by to the public,4329.969366799999,TJ,CH4,3.0,kg/TJ,12989.908100399996,kg -7851ad02-9891-3887-9236-c7ef0a7c7eb5,SESCO,II.1.1,Capital Federal,AR-C,annual,2017,naphtha combustion consumption by to the public,4329.969366799999,TJ,N2O,0.6,kg/TJ,2597.981620079999,kg -6b8c0c90-3ba1-3504-aa0c-98ca2daeb521,SESCO,II.1.1,Catamarca,AR-K,annual,2017,naphtha combustion consumption by to the public,42.8476972,TJ,CO2,73300.0,kg/TJ,3140736.20476,kg -6b19c7dd-0839-3bf9-9462-0c177dcd0f1c,SESCO,II.1.1,Catamarca,AR-K,annual,2017,naphtha combustion consumption by to the public,42.8476972,TJ,CH4,3.0,kg/TJ,128.5430916,kg -d29ccd98-f1d1-3e31-aca3-c51c95940c10,SESCO,II.1.1,Catamarca,AR-K,annual,2017,naphtha combustion consumption by to the public,42.8476972,TJ,N2O,0.6,kg/TJ,25.70861832,kg -9c226aaa-4cfe-3736-b54f-e04978e693df,SESCO,II.1.1,Chaco,AR-H,annual,2017,naphtha combustion consumption by to the public,882.1017128,TJ,CO2,73300.0,kg/TJ,64658055.54824,kg -d0b80fe1-7e34-38d8-9576-01c9c1ce527f,SESCO,II.1.1,Chaco,AR-H,annual,2017,naphtha combustion consumption by to the public,882.1017128,TJ,CH4,3.0,kg/TJ,2646.3051384,kg -98f5d411-773e-36ba-ad08-2786e06c1031,SESCO,II.1.1,Chaco,AR-H,annual,2017,naphtha combustion consumption by to the public,882.1017128,TJ,N2O,0.6,kg/TJ,529.26102768,kg -ac11705f-f234-3d13-bd14-d5071905a7ba,SESCO,II.1.1,Corrientes,AR-W,annual,2017,naphtha combustion consumption by to the public,874.1714211999999,TJ,CO2,73300.0,kg/TJ,64076765.17395999,kg -563ee4c1-7f4f-3c50-a040-d4b3b8d853b6,SESCO,II.1.1,Corrientes,AR-W,annual,2017,naphtha combustion consumption by to the public,874.1714211999999,TJ,CH4,3.0,kg/TJ,2622.5142636,kg -fbbb834d-0393-33a4-99f9-36008f365699,SESCO,II.1.1,Corrientes,AR-W,annual,2017,naphtha combustion consumption by to the public,874.1714211999999,TJ,N2O,0.6,kg/TJ,524.50285272,kg -1fe69d16-00b2-3b16-8c80-2e4248738c90,SESCO,II.1.1,Córdoba,AR-X,annual,2017,naphtha combustion consumption by to the public,3451.3654251999997,TJ,CO2,73300.0,kg/TJ,252985085.66715997,kg -2d6c44d3-a67a-387b-b778-8b5a6196c570,SESCO,II.1.1,Córdoba,AR-X,annual,2017,naphtha combustion consumption by to the public,3451.3654251999997,TJ,CH4,3.0,kg/TJ,10354.096275599999,kg -be04801a-dd38-3e20-ab81-d887178cc31b,SESCO,II.1.1,Córdoba,AR-X,annual,2017,naphtha combustion consumption by to the public,3451.3654251999997,TJ,N2O,0.6,kg/TJ,2070.8192551199995,kg -c1bcfb09-d1ee-3796-b654-deb18c40acfd,SESCO,II.1.1,Entre Rios,AR-E,annual,2017,naphtha combustion consumption by to the public,915.8431436,TJ,CO2,73300.0,kg/TJ,67131302.42588,kg -ec4c6cc3-4db6-3c39-9b3d-3007d70f9ba6,SESCO,II.1.1,Entre Rios,AR-E,annual,2017,naphtha combustion consumption by to the public,915.8431436,TJ,CH4,3.0,kg/TJ,2747.5294308,kg -29e11881-19bc-3305-9d9f-6c2f23c5d8e3,SESCO,II.1.1,Entre Rios,AR-E,annual,2017,naphtha combustion consumption by to the public,915.8431436,TJ,N2O,0.6,kg/TJ,549.5058861599999,kg -3560a574-a033-347c-8d5e-f7770e533a3e,SESCO,II.1.1,Formosa,AR-P,annual,2017,naphtha combustion consumption by to the public,402.15322839999993,TJ,CO2,73300.0,kg/TJ,29477831.641719993,kg -23337f34-6405-3de7-8663-7d415b288784,SESCO,II.1.1,Formosa,AR-P,annual,2017,naphtha combustion consumption by to the public,402.15322839999993,TJ,CH4,3.0,kg/TJ,1206.4596851999997,kg -2e529c60-605b-3738-b54f-bc663347afb0,SESCO,II.1.1,Formosa,AR-P,annual,2017,naphtha combustion consumption by to the public,402.15322839999993,TJ,N2O,0.6,kg/TJ,241.29193703999994,kg -eafa76d9-3ea4-3baf-a7c6-e6ff7b4c907a,SESCO,II.1.1,Jujuy,AR-Y,annual,2017,naphtha combustion consumption by to the public,157.73138919999997,TJ,CO2,73300.0,kg/TJ,11561710.828359997,kg -04570d89-655d-3ed8-810e-2295fa01ed90,SESCO,II.1.1,Jujuy,AR-Y,annual,2017,naphtha combustion consumption by to the public,157.73138919999997,TJ,CH4,3.0,kg/TJ,473.1941675999999,kg -9b8d0a96-efdb-3eb2-b275-6bb143175516,SESCO,II.1.1,Jujuy,AR-Y,annual,2017,naphtha combustion consumption by to the public,157.73138919999997,TJ,N2O,0.6,kg/TJ,94.63883351999998,kg -5eef9097-9393-3658-9df5-0d7d08cec5d4,SESCO,II.1.1,La Pampa,AR-L,annual,2017,naphtha combustion consumption by to the public,309.8542832,TJ,CO2,73300.0,kg/TJ,22712318.95856,kg -1ae40270-a3f9-39d6-bae5-fd606c491c9b,SESCO,II.1.1,La Pampa,AR-L,annual,2017,naphtha combustion consumption by to the public,309.8542832,TJ,CH4,3.0,kg/TJ,929.5628495999999,kg -3e557e22-2b0b-37fa-b7c6-87b2c38fb345,SESCO,II.1.1,La Pampa,AR-L,annual,2017,naphtha combustion consumption by to the public,309.8542832,TJ,N2O,0.6,kg/TJ,185.91256991999998,kg -d49f2069-f51c-3589-9076-2b5e753c6ef7,SESCO,II.1.1,La Rioja,AR-F,annual,2017,naphtha combustion consumption by to the public,301.07970199999994,TJ,CO2,73300.0,kg/TJ,22069142.156599995,kg -60e8ee57-c6e1-30b3-ab83-c914c0219874,SESCO,II.1.1,La Rioja,AR-F,annual,2017,naphtha combustion consumption by to the public,301.07970199999994,TJ,CH4,3.0,kg/TJ,903.2391059999998,kg -d22d8208-1b2e-337f-ae73-b480714427d0,SESCO,II.1.1,La Rioja,AR-F,annual,2017,naphtha combustion consumption by to the public,301.07970199999994,TJ,N2O,0.6,kg/TJ,180.64782119999995,kg -392651c2-89c1-3d62-9db7-71fa276ac731,SESCO,II.1.1,Mendoza,AR-M,annual,2017,naphtha combustion consumption by to the public,1020.7461264,TJ,CO2,73300.0,kg/TJ,74820691.06512,kg -1e60c949-fa5d-31d8-9c4d-45bfde1d6b96,SESCO,II.1.1,Mendoza,AR-M,annual,2017,naphtha combustion consumption by to the public,1020.7461264,TJ,CH4,3.0,kg/TJ,3062.2383792,kg -d08e20e2-d3f7-3f6f-b651-a04d8287e0e5,SESCO,II.1.1,Mendoza,AR-M,annual,2017,naphtha combustion consumption by to the public,1020.7461264,TJ,N2O,0.6,kg/TJ,612.44767584,kg -17561972-9aff-3df6-a573-cee577e21341,SESCO,II.1.1,Misiones,AR-N,annual,2017,naphtha combustion consumption by to the public,1137.4993168,TJ,CO2,73300.0,kg/TJ,83378699.92144,kg -d9c4fb68-44cd-3ed9-aa75-d8e8708bf132,SESCO,II.1.1,Misiones,AR-N,annual,2017,naphtha combustion consumption by to the public,1137.4993168,TJ,CH4,3.0,kg/TJ,3412.4979504000003,kg -da870cb9-9d64-3e0c-94f1-a4d952ccbb82,SESCO,II.1.1,Misiones,AR-N,annual,2017,naphtha combustion consumption by to the public,1137.4993168,TJ,N2O,0.6,kg/TJ,682.4995900800001,kg -6af228b6-c7cd-309e-8d48-59c34768042e,SESCO,II.1.1,Neuquén,AR-Q,annual,2017,naphtha combustion consumption by to the public,449.5239056,TJ,CO2,73300.0,kg/TJ,32950102.280479997,kg -1ad30d21-866a-3dc8-9287-dbb9b626a10a,SESCO,II.1.1,Neuquén,AR-Q,annual,2017,naphtha combustion consumption by to the public,449.5239056,TJ,CH4,3.0,kg/TJ,1348.5717167999999,kg -a620eece-41fb-38d8-bdee-4988ad53ef4f,SESCO,II.1.1,Neuquén,AR-Q,annual,2017,naphtha combustion consumption by to the public,449.5239056,TJ,N2O,0.6,kg/TJ,269.71434336,kg -eeafcf6e-3f87-3039-bb17-d4d66b692ffb,SESCO,II.1.1,Rio Negro,AR-R,annual,2017,naphtha combustion consumption by to the public,149.89155719999997,TJ,CO2,73300.0,kg/TJ,10987051.142759997,kg -4c481890-9fa2-34f0-a050-5d64cb24df06,SESCO,II.1.1,Rio Negro,AR-R,annual,2017,naphtha combustion consumption by to the public,149.89155719999997,TJ,CH4,3.0,kg/TJ,449.6746715999999,kg -b0bab2ab-2488-381c-95b5-bd2b15d6c8fe,SESCO,II.1.1,Rio Negro,AR-R,annual,2017,naphtha combustion consumption by to the public,149.89155719999997,TJ,N2O,0.6,kg/TJ,89.93493431999998,kg -99c50f11-7990-3d80-838d-4586186bb113,SESCO,II.1.1,Salta,AR-A,annual,2017,naphtha combustion consumption by to the public,245.2661288,TJ,CO2,73300.0,kg/TJ,17978007.24104,kg -7169b1cf-cb07-35a6-9bda-90b86bd185fb,SESCO,II.1.1,Salta,AR-A,annual,2017,naphtha combustion consumption by to the public,245.2661288,TJ,CH4,3.0,kg/TJ,735.7983864,kg -d593dded-6ac7-3e77-8ec4-e79e4505cc7f,SESCO,II.1.1,Salta,AR-A,annual,2017,naphtha combustion consumption by to the public,245.2661288,TJ,N2O,0.6,kg/TJ,147.15967727999998,kg -60a04c24-f20e-3d40-abbf-35f5ac03f653,SESCO,II.1.1,San Juan,AR-J,annual,2017,naphtha combustion consumption by to the public,161.621152,TJ,CO2,73300.0,kg/TJ,11846830.4416,kg -f1f384e6-be28-3b36-bc86-1fd0a8b33666,SESCO,II.1.1,San Juan,AR-J,annual,2017,naphtha combustion consumption by to the public,161.621152,TJ,CH4,3.0,kg/TJ,484.863456,kg -24053c38-6d33-3b65-bc52-e4341cd2046b,SESCO,II.1.1,San Juan,AR-J,annual,2017,naphtha combustion consumption by to the public,161.621152,TJ,N2O,0.6,kg/TJ,96.9726912,kg -bf163bc4-548d-3417-b72e-1f5ab0557b54,SESCO,II.1.1,San Luis,AR-D,annual,2017,naphtha combustion consumption by to the public,57.080007599999995,TJ,CO2,73300.0,kg/TJ,4183964.5570799997,kg -6c4bb732-5da8-345a-aef8-0411189c91f3,SESCO,II.1.1,San Luis,AR-D,annual,2017,naphtha combustion consumption by to the public,57.080007599999995,TJ,CH4,3.0,kg/TJ,171.2400228,kg -615f98c0-fdf5-3fcb-b7e7-848d4b112b2e,SESCO,II.1.1,San Luis,AR-D,annual,2017,naphtha combustion consumption by to the public,57.080007599999995,TJ,N2O,0.6,kg/TJ,34.24800456,kg -b2755c92-a5bf-35e7-b886-b8d869828e48,SESCO,II.1.1,Santa Fe,AR-S,annual,2017,naphtha combustion consumption by to the public,3407.1005275999996,TJ,CO2,73300.0,kg/TJ,249740468.67307997,kg -77ed1ffa-2043-3116-a822-01cefe9095b8,SESCO,II.1.1,Santa Fe,AR-S,annual,2017,naphtha combustion consumption by to the public,3407.1005275999996,TJ,CH4,3.0,kg/TJ,10221.301582799999,kg -bbf074eb-228f-3537-a555-e85fd2b8c4da,SESCO,II.1.1,Santa Fe,AR-S,annual,2017,naphtha combustion consumption by to the public,3407.1005275999996,TJ,N2O,0.6,kg/TJ,2044.2603165599996,kg -13a5175e-eab3-3a75-8f87-b00314bb9740,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2017,naphtha combustion consumption by to the public,351.34508639999996,TJ,CO2,73300.0,kg/TJ,25753594.833119996,kg -fe496ded-2784-3d24-ac53-8a81a8a3adbc,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2017,naphtha combustion consumption by to the public,351.34508639999996,TJ,CH4,3.0,kg/TJ,1054.0352592,kg -e5f146d0-4fde-3ce7-a6c3-b8981e9063fd,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2017,naphtha combustion consumption by to the public,351.34508639999996,TJ,N2O,0.6,kg/TJ,210.80705183999996,kg -adf6d5e2-b3a1-3997-b4e4-c2ed1bb57af8,SESCO,II.1.1,Tucuman,AR-T,annual,2017,naphtha combustion consumption by to the public,741.9797924,TJ,CO2,73300.0,kg/TJ,54387118.782919995,kg -a36c3a01-3c0e-3713-a382-fe1ecf2bd5a2,SESCO,II.1.1,Tucuman,AR-T,annual,2017,naphtha combustion consumption by to the public,741.9797924,TJ,CH4,3.0,kg/TJ,2225.9393772,kg -2be59656-b256-3cd1-b058-476017cc852c,SESCO,II.1.1,Tucuman,AR-T,annual,2017,naphtha combustion consumption by to the public,741.9797924,TJ,N2O,0.6,kg/TJ,445.18787543999997,kg -612080ac-cc65-3274-8899-7d75943542b5,SESCO,II.1.1,Buenos Aires,AR-B,annual,2017,naphtha combustion consumption by to the public,9143.113610399998,TJ,CO2,73300.0,kg/TJ,670190227.6423198,kg -ab115c9a-b4c0-345b-8f6e-157e379576f5,SESCO,II.1.1,Buenos Aires,AR-B,annual,2017,naphtha combustion consumption by to the public,9143.113610399998,TJ,CH4,3.0,kg/TJ,27429.340831199996,kg -0061253c-d61d-3dd3-81d5-1a894cdb8141,SESCO,II.1.1,Buenos Aires,AR-B,annual,2017,naphtha combustion consumption by to the public,9143.113610399998,TJ,N2O,0.6,kg/TJ,5485.868166239999,kg -99e70392-d5c0-3f06-83c0-0d9c13dd41cb,SESCO,II.1.1,Capital Federal,AR-C,annual,2017,naphtha combustion consumption by to the public,3584.9139479999994,TJ,CO2,73300.0,kg/TJ,262774192.38839996,kg -67798a06-d750-32a3-8cbb-66de36a804da,SESCO,II.1.1,Capital Federal,AR-C,annual,2017,naphtha combustion consumption by to the public,3584.9139479999994,TJ,CH4,3.0,kg/TJ,10754.741843999998,kg -a9b4f3c5-75d0-3a64-aef7-11d93c78ab53,SESCO,II.1.1,Capital Federal,AR-C,annual,2017,naphtha combustion consumption by to the public,3584.9139479999994,TJ,N2O,0.6,kg/TJ,2150.9483687999996,kg -81c18eaf-0379-31a2-8819-dab0bde4081d,SESCO,II.1.1,Catamarca,AR-K,annual,2017,naphtha combustion consumption by to the public,43.2999952,TJ,CO2,73300.0,kg/TJ,3173889.64816,kg -4cb7cd2f-6287-3262-af74-584ccec67f65,SESCO,II.1.1,Catamarca,AR-K,annual,2017,naphtha combustion consumption by to the public,43.2999952,TJ,CH4,3.0,kg/TJ,129.89998559999998,kg -17afa60b-03a5-3b3c-9f80-91a944efbd44,SESCO,II.1.1,Catamarca,AR-K,annual,2017,naphtha combustion consumption by to the public,43.2999952,TJ,N2O,0.6,kg/TJ,25.979997119999997,kg -c631b894-8145-3c9f-a23b-f53134aa80b6,SESCO,II.1.1,Chaco,AR-H,annual,2017,naphtha combustion consumption by to the public,382.82502719999997,TJ,CO2,73300.0,kg/TJ,28061074.493759997,kg -62466eda-e862-3d43-a277-09eee346e920,SESCO,II.1.1,Chaco,AR-H,annual,2017,naphtha combustion consumption by to the public,382.82502719999997,TJ,CH4,3.0,kg/TJ,1148.4750815999998,kg -376483ec-170e-35cf-adff-b80c50512c19,SESCO,II.1.1,Chaco,AR-H,annual,2017,naphtha combustion consumption by to the public,382.82502719999997,TJ,N2O,0.6,kg/TJ,229.69501631999998,kg -72fc3ce3-665b-33b3-aaae-995f83c0cb31,SESCO,II.1.1,Corrientes,AR-W,annual,2017,naphtha combustion consumption by to the public,383.548704,TJ,CO2,73300.0,kg/TJ,28114120.0032,kg -9eed72ee-1468-3fc4-b077-d87824419be4,SESCO,II.1.1,Corrientes,AR-W,annual,2017,naphtha combustion consumption by to the public,383.548704,TJ,CH4,3.0,kg/TJ,1150.646112,kg -f155b243-fe2a-3bb1-bd59-7858f918385d,SESCO,II.1.1,Corrientes,AR-W,annual,2017,naphtha combustion consumption by to the public,383.548704,TJ,N2O,0.6,kg/TJ,230.12922239999997,kg -37a5817e-ca85-3833-9e6b-e1293db3198a,SESCO,II.1.1,Córdoba,AR-X,annual,2017,naphtha combustion consumption by to the public,1814.9814143999997,TJ,CO2,73300.0,kg/TJ,133038137.67551997,kg -18cecfd1-3a60-3094-b847-a2379b3d42d4,SESCO,II.1.1,Córdoba,AR-X,annual,2017,naphtha combustion consumption by to the public,1814.9814143999997,TJ,CH4,3.0,kg/TJ,5444.9442432,kg -458451a5-661b-39b8-a759-836ba7e6763d,SESCO,II.1.1,Córdoba,AR-X,annual,2017,naphtha combustion consumption by to the public,1814.9814143999997,TJ,N2O,0.6,kg/TJ,1088.9888486399998,kg -2783e664-64e0-3303-a24d-ef85368629cc,SESCO,II.1.1,Entre Rios,AR-E,annual,2017,naphtha combustion consumption by to the public,425.09981359999995,TJ,CO2,73300.0,kg/TJ,31159816.336879995,kg -c2b88f88-29b6-398a-83a2-22023f019a3c,SESCO,II.1.1,Entre Rios,AR-E,annual,2017,naphtha combustion consumption by to the public,425.09981359999995,TJ,CH4,3.0,kg/TJ,1275.2994408,kg -9545fff5-d2f9-3f3c-afd4-d22e6531c1cc,SESCO,II.1.1,Entre Rios,AR-E,annual,2017,naphtha combustion consumption by to the public,425.09981359999995,TJ,N2O,0.6,kg/TJ,255.05988815999996,kg -8f228f00-8854-3aae-8c83-272fe5099f94,SESCO,II.1.1,Formosa,AR-P,annual,2017,naphtha combustion consumption by to the public,201.574142,TJ,CO2,73300.0,kg/TJ,14775384.6086,kg -1ab8f5c2-b02c-32b4-bbd7-090970b5eebe,SESCO,II.1.1,Formosa,AR-P,annual,2017,naphtha combustion consumption by to the public,201.574142,TJ,CH4,3.0,kg/TJ,604.722426,kg -0d6ef32c-090b-3c6d-873e-1c146d13874f,SESCO,II.1.1,Formosa,AR-P,annual,2017,naphtha combustion consumption by to the public,201.574142,TJ,N2O,0.6,kg/TJ,120.94448519999999,kg -3c5cca99-1186-360c-9813-c35cccacebe8,SESCO,II.1.1,Jujuy,AR-Y,annual,2017,naphtha combustion consumption by to the public,40.9178924,TJ,CO2,73300.0,kg/TJ,2999281.51292,kg -4c1fb7aa-e4a4-3429-bb67-27b77b230edb,SESCO,II.1.1,Jujuy,AR-Y,annual,2017,naphtha combustion consumption by to the public,40.9178924,TJ,CH4,3.0,kg/TJ,122.7536772,kg -c15c3dab-7d27-3da7-ad80-79718b052c8b,SESCO,II.1.1,Jujuy,AR-Y,annual,2017,naphtha combustion consumption by to the public,40.9178924,TJ,N2O,0.6,kg/TJ,24.55073544,kg -15b76211-c46e-3278-a0cf-17a96509edb1,SESCO,II.1.1,La Pampa,AR-L,annual,2017,naphtha combustion consumption by to the public,201.48368239999996,TJ,CO2,73300.0,kg/TJ,14768753.919919997,kg -42b87606-e0e7-3a10-8255-fa725f7ed337,SESCO,II.1.1,La Pampa,AR-L,annual,2017,naphtha combustion consumption by to the public,201.48368239999996,TJ,CH4,3.0,kg/TJ,604.4510472,kg -41128330-1749-37a7-980f-917bc45abadb,SESCO,II.1.1,La Pampa,AR-L,annual,2017,naphtha combustion consumption by to the public,201.48368239999996,TJ,N2O,0.6,kg/TJ,120.89020943999998,kg -fc20c1d8-37e4-385e-81e1-65bf6cb22d49,SESCO,II.1.1,La Rioja,AR-F,annual,2017,naphtha combustion consumption by to the public,111.9588316,TJ,CO2,73300.0,kg/TJ,8206582.35628,kg -43de384e-1707-3c79-b5ed-ced4083a1424,SESCO,II.1.1,La Rioja,AR-F,annual,2017,naphtha combustion consumption by to the public,111.9588316,TJ,CH4,3.0,kg/TJ,335.8764948,kg -1624e174-fb57-3bc8-8be4-ce765cca665f,SESCO,II.1.1,La Rioja,AR-F,annual,2017,naphtha combustion consumption by to the public,111.9588316,TJ,N2O,0.6,kg/TJ,67.17529895999999,kg -f3537cd8-6fb2-36c1-8caa-2d221f4ee05a,SESCO,II.1.1,Mendoza,AR-M,annual,2017,naphtha combustion consumption by to the public,561.6938095999999,TJ,CO2,73300.0,kg/TJ,41172156.24367999,kg -1ad5a6ed-f03d-3c0a-a2a6-e73e1347b54e,SESCO,II.1.1,Mendoza,AR-M,annual,2017,naphtha combustion consumption by to the public,561.6938095999999,TJ,CH4,3.0,kg/TJ,1685.0814287999997,kg -61181bc3-0cba-364f-b18c-bcd4ad837a0e,SESCO,II.1.1,Mendoza,AR-M,annual,2017,naphtha combustion consumption by to the public,561.6938095999999,TJ,N2O,0.6,kg/TJ,337.0162857599999,kg -f3cc9c5d-9e7f-3275-a5fd-03d5c24fcd7c,SESCO,II.1.1,Misiones,AR-N,annual,2017,naphtha combustion consumption by to the public,350.68171599999994,TJ,CO2,73300.0,kg/TJ,25704969.782799996,kg -6e2b17d0-9eb7-37df-b014-fabc4f800252,SESCO,II.1.1,Misiones,AR-N,annual,2017,naphtha combustion consumption by to the public,350.68171599999994,TJ,CH4,3.0,kg/TJ,1052.0451479999997,kg -e9f9fcb1-2b6a-3ffb-9a43-027bfd9728dc,SESCO,II.1.1,Misiones,AR-N,annual,2017,naphtha combustion consumption by to the public,350.68171599999994,TJ,N2O,0.6,kg/TJ,210.40902959999997,kg -007871d7-3f79-3ced-8d05-7ddac43f4b8e,SESCO,II.1.1,Neuquén,AR-Q,annual,2017,naphtha combustion consumption by to the public,376.16116999999997,TJ,CO2,73300.0,kg/TJ,27572613.760999996,kg -d0d147db-b485-39cd-b52a-b5e0b9cb9ef3,SESCO,II.1.1,Neuquén,AR-Q,annual,2017,naphtha combustion consumption by to the public,376.16116999999997,TJ,CH4,3.0,kg/TJ,1128.48351,kg -6fc25366-444a-3473-8a03-60642c0277ca,SESCO,II.1.1,Neuquén,AR-Q,annual,2017,naphtha combustion consumption by to the public,376.16116999999997,TJ,N2O,0.6,kg/TJ,225.696702,kg -87ee4dd6-3fb1-304b-ae01-38488702ccf0,SESCO,II.1.1,Rio Negro,AR-R,annual,2017,naphtha combustion consumption by to the public,92.1481792,TJ,CO2,73300.0,kg/TJ,6754461.53536,kg -52400725-2ad1-37b3-b4a3-06d523e9b88e,SESCO,II.1.1,Rio Negro,AR-R,annual,2017,naphtha combustion consumption by to the public,92.1481792,TJ,CH4,3.0,kg/TJ,276.4445376,kg -fa567ad4-75b5-3cbc-a39d-19be3c6b140e,SESCO,II.1.1,Rio Negro,AR-R,annual,2017,naphtha combustion consumption by to the public,92.1481792,TJ,N2O,0.6,kg/TJ,55.28890752,kg -092e23d6-fd7a-3473-a805-ef0781426212,SESCO,II.1.1,Salta,AR-A,annual,2017,naphtha combustion consumption by to the public,109.0942776,TJ,CO2,73300.0,kg/TJ,7996610.54808,kg -5494c9b8-8187-3689-9830-b10fef35b14e,SESCO,II.1.1,Salta,AR-A,annual,2017,naphtha combustion consumption by to the public,109.0942776,TJ,CH4,3.0,kg/TJ,327.2828328,kg -bf009ace-d9b0-3019-868a-66d3dfa7afc7,SESCO,II.1.1,Salta,AR-A,annual,2017,naphtha combustion consumption by to the public,109.0942776,TJ,N2O,0.6,kg/TJ,65.45656656,kg -8eba11c0-cde6-3610-89d8-f2e9623e959a,SESCO,II.1.1,San Juan,AR-J,annual,2017,naphtha combustion consumption by to the public,36.93767,TJ,CO2,73300.0,kg/TJ,2707531.2109999997,kg -14d52fe9-614d-3a75-bbf5-63b6abc95ee0,SESCO,II.1.1,San Juan,AR-J,annual,2017,naphtha combustion consumption by to the public,36.93767,TJ,CH4,3.0,kg/TJ,110.81300999999999,kg -8320ada3-6367-3862-b754-72c78dbddd55,SESCO,II.1.1,San Juan,AR-J,annual,2017,naphtha combustion consumption by to the public,36.93767,TJ,N2O,0.6,kg/TJ,22.162601999999996,kg -2352c41a-daf2-3035-a3a5-eadd0b43059c,SESCO,II.1.1,San Luis,AR-D,annual,2017,naphtha combustion consumption by to the public,44.32520399999999,TJ,CO2,73300.0,kg/TJ,3249037.4531999994,kg -e2c961f7-5c1c-3422-a02e-5f629c184e37,SESCO,II.1.1,San Luis,AR-D,annual,2017,naphtha combustion consumption by to the public,44.32520399999999,TJ,CH4,3.0,kg/TJ,132.97561199999998,kg -8df7c40a-3377-3175-8099-05f42925befd,SESCO,II.1.1,San Luis,AR-D,annual,2017,naphtha combustion consumption by to the public,44.32520399999999,TJ,N2O,0.6,kg/TJ,26.595122399999994,kg -3f1cae3b-e5e5-3505-914f-f3e90dbbac18,SESCO,II.1.1,Santa Fe,AR-S,annual,2017,naphtha combustion consumption by to the public,1892.0529935999998,TJ,CO2,73300.0,kg/TJ,138687484.43087998,kg -8afe85b2-17b0-354d-96e5-be078b30865c,SESCO,II.1.1,Santa Fe,AR-S,annual,2017,naphtha combustion consumption by to the public,1892.0529935999998,TJ,CH4,3.0,kg/TJ,5676.158980799999,kg -2863853d-df54-3cdb-8a8b-01dbb7e1a0c4,SESCO,II.1.1,Santa Fe,AR-S,annual,2017,naphtha combustion consumption by to the public,1892.0529935999998,TJ,N2O,0.6,kg/TJ,1135.23179616,kg -d9a9752a-f657-3383-bd44-62b7cf633d19,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2017,naphtha combustion consumption by to the public,193.16139919999998,TJ,CO2,73300.0,kg/TJ,14158730.561359998,kg -dc34fed9-e4ea-341a-90ba-1623be5490b9,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2017,naphtha combustion consumption by to the public,193.16139919999998,TJ,CH4,3.0,kg/TJ,579.4841975999999,kg -2c18a72b-475a-3e40-815e-f3b4a0cf7f6c,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2017,naphtha combustion consumption by to the public,193.16139919999998,TJ,N2O,0.6,kg/TJ,115.89683951999999,kg -ddf641e0-c89b-3519-af96-bc8850c40ce1,SESCO,II.1.1,Tucuman,AR-T,annual,2017,naphtha combustion consumption by to the public,279.4900108,TJ,CO2,73300.0,kg/TJ,20486617.79164,kg -48779b6a-3a9b-3c1a-94a5-a39a5fb1734f,SESCO,II.1.1,Tucuman,AR-T,annual,2017,naphtha combustion consumption by to the public,279.4900108,TJ,CH4,3.0,kg/TJ,838.4700324,kg -bca079d2-9d49-3913-ac66-6623b2d98e7f,SESCO,II.1.1,Tucuman,AR-T,annual,2017,naphtha combustion consumption by to the public,279.4900108,TJ,N2O,0.6,kg/TJ,167.69400647999998,kg -c8ba247f-0889-3cf5-8292-a5e6bf1cf7eb,SESCO,II.1.1,Buenos Aires,AR-B,annual,2017,naphtha combustion consumption by to the public,1018.3856735975999,TJ,CO2,73300.0,kg/TJ,74647669.87470406,kg -564399c2-4ab0-3a09-b6ad-7852580ec2ca,SESCO,II.1.1,Buenos Aires,AR-B,annual,2017,naphtha combustion consumption by to the public,1018.3856735975999,TJ,CH4,3.0,kg/TJ,3055.1570207928,kg -c2c6de3d-d8a5-3eec-91e6-43e49db5682e,SESCO,II.1.1,Buenos Aires,AR-B,annual,2017,naphtha combustion consumption by to the public,1018.3856735975999,TJ,N2O,0.6,kg/TJ,611.0314041585599,kg -6196abb7-d123-3867-a385-5ba49f1959a2,SESCO,II.1.1,Buenos Aires,AR-B,annual,2017,naphtha combustion consumption by to the public,59.2163919732,TJ,CO2,73300.0,kg/TJ,4340561.53163556,kg -a0648d8e-98c7-3a49-971d-81e59931f37e,SESCO,II.1.1,Buenos Aires,AR-B,annual,2017,naphtha combustion consumption by to the public,59.2163919732,TJ,CH4,3.0,kg/TJ,177.6491759196,kg -ebae68d0-23a1-3403-956d-e2c5f202b7ab,SESCO,II.1.1,Buenos Aires,AR-B,annual,2017,naphtha combustion consumption by to the public,59.2163919732,TJ,N2O,0.6,kg/TJ,35.52983518392,kg -64e680e3-434e-3ac1-89bc-ba2ff7a350f3,SESCO,II.5.1,Buenos Aires,AR-B,annual,2017,naphtha combustion consumption by agriculture machines,697.0515244,TJ,CO2,73300.0,kg/TJ,51093876.73852,kg -89372e76-0277-304c-8509-a0159a07b921,SESCO,II.5.1,Buenos Aires,AR-B,annual,2017,naphtha combustion consumption by agriculture machines,697.0515244,TJ,CH4,3.0,kg/TJ,2091.1545732,kg -75946b57-d58c-388a-8b56-3ef329af8143,SESCO,II.5.1,Buenos Aires,AR-B,annual,2017,naphtha combustion consumption by agriculture machines,697.0515244,TJ,N2O,0.6,kg/TJ,418.23091464,kg -33e58a14-7d2a-333f-ac5a-c47acd2fe00f,SESCO,II.5.1,Chubut,AR-U,annual,2017,naphtha combustion consumption by agriculture machines,1.5076599999999998,TJ,CO2,73300.0,kg/TJ,110511.47799999999,kg -f04ff973-5403-3647-b6b8-f39027ecc777,SESCO,II.5.1,Chubut,AR-U,annual,2017,naphtha combustion consumption by agriculture machines,1.5076599999999998,TJ,CH4,3.0,kg/TJ,4.52298,kg -14ef02af-8204-3eaa-8255-382606014610,SESCO,II.5.1,Chubut,AR-U,annual,2017,naphtha combustion consumption by agriculture machines,1.5076599999999998,TJ,N2O,0.6,kg/TJ,0.9045959999999998,kg -2ef6a55f-c89a-3742-9b94-f1915e3b799f,SESCO,II.5.1,Jujuy,AR-Y,annual,2017,naphtha combustion consumption by agriculture machines,0.301532,TJ,CO2,73300.0,kg/TJ,22102.2956,kg -975ff0e5-ebe3-34cd-97b5-3b95aea91870,SESCO,II.5.1,Jujuy,AR-Y,annual,2017,naphtha combustion consumption by agriculture machines,0.301532,TJ,CH4,3.0,kg/TJ,0.9045960000000001,kg -328b7d4b-10af-394f-95d9-ab6051bbc615,SESCO,II.5.1,Jujuy,AR-Y,annual,2017,naphtha combustion consumption by agriculture machines,0.301532,TJ,N2O,0.6,kg/TJ,0.1809192,kg -96847cfa-584d-3c03-a0e8-965c2502f4a8,SESCO,II.5.1,Mendoza,AR-M,annual,2017,naphtha combustion consumption by agriculture machines,21.469078399999997,TJ,CO2,73300.0,kg/TJ,1573683.44672,kg -f47c6c7a-9a70-39eb-9ee9-8ea0a0b3c59a,SESCO,II.5.1,Mendoza,AR-M,annual,2017,naphtha combustion consumption by agriculture machines,21.469078399999997,TJ,CH4,3.0,kg/TJ,64.40723519999999,kg -2a8a1276-0248-35c3-a4aa-f7cf4de8ae63,SESCO,II.5.1,Mendoza,AR-M,annual,2017,naphtha combustion consumption by agriculture machines,21.469078399999997,TJ,N2O,0.6,kg/TJ,12.881447039999998,kg -e5cee187-a129-3601-9ac3-46ba9d9a553c,SESCO,II.5.1,Salta,AR-A,annual,2017,naphtha combustion consumption by agriculture machines,0.4221448,TJ,CO2,73300.0,kg/TJ,30943.21384,kg -54564b09-0a91-34f5-ac66-f61dcc518aa7,SESCO,II.5.1,Salta,AR-A,annual,2017,naphtha combustion consumption by agriculture machines,0.4221448,TJ,CH4,3.0,kg/TJ,1.2664344,kg -5675f48c-3ac1-33b1-b2e4-1eabaf58b2e8,SESCO,II.5.1,Salta,AR-A,annual,2017,naphtha combustion consumption by agriculture machines,0.4221448,TJ,N2O,0.6,kg/TJ,0.25328688,kg -982361d8-8325-3f3e-b8ab-ef6981a3d5ac,SESCO,II.5.1,Santa Fe,AR-S,annual,2017,naphtha combustion consumption by agriculture machines,97.7566744,TJ,CO2,73300.0,kg/TJ,7165564.233519999,kg -af8ab097-1c22-3585-8cf6-584941cb9a4f,SESCO,II.5.1,Santa Fe,AR-S,annual,2017,naphtha combustion consumption by agriculture machines,97.7566744,TJ,CH4,3.0,kg/TJ,293.27002319999997,kg -a0282bc1-e048-31cc-ae2a-9439d4c9322f,SESCO,II.5.1,Santa Fe,AR-S,annual,2017,naphtha combustion consumption by agriculture machines,97.7566744,TJ,N2O,0.6,kg/TJ,58.65400464,kg -30a0112e-1abc-39a5-b1fa-9e333feba431,SESCO,II.5.1,Buenos Aires,AR-B,annual,2017,naphtha combustion consumption by agriculture machines,3.7993031999999993,TJ,CO2,73300.0,kg/TJ,278488.92455999996,kg -0897f8e3-80f6-36ba-aff3-5b0c6c1b7b30,SESCO,II.5.1,Buenos Aires,AR-B,annual,2017,naphtha combustion consumption by agriculture machines,3.7993031999999993,TJ,CH4,3.0,kg/TJ,11.397909599999998,kg -0215d3fa-0ddf-38cc-863a-49c858c27f9b,SESCO,II.5.1,Buenos Aires,AR-B,annual,2017,naphtha combustion consumption by agriculture machines,3.7993031999999993,TJ,N2O,0.6,kg/TJ,2.2795819199999996,kg -4bff18f5-d0a8-3762-b4ac-57685bd97faf,SESCO,II.5.1,Santa Fe,AR-S,annual,2017,naphtha combustion consumption by agriculture machines,0.5126044,TJ,CO2,73300.0,kg/TJ,37573.902519999996,kg -ef1e3f84-448b-3c94-9647-2a79a33ec1b8,SESCO,II.5.1,Santa Fe,AR-S,annual,2017,naphtha combustion consumption by agriculture machines,0.5126044,TJ,CH4,3.0,kg/TJ,1.5378132,kg -73742b9e-b094-3ac0-81a5-ad8d786d2726,SESCO,II.5.1,Santa Fe,AR-S,annual,2017,naphtha combustion consumption by agriculture machines,0.5126044,TJ,N2O,0.6,kg/TJ,0.30756263999999994,kg -c486f23c-558f-372e-a646-ea0017e06963,SESCO,II.1.1,Buenos Aires,AR-B,annual,2017,naphtha combustion consumption by to the public,33377.3610632,TJ,CO2,73300.0,kg/TJ,2446560565.93256,kg -1c637dd1-e051-3f4b-9b83-02c071c4bcf3,SESCO,II.1.1,Buenos Aires,AR-B,annual,2017,naphtha combustion consumption by to the public,33377.3610632,TJ,CH4,3.0,kg/TJ,100132.0831896,kg -9e352efa-7b5e-3c57-b2c2-8bbc1b47e274,SESCO,II.1.1,Buenos Aires,AR-B,annual,2017,naphtha combustion consumption by to the public,33377.3610632,TJ,N2O,0.6,kg/TJ,20026.41663792,kg -039ca95e-b6b2-3804-9cba-e95b552931e0,SESCO,II.1.1,Capital Federal,AR-C,annual,2017,naphtha combustion consumption by to the public,7249.160965199999,TJ,CO2,73300.0,kg/TJ,531363498.74915993,kg -670920ce-a9a5-3c8a-b1ed-4e50c6726b18,SESCO,II.1.1,Capital Federal,AR-C,annual,2017,naphtha combustion consumption by to the public,7249.160965199999,TJ,CH4,3.0,kg/TJ,21747.4828956,kg -be3422dd-12d1-35d8-af5f-12a5bdd69c1e,SESCO,II.1.1,Capital Federal,AR-C,annual,2017,naphtha combustion consumption by to the public,7249.160965199999,TJ,N2O,0.6,kg/TJ,4349.496579119999,kg -f8cf0c68-ca9e-37e2-be11-7a0c6365ce31,SESCO,II.1.1,Catamarca,AR-K,annual,2017,naphtha combustion consumption by to the public,650.7965156,TJ,CO2,73300.0,kg/TJ,47703384.59348,kg -6df9699c-6384-335a-8efc-f0d7721225f2,SESCO,II.1.1,Catamarca,AR-K,annual,2017,naphtha combustion consumption by to the public,650.7965156,TJ,CH4,3.0,kg/TJ,1952.3895468,kg -32034100-1264-33fb-8884-a589488f7357,SESCO,II.1.1,Catamarca,AR-K,annual,2017,naphtha combustion consumption by to the public,650.7965156,TJ,N2O,0.6,kg/TJ,390.47790936,kg -287f4c7a-b6fe-3ec0-ba28-3e159c4c6850,SESCO,II.1.1,Chaco,AR-H,annual,2017,naphtha combustion consumption by to the public,2184.3581144,TJ,CO2,73300.0,kg/TJ,160113449.78552,kg -4bb2330f-f2c8-3865-be47-e3406d3101ec,SESCO,II.1.1,Chaco,AR-H,annual,2017,naphtha combustion consumption by to the public,2184.3581144,TJ,CH4,3.0,kg/TJ,6553.0743432,kg -5801894c-80aa-3519-99a0-68641c780e4f,SESCO,II.1.1,Chaco,AR-H,annual,2017,naphtha combustion consumption by to the public,2184.3581144,TJ,N2O,0.6,kg/TJ,1310.61486864,kg -6f7d0a12-285c-3fdb-88dd-f1b28bcf1134,SESCO,II.1.1,Chubut,AR-U,annual,2017,naphtha combustion consumption by to the public,3064.1078775999995,TJ,CO2,73300.0,kg/TJ,224599107.42807996,kg -f7dafd95-ea2d-31f1-ab16-b87c5f7aabaa,SESCO,II.1.1,Chubut,AR-U,annual,2017,naphtha combustion consumption by to the public,3064.1078775999995,TJ,CH4,3.0,kg/TJ,9192.323632799998,kg -00226e91-4c57-3bc3-9b6e-92dded5a491b,SESCO,II.1.1,Chubut,AR-U,annual,2017,naphtha combustion consumption by to the public,3064.1078775999995,TJ,N2O,0.6,kg/TJ,1838.4647265599997,kg -045b4fd4-35df-3e21-b0ca-70066b9f9c79,SESCO,II.1.1,Corrientes,AR-W,annual,2017,naphtha combustion consumption by to the public,2219.2453668,TJ,CO2,73300.0,kg/TJ,162670685.38643998,kg -06353268-1e8c-3ef3-b21b-4ae708dc65f0,SESCO,II.1.1,Corrientes,AR-W,annual,2017,naphtha combustion consumption by to the public,2219.2453668,TJ,CH4,3.0,kg/TJ,6657.7361003999995,kg -006c5d69-72dd-3d52-8ac4-32db652e2060,SESCO,II.1.1,Corrientes,AR-W,annual,2017,naphtha combustion consumption by to the public,2219.2453668,TJ,N2O,0.6,kg/TJ,1331.5472200799998,kg -f9dec358-0dd9-30e0-892d-48d05cbbaf1b,SESCO,II.1.1,Córdoba,AR-X,annual,2017,naphtha combustion consumption by to the public,8215.8725572,TJ,CO2,73300.0,kg/TJ,602223458.44276,kg -4ef659f8-2024-31fe-9c56-f38283593af0,SESCO,II.1.1,Córdoba,AR-X,annual,2017,naphtha combustion consumption by to the public,8215.8725572,TJ,CH4,3.0,kg/TJ,24647.6176716,kg -e01b7ae6-c523-3063-9857-300053d15cdb,SESCO,II.1.1,Córdoba,AR-X,annual,2017,naphtha combustion consumption by to the public,8215.8725572,TJ,N2O,0.6,kg/TJ,4929.52353432,kg -50cc520f-807c-3e2b-8179-e9f61d242b91,SESCO,II.1.1,Entre Rios,AR-E,annual,2017,naphtha combustion consumption by to the public,2917.171334,TJ,CO2,73300.0,kg/TJ,213828658.7822,kg -60be47b9-6e24-390a-a774-367603589c18,SESCO,II.1.1,Entre Rios,AR-E,annual,2017,naphtha combustion consumption by to the public,2917.171334,TJ,CH4,3.0,kg/TJ,8751.514002,kg -507d1c7b-e3c8-3e8c-96f3-34af4539e59d,SESCO,II.1.1,Entre Rios,AR-E,annual,2017,naphtha combustion consumption by to the public,2917.171334,TJ,N2O,0.6,kg/TJ,1750.3028004,kg -2a35d6e7-6bd9-3da4-b439-d28a36887eaa,SESCO,II.1.1,Formosa,AR-P,annual,2017,naphtha combustion consumption by to the public,724.5512428,TJ,CO2,73300.0,kg/TJ,53109606.09723999,kg -38f66fc8-7986-3fbb-b335-623931c67dd6,SESCO,II.1.1,Formosa,AR-P,annual,2017,naphtha combustion consumption by to the public,724.5512428,TJ,CH4,3.0,kg/TJ,2173.6537283999996,kg -6ef5207c-7a46-362f-856a-46efb3a1c74c,SESCO,II.1.1,Formosa,AR-P,annual,2017,naphtha combustion consumption by to the public,724.5512428,TJ,N2O,0.6,kg/TJ,434.73074568,kg -0302f4a4-3b4b-30b3-9f66-630d65370766,SESCO,II.1.1,Jujuy,AR-Y,annual,2017,naphtha combustion consumption by to the public,1283.7121836,TJ,CO2,73300.0,kg/TJ,94096103.05788,kg -d6cc7086-b9ce-321f-a4ad-10d797a9acae,SESCO,II.1.1,Jujuy,AR-Y,annual,2017,naphtha combustion consumption by to the public,1283.7121836,TJ,CH4,3.0,kg/TJ,3851.1365508,kg -b97fab72-ed78-3215-b71d-56b2fc6b823b,SESCO,II.1.1,Jujuy,AR-Y,annual,2017,naphtha combustion consumption by to the public,1283.7121836,TJ,N2O,0.6,kg/TJ,770.2273101599999,kg -6acb5049-3d3a-3070-9ddf-95bac88eeae2,SESCO,II.1.1,La Pampa,AR-L,annual,2017,naphtha combustion consumption by to the public,1441.5340324,TJ,CO2,73300.0,kg/TJ,105664444.57492,kg -10c6da82-7602-3694-a391-500b8891de77,SESCO,II.1.1,La Pampa,AR-L,annual,2017,naphtha combustion consumption by to the public,1441.5340324,TJ,CH4,3.0,kg/TJ,4324.6020972,kg -c552b9f7-4797-3ef0-8c4b-84be07294926,SESCO,II.1.1,La Pampa,AR-L,annual,2017,naphtha combustion consumption by to the public,1441.5340324,TJ,N2O,0.6,kg/TJ,864.9204194399999,kg -dba4300a-6ddf-3d67-8f7a-4cbb8535c1cf,SESCO,II.1.1,La Rioja,AR-F,annual,2017,naphtha combustion consumption by to the public,907.5208604,TJ,CO2,73300.0,kg/TJ,66521279.06732,kg -cd44ba49-77e5-3c8a-86c9-1db0081cad72,SESCO,II.1.1,La Rioja,AR-F,annual,2017,naphtha combustion consumption by to the public,907.5208604,TJ,CH4,3.0,kg/TJ,2722.5625812,kg -3c783ca8-a7ca-320f-89c1-53bcebd441c4,SESCO,II.1.1,La Rioja,AR-F,annual,2017,naphtha combustion consumption by to the public,907.5208604,TJ,N2O,0.6,kg/TJ,544.51251624,kg -9432c58e-4a3f-35f7-be85-d0b28f348fa8,SESCO,II.1.1,Mendoza,AR-M,annual,2017,naphtha combustion consumption by to the public,4552.077838,TJ,CO2,73300.0,kg/TJ,333667305.5254,kg -6eccb5b4-a7a1-302d-91a9-f8d7c75b12a5,SESCO,II.1.1,Mendoza,AR-M,annual,2017,naphtha combustion consumption by to the public,4552.077838,TJ,CH4,3.0,kg/TJ,13656.233514,kg -db9534fc-a063-3cad-8276-c80186f9f9d8,SESCO,II.1.1,Mendoza,AR-M,annual,2017,naphtha combustion consumption by to the public,4552.077838,TJ,N2O,0.6,kg/TJ,2731.2467028,kg -75abb14f-8175-37d0-9c5d-43bfc0ab0276,SESCO,II.1.1,Misiones,AR-N,annual,2017,naphtha combustion consumption by to the public,2976.1509932,TJ,CO2,73300.0,kg/TJ,218151867.80155998,kg -62cb7d7f-c489-36de-9880-66439098b9d7,SESCO,II.1.1,Misiones,AR-N,annual,2017,naphtha combustion consumption by to the public,2976.1509932,TJ,CH4,3.0,kg/TJ,8928.452979599999,kg -656e3bd7-21f2-3ba0-ad86-4adc73b17f13,SESCO,II.1.1,Misiones,AR-N,annual,2017,naphtha combustion consumption by to the public,2976.1509932,TJ,N2O,0.6,kg/TJ,1785.6905959199999,kg -62cdbfa0-c16a-3685-96ca-486a1990feee,SESCO,II.1.1,Neuquén,AR-Q,annual,2017,naphtha combustion consumption by to the public,2915.8144399999996,TJ,CO2,73300.0,kg/TJ,213729198.45199996,kg -6213b074-839d-3367-b83a-7e29340242f3,SESCO,II.1.1,Neuquén,AR-Q,annual,2017,naphtha combustion consumption by to the public,2915.8144399999996,TJ,CH4,3.0,kg/TJ,8747.443319999998,kg -23914b09-dc5a-3d7f-8840-78a9b4d65a43,SESCO,II.1.1,Neuquén,AR-Q,annual,2017,naphtha combustion consumption by to the public,2915.8144399999996,TJ,N2O,0.6,kg/TJ,1749.4886639999997,kg -675a1ca8-ed80-33c3-8fd5-66e9cb97f8fe,SESCO,II.1.1,Rio Negro,AR-R,annual,2017,naphtha combustion consumption by to the public,2750.9065892,TJ,CO2,73300.0,kg/TJ,201641452.98836,kg -deb54e0c-3d79-38ed-b47e-2f1def46f2b0,SESCO,II.1.1,Rio Negro,AR-R,annual,2017,naphtha combustion consumption by to the public,2750.9065892,TJ,CH4,3.0,kg/TJ,8252.7197676,kg -769636b7-3c80-3d58-9da7-f98f641777b9,SESCO,II.1.1,Rio Negro,AR-R,annual,2017,naphtha combustion consumption by to the public,2750.9065892,TJ,N2O,0.6,kg/TJ,1650.5439535199998,kg -ed1eddd8-b9f8-36b1-b4a6-be4d35da6910,SESCO,II.1.1,Salta,AR-A,annual,2017,naphtha combustion consumption by to the public,2898.0843583999995,TJ,CO2,73300.0,kg/TJ,212429583.47071996,kg -ffe289d0-703d-3c3c-bbbc-65778d507077,SESCO,II.1.1,Salta,AR-A,annual,2017,naphtha combustion consumption by to the public,2898.0843583999995,TJ,CH4,3.0,kg/TJ,8694.253075199998,kg -00715c66-414f-33ca-a2c2-313f39d08728,SESCO,II.1.1,Salta,AR-A,annual,2017,naphtha combustion consumption by to the public,2898.0843583999995,TJ,N2O,0.6,kg/TJ,1738.8506150399996,kg -035e67cf-2a4c-33cb-bc69-efa489508631,SESCO,II.1.1,San Juan,AR-J,annual,2017,naphtha combustion consumption by to the public,1526.5359031999997,TJ,CO2,73300.0,kg/TJ,111895081.70455998,kg -c6ed2615-cfd1-3f0b-aa24-15c43f0633fb,SESCO,II.1.1,San Juan,AR-J,annual,2017,naphtha combustion consumption by to the public,1526.5359031999997,TJ,CH4,3.0,kg/TJ,4579.607709599999,kg -85afdcb8-b872-3133-898b-0db61f58216a,SESCO,II.1.1,San Juan,AR-J,annual,2017,naphtha combustion consumption by to the public,1526.5359031999997,TJ,N2O,0.6,kg/TJ,915.9215419199998,kg -81b04477-5715-3498-9f4e-67b83269b3d9,SESCO,II.1.1,San Luis,AR-D,annual,2017,naphtha combustion consumption by to the public,1182.2768187999998,TJ,CO2,73300.0,kg/TJ,86660890.81803998,kg -eb1a21a4-80a1-312a-a789-ed413853aceb,SESCO,II.1.1,San Luis,AR-D,annual,2017,naphtha combustion consumption by to the public,1182.2768187999998,TJ,CH4,3.0,kg/TJ,3546.830456399999,kg -eb709cd5-658a-325e-b4a5-23e12a945b60,SESCO,II.1.1,San Luis,AR-D,annual,2017,naphtha combustion consumption by to the public,1182.2768187999998,TJ,N2O,0.6,kg/TJ,709.3660912799999,kg -a4c7b576-f916-38fc-991e-4f1c65b9f220,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2017,naphtha combustion consumption by to the public,2097.8787368,TJ,CO2,73300.0,kg/TJ,153774511.40743998,kg -6b347cba-0238-3399-8bc8-3e8d38ba76db,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2017,naphtha combustion consumption by to the public,2097.8787368,TJ,CH4,3.0,kg/TJ,6293.6362104,kg -ecd3d723-3c2e-3052-aad4-1865dac28dfe,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2017,naphtha combustion consumption by to the public,2097.8787368,TJ,N2O,0.6,kg/TJ,1258.7272420799998,kg -1538e3d5-cf11-3b54-b440-cf46d610d7aa,SESCO,II.1.1,Santa Fe,AR-S,annual,2017,naphtha combustion consumption by to the public,6117.782748,TJ,CO2,73300.0,kg/TJ,448433475.4284,kg -91274a18-d31b-34b7-b64e-2b0393a030b4,SESCO,II.1.1,Santa Fe,AR-S,annual,2017,naphtha combustion consumption by to the public,6117.782748,TJ,CH4,3.0,kg/TJ,18353.348244,kg -7eccb241-eadc-3166-a315-ec293ad5ed2c,SESCO,II.1.1,Santa Fe,AR-S,annual,2017,naphtha combustion consumption by to the public,6117.782748,TJ,N2O,0.6,kg/TJ,3670.6696488,kg -baa7cfae-cc4b-33ae-b530-a72166b2eb22,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2017,naphtha combustion consumption by to the public,1209.1131668,TJ,CO2,73300.0,kg/TJ,88627995.12644,kg -2acee730-3613-37de-a18d-95381e23b698,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2017,naphtha combustion consumption by to the public,1209.1131668,TJ,CH4,3.0,kg/TJ,3627.3395004000004,kg -5abdea55-0a64-395f-b8c3-f8e9c7f1d884,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2017,naphtha combustion consumption by to the public,1209.1131668,TJ,N2O,0.6,kg/TJ,725.46790008,kg -d9b10b05-fbcb-383f-ac68-08d8abb82733,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2017,naphtha combustion consumption by to the public,1620.6440403999998,TJ,CO2,73300.0,kg/TJ,118793208.16131999,kg -c9421283-a505-3fd4-8305-87a5a7cddd57,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2017,naphtha combustion consumption by to the public,1620.6440403999998,TJ,CH4,3.0,kg/TJ,4861.9321211999995,kg -99fd1df5-4276-3e5a-a47a-272c51f343ae,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2017,naphtha combustion consumption by to the public,1620.6440403999998,TJ,N2O,0.6,kg/TJ,972.3864242399998,kg -87b4318d-e71c-3dbd-be68-3947aa7d091b,SESCO,II.1.1,Tucuman,AR-T,annual,2017,naphtha combustion consumption by to the public,2235.2868691999997,TJ,CO2,73300.0,kg/TJ,163846527.51235998,kg -89a501ba-2520-38a6-9583-6bb6b158ddd2,SESCO,II.1.1,Tucuman,AR-T,annual,2017,naphtha combustion consumption by to the public,2235.2868691999997,TJ,CH4,3.0,kg/TJ,6705.8606076,kg -fcceacce-0d94-389e-82e2-4e346b095864,SESCO,II.1.1,Tucuman,AR-T,annual,2017,naphtha combustion consumption by to the public,2235.2868691999997,TJ,N2O,0.6,kg/TJ,1341.1721215199998,kg -38d172cd-f71a-3598-93a6-20c4c74bb8d1,SESCO,II.1.1,Buenos Aires,AR-B,annual,2017,naphtha combustion consumption by to the public,18093.6387324,TJ,CO2,73300.0,kg/TJ,1326263719.08492,kg -902a5dc3-a840-3443-bac1-bdf7ca335437,SESCO,II.1.1,Buenos Aires,AR-B,annual,2017,naphtha combustion consumption by to the public,18093.6387324,TJ,CH4,3.0,kg/TJ,54280.9161972,kg -9785ff25-82c7-33d0-951c-1875dd62f23e,SESCO,II.1.1,Buenos Aires,AR-B,annual,2017,naphtha combustion consumption by to the public,18093.6387324,TJ,N2O,0.6,kg/TJ,10856.183239439999,kg -f93be288-b84b-3140-97e9-cd7c73f64aa9,SESCO,II.1.1,Capital Federal,AR-C,annual,2017,naphtha combustion consumption by to the public,4274.4874788,TJ,CO2,73300.0,kg/TJ,313319932.19604,kg -80748d6f-33d3-30ce-9139-aaea9077e3cb,SESCO,II.1.1,Capital Federal,AR-C,annual,2017,naphtha combustion consumption by to the public,4274.4874788,TJ,CH4,3.0,kg/TJ,12823.4624364,kg -90991b02-9148-3434-af07-41e1c68b8e51,SESCO,II.1.1,Capital Federal,AR-C,annual,2017,naphtha combustion consumption by to the public,4274.4874788,TJ,N2O,0.6,kg/TJ,2564.6924872799996,kg -20a54992-8a5f-3e19-846d-872c20194102,SESCO,II.1.1,Catamarca,AR-K,annual,2017,naphtha combustion consumption by to the public,359.42614399999997,TJ,CO2,73300.0,kg/TJ,26345936.355199996,kg -7aa52a67-44fd-346f-b310-2389cd4ae72c,SESCO,II.1.1,Catamarca,AR-K,annual,2017,naphtha combustion consumption by to the public,359.42614399999997,TJ,CH4,3.0,kg/TJ,1078.2784319999998,kg -f3e3cfd2-38e8-3009-a2a6-1006572080a6,SESCO,II.1.1,Catamarca,AR-K,annual,2017,naphtha combustion consumption by to the public,359.42614399999997,TJ,N2O,0.6,kg/TJ,215.65568639999998,kg -fa9da686-73c0-3e96-a89c-8e2d509b63da,SESCO,II.1.1,Chaco,AR-H,annual,2017,naphtha combustion consumption by to the public,1103.6372732,TJ,CO2,73300.0,kg/TJ,80896612.12556,kg -3ab8464b-900b-396a-ba84-ad47a5ebf3b9,SESCO,II.1.1,Chaco,AR-H,annual,2017,naphtha combustion consumption by to the public,1103.6372732,TJ,CH4,3.0,kg/TJ,3310.9118196,kg -0e613fba-c058-3e95-8ee3-24057b6df318,SESCO,II.1.1,Chaco,AR-H,annual,2017,naphtha combustion consumption by to the public,1103.6372732,TJ,N2O,0.6,kg/TJ,662.18236392,kg -adf4fb69-eb95-3b47-bb54-f7da1c1752ff,SESCO,II.1.1,Chubut,AR-U,annual,2017,naphtha combustion consumption by to the public,1586.5106179999998,TJ,CO2,73300.0,kg/TJ,116291228.29939999,kg -a535bbe3-3b9c-3fc6-b26f-cdd8fe3a8029,SESCO,II.1.1,Chubut,AR-U,annual,2017,naphtha combustion consumption by to the public,1586.5106179999998,TJ,CH4,3.0,kg/TJ,4759.531853999999,kg -f44c5d72-1da8-3c1d-a28c-7cace4fad66a,SESCO,II.1.1,Chubut,AR-U,annual,2017,naphtha combustion consumption by to the public,1586.5106179999998,TJ,N2O,0.6,kg/TJ,951.9063707999999,kg -ff9afc82-8a15-3bd9-b953-1ca08f0ca6fa,SESCO,II.1.1,Corrientes,AR-W,annual,2017,naphtha combustion consumption by to the public,1191.4433916,TJ,CO2,73300.0,kg/TJ,87332800.60428001,kg -8201d65f-a466-3b43-bbc8-686ddb8bdb67,SESCO,II.1.1,Corrientes,AR-W,annual,2017,naphtha combustion consumption by to the public,1191.4433916,TJ,CH4,3.0,kg/TJ,3574.3301748000003,kg -22710c52-466e-3a5d-9b3d-d6b1b46a7b09,SESCO,II.1.1,Corrientes,AR-W,annual,2017,naphtha combustion consumption by to the public,1191.4433916,TJ,N2O,0.6,kg/TJ,714.86603496,kg -86368173-e4f4-3679-b489-dd56126b7f67,SESCO,II.1.1,Córdoba,AR-X,annual,2017,naphtha combustion consumption by to the public,4181.5854696,TJ,CO2,73300.0,kg/TJ,306510214.92168,kg -b2919242-c962-3068-967a-8eb70ff1523b,SESCO,II.1.1,Córdoba,AR-X,annual,2017,naphtha combustion consumption by to the public,4181.5854696,TJ,CH4,3.0,kg/TJ,12544.7564088,kg -e157c571-e341-3ccd-96ff-235425ce0ad5,SESCO,II.1.1,Córdoba,AR-X,annual,2017,naphtha combustion consumption by to the public,4181.5854696,TJ,N2O,0.6,kg/TJ,2508.95128176,kg -61c6a0d0-a281-3ed3-b0fd-241b2c0c1a3a,SESCO,II.1.1,Entre Rios,AR-E,annual,2017,naphtha combustion consumption by to the public,1603.0044183999998,TJ,CO2,73300.0,kg/TJ,117500223.86872,kg -89a63d3f-84c2-3383-88a5-9ab67eb99b25,SESCO,II.1.1,Entre Rios,AR-E,annual,2017,naphtha combustion consumption by to the public,1603.0044183999998,TJ,CH4,3.0,kg/TJ,4809.0132552,kg -978f9933-d973-3d41-8ba9-7ef9d7381725,SESCO,II.1.1,Entre Rios,AR-E,annual,2017,naphtha combustion consumption by to the public,1603.0044183999998,TJ,N2O,0.6,kg/TJ,961.8026510399999,kg -639a4049-ff30-370c-adb9-55f061441761,SESCO,II.1.1,Formosa,AR-P,annual,2017,naphtha combustion consumption by to the public,293.8127807999999,TJ,CO2,73300.0,kg/TJ,21536476.832639996,kg -4eb3b057-77a5-3ed4-b1e1-03cb25f9db7d,SESCO,II.1.1,Formosa,AR-P,annual,2017,naphtha combustion consumption by to the public,293.8127807999999,TJ,CH4,3.0,kg/TJ,881.4383423999998,kg -a0e6edf3-23bc-365b-840a-1aeff68d7a29,SESCO,II.1.1,Formosa,AR-P,annual,2017,naphtha combustion consumption by to the public,293.8127807999999,TJ,N2O,0.6,kg/TJ,176.28766847999995,kg -e185b276-e472-3d0c-90c5-c2b04f6e0a4a,SESCO,II.1.1,Jujuy,AR-Y,annual,2017,naphtha combustion consumption by to the public,492.13037719999994,TJ,CO2,73300.0,kg/TJ,36073156.64876,kg -e1d3d1fb-1f76-361a-9a71-192bcd5304b2,SESCO,II.1.1,Jujuy,AR-Y,annual,2017,naphtha combustion consumption by to the public,492.13037719999994,TJ,CH4,3.0,kg/TJ,1476.3911315999999,kg -36fa5f6b-ba3c-3cf3-be29-48b751a0bb63,SESCO,II.1.1,Jujuy,AR-Y,annual,2017,naphtha combustion consumption by to the public,492.13037719999994,TJ,N2O,0.6,kg/TJ,295.27822631999993,kg -b31bb540-6ff7-3b10-80a7-b69b5f6717e5,SESCO,II.1.1,La Pampa,AR-L,annual,2017,naphtha combustion consumption by to the public,1211.9174143999999,TJ,CO2,73300.0,kg/TJ,88833546.47551998,kg -7133c42f-06bf-39b7-a9db-3fdd53da6dd3,SESCO,II.1.1,La Pampa,AR-L,annual,2017,naphtha combustion consumption by to the public,1211.9174143999999,TJ,CH4,3.0,kg/TJ,3635.7522431999996,kg -5e964978-0e3e-3eef-84d8-0ee671db385a,SESCO,II.1.1,La Pampa,AR-L,annual,2017,naphtha combustion consumption by to the public,1211.9174143999999,TJ,N2O,0.6,kg/TJ,727.1504486399999,kg -872a1092-8054-3f64-bca6-a7cd033e65dd,SESCO,II.1.1,La Rioja,AR-F,annual,2017,naphtha combustion consumption by to the public,497.1358083999999,TJ,CO2,73300.0,kg/TJ,36440054.75572,kg -0ab09359-a4e4-3bdd-a9e6-32a6921e77c4,SESCO,II.1.1,La Rioja,AR-F,annual,2017,naphtha combustion consumption by to the public,497.1358083999999,TJ,CH4,3.0,kg/TJ,1491.4074251999998,kg -b4b8fb27-6528-309e-9efe-d91e103e06fb,SESCO,II.1.1,La Rioja,AR-F,annual,2017,naphtha combustion consumption by to the public,497.1358083999999,TJ,N2O,0.6,kg/TJ,298.28148503999995,kg -57df157d-ccb6-3a3a-a480-b5dee45ddf0c,SESCO,II.1.1,Mendoza,AR-M,annual,2017,naphtha combustion consumption by to the public,3055.3936028,TJ,CO2,73300.0,kg/TJ,223960351.08523998,kg -1f27e838-1ab4-3981-8a6d-33add2bebf2f,SESCO,II.1.1,Mendoza,AR-M,annual,2017,naphtha combustion consumption by to the public,3055.3936028,TJ,CH4,3.0,kg/TJ,9166.1808084,kg -045717c8-98fc-3bf9-b2b8-e244951c1ce5,SESCO,II.1.1,Mendoza,AR-M,annual,2017,naphtha combustion consumption by to the public,3055.3936028,TJ,N2O,0.6,kg/TJ,1833.23616168,kg -20771380-9b5c-34b6-b5ec-1df47373d5f4,SESCO,II.1.1,Misiones,AR-N,annual,2017,naphtha combustion consumption by to the public,1078.73073,TJ,CO2,73300.0,kg/TJ,79070962.509,kg -883eee56-b4eb-3c51-9175-30299958d0f6,SESCO,II.1.1,Misiones,AR-N,annual,2017,naphtha combustion consumption by to the public,1078.73073,TJ,CH4,3.0,kg/TJ,3236.1921899999998,kg -53fd0be6-3923-3eda-9e11-b0f685137b2d,SESCO,II.1.1,Misiones,AR-N,annual,2017,naphtha combustion consumption by to the public,1078.73073,TJ,N2O,0.6,kg/TJ,647.238438,kg -62fbd30d-d49d-31ef-9a79-88c8721d546d,SESCO,II.1.1,Neuquén,AR-Q,annual,2017,naphtha combustion consumption by to the public,2075.4146028,TJ,CO2,73300.0,kg/TJ,152127890.38524,kg -8e3b3bfe-7acf-377f-a953-9c3a9e21b2e9,SESCO,II.1.1,Neuquén,AR-Q,annual,2017,naphtha combustion consumption by to the public,2075.4146028,TJ,CH4,3.0,kg/TJ,6226.2438084000005,kg -dc9c7c60-0c59-33eb-b23b-e84b56e1a874,SESCO,II.1.1,Neuquén,AR-Q,annual,2017,naphtha combustion consumption by to the public,2075.4146028,TJ,N2O,0.6,kg/TJ,1245.24876168,kg -865722ae-2b9b-3883-8492-8f281ee8389c,SESCO,II.1.1,Rio Negro,AR-R,annual,2017,naphtha combustion consumption by to the public,1772.9478535999997,TJ,CO2,73300.0,kg/TJ,129957077.66887997,kg -54cee8fa-da5c-394a-8f77-68d3b0bcb0b1,SESCO,II.1.1,Rio Negro,AR-R,annual,2017,naphtha combustion consumption by to the public,1772.9478535999997,TJ,CH4,3.0,kg/TJ,5318.843560799999,kg -c204bb33-081a-31a1-99c2-dbb048900fb1,SESCO,II.1.1,Rio Negro,AR-R,annual,2017,naphtha combustion consumption by to the public,1772.9478535999997,TJ,N2O,0.6,kg/TJ,1063.7687121599997,kg -268ed794-aa76-360e-acaf-8db5dedd1ce6,SESCO,II.1.1,Salta,AR-A,annual,2017,naphtha combustion consumption by to the public,1236.0701275999998,TJ,CO2,73300.0,kg/TJ,90603940.35307997,kg -d65fc390-4fb1-3b57-a7a2-cd91a60cb8fc,SESCO,II.1.1,Salta,AR-A,annual,2017,naphtha combustion consumption by to the public,1236.0701275999998,TJ,CH4,3.0,kg/TJ,3708.210382799999,kg -f9fe4f9b-7ecc-3f9a-a547-bb92185dda43,SESCO,II.1.1,Salta,AR-A,annual,2017,naphtha combustion consumption by to the public,1236.0701275999998,TJ,N2O,0.6,kg/TJ,741.6420765599999,kg -7ffb168f-c065-34ed-9907-2c3b7f771a81,SESCO,II.1.1,San Juan,AR-J,annual,2017,naphtha combustion consumption by to the public,855.8985819999999,TJ,CO2,73300.0,kg/TJ,62737366.0606,kg -5f0c0413-836a-3d77-8195-209dc1ff8804,SESCO,II.1.1,San Juan,AR-J,annual,2017,naphtha combustion consumption by to the public,855.8985819999999,TJ,CH4,3.0,kg/TJ,2567.695746,kg -aaa76fb1-35e4-3d67-a690-f8258e01bbad,SESCO,II.1.1,San Juan,AR-J,annual,2017,naphtha combustion consumption by to the public,855.8985819999999,TJ,N2O,0.6,kg/TJ,513.5391491999999,kg -0e48afb8-23aa-361a-afd3-312b291ccd50,SESCO,II.1.1,San Luis,AR-D,annual,2017,naphtha combustion consumption by to the public,780.7869608,TJ,CO2,73300.0,kg/TJ,57231684.22664,kg -db6c4e29-1d4e-39e6-9e0a-f7d2ca553b04,SESCO,II.1.1,San Luis,AR-D,annual,2017,naphtha combustion consumption by to the public,780.7869608,TJ,CH4,3.0,kg/TJ,2342.3608824,kg -f06e46b5-3716-3344-b859-ca2daa66db83,SESCO,II.1.1,San Luis,AR-D,annual,2017,naphtha combustion consumption by to the public,780.7869608,TJ,N2O,0.6,kg/TJ,468.47217648,kg -7c0f8f81-9eba-3b07-bb55-d11cb9674c09,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2017,naphtha combustion consumption by to the public,895.7309591999999,TJ,CO2,73300.0,kg/TJ,65657079.30936,kg -89331ffe-4528-3be7-bb3a-7e8806278aff,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2017,naphtha combustion consumption by to the public,895.7309591999999,TJ,CH4,3.0,kg/TJ,2687.1928775999995,kg -995eb1ec-5b67-394b-b753-bc28ca871294,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2017,naphtha combustion consumption by to the public,895.7309591999999,TJ,N2O,0.6,kg/TJ,537.43857552,kg -b6b2816f-7e0c-3c7f-8550-0c80aed9c967,SESCO,II.1.1,Santa Fe,AR-S,annual,2017,naphtha combustion consumption by to the public,3733.0264663999997,TJ,CO2,73300.0,kg/TJ,273630839.98712,kg -e2029ec6-f7ca-36ff-a028-4f34e1358fcb,SESCO,II.1.1,Santa Fe,AR-S,annual,2017,naphtha combustion consumption by to the public,3733.0264663999997,TJ,CH4,3.0,kg/TJ,11199.0793992,kg -2f523c21-8c8c-30e9-b21c-e075bb20e05d,SESCO,II.1.1,Santa Fe,AR-S,annual,2017,naphtha combustion consumption by to the public,3733.0264663999997,TJ,N2O,0.6,kg/TJ,2239.8158798399995,kg -2436581d-d8c1-3082-8c3c-9a20f5f9a972,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2017,naphtha combustion consumption by to the public,702.9012452,TJ,CO2,73300.0,kg/TJ,51522661.273159996,kg -1f9aac5f-df67-319f-aa3c-d20c23f777c1,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2017,naphtha combustion consumption by to the public,702.9012452,TJ,CH4,3.0,kg/TJ,2108.7037356,kg -c677a274-6bf2-3874-bc57-29bc215e3062,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2017,naphtha combustion consumption by to the public,702.9012452,TJ,N2O,0.6,kg/TJ,421.74074712,kg -3830e6aa-aecc-3a97-9aef-4f0f8cb33eac,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2017,naphtha combustion consumption by to the public,322.97092519999995,TJ,CO2,73300.0,kg/TJ,23673768.817159995,kg -2dd907b4-d687-3256-952e-be3b993d99ca,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2017,naphtha combustion consumption by to the public,322.97092519999995,TJ,CH4,3.0,kg/TJ,968.9127755999998,kg -4b53f3db-9d96-389a-a649-50a3c8c5bcee,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2017,naphtha combustion consumption by to the public,322.97092519999995,TJ,N2O,0.6,kg/TJ,193.78255511999996,kg -6dd331ae-2895-39ed-950b-176743b94c58,SESCO,II.1.1,Tucuman,AR-T,annual,2017,naphtha combustion consumption by to the public,920.577196,TJ,CO2,73300.0,kg/TJ,67478308.4668,kg -8d9418cf-cc05-3c6c-94c5-6b13d3887894,SESCO,II.1.1,Tucuman,AR-T,annual,2017,naphtha combustion consumption by to the public,920.577196,TJ,CH4,3.0,kg/TJ,2761.7315879999996,kg -52b521eb-81db-389a-9320-763769e2edf4,SESCO,II.1.1,Tucuman,AR-T,annual,2017,naphtha combustion consumption by to the public,920.577196,TJ,N2O,0.6,kg/TJ,552.3463175999999,kg -c75f64c8-0689-39b0-9ccb-a6566a46ca4c,SESCO,II.1.1,Buenos Aires,AR-B,annual,2017,naphtha combustion consumption by freight transport,251.89983279999998,TJ,CO2,73300.0,kg/TJ,18464257.744239997,kg -66648bc4-60e4-3b36-859c-2c501db75a5c,SESCO,II.1.1,Buenos Aires,AR-B,annual,2017,naphtha combustion consumption by freight transport,251.89983279999998,TJ,CH4,3.0,kg/TJ,755.6994983999999,kg -423c76c7-cc3d-37a8-82a5-117c708536e1,SESCO,II.1.1,Buenos Aires,AR-B,annual,2017,naphtha combustion consumption by freight transport,251.89983279999998,TJ,N2O,0.6,kg/TJ,151.13989967999998,kg -dc7cd93b-aa70-3ade-a49b-9df0047b93a3,SESCO,II.1.1,Capital Federal,AR-C,annual,2017,naphtha combustion consumption by freight transport,260.49349479999995,TJ,CO2,73300.0,kg/TJ,19094173.168839995,kg -c9201ca9-4ff2-3dbe-baa3-8b1f0a72f72a,SESCO,II.1.1,Capital Federal,AR-C,annual,2017,naphtha combustion consumption by freight transport,260.49349479999995,TJ,CH4,3.0,kg/TJ,781.4804843999998,kg -444c1350-b695-320b-a2c2-994a5e4008f7,SESCO,II.1.1,Capital Federal,AR-C,annual,2017,naphtha combustion consumption by freight transport,260.49349479999995,TJ,N2O,0.6,kg/TJ,156.29609687999996,kg -8aba5288-f6d2-3483-8bb5-209bd232f7dd,SESCO,II.1.1,Chaco,AR-H,annual,2017,naphtha combustion consumption by freight transport,10.0108624,TJ,CO2,73300.0,kg/TJ,733796.21392,kg -0f0123e3-43bc-3866-aece-624c04d6833b,SESCO,II.1.1,Chaco,AR-H,annual,2017,naphtha combustion consumption by freight transport,10.0108624,TJ,CH4,3.0,kg/TJ,30.032587200000002,kg -9904dd7f-adab-3f3f-8f61-5c3be8176574,SESCO,II.1.1,Chaco,AR-H,annual,2017,naphtha combustion consumption by freight transport,10.0108624,TJ,N2O,0.6,kg/TJ,6.0065174400000005,kg -c7844afe-9f33-391d-854a-9c2dd5dd3856,SESCO,II.1.1,Chubut,AR-U,annual,2017,naphtha combustion consumption by freight transport,3.3168519999999995,TJ,CO2,73300.0,kg/TJ,243125.25159999996,kg -b3aeed03-eb17-3163-9193-778835a65527,SESCO,II.1.1,Chubut,AR-U,annual,2017,naphtha combustion consumption by freight transport,3.3168519999999995,TJ,CH4,3.0,kg/TJ,9.950555999999999,kg -f76076d2-659e-3be0-a865-4ad5eff51c98,SESCO,II.1.1,Chubut,AR-U,annual,2017,naphtha combustion consumption by freight transport,3.3168519999999995,TJ,N2O,0.6,kg/TJ,1.9901111999999996,kg -35151cc4-dcf9-351a-850d-ebd6737de0e3,SESCO,II.1.1,Corrientes,AR-W,annual,2017,naphtha combustion consumption by freight transport,1.9298047999999999,TJ,CO2,73300.0,kg/TJ,141454.69183999998,kg -7b816fdd-f065-31cf-a38d-b1414ff3e983,SESCO,II.1.1,Corrientes,AR-W,annual,2017,naphtha combustion consumption by freight transport,1.9298047999999999,TJ,CH4,3.0,kg/TJ,5.7894144,kg -26550d0a-bb1b-325f-b19b-26ec3a014fca,SESCO,II.1.1,Corrientes,AR-W,annual,2017,naphtha combustion consumption by freight transport,1.9298047999999999,TJ,N2O,0.6,kg/TJ,1.1578828799999998,kg -5797f948-36c4-3665-bc28-dd9c910b2dab,SESCO,II.1.1,Córdoba,AR-X,annual,2017,naphtha combustion consumption by freight transport,17.338089999999998,TJ,CO2,73300.0,kg/TJ,1270881.9969999997,kg -97b30172-d88d-3160-b687-35c06e7a1550,SESCO,II.1.1,Córdoba,AR-X,annual,2017,naphtha combustion consumption by freight transport,17.338089999999998,TJ,CH4,3.0,kg/TJ,52.014269999999996,kg -dff8cc15-44d3-3896-b546-b483725e046d,SESCO,II.1.1,Córdoba,AR-X,annual,2017,naphtha combustion consumption by freight transport,17.338089999999998,TJ,N2O,0.6,kg/TJ,10.402853999999998,kg -9382399b-781d-358a-ade4-68122d5cc196,SESCO,II.1.1,Entre Rios,AR-E,annual,2017,naphtha combustion consumption by freight transport,9.4379516,TJ,CO2,73300.0,kg/TJ,691801.85228,kg -3b1cfb34-480a-3cf9-9a16-4d970c047193,SESCO,II.1.1,Entre Rios,AR-E,annual,2017,naphtha combustion consumption by freight transport,9.4379516,TJ,CH4,3.0,kg/TJ,28.3138548,kg -7d9b2981-0bc4-3ce0-bd09-64796dee637c,SESCO,II.1.1,Entre Rios,AR-E,annual,2017,naphtha combustion consumption by freight transport,9.4379516,TJ,N2O,0.6,kg/TJ,5.66277096,kg -141d540c-2825-39c8-9343-f3aa921d93e8,SESCO,II.1.1,Formosa,AR-P,annual,2017,naphtha combustion consumption by freight transport,0.39199159999999994,TJ,CO2,73300.0,kg/TJ,28732.984279999997,kg -b9a2a862-dd8b-3543-892b-e162d1f08b5e,SESCO,II.1.1,Formosa,AR-P,annual,2017,naphtha combustion consumption by freight transport,0.39199159999999994,TJ,CH4,3.0,kg/TJ,1.1759747999999999,kg -45239613-3734-3236-9221-d860dfaeb607,SESCO,II.1.1,Formosa,AR-P,annual,2017,naphtha combustion consumption by freight transport,0.39199159999999994,TJ,N2O,0.6,kg/TJ,0.23519495999999995,kg -19065dbb-ec54-350b-bd95-cb0bc4aae32b,SESCO,II.1.1,Jujuy,AR-Y,annual,2017,naphtha combustion consumption by freight transport,0.150766,TJ,CO2,73300.0,kg/TJ,11051.1478,kg -d64e4ada-7377-33f6-bb80-ccf57bddbe8e,SESCO,II.1.1,Jujuy,AR-Y,annual,2017,naphtha combustion consumption by freight transport,0.150766,TJ,CH4,3.0,kg/TJ,0.45229800000000003,kg -c1471586-7977-3b39-acb1-f5b0aa6ad5d3,SESCO,II.1.1,Jujuy,AR-Y,annual,2017,naphtha combustion consumption by freight transport,0.150766,TJ,N2O,0.6,kg/TJ,0.0904596,kg -69143167-53f2-307f-84f3-da372d18a797,SESCO,II.1.1,La Pampa,AR-L,annual,2017,naphtha combustion consumption by freight transport,1.1156684,TJ,CO2,73300.0,kg/TJ,81778.49372,kg -bce14174-1c0f-3ec7-b197-d7aef7f1035a,SESCO,II.1.1,La Pampa,AR-L,annual,2017,naphtha combustion consumption by freight transport,1.1156684,TJ,CH4,3.0,kg/TJ,3.3470052,kg -c38b2886-4a32-34ee-9129-422be82d55c2,SESCO,II.1.1,La Pampa,AR-L,annual,2017,naphtha combustion consumption by freight transport,1.1156684,TJ,N2O,0.6,kg/TJ,0.6694010399999999,kg -40cf2395-658d-323e-9009-1e01215a8a64,SESCO,II.1.1,La Rioja,AR-F,annual,2017,naphtha combustion consumption by freight transport,0.030153199999999998,TJ,CO2,73300.0,kg/TJ,2210.2295599999998,kg -33a6bbda-e349-3456-bfc4-96a156eb816f,SESCO,II.1.1,La Rioja,AR-F,annual,2017,naphtha combustion consumption by freight transport,0.030153199999999998,TJ,CH4,3.0,kg/TJ,0.0904596,kg -32bd2680-c796-3d62-82bd-7710bbe4bb84,SESCO,II.1.1,La Rioja,AR-F,annual,2017,naphtha combustion consumption by freight transport,0.030153199999999998,TJ,N2O,0.6,kg/TJ,0.018091919999999997,kg -77a02243-1134-3c82-b82b-a12e894b3d44,SESCO,II.1.1,Mendoza,AR-M,annual,2017,naphtha combustion consumption by freight transport,18.393451999999996,TJ,CO2,73300.0,kg/TJ,1348240.0315999996,kg -7e79aafa-9169-3a27-9c27-c534fe1b0cc8,SESCO,II.1.1,Mendoza,AR-M,annual,2017,naphtha combustion consumption by freight transport,18.393451999999996,TJ,CH4,3.0,kg/TJ,55.18035599999999,kg -ba1e4f48-5bba-30d8-8526-88b19da99011,SESCO,II.1.1,Mendoza,AR-M,annual,2017,naphtha combustion consumption by freight transport,18.393451999999996,TJ,N2O,0.6,kg/TJ,11.036071199999997,kg -fb2a5eb9-8e36-38a1-9c48-9a48dce92026,SESCO,II.1.1,Misiones,AR-N,annual,2017,naphtha combustion consumption by freight transport,1.7790388,TJ,CO2,73300.0,kg/TJ,130403.54404,kg -bbf6ee03-5fb7-383a-a25e-da1ee1de71e8,SESCO,II.1.1,Misiones,AR-N,annual,2017,naphtha combustion consumption by freight transport,1.7790388,TJ,CH4,3.0,kg/TJ,5.337116399999999,kg -04c9516b-a8a8-339f-896a-577817c881a1,SESCO,II.1.1,Misiones,AR-N,annual,2017,naphtha combustion consumption by freight transport,1.7790388,TJ,N2O,0.6,kg/TJ,1.0674232799999999,kg -902a68aa-5f74-3488-bbef-b5d917175dac,SESCO,II.1.1,Neuquén,AR-Q,annual,2017,naphtha combustion consumption by freight transport,4.1008352,TJ,CO2,73300.0,kg/TJ,300591.22015999997,kg -eef32ea4-75a7-3fce-a17f-02b0e3f4176b,SESCO,II.1.1,Neuquén,AR-Q,annual,2017,naphtha combustion consumption by freight transport,4.1008352,TJ,CH4,3.0,kg/TJ,12.3025056,kg -f10715d2-b57b-32d4-873c-69f9d82fa625,SESCO,II.1.1,Neuquén,AR-Q,annual,2017,naphtha combustion consumption by freight transport,4.1008352,TJ,N2O,0.6,kg/TJ,2.4605011199999995,kg -124472a3-4bb2-3721-a586-66215d4b430b,SESCO,II.1.1,Rio Negro,AR-R,annual,2017,naphtha combustion consumption by freight transport,7.628759599999999,TJ,CO2,73300.0,kg/TJ,559188.0786799999,kg -f5dc3715-d32a-3dc7-a5d1-453a5ea33c95,SESCO,II.1.1,Rio Negro,AR-R,annual,2017,naphtha combustion consumption by freight transport,7.628759599999999,TJ,CH4,3.0,kg/TJ,22.886278799999996,kg -a1bf4bd8-3453-3aef-8f97-945bbd52cae7,SESCO,II.1.1,Rio Negro,AR-R,annual,2017,naphtha combustion consumption by freight transport,7.628759599999999,TJ,N2O,0.6,kg/TJ,4.577255759999999,kg -46d54099-ae2b-301c-86b6-9ed748fbde2d,SESCO,II.1.1,Salta,AR-A,annual,2017,naphtha combustion consumption by freight transport,10.0410156,TJ,CO2,73300.0,kg/TJ,736006.44348,kg -e28c81cf-711a-3dc6-be30-f063979ae832,SESCO,II.1.1,Salta,AR-A,annual,2017,naphtha combustion consumption by freight transport,10.0410156,TJ,CH4,3.0,kg/TJ,30.123046799999997,kg -f35d7f7f-bf0a-3d2c-8591-454b9a29496a,SESCO,II.1.1,Salta,AR-A,annual,2017,naphtha combustion consumption by freight transport,10.0410156,TJ,N2O,0.6,kg/TJ,6.0246093599999995,kg -01ffee42-4110-373d-a700-89c5a668906f,SESCO,II.1.1,San Juan,AR-J,annual,2017,naphtha combustion consumption by freight transport,1.8694984,TJ,CO2,73300.0,kg/TJ,137034.23272,kg -33bd3c84-2ae7-33d2-aa62-dfcf67348bbb,SESCO,II.1.1,San Juan,AR-J,annual,2017,naphtha combustion consumption by freight transport,1.8694984,TJ,CH4,3.0,kg/TJ,5.6084952,kg -5cfaf4ab-254f-3d27-8e4f-72e9c3135bf1,SESCO,II.1.1,San Juan,AR-J,annual,2017,naphtha combustion consumption by freight transport,1.8694984,TJ,N2O,0.6,kg/TJ,1.12169904,kg -51eedda4-1de4-317b-8af2-de06966aa566,SESCO,II.1.1,San Luis,AR-D,annual,2017,naphtha combustion consumption by freight transport,2.7137879999999996,TJ,CO2,73300.0,kg/TJ,198920.66039999996,kg -03ca5939-77b0-3495-a2b0-af511c26b660,SESCO,II.1.1,San Luis,AR-D,annual,2017,naphtha combustion consumption by freight transport,2.7137879999999996,TJ,CH4,3.0,kg/TJ,8.141364,kg -5897e36a-d942-31ee-920a-1180fc0f1a8a,SESCO,II.1.1,San Luis,AR-D,annual,2017,naphtha combustion consumption by freight transport,2.7137879999999996,TJ,N2O,0.6,kg/TJ,1.6282727999999997,kg -abb95781-73c1-3154-9568-2ed0380f7140,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2017,naphtha combustion consumption by freight transport,0.33168519999999996,TJ,CO2,73300.0,kg/TJ,24312.525159999997,kg -153636bd-d545-3e82-b13d-7e23bb45b589,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2017,naphtha combustion consumption by freight transport,0.33168519999999996,TJ,CH4,3.0,kg/TJ,0.9950555999999999,kg -8e9d7bd4-d4ad-37f4-b11f-4cbdbeb26bc3,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2017,naphtha combustion consumption by freight transport,0.33168519999999996,TJ,N2O,0.6,kg/TJ,0.19901111999999996,kg -61ff5d3b-fb20-33f6-b721-4fd52241a0c6,SESCO,II.1.1,Santa Fe,AR-S,annual,2017,naphtha combustion consumption by freight transport,24.032100399999997,TJ,CO2,73300.0,kg/TJ,1761552.95932,kg -807004a4-3618-3e09-baaf-c9cf8c1f997c,SESCO,II.1.1,Santa Fe,AR-S,annual,2017,naphtha combustion consumption by freight transport,24.032100399999997,TJ,CH4,3.0,kg/TJ,72.0963012,kg -57bbe280-f7eb-3f41-b6f2-6a15cc3853d4,SESCO,II.1.1,Santa Fe,AR-S,annual,2017,naphtha combustion consumption by freight transport,24.032100399999997,TJ,N2O,0.6,kg/TJ,14.419260239999998,kg -b3013ab0-631e-34da-8be8-171e0be44d60,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2017,naphtha combustion consumption by freight transport,0.0904596,TJ,CO2,73300.0,kg/TJ,6630.68868,kg -f3310540-7f58-30d9-97fb-bf1441e36089,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2017,naphtha combustion consumption by freight transport,0.0904596,TJ,CH4,3.0,kg/TJ,0.27137880000000003,kg -29b82ec8-a070-3be4-aef8-0931bd1fc50f,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2017,naphtha combustion consumption by freight transport,0.0904596,TJ,N2O,0.6,kg/TJ,0.05427576,kg -f682568b-1376-3798-8a01-033eab69b6c9,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2017,naphtha combustion consumption by freight transport,4.0405288,TJ,CO2,73300.0,kg/TJ,296170.76103999995,kg -6f5d8c63-a73e-3782-a628-e3a2a6bc505e,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2017,naphtha combustion consumption by freight transport,4.0405288,TJ,CH4,3.0,kg/TJ,12.121586399999998,kg -12cc7b72-ddb1-345f-b043-aa71b8d980b4,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2017,naphtha combustion consumption by freight transport,4.0405288,TJ,N2O,0.6,kg/TJ,2.42431728,kg -135431b8-71fd-3426-ae4f-f8ac68a9be49,SESCO,II.1.1,Tucuman,AR-T,annual,2017,naphtha combustion consumption by freight transport,3.7993031999999993,TJ,CO2,73300.0,kg/TJ,278488.92455999996,kg -7df3d86c-e3a7-3ae4-b111-20daae3a1a96,SESCO,II.1.1,Tucuman,AR-T,annual,2017,naphtha combustion consumption by freight transport,3.7993031999999993,TJ,CH4,3.0,kg/TJ,11.397909599999998,kg -d81e501b-ee07-356a-8916-08fb555af399,SESCO,II.1.1,Tucuman,AR-T,annual,2017,naphtha combustion consumption by freight transport,3.7993031999999993,TJ,N2O,0.6,kg/TJ,2.2795819199999996,kg -2a3a4d01-2424-3e3f-b2e0-2114f246ec98,SESCO,II.1.1,Buenos Aires,AR-B,annual,2017,naphtha combustion consumption by freight transport,265.52907919999996,TJ,CO2,73300.0,kg/TJ,19463281.505359996,kg -1a12e615-6cb6-351d-9de0-e35bd834afaa,SESCO,II.1.1,Buenos Aires,AR-B,annual,2017,naphtha combustion consumption by freight transport,265.52907919999996,TJ,CH4,3.0,kg/TJ,796.5872375999999,kg -0c444e09-1722-3c28-ba75-4e4d6125ad1b,SESCO,II.1.1,Buenos Aires,AR-B,annual,2017,naphtha combustion consumption by freight transport,265.52907919999996,TJ,N2O,0.6,kg/TJ,159.31744751999997,kg -2e63c4b1-a6ab-3221-9f98-30d55b25024d,SESCO,II.1.1,Capital Federal,AR-C,annual,2017,naphtha combustion consumption by freight transport,313.0806756,TJ,CO2,73300.0,kg/TJ,22948813.52148,kg -7e041ce7-c5b9-34a1-a651-510eb215d332,SESCO,II.1.1,Capital Federal,AR-C,annual,2017,naphtha combustion consumption by freight transport,313.0806756,TJ,CH4,3.0,kg/TJ,939.2420268000001,kg -8244b796-f644-3fae-95e6-f5c57577a988,SESCO,II.1.1,Capital Federal,AR-C,annual,2017,naphtha combustion consumption by freight transport,313.0806756,TJ,N2O,0.6,kg/TJ,187.84840536,kg -046f564d-8d5c-30e6-8164-34e3ea5e1718,SESCO,II.1.1,Catamarca,AR-K,annual,2017,naphtha combustion consumption by freight transport,0.060306399999999996,TJ,CO2,73300.0,kg/TJ,4420.4591199999995,kg -c265ef54-3b55-3d50-a098-5eb7440b1705,SESCO,II.1.1,Catamarca,AR-K,annual,2017,naphtha combustion consumption by freight transport,0.060306399999999996,TJ,CH4,3.0,kg/TJ,0.1809192,kg -0d574dd2-33c4-3d0f-a81f-d84e94bc3b74,SESCO,II.1.1,Catamarca,AR-K,annual,2017,naphtha combustion consumption by freight transport,0.060306399999999996,TJ,N2O,0.6,kg/TJ,0.036183839999999995,kg -0e0887cc-ae29-3041-9021-65a2ab0c2e70,SESCO,II.1.1,Chaco,AR-H,annual,2017,naphtha combustion consumption by freight transport,9.980709199999998,TJ,CO2,73300.0,kg/TJ,731585.9843599999,kg -f24bf609-ea78-312d-9af3-121ccca8abd7,SESCO,II.1.1,Chaco,AR-H,annual,2017,naphtha combustion consumption by freight transport,9.980709199999998,TJ,CH4,3.0,kg/TJ,29.942127599999992,kg -10ce8fcb-d958-3925-99b1-990c01f81790,SESCO,II.1.1,Chaco,AR-H,annual,2017,naphtha combustion consumption by freight transport,9.980709199999998,TJ,N2O,0.6,kg/TJ,5.988425519999999,kg -27a2edc1-2333-37c7-8752-15d1792aa0f4,SESCO,II.1.1,Chubut,AR-U,annual,2017,naphtha combustion consumption by freight transport,2.2916431999999998,TJ,CO2,73300.0,kg/TJ,167977.44655999998,kg -c32a2af2-6df3-3801-8101-6be1192db9c1,SESCO,II.1.1,Chubut,AR-U,annual,2017,naphtha combustion consumption by freight transport,2.2916431999999998,TJ,CH4,3.0,kg/TJ,6.8749296,kg -ef8a7539-6c22-33eb-b5a4-a7820257b0aa,SESCO,II.1.1,Chubut,AR-U,annual,2017,naphtha combustion consumption by freight transport,2.2916431999999998,TJ,N2O,0.6,kg/TJ,1.3749859199999999,kg -dfc2c74a-2a02-3a8a-b3e6-c0bcf2397446,SESCO,II.1.1,Corrientes,AR-W,annual,2017,naphtha combustion consumption by freight transport,4.975277999999999,TJ,CO2,73300.0,kg/TJ,364687.87739999994,kg -3c2d7673-6c69-327e-b040-e0585fa1cc40,SESCO,II.1.1,Corrientes,AR-W,annual,2017,naphtha combustion consumption by freight transport,4.975277999999999,TJ,CH4,3.0,kg/TJ,14.925833999999998,kg -afc6d5c4-8881-3ba2-a0e9-10cc2b191c30,SESCO,II.1.1,Corrientes,AR-W,annual,2017,naphtha combustion consumption by freight transport,4.975277999999999,TJ,N2O,0.6,kg/TJ,2.9851667999999996,kg -52b4951a-2e0e-3523-baa2-6d06b20a82a1,SESCO,II.1.1,Córdoba,AR-X,annual,2017,naphtha combustion consumption by freight transport,18.7552904,TJ,CO2,73300.0,kg/TJ,1374762.78632,kg -2718dd4a-6087-3231-b6c5-83ca8eebed72,SESCO,II.1.1,Córdoba,AR-X,annual,2017,naphtha combustion consumption by freight transport,18.7552904,TJ,CH4,3.0,kg/TJ,56.2658712,kg -bb10a50b-ecea-397b-bafd-9881c5b469f7,SESCO,II.1.1,Córdoba,AR-X,annual,2017,naphtha combustion consumption by freight transport,18.7552904,TJ,N2O,0.6,kg/TJ,11.25317424,kg -5d67fa1a-4ec6-35d5-ab8e-aa686ee65736,SESCO,II.1.1,Entre Rios,AR-E,annual,2017,naphtha combustion consumption by freight transport,13.297561199999999,TJ,CO2,73300.0,kg/TJ,974711.23596,kg -b1009f15-b24b-3bc3-a89b-6902628d1ac7,SESCO,II.1.1,Entre Rios,AR-E,annual,2017,naphtha combustion consumption by freight transport,13.297561199999999,TJ,CH4,3.0,kg/TJ,39.8926836,kg -d6bfee35-6845-3ebe-854c-0ad7b0b94fa7,SESCO,II.1.1,Entre Rios,AR-E,annual,2017,naphtha combustion consumption by freight transport,13.297561199999999,TJ,N2O,0.6,kg/TJ,7.978536719999999,kg -2d3e6b72-145c-30cd-a539-e23ff6c34269,SESCO,II.1.1,Formosa,AR-P,annual,2017,naphtha combustion consumption by freight transport,0.4221448,TJ,CO2,73300.0,kg/TJ,30943.21384,kg -3a5227a3-7cd6-32ed-a7b9-bbedfdb44531,SESCO,II.1.1,Formosa,AR-P,annual,2017,naphtha combustion consumption by freight transport,0.4221448,TJ,CH4,3.0,kg/TJ,1.2664344,kg -37aa2096-0f26-315e-93bf-aa0b0e429f32,SESCO,II.1.1,Formosa,AR-P,annual,2017,naphtha combustion consumption by freight transport,0.4221448,TJ,N2O,0.6,kg/TJ,0.25328688,kg -b9caa134-2fe7-35e9-aef3-fb001cd366f6,SESCO,II.1.1,Jujuy,AR-Y,annual,2017,naphtha combustion consumption by freight transport,0.2110724,TJ,CO2,73300.0,kg/TJ,15471.60692,kg -9fe78ef5-c3c3-3b98-a2a6-fb8858899825,SESCO,II.1.1,Jujuy,AR-Y,annual,2017,naphtha combustion consumption by freight transport,0.2110724,TJ,CH4,3.0,kg/TJ,0.6332172,kg -b2489567-2767-3c8e-b83d-03be6a559fdc,SESCO,II.1.1,Jujuy,AR-Y,annual,2017,naphtha combustion consumption by freight transport,0.2110724,TJ,N2O,0.6,kg/TJ,0.12664344,kg -ef6e7faa-3bcb-39a9-bb4f-c9edbcf265b7,SESCO,II.1.1,La Pampa,AR-L,annual,2017,naphtha combustion consumption by freight transport,1.7488855999999997,TJ,CO2,73300.0,kg/TJ,128193.31447999997,kg -ad678c9f-e573-3f14-9f88-b28d1cb7365a,SESCO,II.1.1,La Pampa,AR-L,annual,2017,naphtha combustion consumption by freight transport,1.7488855999999997,TJ,CH4,3.0,kg/TJ,5.246656799999999,kg -e78886ed-02ca-32a0-8149-cce1513df029,SESCO,II.1.1,La Pampa,AR-L,annual,2017,naphtha combustion consumption by freight transport,1.7488855999999997,TJ,N2O,0.6,kg/TJ,1.0493313599999998,kg -0937bbac-497f-381e-87d8-f955cc5d9196,SESCO,II.1.1,La Rioja,AR-F,annual,2017,naphtha combustion consumption by freight transport,1.4775067999999998,TJ,CO2,73300.0,kg/TJ,108301.24843999998,kg -e52a2fe8-b56a-329e-8a57-323558affbfc,SESCO,II.1.1,La Rioja,AR-F,annual,2017,naphtha combustion consumption by freight transport,1.4775067999999998,TJ,CH4,3.0,kg/TJ,4.4325204,kg -fb726cc1-680e-3766-ade1-add73db73add,SESCO,II.1.1,La Rioja,AR-F,annual,2017,naphtha combustion consumption by freight transport,1.4775067999999998,TJ,N2O,0.6,kg/TJ,0.8865040799999998,kg -1e389e4e-6836-301c-a724-d4b6af51a583,SESCO,II.1.1,Mendoza,AR-M,annual,2017,naphtha combustion consumption by freight transport,16.584259999999997,TJ,CO2,73300.0,kg/TJ,1215626.2579999997,kg -90061f24-59b6-3b99-99b4-4fef4faf1bda,SESCO,II.1.1,Mendoza,AR-M,annual,2017,naphtha combustion consumption by freight transport,16.584259999999997,TJ,CH4,3.0,kg/TJ,49.75277999999999,kg -a866c503-aef0-37a7-aa45-982ade3a8d9f,SESCO,II.1.1,Mendoza,AR-M,annual,2017,naphtha combustion consumption by freight transport,16.584259999999997,TJ,N2O,0.6,kg/TJ,9.950555999999997,kg -fae939d7-5d46-3389-962d-412afb31cceb,SESCO,II.1.1,Misiones,AR-N,annual,2017,naphtha combustion consumption by freight transport,3.7088435999999994,TJ,CO2,73300.0,kg/TJ,271858.23587999993,kg -4b09f520-e7e8-31b2-8af7-ac18510c47f3,SESCO,II.1.1,Misiones,AR-N,annual,2017,naphtha combustion consumption by freight transport,3.7088435999999994,TJ,CH4,3.0,kg/TJ,11.126530799999998,kg -73dd4449-9e4d-3765-9d9d-fe192797f6b4,SESCO,II.1.1,Misiones,AR-N,annual,2017,naphtha combustion consumption by freight transport,3.7088435999999994,TJ,N2O,0.6,kg/TJ,2.2253061599999997,kg -0a16c9c8-c4c2-3b93-9c26-0749db750448,SESCO,II.1.1,Neuquén,AR-Q,annual,2017,naphtha combustion consumption by freight transport,8.352436399999998,TJ,CO2,73300.0,kg/TJ,612233.5881199999,kg -6d0dde1a-54a4-3084-a5a9-98a7e9040d1b,SESCO,II.1.1,Neuquén,AR-Q,annual,2017,naphtha combustion consumption by freight transport,8.352436399999998,TJ,CH4,3.0,kg/TJ,25.057309199999995,kg -6aa08a7a-4c3a-3d34-a939-837d619339f9,SESCO,II.1.1,Neuquén,AR-Q,annual,2017,naphtha combustion consumption by freight transport,8.352436399999998,TJ,N2O,0.6,kg/TJ,5.011461839999999,kg -1d2ddaf2-2b55-3a68-a0d8-f2588824cf84,SESCO,II.1.1,Rio Negro,AR-R,annual,2017,naphtha combustion consumption by freight transport,32.6860688,TJ,CO2,73300.0,kg/TJ,2395888.84304,kg -7d17ef51-6436-3472-988c-141fc059a5ac,SESCO,II.1.1,Rio Negro,AR-R,annual,2017,naphtha combustion consumption by freight transport,32.6860688,TJ,CH4,3.0,kg/TJ,98.0582064,kg -716f5549-0376-3fb5-aa75-7a0ffd1b491a,SESCO,II.1.1,Rio Negro,AR-R,annual,2017,naphtha combustion consumption by freight transport,32.6860688,TJ,N2O,0.6,kg/TJ,19.61164128,kg -3e88d4ad-9a04-3319-83da-ac176119c455,SESCO,II.1.1,Salta,AR-A,annual,2017,naphtha combustion consumption by freight transport,4.52298,TJ,CO2,73300.0,kg/TJ,331534.43399999995,kg -04386643-d818-3315-90fc-e01eae02076f,SESCO,II.1.1,Salta,AR-A,annual,2017,naphtha combustion consumption by freight transport,4.52298,TJ,CH4,3.0,kg/TJ,13.568939999999998,kg -4e68aa8b-8889-3dca-bef4-ed5282b68723,SESCO,II.1.1,Salta,AR-A,annual,2017,naphtha combustion consumption by freight transport,4.52298,TJ,N2O,0.6,kg/TJ,2.7137879999999996,kg -673a2d60-c8c7-383c-943d-4d2345ce1526,SESCO,II.1.1,San Juan,AR-J,annual,2017,naphtha combustion consumption by freight transport,0.7839831999999999,TJ,CO2,73300.0,kg/TJ,57465.968559999994,kg -db93da80-86e4-3023-a259-278dc2fbbbf6,SESCO,II.1.1,San Juan,AR-J,annual,2017,naphtha combustion consumption by freight transport,0.7839831999999999,TJ,CH4,3.0,kg/TJ,2.3519495999999998,kg -2894ec59-cd15-33c0-93ab-2b8f451fb1fe,SESCO,II.1.1,San Juan,AR-J,annual,2017,naphtha combustion consumption by freight transport,0.7839831999999999,TJ,N2O,0.6,kg/TJ,0.4703899199999999,kg -53a40099-968b-3d4c-bdf3-25d7fb9d4444,SESCO,II.1.1,San Luis,AR-D,annual,2017,naphtha combustion consumption by freight transport,2.6836347999999997,TJ,CO2,73300.0,kg/TJ,196710.43084,kg -27e3d31d-6b5b-343a-ab5f-1144d760420a,SESCO,II.1.1,San Luis,AR-D,annual,2017,naphtha combustion consumption by freight transport,2.6836347999999997,TJ,CH4,3.0,kg/TJ,8.050904399999999,kg -372f7936-cae8-3491-af2b-0b8f6876245c,SESCO,II.1.1,San Luis,AR-D,annual,2017,naphtha combustion consumption by freight transport,2.6836347999999997,TJ,N2O,0.6,kg/TJ,1.6101808799999997,kg -10f812be-64a5-3564-92d7-74ccb73fa983,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2017,naphtha combustion consumption by freight transport,0.8442896,TJ,CO2,73300.0,kg/TJ,61886.42768,kg -c8a8931a-583c-3567-9118-9d9051833d7f,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2017,naphtha combustion consumption by freight transport,0.8442896,TJ,CH4,3.0,kg/TJ,2.5328688,kg -4ae84d18-f89a-3c09-b297-a47ab15a91d1,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2017,naphtha combustion consumption by freight transport,0.8442896,TJ,N2O,0.6,kg/TJ,0.50657376,kg -6fb30415-b965-376e-bf2c-b6ffdb302b93,SESCO,II.1.1,Santa Fe,AR-S,annual,2017,naphtha combustion consumption by freight transport,44.415663599999995,TJ,CO2,73300.0,kg/TJ,3255668.1418799995,kg -5762b39f-9b88-36e1-9b68-79fd5422ad99,SESCO,II.1.1,Santa Fe,AR-S,annual,2017,naphtha combustion consumption by freight transport,44.415663599999995,TJ,CH4,3.0,kg/TJ,133.2469908,kg -b75b1814-2fc9-3579-9ef5-75f2e9afddb8,SESCO,II.1.1,Santa Fe,AR-S,annual,2017,naphtha combustion consumption by freight transport,44.415663599999995,TJ,N2O,0.6,kg/TJ,26.649398159999997,kg -4a2d777c-20a0-3980-af4f-66b61a02e2f4,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2017,naphtha combustion consumption by freight transport,0.4522979999999999,TJ,CO2,73300.0,kg/TJ,33153.4434,kg -d60110e8-9390-3491-9ec9-3c265d296083,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2017,naphtha combustion consumption by freight transport,0.4522979999999999,TJ,CH4,3.0,kg/TJ,1.3568939999999998,kg -2cc29c81-4a2a-3253-8bd6-dcedbadb9425,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2017,naphtha combustion consumption by freight transport,0.4522979999999999,TJ,N2O,0.6,kg/TJ,0.2713787999999999,kg -892bea0c-8a79-3183-ac16-ab73d1501cb7,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2017,naphtha combustion consumption by freight transport,0.6935236,TJ,CO2,73300.0,kg/TJ,50835.27988,kg -bbd81689-7f84-3c8f-9ed3-57ac24baac70,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2017,naphtha combustion consumption by freight transport,0.6935236,TJ,CH4,3.0,kg/TJ,2.0805708000000003,kg -9cbee66f-9ce5-3d89-808f-2cdd72f8e5a2,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2017,naphtha combustion consumption by freight transport,0.6935236,TJ,N2O,0.6,kg/TJ,0.41611416,kg -bdfa6407-dc73-3c00-af97-dd845406bae5,SESCO,II.1.1,Tucuman,AR-T,annual,2017,naphtha combustion consumption by freight transport,3.467618,TJ,CO2,73300.0,kg/TJ,254176.3994,kg -7179f370-778e-3016-a01a-b00c0c036a71,SESCO,II.1.1,Tucuman,AR-T,annual,2017,naphtha combustion consumption by freight transport,3.467618,TJ,CH4,3.0,kg/TJ,10.402854,kg -fbc5ac3a-f1d5-3200-a485-c52464925b19,SESCO,II.1.1,Tucuman,AR-T,annual,2017,naphtha combustion consumption by freight transport,3.467618,TJ,N2O,0.6,kg/TJ,2.0805708,kg -cb84772d-b391-3130-9d37-8581bb5453a3,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,naphtha combustion consumption by to the public,1257.8318291,TJ,CO2,73300.0,kg/TJ,92199073.07303001,kg -862d7b29-4dee-30ee-b4a7-507868902752,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,naphtha combustion consumption by to the public,1257.8318291,TJ,CH4,3.0,kg/TJ,3773.4954873,kg -c046853b-3e44-3063-b447-58bbb133e029,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,naphtha combustion consumption by to the public,1257.8318291,TJ,N2O,0.6,kg/TJ,754.69909746,kg -37882e41-2b8f-382b-a01c-b788e973fa59,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,naphtha combustion consumption by to the public,91.64002924999998,TJ,CO2,73300.0,kg/TJ,6717214.144024999,kg -a3c0252d-21b5-3a9e-9a55-a441f8b1e9a9,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,naphtha combustion consumption by to the public,91.64002924999998,TJ,CH4,3.0,kg/TJ,274.92008774999994,kg -5174908d-633b-35dd-b73c-cb128d9d9099,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,naphtha combustion consumption by to the public,91.64002924999998,TJ,N2O,0.6,kg/TJ,54.98401754999999,kg -5fda1f39-d22e-34ab-a065-0a5e4f20abb1,SESCO,II.1.1,Chaco,AR-H,annual,2018,naphtha combustion consumption by to the public,131.83355955,TJ,CO2,73300.0,kg/TJ,9663399.915014999,kg -75dac7cc-8df1-3df9-a0c6-cd80d52fc218,SESCO,II.1.1,Chaco,AR-H,annual,2018,naphtha combustion consumption by to the public,131.83355955,TJ,CH4,3.0,kg/TJ,395.50067864999994,kg -6db8999a-8bd0-3ab4-98e7-2378fb9d0ae2,SESCO,II.1.1,Chaco,AR-H,annual,2018,naphtha combustion consumption by to the public,131.83355955,TJ,N2O,0.6,kg/TJ,79.10013572999999,kg -48e21a04-b8f5-3814-ad83-b2e6b177a995,SESCO,II.1.1,Corrientes,AR-W,annual,2018,naphtha combustion consumption by to the public,2.28718875,TJ,CO2,73300.0,kg/TJ,167650.935375,kg -e0c5a085-32de-3bbe-9ba6-29f42c6a49bd,SESCO,II.1.1,Corrientes,AR-W,annual,2018,naphtha combustion consumption by to the public,2.28718875,TJ,CH4,3.0,kg/TJ,6.861566249999999,kg -103916d6-e7bb-3416-b444-0e15b7b3b752,SESCO,II.1.1,Corrientes,AR-W,annual,2018,naphtha combustion consumption by to the public,2.28718875,TJ,N2O,0.6,kg/TJ,1.37231325,kg -0fa2cfc1-5439-323e-9c6e-21e6cb6c5051,SESCO,II.1.1,Córdoba,AR-X,annual,2018,naphtha combustion consumption by to the public,546.0586900999999,TJ,CO2,73300.0,kg/TJ,40026101.98432999,kg -f266ecf3-5d77-325b-83d3-507cd0b59be9,SESCO,II.1.1,Córdoba,AR-X,annual,2018,naphtha combustion consumption by to the public,546.0586900999999,TJ,CH4,3.0,kg/TJ,1638.1760702999998,kg -39104602-918b-3542-9cf8-67a23aa2021c,SESCO,II.1.1,Córdoba,AR-X,annual,2018,naphtha combustion consumption by to the public,546.0586900999999,TJ,N2O,0.6,kg/TJ,327.63521405999995,kg -da7a16e6-735a-3dd7-b0d0-7d5f4c654b8b,SESCO,II.1.1,Mendoza,AR-M,annual,2018,naphtha combustion consumption by to the public,336.39972135,TJ,CO2,73300.0,kg/TJ,24658099.574954998,kg -b89f444f-7d4d-3cc8-82b3-147997902dac,SESCO,II.1.1,Mendoza,AR-M,annual,2018,naphtha combustion consumption by to the public,336.39972135,TJ,CH4,3.0,kg/TJ,1009.19916405,kg -2b15ad55-58ce-3633-ab3e-7a0606e28015,SESCO,II.1.1,Mendoza,AR-M,annual,2018,naphtha combustion consumption by to the public,336.39972135,TJ,N2O,0.6,kg/TJ,201.83983281,kg -dc7b5dd1-4702-3046-98b9-5cd681e9d3d1,SESCO,II.1.1,Misiones,AR-N,annual,2018,naphtha combustion consumption by to the public,0.36595019999999995,TJ,CO2,73300.0,kg/TJ,26824.149659999995,kg -b8e61c96-04bd-3a0e-8e76-2a2e10710d21,SESCO,II.1.1,Misiones,AR-N,annual,2018,naphtha combustion consumption by to the public,0.36595019999999995,TJ,CH4,3.0,kg/TJ,1.0978506,kg -ad3cc1be-1eb8-3659-a2da-d75a92dc5384,SESCO,II.1.1,Misiones,AR-N,annual,2018,naphtha combustion consumption by to the public,0.36595019999999995,TJ,N2O,0.6,kg/TJ,0.21957011999999995,kg -19ea4b1d-3cc2-3a8c-a79a-ed22abd5ec50,SESCO,II.1.1,San Juan,AR-J,annual,2018,naphtha combustion consumption by to the public,1.5857842,TJ,CO2,73300.0,kg/TJ,116237.98186,kg -3d14d20a-d37c-3127-ba42-444c2917eae5,SESCO,II.1.1,San Juan,AR-J,annual,2018,naphtha combustion consumption by to the public,1.5857842,TJ,CH4,3.0,kg/TJ,4.7573526,kg -08c9c443-4ef4-338d-8d3e-391282f95021,SESCO,II.1.1,San Juan,AR-J,annual,2018,naphtha combustion consumption by to the public,1.5857842,TJ,N2O,0.6,kg/TJ,0.95147052,kg -61f5f3f2-bfed-3d23-a5f1-2d0eca50f109,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,naphtha combustion consumption by to the public,456.40089109999997,TJ,CO2,73300.0,kg/TJ,33454185.317629997,kg -38779756-dff7-368b-bb1b-1126e57f83aa,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,naphtha combustion consumption by to the public,456.40089109999997,TJ,CH4,3.0,kg/TJ,1369.2026732999998,kg -4f3fc553-c0f1-38fa-a8c0-dc091394528b,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,naphtha combustion consumption by to the public,456.40089109999997,TJ,N2O,0.6,kg/TJ,273.84053465999995,kg -81de1e72-e46e-33b8-a650-4528675bf7c7,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2018,naphtha combustion consumption by to the public,0.48793359999999997,TJ,CO2,73300.0,kg/TJ,35765.53288,kg -23280704-bd36-30f8-b5a8-14247676f9ae,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2018,naphtha combustion consumption by to the public,0.48793359999999997,TJ,CH4,3.0,kg/TJ,1.4638008,kg -3db9c5a2-5cb6-370a-9bbb-8989afc08ca1,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2018,naphtha combustion consumption by to the public,0.48793359999999997,TJ,N2O,0.6,kg/TJ,0.29276016,kg -9315f778-305a-3e9f-b2dd-4229ae95606f,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,naphtha combustion consumption by to the public,141.25677719999996,TJ,CO2,73300.0,kg/TJ,10354121.768759998,kg -ccdd6335-84d7-32d9-8e13-0c4d93e60bb7,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,naphtha combustion consumption by to the public,141.25677719999996,TJ,CH4,3.0,kg/TJ,423.77033159999985,kg -1af613eb-d385-31bb-b1a7-6d54989b1a12,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,naphtha combustion consumption by to the public,141.25677719999996,TJ,N2O,0.6,kg/TJ,84.75406631999998,kg -52a9c662-e767-3392-97d2-a2aa2236964f,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,naphtha combustion consumption by to the public,16.68122995,TJ,CO2,73300.0,kg/TJ,1222734.155335,kg -f6db2077-0733-351d-9202-af3d65433069,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,naphtha combustion consumption by to the public,16.68122995,TJ,CH4,3.0,kg/TJ,50.04368984999999,kg -ae682490-a516-3672-a036-b37108a3b3f8,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,naphtha combustion consumption by to the public,16.68122995,TJ,N2O,0.6,kg/TJ,10.008737969999999,kg -50e92ebe-5e79-3747-b36b-60bfd5074234,SESCO,II.1.1,Chaco,AR-H,annual,2018,naphtha combustion consumption by to the public,9.575696899999999,TJ,CO2,73300.0,kg/TJ,701898.5827699999,kg -6d979c2b-8325-35dd-b069-1ac9f1e78ba4,SESCO,II.1.1,Chaco,AR-H,annual,2018,naphtha combustion consumption by to the public,9.575696899999999,TJ,CH4,3.0,kg/TJ,28.727090699999998,kg -8d7ec489-8ba7-377d-9370-f9e307e691e5,SESCO,II.1.1,Chaco,AR-H,annual,2018,naphtha combustion consumption by to the public,9.575696899999999,TJ,N2O,0.6,kg/TJ,5.745418139999999,kg -ce298aca-422d-3bb3-9809-f1b74822fbf1,SESCO,II.1.1,Corrientes,AR-W,annual,2018,naphtha combustion consumption by to the public,1.8602468499999998,TJ,CO2,73300.0,kg/TJ,136356.094105,kg -ad39a18a-1baa-368c-9e4e-79beaa335cf1,SESCO,II.1.1,Corrientes,AR-W,annual,2018,naphtha combustion consumption by to the public,1.8602468499999998,TJ,CH4,3.0,kg/TJ,5.58074055,kg -c4aebfaf-7809-360b-a672-425e9969ad46,SESCO,II.1.1,Corrientes,AR-W,annual,2018,naphtha combustion consumption by to the public,1.8602468499999998,TJ,N2O,0.6,kg/TJ,1.11614811,kg -27a80bea-ff14-3c7d-bd03-ee7d068fb8f6,SESCO,II.1.1,Córdoba,AR-X,annual,2018,naphtha combustion consumption by to the public,73.3730151,TJ,CO2,73300.0,kg/TJ,5378242.00683,kg -a8815048-d055-3edf-9ef6-4fe1b12c17f9,SESCO,II.1.1,Córdoba,AR-X,annual,2018,naphtha combustion consumption by to the public,73.3730151,TJ,CH4,3.0,kg/TJ,220.1190453,kg -c10493c2-9fe4-329a-9a1c-505642dc9b4a,SESCO,II.1.1,Córdoba,AR-X,annual,2018,naphtha combustion consumption by to the public,73.3730151,TJ,N2O,0.6,kg/TJ,44.02380906,kg -f64a48a8-2517-37cd-924b-c8bfff8b38bc,SESCO,II.1.1,Mendoza,AR-M,annual,2018,naphtha combustion consumption by to the public,33.60642669999999,TJ,CO2,73300.0,kg/TJ,2463351.0771099995,kg -a7602814-2deb-34c4-81b1-51fb16ac7b68,SESCO,II.1.1,Mendoza,AR-M,annual,2018,naphtha combustion consumption by to the public,33.60642669999999,TJ,CH4,3.0,kg/TJ,100.81928009999999,kg -af3253d6-8569-3e5b-ae4b-d90ac8b3628a,SESCO,II.1.1,Mendoza,AR-M,annual,2018,naphtha combustion consumption by to the public,33.60642669999999,TJ,N2O,0.6,kg/TJ,20.163856019999994,kg -a202ab0c-b3fc-3ef3-9b2e-e3006c4d43bd,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,naphtha combustion consumption by to the public,42.8161734,TJ,CO2,73300.0,kg/TJ,3138425.5102199996,kg -c46b4b97-dda6-3996-ba71-636f6f4022aa,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,naphtha combustion consumption by to the public,42.8161734,TJ,CH4,3.0,kg/TJ,128.4485202,kg -6aea5d62-694b-354f-b0e8-eb5cbbc94e0b,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,naphtha combustion consumption by to the public,42.8161734,TJ,N2O,0.6,kg/TJ,25.68970404,kg -9e05dc59-b95d-383f-bf95-f43f8933d208,SESCO,II.5.1,Buenos Aires,AR-B,annual,2018,naphtha combustion consumption by agriculture machines,11.9543732,TJ,CO2,73300.0,kg/TJ,876255.5555599999,kg -f85bd251-d443-3f30-9c23-7b1b8abc6eb5,SESCO,II.5.1,Buenos Aires,AR-B,annual,2018,naphtha combustion consumption by agriculture machines,11.9543732,TJ,CH4,3.0,kg/TJ,35.8631196,kg -30daec0b-aabd-32a9-94ab-72e5e94ce880,SESCO,II.5.1,Buenos Aires,AR-B,annual,2018,naphtha combustion consumption by agriculture machines,11.9543732,TJ,N2O,0.6,kg/TJ,7.1726239199999995,kg -3b0bf217-fbe7-367e-bbd1-085040314af2,SESCO,II.5.1,Córdoba,AR-X,annual,2018,naphtha combustion consumption by agriculture machines,1.7992551499999998,TJ,CO2,73300.0,kg/TJ,131885.402495,kg -d526766d-d343-37ec-8ffb-b65f307ec262,SESCO,II.5.1,Córdoba,AR-X,annual,2018,naphtha combustion consumption by agriculture machines,1.7992551499999998,TJ,CH4,3.0,kg/TJ,5.39776545,kg -d1154b6b-e55a-317b-bc5a-3f29d73cd613,SESCO,II.5.1,Córdoba,AR-X,annual,2018,naphtha combustion consumption by agriculture machines,1.7992551499999998,TJ,N2O,0.6,kg/TJ,1.0795530899999999,kg -91fe37b5-40e4-3f5e-8250-66c30b2fdba4,SESCO,II.5.1,Santa Fe,AR-S,annual,2018,naphtha combustion consumption by agriculture machines,13.87561175,TJ,CO2,73300.0,kg/TJ,1017082.3412749999,kg -1a5f7d46-1a2f-36e9-9685-b82e0b821c31,SESCO,II.5.1,Santa Fe,AR-S,annual,2018,naphtha combustion consumption by agriculture machines,13.87561175,TJ,CH4,3.0,kg/TJ,41.62683525,kg -39ff790b-3512-321a-bad7-6dce24652af1,SESCO,II.5.1,Santa Fe,AR-S,annual,2018,naphtha combustion consumption by agriculture machines,13.87561175,TJ,N2O,0.6,kg/TJ,8.325367049999999,kg -b0af51c6-2240-3f5f-a244-68741ff3941c,SESCO,II.5.1,Tucuman,AR-T,annual,2018,naphtha combustion consumption by agriculture machines,10.612555799999999,TJ,CO2,73300.0,kg/TJ,777900.34014,kg -6124dd91-8139-3e10-8da0-80e77369daac,SESCO,II.5.1,Tucuman,AR-T,annual,2018,naphtha combustion consumption by agriculture machines,10.612555799999999,TJ,CH4,3.0,kg/TJ,31.837667399999997,kg -4a0d2542-61eb-3555-bbe1-29ba86c2e60d,SESCO,II.5.1,Tucuman,AR-T,annual,2018,naphtha combustion consumption by agriculture machines,10.612555799999999,TJ,N2O,0.6,kg/TJ,6.36753348,kg -dfdc3d0a-8df4-3f69-ba63-a2e08ccaf9df,SESCO,II.5.1,Buenos Aires,AR-B,annual,2018,naphtha combustion consumption by agriculture machines,2.40917215,TJ,CO2,73300.0,kg/TJ,176592.318595,kg -b4c3338d-8945-30d7-aa6c-365b98323f1e,SESCO,II.5.1,Buenos Aires,AR-B,annual,2018,naphtha combustion consumption by agriculture machines,2.40917215,TJ,CH4,3.0,kg/TJ,7.2275164499999995,kg -37e7f574-6c26-3699-8eea-570d7283706c,SESCO,II.5.1,Buenos Aires,AR-B,annual,2018,naphtha combustion consumption by agriculture machines,2.40917215,TJ,N2O,0.6,kg/TJ,1.4455032899999998,kg -11efb2ad-21dd-3787-987a-7b2527a78e18,SESCO,II.5.1,Córdoba,AR-X,annual,2018,naphtha combustion consumption by agriculture machines,0.8538838,TJ,CO2,73300.0,kg/TJ,62589.682539999994,kg -99360053-acb0-30a4-aab7-c4fa8b2433dd,SESCO,II.5.1,Córdoba,AR-X,annual,2018,naphtha combustion consumption by agriculture machines,0.8538838,TJ,CH4,3.0,kg/TJ,2.5616513999999997,kg -fd457982-ebf2-3296-8c25-969e81442882,SESCO,II.5.1,Córdoba,AR-X,annual,2018,naphtha combustion consumption by agriculture machines,0.8538838,TJ,N2O,0.6,kg/TJ,0.5123302799999999,kg -d51bdeb1-c6ab-3772-8b18-4cbb8fd631c4,SESCO,II.5.1,Santa Fe,AR-S,annual,2018,naphtha combustion consumption by agriculture machines,4.513385799999999,TJ,CO2,73300.0,kg/TJ,330831.17913999996,kg -76e38219-cba4-370b-9821-ccf9ff8adfd1,SESCO,II.5.1,Santa Fe,AR-S,annual,2018,naphtha combustion consumption by agriculture machines,4.513385799999999,TJ,CH4,3.0,kg/TJ,13.540157399999998,kg -bdecdff5-ee66-3821-b377-283a1c874fd3,SESCO,II.5.1,Santa Fe,AR-S,annual,2018,naphtha combustion consumption by agriculture machines,4.513385799999999,TJ,N2O,0.6,kg/TJ,2.7080314799999994,kg -b93276cd-c4d3-30ac-8b38-9f6730fc0f37,SESCO,II.5.1,Tucuman,AR-T,annual,2018,naphtha combustion consumption by agriculture machines,2.2566928999999996,TJ,CO2,73300.0,kg/TJ,165415.58956999998,kg -eceec560-2adf-3342-b645-475b66708c12,SESCO,II.5.1,Tucuman,AR-T,annual,2018,naphtha combustion consumption by agriculture machines,2.2566928999999996,TJ,CH4,3.0,kg/TJ,6.770078699999999,kg -1502a146-121b-3678-89cb-99815cfafa70,SESCO,II.5.1,Tucuman,AR-T,annual,2018,naphtha combustion consumption by agriculture machines,2.2566928999999996,TJ,N2O,0.6,kg/TJ,1.3540157399999997,kg -aa2ac629-ce32-3d22-bfbc-3afd135253de,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,naphtha combustion consumption by to the public,2607.79162105,TJ,CO2,73300.0,kg/TJ,191151125.822965,kg -92507348-9df4-3185-8b3a-5b074fb05258,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,naphtha combustion consumption by to the public,2607.79162105,TJ,CH4,3.0,kg/TJ,7823.374863149999,kg -21684d9b-c331-3232-9fe1-e4d63b6bf662,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,naphtha combustion consumption by to the public,2607.79162105,TJ,N2O,0.6,kg/TJ,1564.6749726299997,kg -650a3966-87e7-324a-90a3-0b9d563bf4a1,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,naphtha combustion consumption by to the public,812.86688175,TJ,CO2,73300.0,kg/TJ,59583142.432275,kg -f012eae6-0bb4-3379-a392-8fde4033467d,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,naphtha combustion consumption by to the public,812.86688175,TJ,CH4,3.0,kg/TJ,2438.6006452499996,kg -a3a21802-0792-3ace-bfbe-4420de42e495,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,naphtha combustion consumption by to the public,812.86688175,TJ,N2O,0.6,kg/TJ,487.72012904999997,kg -c2fc4052-2bf9-39ff-9128-81c6445a32c8,SESCO,II.1.1,Catamarca,AR-K,annual,2018,naphtha combustion consumption by to the public,116.46365114999999,TJ,CO2,73300.0,kg/TJ,8536785.629294999,kg -15a0de82-fdff-3041-b740-fd84688c10c6,SESCO,II.1.1,Catamarca,AR-K,annual,2018,naphtha combustion consumption by to the public,116.46365114999999,TJ,CH4,3.0,kg/TJ,349.39095345,kg -8069d086-b588-311a-9ab9-4ef61a33131c,SESCO,II.1.1,Catamarca,AR-K,annual,2018,naphtha combustion consumption by to the public,116.46365114999999,TJ,N2O,0.6,kg/TJ,69.87819069,kg -d311bb03-6465-3247-a3af-05ba1ae8df4e,SESCO,II.1.1,Chaco,AR-H,annual,2018,naphtha combustion consumption by to the public,84.07705845,TJ,CO2,73300.0,kg/TJ,6162848.384385,kg -c165e18d-e400-327b-bb2c-2730f3a290af,SESCO,II.1.1,Chaco,AR-H,annual,2018,naphtha combustion consumption by to the public,84.07705845,TJ,CH4,3.0,kg/TJ,252.23117535,kg -74bba476-0799-3e3c-a6b7-7ecc09f9075a,SESCO,II.1.1,Chaco,AR-H,annual,2018,naphtha combustion consumption by to the public,84.07705845,TJ,N2O,0.6,kg/TJ,50.44623506999999,kg -083566f1-a710-3e58-913d-f0071669a214,SESCO,II.1.1,Chubut,AR-U,annual,2018,naphtha combustion consumption by to the public,80.66152325,TJ,CO2,73300.0,kg/TJ,5912489.654225,kg -5c476cd5-9eb8-395b-b268-bf148e002d75,SESCO,II.1.1,Chubut,AR-U,annual,2018,naphtha combustion consumption by to the public,80.66152325,TJ,CH4,3.0,kg/TJ,241.98456975,kg -e561ba0f-2630-32b1-9ddf-7ec2416a11a4,SESCO,II.1.1,Chubut,AR-U,annual,2018,naphtha combustion consumption by to the public,80.66152325,TJ,N2O,0.6,kg/TJ,48.39691395,kg -588c7350-a772-328f-a7cf-aa875d4423a5,SESCO,II.1.1,Corrientes,AR-W,annual,2018,naphtha combustion consumption by to the public,153.18065454999999,TJ,CO2,73300.0,kg/TJ,11228141.978515,kg -b56cd667-640f-3c78-808d-633616512b10,SESCO,II.1.1,Corrientes,AR-W,annual,2018,naphtha combustion consumption by to the public,153.18065454999999,TJ,CH4,3.0,kg/TJ,459.54196364999996,kg -3bfef6b7-7a4c-316a-9498-f4dfc9bf7b5c,SESCO,II.1.1,Corrientes,AR-W,annual,2018,naphtha combustion consumption by to the public,153.18065454999999,TJ,N2O,0.6,kg/TJ,91.90839272999999,kg -01e1a2a6-228f-3d1b-af3f-f07fd899faf2,SESCO,II.1.1,Córdoba,AR-X,annual,2018,naphtha combustion consumption by to the public,754.5893123999999,TJ,CO2,73300.0,kg/TJ,55311396.598919995,kg -bc85566e-e286-3388-aafd-a708936bc77c,SESCO,II.1.1,Córdoba,AR-X,annual,2018,naphtha combustion consumption by to the public,754.5893123999999,TJ,CH4,3.0,kg/TJ,2263.7679372,kg -7ab482f4-12f7-3e1d-a158-00b2627bc393,SESCO,II.1.1,Córdoba,AR-X,annual,2018,naphtha combustion consumption by to the public,754.5893123999999,TJ,N2O,0.6,kg/TJ,452.75358743999993,kg -f6d19576-315a-3dba-b3c9-6bd74c2edea5,SESCO,II.1.1,Entre Rios,AR-E,annual,2018,naphtha combustion consumption by to the public,316.0589893999999,TJ,CO2,73300.0,kg/TJ,23167123.923019994,kg -f1d60a20-dd35-3015-aa1d-324f0ddb1873,SESCO,II.1.1,Entre Rios,AR-E,annual,2018,naphtha combustion consumption by to the public,316.0589893999999,TJ,CH4,3.0,kg/TJ,948.1769681999997,kg -cf1616e2-053e-3da6-9639-0158f82a43b4,SESCO,II.1.1,Entre Rios,AR-E,annual,2018,naphtha combustion consumption by to the public,316.0589893999999,TJ,N2O,0.6,kg/TJ,189.63539363999993,kg -0369fce1-783b-3997-84b2-1aa9ed88a17c,SESCO,II.1.1,Formosa,AR-P,annual,2018,naphtha combustion consumption by to the public,167.14775385,TJ,CO2,73300.0,kg/TJ,12251930.357205,kg -0680a10b-0166-3ca3-943a-501cde40b272,SESCO,II.1.1,Formosa,AR-P,annual,2018,naphtha combustion consumption by to the public,167.14775385,TJ,CH4,3.0,kg/TJ,501.44326155,kg -89b2e853-223d-3549-a864-d2f813c8bc7e,SESCO,II.1.1,Formosa,AR-P,annual,2018,naphtha combustion consumption by to the public,167.14775385,TJ,N2O,0.6,kg/TJ,100.28865230999999,kg -bd2649a6-b23f-3484-b877-973f9cd2ce0b,SESCO,II.1.1,Jujuy,AR-Y,annual,2018,naphtha combustion consumption by to the public,45.89625425,TJ,CO2,73300.0,kg/TJ,3364195.436525,kg -827beb42-7ec1-32ff-a7d5-9d148236f879,SESCO,II.1.1,Jujuy,AR-Y,annual,2018,naphtha combustion consumption by to the public,45.89625425,TJ,CH4,3.0,kg/TJ,137.68876275,kg -cc0ec126-191c-35b5-993e-1e5908694884,SESCO,II.1.1,Jujuy,AR-Y,annual,2018,naphtha combustion consumption by to the public,45.89625425,TJ,N2O,0.6,kg/TJ,27.537752549999997,kg -c78839f7-5277-314b-a9df-0b21c6c3738c,SESCO,II.1.1,La Pampa,AR-L,annual,2018,naphtha combustion consumption by to the public,40.58997634999999,TJ,CO2,73300.0,kg/TJ,2975245.2664549993,kg -5fd7e36e-fec6-333a-85d7-562b0e74c4f8,SESCO,II.1.1,La Pampa,AR-L,annual,2018,naphtha combustion consumption by to the public,40.58997634999999,TJ,CH4,3.0,kg/TJ,121.76992904999997,kg -92232a02-29ca-342a-a0d5-5766f8a8be6d,SESCO,II.1.1,La Pampa,AR-L,annual,2018,naphtha combustion consumption by to the public,40.58997634999999,TJ,N2O,0.6,kg/TJ,24.353985809999994,kg -8e7c8248-6c50-3a1f-9660-9374a9158f4c,SESCO,II.1.1,La Rioja,AR-F,annual,2018,naphtha combustion consumption by to the public,32.53907195,TJ,CO2,73300.0,kg/TJ,2385113.973935,kg -a3086b8c-782f-30ef-b2f8-18823044a6cf,SESCO,II.1.1,La Rioja,AR-F,annual,2018,naphtha combustion consumption by to the public,32.53907195,TJ,CH4,3.0,kg/TJ,97.61721585000001,kg -00f77270-5eac-37c1-b0a8-770f9cc41918,SESCO,II.1.1,La Rioja,AR-F,annual,2018,naphtha combustion consumption by to the public,32.53907195,TJ,N2O,0.6,kg/TJ,19.52344317,kg -8582d335-16bd-3106-bf19-b09de11cf3b7,SESCO,II.1.1,Mendoza,AR-M,annual,2018,naphtha combustion consumption by to the public,105.11919495,TJ,CO2,73300.0,kg/TJ,7705236.989835,kg -5a9e60f9-5c4e-332e-abd5-6a36a973e38d,SESCO,II.1.1,Mendoza,AR-M,annual,2018,naphtha combustion consumption by to the public,105.11919495,TJ,CH4,3.0,kg/TJ,315.35758484999997,kg -c7c8445e-d643-384f-9471-fbae2e41e58b,SESCO,II.1.1,Mendoza,AR-M,annual,2018,naphtha combustion consumption by to the public,105.11919495,TJ,N2O,0.6,kg/TJ,63.07151696999999,kg -f81dedfc-175a-3ec2-8a8e-c64fa595ea1c,SESCO,II.1.1,Misiones,AR-N,annual,2018,naphtha combustion consumption by to the public,203.37682364999998,TJ,CO2,73300.0,kg/TJ,14907521.173545,kg -113d42d2-f2a2-3414-944e-c511243d2b40,SESCO,II.1.1,Misiones,AR-N,annual,2018,naphtha combustion consumption by to the public,203.37682364999998,TJ,CH4,3.0,kg/TJ,610.1304709499999,kg -6a84839b-6180-30bc-a2c2-daabf257b6bc,SESCO,II.1.1,Misiones,AR-N,annual,2018,naphtha combustion consumption by to the public,203.37682364999998,TJ,N2O,0.6,kg/TJ,122.02609418999998,kg -512ed5e3-dd8b-3990-9bbb-ab5865320bf8,SESCO,II.1.1,Neuquén,AR-Q,annual,2018,naphtha combustion consumption by to the public,93.83573044999999,TJ,CO2,73300.0,kg/TJ,6878159.041984999,kg -6ba7744d-25e0-38f6-9fd4-cb83fd1ee00a,SESCO,II.1.1,Neuquén,AR-Q,annual,2018,naphtha combustion consumption by to the public,93.83573044999999,TJ,CH4,3.0,kg/TJ,281.50719134999997,kg -56207da7-3396-3134-af1f-cfe8885bc3fe,SESCO,II.1.1,Neuquén,AR-Q,annual,2018,naphtha combustion consumption by to the public,93.83573044999999,TJ,N2O,0.6,kg/TJ,56.30143826999999,kg -972082bc-0dc9-35f0-b284-d6587e093739,SESCO,II.1.1,Rio Negro,AR-R,annual,2018,naphtha combustion consumption by to the public,168.00163765,TJ,CO2,73300.0,kg/TJ,12314520.039745,kg -60713f10-0ee0-3678-a673-7501ecb70959,SESCO,II.1.1,Rio Negro,AR-R,annual,2018,naphtha combustion consumption by to the public,168.00163765,TJ,CH4,3.0,kg/TJ,504.00491294999995,kg -866621fe-f274-35f6-b7c7-728e3f63ab02,SESCO,II.1.1,Rio Negro,AR-R,annual,2018,naphtha combustion consumption by to the public,168.00163765,TJ,N2O,0.6,kg/TJ,100.80098258999999,kg -60de019d-6031-3cac-9e38-27cb6824b782,SESCO,II.1.1,Salta,AR-A,annual,2018,naphtha combustion consumption by to the public,31.105766999999997,TJ,CO2,73300.0,kg/TJ,2280052.7210999997,kg -a1ecbf3f-f92d-30f7-af9a-8ebd4eeb49ce,SESCO,II.1.1,Salta,AR-A,annual,2018,naphtha combustion consumption by to the public,31.105766999999997,TJ,CH4,3.0,kg/TJ,93.31730099999999,kg -61b1dddc-94f6-3990-a7ad-c69da2b30652,SESCO,II.1.1,Salta,AR-A,annual,2018,naphtha combustion consumption by to the public,31.105766999999997,TJ,N2O,0.6,kg/TJ,18.663460199999996,kg -d848cd9a-8031-3397-b00a-278cdb557e86,SESCO,II.1.1,San Juan,AR-J,annual,2018,naphtha combustion consumption by to the public,63.94979744999999,TJ,CO2,73300.0,kg/TJ,4687520.153084999,kg -49d2fa48-c478-3971-bd1d-bd4365e93b8d,SESCO,II.1.1,San Juan,AR-J,annual,2018,naphtha combustion consumption by to the public,63.94979744999999,TJ,CH4,3.0,kg/TJ,191.84939234999996,kg -1cf0e7d7-9844-3c1a-a940-20e08a9a5e08,SESCO,II.1.1,San Juan,AR-J,annual,2018,naphtha combustion consumption by to the public,63.94979744999999,TJ,N2O,0.6,kg/TJ,38.369878469999996,kg -303d74d6-ac64-397f-8748-a4e406ccc526,SESCO,II.1.1,San Luis,AR-D,annual,2018,naphtha combustion consumption by to the public,155.31536405,TJ,CO2,73300.0,kg/TJ,11384616.184865,kg -e7813992-67eb-3491-b919-c3eaabdc1083,SESCO,II.1.1,San Luis,AR-D,annual,2018,naphtha combustion consumption by to the public,155.31536405,TJ,CH4,3.0,kg/TJ,465.94609215,kg -d0583891-763c-317e-b81e-2d4f1c2c79fc,SESCO,II.1.1,San Luis,AR-D,annual,2018,naphtha combustion consumption by to the public,155.31536405,TJ,N2O,0.6,kg/TJ,93.18921843,kg -cd91a4f3-ddf2-325f-8307-f7c1d6dad152,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,naphtha combustion consumption by to the public,632.2704580499999,TJ,CO2,73300.0,kg/TJ,46345424.575064994,kg -973fb355-0b7c-3ee9-9f1d-1a089d24387e,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,naphtha combustion consumption by to the public,632.2704580499999,TJ,CH4,3.0,kg/TJ,1896.8113741499997,kg -4e3ec269-2a9f-35f5-b718-7551ba9efde8,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,naphtha combustion consumption by to the public,632.2704580499999,TJ,N2O,0.6,kg/TJ,379.36227482999993,kg -308edcfa-7173-332b-aae1-fd860fab2a1c,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2018,naphtha combustion consumption by to the public,84.41251279999999,TJ,CO2,73300.0,kg/TJ,6187437.188239999,kg -ed8b7564-52e2-3d2d-a279-69046bd1bfb6,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2018,naphtha combustion consumption by to the public,84.41251279999999,TJ,CH4,3.0,kg/TJ,253.23753839999995,kg -006ba908-6979-3657-b73d-059028d26686,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2018,naphtha combustion consumption by to the public,84.41251279999999,TJ,N2O,0.6,kg/TJ,50.64750767999999,kg -fd05c91d-0b78-3922-843d-732f43a1153e,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2018,naphtha combustion consumption by to the public,39.004192149999994,TJ,CO2,73300.0,kg/TJ,2859007.2845949996,kg -ba5588c7-a5b0-3d32-bdc3-782d05ed2a31,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2018,naphtha combustion consumption by to the public,39.004192149999994,TJ,CH4,3.0,kg/TJ,117.01257644999998,kg -95e654bf-a340-3d75-b5be-4a1d4d931990,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2018,naphtha combustion consumption by to the public,39.004192149999994,TJ,N2O,0.6,kg/TJ,23.402515289999997,kg -7a8dbb75-c121-39b9-ab46-cf9a0b10f7fc,SESCO,II.1.1,Tucuman,AR-T,annual,2018,naphtha combustion consumption by to the public,11.252968649999998,TJ,CO2,73300.0,kg/TJ,824842.6020449998,kg -e5c3f240-6568-3ee7-ae4e-0f8dda025e10,SESCO,II.1.1,Tucuman,AR-T,annual,2018,naphtha combustion consumption by to the public,11.252968649999998,TJ,CH4,3.0,kg/TJ,33.75890594999999,kg -2e743b13-39d2-378a-9a97-5d1ac5467749,SESCO,II.1.1,Tucuman,AR-T,annual,2018,naphtha combustion consumption by to the public,11.252968649999998,TJ,N2O,0.6,kg/TJ,6.751781189999998,kg -97428e38-af82-3b04-af96-26eb58e407b4,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,naphtha combustion consumption by to the public,786.70144245,TJ,CO2,73300.0,kg/TJ,57665215.731584996,kg -2b84d47d-a17d-37ca-9ac9-69ef629a8ae3,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,naphtha combustion consumption by to the public,786.70144245,TJ,CH4,3.0,kg/TJ,2360.10432735,kg -88f327ff-b951-3b12-8223-27de73a5fead,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,naphtha combustion consumption by to the public,786.70144245,TJ,N2O,0.6,kg/TJ,472.02086546999993,kg -e9419f39-a416-367d-a9e8-02c3e2dee484,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,naphtha combustion consumption by to the public,338.25996819999995,TJ,CO2,73300.0,kg/TJ,24794455.669059996,kg -0cf93fb9-8456-3f61-8a7b-84f11838dfb7,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,naphtha combustion consumption by to the public,338.25996819999995,TJ,CH4,3.0,kg/TJ,1014.7799045999998,kg -5659f0c9-1447-3a41-bab2-3ffe9595f4b9,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,naphtha combustion consumption by to the public,338.25996819999995,TJ,N2O,0.6,kg/TJ,202.95598091999997,kg -f31f446b-753d-3583-bd76-6af4e8287ad0,SESCO,II.1.1,Catamarca,AR-K,annual,2018,naphtha combustion consumption by to the public,35.10072335,TJ,CO2,73300.0,kg/TJ,2572883.021555,kg -be2e6583-4bd1-3c53-bede-e9b47d15f33a,SESCO,II.1.1,Catamarca,AR-K,annual,2018,naphtha combustion consumption by to the public,35.10072335,TJ,CH4,3.0,kg/TJ,105.30217005,kg -b2b86af9-1a24-3ae4-a262-3b567ac5c0b6,SESCO,II.1.1,Catamarca,AR-K,annual,2018,naphtha combustion consumption by to the public,35.10072335,TJ,N2O,0.6,kg/TJ,21.06043401,kg -ca96c435-90dd-3a30-9f0b-88217b85f8f3,SESCO,II.1.1,Chaco,AR-H,annual,2018,naphtha combustion consumption by to the public,18.02304735,TJ,CO2,73300.0,kg/TJ,1321089.3707549998,kg -7900fd46-02c9-33cd-bf44-ea71b244f6f0,SESCO,II.1.1,Chaco,AR-H,annual,2018,naphtha combustion consumption by to the public,18.02304735,TJ,CH4,3.0,kg/TJ,54.069142049999996,kg -7b6b570c-8e21-3e3b-a77e-818f561d961e,SESCO,II.1.1,Chaco,AR-H,annual,2018,naphtha combustion consumption by to the public,18.02304735,TJ,N2O,0.6,kg/TJ,10.81382841,kg -0484cf60-0f9f-395e-a3d7-df313b68ce49,SESCO,II.1.1,Chubut,AR-U,annual,2018,naphtha combustion consumption by to the public,20.828665549999997,TJ,CO2,73300.0,kg/TJ,1526741.1848149998,kg -1ef33af9-c428-3a33-8369-3b4c357b30ac,SESCO,II.1.1,Chubut,AR-U,annual,2018,naphtha combustion consumption by to the public,20.828665549999997,TJ,CH4,3.0,kg/TJ,62.48599664999999,kg -62a67961-2ca6-3f54-8b8d-27fd1ef35c28,SESCO,II.1.1,Chubut,AR-U,annual,2018,naphtha combustion consumption by to the public,20.828665549999997,TJ,N2O,0.6,kg/TJ,12.497199329999997,kg -13a4da99-898f-3cef-80a2-cad99a223fba,SESCO,II.1.1,Corrientes,AR-W,annual,2018,naphtha combustion consumption by to the public,44.401957599999996,TJ,CO2,73300.0,kg/TJ,3254663.4920799998,kg -f9e5e360-f35a-36f9-957a-d79fabb7e5bf,SESCO,II.1.1,Corrientes,AR-W,annual,2018,naphtha combustion consumption by to the public,44.401957599999996,TJ,CH4,3.0,kg/TJ,133.20587279999998,kg -189473e1-e673-351c-a10d-fdbe33b052b0,SESCO,II.1.1,Corrientes,AR-W,annual,2018,naphtha combustion consumption by to the public,44.401957599999996,TJ,N2O,0.6,kg/TJ,26.641174559999996,kg -f025f846-1a54-3d82-aa8e-573392fc834b,SESCO,II.1.1,Córdoba,AR-X,annual,2018,naphtha combustion consumption by to the public,197.03368684999998,TJ,CO2,73300.0,kg/TJ,14442569.246104999,kg -7c73936d-4fe2-3017-9084-08d8d8b27d1d,SESCO,II.1.1,Córdoba,AR-X,annual,2018,naphtha combustion consumption by to the public,197.03368684999998,TJ,CH4,3.0,kg/TJ,591.1010605499999,kg -defb1058-a4c0-333c-ba21-73759ddd70e4,SESCO,II.1.1,Córdoba,AR-X,annual,2018,naphtha combustion consumption by to the public,197.03368684999998,TJ,N2O,0.6,kg/TJ,118.22021210999998,kg -80766efa-b3ed-334f-ae2b-3d2296bb335c,SESCO,II.1.1,Entre Rios,AR-E,annual,2018,naphtha combustion consumption by to the public,97.37324904999998,TJ,CO2,73300.0,kg/TJ,7137459.155364999,kg -eb45c424-c5a0-3f6c-a601-b15b5a3a12c7,SESCO,II.1.1,Entre Rios,AR-E,annual,2018,naphtha combustion consumption by to the public,97.37324904999998,TJ,CH4,3.0,kg/TJ,292.11974714999997,kg -1bc488f2-6e84-344a-bddd-d760e0104e2d,SESCO,II.1.1,Entre Rios,AR-E,annual,2018,naphtha combustion consumption by to the public,97.37324904999998,TJ,N2O,0.6,kg/TJ,58.423949429999986,kg -f97d5e98-124a-35b8-94dc-2183b3b6dc7e,SESCO,II.1.1,Formosa,AR-P,annual,2018,naphtha combustion consumption by to the public,41.62683524999999,TJ,CO2,73300.0,kg/TJ,3051247.0238249996,kg -41048405-2166-3c6b-a017-5503d6529155,SESCO,II.1.1,Formosa,AR-P,annual,2018,naphtha combustion consumption by to the public,41.62683524999999,TJ,CH4,3.0,kg/TJ,124.88050574999997,kg -9e641fa9-d961-341c-83c2-6e2473d06e63,SESCO,II.1.1,Formosa,AR-P,annual,2018,naphtha combustion consumption by to the public,41.62683524999999,TJ,N2O,0.6,kg/TJ,24.976101149999995,kg -5670f20a-68fd-3605-ba1a-cf8b74f33f8f,SESCO,II.1.1,Jujuy,AR-Y,annual,2018,naphtha combustion consumption by to the public,10.6735475,TJ,CO2,73300.0,kg/TJ,782371.03175,kg -938badc5-ad5f-3374-929f-bd09af5045ea,SESCO,II.1.1,Jujuy,AR-Y,annual,2018,naphtha combustion consumption by to the public,10.6735475,TJ,CH4,3.0,kg/TJ,32.0206425,kg -2f483c21-d425-35cc-9541-b6192b2e9c09,SESCO,II.1.1,Jujuy,AR-Y,annual,2018,naphtha combustion consumption by to the public,10.6735475,TJ,N2O,0.6,kg/TJ,6.4041285,kg -4abf71a4-c77b-3e58-a811-c9bec14a43ff,SESCO,II.1.1,La Pampa,AR-L,annual,2018,naphtha combustion consumption by to the public,17.535113749999997,TJ,CO2,73300.0,kg/TJ,1285323.8378749997,kg -76448d6b-f225-3787-96a9-8137a6e6010e,SESCO,II.1.1,La Pampa,AR-L,annual,2018,naphtha combustion consumption by to the public,17.535113749999997,TJ,CH4,3.0,kg/TJ,52.605341249999995,kg -8e58f83e-4649-3df1-96a8-31a6cc060aba,SESCO,II.1.1,La Pampa,AR-L,annual,2018,naphtha combustion consumption by to the public,17.535113749999997,TJ,N2O,0.6,kg/TJ,10.521068249999997,kg -4d4c4574-11ee-3649-9fc2-ffb375427269,SESCO,II.1.1,La Rioja,AR-F,annual,2018,naphtha combustion consumption by to the public,6.953053799999999,TJ,CO2,73300.0,kg/TJ,509658.84354,kg -203d97ee-37fa-3bcb-95db-784ca4d429d7,SESCO,II.1.1,La Rioja,AR-F,annual,2018,naphtha combustion consumption by to the public,6.953053799999999,TJ,CH4,3.0,kg/TJ,20.859161399999998,kg -c70af3b0-546b-388c-a43f-c5313fda93b4,SESCO,II.1.1,La Rioja,AR-F,annual,2018,naphtha combustion consumption by to the public,6.953053799999999,TJ,N2O,0.6,kg/TJ,4.171832279999999,kg -40305c43-72f2-3b12-8633-58e05fa508bd,SESCO,II.1.1,Mendoza,AR-M,annual,2018,naphtha combustion consumption by to the public,41.169397499999995,TJ,CO2,73300.0,kg/TJ,3017716.83675,kg -18071cff-d6e8-3b3b-909b-f7756ec53aad,SESCO,II.1.1,Mendoza,AR-M,annual,2018,naphtha combustion consumption by to the public,41.169397499999995,TJ,CH4,3.0,kg/TJ,123.50819249999998,kg -42536842-b2d8-3d0b-aada-7f42f8a092c4,SESCO,II.1.1,Mendoza,AR-M,annual,2018,naphtha combustion consumption by to the public,41.169397499999995,TJ,N2O,0.6,kg/TJ,24.701638499999998,kg -31931410-864a-3613-826a-11c8586c211c,SESCO,II.1.1,Misiones,AR-N,annual,2018,naphtha combustion consumption by to the public,30.556841699999996,TJ,CO2,73300.0,kg/TJ,2239816.49661,kg -6f5085e2-1800-3edd-ab46-0e9f6eb66fd0,SESCO,II.1.1,Misiones,AR-N,annual,2018,naphtha combustion consumption by to the public,30.556841699999996,TJ,CH4,3.0,kg/TJ,91.67052509999999,kg -d8f202d0-b581-3297-b4ab-513dd826aa7e,SESCO,II.1.1,Misiones,AR-N,annual,2018,naphtha combustion consumption by to the public,30.556841699999996,TJ,N2O,0.6,kg/TJ,18.334105019999996,kg -7a0bb3bb-8798-3915-8b64-76d733ce36c0,SESCO,II.1.1,Neuquén,AR-Q,annual,2018,naphtha combustion consumption by to the public,53.00178729999999,TJ,CO2,73300.0,kg/TJ,3885031.0090899994,kg -9e10bd6b-b88d-343f-b578-cd7235a20e8c,SESCO,II.1.1,Neuquén,AR-Q,annual,2018,naphtha combustion consumption by to the public,53.00178729999999,TJ,CH4,3.0,kg/TJ,159.00536189999997,kg -267b2b51-ab28-33d6-9a18-228f4ce2a996,SESCO,II.1.1,Neuquén,AR-Q,annual,2018,naphtha combustion consumption by to the public,53.00178729999999,TJ,N2O,0.6,kg/TJ,31.801072379999994,kg -edd1f420-24e0-3475-918c-691e3799f71a,SESCO,II.1.1,Rio Negro,AR-R,annual,2018,naphtha combustion consumption by to the public,69.77450479999999,TJ,CO2,73300.0,kg/TJ,5114471.201839999,kg -d3720161-52ce-3980-b8bb-1a74b16a993c,SESCO,II.1.1,Rio Negro,AR-R,annual,2018,naphtha combustion consumption by to the public,69.77450479999999,TJ,CH4,3.0,kg/TJ,209.32351439999997,kg -c6e581da-ed4d-392c-9e1a-2371f22ea51c,SESCO,II.1.1,Rio Negro,AR-R,annual,2018,naphtha combustion consumption by to the public,69.77450479999999,TJ,N2O,0.6,kg/TJ,41.86470287999999,kg -225024a8-9dc1-32f0-98d2-c4e8c84b75b4,SESCO,II.1.1,Salta,AR-A,annual,2018,naphtha combustion consumption by to the public,4.11693975,TJ,CO2,73300.0,kg/TJ,301771.68367500004,kg -028d07a4-b286-34ac-a622-d4820c191300,SESCO,II.1.1,Salta,AR-A,annual,2018,naphtha combustion consumption by to the public,4.11693975,TJ,CH4,3.0,kg/TJ,12.35081925,kg -f271877f-e099-3d65-8d55-c8ccc89a10aa,SESCO,II.1.1,Salta,AR-A,annual,2018,naphtha combustion consumption by to the public,4.11693975,TJ,N2O,0.6,kg/TJ,2.47016385,kg -f031eeee-2cdc-324d-ae06-0ce8d6a75c0a,SESCO,II.1.1,San Juan,AR-J,annual,2018,naphtha combustion consumption by to the public,18.267014149999998,TJ,CO2,73300.0,kg/TJ,1338972.1371949997,kg -6ea03634-74c7-3939-8674-0431c5cea561,SESCO,II.1.1,San Juan,AR-J,annual,2018,naphtha combustion consumption by to the public,18.267014149999998,TJ,CH4,3.0,kg/TJ,54.80104245,kg -64c2c218-5afb-3bca-a27a-1ef5a1576f72,SESCO,II.1.1,San Juan,AR-J,annual,2018,naphtha combustion consumption by to the public,18.267014149999998,TJ,N2O,0.6,kg/TJ,10.960208489999998,kg -fc81cb31-7f0d-3c9a-9e47-63846e5fa6aa,SESCO,II.1.1,San Luis,AR-D,annual,2018,naphtha combustion consumption by to the public,38.485762699999995,TJ,CO2,73300.0,kg/TJ,2821006.4059099997,kg -69c38e19-ba4f-39ef-8e48-6d181f870528,SESCO,II.1.1,San Luis,AR-D,annual,2018,naphtha combustion consumption by to the public,38.485762699999995,TJ,CH4,3.0,kg/TJ,115.45728809999999,kg -f4601121-4d0e-3eb6-a4b0-14ca5d48be22,SESCO,II.1.1,San Luis,AR-D,annual,2018,naphtha combustion consumption by to the public,38.485762699999995,TJ,N2O,0.6,kg/TJ,23.091457619999996,kg -135616a6-8e19-3f93-95a0-195caf262776,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,naphtha combustion consumption by to the public,185.26228874999998,TJ,CO2,73300.0,kg/TJ,13579725.765375,kg -f66639a0-8f19-35f0-aa80-3e5777619c90,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,naphtha combustion consumption by to the public,185.26228874999998,TJ,CH4,3.0,kg/TJ,555.78686625,kg -beb4618f-7c69-32f7-b8a6-498702e2c1a1,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,naphtha combustion consumption by to the public,185.26228874999998,TJ,N2O,0.6,kg/TJ,111.15737324999999,kg -37d06735-7610-3e4f-9661-183e2909e769,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2018,naphtha combustion consumption by to the public,29.093040899999995,TJ,CO2,73300.0,kg/TJ,2132519.89797,kg -be29337d-9f4f-3891-9cbf-daff6c50414e,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2018,naphtha combustion consumption by to the public,29.093040899999995,TJ,CH4,3.0,kg/TJ,87.27912269999999,kg -c95917db-79ce-3a3d-9daf-b95145560326,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2018,naphtha combustion consumption by to the public,29.093040899999995,TJ,N2O,0.6,kg/TJ,17.455824539999995,kg -2f7fb820-b811-36c6-b8fa-b66d3852abaf,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2018,naphtha combustion consumption by to the public,13.692636649999999,TJ,CO2,73300.0,kg/TJ,1003670.266445,kg -f3ba7be8-392a-3bb2-8506-965b23e6e990,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2018,naphtha combustion consumption by to the public,13.692636649999999,TJ,CH4,3.0,kg/TJ,41.07790995,kg -ccaceab0-31bb-3d73-b74a-e3231f7c9c50,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2018,naphtha combustion consumption by to the public,13.692636649999999,TJ,N2O,0.6,kg/TJ,8.215581989999999,kg -1c54ad99-a63c-3700-bf0c-38dc574348e4,SESCO,II.1.1,Tucuman,AR-T,annual,2018,naphtha combustion consumption by to the public,6.282145099999999,TJ,CO2,73300.0,kg/TJ,460481.23582999996,kg -05db074f-e9f3-3e89-a432-e951689b90f9,SESCO,II.1.1,Tucuman,AR-T,annual,2018,naphtha combustion consumption by to the public,6.282145099999999,TJ,CH4,3.0,kg/TJ,18.846435299999996,kg -052e3490-7569-3d2b-b1db-da92c83fe8b9,SESCO,II.1.1,Tucuman,AR-T,annual,2018,naphtha combustion consumption by to the public,6.282145099999999,TJ,N2O,0.6,kg/TJ,3.7692870599999995,kg -89c76aa8-7c73-3eca-a864-655106558edc,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,naphtha combustion consumption by freight transport,2.2566928999999996,TJ,CO2,73300.0,kg/TJ,165415.58956999998,kg -8980967e-7007-327b-abf1-3649c3e0936b,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,naphtha combustion consumption by freight transport,2.2566928999999996,TJ,CH4,3.0,kg/TJ,6.770078699999999,kg -c8d17e56-50cb-35a2-aca2-135032f96277,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,naphtha combustion consumption by freight transport,2.2566928999999996,TJ,N2O,0.6,kg/TJ,1.3540157399999997,kg -677a4174-11f9-3869-9b60-c9634245d405,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,naphtha combustion consumption by freight transport,0.9148754999999998,TJ,CO2,73300.0,kg/TJ,67060.37414999999,kg -d7959aa3-6374-3deb-9f9e-18f3c894c236,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,naphtha combustion consumption by freight transport,0.9148754999999998,TJ,CH4,3.0,kg/TJ,2.7446264999999994,kg -a9c41800-fa6c-317a-9ca4-4be80c658afd,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,naphtha combustion consumption by freight transport,0.9148754999999998,TJ,N2O,0.6,kg/TJ,0.5489252999999998,kg -3d40f8e8-6775-3808-a1c2-2493e180bd4b,SESCO,II.1.1,Córdoba,AR-X,annual,2018,naphtha combustion consumption by freight transport,0.4269419,TJ,CO2,73300.0,kg/TJ,31294.841269999997,kg -fcf81b6b-2b67-3feb-b00a-4a73d4d160b8,SESCO,II.1.1,Córdoba,AR-X,annual,2018,naphtha combustion consumption by freight transport,0.4269419,TJ,CH4,3.0,kg/TJ,1.2808256999999998,kg -76b0eb7f-c64d-354a-9b5d-f3075e8eba6e,SESCO,II.1.1,Córdoba,AR-X,annual,2018,naphtha combustion consumption by freight transport,0.4269419,TJ,N2O,0.6,kg/TJ,0.25616513999999996,kg -13544306-34ce-339c-b5d6-e106694fdcd0,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,naphtha combustion consumption by freight transport,0.12198339999999999,TJ,CO2,73300.0,kg/TJ,8941.38322,kg -b67abee9-fac9-3370-8862-b59e8ac37c1a,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,naphtha combustion consumption by freight transport,0.12198339999999999,TJ,CH4,3.0,kg/TJ,0.3659502,kg -ee4145c2-9c05-3994-a129-b6ce185d9133,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,naphtha combustion consumption by freight transport,0.12198339999999999,TJ,N2O,0.6,kg/TJ,0.07319004,kg -84352499-fe1e-372a-9876-497e2f9af48f,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,naphtha combustion consumption by freight transport,1.8907426999999999,TJ,CO2,73300.0,kg/TJ,138591.43991,kg -c71d4631-1e63-3f47-87dc-2b4c163d4952,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,naphtha combustion consumption by freight transport,1.8907426999999999,TJ,CH4,3.0,kg/TJ,5.6722281,kg -95e6b415-733c-3385-a5d4-3ede1663b2d8,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,naphtha combustion consumption by freight transport,1.8907426999999999,TJ,N2O,0.6,kg/TJ,1.13444562,kg -cdcfcb50-002d-3669-8def-58cb6dda20c0,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,naphtha combustion consumption by freight transport,0.9453713499999999,TJ,CO2,73300.0,kg/TJ,69295.719955,kg -6a1b4f96-2b5e-349e-9322-b2b030faa88b,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,naphtha combustion consumption by freight transport,0.9453713499999999,TJ,CH4,3.0,kg/TJ,2.83611405,kg -78c67310-28e6-3909-a76e-98fc7807dc76,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,naphtha combustion consumption by freight transport,0.9453713499999999,TJ,N2O,0.6,kg/TJ,0.56722281,kg -8626173e-4881-3421-9ca3-c85ee067b36a,SESCO,II.1.1,Córdoba,AR-X,annual,2018,naphtha combustion consumption by freight transport,0.4574377499999999,TJ,CO2,73300.0,kg/TJ,33530.187074999994,kg -980453c7-6587-3bc0-9cc5-9fb4d9db9c32,SESCO,II.1.1,Córdoba,AR-X,annual,2018,naphtha combustion consumption by freight transport,0.4574377499999999,TJ,CH4,3.0,kg/TJ,1.3723132499999997,kg -c0a51080-37e3-3c54-938f-34115647cfc5,SESCO,II.1.1,Córdoba,AR-X,annual,2018,naphtha combustion consumption by freight transport,0.4574377499999999,TJ,N2O,0.6,kg/TJ,0.2744626499999999,kg -d489d4a8-d733-30ef-bd1c-87c840025c29,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,naphtha combustion consumption by freight transport,0.30495849999999997,TJ,CO2,73300.0,kg/TJ,22353.458049999997,kg -690c6303-0656-3220-bdfe-de8188a8e502,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,naphtha combustion consumption by freight transport,0.30495849999999997,TJ,CH4,3.0,kg/TJ,0.9148755,kg -c2bf235d-ce74-3957-9314-c18ab743204d,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,naphtha combustion consumption by freight transport,0.30495849999999997,TJ,N2O,0.6,kg/TJ,0.18297509999999997,kg -62781837-2602-3a5f-8d92-d9e93bdb975f,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,naphtha combustion consumption by public passenger transport,1.8907426999999999,TJ,CO2,73300.0,kg/TJ,138591.43991,kg -ccb0cb36-4f27-34a2-b97e-a9860f89aa15,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,naphtha combustion consumption by public passenger transport,1.8907426999999999,TJ,CH4,3.0,kg/TJ,5.6722281,kg -f26a605d-f87a-3ab8-a1e7-c9a13e594b78,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,naphtha combustion consumption by public passenger transport,1.8907426999999999,TJ,N2O,0.6,kg/TJ,1.13444562,kg -210f8a58-4e29-30de-9846-823098245164,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,naphtha combustion consumption by public passenger transport,0.18297509999999997,TJ,CO2,73300.0,kg/TJ,13412.074829999998,kg -9a0ba2fa-60b5-3485-9739-1fc35e3afb17,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,naphtha combustion consumption by public passenger transport,0.18297509999999997,TJ,CH4,3.0,kg/TJ,0.5489253,kg -429de844-2f07-3659-bc66-2ce018464cd8,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,naphtha combustion consumption by public passenger transport,0.18297509999999997,TJ,N2O,0.6,kg/TJ,0.10978505999999998,kg -0487beb2-8a43-3855-bfbc-b202a39d9c82,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,naphtha combustion consumption by to the public,316.25458368273,TJ,CO2,73300.0,kg/TJ,23181460.98394411,kg -9b5b4337-f313-32af-99bc-3d08a5b86bbf,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,naphtha combustion consumption by to the public,316.25458368273,TJ,CH4,3.0,kg/TJ,948.76375104819,kg -1efde2c5-ce14-39d2-8fa2-45c2b205ae07,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,naphtha combustion consumption by to the public,316.25458368273,TJ,N2O,0.6,kg/TJ,189.752750209638,kg -c92395b6-c899-3885-acad-dfce8a607236,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,naphtha combustion consumption by to the public,28.384689395369996,TJ,CO2,73300.0,kg/TJ,2080597.7326806206,kg -6345db22-4c72-35e2-b97f-076a6018d573,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,naphtha combustion consumption by to the public,28.384689395369996,TJ,CH4,3.0,kg/TJ,85.15406818610998,kg -6d21e15a-4d32-310f-a6a5-4cc420e70e5c,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,naphtha combustion consumption by to the public,28.384689395369996,TJ,N2O,0.6,kg/TJ,17.030813637221996,kg -3e3f9ae7-6233-373f-a519-472c7409574e,SESCO,II.1.1,Catamarca,AR-K,annual,2018,naphtha combustion consumption by to the public,32.59331186880999,TJ,CO2,73300.0,kg/TJ,2389089.7599837724,kg -07d2c6af-d71e-3354-b323-b2d863642f6e,SESCO,II.1.1,Catamarca,AR-K,annual,2018,naphtha combustion consumption by to the public,32.59331186880999,TJ,CH4,3.0,kg/TJ,97.77993560642997,kg -c7427c10-8b99-3ecf-bfa7-d19373ec919c,SESCO,II.1.1,Catamarca,AR-K,annual,2018,naphtha combustion consumption by to the public,32.59331186880999,TJ,N2O,0.6,kg/TJ,19.555987121285995,kg -26fc8570-6772-3f44-a0e4-86130a8e02dd,SESCO,II.1.1,Chaco,AR-H,annual,2018,naphtha combustion consumption by to the public,36.04303596624499,TJ,CO2,73300.0,kg/TJ,2641954.536325758,kg -d5bbcd78-c8f1-3e32-8826-da0c0f376238,SESCO,II.1.1,Chaco,AR-H,annual,2018,naphtha combustion consumption by to the public,36.04303596624499,TJ,CH4,3.0,kg/TJ,108.12910789873499,kg -ac276ba2-d82c-33aa-99f0-d6f66eae0ff1,SESCO,II.1.1,Chaco,AR-H,annual,2018,naphtha combustion consumption by to the public,36.04303596624499,TJ,N2O,0.6,kg/TJ,21.625821579746994,kg -c4a130fc-25af-356d-9fc8-a9c8cc329dcf,SESCO,II.1.1,Corrientes,AR-W,annual,2018,naphtha combustion consumption by to the public,38.486400063264995,TJ,CO2,73300.0,kg/TJ,2821053.124637324,kg -4593aa84-b1f2-3b54-8297-83d67c99c352,SESCO,II.1.1,Corrientes,AR-W,annual,2018,naphtha combustion consumption by to the public,38.486400063264995,TJ,CH4,3.0,kg/TJ,115.45920018979498,kg -89b10b61-8302-31db-bf7b-89f0279eb1ad,SESCO,II.1.1,Corrientes,AR-W,annual,2018,naphtha combustion consumption by to the public,38.486400063264995,TJ,N2O,0.6,kg/TJ,23.091840037958995,kg -ed65c30a-3a70-306a-8f77-7ebe27753132,SESCO,II.1.1,Córdoba,AR-X,annual,2018,naphtha combustion consumption by to the public,155.50276409783496,TJ,CO2,73300.0,kg/TJ,11398352.608371302,kg -3cd4bfe9-cdff-3234-b0c9-59aeb3cf3182,SESCO,II.1.1,Córdoba,AR-X,annual,2018,naphtha combustion consumption by to the public,155.50276409783496,TJ,CH4,3.0,kg/TJ,466.50829229350484,kg -b2a3394a-aa3d-3de5-8883-5a12f71d0b89,SESCO,II.1.1,Córdoba,AR-X,annual,2018,naphtha combustion consumption by to the public,155.50276409783496,TJ,N2O,0.6,kg/TJ,93.30165845870097,kg -103ac369-4d08-3a53-ae61-8571b89ac083,SESCO,II.1.1,Entre Rios,AR-E,annual,2018,naphtha combustion consumption by to the public,48.524087743669995,TJ,CO2,73300.0,kg/TJ,3556815.6316110105,kg -1463875a-9291-37db-8dff-1a26853087b1,SESCO,II.1.1,Entre Rios,AR-E,annual,2018,naphtha combustion consumption by to the public,48.524087743669995,TJ,CH4,3.0,kg/TJ,145.57226323100997,kg -1400be18-f04c-3277-b0b9-23f5101ace3c,SESCO,II.1.1,Entre Rios,AR-E,annual,2018,naphtha combustion consumption by to the public,48.524087743669995,TJ,N2O,0.6,kg/TJ,29.114452646201997,kg -f95c6b97-85c0-334f-8cde-5654c681c548,SESCO,II.1.1,Jujuy,AR-Y,annual,2018,naphtha combustion consumption by to the public,12.095590332595,TJ,CO2,73300.0,kg/TJ,886606.7713792135,kg -6edd045b-4220-31b2-a4d5-02c8c7448385,SESCO,II.1.1,Jujuy,AR-Y,annual,2018,naphtha combustion consumption by to the public,12.095590332595,TJ,CH4,3.0,kg/TJ,36.286770997785,kg -b769ce38-1ffc-356f-9e4c-b7c76d0e753c,SESCO,II.1.1,Jujuy,AR-Y,annual,2018,naphtha combustion consumption by to the public,12.095590332595,TJ,N2O,0.6,kg/TJ,7.257354199557,kg -c2dab72f-55ee-33b2-ab16-7d1a952593fa,SESCO,II.1.1,La Rioja,AR-F,annual,2018,naphtha combustion consumption by to the public,6.9462837212999995,TJ,CO2,73300.0,kg/TJ,509162.59677128994,kg -eb3c78b8-12b5-3d8e-a110-867ed7178ade,SESCO,II.1.1,La Rioja,AR-F,annual,2018,naphtha combustion consumption by to the public,6.9462837212999995,TJ,CH4,3.0,kg/TJ,20.8388511639,kg -bfac2e19-08b7-3143-9484-c8ca63ecbb73,SESCO,II.1.1,La Rioja,AR-F,annual,2018,naphtha combustion consumption by to the public,6.9462837212999995,TJ,N2O,0.6,kg/TJ,4.16777023278,kg -a97849c7-6e21-3967-9168-38782ddefdaf,SESCO,II.1.1,Mendoza,AR-M,annual,2018,naphtha combustion consumption by to the public,37.499072522835,TJ,CO2,73300.0,kg/TJ,2748682.0159238055,kg -da5d99b0-4306-3e0b-a0f3-c1fe1e311907,SESCO,II.1.1,Mendoza,AR-M,annual,2018,naphtha combustion consumption by to the public,37.499072522835,TJ,CH4,3.0,kg/TJ,112.497217568505,kg -f9f57cb8-77c3-37e6-8de9-2867f00c46b1,SESCO,II.1.1,Mendoza,AR-M,annual,2018,naphtha combustion consumption by to the public,37.499072522835,TJ,N2O,0.6,kg/TJ,22.499443513701,kg -6b68666f-0f9c-37f7-9267-82b85ce89882,SESCO,II.1.1,Misiones,AR-N,annual,2018,naphtha combustion consumption by to the public,48.9050358027,TJ,CO2,73300.0,kg/TJ,3584739.1243379097,kg -8c185af0-9322-3935-a907-6e03fd9d783a,SESCO,II.1.1,Misiones,AR-N,annual,2018,naphtha combustion consumption by to the public,48.9050358027,TJ,CH4,3.0,kg/TJ,146.71510740809998,kg -48835e45-ccb0-3f70-8ac4-e97137dfc519,SESCO,II.1.1,Misiones,AR-N,annual,2018,naphtha combustion consumption by to the public,48.9050358027,TJ,N2O,0.6,kg/TJ,29.34302148162,kg -8862e033-403f-3233-8ac0-593e6781f7a8,SESCO,II.1.1,San Juan,AR-J,annual,2018,naphtha combustion consumption by to the public,44.19130446654,TJ,CO2,73300.0,kg/TJ,3239222.617397382,kg -84b89ff3-72f2-301a-b524-bf3a290b5a62,SESCO,II.1.1,San Juan,AR-J,annual,2018,naphtha combustion consumption by to the public,44.19130446654,TJ,CH4,3.0,kg/TJ,132.57391339961998,kg -69188ba7-7b61-3ead-9fac-e86a4b4ffd96,SESCO,II.1.1,San Juan,AR-J,annual,2018,naphtha combustion consumption by to the public,44.19130446654,TJ,N2O,0.6,kg/TJ,26.514782679923997,kg -d7c66ffc-7067-3e47-9e88-fc424fa341f8,SESCO,II.1.1,San Luis,AR-D,annual,2018,naphtha combustion consumption by to the public,34.20235525360499,TJ,CO2,73300.0,kg/TJ,2507032.640089246,kg -b4e6bdaf-c078-35e0-9651-ddde82a1ab17,SESCO,II.1.1,San Luis,AR-D,annual,2018,naphtha combustion consumption by to the public,34.20235525360499,TJ,CH4,3.0,kg/TJ,102.60706576081498,kg -fe37b3c6-250c-366d-b13a-cf6e169f2ac7,SESCO,II.1.1,San Luis,AR-D,annual,2018,naphtha combustion consumption by to the public,34.20235525360499,TJ,N2O,0.6,kg/TJ,20.521413152162996,kg -ac790731-1516-30f8-a3ec-6f0fa255fd73,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,naphtha combustion consumption by to the public,157.19237141916,TJ,CO2,73300.0,kg/TJ,11522200.825024428,kg -3262dcb2-912b-3feb-87ca-d90911a28e04,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,naphtha combustion consumption by to the public,157.19237141916,TJ,CH4,3.0,kg/TJ,471.57711425748,kg -c3ff0f93-6ad3-3cee-aaaa-4d723cb3418f,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,naphtha combustion consumption by to the public,157.19237141916,TJ,N2O,0.6,kg/TJ,94.315422851496,kg -8208266d-e58a-32d2-a0d7-000dd77397aa,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2018,naphtha combustion consumption by to the public,30.381655240089998,TJ,CO2,73300.0,kg/TJ,2226975.3290985967,kg -64b19ace-98f1-306a-84d3-c98d9d123055,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2018,naphtha combustion consumption by to the public,30.381655240089998,TJ,CH4,3.0,kg/TJ,91.14496572027,kg -ef1d201c-e1de-30d7-84d6-74d9e45a526e,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2018,naphtha combustion consumption by to the public,30.381655240089998,TJ,N2O,0.6,kg/TJ,18.228993144053998,kg -c8951b76-a45c-3eda-8bde-87e7f0936393,SESCO,II.1.1,Tucuman,AR-T,annual,2018,naphtha combustion consumption by to the public,32.32077045736,TJ,CO2,73300.0,kg/TJ,2369112.4745244877,kg -4f5241e7-fadd-39fb-9239-560b12381030,SESCO,II.1.1,Tucuman,AR-T,annual,2018,naphtha combustion consumption by to the public,32.32077045736,TJ,CH4,3.0,kg/TJ,96.96231137208,kg -50ac3610-3807-372c-87fd-d8a1334743a0,SESCO,II.1.1,Tucuman,AR-T,annual,2018,naphtha combustion consumption by to the public,32.32077045736,TJ,N2O,0.6,kg/TJ,19.392462274415998,kg -f48c668c-30b0-3c23-9446-f477602863ca,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,naphtha combustion consumption by to the public,65.061105868605,TJ,CO2,73300.0,kg/TJ,4768979.060168746,kg -dccb236e-271c-348a-b7dc-05a8dd2b44ec,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,naphtha combustion consumption by to the public,65.061105868605,TJ,CH4,3.0,kg/TJ,195.18331760581498,kg -54957d5a-e05c-3a29-974d-be2095079fb4,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,naphtha combustion consumption by to the public,65.061105868605,TJ,N2O,0.6,kg/TJ,39.036663521163,kg -c494a143-5d5f-311b-95c5-7627db4bdac3,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,naphtha combustion consumption by to the public,10.838487354309999,TJ,CO2,73300.0,kg/TJ,794461.1230709229,kg -4598d9ed-ad9a-379e-ab7d-a987da14495b,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,naphtha combustion consumption by to the public,10.838487354309999,TJ,CH4,3.0,kg/TJ,32.51546206293,kg -4bf224d5-9bfe-3ff8-bc2b-d2d9546e82a1,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,naphtha combustion consumption by to the public,10.838487354309999,TJ,N2O,0.6,kg/TJ,6.503092412585999,kg -9bf815bc-76f9-3d06-8e09-707077b8affa,SESCO,II.1.1,Catamarca,AR-K,annual,2018,naphtha combustion consumption by to the public,4.391875085675,TJ,CO2,73300.0,kg/TJ,321924.4437799775,kg -78991649-0750-335a-a028-1a2fe497748b,SESCO,II.1.1,Catamarca,AR-K,annual,2018,naphtha combustion consumption by to the public,4.391875085675,TJ,CH4,3.0,kg/TJ,13.175625257025,kg -cd936fbe-568b-38fe-8820-1c71741902c1,SESCO,II.1.1,Catamarca,AR-K,annual,2018,naphtha combustion consumption by to the public,4.391875085675,TJ,N2O,0.6,kg/TJ,2.635125051405,kg -257f6a36-24a1-32bb-b9b0-aa9ffd55ba83,SESCO,II.1.1,Chaco,AR-H,annual,2018,naphtha combustion consumption by to the public,4.39882508989,TJ,CO2,73300.0,kg/TJ,322433.879088937,kg -9b8da540-49b6-3688-b8a8-628ce3f3cd94,SESCO,II.1.1,Chaco,AR-H,annual,2018,naphtha combustion consumption by to the public,4.39882508989,TJ,CH4,3.0,kg/TJ,13.19647526967,kg -2c6d7bf7-b458-31c0-878a-789a397822bb,SESCO,II.1.1,Chaco,AR-H,annual,2018,naphtha combustion consumption by to the public,4.39882508989,TJ,N2O,0.6,kg/TJ,2.6392950539339997,kg -08c8bb35-eacc-3f1d-9401-dacb3966328d,SESCO,II.1.1,Corrientes,AR-W,annual,2018,naphtha combustion consumption by to the public,12.33066149315,TJ,CO2,73300.0,kg/TJ,903837.487447895,kg -39003ab3-305d-3c70-8a5d-05639d4dd327,SESCO,II.1.1,Corrientes,AR-W,annual,2018,naphtha combustion consumption by to the public,12.33066149315,TJ,CH4,3.0,kg/TJ,36.99198447945,kg -be99cb34-8112-381a-8076-25921d867c37,SESCO,II.1.1,Corrientes,AR-W,annual,2018,naphtha combustion consumption by to the public,12.33066149315,TJ,N2O,0.6,kg/TJ,7.3983968958899995,kg -ed5af47d-60f7-32d2-8394-480dd6a3b4b3,SESCO,II.1.1,Córdoba,AR-X,annual,2018,naphtha combustion consumption by to the public,36.19734801683,TJ,CO2,73300.0,kg/TJ,2653265.609633639,kg -96472b03-045c-3e1e-970a-40e9c252da78,SESCO,II.1.1,Córdoba,AR-X,annual,2018,naphtha combustion consumption by to the public,36.19734801683,TJ,CH4,3.0,kg/TJ,108.59204405048999,kg -39552e2f-a4a2-325b-8578-6a8ecf4d16f4,SESCO,II.1.1,Córdoba,AR-X,annual,2018,naphtha combustion consumption by to the public,36.19734801683,TJ,N2O,0.6,kg/TJ,21.718408810097998,kg -43264732-73b4-3815-b70c-4f951ef02b42,SESCO,II.1.1,Entre Rios,AR-E,annual,2018,naphtha combustion consumption by to the public,10.254250909595,TJ,CO2,73300.0,kg/TJ,751636.5916733134,kg -0eb893f1-63c7-3bc7-a5c4-e0a778dedfe3,SESCO,II.1.1,Entre Rios,AR-E,annual,2018,naphtha combustion consumption by to the public,10.254250909595,TJ,CH4,3.0,kg/TJ,30.762752728784996,kg -c54ae6ff-a726-343f-b0e0-f06b7f71bea8,SESCO,II.1.1,Entre Rios,AR-E,annual,2018,naphtha combustion consumption by to the public,10.254250909595,TJ,N2O,0.6,kg/TJ,6.152550545756999,kg -7152b957-1267-3913-a552-d2d59d1acd47,SESCO,II.1.1,Jujuy,AR-Y,annual,2018,naphtha combustion consumption by to the public,0.150768432815,TJ,CO2,73300.0,kg/TJ,11051.3261253395,kg -53b69799-e58a-3046-867a-0ad93cdfd766,SESCO,II.1.1,Jujuy,AR-Y,annual,2018,naphtha combustion consumption by to the public,0.150768432815,TJ,CH4,3.0,kg/TJ,0.452305298445,kg -299209a0-b2be-304c-b6c4-c1be38845001,SESCO,II.1.1,Jujuy,AR-Y,annual,2018,naphtha combustion consumption by to the public,0.150768432815,TJ,N2O,0.6,kg/TJ,0.09046105968899999,kg -85ee9ee2-0a81-3b5d-8f3e-21c869dbafd1,SESCO,II.1.1,La Rioja,AR-F,annual,2018,naphtha combustion consumption by to the public,2.4121241482799998,TJ,CO2,73300.0,kg/TJ,176808.700068924,kg -dfe4e0eb-7350-381c-a8a5-d4fdb1d44a2a,SESCO,II.1.1,La Rioja,AR-F,annual,2018,naphtha combustion consumption by to the public,2.4121241482799998,TJ,CH4,3.0,kg/TJ,7.236372444839999,kg -43543283-32f5-3b46-b9bd-8aac4094758a,SESCO,II.1.1,La Rioja,AR-F,annual,2018,naphtha combustion consumption by to the public,2.4121241482799998,TJ,N2O,0.6,kg/TJ,1.4472744889679998,kg -a9542a0d-56d8-3d6d-adad-10cf190d2ca7,SESCO,II.1.1,Mendoza,AR-M,annual,2018,naphtha combustion consumption by to the public,7.610181425385,TJ,CO2,73300.0,kg/TJ,557826.2984807205,kg -7a908da3-a12e-3e84-8dbb-411c5bed27f7,SESCO,II.1.1,Mendoza,AR-M,annual,2018,naphtha combustion consumption by to the public,7.610181425385,TJ,CH4,3.0,kg/TJ,22.830544276155,kg -cb75496d-5a3f-3874-b629-1ced74fad2a4,SESCO,II.1.1,Mendoza,AR-M,annual,2018,naphtha combustion consumption by to the public,7.610181425385,TJ,N2O,0.6,kg/TJ,4.566108855231,kg -b3d8383f-7085-34aa-a222-c6589e88c171,SESCO,II.1.1,Misiones,AR-N,annual,2018,naphtha combustion consumption by to the public,6.5559581883949996,TJ,CO2,73300.0,kg/TJ,480551.73520935344,kg -4c695c47-ac6d-3871-a079-33c0ff8f828c,SESCO,II.1.1,Misiones,AR-N,annual,2018,naphtha combustion consumption by to the public,6.5559581883949996,TJ,CH4,3.0,kg/TJ,19.667874565185,kg -2540136d-9736-3325-b01b-01e9d9b2dbcd,SESCO,II.1.1,Misiones,AR-N,annual,2018,naphtha combustion consumption by to the public,6.5559581883949996,TJ,N2O,0.6,kg/TJ,3.9335749130369995,kg -f2a92b33-65cb-3507-8e4a-c898af9933dd,SESCO,II.1.1,San Juan,AR-J,annual,2018,naphtha combustion consumption by to the public,10.529372269954997,TJ,CO2,73300.0,kg/TJ,771802.9873877013,kg -bced187c-ebf3-3051-b813-2e9b2a59713b,SESCO,II.1.1,San Juan,AR-J,annual,2018,naphtha combustion consumption by to the public,10.529372269954997,TJ,CH4,3.0,kg/TJ,31.588116809864992,kg -17c2977c-d66d-39d8-bbad-9f60e2edfe9b,SESCO,II.1.1,San Juan,AR-J,annual,2018,naphtha combustion consumption by to the public,10.529372269954997,TJ,N2O,0.6,kg/TJ,6.3176233619729985,kg -83b10341-c434-3571-a2e4-69752c7da05d,SESCO,II.1.1,San Luis,AR-D,annual,2018,naphtha combustion consumption by to the public,9.567167210754999,TJ,CO2,73300.0,kg/TJ,701273.3565483415,kg -7f7266d6-9ce2-3c49-85c2-68e164c17414,SESCO,II.1.1,San Luis,AR-D,annual,2018,naphtha combustion consumption by to the public,9.567167210754999,TJ,CH4,3.0,kg/TJ,28.701501632264996,kg -626b094e-1b03-315d-9a51-9afacb81a9d7,SESCO,II.1.1,San Luis,AR-D,annual,2018,naphtha combustion consumption by to the public,9.567167210754999,TJ,N2O,0.6,kg/TJ,5.740300326452999,kg -34a007bf-4d04-3413-a595-816fa8a66b7a,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,naphtha combustion consumption by to the public,37.886290528625,TJ,CO2,73300.0,kg/TJ,2777065.095748212,kg -b9feb252-ae26-3cd9-a3ad-867c777cf519,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,naphtha combustion consumption by to the public,37.886290528625,TJ,CH4,3.0,kg/TJ,113.65887158587499,kg -8f281362-8fac-3eb5-b335-6d2e8a16a261,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,naphtha combustion consumption by to the public,37.886290528625,TJ,N2O,0.6,kg/TJ,22.731774317175,kg -14bba72f-2fe4-35c7-a342-4227ca7a120e,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2018,naphtha combustion consumption by to the public,4.600991228294999,TJ,CO2,73300.0,kg/TJ,337252.65703402343,kg -b4873243-e8c8-3da8-9732-f8d82c546ced,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2018,naphtha combustion consumption by to the public,4.600991228294999,TJ,CH4,3.0,kg/TJ,13.802973684884998,kg -95cdcd09-0322-38d0-acf3-a5748924ed27,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2018,naphtha combustion consumption by to the public,4.600991228294999,TJ,N2O,0.6,kg/TJ,2.7605947369769996,kg -56bd3802-fef7-3536-aa55-9ec4b82c4ae3,SESCO,II.1.1,Tucuman,AR-T,annual,2018,naphtha combustion consumption by to the public,5.44314937397,TJ,CO2,73300.0,kg/TJ,398982.849112001,kg -905fe578-c003-316c-a5db-e10008da2de6,SESCO,II.1.1,Tucuman,AR-T,annual,2018,naphtha combustion consumption by to the public,5.44314937397,TJ,CH4,3.0,kg/TJ,16.329448121909998,kg -1c16b19b-c636-3dff-9707-f9e3072b0c76,SESCO,II.1.1,Tucuman,AR-T,annual,2018,naphtha combustion consumption by to the public,5.44314937397,TJ,N2O,0.6,kg/TJ,3.265889624382,kg -b9c5e9f5-9fa8-3a97-b51d-356dc1245b6c,SESCO,II.5.1,Buenos Aires,AR-B,annual,2018,naphtha combustion consumption by agriculture machines,12.503298499999998,TJ,CO2,73300.0,kg/TJ,916491.7800499998,kg -a380a04a-2b47-3b66-a9fb-3d3a981dbf94,SESCO,II.5.1,Buenos Aires,AR-B,annual,2018,naphtha combustion consumption by agriculture machines,12.503298499999998,TJ,CH4,3.0,kg/TJ,37.50989549999999,kg -27939ce7-c2cd-3aa5-b49e-6ff2cd30cecc,SESCO,II.5.1,Buenos Aires,AR-B,annual,2018,naphtha combustion consumption by agriculture machines,12.503298499999998,TJ,N2O,0.6,kg/TJ,7.501979099999998,kg -7402de68-7bea-3d84-924b-86edd0397142,SESCO,II.5.1,Córdoba,AR-X,annual,2018,naphtha combustion consumption by agriculture machines,5.0623111,TJ,CO2,73300.0,kg/TJ,371067.40362999996,kg -513898a4-6c4b-3870-a59f-9b36e3a3a953,SESCO,II.5.1,Córdoba,AR-X,annual,2018,naphtha combustion consumption by agriculture machines,5.0623111,TJ,CH4,3.0,kg/TJ,15.1869333,kg -21c066b2-8a55-34b5-ad11-5b516988c4af,SESCO,II.5.1,Córdoba,AR-X,annual,2018,naphtha combustion consumption by agriculture machines,5.0623111,TJ,N2O,0.6,kg/TJ,3.0373866599999997,kg -950ca5f5-9634-3a60-8b91-6bd9b1f5d0a4,SESCO,II.5.1,Santa Fe,AR-S,annual,2018,naphtha combustion consumption by agriculture machines,27.903702749999997,TJ,CO2,73300.0,kg/TJ,2045341.4115749998,kg -2ccbc734-c90f-3719-9b83-e5e08a519a3b,SESCO,II.5.1,Santa Fe,AR-S,annual,2018,naphtha combustion consumption by agriculture machines,27.903702749999997,TJ,CH4,3.0,kg/TJ,83.71110825,kg -64ec9548-3076-375e-b547-a0704d401834,SESCO,II.5.1,Santa Fe,AR-S,annual,2018,naphtha combustion consumption by agriculture machines,27.903702749999997,TJ,N2O,0.6,kg/TJ,16.742221649999998,kg -1e002312-d8a9-34a3-a0e8-305bde8063aa,SESCO,II.5.1,Tucuman,AR-T,annual,2018,naphtha combustion consumption by agriculture machines,11.984869049999999,TJ,CO2,73300.0,kg/TJ,878490.9013649999,kg -8120e4d6-4871-3949-8c57-c58a9a8cc816,SESCO,II.5.1,Tucuman,AR-T,annual,2018,naphtha combustion consumption by agriculture machines,11.984869049999999,TJ,CH4,3.0,kg/TJ,35.954607149999994,kg -03ee3703-5c0a-3afd-b01f-a1164fa0fd0e,SESCO,II.5.1,Tucuman,AR-T,annual,2018,naphtha combustion consumption by agriculture machines,11.984869049999999,TJ,N2O,0.6,kg/TJ,7.190921429999999,kg -a24ee9fb-b211-3f9a-ab66-d0425c36128b,SESCO,II.5.1,Buenos Aires,AR-B,annual,2018,naphtha combustion consumption by agriculture machines,2.3176845999999998,TJ,CO2,73300.0,kg/TJ,169886.28118,kg -c4848c19-5400-30ec-86b2-febec77321f0,SESCO,II.5.1,Buenos Aires,AR-B,annual,2018,naphtha combustion consumption by agriculture machines,2.3176845999999998,TJ,CH4,3.0,kg/TJ,6.953053799999999,kg -657881b5-1c00-331b-b9cd-a7e9f22631c6,SESCO,II.5.1,Buenos Aires,AR-B,annual,2018,naphtha combustion consumption by agriculture machines,2.3176845999999998,TJ,N2O,0.6,kg/TJ,1.3906107599999997,kg -f7b1edef-00e6-3f31-bd35-96c9caf01806,SESCO,II.5.1,Córdoba,AR-X,annual,2018,naphtha combustion consumption by agriculture machines,2.2261970499999997,TJ,CO2,73300.0,kg/TJ,163180.24376499996,kg -d5a27910-d40e-36ee-860a-735b2ddc43b8,SESCO,II.5.1,Córdoba,AR-X,annual,2018,naphtha combustion consumption by agriculture machines,2.2261970499999997,TJ,CH4,3.0,kg/TJ,6.678591149999999,kg -765288b4-0048-3741-a4ef-ba4f1d398f23,SESCO,II.5.1,Córdoba,AR-X,annual,2018,naphtha combustion consumption by agriculture machines,2.2261970499999997,TJ,N2O,0.6,kg/TJ,1.3357182299999997,kg -bfa91d54-4eb5-3a59-9242-768039648f6b,SESCO,II.5.1,Santa Fe,AR-S,annual,2018,naphtha combustion consumption by agriculture machines,8.904788199999999,TJ,CO2,73300.0,kg/TJ,652720.9750599999,kg -b9d9f497-c5be-3505-a826-3eeccd5d29b0,SESCO,II.5.1,Santa Fe,AR-S,annual,2018,naphtha combustion consumption by agriculture machines,8.904788199999999,TJ,CH4,3.0,kg/TJ,26.714364599999996,kg -b8acbf8b-6965-37d0-bd0c-df1b14997ecc,SESCO,II.5.1,Santa Fe,AR-S,annual,2018,naphtha combustion consumption by agriculture machines,8.904788199999999,TJ,N2O,0.6,kg/TJ,5.342872919999999,kg -0f32d79a-737b-319a-96d4-c3b6c260c0a4,SESCO,II.5.1,Tucuman,AR-T,annual,2018,naphtha combustion consumption by agriculture machines,2.3176845999999998,TJ,CO2,73300.0,kg/TJ,169886.28118,kg -46270489-a7a0-35cf-bb9e-54b05ce9a19a,SESCO,II.5.1,Tucuman,AR-T,annual,2018,naphtha combustion consumption by agriculture machines,2.3176845999999998,TJ,CH4,3.0,kg/TJ,6.953053799999999,kg -a71604f4-c05d-3190-974f-8f0fb3d2c9c7,SESCO,II.5.1,Tucuman,AR-T,annual,2018,naphtha combustion consumption by agriculture machines,2.3176845999999998,TJ,N2O,0.6,kg/TJ,1.3906107599999997,kg -d36288be-229d-3792-9e88-20b220332d3b,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,naphtha combustion consumption by to the public,8178.6210198,TJ,CO2,73300.0,kg/TJ,599492920.75134,kg -9cc881b7-d8f4-3b38-9e87-a2a9a2e8e8f7,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,naphtha combustion consumption by to the public,8178.6210198,TJ,CH4,3.0,kg/TJ,24535.8630594,kg -f9365fcc-17c8-311d-ad56-dd28db16618d,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,naphtha combustion consumption by to the public,8178.6210198,TJ,N2O,0.6,kg/TJ,4907.17261188,kg -9cd1c282-ebab-3355-a5cd-05b2c1aeda67,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,naphtha combustion consumption by to the public,2495.9633390999998,TJ,CO2,73300.0,kg/TJ,182954112.75603,kg -7658bbc9-f281-3c9c-ac85-845f7a85c8ef,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,naphtha combustion consumption by to the public,2495.9633390999998,TJ,CH4,3.0,kg/TJ,7487.890017299999,kg -da8b42a5-6690-3d07-be52-3e0d04e44fd1,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,naphtha combustion consumption by to the public,2495.9633390999998,TJ,N2O,0.6,kg/TJ,1497.5780034599998,kg -ba11e7f1-a3f5-3d09-bfd1-e4b0db142652,SESCO,II.1.1,Catamarca,AR-K,annual,2018,naphtha combustion consumption by to the public,333.47211974999993,TJ,CO2,73300.0,kg/TJ,24443506.377674997,kg -aacadb60-444f-3639-8873-771cdcdd91d4,SESCO,II.1.1,Catamarca,AR-K,annual,2018,naphtha combustion consumption by to the public,333.47211974999993,TJ,CH4,3.0,kg/TJ,1000.4163592499998,kg -62717870-341e-3d5c-a4b2-6cabc6e64299,SESCO,II.1.1,Catamarca,AR-K,annual,2018,naphtha combustion consumption by to the public,333.47211974999993,TJ,N2O,0.6,kg/TJ,200.08327184999996,kg -002b8fa2-45bd-39b4-814c-6667d944f9a5,SESCO,II.1.1,Chaco,AR-H,annual,2018,naphtha combustion consumption by to the public,293.09561435,TJ,CO2,73300.0,kg/TJ,21483908.531855002,kg -ff878706-176c-3d43-978d-589b1e4ac866,SESCO,II.1.1,Chaco,AR-H,annual,2018,naphtha combustion consumption by to the public,293.09561435,TJ,CH4,3.0,kg/TJ,879.28684305,kg -f66f3222-a6ba-3c3c-a42d-1a4be3461bfc,SESCO,II.1.1,Chaco,AR-H,annual,2018,naphtha combustion consumption by to the public,293.09561435,TJ,N2O,0.6,kg/TJ,175.85736861,kg -94dbe600-4648-3dd6-b29e-364b0f6ab01f,SESCO,II.1.1,Chubut,AR-U,annual,2018,naphtha combustion consumption by to the public,977.0565381499998,TJ,CO2,73300.0,kg/TJ,71618244.24639499,kg -ee16f246-3006-37d5-9531-1756dce3318d,SESCO,II.1.1,Chubut,AR-U,annual,2018,naphtha combustion consumption by to the public,977.0565381499998,TJ,CH4,3.0,kg/TJ,2931.1696144499992,kg -ca4400b2-6ca8-35ee-affc-e5b4978dcee5,SESCO,II.1.1,Chubut,AR-U,annual,2018,naphtha combustion consumption by to the public,977.0565381499998,TJ,N2O,0.6,kg/TJ,586.2339228899999,kg -6b0d9892-37c9-33c8-9fe3-a0afbfe1d8ed,SESCO,II.1.1,Corrientes,AR-W,annual,2018,naphtha combustion consumption by to the public,441.00048685,TJ,CO2,73300.0,kg/TJ,32325335.686105,kg -04f9d697-1e75-34e1-81af-ecd1566c87c3,SESCO,II.1.1,Corrientes,AR-W,annual,2018,naphtha combustion consumption by to the public,441.00048685,TJ,CH4,3.0,kg/TJ,1323.00146055,kg -766da68c-edfa-3f72-b739-38256be48e2f,SESCO,II.1.1,Corrientes,AR-W,annual,2018,naphtha combustion consumption by to the public,441.00048685,TJ,N2O,0.6,kg/TJ,264.60029211,kg -44a24eaa-e7e2-3e2d-ac96-87c403738d1b,SESCO,II.1.1,Córdoba,AR-X,annual,2018,naphtha combustion consumption by to the public,2286.7923039499997,TJ,CO2,73300.0,kg/TJ,167621875.879535,kg -4f7a36fe-d9de-3235-9b01-b89b71fd42b2,SESCO,II.1.1,Córdoba,AR-X,annual,2018,naphtha combustion consumption by to the public,2286.7923039499997,TJ,CH4,3.0,kg/TJ,6860.376911849999,kg -ddbf42ac-9f92-37eb-bd3c-6381b361cab6,SESCO,II.1.1,Córdoba,AR-X,annual,2018,naphtha combustion consumption by to the public,2286.7923039499997,TJ,N2O,0.6,kg/TJ,1372.0753823699997,kg -0c07a646-dcad-383e-8019-6b0b74219947,SESCO,II.1.1,Entre Rios,AR-E,annual,2018,naphtha combustion consumption by to the public,941.0409392999999,TJ,CO2,73300.0,kg/TJ,68978300.85068999,kg -0374c6d7-ebe7-3a7a-9a7a-def4590975d7,SESCO,II.1.1,Entre Rios,AR-E,annual,2018,naphtha combustion consumption by to the public,941.0409392999999,TJ,CH4,3.0,kg/TJ,2823.1228178999995,kg -4d33dff9-f93f-3462-81cd-fc0788fb37f6,SESCO,II.1.1,Entre Rios,AR-E,annual,2018,naphtha combustion consumption by to the public,941.0409392999999,TJ,N2O,0.6,kg/TJ,564.6245635799999,kg -978358c3-b588-3cbe-ab37-a46c80c09a9b,SESCO,II.1.1,Formosa,AR-P,annual,2018,naphtha combustion consumption by to the public,484.51806479999993,TJ,CO2,73300.0,kg/TJ,35515174.14984,kg -a2bbc8f1-7f28-3514-a993-faadbfd50832,SESCO,II.1.1,Formosa,AR-P,annual,2018,naphtha combustion consumption by to the public,484.51806479999993,TJ,CH4,3.0,kg/TJ,1453.5541943999997,kg -044af9e5-53b8-3480-b279-7f711da226a1,SESCO,II.1.1,Formosa,AR-P,annual,2018,naphtha combustion consumption by to the public,484.51806479999993,TJ,N2O,0.6,kg/TJ,290.7108388799999,kg -f902f56a-9462-368a-99e0-880986478a89,SESCO,II.1.1,Jujuy,AR-Y,annual,2018,naphtha combustion consumption by to the public,177.51634284999997,TJ,CO2,73300.0,kg/TJ,13011947.930904998,kg -2ae1c1f4-21bd-3b58-81ce-c3aae0a07690,SESCO,II.1.1,Jujuy,AR-Y,annual,2018,naphtha combustion consumption by to the public,177.51634284999997,TJ,CH4,3.0,kg/TJ,532.5490285499999,kg -30030a75-40ba-36da-93c1-b8814b23604c,SESCO,II.1.1,Jujuy,AR-Y,annual,2018,naphtha combustion consumption by to the public,177.51634284999997,TJ,N2O,0.6,kg/TJ,106.50980570999998,kg -fe3ff214-1020-32fb-8fb5-5abbc94c52cd,SESCO,II.1.1,La Pampa,AR-L,annual,2018,naphtha combustion consumption by to the public,148.0878476,TJ,CO2,73300.0,kg/TJ,10854839.22908,kg -7abbffc5-af62-3ac5-8380-99f89dbcdd28,SESCO,II.1.1,La Pampa,AR-L,annual,2018,naphtha combustion consumption by to the public,148.0878476,TJ,CH4,3.0,kg/TJ,444.2635428,kg -2c76a4ba-f6a5-32a5-a68f-cd59d9e6d10d,SESCO,II.1.1,La Pampa,AR-L,annual,2018,naphtha combustion consumption by to the public,148.0878476,TJ,N2O,0.6,kg/TJ,88.85270856,kg -784925ad-a497-3a16-a57b-f15508be2a2c,SESCO,II.1.1,La Rioja,AR-F,annual,2018,naphtha combustion consumption by to the public,105.57663269999999,TJ,CO2,73300.0,kg/TJ,7738767.176909999,kg -7c46d6be-01d3-38e8-abd4-29cf437aaf9d,SESCO,II.1.1,La Rioja,AR-F,annual,2018,naphtha combustion consumption by to the public,105.57663269999999,TJ,CH4,3.0,kg/TJ,316.72989809999996,kg -58ab7f3a-480c-37cb-b2e7-b39b8a1e7aa5,SESCO,II.1.1,La Rioja,AR-F,annual,2018,naphtha combustion consumption by to the public,105.57663269999999,TJ,N2O,0.6,kg/TJ,63.345979619999994,kg -eeb159ae-e7c4-3f4d-b610-2b966bd6f72d,SESCO,II.1.1,Mendoza,AR-M,annual,2018,naphtha combustion consumption by to the public,476.68063134999994,TJ,CO2,73300.0,kg/TJ,34940690.277954996,kg -9e330f40-d404-3352-a9c9-d70fcfc8eeb2,SESCO,II.1.1,Mendoza,AR-M,annual,2018,naphtha combustion consumption by to the public,476.68063134999994,TJ,CH4,3.0,kg/TJ,1430.0418940499999,kg -a52cecdb-cba9-351a-9f15-bc968127fa44,SESCO,II.1.1,Mendoza,AR-M,annual,2018,naphtha combustion consumption by to the public,476.68063134999994,TJ,N2O,0.6,kg/TJ,286.00837880999995,kg -f4c1ff59-7343-3297-af15-c5bb9e151fd8,SESCO,II.1.1,Misiones,AR-N,annual,2018,naphtha combustion consumption by to the public,654.440941,TJ,CO2,73300.0,kg/TJ,47970520.9753,kg -5e4674f8-b4d4-3854-9b27-f1d494dedf89,SESCO,II.1.1,Misiones,AR-N,annual,2018,naphtha combustion consumption by to the public,654.440941,TJ,CH4,3.0,kg/TJ,1963.322823,kg -db48f5b5-2cb5-35d2-9d95-dfb8113c50f4,SESCO,II.1.1,Misiones,AR-N,annual,2018,naphtha combustion consumption by to the public,654.440941,TJ,N2O,0.6,kg/TJ,392.66456459999995,kg -4ac25c41-a1ab-3464-99bb-e7c3e9337c4f,SESCO,II.1.1,Neuquén,AR-Q,annual,2018,naphtha combustion consumption by to the public,304.2875913,TJ,CO2,73300.0,kg/TJ,22304280.442289997,kg -0fbb596b-af80-3f27-b33e-971f0f8df00f,SESCO,II.1.1,Neuquén,AR-Q,annual,2018,naphtha combustion consumption by to the public,304.2875913,TJ,CH4,3.0,kg/TJ,912.8627738999999,kg -2fa04e65-e358-336c-bd9f-79a59e135e22,SESCO,II.1.1,Neuquén,AR-Q,annual,2018,naphtha combustion consumption by to the public,304.2875913,TJ,N2O,0.6,kg/TJ,182.57255478,kg -0a4292ae-c730-3af3-beb3-36bdb7364fa9,SESCO,II.1.1,Rio Negro,AR-R,annual,2018,naphtha combustion consumption by to the public,491.92855634999995,TJ,CO2,73300.0,kg/TJ,36058363.180455,kg -984e10bc-85a5-31b5-9704-319094bb4679,SESCO,II.1.1,Rio Negro,AR-R,annual,2018,naphtha combustion consumption by to the public,491.92855634999995,TJ,CH4,3.0,kg/TJ,1475.7856690499998,kg -91fa1096-6e95-33e0-8c68-52579bd3c98f,SESCO,II.1.1,Rio Negro,AR-R,annual,2018,naphtha combustion consumption by to the public,491.92855634999995,TJ,N2O,0.6,kg/TJ,295.15713380999995,kg -0c3b78b5-ddfb-3319-9ef2-98344e7f1a29,SESCO,II.1.1,Salta,AR-A,annual,2018,naphtha combustion consumption by to the public,119.6657154,TJ,CO2,73300.0,kg/TJ,8771496.938819999,kg -1f1fe5eb-1b24-307f-a15c-d3428e85360b,SESCO,II.1.1,Salta,AR-A,annual,2018,naphtha combustion consumption by to the public,119.6657154,TJ,CH4,3.0,kg/TJ,358.9971462,kg -f1425f1b-8fc1-3dc1-9e07-e4482a8677df,SESCO,II.1.1,Salta,AR-A,annual,2018,naphtha combustion consumption by to the public,119.6657154,TJ,N2O,0.6,kg/TJ,71.79942924,kg -2f606143-d322-3c3f-9e65-2fed755a277e,SESCO,II.1.1,San Juan,AR-J,annual,2018,naphtha combustion consumption by to the public,220.2410287,TJ,CO2,73300.0,kg/TJ,16143667.403709998,kg -47811e43-c354-338f-a517-101cbe8c5f00,SESCO,II.1.1,San Juan,AR-J,annual,2018,naphtha combustion consumption by to the public,220.2410287,TJ,CH4,3.0,kg/TJ,660.7230860999999,kg -581c64a1-010b-313c-890d-6f3326b8773d,SESCO,II.1.1,San Juan,AR-J,annual,2018,naphtha combustion consumption by to the public,220.2410287,TJ,N2O,0.6,kg/TJ,132.14461722,kg -a59f335c-1851-3684-8748-699bdafd911f,SESCO,II.1.1,San Luis,AR-D,annual,2018,naphtha combustion consumption by to the public,459.90791384999994,TJ,CO2,73300.0,kg/TJ,33711250.085204996,kg -60fa04bf-5de6-3642-8b18-c27210820983,SESCO,II.1.1,San Luis,AR-D,annual,2018,naphtha combustion consumption by to the public,459.90791384999994,TJ,CH4,3.0,kg/TJ,1379.7237415499999,kg -037b0765-0011-3a4c-9447-e0aeb4c2852c,SESCO,II.1.1,San Luis,AR-D,annual,2018,naphtha combustion consumption by to the public,459.90791384999994,TJ,N2O,0.6,kg/TJ,275.94474830999997,kg -1baa2b56-5930-34d9-bee8-0aa5f700fd59,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2018,naphtha combustion consumption by to the public,507.63391909999996,TJ,CO2,73300.0,kg/TJ,37209566.27003,kg -ccbb69c8-ee7e-36b3-960e-19c0073a659a,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2018,naphtha combustion consumption by to the public,507.63391909999996,TJ,CH4,3.0,kg/TJ,1522.9017572999999,kg -660d540b-943b-30e3-ab0c-fac90f3bf42b,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2018,naphtha combustion consumption by to the public,507.63391909999996,TJ,N2O,0.6,kg/TJ,304.58035146,kg -e847b995-e955-32f6-8937-14502774df0c,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,naphtha combustion consumption by to the public,2096.5896875,TJ,CO2,73300.0,kg/TJ,153680024.09375,kg -a50acb18-c5f6-3c2c-815e-b5c1b153aaa0,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,naphtha combustion consumption by to the public,2096.5896875,TJ,CH4,3.0,kg/TJ,6289.7690625,kg -b368e1d0-b443-3bba-a660-f42f599743e4,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,naphtha combustion consumption by to the public,2096.5896875,TJ,N2O,0.6,kg/TJ,1257.9538125,kg -8cf7f791-9793-3bc9-a48b-8935d64fb4f1,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2018,naphtha combustion consumption by to the public,264.4600112,TJ,CO2,73300.0,kg/TJ,19384918.82096,kg -2a62e246-c6fd-3b6e-a12e-252a94794e35,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2018,naphtha combustion consumption by to the public,264.4600112,TJ,CH4,3.0,kg/TJ,793.3800335999999,kg -cbefb207-7775-36ca-ba3c-5020094646c4,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2018,naphtha combustion consumption by to the public,264.4600112,TJ,N2O,0.6,kg/TJ,158.67600672,kg -479580a9-d1ad-3a26-8985-3880bc602270,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2018,naphtha combustion consumption by to the public,114.54241259999999,TJ,CO2,73300.0,kg/TJ,8395958.84358,kg -379c8188-9533-34b6-bfaa-39426e7e808b,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2018,naphtha combustion consumption by to the public,114.54241259999999,TJ,CH4,3.0,kg/TJ,343.6272378,kg -4ccac11d-8dcd-39bd-acbf-127b2ee1bdf4,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2018,naphtha combustion consumption by to the public,114.54241259999999,TJ,N2O,0.6,kg/TJ,68.72544755999999,kg -88c17d37-f2db-3863-a0a1-0028b825089f,SESCO,II.1.1,Tucuman,AR-T,annual,2018,naphtha combustion consumption by to the public,68.95111684999999,TJ,CO2,73300.0,kg/TJ,5054116.865104999,kg -150fb80b-cbf4-3310-b5c7-316483d1340d,SESCO,II.1.1,Tucuman,AR-T,annual,2018,naphtha combustion consumption by to the public,68.95111684999999,TJ,CH4,3.0,kg/TJ,206.85335054999996,kg -69eaa799-8b42-3826-947e-829828c4d1ba,SESCO,II.1.1,Tucuman,AR-T,annual,2018,naphtha combustion consumption by to the public,68.95111684999999,TJ,N2O,0.6,kg/TJ,41.37067010999999,kg -a99ed874-15bb-3b78-8b11-565734f2e91c,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,naphtha combustion consumption by to the public,1919.0733446499999,TJ,CO2,73300.0,kg/TJ,140668076.162845,kg -955b2bc5-7d56-3045-9fa7-3d958edf4744,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,naphtha combustion consumption by to the public,1919.0733446499999,TJ,CH4,3.0,kg/TJ,5757.22003395,kg -627948e3-9f1a-3664-a081-0bfea786ab3d,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,naphtha combustion consumption by to the public,1919.0733446499999,TJ,N2O,0.6,kg/TJ,1151.4440067899998,kg -a144b36a-794f-30fb-b9b8-5bf2d51ab9f0,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,naphtha combustion consumption by to the public,854.4632211499999,TJ,CO2,73300.0,kg/TJ,62632154.11029499,kg -deb826f7-1fec-39f7-9249-aaa0d0d6b6a6,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,naphtha combustion consumption by to the public,854.4632211499999,TJ,CH4,3.0,kg/TJ,2563.3896634499997,kg -56be4a60-cd53-3e2c-a1bd-a47f72937e56,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,naphtha combustion consumption by to the public,854.4632211499999,TJ,N2O,0.6,kg/TJ,512.6779326899999,kg -62501c13-794d-39aa-b957-3c581ab8f7da,SESCO,II.1.1,Catamarca,AR-K,annual,2018,naphtha combustion consumption by to the public,86.82168494999999,TJ,CO2,73300.0,kg/TJ,6364029.506835,kg -64b16bc8-cfdd-356d-98db-c60e519285fd,SESCO,II.1.1,Catamarca,AR-K,annual,2018,naphtha combustion consumption by to the public,86.82168494999999,TJ,CH4,3.0,kg/TJ,260.46505485,kg -824de2a6-4e88-3d21-b949-6bcc7f15bda8,SESCO,II.1.1,Catamarca,AR-K,annual,2018,naphtha combustion consumption by to the public,86.82168494999999,TJ,N2O,0.6,kg/TJ,52.093010969999995,kg -0a8cbc83-830a-3108-9487-3fa7d25caf5e,SESCO,II.1.1,Chaco,AR-H,annual,2018,naphtha combustion consumption by to the public,52.574845399999994,TJ,CO2,73300.0,kg/TJ,3853736.1678199996,kg -3ae2d4cc-4fad-377e-9939-4fc862dc07e4,SESCO,II.1.1,Chaco,AR-H,annual,2018,naphtha combustion consumption by to the public,52.574845399999994,TJ,CH4,3.0,kg/TJ,157.7245362,kg -e8fbb70a-21f5-3bb0-8e25-a57c22d8316b,SESCO,II.1.1,Chaco,AR-H,annual,2018,naphtha combustion consumption by to the public,52.574845399999994,TJ,N2O,0.6,kg/TJ,31.544907239999993,kg -e97eebe1-f45c-3313-91b6-905199d24d0f,SESCO,II.1.1,Chubut,AR-U,annual,2018,naphtha combustion consumption by to the public,170.3498181,TJ,CO2,73300.0,kg/TJ,12486641.66673,kg -a6047ba2-6fbd-3f73-854d-297da9dd0217,SESCO,II.1.1,Chubut,AR-U,annual,2018,naphtha combustion consumption by to the public,170.3498181,TJ,CH4,3.0,kg/TJ,511.0494543,kg -f5fdda7f-cd4e-3a2d-abeb-5281cad759fe,SESCO,II.1.1,Chubut,AR-U,annual,2018,naphtha combustion consumption by to the public,170.3498181,TJ,N2O,0.6,kg/TJ,102.20989085999999,kg -7069b0c6-f1d5-3a76-8a77-b9b6a7077e0a,SESCO,II.1.1,Corrientes,AR-W,annual,2018,naphtha combustion consumption by to the public,87.40110609999998,TJ,CO2,73300.0,kg/TJ,6406501.077129998,kg -dcd24eba-992d-3bf5-bd98-4695cb201717,SESCO,II.1.1,Corrientes,AR-W,annual,2018,naphtha combustion consumption by to the public,87.40110609999998,TJ,CH4,3.0,kg/TJ,262.2033182999999,kg -901cc8e9-8404-36c9-9fea-5249f90300d9,SESCO,II.1.1,Corrientes,AR-W,annual,2018,naphtha combustion consumption by to the public,87.40110609999998,TJ,N2O,0.6,kg/TJ,52.440663659999984,kg -274bf107-ed2b-3720-a09b-de62b53c645c,SESCO,II.1.1,Córdoba,AR-X,annual,2018,naphtha combustion consumption by to the public,488.14707094999994,TJ,CO2,73300.0,kg/TJ,35781180.300634995,kg -acd68b8e-054f-39d2-82ab-58ffaf67f9fc,SESCO,II.1.1,Córdoba,AR-X,annual,2018,naphtha combustion consumption by to the public,488.14707094999994,TJ,CH4,3.0,kg/TJ,1464.4412128499998,kg -24e8e18e-8c40-39ae-9fcc-5425becb57de,SESCO,II.1.1,Córdoba,AR-X,annual,2018,naphtha combustion consumption by to the public,488.14707094999994,TJ,N2O,0.6,kg/TJ,292.88824256999993,kg -15491ade-268c-3157-8a77-874a69468bae,SESCO,II.1.1,Entre Rios,AR-E,annual,2018,naphtha combustion consumption by to the public,205.99946674999998,TJ,CO2,73300.0,kg/TJ,15099760.912774999,kg -50b45292-9472-3392-9bc5-78eb13caac81,SESCO,II.1.1,Entre Rios,AR-E,annual,2018,naphtha combustion consumption by to the public,205.99946674999998,TJ,CH4,3.0,kg/TJ,617.9984002499999,kg -eaeb295c-bcea-34e5-9683-402c3d8c9a85,SESCO,II.1.1,Entre Rios,AR-E,annual,2018,naphtha combustion consumption by to the public,205.99946674999998,TJ,N2O,0.6,kg/TJ,123.59968004999999,kg -72b3efd3-fd43-3be6-a979-9a7f80621854,SESCO,II.1.1,Formosa,AR-P,annual,2018,naphtha combustion consumption by to the public,102.61853525,TJ,CO2,73300.0,kg/TJ,7521938.633824999,kg -215f384b-5e31-37d2-b61c-69356a2ab73f,SESCO,II.1.1,Formosa,AR-P,annual,2018,naphtha combustion consumption by to the public,102.61853525,TJ,CH4,3.0,kg/TJ,307.85560575,kg -b0490ae2-ea27-31a6-b505-8e1235375a6c,SESCO,II.1.1,Formosa,AR-P,annual,2018,naphtha combustion consumption by to the public,102.61853525,TJ,N2O,0.6,kg/TJ,61.571121149999996,kg -80dd7c5c-3107-3397-ae5e-90e5a21bb423,SESCO,II.1.1,Jujuy,AR-Y,annual,2018,naphtha combustion consumption by to the public,32.35609684999999,TJ,CO2,73300.0,kg/TJ,2371701.8991049994,kg -93fb0a6a-03e8-3f40-8d74-1fa793dc72af,SESCO,II.1.1,Jujuy,AR-Y,annual,2018,naphtha combustion consumption by to the public,32.35609684999999,TJ,CH4,3.0,kg/TJ,97.06829054999997,kg -aaeb326a-6ca1-3d8b-8da7-139d00c8a3cc,SESCO,II.1.1,Jujuy,AR-Y,annual,2018,naphtha combustion consumption by to the public,32.35609684999999,TJ,N2O,0.6,kg/TJ,19.413658109999997,kg -d4988068-2316-319e-8e19-110d8bd96b10,SESCO,II.1.1,La Pampa,AR-L,annual,2018,naphtha combustion consumption by to the public,48.3664181,TJ,CO2,73300.0,kg/TJ,3545258.44673,kg -1a9fad96-3c70-343c-9a5c-844ec29c6ca6,SESCO,II.1.1,La Pampa,AR-L,annual,2018,naphtha combustion consumption by to the public,48.3664181,TJ,CH4,3.0,kg/TJ,145.09925429999998,kg -b19b13a8-4f46-388a-a86c-b9c1beef1002,SESCO,II.1.1,La Pampa,AR-L,annual,2018,naphtha combustion consumption by to the public,48.3664181,TJ,N2O,0.6,kg/TJ,29.01985086,kg -c8f3753f-2295-31de-900c-8fbf3b761313,SESCO,II.1.1,La Rioja,AR-F,annual,2018,naphtha combustion consumption by to the public,16.4067673,TJ,CO2,73300.0,kg/TJ,1202616.0430899998,kg -f5eaac46-0a55-33cc-91be-bf458c9bba9a,SESCO,II.1.1,La Rioja,AR-F,annual,2018,naphtha combustion consumption by to the public,16.4067673,TJ,CH4,3.0,kg/TJ,49.220301899999995,kg -98b21de4-b1dc-393b-bb7c-820802f82441,SESCO,II.1.1,La Rioja,AR-F,annual,2018,naphtha combustion consumption by to the public,16.4067673,TJ,N2O,0.6,kg/TJ,9.844060379999998,kg -b5226131-eb31-34fa-a229-7b72737878d8,SESCO,II.1.1,Mendoza,AR-M,annual,2018,naphtha combustion consumption by to the public,122.68480454999998,TJ,CO2,73300.0,kg/TJ,8992796.173515,kg -68a0cbd0-226e-3d54-8760-314cf6c063ed,SESCO,II.1.1,Mendoza,AR-M,annual,2018,naphtha combustion consumption by to the public,122.68480454999998,TJ,CH4,3.0,kg/TJ,368.05441364999996,kg -5dc7ced3-add6-30de-9cab-96c9abf040b5,SESCO,II.1.1,Mendoza,AR-M,annual,2018,naphtha combustion consumption by to the public,122.68480454999998,TJ,N2O,0.6,kg/TJ,73.61088272999999,kg -97450773-abd7-3e58-b77d-9ceb6d388ac4,SESCO,II.1.1,Misiones,AR-N,annual,2018,naphtha combustion consumption by to the public,77.97788845,TJ,CO2,73300.0,kg/TJ,5715779.223385,kg -6d6db4e8-4cd9-3cde-8d28-22cbbc582bc6,SESCO,II.1.1,Misiones,AR-N,annual,2018,naphtha combustion consumption by to the public,77.97788845,TJ,CH4,3.0,kg/TJ,233.93366534999998,kg -2783f4c8-2f6d-3b9c-b6e0-aae7eed0a991,SESCO,II.1.1,Misiones,AR-N,annual,2018,naphtha combustion consumption by to the public,77.97788845,TJ,N2O,0.6,kg/TJ,46.78673307,kg -d8fb52ad-d67e-3759-9773-ff51a2a0cc2d,SESCO,II.1.1,Neuquén,AR-Q,annual,2018,naphtha combustion consumption by to the public,134.4866985,TJ,CO2,73300.0,kg/TJ,9857875.000049999,kg -cb00ea53-f450-321a-8652-f07b033f55ea,SESCO,II.1.1,Neuquén,AR-Q,annual,2018,naphtha combustion consumption by to the public,134.4866985,TJ,CH4,3.0,kg/TJ,403.46009549999997,kg -094d4e40-fbd4-337d-b3ef-dc581252b1b3,SESCO,II.1.1,Neuquén,AR-Q,annual,2018,naphtha combustion consumption by to the public,134.4866985,TJ,N2O,0.6,kg/TJ,80.6920191,kg -4ac9bbe0-a2c9-3205-abfd-ab423f407fec,SESCO,II.1.1,Rio Negro,AR-R,annual,2018,naphtha combustion consumption by to the public,152.38776245,TJ,CO2,73300.0,kg/TJ,11170022.987585,kg -2d356a65-7211-3f89-9b42-40868afdf19e,SESCO,II.1.1,Rio Negro,AR-R,annual,2018,naphtha combustion consumption by to the public,152.38776245,TJ,CH4,3.0,kg/TJ,457.16328735,kg -f7e0a629-5cf7-3d39-8159-e9caa2962091,SESCO,II.1.1,Rio Negro,AR-R,annual,2018,naphtha combustion consumption by to the public,152.38776245,TJ,N2O,0.6,kg/TJ,91.43265747,kg -c0dd72dc-58fb-37c9-8948-85c761f627e1,SESCO,II.1.1,Salta,AR-A,annual,2018,naphtha combustion consumption by to the public,13.784124199999997,TJ,CO2,73300.0,kg/TJ,1010376.3038599998,kg -97041062-1129-3e79-997e-149a93a2994b,SESCO,II.1.1,Salta,AR-A,annual,2018,naphtha combustion consumption by to the public,13.784124199999997,TJ,CH4,3.0,kg/TJ,41.352372599999995,kg -2d164395-3ec2-3a3d-83ae-c522cc50b7a1,SESCO,II.1.1,Salta,AR-A,annual,2018,naphtha combustion consumption by to the public,13.784124199999997,TJ,N2O,0.6,kg/TJ,8.270474519999999,kg -13250b75-6026-3653-a316-07f0dd22eef7,SESCO,II.1.1,San Juan,AR-J,annual,2018,naphtha combustion consumption by to the public,57.057735349999994,TJ,CO2,73300.0,kg/TJ,4182332.0011549997,kg -26e15f6c-e18a-3b28-b547-2449b513b374,SESCO,II.1.1,San Juan,AR-J,annual,2018,naphtha combustion consumption by to the public,57.057735349999994,TJ,CH4,3.0,kg/TJ,171.17320604999998,kg -680bc0e1-2908-35e1-b818-65f72317d8ab,SESCO,II.1.1,San Juan,AR-J,annual,2018,naphtha combustion consumption by to the public,57.057735349999994,TJ,N2O,0.6,kg/TJ,34.23464120999999,kg -b04a5f1f-3f48-37bf-b13c-c167a21de02e,SESCO,II.1.1,San Luis,AR-D,annual,2018,naphtha combustion consumption by to the public,81.118961,TJ,CO2,73300.0,kg/TJ,5946019.8412999995,kg -5e745a1e-61e3-33b3-a3b6-43f770374daa,SESCO,II.1.1,San Luis,AR-D,annual,2018,naphtha combustion consumption by to the public,81.118961,TJ,CH4,3.0,kg/TJ,243.35688299999998,kg -ec3e7fdf-a84d-3035-a8c4-74115be1a823,SESCO,II.1.1,San Luis,AR-D,annual,2018,naphtha combustion consumption by to the public,81.118961,TJ,N2O,0.6,kg/TJ,48.671376599999995,kg -9f0e46bd-d8c4-3b20-9758-de13a6dd2e21,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2018,naphtha combustion consumption by to the public,72.73260225,TJ,CO2,73300.0,kg/TJ,5331299.744925,kg -56ab3ee3-0952-324c-b1d4-2eb7b2731eec,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2018,naphtha combustion consumption by to the public,72.73260225,TJ,CH4,3.0,kg/TJ,218.19780674999998,kg -20e314bb-8a8e-3213-85d4-7965861210ba,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2018,naphtha combustion consumption by to the public,72.73260225,TJ,N2O,0.6,kg/TJ,43.63956135,kg -1fb87641-5351-3130-8aee-a9fcca4624e2,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,naphtha combustion consumption by to the public,514.1600309999999,TJ,CO2,73300.0,kg/TJ,37687930.27229999,kg -47edf13a-3bef-3dc7-8ae3-ee41414d7816,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,naphtha combustion consumption by to the public,514.1600309999999,TJ,CH4,3.0,kg/TJ,1542.4800929999997,kg -6176fd64-058f-3a8d-88f1-2bd17144a57e,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,naphtha combustion consumption by to the public,514.1600309999999,TJ,N2O,0.6,kg/TJ,308.4960185999999,kg -20a40f22-7e40-3fd6-8d8e-204f1470cfc2,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2018,naphtha combustion consumption by to the public,75.20276609999999,TJ,CO2,73300.0,kg/TJ,5512362.7551299995,kg -fc70c127-faa2-3358-a45d-12b9ed2a424e,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2018,naphtha combustion consumption by to the public,75.20276609999999,TJ,CH4,3.0,kg/TJ,225.60829829999997,kg -b962c6fc-5454-3815-8cba-de5b3dd818e2,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2018,naphtha combustion consumption by to the public,75.20276609999999,TJ,N2O,0.6,kg/TJ,45.12165965999999,kg -d859ee12-f912-37bf-983e-fccb31b8aa91,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2018,naphtha combustion consumption by to the public,27.568248399999995,TJ,CO2,73300.0,kg/TJ,2020752.6077199995,kg -efa599dd-e3f7-3d18-88e9-bc7ee5230868,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2018,naphtha combustion consumption by to the public,27.568248399999995,TJ,CH4,3.0,kg/TJ,82.70474519999999,kg -0b6c9a51-d491-37f1-9acf-0f5ef4b850de,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2018,naphtha combustion consumption by to the public,27.568248399999995,TJ,N2O,0.6,kg/TJ,16.540949039999997,kg -634b8f6e-7d09-3ad3-a958-3bfbb6ff08ee,SESCO,II.1.1,Tucuman,AR-T,annual,2018,naphtha combustion consumption by to the public,11.832389799999998,TJ,CO2,73300.0,kg/TJ,867314.1723399998,kg -d72c1c33-24a1-3cd9-9705-22610af47c91,SESCO,II.1.1,Tucuman,AR-T,annual,2018,naphtha combustion consumption by to the public,11.832389799999998,TJ,CH4,3.0,kg/TJ,35.49716939999999,kg -c430b9a4-9815-36d0-bb13-d72ed45f63e7,SESCO,II.1.1,Tucuman,AR-T,annual,2018,naphtha combustion consumption by to the public,11.832389799999998,TJ,N2O,0.6,kg/TJ,7.0994338799999985,kg -1b5c3756-472a-3a45-81dd-98c22886b2ee,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,naphtha combustion consumption by freight transport,8.2338795,TJ,CO2,73300.0,kg/TJ,603543.3673500001,kg -5a871921-7f19-37ba-8344-b0d52fcbfc5b,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,naphtha combustion consumption by freight transport,8.2338795,TJ,CH4,3.0,kg/TJ,24.7016385,kg -3c5d14ba-51e4-3326-8323-8c75e080b540,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,naphtha combustion consumption by freight transport,8.2338795,TJ,N2O,0.6,kg/TJ,4.9403277,kg -62b1aed0-96a1-376a-a1ec-983b4e1d5252,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,naphtha combustion consumption by freight transport,3.2935518,TJ,CO2,73300.0,kg/TJ,241417.34694,kg -b2a3b375-eefa-31be-9116-5452fbd6c67b,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,naphtha combustion consumption by freight transport,3.2935518,TJ,CH4,3.0,kg/TJ,9.8806554,kg -2f8cc5fb-5d35-37cb-bb66-d394c7a205d7,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,naphtha combustion consumption by freight transport,3.2935518,TJ,N2O,0.6,kg/TJ,1.9761310799999998,kg -ed8e99e6-eeab-3113-b07f-b2dc9c04fc6e,SESCO,II.1.1,Catamarca,AR-K,annual,2018,naphtha combustion consumption by freight transport,0.030495849999999998,TJ,CO2,73300.0,kg/TJ,2235.345805,kg -00c84bdf-4d62-35ef-a404-60da452e682b,SESCO,II.1.1,Catamarca,AR-K,annual,2018,naphtha combustion consumption by freight transport,0.030495849999999998,TJ,CH4,3.0,kg/TJ,0.09148755,kg -223ac398-8dab-3788-815c-c78fa0952fcd,SESCO,II.1.1,Catamarca,AR-K,annual,2018,naphtha combustion consumption by freight transport,0.030495849999999998,TJ,N2O,0.6,kg/TJ,0.01829751,kg -d7a73771-112f-3151-ad98-91528219f9f0,SESCO,II.1.1,Chubut,AR-U,annual,2018,naphtha combustion consumption by freight transport,0.030495849999999998,TJ,CO2,73300.0,kg/TJ,2235.345805,kg -c2c5abc6-4ead-3a35-8ac2-69de607b95a3,SESCO,II.1.1,Chubut,AR-U,annual,2018,naphtha combustion consumption by freight transport,0.030495849999999998,TJ,CH4,3.0,kg/TJ,0.09148755,kg -dcf92fc3-bd12-3619-9641-6f23a29096f3,SESCO,II.1.1,Chubut,AR-U,annual,2018,naphtha combustion consumption by freight transport,0.030495849999999998,TJ,N2O,0.6,kg/TJ,0.01829751,kg -753435d8-dd48-3aa8-b24b-5f9481cc3f53,SESCO,II.1.1,Córdoba,AR-X,annual,2018,naphtha combustion consumption by freight transport,1.8907426999999999,TJ,CO2,73300.0,kg/TJ,138591.43991,kg -6a96d9f4-0255-377d-b3cc-61972be00828,SESCO,II.1.1,Córdoba,AR-X,annual,2018,naphtha combustion consumption by freight transport,1.8907426999999999,TJ,CH4,3.0,kg/TJ,5.6722281,kg -5ed98810-0317-34d7-8d07-d60f89b13587,SESCO,II.1.1,Córdoba,AR-X,annual,2018,naphtha combustion consumption by freight transport,1.8907426999999999,TJ,N2O,0.6,kg/TJ,1.13444562,kg -0ea462ee-cbd9-3dbc-9490-eaf45957fdb4,SESCO,II.1.1,Entre Rios,AR-E,annual,2018,naphtha combustion consumption by freight transport,0.030495849999999998,TJ,CO2,73300.0,kg/TJ,2235.345805,kg -1b0ec1af-bbda-3cf1-89cc-f93c6bad6a44,SESCO,II.1.1,Entre Rios,AR-E,annual,2018,naphtha combustion consumption by freight transport,0.030495849999999998,TJ,CH4,3.0,kg/TJ,0.09148755,kg -6c240424-8751-3d86-94ea-40abee743aa2,SESCO,II.1.1,Entre Rios,AR-E,annual,2018,naphtha combustion consumption by freight transport,0.030495849999999998,TJ,N2O,0.6,kg/TJ,0.01829751,kg -fd10fb8b-1846-3bd0-ada7-2973437a6018,SESCO,II.1.1,La Rioja,AR-F,annual,2018,naphtha combustion consumption by freight transport,0.030495849999999998,TJ,CO2,73300.0,kg/TJ,2235.345805,kg -eb6cf159-ad07-307c-8188-ff2021f2a77e,SESCO,II.1.1,La Rioja,AR-F,annual,2018,naphtha combustion consumption by freight transport,0.030495849999999998,TJ,CH4,3.0,kg/TJ,0.09148755,kg -4011c74a-28de-396a-b483-94d11ea0d200,SESCO,II.1.1,La Rioja,AR-F,annual,2018,naphtha combustion consumption by freight transport,0.030495849999999998,TJ,N2O,0.6,kg/TJ,0.01829751,kg -71652672-2a57-3e58-9d64-b184393a7987,SESCO,II.1.1,Mendoza,AR-M,annual,2018,naphtha combustion consumption by freight transport,0.09148754999999999,TJ,CO2,73300.0,kg/TJ,6706.037414999999,kg -b77b38e5-a897-39cd-b9b6-069354d78de9,SESCO,II.1.1,Mendoza,AR-M,annual,2018,naphtha combustion consumption by freight transport,0.09148754999999999,TJ,CH4,3.0,kg/TJ,0.27446265,kg -52a92db3-399e-39fb-b3af-959c2af43d41,SESCO,II.1.1,Mendoza,AR-M,annual,2018,naphtha combustion consumption by freight transport,0.09148754999999999,TJ,N2O,0.6,kg/TJ,0.05489252999999999,kg -6575ce6d-c0c0-3e12-840c-0f1b43342008,SESCO,II.1.1,Misiones,AR-N,annual,2018,naphtha combustion consumption by freight transport,0.030495849999999998,TJ,CO2,73300.0,kg/TJ,2235.345805,kg -d9c34595-2463-36ce-8455-add9321c5aec,SESCO,II.1.1,Misiones,AR-N,annual,2018,naphtha combustion consumption by freight transport,0.030495849999999998,TJ,CH4,3.0,kg/TJ,0.09148755,kg -1332de71-24a9-3374-814f-4514531283ad,SESCO,II.1.1,Misiones,AR-N,annual,2018,naphtha combustion consumption by freight transport,0.030495849999999998,TJ,N2O,0.6,kg/TJ,0.01829751,kg -99223433-7852-3981-8bf1-d19686c3dd8e,SESCO,II.1.1,Salta,AR-A,annual,2018,naphtha combustion consumption by freight transport,0.12198339999999999,TJ,CO2,73300.0,kg/TJ,8941.38322,kg -cfbd9a18-19ce-3148-8572-3f327b3c275a,SESCO,II.1.1,Salta,AR-A,annual,2018,naphtha combustion consumption by freight transport,0.12198339999999999,TJ,CH4,3.0,kg/TJ,0.3659502,kg -f4b64718-5d11-351e-ba0e-2879c58b035c,SESCO,II.1.1,Salta,AR-A,annual,2018,naphtha combustion consumption by freight transport,0.12198339999999999,TJ,N2O,0.6,kg/TJ,0.07319004,kg -615197cc-915d-3872-afac-4784c756ffe4,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,naphtha combustion consumption by freight transport,1.1588422999999999,TJ,CO2,73300.0,kg/TJ,84943.14059,kg -3283a106-5f37-308a-a999-39eb5fbb3423,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,naphtha combustion consumption by freight transport,1.1588422999999999,TJ,CH4,3.0,kg/TJ,3.4765268999999996,kg -b091ad5e-a64c-3495-a75e-0404bd6287ee,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,naphtha combustion consumption by freight transport,1.1588422999999999,TJ,N2O,0.6,kg/TJ,0.6953053799999999,kg -ac1be5db-5b1e-353b-a461-a0d2f3eb9e65,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2018,naphtha combustion consumption by freight transport,0.030495849999999998,TJ,CO2,73300.0,kg/TJ,2235.345805,kg -166dc269-b1e6-3f43-a936-10685b9227dc,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2018,naphtha combustion consumption by freight transport,0.030495849999999998,TJ,CH4,3.0,kg/TJ,0.09148755,kg -2b005269-36b4-32da-9c86-3e39d0b916d1,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2018,naphtha combustion consumption by freight transport,0.030495849999999998,TJ,N2O,0.6,kg/TJ,0.01829751,kg -56c0c246-cccb-38c6-8c8a-3ad5b8924892,SESCO,II.1.1,Tucuman,AR-T,annual,2018,naphtha combustion consumption by freight transport,0.030495849999999998,TJ,CO2,73300.0,kg/TJ,2235.345805,kg -9650d977-dbab-3625-9201-9bfc3570a960,SESCO,II.1.1,Tucuman,AR-T,annual,2018,naphtha combustion consumption by freight transport,0.030495849999999998,TJ,CH4,3.0,kg/TJ,0.09148755,kg -03b46f69-4979-3c80-8535-ef65ea1050a7,SESCO,II.1.1,Tucuman,AR-T,annual,2018,naphtha combustion consumption by freight transport,0.030495849999999998,TJ,N2O,0.6,kg/TJ,0.01829751,kg -d3b7cb48-eda2-3f76-b1ea-27f25a7922a3,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,naphtha combustion consumption by freight transport,5.428261299999999,TJ,CO2,73300.0,kg/TJ,397891.55328999995,kg -ae830394-4888-3ff1-bfd9-cc746ed7b6bf,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,naphtha combustion consumption by freight transport,5.428261299999999,TJ,CH4,3.0,kg/TJ,16.284783899999997,kg -26d37c83-0f0d-3972-9986-e41e009f9060,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,naphtha combustion consumption by freight transport,5.428261299999999,TJ,N2O,0.6,kg/TJ,3.2569567799999994,kg -1fbcefd9-94b9-3e3e-a38e-00c2d10dd9c0,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,naphtha combustion consumption by freight transport,2.6836347999999997,TJ,CO2,73300.0,kg/TJ,196710.43084,kg -3ea60da9-a299-3a9c-a206-0174f7fd6fa2,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,naphtha combustion consumption by freight transport,2.6836347999999997,TJ,CH4,3.0,kg/TJ,8.050904399999999,kg -5ae144dc-7518-3efe-934a-2d65b6d7fae8,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,naphtha combustion consumption by freight transport,2.6836347999999997,TJ,N2O,0.6,kg/TJ,1.6101808799999997,kg -d7a73771-112f-3151-ad98-91528219f9f0,SESCO,II.1.1,Chubut,AR-U,annual,2018,naphtha combustion consumption by freight transport,0.030495849999999998,TJ,CO2,73300.0,kg/TJ,2235.345805,kg -c2c5abc6-4ead-3a35-8ac2-69de607b95a3,SESCO,II.1.1,Chubut,AR-U,annual,2018,naphtha combustion consumption by freight transport,0.030495849999999998,TJ,CH4,3.0,kg/TJ,0.09148755,kg -dcf92fc3-bd12-3619-9641-6f23a29096f3,SESCO,II.1.1,Chubut,AR-U,annual,2018,naphtha combustion consumption by freight transport,0.030495849999999998,TJ,N2O,0.6,kg/TJ,0.01829751,kg -604e8ea0-4110-3249-8915-5d283806131a,SESCO,II.1.1,Corrientes,AR-W,annual,2018,naphtha combustion consumption by freight transport,0.09148754999999999,TJ,CO2,73300.0,kg/TJ,6706.037414999999,kg -150f66a5-bd8b-330d-aead-5601e1594b87,SESCO,II.1.1,Corrientes,AR-W,annual,2018,naphtha combustion consumption by freight transport,0.09148754999999999,TJ,CH4,3.0,kg/TJ,0.27446265,kg -6575ed5a-d94e-3b8c-b0b0-ab24037543c2,SESCO,II.1.1,Corrientes,AR-W,annual,2018,naphtha combustion consumption by freight transport,0.09148754999999999,TJ,N2O,0.6,kg/TJ,0.05489252999999999,kg -dbc2c085-e9cf-361c-aebd-da29b1da8903,SESCO,II.1.1,Córdoba,AR-X,annual,2018,naphtha combustion consumption by freight transport,1.4028090999999998,TJ,CO2,73300.0,kg/TJ,102825.90702999999,kg -23326320-0fb1-3fe7-92af-b431ed94fc9b,SESCO,II.1.1,Córdoba,AR-X,annual,2018,naphtha combustion consumption by freight transport,1.4028090999999998,TJ,CH4,3.0,kg/TJ,4.208427299999999,kg -5012ff8f-2ab2-30f8-a27a-0376e642073a,SESCO,II.1.1,Córdoba,AR-X,annual,2018,naphtha combustion consumption by freight transport,1.4028090999999998,TJ,N2O,0.6,kg/TJ,0.8416854599999999,kg -0b97ce0c-f62d-34d4-9011-8dbbad3c4a64,SESCO,II.1.1,Entre Rios,AR-E,annual,2018,naphtha combustion consumption by freight transport,0.24396679999999998,TJ,CO2,73300.0,kg/TJ,17882.76644,kg -7056027e-3ddb-38af-9948-f6693e724bfe,SESCO,II.1.1,Entre Rios,AR-E,annual,2018,naphtha combustion consumption by freight transport,0.24396679999999998,TJ,CH4,3.0,kg/TJ,0.7319004,kg -ef76cf67-02d6-31b1-8901-01ead61a3406,SESCO,II.1.1,Entre Rios,AR-E,annual,2018,naphtha combustion consumption by freight transport,0.24396679999999998,TJ,N2O,0.6,kg/TJ,0.14638008,kg -24d9cd3f-a60f-378c-a1cf-fa69829bff65,SESCO,II.1.1,Jujuy,AR-Y,annual,2018,naphtha combustion consumption by freight transport,0.030495849999999998,TJ,CO2,73300.0,kg/TJ,2235.345805,kg -a03871f8-083c-3afd-b4c0-0fba3ef4d022,SESCO,II.1.1,Jujuy,AR-Y,annual,2018,naphtha combustion consumption by freight transport,0.030495849999999998,TJ,CH4,3.0,kg/TJ,0.09148755,kg -c001fb4a-7dc0-3bba-9d9f-b00c7f1ba396,SESCO,II.1.1,Jujuy,AR-Y,annual,2018,naphtha combustion consumption by freight transport,0.030495849999999998,TJ,N2O,0.6,kg/TJ,0.01829751,kg -a8de0df2-5c17-3d33-8846-563a1215de7a,SESCO,II.1.1,La Pampa,AR-L,annual,2018,naphtha combustion consumption by freight transport,0.030495849999999998,TJ,CO2,73300.0,kg/TJ,2235.345805,kg -e23c1f37-caf7-39f5-beb6-2534bbd3d4b0,SESCO,II.1.1,La Pampa,AR-L,annual,2018,naphtha combustion consumption by freight transport,0.030495849999999998,TJ,CH4,3.0,kg/TJ,0.09148755,kg -fad0ad73-6ff0-3045-bd97-447423d813ca,SESCO,II.1.1,La Pampa,AR-L,annual,2018,naphtha combustion consumption by freight transport,0.030495849999999998,TJ,N2O,0.6,kg/TJ,0.01829751,kg -3520831d-9626-3027-b3c5-f0c99fd19321,SESCO,II.1.1,Mendoza,AR-M,annual,2018,naphtha combustion consumption by freight transport,0.060991699999999996,TJ,CO2,73300.0,kg/TJ,4470.69161,kg -c41db821-b326-38a2-b945-196823a461d9,SESCO,II.1.1,Mendoza,AR-M,annual,2018,naphtha combustion consumption by freight transport,0.060991699999999996,TJ,CH4,3.0,kg/TJ,0.1829751,kg -a7e08bea-ea3d-3a0b-9ba3-764b9d1d84e8,SESCO,II.1.1,Mendoza,AR-M,annual,2018,naphtha combustion consumption by freight transport,0.060991699999999996,TJ,N2O,0.6,kg/TJ,0.03659502,kg -304bee09-beea-3f97-a131-1cbbdef9332a,SESCO,II.1.1,Neuquén,AR-Q,annual,2018,naphtha combustion consumption by freight transport,0.030495849999999998,TJ,CO2,73300.0,kg/TJ,2235.345805,kg -58beb00e-4d76-3c74-8cd1-803e82c46afd,SESCO,II.1.1,Neuquén,AR-Q,annual,2018,naphtha combustion consumption by freight transport,0.030495849999999998,TJ,CH4,3.0,kg/TJ,0.09148755,kg -c8a93f6c-dcab-33c7-ac2d-f77b9640d7ff,SESCO,II.1.1,Neuquén,AR-Q,annual,2018,naphtha combustion consumption by freight transport,0.030495849999999998,TJ,N2O,0.6,kg/TJ,0.01829751,kg -58369854-9765-3f52-a2ce-4ce8a37e6335,SESCO,II.1.1,Rio Negro,AR-R,annual,2018,naphtha combustion consumption by freight transport,0.030495849999999998,TJ,CO2,73300.0,kg/TJ,2235.345805,kg -2f364a32-00cf-3118-90cb-d0a7bacccd6d,SESCO,II.1.1,Rio Negro,AR-R,annual,2018,naphtha combustion consumption by freight transport,0.030495849999999998,TJ,CH4,3.0,kg/TJ,0.09148755,kg -7951d92a-9515-33f2-9755-99afd3671de9,SESCO,II.1.1,Rio Negro,AR-R,annual,2018,naphtha combustion consumption by freight transport,0.030495849999999998,TJ,N2O,0.6,kg/TJ,0.01829751,kg -ad11e77b-eb40-3569-b2f8-c5ae99877d2f,SESCO,II.1.1,San Luis,AR-D,annual,2018,naphtha combustion consumption by freight transport,0.030495849999999998,TJ,CO2,73300.0,kg/TJ,2235.345805,kg -5fb5973d-48e8-3cd2-a33e-67bde5afd5a6,SESCO,II.1.1,San Luis,AR-D,annual,2018,naphtha combustion consumption by freight transport,0.030495849999999998,TJ,CH4,3.0,kg/TJ,0.09148755,kg -fcd1c7af-5be7-3d7e-b993-8fa717f1a7f0,SESCO,II.1.1,San Luis,AR-D,annual,2018,naphtha combustion consumption by freight transport,0.030495849999999998,TJ,N2O,0.6,kg/TJ,0.01829751,kg -f7e0aa60-26d8-30ad-bb30-1f01c5f8f253,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,naphtha combustion consumption by freight transport,1.2808257,TJ,CO2,73300.0,kg/TJ,93884.52381,kg -6f2a9c4a-84e2-378d-9872-35cb8d0d3e7f,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,naphtha combustion consumption by freight transport,1.2808257,TJ,CH4,3.0,kg/TJ,3.8424771,kg -35585c1e-cc48-3caa-897d-5c5e9826e374,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,naphtha combustion consumption by freight transport,1.2808257,TJ,N2O,0.6,kg/TJ,0.76849542,kg -ac1be5db-5b1e-353b-a461-a0d2f3eb9e65,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2018,naphtha combustion consumption by freight transport,0.030495849999999998,TJ,CO2,73300.0,kg/TJ,2235.345805,kg -166dc269-b1e6-3f43-a936-10685b9227dc,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2018,naphtha combustion consumption by freight transport,0.030495849999999998,TJ,CH4,3.0,kg/TJ,0.09148755,kg -2b005269-36b4-32da-9c86-3e39d0b916d1,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2018,naphtha combustion consumption by freight transport,0.030495849999999998,TJ,N2O,0.6,kg/TJ,0.01829751,kg -56c0c246-cccb-38c6-8c8a-3ad5b8924892,SESCO,II.1.1,Tucuman,AR-T,annual,2018,naphtha combustion consumption by freight transport,0.030495849999999998,TJ,CO2,73300.0,kg/TJ,2235.345805,kg -9650d977-dbab-3625-9201-9bfc3570a960,SESCO,II.1.1,Tucuman,AR-T,annual,2018,naphtha combustion consumption by freight transport,0.030495849999999998,TJ,CH4,3.0,kg/TJ,0.09148755,kg -03b46f69-4979-3c80-8535-ef65ea1050a7,SESCO,II.1.1,Tucuman,AR-T,annual,2018,naphtha combustion consumption by freight transport,0.030495849999999998,TJ,N2O,0.6,kg/TJ,0.01829751,kg -9c0ebd6d-b37a-30e6-9875-438f290a0148,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,naphtha combustion consumption by public passenger transport,0.030495849999999998,TJ,CO2,73300.0,kg/TJ,2235.345805,kg -9bdf8fba-8bd3-3c17-a29d-92ad9c4b7fe1,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,naphtha combustion consumption by public passenger transport,0.030495849999999998,TJ,CH4,3.0,kg/TJ,0.09148755,kg -4eff4028-71a2-3307-84aa-950dcc1809bf,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,naphtha combustion consumption by public passenger transport,0.030495849999999998,TJ,N2O,0.6,kg/TJ,0.01829751,kg -e9085028-d3b4-310f-bddc-aa9c0bcb6a9d,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,naphtha combustion consumption by public passenger transport,0.030495849999999998,TJ,CO2,73300.0,kg/TJ,2235.345805,kg -dc03a3a0-ec7a-35f4-83c1-c1ae18dba2fc,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,naphtha combustion consumption by public passenger transport,0.030495849999999998,TJ,CH4,3.0,kg/TJ,0.09148755,kg -8e9fe83e-28a9-3396-9b90-cedc8aa4870a,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,naphtha combustion consumption by public passenger transport,0.030495849999999998,TJ,N2O,0.6,kg/TJ,0.01829751,kg -7410e376-5ca0-3759-81c6-bd254cda64bf,SESCO,II.1.1,Salta,AR-A,annual,2018,naphtha combustion consumption by public passenger transport,0.6709086999999999,TJ,CO2,73300.0,kg/TJ,49177.60771,kg -957dea3c-e922-304d-b935-cd53d0f6d1e5,SESCO,II.1.1,Salta,AR-A,annual,2018,naphtha combustion consumption by public passenger transport,0.6709086999999999,TJ,CH4,3.0,kg/TJ,2.0127260999999996,kg -95794053-d9a9-39fc-94c1-bca60aeecc0f,SESCO,II.1.1,Salta,AR-A,annual,2018,naphtha combustion consumption by public passenger transport,0.6709086999999999,TJ,N2O,0.6,kg/TJ,0.4025452199999999,kg -00cd765a-a237-3fc6-ae69-3551ba33f8b4,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,naphtha combustion consumption by public passenger transport,0.21347095,TJ,CO2,73300.0,kg/TJ,15647.420634999999,kg -b5a0725e-efee-3e88-8269-967a277db0cf,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,naphtha combustion consumption by public passenger transport,0.21347095,TJ,CH4,3.0,kg/TJ,0.6404128499999999,kg -aaf4b4bf-efaa-3e7a-9215-71b93cf1a1ad,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,naphtha combustion consumption by public passenger transport,0.21347095,TJ,N2O,0.6,kg/TJ,0.12808256999999998,kg -9c0ebd6d-b37a-30e6-9875-438f290a0148,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,naphtha combustion consumption by public passenger transport,0.030495849999999998,TJ,CO2,73300.0,kg/TJ,2235.345805,kg -9bdf8fba-8bd3-3c17-a29d-92ad9c4b7fe1,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,naphtha combustion consumption by public passenger transport,0.030495849999999998,TJ,CH4,3.0,kg/TJ,0.09148755,kg -4eff4028-71a2-3307-84aa-950dcc1809bf,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,naphtha combustion consumption by public passenger transport,0.030495849999999998,TJ,N2O,0.6,kg/TJ,0.01829751,kg -e9085028-d3b4-310f-bddc-aa9c0bcb6a9d,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,naphtha combustion consumption by public passenger transport,0.030495849999999998,TJ,CO2,73300.0,kg/TJ,2235.345805,kg -dc03a3a0-ec7a-35f4-83c1-c1ae18dba2fc,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,naphtha combustion consumption by public passenger transport,0.030495849999999998,TJ,CH4,3.0,kg/TJ,0.09148755,kg -8e9fe83e-28a9-3396-9b90-cedc8aa4870a,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,naphtha combustion consumption by public passenger transport,0.030495849999999998,TJ,N2O,0.6,kg/TJ,0.01829751,kg -c6675373-8b71-3717-aac5-0061a59e1ebc,SESCO,II.1.1,Córdoba,AR-X,annual,2018,naphtha combustion consumption by public passenger transport,0.030495849999999998,TJ,CO2,73300.0,kg/TJ,2235.345805,kg -c5fc2307-7d22-3ee6-aeef-e06556b157ed,SESCO,II.1.1,Córdoba,AR-X,annual,2018,naphtha combustion consumption by public passenger transport,0.030495849999999998,TJ,CH4,3.0,kg/TJ,0.09148755,kg -016009af-de36-383e-aebf-c33ed5a905af,SESCO,II.1.1,Córdoba,AR-X,annual,2018,naphtha combustion consumption by public passenger transport,0.030495849999999998,TJ,N2O,0.6,kg/TJ,0.01829751,kg -0c850a87-33b9-3303-8ec6-b672a3af62fb,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,naphtha combustion consumption by public passenger transport,0.09148754999999999,TJ,CO2,73300.0,kg/TJ,6706.037414999999,kg -4831fd76-8a18-3768-93e8-327618d2e671,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,naphtha combustion consumption by public passenger transport,0.09148754999999999,TJ,CH4,3.0,kg/TJ,0.27446265,kg -1ecfdfca-e882-3cd0-bbe1-27a1ce3f9d5e,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,naphtha combustion consumption by public passenger transport,0.09148754999999999,TJ,N2O,0.6,kg/TJ,0.05489252999999999,kg -dced9ead-8f7d-3c76-a2ac-574a25c5abdc,SESCO,II.5.1,Buenos Aires,AR-B,annual,2018,naphtha combustion consumption by agriculture machines,4.37618497085,TJ,CO2,73300.0,kg/TJ,320774.358363305,kg -e3730d2c-21f1-32b3-a693-62c3f6386aa8,SESCO,II.5.1,Buenos Aires,AR-B,annual,2018,naphtha combustion consumption by agriculture machines,4.37618497085,TJ,CH4,3.0,kg/TJ,13.12855491255,kg -fc5e4d4e-59c2-32e3-9391-c52eae72ccb2,SESCO,II.5.1,Buenos Aires,AR-B,annual,2018,naphtha combustion consumption by agriculture machines,4.37618497085,TJ,N2O,0.6,kg/TJ,2.62571098251,kg -1405f697-faca-3d8c-a8de-c14ffba2db64,SESCO,II.5.1,Rio Negro,AR-R,annual,2018,naphtha combustion consumption by agriculture machines,0.4211476884999999,TJ,CO2,73300.0,kg/TJ,30870.125567049992,kg -892afb38-e4b7-3c24-817f-e88e930158fb,SESCO,II.5.1,Rio Negro,AR-R,annual,2018,naphtha combustion consumption by agriculture machines,0.4211476884999999,TJ,CH4,3.0,kg/TJ,1.2634430654999997,kg -f8da6ceb-79ff-30fc-b0c1-2e184d6d66fa,SESCO,II.5.1,Rio Negro,AR-R,annual,2018,naphtha combustion consumption by agriculture machines,0.4211476884999999,TJ,N2O,0.6,kg/TJ,0.2526886130999999,kg -ac7591ae-1051-33ed-97e5-d26b0d5b84ae,SESCO,II.5.1,Buenos Aires,AR-B,annual,2018,naphtha combustion consumption by agriculture machines,0.6661513473999999,TJ,CO2,73300.0,kg/TJ,48828.89376442,kg -1e2e018a-71af-374a-a913-53bb332c508f,SESCO,II.5.1,Buenos Aires,AR-B,annual,2018,naphtha combustion consumption by agriculture machines,0.6661513473999999,TJ,CH4,3.0,kg/TJ,1.9984540421999997,kg -9baa07ca-ef93-3250-bb1c-158412c4e0fa,SESCO,II.5.1,Buenos Aires,AR-B,annual,2018,naphtha combustion consumption by agriculture machines,0.6661513473999999,TJ,N2O,0.6,kg/TJ,0.39969080843999993,kg -fc2cad07-6ca6-340e-8bd6-ed941d2015d0,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,naphtha combustion consumption by to the public,1410.2093449443998,TJ,CO2,73300.0,kg/TJ,103368344.9844245,kg -75fd9216-4f8b-32c4-9934-d8871d7efc98,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,naphtha combustion consumption by to the public,1410.2093449443998,TJ,CH4,3.0,kg/TJ,4230.628034833199,kg -c0475fb0-9246-3804-9c37-f0ea4ba043ba,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,naphtha combustion consumption by to the public,1410.2093449443998,TJ,N2O,0.6,kg/TJ,846.1256069666399,kg -4a834f41-b062-35ff-9794-197656a98879,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,naphtha combustion consumption by to the public,92.15672043654999,TJ,CO2,73300.0,kg/TJ,6755087.607999114,kg -21f6106b-6dd9-306e-b9a4-56ed10708f6f,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,naphtha combustion consumption by to the public,92.15672043654999,TJ,CH4,3.0,kg/TJ,276.47016130964994,kg -98877b52-448c-3886-9ed3-ee7ed9379531,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,naphtha combustion consumption by to the public,92.15672043654999,TJ,N2O,0.6,kg/TJ,55.29403226192999,kg -2d3d6afd-fd95-3976-a35b-3aaa72feb656,SESCO,II.1.1,Chubut,AR-U,annual,2018,naphtha combustion consumption by to the public,482.41031363139996,TJ,CO2,73300.0,kg/TJ,35360675.989181615,kg -d626bc3b-0541-32ae-99ce-e2f09cdb141a,SESCO,II.1.1,Chubut,AR-U,annual,2018,naphtha combustion consumption by to the public,482.41031363139996,TJ,CH4,3.0,kg/TJ,1447.2309408941999,kg -71d7bfba-38ac-3b0b-aff5-1469fa2c5655,SESCO,II.1.1,Chubut,AR-U,annual,2018,naphtha combustion consumption by to the public,482.41031363139996,TJ,N2O,0.6,kg/TJ,289.44618817884,kg -d2a28006-0bc0-3e8b-9383-e9c2d729150f,SESCO,II.1.1,Córdoba,AR-X,annual,2018,naphtha combustion consumption by to the public,143.10696041949998,TJ,CO2,73300.0,kg/TJ,10489740.198749349,kg -0d486f0c-2b4c-34d8-ba37-fbf9e03da9c7,SESCO,II.1.1,Córdoba,AR-X,annual,2018,naphtha combustion consumption by to the public,143.10696041949998,TJ,CH4,3.0,kg/TJ,429.3208812585,kg -94e54903-39f1-35f6-a08b-0aa8b27af5d9,SESCO,II.1.1,Córdoba,AR-X,annual,2018,naphtha combustion consumption by to the public,143.10696041949998,TJ,N2O,0.6,kg/TJ,85.86417625169999,kg -7e07dbaa-0f60-34c6-82ba-5d7d633c8947,SESCO,II.1.1,Entre Rios,AR-E,annual,2018,naphtha combustion consumption by to the public,51.44030829245,TJ,CO2,73300.0,kg/TJ,3770574.597836585,kg -f58e5903-7cee-3bb7-bb96-294d04396347,SESCO,II.1.1,Entre Rios,AR-E,annual,2018,naphtha combustion consumption by to the public,51.44030829245,TJ,CH4,3.0,kg/TJ,154.32092487735,kg -cbfda835-5004-3a7f-b391-d1a3cadb7ce9,SESCO,II.1.1,Entre Rios,AR-E,annual,2018,naphtha combustion consumption by to the public,51.44030829245,TJ,N2O,0.6,kg/TJ,30.864184975469996,kg -593fc727-3418-3a0f-a94e-32b822f8d96c,SESCO,II.1.1,La Pampa,AR-L,annual,2018,naphtha combustion consumption by to the public,155.61791337785,TJ,CO2,73300.0,kg/TJ,11406793.050596405,kg -5ad7e9f2-0e76-39e0-8c34-1640b25268a5,SESCO,II.1.1,La Pampa,AR-L,annual,2018,naphtha combustion consumption by to the public,155.61791337785,TJ,CH4,3.0,kg/TJ,466.85374013355,kg -0b739616-3102-38ce-8e04-8c24267ae5d3,SESCO,II.1.1,La Pampa,AR-L,annual,2018,naphtha combustion consumption by to the public,155.61791337785,TJ,N2O,0.6,kg/TJ,93.37074802670999,kg -660f05cd-fe97-309c-989c-0df82a96c7df,SESCO,II.1.1,Neuquén,AR-Q,annual,2018,naphtha combustion consumption by to the public,148.32727051834996,TJ,CO2,73300.0,kg/TJ,10872388.928995052,kg -e403be75-337d-3b90-b340-0107ad179371,SESCO,II.1.1,Neuquén,AR-Q,annual,2018,naphtha combustion consumption by to the public,148.32727051834996,TJ,CH4,3.0,kg/TJ,444.9818115550499,kg -faf41c47-6656-36c3-90fe-08fa33d5ae3f,SESCO,II.1.1,Neuquén,AR-Q,annual,2018,naphtha combustion consumption by to the public,148.32727051834996,TJ,N2O,0.6,kg/TJ,88.99636231100997,kg -a1748908-266a-3a2b-b0d6-360d41a820ac,SESCO,II.1.1,Rio Negro,AR-R,annual,2018,naphtha combustion consumption by to the public,444.65934843714996,TJ,CO2,73300.0,kg/TJ,32593530.24044309,kg -46f6f3e9-e9ab-3362-853a-4eea70c829fb,SESCO,II.1.1,Rio Negro,AR-R,annual,2018,naphtha combustion consumption by to the public,444.65934843714996,TJ,CH4,3.0,kg/TJ,1333.97804531145,kg -a9c5a7b5-c116-3325-b7d2-a4ca93bf0a3c,SESCO,II.1.1,Rio Negro,AR-R,annual,2018,naphtha combustion consumption by to the public,444.65934843714996,TJ,N2O,0.6,kg/TJ,266.79560906228994,kg -d77647e8-c63b-3afa-849f-ffa714f3f4b5,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2018,naphtha combustion consumption by to the public,299.24732869954994,TJ,CO2,73300.0,kg/TJ,21934829.193677012,kg -bb7664e2-7364-344d-81b1-26a704836230,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2018,naphtha combustion consumption by to the public,299.24732869954994,TJ,CH4,3.0,kg/TJ,897.7419860986498,kg -36ac661a-be58-3026-9463-79eb5788b988,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2018,naphtha combustion consumption by to the public,299.24732869954994,TJ,N2O,0.6,kg/TJ,179.54839721972996,kg -223e028f-36c4-394c-bbbb-edfe95227399,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,naphtha combustion consumption by to the public,190.02793622119998,TJ,CO2,73300.0,kg/TJ,13929047.725013958,kg -e2759564-9a89-3eb6-b5d5-5d57f84a2abd,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,naphtha combustion consumption by to the public,190.02793622119998,TJ,CH4,3.0,kg/TJ,570.0838086635999,kg -a18d2f92-fbda-37d6-8b0f-267f2f25bc0f,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,naphtha combustion consumption by to the public,190.02793622119998,TJ,N2O,0.6,kg/TJ,114.01676173271998,kg -31190466-5999-31d5-987f-1a0695ff1941,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,naphtha combustion consumption by to the public,381.64986002605,TJ,CO2,73300.0,kg/TJ,27974934.739909466,kg -532bc749-dbb0-3da2-a3a3-d14f2bae9307,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,naphtha combustion consumption by to the public,381.64986002605,TJ,CH4,3.0,kg/TJ,1144.9495800781501,kg -9bf1b525-9fee-3e92-a977-82f35e5d4ad2,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,naphtha combustion consumption by to the public,381.64986002605,TJ,N2O,0.6,kg/TJ,228.98991601563,kg -b4d11ecd-ce3a-3294-9df8-43b530445a0d,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,naphtha combustion consumption by to the public,26.92536538615,TJ,CO2,73300.0,kg/TJ,1973629.2828047948,kg -0e5dd33f-02e9-34bf-994d-c8e6a36c8033,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,naphtha combustion consumption by to the public,26.92536538615,TJ,CH4,3.0,kg/TJ,80.77609615845,kg -0c34c859-30d2-3806-838c-8562c6382f8e,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,naphtha combustion consumption by to the public,26.92536538615,TJ,N2O,0.6,kg/TJ,16.155219231689998,kg -299460b8-f89f-365a-821e-a307100bcf91,SESCO,II.1.1,Chubut,AR-U,annual,2018,naphtha combustion consumption by to the public,106.07142786624999,TJ,CO2,73300.0,kg/TJ,7775035.662596124,kg -20ed4b16-83d3-314f-8c11-3723f8a1513a,SESCO,II.1.1,Chubut,AR-U,annual,2018,naphtha combustion consumption by to the public,106.07142786624999,TJ,CH4,3.0,kg/TJ,318.21428359874994,kg -fea8c909-65b1-3b60-9fa9-7d2330b23ce0,SESCO,II.1.1,Chubut,AR-U,annual,2018,naphtha combustion consumption by to the public,106.07142786624999,TJ,N2O,0.6,kg/TJ,63.64285671974999,kg -fcbabdab-182d-38bc-8171-2063486b817c,SESCO,II.1.1,Córdoba,AR-X,annual,2018,naphtha combustion consumption by to the public,40.27419182324999,TJ,CO2,73300.0,kg/TJ,2952098.2606442245,kg -add2c64e-da2b-3c3b-b38a-168531abec47,SESCO,II.1.1,Córdoba,AR-X,annual,2018,naphtha combustion consumption by to the public,40.27419182324999,TJ,CH4,3.0,kg/TJ,120.82257546974998,kg -e19c5a16-f43f-3511-8859-61ad30f70afc,SESCO,II.1.1,Córdoba,AR-X,annual,2018,naphtha combustion consumption by to the public,40.27419182324999,TJ,N2O,0.6,kg/TJ,24.164515093949994,kg -6a6a2839-b6f3-37bf-9061-32e10fc48e36,SESCO,II.1.1,Entre Rios,AR-E,annual,2018,naphtha combustion consumption by to the public,16.833648208299998,TJ,CO2,73300.0,kg/TJ,1233906.41366839,kg -db004c3c-87e1-30c8-816f-a7d0399a0359,SESCO,II.1.1,Entre Rios,AR-E,annual,2018,naphtha combustion consumption by to the public,16.833648208299998,TJ,CH4,3.0,kg/TJ,50.500944624899994,kg -ae3d4e5f-2888-3d88-abd9-ac806b937b6b,SESCO,II.1.1,Entre Rios,AR-E,annual,2018,naphtha combustion consumption by to the public,16.833648208299998,TJ,N2O,0.6,kg/TJ,10.100188924979998,kg -8520a6aa-04a0-3d2d-8695-49b2de2ea28a,SESCO,II.1.1,La Pampa,AR-L,annual,2018,naphtha combustion consumption by to the public,64.93411200045,TJ,CO2,73300.0,kg/TJ,4759670.409632985,kg -2e67b411-3995-31bd-a352-d6690f3bc889,SESCO,II.1.1,La Pampa,AR-L,annual,2018,naphtha combustion consumption by to the public,64.93411200045,TJ,CH4,3.0,kg/TJ,194.80233600135,kg -582059d5-9627-32e8-b5eb-b61d11ad0d3d,SESCO,II.1.1,La Pampa,AR-L,annual,2018,naphtha combustion consumption by to the public,64.93411200045,TJ,N2O,0.6,kg/TJ,38.960467200269996,kg -db95de0c-7703-3c97-a45d-25e30b55fe9d,SESCO,II.1.1,Neuquén,AR-Q,annual,2018,naphtha combustion consumption by to the public,75.09929368094998,TJ,CO2,73300.0,kg/TJ,5504778.226813634,kg -71e4de8a-343c-3235-ae26-3505cc61553d,SESCO,II.1.1,Neuquén,AR-Q,annual,2018,naphtha combustion consumption by to the public,75.09929368094998,TJ,CH4,3.0,kg/TJ,225.29788104284995,kg -f58e016b-ad74-3a7f-ab90-ac0633c4fe1c,SESCO,II.1.1,Neuquén,AR-Q,annual,2018,naphtha combustion consumption by to the public,75.09929368094998,TJ,N2O,0.6,kg/TJ,45.059576208569986,kg -de9a5db0-122c-39a6-837a-21609e5206ea,SESCO,II.1.1,Rio Negro,AR-R,annual,2018,naphtha combustion consumption by to the public,115.16660165779999,TJ,CO2,73300.0,kg/TJ,8441711.90151674,kg -77228222-3300-3d87-ad93-faeed3fd64d8,SESCO,II.1.1,Rio Negro,AR-R,annual,2018,naphtha combustion consumption by to the public,115.16660165779999,TJ,CH4,3.0,kg/TJ,345.49980497339993,kg -641eb284-6735-3399-af6c-7e25d9b385ca,SESCO,II.1.1,Rio Negro,AR-R,annual,2018,naphtha combustion consumption by to the public,115.16660165779999,TJ,N2O,0.6,kg/TJ,69.09996099467999,kg -ed1685c0-cfe3-38bf-9384-212e56b016a2,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2018,naphtha combustion consumption by to the public,58.70335240769999,TJ,CO2,73300.0,kg/TJ,4302955.731484409,kg -ffb639ae-372d-3987-a59a-41a4d1070e01,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2018,naphtha combustion consumption by to the public,58.70335240769999,TJ,CH4,3.0,kg/TJ,176.11005722309997,kg -a856b5dd-9c0c-3328-a575-c0a4c05a03cf,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2018,naphtha combustion consumption by to the public,58.70335240769999,TJ,N2O,0.6,kg/TJ,35.222011444619994,kg -46f770d7-f5d5-3a09-981f-1939c9d37ed5,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,naphtha combustion consumption by to the public,80.66862878304998,TJ,CO2,73300.0,kg/TJ,5913010.489797563,kg -418ea6fe-69f3-305a-921c-01f4f4d33250,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,naphtha combustion consumption by to the public,80.66862878304998,TJ,CH4,3.0,kg/TJ,242.00588634914993,kg -b5f649ad-de04-3e10-b8e6-ed67af2c5b4f,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,naphtha combustion consumption by to the public,80.66862878304998,TJ,N2O,0.6,kg/TJ,48.40117726982999,kg -921a8972-8ad7-325a-8c9b-5cb1d47a9c30,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,naphtha combustion consumption by to the public,79.60026767000001,TJ,CO2,73300.0,kg/TJ,5834699.620211001,kg -541fb955-fc3b-39a7-8f38-74a07542fbaa,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,naphtha combustion consumption by to the public,79.60026767000001,TJ,CH4,3.0,kg/TJ,238.80080301000004,kg -4c79595e-73fb-3c5a-9b32-7ce05b04948c,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,naphtha combustion consumption by to the public,79.60026767000001,TJ,N2O,0.6,kg/TJ,47.760160602000006,kg -dec61c45-b840-3cb7-9512-f2141cf16b3f,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,naphtha combustion consumption by to the public,5.3062778999999995,TJ,CO2,73300.0,kg/TJ,388950.17007,kg -b1e1c5a1-fb09-3ec7-ba28-7ed12ec12b92,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,naphtha combustion consumption by to the public,5.3062778999999995,TJ,CH4,3.0,kg/TJ,15.918833699999999,kg -f014a068-1967-38bd-a770-37a116aebc50,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,naphtha combustion consumption by to the public,5.3062778999999995,TJ,N2O,0.6,kg/TJ,3.18376674,kg -d1fee8b3-38e6-3d76-95eb-3c7a877e1c7c,SESCO,II.1.1,Córdoba,AR-X,annual,2018,naphtha combustion consumption by to the public,16.376271449999997,TJ,CO2,73300.0,kg/TJ,1200380.6972849998,kg -2093a5db-668a-36fd-a7b5-e42bde8ce8b8,SESCO,II.1.1,Córdoba,AR-X,annual,2018,naphtha combustion consumption by to the public,16.376271449999997,TJ,CH4,3.0,kg/TJ,49.12881434999999,kg -d7253c73-85be-3034-b0cb-be8ce461ae5c,SESCO,II.1.1,Córdoba,AR-X,annual,2018,naphtha combustion consumption by to the public,16.376271449999997,TJ,N2O,0.6,kg/TJ,9.825762869999998,kg -dd1971ce-dfb3-3f83-81bf-9ae594143384,SESCO,II.1.1,Entre Rios,AR-E,annual,2018,naphtha combustion consumption by to the public,22.73770576,TJ,CO2,73300.0,kg/TJ,1666673.8322080001,kg -9a7674c6-e9a1-3fec-b09a-19bdfa7c5e6b,SESCO,II.1.1,Entre Rios,AR-E,annual,2018,naphtha combustion consumption by to the public,22.73770576,TJ,CH4,3.0,kg/TJ,68.21311728,kg -4cf3bfe1-477a-37f5-876d-b63bef596f24,SESCO,II.1.1,Entre Rios,AR-E,annual,2018,naphtha combustion consumption by to the public,22.73770576,TJ,N2O,0.6,kg/TJ,13.642623456,kg -c6b30006-2805-341c-97e4-c79079880ab5,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,naphtha combustion consumption by to the public,0.51842945,TJ,CO2,73300.0,kg/TJ,38000.878684999996,kg -03384c16-6b49-3588-b7df-8dd5e259dcff,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,naphtha combustion consumption by to the public,0.51842945,TJ,CH4,3.0,kg/TJ,1.5552883499999999,kg -d789f50c-7b8c-3dd0-a3bf-6ad907c04df3,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,naphtha combustion consumption by to the public,0.51842945,TJ,N2O,0.6,kg/TJ,0.31105766999999995,kg -bf1b1f70-c9a0-333e-944a-9d7651bd7d6e,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,naphtha combustion consumption by to the public,8.016444089499998,TJ,CO2,73300.0,kg/TJ,587605.3517603499,kg -92229769-66bd-3be9-8218-c03648ad984a,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,naphtha combustion consumption by to the public,8.016444089499998,TJ,CH4,3.0,kg/TJ,24.049332268499995,kg -08036a60-7845-3cd0-b318-7590d14e6ebc,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,naphtha combustion consumption by to the public,8.016444089499998,TJ,N2O,0.6,kg/TJ,4.809866453699999,kg -ba1c056c-0aad-35ba-b13f-a00cc10eff1b,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,naphtha combustion consumption by to the public,0.4269419,TJ,CO2,73300.0,kg/TJ,31294.841269999997,kg -5ef3db99-f20a-3686-a17f-1ef8c446dae6,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,naphtha combustion consumption by to the public,0.4269419,TJ,CH4,3.0,kg/TJ,1.2808256999999998,kg -4251bf0b-d750-3628-826e-181cc8c81f9e,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,naphtha combustion consumption by to the public,0.4269419,TJ,N2O,0.6,kg/TJ,0.25616513999999996,kg -80ba1d30-673b-32c0-b029-16137d8fbd00,SESCO,II.1.1,Córdoba,AR-X,annual,2018,naphtha combustion consumption by to the public,0.7319003999999999,TJ,CO2,73300.0,kg/TJ,53648.29931999999,kg -52c04323-4880-3174-afb6-eb95b437fa0a,SESCO,II.1.1,Córdoba,AR-X,annual,2018,naphtha combustion consumption by to the public,0.7319003999999999,TJ,CH4,3.0,kg/TJ,2.1957012,kg -2bc45857-082f-30b6-ad4a-fa357cb852af,SESCO,II.1.1,Córdoba,AR-X,annual,2018,naphtha combustion consumption by to the public,0.7319003999999999,TJ,N2O,0.6,kg/TJ,0.4391402399999999,kg -115da545-0728-38f9-b3f5-a6012805e901,SESCO,II.1.1,Entre Rios,AR-E,annual,2018,naphtha combustion consumption by to the public,1.5705362749999998,TJ,CO2,73300.0,kg/TJ,115120.30895749999,kg -a2b4dbab-9c73-3706-968a-18e4fb7c7d2e,SESCO,II.1.1,Entre Rios,AR-E,annual,2018,naphtha combustion consumption by to the public,1.5705362749999998,TJ,CH4,3.0,kg/TJ,4.711608824999999,kg -d866f951-32fd-3bd8-8915-4b11b5abd380,SESCO,II.1.1,Entre Rios,AR-E,annual,2018,naphtha combustion consumption by to the public,1.5705362749999998,TJ,N2O,0.6,kg/TJ,0.9423217649999999,kg -b3bc5286-2fc3-3b16-93c3-a0f3361def30,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,naphtha combustion consumption by to the public,1.0978506,TJ,CO2,73300.0,kg/TJ,80472.44897999999,kg -fcea5d83-9319-3090-bd9e-10c6a4918b8e,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,naphtha combustion consumption by to the public,1.0978506,TJ,CH4,3.0,kg/TJ,3.2935517999999995,kg -13ebb7fa-24ec-3678-8fc0-a63a9e9cef0b,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,naphtha combustion consumption by to the public,1.0978506,TJ,N2O,0.6,kg/TJ,0.6587103599999999,kg -280615f1-0d9e-39dd-acf0-e9727ad64945,SESCO,II.1.1,Catamarca,AR-K,annual,2018,naphtha combustion consumption by to the public,246.16738053599997,TJ,CO2,73300.0,kg/TJ,18044068.993288796,kg -5d05671f-706e-300c-8442-1e6ab3bebad0,SESCO,II.1.1,Catamarca,AR-K,annual,2018,naphtha combustion consumption by to the public,246.16738053599997,TJ,CH4,3.0,kg/TJ,738.5021416079999,kg -37fcbbc9-65c5-3ef9-a716-c25b6e64e07b,SESCO,II.1.1,Catamarca,AR-K,annual,2018,naphtha combustion consumption by to the public,246.16738053599997,TJ,N2O,0.6,kg/TJ,147.7004283216,kg -8a902070-c9ba-34dd-ab90-4b7fc8be8048,SESCO,II.1.1,Chaco,AR-H,annual,2018,naphtha combustion consumption by to the public,127.22868619999998,TJ,CO2,73300.0,kg/TJ,9325862.69846,kg -34b7df28-771d-3b62-85c6-6273453525a7,SESCO,II.1.1,Chaco,AR-H,annual,2018,naphtha combustion consumption by to the public,127.22868619999998,TJ,CH4,3.0,kg/TJ,381.68605859999997,kg -d727d5d8-2c48-3d43-a695-71704b1221e1,SESCO,II.1.1,Chaco,AR-H,annual,2018,naphtha combustion consumption by to the public,127.22868619999998,TJ,N2O,0.6,kg/TJ,76.33721171999998,kg -8f62b5a0-513d-3b0f-a82d-7be252d6d771,SESCO,II.1.1,Jujuy,AR-Y,annual,2018,naphtha combustion consumption by to the public,570.4553701,TJ,CO2,73300.0,kg/TJ,41814378.62833,kg -7ca8528f-2d7b-3332-970d-5a4b51156419,SESCO,II.1.1,Jujuy,AR-Y,annual,2018,naphtha combustion consumption by to the public,570.4553701,TJ,CH4,3.0,kg/TJ,1711.3661103,kg -1c7139a9-5bd3-317e-84b1-b55fe8fbcbd1,SESCO,II.1.1,Jujuy,AR-Y,annual,2018,naphtha combustion consumption by to the public,570.4553701,TJ,N2O,0.6,kg/TJ,342.27322205999997,kg -383b79ca-cba1-3d75-81ea-32a97ae24069,SESCO,II.1.1,La Rioja,AR-F,annual,2018,naphtha combustion consumption by to the public,446.93253959199996,TJ,CO2,73300.0,kg/TJ,32760155.152093597,kg -f4d99723-388b-3b5c-a9f5-1cd4bfab1561,SESCO,II.1.1,La Rioja,AR-F,annual,2018,naphtha combustion consumption by to the public,446.93253959199996,TJ,CH4,3.0,kg/TJ,1340.7976187759998,kg -0f9c5489-a228-3ddf-932e-5e0d007d20c2,SESCO,II.1.1,La Rioja,AR-F,annual,2018,naphtha combustion consumption by to the public,446.93253959199996,TJ,N2O,0.6,kg/TJ,268.1595237552,kg -02bec8bc-f91a-3c28-baa9-b0de73d85c38,SESCO,II.1.1,Salta,AR-A,annual,2018,naphtha combustion consumption by to the public,1060.124183965,TJ,CO2,73300.0,kg/TJ,77707102.68463449,kg -6fdcaa64-c2a5-32ce-a30a-74c077237a5b,SESCO,II.1.1,Salta,AR-A,annual,2018,naphtha combustion consumption by to the public,1060.124183965,TJ,CH4,3.0,kg/TJ,3180.3725518949996,kg -84aeb218-ff1d-347c-a260-40a7bcbbc567,SESCO,II.1.1,Salta,AR-A,annual,2018,naphtha combustion consumption by to the public,1060.124183965,TJ,N2O,0.6,kg/TJ,636.0745103789999,kg -722df192-7e7f-3bbc-90c3-92f76211a68d,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2018,naphtha combustion consumption by to the public,605.592078553,TJ,CO2,73300.0,kg/TJ,44389899.3579349,kg -2920a562-0004-3abd-867c-f3a9028c2d6f,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2018,naphtha combustion consumption by to the public,605.592078553,TJ,CH4,3.0,kg/TJ,1816.776235659,kg -acc208b3-bc4b-379c-853d-59d449343bcd,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2018,naphtha combustion consumption by to the public,605.592078553,TJ,N2O,0.6,kg/TJ,363.35524713179996,kg -8de9ce89-431d-3c92-9d68-3c267398ac8b,SESCO,II.1.1,Tucuman,AR-T,annual,2018,naphtha combustion consumption by to the public,2287.122269047,TJ,CO2,73300.0,kg/TJ,167646062.3211451,kg -ba4a8aef-5233-36a3-b5d9-dce541977bdb,SESCO,II.1.1,Tucuman,AR-T,annual,2018,naphtha combustion consumption by to the public,2287.122269047,TJ,CH4,3.0,kg/TJ,6861.366807140999,kg -b772e834-1e33-39a8-b47b-e6be19091e15,SESCO,II.1.1,Tucuman,AR-T,annual,2018,naphtha combustion consumption by to the public,2287.122269047,TJ,N2O,0.6,kg/TJ,1372.2733614282,kg -d4bdca1e-7d30-3892-ba00-83ad68957aba,SESCO,II.1.1,Catamarca,AR-K,annual,2018,naphtha combustion consumption by to the public,21.682549349999995,TJ,CO2,73300.0,kg/TJ,1589330.8673549995,kg -a38ef2d9-5e53-3ac9-8a3f-e4cd6254e96f,SESCO,II.1.1,Catamarca,AR-K,annual,2018,naphtha combustion consumption by to the public,21.682549349999995,TJ,CH4,3.0,kg/TJ,65.04764804999999,kg -1d75a5e3-a812-32a7-badb-099ee879b743,SESCO,II.1.1,Catamarca,AR-K,annual,2018,naphtha combustion consumption by to the public,21.682549349999995,TJ,N2O,0.6,kg/TJ,13.009529609999996,kg -73863abb-407c-3838-a3bb-97836b1de099,SESCO,II.1.1,Chaco,AR-H,annual,2018,naphtha combustion consumption by to the public,3.4155352,TJ,CO2,73300.0,kg/TJ,250358.73015999998,kg -ea3e774a-a09d-375c-a67e-b081558c503d,SESCO,II.1.1,Chaco,AR-H,annual,2018,naphtha combustion consumption by to the public,3.4155352,TJ,CH4,3.0,kg/TJ,10.246605599999999,kg -2814521d-20c9-309c-ad7d-3926f86b57d9,SESCO,II.1.1,Chaco,AR-H,annual,2018,naphtha combustion consumption by to the public,3.4155352,TJ,N2O,0.6,kg/TJ,2.0493211199999997,kg -680585bf-a54c-3b36-97ed-a9ccd5e0f071,SESCO,II.1.1,Jujuy,AR-Y,annual,2018,naphtha combustion consumption by to the public,26.317918549999995,TJ,CO2,73300.0,kg/TJ,1929103.4297149996,kg -b2806434-0417-3cbe-91cd-38e032a071bc,SESCO,II.1.1,Jujuy,AR-Y,annual,2018,naphtha combustion consumption by to the public,26.317918549999995,TJ,CH4,3.0,kg/TJ,78.95375564999998,kg -e86b64e3-4b2a-3ece-8a5f-c92f25c14715,SESCO,II.1.1,Jujuy,AR-Y,annual,2018,naphtha combustion consumption by to the public,26.317918549999995,TJ,N2O,0.6,kg/TJ,15.790751129999997,kg -b5882507-3d21-3a68-89a5-7053f951285d,SESCO,II.1.1,La Rioja,AR-F,annual,2018,naphtha combustion consumption by to the public,36.93047435,TJ,CO2,73300.0,kg/TJ,2707003.7698549996,kg -44fe27ef-7000-3740-8d65-f7b1a60c695a,SESCO,II.1.1,La Rioja,AR-F,annual,2018,naphtha combustion consumption by to the public,36.93047435,TJ,CH4,3.0,kg/TJ,110.79142304999999,kg -2c31d67b-4c1e-37fc-904c-6748e48a1b74,SESCO,II.1.1,La Rioja,AR-F,annual,2018,naphtha combustion consumption by to the public,36.93047435,TJ,N2O,0.6,kg/TJ,22.15828461,kg -4f7a437d-1cef-335c-b35c-8d1a12211485,SESCO,II.1.1,Salta,AR-A,annual,2018,naphtha combustion consumption by to the public,66.2708365935,TJ,CO2,73300.0,kg/TJ,4857652.322303549,kg -cec206b0-883a-3457-a26c-b7afef083cdf,SESCO,II.1.1,Salta,AR-A,annual,2018,naphtha combustion consumption by to the public,66.2708365935,TJ,CH4,3.0,kg/TJ,198.81250978049997,kg -a36a9779-11b7-3fed-a21d-81e0f37a8648,SESCO,II.1.1,Salta,AR-A,annual,2018,naphtha combustion consumption by to the public,66.2708365935,TJ,N2O,0.6,kg/TJ,39.762501956099996,kg -a876bac1-39cc-32b6-a0ad-f2086692a45b,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2018,naphtha combustion consumption by to the public,75.56993613399999,TJ,CO2,73300.0,kg/TJ,5539276.318622199,kg -f1cefee3-5a1c-324b-8ebf-10361e62d339,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2018,naphtha combustion consumption by to the public,75.56993613399999,TJ,CH4,3.0,kg/TJ,226.70980840199996,kg -f0986125-783d-350d-abe0-40aa5437731d,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2018,naphtha combustion consumption by to the public,75.56993613399999,TJ,N2O,0.6,kg/TJ,45.34196168039999,kg -58707a71-7bda-3f79-99a0-369ef6a18321,SESCO,II.1.1,Tucuman,AR-T,annual,2018,naphtha combustion consumption by to the public,164.89990474649997,TJ,CO2,73300.0,kg/TJ,12087163.017918447,kg -373cbefe-cbd8-3e43-975d-5f757b495f3f,SESCO,II.1.1,Tucuman,AR-T,annual,2018,naphtha combustion consumption by to the public,164.89990474649997,TJ,CH4,3.0,kg/TJ,494.69971423949994,kg -4b37570c-e138-3e3d-8e01-808e27220fe5,SESCO,II.1.1,Tucuman,AR-T,annual,2018,naphtha combustion consumption by to the public,164.89990474649997,TJ,N2O,0.6,kg/TJ,98.93994284789999,kg -46aa9e2a-2c1a-3a73-b961-c7daa01a8f59,SESCO,II.5.1,Buenos Aires,AR-B,annual,2018,naphtha combustion consumption by agriculture machines,0.39644605,TJ,CO2,73300.0,kg/TJ,29059.495465,kg -8c08bc1f-43a5-3cf4-a6ba-d7be48c6c729,SESCO,II.5.1,Buenos Aires,AR-B,annual,2018,naphtha combustion consumption by agriculture machines,0.39644605,TJ,CH4,3.0,kg/TJ,1.18933815,kg -128bb160-7bbb-3aa1-bfa0-586a7c67e14b,SESCO,II.5.1,Buenos Aires,AR-B,annual,2018,naphtha combustion consumption by agriculture machines,0.39644605,TJ,N2O,0.6,kg/TJ,0.23786763,kg -d485574e-769b-343e-b8cd-d201b4d15e8e,SESCO,II.5.1,Buenos Aires,AR-B,annual,2018,naphtha combustion consumption by agriculture machines,0.36595019999999995,TJ,CO2,73300.0,kg/TJ,26824.149659999995,kg -65bcfe1b-7a3b-38d1-9d55-97b9e9cf71f1,SESCO,II.5.1,Buenos Aires,AR-B,annual,2018,naphtha combustion consumption by agriculture machines,0.36595019999999995,TJ,CH4,3.0,kg/TJ,1.0978506,kg -d3d93b5d-b0cc-3163-b804-322809a3d14c,SESCO,II.5.1,Buenos Aires,AR-B,annual,2018,naphtha combustion consumption by agriculture machines,0.36595019999999995,TJ,N2O,0.6,kg/TJ,0.21957011999999995,kg -645186dd-f8a0-3bbe-80da-661afee9554b,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,naphtha combustion consumption by to the public,16358.187410949999,TJ,CO2,73300.0,kg/TJ,1199055137.2226348,kg -ef672c01-95e7-32ee-8742-13199a60bf81,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,naphtha combustion consumption by to the public,16358.187410949999,TJ,CH4,3.0,kg/TJ,49074.562232849996,kg -69df56e8-a89f-3f85-bf96-6640358d18a5,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,naphtha combustion consumption by to the public,16358.187410949999,TJ,N2O,0.6,kg/TJ,9814.912446569999,kg -7f13de32-cd7e-30dd-990d-308b068ecda5,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,naphtha combustion consumption by to the public,4699.56296425,TJ,CO2,73300.0,kg/TJ,344477965.279525,kg -12cc32d9-0fa1-3f0a-8a52-4b38dc55d6bb,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,naphtha combustion consumption by to the public,4699.56296425,TJ,CH4,3.0,kg/TJ,14098.68889275,kg -11bca2b4-06ea-3344-b25d-40f792dd053e,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,naphtha combustion consumption by to the public,4699.56296425,TJ,N2O,0.6,kg/TJ,2819.73777855,kg -2b2868ba-6307-3e39-9d15-0a026724b1eb,SESCO,II.1.1,Catamarca,AR-K,annual,2018,naphtha combustion consumption by to the public,40.22402615,TJ,CO2,73300.0,kg/TJ,2948421.116795,kg -018c2d65-87b6-3973-af45-78065ed00bba,SESCO,II.1.1,Catamarca,AR-K,annual,2018,naphtha combustion consumption by to the public,40.22402615,TJ,CH4,3.0,kg/TJ,120.67207845,kg -dc219630-b529-32f9-b16b-8c6049546374,SESCO,II.1.1,Catamarca,AR-K,annual,2018,naphtha combustion consumption by to the public,40.22402615,TJ,N2O,0.6,kg/TJ,24.13441569,kg -d6ae14a2-5d87-34fa-9fb9-af16948165bb,SESCO,II.1.1,Chaco,AR-H,annual,2018,naphtha combustion consumption by to the public,918.9314480499999,TJ,CO2,73300.0,kg/TJ,67357675.14206499,kg -7912bf1d-f424-35f4-a23a-3b6a7b7633dc,SESCO,II.1.1,Chaco,AR-H,annual,2018,naphtha combustion consumption by to the public,918.9314480499999,TJ,CH4,3.0,kg/TJ,2756.7943441499997,kg -dcd0b0db-4178-3cc4-a2a8-82541a01fbd7,SESCO,II.1.1,Chaco,AR-H,annual,2018,naphtha combustion consumption by to the public,918.9314480499999,TJ,N2O,0.6,kg/TJ,551.3588688299999,kg -36a1c0a5-4f4c-37bb-9675-00ecd0cfbc70,SESCO,II.1.1,Corrientes,AR-W,annual,2018,naphtha combustion consumption by to the public,837.9344704499999,TJ,CO2,73300.0,kg/TJ,61420596.683984995,kg -5f723f2b-32b8-3fe3-b0f8-a58c0579e603,SESCO,II.1.1,Corrientes,AR-W,annual,2018,naphtha combustion consumption by to the public,837.9344704499999,TJ,CH4,3.0,kg/TJ,2513.80341135,kg -95c3009c-ff9c-3c0d-8d52-e497339aacbd,SESCO,II.1.1,Corrientes,AR-W,annual,2018,naphtha combustion consumption by to the public,837.9344704499999,TJ,N2O,0.6,kg/TJ,502.76068226999996,kg -e4020223-9ddb-3ede-8f0a-6a1811c730cc,SESCO,II.1.1,Córdoba,AR-X,annual,2018,naphtha combustion consumption by to the public,3987.2713957999995,TJ,CO2,73300.0,kg/TJ,292266993.31214,kg -2a6e91f0-bf5c-3171-9d8b-03b78a06eadd,SESCO,II.1.1,Córdoba,AR-X,annual,2018,naphtha combustion consumption by to the public,3987.2713957999995,TJ,CH4,3.0,kg/TJ,11961.8141874,kg -81cd3bff-1a00-3367-892a-396dc0225d18,SESCO,II.1.1,Córdoba,AR-X,annual,2018,naphtha combustion consumption by to the public,3987.2713957999995,TJ,N2O,0.6,kg/TJ,2392.3628374799996,kg -0da45af2-409a-3450-b676-b8c430c58891,SESCO,II.1.1,Entre Rios,AR-E,annual,2018,naphtha combustion consumption by to the public,914.4485580999999,TJ,CO2,73300.0,kg/TJ,67029079.30872999,kg -f8781628-de43-3699-915a-85927ea0f8c3,SESCO,II.1.1,Entre Rios,AR-E,annual,2018,naphtha combustion consumption by to the public,914.4485580999999,TJ,CH4,3.0,kg/TJ,2743.3456742999997,kg -62d5345d-4f51-3ff0-a609-c3bdab231fb8,SESCO,II.1.1,Entre Rios,AR-E,annual,2018,naphtha combustion consumption by to the public,914.4485580999999,TJ,N2O,0.6,kg/TJ,548.6691348599999,kg -bf747678-c7bf-3a3b-a78d-604f1cc191f2,SESCO,II.1.1,Formosa,AR-P,annual,2018,naphtha combustion consumption by to the public,373.9401127,TJ,CO2,73300.0,kg/TJ,27409810.26091,kg -0b73ce26-0c78-3e38-b902-4008167abd68,SESCO,II.1.1,Formosa,AR-P,annual,2018,naphtha combustion consumption by to the public,373.9401127,TJ,CH4,3.0,kg/TJ,1121.8203380999998,kg -ef5ea1cc-0d5b-30da-aad0-a47712e7c69a,SESCO,II.1.1,Formosa,AR-P,annual,2018,naphtha combustion consumption by to the public,373.9401127,TJ,N2O,0.6,kg/TJ,224.36406762,kg -885b9c38-84b2-3199-bb28-b4f5302454ea,SESCO,II.1.1,Jujuy,AR-Y,annual,2018,naphtha combustion consumption by to the public,180.23047349999996,TJ,CO2,73300.0,kg/TJ,13210893.707549997,kg -95744fc9-d068-38d2-9c8c-ca050918b0b9,SESCO,II.1.1,Jujuy,AR-Y,annual,2018,naphtha combustion consumption by to the public,180.23047349999996,TJ,CH4,3.0,kg/TJ,540.6914204999998,kg -05eebf95-70e3-3843-ad27-d7db249725c6,SESCO,II.1.1,Jujuy,AR-Y,annual,2018,naphtha combustion consumption by to the public,180.23047349999996,TJ,N2O,0.6,kg/TJ,108.13828409999998,kg -f82d305e-2d42-3d1a-8088-b77c2457481b,SESCO,II.1.1,La Pampa,AR-L,annual,2018,naphtha combustion consumption by to the public,333.16716125,TJ,CO2,73300.0,kg/TJ,24421152.919625,kg -8d417b95-1408-3da7-9fcb-bc4ce4e3c8cc,SESCO,II.1.1,La Pampa,AR-L,annual,2018,naphtha combustion consumption by to the public,333.16716125,TJ,CH4,3.0,kg/TJ,999.50148375,kg -9d2d45c4-dd93-3ced-aae4-e7d4526968fe,SESCO,II.1.1,La Pampa,AR-L,annual,2018,naphtha combustion consumption by to the public,333.16716125,TJ,N2O,0.6,kg/TJ,199.90029675,kg -7276acfa-866d-32ec-99d2-196c6d358663,SESCO,II.1.1,La Rioja,AR-F,annual,2018,naphtha combustion consumption by to the public,277.90868105,TJ,CO2,73300.0,kg/TJ,20370706.320965,kg -39fca53f-1c80-3439-9f30-797c7e56e298,SESCO,II.1.1,La Rioja,AR-F,annual,2018,naphtha combustion consumption by to the public,277.90868105,TJ,CH4,3.0,kg/TJ,833.7260431499999,kg -67088e72-b670-39cc-bb5d-6a20bbce6e89,SESCO,II.1.1,La Rioja,AR-F,annual,2018,naphtha combustion consumption by to the public,277.90868105,TJ,N2O,0.6,kg/TJ,166.74520862999998,kg -d307c764-0adb-36f6-801f-d898eecfd4e5,SESCO,II.1.1,Mendoza,AR-M,annual,2018,naphtha combustion consumption by to the public,1271.95140765,TJ,CO2,73300.0,kg/TJ,93234038.18074499,kg -869d63a8-4dda-3568-be42-14fa1758ad1b,SESCO,II.1.1,Mendoza,AR-M,annual,2018,naphtha combustion consumption by to the public,1271.95140765,TJ,CH4,3.0,kg/TJ,3815.85422295,kg -af8cce02-3130-315b-92d6-a77bd0f707b2,SESCO,II.1.1,Mendoza,AR-M,annual,2018,naphtha combustion consumption by to the public,1271.95140765,TJ,N2O,0.6,kg/TJ,763.17084459,kg -f6cec8be-8885-3497-988e-5c973e7ffc40,SESCO,II.1.1,Misiones,AR-N,annual,2018,naphtha combustion consumption by to the public,1186.5325318,TJ,CO2,73300.0,kg/TJ,86972834.58094001,kg -41f4aa50-bf58-3c60-a9de-29ffb40a6ccb,SESCO,II.1.1,Misiones,AR-N,annual,2018,naphtha combustion consumption by to the public,1186.5325318,TJ,CH4,3.0,kg/TJ,3559.5975954,kg -5d13662a-70ee-3ac6-936e-e701a868f3ea,SESCO,II.1.1,Misiones,AR-N,annual,2018,naphtha combustion consumption by to the public,1186.5325318,TJ,N2O,0.6,kg/TJ,711.91951908,kg -774ab3c5-8580-3c77-a5f1-ea3c9d954116,SESCO,II.1.1,Neuquén,AR-Q,annual,2018,naphtha combustion consumption by to the public,507.2374730499999,TJ,CO2,73300.0,kg/TJ,37180506.77456499,kg -450a5303-2497-36a1-ac81-7cd498ad2e95,SESCO,II.1.1,Neuquén,AR-Q,annual,2018,naphtha combustion consumption by to the public,507.2374730499999,TJ,CH4,3.0,kg/TJ,1521.7124191499997,kg -14547548-9576-359e-808b-47fb77f02141,SESCO,II.1.1,Neuquén,AR-Q,annual,2018,naphtha combustion consumption by to the public,507.2374730499999,TJ,N2O,0.6,kg/TJ,304.34248382999994,kg -5298ea76-8b38-3c9f-88d3-0cd96acea75c,SESCO,II.1.1,Rio Negro,AR-R,annual,2018,naphtha combustion consumption by to the public,163.7627145,TJ,CO2,73300.0,kg/TJ,12003806.972849999,kg -85726a22-b263-3230-86de-4bc62f34e2f7,SESCO,II.1.1,Rio Negro,AR-R,annual,2018,naphtha combustion consumption by to the public,163.7627145,TJ,CH4,3.0,kg/TJ,491.28814349999993,kg -2c9abf44-86a3-3a66-b11a-b212a9127477,SESCO,II.1.1,Rio Negro,AR-R,annual,2018,naphtha combustion consumption by to the public,163.7627145,TJ,N2O,0.6,kg/TJ,98.25762869999998,kg -cef0d0a2-0022-3ea0-8569-31a3f6c5c19b,SESCO,II.1.1,Salta,AR-A,annual,2018,naphtha combustion consumption by to the public,226.18771944999997,TJ,CO2,73300.0,kg/TJ,16579559.835684998,kg -ce07051d-7dd4-3bff-8a80-69b09172b4e9,SESCO,II.1.1,Salta,AR-A,annual,2018,naphtha combustion consumption by to the public,226.18771944999997,TJ,CH4,3.0,kg/TJ,678.5631583499999,kg -1c1d3fbf-33b1-30be-a1b5-0d0b12fbfe17,SESCO,II.1.1,Salta,AR-A,annual,2018,naphtha combustion consumption by to the public,226.18771944999997,TJ,N2O,0.6,kg/TJ,135.71263166999998,kg -c21c9cee-edc5-3fce-9521-48efdd213e98,SESCO,II.1.1,San Juan,AR-J,annual,2018,naphtha combustion consumption by to the public,237.62366319999998,TJ,CO2,73300.0,kg/TJ,17417814.51256,kg -c6d908de-0f79-3a3f-951a-d7791c21418f,SESCO,II.1.1,San Juan,AR-J,annual,2018,naphtha combustion consumption by to the public,237.62366319999998,TJ,CH4,3.0,kg/TJ,712.8709895999999,kg -68582dc3-42c7-38f5-a8ac-c12d13ba8427,SESCO,II.1.1,San Juan,AR-J,annual,2018,naphtha combustion consumption by to the public,237.62366319999998,TJ,N2O,0.6,kg/TJ,142.57419792,kg -2315f554-4348-3823-ad74-fe228dee0c62,SESCO,II.1.1,San Luis,AR-D,annual,2018,naphtha combustion consumption by to the public,122.8372838,TJ,CO2,73300.0,kg/TJ,9003972.90254,kg -297116ad-3806-38b3-801c-582de05162bd,SESCO,II.1.1,San Luis,AR-D,annual,2018,naphtha combustion consumption by to the public,122.8372838,TJ,CH4,3.0,kg/TJ,368.51185139999995,kg -a5130908-9655-3560-bb99-0fcc04695f87,SESCO,II.1.1,San Luis,AR-D,annual,2018,naphtha combustion consumption by to the public,122.8372838,TJ,N2O,0.6,kg/TJ,73.70237028,kg -11ea5764-c336-3fbf-bfb0-7d17bf24e41e,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,naphtha combustion consumption by to the public,3569.9661843999993,TJ,CO2,73300.0,kg/TJ,261678521.31651995,kg -93e4b1e3-a382-37ca-b52f-e2ab892a049f,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,naphtha combustion consumption by to the public,3569.9661843999993,TJ,CH4,3.0,kg/TJ,10709.898553199997,kg -33f2787e-93a9-3bd3-8a1f-e91f1eb33a66,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,naphtha combustion consumption by to the public,3569.9661843999993,TJ,N2O,0.6,kg/TJ,2141.9797106399997,kg -07e75dae-c2b1-3224-aae1-ab389ecb6a33,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2018,naphtha combustion consumption by to the public,356.0085529,TJ,CO2,73300.0,kg/TJ,26095426.92757,kg -2ed4db29-f7a2-306b-8a61-ca7cbbd06924,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2018,naphtha combustion consumption by to the public,356.0085529,TJ,CH4,3.0,kg/TJ,1068.0256587,kg -6adabf07-b160-3d97-9c8b-6a4216c9cf03,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2018,naphtha combustion consumption by to the public,356.0085529,TJ,N2O,0.6,kg/TJ,213.60513174,kg -00be2480-2b67-3123-966e-a943dfffd93c,SESCO,II.1.1,Tucuman,AR-T,annual,2018,naphtha combustion consumption by to the public,872.5472602,TJ,CO2,73300.0,kg/TJ,63957714.17266,kg -bdf2b4ce-f595-389a-ae85-0f21cee7073f,SESCO,II.1.1,Tucuman,AR-T,annual,2018,naphtha combustion consumption by to the public,872.5472602,TJ,CH4,3.0,kg/TJ,2617.6417806,kg -b7b4edf0-dcda-31ae-ab75-3168fd9fb58c,SESCO,II.1.1,Tucuman,AR-T,annual,2018,naphtha combustion consumption by to the public,872.5472602,TJ,N2O,0.6,kg/TJ,523.52835612,kg -771464be-5087-3065-9682-02d6bd7a1709,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,naphtha combustion consumption by to the public,8662.041234,TJ,CO2,73300.0,kg/TJ,634927622.4522,kg -204cd415-bdb9-3a56-a485-95945c851dca,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,naphtha combustion consumption by to the public,8662.041234,TJ,CH4,3.0,kg/TJ,25986.123702,kg -1e9f0788-bc32-3393-beac-07d93b079885,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,naphtha combustion consumption by to the public,8662.041234,TJ,N2O,0.6,kg/TJ,5197.2247404,kg -be43df66-cce1-3d12-bc70-127675fd459f,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,naphtha combustion consumption by to the public,3458.3818692499995,TJ,CO2,73300.0,kg/TJ,253499391.01602495,kg -50561c21-1a5e-349a-a32e-acbc46de6bb6,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,naphtha combustion consumption by to the public,3458.3818692499995,TJ,CH4,3.0,kg/TJ,10375.145607749999,kg -3783e05c-08b0-3bab-bae5-f6f2ab384cfc,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,naphtha combustion consumption by to the public,3458.3818692499995,TJ,N2O,0.6,kg/TJ,2075.0291215499997,kg -e866c71b-cc3c-3822-b702-f8b1ab4a2379,SESCO,II.1.1,Catamarca,AR-K,annual,2018,naphtha combustion consumption by to the public,36.838986799999994,TJ,CO2,73300.0,kg/TJ,2700297.7324399995,kg -a02092b8-485f-3078-81a5-e29e6589f401,SESCO,II.1.1,Catamarca,AR-K,annual,2018,naphtha combustion consumption by to the public,36.838986799999994,TJ,CH4,3.0,kg/TJ,110.51696039999999,kg -28c623ad-5f58-3351-a927-dc9f58582257,SESCO,II.1.1,Catamarca,AR-K,annual,2018,naphtha combustion consumption by to the public,36.838986799999994,TJ,N2O,0.6,kg/TJ,22.103392079999995,kg -d66d08d1-c68a-3ca8-91f1-f1c85d616ab9,SESCO,II.1.1,Chaco,AR-H,annual,2018,naphtha combustion consumption by to the public,361.58929344999996,TJ,CO2,73300.0,kg/TJ,26504495.209884997,kg -aefc9e0b-3fbe-322a-89d0-eeffb2a6ea63,SESCO,II.1.1,Chaco,AR-H,annual,2018,naphtha combustion consumption by to the public,361.58929344999996,TJ,CH4,3.0,kg/TJ,1084.7678803499998,kg -f715e2ce-5070-3ab7-86c4-b1805e678481,SESCO,II.1.1,Chaco,AR-H,annual,2018,naphtha combustion consumption by to the public,361.58929344999996,TJ,N2O,0.6,kg/TJ,216.95357606999997,kg -ca0f29f2-25e5-36f3-b976-893216f1043b,SESCO,II.1.1,Corrientes,AR-W,annual,2018,naphtha combustion consumption by to the public,359.97301339999996,TJ,CO2,73300.0,kg/TJ,26386021.882219996,kg -2262d9be-1641-36f6-98db-917d3ed8608a,SESCO,II.1.1,Corrientes,AR-W,annual,2018,naphtha combustion consumption by to the public,359.97301339999996,TJ,CH4,3.0,kg/TJ,1079.9190402,kg -37e8df2b-065e-3c6b-b040-205381999fe8,SESCO,II.1.1,Corrientes,AR-W,annual,2018,naphtha combustion consumption by to the public,359.97301339999996,TJ,N2O,0.6,kg/TJ,215.98380803999996,kg -f1fecc1a-ef42-3b1c-a24e-758af9c9769e,SESCO,II.1.1,Córdoba,AR-X,annual,2018,naphtha combustion consumption by to the public,1929.2284627,TJ,CO2,73300.0,kg/TJ,141412446.31590998,kg -b14c2f15-7881-3a11-b836-95b81b9d1fbc,SESCO,II.1.1,Córdoba,AR-X,annual,2018,naphtha combustion consumption by to the public,1929.2284627,TJ,CH4,3.0,kg/TJ,5787.6853881,kg -5cd3bafd-57cc-3dfd-8c52-2c1595599720,SESCO,II.1.1,Córdoba,AR-X,annual,2018,naphtha combustion consumption by to the public,1929.2284627,TJ,N2O,0.6,kg/TJ,1157.53707762,kg -f99a6bb1-5d1f-3130-b1d0-ed111f298181,SESCO,II.1.1,Entre Rios,AR-E,annual,2018,naphtha combustion consumption by to the public,373.81812929999995,TJ,CO2,73300.0,kg/TJ,27400868.877689995,kg -ce5c0913-0420-3e08-9378-aa3d82a5b73c,SESCO,II.1.1,Entre Rios,AR-E,annual,2018,naphtha combustion consumption by to the public,373.81812929999995,TJ,CH4,3.0,kg/TJ,1121.4543878999998,kg -49a048fa-9705-31cf-90b4-ae2bf18f8969,SESCO,II.1.1,Entre Rios,AR-E,annual,2018,naphtha combustion consumption by to the public,373.81812929999995,TJ,N2O,0.6,kg/TJ,224.29087757999997,kg -0c2abe31-60df-3b99-93d1-9779b996d12e,SESCO,II.1.1,Formosa,AR-P,annual,2018,naphtha combustion consumption by to the public,175.046179,TJ,CO2,73300.0,kg/TJ,12830884.920699999,kg -3b0b97b2-0e4c-37a1-a068-e6922041f804,SESCO,II.1.1,Formosa,AR-P,annual,2018,naphtha combustion consumption by to the public,175.046179,TJ,CH4,3.0,kg/TJ,525.138537,kg -0d8deb73-cead-327f-a920-e4efcdf15b74,SESCO,II.1.1,Formosa,AR-P,annual,2018,naphtha combustion consumption by to the public,175.046179,TJ,N2O,0.6,kg/TJ,105.0277074,kg -fd456130-d693-343c-8fa7-205f04de2b6a,SESCO,II.1.1,Jujuy,AR-Y,annual,2018,naphtha combustion consumption by to the public,41.718322799999996,TJ,CO2,73300.0,kg/TJ,3057953.0612399997,kg -8db569bc-266f-3cb8-9cf3-fccc77377e7f,SESCO,II.1.1,Jujuy,AR-Y,annual,2018,naphtha combustion consumption by to the public,41.718322799999996,TJ,CH4,3.0,kg/TJ,125.15496839999999,kg -dc3f51e3-3a41-39e4-8900-fd00307c54ba,SESCO,II.1.1,Jujuy,AR-Y,annual,2018,naphtha combustion consumption by to the public,41.718322799999996,TJ,N2O,0.6,kg/TJ,25.030993679999998,kg -b90fb275-a73a-38e8-bb58-a8c44c974b69,SESCO,II.1.1,La Pampa,AR-L,annual,2018,naphtha combustion consumption by to the public,204.41368254999998,TJ,CO2,73300.0,kg/TJ,14983522.930914998,kg -7d2b4c4e-8bb0-37fa-94d6-55b87b53d1ed,SESCO,II.1.1,La Pampa,AR-L,annual,2018,naphtha combustion consumption by to the public,204.41368254999998,TJ,CH4,3.0,kg/TJ,613.2410476499999,kg -a3777ff2-848e-3aad-8442-520d77e41f3e,SESCO,II.1.1,La Pampa,AR-L,annual,2018,naphtha combustion consumption by to the public,204.41368254999998,TJ,N2O,0.6,kg/TJ,122.64820952999997,kg -66c916b8-4797-326f-93f2-63e386571f16,SESCO,II.1.1,La Rioja,AR-F,annual,2018,naphtha combustion consumption by to the public,98.83704984999999,TJ,CO2,73300.0,kg/TJ,7244755.754004999,kg -6cb308b0-7033-3673-88b8-354b39d91a15,SESCO,II.1.1,La Rioja,AR-F,annual,2018,naphtha combustion consumption by to the public,98.83704984999999,TJ,CH4,3.0,kg/TJ,296.51114954999997,kg -40b68f96-7f09-3523-a3ed-48b3f1410e3d,SESCO,II.1.1,La Rioja,AR-F,annual,2018,naphtha combustion consumption by to the public,98.83704984999999,TJ,N2O,0.6,kg/TJ,59.30222990999999,kg -64ff9531-b1c3-3623-9812-4718de62454d,SESCO,II.1.1,Mendoza,AR-M,annual,2018,naphtha combustion consumption by to the public,583.0196602999999,TJ,CO2,73300.0,kg/TJ,42735341.099989995,kg -77419740-7363-35e3-aa11-228b95a5087c,SESCO,II.1.1,Mendoza,AR-M,annual,2018,naphtha combustion consumption by to the public,583.0196602999999,TJ,CH4,3.0,kg/TJ,1749.0589808999998,kg -b4747fd8-1bc4-3920-acdd-35688a6bc3db,SESCO,II.1.1,Mendoza,AR-M,annual,2018,naphtha combustion consumption by to the public,583.0196602999999,TJ,N2O,0.6,kg/TJ,349.81179617999993,kg -21487143-0e3b-3477-b68a-a10ff1f020a9,SESCO,II.1.1,Misiones,AR-N,annual,2018,naphtha combustion consumption by to the public,294.80338194999996,TJ,CO2,73300.0,kg/TJ,21609087.896934997,kg -cd4cce4f-ae4d-3dc9-bb67-77e21f2c918e,SESCO,II.1.1,Misiones,AR-N,annual,2018,naphtha combustion consumption by to the public,294.80338194999996,TJ,CH4,3.0,kg/TJ,884.4101458499999,kg -2ce97f70-0fe7-39fa-9c6d-fa526f4c0fa1,SESCO,II.1.1,Misiones,AR-N,annual,2018,naphtha combustion consumption by to the public,294.80338194999996,TJ,N2O,0.6,kg/TJ,176.88202916999998,kg -3fd09f1e-d61b-318b-bbea-7bd663c6b318,SESCO,II.1.1,Neuquén,AR-Q,annual,2018,naphtha combustion consumption by to the public,369.88416464999995,TJ,CO2,73300.0,kg/TJ,27112509.268844996,kg -130399d1-c410-3a3f-b276-5eb167263c2b,SESCO,II.1.1,Neuquén,AR-Q,annual,2018,naphtha combustion consumption by to the public,369.88416464999995,TJ,CH4,3.0,kg/TJ,1109.6524939499998,kg -f60b0899-6917-377a-a5ac-32e74ea064b7,SESCO,II.1.1,Neuquén,AR-Q,annual,2018,naphtha combustion consumption by to the public,369.88416464999995,TJ,N2O,0.6,kg/TJ,221.93049878999997,kg -321fe703-c775-3358-8509-6b66703eb6db,SESCO,II.1.1,Rio Negro,AR-R,annual,2018,naphtha combustion consumption by to the public,88.49895669999998,TJ,CO2,73300.0,kg/TJ,6486973.526109998,kg -0ec185b9-5095-31e6-b5fb-379d3aa4f906,SESCO,II.1.1,Rio Negro,AR-R,annual,2018,naphtha combustion consumption by to the public,88.49895669999998,TJ,CH4,3.0,kg/TJ,265.4968700999999,kg -b1c9c6e9-3b90-3094-a015-e525ddb662d7,SESCO,II.1.1,Rio Negro,AR-R,annual,2018,naphtha combustion consumption by to the public,88.49895669999998,TJ,N2O,0.6,kg/TJ,53.099374019999985,kg -ae6131b5-343b-3051-9b01-0cc1ca7bdf3b,SESCO,II.1.1,Salta,AR-A,annual,2018,naphtha combustion consumption by to the public,117.8359644,TJ,CO2,73300.0,kg/TJ,8637376.19052,kg -2e5ed7f2-84dc-3c74-92d8-24dbfdee0ca3,SESCO,II.1.1,Salta,AR-A,annual,2018,naphtha combustion consumption by to the public,117.8359644,TJ,CH4,3.0,kg/TJ,353.5078932,kg -4b2ab426-c439-3b5f-b280-bed463a5bf57,SESCO,II.1.1,Salta,AR-A,annual,2018,naphtha combustion consumption by to the public,117.8359644,TJ,N2O,0.6,kg/TJ,70.70157864,kg -b684e27e-36ac-31d6-9949-896b0be12b3a,SESCO,II.1.1,San Juan,AR-J,annual,2018,naphtha combustion consumption by to the public,49.189806049999994,TJ,CO2,73300.0,kg/TJ,3605612.7834649994,kg -3f3dfb60-54b0-326e-8c51-cabf29807c4e,SESCO,II.1.1,San Juan,AR-J,annual,2018,naphtha combustion consumption by to the public,49.189806049999994,TJ,CH4,3.0,kg/TJ,147.56941815,kg -1484f514-c96d-3801-a4e1-460fc9312676,SESCO,II.1.1,San Juan,AR-J,annual,2018,naphtha combustion consumption by to the public,49.189806049999994,TJ,N2O,0.6,kg/TJ,29.513883629999995,kg -3c5a53f3-64bd-3ed5-a807-266a46e3e395,SESCO,II.1.1,San Luis,AR-D,annual,2018,naphtha combustion consumption by to the public,61.754096249999996,TJ,CO2,73300.0,kg/TJ,4526575.255125,kg -e3632dc2-a2d8-3534-801d-ab1a0200f829,SESCO,II.1.1,San Luis,AR-D,annual,2018,naphtha combustion consumption by to the public,61.754096249999996,TJ,CH4,3.0,kg/TJ,185.26228874999998,kg -3535e3c3-1ccd-3102-95e0-7e47f91b7ccc,SESCO,II.1.1,San Luis,AR-D,annual,2018,naphtha combustion consumption by to the public,61.754096249999996,TJ,N2O,0.6,kg/TJ,37.052457749999995,kg -a5d296b8-34f6-39ea-8aa2-58cbf80e72db,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,naphtha combustion consumption by to the public,1827.9822406999997,TJ,CO2,73300.0,kg/TJ,133991098.24330997,kg -8e8e0c91-aa64-36f7-bc93-7ad6ec9d7dd6,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,naphtha combustion consumption by to the public,1827.9822406999997,TJ,CH4,3.0,kg/TJ,5483.9467220999995,kg -aef95b1c-3286-39af-a3f8-1e86de9c4e30,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,naphtha combustion consumption by to the public,1827.9822406999997,TJ,N2O,0.6,kg/TJ,1096.7893444199997,kg -93eebb7c-258e-3541-84cb-9a8c5d568ff9,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2018,naphtha combustion consumption by to the public,169.55692599999998,TJ,CO2,73300.0,kg/TJ,12428522.675799998,kg -2ebbc3e0-e558-370a-8e06-877d4301c969,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2018,naphtha combustion consumption by to the public,169.55692599999998,TJ,CH4,3.0,kg/TJ,508.6707779999999,kg -60ce6cb8-022b-396a-a5ee-086c922fb071,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2018,naphtha combustion consumption by to the public,169.55692599999998,TJ,N2O,0.6,kg/TJ,101.73415559999998,kg -6f21a3f0-5174-30c8-a9b4-e0cb2c75725f,SESCO,II.1.1,Tucuman,AR-T,annual,2018,naphtha combustion consumption by to the public,291.54032599999994,TJ,CO2,73300.0,kg/TJ,21369905.895799994,kg -5c0cb7b0-8d17-34d2-ad74-607b53a31982,SESCO,II.1.1,Tucuman,AR-T,annual,2018,naphtha combustion consumption by to the public,291.54032599999994,TJ,CH4,3.0,kg/TJ,874.6209779999998,kg -b3194952-dacd-3828-9ec1-979479e79933,SESCO,II.1.1,Tucuman,AR-T,annual,2018,naphtha combustion consumption by to the public,291.54032599999994,TJ,N2O,0.6,kg/TJ,174.92419559999996,kg -4d7d8614-9f26-3477-ad49-e939c1c1253a,SESCO,II.5.1,Buenos Aires,AR-B,annual,2018,naphtha combustion consumption by agriculture machines,51.45470233365,TJ,CO2,73300.0,kg/TJ,3771629.6810565447,kg -e63a3a89-8c87-35a2-bcb8-7703711beffb,SESCO,II.5.1,Buenos Aires,AR-B,annual,2018,naphtha combustion consumption by agriculture machines,51.45470233365,TJ,CH4,3.0,kg/TJ,154.36410700094999,kg -9e11cc49-44f0-32f1-bf9c-bfbdaccc18fe,SESCO,II.5.1,Buenos Aires,AR-B,annual,2018,naphtha combustion consumption by agriculture machines,51.45470233365,TJ,N2O,0.6,kg/TJ,30.87282140019,kg -2abe2c58-e72a-3d0e-afdf-76e74a21a6f1,SESCO,II.5.1,Capital Federal,AR-C,annual,2018,naphtha combustion consumption by agriculture machines,9.4121171606,TJ,CO2,73300.0,kg/TJ,689908.1878719799,kg -0d737221-08d6-3038-a55f-c9b277cc4644,SESCO,II.5.1,Capital Federal,AR-C,annual,2018,naphtha combustion consumption by agriculture machines,9.4121171606,TJ,CH4,3.0,kg/TJ,28.2363514818,kg -632fa1c2-c108-35a5-8538-3ee2bd2d8806,SESCO,II.5.1,Capital Federal,AR-C,annual,2018,naphtha combustion consumption by agriculture machines,9.4121171606,TJ,N2O,0.6,kg/TJ,5.647270296359999,kg -ea25d914-1bbb-33a4-a956-0c59933e7535,SESCO,II.5.1,Entre Rios,AR-E,annual,2018,naphtha combustion consumption by agriculture machines,4.7212455135999996,TJ,CO2,73300.0,kg/TJ,346067.29614687996,kg -c3d99f75-33ac-3f8c-ba45-165de7769e11,SESCO,II.5.1,Entre Rios,AR-E,annual,2018,naphtha combustion consumption by agriculture machines,4.7212455135999996,TJ,CH4,3.0,kg/TJ,14.163736540799999,kg -43779b87-d629-3a10-8a97-dad353d7c80e,SESCO,II.5.1,Entre Rios,AR-E,annual,2018,naphtha combustion consumption by agriculture machines,4.7212455135999996,TJ,N2O,0.6,kg/TJ,2.8327473081599996,kg -6b435864-033e-358c-b90d-8abeef0bbd91,SESCO,II.5.1,Santa Fe,AR-S,annual,2018,naphtha combustion consumption by agriculture machines,21.096754567349997,TJ,CO2,73300.0,kg/TJ,1546392.1097867547,kg -ea6ffac7-0d80-30c1-9363-ad8f3fbbce02,SESCO,II.5.1,Santa Fe,AR-S,annual,2018,naphtha combustion consumption by agriculture machines,21.096754567349997,TJ,CH4,3.0,kg/TJ,63.29026370204999,kg -627d2f46-6cd3-3335-aee1-1863f02bd04b,SESCO,II.5.1,Santa Fe,AR-S,annual,2018,naphtha combustion consumption by agriculture machines,21.096754567349997,TJ,N2O,0.6,kg/TJ,12.658052740409998,kg -3e7aa0bc-75f9-31d8-894b-12ac71fc5062,SESCO,II.5.1,Tucuman,AR-T,annual,2018,naphtha combustion consumption by agriculture machines,5.01867153865,TJ,CO2,73300.0,kg/TJ,367868.623783045,kg -304494bf-4d58-35f0-a21f-44613db65f3f,SESCO,II.5.1,Tucuman,AR-T,annual,2018,naphtha combustion consumption by agriculture machines,5.01867153865,TJ,CH4,3.0,kg/TJ,15.056014615949998,kg -3f632ece-e696-353f-b21b-8b020a9bc9d8,SESCO,II.5.1,Tucuman,AR-T,annual,2018,naphtha combustion consumption by agriculture machines,5.01867153865,TJ,N2O,0.6,kg/TJ,3.0112029231899995,kg -2ea022be-deb0-32f8-811a-eac8cdd2b06c,SESCO,II.5.1,Buenos Aires,AR-B,annual,2018,naphtha combustion consumption by agriculture machines,4.917760770999999,TJ,CO2,73300.0,kg/TJ,360471.86451429996,kg -4e268303-ea99-3380-90e3-cd4f06416f6e,SESCO,II.5.1,Buenos Aires,AR-B,annual,2018,naphtha combustion consumption by agriculture machines,4.917760770999999,TJ,CH4,3.0,kg/TJ,14.753282312999998,kg -e6c60b79-d476-3c8d-99ca-03560fd079c0,SESCO,II.5.1,Buenos Aires,AR-B,annual,2018,naphtha combustion consumption by agriculture machines,4.917760770999999,TJ,N2O,0.6,kg/TJ,2.9506564625999996,kg -64791b10-1950-3272-92ba-ae53807e0662,SESCO,II.5.1,Capital Federal,AR-C,annual,2018,naphtha combustion consumption by agriculture machines,0.7318394083,TJ,CO2,73300.0,kg/TJ,53643.82862839,kg -5a73b057-4b5a-3885-9847-b503732f35c6,SESCO,II.5.1,Capital Federal,AR-C,annual,2018,naphtha combustion consumption by agriculture machines,0.7318394083,TJ,CH4,3.0,kg/TJ,2.1955182249000003,kg -00e7cebd-b2ee-389a-8502-3b07185e8751,SESCO,II.5.1,Capital Federal,AR-C,annual,2018,naphtha combustion consumption by agriculture machines,0.7318394083,TJ,N2O,0.6,kg/TJ,0.43910364498000004,kg -21d4aa3c-5790-3752-abf7-0e7d288f3d4f,SESCO,II.5.1,Entre Rios,AR-E,annual,2018,naphtha combustion consumption by agriculture machines,0.46131072295,TJ,CO2,73300.0,kg/TJ,33814.075992235,kg -d55b82a6-c1c8-37cf-a8c7-1cd8af6dd4a2,SESCO,II.5.1,Entre Rios,AR-E,annual,2018,naphtha combustion consumption by agriculture machines,0.46131072295,TJ,CH4,3.0,kg/TJ,1.38393216885,kg -f5386d8e-43c7-3782-879d-c97ed2c1ee3f,SESCO,II.5.1,Entre Rios,AR-E,annual,2018,naphtha combustion consumption by agriculture machines,0.46131072295,TJ,N2O,0.6,kg/TJ,0.27678643376999995,kg -ad5f766d-0d9b-32cc-8d60-5dddf8d01ab0,SESCO,II.5.1,Santa Fe,AR-S,annual,2018,naphtha combustion consumption by agriculture machines,1.2163574731,TJ,CO2,73300.0,kg/TJ,89159.00277823,kg -136d21e1-ea96-3399-9dff-857e77e51b45,SESCO,II.5.1,Santa Fe,AR-S,annual,2018,naphtha combustion consumption by agriculture machines,1.2163574731,TJ,CH4,3.0,kg/TJ,3.6490724193,kg -d312823e-08e2-3428-b454-179c702081a1,SESCO,II.5.1,Santa Fe,AR-S,annual,2018,naphtha combustion consumption by agriculture machines,1.2163574731,TJ,N2O,0.6,kg/TJ,0.7298144838599999,kg -2b6608dc-4c4f-3e24-8241-6faac096d57e,SESCO,II.5.1,Tucuman,AR-T,annual,2018,naphtha combustion consumption by agriculture machines,0.32316452244999994,TJ,CO2,73300.0,kg/TJ,23687.959495584997,kg -dcc613e6-5f2a-3121-8303-98e3f3cfa9e8,SESCO,II.5.1,Tucuman,AR-T,annual,2018,naphtha combustion consumption by agriculture machines,0.32316452244999994,TJ,CH4,3.0,kg/TJ,0.9694935673499998,kg -cbe0e4bf-fdea-382b-b247-d648e3b742fc,SESCO,II.5.1,Tucuman,AR-T,annual,2018,naphtha combustion consumption by agriculture machines,0.32316452244999994,TJ,N2O,0.6,kg/TJ,0.19389871346999996,kg -9c5037d7-ad6c-346d-824d-5df510568822,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,naphtha combustion consumption by to the public,3417.77698042935,TJ,CO2,73300.0,kg/TJ,250523052.66547135,kg -4cbf9f7f-8894-3b23-b7d9-df0718420ff8,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,naphtha combustion consumption by to the public,3417.77698042935,TJ,CH4,3.0,kg/TJ,10253.33094128805,kg -f03a7959-2528-3390-8cfd-c293a7a97553,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,naphtha combustion consumption by to the public,3417.77698042935,TJ,N2O,0.6,kg/TJ,2050.66618825761,kg -0989f06d-98e1-32ff-8fa1-7d4ed8591b36,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,naphtha combustion consumption by to the public,166.34970795135,TJ,CO2,73300.0,kg/TJ,12193433.592833957,kg -eb795566-3c2b-3320-8468-e4fc1a4c14e9,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,naphtha combustion consumption by to the public,166.34970795135,TJ,CH4,3.0,kg/TJ,499.04912385405004,kg -fac81a41-1911-3834-90c5-418aa13b4a6d,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,naphtha combustion consumption by to the public,166.34970795135,TJ,N2O,0.6,kg/TJ,99.80982477081001,kg -b2084fde-1bf6-302a-8369-fd1d15146a03,SESCO,II.1.1,Catamarca,AR-K,annual,2018,naphtha combustion consumption by to the public,12.37091601515,TJ,CO2,73300.0,kg/TJ,906788.143910495,kg -31ba2db6-0a9c-3b1f-bb16-b0c18a79dd13,SESCO,II.1.1,Catamarca,AR-K,annual,2018,naphtha combustion consumption by to the public,12.37091601515,TJ,CH4,3.0,kg/TJ,37.11274804545,kg -3a8b61cc-12b8-3b66-b96f-d91b14547353,SESCO,II.1.1,Catamarca,AR-K,annual,2018,naphtha combustion consumption by to the public,12.37091601515,TJ,N2O,0.6,kg/TJ,7.42254960909,kg -59a25a6c-740f-327f-93b9-4c82c6e551ae,SESCO,II.1.1,Chaco,AR-H,annual,2018,naphtha combustion consumption by to the public,17.715923644649997,TJ,CO2,73300.0,kg/TJ,1298577.203152845,kg -58bd572f-5e93-3a25-b35a-476d162e76f3,SESCO,II.1.1,Chaco,AR-H,annual,2018,naphtha combustion consumption by to the public,17.715923644649997,TJ,CH4,3.0,kg/TJ,53.14777093394999,kg -a889ed9f-33be-3c10-b272-004aa2d5ef22,SESCO,II.1.1,Chaco,AR-H,annual,2018,naphtha combustion consumption by to the public,17.715923644649997,TJ,N2O,0.6,kg/TJ,10.629554186789997,kg -c5872d4f-1cbc-324f-8bb7-58b18d86fcac,SESCO,II.1.1,Chubut,AR-U,annual,2018,naphtha combustion consumption by to the public,87.11749469499998,TJ,CO2,73300.0,kg/TJ,6385712.361143499,kg -3a2be5b2-fd40-3272-a07c-013ad504ea7f,SESCO,II.1.1,Chubut,AR-U,annual,2018,naphtha combustion consumption by to the public,87.11749469499998,TJ,CH4,3.0,kg/TJ,261.3524840849999,kg -fce08e2b-50a6-385d-ae5c-5e4245912727,SESCO,II.1.1,Chubut,AR-U,annual,2018,naphtha combustion consumption by to the public,87.11749469499998,TJ,N2O,0.6,kg/TJ,52.27049681699999,kg -634abe22-fe77-305a-a282-931bce55d43c,SESCO,II.1.1,Corrientes,AR-W,annual,2018,naphtha combustion consumption by to the public,125.5309212388,TJ,CO2,73300.0,kg/TJ,9201416.526804041,kg -836555de-5ea2-3a1b-a0f5-18b3fff1def3,SESCO,II.1.1,Corrientes,AR-W,annual,2018,naphtha combustion consumption by to the public,125.5309212388,TJ,CH4,3.0,kg/TJ,376.5927637164,kg -a19f9b73-9951-351b-9389-fb063ea2087b,SESCO,II.1.1,Corrientes,AR-W,annual,2018,naphtha combustion consumption by to the public,125.5309212388,TJ,N2O,0.6,kg/TJ,75.31855274328,kg -6a48da2c-be7a-301d-87ae-37b1b79b3f2a,SESCO,II.1.1,Córdoba,AR-X,annual,2018,naphtha combustion consumption by to the public,260.27265653234997,TJ,CO2,73300.0,kg/TJ,19077985.723821253,kg -61c4ec58-a095-350e-86a5-56a38313d63b,SESCO,II.1.1,Córdoba,AR-X,annual,2018,naphtha combustion consumption by to the public,260.27265653234997,TJ,CH4,3.0,kg/TJ,780.8179695970499,kg -6aa19ecc-277b-32cb-8c27-630b8f1ca4f3,SESCO,II.1.1,Córdoba,AR-X,annual,2018,naphtha combustion consumption by to the public,260.27265653234997,TJ,N2O,0.6,kg/TJ,156.16359391940998,kg -aecc464e-3419-3ec5-a30f-e9473901681e,SESCO,II.1.1,Entre Rios,AR-E,annual,2018,naphtha combustion consumption by to the public,233.10128112425,TJ,CO2,73300.0,kg/TJ,17086323.906407524,kg -94267b60-c303-3a3a-996d-4d3a685be3c9,SESCO,II.1.1,Entre Rios,AR-E,annual,2018,naphtha combustion consumption by to the public,233.10128112425,TJ,CH4,3.0,kg/TJ,699.30384337275,kg -1d529224-d02e-32f1-b36a-53ae14f1bf5e,SESCO,II.1.1,Entre Rios,AR-E,annual,2018,naphtha combustion consumption by to the public,233.10128112425,TJ,N2O,0.6,kg/TJ,139.86076867455,kg -6df17d7d-3361-3749-8494-c6527c037407,SESCO,II.1.1,Formosa,AR-P,annual,2018,naphtha combustion consumption by to the public,4.478346068349999,TJ,CO2,73300.0,kg/TJ,328262.7668100549,kg -2bdfbe63-b562-3035-8200-657b4437b8f1,SESCO,II.1.1,Formosa,AR-P,annual,2018,naphtha combustion consumption by to the public,4.478346068349999,TJ,CH4,3.0,kg/TJ,13.435038205049995,kg -b8694f25-ae34-3e34-bf46-5a516fae8b6a,SESCO,II.1.1,Formosa,AR-P,annual,2018,naphtha combustion consumption by to the public,4.478346068349999,TJ,N2O,0.6,kg/TJ,2.6870076410099992,kg -ca19364e-deed-30aa-9417-34cf41768c16,SESCO,II.1.1,Jujuy,AR-Y,annual,2018,naphtha combustion consumption by to the public,31.76804537445,TJ,CO2,73300.0,kg/TJ,2328597.725947185,kg -927f048c-737e-3a29-9860-07cf77057025,SESCO,II.1.1,Jujuy,AR-Y,annual,2018,naphtha combustion consumption by to the public,31.76804537445,TJ,CH4,3.0,kg/TJ,95.30413612335,kg -cabb8815-33ab-3fb1-839e-81592c142ba8,SESCO,II.1.1,Jujuy,AR-Y,annual,2018,naphtha combustion consumption by to the public,31.76804537445,TJ,N2O,0.6,kg/TJ,19.06082722467,kg -2e18fb82-9155-3669-8135-4daeafebc8a7,SESCO,II.1.1,La Pampa,AR-L,annual,2018,naphtha combustion consumption by to the public,197.82630448734997,TJ,CO2,73300.0,kg/TJ,14500668.118922753,kg -dcff4a02-7bde-3fe1-b0aa-3e149ca31150,SESCO,II.1.1,La Pampa,AR-L,annual,2018,naphtha combustion consumption by to the public,197.82630448734997,TJ,CH4,3.0,kg/TJ,593.47891346205,kg -dfd80f10-a964-3ade-b6db-a976dfd06b0e,SESCO,II.1.1,La Pampa,AR-L,annual,2018,naphtha combustion consumption by to the public,197.82630448734997,TJ,N2O,0.6,kg/TJ,118.69578269240998,kg -35efd157-2da8-3469-8944-1d4e30c1b2fc,SESCO,II.1.1,Mendoza,AR-M,annual,2018,naphtha combustion consumption by to the public,14.31514843605,TJ,CO2,73300.0,kg/TJ,1049300.380362465,kg -53bfb909-02f1-3b00-b1ed-5ab2a3550832,SESCO,II.1.1,Mendoza,AR-M,annual,2018,naphtha combustion consumption by to the public,14.31514843605,TJ,CH4,3.0,kg/TJ,42.94544530815,kg -cf4f7b46-d8aa-3227-9d15-9f867581f29c,SESCO,II.1.1,Mendoza,AR-M,annual,2018,naphtha combustion consumption by to the public,14.31514843605,TJ,N2O,0.6,kg/TJ,8.58908906163,kg -b72e67ca-7942-3b87-974e-4e32f0e9ad1b,SESCO,II.1.1,Misiones,AR-N,annual,2018,naphtha combustion consumption by to the public,55.134087627849986,TJ,CO2,73300.0,kg/TJ,4041328.623121404,kg -4541ef99-cdbb-3125-8866-f80e375634f9,SESCO,II.1.1,Misiones,AR-N,annual,2018,naphtha combustion consumption by to the public,55.134087627849986,TJ,CH4,3.0,kg/TJ,165.40226288354995,kg -74256098-68b5-36bb-a736-6f65ebe29fb5,SESCO,II.1.1,Misiones,AR-N,annual,2018,naphtha combustion consumption by to the public,55.134087627849986,TJ,N2O,0.6,kg/TJ,33.08045257670999,kg -eb8d5cf6-d8c1-3de1-9a61-4b5fa29e89b0,SESCO,II.1.1,Neuquén,AR-Q,annual,2018,naphtha combustion consumption by to the public,303.6320525084,TJ,CO2,73300.0,kg/TJ,22256229.448865723,kg -1e49f326-2b66-3424-a461-8c8cc74e0ec6,SESCO,II.1.1,Neuquén,AR-Q,annual,2018,naphtha combustion consumption by to the public,303.6320525084,TJ,CH4,3.0,kg/TJ,910.8961575252001,kg -9e80d44e-1552-3bf1-9234-d4e4227a6cc9,SESCO,II.1.1,Neuquén,AR-Q,annual,2018,naphtha combustion consumption by to the public,303.6320525084,TJ,N2O,0.6,kg/TJ,182.17923150504,kg -f15386c9-cdd2-3529-abbb-506161aadfdb,SESCO,II.1.1,Rio Negro,AR-R,annual,2018,naphtha combustion consumption by to the public,562.512421009,TJ,CO2,73300.0,kg/TJ,41232160.4599597,kg -9df47257-c630-336b-b5e9-2a8e674d1215,SESCO,II.1.1,Rio Negro,AR-R,annual,2018,naphtha combustion consumption by to the public,562.512421009,TJ,CH4,3.0,kg/TJ,1687.537263027,kg -20684655-4666-36e4-8c89-019e602a4182,SESCO,II.1.1,Rio Negro,AR-R,annual,2018,naphtha combustion consumption by to the public,562.512421009,TJ,N2O,0.6,kg/TJ,337.50745260540003,kg -a2414a6b-e095-3ab9-8734-c24869c1093c,SESCO,II.1.1,San Luis,AR-D,annual,2018,naphtha combustion consumption by to the public,28.93815247785,TJ,CO2,73300.0,kg/TJ,2121166.576626405,kg -fd370d46-89c1-3985-8168-979b0aac00cf,SESCO,II.1.1,San Luis,AR-D,annual,2018,naphtha combustion consumption by to the public,28.93815247785,TJ,CH4,3.0,kg/TJ,86.81445743355,kg -a66ab954-7238-3a5e-9633-0711100f01d9,SESCO,II.1.1,San Luis,AR-D,annual,2018,naphtha combustion consumption by to the public,28.93815247785,TJ,N2O,0.6,kg/TJ,17.362891486709998,kg -b8e64598-fda7-312a-a289-a97c0e99e40e,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,naphtha combustion consumption by to the public,455.91146320335,TJ,CO2,73300.0,kg/TJ,33418310.252805557,kg -3b39c815-6e6a-382b-842b-83b9bbc758b1,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,naphtha combustion consumption by to the public,455.91146320335,TJ,CH4,3.0,kg/TJ,1367.7343896100501,kg -e8e73e40-7180-321e-97eb-2eaafd28d4c1,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,naphtha combustion consumption by to the public,455.91146320335,TJ,N2O,0.6,kg/TJ,273.54687792201,kg -d43c42f9-37e0-3f58-b49c-57a9daa8b686,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2018,naphtha combustion consumption by to the public,144.78334778984998,TJ,CO2,73300.0,kg/TJ,10612619.392996004,kg -33af67c4-6f86-338b-ab8f-993ee00562cf,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2018,naphtha combustion consumption by to the public,144.78334778984998,TJ,CH4,3.0,kg/TJ,434.35004336954995,kg -98acb2e3-d5e3-3605-a4a8-3f8e0b42ac2e,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2018,naphtha combustion consumption by to the public,144.78334778984998,TJ,N2O,0.6,kg/TJ,86.87000867391,kg -54206aa8-c515-3c75-b426-fd97ea9f64e7,SESCO,II.1.1,Tucuman,AR-T,annual,2018,naphtha combustion consumption by to the public,24.090562657699998,TJ,CO2,73300.0,kg/TJ,1765838.2428094097,kg -ebd32d4c-0930-3101-a87f-5002b34b3f0b,SESCO,II.1.1,Tucuman,AR-T,annual,2018,naphtha combustion consumption by to the public,24.090562657699998,TJ,CH4,3.0,kg/TJ,72.2716879731,kg -39fcfc8e-1976-32ec-ba40-50325723c5b8,SESCO,II.1.1,Tucuman,AR-T,annual,2018,naphtha combustion consumption by to the public,24.090562657699998,TJ,N2O,0.6,kg/TJ,14.454337594619998,kg -63ff3f23-744b-360f-b991-6fbe430384a8,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,naphtha combustion consumption by to the public,575.4715714747999,TJ,CO2,73300.0,kg/TJ,42182066.189102836,kg -2a11f986-ec7b-3596-8820-989d902fca64,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,naphtha combustion consumption by to the public,575.4715714747999,TJ,CH4,3.0,kg/TJ,1726.4147144243998,kg -c81eb97c-89cd-3c92-abb4-1775fd944e0e,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,naphtha combustion consumption by to the public,575.4715714747999,TJ,N2O,0.6,kg/TJ,345.28294288487996,kg -a9656bc3-74be-3954-aacc-f99153c0eb36,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,naphtha combustion consumption by to the public,27.91513869375,TJ,CO2,73300.0,kg/TJ,2046179.666251875,kg -acdbbcbc-d4ae-3e26-93cf-7cdabc8eadaf,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,naphtha combustion consumption by to the public,27.91513869375,TJ,CH4,3.0,kg/TJ,83.74541608125,kg -31a67251-8a30-341f-8f18-1a1976aab046,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,naphtha combustion consumption by to the public,27.91513869375,TJ,N2O,0.6,kg/TJ,16.74908321625,kg -30eae141-d115-3bbc-9367-a85f5abc3a8b,SESCO,II.1.1,Catamarca,AR-K,annual,2018,naphtha combustion consumption by to the public,1.6836758784999997,TJ,CO2,73300.0,kg/TJ,123413.44189404997,kg -a4070eec-7e43-3e8a-abfe-a2d6dabd67ac,SESCO,II.1.1,Catamarca,AR-K,annual,2018,naphtha combustion consumption by to the public,1.6836758784999997,TJ,CH4,3.0,kg/TJ,5.051027635499999,kg -ad767687-8702-3973-8f7e-ae6f88632799,SESCO,II.1.1,Catamarca,AR-K,annual,2018,naphtha combustion consumption by to the public,1.6836758784999997,TJ,N2O,0.6,kg/TJ,1.0102055270999997,kg -0bd29e4c-3e60-387d-a2f7-68e22005dc47,SESCO,II.1.1,Chaco,AR-H,annual,2018,naphtha combustion consumption by to the public,2.9599576968499997,TJ,CO2,73300.0,kg/TJ,216964.89917910498,kg -f9941fcd-4faa-3493-9730-ed60f4a5c887,SESCO,II.1.1,Chaco,AR-H,annual,2018,naphtha combustion consumption by to the public,2.9599576968499997,TJ,CH4,3.0,kg/TJ,8.87987309055,kg -25b4aa8a-f533-39b5-a00e-95bb20e08f70,SESCO,II.1.1,Chaco,AR-H,annual,2018,naphtha combustion consumption by to the public,2.9599576968499997,TJ,N2O,0.6,kg/TJ,1.7759746181099998,kg -391eba22-d0ca-35c7-908a-d3ebf3986623,SESCO,II.1.1,Chubut,AR-U,annual,2018,naphtha combustion consumption by to the public,13.012914649349998,TJ,CO2,73300.0,kg/TJ,953846.6437973549,kg -c75feedb-6065-3596-9dde-8f0879f9a6e5,SESCO,II.1.1,Chubut,AR-U,annual,2018,naphtha combustion consumption by to the public,13.012914649349998,TJ,CH4,3.0,kg/TJ,39.03874394805,kg -48513364-9b28-3d52-9ec2-23fa10c02cd7,SESCO,II.1.1,Chubut,AR-U,annual,2018,naphtha combustion consumption by to the public,13.012914649349998,TJ,N2O,0.6,kg/TJ,7.807748789609999,kg -82a3798b-1687-3265-9fab-e286ebf9d837,SESCO,II.1.1,Corrientes,AR-W,annual,2018,naphtha combustion consumption by to the public,9.5449570832,TJ,CO2,73300.0,kg/TJ,699645.35419856,kg -d8059144-eeff-37da-a819-72b359281e1f,SESCO,II.1.1,Corrientes,AR-W,annual,2018,naphtha combustion consumption by to the public,9.5449570832,TJ,CH4,3.0,kg/TJ,28.6348712496,kg -997f0f8b-d45c-375b-a4be-c22314d56835,SESCO,II.1.1,Corrientes,AR-W,annual,2018,naphtha combustion consumption by to the public,9.5449570832,TJ,N2O,0.6,kg/TJ,5.72697424992,kg -cd38e2b5-b8de-305a-8c51-2bede540a614,SESCO,II.1.1,Córdoba,AR-X,annual,2018,naphtha combustion consumption by to the public,57.371781613299994,TJ,CO2,73300.0,kg/TJ,4205351.592254889,kg -be5ca9b1-1a8b-353d-a257-7a86b45eb144,SESCO,II.1.1,Córdoba,AR-X,annual,2018,naphtha combustion consumption by to the public,57.371781613299994,TJ,CH4,3.0,kg/TJ,172.1153448399,kg -4b7a020f-0850-3684-8e5a-6701774a61d5,SESCO,II.1.1,Córdoba,AR-X,annual,2018,naphtha combustion consumption by to the public,57.371781613299994,TJ,N2O,0.6,kg/TJ,34.423068967979994,kg -0f189a1b-810f-3671-94f7-7fe848d1497d,SESCO,II.1.1,Entre Rios,AR-E,annual,2018,naphtha combustion consumption by to the public,48.1188527897,TJ,CO2,73300.0,kg/TJ,3527111.90948501,kg -a841f5b6-182d-37d5-890a-4d60066bcec5,SESCO,II.1.1,Entre Rios,AR-E,annual,2018,naphtha combustion consumption by to the public,48.1188527897,TJ,CH4,3.0,kg/TJ,144.35655836910001,kg -df07d0c9-bd70-3215-a80f-4f8faf2e52e2,SESCO,II.1.1,Entre Rios,AR-E,annual,2018,naphtha combustion consumption by to the public,48.1188527897,TJ,N2O,0.6,kg/TJ,28.87131167382,kg -9a2a4f19-cbaf-3e31-a17a-5cf435f7142f,SESCO,II.1.1,Formosa,AR-P,annual,2018,naphtha combustion consumption by to the public,1.0982775418999997,TJ,CO2,73300.0,kg/TJ,80503.74382126998,kg -fb986630-54f3-3e4b-89fe-52c0e361ed61,SESCO,II.1.1,Formosa,AR-P,annual,2018,naphtha combustion consumption by to the public,1.0982775418999997,TJ,CH4,3.0,kg/TJ,3.294832625699999,kg -dbfd9983-9e16-3927-b250-cea1bc17210b,SESCO,II.1.1,Formosa,AR-P,annual,2018,naphtha combustion consumption by to the public,1.0982775418999997,TJ,N2O,0.6,kg/TJ,0.6589665251399998,kg -79592236-8193-3e0d-9ed2-14e705d5c8b1,SESCO,II.1.1,Jujuy,AR-Y,annual,2018,naphtha combustion consumption by to the public,0.3069102344,TJ,CO2,73300.0,kg/TJ,22496.520181519998,kg -f32da097-c823-32f4-9aca-ac500d803abc,SESCO,II.1.1,Jujuy,AR-Y,annual,2018,naphtha combustion consumption by to the public,0.3069102344,TJ,CH4,3.0,kg/TJ,0.9207307032,kg -b7ef7944-79ec-3a8e-9eb5-d359710c453a,SESCO,II.1.1,Jujuy,AR-Y,annual,2018,naphtha combustion consumption by to the public,0.3069102344,TJ,N2O,0.6,kg/TJ,0.18414614063999998,kg -d0cfbffd-7ba0-3038-a37b-14f033908eb4,SESCO,II.1.1,La Pampa,AR-L,annual,2018,naphtha combustion consumption by to the public,58.22593987595,TJ,CO2,73300.0,kg/TJ,4267961.392907135,kg -60c7a1ba-66c3-3d4f-bd44-117e7f27f95e,SESCO,II.1.1,La Pampa,AR-L,annual,2018,naphtha combustion consumption by to the public,58.22593987595,TJ,CH4,3.0,kg/TJ,174.67781962785,kg -94ed2f3b-4324-3559-bbea-6f61022659cd,SESCO,II.1.1,La Pampa,AR-L,annual,2018,naphtha combustion consumption by to the public,58.22593987595,TJ,N2O,0.6,kg/TJ,34.935563925569994,kg -7ca15f98-73d6-34eb-85f0-efbb58c31c3b,SESCO,II.1.1,Mendoza,AR-M,annual,2018,naphtha combustion consumption by to the public,1.1168190187,TJ,CO2,73300.0,kg/TJ,81862.83407071,kg -bd6024ad-b1c8-3d29-9462-6514005d7a0e,SESCO,II.1.1,Mendoza,AR-M,annual,2018,naphtha combustion consumption by to the public,1.1168190187,TJ,CH4,3.0,kg/TJ,3.3504570560999998,kg -5fa2c02e-45bd-357c-abb3-81fca65660ab,SESCO,II.1.1,Mendoza,AR-M,annual,2018,naphtha combustion consumption by to the public,1.1168190187,TJ,N2O,0.6,kg/TJ,0.6700914112199999,kg -b4627656-c569-3f46-b81c-b9faa47c2017,SESCO,II.1.1,Misiones,AR-N,annual,2018,naphtha combustion consumption by to the public,5.2072883709,TJ,CO2,73300.0,kg/TJ,381694.23758697,kg -04763922-8fb4-30e4-b777-4858e285ec7e,SESCO,II.1.1,Misiones,AR-N,annual,2018,naphtha combustion consumption by to the public,5.2072883709,TJ,CH4,3.0,kg/TJ,15.6218651127,kg -2155192f-579a-3adc-aff0-ba67af45d78f,SESCO,II.1.1,Misiones,AR-N,annual,2018,naphtha combustion consumption by to the public,5.2072883709,TJ,N2O,0.6,kg/TJ,3.12437302254,kg -96f97311-3cc2-38ad-bc11-c9cf0c31eb04,SESCO,II.1.1,Neuquén,AR-Q,annual,2018,naphtha combustion consumption by to the public,129.59049829494998,TJ,CO2,73300.0,kg/TJ,9498983.525019834,kg -1844af84-2ce8-380e-b25a-a0f83bb6255a,SESCO,II.1.1,Neuquén,AR-Q,annual,2018,naphtha combustion consumption by to the public,129.59049829494998,TJ,CH4,3.0,kg/TJ,388.77149488485,kg -72085324-c245-3019-89dd-2c2e35c7d858,SESCO,II.1.1,Neuquén,AR-Q,annual,2018,naphtha combustion consumption by to the public,129.59049829494998,TJ,N2O,0.6,kg/TJ,77.75429897696999,kg -e5b1ed3b-3232-3be5-86e6-4c82fa928d42,SESCO,II.1.1,Rio Negro,AR-R,annual,2018,naphtha combustion consumption by to the public,101.7010980986,TJ,CO2,73300.0,kg/TJ,7454690.49062738,kg -de96aa2e-2597-37de-8c6f-ce0bef36e442,SESCO,II.1.1,Rio Negro,AR-R,annual,2018,naphtha combustion consumption by to the public,101.7010980986,TJ,CH4,3.0,kg/TJ,305.10329429579997,kg -f148b84c-a35d-321d-ac74-969d9a57bf76,SESCO,II.1.1,Rio Negro,AR-R,annual,2018,naphtha combustion consumption by to the public,101.7010980986,TJ,N2O,0.6,kg/TJ,61.020658859159994,kg -190c9912-bd16-3b9b-a166-e5d86a89ffc0,SESCO,II.1.1,San Luis,AR-D,annual,2018,naphtha combustion consumption by to the public,10.2214770196,TJ,CO2,73300.0,kg/TJ,749234.26553668,kg -ccccba0e-1ba7-3a4b-b5c5-440592e5118a,SESCO,II.1.1,San Luis,AR-D,annual,2018,naphtha combustion consumption by to the public,10.2214770196,TJ,CH4,3.0,kg/TJ,30.664431058799998,kg -e928e3a6-1bbd-36d4-8115-ab4f3f34b873,SESCO,II.1.1,San Luis,AR-D,annual,2018,naphtha combustion consumption by to the public,10.2214770196,TJ,N2O,0.6,kg/TJ,6.13288621176,kg -87ffdee7-1695-3860-955c-48ee3880a7ef,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,naphtha combustion consumption by to the public,117.64304765289998,TJ,CO2,73300.0,kg/TJ,8623235.392957568,kg -040c5cb8-9091-3a5c-a5d3-3d480b61db75,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,naphtha combustion consumption by to the public,117.64304765289998,TJ,CH4,3.0,kg/TJ,352.9291429586999,kg -a789700a-bc7b-3bd7-b147-0c6b14023fcd,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,naphtha combustion consumption by to the public,117.64304765289998,TJ,N2O,0.6,kg/TJ,70.58582859173998,kg -09551a1b-857e-3231-99fa-1222070136b9,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2018,naphtha combustion consumption by to the public,27.998239884999993,TJ,CO2,73300.0,kg/TJ,2052270.9835704996,kg -8f2c2bf7-3ac3-3302-b9cb-c7cfd2a609d6,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2018,naphtha combustion consumption by to the public,27.998239884999993,TJ,CH4,3.0,kg/TJ,83.99471965499998,kg -8b60fc6c-1bc1-387c-9417-09a40c70d29b,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2018,naphtha combustion consumption by to the public,27.998239884999993,TJ,N2O,0.6,kg/TJ,16.798943930999997,kg -1c21486a-dc8b-3080-8f2f-a5729d1cffef,SESCO,II.1.1,Tucuman,AR-T,annual,2018,naphtha combustion consumption by to the public,0.9425047400999998,TJ,CO2,73300.0,kg/TJ,69085.59744932999,kg -d0acba95-bf8a-30be-937d-32dfedc84647,SESCO,II.1.1,Tucuman,AR-T,annual,2018,naphtha combustion consumption by to the public,0.9425047400999998,TJ,CH4,3.0,kg/TJ,2.8275142202999994,kg -9c4a8f26-cea9-3543-af3c-80940452cb91,SESCO,II.1.1,Tucuman,AR-T,annual,2018,naphtha combustion consumption by to the public,0.9425047400999998,TJ,N2O,0.6,kg/TJ,0.5655028440599998,kg -da494789-7b76-30d3-9e13-c41890c9807e,SESCO,II.5.1,Buenos Aires,AR-B,annual,2018,naphtha combustion consumption by agriculture machines,275.34702964999997,TJ,CO2,73300.0,kg/TJ,20182937.273344997,kg -3a7f43f1-9ea4-3936-9b65-00b102b2467a,SESCO,II.5.1,Buenos Aires,AR-B,annual,2018,naphtha combustion consumption by agriculture machines,275.34702964999997,TJ,CH4,3.0,kg/TJ,826.0410889499999,kg -cd379c2a-d9fa-33a7-bc9b-3cc1e884f9d4,SESCO,II.5.1,Buenos Aires,AR-B,annual,2018,naphtha combustion consumption by agriculture machines,275.34702964999997,TJ,N2O,0.6,kg/TJ,165.20821778999996,kg -70eb9c72-3c3c-364a-b65b-e19303ebce5c,SESCO,II.5.1,Mendoza,AR-M,annual,2018,naphtha combustion consumption by agriculture machines,19.944285899999997,TJ,CO2,73300.0,kg/TJ,1461916.1564699998,kg -72c51e0d-e438-38d8-8b83-7865b3239c79,SESCO,II.5.1,Mendoza,AR-M,annual,2018,naphtha combustion consumption by agriculture machines,19.944285899999997,TJ,CH4,3.0,kg/TJ,59.83285769999999,kg -5ac2976c-c262-33b2-bf3b-e87099819728,SESCO,II.5.1,Mendoza,AR-M,annual,2018,naphtha combustion consumption by agriculture machines,19.944285899999997,TJ,N2O,0.6,kg/TJ,11.966571539999999,kg -5dddb168-e339-3583-aadd-24dbe8af018e,SESCO,II.5.1,Misiones,AR-N,annual,2018,naphtha combustion consumption by agriculture machines,1.0978506,TJ,CO2,73300.0,kg/TJ,80472.44897999999,kg -acd46cb4-798e-3e73-8e93-24f26c45e01a,SESCO,II.5.1,Misiones,AR-N,annual,2018,naphtha combustion consumption by agriculture machines,1.0978506,TJ,CH4,3.0,kg/TJ,3.2935517999999995,kg -d0d5c14a-468e-3058-9259-f56134828fd2,SESCO,II.5.1,Misiones,AR-N,annual,2018,naphtha combustion consumption by agriculture machines,1.0978506,TJ,N2O,0.6,kg/TJ,0.6587103599999999,kg -57bd636f-4b59-39dc-8ae6-249e8e113400,SESCO,II.5.1,Salta,AR-A,annual,2018,naphtha combustion consumption by agriculture machines,0.6099169999999999,TJ,CO2,73300.0,kg/TJ,44706.916099999995,kg -245ff045-499a-32af-8c2b-f391dad45dcf,SESCO,II.5.1,Salta,AR-A,annual,2018,naphtha combustion consumption by agriculture machines,0.6099169999999999,TJ,CH4,3.0,kg/TJ,1.829751,kg -e4b4721f-f5a8-31d6-b552-85be0a97bcef,SESCO,II.5.1,Salta,AR-A,annual,2018,naphtha combustion consumption by agriculture machines,0.6099169999999999,TJ,N2O,0.6,kg/TJ,0.36595019999999995,kg -24cdc35a-1fe4-3e2d-a3b7-8f71288500ff,SESCO,II.5.1,Santa Fe,AR-S,annual,2018,naphtha combustion consumption by agriculture machines,122.80678794999999,TJ,CO2,73300.0,kg/TJ,9001737.556735,kg -a45a1c28-e601-30d0-9f5c-46037c1b299e,SESCO,II.5.1,Santa Fe,AR-S,annual,2018,naphtha combustion consumption by agriculture machines,122.80678794999999,TJ,CH4,3.0,kg/TJ,368.42036384999994,kg -03f37c22-3dd5-3efa-897c-50297e51bb10,SESCO,II.5.1,Santa Fe,AR-S,annual,2018,naphtha combustion consumption by agriculture machines,122.80678794999999,TJ,N2O,0.6,kg/TJ,73.68407276999999,kg -38685304-4f7f-3259-800a-ead74bb3ca36,SESCO,II.5.1,Buenos Aires,AR-B,annual,2018,naphtha combustion consumption by agriculture machines,1.25032985,TJ,CO2,73300.0,kg/TJ,91649.178005,kg -06ce28aa-5199-3154-9b2b-2d1db9c2c10d,SESCO,II.5.1,Buenos Aires,AR-B,annual,2018,naphtha combustion consumption by agriculture machines,1.25032985,TJ,CH4,3.0,kg/TJ,3.75098955,kg -59aa4017-7a3f-3702-99c7-bf273adb7836,SESCO,II.5.1,Buenos Aires,AR-B,annual,2018,naphtha combustion consumption by agriculture machines,1.25032985,TJ,N2O,0.6,kg/TJ,0.7501979099999999,kg -5a855879-1c80-3190-8817-a2ec3b8db2f1,SESCO,II.5.1,Santa Fe,AR-S,annual,2018,naphtha combustion consumption by agriculture machines,0.51842945,TJ,CO2,73300.0,kg/TJ,38000.878684999996,kg -fdfac3c0-673b-32cd-80fc-16f5601fb1f3,SESCO,II.5.1,Santa Fe,AR-S,annual,2018,naphtha combustion consumption by agriculture machines,0.51842945,TJ,CH4,3.0,kg/TJ,1.5552883499999999,kg -b89e4266-a0c1-3b85-a9db-2e723c3e5b0d,SESCO,II.5.1,Santa Fe,AR-S,annual,2018,naphtha combustion consumption by agriculture machines,0.51842945,TJ,N2O,0.6,kg/TJ,0.31105766999999995,kg -24c6535c-ddf6-3eec-9fc7-c98112d24141,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,naphtha combustion consumption by to the public,37038.3076756,TJ,CO2,73300.0,kg/TJ,2714907952.62148,kg -92d8a016-c18d-325e-be11-fafd1066669c,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,naphtha combustion consumption by to the public,37038.3076756,TJ,CH4,3.0,kg/TJ,111114.92302680001,kg -5f002fcf-6211-3965-b6cf-569e40b65f2c,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,naphtha combustion consumption by to the public,37038.3076756,TJ,N2O,0.6,kg/TJ,22222.98460536,kg -ece2527f-c90f-39d5-a18c-6627591bbebf,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,naphtha combustion consumption by to the public,7856.950793999999,TJ,CO2,73300.0,kg/TJ,575914493.2002,kg -9ae31e7f-25d4-3a6a-b14a-ab995b7de37d,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,naphtha combustion consumption by to the public,7856.950793999999,TJ,CH4,3.0,kg/TJ,23570.852381999997,kg -c9aa0d91-6e9f-34cc-bbf0-e83af466f232,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,naphtha combustion consumption by to the public,7856.950793999999,TJ,N2O,0.6,kg/TJ,4714.1704764,kg -dd4c1caf-7daf-3bc2-8ba4-a8210dae9501,SESCO,II.1.1,Catamarca,AR-K,annual,2018,naphtha combustion consumption by to the public,722.3551989499999,TJ,CO2,73300.0,kg/TJ,52948636.08303499,kg -c155cc3f-1e35-37df-8031-d95462f42098,SESCO,II.1.1,Catamarca,AR-K,annual,2018,naphtha combustion consumption by to the public,722.3551989499999,TJ,CH4,3.0,kg/TJ,2167.0655968499996,kg -d225b04b-6fb6-3f26-ada4-8ad477099310,SESCO,II.1.1,Catamarca,AR-K,annual,2018,naphtha combustion consumption by to the public,722.3551989499999,TJ,N2O,0.6,kg/TJ,433.41311936999995,kg -427d7998-248a-36b5-89ad-de5399e5fd5c,SESCO,II.1.1,Chaco,AR-H,annual,2018,naphtha combustion consumption by to the public,2330.7673196499995,TJ,CO2,73300.0,kg/TJ,170845244.53034496,kg -c5f38771-8c21-3ac5-9b97-fc457a4d022c,SESCO,II.1.1,Chaco,AR-H,annual,2018,naphtha combustion consumption by to the public,2330.7673196499995,TJ,CH4,3.0,kg/TJ,6992.301958949998,kg -f0a608b9-448a-3a16-89b2-ed42ba8169c8,SESCO,II.1.1,Chaco,AR-H,annual,2018,naphtha combustion consumption by to the public,2330.7673196499995,TJ,N2O,0.6,kg/TJ,1398.4603917899997,kg -a1adf081-5727-3df8-bef4-b821b28c7b97,SESCO,II.1.1,Chubut,AR-U,annual,2018,naphtha combustion consumption by to the public,3244.54496905,TJ,CO2,73300.0,kg/TJ,237825146.231365,kg -cc6dfab2-5946-36d8-89aa-6885da05c9c3,SESCO,II.1.1,Chubut,AR-U,annual,2018,naphtha combustion consumption by to the public,3244.54496905,TJ,CH4,3.0,kg/TJ,9733.63490715,kg -d8a7572e-37a4-3601-b5ea-06d7b94ef8c8,SESCO,II.1.1,Chubut,AR-U,annual,2018,naphtha combustion consumption by to the public,3244.54496905,TJ,N2O,0.6,kg/TJ,1946.7269814299998,kg -83cedc5a-28de-3273-87fb-83eae78eed78,SESCO,II.1.1,Corrientes,AR-W,annual,2018,naphtha combustion consumption by to the public,2358.2440804999997,TJ,CO2,73300.0,kg/TJ,172859291.10064998,kg -8a76c32b-e271-3751-89c5-83e4ec3b7924,SESCO,II.1.1,Corrientes,AR-W,annual,2018,naphtha combustion consumption by to the public,2358.2440804999997,TJ,CH4,3.0,kg/TJ,7074.732241499999,kg -cd043fb1-a32b-3c17-97ed-468186ee571c,SESCO,II.1.1,Corrientes,AR-W,annual,2018,naphtha combustion consumption by to the public,2358.2440804999997,TJ,N2O,0.6,kg/TJ,1414.9464482999997,kg -6dc5632f-0af8-35af-a63e-71bf2bf6acda,SESCO,II.1.1,Córdoba,AR-X,annual,2018,naphtha combustion consumption by to the public,8893.3827521,TJ,CO2,73300.0,kg/TJ,651884955.72893,kg -c3cd3808-4b95-3084-b216-d78289c505ff,SESCO,II.1.1,Córdoba,AR-X,annual,2018,naphtha combustion consumption by to the public,8893.3827521,TJ,CH4,3.0,kg/TJ,26680.148256300003,kg -467c3eed-b6fe-36eb-8f12-0b430341ddd0,SESCO,II.1.1,Córdoba,AR-X,annual,2018,naphtha combustion consumption by to the public,8893.3827521,TJ,N2O,0.6,kg/TJ,5336.02965126,kg -45b55948-217c-304a-abc9-964fcd6fee6e,SESCO,II.1.1,Entre Rios,AR-E,annual,2018,naphtha combustion consumption by to the public,3212.4938306999998,TJ,CO2,73300.0,kg/TJ,235475797.79031,kg -98eeb666-769f-358d-9bd6-9f1fba5f072d,SESCO,II.1.1,Entre Rios,AR-E,annual,2018,naphtha combustion consumption by to the public,3212.4938306999998,TJ,CH4,3.0,kg/TJ,9637.4814921,kg -b1298430-38e3-35c3-b0ff-eb01590f366d,SESCO,II.1.1,Entre Rios,AR-E,annual,2018,naphtha combustion consumption by to the public,3212.4938306999998,TJ,N2O,0.6,kg/TJ,1927.4962984199997,kg -ca04b294-fbf8-3e5a-88bc-7443a9b2f9db,SESCO,II.1.1,Formosa,AR-P,annual,2018,naphtha combustion consumption by to the public,876.2067622,TJ,CO2,73300.0,kg/TJ,64225955.669259995,kg -c65c281d-7c2f-325e-880c-e675093ec874,SESCO,II.1.1,Formosa,AR-P,annual,2018,naphtha combustion consumption by to the public,876.2067622,TJ,CH4,3.0,kg/TJ,2628.6202866,kg -c53ae7ae-5fee-3f30-a0bb-172e7fa80c74,SESCO,II.1.1,Formosa,AR-P,annual,2018,naphtha combustion consumption by to the public,876.2067622,TJ,N2O,0.6,kg/TJ,525.7240573199999,kg -88827673-f9d5-3be4-a67b-67d865e4ac34,SESCO,II.1.1,Jujuy,AR-Y,annual,2018,naphtha combustion consumption by to the public,1405.0048012,TJ,CO2,73300.0,kg/TJ,102986851.92796,kg -e36c6985-102e-322c-8e6c-9746300db6d9,SESCO,II.1.1,Jujuy,AR-Y,annual,2018,naphtha combustion consumption by to the public,1405.0048012,TJ,CH4,3.0,kg/TJ,4215.0144036,kg -5e12582e-7315-3c67-b696-8fdf80ca933f,SESCO,II.1.1,Jujuy,AR-Y,annual,2018,naphtha combustion consumption by to the public,1405.0048012,TJ,N2O,0.6,kg/TJ,843.00288072,kg -b91e67d3-2f26-3692-91d9-1e6c795dba74,SESCO,II.1.1,La Pampa,AR-L,annual,2018,naphtha combustion consumption by to the public,1609.3269962,TJ,CO2,73300.0,kg/TJ,117963668.82146,kg -e79a4ed1-0ff6-3dd7-ba90-dae5cf48f12b,SESCO,II.1.1,La Pampa,AR-L,annual,2018,naphtha combustion consumption by to the public,1609.3269962,TJ,CH4,3.0,kg/TJ,4827.9809886,kg -cc2afe57-e2da-34f8-9148-50e51d2738e2,SESCO,II.1.1,La Pampa,AR-L,annual,2018,naphtha combustion consumption by to the public,1609.3269962,TJ,N2O,0.6,kg/TJ,965.59619772,kg -439222bf-8b4a-3f10-b873-e436352cd43f,SESCO,II.1.1,La Rioja,AR-F,annual,2018,naphtha combustion consumption by to the public,967.1453868999998,TJ,CO2,73300.0,kg/TJ,70891756.85976999,kg -f08250e0-7a67-3d5e-b6d6-55708f807120,SESCO,II.1.1,La Rioja,AR-F,annual,2018,naphtha combustion consumption by to the public,967.1453868999998,TJ,CH4,3.0,kg/TJ,2901.4361606999996,kg -34afc1d1-e6d3-3d66-a148-28a28983cb94,SESCO,II.1.1,La Rioja,AR-F,annual,2018,naphtha combustion consumption by to the public,967.1453868999998,TJ,N2O,0.6,kg/TJ,580.2872321399999,kg -56822ea1-592c-38df-a435-b12f639c05ef,SESCO,II.1.1,Mendoza,AR-M,annual,2018,naphtha combustion consumption by to the public,4862.105844749999,TJ,CO2,73300.0,kg/TJ,356392358.42017496,kg -cec2f6a5-1164-3ae5-97f3-eda7ffe6b4c4,SESCO,II.1.1,Mendoza,AR-M,annual,2018,naphtha combustion consumption by to the public,4862.105844749999,TJ,CH4,3.0,kg/TJ,14586.317534249996,kg -ec5d26e8-1064-3e49-9949-e3e83bbe75c9,SESCO,II.1.1,Mendoza,AR-M,annual,2018,naphtha combustion consumption by to the public,4862.105844749999,TJ,N2O,0.6,kg/TJ,2917.2635068499994,kg -f46b2492-c12f-3d68-a2f9-a78ea5fc0355,SESCO,II.1.1,Misiones,AR-N,annual,2018,naphtha combustion consumption by to the public,3185.7184743999996,TJ,CO2,73300.0,kg/TJ,233513164.17351997,kg -701c579a-1d40-3910-8747-89c6545e20f7,SESCO,II.1.1,Misiones,AR-N,annual,2018,naphtha combustion consumption by to the public,3185.7184743999996,TJ,CH4,3.0,kg/TJ,9557.155423199998,kg -e654d5fc-768b-36de-8777-138020f9b50c,SESCO,II.1.1,Misiones,AR-N,annual,2018,naphtha combustion consumption by to the public,3185.7184743999996,TJ,N2O,0.6,kg/TJ,1911.4310846399997,kg -e408d7f8-c63e-3c6b-b07b-2b167f9a3c7f,SESCO,II.1.1,Neuquén,AR-Q,annual,2018,naphtha combustion consumption by to the public,3125.0622287499996,TJ,CO2,73300.0,kg/TJ,229067061.36737496,kg -a70fb3e3-7a1d-33ec-9178-db8b4058bd4c,SESCO,II.1.1,Neuquén,AR-Q,annual,2018,naphtha combustion consumption by to the public,3125.0622287499996,TJ,CH4,3.0,kg/TJ,9375.18668625,kg -97ef3ba1-bb79-3a77-97d3-79c01effc991,SESCO,II.1.1,Neuquén,AR-Q,annual,2018,naphtha combustion consumption by to the public,3125.0622287499996,TJ,N2O,0.6,kg/TJ,1875.0373372499996,kg -9dc607c6-56cd-3b4f-ac6c-59401438731d,SESCO,II.1.1,Rio Negro,AR-R,annual,2018,naphtha combustion consumption by to the public,3100.1776151499994,TJ,CO2,73300.0,kg/TJ,227243019.19049495,kg -2bda6069-8905-38c9-8cee-5b72e8598625,SESCO,II.1.1,Rio Negro,AR-R,annual,2018,naphtha combustion consumption by to the public,3100.1776151499994,TJ,CH4,3.0,kg/TJ,9300.532845449998,kg -33990648-d199-3456-999a-c58fc7fc3aaa,SESCO,II.1.1,Rio Negro,AR-R,annual,2018,naphtha combustion consumption by to the public,3100.1776151499994,TJ,N2O,0.6,kg/TJ,1860.1065690899995,kg -d30c4d33-49f3-3a55-861a-89da646e34a2,SESCO,II.1.1,Salta,AR-A,annual,2018,naphtha combustion consumption by to the public,3153.85031115,TJ,CO2,73300.0,kg/TJ,231177227.807295,kg -7172baf3-0dc0-39b1-bd05-731cc1c8ff5f,SESCO,II.1.1,Salta,AR-A,annual,2018,naphtha combustion consumption by to the public,3153.85031115,TJ,CH4,3.0,kg/TJ,9461.55093345,kg -cf042bb2-512b-33c2-bb06-563544e46d17,SESCO,II.1.1,Salta,AR-A,annual,2018,naphtha combustion consumption by to the public,3153.85031115,TJ,N2O,0.6,kg/TJ,1892.31018669,kg -81289821-d29b-3188-af22-1a29f0784654,SESCO,II.1.1,San Juan,AR-J,annual,2018,naphtha combustion consumption by to the public,1658.45581055,TJ,CO2,73300.0,kg/TJ,121564810.913315,kg -a48c3786-134e-3f4f-8c8a-120cf4268ac3,SESCO,II.1.1,San Juan,AR-J,annual,2018,naphtha combustion consumption by to the public,1658.45581055,TJ,CH4,3.0,kg/TJ,4975.36743165,kg -4aaa47e7-8dd4-31c0-bd39-7ec1368169e5,SESCO,II.1.1,San Juan,AR-J,annual,2018,naphtha combustion consumption by to the public,1658.45581055,TJ,N2O,0.6,kg/TJ,995.0734863299999,kg -24f39986-5fbc-31d6-93a5-21687741d10a,SESCO,II.1.1,San Luis,AR-D,annual,2018,naphtha combustion consumption by to the public,1370.5139948499998,TJ,CO2,73300.0,kg/TJ,100458675.82250498,kg -8e0e9377-469a-3eb9-adb0-090fb9ec2fb6,SESCO,II.1.1,San Luis,AR-D,annual,2018,naphtha combustion consumption by to the public,1370.5139948499998,TJ,CH4,3.0,kg/TJ,4111.541984549999,kg -f2a7d50c-6b9d-3c79-9464-943c451a2d6c,SESCO,II.1.1,San Luis,AR-D,annual,2018,naphtha combustion consumption by to the public,1370.5139948499998,TJ,N2O,0.6,kg/TJ,822.3083969099998,kg -cdd08fe4-63ff-329f-90eb-bdcccf8d16e6,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2018,naphtha combustion consumption by to the public,2203.6301209999997,TJ,CO2,73300.0,kg/TJ,161526087.86929998,kg -3c2b7461-56dc-3d00-a2fa-0f3559866a5b,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2018,naphtha combustion consumption by to the public,2203.6301209999997,TJ,CH4,3.0,kg/TJ,6610.890362999999,kg -10662446-55fc-337f-8ada-dbb570755be9,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2018,naphtha combustion consumption by to the public,2203.6301209999997,TJ,N2O,0.6,kg/TJ,1322.1780725999997,kg -1005c4e7-0679-343d-8480-486613991c5b,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,naphtha combustion consumption by to the public,6721.773273599999,TJ,CO2,73300.0,kg/TJ,492705980.95487994,kg -013c8824-15a5-3799-858e-a654f6fac2f6,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,naphtha combustion consumption by to the public,6721.773273599999,TJ,CH4,3.0,kg/TJ,20165.319820799996,kg -a6718937-6d02-36e9-8739-b6e00317fec2,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,naphtha combustion consumption by to the public,6721.773273599999,TJ,N2O,0.6,kg/TJ,4033.063964159999,kg -1d7a0d15-5722-301a-a2e5-6ca280e691b1,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2018,naphtha combustion consumption by to the public,1401.25381165,TJ,CO2,73300.0,kg/TJ,102711904.393945,kg -e195c749-18f7-3b6a-819b-a4d1b43735e1,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2018,naphtha combustion consumption by to the public,1401.25381165,TJ,CH4,3.0,kg/TJ,4203.76143495,kg -70a53d44-570e-3cb4-854d-4c49fc2843e4,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2018,naphtha combustion consumption by to the public,1401.25381165,TJ,N2O,0.6,kg/TJ,840.75228699,kg -9affa1bf-0d9e-3c45-9652-e110a11b033d,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2018,naphtha combustion consumption by to the public,1640.95119265,TJ,CO2,73300.0,kg/TJ,120281722.421245,kg -34faf48e-d6df-3c28-97a0-ed68673b412d,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2018,naphtha combustion consumption by to the public,1640.95119265,TJ,CH4,3.0,kg/TJ,4922.85357795,kg -72c73d42-a90f-3cc0-a82c-5b891bf61bbb,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2018,naphtha combustion consumption by to the public,1640.95119265,TJ,N2O,0.6,kg/TJ,984.57071559,kg -d7be0631-1384-307f-896d-bcd259bcb856,SESCO,II.1.1,Tucuman,AR-T,annual,2018,naphtha combustion consumption by to the public,2513.3459736,TJ,CO2,73300.0,kg/TJ,184228259.86488,kg -7107cad4-ebde-3c64-9ef8-2201b4b2cb85,SESCO,II.1.1,Tucuman,AR-T,annual,2018,naphtha combustion consumption by to the public,2513.3459736,TJ,CH4,3.0,kg/TJ,7540.0379207999995,kg -6a999e30-8c25-3075-b7bd-c1f506f02e30,SESCO,II.1.1,Tucuman,AR-T,annual,2018,naphtha combustion consumption by to the public,2513.3459736,TJ,N2O,0.6,kg/TJ,1508.0075841599999,kg -860daef5-52f8-3ab1-990b-3caf88a4f127,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,naphtha combustion consumption by to the public,16923.976916,TJ,CO2,73300.0,kg/TJ,1240527507.9428,kg -2586e63d-3a99-3434-a2ea-16b74ae11d74,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,naphtha combustion consumption by to the public,16923.976916,TJ,CH4,3.0,kg/TJ,50771.930748,kg -d3660306-d86f-3386-8f3b-cd94bb55c31c,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,naphtha combustion consumption by to the public,16923.976916,TJ,N2O,0.6,kg/TJ,10154.386149599999,kg -10c08fe4-24b6-3ca2-bb4e-c0c6b95a65b4,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,naphtha combustion consumption by to the public,3954.36637365,TJ,CO2,73300.0,kg/TJ,289855055.188545,kg -94fa21b4-507a-31ed-bca7-fd6989cfb26e,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,naphtha combustion consumption by to the public,3954.36637365,TJ,CH4,3.0,kg/TJ,11863.099120949999,kg -e2f5c5ba-77c7-3008-b4e0-02e3a23d9902,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,naphtha combustion consumption by to the public,3954.36637365,TJ,N2O,0.6,kg/TJ,2372.6198241899997,kg -63aa412b-7e5f-3fe6-93e2-dac51f20ac30,SESCO,II.1.1,Catamarca,AR-K,annual,2018,naphtha combustion consumption by to the public,332.67922765,TJ,CO2,73300.0,kg/TJ,24385387.386745,kg -2cdfb123-8a75-3173-aefa-a5ea57e01748,SESCO,II.1.1,Catamarca,AR-K,annual,2018,naphtha combustion consumption by to the public,332.67922765,TJ,CH4,3.0,kg/TJ,998.0376829499999,kg -4a77fd11-ee2e-3977-8ba9-b3dd0df3abfe,SESCO,II.1.1,Catamarca,AR-K,annual,2018,naphtha combustion consumption by to the public,332.67922765,TJ,N2O,0.6,kg/TJ,199.60753658999997,kg -bfcb88b6-a7ee-3d53-8c83-79807badb663,SESCO,II.1.1,Chaco,AR-H,annual,2018,naphtha combustion consumption by to the public,1003.2524732999999,TJ,CO2,73300.0,kg/TJ,73538406.29289,kg -fc53ec54-9926-3562-9e36-24baeb0d119b,SESCO,II.1.1,Chaco,AR-H,annual,2018,naphtha combustion consumption by to the public,1003.2524732999999,TJ,CH4,3.0,kg/TJ,3009.7574198999996,kg -084713b0-49b9-34a5-b43d-2bb5fbcfbc62,SESCO,II.1.1,Chaco,AR-H,annual,2018,naphtha combustion consumption by to the public,1003.2524732999999,TJ,N2O,0.6,kg/TJ,601.9514839799999,kg -20b1bfb0-8eb3-34ff-a709-837475749041,SESCO,II.1.1,Chubut,AR-U,annual,2018,naphtha combustion consumption by to the public,1438.0318067499998,TJ,CO2,73300.0,kg/TJ,105407731.43477498,kg -8b44e83e-a305-36d1-a745-42e00587a41d,SESCO,II.1.1,Chubut,AR-U,annual,2018,naphtha combustion consumption by to the public,1438.0318067499998,TJ,CH4,3.0,kg/TJ,4314.09542025,kg -2a24db03-5c33-3499-afd2-9b055a707305,SESCO,II.1.1,Chubut,AR-U,annual,2018,naphtha combustion consumption by to the public,1438.0318067499998,TJ,N2O,0.6,kg/TJ,862.8190840499998,kg -1a52c71a-e6f7-3255-bbad-a8e6cf9b3ea0,SESCO,II.1.1,Corrientes,AR-W,annual,2018,naphtha combustion consumption by to the public,1105.3220832499999,TJ,CO2,73300.0,kg/TJ,81020108.70222498,kg -b51af777-573b-3d4a-ac83-c36e425eda8b,SESCO,II.1.1,Corrientes,AR-W,annual,2018,naphtha combustion consumption by to the public,1105.3220832499999,TJ,CH4,3.0,kg/TJ,3315.9662497499994,kg -1e5ad43f-b215-36b7-8b3e-185d537d8a02,SESCO,II.1.1,Corrientes,AR-W,annual,2018,naphtha combustion consumption by to the public,1105.3220832499999,TJ,N2O,0.6,kg/TJ,663.1932499499999,kg -c080fd1a-6cc6-3755-b2dc-9a04429c4160,SESCO,II.1.1,Córdoba,AR-X,annual,2018,naphtha combustion consumption by to the public,3890.7825263999994,TJ,CO2,73300.0,kg/TJ,285194359.1851199,kg -6d20a1de-c2ad-38d9-9f2a-635e1a703ddc,SESCO,II.1.1,Córdoba,AR-X,annual,2018,naphtha combustion consumption by to the public,3890.7825263999994,TJ,CH4,3.0,kg/TJ,11672.347579199999,kg -0342ce4e-afd4-336d-9a64-b6befbefc652,SESCO,II.1.1,Córdoba,AR-X,annual,2018,naphtha combustion consumption by to the public,3890.7825263999994,TJ,N2O,0.6,kg/TJ,2334.4695158399995,kg -85d4b878-3d2a-35b4-bbb6-ed7f45a69b0c,SESCO,II.1.1,Entre Rios,AR-E,annual,2018,naphtha combustion consumption by to the public,1459.8363395,TJ,CO2,73300.0,kg/TJ,107006003.68534999,kg -04c762d2-8d7f-39da-90ad-1b6794fc7a90,SESCO,II.1.1,Entre Rios,AR-E,annual,2018,naphtha combustion consumption by to the public,1459.8363395,TJ,CH4,3.0,kg/TJ,4379.5090185,kg -ca0c38f8-de21-3188-9a42-79a588dba363,SESCO,II.1.1,Entre Rios,AR-E,annual,2018,naphtha combustion consumption by to the public,1459.8363395,TJ,N2O,0.6,kg/TJ,875.9018037,kg -546c4923-2d85-33b5-80f5-81e54ef8d939,SESCO,II.1.1,Formosa,AR-P,annual,2018,naphtha combustion consumption by to the public,282.78801704999995,TJ,CO2,73300.0,kg/TJ,20728361.649764996,kg -33dd19c4-90fc-3ad1-948b-785c7fe5768c,SESCO,II.1.1,Formosa,AR-P,annual,2018,naphtha combustion consumption by to the public,282.78801704999995,TJ,CH4,3.0,kg/TJ,848.3640511499998,kg -67f87189-2538-3918-936b-ca987e146a2b,SESCO,II.1.1,Formosa,AR-P,annual,2018,naphtha combustion consumption by to the public,282.78801704999995,TJ,N2O,0.6,kg/TJ,169.67281022999995,kg -226bd122-042a-3b30-b5bb-80f368cc4ca0,SESCO,II.1.1,Jujuy,AR-Y,annual,2018,naphtha combustion consumption by to the public,468.59923109999994,TJ,CO2,73300.0,kg/TJ,34348323.63963,kg -a212314e-2aa8-31f5-8e2b-1b8e0b551a43,SESCO,II.1.1,Jujuy,AR-Y,annual,2018,naphtha combustion consumption by to the public,468.59923109999994,TJ,CH4,3.0,kg/TJ,1405.7976932999998,kg -da909fd6-f44b-3b00-91a7-4d94ee1533bd,SESCO,II.1.1,Jujuy,AR-Y,annual,2018,naphtha combustion consumption by to the public,468.59923109999994,TJ,N2O,0.6,kg/TJ,281.15953865999995,kg -cb19d863-af44-3d39-9751-644d6bf68a9e,SESCO,II.1.1,La Pampa,AR-L,annual,2018,naphtha combustion consumption by to the public,1178.93906515,TJ,CO2,73300.0,kg/TJ,86416233.475495,kg -c8f65133-87c1-396c-9e98-9354852f927d,SESCO,II.1.1,La Pampa,AR-L,annual,2018,naphtha combustion consumption by to the public,1178.93906515,TJ,CH4,3.0,kg/TJ,3536.8171954500003,kg -5a7d50ca-0524-385a-a134-11fec6cd0a82,SESCO,II.1.1,La Pampa,AR-L,annual,2018,naphtha combustion consumption by to the public,1178.93906515,TJ,N2O,0.6,kg/TJ,707.36343909,kg -492b671f-254e-39e5-a614-a719b42d0f48,SESCO,II.1.1,La Rioja,AR-F,annual,2018,naphtha combustion consumption by to the public,452.77188494999996,TJ,CO2,73300.0,kg/TJ,33188179.166834995,kg -cbc3fdd6-21dd-3f6e-ab1a-17b46e9706fd,SESCO,II.1.1,La Rioja,AR-F,annual,2018,naphtha combustion consumption by to the public,452.77188494999996,TJ,CH4,3.0,kg/TJ,1358.3156548499999,kg -5d947e08-0abb-35c0-8779-c2cf0746f035,SESCO,II.1.1,La Rioja,AR-F,annual,2018,naphtha combustion consumption by to the public,452.77188494999996,TJ,N2O,0.6,kg/TJ,271.66313096999994,kg -1e2463af-d473-3f53-b034-92d7426282b1,SESCO,II.1.1,Mendoza,AR-M,annual,2018,naphtha combustion consumption by to the public,2826.38587385,TJ,CO2,73300.0,kg/TJ,207174084.55320498,kg -2222a922-26a3-35e6-ab30-2b6a7f3a3281,SESCO,II.1.1,Mendoza,AR-M,annual,2018,naphtha combustion consumption by to the public,2826.38587385,TJ,CH4,3.0,kg/TJ,8479.157621549999,kg -a5fe9b22-6f62-3bee-97cf-3fddf4dbd49f,SESCO,II.1.1,Mendoza,AR-M,annual,2018,naphtha combustion consumption by to the public,2826.38587385,TJ,N2O,0.6,kg/TJ,1695.8315243099998,kg -a2e1e0e0-c4cc-37a6-ad0f-78673af4e306,SESCO,II.1.1,Misiones,AR-N,annual,2018,naphtha combustion consumption by to the public,938.63176715,TJ,CO2,73300.0,kg/TJ,68801708.532095,kg -d78b15d3-539a-3708-bc73-96bfd3ac7da8,SESCO,II.1.1,Misiones,AR-N,annual,2018,naphtha combustion consumption by to the public,938.63176715,TJ,CH4,3.0,kg/TJ,2815.89530145,kg -4228addf-603b-3ea5-b402-91695af2a9db,SESCO,II.1.1,Misiones,AR-N,annual,2018,naphtha combustion consumption by to the public,938.63176715,TJ,N2O,0.6,kg/TJ,563.1790602899999,kg -bb92719f-f376-3a16-88d7-f8d95ef0319f,SESCO,II.1.1,Neuquén,AR-Q,annual,2018,naphtha combustion consumption by to the public,2016.5075854,TJ,CO2,73300.0,kg/TJ,147810006.00981998,kg -0e20df5b-de62-3858-a493-20fb4daad0c1,SESCO,II.1.1,Neuquén,AR-Q,annual,2018,naphtha combustion consumption by to the public,2016.5075854,TJ,CH4,3.0,kg/TJ,6049.5227562,kg -356d352e-d3de-329f-b4f0-cc8157840909,SESCO,II.1.1,Neuquén,AR-Q,annual,2018,naphtha combustion consumption by to the public,2016.5075854,TJ,N2O,0.6,kg/TJ,1209.9045512399998,kg -9cc70194-4bdd-3411-8fd1-4f748c5c3a02,SESCO,II.1.1,Rio Negro,AR-R,annual,2018,naphtha combustion consumption by to the public,1738.3549375499997,TJ,CO2,73300.0,kg/TJ,127421416.92241497,kg -724ae81f-cc9c-3926-a19e-b396f68a6458,SESCO,II.1.1,Rio Negro,AR-R,annual,2018,naphtha combustion consumption by to the public,1738.3549375499997,TJ,CH4,3.0,kg/TJ,5215.064812649999,kg -5d72faa3-20d8-32c9-a3ab-f8dd9a3d74a8,SESCO,II.1.1,Rio Negro,AR-R,annual,2018,naphtha combustion consumption by to the public,1738.3549375499997,TJ,N2O,0.6,kg/TJ,1043.0129625299999,kg -351d844e-5981-3be3-b97e-18ead2a07ecb,SESCO,II.1.1,Salta,AR-A,annual,2018,naphtha combustion consumption by to the public,1136.2448751499999,TJ,CO2,73300.0,kg/TJ,83286749.34849499,kg -38c90a7c-3b01-320a-861f-c92b292f54dc,SESCO,II.1.1,Salta,AR-A,annual,2018,naphtha combustion consumption by to the public,1136.2448751499999,TJ,CH4,3.0,kg/TJ,3408.73462545,kg -a15a2f6c-4277-342e-8033-9d4e658220a9,SESCO,II.1.1,Salta,AR-A,annual,2018,naphtha combustion consumption by to the public,1136.2448751499999,TJ,N2O,0.6,kg/TJ,681.7469250899999,kg -401308ee-849d-3b71-a046-16a8156a31aa,SESCO,II.1.1,San Juan,AR-J,annual,2018,naphtha combustion consumption by to the public,819.3624977999999,TJ,CO2,73300.0,kg/TJ,60059271.08873999,kg -829e85bc-06c9-3689-a78e-d16e36f4d4b9,SESCO,II.1.1,San Juan,AR-J,annual,2018,naphtha combustion consumption by to the public,819.3624977999999,TJ,CH4,3.0,kg/TJ,2458.0874934,kg -e3278d02-d905-328c-b294-db291bd5b5f9,SESCO,II.1.1,San Juan,AR-J,annual,2018,naphtha combustion consumption by to the public,819.3624977999999,TJ,N2O,0.6,kg/TJ,491.6174986799999,kg -754a2384-3351-357a-b2ee-94f828bf0fb1,SESCO,II.1.1,San Luis,AR-D,annual,2018,naphtha combustion consumption by to the public,739.8903127,TJ,CO2,73300.0,kg/TJ,54233959.92091,kg -6f7558b2-07eb-3704-bf67-f5c92716b9df,SESCO,II.1.1,San Luis,AR-D,annual,2018,naphtha combustion consumption by to the public,739.8903127,TJ,CH4,3.0,kg/TJ,2219.6709381,kg -8b949327-ca07-3f01-8af7-ff749bf0cab7,SESCO,II.1.1,San Luis,AR-D,annual,2018,naphtha combustion consumption by to the public,739.8903127,TJ,N2O,0.6,kg/TJ,443.93418762,kg -e0f081cf-4f18-37ce-b533-cac685d84dc2,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2018,naphtha combustion consumption by to the public,757.4864181499998,TJ,CO2,73300.0,kg/TJ,55523754.45039499,kg -c938f113-1665-382f-baf1-e0925ff6716a,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2018,naphtha combustion consumption by to the public,757.4864181499998,TJ,CH4,3.0,kg/TJ,2272.4592544499997,kg -0c1cfaa8-0a12-30fc-a64f-2a5e54ce7451,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2018,naphtha combustion consumption by to the public,757.4864181499998,TJ,N2O,0.6,kg/TJ,454.4918508899999,kg -4084f864-8271-3ff4-9990-806a8fb033f0,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,naphtha combustion consumption by to the public,3424.3789965,TJ,CO2,73300.0,kg/TJ,251006980.44345,kg -805d707d-e971-3042-b01f-3528f6f34c60,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,naphtha combustion consumption by to the public,3424.3789965,TJ,CH4,3.0,kg/TJ,10273.1369895,kg -916826f7-014f-3383-8cda-01736290c2a1,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,naphtha combustion consumption by to the public,3424.3789965,TJ,N2O,0.6,kg/TJ,2054.6273979,kg -4169b93b-a9ee-380e-86ba-e1e130684c41,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2018,naphtha combustion consumption by to the public,663.7116793999999,TJ,CO2,73300.0,kg/TJ,48650066.10001999,kg -bd3b2d6f-3ed2-3b3c-acd0-cdffafcd176c,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2018,naphtha combustion consumption by to the public,663.7116793999999,TJ,CH4,3.0,kg/TJ,1991.1350381999996,kg -dff771fc-b605-3bd6-b8ab-caaf0d85bbd4,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2018,naphtha combustion consumption by to the public,663.7116793999999,TJ,N2O,0.6,kg/TJ,398.2270076399999,kg -58b918a0-ea43-3044-97d5-ce37922622f2,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2018,naphtha combustion consumption by to the public,328.77575885,TJ,CO2,73300.0,kg/TJ,24099263.123705,kg -d65b3c50-5d51-3953-a6f1-daf142dba564,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2018,naphtha combustion consumption by to the public,328.77575885,TJ,CH4,3.0,kg/TJ,986.32727655,kg -f77acce6-7e86-3b80-9281-150af14396a4,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2018,naphtha combustion consumption by to the public,328.77575885,TJ,N2O,0.6,kg/TJ,197.26545531,kg -40cc16a8-cf1c-3dc5-b22a-9969279105c8,SESCO,II.1.1,Tucuman,AR-T,annual,2018,naphtha combustion consumption by to the public,845.25347445,TJ,CO2,73300.0,kg/TJ,61957079.677185,kg -c6ea85b4-253f-3474-a73c-32b1d000bb39,SESCO,II.1.1,Tucuman,AR-T,annual,2018,naphtha combustion consumption by to the public,845.25347445,TJ,CH4,3.0,kg/TJ,2535.76042335,kg -0a97b4fc-030c-3afb-9f03-a04317bf8f22,SESCO,II.1.1,Tucuman,AR-T,annual,2018,naphtha combustion consumption by to the public,845.25347445,TJ,N2O,0.6,kg/TJ,507.15208466999997,kg -3c0e8359-f5e0-3b02-b5b5-b92e8484ae1d,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,naphtha combustion consumption by freight transport,320.20642499999997,TJ,CO2,73300.0,kg/TJ,23471130.952499997,kg -0586dba9-31d1-3efd-b48e-6023d7f64725,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,naphtha combustion consumption by freight transport,320.20642499999997,TJ,CH4,3.0,kg/TJ,960.6192749999999,kg -b342ce8d-3936-3f6f-9ad0-ad25d3417fcf,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,naphtha combustion consumption by freight transport,320.20642499999997,TJ,N2O,0.6,kg/TJ,192.12385499999996,kg -f29c4dc5-15df-3249-89ed-9113caff5fb0,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,naphtha combustion consumption by freight transport,346.46335185,TJ,CO2,73300.0,kg/TJ,25395763.690605,kg -4fc27e3b-7678-3b0c-854e-e97144bb9cf8,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,naphtha combustion consumption by freight transport,346.46335185,TJ,CH4,3.0,kg/TJ,1039.39005555,kg -4740d859-fbfc-3681-ab20-a3cacf597392,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,naphtha combustion consumption by freight transport,346.46335185,TJ,N2O,0.6,kg/TJ,207.87801111,kg -b89bcc66-b2de-3087-ab8c-ecec2dc93e5c,SESCO,II.1.1,Chaco,AR-H,annual,2018,naphtha combustion consumption by freight transport,13.57065325,TJ,CO2,73300.0,kg/TJ,994728.883225,kg -296883ce-15cf-35ea-951d-b00d4b0eaada,SESCO,II.1.1,Chaco,AR-H,annual,2018,naphtha combustion consumption by freight transport,13.57065325,TJ,CH4,3.0,kg/TJ,40.71195975,kg -ba92afdb-0a58-30c3-a4cd-dd22545e6076,SESCO,II.1.1,Chaco,AR-H,annual,2018,naphtha combustion consumption by freight transport,13.57065325,TJ,N2O,0.6,kg/TJ,8.142391949999999,kg -9f8b93b3-38f4-3ba6-a7ba-e582f1bab645,SESCO,II.1.1,Chubut,AR-U,annual,2018,naphtha combustion consumption by freight transport,4.7573526,TJ,CO2,73300.0,kg/TJ,348713.94558,kg -c65bbde3-a8af-3266-bb4b-4511a03e77c7,SESCO,II.1.1,Chubut,AR-U,annual,2018,naphtha combustion consumption by freight transport,4.7573526,TJ,CH4,3.0,kg/TJ,14.272057799999999,kg -3c22588b-232f-30b3-9f9d-0aa0da3e96ba,SESCO,II.1.1,Chubut,AR-U,annual,2018,naphtha combustion consumption by freight transport,4.7573526,TJ,N2O,0.6,kg/TJ,2.85441156,kg -075032c5-f77a-3e6e-8a4b-ca7a188fe142,SESCO,II.1.1,Corrientes,AR-W,annual,2018,naphtha combustion consumption by freight transport,6.038178299999999,TJ,CO2,73300.0,kg/TJ,442598.4693899999,kg -ed616756-7387-376c-b1fc-c3880403d4b7,SESCO,II.1.1,Corrientes,AR-W,annual,2018,naphtha combustion consumption by freight transport,6.038178299999999,TJ,CH4,3.0,kg/TJ,18.1145349,kg -c7d6d20a-7012-3162-a28a-43f6b16ae904,SESCO,II.1.1,Corrientes,AR-W,annual,2018,naphtha combustion consumption by freight transport,6.038178299999999,TJ,N2O,0.6,kg/TJ,3.6229069799999993,kg -4b8bff93-2208-3311-9ace-14514bc286b8,SESCO,II.1.1,Córdoba,AR-X,annual,2018,naphtha combustion consumption by freight transport,36.4730366,TJ,CO2,73300.0,kg/TJ,2673473.58278,kg -68c03a27-c7b4-364b-8195-91907ad9e112,SESCO,II.1.1,Córdoba,AR-X,annual,2018,naphtha combustion consumption by freight transport,36.4730366,TJ,CH4,3.0,kg/TJ,109.4191098,kg -5dc19bbf-3ab0-343e-aa99-9ce6e7876d84,SESCO,II.1.1,Córdoba,AR-X,annual,2018,naphtha combustion consumption by freight transport,36.4730366,TJ,N2O,0.6,kg/TJ,21.88382196,kg -d5891b29-c45f-342c-83c2-9aa391cb63c4,SESCO,II.1.1,Entre Rios,AR-E,annual,2018,naphtha combustion consumption by freight transport,18.145030749999997,TJ,CO2,73300.0,kg/TJ,1330030.7539749998,kg -a5615fcd-8cee-3381-a977-b1f5f9126787,SESCO,II.1.1,Entre Rios,AR-E,annual,2018,naphtha combustion consumption by freight transport,18.145030749999997,TJ,CH4,3.0,kg/TJ,54.43509224999999,kg -cfbb3952-8db4-3a16-b964-bfbc06a28446,SESCO,II.1.1,Entre Rios,AR-E,annual,2018,naphtha combustion consumption by freight transport,18.145030749999997,TJ,N2O,0.6,kg/TJ,10.887018449999998,kg -9051e90a-2a70-34da-abff-689ca2c0140a,SESCO,II.1.1,Formosa,AR-P,annual,2018,naphtha combustion consumption by freight transport,0.4574377499999999,TJ,CO2,73300.0,kg/TJ,33530.187074999994,kg -ba159a32-c474-3287-87a8-cd4d0af5e741,SESCO,II.1.1,Formosa,AR-P,annual,2018,naphtha combustion consumption by freight transport,0.4574377499999999,TJ,CH4,3.0,kg/TJ,1.3723132499999997,kg -08352b1c-bfa2-3af4-9618-974bd1713750,SESCO,II.1.1,Formosa,AR-P,annual,2018,naphtha combustion consumption by freight transport,0.4574377499999999,TJ,N2O,0.6,kg/TJ,0.2744626499999999,kg -5544f29d-e0c4-3997-9a2b-ff2b2fb2af60,SESCO,II.1.1,Jujuy,AR-Y,annual,2018,naphtha combustion consumption by freight transport,0.9453713499999999,TJ,CO2,73300.0,kg/TJ,69295.719955,kg -a402ec1d-18b7-3ee9-91c5-21f81f72f334,SESCO,II.1.1,Jujuy,AR-Y,annual,2018,naphtha combustion consumption by freight transport,0.9453713499999999,TJ,CH4,3.0,kg/TJ,2.83611405,kg -4d168465-e582-3f68-881d-93cc1a0d8dfc,SESCO,II.1.1,Jujuy,AR-Y,annual,2018,naphtha combustion consumption by freight transport,0.9453713499999999,TJ,N2O,0.6,kg/TJ,0.56722281,kg -be1ddd89-6905-33e0-918c-0e4e1105df7d,SESCO,II.1.1,La Pampa,AR-L,annual,2018,naphtha combustion consumption by freight transport,3.3545434999999997,TJ,CO2,73300.0,kg/TJ,245888.03854999997,kg -955645cd-3d7b-3c63-b48a-6f5fb74407b4,SESCO,II.1.1,La Pampa,AR-L,annual,2018,naphtha combustion consumption by freight transport,3.3545434999999997,TJ,CH4,3.0,kg/TJ,10.063630499999999,kg -8c35853c-e874-3d0f-b072-56747f9d52c7,SESCO,II.1.1,La Pampa,AR-L,annual,2018,naphtha combustion consumption by freight transport,3.3545434999999997,TJ,N2O,0.6,kg/TJ,2.0127260999999996,kg -b4b60b5c-2b90-3985-bc6f-f56b951f9f01,SESCO,II.1.1,La Rioja,AR-F,annual,2018,naphtha combustion consumption by freight transport,0.27446265,TJ,CO2,73300.0,kg/TJ,20118.112244999997,kg -17460c23-d80c-308a-a023-ffb48d2980ed,SESCO,II.1.1,La Rioja,AR-F,annual,2018,naphtha combustion consumption by freight transport,0.27446265,TJ,CH4,3.0,kg/TJ,0.8233879499999999,kg -b8033cc7-bde4-3467-9c87-1898c0243fa6,SESCO,II.1.1,La Rioja,AR-F,annual,2018,naphtha combustion consumption by freight transport,0.27446265,TJ,N2O,0.6,kg/TJ,0.16467758999999998,kg -e264800f-3fd4-310d-96d4-efd07504d6a3,SESCO,II.1.1,Mendoza,AR-M,annual,2018,naphtha combustion consumption by freight transport,30.099403949999996,TJ,CO2,73300.0,kg/TJ,2206286.3095349995,kg -96d56c86-2fc9-30f8-b822-c88e7eacadbc,SESCO,II.1.1,Mendoza,AR-M,annual,2018,naphtha combustion consumption by freight transport,30.099403949999996,TJ,CH4,3.0,kg/TJ,90.29821184999999,kg -e23c0564-acc4-3783-85cb-1e9116917d12,SESCO,II.1.1,Mendoza,AR-M,annual,2018,naphtha combustion consumption by freight transport,30.099403949999996,TJ,N2O,0.6,kg/TJ,18.059642369999995,kg -142b54bb-5fc6-3960-8c88-ed6276aad0bc,SESCO,II.1.1,Misiones,AR-N,annual,2018,naphtha combustion consumption by freight transport,4.9403277,TJ,CO2,73300.0,kg/TJ,362126.02041,kg -b641d0f4-eb25-3d35-a364-5550d52d6b60,SESCO,II.1.1,Misiones,AR-N,annual,2018,naphtha combustion consumption by freight transport,4.9403277,TJ,CH4,3.0,kg/TJ,14.8209831,kg -2d1bccc5-f412-31ce-8ebc-c3f46334ace5,SESCO,II.1.1,Misiones,AR-N,annual,2018,naphtha combustion consumption by freight transport,4.9403277,TJ,N2O,0.6,kg/TJ,2.96419662,kg -4ca755fc-e83e-3e8f-a6e5-3a1a64fca942,SESCO,II.1.1,Neuquén,AR-Q,annual,2018,naphtha combustion consumption by freight transport,6.953053799999999,TJ,CO2,73300.0,kg/TJ,509658.84354,kg -b6059191-f172-3e33-9c97-c7504d149307,SESCO,II.1.1,Neuquén,AR-Q,annual,2018,naphtha combustion consumption by freight transport,6.953053799999999,TJ,CH4,3.0,kg/TJ,20.859161399999998,kg -e7239a40-6429-31d6-ae42-a763d34c9acd,SESCO,II.1.1,Neuquén,AR-Q,annual,2018,naphtha combustion consumption by freight transport,6.953053799999999,TJ,N2O,0.6,kg/TJ,4.171832279999999,kg -cc465217-5e00-3c83-acfd-ec1cbfb61628,SESCO,II.1.1,Rio Negro,AR-R,annual,2018,naphtha combustion consumption by freight transport,10.88701845,TJ,CO2,73300.0,kg/TJ,798018.452385,kg -55bcce52-d0b4-3445-8182-9d76ceda0f0c,SESCO,II.1.1,Rio Negro,AR-R,annual,2018,naphtha combustion consumption by freight transport,10.88701845,TJ,CH4,3.0,kg/TJ,32.66105535,kg -14b65eb4-287a-35a4-bb57-5a1a0b851e78,SESCO,II.1.1,Rio Negro,AR-R,annual,2018,naphtha combustion consumption by freight transport,10.88701845,TJ,N2O,0.6,kg/TJ,6.53221107,kg -2192626e-7860-38cd-a133-b4f30ec3b731,SESCO,II.1.1,Salta,AR-A,annual,2018,naphtha combustion consumption by freight transport,12.076356599999999,TJ,CO2,73300.0,kg/TJ,885196.9387799999,kg -943b9a68-4974-3ed7-a351-ed05b2ea4ee8,SESCO,II.1.1,Salta,AR-A,annual,2018,naphtha combustion consumption by freight transport,12.076356599999999,TJ,CH4,3.0,kg/TJ,36.2290698,kg -c4653660-fb95-3d6a-8c38-d32e6ff46a7a,SESCO,II.1.1,Salta,AR-A,annual,2018,naphtha combustion consumption by freight transport,12.076356599999999,TJ,N2O,0.6,kg/TJ,7.245813959999999,kg -2279bd90-1610-375b-9055-860b2d695a95,SESCO,II.1.1,San Juan,AR-J,annual,2018,naphtha combustion consumption by freight transport,2.5616514,TJ,CO2,73300.0,kg/TJ,187769.04762,kg -c1a0bb96-07eb-388a-89cb-3228ca1138d1,SESCO,II.1.1,San Juan,AR-J,annual,2018,naphtha combustion consumption by freight transport,2.5616514,TJ,CH4,3.0,kg/TJ,7.6849542,kg -3314db21-5e33-35d9-887d-5043bc540dad,SESCO,II.1.1,San Juan,AR-J,annual,2018,naphtha combustion consumption by freight transport,2.5616514,TJ,N2O,0.6,kg/TJ,1.53699084,kg -3c4360c2-6f20-34a1-979a-e880474956be,SESCO,II.1.1,San Luis,AR-D,annual,2018,naphtha combustion consumption by freight transport,3.99495635,TJ,CO2,73300.0,kg/TJ,292830.30045499996,kg -448ed535-a596-3901-a692-c3ade5c336c2,SESCO,II.1.1,San Luis,AR-D,annual,2018,naphtha combustion consumption by freight transport,3.99495635,TJ,CH4,3.0,kg/TJ,11.98486905,kg -4d7ec038-0860-31af-9d0b-10069c751c58,SESCO,II.1.1,San Luis,AR-D,annual,2018,naphtha combustion consumption by freight transport,3.99495635,TJ,N2O,0.6,kg/TJ,2.39697381,kg -3e74813a-5453-39bc-8271-47aec6fd2b23,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2018,naphtha combustion consumption by freight transport,1.49429665,TJ,CO2,73300.0,kg/TJ,109531.94444499999,kg -971cc9dc-fc2d-35cc-977f-a6de19a352d1,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2018,naphtha combustion consumption by freight transport,1.49429665,TJ,CH4,3.0,kg/TJ,4.48288995,kg -0a2fc524-ebbc-375d-b15c-b2793179572c,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2018,naphtha combustion consumption by freight transport,1.49429665,TJ,N2O,0.6,kg/TJ,0.8965779899999999,kg -ce394db3-2272-3284-b527-f7f9fcb2b1c6,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,naphtha combustion consumption by freight transport,41.62683524999999,TJ,CO2,73300.0,kg/TJ,3051247.0238249996,kg -018c6211-20e3-337c-a5de-5c00ba143437,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,naphtha combustion consumption by freight transport,41.62683524999999,TJ,CH4,3.0,kg/TJ,124.88050574999997,kg -14608e3d-bbf3-3d7b-b5b3-f9df746fbb75,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,naphtha combustion consumption by freight transport,41.62683524999999,TJ,N2O,0.6,kg/TJ,24.976101149999995,kg -0f186e9a-4eb9-3de4-aa1d-77c5481767a9,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2018,naphtha combustion consumption by freight transport,0.8843796499999999,TJ,CO2,73300.0,kg/TJ,64825.02834499999,kg -e004bb2c-cc53-33c4-a63a-663bb9b61c11,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2018,naphtha combustion consumption by freight transport,0.8843796499999999,TJ,CH4,3.0,kg/TJ,2.6531389499999998,kg -ef892a92-8222-31e8-8dac-8ad890db8cba,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2018,naphtha combustion consumption by freight transport,0.8843796499999999,TJ,N2O,0.6,kg/TJ,0.5306277899999999,kg -d3d4a14d-6e36-32fa-8c2a-f685aa900c59,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2018,naphtha combustion consumption by freight transport,6.8310704,TJ,CO2,73300.0,kg/TJ,500717.46031999995,kg -364dcef8-a20f-3b1b-abb4-dba369026b92,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2018,naphtha combustion consumption by freight transport,6.8310704,TJ,CH4,3.0,kg/TJ,20.493211199999998,kg -0f4b23b9-a280-3967-892a-d35e6048b487,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2018,naphtha combustion consumption by freight transport,6.8310704,TJ,N2O,0.6,kg/TJ,4.098642239999999,kg -41205804-4ee4-3857-8a1e-5b57ff05ad46,SESCO,II.1.1,Tucuman,AR-T,annual,2018,naphtha combustion consumption by freight transport,9.91115125,TJ,CO2,73300.0,kg/TJ,726487.3866249999,kg -5fd1ec9d-3977-3652-b504-873e5e01666d,SESCO,II.1.1,Tucuman,AR-T,annual,2018,naphtha combustion consumption by freight transport,9.91115125,TJ,CH4,3.0,kg/TJ,29.73345375,kg -8bb72bcf-25a8-326f-8eb7-cb35304ff3c4,SESCO,II.1.1,Tucuman,AR-T,annual,2018,naphtha combustion consumption by freight transport,9.91115125,TJ,N2O,0.6,kg/TJ,5.946690749999999,kg -e1bb4e4b-f000-31ff-86dd-ab28f6ece515,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,naphtha combustion consumption by freight transport,308.9839522,TJ,CO2,73300.0,kg/TJ,22648523.696259998,kg -8c7241d7-84e4-3f9c-a0a4-b06c54669802,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,naphtha combustion consumption by freight transport,308.9839522,TJ,CH4,3.0,kg/TJ,926.9518565999999,kg -8335a5f3-8222-3db0-88d7-416584814e99,SESCO,II.1.1,Buenos Aires,AR-B,annual,2018,naphtha combustion consumption by freight transport,308.9839522,TJ,N2O,0.6,kg/TJ,185.39037131999999,kg -f22e09cb-e2fe-3cd7-8f33-58652191fc3b,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,naphtha combustion consumption by freight transport,402.27075734999994,TJ,CO2,73300.0,kg/TJ,29486446.513754997,kg -3d677baa-a2f9-307f-8d59-bf95087ac8cf,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,naphtha combustion consumption by freight transport,402.27075734999994,TJ,CH4,3.0,kg/TJ,1206.8122720499998,kg -f7c15eb1-6777-34fc-9dcb-e85da21fe22d,SESCO,II.1.1,Capital Federal,AR-C,annual,2018,naphtha combustion consumption by freight transport,402.27075734999994,TJ,N2O,0.6,kg/TJ,241.36245440999994,kg -495d3155-0031-344c-88ef-b9071e54ca06,SESCO,II.1.1,Catamarca,AR-K,annual,2018,naphtha combustion consumption by freight transport,0.27446265,TJ,CO2,73300.0,kg/TJ,20118.112244999997,kg -c9ef79b0-82a1-3d23-8060-1d6da95ed971,SESCO,II.1.1,Catamarca,AR-K,annual,2018,naphtha combustion consumption by freight transport,0.27446265,TJ,CH4,3.0,kg/TJ,0.8233879499999999,kg -98fd514a-2f75-38f6-8fab-3c3c09470107,SESCO,II.1.1,Catamarca,AR-K,annual,2018,naphtha combustion consumption by freight transport,0.27446265,TJ,N2O,0.6,kg/TJ,0.16467758999999998,kg -2897f612-9a2a-3cec-96c5-efb332ee16d5,SESCO,II.1.1,Chaco,AR-H,annual,2018,naphtha combustion consumption by freight transport,10.826026749999999,TJ,CO2,73300.0,kg/TJ,793547.7607749999,kg -328e546b-b19f-3ec2-8d6b-9272b6e97b0a,SESCO,II.1.1,Chaco,AR-H,annual,2018,naphtha combustion consumption by freight transport,10.826026749999999,TJ,CH4,3.0,kg/TJ,32.47808025,kg -649f9e8f-6215-3baa-b51c-c4159bd1b518,SESCO,II.1.1,Chaco,AR-H,annual,2018,naphtha combustion consumption by freight transport,10.826026749999999,TJ,N2O,0.6,kg/TJ,6.495616049999999,kg -13838367-bca0-3a75-aef7-de6bb3a31543,SESCO,II.1.1,Chubut,AR-U,annual,2018,naphtha combustion consumption by freight transport,4.05594805,TJ,CO2,73300.0,kg/TJ,297300.99206499994,kg -77fc351f-9c5c-33ac-8162-4d2d0b5e9497,SESCO,II.1.1,Chubut,AR-U,annual,2018,naphtha combustion consumption by freight transport,4.05594805,TJ,CH4,3.0,kg/TJ,12.167844149999999,kg -14b5bf64-b083-3a17-9f24-31cddd118d75,SESCO,II.1.1,Chubut,AR-U,annual,2018,naphtha combustion consumption by freight transport,4.05594805,TJ,N2O,0.6,kg/TJ,2.4335688299999996,kg -365a4642-13b6-3fdc-8aad-e5072b9bd5c2,SESCO,II.1.1,Corrientes,AR-W,annual,2018,naphtha combustion consumption by freight transport,7.440987399999999,TJ,CO2,73300.0,kg/TJ,545424.37642,kg -cff13ce5-7ef4-3f19-b302-782323dddf32,SESCO,II.1.1,Corrientes,AR-W,annual,2018,naphtha combustion consumption by freight transport,7.440987399999999,TJ,CH4,3.0,kg/TJ,22.3229622,kg -9843bdde-f91b-37ea-b083-cb0fef5fac58,SESCO,II.1.1,Corrientes,AR-W,annual,2018,naphtha combustion consumption by freight transport,7.440987399999999,TJ,N2O,0.6,kg/TJ,4.46459244,kg -d96ff3e2-b20c-36a4-b8df-6b44cab7fdcd,SESCO,II.1.1,Córdoba,AR-X,annual,2018,naphtha combustion consumption by freight transport,30.007916399999996,TJ,CO2,73300.0,kg/TJ,2199580.27212,kg -a7fad928-bd87-3c58-950f-d1c2f3f55812,SESCO,II.1.1,Córdoba,AR-X,annual,2018,naphtha combustion consumption by freight transport,30.007916399999996,TJ,CH4,3.0,kg/TJ,90.02374919999998,kg -22c4285e-3bf9-33c1-805f-20ecd84038ad,SESCO,II.1.1,Córdoba,AR-X,annual,2018,naphtha combustion consumption by freight transport,30.007916399999996,TJ,N2O,0.6,kg/TJ,18.004749839999995,kg -f77f31d7-3fc4-3af2-961a-129decadb91e,SESCO,II.1.1,Entre Rios,AR-E,annual,2018,naphtha combustion consumption by freight transport,23.451308649999998,TJ,CO2,73300.0,kg/TJ,1718980.9240449998,kg -8d5dc671-7d1e-37ed-b63c-424ddf379328,SESCO,II.1.1,Entre Rios,AR-E,annual,2018,naphtha combustion consumption by freight transport,23.451308649999998,TJ,CH4,3.0,kg/TJ,70.35392594999999,kg -c9cb146e-aadf-3083-9b26-7e8cb4fdb0be,SESCO,II.1.1,Entre Rios,AR-E,annual,2018,naphtha combustion consumption by freight transport,23.451308649999998,TJ,N2O,0.6,kg/TJ,14.070785189999999,kg -15010a74-b85d-3a36-878b-cd268f21d55d,SESCO,II.1.1,Formosa,AR-P,annual,2018,naphtha combustion consumption by freight transport,0.48793359999999997,TJ,CO2,73300.0,kg/TJ,35765.53288,kg -94d0488e-1112-3051-830e-a263d9fb1ad9,SESCO,II.1.1,Formosa,AR-P,annual,2018,naphtha combustion consumption by freight transport,0.48793359999999997,TJ,CH4,3.0,kg/TJ,1.4638008,kg -39e9ccee-3429-3ef0-a5b7-3cbffbb4e614,SESCO,II.1.1,Formosa,AR-P,annual,2018,naphtha combustion consumption by freight transport,0.48793359999999997,TJ,N2O,0.6,kg/TJ,0.29276016,kg -787dfd05-d56a-328c-bbc4-c1c1cdbd8a6c,SESCO,II.1.1,Jujuy,AR-Y,annual,2018,naphtha combustion consumption by freight transport,0.8538838,TJ,CO2,73300.0,kg/TJ,62589.682539999994,kg -d797f51e-5c64-3d5b-9884-eaf12bc361d5,SESCO,II.1.1,Jujuy,AR-Y,annual,2018,naphtha combustion consumption by freight transport,0.8538838,TJ,CH4,3.0,kg/TJ,2.5616513999999997,kg -0ce1b4d7-7476-3470-880e-a83163dc1fcd,SESCO,II.1.1,Jujuy,AR-Y,annual,2018,naphtha combustion consumption by freight transport,0.8538838,TJ,N2O,0.6,kg/TJ,0.5123302799999999,kg -3cd60a32-28dc-3e78-954c-608fa93beb45,SESCO,II.1.1,La Pampa,AR-L,annual,2018,naphtha combustion consumption by freight transport,3.4460310499999993,TJ,CO2,73300.0,kg/TJ,252594.07596499994,kg -fcafb57b-9134-3757-ba84-b500be8f317a,SESCO,II.1.1,La Pampa,AR-L,annual,2018,naphtha combustion consumption by freight transport,3.4460310499999993,TJ,CH4,3.0,kg/TJ,10.338093149999999,kg -e1f2e949-339e-30d2-bc95-94e0480593db,SESCO,II.1.1,La Pampa,AR-L,annual,2018,naphtha combustion consumption by freight transport,3.4460310499999993,TJ,N2O,0.6,kg/TJ,2.0676186299999997,kg -af344c83-169a-3ad9-bd5f-7e0979f12042,SESCO,II.1.1,La Rioja,AR-F,annual,2018,naphtha combustion consumption by freight transport,1.7687592999999997,TJ,CO2,73300.0,kg/TJ,129650.05668999998,kg -d3705426-0ef8-357c-b8fe-0999f956a269,SESCO,II.1.1,La Rioja,AR-F,annual,2018,naphtha combustion consumption by freight transport,1.7687592999999997,TJ,CH4,3.0,kg/TJ,5.3062778999999995,kg -1be20c0e-332c-3531-b537-1cbadfc420fa,SESCO,II.1.1,La Rioja,AR-F,annual,2018,naphtha combustion consumption by freight transport,1.7687592999999997,TJ,N2O,0.6,kg/TJ,1.0612555799999999,kg -5443b1f2-1d92-30e0-99df-10a352c0f0e5,SESCO,II.1.1,Mendoza,AR-M,annual,2018,naphtha combustion consumption by freight transport,52.269886899999996,TJ,CO2,73300.0,kg/TJ,3831382.7097699996,kg -284478f4-d29b-3e6e-9757-fb4bac0dfcde,SESCO,II.1.1,Mendoza,AR-M,annual,2018,naphtha combustion consumption by freight transport,52.269886899999996,TJ,CH4,3.0,kg/TJ,156.8096607,kg -46f35cf8-ee9f-3993-9eda-ddb176c7a678,SESCO,II.1.1,Mendoza,AR-M,annual,2018,naphtha combustion consumption by freight transport,52.269886899999996,TJ,N2O,0.6,kg/TJ,31.361932139999997,kg -d7da523d-db39-32ab-b4a4-cdca71b593b4,SESCO,II.1.1,Misiones,AR-N,annual,2018,naphtha combustion consumption by freight transport,5.39776545,TJ,CO2,73300.0,kg/TJ,395656.20748499996,kg -3b29d48f-66e9-36a4-b50e-2b0891657cd1,SESCO,II.1.1,Misiones,AR-N,annual,2018,naphtha combustion consumption by freight transport,5.39776545,TJ,CH4,3.0,kg/TJ,16.193296349999997,kg -ab6a5b76-d813-3c1b-b580-c40f78c08b71,SESCO,II.1.1,Misiones,AR-N,annual,2018,naphtha combustion consumption by freight transport,5.39776545,TJ,N2O,0.6,kg/TJ,3.23865927,kg -49a6d926-62fd-328c-88f0-9de38eb9b4e2,SESCO,II.1.1,Neuquén,AR-Q,annual,2018,naphtha combustion consumption by freight transport,16.7727175,TJ,CO2,73300.0,kg/TJ,1229440.19275,kg -b05463c6-eb72-3dda-af66-a2a30ee721f6,SESCO,II.1.1,Neuquén,AR-Q,annual,2018,naphtha combustion consumption by freight transport,16.7727175,TJ,CH4,3.0,kg/TJ,50.3181525,kg -d906f8ef-03fc-39d0-9c6d-2495ac226146,SESCO,II.1.1,Neuquén,AR-Q,annual,2018,naphtha combustion consumption by freight transport,16.7727175,TJ,N2O,0.6,kg/TJ,10.063630499999999,kg -75f6cda7-99b8-35ec-9803-91be851ce7f9,SESCO,II.1.1,Rio Negro,AR-R,annual,2018,naphtha combustion consumption by freight transport,46.2317086,TJ,CO2,73300.0,kg/TJ,3388784.24038,kg -58b89a73-95eb-39d5-a504-5af126588411,SESCO,II.1.1,Rio Negro,AR-R,annual,2018,naphtha combustion consumption by freight transport,46.2317086,TJ,CH4,3.0,kg/TJ,138.6951258,kg -1f44de43-cb27-3f42-a836-62a18c62e85b,SESCO,II.1.1,Rio Negro,AR-R,annual,2018,naphtha combustion consumption by freight transport,46.2317086,TJ,N2O,0.6,kg/TJ,27.739025159999997,kg -ea463d26-d293-373a-9ea7-c0052a7cd516,SESCO,II.1.1,Salta,AR-A,annual,2018,naphtha combustion consumption by freight transport,5.76371565,TJ,CO2,73300.0,kg/TJ,422480.357145,kg -ecf5af1a-78f4-3fad-83ee-645994478fc2,SESCO,II.1.1,Salta,AR-A,annual,2018,naphtha combustion consumption by freight transport,5.76371565,TJ,CH4,3.0,kg/TJ,17.291146949999998,kg -02741b66-889b-34f0-910c-fe91a310f94d,SESCO,II.1.1,Salta,AR-A,annual,2018,naphtha combustion consumption by freight transport,5.76371565,TJ,N2O,0.6,kg/TJ,3.45822939,kg -f78b592c-82c5-33c1-ac74-78e3ced6b826,SESCO,II.1.1,San Juan,AR-J,annual,2018,naphtha combustion consumption by freight transport,1.1283464499999998,TJ,CO2,73300.0,kg/TJ,82707.79478499999,kg -aaba9b69-6526-3415-9d67-d44a316d1398,SESCO,II.1.1,San Juan,AR-J,annual,2018,naphtha combustion consumption by freight transport,1.1283464499999998,TJ,CH4,3.0,kg/TJ,3.3850393499999996,kg -b708096d-9e2d-33ab-8051-3350bbb4acbc,SESCO,II.1.1,San Juan,AR-J,annual,2018,naphtha combustion consumption by freight transport,1.1283464499999998,TJ,N2O,0.6,kg/TJ,0.6770078699999998,kg -386d043d-78bb-36c5-80b7-2eec6b96c3de,SESCO,II.1.1,San Luis,AR-D,annual,2018,naphtha combustion consumption by freight transport,3.7509895499999995,TJ,CO2,73300.0,kg/TJ,274947.534015,kg -a5685db3-4d56-359e-802e-361bb705af35,SESCO,II.1.1,San Luis,AR-D,annual,2018,naphtha combustion consumption by freight transport,3.7509895499999995,TJ,CH4,3.0,kg/TJ,11.252968649999998,kg -69aed3fc-f374-33d9-80a3-f311be82a721,SESCO,II.1.1,San Luis,AR-D,annual,2018,naphtha combustion consumption by freight transport,3.7509895499999995,TJ,N2O,0.6,kg/TJ,2.2505937299999994,kg -8ed3eb32-93a9-3cd1-abd0-a1822d86e3c6,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2018,naphtha combustion consumption by freight transport,1.2808257,TJ,CO2,73300.0,kg/TJ,93884.52381,kg -07872109-ddd1-36af-b30d-d544c36f08bd,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2018,naphtha combustion consumption by freight transport,1.2808257,TJ,CH4,3.0,kg/TJ,3.8424771,kg -0c2ebc2d-c61b-34ef-b5d8-57f0c61f25d3,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2018,naphtha combustion consumption by freight transport,1.2808257,TJ,N2O,0.6,kg/TJ,0.76849542,kg -6e261245-2bff-32ab-a46a-e8959bcb6f43,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,naphtha combustion consumption by freight transport,68.73764589999999,TJ,CO2,73300.0,kg/TJ,5038469.4444699995,kg -ba3cfc64-4e8d-35a5-a3d2-3c52a593d6a0,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,naphtha combustion consumption by freight transport,68.73764589999999,TJ,CH4,3.0,kg/TJ,206.21293769999997,kg -68f6cfe9-fe03-3243-90f1-fbce4fd5bc93,SESCO,II.1.1,Santa Fe,AR-S,annual,2018,naphtha combustion consumption by freight transport,68.73764589999999,TJ,N2O,0.6,kg/TJ,41.242587539999995,kg -198ff445-8379-3379-be29-9f4569bf08ff,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2018,naphtha combustion consumption by freight transport,0.7928921,TJ,CO2,73300.0,kg/TJ,58118.99093,kg -2ad5c6b8-1683-3281-a388-e0e57deb2e19,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2018,naphtha combustion consumption by freight transport,0.7928921,TJ,CH4,3.0,kg/TJ,2.3786763,kg -00d8655d-c581-3b23-9cd0-5cd02ea6d769,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2018,naphtha combustion consumption by freight transport,0.7928921,TJ,N2O,0.6,kg/TJ,0.47573526,kg -da7b50f7-36e4-3ea7-b2f3-5da4ca57f4c6,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2018,naphtha combustion consumption by freight transport,1.6162800499999999,TJ,CO2,73300.0,kg/TJ,118473.32766499999,kg -ac30d7a7-431b-39e2-8c6d-a70e135ca525,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2018,naphtha combustion consumption by freight transport,1.6162800499999999,TJ,CH4,3.0,kg/TJ,4.848840149999999,kg -130a61a6-fef3-328a-aac1-bcfb188cfbee,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2018,naphtha combustion consumption by freight transport,1.6162800499999999,TJ,N2O,0.6,kg/TJ,0.9697680299999999,kg -25408d46-5176-3d49-8a59-13a1edad90d5,SESCO,II.1.1,Tucuman,AR-T,annual,2018,naphtha combustion consumption by freight transport,5.51974885,TJ,CO2,73300.0,kg/TJ,404597.590705,kg -1befbc35-7fce-395a-8c04-d6f63c358d4a,SESCO,II.1.1,Tucuman,AR-T,annual,2018,naphtha combustion consumption by freight transport,5.51974885,TJ,CH4,3.0,kg/TJ,16.55924655,kg -20e20065-fdbd-3f94-b5ca-3955ba2ff043,SESCO,II.1.1,Tucuman,AR-T,annual,2018,naphtha combustion consumption by freight transport,5.51974885,TJ,N2O,0.6,kg/TJ,3.31184931,kg -44b0a48c-cb6a-392c-b791-f4b701cd2b9e,SESCO,II.5.1,Buenos Aires,AR-B,annual,2019,naphtha combustion consumption by agriculture machines,0.1809192,TJ,CO2,73300.0,kg/TJ,13261.37736,kg -07ecca10-a370-3fee-b4ee-3b2f1af33ecf,SESCO,II.5.1,Buenos Aires,AR-B,annual,2019,naphtha combustion consumption by agriculture machines,0.1809192,TJ,CH4,3.0,kg/TJ,0.5427576000000001,kg -40bf338b-853b-3851-8fa6-c76f97795ed3,SESCO,II.5.1,Buenos Aires,AR-B,annual,2019,naphtha combustion consumption by agriculture machines,0.1809192,TJ,N2O,0.6,kg/TJ,0.10855152,kg -f5a90ed2-9087-305a-93aa-71573b1e7ce8,SESCO,II.5.1,Córdoba,AR-X,annual,2019,naphtha combustion consumption by agriculture machines,1.1156684,TJ,CO2,73300.0,kg/TJ,81778.49372,kg -27ff8428-bc07-34f7-8288-51ac85f77a4c,SESCO,II.5.1,Córdoba,AR-X,annual,2019,naphtha combustion consumption by agriculture machines,1.1156684,TJ,CH4,3.0,kg/TJ,3.3470052,kg -521737b3-a692-35d7-9af9-b5769fe2f70b,SESCO,II.5.1,Córdoba,AR-X,annual,2019,naphtha combustion consumption by agriculture machines,1.1156684,TJ,N2O,0.6,kg/TJ,0.6694010399999999,kg -3145a5f3-8d7e-3a70-abfc-f57375e3af27,SESCO,II.5.1,Santa Fe,AR-S,annual,2019,naphtha combustion consumption by agriculture machines,10.644079599999998,TJ,CO2,73300.0,kg/TJ,780211.0346799998,kg -d5a63c23-a78f-3d59-89d7-2a46e61473e3,SESCO,II.5.1,Santa Fe,AR-S,annual,2019,naphtha combustion consumption by agriculture machines,10.644079599999998,TJ,CH4,3.0,kg/TJ,31.932238799999993,kg -4aa6f96c-26f3-3153-bcf2-fd8b93456d59,SESCO,II.5.1,Santa Fe,AR-S,annual,2019,naphtha combustion consumption by agriculture machines,10.644079599999998,TJ,N2O,0.6,kg/TJ,6.3864477599999985,kg -2460da74-fc3f-31e1-bc7a-ca4ce44e62c2,SESCO,II.5.1,Santa Fe,AR-S,annual,2019,naphtha combustion consumption by agriculture machines,1.2664343999999998,TJ,CO2,73300.0,kg/TJ,92829.64151999999,kg -e93f3812-9769-3001-828e-495823132e61,SESCO,II.5.1,Santa Fe,AR-S,annual,2019,naphtha combustion consumption by agriculture machines,1.2664343999999998,TJ,CH4,3.0,kg/TJ,3.7993031999999998,kg -7b48e2b8-00f4-329d-baa7-38478428b2e9,SESCO,II.5.1,Santa Fe,AR-S,annual,2019,naphtha combustion consumption by agriculture machines,1.2664343999999998,TJ,N2O,0.6,kg/TJ,0.7598606399999999,kg -1af3e197-d839-3933-954f-db1c86b4c746,SESCO,II.1.1,Buenos Aires,AR-B,annual,2019,naphtha combustion consumption by to the public,435.23128879999996,TJ,CO2,73300.0,kg/TJ,31902453.469039995,kg -21b79ebf-2b3d-3c4d-9fa2-07f202b86950,SESCO,II.1.1,Buenos Aires,AR-B,annual,2019,naphtha combustion consumption by to the public,435.23128879999996,TJ,CH4,3.0,kg/TJ,1305.6938664,kg -1638c145-73a4-3ce3-bd6f-5fc5de648e57,SESCO,II.1.1,Buenos Aires,AR-B,annual,2019,naphtha combustion consumption by to the public,435.23128879999996,TJ,N2O,0.6,kg/TJ,261.13877327999995,kg -692e116c-682a-376d-b2e0-c8aa775ad4b0,SESCO,II.1.1,Capital Federal,AR-C,annual,2019,naphtha combustion consumption by to the public,34.7666396,TJ,CO2,73300.0,kg/TJ,2548394.6826799996,kg -952d1604-0840-38e4-bcda-ccc7d7d2e414,SESCO,II.1.1,Capital Federal,AR-C,annual,2019,naphtha combustion consumption by to the public,34.7666396,TJ,CH4,3.0,kg/TJ,104.2999188,kg -de3a05e8-273c-30f9-ba28-975d0b974926,SESCO,II.1.1,Capital Federal,AR-C,annual,2019,naphtha combustion consumption by to the public,34.7666396,TJ,N2O,0.6,kg/TJ,20.85998376,kg -62601569-b6a9-3f52-95a1-142f54fb9fcb,SESCO,II.1.1,Catamarca,AR-K,annual,2019,naphtha combustion consumption by to the public,43.14922919999999,TJ,CO2,73300.0,kg/TJ,3162838.5003599995,kg -48374edf-c7a6-3cbf-a11f-bc41262bffb0,SESCO,II.1.1,Catamarca,AR-K,annual,2019,naphtha combustion consumption by to the public,43.14922919999999,TJ,CH4,3.0,kg/TJ,129.4476876,kg -4accca86-ab8a-3aac-837b-2cd5f031e05e,SESCO,II.1.1,Catamarca,AR-K,annual,2019,naphtha combustion consumption by to the public,43.14922919999999,TJ,N2O,0.6,kg/TJ,25.889537519999994,kg -062d94e3-dec0-3884-996b-0eaa52c45ba9,SESCO,II.1.1,Chaco,AR-H,annual,2019,naphtha combustion consumption by to the public,44.9584212,TJ,CO2,73300.0,kg/TJ,3295452.27396,kg -8be38f50-d8ac-3fd6-9ecd-2bdca242fcdb,SESCO,II.1.1,Chaco,AR-H,annual,2019,naphtha combustion consumption by to the public,44.9584212,TJ,CH4,3.0,kg/TJ,134.87526359999998,kg -8446056a-c613-3c19-86aa-92020bea2ce0,SESCO,II.1.1,Chaco,AR-H,annual,2019,naphtha combustion consumption by to the public,44.9584212,TJ,N2O,0.6,kg/TJ,26.975052719999997,kg -e93b7598-9ebf-304f-90b6-721d73bc56e5,SESCO,II.1.1,Corrientes,AR-W,annual,2019,naphtha combustion consumption by to the public,6.814623199999999,TJ,CO2,73300.0,kg/TJ,499511.8805599999,kg -ce3a0d97-a77e-362c-9ebc-fbe4d2fba181,SESCO,II.1.1,Corrientes,AR-W,annual,2019,naphtha combustion consumption by to the public,6.814623199999999,TJ,CH4,3.0,kg/TJ,20.443869599999996,kg -65f87ef3-f077-3acc-b7cb-a571b49e0286,SESCO,II.1.1,Corrientes,AR-W,annual,2019,naphtha combustion consumption by to the public,6.814623199999999,TJ,N2O,0.6,kg/TJ,4.0887739199999995,kg -9076f4bb-32bc-3f33-8c11-b5844a34cb2e,SESCO,II.1.1,Córdoba,AR-X,annual,2019,naphtha combustion consumption by to the public,234.5014364,TJ,CO2,73300.0,kg/TJ,17188955.288119998,kg -0cd496b5-f87d-3f7e-93be-d4477d6a18c3,SESCO,II.1.1,Córdoba,AR-X,annual,2019,naphtha combustion consumption by to the public,234.5014364,TJ,CH4,3.0,kg/TJ,703.5043092,kg -145c56bd-2c56-3ddc-b4ff-98e79c3c28b4,SESCO,II.1.1,Córdoba,AR-X,annual,2019,naphtha combustion consumption by to the public,234.5014364,TJ,N2O,0.6,kg/TJ,140.70086184,kg -e9c13e52-69bc-3cd5-afc6-0aa271a5a393,SESCO,II.1.1,Entre Rios,AR-E,annual,2019,naphtha combustion consumption by to the public,51.712737999999995,TJ,CO2,73300.0,kg/TJ,3790543.6953999996,kg -57088fda-16ef-3083-a2e7-445ec637a61f,SESCO,II.1.1,Entre Rios,AR-E,annual,2019,naphtha combustion consumption by to the public,51.712737999999995,TJ,CH4,3.0,kg/TJ,155.13821399999998,kg -37b9a0f4-5ec7-3ac0-aca9-52137eda1504,SESCO,II.1.1,Entre Rios,AR-E,annual,2019,naphtha combustion consumption by to the public,51.712737999999995,TJ,N2O,0.6,kg/TJ,31.027642799999995,kg -d1414bf1-7d98-3df8-9812-334f110c8ff6,SESCO,II.1.1,La Pampa,AR-L,annual,2019,naphtha combustion consumption by to the public,0.39199159999999994,TJ,CO2,73300.0,kg/TJ,28732.984279999997,kg -e8cedccd-6098-34f7-88ac-b5c94a00378c,SESCO,II.1.1,La Pampa,AR-L,annual,2019,naphtha combustion consumption by to the public,0.39199159999999994,TJ,CH4,3.0,kg/TJ,1.1759747999999999,kg -d6733d67-6663-3f80-9ccb-1ef29cd84e97,SESCO,II.1.1,La Pampa,AR-L,annual,2019,naphtha combustion consumption by to the public,0.39199159999999994,TJ,N2O,0.6,kg/TJ,0.23519495999999995,kg -63afd026-619d-38fc-a415-58496069b571,SESCO,II.1.1,La Rioja,AR-F,annual,2019,naphtha combustion consumption by to the public,0.33168519999999996,TJ,CO2,73300.0,kg/TJ,24312.525159999997,kg -594281e1-a6f5-3185-84fb-90297465168b,SESCO,II.1.1,La Rioja,AR-F,annual,2019,naphtha combustion consumption by to the public,0.33168519999999996,TJ,CH4,3.0,kg/TJ,0.9950555999999999,kg -f555df3c-1b41-3a51-8da8-97ba374caf17,SESCO,II.1.1,La Rioja,AR-F,annual,2019,naphtha combustion consumption by to the public,0.33168519999999996,TJ,N2O,0.6,kg/TJ,0.19901111999999996,kg -41f2c0df-3876-364f-82c1-d77458c10180,SESCO,II.1.1,Mendoza,AR-M,annual,2019,naphtha combustion consumption by to the public,64.37708199999999,TJ,CO2,73300.0,kg/TJ,4718840.110599999,kg -2e7aa3e7-ddad-3f35-8de0-4f7861db4940,SESCO,II.1.1,Mendoza,AR-M,annual,2019,naphtha combustion consumption by to the public,64.37708199999999,TJ,CH4,3.0,kg/TJ,193.13124599999998,kg -8c9d36de-e977-3fa7-b297-3413c7947785,SESCO,II.1.1,Mendoza,AR-M,annual,2019,naphtha combustion consumption by to the public,64.37708199999999,TJ,N2O,0.6,kg/TJ,38.62624919999999,kg -861b5a05-183e-323a-81c7-1c2f90dc0f4c,SESCO,II.1.1,Misiones,AR-N,annual,2019,naphtha combustion consumption by to the public,0.33168519999999996,TJ,CO2,73300.0,kg/TJ,24312.525159999997,kg -1419d14b-888d-3704-81f1-988c4416d0ed,SESCO,II.1.1,Misiones,AR-N,annual,2019,naphtha combustion consumption by to the public,0.33168519999999996,TJ,CH4,3.0,kg/TJ,0.9950555999999999,kg -3245bbb3-e279-387f-9899-722d92fc69a8,SESCO,II.1.1,Misiones,AR-N,annual,2019,naphtha combustion consumption by to the public,0.33168519999999996,TJ,N2O,0.6,kg/TJ,0.19901111999999996,kg -3ee0305e-0cb3-38a1-b35c-73c6da4af7f8,SESCO,II.1.1,San Juan,AR-J,annual,2019,naphtha combustion consumption by to the public,36.0029208,TJ,CO2,73300.0,kg/TJ,2639014.09464,kg -ea860661-7388-3d28-b4e2-d7483c002ca8,SESCO,II.1.1,San Juan,AR-J,annual,2019,naphtha combustion consumption by to the public,36.0029208,TJ,CH4,3.0,kg/TJ,108.0087624,kg -5ab48668-6ac4-3142-aa4e-1625219ebd66,SESCO,II.1.1,San Juan,AR-J,annual,2019,naphtha combustion consumption by to the public,36.0029208,TJ,N2O,0.6,kg/TJ,21.60175248,kg -09a942c9-5429-3440-a0ce-a8015c02f76d,SESCO,II.1.1,San Luis,AR-D,annual,2019,naphtha combustion consumption by to the public,37.66134679999999,TJ,CO2,73300.0,kg/TJ,2760576.7204399994,kg -71354c1a-8435-3910-9aca-3e87bd1fd874,SESCO,II.1.1,San Luis,AR-D,annual,2019,naphtha combustion consumption by to the public,37.66134679999999,TJ,CH4,3.0,kg/TJ,112.98404039999997,kg -701ddb2b-7f91-321d-9ab0-9a9bbfd27351,SESCO,II.1.1,San Luis,AR-D,annual,2019,naphtha combustion consumption by to the public,37.66134679999999,TJ,N2O,0.6,kg/TJ,22.59680807999999,kg -c4fe8c01-c122-33aa-95d3-92667a035585,SESCO,II.1.1,Santa Fe,AR-S,annual,2019,naphtha combustion consumption by to the public,135.56878719999997,TJ,CO2,73300.0,kg/TJ,9937192.101759998,kg -d6bdcc2e-b826-341c-a315-32b737955f32,SESCO,II.1.1,Santa Fe,AR-S,annual,2019,naphtha combustion consumption by to the public,135.56878719999997,TJ,CH4,3.0,kg/TJ,406.7063615999999,kg -2127839a-251c-34cc-9905-a60efc719223,SESCO,II.1.1,Santa Fe,AR-S,annual,2019,naphtha combustion consumption by to the public,135.56878719999997,TJ,N2O,0.6,kg/TJ,81.34127231999999,kg -99306d2b-e3c9-332e-933d-541e0b95efc5,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2019,naphtha combustion consumption by to the public,29.097838,TJ,CO2,73300.0,kg/TJ,2132871.5254,kg -d55f8f06-bcd4-3947-a1ae-95e6789e3585,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2019,naphtha combustion consumption by to the public,29.097838,TJ,CH4,3.0,kg/TJ,87.293514,kg -73320d57-4c0f-3c1d-9110-01f04c6e89b9,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2019,naphtha combustion consumption by to the public,29.097838,TJ,N2O,0.6,kg/TJ,17.458702799999998,kg -669c009b-a7b4-39d0-bdc9-136d02fe23dc,SESCO,II.1.1,Tucuman,AR-T,annual,2019,naphtha combustion consumption by to the public,1.7790388,TJ,CO2,73300.0,kg/TJ,130403.54404,kg -67ca6f9b-55a1-3cb9-85e9-9bae4f542020,SESCO,II.1.1,Tucuman,AR-T,annual,2019,naphtha combustion consumption by to the public,1.7790388,TJ,CH4,3.0,kg/TJ,5.337116399999999,kg -8ad10bed-5fd4-3e35-8516-3acd651db2bc,SESCO,II.1.1,Tucuman,AR-T,annual,2019,naphtha combustion consumption by to the public,1.7790388,TJ,N2O,0.6,kg/TJ,1.0674232799999999,kg -be2f7279-90aa-365a-8e15-89e0fb3d04ad,SESCO,II.1.1,Buenos Aires,AR-B,annual,2019,naphtha combustion consumption by to the public,32.3543836,TJ,CO2,73300.0,kg/TJ,2371576.31788,kg -f472ee13-16d9-3645-8743-fe247b02f8da,SESCO,II.1.1,Buenos Aires,AR-B,annual,2019,naphtha combustion consumption by to the public,32.3543836,TJ,CH4,3.0,kg/TJ,97.06315079999999,kg -ae8827f2-44ba-3c72-b3a3-871f40308e56,SESCO,II.1.1,Buenos Aires,AR-B,annual,2019,naphtha combustion consumption by to the public,32.3543836,TJ,N2O,0.6,kg/TJ,19.41263016,kg -724625b8-770f-310f-9ac8-40ed19f979c6,SESCO,II.1.1,Capital Federal,AR-C,annual,2019,naphtha combustion consumption by to the public,5.849720799999999,TJ,CO2,73300.0,kg/TJ,428784.5346399999,kg -f7db118d-fd80-3a35-bdf1-8ab6002ac8ea,SESCO,II.1.1,Capital Federal,AR-C,annual,2019,naphtha combustion consumption by to the public,5.849720799999999,TJ,CH4,3.0,kg/TJ,17.549162399999997,kg -6e9311b2-7a41-3c3b-9afa-d2a431818130,SESCO,II.1.1,Capital Federal,AR-C,annual,2019,naphtha combustion consumption by to the public,5.849720799999999,TJ,N2O,0.6,kg/TJ,3.5098324799999996,kg -2a0d1069-1333-3e66-b0f4-9d69263287c7,SESCO,II.1.1,Catamarca,AR-K,annual,2019,naphtha combustion consumption by to the public,3.6786904,TJ,CO2,73300.0,kg/TJ,269648.00632,kg -947e32bb-9630-364f-b8e5-84ca99b0a4a1,SESCO,II.1.1,Catamarca,AR-K,annual,2019,naphtha combustion consumption by to the public,3.6786904,TJ,CH4,3.0,kg/TJ,11.036071199999999,kg -8d65e8e2-906e-32ab-8f06-94fadd200a02,SESCO,II.1.1,Catamarca,AR-K,annual,2019,naphtha combustion consumption by to the public,3.6786904,TJ,N2O,0.6,kg/TJ,2.20721424,kg -d17765b2-906b-367d-b086-bb411881217a,SESCO,II.1.1,Chaco,AR-H,annual,2019,naphtha combustion consumption by to the public,3.3168519999999995,TJ,CO2,73300.0,kg/TJ,243125.25159999996,kg -e6b76b3b-8350-3a17-ad85-d902c047af59,SESCO,II.1.1,Chaco,AR-H,annual,2019,naphtha combustion consumption by to the public,3.3168519999999995,TJ,CH4,3.0,kg/TJ,9.950555999999999,kg -07050e0d-1a98-33b9-87fd-4a67aea7f4a9,SESCO,II.1.1,Chaco,AR-H,annual,2019,naphtha combustion consumption by to the public,3.3168519999999995,TJ,N2O,0.6,kg/TJ,1.9901111999999996,kg -06a7d956-cf54-3ce2-9f19-07d16a6ff070,SESCO,II.1.1,Corrientes,AR-W,annual,2019,naphtha combustion consumption by to the public,0.8141364,TJ,CO2,73300.0,kg/TJ,59676.19812,kg -8145caf1-ebc9-3071-96a6-df67c1cca016,SESCO,II.1.1,Corrientes,AR-W,annual,2019,naphtha combustion consumption by to the public,0.8141364,TJ,CH4,3.0,kg/TJ,2.4424092,kg -13bf69ae-9a9e-3540-95e4-fdbddbb80042,SESCO,II.1.1,Corrientes,AR-W,annual,2019,naphtha combustion consumption by to the public,0.8141364,TJ,N2O,0.6,kg/TJ,0.48848183999999994,kg -70abf4c1-bf03-31dc-b5ef-7114252e3a1d,SESCO,II.1.1,Córdoba,AR-X,annual,2019,naphtha combustion consumption by to the public,35.5204696,TJ,CO2,73300.0,kg/TJ,2603650.4216799997,kg -603e403c-6cc6-3d3b-bbe9-2a1dd40c3155,SESCO,II.1.1,Córdoba,AR-X,annual,2019,naphtha combustion consumption by to the public,35.5204696,TJ,CH4,3.0,kg/TJ,106.5614088,kg -ca2487c7-54a1-3fff-ac69-e4cd1388528f,SESCO,II.1.1,Córdoba,AR-X,annual,2019,naphtha combustion consumption by to the public,35.5204696,TJ,N2O,0.6,kg/TJ,21.312281759999998,kg -11b47dc5-d256-3479-9593-146f80da60cc,SESCO,II.1.1,Entre Rios,AR-E,annual,2019,naphtha combustion consumption by to the public,4.070682,TJ,CO2,73300.0,kg/TJ,298380.99059999996,kg -5a8fcbe5-e544-3576-8d7d-ee87f273aace,SESCO,II.1.1,Entre Rios,AR-E,annual,2019,naphtha combustion consumption by to the public,4.070682,TJ,CH4,3.0,kg/TJ,12.212045999999999,kg -56574520-78e2-3386-944e-9216059b1c72,SESCO,II.1.1,Entre Rios,AR-E,annual,2019,naphtha combustion consumption by to the public,4.070682,TJ,N2O,0.6,kg/TJ,2.4424091999999997,kg -ae868e7b-a846-3d92-94b5-c21dea5c4d54,SESCO,II.1.1,La Rioja,AR-F,annual,2019,naphtha combustion consumption by to the public,0.2713788,TJ,CO2,73300.0,kg/TJ,19892.066039999998,kg -44bc26e8-2ba2-30c1-872d-f625c777b68c,SESCO,II.1.1,La Rioja,AR-F,annual,2019,naphtha combustion consumption by to the public,0.2713788,TJ,CH4,3.0,kg/TJ,0.8141364,kg -fe02ec97-34a7-3534-bfce-f0d3372f55eb,SESCO,II.1.1,La Rioja,AR-F,annual,2019,naphtha combustion consumption by to the public,0.2713788,TJ,N2O,0.6,kg/TJ,0.16282728,kg -40d8be7f-8665-3828-a60f-40675a6764c7,SESCO,II.1.1,Mendoza,AR-M,annual,2019,naphtha combustion consumption by to the public,9.950555999999999,TJ,CO2,73300.0,kg/TJ,729375.7547999999,kg -e341b618-188d-3d47-8490-a1a3c50a08c7,SESCO,II.1.1,Mendoza,AR-M,annual,2019,naphtha combustion consumption by to the public,9.950555999999999,TJ,CH4,3.0,kg/TJ,29.851667999999997,kg -57aac8ce-ac2c-36a4-a4a1-90f79abd3899,SESCO,II.1.1,Mendoza,AR-M,annual,2019,naphtha combustion consumption by to the public,9.950555999999999,TJ,N2O,0.6,kg/TJ,5.970333599999999,kg -26ac0d7c-4921-3969-a7a5-854fc3d086a2,SESCO,II.1.1,San Juan,AR-J,annual,2019,naphtha combustion consumption by to the public,6.030639999999999,TJ,CO2,73300.0,kg/TJ,442045.91199999995,kg -331d6379-1277-32b6-a9fc-a6c67e583063,SESCO,II.1.1,San Juan,AR-J,annual,2019,naphtha combustion consumption by to the public,6.030639999999999,TJ,CH4,3.0,kg/TJ,18.09192,kg -e2820cae-cd3e-3cdc-aae0-51e3a49893ac,SESCO,II.1.1,San Juan,AR-J,annual,2019,naphtha combustion consumption by to the public,6.030639999999999,TJ,N2O,0.6,kg/TJ,3.6183839999999994,kg -a364d403-7579-3787-8434-0f27140836a7,SESCO,II.1.1,San Luis,AR-D,annual,2019,naphtha combustion consumption by to the public,1.206128,TJ,CO2,73300.0,kg/TJ,88409.1824,kg -b4eee3d1-5455-3d3d-835d-16798b18fa7f,SESCO,II.1.1,San Luis,AR-D,annual,2019,naphtha combustion consumption by to the public,1.206128,TJ,CH4,3.0,kg/TJ,3.6183840000000003,kg -df05a3e8-e196-3c2a-b49e-7c8ba7e1aa4d,SESCO,II.1.1,San Luis,AR-D,annual,2019,naphtha combustion consumption by to the public,1.206128,TJ,N2O,0.6,kg/TJ,0.7236768,kg -7dd07bbd-9dde-39c2-b1f6-f75b7e10e550,SESCO,II.1.1,Santa Fe,AR-S,annual,2019,naphtha combustion consumption by to the public,25.931751999999996,TJ,CO2,73300.0,kg/TJ,1900797.4215999998,kg -2e064f2b-4f7d-33af-bd29-a5c04775d249,SESCO,II.1.1,Santa Fe,AR-S,annual,2019,naphtha combustion consumption by to the public,25.931751999999996,TJ,CH4,3.0,kg/TJ,77.795256,kg -18ac7541-c2ba-35dc-9229-4148706d9557,SESCO,II.1.1,Santa Fe,AR-S,annual,2019,naphtha combustion consumption by to the public,25.931751999999996,TJ,N2O,0.6,kg/TJ,15.559051199999997,kg -2b837f50-e11a-389c-b71a-44246273bb25,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2019,naphtha combustion consumption by to the public,3.8596095999999998,TJ,CO2,73300.0,kg/TJ,282909.38367999997,kg -ed81b605-868e-35a6-a7e4-4fe0fe101aa6,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2019,naphtha combustion consumption by to the public,3.8596095999999998,TJ,CH4,3.0,kg/TJ,11.5788288,kg -984efd6f-2eab-3fbd-8dff-4445dc45f35e,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2019,naphtha combustion consumption by to the public,3.8596095999999998,TJ,N2O,0.6,kg/TJ,2.3157657599999997,kg -230b1f3b-df06-3bf2-a4ed-b4f250803ebe,SESCO,II.1.1,Tucuman,AR-T,annual,2019,naphtha combustion consumption by to the public,0.150766,TJ,CO2,73300.0,kg/TJ,11051.1478,kg -bc44472a-7740-3c92-9a6e-1e4fffa4063e,SESCO,II.1.1,Tucuman,AR-T,annual,2019,naphtha combustion consumption by to the public,0.150766,TJ,CH4,3.0,kg/TJ,0.45229800000000003,kg -047fbf6c-9120-3f32-8cf4-01f0ac5f9b2e,SESCO,II.1.1,Tucuman,AR-T,annual,2019,naphtha combustion consumption by to the public,0.150766,TJ,N2O,0.6,kg/TJ,0.0904596,kg -dbd5e67f-af3c-3c47-9bfa-e95d90ab8f61,SESCO,II.1.1,Buenos Aires,AR-B,annual,2019,naphtha combustion consumption by to the public,1172.1453436,TJ,CO2,73300.0,kg/TJ,85918253.68587999,kg -5c7ef913-a211-33f3-ba35-a77bf760fbd1,SESCO,II.1.1,Buenos Aires,AR-B,annual,2019,naphtha combustion consumption by to the public,1172.1453436,TJ,CH4,3.0,kg/TJ,3516.4360307999996,kg -399a792e-1ba7-392c-a68e-27e0b85fab42,SESCO,II.1.1,Buenos Aires,AR-B,annual,2019,naphtha combustion consumption by to the public,1172.1453436,TJ,N2O,0.6,kg/TJ,703.28720616,kg -f870e3cd-d267-334a-b8e8-e8559ea81e3d,SESCO,II.1.1,Capital Federal,AR-C,annual,2019,naphtha combustion consumption by to the public,68.35730439999999,TJ,CO2,73300.0,kg/TJ,5010590.412519999,kg -f779870f-f7eb-33cc-852e-e2f5715eefa8,SESCO,II.1.1,Capital Federal,AR-C,annual,2019,naphtha combustion consumption by to the public,68.35730439999999,TJ,CH4,3.0,kg/TJ,205.07191319999998,kg -8f85c2be-6c93-3cad-965b-f9fff61323e5,SESCO,II.1.1,Capital Federal,AR-C,annual,2019,naphtha combustion consumption by to the public,68.35730439999999,TJ,N2O,0.6,kg/TJ,41.014382639999994,kg -40e206df-b58b-314d-b2da-bca1388382e6,SESCO,II.1.1,Catamarca,AR-K,annual,2019,naphtha combustion consumption by to the public,0.3618384,TJ,CO2,73300.0,kg/TJ,26522.75472,kg -fa04013e-b3c8-33b0-a6f1-6292c3cba1ec,SESCO,II.1.1,Catamarca,AR-K,annual,2019,naphtha combustion consumption by to the public,0.3618384,TJ,CH4,3.0,kg/TJ,1.0855152000000001,kg -20616989-4366-3cb0-8e8e-5aeb82d8c4f9,SESCO,II.1.1,Catamarca,AR-K,annual,2019,naphtha combustion consumption by to the public,0.3618384,TJ,N2O,0.6,kg/TJ,0.21710304,kg -873fd983-3202-3234-be87-0dbd01fe3284,SESCO,II.1.1,Chaco,AR-H,annual,2019,naphtha combustion consumption by to the public,96.94253799999998,TJ,CO2,73300.0,kg/TJ,7105888.035399999,kg -f4260b5e-ee78-32aa-bed3-26a560905624,SESCO,II.1.1,Chaco,AR-H,annual,2019,naphtha combustion consumption by to the public,96.94253799999998,TJ,CH4,3.0,kg/TJ,290.8276139999999,kg -815f498a-98ba-39f1-b6ba-19fcf2c36a12,SESCO,II.1.1,Chaco,AR-H,annual,2019,naphtha combustion consumption by to the public,96.94253799999998,TJ,N2O,0.6,kg/TJ,58.16552279999999,kg -fe8f60f7-16b2-3e2a-9b23-1b0513b1f613,SESCO,II.1.1,Corrientes,AR-W,annual,2019,naphtha combustion consumption by to the public,38.9579344,TJ,CO2,73300.0,kg/TJ,2855616.59152,kg -2dfa0bc0-31ba-3067-af11-6d451371b1a2,SESCO,II.1.1,Corrientes,AR-W,annual,2019,naphtha combustion consumption by to the public,38.9579344,TJ,CH4,3.0,kg/TJ,116.8738032,kg -20558b92-127d-3dae-8084-7771a392626f,SESCO,II.1.1,Corrientes,AR-W,annual,2019,naphtha combustion consumption by to the public,38.9579344,TJ,N2O,0.6,kg/TJ,23.374760639999998,kg -bb0c9d8d-efca-3dcf-b4d4-86407d315e37,SESCO,II.1.1,Córdoba,AR-X,annual,2019,naphtha combustion consumption by to the public,655.4099551999999,TJ,CO2,73300.0,kg/TJ,48041549.71615999,kg -ce4e8d8f-0f8d-316e-9b3a-fcbde21eb51b,SESCO,II.1.1,Córdoba,AR-X,annual,2019,naphtha combustion consumption by to the public,655.4099551999999,TJ,CH4,3.0,kg/TJ,1966.2298655999998,kg -378704f3-0533-3d33-888b-fcc7a4ecab18,SESCO,II.1.1,Córdoba,AR-X,annual,2019,naphtha combustion consumption by to the public,655.4099551999999,TJ,N2O,0.6,kg/TJ,393.2459731199999,kg -47454bbe-06ae-359b-9b0b-7989a20b0995,SESCO,II.1.1,Entre Rios,AR-E,annual,2019,naphtha combustion consumption by to the public,7.960444799999999,TJ,CO2,73300.0,kg/TJ,583500.60384,kg -aff1653c-209e-302e-8688-4ebedd7872d6,SESCO,II.1.1,Entre Rios,AR-E,annual,2019,naphtha combustion consumption by to the public,7.960444799999999,TJ,CH4,3.0,kg/TJ,23.8813344,kg -550f9167-7ab6-3d13-88de-b3927827f127,SESCO,II.1.1,Entre Rios,AR-E,annual,2019,naphtha combustion consumption by to the public,7.960444799999999,TJ,N2O,0.6,kg/TJ,4.77626688,kg -71796994-b69f-38f8-a863-544a2e1da752,SESCO,II.1.1,Formosa,AR-P,annual,2019,naphtha combustion consumption by to the public,0.8141364,TJ,CO2,73300.0,kg/TJ,59676.19812,kg -5429a341-86a8-37a9-af76-78839e310b79,SESCO,II.1.1,Formosa,AR-P,annual,2019,naphtha combustion consumption by to the public,0.8141364,TJ,CH4,3.0,kg/TJ,2.4424092,kg -b1644875-1a4c-32bf-a496-564a7245de9f,SESCO,II.1.1,Formosa,AR-P,annual,2019,naphtha combustion consumption by to the public,0.8141364,TJ,N2O,0.6,kg/TJ,0.48848183999999994,kg -5b372581-6767-3584-a841-db53d08437b1,SESCO,II.1.1,La Rioja,AR-F,annual,2019,naphtha combustion consumption by to the public,0.5126044,TJ,CO2,73300.0,kg/TJ,37573.902519999996,kg -2356c859-27d5-31bf-8c40-c264879ea943,SESCO,II.1.1,La Rioja,AR-F,annual,2019,naphtha combustion consumption by to the public,0.5126044,TJ,CH4,3.0,kg/TJ,1.5378132,kg -ca727331-8132-3348-9682-8147275a4e87,SESCO,II.1.1,La Rioja,AR-F,annual,2019,naphtha combustion consumption by to the public,0.5126044,TJ,N2O,0.6,kg/TJ,0.30756263999999994,kg -800fa96a-a1b3-3afd-8ea9-837662acf7d6,SESCO,II.1.1,Mendoza,AR-M,annual,2019,naphtha combustion consumption by to the public,328.06681599999996,TJ,CO2,73300.0,kg/TJ,24047297.6128,kg -fb8f8c45-df5f-36e7-b2d2-6a8da0efb06b,SESCO,II.1.1,Mendoza,AR-M,annual,2019,naphtha combustion consumption by to the public,328.06681599999996,TJ,CH4,3.0,kg/TJ,984.2004479999998,kg -5da6de7c-73a7-304b-b49b-14ad482ef3d6,SESCO,II.1.1,Mendoza,AR-M,annual,2019,naphtha combustion consumption by to the public,328.06681599999996,TJ,N2O,0.6,kg/TJ,196.84008959999997,kg -996d3109-8f73-35e2-96c5-7ad5035a7f9c,SESCO,II.1.1,Misiones,AR-N,annual,2019,naphtha combustion consumption by to the public,75.3528468,TJ,CO2,73300.0,kg/TJ,5523363.67044,kg -923dcbc6-5c00-32d6-a657-11674d0f0d13,SESCO,II.1.1,Misiones,AR-N,annual,2019,naphtha combustion consumption by to the public,75.3528468,TJ,CH4,3.0,kg/TJ,226.05854039999997,kg -b12843e1-6164-32e0-aeac-3746b7e7f7bf,SESCO,II.1.1,Misiones,AR-N,annual,2019,naphtha combustion consumption by to the public,75.3528468,TJ,N2O,0.6,kg/TJ,45.211708079999994,kg -9bed58a9-3a4e-3565-b79d-96fa3d9efd23,SESCO,II.1.1,San Luis,AR-D,annual,2019,naphtha combustion consumption by to the public,6.422631599999999,TJ,CO2,73300.0,kg/TJ,470778.8962799999,kg -758eafdc-5b28-37b7-b14b-d5cf2540f43c,SESCO,II.1.1,San Luis,AR-D,annual,2019,naphtha combustion consumption by to the public,6.422631599999999,TJ,CH4,3.0,kg/TJ,19.267894799999997,kg -e9490f00-4bfb-3236-b55c-90e5fd97c1c2,SESCO,II.1.1,San Luis,AR-D,annual,2019,naphtha combustion consumption by to the public,6.422631599999999,TJ,N2O,0.6,kg/TJ,3.853578959999999,kg -52cc6fdd-2255-3a3f-a838-5efca15eee02,SESCO,II.1.1,Santa Fe,AR-S,annual,2019,naphtha combustion consumption by to the public,444.7898532,TJ,CO2,73300.0,kg/TJ,32603096.239559997,kg -c3b7bc37-b12e-3ae3-8bfe-214978f8630c,SESCO,II.1.1,Santa Fe,AR-S,annual,2019,naphtha combustion consumption by to the public,444.7898532,TJ,CH4,3.0,kg/TJ,1334.3695596,kg -b124fdb7-5ccd-3da0-9d85-1d765315a825,SESCO,II.1.1,Santa Fe,AR-S,annual,2019,naphtha combustion consumption by to the public,444.7898532,TJ,N2O,0.6,kg/TJ,266.87391191999995,kg -993dd3b4-5d18-399a-9240-e5255a6fc6b1,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2019,naphtha combustion consumption by to the public,3.9199159999999997,TJ,CO2,73300.0,kg/TJ,287329.8428,kg -9ad6c74b-89da-30ad-a039-b748e5f7079d,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2019,naphtha combustion consumption by to the public,3.9199159999999997,TJ,CH4,3.0,kg/TJ,11.759747999999998,kg -3d7c042b-a5dd-3040-8dc9-1ca59a5aa85b,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2019,naphtha combustion consumption by to the public,3.9199159999999997,TJ,N2O,0.6,kg/TJ,2.3519495999999998,kg -2cae0a8b-4612-39ad-8151-77c55dfee756,SESCO,II.1.1,Tucuman,AR-T,annual,2019,naphtha combustion consumption by to the public,0.24122559999999998,TJ,CO2,73300.0,kg/TJ,17681.836479999998,kg -ca0a013c-2024-3fba-8609-f30e777d9cfa,SESCO,II.1.1,Tucuman,AR-T,annual,2019,naphtha combustion consumption by to the public,0.24122559999999998,TJ,CH4,3.0,kg/TJ,0.7236768,kg -2c9942b8-a36c-3031-854b-0084e582b917,SESCO,II.1.1,Tucuman,AR-T,annual,2019,naphtha combustion consumption by to the public,0.24122559999999998,TJ,N2O,0.6,kg/TJ,0.14473535999999998,kg -f772f9b2-dcbd-38ea-bec6-c55d80c6578d,SESCO,II.1.1,Buenos Aires,AR-B,annual,2019,naphtha combustion consumption by to the public,116.63257759999999,TJ,CO2,73300.0,kg/TJ,8549167.93808,kg -2e847b41-fd7b-3b83-9531-efc221521de3,SESCO,II.1.1,Buenos Aires,AR-B,annual,2019,naphtha combustion consumption by to the public,116.63257759999999,TJ,CH4,3.0,kg/TJ,349.89773279999997,kg -42953178-9fb0-3e7c-b9f8-4bfa859a6cba,SESCO,II.1.1,Buenos Aires,AR-B,annual,2019,naphtha combustion consumption by to the public,116.63257759999999,TJ,N2O,0.6,kg/TJ,69.97954655999999,kg -281b0ac9-3fc8-321e-818d-2e91acafff7b,SESCO,II.1.1,Capital Federal,AR-C,annual,2019,naphtha combustion consumption by to the public,12.6040376,TJ,CO2,73300.0,kg/TJ,923875.95608,kg -392c27d0-70be-31cf-8da3-42faf030807f,SESCO,II.1.1,Capital Federal,AR-C,annual,2019,naphtha combustion consumption by to the public,12.6040376,TJ,CH4,3.0,kg/TJ,37.8121128,kg -2d3d7dd1-2af1-31a6-ac25-f0db9274d720,SESCO,II.1.1,Capital Federal,AR-C,annual,2019,naphtha combustion consumption by to the public,12.6040376,TJ,N2O,0.6,kg/TJ,7.56242256,kg -abb6e209-ae6b-3e6d-8d3b-808d04b6c964,SESCO,II.1.1,Chaco,AR-H,annual,2019,naphtha combustion consumption by to the public,5.668801599999999,TJ,CO2,73300.0,kg/TJ,415523.1572799999,kg -782f25d7-47e1-3d6d-a4fd-d9b1e81e7b24,SESCO,II.1.1,Chaco,AR-H,annual,2019,naphtha combustion consumption by to the public,5.668801599999999,TJ,CH4,3.0,kg/TJ,17.0064048,kg -2eef0adb-50ee-3e87-aac7-c716ef4ba8d8,SESCO,II.1.1,Chaco,AR-H,annual,2019,naphtha combustion consumption by to the public,5.668801599999999,TJ,N2O,0.6,kg/TJ,3.4012809599999994,kg -333f9fc7-a3e9-3fba-bf69-2f84fb463f89,SESCO,II.1.1,Corrientes,AR-W,annual,2019,naphtha combustion consumption by to the public,1.9901111999999999,TJ,CO2,73300.0,kg/TJ,145875.15096,kg -defa1a06-a334-3ffa-865d-c0b4cc439584,SESCO,II.1.1,Corrientes,AR-W,annual,2019,naphtha combustion consumption by to the public,1.9901111999999999,TJ,CH4,3.0,kg/TJ,5.9703336,kg -93e1d599-e12e-33ff-9732-dc4ef8f8c976,SESCO,II.1.1,Corrientes,AR-W,annual,2019,naphtha combustion consumption by to the public,1.9901111999999999,TJ,N2O,0.6,kg/TJ,1.19406672,kg -47b30d2e-094c-3efe-b960-0c29c5e81bf5,SESCO,II.1.1,Córdoba,AR-X,annual,2019,naphtha combustion consumption by to the public,78.85061799999998,TJ,CO2,73300.0,kg/TJ,5779750.299399999,kg -534dfb4e-fdb2-39cb-9297-86e66dafd0ef,SESCO,II.1.1,Córdoba,AR-X,annual,2019,naphtha combustion consumption by to the public,78.85061799999998,TJ,CH4,3.0,kg/TJ,236.55185399999993,kg -09debac9-b741-3463-838b-8982c2dc68df,SESCO,II.1.1,Córdoba,AR-X,annual,2019,naphtha combustion consumption by to the public,78.85061799999998,TJ,N2O,0.6,kg/TJ,47.31037079999999,kg -2fd987a1-9b20-3354-b17f-2efbe96ea64f,SESCO,II.1.1,Entre Rios,AR-E,annual,2019,naphtha combustion consumption by to the public,0.8744427999999999,TJ,CO2,73300.0,kg/TJ,64096.657239999986,kg -7e906db7-11f9-3716-88af-90c62e8c0b1c,SESCO,II.1.1,Entre Rios,AR-E,annual,2019,naphtha combustion consumption by to the public,0.8744427999999999,TJ,CH4,3.0,kg/TJ,2.6233283999999997,kg -00893aea-4f83-3b63-8881-9c46fef8e08f,SESCO,II.1.1,Entre Rios,AR-E,annual,2019,naphtha combustion consumption by to the public,0.8744427999999999,TJ,N2O,0.6,kg/TJ,0.5246656799999999,kg -53781914-22cc-3fff-a709-cd85243f3a85,SESCO,II.1.1,Mendoza,AR-M,annual,2019,naphtha combustion consumption by to the public,36.72659759999999,TJ,CO2,73300.0,kg/TJ,2692059.6040799995,kg -708c316d-fab8-3115-b6b5-7c1019d53ba0,SESCO,II.1.1,Mendoza,AR-M,annual,2019,naphtha combustion consumption by to the public,36.72659759999999,TJ,CH4,3.0,kg/TJ,110.17979279999997,kg -d5f50d9f-e861-3576-8610-918d1561d598,SESCO,II.1.1,Mendoza,AR-M,annual,2019,naphtha combustion consumption by to the public,36.72659759999999,TJ,N2O,0.6,kg/TJ,22.035958559999994,kg -682b678d-a196-3b0b-9cfc-f1e0784be6c1,SESCO,II.1.1,Misiones,AR-N,annual,2019,naphtha combustion consumption by to the public,5.819567599999999,TJ,CO2,73300.0,kg/TJ,426574.30507999996,kg -cb2a6bab-9398-3241-8002-f386d94c4db2,SESCO,II.1.1,Misiones,AR-N,annual,2019,naphtha combustion consumption by to the public,5.819567599999999,TJ,CH4,3.0,kg/TJ,17.458702799999998,kg -28803e65-cda3-384a-bab2-21163d9bbbbf,SESCO,II.1.1,Misiones,AR-N,annual,2019,naphtha combustion consumption by to the public,5.819567599999999,TJ,N2O,0.6,kg/TJ,3.4917405599999993,kg -d5836acc-ca47-3302-b23f-d1098265641e,SESCO,II.1.1,San Luis,AR-D,annual,2019,naphtha combustion consumption by to the public,0.6332171999999999,TJ,CO2,73300.0,kg/TJ,46414.820759999995,kg -0e1050c9-97e4-34bf-8540-f15e2b37731e,SESCO,II.1.1,San Luis,AR-D,annual,2019,naphtha combustion consumption by to the public,0.6332171999999999,TJ,CH4,3.0,kg/TJ,1.8996515999999999,kg -04957c3a-9e7c-308c-9d2c-eaf29770af85,SESCO,II.1.1,San Luis,AR-D,annual,2019,naphtha combustion consumption by to the public,0.6332171999999999,TJ,N2O,0.6,kg/TJ,0.37993031999999993,kg -4ae08bb4-fea3-3c45-8227-6e3fe1503300,SESCO,II.1.1,Santa Fe,AR-S,annual,2019,naphtha combustion consumption by to the public,45.8027108,TJ,CO2,73300.0,kg/TJ,3357338.70164,kg -21e39bd7-a659-3a59-9c4a-7fcbf18fdc62,SESCO,II.1.1,Santa Fe,AR-S,annual,2019,naphtha combustion consumption by to the public,45.8027108,TJ,CH4,3.0,kg/TJ,137.4081324,kg -5c404ceb-91cd-3b18-9ef9-606e9399091f,SESCO,II.1.1,Santa Fe,AR-S,annual,2019,naphtha combustion consumption by to the public,45.8027108,TJ,N2O,0.6,kg/TJ,27.48162648,kg -899560c0-e134-3fee-86ad-0564f9b3bfcf,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2019,naphtha combustion consumption by to the public,0.5427576,TJ,CO2,73300.0,kg/TJ,39784.132079999996,kg -b8624eed-8582-3b58-a884-c3efb7e983ee,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2019,naphtha combustion consumption by to the public,0.5427576,TJ,CH4,3.0,kg/TJ,1.6282728,kg -26ebf2d8-4424-3b97-9c73-70e371841bea,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2019,naphtha combustion consumption by to the public,0.5427576,TJ,N2O,0.6,kg/TJ,0.32565456,kg -ebcf330f-bf79-3d12-860e-75bc11d0b554,SESCO,I.3.1,Buenos Aires,AR-B,annual,2019,naphtha combustion consumption by petrochemical industries,4.6435927999999995,TJ,CO2,73300.0,kg/TJ,340375.35224,kg -e8fcdbf8-7bab-3260-a1cc-08a51c741cec,SESCO,I.3.1,Buenos Aires,AR-B,annual,2019,naphtha combustion consumption by petrochemical industries,4.6435927999999995,TJ,CH4,3.0,kg/TJ,13.930778399999998,kg -383fa760-956c-3a01-8625-0f75ec7693f7,SESCO,I.3.1,Buenos Aires,AR-B,annual,2019,naphtha combustion consumption by petrochemical industries,4.6435927999999995,TJ,N2O,0.6,kg/TJ,2.78615568,kg -06da6ed1-65fc-3a28-9bd5-a6ea477427c7,SESCO,II.5.1,Córdoba,AR-X,annual,2019,naphtha combustion consumption by agriculture machines,1.2664343999999998,TJ,CO2,73300.0,kg/TJ,92829.64151999999,kg -4c8c8fb8-0acb-3338-aec1-ad81f80731a4,SESCO,II.5.1,Córdoba,AR-X,annual,2019,naphtha combustion consumption by agriculture machines,1.2664343999999998,TJ,CH4,3.0,kg/TJ,3.7993031999999998,kg -1f266ca5-79c0-3154-82cc-045ba3b67eba,SESCO,II.5.1,Córdoba,AR-X,annual,2019,naphtha combustion consumption by agriculture machines,1.2664343999999998,TJ,N2O,0.6,kg/TJ,0.7598606399999999,kg -7853968a-c7b3-3700-9120-0b25a5536a70,SESCO,II.5.1,Santa Fe,AR-S,annual,2019,naphtha combustion consumption by agriculture machines,4.8848183999999994,TJ,CO2,73300.0,kg/TJ,358057.18872,kg -c107ce0f-9e00-3c93-a871-cf3542b25dc4,SESCO,II.5.1,Santa Fe,AR-S,annual,2019,naphtha combustion consumption by agriculture machines,4.8848183999999994,TJ,CH4,3.0,kg/TJ,14.654455199999997,kg -8b85fca6-f35f-3228-b7c9-5d50fe29ded6,SESCO,II.5.1,Santa Fe,AR-S,annual,2019,naphtha combustion consumption by agriculture machines,4.8848183999999994,TJ,N2O,0.6,kg/TJ,2.9308910399999997,kg -bbc36c2f-f1cb-337d-83fc-bc9ae36f0506,SESCO,II.5.1,Córdoba,AR-X,annual,2019,naphtha combustion consumption by agriculture machines,0.9045959999999998,TJ,CO2,73300.0,kg/TJ,66306.8868,kg -05aa6733-f8a4-3b3c-8fcd-502d6d75be3d,SESCO,II.5.1,Córdoba,AR-X,annual,2019,naphtha combustion consumption by agriculture machines,0.9045959999999998,TJ,CH4,3.0,kg/TJ,2.7137879999999996,kg -a26e47bb-9f6a-34df-ae81-5353a6bdd4e7,SESCO,II.5.1,Córdoba,AR-X,annual,2019,naphtha combustion consumption by agriculture machines,0.9045959999999998,TJ,N2O,0.6,kg/TJ,0.5427575999999998,kg -5f39dc93-bf15-3064-b64d-f5982cab4520,SESCO,II.5.1,Santa Fe,AR-S,annual,2019,naphtha combustion consumption by agriculture machines,1.5378132,TJ,CO2,73300.0,kg/TJ,112721.70756,kg -42b1c7ec-f845-3274-b21b-5de01f592c28,SESCO,II.5.1,Santa Fe,AR-S,annual,2019,naphtha combustion consumption by agriculture machines,1.5378132,TJ,CH4,3.0,kg/TJ,4.6134395999999995,kg -361352ba-e851-31ed-a8cf-7e94be4a4505,SESCO,II.5.1,Santa Fe,AR-S,annual,2019,naphtha combustion consumption by agriculture machines,1.5378132,TJ,N2O,0.6,kg/TJ,0.92268792,kg -df37ee57-a195-3d7c-a13d-55a797b4a644,SESCO,II.1.1,Buenos Aires,AR-B,annual,2019,naphtha combustion consumption by to the public,2667.2314592,TJ,CO2,73300.0,kg/TJ,195508065.95935997,kg -fbcd296e-4bd1-3611-9dc9-3ff1e816e353,SESCO,II.1.1,Buenos Aires,AR-B,annual,2019,naphtha combustion consumption by to the public,2667.2314592,TJ,CH4,3.0,kg/TJ,8001.694377599999,kg -0142220e-833e-3936-ab3e-b7c1e05d65fd,SESCO,II.1.1,Buenos Aires,AR-B,annual,2019,naphtha combustion consumption by to the public,2667.2314592,TJ,N2O,0.6,kg/TJ,1600.3388755199999,kg -19f85acb-5b5b-3194-ac9d-ea5118b2894a,SESCO,II.1.1,Capital Federal,AR-C,annual,2019,naphtha combustion consumption by to the public,717.1034023999999,TJ,CO2,73300.0,kg/TJ,52563679.39591999,kg -6bdfcc52-53aa-3d4b-a82c-6ce341ad22b4,SESCO,II.1.1,Capital Federal,AR-C,annual,2019,naphtha combustion consumption by to the public,717.1034023999999,TJ,CH4,3.0,kg/TJ,2151.3102071999997,kg -0a3eb702-40bf-30ab-b356-e950d37a7c0b,SESCO,II.1.1,Capital Federal,AR-C,annual,2019,naphtha combustion consumption by to the public,717.1034023999999,TJ,N2O,0.6,kg/TJ,430.26204143999996,kg -d0a5567a-e75f-3112-a3ef-79eba828cc55,SESCO,II.1.1,Catamarca,AR-K,annual,2019,naphtha combustion consumption by to the public,85.87631359999999,TJ,CO2,73300.0,kg/TJ,6294733.78688,kg -44e11199-8adf-3378-9834-be92ff9124af,SESCO,II.1.1,Catamarca,AR-K,annual,2019,naphtha combustion consumption by to the public,85.87631359999999,TJ,CH4,3.0,kg/TJ,257.62894079999995,kg -855c1b9e-d188-3ee4-8fff-915e8417e333,SESCO,II.1.1,Catamarca,AR-K,annual,2019,naphtha combustion consumption by to the public,85.87631359999999,TJ,N2O,0.6,kg/TJ,51.52578815999999,kg -5c087764-58b1-348b-94cf-b0c32be710d5,SESCO,II.1.1,Chaco,AR-H,annual,2019,naphtha combustion consumption by to the public,92.60047719999999,TJ,CO2,73300.0,kg/TJ,6787614.978759999,kg -234e17bd-4cdd-32a9-b602-90463c405c75,SESCO,II.1.1,Chaco,AR-H,annual,2019,naphtha combustion consumption by to the public,92.60047719999999,TJ,CH4,3.0,kg/TJ,277.80143159999994,kg -2e20d03b-0cc5-393f-979d-af649762f6d5,SESCO,II.1.1,Chaco,AR-H,annual,2019,naphtha combustion consumption by to the public,92.60047719999999,TJ,N2O,0.6,kg/TJ,55.56028631999999,kg -3c4adaf3-02b0-34dc-969b-63d7a87f41e9,SESCO,II.1.1,Chubut,AR-U,annual,2019,naphtha combustion consumption by to the public,363.61743879999995,TJ,CO2,73300.0,kg/TJ,26653158.264039997,kg -83b25601-ad4e-3e8e-9028-eb10fecb4a22,SESCO,II.1.1,Chubut,AR-U,annual,2019,naphtha combustion consumption by to the public,363.61743879999995,TJ,CH4,3.0,kg/TJ,1090.8523163999998,kg -7dff084b-9928-309e-a67e-b92f351a4e33,SESCO,II.1.1,Chubut,AR-U,annual,2019,naphtha combustion consumption by to the public,363.61743879999995,TJ,N2O,0.6,kg/TJ,218.17046327999995,kg -7e85fb04-4e39-322e-b530-9e27c462eecd,SESCO,II.1.1,Corrientes,AR-W,annual,2019,naphtha combustion consumption by to the public,166.3250512,TJ,CO2,73300.0,kg/TJ,12191626.25296,kg -cd9e2d58-8cb7-3c69-8610-b2b0ceced1b0,SESCO,II.1.1,Corrientes,AR-W,annual,2019,naphtha combustion consumption by to the public,166.3250512,TJ,CH4,3.0,kg/TJ,498.9751536,kg -3a057343-45a6-3d77-b911-e90eae428a39,SESCO,II.1.1,Corrientes,AR-W,annual,2019,naphtha combustion consumption by to the public,166.3250512,TJ,N2O,0.6,kg/TJ,99.79503071999999,kg -e9c4b510-7bb0-37ae-ad3f-3f6a3e851772,SESCO,II.1.1,Córdoba,AR-X,annual,2019,naphtha combustion consumption by to the public,688.2166368,TJ,CO2,73300.0,kg/TJ,50446279.47744,kg -137d8b81-9da2-3d7f-8d0c-3871016d816f,SESCO,II.1.1,Córdoba,AR-X,annual,2019,naphtha combustion consumption by to the public,688.2166368,TJ,CH4,3.0,kg/TJ,2064.6499104,kg -91348831-7231-3378-9490-e47a54c76b25,SESCO,II.1.1,Córdoba,AR-X,annual,2019,naphtha combustion consumption by to the public,688.2166368,TJ,N2O,0.6,kg/TJ,412.92998207999995,kg -4ff8fe54-8d9f-332b-af2d-0f187889f1ec,SESCO,II.1.1,Entre Rios,AR-E,annual,2019,naphtha combustion consumption by to the public,297.3708584,TJ,CO2,73300.0,kg/TJ,21797283.92072,kg -7235fae4-fd42-31b9-890e-e07a28a6ede4,SESCO,II.1.1,Entre Rios,AR-E,annual,2019,naphtha combustion consumption by to the public,297.3708584,TJ,CH4,3.0,kg/TJ,892.1125751999999,kg -d9f305a0-fee3-3fd4-a178-7aadf35edc28,SESCO,II.1.1,Entre Rios,AR-E,annual,2019,naphtha combustion consumption by to the public,297.3708584,TJ,N2O,0.6,kg/TJ,178.42251503999998,kg -1b07d06a-4975-30f2-b2da-1cf198bbe08a,SESCO,II.1.1,Formosa,AR-P,annual,2019,naphtha combustion consumption by to the public,136.0210852,TJ,CO2,73300.0,kg/TJ,9970345.54516,kg -b0e2a196-be50-3db3-b732-061aa65f22fe,SESCO,II.1.1,Formosa,AR-P,annual,2019,naphtha combustion consumption by to the public,136.0210852,TJ,CH4,3.0,kg/TJ,408.06325559999993,kg -75e5040c-8e78-3f34-ab62-c579512e8080,SESCO,II.1.1,Formosa,AR-P,annual,2019,naphtha combustion consumption by to the public,136.0210852,TJ,N2O,0.6,kg/TJ,81.61265112,kg -cda824fa-14d0-38cb-a383-6ddaef65fbaa,SESCO,II.1.1,Jujuy,AR-Y,annual,2019,naphtha combustion consumption by to the public,52.55702759999999,TJ,CO2,73300.0,kg/TJ,3852430.1230799994,kg -72d820eb-0eb6-3640-ae92-6db3e0d9e5e4,SESCO,II.1.1,Jujuy,AR-Y,annual,2019,naphtha combustion consumption by to the public,52.55702759999999,TJ,CH4,3.0,kg/TJ,157.67108279999997,kg -53103ec3-6488-3feb-8c6a-e08942d57783,SESCO,II.1.1,Jujuy,AR-Y,annual,2019,naphtha combustion consumption by to the public,52.55702759999999,TJ,N2O,0.6,kg/TJ,31.534216559999994,kg -b83d06ec-f640-324d-819b-807771c800b9,SESCO,II.1.1,La Pampa,AR-L,annual,2019,naphtha combustion consumption by to the public,51.411206,TJ,CO2,73300.0,kg/TJ,3768441.3998,kg -4b273463-403c-38d5-a312-c89f7a1f83b7,SESCO,II.1.1,La Pampa,AR-L,annual,2019,naphtha combustion consumption by to the public,51.411206,TJ,CH4,3.0,kg/TJ,154.233618,kg -960a70f4-7721-3efa-aaa9-0110499d80d5,SESCO,II.1.1,La Pampa,AR-L,annual,2019,naphtha combustion consumption by to the public,51.411206,TJ,N2O,0.6,kg/TJ,30.846723599999997,kg -09b1046a-27cb-3118-acdd-44970beebe26,SESCO,II.1.1,La Rioja,AR-F,annual,2019,naphtha combustion consumption by to the public,33.228826399999996,TJ,CO2,73300.0,kg/TJ,2435672.9751199996,kg -d5b0cb6d-0048-3682-9f02-bdb137707e07,SESCO,II.1.1,La Rioja,AR-F,annual,2019,naphtha combustion consumption by to the public,33.228826399999996,TJ,CH4,3.0,kg/TJ,99.68647919999998,kg -145bb6e6-eda9-3430-90f6-56100e0b026e,SESCO,II.1.1,La Rioja,AR-F,annual,2019,naphtha combustion consumption by to the public,33.228826399999996,TJ,N2O,0.6,kg/TJ,19.937295839999997,kg -505b2f27-da0d-3a2f-8727-4f8fd5539781,SESCO,II.1.1,Mendoza,AR-M,annual,2019,naphtha combustion consumption by to the public,161.47038599999996,TJ,CO2,73300.0,kg/TJ,11835779.293799996,kg -7f83692c-973b-314c-9a46-fdf6421d3234,SESCO,II.1.1,Mendoza,AR-M,annual,2019,naphtha combustion consumption by to the public,161.47038599999996,TJ,CH4,3.0,kg/TJ,484.4111579999999,kg -dcd81652-bb4c-3f96-b7e5-3bcc2c7fb041,SESCO,II.1.1,Mendoza,AR-M,annual,2019,naphtha combustion consumption by to the public,161.47038599999996,TJ,N2O,0.6,kg/TJ,96.88223159999997,kg -58b2e9f9-515e-3bd4-b236-b3abe3bcee55,SESCO,II.1.1,Misiones,AR-N,annual,2019,naphtha combustion consumption by to the public,228.9532476,TJ,CO2,73300.0,kg/TJ,16782273.04908,kg -2995491c-16c1-33e2-be2a-36a77bb65196,SESCO,II.1.1,Misiones,AR-N,annual,2019,naphtha combustion consumption by to the public,228.9532476,TJ,CH4,3.0,kg/TJ,686.8597428,kg -dcfb6739-51a4-37e9-93ca-4b2bdfbd0775,SESCO,II.1.1,Misiones,AR-N,annual,2019,naphtha combustion consumption by to the public,228.9532476,TJ,N2O,0.6,kg/TJ,137.37194856,kg -1271f8e4-6824-30bd-a589-46f2113003e3,SESCO,II.1.1,Neuquén,AR-Q,annual,2019,naphtha combustion consumption by to the public,99.20402799999998,TJ,CO2,73300.0,kg/TJ,7271655.252399999,kg -c2aa1eee-ee5a-3a40-9f3d-83cca020dbda,SESCO,II.1.1,Neuquén,AR-Q,annual,2019,naphtha combustion consumption by to the public,99.20402799999998,TJ,CH4,3.0,kg/TJ,297.6120839999999,kg -6846e317-d63a-3033-b793-f6f81b9aa109,SESCO,II.1.1,Neuquén,AR-Q,annual,2019,naphtha combustion consumption by to the public,99.20402799999998,TJ,N2O,0.6,kg/TJ,59.52241679999999,kg -2b073143-1a56-3b62-8cbd-8d7e9e073df2,SESCO,II.1.1,Rio Negro,AR-R,annual,2019,naphtha combustion consumption by to the public,186.91968679999997,TJ,CO2,73300.0,kg/TJ,13701213.042439997,kg -eabc7285-8bae-32be-91c5-93bed748c22e,SESCO,II.1.1,Rio Negro,AR-R,annual,2019,naphtha combustion consumption by to the public,186.91968679999997,TJ,CH4,3.0,kg/TJ,560.7590604,kg -1e1310a5-8732-3c06-a44c-b232d514c106,SESCO,II.1.1,Rio Negro,AR-R,annual,2019,naphtha combustion consumption by to the public,186.91968679999997,TJ,N2O,0.6,kg/TJ,112.15181207999997,kg -1f0287ef-9367-394c-8663-81eb9dfccf84,SESCO,II.1.1,Salta,AR-A,annual,2019,naphtha combustion consumption by to the public,40.8274328,TJ,CO2,73300.0,kg/TJ,2992650.82424,kg -c9c5e78b-de59-3a66-b690-5c48c5075730,SESCO,II.1.1,Salta,AR-A,annual,2019,naphtha combustion consumption by to the public,40.8274328,TJ,CH4,3.0,kg/TJ,122.48229839999999,kg -c838fca2-e1b9-349b-9987-76f8c982550a,SESCO,II.1.1,Salta,AR-A,annual,2019,naphtha combustion consumption by to the public,40.8274328,TJ,N2O,0.6,kg/TJ,24.496459679999997,kg -c99e8ae4-5b78-3e74-baa9-accaa5c39639,SESCO,II.1.1,San Juan,AR-J,annual,2019,naphtha combustion consumption by to the public,59.763642399999995,TJ,CO2,73300.0,kg/TJ,4380674.987919999,kg -67017e50-0dbe-3147-9203-16bd1e209c6d,SESCO,II.1.1,San Juan,AR-J,annual,2019,naphtha combustion consumption by to the public,59.763642399999995,TJ,CH4,3.0,kg/TJ,179.2909272,kg -d94f928e-767d-3689-92f0-6f2ee12c9dec,SESCO,II.1.1,San Juan,AR-J,annual,2019,naphtha combustion consumption by to the public,59.763642399999995,TJ,N2O,0.6,kg/TJ,35.85818543999999,kg -058b074d-99b8-3403-966a-10db940398ef,SESCO,II.1.1,San Luis,AR-D,annual,2019,naphtha combustion consumption by to the public,155.4095928,TJ,CO2,73300.0,kg/TJ,11391523.15224,kg -298510a1-9bbe-3495-9a8d-bcfa80f1527a,SESCO,II.1.1,San Luis,AR-D,annual,2019,naphtha combustion consumption by to the public,155.4095928,TJ,CH4,3.0,kg/TJ,466.2287784,kg -c7799f8c-37e8-3cf5-928b-da7c2a8c0153,SESCO,II.1.1,San Luis,AR-D,annual,2019,naphtha combustion consumption by to the public,155.4095928,TJ,N2O,0.6,kg/TJ,93.24575568,kg -9178ffcc-5ae2-3b42-90f4-dee0b832ea42,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2019,naphtha combustion consumption by to the public,183.39176239999998,TJ,CO2,73300.0,kg/TJ,13442616.183919998,kg -8be609cf-0c5d-327b-b70e-2db3cbd63fb8,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2019,naphtha combustion consumption by to the public,183.39176239999998,TJ,CH4,3.0,kg/TJ,550.1752872,kg -c348c4a8-2d25-346a-926c-ad020e2e5531,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2019,naphtha combustion consumption by to the public,183.39176239999998,TJ,N2O,0.6,kg/TJ,110.03505743999999,kg -901c6644-fb0e-3f79-9961-c72f54eb6cb2,SESCO,II.1.1,Santa Fe,AR-S,annual,2019,naphtha combustion consumption by to the public,634.0313364,TJ,CO2,73300.0,kg/TJ,46474496.958119996,kg -dcfc2224-94f8-3fc5-95f6-5ef17a768e70,SESCO,II.1.1,Santa Fe,AR-S,annual,2019,naphtha combustion consumption by to the public,634.0313364,TJ,CH4,3.0,kg/TJ,1902.0940092,kg -20a5e65b-e242-3dcb-b554-35c40cd148e9,SESCO,II.1.1,Santa Fe,AR-S,annual,2019,naphtha combustion consumption by to the public,634.0313364,TJ,N2O,0.6,kg/TJ,380.41880183999996,kg -817dfb2e-0a8d-3047-a757-7f4e3b0b73e6,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2019,naphtha combustion consumption by to the public,93.324154,TJ,CO2,73300.0,kg/TJ,6840660.4882,kg -a074e42d-851d-3670-90e9-1818a61fea6c,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2019,naphtha combustion consumption by to the public,93.324154,TJ,CH4,3.0,kg/TJ,279.97246199999995,kg -06856c2c-a2f9-3c36-a736-451fa35709cb,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2019,naphtha combustion consumption by to the public,93.324154,TJ,N2O,0.6,kg/TJ,55.99449239999999,kg -6a88106b-50cb-3ace-8316-9ce0777eb1b6,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2019,naphtha combustion consumption by to the public,32.3845368,TJ,CO2,73300.0,kg/TJ,2373786.54744,kg -f9b5e558-c757-3ad4-9609-7e1a8ca562fe,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2019,naphtha combustion consumption by to the public,32.3845368,TJ,CH4,3.0,kg/TJ,97.15361039999999,kg -d3a2d901-a5c1-31a6-aa15-821e95594c80,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2019,naphtha combustion consumption by to the public,32.3845368,TJ,N2O,0.6,kg/TJ,19.43072208,kg -f6a384b4-cb4f-3372-82c2-acecc0d80cd8,SESCO,II.1.1,Tucuman,AR-T,annual,2019,naphtha combustion consumption by to the public,21.348465599999997,TJ,CO2,73300.0,kg/TJ,1564842.5284799999,kg -c192a51e-e3da-3006-8282-ce1a022e18e8,SESCO,II.1.1,Tucuman,AR-T,annual,2019,naphtha combustion consumption by to the public,21.348465599999997,TJ,CH4,3.0,kg/TJ,64.04539679999999,kg -a70ea411-58e8-357b-a54c-b1ba12cadefe,SESCO,II.1.1,Tucuman,AR-T,annual,2019,naphtha combustion consumption by to the public,21.348465599999997,TJ,N2O,0.6,kg/TJ,12.809079359999998,kg -31abe556-bf4e-3178-9165-8b7996a52b9b,SESCO,II.1.1,Buenos Aires,AR-B,annual,2019,naphtha combustion consumption by to the public,581.1727768,TJ,CO2,73300.0,kg/TJ,42599964.53944,kg -a3907194-ed62-3c9d-990f-81893b1466fe,SESCO,II.1.1,Buenos Aires,AR-B,annual,2019,naphtha combustion consumption by to the public,581.1727768,TJ,CH4,3.0,kg/TJ,1743.5183303999997,kg -5429133b-f44a-3e62-a8a3-18b248181d0b,SESCO,II.1.1,Buenos Aires,AR-B,annual,2019,naphtha combustion consumption by to the public,581.1727768,TJ,N2O,0.6,kg/TJ,348.70366607999995,kg -d39a4ac9-420e-35ed-8fd0-4d53889458e4,SESCO,II.1.1,Capital Federal,AR-C,annual,2019,naphtha combustion consumption by to the public,234.5014364,TJ,CO2,73300.0,kg/TJ,17188955.288119998,kg -d883bfec-1714-3deb-bf12-82ddd1e31f8e,SESCO,II.1.1,Capital Federal,AR-C,annual,2019,naphtha combustion consumption by to the public,234.5014364,TJ,CH4,3.0,kg/TJ,703.5043092,kg -2f7840ed-c485-37b9-8f4a-e7cf82b7f568,SESCO,II.1.1,Capital Federal,AR-C,annual,2019,naphtha combustion consumption by to the public,234.5014364,TJ,N2O,0.6,kg/TJ,140.70086184,kg -6fd3cece-d9ab-3eb2-9d37-cf1b7f2db9f8,SESCO,II.1.1,Catamarca,AR-K,annual,2019,naphtha combustion consumption by to the public,22.6149,TJ,CO2,73300.0,kg/TJ,1657672.17,kg -d8992d84-e8bb-3fe0-9f7c-2932fce70d7c,SESCO,II.1.1,Catamarca,AR-K,annual,2019,naphtha combustion consumption by to the public,22.6149,TJ,CH4,3.0,kg/TJ,67.84469999999999,kg -677b7e47-7330-32af-81ad-a95f8f1c103f,SESCO,II.1.1,Catamarca,AR-K,annual,2019,naphtha combustion consumption by to the public,22.6149,TJ,N2O,0.6,kg/TJ,13.56894,kg -476ab512-e147-36a1-9646-c2392c7b2ebb,SESCO,II.1.1,Chaco,AR-H,annual,2019,naphtha combustion consumption by to the public,15.197212799999997,TJ,CO2,73300.0,kg/TJ,1113955.6982399998,kg -370c0ec5-fc82-367c-b65a-1fa2c81c58d4,SESCO,II.1.1,Chaco,AR-H,annual,2019,naphtha combustion consumption by to the public,15.197212799999997,TJ,CH4,3.0,kg/TJ,45.591638399999994,kg -1ee2541c-f8d5-3734-adc0-023cedd49988,SESCO,II.1.1,Chaco,AR-H,annual,2019,naphtha combustion consumption by to the public,15.197212799999997,TJ,N2O,0.6,kg/TJ,9.118327679999998,kg -1df3eaee-e11e-33e8-be9d-f329781bdb04,SESCO,II.1.1,Chubut,AR-U,annual,2019,naphtha combustion consumption by to the public,60.246093599999995,TJ,CO2,73300.0,kg/TJ,4416038.660879999,kg -796dcae1-194e-3747-8d24-dd70d58484b7,SESCO,II.1.1,Chubut,AR-U,annual,2019,naphtha combustion consumption by to the public,60.246093599999995,TJ,CH4,3.0,kg/TJ,180.73828079999998,kg -1fa5afad-edbb-33ee-bb76-555c31429628,SESCO,II.1.1,Chubut,AR-U,annual,2019,naphtha combustion consumption by to the public,60.246093599999995,TJ,N2O,0.6,kg/TJ,36.14765616,kg -e4380c35-f52e-31bc-b6e1-577e464a1945,SESCO,II.1.1,Corrientes,AR-W,annual,2019,naphtha combustion consumption by to the public,31.3291748,TJ,CO2,73300.0,kg/TJ,2296428.51284,kg -5fadc7d0-1945-3028-ba19-76675443b172,SESCO,II.1.1,Corrientes,AR-W,annual,2019,naphtha combustion consumption by to the public,31.3291748,TJ,CH4,3.0,kg/TJ,93.9875244,kg -44e59bd1-4002-3043-8d59-36780895b924,SESCO,II.1.1,Corrientes,AR-W,annual,2019,naphtha combustion consumption by to the public,31.3291748,TJ,N2O,0.6,kg/TJ,18.797504879999998,kg -e3fe95f8-f2e0-3ba1-a564-4c7cee99391a,SESCO,II.1.1,Córdoba,AR-X,annual,2019,naphtha combustion consumption by to the public,149.3487996,TJ,CO2,73300.0,kg/TJ,10947267.010680001,kg -36444333-93fa-3b56-8a6c-3e2c78eb81f1,SESCO,II.1.1,Córdoba,AR-X,annual,2019,naphtha combustion consumption by to the public,149.3487996,TJ,CH4,3.0,kg/TJ,448.0463988,kg -ebbf45d7-30ff-3bc5-8eab-1ab70a4a6151,SESCO,II.1.1,Córdoba,AR-X,annual,2019,naphtha combustion consumption by to the public,149.3487996,TJ,N2O,0.6,kg/TJ,89.60927976,kg -8c241e74-4bb3-31f9-994c-dadcf97da9d2,SESCO,II.1.1,Entre Rios,AR-E,annual,2019,naphtha combustion consumption by to the public,69.4729728,TJ,CO2,73300.0,kg/TJ,5092368.906239999,kg -76675f28-4546-3fb6-be94-5c42dd46d024,SESCO,II.1.1,Entre Rios,AR-E,annual,2019,naphtha combustion consumption by to the public,69.4729728,TJ,CH4,3.0,kg/TJ,208.4189184,kg -4ebfe174-c7c7-3151-a353-de8f69c2bd84,SESCO,II.1.1,Entre Rios,AR-E,annual,2019,naphtha combustion consumption by to the public,69.4729728,TJ,N2O,0.6,kg/TJ,41.68378368,kg -dd4971be-05f1-3ccb-8848-2e4d65ac7954,SESCO,II.1.1,Formosa,AR-P,annual,2019,naphtha combustion consumption by to the public,29.489829599999997,TJ,CO2,73300.0,kg/TJ,2161604.5096799997,kg -b87fd708-799f-376e-a1d8-d722ca70f2c5,SESCO,II.1.1,Formosa,AR-P,annual,2019,naphtha combustion consumption by to the public,29.489829599999997,TJ,CH4,3.0,kg/TJ,88.4694888,kg -5797b543-6615-303a-96ae-f59613e60f32,SESCO,II.1.1,Formosa,AR-P,annual,2019,naphtha combustion consumption by to the public,29.489829599999997,TJ,N2O,0.6,kg/TJ,17.69389776,kg -ce3349f9-33a3-3e5f-b1ad-06a4581343f0,SESCO,II.1.1,Jujuy,AR-Y,annual,2019,naphtha combustion consumption by to the public,9.950555999999999,TJ,CO2,73300.0,kg/TJ,729375.7547999999,kg -46e9a514-b867-3f15-9b80-ff849fbd046b,SESCO,II.1.1,Jujuy,AR-Y,annual,2019,naphtha combustion consumption by to the public,9.950555999999999,TJ,CH4,3.0,kg/TJ,29.851667999999997,kg -c459f0a1-ae61-3e09-a21f-0604cd4e8179,SESCO,II.1.1,Jujuy,AR-Y,annual,2019,naphtha combustion consumption by to the public,9.950555999999999,TJ,N2O,0.6,kg/TJ,5.970333599999999,kg -66d5297f-9e22-3051-9cd9-4c75fc129a61,SESCO,II.1.1,La Pampa,AR-L,annual,2019,naphtha combustion consumption by to the public,15.890736399999998,TJ,CO2,73300.0,kg/TJ,1164790.9781199999,kg -48d2c87e-e049-37db-8a8b-7c0cf69c487c,SESCO,II.1.1,La Pampa,AR-L,annual,2019,naphtha combustion consumption by to the public,15.890736399999998,TJ,CH4,3.0,kg/TJ,47.6722092,kg -88d0ce92-09f5-30de-a9bd-b25bce348747,SESCO,II.1.1,La Pampa,AR-L,annual,2019,naphtha combustion consumption by to the public,15.890736399999998,TJ,N2O,0.6,kg/TJ,9.534441839999998,kg -9782fe92-6e91-3f5d-ac2f-1a870d10316f,SESCO,II.1.1,La Rioja,AR-F,annual,2019,naphtha combustion consumption by to the public,5.276809999999999,TJ,CO2,73300.0,kg/TJ,386790.17299999995,kg -37826e9d-8595-3e77-aca3-3bfa2b2bb735,SESCO,II.1.1,La Rioja,AR-F,annual,2019,naphtha combustion consumption by to the public,5.276809999999999,TJ,CH4,3.0,kg/TJ,15.830429999999998,kg -d809ffc9-dd62-3460-bffa-3e12d006578e,SESCO,II.1.1,La Rioja,AR-F,annual,2019,naphtha combustion consumption by to the public,5.276809999999999,TJ,N2O,0.6,kg/TJ,3.1660859999999995,kg -f1d6da8a-2f33-3bcc-8be1-52b82fdff8ef,SESCO,II.1.1,Mendoza,AR-M,annual,2019,naphtha combustion consumption by to the public,38.4754832,TJ,CO2,73300.0,kg/TJ,2820252.91856,kg -94605c72-16fd-3a4e-b848-7dd491d741b4,SESCO,II.1.1,Mendoza,AR-M,annual,2019,naphtha combustion consumption by to the public,38.4754832,TJ,CH4,3.0,kg/TJ,115.4264496,kg -97ea413f-77bf-3d51-ae3f-4af8b30e9008,SESCO,II.1.1,Mendoza,AR-M,annual,2019,naphtha combustion consumption by to the public,38.4754832,TJ,N2O,0.6,kg/TJ,23.085289919999997,kg -59dd03de-bed2-3038-8d5a-cc22fe70c654,SESCO,II.1.1,Misiones,AR-N,annual,2019,naphtha combustion consumption by to the public,27.439411999999997,TJ,CO2,73300.0,kg/TJ,2011308.8996,kg -31ee8131-551e-360b-8c21-408212f7158f,SESCO,II.1.1,Misiones,AR-N,annual,2019,naphtha combustion consumption by to the public,27.439411999999997,TJ,CH4,3.0,kg/TJ,82.31823599999998,kg -3ac4a2d8-c6a7-3e84-a512-e11375f17e02,SESCO,II.1.1,Misiones,AR-N,annual,2019,naphtha combustion consumption by to the public,27.439411999999997,TJ,N2O,0.6,kg/TJ,16.463647199999997,kg -ba7d7741-13bc-31a3-b486-88df224d0db1,SESCO,II.1.1,Neuquén,AR-Q,annual,2019,naphtha combustion consumption by to the public,42.7873908,TJ,CO2,73300.0,kg/TJ,3136315.74564,kg -d1776b0c-4fac-39e0-af61-87e2c5827df7,SESCO,II.1.1,Neuquén,AR-Q,annual,2019,naphtha combustion consumption by to the public,42.7873908,TJ,CH4,3.0,kg/TJ,128.3621724,kg -a8e07b6b-195e-3a45-a585-eac8867f441b,SESCO,II.1.1,Neuquén,AR-Q,annual,2019,naphtha combustion consumption by to the public,42.7873908,TJ,N2O,0.6,kg/TJ,25.672434479999996,kg -313f725a-327d-3631-9ac3-a51d9c5c4feb,SESCO,II.1.1,Rio Negro,AR-R,annual,2019,naphtha combustion consumption by to the public,63.29156679999999,TJ,CO2,73300.0,kg/TJ,4639271.8464399995,kg -da627420-8df5-3f4b-923b-c233a9ca86ef,SESCO,II.1.1,Rio Negro,AR-R,annual,2019,naphtha combustion consumption by to the public,63.29156679999999,TJ,CH4,3.0,kg/TJ,189.87470039999997,kg -dc688daf-28b2-390a-9e28-6fb9333c517b,SESCO,II.1.1,Rio Negro,AR-R,annual,2019,naphtha combustion consumption by to the public,63.29156679999999,TJ,N2O,0.6,kg/TJ,37.974940079999996,kg -475e7153-79f0-3183-902d-bf66c83fdd79,SESCO,II.1.1,Salta,AR-A,annual,2019,naphtha combustion consumption by to the public,4.4325204000000005,TJ,CO2,73300.0,kg/TJ,324903.74532000005,kg -d0fdb61c-5e88-3ff3-88e4-9419f2e130ab,SESCO,II.1.1,Salta,AR-A,annual,2019,naphtha combustion consumption by to the public,4.4325204000000005,TJ,CH4,3.0,kg/TJ,13.2975612,kg -7081c1c7-c7ce-32e2-8aa9-d5981a9ce25c,SESCO,II.1.1,Salta,AR-A,annual,2019,naphtha combustion consumption by to the public,4.4325204000000005,TJ,N2O,0.6,kg/TJ,2.65951224,kg -e7431105-efaa-3d32-b0d0-2120875bdf26,SESCO,II.1.1,San Juan,AR-J,annual,2019,naphtha combustion consumption by to the public,15.830429999999998,TJ,CO2,73300.0,kg/TJ,1160370.5189999999,kg -94b50220-c536-3da6-99ab-6b1734e21c88,SESCO,II.1.1,San Juan,AR-J,annual,2019,naphtha combustion consumption by to the public,15.830429999999998,TJ,CH4,3.0,kg/TJ,47.49128999999999,kg -142d1671-2988-3f0b-9488-b87c3fda5d1f,SESCO,II.1.1,San Juan,AR-J,annual,2019,naphtha combustion consumption by to the public,15.830429999999998,TJ,N2O,0.6,kg/TJ,9.498257999999998,kg -ad53d81b-a7c9-3c29-9dc8-956a1624115b,SESCO,II.1.1,San Luis,AR-D,annual,2019,naphtha combustion consumption by to the public,28.494774,TJ,CO2,73300.0,kg/TJ,2088666.9342,kg -a0e76ad3-7e87-3d03-82bc-00e9abbd111c,SESCO,II.1.1,San Luis,AR-D,annual,2019,naphtha combustion consumption by to the public,28.494774,TJ,CH4,3.0,kg/TJ,85.48432199999999,kg -ff60001f-7e6e-3e1c-bb68-e1ed445d5bba,SESCO,II.1.1,San Luis,AR-D,annual,2019,naphtha combustion consumption by to the public,28.494774,TJ,N2O,0.6,kg/TJ,17.096864399999998,kg -a1011886-7a12-3f26-9c97-4cd115d74576,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2019,naphtha combustion consumption by to the public,25.509607199999998,TJ,CO2,73300.0,kg/TJ,1869854.20776,kg -77c12708-3d57-3075-9eba-6b8deef1826a,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2019,naphtha combustion consumption by to the public,25.509607199999998,TJ,CH4,3.0,kg/TJ,76.52882159999999,kg -c5138ec2-2383-3f71-878c-583b360aad4c,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2019,naphtha combustion consumption by to the public,25.509607199999998,TJ,N2O,0.6,kg/TJ,15.305764319999998,kg -cf3ca71f-d036-3261-a11c-012a01d7ec35,SESCO,II.1.1,Santa Fe,AR-S,annual,2019,naphtha combustion consumption by to the public,142.35325719999997,TJ,CO2,73300.0,kg/TJ,10434493.752759999,kg -2e0c590b-e94e-3f44-9930-63bb237a2629,SESCO,II.1.1,Santa Fe,AR-S,annual,2019,naphtha combustion consumption by to the public,142.35325719999997,TJ,CH4,3.0,kg/TJ,427.0597715999999,kg -e0c12d36-67b0-30be-bf38-b4d4cd0cd6f4,SESCO,II.1.1,Santa Fe,AR-S,annual,2019,naphtha combustion consumption by to the public,142.35325719999997,TJ,N2O,0.6,kg/TJ,85.41195431999998,kg -ccf6cabd-98a6-354a-b1b9-d57589ad0d0c,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2019,naphtha combustion consumption by to the public,21.830916799999997,TJ,CO2,73300.0,kg/TJ,1600206.2014399997,kg -b9816e4e-d02e-303e-b227-353170964b6c,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2019,naphtha combustion consumption by to the public,21.830916799999997,TJ,CH4,3.0,kg/TJ,65.49275039999999,kg -79faa785-236f-308e-8b9b-0e4623292211,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2019,naphtha combustion consumption by to the public,21.830916799999997,TJ,N2O,0.6,kg/TJ,13.098550079999997,kg -5127f16d-fa8d-3ca1-aae1-4d2414ff3d0d,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2019,naphtha combustion consumption by to the public,7.1463084,TJ,CO2,73300.0,kg/TJ,523824.40572,kg -661f16dd-47ba-326b-9517-8d22728b4c49,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2019,naphtha combustion consumption by to the public,7.1463084,TJ,CH4,3.0,kg/TJ,21.4389252,kg -fd24a927-efeb-31e4-87ff-c0cc615c53cd,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2019,naphtha combustion consumption by to the public,7.1463084,TJ,N2O,0.6,kg/TJ,4.287785039999999,kg -e161113c-17a4-3c53-aeb5-1f982142ed12,SESCO,II.1.1,Tucuman,AR-T,annual,2019,naphtha combustion consumption by to the public,1.5981196,TJ,CO2,73300.0,kg/TJ,117142.16668,kg -7063dc94-d75f-3866-9e0c-79ac6c355179,SESCO,II.1.1,Tucuman,AR-T,annual,2019,naphtha combustion consumption by to the public,1.5981196,TJ,CH4,3.0,kg/TJ,4.7943587999999995,kg -5df352ad-7bcb-3d10-ace9-7b0d98fdf63a,SESCO,II.1.1,Tucuman,AR-T,annual,2019,naphtha combustion consumption by to the public,1.5981196,TJ,N2O,0.6,kg/TJ,0.95887176,kg -40edfffd-7fef-39c0-a9d0-fe2e05a0633b,SESCO,II.1.1,Buenos Aires,AR-B,annual,2019,naphtha combustion consumption by freight transport,2.8344007999999996,TJ,CO2,73300.0,kg/TJ,207761.57863999996,kg -d256ff0e-d17a-3bc9-b011-5ca8cebce7c7,SESCO,II.1.1,Buenos Aires,AR-B,annual,2019,naphtha combustion consumption by freight transport,2.8344007999999996,TJ,CH4,3.0,kg/TJ,8.5032024,kg -288892ef-a359-36dd-bc33-203edd831f4c,SESCO,II.1.1,Buenos Aires,AR-B,annual,2019,naphtha combustion consumption by freight transport,2.8344007999999996,TJ,N2O,0.6,kg/TJ,1.7006404799999997,kg -b87e570d-a46e-3ef7-a9d5-bf215564a435,SESCO,II.1.1,Capital Federal,AR-C,annual,2019,naphtha combustion consumption by freight transport,1.3568939999999998,TJ,CO2,73300.0,kg/TJ,99460.33019999998,kg -29b8b016-8c61-335e-ae4f-9944614d6646,SESCO,II.1.1,Capital Federal,AR-C,annual,2019,naphtha combustion consumption by freight transport,1.3568939999999998,TJ,CH4,3.0,kg/TJ,4.070682,kg -a8109908-e60a-363c-a4a4-07bc2ec89a8c,SESCO,II.1.1,Capital Federal,AR-C,annual,2019,naphtha combustion consumption by freight transport,1.3568939999999998,TJ,N2O,0.6,kg/TJ,0.8141363999999999,kg -cd9f9730-0a11-3034-ab16-336b4dde7649,SESCO,II.1.1,Córdoba,AR-X,annual,2019,naphtha combustion consumption by freight transport,0.7538299999999999,TJ,CO2,73300.0,kg/TJ,55255.738999999994,kg -efecbe06-b718-3884-9f5f-b83f62f7d720,SESCO,II.1.1,Córdoba,AR-X,annual,2019,naphtha combustion consumption by freight transport,0.7538299999999999,TJ,CH4,3.0,kg/TJ,2.26149,kg -8f80e06e-c355-3655-b7c0-1bc49e3185c6,SESCO,II.1.1,Córdoba,AR-X,annual,2019,naphtha combustion consumption by freight transport,0.7538299999999999,TJ,N2O,0.6,kg/TJ,0.4522979999999999,kg -8dea8201-6bc5-3bf1-be91-0acc5af576e6,SESCO,II.1.1,Mendoza,AR-M,annual,2019,naphtha combustion consumption by freight transport,0.060306399999999996,TJ,CO2,73300.0,kg/TJ,4420.4591199999995,kg -8830b972-bc99-3257-b686-8a5da8077d97,SESCO,II.1.1,Mendoza,AR-M,annual,2019,naphtha combustion consumption by freight transport,0.060306399999999996,TJ,CH4,3.0,kg/TJ,0.1809192,kg -b61d4c60-f700-3f67-95c8-ae84d770a1fb,SESCO,II.1.1,Mendoza,AR-M,annual,2019,naphtha combustion consumption by freight transport,0.060306399999999996,TJ,N2O,0.6,kg/TJ,0.036183839999999995,kg -8a86f89e-eb30-3d35-9605-b328ac9b4f7b,SESCO,II.1.1,Salta,AR-A,annual,2019,naphtha combustion consumption by freight transport,0.0904596,TJ,CO2,73300.0,kg/TJ,6630.68868,kg -7e0c9a9f-6a2c-3d7c-8683-70d73e1a0924,SESCO,II.1.1,Salta,AR-A,annual,2019,naphtha combustion consumption by freight transport,0.0904596,TJ,CH4,3.0,kg/TJ,0.27137880000000003,kg -1951cbce-fa8d-336d-a20e-6fc7a73e8634,SESCO,II.1.1,Salta,AR-A,annual,2019,naphtha combustion consumption by freight transport,0.0904596,TJ,N2O,0.6,kg/TJ,0.05427576,kg -97de3918-eb5d-3ec5-9bc9-99e67350c361,SESCO,II.1.1,Santa Fe,AR-S,annual,2019,naphtha combustion consumption by freight transport,0.4221448,TJ,CO2,73300.0,kg/TJ,30943.21384,kg -7a09c034-4c11-3c8b-80a9-c01c15eb995f,SESCO,II.1.1,Santa Fe,AR-S,annual,2019,naphtha combustion consumption by freight transport,0.4221448,TJ,CH4,3.0,kg/TJ,1.2664344,kg -66b1f734-36a4-39e3-b7df-da5d0c4e1cfc,SESCO,II.1.1,Santa Fe,AR-S,annual,2019,naphtha combustion consumption by freight transport,0.4221448,TJ,N2O,0.6,kg/TJ,0.25328688,kg -c12be7f4-57bb-3d02-8c3a-1a857e4615a6,SESCO,II.1.1,Tucuman,AR-T,annual,2019,naphtha combustion consumption by freight transport,0.030153199999999998,TJ,CO2,73300.0,kg/TJ,2210.2295599999998,kg -047fbf6c-9120-3f32-8cf4-01f0ac5f9b2e,SESCO,II.1.1,Tucuman,AR-T,annual,2019,naphtha combustion consumption by freight transport,0.030153199999999998,TJ,CH4,3.0,kg/TJ,0.0904596,kg -ec38eecc-9e4a-31ca-837a-6ec5f3a3eb14,SESCO,II.1.1,Tucuman,AR-T,annual,2019,naphtha combustion consumption by freight transport,0.030153199999999998,TJ,N2O,0.6,kg/TJ,0.018091919999999997,kg -59197a31-f826-371d-9809-5b09efe1e4fe,SESCO,II.1.1,Buenos Aires,AR-B,annual,2019,naphtha combustion consumption by freight transport,1.7187323999999997,TJ,CO2,73300.0,kg/TJ,125983.08491999998,kg -26db78e0-4d47-3c1a-a4fd-14fcb397e3dc,SESCO,II.1.1,Buenos Aires,AR-B,annual,2019,naphtha combustion consumption by freight transport,1.7187323999999997,TJ,CH4,3.0,kg/TJ,5.156197199999999,kg -756a5427-0bcd-381c-bc6b-4c5eed1d4086,SESCO,II.1.1,Buenos Aires,AR-B,annual,2019,naphtha combustion consumption by freight transport,1.7187323999999997,TJ,N2O,0.6,kg/TJ,1.0312394399999998,kg -854c6b07-f559-31aa-abe4-b2a24b2674c1,SESCO,II.1.1,Capital Federal,AR-C,annual,2019,naphtha combustion consumption by freight transport,0.7538299999999999,TJ,CO2,73300.0,kg/TJ,55255.738999999994,kg -78dff9fe-fd9a-3d1d-9380-c3f28576e4fd,SESCO,II.1.1,Capital Federal,AR-C,annual,2019,naphtha combustion consumption by freight transport,0.7538299999999999,TJ,CH4,3.0,kg/TJ,2.26149,kg -9e4f126d-0afa-30f9-8fc8-7630859893f0,SESCO,II.1.1,Capital Federal,AR-C,annual,2019,naphtha combustion consumption by freight transport,0.7538299999999999,TJ,N2O,0.6,kg/TJ,0.4522979999999999,kg -f01dca86-c15e-3dc0-a05d-ce68d190e888,SESCO,II.1.1,Corrientes,AR-W,annual,2019,naphtha combustion consumption by freight transport,0.0904596,TJ,CO2,73300.0,kg/TJ,6630.68868,kg -0d0dd9d7-e913-30c9-a86a-9c92bab52fe1,SESCO,II.1.1,Corrientes,AR-W,annual,2019,naphtha combustion consumption by freight transport,0.0904596,TJ,CH4,3.0,kg/TJ,0.27137880000000003,kg -24af05b7-2a89-35d0-987c-3218088bae64,SESCO,II.1.1,Corrientes,AR-W,annual,2019,naphtha combustion consumption by freight transport,0.0904596,TJ,N2O,0.6,kg/TJ,0.05427576,kg -b24a8dcb-592a-3aa5-bd7f-e1fc88d82f06,SESCO,II.1.1,Córdoba,AR-X,annual,2019,naphtha combustion consumption by freight transport,0.48245119999999997,TJ,CO2,73300.0,kg/TJ,35363.672959999996,kg -eaa243fa-68be-3666-975c-55d4c818af08,SESCO,II.1.1,Córdoba,AR-X,annual,2019,naphtha combustion consumption by freight transport,0.48245119999999997,TJ,CH4,3.0,kg/TJ,1.4473536,kg -73b57739-2310-3226-b756-eeef75a64e32,SESCO,II.1.1,Córdoba,AR-X,annual,2019,naphtha combustion consumption by freight transport,0.48245119999999997,TJ,N2O,0.6,kg/TJ,0.28947071999999996,kg -4505ee4e-42b2-39bd-ba0d-fde78204d334,SESCO,II.1.1,Entre Rios,AR-E,annual,2019,naphtha combustion consumption by freight transport,0.12061279999999999,TJ,CO2,73300.0,kg/TJ,8840.918239999999,kg -ca3a465f-5dbf-3803-a5d9-c5dcd3e500a2,SESCO,II.1.1,Entre Rios,AR-E,annual,2019,naphtha combustion consumption by freight transport,0.12061279999999999,TJ,CH4,3.0,kg/TJ,0.3618384,kg -dd495c07-8d8a-3642-a7eb-3adb3344d750,SESCO,II.1.1,Entre Rios,AR-E,annual,2019,naphtha combustion consumption by freight transport,0.12061279999999999,TJ,N2O,0.6,kg/TJ,0.07236767999999999,kg -f9b953ff-3409-30fb-bd1c-bab2d4a861ab,SESCO,II.1.1,Santa Fe,AR-S,annual,2019,naphtha combustion consumption by freight transport,0.4522979999999999,TJ,CO2,73300.0,kg/TJ,33153.4434,kg -924a74a8-9e1b-39c8-a3cf-5c838b01eae1,SESCO,II.1.1,Santa Fe,AR-S,annual,2019,naphtha combustion consumption by freight transport,0.4522979999999999,TJ,CH4,3.0,kg/TJ,1.3568939999999998,kg -27cec95f-aa63-3c72-91f7-55a89760f359,SESCO,II.1.1,Santa Fe,AR-S,annual,2019,naphtha combustion consumption by freight transport,0.4522979999999999,TJ,N2O,0.6,kg/TJ,0.2713787999999999,kg -3d657dd3-61a0-3fd1-90ab-621dee230f22,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2019,naphtha combustion consumption by freight transport,0.030153199999999998,TJ,CO2,73300.0,kg/TJ,2210.2295599999998,kg -c37a6cd6-16cf-3dfa-9634-51555ff151ff,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2019,naphtha combustion consumption by freight transport,0.030153199999999998,TJ,CH4,3.0,kg/TJ,0.0904596,kg -dc14a0b3-83ad-38d8-a1e3-393ed073b71b,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2019,naphtha combustion consumption by freight transport,0.030153199999999998,TJ,N2O,0.6,kg/TJ,0.018091919999999997,kg -b6bf7f3b-0370-330d-91b9-5a93c32311bf,SESCO,II.1.1,Santa Fe,AR-S,annual,2019,naphtha combustion consumption by public passenger transport,0.0904596,TJ,CO2,73300.0,kg/TJ,6630.68868,kg -bc781855-b595-3f51-895b-c2047b61bf7e,SESCO,II.1.1,Santa Fe,AR-S,annual,2019,naphtha combustion consumption by public passenger transport,0.0904596,TJ,CH4,3.0,kg/TJ,0.27137880000000003,kg -7a946c66-6139-32b8-b5d0-b51a6eaa93c7,SESCO,II.1.1,Santa Fe,AR-S,annual,2019,naphtha combustion consumption by public passenger transport,0.0904596,TJ,N2O,0.6,kg/TJ,0.05427576,kg -88cead30-c01e-34f6-bbcc-2aafa783348c,SESCO,II.5.1,Córdoba,AR-X,annual,2019,naphtha combustion consumption by agriculture machines,2.5027156,TJ,CO2,73300.0,kg/TJ,183449.05348,kg -a371088e-8000-3fb6-8b6d-17d1c5bf5768,SESCO,II.5.1,Córdoba,AR-X,annual,2019,naphtha combustion consumption by agriculture machines,2.5027156,TJ,CH4,3.0,kg/TJ,7.5081468000000005,kg -1332b873-ba1c-363f-9e8d-14ab45e8c587,SESCO,II.5.1,Córdoba,AR-X,annual,2019,naphtha combustion consumption by agriculture machines,2.5027156,TJ,N2O,0.6,kg/TJ,1.5016293600000001,kg -a4f89d35-1be1-358d-b79e-f882a9e49bd2,SESCO,II.5.1,Santa Fe,AR-S,annual,2019,naphtha combustion consumption by agriculture machines,35.188784399999996,TJ,CO2,73300.0,kg/TJ,2579337.8965199995,kg -8ea09be1-b2aa-3f38-b152-377ec158e6d1,SESCO,II.5.1,Santa Fe,AR-S,annual,2019,naphtha combustion consumption by agriculture machines,35.188784399999996,TJ,CH4,3.0,kg/TJ,105.56635319999998,kg -9255e3f5-3589-39d6-996b-63125b9cffd6,SESCO,II.5.1,Santa Fe,AR-S,annual,2019,naphtha combustion consumption by agriculture machines,35.188784399999996,TJ,N2O,0.6,kg/TJ,21.113270639999996,kg -a8f661c7-61e2-36b3-9969-a86622923cf5,SESCO,II.5.1,Córdoba,AR-X,annual,2019,naphtha combustion consumption by agriculture machines,1.5076599999999998,TJ,CO2,73300.0,kg/TJ,110511.47799999999,kg -b6d8d7ad-cd29-386f-b9ea-af18f3732937,SESCO,II.5.1,Córdoba,AR-X,annual,2019,naphtha combustion consumption by agriculture machines,1.5076599999999998,TJ,CH4,3.0,kg/TJ,4.52298,kg -805569e5-4bec-34e5-99a3-6a3b1642dc21,SESCO,II.5.1,Córdoba,AR-X,annual,2019,naphtha combustion consumption by agriculture machines,1.5076599999999998,TJ,N2O,0.6,kg/TJ,0.9045959999999998,kg -eb847080-3550-30b6-977c-813fe4c64871,SESCO,II.5.1,Santa Fe,AR-S,annual,2019,naphtha combustion consumption by agriculture machines,5.367269599999999,TJ,CO2,73300.0,kg/TJ,393420.86168,kg -a4db188a-572f-3de5-aa14-65c211f2a260,SESCO,II.5.1,Santa Fe,AR-S,annual,2019,naphtha combustion consumption by agriculture machines,5.367269599999999,TJ,CH4,3.0,kg/TJ,16.101808799999997,kg -a0308fa4-7966-3c38-9cb6-d1b6e6900ee8,SESCO,II.5.1,Santa Fe,AR-S,annual,2019,naphtha combustion consumption by agriculture machines,5.367269599999999,TJ,N2O,0.6,kg/TJ,3.2203617599999994,kg -911aa67f-f8bb-3fc6-8ede-b65479207a73,SESCO,II.1.1,Buenos Aires,AR-B,annual,2019,naphtha combustion consumption by to the public,8127.252302399999,TJ,CO2,73300.0,kg/TJ,595727593.7659199,kg -74182409-6dd2-3fb7-aaf6-e8223031a32b,SESCO,II.1.1,Buenos Aires,AR-B,annual,2019,naphtha combustion consumption by to the public,8127.252302399999,TJ,CH4,3.0,kg/TJ,24381.756907199997,kg -700f1fb7-1928-3943-ac62-d66b31f58b73,SESCO,II.1.1,Buenos Aires,AR-B,annual,2019,naphtha combustion consumption by to the public,8127.252302399999,TJ,N2O,0.6,kg/TJ,4876.351381439999,kg -1cb93c5f-4cc1-31d0-9e04-fa1fe6297f3e,SESCO,II.1.1,Capital Federal,AR-C,annual,2019,naphtha combustion consumption by to the public,2395.8225059999995,TJ,CO2,73300.0,kg/TJ,175613789.68979996,kg -78025c26-bea9-3ee7-9e9e-293738933449,SESCO,II.1.1,Capital Federal,AR-C,annual,2019,naphtha combustion consumption by to the public,2395.8225059999995,TJ,CH4,3.0,kg/TJ,7187.467517999999,kg -a1acf916-c9ec-3ebd-ad20-ea7917093022,SESCO,II.1.1,Capital Federal,AR-C,annual,2019,naphtha combustion consumption by to the public,2395.8225059999995,TJ,N2O,0.6,kg/TJ,1437.4935035999997,kg -43fc61f7-b12f-38b2-ba3c-de7b6ac57ab2,SESCO,II.1.1,Catamarca,AR-K,annual,2019,naphtha combustion consumption by to the public,307.83401879999997,TJ,CO2,73300.0,kg/TJ,22564233.578039996,kg -fb5a08b6-2be0-3e02-b622-75cb873fcd58,SESCO,II.1.1,Catamarca,AR-K,annual,2019,naphtha combustion consumption by to the public,307.83401879999997,TJ,CH4,3.0,kg/TJ,923.5020563999999,kg -6b0eb613-6427-3231-8e8c-6b100eb2d8d0,SESCO,II.1.1,Catamarca,AR-K,annual,2019,naphtha combustion consumption by to the public,307.83401879999997,TJ,N2O,0.6,kg/TJ,184.70041127999997,kg -46dd14b5-ea46-367b-b998-ed861a39c72f,SESCO,II.1.1,Chaco,AR-H,annual,2019,naphtha combustion consumption by to the public,408.87739199999993,TJ,CO2,73300.0,kg/TJ,29970712.833599996,kg -428db19f-d32b-3418-8649-d6a39c8890c2,SESCO,II.1.1,Chaco,AR-H,annual,2019,naphtha combustion consumption by to the public,408.87739199999993,TJ,CH4,3.0,kg/TJ,1226.6321759999998,kg -af4cc9f4-7aee-3ade-8e78-4cbb82dd9286,SESCO,II.1.1,Chaco,AR-H,annual,2019,naphtha combustion consumption by to the public,408.87739199999993,TJ,N2O,0.6,kg/TJ,245.32643519999993,kg -7cae078c-e96e-32f8-a24f-aca9bbb3d0e7,SESCO,II.1.1,Chubut,AR-U,annual,2019,naphtha combustion consumption by to the public,1180.1359416,TJ,CO2,73300.0,kg/TJ,86503964.51928,kg -f43fedb5-2051-3f38-8a8f-988f416699fe,SESCO,II.1.1,Chubut,AR-U,annual,2019,naphtha combustion consumption by to the public,1180.1359416,TJ,CH4,3.0,kg/TJ,3540.4078248,kg -ed71b89c-783c-3eb3-82f3-54d42ca57b2c,SESCO,II.1.1,Chubut,AR-U,annual,2019,naphtha combustion consumption by to the public,1180.1359416,TJ,N2O,0.6,kg/TJ,708.08156496,kg -553c9f3a-9cc2-306e-97f8-13c789a17b5f,SESCO,II.1.1,Corrientes,AR-W,annual,2019,naphtha combustion consumption by to the public,527.6206936,TJ,CO2,73300.0,kg/TJ,38674596.84088,kg -94530c3d-7acb-39c3-a3ac-0ebba0345b75,SESCO,II.1.1,Corrientes,AR-W,annual,2019,naphtha combustion consumption by to the public,527.6206936,TJ,CH4,3.0,kg/TJ,1582.8620808,kg -ddb6a135-7c18-3cd6-8039-d6582fb50a8d,SESCO,II.1.1,Corrientes,AR-W,annual,2019,naphtha combustion consumption by to the public,527.6206936,TJ,N2O,0.6,kg/TJ,316.57241616,kg -14ac79aa-b555-336e-b36f-5c31cc9816c9,SESCO,II.1.1,Córdoba,AR-X,annual,2019,naphtha combustion consumption by to the public,2073.2134192,TJ,CO2,73300.0,kg/TJ,151966543.62736,kg -dfb0310c-ab5d-3094-bf11-8cc60aaa06eb,SESCO,II.1.1,Córdoba,AR-X,annual,2019,naphtha combustion consumption by to the public,2073.2134192,TJ,CH4,3.0,kg/TJ,6219.6402576,kg -d8565431-0099-3dc0-85cf-119acf10a3bd,SESCO,II.1.1,Córdoba,AR-X,annual,2019,naphtha combustion consumption by to the public,2073.2134192,TJ,N2O,0.6,kg/TJ,1243.9280515199998,kg -3af0f1fe-3779-3754-af9d-222e8922403a,SESCO,II.1.1,Entre Rios,AR-E,annual,2019,naphtha combustion consumption by to the public,798.9994935999999,TJ,CO2,73300.0,kg/TJ,58566662.88088,kg -b1b9a497-2139-33be-955c-60c262fa1e66,SESCO,II.1.1,Entre Rios,AR-E,annual,2019,naphtha combustion consumption by to the public,798.9994935999999,TJ,CH4,3.0,kg/TJ,2396.9984808,kg -aa5e9909-4bc2-39f8-89f6-ce72aad86fe2,SESCO,II.1.1,Entre Rios,AR-E,annual,2019,naphtha combustion consumption by to the public,798.9994935999999,TJ,N2O,0.6,kg/TJ,479.39969615999996,kg -41fd51bc-8888-3285-9046-9a30226179c3,SESCO,II.1.1,Formosa,AR-P,annual,2019,naphtha combustion consumption by to the public,465.05280359999995,TJ,CO2,73300.0,kg/TJ,34088370.503879994,kg -50e87214-c52b-3955-9fd7-45c0e98d11ed,SESCO,II.1.1,Formosa,AR-P,annual,2019,naphtha combustion consumption by to the public,465.05280359999995,TJ,CH4,3.0,kg/TJ,1395.1584107999997,kg -2e9530fb-7811-3131-b6dd-6b4dc0f8125b,SESCO,II.1.1,Formosa,AR-P,annual,2019,naphtha combustion consumption by to the public,465.05280359999995,TJ,N2O,0.6,kg/TJ,279.03168215999995,kg -da477387-e5ee-30bf-8d5b-44b38c559a0d,SESCO,II.1.1,Jujuy,AR-Y,annual,2019,naphtha combustion consumption by to the public,157.27909119999998,TJ,CO2,73300.0,kg/TJ,11528557.38496,kg -40addc7c-705e-3eb7-a2e6-0b4239a4bfb0,SESCO,II.1.1,Jujuy,AR-Y,annual,2019,naphtha combustion consumption by to the public,157.27909119999998,TJ,CH4,3.0,kg/TJ,471.83727359999995,kg -305961da-3e62-3e53-83fb-7041943c6541,SESCO,II.1.1,Jujuy,AR-Y,annual,2019,naphtha combustion consumption by to the public,157.27909119999998,TJ,N2O,0.6,kg/TJ,94.36745471999998,kg -24b94be8-eacd-3d72-b87f-4735c5ff300d,SESCO,II.1.1,La Pampa,AR-L,annual,2019,naphtha combustion consumption by to the public,137.70966439999998,TJ,CO2,73300.0,kg/TJ,10094118.400519999,kg -aa78acc7-3ecf-3fe9-9507-02eab710c33f,SESCO,II.1.1,La Pampa,AR-L,annual,2019,naphtha combustion consumption by to the public,137.70966439999998,TJ,CH4,3.0,kg/TJ,413.12899319999997,kg -76293211-a8e2-304e-95ad-68ecaee2dc69,SESCO,II.1.1,La Pampa,AR-L,annual,2019,naphtha combustion consumption by to the public,137.70966439999998,TJ,N2O,0.6,kg/TJ,82.62579863999999,kg -c021b6fd-dc3a-3a6e-9025-f830cb3681a7,SESCO,II.1.1,La Rioja,AR-F,annual,2019,naphtha combustion consumption by to the public,98.5406576,TJ,CO2,73300.0,kg/TJ,7223030.20208,kg -b5df5920-bcf3-39a8-ad42-cf7e550ba5dc,SESCO,II.1.1,La Rioja,AR-F,annual,2019,naphtha combustion consumption by to the public,98.5406576,TJ,CH4,3.0,kg/TJ,295.6219728,kg -c9176531-48a2-38c1-b533-6b3b0f5fd09d,SESCO,II.1.1,La Rioja,AR-F,annual,2019,naphtha combustion consumption by to the public,98.5406576,TJ,N2O,0.6,kg/TJ,59.12439456,kg -194c66ba-fdab-3f9f-8891-c48df45a801e,SESCO,II.1.1,Mendoza,AR-M,annual,2019,naphtha combustion consumption by to the public,503.25690799999995,TJ,CO2,73300.0,kg/TJ,36888731.3564,kg -44f50558-0214-3c69-8f23-3c94dda7f4fe,SESCO,II.1.1,Mendoza,AR-M,annual,2019,naphtha combustion consumption by to the public,503.25690799999995,TJ,CH4,3.0,kg/TJ,1509.770724,kg -04f220e6-a908-3f9d-bb28-4622243383d3,SESCO,II.1.1,Mendoza,AR-M,annual,2019,naphtha combustion consumption by to the public,503.25690799999995,TJ,N2O,0.6,kg/TJ,301.95414479999994,kg -fc4a68c1-7b41-3b7e-b86c-22d13746d35a,SESCO,II.1.1,Misiones,AR-N,annual,2019,naphtha combustion consumption by to the public,727.5062564,TJ,CO2,73300.0,kg/TJ,53326208.594119996,kg -f76b03eb-ca24-3138-8fd6-5fbd69cb91a0,SESCO,II.1.1,Misiones,AR-N,annual,2019,naphtha combustion consumption by to the public,727.5062564,TJ,CH4,3.0,kg/TJ,2182.5187692,kg -e25c3f8e-bf87-3607-9532-62b1c8b572e3,SESCO,II.1.1,Misiones,AR-N,annual,2019,naphtha combustion consumption by to the public,727.5062564,TJ,N2O,0.6,kg/TJ,436.50375384,kg -1e17c1d0-d880-34cd-a734-fc72ea693327,SESCO,II.1.1,Neuquén,AR-Q,annual,2019,naphtha combustion consumption by to the public,394.46416239999996,TJ,CO2,73300.0,kg/TJ,28914223.103919998,kg -0d9452c6-e4e7-3279-a3a9-3e63c5c32611,SESCO,II.1.1,Neuquén,AR-Q,annual,2019,naphtha combustion consumption by to the public,394.46416239999996,TJ,CH4,3.0,kg/TJ,1183.3924871999998,kg -03f428c4-9253-3dfe-a940-ee6674495763,SESCO,II.1.1,Neuquén,AR-Q,annual,2019,naphtha combustion consumption by to the public,394.46416239999996,TJ,N2O,0.6,kg/TJ,236.67849743999997,kg -88811c69-ccd1-310e-9fee-9f2b08762685,SESCO,II.1.1,Rio Negro,AR-R,annual,2019,naphtha combustion consumption by to the public,506.8149856,TJ,CO2,73300.0,kg/TJ,37149538.44448,kg -c21add17-05ee-3505-a358-43942913e6f8,SESCO,II.1.1,Rio Negro,AR-R,annual,2019,naphtha combustion consumption by to the public,506.8149856,TJ,CH4,3.0,kg/TJ,1520.4449568,kg -8fd2d0e4-7f74-3769-976b-c5318eb4fee6,SESCO,II.1.1,Rio Negro,AR-R,annual,2019,naphtha combustion consumption by to the public,506.8149856,TJ,N2O,0.6,kg/TJ,304.08899135999997,kg -58e93b9c-9740-3c88-adc6-772233cb7446,SESCO,II.1.1,Salta,AR-A,annual,2019,naphtha combustion consumption by to the public,133.126378,TJ,CO2,73300.0,kg/TJ,9758163.507399999,kg -d49137e3-1e69-3210-892f-8b42ee73bc4a,SESCO,II.1.1,Salta,AR-A,annual,2019,naphtha combustion consumption by to the public,133.126378,TJ,CH4,3.0,kg/TJ,399.37913399999996,kg -cd52a05d-9bb2-30da-9d86-db36f81f9860,SESCO,II.1.1,Salta,AR-A,annual,2019,naphtha combustion consumption by to the public,133.126378,TJ,N2O,0.6,kg/TJ,79.87582679999998,kg -490adb8b-aecf-3751-b06e-3b87713f3291,SESCO,II.1.1,San Juan,AR-J,annual,2019,naphtha combustion consumption by to the public,179.71307199999998,TJ,CO2,73300.0,kg/TJ,13172968.177599998,kg -74149cf4-4f34-3af4-82a7-c179e84450ec,SESCO,II.1.1,San Juan,AR-J,annual,2019,naphtha combustion consumption by to the public,179.71307199999998,TJ,CH4,3.0,kg/TJ,539.1392159999999,kg -5e6522b8-68cd-3420-bccd-c0e6c0b8e62c,SESCO,II.1.1,San Juan,AR-J,annual,2019,naphtha combustion consumption by to the public,179.71307199999998,TJ,N2O,0.6,kg/TJ,107.82784319999999,kg -7348c6a3-86e2-362f-8bf3-c71b513ee3c4,SESCO,II.1.1,San Luis,AR-D,annual,2019,naphtha combustion consumption by to the public,454.3182643999999,TJ,CO2,73300.0,kg/TJ,33301528.780519996,kg -38944230-b899-3026-b29b-16ad1d8a9bc6,SESCO,II.1.1,San Luis,AR-D,annual,2019,naphtha combustion consumption by to the public,454.3182643999999,TJ,CH4,3.0,kg/TJ,1362.9547931999998,kg -021d484f-385f-33d9-97f3-402419263c61,SESCO,II.1.1,San Luis,AR-D,annual,2019,naphtha combustion consumption by to the public,454.3182643999999,TJ,N2O,0.6,kg/TJ,272.59095863999994,kg -ebbcd6c6-629a-332a-838a-1cf51504df77,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2019,naphtha combustion consumption by to the public,610.7832191999998,TJ,CO2,73300.0,kg/TJ,44770409.96735999,kg -03f67059-65e3-35c7-a725-537afa420f0c,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2019,naphtha combustion consumption by to the public,610.7832191999998,TJ,CH4,3.0,kg/TJ,1832.3496575999995,kg -5d49f848-61d1-30a1-80a3-110b35d289d5,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2019,naphtha combustion consumption by to the public,610.7832191999998,TJ,N2O,0.6,kg/TJ,366.4699315199999,kg -d7202bea-8f3f-3647-a56a-4bcba2ad5e3c,SESCO,II.1.1,Santa Fe,AR-S,annual,2019,naphtha combustion consumption by to the public,2115.8198908,TJ,CO2,73300.0,kg/TJ,155089597.99564,kg -238636fc-f86a-37ff-83bc-733ef0723582,SESCO,II.1.1,Santa Fe,AR-S,annual,2019,naphtha combustion consumption by to the public,2115.8198908,TJ,CH4,3.0,kg/TJ,6347.4596724,kg -97f48dd6-4cf4-3f28-a1fb-257dd05c997a,SESCO,II.1.1,Santa Fe,AR-S,annual,2019,naphtha combustion consumption by to the public,2115.8198908,TJ,N2O,0.6,kg/TJ,1269.4919344799998,kg -795db49d-7c0a-347f-90a9-84a0df7d3819,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2019,naphtha combustion consumption by to the public,300.0544932,TJ,CO2,73300.0,kg/TJ,21993994.35156,kg -8e7d40f1-c008-3803-b8ab-b0791846e441,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2019,naphtha combustion consumption by to the public,300.0544932,TJ,CH4,3.0,kg/TJ,900.1634796000001,kg -fac43a91-a59d-375a-87cd-223be0b84666,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2019,naphtha combustion consumption by to the public,300.0544932,TJ,N2O,0.6,kg/TJ,180.03269592,kg -bb473c64-849e-3a37-bd50-db7a3a306323,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2019,naphtha combustion consumption by to the public,109.69734159999999,TJ,CO2,73300.0,kg/TJ,8040815.139279999,kg -c5098b4d-f1f3-3b67-956b-296a175d71a3,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2019,naphtha combustion consumption by to the public,109.69734159999999,TJ,CH4,3.0,kg/TJ,329.0920248,kg -f80ad656-3a1e-3649-ad4f-e032a9824f88,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2019,naphtha combustion consumption by to the public,109.69734159999999,TJ,N2O,0.6,kg/TJ,65.81840496,kg -495c5575-158c-3e90-a7f7-7a93cf3037c0,SESCO,II.1.1,Tucuman,AR-T,annual,2019,naphtha combustion consumption by to the public,91.93710679999998,TJ,CO2,73300.0,kg/TJ,6738989.928439999,kg -3558a97b-e3db-3b99-8f24-4dd07429743f,SESCO,II.1.1,Tucuman,AR-T,annual,2019,naphtha combustion consumption by to the public,91.93710679999998,TJ,CH4,3.0,kg/TJ,275.81132039999994,kg -88d590ca-54d4-37ac-ade1-69baccf9e5ee,SESCO,II.1.1,Tucuman,AR-T,annual,2019,naphtha combustion consumption by to the public,91.93710679999998,TJ,N2O,0.6,kg/TJ,55.162264079999986,kg -7191db50-6118-3e25-9362-ff2cc27f6813,SESCO,II.1.1,Buenos Aires,AR-B,annual,2019,naphtha combustion consumption by to the public,1674.3770428,TJ,CO2,73300.0,kg/TJ,122731837.23724,kg -ecf089cb-5212-3552-8959-2b88de7ac5bc,SESCO,II.1.1,Buenos Aires,AR-B,annual,2019,naphtha combustion consumption by to the public,1674.3770428,TJ,CH4,3.0,kg/TJ,5023.1311284,kg -cd05ebe8-eead-34a1-ac20-be1363038a93,SESCO,II.1.1,Buenos Aires,AR-B,annual,2019,naphtha combustion consumption by to the public,1674.3770428,TJ,N2O,0.6,kg/TJ,1004.62622568,kg -c20c0959-8ac8-35df-b389-0fc427206cc5,SESCO,II.1.1,Capital Federal,AR-C,annual,2019,naphtha combustion consumption by to the public,793.179926,TJ,CO2,73300.0,kg/TJ,58140088.5758,kg -b1de0af1-cded-3896-8234-c9c30fc9017a,SESCO,II.1.1,Capital Federal,AR-C,annual,2019,naphtha combustion consumption by to the public,793.179926,TJ,CH4,3.0,kg/TJ,2379.5397780000003,kg -fba16094-695c-30a4-9cfb-6a7b4fc355d7,SESCO,II.1.1,Capital Federal,AR-C,annual,2019,naphtha combustion consumption by to the public,793.179926,TJ,N2O,0.6,kg/TJ,475.9079556,kg -5441fc98-b23d-32a4-83e4-ba5929df3592,SESCO,II.1.1,Catamarca,AR-K,annual,2019,naphtha combustion consumption by to the public,73.81503359999999,TJ,CO2,73300.0,kg/TJ,5410641.96288,kg -03e528d2-6bb7-3f4b-bf29-cc85e27c9ae9,SESCO,II.1.1,Catamarca,AR-K,annual,2019,naphtha combustion consumption by to the public,73.81503359999999,TJ,CH4,3.0,kg/TJ,221.44510079999998,kg -fd635be7-921d-3706-8de4-360108ead1d7,SESCO,II.1.1,Catamarca,AR-K,annual,2019,naphtha combustion consumption by to the public,73.81503359999999,TJ,N2O,0.6,kg/TJ,44.28902015999999,kg -a5e36ac8-101a-3628-9f25-b6e40b0d4d46,SESCO,II.1.1,Chaco,AR-H,annual,2019,naphtha combustion consumption by to the public,62.175898399999994,TJ,CO2,73300.0,kg/TJ,4557493.35272,kg -d2331c42-59e6-39cf-a035-9336f4e0bf4f,SESCO,II.1.1,Chaco,AR-H,annual,2019,naphtha combustion consumption by to the public,62.175898399999994,TJ,CH4,3.0,kg/TJ,186.52769519999998,kg -f13cc3f1-1bab-3f79-9041-f2075ab25594,SESCO,II.1.1,Chaco,AR-H,annual,2019,naphtha combustion consumption by to the public,62.175898399999994,TJ,N2O,0.6,kg/TJ,37.30553903999999,kg -e3a35dbd-36f8-3d65-a200-553691b3b852,SESCO,II.1.1,Chubut,AR-U,annual,2019,naphtha combustion consumption by to the public,195.18166359999998,TJ,CO2,73300.0,kg/TJ,14306815.941879999,kg -0de47633-2ac2-3594-b748-e1f5339cbfbd,SESCO,II.1.1,Chubut,AR-U,annual,2019,naphtha combustion consumption by to the public,195.18166359999998,TJ,CH4,3.0,kg/TJ,585.5449907999999,kg -1e30e30c-468a-339f-94bf-ae9df33b3784,SESCO,II.1.1,Chubut,AR-U,annual,2019,naphtha combustion consumption by to the public,195.18166359999998,TJ,N2O,0.6,kg/TJ,117.10899815999998,kg -aa19cf70-c3fe-3090-9c86-2a68d304546c,SESCO,II.1.1,Corrientes,AR-W,annual,2019,naphtha combustion consumption by to the public,91.75618759999999,TJ,CO2,73300.0,kg/TJ,6725728.55108,kg -0235243c-a53f-3d82-81ff-636e790462e0,SESCO,II.1.1,Corrientes,AR-W,annual,2019,naphtha combustion consumption by to the public,91.75618759999999,TJ,CH4,3.0,kg/TJ,275.2685628,kg -e91e0047-9e77-39d3-bedc-b9c0706a54a0,SESCO,II.1.1,Corrientes,AR-W,annual,2019,naphtha combustion consumption by to the public,91.75618759999999,TJ,N2O,0.6,kg/TJ,55.053712559999994,kg -a39387cc-3c5f-38ee-a8c7-cdc8f95e5748,SESCO,II.1.1,Córdoba,AR-X,annual,2019,naphtha combustion consumption by to the public,425.64257119999996,TJ,CO2,73300.0,kg/TJ,31199600.46896,kg -e80b6e9d-0be1-30bf-aa19-11fb606566e3,SESCO,II.1.1,Córdoba,AR-X,annual,2019,naphtha combustion consumption by to the public,425.64257119999996,TJ,CH4,3.0,kg/TJ,1276.9277135999998,kg -6347c81a-1459-3007-b8b2-c16ecfdd969c,SESCO,II.1.1,Córdoba,AR-X,annual,2019,naphtha combustion consumption by to the public,425.64257119999996,TJ,N2O,0.6,kg/TJ,255.38554271999996,kg -080c2413-dba9-3c3f-b75a-5d76f4c3e437,SESCO,II.1.1,Entre Rios,AR-E,annual,2019,naphtha combustion consumption by to the public,167.50102599999997,TJ,CO2,73300.0,kg/TJ,12277825.205799997,kg -77db89e7-692b-395f-880d-2c7ae8b9a5dd,SESCO,II.1.1,Entre Rios,AR-E,annual,2019,naphtha combustion consumption by to the public,167.50102599999997,TJ,CH4,3.0,kg/TJ,502.5030779999999,kg -92433bb5-06f7-3b51-8736-7ba60421d287,SESCO,II.1.1,Entre Rios,AR-E,annual,2019,naphtha combustion consumption by to the public,167.50102599999997,TJ,N2O,0.6,kg/TJ,100.50061559999997,kg -7960965e-37be-3f43-a8d8-82aac68b9b62,SESCO,II.1.1,Formosa,AR-P,annual,2019,naphtha combustion consumption by to the public,108.18968159999999,TJ,CO2,73300.0,kg/TJ,7930303.661279999,kg -381a5368-5f91-3ff4-8ebd-1467ff41d910,SESCO,II.1.1,Formosa,AR-P,annual,2019,naphtha combustion consumption by to the public,108.18968159999999,TJ,CH4,3.0,kg/TJ,324.5690448,kg -5aebf0d0-aefb-3778-9d73-7833dad3c7d0,SESCO,II.1.1,Formosa,AR-P,annual,2019,naphtha combustion consumption by to the public,108.18968159999999,TJ,N2O,0.6,kg/TJ,64.91380895999998,kg -ae7a6841-6f0c-38a3-b260-13bfdcf671a7,SESCO,II.1.1,Jujuy,AR-Y,annual,2019,naphtha combustion consumption by to the public,29.550135999999995,TJ,CO2,73300.0,kg/TJ,2166024.9687999994,kg -1aca8c6f-fcf3-32a0-a33d-dab008579521,SESCO,II.1.1,Jujuy,AR-Y,annual,2019,naphtha combustion consumption by to the public,29.550135999999995,TJ,CH4,3.0,kg/TJ,88.65040799999998,kg -24da90de-97b3-3978-ba18-a5c1aaf0e219,SESCO,II.1.1,Jujuy,AR-Y,annual,2019,naphtha combustion consumption by to the public,29.550135999999995,TJ,N2O,0.6,kg/TJ,17.730081599999995,kg -cab7c38c-76e6-3771-b7c7-74beaea188f3,SESCO,II.1.1,La Pampa,AR-L,annual,2019,naphtha combustion consumption by to the public,38.50563639999999,TJ,CO2,73300.0,kg/TJ,2822463.1481199996,kg -8fca916f-2b37-3660-b220-951b693148d7,SESCO,II.1.1,La Pampa,AR-L,annual,2019,naphtha combustion consumption by to the public,38.50563639999999,TJ,CH4,3.0,kg/TJ,115.51690919999999,kg -e8219382-0e4c-3f8c-b221-159e1503c425,SESCO,II.1.1,La Pampa,AR-L,annual,2019,naphtha combustion consumption by to the public,38.50563639999999,TJ,N2O,0.6,kg/TJ,23.103381839999994,kg -fc6d1c75-0e41-38c5-9b5d-0d49ebb4be82,SESCO,II.1.1,La Rioja,AR-F,annual,2019,naphtha combustion consumption by to the public,16.5239536,TJ,CO2,73300.0,kg/TJ,1211205.79888,kg -0bae7953-e016-3e2d-8893-5e4a031edc06,SESCO,II.1.1,La Rioja,AR-F,annual,2019,naphtha combustion consumption by to the public,16.5239536,TJ,CH4,3.0,kg/TJ,49.571860799999996,kg -cc7077ef-923f-316e-86a0-b62ab75e64c8,SESCO,II.1.1,La Rioja,AR-F,annual,2019,naphtha combustion consumption by to the public,16.5239536,TJ,N2O,0.6,kg/TJ,9.91437216,kg -92837ff5-6a13-3413-ad1e-0665cf93e47e,SESCO,II.1.1,Mendoza,AR-M,annual,2019,naphtha combustion consumption by to the public,133.78974839999998,TJ,CO2,73300.0,kg/TJ,9806788.557719998,kg -83500af2-2fab-38cb-9a22-dcb968b4c501,SESCO,II.1.1,Mendoza,AR-M,annual,2019,naphtha combustion consumption by to the public,133.78974839999998,TJ,CH4,3.0,kg/TJ,401.3692451999999,kg -2bbdcb62-010e-31cf-98e5-6c7a57f42d32,SESCO,II.1.1,Mendoza,AR-M,annual,2019,naphtha combustion consumption by to the public,133.78974839999998,TJ,N2O,0.6,kg/TJ,80.27384903999999,kg -dfe48a5f-08ab-3816-89ce-bc8adfa73bb1,SESCO,II.1.1,Misiones,AR-N,annual,2019,naphtha combustion consumption by to the public,85.12248359999998,TJ,CO2,73300.0,kg/TJ,6239478.047879999,kg -7ab3b798-d205-3b02-924a-81a405a637cd,SESCO,II.1.1,Misiones,AR-N,annual,2019,naphtha combustion consumption by to the public,85.12248359999998,TJ,CH4,3.0,kg/TJ,255.36745079999994,kg -919f073b-60f1-38ca-af79-91c1c3826c7e,SESCO,II.1.1,Misiones,AR-N,annual,2019,naphtha combustion consumption by to the public,85.12248359999998,TJ,N2O,0.6,kg/TJ,51.073490159999984,kg -451b1f08-2e0c-32a1-a5b5-0c1312e8e658,SESCO,II.1.1,Neuquén,AR-Q,annual,2019,naphtha combustion consumption by to the public,141.9009592,TJ,CO2,73300.0,kg/TJ,10401340.30936,kg -08c05f40-d9ef-3dcf-8c8e-c712485d649c,SESCO,II.1.1,Neuquén,AR-Q,annual,2019,naphtha combustion consumption by to the public,141.9009592,TJ,CH4,3.0,kg/TJ,425.70287759999997,kg -d113b519-0dea-3e7a-99a8-05f16eccb0bb,SESCO,II.1.1,Neuquén,AR-Q,annual,2019,naphtha combustion consumption by to the public,141.9009592,TJ,N2O,0.6,kg/TJ,85.14057551999998,kg -6397c896-4d26-3b13-874a-1f592c58dda1,SESCO,II.1.1,Rio Negro,AR-R,annual,2019,naphtha combustion consumption by to the public,144.283062,TJ,CO2,73300.0,kg/TJ,10575948.444600001,kg -2d5f7ee6-d049-384e-8f46-0d9a18f6d92b,SESCO,II.1.1,Rio Negro,AR-R,annual,2019,naphtha combustion consumption by to the public,144.283062,TJ,CH4,3.0,kg/TJ,432.84918600000003,kg -7e7b0750-63fa-3edd-b217-54eb6e749c2f,SESCO,II.1.1,Rio Negro,AR-R,annual,2019,naphtha combustion consumption by to the public,144.283062,TJ,N2O,0.6,kg/TJ,86.5698372,kg -8a2e90d3-f483-332c-8138-ec1942c655e5,SESCO,II.1.1,Salta,AR-A,annual,2019,naphtha combustion consumption by to the public,16.4636472,TJ,CO2,73300.0,kg/TJ,1206785.3397600001,kg -92067699-a1bf-327f-af83-7f34b5551cdb,SESCO,II.1.1,Salta,AR-A,annual,2019,naphtha combustion consumption by to the public,16.4636472,TJ,CH4,3.0,kg/TJ,49.390941600000005,kg -df1f0898-b7a1-3a55-a46d-f894773267b3,SESCO,II.1.1,Salta,AR-A,annual,2019,naphtha combustion consumption by to the public,16.4636472,TJ,N2O,0.6,kg/TJ,9.87818832,kg -cc8f9bbb-7742-3750-b6b5-ba3b68f39383,SESCO,II.1.1,San Juan,AR-J,annual,2019,naphtha combustion consumption by to the public,31.660859999999996,TJ,CO2,73300.0,kg/TJ,2320741.0379999997,kg -02b34c90-d6e7-3656-b0e3-5f36eeb6c111,SESCO,II.1.1,San Juan,AR-J,annual,2019,naphtha combustion consumption by to the public,31.660859999999996,TJ,CH4,3.0,kg/TJ,94.98257999999998,kg -0dbf6e62-d12c-3735-9024-6640a2a82549,SESCO,II.1.1,San Juan,AR-J,annual,2019,naphtha combustion consumption by to the public,31.660859999999996,TJ,N2O,0.6,kg/TJ,18.996515999999996,kg -c930593b-163b-3547-8669-4cbfb714ba59,SESCO,II.1.1,San Luis,AR-D,annual,2019,naphtha combustion consumption by to the public,81.8056316,TJ,CO2,73300.0,kg/TJ,5996352.796279999,kg -8a8d2ea0-4ea4-302c-a86e-14c05796b0c3,SESCO,II.1.1,San Luis,AR-D,annual,2019,naphtha combustion consumption by to the public,81.8056316,TJ,CH4,3.0,kg/TJ,245.4168948,kg -aea684af-d343-31d3-b9ee-95dc07bb8946,SESCO,II.1.1,San Luis,AR-D,annual,2019,naphtha combustion consumption by to the public,81.8056316,TJ,N2O,0.6,kg/TJ,49.08337896,kg -64fbf9d6-e30f-3aa7-8ffe-cb0cfbd2776f,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2019,naphtha combustion consumption by to the public,73.9959528,TJ,CO2,73300.0,kg/TJ,5423903.34024,kg -ccced709-3215-32a0-845d-3d894b1114bc,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2019,naphtha combustion consumption by to the public,73.9959528,TJ,CH4,3.0,kg/TJ,221.9878584,kg -aa73536f-bcb9-3a7d-b036-1bdcddf00119,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2019,naphtha combustion consumption by to the public,73.9959528,TJ,N2O,0.6,kg/TJ,44.39757168,kg -b0a9e891-d4c4-304a-bf8b-edf3c28aef93,SESCO,II.1.1,Santa Fe,AR-S,annual,2019,naphtha combustion consumption by to the public,486.00927759999996,TJ,CO2,73300.0,kg/TJ,35624480.04808,kg -a4ae1f0c-72b6-33b5-bf7c-4918367b8e84,SESCO,II.1.1,Santa Fe,AR-S,annual,2019,naphtha combustion consumption by to the public,486.00927759999996,TJ,CH4,3.0,kg/TJ,1458.0278328,kg -37c4970a-09ce-3e52-9c7b-7ff51f60931b,SESCO,II.1.1,Santa Fe,AR-S,annual,2019,naphtha combustion consumption by to the public,486.00927759999996,TJ,N2O,0.6,kg/TJ,291.60556655999994,kg -77126774-85e8-3659-9aae-4ce8b8ce649f,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2019,naphtha combustion consumption by to the public,74.176872,TJ,CO2,73300.0,kg/TJ,5437164.7176,kg -9fbe6726-5fd4-30fa-9848-19f7b2cd1aaa,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2019,naphtha combustion consumption by to the public,74.176872,TJ,CH4,3.0,kg/TJ,222.530616,kg -ccb321aa-2e84-305c-adc7-a9547ae5fc06,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2019,naphtha combustion consumption by to the public,74.176872,TJ,N2O,0.6,kg/TJ,44.5061232,kg -0cb62387-2318-351e-88cc-75848b3d2180,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2019,naphtha combustion consumption by to the public,21.921376399999996,TJ,CO2,73300.0,kg/TJ,1606836.8901199996,kg -a89cd31e-4c2c-3ee9-a10b-d39d0dc8c0a9,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2019,naphtha combustion consumption by to the public,21.921376399999996,TJ,CH4,3.0,kg/TJ,65.76412919999999,kg -95ef44d5-f563-3a2d-a557-e7b8c9a383b7,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2019,naphtha combustion consumption by to the public,21.921376399999996,TJ,N2O,0.6,kg/TJ,13.152825839999997,kg -2a41cb46-286c-3667-83cc-eb7ce19ccc7f,SESCO,II.1.1,Tucuman,AR-T,annual,2019,naphtha combustion consumption by to the public,11.9708204,TJ,CO2,73300.0,kg/TJ,877461.1353199999,kg -dbe1eb8e-2d96-3ea3-b9d6-12f351baa35a,SESCO,II.1.1,Tucuman,AR-T,annual,2019,naphtha combustion consumption by to the public,11.9708204,TJ,CH4,3.0,kg/TJ,35.912461199999996,kg -650a7913-131b-3b3a-a26c-cf420f7cf4a6,SESCO,II.1.1,Tucuman,AR-T,annual,2019,naphtha combustion consumption by to the public,11.9708204,TJ,N2O,0.6,kg/TJ,7.182492239999999,kg -15d82659-141b-3260-843b-688ba8de0fce,SESCO,II.1.1,Buenos Aires,AR-B,annual,2019,naphtha combustion consumption by freight transport,9.7394836,TJ,CO2,73300.0,kg/TJ,713904.14788,kg -e3394ee1-4e2d-35cd-ae93-43de8848415f,SESCO,II.1.1,Buenos Aires,AR-B,annual,2019,naphtha combustion consumption by freight transport,9.7394836,TJ,CH4,3.0,kg/TJ,29.2184508,kg -4dfd6c66-eaa4-3db5-b1c9-d3d7a308ab75,SESCO,II.1.1,Buenos Aires,AR-B,annual,2019,naphtha combustion consumption by freight transport,9.7394836,TJ,N2O,0.6,kg/TJ,5.8436901599999995,kg -35a4c64f-1148-39eb-aab5-88b9406e9ffd,SESCO,II.1.1,Capital Federal,AR-C,annual,2019,naphtha combustion consumption by freight transport,4.4626736,TJ,CO2,73300.0,kg/TJ,327113.97488,kg -911bb426-16ed-36a7-b7ee-442076ba3cec,SESCO,II.1.1,Capital Federal,AR-C,annual,2019,naphtha combustion consumption by freight transport,4.4626736,TJ,CH4,3.0,kg/TJ,13.3880208,kg -6cb0fe14-8049-32b1-94c1-efc783b32eb1,SESCO,II.1.1,Capital Federal,AR-C,annual,2019,naphtha combustion consumption by freight transport,4.4626736,TJ,N2O,0.6,kg/TJ,2.6776041599999996,kg -dd684e87-5fe2-303a-86a7-214686f8371a,SESCO,II.1.1,Córdoba,AR-X,annual,2019,naphtha combustion consumption by freight transport,1.3870472,TJ,CO2,73300.0,kg/TJ,101670.55976,kg -e20b77e7-48b6-3240-be63-a3348684dccb,SESCO,II.1.1,Córdoba,AR-X,annual,2019,naphtha combustion consumption by freight transport,1.3870472,TJ,CH4,3.0,kg/TJ,4.1611416000000006,kg -dd7a37de-9345-3f43-8578-30d1ff61131e,SESCO,II.1.1,Córdoba,AR-X,annual,2019,naphtha combustion consumption by freight transport,1.3870472,TJ,N2O,0.6,kg/TJ,0.83222832,kg -cde4ffc9-988b-3f8e-b3a9-0f012c953627,SESCO,II.1.1,Entre Rios,AR-E,annual,2019,naphtha combustion consumption by freight transport,0.2713788,TJ,CO2,73300.0,kg/TJ,19892.066039999998,kg -36b4fa6a-3a72-3000-9318-a5715dcb7369,SESCO,II.1.1,Entre Rios,AR-E,annual,2019,naphtha combustion consumption by freight transport,0.2713788,TJ,CH4,3.0,kg/TJ,0.8141364,kg -d89bdfbe-3057-3be0-8f7b-613c7b8fcb0d,SESCO,II.1.1,Entre Rios,AR-E,annual,2019,naphtha combustion consumption by freight transport,0.2713788,TJ,N2O,0.6,kg/TJ,0.16282728,kg -76ebe90c-ce5e-3136-956f-403a88b3cf4e,SESCO,II.1.1,Mendoza,AR-M,annual,2019,naphtha combustion consumption by freight transport,0.1809192,TJ,CO2,73300.0,kg/TJ,13261.37736,kg -63415010-a225-361f-8d35-968747c89b9e,SESCO,II.1.1,Mendoza,AR-M,annual,2019,naphtha combustion consumption by freight transport,0.1809192,TJ,CH4,3.0,kg/TJ,0.5427576000000001,kg -19f3f508-1ca3-3ace-89f5-b3c28e41ba16,SESCO,II.1.1,Mendoza,AR-M,annual,2019,naphtha combustion consumption by freight transport,0.1809192,TJ,N2O,0.6,kg/TJ,0.10855152,kg -6b516668-5c85-3a51-bc30-7790d6ddaf85,SESCO,II.1.1,Santa Fe,AR-S,annual,2019,naphtha combustion consumption by freight transport,1.4775067999999998,TJ,CO2,73300.0,kg/TJ,108301.24843999998,kg -66bfef1f-72a8-30bb-bfd8-8ad700a53577,SESCO,II.1.1,Santa Fe,AR-S,annual,2019,naphtha combustion consumption by freight transport,1.4775067999999998,TJ,CH4,3.0,kg/TJ,4.4325204,kg -5a1ba79e-c962-3c44-810b-f51a96280055,SESCO,II.1.1,Santa Fe,AR-S,annual,2019,naphtha combustion consumption by freight transport,1.4775067999999998,TJ,N2O,0.6,kg/TJ,0.8865040799999998,kg -b8403223-f4a8-326a-b4dd-ec626923318c,SESCO,II.1.1,Buenos Aires,AR-B,annual,2019,naphtha combustion consumption by freight transport,5.879873999999999,TJ,CO2,73300.0,kg/TJ,430994.7641999999,kg -eb8dd8b3-1eb4-3365-a6df-f3378a4299cb,SESCO,II.1.1,Buenos Aires,AR-B,annual,2019,naphtha combustion consumption by freight transport,5.879873999999999,TJ,CH4,3.0,kg/TJ,17.639621999999996,kg -29b108ad-e472-3f23-bb84-752f42ea25e9,SESCO,II.1.1,Buenos Aires,AR-B,annual,2019,naphtha combustion consumption by freight transport,5.879873999999999,TJ,N2O,0.6,kg/TJ,3.5279243999999994,kg -82d70c00-1bc6-379b-97bd-a26355f588b7,SESCO,II.1.1,Capital Federal,AR-C,annual,2019,naphtha combustion consumption by freight transport,2.4725623999999997,TJ,CO2,73300.0,kg/TJ,181238.82391999997,kg -48b78a6b-dc5d-38cc-8d5c-36733e063cf4,SESCO,II.1.1,Capital Federal,AR-C,annual,2019,naphtha combustion consumption by freight transport,2.4725623999999997,TJ,CH4,3.0,kg/TJ,7.4176872,kg -53330795-d117-3b07-ba81-2ff61f5e55a8,SESCO,II.1.1,Capital Federal,AR-C,annual,2019,naphtha combustion consumption by freight transport,2.4725623999999997,TJ,N2O,0.6,kg/TJ,1.4835374399999999,kg -17d72963-b92a-3428-8a02-96ea590c86f4,SESCO,II.1.1,Chaco,AR-H,annual,2019,naphtha combustion consumption by freight transport,0.030153199999999998,TJ,CO2,73300.0,kg/TJ,2210.2295599999998,kg -2cbd8a1b-d5a3-3267-a6e5-3c50f16a0b79,SESCO,II.1.1,Chaco,AR-H,annual,2019,naphtha combustion consumption by freight transport,0.030153199999999998,TJ,CH4,3.0,kg/TJ,0.0904596,kg -155493ee-dbe8-3239-943c-deb2f4f0376b,SESCO,II.1.1,Chaco,AR-H,annual,2019,naphtha combustion consumption by freight transport,0.030153199999999998,TJ,N2O,0.6,kg/TJ,0.018091919999999997,kg -3007f718-5c3e-3320-a9e6-b0b57ecedf7a,SESCO,II.1.1,Corrientes,AR-W,annual,2019,naphtha combustion consumption by freight transport,0.301532,TJ,CO2,73300.0,kg/TJ,22102.2956,kg -279b2c13-ca19-3aea-bbd6-b707614da32f,SESCO,II.1.1,Corrientes,AR-W,annual,2019,naphtha combustion consumption by freight transport,0.301532,TJ,CH4,3.0,kg/TJ,0.9045960000000001,kg -5ed72c7e-6ce2-3c0c-ba65-78dd54986c9b,SESCO,II.1.1,Corrientes,AR-W,annual,2019,naphtha combustion consumption by freight transport,0.301532,TJ,N2O,0.6,kg/TJ,0.1809192,kg -0ba6e5aa-3e89-3505-8dde-7348c72560fe,SESCO,II.1.1,Córdoba,AR-X,annual,2019,naphtha combustion consumption by freight transport,0.8744427999999999,TJ,CO2,73300.0,kg/TJ,64096.657239999986,kg -22759c40-80da-3e27-9062-dc2cf7a73d52,SESCO,II.1.1,Córdoba,AR-X,annual,2019,naphtha combustion consumption by freight transport,0.8744427999999999,TJ,CH4,3.0,kg/TJ,2.6233283999999997,kg -236df009-7093-344e-a85e-d9f88b77c0a0,SESCO,II.1.1,Córdoba,AR-X,annual,2019,naphtha combustion consumption by freight transport,0.8744427999999999,TJ,N2O,0.6,kg/TJ,0.5246656799999999,kg -da08c851-2ef0-3c53-b090-bb7b7b9ee403,SESCO,II.1.1,Entre Rios,AR-E,annual,2019,naphtha combustion consumption by freight transport,1.0252088,TJ,CO2,73300.0,kg/TJ,75147.80503999999,kg -215050cf-ce55-3648-a917-cbaf15da1950,SESCO,II.1.1,Entre Rios,AR-E,annual,2019,naphtha combustion consumption by freight transport,1.0252088,TJ,CH4,3.0,kg/TJ,3.0756264,kg -ecbe1139-9448-37dc-8d9f-551e6ceb9db5,SESCO,II.1.1,Entre Rios,AR-E,annual,2019,naphtha combustion consumption by freight transport,1.0252088,TJ,N2O,0.6,kg/TJ,0.6151252799999999,kg -1e64852d-43d4-3f15-b148-c7dd1337e5c3,SESCO,II.1.1,Santa Fe,AR-S,annual,2019,naphtha combustion consumption by freight transport,1.2965876,TJ,CO2,73300.0,kg/TJ,95039.87108000001,kg -3af9e899-8f0f-367e-9dc7-c13679b05f09,SESCO,II.1.1,Santa Fe,AR-S,annual,2019,naphtha combustion consumption by freight transport,1.2965876,TJ,CH4,3.0,kg/TJ,3.8897628,kg -c90768d5-d8e9-3222-a149-d81d758bf4a4,SESCO,II.1.1,Santa Fe,AR-S,annual,2019,naphtha combustion consumption by freight transport,1.2965876,TJ,N2O,0.6,kg/TJ,0.77795256,kg -f9b953ff-3409-30fb-bd1c-bab2d4a861ab,SESCO,II.1.1,Santa Fe,AR-S,annual,2019,naphtha combustion consumption by public passenger transport,0.4522979999999999,TJ,CO2,73300.0,kg/TJ,33153.4434,kg -924a74a8-9e1b-39c8-a3cf-5c838b01eae1,SESCO,II.1.1,Santa Fe,AR-S,annual,2019,naphtha combustion consumption by public passenger transport,0.4522979999999999,TJ,CH4,3.0,kg/TJ,1.3568939999999998,kg -27cec95f-aa63-3c72-91f7-55a89760f359,SESCO,II.1.1,Santa Fe,AR-S,annual,2019,naphtha combustion consumption by public passenger transport,0.4522979999999999,TJ,N2O,0.6,kg/TJ,0.2713787999999999,kg -67517174-40a1-300f-9aa1-d9e8efd1e7ab,SESCO,II.1.1,Catamarca,AR-K,annual,2019,naphtha combustion consumption by to the public,208.63873522799997,TJ,CO2,73300.0,kg/TJ,15293219.292212399,kg -fc0e516a-91ae-3a44-917c-a09b29564203,SESCO,II.1.1,Catamarca,AR-K,annual,2019,naphtha combustion consumption by to the public,208.63873522799997,TJ,CH4,3.0,kg/TJ,625.9162056839999,kg -331b02a8-8d67-31d7-92ca-139a0e1569b9,SESCO,II.1.1,Catamarca,AR-K,annual,2019,naphtha combustion consumption by to the public,208.63873522799997,TJ,N2O,0.6,kg/TJ,125.18324113679998,kg -83bea6bd-f573-363f-9c29-65ac5768a75b,SESCO,II.1.1,Chaco,AR-H,annual,2019,naphtha combustion consumption by to the public,108.40075399999999,TJ,CO2,73300.0,kg/TJ,7945775.2682,kg -838fd935-608e-3f4b-83d2-382beffe7fcd,SESCO,II.1.1,Chaco,AR-H,annual,2019,naphtha combustion consumption by to the public,108.40075399999999,TJ,CH4,3.0,kg/TJ,325.20226199999996,kg -0fa208de-08d4-3063-8ecd-d8bfc77fa1c8,SESCO,II.1.1,Chaco,AR-H,annual,2019,naphtha combustion consumption by to the public,108.40075399999999,TJ,N2O,0.6,kg/TJ,65.04045239999999,kg -63ac2b44-aae5-39e3-91ef-310f53206dba,SESCO,II.1.1,Jujuy,AR-Y,annual,2019,naphtha combustion consumption by to the public,521.2282151999999,TJ,CO2,73300.0,kg/TJ,38206028.174159996,kg -4600ca25-d5a5-39a0-8d3d-c9fb0c45c29e,SESCO,II.1.1,Jujuy,AR-Y,annual,2019,naphtha combustion consumption by to the public,521.2282151999999,TJ,CH4,3.0,kg/TJ,1563.6846455999998,kg -562ed748-05b0-3d66-bc9a-d7aa6bf28db5,SESCO,II.1.1,Jujuy,AR-Y,annual,2019,naphtha combustion consumption by to the public,521.2282151999999,TJ,N2O,0.6,kg/TJ,312.73692911999996,kg -891907fb-b051-3b0c-9df8-06ab5c0eadd4,SESCO,II.1.1,La Rioja,AR-F,annual,2019,naphtha combustion consumption by to the public,418.4407809119999,TJ,CO2,73300.0,kg/TJ,30671709.240849596,kg -8d0a7ab8-1699-3d74-a17c-75cf1d26e0c6,SESCO,II.1.1,La Rioja,AR-F,annual,2019,naphtha combustion consumption by to the public,418.4407809119999,TJ,CH4,3.0,kg/TJ,1255.3223427359999,kg -3296c0c4-1d6d-3e37-8398-7a98fcc77650,SESCO,II.1.1,La Rioja,AR-F,annual,2019,naphtha combustion consumption by to the public,418.4407809119999,TJ,N2O,0.6,kg/TJ,251.06446854719994,kg -1f4c4aee-3ba7-3cba-9ca2-ba4d2e3f2c5a,SESCO,II.1.1,Salta,AR-A,annual,2019,naphtha combustion consumption by to the public,945.0899384079999,TJ,CO2,73300.0,kg/TJ,69275092.48530638,kg -8fa3b5fa-3bee-33f9-99b1-275aa914b9e6,SESCO,II.1.1,Salta,AR-A,annual,2019,naphtha combustion consumption by to the public,945.0899384079999,TJ,CH4,3.0,kg/TJ,2835.2698152239996,kg -630b57e4-eaf0-38b2-9974-7a09ea9b5d66,SESCO,II.1.1,Salta,AR-A,annual,2019,naphtha combustion consumption by to the public,945.0899384079999,TJ,N2O,0.6,kg/TJ,567.0539630447998,kg -fc86591e-7922-30d0-b2b7-c84d60facc4e,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2019,naphtha combustion consumption by to the public,552.0848893559998,TJ,CO2,73300.0,kg/TJ,40467822.38979479,kg -beaca17f-bf27-3c66-a9d3-20679f72de73,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2019,naphtha combustion consumption by to the public,552.0848893559998,TJ,CH4,3.0,kg/TJ,1656.2546680679995,kg -f6f62e79-2be0-3ed6-a647-ac88439d2718,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2019,naphtha combustion consumption by to the public,552.0848893559998,TJ,N2O,0.6,kg/TJ,331.2509336135999,kg -fc883968-d097-3289-91a3-55823eb9b548,SESCO,II.1.1,Tucuman,AR-T,annual,2019,naphtha combustion consumption by to the public,1946.7213482639997,TJ,CO2,73300.0,kg/TJ,142694674.8277512,kg -ebbb93b8-927b-3fe8-965a-98d3e767e5f3,SESCO,II.1.1,Tucuman,AR-T,annual,2019,naphtha combustion consumption by to the public,1946.7213482639997,TJ,CH4,3.0,kg/TJ,5840.164044791999,kg -71a1e521-74d5-3d42-9237-bea606034512,SESCO,II.1.1,Tucuman,AR-T,annual,2019,naphtha combustion consumption by to the public,1946.7213482639997,TJ,N2O,0.6,kg/TJ,1168.0328089583998,kg -629bcd47-a2d5-39c0-bc6a-5fae378f2234,SESCO,II.1.1,Catamarca,AR-K,annual,2019,naphtha combustion consumption by to the public,18.816199863999998,TJ,CO2,73300.0,kg/TJ,1379227.4500312,kg -3d137c01-a11b-3e08-a45d-2985236832d9,SESCO,II.1.1,Catamarca,AR-K,annual,2019,naphtha combustion consumption by to the public,18.816199863999998,TJ,CH4,3.0,kg/TJ,56.448599591999994,kg -4884bb49-fe4e-3d91-a21a-e50048b6c7f9,SESCO,II.1.1,Catamarca,AR-K,annual,2019,naphtha combustion consumption by to the public,18.816199863999998,TJ,N2O,0.6,kg/TJ,11.289719918399998,kg -1ad21f0a-c27d-3179-8431-26ee3b3764d3,SESCO,II.1.1,Chaco,AR-H,annual,2019,naphtha combustion consumption by to the public,3.5279244,TJ,CO2,73300.0,kg/TJ,258596.85851999998,kg -c91b7ec5-4a6e-3880-a28f-18cd50f0f0fb,SESCO,II.1.1,Chaco,AR-H,annual,2019,naphtha combustion consumption by to the public,3.5279244,TJ,CH4,3.0,kg/TJ,10.5837732,kg -b7e04e1b-b7d7-3842-b039-3c6b62dd2b00,SESCO,II.1.1,Chaco,AR-H,annual,2019,naphtha combustion consumption by to the public,3.5279244,TJ,N2O,0.6,kg/TJ,2.11675464,kg -58a77969-5885-3ec0-a204-99f3df4d73d3,SESCO,II.1.1,Jujuy,AR-Y,annual,2019,naphtha combustion consumption by to the public,23.308423599999998,TJ,CO2,73300.0,kg/TJ,1708507.4498799997,kg -4d2e9a03-5b0c-3934-b3c0-fd58230cae43,SESCO,II.1.1,Jujuy,AR-Y,annual,2019,naphtha combustion consumption by to the public,23.308423599999998,TJ,CH4,3.0,kg/TJ,69.92527079999999,kg -ec731d6c-ffec-3180-9963-2aade86cd05a,SESCO,II.1.1,Jujuy,AR-Y,annual,2019,naphtha combustion consumption by to the public,23.308423599999998,TJ,N2O,0.6,kg/TJ,13.985054159999999,kg -93b7ff23-8824-381b-ad82-c2688e001880,SESCO,II.1.1,La Rioja,AR-F,annual,2019,naphtha combustion consumption by to the public,45.01872759999999,TJ,CO2,73300.0,kg/TJ,3299872.733079999,kg -3b71d492-2a72-36f0-86da-da1602555bc2,SESCO,II.1.1,La Rioja,AR-F,annual,2019,naphtha combustion consumption by to the public,45.01872759999999,TJ,CH4,3.0,kg/TJ,135.0561828,kg -5f4a4042-f1e7-3de9-8f5a-f18bb595875b,SESCO,II.1.1,La Rioja,AR-F,annual,2019,naphtha combustion consumption by to the public,45.01872759999999,TJ,N2O,0.6,kg/TJ,27.011236559999993,kg -6d879c2d-282a-32c4-9d67-51e3be188d94,SESCO,II.1.1,Salta,AR-A,annual,2019,naphtha combustion consumption by to the public,58.82467175199999,TJ,CO2,73300.0,kg/TJ,4311848.4394216,kg -60a557f8-e9ef-39bf-ba0f-fe34f83576ea,SESCO,II.1.1,Salta,AR-A,annual,2019,naphtha combustion consumption by to the public,58.82467175199999,TJ,CH4,3.0,kg/TJ,176.47401525599997,kg -77187e30-0508-3819-b55e-d2be9797d244,SESCO,II.1.1,Salta,AR-A,annual,2019,naphtha combustion consumption by to the public,58.82467175199999,TJ,N2O,0.6,kg/TJ,35.29480305119999,kg -f8cd16e0-19e0-3ec0-ba47-ece4dba93e76,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2019,naphtha combustion consumption by to the public,47.06884366799999,TJ,CO2,73300.0,kg/TJ,3450146.2408643994,kg -11aebdd7-8259-3c81-aea4-5ba003e1ed3f,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2019,naphtha combustion consumption by to the public,47.06884366799999,TJ,CH4,3.0,kg/TJ,141.20653100399997,kg -2d3dc2a2-26e2-32da-ab73-5062359ef1fa,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2019,naphtha combustion consumption by to the public,47.06884366799999,TJ,N2O,0.6,kg/TJ,28.241306200799993,kg -ff96de22-6eeb-3d09-b998-5494808c34f3,SESCO,II.1.1,Tucuman,AR-T,annual,2019,naphtha combustion consumption by to the public,130.03597653199998,TJ,CO2,73300.0,kg/TJ,9531637.079795599,kg -68b65257-4bf7-33f3-bb3d-6048a9c25e8b,SESCO,II.1.1,Tucuman,AR-T,annual,2019,naphtha combustion consumption by to the public,130.03597653199998,TJ,CH4,3.0,kg/TJ,390.10792959599996,kg -5518df39-347c-3a6f-9d04-8db77b24c935,SESCO,II.1.1,Tucuman,AR-T,annual,2019,naphtha combustion consumption by to the public,130.03597653199998,TJ,N2O,0.6,kg/TJ,78.02158591919998,kg -016fc4d4-f911-3b43-9c95-bc58b726a192,SESCO,II.5.1,Buenos Aires,AR-B,annual,2019,naphtha combustion consumption by agriculture machines,0.9950555999999999,TJ,CO2,73300.0,kg/TJ,72937.57548,kg -12a009c8-4b9f-3d25-8820-f35f7726a8a5,SESCO,II.5.1,Buenos Aires,AR-B,annual,2019,naphtha combustion consumption by agriculture machines,0.9950555999999999,TJ,CH4,3.0,kg/TJ,2.9851668,kg -aa554e58-d1b6-3a94-98df-ba4e413f199d,SESCO,II.5.1,Buenos Aires,AR-B,annual,2019,naphtha combustion consumption by agriculture machines,0.9950555999999999,TJ,N2O,0.6,kg/TJ,0.59703336,kg -25987287-831c-3e79-b904-2a0a0b1dcf28,SESCO,II.5.1,Buenos Aires,AR-B,annual,2019,naphtha combustion consumption by agriculture machines,0.603064,TJ,CO2,73300.0,kg/TJ,44204.5912,kg -de3f612f-1e0d-3a28-9b51-ff75da60b179,SESCO,II.5.1,Buenos Aires,AR-B,annual,2019,naphtha combustion consumption by agriculture machines,0.603064,TJ,CH4,3.0,kg/TJ,1.8091920000000001,kg -273e2c81-d71d-3881-affe-47869b658329,SESCO,II.5.1,Buenos Aires,AR-B,annual,2019,naphtha combustion consumption by agriculture machines,0.603064,TJ,N2O,0.6,kg/TJ,0.3618384,kg -6b1fbc95-e01d-34d8-8e75-3b2279f77e05,SESCO,II.1.1,Buenos Aires,AR-B,annual,2019,naphtha combustion consumption by to the public,16958.973816399997,TJ,CO2,73300.0,kg/TJ,1243092780.7421198,kg -de7932d2-bcc8-3fd9-93de-51d7a0cb2808,SESCO,II.1.1,Buenos Aires,AR-B,annual,2019,naphtha combustion consumption by to the public,16958.973816399997,TJ,CH4,3.0,kg/TJ,50876.92144919999,kg -3aaec498-099e-334d-9785-f4b96420a2fc,SESCO,II.1.1,Buenos Aires,AR-B,annual,2019,naphtha combustion consumption by to the public,16958.973816399997,TJ,N2O,0.6,kg/TJ,10175.384289839998,kg -5cc85711-b6d9-3c5d-8b72-cb9dae7ef54d,SESCO,II.1.1,Capital Federal,AR-C,annual,2019,naphtha combustion consumption by to the public,4893.653287599999,TJ,CO2,73300.0,kg/TJ,358704785.98107994,kg -a088d250-8dfb-361f-ad25-40ac0f5f60ee,SESCO,II.1.1,Capital Federal,AR-C,annual,2019,naphtha combustion consumption by to the public,4893.653287599999,TJ,CH4,3.0,kg/TJ,14680.959862799999,kg -cd3f689e-32ca-3480-bfa6-17c2d09e0280,SESCO,II.1.1,Capital Federal,AR-C,annual,2019,naphtha combustion consumption by to the public,4893.653287599999,TJ,N2O,0.6,kg/TJ,2936.1919725599996,kg -bcc365ab-13e3-382c-be71-fb3239fb51d4,SESCO,II.1.1,Catamarca,AR-K,annual,2019,naphtha combustion consumption by to the public,42.3049396,TJ,CO2,73300.0,kg/TJ,3100952.0726799998,kg -5de33453-a05a-3d3a-9f52-cfd8fbd6d61d,SESCO,II.1.1,Catamarca,AR-K,annual,2019,naphtha combustion consumption by to the public,42.3049396,TJ,CH4,3.0,kg/TJ,126.91481879999999,kg -6b9492fe-e42a-387c-bcf0-10ffc9ddfe52,SESCO,II.1.1,Catamarca,AR-K,annual,2019,naphtha combustion consumption by to the public,42.3049396,TJ,N2O,0.6,kg/TJ,25.38296376,kg -3980dcb0-1b4d-3190-91ca-ca9ef67cde7d,SESCO,II.1.1,Chaco,AR-H,annual,2019,naphtha combustion consumption by to the public,989.7486367999999,TJ,CO2,73300.0,kg/TJ,72548575.07744,kg -6618b417-1684-3d46-95c3-bcfb9fe41029,SESCO,II.1.1,Chaco,AR-H,annual,2019,naphtha combustion consumption by to the public,989.7486367999999,TJ,CH4,3.0,kg/TJ,2969.2459103999995,kg -ab951901-7097-3ce8-94d2-b8bd42f91f41,SESCO,II.1.1,Chaco,AR-H,annual,2019,naphtha combustion consumption by to the public,989.7486367999999,TJ,N2O,0.6,kg/TJ,593.8491820799999,kg -f7c38f40-402f-314e-9204-5a9fc4455d46,SESCO,II.1.1,Corrientes,AR-W,annual,2019,naphtha combustion consumption by to the public,853.4260195999999,TJ,CO2,73300.0,kg/TJ,62556127.23667999,kg -601c4786-e72b-3935-9c7b-77c89a42bf04,SESCO,II.1.1,Corrientes,AR-W,annual,2019,naphtha combustion consumption by to the public,853.4260195999999,TJ,CH4,3.0,kg/TJ,2560.2780587999996,kg -a78bbd08-568f-36cd-a06f-c1b5cfcea1b6,SESCO,II.1.1,Corrientes,AR-W,annual,2019,naphtha combustion consumption by to the public,853.4260195999999,TJ,N2O,0.6,kg/TJ,512.0556117599999,kg -4727a697-032f-312a-82eb-88d6858321dd,SESCO,II.1.1,Córdoba,AR-X,annual,2019,naphtha combustion consumption by to the public,3913.2521428,TJ,CO2,73300.0,kg/TJ,286841382.06724,kg -38ce875e-dc50-377a-ac13-adc3d92f3e42,SESCO,II.1.1,Córdoba,AR-X,annual,2019,naphtha combustion consumption by to the public,3913.2521428,TJ,CH4,3.0,kg/TJ,11739.7564284,kg -2a354277-85d3-3aa2-b5cf-e81ea6b8c8a7,SESCO,II.1.1,Córdoba,AR-X,annual,2019,naphtha combustion consumption by to the public,3913.2521428,TJ,N2O,0.6,kg/TJ,2347.9512856799997,kg -0f55baea-7fa0-3a2c-9018-e1c9f5de45a8,SESCO,II.1.1,Entre Rios,AR-E,annual,2019,naphtha combustion consumption by to the public,1027.0179919999998,TJ,CO2,73300.0,kg/TJ,75280418.81359999,kg -08138503-7c78-3c57-9632-7fa88a6bd977,SESCO,II.1.1,Entre Rios,AR-E,annual,2019,naphtha combustion consumption by to the public,1027.0179919999998,TJ,CH4,3.0,kg/TJ,3081.0539759999992,kg -e20a35e4-d02f-33b9-9b54-e643a346aea4,SESCO,II.1.1,Entre Rios,AR-E,annual,2019,naphtha combustion consumption by to the public,1027.0179919999998,TJ,N2O,0.6,kg/TJ,616.2107951999999,kg -91a61900-68c8-3c30-a88e-3a45dcfce008,SESCO,II.1.1,Formosa,AR-P,annual,2019,naphtha combustion consumption by to the public,370.3717556,TJ,CO2,73300.0,kg/TJ,27148249.68548,kg -fecdfe23-d544-32b1-9eea-9496321bdd5e,SESCO,II.1.1,Formosa,AR-P,annual,2019,naphtha combustion consumption by to the public,370.3717556,TJ,CH4,3.0,kg/TJ,1111.1152668,kg -704fac6e-1555-3ab0-8496-3ca42b6223bf,SESCO,II.1.1,Formosa,AR-P,annual,2019,naphtha combustion consumption by to the public,370.3717556,TJ,N2O,0.6,kg/TJ,222.22305335999997,kg -76df7152-4682-306b-83d4-261a5b8779f0,SESCO,II.1.1,Jujuy,AR-Y,annual,2019,naphtha combustion consumption by to the public,178.56725039999998,TJ,CO2,73300.0,kg/TJ,13088979.454319999,kg -c4da90d7-72ab-3598-b054-4e96ff8f24ae,SESCO,II.1.1,Jujuy,AR-Y,annual,2019,naphtha combustion consumption by to the public,178.56725039999998,TJ,CH4,3.0,kg/TJ,535.7017512,kg -a1374630-4096-303e-8d77-840d0d7283e7,SESCO,II.1.1,Jujuy,AR-Y,annual,2019,naphtha combustion consumption by to the public,178.56725039999998,TJ,N2O,0.6,kg/TJ,107.14035023999999,kg -4fac76ac-5d73-361f-b933-6e516c720c91,SESCO,II.1.1,La Pampa,AR-L,annual,2019,naphtha combustion consumption by to the public,331.02182959999993,TJ,CO2,73300.0,kg/TJ,24263900.109679993,kg -c86f9819-3159-3ba5-b7f2-115c37ec6ca5,SESCO,II.1.1,La Pampa,AR-L,annual,2019,naphtha combustion consumption by to the public,331.02182959999993,TJ,CH4,3.0,kg/TJ,993.0654887999998,kg -56fc2915-c31e-3d29-99f3-5238e4feb385,SESCO,II.1.1,La Pampa,AR-L,annual,2019,naphtha combustion consumption by to the public,331.02182959999993,TJ,N2O,0.6,kg/TJ,198.61309775999996,kg -ac93445d-ac79-3916-b5b5-872287893d7d,SESCO,II.1.1,La Rioja,AR-F,annual,2019,naphtha combustion consumption by to the public,272.1929364,TJ,CO2,73300.0,kg/TJ,19951742.23812,kg -9d019da1-7929-3587-8d71-4dfe40b32763,SESCO,II.1.1,La Rioja,AR-F,annual,2019,naphtha combustion consumption by to the public,272.1929364,TJ,CH4,3.0,kg/TJ,816.5788092,kg -c9d6ceb9-adad-38ee-b882-51a6b1f6efdb,SESCO,II.1.1,La Rioja,AR-F,annual,2019,naphtha combustion consumption by to the public,272.1929364,TJ,N2O,0.6,kg/TJ,163.31576184,kg -2a046e1d-3b40-3514-a0b1-717b88b16383,SESCO,II.1.1,Mendoza,AR-M,annual,2019,naphtha combustion consumption by to the public,1313.8050772,TJ,CO2,73300.0,kg/TJ,96301912.15876,kg -e72bc342-2c4e-3b75-bf1f-8a6710c1386e,SESCO,II.1.1,Mendoza,AR-M,annual,2019,naphtha combustion consumption by to the public,1313.8050772,TJ,CH4,3.0,kg/TJ,3941.4152316,kg -e2d1c0f9-28f9-34e7-a57a-5b313140493b,SESCO,II.1.1,Mendoza,AR-M,annual,2019,naphtha combustion consumption by to the public,1313.8050772,TJ,N2O,0.6,kg/TJ,788.2830463199999,kg -58c8b885-68a3-3e55-a37d-b42ec5554993,SESCO,II.1.1,Misiones,AR-N,annual,2019,naphtha combustion consumption by to the public,1190.1166508,TJ,CO2,73300.0,kg/TJ,87235550.50364,kg -70936e55-48e7-3f6b-8dcb-ddbc51538005,SESCO,II.1.1,Misiones,AR-N,annual,2019,naphtha combustion consumption by to the public,1190.1166508,TJ,CH4,3.0,kg/TJ,3570.3499524,kg -9d4a12d8-f069-330a-94e1-644e1777c559,SESCO,II.1.1,Misiones,AR-N,annual,2019,naphtha combustion consumption by to the public,1190.1166508,TJ,N2O,0.6,kg/TJ,714.0699904799999,kg -09af9533-4d55-3491-970d-174f73d07323,SESCO,II.1.1,Neuquén,AR-Q,annual,2019,naphtha combustion consumption by to the public,575.1421367999999,TJ,CO2,73300.0,kg/TJ,42157918.62743999,kg -0185093c-4625-3f39-ad99-b046ab5435ac,SESCO,II.1.1,Neuquén,AR-Q,annual,2019,naphtha combustion consumption by to the public,575.1421367999999,TJ,CH4,3.0,kg/TJ,1725.4264103999997,kg -16aee42f-ee54-353f-938c-01fd0aa55013,SESCO,II.1.1,Neuquén,AR-Q,annual,2019,naphtha combustion consumption by to the public,575.1421367999999,TJ,N2O,0.6,kg/TJ,345.0852820799999,kg -86355cdf-eb28-36cd-beaa-705eda32903d,SESCO,II.1.1,Rio Negro,AR-R,annual,2019,naphtha combustion consumption by to the public,160.77686239999997,TJ,CO2,73300.0,kg/TJ,11784944.013919998,kg -79d5bff8-2c93-3be2-922c-4d30f4199a37,SESCO,II.1.1,Rio Negro,AR-R,annual,2019,naphtha combustion consumption by to the public,160.77686239999997,TJ,CH4,3.0,kg/TJ,482.3305871999999,kg -f522c386-8170-3483-b8ae-12b37b8827de,SESCO,II.1.1,Rio Negro,AR-R,annual,2019,naphtha combustion consumption by to the public,160.77686239999997,TJ,N2O,0.6,kg/TJ,96.46611743999998,kg -f403b068-292c-3a31-9fc1-b79c54757ab2,SESCO,II.1.1,Salta,AR-A,annual,2019,naphtha combustion consumption by to the public,243.42678359999996,TJ,CO2,73300.0,kg/TJ,17843183.23788,kg -01bf17f8-e3d4-30f2-b726-1aec356e737a,SESCO,II.1.1,Salta,AR-A,annual,2019,naphtha combustion consumption by to the public,243.42678359999996,TJ,CH4,3.0,kg/TJ,730.2803508,kg -dd08e524-6e5d-37ce-bf64-61bb52b6f573,SESCO,II.1.1,Salta,AR-A,annual,2019,naphtha combustion consumption by to the public,243.42678359999996,TJ,N2O,0.6,kg/TJ,146.05607015999996,kg -634bd1d6-884c-3050-a822-ab7732722a13,SESCO,II.1.1,San Juan,AR-J,annual,2019,naphtha combustion consumption by to the public,244.75352439999998,TJ,CO2,73300.0,kg/TJ,17940433.338519998,kg -3f7e4849-d9f9-38bd-8a74-8cf3cc05987d,SESCO,II.1.1,San Juan,AR-J,annual,2019,naphtha combustion consumption by to the public,244.75352439999998,TJ,CH4,3.0,kg/TJ,734.2605732,kg -1a0d3a43-31e4-39ef-a005-dcb8dce78b3d,SESCO,II.1.1,San Juan,AR-J,annual,2019,naphtha combustion consumption by to the public,244.75352439999998,TJ,N2O,0.6,kg/TJ,146.85211463999997,kg -176bdcb6-90e2-3258-a69e-7137c19ad9c6,SESCO,II.1.1,San Luis,AR-D,annual,2019,naphtha combustion consumption by to the public,210.1074976,TJ,CO2,73300.0,kg/TJ,15400879.57408,kg -4c9988de-28a3-3659-85b8-6f4e4778ed3b,SESCO,II.1.1,San Luis,AR-D,annual,2019,naphtha combustion consumption by to the public,210.1074976,TJ,CH4,3.0,kg/TJ,630.3224928,kg -05abcd31-49e5-3063-913f-cb4b85af00ef,SESCO,II.1.1,San Luis,AR-D,annual,2019,naphtha combustion consumption by to the public,210.1074976,TJ,N2O,0.6,kg/TJ,126.06449855999999,kg -dd645a3f-dc69-31b4-8c6f-2f6f6393c5cb,SESCO,II.1.1,Santa Fe,AR-S,annual,2019,naphtha combustion consumption by to the public,3360.3630676,TJ,CO2,73300.0,kg/TJ,246314612.85507998,kg -1bca8297-36f8-3445-98d2-7e4ecbec8f78,SESCO,II.1.1,Santa Fe,AR-S,annual,2019,naphtha combustion consumption by to the public,3360.3630676,TJ,CH4,3.0,kg/TJ,10081.0892028,kg -bc1df36b-1fd1-301d-8860-48daa91f834b,SESCO,II.1.1,Santa Fe,AR-S,annual,2019,naphtha combustion consumption by to the public,3360.3630676,TJ,N2O,0.6,kg/TJ,2016.2178405599998,kg -3678c3d0-a2d9-306b-b038-d216469c37c2,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2019,naphtha combustion consumption by to the public,421.6321956,TJ,CO2,73300.0,kg/TJ,30905639.93748,kg -fffcf42b-b5a0-37e5-8e0c-5ad7b9975aed,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2019,naphtha combustion consumption by to the public,421.6321956,TJ,CH4,3.0,kg/TJ,1264.8965868,kg -770afe0e-6005-3ed2-9c89-cefd523a68f4,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2019,naphtha combustion consumption by to the public,421.6321956,TJ,N2O,0.6,kg/TJ,252.97931735999998,kg -f7d250dc-8ba5-3c38-b21e-7ef386aa8502,SESCO,II.1.1,Tucuman,AR-T,annual,2019,naphtha combustion consumption by to the public,951.7254515999998,TJ,CO2,73300.0,kg/TJ,69761475.60227999,kg -6262194c-9b56-3cbd-8252-d95606aa4242,SESCO,II.1.1,Tucuman,AR-T,annual,2019,naphtha combustion consumption by to the public,951.7254515999998,TJ,CH4,3.0,kg/TJ,2855.1763547999994,kg -a167a408-9f90-3b15-8f67-7264d85054f2,SESCO,II.1.1,Tucuman,AR-T,annual,2019,naphtha combustion consumption by to the public,951.7254515999998,TJ,N2O,0.6,kg/TJ,571.0352709599998,kg -371cb76b-05b3-3e31-97eb-c5849e1d0a56,SESCO,II.1.1,Buenos Aires,AR-B,annual,2019,naphtha combustion consumption by to the public,7541.194707199999,TJ,CO2,73300.0,kg/TJ,552769572.0377599,kg -c80dd879-48f3-3e2d-ae83-e3986b188ac6,SESCO,II.1.1,Buenos Aires,AR-B,annual,2019,naphtha combustion consumption by to the public,7541.194707199999,TJ,CH4,3.0,kg/TJ,22623.584121599997,kg -0c1bbb16-12bb-3b25-8d54-229dcedfa4a6,SESCO,II.1.1,Buenos Aires,AR-B,annual,2019,naphtha combustion consumption by to the public,7541.194707199999,TJ,N2O,0.6,kg/TJ,4524.716824319999,kg -07c1fb84-b582-3e14-88b0-357f9acb6a4a,SESCO,II.1.1,Capital Federal,AR-C,annual,2019,naphtha combustion consumption by to the public,3160.1759727999997,TJ,CO2,73300.0,kg/TJ,231640898.80624,kg -dfc9f06d-426a-31c7-9b83-f4f69bf87db6,SESCO,II.1.1,Capital Federal,AR-C,annual,2019,naphtha combustion consumption by to the public,3160.1759727999997,TJ,CH4,3.0,kg/TJ,9480.5279184,kg -db52a7a7-f7cb-3f2b-a602-302d3c91e266,SESCO,II.1.1,Capital Federal,AR-C,annual,2019,naphtha combustion consumption by to the public,3160.1759727999997,TJ,N2O,0.6,kg/TJ,1896.1055836799997,kg -f758ca46-8519-3d93-8259-6cb91bf0f21a,SESCO,II.1.1,Catamarca,AR-K,annual,2019,naphtha combustion consumption by to the public,33.500205199999996,TJ,CO2,73300.0,kg/TJ,2455565.0411599996,kg -e05df187-bd9e-3257-8488-7589e94aa09c,SESCO,II.1.1,Catamarca,AR-K,annual,2019,naphtha combustion consumption by to the public,33.500205199999996,TJ,CH4,3.0,kg/TJ,100.50061559999999,kg -d86cf54f-140a-3936-acd4-05838bf1012b,SESCO,II.1.1,Catamarca,AR-K,annual,2019,naphtha combustion consumption by to the public,33.500205199999996,TJ,N2O,0.6,kg/TJ,20.100123119999996,kg -8b71a56c-21d6-3ce7-b8e0-0ce283f6b085,SESCO,II.1.1,Chaco,AR-H,annual,2019,naphtha combustion consumption by to the public,308.61800199999993,TJ,CO2,73300.0,kg/TJ,22621699.546599995,kg -1669f595-afc2-31eb-8dc4-b740700eedbb,SESCO,II.1.1,Chaco,AR-H,annual,2019,naphtha combustion consumption by to the public,308.61800199999993,TJ,CH4,3.0,kg/TJ,925.8540059999998,kg -e73042b5-65f9-38f1-97aa-858a1539b541,SESCO,II.1.1,Chaco,AR-H,annual,2019,naphtha combustion consumption by to the public,308.61800199999993,TJ,N2O,0.6,kg/TJ,185.17080119999994,kg -0c4f7dc4-c79e-33e8-8b66-4a5db3fec148,SESCO,II.1.1,Corrientes,AR-W,annual,2019,naphtha combustion consumption by to the public,315.7944636,TJ,CO2,73300.0,kg/TJ,23147734.181879997,kg -c12b2e0a-f909-3a67-b95c-26a50da8ac61,SESCO,II.1.1,Corrientes,AR-W,annual,2019,naphtha combustion consumption by to the public,315.7944636,TJ,CH4,3.0,kg/TJ,947.3833907999999,kg -bd5edd27-a1ac-3493-97b9-f7ef2e18833a,SESCO,II.1.1,Corrientes,AR-W,annual,2019,naphtha combustion consumption by to the public,315.7944636,TJ,N2O,0.6,kg/TJ,189.47667815999998,kg -b708951f-deb0-3c39-9e49-ddf6538f7bc0,SESCO,II.1.1,Córdoba,AR-X,annual,2019,naphtha combustion consumption by to the public,1700.0675691999998,TJ,CO2,73300.0,kg/TJ,124614952.82235998,kg -ca6c89ed-b754-399c-a813-4026e018237f,SESCO,II.1.1,Córdoba,AR-X,annual,2019,naphtha combustion consumption by to the public,1700.0675691999998,TJ,CH4,3.0,kg/TJ,5100.2027075999995,kg -b19326e2-ea19-3cf6-b5e5-e1e9863666f6,SESCO,II.1.1,Córdoba,AR-X,annual,2019,naphtha combustion consumption by to the public,1700.0675691999998,TJ,N2O,0.6,kg/TJ,1020.0405415199998,kg -34601876-823d-3de4-9bc1-68723bf27485,SESCO,II.1.1,Entre Rios,AR-E,annual,2019,naphtha combustion consumption by to the public,363.949124,TJ,CO2,73300.0,kg/TJ,26677470.7892,kg -7a2f8a62-96ff-3b29-9451-1ac824f343e7,SESCO,II.1.1,Entre Rios,AR-E,annual,2019,naphtha combustion consumption by to the public,363.949124,TJ,CH4,3.0,kg/TJ,1091.847372,kg -ecca63f9-3458-3536-bcbd-d3de1091c3e5,SESCO,II.1.1,Entre Rios,AR-E,annual,2019,naphtha combustion consumption by to the public,363.949124,TJ,N2O,0.6,kg/TJ,218.36947439999997,kg -5fbe6bce-1074-351b-a754-79899048f4d5,SESCO,II.1.1,Formosa,AR-P,annual,2019,naphtha combustion consumption by to the public,147.8109864,TJ,CO2,73300.0,kg/TJ,10834545.303119998,kg -05a1626b-3ba3-338a-8911-4658e4a75f4b,SESCO,II.1.1,Formosa,AR-P,annual,2019,naphtha combustion consumption by to the public,147.8109864,TJ,CH4,3.0,kg/TJ,443.43295919999997,kg -05d11ec7-ab95-38b9-9b55-5a02a062f6c5,SESCO,II.1.1,Formosa,AR-P,annual,2019,naphtha combustion consumption by to the public,147.8109864,TJ,N2O,0.6,kg/TJ,88.68659183999999,kg -8c18a1cc-8b62-33c4-bbf6-ad031543c3f3,SESCO,II.1.1,Jujuy,AR-Y,annual,2019,naphtha combustion consumption by to the public,38.7770152,TJ,CO2,73300.0,kg/TJ,2842355.21416,kg -87387d4a-6e0f-3c54-9c0c-567750d88ec3,SESCO,II.1.1,Jujuy,AR-Y,annual,2019,naphtha combustion consumption by to the public,38.7770152,TJ,CH4,3.0,kg/TJ,116.33104560000001,kg -89459fcb-d865-3d04-9d10-2680a6886c17,SESCO,II.1.1,Jujuy,AR-Y,annual,2019,naphtha combustion consumption by to the public,38.7770152,TJ,N2O,0.6,kg/TJ,23.26620912,kg -4ddfca7b-39f1-34ce-9961-10855944de33,SESCO,II.1.1,La Pampa,AR-L,annual,2019,naphtha combustion consumption by to the public,173.80304479999998,TJ,CO2,73300.0,kg/TJ,12739763.18384,kg -f2f9d274-9f9e-3f31-9d03-3a35b6ea765b,SESCO,II.1.1,La Pampa,AR-L,annual,2019,naphtha combustion consumption by to the public,173.80304479999998,TJ,CH4,3.0,kg/TJ,521.4091344,kg -25b2c543-874d-383a-b2e0-de79e70cec80,SESCO,II.1.1,La Pampa,AR-L,annual,2019,naphtha combustion consumption by to the public,173.80304479999998,TJ,N2O,0.6,kg/TJ,104.28182687999998,kg -beff5cce-b77f-3c43-9861-b03d8d0483b9,SESCO,II.1.1,La Rioja,AR-F,annual,2019,naphtha combustion consumption by to the public,83.976662,TJ,CO2,73300.0,kg/TJ,6155489.3246,kg -dbbf4824-e583-312d-831c-82caeaaaf2c9,SESCO,II.1.1,La Rioja,AR-F,annual,2019,naphtha combustion consumption by to the public,83.976662,TJ,CH4,3.0,kg/TJ,251.929986,kg -841cd168-75b5-3d58-8713-0edaa17b9b16,SESCO,II.1.1,La Rioja,AR-F,annual,2019,naphtha combustion consumption by to the public,83.976662,TJ,N2O,0.6,kg/TJ,50.3859972,kg -89182a3b-4c46-387a-82fc-c8da5703db87,SESCO,II.1.1,Mendoza,AR-M,annual,2019,naphtha combustion consumption by to the public,566.6087812,TJ,CO2,73300.0,kg/TJ,41532423.66196,kg -91ea377b-4661-3473-a291-ad1937343a7e,SESCO,II.1.1,Mendoza,AR-M,annual,2019,naphtha combustion consumption by to the public,566.6087812,TJ,CH4,3.0,kg/TJ,1699.8263435999997,kg -e553c1a6-e960-31e0-a24c-b7cb2c2d1f08,SESCO,II.1.1,Mendoza,AR-M,annual,2019,naphtha combustion consumption by to the public,566.6087812,TJ,N2O,0.6,kg/TJ,339.96526872,kg -d7082e34-af1c-3914-a811-96c823d57da6,SESCO,II.1.1,Misiones,AR-N,annual,2019,naphtha combustion consumption by to the public,263.9309596,TJ,CO2,73300.0,kg/TJ,19346139.33868,kg -a59d99f4-c8fd-3d26-a0b8-043d36d99115,SESCO,II.1.1,Misiones,AR-N,annual,2019,naphtha combustion consumption by to the public,263.9309596,TJ,CH4,3.0,kg/TJ,791.7928787999999,kg -eeae412c-2fb7-334c-9088-ec9927c7663a,SESCO,II.1.1,Misiones,AR-N,annual,2019,naphtha combustion consumption by to the public,263.9309596,TJ,N2O,0.6,kg/TJ,158.35857575999998,kg -0d4e14bc-2447-39c7-b2eb-634c24414543,SESCO,II.1.1,Neuquén,AR-Q,annual,2019,naphtha combustion consumption by to the public,360.3005868,TJ,CO2,73300.0,kg/TJ,26410033.01244,kg -29198d0f-6764-3ec3-9352-011a284d184f,SESCO,II.1.1,Neuquén,AR-Q,annual,2019,naphtha combustion consumption by to the public,360.3005868,TJ,CH4,3.0,kg/TJ,1080.9017604,kg -d074f391-e0ea-3d86-8d27-2f354adcc091,SESCO,II.1.1,Neuquén,AR-Q,annual,2019,naphtha combustion consumption by to the public,360.3005868,TJ,N2O,0.6,kg/TJ,216.18035208,kg -4a5965ea-5f7c-32c7-86db-55208d230228,SESCO,II.1.1,Rio Negro,AR-R,annual,2019,naphtha combustion consumption by to the public,80.0868992,TJ,CO2,73300.0,kg/TJ,5870369.71136,kg -374bc8f0-0dad-34eb-8bb5-6ebba059ab34,SESCO,II.1.1,Rio Negro,AR-R,annual,2019,naphtha combustion consumption by to the public,80.0868992,TJ,CH4,3.0,kg/TJ,240.26069760000001,kg -936bbe6e-dc20-396b-98cf-0b1d242f1feb,SESCO,II.1.1,Rio Negro,AR-R,annual,2019,naphtha combustion consumption by to the public,80.0868992,TJ,N2O,0.6,kg/TJ,48.052139520000004,kg -78625103-8a97-3a04-a1bc-0634bb3ce7b7,SESCO,II.1.1,Salta,AR-A,annual,2019,naphtha combustion consumption by to the public,108.49121359999998,TJ,CO2,73300.0,kg/TJ,7952405.956879999,kg -af7cf7a0-1cee-3bea-83dc-44203fc7dbdf,SESCO,II.1.1,Salta,AR-A,annual,2019,naphtha combustion consumption by to the public,108.49121359999998,TJ,CH4,3.0,kg/TJ,325.47364079999994,kg -64947249-5269-3f46-ab12-c51a7c2ea2f1,SESCO,II.1.1,Salta,AR-A,annual,2019,naphtha combustion consumption by to the public,108.49121359999998,TJ,N2O,0.6,kg/TJ,65.09472815999999,kg -9c25ce99-c7d9-3038-be0f-e308eb9024db,SESCO,II.1.1,San Juan,AR-J,annual,2019,naphtha combustion consumption by to the public,59.67318279999999,TJ,CO2,73300.0,kg/TJ,4374044.29924,kg -ea79d28d-f4e0-3e77-943a-83c2d690ce25,SESCO,II.1.1,San Juan,AR-J,annual,2019,naphtha combustion consumption by to the public,59.67318279999999,TJ,CH4,3.0,kg/TJ,179.01954839999996,kg -8dc3bf0f-af99-3865-b7cd-74589d40a510,SESCO,II.1.1,San Juan,AR-J,annual,2019,naphtha combustion consumption by to the public,59.67318279999999,TJ,N2O,0.6,kg/TJ,35.80390968,kg -da6b208c-6c2b-3e84-91cc-ed7e0ff9882f,SESCO,II.1.1,San Luis,AR-D,annual,2019,naphtha combustion consumption by to the public,89.64546359999999,TJ,CO2,73300.0,kg/TJ,6571012.481879999,kg -29a29eab-dfb7-3451-b7ce-fa0c5f65c24b,SESCO,II.1.1,San Luis,AR-D,annual,2019,naphtha combustion consumption by to the public,89.64546359999999,TJ,CH4,3.0,kg/TJ,268.93639079999997,kg -083d5630-7f8c-3359-9b2b-aa88f41cb4ef,SESCO,II.1.1,San Luis,AR-D,annual,2019,naphtha combustion consumption by to the public,89.64546359999999,TJ,N2O,0.6,kg/TJ,53.78727815999999,kg -a725f510-13d8-3f94-9c3f-cad52cd8557a,SESCO,II.1.1,Santa Fe,AR-S,annual,2019,naphtha combustion consumption by to the public,1545.7133383999999,TJ,CO2,73300.0,kg/TJ,113300787.70471999,kg -54fe145b-0924-3487-a6d5-dcba66b2ad3f,SESCO,II.1.1,Santa Fe,AR-S,annual,2019,naphtha combustion consumption by to the public,1545.7133383999999,TJ,CH4,3.0,kg/TJ,4637.1400152,kg -f700b868-df59-31f7-97fb-a8c909999727,SESCO,II.1.1,Santa Fe,AR-S,annual,2019,naphtha combustion consumption by to the public,1545.7133383999999,TJ,N2O,0.6,kg/TJ,927.4280030399999,kg -4106c70a-64de-3d11-94ef-277209bdbb54,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2019,naphtha combustion consumption by to the public,146.15256039999997,TJ,CO2,73300.0,kg/TJ,10712982.677319998,kg -2e827d19-55a5-38a1-b554-bb376fee04c5,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2019,naphtha combustion consumption by to the public,146.15256039999997,TJ,CH4,3.0,kg/TJ,438.4576811999999,kg -3ad886e1-034a-34c0-9fa7-0ed2bf596406,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2019,naphtha combustion consumption by to the public,146.15256039999997,TJ,N2O,0.6,kg/TJ,87.69153623999998,kg -fd923c65-95fb-376f-b5dc-b8c1cdfbf94c,SESCO,II.1.1,Tucuman,AR-T,annual,2019,naphtha combustion consumption by to the public,259.769818,TJ,CO2,73300.0,kg/TJ,19041127.659399997,kg -b0c8b610-4036-385c-8722-0f5c9e7850f6,SESCO,II.1.1,Tucuman,AR-T,annual,2019,naphtha combustion consumption by to the public,259.769818,TJ,CH4,3.0,kg/TJ,779.309454,kg -d83a91d4-085d-3350-8ab1-c2a02d9bd014,SESCO,II.1.1,Tucuman,AR-T,annual,2019,naphtha combustion consumption by to the public,259.769818,TJ,N2O,0.6,kg/TJ,155.8618908,kg -22e8644d-fb38-321a-8481-8f3e7a5c5a7d,SESCO,II.5.1,Buenos Aires,AR-B,annual,2019,naphtha combustion consumption by agriculture machines,14.4606002772,TJ,CO2,73300.0,kg/TJ,1059962.00031876,kg -997cd414-8229-3ebd-8ff4-5cd92cad3f5d,SESCO,II.5.1,Buenos Aires,AR-B,annual,2019,naphtha combustion consumption by agriculture machines,14.4606002772,TJ,CH4,3.0,kg/TJ,43.381800831599996,kg -618bbc8c-6a18-3dc2-88d3-4e6804cc34a8,SESCO,II.5.1,Buenos Aires,AR-B,annual,2019,naphtha combustion consumption by agriculture machines,14.4606002772,TJ,N2O,0.6,kg/TJ,8.676360166319999,kg -36f135b4-1883-35b2-90ce-7f8be58f704c,SESCO,II.5.1,Capital Federal,AR-C,annual,2019,naphtha combustion consumption by agriculture machines,10.116519212799998,TJ,CO2,73300.0,kg/TJ,741540.8582982399,kg -df676952-7e64-310c-997d-f6c74b864378,SESCO,II.5.1,Capital Federal,AR-C,annual,2019,naphtha combustion consumption by agriculture machines,10.116519212799998,TJ,CH4,3.0,kg/TJ,30.349557638399993,kg -ff0639a1-2dfe-3200-828d-30c66b9a204c,SESCO,II.5.1,Capital Federal,AR-C,annual,2019,naphtha combustion consumption by agriculture machines,10.116519212799998,TJ,N2O,0.6,kg/TJ,6.069911527679999,kg -09305a13-d2ea-3952-922b-e91f23673059,SESCO,II.5.1,Córdoba,AR-X,annual,2019,naphtha combustion consumption by agriculture machines,1.1030040559999998,TJ,CO2,73300.0,kg/TJ,80850.19730479999,kg -a5074ec8-7cc5-381f-b616-c16bb4ad96cf,SESCO,II.5.1,Córdoba,AR-X,annual,2019,naphtha combustion consumption by agriculture machines,1.1030040559999998,TJ,CH4,3.0,kg/TJ,3.3090121679999998,kg -d2736871-e7e7-376b-9f7a-760de89bddad,SESCO,II.5.1,Córdoba,AR-X,annual,2019,naphtha combustion consumption by agriculture machines,1.1030040559999998,TJ,N2O,0.6,kg/TJ,0.6618024335999999,kg -8171882a-0c09-3643-a4a3-6d8c67ba4a33,SESCO,II.5.1,Entre Rios,AR-E,annual,2019,naphtha combustion consumption by agriculture machines,0.8157948259999999,TJ,CO2,73300.0,kg/TJ,59797.76074579999,kg -39d22307-24c1-356e-b236-4ece90b7d3c8,SESCO,II.5.1,Entre Rios,AR-E,annual,2019,naphtha combustion consumption by agriculture machines,0.8157948259999999,TJ,CH4,3.0,kg/TJ,2.4473844779999996,kg -d7fda4a0-2b47-3596-947c-5596d93fc3c6,SESCO,II.5.1,Entre Rios,AR-E,annual,2019,naphtha combustion consumption by agriculture machines,0.8157948259999999,TJ,N2O,0.6,kg/TJ,0.4894768955999999,kg -dc3b46c3-e36d-331c-99b6-b785dec17d67,SESCO,II.5.1,Santa Fe,AR-S,annual,2019,naphtha combustion consumption by agriculture machines,155.83472276679998,TJ,CO2,73300.0,kg/TJ,11422685.178806439,kg -1c6f8607-131c-39c3-ab23-4620541b6068,SESCO,II.5.1,Santa Fe,AR-S,annual,2019,naphtha combustion consumption by agriculture machines,155.83472276679998,TJ,CH4,3.0,kg/TJ,467.50416830039995,kg -bd53bad7-b77f-331b-b943-8eefaa91503e,SESCO,II.5.1,Santa Fe,AR-S,annual,2019,naphtha combustion consumption by agriculture machines,155.83472276679998,TJ,N2O,0.6,kg/TJ,93.50083366007999,kg -e1dce376-436e-3b40-af60-6eef4dc1ff00,SESCO,II.5.1,Buenos Aires,AR-B,annual,2019,naphtha combustion consumption by agriculture machines,0.9691841543999998,TJ,CO2,73300.0,kg/TJ,71041.19851751998,kg -39ce0aa0-cc82-3b33-8c0b-edba6f52e626,SESCO,II.5.1,Buenos Aires,AR-B,annual,2019,naphtha combustion consumption by agriculture machines,0.9691841543999998,TJ,CH4,3.0,kg/TJ,2.9075524631999996,kg -1c38e664-ef03-3ced-be4e-58cabd3d26b4,SESCO,II.5.1,Buenos Aires,AR-B,annual,2019,naphtha combustion consumption by agriculture machines,0.9691841543999998,TJ,N2O,0.6,kg/TJ,0.5815104926399999,kg -08699d6e-1b3f-330c-94ea-d961b0ca4662,SESCO,II.5.1,Capital Federal,AR-C,annual,2019,naphtha combustion consumption by agriculture machines,2.7980058876,TJ,CO2,73300.0,kg/TJ,205093.83156108,kg -be7635da-c2dc-3efa-bb2b-15ed77797376,SESCO,II.5.1,Capital Federal,AR-C,annual,2019,naphtha combustion consumption by agriculture machines,2.7980058876,TJ,CH4,3.0,kg/TJ,8.3940176628,kg -dbf41085-e318-323e-819b-55148042ece1,SESCO,II.5.1,Capital Federal,AR-C,annual,2019,naphtha combustion consumption by agriculture machines,2.7980058876,TJ,N2O,0.6,kg/TJ,1.67880353256,kg -4f90c8d2-2c7e-3426-a2ef-d92c5fd4947c,SESCO,II.5.1,Córdoba,AR-X,annual,2019,naphtha combustion consumption by agriculture machines,0.7780430195999999,TJ,CO2,73300.0,kg/TJ,57030.553336679994,kg -95654b51-14c7-30c2-ba64-c6628c18e4c3,SESCO,II.5.1,Córdoba,AR-X,annual,2019,naphtha combustion consumption by agriculture machines,0.7780430195999999,TJ,CH4,3.0,kg/TJ,2.3341290587999994,kg -a6b320ab-16b0-340b-8a72-ac9695b9dd40,SESCO,II.5.1,Córdoba,AR-X,annual,2019,naphtha combustion consumption by agriculture machines,0.7780430195999999,TJ,N2O,0.6,kg/TJ,0.46682581175999993,kg -fae169dc-e49b-3da7-8c50-68adab756718,SESCO,II.5.1,Santa Fe,AR-S,annual,2019,naphtha combustion consumption by agriculture machines,8.310553605199999,TJ,CO2,73300.0,kg/TJ,609163.57926116,kg -db89acda-b786-339e-b4c5-3070f58ebaac,SESCO,II.5.1,Santa Fe,AR-S,annual,2019,naphtha combustion consumption by agriculture machines,8.310553605199999,TJ,CH4,3.0,kg/TJ,24.931660815599997,kg -092e5c32-9be6-3b0a-906e-642b5047b6a8,SESCO,II.5.1,Santa Fe,AR-S,annual,2019,naphtha combustion consumption by agriculture machines,8.310553605199999,TJ,N2O,0.6,kg/TJ,4.986332163119999,kg -67f8d37b-19b2-3633-89bf-93ae44ae4ed0,SESCO,II.1.1,Buenos Aires,AR-B,annual,2019,naphtha combustion consumption by to the public,6359.9360413511995,TJ,CO2,73300.0,kg/TJ,466183311.83104295,kg -52ef9534-6032-3725-868f-36df545c7e8c,SESCO,II.1.1,Buenos Aires,AR-B,annual,2019,naphtha combustion consumption by to the public,6359.9360413511995,TJ,CH4,3.0,kg/TJ,19079.808124053598,kg -b18f8491-87b8-32a3-a0fa-b4f8420d338f,SESCO,II.1.1,Buenos Aires,AR-B,annual,2019,naphtha combustion consumption by to the public,6359.9360413511995,TJ,N2O,0.6,kg/TJ,3815.9616248107195,kg -82ee5444-b006-3148-82af-68fd258a92f0,SESCO,II.1.1,Capital Federal,AR-C,annual,2019,naphtha combustion consumption by to the public,217.6071411976,TJ,CO2,73300.0,kg/TJ,15950603.44978408,kg -6ae397a3-afbe-3aff-ac67-2aa41f66ff81,SESCO,II.1.1,Capital Federal,AR-C,annual,2019,naphtha combustion consumption by to the public,217.6071411976,TJ,CH4,3.0,kg/TJ,652.8214235928,kg -9c68e8a3-b87e-32de-b725-7fb761a181fd,SESCO,II.1.1,Capital Federal,AR-C,annual,2019,naphtha combustion consumption by to the public,217.6071411976,TJ,N2O,0.6,kg/TJ,130.56428471855997,kg -708d150c-4f56-37fb-b5b9-abcd243b10ce,SESCO,II.1.1,Catamarca,AR-K,annual,2019,naphtha combustion consumption by to the public,18.383079299199995,TJ,CO2,73300.0,kg/TJ,1347479.7126313597,kg -b544899d-df11-3114-9ef8-204f0fef5047,SESCO,II.1.1,Catamarca,AR-K,annual,2019,naphtha combustion consumption by to the public,18.383079299199995,TJ,CH4,3.0,kg/TJ,55.14923789759999,kg -46a2fbb6-f715-360b-b630-840676a109dd,SESCO,II.1.1,Catamarca,AR-K,annual,2019,naphtha combustion consumption by to the public,18.383079299199995,TJ,N2O,0.6,kg/TJ,11.029847579519997,kg -d64675ac-6c40-3c56-9602-780d2a4ccf74,SESCO,II.1.1,Chaco,AR-H,annual,2019,naphtha combustion consumption by to the public,30.550679482399996,TJ,CO2,73300.0,kg/TJ,2239364.8060599198,kg -59b2511b-e202-3603-a2c6-835313c012b1,SESCO,II.1.1,Chaco,AR-H,annual,2019,naphtha combustion consumption by to the public,30.550679482399996,TJ,CH4,3.0,kg/TJ,91.65203844719998,kg -a44760f0-161d-3a38-9d2f-9f3cffcfcb5d,SESCO,II.1.1,Chaco,AR-H,annual,2019,naphtha combustion consumption by to the public,30.550679482399996,TJ,N2O,0.6,kg/TJ,18.330407689439998,kg -49c11518-afbc-3922-89b4-013e61772b07,SESCO,II.1.1,Chubut,AR-U,annual,2019,naphtha combustion consumption by to the public,100.38148030679999,TJ,CO2,73300.0,kg/TJ,7357962.506488439,kg -842c9e2c-b731-30ff-8a35-7f18b5b7cb87,SESCO,II.1.1,Chubut,AR-U,annual,2019,naphtha combustion consumption by to the public,100.38148030679999,TJ,CH4,3.0,kg/TJ,301.1444409204,kg -456532f6-dc9c-3c3b-8663-c9c408e23d9f,SESCO,II.1.1,Chubut,AR-U,annual,2019,naphtha combustion consumption by to the public,100.38148030679999,TJ,N2O,0.6,kg/TJ,60.22888818407999,kg -e6f97ade-ef98-3bef-95ae-37913c17576e,SESCO,II.1.1,Corrientes,AR-W,annual,2019,naphtha combustion consumption by to the public,179.13711572679998,TJ,CO2,73300.0,kg/TJ,13130750.582774438,kg -322065ad-abd4-3cf4-b2f2-41e3b54f5301,SESCO,II.1.1,Corrientes,AR-W,annual,2019,naphtha combustion consumption by to the public,179.13711572679998,TJ,CH4,3.0,kg/TJ,537.4113471804,kg -8fce9659-6c57-3575-8c5f-c8819c189545,SESCO,II.1.1,Corrientes,AR-W,annual,2019,naphtha combustion consumption by to the public,179.13711572679998,TJ,N2O,0.6,kg/TJ,107.48226943607999,kg -248e0475-68c6-3e85-9331-55596d9883c8,SESCO,II.1.1,Córdoba,AR-X,annual,2019,naphtha combustion consumption by to the public,327.2527399064,TJ,CO2,73300.0,kg/TJ,23987625.835139118,kg -d51826c3-aaa5-39fa-a639-0afb93ab1af7,SESCO,II.1.1,Córdoba,AR-X,annual,2019,naphtha combustion consumption by to the public,327.2527399064,TJ,CH4,3.0,kg/TJ,981.7582197192,kg -4f2b3969-98be-34c8-af9f-7da5ea114aee,SESCO,II.1.1,Córdoba,AR-X,annual,2019,naphtha combustion consumption by to the public,327.2527399064,TJ,N2O,0.6,kg/TJ,196.35164394384,kg -b89b5cb4-1c73-3393-a258-ef40c332ce94,SESCO,II.1.1,Entre Rios,AR-E,annual,2019,naphtha combustion consumption by to the public,317.80905919839995,TJ,CO2,73300.0,kg/TJ,23295404.039242715,kg -3d15e6f7-bbc4-342e-96a0-bf31750fe028,SESCO,II.1.1,Entre Rios,AR-E,annual,2019,naphtha combustion consumption by to the public,317.80905919839995,TJ,CH4,3.0,kg/TJ,953.4271775951999,kg -2629da13-fc07-37dd-b206-534eab7f549f,SESCO,II.1.1,Entre Rios,AR-E,annual,2019,naphtha combustion consumption by to the public,317.80905919839995,TJ,N2O,0.6,kg/TJ,190.68543551903997,kg -812a051f-1485-39a5-a7f7-9bc797ed8902,SESCO,II.1.1,Formosa,AR-P,annual,2019,naphtha combustion consumption by to the public,2.2822354016,TJ,CO2,73300.0,kg/TJ,167287.85493728,kg -f6b72ebe-9edb-3b55-9edf-8b2bdc840c4a,SESCO,II.1.1,Formosa,AR-P,annual,2019,naphtha combustion consumption by to the public,2.2822354016,TJ,CH4,3.0,kg/TJ,6.8467062048,kg -8e18043f-3cba-304b-b9a6-27b5c5d39bf8,SESCO,II.1.1,Formosa,AR-P,annual,2019,naphtha combustion consumption by to the public,2.2822354016,TJ,N2O,0.6,kg/TJ,1.3693412409599999,kg -668238ec-f62c-3a6b-8c69-184e64167488,SESCO,II.1.1,Jujuy,AR-Y,annual,2019,naphtha combustion consumption by to the public,35.763052094,TJ,CO2,73300.0,kg/TJ,2621431.7184902,kg -9c7e1233-d29f-3ebe-aae3-24d7120882f5,SESCO,II.1.1,Jujuy,AR-Y,annual,2019,naphtha combustion consumption by to the public,35.763052094,TJ,CH4,3.0,kg/TJ,107.28915628200001,kg -447abe60-611a-37f3-a719-78dae9f1c654,SESCO,II.1.1,Jujuy,AR-Y,annual,2019,naphtha combustion consumption by to the public,35.763052094,TJ,N2O,0.6,kg/TJ,21.457831256400002,kg -ebe94814-dbd5-3331-a010-a0e237dc7c73,SESCO,II.1.1,La Pampa,AR-L,annual,2019,naphtha combustion consumption by to the public,270.0400883796,TJ,CO2,73300.0,kg/TJ,19793938.47822468,kg -e6ba7dbf-90aa-36d7-922e-c5488b4427bb,SESCO,II.1.1,La Pampa,AR-L,annual,2019,naphtha combustion consumption by to the public,270.0400883796,TJ,CH4,3.0,kg/TJ,810.1202651387999,kg -4624552f-5eec-3e28-aebc-e18e8e4b1d1e,SESCO,II.1.1,La Pampa,AR-L,annual,2019,naphtha combustion consumption by to the public,270.0400883796,TJ,N2O,0.6,kg/TJ,162.02405302775998,kg -4c1ecf75-4fc8-3408-aa3b-6ba869ee5692,SESCO,II.1.1,Mendoza,AR-M,annual,2019,naphtha combustion consumption by to the public,45.71252257879999,TJ,CO2,73300.0,kg/TJ,3350727.905026039,kg -e07bcefa-592a-33ab-bac7-1c04102a323a,SESCO,II.1.1,Mendoza,AR-M,annual,2019,naphtha combustion consumption by to the public,45.71252257879999,TJ,CH4,3.0,kg/TJ,137.13756773639997,kg -cc74c0f2-4333-34f2-a79d-0101ccc76871,SESCO,II.1.1,Mendoza,AR-M,annual,2019,naphtha combustion consumption by to the public,45.71252257879999,TJ,N2O,0.6,kg/TJ,27.427513547279993,kg -ab69af60-9145-3415-a75c-402d595270c4,SESCO,II.1.1,Misiones,AR-N,annual,2019,naphtha combustion consumption by to the public,35.717520762,TJ,CO2,73300.0,kg/TJ,2618094.2718546,kg -2b7bce87-d9db-348c-a702-d2a3862e9cdc,SESCO,II.1.1,Misiones,AR-N,annual,2019,naphtha combustion consumption by to the public,35.717520762,TJ,CH4,3.0,kg/TJ,107.152562286,kg -0ae55a62-e0fb-30eb-8958-9325233c8169,SESCO,II.1.1,Misiones,AR-N,annual,2019,naphtha combustion consumption by to the public,35.717520762,TJ,N2O,0.6,kg/TJ,21.4305124572,kg -82d3db36-2e44-39e3-a424-3873202395c9,SESCO,II.1.1,Neuquén,AR-Q,annual,2019,naphtha combustion consumption by to the public,272.6439679655999,TJ,CO2,73300.0,kg/TJ,19984802.851878475,kg -1b5d6945-ae06-320d-ad2a-db7970048a5b,SESCO,II.1.1,Neuquén,AR-Q,annual,2019,naphtha combustion consumption by to the public,272.6439679655999,TJ,CH4,3.0,kg/TJ,817.9319038967998,kg -b8dd9321-a4e8-392d-a27f-9b38b8fc3f39,SESCO,II.1.1,Neuquén,AR-Q,annual,2019,naphtha combustion consumption by to the public,272.6439679655999,TJ,N2O,0.6,kg/TJ,163.58638077935996,kg -2680a6e3-5c7d-3e68-9684-560ef245c921,SESCO,II.1.1,Rio Negro,AR-R,annual,2019,naphtha combustion consumption by to the public,689.6531654011999,TJ,CO2,73300.0,kg/TJ,50551577.02390795,kg -d128902b-45de-3670-a22d-7ee691b15e0e,SESCO,II.1.1,Rio Negro,AR-R,annual,2019,naphtha combustion consumption by to the public,689.6531654011999,TJ,CH4,3.0,kg/TJ,2068.9594962036,kg -911e9f5e-e61c-366e-80da-520e8e9cff27,SESCO,II.1.1,Rio Negro,AR-R,annual,2019,naphtha combustion consumption by to the public,689.6531654011999,TJ,N2O,0.6,kg/TJ,413.79189924071994,kg -27dd6727-48f0-379d-848d-af40858e5f57,SESCO,II.1.1,San Juan,AR-J,annual,2019,naphtha combustion consumption by to the public,69.4472219672,TJ,CO2,73300.0,kg/TJ,5090481.370195759,kg -fb33f00d-6ba6-33fd-b18c-5d9b9d7ba26f,SESCO,II.1.1,San Juan,AR-J,annual,2019,naphtha combustion consumption by to the public,69.4472219672,TJ,CH4,3.0,kg/TJ,208.34166590159998,kg -0609847b-84ab-3a71-9bf8-4ea76e1456b5,SESCO,II.1.1,San Juan,AR-J,annual,2019,naphtha combustion consumption by to the public,69.4472219672,TJ,N2O,0.6,kg/TJ,41.66833318032,kg -47d99300-1b1d-3002-bf02-a37772b15148,SESCO,II.1.1,San Luis,AR-D,annual,2019,naphtha combustion consumption by to the public,47.73450571119999,TJ,CO2,73300.0,kg/TJ,3498939.2686309596,kg -cc687562-9f9e-3d27-807d-35c3800a39f1,SESCO,II.1.1,San Luis,AR-D,annual,2019,naphtha combustion consumption by to the public,47.73450571119999,TJ,CH4,3.0,kg/TJ,143.20351713359997,kg -5cbec14f-ef82-3ff7-ad10-31853ce7802e,SESCO,II.1.1,San Luis,AR-D,annual,2019,naphtha combustion consumption by to the public,47.73450571119999,TJ,N2O,0.6,kg/TJ,28.640703426719995,kg -3acad396-593e-3718-8714-a8ef42d684d5,SESCO,II.1.1,Santa Fe,AR-S,annual,2019,naphtha combustion consumption by to the public,623.5337410455999,TJ,CO2,73300.0,kg/TJ,45705023.21864247,kg -83c75fc9-3e1f-32f0-9ba8-c2e1458b8829,SESCO,II.1.1,Santa Fe,AR-S,annual,2019,naphtha combustion consumption by to the public,623.5337410455999,TJ,CH4,3.0,kg/TJ,1870.6012231367995,kg -f894ba78-7cee-3de4-ad1a-3864489fcd45,SESCO,II.1.1,Santa Fe,AR-S,annual,2019,naphtha combustion consumption by to the public,623.5337410455999,TJ,N2O,0.6,kg/TJ,374.1202446273599,kg -c3a46d4c-8ea0-34b4-b1a2-2cbe230de5fe,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2019,naphtha combustion consumption by to the public,219.3499660044,TJ,CO2,73300.0,kg/TJ,16078352.508122519,kg -314e1991-e53c-3521-8c55-59c706b7e3cc,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2019,naphtha combustion consumption by to the public,219.3499660044,TJ,CH4,3.0,kg/TJ,658.0498980131999,kg -d2d2d163-84fe-3b94-b97b-ef1d44979a61,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2019,naphtha combustion consumption by to the public,219.3499660044,TJ,N2O,0.6,kg/TJ,131.60997960263998,kg -d2113a33-4574-32a6-9702-4ee56cbacb9b,SESCO,II.1.1,Tucuman,AR-T,annual,2019,naphtha combustion consumption by to the public,42.0285553688,TJ,CO2,73300.0,kg/TJ,3080693.10853304,kg -b4b5a8e7-beca-3a01-b7d6-05b7481d7488,SESCO,II.1.1,Tucuman,AR-T,annual,2019,naphtha combustion consumption by to the public,42.0285553688,TJ,CH4,3.0,kg/TJ,126.0856661064,kg -b7fa0868-f3cb-3077-a6e0-a7477ed8496c,SESCO,II.1.1,Tucuman,AR-T,annual,2019,naphtha combustion consumption by to the public,42.0285553688,TJ,N2O,0.6,kg/TJ,25.217133221279997,kg -04453ddf-44c9-38ac-aae6-cf11be87ca83,SESCO,II.1.1,Buenos Aires,AR-B,annual,2019,naphtha combustion consumption by to the public,981.0380708435999,TJ,CO2,73300.0,kg/TJ,71910090.59283587,kg -af888717-0844-3a68-be54-25364243e245,SESCO,II.1.1,Buenos Aires,AR-B,annual,2019,naphtha combustion consumption by to the public,981.0380708435999,TJ,CH4,3.0,kg/TJ,2943.1142125307997,kg -eb52605b-66e1-3cc7-b186-08e3b0fbfc1e,SESCO,II.1.1,Buenos Aires,AR-B,annual,2019,naphtha combustion consumption by to the public,981.0380708435999,TJ,N2O,0.6,kg/TJ,588.6228425061599,kg -675980ae-c352-3b2c-bd46-d17d29c42a05,SESCO,II.1.1,Capital Federal,AR-C,annual,2019,naphtha combustion consumption by to the public,27.677622279999994,TJ,CO2,73300.0,kg/TJ,2028769.7131239995,kg -da137b67-000f-3baf-846a-1c9867aa10c7,SESCO,II.1.1,Capital Federal,AR-C,annual,2019,naphtha combustion consumption by to the public,27.677622279999994,TJ,CH4,3.0,kg/TJ,83.03286683999998,kg -3a05c235-58e7-3174-8c33-11b7e9f43dc3,SESCO,II.1.1,Capital Federal,AR-C,annual,2019,naphtha combustion consumption by to the public,27.677622279999994,TJ,N2O,0.6,kg/TJ,16.606573367999996,kg -91870f8b-9af1-38b0-abb3-37a2f74791b6,SESCO,II.1.1,Catamarca,AR-K,annual,2019,naphtha combustion consumption by to the public,0.8406712159999999,TJ,CO2,73300.0,kg/TJ,61621.2001328,kg -51f7c524-6f24-35a9-88a4-89ee5e2f4039,SESCO,II.1.1,Catamarca,AR-K,annual,2019,naphtha combustion consumption by to the public,0.8406712159999999,TJ,CH4,3.0,kg/TJ,2.5220136479999997,kg -56861390-8c7d-325a-bd1a-89e1eb2b07f2,SESCO,II.1.1,Catamarca,AR-K,annual,2019,naphtha combustion consumption by to the public,0.8406712159999999,TJ,N2O,0.6,kg/TJ,0.5044027296,kg -02151a16-783a-3644-af58-a0e9d1391b34,SESCO,II.1.1,Chaco,AR-H,annual,2019,naphtha combustion consumption by to the public,3.5804211211999997,TJ,CO2,73300.0,kg/TJ,262444.86818396,kg -068be0e7-57b0-397b-9fc4-f42013230488,SESCO,II.1.1,Chaco,AR-H,annual,2019,naphtha combustion consumption by to the public,3.5804211211999997,TJ,CH4,3.0,kg/TJ,10.741263363599998,kg -2109546a-2d55-3ef0-89c9-77ffe8f82490,SESCO,II.1.1,Chaco,AR-H,annual,2019,naphtha combustion consumption by to the public,3.5804211211999997,TJ,N2O,0.6,kg/TJ,2.1482526727199995,kg -57a95d79-c0d6-327b-ba45-606e07652b99,SESCO,II.1.1,Chubut,AR-U,annual,2019,naphtha combustion consumption by to the public,13.024252595199998,TJ,CO2,73300.0,kg/TJ,954677.7152281599,kg -21d6831a-40cc-3fdb-b545-df14e7db5eaf,SESCO,II.1.1,Chubut,AR-U,annual,2019,naphtha combustion consumption by to the public,13.024252595199998,TJ,CH4,3.0,kg/TJ,39.0727577856,kg -77885831-1ae4-3030-bcc1-f4f6ebc585e9,SESCO,II.1.1,Chubut,AR-U,annual,2019,naphtha combustion consumption by to the public,13.024252595199998,TJ,N2O,0.6,kg/TJ,7.814551557119999,kg -5cdba9f7-e05c-3cbd-bc0c-02368a071de4,SESCO,II.1.1,Corrientes,AR-W,annual,2019,naphtha combustion consumption by to the public,12.9210381916,TJ,CO2,73300.0,kg/TJ,947112.0994442799,kg -4dcba857-104a-3278-be3e-11ba8ecc1021,SESCO,II.1.1,Corrientes,AR-W,annual,2019,naphtha combustion consumption by to the public,12.9210381916,TJ,CH4,3.0,kg/TJ,38.7631145748,kg -2658483f-91c4-3d17-881a-042ed0a0d97e,SESCO,II.1.1,Corrientes,AR-W,annual,2019,naphtha combustion consumption by to the public,12.9210381916,TJ,N2O,0.6,kg/TJ,7.752622914959999,kg -81efa73c-daf9-3505-b872-3ef6ca8d5210,SESCO,II.1.1,Córdoba,AR-X,annual,2019,naphtha combustion consumption by to the public,57.72371811359999,TJ,CO2,73300.0,kg/TJ,4231148.537726879,kg -633d937f-65eb-3ecb-b5f1-3fa9f1b66161,SESCO,II.1.1,Córdoba,AR-X,annual,2019,naphtha combustion consumption by to the public,57.72371811359999,TJ,CH4,3.0,kg/TJ,173.17115434079997,kg -841f30d3-331e-34fd-ac92-7e0aa06dd906,SESCO,II.1.1,Córdoba,AR-X,annual,2019,naphtha combustion consumption by to the public,57.72371811359999,TJ,N2O,0.6,kg/TJ,34.634230868159996,kg -26a4bfa7-74a0-37a2-a6bb-e93ca33c154a,SESCO,II.1.1,Entre Rios,AR-E,annual,2019,naphtha combustion consumption by to the public,56.6006923328,TJ,CO2,73300.0,kg/TJ,4148830.74799424,kg -12faf807-c01c-3dbe-82ce-f52715285cac,SESCO,II.1.1,Entre Rios,AR-E,annual,2019,naphtha combustion consumption by to the public,56.6006923328,TJ,CH4,3.0,kg/TJ,169.8020769984,kg -fbe662fe-87a9-37d4-94f1-5d8ab5b118fc,SESCO,II.1.1,Entre Rios,AR-E,annual,2019,naphtha combustion consumption by to the public,56.6006923328,TJ,N2O,0.6,kg/TJ,33.96041539968,kg -6fdbf3e1-70d1-369f-84b8-69093aba2c15,SESCO,II.1.1,Formosa,AR-P,annual,2019,naphtha combustion consumption by to the public,0.4511823316,TJ,CO2,73300.0,kg/TJ,33071.66490628,kg -f6d76e57-743a-30c4-b47c-d0cec8553909,SESCO,II.1.1,Formosa,AR-P,annual,2019,naphtha combustion consumption by to the public,0.4511823316,TJ,CH4,3.0,kg/TJ,1.3535469947999998,kg -27fcc95d-6c08-33e9-a8a9-ea5644edbd4e,SESCO,II.1.1,Formosa,AR-P,annual,2019,naphtha combustion consumption by to the public,0.4511823316,TJ,N2O,0.6,kg/TJ,0.27070939895999996,kg -84d45643-021d-3197-b8e4-dca45eed71bc,SESCO,II.1.1,La Pampa,AR-L,annual,2019,naphtha combustion consumption by to the public,56.8592258696,TJ,CO2,73300.0,kg/TJ,4167781.25624168,kg -601f3c39-1d93-32b1-a7e3-c43ea984743e,SESCO,II.1.1,La Pampa,AR-L,annual,2019,naphtha combustion consumption by to the public,56.8592258696,TJ,CH4,3.0,kg/TJ,170.5776776088,kg -05af6d16-e84e-33bc-835f-565bfc8a9aaa,SESCO,II.1.1,La Pampa,AR-L,annual,2019,naphtha combustion consumption by to the public,56.8592258696,TJ,N2O,0.6,kg/TJ,34.11553552176,kg -4d40c959-566e-39a2-afad-da85da50fb45,SESCO,II.1.1,Mendoza,AR-M,annual,2019,naphtha combustion consumption by to the public,5.0696876692,TJ,CO2,73300.0,kg/TJ,371608.10615236004,kg -a82739f2-ffea-3551-a153-82bee4b5a401,SESCO,II.1.1,Mendoza,AR-M,annual,2019,naphtha combustion consumption by to the public,5.0696876692,TJ,CH4,3.0,kg/TJ,15.209063007600001,kg -427d2668-5ed8-33b8-aa32-c81997d6e3c9,SESCO,II.1.1,Mendoza,AR-M,annual,2019,naphtha combustion consumption by to the public,5.0696876692,TJ,N2O,0.6,kg/TJ,3.04181260152,kg -c1c6fca3-9d24-3a44-9eb3-5155ec90a897,SESCO,II.1.1,Misiones,AR-N,annual,2019,naphtha combustion consumption by to the public,2.4211210407999997,TJ,CO2,73300.0,kg/TJ,177468.17229063998,kg -22bb0d96-28a3-3a9e-8389-9060bb716d82,SESCO,II.1.1,Misiones,AR-N,annual,2019,naphtha combustion consumption by to the public,2.4211210407999997,TJ,CH4,3.0,kg/TJ,7.2633631223999995,kg -e9d57fd5-527c-322f-a4aa-73d53124b2e1,SESCO,II.1.1,Misiones,AR-N,annual,2019,naphtha combustion consumption by to the public,2.4211210407999997,TJ,N2O,0.6,kg/TJ,1.4526726244799997,kg -799b1888-b4b4-3c8f-bb56-79eb34597fd5,SESCO,II.1.1,Neuquén,AR-Q,annual,2019,naphtha combustion consumption by to the public,90.4052940868,TJ,CO2,73300.0,kg/TJ,6626708.05656244,kg -964d7d63-0576-369a-9f53-4552876ec751,SESCO,II.1.1,Neuquén,AR-Q,annual,2019,naphtha combustion consumption by to the public,90.4052940868,TJ,CH4,3.0,kg/TJ,271.2158822604,kg -3f393b69-16c1-314c-81d1-1a24937133a0,SESCO,II.1.1,Neuquén,AR-Q,annual,2019,naphtha combustion consumption by to the public,90.4052940868,TJ,N2O,0.6,kg/TJ,54.24317645208,kg -b7e2de82-54ac-3a3d-abd4-22a457e9adec,SESCO,II.1.1,Rio Negro,AR-R,annual,2019,naphtha combustion consumption by to the public,90.3810207608,TJ,CO2,73300.0,kg/TJ,6624928.82176664,kg -bf609635-7318-3299-b7bf-41a47885d7d0,SESCO,II.1.1,Rio Negro,AR-R,annual,2019,naphtha combustion consumption by to the public,90.3810207608,TJ,CH4,3.0,kg/TJ,271.1430622824,kg -3cb26f53-00a2-3262-8853-37f7cfa812c9,SESCO,II.1.1,Rio Negro,AR-R,annual,2019,naphtha combustion consumption by to the public,90.3810207608,TJ,N2O,0.6,kg/TJ,54.22861245648,kg -0baac219-69e3-3fa0-a3d0-a473288336dd,SESCO,II.1.1,San Juan,AR-J,annual,2019,naphtha combustion consumption by to the public,7.356385744399999,TJ,CO2,73300.0,kg/TJ,539223.0750645199,kg -27cb9827-d8f7-3724-b750-f54b0432a804,SESCO,II.1.1,San Juan,AR-J,annual,2019,naphtha combustion consumption by to the public,7.356385744399999,TJ,CH4,3.0,kg/TJ,22.069157233199995,kg -7fc68e2a-9920-3e7a-89cc-c0d15f4bc811,SESCO,II.1.1,San Juan,AR-J,annual,2019,naphtha combustion consumption by to the public,7.356385744399999,TJ,N2O,0.6,kg/TJ,4.413831446639999,kg -685d86af-6ca3-3350-bbc4-bcecfc6718e7,SESCO,II.1.1,San Luis,AR-D,annual,2019,naphtha combustion consumption by to the public,10.1144989484,TJ,CO2,73300.0,kg/TJ,741392.77291772,kg -96d0f633-80c1-39e4-9e83-b8b9862b089b,SESCO,II.1.1,San Luis,AR-D,annual,2019,naphtha combustion consumption by to the public,10.1144989484,TJ,CH4,3.0,kg/TJ,30.3434968452,kg -978c8093-2a04-30cb-b157-0d7bedc009ea,SESCO,II.1.1,San Luis,AR-D,annual,2019,naphtha combustion consumption by to the public,10.1144989484,TJ,N2O,0.6,kg/TJ,6.06869936904,kg -fd3c7c98-b52b-3894-b2ed-63219bacd2bd,SESCO,II.1.1,Santa Fe,AR-S,annual,2019,naphtha combustion consumption by to the public,117.79881291639998,TJ,CO2,73300.0,kg/TJ,8634652.986772118,kg -eb744f14-77b0-386a-b26d-e51eb23f3511,SESCO,II.1.1,Santa Fe,AR-S,annual,2019,naphtha combustion consumption by to the public,117.79881291639998,TJ,CH4,3.0,kg/TJ,353.39643874919994,kg -22c64339-e008-3fa8-ba79-175af487dafd,SESCO,II.1.1,Santa Fe,AR-S,annual,2019,naphtha combustion consumption by to the public,117.79881291639998,TJ,N2O,0.6,kg/TJ,70.67928774983999,kg -e42b004c-7850-3c9c-95f5-887e00349423,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2019,naphtha combustion consumption by to the public,35.315035848399994,TJ,CO2,73300.0,kg/TJ,2588592.1276877197,kg -6150ce3b-e1ab-3aac-aa70-854d5f3c4a2c,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2019,naphtha combustion consumption by to the public,35.315035848399994,TJ,CH4,3.0,kg/TJ,105.94510754519999,kg -4ed54bb0-48bd-344e-897b-67bc7aa8da53,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2019,naphtha combustion consumption by to the public,35.315035848399994,TJ,N2O,0.6,kg/TJ,21.189021509039996,kg -78acec79-18a9-387e-a45e-d70efe661fb5,SESCO,II.1.1,Tucuman,AR-T,annual,2019,naphtha combustion consumption by to the public,0.4860092775999999,TJ,CO2,73300.0,kg/TJ,35624.48004807999,kg -50153209-70b5-3cac-ab33-1bff3234ee66,SESCO,II.1.1,Tucuman,AR-T,annual,2019,naphtha combustion consumption by to the public,0.4860092775999999,TJ,CH4,3.0,kg/TJ,1.4580278327999996,kg -65457fb3-97a8-380b-ab8a-700e0707e015,SESCO,II.1.1,Tucuman,AR-T,annual,2019,naphtha combustion consumption by to the public,0.4860092775999999,TJ,N2O,0.6,kg/TJ,0.2916055665599999,kg -e3bb023c-cfd8-3a1f-aaa1-f5c2c63fab35,SESCO,I.3.1,Neuquén,AR-Q,annual,2019,naphtha combustion consumption by petrochemical industries,3.6591812795999994,TJ,CO2,73300.0,kg/TJ,268217.98779467994,kg -5f667b57-eadc-378c-94aa-e590712be5ea,SESCO,I.3.1,Neuquén,AR-Q,annual,2019,naphtha combustion consumption by petrochemical industries,3.6591812795999994,TJ,CH4,3.0,kg/TJ,10.977543838799999,kg -b7c20eca-4359-3054-adad-360c2536aa69,SESCO,I.3.1,Neuquén,AR-Q,annual,2019,naphtha combustion consumption by petrochemical industries,3.6591812795999994,TJ,N2O,0.6,kg/TJ,2.1955087677599994,kg -88e232a4-a5a3-3dae-8b6a-e684bbbeefaf,SESCO,I.3.1,Neuquén,AR-Q,annual,2019,naphtha combustion consumption by petrochemical industries,0.30270797479999995,TJ,CO2,73300.0,kg/TJ,22188.494552839995,kg -9167f7aa-0089-3bf8-a53e-efc6a3f67a5c,SESCO,I.3.1,Neuquén,AR-Q,annual,2019,naphtha combustion consumption by petrochemical industries,0.30270797479999995,TJ,CH4,3.0,kg/TJ,0.9081239243999999,kg -4c4d7e1b-eabf-328d-b7c6-d6d59d1cb16b,SESCO,I.3.1,Neuquén,AR-Q,annual,2019,naphtha combustion consumption by petrochemical industries,0.30270797479999995,TJ,N2O,0.6,kg/TJ,0.18162478487999997,kg -b481b39b-debc-32c2-8575-56845855a8ba,SESCO,II.1.1,Buenos Aires,AR-B,annual,2019,naphtha combustion consumption by public passenger transport,0.869618288,TJ,CO2,73300.0,kg/TJ,63743.0205104,kg -05a86630-5c69-313d-8c97-b91b711bab15,SESCO,II.1.1,Buenos Aires,AR-B,annual,2019,naphtha combustion consumption by public passenger transport,0.869618288,TJ,CH4,3.0,kg/TJ,2.608854864,kg -df2f3e77-4c96-3aba-91ce-80499c39bdfc,SESCO,II.1.1,Buenos Aires,AR-B,annual,2019,naphtha combustion consumption by public passenger transport,0.869618288,TJ,N2O,0.6,kg/TJ,0.5217709728,kg -0c85afbe-d1df-3344-bb4f-728f9c8c1172,SESCO,II.5.1,Buenos Aires,AR-B,annual,2019,naphtha combustion consumption by agriculture machines,55.1200496,TJ,CO2,73300.0,kg/TJ,4040299.6356800003,kg -f3836bc2-60ed-3c37-8f92-4e53eb6b3701,SESCO,II.5.1,Buenos Aires,AR-B,annual,2019,naphtha combustion consumption by agriculture machines,55.1200496,TJ,CH4,3.0,kg/TJ,165.3601488,kg -cc81c118-f84a-3f57-86ee-7adc1ae9964c,SESCO,II.5.1,Buenos Aires,AR-B,annual,2019,naphtha combustion consumption by agriculture machines,55.1200496,TJ,N2O,0.6,kg/TJ,33.07202976,kg -9e39dade-c5e1-3d7f-8f58-80e2c121faf3,SESCO,II.5.1,Mendoza,AR-M,annual,2019,naphtha combustion consumption by agriculture machines,1.1156684,TJ,CO2,73300.0,kg/TJ,81778.49372,kg -fd56cee9-7233-38b3-8009-7ae722584787,SESCO,II.5.1,Mendoza,AR-M,annual,2019,naphtha combustion consumption by agriculture machines,1.1156684,TJ,CH4,3.0,kg/TJ,3.3470052,kg -ada7389e-4a03-376b-9f66-a2d8e09eccb9,SESCO,II.5.1,Mendoza,AR-M,annual,2019,naphtha combustion consumption by agriculture machines,1.1156684,TJ,N2O,0.6,kg/TJ,0.6694010399999999,kg -b72e966c-e84e-34dc-9d38-e5c2f4940edd,SESCO,II.5.1,Salta,AR-A,annual,2019,naphtha combustion consumption by agriculture machines,0.4522979999999999,TJ,CO2,73300.0,kg/TJ,33153.4434,kg -e46b6887-f91c-3855-896a-b8a01263325e,SESCO,II.5.1,Salta,AR-A,annual,2019,naphtha combustion consumption by agriculture machines,0.4522979999999999,TJ,CH4,3.0,kg/TJ,1.3568939999999998,kg -b1d02c21-f93c-3a05-9848-a05b35f4dd7d,SESCO,II.5.1,Salta,AR-A,annual,2019,naphtha combustion consumption by agriculture machines,0.4522979999999999,TJ,N2O,0.6,kg/TJ,0.2713787999999999,kg -3396d3f8-85c6-3962-a215-48785ca8627f,SESCO,II.5.1,Santa Fe,AR-S,annual,2019,naphtha combustion consumption by agriculture machines,38.17395119999999,TJ,CO2,73300.0,kg/TJ,2798150.6229599994,kg -7c68b4ff-67f1-38f3-92cf-8a299f8f037f,SESCO,II.5.1,Santa Fe,AR-S,annual,2019,naphtha combustion consumption by agriculture machines,38.17395119999999,TJ,CH4,3.0,kg/TJ,114.52185359999997,kg -b2c2379d-38fb-338c-96bb-5d39ffbbea18,SESCO,II.5.1,Santa Fe,AR-S,annual,2019,naphtha combustion consumption by agriculture machines,38.17395119999999,TJ,N2O,0.6,kg/TJ,22.904370719999992,kg -6da880de-82bc-3b0c-acae-f66dbbf4f55a,SESCO,II.1.1,Buenos Aires,AR-B,annual,2019,naphtha combustion consumption by to the public,38738.1477252,TJ,CO2,73300.0,kg/TJ,2839506228.2571597,kg -d217ac6d-6fc2-38ee-bcdc-1070a51d5ddb,SESCO,II.1.1,Buenos Aires,AR-B,annual,2019,naphtha combustion consumption by to the public,38738.1477252,TJ,CH4,3.0,kg/TJ,116214.4431756,kg -760c4f0e-79a4-3796-9f0c-0ddda51c1459,SESCO,II.1.1,Buenos Aires,AR-B,annual,2019,naphtha combustion consumption by to the public,38738.1477252,TJ,N2O,0.6,kg/TJ,23242.888635119998,kg -62dbebe8-fd72-34b5-b299-28f158ae2b3f,SESCO,II.1.1,Capital Federal,AR-C,annual,2019,naphtha combustion consumption by to the public,7886.358387599999,TJ,CO2,73300.0,kg/TJ,578070069.81108,kg -f3f65295-115d-310c-a8a0-ae47637f0a87,SESCO,II.1.1,Capital Federal,AR-C,annual,2019,naphtha combustion consumption by to the public,7886.358387599999,TJ,CH4,3.0,kg/TJ,23659.0751628,kg -b00a3fdc-b6ff-3bb4-a479-337cfd3a9654,SESCO,II.1.1,Capital Federal,AR-C,annual,2019,naphtha combustion consumption by to the public,7886.358387599999,TJ,N2O,0.6,kg/TJ,4731.815032559999,kg -f81d170d-0041-3424-b3bf-2138d11d3eba,SESCO,II.1.1,Catamarca,AR-K,annual,2019,naphtha combustion consumption by to the public,757.6293032,TJ,CO2,73300.0,kg/TJ,55534227.924559996,kg -2cd17883-3d54-30fc-8ec2-34f1a2089473,SESCO,II.1.1,Catamarca,AR-K,annual,2019,naphtha combustion consumption by to the public,757.6293032,TJ,CH4,3.0,kg/TJ,2272.8879096,kg -57f306ca-15d5-3608-9eae-7ea8665a99f4,SESCO,II.1.1,Catamarca,AR-K,annual,2019,naphtha combustion consumption by to the public,757.6293032,TJ,N2O,0.6,kg/TJ,454.57758192,kg -5500de3f-4311-3b1a-af0e-35e99942cf37,SESCO,II.1.1,Chaco,AR-H,annual,2019,naphtha combustion consumption by to the public,2272.5562244,TJ,CO2,73300.0,kg/TJ,166578371.24852,kg -0f02790e-ea69-379a-84c8-d2545a8cac70,SESCO,II.1.1,Chaco,AR-H,annual,2019,naphtha combustion consumption by to the public,2272.5562244,TJ,CH4,3.0,kg/TJ,6817.6686732,kg -32c87720-41ec-3b91-8713-d8a4d4fcf363,SESCO,II.1.1,Chaco,AR-H,annual,2019,naphtha combustion consumption by to the public,2272.5562244,TJ,N2O,0.6,kg/TJ,1363.53373464,kg -18f79a73-c1f8-324e-a1a5-2586537a7d56,SESCO,II.1.1,Chubut,AR-U,annual,2019,naphtha combustion consumption by to the public,3263.3903763999997,TJ,CO2,73300.0,kg/TJ,239206514.59012,kg -f98ec2c3-56ff-3d42-b17b-80b4997801e3,SESCO,II.1.1,Chubut,AR-U,annual,2019,naphtha combustion consumption by to the public,3263.3903763999997,TJ,CH4,3.0,kg/TJ,9790.1711292,kg -3543414c-3ab1-30af-8030-ae522b46f8be,SESCO,II.1.1,Chubut,AR-U,annual,2019,naphtha combustion consumption by to the public,3263.3903763999997,TJ,N2O,0.6,kg/TJ,1958.0342258399996,kg -d74f61c5-720d-30ce-a6de-98e4151f81e6,SESCO,II.1.1,Corrientes,AR-W,annual,2019,naphtha combustion consumption by to the public,2343.8986956,TJ,CO2,73300.0,kg/TJ,171807774.38748,kg -0200a37e-16b9-35b0-be66-6f87d01a405a,SESCO,II.1.1,Corrientes,AR-W,annual,2019,naphtha combustion consumption by to the public,2343.8986956,TJ,CH4,3.0,kg/TJ,7031.6960868,kg -747952d6-12f5-3b33-a3d1-e0f8ea650bbf,SESCO,II.1.1,Corrientes,AR-W,annual,2019,naphtha combustion consumption by to the public,2343.8986956,TJ,N2O,0.6,kg/TJ,1406.3392173599998,kg -29222703-7f2f-3b8f-919a-0ec51a08d3c9,SESCO,II.1.1,Córdoba,AR-X,annual,2019,naphtha combustion consumption by to the public,9463.069215599999,TJ,CO2,73300.0,kg/TJ,693642973.50348,kg -2313be80-3f31-33ea-a02a-c16f26323eb9,SESCO,II.1.1,Córdoba,AR-X,annual,2019,naphtha combustion consumption by to the public,9463.069215599999,TJ,CH4,3.0,kg/TJ,28389.207646799994,kg -14e17907-f6cb-3af5-88ad-c57c68e71d18,SESCO,II.1.1,Córdoba,AR-X,annual,2019,naphtha combustion consumption by to the public,9463.069215599999,TJ,N2O,0.6,kg/TJ,5677.841529359999,kg -e77dd3b5-fa99-35e3-b4f7-00aa08ef33e7,SESCO,II.1.1,Entre Rios,AR-E,annual,2019,naphtha combustion consumption by to the public,3296.8001219999996,TJ,CO2,73300.0,kg/TJ,241655448.94259998,kg -05542a2e-b3c1-3847-af21-c8b577029b59,SESCO,II.1.1,Entre Rios,AR-E,annual,2019,naphtha combustion consumption by to the public,3296.8001219999996,TJ,CH4,3.0,kg/TJ,9890.400365999998,kg -da428c51-594c-3ddc-8806-5aed9b3ba9a6,SESCO,II.1.1,Entre Rios,AR-E,annual,2019,naphtha combustion consumption by to the public,3296.8001219999996,TJ,N2O,0.6,kg/TJ,1978.0800731999998,kg -6672dfdb-3eb4-39e2-9d07-adfb9001585e,SESCO,II.1.1,Formosa,AR-P,annual,2019,naphtha combustion consumption by to the public,1046.1049676,TJ,CO2,73300.0,kg/TJ,76679494.12508,kg -b2c6bb05-e76f-3989-9bd8-b139400b9d62,SESCO,II.1.1,Formosa,AR-P,annual,2019,naphtha combustion consumption by to the public,1046.1049676,TJ,CH4,3.0,kg/TJ,3138.3149028,kg -5e73ba74-40af-3557-bde7-8d45a3e5c746,SESCO,II.1.1,Formosa,AR-P,annual,2019,naphtha combustion consumption by to the public,1046.1049676,TJ,N2O,0.6,kg/TJ,627.6629805599999,kg -a2bd50e9-9f12-33cf-9163-bc07787ac56b,SESCO,II.1.1,Jujuy,AR-Y,annual,2019,naphtha combustion consumption by to the public,1424.5577807999998,TJ,CO2,73300.0,kg/TJ,104420085.33263999,kg -e652ec0b-435a-31a7-ab09-4a89dad62d51,SESCO,II.1.1,Jujuy,AR-Y,annual,2019,naphtha combustion consumption by to the public,1424.5577807999998,TJ,CH4,3.0,kg/TJ,4273.6733423999995,kg -6d58b18e-d5fe-3570-b1ef-e57ff01a021e,SESCO,II.1.1,Jujuy,AR-Y,annual,2019,naphtha combustion consumption by to the public,1424.5577807999998,TJ,N2O,0.6,kg/TJ,854.7346684799999,kg -9b96dc2f-8f20-30bf-9cc9-b74030cdb6d1,SESCO,II.1.1,La Pampa,AR-L,annual,2019,naphtha combustion consumption by to the public,1675.9148559999999,TJ,CO2,73300.0,kg/TJ,122844558.94479999,kg -2218b4a7-88c2-30dd-ba57-163478e17ce3,SESCO,II.1.1,La Pampa,AR-L,annual,2019,naphtha combustion consumption by to the public,1675.9148559999999,TJ,CH4,3.0,kg/TJ,5027.744568,kg -6b6b11de-51cc-300b-a04b-f281af63762f,SESCO,II.1.1,La Pampa,AR-L,annual,2019,naphtha combustion consumption by to the public,1675.9148559999999,TJ,N2O,0.6,kg/TJ,1005.5489135999999,kg -6cde9508-29aa-3368-81db-0a18c4126d80,SESCO,II.1.1,La Rioja,AR-F,annual,2019,naphtha combustion consumption by to the public,995.960196,TJ,CO2,73300.0,kg/TJ,73003882.3668,kg -56532cb7-bcae-35f5-b4a1-ab96d953be70,SESCO,II.1.1,La Rioja,AR-F,annual,2019,naphtha combustion consumption by to the public,995.960196,TJ,CH4,3.0,kg/TJ,2987.880588,kg -d1b2ca9b-96b6-38a3-bbbb-8c8279fcd1c8,SESCO,II.1.1,La Rioja,AR-F,annual,2019,naphtha combustion consumption by to the public,995.960196,TJ,N2O,0.6,kg/TJ,597.5761176,kg -f07eb63c-2eab-35a3-a595-f7bf5830b459,SESCO,II.1.1,Mendoza,AR-M,annual,2019,naphtha combustion consumption by to the public,4913.916238,TJ,CO2,73300.0,kg/TJ,360190060.2454,kg -c037acf4-a02c-3b8b-be95-00f28f78c3f7,SESCO,II.1.1,Mendoza,AR-M,annual,2019,naphtha combustion consumption by to the public,4913.916238,TJ,CH4,3.0,kg/TJ,14741.748714,kg -9d0df366-e0cc-3ef0-963f-8f6ad49c70f6,SESCO,II.1.1,Mendoza,AR-M,annual,2019,naphtha combustion consumption by to the public,4913.916238,TJ,N2O,0.6,kg/TJ,2948.3497427999996,kg -f95ded92-7380-361d-a393-044971385ece,SESCO,II.1.1,Misiones,AR-N,annual,2019,naphtha combustion consumption by to the public,3234.7749895999996,TJ,CO2,73300.0,kg/TJ,237109006.73767996,kg -2b08ba9f-8acd-3339-9af8-09e07f3d7fff,SESCO,II.1.1,Misiones,AR-N,annual,2019,naphtha combustion consumption by to the public,3234.7749895999996,TJ,CH4,3.0,kg/TJ,9704.3249688,kg -1fd1ef03-a7e4-302f-8a18-054e1accbcfa,SESCO,II.1.1,Misiones,AR-N,annual,2019,naphtha combustion consumption by to the public,3234.7749895999996,TJ,N2O,0.6,kg/TJ,1940.8649937599996,kg -ddc0e24f-5a95-317a-999c-1da86b1b4907,SESCO,II.1.1,Neuquén,AR-Q,annual,2019,naphtha combustion consumption by to the public,3277.9845251999996,TJ,CO2,73300.0,kg/TJ,240276265.69715998,kg -25774f51-3258-3368-88b1-580114b058b3,SESCO,II.1.1,Neuquén,AR-Q,annual,2019,naphtha combustion consumption by to the public,3277.9845251999996,TJ,CH4,3.0,kg/TJ,9833.953575599999,kg -d614f278-2c33-31a4-9da4-f9d1b50f1f36,SESCO,II.1.1,Neuquén,AR-Q,annual,2019,naphtha combustion consumption by to the public,3277.9845251999996,TJ,N2O,0.6,kg/TJ,1966.7907151199997,kg -8882a197-6c66-3d96-ba9c-15fa408bdbc4,SESCO,II.1.1,Rio Negro,AR-R,annual,2019,naphtha combustion consumption by to the public,3296.3176707999996,TJ,CO2,73300.0,kg/TJ,241620085.26963997,kg -8d88ba84-1a85-3c0f-b8d5-046ac790857e,SESCO,II.1.1,Rio Negro,AR-R,annual,2019,naphtha combustion consumption by to the public,3296.3176707999996,TJ,CH4,3.0,kg/TJ,9888.9530124,kg -28aa7ada-e043-3120-a50f-8b5580849f02,SESCO,II.1.1,Rio Negro,AR-R,annual,2019,naphtha combustion consumption by to the public,3296.3176707999996,TJ,N2O,0.6,kg/TJ,1977.7906024799997,kg -a2eb6216-a416-31e3-b908-ce5c8ea132f7,SESCO,II.1.1,Salta,AR-A,annual,2019,naphtha combustion consumption by to the public,3173.1418487999995,TJ,CO2,73300.0,kg/TJ,232591297.51703995,kg -8162cdcb-dcfd-36bf-8651-8f53fdfa7e77,SESCO,II.1.1,Salta,AR-A,annual,2019,naphtha combustion consumption by to the public,3173.1418487999995,TJ,CH4,3.0,kg/TJ,9519.425546399998,kg -9bd45cd3-a4da-3823-98b3-dbe836026849,SESCO,II.1.1,Salta,AR-A,annual,2019,naphtha combustion consumption by to the public,3173.1418487999995,TJ,N2O,0.6,kg/TJ,1903.8851092799996,kg -78ebf6e1-e439-34cc-bcec-85d6e5525dd9,SESCO,II.1.1,San Juan,AR-J,annual,2019,naphtha combustion consumption by to the public,1677.5129756,TJ,CO2,73300.0,kg/TJ,122961701.11148,kg -5f0c290e-09fe-30e1-bb9f-23efcdb29c86,SESCO,II.1.1,San Juan,AR-J,annual,2019,naphtha combustion consumption by to the public,1677.5129756,TJ,CH4,3.0,kg/TJ,5032.5389268,kg -a7235f9e-fff9-3f62-93a0-46ee00cc5381,SESCO,II.1.1,San Juan,AR-J,annual,2019,naphtha combustion consumption by to the public,1677.5129756,TJ,N2O,0.6,kg/TJ,1006.5077853599998,kg -ec927221-4534-3827-b30a-50140b0c816e,SESCO,II.1.1,San Luis,AR-D,annual,2019,naphtha combustion consumption by to the public,1419.763422,TJ,CO2,73300.0,kg/TJ,104068658.8326,kg -0f59323d-ae04-3f05-ae63-4cfd3a52b135,SESCO,II.1.1,San Luis,AR-D,annual,2019,naphtha combustion consumption by to the public,1419.763422,TJ,CH4,3.0,kg/TJ,4259.290266,kg -cb994e5c-1748-3b63-b7ec-b03b8db25256,SESCO,II.1.1,San Luis,AR-D,annual,2019,naphtha combustion consumption by to the public,1419.763422,TJ,N2O,0.6,kg/TJ,851.8580532,kg -cb585a11-c36d-32f1-be9b-132f4a1c39a4,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2019,naphtha combustion consumption by to the public,2295.1711244,TJ,CO2,73300.0,kg/TJ,168236043.41851997,kg -516ed6e5-3131-376f-9cd1-87d0f63a294d,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2019,naphtha combustion consumption by to the public,2295.1711244,TJ,CH4,3.0,kg/TJ,6885.5133731999995,kg -292aa4ef-d4a6-3bd2-adff-db98756c6310,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2019,naphtha combustion consumption by to the public,2295.1711244,TJ,N2O,0.6,kg/TJ,1377.1026746399998,kg -2a67392f-9c43-3ef1-aef8-5b57ebccca3d,SESCO,II.1.1,Santa Fe,AR-S,annual,2019,naphtha combustion consumption by to the public,7255.312218,TJ,CO2,73300.0,kg/TJ,531814385.5794,kg -a33cfb25-7b74-3a00-8cdf-11131b892d65,SESCO,II.1.1,Santa Fe,AR-S,annual,2019,naphtha combustion consumption by to the public,7255.312218,TJ,CH4,3.0,kg/TJ,21765.936654,kg -20de39a9-d019-3185-9605-92734b8d82df,SESCO,II.1.1,Santa Fe,AR-S,annual,2019,naphtha combustion consumption by to the public,7255.312218,TJ,N2O,0.6,kg/TJ,4353.1873307999995,kg -7d143d9e-4b89-3487-ae63-215966591b1a,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2019,naphtha combustion consumption by to the public,1456.7613983999997,TJ,CO2,73300.0,kg/TJ,106780610.50271998,kg -77a1b3c6-b97c-37ac-a4d0-2e8bd905d1ec,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2019,naphtha combustion consumption by to the public,1456.7613983999997,TJ,CH4,3.0,kg/TJ,4370.284195199999,kg -5666b3bf-2c0b-38b2-91fb-09d1d8cec1a8,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2019,naphtha combustion consumption by to the public,1456.7613983999997,TJ,N2O,0.6,kg/TJ,874.0568390399998,kg -0b90d764-caa8-3b6c-b875-49a673bd3300,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2019,naphtha combustion consumption by to the public,1589.7068572,TJ,CO2,73300.0,kg/TJ,116525512.63276,kg -ed9c6257-8fa7-39c4-8266-213a0dfa24f5,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2019,naphtha combustion consumption by to the public,1589.7068572,TJ,CH4,3.0,kg/TJ,4769.1205716,kg -b0c50c82-4e28-30a7-a93a-d4d038fa1509,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2019,naphtha combustion consumption by to the public,1589.7068572,TJ,N2O,0.6,kg/TJ,953.82411432,kg -4df47ab5-be8a-32f8-8ef1-1133aa589cc1,SESCO,II.1.1,Tucuman,AR-T,annual,2019,naphtha combustion consumption by to the public,2717.8285287999997,TJ,CO2,73300.0,kg/TJ,199216831.16103998,kg -b6a769e2-8382-3378-a74e-64ecbb010622,SESCO,II.1.1,Tucuman,AR-T,annual,2019,naphtha combustion consumption by to the public,2717.8285287999997,TJ,CH4,3.0,kg/TJ,8153.485586399999,kg -cc6a8e71-36eb-3360-82e6-c1f06d130428,SESCO,II.1.1,Tucuman,AR-T,annual,2019,naphtha combustion consumption by to the public,2717.8285287999997,TJ,N2O,0.6,kg/TJ,1630.6971172799997,kg -97498fff-65ea-3258-bed9-6bba0f0c64d2,SESCO,II.1.1,Buenos Aires,AR-B,annual,2019,naphtha combustion consumption by to the public,14059.834095999999,TJ,CO2,73300.0,kg/TJ,1030585839.2368,kg -51962899-e060-3a8c-99da-bbc53273b7a5,SESCO,II.1.1,Buenos Aires,AR-B,annual,2019,naphtha combustion consumption by to the public,14059.834095999999,TJ,CH4,3.0,kg/TJ,42179.502287999996,kg -c3f2e4fd-d541-311d-a95e-161d42e46d49,SESCO,II.1.1,Buenos Aires,AR-B,annual,2019,naphtha combustion consumption by to the public,14059.834095999999,TJ,N2O,0.6,kg/TJ,8435.900457599999,kg -c8193ec4-e887-368f-8899-4af36897e267,SESCO,II.1.1,Capital Federal,AR-C,annual,2019,naphtha combustion consumption by to the public,3317.6359832,TJ,CO2,73300.0,kg/TJ,243182717.56855997,kg -57eb6aad-55e3-38d3-b4a3-bd8aaff23210,SESCO,II.1.1,Capital Federal,AR-C,annual,2019,naphtha combustion consumption by to the public,3317.6359832,TJ,CH4,3.0,kg/TJ,9952.9079496,kg -04249cfe-59fb-3562-873d-5b5130755a40,SESCO,II.1.1,Capital Federal,AR-C,annual,2019,naphtha combustion consumption by to the public,3317.6359832,TJ,N2O,0.6,kg/TJ,1990.5815899199997,kg -371cdaaa-564f-3e89-98ee-60e5a36a5fd4,SESCO,II.1.1,Catamarca,AR-K,annual,2019,naphtha combustion consumption by to the public,270.08221239999995,TJ,CO2,73300.0,kg/TJ,19797026.168919995,kg -55a4f09f-d58e-3dc4-8425-503292344525,SESCO,II.1.1,Catamarca,AR-K,annual,2019,naphtha combustion consumption by to the public,270.08221239999995,TJ,CH4,3.0,kg/TJ,810.2466371999999,kg -b0f81532-9e91-3f90-a8ad-d05067477ace,SESCO,II.1.1,Catamarca,AR-K,annual,2019,naphtha combustion consumption by to the public,270.08221239999995,TJ,N2O,0.6,kg/TJ,162.04932743999996,kg -8a4b8ec3-afe5-3034-b8b7-ad8600564309,SESCO,II.1.1,Chaco,AR-H,annual,2019,naphtha combustion consumption by to the public,775.841836,TJ,CO2,73300.0,kg/TJ,56869206.57879999,kg -c7a0de36-1a39-314f-8c38-c6b54c98c8e3,SESCO,II.1.1,Chaco,AR-H,annual,2019,naphtha combustion consumption by to the public,775.841836,TJ,CH4,3.0,kg/TJ,2327.5255079999997,kg -d32b3df3-669f-3fa5-9e93-6832c9e44e15,SESCO,II.1.1,Chaco,AR-H,annual,2019,naphtha combustion consumption by to the public,775.841836,TJ,N2O,0.6,kg/TJ,465.50510159999993,kg -2cd7bb84-baa4-35e5-bc76-1fcb4b5d315c,SESCO,II.1.1,Chubut,AR-U,annual,2019,naphtha combustion consumption by to the public,1153.5408191999998,TJ,CO2,73300.0,kg/TJ,84554542.04735999,kg -d9f6a666-4fb5-3a5f-96ad-b214c267d660,SESCO,II.1.1,Chubut,AR-U,annual,2019,naphtha combustion consumption by to the public,1153.5408191999998,TJ,CH4,3.0,kg/TJ,3460.6224575999995,kg -fc2f8fb1-7dca-382a-8497-300dd9f09c86,SESCO,II.1.1,Chubut,AR-U,annual,2019,naphtha combustion consumption by to the public,1153.5408191999998,TJ,N2O,0.6,kg/TJ,692.1244915199999,kg -0b935da6-1fa6-3e19-89c4-336163de8400,SESCO,II.1.1,Corrientes,AR-W,annual,2019,naphtha combustion consumption by to the public,914.9687008,TJ,CO2,73300.0,kg/TJ,67067205.76864,kg -2689030e-20b1-3b9c-a58c-acaea109d121,SESCO,II.1.1,Corrientes,AR-W,annual,2019,naphtha combustion consumption by to the public,914.9687008,TJ,CH4,3.0,kg/TJ,2744.9061024,kg -c354e27b-ca4e-319f-b844-1fa127969b0d,SESCO,II.1.1,Corrientes,AR-W,annual,2019,naphtha combustion consumption by to the public,914.9687008,TJ,N2O,0.6,kg/TJ,548.9812204799999,kg -3e1bde54-31ab-358b-a0bc-8c3d1a7100b9,SESCO,II.1.1,Córdoba,AR-X,annual,2019,naphtha combustion consumption by to the public,3391.2700975999996,TJ,CO2,73300.0,kg/TJ,248580098.15407997,kg -7aba99d4-9765-355a-9c37-0041bde9528f,SESCO,II.1.1,Córdoba,AR-X,annual,2019,naphtha combustion consumption by to the public,3391.2700975999996,TJ,CH4,3.0,kg/TJ,10173.810292799999,kg -0a7a6235-da18-33b4-8004-6ed1f40a1e94,SESCO,II.1.1,Córdoba,AR-X,annual,2019,naphtha combustion consumption by to the public,3391.2700975999996,TJ,N2O,0.6,kg/TJ,2034.7620585599998,kg -22b6b205-926e-3dcd-b688-3654cfb4a504,SESCO,II.1.1,Entre Rios,AR-E,annual,2019,naphtha combustion consumption by to the public,1201.0019559999998,TJ,CO2,73300.0,kg/TJ,88033443.37479998,kg -d782c11c-c81b-3990-a45d-c41fe1b40c26,SESCO,II.1.1,Entre Rios,AR-E,annual,2019,naphtha combustion consumption by to the public,1201.0019559999998,TJ,CH4,3.0,kg/TJ,3603.0058679999993,kg -7be17cd1-c32b-3697-ae28-3633b30415ac,SESCO,II.1.1,Entre Rios,AR-E,annual,2019,naphtha combustion consumption by to the public,1201.0019559999998,TJ,N2O,0.6,kg/TJ,720.6011735999999,kg -669f385c-1d9d-3e02-8636-9f88386707c8,SESCO,II.1.1,Formosa,AR-P,annual,2019,naphtha combustion consumption by to the public,265.197394,TJ,CO2,73300.0,kg/TJ,19438968.980199996,kg -8cfece63-8016-39cc-b360-5d5053bdc0d5,SESCO,II.1.1,Formosa,AR-P,annual,2019,naphtha combustion consumption by to the public,265.197394,TJ,CH4,3.0,kg/TJ,795.5921819999999,kg -9cec7134-d672-351e-810b-067992a81998,SESCO,II.1.1,Formosa,AR-P,annual,2019,naphtha combustion consumption by to the public,265.197394,TJ,N2O,0.6,kg/TJ,159.11843639999998,kg -dc9bc689-3f9b-32d1-89c9-29e02f89c56f,SESCO,II.1.1,Jujuy,AR-Y,annual,2019,naphtha combustion consumption by to the public,398.7459168,TJ,CO2,73300.0,kg/TJ,29228075.70144,kg -e81d801f-1323-3e73-a96a-f5f6aea9408c,SESCO,II.1.1,Jujuy,AR-Y,annual,2019,naphtha combustion consumption by to the public,398.7459168,TJ,CH4,3.0,kg/TJ,1196.2377503999999,kg -3d853fcc-844e-37fa-bcee-a3d69070f548,SESCO,II.1.1,Jujuy,AR-Y,annual,2019,naphtha combustion consumption by to the public,398.7459168,TJ,N2O,0.6,kg/TJ,239.24755007999997,kg -162aefb0-6ce8-3cd8-a4a4-3e5e5c73c1ac,SESCO,II.1.1,La Pampa,AR-L,annual,2019,naphtha combustion consumption by to the public,993.6082464,TJ,CO2,73300.0,kg/TJ,72831484.46112,kg -17d8d19b-a933-3b44-8482-0ddcff4724d3,SESCO,II.1.1,La Pampa,AR-L,annual,2019,naphtha combustion consumption by to the public,993.6082464,TJ,CH4,3.0,kg/TJ,2980.8247392,kg -5e82af2a-9dd6-3d25-ac75-9b1c37aaf1d6,SESCO,II.1.1,La Pampa,AR-L,annual,2019,naphtha combustion consumption by to the public,993.6082464,TJ,N2O,0.6,kg/TJ,596.16494784,kg -ef8b5a54-ac0a-3134-8bd7-23e046e418a4,SESCO,II.1.1,La Rioja,AR-F,annual,2019,naphtha combustion consumption by to the public,387.7098456,TJ,CO2,73300.0,kg/TJ,28419131.68248,kg -82c259dd-a7ef-31a5-9c48-6f3d40506534,SESCO,II.1.1,La Rioja,AR-F,annual,2019,naphtha combustion consumption by to the public,387.7098456,TJ,CH4,3.0,kg/TJ,1163.1295368,kg -4ae08ea7-4ace-3bb3-a977-b2679e491c52,SESCO,II.1.1,La Rioja,AR-F,annual,2019,naphtha combustion consumption by to the public,387.7098456,TJ,N2O,0.6,kg/TJ,232.62590735999999,kg -a1e0809e-7721-3054-af3a-271a32c18696,SESCO,II.1.1,Mendoza,AR-M,annual,2019,naphtha combustion consumption by to the public,2357.8897804,TJ,CO2,73300.0,kg/TJ,172833320.90331998,kg -e49728c6-139a-3cc1-a3bf-0213da2e1cf7,SESCO,II.1.1,Mendoza,AR-M,annual,2019,naphtha combustion consumption by to the public,2357.8897804,TJ,CH4,3.0,kg/TJ,7073.6693411999995,kg -c1b7c241-7544-3dec-bf40-0ce6d210e085,SESCO,II.1.1,Mendoza,AR-M,annual,2019,naphtha combustion consumption by to the public,2357.8897804,TJ,N2O,0.6,kg/TJ,1414.7338682399998,kg -034030ef-3093-3fc6-805a-86ddb661c265,SESCO,II.1.1,Misiones,AR-N,annual,2019,naphtha combustion consumption by to the public,761.9110575999999,TJ,CO2,73300.0,kg/TJ,55848080.52208,kg -04fbf667-9cae-34eb-911c-6d7eb8b9b70e,SESCO,II.1.1,Misiones,AR-N,annual,2019,naphtha combustion consumption by to the public,761.9110575999999,TJ,CH4,3.0,kg/TJ,2285.7331728,kg -42e9ddd9-006f-3e5a-af26-704a8bb540d3,SESCO,II.1.1,Misiones,AR-N,annual,2019,naphtha combustion consumption by to the public,761.9110575999999,TJ,N2O,0.6,kg/TJ,457.14663455999994,kg -96165e07-1cbc-3713-bdbd-8b54ea3c22f5,SESCO,II.1.1,Neuquén,AR-Q,annual,2019,naphtha combustion consumption by to the public,1829.3343375999998,TJ,CO2,73300.0,kg/TJ,134090206.94607998,kg -16a0298b-6725-3bf4-a07c-b3d0f0013f90,SESCO,II.1.1,Neuquén,AR-Q,annual,2019,naphtha combustion consumption by to the public,1829.3343375999998,TJ,CH4,3.0,kg/TJ,5488.0030128,kg -e95eb175-f0e4-320e-a414-f575112ee611,SESCO,II.1.1,Neuquén,AR-Q,annual,2019,naphtha combustion consumption by to the public,1829.3343375999998,TJ,N2O,0.6,kg/TJ,1097.6006025599997,kg -b963a6f7-5313-3c4e-8669-8d83e90cdb79,SESCO,II.1.1,Rio Negro,AR-R,annual,2019,naphtha combustion consumption by to the public,1539.5017791999999,TJ,CO2,73300.0,kg/TJ,112845480.41535999,kg -31d63268-54b4-37ea-a245-5a85bedbf8e4,SESCO,II.1.1,Rio Negro,AR-R,annual,2019,naphtha combustion consumption by to the public,1539.5017791999999,TJ,CH4,3.0,kg/TJ,4618.5053376,kg -fea6df03-b1ce-3f00-b95f-be42d7f7d452,SESCO,II.1.1,Rio Negro,AR-R,annual,2019,naphtha combustion consumption by to the public,1539.5017791999999,TJ,N2O,0.6,kg/TJ,923.7010675199999,kg -33137183-0ad7-3ef5-807e-39ae800fefa6,SESCO,II.1.1,Salta,AR-A,annual,2019,naphtha combustion consumption by to the public,897.1481595999999,TJ,CO2,73300.0,kg/TJ,65760960.09867999,kg -040cbbed-995b-394a-9230-f8a1feccd74c,SESCO,II.1.1,Salta,AR-A,annual,2019,naphtha combustion consumption by to the public,897.1481595999999,TJ,CH4,3.0,kg/TJ,2691.4444787999996,kg -104b54e7-da08-32a6-ab86-91c311d699e5,SESCO,II.1.1,Salta,AR-A,annual,2019,naphtha combustion consumption by to the public,897.1481595999999,TJ,N2O,0.6,kg/TJ,538.28889576,kg -94123574-3cd4-38ab-8828-65b5090deecb,SESCO,II.1.1,San Juan,AR-J,annual,2019,naphtha combustion consumption by to the public,686.4074447999999,TJ,CO2,73300.0,kg/TJ,50313665.703839995,kg -45eea222-0099-3f32-8726-f37028c6dc99,SESCO,II.1.1,San Juan,AR-J,annual,2019,naphtha combustion consumption by to the public,686.4074447999999,TJ,CH4,3.0,kg/TJ,2059.2223343999995,kg -96435614-08b8-3dd4-97b4-112492cf899a,SESCO,II.1.1,San Juan,AR-J,annual,2019,naphtha combustion consumption by to the public,686.4074447999999,TJ,N2O,0.6,kg/TJ,411.8444668799999,kg -49834d1c-0739-3612-b4fc-c3554e355e54,SESCO,II.1.1,San Luis,AR-D,annual,2019,naphtha combustion consumption by to the public,578.7605208,TJ,CO2,73300.0,kg/TJ,42423146.17464,kg -d6de8d46-e0f2-3a41-8d5a-f1d943be359a,SESCO,II.1.1,San Luis,AR-D,annual,2019,naphtha combustion consumption by to the public,578.7605208,TJ,CH4,3.0,kg/TJ,1736.2815624,kg -7f11084b-af42-3bc5-ae14-9157c4733400,SESCO,II.1.1,San Luis,AR-D,annual,2019,naphtha combustion consumption by to the public,578.7605208,TJ,N2O,0.6,kg/TJ,347.25631247999996,kg -8ddd3a18-cb4b-3d04-8cf2-0d02cd8d001e,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2019,naphtha combustion consumption by to the public,557.5025148,TJ,CO2,73300.0,kg/TJ,40864934.33484,kg -45ddef2a-6e49-3867-9317-0f5739ac44c5,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2019,naphtha combustion consumption by to the public,557.5025148,TJ,CH4,3.0,kg/TJ,1672.5075444,kg -e2632cab-7c21-3416-9d1d-3716c16a4262,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2019,naphtha combustion consumption by to the public,557.5025148,TJ,N2O,0.6,kg/TJ,334.50150887999996,kg -534c107e-e983-35cb-936c-b6d069409452,SESCO,II.1.1,Santa Fe,AR-S,annual,2019,naphtha combustion consumption by to the public,2998.7055867999998,TJ,CO2,73300.0,kg/TJ,219805119.51244,kg -c468e37f-492f-3e99-b8b1-84f67794a075,SESCO,II.1.1,Santa Fe,AR-S,annual,2019,naphtha combustion consumption by to the public,2998.7055867999998,TJ,CH4,3.0,kg/TJ,8996.1167604,kg -2605bcd3-c2b1-3bdf-bbb9-bbbfd1d6f5d3,SESCO,II.1.1,Santa Fe,AR-S,annual,2019,naphtha combustion consumption by to the public,2998.7055867999998,TJ,N2O,0.6,kg/TJ,1799.2233520799998,kg -df02ee53-9fd5-3f42-acf9-3f98e1c0cf56,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2019,naphtha combustion consumption by to the public,528.2237576,TJ,CO2,73300.0,kg/TJ,38718801.43208,kg -913e1bf1-8aac-3613-8cda-07e9042be6a9,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2019,naphtha combustion consumption by to the public,528.2237576,TJ,CH4,3.0,kg/TJ,1584.6712728,kg -ed640bb1-bac6-37bb-9a54-be585586b5e2,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2019,naphtha combustion consumption by to the public,528.2237576,TJ,N2O,0.6,kg/TJ,316.93425456,kg -9b061262-702f-3e63-a4cb-0f374807bc12,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2019,naphtha combustion consumption by to the public,277.3792868,TJ,CO2,73300.0,kg/TJ,20331901.72244,kg -0431b876-a0da-30d2-a833-01dddb5327c5,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2019,naphtha combustion consumption by to the public,277.3792868,TJ,CH4,3.0,kg/TJ,832.1378603999999,kg -c06f18b9-e3a3-3ec4-831c-34064b9a30a7,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2019,naphtha combustion consumption by to the public,277.3792868,TJ,N2O,0.6,kg/TJ,166.42757207999998,kg -a7c3010a-7247-38ee-91fb-b24d5474d0af,SESCO,II.1.1,Tucuman,AR-T,annual,2019,naphtha combustion consumption by to the public,691.8350207999999,TJ,CO2,73300.0,kg/TJ,50711507.024639994,kg -4f880c10-de85-31bc-a44f-29c483ee89d9,SESCO,II.1.1,Tucuman,AR-T,annual,2019,naphtha combustion consumption by to the public,691.8350207999999,TJ,CH4,3.0,kg/TJ,2075.5050623999996,kg -1c0b9b9f-3cf7-3908-a978-09dcedc2e4a2,SESCO,II.1.1,Tucuman,AR-T,annual,2019,naphtha combustion consumption by to the public,691.8350207999999,TJ,N2O,0.6,kg/TJ,415.10101247999995,kg -f3eba6a0-1e1e-3197-8b52-46f0561de541,SESCO,II.1.1,Buenos Aires,AR-B,annual,2019,naphtha combustion consumption by freight transport,399.8012788,TJ,CO2,73300.0,kg/TJ,29305433.73604,kg -7fda656e-6108-39df-b98b-645986406800,SESCO,II.1.1,Buenos Aires,AR-B,annual,2019,naphtha combustion consumption by freight transport,399.8012788,TJ,CH4,3.0,kg/TJ,1199.4038363999998,kg -4406bb61-47d8-322a-accb-73204b3fedeb,SESCO,II.1.1,Buenos Aires,AR-B,annual,2019,naphtha combustion consumption by freight transport,399.8012788,TJ,N2O,0.6,kg/TJ,239.88076728,kg -879226d6-bd98-388c-b284-1d645e7f1713,SESCO,II.1.1,Capital Federal,AR-C,annual,2019,naphtha combustion consumption by freight transport,406.10329759999996,TJ,CO2,73300.0,kg/TJ,29767371.71408,kg -756e14c0-afa0-37cb-b386-b461dd5d4561,SESCO,II.1.1,Capital Federal,AR-C,annual,2019,naphtha combustion consumption by freight transport,406.10329759999996,TJ,CH4,3.0,kg/TJ,1218.3098928,kg -925c83b7-47cc-3e8a-a913-0d7a97dc1a4a,SESCO,II.1.1,Capital Federal,AR-C,annual,2019,naphtha combustion consumption by freight transport,406.10329759999996,TJ,N2O,0.6,kg/TJ,243.66197855999997,kg -b47e4e89-201d-34a3-bb85-4c7b620d1cc6,SESCO,II.1.1,Chaco,AR-H,annual,2019,naphtha combustion consumption by freight transport,16.3430344,TJ,CO2,73300.0,kg/TJ,1197944.42152,kg -e4d4dc7a-ed2d-3c56-b7e2-43da458e8c93,SESCO,II.1.1,Chaco,AR-H,annual,2019,naphtha combustion consumption by freight transport,16.3430344,TJ,CH4,3.0,kg/TJ,49.0291032,kg -ec750ae9-5d16-396d-8ec4-6ff2dc153f2b,SESCO,II.1.1,Chaco,AR-H,annual,2019,naphtha combustion consumption by freight transport,16.3430344,TJ,N2O,0.6,kg/TJ,9.80582064,kg -171f3b49-41ed-30a5-8818-511df177c2cc,SESCO,II.1.1,Chubut,AR-U,annual,2019,naphtha combustion consumption by freight transport,15.317825599999999,TJ,CO2,73300.0,kg/TJ,1122796.6164799999,kg -c148f96c-2e1a-32f2-903c-e80b80b7b63e,SESCO,II.1.1,Chubut,AR-U,annual,2019,naphtha combustion consumption by freight transport,15.317825599999999,TJ,CH4,3.0,kg/TJ,45.9534768,kg -3f1aeab8-bf29-3010-b42d-7562c209971a,SESCO,II.1.1,Chubut,AR-U,annual,2019,naphtha combustion consumption by freight transport,15.317825599999999,TJ,N2O,0.6,kg/TJ,9.19069536,kg -0ad0d21a-c4c4-3fa6-b144-bec83a358664,SESCO,II.1.1,Corrientes,AR-W,annual,2019,naphtha combustion consumption by freight transport,9.196725999999998,TJ,CO2,73300.0,kg/TJ,674120.0157999998,kg -83a74736-3be6-3683-b828-35dd8bad971d,SESCO,II.1.1,Corrientes,AR-W,annual,2019,naphtha combustion consumption by freight transport,9.196725999999998,TJ,CH4,3.0,kg/TJ,27.590177999999995,kg -116cf07f-f568-34c6-bc97-68b9db743f54,SESCO,II.1.1,Corrientes,AR-W,annual,2019,naphtha combustion consumption by freight transport,9.196725999999998,TJ,N2O,0.6,kg/TJ,5.518035599999998,kg -7fc07cbe-758e-3050-8803-7fddaabb204d,SESCO,II.1.1,Córdoba,AR-X,annual,2019,naphtha combustion consumption by freight transport,55.421581599999996,TJ,CO2,73300.0,kg/TJ,4062401.9312799997,kg -e584bed5-2c86-3fee-b48a-244b180d887a,SESCO,II.1.1,Córdoba,AR-X,annual,2019,naphtha combustion consumption by freight transport,55.421581599999996,TJ,CH4,3.0,kg/TJ,166.2647448,kg -6d6160fe-e5d9-392a-8f25-8650b9d2f9c7,SESCO,II.1.1,Córdoba,AR-X,annual,2019,naphtha combustion consumption by freight transport,55.421581599999996,TJ,N2O,0.6,kg/TJ,33.25294896,kg -52b0e6ae-f6fa-3ea6-9c0b-124b8fe457fe,SESCO,II.1.1,Entre Rios,AR-E,annual,2019,naphtha combustion consumption by freight transport,22.4038276,TJ,CO2,73300.0,kg/TJ,1642200.56308,kg -14a74c26-645d-30d9-b2dd-51745eb7f8ef,SESCO,II.1.1,Entre Rios,AR-E,annual,2019,naphtha combustion consumption by freight transport,22.4038276,TJ,CH4,3.0,kg/TJ,67.2114828,kg -d8bc5772-95a8-3dfc-a726-b3d6c618d925,SESCO,II.1.1,Entre Rios,AR-E,annual,2019,naphtha combustion consumption by freight transport,22.4038276,TJ,N2O,0.6,kg/TJ,13.442296559999999,kg -f1ecc34e-6993-3d6b-9ffd-459fc7be074e,SESCO,II.1.1,Formosa,AR-P,annual,2019,naphtha combustion consumption by freight transport,0.48245119999999997,TJ,CO2,73300.0,kg/TJ,35363.672959999996,kg -c1936796-a91f-3e3e-81e4-fcbe34556a52,SESCO,II.1.1,Formosa,AR-P,annual,2019,naphtha combustion consumption by freight transport,0.48245119999999997,TJ,CH4,3.0,kg/TJ,1.4473536,kg -a3f1c247-8fd4-3129-8e29-8d3631799dc4,SESCO,II.1.1,Formosa,AR-P,annual,2019,naphtha combustion consumption by freight transport,0.48245119999999997,TJ,N2O,0.6,kg/TJ,0.28947071999999996,kg -687c20c7-f087-3726-a96e-28432f602da9,SESCO,II.1.1,Jujuy,AR-Y,annual,2019,naphtha combustion consumption by freight transport,1.7488855999999997,TJ,CO2,73300.0,kg/TJ,128193.31447999997,kg -31569030-42b1-3bc2-b0dc-04d95f421b3d,SESCO,II.1.1,Jujuy,AR-Y,annual,2019,naphtha combustion consumption by freight transport,1.7488855999999997,TJ,CH4,3.0,kg/TJ,5.246656799999999,kg -fda3f718-9fdb-3bce-9d1c-0e93aee032cd,SESCO,II.1.1,Jujuy,AR-Y,annual,2019,naphtha combustion consumption by freight transport,1.7488855999999997,TJ,N2O,0.6,kg/TJ,1.0493313599999998,kg -f2dd88bc-c56b-36d8-9ba7-a81d790fccea,SESCO,II.1.1,La Pampa,AR-L,annual,2019,naphtha combustion consumption by freight transport,5.849720799999999,TJ,CO2,73300.0,kg/TJ,428784.5346399999,kg -4fb4806e-70ad-35c3-9263-89982646feaa,SESCO,II.1.1,La Pampa,AR-L,annual,2019,naphtha combustion consumption by freight transport,5.849720799999999,TJ,CH4,3.0,kg/TJ,17.549162399999997,kg -5366a057-a548-3c5f-98d5-50a452af4042,SESCO,II.1.1,La Pampa,AR-L,annual,2019,naphtha combustion consumption by freight transport,5.849720799999999,TJ,N2O,0.6,kg/TJ,3.5098324799999996,kg -1f4cae38-af4a-3257-b815-bcb5646f04ab,SESCO,II.1.1,La Rioja,AR-F,annual,2019,naphtha combustion consumption by freight transport,0.4221448,TJ,CO2,73300.0,kg/TJ,30943.21384,kg -4a11361c-300e-3f0e-992d-2c07532fad80,SESCO,II.1.1,La Rioja,AR-F,annual,2019,naphtha combustion consumption by freight transport,0.4221448,TJ,CH4,3.0,kg/TJ,1.2664344,kg -c1c8011c-d02c-372b-8831-89874bf2e03e,SESCO,II.1.1,La Rioja,AR-F,annual,2019,naphtha combustion consumption by freight transport,0.4221448,TJ,N2O,0.6,kg/TJ,0.25328688,kg -425e3292-0a94-30ac-b3d2-7050dedc924b,SESCO,II.1.1,Mendoza,AR-M,annual,2019,naphtha combustion consumption by freight transport,31.6307068,TJ,CO2,73300.0,kg/TJ,2318530.80844,kg -e45d11f3-807e-3250-ad0a-fd73625db34a,SESCO,II.1.1,Mendoza,AR-M,annual,2019,naphtha combustion consumption by freight transport,31.6307068,TJ,CH4,3.0,kg/TJ,94.8921204,kg -3ca664ca-926d-3950-8c90-5c922d3d8d2b,SESCO,II.1.1,Mendoza,AR-M,annual,2019,naphtha combustion consumption by freight transport,31.6307068,TJ,N2O,0.6,kg/TJ,18.97842408,kg -4ea373d6-a9de-3620-ac06-9cb9875360c3,SESCO,II.1.1,Misiones,AR-N,annual,2019,naphtha combustion consumption by freight transport,6.3623252,TJ,CO2,73300.0,kg/TJ,466358.43716,kg -11f9ceee-58ef-335a-a67a-ab421e67838b,SESCO,II.1.1,Misiones,AR-N,annual,2019,naphtha combustion consumption by freight transport,6.3623252,TJ,CH4,3.0,kg/TJ,19.0869756,kg -f49c2a9c-864c-3eac-8436-a3d64e70190a,SESCO,II.1.1,Misiones,AR-N,annual,2019,naphtha combustion consumption by freight transport,6.3623252,TJ,N2O,0.6,kg/TJ,3.8173951199999996,kg -f0ba17ac-e1ed-30dc-b726-411cfc2eb07b,SESCO,II.1.1,Neuquén,AR-Q,annual,2019,naphtha combustion consumption by freight transport,10.644079599999998,TJ,CO2,73300.0,kg/TJ,780211.0346799998,kg -458de515-886f-33f4-ad51-2d0ecb09941e,SESCO,II.1.1,Neuquén,AR-Q,annual,2019,naphtha combustion consumption by freight transport,10.644079599999998,TJ,CH4,3.0,kg/TJ,31.932238799999993,kg -230fb3e3-0f91-3000-83ea-927154bb36f3,SESCO,II.1.1,Neuquén,AR-Q,annual,2019,naphtha combustion consumption by freight transport,10.644079599999998,TJ,N2O,0.6,kg/TJ,6.3864477599999985,kg -5a0d43e5-8770-3e62-b50d-6029eabedeea,SESCO,II.1.1,Rio Negro,AR-R,annual,2019,naphtha combustion consumption by freight transport,16.946098399999997,TJ,CO2,73300.0,kg/TJ,1242149.0127199998,kg -1a6595e0-6eaa-3dd4-ac2f-19c753fc7864,SESCO,II.1.1,Rio Negro,AR-R,annual,2019,naphtha combustion consumption by freight transport,16.946098399999997,TJ,CH4,3.0,kg/TJ,50.83829519999999,kg -42e24861-9e04-3271-a994-11925021d190,SESCO,II.1.1,Rio Negro,AR-R,annual,2019,naphtha combustion consumption by freight transport,16.946098399999997,TJ,N2O,0.6,kg/TJ,10.167659039999998,kg -012af64c-b163-35b1-a1f3-454847f611a9,SESCO,II.1.1,Salta,AR-A,annual,2019,naphtha combustion consumption by freight transport,14.5639956,TJ,CO2,73300.0,kg/TJ,1067540.87748,kg -0c61c6f9-2f20-3929-9b6d-f457861b515b,SESCO,II.1.1,Salta,AR-A,annual,2019,naphtha combustion consumption by freight transport,14.5639956,TJ,CH4,3.0,kg/TJ,43.6919868,kg -e7f22e89-efff-350e-89b6-02029995d45e,SESCO,II.1.1,Salta,AR-A,annual,2019,naphtha combustion consumption by freight transport,14.5639956,TJ,N2O,0.6,kg/TJ,8.73839736,kg -43c54726-894a-3957-b7d2-c420dd783365,SESCO,II.1.1,San Juan,AR-J,annual,2019,naphtha combustion consumption by freight transport,3.5279244,TJ,CO2,73300.0,kg/TJ,258596.85851999998,kg -82aeed4e-cf17-333e-955f-682f4db34920,SESCO,II.1.1,San Juan,AR-J,annual,2019,naphtha combustion consumption by freight transport,3.5279244,TJ,CH4,3.0,kg/TJ,10.5837732,kg -a87bca66-a201-34f9-a058-51009ece1ded,SESCO,II.1.1,San Juan,AR-J,annual,2019,naphtha combustion consumption by freight transport,3.5279244,TJ,N2O,0.6,kg/TJ,2.11675464,kg -bdec0316-9ed4-3bfd-bdb6-039f9c041884,SESCO,II.1.1,San Luis,AR-D,annual,2019,naphtha combustion consumption by freight transport,5.0054312,TJ,CO2,73300.0,kg/TJ,366898.10696,kg -ee6d2e85-f168-3a4e-a920-f36628323a8a,SESCO,II.1.1,San Luis,AR-D,annual,2019,naphtha combustion consumption by freight transport,5.0054312,TJ,CH4,3.0,kg/TJ,15.016293600000001,kg -a36e58cc-b064-3187-8be8-f465178b657e,SESCO,II.1.1,San Luis,AR-D,annual,2019,naphtha combustion consumption by freight transport,5.0054312,TJ,N2O,0.6,kg/TJ,3.0032587200000003,kg -2b6b3e6b-a245-3595-bbae-282c0cc6ba74,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2019,naphtha combustion consumption by freight transport,1.9599579999999999,TJ,CO2,73300.0,kg/TJ,143664.9214,kg -356fa336-7ef4-3145-882d-3740b0b6b7c5,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2019,naphtha combustion consumption by freight transport,1.9599579999999999,TJ,CH4,3.0,kg/TJ,5.879873999999999,kg -5a56fe81-4e9c-3a53-95fc-642fab76cbda,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2019,naphtha combustion consumption by freight transport,1.9599579999999999,TJ,N2O,0.6,kg/TJ,1.1759747999999999,kg -9ce8ace1-0ca3-310f-b8ee-dcba77498d89,SESCO,II.1.1,Santa Fe,AR-S,annual,2019,naphtha combustion consumption by freight transport,57.4116928,TJ,CO2,73300.0,kg/TJ,4208277.082239999,kg -14fb2f6e-eaa8-3842-b839-6bb862c6ddde,SESCO,II.1.1,Santa Fe,AR-S,annual,2019,naphtha combustion consumption by freight transport,57.4116928,TJ,CH4,3.0,kg/TJ,172.2350784,kg -3d38ef9a-fbc7-3024-97f9-fe59161bf6c8,SESCO,II.1.1,Santa Fe,AR-S,annual,2019,naphtha combustion consumption by freight transport,57.4116928,TJ,N2O,0.6,kg/TJ,34.44701568,kg -179bb927-f210-326f-a28f-956e7dd8b523,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2019,naphtha combustion consumption by freight transport,0.9347492,TJ,CO2,73300.0,kg/TJ,68517.11636,kg -adab28dc-a8fa-303c-be11-4ab02ff0d76a,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2019,naphtha combustion consumption by freight transport,0.9347492,TJ,CH4,3.0,kg/TJ,2.8042476,kg -3e2e480f-1325-3606-bf6d-121731d0cccf,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2019,naphtha combustion consumption by freight transport,0.9347492,TJ,N2O,0.6,kg/TJ,0.56084952,kg -aba28de0-d333-3b63-b507-32cef12789aa,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2019,naphtha combustion consumption by freight transport,9.076113199999998,TJ,CO2,73300.0,kg/TJ,665279.0975599999,kg -7fc0be46-79e7-37e3-8122-2fa5242983a5,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2019,naphtha combustion consumption by freight transport,9.076113199999998,TJ,CH4,3.0,kg/TJ,27.228339599999995,kg -c40e16db-9b7f-3e27-bc07-c26c13eb0bd3,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2019,naphtha combustion consumption by freight transport,9.076113199999998,TJ,N2O,0.6,kg/TJ,5.445667919999999,kg -65edb57e-6869-3fed-b8d2-1c4c44a90ae6,SESCO,II.1.1,Tucuman,AR-T,annual,2019,naphtha combustion consumption by freight transport,13.0261824,TJ,CO2,73300.0,kg/TJ,954819.16992,kg -561ba686-2d5d-311a-8239-57927ae360ff,SESCO,II.1.1,Tucuman,AR-T,annual,2019,naphtha combustion consumption by freight transport,13.0261824,TJ,CH4,3.0,kg/TJ,39.0785472,kg -b7fd6ef3-cec4-3069-8dae-2e1bb8a9c1f4,SESCO,II.1.1,Tucuman,AR-T,annual,2019,naphtha combustion consumption by freight transport,13.0261824,TJ,N2O,0.6,kg/TJ,7.815709439999999,kg -d856f444-8265-3098-b181-837fe97caba1,SESCO,II.1.1,Buenos Aires,AR-B,annual,2019,naphtha combustion consumption by freight transport,308.7989212,TJ,CO2,73300.0,kg/TJ,22634960.92396,kg -09bfa19f-b1fe-3c45-823e-d4d9e4294b21,SESCO,II.1.1,Buenos Aires,AR-B,annual,2019,naphtha combustion consumption by freight transport,308.7989212,TJ,CH4,3.0,kg/TJ,926.3967636,kg -c60afde7-268a-3b4d-a601-268ff4e1b6c9,SESCO,II.1.1,Buenos Aires,AR-B,annual,2019,naphtha combustion consumption by freight transport,308.7989212,TJ,N2O,0.6,kg/TJ,185.27935272,kg -583e0bb3-4709-34f8-851f-8c6a986bf5cb,SESCO,II.1.1,Capital Federal,AR-C,annual,2019,naphtha combustion consumption by freight transport,511.549038,TJ,CO2,73300.0,kg/TJ,37496544.4854,kg -38953723-c5da-36f9-a110-14327b66ef14,SESCO,II.1.1,Capital Federal,AR-C,annual,2019,naphtha combustion consumption by freight transport,511.549038,TJ,CH4,3.0,kg/TJ,1534.6471139999999,kg -10f7ccb6-468d-389d-824f-dbf4eec60ca0,SESCO,II.1.1,Capital Federal,AR-C,annual,2019,naphtha combustion consumption by freight transport,511.549038,TJ,N2O,0.6,kg/TJ,306.9294228,kg -955af512-17d6-37b0-9697-64613e437e8f,SESCO,II.1.1,Catamarca,AR-K,annual,2019,naphtha combustion consumption by freight transport,0.030153199999999998,TJ,CO2,73300.0,kg/TJ,2210.2295599999998,kg -06d6c389-b8fb-3a8a-adb0-44df03828f72,SESCO,II.1.1,Catamarca,AR-K,annual,2019,naphtha combustion consumption by freight transport,0.030153199999999998,TJ,CH4,3.0,kg/TJ,0.0904596,kg -75215142-5170-3437-9ae4-3b513f5fdebe,SESCO,II.1.1,Catamarca,AR-K,annual,2019,naphtha combustion consumption by freight transport,0.030153199999999998,TJ,N2O,0.6,kg/TJ,0.018091919999999997,kg -9180893e-ef00-3c29-8102-3823d997aa89,SESCO,II.1.1,Chaco,AR-H,annual,2019,naphtha combustion consumption by freight transport,7.9905979999999985,TJ,CO2,73300.0,kg/TJ,585710.8333999999,kg -8889f6a6-e924-3a5c-b567-3e38d632427a,SESCO,II.1.1,Chaco,AR-H,annual,2019,naphtha combustion consumption by freight transport,7.9905979999999985,TJ,CH4,3.0,kg/TJ,23.971793999999996,kg -75c9e347-f79a-310f-8f56-0f1f78ce7d8f,SESCO,II.1.1,Chaco,AR-H,annual,2019,naphtha combustion consumption by freight transport,7.9905979999999985,TJ,N2O,0.6,kg/TJ,4.794358799999999,kg -62ca6b2b-f2ea-3960-9f5c-94c7b6b5e61a,SESCO,II.1.1,Chubut,AR-U,annual,2019,naphtha combustion consumption by freight transport,8.0207512,TJ,CO2,73300.0,kg/TJ,587921.06296,kg -76e29f31-a5a2-3493-a731-20b5384f666c,SESCO,II.1.1,Chubut,AR-U,annual,2019,naphtha combustion consumption by freight transport,8.0207512,TJ,CH4,3.0,kg/TJ,24.0622536,kg -f5fd8c1a-78e3-3ae3-8ba1-fee2b498fb97,SESCO,II.1.1,Chubut,AR-U,annual,2019,naphtha combustion consumption by freight transport,8.0207512,TJ,N2O,0.6,kg/TJ,4.812450719999999,kg -5d6213ba-3b4e-342b-b31d-38ad50f89902,SESCO,II.1.1,Corrientes,AR-W,annual,2019,naphtha combustion consumption by freight transport,10.8249988,TJ,CO2,73300.0,kg/TJ,793472.41204,kg -ccee80d6-ed0a-3011-99a9-2f35d04afd65,SESCO,II.1.1,Corrientes,AR-W,annual,2019,naphtha combustion consumption by freight transport,10.8249988,TJ,CH4,3.0,kg/TJ,32.474996399999995,kg -dedd38b5-8fc9-355e-a89c-2a2eec3403ef,SESCO,II.1.1,Corrientes,AR-W,annual,2019,naphtha combustion consumption by freight transport,10.8249988,TJ,N2O,0.6,kg/TJ,6.494999279999999,kg -9a8373d9-6c57-3d2f-b79a-41eab9a07da3,SESCO,II.1.1,Córdoba,AR-X,annual,2019,naphtha combustion consumption by freight transport,37.9025724,TJ,CO2,73300.0,kg/TJ,2778258.55692,kg -74e10240-b676-3632-bf88-70359cd1fa94,SESCO,II.1.1,Córdoba,AR-X,annual,2019,naphtha combustion consumption by freight transport,37.9025724,TJ,CH4,3.0,kg/TJ,113.70771719999999,kg -aa03418e-df5d-3ab1-a9d5-8a8c4a3b7f1e,SESCO,II.1.1,Córdoba,AR-X,annual,2019,naphtha combustion consumption by freight transport,37.9025724,TJ,N2O,0.6,kg/TJ,22.741543439999997,kg -588f6226-f85d-3af4-b5e1-cf30f4a34e79,SESCO,II.1.1,Entre Rios,AR-E,annual,2019,naphtha combustion consumption by freight transport,25.268381599999998,TJ,CO2,73300.0,kg/TJ,1852172.3712799998,kg -1ff81500-b1de-3b0b-b907-47e2b354b1e8,SESCO,II.1.1,Entre Rios,AR-E,annual,2019,naphtha combustion consumption by freight transport,25.268381599999998,TJ,CH4,3.0,kg/TJ,75.8051448,kg -1a2b96d8-dbbd-3185-81c7-48a0815a3116,SESCO,II.1.1,Entre Rios,AR-E,annual,2019,naphtha combustion consumption by freight transport,25.268381599999998,TJ,N2O,0.6,kg/TJ,15.161028959999998,kg -141d540c-2825-39c8-9343-f3aa921d93e8,SESCO,II.1.1,Formosa,AR-P,annual,2019,naphtha combustion consumption by freight transport,0.39199159999999994,TJ,CO2,73300.0,kg/TJ,28732.984279999997,kg -b9a2a862-dd8b-3543-892b-e162d1f08b5e,SESCO,II.1.1,Formosa,AR-P,annual,2019,naphtha combustion consumption by freight transport,0.39199159999999994,TJ,CH4,3.0,kg/TJ,1.1759747999999999,kg -45239613-3734-3236-9221-d860dfaeb607,SESCO,II.1.1,Formosa,AR-P,annual,2019,naphtha combustion consumption by freight transport,0.39199159999999994,TJ,N2O,0.6,kg/TJ,0.23519495999999995,kg -e0d2fd9b-1738-359b-b038-487163188b86,SESCO,II.1.1,Jujuy,AR-Y,annual,2019,naphtha combustion consumption by freight transport,1.6584259999999997,TJ,CO2,73300.0,kg/TJ,121562.62579999998,kg -b303c860-47bf-33a2-9358-35d10545024b,SESCO,II.1.1,Jujuy,AR-Y,annual,2019,naphtha combustion consumption by freight transport,1.6584259999999997,TJ,CH4,3.0,kg/TJ,4.975277999999999,kg -4e92b258-99d2-300c-8bb2-bd8f48dc9936,SESCO,II.1.1,Jujuy,AR-Y,annual,2019,naphtha combustion consumption by freight transport,1.6584259999999997,TJ,N2O,0.6,kg/TJ,0.9950555999999998,kg -9c60ce00-af85-3b3c-9de0-c28b92e42271,SESCO,II.1.1,La Pampa,AR-L,annual,2019,naphtha combustion consumption by freight transport,4.5832863999999995,TJ,CO2,73300.0,kg/TJ,335954.89311999996,kg -2472567f-de69-392e-8a23-6b8d4065728c,SESCO,II.1.1,La Pampa,AR-L,annual,2019,naphtha combustion consumption by freight transport,4.5832863999999995,TJ,CH4,3.0,kg/TJ,13.7498592,kg -1bba9db9-f3f6-30e8-a5a4-988643b6c9de,SESCO,II.1.1,La Pampa,AR-L,annual,2019,naphtha combustion consumption by freight transport,4.5832863999999995,TJ,N2O,0.6,kg/TJ,2.7499718399999997,kg -d02fe717-a6ee-35c2-9f8c-4589ea2ed232,SESCO,II.1.1,La Rioja,AR-F,annual,2019,naphtha combustion consumption by freight transport,2.7740944,TJ,CO2,73300.0,kg/TJ,203341.11952,kg -43894c84-abe9-3771-85f2-7643c99ae47b,SESCO,II.1.1,La Rioja,AR-F,annual,2019,naphtha combustion consumption by freight transport,2.7740944,TJ,CH4,3.0,kg/TJ,8.322283200000001,kg -f31624eb-890c-3fdd-b91e-d76df2e1e98e,SESCO,II.1.1,La Rioja,AR-F,annual,2019,naphtha combustion consumption by freight transport,2.7740944,TJ,N2O,0.6,kg/TJ,1.66445664,kg -65b11fc5-2c8e-3034-b579-e2908ba88009,SESCO,II.1.1,Mendoza,AR-M,annual,2019,naphtha combustion consumption by freight transport,77.64448999999999,TJ,CO2,73300.0,kg/TJ,5691341.117,kg -e88bb713-1ca8-3cdd-a875-a0e742b71f92,SESCO,II.1.1,Mendoza,AR-M,annual,2019,naphtha combustion consumption by freight transport,77.64448999999999,TJ,CH4,3.0,kg/TJ,232.93346999999997,kg -016a9d82-550a-3288-b486-a111c69f5638,SESCO,II.1.1,Mendoza,AR-M,annual,2019,naphtha combustion consumption by freight transport,77.64448999999999,TJ,N2O,0.6,kg/TJ,46.586693999999994,kg -8e33a9fc-ad3f-3c85-9ec5-6a9feb46b8d5,SESCO,II.1.1,Misiones,AR-N,annual,2019,naphtha combustion consumption by freight transport,8.111210799999998,TJ,CO2,73300.0,kg/TJ,594551.7516399999,kg -3b350cad-76eb-3b49-af2d-12783e30cb66,SESCO,II.1.1,Misiones,AR-N,annual,2019,naphtha combustion consumption by freight transport,8.111210799999998,TJ,CH4,3.0,kg/TJ,24.333632399999995,kg -239d5852-ed08-3092-8270-ade2c9ef325c,SESCO,II.1.1,Misiones,AR-N,annual,2019,naphtha combustion consumption by freight transport,8.111210799999998,TJ,N2O,0.6,kg/TJ,4.866726479999999,kg -b4f26f70-52c8-3880-8c93-7fee4d4cddd0,SESCO,II.1.1,Neuquén,AR-Q,annual,2019,naphtha combustion consumption by freight transport,27.198186399999997,TJ,CO2,73300.0,kg/TJ,1993627.0631199998,kg -2b4bf1dd-7e8d-346b-8e54-8ca71a6e40c1,SESCO,II.1.1,Neuquén,AR-Q,annual,2019,naphtha combustion consumption by freight transport,27.198186399999997,TJ,CH4,3.0,kg/TJ,81.59455919999999,kg -16e3a344-1fbe-3b23-ba09-5a76ceb286b9,SESCO,II.1.1,Neuquén,AR-Q,annual,2019,naphtha combustion consumption by freight transport,27.198186399999997,TJ,N2O,0.6,kg/TJ,16.31891184,kg -ed1ec55c-de2a-3f4b-a606-88f3c0fc8b92,SESCO,II.1.1,Rio Negro,AR-R,annual,2019,naphtha combustion consumption by freight transport,52.7982532,TJ,CO2,73300.0,kg/TJ,3870111.95956,kg -e5e04a1a-ee56-36fc-b938-fafa99720de3,SESCO,II.1.1,Rio Negro,AR-R,annual,2019,naphtha combustion consumption by freight transport,52.7982532,TJ,CH4,3.0,kg/TJ,158.3947596,kg -b0b191e2-e2a5-3b33-a1ea-8e50eea67b60,SESCO,II.1.1,Rio Negro,AR-R,annual,2019,naphtha combustion consumption by freight transport,52.7982532,TJ,N2O,0.6,kg/TJ,31.678951919999996,kg -ed41be0f-72f6-3374-962f-c48bbdc4d4f4,SESCO,II.1.1,Salta,AR-A,annual,2019,naphtha combustion consumption by freight transport,11.066224399999998,TJ,CO2,73300.0,kg/TJ,811154.2485199998,kg -22478907-6cbe-38b2-a947-86ff42678246,SESCO,II.1.1,Salta,AR-A,annual,2019,naphtha combustion consumption by freight transport,11.066224399999998,TJ,CH4,3.0,kg/TJ,33.198673199999995,kg -94bece0f-4879-3428-8208-26b1e9a454d2,SESCO,II.1.1,Salta,AR-A,annual,2019,naphtha combustion consumption by freight transport,11.066224399999998,TJ,N2O,0.6,kg/TJ,6.639734639999999,kg -108e5689-0ca3-3c8d-9dcb-1bf16053946d,SESCO,II.1.1,San Juan,AR-J,annual,2019,naphtha combustion consumption by freight transport,1.6584259999999997,TJ,CO2,73300.0,kg/TJ,121562.62579999998,kg -6a10d598-cd06-340e-977a-02b8925612b8,SESCO,II.1.1,San Juan,AR-J,annual,2019,naphtha combustion consumption by freight transport,1.6584259999999997,TJ,CH4,3.0,kg/TJ,4.975277999999999,kg -6de21e20-1cc6-3ee8-84c8-5f57f2fcae31,SESCO,II.1.1,San Juan,AR-J,annual,2019,naphtha combustion consumption by freight transport,1.6584259999999997,TJ,N2O,0.6,kg/TJ,0.9950555999999998,kg -20ccd393-0efa-3a66-8829-8cfe80ad3370,SESCO,II.1.1,San Luis,AR-D,annual,2019,naphtha combustion consumption by freight transport,4.2817544,TJ,CO2,73300.0,kg/TJ,313852.59751999995,kg -5bccc6cf-abc3-3c3e-bcf7-b975a41a92ec,SESCO,II.1.1,San Luis,AR-D,annual,2019,naphtha combustion consumption by freight transport,4.2817544,TJ,CH4,3.0,kg/TJ,12.845263199999998,kg -9b906334-ede4-3a99-847c-1493b99340e9,SESCO,II.1.1,San Luis,AR-D,annual,2019,naphtha combustion consumption by freight transport,4.2817544,TJ,N2O,0.6,kg/TJ,2.5690526399999998,kg -bd6c5e24-0599-3126-bf09-266b8c9d1ae6,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2019,naphtha combustion consumption by freight transport,1.8694984,TJ,CO2,73300.0,kg/TJ,137034.23272,kg -4674a63a-5fab-3063-8dea-407ecfaf1fbb,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2019,naphtha combustion consumption by freight transport,1.8694984,TJ,CH4,3.0,kg/TJ,5.6084952,kg -15ceed24-d9c7-3ffe-a71c-1e9d6b3579da,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2019,naphtha combustion consumption by freight transport,1.8694984,TJ,N2O,0.6,kg/TJ,1.12169904,kg -35ab2477-aa2b-3ff0-b5ea-6eb4d5a8fb12,SESCO,II.1.1,Santa Fe,AR-S,annual,2019,naphtha combustion consumption by freight transport,76.6795876,TJ,CO2,73300.0,kg/TJ,5620613.77108,kg -f83afb5d-4f5a-3a25-a64c-8cd4254c7988,SESCO,II.1.1,Santa Fe,AR-S,annual,2019,naphtha combustion consumption by freight transport,76.6795876,TJ,CH4,3.0,kg/TJ,230.03876280000003,kg -e7734771-b7a6-3075-8a0d-056bcf6f7b4d,SESCO,II.1.1,Santa Fe,AR-S,annual,2019,naphtha combustion consumption by freight transport,76.6795876,TJ,N2O,0.6,kg/TJ,46.00775256,kg -62e876c3-3c5b-3557-be3e-7e85be000b17,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2019,naphtha combustion consumption by freight transport,1.0855152,TJ,CO2,73300.0,kg/TJ,79568.26415999999,kg -534645d0-8d76-3b1c-9c11-3c863016a6aa,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2019,naphtha combustion consumption by freight transport,1.0855152,TJ,CH4,3.0,kg/TJ,3.2565456,kg -e265f6b2-40d9-3268-8c60-769c221b6d6b,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2019,naphtha combustion consumption by freight transport,1.0855152,TJ,N2O,0.6,kg/TJ,0.65130912,kg -cc2e934f-b7f4-338a-a18c-95059b827311,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2019,naphtha combustion consumption by freight transport,2.9851668,TJ,CO2,73300.0,kg/TJ,218812.72644,kg -0e19db0f-281a-3092-b3a8-859fe30ea97c,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2019,naphtha combustion consumption by freight transport,2.9851668,TJ,CH4,3.0,kg/TJ,8.9555004,kg -0d157e42-2ee5-38dc-9c73-542d76670c49,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2019,naphtha combustion consumption by freight transport,2.9851668,TJ,N2O,0.6,kg/TJ,1.7911000799999999,kg -97f6e12f-3398-3127-8752-eeee0a8af381,SESCO,II.1.1,Tucuman,AR-T,annual,2019,naphtha combustion consumption by freight transport,6.6940104,TJ,CO2,73300.0,kg/TJ,490670.96232,kg -36a83af9-427b-394f-a991-2a05c5466029,SESCO,II.1.1,Tucuman,AR-T,annual,2019,naphtha combustion consumption by freight transport,6.6940104,TJ,CH4,3.0,kg/TJ,20.0820312,kg -1e011ff9-b534-3b3c-981d-0c10b1641c81,SESCO,II.1.1,Tucuman,AR-T,annual,2019,naphtha combustion consumption by freight transport,6.6940104,TJ,N2O,0.6,kg/TJ,4.016406239999999,kg -edb16716-c2ab-3168-9cff-1f897066fe30,SESCO,II.5.1,Buenos Aires,AR-B,annual,2020,naphtha combustion consumption by agriculture machines,2.1347094999999996,TJ,CO2,73300.0,kg/TJ,156474.20634999996,kg -a210d481-fcc0-37b5-8798-9d39b32179ea,SESCO,II.5.1,Buenos Aires,AR-B,annual,2020,naphtha combustion consumption by agriculture machines,2.1347094999999996,TJ,CH4,3.0,kg/TJ,6.404128499999999,kg -f716ea4c-2a78-3ee8-a350-691b08e25251,SESCO,II.5.1,Buenos Aires,AR-B,annual,2020,naphtha combustion consumption by agriculture machines,2.1347094999999996,TJ,N2O,0.6,kg/TJ,1.2808256999999996,kg -496fa859-38d0-3e89-bdd2-dcdecc8e28ac,SESCO,II.5.1,Santa Fe,AR-S,annual,2020,naphtha combustion consumption by agriculture machines,0.9758671999999999,TJ,CO2,73300.0,kg/TJ,71531.06576,kg -310a2706-33a5-347b-aa38-e04fcd35d073,SESCO,II.5.1,Santa Fe,AR-S,annual,2020,naphtha combustion consumption by agriculture machines,0.9758671999999999,TJ,CH4,3.0,kg/TJ,2.9276016,kg -83877439-c79f-3f6e-b1f5-4262e464ae0e,SESCO,II.5.1,Santa Fe,AR-S,annual,2020,naphtha combustion consumption by agriculture machines,0.9758671999999999,TJ,N2O,0.6,kg/TJ,0.58552032,kg -0dc6c3e3-dc9b-3e27-9787-c32c89e3dfd1,SESCO,II.5.1,Buenos Aires,AR-B,annual,2020,naphtha combustion consumption by agriculture machines,0.4574377499999999,TJ,CO2,73300.0,kg/TJ,33530.187074999994,kg -506ccc40-6621-3aa6-bc26-022ac53ce8cf,SESCO,II.5.1,Buenos Aires,AR-B,annual,2020,naphtha combustion consumption by agriculture machines,0.4574377499999999,TJ,CH4,3.0,kg/TJ,1.3723132499999997,kg -7e301896-f868-33ae-bdb4-6a01a4f9a6ed,SESCO,II.5.1,Buenos Aires,AR-B,annual,2020,naphtha combustion consumption by agriculture machines,0.4574377499999999,TJ,N2O,0.6,kg/TJ,0.2744626499999999,kg -d6943575-bfac-3d12-9584-a81b82994f06,SESCO,II.1.1,Buenos Aires,AR-B,annual,2020,naphtha combustion consumption by to the public,507.72540664999997,TJ,CO2,73300.0,kg/TJ,37216272.307445,kg -ccad153a-36fb-3c0f-8f7d-50d165bd3fb3,SESCO,II.1.1,Buenos Aires,AR-B,annual,2020,naphtha combustion consumption by to the public,507.72540664999997,TJ,CH4,3.0,kg/TJ,1523.17621995,kg -7a062cfb-42eb-3b4b-bc4b-009c328341cb,SESCO,II.1.1,Buenos Aires,AR-B,annual,2020,naphtha combustion consumption by to the public,507.72540664999997,TJ,N2O,0.6,kg/TJ,304.63524399,kg -af357875-cc5f-36f7-a348-90a4f522d65e,SESCO,II.1.1,Capital Federal,AR-C,annual,2020,naphtha combustion consumption by to the public,34.682930205,TJ,CO2,73300.0,kg/TJ,2542258.7840265,kg -96097cf5-e764-3cee-95d7-c9d197d8dee8,SESCO,II.1.1,Capital Federal,AR-C,annual,2020,naphtha combustion consumption by to the public,34.682930205,TJ,CH4,3.0,kg/TJ,104.048790615,kg -a9c36747-7485-3469-b214-54af4f1c0c51,SESCO,II.1.1,Capital Federal,AR-C,annual,2020,naphtha combustion consumption by to the public,34.682930205,TJ,N2O,0.6,kg/TJ,20.809758122999998,kg -eda79922-a836-3736-b442-30459b8d0dbf,SESCO,II.1.1,Catamarca,AR-K,annual,2020,naphtha combustion consumption by to the public,54.43509225,TJ,CO2,73300.0,kg/TJ,3990092.2619249998,kg -31e0ea20-5d5e-37b7-94e8-d188f5366880,SESCO,II.1.1,Catamarca,AR-K,annual,2020,naphtha combustion consumption by to the public,54.43509225,TJ,CH4,3.0,kg/TJ,163.30527675,kg -061d7d6b-849a-33f0-9d29-ee49df09df68,SESCO,II.1.1,Catamarca,AR-K,annual,2020,naphtha combustion consumption by to the public,54.43509225,TJ,N2O,0.6,kg/TJ,32.66105535,kg -97dbbf23-7b2f-3368-aa91-ff0359343b99,SESCO,II.1.1,Chaco,AR-H,annual,2020,naphtha combustion consumption by to the public,34.67378144999999,TJ,CO2,73300.0,kg/TJ,2541588.1802849993,kg -8c382c45-872c-3bb1-baa7-577b6d388220,SESCO,II.1.1,Chaco,AR-H,annual,2020,naphtha combustion consumption by to the public,34.67378144999999,TJ,CH4,3.0,kg/TJ,104.02134434999998,kg -e6952d15-46e2-31d3-ad96-7b0e3a0a6521,SESCO,II.1.1,Chaco,AR-H,annual,2020,naphtha combustion consumption by to the public,34.67378144999999,TJ,N2O,0.6,kg/TJ,20.804268869999994,kg -a6cec094-eda9-32d5-8758-a7fea6e49b54,SESCO,II.1.1,Corrientes,AR-W,annual,2020,naphtha combustion consumption by to the public,14.607512149999998,TJ,CO2,73300.0,kg/TJ,1070730.6405949998,kg -b6b9d7a1-cc2c-3185-bfc6-7ad906d5d772,SESCO,II.1.1,Corrientes,AR-W,annual,2020,naphtha combustion consumption by to the public,14.607512149999998,TJ,CH4,3.0,kg/TJ,43.822536449999994,kg -a4fb65a8-ccec-3158-85db-7fe24d90ddf9,SESCO,II.1.1,Corrientes,AR-W,annual,2020,naphtha combustion consumption by to the public,14.607512149999998,TJ,N2O,0.6,kg/TJ,8.76450729,kg -06add737-f9a9-3a7a-a106-8f6be0305def,SESCO,II.1.1,Córdoba,AR-X,annual,2020,naphtha combustion consumption by to the public,217.00236943,TJ,CO2,73300.0,kg/TJ,15906273.679218998,kg -25d98aad-7ad3-314c-95f7-172178d8d2e8,SESCO,II.1.1,Córdoba,AR-X,annual,2020,naphtha combustion consumption by to the public,217.00236943,TJ,CH4,3.0,kg/TJ,651.0071082899999,kg -d5195b0e-21c3-32b1-8c5a-c175707190b7,SESCO,II.1.1,Córdoba,AR-X,annual,2020,naphtha combustion consumption by to the public,217.00236943,TJ,N2O,0.6,kg/TJ,130.201421658,kg -11491ed0-cfda-3a88-9e93-302a29015c0c,SESCO,II.1.1,Entre Rios,AR-E,annual,2020,naphtha combustion consumption by to the public,66.59073805999999,TJ,CO2,73300.0,kg/TJ,4881101.0997979995,kg -81afdeca-2143-3cc5-9137-cdc6a31bae60,SESCO,II.1.1,Entre Rios,AR-E,annual,2020,naphtha combustion consumption by to the public,66.59073805999999,TJ,CH4,3.0,kg/TJ,199.77221418,kg -9be1b4c3-4258-3e33-96a8-ddc154eed77c,SESCO,II.1.1,Entre Rios,AR-E,annual,2020,naphtha combustion consumption by to the public,66.59073805999999,TJ,N2O,0.6,kg/TJ,39.95444283599999,kg -3cae16a8-b523-3399-ba6d-783fa36af248,SESCO,II.1.1,Mendoza,AR-M,annual,2020,naphtha combustion consumption by to the public,174.652782535,TJ,CO2,73300.0,kg/TJ,12802048.9598155,kg -0395b739-1919-3815-957e-ee8afdd377ce,SESCO,II.1.1,Mendoza,AR-M,annual,2020,naphtha combustion consumption by to the public,174.652782535,TJ,CH4,3.0,kg/TJ,523.958347605,kg -2d853f3c-8f9f-3860-904a-13927fbd7390,SESCO,II.1.1,Mendoza,AR-M,annual,2020,naphtha combustion consumption by to the public,174.652782535,TJ,N2O,0.6,kg/TJ,104.791669521,kg -a27624bd-12ca-3dcc-a85a-a17c0967e9db,SESCO,II.1.1,San Juan,AR-J,annual,2020,naphtha combustion consumption by to the public,9.154854169999998,TJ,CO2,73300.0,kg/TJ,671050.8106609999,kg -a5aee5e4-73a3-3e65-96dd-634ea3d57358,SESCO,II.1.1,San Juan,AR-J,annual,2020,naphtha combustion consumption by to the public,9.154854169999998,TJ,CH4,3.0,kg/TJ,27.464562509999993,kg -1eb7a7fe-9499-34db-a11b-07fd7de767a6,SESCO,II.1.1,San Juan,AR-J,annual,2020,naphtha combustion consumption by to the public,9.154854169999998,TJ,N2O,0.6,kg/TJ,5.4929125019999985,kg -32e0d36f-fd84-3013-bc9b-6725e025caea,SESCO,II.1.1,San Luis,AR-D,annual,2020,naphtha combustion consumption by to the public,43.005247669999996,TJ,CO2,73300.0,kg/TJ,3152284.6542109996,kg -fc2bae83-7c9e-33bb-b7bc-13be9d864a44,SESCO,II.1.1,San Luis,AR-D,annual,2020,naphtha combustion consumption by to the public,43.005247669999996,TJ,CH4,3.0,kg/TJ,129.01574301,kg -cc375288-7ad2-3fbb-b078-08d8e6fd7968,SESCO,II.1.1,San Luis,AR-D,annual,2020,naphtha combustion consumption by to the public,43.005247669999996,TJ,N2O,0.6,kg/TJ,25.803148601999997,kg -ad1d3176-7b8c-3c99-92dd-3505987e7db8,SESCO,II.1.1,Santa Fe,AR-S,annual,2020,naphtha combustion consumption by to the public,166.851944105,TJ,CO2,73300.0,kg/TJ,12230247.5028965,kg -7a54f4f2-bef9-3ae5-96d1-834cd564d853,SESCO,II.1.1,Santa Fe,AR-S,annual,2020,naphtha combustion consumption by to the public,166.851944105,TJ,CH4,3.0,kg/TJ,500.555832315,kg -938b9d61-b70d-35b4-b70b-773e51bd0b6a,SESCO,II.1.1,Santa Fe,AR-S,annual,2020,naphtha combustion consumption by to the public,166.851944105,TJ,N2O,0.6,kg/TJ,100.111166463,kg -1813ddff-2dde-3c13-bd9c-f2375f2b5c5e,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2020,naphtha combustion consumption by to the public,42.977801405,TJ,CO2,73300.0,kg/TJ,3150272.8429865,kg -7f7b1654-743f-3b1c-8720-57b4ba9995fe,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2020,naphtha combustion consumption by to the public,42.977801405,TJ,CH4,3.0,kg/TJ,128.933404215,kg -e6a9cae8-d31d-3408-885d-e5b6300b7ee2,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2020,naphtha combustion consumption by to the public,42.977801405,TJ,N2O,0.6,kg/TJ,25.786680843,kg -ba31cdac-1a2d-3cfb-aa56-1443193eb344,SESCO,II.1.1,Tucuman,AR-T,annual,2020,naphtha combustion consumption by to the public,11.801893949999998,TJ,CO2,73300.0,kg/TJ,865078.8265349999,kg -8b48dbfa-a343-3524-94a8-43320d47cca0,SESCO,II.1.1,Tucuman,AR-T,annual,2020,naphtha combustion consumption by to the public,11.801893949999998,TJ,CH4,3.0,kg/TJ,35.40568184999999,kg -4a9b5218-b6e5-3e06-a05a-49cf46a81d65,SESCO,II.1.1,Tucuman,AR-T,annual,2020,naphtha combustion consumption by to the public,11.801893949999998,TJ,N2O,0.6,kg/TJ,7.0811363699999985,kg -ea9c7790-e2f8-3e73-aba5-9cdbe8f4b38f,SESCO,II.1.1,Buenos Aires,AR-B,annual,2020,naphtha combustion consumption by to the public,44.59713104,TJ,CO2,73300.0,kg/TJ,3268969.705232,kg -ad166495-ff04-3f7c-81d7-3c8e379855c1,SESCO,II.1.1,Buenos Aires,AR-B,annual,2020,naphtha combustion consumption by to the public,44.59713104,TJ,CH4,3.0,kg/TJ,133.79139312,kg -38ccee05-df2c-3421-8e85-df83574e70ac,SESCO,II.1.1,Buenos Aires,AR-B,annual,2020,naphtha combustion consumption by to the public,44.59713104,TJ,N2O,0.6,kg/TJ,26.758278624,kg -7fd95cdd-0e23-384e-be16-c91b0b751829,SESCO,II.1.1,Capital Federal,AR-C,annual,2020,naphtha combustion consumption by to the public,5.492302584999999,TJ,CO2,73300.0,kg/TJ,402585.7794804999,kg -8f5c704c-6584-3878-a159-b07823e065ea,SESCO,II.1.1,Capital Federal,AR-C,annual,2020,naphtha combustion consumption by to the public,5.492302584999999,TJ,CH4,3.0,kg/TJ,16.476907755,kg -32d84b8b-07a0-3d0a-b821-b47b69eec523,SESCO,II.1.1,Capital Federal,AR-C,annual,2020,naphtha combustion consumption by to the public,5.492302584999999,TJ,N2O,0.6,kg/TJ,3.2953815509999993,kg -0f9425ce-25c4-3127-aa46-dba4a32bff97,SESCO,II.1.1,Catamarca,AR-K,annual,2020,naphtha combustion consumption by to the public,5.8856990499999995,TJ,CO2,73300.0,kg/TJ,431421.740365,kg -4bf08c3c-5d4f-3382-b4e1-f3a14bfe0a19,SESCO,II.1.1,Catamarca,AR-K,annual,2020,naphtha combustion consumption by to the public,5.8856990499999995,TJ,CH4,3.0,kg/TJ,17.65709715,kg -ea660f9c-7f67-3da2-b84d-72fc434e074c,SESCO,II.1.1,Catamarca,AR-K,annual,2020,naphtha combustion consumption by to the public,5.8856990499999995,TJ,N2O,0.6,kg/TJ,3.5314194299999997,kg -8854ae4c-4755-361f-8ab0-858f9dac7d9b,SESCO,II.1.1,Chaco,AR-H,annual,2020,naphtha combustion consumption by to the public,1.7382634499999998,TJ,CO2,73300.0,kg/TJ,127414.710885,kg -7d84ecf2-218f-3ae9-8fe8-21b9f0fb64ae,SESCO,II.1.1,Chaco,AR-H,annual,2020,naphtha combustion consumption by to the public,1.7382634499999998,TJ,CH4,3.0,kg/TJ,5.2147903499999995,kg -4cfb90ac-a50d-3900-84ca-89a2ca7579d4,SESCO,II.1.1,Chaco,AR-H,annual,2020,naphtha combustion consumption by to the public,1.7382634499999998,TJ,N2O,0.6,kg/TJ,1.0429580699999998,kg -1c82f91a-ea9c-32c2-a9f4-17175bfc849f,SESCO,II.1.1,Corrientes,AR-W,annual,2020,naphtha combustion consumption by to the public,1.0368589,TJ,CO2,73300.0,kg/TJ,76001.75736999999,kg -8187e163-f8b9-3d9b-aec8-947ebcc51d59,SESCO,II.1.1,Corrientes,AR-W,annual,2020,naphtha combustion consumption by to the public,1.0368589,TJ,CH4,3.0,kg/TJ,3.1105766999999998,kg -9c509796-9a1d-3d86-850e-c7150a77a847,SESCO,II.1.1,Corrientes,AR-W,annual,2020,naphtha combustion consumption by to the public,1.0368589,TJ,N2O,0.6,kg/TJ,0.6221153399999999,kg -2f069c92-e754-3950-8261-2ef0206ea0e8,SESCO,II.1.1,Córdoba,AR-X,annual,2020,naphtha combustion consumption by to the public,25.558571884999996,TJ,CO2,73300.0,kg/TJ,1873443.3191704997,kg -974d2fb7-a233-3382-8566-55e4e3a1e8ed,SESCO,II.1.1,Córdoba,AR-X,annual,2020,naphtha combustion consumption by to the public,25.558571884999996,TJ,CH4,3.0,kg/TJ,76.67571565499999,kg -6c9cf30a-1b87-3694-a44c-d15d86637123,SESCO,II.1.1,Córdoba,AR-X,annual,2020,naphtha combustion consumption by to the public,25.558571884999996,TJ,N2O,0.6,kg/TJ,15.335143130999997,kg -fdbedade-5951-3d5d-b439-b7f1c305ea5a,SESCO,II.1.1,Entre Rios,AR-E,annual,2020,naphtha combustion consumption by to the public,5.8856990499999995,TJ,CO2,73300.0,kg/TJ,431421.740365,kg -2e665d50-506a-3598-a956-65e5b8e5d918,SESCO,II.1.1,Entre Rios,AR-E,annual,2020,naphtha combustion consumption by to the public,5.8856990499999995,TJ,CH4,3.0,kg/TJ,17.65709715,kg -a10743ff-0f45-37b0-a6e2-96e09c8dac67,SESCO,II.1.1,Entre Rios,AR-E,annual,2020,naphtha combustion consumption by to the public,5.8856990499999995,TJ,N2O,0.6,kg/TJ,3.5314194299999997,kg -99455c76-ea90-335c-bf28-7bc40357689f,SESCO,II.1.1,Mendoza,AR-M,annual,2020,naphtha combustion consumption by to the public,32.365245605,TJ,CO2,73300.0,kg/TJ,2372372.5028465,kg -39d85a39-3d4c-31b8-9efe-10da87d7f790,SESCO,II.1.1,Mendoza,AR-M,annual,2020,naphtha combustion consumption by to the public,32.365245605,TJ,CH4,3.0,kg/TJ,97.095736815,kg -db78b39d-0f11-3895-935e-3ae7d208a839,SESCO,II.1.1,Mendoza,AR-M,annual,2020,naphtha combustion consumption by to the public,32.365245605,TJ,N2O,0.6,kg/TJ,19.419147362999997,kg -f84c133f-207d-3c42-8e35-bb5ccef059f7,SESCO,II.1.1,San Juan,AR-J,annual,2020,naphtha combustion consumption by to the public,1.619329635,TJ,CO2,73300.0,kg/TJ,118696.8622455,kg -16589388-91bb-3682-82ff-3926fc9f8f69,SESCO,II.1.1,San Juan,AR-J,annual,2020,naphtha combustion consumption by to the public,1.619329635,TJ,CH4,3.0,kg/TJ,4.857988905,kg -027e40d5-949c-3026-815c-276269a520ba,SESCO,II.1.1,San Juan,AR-J,annual,2020,naphtha combustion consumption by to the public,1.619329635,TJ,N2O,0.6,kg/TJ,0.9715977809999999,kg -ddf1ccef-100d-3417-bb5e-e40c71fbfbd9,SESCO,II.1.1,San Luis,AR-D,annual,2020,naphtha combustion consumption by to the public,1.6162800499999999,TJ,CO2,73300.0,kg/TJ,118473.32766499999,kg -b73ecaea-a557-3d44-afca-da8ac07853e6,SESCO,II.1.1,San Luis,AR-D,annual,2020,naphtha combustion consumption by to the public,1.6162800499999999,TJ,CH4,3.0,kg/TJ,4.848840149999999,kg -be60919c-331c-35a0-9e51-3a139597d7e3,SESCO,II.1.1,San Luis,AR-D,annual,2020,naphtha combustion consumption by to the public,1.6162800499999999,TJ,N2O,0.6,kg/TJ,0.9697680299999999,kg -e15f87b9-dc31-36e7-8841-6854398ab768,SESCO,II.1.1,Santa Fe,AR-S,annual,2020,naphtha combustion consumption by to the public,30.102453535,TJ,CO2,73300.0,kg/TJ,2206509.8441155,kg -1602965b-c5ee-3af2-a3ae-6bf69a7a42b6,SESCO,II.1.1,Santa Fe,AR-S,annual,2020,naphtha combustion consumption by to the public,30.102453535,TJ,CH4,3.0,kg/TJ,90.307360605,kg -744525cb-bd64-3133-a596-450fdf45d27b,SESCO,II.1.1,Santa Fe,AR-S,annual,2020,naphtha combustion consumption by to the public,30.102453535,TJ,N2O,0.6,kg/TJ,18.061472120999998,kg -a61e34d8-ef75-3117-bbc9-2bd44b9f3dd1,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2020,naphtha combustion consumption by to the public,4.638418785,TJ,CO2,73300.0,kg/TJ,339996.09694049996,kg -5a9f2fb8-c868-3ced-b8dc-1602b1bcac5c,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2020,naphtha combustion consumption by to the public,4.638418785,TJ,CH4,3.0,kg/TJ,13.915256355,kg -c73ab721-c170-3f55-bb42-917580e7f005,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2020,naphtha combustion consumption by to the public,4.638418785,TJ,N2O,0.6,kg/TJ,2.7830512709999997,kg -e51ec0be-6d4e-3263-a9f1-e0d072c8aceb,SESCO,II.1.1,Tucuman,AR-T,annual,2020,naphtha combustion consumption by to the public,0.4269419,TJ,CO2,73300.0,kg/TJ,31294.841269999997,kg -fc1c3533-d310-3dbe-aaec-4e106e253d06,SESCO,II.1.1,Tucuman,AR-T,annual,2020,naphtha combustion consumption by to the public,0.4269419,TJ,CH4,3.0,kg/TJ,1.2808256999999998,kg -1c7e426a-d319-3bb1-97bd-d524c79b6b98,SESCO,II.1.1,Tucuman,AR-T,annual,2020,naphtha combustion consumption by to the public,0.4269419,TJ,N2O,0.6,kg/TJ,0.25616513999999996,kg -e2aaa73c-a333-3729-8561-08c82bb188f4,SESCO,II.5.1,Chaco,AR-H,annual,2020,naphtha combustion consumption by agriculture machines,13.601149099999999,TJ,CO2,73300.0,kg/TJ,996964.2290299999,kg -21753b3b-eea6-31d4-8527-b5c6aeda1573,SESCO,II.5.1,Chaco,AR-H,annual,2020,naphtha combustion consumption by agriculture machines,13.601149099999999,TJ,CH4,3.0,kg/TJ,40.803447299999995,kg -dbb59380-0806-3b5c-b4d8-e5d016257325,SESCO,II.5.1,Chaco,AR-H,annual,2020,naphtha combustion consumption by agriculture machines,13.601149099999999,TJ,N2O,0.6,kg/TJ,8.160689459999999,kg -7d379187-5727-3f1c-98ee-110eeb37104c,SESCO,II.5.1,Córdoba,AR-X,annual,2020,naphtha combustion consumption by agriculture machines,9.54520105,TJ,CO2,73300.0,kg/TJ,699663.2369649999,kg -e20099e3-fd4f-386c-b408-5098d474de73,SESCO,II.5.1,Córdoba,AR-X,annual,2020,naphtha combustion consumption by agriculture machines,9.54520105,TJ,CH4,3.0,kg/TJ,28.635603149999998,kg -80baf0f1-d30a-3114-9f87-34724d51bdf2,SESCO,II.5.1,Córdoba,AR-X,annual,2020,naphtha combustion consumption by agriculture machines,9.54520105,TJ,N2O,0.6,kg/TJ,5.727120629999999,kg -41776623-f885-3927-a530-7e1badf76fa1,SESCO,II.5.1,Mendoza,AR-M,annual,2020,naphtha combustion consumption by agriculture machines,3.1715684,TJ,CO2,73300.0,kg/TJ,232475.96372,kg -e129fa3b-94a9-3882-ad0d-1d855ba09776,SESCO,II.5.1,Mendoza,AR-M,annual,2020,naphtha combustion consumption by agriculture machines,3.1715684,TJ,CH4,3.0,kg/TJ,9.5147052,kg -da3dc3cc-2062-3743-a2ee-4a94ff4b5c00,SESCO,II.5.1,Mendoza,AR-M,annual,2020,naphtha combustion consumption by agriculture machines,3.1715684,TJ,N2O,0.6,kg/TJ,1.90294104,kg -01106775-4446-35a5-b4b6-f5582d879c59,SESCO,II.5.1,Santa Fe,AR-S,annual,2020,naphtha combustion consumption by agriculture machines,1.43330495,TJ,CO2,73300.0,kg/TJ,105061.25283499999,kg -173dc022-e903-3a01-b5af-e8fa1d20b633,SESCO,II.5.1,Santa Fe,AR-S,annual,2020,naphtha combustion consumption by agriculture machines,1.43330495,TJ,CH4,3.0,kg/TJ,4.2999148499999995,kg -398639e4-93db-3c1b-9085-2a282f919ddb,SESCO,II.5.1,Santa Fe,AR-S,annual,2020,naphtha combustion consumption by agriculture machines,1.43330495,TJ,N2O,0.6,kg/TJ,0.8599829699999999,kg -60ab90d8-7e81-3f7b-80a4-a892455e6480,SESCO,II.5.1,Buenos Aires,AR-B,annual,2020,naphtha combustion consumption by agriculture machines,0.18297509999999997,TJ,CO2,73300.0,kg/TJ,13412.074829999998,kg -9abc71a9-5dcf-35a1-a6ac-1f0015dbbf52,SESCO,II.5.1,Buenos Aires,AR-B,annual,2020,naphtha combustion consumption by agriculture machines,0.18297509999999997,TJ,CH4,3.0,kg/TJ,0.5489253,kg -80045a04-c236-3885-86ef-7b03f63ed9fb,SESCO,II.5.1,Buenos Aires,AR-B,annual,2020,naphtha combustion consumption by agriculture machines,0.18297509999999997,TJ,N2O,0.6,kg/TJ,0.10978505999999998,kg -bb9ad9d2-2d68-3d29-b482-fb129c47d596,SESCO,II.5.1,Chaco,AR-H,annual,2020,naphtha combustion consumption by agriculture machines,0.9758671999999999,TJ,CO2,73300.0,kg/TJ,71531.06576,kg -60217c42-49a0-37ec-91ac-092afd0944cc,SESCO,II.5.1,Chaco,AR-H,annual,2020,naphtha combustion consumption by agriculture machines,0.9758671999999999,TJ,CH4,3.0,kg/TJ,2.9276016,kg -d25cfce4-216f-39f8-b70d-24fac5eed34c,SESCO,II.5.1,Chaco,AR-H,annual,2020,naphtha combustion consumption by agriculture machines,0.9758671999999999,TJ,N2O,0.6,kg/TJ,0.58552032,kg -639764eb-0677-3eb2-aa68-7a60d2271aa4,SESCO,II.5.1,Córdoba,AR-X,annual,2020,naphtha combustion consumption by agriculture machines,0.7623962499999999,TJ,CO2,73300.0,kg/TJ,55883.64512499999,kg -6b599922-aa55-38c0-93d9-28e47bb27d96,SESCO,II.5.1,Córdoba,AR-X,annual,2020,naphtha combustion consumption by agriculture machines,0.7623962499999999,TJ,CH4,3.0,kg/TJ,2.2871887499999994,kg -3331d3a4-5479-3cc0-9690-967934bcdcfc,SESCO,II.5.1,Córdoba,AR-X,annual,2020,naphtha combustion consumption by agriculture machines,0.7623962499999999,TJ,N2O,0.6,kg/TJ,0.4574377499999999,kg -2c2883bf-3e61-357d-802d-caa4fc6a134e,SESCO,II.5.1,Mendoza,AR-M,annual,2020,naphtha combustion consumption by agriculture machines,0.12198339999999999,TJ,CO2,73300.0,kg/TJ,8941.38322,kg -00ffcc57-62b2-32de-b5ff-ee105dc9a78b,SESCO,II.5.1,Mendoza,AR-M,annual,2020,naphtha combustion consumption by agriculture machines,0.12198339999999999,TJ,CH4,3.0,kg/TJ,0.3659502,kg -647d99b2-410f-3c86-a85c-771c8bb1049c,SESCO,II.5.1,Mendoza,AR-M,annual,2020,naphtha combustion consumption by agriculture machines,0.12198339999999999,TJ,N2O,0.6,kg/TJ,0.07319004,kg -69c5d7f7-331d-3018-8215-e9775d06a22d,SESCO,II.1.1,Buenos Aires,AR-B,annual,2020,naphtha combustion consumption by to the public,743.9157648999999,TJ,CO2,73300.0,kg/TJ,54529025.567169994,kg -99ef237c-ab60-3283-8f6f-afd580cd9e1e,SESCO,II.1.1,Buenos Aires,AR-B,annual,2020,naphtha combustion consumption by to the public,743.9157648999999,TJ,CH4,3.0,kg/TJ,2231.7472946999997,kg -98d7f352-0eb9-31df-9640-c01ee4ea1794,SESCO,II.1.1,Buenos Aires,AR-B,annual,2020,naphtha combustion consumption by to the public,743.9157648999999,TJ,N2O,0.6,kg/TJ,446.3494589399999,kg -f08610d9-f753-37cf-8528-12baa1c48c1a,SESCO,II.1.1,Capital Federal,AR-C,annual,2020,naphtha combustion consumption by to the public,138.32917559999999,TJ,CO2,73300.0,kg/TJ,10139528.571479999,kg -f6ffc00e-81e7-3d26-aab3-fd37a8003532,SESCO,II.1.1,Capital Federal,AR-C,annual,2020,naphtha combustion consumption by to the public,138.32917559999999,TJ,CH4,3.0,kg/TJ,414.98752679999996,kg -e081f513-44f3-35e6-8fd8-c25ec914cff8,SESCO,II.1.1,Capital Federal,AR-C,annual,2020,naphtha combustion consumption by to the public,138.32917559999999,TJ,N2O,0.6,kg/TJ,82.99750535999999,kg -6db40a9c-07f6-345d-8f4c-1f48b50fbc7c,SESCO,II.1.1,Catamarca,AR-K,annual,2020,naphtha combustion consumption by to the public,80.6310274,TJ,CO2,73300.0,kg/TJ,5910254.30842,kg -e8d23f0f-ed0d-3d6e-bb8c-3f1767033441,SESCO,II.1.1,Catamarca,AR-K,annual,2020,naphtha combustion consumption by to the public,80.6310274,TJ,CH4,3.0,kg/TJ,241.89308219999998,kg -5cf335e0-47f3-3441-8f36-92b185982815,SESCO,II.1.1,Catamarca,AR-K,annual,2020,naphtha combustion consumption by to the public,80.6310274,TJ,N2O,0.6,kg/TJ,48.378616439999995,kg -860788e2-aee4-3b17-a6a9-12ba05cb52f8,SESCO,II.1.1,Chaco,AR-H,annual,2020,naphtha combustion consumption by to the public,86.27275964999998,TJ,CO2,73300.0,kg/TJ,6323793.282344999,kg -ef3fbc31-a721-3b78-a482-bd70c7f86df4,SESCO,II.1.1,Chaco,AR-H,annual,2020,naphtha combustion consumption by to the public,86.27275964999998,TJ,CH4,3.0,kg/TJ,258.8182789499999,kg -133068db-4e30-3173-be27-fa2a197a4246,SESCO,II.1.1,Chaco,AR-H,annual,2020,naphtha combustion consumption by to the public,86.27275964999998,TJ,N2O,0.6,kg/TJ,51.76365578999999,kg -d93c4791-95d7-30e3-aeb6-2c48070c46f6,SESCO,II.1.1,Corrientes,AR-W,annual,2020,naphtha combustion consumption by to the public,95.23853954999998,TJ,CO2,73300.0,kg/TJ,6980984.949014999,kg -a25d0fca-5abe-3b22-97f0-cb15e2d31a55,SESCO,II.1.1,Corrientes,AR-W,annual,2020,naphtha combustion consumption by to the public,95.23853954999998,TJ,CH4,3.0,kg/TJ,285.71561864999995,kg -2a0acc03-e6b7-3ed3-bfdd-3482514bcba2,SESCO,II.1.1,Corrientes,AR-W,annual,2020,naphtha combustion consumption by to the public,95.23853954999998,TJ,N2O,0.6,kg/TJ,57.14312372999999,kg -89121b8c-71f5-370a-94e1-43f56068d2c3,SESCO,II.1.1,Córdoba,AR-X,annual,2020,naphtha combustion consumption by to the public,348.3235987,TJ,CO2,73300.0,kg/TJ,25532119.784709997,kg -a198af53-f5a9-3d52-82e3-89aa06c45b66,SESCO,II.1.1,Córdoba,AR-X,annual,2020,naphtha combustion consumption by to the public,348.3235987,TJ,CH4,3.0,kg/TJ,1044.9707961,kg -43ab09d3-66da-392f-b173-b263d100d55c,SESCO,II.1.1,Córdoba,AR-X,annual,2020,naphtha combustion consumption by to the public,348.3235987,TJ,N2O,0.6,kg/TJ,208.99415922,kg -b27dd8dd-141d-3d22-ac97-3618f6990ce6,SESCO,II.1.1,Entre Rios,AR-E,annual,2020,naphtha combustion consumption by to the public,74.92830344999999,TJ,CO2,73300.0,kg/TJ,5492244.6428849995,kg -cd471ab8-b08a-3f95-bdce-c949cb6a3577,SESCO,II.1.1,Entre Rios,AR-E,annual,2020,naphtha combustion consumption by to the public,74.92830344999999,TJ,CH4,3.0,kg/TJ,224.78491034999996,kg -76c17f01-77ea-3847-8132-04d545cef938,SESCO,II.1.1,Entre Rios,AR-E,annual,2020,naphtha combustion consumption by to the public,74.92830344999999,TJ,N2O,0.6,kg/TJ,44.95698206999999,kg -16d252d6-c6ad-3cb2-a213-cc566878db0b,SESCO,II.1.1,Formosa,AR-P,annual,2020,naphtha combustion consumption by to the public,68.8596293,TJ,CO2,73300.0,kg/TJ,5047410.82769,kg -48ac599f-9c3f-3048-96e8-d6a33c277672,SESCO,II.1.1,Formosa,AR-P,annual,2020,naphtha combustion consumption by to the public,68.8596293,TJ,CH4,3.0,kg/TJ,206.57888789999998,kg -6492fb60-6a5f-31f4-9c52-cc22bd8c4016,SESCO,II.1.1,Formosa,AR-P,annual,2020,naphtha combustion consumption by to the public,68.8596293,TJ,N2O,0.6,kg/TJ,41.315777579999995,kg -33c8f2d9-59c6-3c60-9653-10a184eea9f7,SESCO,II.1.1,La Rioja,AR-F,annual,2020,naphtha combustion consumption by to the public,38.9736963,TJ,CO2,73300.0,kg/TJ,2856771.93879,kg -745a6b70-29b9-31c0-9304-32a0b3fb490b,SESCO,II.1.1,La Rioja,AR-F,annual,2020,naphtha combustion consumption by to the public,38.9736963,TJ,CH4,3.0,kg/TJ,116.9210889,kg -d505bb99-ee92-3032-82a0-c58303bf934c,SESCO,II.1.1,La Rioja,AR-F,annual,2020,naphtha combustion consumption by to the public,38.9736963,TJ,N2O,0.6,kg/TJ,23.38421778,kg -2c40081f-2e92-3c22-bc3a-5d5295dd16db,SESCO,II.1.1,Mendoza,AR-M,annual,2020,naphtha combustion consumption by to the public,274.55413754999995,TJ,CO2,73300.0,kg/TJ,20124818.282414995,kg -51ba4462-1ff0-3e00-b77f-77e7bc1b44db,SESCO,II.1.1,Mendoza,AR-M,annual,2020,naphtha combustion consumption by to the public,274.55413754999995,TJ,CH4,3.0,kg/TJ,823.6624126499999,kg -b73d31d3-5668-30f6-b5bf-0be5abbbb1eb,SESCO,II.1.1,Mendoza,AR-M,annual,2020,naphtha combustion consumption by to the public,274.55413754999995,TJ,N2O,0.6,kg/TJ,164.73248252999997,kg -1372c5c3-484e-3b81-a23f-6e21d4e29b81,SESCO,II.1.1,Misiones,AR-N,annual,2020,naphtha combustion consumption by to the public,81.21044855,TJ,CO2,73300.0,kg/TJ,5952725.878715,kg -51746e2e-b18d-3c1e-a2d0-fbd457aa56c7,SESCO,II.1.1,Misiones,AR-N,annual,2020,naphtha combustion consumption by to the public,81.21044855,TJ,CH4,3.0,kg/TJ,243.63134565,kg -3ba893e0-a845-39bf-b2fe-817e00c2dc3e,SESCO,II.1.1,Misiones,AR-N,annual,2020,naphtha combustion consumption by to the public,81.21044855,TJ,N2O,0.6,kg/TJ,48.72626913,kg -e4a3a62a-205e-38b7-96c0-4753e3185f77,SESCO,II.1.1,Salta,AR-A,annual,2020,naphtha combustion consumption by to the public,0.18297509999999997,TJ,CO2,73300.0,kg/TJ,13412.074829999998,kg -56b80068-5bba-3cd8-b315-d9010134fb5e,SESCO,II.1.1,Salta,AR-A,annual,2020,naphtha combustion consumption by to the public,0.18297509999999997,TJ,CH4,3.0,kg/TJ,0.5489253,kg -adee5898-ceaf-36df-966f-41100341b82f,SESCO,II.1.1,Salta,AR-A,annual,2020,naphtha combustion consumption by to the public,0.18297509999999997,TJ,N2O,0.6,kg/TJ,0.10978505999999998,kg -c4cec8a2-a825-3978-abd5-75c65e1c3c7e,SESCO,II.1.1,San Juan,AR-J,annual,2020,naphtha combustion consumption by to the public,72.12268524999999,TJ,CO2,73300.0,kg/TJ,5286592.828824999,kg -0e8d2e41-a284-3cad-bac1-967bd49aa4ff,SESCO,II.1.1,San Juan,AR-J,annual,2020,naphtha combustion consumption by to the public,72.12268524999999,TJ,CH4,3.0,kg/TJ,216.36805574999997,kg -2291f2e9-08a4-318b-97e4-0bf7fad86ef7,SESCO,II.1.1,San Juan,AR-J,annual,2020,naphtha combustion consumption by to the public,72.12268524999999,TJ,N2O,0.6,kg/TJ,43.273611149999994,kg -3dbd9401-5fdb-3dad-978d-0a9a45894235,SESCO,II.1.1,San Luis,AR-D,annual,2020,naphtha combustion consumption by to the public,33.88088935,TJ,CO2,73300.0,kg/TJ,2483469.189355,kg -c4e352be-a84c-3ce8-97f9-d485fb3e589e,SESCO,II.1.1,San Luis,AR-D,annual,2020,naphtha combustion consumption by to the public,33.88088935,TJ,CH4,3.0,kg/TJ,101.64266805,kg -f0082968-c2d1-3917-b57f-7f4088c63604,SESCO,II.1.1,San Luis,AR-D,annual,2020,naphtha combustion consumption by to the public,33.88088935,TJ,N2O,0.6,kg/TJ,20.328533609999997,kg -5f00f666-c0c4-3524-a008-3f22b0d16a74,SESCO,II.1.1,Santa Fe,AR-S,annual,2020,naphtha combustion consumption by to the public,239.66688514999998,TJ,CO2,73300.0,kg/TJ,17567582.681495,kg -c5c12a00-0b6e-3cb8-babc-8eaf131f620d,SESCO,II.1.1,Santa Fe,AR-S,annual,2020,naphtha combustion consumption by to the public,239.66688514999998,TJ,CH4,3.0,kg/TJ,719.00065545,kg -68254409-4717-3e56-90e6-3e539bb90339,SESCO,II.1.1,Santa Fe,AR-S,annual,2020,naphtha combustion consumption by to the public,239.66688514999998,TJ,N2O,0.6,kg/TJ,143.80013108999998,kg -28ac7f14-109f-33fe-b54f-1ab0d40168af,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2020,naphtha combustion consumption by to the public,65.0171522,TJ,CO2,73300.0,kg/TJ,4765757.25626,kg -144efe79-f2fa-32b8-82f0-f871cded85eb,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2020,naphtha combustion consumption by to the public,65.0171522,TJ,CH4,3.0,kg/TJ,195.0514566,kg -4f799f12-1b6e-39af-b9eb-131534737b39,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2020,naphtha combustion consumption by to the public,65.0171522,TJ,N2O,0.6,kg/TJ,39.01029132,kg -e4c528e6-9725-3524-a860-027a31f3105b,SESCO,II.1.1,Tucuman,AR-T,annual,2020,naphtha combustion consumption by to the public,27.263289899999997,TJ,CO2,73300.0,kg/TJ,1998399.1496699997,kg -07eb7b5a-78d5-363d-85b1-6d57ca3eece4,SESCO,II.1.1,Tucuman,AR-T,annual,2020,naphtha combustion consumption by to the public,27.263289899999997,TJ,CH4,3.0,kg/TJ,81.7898697,kg -6d1de452-a645-3566-98e6-ab89b6e4a0fe,SESCO,II.1.1,Tucuman,AR-T,annual,2020,naphtha combustion consumption by to the public,27.263289899999997,TJ,N2O,0.6,kg/TJ,16.357973939999997,kg -44573c1f-2697-35a2-be90-0d6b30066536,SESCO,II.1.1,Buenos Aires,AR-B,annual,2020,naphtha combustion consumption by to the public,79.0452432,TJ,CO2,73300.0,kg/TJ,5794016.32656,kg -4b9ba22e-9a45-3d1f-8a7a-e9cf5cf3f287,SESCO,II.1.1,Buenos Aires,AR-B,annual,2020,naphtha combustion consumption by to the public,79.0452432,TJ,CH4,3.0,kg/TJ,237.1357296,kg -98fcc85b-15ed-398e-ac73-51d7c38567cc,SESCO,II.1.1,Buenos Aires,AR-B,annual,2020,naphtha combustion consumption by to the public,79.0452432,TJ,N2O,0.6,kg/TJ,47.42714592,kg -4d684c6e-349b-3e43-a758-b07cbaa9cc81,SESCO,II.1.1,Capital Federal,AR-C,annual,2020,naphtha combustion consumption by to the public,18.7244519,TJ,CO2,73300.0,kg/TJ,1372502.32427,kg -38c0f935-281e-3db0-8c6b-3f14f95d3a27,SESCO,II.1.1,Capital Federal,AR-C,annual,2020,naphtha combustion consumption by to the public,18.7244519,TJ,CH4,3.0,kg/TJ,56.173355699999995,kg -877f3d09-19ac-3bf9-bc1d-c30e183e5640,SESCO,II.1.1,Capital Federal,AR-C,annual,2020,naphtha combustion consumption by to the public,18.7244519,TJ,N2O,0.6,kg/TJ,11.234671139999998,kg -a51c2b04-d703-33d4-b303-1ed727e9ae94,SESCO,II.1.1,Catamarca,AR-K,annual,2020,naphtha combustion consumption by to the public,6.73958285,TJ,CO2,73300.0,kg/TJ,494011.422905,kg -2c02cb38-125b-3d5e-9794-39c5d1aa4c7e,SESCO,II.1.1,Catamarca,AR-K,annual,2020,naphtha combustion consumption by to the public,6.73958285,TJ,CH4,3.0,kg/TJ,20.21874855,kg -fb1dbfcd-e8b4-39dc-8409-43900e40a40a,SESCO,II.1.1,Catamarca,AR-K,annual,2020,naphtha combustion consumption by to the public,6.73958285,TJ,N2O,0.6,kg/TJ,4.043749709999999,kg -93fcbe44-ebe3-37dd-a09d-a4a59f846103,SESCO,II.1.1,Chaco,AR-H,annual,2020,naphtha combustion consumption by to the public,4.1474356,TJ,CO2,73300.0,kg/TJ,304007.02947999997,kg -c1dbfbfe-2202-32bf-85b8-621893956c44,SESCO,II.1.1,Chaco,AR-H,annual,2020,naphtha combustion consumption by to the public,4.1474356,TJ,CH4,3.0,kg/TJ,12.442306799999999,kg -ef6953e2-2ae1-32ce-9492-757de2180201,SESCO,II.1.1,Chaco,AR-H,annual,2020,naphtha combustion consumption by to the public,4.1474356,TJ,N2O,0.6,kg/TJ,2.4884613599999996,kg -03e9e3bb-8462-3843-b618-b326fc01d5b6,SESCO,II.1.1,Corrientes,AR-W,annual,2020,naphtha combustion consumption by to the public,3.9644605,TJ,CO2,73300.0,kg/TJ,290594.95464999997,kg -767064dd-4306-3a1b-8647-a98ce97670bb,SESCO,II.1.1,Corrientes,AR-W,annual,2020,naphtha combustion consumption by to the public,3.9644605,TJ,CH4,3.0,kg/TJ,11.8933815,kg -7dac4cbc-9643-374b-b8ca-d2dbf1f51026,SESCO,II.1.1,Corrientes,AR-W,annual,2020,naphtha combustion consumption by to the public,3.9644605,TJ,N2O,0.6,kg/TJ,2.3786763,kg -0789d970-477a-3d94-802b-fde13424e5cf,SESCO,II.1.1,Córdoba,AR-X,annual,2020,naphtha combustion consumption by to the public,46.6586505,TJ,CO2,73300.0,kg/TJ,3420079.08165,kg -2a8da851-3065-3017-963a-ca721e0cf576,SESCO,II.1.1,Córdoba,AR-X,annual,2020,naphtha combustion consumption by to the public,46.6586505,TJ,CH4,3.0,kg/TJ,139.9759515,kg -65927bad-ab78-3869-bc8c-b01116a6ff76,SESCO,II.1.1,Córdoba,AR-X,annual,2020,naphtha combustion consumption by to the public,46.6586505,TJ,N2O,0.6,kg/TJ,27.9951903,kg -d281a71e-07f7-3d4a-8e5b-49256f045127,SESCO,II.1.1,Entre Rios,AR-E,annual,2020,naphtha combustion consumption by to the public,6.678591149999999,TJ,CO2,73300.0,kg/TJ,489540.73129499995,kg -3637b8ff-e581-3088-9086-7bd90e141346,SESCO,II.1.1,Entre Rios,AR-E,annual,2020,naphtha combustion consumption by to the public,6.678591149999999,TJ,CH4,3.0,kg/TJ,20.035773449999997,kg -e8b3c3c8-138a-346b-8ec1-8acfac647c8c,SESCO,II.1.1,Entre Rios,AR-E,annual,2020,naphtha combustion consumption by to the public,6.678591149999999,TJ,N2O,0.6,kg/TJ,4.007154689999999,kg -36247a3e-6785-3301-b45b-5a2a8a78869a,SESCO,II.1.1,Formosa,AR-P,annual,2020,naphtha combustion consumption by to the public,5.58074055,TJ,CO2,73300.0,kg/TJ,409068.28231499996,kg -4ecd2bb0-17ab-345e-ac4c-41e245492e29,SESCO,II.1.1,Formosa,AR-P,annual,2020,naphtha combustion consumption by to the public,5.58074055,TJ,CH4,3.0,kg/TJ,16.742221649999998,kg -3965f3c6-85b1-39b7-9e69-2f7c33266904,SESCO,II.1.1,Formosa,AR-P,annual,2020,naphtha combustion consumption by to the public,5.58074055,TJ,N2O,0.6,kg/TJ,3.34844433,kg -292bce63-5b02-3e30-8749-f0ee3eed86c4,SESCO,II.1.1,La Rioja,AR-F,annual,2020,naphtha combustion consumption by to the public,4.72685675,TJ,CO2,73300.0,kg/TJ,346478.59977499995,kg -c3684e23-075d-3415-823c-45c97c12612e,SESCO,II.1.1,La Rioja,AR-F,annual,2020,naphtha combustion consumption by to the public,4.72685675,TJ,CH4,3.0,kg/TJ,14.180570249999999,kg -4d22a2e8-4196-3602-b47c-5cd9959d2a44,SESCO,II.1.1,La Rioja,AR-F,annual,2020,naphtha combustion consumption by to the public,4.72685675,TJ,N2O,0.6,kg/TJ,2.8361140499999995,kg -33357609-a169-3465-8d56-3f983507a66e,SESCO,II.1.1,Mendoza,AR-M,annual,2020,naphtha combustion consumption by to the public,17.04718015,TJ,CO2,73300.0,kg/TJ,1249558.304995,kg -c1f6ddd3-82b5-3b26-b53c-048a0ee7a9fe,SESCO,II.1.1,Mendoza,AR-M,annual,2020,naphtha combustion consumption by to the public,17.04718015,TJ,CH4,3.0,kg/TJ,51.141540449999994,kg -e096e9de-0e80-3333-9ad9-94584615c13c,SESCO,II.1.1,Mendoza,AR-M,annual,2020,naphtha combustion consumption by to the public,17.04718015,TJ,N2O,0.6,kg/TJ,10.228308089999999,kg -5c1cb56b-29e4-34ec-8efe-49175a755234,SESCO,II.1.1,Misiones,AR-N,annual,2020,naphtha combustion consumption by to the public,4.2999148499999995,TJ,CO2,73300.0,kg/TJ,315183.758505,kg -679942fd-0a90-30ff-b7df-cdbb33fef334,SESCO,II.1.1,Misiones,AR-N,annual,2020,naphtha combustion consumption by to the public,4.2999148499999995,TJ,CH4,3.0,kg/TJ,12.899744549999998,kg -302c02ab-897a-365b-a73d-eb8aaa8eb98a,SESCO,II.1.1,Misiones,AR-N,annual,2020,naphtha combustion consumption by to the public,4.2999148499999995,TJ,N2O,0.6,kg/TJ,2.5799489099999997,kg -89536d84-5dc6-3abd-a8cf-b409b9d66f1f,SESCO,II.1.1,San Juan,AR-J,annual,2020,naphtha combustion consumption by to the public,8.142391949999999,TJ,CO2,73300.0,kg/TJ,596837.3299349999,kg -3fa05906-b7aa-386f-8bf3-c668059a5788,SESCO,II.1.1,San Juan,AR-J,annual,2020,naphtha combustion consumption by to the public,8.142391949999999,TJ,CH4,3.0,kg/TJ,24.427175849999998,kg -fa6f20cf-af96-37e1-9421-52314a400c65,SESCO,II.1.1,San Juan,AR-J,annual,2020,naphtha combustion consumption by to the public,8.142391949999999,TJ,N2O,0.6,kg/TJ,4.885435169999999,kg -a45bfe65-a832-3717-a325-aac0d52b613d,SESCO,II.1.1,San Luis,AR-D,annual,2020,naphtha combustion consumption by to the public,3.1410725499999996,TJ,CO2,73300.0,kg/TJ,230240.61791499998,kg -3a6a3e31-c360-325d-a005-144b91ae0dfa,SESCO,II.1.1,San Luis,AR-D,annual,2020,naphtha combustion consumption by to the public,3.1410725499999996,TJ,CH4,3.0,kg/TJ,9.423217649999998,kg -0835a42b-4594-36ac-a1b1-44acc8c69518,SESCO,II.1.1,San Luis,AR-D,annual,2020,naphtha combustion consumption by to the public,3.1410725499999996,TJ,N2O,0.6,kg/TJ,1.8846435299999997,kg -d8c03a30-bdb4-38c4-bc2c-f42f181d081c,SESCO,II.1.1,Santa Fe,AR-S,annual,2020,naphtha combustion consumption by to the public,29.519982799999998,TJ,CO2,73300.0,kg/TJ,2163814.73924,kg -1282b510-b039-3307-be14-319d26ba6d6b,SESCO,II.1.1,Santa Fe,AR-S,annual,2020,naphtha combustion consumption by to the public,29.519982799999998,TJ,CH4,3.0,kg/TJ,88.5599484,kg -e947a24a-b5e2-319e-8756-9c535493c2c3,SESCO,II.1.1,Santa Fe,AR-S,annual,2020,naphtha combustion consumption by to the public,29.519982799999998,TJ,N2O,0.6,kg/TJ,17.71198968,kg -38f2cba7-e7b0-3d2c-b26f-95c0a3ca5f60,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2020,naphtha combustion consumption by to the public,6.434624349999999,TJ,CO2,73300.0,kg/TJ,471657.9648549999,kg -faa9b81e-909c-3080-a023-a98651304d9e,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2020,naphtha combustion consumption by to the public,6.434624349999999,TJ,CH4,3.0,kg/TJ,19.303873049999996,kg -3fcc119b-9a18-3338-81eb-30ff2515215a,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2020,naphtha combustion consumption by to the public,6.434624349999999,TJ,N2O,0.6,kg/TJ,3.860774609999999,kg -10841615-b93a-38d7-a9f9-b458be37f28f,SESCO,II.1.1,Tucuman,AR-T,annual,2020,naphtha combustion consumption by to the public,2.8971057499999997,TJ,CO2,73300.0,kg/TJ,212357.85147499997,kg -083b23e8-0efa-38f4-824d-1a0ee765b65f,SESCO,II.1.1,Tucuman,AR-T,annual,2020,naphtha combustion consumption by to the public,2.8971057499999997,TJ,CH4,3.0,kg/TJ,8.691317249999999,kg -2a82136d-7d68-392f-b643-446bd1327309,SESCO,II.1.1,Tucuman,AR-T,annual,2020,naphtha combustion consumption by to the public,2.8971057499999997,TJ,N2O,0.6,kg/TJ,1.7382634499999998,kg -fbafc87e-679e-3409-a891-80a9a93f29d2,SESCO,I.3.1,Buenos Aires,AR-B,annual,2020,naphtha combustion consumption by petrochemical industries,1.2198339999999999,TJ,CO2,73300.0,kg/TJ,89413.83219999999,kg -828f450c-c0bd-367c-b353-a2970289d48b,SESCO,I.3.1,Buenos Aires,AR-B,annual,2020,naphtha combustion consumption by petrochemical industries,1.2198339999999999,TJ,CH4,3.0,kg/TJ,3.659502,kg -aa9c627a-b624-3479-95b0-736070f2c9d3,SESCO,I.3.1,Buenos Aires,AR-B,annual,2020,naphtha combustion consumption by petrochemical industries,1.2198339999999999,TJ,N2O,0.6,kg/TJ,0.7319003999999999,kg -88af06f5-d6d8-367c-a6b1-f87476bddd90,SESCO,II.5.1,Santa Fe,AR-S,annual,2020,naphtha combustion consumption by agriculture machines,31.1667587,TJ,CO2,73300.0,kg/TJ,2284523.41271,kg -e9b9892a-89c1-373f-94fa-f3237bb176e2,SESCO,II.5.1,Santa Fe,AR-S,annual,2020,naphtha combustion consumption by agriculture machines,31.1667587,TJ,CH4,3.0,kg/TJ,93.5002761,kg -3c14daaa-3262-3e91-9012-6c30fa199540,SESCO,II.5.1,Santa Fe,AR-S,annual,2020,naphtha combustion consumption by agriculture machines,31.1667587,TJ,N2O,0.6,kg/TJ,18.70005522,kg -cf8fa7b5-2ce3-3976-8aa5-9dd215db33b8,SESCO,II.5.1,Santa Fe,AR-S,annual,2020,naphtha combustion consumption by agriculture machines,5.94669075,TJ,CO2,73300.0,kg/TJ,435892.431975,kg -cf8737f3-fb05-3e64-9a17-8ad0de301610,SESCO,II.5.1,Santa Fe,AR-S,annual,2020,naphtha combustion consumption by agriculture machines,5.94669075,TJ,CH4,3.0,kg/TJ,17.84007225,kg -fba7a724-49db-3c19-b93b-19405301d300,SESCO,II.5.1,Santa Fe,AR-S,annual,2020,naphtha combustion consumption by agriculture machines,5.94669075,TJ,N2O,0.6,kg/TJ,3.56801445,kg -1fcd5be1-80a8-3d04-b939-8504bc243a8b,SESCO,II.1.1,Buenos Aires,AR-B,annual,2020,naphtha combustion consumption by to the public,8002.172031699999,TJ,CO2,73300.0,kg/TJ,586559209.92361,kg -a0278a63-81c8-30b9-b32f-c1e6f89e7365,SESCO,II.1.1,Buenos Aires,AR-B,annual,2020,naphtha combustion consumption by to the public,8002.172031699999,TJ,CH4,3.0,kg/TJ,24006.516095099996,kg -a809c2cd-960c-396b-826b-4715ffa17b1c,SESCO,II.1.1,Buenos Aires,AR-B,annual,2020,naphtha combustion consumption by to the public,8002.172031699999,TJ,N2O,0.6,kg/TJ,4801.303219019999,kg -23e46a09-1729-3322-8584-e02a6e803b53,SESCO,II.1.1,Capital Federal,AR-C,annual,2020,naphtha combustion consumption by to the public,1876.6536172999997,TJ,CO2,73300.0,kg/TJ,137558710.14808998,kg -4cc64f0d-a8eb-3cfc-9f82-589faa47b418,SESCO,II.1.1,Capital Federal,AR-C,annual,2020,naphtha combustion consumption by to the public,1876.6536172999997,TJ,CH4,3.0,kg/TJ,5629.960851899999,kg -2d5fd66c-b416-36a6-8ddf-a2403f69fc84,SESCO,II.1.1,Capital Federal,AR-C,annual,2020,naphtha combustion consumption by to the public,1876.6536172999997,TJ,N2O,0.6,kg/TJ,1125.9921703799998,kg -7ee8fa86-067f-3bca-a32f-60a08253abe5,SESCO,II.1.1,Catamarca,AR-K,annual,2020,naphtha combustion consumption by to the public,298.27990884999997,TJ,CO2,73300.0,kg/TJ,21863917.318704996,kg -53872a88-5efb-3b72-9d31-9ef04f0962c7,SESCO,II.1.1,Catamarca,AR-K,annual,2020,naphtha combustion consumption by to the public,298.27990884999997,TJ,CH4,3.0,kg/TJ,894.8397265499999,kg -c430d085-c33b-33fa-9a7c-4b4dd210f95d,SESCO,II.1.1,Catamarca,AR-K,annual,2020,naphtha combustion consumption by to the public,298.27990884999997,TJ,N2O,0.6,kg/TJ,178.96794530999998,kg -bfc8a5d4-21ca-3032-8103-52cc0b8e56fe,SESCO,II.1.1,Chaco,AR-H,annual,2020,naphtha combustion consumption by to the public,443.5621382499999,TJ,CO2,73300.0,kg/TJ,32513104.733724993,kg -f26430f8-9a83-35db-8c09-6a9e419083ce,SESCO,II.1.1,Chaco,AR-H,annual,2020,naphtha combustion consumption by to the public,443.5621382499999,TJ,CH4,3.0,kg/TJ,1330.6864147499998,kg -869beaf9-72f9-32cb-ba20-6c3712e31890,SESCO,II.1.1,Chaco,AR-H,annual,2020,naphtha combustion consumption by to the public,443.5621382499999,TJ,N2O,0.6,kg/TJ,266.1372829499999,kg -50585936-8a12-3c3b-8a68-51a5bc74c7d1,SESCO,II.1.1,Chubut,AR-U,annual,2020,naphtha combustion consumption by to the public,1145.6680927999998,TJ,CO2,73300.0,kg/TJ,83977471.20223999,kg -4b290c2d-c6b0-374d-8f59-85fbe2c6c64d,SESCO,II.1.1,Chubut,AR-U,annual,2020,naphtha combustion consumption by to the public,1145.6680927999998,TJ,CH4,3.0,kg/TJ,3437.0042783999997,kg -d1cdb667-3e32-3819-8999-efbbee1b07fa,SESCO,II.1.1,Chubut,AR-U,annual,2020,naphtha combustion consumption by to the public,1145.6680927999998,TJ,N2O,0.6,kg/TJ,687.4008556799998,kg -bfd196f4-6099-36bc-9271-8c2be729eff8,SESCO,II.1.1,Corrientes,AR-W,annual,2020,naphtha combustion consumption by to the public,563.0753743999999,TJ,CO2,73300.0,kg/TJ,41273424.94351999,kg -724f17b1-439a-3924-8d5b-7c550f58bac3,SESCO,II.1.1,Corrientes,AR-W,annual,2020,naphtha combustion consumption by to the public,563.0753743999999,TJ,CH4,3.0,kg/TJ,1689.2261231999996,kg -760f6dbd-5c91-33d6-9392-570209907f6d,SESCO,II.1.1,Corrientes,AR-W,annual,2020,naphtha combustion consumption by to the public,563.0753743999999,TJ,N2O,0.6,kg/TJ,337.8452246399999,kg -393c31d1-8084-3d78-b63c-21024b194977,SESCO,II.1.1,Córdoba,AR-X,annual,2020,naphtha combustion consumption by to the public,1967.4092668999997,TJ,CO2,73300.0,kg/TJ,144211099.26376998,kg -ee14bcba-74c4-3f98-ba0c-4f3f1a57fd44,SESCO,II.1.1,Córdoba,AR-X,annual,2020,naphtha combustion consumption by to the public,1967.4092668999997,TJ,CH4,3.0,kg/TJ,5902.227800699999,kg -c09183c0-9d31-320f-9f73-c5994798bf0f,SESCO,II.1.1,Córdoba,AR-X,annual,2020,naphtha combustion consumption by to the public,1967.4092668999997,TJ,N2O,0.6,kg/TJ,1180.4455601399998,kg -bfb669f1-873b-32b5-b59b-d42c52039993,SESCO,II.1.1,Entre Rios,AR-E,annual,2020,naphtha combustion consumption by to the public,807.8960582,TJ,CO2,73300.0,kg/TJ,59218781.06606,kg -95dd43bb-2aeb-3592-97f6-0dc0ff723400,SESCO,II.1.1,Entre Rios,AR-E,annual,2020,naphtha combustion consumption by to the public,807.8960582,TJ,CH4,3.0,kg/TJ,2423.6881746,kg -1b2df321-25a6-3d5a-bad8-b08597b10c14,SESCO,II.1.1,Entre Rios,AR-E,annual,2020,naphtha combustion consumption by to the public,807.8960582,TJ,N2O,0.6,kg/TJ,484.73763491999995,kg -198bf2c2-e6cb-39a3-b744-974713b6feb4,SESCO,II.1.1,Formosa,AR-P,annual,2020,naphtha combustion consumption by to the public,552.1578601,TJ,CO2,73300.0,kg/TJ,40473171.14533,kg -6b8bbcbd-063e-3f7d-b245-702955af8bf6,SESCO,II.1.1,Formosa,AR-P,annual,2020,naphtha combustion consumption by to the public,552.1578601,TJ,CH4,3.0,kg/TJ,1656.4735802999999,kg -29b3e180-ef5d-3847-857e-987d51018db5,SESCO,II.1.1,Formosa,AR-P,annual,2020,naphtha combustion consumption by to the public,552.1578601,TJ,N2O,0.6,kg/TJ,331.29471606,kg -e92c61a7-08ae-3787-a89f-9d102e5f7d2c,SESCO,II.1.1,Jujuy,AR-Y,annual,2020,naphtha combustion consumption by to the public,188.1593945,TJ,CO2,73300.0,kg/TJ,13792083.61685,kg -61e4185d-cf05-3a36-9e3b-8b44b362d143,SESCO,II.1.1,Jujuy,AR-Y,annual,2020,naphtha combustion consumption by to the public,188.1593945,TJ,CH4,3.0,kg/TJ,564.4781835,kg -7dd6574e-15f4-3800-89f6-3917d11cb490,SESCO,II.1.1,Jujuy,AR-Y,annual,2020,naphtha combustion consumption by to the public,188.1593945,TJ,N2O,0.6,kg/TJ,112.8956367,kg -23246078-fb40-3d74-a636-d6af79fa856d,SESCO,II.1.1,La Pampa,AR-L,annual,2020,naphtha combustion consumption by to the public,141.71421494999998,TJ,CO2,73300.0,kg/TJ,10387651.955835,kg -67d9b9e6-ec13-3aa3-82e9-99fe89c060e5,SESCO,II.1.1,La Pampa,AR-L,annual,2020,naphtha combustion consumption by to the public,141.71421494999998,TJ,CH4,3.0,kg/TJ,425.14264484999995,kg -8849755f-3244-3aba-b73a-9df20a4de0cd,SESCO,II.1.1,La Pampa,AR-L,annual,2020,naphtha combustion consumption by to the public,141.71421494999998,TJ,N2O,0.6,kg/TJ,85.02852896999998,kg -d661ce05-77be-3010-a80a-5d78759c602a,SESCO,II.1.1,La Rioja,AR-F,annual,2020,naphtha combustion consumption by to the public,85.41887584999999,TJ,CO2,73300.0,kg/TJ,6261203.599804999,kg -02fd6333-a043-3f62-82b1-75d96e51cb31,SESCO,II.1.1,La Rioja,AR-F,annual,2020,naphtha combustion consumption by to the public,85.41887584999999,TJ,CH4,3.0,kg/TJ,256.25662754999996,kg -fcd439bc-fa69-3e41-a849-32420599b0df,SESCO,II.1.1,La Rioja,AR-F,annual,2020,naphtha combustion consumption by to the public,85.41887584999999,TJ,N2O,0.6,kg/TJ,51.251325509999994,kg -14cceb36-707f-37b7-9f0b-a346267adadd,SESCO,II.1.1,Mendoza,AR-M,annual,2020,naphtha combustion consumption by to the public,395.28720769999995,TJ,CO2,73300.0,kg/TJ,28974552.324409995,kg -63eb2042-ddbc-3215-9df5-6f0e93016fdb,SESCO,II.1.1,Mendoza,AR-M,annual,2020,naphtha combustion consumption by to the public,395.28720769999995,TJ,CH4,3.0,kg/TJ,1185.8616230999999,kg -3fae47c6-aef1-394f-a098-6842286bee72,SESCO,II.1.1,Mendoza,AR-M,annual,2020,naphtha combustion consumption by to the public,395.28720769999995,TJ,N2O,0.6,kg/TJ,237.17232461999996,kg -8c76d9ff-f17e-3bd8-9411-eda99b2fa74f,SESCO,II.1.1,Misiones,AR-N,annual,2020,naphtha combustion consumption by to the public,793.22755435,TJ,CO2,73300.0,kg/TJ,58143579.733855,kg -30e426a2-eb5b-32a9-bdd3-3f65a3ddeefb,SESCO,II.1.1,Misiones,AR-N,annual,2020,naphtha combustion consumption by to the public,793.22755435,TJ,CH4,3.0,kg/TJ,2379.68266305,kg -cf565948-1cd2-3ff5-8e38-a4b5f3eca71c,SESCO,II.1.1,Misiones,AR-N,annual,2020,naphtha combustion consumption by to the public,793.22755435,TJ,N2O,0.6,kg/TJ,475.93653261,kg -28bbb177-42aa-3f74-97c8-7409a6fcad5e,SESCO,II.1.1,Neuquén,AR-Q,annual,2020,naphtha combustion consumption by to the public,390.98729284999996,TJ,CO2,73300.0,kg/TJ,28659368.565904997,kg -bdc090d0-b0a3-349c-bc3a-6db6d62c210f,SESCO,II.1.1,Neuquén,AR-Q,annual,2020,naphtha combustion consumption by to the public,390.98729284999996,TJ,CH4,3.0,kg/TJ,1172.96187855,kg -48f03f70-cd45-3ea7-a322-667b107ff177,SESCO,II.1.1,Neuquén,AR-Q,annual,2020,naphtha combustion consumption by to the public,390.98729284999996,TJ,N2O,0.6,kg/TJ,234.59237570999997,kg -b747cf84-a0f2-3ff2-b1c7-8f79475d293b,SESCO,II.1.1,Rio Negro,AR-R,annual,2020,naphtha combustion consumption by to the public,543.4360469999999,TJ,CO2,73300.0,kg/TJ,39833862.24509999,kg -c9bf1291-3c4e-34c7-8783-f5aa6cb09f46,SESCO,II.1.1,Rio Negro,AR-R,annual,2020,naphtha combustion consumption by to the public,543.4360469999999,TJ,CH4,3.0,kg/TJ,1630.3081409999998,kg -b2ce3306-d8f8-328a-9555-cafc23e51071,SESCO,II.1.1,Rio Negro,AR-R,annual,2020,naphtha combustion consumption by to the public,543.4360469999999,TJ,N2O,0.6,kg/TJ,326.0616281999999,kg -04a5b417-4e87-3fea-b93d-32e6e3d9b14f,SESCO,II.1.1,Salta,AR-A,annual,2020,naphtha combustion consumption by to the public,148.81974799999998,TJ,CO2,73300.0,kg/TJ,10908487.528399998,kg -dda35151-4b1d-3eef-9de1-e556bc9519eb,SESCO,II.1.1,Salta,AR-A,annual,2020,naphtha combustion consumption by to the public,148.81974799999998,TJ,CH4,3.0,kg/TJ,446.4592439999999,kg -3fce0783-7bb9-3a73-8c78-7087f18ca034,SESCO,II.1.1,Salta,AR-A,annual,2020,naphtha combustion consumption by to the public,148.81974799999998,TJ,N2O,0.6,kg/TJ,89.29184879999998,kg -c94528fe-06ff-3e8a-943f-5214d66f769f,SESCO,II.1.1,San Juan,AR-J,annual,2020,naphtha combustion consumption by to the public,172.63700684999998,TJ,CO2,73300.0,kg/TJ,12654292.602105,kg -386a6181-7faf-3cef-a161-174cdc2aadf3,SESCO,II.1.1,San Juan,AR-J,annual,2020,naphtha combustion consumption by to the public,172.63700684999998,TJ,CH4,3.0,kg/TJ,517.9110205499999,kg -66e4d406-b298-3247-997d-c417c3daeded,SESCO,II.1.1,San Juan,AR-J,annual,2020,naphtha combustion consumption by to the public,172.63700684999998,TJ,N2O,0.6,kg/TJ,103.58220410999998,kg -1938d500-1361-3644-bc60-350ce005a966,SESCO,II.1.1,San Luis,AR-D,annual,2020,naphtha combustion consumption by to the public,481.71244659999996,TJ,CO2,73300.0,kg/TJ,35309522.335779995,kg -ebd02cf8-7747-3332-9b25-f7a954046535,SESCO,II.1.1,San Luis,AR-D,annual,2020,naphtha combustion consumption by to the public,481.71244659999996,TJ,CH4,3.0,kg/TJ,1445.1373397999998,kg -72383d96-9ffa-3c87-93a1-d871a5d26ec4,SESCO,II.1.1,San Luis,AR-D,annual,2020,naphtha combustion consumption by to the public,481.71244659999996,TJ,N2O,0.6,kg/TJ,289.02746795999997,kg -9ad443c4-8db1-334a-b9d2-290474275b58,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2020,naphtha combustion consumption by to the public,693.8110833499999,TJ,CO2,73300.0,kg/TJ,50856352.40955499,kg -9cf3e9f6-2af1-3cd8-bfe6-5cb121171db5,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2020,naphtha combustion consumption by to the public,693.8110833499999,TJ,CH4,3.0,kg/TJ,2081.4332500499995,kg -1aae99b2-935b-373a-924e-afe883a14231,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2020,naphtha combustion consumption by to the public,693.8110833499999,TJ,N2O,0.6,kg/TJ,416.2866500099999,kg -903ad8eb-7eef-381d-9662-635616f55b3b,SESCO,II.1.1,Santa Fe,AR-S,annual,2020,naphtha combustion consumption by to the public,2137.9115642499996,TJ,CO2,73300.0,kg/TJ,156708917.65952498,kg -0e0dfd20-1e01-30a6-9909-e9135cc65cfa,SESCO,II.1.1,Santa Fe,AR-S,annual,2020,naphtha combustion consumption by to the public,2137.9115642499996,TJ,CH4,3.0,kg/TJ,6413.734692749998,kg -cf6a86d3-4684-3967-bb54-b4274be3bb82,SESCO,II.1.1,Santa Fe,AR-S,annual,2020,naphtha combustion consumption by to the public,2137.9115642499996,TJ,N2O,0.6,kg/TJ,1282.7469385499996,kg -c065ae09-c34d-3c9d-a262-06b0eb84bc3b,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2020,naphtha combustion consumption by to the public,277.42074744999996,TJ,CO2,73300.0,kg/TJ,20334940.788085,kg -7c6b3d07-4101-3e8b-9aec-1d5b9b452129,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2020,naphtha combustion consumption by to the public,277.42074744999996,TJ,CH4,3.0,kg/TJ,832.26224235,kg -574fce67-c7c6-373f-a07b-3655329cce03,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2020,naphtha combustion consumption by to the public,277.42074744999996,TJ,N2O,0.6,kg/TJ,166.45244846999998,kg -38cf6ad4-0785-37c6-9970-129ffdea5dab,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2020,naphtha combustion consumption by to the public,98.28812454999998,TJ,CO2,73300.0,kg/TJ,7204519.529514998,kg -a1055c79-ebfa-350b-9ea9-0d50ade6ce18,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2020,naphtha combustion consumption by to the public,98.28812454999998,TJ,CH4,3.0,kg/TJ,294.86437364999995,kg -1683a2be-06bc-3d94-a95a-6c4f05f6af27,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2020,naphtha combustion consumption by to the public,98.28812454999998,TJ,N2O,0.6,kg/TJ,58.97287472999999,kg -9afc63f8-c5e5-37d1-9adb-890a868ecf27,SESCO,II.1.1,Tucuman,AR-T,annual,2020,naphtha combustion consumption by to the public,136.34694535,TJ,CO2,73300.0,kg/TJ,9994231.094155,kg -fbc426f1-28e2-3b1e-9f2b-e86041cfbf9a,SESCO,II.1.1,Tucuman,AR-T,annual,2020,naphtha combustion consumption by to the public,136.34694535,TJ,CH4,3.0,kg/TJ,409.04083605,kg -82702b32-89ab-3724-8f43-37ee7a609fd3,SESCO,II.1.1,Tucuman,AR-T,annual,2020,naphtha combustion consumption by to the public,136.34694535,TJ,N2O,0.6,kg/TJ,81.80816721,kg -e0348597-3ef9-31be-8ffa-38743598d8ec,SESCO,II.1.1,Buenos Aires,AR-B,annual,2020,naphtha combustion consumption by to the public,1922.1839213499998,TJ,CO2,73300.0,kg/TJ,140896081.43495497,kg -80d92b37-8d47-3f06-8126-ef486655b445,SESCO,II.1.1,Buenos Aires,AR-B,annual,2020,naphtha combustion consumption by to the public,1922.1839213499998,TJ,CH4,3.0,kg/TJ,5766.551764049999,kg -a8cef744-206c-3039-8e29-c45a8d555d74,SESCO,II.1.1,Buenos Aires,AR-B,annual,2020,naphtha combustion consumption by to the public,1922.1839213499998,TJ,N2O,0.6,kg/TJ,1153.3103528099998,kg -ab2dc0a9-f1eb-374c-bd15-6f2997e28f37,SESCO,II.1.1,Capital Federal,AR-C,annual,2020,naphtha combustion consumption by to the public,782.55400685,TJ,CO2,73300.0,kg/TJ,57361208.70210499,kg -e8c0376c-6a09-31ed-9b76-c170e11dceba,SESCO,II.1.1,Capital Federal,AR-C,annual,2020,naphtha combustion consumption by to the public,782.55400685,TJ,CH4,3.0,kg/TJ,2347.66202055,kg -501a431c-a973-37a5-9b03-34f0042ad6d4,SESCO,II.1.1,Capital Federal,AR-C,annual,2020,naphtha combustion consumption by to the public,782.55400685,TJ,N2O,0.6,kg/TJ,469.53240410999996,kg -6b04add5-1d23-36a0-828f-34fdb1ff4556,SESCO,II.1.1,Catamarca,AR-K,annual,2020,naphtha combustion consumption by to the public,82.82672859999998,TJ,CO2,73300.0,kg/TJ,6071199.2063799985,kg -9295ce36-90bd-3b72-b2a6-8806c9aff90f,SESCO,II.1.1,Catamarca,AR-K,annual,2020,naphtha combustion consumption by to the public,82.82672859999998,TJ,CH4,3.0,kg/TJ,248.48018579999996,kg -be844f63-5e27-3f66-a334-f5831208ef32,SESCO,II.1.1,Catamarca,AR-K,annual,2020,naphtha combustion consumption by to the public,82.82672859999998,TJ,N2O,0.6,kg/TJ,49.69603715999999,kg -f2df78e6-7f1d-3768-9f1d-e1a125574e75,SESCO,II.1.1,Chaco,AR-H,annual,2020,naphtha combustion consumption by to the public,55.41095945,TJ,CO2,73300.0,kg/TJ,4061623.327685,kg -64a89231-738c-3167-8aae-3d32155658cd,SESCO,II.1.1,Chaco,AR-H,annual,2020,naphtha combustion consumption by to the public,55.41095945,TJ,CH4,3.0,kg/TJ,166.23287835,kg -d34cf5c4-75c2-3089-8942-512502df94cb,SESCO,II.1.1,Chaco,AR-H,annual,2020,naphtha combustion consumption by to the public,55.41095945,TJ,N2O,0.6,kg/TJ,33.24657567,kg -d927dc81-0d5f-39cb-a756-7385129535ad,SESCO,II.1.1,Chubut,AR-U,annual,2020,naphtha combustion consumption by to the public,185.07931365,TJ,CO2,73300.0,kg/TJ,13566313.690544998,kg -c828b5ac-6307-3c40-9c38-44da3b8f1f72,SESCO,II.1.1,Chubut,AR-U,annual,2020,naphtha combustion consumption by to the public,185.07931365,TJ,CH4,3.0,kg/TJ,555.2379409499999,kg -28ab2293-1e4c-328a-a961-b47487a24875,SESCO,II.1.1,Chubut,AR-U,annual,2020,naphtha combustion consumption by to the public,185.07931365,TJ,N2O,0.6,kg/TJ,111.04758818999998,kg -e974aa46-ce9b-3204-af88-b7f8356297b6,SESCO,II.1.1,Corrientes,AR-W,annual,2020,naphtha combustion consumption by to the public,101.76465144999999,TJ,CO2,73300.0,kg/TJ,7459348.951284999,kg -2fc3a4aa-1ad4-3d3a-8e62-c91d8911516e,SESCO,II.1.1,Corrientes,AR-W,annual,2020,naphtha combustion consumption by to the public,101.76465144999999,TJ,CH4,3.0,kg/TJ,305.29395435,kg -89580b59-edc3-39fc-bc4f-94da32ac1f24,SESCO,II.1.1,Corrientes,AR-W,annual,2020,naphtha combustion consumption by to the public,101.76465144999999,TJ,N2O,0.6,kg/TJ,61.05879086999999,kg -c5d6d99a-2e75-3103-a992-92046f21435b,SESCO,II.1.1,Córdoba,AR-X,annual,2020,naphtha combustion consumption by to the public,463.7198951,TJ,CO2,73300.0,kg/TJ,33990668.31083,kg -0a0cd8f9-60a7-38f1-acd5-600ae058f5a0,SESCO,II.1.1,Córdoba,AR-X,annual,2020,naphtha combustion consumption by to the public,463.7198951,TJ,CH4,3.0,kg/TJ,1391.1596852999999,kg -5197d861-898d-32c8-aa43-1d0bd58cf4fb,SESCO,II.1.1,Córdoba,AR-X,annual,2020,naphtha combustion consumption by to the public,463.7198951,TJ,N2O,0.6,kg/TJ,278.23193705999995,kg -7db6d286-94ea-39bf-8a8f-6bf984152e66,SESCO,II.1.1,Entre Rios,AR-E,annual,2020,naphtha combustion consumption by to the public,168.82502559999998,TJ,CO2,73300.0,kg/TJ,12374874.376479998,kg -8a9dbd75-1c63-3bc5-907d-38db96e87069,SESCO,II.1.1,Entre Rios,AR-E,annual,2020,naphtha combustion consumption by to the public,168.82502559999998,TJ,CH4,3.0,kg/TJ,506.4750767999999,kg -a8266d91-f18d-3397-bd08-c126a2324cdd,SESCO,II.1.1,Entre Rios,AR-E,annual,2020,naphtha combustion consumption by to the public,168.82502559999998,TJ,N2O,0.6,kg/TJ,101.29501535999998,kg -adc0354d-4266-3284-b973-5ad9efa521db,SESCO,II.1.1,Formosa,AR-P,annual,2020,naphtha combustion consumption by to the public,127.50314884999999,TJ,CO2,73300.0,kg/TJ,9345980.810704999,kg -9f2b801e-1885-3182-b9d5-a1b2db1c2491,SESCO,II.1.1,Formosa,AR-P,annual,2020,naphtha combustion consumption by to the public,127.50314884999999,TJ,CH4,3.0,kg/TJ,382.50944654999995,kg -79a4f14c-9e70-38c5-b115-71bb70be2dde,SESCO,II.1.1,Formosa,AR-P,annual,2020,naphtha combustion consumption by to the public,127.50314884999999,TJ,N2O,0.6,kg/TJ,76.50188931,kg -163ff492-787f-3477-8344-cdf6dfe15118,SESCO,II.1.1,Jujuy,AR-Y,annual,2020,naphtha combustion consumption by to the public,38.57725024999999,TJ,CO2,73300.0,kg/TJ,2827712.4433249994,kg -67e5da44-1851-341d-9ddb-e5e73f1ed57e,SESCO,II.1.1,Jujuy,AR-Y,annual,2020,naphtha combustion consumption by to the public,38.57725024999999,TJ,CH4,3.0,kg/TJ,115.73175074999997,kg -3f9ba786-3b2e-3857-a4f6-4d4d19c74a45,SESCO,II.1.1,Jujuy,AR-Y,annual,2020,naphtha combustion consumption by to the public,38.57725024999999,TJ,N2O,0.6,kg/TJ,23.146350149999993,kg -7c36538d-a16d-3275-a5dc-5e12d2ac51b2,SESCO,II.1.1,La Pampa,AR-L,annual,2020,naphtha combustion consumption by to the public,44.73741195,TJ,CO2,73300.0,kg/TJ,3279252.2959350003,kg -cd73a5ca-6a5d-3136-87ec-25aff6e91875,SESCO,II.1.1,La Pampa,AR-L,annual,2020,naphtha combustion consumption by to the public,44.73741195,TJ,CH4,3.0,kg/TJ,134.21223585,kg -13753836-b419-32bc-9786-b45dd29b4795,SESCO,II.1.1,La Pampa,AR-L,annual,2020,naphtha combustion consumption by to the public,44.73741195,TJ,N2O,0.6,kg/TJ,26.84244717,kg -c1378bfa-0e41-3158-b127-e28568f51846,SESCO,II.1.1,La Rioja,AR-F,annual,2020,naphtha combustion consumption by to the public,20.706682149999995,TJ,CO2,73300.0,kg/TJ,1517799.8015949996,kg -719bad9d-767f-3b43-a62e-999ada330bac,SESCO,II.1.1,La Rioja,AR-F,annual,2020,naphtha combustion consumption by to the public,20.706682149999995,TJ,CH4,3.0,kg/TJ,62.12004644999999,kg -b984c96c-d98b-3b24-a366-5a1833675a4b,SESCO,II.1.1,La Rioja,AR-F,annual,2020,naphtha combustion consumption by to the public,20.706682149999995,TJ,N2O,0.6,kg/TJ,12.424009289999997,kg -e77887c2-b635-35a4-bdc7-cd78a317120f,SESCO,II.1.1,Mendoza,AR-M,annual,2020,naphtha combustion consumption by to the public,136.59091214999998,TJ,CO2,73300.0,kg/TJ,10012113.860594999,kg -15908b16-7384-3a31-942b-2634ed2f95ad,SESCO,II.1.1,Mendoza,AR-M,annual,2020,naphtha combustion consumption by to the public,136.59091214999998,TJ,CH4,3.0,kg/TJ,409.7727364499999,kg -b799d7f2-8c58-3f2e-b852-84f26fa48745,SESCO,II.1.1,Mendoza,AR-M,annual,2020,naphtha combustion consumption by to the public,136.59091214999998,TJ,N2O,0.6,kg/TJ,81.95454728999998,kg -5cc795bd-7d88-389f-b5d4-708cae810db0,SESCO,II.1.1,Misiones,AR-N,annual,2020,naphtha combustion consumption by to the public,109.6630766,TJ,CO2,73300.0,kg/TJ,8038303.51478,kg -aa3fc7a9-0455-3c2f-8ca0-14848ebcc17e,SESCO,II.1.1,Misiones,AR-N,annual,2020,naphtha combustion consumption by to the public,109.6630766,TJ,CH4,3.0,kg/TJ,328.9892298,kg -494a1cac-9de1-3234-a6a8-6be4160307e7,SESCO,II.1.1,Misiones,AR-N,annual,2020,naphtha combustion consumption by to the public,109.6630766,TJ,N2O,0.6,kg/TJ,65.79784595999999,kg -15d4fd39-d20a-3f57-bad3-277bfeb648b9,SESCO,II.1.1,Neuquén,AR-Q,annual,2020,naphtha combustion consumption by to the public,134.94413624999999,TJ,CO2,73300.0,kg/TJ,9891405.187125,kg -becc9448-05c4-3f09-add0-e0f26d0f04e6,SESCO,II.1.1,Neuquén,AR-Q,annual,2020,naphtha combustion consumption by to the public,134.94413624999999,TJ,CH4,3.0,kg/TJ,404.83240874999996,kg -d451552e-f6b7-329c-9e5d-2e51acdc0406,SESCO,II.1.1,Neuquén,AR-Q,annual,2020,naphtha combustion consumption by to the public,134.94413624999999,TJ,N2O,0.6,kg/TJ,80.96648174999999,kg -d55b506c-c05e-3e24-bb1f-851eca50613a,SESCO,II.1.1,Rio Negro,AR-R,annual,2020,naphtha combustion consumption by to the public,171.93560229999997,TJ,CO2,73300.0,kg/TJ,12602879.648589998,kg -5b46d17f-3bbe-350a-b629-505eebbee3c6,SESCO,II.1.1,Rio Negro,AR-R,annual,2020,naphtha combustion consumption by to the public,171.93560229999997,TJ,CH4,3.0,kg/TJ,515.8068068999999,kg -612f2837-0dd9-3a5d-a3ba-7a6b9ef1d025,SESCO,II.1.1,Rio Negro,AR-R,annual,2020,naphtha combustion consumption by to the public,171.93560229999997,TJ,N2O,0.6,kg/TJ,103.16136137999997,kg -a9778032-1386-3f19-8cad-7a0e63c19b26,SESCO,II.1.1,Salta,AR-A,annual,2020,naphtha combustion consumption by to the public,19.669823249999997,TJ,CO2,73300.0,kg/TJ,1441798.0442249998,kg -35f2fea5-0ec9-310c-9ee0-4b4e6a81a759,SESCO,II.1.1,Salta,AR-A,annual,2020,naphtha combustion consumption by to the public,19.669823249999997,TJ,CH4,3.0,kg/TJ,59.009469749999994,kg -4f34c671-91a5-357c-9b8d-5e28fb950871,SESCO,II.1.1,Salta,AR-A,annual,2020,naphtha combustion consumption by to the public,19.669823249999997,TJ,N2O,0.6,kg/TJ,11.801893949999998,kg -dbb48a16-568e-3615-a316-e6697e130c73,SESCO,II.1.1,San Juan,AR-J,annual,2020,naphtha combustion consumption by to the public,30.9837836,TJ,CO2,73300.0,kg/TJ,2271111.33788,kg -cfa51e45-d031-31ff-84d1-b4584b6a5158,SESCO,II.1.1,San Juan,AR-J,annual,2020,naphtha combustion consumption by to the public,30.9837836,TJ,CH4,3.0,kg/TJ,92.9513508,kg -414c1176-5634-312f-9f23-2050d1bb711f,SESCO,II.1.1,San Juan,AR-J,annual,2020,naphtha combustion consumption by to the public,30.9837836,TJ,N2O,0.6,kg/TJ,18.59027016,kg -2d7fb519-8315-3fb0-ae7a-efbf8b892200,SESCO,II.1.1,San Luis,AR-D,annual,2020,naphtha combustion consumption by to the public,92.40242549999998,TJ,CO2,73300.0,kg/TJ,6773097.789149999,kg -9f7c857b-1760-3e75-b121-f91575e43313,SESCO,II.1.1,San Luis,AR-D,annual,2020,naphtha combustion consumption by to the public,92.40242549999998,TJ,CH4,3.0,kg/TJ,277.2072764999999,kg -062e1226-6f1e-33b7-af74-ce576a6a7f4d,SESCO,II.1.1,San Luis,AR-D,annual,2020,naphtha combustion consumption by to the public,92.40242549999998,TJ,N2O,0.6,kg/TJ,55.44145529999999,kg -d1b84d12-63ae-3f09-8c95-49b24d057d94,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2020,naphtha combustion consumption by to the public,76.33111255,TJ,CO2,73300.0,kg/TJ,5595070.549915,kg -9d2bc92c-32c4-3cdd-a3a7-e2181fac7f39,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2020,naphtha combustion consumption by to the public,76.33111255,TJ,CH4,3.0,kg/TJ,228.99333765,kg -03edabcf-1952-37da-b2f9-974eae3f9f3c,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2020,naphtha combustion consumption by to the public,76.33111255,TJ,N2O,0.6,kg/TJ,45.798667529999996,kg -ed58f81c-5b77-3d78-8e2b-6f5acc818f2e,SESCO,II.1.1,Santa Fe,AR-S,annual,2020,naphtha combustion consumption by to the public,552.7067854,TJ,CO2,73300.0,kg/TJ,40513407.36982,kg -86f4880a-e0be-3101-8328-1fa0d86f6f09,SESCO,II.1.1,Santa Fe,AR-S,annual,2020,naphtha combustion consumption by to the public,552.7067854,TJ,CH4,3.0,kg/TJ,1658.1203561999998,kg -d6d1165d-95c0-36f3-93b0-0cbe3325d876,SESCO,II.1.1,Santa Fe,AR-S,annual,2020,naphtha combustion consumption by to the public,552.7067854,TJ,N2O,0.6,kg/TJ,331.62407124,kg -43cc3096-8809-3b31-a320-e64cb2fae7a1,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2020,naphtha combustion consumption by to the public,73.12904829999998,TJ,CO2,73300.0,kg/TJ,5360359.240389998,kg -b38fb1f7-ddad-3bd7-84b3-85220360cda4,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2020,naphtha combustion consumption by to the public,73.12904829999998,TJ,CH4,3.0,kg/TJ,219.38714489999995,kg -be8a08b1-1bc1-332d-97e0-005601a8a060,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2020,naphtha combustion consumption by to the public,73.12904829999998,TJ,N2O,0.6,kg/TJ,43.87742897999998,kg -163bfa75-fc29-3810-bb13-13af07dbee9a,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2020,naphtha combustion consumption by to the public,23.0548626,TJ,CO2,73300.0,kg/TJ,1689921.42858,kg -685d6f2d-db32-3da3-8ae3-5103f00935e1,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2020,naphtha combustion consumption by to the public,23.0548626,TJ,CH4,3.0,kg/TJ,69.16458779999999,kg -c7ec7ea5-2c46-3219-9043-6deedf7c780a,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2020,naphtha combustion consumption by to the public,23.0548626,TJ,N2O,0.6,kg/TJ,13.83291756,kg -e497513a-aaef-31e6-912c-18e34f64d604,SESCO,II.1.1,Tucuman,AR-T,annual,2020,naphtha combustion consumption by to the public,23.237837699999996,TJ,CO2,73300.0,kg/TJ,1703333.5034099997,kg -ccdd1530-de16-325a-b4a7-2a09898e7e1c,SESCO,II.1.1,Tucuman,AR-T,annual,2020,naphtha combustion consumption by to the public,23.237837699999996,TJ,CH4,3.0,kg/TJ,69.71351309999999,kg -627c623e-c462-3556-bc91-69c268895519,SESCO,II.1.1,Tucuman,AR-T,annual,2020,naphtha combustion consumption by to the public,23.237837699999996,TJ,N2O,0.6,kg/TJ,13.942702619999997,kg -0d495663-e764-31c4-83d7-73f3e0fd1203,SESCO,II.1.1,Buenos Aires,AR-B,annual,2020,naphtha combustion consumption by freight transport,9.972142949999999,TJ,CO2,73300.0,kg/TJ,730958.0782349999,kg -5e19063a-d209-3daf-aa7d-c47264c38aed,SESCO,II.1.1,Buenos Aires,AR-B,annual,2020,naphtha combustion consumption by freight transport,9.972142949999999,TJ,CH4,3.0,kg/TJ,29.916428849999996,kg -1cd8f62f-b136-3c8e-9db4-75a21ef7dda1,SESCO,II.1.1,Buenos Aires,AR-B,annual,2020,naphtha combustion consumption by freight transport,9.972142949999999,TJ,N2O,0.6,kg/TJ,5.983285769999999,kg -c9b30c49-f505-3ffe-b56f-f7e13fdb9d3f,SESCO,II.1.1,Capital Federal,AR-C,annual,2020,naphtha combustion consumption by freight transport,3.4765268999999996,TJ,CO2,73300.0,kg/TJ,254829.42177,kg -4b26beeb-adfa-3e53-9fb8-2c1c8b612896,SESCO,II.1.1,Capital Federal,AR-C,annual,2020,naphtha combustion consumption by freight transport,3.4765268999999996,TJ,CH4,3.0,kg/TJ,10.429580699999999,kg -03c3f223-28c5-304e-abaa-1c532ec3738e,SESCO,II.1.1,Capital Federal,AR-C,annual,2020,naphtha combustion consumption by freight transport,3.4765268999999996,TJ,N2O,0.6,kg/TJ,2.0859161399999997,kg -4c5e4979-b368-39a2-b526-af76cb9b82e9,SESCO,II.1.1,Córdoba,AR-X,annual,2020,naphtha combustion consumption by freight transport,1.18933815,TJ,CO2,73300.0,kg/TJ,87178.486395,kg -6d6efe4d-dd89-324e-9128-113a0fd912c5,SESCO,II.1.1,Córdoba,AR-X,annual,2020,naphtha combustion consumption by freight transport,1.18933815,TJ,CH4,3.0,kg/TJ,3.5680144499999997,kg -83180483-64f5-321f-b916-e5f5889f8af9,SESCO,II.1.1,Córdoba,AR-X,annual,2020,naphtha combustion consumption by freight transport,1.18933815,TJ,N2O,0.6,kg/TJ,0.71360289,kg -895c44f0-edf7-322f-9cca-dcb3c0a45157,SESCO,II.1.1,Entre Rios,AR-E,annual,2020,naphtha combustion consumption by freight transport,0.33545434999999996,TJ,CO2,73300.0,kg/TJ,24588.803855,kg -aaa2edef-1865-3fee-a07c-d12769b4d6b4,SESCO,II.1.1,Entre Rios,AR-E,annual,2020,naphtha combustion consumption by freight transport,0.33545434999999996,TJ,CH4,3.0,kg/TJ,1.0063630499999998,kg -28be7187-a6f7-3abd-b056-ce6ba0aa0575,SESCO,II.1.1,Entre Rios,AR-E,annual,2020,naphtha combustion consumption by freight transport,0.33545434999999996,TJ,N2O,0.6,kg/TJ,0.20127260999999996,kg -24d9cd3f-a60f-378c-a1cf-fa69829bff65,SESCO,II.1.1,Jujuy,AR-Y,annual,2020,naphtha combustion consumption by freight transport,0.030495849999999998,TJ,CO2,73300.0,kg/TJ,2235.345805,kg -a03871f8-083c-3afd-b4c0-0fba3ef4d022,SESCO,II.1.1,Jujuy,AR-Y,annual,2020,naphtha combustion consumption by freight transport,0.030495849999999998,TJ,CH4,3.0,kg/TJ,0.09148755,kg -c001fb4a-7dc0-3bba-9d9f-b00c7f1ba396,SESCO,II.1.1,Jujuy,AR-Y,annual,2020,naphtha combustion consumption by freight transport,0.030495849999999998,TJ,N2O,0.6,kg/TJ,0.01829751,kg -07bf4c21-9d17-39a0-b1ed-2d64204299e7,SESCO,II.1.1,Mendoza,AR-M,annual,2020,naphtha combustion consumption by freight transport,0.15247924999999998,TJ,CO2,73300.0,kg/TJ,11176.729024999999,kg -8c8d3aed-a741-3cb5-8b9f-3721f304a69f,SESCO,II.1.1,Mendoza,AR-M,annual,2020,naphtha combustion consumption by freight transport,0.15247924999999998,TJ,CH4,3.0,kg/TJ,0.45743775,kg -439d25c9-a258-3613-83d7-53f465a7a472,SESCO,II.1.1,Mendoza,AR-M,annual,2020,naphtha combustion consumption by freight transport,0.15247924999999998,TJ,N2O,0.6,kg/TJ,0.09148754999999999,kg -1a2185e8-7eee-3697-b668-ce9ac0f46496,SESCO,II.1.1,Santa Fe,AR-S,annual,2020,naphtha combustion consumption by freight transport,1.25032985,TJ,CO2,73300.0,kg/TJ,91649.178005,kg -74b5d93a-63cb-3f3c-989f-81048c0ca766,SESCO,II.1.1,Santa Fe,AR-S,annual,2020,naphtha combustion consumption by freight transport,1.25032985,TJ,CH4,3.0,kg/TJ,3.75098955,kg -ebaab00c-0418-3265-bea8-9e456e2b304b,SESCO,II.1.1,Santa Fe,AR-S,annual,2020,naphtha combustion consumption by freight transport,1.25032985,TJ,N2O,0.6,kg/TJ,0.7501979099999999,kg -5e26a57e-780a-3fdd-a8f3-738690215b39,SESCO,II.1.1,Buenos Aires,AR-B,annual,2020,naphtha combustion consumption by freight transport,5.82470735,TJ,CO2,73300.0,kg/TJ,426951.048755,kg -c90cebdc-5f2d-3f7e-bf51-8ae5a5d41604,SESCO,II.1.1,Buenos Aires,AR-B,annual,2020,naphtha combustion consumption by freight transport,5.82470735,TJ,CH4,3.0,kg/TJ,17.47412205,kg -10ff6de4-d3b6-3a3c-8b4c-68d492739e10,SESCO,II.1.1,Buenos Aires,AR-B,annual,2020,naphtha combustion consumption by freight transport,5.82470735,TJ,N2O,0.6,kg/TJ,3.4948244099999997,kg -ce03238c-0ae6-342e-a746-117d899987b5,SESCO,II.1.1,Capital Federal,AR-C,annual,2020,naphtha combustion consumption by freight transport,2.5006597,TJ,CO2,73300.0,kg/TJ,183298.35601,kg -9fb5b976-35a3-3bb9-9fbe-15e760f65a93,SESCO,II.1.1,Capital Federal,AR-C,annual,2020,naphtha combustion consumption by freight transport,2.5006597,TJ,CH4,3.0,kg/TJ,7.5019791,kg -d139c820-2106-3e9b-b3b3-c33d0d9a9f5e,SESCO,II.1.1,Capital Federal,AR-C,annual,2020,naphtha combustion consumption by freight transport,2.5006597,TJ,N2O,0.6,kg/TJ,1.5003958199999998,kg -9eabbcf1-4071-3646-aa66-c10cbf1eea17,SESCO,II.1.1,Corrientes,AR-W,annual,2020,naphtha combustion consumption by freight transport,0.24396679999999998,TJ,CO2,73300.0,kg/TJ,17882.76644,kg -d9ff7fab-7c8c-35ba-b7dc-da6206551d8d,SESCO,II.1.1,Corrientes,AR-W,annual,2020,naphtha combustion consumption by freight transport,0.24396679999999998,TJ,CH4,3.0,kg/TJ,0.7319004,kg -a538552f-09cc-3a6c-8e5c-14d095ba38a2,SESCO,II.1.1,Corrientes,AR-W,annual,2020,naphtha combustion consumption by freight transport,0.24396679999999998,TJ,N2O,0.6,kg/TJ,0.14638008,kg -0b5ff98b-e979-3666-a472-2d985a9bf902,SESCO,II.1.1,Córdoba,AR-X,annual,2020,naphtha combustion consumption by freight transport,0.7014045499999999,TJ,CO2,73300.0,kg/TJ,51412.953514999994,kg -6a074983-d9ba-3052-bda8-d489591afa16,SESCO,II.1.1,Córdoba,AR-X,annual,2020,naphtha combustion consumption by freight transport,0.7014045499999999,TJ,CH4,3.0,kg/TJ,2.1042136499999997,kg -b66b9664-ceaf-3793-a546-1d456fba80c8,SESCO,II.1.1,Córdoba,AR-X,annual,2020,naphtha combustion consumption by freight transport,0.7014045499999999,TJ,N2O,0.6,kg/TJ,0.42084272999999994,kg -460207ca-b356-36d1-a81c-caa45f0815c5,SESCO,II.1.1,Entre Rios,AR-E,annual,2020,naphtha combustion consumption by freight transport,0.7928921,TJ,CO2,73300.0,kg/TJ,58118.99093,kg -17d55e14-999b-3bfb-adc0-16e1b34b00fe,SESCO,II.1.1,Entre Rios,AR-E,annual,2020,naphtha combustion consumption by freight transport,0.7928921,TJ,CH4,3.0,kg/TJ,2.3786763,kg -8062ad2e-c97d-38d6-b6e0-7834dc1fbe6a,SESCO,II.1.1,Entre Rios,AR-E,annual,2020,naphtha combustion consumption by freight transport,0.7928921,TJ,N2O,0.6,kg/TJ,0.47573526,kg -f7e0aa60-26d8-30ad-bb30-1f01c5f8f253,SESCO,II.1.1,Santa Fe,AR-S,annual,2020,naphtha combustion consumption by freight transport,1.2808257,TJ,CO2,73300.0,kg/TJ,93884.52381,kg -6f2a9c4a-84e2-378d-9872-35cb8d0d3e7f,SESCO,II.1.1,Santa Fe,AR-S,annual,2020,naphtha combustion consumption by freight transport,1.2808257,TJ,CH4,3.0,kg/TJ,3.8424771,kg -35585c1e-cc48-3caa-897d-5c5e9826e374,SESCO,II.1.1,Santa Fe,AR-S,annual,2020,naphtha combustion consumption by freight transport,1.2808257,TJ,N2O,0.6,kg/TJ,0.76849542,kg -0c850a87-33b9-3303-8ec6-b672a3af62fb,SESCO,II.1.1,Santa Fe,AR-S,annual,2020,naphtha combustion consumption by public passenger transport,0.09148754999999999,TJ,CO2,73300.0,kg/TJ,6706.037414999999,kg -4831fd76-8a18-3768-93e8-327618d2e671,SESCO,II.1.1,Santa Fe,AR-S,annual,2020,naphtha combustion consumption by public passenger transport,0.09148754999999999,TJ,CH4,3.0,kg/TJ,0.27446265,kg -1ecfdfca-e882-3cd0-bbe1-27a1ce3f9d5e,SESCO,II.1.1,Santa Fe,AR-S,annual,2020,naphtha combustion consumption by public passenger transport,0.09148754999999999,TJ,N2O,0.6,kg/TJ,0.05489252999999999,kg -c6675373-8b71-3717-aac5-0061a59e1ebc,SESCO,II.1.1,Córdoba,AR-X,annual,2020,naphtha combustion consumption by public passenger transport,0.030495849999999998,TJ,CO2,73300.0,kg/TJ,2235.345805,kg -c5fc2307-7d22-3ee6-aeef-e06556b157ed,SESCO,II.1.1,Córdoba,AR-X,annual,2020,naphtha combustion consumption by public passenger transport,0.030495849999999998,TJ,CH4,3.0,kg/TJ,0.09148755,kg -016009af-de36-383e-aebf-c33ed5a905af,SESCO,II.1.1,Córdoba,AR-X,annual,2020,naphtha combustion consumption by public passenger transport,0.030495849999999998,TJ,N2O,0.6,kg/TJ,0.01829751,kg -65a27237-3408-3aa2-a95f-34238f3924d8,SESCO,II.1.1,Catamarca,AR-K,annual,2020,naphtha combustion consumption by to the public,148.78925214999998,TJ,CO2,73300.0,kg/TJ,10906252.182594998,kg -320bd552-30ff-327c-9e19-f09de3515f79,SESCO,II.1.1,Catamarca,AR-K,annual,2020,naphtha combustion consumption by to the public,148.78925214999998,TJ,CH4,3.0,kg/TJ,446.36775644999994,kg -baaf8811-09a6-330c-813f-89577bb6e120,SESCO,II.1.1,Catamarca,AR-K,annual,2020,naphtha combustion consumption by to the public,148.78925214999998,TJ,N2O,0.6,kg/TJ,89.27355128999999,kg -e70f0b8f-1a59-384a-bb26-51050b03bbaf,SESCO,II.1.1,Chaco,AR-H,annual,2020,naphtha combustion consumption by to the public,102.1610975,TJ,CO2,73300.0,kg/TJ,7488408.44675,kg -a2d27910-d4df-343f-aa5c-d77a68445711,SESCO,II.1.1,Chaco,AR-H,annual,2020,naphtha combustion consumption by to the public,102.1610975,TJ,CH4,3.0,kg/TJ,306.4832925,kg -9e27358a-ff64-3673-a1c9-c5f6c50a8341,SESCO,II.1.1,Chaco,AR-H,annual,2020,naphtha combustion consumption by to the public,102.1610975,TJ,N2O,0.6,kg/TJ,61.29665849999999,kg -5cd0a7b5-f263-3907-849d-06425222d9ab,SESCO,II.1.1,Jujuy,AR-Y,annual,2020,naphtha combustion consumption by to the public,345.88393069999995,TJ,CO2,73300.0,kg/TJ,25353292.120309997,kg -511b2ca7-6ae8-3f0a-a713-5c5c0b5d49cb,SESCO,II.1.1,Jujuy,AR-Y,annual,2020,naphtha combustion consumption by to the public,345.88393069999995,TJ,CH4,3.0,kg/TJ,1037.6517921,kg -b1ee87f1-7589-3703-9f8d-16cd84d28c88,SESCO,II.1.1,Jujuy,AR-Y,annual,2020,naphtha combustion consumption by to the public,345.88393069999995,TJ,N2O,0.6,kg/TJ,207.53035841999997,kg -600553c8-2778-3853-b8d4-c2f73fd748f7,SESCO,II.1.1,La Rioja,AR-F,annual,2020,naphtha combustion consumption by to the public,331.48988949999995,TJ,CO2,73300.0,kg/TJ,24298208.900349997,kg -10995f1b-6ac2-3e24-aa6f-3d2a86913276,SESCO,II.1.1,La Rioja,AR-F,annual,2020,naphtha combustion consumption by to the public,331.48988949999995,TJ,CH4,3.0,kg/TJ,994.4696684999999,kg -9a521a28-5316-38bc-bc2b-e6718700e6ae,SESCO,II.1.1,La Rioja,AR-F,annual,2020,naphtha combustion consumption by to the public,331.48988949999995,TJ,N2O,0.6,kg/TJ,198.89393369999996,kg -caaeb323-ca53-3f04-9d2d-21dc94dceb96,SESCO,II.1.1,Salta,AR-A,annual,2020,naphtha combustion consumption by to the public,804.5305361939999,TJ,CO2,73300.0,kg/TJ,58972088.30302019,kg -4e2db3f3-24b4-3a1e-bce9-378e58054f49,SESCO,II.1.1,Salta,AR-A,annual,2020,naphtha combustion consumption by to the public,804.5305361939999,TJ,CH4,3.0,kg/TJ,2413.5916085819995,kg -39694b1f-b5dd-3f58-a6ab-aa2b952bdfe3,SESCO,II.1.1,Salta,AR-A,annual,2020,naphtha combustion consumption by to the public,804.5305361939999,TJ,N2O,0.6,kg/TJ,482.7183217163999,kg -55feace2-7182-3157-b99f-1612fed88592,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2020,naphtha combustion consumption by to the public,252.59712555,TJ,CO2,73300.0,kg/TJ,18515369.302814998,kg -81d7edc0-e127-38e4-8a2b-419d4cb8a56b,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2020,naphtha combustion consumption by to the public,252.59712555,TJ,CH4,3.0,kg/TJ,757.79137665,kg -adf0537f-6913-3013-912c-74d1c7a3bdb7,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2020,naphtha combustion consumption by to the public,252.59712555,TJ,N2O,0.6,kg/TJ,151.55827533,kg -c4779078-2ad4-3f26-9637-32462f03d609,SESCO,II.1.1,Tucuman,AR-T,annual,2020,naphtha combustion consumption by to the public,1674.0998766414998,TJ,CO2,73300.0,kg/TJ,122711520.95782194,kg -ade0de58-46c7-3f70-8566-cef839711994,SESCO,II.1.1,Tucuman,AR-T,annual,2020,naphtha combustion consumption by to the public,1674.0998766414998,TJ,CH4,3.0,kg/TJ,5022.2996299245,kg -a8d7e8d9-ad8b-3ffc-a119-e1f5a75420d6,SESCO,II.1.1,Tucuman,AR-T,annual,2020,naphtha combustion consumption by to the public,1674.0998766414998,TJ,N2O,0.6,kg/TJ,1004.4599259848999,kg -f5a02ffd-6ced-37f3-bb17-111c0a02c339,SESCO,II.1.1,Catamarca,AR-K,annual,2020,naphtha combustion consumption by to the public,13.997595149999999,TJ,CO2,73300.0,kg/TJ,1026023.7244949999,kg -668a4a0a-d28e-3192-8f1e-155c808799ec,SESCO,II.1.1,Catamarca,AR-K,annual,2020,naphtha combustion consumption by to the public,13.997595149999999,TJ,CH4,3.0,kg/TJ,41.99278545,kg -fde5e91e-270c-33e2-90e3-db425aa9db4a,SESCO,II.1.1,Catamarca,AR-K,annual,2020,naphtha combustion consumption by to the public,13.997595149999999,TJ,N2O,0.6,kg/TJ,8.398557089999999,kg -89f6677a-330b-3a5c-bb5f-23f990498d16,SESCO,II.1.1,Chaco,AR-H,annual,2020,naphtha combustion consumption by to the public,2.9580974499999995,TJ,CO2,73300.0,kg/TJ,216828.54308499995,kg -68d34671-1cd3-387b-a353-fb3af6451d39,SESCO,II.1.1,Chaco,AR-H,annual,2020,naphtha combustion consumption by to the public,2.9580974499999995,TJ,CH4,3.0,kg/TJ,8.874292349999997,kg -152bbab4-f623-3b03-92e9-0f6e6c5a5b4f,SESCO,II.1.1,Chaco,AR-H,annual,2020,naphtha combustion consumption by to the public,2.9580974499999995,TJ,N2O,0.6,kg/TJ,1.7748584699999996,kg -f64407bb-5fec-3d7e-9029-4fba486347fa,SESCO,II.1.1,Jujuy,AR-Y,annual,2020,naphtha combustion consumption by to the public,17.41313035,TJ,CO2,73300.0,kg/TJ,1276382.454655,kg -57722c69-b14d-3192-be65-14c67d388164,SESCO,II.1.1,Jujuy,AR-Y,annual,2020,naphtha combustion consumption by to the public,17.41313035,TJ,CH4,3.0,kg/TJ,52.239391049999995,kg -89119d67-54af-355f-822c-53ac336a4e7d,SESCO,II.1.1,Jujuy,AR-Y,annual,2020,naphtha combustion consumption by to the public,17.41313035,TJ,N2O,0.6,kg/TJ,10.447878209999999,kg -b62a3296-bc09-32c2-b023-b9f16d3f4a8d,SESCO,II.1.1,La Rioja,AR-F,annual,2020,naphtha combustion consumption by to the public,27.537752549999997,TJ,CO2,73300.0,kg/TJ,2018517.2619149997,kg -0f8e2d7c-dc83-3161-b0a8-7078404b25e4,SESCO,II.1.1,La Rioja,AR-F,annual,2020,naphtha combustion consumption by to the public,27.537752549999997,TJ,CH4,3.0,kg/TJ,82.61325765,kg -f462c0ab-90df-3252-b1f5-31a2d964c23c,SESCO,II.1.1,La Rioja,AR-F,annual,2020,naphtha combustion consumption by to the public,27.537752549999997,TJ,N2O,0.6,kg/TJ,16.522651529999997,kg -3c958530-335f-39e4-893f-0b10553724ea,SESCO,II.1.1,Salta,AR-A,annual,2020,naphtha combustion consumption by to the public,41.329195754,TJ,CO2,73300.0,kg/TJ,3029430.0487682,kg -ff6bb5cc-876d-3c61-9df4-090d015d1816,SESCO,II.1.1,Salta,AR-A,annual,2020,naphtha combustion consumption by to the public,41.329195754,TJ,CH4,3.0,kg/TJ,123.98758726199999,kg -9af2dce0-7b23-3dd8-b2e6-e304b66cf945,SESCO,II.1.1,Salta,AR-A,annual,2020,naphtha combustion consumption by to the public,41.329195754,TJ,N2O,0.6,kg/TJ,24.797517452399997,kg -890b7e31-db06-3651-bfdd-5e3b9ad93590,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2020,naphtha combustion consumption by to the public,24.488167549999996,TJ,CO2,73300.0,kg/TJ,1794982.6814149998,kg -7b94b54f-1020-372e-8101-74726b9254fa,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2020,naphtha combustion consumption by to the public,24.488167549999996,TJ,CH4,3.0,kg/TJ,73.46450264999999,kg -e1ff9f70-5bf4-3c6f-88ce-3f916459c23a,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2020,naphtha combustion consumption by to the public,24.488167549999996,TJ,N2O,0.6,kg/TJ,14.692900529999998,kg -052187c5-363b-3bae-98a3-2434aff64c55,SESCO,II.1.1,Tucuman,AR-T,annual,2020,naphtha combustion consumption by to the public,122.75159046149999,TJ,CO2,73300.0,kg/TJ,8997691.58082795,kg -70225cbd-eebb-3466-9469-f0b7b3aeb56e,SESCO,II.1.1,Tucuman,AR-T,annual,2020,naphtha combustion consumption by to the public,122.75159046149999,TJ,CH4,3.0,kg/TJ,368.2547713845,kg -1eacf7d0-62b8-37fd-975b-12f83de6b5c3,SESCO,II.1.1,Tucuman,AR-T,annual,2020,naphtha combustion consumption by to the public,122.75159046149999,TJ,N2O,0.6,kg/TJ,73.6509542769,kg -97c9785b-3207-3551-a974-ebb17c484a46,SESCO,I.3.1,Jujuy,AR-Y,annual,2020,naphtha combustion consumption by petrochemical industries,3.08008085,TJ,CO2,73300.0,kg/TJ,225769.926305,kg -c1fe0dc1-908b-3416-82b6-56dcac4cd5e4,SESCO,I.3.1,Jujuy,AR-Y,annual,2020,naphtha combustion consumption by petrochemical industries,3.08008085,TJ,CH4,3.0,kg/TJ,9.24024255,kg -94808c5b-71dc-377a-b42c-bdcad7cf6854,SESCO,I.3.1,Jujuy,AR-Y,annual,2020,naphtha combustion consumption by petrochemical industries,3.08008085,TJ,N2O,0.6,kg/TJ,1.84804851,kg -48fcdc59-1163-34f1-8586-ff5d934ba18e,SESCO,II.5.1,Buenos Aires,AR-B,annual,2020,naphtha combustion consumption by agriculture machines,1.1283464499999998,TJ,CO2,73300.0,kg/TJ,82707.79478499999,kg -2e13dead-9fe4-3e3e-aa3e-3f2a0ecb27e3,SESCO,II.5.1,Buenos Aires,AR-B,annual,2020,naphtha combustion consumption by agriculture machines,1.1283464499999998,TJ,CH4,3.0,kg/TJ,3.3850393499999996,kg -0736514d-76f9-3b32-8102-6d576ae7a03d,SESCO,II.5.1,Buenos Aires,AR-B,annual,2020,naphtha combustion consumption by agriculture machines,1.1283464499999998,TJ,N2O,0.6,kg/TJ,0.6770078699999998,kg -489ca91b-e276-3bcf-aa01-408cf472a946,SESCO,II.5.1,Santa Fe,AR-S,annual,2020,naphtha combustion consumption by agriculture machines,0.82338795,TJ,CO2,73300.0,kg/TJ,60354.336735,kg -d5210230-88ef-3b7a-b0be-df2a18a1c83d,SESCO,II.5.1,Santa Fe,AR-S,annual,2020,naphtha combustion consumption by agriculture machines,0.82338795,TJ,CH4,3.0,kg/TJ,2.47016385,kg -0b584a0b-ce92-3982-82e7-e402b262ac38,SESCO,II.5.1,Santa Fe,AR-S,annual,2020,naphtha combustion consumption by agriculture machines,0.82338795,TJ,N2O,0.6,kg/TJ,0.49403276999999995,kg -0dc6c3e3-dc9b-3e27-9787-c32c89e3dfd1,SESCO,II.5.1,Buenos Aires,AR-B,annual,2020,naphtha combustion consumption by agriculture machines,0.4574377499999999,TJ,CO2,73300.0,kg/TJ,33530.187074999994,kg -506ccc40-6621-3aa6-bc26-022ac53ce8cf,SESCO,II.5.1,Buenos Aires,AR-B,annual,2020,naphtha combustion consumption by agriculture machines,0.4574377499999999,TJ,CH4,3.0,kg/TJ,1.3723132499999997,kg -7e301896-f868-33ae-bdb4-6a01a4f9a6ed,SESCO,II.5.1,Buenos Aires,AR-B,annual,2020,naphtha combustion consumption by agriculture machines,0.4574377499999999,TJ,N2O,0.6,kg/TJ,0.2744626499999999,kg -e9944c4c-5aa1-3ab3-9571-daa29bc45a1f,SESCO,II.5.1,Santa Fe,AR-S,annual,2020,naphtha combustion consumption by agriculture machines,0.18297509999999997,TJ,CO2,73300.0,kg/TJ,13412.074829999998,kg -60a65c9a-ecad-314b-9a5e-3743ef020edd,SESCO,II.5.1,Santa Fe,AR-S,annual,2020,naphtha combustion consumption by agriculture machines,0.18297509999999997,TJ,CH4,3.0,kg/TJ,0.5489253,kg -ca458409-fc02-33a9-8cea-9abffe83f63d,SESCO,II.5.1,Santa Fe,AR-S,annual,2020,naphtha combustion consumption by agriculture machines,0.18297509999999997,TJ,N2O,0.6,kg/TJ,0.10978505999999998,kg -056814d7-efba-3675-873f-5dfd183800d2,SESCO,II.1.1,Buenos Aires,AR-B,annual,2020,naphtha combustion consumption by to the public,13252.276576,TJ,CO2,73300.0,kg/TJ,971391873.0208,kg -59f0c69b-1e2c-38a4-900a-1732fbe993b0,SESCO,II.1.1,Buenos Aires,AR-B,annual,2020,naphtha combustion consumption by to the public,13252.276576,TJ,CH4,3.0,kg/TJ,39756.829728,kg -b81728ec-388f-34e5-af53-a2245029ae28,SESCO,II.1.1,Buenos Aires,AR-B,annual,2020,naphtha combustion consumption by to the public,13252.276576,TJ,N2O,0.6,kg/TJ,7951.3659456,kg -f086a30f-e1e2-3c3f-afec-5e3cb5d40a09,SESCO,II.1.1,Capital Federal,AR-C,annual,2020,naphtha combustion consumption by to the public,3265.46512215,TJ,CO2,73300.0,kg/TJ,239358593.45359498,kg -8126bc1d-9d14-3bf1-82c0-d12099adf6b6,SESCO,II.1.1,Capital Federal,AR-C,annual,2020,naphtha combustion consumption by to the public,3265.46512215,TJ,CH4,3.0,kg/TJ,9796.39536645,kg -a1b8edb5-8953-347c-a606-4330956338b9,SESCO,II.1.1,Capital Federal,AR-C,annual,2020,naphtha combustion consumption by to the public,3265.46512215,TJ,N2O,0.6,kg/TJ,1959.2790732899998,kg -eb5d342d-6975-3705-b086-ad1da1b2a440,SESCO,II.1.1,Catamarca,AR-K,annual,2020,naphtha combustion consumption by to the public,39.705596699999994,TJ,CO2,73300.0,kg/TJ,2910420.2381099993,kg -183104a2-1af8-31b7-bf4e-cbf3a1be579d,SESCO,II.1.1,Catamarca,AR-K,annual,2020,naphtha combustion consumption by to the public,39.705596699999994,TJ,CH4,3.0,kg/TJ,119.11679009999997,kg -9386b4ce-5e58-354b-a685-5ffe1952add5,SESCO,II.1.1,Catamarca,AR-K,annual,2020,naphtha combustion consumption by to the public,39.705596699999994,TJ,N2O,0.6,kg/TJ,23.823358019999997,kg -3403150d-7c6e-3b51-8d44-2ce968a2e6d9,SESCO,II.1.1,Chaco,AR-H,annual,2020,naphtha combustion consumption by to the public,805.2734151,TJ,CO2,73300.0,kg/TJ,59026541.32683,kg -15875479-80c0-348e-a458-d118d2e165fb,SESCO,II.1.1,Chaco,AR-H,annual,2020,naphtha combustion consumption by to the public,805.2734151,TJ,CH4,3.0,kg/TJ,2415.8202453,kg -a55c0928-8173-3b7b-b1d7-77f4fa84d828,SESCO,II.1.1,Chaco,AR-H,annual,2020,naphtha combustion consumption by to the public,805.2734151,TJ,N2O,0.6,kg/TJ,483.16404905999997,kg -69a284b0-ebdf-3a83-a00c-f2964c976845,SESCO,II.1.1,Corrientes,AR-W,annual,2020,naphtha combustion consumption by to the public,825.4006760999998,TJ,CO2,73300.0,kg/TJ,60501869.55812999,kg -5bc98776-2145-3c47-bc7f-aeec942def5f,SESCO,II.1.1,Corrientes,AR-W,annual,2020,naphtha combustion consumption by to the public,825.4006760999998,TJ,CH4,3.0,kg/TJ,2476.2020282999993,kg -c5b9e9b3-31d8-3bcc-842d-5858c64c2d7e,SESCO,II.1.1,Corrientes,AR-W,annual,2020,naphtha combustion consumption by to the public,825.4006760999998,TJ,N2O,0.6,kg/TJ,495.24040565999985,kg -9717acdd-7d6c-3371-8991-e8fa328f88b6,SESCO,II.1.1,Córdoba,AR-X,annual,2020,naphtha combustion consumption by to the public,3035.5264131499994,TJ,CO2,73300.0,kg/TJ,222504086.08389497,kg -91850174-3e3c-39ab-8102-ab33da586c2f,SESCO,II.1.1,Córdoba,AR-X,annual,2020,naphtha combustion consumption by to the public,3035.5264131499994,TJ,CH4,3.0,kg/TJ,9106.579239449999,kg -57c475e7-02cb-3b86-b412-e03efc64573f,SESCO,II.1.1,Córdoba,AR-X,annual,2020,naphtha combustion consumption by to the public,3035.5264131499994,TJ,N2O,0.6,kg/TJ,1821.3158478899995,kg -f34a8298-5ec5-351e-b20e-4582933242d6,SESCO,II.1.1,Entre Rios,AR-E,annual,2020,naphtha combustion consumption by to the public,876.5422165499999,TJ,CO2,73300.0,kg/TJ,64250544.473115,kg -49087d1f-ae0c-3d2d-b67b-17c36cb69355,SESCO,II.1.1,Entre Rios,AR-E,annual,2020,naphtha combustion consumption by to the public,876.5422165499999,TJ,CH4,3.0,kg/TJ,2629.6266496499998,kg -fac509a7-7f18-3431-a0e9-e6f8ddf6e58b,SESCO,II.1.1,Entre Rios,AR-E,annual,2020,naphtha combustion consumption by to the public,876.5422165499999,TJ,N2O,0.6,kg/TJ,525.92532993,kg -0ce53ac2-75d4-39e6-bd38-1045e3975509,SESCO,II.1.1,Formosa,AR-P,annual,2020,naphtha combustion consumption by to the public,299.56073454999995,TJ,CO2,73300.0,kg/TJ,21957801.842514995,kg -efd8e498-72cb-3a4f-ba42-832064172a49,SESCO,II.1.1,Formosa,AR-P,annual,2020,naphtha combustion consumption by to the public,299.56073454999995,TJ,CH4,3.0,kg/TJ,898.6822036499998,kg -3b7ab662-daf0-3e5b-be31-cc8d64b3757e,SESCO,II.1.1,Formosa,AR-P,annual,2020,naphtha combustion consumption by to the public,299.56073454999995,TJ,N2O,0.6,kg/TJ,179.73644072999997,kg -c694642f-6981-3f5a-9e13-f37b915fb922,SESCO,II.1.1,Jujuy,AR-Y,annual,2020,naphtha combustion consumption by to the public,150.4665239,TJ,CO2,73300.0,kg/TJ,11029196.20187,kg -1b6fd95d-f1a3-318c-925a-87a9a036718a,SESCO,II.1.1,Jujuy,AR-Y,annual,2020,naphtha combustion consumption by to the public,150.4665239,TJ,CH4,3.0,kg/TJ,451.3995717,kg -8b17ab3b-6f68-3d6b-9aa7-d8dd6cfa5a1e,SESCO,II.1.1,Jujuy,AR-Y,annual,2020,naphtha combustion consumption by to the public,150.4665239,TJ,N2O,0.6,kg/TJ,90.27991433999999,kg -a27663c4-62a4-3868-a0e0-f6fef58e0f49,SESCO,II.1.1,La Pampa,AR-L,annual,2020,naphtha combustion consumption by to the public,230.12168409999995,TJ,CO2,73300.0,kg/TJ,16867919.444529995,kg -8cb3be39-a6b1-3074-9c90-d58ff1bd8c8b,SESCO,II.1.1,La Pampa,AR-L,annual,2020,naphtha combustion consumption by to the public,230.12168409999995,TJ,CH4,3.0,kg/TJ,690.3650522999999,kg -f9f7ddaf-ccff-33f3-868c-97c9757a5bd4,SESCO,II.1.1,La Pampa,AR-L,annual,2020,naphtha combustion consumption by to the public,230.12168409999995,TJ,N2O,0.6,kg/TJ,138.07301045999998,kg -1923046f-f005-3139-be51-3240078ad6bf,SESCO,II.1.1,La Rioja,AR-F,annual,2020,naphtha combustion consumption by to the public,195.75286114999997,TJ,CO2,73300.0,kg/TJ,14348684.722294997,kg -a5b153ac-61a8-3443-83fe-0ba642048810,SESCO,II.1.1,La Rioja,AR-F,annual,2020,naphtha combustion consumption by to the public,195.75286114999997,TJ,CH4,3.0,kg/TJ,587.25858345,kg -69f2005b-f85c-339a-b64b-160cdf609f05,SESCO,II.1.1,La Rioja,AR-F,annual,2020,naphtha combustion consumption by to the public,195.75286114999997,TJ,N2O,0.6,kg/TJ,117.45171668999998,kg -af2332b5-879f-3b3d-9512-9bf4ff0de4ee,SESCO,II.1.1,Mendoza,AR-M,annual,2020,naphtha combustion consumption by to the public,1129.90173835,TJ,CO2,73300.0,kg/TJ,82821797.421055,kg -c2d6f8da-ea4f-353a-a683-be4654ed62b7,SESCO,II.1.1,Mendoza,AR-M,annual,2020,naphtha combustion consumption by to the public,1129.90173835,TJ,CH4,3.0,kg/TJ,3389.70521505,kg -74f53b6a-2a48-36ad-975b-218fd13645c8,SESCO,II.1.1,Mendoza,AR-M,annual,2020,naphtha combustion consumption by to the public,1129.90173835,TJ,N2O,0.6,kg/TJ,677.9410430099999,kg -0af8d4fe-c56d-30ac-aa37-7720865dbd4a,SESCO,II.1.1,Misiones,AR-N,annual,2020,naphtha combustion consumption by to the public,987.6995897999999,TJ,CO2,73300.0,kg/TJ,72398379.93234,kg -37738c25-44b2-3982-bc38-8ddfedb3fee2,SESCO,II.1.1,Misiones,AR-N,annual,2020,naphtha combustion consumption by to the public,987.6995897999999,TJ,CH4,3.0,kg/TJ,2963.0987693999996,kg -9c5ab5d2-2b88-3fae-be11-b0ea40f30287,SESCO,II.1.1,Misiones,AR-N,annual,2020,naphtha combustion consumption by to the public,987.6995897999999,TJ,N2O,0.6,kg/TJ,592.61975388,kg -e08dd19d-d203-3e35-b201-128d2298377a,SESCO,II.1.1,Neuquén,AR-Q,annual,2020,naphtha combustion consumption by to the public,357.50284954999995,TJ,CO2,73300.0,kg/TJ,26204958.872014996,kg -c4b43d12-7438-3dbc-9591-1912ef50a58a,SESCO,II.1.1,Neuquén,AR-Q,annual,2020,naphtha combustion consumption by to the public,357.50284954999995,TJ,CH4,3.0,kg/TJ,1072.5085486499997,kg -a2270700-5e9e-3939-9518-07fcd73311ee,SESCO,II.1.1,Neuquén,AR-Q,annual,2020,naphtha combustion consumption by to the public,357.50284954999995,TJ,N2O,0.6,kg/TJ,214.50170972999996,kg -880c4cbc-a68c-3d96-a22b-8ca7fdf17e3f,SESCO,II.1.1,Rio Negro,AR-R,annual,2020,naphtha combustion consumption by to the public,204.59665765,TJ,CO2,73300.0,kg/TJ,14996935.005745,kg -ab6a70a8-9cec-32d2-bf76-05a4aa6270ac,SESCO,II.1.1,Rio Negro,AR-R,annual,2020,naphtha combustion consumption by to the public,204.59665765,TJ,CH4,3.0,kg/TJ,613.78997295,kg -4a165a63-5ce7-3ce6-979f-d805991f890f,SESCO,II.1.1,Rio Negro,AR-R,annual,2020,naphtha combustion consumption by to the public,204.59665765,TJ,N2O,0.6,kg/TJ,122.75799459,kg -3d4d878c-54e5-3156-b546-abe421dcbc38,SESCO,II.1.1,Salta,AR-A,annual,2020,naphtha combustion consumption by to the public,216.55103085,TJ,CO2,73300.0,kg/TJ,15873190.561305,kg -dc56f55c-9d74-38d8-beb3-7ac962dde32d,SESCO,II.1.1,Salta,AR-A,annual,2020,naphtha combustion consumption by to the public,216.55103085,TJ,CH4,3.0,kg/TJ,649.65309255,kg -a8321880-0e7a-39cd-904b-1b9def95a791,SESCO,II.1.1,Salta,AR-A,annual,2020,naphtha combustion consumption by to the public,216.55103085,TJ,N2O,0.6,kg/TJ,129.93061851,kg -ad481bd0-8e89-313f-822d-fee473600690,SESCO,II.1.1,San Juan,AR-J,annual,2020,naphtha combustion consumption by to the public,237.98961339999997,TJ,CO2,73300.0,kg/TJ,17444638.662219997,kg -8455871a-5aa0-386f-84b7-9fe171979201,SESCO,II.1.1,San Juan,AR-J,annual,2020,naphtha combustion consumption by to the public,237.98961339999997,TJ,CH4,3.0,kg/TJ,713.9688401999999,kg -21168f61-28b5-3866-8acf-e7e1e0b9b96d,SESCO,II.1.1,San Juan,AR-J,annual,2020,naphtha combustion consumption by to the public,237.98961339999997,TJ,N2O,0.6,kg/TJ,142.79376803999997,kg -0f2b9524-5321-367f-aa93-0f6eb535b70c,SESCO,II.1.1,San Luis,AR-D,annual,2020,naphtha combustion consumption by to the public,190.47707909999997,TJ,CO2,73300.0,kg/TJ,13961969.898029998,kg -c2c558f2-79a3-38ed-b628-5e54d009d1f5,SESCO,II.1.1,San Luis,AR-D,annual,2020,naphtha combustion consumption by to the public,190.47707909999997,TJ,CH4,3.0,kg/TJ,571.4312372999999,kg -5ee9acc2-4ffe-301b-b3e9-1ebcf87687df,SESCO,II.1.1,San Luis,AR-D,annual,2020,naphtha combustion consumption by to the public,190.47707909999997,TJ,N2O,0.6,kg/TJ,114.28624745999998,kg -1705b9a1-7d34-355f-976d-f95b48044316,SESCO,II.1.1,Santa Fe,AR-S,annual,2020,naphtha combustion consumption by to the public,2563.9690846,TJ,CO2,73300.0,kg/TJ,187938933.90118,kg -e087f016-33ea-333d-9675-64768ef70780,SESCO,II.1.1,Santa Fe,AR-S,annual,2020,naphtha combustion consumption by to the public,2563.9690846,TJ,CH4,3.0,kg/TJ,7691.9072538,kg -f01a0d52-66a6-3940-9a08-277f14cebf62,SESCO,II.1.1,Santa Fe,AR-S,annual,2020,naphtha combustion consumption by to the public,2563.9690846,TJ,N2O,0.6,kg/TJ,1538.3814507599998,kg -9cd54247-5a7b-3d26-bd3b-6360fd0006c8,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2020,naphtha combustion consumption by to the public,396.4765458499999,TJ,CO2,73300.0,kg/TJ,29061730.810804993,kg -8bb01e0e-ef50-35f1-9ddc-4654b6f52d11,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2020,naphtha combustion consumption by to the public,396.4765458499999,TJ,CH4,3.0,kg/TJ,1189.4296375499998,kg -93cacdc3-1fd3-3d38-ae0c-808813019ac9,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2020,naphtha combustion consumption by to the public,396.4765458499999,TJ,N2O,0.6,kg/TJ,237.88592750999993,kg -00695794-40f7-352c-83ea-31abe78320c2,SESCO,II.1.1,Tucuman,AR-T,annual,2020,naphtha combustion consumption by to the public,848.1810760499999,TJ,CO2,73300.0,kg/TJ,62171672.87446499,kg -45b14870-1279-32c6-b172-b301f4d54634,SESCO,II.1.1,Tucuman,AR-T,annual,2020,naphtha combustion consumption by to the public,848.1810760499999,TJ,CH4,3.0,kg/TJ,2544.54322815,kg -17d41413-3418-308c-9b10-28aa5895e120,SESCO,II.1.1,Tucuman,AR-T,annual,2020,naphtha combustion consumption by to the public,848.1810760499999,TJ,N2O,0.6,kg/TJ,508.9086456299999,kg -bb8ef1df-7309-3369-9415-c10e14556a7c,SESCO,II.1.1,Buenos Aires,AR-B,annual,2020,naphtha combustion consumption by to the public,5781.6472097999995,TJ,CO2,73300.0,kg/TJ,423794740.47833997,kg -ee349823-31c5-3a58-8019-14239926d47c,SESCO,II.1.1,Buenos Aires,AR-B,annual,2020,naphtha combustion consumption by to the public,5781.6472097999995,TJ,CH4,3.0,kg/TJ,17344.941629399997,kg -d5fe390b-95e8-3200-8ba2-77ecc8471380,SESCO,II.1.1,Buenos Aires,AR-B,annual,2020,naphtha combustion consumption by to the public,5781.6472097999995,TJ,N2O,0.6,kg/TJ,3468.9883258799996,kg -0dc6fe6b-aec5-3146-9271-30314027c5e3,SESCO,II.1.1,Capital Federal,AR-C,annual,2020,naphtha combustion consumption by to the public,2213.2363137499997,TJ,CO2,73300.0,kg/TJ,162230221.797875,kg -d7f9a41a-4701-3acf-83ca-b50a6b94fc78,SESCO,II.1.1,Capital Federal,AR-C,annual,2020,naphtha combustion consumption by to the public,2213.2363137499997,TJ,CH4,3.0,kg/TJ,6639.708941249999,kg -594809d7-c256-3234-8549-eaadf93e22da,SESCO,II.1.1,Capital Federal,AR-C,annual,2020,naphtha combustion consumption by to the public,2213.2363137499997,TJ,N2O,0.6,kg/TJ,1327.9417882499997,kg -54a8360d-158b-3a2e-81c5-cf2fa0a5167f,SESCO,II.1.1,Catamarca,AR-K,annual,2020,naphtha combustion consumption by to the public,27.385273299999998,TJ,CO2,73300.0,kg/TJ,2007340.53289,kg -34e22a38-238e-31b5-97d0-c542b6430722,SESCO,II.1.1,Catamarca,AR-K,annual,2020,naphtha combustion consumption by to the public,27.385273299999998,TJ,CH4,3.0,kg/TJ,82.1558199,kg -d5b76758-61ff-3e7f-b25c-ed98c4c5f602,SESCO,II.1.1,Catamarca,AR-K,annual,2020,naphtha combustion consumption by to the public,27.385273299999998,TJ,N2O,0.6,kg/TJ,16.431163979999997,kg -8f45e0a1-79d9-3bbf-b400-50fb0fc6d856,SESCO,II.1.1,Chaco,AR-H,annual,2020,naphtha combustion consumption by to the public,217.25243539999997,TJ,CO2,73300.0,kg/TJ,15924603.514819998,kg -b937ccd5-bc15-373a-ad79-2ccfcb451913,SESCO,II.1.1,Chaco,AR-H,annual,2020,naphtha combustion consumption by to the public,217.25243539999997,TJ,CH4,3.0,kg/TJ,651.7573061999999,kg -b4d175a6-c53c-377a-89d2-8e78c480e38c,SESCO,II.1.1,Chaco,AR-H,annual,2020,naphtha combustion consumption by to the public,217.25243539999997,TJ,N2O,0.6,kg/TJ,130.35146123999996,kg -dd4af8be-c197-3928-b581-aacd4a780f6f,SESCO,II.1.1,Corrientes,AR-W,annual,2020,naphtha combustion consumption by to the public,249.39506129999998,TJ,CO2,73300.0,kg/TJ,18280657.99329,kg -f2487444-6dbe-3ba5-87e9-0795fe94d189,SESCO,II.1.1,Corrientes,AR-W,annual,2020,naphtha combustion consumption by to the public,249.39506129999998,TJ,CH4,3.0,kg/TJ,748.1851839,kg -6bdbb876-9567-3dc6-9000-c98d6cf33fe1,SESCO,II.1.1,Corrientes,AR-W,annual,2020,naphtha combustion consumption by to the public,249.39506129999998,TJ,N2O,0.6,kg/TJ,149.63703678,kg -11bf4560-ed87-3e50-aa10-c6bbbf4e1e95,SESCO,II.1.1,Córdoba,AR-X,annual,2020,naphtha combustion consumption by to the public,1287.8702413499998,TJ,CO2,73300.0,kg/TJ,94400888.69095498,kg -5a301fb1-df9f-35e4-a546-96b8025f726f,SESCO,II.1.1,Córdoba,AR-X,annual,2020,naphtha combustion consumption by to the public,1287.8702413499998,TJ,CH4,3.0,kg/TJ,3863.6107240499996,kg -c5ec271e-9c42-3161-9440-54130d28ebfc,SESCO,II.1.1,Córdoba,AR-X,annual,2020,naphtha combustion consumption by to the public,1287.8702413499998,TJ,N2O,0.6,kg/TJ,772.7221448099998,kg -84bc6ba8-12d0-3fd8-abfe-8eba0efcf810,SESCO,II.1.1,Entre Rios,AR-E,annual,2020,naphtha combustion consumption by to the public,282.78801704999995,TJ,CO2,73300.0,kg/TJ,20728361.649764996,kg -814a8263-b306-3a15-ab2c-4c03ee679acd,SESCO,II.1.1,Entre Rios,AR-E,annual,2020,naphtha combustion consumption by to the public,282.78801704999995,TJ,CH4,3.0,kg/TJ,848.3640511499998,kg -293bff7a-3906-3dcb-bb4e-948b370d7704,SESCO,II.1.1,Entre Rios,AR-E,annual,2020,naphtha combustion consumption by to the public,282.78801704999995,TJ,N2O,0.6,kg/TJ,169.67281022999995,kg -c2e749e5-ebf3-3bac-bfcc-39d82baf4518,SESCO,II.1.1,Formosa,AR-P,annual,2020,naphtha combustion consumption by to the public,107.34539199999999,TJ,CO2,73300.0,kg/TJ,7868417.233599999,kg -7b570ec2-edc7-3ead-aabd-019d3b00e004,SESCO,II.1.1,Formosa,AR-P,annual,2020,naphtha combustion consumption by to the public,107.34539199999999,TJ,CH4,3.0,kg/TJ,322.03617599999995,kg -72ec0d67-40f4-30e6-a438-4ec907dfc79f,SESCO,II.1.1,Formosa,AR-P,annual,2020,naphtha combustion consumption by to the public,107.34539199999999,TJ,N2O,0.6,kg/TJ,64.40723519999999,kg -c933ec75-bc38-33b1-902e-43f24e60eaed,SESCO,II.1.1,Jujuy,AR-Y,annual,2020,naphtha combustion consumption by to the public,30.831304349999996,TJ,CO2,73300.0,kg/TJ,2259934.6088549998,kg -0e8b42b2-e8fa-3773-97bd-2d63823fe7af,SESCO,II.1.1,Jujuy,AR-Y,annual,2020,naphtha combustion consumption by to the public,30.831304349999996,TJ,CH4,3.0,kg/TJ,92.49391304999999,kg -908954d7-679b-35f9-a3f3-86812ba79811,SESCO,II.1.1,Jujuy,AR-Y,annual,2020,naphtha combustion consumption by to the public,30.831304349999996,TJ,N2O,0.6,kg/TJ,18.498782609999996,kg -a62a0165-5a6c-398f-affd-a4d73c7704b1,SESCO,II.1.1,La Pampa,AR-L,annual,2020,naphtha combustion consumption by to the public,111.76729024999999,TJ,CO2,73300.0,kg/TJ,8192542.375324999,kg -76be7564-f6e8-37e4-bab8-d7558fcd84c7,SESCO,II.1.1,La Pampa,AR-L,annual,2020,naphtha combustion consumption by to the public,111.76729024999999,TJ,CH4,3.0,kg/TJ,335.30187075,kg -4e3e25e9-960e-309c-a8b8-25e557f6e95d,SESCO,II.1.1,La Pampa,AR-L,annual,2020,naphtha combustion consumption by to the public,111.76729024999999,TJ,N2O,0.6,kg/TJ,67.06037414999999,kg -7606eafa-b22c-35ad-a50f-35329ea2d867,SESCO,II.1.1,La Rioja,AR-F,annual,2020,naphtha combustion consumption by to the public,50.04368984999999,TJ,CO2,73300.0,kg/TJ,3668202.4660049994,kg -7381566c-497d-3853-b2a5-c474f344ad87,SESCO,II.1.1,La Rioja,AR-F,annual,2020,naphtha combustion consumption by to the public,50.04368984999999,TJ,CH4,3.0,kg/TJ,150.13106954999998,kg -e486df8a-42e5-3f47-b6c1-f4358e202e48,SESCO,II.1.1,La Rioja,AR-F,annual,2020,naphtha combustion consumption by to the public,50.04368984999999,TJ,N2O,0.6,kg/TJ,30.026213909999996,kg -8e557540-b07c-39ea-978a-6f90ddc2f909,SESCO,II.1.1,Mendoza,AR-M,annual,2020,naphtha combustion consumption by to the public,509.25019914999996,TJ,CO2,73300.0,kg/TJ,37328039.597695,kg -78f08ca7-e86d-392d-a7aa-2cdc7c479327,SESCO,II.1.1,Mendoza,AR-M,annual,2020,naphtha combustion consumption by to the public,509.25019914999996,TJ,CH4,3.0,kg/TJ,1527.75059745,kg -959470bc-b30a-3bf4-8dac-98b239d9b971,SESCO,II.1.1,Mendoza,AR-M,annual,2020,naphtha combustion consumption by to the public,509.25019914999996,TJ,N2O,0.6,kg/TJ,305.55011949,kg -daa8c481-31bb-332f-9748-1dc6461772dc,SESCO,II.1.1,Misiones,AR-N,annual,2020,naphtha combustion consumption by to the public,213.37946244999998,TJ,CO2,73300.0,kg/TJ,15640714.597584998,kg -0c816e89-3da7-3832-8bf4-28298e017aeb,SESCO,II.1.1,Misiones,AR-N,annual,2020,naphtha combustion consumption by to the public,213.37946244999998,TJ,CH4,3.0,kg/TJ,640.1383873499999,kg -1964863c-647a-38ef-8344-d0d41596ad5d,SESCO,II.1.1,Misiones,AR-N,annual,2020,naphtha combustion consumption by to the public,213.37946244999998,TJ,N2O,0.6,kg/TJ,128.02767747,kg -41adc665-64f4-3682-9ce5-c1118f6f38d8,SESCO,II.1.1,Neuquén,AR-Q,annual,2020,naphtha combustion consumption by to the public,230.15217994999998,TJ,CO2,73300.0,kg/TJ,16870154.790335,kg -6ed68eb0-004e-380f-a039-da8bdc85f2a7,SESCO,II.1.1,Neuquén,AR-Q,annual,2020,naphtha combustion consumption by to the public,230.15217994999998,TJ,CH4,3.0,kg/TJ,690.4565398499999,kg -06fcd811-f34c-3271-af39-c56f7a15aee2,SESCO,II.1.1,Neuquén,AR-Q,annual,2020,naphtha combustion consumption by to the public,230.15217994999998,TJ,N2O,0.6,kg/TJ,138.09130796999997,kg -b37e1fba-8d2e-3cca-b9b1-87161d48da83,SESCO,II.1.1,Rio Negro,AR-R,annual,2020,naphtha combustion consumption by to the public,98.50159549999998,TJ,CO2,73300.0,kg/TJ,7220166.950149998,kg -8ea54b23-a02b-37bc-9385-9a15ccf14ff3,SESCO,II.1.1,Rio Negro,AR-R,annual,2020,naphtha combustion consumption by to the public,98.50159549999998,TJ,CH4,3.0,kg/TJ,295.5047864999999,kg -9e6c96d8-13c9-3c3e-8a10-71df2a2874d7,SESCO,II.1.1,Rio Negro,AR-R,annual,2020,naphtha combustion consumption by to the public,98.50159549999998,TJ,N2O,0.6,kg/TJ,59.10095729999998,kg -38655bfe-15f6-3c40-adfe-cd63a8fdeecc,SESCO,II.1.1,Salta,AR-A,annual,2020,naphtha combustion consumption by to the public,101.33770954999999,TJ,CO2,73300.0,kg/TJ,7428054.110014999,kg -e1b54ad7-f19a-319f-a3ce-bd2d19b31054,SESCO,II.1.1,Salta,AR-A,annual,2020,naphtha combustion consumption by to the public,101.33770954999999,TJ,CH4,3.0,kg/TJ,304.01312864999994,kg -d6c70e8f-2e41-300b-bc38-e653ded83a88,SESCO,II.1.1,Salta,AR-A,annual,2020,naphtha combustion consumption by to the public,101.33770954999999,TJ,N2O,0.6,kg/TJ,60.80262572999999,kg -6c49820c-42c0-3edd-a5f7-ab1c8e9fc67d,SESCO,II.1.1,San Juan,AR-J,annual,2020,naphtha combustion consumption by to the public,78.46582204999999,TJ,CO2,73300.0,kg/TJ,5751544.756264999,kg -837d4b64-ed8a-32ae-b935-81455105ecdd,SESCO,II.1.1,San Juan,AR-J,annual,2020,naphtha combustion consumption by to the public,78.46582204999999,TJ,CH4,3.0,kg/TJ,235.39746614999996,kg -b142f459-2447-3612-a7c8-e405f58d5274,SESCO,II.1.1,San Juan,AR-J,annual,2020,naphtha combustion consumption by to the public,78.46582204999999,TJ,N2O,0.6,kg/TJ,47.07949322999999,kg -f1f8b4d1-022b-3285-9f5b-faf9ddb2a6d8,SESCO,II.1.1,San Luis,AR-D,annual,2020,naphtha combustion consumption by to the public,79.19772244999999,TJ,CO2,73300.0,kg/TJ,5805193.055584999,kg -6e0392aa-60e1-37c8-a18f-699f736d878c,SESCO,II.1.1,San Luis,AR-D,annual,2020,naphtha combustion consumption by to the public,79.19772244999999,TJ,CH4,3.0,kg/TJ,237.59316734999996,kg -b6a3a8b2-dd80-3aef-99d3-122b7691af77,SESCO,II.1.1,San Luis,AR-D,annual,2020,naphtha combustion consumption by to the public,79.19772244999999,TJ,N2O,0.6,kg/TJ,47.51863346999999,kg -cea1c872-4c87-39da-9fba-6d522523ab42,SESCO,II.1.1,Santa Fe,AR-S,annual,2020,naphtha combustion consumption by to the public,1142.83197875,TJ,CO2,73300.0,kg/TJ,83769584.042375,kg -eab593d1-3534-303e-87cd-0855e0f08ca4,SESCO,II.1.1,Santa Fe,AR-S,annual,2020,naphtha combustion consumption by to the public,1142.83197875,TJ,CH4,3.0,kg/TJ,3428.49593625,kg -efebb1df-c90a-39fb-90dc-9c97537d5e39,SESCO,II.1.1,Santa Fe,AR-S,annual,2020,naphtha combustion consumption by to the public,1142.83197875,TJ,N2O,0.6,kg/TJ,685.6991872499999,kg -da9c4acf-231b-3409-9d76-d7f4efb85060,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2020,naphtha combustion consumption by to the public,112.62117405,TJ,CO2,73300.0,kg/TJ,8255132.057864999,kg -ee2b4b17-b15e-3107-b38a-78924bcc3d6f,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2020,naphtha combustion consumption by to the public,112.62117405,TJ,CH4,3.0,kg/TJ,337.86352215,kg -54ba69c4-404c-3d36-a074-9ab73eec2b6f,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2020,naphtha combustion consumption by to the public,112.62117405,TJ,N2O,0.6,kg/TJ,67.57270442999999,kg -2f91590e-33c2-36bc-b5d2-518400d9bd8b,SESCO,II.1.1,Tucuman,AR-T,annual,2020,naphtha combustion consumption by to the public,224.6934228,TJ,CO2,73300.0,kg/TJ,16470027.89124,kg -e03e6e29-0445-356b-956e-3d496643c035,SESCO,II.1.1,Tucuman,AR-T,annual,2020,naphtha combustion consumption by to the public,224.6934228,TJ,CH4,3.0,kg/TJ,674.0802684,kg -3fb1fa04-b8fb-34f7-989f-74c2d1ba8823,SESCO,II.1.1,Tucuman,AR-T,annual,2020,naphtha combustion consumption by to the public,224.6934228,TJ,N2O,0.6,kg/TJ,134.81605368,kg -4c83a86c-4fe8-333b-b93e-02c779aac7d6,SESCO,I.3.1,Buenos Aires,AR-B,annual,2020,naphtha combustion consumption by petrochemical industries,17.657097149999995,TJ,CO2,73300.0,kg/TJ,1294265.2210949997,kg -06c85f1e-68d4-321e-b9a8-df46f2c8bc98,SESCO,I.3.1,Buenos Aires,AR-B,annual,2020,naphtha combustion consumption by petrochemical industries,17.657097149999995,TJ,CH4,3.0,kg/TJ,52.97129144999998,kg -0798d6d7-52fa-32ac-b259-d4b4675a1e75,SESCO,I.3.1,Buenos Aires,AR-B,annual,2020,naphtha combustion consumption by petrochemical industries,17.657097149999995,TJ,N2O,0.6,kg/TJ,10.594258289999997,kg -69374796-f4cc-3b1c-ab41-cec159ddfb83,SESCO,I.3.1,Misiones,AR-N,annual,2020,naphtha combustion consumption by petrochemical industries,0.15247924999999998,TJ,CO2,73300.0,kg/TJ,11176.729024999999,kg -c1f2956a-6eac-3f6e-baeb-91c21736b4ee,SESCO,I.3.1,Misiones,AR-N,annual,2020,naphtha combustion consumption by petrochemical industries,0.15247924999999998,TJ,CH4,3.0,kg/TJ,0.45743775,kg -ffdd03e1-2b57-3f40-976b-dc056d651a43,SESCO,I.3.1,Misiones,AR-N,annual,2020,naphtha combustion consumption by petrochemical industries,0.15247924999999998,TJ,N2O,0.6,kg/TJ,0.09148754999999999,kg -c094dcfb-4a46-30ef-9090-c6c105b3c9f5,SESCO,I.3.1,Tucuman,AR-T,annual,2020,naphtha combustion consumption by petrochemical industries,0.18297509999999997,TJ,CO2,73300.0,kg/TJ,13412.074829999998,kg -78b949e3-7949-3da2-85a9-6cb9ad538bf0,SESCO,I.3.1,Tucuman,AR-T,annual,2020,naphtha combustion consumption by petrochemical industries,0.18297509999999997,TJ,CH4,3.0,kg/TJ,0.5489253,kg -aba393a7-d45f-34c0-b105-944ab9a7af11,SESCO,I.3.1,Tucuman,AR-T,annual,2020,naphtha combustion consumption by petrochemical industries,0.18297509999999997,TJ,N2O,0.6,kg/TJ,0.10978505999999998,kg -7bffeecf-4a7f-355c-a491-1e698f749abb,SESCO,I.3.1,Buenos Aires,AR-B,annual,2020,naphtha combustion consumption by petrochemical industries,5.33677375,TJ,CO2,73300.0,kg/TJ,391185.515875,kg -52a77070-b86d-3574-be1f-bf664b73978d,SESCO,I.3.1,Buenos Aires,AR-B,annual,2020,naphtha combustion consumption by petrochemical industries,5.33677375,TJ,CH4,3.0,kg/TJ,16.01032125,kg -b494d703-cec2-3fc5-ba67-5462a49b5e50,SESCO,I.3.1,Buenos Aires,AR-B,annual,2020,naphtha combustion consumption by petrochemical industries,5.33677375,TJ,N2O,0.6,kg/TJ,3.20206425,kg -11eb27f5-14f4-3282-9816-5a6b5064080c,SESCO,I.3.1,San Juan,AR-J,annual,2020,naphtha combustion consumption by petrochemical industries,0.8538838,TJ,CO2,73300.0,kg/TJ,62589.682539999994,kg -1f343938-483c-344c-9cdf-c27e229e1c7b,SESCO,I.3.1,San Juan,AR-J,annual,2020,naphtha combustion consumption by petrochemical industries,0.8538838,TJ,CH4,3.0,kg/TJ,2.5616513999999997,kg -90db0d24-b441-3b84-895e-ad575c0700ed,SESCO,I.3.1,San Juan,AR-J,annual,2020,naphtha combustion consumption by petrochemical industries,0.8538838,TJ,N2O,0.6,kg/TJ,0.5123302799999999,kg -69e3e880-34e3-3c61-a010-af084c94e1cc,SESCO,I.3.1,Tucuman,AR-T,annual,2020,naphtha combustion consumption by petrochemical industries,0.21347095,TJ,CO2,73300.0,kg/TJ,15647.420634999999,kg -eb8ff385-6e0c-3296-8e9c-9786d37828d1,SESCO,I.3.1,Tucuman,AR-T,annual,2020,naphtha combustion consumption by petrochemical industries,0.21347095,TJ,CH4,3.0,kg/TJ,0.6404128499999999,kg -9bf376c4-72bf-3c5b-bb00-739cbd0693ca,SESCO,I.3.1,Tucuman,AR-T,annual,2020,naphtha combustion consumption by petrochemical industries,0.21347095,TJ,N2O,0.6,kg/TJ,0.12808256999999998,kg -2c8874fd-d5e6-38af-84f7-524f34635f79,SESCO,II.5.1,Buenos Aires,AR-B,annual,2020,naphtha combustion consumption by agriculture machines,110.41184120504998,TJ,CO2,73300.0,kg/TJ,8093187.960330164,kg -2b5d1ad6-6d94-377c-87a4-d967e923165d,SESCO,II.5.1,Buenos Aires,AR-B,annual,2020,naphtha combustion consumption by agriculture machines,110.41184120504998,TJ,CH4,3.0,kg/TJ,331.23552361514993,kg -6d37d23b-3540-3bf5-afad-84f7e51da297,SESCO,II.5.1,Buenos Aires,AR-B,annual,2020,naphtha combustion consumption by agriculture machines,110.41184120504998,TJ,N2O,0.6,kg/TJ,66.24710472302999,kg -22cd69f0-9548-3ae2-bc24-454659251ef4,SESCO,II.5.1,Capital Federal,AR-C,annual,2020,naphtha combustion consumption by agriculture machines,23.186086242549997,TJ,CO2,73300.0,kg/TJ,1699540.1215789148,kg -b332e427-1b2d-363a-95e1-a3715bf70f94,SESCO,II.5.1,Capital Federal,AR-C,annual,2020,naphtha combustion consumption by agriculture machines,23.186086242549997,TJ,CH4,3.0,kg/TJ,69.55825872764999,kg -68a606fc-9359-38b6-8961-b052bc502809,SESCO,II.5.1,Capital Federal,AR-C,annual,2020,naphtha combustion consumption by agriculture machines,23.186086242549997,TJ,N2O,0.6,kg/TJ,13.911651745529998,kg -dc5d704a-2233-35c6-81c8-ef8033549ef2,SESCO,II.5.1,Chaco,AR-H,annual,2020,naphtha combustion consumption by agriculture machines,2.71159949445,TJ,CO2,73300.0,kg/TJ,198760.242943185,kg -9a2d85d8-d94f-3ba3-93f1-a9212ed924cd,SESCO,II.5.1,Chaco,AR-H,annual,2020,naphtha combustion consumption by agriculture machines,2.71159949445,TJ,CH4,3.0,kg/TJ,8.13479848335,kg -7918de8f-f60e-30a5-81a4-4ef46adc5519,SESCO,II.5.1,Chaco,AR-H,annual,2020,naphtha combustion consumption by agriculture machines,2.71159949445,TJ,N2O,0.6,kg/TJ,1.62695969667,kg -15a479fe-07b3-387e-b578-1b511cb3eca2,SESCO,II.5.1,Córdoba,AR-X,annual,2020,naphtha combustion consumption by agriculture machines,8.713945170699997,TJ,CO2,73300.0,kg/TJ,638732.1810123097,kg -20229385-fb95-34bf-9c51-ced0a9dc6ff6,SESCO,II.5.1,Córdoba,AR-X,annual,2020,naphtha combustion consumption by agriculture machines,8.713945170699997,TJ,CH4,3.0,kg/TJ,26.14183551209999,kg -efdf851e-763a-3da7-befa-95a35dfb2118,SESCO,II.5.1,Córdoba,AR-X,annual,2020,naphtha combustion consumption by agriculture machines,8.713945170699997,TJ,N2O,0.6,kg/TJ,5.228367102419998,kg -6dc1706c-38bc-31f2-b116-73872b30a911,SESCO,II.5.1,Rio Negro,AR-R,annual,2020,naphtha combustion consumption by agriculture machines,13.762289171399999,TJ,CO2,73300.0,kg/TJ,1008775.7962636199,kg -70c219ed-7a5a-3104-ab65-ae152231bea9,SESCO,II.5.1,Rio Negro,AR-R,annual,2020,naphtha combustion consumption by agriculture machines,13.762289171399999,TJ,CH4,3.0,kg/TJ,41.2868675142,kg -bb38f0ea-8a3c-39ed-9196-402e48919438,SESCO,II.5.1,Rio Negro,AR-R,annual,2020,naphtha combustion consumption by agriculture machines,13.762289171399999,TJ,N2O,0.6,kg/TJ,8.257373502839998,kg -d6355e48-82bf-3d97-b41a-020b01614710,SESCO,II.5.1,Santa Fe,AR-S,annual,2020,naphtha combustion consumption by agriculture machines,173.37839145934996,TJ,CO2,73300.0,kg/TJ,12708636.09397035,kg -96b02f98-44b5-3f54-b4d0-fbd0689ba4f1,SESCO,II.5.1,Santa Fe,AR-S,annual,2020,naphtha combustion consumption by agriculture machines,173.37839145934996,TJ,CH4,3.0,kg/TJ,520.1351743780499,kg -89eb827b-8ff8-336b-aad7-f20bd1044d2d,SESCO,II.5.1,Santa Fe,AR-S,annual,2020,naphtha combustion consumption by agriculture machines,173.37839145934996,TJ,N2O,0.6,kg/TJ,104.02703487560997,kg -d9ba0376-2ba0-3c2a-b6be-f832bbfa3bc7,SESCO,II.5.1,Buenos Aires,AR-B,annual,2020,naphtha combustion consumption by agriculture machines,9.501713967899999,TJ,CO2,73300.0,kg/TJ,696475.6338470699,kg -5e52e640-cb70-3217-83dd-4a9f5d5ffa2f,SESCO,II.5.1,Buenos Aires,AR-B,annual,2020,naphtha combustion consumption by agriculture machines,9.501713967899999,TJ,CH4,3.0,kg/TJ,28.505141903699997,kg -188efa0f-f763-3c6f-8373-75c527c3652c,SESCO,II.5.1,Buenos Aires,AR-B,annual,2020,naphtha combustion consumption by agriculture machines,9.501713967899999,TJ,N2O,0.6,kg/TJ,5.7010283807399995,kg -1cfab361-b85d-344c-93cf-0e4d2d0c04e7,SESCO,II.5.1,Capital Federal,AR-C,annual,2020,naphtha combustion consumption by agriculture machines,6.5369074308999995,TJ,CO2,73300.0,kg/TJ,479155.31468496996,kg -99fad41c-fc2b-386d-82d4-d543395a5e58,SESCO,II.5.1,Capital Federal,AR-C,annual,2020,naphtha combustion consumption by agriculture machines,6.5369074308999995,TJ,CH4,3.0,kg/TJ,19.610722292699997,kg -4d169bfb-198b-32ad-b73a-53e17a14c948,SESCO,II.5.1,Capital Federal,AR-C,annual,2020,naphtha combustion consumption by agriculture machines,6.5369074308999995,TJ,N2O,0.6,kg/TJ,3.9221444585399996,kg -90a12367-26fa-3f03-989a-82d828dbd064,SESCO,II.5.1,Córdoba,AR-X,annual,2020,naphtha combustion consumption by agriculture machines,0.9404310223,TJ,CO2,73300.0,kg/TJ,68933.59393459,kg -d797c2bb-4adb-3d75-b5c7-c6793f0535e3,SESCO,II.5.1,Córdoba,AR-X,annual,2020,naphtha combustion consumption by agriculture machines,0.9404310223,TJ,CH4,3.0,kg/TJ,2.8212930669,kg -30bd741a-b678-36fb-9ade-55ed3ca456bd,SESCO,II.5.1,Córdoba,AR-X,annual,2020,naphtha combustion consumption by agriculture machines,0.9404310223,TJ,N2O,0.6,kg/TJ,0.5642586133799999,kg -1e7b3bb0-16c0-324e-b285-942670c32494,SESCO,II.5.1,Rio Negro,AR-R,annual,2020,naphtha combustion consumption by agriculture machines,2.74612079665,TJ,CO2,73300.0,kg/TJ,201290.654394445,kg -c66e9b12-4cfa-3c7d-8ec0-f7f8e386ac84,SESCO,II.5.1,Rio Negro,AR-R,annual,2020,naphtha combustion consumption by agriculture machines,2.74612079665,TJ,CH4,3.0,kg/TJ,8.23836238995,kg -27a4274c-4d9d-3de0-99a9-0da593c62011,SESCO,II.5.1,Rio Negro,AR-R,annual,2020,naphtha combustion consumption by agriculture machines,2.74612079665,TJ,N2O,0.6,kg/TJ,1.64767247799,kg -00a6d922-ee9d-3058-afc3-f5a79eb3d044,SESCO,II.5.1,Santa Fe,AR-S,annual,2020,naphtha combustion consumption by agriculture machines,15.281043493099999,TJ,CO2,73300.0,kg/TJ,1120100.4880442298,kg -b86a80a0-b73f-35e8-8cbc-8ab77635f9da,SESCO,II.5.1,Santa Fe,AR-S,annual,2020,naphtha combustion consumption by agriculture machines,15.281043493099999,TJ,CH4,3.0,kg/TJ,45.843130479299994,kg -054d89a0-29cb-3fb2-9688-229145a71737,SESCO,II.5.1,Santa Fe,AR-S,annual,2020,naphtha combustion consumption by agriculture machines,15.281043493099999,TJ,N2O,0.6,kg/TJ,9.168626095859999,kg -94e1f94e-f70d-3dbe-8f15-e6058cdc6055,SESCO,II.1.1,Buenos Aires,AR-B,annual,2020,naphtha combustion consumption by to the public,3236.5160521578496,TJ,CO2,73300.0,kg/TJ,237236626.62317038,kg -8b170ce2-a4ff-36c0-ad48-8370e4738cee,SESCO,II.1.1,Buenos Aires,AR-B,annual,2020,naphtha combustion consumption by to the public,3236.5160521578496,TJ,CH4,3.0,kg/TJ,9709.54815647355,kg -fb4d3d65-2aeb-3f4c-a69d-362b5b58d102,SESCO,II.1.1,Buenos Aires,AR-B,annual,2020,naphtha combustion consumption by to the public,3236.5160521578496,TJ,N2O,0.6,kg/TJ,1941.9096312947097,kg -86fcb1ff-9ec9-3f68-961e-85ebfdedff1f,SESCO,II.1.1,Capital Federal,AR-C,annual,2020,naphtha combustion consumption by to the public,263.9954374211,TJ,CO2,73300.0,kg/TJ,19350865.56296663,kg -db432663-8470-300c-acad-d8dc23868591,SESCO,II.1.1,Capital Federal,AR-C,annual,2020,naphtha combustion consumption by to the public,263.9954374211,TJ,CH4,3.0,kg/TJ,791.9863122633001,kg -5671e15c-5ad1-3b53-afcf-18c7c34de3e0,SESCO,II.1.1,Capital Federal,AR-C,annual,2020,naphtha combustion consumption by to the public,263.9954374211,TJ,N2O,0.6,kg/TJ,158.39726245266,kg -d3ca7682-6c51-3526-bddd-724211babc99,SESCO,II.1.1,Catamarca,AR-K,annual,2020,naphtha combustion consumption by to the public,23.55148751725,TJ,CO2,73300.0,kg/TJ,1726324.035014425,kg -fa661375-aa8e-3efc-8209-dcb46a54f416,SESCO,II.1.1,Catamarca,AR-K,annual,2020,naphtha combustion consumption by to the public,23.55148751725,TJ,CH4,3.0,kg/TJ,70.65446255175,kg -fabf1afd-8ebd-361a-9f79-de1258617df5,SESCO,II.1.1,Catamarca,AR-K,annual,2020,naphtha combustion consumption by to the public,23.55148751725,TJ,N2O,0.6,kg/TJ,14.13089251035,kg -fa30666e-1b66-33f6-8645-a79bbf6cd8da,SESCO,II.1.1,Chaco,AR-H,annual,2020,naphtha combustion consumption by to the public,31.832452609649994,TJ,CO2,73300.0,kg/TJ,2333318.7762873448,kg -e750a7af-8fff-3052-86ef-6d1e0773c0b2,SESCO,II.1.1,Chaco,AR-H,annual,2020,naphtha combustion consumption by to the public,31.832452609649994,TJ,CH4,3.0,kg/TJ,95.49735782894999,kg -93eb5f32-0174-39f2-85fb-a4d3cf79090a,SESCO,II.1.1,Chaco,AR-H,annual,2020,naphtha combustion consumption by to the public,31.832452609649994,TJ,N2O,0.6,kg/TJ,19.099471565789997,kg -9234a174-2d4e-3567-b0e8-734a1c7c1822,SESCO,II.1.1,Chubut,AR-U,annual,2020,naphtha combustion consumption by to the public,190.55832004439998,TJ,CO2,73300.0,kg/TJ,13967924.859254519,kg -2c622365-1c37-39e4-97f6-19c94877ae0d,SESCO,II.1.1,Chubut,AR-U,annual,2020,naphtha combustion consumption by to the public,190.55832004439998,TJ,CH4,3.0,kg/TJ,571.6749601331999,kg -fa584a98-60a6-3ac1-8996-8a7b512b8ddf,SESCO,II.1.1,Chubut,AR-U,annual,2020,naphtha combustion consumption by to the public,190.55832004439998,TJ,N2O,0.6,kg/TJ,114.33499202663998,kg -821d97ef-3a26-30c3-9254-e180bea9c395,SESCO,II.1.1,Corrientes,AR-W,annual,2020,naphtha combustion consumption by to the public,230.65261684849997,TJ,CO2,73300.0,kg/TJ,16906836.814995047,kg -1b43132f-2fc6-310c-85f0-6a057f37402e,SESCO,II.1.1,Corrientes,AR-W,annual,2020,naphtha combustion consumption by to the public,230.65261684849997,TJ,CH4,3.0,kg/TJ,691.9578505454999,kg -51a39679-5189-3fd9-a94a-e066b1d7bfba,SESCO,II.1.1,Corrientes,AR-W,annual,2020,naphtha combustion consumption by to the public,230.65261684849997,TJ,N2O,0.6,kg/TJ,138.39157010909997,kg -d354e661-d444-3e53-b991-c7c69c5e9e12,SESCO,II.1.1,Córdoba,AR-X,annual,2020,naphtha combustion consumption by to the public,418.20578434634996,TJ,CO2,73300.0,kg/TJ,30654483.99258745,kg -708a93f7-6c2c-3125-964f-039f71f2b99c,SESCO,II.1.1,Córdoba,AR-X,annual,2020,naphtha combustion consumption by to the public,418.20578434634996,TJ,CH4,3.0,kg/TJ,1254.61735303905,kg -4a83653c-0633-3cfb-9ad2-8876787c5fe4,SESCO,II.1.1,Córdoba,AR-X,annual,2020,naphtha combustion consumption by to the public,418.20578434634996,TJ,N2O,0.6,kg/TJ,250.92347060780997,kg -730d749c-5098-3f6c-a527-37b05af53e44,SESCO,II.1.1,Entre Rios,AR-E,annual,2020,naphtha combustion consumption by to the public,395.8497951408,TJ,CO2,73300.0,kg/TJ,29015789.98382064,kg -7542d689-47a0-33a0-a81c-b56ce0a19dbc,SESCO,II.1.1,Entre Rios,AR-E,annual,2020,naphtha combustion consumption by to the public,395.8497951408,TJ,CH4,3.0,kg/TJ,1187.5493854224,kg -83077d2e-c75b-3655-81a0-41c34f467842,SESCO,II.1.1,Entre Rios,AR-E,annual,2020,naphtha combustion consumption by to the public,395.8497951408,TJ,N2O,0.6,kg/TJ,237.50987708447997,kg -cd6f9e08-f0d8-39c9-9fe0-28b958be00e2,SESCO,II.1.1,Formosa,AR-P,annual,2020,naphtha combustion consumption by to the public,1.4124762844499998,TJ,CO2,73300.0,kg/TJ,103534.51165018498,kg -9ce545e9-3c78-3487-aae6-ef87966c2021,SESCO,II.1.1,Formosa,AR-P,annual,2020,naphtha combustion consumption by to the public,1.4124762844499998,TJ,CH4,3.0,kg/TJ,4.23742885335,kg -e4fc69f0-ec80-3c66-bbd5-37ad6f75ab61,SESCO,II.1.1,Formosa,AR-P,annual,2020,naphtha combustion consumption by to the public,1.4124762844499998,TJ,N2O,0.6,kg/TJ,0.8474857706699999,kg -9859de94-7139-3087-8797-62608740bcdd,SESCO,II.1.1,Jujuy,AR-Y,annual,2020,naphtha combustion consumption by to the public,45.26861916114999,TJ,CO2,73300.0,kg/TJ,3318189.7845122945,kg -1e2e33a2-a7b8-3d25-bf2c-93ace779622f,SESCO,II.1.1,Jujuy,AR-Y,annual,2020,naphtha combustion consumption by to the public,45.26861916114999,TJ,CH4,3.0,kg/TJ,135.80585748344998,kg -65f396d0-9b43-3bec-b1f4-7c4391c80988,SESCO,II.1.1,Jujuy,AR-Y,annual,2020,naphtha combustion consumption by to the public,45.26861916114999,TJ,N2O,0.6,kg/TJ,27.161171496689995,kg -3b2f3fb2-7aca-3748-bb1a-9925cfab1908,SESCO,II.1.1,La Pampa,AR-L,annual,2020,naphtha combustion consumption by to the public,364.02484451025,TJ,CO2,73300.0,kg/TJ,26683021.102601323,kg -0c443e4d-0d1b-3e56-a03c-2aacd6b3f9e3,SESCO,II.1.1,La Pampa,AR-L,annual,2020,naphtha combustion consumption by to the public,364.02484451025,TJ,CH4,3.0,kg/TJ,1092.07453353075,kg -8e146f8f-1206-30d6-afb8-5cbd1bfd6356,SESCO,II.1.1,La Pampa,AR-L,annual,2020,naphtha combustion consumption by to the public,364.02484451025,TJ,N2O,0.6,kg/TJ,218.41490670615,kg -ed03c3bc-cace-31a2-8b2a-5b706225065a,SESCO,II.1.1,Mendoza,AR-M,annual,2020,naphtha combustion consumption by to the public,66.03126119589999,TJ,CO2,73300.0,kg/TJ,4840091.445659469,kg -bea8d0fd-a9df-3d65-b799-53ab2a7aa760,SESCO,II.1.1,Mendoza,AR-M,annual,2020,naphtha combustion consumption by to the public,66.03126119589999,TJ,CH4,3.0,kg/TJ,198.09378358769996,kg -18a01196-c6d8-3fdc-9030-54c16cddb962,SESCO,II.1.1,Mendoza,AR-M,annual,2020,naphtha combustion consumption by to the public,66.03126119589999,TJ,N2O,0.6,kg/TJ,39.61875671753999,kg -a867a50e-6c16-3823-b3c7-5dd039d6adb5,SESCO,II.1.1,Misiones,AR-N,annual,2020,naphtha combustion consumption by to the public,11.751789268449999,TJ,CO2,73300.0,kg/TJ,861406.1533773849,kg -52cc106f-7763-31e6-8a7f-ec9abb7c3fd0,SESCO,II.1.1,Misiones,AR-N,annual,2020,naphtha combustion consumption by to the public,11.751789268449999,TJ,CH4,3.0,kg/TJ,35.25536780535,kg -a5e744a8-b26e-3f24-b8ef-7d8080ba356c,SESCO,II.1.1,Misiones,AR-N,annual,2020,naphtha combustion consumption by to the public,11.751789268449999,TJ,N2O,0.6,kg/TJ,7.051073561069999,kg -b0f4faee-85c6-3863-a0cd-af91ad1a7db0,SESCO,II.1.1,Neuquén,AR-Q,annual,2020,naphtha combustion consumption by to the public,271.645443377,TJ,CO2,73300.0,kg/TJ,19911610.9995341,kg -a146230b-0e0c-3b3f-864b-fd0b3a9c6d84,SESCO,II.1.1,Neuquén,AR-Q,annual,2020,naphtha combustion consumption by to the public,271.645443377,TJ,CH4,3.0,kg/TJ,814.936330131,kg -094f0c60-e5ac-3a70-b68b-9debfbe272fe,SESCO,II.1.1,Neuquén,AR-Q,annual,2020,naphtha combustion consumption by to the public,271.645443377,TJ,N2O,0.6,kg/TJ,162.9872660262,kg -4849db95-7b69-3b5e-a64f-8f58af3cff22,SESCO,II.1.1,Rio Negro,AR-R,annual,2020,naphtha combustion consumption by to the public,933.9548626023,TJ,CO2,73300.0,kg/TJ,68458891.4287486,kg -412b2d96-9e9b-3e3b-a515-3579b5159b67,SESCO,II.1.1,Rio Negro,AR-R,annual,2020,naphtha combustion consumption by to the public,933.9548626023,TJ,CH4,3.0,kg/TJ,2801.8645878069,kg -70363aa3-46e3-3794-ac7c-16b9cbde8565,SESCO,II.1.1,Rio Negro,AR-R,annual,2020,naphtha combustion consumption by to the public,933.9548626023,TJ,N2O,0.6,kg/TJ,560.37291756138,kg -47cc8231-7180-3c1f-9c0f-e7081bfddc06,SESCO,II.1.1,San Juan,AR-J,annual,2020,naphtha combustion consumption by to the public,117.1385853022,TJ,CO2,73300.0,kg/TJ,8586258.30265126,kg -f5667e74-a86b-32b6-85ed-b1fc301d5495,SESCO,II.1.1,San Juan,AR-J,annual,2020,naphtha combustion consumption by to the public,117.1385853022,TJ,CH4,3.0,kg/TJ,351.4157559066,kg -df6aa38f-0db4-3849-8c79-699f3731205f,SESCO,II.1.1,San Juan,AR-J,annual,2020,naphtha combustion consumption by to the public,117.1385853022,TJ,N2O,0.6,kg/TJ,70.28315118132,kg -03ddbcab-4349-33a6-b59c-72b8ccd2bac4,SESCO,II.1.1,San Luis,AR-D,annual,2020,naphtha combustion consumption by to the public,46.28455790804999,TJ,CO2,73300.0,kg/TJ,3392658.094660064,kg -b84f9699-52f1-3376-8966-419dcef28517,SESCO,II.1.1,San Luis,AR-D,annual,2020,naphtha combustion consumption by to the public,46.28455790804999,TJ,CH4,3.0,kg/TJ,138.85367372414998,kg -4e191495-96c2-39e4-8d20-037709c9874c,SESCO,II.1.1,San Luis,AR-D,annual,2020,naphtha combustion consumption by to the public,46.28455790804999,TJ,N2O,0.6,kg/TJ,27.770734744829994,kg -bbc9299c-0c09-3ff1-aa90-0509b566b3fe,SESCO,II.1.1,Santa Fe,AR-S,annual,2020,naphtha combustion consumption by to the public,719.5995939439998,TJ,CO2,73300.0,kg/TJ,52746650.23609519,kg -00762b57-6400-33eb-abcd-88e577ab6592,SESCO,II.1.1,Santa Fe,AR-S,annual,2020,naphtha combustion consumption by to the public,719.5995939439998,TJ,CH4,3.0,kg/TJ,2158.7987818319993,kg -7e075d6d-2c06-3042-bac9-f881623c791d,SESCO,II.1.1,Santa Fe,AR-S,annual,2020,naphtha combustion consumption by to the public,719.5995939439998,TJ,N2O,0.6,kg/TJ,431.75975636639987,kg -d238d445-1fd9-3723-a88d-32ce1c168fe2,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2020,naphtha combustion consumption by to the public,152.98383433409998,TJ,CO2,73300.0,kg/TJ,11213715.056689529,kg -fc4bca3d-f800-37a1-966d-48e460739b2c,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2020,naphtha combustion consumption by to the public,152.98383433409998,TJ,CH4,3.0,kg/TJ,458.95150300229994,kg -9aca2745-6500-3689-95ca-84bf0b4c73c3,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2020,naphtha combustion consumption by to the public,152.98383433409998,TJ,N2O,0.6,kg/TJ,91.79030060045999,kg -1dd8f9e8-66a7-38be-870b-4f5b58dd6291,SESCO,II.1.1,Tucuman,AR-T,annual,2020,naphtha combustion consumption by to the public,10.970394103899999,TJ,CO2,73300.0,kg/TJ,804129.8878158699,kg -d555ddf7-1b9e-3c69-981c-0c98b1475b70,SESCO,II.1.1,Tucuman,AR-T,annual,2020,naphtha combustion consumption by to the public,10.970394103899999,TJ,CH4,3.0,kg/TJ,32.911182311699996,kg -fd993851-8b45-3065-96a6-f2927c0162e5,SESCO,II.1.1,Tucuman,AR-T,annual,2020,naphtha combustion consumption by to the public,10.970394103899999,TJ,N2O,0.6,kg/TJ,6.582236462339999,kg -2941c585-0011-3d51-878f-e9a55db252cf,SESCO,II.1.1,Buenos Aires,AR-B,annual,2020,naphtha combustion consumption by to the public,487.60839225559994,TJ,CO2,73300.0,kg/TJ,35741695.15233547,kg -5110dea2-b5da-3139-8b62-786c598c0f67,SESCO,II.1.1,Buenos Aires,AR-B,annual,2020,naphtha combustion consumption by to the public,487.60839225559994,TJ,CH4,3.0,kg/TJ,1462.8251767667998,kg -c08b91f4-f28d-372a-8d69-f7299ce1da60,SESCO,II.1.1,Buenos Aires,AR-B,annual,2020,naphtha combustion consumption by to the public,487.60839225559994,TJ,N2O,0.6,kg/TJ,292.56503535336,kg -4b38b6a4-9ac6-3462-b9d0-183b61b169a0,SESCO,II.1.1,Capital Federal,AR-C,annual,2020,naphtha combustion consumption by to the public,37.739132804449994,TJ,CO2,73300.0,kg/TJ,2766278.4345661844,kg -500adcf1-98a3-377c-b89b-15c9e591350b,SESCO,II.1.1,Capital Federal,AR-C,annual,2020,naphtha combustion consumption by to the public,37.739132804449994,TJ,CH4,3.0,kg/TJ,113.21739841334998,kg -b160bc6d-0c4d-3f58-b870-72d416eee957,SESCO,II.1.1,Capital Federal,AR-C,annual,2020,naphtha combustion consumption by to the public,37.739132804449994,TJ,N2O,0.6,kg/TJ,22.643479682669994,kg -5dff04b8-62c3-3002-b993-99d808d0bebb,SESCO,II.1.1,Catamarca,AR-K,annual,2020,naphtha combustion consumption by to the public,1.5233286991999997,TJ,CO2,73300.0,kg/TJ,111659.99365135998,kg -740d4836-2798-3c6b-b943-8dc6c39afc5d,SESCO,II.1.1,Catamarca,AR-K,annual,2020,naphtha combustion consumption by to the public,1.5233286991999997,TJ,CH4,3.0,kg/TJ,4.569986097599999,kg -221af884-21bf-3f8a-82b6-7d0232c4c995,SESCO,II.1.1,Catamarca,AR-K,annual,2020,naphtha combustion consumption by to the public,1.5233286991999997,TJ,N2O,0.6,kg/TJ,0.9139972195199998,kg -4a633d46-4734-38c2-9cf2-2bd356e5897e,SESCO,II.1.1,Chaco,AR-H,annual,2020,naphtha combustion consumption by to the public,3.0035972582,TJ,CO2,73300.0,kg/TJ,220163.67902606,kg -68d87b4b-c940-31d2-8a98-80badf58f997,SESCO,II.1.1,Chaco,AR-H,annual,2020,naphtha combustion consumption by to the public,3.0035972582,TJ,CH4,3.0,kg/TJ,9.010791774600001,kg -961315e4-a92d-392e-9db2-0d1129173c7c,SESCO,II.1.1,Chaco,AR-H,annual,2020,naphtha combustion consumption by to the public,3.0035972582,TJ,N2O,0.6,kg/TJ,1.80215835492,kg -a9750b25-cf0d-3f95-b827-ee5e0b434fca,SESCO,II.1.1,Chubut,AR-U,annual,2020,naphtha combustion consumption by to the public,25.67180297605,TJ,CO2,73300.0,kg/TJ,1881743.158144465,kg -36fbeee1-2ff9-3e25-9439-2797a0e0dbb4,SESCO,II.1.1,Chubut,AR-U,annual,2020,naphtha combustion consumption by to the public,25.67180297605,TJ,CH4,3.0,kg/TJ,77.01540892815,kg -9d7a8964-fc0b-37e5-b15c-e436403df6c2,SESCO,II.1.1,Chubut,AR-U,annual,2020,naphtha combustion consumption by to the public,25.67180297605,TJ,N2O,0.6,kg/TJ,15.403081785629999,kg -80c898ec-7831-32c3-9909-9e6a40cde02b,SESCO,II.1.1,Corrientes,AR-W,annual,2020,naphtha combustion consumption by to the public,19.641096159299998,TJ,CO2,73300.0,kg/TJ,1439692.3484766898,kg -5e5ee8af-9365-3f86-878b-b0f734ab988d,SESCO,II.1.1,Corrientes,AR-W,annual,2020,naphtha combustion consumption by to the public,19.641096159299998,TJ,CH4,3.0,kg/TJ,58.923288477899995,kg -fb0fe8fa-4c74-3034-808f-b68664e0173c,SESCO,II.1.1,Corrientes,AR-W,annual,2020,naphtha combustion consumption by to the public,19.641096159299998,TJ,N2O,0.6,kg/TJ,11.784657695579998,kg -b3f438b5-588f-360a-b54b-a2842b672076,SESCO,II.1.1,Córdoba,AR-X,annual,2020,naphtha combustion consumption by to the public,61.297908829849995,TJ,CO2,73300.0,kg/TJ,4493136.717228005,kg -6029df51-9216-381c-b7f1-97732b2bbe53,SESCO,II.1.1,Córdoba,AR-X,annual,2020,naphtha combustion consumption by to the public,61.297908829849995,TJ,CH4,3.0,kg/TJ,183.89372648954998,kg -9d08115c-01a4-3c8f-a19d-f99e09ee0273,SESCO,II.1.1,Córdoba,AR-X,annual,2020,naphtha combustion consumption by to the public,61.297908829849995,TJ,N2O,0.6,kg/TJ,36.77874529790999,kg -1d140848-4fb9-3bcc-a5ac-310ef2e728eb,SESCO,II.1.1,Entre Rios,AR-E,annual,2020,naphtha combustion consumption by to the public,71.49895362995,TJ,CO2,73300.0,kg/TJ,5240873.301075335,kg -aec3eb92-0d5f-39ec-b2e4-897912123679,SESCO,II.1.1,Entre Rios,AR-E,annual,2020,naphtha combustion consumption by to the public,71.49895362995,TJ,CH4,3.0,kg/TJ,214.49686088984998,kg -534bcda0-a508-3cd4-ad02-f9f81d15dfe2,SESCO,II.1.1,Entre Rios,AR-E,annual,2020,naphtha combustion consumption by to the public,71.49895362995,TJ,N2O,0.6,kg/TJ,42.899372177969994,kg -58dee142-f231-3975-8757-1e224cdb9b34,SESCO,II.1.1,Formosa,AR-P,annual,2020,naphtha combustion consumption by to the public,0.3314288978,TJ,CO2,73300.0,kg/TJ,24293.73820874,kg -000e83c6-3e7b-339f-9d4f-bb13b69310e3,SESCO,II.1.1,Formosa,AR-P,annual,2020,naphtha combustion consumption by to the public,0.3314288978,TJ,CH4,3.0,kg/TJ,0.9942866934000001,kg -6e3e6ae2-48ee-3782-ac97-5db8018b5e70,SESCO,II.1.1,Formosa,AR-P,annual,2020,naphtha combustion consumption by to the public,0.3314288978,TJ,N2O,0.6,kg/TJ,0.19885733868,kg -9ed4fca5-cc89-37a2-852e-7de9ee542225,SESCO,II.1.1,La Pampa,AR-L,annual,2020,naphtha combustion consumption by to the public,70.08333627294999,TJ,CO2,73300.0,kg/TJ,5137108.5488072345,kg -d9433a70-04b6-3c0c-a1ea-f1ba8999c3f5,SESCO,II.1.1,La Pampa,AR-L,annual,2020,naphtha combustion consumption by to the public,70.08333627294999,TJ,CH4,3.0,kg/TJ,210.25000881884998,kg -39a5d989-70f3-34ed-b27c-989f2d95234c,SESCO,II.1.1,La Pampa,AR-L,annual,2020,naphtha combustion consumption by to the public,70.08333627294999,TJ,N2O,0.6,kg/TJ,42.05000176376999,kg -8cd24c4f-c832-32f5-983f-b19fd6cda70d,SESCO,II.1.1,Mendoza,AR-M,annual,2020,naphtha combustion consumption by to the public,7.711363606099999,TJ,CO2,73300.0,kg/TJ,565242.9523271299,kg -1198f577-1c45-3af5-8922-7ae3b8a86a26,SESCO,II.1.1,Mendoza,AR-M,annual,2020,naphtha combustion consumption by to the public,7.711363606099999,TJ,CH4,3.0,kg/TJ,23.134090818299995,kg -fd23244a-9bd1-36d3-a503-71dd35a377e8,SESCO,II.1.1,Mendoza,AR-M,annual,2020,naphtha combustion consumption by to the public,7.711363606099999,TJ,N2O,0.6,kg/TJ,4.626818163659999,kg -2522534e-6ce2-3a9e-b30c-80db8574ca06,SESCO,II.1.1,Misiones,AR-N,annual,2020,naphtha combustion consumption by to the public,0.9655900985499998,TJ,CO2,73300.0,kg/TJ,70777.75422371499,kg -f6c2cc35-8f16-30d3-93e1-207bcab8328b,SESCO,II.1.1,Misiones,AR-N,annual,2020,naphtha combustion consumption by to the public,0.9655900985499998,TJ,CH4,3.0,kg/TJ,2.896770295649999,kg -881e0890-09ef-3036-8534-b2f1b06e43b9,SESCO,II.1.1,Misiones,AR-N,annual,2020,naphtha combustion consumption by to the public,0.9655900985499998,TJ,N2O,0.6,kg/TJ,0.5793540591299998,kg -f84c25f7-4cdf-34d3-b98d-51b715ef8370,SESCO,II.1.1,Neuquén,AR-Q,annual,2020,naphtha combustion consumption by to the public,83.45814517424999,TJ,CO2,73300.0,kg/TJ,6117482.041272525,kg -d2afa1cf-c5fa-358d-8d48-364c875de5e4,SESCO,II.1.1,Neuquén,AR-Q,annual,2020,naphtha combustion consumption by to the public,83.45814517424999,TJ,CH4,3.0,kg/TJ,250.37443552275,kg -66c824b1-a8fa-3b09-8a77-c8fd0007e21d,SESCO,II.1.1,Neuquén,AR-Q,annual,2020,naphtha combustion consumption by to the public,83.45814517424999,TJ,N2O,0.6,kg/TJ,50.074887104549994,kg -2abf7cfc-8894-3d80-b151-eeb1de1b90e1,SESCO,II.1.1,Rio Negro,AR-R,annual,2020,naphtha combustion consumption by to the public,126.96300635480002,TJ,CO2,73300.0,kg/TJ,9306388.36580684,kg -80bd9e8a-344b-38a3-8316-c19eb172266d,SESCO,II.1.1,Rio Negro,AR-R,annual,2020,naphtha combustion consumption by to the public,126.96300635480002,TJ,CH4,3.0,kg/TJ,380.88901906440003,kg -bb511789-9ab9-3ea4-ad52-f06b7a1209c3,SESCO,II.1.1,Rio Negro,AR-R,annual,2020,naphtha combustion consumption by to the public,126.96300635480002,TJ,N2O,0.6,kg/TJ,76.17780381288,kg -86b08bf3-282e-392f-b9d2-fc0226788b47,SESCO,II.1.1,San Juan,AR-J,annual,2020,naphtha combustion consumption by to the public,13.315555464749998,TJ,CO2,73300.0,kg/TJ,976030.2155661748,kg -acadd80a-fc63-37ca-b74d-fadc9c78434d,SESCO,II.1.1,San Juan,AR-J,annual,2020,naphtha combustion consumption by to the public,13.315555464749998,TJ,CH4,3.0,kg/TJ,39.946666394249995,kg -afbd9c83-eb06-3bc2-b3bb-8939d15c9289,SESCO,II.1.1,San Juan,AR-J,annual,2020,naphtha combustion consumption by to the public,13.315555464749998,TJ,N2O,0.6,kg/TJ,7.989333278849998,kg -9948a4ae-6f4b-3a16-bee1-66c790ae0091,SESCO,II.1.1,San Luis,AR-D,annual,2020,naphtha combustion consumption by to the public,9.8467440148,TJ,CO2,73300.0,kg/TJ,721766.33628484,kg -53a3ce20-a7a6-3468-ac50-3870e4cb46ad,SESCO,II.1.1,San Luis,AR-D,annual,2020,naphtha combustion consumption by to the public,9.8467440148,TJ,CH4,3.0,kg/TJ,29.5402320444,kg -265c60de-0a9e-361b-85dc-b3eb20fb9971,SESCO,II.1.1,San Luis,AR-D,annual,2020,naphtha combustion consumption by to the public,9.8467440148,TJ,N2O,0.6,kg/TJ,5.90804640888,kg -20500e23-1930-33e2-b67c-9201f32068ff,SESCO,II.1.1,Santa Fe,AR-S,annual,2020,naphtha combustion consumption by to the public,146.06530183629997,TJ,CO2,73300.0,kg/TJ,10706586.624600787,kg -fd16361f-688e-3f6f-bcbe-fdba5775eb6a,SESCO,II.1.1,Santa Fe,AR-S,annual,2020,naphtha combustion consumption by to the public,146.06530183629997,TJ,CH4,3.0,kg/TJ,438.1959055088999,kg -57e0feb2-91d0-31fb-9c37-c4cb34828ff1,SESCO,II.1.1,Santa Fe,AR-S,annual,2020,naphtha combustion consumption by to the public,146.06530183629997,TJ,N2O,0.6,kg/TJ,87.63918110177998,kg -07a01224-e8c2-3d3e-9381-20a9d2ef4384,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2020,naphtha combustion consumption by to the public,29.90029654535,TJ,CO2,73300.0,kg/TJ,2191691.736774155,kg -a2bd6f83-104c-36e8-9dbc-737e655920af,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2020,naphtha combustion consumption by to the public,29.90029654535,TJ,CH4,3.0,kg/TJ,89.70088963605,kg -3353fbe9-4c80-318e-b4ee-664cbeb68580,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2020,naphtha combustion consumption by to the public,29.90029654535,TJ,N2O,0.6,kg/TJ,17.940177927209998,kg -8540b975-9294-3b17-80a7-6303e2bc1d18,SESCO,II.1.1,Tucuman,AR-T,annual,2020,naphtha combustion consumption by to the public,0.2716570318,TJ,CO2,73300.0,kg/TJ,19912.460430940002,kg -9236c9e7-40e9-394d-a85e-25baf9741633,SESCO,II.1.1,Tucuman,AR-T,annual,2020,naphtha combustion consumption by to the public,0.2716570318,TJ,CH4,3.0,kg/TJ,0.8149710954,kg -ca7817e9-8dfe-3d73-9ef6-2b309e7a1a8a,SESCO,II.1.1,Tucuman,AR-T,annual,2020,naphtha combustion consumption by to the public,0.2716570318,TJ,N2O,0.6,kg/TJ,0.16299421908,kg -d496dc37-ab8e-383a-9b67-a6f38d9745d2,SESCO,I.3.1,Buenos Aires,AR-B,annual,2020,naphtha combustion consumption by petrochemical industries,49.975989063,TJ,CO2,73300.0,kg/TJ,3663239.9983179,kg -35081439-cf99-3fed-ae48-0a7888f0a8c2,SESCO,I.3.1,Buenos Aires,AR-B,annual,2020,naphtha combustion consumption by petrochemical industries,49.975989063,TJ,CH4,3.0,kg/TJ,149.92796718900001,kg -5adf5e19-1190-359f-8c7c-a7dd3a50b1ce,SESCO,I.3.1,Buenos Aires,AR-B,annual,2020,naphtha combustion consumption by petrochemical industries,49.975989063,TJ,N2O,0.6,kg/TJ,29.9855934378,kg -bdc096fc-b1a8-3e46-869c-2e55b1d04054,SESCO,I.3.1,Capital Federal,AR-C,annual,2020,naphtha combustion consumption by petrochemical industries,7.552998657049999,TJ,CO2,73300.0,kg/TJ,553634.8015617649,kg -978ce009-75ec-37f3-b7a8-befb7ca66593,SESCO,I.3.1,Capital Federal,AR-C,annual,2020,naphtha combustion consumption by petrochemical industries,7.552998657049999,TJ,CH4,3.0,kg/TJ,22.65899597115,kg -3a9b04ac-b010-3b01-9f61-7432208bd831,SESCO,I.3.1,Capital Federal,AR-C,annual,2020,naphtha combustion consumption by petrochemical industries,7.552998657049999,TJ,N2O,0.6,kg/TJ,4.5317991942299996,kg -e1057402-9c9b-3c93-9a10-6d1a2d9f29b6,SESCO,I.3.1,Catamarca,AR-K,annual,2020,naphtha combustion consumption by petrochemical industries,4.45571814765,TJ,CO2,73300.0,kg/TJ,326604.140222745,kg -bb837502-2977-38de-9208-53af11539d31,SESCO,I.3.1,Catamarca,AR-K,annual,2020,naphtha combustion consumption by petrochemical industries,4.45571814765,TJ,CH4,3.0,kg/TJ,13.36715444295,kg -d76339c4-e451-332c-aef8-e285e456eb4c,SESCO,I.3.1,Catamarca,AR-K,annual,2020,naphtha combustion consumption by petrochemical industries,4.45571814765,TJ,N2O,0.6,kg/TJ,2.67343088859,kg -c1d11546-9614-3965-8a27-882d12a9aec9,SESCO,I.3.1,Chaco,AR-H,annual,2020,naphtha combustion consumption by petrochemical industries,5.643318034199999,TJ,CO2,73300.0,kg/TJ,413655.21190685994,kg -4082f747-1667-399c-a064-0bd4fc976547,SESCO,I.3.1,Chaco,AR-H,annual,2020,naphtha combustion consumption by petrochemical industries,5.643318034199999,TJ,CH4,3.0,kg/TJ,16.929954102599996,kg -f2183248-6400-3d69-9f00-4729d5230167,SESCO,I.3.1,Chaco,AR-H,annual,2020,naphtha combustion consumption by petrochemical industries,5.643318034199999,TJ,N2O,0.6,kg/TJ,3.3859908205199996,kg -9f161ba9-756f-314e-a24e-5f22ecf498b3,SESCO,I.3.1,Chubut,AR-U,annual,2020,naphtha combustion consumption by petrochemical industries,0.94698763005,TJ,CO2,73300.0,kg/TJ,69414.193282665,kg -37bc84a9-4b9f-3ea6-9835-f594fad3b083,SESCO,I.3.1,Chubut,AR-U,annual,2020,naphtha combustion consumption by petrochemical industries,0.94698763005,TJ,CH4,3.0,kg/TJ,2.84096289015,kg -c0e79b8a-fe50-32f5-9fe2-542983745dce,SESCO,I.3.1,Chubut,AR-U,annual,2020,naphtha combustion consumption by petrochemical industries,0.94698763005,TJ,N2O,0.6,kg/TJ,0.56819257803,kg -0ca1b686-16d0-376c-b7d0-bb104c322b61,SESCO,I.3.1,Córdoba,AR-X,annual,2020,naphtha combustion consumption by petrochemical industries,17.9638244093,TJ,CO2,73300.0,kg/TJ,1316748.32920169,kg -a02b01fc-2e8d-32e5-b69a-8685d5f105bf,SESCO,I.3.1,Córdoba,AR-X,annual,2020,naphtha combustion consumption by petrochemical industries,17.9638244093,TJ,CH4,3.0,kg/TJ,53.89147322789999,kg -b9a7613e-3dc4-3881-8afe-6529606c8fe7,SESCO,I.3.1,Córdoba,AR-X,annual,2020,naphtha combustion consumption by petrochemical industries,17.9638244093,TJ,N2O,0.6,kg/TJ,10.778294645579999,kg -18dd0cf9-da4a-369e-9292-7f388482d91a,SESCO,I.3.1,Entre Rios,AR-E,annual,2020,naphtha combustion consumption by petrochemical industries,11.008635899799998,TJ,CO2,73300.0,kg/TJ,806933.0114553398,kg -ff932022-449d-38aa-a768-0d4edab920bf,SESCO,I.3.1,Entre Rios,AR-E,annual,2020,naphtha combustion consumption by petrochemical industries,11.008635899799998,TJ,CH4,3.0,kg/TJ,33.025907699399994,kg -9bdbdb45-cd65-339d-8e2e-611adbb212ad,SESCO,I.3.1,Entre Rios,AR-E,annual,2020,naphtha combustion consumption by petrochemical industries,11.008635899799998,TJ,N2O,0.6,kg/TJ,6.6051815398799985,kg -5845c12b-a6f3-34b6-8124-460988b70857,SESCO,I.3.1,La Pampa,AR-L,annual,2020,naphtha combustion consumption by petrochemical industries,13.235961296249998,TJ,CO2,73300.0,kg/TJ,970195.9630151249,kg -f66125a4-487d-32c3-bc53-88c19bc17589,SESCO,I.3.1,La Pampa,AR-L,annual,2020,naphtha combustion consumption by petrochemical industries,13.235961296249998,TJ,CH4,3.0,kg/TJ,39.70788388875,kg -816c2d4b-ff4b-35d8-a756-cc28dfe228b3,SESCO,I.3.1,La Pampa,AR-L,annual,2020,naphtha combustion consumption by petrochemical industries,13.235961296249998,TJ,N2O,0.6,kg/TJ,7.941576777749999,kg -fcec4f7d-9925-30f5-812d-18c5fae7367d,SESCO,I.3.1,Mendoza,AR-M,annual,2020,naphtha combustion consumption by petrochemical industries,2.3409834293999996,TJ,CO2,73300.0,kg/TJ,171594.08537501996,kg -b55d4c74-5720-357d-a10e-9c190430f80e,SESCO,I.3.1,Mendoza,AR-M,annual,2020,naphtha combustion consumption by petrochemical industries,2.3409834293999996,TJ,CH4,3.0,kg/TJ,7.022950288199999,kg -21a64993-4112-3e49-8b67-9af0969b324e,SESCO,I.3.1,Mendoza,AR-M,annual,2020,naphtha combustion consumption by petrochemical industries,2.3409834293999996,TJ,N2O,0.6,kg/TJ,1.4045900576399997,kg -b71af444-45d0-3860-8391-541e5e22ed3f,SESCO,I.3.1,Misiones,AR-N,annual,2020,naphtha combustion consumption by petrochemical industries,3.0426624420499992,TJ,CO2,73300.0,kg/TJ,223027.15700226495,kg -5c494b2f-e776-3810-a68d-3cdf1c29d365,SESCO,I.3.1,Misiones,AR-N,annual,2020,naphtha combustion consumption by petrochemical industries,3.0426624420499992,TJ,CH4,3.0,kg/TJ,9.127987326149999,kg -20640b78-6a28-3a4c-b951-013f2bc1f9a8,SESCO,I.3.1,Misiones,AR-N,annual,2020,naphtha combustion consumption by petrochemical industries,3.0426624420499992,TJ,N2O,0.6,kg/TJ,1.8255974652299995,kg -aba8e54c-be5a-360d-a721-1a27842ca352,SESCO,I.3.1,Neuquén,AR-Q,annual,2020,naphtha combustion consumption by petrochemical industries,3.966564713649999,TJ,CO2,73300.0,kg/TJ,290749.19351054495,kg -62823f79-eccb-3bf0-8988-6e960d4c75c2,SESCO,I.3.1,Neuquén,AR-Q,annual,2020,naphtha combustion consumption by petrochemical industries,3.966564713649999,TJ,CH4,3.0,kg/TJ,11.899694140949997,kg -13f93305-7954-3458-8c8f-38811f407800,SESCO,I.3.1,Neuquén,AR-Q,annual,2020,naphtha combustion consumption by petrochemical industries,3.966564713649999,TJ,N2O,0.6,kg/TJ,2.3799388281899994,kg -8151558b-7c58-3362-a524-bae2e005abbf,SESCO,I.3.1,Rio Negro,AR-R,annual,2020,naphtha combustion consumption by petrochemical industries,9.534100560599999,TJ,CO2,73300.0,kg/TJ,698849.57109198,kg -57b7b467-f593-3c15-9a57-05f66e9ff303,SESCO,I.3.1,Rio Negro,AR-R,annual,2020,naphtha combustion consumption by petrochemical industries,9.534100560599999,TJ,CH4,3.0,kg/TJ,28.602301681799997,kg -f191133d-e91e-35cb-8320-2ca0bb72fcd7,SESCO,I.3.1,Rio Negro,AR-R,annual,2020,naphtha combustion consumption by petrochemical industries,9.534100560599999,TJ,N2O,0.6,kg/TJ,5.7204603363599995,kg -7582393f-e857-39ae-9161-00fde4a697e0,SESCO,I.3.1,San Luis,AR-D,annual,2020,naphtha combustion consumption by petrochemical industries,1.95694919035,TJ,CO2,73300.0,kg/TJ,143444.375652655,kg -e0fa39a2-612f-3de2-8c59-bffca22599ee,SESCO,I.3.1,San Luis,AR-D,annual,2020,naphtha combustion consumption by petrochemical industries,1.95694919035,TJ,CH4,3.0,kg/TJ,5.87084757105,kg -72b2d825-b9d9-3fff-b263-976ad6ad3bf9,SESCO,I.3.1,San Luis,AR-D,annual,2020,naphtha combustion consumption by petrochemical industries,1.95694919035,TJ,N2O,0.6,kg/TJ,1.17416951421,kg -457b7bf2-3dc9-3977-beb5-264b4c8f46c9,SESCO,I.3.1,Santa Fe,AR-S,annual,2020,naphtha combustion consumption by petrochemical industries,50.567883015650004,TJ,CO2,73300.0,kg/TJ,3706625.825047145,kg -556c727a-3ea1-30b5-89bb-f4b94523aa18,SESCO,I.3.1,Santa Fe,AR-S,annual,2020,naphtha combustion consumption by petrochemical industries,50.567883015650004,TJ,CH4,3.0,kg/TJ,151.70364904695,kg -ac31e64d-42f0-3042-839d-44944e0ea11a,SESCO,I.3.1,Santa Fe,AR-S,annual,2020,naphtha combustion consumption by petrochemical industries,50.567883015650004,TJ,N2O,0.6,kg/TJ,30.34072980939,kg -7e13197e-1778-31c4-a2de-78bb45097e94,SESCO,I.3.1,Santiago del Estero,AR-G,annual,2020,naphtha combustion consumption by petrochemical industries,0.75986509445,TJ,CO2,73300.0,kg/TJ,55698.11142318499,kg -eeb9af90-0b27-3f93-86fd-b721a65438dd,SESCO,I.3.1,Santiago del Estero,AR-G,annual,2020,naphtha combustion consumption by petrochemical industries,0.75986509445,TJ,CH4,3.0,kg/TJ,2.27959528335,kg -96feb93b-beb4-337e-8817-af16a350bc94,SESCO,I.3.1,Santiago del Estero,AR-G,annual,2020,naphtha combustion consumption by petrochemical industries,0.75986509445,TJ,N2O,0.6,kg/TJ,0.45591905666999993,kg -bd6c2d87-a4a5-302a-915a-f553a1bcb9c3,SESCO,I.3.1,Tucuman,AR-T,annual,2020,naphtha combustion consumption by petrochemical industries,4.16667848135,TJ,CO2,73300.0,kg/TJ,305417.532682955,kg -a672e123-8dd1-36ae-9ca8-19087f97cb7d,SESCO,I.3.1,Tucuman,AR-T,annual,2020,naphtha combustion consumption by petrochemical industries,4.16667848135,TJ,CH4,3.0,kg/TJ,12.500035444049999,kg -9d7ad2fe-bbfc-3b21-94d8-b41e04ae0f9f,SESCO,I.3.1,Tucuman,AR-T,annual,2020,naphtha combustion consumption by petrochemical industries,4.16667848135,TJ,N2O,0.6,kg/TJ,2.50000708881,kg -60dde477-7303-3385-8157-45c445ded39d,SESCO,I.3.1,Buenos Aires,AR-B,annual,2020,naphtha combustion consumption by petrochemical industries,2.0431609583,TJ,CO2,73300.0,kg/TJ,149763.69824339,kg -4cc7b612-2168-39d3-bd1e-4655fb7aa487,SESCO,I.3.1,Buenos Aires,AR-B,annual,2020,naphtha combustion consumption by petrochemical industries,2.0431609583,TJ,CH4,3.0,kg/TJ,6.129482874900001,kg -55dd3cc4-6a33-372c-afcd-87e2ddb0bb0a,SESCO,I.3.1,Buenos Aires,AR-B,annual,2020,naphtha combustion consumption by petrochemical industries,2.0431609583,TJ,N2O,0.6,kg/TJ,1.22589657498,kg -68a79d48-ac9f-35f0-8257-526f20219343,SESCO,I.3.1,Capital Federal,AR-C,annual,2020,naphtha combustion consumption by petrochemical industries,0.8852640296499998,TJ,CO2,73300.0,kg/TJ,64889.85337334499,kg -41a37403-0cd2-3f18-a601-2236fac061f1,SESCO,I.3.1,Capital Federal,AR-C,annual,2020,naphtha combustion consumption by petrochemical industries,0.8852640296499998,TJ,CH4,3.0,kg/TJ,2.6557920889499993,kg -9e08a97d-0f6b-3d51-9753-440efb811640,SESCO,I.3.1,Capital Federal,AR-C,annual,2020,naphtha combustion consumption by petrochemical industries,0.8852640296499998,TJ,N2O,0.6,kg/TJ,0.5311584177899998,kg -b1af0f59-bf80-3406-9dd1-17850a3eccaa,SESCO,I.3.1,Chubut,AR-U,annual,2020,naphtha combustion consumption by petrochemical industries,0.1533331338,TJ,CO2,73300.0,kg/TJ,11239.31870754,kg -7444fbc6-4749-33e7-b250-2194a24873ee,SESCO,I.3.1,Chubut,AR-U,annual,2020,naphtha combustion consumption by petrochemical industries,0.1533331338,TJ,CH4,3.0,kg/TJ,0.45999940139999995,kg -f4680212-e05d-3122-a6af-60972ed23f6d,SESCO,I.3.1,Chubut,AR-U,annual,2020,naphtha combustion consumption by petrochemical industries,0.1533331338,TJ,N2O,0.6,kg/TJ,0.09199988027999999,kg -4261ec96-873f-3fa8-8a71-2bbc6c6de0f5,SESCO,I.3.1,Córdoba,AR-X,annual,2020,naphtha combustion consumption by petrochemical industries,1.12898686285,TJ,CO2,73300.0,kg/TJ,82754.737046905,kg -f84c4707-eaa5-3176-bd7f-26c752a65a5b,SESCO,I.3.1,Córdoba,AR-X,annual,2020,naphtha combustion consumption by petrochemical industries,1.12898686285,TJ,CH4,3.0,kg/TJ,3.38696058855,kg -cbffb8f2-ce07-3d1e-9887-57e54ad4b868,SESCO,I.3.1,Córdoba,AR-X,annual,2020,naphtha combustion consumption by petrochemical industries,1.12898686285,TJ,N2O,0.6,kg/TJ,0.67739211771,kg -25032ca3-f9e0-308f-947b-5a3387f5becf,SESCO,I.3.1,Entre Rios,AR-E,annual,2020,naphtha combustion consumption by petrochemical industries,0.8234489416999998,TJ,CO2,73300.0,kg/TJ,60358.80742660999,kg -fc6372bb-df50-334b-90b3-6724d4a0cd3c,SESCO,I.3.1,Entre Rios,AR-E,annual,2020,naphtha combustion consumption by petrochemical industries,0.8234489416999998,TJ,CH4,3.0,kg/TJ,2.4703468250999996,kg -ed33b3d5-56d7-3563-b273-c980ab95897c,SESCO,I.3.1,Entre Rios,AR-E,annual,2020,naphtha combustion consumption by petrochemical industries,0.8234489416999998,TJ,N2O,0.6,kg/TJ,0.4940693650199999,kg -43a75237-09ad-3253-85c7-2b7971fb7f7f,SESCO,I.3.1,La Pampa,AR-L,annual,2020,naphtha combustion consumption by petrochemical industries,3.12085380145,TJ,CO2,73300.0,kg/TJ,228758.583646285,kg -3f6797bf-c783-3f80-b620-3d87507d68f2,SESCO,I.3.1,La Pampa,AR-L,annual,2020,naphtha combustion consumption by petrochemical industries,3.12085380145,TJ,CH4,3.0,kg/TJ,9.36256140435,kg -ba083379-395d-34aa-bcf1-d1b24c520a9f,SESCO,I.3.1,La Pampa,AR-L,annual,2020,naphtha combustion consumption by petrochemical industries,3.12085380145,TJ,N2O,0.6,kg/TJ,1.8725122808699999,kg -d0ead301-8529-3d97-be34-0d393d24d4b4,SESCO,I.3.1,Santa Fe,AR-S,annual,2020,naphtha combustion consumption by petrochemical industries,2.3766635738999997,TJ,CO2,73300.0,kg/TJ,174209.43996686998,kg -a14f0cc7-17fd-392d-a9ab-63371098ca09,SESCO,I.3.1,Santa Fe,AR-S,annual,2020,naphtha combustion consumption by petrochemical industries,2.3766635738999997,TJ,CH4,3.0,kg/TJ,7.129990721699999,kg -f1e47498-66f5-33dd-9b23-97558e6763cd,SESCO,I.3.1,Santa Fe,AR-S,annual,2020,naphtha combustion consumption by petrochemical industries,2.3766635738999997,TJ,N2O,0.6,kg/TJ,1.4259981443399998,kg -44ed8f5c-dfb4-3c7c-add7-c1fa2ce5cb6c,SESCO,I.3.1,Santiago del Estero,AR-G,annual,2020,naphtha combustion consumption by petrochemical industries,0.12103802864999999,TJ,CO2,73300.0,kg/TJ,8872.087500045,kg -98c2741b-b61c-34dd-b165-b0d73be562d2,SESCO,I.3.1,Santiago del Estero,AR-G,annual,2020,naphtha combustion consumption by petrochemical industries,0.12103802864999999,TJ,CH4,3.0,kg/TJ,0.36311408594999994,kg -58b363bc-9ced-3bd4-94a4-ca89b3ccc105,SESCO,I.3.1,Santiago del Estero,AR-G,annual,2020,naphtha combustion consumption by petrochemical industries,0.12103802864999999,TJ,N2O,0.6,kg/TJ,0.07262281719,kg -ab8cde61-6718-3603-827e-851ca299b614,SESCO,I.3.1,Tucuman,AR-T,annual,2020,naphtha combustion consumption by petrochemical industries,0.12256282115,TJ,CO2,73300.0,kg/TJ,8983.854790295,kg -2bf385c4-3e8d-3ae8-8bcd-f469c0652325,SESCO,I.3.1,Tucuman,AR-T,annual,2020,naphtha combustion consumption by petrochemical industries,0.12256282115,TJ,CH4,3.0,kg/TJ,0.36768846345,kg -a6f8f714-4f6b-382c-8bbf-1847c240290f,SESCO,I.3.1,Tucuman,AR-T,annual,2020,naphtha combustion consumption by petrochemical industries,0.12256282115,TJ,N2O,0.6,kg/TJ,0.07353769269,kg -185e0873-e306-3a6e-a080-407eae5f1a01,SESCO,II.5.1,Buenos Aires,AR-B,annual,2020,naphtha combustion consumption by agriculture machines,0.24396679999999998,TJ,CO2,73300.0,kg/TJ,17882.76644,kg -d612a49e-38fa-3b5f-a462-30984969d70d,SESCO,II.5.1,Buenos Aires,AR-B,annual,2020,naphtha combustion consumption by agriculture machines,0.24396679999999998,TJ,CH4,3.0,kg/TJ,0.7319004,kg -59dbddd6-1c76-300c-8f73-ad3ef855af51,SESCO,II.5.1,Buenos Aires,AR-B,annual,2020,naphtha combustion consumption by agriculture machines,0.24396679999999998,TJ,N2O,0.6,kg/TJ,0.14638008,kg -783799ae-6f45-3481-b9eb-f9e5a0b8dc5b,SESCO,II.5.1,Salta,AR-A,annual,2020,naphtha combustion consumption by agriculture machines,0.6709086999999999,TJ,CO2,73300.0,kg/TJ,49177.60771,kg -10e893c3-0366-392f-851d-c646b3b37035,SESCO,II.5.1,Salta,AR-A,annual,2020,naphtha combustion consumption by agriculture machines,0.6709086999999999,TJ,CH4,3.0,kg/TJ,2.0127260999999996,kg -0fac6410-564a-3ac5-ad10-fe15f5a6de24,SESCO,II.5.1,Salta,AR-A,annual,2020,naphtha combustion consumption by agriculture machines,0.6709086999999999,TJ,N2O,0.6,kg/TJ,0.4025452199999999,kg -9a715bbf-2630-3239-a623-7d1f2e4aa868,SESCO,II.5.1,Santa Fe,AR-S,annual,2020,naphtha combustion consumption by agriculture machines,2.40917215,TJ,CO2,73300.0,kg/TJ,176592.318595,kg -dceb9b44-bcba-326a-82ac-84dbb5a34263,SESCO,II.5.1,Santa Fe,AR-S,annual,2020,naphtha combustion consumption by agriculture machines,2.40917215,TJ,CH4,3.0,kg/TJ,7.2275164499999995,kg -b9a77a7f-f1d6-38e0-8f37-453d785678c9,SESCO,II.5.1,Santa Fe,AR-S,annual,2020,naphtha combustion consumption by agriculture machines,2.40917215,TJ,N2O,0.6,kg/TJ,1.4455032899999998,kg -c2640919-d1f5-3164-ba65-887e552716ec,SESCO,II.1.1,Buenos Aires,AR-B,annual,2020,naphtha combustion consumption by to the public,27237.856361099995,TJ,CO2,73300.0,kg/TJ,1996534871.2686296,kg -23940917-ba5f-3344-9692-47f48535cafc,SESCO,II.1.1,Buenos Aires,AR-B,annual,2020,naphtha combustion consumption by to the public,27237.856361099995,TJ,CH4,3.0,kg/TJ,81713.56908329998,kg -72bf5268-8d33-3e3f-af84-e06feac7919b,SESCO,II.1.1,Buenos Aires,AR-B,annual,2020,naphtha combustion consumption by to the public,27237.856361099995,TJ,N2O,0.6,kg/TJ,16342.713816659996,kg -85d94097-0d2f-3330-904e-c784d1699dcd,SESCO,II.1.1,Capital Federal,AR-C,annual,2020,naphtha combustion consumption by to the public,4648.573903049999,TJ,CO2,73300.0,kg/TJ,340740467.0935649,kg -7129910d-4d3e-3369-ba06-bf0e3fade149,SESCO,II.1.1,Capital Federal,AR-C,annual,2020,naphtha combustion consumption by to the public,4648.573903049999,TJ,CH4,3.0,kg/TJ,13945.721709149997,kg -ee73888b-57d0-30c1-a710-a5016b0034da,SESCO,II.1.1,Capital Federal,AR-C,annual,2020,naphtha combustion consumption by to the public,4648.573903049999,TJ,N2O,0.6,kg/TJ,2789.144341829999,kg -2397df14-1cbf-3d2f-afe9-b7d3aa10c354,SESCO,II.1.1,Catamarca,AR-K,annual,2020,naphtha combustion consumption by to the public,592.0464318999999,TJ,CO2,73300.0,kg/TJ,43397003.45826999,kg -b0a9ab43-50c7-3d14-bfe2-145ddad45d63,SESCO,II.1.1,Catamarca,AR-K,annual,2020,naphtha combustion consumption by to the public,592.0464318999999,TJ,CH4,3.0,kg/TJ,1776.1392956999998,kg -21e18ed9-0eed-3edf-8181-6710075bdacd,SESCO,II.1.1,Catamarca,AR-K,annual,2020,naphtha combustion consumption by to the public,592.0464318999999,TJ,N2O,0.6,kg/TJ,355.2278591399999,kg -1a9b7277-1914-3675-94cc-cce3348e77ca,SESCO,II.1.1,Chaco,AR-H,annual,2020,naphtha combustion consumption by to the public,1656.50407615,TJ,CO2,73300.0,kg/TJ,121421748.781795,kg -64191ef4-0f1e-362a-af73-9f1d36e6a8d9,SESCO,II.1.1,Chaco,AR-H,annual,2020,naphtha combustion consumption by to the public,1656.50407615,TJ,CH4,3.0,kg/TJ,4969.512228449999,kg -61d05f80-18db-3a60-8888-ed1cb5f2f9c1,SESCO,II.1.1,Chaco,AR-H,annual,2020,naphtha combustion consumption by to the public,1656.50407615,TJ,N2O,0.6,kg/TJ,993.9024456899999,kg -f784ab46-0e9a-3f11-a39d-9fc9ad4ad662,SESCO,II.1.1,Chubut,AR-U,annual,2020,naphtha combustion consumption by to the public,2381.1464638499997,TJ,CO2,73300.0,kg/TJ,174538035.80020496,kg -c38b5312-1453-31b5-b164-6480ba1523f7,SESCO,II.1.1,Chubut,AR-U,annual,2020,naphtha combustion consumption by to the public,2381.1464638499997,TJ,CH4,3.0,kg/TJ,7143.439391549999,kg -6923ac73-49fd-3e42-a759-c50a1da5c2a5,SESCO,II.1.1,Chubut,AR-U,annual,2020,naphtha combustion consumption by to the public,2381.1464638499997,TJ,N2O,0.6,kg/TJ,1428.6878783099999,kg -659a3cc9-57be-3f9c-aa3f-e0d4335f9318,SESCO,II.1.1,Corrientes,AR-W,annual,2020,naphtha combustion consumption by to the public,1739.7882424999998,TJ,CO2,73300.0,kg/TJ,127526478.17524998,kg -930365da-4336-304a-aac9-3ec37ab37e10,SESCO,II.1.1,Corrientes,AR-W,annual,2020,naphtha combustion consumption by to the public,1739.7882424999998,TJ,CH4,3.0,kg/TJ,5219.364727499999,kg -505be64c-b793-3ec3-8632-55f61f3759f2,SESCO,II.1.1,Corrientes,AR-W,annual,2020,naphtha combustion consumption by to the public,1739.7882424999998,TJ,N2O,0.6,kg/TJ,1043.8729454999998,kg -db8eadda-a614-3e38-ab14-10645100981a,SESCO,II.1.1,Córdoba,AR-X,annual,2020,naphtha combustion consumption by to the public,6713.356419,TJ,CO2,73300.0,kg/TJ,492089025.51269996,kg -538524ae-fa59-35af-b274-d653ea8561aa,SESCO,II.1.1,Córdoba,AR-X,annual,2020,naphtha combustion consumption by to the public,6713.356419,TJ,CH4,3.0,kg/TJ,20140.069257,kg -62266b4c-b846-38de-8935-4bc60c569de9,SESCO,II.1.1,Córdoba,AR-X,annual,2020,naphtha combustion consumption by to the public,6713.356419,TJ,N2O,0.6,kg/TJ,4028.0138513999996,kg -c5a3a124-b085-3f58-9f5f-97597fd8c2dc,SESCO,II.1.1,Entre Rios,AR-E,annual,2020,naphtha combustion consumption by to the public,2281.60800945,TJ,CO2,73300.0,kg/TJ,167241867.09268498,kg -715a805f-a584-3071-9b4b-a9cd48b0ffb7,SESCO,II.1.1,Entre Rios,AR-E,annual,2020,naphtha combustion consumption by to the public,2281.60800945,TJ,CH4,3.0,kg/TJ,6844.82402835,kg -1b04da8d-446d-3588-a4f1-ed97233ce945,SESCO,II.1.1,Entre Rios,AR-E,annual,2020,naphtha combustion consumption by to the public,2281.60800945,TJ,N2O,0.6,kg/TJ,1368.9648056699998,kg -2667d754-c2ef-385c-8396-c6fd72476624,SESCO,II.1.1,Formosa,AR-P,annual,2020,naphtha combustion consumption by to the public,766.6351731499999,TJ,CO2,73300.0,kg/TJ,56194358.19189499,kg -3be26355-88b0-3679-a005-deacf63f8dbd,SESCO,II.1.1,Formosa,AR-P,annual,2020,naphtha combustion consumption by to the public,766.6351731499999,TJ,CH4,3.0,kg/TJ,2299.9055194499997,kg -1c4c9be9-a36e-3a0b-95ef-b44d5c7d6077,SESCO,II.1.1,Formosa,AR-P,annual,2020,naphtha combustion consumption by to the public,766.6351731499999,TJ,N2O,0.6,kg/TJ,459.98110388999993,kg -80ac84c9-07db-36bc-9d77-ece82a9235c6,SESCO,II.1.1,Jujuy,AR-Y,annual,2020,naphtha combustion consumption by to the public,1077.5403638999999,TJ,CO2,73300.0,kg/TJ,78983708.67387,kg -9cd65b60-6999-3d7c-9577-ea42bf89c152,SESCO,II.1.1,Jujuy,AR-Y,annual,2020,naphtha combustion consumption by to the public,1077.5403638999999,TJ,CH4,3.0,kg/TJ,3232.6210917,kg -dfacc8ff-7a18-3d7a-bd8e-0c1849eeba80,SESCO,II.1.1,Jujuy,AR-Y,annual,2020,naphtha combustion consumption by to the public,1077.5403638999999,TJ,N2O,0.6,kg/TJ,646.52421834,kg -158c90f3-afc7-35d2-b653-aa96498a5505,SESCO,II.1.1,La Pampa,AR-L,annual,2020,naphtha combustion consumption by to the public,1059.2428538999998,TJ,CO2,73300.0,kg/TJ,77642501.19086999,kg -e8e99820-d182-397f-ba02-86efede75096,SESCO,II.1.1,La Pampa,AR-L,annual,2020,naphtha combustion consumption by to the public,1059.2428538999998,TJ,CH4,3.0,kg/TJ,3177.7285616999993,kg -2fc861cf-595d-3e05-af9a-32a092ec1b70,SESCO,II.1.1,La Pampa,AR-L,annual,2020,naphtha combustion consumption by to the public,1059.2428538999998,TJ,N2O,0.6,kg/TJ,635.5457123399998,kg -b51bc79e-f795-3d30-b846-a02e0c6b12d0,SESCO,II.1.1,La Rioja,AR-F,annual,2020,naphtha combustion consumption by to the public,684.936791,TJ,CO2,73300.0,kg/TJ,50205866.7803,kg -945060c8-0d8f-3636-bc31-48e8f5c517d8,SESCO,II.1.1,La Rioja,AR-F,annual,2020,naphtha combustion consumption by to the public,684.936791,TJ,CH4,3.0,kg/TJ,2054.810373,kg -aa485381-35fe-36b0-9509-5675a5c70645,SESCO,II.1.1,La Rioja,AR-F,annual,2020,naphtha combustion consumption by to the public,684.936791,TJ,N2O,0.6,kg/TJ,410.9620746,kg -fe30f3e4-9260-3a04-be8c-9c6765c0ef14,SESCO,II.1.1,Mendoza,AR-M,annual,2020,naphtha combustion consumption by to the public,3546.9113217999993,TJ,CO2,73300.0,kg/TJ,259988599.88793996,kg -abaf5459-a655-3ac0-b785-89b07d907edb,SESCO,II.1.1,Mendoza,AR-M,annual,2020,naphtha combustion consumption by to the public,3546.9113217999993,TJ,CH4,3.0,kg/TJ,10640.733965399999,kg -66ee55b8-2429-31c8-a92c-45f57a136f37,SESCO,II.1.1,Mendoza,AR-M,annual,2020,naphtha combustion consumption by to the public,3546.9113217999993,TJ,N2O,0.6,kg/TJ,2128.1467930799995,kg -a4cf8504-e370-32cc-80dd-e5ac8b66584b,SESCO,II.1.1,Misiones,AR-N,annual,2020,naphtha combustion consumption by to the public,2698.73024575,TJ,CO2,73300.0,kg/TJ,197816927.013475,kg -335cc45b-1018-3bb6-b32d-0f0baa63d03a,SESCO,II.1.1,Misiones,AR-N,annual,2020,naphtha combustion consumption by to the public,2698.73024575,TJ,CH4,3.0,kg/TJ,8096.19073725,kg -1223d085-8ce2-3614-8617-aaa64246cf10,SESCO,II.1.1,Misiones,AR-N,annual,2020,naphtha combustion consumption by to the public,2698.73024575,TJ,N2O,0.6,kg/TJ,1619.23814745,kg -136f0b32-33c2-3745-b3db-359953291b71,SESCO,II.1.1,Neuquén,AR-Q,annual,2020,naphtha combustion consumption by to the public,2267.9153728,TJ,CO2,73300.0,kg/TJ,166238196.82624,kg -20c1f2a5-e70b-36d0-986a-8e5e1d77e251,SESCO,II.1.1,Neuquén,AR-Q,annual,2020,naphtha combustion consumption by to the public,2267.9153728,TJ,CH4,3.0,kg/TJ,6803.7461184,kg -bd9f68c2-254d-3d05-bea2-c9b1d037730c,SESCO,II.1.1,Neuquén,AR-Q,annual,2020,naphtha combustion consumption by to the public,2267.9153728,TJ,N2O,0.6,kg/TJ,1360.7492236800001,kg -71471db7-5b34-3d4c-92da-262ac95d5454,SESCO,II.1.1,Rio Negro,AR-R,annual,2020,naphtha combustion consumption by to the public,2193.65797805,TJ,CO2,73300.0,kg/TJ,160795129.791065,kg -276f7981-f9d5-3783-99b1-9744ebfbf083,SESCO,II.1.1,Rio Negro,AR-R,annual,2020,naphtha combustion consumption by to the public,2193.65797805,TJ,CH4,3.0,kg/TJ,6580.973934150001,kg -e58fe85e-65be-3365-ab18-77d16945d967,SESCO,II.1.1,Rio Negro,AR-R,annual,2020,naphtha combustion consumption by to the public,2193.65797805,TJ,N2O,0.6,kg/TJ,1316.19478683,kg -ecf6b6f8-ff6a-329c-9b50-a755c03bff94,SESCO,II.1.1,Salta,AR-A,annual,2020,naphtha combustion consumption by to the public,2534.3576142499996,TJ,CO2,73300.0,kg/TJ,185768413.12452498,kg -6a659398-5943-361b-b164-6d95bb432b5d,SESCO,II.1.1,Salta,AR-A,annual,2020,naphtha combustion consumption by to the public,2534.3576142499996,TJ,CH4,3.0,kg/TJ,7603.072842749999,kg -9cf8312b-6733-3b28-827b-cd362f0fc7bd,SESCO,II.1.1,Salta,AR-A,annual,2020,naphtha combustion consumption by to the public,2534.3576142499996,TJ,N2O,0.6,kg/TJ,1520.6145685499998,kg -0489e6d8-4ad3-300d-adad-eb4c9e251ffc,SESCO,II.1.1,San Juan,AR-J,annual,2020,naphtha combustion consumption by to the public,1220.0779668,TJ,CO2,73300.0,kg/TJ,89431714.96644,kg -f22dc746-20e8-3221-96ea-577f95b09a33,SESCO,II.1.1,San Juan,AR-J,annual,2020,naphtha combustion consumption by to the public,1220.0779668,TJ,CH4,3.0,kg/TJ,3660.2339004,kg -c14d00e6-b043-3ab8-8003-971893740e5a,SESCO,II.1.1,San Juan,AR-J,annual,2020,naphtha combustion consumption by to the public,1220.0779668,TJ,N2O,0.6,kg/TJ,732.04678008,kg -ae1455dc-12ea-3cb0-aefe-3318444aa5cd,SESCO,II.1.1,San Luis,AR-D,annual,2020,naphtha combustion consumption by to the public,977.91042195,TJ,CO2,73300.0,kg/TJ,71680833.928935,kg -2fe582e4-fb66-3554-9ce6-82320ec48420,SESCO,II.1.1,San Luis,AR-D,annual,2020,naphtha combustion consumption by to the public,977.91042195,TJ,CH4,3.0,kg/TJ,2933.73126585,kg -1ea9c19b-b8a6-34d8-ae09-90ba65bbf677,SESCO,II.1.1,San Luis,AR-D,annual,2020,naphtha combustion consumption by to the public,977.91042195,TJ,N2O,0.6,kg/TJ,586.7462531699999,kg -450dcde4-f276-3b90-9e72-de9e548365e9,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2020,naphtha combustion consumption by to the public,1414.8854566,TJ,CO2,73300.0,kg/TJ,103711103.96878,kg -04c6e9b5-95ee-39c6-93a3-43015ba9255e,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2020,naphtha combustion consumption by to the public,1414.8854566,TJ,CH4,3.0,kg/TJ,4244.6563698,kg -6930fbd0-142e-3282-b2e2-bd2de1165c53,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2020,naphtha combustion consumption by to the public,1414.8854566,TJ,N2O,0.6,kg/TJ,848.93127396,kg -56782cb4-e403-3909-a4b4-a9fbd0805c97,SESCO,II.1.1,Santa Fe,AR-S,annual,2020,naphtha combustion consumption by to the public,5145.137828599999,TJ,CO2,73300.0,kg/TJ,377138602.83637995,kg -11c21481-ed33-3e06-830b-b9b4211663f4,SESCO,II.1.1,Santa Fe,AR-S,annual,2020,naphtha combustion consumption by to the public,5145.137828599999,TJ,CH4,3.0,kg/TJ,15435.413485799996,kg -e4a8fe50-1e29-329e-aa2c-bbf5f384a7a1,SESCO,II.1.1,Santa Fe,AR-S,annual,2020,naphtha combustion consumption by to the public,5145.137828599999,TJ,N2O,0.6,kg/TJ,3087.0826971599995,kg -9a77b157-ffd8-32c8-93cd-a473961b90ef,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2020,naphtha combustion consumption by to the public,1045.9161674499999,TJ,CO2,73300.0,kg/TJ,76665655.074085,kg -6a56e962-7732-3d7f-80c1-643b9fd431c6,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2020,naphtha combustion consumption by to the public,1045.9161674499999,TJ,CH4,3.0,kg/TJ,3137.7485023499994,kg -e39a1b9a-cedf-3fef-af65-80b78620ffb0,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2020,naphtha combustion consumption by to the public,1045.9161674499999,TJ,N2O,0.6,kg/TJ,627.54970047,kg -6ed65c34-6ef8-3733-913c-61325bd81984,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2020,naphtha combustion consumption by to the public,1063.3902894999999,TJ,CO2,73300.0,kg/TJ,77946508.22035,kg -410a1dfb-b4fb-3c29-b6f6-b1c5de518d97,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2020,naphtha combustion consumption by to the public,1063.3902894999999,TJ,CH4,3.0,kg/TJ,3190.1708684999994,kg -569ca982-91ae-3d06-a57a-0ed458fba4b4,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2020,naphtha combustion consumption by to the public,1063.3902894999999,TJ,N2O,0.6,kg/TJ,638.0341736999999,kg -6e73ec1c-d1d5-305d-bb8a-cd0ef3947290,SESCO,II.1.1,Tucuman,AR-T,annual,2020,naphtha combustion consumption by to the public,2110.58728265,TJ,CO2,73300.0,kg/TJ,154706047.818245,kg -4991be53-9c71-390e-ba0d-799f9f832636,SESCO,II.1.1,Tucuman,AR-T,annual,2020,naphtha combustion consumption by to the public,2110.58728265,TJ,CH4,3.0,kg/TJ,6331.76184795,kg -635976ce-58f4-325c-8eda-f524801b851e,SESCO,II.1.1,Tucuman,AR-T,annual,2020,naphtha combustion consumption by to the public,2110.58728265,TJ,N2O,0.6,kg/TJ,1266.3523695899999,kg -ebeef971-f07b-3c3a-a77b-8a97eaf30316,SESCO,II.1.1,Buenos Aires,AR-B,annual,2020,naphtha combustion consumption by to the public,9850.312029249999,TJ,CO2,73300.0,kg/TJ,722027871.7440249,kg -bf68073e-7798-3bd0-a71a-00fa53530721,SESCO,II.1.1,Buenos Aires,AR-B,annual,2020,naphtha combustion consumption by to the public,9850.312029249999,TJ,CH4,3.0,kg/TJ,29550.936087749997,kg -241ae6d5-869d-314b-91b5-581a9a013fc0,SESCO,II.1.1,Buenos Aires,AR-B,annual,2020,naphtha combustion consumption by to the public,9850.312029249999,TJ,N2O,0.6,kg/TJ,5910.187217549999,kg -b25102ad-6bf0-3e81-8388-55eed303aa3a,SESCO,II.1.1,Capital Federal,AR-C,annual,2020,naphtha combustion consumption by to the public,2167.1570844,TJ,CO2,73300.0,kg/TJ,158852614.28651997,kg -023d859c-df96-370f-949f-48c6bba1e754,SESCO,II.1.1,Capital Federal,AR-C,annual,2020,naphtha combustion consumption by to the public,2167.1570844,TJ,CH4,3.0,kg/TJ,6501.471253199999,kg -d529df76-30f5-3f9a-864e-950bbba97678,SESCO,II.1.1,Capital Federal,AR-C,annual,2020,naphtha combustion consumption by to the public,2167.1570844,TJ,N2O,0.6,kg/TJ,1300.2942506399997,kg -bac29157-b400-3e8b-8248-f929e3ce5e2b,SESCO,II.1.1,Catamarca,AR-K,annual,2020,naphtha combustion consumption by to the public,202.52293984999997,TJ,CO2,73300.0,kg/TJ,14844931.491004998,kg -4f1fd6a7-a449-3b1e-9862-b6cead6e9421,SESCO,II.1.1,Catamarca,AR-K,annual,2020,naphtha combustion consumption by to the public,202.52293984999997,TJ,CH4,3.0,kg/TJ,607.56881955,kg -80f1824d-335c-345b-9036-88db22ddb4ff,SESCO,II.1.1,Catamarca,AR-K,annual,2020,naphtha combustion consumption by to the public,202.52293984999997,TJ,N2O,0.6,kg/TJ,121.51376390999998,kg -d6c51678-938e-3cba-86e0-60713db5783a,SESCO,II.1.1,Chaco,AR-H,annual,2020,naphtha combustion consumption by to the public,474.17997164999997,TJ,CO2,73300.0,kg/TJ,34757391.921945,kg -5e93d307-ad66-3255-8066-5d86de7c71b5,SESCO,II.1.1,Chaco,AR-H,annual,2020,naphtha combustion consumption by to the public,474.17997164999997,TJ,CH4,3.0,kg/TJ,1422.53991495,kg -c4883798-dc0e-3bb7-a49c-2cc02d047fee,SESCO,II.1.1,Chaco,AR-H,annual,2020,naphtha combustion consumption by to the public,474.17997164999997,TJ,N2O,0.6,kg/TJ,284.50798298999996,kg -286f7fb1-d582-3c78-a70e-b6c4e39ad30d,SESCO,II.1.1,Chubut,AR-U,annual,2020,naphtha combustion consumption by to the public,807.5301079999999,TJ,CO2,73300.0,kg/TJ,59191956.91639999,kg -b32178d5-b9d7-3dbf-a17f-2043f882f03c,SESCO,II.1.1,Chubut,AR-U,annual,2020,naphtha combustion consumption by to the public,807.5301079999999,TJ,CH4,3.0,kg/TJ,2422.590324,kg -932ed064-67ae-32b6-9ea6-3410e139ba2a,SESCO,II.1.1,Chubut,AR-U,annual,2020,naphtha combustion consumption by to the public,807.5301079999999,TJ,N2O,0.6,kg/TJ,484.51806479999993,kg -46c212bc-9b55-3811-ba03-715a36296fb4,SESCO,II.1.1,Corrientes,AR-W,annual,2020,naphtha combustion consumption by to the public,639.9859081,TJ,CO2,73300.0,kg/TJ,46910967.063729994,kg -802babd5-72ec-37f7-bb53-004fb9c08d62,SESCO,II.1.1,Corrientes,AR-W,annual,2020,naphtha combustion consumption by to the public,639.9859081,TJ,CH4,3.0,kg/TJ,1919.9577242999999,kg -5f82e939-4d81-35db-b8dd-3499e696b009,SESCO,II.1.1,Corrientes,AR-W,annual,2020,naphtha combustion consumption by to the public,639.9859081,TJ,N2O,0.6,kg/TJ,383.99154486,kg -5681031c-7bc1-3c89-bc73-3ef8d0955658,SESCO,II.1.1,Córdoba,AR-X,annual,2020,naphtha combustion consumption by to the public,2319.2093925,TJ,CO2,73300.0,kg/TJ,169998048.47024998,kg -80e0d08c-9cc5-3120-aff7-52474b786024,SESCO,II.1.1,Córdoba,AR-X,annual,2020,naphtha combustion consumption by to the public,2319.2093925,TJ,CH4,3.0,kg/TJ,6957.6281775,kg -f15aafcc-9b9a-3ba4-bdcf-c1cc2c4efa9e,SESCO,II.1.1,Córdoba,AR-X,annual,2020,naphtha combustion consumption by to the public,2319.2093925,TJ,N2O,0.6,kg/TJ,1391.5256355,kg -ee16f5f0-1a18-35c4-9b12-927ab6f46269,SESCO,II.1.1,Entre Rios,AR-E,annual,2020,naphtha combustion consumption by to the public,797.07003145,TJ,CO2,73300.0,kg/TJ,58425233.305285,kg -92457179-f57b-30cb-ab64-b69b31eb6c78,SESCO,II.1.1,Entre Rios,AR-E,annual,2020,naphtha combustion consumption by to the public,797.07003145,TJ,CH4,3.0,kg/TJ,2391.21009435,kg -597f0677-1888-3d84-bbec-8898f49eb6f0,SESCO,II.1.1,Entre Rios,AR-E,annual,2020,naphtha combustion consumption by to the public,797.07003145,TJ,N2O,0.6,kg/TJ,478.24201887,kg -1361c856-937c-33b2-8743-a3fc97a4549f,SESCO,II.1.1,Formosa,AR-P,annual,2020,naphtha combustion consumption by to the public,194.35005205,TJ,CO2,73300.0,kg/TJ,14245858.815265,kg -26463dd2-a077-3bf6-8b62-deef0fa5e950,SESCO,II.1.1,Formosa,AR-P,annual,2020,naphtha combustion consumption by to the public,194.35005205,TJ,CH4,3.0,kg/TJ,583.05015615,kg -d95ccedc-d002-3fa2-b618-11eda6c8a555,SESCO,II.1.1,Formosa,AR-P,annual,2020,naphtha combustion consumption by to the public,194.35005205,TJ,N2O,0.6,kg/TJ,116.61003122999999,kg -ca180090-e654-3538-9917-be0f77636590,SESCO,II.1.1,Jujuy,AR-Y,annual,2020,naphtha combustion consumption by to the public,294.8338778,TJ,CO2,73300.0,kg/TJ,21611323.242739998,kg -75259a4a-48ab-36cf-9d29-00fbefbefeed,SESCO,II.1.1,Jujuy,AR-Y,annual,2020,naphtha combustion consumption by to the public,294.8338778,TJ,CH4,3.0,kg/TJ,884.5016334,kg -8206f8a6-43ff-36bd-9cf1-1fa0efa9d79b,SESCO,II.1.1,Jujuy,AR-Y,annual,2020,naphtha combustion consumption by to the public,294.8338778,TJ,N2O,0.6,kg/TJ,176.90032667999998,kg -d5237345-cee7-3b56-88eb-6de181a09836,SESCO,II.1.1,La Pampa,AR-L,annual,2020,naphtha combustion consumption by to the public,634.7711177499999,TJ,CO2,73300.0,kg/TJ,46528722.93107499,kg -4bef1c49-5bfb-348d-a6fb-6e03f77a522e,SESCO,II.1.1,La Pampa,AR-L,annual,2020,naphtha combustion consumption by to the public,634.7711177499999,TJ,CH4,3.0,kg/TJ,1904.3133532499996,kg -5cb42777-f9a2-3579-97de-e8f31b981f96,SESCO,II.1.1,La Pampa,AR-L,annual,2020,naphtha combustion consumption by to the public,634.7711177499999,TJ,N2O,0.6,kg/TJ,380.8626706499999,kg -82442edd-fcdf-3cfe-b3fe-c7580780641c,SESCO,II.1.1,La Rioja,AR-F,annual,2020,naphtha combustion consumption by to the public,248.84613599999997,TJ,CO2,73300.0,kg/TJ,18240421.768799998,kg -54c2ce3f-bbde-36ab-8ca3-5028341e7991,SESCO,II.1.1,La Rioja,AR-F,annual,2020,naphtha combustion consumption by to the public,248.84613599999997,TJ,CH4,3.0,kg/TJ,746.5384079999999,kg -c09361ab-9f63-3588-a0a9-68eb0b620ecd,SESCO,II.1.1,La Rioja,AR-F,annual,2020,naphtha combustion consumption by to the public,248.84613599999997,TJ,N2O,0.6,kg/TJ,149.30768159999997,kg -1629993d-559c-3b0b-b6b6-19055abee61c,SESCO,II.1.1,Mendoza,AR-M,annual,2020,naphtha combustion consumption by to the public,1704.56553575,TJ,CO2,73300.0,kg/TJ,124944653.770475,kg -fd177c6c-c464-3af1-bb65-fd54e9cb3b6d,SESCO,II.1.1,Mendoza,AR-M,annual,2020,naphtha combustion consumption by to the public,1704.56553575,TJ,CH4,3.0,kg/TJ,5113.69660725,kg -4dde26cb-7891-3f58-9309-96b4bc633a0d,SESCO,II.1.1,Mendoza,AR-M,annual,2020,naphtha combustion consumption by to the public,1704.56553575,TJ,N2O,0.6,kg/TJ,1022.7393214499999,kg -392eb06c-518d-3259-9b6c-20275d5a086c,SESCO,II.1.1,Misiones,AR-N,annual,2020,naphtha combustion consumption by to the public,623.945091,TJ,CO2,73300.0,kg/TJ,45735175.17030001,kg -8d0ee16a-7886-35fc-b50d-46a7c1664389,SESCO,II.1.1,Misiones,AR-N,annual,2020,naphtha combustion consumption by to the public,623.945091,TJ,CH4,3.0,kg/TJ,1871.8352730000001,kg -919f11d4-c2bd-3e74-9d77-8ba640d9cf3e,SESCO,II.1.1,Misiones,AR-N,annual,2020,naphtha combustion consumption by to the public,623.945091,TJ,N2O,0.6,kg/TJ,374.3670546,kg -a65630ef-1646-3bf3-85d0-4cdff08b5e15,SESCO,II.1.1,Neuquén,AR-Q,annual,2020,naphtha combustion consumption by to the public,1189.8870752999999,TJ,CO2,73300.0,kg/TJ,87218722.61949,kg -f1e8e1d8-112f-3e29-99da-c1aba4fb4b90,SESCO,II.1.1,Neuquén,AR-Q,annual,2020,naphtha combustion consumption by to the public,1189.8870752999999,TJ,CH4,3.0,kg/TJ,3569.6612258999994,kg -d81c543a-f794-3da3-8ebf-915af808566f,SESCO,II.1.1,Neuquén,AR-Q,annual,2020,naphtha combustion consumption by to the public,1189.8870752999999,TJ,N2O,0.6,kg/TJ,713.9322451799999,kg -efc766d7-f5c4-37d3-ab63-0d6de6d9ee64,SESCO,II.1.1,Rio Negro,AR-R,annual,2020,naphtha combustion consumption by to the public,1004.3503238999998,TJ,CO2,73300.0,kg/TJ,73618878.74186999,kg -082ae428-24fe-31c5-a6ca-49de44e426ac,SESCO,II.1.1,Rio Negro,AR-R,annual,2020,naphtha combustion consumption by to the public,1004.3503238999998,TJ,CH4,3.0,kg/TJ,3013.0509716999995,kg -fcd7c187-de48-3d3a-9c03-9253d89093a5,SESCO,II.1.1,Rio Negro,AR-R,annual,2020,naphtha combustion consumption by to the public,1004.3503238999998,TJ,N2O,0.6,kg/TJ,602.6101943399999,kg -6b42f98f-a129-302a-bbf5-0b64e43607e6,SESCO,II.1.1,Salta,AR-A,annual,2020,naphtha combustion consumption by to the public,696.7691808,TJ,CO2,73300.0,kg/TJ,51073180.95264,kg -2744b79a-ee6e-3d1e-9afe-ac8a04821fdd,SESCO,II.1.1,Salta,AR-A,annual,2020,naphtha combustion consumption by to the public,696.7691808,TJ,CH4,3.0,kg/TJ,2090.3075424,kg -aa993824-88e4-3c71-a52d-2b0232671a2c,SESCO,II.1.1,Salta,AR-A,annual,2020,naphtha combustion consumption by to the public,696.7691808,TJ,N2O,0.6,kg/TJ,418.06150848,kg -91ddaae1-9221-3110-874c-0b063289a7c9,SESCO,II.1.1,San Juan,AR-J,annual,2020,naphtha combustion consumption by to the public,512.66573435,TJ,CO2,73300.0,kg/TJ,37578398.327855,kg -daa3f92e-db95-3f73-8958-6a46a6f8c60b,SESCO,II.1.1,San Juan,AR-J,annual,2020,naphtha combustion consumption by to the public,512.66573435,TJ,CH4,3.0,kg/TJ,1537.9972030499998,kg -6b69be81-e35d-3fdb-b1b7-11a0f049a0f2,SESCO,II.1.1,San Juan,AR-J,annual,2020,naphtha combustion consumption by to the public,512.66573435,TJ,N2O,0.6,kg/TJ,307.59944061,kg -09bf512e-b737-3188-93f0-e70acb3da252,SESCO,II.1.1,San Luis,AR-D,annual,2020,naphtha combustion consumption by to the public,376.86771429999993,TJ,CO2,73300.0,kg/TJ,27624403.458189994,kg -7f2adc3c-1e20-3a3f-8bf4-8775599076b2,SESCO,II.1.1,San Luis,AR-D,annual,2020,naphtha combustion consumption by to the public,376.86771429999993,TJ,CH4,3.0,kg/TJ,1130.6031428999997,kg -e1b4a4e8-eacf-3501-8d58-fd3c7873b50b,SESCO,II.1.1,San Luis,AR-D,annual,2020,naphtha combustion consumption by to the public,376.86771429999993,TJ,N2O,0.6,kg/TJ,226.12062857999996,kg -5fd119b8-5b23-310f-acbe-6a8e575bbd09,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2020,naphtha combustion consumption by to the public,347.7746733999999,TJ,CO2,73300.0,kg/TJ,25491883.560219996,kg -84d1a7ca-04b9-3518-87cf-085d250fda36,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2020,naphtha combustion consumption by to the public,347.7746733999999,TJ,CH4,3.0,kg/TJ,1043.3240201999997,kg -386cbde8-20b2-3546-ab19-6d450b676b00,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2020,naphtha combustion consumption by to the public,347.7746733999999,TJ,N2O,0.6,kg/TJ,208.66480403999995,kg -7f14525e-2ac4-3017-b274-0724c467f078,SESCO,II.1.1,Santa Fe,AR-S,annual,2020,naphtha combustion consumption by to the public,2109.42844035,TJ,CO2,73300.0,kg/TJ,154621104.677655,kg -cf1d9c70-840c-33f3-852a-ff0fca955caa,SESCO,II.1.1,Santa Fe,AR-S,annual,2020,naphtha combustion consumption by to the public,2109.42844035,TJ,CH4,3.0,kg/TJ,6328.28532105,kg -d43263be-2dba-34d6-a6e1-b54c2378d226,SESCO,II.1.1,Santa Fe,AR-S,annual,2020,naphtha combustion consumption by to the public,2109.42844035,TJ,N2O,0.6,kg/TJ,1265.65706421,kg -a845a2db-c3b9-3d03-9891-edfe04daa399,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2020,naphtha combustion consumption by to the public,351.67814219999997,TJ,CO2,73300.0,kg/TJ,25778007.823259998,kg -6f5d1182-d0c2-3d41-8c5c-dab5203e95de,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2020,naphtha combustion consumption by to the public,351.67814219999997,TJ,CH4,3.0,kg/TJ,1055.0344266,kg -9b18ec80-e1d7-3809-a269-e47a92f3b953,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2020,naphtha combustion consumption by to the public,351.67814219999997,TJ,N2O,0.6,kg/TJ,211.00688531999998,kg -83faf84e-d774-3738-bed2-a620611cb6e4,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2020,naphtha combustion consumption by to the public,232.19540189999998,TJ,CO2,73300.0,kg/TJ,17019922.959269997,kg -f423e81b-7f1c-30b9-abf5-143453b6d5b0,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2020,naphtha combustion consumption by to the public,232.19540189999998,TJ,CH4,3.0,kg/TJ,696.5862056999999,kg -11e46acd-2145-358e-95d1-d5204a8c119e,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2020,naphtha combustion consumption by to the public,232.19540189999998,TJ,N2O,0.6,kg/TJ,139.31724114,kg -e0a98f0b-13b8-3a5c-94ed-0fcd09999a50,SESCO,II.1.1,Tucuman,AR-T,annual,2020,naphtha combustion consumption by to the public,561.45909435,TJ,CO2,73300.0,kg/TJ,41154951.615855,kg -e9cef9e5-0abe-3acb-9a66-026b841ab831,SESCO,II.1.1,Tucuman,AR-T,annual,2020,naphtha combustion consumption by to the public,561.45909435,TJ,CH4,3.0,kg/TJ,1684.37728305,kg -782dfa98-beb6-302b-9485-4db422fbd4e5,SESCO,II.1.1,Tucuman,AR-T,annual,2020,naphtha combustion consumption by to the public,561.45909435,TJ,N2O,0.6,kg/TJ,336.87545660999996,kg -60d9da1b-bff7-32a2-b47a-7fb456137359,SESCO,II.1.1,Buenos Aires,AR-B,annual,2020,naphtha combustion consumption by freight transport,271.50455254999997,TJ,CO2,73300.0,kg/TJ,19901283.701915,kg -8af4b9b1-a504-3d52-942d-49f9abea9607,SESCO,II.1.1,Buenos Aires,AR-B,annual,2020,naphtha combustion consumption by freight transport,271.50455254999997,TJ,CH4,3.0,kg/TJ,814.5136576499999,kg -d8668916-8aca-3843-9546-3b5f1467eab2,SESCO,II.1.1,Buenos Aires,AR-B,annual,2020,naphtha combustion consumption by freight transport,271.50455254999997,TJ,N2O,0.6,kg/TJ,162.90273152999998,kg -25f1adb2-03f8-3a9a-a2a5-577d25cf5aa2,SESCO,II.1.1,Capital Federal,AR-C,annual,2020,naphtha combustion consumption by freight transport,305.11097925,TJ,CO2,73300.0,kg/TJ,22364634.779025,kg -78b10ccc-299c-3560-913f-a171fd6358ba,SESCO,II.1.1,Capital Federal,AR-C,annual,2020,naphtha combustion consumption by freight transport,305.11097925,TJ,CH4,3.0,kg/TJ,915.33293775,kg -f2da18d2-334e-3c72-bbc1-0f7aa9d8abee,SESCO,II.1.1,Capital Federal,AR-C,annual,2020,naphtha combustion consumption by freight transport,305.11097925,TJ,N2O,0.6,kg/TJ,183.06658755,kg -e0ebc8c8-faf9-3a40-ab6d-c30bf8faeada,SESCO,II.1.1,Catamarca,AR-K,annual,2020,naphtha combustion consumption by freight transport,0.21347095,TJ,CO2,73300.0,kg/TJ,15647.420634999999,kg -c7344862-13f7-3ff1-a6ff-cde680a3b52c,SESCO,II.1.1,Catamarca,AR-K,annual,2020,naphtha combustion consumption by freight transport,0.21347095,TJ,CH4,3.0,kg/TJ,0.6404128499999999,kg -e8f053fb-c2ca-3391-a560-1cf0a9468e56,SESCO,II.1.1,Catamarca,AR-K,annual,2020,naphtha combustion consumption by freight transport,0.21347095,TJ,N2O,0.6,kg/TJ,0.12808256999999998,kg -2954a486-dd7c-3c93-b89a-fb6059e8ada0,SESCO,II.1.1,Chaco,AR-H,annual,2020,naphtha combustion consumption by freight transport,12.625281899999997,TJ,CO2,73300.0,kg/TJ,925433.1632699998,kg -9b25aacf-f69e-329c-b03b-5caac5875119,SESCO,II.1.1,Chaco,AR-H,annual,2020,naphtha combustion consumption by freight transport,12.625281899999997,TJ,CH4,3.0,kg/TJ,37.87584569999999,kg -cde1f09d-e8d6-39b3-8ef6-cc5d2d23fcc3,SESCO,II.1.1,Chaco,AR-H,annual,2020,naphtha combustion consumption by freight transport,12.625281899999997,TJ,N2O,0.6,kg/TJ,7.575169139999998,kg -8e70f3be-ecb4-31cc-8954-ba6346c383f9,SESCO,II.1.1,Chubut,AR-U,annual,2020,naphtha combustion consumption by freight transport,19.425856449999998,TJ,CO2,73300.0,kg/TJ,1423915.277785,kg -6938e675-c56b-30ff-b3da-e1583d5c2fd2,SESCO,II.1.1,Chubut,AR-U,annual,2020,naphtha combustion consumption by freight transport,19.425856449999998,TJ,CH4,3.0,kg/TJ,58.27756934999999,kg -6eb66168-f82f-3c0b-937f-1500d69beaa1,SESCO,II.1.1,Chubut,AR-U,annual,2020,naphtha combustion consumption by freight transport,19.425856449999998,TJ,N2O,0.6,kg/TJ,11.655513869999998,kg -997a555f-e56d-39d7-9db6-ef3f3761b430,SESCO,II.1.1,Corrientes,AR-W,annual,2020,naphtha combustion consumption by freight transport,7.898425149999999,TJ,CO2,73300.0,kg/TJ,578954.5634949999,kg -1ebcc3c9-eb49-32f1-983d-fabfcc5a62e2,SESCO,II.1.1,Corrientes,AR-W,annual,2020,naphtha combustion consumption by freight transport,7.898425149999999,TJ,CH4,3.0,kg/TJ,23.695275449999997,kg -523bc0d7-54f6-3e4a-b4c2-52041ab3797f,SESCO,II.1.1,Corrientes,AR-W,annual,2020,naphtha combustion consumption by freight transport,7.898425149999999,TJ,N2O,0.6,kg/TJ,4.739055089999999,kg -546e8873-6103-3732-ba5e-6f277babf686,SESCO,II.1.1,Córdoba,AR-X,annual,2020,naphtha combustion consumption by freight transport,58.521536149999996,TJ,CO2,73300.0,kg/TJ,4289628.599795,kg -7b603533-998c-3c29-aa25-fc1e6c984819,SESCO,II.1.1,Córdoba,AR-X,annual,2020,naphtha combustion consumption by freight transport,58.521536149999996,TJ,CH4,3.0,kg/TJ,175.56460844999998,kg -fd6df49c-0627-338b-8b5b-4acc14499e57,SESCO,II.1.1,Córdoba,AR-X,annual,2020,naphtha combustion consumption by freight transport,58.521536149999996,TJ,N2O,0.6,kg/TJ,35.11292168999999,kg -321283ba-8d5b-3adf-99d5-54b1e5a8c866,SESCO,II.1.1,Entre Rios,AR-E,annual,2020,naphtha combustion consumption by freight transport,18.785443599999997,TJ,CO2,73300.0,kg/TJ,1376973.0158799998,kg -409d63b7-1989-31b8-ade5-6ce4a1d3a557,SESCO,II.1.1,Entre Rios,AR-E,annual,2020,naphtha combustion consumption by freight transport,18.785443599999997,TJ,CH4,3.0,kg/TJ,56.356330799999995,kg -58cce7a3-0b3a-34c2-b619-8f682a092d9e,SESCO,II.1.1,Entre Rios,AR-E,annual,2020,naphtha combustion consumption by freight transport,18.785443599999997,TJ,N2O,0.6,kg/TJ,11.271266159999998,kg -3e347239-ca94-3177-9fb9-a93aad7eb6f7,SESCO,II.1.1,Formosa,AR-P,annual,2020,naphtha combustion consumption by freight transport,0.51842945,TJ,CO2,73300.0,kg/TJ,38000.878684999996,kg -4a49d2aa-3859-3028-aadd-1907afdfeec5,SESCO,II.1.1,Formosa,AR-P,annual,2020,naphtha combustion consumption by freight transport,0.51842945,TJ,CH4,3.0,kg/TJ,1.5552883499999999,kg -625dc28c-fb9c-38b8-861e-f5d9cc67b448,SESCO,II.1.1,Formosa,AR-P,annual,2020,naphtha combustion consumption by freight transport,0.51842945,TJ,N2O,0.6,kg/TJ,0.31105766999999995,kg -f96e9c59-18d8-3f08-9a9a-3f52f5ad54d0,SESCO,II.1.1,Jujuy,AR-Y,annual,2020,naphtha combustion consumption by freight transport,2.1957012,TJ,CO2,73300.0,kg/TJ,160944.89795999997,kg -fa82255c-6a06-3d16-830a-5761291efd77,SESCO,II.1.1,Jujuy,AR-Y,annual,2020,naphtha combustion consumption by freight transport,2.1957012,TJ,CH4,3.0,kg/TJ,6.587103599999999,kg -9836fe12-ae82-33f2-a36f-6feb368181ac,SESCO,II.1.1,Jujuy,AR-Y,annual,2020,naphtha combustion consumption by freight transport,2.1957012,TJ,N2O,0.6,kg/TJ,1.3174207199999999,kg -3d8b53e1-653a-3e17-8271-c266b90950f1,SESCO,II.1.1,La Pampa,AR-L,annual,2020,naphtha combustion consumption by freight transport,6.617599449999999,TJ,CO2,73300.0,kg/TJ,485070.03968499997,kg -4ebce1c2-85b1-37cf-9ce6-b1754a3151c6,SESCO,II.1.1,La Pampa,AR-L,annual,2020,naphtha combustion consumption by freight transport,6.617599449999999,TJ,CH4,3.0,kg/TJ,19.852798349999997,kg -f924bf94-6318-3d53-ba17-759de2097780,SESCO,II.1.1,La Pampa,AR-L,annual,2020,naphtha combustion consumption by freight transport,6.617599449999999,TJ,N2O,0.6,kg/TJ,3.970559669999999,kg -a9bb35b1-b657-3a3a-bbc3-a86e6fac3ee6,SESCO,II.1.1,La Rioja,AR-F,annual,2020,naphtha combustion consumption by freight transport,0.64041285,TJ,CO2,73300.0,kg/TJ,46942.261905,kg -e579a539-a53d-34bb-83f5-a520f2d0a61d,SESCO,II.1.1,La Rioja,AR-F,annual,2020,naphtha combustion consumption by freight transport,0.64041285,TJ,CH4,3.0,kg/TJ,1.92123855,kg -b3856f7d-ecce-3d83-b6d1-609c9c4b0131,SESCO,II.1.1,La Rioja,AR-F,annual,2020,naphtha combustion consumption by freight transport,0.64041285,TJ,N2O,0.6,kg/TJ,0.38424771,kg -a008d541-c284-365f-9365-5985a19bf6f9,SESCO,II.1.1,Mendoza,AR-M,annual,2020,naphtha combustion consumption by freight transport,26.68386875,TJ,CO2,73300.0,kg/TJ,1955927.579375,kg -28254cd2-2493-33b0-8ad2-606b4802a8e5,SESCO,II.1.1,Mendoza,AR-M,annual,2020,naphtha combustion consumption by freight transport,26.68386875,TJ,CH4,3.0,kg/TJ,80.05160624999999,kg -9d84089b-62d9-366d-91ac-751d33cf8690,SESCO,II.1.1,Mendoza,AR-M,annual,2020,naphtha combustion consumption by freight transport,26.68386875,TJ,N2O,0.6,kg/TJ,16.010321249999997,kg -a679554e-35aa-37a1-9464-493ffe77e991,SESCO,II.1.1,Misiones,AR-N,annual,2020,naphtha combustion consumption by freight transport,6.1601617,TJ,CO2,73300.0,kg/TJ,451539.85261,kg -f2bf4bbd-07f1-3106-91c1-1a3911e761db,SESCO,II.1.1,Misiones,AR-N,annual,2020,naphtha combustion consumption by freight transport,6.1601617,TJ,CH4,3.0,kg/TJ,18.4804851,kg -380d8c6f-c0e1-3f25-ad7c-8789b1336c51,SESCO,II.1.1,Misiones,AR-N,annual,2020,naphtha combustion consumption by freight transport,6.1601617,TJ,N2O,0.6,kg/TJ,3.69609702,kg -c9bcc524-8c92-34a7-b4e7-1c6edd8ae745,SESCO,II.1.1,Neuquén,AR-Q,annual,2020,naphtha combustion consumption by freight transport,7.7459459,TJ,CO2,73300.0,kg/TJ,567777.83447,kg -a8a615e1-a561-3d3d-a4d3-4681d1925ff9,SESCO,II.1.1,Neuquén,AR-Q,annual,2020,naphtha combustion consumption by freight transport,7.7459459,TJ,CH4,3.0,kg/TJ,23.2378377,kg -27addad2-d9ff-39c4-8f97-5c0099d75f89,SESCO,II.1.1,Neuquén,AR-Q,annual,2020,naphtha combustion consumption by freight transport,7.7459459,TJ,N2O,0.6,kg/TJ,4.64756754,kg -e7b21129-4f92-3b69-b11e-8cc8c7473d74,SESCO,II.1.1,Rio Negro,AR-R,annual,2020,naphtha combustion consumption by freight transport,14.150074399999998,TJ,CO2,73300.0,kg/TJ,1037200.4535199999,kg -d778be6e-40ea-3241-ba54-d98d5c2bb14f,SESCO,II.1.1,Rio Negro,AR-R,annual,2020,naphtha combustion consumption by freight transport,14.150074399999998,TJ,CH4,3.0,kg/TJ,42.450223199999996,kg -d6c37acc-5f1c-3af1-b933-a44f77e58e28,SESCO,II.1.1,Rio Negro,AR-R,annual,2020,naphtha combustion consumption by freight transport,14.150074399999998,TJ,N2O,0.6,kg/TJ,8.490044639999999,kg -868a5108-41bf-354d-ae18-0bb6d54b9a81,SESCO,II.1.1,Salta,AR-A,annual,2020,naphtha combustion consumption by freight transport,15.369908399999998,TJ,CO2,73300.0,kg/TJ,1126614.2857199998,kg -2a5f1e9b-b474-358a-ac0a-f0515f3b5f4c,SESCO,II.1.1,Salta,AR-A,annual,2020,naphtha combustion consumption by freight transport,15.369908399999998,TJ,CH4,3.0,kg/TJ,46.10972519999999,kg -1b1980c8-ede4-3590-97a0-c2e5653e3a3e,SESCO,II.1.1,Salta,AR-A,annual,2020,naphtha combustion consumption by freight transport,15.369908399999998,TJ,N2O,0.6,kg/TJ,9.221945039999998,kg -87b01f60-d655-3f50-b218-6ec704241711,SESCO,II.1.1,San Juan,AR-J,annual,2020,naphtha combustion consumption by freight transport,3.9034687999999997,TJ,CO2,73300.0,kg/TJ,286124.26304,kg -af064400-3114-3079-b4ff-e4f3c1cefbd6,SESCO,II.1.1,San Juan,AR-J,annual,2020,naphtha combustion consumption by freight transport,3.9034687999999997,TJ,CH4,3.0,kg/TJ,11.7104064,kg -25041ac3-0ab7-3568-934c-7b85299a9ca3,SESCO,II.1.1,San Juan,AR-J,annual,2020,naphtha combustion consumption by freight transport,3.9034687999999997,TJ,N2O,0.6,kg/TJ,2.34208128,kg -184467cb-bc9d-3d3d-9944-4500d5c30f21,SESCO,II.1.1,San Luis,AR-D,annual,2020,naphtha combustion consumption by freight transport,4.17793145,TJ,CO2,73300.0,kg/TJ,306242.375285,kg -3cf83639-3a20-3172-988d-151fec4d61e2,SESCO,II.1.1,San Luis,AR-D,annual,2020,naphtha combustion consumption by freight transport,4.17793145,TJ,CH4,3.0,kg/TJ,12.53379435,kg -9ed0a4b2-cf93-3a46-8ce2-9d7f8f139f51,SESCO,II.1.1,San Luis,AR-D,annual,2020,naphtha combustion consumption by freight transport,4.17793145,TJ,N2O,0.6,kg/TJ,2.50675887,kg -a12dba46-8f2f-3060-8c54-8cd902a2e4d5,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2020,naphtha combustion consumption by freight transport,2.3176845999999998,TJ,CO2,73300.0,kg/TJ,169886.28118,kg -d0c21ca0-59b2-3eba-bd61-feea770919c0,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2020,naphtha combustion consumption by freight transport,2.3176845999999998,TJ,CH4,3.0,kg/TJ,6.953053799999999,kg -f653bea8-af79-3164-bfbf-6c3bd4f448c6,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2020,naphtha combustion consumption by freight transport,2.3176845999999998,TJ,N2O,0.6,kg/TJ,1.3906107599999997,kg -e4245683-86ce-3493-95aa-6a59a7ab50a7,SESCO,II.1.1,Santa Fe,AR-S,annual,2020,naphtha combustion consumption by freight transport,52.757820499999994,TJ,CO2,73300.0,kg/TJ,3867148.2426499994,kg -427f3125-bd60-334b-94e5-73a2af611cda,SESCO,II.1.1,Santa Fe,AR-S,annual,2020,naphtha combustion consumption by freight transport,52.757820499999994,TJ,CH4,3.0,kg/TJ,158.2734615,kg -09305e37-a57c-3fe9-beac-24eff30d0dc6,SESCO,II.1.1,Santa Fe,AR-S,annual,2020,naphtha combustion consumption by freight transport,52.757820499999994,TJ,N2O,0.6,kg/TJ,31.654692299999994,kg -238de9fb-0d6b-318e-9479-3b2a51820f51,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2020,naphtha combustion consumption by freight transport,1.00636305,TJ,CO2,73300.0,kg/TJ,73766.411565,kg -b27ff408-07fd-34c8-b6ea-e4910ba17d2e,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2020,naphtha combustion consumption by freight transport,1.00636305,TJ,CH4,3.0,kg/TJ,3.01908915,kg -75324581-d64c-3ed7-9a30-0716c65100d4,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2020,naphtha combustion consumption by freight transport,1.00636305,TJ,N2O,0.6,kg/TJ,0.60381783,kg -2b9abb9d-b849-31fe-8508-c5e486e0ce33,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2020,naphtha combustion consumption by freight transport,7.8069375999999995,TJ,CO2,73300.0,kg/TJ,572248.52608,kg -b75c4791-42b9-3f5c-ba2f-60e55ea873c0,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2020,naphtha combustion consumption by freight transport,7.8069375999999995,TJ,CH4,3.0,kg/TJ,23.4208128,kg -42885688-a800-3ef6-a343-310294a68432,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2020,naphtha combustion consumption by freight transport,7.8069375999999995,TJ,N2O,0.6,kg/TJ,4.68416256,kg -cccb9821-de2d-36b0-94eb-0c48e153dbc7,SESCO,II.1.1,Tucuman,AR-T,annual,2020,naphtha combustion consumption by freight transport,14.302553649999998,TJ,CO2,73300.0,kg/TJ,1048377.1825449999,kg -879c5c44-f4bc-3875-bcb3-c80be0bb35ff,SESCO,II.1.1,Tucuman,AR-T,annual,2020,naphtha combustion consumption by freight transport,14.302553649999998,TJ,CH4,3.0,kg/TJ,42.90766094999999,kg -ac4e799b-7aef-3179-890b-079d7b9e63ea,SESCO,II.1.1,Tucuman,AR-T,annual,2020,naphtha combustion consumption by freight transport,14.302553649999998,TJ,N2O,0.6,kg/TJ,8.581532189999999,kg -e8b308a3-8121-3573-ae52-1f8cb3bbb460,SESCO,II.1.1,Buenos Aires,AR-B,annual,2020,naphtha combustion consumption by freight transport,178.52270589999998,TJ,CO2,73300.0,kg/TJ,13085714.342469998,kg -ea06e85b-5cfe-37fc-a7f7-dd4e0e6475f0,SESCO,II.1.1,Buenos Aires,AR-B,annual,2020,naphtha combustion consumption by freight transport,178.52270589999998,TJ,CH4,3.0,kg/TJ,535.5681176999999,kg -848ebfb4-22fa-365b-8c1a-0663f7f0885e,SESCO,II.1.1,Buenos Aires,AR-B,annual,2020,naphtha combustion consumption by freight transport,178.52270589999998,TJ,N2O,0.6,kg/TJ,107.11362353999998,kg -55178609-4640-37db-8439-e5465747da79,SESCO,II.1.1,Capital Federal,AR-C,annual,2020,naphtha combustion consumption by freight transport,287.11842774999997,TJ,CO2,73300.0,kg/TJ,21045780.754075,kg -0f5290ae-381a-3926-9b16-b858f0763b7c,SESCO,II.1.1,Capital Federal,AR-C,annual,2020,naphtha combustion consumption by freight transport,287.11842774999997,TJ,CH4,3.0,kg/TJ,861.35528325,kg -23a5f63f-1d09-3fb5-9061-ea5661c5c8d5,SESCO,II.1.1,Capital Federal,AR-C,annual,2020,naphtha combustion consumption by freight transport,287.11842774999997,TJ,N2O,0.6,kg/TJ,172.27105664999996,kg -f3c27198-99af-34ee-bc9d-994181530b83,SESCO,II.1.1,Catamarca,AR-K,annual,2020,naphtha combustion consumption by freight transport,0.12198339999999999,TJ,CO2,73300.0,kg/TJ,8941.38322,kg -62331492-728e-3ac7-9958-550834a9618d,SESCO,II.1.1,Catamarca,AR-K,annual,2020,naphtha combustion consumption by freight transport,0.12198339999999999,TJ,CH4,3.0,kg/TJ,0.3659502,kg -8dbdf802-077e-376c-b0e1-70337edeb309,SESCO,II.1.1,Catamarca,AR-K,annual,2020,naphtha combustion consumption by freight transport,0.12198339999999999,TJ,N2O,0.6,kg/TJ,0.07319004,kg -7224b458-ac73-3a70-9bc3-508f2acb7889,SESCO,II.1.1,Chaco,AR-H,annual,2020,naphtha combustion consumption by freight transport,4.9403277,TJ,CO2,73300.0,kg/TJ,362126.02041,kg -1206429f-8a94-3809-8a75-90271d3563b4,SESCO,II.1.1,Chaco,AR-H,annual,2020,naphtha combustion consumption by freight transport,4.9403277,TJ,CH4,3.0,kg/TJ,14.8209831,kg -89ce9b34-e629-3b73-a832-cfa314eeae65,SESCO,II.1.1,Chaco,AR-H,annual,2020,naphtha combustion consumption by freight transport,4.9403277,TJ,N2O,0.6,kg/TJ,2.96419662,kg -daeb58b6-3f9a-3e3f-8898-7a539b1991e9,SESCO,II.1.1,Chubut,AR-U,annual,2020,naphtha combustion consumption by freight transport,8.0509044,TJ,CO2,73300.0,kg/TJ,590131.29252,kg -3aeaceeb-178e-37c2-8d45-d23dc83e184f,SESCO,II.1.1,Chubut,AR-U,annual,2020,naphtha combustion consumption by freight transport,8.0509044,TJ,CH4,3.0,kg/TJ,24.1527132,kg -cd5fc000-1f3c-34c5-a1ab-1cbd64216e12,SESCO,II.1.1,Chubut,AR-U,annual,2020,naphtha combustion consumption by freight transport,8.0509044,TJ,N2O,0.6,kg/TJ,4.83054264,kg -05448c7b-c274-39ba-966d-14a9a62488d0,SESCO,II.1.1,Corrientes,AR-W,annual,2020,naphtha combustion consumption by freight transport,9.972142949999999,TJ,CO2,73300.0,kg/TJ,730958.0782349999,kg -44889f20-489d-3a54-b34e-0e365d3aab23,SESCO,II.1.1,Corrientes,AR-W,annual,2020,naphtha combustion consumption by freight transport,9.972142949999999,TJ,CH4,3.0,kg/TJ,29.916428849999996,kg -79405b35-4c81-3384-98cd-96775f12c8ef,SESCO,II.1.1,Corrientes,AR-W,annual,2020,naphtha combustion consumption by freight transport,9.972142949999999,TJ,N2O,0.6,kg/TJ,5.983285769999999,kg -cf44b313-e244-30ec-bc73-23348077558d,SESCO,II.1.1,Córdoba,AR-X,annual,2020,naphtha combustion consumption by freight transport,122.1053834,TJ,CO2,73300.0,kg/TJ,8950324.603219999,kg -ba6f4dd3-05c3-3385-9b29-73722ae06416,SESCO,II.1.1,Córdoba,AR-X,annual,2020,naphtha combustion consumption by freight transport,122.1053834,TJ,CH4,3.0,kg/TJ,366.3161502,kg -6c2b71c4-3dd4-32bc-bd25-5baa4830b0e7,SESCO,II.1.1,Córdoba,AR-X,annual,2020,naphtha combustion consumption by freight transport,122.1053834,TJ,N2O,0.6,kg/TJ,73.26323004,kg -3b7b7a45-c59d-3dba-abf6-dc2b9137278d,SESCO,II.1.1,Entre Rios,AR-E,annual,2020,naphtha combustion consumption by freight transport,16.62023825,TJ,CO2,73300.0,kg/TJ,1218263.463725,kg -709ddfc1-395c-31ed-a3c9-03007fa28c2b,SESCO,II.1.1,Entre Rios,AR-E,annual,2020,naphtha combustion consumption by freight transport,16.62023825,TJ,CH4,3.0,kg/TJ,49.86071475,kg -7747376a-2d1c-375e-afa1-41fc1a19db57,SESCO,II.1.1,Entre Rios,AR-E,annual,2020,naphtha combustion consumption by freight transport,16.62023825,TJ,N2O,0.6,kg/TJ,9.97214295,kg -35652f86-846f-3db2-9e11-93933514ad32,SESCO,II.1.1,Formosa,AR-P,annual,2020,naphtha combustion consumption by freight transport,0.36595019999999995,TJ,CO2,73300.0,kg/TJ,26824.149659999995,kg -bf198523-697a-3efe-97ed-aa2bbf0be648,SESCO,II.1.1,Formosa,AR-P,annual,2020,naphtha combustion consumption by freight transport,0.36595019999999995,TJ,CH4,3.0,kg/TJ,1.0978506,kg -ce3cb4e1-1a62-3737-bc79-35e16445b207,SESCO,II.1.1,Formosa,AR-P,annual,2020,naphtha combustion consumption by freight transport,0.36595019999999995,TJ,N2O,0.6,kg/TJ,0.21957011999999995,kg -19d52d87-fc4e-303c-85e1-5de052cf1856,SESCO,II.1.1,Jujuy,AR-Y,annual,2020,naphtha combustion consumption by freight transport,1.6772717499999998,TJ,CO2,73300.0,kg/TJ,122944.01927499998,kg -df47024e-7439-3ea0-8ec9-80b608f351b2,SESCO,II.1.1,Jujuy,AR-Y,annual,2020,naphtha combustion consumption by freight transport,1.6772717499999998,TJ,CH4,3.0,kg/TJ,5.031815249999999,kg -71dd565b-e375-3956-b65c-c3f431bfc4d3,SESCO,II.1.1,Jujuy,AR-Y,annual,2020,naphtha combustion consumption by freight transport,1.6772717499999998,TJ,N2O,0.6,kg/TJ,1.0063630499999998,kg -96fed715-7f76-308e-a94c-632ca2dd7391,SESCO,II.1.1,La Pampa,AR-L,annual,2020,naphtha combustion consumption by freight transport,3.4765268999999996,TJ,CO2,73300.0,kg/TJ,254829.42177,kg -90d97b69-3d61-34f4-bdac-1b8238f39d06,SESCO,II.1.1,La Pampa,AR-L,annual,2020,naphtha combustion consumption by freight transport,3.4765268999999996,TJ,CH4,3.0,kg/TJ,10.429580699999999,kg -e0faeb2b-b2ee-38f1-b9f9-9a4b8f67c3a9,SESCO,II.1.1,La Pampa,AR-L,annual,2020,naphtha combustion consumption by freight transport,3.4765268999999996,TJ,N2O,0.6,kg/TJ,2.0859161399999997,kg -a0b6e437-35e8-3e1a-add4-1c155e68224a,SESCO,II.1.1,La Rioja,AR-F,annual,2020,naphtha combustion consumption by freight transport,2.1042136499999997,TJ,CO2,73300.0,kg/TJ,154238.86054499997,kg -a4d414ce-a269-34b8-97d0-a86226b038e0,SESCO,II.1.1,La Rioja,AR-F,annual,2020,naphtha combustion consumption by freight transport,2.1042136499999997,TJ,CH4,3.0,kg/TJ,6.312640949999999,kg -73897887-68f0-323b-b2b0-245d2720f5c0,SESCO,II.1.1,La Rioja,AR-F,annual,2020,naphtha combustion consumption by freight transport,2.1042136499999997,TJ,N2O,0.6,kg/TJ,1.2625281899999998,kg -679bcfbd-941a-327c-b424-8c3a68cdeda6,SESCO,II.1.1,Mendoza,AR-M,annual,2020,naphtha combustion consumption by freight transport,43.853032299999995,TJ,CO2,73300.0,kg/TJ,3214427.26759,kg -bf49852a-20cd-394d-97b3-b1407b146df1,SESCO,II.1.1,Mendoza,AR-M,annual,2020,naphtha combustion consumption by freight transport,43.853032299999995,TJ,CH4,3.0,kg/TJ,131.5590969,kg -2534548b-ac4e-3038-a333-8c8fe90ff40d,SESCO,II.1.1,Mendoza,AR-M,annual,2020,naphtha combustion consumption by freight transport,43.853032299999995,TJ,N2O,0.6,kg/TJ,26.311819379999996,kg -ff8e1fb2-fdd3-3013-ac5a-8f3a5382bd52,SESCO,II.1.1,Misiones,AR-N,annual,2020,naphtha combustion consumption by freight transport,7.440987399999999,TJ,CO2,73300.0,kg/TJ,545424.37642,kg -e2636cf7-fde1-34aa-82ac-156212babbf1,SESCO,II.1.1,Misiones,AR-N,annual,2020,naphtha combustion consumption by freight transport,7.440987399999999,TJ,CH4,3.0,kg/TJ,22.3229622,kg -7d20e818-17b4-3ef4-9f59-390d233a18d7,SESCO,II.1.1,Misiones,AR-N,annual,2020,naphtha combustion consumption by freight transport,7.440987399999999,TJ,N2O,0.6,kg/TJ,4.46459244,kg -dae77059-8349-3fe7-b0ef-29240610b8f7,SESCO,II.1.1,Neuquén,AR-Q,annual,2020,naphtha combustion consumption by freight transport,22.04849955,TJ,CO2,73300.0,kg/TJ,1616155.0170149999,kg -7db09578-dbdb-3a95-94a4-8b4fdc476442,SESCO,II.1.1,Neuquén,AR-Q,annual,2020,naphtha combustion consumption by freight transport,22.04849955,TJ,CH4,3.0,kg/TJ,66.14549865,kg -2b00ce97-8886-36ad-95b0-52be0e5a1706,SESCO,II.1.1,Neuquén,AR-Q,annual,2020,naphtha combustion consumption by freight transport,22.04849955,TJ,N2O,0.6,kg/TJ,13.22909973,kg -e08beebb-dc1e-36d6-81ee-cb9798f4ceba,SESCO,II.1.1,Rio Negro,AR-R,annual,2020,naphtha combustion consumption by freight transport,42.48071905,TJ,CO2,73300.0,kg/TJ,3113836.706365,kg -d550dc31-61d2-3044-8e42-31a69fa3666f,SESCO,II.1.1,Rio Negro,AR-R,annual,2020,naphtha combustion consumption by freight transport,42.48071905,TJ,CH4,3.0,kg/TJ,127.44215714999999,kg -ace60c8d-7bd9-35fd-8389-179a013fec93,SESCO,II.1.1,Rio Negro,AR-R,annual,2020,naphtha combustion consumption by freight transport,42.48071905,TJ,N2O,0.6,kg/TJ,25.48843143,kg -02f4a262-4a87-3e57-bbae-b94feb885c9d,SESCO,II.1.1,Salta,AR-A,annual,2020,naphtha combustion consumption by freight transport,12.594786049999998,TJ,CO2,73300.0,kg/TJ,923197.8174649999,kg -d81aaec6-703a-34e9-8360-8778dbd8ff8a,SESCO,II.1.1,Salta,AR-A,annual,2020,naphtha combustion consumption by freight transport,12.594786049999998,TJ,CH4,3.0,kg/TJ,37.784358149999996,kg -adc92049-78ec-3aaa-bf02-9a1892f47892,SESCO,II.1.1,Salta,AR-A,annual,2020,naphtha combustion consumption by freight transport,12.594786049999998,TJ,N2O,0.6,kg/TJ,7.556871629999998,kg -dfb46f43-2351-3b54-8b1a-44c823c2e570,SESCO,II.1.1,San Juan,AR-J,annual,2020,naphtha combustion consumption by freight transport,1.5552883499999999,TJ,CO2,73300.0,kg/TJ,114002.636055,kg -4e8b328c-3435-3041-9b14-da98d59f74e4,SESCO,II.1.1,San Juan,AR-J,annual,2020,naphtha combustion consumption by freight transport,1.5552883499999999,TJ,CH4,3.0,kg/TJ,4.66586505,kg -86dfa8be-583c-314f-a94f-9e8c6d019b1e,SESCO,II.1.1,San Juan,AR-J,annual,2020,naphtha combustion consumption by freight transport,1.5552883499999999,TJ,N2O,0.6,kg/TJ,0.9331730099999999,kg -b85473e8-931c-38ca-830e-9e9889e4305c,SESCO,II.1.1,San Luis,AR-D,annual,2020,naphtha combustion consumption by freight transport,3.7814853999999998,TJ,CO2,73300.0,kg/TJ,277182.87982,kg -220bd8fc-f758-3f92-9af8-1b4d78734435,SESCO,II.1.1,San Luis,AR-D,annual,2020,naphtha combustion consumption by freight transport,3.7814853999999998,TJ,CH4,3.0,kg/TJ,11.3444562,kg -2970e219-4d8d-3ec3-8ae2-4bb8fc9c0672,SESCO,II.1.1,San Luis,AR-D,annual,2020,naphtha combustion consumption by freight transport,3.7814853999999998,TJ,N2O,0.6,kg/TJ,2.26889124,kg -06dd44de-d50c-336d-a43e-2a2600f546ea,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2020,naphtha combustion consumption by freight transport,1.7687592999999997,TJ,CO2,73300.0,kg/TJ,129650.05668999998,kg -8b464c62-d390-30d6-a29e-1b6ad43e8431,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2020,naphtha combustion consumption by freight transport,1.7687592999999997,TJ,CH4,3.0,kg/TJ,5.3062778999999995,kg -deb4a892-7b9a-3dcb-ba8e-68b0bb36b1ac,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2020,naphtha combustion consumption by freight transport,1.7687592999999997,TJ,N2O,0.6,kg/TJ,1.0612555799999999,kg -7b33f8f0-4e26-3687-b3b2-35a9a81e8fe6,SESCO,II.1.1,Santa Fe,AR-S,annual,2020,naphtha combustion consumption by freight transport,58.03360255,TJ,CO2,73300.0,kg/TJ,4253863.066915,kg -2fc94b4d-8845-3d88-b291-195f3347ca29,SESCO,II.1.1,Santa Fe,AR-S,annual,2020,naphtha combustion consumption by freight transport,58.03360255,TJ,CH4,3.0,kg/TJ,174.10080764999998,kg -007677f8-e023-3ff9-94f7-1d824ec2af27,SESCO,II.1.1,Santa Fe,AR-S,annual,2020,naphtha combustion consumption by freight transport,58.03360255,TJ,N2O,0.6,kg/TJ,34.82016153,kg -93be1cbb-a12b-349e-aad6-2e4703172587,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2020,naphtha combustion consumption by freight transport,1.3418173999999998,TJ,CO2,73300.0,kg/TJ,98355.21542,kg -d099d949-ad67-3c84-87bc-3a70ccbd3684,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2020,naphtha combustion consumption by freight transport,1.3418173999999998,TJ,CH4,3.0,kg/TJ,4.025452199999999,kg -a2fa54c4-8ece-3389-a4f2-3d65438b06fd,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2020,naphtha combustion consumption by freight transport,1.3418173999999998,TJ,N2O,0.6,kg/TJ,0.8050904399999999,kg -28f3a6ed-605f-31d9-9d8d-cd5da686c6d6,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2020,naphtha combustion consumption by freight transport,2.3176845999999998,TJ,CO2,73300.0,kg/TJ,169886.28118,kg -1a6839c7-676c-3a1a-bbb5-8510a2af1c46,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2020,naphtha combustion consumption by freight transport,2.3176845999999998,TJ,CH4,3.0,kg/TJ,6.953053799999999,kg -d8b97ff6-6dfc-320a-95b4-c1537dc7a149,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2020,naphtha combustion consumption by freight transport,2.3176845999999998,TJ,N2O,0.6,kg/TJ,1.3906107599999997,kg -51a4888f-2cac-3205-bd98-258b028973bb,SESCO,II.1.1,Tucuman,AR-T,annual,2020,naphtha combustion consumption by freight transport,6.038178299999999,TJ,CO2,73300.0,kg/TJ,442598.4693899999,kg -86d4164c-80fc-3f18-8ed7-10e5dfe5fb23,SESCO,II.1.1,Tucuman,AR-T,annual,2020,naphtha combustion consumption by freight transport,6.038178299999999,TJ,CH4,3.0,kg/TJ,18.1145349,kg -efb76a2e-cff8-351a-924f-c773578031b1,SESCO,II.1.1,Tucuman,AR-T,annual,2020,naphtha combustion consumption by freight transport,6.038178299999999,TJ,N2O,0.6,kg/TJ,3.6229069799999993,kg -8c5608f2-e388-321a-af1a-d83eb1a923fb,SESCO,II.5.1,Buenos Aires,AR-B,annual,2021,naphtha combustion consumption by agriculture machines,7.049215096,TJ,CO2,73300.0,kg/TJ,516707.4665368,kg -8d7a7555-8fb3-3eb9-82c3-04d79f465ecb,SESCO,II.5.1,Buenos Aires,AR-B,annual,2021,naphtha combustion consumption by agriculture machines,7.049215096,TJ,CH4,3.0,kg/TJ,21.147645288,kg -4127d9a4-6f5e-390d-9539-204d61c1ea36,SESCO,II.5.1,Buenos Aires,AR-B,annual,2021,naphtha combustion consumption by agriculture machines,7.049215096,TJ,N2O,0.6,kg/TJ,4.2295290576,kg -59a64c9c-d550-3d66-84df-b0c3f35e5987,SESCO,II.5.1,Córdoba,AR-X,annual,2021,naphtha combustion consumption by agriculture machines,2.0504176,TJ,CO2,73300.0,kg/TJ,150295.61007999998,kg -f2269e2f-5d51-3789-b382-985e5b2746d2,SESCO,II.5.1,Córdoba,AR-X,annual,2021,naphtha combustion consumption by agriculture machines,2.0504176,TJ,CH4,3.0,kg/TJ,6.1512528,kg -0b452abe-a6f9-317e-b879-de4a95887411,SESCO,II.5.1,Córdoba,AR-X,annual,2021,naphtha combustion consumption by agriculture machines,2.0504176,TJ,N2O,0.6,kg/TJ,1.2302505599999998,kg -d9018b53-9a4b-334b-a9be-4b51e4da6f9a,SESCO,II.5.1,Santa Fe,AR-S,annual,2021,naphtha combustion consumption by agriculture machines,6.060793199999999,TJ,CO2,73300.0,kg/TJ,444256.14155999996,kg -99e095d9-f9ea-3ea8-b8d4-d28a436cb494,SESCO,II.5.1,Santa Fe,AR-S,annual,2021,naphtha combustion consumption by agriculture machines,6.060793199999999,TJ,CH4,3.0,kg/TJ,18.182379599999997,kg -d4f2c6bc-c59f-359e-9e26-6cddd94face2,SESCO,II.5.1,Santa Fe,AR-S,annual,2021,naphtha combustion consumption by agriculture machines,6.060793199999999,TJ,N2O,0.6,kg/TJ,3.636475919999999,kg -8f257b3d-4306-31fe-910f-8851c2bf1812,SESCO,II.5.1,Buenos Aires,AR-B,annual,2021,naphtha combustion consumption by agriculture machines,1.2362811999999999,TJ,CO2,73300.0,kg/TJ,90619.41195999998,kg -d2e71b8b-787a-3aba-90f9-b3a21fd90040,SESCO,II.5.1,Buenos Aires,AR-B,annual,2021,naphtha combustion consumption by agriculture machines,1.2362811999999999,TJ,CH4,3.0,kg/TJ,3.7088436,kg -7b6d17ba-3426-3772-b407-80ad99236a1f,SESCO,II.5.1,Buenos Aires,AR-B,annual,2021,naphtha combustion consumption by agriculture machines,1.2362811999999999,TJ,N2O,0.6,kg/TJ,0.7417687199999999,kg -2acb84ab-2c12-309f-bb28-864f58c16285,SESCO,II.5.1,Córdoba,AR-X,annual,2021,naphtha combustion consumption by agriculture machines,0.5126044,TJ,CO2,73300.0,kg/TJ,37573.902519999996,kg -854671e7-24fe-3878-a133-a56e7dc0317f,SESCO,II.5.1,Córdoba,AR-X,annual,2021,naphtha combustion consumption by agriculture machines,0.5126044,TJ,CH4,3.0,kg/TJ,1.5378132,kg -3ea6e18e-0b34-33c8-9496-d0e104dcee07,SESCO,II.5.1,Córdoba,AR-X,annual,2021,naphtha combustion consumption by agriculture machines,0.5126044,TJ,N2O,0.6,kg/TJ,0.30756263999999994,kg -d204aa6f-cad1-3cea-bd34-c4f6ede32b9b,SESCO,II.1.1,Buenos Aires,AR-B,annual,2021,naphtha combustion consumption by to the public,880.4432867999999,TJ,CO2,73300.0,kg/TJ,64536492.92243999,kg -657c57c7-9e1a-380f-92e2-403af3fc7424,SESCO,II.1.1,Buenos Aires,AR-B,annual,2021,naphtha combustion consumption by to the public,880.4432867999999,TJ,CH4,3.0,kg/TJ,2641.3298603999997,kg -7d60ed69-cd36-3040-a352-1a5e29b5a2bb,SESCO,II.1.1,Buenos Aires,AR-B,annual,2021,naphtha combustion consumption by to the public,880.4432867999999,TJ,N2O,0.6,kg/TJ,528.2659720799999,kg -f57889d6-d621-3855-9a4f-dfa40d702936,SESCO,II.1.1,Capital Federal,AR-C,annual,2021,naphtha combustion consumption by to the public,50.68752919999999,TJ,CO2,73300.0,kg/TJ,3715395.8903599996,kg -5194df95-e42d-3b5c-afc7-9af6f9898137,SESCO,II.1.1,Capital Federal,AR-C,annual,2021,naphtha combustion consumption by to the public,50.68752919999999,TJ,CH4,3.0,kg/TJ,152.06258759999997,kg -9f1b2b7a-f40a-3a27-963a-2a0a2be8adef,SESCO,II.1.1,Capital Federal,AR-C,annual,2021,naphtha combustion consumption by to the public,50.68752919999999,TJ,N2O,0.6,kg/TJ,30.412517519999994,kg -37e9f85b-c3f9-375d-a768-be7974e41b92,SESCO,II.1.1,Catamarca,AR-K,annual,2021,naphtha combustion consumption by to the public,32.113158,TJ,CO2,73300.0,kg/TJ,2353894.4814,kg -a7aed0e2-f83a-306d-8774-783384dad0b4,SESCO,II.1.1,Catamarca,AR-K,annual,2021,naphtha combustion consumption by to the public,32.113158,TJ,CH4,3.0,kg/TJ,96.339474,kg -ce61a255-98f8-331b-93b9-c0c46410b52f,SESCO,II.1.1,Catamarca,AR-K,annual,2021,naphtha combustion consumption by to the public,32.113158,TJ,N2O,0.6,kg/TJ,19.267894799999997,kg -77f365a7-2d3a-3d07-b594-95638af9745c,SESCO,II.1.1,Chaco,AR-H,annual,2021,naphtha combustion consumption by to the public,8.8348876,TJ,CO2,73300.0,kg/TJ,647597.26108,kg -62cb2c3d-b649-3d5d-be9d-608d5e1b0cc5,SESCO,II.1.1,Chaco,AR-H,annual,2021,naphtha combustion consumption by to the public,8.8348876,TJ,CH4,3.0,kg/TJ,26.5046628,kg -983fad4d-272f-3c76-ab08-0b9c4d24bbc4,SESCO,II.1.1,Chaco,AR-H,annual,2021,naphtha combustion consumption by to the public,8.8348876,TJ,N2O,0.6,kg/TJ,5.30093256,kg -7f398c0b-830c-356f-a615-bb9fa9f913ab,SESCO,II.1.1,Corrientes,AR-W,annual,2021,naphtha combustion consumption by to the public,13.1467952,TJ,CO2,73300.0,kg/TJ,963660.0881599999,kg -ed926b82-40dd-324e-9be3-db919b38f3cb,SESCO,II.1.1,Corrientes,AR-W,annual,2021,naphtha combustion consumption by to the public,13.1467952,TJ,CH4,3.0,kg/TJ,39.4403856,kg -00dbc171-8320-32bb-b3e4-3c3f79af0e1e,SESCO,II.1.1,Corrientes,AR-W,annual,2021,naphtha combustion consumption by to the public,13.1467952,TJ,N2O,0.6,kg/TJ,7.888077119999999,kg -e52867a6-93ac-372e-8cf5-f564a29977be,SESCO,II.1.1,Córdoba,AR-X,annual,2021,naphtha combustion consumption by to the public,416.38553879999995,TJ,CO2,73300.0,kg/TJ,30521059.994039997,kg -a78f8cdd-82dc-3226-b754-d721bcf9aaaf,SESCO,II.1.1,Córdoba,AR-X,annual,2021,naphtha combustion consumption by to the public,416.38553879999995,TJ,CH4,3.0,kg/TJ,1249.1566163999998,kg -4f381943-2748-3e76-9fb4-00d302cfbc7d,SESCO,II.1.1,Córdoba,AR-X,annual,2021,naphtha combustion consumption by to the public,416.38553879999995,TJ,N2O,0.6,kg/TJ,249.83132327999996,kg -c3089c10-c754-3ef7-830c-b351c0ecd5ac,SESCO,II.1.1,Entre Rios,AR-E,annual,2021,naphtha combustion consumption by to the public,113.79817679999998,TJ,CO2,73300.0,kg/TJ,8341406.359439999,kg -55a74aea-60a5-3f4b-b3f1-e84db6c05ce8,SESCO,II.1.1,Entre Rios,AR-E,annual,2021,naphtha combustion consumption by to the public,113.79817679999998,TJ,CH4,3.0,kg/TJ,341.39453039999995,kg -17b3e5ab-19cc-3411-844b-d23874676fc5,SESCO,II.1.1,Entre Rios,AR-E,annual,2021,naphtha combustion consumption by to the public,113.79817679999998,TJ,N2O,0.6,kg/TJ,68.27890607999998,kg -1a02c96c-85e7-33a5-a64e-d16a465d2a7a,SESCO,II.1.1,Mendoza,AR-M,annual,2021,naphtha combustion consumption by to the public,268.212714,TJ,CO2,73300.0,kg/TJ,19659991.9362,kg -77c5b9fa-6728-3bea-ae2d-bc753c746f02,SESCO,II.1.1,Mendoza,AR-M,annual,2021,naphtha combustion consumption by to the public,268.212714,TJ,CH4,3.0,kg/TJ,804.638142,kg -2017317c-7a2a-3e96-b971-f2cfd2ec824e,SESCO,II.1.1,Mendoza,AR-M,annual,2021,naphtha combustion consumption by to the public,268.212714,TJ,N2O,0.6,kg/TJ,160.9276284,kg -61e74217-25fc-3024-a477-e19bdd285131,SESCO,II.1.1,San Juan,AR-J,annual,2021,naphtha combustion consumption by to the public,3.4374647999999994,TJ,CO2,73300.0,kg/TJ,251966.16983999996,kg -65589e84-d39e-35a5-9118-02db8855c3f7,SESCO,II.1.1,San Juan,AR-J,annual,2021,naphtha combustion consumption by to the public,3.4374647999999994,TJ,CH4,3.0,kg/TJ,10.312394399999999,kg -d087aa00-5ea7-3587-a94f-45fc49d5f7d1,SESCO,II.1.1,San Juan,AR-J,annual,2021,naphtha combustion consumption by to the public,3.4374647999999994,TJ,N2O,0.6,kg/TJ,2.0624788799999996,kg -4ef820bc-4b3f-3b3f-88c9-b652bbfc3941,SESCO,II.1.1,San Luis,AR-D,annual,2021,naphtha combustion consumption by to the public,49.149716,TJ,CO2,73300.0,kg/TJ,3602674.1828,kg -2f6b0a6f-b699-3b2d-ac0f-60044db4918a,SESCO,II.1.1,San Luis,AR-D,annual,2021,naphtha combustion consumption by to the public,49.149716,TJ,CH4,3.0,kg/TJ,147.44914799999998,kg -d1ddfec6-b2e9-3592-be1f-7e79bb1df24a,SESCO,II.1.1,San Luis,AR-D,annual,2021,naphtha combustion consumption by to the public,49.149716,TJ,N2O,0.6,kg/TJ,29.489829599999997,kg -e17773ba-b3df-3732-86f9-d7e8db18cc9e,SESCO,II.1.1,Santa Fe,AR-S,annual,2021,naphtha combustion consumption by to the public,308.4973892,TJ,CO2,73300.0,kg/TJ,22612858.62836,kg -30734f78-69d4-3615-9b7b-bf9b4d629dbb,SESCO,II.1.1,Santa Fe,AR-S,annual,2021,naphtha combustion consumption by to the public,308.4973892,TJ,CH4,3.0,kg/TJ,925.4921675999999,kg -8e84c097-099b-328b-890f-30e4226ace0b,SESCO,II.1.1,Santa Fe,AR-S,annual,2021,naphtha combustion consumption by to the public,308.4973892,TJ,N2O,0.6,kg/TJ,185.09843352,kg -81347847-40d1-3f50-aa4a-bb294c5c419b,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2021,naphtha combustion consumption by to the public,48.84818399999999,TJ,CO2,73300.0,kg/TJ,3580571.8871999993,kg -9db05bd0-3ea0-3f0b-9dc1-f497baa7c2ab,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2021,naphtha combustion consumption by to the public,48.84818399999999,TJ,CH4,3.0,kg/TJ,146.54455199999995,kg -b35b02af-515a-3f5f-80ae-bf5518786d04,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2021,naphtha combustion consumption by to the public,48.84818399999999,TJ,N2O,0.6,kg/TJ,29.30891039999999,kg -b2499552-3044-304a-8ea9-b7784d5de6a4,SESCO,II.1.1,Tucuman,AR-T,annual,2021,naphtha combustion consumption by to the public,26.2634372,TJ,CO2,73300.0,kg/TJ,1925109.94676,kg -1cd3683a-a897-3775-8dec-141167e91442,SESCO,II.1.1,Tucuman,AR-T,annual,2021,naphtha combustion consumption by to the public,26.2634372,TJ,CH4,3.0,kg/TJ,78.7903116,kg -2c85ca18-5c8b-3c28-b8ce-00bdb29865eb,SESCO,II.1.1,Tucuman,AR-T,annual,2021,naphtha combustion consumption by to the public,26.2634372,TJ,N2O,0.6,kg/TJ,15.758062319999999,kg -66d61a53-c5c4-3875-9bce-db5191a3f095,SESCO,II.1.1,Buenos Aires,AR-B,annual,2021,naphtha combustion consumption by to the public,62.62819639999999,TJ,CO2,73300.0,kg/TJ,4590646.796119999,kg -e487b21f-e64d-3b23-bcad-210afa120351,SESCO,II.1.1,Buenos Aires,AR-B,annual,2021,naphtha combustion consumption by to the public,62.62819639999999,TJ,CH4,3.0,kg/TJ,187.8845892,kg -c924df42-59e9-3658-9c4d-fba3512c3f62,SESCO,II.1.1,Buenos Aires,AR-B,annual,2021,naphtha combustion consumption by to the public,62.62819639999999,TJ,N2O,0.6,kg/TJ,37.57691783999999,kg -6156b30b-97bf-3c3e-a07c-cb5301207d77,SESCO,II.1.1,Capital Federal,AR-C,annual,2021,naphtha combustion consumption by to the public,8.2619768,TJ,CO2,73300.0,kg/TJ,605602.89944,kg -7e2bf6c6-a139-3d97-b1c0-e4c6a0b3d2a3,SESCO,II.1.1,Capital Federal,AR-C,annual,2021,naphtha combustion consumption by to the public,8.2619768,TJ,CH4,3.0,kg/TJ,24.785930399999998,kg -921dbca4-dce7-3e2b-af76-96839efef2a1,SESCO,II.1.1,Capital Federal,AR-C,annual,2021,naphtha combustion consumption by to the public,8.2619768,TJ,N2O,0.6,kg/TJ,4.95718608,kg -51943e8d-a7ec-3c27-af4a-699ced4d6c2a,SESCO,II.1.1,Catamarca,AR-K,annual,2021,naphtha combustion consumption by to the public,3.6485372,TJ,CO2,73300.0,kg/TJ,267437.77676,kg -51e39c8d-96aa-3685-ac21-cbb813999c1f,SESCO,II.1.1,Catamarca,AR-K,annual,2021,naphtha combustion consumption by to the public,3.6485372,TJ,CH4,3.0,kg/TJ,10.9456116,kg -f1ff4091-933c-357c-ad17-3dd14162d5bf,SESCO,II.1.1,Catamarca,AR-K,annual,2021,naphtha combustion consumption by to the public,3.6485372,TJ,N2O,0.6,kg/TJ,2.1891223199999996,kg -81ffde43-2de9-3c01-a73f-2d7111b16ace,SESCO,II.1.1,Chaco,AR-H,annual,2021,naphtha combustion consumption by to the public,0.2110724,TJ,CO2,73300.0,kg/TJ,15471.60692,kg -63ace205-1b62-3407-9486-00efb297f2b7,SESCO,II.1.1,Chaco,AR-H,annual,2021,naphtha combustion consumption by to the public,0.2110724,TJ,CH4,3.0,kg/TJ,0.6332172,kg -5cdf9609-b9ea-36e9-9bda-9ea02a43b6e2,SESCO,II.1.1,Chaco,AR-H,annual,2021,naphtha combustion consumption by to the public,0.2110724,TJ,N2O,0.6,kg/TJ,0.12664344,kg -b8312bcc-fb65-32bf-90c5-27c4e8b660e9,SESCO,II.1.1,Corrientes,AR-W,annual,2021,naphtha combustion consumption by to the public,0.4221448,TJ,CO2,73300.0,kg/TJ,30943.21384,kg -f1e48d8d-e75c-3f3f-9dc8-1b7d161f48a6,SESCO,II.1.1,Corrientes,AR-W,annual,2021,naphtha combustion consumption by to the public,0.4221448,TJ,CH4,3.0,kg/TJ,1.2664344,kg -266056e2-6a4e-3315-9516-53eda4077a7b,SESCO,II.1.1,Corrientes,AR-W,annual,2021,naphtha combustion consumption by to the public,0.4221448,TJ,N2O,0.6,kg/TJ,0.25328688,kg -b4cf50f7-2ba1-3d6e-b453-a36fed315eeb,SESCO,II.1.1,Córdoba,AR-X,annual,2021,naphtha combustion consumption by to the public,42.06371399999999,TJ,CO2,73300.0,kg/TJ,3083270.236199999,kg -9e66cf3f-e1fe-3955-9f5d-9e2057f9bfa5,SESCO,II.1.1,Córdoba,AR-X,annual,2021,naphtha combustion consumption by to the public,42.06371399999999,TJ,CH4,3.0,kg/TJ,126.19114199999997,kg -6c8142bf-3d91-3466-af05-c229fea23d72,SESCO,II.1.1,Córdoba,AR-X,annual,2021,naphtha combustion consumption by to the public,42.06371399999999,TJ,N2O,0.6,kg/TJ,25.238228399999993,kg -ac6147c9-94e8-36da-8ba5-2a11da6e6d4e,SESCO,II.1.1,Entre Rios,AR-E,annual,2021,naphtha combustion consumption by to the public,9.106266399999999,TJ,CO2,73300.0,kg/TJ,667489.3271199999,kg -2e0f6daa-082e-3949-907f-f84e61cb02b8,SESCO,II.1.1,Entre Rios,AR-E,annual,2021,naphtha combustion consumption by to the public,9.106266399999999,TJ,CH4,3.0,kg/TJ,27.318799199999997,kg -8fe22364-72f9-3209-8c83-249168d4b1b6,SESCO,II.1.1,Entre Rios,AR-E,annual,2021,naphtha combustion consumption by to the public,9.106266399999999,TJ,N2O,0.6,kg/TJ,5.463759839999999,kg -6be8b22e-4d14-386c-ad66-eb192fc60ded,SESCO,II.1.1,Mendoza,AR-M,annual,2021,naphtha combustion consumption by to the public,39.8926836,TJ,CO2,73300.0,kg/TJ,2924133.7078799997,kg -88320b25-1834-3430-9911-7fabeea972fe,SESCO,II.1.1,Mendoza,AR-M,annual,2021,naphtha combustion consumption by to the public,39.8926836,TJ,CH4,3.0,kg/TJ,119.6780508,kg -f392dc67-019b-3684-8487-326fdb976af0,SESCO,II.1.1,Mendoza,AR-M,annual,2021,naphtha combustion consumption by to the public,39.8926836,TJ,N2O,0.6,kg/TJ,23.93561016,kg -15969dfb-7e95-378a-8699-bfc0ff3d016d,SESCO,II.1.1,San Juan,AR-J,annual,2021,naphtha combustion consumption by to the public,0.301532,TJ,CO2,73300.0,kg/TJ,22102.2956,kg -5ea99195-4f46-3ecf-8cb0-784f00492791,SESCO,II.1.1,San Juan,AR-J,annual,2021,naphtha combustion consumption by to the public,0.301532,TJ,CH4,3.0,kg/TJ,0.9045960000000001,kg -91581bf9-095e-3107-92b9-67289d566bcb,SESCO,II.1.1,San Juan,AR-J,annual,2021,naphtha combustion consumption by to the public,0.301532,TJ,N2O,0.6,kg/TJ,0.1809192,kg -ad507515-952c-376c-a09a-3ef6910a0093,SESCO,II.1.1,San Luis,AR-D,annual,2021,naphtha combustion consumption by to the public,1.8091919999999997,TJ,CO2,73300.0,kg/TJ,132613.7736,kg -76d6b3dc-957b-3a81-9c7d-6f633628533c,SESCO,II.1.1,San Luis,AR-D,annual,2021,naphtha combustion consumption by to the public,1.8091919999999997,TJ,CH4,3.0,kg/TJ,5.427575999999999,kg -8327d6c5-fc0c-346e-a7f2-3ca7e5bd303b,SESCO,II.1.1,San Luis,AR-D,annual,2021,naphtha combustion consumption by to the public,1.8091919999999997,TJ,N2O,0.6,kg/TJ,1.0855151999999997,kg -ee117ffa-c122-3515-8ee3-07aab0b01782,SESCO,II.1.1,Santa Fe,AR-S,annual,2021,naphtha combustion consumption by to the public,40.7369732,TJ,CO2,73300.0,kg/TJ,2986020.1355600003,kg -d9961a5f-4f3f-38d3-ba45-0e3e3200f640,SESCO,II.1.1,Santa Fe,AR-S,annual,2021,naphtha combustion consumption by to the public,40.7369732,TJ,CH4,3.0,kg/TJ,122.21091960000001,kg -8c0c8117-d65b-39d5-9c40-62e1bda82886,SESCO,II.1.1,Santa Fe,AR-S,annual,2021,naphtha combustion consumption by to the public,40.7369732,TJ,N2O,0.6,kg/TJ,24.44218392,kg -8b149434-15a8-3f3c-a2e7-457474ad1c2d,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2021,naphtha combustion consumption by to the public,5.910027199999999,TJ,CO2,73300.0,kg/TJ,433204.9937599999,kg -464667af-ec23-35d1-ab8b-ca4408533dbf,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2021,naphtha combustion consumption by to the public,5.910027199999999,TJ,CH4,3.0,kg/TJ,17.7300816,kg -fbc6bcf1-cb9a-3406-9ec7-f82457e0554f,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2021,naphtha combustion consumption by to the public,5.910027199999999,TJ,N2O,0.6,kg/TJ,3.5460163199999992,kg -81974d3a-b1b8-38e6-a70b-6d47abc655cf,SESCO,II.1.1,Tucuman,AR-T,annual,2021,naphtha combustion consumption by to the public,0.1809192,TJ,CO2,73300.0,kg/TJ,13261.37736,kg -40350207-30e9-3304-afa0-3897d73eb20a,SESCO,II.1.1,Tucuman,AR-T,annual,2021,naphtha combustion consumption by to the public,0.1809192,TJ,CH4,3.0,kg/TJ,0.5427576000000001,kg -775bbfe6-5bff-3905-b959-c2f6865d929a,SESCO,II.1.1,Tucuman,AR-T,annual,2021,naphtha combustion consumption by to the public,0.1809192,TJ,N2O,0.6,kg/TJ,0.10855152,kg -68ce5347-66da-3090-82ad-908b94d0220f,SESCO,II.5.1,Córdoba,AR-X,annual,2021,naphtha combustion consumption by agriculture machines,5.457729199999999,TJ,CO2,73300.0,kg/TJ,400051.55035999994,kg -e4b9e9bc-3584-3406-af85-78cf63b96e4f,SESCO,II.5.1,Córdoba,AR-X,annual,2021,naphtha combustion consumption by agriculture machines,5.457729199999999,TJ,CH4,3.0,kg/TJ,16.373187599999998,kg -02cd9202-81ff-3d0a-923a-5177fa0071f6,SESCO,II.5.1,Córdoba,AR-X,annual,2021,naphtha combustion consumption by agriculture machines,5.457729199999999,TJ,N2O,0.6,kg/TJ,3.2746375199999993,kg -e5212eba-158d-3d90-8f77-615cb4ebc819,SESCO,II.5.1,Mendoza,AR-M,annual,2021,naphtha combustion consumption by agriculture machines,1.4473536,TJ,CO2,73300.0,kg/TJ,106091.01888,kg -c6023b3c-cd75-318a-b198-3ef42d17c091,SESCO,II.5.1,Mendoza,AR-M,annual,2021,naphtha combustion consumption by agriculture machines,1.4473536,TJ,CH4,3.0,kg/TJ,4.3420608000000005,kg -9d87fd40-1788-39ca-bfd9-d15272d35178,SESCO,II.5.1,Mendoza,AR-M,annual,2021,naphtha combustion consumption by agriculture machines,1.4473536,TJ,N2O,0.6,kg/TJ,0.86841216,kg -f1ec03e2-0485-3ca2-b7c9-b51ae5233774,SESCO,II.5.1,Salta,AR-A,annual,2021,naphtha combustion consumption by agriculture machines,0.3618384,TJ,CO2,73300.0,kg/TJ,26522.75472,kg -68fe5cc1-58d1-3027-9df9-eb5e9a88c3e5,SESCO,II.5.1,Salta,AR-A,annual,2021,naphtha combustion consumption by agriculture machines,0.3618384,TJ,CH4,3.0,kg/TJ,1.0855152000000001,kg -eb85b14e-efe1-301a-95cd-f6d71dca6aad,SESCO,II.5.1,Salta,AR-A,annual,2021,naphtha combustion consumption by agriculture machines,0.3618384,TJ,N2O,0.6,kg/TJ,0.21710304,kg -d4a72167-5b68-3814-8c36-b5c5463d9f43,SESCO,II.5.1,Córdoba,AR-X,annual,2021,naphtha combustion consumption by agriculture machines,0.48245119999999997,TJ,CO2,73300.0,kg/TJ,35363.672959999996,kg -013b6ab2-06c3-33a3-9fd2-17a769ab6d6f,SESCO,II.5.1,Córdoba,AR-X,annual,2021,naphtha combustion consumption by agriculture machines,0.48245119999999997,TJ,CH4,3.0,kg/TJ,1.4473536,kg -3558e7e6-39b0-3c30-9a26-49bce4beb842,SESCO,II.5.1,Córdoba,AR-X,annual,2021,naphtha combustion consumption by agriculture machines,0.48245119999999997,TJ,N2O,0.6,kg/TJ,0.28947071999999996,kg -fe6b4463-0f22-341b-b460-8535deab3ee6,SESCO,II.1.1,Buenos Aires,AR-B,annual,2021,naphtha combustion consumption by to the public,885.0868795999999,TJ,CO2,73300.0,kg/TJ,64876868.27467999,kg -8bc105d2-4d3b-3775-b64e-84efba38e586,SESCO,II.1.1,Buenos Aires,AR-B,annual,2021,naphtha combustion consumption by to the public,885.0868795999999,TJ,CH4,3.0,kg/TJ,2655.2606387999995,kg -24941744-a271-3c24-971f-023f1f4cd915,SESCO,II.1.1,Buenos Aires,AR-B,annual,2021,naphtha combustion consumption by to the public,885.0868795999999,TJ,N2O,0.6,kg/TJ,531.0521277599998,kg -f5f1e53d-0e83-3763-a5d3-e72779bcd8f3,SESCO,II.1.1,Capital Federal,AR-C,annual,2021,naphtha combustion consumption by to the public,151.30875759999998,TJ,CO2,73300.0,kg/TJ,11090931.932079999,kg -5cf2c1bd-c88c-37d4-9817-a286a4d592bf,SESCO,II.1.1,Capital Federal,AR-C,annual,2021,naphtha combustion consumption by to the public,151.30875759999998,TJ,CH4,3.0,kg/TJ,453.92627279999994,kg -57ab497c-0cb9-311b-a1c2-5a95aee89820,SESCO,II.1.1,Capital Federal,AR-C,annual,2021,naphtha combustion consumption by to the public,151.30875759999998,TJ,N2O,0.6,kg/TJ,90.78525455999998,kg -c6e6ea45-ad58-37e4-bebb-f48191a28072,SESCO,II.1.1,Catamarca,AR-K,annual,2021,naphtha combustion consumption by to the public,73.3627356,TJ,CO2,73300.0,kg/TJ,5377488.519479999,kg -7f0639c3-447e-3f3b-a51f-775f7172ade2,SESCO,II.1.1,Catamarca,AR-K,annual,2021,naphtha combustion consumption by to the public,73.3627356,TJ,CH4,3.0,kg/TJ,220.08820679999997,kg -3996580b-3a9e-38cf-b1b7-3ff4e8dd8ab7,SESCO,II.1.1,Catamarca,AR-K,annual,2021,naphtha combustion consumption by to the public,73.3627356,TJ,N2O,0.6,kg/TJ,44.01764135999999,kg -59fe52f1-4522-36a7-9c64-417abfaebc99,SESCO,II.1.1,Chaco,AR-H,annual,2021,naphtha combustion consumption by to the public,169.79266919999998,TJ,CO2,73300.0,kg/TJ,12445802.652359998,kg -968e7d8c-8430-39ae-84ba-b981f8280322,SESCO,II.1.1,Chaco,AR-H,annual,2021,naphtha combustion consumption by to the public,169.79266919999998,TJ,CH4,3.0,kg/TJ,509.37800759999993,kg -520b5521-6991-3f94-877e-3eb9f558adda,SESCO,II.1.1,Chaco,AR-H,annual,2021,naphtha combustion consumption by to the public,169.79266919999998,TJ,N2O,0.6,kg/TJ,101.87560151999999,kg -d0ebc010-8cd0-3708-b998-ebd0b7654d75,SESCO,II.1.1,Corrientes,AR-W,annual,2021,naphtha combustion consumption by to the public,153.32902199999998,TJ,CO2,73300.0,kg/TJ,11239017.312599998,kg -9c6dc5a1-a52e-306b-b17e-f0d303d0c856,SESCO,II.1.1,Corrientes,AR-W,annual,2021,naphtha combustion consumption by to the public,153.32902199999998,TJ,CH4,3.0,kg/TJ,459.9870659999999,kg -f3b27dfb-5072-3823-8d34-dd659203386a,SESCO,II.1.1,Corrientes,AR-W,annual,2021,naphtha combustion consumption by to the public,153.32902199999998,TJ,N2O,0.6,kg/TJ,91.99741319999998,kg -3019bb1b-aadb-389e-8315-f86ae6cc6f60,SESCO,II.1.1,Córdoba,AR-X,annual,2021,naphtha combustion consumption by to the public,378.48296639999995,TJ,CO2,73300.0,kg/TJ,27742801.437119998,kg -100c82d6-2d97-37b6-ae11-af5a08538657,SESCO,II.1.1,Córdoba,AR-X,annual,2021,naphtha combustion consumption by to the public,378.48296639999995,TJ,CH4,3.0,kg/TJ,1135.4488992,kg -787930bf-807e-3b04-955b-a15425ff0b89,SESCO,II.1.1,Córdoba,AR-X,annual,2021,naphtha combustion consumption by to the public,378.48296639999995,TJ,N2O,0.6,kg/TJ,227.08977983999998,kg -682b5df9-ba1d-3db0-acb7-f0ed0f0c93ac,SESCO,II.1.1,Entre Rios,AR-E,annual,2021,naphtha combustion consumption by to the public,270.4138976,TJ,CO2,73300.0,kg/TJ,19821338.69408,kg -fa3a4656-3ba0-32e3-a864-a3223309b94d,SESCO,II.1.1,Entre Rios,AR-E,annual,2021,naphtha combustion consumption by to the public,270.4138976,TJ,CH4,3.0,kg/TJ,811.2416928,kg -fe3b1f7c-1264-3db9-b8bc-52fefaa43668,SESCO,II.1.1,Entre Rios,AR-E,annual,2021,naphtha combustion consumption by to the public,270.4138976,TJ,N2O,0.6,kg/TJ,162.24833855999998,kg -be4bf4bd-7ce1-31ed-956a-3d1dea265bc1,SESCO,II.1.1,Formosa,AR-P,annual,2021,naphtha combustion consumption by to the public,37.7518064,TJ,CO2,73300.0,kg/TJ,2767207.40912,kg -d02e8a53-dddc-395d-86e5-7858b83fdcf3,SESCO,II.1.1,Formosa,AR-P,annual,2021,naphtha combustion consumption by to the public,37.7518064,TJ,CH4,3.0,kg/TJ,113.2554192,kg -20817432-50a8-3325-867b-f35f8d7aaaf9,SESCO,II.1.1,Formosa,AR-P,annual,2021,naphtha combustion consumption by to the public,37.7518064,TJ,N2O,0.6,kg/TJ,22.65108384,kg -242e8c52-539d-37cb-82fd-64ad6f2ebbf7,SESCO,II.1.1,La Rioja,AR-F,annual,2021,naphtha combustion consumption by to the public,65.1912184,TJ,CO2,73300.0,kg/TJ,4778516.30872,kg -d99e6de5-3856-3ecb-93d2-7aee70dc8dfb,SESCO,II.1.1,La Rioja,AR-F,annual,2021,naphtha combustion consumption by to the public,65.1912184,TJ,CH4,3.0,kg/TJ,195.5736552,kg -f45eec0f-7962-346e-a0ad-2d06ab6399d0,SESCO,II.1.1,La Rioja,AR-F,annual,2021,naphtha combustion consumption by to the public,65.1912184,TJ,N2O,0.6,kg/TJ,39.114731039999995,kg -413873e7-98b3-34ae-9cf0-b5faef097619,SESCO,II.1.1,Mendoza,AR-M,annual,2021,naphtha combustion consumption by to the public,384.0914616,TJ,CO2,73300.0,kg/TJ,28153904.135280002,kg -7143fa62-1182-3e46-b3ff-246a2f46a0b1,SESCO,II.1.1,Mendoza,AR-M,annual,2021,naphtha combustion consumption by to the public,384.0914616,TJ,CH4,3.0,kg/TJ,1152.2743848,kg -5dbdba50-cd17-3eb6-bd74-e24f2ef9dde0,SESCO,II.1.1,Mendoza,AR-M,annual,2021,naphtha combustion consumption by to the public,384.0914616,TJ,N2O,0.6,kg/TJ,230.45487695999998,kg -0fa37233-ca03-3d83-a0db-ccc9af49d8a7,SESCO,II.1.1,Misiones,AR-N,annual,2021,naphtha combustion consumption by to the public,189.09071719999997,TJ,CO2,73300.0,kg/TJ,13860349.570759999,kg -22241a5d-35bc-3279-b3d8-8c0af6d6127a,SESCO,II.1.1,Misiones,AR-N,annual,2021,naphtha combustion consumption by to the public,189.09071719999997,TJ,CH4,3.0,kg/TJ,567.2721515999999,kg -043fb92c-1a01-38c7-81ab-1d96390d72ef,SESCO,II.1.1,Misiones,AR-N,annual,2021,naphtha combustion consumption by to the public,189.09071719999997,TJ,N2O,0.6,kg/TJ,113.45443031999999,kg -ad54e180-2f58-3756-9980-e9cbc935d4f9,SESCO,II.1.1,Salta,AR-A,annual,2021,naphtha combustion consumption by to the public,0.7538299999999999,TJ,CO2,73300.0,kg/TJ,55255.738999999994,kg -93614ca6-b717-32e9-843e-5a504649cb29,SESCO,II.1.1,Salta,AR-A,annual,2021,naphtha combustion consumption by to the public,0.7538299999999999,TJ,CH4,3.0,kg/TJ,2.26149,kg -4e10e865-16e3-3d28-9a5b-c8e175a4e9d5,SESCO,II.1.1,Salta,AR-A,annual,2021,naphtha combustion consumption by to the public,0.7538299999999999,TJ,N2O,0.6,kg/TJ,0.4522979999999999,kg -943ab801-5b51-3354-b06a-0a2d34accd3b,SESCO,II.1.1,San Juan,AR-J,annual,2021,naphtha combustion consumption by to the public,45.71225119999999,TJ,CO2,73300.0,kg/TJ,3350708.0129599995,kg -4a9ce4f8-6de2-37d2-bfe4-fac10a777242,SESCO,II.1.1,San Juan,AR-J,annual,2021,naphtha combustion consumption by to the public,45.71225119999999,TJ,CH4,3.0,kg/TJ,137.13675359999996,kg -0b35d5c4-d4e8-33fb-a621-e5fdedcc6a2b,SESCO,II.1.1,San Juan,AR-J,annual,2021,naphtha combustion consumption by to the public,45.71225119999999,TJ,N2O,0.6,kg/TJ,27.427350719999993,kg -77f9a16e-17a6-3997-badb-2f4966d9343b,SESCO,II.1.1,San Luis,AR-D,annual,2021,naphtha combustion consumption by to the public,15.951042799999998,TJ,CO2,73300.0,kg/TJ,1169211.4372399999,kg -8034f89b-59e9-3f49-83e9-35eda79f51fc,SESCO,II.1.1,San Luis,AR-D,annual,2021,naphtha combustion consumption by to the public,15.951042799999998,TJ,CH4,3.0,kg/TJ,47.853128399999996,kg -f0f60503-f604-3b82-90c1-445d1383964a,SESCO,II.1.1,San Luis,AR-D,annual,2021,naphtha combustion consumption by to the public,15.951042799999998,TJ,N2O,0.6,kg/TJ,9.57062568,kg -06457701-6fed-351c-9360-04c4ce60aa19,SESCO,II.1.1,Santa Fe,AR-S,annual,2021,naphtha combustion consumption by to the public,288.5962772,TJ,CO2,73300.0,kg/TJ,21154107.118759997,kg -8be8c15e-e987-3f1d-84df-4316bcc09f69,SESCO,II.1.1,Santa Fe,AR-S,annual,2021,naphtha combustion consumption by to the public,288.5962772,TJ,CH4,3.0,kg/TJ,865.7888315999999,kg -8b3bd3bd-086f-354e-a4fe-376393cbde53,SESCO,II.1.1,Santa Fe,AR-S,annual,2021,naphtha combustion consumption by to the public,288.5962772,TJ,N2O,0.6,kg/TJ,173.15776631999998,kg -0556bafb-d293-3cee-b048-048e0a18f893,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2021,naphtha combustion consumption by to the public,88.6202548,TJ,CO2,73300.0,kg/TJ,6495864.67684,kg -8609ebf4-9b00-324c-a80d-eb636d554bba,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2021,naphtha combustion consumption by to the public,88.6202548,TJ,CH4,3.0,kg/TJ,265.8607644,kg -3eeda532-7f49-3733-9e74-929fdee48ff0,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2021,naphtha combustion consumption by to the public,88.6202548,TJ,N2O,0.6,kg/TJ,53.17215288,kg -2926207d-f5db-3844-aba8-ca951288cda8,SESCO,II.1.1,Tucuman,AR-T,annual,2021,naphtha combustion consumption by to the public,40.19421559999999,TJ,CO2,73300.0,kg/TJ,2946236.0034799995,kg -77c0d259-8617-3406-a0c9-a2f59ca3d797,SESCO,II.1.1,Tucuman,AR-T,annual,2021,naphtha combustion consumption by to the public,40.19421559999999,TJ,CH4,3.0,kg/TJ,120.58264679999998,kg -2cdaa3da-f108-331f-993c-471d813f38cd,SESCO,II.1.1,Tucuman,AR-T,annual,2021,naphtha combustion consumption by to the public,40.19421559999999,TJ,N2O,0.6,kg/TJ,24.116529359999994,kg -926946b9-ac68-3b58-862e-ff8d18816e5f,SESCO,II.1.1,Buenos Aires,AR-B,annual,2021,naphtha combustion consumption by to the public,100.9227604,TJ,CO2,73300.0,kg/TJ,7397638.33732,kg -a566a96b-bc95-39f4-8f0b-885d7df39c4e,SESCO,II.1.1,Buenos Aires,AR-B,annual,2021,naphtha combustion consumption by to the public,100.9227604,TJ,CH4,3.0,kg/TJ,302.7682812,kg -659d229a-3563-3ab6-9c56-1cc9e4e8823e,SESCO,II.1.1,Buenos Aires,AR-B,annual,2021,naphtha combustion consumption by to the public,100.9227604,TJ,N2O,0.6,kg/TJ,60.553656239999995,kg -765c5842-4d8e-3f8d-a276-4a800650251c,SESCO,II.1.1,Capital Federal,AR-C,annual,2021,naphtha combustion consumption by to the public,21.861069999999998,TJ,CO2,73300.0,kg/TJ,1602416.4309999999,kg -ec04e1dd-e659-3901-a2b3-e98fda3c583f,SESCO,II.1.1,Capital Federal,AR-C,annual,2021,naphtha combustion consumption by to the public,21.861069999999998,TJ,CH4,3.0,kg/TJ,65.58321,kg -50910a48-f931-346f-bb1f-f3931d6239a3,SESCO,II.1.1,Capital Federal,AR-C,annual,2021,naphtha combustion consumption by to the public,21.861069999999998,TJ,N2O,0.6,kg/TJ,13.116641999999999,kg -99e50227-ad91-3d19-9318-33a8cc3fb3c5,SESCO,II.1.1,Catamarca,AR-K,annual,2021,naphtha combustion consumption by to the public,7.387533999999999,TJ,CO2,73300.0,kg/TJ,541506.2421999999,kg -15ec2f32-de66-34a2-8b5b-31077cb3bc0b,SESCO,II.1.1,Catamarca,AR-K,annual,2021,naphtha combustion consumption by to the public,7.387533999999999,TJ,CH4,3.0,kg/TJ,22.162601999999996,kg -1bb7064d-46a5-3d0e-b14d-e26febd08d40,SESCO,II.1.1,Catamarca,AR-K,annual,2021,naphtha combustion consumption by to the public,7.387533999999999,TJ,N2O,0.6,kg/TJ,4.432520399999999,kg -c948078d-3598-3f7d-84f8-02cceb658c31,SESCO,II.1.1,Chaco,AR-H,annual,2021,naphtha combustion consumption by to the public,11.8502076,TJ,CO2,73300.0,kg/TJ,868620.21708,kg -3526fe29-0839-309a-b1f5-2d6b769cdfff,SESCO,II.1.1,Chaco,AR-H,annual,2021,naphtha combustion consumption by to the public,11.8502076,TJ,CH4,3.0,kg/TJ,35.5506228,kg -2ae6f4f5-2d9b-307a-bf92-72efeeeb99d8,SESCO,II.1.1,Chaco,AR-H,annual,2021,naphtha combustion consumption by to the public,11.8502076,TJ,N2O,0.6,kg/TJ,7.110124559999999,kg -18a52b85-3029-3042-9812-c33b6508cfef,SESCO,II.1.1,Corrientes,AR-W,annual,2021,naphtha combustion consumption by to the public,9.3173388,TJ,CO2,73300.0,kg/TJ,682960.93404,kg -98e07369-73ea-34db-9564-b03cddedd60c,SESCO,II.1.1,Corrientes,AR-W,annual,2021,naphtha combustion consumption by to the public,9.3173388,TJ,CH4,3.0,kg/TJ,27.952016399999998,kg -0adce852-c3aa-3493-9b02-fda6fd5cd780,SESCO,II.1.1,Corrientes,AR-W,annual,2021,naphtha combustion consumption by to the public,9.3173388,TJ,N2O,0.6,kg/TJ,5.590403279999999,kg -086cc629-d91b-354f-ab16-3c5f55402e39,SESCO,II.1.1,Córdoba,AR-X,annual,2021,naphtha combustion consumption by to the public,54.637598399999995,TJ,CO2,73300.0,kg/TJ,4004935.9627199997,kg -ed9b9ee5-4fe8-32ca-ae9b-7c05841aae97,SESCO,II.1.1,Córdoba,AR-X,annual,2021,naphtha combustion consumption by to the public,54.637598399999995,TJ,CH4,3.0,kg/TJ,163.91279519999998,kg -b0c54046-3e48-38a5-985b-7f55462e087a,SESCO,II.1.1,Córdoba,AR-X,annual,2021,naphtha combustion consumption by to the public,54.637598399999995,TJ,N2O,0.6,kg/TJ,32.782559039999995,kg -0e349858-14b4-32c9-aca8-c0ab393923d5,SESCO,II.1.1,Entre Rios,AR-E,annual,2021,naphtha combustion consumption by to the public,19.3282012,TJ,CO2,73300.0,kg/TJ,1416757.14796,kg -61d45422-3c82-3053-96dd-3b320c22c05f,SESCO,II.1.1,Entre Rios,AR-E,annual,2021,naphtha combustion consumption by to the public,19.3282012,TJ,CH4,3.0,kg/TJ,57.9846036,kg -0d671129-ad21-3469-8a60-0da17c0f7cfd,SESCO,II.1.1,Entre Rios,AR-E,annual,2021,naphtha combustion consumption by to the public,19.3282012,TJ,N2O,0.6,kg/TJ,11.596920719999998,kg -7199c6d4-f14d-3ddd-b0b6-0ff8066659a8,SESCO,II.1.1,Formosa,AR-P,annual,2021,naphtha combustion consumption by to the public,3.7993031999999993,TJ,CO2,73300.0,kg/TJ,278488.92455999996,kg -28585504-32e7-3a23-a9a1-134ca5943dbe,SESCO,II.1.1,Formosa,AR-P,annual,2021,naphtha combustion consumption by to the public,3.7993031999999993,TJ,CH4,3.0,kg/TJ,11.397909599999998,kg -3496ac64-7f9f-3a33-8c38-b17420db8548,SESCO,II.1.1,Formosa,AR-P,annual,2021,naphtha combustion consumption by to the public,3.7993031999999993,TJ,N2O,0.6,kg/TJ,2.2795819199999996,kg -dc75e426-0b08-3f4c-a3e2-9c786267b0c3,SESCO,II.1.1,La Rioja,AR-F,annual,2021,naphtha combustion consumption by to the public,7.628759599999999,TJ,CO2,73300.0,kg/TJ,559188.0786799999,kg -0c19a345-a1db-36f9-b8e1-fee176474880,SESCO,II.1.1,La Rioja,AR-F,annual,2021,naphtha combustion consumption by to the public,7.628759599999999,TJ,CH4,3.0,kg/TJ,22.886278799999996,kg -951e8449-868d-3ae9-9492-abb9d7c89ab8,SESCO,II.1.1,La Rioja,AR-F,annual,2021,naphtha combustion consumption by to the public,7.628759599999999,TJ,N2O,0.6,kg/TJ,4.577255759999999,kg -fa9dcfb8-d5d8-3f8b-a72f-5816b8f4c539,SESCO,II.1.1,Mendoza,AR-M,annual,2021,naphtha combustion consumption by to the public,28.2837016,TJ,CO2,73300.0,kg/TJ,2073195.32728,kg -c0135830-3789-3519-a3fa-8969c50a4cca,SESCO,II.1.1,Mendoza,AR-M,annual,2021,naphtha combustion consumption by to the public,28.2837016,TJ,CH4,3.0,kg/TJ,84.8511048,kg -216f13cb-0ea9-3cfc-b7c5-41bb51ebf1ea,SESCO,II.1.1,Mendoza,AR-M,annual,2021,naphtha combustion consumption by to the public,28.2837016,TJ,N2O,0.6,kg/TJ,16.97022096,kg -ee8ea580-6856-3b94-9c2a-b0f6094be344,SESCO,II.1.1,Misiones,AR-N,annual,2021,naphtha combustion consumption by to the public,18.785443599999997,TJ,CO2,73300.0,kg/TJ,1376973.0158799998,kg -ad0385e0-91bc-3d8f-a5b9-022140d9e5fb,SESCO,II.1.1,Misiones,AR-N,annual,2021,naphtha combustion consumption by to the public,18.785443599999997,TJ,CH4,3.0,kg/TJ,56.356330799999995,kg -3aae2b62-e368-3985-8d4f-2f67168432d7,SESCO,II.1.1,Misiones,AR-N,annual,2021,naphtha combustion consumption by to the public,18.785443599999997,TJ,N2O,0.6,kg/TJ,11.271266159999998,kg -cf3ff590-2ef3-35c8-a81b-3954d475da55,SESCO,II.1.1,San Juan,AR-J,annual,2021,naphtha combustion consumption by to the public,5.487882399999999,TJ,CO2,73300.0,kg/TJ,402261.77991999994,kg -dd0c389f-e7d0-3d99-80ae-007971b98e96,SESCO,II.1.1,San Juan,AR-J,annual,2021,naphtha combustion consumption by to the public,5.487882399999999,TJ,CH4,3.0,kg/TJ,16.463647199999997,kg -64a6be1d-7219-3ee4-af77-972c9ebe585a,SESCO,II.1.1,San Juan,AR-J,annual,2021,naphtha combustion consumption by to the public,5.487882399999999,TJ,N2O,0.6,kg/TJ,3.2927294399999996,kg -fadf2789-5613-3016-90ea-d9dad32e105f,SESCO,II.1.1,San Luis,AR-D,annual,2021,naphtha combustion consumption by to the public,1.5981196,TJ,CO2,73300.0,kg/TJ,117142.16668,kg -84d79b83-fa53-3434-9da5-32f0440c57d3,SESCO,II.1.1,San Luis,AR-D,annual,2021,naphtha combustion consumption by to the public,1.5981196,TJ,CH4,3.0,kg/TJ,4.7943587999999995,kg -574cb0ad-6b10-3138-ad6c-7023d8d16fe7,SESCO,II.1.1,San Luis,AR-D,annual,2021,naphtha combustion consumption by to the public,1.5981196,TJ,N2O,0.6,kg/TJ,0.95887176,kg -d424bafa-e3d8-3583-8987-df4f75d99ba8,SESCO,II.1.1,Santa Fe,AR-S,annual,2021,naphtha combustion consumption by to the public,42.0938672,TJ,CO2,73300.0,kg/TJ,3085480.46576,kg -3db6988b-6ba9-3d67-b3a4-705181defbf1,SESCO,II.1.1,Santa Fe,AR-S,annual,2021,naphtha combustion consumption by to the public,42.0938672,TJ,CH4,3.0,kg/TJ,126.28160159999999,kg -fab31fea-2720-314a-9577-3fd08961700f,SESCO,II.1.1,Santa Fe,AR-S,annual,2021,naphtha combustion consumption by to the public,42.0938672,TJ,N2O,0.6,kg/TJ,25.256320319999997,kg -437c1001-b031-3b59-820f-8f74b0e76e33,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2021,naphtha combustion consumption by to the public,7.5081468,TJ,CO2,73300.0,kg/TJ,550347.16044,kg -03e27fe5-9418-3778-9525-15cdbf40d335,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2021,naphtha combustion consumption by to the public,7.5081468,TJ,CH4,3.0,kg/TJ,22.5244404,kg -5845bb75-8774-37bc-a321-c51c71d29594,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2021,naphtha combustion consumption by to the public,7.5081468,TJ,N2O,0.6,kg/TJ,4.50488808,kg -c5ceb6df-951c-3075-b0da-6c955bae066b,SESCO,II.1.1,Tucuman,AR-T,annual,2021,naphtha combustion consumption by to the public,3.3771584,TJ,CO2,73300.0,kg/TJ,247545.71072,kg -0bab4057-7c02-3738-a316-4431b1cd06e9,SESCO,II.1.1,Tucuman,AR-T,annual,2021,naphtha combustion consumption by to the public,3.3771584,TJ,CH4,3.0,kg/TJ,10.1314752,kg -bc9ede1f-536a-3dc8-997f-36d814cd5340,SESCO,II.1.1,Tucuman,AR-T,annual,2021,naphtha combustion consumption by to the public,3.3771584,TJ,N2O,0.6,kg/TJ,2.02629504,kg -3867a9ee-d7e0-3d46-ae98-c37039281e5e,SESCO,I.3.1,Buenos Aires,AR-B,annual,2021,naphtha combustion consumption by petrochemical industries,0.3618384,TJ,CO2,73300.0,kg/TJ,26522.75472,kg -1ecac216-f16f-310b-8cb6-5402e1727ebc,SESCO,I.3.1,Buenos Aires,AR-B,annual,2021,naphtha combustion consumption by petrochemical industries,0.3618384,TJ,CH4,3.0,kg/TJ,1.0855152000000001,kg -b457d089-9521-317c-b4ab-67e919175adc,SESCO,I.3.1,Buenos Aires,AR-B,annual,2021,naphtha combustion consumption by petrochemical industries,0.3618384,TJ,N2O,0.6,kg/TJ,0.21710304,kg -3cc45304-ec66-3425-9653-669a81baca98,SESCO,II.5.1,Santa Fe,AR-S,annual,2021,naphtha combustion consumption by agriculture machines,10.613926399999999,TJ,CO2,73300.0,kg/TJ,778000.8051199999,kg -13ebc5ce-492d-3649-b3df-b6a597cb2e6c,SESCO,II.5.1,Santa Fe,AR-S,annual,2021,naphtha combustion consumption by agriculture machines,10.613926399999999,TJ,CH4,3.0,kg/TJ,31.841779199999998,kg -adfe0a34-f316-3260-9671-d0d181634268,SESCO,II.5.1,Santa Fe,AR-S,annual,2021,naphtha combustion consumption by agriculture machines,10.613926399999999,TJ,N2O,0.6,kg/TJ,6.368355839999999,kg -27f69974-4187-3403-a22e-06ef7fb0012c,SESCO,II.5.1,Santa Fe,AR-S,annual,2021,naphtha combustion consumption by agriculture machines,3.8596095999999998,TJ,CO2,73300.0,kg/TJ,282909.38367999997,kg -d5b373e6-1ef7-34ea-8ed4-2b8bf350a7f4,SESCO,II.5.1,Santa Fe,AR-S,annual,2021,naphtha combustion consumption by agriculture machines,3.8596095999999998,TJ,CH4,3.0,kg/TJ,11.5788288,kg -dcca5bf1-673e-3707-9ecd-698f23310d8f,SESCO,II.5.1,Santa Fe,AR-S,annual,2021,naphtha combustion consumption by agriculture machines,3.8596095999999998,TJ,N2O,0.6,kg/TJ,2.3157657599999997,kg -e68c2ec1-32c4-35cb-a8ab-01aaff59b7bd,SESCO,II.1.1,Buenos Aires,AR-B,annual,2021,naphtha combustion consumption by to the public,9885.274322,TJ,CO2,73300.0,kg/TJ,724590607.8025999,kg -bf36e543-c8d3-3a4d-bef5-22065091230a,SESCO,II.1.1,Buenos Aires,AR-B,annual,2021,naphtha combustion consumption by to the public,9885.274322,TJ,CH4,3.0,kg/TJ,29655.822966,kg -4a034564-1a03-3629-9cba-f69fb9ef62b7,SESCO,II.1.1,Buenos Aires,AR-B,annual,2021,naphtha combustion consumption by to the public,9885.274322,TJ,N2O,0.6,kg/TJ,5931.164593199999,kg -94d1f6bf-ffaf-3e6e-b447-a6f2d1e4fcbe,SESCO,II.1.1,Capital Federal,AR-C,annual,2021,naphtha combustion consumption by to the public,2480.7942236,TJ,CO2,73300.0,kg/TJ,181842216.58988,kg -a69f14b9-2a7f-3d66-b31a-d2e0700eeb8a,SESCO,II.1.1,Capital Federal,AR-C,annual,2021,naphtha combustion consumption by to the public,2480.7942236,TJ,CH4,3.0,kg/TJ,7442.3826708,kg -dbbe6dba-a450-347d-8c73-ee406c39b4a4,SESCO,II.1.1,Capital Federal,AR-C,annual,2021,naphtha combustion consumption by to the public,2480.7942236,TJ,N2O,0.6,kg/TJ,1488.4765341599998,kg -c905b500-b6d1-39e7-b947-2161788517d7,SESCO,II.1.1,Catamarca,AR-K,annual,2021,naphtha combustion consumption by to the public,440.6287116,TJ,CO2,73300.0,kg/TJ,32298084.56028,kg -1ebf0789-2f03-3eaa-a64f-0fd8c27a5018,SESCO,II.1.1,Catamarca,AR-K,annual,2021,naphtha combustion consumption by to the public,440.6287116,TJ,CH4,3.0,kg/TJ,1321.8861348,kg -3670b667-8977-38ff-9ca7-35c2bd6d345a,SESCO,II.1.1,Catamarca,AR-K,annual,2021,naphtha combustion consumption by to the public,440.6287116,TJ,N2O,0.6,kg/TJ,264.37722696,kg -ae40fba7-854d-3901-a430-294d54972ede,SESCO,II.1.1,Chaco,AR-H,annual,2021,naphtha combustion consumption by to the public,613.6779264,TJ,CO2,73300.0,kg/TJ,44982592.00512,kg -3ea6fb03-11eb-314a-95c8-b8702bdb0cc4,SESCO,II.1.1,Chaco,AR-H,annual,2021,naphtha combustion consumption by to the public,613.6779264,TJ,CH4,3.0,kg/TJ,1841.0337792,kg -ae8f157b-488b-3598-ad4e-4c08e2de6eae,SESCO,II.1.1,Chaco,AR-H,annual,2021,naphtha combustion consumption by to the public,613.6779264,TJ,N2O,0.6,kg/TJ,368.20675584,kg -5aba8fc7-8573-3b5e-b2ff-360a9cede599,SESCO,II.1.1,Chubut,AR-U,annual,2021,naphtha combustion consumption by to the public,1467.7070099999999,TJ,CO2,73300.0,kg/TJ,107582923.83299999,kg -937732ba-2be2-3d11-8d3f-146eac935ce4,SESCO,II.1.1,Chubut,AR-U,annual,2021,naphtha combustion consumption by to the public,1467.7070099999999,TJ,CH4,3.0,kg/TJ,4403.121029999999,kg -55c5bd98-6178-356f-a539-1befd032a2f1,SESCO,II.1.1,Chubut,AR-U,annual,2021,naphtha combustion consumption by to the public,1467.7070099999999,TJ,N2O,0.6,kg/TJ,880.6242059999998,kg -4a5dabac-c77a-331f-834d-e02f5bc46a4f,SESCO,II.1.1,Corrientes,AR-W,annual,2021,naphtha combustion consumption by to the public,711.0124559999999,TJ,CO2,73300.0,kg/TJ,52117213.024799995,kg -76630aa6-6362-357a-9e5b-a1be86fef96a,SESCO,II.1.1,Corrientes,AR-W,annual,2021,naphtha combustion consumption by to the public,711.0124559999999,TJ,CH4,3.0,kg/TJ,2133.037368,kg -869c55e2-1037-30af-820e-d9cc37456f3f,SESCO,II.1.1,Corrientes,AR-W,annual,2021,naphtha combustion consumption by to the public,711.0124559999999,TJ,N2O,0.6,kg/TJ,426.60747359999993,kg -9cdbfbf1-9d33-3891-b4f8-49e4dd154182,SESCO,II.1.1,Córdoba,AR-X,annual,2021,naphtha combustion consumption by to the public,2422.6287008,TJ,CO2,73300.0,kg/TJ,177578683.76863998,kg -638fa7b7-0742-3df4-8a38-c67f950f3f52,SESCO,II.1.1,Córdoba,AR-X,annual,2021,naphtha combustion consumption by to the public,2422.6287008,TJ,CH4,3.0,kg/TJ,7267.8861024,kg -2a30d9e0-07cf-3ecf-a5b1-ab15c4c1491e,SESCO,II.1.1,Córdoba,AR-X,annual,2021,naphtha combustion consumption by to the public,2422.6287008,TJ,N2O,0.6,kg/TJ,1453.5772204799998,kg -c34f40ab-d549-3c51-be95-bfd5c7ae623b,SESCO,II.1.1,Entre Rios,AR-E,annual,2021,naphtha combustion consumption by to the public,948.4387528,TJ,CO2,73300.0,kg/TJ,69520560.58024,kg -eb61faea-3859-38d1-b3b8-889352bdc155,SESCO,II.1.1,Entre Rios,AR-E,annual,2021,naphtha combustion consumption by to the public,948.4387528,TJ,CH4,3.0,kg/TJ,2845.3162584,kg -86d66f28-146c-3256-b068-31dd60e86586,SESCO,II.1.1,Entre Rios,AR-E,annual,2021,naphtha combustion consumption by to the public,948.4387528,TJ,N2O,0.6,kg/TJ,569.06325168,kg -3c0806f3-051a-3cc8-a17c-5806de53502e,SESCO,II.1.1,Formosa,AR-P,annual,2021,naphtha combustion consumption by to the public,612.6828707999999,TJ,CO2,73300.0,kg/TJ,44909654.429639995,kg -7598a2f6-e230-38e3-9e8f-6bed53a571e6,SESCO,II.1.1,Formosa,AR-P,annual,2021,naphtha combustion consumption by to the public,612.6828707999999,TJ,CH4,3.0,kg/TJ,1838.0486124,kg -b4f33324-cb6e-3a29-9b95-0a50605a8914,SESCO,II.1.1,Formosa,AR-P,annual,2021,naphtha combustion consumption by to the public,612.6828707999999,TJ,N2O,0.6,kg/TJ,367.60972247999996,kg -8d652788-6ef5-3688-b520-1fa01f176a00,SESCO,II.1.1,Jujuy,AR-Y,annual,2021,naphtha combustion consumption by to the public,223.76689719999996,TJ,CO2,73300.0,kg/TJ,16402113.564759998,kg -9ddb7abd-cba3-345b-9643-ca4e5cd1f3d1,SESCO,II.1.1,Jujuy,AR-Y,annual,2021,naphtha combustion consumption by to the public,223.76689719999996,TJ,CH4,3.0,kg/TJ,671.3006915999999,kg -40a2763d-f2bb-3572-a5e9-e2b68531bf9d,SESCO,II.1.1,Jujuy,AR-Y,annual,2021,naphtha combustion consumption by to the public,223.76689719999996,TJ,N2O,0.6,kg/TJ,134.26013831999998,kg -b906ee09-ed89-31c9-9d50-9563d4169f6d,SESCO,II.1.1,La Pampa,AR-L,annual,2021,naphtha combustion consumption by to the public,196.598864,TJ,CO2,73300.0,kg/TJ,14410696.7312,kg -bdac622e-dee3-3a12-b16c-e055c5f8d522,SESCO,II.1.1,La Pampa,AR-L,annual,2021,naphtha combustion consumption by to the public,196.598864,TJ,CH4,3.0,kg/TJ,589.7965919999999,kg -2b07f2dd-19f4-3279-b15e-a06ce570276e,SESCO,II.1.1,La Pampa,AR-L,annual,2021,naphtha combustion consumption by to the public,196.598864,TJ,N2O,0.6,kg/TJ,117.95931839999999,kg -b281e191-7fbb-3153-b72d-d397149dc777,SESCO,II.1.1,La Rioja,AR-F,annual,2021,naphtha combustion consumption by to the public,108.34044759999999,TJ,CO2,73300.0,kg/TJ,7941354.809079999,kg -1f3a2987-7c1b-3e8d-89df-4f9c2c32b6af,SESCO,II.1.1,La Rioja,AR-F,annual,2021,naphtha combustion consumption by to the public,108.34044759999999,TJ,CH4,3.0,kg/TJ,325.02134279999996,kg -4af49763-5192-3963-94c3-898c2e385aca,SESCO,II.1.1,La Rioja,AR-F,annual,2021,naphtha combustion consumption by to the public,108.34044759999999,TJ,N2O,0.6,kg/TJ,65.00426855999999,kg -a967c993-efb3-3f77-99ea-1b92ff6c6918,SESCO,II.1.1,Mendoza,AR-M,annual,2021,naphtha combustion consumption by to the public,507.65927519999997,TJ,CO2,73300.0,kg/TJ,37211424.872159995,kg -26180a11-c409-30a7-a494-ee8a495601fa,SESCO,II.1.1,Mendoza,AR-M,annual,2021,naphtha combustion consumption by to the public,507.65927519999997,TJ,CH4,3.0,kg/TJ,1522.9778256,kg -94d3f53d-227f-3dfa-b56e-4d1ca0961c4b,SESCO,II.1.1,Mendoza,AR-M,annual,2021,naphtha combustion consumption by to the public,507.65927519999997,TJ,N2O,0.6,kg/TJ,304.59556511999995,kg -9c9e0b3a-1d4f-3dfa-8bb0-c18ef4fe4996,SESCO,II.1.1,Misiones,AR-N,annual,2021,naphtha combustion consumption by to the public,1124.2017555999998,TJ,CO2,73300.0,kg/TJ,82403988.68547998,kg -67c84497-9024-3b62-b5bb-79411123d245,SESCO,II.1.1,Misiones,AR-N,annual,2021,naphtha combustion consumption by to the public,1124.2017555999998,TJ,CH4,3.0,kg/TJ,3372.6052667999993,kg -50d4d9f1-c659-3ec5-bc98-061ece0f7ba2,SESCO,II.1.1,Misiones,AR-N,annual,2021,naphtha combustion consumption by to the public,1124.2017555999998,TJ,N2O,0.6,kg/TJ,674.5210533599999,kg -0e36ac40-e86a-3daf-a93b-e2d8f5b35810,SESCO,II.1.1,Neuquén,AR-Q,annual,2021,naphtha combustion consumption by to the public,523.3690924,TJ,CO2,73300.0,kg/TJ,38362954.47292,kg -3d179b1f-6b43-3359-a496-adb4617b673b,SESCO,II.1.1,Neuquén,AR-Q,annual,2021,naphtha combustion consumption by to the public,523.3690924,TJ,CH4,3.0,kg/TJ,1570.1072772,kg -28f94683-39ec-3a45-b8f5-54aef41754d3,SESCO,II.1.1,Neuquén,AR-Q,annual,2021,naphtha combustion consumption by to the public,523.3690924,TJ,N2O,0.6,kg/TJ,314.02145544,kg -a8ba94b6-4c72-36e3-b745-647e6ce3a147,SESCO,II.1.1,Rio Negro,AR-R,annual,2021,naphtha combustion consumption by to the public,756.6342476,TJ,CO2,73300.0,kg/TJ,55461290.34908,kg -ac88068c-4c1f-301f-8c8b-1a67de69ca3f,SESCO,II.1.1,Rio Negro,AR-R,annual,2021,naphtha combustion consumption by to the public,756.6342476,TJ,CH4,3.0,kg/TJ,2269.9027428,kg -2b5e8c13-aa0b-3530-bc45-886b5a104850,SESCO,II.1.1,Rio Negro,AR-R,annual,2021,naphtha combustion consumption by to the public,756.6342476,TJ,N2O,0.6,kg/TJ,453.98054856,kg -1bb981eb-026b-37e9-aa29-4bedc0bc186b,SESCO,II.1.1,Salta,AR-A,annual,2021,naphtha combustion consumption by to the public,204.6497684,TJ,CO2,73300.0,kg/TJ,15000828.02372,kg -a6c4e1b0-ef39-3435-92c0-24b3f005073c,SESCO,II.1.1,Salta,AR-A,annual,2021,naphtha combustion consumption by to the public,204.6497684,TJ,CH4,3.0,kg/TJ,613.9493052,kg -13749d4e-d89d-39bc-b99c-2c4ea1b2ae36,SESCO,II.1.1,Salta,AR-A,annual,2021,naphtha combustion consumption by to the public,204.6497684,TJ,N2O,0.6,kg/TJ,122.78986103999999,kg -76f41f8a-4fba-3a54-ab87-33e2a2a72427,SESCO,II.1.1,San Juan,AR-J,annual,2021,naphtha combustion consumption by to the public,193.67400359999996,TJ,CO2,73300.0,kg/TJ,14196304.463879997,kg -d49feb0b-c76f-3a02-8222-2f59e38bcd7f,SESCO,II.1.1,San Juan,AR-J,annual,2021,naphtha combustion consumption by to the public,193.67400359999996,TJ,CH4,3.0,kg/TJ,581.0220107999999,kg -b9128dc5-7b1c-385e-aec3-7dd8a9b976d2,SESCO,II.1.1,San Juan,AR-J,annual,2021,naphtha combustion consumption by to the public,193.67400359999996,TJ,N2O,0.6,kg/TJ,116.20440215999997,kg -bf7b5aac-9663-3f31-8281-6b716d26ee11,SESCO,II.1.1,San Luis,AR-D,annual,2021,naphtha combustion consumption by to the public,607.8583587999999,TJ,CO2,73300.0,kg/TJ,44556017.70003999,kg -d84d3a99-a0b5-3b70-ba35-7781c87e85c6,SESCO,II.1.1,San Luis,AR-D,annual,2021,naphtha combustion consumption by to the public,607.8583587999999,TJ,CH4,3.0,kg/TJ,1823.5750763999997,kg -3b58dd6d-cc2a-35e1-b869-cb68affed1ec,SESCO,II.1.1,San Luis,AR-D,annual,2021,naphtha combustion consumption by to the public,607.8583587999999,TJ,N2O,0.6,kg/TJ,364.71501527999993,kg -250e82fb-b8f4-31fd-b16b-2fcbec042989,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2021,naphtha combustion consumption by to the public,915.2702327999999,TJ,CO2,73300.0,kg/TJ,67089308.06423999,kg -ea6fab07-8e82-32b0-ac33-fe1f4bb816cd,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2021,naphtha combustion consumption by to the public,915.2702327999999,TJ,CH4,3.0,kg/TJ,2745.8106983999996,kg -552f805e-2fbd-3f60-aeaa-16c6be6c0e34,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2021,naphtha combustion consumption by to the public,915.2702327999999,TJ,N2O,0.6,kg/TJ,549.1621396799999,kg -6b2acc42-3a37-3f11-9b8a-f6a5ee32f853,SESCO,II.1.1,Santa Fe,AR-S,annual,2021,naphtha combustion consumption by to the public,2487.2771616,TJ,CO2,73300.0,kg/TJ,182317415.94528,kg -742e36f8-adbc-3862-b390-c5e2be5ecb97,SESCO,II.1.1,Santa Fe,AR-S,annual,2021,naphtha combustion consumption by to the public,2487.2771616,TJ,CH4,3.0,kg/TJ,7461.8314848,kg -84da20a8-71f7-31f9-824f-03a1c8a3cc09,SESCO,II.1.1,Santa Fe,AR-S,annual,2021,naphtha combustion consumption by to the public,2487.2771616,TJ,N2O,0.6,kg/TJ,1492.36629696,kg -8421856e-f70b-37cd-b718-d26c9e089113,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2021,naphtha combustion consumption by to the public,400.0425043999999,TJ,CO2,73300.0,kg/TJ,29323115.572519995,kg -e4e74158-55a0-3294-b6a4-dd3bdc21e212,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2021,naphtha combustion consumption by to the public,400.0425043999999,TJ,CH4,3.0,kg/TJ,1200.1275131999998,kg -140ff313-1fa1-3087-8241-0ae7d6082b68,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2021,naphtha combustion consumption by to the public,400.0425043999999,TJ,N2O,0.6,kg/TJ,240.02550263999996,kg -b849b2c0-6fb2-3b2f-bb31-a27248bf6859,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2021,naphtha combustion consumption by to the public,144.5544408,TJ,CO2,73300.0,kg/TJ,10595840.51064,kg -a46b9e4e-8cf7-3107-9db2-e4268f5dd615,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2021,naphtha combustion consumption by to the public,144.5544408,TJ,CH4,3.0,kg/TJ,433.6633224,kg -08ff2d77-5b61-36e2-9cab-994ae2e6c13e,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2021,naphtha combustion consumption by to the public,144.5544408,TJ,N2O,0.6,kg/TJ,86.73266448,kg -bec6653c-8920-3666-901f-d63050527c97,SESCO,II.1.1,Tucuman,AR-T,annual,2021,naphtha combustion consumption by to the public,173.4110532,TJ,CO2,73300.0,kg/TJ,12711030.19956,kg -5d3fc5d5-997a-3c0d-afeb-177078f31403,SESCO,II.1.1,Tucuman,AR-T,annual,2021,naphtha combustion consumption by to the public,173.4110532,TJ,CH4,3.0,kg/TJ,520.2331596,kg -b6660553-d4b0-3a8e-9a40-ec4195b5fe41,SESCO,II.1.1,Tucuman,AR-T,annual,2021,naphtha combustion consumption by to the public,173.4110532,TJ,N2O,0.6,kg/TJ,104.04663192,kg -0eb07224-9d92-31d4-8db7-9374dc1c2d5b,SESCO,II.1.1,Buenos Aires,AR-B,annual,2021,naphtha combustion consumption by to the public,2843.7181388,TJ,CO2,73300.0,kg/TJ,208444539.57404,kg -58bb17cc-9066-311c-b83c-90e9e75fd848,SESCO,II.1.1,Buenos Aires,AR-B,annual,2021,naphtha combustion consumption by to the public,2843.7181388,TJ,CH4,3.0,kg/TJ,8531.1544164,kg -17d6e6a6-2873-3fd4-b0a5-a14a8384006e,SESCO,II.1.1,Buenos Aires,AR-B,annual,2021,naphtha combustion consumption by to the public,2843.7181388,TJ,N2O,0.6,kg/TJ,1706.23088328,kg -651de8c0-0fb0-3020-a0de-f14841dbec1c,SESCO,II.1.1,Capital Federal,AR-C,annual,2021,naphtha combustion consumption by to the public,1120.9753632,TJ,CO2,73300.0,kg/TJ,82167494.12256,kg -4d44b967-11b0-3905-a7eb-5d4989a5642e,SESCO,II.1.1,Capital Federal,AR-C,annual,2021,naphtha combustion consumption by to the public,1120.9753632,TJ,CH4,3.0,kg/TJ,3362.9260895999996,kg -20d75929-5ca9-3859-9c94-eead9acda13f,SESCO,II.1.1,Capital Federal,AR-C,annual,2021,naphtha combustion consumption by to the public,1120.9753632,TJ,N2O,0.6,kg/TJ,672.58521792,kg -fe96c016-fef1-30ff-9846-57d2dc2b22d7,SESCO,II.1.1,Catamarca,AR-K,annual,2021,naphtha combustion consumption by to the public,129.08584919999998,TJ,CO2,73300.0,kg/TJ,9461992.746359998,kg -7b307f8b-bc90-326d-be8c-c5ac538d22c7,SESCO,II.1.1,Catamarca,AR-K,annual,2021,naphtha combustion consumption by to the public,129.08584919999998,TJ,CH4,3.0,kg/TJ,387.25754759999995,kg -dc6d4a69-2c53-3175-ae4a-8e7474abfdf2,SESCO,II.1.1,Catamarca,AR-K,annual,2021,naphtha combustion consumption by to the public,129.08584919999998,TJ,N2O,0.6,kg/TJ,77.45150951999999,kg -158219e0-82ed-3027-965a-281840f9d3e8,SESCO,II.1.1,Chaco,AR-H,annual,2021,naphtha combustion consumption by to the public,86.3587648,TJ,CO2,73300.0,kg/TJ,6330097.459840001,kg -f9f4f99c-0aaa-36be-aa7d-62246d1ef6c2,SESCO,II.1.1,Chaco,AR-H,annual,2021,naphtha combustion consumption by to the public,86.3587648,TJ,CH4,3.0,kg/TJ,259.0762944,kg -3004621a-e37a-3f9c-aa06-1021cc22ca2c,SESCO,II.1.1,Chaco,AR-H,annual,2021,naphtha combustion consumption by to the public,86.3587648,TJ,N2O,0.6,kg/TJ,51.81525888,kg -c9253fad-1563-3625-a0ff-82e1f35379c5,SESCO,II.1.1,Chubut,AR-U,annual,2021,naphtha combustion consumption by to the public,260.49349479999995,TJ,CO2,73300.0,kg/TJ,19094173.168839995,kg -ca12448f-0b9f-3d16-99c1-2161be0c3fe2,SESCO,II.1.1,Chubut,AR-U,annual,2021,naphtha combustion consumption by to the public,260.49349479999995,TJ,CH4,3.0,kg/TJ,781.4804843999998,kg -42292555-2bc7-3759-9714-99987bcab871,SESCO,II.1.1,Chubut,AR-U,annual,2021,naphtha combustion consumption by to the public,260.49349479999995,TJ,N2O,0.6,kg/TJ,156.29609687999996,kg -552cc7ea-c772-3210-adb3-613fd21ea5f0,SESCO,II.1.1,Corrientes,AR-W,annual,2021,naphtha combustion consumption by to the public,114.91384519999998,TJ,CO2,73300.0,kg/TJ,8423184.85316,kg -7d02af52-e5e4-3de9-8088-8d71870d98ca,SESCO,II.1.1,Corrientes,AR-W,annual,2021,naphtha combustion consumption by to the public,114.91384519999998,TJ,CH4,3.0,kg/TJ,344.74153559999996,kg -4d10ad2a-6b00-3b6b-9059-6b048fac3a17,SESCO,II.1.1,Corrientes,AR-W,annual,2021,naphtha combustion consumption by to the public,114.91384519999998,TJ,N2O,0.6,kg/TJ,68.94830711999998,kg -397dfef5-8392-37d4-84bb-1684c8f602a0,SESCO,II.1.1,Córdoba,AR-X,annual,2021,naphtha combustion consumption by to the public,635.6897624,TJ,CO2,73300.0,kg/TJ,46596059.583919995,kg -cff9f9e9-566d-3c7f-bfe5-13b1b18bd8ae,SESCO,II.1.1,Córdoba,AR-X,annual,2021,naphtha combustion consumption by to the public,635.6897624,TJ,CH4,3.0,kg/TJ,1907.0692872,kg -7607db08-2c38-3dcd-af0b-4a7a9dad73bc,SESCO,II.1.1,Córdoba,AR-X,annual,2021,naphtha combustion consumption by to the public,635.6897624,TJ,N2O,0.6,kg/TJ,381.41385743999996,kg -1a2648b3-3172-30de-bff7-89aed99d06b0,SESCO,II.1.1,Entre Rios,AR-E,annual,2021,naphtha combustion consumption by to the public,251.3570752,TJ,CO2,73300.0,kg/TJ,18424473.61216,kg -d6ccb9c6-c2a2-3c85-b27a-be115d2f42d4,SESCO,II.1.1,Entre Rios,AR-E,annual,2021,naphtha combustion consumption by to the public,251.3570752,TJ,CH4,3.0,kg/TJ,754.0712255999999,kg -bddac9f1-1ec7-326a-8985-0d222d9177a6,SESCO,II.1.1,Entre Rios,AR-E,annual,2021,naphtha combustion consumption by to the public,251.3570752,TJ,N2O,0.6,kg/TJ,150.81424511999998,kg -dbd8b7a0-b89c-373c-9815-622df5615bd0,SESCO,II.1.1,Formosa,AR-P,annual,2021,naphtha combustion consumption by to the public,160.44517719999996,TJ,CO2,73300.0,kg/TJ,11760631.488759996,kg -cb31bd16-68d7-3b02-ab69-cde4390570f6,SESCO,II.1.1,Formosa,AR-P,annual,2021,naphtha combustion consumption by to the public,160.44517719999996,TJ,CH4,3.0,kg/TJ,481.33553159999985,kg -5a02c569-6596-38f7-9192-dd67d740b96f,SESCO,II.1.1,Formosa,AR-P,annual,2021,naphtha combustion consumption by to the public,160.44517719999996,TJ,N2O,0.6,kg/TJ,96.26710631999997,kg -8f84ca7d-ba59-3a1e-a7fa-2cb4583c902e,SESCO,II.1.1,Jujuy,AR-Y,annual,2021,naphtha combustion consumption by to the public,54.3059132,TJ,CO2,73300.0,kg/TJ,3980623.43756,kg -529b0d66-aff8-314e-a4c5-060676ba800e,SESCO,II.1.1,Jujuy,AR-Y,annual,2021,naphtha combustion consumption by to the public,54.3059132,TJ,CH4,3.0,kg/TJ,162.9177396,kg -4305ed45-a448-3d7c-9bd6-148e9fa3cdde,SESCO,II.1.1,Jujuy,AR-Y,annual,2021,naphtha combustion consumption by to the public,54.3059132,TJ,N2O,0.6,kg/TJ,32.58354792,kg -780d589c-7a42-3412-95b7-5501912b06bf,SESCO,II.1.1,La Pampa,AR-L,annual,2021,naphtha combustion consumption by to the public,68.0256192,TJ,CO2,73300.0,kg/TJ,4986277.887359999,kg -7e398758-3b83-397a-a4b6-f4d5eb6e7846,SESCO,II.1.1,La Pampa,AR-L,annual,2021,naphtha combustion consumption by to the public,68.0256192,TJ,CH4,3.0,kg/TJ,204.07685759999998,kg -0081af81-a459-306c-bda5-a1e9cecf23da,SESCO,II.1.1,La Pampa,AR-L,annual,2021,naphtha combustion consumption by to the public,68.0256192,TJ,N2O,0.6,kg/TJ,40.81537151999999,kg -d91e7cd0-bd99-3ad6-9e5b-b9413ba66cf8,SESCO,II.1.1,La Rioja,AR-F,annual,2021,naphtha combustion consumption by to the public,36.8472104,TJ,CO2,73300.0,kg/TJ,2700900.52232,kg -98a6fb49-54d8-3a02-be0b-65df2a217961,SESCO,II.1.1,La Rioja,AR-F,annual,2021,naphtha combustion consumption by to the public,36.8472104,TJ,CH4,3.0,kg/TJ,110.54163120000001,kg -7b0e083b-dd4d-3661-a46d-7c5a1d94e46f,SESCO,II.1.1,La Rioja,AR-F,annual,2021,naphtha combustion consumption by to the public,36.8472104,TJ,N2O,0.6,kg/TJ,22.10832624,kg -b9a5a572-b053-3fe1-bf63-ebdedf621516,SESCO,II.1.1,Mendoza,AR-M,annual,2021,naphtha combustion consumption by to the public,207.06202439999998,TJ,CO2,73300.0,kg/TJ,15177646.388519999,kg -171ab8e9-3f9c-3421-a773-480c7af623dd,SESCO,II.1.1,Mendoza,AR-M,annual,2021,naphtha combustion consumption by to the public,207.06202439999998,TJ,CH4,3.0,kg/TJ,621.1860732,kg -2cdd58db-12ed-361e-a14e-733711d900ee,SESCO,II.1.1,Mendoza,AR-M,annual,2021,naphtha combustion consumption by to the public,207.06202439999998,TJ,N2O,0.6,kg/TJ,124.23721463999999,kg -c4405476-531b-334f-940c-bb2432224b15,SESCO,II.1.1,Misiones,AR-N,annual,2021,naphtha combustion consumption by to the public,168.61669439999997,TJ,CO2,73300.0,kg/TJ,12359603.699519997,kg -4280dd6d-2a7b-33ce-9dbe-7e38a6e131ee,SESCO,II.1.1,Misiones,AR-N,annual,2021,naphtha combustion consumption by to the public,168.61669439999997,TJ,CH4,3.0,kg/TJ,505.8500831999999,kg -f395b389-2c8f-32e2-bb9c-4c1cd35f4ff5,SESCO,II.1.1,Misiones,AR-N,annual,2021,naphtha combustion consumption by to the public,168.61669439999997,TJ,N2O,0.6,kg/TJ,101.17001663999999,kg -1e8f3f78-2c39-3e87-a55b-1f8c770c938f,SESCO,II.1.1,Neuquén,AR-Q,annual,2021,naphtha combustion consumption by to the public,221.71647959999999,TJ,CO2,73300.0,kg/TJ,16251817.95468,kg -861df249-629e-3223-b4a9-4da1f260c597,SESCO,II.1.1,Neuquén,AR-Q,annual,2021,naphtha combustion consumption by to the public,221.71647959999999,TJ,CH4,3.0,kg/TJ,665.1494388,kg -f45ed8c2-0f41-3bce-aa9f-eaa9ffdeca69,SESCO,II.1.1,Neuquén,AR-Q,annual,2021,naphtha combustion consumption by to the public,221.71647959999999,TJ,N2O,0.6,kg/TJ,133.02988775999998,kg -4a92fbff-3aad-3177-a68d-893bb21a2289,SESCO,II.1.1,Rio Negro,AR-R,annual,2021,naphtha combustion consumption by to the public,275.47963519999996,TJ,CO2,73300.0,kg/TJ,20192657.260159995,kg -9c8bb955-aa0b-31bb-809e-09930f42e770,SESCO,II.1.1,Rio Negro,AR-R,annual,2021,naphtha combustion consumption by to the public,275.47963519999996,TJ,CH4,3.0,kg/TJ,826.4389055999999,kg -b7fb22d6-a3b6-3d20-9d92-321815308832,SESCO,II.1.1,Rio Negro,AR-R,annual,2021,naphtha combustion consumption by to the public,275.47963519999996,TJ,N2O,0.6,kg/TJ,165.28778111999998,kg -60b5a89d-491e-3d11-9c4a-cd86ec1dc521,SESCO,II.1.1,Salta,AR-A,annual,2021,naphtha combustion consumption by to the public,34.4048012,TJ,CO2,73300.0,kg/TJ,2521871.92796,kg -9f8e4c1a-2431-342a-a074-f174900ee431,SESCO,II.1.1,Salta,AR-A,annual,2021,naphtha combustion consumption by to the public,34.4048012,TJ,CH4,3.0,kg/TJ,103.2144036,kg -962400ac-f347-383e-b698-70e32f99b609,SESCO,II.1.1,Salta,AR-A,annual,2021,naphtha combustion consumption by to the public,34.4048012,TJ,N2O,0.6,kg/TJ,20.64288072,kg -45b3391b-9e8a-3455-b748-12bba3378f71,SESCO,II.1.1,San Juan,AR-J,annual,2021,naphtha combustion consumption by to the public,40.67666679999999,TJ,CO2,73300.0,kg/TJ,2981599.6764399996,kg -195847b4-b175-36cb-aa70-d3e69abf1bc4,SESCO,II.1.1,San Juan,AR-J,annual,2021,naphtha combustion consumption by to the public,40.67666679999999,TJ,CH4,3.0,kg/TJ,122.03000039999998,kg -e64d494e-830b-352d-971f-c3344554ce39,SESCO,II.1.1,San Juan,AR-J,annual,2021,naphtha combustion consumption by to the public,40.67666679999999,TJ,N2O,0.6,kg/TJ,24.406000079999995,kg -c3270b62-0d44-3ad0-86fd-923f05174a9a,SESCO,II.1.1,San Luis,AR-D,annual,2021,naphtha combustion consumption by to the public,135.086336,TJ,CO2,73300.0,kg/TJ,9901828.4288,kg -026fef7a-ed47-3637-81fc-257fa9e8a6f7,SESCO,II.1.1,San Luis,AR-D,annual,2021,naphtha combustion consumption by to the public,135.086336,TJ,CH4,3.0,kg/TJ,405.259008,kg -5a7e4569-5342-37e0-9e87-bf2073c61934,SESCO,II.1.1,San Luis,AR-D,annual,2021,naphtha combustion consumption by to the public,135.086336,TJ,N2O,0.6,kg/TJ,81.05180159999999,kg -584f282c-e457-3f9a-a728-c74b3a829b3a,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2021,naphtha combustion consumption by to the public,107.43585159999999,TJ,CO2,73300.0,kg/TJ,7875047.92228,kg -b49129ea-4e45-31da-8894-2864b8cfa6aa,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2021,naphtha combustion consumption by to the public,107.43585159999999,TJ,CH4,3.0,kg/TJ,322.3075548,kg -08288e26-c530-3256-a7e6-e91fde7a0d2e,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2021,naphtha combustion consumption by to the public,107.43585159999999,TJ,N2O,0.6,kg/TJ,64.46151096,kg -0cd52e08-bba6-3fdf-a1c0-12951691c832,SESCO,II.1.1,Santa Fe,AR-S,annual,2021,naphtha combustion consumption by to the public,764.835918,TJ,CO2,73300.0,kg/TJ,56062472.7894,kg -54ce9979-7ca1-3e6c-bb5b-2413d91b68fb,SESCO,II.1.1,Santa Fe,AR-S,annual,2021,naphtha combustion consumption by to the public,764.835918,TJ,CH4,3.0,kg/TJ,2294.507754,kg -2f2a09b6-75a4-3768-9961-d9fee9b2ea48,SESCO,II.1.1,Santa Fe,AR-S,annual,2021,naphtha combustion consumption by to the public,764.835918,TJ,N2O,0.6,kg/TJ,458.9015508,kg -6cbad78c-aa8c-3404-ae0b-a784d4d642a0,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2021,naphtha combustion consumption by to the public,122.39183879999999,TJ,CO2,73300.0,kg/TJ,8971321.784039998,kg -90fa4801-86ee-3834-b0d3-0676bcc959c1,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2021,naphtha combustion consumption by to the public,122.39183879999999,TJ,CH4,3.0,kg/TJ,367.1755164,kg -7914f067-0266-305f-81d7-82c485fa2ba0,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2021,naphtha combustion consumption by to the public,122.39183879999999,TJ,N2O,0.6,kg/TJ,73.43510327999999,kg -b065bc70-e52e-354d-a31d-8eea78e78171,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2021,naphtha combustion consumption by to the public,36.78690399999999,TJ,CO2,73300.0,kg/TJ,2696480.0631999993,kg -a546bbb4-013a-3da6-8339-3e82ed904569,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2021,naphtha combustion consumption by to the public,36.78690399999999,TJ,CH4,3.0,kg/TJ,110.36071199999998,kg -7c6b8fa7-bea4-370b-af94-c57134dbdb5e,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2021,naphtha combustion consumption by to the public,36.78690399999999,TJ,N2O,0.6,kg/TJ,22.072142399999994,kg -3313b09f-c2aa-327c-af85-fd3f32432bdf,SESCO,II.1.1,Tucuman,AR-T,annual,2021,naphtha combustion consumption by to the public,35.7013888,TJ,CO2,73300.0,kg/TJ,2616911.79904,kg -7ef320a4-ff0d-3a6a-a79e-fb87f21dae1c,SESCO,II.1.1,Tucuman,AR-T,annual,2021,naphtha combustion consumption by to the public,35.7013888,TJ,CH4,3.0,kg/TJ,107.1041664,kg -fa65683b-d915-34d9-a00d-7242e03dfa48,SESCO,II.1.1,Tucuman,AR-T,annual,2021,naphtha combustion consumption by to the public,35.7013888,TJ,N2O,0.6,kg/TJ,21.420833279999997,kg -b53f0e79-444b-3d0b-a26a-65b9775b0fb2,SESCO,II.1.1,Buenos Aires,AR-B,annual,2021,naphtha combustion consumption by freight transport,11.1265308,TJ,CO2,73300.0,kg/TJ,815574.7076399999,kg -47f1ef6c-daf3-369a-8401-c8fcbf1477a0,SESCO,II.1.1,Buenos Aires,AR-B,annual,2021,naphtha combustion consumption by freight transport,11.1265308,TJ,CH4,3.0,kg/TJ,33.3795924,kg -d2e8a4df-e9d1-32fe-8231-e85b0e2b07fa,SESCO,II.1.1,Buenos Aires,AR-B,annual,2021,naphtha combustion consumption by freight transport,11.1265308,TJ,N2O,0.6,kg/TJ,6.675918479999999,kg -d197bc31-f789-36df-a8bf-16f82876c546,SESCO,II.1.1,Capital Federal,AR-C,annual,2021,naphtha combustion consumption by freight transport,3.76915,TJ,CO2,73300.0,kg/TJ,276278.695,kg -f1e518da-cfbf-303b-836e-e3fe8ef57343,SESCO,II.1.1,Capital Federal,AR-C,annual,2021,naphtha combustion consumption by freight transport,3.76915,TJ,CH4,3.0,kg/TJ,11.30745,kg -78dff9fe-fd9a-3d1d-9380-c3f28576e4fd,SESCO,II.1.1,Capital Federal,AR-C,annual,2021,naphtha combustion consumption by freight transport,3.76915,TJ,N2O,0.6,kg/TJ,2.26149,kg -42f9d2a0-b176-318f-92ec-838f54121029,SESCO,II.1.1,Córdoba,AR-X,annual,2021,naphtha combustion consumption by freight transport,1.055362,TJ,CO2,73300.0,kg/TJ,77358.0346,kg -90607073-e1bc-3a87-b8c7-33ba4f0eb093,SESCO,II.1.1,Córdoba,AR-X,annual,2021,naphtha combustion consumption by freight transport,1.055362,TJ,CH4,3.0,kg/TJ,3.166086,kg -e3afe063-417c-3f8d-8a38-210c25a96704,SESCO,II.1.1,Córdoba,AR-X,annual,2021,naphtha combustion consumption by freight transport,1.055362,TJ,N2O,0.6,kg/TJ,0.6332171999999999,kg -e7fde867-20ca-3e6a-8017-ef0915772b30,SESCO,II.1.1,Entre Rios,AR-E,annual,2021,naphtha combustion consumption by freight transport,0.48245119999999997,TJ,CO2,73300.0,kg/TJ,35363.672959999996,kg -66686fe8-045e-364c-8350-61d5de266e12,SESCO,II.1.1,Entre Rios,AR-E,annual,2021,naphtha combustion consumption by freight transport,0.48245119999999997,TJ,CH4,3.0,kg/TJ,1.4473536,kg -0a776743-ee49-3958-b7f8-606e7702cc91,SESCO,II.1.1,Entre Rios,AR-E,annual,2021,naphtha combustion consumption by freight transport,0.48245119999999997,TJ,N2O,0.6,kg/TJ,0.28947071999999996,kg -53f1a1f8-04b4-3462-8511-401762acb47b,SESCO,II.1.1,Mendoza,AR-M,annual,2021,naphtha combustion consumption by freight transport,0.0904596,TJ,CO2,73300.0,kg/TJ,6630.68868,kg -31d32054-d13b-3adf-a1bf-6b53b2172f7b,SESCO,II.1.1,Mendoza,AR-M,annual,2021,naphtha combustion consumption by freight transport,0.0904596,TJ,CH4,3.0,kg/TJ,0.27137880000000003,kg -629a6df6-438f-3204-8232-5c79cb082230,SESCO,II.1.1,Mendoza,AR-M,annual,2021,naphtha combustion consumption by freight transport,0.0904596,TJ,N2O,0.6,kg/TJ,0.05427576,kg -1b03d75c-c8e0-3757-83e3-80046688a246,SESCO,II.1.1,Santa Fe,AR-S,annual,2021,naphtha combustion consumption by freight transport,1.7187323999999997,TJ,CO2,73300.0,kg/TJ,125983.08491999998,kg -4aefbdc5-32f3-3674-9611-468e0eb06f22,SESCO,II.1.1,Santa Fe,AR-S,annual,2021,naphtha combustion consumption by freight transport,1.7187323999999997,TJ,CH4,3.0,kg/TJ,5.156197199999999,kg -8d9c24c8-00a4-3dcd-9aa6-521c8288a9f4,SESCO,II.1.1,Santa Fe,AR-S,annual,2021,naphtha combustion consumption by freight transport,1.7187323999999997,TJ,N2O,0.6,kg/TJ,1.0312394399999998,kg -40fa5b00-b42b-32cf-bef6-3142f883a22f,SESCO,II.1.1,Buenos Aires,AR-B,annual,2021,naphtha combustion consumption by freight transport,7.4779936,TJ,CO2,73300.0,kg/TJ,548136.93088,kg -27256f3e-23e7-33aa-bf2a-20da8b1f3e97,SESCO,II.1.1,Buenos Aires,AR-B,annual,2021,naphtha combustion consumption by freight transport,7.4779936,TJ,CH4,3.0,kg/TJ,22.4339808,kg -a8586551-cdaa-32d9-bacc-49f549f111e4,SESCO,II.1.1,Buenos Aires,AR-B,annual,2021,naphtha combustion consumption by freight transport,7.4779936,TJ,N2O,0.6,kg/TJ,4.48679616,kg -8eaf8dcc-c3b3-31e8-81e3-84d6fc223d98,SESCO,II.1.1,Capital Federal,AR-C,annual,2021,naphtha combustion consumption by freight transport,2.9248603999999996,TJ,CO2,73300.0,kg/TJ,214392.26731999996,kg -a3669f5e-79c7-31c5-a120-82947e77c62b,SESCO,II.1.1,Capital Federal,AR-C,annual,2021,naphtha combustion consumption by freight transport,2.9248603999999996,TJ,CH4,3.0,kg/TJ,8.774581199999998,kg -fb26a1ff-e396-37c2-bb79-2e5b175a5cd6,SESCO,II.1.1,Capital Federal,AR-C,annual,2021,naphtha combustion consumption by freight transport,2.9248603999999996,TJ,N2O,0.6,kg/TJ,1.7549162399999998,kg -c300c9b9-5724-3232-9b6e-5a4f12d42eb7,SESCO,II.1.1,Corrientes,AR-W,annual,2021,naphtha combustion consumption by freight transport,0.030153199999999998,TJ,CO2,73300.0,kg/TJ,2210.2295599999998,kg -70756428-9c9e-3955-87ac-74d1150801a9,SESCO,II.1.1,Corrientes,AR-W,annual,2021,naphtha combustion consumption by freight transport,0.030153199999999998,TJ,CH4,3.0,kg/TJ,0.0904596,kg -507a428f-0fcd-33ae-af72-2733185065e0,SESCO,II.1.1,Corrientes,AR-W,annual,2021,naphtha combustion consumption by freight transport,0.030153199999999998,TJ,N2O,0.6,kg/TJ,0.018091919999999997,kg -0dc1a7ae-df8c-33cd-8c19-5967ec6ba748,SESCO,II.1.1,Córdoba,AR-X,annual,2021,naphtha combustion consumption by freight transport,0.603064,TJ,CO2,73300.0,kg/TJ,44204.5912,kg -96a0f18a-6416-3863-94c8-d342fd926ccb,SESCO,II.1.1,Córdoba,AR-X,annual,2021,naphtha combustion consumption by freight transport,0.603064,TJ,CH4,3.0,kg/TJ,1.8091920000000001,kg -ead93018-66f8-33ba-b148-927efb6d1d8e,SESCO,II.1.1,Córdoba,AR-X,annual,2021,naphtha combustion consumption by freight transport,0.603064,TJ,N2O,0.6,kg/TJ,0.3618384,kg -4669687f-0508-35c4-8884-6cf0293ae453,SESCO,II.1.1,Entre Rios,AR-E,annual,2021,naphtha combustion consumption by freight transport,0.5126044,TJ,CO2,73300.0,kg/TJ,37573.902519999996,kg -06f4f46a-bc2d-3f71-ba93-7598f919817d,SESCO,II.1.1,Entre Rios,AR-E,annual,2021,naphtha combustion consumption by freight transport,0.5126044,TJ,CH4,3.0,kg/TJ,1.5378132,kg -187f1071-08c7-3b68-aeb7-0d1d88ebdab8,SESCO,II.1.1,Entre Rios,AR-E,annual,2021,naphtha combustion consumption by freight transport,0.5126044,TJ,N2O,0.6,kg/TJ,0.30756263999999994,kg -b55b7043-394e-3b7e-bd7b-7bf8d79acad1,SESCO,II.1.1,Rio Negro,AR-R,annual,2021,naphtha combustion consumption by freight transport,0.030153199999999998,TJ,CO2,73300.0,kg/TJ,2210.2295599999998,kg -9c9fba2d-6406-33dd-9d6d-7aff887ad1ad,SESCO,II.1.1,Rio Negro,AR-R,annual,2021,naphtha combustion consumption by freight transport,0.030153199999999998,TJ,CH4,3.0,kg/TJ,0.0904596,kg -032b6fc9-6e08-3fd4-a1cf-368b33e06039,SESCO,II.1.1,Rio Negro,AR-R,annual,2021,naphtha combustion consumption by freight transport,0.030153199999999998,TJ,N2O,0.6,kg/TJ,0.018091919999999997,kg -1e64852d-43d4-3f15-b148-c7dd1337e5c3,SESCO,II.1.1,Santa Fe,AR-S,annual,2021,naphtha combustion consumption by freight transport,1.2965876,TJ,CO2,73300.0,kg/TJ,95039.87108000001,kg -3af9e899-8f0f-367e-9dc7-c13679b05f09,SESCO,II.1.1,Santa Fe,AR-S,annual,2021,naphtha combustion consumption by freight transport,1.2965876,TJ,CH4,3.0,kg/TJ,3.8897628,kg -c90768d5-d8e9-3222-a149-d81d758bf4a4,SESCO,II.1.1,Santa Fe,AR-S,annual,2021,naphtha combustion consumption by freight transport,1.2965876,TJ,N2O,0.6,kg/TJ,0.77795256,kg -32b0cfb5-8b6e-3324-aa48-05f8e6c8db0a,SESCO,II.1.1,Buenos Aires,AR-B,annual,2021,naphtha combustion consumption by public passenger transport,0.1809192,TJ,CO2,73300.0,kg/TJ,13261.37736,kg -f8158fe3-bba6-35ed-a125-add5f1352755,SESCO,II.1.1,Buenos Aires,AR-B,annual,2021,naphtha combustion consumption by public passenger transport,0.1809192,TJ,CH4,3.0,kg/TJ,0.5427576000000001,kg -3807ff54-bd31-3115-8109-dc5a3aa4ccb4,SESCO,II.1.1,Buenos Aires,AR-B,annual,2021,naphtha combustion consumption by public passenger transport,0.1809192,TJ,N2O,0.6,kg/TJ,0.10855152,kg -6a336eee-d92d-3db7-bd82-96007d9514d5,SESCO,II.1.1,Santa Fe,AR-S,annual,2021,naphtha combustion consumption by public passenger transport,0.33168519999999996,TJ,CO2,73300.0,kg/TJ,24312.525159999997,kg -606e10ff-271a-339f-8ec7-4fc809f02185,SESCO,II.1.1,Santa Fe,AR-S,annual,2021,naphtha combustion consumption by public passenger transport,0.33168519999999996,TJ,CH4,3.0,kg/TJ,0.9950555999999999,kg -2bbba2db-0682-3ae5-8bc0-c1fc4cb6c026,SESCO,II.1.1,Santa Fe,AR-S,annual,2021,naphtha combustion consumption by public passenger transport,0.33168519999999996,TJ,N2O,0.6,kg/TJ,0.19901111999999996,kg -b3d254ae-5540-338b-ae57-dc7a95b6d17d,SESCO,II.1.1,Buenos Aires,AR-B,annual,2021,naphtha combustion consumption by public passenger transport,0.301532,TJ,CO2,73300.0,kg/TJ,22102.2956,kg -d1341d16-8447-3b6e-bd98-eb38f85b4608,SESCO,II.1.1,Buenos Aires,AR-B,annual,2021,naphtha combustion consumption by public passenger transport,0.301532,TJ,CH4,3.0,kg/TJ,0.9045960000000001,kg -c67e2a65-09e4-3c9e-9c8e-305093412dfe,SESCO,II.1.1,Buenos Aires,AR-B,annual,2021,naphtha combustion consumption by public passenger transport,0.301532,TJ,N2O,0.6,kg/TJ,0.1809192,kg -0326d5ee-11a7-3049-b1e5-692275393a1d,SESCO,II.1.1,Capital Federal,AR-C,annual,2021,naphtha combustion consumption by public passenger transport,0.060306399999999996,TJ,CO2,73300.0,kg/TJ,4420.4591199999995,kg -d32bc139-a03f-30a6-a495-0247e5a80566,SESCO,II.1.1,Capital Federal,AR-C,annual,2021,naphtha combustion consumption by public passenger transport,0.060306399999999996,TJ,CH4,3.0,kg/TJ,0.1809192,kg -ad76267c-2942-3f95-8a45-247830bc5e8d,SESCO,II.1.1,Capital Federal,AR-C,annual,2021,naphtha combustion consumption by public passenger transport,0.060306399999999996,TJ,N2O,0.6,kg/TJ,0.036183839999999995,kg -4e32c448-c956-39e8-bb6d-093b4582e435,SESCO,II.1.1,Córdoba,AR-X,annual,2021,naphtha combustion consumption by public passenger transport,0.3618384,TJ,CO2,73300.0,kg/TJ,26522.75472,kg -27e95695-a1e7-3c45-b587-63b4db02efd1,SESCO,II.1.1,Córdoba,AR-X,annual,2021,naphtha combustion consumption by public passenger transport,0.3618384,TJ,CH4,3.0,kg/TJ,1.0855152000000001,kg -fb2008dd-d773-3aae-bfaa-83bce581eda8,SESCO,II.1.1,Córdoba,AR-X,annual,2021,naphtha combustion consumption by public passenger transport,0.3618384,TJ,N2O,0.6,kg/TJ,0.21710304,kg -194bf9ee-2577-34c1-94c8-732d91fe3f37,SESCO,II.1.1,Santa Fe,AR-S,annual,2021,naphtha combustion consumption by public passenger transport,0.030153199999999998,TJ,CO2,73300.0,kg/TJ,2210.2295599999998,kg -b800ddca-97e5-38d1-b358-f38c56a9d5df,SESCO,II.1.1,Santa Fe,AR-S,annual,2021,naphtha combustion consumption by public passenger transport,0.030153199999999998,TJ,CH4,3.0,kg/TJ,0.0904596,kg -c2376dc2-cb8d-3a6a-9967-7bc579656b3d,SESCO,II.1.1,Santa Fe,AR-S,annual,2021,naphtha combustion consumption by public passenger transport,0.030153199999999998,TJ,N2O,0.6,kg/TJ,0.018091919999999997,kg -a159c90e-9e85-372f-8cd6-7ef3ff8ca62a,SESCO,II.1.1,Catamarca,AR-K,annual,2021,naphtha combustion consumption by to the public,147.17927686000002,TJ,CO2,73300.0,kg/TJ,10788240.993838001,kg -3e0ce02b-bd21-338c-a74c-e5cc60c0be90,SESCO,II.1.1,Catamarca,AR-K,annual,2021,naphtha combustion consumption by to the public,147.17927686000002,TJ,CH4,3.0,kg/TJ,441.53783058000005,kg -decd8003-a5a4-3fc1-b8fa-22e2aa29fdb8,SESCO,II.1.1,Catamarca,AR-K,annual,2021,naphtha combustion consumption by to the public,147.17927686000002,TJ,N2O,0.6,kg/TJ,88.307566116,kg -9003a68b-7f65-3c58-a046-4e11881b4705,SESCO,II.1.1,Chaco,AR-H,annual,2021,naphtha combustion consumption by to the public,109.35751503599998,TJ,CO2,73300.0,kg/TJ,8015905.852138799,kg -369cca82-b385-35f1-814e-44a4c7ef8e8b,SESCO,II.1.1,Chaco,AR-H,annual,2021,naphtha combustion consumption by to the public,109.35751503599998,TJ,CH4,3.0,kg/TJ,328.07254510799993,kg -a4fd168d-f4ec-353b-8079-eb065d593948,SESCO,II.1.1,Chaco,AR-H,annual,2021,naphtha combustion consumption by to the public,109.35751503599998,TJ,N2O,0.6,kg/TJ,65.61450902159999,kg -c22e3f45-dc81-3550-afea-b88256847532,SESCO,II.1.1,Jujuy,AR-Y,annual,2021,naphtha combustion consumption by to the public,407.914600324,TJ,CO2,73300.0,kg/TJ,29900140.2037492,kg -5bd159ff-f252-38e3-b41c-bd32518d90b4,SESCO,II.1.1,Jujuy,AR-Y,annual,2021,naphtha combustion consumption by to the public,407.914600324,TJ,CH4,3.0,kg/TJ,1223.743800972,kg -4f97b877-1611-3f7c-acad-a6e20d67bf78,SESCO,II.1.1,Jujuy,AR-Y,annual,2021,naphtha combustion consumption by to the public,407.914600324,TJ,N2O,0.6,kg/TJ,244.74876019439998,kg -c70db8b8-7f37-3d7d-a131-e7c14005aab2,SESCO,II.1.1,La Rioja,AR-F,annual,2021,naphtha combustion consumption by to the public,417.475275448,TJ,CO2,73300.0,kg/TJ,30600937.6903384,kg -d4c560fe-beba-3b3a-a6cf-a227916aacfb,SESCO,II.1.1,La Rioja,AR-F,annual,2021,naphtha combustion consumption by to the public,417.475275448,TJ,CH4,3.0,kg/TJ,1252.425826344,kg -cc69c315-e3cc-3e5e-a539-5afa52492d75,SESCO,II.1.1,La Rioja,AR-F,annual,2021,naphtha combustion consumption by to the public,417.475275448,TJ,N2O,0.6,kg/TJ,250.4851652688,kg -74d65577-e626-3e65-b919-c6aa93353649,SESCO,II.1.1,Salta,AR-A,annual,2021,naphtha combustion consumption by to the public,994.526712872,TJ,CO2,73300.0,kg/TJ,72898808.0535176,kg -abb11459-1e62-33c2-bdfb-17cf38927fd9,SESCO,II.1.1,Salta,AR-A,annual,2021,naphtha combustion consumption by to the public,994.526712872,TJ,CH4,3.0,kg/TJ,2983.580138616,kg -2d66e049-6909-39a8-97fa-04dce561dd78,SESCO,II.1.1,Salta,AR-A,annual,2021,naphtha combustion consumption by to the public,994.526712872,TJ,N2O,0.6,kg/TJ,596.7160277232,kg -db3dc778-0237-3a84-924d-25a0f0607d2d,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2021,naphtha combustion consumption by to the public,276.339905996,TJ,CO2,73300.0,kg/TJ,20255715.1095068,kg -5ba3e325-7ca7-353b-bba0-92df71356139,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2021,naphtha combustion consumption by to the public,276.339905996,TJ,CH4,3.0,kg/TJ,829.0197179880001,kg -60a7212d-9a84-3b3b-90b5-58835c4c0725,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2021,naphtha combustion consumption by to the public,276.339905996,TJ,N2O,0.6,kg/TJ,165.8039435976,kg -68dd609f-4dbf-3155-8ce3-e487acec39a6,SESCO,II.1.1,Tucuman,AR-T,annual,2021,naphtha combustion consumption by to the public,2024.7765248479998,TJ,CO2,73300.0,kg/TJ,148416119.27135837,kg -dbd781d9-7e68-30a7-8673-7b33ae830959,SESCO,II.1.1,Tucuman,AR-T,annual,2021,naphtha combustion consumption by to the public,2024.7765248479998,TJ,CH4,3.0,kg/TJ,6074.329574543999,kg -d60acd8a-5763-37c0-bceb-bd08782301d8,SESCO,II.1.1,Tucuman,AR-T,annual,2021,naphtha combustion consumption by to the public,2024.7765248479998,TJ,N2O,0.6,kg/TJ,1214.8659149087998,kg -7eb52d2e-0874-303e-a65b-5be416ce68ed,SESCO,II.1.1,Catamarca,AR-K,annual,2021,naphtha combustion consumption by to the public,18.242384468,TJ,CO2,73300.0,kg/TJ,1337166.7815044,kg -447064e6-057b-39c0-a066-35ec6abb99ab,SESCO,II.1.1,Catamarca,AR-K,annual,2021,naphtha combustion consumption by to the public,18.242384468,TJ,CH4,3.0,kg/TJ,54.727153404000006,kg -c84a590e-e007-355b-8a89-c5978d366ee0,SESCO,II.1.1,Catamarca,AR-K,annual,2021,naphtha combustion consumption by to the public,18.242384468,TJ,N2O,0.6,kg/TJ,10.9454306808,kg -23fa79ba-dd83-3828-b852-cc4f4b8f64b8,SESCO,II.1.1,Chaco,AR-H,annual,2021,naphtha combustion consumption by to the public,3.9500691999999997,TJ,CO2,73300.0,kg/TJ,289540.07236,kg -eda3bf41-17d8-365c-9e6c-f3c41da46061,SESCO,II.1.1,Chaco,AR-H,annual,2021,naphtha combustion consumption by to the public,3.9500691999999997,TJ,CH4,3.0,kg/TJ,11.8502076,kg -2831a3ac-720a-3c73-a725-d755bd1dbed2,SESCO,II.1.1,Chaco,AR-H,annual,2021,naphtha combustion consumption by to the public,3.9500691999999997,TJ,N2O,0.6,kg/TJ,2.3700415199999996,kg -b9cc8707-dda0-38bf-808b-aa9cbe62986d,SESCO,II.1.1,Jujuy,AR-Y,annual,2021,naphtha combustion consumption by to the public,25.148070332,TJ,CO2,73300.0,kg/TJ,1843353.5553356,kg -7f08ac55-d598-3837-ae9a-caad42f11286,SESCO,II.1.1,Jujuy,AR-Y,annual,2021,naphtha combustion consumption by to the public,25.148070332,TJ,CH4,3.0,kg/TJ,75.444210996,kg -a964222f-4a69-3b73-b9cc-1e81f063120a,SESCO,II.1.1,Jujuy,AR-Y,annual,2021,naphtha combustion consumption by to the public,25.148070332,TJ,N2O,0.6,kg/TJ,15.088842199199998,kg -7622403c-7ec7-3e98-bf3e-8dfbf5ee5b56,SESCO,II.1.1,La Rioja,AR-F,annual,2021,naphtha combustion consumption by to the public,50.95468655199999,TJ,CO2,73300.0,kg/TJ,3734978.5242615994,kg -332e6019-9fbe-3a05-a3ee-5513d03fadd1,SESCO,II.1.1,La Rioja,AR-F,annual,2021,naphtha combustion consumption by to the public,50.95468655199999,TJ,CH4,3.0,kg/TJ,152.86405965599997,kg -e2a7a0e6-9c7a-3852-9712-af1bdab62486,SESCO,II.1.1,La Rioja,AR-F,annual,2021,naphtha combustion consumption by to the public,50.95468655199999,TJ,N2O,0.6,kg/TJ,30.572811931199993,kg -46572cd4-385f-3944-bb52-d0cbe9d5c176,SESCO,II.1.1,Salta,AR-A,annual,2021,naphtha combustion consumption by to the public,68.84970615599998,TJ,CO2,73300.0,kg/TJ,5046683.461234799,kg -abb80fec-afdc-3d5f-b165-278d82818228,SESCO,II.1.1,Salta,AR-A,annual,2021,naphtha combustion consumption by to the public,68.84970615599998,TJ,CH4,3.0,kg/TJ,206.54911846799996,kg -4b4e0f21-63ab-38dd-9b0e-6dced73e4a4f,SESCO,II.1.1,Salta,AR-A,annual,2021,naphtha combustion consumption by to the public,68.84970615599998,TJ,N2O,0.6,kg/TJ,41.30982369359999,kg -ccc07617-21a9-3e06-a714-065e94ab59e3,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2021,naphtha combustion consumption by to the public,33.875311008,TJ,CO2,73300.0,kg/TJ,2483060.2968864,kg -20e0600c-f39b-3eed-bb6f-2a79991d65c4,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2021,naphtha combustion consumption by to the public,33.875311008,TJ,CH4,3.0,kg/TJ,101.62593302399999,kg -4f431f6b-5d91-37ed-9421-32c0040c73fc,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2021,naphtha combustion consumption by to the public,33.875311008,TJ,N2O,0.6,kg/TJ,20.3251866048,kg -b234b4ef-00c2-34d3-8f57-6ae8ebe1cdf3,SESCO,II.1.1,Tucuman,AR-T,annual,2021,naphtha combustion consumption by to the public,191.807218988,TJ,CO2,73300.0,kg/TJ,14059469.151820399,kg -fbb51037-739a-334e-830d-297aed6851f8,SESCO,II.1.1,Tucuman,AR-T,annual,2021,naphtha combustion consumption by to the public,191.807218988,TJ,CH4,3.0,kg/TJ,575.421656964,kg -721996ec-ecc6-31d2-930d-6db039485d67,SESCO,II.1.1,Tucuman,AR-T,annual,2021,naphtha combustion consumption by to the public,191.807218988,TJ,N2O,0.6,kg/TJ,115.0843313928,kg -223c8685-8a86-3044-95e6-b63368d89b9f,SESCO,I.3.1,La Pampa,AR-L,annual,2021,naphtha combustion consumption by petrochemical industries,14.925834,TJ,CO2,73300.0,kg/TJ,1094063.6322,kg -d47963a4-ffcf-3fec-abdf-05024319dc83,SESCO,I.3.1,La Pampa,AR-L,annual,2021,naphtha combustion consumption by petrochemical industries,14.925834,TJ,CH4,3.0,kg/TJ,44.777502,kg -14a51f48-a0d7-314e-8b09-0f05511f78d1,SESCO,I.3.1,La Pampa,AR-L,annual,2021,naphtha combustion consumption by petrochemical industries,14.925834,TJ,N2O,0.6,kg/TJ,8.9555004,kg -3b1a29fb-bf2f-329d-a20e-c7d95935d369,SESCO,I.3.1,La Pampa,AR-L,annual,2021,naphtha combustion consumption by petrochemical industries,3.9500691999999997,TJ,CO2,73300.0,kg/TJ,289540.07236,kg -bc85cb2b-82e4-3de8-be54-ce9f9a951172,SESCO,I.3.1,La Pampa,AR-L,annual,2021,naphtha combustion consumption by petrochemical industries,3.9500691999999997,TJ,CH4,3.0,kg/TJ,11.8502076,kg -b5ba905b-9b6f-3fac-a3d3-d75ed232d77d,SESCO,I.3.1,La Pampa,AR-L,annual,2021,naphtha combustion consumption by petrochemical industries,3.9500691999999997,TJ,N2O,0.6,kg/TJ,2.3700415199999996,kg -c0af6563-2534-31d8-8fc7-bcdba8e6bd60,SESCO,II.5.1,Santa Fe,AR-S,annual,2021,naphtha combustion consumption by agriculture machines,1.206128,TJ,CO2,73300.0,kg/TJ,88409.1824,kg -d195dd45-ec73-37ab-805e-70d37f8ee4c4,SESCO,II.5.1,Santa Fe,AR-S,annual,2021,naphtha combustion consumption by agriculture machines,1.206128,TJ,CH4,3.0,kg/TJ,3.6183840000000003,kg -4d4c4d79-129d-3487-8d75-1f6e17da88a1,SESCO,II.5.1,Santa Fe,AR-S,annual,2021,naphtha combustion consumption by agriculture machines,1.206128,TJ,N2O,0.6,kg/TJ,0.7236768,kg -60fa76e8-6c1a-3c15-9846-bafcd1dcaac6,SESCO,II.5.1,Santa Fe,AR-S,annual,2021,naphtha combustion consumption by agriculture machines,0.5427576,TJ,CO2,73300.0,kg/TJ,39784.132079999996,kg -1f73641f-042a-3f74-a5e5-a3382440da60,SESCO,II.5.1,Santa Fe,AR-S,annual,2021,naphtha combustion consumption by agriculture machines,0.5427576,TJ,CH4,3.0,kg/TJ,1.6282728,kg -93c0173d-c1be-3a6c-b7dc-c5e26eb99a3f,SESCO,II.5.1,Santa Fe,AR-S,annual,2021,naphtha combustion consumption by agriculture machines,0.5427576,TJ,N2O,0.6,kg/TJ,0.32565456,kg -29f7ffaf-1a2c-3ee1-b2ae-463701d5ee01,SESCO,II.1.1,Buenos Aires,AR-B,annual,2021,naphtha combustion consumption by to the public,16661.6632644,TJ,CO2,73300.0,kg/TJ,1221299917.28052,kg -135c70d4-5378-30fe-b200-d89ef0a15379,SESCO,II.1.1,Buenos Aires,AR-B,annual,2021,naphtha combustion consumption by to the public,16661.6632644,TJ,CH4,3.0,kg/TJ,49984.989793199995,kg -e8ecac9a-6fb0-3799-8c3b-455c3ef2dd8b,SESCO,II.1.1,Buenos Aires,AR-B,annual,2021,naphtha combustion consumption by to the public,16661.6632644,TJ,N2O,0.6,kg/TJ,9996.997958639999,kg -d6303788-a163-35fb-bb01-120a9f2f3257,SESCO,II.1.1,Capital Federal,AR-C,annual,2021,naphtha combustion consumption by to the public,4343.6589195999995,TJ,CO2,73300.0,kg/TJ,318390198.80667996,kg -453484b5-77f4-31f6-b1b1-ed28e3be96a0,SESCO,II.1.1,Capital Federal,AR-C,annual,2021,naphtha combustion consumption by to the public,4343.6589195999995,TJ,CH4,3.0,kg/TJ,13030.9767588,kg -811eabf5-e747-33d2-b577-f480ff03acdd,SESCO,II.1.1,Capital Federal,AR-C,annual,2021,naphtha combustion consumption by to the public,4343.6589195999995,TJ,N2O,0.6,kg/TJ,2606.1953517599995,kg -1350c4b0-a994-396f-adf3-be34079c6750,SESCO,II.1.1,Catamarca,AR-K,annual,2021,naphtha combustion consumption by to the public,65.88474199999999,TJ,CO2,73300.0,kg/TJ,4829351.588599999,kg -61b964d4-9bec-37ff-a6d9-b5b0bd828eb4,SESCO,II.1.1,Catamarca,AR-K,annual,2021,naphtha combustion consumption by to the public,65.88474199999999,TJ,CH4,3.0,kg/TJ,197.65422599999997,kg -f7eb6f61-3905-3f38-9dfc-a67bf74305db,SESCO,II.1.1,Catamarca,AR-K,annual,2021,naphtha combustion consumption by to the public,65.88474199999999,TJ,N2O,0.6,kg/TJ,39.530845199999995,kg -d8f1a4ce-fa5d-3a17-90de-404404299289,SESCO,II.1.1,Chaco,AR-H,annual,2021,naphtha combustion consumption by to the public,1032.2043423999999,TJ,CO2,73300.0,kg/TJ,75660578.29791999,kg -71577b5a-b416-3f46-a780-475e5100b70d,SESCO,II.1.1,Chaco,AR-H,annual,2021,naphtha combustion consumption by to the public,1032.2043423999999,TJ,CH4,3.0,kg/TJ,3096.6130271999996,kg -9cabaa5c-cc2a-3f6c-a786-dda31465639b,SESCO,II.1.1,Chaco,AR-H,annual,2021,naphtha combustion consumption by to the public,1032.2043423999999,TJ,N2O,0.6,kg/TJ,619.3226054399998,kg -33c6c508-7de3-3173-8669-ba69e373f86c,SESCO,II.1.1,Corrientes,AR-W,annual,2021,naphtha combustion consumption by to the public,1074.2982095999998,TJ,CO2,73300.0,kg/TJ,78746058.76367998,kg -db59e35e-f4fa-3d23-b434-5814c0fb9468,SESCO,II.1.1,Corrientes,AR-W,annual,2021,naphtha combustion consumption by to the public,1074.2982095999998,TJ,CH4,3.0,kg/TJ,3222.8946287999997,kg -44b6c76d-5c54-3e76-ad8a-12610e2ab03c,SESCO,II.1.1,Corrientes,AR-W,annual,2021,naphtha combustion consumption by to the public,1074.2982095999998,TJ,N2O,0.6,kg/TJ,644.5789257599998,kg -d2a1b0e3-8088-32bc-ad7e-ba745bafabac,SESCO,II.1.1,Córdoba,AR-X,annual,2021,naphtha combustion consumption by to the public,4092.3018444,TJ,CO2,73300.0,kg/TJ,299965725.19452,kg -430cf04c-7900-3877-b922-f44e80c4a190,SESCO,II.1.1,Córdoba,AR-X,annual,2021,naphtha combustion consumption by to the public,4092.3018444,TJ,CH4,3.0,kg/TJ,12276.905533199999,kg -331a1c22-c5cd-3a5a-ae26-53d84c067a13,SESCO,II.1.1,Córdoba,AR-X,annual,2021,naphtha combustion consumption by to the public,4092.3018444,TJ,N2O,0.6,kg/TJ,2455.38110664,kg -473875d5-4902-3cfc-bb25-5784d0ece20c,SESCO,II.1.1,Entre Rios,AR-E,annual,2021,naphtha combustion consumption by to the public,1239.598052,TJ,CO2,73300.0,kg/TJ,90862537.2116,kg -3d238d7a-508c-31d9-842a-3f1a5fe172f3,SESCO,II.1.1,Entre Rios,AR-E,annual,2021,naphtha combustion consumption by to the public,1239.598052,TJ,CH4,3.0,kg/TJ,3718.794156,kg -5b3c4ecd-4244-3936-8525-dd77d3d54a45,SESCO,II.1.1,Entre Rios,AR-E,annual,2021,naphtha combustion consumption by to the public,1239.598052,TJ,N2O,0.6,kg/TJ,743.7588312,kg -ce0a785e-a32d-3c74-9d00-a2753d5f3278,SESCO,II.1.1,Formosa,AR-P,annual,2021,naphtha combustion consumption by to the public,345.3445995999999,TJ,CO2,73300.0,kg/TJ,25313759.150679994,kg -8c3d14da-75cf-31de-9ec4-1017437fcfb0,SESCO,II.1.1,Formosa,AR-P,annual,2021,naphtha combustion consumption by to the public,345.3445995999999,TJ,CH4,3.0,kg/TJ,1036.0337987999997,kg -b0c8c795-726a-3eec-b03f-75cbf6d891bf,SESCO,II.1.1,Formosa,AR-P,annual,2021,naphtha combustion consumption by to the public,345.3445995999999,TJ,N2O,0.6,kg/TJ,207.20675975999995,kg -029c50d6-567d-3e58-950b-595e0af63eed,SESCO,II.1.1,Jujuy,AR-Y,annual,2021,naphtha combustion consumption by to the public,241.40651919999996,TJ,CO2,73300.0,kg/TJ,17695097.857359998,kg -e6253bd6-5a99-3b49-832b-f7461bab8501,SESCO,II.1.1,Jujuy,AR-Y,annual,2021,naphtha combustion consumption by to the public,241.40651919999996,TJ,CH4,3.0,kg/TJ,724.2195575999999,kg -1f4e0d3a-dcc9-30cb-ab9f-676b6aabdd79,SESCO,II.1.1,Jujuy,AR-Y,annual,2021,naphtha combustion consumption by to the public,241.40651919999996,TJ,N2O,0.6,kg/TJ,144.84391151999998,kg -36f70f42-6391-3147-84a5-e73488ec2bcc,SESCO,II.1.1,La Pampa,AR-L,annual,2021,naphtha combustion consumption by to the public,298.06438199999997,TJ,CO2,73300.0,kg/TJ,21848119.2006,kg -ffebabad-fbfa-30c5-8d97-76703612e182,SESCO,II.1.1,La Pampa,AR-L,annual,2021,naphtha combustion consumption by to the public,298.06438199999997,TJ,CH4,3.0,kg/TJ,894.1931459999998,kg -71c25c17-6dd7-3b9e-b654-e73ee4c20ebb,SESCO,II.1.1,La Pampa,AR-L,annual,2021,naphtha combustion consumption by to the public,298.06438199999997,TJ,N2O,0.6,kg/TJ,178.83862919999999,kg -44c7405e-4de7-3592-9424-245a8def337a,SESCO,II.1.1,La Rioja,AR-F,annual,2021,naphtha combustion consumption by to the public,237.45645,TJ,CO2,73300.0,kg/TJ,17405557.785,kg -f373e012-f767-38e7-8dd5-3523a79fe89b,SESCO,II.1.1,La Rioja,AR-F,annual,2021,naphtha combustion consumption by to the public,237.45645,TJ,CH4,3.0,kg/TJ,712.3693499999999,kg -e8ed7413-ce08-3cac-b59d-9833f4d308b6,SESCO,II.1.1,La Rioja,AR-F,annual,2021,naphtha combustion consumption by to the public,237.45645,TJ,N2O,0.6,kg/TJ,142.47386999999998,kg -f1d0b007-2855-3963-8189-589deaa99fdf,SESCO,II.1.1,Mendoza,AR-M,annual,2021,naphtha combustion consumption by to the public,1678.0557331999998,TJ,CO2,73300.0,kg/TJ,123001485.24355999,kg -6c1444a3-fac7-3adc-a9ef-40611a868004,SESCO,II.1.1,Mendoza,AR-M,annual,2021,naphtha combustion consumption by to the public,1678.0557331999998,TJ,CH4,3.0,kg/TJ,5034.1671996,kg -645ffc2b-8a83-3839-87ef-aff99ad57a2c,SESCO,II.1.1,Mendoza,AR-M,annual,2021,naphtha combustion consumption by to the public,1678.0557331999998,TJ,N2O,0.6,kg/TJ,1006.8334399199998,kg -193941c2-092e-36c7-a378-ebc38b73eea6,SESCO,II.1.1,Misiones,AR-N,annual,2021,naphtha combustion consumption by to the public,1238.3014643999998,TJ,CO2,73300.0,kg/TJ,90767497.34051998,kg -7b8a2e74-3f62-3327-b953-5d2d665867ae,SESCO,II.1.1,Misiones,AR-N,annual,2021,naphtha combustion consumption by to the public,1238.3014643999998,TJ,CH4,3.0,kg/TJ,3714.9043931999995,kg -34a07038-f767-394f-901e-bd393ef812fa,SESCO,II.1.1,Misiones,AR-N,annual,2021,naphtha combustion consumption by to the public,1238.3014643999998,TJ,N2O,0.6,kg/TJ,742.9808786399998,kg -5979d576-6702-3473-9038-69d88d2abe4e,SESCO,II.1.1,Neuquén,AR-Q,annual,2021,naphtha combustion consumption by to the public,480.00879079999993,TJ,CO2,73300.0,kg/TJ,35184644.36563999,kg -b3f63160-d7ac-3aae-b861-5771079a46c4,SESCO,II.1.1,Neuquén,AR-Q,annual,2021,naphtha combustion consumption by to the public,480.00879079999993,TJ,CH4,3.0,kg/TJ,1440.0263723999997,kg -824444ea-0d8d-3c70-8274-15eb9188e6e4,SESCO,II.1.1,Neuquén,AR-Q,annual,2021,naphtha combustion consumption by to the public,480.00879079999993,TJ,N2O,0.6,kg/TJ,288.00527447999997,kg -d009f7a9-47b6-3cee-8e07-9c1875cf9970,SESCO,II.1.1,Rio Negro,AR-R,annual,2021,naphtha combustion consumption by to the public,335.87649479999993,TJ,CO2,73300.0,kg/TJ,24619747.068839993,kg -756d9753-b7ea-3b3b-bce6-276db0c2c305,SESCO,II.1.1,Rio Negro,AR-R,annual,2021,naphtha combustion consumption by to the public,335.87649479999993,TJ,CH4,3.0,kg/TJ,1007.6294843999998,kg -9619bb23-4180-39b2-a12a-f3d96b055461,SESCO,II.1.1,Rio Negro,AR-R,annual,2021,naphtha combustion consumption by to the public,335.87649479999993,TJ,N2O,0.6,kg/TJ,201.52589687999995,kg -6e260202-e650-3c31-989f-d18406321b41,SESCO,II.1.1,Salta,AR-A,annual,2021,naphtha combustion consumption by to the public,304.2759412,TJ,CO2,73300.0,kg/TJ,22303426.48996,kg -42e32995-dbae-3f2b-bf69-3218d453bf61,SESCO,II.1.1,Salta,AR-A,annual,2021,naphtha combustion consumption by to the public,304.2759412,TJ,CH4,3.0,kg/TJ,912.8278235999999,kg -1588ec1f-8f97-3bfa-9508-bf51c5edc716,SESCO,II.1.1,Salta,AR-A,annual,2021,naphtha combustion consumption by to the public,304.2759412,TJ,N2O,0.6,kg/TJ,182.56556471999997,kg -101d52bb-9b18-3ba9-bcaf-79c71d701318,SESCO,II.1.1,San Juan,AR-J,annual,2021,naphtha combustion consumption by to the public,338.620436,TJ,CO2,73300.0,kg/TJ,24820877.9588,kg -29f33be9-74e3-329e-9b39-9b6512a23a7c,SESCO,II.1.1,San Juan,AR-J,annual,2021,naphtha combustion consumption by to the public,338.620436,TJ,CH4,3.0,kg/TJ,1015.861308,kg -5befb292-8151-33ee-b089-e73f723ff903,SESCO,II.1.1,San Juan,AR-J,annual,2021,naphtha combustion consumption by to the public,338.620436,TJ,N2O,0.6,kg/TJ,203.17226159999998,kg -b771d2c7-05e5-3803-9033-0ead80082833,SESCO,II.1.1,San Luis,AR-D,annual,2021,naphtha combustion consumption by to the public,276.41438439999996,TJ,CO2,73300.0,kg/TJ,20261174.376519997,kg -6399b2bb-4e34-3a56-aa1f-376b0e89d6bf,SESCO,II.1.1,San Luis,AR-D,annual,2021,naphtha combustion consumption by to the public,276.41438439999996,TJ,CH4,3.0,kg/TJ,829.2431531999998,kg -9e82436c-1bfd-3d58-8b8f-ef25375f70fe,SESCO,II.1.1,San Luis,AR-D,annual,2021,naphtha combustion consumption by to the public,276.41438439999996,TJ,N2O,0.6,kg/TJ,165.84863063999998,kg -79214773-da4c-34d0-aa1b-ad4bef376686,SESCO,II.1.1,Santa Fe,AR-S,annual,2021,naphtha combustion consumption by to the public,3340.6730279999997,TJ,CO2,73300.0,kg/TJ,244871332.95239997,kg -0c781d3f-40b9-331e-a326-3b614c784fcb,SESCO,II.1.1,Santa Fe,AR-S,annual,2021,naphtha combustion consumption by to the public,3340.6730279999997,TJ,CH4,3.0,kg/TJ,10022.019084,kg -d55416f9-ad53-3d1f-ba16-22debf6b2028,SESCO,II.1.1,Santa Fe,AR-S,annual,2021,naphtha combustion consumption by to the public,3340.6730279999997,TJ,N2O,0.6,kg/TJ,2004.4038167999997,kg -72417993-cc7b-37dc-99cc-b6d86e4415cb,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2021,naphtha combustion consumption by to the public,521.2282151999999,TJ,CO2,73300.0,kg/TJ,38206028.174159996,kg -1b50608b-47aa-399d-9ede-088bc431e7a3,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2021,naphtha combustion consumption by to the public,521.2282151999999,TJ,CH4,3.0,kg/TJ,1563.6846455999998,kg -965a1c44-6640-36c7-9c25-de921a87ad48,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2021,naphtha combustion consumption by to the public,521.2282151999999,TJ,N2O,0.6,kg/TJ,312.73692911999996,kg -c6ddcb84-aab8-3273-a482-131111763b2e,SESCO,II.1.1,Tucuman,AR-T,annual,2021,naphtha combustion consumption by to the public,1016.6754443999998,TJ,CO2,73300.0,kg/TJ,74522310.07451999,kg -8ba51505-cb74-324b-acf3-dcda51db8877,SESCO,II.1.1,Tucuman,AR-T,annual,2021,naphtha combustion consumption by to the public,1016.6754443999998,TJ,CH4,3.0,kg/TJ,3050.0263331999995,kg -d2098439-e8e3-3116-ac20-c9cf30f12c80,SESCO,II.1.1,Tucuman,AR-T,annual,2021,naphtha combustion consumption by to the public,1016.6754443999998,TJ,N2O,0.6,kg/TJ,610.0052666399998,kg -3165bd7f-3650-3c40-8194-3dc2d02171fd,SESCO,II.1.1,Buenos Aires,AR-B,annual,2021,naphtha combustion consumption by to the public,7904.058315999999,TJ,CO2,73300.0,kg/TJ,579367474.5627999,kg -74429688-7a0f-3b19-911b-3bd1c545d0c7,SESCO,II.1.1,Buenos Aires,AR-B,annual,2021,naphtha combustion consumption by to the public,7904.058315999999,TJ,CH4,3.0,kg/TJ,23712.174947999996,kg -147be1a3-18e1-37b1-ab1c-43e3ed5c108e,SESCO,II.1.1,Buenos Aires,AR-B,annual,2021,naphtha combustion consumption by to the public,7904.058315999999,TJ,N2O,0.6,kg/TJ,4742.434989599999,kg -4e22c423-6f88-3ecd-b465-3bcc102af137,SESCO,II.1.1,Capital Federal,AR-C,annual,2021,naphtha combustion consumption by to the public,3104.573472,TJ,CO2,73300.0,kg/TJ,227565235.4976,kg -d2acd254-1a02-31f8-ae68-b0d504cf100c,SESCO,II.1.1,Capital Federal,AR-C,annual,2021,naphtha combustion consumption by to the public,3104.573472,TJ,CH4,3.0,kg/TJ,9313.720416,kg -d5bf821a-4616-3523-afc7-8c272b4c5d1c,SESCO,II.1.1,Capital Federal,AR-C,annual,2021,naphtha combustion consumption by to the public,3104.573472,TJ,N2O,0.6,kg/TJ,1862.7440832,kg -64470a8f-54d1-356f-981d-c4e3fee39e25,SESCO,II.1.1,Catamarca,AR-K,annual,2021,naphtha combustion consumption by to the public,36.9979764,TJ,CO2,73300.0,kg/TJ,2711951.67012,kg -256b5500-b57e-3659-8905-e9f7b6d3d560,SESCO,II.1.1,Catamarca,AR-K,annual,2021,naphtha combustion consumption by to the public,36.9979764,TJ,CH4,3.0,kg/TJ,110.9939292,kg -c1a60e7c-1e48-3917-9ab7-3bfc041713bf,SESCO,II.1.1,Catamarca,AR-K,annual,2021,naphtha combustion consumption by to the public,36.9979764,TJ,N2O,0.6,kg/TJ,22.19878584,kg -9c1f5efc-0f18-310a-9d4e-8a51aae4e455,SESCO,II.1.1,Chaco,AR-H,annual,2021,naphtha combustion consumption by to the public,278.3743424,TJ,CO2,73300.0,kg/TJ,20404839.29792,kg -9ebee27a-0aea-33c4-8300-b8839cb307d6,SESCO,II.1.1,Chaco,AR-H,annual,2021,naphtha combustion consumption by to the public,278.3743424,TJ,CH4,3.0,kg/TJ,835.1230272,kg -10c43d77-5475-3921-8cce-13fab9990c9b,SESCO,II.1.1,Chaco,AR-H,annual,2021,naphtha combustion consumption by to the public,278.3743424,TJ,N2O,0.6,kg/TJ,167.02460544,kg -4ebbcc39-71eb-3ed9-bb33-b86c0322689e,SESCO,II.1.1,Corrientes,AR-W,annual,2021,naphtha combustion consumption by to the public,340.1582492,TJ,CO2,73300.0,kg/TJ,24933599.66636,kg -8921e07c-6d04-3898-8eff-83f14734a3ef,SESCO,II.1.1,Corrientes,AR-W,annual,2021,naphtha combustion consumption by to the public,340.1582492,TJ,CH4,3.0,kg/TJ,1020.4747476,kg -3320e8d4-f7ac-3431-9199-bf98f9d39eed,SESCO,II.1.1,Corrientes,AR-W,annual,2021,naphtha combustion consumption by to the public,340.1582492,TJ,N2O,0.6,kg/TJ,204.09494952,kg -332c883d-c280-3f99-aef5-76d65c324054,SESCO,II.1.1,Córdoba,AR-X,annual,2021,naphtha combustion consumption by to the public,1695.5747423999999,TJ,CO2,73300.0,kg/TJ,124285628.61792,kg -21777948-cd81-3a36-a026-5c6caef22496,SESCO,II.1.1,Córdoba,AR-X,annual,2021,naphtha combustion consumption by to the public,1695.5747423999999,TJ,CH4,3.0,kg/TJ,5086.724227199999,kg -149e3997-185a-3c21-88dd-22b1882e55f4,SESCO,II.1.1,Córdoba,AR-X,annual,2021,naphtha combustion consumption by to the public,1695.5747423999999,TJ,N2O,0.6,kg/TJ,1017.3448454399999,kg -246ce013-5b39-33ed-b668-545ee0ed70ab,SESCO,II.1.1,Entre Rios,AR-E,annual,2021,naphtha combustion consumption by to the public,411.07857559999997,TJ,CO2,73300.0,kg/TJ,30132059.591479998,kg -e3155329-057a-3674-aeab-d3abcedc1514,SESCO,II.1.1,Entre Rios,AR-E,annual,2021,naphtha combustion consumption by to the public,411.07857559999997,TJ,CH4,3.0,kg/TJ,1233.2357267999998,kg -4968f946-b3cb-3812-bebe-58ff2ba7beff,SESCO,II.1.1,Entre Rios,AR-E,annual,2021,naphtha combustion consumption by to the public,411.07857559999997,TJ,N2O,0.6,kg/TJ,246.64714535999997,kg -246212cf-2e9c-3955-87ed-38f7f3677cc2,SESCO,II.1.1,Formosa,AR-P,annual,2021,naphtha combustion consumption by to the public,117.68793959999998,TJ,CO2,73300.0,kg/TJ,8626525.972679999,kg -b4e4dcd8-0e59-3772-a168-7acfb141132d,SESCO,II.1.1,Formosa,AR-P,annual,2021,naphtha combustion consumption by to the public,117.68793959999998,TJ,CH4,3.0,kg/TJ,353.0638187999999,kg -19a61a19-3953-325e-ae8e-50e234d7e854,SESCO,II.1.1,Formosa,AR-P,annual,2021,naphtha combustion consumption by to the public,117.68793959999998,TJ,N2O,0.6,kg/TJ,70.61276375999998,kg -80fc560c-a6e0-34b5-99e5-9c6c5bf767e1,SESCO,II.1.1,Jujuy,AR-Y,annual,2021,naphtha combustion consumption by to the public,74.9005488,TJ,CO2,73300.0,kg/TJ,5490210.227039999,kg -9af30b2d-016d-3a0a-9e0a-5ca471401aa1,SESCO,II.1.1,Jujuy,AR-Y,annual,2021,naphtha combustion consumption by to the public,74.9005488,TJ,CH4,3.0,kg/TJ,224.7016464,kg -de415806-5c3e-37ce-bf19-d6324da81bd6,SESCO,II.1.1,Jujuy,AR-Y,annual,2021,naphtha combustion consumption by to the public,74.9005488,TJ,N2O,0.6,kg/TJ,44.94032927999999,kg -c3bffe07-a336-32d1-b577-2d979e50b473,SESCO,II.1.1,La Pampa,AR-L,annual,2021,naphtha combustion consumption by to the public,157.9424616,TJ,CO2,73300.0,kg/TJ,11577182.43528,kg -83c1ab31-8e62-335b-9c9b-6c93a403742c,SESCO,II.1.1,La Pampa,AR-L,annual,2021,naphtha combustion consumption by to the public,157.9424616,TJ,CH4,3.0,kg/TJ,473.8273848,kg -a7a6a1a3-2382-388e-8c63-bcc67594313c,SESCO,II.1.1,La Pampa,AR-L,annual,2021,naphtha combustion consumption by to the public,157.9424616,TJ,N2O,0.6,kg/TJ,94.76547696,kg -3bcd770f-adfa-3183-aa9e-a80b538e1543,SESCO,II.1.1,La Rioja,AR-F,annual,2021,naphtha combustion consumption by to the public,77.8254092,TJ,CO2,73300.0,kg/TJ,5704602.49436,kg -19e81eae-8733-3d59-95f5-10c4664a5c2e,SESCO,II.1.1,La Rioja,AR-F,annual,2021,naphtha combustion consumption by to the public,77.8254092,TJ,CH4,3.0,kg/TJ,233.4762276,kg -f3462996-56f5-307f-b75f-e50f6978cbb0,SESCO,II.1.1,La Rioja,AR-F,annual,2021,naphtha combustion consumption by to the public,77.8254092,TJ,N2O,0.6,kg/TJ,46.69524551999999,kg -e7d2e20a-37df-3528-bd77-b0613bb6d094,SESCO,II.1.1,Mendoza,AR-M,annual,2021,naphtha combustion consumption by to the public,701.1825127999999,TJ,CO2,73300.0,kg/TJ,51396678.18823999,kg -a99ed95c-e488-3bc8-8e9d-bdb685ee6467,SESCO,II.1.1,Mendoza,AR-M,annual,2021,naphtha combustion consumption by to the public,701.1825127999999,TJ,CH4,3.0,kg/TJ,2103.5475383999997,kg -4fa9a642-fe52-3f06-94a2-57c0eae6f1bc,SESCO,II.1.1,Mendoza,AR-M,annual,2021,naphtha combustion consumption by to the public,701.1825127999999,TJ,N2O,0.6,kg/TJ,420.70950767999994,kg -d5ff1958-7146-38fd-a766-b39add1edea2,SESCO,II.1.1,Misiones,AR-N,annual,2021,naphtha combustion consumption by to the public,288.29474519999997,TJ,CO2,73300.0,kg/TJ,21132004.823159996,kg -00cc6c28-29d9-36fa-9119-2a0e9d6333f1,SESCO,II.1.1,Misiones,AR-N,annual,2021,naphtha combustion consumption by to the public,288.29474519999997,TJ,CH4,3.0,kg/TJ,864.8842355999999,kg -95fabb60-c29f-3ccf-a374-0f51eb5116c5,SESCO,II.1.1,Misiones,AR-N,annual,2021,naphtha combustion consumption by to the public,288.29474519999997,TJ,N2O,0.6,kg/TJ,172.97684711999997,kg -461e0e79-b629-3b0b-8d64-8015a09bbbda,SESCO,II.1.1,Neuquén,AR-Q,annual,2021,naphtha combustion consumption by to the public,292.7272656,TJ,CO2,73300.0,kg/TJ,21456908.56848,kg -bea17ff5-fe9f-3530-af64-ff39f5b2dad1,SESCO,II.1.1,Neuquén,AR-Q,annual,2021,naphtha combustion consumption by to the public,292.7272656,TJ,CH4,3.0,kg/TJ,878.1817968,kg -acb6e50d-4ef6-3007-92be-b9ec615f828f,SESCO,II.1.1,Neuquén,AR-Q,annual,2021,naphtha combustion consumption by to the public,292.7272656,TJ,N2O,0.6,kg/TJ,175.63635936,kg -076f3dee-d8ef-32f3-9bf4-d43c6a96be2c,SESCO,II.1.1,Rio Negro,AR-R,annual,2021,naphtha combustion consumption by to the public,173.53166599999997,TJ,CO2,73300.0,kg/TJ,12719871.117799997,kg -ba8c995c-1bbe-3dd0-922f-e318005d2687,SESCO,II.1.1,Rio Negro,AR-R,annual,2021,naphtha combustion consumption by to the public,173.53166599999997,TJ,CH4,3.0,kg/TJ,520.5949979999999,kg -c5827444-4f25-3c47-87d5-516fb9907afa,SESCO,II.1.1,Rio Negro,AR-R,annual,2021,naphtha combustion consumption by to the public,173.53166599999997,TJ,N2O,0.6,kg/TJ,104.11899959999998,kg -1e57bba9-a7b3-3e41-bcba-45f4cc46f71a,SESCO,II.1.1,Salta,AR-A,annual,2021,naphtha combustion consumption by to the public,137.7699708,TJ,CO2,73300.0,kg/TJ,10098538.85964,kg -23635ace-0636-3333-a5e6-73b9cea95959,SESCO,II.1.1,Salta,AR-A,annual,2021,naphtha combustion consumption by to the public,137.7699708,TJ,CH4,3.0,kg/TJ,413.30991240000003,kg -c1192597-61cc-350f-80c3-f6350e6a39b0,SESCO,II.1.1,Salta,AR-A,annual,2021,naphtha combustion consumption by to the public,137.7699708,TJ,N2O,0.6,kg/TJ,82.66198248,kg -34b07ff6-8e99-3a04-981a-302e6a8c4cfb,SESCO,II.1.1,San Juan,AR-J,annual,2021,naphtha combustion consumption by to the public,107.0740132,TJ,CO2,73300.0,kg/TJ,7848525.16756,kg -755b521f-548d-34ec-98f2-3fb0463f8af5,SESCO,II.1.1,San Juan,AR-J,annual,2021,naphtha combustion consumption by to the public,107.0740132,TJ,CH4,3.0,kg/TJ,321.2220396,kg -28b20ba2-48ab-3a66-96b5-0ad3e41d27ba,SESCO,II.1.1,San Juan,AR-J,annual,2021,naphtha combustion consumption by to the public,107.0740132,TJ,N2O,0.6,kg/TJ,64.24440792,kg -88c62043-36ce-3941-9b8c-62aeb08c99c7,SESCO,II.1.1,San Luis,AR-D,annual,2021,naphtha combustion consumption by to the public,117.0245692,TJ,CO2,73300.0,kg/TJ,8577900.92236,kg -609a2762-58ad-37f0-812c-e8dedcc46e49,SESCO,II.1.1,San Luis,AR-D,annual,2021,naphtha combustion consumption by to the public,117.0245692,TJ,CH4,3.0,kg/TJ,351.07370760000003,kg -15e69d32-26c3-3d6a-ab3f-073cae686b35,SESCO,II.1.1,San Luis,AR-D,annual,2021,naphtha combustion consumption by to the public,117.0245692,TJ,N2O,0.6,kg/TJ,70.21474152,kg -fb334e10-e2bf-3dcc-8c92-3e766232701c,SESCO,II.1.1,Santa Fe,AR-S,annual,2021,naphtha combustion consumption by to the public,1556.6589499999998,TJ,CO2,73300.0,kg/TJ,114103101.03499998,kg -dfb49093-2cb4-3341-bbf6-45eee61d3e74,SESCO,II.1.1,Santa Fe,AR-S,annual,2021,naphtha combustion consumption by to the public,1556.6589499999998,TJ,CH4,3.0,kg/TJ,4669.976849999999,kg -855beea3-148b-34c4-8df0-291a81997402,SESCO,II.1.1,Santa Fe,AR-S,annual,2021,naphtha combustion consumption by to the public,1556.6589499999998,TJ,N2O,0.6,kg/TJ,933.9953699999999,kg -f0638cf9-baa1-3e27-b430-1db069b5f8bb,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2021,naphtha combustion consumption by to the public,167.651792,TJ,CO2,73300.0,kg/TJ,12288876.3536,kg -67b49d69-cb5c-3cd0-ac59-7eb64318e487,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2021,naphtha combustion consumption by to the public,167.651792,TJ,CH4,3.0,kg/TJ,502.955376,kg -86e72524-b1b5-3591-b3d4-101d926a394e,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2021,naphtha combustion consumption by to the public,167.651792,TJ,N2O,0.6,kg/TJ,100.59107519999999,kg -b23f7d6a-5f5d-3b9c-9f9a-20add5d8ec0d,SESCO,II.1.1,Tucuman,AR-T,annual,2021,naphtha combustion consumption by to the public,278.79648719999994,TJ,CO2,73300.0,kg/TJ,20435782.511759996,kg -9d613c0d-7b14-3dc4-9704-973f5c0a6915,SESCO,II.1.1,Tucuman,AR-T,annual,2021,naphtha combustion consumption by to the public,278.79648719999994,TJ,CH4,3.0,kg/TJ,836.3894615999998,kg -028f64b0-19e6-3d07-a6f0-08b72cabd11a,SESCO,II.1.1,Tucuman,AR-T,annual,2021,naphtha combustion consumption by to the public,278.79648719999994,TJ,N2O,0.6,kg/TJ,167.27789231999995,kg -85abdded-d752-3a11-98a9-358bfa22f2b3,SESCO,I.3.1,Buenos Aires,AR-B,annual,2021,naphtha combustion consumption by petrochemical industries,43.269842,TJ,CO2,73300.0,kg/TJ,3171679.4186,kg -d4448ec4-6182-3d11-a43b-ae10c47a579d,SESCO,I.3.1,Buenos Aires,AR-B,annual,2021,naphtha combustion consumption by petrochemical industries,43.269842,TJ,CH4,3.0,kg/TJ,129.809526,kg -dee93808-3e04-3d18-810b-1536f7af153c,SESCO,I.3.1,Buenos Aires,AR-B,annual,2021,naphtha combustion consumption by petrochemical industries,43.269842,TJ,N2O,0.6,kg/TJ,25.961905199999997,kg -2b6aceaf-fa67-3177-8eec-5a9623b3bfd1,SESCO,I.3.1,Misiones,AR-N,annual,2021,naphtha combustion consumption by petrochemical industries,1.5679663999999998,TJ,CO2,73300.0,kg/TJ,114931.93711999999,kg -db935951-4733-3b27-bba5-5ab4905e051b,SESCO,I.3.1,Misiones,AR-N,annual,2021,naphtha combustion consumption by petrochemical industries,1.5679663999999998,TJ,CH4,3.0,kg/TJ,4.7038991999999995,kg -c9d8110c-26ab-3c7d-82c5-2b3c0c540570,SESCO,I.3.1,Misiones,AR-N,annual,2021,naphtha combustion consumption by petrochemical industries,1.5679663999999998,TJ,N2O,0.6,kg/TJ,0.9407798399999998,kg -916f72d2-9242-3d3b-89dd-bbbcdc4a6563,SESCO,I.3.1,Buenos Aires,AR-B,annual,2021,naphtha combustion consumption by petrochemical industries,13.538786799999999,TJ,CO2,73300.0,kg/TJ,992393.0724399999,kg -5a421d91-9258-3788-b27d-7354c5f5ce6e,SESCO,I.3.1,Buenos Aires,AR-B,annual,2021,naphtha combustion consumption by petrochemical industries,13.538786799999999,TJ,CH4,3.0,kg/TJ,40.6163604,kg -1c9a6a89-f431-3586-8cc0-55ce05cff8c2,SESCO,I.3.1,Buenos Aires,AR-B,annual,2021,naphtha combustion consumption by petrochemical industries,13.538786799999999,TJ,N2O,0.6,kg/TJ,8.12327208,kg -71e8e884-a42b-3428-8c0b-c4b86c5f9526,SESCO,I.3.1,Capital Federal,AR-C,annual,2021,naphtha combustion consumption by petrochemical industries,0.4522979999999999,TJ,CO2,73300.0,kg/TJ,33153.4434,kg -f0d57f14-fa61-3e79-9c1b-94dbe4092821,SESCO,I.3.1,Capital Federal,AR-C,annual,2021,naphtha combustion consumption by petrochemical industries,0.4522979999999999,TJ,CH4,3.0,kg/TJ,1.3568939999999998,kg -39301f71-8e0a-32a0-8caf-40a9a73d40e4,SESCO,I.3.1,Capital Federal,AR-C,annual,2021,naphtha combustion consumption by petrochemical industries,0.4522979999999999,TJ,N2O,0.6,kg/TJ,0.2713787999999999,kg -4bb6147d-f654-3a57-b702-e4c3288e75fc,SESCO,I.3.1,Entre Rios,AR-E,annual,2021,naphtha combustion consumption by petrochemical industries,1.3568939999999998,TJ,CO2,73300.0,kg/TJ,99460.33019999998,kg -0dae010b-70f2-31a3-a0b0-2df1e6faac24,SESCO,I.3.1,Entre Rios,AR-E,annual,2021,naphtha combustion consumption by petrochemical industries,1.3568939999999998,TJ,CH4,3.0,kg/TJ,4.070682,kg -c6aa254c-810d-341c-9d76-81033ee90801,SESCO,I.3.1,Entre Rios,AR-E,annual,2021,naphtha combustion consumption by petrochemical industries,1.3568939999999998,TJ,N2O,0.6,kg/TJ,0.8141363999999999,kg -71d1a3b2-05b9-33e8-8936-f3c0015b1cce,SESCO,I.3.1,La Pampa,AR-L,annual,2021,naphtha combustion consumption by petrochemical industries,0.24122559999999998,TJ,CO2,73300.0,kg/TJ,17681.836479999998,kg -e86a9d71-6c57-3a39-8a7e-7b8ac7597a24,SESCO,I.3.1,La Pampa,AR-L,annual,2021,naphtha combustion consumption by petrochemical industries,0.24122559999999998,TJ,CH4,3.0,kg/TJ,0.7236768,kg -8544a506-7379-3226-b152-b24f43a03283,SESCO,I.3.1,La Pampa,AR-L,annual,2021,naphtha combustion consumption by petrochemical industries,0.24122559999999998,TJ,N2O,0.6,kg/TJ,0.14473535999999998,kg -92a933c5-a741-3d31-91a1-93e1225fd5ae,SESCO,I.3.1,Misiones,AR-N,annual,2021,naphtha combustion consumption by petrochemical industries,0.4221448,TJ,CO2,73300.0,kg/TJ,30943.21384,kg -3ad56d56-65bc-3060-9d70-13f3cfe048d2,SESCO,I.3.1,Misiones,AR-N,annual,2021,naphtha combustion consumption by petrochemical industries,0.4221448,TJ,CH4,3.0,kg/TJ,1.2664344,kg -641d7cf0-0ed5-3415-a239-3e4fbd28f382,SESCO,I.3.1,Misiones,AR-N,annual,2021,naphtha combustion consumption by petrochemical industries,0.4221448,TJ,N2O,0.6,kg/TJ,0.25328688,kg -0d4f0342-7889-3637-9fce-fc98ed67081d,SESCO,I.3.1,Rio Negro,AR-R,annual,2021,naphtha combustion consumption by petrochemical industries,1.1156684,TJ,CO2,73300.0,kg/TJ,81778.49372,kg -3bd1e48a-075c-3c44-be81-7a106200248c,SESCO,I.3.1,Rio Negro,AR-R,annual,2021,naphtha combustion consumption by petrochemical industries,1.1156684,TJ,CH4,3.0,kg/TJ,3.3470052,kg -67be1a7e-164f-399e-ba3f-e01103ed53cc,SESCO,I.3.1,Rio Negro,AR-R,annual,2021,naphtha combustion consumption by petrochemical industries,1.1156684,TJ,N2O,0.6,kg/TJ,0.6694010399999999,kg -fbefa9a4-0566-3e2d-b164-4bf5c105071a,SESCO,I.3.1,San Juan,AR-J,annual,2021,naphtha combustion consumption by petrochemical industries,3.3168519999999995,TJ,CO2,73300.0,kg/TJ,243125.25159999996,kg -28821e3e-427f-3451-ad2f-0997512fdc4f,SESCO,I.3.1,San Juan,AR-J,annual,2021,naphtha combustion consumption by petrochemical industries,3.3168519999999995,TJ,CH4,3.0,kg/TJ,9.950555999999999,kg -af6d599d-ef90-3cdc-be77-988ac89bbef1,SESCO,I.3.1,San Juan,AR-J,annual,2021,naphtha combustion consumption by petrochemical industries,3.3168519999999995,TJ,N2O,0.6,kg/TJ,1.9901111999999996,kg -8cf81375-9efe-3836-98e5-6ca6a0e13f49,SESCO,I.3.1,San Luis,AR-D,annual,2021,naphtha combustion consumption by petrochemical industries,0.7538299999999999,TJ,CO2,73300.0,kg/TJ,55255.738999999994,kg -04f8ebfd-c404-3860-9f4b-06f513642e87,SESCO,I.3.1,San Luis,AR-D,annual,2021,naphtha combustion consumption by petrochemical industries,0.7538299999999999,TJ,CH4,3.0,kg/TJ,2.26149,kg -ac76e3a5-3fd4-34bf-a48c-b2ef5573ab08,SESCO,I.3.1,San Luis,AR-D,annual,2021,naphtha combustion consumption by petrochemical industries,0.7538299999999999,TJ,N2O,0.6,kg/TJ,0.4522979999999999,kg -6a62b146-04b4-37ba-8a38-9ebd9b0f7e10,SESCO,I.3.1,Santa Fe,AR-S,annual,2021,naphtha combustion consumption by petrochemical industries,0.4522979999999999,TJ,CO2,73300.0,kg/TJ,33153.4434,kg -3aba18d1-be1c-33ec-9e87-9fa2300a836e,SESCO,I.3.1,Santa Fe,AR-S,annual,2021,naphtha combustion consumption by petrochemical industries,0.4522979999999999,TJ,CH4,3.0,kg/TJ,1.3568939999999998,kg -34aff987-a63c-31bd-8e8d-e180991edd0f,SESCO,I.3.1,Santa Fe,AR-S,annual,2021,naphtha combustion consumption by petrochemical industries,0.4522979999999999,TJ,N2O,0.6,kg/TJ,0.2713787999999999,kg -2d78174f-0594-325b-98c8-8a8f99f9250b,SESCO,I.3.1,Tucuman,AR-T,annual,2021,naphtha combustion consumption by petrochemical industries,0.8141364,TJ,CO2,73300.0,kg/TJ,59676.19812,kg -2f3f97c3-ce63-37a3-aa06-20eda39092c7,SESCO,I.3.1,Tucuman,AR-T,annual,2021,naphtha combustion consumption by petrochemical industries,0.8141364,TJ,CH4,3.0,kg/TJ,2.4424092,kg -2c4dc7ad-ce44-3e9c-b35f-d9179f43f5bc,SESCO,I.3.1,Tucuman,AR-T,annual,2021,naphtha combustion consumption by petrochemical industries,0.8141364,TJ,N2O,0.6,kg/TJ,0.48848183999999994,kg -97b2c48e-e5fb-3d9b-bf3d-b37a951040d2,SESCO,II.5.1,Buenos Aires,AR-B,annual,2021,naphtha combustion consumption by agriculture machines,62.09719854799999,TJ,CO2,73300.0,kg/TJ,4551724.653568399,kg -41b126aa-35ff-3cad-b78f-da9284303028,SESCO,II.5.1,Buenos Aires,AR-B,annual,2021,naphtha combustion consumption by agriculture machines,62.09719854799999,TJ,CH4,3.0,kg/TJ,186.29159564399995,kg -963b4adb-45c9-3aae-bf45-d6c89e180a29,SESCO,II.5.1,Buenos Aires,AR-B,annual,2021,naphtha combustion consumption by agriculture machines,62.09719854799999,TJ,N2O,0.6,kg/TJ,37.25831912879999,kg -4bea29f0-9e2d-3caa-b6d6-beb6528672af,SESCO,II.5.1,Capital Federal,AR-C,annual,2021,naphtha combustion consumption by agriculture machines,17.2699739212,TJ,CO2,73300.0,kg/TJ,1265889.08842396,kg -c17c88cb-5171-3aac-ada0-aabc3348b143,SESCO,II.5.1,Capital Federal,AR-C,annual,2021,naphtha combustion consumption by agriculture machines,17.2699739212,TJ,CH4,3.0,kg/TJ,51.809921763599995,kg -196d8da2-06b8-3035-b85c-018c55eb2e12,SESCO,II.5.1,Capital Federal,AR-C,annual,2021,naphtha combustion consumption by agriculture machines,17.2699739212,TJ,N2O,0.6,kg/TJ,10.361984352719999,kg -a9435e00-9e98-37d2-9730-54f6e20a4211,SESCO,II.5.1,Córdoba,AR-X,annual,2021,naphtha combustion consumption by agriculture machines,9.749343696399999,TJ,CO2,73300.0,kg/TJ,714626.8929461199,kg -da9f7fce-8b0b-3ac7-836f-661f044bfa74,SESCO,II.5.1,Córdoba,AR-X,annual,2021,naphtha combustion consumption by agriculture machines,9.749343696399999,TJ,CH4,3.0,kg/TJ,29.248031089199998,kg -15a3d49c-16ec-3451-baa5-92edc28c088e,SESCO,II.5.1,Córdoba,AR-X,annual,2021,naphtha combustion consumption by agriculture machines,9.749343696399999,TJ,N2O,0.6,kg/TJ,5.849606217839999,kg -1417b8f2-370f-3fc0-bcdc-3c67b9fb37e2,SESCO,II.5.1,Santa Fe,AR-S,annual,2021,naphtha combustion consumption by agriculture machines,245.9103217648,TJ,CO2,73300.0,kg/TJ,18025226.585359838,kg -6a3f4b0e-05fa-3bc9-b8c5-f4ee575ce700,SESCO,II.5.1,Santa Fe,AR-S,annual,2021,naphtha combustion consumption by agriculture machines,245.9103217648,TJ,CH4,3.0,kg/TJ,737.7309652944,kg -d37fbb58-d073-32bd-81a4-1395605e6fb8,SESCO,II.5.1,Santa Fe,AR-S,annual,2021,naphtha combustion consumption by agriculture machines,245.9103217648,TJ,N2O,0.6,kg/TJ,147.54619305888,kg -716f236e-4242-37a8-8376-d6b78497caf8,SESCO,II.5.1,Tucuman,AR-T,annual,2021,naphtha combustion consumption by agriculture machines,0.5397422799999999,TJ,CO2,73300.0,kg/TJ,39563.109123999995,kg -315b63b4-ca47-3194-90c8-f58dc018c830,SESCO,II.5.1,Tucuman,AR-T,annual,2021,naphtha combustion consumption by agriculture machines,0.5397422799999999,TJ,CH4,3.0,kg/TJ,1.6192268399999996,kg -9c3ef36e-5dab-32e5-ad0a-31575da6cc4c,SESCO,II.5.1,Tucuman,AR-T,annual,2021,naphtha combustion consumption by agriculture machines,0.5397422799999999,TJ,N2O,0.6,kg/TJ,0.3238453679999999,kg -ec014aa6-08b5-3422-b173-3d0488bcd51a,SESCO,II.5.1,Buenos Aires,AR-B,annual,2021,naphtha combustion consumption by agriculture machines,14.898726273199998,TJ,CO2,73300.0,kg/TJ,1092076.6358255597,kg -71900f75-d33f-38b4-8064-01623dd1866a,SESCO,II.5.1,Buenos Aires,AR-B,annual,2021,naphtha combustion consumption by agriculture machines,14.898726273199998,TJ,CH4,3.0,kg/TJ,44.69617881959999,kg -b0b35c89-9f79-3e6f-8509-a31fe2fc98a6,SESCO,II.5.1,Buenos Aires,AR-B,annual,2021,naphtha combustion consumption by agriculture machines,14.898726273199998,TJ,N2O,0.6,kg/TJ,8.939235763919998,kg -361eaedc-1861-3e7b-8aef-bc10666a736c,SESCO,II.5.1,Capital Federal,AR-C,annual,2021,naphtha combustion consumption by agriculture machines,3.7658633011999996,TJ,CO2,73300.0,kg/TJ,276037.77997796,kg -bfda4d48-70c4-3eda-bb84-2278f0e4b81f,SESCO,II.5.1,Capital Federal,AR-C,annual,2021,naphtha combustion consumption by agriculture machines,3.7658633011999996,TJ,CH4,3.0,kg/TJ,11.297589903599999,kg -e7a1985f-bc38-3d64-9fd0-a23862fc8400,SESCO,II.5.1,Capital Federal,AR-C,annual,2021,naphtha combustion consumption by agriculture machines,3.7658633011999996,TJ,N2O,0.6,kg/TJ,2.2595179807199997,kg -af6940bf-ac37-3646-8f55-93a69a2a0be4,SESCO,II.5.1,Córdoba,AR-X,annual,2021,naphtha combustion consumption by agriculture machines,2.2503634692,TJ,CO2,73300.0,kg/TJ,164951.64229236,kg -d1c8aa51-28b1-3113-85d1-5cd8c3da8422,SESCO,II.5.1,Córdoba,AR-X,annual,2021,naphtha combustion consumption by agriculture machines,2.2503634692,TJ,CH4,3.0,kg/TJ,6.7510904076,kg -a163ce0e-e008-36b9-a439-7956b310ecb8,SESCO,II.5.1,Córdoba,AR-X,annual,2021,naphtha combustion consumption by agriculture machines,2.2503634692,TJ,N2O,0.6,kg/TJ,1.3502180815199998,kg -b6b39469-8fff-393c-8acd-f5290555ad50,SESCO,II.5.1,Santa Fe,AR-S,annual,2021,naphtha combustion consumption by agriculture machines,25.65961937,TJ,CO2,73300.0,kg/TJ,1880850.0998210001,kg -fa68b291-58bd-3577-9d49-f84710a430de,SESCO,II.5.1,Santa Fe,AR-S,annual,2021,naphtha combustion consumption by agriculture machines,25.65961937,TJ,CH4,3.0,kg/TJ,76.97885811,kg -0b2e8c89-e9db-3e68-beec-0940a11ee0c6,SESCO,II.5.1,Santa Fe,AR-S,annual,2021,naphtha combustion consumption by agriculture machines,25.65961937,TJ,N2O,0.6,kg/TJ,15.395771622,kg -182bc227-b87a-3d67-8a3d-b148c52c8889,SESCO,II.1.1,Buenos Aires,AR-B,annual,2021,naphtha combustion consumption by to the public,4325.785218308399,TJ,CO2,73300.0,kg/TJ,317080056.50200564,kg -cfbdeab6-fe2e-302e-b5e6-376120dc305a,SESCO,II.1.1,Buenos Aires,AR-B,annual,2021,naphtha combustion consumption by to the public,4325.785218308399,TJ,CH4,3.0,kg/TJ,12977.355654925195,kg -1ac83422-63d8-394b-9e8d-8be3cdc042ab,SESCO,II.1.1,Buenos Aires,AR-B,annual,2021,naphtha combustion consumption by to the public,4325.785218308399,TJ,N2O,0.6,kg/TJ,2595.471130985039,kg -0314aa3b-997e-379a-a9c4-b863cb3ebc38,SESCO,II.1.1,Capital Federal,AR-C,annual,2021,naphtha combustion consumption by to the public,272.98928241199997,TJ,CO2,73300.0,kg/TJ,20010114.4007996,kg -4d990f82-90d9-3f8f-af34-774bad298e2b,SESCO,II.1.1,Capital Federal,AR-C,annual,2021,naphtha combustion consumption by to the public,272.98928241199997,TJ,CH4,3.0,kg/TJ,818.9678472359999,kg -b64f96b3-ebec-37b6-a6e3-bf285089a7aa,SESCO,II.1.1,Capital Federal,AR-C,annual,2021,naphtha combustion consumption by to the public,272.98928241199997,TJ,N2O,0.6,kg/TJ,163.79356944719999,kg -1587d9d5-1758-3ab4-81d8-5b48d66083de,SESCO,II.1.1,Catamarca,AR-K,annual,2021,naphtha combustion consumption by to the public,42.3767343692,TJ,CO2,73300.0,kg/TJ,3106214.6292623603,kg -56be1296-31b4-38b9-a589-0e69cd510b08,SESCO,II.1.1,Catamarca,AR-K,annual,2021,naphtha combustion consumption by to the public,42.3767343692,TJ,CH4,3.0,kg/TJ,127.13020310760001,kg -5e4a6536-b8cf-3dcd-8531-f9b1c071befb,SESCO,II.1.1,Catamarca,AR-K,annual,2021,naphtha combustion consumption by to the public,42.3767343692,TJ,N2O,0.6,kg/TJ,25.42604062152,kg -ec3ac94b-a2a9-3601-b002-671dcb5e83e2,SESCO,II.1.1,Chaco,AR-H,annual,2021,naphtha combustion consumption by to the public,45.405140858,TJ,CO2,73300.0,kg/TJ,3328196.8248914,kg -cfaf6d24-b3f0-35f0-87bd-1f63e164dc80,SESCO,II.1.1,Chaco,AR-H,annual,2021,naphtha combustion consumption by to the public,45.405140858,TJ,CH4,3.0,kg/TJ,136.215422574,kg -c82320b9-a97a-3ecc-8061-c8e8909de025,SESCO,II.1.1,Chaco,AR-H,annual,2021,naphtha combustion consumption by to the public,45.405140858,TJ,N2O,0.6,kg/TJ,27.2430845148,kg -f404d215-70e2-3139-b0f7-ffc5fa393c67,SESCO,II.1.1,Chubut,AR-U,annual,2021,naphtha combustion consumption by to the public,301.45004360239994,TJ,CO2,73300.0,kg/TJ,22096288.196055915,kg -f93e0ccc-f817-3512-bdd4-ce464c5bfa18,SESCO,II.1.1,Chubut,AR-U,annual,2021,naphtha combustion consumption by to the public,301.45004360239994,TJ,CH4,3.0,kg/TJ,904.3501308071998,kg -8a23d9a6-6f7c-392e-93b3-c6aa757fb523,SESCO,II.1.1,Chubut,AR-U,annual,2021,naphtha combustion consumption by to the public,301.45004360239994,TJ,N2O,0.6,kg/TJ,180.87002616143997,kg -bfe226b3-11b5-372c-b623-76d4a37686c4,SESCO,II.1.1,Corrientes,AR-W,annual,2021,naphtha combustion consumption by to the public,277.86427086879996,TJ,CO2,73300.0,kg/TJ,20367451.054683037,kg -ea7275e2-109c-3219-ba33-a4051cd4027e,SESCO,II.1.1,Corrientes,AR-W,annual,2021,naphtha combustion consumption by to the public,277.86427086879996,TJ,CH4,3.0,kg/TJ,833.5928126063999,kg -ac7d1e8e-a916-3f74-9b26-5de86e5dc3a0,SESCO,II.1.1,Corrientes,AR-W,annual,2021,naphtha combustion consumption by to the public,277.86427086879996,TJ,N2O,0.6,kg/TJ,166.71856252127998,kg -e53c8a11-287f-3e6b-9656-a866d06f5a6e,SESCO,II.1.1,Córdoba,AR-X,annual,2021,naphtha combustion consumption by to the public,669.5237333707998,TJ,CO2,73300.0,kg/TJ,49076089.65607963,kg -76c6af4e-9770-30e1-98de-0a018c1e88f8,SESCO,II.1.1,Córdoba,AR-X,annual,2021,naphtha combustion consumption by to the public,669.5237333707998,TJ,CH4,3.0,kg/TJ,2008.5712001123995,kg -cfe72f64-c044-310a-af94-1fd4fc1e0d17,SESCO,II.1.1,Córdoba,AR-X,annual,2021,naphtha combustion consumption by to the public,669.5237333707998,TJ,N2O,0.6,kg/TJ,401.7142400224799,kg -541722f7-5236-3a24-a578-75df00baecdf,SESCO,II.1.1,Entre Rios,AR-E,annual,2021,naphtha combustion consumption by to the public,548.0869067212,TJ,CO2,73300.0,kg/TJ,40174770.26266396,kg -402e4daf-0382-3650-b3bb-71ad5fc0c2e7,SESCO,II.1.1,Entre Rios,AR-E,annual,2021,naphtha combustion consumption by to the public,548.0869067212,TJ,CH4,3.0,kg/TJ,1644.2607201636,kg -d7e55f72-8a7d-3fdc-9666-4d41b438d44c,SESCO,II.1.1,Entre Rios,AR-E,annual,2021,naphtha combustion consumption by to the public,548.0869067212,TJ,N2O,0.6,kg/TJ,328.85214403272,kg -38985e5e-1f35-3f18-ae84-e6cf3d6c43ea,SESCO,II.1.1,Jujuy,AR-Y,annual,2021,naphtha combustion consumption by to the public,44.8724544268,TJ,CO2,73300.0,kg/TJ,3289150.90948444,kg -4da0248e-c3f8-3869-9243-2bb8419b2870,SESCO,II.1.1,Jujuy,AR-Y,annual,2021,naphtha combustion consumption by to the public,44.8724544268,TJ,CH4,3.0,kg/TJ,134.61736328039999,kg -9b371e7d-5862-39a3-b9c5-0d51d974704c,SESCO,II.1.1,Jujuy,AR-Y,annual,2021,naphtha combustion consumption by to the public,44.8724544268,TJ,N2O,0.6,kg/TJ,26.923472656079998,kg -8d86fc8d-55d3-3dc8-8526-4750f4dba02b,SESCO,II.1.1,La Pampa,AR-L,annual,2021,naphtha combustion consumption by to the public,348.4286085896,TJ,CO2,73300.0,kg/TJ,25539817.00961768,kg -26275ba5-8505-3c77-8987-7fecedea5745,SESCO,II.1.1,La Pampa,AR-L,annual,2021,naphtha combustion consumption by to the public,348.4286085896,TJ,CH4,3.0,kg/TJ,1045.2858257688,kg -45426c88-b675-3fa8-96d5-584260f2742b,SESCO,II.1.1,La Pampa,AR-L,annual,2021,naphtha combustion consumption by to the public,348.4286085896,TJ,N2O,0.6,kg/TJ,209.05716515376,kg -5613e417-7266-3b09-a7bb-f7bff50aa1bc,SESCO,II.1.1,Mendoza,AR-M,annual,2021,naphtha combustion consumption by to the public,82.83871038519999,TJ,CO2,73300.0,kg/TJ,6072077.471235159,kg -345c8302-0452-39f0-8fd6-8ac00e5238bb,SESCO,II.1.1,Mendoza,AR-M,annual,2021,naphtha combustion consumption by to the public,82.83871038519999,TJ,CH4,3.0,kg/TJ,248.51613115559996,kg -0febf3c6-05b0-3a08-a539-10f71ad1aa0b,SESCO,II.1.1,Mendoza,AR-M,annual,2021,naphtha combustion consumption by to the public,82.83871038519999,TJ,N2O,0.6,kg/TJ,49.70322623111999,kg -9e7b4dff-eb12-3bbf-bb58-8ce1ba006524,SESCO,II.1.1,Neuquén,AR-Q,annual,2021,naphtha combustion consumption by to the public,374.6623448876,TJ,CO2,73300.0,kg/TJ,27462749.88026108,kg -0123777f-d40e-3457-9531-9d7a4bba161d,SESCO,II.1.1,Neuquén,AR-Q,annual,2021,naphtha combustion consumption by to the public,374.6623448876,TJ,CH4,3.0,kg/TJ,1123.9870346628,kg -954cbae3-cdbb-3aa2-9641-329b5659f0fa,SESCO,II.1.1,Neuquén,AR-Q,annual,2021,naphtha combustion consumption by to the public,374.6623448876,TJ,N2O,0.6,kg/TJ,224.79740693256,kg -aec6aeb5-ee36-3292-91a2-64abb569c1f5,SESCO,II.1.1,Rio Negro,AR-R,annual,2021,naphtha combustion consumption by to the public,1252.1922596568,TJ,CO2,73300.0,kg/TJ,91785692.63284343,kg -0dbe6947-3291-317b-9f7a-21b74a145722,SESCO,II.1.1,Rio Negro,AR-R,annual,2021,naphtha combustion consumption by to the public,1252.1922596568,TJ,CH4,3.0,kg/TJ,3756.5767789703996,kg -176cd096-2a80-3c3c-9c14-dbdebabaf034,SESCO,II.1.1,Rio Negro,AR-R,annual,2021,naphtha combustion consumption by to the public,1252.1922596568,TJ,N2O,0.6,kg/TJ,751.3153557940799,kg -70e3f5d0-bec0-3f9d-a544-6cc6edf6ff02,SESCO,II.1.1,San Juan,AR-J,annual,2021,naphtha combustion consumption by to the public,210.1615019812,TJ,CO2,73300.0,kg/TJ,15404838.095221959,kg -a7db2472-9cb1-3def-bc9c-f6454cb4bf5e,SESCO,II.1.1,San Juan,AR-J,annual,2021,naphtha combustion consumption by to the public,210.1615019812,TJ,CH4,3.0,kg/TJ,630.4845059436,kg -5a231f14-b20c-32fd-8d5c-bafb2d3df4fa,SESCO,II.1.1,San Juan,AR-J,annual,2021,naphtha combustion consumption by to the public,210.1615019812,TJ,N2O,0.6,kg/TJ,126.09690118871998,kg -3fa0f74a-6b9d-341c-a83a-95fbb68b301d,SESCO,II.1.1,San Luis,AR-D,annual,2021,naphtha combustion consumption by to the public,76.149343578,TJ,CO2,73300.0,kg/TJ,5581746.8842674,kg -bf1d32d1-9a6c-3847-8082-9781d3f566f9,SESCO,II.1.1,San Luis,AR-D,annual,2021,naphtha combustion consumption by to the public,76.149343578,TJ,CH4,3.0,kg/TJ,228.44803073399999,kg -dd3e7f9f-27f3-341c-894a-5bc23c2675ee,SESCO,II.1.1,San Luis,AR-D,annual,2021,naphtha combustion consumption by to the public,76.149343578,TJ,N2O,0.6,kg/TJ,45.689606146799996,kg -5043689b-d5f7-31b8-8d8e-2cf9fa27da78,SESCO,II.1.1,Santa Fe,AR-S,annual,2021,naphtha combustion consumption by to the public,945.5553530499999,TJ,CO2,73300.0,kg/TJ,69309207.378565,kg -aa593915-9f47-3f82-9816-10b3c4630a39,SESCO,II.1.1,Santa Fe,AR-S,annual,2021,naphtha combustion consumption by to the public,945.5553530499999,TJ,CH4,3.0,kg/TJ,2836.6660591499995,kg -d28296a0-c8df-3d28-b2ea-1f10c9174cd2,SESCO,II.1.1,Santa Fe,AR-S,annual,2021,naphtha combustion consumption by to the public,945.5553530499999,TJ,N2O,0.6,kg/TJ,567.3332118299999,kg -531d9203-669a-3f7f-80e2-538dd9c40689,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2021,naphtha combustion consumption by to the public,62.79524512799999,TJ,CO2,73300.0,kg/TJ,4602891.467882399,kg -a030de0f-5f3b-3bb7-a9f6-2da3fe0a9424,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2021,naphtha combustion consumption by to the public,62.79524512799999,TJ,CH4,3.0,kg/TJ,188.385735384,kg -12ee221c-1198-3d99-b645-a6c97eb3a2ac,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2021,naphtha combustion consumption by to the public,62.79524512799999,TJ,N2O,0.6,kg/TJ,37.67714707679999,kg -dba2e948-93a1-3256-a6b0-c82e4d02eeaa,SESCO,II.1.1,Buenos Aires,AR-B,annual,2021,naphtha combustion consumption by to the public,687.3524762412,TJ,CO2,73300.0,kg/TJ,50382936.50847995,kg -3913eb27-e7f6-339c-8b44-0c51a1dfaacb,SESCO,II.1.1,Buenos Aires,AR-B,annual,2021,naphtha combustion consumption by to the public,687.3524762412,TJ,CH4,3.0,kg/TJ,2062.0574287236,kg -c879db8f-21c4-36ce-aa4a-b445f66500ae,SESCO,II.1.1,Buenos Aires,AR-B,annual,2021,naphtha combustion consumption by to the public,687.3524762412,TJ,N2O,0.6,kg/TJ,412.41148574472,kg -158e4e37-9502-326c-98a2-d9731049a154,SESCO,II.1.1,Capital Federal,AR-C,annual,2021,naphtha combustion consumption by to the public,43.889279187599996,TJ,CO2,73300.0,kg/TJ,3217084.16445108,kg -360d5c4b-4cb7-3c9b-80bb-f732b71e7272,SESCO,II.1.1,Capital Federal,AR-C,annual,2021,naphtha combustion consumption by to the public,43.889279187599996,TJ,CH4,3.0,kg/TJ,131.6678375628,kg -f9ee3ed0-c4c5-3550-840a-c7a1de77aabd,SESCO,II.1.1,Capital Federal,AR-C,annual,2021,naphtha combustion consumption by to the public,43.889279187599996,TJ,N2O,0.6,kg/TJ,26.33356751256,kg -579fbd92-5174-39e1-87ed-bdc3a0af6e86,SESCO,II.1.1,Catamarca,AR-K,annual,2021,naphtha combustion consumption by to the public,3.4409625711999996,TJ,CO2,73300.0,kg/TJ,252222.55646895999,kg -d22fe120-4dd2-37da-9a90-580d3c9e90ab,SESCO,II.1.1,Catamarca,AR-K,annual,2021,naphtha combustion consumption by to the public,3.4409625711999996,TJ,CH4,3.0,kg/TJ,10.322887713599998,kg -78e8316a-d13c-392d-84c0-02c3a37c8306,SESCO,II.1.1,Catamarca,AR-K,annual,2021,naphtha combustion consumption by to the public,3.4409625711999996,TJ,N2O,0.6,kg/TJ,2.0645775427199995,kg -ecb3675c-06b2-3048-a0b6-47afd12458fd,SESCO,II.1.1,Chaco,AR-H,annual,2021,naphtha combustion consumption by to the public,4.8163404827999985,TJ,CO2,73300.0,kg/TJ,353037.7573892399,kg -ce41f9ec-1643-3a9f-b552-0c5b8402866a,SESCO,II.1.1,Chaco,AR-H,annual,2021,naphtha combustion consumption by to the public,4.8163404827999985,TJ,CH4,3.0,kg/TJ,14.449021448399996,kg -e1f8f382-cec6-3c95-a8e6-76b4f233d212,SESCO,II.1.1,Chaco,AR-H,annual,2021,naphtha combustion consumption by to the public,4.8163404827999985,TJ,N2O,0.6,kg/TJ,2.889804289679999,kg -293e74e5-60c6-36dd-879c-3c3be7120cd1,SESCO,II.1.1,Chubut,AR-U,annual,2021,naphtha combustion consumption by to the public,45.0644398512,TJ,CO2,73300.0,kg/TJ,3303223.44109296,kg -88e6d596-de0d-31f0-a69c-f07e3a02df6a,SESCO,II.1.1,Chubut,AR-U,annual,2021,naphtha combustion consumption by to the public,45.0644398512,TJ,CH4,3.0,kg/TJ,135.1933195536,kg -f1770461-1c62-3ea1-871b-2196e62cc208,SESCO,II.1.1,Chubut,AR-U,annual,2021,naphtha combustion consumption by to the public,45.0644398512,TJ,N2O,0.6,kg/TJ,27.03866391072,kg -1465341a-4a2a-34fa-8d3f-b9bd555bae2f,SESCO,II.1.1,Corrientes,AR-W,annual,2021,naphtha combustion consumption by to the public,28.520162994399996,TJ,CO2,73300.0,kg/TJ,2090527.9474895196,kg -4f7d7cc2-b393-31bf-86d5-81ed631067ab,SESCO,II.1.1,Corrientes,AR-W,annual,2021,naphtha combustion consumption by to the public,28.520162994399996,TJ,CH4,3.0,kg/TJ,85.56048898319999,kg -85257494-7f62-354a-b5fa-944ac003442a,SESCO,II.1.1,Corrientes,AR-W,annual,2021,naphtha combustion consumption by to the public,28.520162994399996,TJ,N2O,0.6,kg/TJ,17.112097796639997,kg -7d5902d3-dd47-3cc0-822c-a2c119e3fe0a,SESCO,II.1.1,Córdoba,AR-X,annual,2021,naphtha combustion consumption by to the public,112.28807439079998,TJ,CO2,73300.0,kg/TJ,8230715.852845638,kg -2a593001-1f7e-3723-ac5b-494e03035558,SESCO,II.1.1,Córdoba,AR-X,annual,2021,naphtha combustion consumption by to the public,112.28807439079998,TJ,CH4,3.0,kg/TJ,336.86422317239993,kg -19c07112-c704-38ed-af0c-6f8926ab8d79,SESCO,II.1.1,Córdoba,AR-X,annual,2021,naphtha combustion consumption by to the public,112.28807439079998,TJ,N2O,0.6,kg/TJ,67.37284463447999,kg -eee70fa7-961d-3440-ba8a-6af10fc22ebb,SESCO,II.1.1,Entre Rios,AR-E,annual,2021,naphtha combustion consumption by to the public,103.9705855496,TJ,CO2,73300.0,kg/TJ,7621043.92078568,kg -95529424-9101-368a-9835-ea92a7bc8249,SESCO,II.1.1,Entre Rios,AR-E,annual,2021,naphtha combustion consumption by to the public,103.9705855496,TJ,CH4,3.0,kg/TJ,311.9117566488,kg -7fdbaa3d-7e31-34f3-b02f-9670d9de90a0,SESCO,II.1.1,Entre Rios,AR-E,annual,2021,naphtha combustion consumption by to the public,103.9705855496,TJ,N2O,0.6,kg/TJ,62.38235132976,kg -d0e73821-1e8a-33f4-b1af-9e9e72507fa1,SESCO,II.1.1,Jujuy,AR-Y,annual,2021,naphtha combustion consumption by to the public,1.0101322,TJ,CO2,73300.0,kg/TJ,74042.69025999999,kg -660a94a3-8bac-384f-b22f-eb4a9ba06691,SESCO,II.1.1,Jujuy,AR-Y,annual,2021,naphtha combustion consumption by to the public,1.0101322,TJ,CH4,3.0,kg/TJ,3.0303965999999996,kg -d64cc085-f464-3626-9c99-cc4ad19f0e8a,SESCO,II.1.1,Jujuy,AR-Y,annual,2021,naphtha combustion consumption by to the public,1.0101322,TJ,N2O,0.6,kg/TJ,0.60607932,kg -c4623f88-4696-39c8-b6f5-eea700e87c02,SESCO,II.1.1,La Pampa,AR-L,annual,2021,naphtha combustion consumption by to the public,80.8642185428,TJ,CO2,73300.0,kg/TJ,5927347.21918724,kg -4fb279d3-4cf2-3f6a-9ec2-00484e1a30fb,SESCO,II.1.1,La Pampa,AR-L,annual,2021,naphtha combustion consumption by to the public,80.8642185428,TJ,CH4,3.0,kg/TJ,242.5926556284,kg -0bdb413c-b439-3431-9581-2bedb12e349c,SESCO,II.1.1,La Pampa,AR-L,annual,2021,naphtha combustion consumption by to the public,80.8642185428,TJ,N2O,0.6,kg/TJ,48.51853112568,kg -867b370c-bde1-3d14-b93e-51e14f8cc186,SESCO,II.1.1,Mendoza,AR-M,annual,2021,naphtha combustion consumption by to the public,11.3109779244,TJ,CO2,73300.0,kg/TJ,829094.6818585199,kg -0c3fb5c7-0af3-3599-8247-844c9092d6aa,SESCO,II.1.1,Mendoza,AR-M,annual,2021,naphtha combustion consumption by to the public,11.3109779244,TJ,CH4,3.0,kg/TJ,33.9329337732,kg -d4662a36-3412-303e-bdee-294139786b9e,SESCO,II.1.1,Mendoza,AR-M,annual,2021,naphtha combustion consumption by to the public,11.3109779244,TJ,N2O,0.6,kg/TJ,6.786586754639999,kg -18b8ebbc-e1db-3059-aa71-1bc9a55587ba,SESCO,II.1.1,Neuquén,AR-Q,annual,2021,naphtha combustion consumption by to the public,114.36149888239999,TJ,CO2,73300.0,kg/TJ,8382697.868079919,kg -57d3b3cb-b7eb-3283-9198-98a588071704,SESCO,II.1.1,Neuquén,AR-Q,annual,2021,naphtha combustion consumption by to the public,114.36149888239999,TJ,CH4,3.0,kg/TJ,343.08449664719996,kg -c6936cf4-11b0-3dca-9599-e21d791d3d8c,SESCO,II.1.1,Neuquén,AR-Q,annual,2021,naphtha combustion consumption by to the public,114.36149888239999,TJ,N2O,0.6,kg/TJ,68.61689932943999,kg -c9d3350e-ffe1-3269-81ca-ff5a83e6986b,SESCO,II.1.1,Rio Negro,AR-R,annual,2021,naphtha combustion consumption by to the public,196.54947305839997,TJ,CO2,73300.0,kg/TJ,14407076.375180718,kg -47cdef4d-7577-371e-9784-3065cfb67150,SESCO,II.1.1,Rio Negro,AR-R,annual,2021,naphtha combustion consumption by to the public,196.54947305839997,TJ,CH4,3.0,kg/TJ,589.6484191751999,kg -aad3c454-0cc3-38eb-a813-18f56a1462b3,SESCO,II.1.1,Rio Negro,AR-R,annual,2021,naphtha combustion consumption by to the public,196.54947305839997,TJ,N2O,0.6,kg/TJ,117.92968383503998,kg -c2025ae3-606b-3617-b13c-2647ca77af1d,SESCO,II.1.1,San Juan,AR-J,annual,2021,naphtha combustion consumption by to the public,24.0393673212,TJ,CO2,73300.0,kg/TJ,1762085.62464396,kg -c66ed398-16d0-368a-ade5-d3232d8f795f,SESCO,II.1.1,San Juan,AR-J,annual,2021,naphtha combustion consumption by to the public,24.0393673212,TJ,CH4,3.0,kg/TJ,72.1181019636,kg -3676823b-c9d5-3713-8bf0-e82b91bf0df9,SESCO,II.1.1,San Juan,AR-J,annual,2021,naphtha combustion consumption by to the public,24.0393673212,TJ,N2O,0.6,kg/TJ,14.42362039272,kg -3be86fd5-4080-34da-aae2-9804c3dbdb5b,SESCO,II.1.1,San Luis,AR-D,annual,2021,naphtha combustion consumption by to the public,16.617458673199998,TJ,CO2,73300.0,kg/TJ,1218059.7207455598,kg -a232bc17-61fc-3e93-8d9c-5587e5d981da,SESCO,II.1.1,San Luis,AR-D,annual,2021,naphtha combustion consumption by to the public,16.617458673199998,TJ,CH4,3.0,kg/TJ,49.852376019599994,kg -a8fd8383-fe85-3fa5-909d-180b1b6a626d,SESCO,II.1.1,San Luis,AR-D,annual,2021,naphtha combustion consumption by to the public,16.617458673199998,TJ,N2O,0.6,kg/TJ,9.970475203919998,kg -569c56f7-cb0f-336c-8487-c64063b6d180,SESCO,II.1.1,Santa Fe,AR-S,annual,2021,naphtha combustion consumption by to the public,193.45011609,TJ,CO2,73300.0,kg/TJ,14179893.509397,kg -fd5460c8-26c3-3143-8f29-1c08676a55f3,SESCO,II.1.1,Santa Fe,AR-S,annual,2021,naphtha combustion consumption by to the public,193.45011609,TJ,CH4,3.0,kg/TJ,580.35034827,kg -24abe7b1-04a1-3e0b-b9ec-55b29a8add1d,SESCO,II.1.1,Santa Fe,AR-S,annual,2021,naphtha combustion consumption by to the public,193.45011609,TJ,N2O,0.6,kg/TJ,116.070069654,kg -4bca2c68-cc14-3dc4-b535-b5c84fc2ae1d,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2021,naphtha combustion consumption by to the public,6.945819773199999,TJ,CO2,73300.0,kg/TJ,509128.58937555994,kg -2233c308-b356-3431-b0ec-6e2e7683d638,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2021,naphtha combustion consumption by to the public,6.945819773199999,TJ,CH4,3.0,kg/TJ,20.837459319599997,kg -addd4caa-2dd5-3f6e-9770-3632b110b578,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2021,naphtha combustion consumption by to the public,6.945819773199999,TJ,N2O,0.6,kg/TJ,4.16749186392,kg -376e72fb-901a-36cd-9aa0-f3338c4e8ed4,SESCO,II.5.1,Buenos Aires,AR-B,annual,2021,naphtha combustion consumption by agriculture machines,4.8546651999999995,TJ,CO2,73300.0,kg/TJ,355846.95915999997,kg -9461cbdb-4aeb-3fac-bbfd-b01097a76112,SESCO,II.5.1,Buenos Aires,AR-B,annual,2021,naphtha combustion consumption by agriculture machines,4.8546651999999995,TJ,CH4,3.0,kg/TJ,14.563995599999998,kg -5bca2417-831f-3306-8275-14715e560caf,SESCO,II.5.1,Buenos Aires,AR-B,annual,2021,naphtha combustion consumption by agriculture machines,4.8546651999999995,TJ,N2O,0.6,kg/TJ,2.9127991199999994,kg -24881235-9ed2-388f-b316-e24e24a2787e,SESCO,II.5.1,Entre Rios,AR-E,annual,2021,naphtha combustion consumption by agriculture machines,0.33168519999999996,TJ,CO2,73300.0,kg/TJ,24312.525159999997,kg -3e17d31c-d808-3a03-bf57-54680aa7d359,SESCO,II.5.1,Entre Rios,AR-E,annual,2021,naphtha combustion consumption by agriculture machines,0.33168519999999996,TJ,CH4,3.0,kg/TJ,0.9950555999999999,kg -8d544e9c-b254-3fcc-a008-14da166831c9,SESCO,II.5.1,Entre Rios,AR-E,annual,2021,naphtha combustion consumption by agriculture machines,0.33168519999999996,TJ,N2O,0.6,kg/TJ,0.19901111999999996,kg -b77caf0b-64f5-3cee-b4f8-52d1a47a838c,SESCO,II.5.1,Salta,AR-A,annual,2021,naphtha combustion consumption by agriculture machines,0.6332171999999999,TJ,CO2,73300.0,kg/TJ,46414.820759999995,kg -bc50f79e-372d-3bd5-87c3-91cbd2166db0,SESCO,II.5.1,Salta,AR-A,annual,2021,naphtha combustion consumption by agriculture machines,0.6332171999999999,TJ,CH4,3.0,kg/TJ,1.8996515999999999,kg -1924dcd0-cbd4-333d-ba2f-df56ca4a82e2,SESCO,II.5.1,Salta,AR-A,annual,2021,naphtha combustion consumption by agriculture machines,0.6332171999999999,TJ,N2O,0.6,kg/TJ,0.37993031999999993,kg -bae2ae94-083e-31fd-b3f6-0660963bcee4,SESCO,II.5.1,Santa Fe,AR-S,annual,2021,naphtha combustion consumption by agriculture machines,10.5837732,TJ,CO2,73300.0,kg/TJ,775790.5755599999,kg -55a54330-a0c3-32bf-b95e-167c2926e2a4,SESCO,II.5.1,Santa Fe,AR-S,annual,2021,naphtha combustion consumption by agriculture machines,10.5837732,TJ,CH4,3.0,kg/TJ,31.7513196,kg -4f2752c0-873d-3e75-9e42-643e9d75918e,SESCO,II.5.1,Santa Fe,AR-S,annual,2021,naphtha combustion consumption by agriculture machines,10.5837732,TJ,N2O,0.6,kg/TJ,6.35026392,kg -b3d521b4-7521-3487-a9ea-c1a1dfc61e68,SESCO,II.5.1,Santa Fe,AR-S,annual,2021,naphtha combustion consumption by agriculture machines,0.7236768,TJ,CO2,73300.0,kg/TJ,53045.50944,kg -4ed1390a-4f35-3697-8799-dff33060eb69,SESCO,II.5.1,Santa Fe,AR-S,annual,2021,naphtha combustion consumption by agriculture machines,0.7236768,TJ,CH4,3.0,kg/TJ,2.1710304000000002,kg -6fcb93f9-3856-3f15-a2a7-dcdc50ccd391,SESCO,II.5.1,Santa Fe,AR-S,annual,2021,naphtha combustion consumption by agriculture machines,0.7236768,TJ,N2O,0.6,kg/TJ,0.43420608,kg -a69eeaf8-79ac-36a6-8c4a-f58e55ce5f0c,SESCO,II.1.1,Buenos Aires,AR-B,annual,2021,naphtha combustion consumption by to the public,33520.7395292,TJ,CO2,73300.0,kg/TJ,2457070207.49036,kg -7790084b-af6e-3bca-8688-cc9b73260e9f,SESCO,II.1.1,Buenos Aires,AR-B,annual,2021,naphtha combustion consumption by to the public,33520.7395292,TJ,CH4,3.0,kg/TJ,100562.2185876,kg -419b50c3-74c8-3f73-9ae6-099d08e1e0cc,SESCO,II.1.1,Buenos Aires,AR-B,annual,2021,naphtha combustion consumption by to the public,33520.7395292,TJ,N2O,0.6,kg/TJ,20112.44371752,kg -334e672a-c76e-3395-80b2-91f4d152fe08,SESCO,II.1.1,Capital Federal,AR-C,annual,2021,naphtha combustion consumption by to the public,6631.955114399999,TJ,CO2,73300.0,kg/TJ,486122309.8855199,kg -382db30c-1e52-313a-8462-f7ea5a205497,SESCO,II.1.1,Capital Federal,AR-C,annual,2021,naphtha combustion consumption by to the public,6631.955114399999,TJ,CH4,3.0,kg/TJ,19895.865343199996,kg -b019cfc0-2e12-3582-bb37-ca46f03636b0,SESCO,II.1.1,Capital Federal,AR-C,annual,2021,naphtha combustion consumption by to the public,6631.955114399999,TJ,N2O,0.6,kg/TJ,3979.173068639999,kg -9828d9da-a641-3462-8b8f-576876b0e382,SESCO,II.1.1,Catamarca,AR-K,annual,2021,naphtha combustion consumption by to the public,706.8814676,TJ,CO2,73300.0,kg/TJ,51814411.57508,kg -1858bac1-e7dd-3aad-8301-bcc5776eef54,SESCO,II.1.1,Catamarca,AR-K,annual,2021,naphtha combustion consumption by to the public,706.8814676,TJ,CH4,3.0,kg/TJ,2120.6444027999996,kg -26c9ef58-57ab-32f7-878e-1d5cbb1b398b,SESCO,II.1.1,Catamarca,AR-K,annual,2021,naphtha combustion consumption by to the public,706.8814676,TJ,N2O,0.6,kg/TJ,424.12888055999997,kg -c784d8ee-4fc9-3c5f-8f65-9009d4cc0283,SESCO,II.1.1,Chaco,AR-H,annual,2021,naphtha combustion consumption by to the public,2116.9958656,TJ,CO2,73300.0,kg/TJ,155175796.94847998,kg -3306f42f-3394-3339-8b7d-4a6ebeb9b042,SESCO,II.1.1,Chaco,AR-H,annual,2021,naphtha combustion consumption by to the public,2116.9958656,TJ,CH4,3.0,kg/TJ,6350.9875968,kg -327dc6f6-efde-35e9-ab8a-16ab02d7153b,SESCO,II.1.1,Chaco,AR-H,annual,2021,naphtha combustion consumption by to the public,2116.9958656,TJ,N2O,0.6,kg/TJ,1270.19751936,kg -102f2632-fa3e-3016-bb08-a89d3e68fca6,SESCO,II.1.1,Chubut,AR-U,annual,2021,naphtha combustion consumption by to the public,3044.71937,TJ,CO2,73300.0,kg/TJ,223177929.82099998,kg -82ea6809-c915-3c83-af13-3bb9c031ba3c,SESCO,II.1.1,Chubut,AR-U,annual,2021,naphtha combustion consumption by to the public,3044.71937,TJ,CH4,3.0,kg/TJ,9134.15811,kg -4902adbe-2776-3912-be6b-6871d7392526,SESCO,II.1.1,Chubut,AR-U,annual,2021,naphtha combustion consumption by to the public,3044.71937,TJ,N2O,0.6,kg/TJ,1826.831622,kg -aaee4da4-dd80-3b87-8e3c-0f30bda5e79b,SESCO,II.1.1,Corrientes,AR-W,annual,2021,naphtha combustion consumption by to the public,1994.1517287999998,TJ,CO2,73300.0,kg/TJ,146171321.72103998,kg -6493b96a-f078-33d6-bbd3-32583a4c97b8,SESCO,II.1.1,Corrientes,AR-W,annual,2021,naphtha combustion consumption by to the public,1994.1517287999998,TJ,CH4,3.0,kg/TJ,5982.4551864,kg -f1a964f0-f839-3c4b-86a8-2aa0631bb1c0,SESCO,II.1.1,Corrientes,AR-W,annual,2021,naphtha combustion consumption by to the public,1994.1517287999998,TJ,N2O,0.6,kg/TJ,1196.4910372799998,kg -fa818848-c16e-3d78-b504-a9dd0aa9de7e,SESCO,II.1.1,Córdoba,AR-X,annual,2021,naphtha combustion consumption by to the public,8738.487819599999,TJ,CO2,73300.0,kg/TJ,640531157.17668,kg -3a18a13c-20c1-34d0-a76d-f212a82bfe0e,SESCO,II.1.1,Córdoba,AR-X,annual,2021,naphtha combustion consumption by to the public,8738.487819599999,TJ,CH4,3.0,kg/TJ,26215.463458799997,kg -412eef76-69d1-39d7-b9b4-b9b4e54be61e,SESCO,II.1.1,Córdoba,AR-X,annual,2021,naphtha combustion consumption by to the public,8738.487819599999,TJ,N2O,0.6,kg/TJ,5243.092691759999,kg -b14a8076-02c9-33e6-80a4-fb145a317d34,SESCO,II.1.1,Entre Rios,AR-E,annual,2021,naphtha combustion consumption by to the public,2755.9421736,TJ,CO2,73300.0,kg/TJ,202010561.32488,kg -6f71151e-915c-3aa3-8059-751700889684,SESCO,II.1.1,Entre Rios,AR-E,annual,2021,naphtha combustion consumption by to the public,2755.9421736,TJ,CH4,3.0,kg/TJ,8267.8265208,kg -57a7cbfb-1834-36da-8fdf-0c51773e13ca,SESCO,II.1.1,Entre Rios,AR-E,annual,2021,naphtha combustion consumption by to the public,2755.9421736,TJ,N2O,0.6,kg/TJ,1653.5653041599999,kg -e79d66b0-b126-3b64-86c5-6c5e795c337d,SESCO,II.1.1,Formosa,AR-P,annual,2021,naphtha combustion consumption by to the public,834.3993503999999,TJ,CO2,73300.0,kg/TJ,61161472.38431999,kg -0b4845c1-6cce-3d01-87b6-d941f61be6ca,SESCO,II.1.1,Formosa,AR-P,annual,2021,naphtha combustion consumption by to the public,834.3993503999999,TJ,CH4,3.0,kg/TJ,2503.1980511999996,kg -34d994c4-ef7e-32b6-9ff7-d3683f636de7,SESCO,II.1.1,Formosa,AR-P,annual,2021,naphtha combustion consumption by to the public,834.3993503999999,TJ,N2O,0.6,kg/TJ,500.6396102399999,kg -60d42368-045e-3e4e-a30c-73b8f5b07063,SESCO,II.1.1,Jujuy,AR-Y,annual,2021,naphtha combustion consumption by to the public,1428.0857052,TJ,CO2,73300.0,kg/TJ,104678682.19116,kg -81c8ceaa-5966-30ab-9fde-92bf5fff9e8e,SESCO,II.1.1,Jujuy,AR-Y,annual,2021,naphtha combustion consumption by to the public,1428.0857052,TJ,CH4,3.0,kg/TJ,4284.257115599999,kg -35c6302b-4a61-32ae-bd04-f9f0a08e3822,SESCO,II.1.1,Jujuy,AR-Y,annual,2021,naphtha combustion consumption by to the public,1428.0857052,TJ,N2O,0.6,kg/TJ,856.8514231199999,kg -11ed7872-a6ea-3086-a9fe-6320df1c77cc,SESCO,II.1.1,La Pampa,AR-L,annual,2021,naphtha combustion consumption by to the public,1392.8064611999998,TJ,CO2,73300.0,kg/TJ,102092713.60595998,kg -0a451299-2bd6-360d-a950-a8b9d1af6245,SESCO,II.1.1,La Pampa,AR-L,annual,2021,naphtha combustion consumption by to the public,1392.8064611999998,TJ,CH4,3.0,kg/TJ,4178.4193835999995,kg -02ef44f4-7980-3e61-bd97-561e132b29b8,SESCO,II.1.1,La Pampa,AR-L,annual,2021,naphtha combustion consumption by to the public,1392.8064611999998,TJ,N2O,0.6,kg/TJ,835.6838767199998,kg -3fd1216e-a26c-36ae-90ac-cb5f5e8bb977,SESCO,II.1.1,La Rioja,AR-F,annual,2021,naphtha combustion consumption by to the public,878.8451671999999,TJ,CO2,73300.0,kg/TJ,64419350.75575999,kg -4a193043-9ce6-3a1f-8f74-9c0cb7e9b4d8,SESCO,II.1.1,La Rioja,AR-F,annual,2021,naphtha combustion consumption by to the public,878.8451671999999,TJ,CH4,3.0,kg/TJ,2636.5355015999994,kg -e21cbdc1-b274-3304-af1d-fd64aec782e0,SESCO,II.1.1,La Rioja,AR-F,annual,2021,naphtha combustion consumption by to the public,878.8451671999999,TJ,N2O,0.6,kg/TJ,527.3071003199999,kg -0905569e-64e3-3b12-beb9-0aa421999d11,SESCO,II.1.1,Mendoza,AR-M,annual,2021,naphtha combustion consumption by to the public,4440.2396192,TJ,CO2,73300.0,kg/TJ,325469564.08735996,kg -5b4c3669-8aa5-308f-98c5-83decff21de9,SESCO,II.1.1,Mendoza,AR-M,annual,2021,naphtha combustion consumption by to the public,4440.2396192,TJ,CH4,3.0,kg/TJ,13320.718857599999,kg -85ce99de-82aa-30fd-a5b6-5da2d5095fc0,SESCO,II.1.1,Mendoza,AR-M,annual,2021,naphtha combustion consumption by to the public,4440.2396192,TJ,N2O,0.6,kg/TJ,2664.1437715199995,kg -e7edcce9-8857-3ce8-ac27-097715a846db,SESCO,II.1.1,Misiones,AR-N,annual,2021,naphtha combustion consumption by to the public,3389.5815184,TJ,CO2,73300.0,kg/TJ,248456325.29871997,kg -03ff0900-db0e-378d-9b73-5fc710a70f05,SESCO,II.1.1,Misiones,AR-N,annual,2021,naphtha combustion consumption by to the public,3389.5815184,TJ,CH4,3.0,kg/TJ,10168.744555199999,kg -839c412d-7a2f-3703-9df5-199d311f153b,SESCO,II.1.1,Misiones,AR-N,annual,2021,naphtha combustion consumption by to the public,3389.5815184,TJ,N2O,0.6,kg/TJ,2033.7489110399997,kg -3c16f5a8-12a0-39c9-b5ce-dfaa12108d53,SESCO,II.1.1,Neuquén,AR-Q,annual,2021,naphtha combustion consumption by to the public,2977.8395723999997,TJ,CO2,73300.0,kg/TJ,218275640.65692,kg -f0f1191f-92fb-3798-b850-36655570fa15,SESCO,II.1.1,Neuquén,AR-Q,annual,2021,naphtha combustion consumption by to the public,2977.8395723999997,TJ,CH4,3.0,kg/TJ,8933.518717199999,kg -7f4c1f8b-dd5b-3546-9a0e-f1cfa10a1333,SESCO,II.1.1,Neuquén,AR-Q,annual,2021,naphtha combustion consumption by to the public,2977.8395723999997,TJ,N2O,0.6,kg/TJ,1786.7037434399997,kg -a5686558-7230-3c00-b302-eed4838eaa15,SESCO,II.1.1,Rio Negro,AR-R,annual,2021,naphtha combustion consumption by to the public,2876.4343608,TJ,CO2,73300.0,kg/TJ,210842638.64664,kg -4a91c1b9-0ca9-3ff7-9d4a-aa8f9b8a1eea,SESCO,II.1.1,Rio Negro,AR-R,annual,2021,naphtha combustion consumption by to the public,2876.4343608,TJ,CH4,3.0,kg/TJ,8629.3030824,kg -128687f1-16ea-3d84-b600-48e18c1c0d45,SESCO,II.1.1,Rio Negro,AR-R,annual,2021,naphtha combustion consumption by to the public,2876.4343608,TJ,N2O,0.6,kg/TJ,1725.8606164799999,kg -4f7f9e8f-39f6-3583-ae2d-5d2fdebdd4ec,SESCO,II.1.1,Salta,AR-A,annual,2021,naphtha combustion consumption by to the public,3062.0574599999995,TJ,CO2,73300.0,kg/TJ,224448811.81799996,kg -fcd671ce-3b4c-39ab-80d6-dd1ac1f04108,SESCO,II.1.1,Salta,AR-A,annual,2021,naphtha combustion consumption by to the public,3062.0574599999995,TJ,CH4,3.0,kg/TJ,9186.172379999998,kg -e48ae49d-ba0a-3f07-bf59-366306d202f2,SESCO,II.1.1,Salta,AR-A,annual,2021,naphtha combustion consumption by to the public,3062.0574599999995,TJ,N2O,0.6,kg/TJ,1837.2344759999996,kg -7b89bb60-ae0d-39f8-9c9b-6a45e459e2ab,SESCO,II.1.1,San Juan,AR-J,annual,2021,naphtha combustion consumption by to the public,1510.976852,TJ,CO2,73300.0,kg/TJ,110754603.2516,kg -301ac65c-88bb-33a3-b68c-f7aa15e15533,SESCO,II.1.1,San Juan,AR-J,annual,2021,naphtha combustion consumption by to the public,1510.976852,TJ,CH4,3.0,kg/TJ,4532.930556,kg -27f8e22e-6e85-346a-9361-2712441c865c,SESCO,II.1.1,San Juan,AR-J,annual,2021,naphtha combustion consumption by to the public,1510.976852,TJ,N2O,0.6,kg/TJ,906.5861112,kg -d5fb5747-98bf-34f1-9141-4306f6d9f70b,SESCO,II.1.1,San Luis,AR-D,annual,2021,naphtha combustion consumption by to the public,1205.4947828,TJ,CO2,73300.0,kg/TJ,88362767.57924,kg -3f7c6d12-f46f-3808-8584-d17da45c9f10,SESCO,II.1.1,San Luis,AR-D,annual,2021,naphtha combustion consumption by to the public,1205.4947828,TJ,CH4,3.0,kg/TJ,3616.4843484,kg -631fdecd-8663-3a8d-9a67-c8bc16a19bdb,SESCO,II.1.1,San Luis,AR-D,annual,2021,naphtha combustion consumption by to the public,1205.4947828,TJ,N2O,0.6,kg/TJ,723.29686968,kg -4dc65484-188b-35e4-bf8b-70e1873ed215,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2021,naphtha combustion consumption by to the public,1738.0907544,TJ,CO2,73300.0,kg/TJ,127402052.29752,kg -884d28a7-2792-3bd4-a10b-6731f302dad9,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2021,naphtha combustion consumption by to the public,1738.0907544,TJ,CH4,3.0,kg/TJ,5214.2722631999995,kg -4d550300-a89b-3546-932f-e768837f7127,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2021,naphtha combustion consumption by to the public,1738.0907544,TJ,N2O,0.6,kg/TJ,1042.8544526399999,kg -167d1895-04bc-36cb-bb22-d528a4640e0a,SESCO,II.1.1,Santa Fe,AR-S,annual,2021,naphtha combustion consumption by to the public,6299.5763908,TJ,CO2,73300.0,kg/TJ,461758949.44563997,kg -1813c59c-56a0-3f1f-b0a6-8345a0f13a48,SESCO,II.1.1,Santa Fe,AR-S,annual,2021,naphtha combustion consumption by to the public,6299.5763908,TJ,CH4,3.0,kg/TJ,18898.7291724,kg -b4dcd68b-5302-3684-8280-7c54416604d1,SESCO,II.1.1,Santa Fe,AR-S,annual,2021,naphtha combustion consumption by to the public,6299.5763908,TJ,N2O,0.6,kg/TJ,3779.7458344799998,kg -d75f97dd-51d6-3d27-b870-84c0f4ffef66,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2021,naphtha combustion consumption by to the public,1339.8272888,TJ,CO2,73300.0,kg/TJ,98209340.26903999,kg -45e7c851-2fdd-34f9-b952-650670eb700b,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2021,naphtha combustion consumption by to the public,1339.8272888,TJ,CH4,3.0,kg/TJ,4019.4818663999995,kg -49603685-0fa1-37b5-b8fa-ca0acfb1b718,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2021,naphtha combustion consumption by to the public,1339.8272888,TJ,N2O,0.6,kg/TJ,803.8963732799999,kg -24f4f02a-00c5-3d65-a7ab-4301a5ac1aab,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2021,naphtha combustion consumption by to the public,1405.6215711999998,TJ,CO2,73300.0,kg/TJ,103032061.16895999,kg -89e6e340-d2df-3039-b09f-7e46034cce51,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2021,naphtha combustion consumption by to the public,1405.6215711999998,TJ,CH4,3.0,kg/TJ,4216.8647136,kg -6186a3ae-9e5f-3e99-abc1-6844f2bb8c11,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2021,naphtha combustion consumption by to the public,1405.6215711999998,TJ,N2O,0.6,kg/TJ,843.3729427199999,kg -666367b0-8f50-3b6c-8082-49d5609e5589,SESCO,II.1.1,Tucuman,AR-T,annual,2021,naphtha combustion consumption by to the public,2583.5864824,TJ,CO2,73300.0,kg/TJ,189376889.15992,kg -6f7b4b2e-ffa1-357f-8ef3-9aeb14a49c96,SESCO,II.1.1,Tucuman,AR-T,annual,2021,naphtha combustion consumption by to the public,2583.5864824,TJ,CH4,3.0,kg/TJ,7750.7594472,kg -549d39d4-64cd-350c-9afd-ac56d2089ec3,SESCO,II.1.1,Tucuman,AR-T,annual,2021,naphtha combustion consumption by to the public,2583.5864824,TJ,N2O,0.6,kg/TJ,1550.1518894399999,kg -4fe43d49-cc45-3a60-aa00-7de035beab50,SESCO,II.1.1,Buenos Aires,AR-B,annual,2021,naphtha combustion consumption by to the public,13922.6973424,TJ,CO2,73300.0,kg/TJ,1020533715.1979201,kg -a037d9d9-2d82-3bd8-8d1b-e965826f9007,SESCO,II.1.1,Buenos Aires,AR-B,annual,2021,naphtha combustion consumption by to the public,13922.6973424,TJ,CH4,3.0,kg/TJ,41768.0920272,kg -ad3cf7c3-4782-3e88-a223-f94a98bcf267,SESCO,II.1.1,Buenos Aires,AR-B,annual,2021,naphtha combustion consumption by to the public,13922.6973424,TJ,N2O,0.6,kg/TJ,8353.61840544,kg -c6f6548f-b78c-3f6d-9c4a-b323d89f66b3,SESCO,II.1.1,Capital Federal,AR-C,annual,2021,naphtha combustion consumption by to the public,3471.7489883999997,TJ,CO2,73300.0,kg/TJ,254479200.84971997,kg -3c60f548-3f69-34fd-9501-357183077c63,SESCO,II.1.1,Capital Federal,AR-C,annual,2021,naphtha combustion consumption by to the public,3471.7489883999997,TJ,CH4,3.0,kg/TJ,10415.2469652,kg -0d1e357f-4ebe-3773-9309-8f07d9fe0687,SESCO,II.1.1,Capital Federal,AR-C,annual,2021,naphtha combustion consumption by to the public,3471.7489883999997,TJ,N2O,0.6,kg/TJ,2083.04939304,kg -1426d929-b14d-3011-9078-3dff84c52d30,SESCO,II.1.1,Catamarca,AR-K,annual,2021,naphtha combustion consumption by to the public,272.3437024,TJ,CO2,73300.0,kg/TJ,19962793.38592,kg -976d9846-a71b-3abd-9f68-598ff19640b5,SESCO,II.1.1,Catamarca,AR-K,annual,2021,naphtha combustion consumption by to the public,272.3437024,TJ,CH4,3.0,kg/TJ,817.0311072,kg -da34b59c-e73e-36c0-b5a5-e3a1023f9f8b,SESCO,II.1.1,Catamarca,AR-K,annual,2021,naphtha combustion consumption by to the public,272.3437024,TJ,N2O,0.6,kg/TJ,163.40622144,kg -8133883a-58b6-3831-8d0c-084776449cab,SESCO,II.1.1,Chaco,AR-H,annual,2021,naphtha combustion consumption by to the public,663.0085615999999,TJ,CO2,73300.0,kg/TJ,48598527.56527999,kg -d3159f4e-eeb6-3adb-a9ac-7b5e8896b577,SESCO,II.1.1,Chaco,AR-H,annual,2021,naphtha combustion consumption by to the public,663.0085615999999,TJ,CH4,3.0,kg/TJ,1989.0256847999997,kg -71af4474-20c4-3364-98a9-89dbea6cfda0,SESCO,II.1.1,Chaco,AR-H,annual,2021,naphtha combustion consumption by to the public,663.0085615999999,TJ,N2O,0.6,kg/TJ,397.8051369599999,kg -60a70990-e848-3c49-8ba7-47738c2287a1,SESCO,II.1.1,Chubut,AR-U,annual,2021,naphtha combustion consumption by to the public,1090.9729292,TJ,CO2,73300.0,kg/TJ,79968315.71035999,kg -a55276d9-229d-3ca6-9200-5505a19c5c66,SESCO,II.1.1,Chubut,AR-U,annual,2021,naphtha combustion consumption by to the public,1090.9729292,TJ,CH4,3.0,kg/TJ,3272.9187875999996,kg -b84fda9c-d00c-3d45-a8b8-3dcc849194b9,SESCO,II.1.1,Chubut,AR-U,annual,2021,naphtha combustion consumption by to the public,1090.9729292,TJ,N2O,0.6,kg/TJ,654.58375752,kg -48ebb5f2-ab8f-3802-b8c8-d7b1bf5239fc,SESCO,II.1.1,Corrientes,AR-W,annual,2021,naphtha combustion consumption by to the public,803.2209415999998,TJ,CO2,73300.0,kg/TJ,58876095.01927999,kg -4b38bd57-6d9d-3c30-ba2d-0bf5057db042,SESCO,II.1.1,Corrientes,AR-W,annual,2021,naphtha combustion consumption by to the public,803.2209415999998,TJ,CH4,3.0,kg/TJ,2409.6628247999997,kg -c7b0b411-61c5-3f8d-8a86-c89777dc65e1,SESCO,II.1.1,Corrientes,AR-W,annual,2021,naphtha combustion consumption by to the public,803.2209415999998,TJ,N2O,0.6,kg/TJ,481.93256495999987,kg -1dfe5a54-3083-36de-affd-8f59f7c75bd9,SESCO,II.1.1,Córdoba,AR-X,annual,2021,naphtha combustion consumption by to the public,3451.6669571999996,TJ,CO2,73300.0,kg/TJ,253007187.96275997,kg -85f2e496-634b-310b-b1a0-4b526e7da38e,SESCO,II.1.1,Córdoba,AR-X,annual,2021,naphtha combustion consumption by to the public,3451.6669571999996,TJ,CH4,3.0,kg/TJ,10355.0008716,kg -fda59016-974d-384b-b60a-372a6ed69cc1,SESCO,II.1.1,Córdoba,AR-X,annual,2021,naphtha combustion consumption by to the public,3451.6669571999996,TJ,N2O,0.6,kg/TJ,2071.0001743199996,kg -e6cbf0af-3059-3d42-a269-bb6a2361382c,SESCO,II.1.1,Entre Rios,AR-E,annual,2021,naphtha combustion consumption by to the public,1088.5606731999999,TJ,CO2,73300.0,kg/TJ,79791497.34555998,kg -6f83de77-d8cc-3bae-96a2-f61f8530c408,SESCO,II.1.1,Entre Rios,AR-E,annual,2021,naphtha combustion consumption by to the public,1088.5606731999999,TJ,CH4,3.0,kg/TJ,3265.6820196,kg -528b7649-bdb5-3139-b944-34e556e7419e,SESCO,II.1.1,Entre Rios,AR-E,annual,2021,naphtha combustion consumption by to the public,1088.5606731999999,TJ,N2O,0.6,kg/TJ,653.1364039199999,kg -8b091ae0-f21a-33f3-b5e4-3493d703ad83,SESCO,II.1.1,Formosa,AR-P,annual,2021,naphtha combustion consumption by to the public,218.52024039999998,TJ,CO2,73300.0,kg/TJ,16017533.621319998,kg -0f9498b4-1e27-3fac-88c9-079c3ee90639,SESCO,II.1.1,Formosa,AR-P,annual,2021,naphtha combustion consumption by to the public,218.52024039999998,TJ,CH4,3.0,kg/TJ,655.5607212,kg -fbe93ba4-8865-3854-b69c-b04a40c1c030,SESCO,II.1.1,Formosa,AR-P,annual,2021,naphtha combustion consumption by to the public,218.52024039999998,TJ,N2O,0.6,kg/TJ,131.11214424,kg -2a276733-3837-3b97-8147-74cc017832bf,SESCO,II.1.1,Jujuy,AR-Y,annual,2021,naphtha combustion consumption by to the public,411.47056719999995,TJ,CO2,73300.0,kg/TJ,30160792.575759996,kg -b564733f-9bbc-360d-96d8-6026585b8403,SESCO,II.1.1,Jujuy,AR-Y,annual,2021,naphtha combustion consumption by to the public,411.47056719999995,TJ,CH4,3.0,kg/TJ,1234.4117015999998,kg -9864ee62-ae40-3d2c-b7d4-e85547e833aa,SESCO,II.1.1,Jujuy,AR-Y,annual,2021,naphtha combustion consumption by to the public,411.47056719999995,TJ,N2O,0.6,kg/TJ,246.88234031999997,kg -af6db0cd-dc96-374f-9fa3-db25e43f3f0c,SESCO,II.1.1,La Pampa,AR-L,annual,2021,naphtha combustion consumption by to the public,909.3903587999998,TJ,CO2,73300.0,kg/TJ,66658313.300039984,kg -67393389-61c4-352e-b27b-d644c18c8634,SESCO,II.1.1,La Pampa,AR-L,annual,2021,naphtha combustion consumption by to the public,909.3903587999998,TJ,CH4,3.0,kg/TJ,2728.1710763999995,kg -df96eb5b-b3a5-3aec-b805-a0a7ab0fbe1d,SESCO,II.1.1,La Pampa,AR-L,annual,2021,naphtha combustion consumption by to the public,909.3903587999998,TJ,N2O,0.6,kg/TJ,545.6342152799999,kg -698e616c-2b29-311d-8677-5aa136fa7033,SESCO,II.1.1,La Rioja,AR-F,annual,2021,naphtha combustion consumption by to the public,376.4627019999999,TJ,CO2,73300.0,kg/TJ,27594716.056599993,kg -32baced7-c01c-3ac8-ad60-dff38019faba,SESCO,II.1.1,La Rioja,AR-F,annual,2021,naphtha combustion consumption by to the public,376.4627019999999,TJ,CH4,3.0,kg/TJ,1129.3881059999999,kg -2d4301c8-3fce-3831-a043-c615854c4350,SESCO,II.1.1,La Rioja,AR-F,annual,2021,naphtha combustion consumption by to the public,376.4627019999999,TJ,N2O,0.6,kg/TJ,225.87762119999994,kg -65d7950b-b4b0-3eaa-af1b-5dc48742243f,SESCO,II.1.1,Mendoza,AR-M,annual,2021,naphtha combustion consumption by to the public,2322.3693107999998,TJ,CO2,73300.0,kg/TJ,170229670.48163998,kg -09c34b30-3365-33f3-a0ef-7ec5f23c7fa2,SESCO,II.1.1,Mendoza,AR-M,annual,2021,naphtha combustion consumption by to the public,2322.3693107999998,TJ,CH4,3.0,kg/TJ,6967.107932399999,kg -e07f4313-ad4a-3207-ba5d-97993f3be0fd,SESCO,II.1.1,Mendoza,AR-M,annual,2021,naphtha combustion consumption by to the public,2322.3693107999998,TJ,N2O,0.6,kg/TJ,1393.4215864799999,kg -d0d26f40-9df4-37ea-a009-47f872cbfcf8,SESCO,II.1.1,Misiones,AR-N,annual,2021,naphtha combustion consumption by to the public,904.7769191999998,TJ,CO2,73300.0,kg/TJ,66320148.17735999,kg -0ff1530a-c2ea-3a8c-8da3-26515742f7a0,SESCO,II.1.1,Misiones,AR-N,annual,2021,naphtha combustion consumption by to the public,904.7769191999998,TJ,CH4,3.0,kg/TJ,2714.3307575999997,kg -c9366445-e60a-3c45-9faa-de0e5568bd98,SESCO,II.1.1,Misiones,AR-N,annual,2021,naphtha combustion consumption by to the public,904.7769191999998,TJ,N2O,0.6,kg/TJ,542.8661515199999,kg -bfc0df90-2232-3c1f-99a4-37ca4b1af4e8,SESCO,II.1.1,Neuquén,AR-Q,annual,2021,naphtha combustion consumption by to the public,1639.9119351999998,TJ,CO2,73300.0,kg/TJ,120205544.85015999,kg -884c5642-7875-3f7b-af5b-126c6ae72d43,SESCO,II.1.1,Neuquén,AR-Q,annual,2021,naphtha combustion consumption by to the public,1639.9119351999998,TJ,CH4,3.0,kg/TJ,4919.735805599999,kg -c4cfeeeb-dd49-331f-9776-62ad108d0044,SESCO,II.1.1,Neuquén,AR-Q,annual,2021,naphtha combustion consumption by to the public,1639.9119351999998,TJ,N2O,0.6,kg/TJ,983.9471611199998,kg -3efbeb7c-e108-3f70-95be-2c9bbc2a1a13,SESCO,II.1.1,Rio Negro,AR-R,annual,2021,naphtha combustion consumption by to the public,1441.8958708,TJ,CO2,73300.0,kg/TJ,105690967.32964,kg -099c4feb-ad6e-3e8f-875b-f330cec4225a,SESCO,II.1.1,Rio Negro,AR-R,annual,2021,naphtha combustion consumption by to the public,1441.8958708,TJ,CH4,3.0,kg/TJ,4325.6876124,kg -031e1716-0dea-37d7-a9fa-2b80668a1afd,SESCO,II.1.1,Rio Negro,AR-R,annual,2021,naphtha combustion consumption by to the public,1441.8958708,TJ,N2O,0.6,kg/TJ,865.13752248,kg -f0f42866-b29c-395f-8b13-5a5d6f28182f,SESCO,II.1.1,Salta,AR-A,annual,2021,naphtha combustion consumption by to the public,933.9350635999999,TJ,CO2,73300.0,kg/TJ,68457440.16188,kg -e06e1bf3-b8a6-3a18-84dc-15b62784763f,SESCO,II.1.1,Salta,AR-A,annual,2021,naphtha combustion consumption by to the public,933.9350635999999,TJ,CH4,3.0,kg/TJ,2801.8051907999998,kg -6c74ea85-1c56-3fc2-a91c-5647dc5e287f,SESCO,II.1.1,Salta,AR-A,annual,2021,naphtha combustion consumption by to the public,933.9350635999999,TJ,N2O,0.6,kg/TJ,560.3610381599999,kg -a8ae776c-dd71-3218-bed7-94bf995cca68,SESCO,II.1.1,San Juan,AR-J,annual,2021,naphtha combustion consumption by to the public,666.1143412,TJ,CO2,73300.0,kg/TJ,48826181.20996,kg -98e3451d-e3db-3e32-b390-1b1c5948ba52,SESCO,II.1.1,San Juan,AR-J,annual,2021,naphtha combustion consumption by to the public,666.1143412,TJ,CH4,3.0,kg/TJ,1998.3430236,kg -0cdb827a-de6b-3783-b81f-c780fa4f6cc1,SESCO,II.1.1,San Juan,AR-J,annual,2021,naphtha combustion consumption by to the public,666.1143412,TJ,N2O,0.6,kg/TJ,399.66860472,kg -c1a2cef7-d774-3a3b-b83f-15ebfc396b16,SESCO,II.1.1,San Luis,AR-D,annual,2021,naphtha combustion consumption by to the public,517.5495248,TJ,CO2,73300.0,kg/TJ,37936380.16784,kg -498cf466-5766-3350-b5a2-c9e060b9c3cb,SESCO,II.1.1,San Luis,AR-D,annual,2021,naphtha combustion consumption by to the public,517.5495248,TJ,CH4,3.0,kg/TJ,1552.6485744,kg -c0b55259-c2a1-3494-8a99-d604c85ce9b7,SESCO,II.1.1,San Luis,AR-D,annual,2021,naphtha combustion consumption by to the public,517.5495248,TJ,N2O,0.6,kg/TJ,310.52971488,kg -1a0228bd-6840-3ad4-acff-6d2cf2ffe595,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2021,naphtha combustion consumption by to the public,480.73246759999995,TJ,CO2,73300.0,kg/TJ,35237689.87508,kg -ef50d93a-2369-3e79-8146-5190b01aefe8,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2021,naphtha combustion consumption by to the public,480.73246759999995,TJ,CH4,3.0,kg/TJ,1442.1974028,kg -20f2c22e-bad6-39a5-ad4a-7f2c4bbd6cdc,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2021,naphtha combustion consumption by to the public,480.73246759999995,TJ,N2O,0.6,kg/TJ,288.43948055999994,kg -e01a4f4c-f95c-393d-918d-120e4df1c2b2,SESCO,II.1.1,Santa Fe,AR-S,annual,2021,naphtha combustion consumption by to the public,2948.2894363999994,TJ,CO2,73300.0,kg/TJ,216109615.68811995,kg -df3729ef-b17f-3ee5-8074-fde2a65f8fee,SESCO,II.1.1,Santa Fe,AR-S,annual,2021,naphtha combustion consumption by to the public,2948.2894363999994,TJ,CH4,3.0,kg/TJ,8844.8683092,kg -c14178ab-5e51-3894-8692-84e3e40c9b05,SESCO,II.1.1,Santa Fe,AR-S,annual,2021,naphtha combustion consumption by to the public,2948.2894363999994,TJ,N2O,0.6,kg/TJ,1768.9736618399995,kg -391fb57e-2e7f-3b79-8acb-ffe4240a7d75,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2021,naphtha combustion consumption by to the public,511.0062804,TJ,CO2,73300.0,kg/TJ,37456760.353319995,kg -e6398129-1681-3cdc-9bf3-91f5dc15d2e1,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2021,naphtha combustion consumption by to the public,511.0062804,TJ,CH4,3.0,kg/TJ,1533.0188412,kg -eea293a7-a594-3bc4-8e84-738e04fb59ee,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2021,naphtha combustion consumption by to the public,511.0062804,TJ,N2O,0.6,kg/TJ,306.60376823999997,kg -49ff3c6e-383d-3c9c-8b1b-9ccc638550a3,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2021,naphtha combustion consumption by to the public,345.01291439999994,TJ,CO2,73300.0,kg/TJ,25289446.625519995,kg -6894a285-017b-383c-9bb4-b71ea4f676b4,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2021,naphtha combustion consumption by to the public,345.01291439999994,TJ,CH4,3.0,kg/TJ,1035.0387431999998,kg -4bf8f6cd-7b4e-3884-80e0-36f652b8847a,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2021,naphtha combustion consumption by to the public,345.01291439999994,TJ,N2O,0.6,kg/TJ,207.00774863999996,kg -72016c28-19e9-3de9-afa4-8ce919be10aa,SESCO,II.1.1,Tucuman,AR-T,annual,2021,naphtha combustion consumption by to the public,749.3673264,TJ,CO2,73300.0,kg/TJ,54928625.025120005,kg -ec73c7c6-2766-32a3-bbbf-142cc22c7f3a,SESCO,II.1.1,Tucuman,AR-T,annual,2021,naphtha combustion consumption by to the public,749.3673264,TJ,CH4,3.0,kg/TJ,2248.1019792,kg -5954c4d2-6958-32e1-b489-bd7acb0a67b3,SESCO,II.1.1,Tucuman,AR-T,annual,2021,naphtha combustion consumption by to the public,749.3673264,TJ,N2O,0.6,kg/TJ,449.62039584,kg -8dbc0aa6-54a3-3258-96fd-308f3f514f37,SESCO,II.1.1,Buenos Aires,AR-B,annual,2021,naphtha combustion consumption by freight transport,586.4194336,TJ,CO2,73300.0,kg/TJ,42984544.482880004,kg -fb582175-bf04-3a4d-8884-ebccbb29ea30,SESCO,II.1.1,Buenos Aires,AR-B,annual,2021,naphtha combustion consumption by freight transport,586.4194336,TJ,CH4,3.0,kg/TJ,1759.2583008000001,kg -06fe366f-3798-3a3d-b80e-4ae56a2cbf3b,SESCO,II.1.1,Buenos Aires,AR-B,annual,2021,naphtha combustion consumption by freight transport,586.4194336,TJ,N2O,0.6,kg/TJ,351.85166016,kg -2cd1c8b4-5819-37dd-a904-b27d7ffc86f3,SESCO,II.1.1,Capital Federal,AR-C,annual,2021,naphtha combustion consumption by freight transport,90.85159159999999,TJ,CO2,73300.0,kg/TJ,6659421.664279999,kg -8e0c344b-a349-3a89-bf62-6e4eace71d85,SESCO,II.1.1,Capital Federal,AR-C,annual,2021,naphtha combustion consumption by freight transport,90.85159159999999,TJ,CH4,3.0,kg/TJ,272.55477479999996,kg -8cd0109c-2de5-3df5-aa4e-f470e830ed97,SESCO,II.1.1,Capital Federal,AR-C,annual,2021,naphtha combustion consumption by freight transport,90.85159159999999,TJ,N2O,0.6,kg/TJ,54.51095495999999,kg -cdcbbd97-adb7-3fa3-b4e7-527f34d964b7,SESCO,II.1.1,Catamarca,AR-K,annual,2021,naphtha combustion consumption by freight transport,3.1359327999999995,TJ,CO2,73300.0,kg/TJ,229863.87423999998,kg -e15bf666-f73d-3367-8130-6dfb0a77d97a,SESCO,II.1.1,Catamarca,AR-K,annual,2021,naphtha combustion consumption by freight transport,3.1359327999999995,TJ,CH4,3.0,kg/TJ,9.407798399999999,kg -8c69d923-c96d-39ef-894e-22b01c419b74,SESCO,II.1.1,Catamarca,AR-K,annual,2021,naphtha combustion consumption by freight transport,3.1359327999999995,TJ,N2O,0.6,kg/TJ,1.8815596799999996,kg -cc7408c2-cbae-32bf-9574-81df567a89d4,SESCO,II.1.1,Chaco,AR-H,annual,2021,naphtha combustion consumption by freight transport,13.840318799999999,TJ,CO2,73300.0,kg/TJ,1014495.3680399999,kg -bd0a0433-7c5c-3105-9a9f-b234f652e432,SESCO,II.1.1,Chaco,AR-H,annual,2021,naphtha combustion consumption by freight transport,13.840318799999999,TJ,CH4,3.0,kg/TJ,41.520956399999996,kg -0dfcded7-3798-3076-9084-0629f3980088,SESCO,II.1.1,Chaco,AR-H,annual,2021,naphtha combustion consumption by freight transport,13.840318799999999,TJ,N2O,0.6,kg/TJ,8.30419128,kg -2e0c976d-6eef-3e58-b116-8f621794dfd1,SESCO,II.1.1,Chubut,AR-U,annual,2021,naphtha combustion consumption by freight transport,19.3282012,TJ,CO2,73300.0,kg/TJ,1416757.14796,kg -30130e29-3850-36bb-ad25-6dc4df45c4d5,SESCO,II.1.1,Chubut,AR-U,annual,2021,naphtha combustion consumption by freight transport,19.3282012,TJ,CH4,3.0,kg/TJ,57.9846036,kg -14df90fc-d1bd-393b-ba4c-1145decbf2c1,SESCO,II.1.1,Chubut,AR-U,annual,2021,naphtha combustion consumption by freight transport,19.3282012,TJ,N2O,0.6,kg/TJ,11.596920719999998,kg -16bf33d6-fc1c-3b0f-ba49-075999f30d7b,SESCO,II.1.1,Corrientes,AR-W,annual,2021,naphtha combustion consumption by freight transport,14.775067999999997,TJ,CO2,73300.0,kg/TJ,1083012.4843999997,kg -4acba5b1-e563-3d67-a41d-5da123cd04fe,SESCO,II.1.1,Corrientes,AR-W,annual,2021,naphtha combustion consumption by freight transport,14.775067999999997,TJ,CH4,3.0,kg/TJ,44.32520399999999,kg -b87a68f0-fc09-3513-98ea-52ef690f0dc9,SESCO,II.1.1,Corrientes,AR-W,annual,2021,naphtha combustion consumption by freight transport,14.775067999999997,TJ,N2O,0.6,kg/TJ,8.865040799999997,kg -4cf313c3-e395-3a6a-8cec-ddb80c2b96dd,SESCO,II.1.1,Córdoba,AR-X,annual,2021,naphtha combustion consumption by freight transport,90.06760839999998,TJ,CO2,73300.0,kg/TJ,6601955.695719998,kg -7a164f48-bfaa-3928-a685-01dca6b78343,SESCO,II.1.1,Córdoba,AR-X,annual,2021,naphtha combustion consumption by freight transport,90.06760839999998,TJ,CH4,3.0,kg/TJ,270.20282519999995,kg -82a3036e-fff3-3779-b280-e583c1c67991,SESCO,II.1.1,Córdoba,AR-X,annual,2021,naphtha combustion consumption by freight transport,90.06760839999998,TJ,N2O,0.6,kg/TJ,54.04056503999999,kg -8fac689f-d61c-313c-a592-3cdf989d22ab,SESCO,II.1.1,Entre Rios,AR-E,annual,2021,naphtha combustion consumption by freight transport,31.268868399999995,TJ,CO2,73300.0,kg/TJ,2292008.0537199997,kg -fda5a6ae-fe30-36bf-a180-d1bb49f588fc,SESCO,II.1.1,Entre Rios,AR-E,annual,2021,naphtha combustion consumption by freight transport,31.268868399999995,TJ,CH4,3.0,kg/TJ,93.80660519999998,kg -7b135b3a-e6a9-36cf-b4e6-0b3ca9ed5e30,SESCO,II.1.1,Entre Rios,AR-E,annual,2021,naphtha combustion consumption by freight transport,31.268868399999995,TJ,N2O,0.6,kg/TJ,18.761321039999995,kg -7d449cb0-e02c-3eeb-bdad-3b532e6387aa,SESCO,II.1.1,Formosa,AR-P,annual,2021,naphtha combustion consumption by freight transport,3.7088435999999994,TJ,CO2,73300.0,kg/TJ,271858.23587999993,kg -8c6a1f4d-b731-3210-aae4-22691359f485,SESCO,II.1.1,Formosa,AR-P,annual,2021,naphtha combustion consumption by freight transport,3.7088435999999994,TJ,CH4,3.0,kg/TJ,11.126530799999998,kg -0cc39574-55e2-3fd7-b95e-378cc1d14bfe,SESCO,II.1.1,Formosa,AR-P,annual,2021,naphtha combustion consumption by freight transport,3.7088435999999994,TJ,N2O,0.6,kg/TJ,2.2253061599999997,kg -30d4ef7c-937d-30cf-8573-f94f23e6beea,SESCO,II.1.1,Jujuy,AR-Y,annual,2021,naphtha combustion consumption by freight transport,6.7241636,TJ,CO2,73300.0,kg/TJ,492881.19188,kg -e63d6f20-01e1-3583-9958-099e929063a0,SESCO,II.1.1,Jujuy,AR-Y,annual,2021,naphtha combustion consumption by freight transport,6.7241636,TJ,CH4,3.0,kg/TJ,20.1724908,kg -f82ffc0e-a21e-3cf9-a437-208f8169f94b,SESCO,II.1.1,Jujuy,AR-Y,annual,2021,naphtha combustion consumption by freight transport,6.7241636,TJ,N2O,0.6,kg/TJ,4.03449816,kg -12e10093-be02-353a-a182-8714e393df3e,SESCO,II.1.1,La Pampa,AR-L,annual,2021,naphtha combustion consumption by freight transport,9.468104799999999,TJ,CO2,73300.0,kg/TJ,694012.0818399999,kg -999665af-fbd2-30e4-afc2-dc9ab1ad4e58,SESCO,II.1.1,La Pampa,AR-L,annual,2021,naphtha combustion consumption by freight transport,9.468104799999999,TJ,CH4,3.0,kg/TJ,28.404314399999997,kg -35ed1775-372a-3518-9ec1-224ea54800b1,SESCO,II.1.1,La Pampa,AR-L,annual,2021,naphtha combustion consumption by freight transport,9.468104799999999,TJ,N2O,0.6,kg/TJ,5.680862879999999,kg -d13d679d-3457-3dbf-82bd-726d71ce0fec,SESCO,II.1.1,La Rioja,AR-F,annual,2021,naphtha combustion consumption by freight transport,4.914971599999999,TJ,CO2,73300.0,kg/TJ,360267.41828,kg -3d5aa7b9-80ec-3eb7-96be-dae4a8cf2df7,SESCO,II.1.1,La Rioja,AR-F,annual,2021,naphtha combustion consumption by freight transport,4.914971599999999,TJ,CH4,3.0,kg/TJ,14.744914799999998,kg -706e5906-6219-3ca6-b156-da8a8ae4ce1c,SESCO,II.1.1,La Rioja,AR-F,annual,2021,naphtha combustion consumption by freight transport,4.914971599999999,TJ,N2O,0.6,kg/TJ,2.9489829599999995,kg -993c841e-7b6e-323d-8da1-4537d0864abe,SESCO,II.1.1,Mendoza,AR-M,annual,2021,naphtha combustion consumption by freight transport,42.4255524,TJ,CO2,73300.0,kg/TJ,3109792.9909200002,kg -47253653-c301-3332-9b9f-60ce7d1c1f25,SESCO,II.1.1,Mendoza,AR-M,annual,2021,naphtha combustion consumption by freight transport,42.4255524,TJ,CH4,3.0,kg/TJ,127.2766572,kg -c65f7609-be1e-3b02-a437-d6d5f90d9e1e,SESCO,II.1.1,Mendoza,AR-M,annual,2021,naphtha combustion consumption by freight transport,42.4255524,TJ,N2O,0.6,kg/TJ,25.45533144,kg -0d71951e-8689-306a-a215-9417dc4bc2f8,SESCO,II.1.1,Misiones,AR-N,annual,2021,naphtha combustion consumption by freight transport,15.227365999999998,TJ,CO2,73300.0,kg/TJ,1116165.9278,kg -1dff9f28-d485-33f0-ba3b-d61e81802ae4,SESCO,II.1.1,Misiones,AR-N,annual,2021,naphtha combustion consumption by freight transport,15.227365999999998,TJ,CH4,3.0,kg/TJ,45.682097999999996,kg -b4290979-0db9-3e38-a946-27a7c0e885c6,SESCO,II.1.1,Misiones,AR-N,annual,2021,naphtha combustion consumption by freight transport,15.227365999999998,TJ,N2O,0.6,kg/TJ,9.136419599999998,kg -a5ed3782-b9c1-3c47-8669-98604f7aecbd,SESCO,II.1.1,Neuquén,AR-Q,annual,2021,naphtha combustion consumption by freight transport,15.7098172,TJ,CO2,73300.0,kg/TJ,1151529.60076,kg -053a87e8-a050-3b1b-9001-1ef486b7e7f5,SESCO,II.1.1,Neuquén,AR-Q,annual,2021,naphtha combustion consumption by freight transport,15.7098172,TJ,CH4,3.0,kg/TJ,47.129451599999996,kg -ea9796f1-fb3f-3788-a4d2-00dcb4a182a4,SESCO,II.1.1,Neuquén,AR-Q,annual,2021,naphtha combustion consumption by freight transport,15.7098172,TJ,N2O,0.6,kg/TJ,9.425890319999999,kg -a1557c8f-c1de-33c7-a962-b25d60f84165,SESCO,II.1.1,Rio Negro,AR-R,annual,2021,naphtha combustion consumption by freight transport,18.84575,TJ,CO2,73300.0,kg/TJ,1381393.4749999999,kg -2bbe9310-0451-33a1-b375-250fc3803266,SESCO,II.1.1,Rio Negro,AR-R,annual,2021,naphtha combustion consumption by freight transport,18.84575,TJ,CH4,3.0,kg/TJ,56.53725,kg -124a2660-5327-35a6-8e06-78ae69907fa9,SESCO,II.1.1,Rio Negro,AR-R,annual,2021,naphtha combustion consumption by freight transport,18.84575,TJ,N2O,0.6,kg/TJ,11.30745,kg -d1def1bc-ec29-3b30-9044-d540b3f12a46,SESCO,II.1.1,Salta,AR-A,annual,2021,naphtha combustion consumption by freight transport,24.8160836,TJ,CO2,73300.0,kg/TJ,1819018.9278799999,kg -c1b18d62-dd47-3ef5-b1c0-220fa188b2e2,SESCO,II.1.1,Salta,AR-A,annual,2021,naphtha combustion consumption by freight transport,24.8160836,TJ,CH4,3.0,kg/TJ,74.4482508,kg -0f45be7d-df45-3fd7-a7b1-6010bf6e53e3,SESCO,II.1.1,Salta,AR-A,annual,2021,naphtha combustion consumption by freight transport,24.8160836,TJ,N2O,0.6,kg/TJ,14.889650159999999,kg -a6d32267-6b4e-31d9-883e-6cdaf110022a,SESCO,II.1.1,San Juan,AR-J,annual,2021,naphtha combustion consumption by freight transport,10.131475199999999,TJ,CO2,73300.0,kg/TJ,742637.1321599999,kg -64039f1f-3185-3e61-9d17-02f2d22280ef,SESCO,II.1.1,San Juan,AR-J,annual,2021,naphtha combustion consumption by freight transport,10.131475199999999,TJ,CH4,3.0,kg/TJ,30.394425599999998,kg -dd0d06ae-c00f-3d1c-9871-826a0713ad77,SESCO,II.1.1,San Juan,AR-J,annual,2021,naphtha combustion consumption by freight transport,10.131475199999999,TJ,N2O,0.6,kg/TJ,6.078885119999999,kg -97752d32-99ec-3084-8417-bcd8bfe4fb69,SESCO,II.1.1,San Luis,AR-D,annual,2021,naphtha combustion consumption by freight transport,9.5887176,TJ,CO2,73300.0,kg/TJ,702853.00008,kg -ef0a0f15-2208-3f64-bbfa-618683ebb797,SESCO,II.1.1,San Luis,AR-D,annual,2021,naphtha combustion consumption by freight transport,9.5887176,TJ,CH4,3.0,kg/TJ,28.7661528,kg -0e3f9ce6-d72c-34df-9d95-534498adb983,SESCO,II.1.1,San Luis,AR-D,annual,2021,naphtha combustion consumption by freight transport,9.5887176,TJ,N2O,0.6,kg/TJ,5.75323056,kg -04c94a3e-c17d-36cf-ad3b-c14bda0d314d,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2021,naphtha combustion consumption by freight transport,10.553619999999999,TJ,CO2,73300.0,kg/TJ,773580.3459999999,kg -8023b367-bde6-3d0c-9200-56675caab45a,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2021,naphtha combustion consumption by freight transport,10.553619999999999,TJ,CH4,3.0,kg/TJ,31.660859999999996,kg -157e412b-44a1-33c8-a212-385b650748fb,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2021,naphtha combustion consumption by freight transport,10.553619999999999,TJ,N2O,0.6,kg/TJ,6.332171999999999,kg -adde5be6-1568-3ec7-a876-1ab261c8e210,SESCO,II.1.1,Santa Fe,AR-S,annual,2021,naphtha combustion consumption by freight transport,84.42895999999999,TJ,CO2,73300.0,kg/TJ,6188642.767999999,kg -05cdb0d4-c5be-3e41-8674-7222fb3207bb,SESCO,II.1.1,Santa Fe,AR-S,annual,2021,naphtha combustion consumption by freight transport,84.42895999999999,TJ,CH4,3.0,kg/TJ,253.28687999999997,kg -8e40cd92-aae5-3a65-90a7-cf461d4985fd,SESCO,II.1.1,Santa Fe,AR-S,annual,2021,naphtha combustion consumption by freight transport,84.42895999999999,TJ,N2O,0.6,kg/TJ,50.65737599999999,kg -5422827c-e478-3eab-bfa7-117cff15a581,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2021,naphtha combustion consumption by freight transport,6.6940104,TJ,CO2,73300.0,kg/TJ,490670.96232,kg -6c665883-e90b-371d-a3da-ce2851f4a8fc,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2021,naphtha combustion consumption by freight transport,6.6940104,TJ,CH4,3.0,kg/TJ,20.0820312,kg -afa19f21-acf5-347d-a46c-4d62d5854100,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2021,naphtha combustion consumption by freight transport,6.6940104,TJ,N2O,0.6,kg/TJ,4.016406239999999,kg -3ad096b5-f1b9-3a74-820e-2e2fbc1f82b1,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2021,naphtha combustion consumption by freight transport,14.081544399999999,TJ,CO2,73300.0,kg/TJ,1032177.2045199999,kg -0bbf28b3-659c-32dc-b824-78bb09f5d97c,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2021,naphtha combustion consumption by freight transport,14.081544399999999,TJ,CH4,3.0,kg/TJ,42.244633199999996,kg -b3257b9b-8379-3305-a318-0712126687b5,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2021,naphtha combustion consumption by freight transport,14.081544399999999,TJ,N2O,0.6,kg/TJ,8.448926639999998,kg -22c3bad8-7910-36f6-b41f-02e33d2c3a48,SESCO,II.1.1,Tucuman,AR-T,annual,2021,naphtha combustion consumption by freight transport,26.5046628,TJ,CO2,73300.0,kg/TJ,1942791.7832399998,kg -24b61bdd-b00a-3ad6-84ba-65cc59f8481c,SESCO,II.1.1,Tucuman,AR-T,annual,2021,naphtha combustion consumption by freight transport,26.5046628,TJ,CH4,3.0,kg/TJ,79.51398839999999,kg -1fa5c45f-a72b-39fc-a187-14373f483892,SESCO,II.1.1,Tucuman,AR-T,annual,2021,naphtha combustion consumption by freight transport,26.5046628,TJ,N2O,0.6,kg/TJ,15.902797679999999,kg -d220255f-aa9d-3760-891b-c6364b93295c,SESCO,II.1.1,Buenos Aires,AR-B,annual,2021,naphtha combustion consumption by freight transport,511.97118279999995,TJ,CO2,73300.0,kg/TJ,37527487.69924,kg -424fb534-5250-3a92-bd57-3628095922b6,SESCO,II.1.1,Buenos Aires,AR-B,annual,2021,naphtha combustion consumption by freight transport,511.97118279999995,TJ,CH4,3.0,kg/TJ,1535.9135483999999,kg -801ce4eb-2968-3157-bc44-211c99a075f7,SESCO,II.1.1,Buenos Aires,AR-B,annual,2021,naphtha combustion consumption by freight transport,511.97118279999995,TJ,N2O,0.6,kg/TJ,307.18270967999996,kg -23265455-dad0-3450-aff2-d667ac5f4bd0,SESCO,II.1.1,Capital Federal,AR-C,annual,2021,naphtha combustion consumption by freight transport,103.48578239999999,TJ,CO2,73300.0,kg/TJ,7585507.849919999,kg -5911a451-0636-3f3f-8a84-418a94c6ca93,SESCO,II.1.1,Capital Federal,AR-C,annual,2021,naphtha combustion consumption by freight transport,103.48578239999999,TJ,CH4,3.0,kg/TJ,310.45734719999996,kg -168e1dc6-6957-3921-a6ea-3a1d0a9872db,SESCO,II.1.1,Capital Federal,AR-C,annual,2021,naphtha combustion consumption by freight transport,103.48578239999999,TJ,N2O,0.6,kg/TJ,62.09146943999999,kg -dae97025-2d90-340c-903d-3ea4ade7ebc5,SESCO,II.1.1,Catamarca,AR-K,annual,2021,naphtha combustion consumption by freight transport,1.0252088,TJ,CO2,73300.0,kg/TJ,75147.80503999999,kg -9f3e6bd2-b888-3997-bcc7-25c6710f6c0b,SESCO,II.1.1,Catamarca,AR-K,annual,2021,naphtha combustion consumption by freight transport,1.0252088,TJ,CH4,3.0,kg/TJ,3.0756264,kg -cdbe5d2d-e9fd-30e4-b608-2d752b3b1d1d,SESCO,II.1.1,Catamarca,AR-K,annual,2021,naphtha combustion consumption by freight transport,1.0252088,TJ,N2O,0.6,kg/TJ,0.6151252799999999,kg -49298752-b324-3c44-8987-d192d29470e8,SESCO,II.1.1,Chaco,AR-H,annual,2021,naphtha combustion consumption by freight transport,11.066224399999998,TJ,CO2,73300.0,kg/TJ,811154.2485199998,kg -066965d4-96e7-38e7-ac9b-bfd3b27afc97,SESCO,II.1.1,Chaco,AR-H,annual,2021,naphtha combustion consumption by freight transport,11.066224399999998,TJ,CH4,3.0,kg/TJ,33.198673199999995,kg -1662b57a-fc34-3c20-a937-dd06ec33ec52,SESCO,II.1.1,Chaco,AR-H,annual,2021,naphtha combustion consumption by freight transport,11.066224399999998,TJ,N2O,0.6,kg/TJ,6.639734639999999,kg -98538291-5d50-3e52-a31d-f3c68a138062,SESCO,II.1.1,Chubut,AR-U,annual,2021,naphtha combustion consumption by freight transport,13.237254799999999,TJ,CO2,73300.0,kg/TJ,970290.77684,kg -a18418da-0415-3fb7-817b-36f6c664b4c3,SESCO,II.1.1,Chubut,AR-U,annual,2021,naphtha combustion consumption by freight transport,13.237254799999999,TJ,CH4,3.0,kg/TJ,39.71176439999999,kg -f2dcef32-c34a-3bda-8abb-3b0b489acfb7,SESCO,II.1.1,Chubut,AR-U,annual,2021,naphtha combustion consumption by freight transport,13.237254799999999,TJ,N2O,0.6,kg/TJ,7.942352879999999,kg -f1928987-6a6d-300a-982a-70bdddc3ead6,SESCO,II.1.1,Corrientes,AR-W,annual,2021,naphtha combustion consumption by freight transport,14.8956808,TJ,CO2,73300.0,kg/TJ,1091853.40264,kg -e1fff43d-8cd4-3323-99e1-bba8f40e4c95,SESCO,II.1.1,Corrientes,AR-W,annual,2021,naphtha combustion consumption by freight transport,14.8956808,TJ,CH4,3.0,kg/TJ,44.687042399999996,kg -9b593458-28c5-391b-aa67-52d12faa8635,SESCO,II.1.1,Corrientes,AR-W,annual,2021,naphtha combustion consumption by freight transport,14.8956808,TJ,N2O,0.6,kg/TJ,8.937408479999998,kg -38f33a01-3f79-315b-8ffd-693aa30b4a3c,SESCO,II.1.1,Córdoba,AR-X,annual,2021,naphtha combustion consumption by freight transport,187.6433636,TJ,CO2,73300.0,kg/TJ,13754258.551879998,kg -c0691519-d0c2-3686-aa48-308f6ca7a799,SESCO,II.1.1,Córdoba,AR-X,annual,2021,naphtha combustion consumption by freight transport,187.6433636,TJ,CH4,3.0,kg/TJ,562.9300908,kg -3b556478-c16d-37cf-a74c-d6ffca00e8b4,SESCO,II.1.1,Córdoba,AR-X,annual,2021,naphtha combustion consumption by freight transport,187.6433636,TJ,N2O,0.6,kg/TJ,112.58601816,kg -bc2572c3-5327-33e0-9cac-ccb887594a4e,SESCO,II.1.1,Entre Rios,AR-E,annual,2021,naphtha combustion consumption by freight transport,26.082518,TJ,CO2,73300.0,kg/TJ,1911848.5694,kg -7040bee1-9542-3214-bd88-a0be8ea3ba66,SESCO,II.1.1,Entre Rios,AR-E,annual,2021,naphtha combustion consumption by freight transport,26.082518,TJ,CH4,3.0,kg/TJ,78.24755400000001,kg -e92027c5-8df4-3d38-8760-d9f86605e25c,SESCO,II.1.1,Entre Rios,AR-E,annual,2021,naphtha combustion consumption by freight transport,26.082518,TJ,N2O,0.6,kg/TJ,15.6495108,kg -c970a7f8-965b-3b46-b3ac-13f49a8e1937,SESCO,II.1.1,Formosa,AR-P,annual,2021,naphtha combustion consumption by freight transport,1.6885792,TJ,CO2,73300.0,kg/TJ,123772.85536,kg -090f85c6-38f6-3f92-8730-f16294953954,SESCO,II.1.1,Formosa,AR-P,annual,2021,naphtha combustion consumption by freight transport,1.6885792,TJ,CH4,3.0,kg/TJ,5.0657376,kg -8d2cc0f3-7bf7-3156-a110-265bf5544f3d,SESCO,II.1.1,Formosa,AR-P,annual,2021,naphtha combustion consumption by freight transport,1.6885792,TJ,N2O,0.6,kg/TJ,1.01314752,kg -9bc7fa46-0c27-3962-bc16-0844ce885702,SESCO,II.1.1,Jujuy,AR-Y,annual,2021,naphtha combustion consumption by freight transport,3.2263923999999995,TJ,CO2,73300.0,kg/TJ,236494.56291999997,kg -2eb73c1d-57b5-3040-af40-bce32fa28920,SESCO,II.1.1,Jujuy,AR-Y,annual,2021,naphtha combustion consumption by freight transport,3.2263923999999995,TJ,CH4,3.0,kg/TJ,9.679177199999998,kg -f126beaf-0b60-3c55-ab5d-e3c57c3e6e5f,SESCO,II.1.1,Jujuy,AR-Y,annual,2021,naphtha combustion consumption by freight transport,3.2263923999999995,TJ,N2O,0.6,kg/TJ,1.9358354399999995,kg -9789cae5-3b89-3cbc-ade1-310762e12bb7,SESCO,II.1.1,La Pampa,AR-L,annual,2021,naphtha combustion consumption by freight transport,9.950555999999999,TJ,CO2,73300.0,kg/TJ,729375.7547999999,kg -e533b8a0-8b6d-33b1-808d-1802ad5a69c3,SESCO,II.1.1,La Pampa,AR-L,annual,2021,naphtha combustion consumption by freight transport,9.950555999999999,TJ,CH4,3.0,kg/TJ,29.851667999999997,kg -aa68dd35-a424-36e7-89d8-1ad58e5b1190,SESCO,II.1.1,La Pampa,AR-L,annual,2021,naphtha combustion consumption by freight transport,9.950555999999999,TJ,N2O,0.6,kg/TJ,5.970333599999999,kg -0c78f94c-8d34-3177-b5ea-00cfea84659a,SESCO,II.1.1,La Rioja,AR-F,annual,2021,naphtha combustion consumption by freight transport,3.0153199999999996,TJ,CO2,73300.0,kg/TJ,221022.95599999998,kg -33c55d73-11eb-391c-a8a3-9655edd0f24f,SESCO,II.1.1,La Rioja,AR-F,annual,2021,naphtha combustion consumption by freight transport,3.0153199999999996,TJ,CH4,3.0,kg/TJ,9.04596,kg -7d49f466-ad8c-3981-9b09-a48ecff4b3b2,SESCO,II.1.1,La Rioja,AR-F,annual,2021,naphtha combustion consumption by freight transport,3.0153199999999996,TJ,N2O,0.6,kg/TJ,1.8091919999999997,kg -9063892b-263f-3440-ab1b-9b658c0b52a8,SESCO,II.1.1,Mendoza,AR-M,annual,2021,naphtha combustion consumption by freight transport,69.5634324,TJ,CO2,73300.0,kg/TJ,5098999.59492,kg -b0046d2a-32a5-3047-a66d-ca2dfd6888ee,SESCO,II.1.1,Mendoza,AR-M,annual,2021,naphtha combustion consumption by freight transport,69.5634324,TJ,CH4,3.0,kg/TJ,208.69029719999997,kg -639f2f58-8455-3364-a4b8-8fc0b3b4fccd,SESCO,II.1.1,Mendoza,AR-M,annual,2021,naphtha combustion consumption by freight transport,69.5634324,TJ,N2O,0.6,kg/TJ,41.738059439999994,kg -07263d68-edda-3dfb-abbc-e803b450a12b,SESCO,II.1.1,Misiones,AR-N,annual,2021,naphtha combustion consumption by freight transport,12.3025056,TJ,CO2,73300.0,kg/TJ,901773.66048,kg -3f38e049-c82c-3155-ade2-6479bfa94914,SESCO,II.1.1,Misiones,AR-N,annual,2021,naphtha combustion consumption by freight transport,12.3025056,TJ,CH4,3.0,kg/TJ,36.907516799999996,kg -2adf76e0-4c77-3139-bf88-cbc5206ee20b,SESCO,II.1.1,Misiones,AR-N,annual,2021,naphtha combustion consumption by freight transport,12.3025056,TJ,N2O,0.6,kg/TJ,7.38150336,kg -8b1268a7-c370-3d70-b15f-d6f917887dbf,SESCO,II.1.1,Neuquén,AR-Q,annual,2021,naphtha combustion consumption by freight transport,33.1383668,TJ,CO2,73300.0,kg/TJ,2429042.28644,kg -da93173b-8cd3-3e81-a920-332d1e617e65,SESCO,II.1.1,Neuquén,AR-Q,annual,2021,naphtha combustion consumption by freight transport,33.1383668,TJ,CH4,3.0,kg/TJ,99.4151004,kg -7ca84df3-f57a-3356-837f-cafe98c6e1e0,SESCO,II.1.1,Neuquén,AR-Q,annual,2021,naphtha combustion consumption by freight transport,33.1383668,TJ,N2O,0.6,kg/TJ,19.883020079999998,kg -c53eeda4-41b0-37c5-94da-1c4520a8b3c2,SESCO,II.1.1,Rio Negro,AR-R,annual,2021,naphtha combustion consumption by freight transport,41.6717224,TJ,CO2,73300.0,kg/TJ,3054537.25192,kg -ff9248c6-a750-38d0-80bf-ecf766cb5600,SESCO,II.1.1,Rio Negro,AR-R,annual,2021,naphtha combustion consumption by freight transport,41.6717224,TJ,CH4,3.0,kg/TJ,125.01516720000001,kg -ae6b4945-1976-3931-8956-b96442c4a45b,SESCO,II.1.1,Rio Negro,AR-R,annual,2021,naphtha combustion consumption by freight transport,41.6717224,TJ,N2O,0.6,kg/TJ,25.00303344,kg -281896f6-dd1b-30fc-be8e-f590ca9009c2,SESCO,II.1.1,Salta,AR-A,annual,2021,naphtha combustion consumption by freight transport,18.7552904,TJ,CO2,73300.0,kg/TJ,1374762.78632,kg -467b1878-1557-3b4a-adb4-83d87664e85a,SESCO,II.1.1,Salta,AR-A,annual,2021,naphtha combustion consumption by freight transport,18.7552904,TJ,CH4,3.0,kg/TJ,56.2658712,kg -b8edc4cb-d194-3bdc-8cc4-afc581036deb,SESCO,II.1.1,Salta,AR-A,annual,2021,naphtha combustion consumption by freight transport,18.7552904,TJ,N2O,0.6,kg/TJ,11.25317424,kg -408b14ea-2e56-3dad-aa07-6ec85e6e5852,SESCO,II.1.1,San Juan,AR-J,annual,2021,naphtha combustion consumption by freight transport,5.6084952,TJ,CO2,73300.0,kg/TJ,411102.69816,kg -65611317-1342-323b-aaae-d61acbd2f5bd,SESCO,II.1.1,San Juan,AR-J,annual,2021,naphtha combustion consumption by freight transport,5.6084952,TJ,CH4,3.0,kg/TJ,16.8254856,kg -3a977a8d-57c0-31bf-bb4c-aa30d79ca13d,SESCO,II.1.1,San Juan,AR-J,annual,2021,naphtha combustion consumption by freight transport,5.6084952,TJ,N2O,0.6,kg/TJ,3.36509712,kg -68699cfc-e529-38f3-8c66-27e38d927d0f,SESCO,II.1.1,San Luis,AR-D,annual,2021,naphtha combustion consumption by freight transport,7.086002,TJ,CO2,73300.0,kg/TJ,519403.94659999997,kg -a7d159ab-dd9a-3c0e-90b0-60ef277af148,SESCO,II.1.1,San Luis,AR-D,annual,2021,naphtha combustion consumption by freight transport,7.086002,TJ,CH4,3.0,kg/TJ,21.258005999999998,kg -bb8113cf-c52d-3442-a067-faacdea20905,SESCO,II.1.1,San Luis,AR-D,annual,2021,naphtha combustion consumption by freight transport,7.086002,TJ,N2O,0.6,kg/TJ,4.2516012,kg -e0bd16ef-c175-3321-b0ab-a244ba749065,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2021,naphtha combustion consumption by freight transport,4.5832863999999995,TJ,CO2,73300.0,kg/TJ,335954.89311999996,kg -2ee9d98b-b917-39e0-906e-b8e65c190de8,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2021,naphtha combustion consumption by freight transport,4.5832863999999995,TJ,CH4,3.0,kg/TJ,13.7498592,kg -11dfe3b9-7657-30d2-bd6c-1702e7a81493,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2021,naphtha combustion consumption by freight transport,4.5832863999999995,TJ,N2O,0.6,kg/TJ,2.7499718399999997,kg -adde5be6-1568-3ec7-a876-1ab261c8e210,SESCO,II.1.1,Santa Fe,AR-S,annual,2021,naphtha combustion consumption by freight transport,84.42895999999999,TJ,CO2,73300.0,kg/TJ,6188642.767999999,kg -05cdb0d4-c5be-3e41-8674-7222fb3207bb,SESCO,II.1.1,Santa Fe,AR-S,annual,2021,naphtha combustion consumption by freight transport,84.42895999999999,TJ,CH4,3.0,kg/TJ,253.28687999999997,kg -8e40cd92-aae5-3a65-90a7-cf461d4985fd,SESCO,II.1.1,Santa Fe,AR-S,annual,2021,naphtha combustion consumption by freight transport,84.42895999999999,TJ,N2O,0.6,kg/TJ,50.65737599999999,kg -a80ada3b-bcaf-371d-9c50-73df788756fa,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2021,naphtha combustion consumption by freight transport,3.4374647999999994,TJ,CO2,73300.0,kg/TJ,251966.16983999996,kg -d0b49f95-55fd-3877-9456-11d65af3a138,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2021,naphtha combustion consumption by freight transport,3.4374647999999994,TJ,CH4,3.0,kg/TJ,10.312394399999999,kg -6acd9827-f317-3aa1-8f3b-a4bb4ec1c09a,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2021,naphtha combustion consumption by freight transport,3.4374647999999994,TJ,N2O,0.6,kg/TJ,2.0624788799999996,kg -76c373b2-fd40-313b-97a3-7f9019215038,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2021,naphtha combustion consumption by freight transport,6.9653892,TJ,CO2,73300.0,kg/TJ,510563.02836,kg -b09f7886-7307-3296-be7c-1acebb3b1d96,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2021,naphtha combustion consumption by freight transport,6.9653892,TJ,CH4,3.0,kg/TJ,20.8961676,kg -37cec855-98e6-35b2-b612-c6dde696b7af,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2021,naphtha combustion consumption by freight transport,6.9653892,TJ,N2O,0.6,kg/TJ,4.1792335199999995,kg -19b5e493-51ba-3fab-8998-bdc1b96232e5,SESCO,II.1.1,Tucuman,AR-T,annual,2021,naphtha combustion consumption by freight transport,12.7849568,TJ,CO2,73300.0,kg/TJ,937137.33344,kg -b999e88c-7be2-3fe2-b000-72c99a772ed9,SESCO,II.1.1,Tucuman,AR-T,annual,2021,naphtha combustion consumption by freight transport,12.7849568,TJ,CH4,3.0,kg/TJ,38.354870399999996,kg -0bddd55c-ac1a-33c8-af13-ce15d8b35e06,SESCO,II.1.1,Tucuman,AR-T,annual,2021,naphtha combustion consumption by freight transport,12.7849568,TJ,N2O,0.6,kg/TJ,7.67097408,kg -c69ba80a-eed7-350b-8028-98b90184a74e,SESCO,II.5.1,Buenos Aires,AR-B,annual,2022,naphtha combustion consumption by agriculture machines,29.037531599999998,TJ,CO2,73300.0,kg/TJ,2128451.06628,kg -eda8b206-a230-3e6b-b404-16cf5a8638b9,SESCO,II.5.1,Buenos Aires,AR-B,annual,2022,naphtha combustion consumption by agriculture machines,29.037531599999998,TJ,CH4,3.0,kg/TJ,87.1125948,kg -ea47eaff-55d3-3b16-8a0f-9f14beacb629,SESCO,II.5.1,Buenos Aires,AR-B,annual,2022,naphtha combustion consumption by agriculture machines,29.037531599999998,TJ,N2O,0.6,kg/TJ,17.422518959999998,kg -ac104f2d-9c7d-3dec-a68a-55a36aef3056,SESCO,II.5.1,Córdoba,AR-X,annual,2022,naphtha combustion consumption by agriculture machines,8.5635088,TJ,CO2,73300.0,kg/TJ,627705.1950399999,kg -e8e8040a-0894-3800-a999-dbd80f3e75c9,SESCO,II.5.1,Córdoba,AR-X,annual,2022,naphtha combustion consumption by agriculture machines,8.5635088,TJ,CH4,3.0,kg/TJ,25.690526399999996,kg -29374092-dcc4-39a9-a000-fc3ea6111339,SESCO,II.5.1,Córdoba,AR-X,annual,2022,naphtha combustion consumption by agriculture machines,8.5635088,TJ,N2O,0.6,kg/TJ,5.1381052799999996,kg -3efc1246-d4d1-385c-a1bf-b9808d4ca614,SESCO,II.5.1,Santa Fe,AR-S,annual,2022,naphtha combustion consumption by agriculture machines,5.2165036,TJ,CO2,73300.0,kg/TJ,382369.71388,kg -f9673314-042f-331b-989d-539733cf02e4,SESCO,II.5.1,Santa Fe,AR-S,annual,2022,naphtha combustion consumption by agriculture machines,5.2165036,TJ,CH4,3.0,kg/TJ,15.649510800000002,kg -0f17536b-4a02-39cb-84bf-45e2b7a50ffb,SESCO,II.5.1,Santa Fe,AR-S,annual,2022,naphtha combustion consumption by agriculture machines,5.2165036,TJ,N2O,0.6,kg/TJ,3.12990216,kg -6d001a11-a841-3e59-a0bd-7f9b7db18981,SESCO,II.5.1,Buenos Aires,AR-B,annual,2022,naphtha combustion consumption by agriculture machines,3.76915,TJ,CO2,73300.0,kg/TJ,276278.695,kg -308a5715-51ae-34fd-b01b-762c679c1dc7,SESCO,II.5.1,Buenos Aires,AR-B,annual,2022,naphtha combustion consumption by agriculture machines,3.76915,TJ,CH4,3.0,kg/TJ,11.30745,kg -cb05b7d1-33b4-3952-b06f-153e8bc61f5c,SESCO,II.5.1,Buenos Aires,AR-B,annual,2022,naphtha combustion consumption by agriculture machines,3.76915,TJ,N2O,0.6,kg/TJ,2.26149,kg -bb0bd3be-9911-3dee-bc19-79c65d2fbcec,SESCO,II.5.1,Córdoba,AR-X,annual,2022,naphtha combustion consumption by agriculture machines,2.2011836,TJ,CO2,73300.0,kg/TJ,161346.75788,kg -9b412fed-7a5b-381c-ad68-b2016818ed19,SESCO,II.5.1,Córdoba,AR-X,annual,2022,naphtha combustion consumption by agriculture machines,2.2011836,TJ,CH4,3.0,kg/TJ,6.603550799999999,kg -f2b65947-73e3-3104-b2f1-6e30421b8c16,SESCO,II.5.1,Córdoba,AR-X,annual,2022,naphtha combustion consumption by agriculture machines,2.2011836,TJ,N2O,0.6,kg/TJ,1.3207101599999997,kg -e54c903f-2835-3a73-94e1-dc5da194dea7,SESCO,II.1.1,Buenos Aires,AR-B,annual,2022,naphtha combustion consumption by to the public,1209.1131668,TJ,CO2,73300.0,kg/TJ,88627995.12644,kg -3db93078-c1c2-3226-8fee-27fee901be57,SESCO,II.1.1,Buenos Aires,AR-B,annual,2022,naphtha combustion consumption by to the public,1209.1131668,TJ,CH4,3.0,kg/TJ,3627.3395004000004,kg -1bd76a8c-dec3-3e49-849e-d6e54a8ca7f0,SESCO,II.1.1,Buenos Aires,AR-B,annual,2022,naphtha combustion consumption by to the public,1209.1131668,TJ,N2O,0.6,kg/TJ,725.46790008,kg -779db5f3-e953-3c88-adf3-d9cb365bb066,SESCO,II.1.1,Capital Federal,AR-C,annual,2022,naphtha combustion consumption by to the public,59.94456159999999,TJ,CO2,73300.0,kg/TJ,4393936.36528,kg -2ac928dd-dd8d-3852-bac0-a8ba64babb8a,SESCO,II.1.1,Capital Federal,AR-C,annual,2022,naphtha combustion consumption by to the public,59.94456159999999,TJ,CH4,3.0,kg/TJ,179.8336848,kg -db152b51-84b5-3747-8128-13c6e2248209,SESCO,II.1.1,Capital Federal,AR-C,annual,2022,naphtha combustion consumption by to the public,59.94456159999999,TJ,N2O,0.6,kg/TJ,35.96673695999999,kg -1d933e16-3b31-3687-91dc-dd9f8ee7b83f,SESCO,II.1.1,Catamarca,AR-K,annual,2022,naphtha combustion consumption by to the public,25.268381599999998,TJ,CO2,73300.0,kg/TJ,1852172.3712799998,kg -fb24147b-6088-3298-a755-40d32f767348,SESCO,II.1.1,Catamarca,AR-K,annual,2022,naphtha combustion consumption by to the public,25.268381599999998,TJ,CH4,3.0,kg/TJ,75.8051448,kg -3647040c-ac8b-36d0-99a4-5a466f176e14,SESCO,II.1.1,Catamarca,AR-K,annual,2022,naphtha combustion consumption by to the public,25.268381599999998,TJ,N2O,0.6,kg/TJ,15.161028959999998,kg -25b44114-3dd0-3e7c-8ee4-8cf367abd25d,SESCO,II.1.1,Chaco,AR-H,annual,2022,naphtha combustion consumption by to the public,4.1309884,TJ,CO2,73300.0,kg/TJ,302801.44972,kg -5978a130-f4fc-3281-86a5-e412d0199ade,SESCO,II.1.1,Chaco,AR-H,annual,2022,naphtha combustion consumption by to the public,4.1309884,TJ,CH4,3.0,kg/TJ,12.392965199999999,kg -f2252ae6-a446-3f1b-bd02-4248096cb24b,SESCO,II.1.1,Chaco,AR-H,annual,2022,naphtha combustion consumption by to the public,4.1309884,TJ,N2O,0.6,kg/TJ,2.47859304,kg -20a82d7e-0966-3b0e-b6e1-527e6dcaf458,SESCO,II.1.1,Corrientes,AR-W,annual,2022,naphtha combustion consumption by to the public,10.734539199999999,TJ,CO2,73300.0,kg/TJ,786841.72336,kg -6d403792-8618-3e22-8ca7-258b00a854a5,SESCO,II.1.1,Corrientes,AR-W,annual,2022,naphtha combustion consumption by to the public,10.734539199999999,TJ,CH4,3.0,kg/TJ,32.203617599999994,kg -a42a5243-b823-3b34-83f3-5ebeae3d50b3,SESCO,II.1.1,Corrientes,AR-W,annual,2022,naphtha combustion consumption by to the public,10.734539199999999,TJ,N2O,0.6,kg/TJ,6.440723519999999,kg -43b87586-8842-39f5-88c6-72308cd14f41,SESCO,II.1.1,Córdoba,AR-X,annual,2022,naphtha combustion consumption by to the public,491.76853879999993,TJ,CO2,73300.0,kg/TJ,36046633.894039996,kg -249bc35d-c09c-3345-b330-048857765c7c,SESCO,II.1.1,Córdoba,AR-X,annual,2022,naphtha combustion consumption by to the public,491.76853879999993,TJ,CH4,3.0,kg/TJ,1475.3056163999997,kg -ec0df5f9-9b06-32d6-9784-ae4f7e3f7dfa,SESCO,II.1.1,Córdoba,AR-X,annual,2022,naphtha combustion consumption by to the public,491.76853879999993,TJ,N2O,0.6,kg/TJ,295.06112327999995,kg -4cb11e0c-84af-353f-83fa-69227d0f1a71,SESCO,II.1.1,Entre Rios,AR-E,annual,2022,naphtha combustion consumption by to the public,129.4175344,TJ,CO2,73300.0,kg/TJ,9486305.27152,kg -330c1e19-b7b5-3011-8104-48482b26c466,SESCO,II.1.1,Entre Rios,AR-E,annual,2022,naphtha combustion consumption by to the public,129.4175344,TJ,CH4,3.0,kg/TJ,388.25260319999995,kg -86947e09-9466-3250-ba53-f305f1939c37,SESCO,II.1.1,Entre Rios,AR-E,annual,2022,naphtha combustion consumption by to the public,129.4175344,TJ,N2O,0.6,kg/TJ,77.65052064,kg -f409bab7-ce24-3928-b8e7-1ead94bd64b5,SESCO,II.1.1,Mendoza,AR-M,annual,2022,naphtha combustion consumption by to the public,304.8186988,TJ,CO2,73300.0,kg/TJ,22343210.62204,kg -51165945-3444-36e6-a955-c0134a54df9e,SESCO,II.1.1,Mendoza,AR-M,annual,2022,naphtha combustion consumption by to the public,304.8186988,TJ,CH4,3.0,kg/TJ,914.4560964,kg -aab9f657-8d8e-3d7e-9d9c-3a38b9149d7b,SESCO,II.1.1,Mendoza,AR-M,annual,2022,naphtha combustion consumption by to the public,304.8186988,TJ,N2O,0.6,kg/TJ,182.89121928,kg -35f0a423-b21b-36d3-b531-563fb8b3a8a9,SESCO,II.1.1,San Luis,AR-D,annual,2022,naphtha combustion consumption by to the public,54.0345344,TJ,CO2,73300.0,kg/TJ,3960731.37152,kg -108dd2da-ce0c-3e6e-8b00-3df12870943c,SESCO,II.1.1,San Luis,AR-D,annual,2022,naphtha combustion consumption by to the public,54.0345344,TJ,CH4,3.0,kg/TJ,162.1036032,kg -e6e8e7d4-ec5f-3392-bfa1-a073f0ab60be,SESCO,II.1.1,San Luis,AR-D,annual,2022,naphtha combustion consumption by to the public,54.0345344,TJ,N2O,0.6,kg/TJ,32.42072064,kg -15b5bd08-fc0b-31e5-a9f0-46354547f3bf,SESCO,II.1.1,Santa Fe,AR-S,annual,2022,naphtha combustion consumption by to the public,334.549754,TJ,CO2,73300.0,kg/TJ,24522496.968200002,kg -e1a75fff-17b4-3e7e-9de9-724714c4728c,SESCO,II.1.1,Santa Fe,AR-S,annual,2022,naphtha combustion consumption by to the public,334.549754,TJ,CH4,3.0,kg/TJ,1003.649262,kg -c7b5fab1-798d-39ff-9f66-3697dc17bb84,SESCO,II.1.1,Santa Fe,AR-S,annual,2022,naphtha combustion consumption by to the public,334.549754,TJ,N2O,0.6,kg/TJ,200.7298524,kg -27deb54d-f016-3c64-b9b9-52180ea8ccfe,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2022,naphtha combustion consumption by to the public,53.3410108,TJ,CO2,73300.0,kg/TJ,3909896.0916399998,kg -68faaae4-244b-3ac7-a8de-625f9da2e3c7,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2022,naphtha combustion consumption by to the public,53.3410108,TJ,CH4,3.0,kg/TJ,160.0230324,kg -674402ad-6f78-3fac-a065-ec6113dc6136,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2022,naphtha combustion consumption by to the public,53.3410108,TJ,N2O,0.6,kg/TJ,32.00460648,kg -dcd2ce1f-cd1a-32c2-ad9e-60c040e670fc,SESCO,II.1.1,Tucuman,AR-T,annual,2022,naphtha combustion consumption by to the public,28.524927199999997,TJ,CO2,73300.0,kg/TJ,2090877.1637599997,kg -c27ad381-2736-388c-abcf-60bf3724b915,SESCO,II.1.1,Tucuman,AR-T,annual,2022,naphtha combustion consumption by to the public,28.524927199999997,TJ,CH4,3.0,kg/TJ,85.5747816,kg -b9b8aad4-26a7-3213-88a6-df28be45c59c,SESCO,II.1.1,Tucuman,AR-T,annual,2022,naphtha combustion consumption by to the public,28.524927199999997,TJ,N2O,0.6,kg/TJ,17.114956319999997,kg -dd42c580-96ab-3125-b2d4-9f3fe83890a2,SESCO,II.1.1,Buenos Aires,AR-B,annual,2022,naphtha combustion consumption by to the public,96.15855479999999,TJ,CO2,73300.0,kg/TJ,7048422.0668399995,kg -39781b64-c8e8-399d-8706-3c34720ff812,SESCO,II.1.1,Buenos Aires,AR-B,annual,2022,naphtha combustion consumption by to the public,96.15855479999999,TJ,CH4,3.0,kg/TJ,288.47566439999997,kg -3715178d-6576-3f19-9413-70f88f5cf978,SESCO,II.1.1,Buenos Aires,AR-B,annual,2022,naphtha combustion consumption by to the public,96.15855479999999,TJ,N2O,0.6,kg/TJ,57.69513287999999,kg -ec10501a-7634-3872-9504-fe19b3e03fd7,SESCO,II.1.1,Capital Federal,AR-C,annual,2022,naphtha combustion consumption by to the public,9.04596,TJ,CO2,73300.0,kg/TJ,663068.8679999999,kg -566f1ae1-0d87-327d-b6b1-ff5c90bbfba0,SESCO,II.1.1,Capital Federal,AR-C,annual,2022,naphtha combustion consumption by to the public,9.04596,TJ,CH4,3.0,kg/TJ,27.137879999999996,kg -fb4d1d6e-8560-3f8a-8d33-d3f9fff5af31,SESCO,II.1.1,Capital Federal,AR-C,annual,2022,naphtha combustion consumption by to the public,9.04596,TJ,N2O,0.6,kg/TJ,5.427575999999999,kg -239e67ab-aec1-38ce-b8f5-1fafc745f99b,SESCO,II.1.1,Catamarca,AR-K,annual,2022,naphtha combustion consumption by to the public,2.6836347999999997,TJ,CO2,73300.0,kg/TJ,196710.43084,kg -7cf69994-f03e-3fb5-aa02-85e00aa730c3,SESCO,II.1.1,Catamarca,AR-K,annual,2022,naphtha combustion consumption by to the public,2.6836347999999997,TJ,CH4,3.0,kg/TJ,8.050904399999999,kg -9cc765cb-66a5-3d67-bb4a-fffe9540aba2,SESCO,II.1.1,Catamarca,AR-K,annual,2022,naphtha combustion consumption by to the public,2.6836347999999997,TJ,N2O,0.6,kg/TJ,1.6101808799999997,kg -c39666d3-1c93-3124-ace8-f1a47ec16784,SESCO,II.1.1,Chaco,AR-H,annual,2022,naphtha combustion consumption by to the public,0.4221448,TJ,CO2,73300.0,kg/TJ,30943.21384,kg -35954edd-f4ce-3bb0-ba9a-d2d396c89905,SESCO,II.1.1,Chaco,AR-H,annual,2022,naphtha combustion consumption by to the public,0.4221448,TJ,CH4,3.0,kg/TJ,1.2664344,kg -cd30202d-cd5c-3638-822a-97da489b2ec1,SESCO,II.1.1,Chaco,AR-H,annual,2022,naphtha combustion consumption by to the public,0.4221448,TJ,N2O,0.6,kg/TJ,0.25328688,kg -32630640-43e4-3b4a-bdc6-2406826478cc,SESCO,II.1.1,Corrientes,AR-W,annual,2022,naphtha combustion consumption by to the public,1.3870472,TJ,CO2,73300.0,kg/TJ,101670.55976,kg -43c40e76-2820-37dd-bf76-630878d63c49,SESCO,II.1.1,Corrientes,AR-W,annual,2022,naphtha combustion consumption by to the public,1.3870472,TJ,CH4,3.0,kg/TJ,4.1611416000000006,kg -15bfee34-b3fe-34b2-afbc-5f13f761f5cc,SESCO,II.1.1,Corrientes,AR-W,annual,2022,naphtha combustion consumption by to the public,1.3870472,TJ,N2O,0.6,kg/TJ,0.83222832,kg -4299d2bf-282f-335f-9e7e-b2384512ac10,SESCO,II.1.1,Córdoba,AR-X,annual,2022,naphtha combustion consumption by to the public,54.667751599999995,TJ,CO2,73300.0,kg/TJ,4007146.1922799996,kg -bb2aedb9-f690-35a1-80b2-28761c335506,SESCO,II.1.1,Córdoba,AR-X,annual,2022,naphtha combustion consumption by to the public,54.667751599999995,TJ,CH4,3.0,kg/TJ,164.00325479999998,kg -801bff57-f753-38d4-8bcb-506f101a66bb,SESCO,II.1.1,Córdoba,AR-X,annual,2022,naphtha combustion consumption by to the public,54.667751599999995,TJ,N2O,0.6,kg/TJ,32.80065096,kg -c4b3340f-b2ab-330d-84b7-0908c7efce10,SESCO,II.1.1,Entre Rios,AR-E,annual,2022,naphtha combustion consumption by to the public,16.614413199999998,TJ,CO2,73300.0,kg/TJ,1217836.4875599998,kg -319b84d0-10c5-3cfe-a10a-326da15dfcf2,SESCO,II.1.1,Entre Rios,AR-E,annual,2022,naphtha combustion consumption by to the public,16.614413199999998,TJ,CH4,3.0,kg/TJ,49.84323959999999,kg -f353966b-d871-3b6c-ace0-969695a27e5a,SESCO,II.1.1,Entre Rios,AR-E,annual,2022,naphtha combustion consumption by to the public,16.614413199999998,TJ,N2O,0.6,kg/TJ,9.968647919999999,kg -532a994d-04ad-3330-adfa-a3dd1a14c3a9,SESCO,II.1.1,Mendoza,AR-M,annual,2022,naphtha combustion consumption by to the public,48.034047599999994,TJ,CO2,73300.0,kg/TJ,3520895.6890799995,kg -b927c2fb-642a-3a85-91e6-4bf51b81dd4c,SESCO,II.1.1,Mendoza,AR-M,annual,2022,naphtha combustion consumption by to the public,48.034047599999994,TJ,CH4,3.0,kg/TJ,144.10214279999997,kg -ec14e404-30ec-398e-8dc3-a4f42da23720,SESCO,II.1.1,Mendoza,AR-M,annual,2022,naphtha combustion consumption by to the public,48.034047599999994,TJ,N2O,0.6,kg/TJ,28.820428559999996,kg -60990dde-8a08-3593-b861-e3d0a6bd8c27,SESCO,II.1.1,San Luis,AR-D,annual,2022,naphtha combustion consumption by to the public,2.2916431999999998,TJ,CO2,73300.0,kg/TJ,167977.44655999998,kg -c13751f4-da5f-3e5d-809b-c6d55f79104d,SESCO,II.1.1,San Luis,AR-D,annual,2022,naphtha combustion consumption by to the public,2.2916431999999998,TJ,CH4,3.0,kg/TJ,6.8749296,kg -8a437b0f-7291-39f5-9b75-92355b82296c,SESCO,II.1.1,San Luis,AR-D,annual,2022,naphtha combustion consumption by to the public,2.2916431999999998,TJ,N2O,0.6,kg/TJ,1.3749859199999999,kg -40ec2b42-bb8c-3ef7-8cb9-8464f13c0fd1,SESCO,II.1.1,Santa Fe,AR-S,annual,2022,naphtha combustion consumption by to the public,49.3909416,TJ,CO2,73300.0,kg/TJ,3620356.0192799997,kg -e0e6d2e0-da37-3eed-86b0-c41751c49b75,SESCO,II.1.1,Santa Fe,AR-S,annual,2022,naphtha combustion consumption by to the public,49.3909416,TJ,CH4,3.0,kg/TJ,148.1728248,kg -5fdaf69b-bded-34dd-996d-8b726638f5e2,SESCO,II.1.1,Santa Fe,AR-S,annual,2022,naphtha combustion consumption by to the public,49.3909416,TJ,N2O,0.6,kg/TJ,29.63456496,kg -47fe69f4-9fe1-3d6a-ada6-af20021aa191,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2022,naphtha combustion consumption by to the public,5.367269599999999,TJ,CO2,73300.0,kg/TJ,393420.86168,kg -47ea7cc1-6cb0-310d-92e8-e1f813dc8be1,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2022,naphtha combustion consumption by to the public,5.367269599999999,TJ,CH4,3.0,kg/TJ,16.101808799999997,kg -a5208da0-2f09-35d2-9b64-e4234486a116,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2022,naphtha combustion consumption by to the public,5.367269599999999,TJ,N2O,0.6,kg/TJ,3.2203617599999994,kg -81974d3a-b1b8-38e6-a70b-6d47abc655cf,SESCO,II.1.1,Tucuman,AR-T,annual,2022,naphtha combustion consumption by to the public,0.1809192,TJ,CO2,73300.0,kg/TJ,13261.37736,kg -40350207-30e9-3304-afa0-3897d73eb20a,SESCO,II.1.1,Tucuman,AR-T,annual,2022,naphtha combustion consumption by to the public,0.1809192,TJ,CH4,3.0,kg/TJ,0.5427576000000001,kg -775bbfe6-5bff-3905-b959-c2f6865d929a,SESCO,II.1.1,Tucuman,AR-T,annual,2022,naphtha combustion consumption by to the public,0.1809192,TJ,N2O,0.6,kg/TJ,0.10855152,kg -658080a1-c2e1-3020-9f09-53f5f0384212,SESCO,II.5.1,Buenos Aires,AR-B,annual,2022,naphtha combustion consumption by agriculture machines,7.2669212,TJ,CO2,73300.0,kg/TJ,532665.32396,kg -32e63111-09f6-3bee-8d57-eb4db6b9a57d,SESCO,II.5.1,Buenos Aires,AR-B,annual,2022,naphtha combustion consumption by agriculture machines,7.2669212,TJ,CH4,3.0,kg/TJ,21.8007636,kg -0baed11f-1f76-321b-871d-53bc6f78cd1b,SESCO,II.5.1,Buenos Aires,AR-B,annual,2022,naphtha combustion consumption by agriculture machines,7.2669212,TJ,N2O,0.6,kg/TJ,4.360152719999999,kg -226ae744-f3fb-3c51-bcb8-e23cb0ef185d,SESCO,II.5.1,Capital Federal,AR-C,annual,2022,naphtha combustion consumption by agriculture machines,0.8744427999999999,TJ,CO2,73300.0,kg/TJ,64096.657239999986,kg -3ddb6a24-66c3-37b5-91de-05b044bdcb8d,SESCO,II.5.1,Capital Federal,AR-C,annual,2022,naphtha combustion consumption by agriculture machines,0.8744427999999999,TJ,CH4,3.0,kg/TJ,2.6233283999999997,kg -d072def5-93c7-3056-8f25-1a9bb0fb909a,SESCO,II.5.1,Capital Federal,AR-C,annual,2022,naphtha combustion consumption by agriculture machines,0.8744427999999999,TJ,N2O,0.6,kg/TJ,0.5246656799999999,kg -8ec8fdb5-335a-3851-ae26-1d8b53c51f72,SESCO,II.5.1,Córdoba,AR-X,annual,2022,naphtha combustion consumption by agriculture machines,31.811625999999997,TJ,CO2,73300.0,kg/TJ,2331792.1857999996,kg -b3cb2d6e-b083-3087-b02f-1e15b0c7260e,SESCO,II.5.1,Córdoba,AR-X,annual,2022,naphtha combustion consumption by agriculture machines,31.811625999999997,TJ,CH4,3.0,kg/TJ,95.434878,kg -463d74d5-6dc3-39ab-9d2c-b9dc7b89e9c1,SESCO,II.5.1,Córdoba,AR-X,annual,2022,naphtha combustion consumption by agriculture machines,31.811625999999997,TJ,N2O,0.6,kg/TJ,19.0869756,kg -b391bf17-4c78-3bc0-8a7a-d6e9c5a5a8b6,SESCO,II.5.1,Santa Fe,AR-S,annual,2022,naphtha combustion consumption by agriculture machines,7.5383,TJ,CO2,73300.0,kg/TJ,552557.39,kg -a06519b3-f0e8-3ef1-a7f6-7e505c24ab99,SESCO,II.5.1,Santa Fe,AR-S,annual,2022,naphtha combustion consumption by agriculture machines,7.5383,TJ,CH4,3.0,kg/TJ,22.6149,kg -c0288695-de95-3afc-ba15-22e1efe7dcb0,SESCO,II.5.1,Santa Fe,AR-S,annual,2022,naphtha combustion consumption by agriculture machines,7.5383,TJ,N2O,0.6,kg/TJ,4.52298,kg -15543350-ef20-3840-b77a-f16b22b12f3a,SESCO,II.5.1,Buenos Aires,AR-B,annual,2022,naphtha combustion consumption by agriculture machines,1.6282728,TJ,CO2,73300.0,kg/TJ,119352.39624,kg -e40f651d-83b5-3b69-87bd-30611ca3879b,SESCO,II.5.1,Buenos Aires,AR-B,annual,2022,naphtha combustion consumption by agriculture machines,1.6282728,TJ,CH4,3.0,kg/TJ,4.8848184,kg -dc5de524-967d-3f05-b90d-a771614b224a,SESCO,II.5.1,Buenos Aires,AR-B,annual,2022,naphtha combustion consumption by agriculture machines,1.6282728,TJ,N2O,0.6,kg/TJ,0.9769636799999999,kg -6cf0e464-940d-3aca-85dd-c0c7e2021490,SESCO,II.5.1,Capital Federal,AR-C,annual,2022,naphtha combustion consumption by agriculture machines,0.0904596,TJ,CO2,73300.0,kg/TJ,6630.68868,kg -7c58e64c-22c7-3eb7-8372-67e25f333778,SESCO,II.5.1,Capital Federal,AR-C,annual,2022,naphtha combustion consumption by agriculture machines,0.0904596,TJ,CH4,3.0,kg/TJ,0.27137880000000003,kg -ddb76d58-5443-3618-9da9-956b7aa7e54e,SESCO,II.5.1,Capital Federal,AR-C,annual,2022,naphtha combustion consumption by agriculture machines,0.0904596,TJ,N2O,0.6,kg/TJ,0.05427576,kg -e3a2ec14-0f98-34b8-96bd-d5c44cb1aa15,SESCO,II.5.1,Córdoba,AR-X,annual,2022,naphtha combustion consumption by agriculture machines,2.6534815999999997,TJ,CO2,73300.0,kg/TJ,194500.20127999998,kg -21e19195-4a0e-340c-b0af-492362563bd5,SESCO,II.5.1,Córdoba,AR-X,annual,2022,naphtha combustion consumption by agriculture machines,2.6534815999999997,TJ,CH4,3.0,kg/TJ,7.960444799999999,kg -52127df7-b7ad-35f7-84f7-46889279f4e5,SESCO,II.5.1,Córdoba,AR-X,annual,2022,naphtha combustion consumption by agriculture machines,2.6534815999999997,TJ,N2O,0.6,kg/TJ,1.5920889599999997,kg -1eb10f66-8a10-30bb-b686-4eb7c5d337b9,SESCO,II.1.1,Buenos Aires,AR-B,annual,2022,naphtha combustion consumption by to the public,963.6661187999998,TJ,CO2,73300.0,kg/TJ,70636726.50803998,kg -47cdecbc-de9a-359a-ae59-4b8cb22f4c72,SESCO,II.1.1,Buenos Aires,AR-B,annual,2022,naphtha combustion consumption by to the public,963.6661187999998,TJ,CH4,3.0,kg/TJ,2890.9983563999995,kg -21ea4197-aa3c-3cdf-859a-1282154135c6,SESCO,II.1.1,Buenos Aires,AR-B,annual,2022,naphtha combustion consumption by to the public,963.6661187999998,TJ,N2O,0.6,kg/TJ,578.1996712799998,kg -b7a333b2-3066-3584-b606-388929371fdd,SESCO,II.1.1,Capital Federal,AR-C,annual,2022,naphtha combustion consumption by to the public,117.32610119999998,TJ,CO2,73300.0,kg/TJ,8600003.217959998,kg -aac583d6-d9ea-3508-80c8-45f1b18f1a69,SESCO,II.1.1,Capital Federal,AR-C,annual,2022,naphtha combustion consumption by to the public,117.32610119999998,TJ,CH4,3.0,kg/TJ,351.97830359999995,kg -a9182d8a-68d6-3ac2-b795-6c79f68c8b09,SESCO,II.1.1,Capital Federal,AR-C,annual,2022,naphtha combustion consumption by to the public,117.32610119999998,TJ,N2O,0.6,kg/TJ,70.39566071999998,kg -f3163b1a-ce8a-3f12-b16a-9a6f2d508ee4,SESCO,II.1.1,Catamarca,AR-K,annual,2022,naphtha combustion consumption by to the public,67.93515959999999,TJ,CO2,73300.0,kg/TJ,4979647.198679999,kg -1da685c4-8437-37bf-9e17-7774b7ab4f8a,SESCO,II.1.1,Catamarca,AR-K,annual,2022,naphtha combustion consumption by to the public,67.93515959999999,TJ,CH4,3.0,kg/TJ,203.80547879999997,kg -82672543-8fb5-3720-9fcd-aede9b8fd934,SESCO,II.1.1,Catamarca,AR-K,annual,2022,naphtha combustion consumption by to the public,67.93515959999999,TJ,N2O,0.6,kg/TJ,40.761095759999996,kg -1428ab9a-69ba-3abb-bec7-755ac0ff9bb4,SESCO,II.1.1,Chaco,AR-H,annual,2022,naphtha combustion consumption by to the public,261.2171716,TJ,CO2,73300.0,kg/TJ,19147218.67828,kg -1e2edd7d-f14d-399c-b1f0-3cabeb21fa13,SESCO,II.1.1,Chaco,AR-H,annual,2022,naphtha combustion consumption by to the public,261.2171716,TJ,CH4,3.0,kg/TJ,783.6515147999999,kg -73b73714-9805-3093-a404-5ec121945378,SESCO,II.1.1,Chaco,AR-H,annual,2022,naphtha combustion consumption by to the public,261.2171716,TJ,N2O,0.6,kg/TJ,156.73030296,kg -185c6855-18d7-36c1-8f8d-8fcece90d967,SESCO,II.1.1,Corrientes,AR-W,annual,2022,naphtha combustion consumption by to the public,210.0773444,TJ,CO2,73300.0,kg/TJ,15398669.344519999,kg -5f90a709-9c30-3c62-8c66-32564a36a247,SESCO,II.1.1,Corrientes,AR-W,annual,2022,naphtha combustion consumption by to the public,210.0773444,TJ,CH4,3.0,kg/TJ,630.2320331999999,kg -31c5c1f8-bbe3-36f1-93a5-e569e732c93d,SESCO,II.1.1,Corrientes,AR-W,annual,2022,naphtha combustion consumption by to the public,210.0773444,TJ,N2O,0.6,kg/TJ,126.04640663999999,kg -11ae5fe0-2b5b-3999-8ffc-540ee4782945,SESCO,II.1.1,Córdoba,AR-X,annual,2022,naphtha combustion consumption by to the public,384.93575119999997,TJ,CO2,73300.0,kg/TJ,28215790.56296,kg -492df281-6780-3b2b-b900-cc095b152d86,SESCO,II.1.1,Córdoba,AR-X,annual,2022,naphtha combustion consumption by to the public,384.93575119999997,TJ,CH4,3.0,kg/TJ,1154.8072536,kg -dabb99bc-8196-334c-b877-74c34d79806a,SESCO,II.1.1,Córdoba,AR-X,annual,2022,naphtha combustion consumption by to the public,384.93575119999997,TJ,N2O,0.6,kg/TJ,230.96145071999996,kg -aaa76564-a4d8-3940-8088-2434413b2647,SESCO,II.1.1,Entre Rios,AR-E,annual,2022,naphtha combustion consumption by to the public,234.89342799999997,TJ,CO2,73300.0,kg/TJ,17217688.2724,kg -bedb6df7-4aee-3fb7-945d-88dd10f8f7d7,SESCO,II.1.1,Entre Rios,AR-E,annual,2022,naphtha combustion consumption by to the public,234.89342799999997,TJ,CH4,3.0,kg/TJ,704.6802839999999,kg -061afa1d-da19-32ca-97e4-14161e41f740,SESCO,II.1.1,Entre Rios,AR-E,annual,2022,naphtha combustion consumption by to the public,234.89342799999997,TJ,N2O,0.6,kg/TJ,140.9360568,kg -47562cdc-54a1-323c-aa86-3eb2cc0c709c,SESCO,II.1.1,Formosa,AR-P,annual,2022,naphtha combustion consumption by to the public,39.802223999999995,TJ,CO2,73300.0,kg/TJ,2917503.0191999995,kg -630f69f4-25a0-3b49-a4b3-d2bc5d0323b0,SESCO,II.1.1,Formosa,AR-P,annual,2022,naphtha combustion consumption by to the public,39.802223999999995,TJ,CH4,3.0,kg/TJ,119.40667199999999,kg -08243b4b-e187-3ae1-83be-38e06b3c1f79,SESCO,II.1.1,Formosa,AR-P,annual,2022,naphtha combustion consumption by to the public,39.802223999999995,TJ,N2O,0.6,kg/TJ,23.881334399999997,kg -7a4cf242-556c-3ce8-b7b7-66515112c675,SESCO,II.1.1,La Rioja,AR-F,annual,2022,naphtha combustion consumption by to the public,86.78090959999999,TJ,CO2,73300.0,kg/TJ,6361040.673679999,kg -a96546be-952e-32c2-9202-49df01d9b6c0,SESCO,II.1.1,La Rioja,AR-F,annual,2022,naphtha combustion consumption by to the public,86.78090959999999,TJ,CH4,3.0,kg/TJ,260.3427288,kg -314c51d1-3b47-3943-a589-962c41afb704,SESCO,II.1.1,La Rioja,AR-F,annual,2022,naphtha combustion consumption by to the public,86.78090959999999,TJ,N2O,0.6,kg/TJ,52.06854575999999,kg -5b819d89-bc1c-3751-9008-c40e1cc38169,SESCO,II.1.1,Mendoza,AR-M,annual,2022,naphtha combustion consumption by to the public,370.88435999999996,TJ,CO2,73300.0,kg/TJ,27185823.587999996,kg -d22c7b65-1d7c-3f44-9ff0-fb43d05269f4,SESCO,II.1.1,Mendoza,AR-M,annual,2022,naphtha combustion consumption by to the public,370.88435999999996,TJ,CH4,3.0,kg/TJ,1112.6530799999998,kg -897cbb99-087c-398e-aa37-6a841b4a97ce,SESCO,II.1.1,Mendoza,AR-M,annual,2022,naphtha combustion consumption by to the public,370.88435999999996,TJ,N2O,0.6,kg/TJ,222.53061599999998,kg -f1527afb-bd6d-32a0-a4b3-948b03e3fa7a,SESCO,II.1.1,Misiones,AR-N,annual,2022,naphtha combustion consumption by to the public,301.4113872,TJ,CO2,73300.0,kg/TJ,22093454.68176,kg -0bbc3e2c-cff8-33a5-a3c6-97b2041a0758,SESCO,II.1.1,Misiones,AR-N,annual,2022,naphtha combustion consumption by to the public,301.4113872,TJ,CH4,3.0,kg/TJ,904.2341615999999,kg -3f5447ba-58d8-3ded-ae10-ae1fe1b49845,SESCO,II.1.1,Misiones,AR-N,annual,2022,naphtha combustion consumption by to the public,301.4113872,TJ,N2O,0.6,kg/TJ,180.84683231999998,kg -7cfeb52d-6adf-3c44-b183-29afdec065c7,SESCO,II.1.1,San Juan,AR-J,annual,2022,naphtha combustion consumption by to the public,75.8956044,TJ,CO2,73300.0,kg/TJ,5563147.802519999,kg -ec88ba95-f959-3c09-9430-07cf13949259,SESCO,II.1.1,San Juan,AR-J,annual,2022,naphtha combustion consumption by to the public,75.8956044,TJ,CH4,3.0,kg/TJ,227.6868132,kg -69fb1157-625b-3b9d-b2fa-ca0e2c0dcc92,SESCO,II.1.1,San Juan,AR-J,annual,2022,naphtha combustion consumption by to the public,75.8956044,TJ,N2O,0.6,kg/TJ,45.53736264,kg -8793e6d3-d5f4-38c0-9b0f-439c2aef25d0,SESCO,II.1.1,San Luis,AR-D,annual,2022,naphtha combustion consumption by to the public,23.911487599999997,TJ,CO2,73300.0,kg/TJ,1752712.0410799999,kg -7654903e-3fbf-3c7d-8ec5-ec94212c0405,SESCO,II.1.1,San Luis,AR-D,annual,2022,naphtha combustion consumption by to the public,23.911487599999997,TJ,CH4,3.0,kg/TJ,71.73446279999999,kg -a47ec14f-6a9f-3646-90cc-d2b5ab694e69,SESCO,II.1.1,San Luis,AR-D,annual,2022,naphtha combustion consumption by to the public,23.911487599999997,TJ,N2O,0.6,kg/TJ,14.346892559999999,kg -0ddf02c6-aaba-3bc6-8aa4-2887da464bb6,SESCO,II.1.1,Santa Fe,AR-S,annual,2022,naphtha combustion consumption by to the public,478.50113079999994,TJ,CO2,73300.0,kg/TJ,35074132.88764,kg -bfd9c283-6e5e-3577-a30b-c749955759d1,SESCO,II.1.1,Santa Fe,AR-S,annual,2022,naphtha combustion consumption by to the public,478.50113079999994,TJ,CH4,3.0,kg/TJ,1435.5033924,kg -92c844ee-837e-3996-9fbb-c85d34b847fa,SESCO,II.1.1,Santa Fe,AR-S,annual,2022,naphtha combustion consumption by to the public,478.50113079999994,TJ,N2O,0.6,kg/TJ,287.10067847999994,kg -2e3c280e-f4f5-3f6f-85c2-ef4c99431e93,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2022,naphtha combustion consumption by to the public,151.39921719999998,TJ,CO2,73300.0,kg/TJ,11097562.62076,kg -808f0a48-f0d2-3779-8841-146d69b17b05,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2022,naphtha combustion consumption by to the public,151.39921719999998,TJ,CH4,3.0,kg/TJ,454.1976516,kg -c1236f29-37e1-3073-8413-67f107ceb5bc,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2022,naphtha combustion consumption by to the public,151.39921719999998,TJ,N2O,0.6,kg/TJ,90.83953031999998,kg -e2cfcab3-c9b6-3f74-8550-54730cc78492,SESCO,II.1.1,Tucuman,AR-T,annual,2022,naphtha combustion consumption by to the public,33.771584,TJ,CO2,73300.0,kg/TJ,2475457.1072,kg -4a2e4759-1552-330b-9f0f-aba20c174fe3,SESCO,II.1.1,Tucuman,AR-T,annual,2022,naphtha combustion consumption by to the public,33.771584,TJ,CH4,3.0,kg/TJ,101.314752,kg -49cd369c-5df5-3f4e-916a-db4d3ce2b2a2,SESCO,II.1.1,Tucuman,AR-T,annual,2022,naphtha combustion consumption by to the public,33.771584,TJ,N2O,0.6,kg/TJ,20.262950399999998,kg -5223c930-780d-3fdc-bf2e-ee302c33ef70,SESCO,II.1.1,Buenos Aires,AR-B,annual,2022,naphtha combustion consumption by to the public,111.4763804,TJ,CO2,73300.0,kg/TJ,8171218.68332,kg -7c93a33e-534d-381d-af78-00812b04da1b,SESCO,II.1.1,Buenos Aires,AR-B,annual,2022,naphtha combustion consumption by to the public,111.4763804,TJ,CH4,3.0,kg/TJ,334.4291412,kg -834e619a-4d81-30c8-a0df-c7cc4b2588c8,SESCO,II.1.1,Buenos Aires,AR-B,annual,2022,naphtha combustion consumption by to the public,111.4763804,TJ,N2O,0.6,kg/TJ,66.88582824,kg -3aadcf27-76e6-3649-9a25-4dc179cdef15,SESCO,II.1.1,Capital Federal,AR-C,annual,2022,naphtha combustion consumption by to the public,20.564482399999996,TJ,CO2,73300.0,kg/TJ,1507376.5599199997,kg -6bfc05d0-763a-304b-a623-a4f4e2311be1,SESCO,II.1.1,Capital Federal,AR-C,annual,2022,naphtha combustion consumption by to the public,20.564482399999996,TJ,CH4,3.0,kg/TJ,61.69344719999999,kg -4d326fdb-19e8-3fec-98ee-c6f379b958db,SESCO,II.1.1,Capital Federal,AR-C,annual,2022,naphtha combustion consumption by to the public,20.564482399999996,TJ,N2O,0.6,kg/TJ,12.338689439999998,kg -fa639716-7f7c-3fe1-b1ae-6b88b734da6d,SESCO,II.1.1,Catamarca,AR-K,annual,2022,naphtha combustion consumption by to the public,8.9253472,TJ,CO2,73300.0,kg/TJ,654227.94976,kg -e53ddb7d-f51c-3b13-bf9b-d8081a41460a,SESCO,II.1.1,Catamarca,AR-K,annual,2022,naphtha combustion consumption by to the public,8.9253472,TJ,CH4,3.0,kg/TJ,26.7760416,kg -f85156d7-61b5-39f4-9ea7-37ae7edcecd2,SESCO,II.1.1,Catamarca,AR-K,annual,2022,naphtha combustion consumption by to the public,8.9253472,TJ,N2O,0.6,kg/TJ,5.355208319999999,kg -fbba3e00-97ff-3733-a6bb-455de2bd7cad,SESCO,II.1.1,Chaco,AR-H,annual,2022,naphtha combustion consumption by to the public,19.448814,TJ,CO2,73300.0,kg/TJ,1425598.0662,kg -7aaf211e-0e31-3215-8098-0014f5747bac,SESCO,II.1.1,Chaco,AR-H,annual,2022,naphtha combustion consumption by to the public,19.448814,TJ,CH4,3.0,kg/TJ,58.346441999999996,kg -45712485-c8f6-3b1b-9140-efdab508cc81,SESCO,II.1.1,Chaco,AR-H,annual,2022,naphtha combustion consumption by to the public,19.448814,TJ,N2O,0.6,kg/TJ,11.6692884,kg -6bb8da48-a959-373b-9cc1-f08640c7ec9f,SESCO,II.1.1,Corrientes,AR-W,annual,2022,naphtha combustion consumption by to the public,11.7899012,TJ,CO2,73300.0,kg/TJ,864199.75796,kg -545ce8cd-794c-3b23-aae4-ddd8cb6a0a1e,SESCO,II.1.1,Corrientes,AR-W,annual,2022,naphtha combustion consumption by to the public,11.7899012,TJ,CH4,3.0,kg/TJ,35.369703599999994,kg -709356c7-6945-39c2-8ba6-d07114c9c524,SESCO,II.1.1,Corrientes,AR-W,annual,2022,naphtha combustion consumption by to the public,11.7899012,TJ,N2O,0.6,kg/TJ,7.0739407199999995,kg -cef5870d-8838-3a06-901e-c5680df7b63a,SESCO,II.1.1,Córdoba,AR-X,annual,2022,naphtha combustion consumption by to the public,58.286135599999994,TJ,CO2,73300.0,kg/TJ,4272373.73948,kg -40fc0cde-dd10-3481-9fae-205f94143e04,SESCO,II.1.1,Córdoba,AR-X,annual,2022,naphtha combustion consumption by to the public,58.286135599999994,TJ,CH4,3.0,kg/TJ,174.85840679999998,kg -404f3d21-ce81-3d4b-893b-786b23ddae55,SESCO,II.1.1,Córdoba,AR-X,annual,2022,naphtha combustion consumption by to the public,58.286135599999994,TJ,N2O,0.6,kg/TJ,34.97168136,kg -a9e4a284-6d0d-39e6-a2f3-b48a905e724a,SESCO,II.1.1,Entre Rios,AR-E,annual,2022,naphtha combustion consumption by to the public,25.600066799999997,TJ,CO2,73300.0,kg/TJ,1876484.8964399998,kg -a500caf6-1261-340f-8b32-c5417d236328,SESCO,II.1.1,Entre Rios,AR-E,annual,2022,naphtha combustion consumption by to the public,25.600066799999997,TJ,CH4,3.0,kg/TJ,76.8002004,kg -457c5a50-f586-37c8-8365-909cdb4bab9d,SESCO,II.1.1,Entre Rios,AR-E,annual,2022,naphtha combustion consumption by to the public,25.600066799999997,TJ,N2O,0.6,kg/TJ,15.360040079999997,kg -1409b495-5e9b-385d-98c5-00539e4b7f85,SESCO,II.1.1,Formosa,AR-P,annual,2022,naphtha combustion consumption by to the public,3.6485372,TJ,CO2,73300.0,kg/TJ,267437.77676,kg -553e5170-257b-3731-95e9-2b3a3638d902,SESCO,II.1.1,Formosa,AR-P,annual,2022,naphtha combustion consumption by to the public,3.6485372,TJ,CH4,3.0,kg/TJ,10.9456116,kg -4bd1ac58-e6f9-387f-bc3c-8aa0978f32c5,SESCO,II.1.1,Formosa,AR-P,annual,2022,naphtha combustion consumption by to the public,3.6485372,TJ,N2O,0.6,kg/TJ,2.1891223199999996,kg -05a74031-a725-33a6-8f43-e1525b11db68,SESCO,II.1.1,La Rioja,AR-F,annual,2022,naphtha combustion consumption by to the public,8.593662,TJ,CO2,73300.0,kg/TJ,629915.4246,kg -91d02b97-523e-3f7f-9cd7-44b7c40e8b45,SESCO,II.1.1,La Rioja,AR-F,annual,2022,naphtha combustion consumption by to the public,8.593662,TJ,CH4,3.0,kg/TJ,25.780986,kg -b4d6095d-cd0a-3923-b926-042d6ccd736f,SESCO,II.1.1,La Rioja,AR-F,annual,2022,naphtha combustion consumption by to the public,8.593662,TJ,N2O,0.6,kg/TJ,5.1561972,kg -8bbb7cb5-c23e-36e7-93e7-ab661b6dfbf2,SESCO,II.1.1,Mendoza,AR-M,annual,2022,naphtha combustion consumption by to the public,26.2031308,TJ,CO2,73300.0,kg/TJ,1920689.48764,kg -61e21336-ae33-3aaf-b1bc-c96cbac794c1,SESCO,II.1.1,Mendoza,AR-M,annual,2022,naphtha combustion consumption by to the public,26.2031308,TJ,CH4,3.0,kg/TJ,78.6093924,kg -03362f79-0fb5-3bee-8302-650f5c7177d6,SESCO,II.1.1,Mendoza,AR-M,annual,2022,naphtha combustion consumption by to the public,26.2031308,TJ,N2O,0.6,kg/TJ,15.721878479999999,kg -c5aebf16-b39d-37d7-a497-d05972a6bcb4,SESCO,II.1.1,Misiones,AR-N,annual,2022,naphtha combustion consumption by to the public,20.2327972,TJ,CO2,73300.0,kg/TJ,1483064.03476,kg -fcf6477d-cf64-3e75-b362-57677208c51e,SESCO,II.1.1,Misiones,AR-N,annual,2022,naphtha combustion consumption by to the public,20.2327972,TJ,CH4,3.0,kg/TJ,60.6983916,kg -207cc4bb-f39f-32ba-ac6b-0bc22a1b3f1e,SESCO,II.1.1,Misiones,AR-N,annual,2022,naphtha combustion consumption by to the public,20.2327972,TJ,N2O,0.6,kg/TJ,12.13967832,kg -76c264cf-dce4-3297-832d-e6254ca0ed54,SESCO,II.1.1,San Juan,AR-J,annual,2022,naphtha combustion consumption by to the public,10.4631604,TJ,CO2,73300.0,kg/TJ,766949.65732,kg -5a30e5ce-6550-3aa1-98e7-5eaadcf89dd6,SESCO,II.1.1,San Juan,AR-J,annual,2022,naphtha combustion consumption by to the public,10.4631604,TJ,CH4,3.0,kg/TJ,31.3894812,kg -de7cc01e-2bd4-3126-bfb1-bad394911fbb,SESCO,II.1.1,San Juan,AR-J,annual,2022,naphtha combustion consumption by to the public,10.4631604,TJ,N2O,0.6,kg/TJ,6.27789624,kg -810f41be-5118-32ae-8d2b-08861d05708c,SESCO,II.1.1,San Luis,AR-D,annual,2022,naphtha combustion consumption by to the public,1.9599579999999999,TJ,CO2,73300.0,kg/TJ,143664.9214,kg -258c885b-b8ec-349f-a978-1667a9c26141,SESCO,II.1.1,San Luis,AR-D,annual,2022,naphtha combustion consumption by to the public,1.9599579999999999,TJ,CH4,3.0,kg/TJ,5.879873999999999,kg -f3b19662-4605-34c4-ac45-8748f4ea2d81,SESCO,II.1.1,San Luis,AR-D,annual,2022,naphtha combustion consumption by to the public,1.9599579999999999,TJ,N2O,0.6,kg/TJ,1.1759747999999999,kg -c1e8bdab-ec5a-3ecd-966d-ccaae08c4b5f,SESCO,II.1.1,Santa Fe,AR-S,annual,2022,naphtha combustion consumption by to the public,54.637598399999995,TJ,CO2,73300.0,kg/TJ,4004935.9627199997,kg -f87037b3-0668-33b8-afa6-1e84bfe8903b,SESCO,II.1.1,Santa Fe,AR-S,annual,2022,naphtha combustion consumption by to the public,54.637598399999995,TJ,CH4,3.0,kg/TJ,163.91279519999998,kg -4c397ebc-0d1e-3479-9a8a-74a6e3bad819,SESCO,II.1.1,Santa Fe,AR-S,annual,2022,naphtha combustion consumption by to the public,54.637598399999995,TJ,N2O,0.6,kg/TJ,32.782559039999995,kg -a13292ff-5b53-31fe-aa6a-af3e4fa50d73,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2022,naphtha combustion consumption by to the public,13.7800124,TJ,CO2,73300.0,kg/TJ,1010074.9089200001,kg -ced3233e-3fc3-3d9a-ab72-1997da97a21a,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2022,naphtha combustion consumption by to the public,13.7800124,TJ,CH4,3.0,kg/TJ,41.3400372,kg -96edd42a-2b1e-3dab-a1ef-b267c61de43f,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2022,naphtha combustion consumption by to the public,13.7800124,TJ,N2O,0.6,kg/TJ,8.26800744,kg -847327ac-fe79-372d-b193-e98460af6c58,SESCO,II.1.1,Tucuman,AR-T,annual,2022,naphtha combustion consumption by to the public,3.4977711999999994,TJ,CO2,73300.0,kg/TJ,256386.62895999994,kg -41dae791-408b-3bcf-b101-388ab24cb91f,SESCO,II.1.1,Tucuman,AR-T,annual,2022,naphtha combustion consumption by to the public,3.4977711999999994,TJ,CH4,3.0,kg/TJ,10.493313599999999,kg -db4d3adf-6b23-31f8-ac26-3a9a0ebb45ad,SESCO,II.1.1,Tucuman,AR-T,annual,2022,naphtha combustion consumption by to the public,3.4977711999999994,TJ,N2O,0.6,kg/TJ,2.0986627199999996,kg -7dbb7004-4972-3a87-a3fc-bf3d187183c0,SESCO,II.5.1,Santa Fe,AR-S,annual,2022,naphtha combustion consumption by agriculture machines,2.6233283999999997,TJ,CO2,73300.0,kg/TJ,192289.97171999997,kg -a28bce01-9646-3aaf-9adb-fe9bb3ce835c,SESCO,II.5.1,Santa Fe,AR-S,annual,2022,naphtha combustion consumption by agriculture machines,2.6233283999999997,TJ,CH4,3.0,kg/TJ,7.869985199999999,kg -713afb61-0dc2-3677-afef-3d8697214ba2,SESCO,II.5.1,Santa Fe,AR-S,annual,2022,naphtha combustion consumption by agriculture machines,2.6233283999999997,TJ,N2O,0.6,kg/TJ,1.5739970399999998,kg -b67e8486-1524-32ab-b807-48475e8dc652,SESCO,II.5.1,Santa Fe,AR-S,annual,2022,naphtha combustion consumption by agriculture machines,0.9649023999999999,TJ,CO2,73300.0,kg/TJ,70727.34591999999,kg -f60eac9b-7501-3fc9-9071-fa3c1c583de4,SESCO,II.5.1,Santa Fe,AR-S,annual,2022,naphtha combustion consumption by agriculture machines,0.9649023999999999,TJ,CH4,3.0,kg/TJ,2.8947072,kg -c2b690bd-f9b5-3de9-bd7d-035b9d9e86e7,SESCO,II.5.1,Santa Fe,AR-S,annual,2022,naphtha combustion consumption by agriculture machines,0.9649023999999999,TJ,N2O,0.6,kg/TJ,0.5789414399999999,kg -62ce5004-4f7b-31f6-81be-c248cedafdd5,SESCO,II.1.1,Buenos Aires,AR-B,annual,2022,naphtha combustion consumption by to the public,10475.462905599998,TJ,CO2,73300.0,kg/TJ,767851430.9804798,kg -1a1738f6-736b-3308-9c86-3e225b1e5fe1,SESCO,II.1.1,Buenos Aires,AR-B,annual,2022,naphtha combustion consumption by to the public,10475.462905599998,TJ,CH4,3.0,kg/TJ,31426.388716799993,kg -0fd030ba-c787-3c70-ad28-5071469ff134,SESCO,II.1.1,Buenos Aires,AR-B,annual,2022,naphtha combustion consumption by to the public,10475.462905599998,TJ,N2O,0.6,kg/TJ,6285.277743359999,kg -a047d552-a340-3aaf-977d-cce46b566104,SESCO,II.1.1,Capital Federal,AR-C,annual,2022,naphtha combustion consumption by to the public,2588.8632924,TJ,CO2,73300.0,kg/TJ,189763679.33291999,kg -cd13592b-c406-3909-bff5-961147410cba,SESCO,II.1.1,Capital Federal,AR-C,annual,2022,naphtha combustion consumption by to the public,2588.8632924,TJ,CH4,3.0,kg/TJ,7766.5898772,kg -e4e8e665-07d2-3c10-8574-8ef56f859490,SESCO,II.1.1,Capital Federal,AR-C,annual,2022,naphtha combustion consumption by to the public,2588.8632924,TJ,N2O,0.6,kg/TJ,1553.3179754399998,kg -1438c18e-f3b2-39f6-9419-e508f27a9462,SESCO,II.1.1,Catamarca,AR-K,annual,2022,naphtha combustion consumption by to the public,417.9535052,TJ,CO2,73300.0,kg/TJ,30635991.93116,kg -1f08e865-bde0-3f54-a252-468e9e30be6f,SESCO,II.1.1,Catamarca,AR-K,annual,2022,naphtha combustion consumption by to the public,417.9535052,TJ,CH4,3.0,kg/TJ,1253.8605155999999,kg -18946d87-d3c1-3ba1-83f8-d9c4277e1100,SESCO,II.1.1,Catamarca,AR-K,annual,2022,naphtha combustion consumption by to the public,417.9535052,TJ,N2O,0.6,kg/TJ,250.77210312,kg -2a41bfcc-7e2e-3cd5-a262-dbfe99feaec1,SESCO,II.1.1,Chaco,AR-H,annual,2022,naphtha combustion consumption by to the public,762.3935087999998,TJ,CO2,73300.0,kg/TJ,55883444.19503999,kg -f292d84d-8da1-34e7-90a3-63b6b729991b,SESCO,II.1.1,Chaco,AR-H,annual,2022,naphtha combustion consumption by to the public,762.3935087999998,TJ,CH4,3.0,kg/TJ,2287.1805263999995,kg -ddf2f102-be41-392b-8b8d-cc05ba040a87,SESCO,II.1.1,Chaco,AR-H,annual,2022,naphtha combustion consumption by to the public,762.3935087999998,TJ,N2O,0.6,kg/TJ,457.4361052799999,kg -ca64860e-6423-334e-b7cf-68919db57d70,SESCO,II.1.1,Chubut,AR-U,annual,2022,naphtha combustion consumption by to the public,1608.4018411999998,TJ,CO2,73300.0,kg/TJ,117895854.95995998,kg -656c16a4-c7d1-3d1d-94ec-546298e0a2fe,SESCO,II.1.1,Chubut,AR-U,annual,2022,naphtha combustion consumption by to the public,1608.4018411999998,TJ,CH4,3.0,kg/TJ,4825.2055236,kg -d87fa77f-8ef4-3c33-a6ba-bb2eb9eb9ad1,SESCO,II.1.1,Chubut,AR-U,annual,2022,naphtha combustion consumption by to the public,1608.4018411999998,TJ,N2O,0.6,kg/TJ,965.0411047199998,kg -11a9aeea-9365-3855-bd5f-caddaf2a2d41,SESCO,II.1.1,Corrientes,AR-W,annual,2022,naphtha combustion consumption by to the public,1091.1840015999999,TJ,CO2,73300.0,kg/TJ,79983787.31728,kg -a5ec78c3-1e22-3169-8972-0b6515d81c85,SESCO,II.1.1,Corrientes,AR-W,annual,2022,naphtha combustion consumption by to the public,1091.1840015999999,TJ,CH4,3.0,kg/TJ,3273.5520048,kg -ba08b7c0-0626-3709-80c4-be25bec55871,SESCO,II.1.1,Corrientes,AR-W,annual,2022,naphtha combustion consumption by to the public,1091.1840015999999,TJ,N2O,0.6,kg/TJ,654.7104009599999,kg -7ba44239-f805-39cd-89bc-0a0a1abcdd09,SESCO,II.1.1,Córdoba,AR-X,annual,2022,naphtha combustion consumption by to the public,2503.8011151999995,TJ,CO2,73300.0,kg/TJ,183528621.74415997,kg -214049a6-3a21-34ed-818c-57e933636927,SESCO,II.1.1,Córdoba,AR-X,annual,2022,naphtha combustion consumption by to the public,2503.8011151999995,TJ,CH4,3.0,kg/TJ,7511.403345599998,kg -fc58cca0-22d2-3e6c-b1fc-59d943b949ca,SESCO,II.1.1,Córdoba,AR-X,annual,2022,naphtha combustion consumption by to the public,2503.8011151999995,TJ,N2O,0.6,kg/TJ,1502.2806691199996,kg -06fc0e89-a0e3-3dd4-ad3b-f7df6e867a5d,SESCO,II.1.1,Entre Rios,AR-E,annual,2022,naphtha combustion consumption by to the public,1081.1731392,TJ,CO2,73300.0,kg/TJ,79249991.10336,kg -acebac0c-3a6e-3d28-9c07-60bd4fbd0c9d,SESCO,II.1.1,Entre Rios,AR-E,annual,2022,naphtha combustion consumption by to the public,1081.1731392,TJ,CH4,3.0,kg/TJ,3243.5194175999995,kg -3c933508-edfc-30b3-a9f1-43c5774f7c3e,SESCO,II.1.1,Entre Rios,AR-E,annual,2022,naphtha combustion consumption by to the public,1081.1731392,TJ,N2O,0.6,kg/TJ,648.70388352,kg -9dc32650-b142-3978-900b-3aaf00fa300c,SESCO,II.1.1,Formosa,AR-P,annual,2022,naphtha combustion consumption by to the public,926.2459975999999,TJ,CO2,73300.0,kg/TJ,67893831.62407999,kg -9fcf0ed3-416e-317d-85a5-b91c6b353f52,SESCO,II.1.1,Formosa,AR-P,annual,2022,naphtha combustion consumption by to the public,926.2459975999999,TJ,CH4,3.0,kg/TJ,2778.7379927999996,kg -0fc5d5f2-9481-3b96-9325-1c326825b4c0,SESCO,II.1.1,Formosa,AR-P,annual,2022,naphtha combustion consumption by to the public,926.2459975999999,TJ,N2O,0.6,kg/TJ,555.7475985599999,kg -dc618bba-6d03-3d70-8fb8-beb29281e321,SESCO,II.1.1,Jujuy,AR-Y,annual,2022,naphtha combustion consumption by to the public,251.20630919999996,TJ,CO2,73300.0,kg/TJ,18413422.46436,kg -35f80765-9534-3b3c-872d-743eb34336d1,SESCO,II.1.1,Jujuy,AR-Y,annual,2022,naphtha combustion consumption by to the public,251.20630919999996,TJ,CH4,3.0,kg/TJ,753.6189275999999,kg -db5e23bb-add1-35ba-949b-cd82d107b66c,SESCO,II.1.1,Jujuy,AR-Y,annual,2022,naphtha combustion consumption by to the public,251.20630919999996,TJ,N2O,0.6,kg/TJ,150.72378551999998,kg -a26932a5-af9f-34ff-8631-053ce0afafd4,SESCO,II.1.1,La Pampa,AR-L,annual,2022,naphtha combustion consumption by to the public,231.24489079999998,TJ,CO2,73300.0,kg/TJ,16950250.49564,kg -78f2dc59-5438-3f3b-b251-2c0b74641f90,SESCO,II.1.1,La Pampa,AR-L,annual,2022,naphtha combustion consumption by to the public,231.24489079999998,TJ,CH4,3.0,kg/TJ,693.7346723999999,kg -11986d50-2f52-39d6-9d24-4998b34e56f9,SESCO,II.1.1,La Pampa,AR-L,annual,2022,naphtha combustion consumption by to the public,231.24489079999998,TJ,N2O,0.6,kg/TJ,138.74693448,kg -3859b8fd-ab1b-323f-801c-f441a3ffb23b,SESCO,II.1.1,La Rioja,AR-F,annual,2022,naphtha combustion consumption by to the public,134.6038848,TJ,CO2,73300.0,kg/TJ,9866464.75584,kg -0d6aeb15-7c47-32ec-9ac1-5ec029a22fdd,SESCO,II.1.1,La Rioja,AR-F,annual,2022,naphtha combustion consumption by to the public,134.6038848,TJ,CH4,3.0,kg/TJ,403.8116544,kg -d21dfc08-01d2-3e0c-a9bd-8674d8cbfe90,SESCO,II.1.1,La Rioja,AR-F,annual,2022,naphtha combustion consumption by to the public,134.6038848,TJ,N2O,0.6,kg/TJ,80.76233088,kg -5e37e802-ce64-3307-b937-b1c3dec26867,SESCO,II.1.1,Mendoza,AR-M,annual,2022,naphtha combustion consumption by to the public,503.64889959999994,TJ,CO2,73300.0,kg/TJ,36917464.340679996,kg -3c3408bd-abd1-3190-bdc0-35dee609db4f,SESCO,II.1.1,Mendoza,AR-M,annual,2022,naphtha combustion consumption by to the public,503.64889959999994,TJ,CH4,3.0,kg/TJ,1510.9466988,kg -bb858e1d-ce39-37e4-a4f7-1d55be9da075,SESCO,II.1.1,Mendoza,AR-M,annual,2022,naphtha combustion consumption by to the public,503.64889959999994,TJ,N2O,0.6,kg/TJ,302.18933975999994,kg -886ff021-3fe6-389a-b276-dac920d2cead,SESCO,II.1.1,Misiones,AR-N,annual,2022,naphtha combustion consumption by to the public,1803.5835048,TJ,CO2,73300.0,kg/TJ,132202670.90183999,kg -b9eb1160-6433-3e92-b17f-c6947d87244d,SESCO,II.1.1,Misiones,AR-N,annual,2022,naphtha combustion consumption by to the public,1803.5835048,TJ,CH4,3.0,kg/TJ,5410.7505144,kg -d86e8d4a-1bcb-3b5d-b1ac-0880d72251e6,SESCO,II.1.1,Misiones,AR-N,annual,2022,naphtha combustion consumption by to the public,1803.5835048,TJ,N2O,0.6,kg/TJ,1082.1501028799998,kg -32f06480-d8ea-34c1-b8c9-fe1f1770bfca,SESCO,II.1.1,Neuquén,AR-Q,annual,2022,naphtha combustion consumption by to the public,487.51693759999995,TJ,CO2,73300.0,kg/TJ,35734991.52608,kg -d7a408c2-458f-3de0-91c9-fee4610f698f,SESCO,II.1.1,Neuquén,AR-Q,annual,2022,naphtha combustion consumption by to the public,487.51693759999995,TJ,CH4,3.0,kg/TJ,1462.5508128,kg -f41df249-6ee1-3cbd-b928-78804d011e2c,SESCO,II.1.1,Neuquén,AR-Q,annual,2022,naphtha combustion consumption by to the public,487.51693759999995,TJ,N2O,0.6,kg/TJ,292.51016255999997,kg -7f7d3a83-26c2-3ca1-b0f1-92c7c025d172,SESCO,II.1.1,Rio Negro,AR-R,annual,2022,naphtha combustion consumption by to the public,821.5239339999998,TJ,CO2,73300.0,kg/TJ,60217704.362199984,kg -dc526658-c9d1-3072-a8f1-2114ae93de28,SESCO,II.1.1,Rio Negro,AR-R,annual,2022,naphtha combustion consumption by to the public,821.5239339999998,TJ,CH4,3.0,kg/TJ,2464.5718019999995,kg -ec3e12bd-e93e-3648-a22b-4bc2d89ceda3,SESCO,II.1.1,Rio Negro,AR-R,annual,2022,naphtha combustion consumption by to the public,821.5239339999998,TJ,N2O,0.6,kg/TJ,492.91436039999985,kg -4df4b0d3-b3b7-3c6a-8b36-4b102e7e40d6,SESCO,II.1.1,Salta,AR-A,annual,2022,naphtha combustion consumption by to the public,228.07880479999997,TJ,CO2,73300.0,kg/TJ,16718176.391839998,kg -22578eb4-66b8-3c35-810a-8f952014e9a8,SESCO,II.1.1,Salta,AR-A,annual,2022,naphtha combustion consumption by to the public,228.07880479999997,TJ,CH4,3.0,kg/TJ,684.2364144,kg -42f904d3-772a-3cf6-93c8-8eaff1daf91e,SESCO,II.1.1,Salta,AR-A,annual,2022,naphtha combustion consumption by to the public,228.07880479999997,TJ,N2O,0.6,kg/TJ,136.84728287999997,kg -c78e7150-3401-3599-8d61-fedd56eaee69,SESCO,II.1.1,San Juan,AR-J,annual,2022,naphtha combustion consumption by to the public,220.81188359999996,TJ,CO2,73300.0,kg/TJ,16185511.067879997,kg -4fd34002-99bc-35a1-beba-11aa27aa572d,SESCO,II.1.1,San Juan,AR-J,annual,2022,naphtha combustion consumption by to the public,220.81188359999996,TJ,CH4,3.0,kg/TJ,662.4356507999998,kg -44fde29b-57c7-3ad3-bcdb-6a0785d9205a,SESCO,II.1.1,San Juan,AR-J,annual,2022,naphtha combustion consumption by to the public,220.81188359999996,TJ,N2O,0.6,kg/TJ,132.48713015999996,kg -55d589c5-d691-3a04-9f6c-65b5f104bae6,SESCO,II.1.1,San Luis,AR-D,annual,2022,naphtha combustion consumption by to the public,575.7150475999999,TJ,CO2,73300.0,kg/TJ,42199912.98908,kg -d039cb14-5fed-3f20-8d23-5b0e93930d3c,SESCO,II.1.1,San Luis,AR-D,annual,2022,naphtha combustion consumption by to the public,575.7150475999999,TJ,CH4,3.0,kg/TJ,1727.1451427999998,kg -6013eaef-086c-3147-9cd6-684e93456426,SESCO,II.1.1,San Luis,AR-D,annual,2022,naphtha combustion consumption by to the public,575.7150475999999,TJ,N2O,0.6,kg/TJ,345.42902855999995,kg -ec751792-14a7-3a7e-ba81-8bba85d60be3,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2022,naphtha combustion consumption by to the public,925.4318612,TJ,CO2,73300.0,kg/TJ,67834155.42596,kg -307244e4-203c-32b8-935b-f1ed08786571,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2022,naphtha combustion consumption by to the public,925.4318612,TJ,CH4,3.0,kg/TJ,2776.2955836,kg -2ff0e2f9-2666-3b5f-9aa8-ed7f62298110,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2022,naphtha combustion consumption by to the public,925.4318612,TJ,N2O,0.6,kg/TJ,555.25911672,kg -d08add7e-aea8-3f17-9741-d11505b94aa6,SESCO,II.1.1,Santa Fe,AR-S,annual,2022,naphtha combustion consumption by to the public,2586.5113428,TJ,CO2,73300.0,kg/TJ,189591281.42723998,kg -c514b580-9fc6-364c-b3a3-af411264cad1,SESCO,II.1.1,Santa Fe,AR-S,annual,2022,naphtha combustion consumption by to the public,2586.5113428,TJ,CH4,3.0,kg/TJ,7759.534028399999,kg -674fface-031d-3ead-a44e-94a6170b714e,SESCO,II.1.1,Santa Fe,AR-S,annual,2022,naphtha combustion consumption by to the public,2586.5113428,TJ,N2O,0.6,kg/TJ,1551.90680568,kg -c1946e76-bf0a-3bad-85a8-2722bc1fcefe,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2022,naphtha combustion consumption by to the public,458.2984868,TJ,CO2,73300.0,kg/TJ,33593279.08244,kg -24c81ede-6500-3c39-8829-512ad3eef33e,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2022,naphtha combustion consumption by to the public,458.2984868,TJ,CH4,3.0,kg/TJ,1374.8954604,kg -6d7ddbe2-fe96-30c6-939a-8c9f1d33f115,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2022,naphtha combustion consumption by to the public,458.2984868,TJ,N2O,0.6,kg/TJ,274.97909208,kg -633af1a4-0f29-388c-ae39-8d16eb970c32,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2022,naphtha combustion consumption by to the public,180.9192,TJ,CO2,73300.0,kg/TJ,13261377.36,kg -0d7f0f9a-c330-3d97-af5b-c40130e849a8,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2022,naphtha combustion consumption by to the public,180.9192,TJ,CH4,3.0,kg/TJ,542.7575999999999,kg -01fd9174-8bdd-310f-ba97-06904ebd8fb5,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2022,naphtha combustion consumption by to the public,180.9192,TJ,N2O,0.6,kg/TJ,108.55152,kg -338eee02-cff0-3f3b-8d67-56b31b06a1e1,SESCO,II.1.1,Tucuman,AR-T,annual,2022,naphtha combustion consumption by to the public,207.72539479999998,TJ,CO2,73300.0,kg/TJ,15226271.438839998,kg -a0b2d53b-0b21-352e-b625-0e4bff2d2149,SESCO,II.1.1,Tucuman,AR-T,annual,2022,naphtha combustion consumption by to the public,207.72539479999998,TJ,CH4,3.0,kg/TJ,623.1761843999999,kg -6d29fdad-0285-3201-9b61-4690e90c0c7b,SESCO,II.1.1,Tucuman,AR-T,annual,2022,naphtha combustion consumption by to the public,207.72539479999998,TJ,N2O,0.6,kg/TJ,124.63523687999998,kg -44b5aef2-a719-3851-8322-b52b8aea0f28,SESCO,II.1.1,Buenos Aires,AR-B,annual,2022,naphtha combustion consumption by to the public,3273.3107791999996,TJ,CO2,73300.0,kg/TJ,239933680.11535996,kg -76dbbd7b-157c-3796-80fa-8c9f771c3aab,SESCO,II.1.1,Buenos Aires,AR-B,annual,2022,naphtha combustion consumption by to the public,3273.3107791999996,TJ,CH4,3.0,kg/TJ,9819.9323376,kg -4a3757ba-f742-360c-8389-0c375954363d,SESCO,II.1.1,Buenos Aires,AR-B,annual,2022,naphtha combustion consumption by to the public,3273.3107791999996,TJ,N2O,0.6,kg/TJ,1963.9864675199997,kg -cc00916c-2abc-3f00-97fa-6ad61ae9f581,SESCO,II.1.1,Capital Federal,AR-C,annual,2022,naphtha combustion consumption by to the public,1237.2159491999998,TJ,CO2,73300.0,kg/TJ,90687929.07635999,kg -557b0cd0-d351-34e5-af3a-7014e7aa0cf2,SESCO,II.1.1,Capital Federal,AR-C,annual,2022,naphtha combustion consumption by to the public,1237.2159491999998,TJ,CH4,3.0,kg/TJ,3711.6478475999993,kg -80b4e316-cb8d-33d7-805d-cde91755440c,SESCO,II.1.1,Capital Federal,AR-C,annual,2022,naphtha combustion consumption by to the public,1237.2159491999998,TJ,N2O,0.6,kg/TJ,742.3295695199998,kg -350d73f8-2b04-3205-b646-8eb1b66491e4,SESCO,II.1.1,Catamarca,AR-K,annual,2022,naphtha combustion consumption by to the public,139.39824359999997,TJ,CO2,73300.0,kg/TJ,10217891.255879998,kg -97fd1b13-3c56-30f3-b1ba-dfc7b2e250a5,SESCO,II.1.1,Catamarca,AR-K,annual,2022,naphtha combustion consumption by to the public,139.39824359999997,TJ,CH4,3.0,kg/TJ,418.1947307999999,kg -79558732-9cd1-3b59-b527-da236ac2bc2a,SESCO,II.1.1,Catamarca,AR-K,annual,2022,naphtha combustion consumption by to the public,139.39824359999997,TJ,N2O,0.6,kg/TJ,83.63894615999997,kg -b10892c6-9652-313a-b43d-386e4cdfe25d,SESCO,II.1.1,Chaco,AR-H,annual,2022,naphtha combustion consumption by to the public,121.6380088,TJ,CO2,73300.0,kg/TJ,8916066.04504,kg -7724f796-18f3-3720-9a21-cdc5dd238c98,SESCO,II.1.1,Chaco,AR-H,annual,2022,naphtha combustion consumption by to the public,121.6380088,TJ,CH4,3.0,kg/TJ,364.9140264,kg -7469d18d-f3dc-3e8b-9dd0-52ee318d8f32,SESCO,II.1.1,Chaco,AR-H,annual,2022,naphtha combustion consumption by to the public,121.6380088,TJ,N2O,0.6,kg/TJ,72.98280528,kg -ac157661-ab46-36be-92e4-80aaf09e5361,SESCO,II.1.1,Chubut,AR-U,annual,2022,naphtha combustion consumption by to the public,285.43019119999997,TJ,CO2,73300.0,kg/TJ,20922033.01496,kg -45f0400a-1fb2-3af3-8f0d-2986211c7da7,SESCO,II.1.1,Chubut,AR-U,annual,2022,naphtha combustion consumption by to the public,285.43019119999997,TJ,CH4,3.0,kg/TJ,856.2905735999999,kg -a42b2166-127a-3c33-a697-0913dbb01bff,SESCO,II.1.1,Chubut,AR-U,annual,2022,naphtha combustion consumption by to the public,285.43019119999997,TJ,N2O,0.6,kg/TJ,171.25811471999998,kg -4485e397-c0a2-30d1-981a-59042d3631bd,SESCO,II.1.1,Corrientes,AR-W,annual,2022,naphtha combustion consumption by to the public,152.21335359999998,TJ,CO2,73300.0,kg/TJ,11157238.818879997,kg -3787b9d4-6ec9-3e3c-9228-9f0c97bb6210,SESCO,II.1.1,Corrientes,AR-W,annual,2022,naphtha combustion consumption by to the public,152.21335359999998,TJ,CH4,3.0,kg/TJ,456.6400607999999,kg -fb2c06fb-4b87-3e63-9529-153ff0e5f9b3,SESCO,II.1.1,Corrientes,AR-W,annual,2022,naphtha combustion consumption by to the public,152.21335359999998,TJ,N2O,0.6,kg/TJ,91.32801215999999,kg -66a996d2-2843-383a-b7e4-114e3f0e9433,SESCO,II.1.1,Córdoba,AR-X,annual,2022,naphtha combustion consumption by to the public,690.9002715999999,TJ,CO2,73300.0,kg/TJ,50642989.90827999,kg -f62fb215-8352-3832-a90b-c4112fa22ea7,SESCO,II.1.1,Córdoba,AR-X,annual,2022,naphtha combustion consumption by to the public,690.9002715999999,TJ,CH4,3.0,kg/TJ,2072.7008147999995,kg -6a76b1ed-5948-352e-8d78-609a7c9c7683,SESCO,II.1.1,Córdoba,AR-X,annual,2022,naphtha combustion consumption by to the public,690.9002715999999,TJ,N2O,0.6,kg/TJ,414.5401629599999,kg -f9dba47a-e00d-3381-a525-cdec6cfdabe3,SESCO,II.1.1,Entre Rios,AR-E,annual,2022,naphtha combustion consumption by to the public,334.70052,TJ,CO2,73300.0,kg/TJ,24533548.116,kg -c828c516-a6da-3336-b02f-9b78a2606fea,SESCO,II.1.1,Entre Rios,AR-E,annual,2022,naphtha combustion consumption by to the public,334.70052,TJ,CH4,3.0,kg/TJ,1004.10156,kg -9e673f26-adf5-3eab-8f44-e997478aa075,SESCO,II.1.1,Entre Rios,AR-E,annual,2022,naphtha combustion consumption by to the public,334.70052,TJ,N2O,0.6,kg/TJ,200.82031199999997,kg -0b2dc993-1495-3209-bfc3-df1c6846b0d3,SESCO,II.1.1,Formosa,AR-P,annual,2022,naphtha combustion consumption by to the public,264.443564,TJ,CO2,73300.0,kg/TJ,19383713.2412,kg -6f76254b-87d0-3ea0-9854-201321cfaaa8,SESCO,II.1.1,Formosa,AR-P,annual,2022,naphtha combustion consumption by to the public,264.443564,TJ,CH4,3.0,kg/TJ,793.330692,kg -1cdc425d-2c8e-39a0-a140-45af0a41b6c7,SESCO,II.1.1,Formosa,AR-P,annual,2022,naphtha combustion consumption by to the public,264.443564,TJ,N2O,0.6,kg/TJ,158.6661384,kg -d6394862-4fdd-35ea-8962-911e6e9aa71c,SESCO,II.1.1,Jujuy,AR-Y,annual,2022,naphtha combustion consumption by to the public,60.87931079999999,TJ,CO2,73300.0,kg/TJ,4462453.481639999,kg -c4ff79fd-8cf5-397b-8f06-f2d4e98909b7,SESCO,II.1.1,Jujuy,AR-Y,annual,2022,naphtha combustion consumption by to the public,60.87931079999999,TJ,CH4,3.0,kg/TJ,182.63793239999998,kg -6e577eb8-1560-3345-8351-a2e92ff5d053,SESCO,II.1.1,Jujuy,AR-Y,annual,2022,naphtha combustion consumption by to the public,60.87931079999999,TJ,N2O,0.6,kg/TJ,36.52758648,kg -1533709b-c447-3d37-922a-6ed9e3a9fdef,SESCO,II.1.1,La Pampa,AR-L,annual,2022,naphtha combustion consumption by to the public,80.02659279999999,TJ,CO2,73300.0,kg/TJ,5865949.252239999,kg -8cbca516-b129-3698-b5f6-64f523d5504d,SESCO,II.1.1,La Pampa,AR-L,annual,2022,naphtha combustion consumption by to the public,80.02659279999999,TJ,CH4,3.0,kg/TJ,240.07977839999995,kg -4ae95471-647b-303f-a63e-d3e19579dede,SESCO,II.1.1,La Pampa,AR-L,annual,2022,naphtha combustion consumption by to the public,80.02659279999999,TJ,N2O,0.6,kg/TJ,48.01595567999999,kg -ba09968c-46a2-37d2-8b51-816b771ccaa0,SESCO,II.1.1,La Rioja,AR-F,annual,2022,naphtha combustion consumption by to the public,44.47597,TJ,CO2,73300.0,kg/TJ,3260088.601,kg -6a33eeb8-c6c0-3454-befe-ff212c07b351,SESCO,II.1.1,La Rioja,AR-F,annual,2022,naphtha combustion consumption by to the public,44.47597,TJ,CH4,3.0,kg/TJ,133.42791,kg -366d685b-8b65-3387-9e13-b7619c7ad0fc,SESCO,II.1.1,La Rioja,AR-F,annual,2022,naphtha combustion consumption by to the public,44.47597,TJ,N2O,0.6,kg/TJ,26.685581999999997,kg -a1a8f479-d630-3e9b-8745-ba6e8fb6fc9d,SESCO,II.1.1,Mendoza,AR-M,annual,2022,naphtha combustion consumption by to the public,224.30965479999998,TJ,CO2,73300.0,kg/TJ,16441897.696839998,kg -fe4d594e-f35a-3d1d-bc85-8729dc2cd548,SESCO,II.1.1,Mendoza,AR-M,annual,2022,naphtha combustion consumption by to the public,224.30965479999998,TJ,CH4,3.0,kg/TJ,672.9289643999999,kg -7893678e-d9a2-3491-9581-df24a8609630,SESCO,II.1.1,Mendoza,AR-M,annual,2022,naphtha combustion consumption by to the public,224.30965479999998,TJ,N2O,0.6,kg/TJ,134.58579287999999,kg -8948216a-98ba-3b02-a322-fff9dbbd84d1,SESCO,II.1.1,Misiones,AR-N,annual,2022,naphtha combustion consumption by to the public,204.83068759999998,TJ,CO2,73300.0,kg/TJ,15014089.401079997,kg -9ca81620-523a-3273-8087-29078f0b5779,SESCO,II.1.1,Misiones,AR-N,annual,2022,naphtha combustion consumption by to the public,204.83068759999998,TJ,CH4,3.0,kg/TJ,614.4920628,kg -07529fb6-a394-3c2b-910b-ebe2531fab15,SESCO,II.1.1,Misiones,AR-N,annual,2022,naphtha combustion consumption by to the public,204.83068759999998,TJ,N2O,0.6,kg/TJ,122.89841255999998,kg -851646b2-45e6-319e-bc7a-b3bc9c6d1872,SESCO,II.1.1,Neuquén,AR-Q,annual,2022,naphtha combustion consumption by to the public,231.93841439999997,TJ,CO2,73300.0,kg/TJ,17001085.775519997,kg -12f461c2-054f-3934-a058-49c8924b1b2d,SESCO,II.1.1,Neuquén,AR-Q,annual,2022,naphtha combustion consumption by to the public,231.93841439999997,TJ,CH4,3.0,kg/TJ,695.8152431999999,kg -29987a69-a5a3-3409-843a-18df96c65645,SESCO,II.1.1,Neuquén,AR-Q,annual,2022,naphtha combustion consumption by to the public,231.93841439999997,TJ,N2O,0.6,kg/TJ,139.16304863999997,kg -8ce15148-92f1-3e20-aa49-372413acca6d,SESCO,II.1.1,Rio Negro,AR-R,annual,2022,naphtha combustion consumption by to the public,325.7751728,TJ,CO2,73300.0,kg/TJ,23879320.16624,kg -ab24dc56-b3c5-34d4-9c57-9a93cedc959c,SESCO,II.1.1,Rio Negro,AR-R,annual,2022,naphtha combustion consumption by to the public,325.7751728,TJ,CH4,3.0,kg/TJ,977.3255184,kg -42fb0688-c6ce-3fef-bcfd-02e6e5a02312,SESCO,II.1.1,Rio Negro,AR-R,annual,2022,naphtha combustion consumption by to the public,325.7751728,TJ,N2O,0.6,kg/TJ,195.46510368,kg -f85d024a-c78c-3a36-8dfd-91f1983fda8b,SESCO,II.1.1,Salta,AR-A,annual,2022,naphtha combustion consumption by to the public,42.485858799999995,TJ,CO2,73300.0,kg/TJ,3114213.4500399996,kg -d4e528f4-0fbb-3b3b-b84f-4441e8567f3f,SESCO,II.1.1,Salta,AR-A,annual,2022,naphtha combustion consumption by to the public,42.485858799999995,TJ,CH4,3.0,kg/TJ,127.4575764,kg -93b2d4fa-1748-34b7-9181-6656a075ff33,SESCO,II.1.1,Salta,AR-A,annual,2022,naphtha combustion consumption by to the public,42.485858799999995,TJ,N2O,0.6,kg/TJ,25.491515279999998,kg -4983a199-2257-3ccf-a45d-3b06a810b8f1,SESCO,II.1.1,San Juan,AR-J,annual,2022,naphtha combustion consumption by to the public,45.95347679999999,TJ,CO2,73300.0,kg/TJ,3368389.849439999,kg -5aac3ef2-053d-39b2-999f-bb1babfd7bf0,SESCO,II.1.1,San Juan,AR-J,annual,2022,naphtha combustion consumption by to the public,45.95347679999999,TJ,CH4,3.0,kg/TJ,137.86043039999998,kg -b3e93443-be59-32f5-b62e-4b86d835813a,SESCO,II.1.1,San Juan,AR-J,annual,2022,naphtha combustion consumption by to the public,45.95347679999999,TJ,N2O,0.6,kg/TJ,27.572086079999995,kg -48c34543-7b2f-3c6e-beeb-0e3e45fff197,SESCO,II.1.1,San Luis,AR-D,annual,2022,naphtha combustion consumption by to the public,131.7091776,TJ,CO2,73300.0,kg/TJ,9654282.718080001,kg -45ea2645-8fde-382c-a1fa-218417f09f12,SESCO,II.1.1,San Luis,AR-D,annual,2022,naphtha combustion consumption by to the public,131.7091776,TJ,CH4,3.0,kg/TJ,395.12753280000004,kg -7b4bdf88-81a1-3807-8f01-668ef7e67338,SESCO,II.1.1,San Luis,AR-D,annual,2022,naphtha combustion consumption by to the public,131.7091776,TJ,N2O,0.6,kg/TJ,79.02550656,kg -d00d0f48-9ad5-342c-8839-2bc54a98292a,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2022,naphtha combustion consumption by to the public,133.1565312,TJ,CO2,73300.0,kg/TJ,9760373.73696,kg -6b09f938-5899-3c43-8627-3de9275d4826,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2022,naphtha combustion consumption by to the public,133.1565312,TJ,CH4,3.0,kg/TJ,399.46959359999994,kg -539f85f9-d211-366e-89d9-953f562a0157,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2022,naphtha combustion consumption by to the public,133.1565312,TJ,N2O,0.6,kg/TJ,79.89391871999999,kg -0aaccc43-1198-323a-9399-557318826815,SESCO,II.1.1,Santa Fe,AR-S,annual,2022,naphtha combustion consumption by to the public,849.4457971999999,TJ,CO2,73300.0,kg/TJ,62264376.93475999,kg -8c2f982c-dbaf-31fa-b82c-3aa38e217aea,SESCO,II.1.1,Santa Fe,AR-S,annual,2022,naphtha combustion consumption by to the public,849.4457971999999,TJ,CH4,3.0,kg/TJ,2548.3373915999996,kg -7fb9eea8-8bcb-31d1-b3d5-1692be1ab3ed,SESCO,II.1.1,Santa Fe,AR-S,annual,2022,naphtha combustion consumption by to the public,849.4457971999999,TJ,N2O,0.6,kg/TJ,509.66747831999993,kg -dee4d720-2a11-32c6-9791-5b5648ba309d,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2022,naphtha combustion consumption by to the public,152.0625876,TJ,CO2,73300.0,kg/TJ,11146187.67108,kg -78eb5318-f584-376e-b762-56cc93205529,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2022,naphtha combustion consumption by to the public,152.0625876,TJ,CH4,3.0,kg/TJ,456.1877628,kg -a9bef161-233b-337e-b598-7e3f1242df2c,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2022,naphtha combustion consumption by to the public,152.0625876,TJ,N2O,0.6,kg/TJ,91.23755256,kg -6efa85d7-654c-35a3-99e4-36c21f00607d,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2022,naphtha combustion consumption by to the public,43.0587696,TJ,CO2,73300.0,kg/TJ,3156207.81168,kg -8aebec1c-23a1-3b9a-ac5e-d20ae1b6b86b,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2022,naphtha combustion consumption by to the public,43.0587696,TJ,CH4,3.0,kg/TJ,129.1763088,kg -a6198b5c-6c4e-344d-9181-98fe027a31b0,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2022,naphtha combustion consumption by to the public,43.0587696,TJ,N2O,0.6,kg/TJ,25.835261759999998,kg -080e716d-0fa3-309c-ac16-1aa673963748,SESCO,II.1.1,Tucuman,AR-T,annual,2022,naphtha combustion consumption by to the public,40.073602799999996,TJ,CO2,73300.0,kg/TJ,2937395.08524,kg -5f3ed282-3014-32d7-84b1-efa3478582ba,SESCO,II.1.1,Tucuman,AR-T,annual,2022,naphtha combustion consumption by to the public,40.073602799999996,TJ,CH4,3.0,kg/TJ,120.22080839999998,kg -99cc854b-a178-3a54-9201-b2de3c93397a,SESCO,II.1.1,Tucuman,AR-T,annual,2022,naphtha combustion consumption by to the public,40.073602799999996,TJ,N2O,0.6,kg/TJ,24.04416168,kg -4b4b2c3a-ab75-3908-b50c-b675df7ca32c,SESCO,II.1.1,Buenos Aires,AR-B,annual,2022,naphtha combustion consumption by freight transport,20.353409999999997,TJ,CO2,73300.0,kg/TJ,1491904.9529999997,kg -c0d04474-3997-372d-b6c1-58c3dca74ca0,SESCO,II.1.1,Buenos Aires,AR-B,annual,2022,naphtha combustion consumption by freight transport,20.353409999999997,TJ,CH4,3.0,kg/TJ,61.06022999999999,kg -c2025135-eba2-3f9d-b9f7-6e9907060d0f,SESCO,II.1.1,Buenos Aires,AR-B,annual,2022,naphtha combustion consumption by freight transport,20.353409999999997,TJ,N2O,0.6,kg/TJ,12.212045999999997,kg -905af594-ed91-39e3-b22c-dbd62eff72e8,SESCO,II.1.1,Capital Federal,AR-C,annual,2022,naphtha combustion consumption by freight transport,21.408771999999995,TJ,CO2,73300.0,kg/TJ,1569262.9875999996,kg -f7f62462-03d5-3373-b6fd-a01b5d085528,SESCO,II.1.1,Capital Federal,AR-C,annual,2022,naphtha combustion consumption by freight transport,21.408771999999995,TJ,CH4,3.0,kg/TJ,64.22631599999998,kg -5caf9666-eca4-3d5a-bae5-1bb924c39327,SESCO,II.1.1,Capital Federal,AR-C,annual,2022,naphtha combustion consumption by freight transport,21.408771999999995,TJ,N2O,0.6,kg/TJ,12.845263199999996,kg -0b7c57e8-e6c9-377d-87d8-703110adb4ee,SESCO,II.1.1,Chubut,AR-U,annual,2022,naphtha combustion consumption by freight transport,0.150766,TJ,CO2,73300.0,kg/TJ,11051.1478,kg -046923cb-b437-3c53-9921-7cd535a7b60b,SESCO,II.1.1,Chubut,AR-U,annual,2022,naphtha combustion consumption by freight transport,0.150766,TJ,CH4,3.0,kg/TJ,0.45229800000000003,kg -b2174810-99ed-39bf-8284-83807e98baa6,SESCO,II.1.1,Chubut,AR-U,annual,2022,naphtha combustion consumption by freight transport,0.150766,TJ,N2O,0.6,kg/TJ,0.0904596,kg -4689995b-b4e4-310d-b7d2-99a44e478028,SESCO,II.1.1,Corrientes,AR-W,annual,2022,naphtha combustion consumption by freight transport,0.060306399999999996,TJ,CO2,73300.0,kg/TJ,4420.4591199999995,kg -5ed72c7e-6ce2-3c0c-ba65-78dd54986c9b,SESCO,II.1.1,Corrientes,AR-W,annual,2022,naphtha combustion consumption by freight transport,0.060306399999999996,TJ,CH4,3.0,kg/TJ,0.1809192,kg -79a742ca-4d4d-3825-b3fb-536394689738,SESCO,II.1.1,Corrientes,AR-W,annual,2022,naphtha combustion consumption by freight transport,0.060306399999999996,TJ,N2O,0.6,kg/TJ,0.036183839999999995,kg -cfd7f9c8-d6b1-3ef7-abfa-04bb44216ff0,SESCO,II.1.1,Córdoba,AR-X,annual,2022,naphtha combustion consumption by freight transport,2.8042476,TJ,CO2,73300.0,kg/TJ,205551.34908,kg -642b1c29-2ceb-39cb-8dcd-1cf19896b874,SESCO,II.1.1,Córdoba,AR-X,annual,2022,naphtha combustion consumption by freight transport,2.8042476,TJ,CH4,3.0,kg/TJ,8.4127428,kg -511a92c8-39b4-3985-9ecb-9afddc6131d8,SESCO,II.1.1,Córdoba,AR-X,annual,2022,naphtha combustion consumption by freight transport,2.8042476,TJ,N2O,0.6,kg/TJ,1.68254856,kg -312353b8-b336-3598-8263-3f5d9a7e8491,SESCO,II.1.1,Entre Rios,AR-E,annual,2022,naphtha combustion consumption by freight transport,0.0904596,TJ,CO2,73300.0,kg/TJ,6630.68868,kg -04359fcb-e092-3327-a6ff-4d5e5169adf6,SESCO,II.1.1,Entre Rios,AR-E,annual,2022,naphtha combustion consumption by freight transport,0.0904596,TJ,CH4,3.0,kg/TJ,0.27137880000000003,kg -cb819f4d-f1db-3643-852e-d6967e489ef8,SESCO,II.1.1,Entre Rios,AR-E,annual,2022,naphtha combustion consumption by freight transport,0.0904596,TJ,N2O,0.6,kg/TJ,0.05427576,kg -b59a8b92-ab37-3823-a731-0e2b0dc373e2,SESCO,II.1.1,Mendoza,AR-M,annual,2022,naphtha combustion consumption by freight transport,0.150766,TJ,CO2,73300.0,kg/TJ,11051.1478,kg -1c971676-ab51-3410-8099-7028c2cc655b,SESCO,II.1.1,Mendoza,AR-M,annual,2022,naphtha combustion consumption by freight transport,0.150766,TJ,CH4,3.0,kg/TJ,0.45229800000000003,kg -6af7650a-897c-3aca-8646-b050ddb54272,SESCO,II.1.1,Mendoza,AR-M,annual,2022,naphtha combustion consumption by freight transport,0.150766,TJ,N2O,0.6,kg/TJ,0.0904596,kg -69c7bab5-2c09-3f46-a30f-9fbc61041e34,SESCO,II.1.1,Rio Negro,AR-R,annual,2022,naphtha combustion consumption by freight transport,0.24122559999999998,TJ,CO2,73300.0,kg/TJ,17681.836479999998,kg -1cb3a473-41d8-3d56-821e-168f37d8d91d,SESCO,II.1.1,Rio Negro,AR-R,annual,2022,naphtha combustion consumption by freight transport,0.24122559999999998,TJ,CH4,3.0,kg/TJ,0.7236768,kg -600f6aa4-b38b-3c25-9511-32cb96fa53e9,SESCO,II.1.1,Rio Negro,AR-R,annual,2022,naphtha combustion consumption by freight transport,0.24122559999999998,TJ,N2O,0.6,kg/TJ,0.14473535999999998,kg -5456cceb-26de-313e-ad8c-7b92ab287d8b,SESCO,II.1.1,Santa Fe,AR-S,annual,2022,naphtha combustion consumption by freight transport,7.0558488,TJ,CO2,73300.0,kg/TJ,517193.71703999996,kg -1686ae61-4870-3e51-a443-ed6ef91cd1ac,SESCO,II.1.1,Santa Fe,AR-S,annual,2022,naphtha combustion consumption by freight transport,7.0558488,TJ,CH4,3.0,kg/TJ,21.1675464,kg -328745fd-b2e5-3ddb-ae0c-1bf55d5890cb,SESCO,II.1.1,Santa Fe,AR-S,annual,2022,naphtha combustion consumption by freight transport,7.0558488,TJ,N2O,0.6,kg/TJ,4.23350928,kg -3d657dd3-61a0-3fd1-90ab-621dee230f22,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2022,naphtha combustion consumption by freight transport,0.030153199999999998,TJ,CO2,73300.0,kg/TJ,2210.2295599999998,kg -c37a6cd6-16cf-3dfa-9634-51555ff151ff,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2022,naphtha combustion consumption by freight transport,0.030153199999999998,TJ,CH4,3.0,kg/TJ,0.0904596,kg -dc14a0b3-83ad-38d8-a1e3-393ed073b71b,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2022,naphtha combustion consumption by freight transport,0.030153199999999998,TJ,N2O,0.6,kg/TJ,0.018091919999999997,kg -a6017048-250c-303a-8db7-b079c154deb7,SESCO,II.1.1,Buenos Aires,AR-B,annual,2022,naphtha combustion consumption by freight transport,15.257519199999997,TJ,CO2,73300.0,kg/TJ,1118376.1573599998,kg -9b86a2a2-70af-3e7d-be02-7eaac3cf169d,SESCO,II.1.1,Buenos Aires,AR-B,annual,2022,naphtha combustion consumption by freight transport,15.257519199999997,TJ,CH4,3.0,kg/TJ,45.77255759999999,kg -683836b6-b478-3089-846c-428b69c1cbce,SESCO,II.1.1,Buenos Aires,AR-B,annual,2022,naphtha combustion consumption by freight transport,15.257519199999997,TJ,N2O,0.6,kg/TJ,9.154511519999998,kg -d8cd30d6-d12d-31e7-a962-9d36db00603f,SESCO,II.1.1,Capital Federal,AR-C,annual,2022,naphtha combustion consumption by freight transport,15.378131999999999,TJ,CO2,73300.0,kg/TJ,1127217.0755999999,kg -d33020ce-215c-3272-81b6-65909c5a83e1,SESCO,II.1.1,Capital Federal,AR-C,annual,2022,naphtha combustion consumption by freight transport,15.378131999999999,TJ,CH4,3.0,kg/TJ,46.134395999999995,kg -52406b05-8839-3af0-8bc6-7c1ed60c85ca,SESCO,II.1.1,Capital Federal,AR-C,annual,2022,naphtha combustion consumption by freight transport,15.378131999999999,TJ,N2O,0.6,kg/TJ,9.226879199999999,kg -2b366b2e-a5d1-3605-9bcd-03cdb52b61d8,SESCO,II.1.1,Córdoba,AR-X,annual,2022,naphtha combustion consumption by freight transport,1.2965876,TJ,CO2,73300.0,kg/TJ,95039.87108000001,kg -5370cfdd-8553-385f-b2b7-d3d9118caf1f,SESCO,II.1.1,Córdoba,AR-X,annual,2022,naphtha combustion consumption by freight transport,1.2965876,TJ,CH4,3.0,kg/TJ,3.8897628,kg -38bf5fba-4ac6-308f-b157-07be8c232925,SESCO,II.1.1,Córdoba,AR-X,annual,2022,naphtha combustion consumption by freight transport,1.2965876,TJ,N2O,0.6,kg/TJ,0.77795256,kg -b83fb5ae-5fa9-3384-aa4d-f5bb36667651,SESCO,II.1.1,Entre Rios,AR-E,annual,2022,naphtha combustion consumption by freight transport,0.4221448,TJ,CO2,73300.0,kg/TJ,30943.21384,kg -ed9d3a89-fb95-3254-afc7-f5d4323db83f,SESCO,II.1.1,Entre Rios,AR-E,annual,2022,naphtha combustion consumption by freight transport,0.4221448,TJ,CH4,3.0,kg/TJ,1.2664344,kg -29e8f973-53fa-3dc6-9b58-2e10f45cfcaf,SESCO,II.1.1,Entre Rios,AR-E,annual,2022,naphtha combustion consumption by freight transport,0.4221448,TJ,N2O,0.6,kg/TJ,0.25328688,kg -abf36e37-833b-342c-8b9c-6bceb8f6a716,SESCO,II.1.1,La Rioja,AR-F,annual,2022,naphtha combustion consumption by freight transport,0.2110724,TJ,CO2,73300.0,kg/TJ,15471.60692,kg -ea6ba44b-f7d7-3070-9e5f-56159666bed8,SESCO,II.1.1,La Rioja,AR-F,annual,2022,naphtha combustion consumption by freight transport,0.2110724,TJ,CH4,3.0,kg/TJ,0.6332172,kg -c3dfc04e-0c65-3786-b502-94637053fba4,SESCO,II.1.1,La Rioja,AR-F,annual,2022,naphtha combustion consumption by freight transport,0.2110724,TJ,N2O,0.6,kg/TJ,0.12664344,kg -53f1a1f8-04b4-3462-8511-401762acb47b,SESCO,II.1.1,Mendoza,AR-M,annual,2022,naphtha combustion consumption by freight transport,0.0904596,TJ,CO2,73300.0,kg/TJ,6630.68868,kg -31d32054-d13b-3adf-a1bf-6b53b2172f7b,SESCO,II.1.1,Mendoza,AR-M,annual,2022,naphtha combustion consumption by freight transport,0.0904596,TJ,CH4,3.0,kg/TJ,0.27137880000000003,kg -629a6df6-438f-3204-8232-5c79cb082230,SESCO,II.1.1,Mendoza,AR-M,annual,2022,naphtha combustion consumption by freight transport,0.0904596,TJ,N2O,0.6,kg/TJ,0.05427576,kg -3eaca865-45d4-30ea-acf2-ca9a883ee772,SESCO,II.1.1,Rio Negro,AR-R,annual,2022,naphtha combustion consumption by freight transport,0.301532,TJ,CO2,73300.0,kg/TJ,22102.2956,kg -b887be5f-a3f1-3bff-8fbf-be254a5d3d73,SESCO,II.1.1,Rio Negro,AR-R,annual,2022,naphtha combustion consumption by freight transport,0.301532,TJ,CH4,3.0,kg/TJ,0.9045960000000001,kg -6dcdf4b6-43ea-3f3b-904d-2aec0e913a1e,SESCO,II.1.1,Rio Negro,AR-R,annual,2022,naphtha combustion consumption by freight transport,0.301532,TJ,N2O,0.6,kg/TJ,0.1809192,kg -34a57ffa-ea5e-3a34-b1e8-df4c3b43a2ab,SESCO,II.1.1,San Luis,AR-D,annual,2022,naphtha combustion consumption by freight transport,0.030153199999999998,TJ,CO2,73300.0,kg/TJ,2210.2295599999998,kg -f084ac29-84d9-3926-8b6d-d961b27e9e82,SESCO,II.1.1,San Luis,AR-D,annual,2022,naphtha combustion consumption by freight transport,0.030153199999999998,TJ,CH4,3.0,kg/TJ,0.0904596,kg -5904c5b4-fc61-39cf-b1cf-7f613e322ba3,SESCO,II.1.1,San Luis,AR-D,annual,2022,naphtha combustion consumption by freight transport,0.030153199999999998,TJ,N2O,0.6,kg/TJ,0.018091919999999997,kg -b7b3aa72-2404-3118-a3b9-f51ccf4560fc,SESCO,II.1.1,Santa Fe,AR-S,annual,2022,naphtha combustion consumption by freight transport,6.6940104,TJ,CO2,73300.0,kg/TJ,490670.96232,kg -03247daf-0ffd-36d8-98f6-b6307c0f77e2,SESCO,II.1.1,Santa Fe,AR-S,annual,2022,naphtha combustion consumption by freight transport,6.6940104,TJ,CH4,3.0,kg/TJ,20.0820312,kg -e432dcfa-bc41-3032-8d5f-f09acda9ddc7,SESCO,II.1.1,Santa Fe,AR-S,annual,2022,naphtha combustion consumption by freight transport,6.6940104,TJ,N2O,0.6,kg/TJ,4.016406239999999,kg -3d657dd3-61a0-3fd1-90ab-621dee230f22,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2022,naphtha combustion consumption by freight transport,0.030153199999999998,TJ,CO2,73300.0,kg/TJ,2210.2295599999998,kg -c37a6cd6-16cf-3dfa-9634-51555ff151ff,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2022,naphtha combustion consumption by freight transport,0.030153199999999998,TJ,CH4,3.0,kg/TJ,0.0904596,kg -dc14a0b3-83ad-38d8-a1e3-393ed073b71b,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2022,naphtha combustion consumption by freight transport,0.030153199999999998,TJ,N2O,0.6,kg/TJ,0.018091919999999997,kg -abc1c843-1370-302a-b465-a1dae82fd9bf,SESCO,II.1.1,Buenos Aires,AR-B,annual,2022,naphtha combustion consumption by public passenger transport,0.12061279999999999,TJ,CO2,73300.0,kg/TJ,8840.918239999999,kg -bb0f09c1-0533-366f-a0cc-bcf17f940a90,SESCO,II.1.1,Buenos Aires,AR-B,annual,2022,naphtha combustion consumption by public passenger transport,0.12061279999999999,TJ,CH4,3.0,kg/TJ,0.3618384,kg -a6038dab-bfb9-3e45-8218-d2bfec244925,SESCO,II.1.1,Buenos Aires,AR-B,annual,2022,naphtha combustion consumption by public passenger transport,0.12061279999999999,TJ,N2O,0.6,kg/TJ,0.07236767999999999,kg -8001233c-adbe-338e-af56-0b187f50336e,SESCO,II.1.1,Capital Federal,AR-C,annual,2022,naphtha combustion consumption by public passenger transport,0.0904596,TJ,CO2,73300.0,kg/TJ,6630.68868,kg -314566b2-0d5b-3c06-a238-3da0f4d9b457,SESCO,II.1.1,Capital Federal,AR-C,annual,2022,naphtha combustion consumption by public passenger transport,0.0904596,TJ,CH4,3.0,kg/TJ,0.27137880000000003,kg -719addba-476b-3132-9278-13ee3f422dde,SESCO,II.1.1,Capital Federal,AR-C,annual,2022,naphtha combustion consumption by public passenger transport,0.0904596,TJ,N2O,0.6,kg/TJ,0.05427576,kg -cde4ffc9-988b-3f8e-b3a9-0f012c953627,SESCO,II.1.1,Entre Rios,AR-E,annual,2022,naphtha combustion consumption by public passenger transport,0.2713788,TJ,CO2,73300.0,kg/TJ,19892.066039999998,kg -36b4fa6a-3a72-3000-9318-a5715dcb7369,SESCO,II.1.1,Entre Rios,AR-E,annual,2022,naphtha combustion consumption by public passenger transport,0.2713788,TJ,CH4,3.0,kg/TJ,0.8141364,kg -d89bdfbe-3057-3be0-8f7b-613c7b8fcb0d,SESCO,II.1.1,Entre Rios,AR-E,annual,2022,naphtha combustion consumption by public passenger transport,0.2713788,TJ,N2O,0.6,kg/TJ,0.16282728,kg -d6e32212-2b2c-3aeb-91b7-60b1e7341f3a,SESCO,II.1.1,Santa Fe,AR-S,annual,2022,naphtha combustion consumption by public passenger transport,0.301532,TJ,CO2,73300.0,kg/TJ,22102.2956,kg -05915c49-b952-3f33-b550-81e0aebe1768,SESCO,II.1.1,Santa Fe,AR-S,annual,2022,naphtha combustion consumption by public passenger transport,0.301532,TJ,CH4,3.0,kg/TJ,0.9045960000000001,kg -7707b8b9-e1af-3059-9d6a-155ff8347d11,SESCO,II.1.1,Santa Fe,AR-S,annual,2022,naphtha combustion consumption by public passenger transport,0.301532,TJ,N2O,0.6,kg/TJ,0.1809192,kg -abc1c843-1370-302a-b465-a1dae82fd9bf,SESCO,II.1.1,Buenos Aires,AR-B,annual,2022,naphtha combustion consumption by public passenger transport,0.12061279999999999,TJ,CO2,73300.0,kg/TJ,8840.918239999999,kg -bb0f09c1-0533-366f-a0cc-bcf17f940a90,SESCO,II.1.1,Buenos Aires,AR-B,annual,2022,naphtha combustion consumption by public passenger transport,0.12061279999999999,TJ,CH4,3.0,kg/TJ,0.3618384,kg -a6038dab-bfb9-3e45-8218-d2bfec244925,SESCO,II.1.1,Buenos Aires,AR-B,annual,2022,naphtha combustion consumption by public passenger transport,0.12061279999999999,TJ,N2O,0.6,kg/TJ,0.07236767999999999,kg -b3fec18a-36c2-3bf7-aa0d-eee2c6bbba13,SESCO,II.1.1,Capital Federal,AR-C,annual,2022,naphtha combustion consumption by public passenger transport,0.6935236,TJ,CO2,73300.0,kg/TJ,50835.27988,kg -e3984ad5-b216-399d-af82-ea74ad6546e1,SESCO,II.1.1,Capital Federal,AR-C,annual,2022,naphtha combustion consumption by public passenger transport,0.6935236,TJ,CH4,3.0,kg/TJ,2.0805708000000003,kg -35a55b69-c298-389f-b68a-f756c1a8f654,SESCO,II.1.1,Capital Federal,AR-C,annual,2022,naphtha combustion consumption by public passenger transport,0.6935236,TJ,N2O,0.6,kg/TJ,0.41611416,kg -02e00362-71f3-3035-b7ed-2bead696d314,SESCO,II.1.1,Córdoba,AR-X,annual,2022,naphtha combustion consumption by public passenger transport,0.060306399999999996,TJ,CO2,73300.0,kg/TJ,4420.4591199999995,kg -1005c945-17c4-3948-aa1f-54d0a13e8887,SESCO,II.1.1,Córdoba,AR-X,annual,2022,naphtha combustion consumption by public passenger transport,0.060306399999999996,TJ,CH4,3.0,kg/TJ,0.1809192,kg -eeb38ad3-4683-3da9-8af3-402a35b34146,SESCO,II.1.1,Córdoba,AR-X,annual,2022,naphtha combustion consumption by public passenger transport,0.060306399999999996,TJ,N2O,0.6,kg/TJ,0.036183839999999995,kg -4669687f-0508-35c4-8884-6cf0293ae453,SESCO,II.1.1,Entre Rios,AR-E,annual,2022,naphtha combustion consumption by public passenger transport,0.5126044,TJ,CO2,73300.0,kg/TJ,37573.902519999996,kg -06f4f46a-bc2d-3f71-ba93-7598f919817d,SESCO,II.1.1,Entre Rios,AR-E,annual,2022,naphtha combustion consumption by public passenger transport,0.5126044,TJ,CH4,3.0,kg/TJ,1.5378132,kg -187f1071-08c7-3b68-aeb7-0d1d88ebdab8,SESCO,II.1.1,Entre Rios,AR-E,annual,2022,naphtha combustion consumption by public passenger transport,0.5126044,TJ,N2O,0.6,kg/TJ,0.30756263999999994,kg -0d9ee603-f77e-33c0-9d2d-f7d2424659d8,SESCO,II.1.1,Catamarca,AR-K,annual,2022,naphtha combustion consumption by to the public,97.76119738,TJ,CO2,73300.0,kg/TJ,7165895.767954,kg -31d26241-c432-3b53-94fa-80e86df13cac,SESCO,II.1.1,Catamarca,AR-K,annual,2022,naphtha combustion consumption by to the public,97.76119738,TJ,CH4,3.0,kg/TJ,293.28359214,kg -b968ef8c-9abe-3129-a26e-26fa08e609a2,SESCO,II.1.1,Catamarca,AR-K,annual,2022,naphtha combustion consumption by to the public,97.76119738,TJ,N2O,0.6,kg/TJ,58.656718428,kg -c4c3b15d-59b3-3690-b1df-63b3d86249e1,SESCO,II.1.1,Chaco,AR-H,annual,2022,naphtha combustion consumption by to the public,77.09841554799999,TJ,CO2,73300.0,kg/TJ,5651313.859668399,kg -1533657d-3ef6-30a5-908b-b2d9fafd2d6c,SESCO,II.1.1,Chaco,AR-H,annual,2022,naphtha combustion consumption by to the public,77.09841554799999,TJ,CH4,3.0,kg/TJ,231.29524664399997,kg -5812ab1b-ae99-3019-bd51-64c770f422b7,SESCO,II.1.1,Chaco,AR-H,annual,2022,naphtha combustion consumption by to the public,77.09841554799999,TJ,N2O,0.6,kg/TJ,46.259049328799996,kg -8dca0f03-6e8f-3764-a89a-173c354203d7,SESCO,II.1.1,Jujuy,AR-Y,annual,2022,naphtha combustion consumption by to the public,341.865824916,TJ,CO2,73300.0,kg/TJ,25058764.9663428,kg -b14cc115-9318-3b18-9ad5-465d9d93c4a4,SESCO,II.1.1,Jujuy,AR-Y,annual,2022,naphtha combustion consumption by to the public,341.865824916,TJ,CH4,3.0,kg/TJ,1025.597474748,kg -9f5a027b-0ed7-3c2c-abff-04d436d6a259,SESCO,II.1.1,Jujuy,AR-Y,annual,2022,naphtha combustion consumption by to the public,341.865824916,TJ,N2O,0.6,kg/TJ,205.1194949496,kg -a5866e1b-4815-32ed-a6e5-a8104150dd45,SESCO,II.1.1,La Rioja,AR-F,annual,2022,naphtha combustion consumption by to the public,411.49499129199995,TJ,CO2,73300.0,kg/TJ,30162582.861703597,kg -15e5586e-d938-3a8e-9d12-d3704b9a1d30,SESCO,II.1.1,La Rioja,AR-F,annual,2022,naphtha combustion consumption by to the public,411.49499129199995,TJ,CH4,3.0,kg/TJ,1234.484973876,kg -8343f215-c956-30a3-a0cf-ee20dd450248,SESCO,II.1.1,La Rioja,AR-F,annual,2022,naphtha combustion consumption by to the public,411.49499129199995,TJ,N2O,0.6,kg/TJ,246.89699477519997,kg -79195769-3a8d-3526-a1b8-02464c38f229,SESCO,II.1.1,Salta,AR-A,annual,2022,naphtha combustion consumption by to the public,1052.365374984,TJ,CO2,73300.0,kg/TJ,77138381.9863272,kg -4f69951a-a964-37b3-a9ce-40c3ff5f47f8,SESCO,II.1.1,Salta,AR-A,annual,2022,naphtha combustion consumption by to the public,1052.365374984,TJ,CH4,3.0,kg/TJ,3157.096124952,kg -41ff51a8-dd35-3c0a-95d7-2cb21b35293a,SESCO,II.1.1,Salta,AR-A,annual,2022,naphtha combustion consumption by to the public,1052.365374984,TJ,N2O,0.6,kg/TJ,631.4192249904,kg -a51f57db-2884-3019-8cb2-68fa769db851,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2022,naphtha combustion consumption by to the public,281.798539792,TJ,CO2,73300.0,kg/TJ,20655832.9667536,kg -25fb78e7-92c7-3fb5-96b6-0bceae9d0400,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2022,naphtha combustion consumption by to the public,281.798539792,TJ,CH4,3.0,kg/TJ,845.395619376,kg -66fbbba0-d8c0-36b1-af82-65d0ad52b8c3,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2022,naphtha combustion consumption by to the public,281.798539792,TJ,N2O,0.6,kg/TJ,169.0791238752,kg -3d493986-aa0d-342c-8968-097688176e86,SESCO,II.1.1,Tucuman,AR-T,annual,2022,naphtha combustion consumption by to the public,1836.0455353239997,TJ,CO2,73300.0,kg/TJ,134582137.73924917,kg -75e58b81-82fd-3a9f-963c-70f3cb39516b,SESCO,II.1.1,Tucuman,AR-T,annual,2022,naphtha combustion consumption by to the public,1836.0455353239997,TJ,CH4,3.0,kg/TJ,5508.136605971999,kg -32f092ac-3bd2-3857-9da4-87b3af0105eb,SESCO,II.1.1,Tucuman,AR-T,annual,2022,naphtha combustion consumption by to the public,1836.0455353239997,TJ,N2O,0.6,kg/TJ,1101.6273211943999,kg -8d1be65f-ed93-38e5-b77a-311c3c239957,SESCO,II.1.1,Catamarca,AR-K,annual,2022,naphtha combustion consumption by to the public,13.417872467999999,TJ,CO2,73300.0,kg/TJ,983530.0519043999,kg -4644cd64-cfc8-3275-ae05-0cc071777987,SESCO,II.1.1,Catamarca,AR-K,annual,2022,naphtha combustion consumption by to the public,13.417872467999999,TJ,CH4,3.0,kg/TJ,40.253617403999996,kg -e4184c72-351f-367e-9aa5-dcd145f145f9,SESCO,II.1.1,Catamarca,AR-K,annual,2022,naphtha combustion consumption by to the public,13.417872467999999,TJ,N2O,0.6,kg/TJ,8.050723480799999,kg -2ff41070-5c1b-3a39-a29d-27fe1c8f8135,SESCO,II.1.1,Chaco,AR-H,annual,2022,naphtha combustion consumption by to the public,3.0153199999999996,TJ,CO2,73300.0,kg/TJ,221022.95599999998,kg -e6b2c767-683f-36c6-8101-7249fc439232,SESCO,II.1.1,Chaco,AR-H,annual,2022,naphtha combustion consumption by to the public,3.0153199999999996,TJ,CH4,3.0,kg/TJ,9.04596,kg -4fb7fbea-86eb-385e-b095-9ab8b1e5417e,SESCO,II.1.1,Chaco,AR-H,annual,2022,naphtha combustion consumption by to the public,3.0153199999999996,TJ,N2O,0.6,kg/TJ,1.8091919999999997,kg -f7fb0508-870d-34fa-b663-5c36029d2ef3,SESCO,II.1.1,Jujuy,AR-Y,annual,2022,naphtha combustion consumption by to the public,22.917035063999997,TJ,CO2,73300.0,kg/TJ,1679818.6701911998,kg -e4c15869-682c-307d-ad40-8fa1581851aa,SESCO,II.1.1,Jujuy,AR-Y,annual,2022,naphtha combustion consumption by to the public,22.917035063999997,TJ,CH4,3.0,kg/TJ,68.75110519199998,kg -83a331fd-f6ff-34f8-a0fe-101db701ffce,SESCO,II.1.1,Jujuy,AR-Y,annual,2022,naphtha combustion consumption by to the public,22.917035063999997,TJ,N2O,0.6,kg/TJ,13.750221038399998,kg -f32f759f-4ba0-3326-a539-66edd8b1974a,SESCO,II.1.1,La Rioja,AR-F,annual,2022,naphtha combustion consumption by to the public,73.089246076,TJ,CO2,73300.0,kg/TJ,5357441.737370799,kg -bf6ef3f0-64da-3900-9736-66497dae41c0,SESCO,II.1.1,La Rioja,AR-F,annual,2022,naphtha combustion consumption by to the public,73.089246076,TJ,CH4,3.0,kg/TJ,219.26773822799998,kg -002dca67-0493-39b9-8889-af9fa892e99c,SESCO,II.1.1,La Rioja,AR-F,annual,2022,naphtha combustion consumption by to the public,73.089246076,TJ,N2O,0.6,kg/TJ,43.853547645599996,kg -44ae3f5b-dec1-3572-8636-9f7c66be17cf,SESCO,II.1.1,Salta,AR-A,annual,2022,naphtha combustion consumption by to the public,93.11458926,TJ,CO2,73300.0,kg/TJ,6825299.392758001,kg -d4e3db5a-a585-35bb-b7da-f8db3f177942,SESCO,II.1.1,Salta,AR-A,annual,2022,naphtha combustion consumption by to the public,93.11458926,TJ,CH4,3.0,kg/TJ,279.34376778,kg -5d0b1445-79af-3474-8061-8063091f3690,SESCO,II.1.1,Salta,AR-A,annual,2022,naphtha combustion consumption by to the public,93.11458926,TJ,N2O,0.6,kg/TJ,55.868753556,kg -c2129eaa-f3bc-32e2-af4a-354079135a4a,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2022,naphtha combustion consumption by to the public,39.59265925999999,TJ,CO2,73300.0,kg/TJ,2902141.923757999,kg -4816eda7-1105-3125-8554-56919bd0bdcb,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2022,naphtha combustion consumption by to the public,39.59265925999999,TJ,CH4,3.0,kg/TJ,118.77797777999997,kg -85f62d1b-8349-3284-ace2-8acb486045f4,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2022,naphtha combustion consumption by to the public,39.59265925999999,TJ,N2O,0.6,kg/TJ,23.755595555999992,kg -d8a34494-b585-3550-9bae-83dd2cd01c1f,SESCO,II.1.1,Tucuman,AR-T,annual,2022,naphtha combustion consumption by to the public,198.307947376,TJ,CO2,73300.0,kg/TJ,14535972.542660799,kg -7b6811fd-c451-3010-b7db-52c50dc5a579,SESCO,II.1.1,Tucuman,AR-T,annual,2022,naphtha combustion consumption by to the public,198.307947376,TJ,CH4,3.0,kg/TJ,594.9238421279999,kg -7a48e08c-0828-3175-98b8-81c37304f5c3,SESCO,II.1.1,Tucuman,AR-T,annual,2022,naphtha combustion consumption by to the public,198.307947376,TJ,N2O,0.6,kg/TJ,118.98476842559998,kg -336665fd-3148-3be8-9721-7440adfcea08,SESCO,II.5.1,Entre Rios,AR-E,annual,2022,naphtha combustion consumption by agriculture machines,1.7488855999999997,TJ,CO2,73300.0,kg/TJ,128193.31447999997,kg -ee4e3168-66e4-3f68-b04e-fcd57fffe03d,SESCO,II.5.1,Entre Rios,AR-E,annual,2022,naphtha combustion consumption by agriculture machines,1.7488855999999997,TJ,CH4,3.0,kg/TJ,5.246656799999999,kg -200c4514-d36b-305d-91f9-15e5abcd357e,SESCO,II.5.1,Entre Rios,AR-E,annual,2022,naphtha combustion consumption by agriculture machines,1.7488855999999997,TJ,N2O,0.6,kg/TJ,1.0493313599999998,kg -1148cfe9-8b0a-3947-9775-bbdf4e388940,SESCO,II.5.1,Entre Rios,AR-E,annual,2022,naphtha combustion consumption by agriculture machines,0.150766,TJ,CO2,73300.0,kg/TJ,11051.1478,kg -c273563d-4628-36e6-a5aa-360ed509e252,SESCO,II.5.1,Entre Rios,AR-E,annual,2022,naphtha combustion consumption by agriculture machines,0.150766,TJ,CH4,3.0,kg/TJ,0.45229800000000003,kg -a7d57f57-3380-34f1-85b6-771a69aa0df1,SESCO,II.5.1,Entre Rios,AR-E,annual,2022,naphtha combustion consumption by agriculture machines,0.150766,TJ,N2O,0.6,kg/TJ,0.0904596,kg -e98aa4c8-4162-3d6f-9003-bfb17f69a332,SESCO,II.5.1,Santa Fe,AR-S,annual,2022,naphtha combustion consumption by agriculture machines,2.8645539999999996,TJ,CO2,73300.0,kg/TJ,209971.80819999997,kg -825550bf-5542-3a40-b017-903eca7ad96b,SESCO,II.5.1,Santa Fe,AR-S,annual,2022,naphtha combustion consumption by agriculture machines,2.8645539999999996,TJ,CH4,3.0,kg/TJ,8.593661999999998,kg -b0184273-06a4-3ab9-beb3-08ea80274a28,SESCO,II.5.1,Santa Fe,AR-S,annual,2022,naphtha combustion consumption by agriculture machines,2.8645539999999996,TJ,N2O,0.6,kg/TJ,1.7187323999999997,kg -789fa222-392b-3102-a5a2-d177679ee711,SESCO,II.5.1,Santa Fe,AR-S,annual,2022,naphtha combustion consumption by agriculture machines,1.2965876,TJ,CO2,73300.0,kg/TJ,95039.87108000001,kg -85302281-adcc-360e-81a5-8b4bfc6d8c65,SESCO,II.5.1,Santa Fe,AR-S,annual,2022,naphtha combustion consumption by agriculture machines,1.2965876,TJ,CH4,3.0,kg/TJ,3.8897628,kg -cc5c6987-a7f5-31d7-91c0-e0254084f4f8,SESCO,II.5.1,Santa Fe,AR-S,annual,2022,naphtha combustion consumption by agriculture machines,1.2965876,TJ,N2O,0.6,kg/TJ,0.77795256,kg -aa8037a1-33f5-3059-a5c2-cd9f4065ec67,SESCO,II.5.1,Tucuman,AR-T,annual,2022,naphtha combustion consumption by agriculture machines,0.3618384,TJ,CO2,73300.0,kg/TJ,26522.75472,kg -214a05c8-85f8-31d4-9ec3-6d24149cdecd,SESCO,II.5.1,Tucuman,AR-T,annual,2022,naphtha combustion consumption by agriculture machines,0.3618384,TJ,CH4,3.0,kg/TJ,1.0855152000000001,kg -458ce2d6-fc44-359f-89d9-7381e92a0ba8,SESCO,II.5.1,Tucuman,AR-T,annual,2022,naphtha combustion consumption by agriculture machines,0.3618384,TJ,N2O,0.6,kg/TJ,0.21710304,kg -7e807937-44fe-3e55-bc8e-38601689c823,SESCO,II.1.1,Buenos Aires,AR-B,annual,2022,naphtha combustion consumption by to the public,18694.742774399998,TJ,CO2,73300.0,kg/TJ,1370324645.36352,kg -113eef9b-3128-3bc8-97fa-970d81c567a5,SESCO,II.1.1,Buenos Aires,AR-B,annual,2022,naphtha combustion consumption by to the public,18694.742774399998,TJ,CH4,3.0,kg/TJ,56084.22832319999,kg -b5c5219f-35c8-3775-b10c-81c61227df56,SESCO,II.1.1,Buenos Aires,AR-B,annual,2022,naphtha combustion consumption by to the public,18694.742774399998,TJ,N2O,0.6,kg/TJ,11216.845664639999,kg -0900d97d-db0f-367a-8ed9-5428b781cb74,SESCO,II.1.1,Capital Federal,AR-C,annual,2022,naphtha combustion consumption by to the public,4928.661152799999,TJ,CO2,73300.0,kg/TJ,361270862.50023997,kg -f2cc2d1f-281a-36c2-836c-c2781faa57ad,SESCO,II.1.1,Capital Federal,AR-C,annual,2022,naphtha combustion consumption by to the public,4928.661152799999,TJ,CH4,3.0,kg/TJ,14785.983458399998,kg -0d09ace3-c448-35c5-80c1-6bfaa58e01e4,SESCO,II.1.1,Capital Federal,AR-C,annual,2022,naphtha combustion consumption by to the public,4928.661152799999,TJ,N2O,0.6,kg/TJ,2957.1966916799997,kg -831042cf-b918-3d2e-bdfc-1ada2313a9e2,SESCO,II.1.1,Catamarca,AR-K,annual,2022,naphtha combustion consumption by to the public,126.85451239999999,TJ,CO2,73300.0,kg/TJ,9298435.758919999,kg -c7c28080-a280-3491-9c43-bd8e826588b3,SESCO,II.1.1,Catamarca,AR-K,annual,2022,naphtha combustion consumption by to the public,126.85451239999999,TJ,CH4,3.0,kg/TJ,380.5635372,kg -2d8e2dc7-0217-3c5f-b522-3a3b1a8e37f6,SESCO,II.1.1,Catamarca,AR-K,annual,2022,naphtha combustion consumption by to the public,126.85451239999999,TJ,N2O,0.6,kg/TJ,76.11270744,kg -82b964a1-80f0-354b-b059-39ff36386a5f,SESCO,II.1.1,Chaco,AR-H,annual,2022,naphtha combustion consumption by to the public,1122.3624103999998,TJ,CO2,73300.0,kg/TJ,82269164.68231998,kg -b1524eb4-d8db-3c9e-9e2e-006e900b93bd,SESCO,II.1.1,Chaco,AR-H,annual,2022,naphtha combustion consumption by to the public,1122.3624103999998,TJ,CH4,3.0,kg/TJ,3367.087231199999,kg -a6de00be-541b-3a43-8e90-71b8b7555623,SESCO,II.1.1,Chaco,AR-H,annual,2022,naphtha combustion consumption by to the public,1122.3624103999998,TJ,N2O,0.6,kg/TJ,673.4174462399999,kg -43d847ff-66ce-3f39-b9a9-197380402883,SESCO,II.1.1,Corrientes,AR-W,annual,2022,naphtha combustion consumption by to the public,1240.4724947999998,TJ,CO2,73300.0,kg/TJ,90926633.86884,kg -d24a9f8e-3800-3c0a-9576-fcaeb3cbe079,SESCO,II.1.1,Corrientes,AR-W,annual,2022,naphtha combustion consumption by to the public,1240.4724947999998,TJ,CH4,3.0,kg/TJ,3721.4174843999995,kg -68791be5-15a4-3e82-99d8-05451b3abec6,SESCO,II.1.1,Corrientes,AR-W,annual,2022,naphtha combustion consumption by to the public,1240.4724947999998,TJ,N2O,0.6,kg/TJ,744.2834968799999,kg -324e327c-6f60-362e-86d0-c341d8fa5a9b,SESCO,II.1.1,Córdoba,AR-X,annual,2022,naphtha combustion consumption by to the public,5366.968068,TJ,CO2,73300.0,kg/TJ,393398759.3844,kg -484cfa18-e59d-320a-98e1-94c2b2c2a16e,SESCO,II.1.1,Córdoba,AR-X,annual,2022,naphtha combustion consumption by to the public,5366.968068,TJ,CH4,3.0,kg/TJ,16100.904204,kg -9c498ed9-9bc2-348d-9b31-c1321c9709d9,SESCO,II.1.1,Córdoba,AR-X,annual,2022,naphtha combustion consumption by to the public,5366.968068,TJ,N2O,0.6,kg/TJ,3220.1808408,kg -e97f52e9-4a0b-39af-99fc-716f1d94db54,SESCO,II.1.1,Entre Rios,AR-E,annual,2022,naphtha combustion consumption by to the public,1775.571182,TJ,CO2,73300.0,kg/TJ,130149367.6406,kg -c5ed9478-ae1f-34cf-9218-e79eca56748f,SESCO,II.1.1,Entre Rios,AR-E,annual,2022,naphtha combustion consumption by to the public,1775.571182,TJ,CH4,3.0,kg/TJ,5326.713546,kg -b6d80819-8e88-37e6-8a69-3ba820890d80,SESCO,II.1.1,Entre Rios,AR-E,annual,2022,naphtha combustion consumption by to the public,1775.571182,TJ,N2O,0.6,kg/TJ,1065.3427092,kg -e8b04c93-3e5e-385f-9bf8-57d809880e87,SESCO,II.1.1,Formosa,AR-P,annual,2022,naphtha combustion consumption by to the public,603.1243064,TJ,CO2,73300.0,kg/TJ,44209011.65912,kg -5ab49045-b693-3b4f-90a4-81d57cb78a90,SESCO,II.1.1,Formosa,AR-P,annual,2022,naphtha combustion consumption by to the public,603.1243064,TJ,CH4,3.0,kg/TJ,1809.3729192,kg -d93d78cc-d683-38dc-963a-b83e29167f08,SESCO,II.1.1,Formosa,AR-P,annual,2022,naphtha combustion consumption by to the public,603.1243064,TJ,N2O,0.6,kg/TJ,361.87458384,kg -654d20a1-a30b-3378-859b-1e95d89ba565,SESCO,II.1.1,Jujuy,AR-Y,annual,2022,naphtha combustion consumption by to the public,382.8551804,TJ,CO2,73300.0,kg/TJ,28063284.72332,kg -c7368ccd-e147-3f16-9696-a772e03f1c42,SESCO,II.1.1,Jujuy,AR-Y,annual,2022,naphtha combustion consumption by to the public,382.8551804,TJ,CH4,3.0,kg/TJ,1148.5655412,kg -154d83cd-2336-35f7-aa44-55215f6aaaef,SESCO,II.1.1,Jujuy,AR-Y,annual,2022,naphtha combustion consumption by to the public,382.8551804,TJ,N2O,0.6,kg/TJ,229.71310824,kg -876c2ce8-eaa4-3537-b3d1-51f2e5aae743,SESCO,II.1.1,La Pampa,AR-L,annual,2022,naphtha combustion consumption by to the public,423.74291959999994,TJ,CO2,73300.0,kg/TJ,31060356.006679997,kg -2ff24313-6d4f-3e1f-a86b-946436b65cef,SESCO,II.1.1,La Pampa,AR-L,annual,2022,naphtha combustion consumption by to the public,423.74291959999994,TJ,CH4,3.0,kg/TJ,1271.2287588,kg -f4d126f3-e55f-3330-9c47-4d962da611cd,SESCO,II.1.1,La Pampa,AR-L,annual,2022,naphtha combustion consumption by to the public,423.74291959999994,TJ,N2O,0.6,kg/TJ,254.24575175999996,kg -c094adbd-258c-340e-a36a-1e9ecaa624f5,SESCO,II.1.1,La Rioja,AR-F,annual,2022,naphtha combustion consumption by to the public,312.0554668,TJ,CO2,73300.0,kg/TJ,22873665.71644,kg -18d0e42d-b92d-3ff9-bfee-ad6562534260,SESCO,II.1.1,La Rioja,AR-F,annual,2022,naphtha combustion consumption by to the public,312.0554668,TJ,CH4,3.0,kg/TJ,936.1664003999999,kg -2a5a9186-d6a3-3b87-9dd8-9208e1b9fa0c,SESCO,II.1.1,La Rioja,AR-F,annual,2022,naphtha combustion consumption by to the public,312.0554668,TJ,N2O,0.6,kg/TJ,187.23328008,kg -5445cb88-1f47-35a4-b317-cff51d36f206,SESCO,II.1.1,Mendoza,AR-M,annual,2022,naphtha combustion consumption by to the public,1773.4604579999998,TJ,CO2,73300.0,kg/TJ,129994651.57139999,kg -57ab1412-efbc-3933-976c-a019040c6eaf,SESCO,II.1.1,Mendoza,AR-M,annual,2022,naphtha combustion consumption by to the public,1773.4604579999998,TJ,CH4,3.0,kg/TJ,5320.381374,kg -b213186d-93ed-387c-a148-f1bc92d9589f,SESCO,II.1.1,Mendoza,AR-M,annual,2022,naphtha combustion consumption by to the public,1773.4604579999998,TJ,N2O,0.6,kg/TJ,1064.0762747999997,kg -78362784-1dcd-3dee-8c7b-e97a60ba7f6b,SESCO,II.1.1,Misiones,AR-N,annual,2022,naphtha combustion consumption by to the public,2269.7519767999997,TJ,CO2,73300.0,kg/TJ,166372819.89944,kg -86589f63-e44f-3bfb-94e6-a7dabb657f71,SESCO,II.1.1,Misiones,AR-N,annual,2022,naphtha combustion consumption by to the public,2269.7519767999997,TJ,CH4,3.0,kg/TJ,6809.255930399999,kg -497ef604-4eb8-392c-9df8-190fff0779eb,SESCO,II.1.1,Misiones,AR-N,annual,2022,naphtha combustion consumption by to the public,2269.7519767999997,TJ,N2O,0.6,kg/TJ,1361.8511860799997,kg -f0c12169-9d97-3712-84e8-f129d420298a,SESCO,II.1.1,Neuquén,AR-Q,annual,2022,naphtha combustion consumption by to the public,693.6140595999999,TJ,CO2,73300.0,kg/TJ,50841910.568679996,kg -7d2c735b-889d-391a-987b-3aaa508f1886,SESCO,II.1.1,Neuquén,AR-Q,annual,2022,naphtha combustion consumption by to the public,693.6140595999999,TJ,CH4,3.0,kg/TJ,2080.8421787999996,kg -bb11f079-ab4f-3b3c-aeb8-2557664f4187,SESCO,II.1.1,Neuquén,AR-Q,annual,2022,naphtha combustion consumption by to the public,693.6140595999999,TJ,N2O,0.6,kg/TJ,416.1684357599999,kg -4a38fe79-0ffb-3fa6-bbd3-8f0aa4ea29ea,SESCO,II.1.1,Rio Negro,AR-R,annual,2022,naphtha combustion consumption by to the public,361.17502959999996,TJ,CO2,73300.0,kg/TJ,26474129.669679996,kg -aa7dba80-477b-325e-b6e5-c4453b12c0a1,SESCO,II.1.1,Rio Negro,AR-R,annual,2022,naphtha combustion consumption by to the public,361.17502959999996,TJ,CH4,3.0,kg/TJ,1083.5250887999998,kg -7a23d3c1-ba1a-30ed-aec7-6dc4c188aaf3,SESCO,II.1.1,Rio Negro,AR-R,annual,2022,naphtha combustion consumption by to the public,361.17502959999996,TJ,N2O,0.6,kg/TJ,216.70501775999998,kg -637e1a8a-85d2-36e7-8630-a03af5f97a37,SESCO,II.1.1,Salta,AR-A,annual,2022,naphtha combustion consumption by to the public,347.3950171999999,TJ,CO2,73300.0,kg/TJ,25464054.760759994,kg -bb2ec0c8-6ac3-3477-8e35-145dc7954eac,SESCO,II.1.1,Salta,AR-A,annual,2022,naphtha combustion consumption by to the public,347.3950171999999,TJ,CH4,3.0,kg/TJ,1042.1850515999997,kg -5d5271d6-b2d5-317d-8ad0-47bde37dec67,SESCO,II.1.1,Salta,AR-A,annual,2022,naphtha combustion consumption by to the public,347.3950171999999,TJ,N2O,0.6,kg/TJ,208.43701031999996,kg -7b297eda-3f83-3814-8ac6-a4e636836e60,SESCO,II.1.1,San Juan,AR-J,annual,2022,naphtha combustion consumption by to the public,384.0311552,TJ,CO2,73300.0,kg/TJ,28149483.67616,kg -86692ba5-0f04-34e1-b55e-8a8da57f0836,SESCO,II.1.1,San Juan,AR-J,annual,2022,naphtha combustion consumption by to the public,384.0311552,TJ,CH4,3.0,kg/TJ,1152.0934656,kg -9fb353f3-d6f1-36c8-9a22-7a9917772ad4,SESCO,II.1.1,San Juan,AR-J,annual,2022,naphtha combustion consumption by to the public,384.0311552,TJ,N2O,0.6,kg/TJ,230.41869312,kg -dc22d5b4-5e91-3c38-b05b-52330a5789e7,SESCO,II.1.1,San Luis,AR-D,annual,2022,naphtha combustion consumption by to the public,387.83045839999994,TJ,CO2,73300.0,kg/TJ,28427972.600719996,kg -c2f5f062-9652-38b9-8e43-7b655c60197e,SESCO,II.1.1,San Luis,AR-D,annual,2022,naphtha combustion consumption by to the public,387.83045839999994,TJ,CH4,3.0,kg/TJ,1163.4913751999998,kg -26b6f853-d5d8-3bd3-b04f-1844d417633d,SESCO,II.1.1,San Luis,AR-D,annual,2022,naphtha combustion consumption by to the public,387.83045839999994,TJ,N2O,0.6,kg/TJ,232.69827503999994,kg -cedd3735-5469-3bad-8862-c31c444b880a,SESCO,II.1.1,Santa Fe,AR-S,annual,2022,naphtha combustion consumption by to the public,3756.0635111999995,TJ,CO2,73300.0,kg/TJ,275319455.37095994,kg -d8d63113-7bfd-3770-914f-ae2e9aa9811e,SESCO,II.1.1,Santa Fe,AR-S,annual,2022,naphtha combustion consumption by to the public,3756.0635111999995,TJ,CH4,3.0,kg/TJ,11268.190533599998,kg -e61a779e-2e28-3db7-86b2-e3a1401590d5,SESCO,II.1.1,Santa Fe,AR-S,annual,2022,naphtha combustion consumption by to the public,3756.0635111999995,TJ,N2O,0.6,kg/TJ,2253.6381067199995,kg -42035116-bebd-38e5-a95b-5b665a2ef39d,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2022,naphtha combustion consumption by to the public,685.4123891999999,TJ,CO2,73300.0,kg/TJ,50240728.128359996,kg -17c01bff-f887-3a45-a2a0-43bcf51354a6,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2022,naphtha combustion consumption by to the public,685.4123891999999,TJ,CH4,3.0,kg/TJ,2056.2371676,kg -9eab14d7-d1b2-3cac-a48d-b92a8b0b955d,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2022,naphtha combustion consumption by to the public,685.4123891999999,TJ,N2O,0.6,kg/TJ,411.2474335199999,kg -8faa3f9b-d784-3f2e-831b-5997d47f9bfa,SESCO,II.1.1,Tucuman,AR-T,annual,2022,naphtha combustion consumption by to the public,1282.7472811999999,TJ,CO2,73300.0,kg/TJ,94025375.71195999,kg -3f16e0ca-9f27-354a-ae7d-5f178ec951f7,SESCO,II.1.1,Tucuman,AR-T,annual,2022,naphtha combustion consumption by to the public,1282.7472811999999,TJ,CH4,3.0,kg/TJ,3848.2418436,kg -2bd30b83-dfac-3b42-a9e8-83c61f8e1e7e,SESCO,II.1.1,Tucuman,AR-T,annual,2022,naphtha combustion consumption by to the public,1282.7472811999999,TJ,N2O,0.6,kg/TJ,769.6483687199999,kg -56351683-a277-359e-ab92-9352a23eb521,SESCO,II.1.1,Buenos Aires,AR-B,annual,2022,naphtha combustion consumption by to the public,9255.404127199998,TJ,CO2,73300.0,kg/TJ,678421122.5237598,kg -a1257e5f-1339-30d0-8d0c-47c9c05de5aa,SESCO,II.1.1,Buenos Aires,AR-B,annual,2022,naphtha combustion consumption by to the public,9255.404127199998,TJ,CH4,3.0,kg/TJ,27766.212381599995,kg -a0d46946-f0e7-3a75-8410-3378cc0cd3ff,SESCO,II.1.1,Buenos Aires,AR-B,annual,2022,naphtha combustion consumption by to the public,9255.404127199998,TJ,N2O,0.6,kg/TJ,5553.242476319999,kg -27a7b4e1-beb6-3c2c-a9cb-20f2e0666893,SESCO,II.1.1,Capital Federal,AR-C,annual,2022,naphtha combustion consumption by to the public,3623.2989715999997,TJ,CO2,73300.0,kg/TJ,265587814.61828,kg -f296938d-9ad5-38c3-b56a-3adf5620d75b,SESCO,II.1.1,Capital Federal,AR-C,annual,2022,naphtha combustion consumption by to the public,3623.2989715999997,TJ,CH4,3.0,kg/TJ,10869.8969148,kg -d3262dbb-764b-3d28-8079-9e69782d4429,SESCO,II.1.1,Capital Federal,AR-C,annual,2022,naphtha combustion consumption by to the public,3623.2989715999997,TJ,N2O,0.6,kg/TJ,2173.97938296,kg -23a02556-0c50-3b72-9015-829ffeca4fa6,SESCO,II.1.1,Catamarca,AR-K,annual,2022,naphtha combustion consumption by to the public,47.46113679999999,TJ,CO2,73300.0,kg/TJ,3478901.327439999,kg -0d8acdb7-1a3b-3109-b567-4baa32784d99,SESCO,II.1.1,Catamarca,AR-K,annual,2022,naphtha combustion consumption by to the public,47.46113679999999,TJ,CH4,3.0,kg/TJ,142.38341039999997,kg -1d450857-2ad6-3d4d-8bce-107fc46ffca3,SESCO,II.1.1,Catamarca,AR-K,annual,2022,naphtha combustion consumption by to the public,47.46113679999999,TJ,N2O,0.6,kg/TJ,28.476682079999993,kg -decb0a15-49c6-3647-a139-ac99ccd90ea6,SESCO,II.1.1,Chaco,AR-H,annual,2022,naphtha combustion consumption by to the public,333.5245452,TJ,CO2,73300.0,kg/TJ,24447349.16316,kg -3be182cc-3d99-37c1-a582-2405677adc1d,SESCO,II.1.1,Chaco,AR-H,annual,2022,naphtha combustion consumption by to the public,333.5245452,TJ,CH4,3.0,kg/TJ,1000.5736356,kg -743f921e-ae44-344c-8947-2846ecc7ca6a,SESCO,II.1.1,Chaco,AR-H,annual,2022,naphtha combustion consumption by to the public,333.5245452,TJ,N2O,0.6,kg/TJ,200.11472711999997,kg -3547dcdd-22be-33cf-9398-c7d36bd56674,SESCO,II.1.1,Corrientes,AR-W,annual,2022,naphtha combustion consumption by to the public,404.655944,TJ,CO2,73300.0,kg/TJ,29661280.6952,kg -ccee2658-a9f5-36c8-9169-1db1a1d0c4d5,SESCO,II.1.1,Corrientes,AR-W,annual,2022,naphtha combustion consumption by to the public,404.655944,TJ,CH4,3.0,kg/TJ,1213.9678319999998,kg -c75a6bfb-48d2-3a0f-bb9f-6b259288be8b,SESCO,II.1.1,Corrientes,AR-W,annual,2022,naphtha combustion consumption by to the public,404.655944,TJ,N2O,0.6,kg/TJ,242.79356639999997,kg -9d731054-67e7-32a2-a794-86f550ee0903,SESCO,II.1.1,Córdoba,AR-X,annual,2022,naphtha combustion consumption by to the public,2022.7972687999998,TJ,CO2,73300.0,kg/TJ,148271039.80303997,kg -72088d3a-982b-38c7-aee2-1a7a61944a10,SESCO,II.1.1,Córdoba,AR-X,annual,2022,naphtha combustion consumption by to the public,2022.7972687999998,TJ,CH4,3.0,kg/TJ,6068.391806399999,kg -d20b2543-aab9-30cb-8f89-829161b7e6ea,SESCO,II.1.1,Córdoba,AR-X,annual,2022,naphtha combustion consumption by to the public,2022.7972687999998,TJ,N2O,0.6,kg/TJ,1213.6783612799998,kg -152d0486-00b9-3679-9631-aaa81c959924,SESCO,II.1.1,Entre Rios,AR-E,annual,2022,naphtha combustion consumption by to the public,601.4658804,TJ,CO2,73300.0,kg/TJ,44087449.033319995,kg -ce3d33a1-4461-3305-bece-82c3a92366f6,SESCO,II.1.1,Entre Rios,AR-E,annual,2022,naphtha combustion consumption by to the public,601.4658804,TJ,CH4,3.0,kg/TJ,1804.3976411999997,kg -6a7098a0-21ea-3dca-8584-1c1c388ac1c2,SESCO,II.1.1,Entre Rios,AR-E,annual,2022,naphtha combustion consumption by to the public,601.4658804,TJ,N2O,0.6,kg/TJ,360.87952823999996,kg -77616e98-352e-3fb0-adec-efdd367d9fe0,SESCO,II.1.1,Formosa,AR-P,annual,2022,naphtha combustion consumption by to the public,174.82825359999998,TJ,CO2,73300.0,kg/TJ,12814910.98888,kg -54c11571-262b-34e1-95b2-163e830ca182,SESCO,II.1.1,Formosa,AR-P,annual,2022,naphtha combustion consumption by to the public,174.82825359999998,TJ,CH4,3.0,kg/TJ,524.4847608,kg -535eb65d-9be0-3884-aae2-145fc188e450,SESCO,II.1.1,Formosa,AR-P,annual,2022,naphtha combustion consumption by to the public,174.82825359999998,TJ,N2O,0.6,kg/TJ,104.89695215999998,kg -9d968d00-293a-354f-894a-331d217908ad,SESCO,II.1.1,Jujuy,AR-Y,annual,2022,naphtha combustion consumption by to the public,96.0077888,TJ,CO2,73300.0,kg/TJ,7037370.91904,kg -06c8cf6a-1bc1-3678-aad7-cf6d9be5f131,SESCO,II.1.1,Jujuy,AR-Y,annual,2022,naphtha combustion consumption by to the public,96.0077888,TJ,CH4,3.0,kg/TJ,288.0233664,kg -fa47df6e-c532-3927-b2c8-adf4819d44f6,SESCO,II.1.1,Jujuy,AR-Y,annual,2022,naphtha combustion consumption by to the public,96.0077888,TJ,N2O,0.6,kg/TJ,57.60467328,kg -26259584-4160-3279-917d-bc1d799b41c3,SESCO,II.1.1,La Pampa,AR-L,annual,2022,naphtha combustion consumption by to the public,207.99677359999998,TJ,CO2,73300.0,kg/TJ,15246163.504879998,kg -9bc56376-b294-32b0-a4c5-e314e4e66a97,SESCO,II.1.1,La Pampa,AR-L,annual,2022,naphtha combustion consumption by to the public,207.99677359999998,TJ,CH4,3.0,kg/TJ,623.9903208,kg -b45b0dee-ef0d-33b5-b31a-9df5c1d9c6f2,SESCO,II.1.1,La Pampa,AR-L,annual,2022,naphtha combustion consumption by to the public,207.99677359999998,TJ,N2O,0.6,kg/TJ,124.79806415999998,kg -8d41c9f0-cc1d-3dd3-99d2-c66512c3a845,SESCO,II.1.1,La Rioja,AR-F,annual,2022,naphtha combustion consumption by to the public,103.87777399999999,TJ,CO2,73300.0,kg/TJ,7614240.834199999,kg -dea38e3f-28de-3bea-b03c-c6158cbe81e0,SESCO,II.1.1,La Rioja,AR-F,annual,2022,naphtha combustion consumption by to the public,103.87777399999999,TJ,CH4,3.0,kg/TJ,311.63332199999996,kg -82cd4a93-0df8-3db6-a0d0-3e4481be1f22,SESCO,II.1.1,La Rioja,AR-F,annual,2022,naphtha combustion consumption by to the public,103.87777399999999,TJ,N2O,0.6,kg/TJ,62.32666439999999,kg -09d9ee67-f456-3689-85cd-ed7328d1cf36,SESCO,II.1.1,Mendoza,AR-M,annual,2022,naphtha combustion consumption by to the public,760.61447,TJ,CO2,73300.0,kg/TJ,55753040.651,kg -ebf9d07c-ea53-303c-ac65-f8730f326039,SESCO,II.1.1,Mendoza,AR-M,annual,2022,naphtha combustion consumption by to the public,760.61447,TJ,CH4,3.0,kg/TJ,2281.84341,kg -cafa9c00-b2aa-35bf-b648-64cde55eb380,SESCO,II.1.1,Mendoza,AR-M,annual,2022,naphtha combustion consumption by to the public,760.61447,TJ,N2O,0.6,kg/TJ,456.368682,kg -a86cd7ec-9954-35e6-a002-b514024db9e4,SESCO,II.1.1,Misiones,AR-N,annual,2022,naphtha combustion consumption by to the public,382.041044,TJ,CO2,73300.0,kg/TJ,28003608.5252,kg -6ccf5ddf-ac37-323c-8522-6e1f5749ae73,SESCO,II.1.1,Misiones,AR-N,annual,2022,naphtha combustion consumption by to the public,382.041044,TJ,CH4,3.0,kg/TJ,1146.123132,kg -0fd7b245-3626-3fa4-8561-af11d7d8bcc9,SESCO,II.1.1,Misiones,AR-N,annual,2022,naphtha combustion consumption by to the public,382.041044,TJ,N2O,0.6,kg/TJ,229.2246264,kg -73394e7e-e20f-3d14-b057-0ce4a0bebbf8,SESCO,II.1.1,Neuquén,AR-Q,annual,2022,naphtha combustion consumption by to the public,341.87698159999997,TJ,CO2,73300.0,kg/TJ,25059582.75128,kg -475f05cc-9ec3-3d17-8507-8c07c7b319f3,SESCO,II.1.1,Neuquén,AR-Q,annual,2022,naphtha combustion consumption by to the public,341.87698159999997,TJ,CH4,3.0,kg/TJ,1025.6309448,kg -d71a780e-0195-3aff-a1a1-06dfa6b2ca52,SESCO,II.1.1,Neuquén,AR-Q,annual,2022,naphtha combustion consumption by to the public,341.87698159999997,TJ,N2O,0.6,kg/TJ,205.12618895999998,kg -9d68f562-c497-3d98-9a65-f52b1219ab7c,SESCO,II.1.1,Rio Negro,AR-R,annual,2022,naphtha combustion consumption by to the public,193.70415679999996,TJ,CO2,73300.0,kg/TJ,14198514.693439998,kg -db75ed51-a1e5-375d-8b4e-7e68d1102a22,SESCO,II.1.1,Rio Negro,AR-R,annual,2022,naphtha combustion consumption by to the public,193.70415679999996,TJ,CH4,3.0,kg/TJ,581.1124703999999,kg -eb6c63e0-e1b4-3c79-b9de-d186589854b5,SESCO,II.1.1,Rio Negro,AR-R,annual,2022,naphtha combustion consumption by to the public,193.70415679999996,TJ,N2O,0.6,kg/TJ,116.22249407999998,kg -a6ebc422-cd76-3061-9bcb-0709070c19fe,SESCO,II.1.1,Salta,AR-A,annual,2022,naphtha combustion consumption by to the public,139.307784,TJ,CO2,73300.0,kg/TJ,10211260.5672,kg -bf4e1d58-cd79-35ce-a70f-f44c19708bfc,SESCO,II.1.1,Salta,AR-A,annual,2022,naphtha combustion consumption by to the public,139.307784,TJ,CH4,3.0,kg/TJ,417.923352,kg -b7564156-cb74-3b8a-8dbb-ccba7518dea4,SESCO,II.1.1,Salta,AR-A,annual,2022,naphtha combustion consumption by to the public,139.307784,TJ,N2O,0.6,kg/TJ,83.5846704,kg -8d9ea3d7-051e-3ec7-bf8e-91361d2c130b,SESCO,II.1.1,San Juan,AR-J,annual,2022,naphtha combustion consumption by to the public,122.06015359999998,TJ,CO2,73300.0,kg/TJ,8947009.258879999,kg -015cea22-1159-3f5c-9ca5-e062782dca12,SESCO,II.1.1,San Juan,AR-J,annual,2022,naphtha combustion consumption by to the public,122.06015359999998,TJ,CH4,3.0,kg/TJ,366.18046079999993,kg -0fb17fd1-a697-35a1-8237-821b3919dd8d,SESCO,II.1.1,San Juan,AR-J,annual,2022,naphtha combustion consumption by to the public,122.06015359999998,TJ,N2O,0.6,kg/TJ,73.23609215999998,kg -fa6bf220-9a07-3665-91c9-26e41361463c,SESCO,II.1.1,San Luis,AR-D,annual,2022,naphtha combustion consumption by to the public,159.359662,TJ,CO2,73300.0,kg/TJ,11681063.224599998,kg -59dfc6b3-a75d-341b-82ef-519efa2ea838,SESCO,II.1.1,San Luis,AR-D,annual,2022,naphtha combustion consumption by to the public,159.359662,TJ,CH4,3.0,kg/TJ,478.078986,kg -0e47ade1-fd57-3a57-9f40-dd01e856329e,SESCO,II.1.1,San Luis,AR-D,annual,2022,naphtha combustion consumption by to the public,159.359662,TJ,N2O,0.6,kg/TJ,95.61579719999999,kg -13d3d3ad-e76b-3d42-a645-81e54ffdecb2,SESCO,II.1.1,Santa Fe,AR-S,annual,2022,naphtha combustion consumption by to the public,1826.3190175999998,TJ,CO2,73300.0,kg/TJ,133869183.99007998,kg -62fd735e-562d-3b38-be57-0363bcdc65d0,SESCO,II.1.1,Santa Fe,AR-S,annual,2022,naphtha combustion consumption by to the public,1826.3190175999998,TJ,CH4,3.0,kg/TJ,5478.9570527999995,kg -a5ade8b1-12f1-324c-b0f8-9c898ee616c6,SESCO,II.1.1,Santa Fe,AR-S,annual,2022,naphtha combustion consumption by to the public,1826.3190175999998,TJ,N2O,0.6,kg/TJ,1095.7914105599998,kg -9e682dd2-57ba-30f8-920f-3010c34331d2,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2022,naphtha combustion consumption by to the public,218.06794239999996,TJ,CO2,73300.0,kg/TJ,15984380.177919997,kg -dd64e783-add7-3f28-8f62-efb43245e7d6,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2022,naphtha combustion consumption by to the public,218.06794239999996,TJ,CH4,3.0,kg/TJ,654.2038271999999,kg -e2e7bdde-4eca-39dc-8087-b75d8f534fda,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2022,naphtha combustion consumption by to the public,218.06794239999996,TJ,N2O,0.6,kg/TJ,130.84076543999998,kg -9b0adcac-5b77-3b6f-a82e-973bcbacfceb,SESCO,II.1.1,Tucuman,AR-T,annual,2022,naphtha combustion consumption by to the public,309.4924448,TJ,CO2,73300.0,kg/TJ,22685796.20384,kg -6202c30b-24bb-3a4a-b284-ee11527a3eeb,SESCO,II.1.1,Tucuman,AR-T,annual,2022,naphtha combustion consumption by to the public,309.4924448,TJ,CH4,3.0,kg/TJ,928.4773344,kg -8b315eee-070e-3e4d-94a6-f2a318126ad9,SESCO,II.1.1,Tucuman,AR-T,annual,2022,naphtha combustion consumption by to the public,309.4924448,TJ,N2O,0.6,kg/TJ,185.69546688,kg -135ad082-8dfd-32f7-89c0-557c764d5bf0,SESCO,I.3.1,Buenos Aires,AR-B,annual,2022,naphtha combustion consumption by petrochemical industries,37.9628788,TJ,CO2,73300.0,kg/TJ,2782679.0160399997,kg -c1823d87-bfa4-31d7-815f-9f6dc627fcd2,SESCO,I.3.1,Buenos Aires,AR-B,annual,2022,naphtha combustion consumption by petrochemical industries,37.9628788,TJ,CH4,3.0,kg/TJ,113.8886364,kg -e64cc5d8-43c5-32a8-8e8c-2fa309a28d5d,SESCO,I.3.1,Buenos Aires,AR-B,annual,2022,naphtha combustion consumption by petrochemical industries,37.9628788,TJ,N2O,0.6,kg/TJ,22.777727279999997,kg -7b849e21-8f74-36bf-aefa-177ee73b9815,SESCO,I.3.1,Misiones,AR-N,annual,2022,naphtha combustion consumption by petrochemical industries,0.603064,TJ,CO2,73300.0,kg/TJ,44204.5912,kg -d54491e0-6956-3f3d-974a-3c5d1e6fe419,SESCO,I.3.1,Misiones,AR-N,annual,2022,naphtha combustion consumption by petrochemical industries,0.603064,TJ,CH4,3.0,kg/TJ,1.8091920000000001,kg -dda31d18-01e3-32db-9e85-af8f332f1161,SESCO,I.3.1,Misiones,AR-N,annual,2022,naphtha combustion consumption by petrochemical industries,0.603064,TJ,N2O,0.6,kg/TJ,0.3618384,kg -c8e345ba-8615-3d8b-9fd6-efe4d1a12d15,SESCO,I.3.1,Buenos Aires,AR-B,annual,2022,naphtha combustion consumption by petrochemical industries,12.242199199999998,TJ,CO2,73300.0,kg/TJ,897353.2013599998,kg -1aab66b3-2e4d-3f10-83df-b96a26149877,SESCO,I.3.1,Buenos Aires,AR-B,annual,2022,naphtha combustion consumption by petrochemical industries,12.242199199999998,TJ,CH4,3.0,kg/TJ,36.72659759999999,kg -5eb0c0fc-fbbf-3cdf-bc27-ecc9519a84a3,SESCO,I.3.1,Buenos Aires,AR-B,annual,2022,naphtha combustion consumption by petrochemical industries,12.242199199999998,TJ,N2O,0.6,kg/TJ,7.3453195199999985,kg -375ff159-025e-3af2-a4a5-c6e242b240d3,SESCO,I.3.1,Chubut,AR-U,annual,2022,naphtha combustion consumption by petrochemical industries,0.48245119999999997,TJ,CO2,73300.0,kg/TJ,35363.672959999996,kg -e67abd61-2509-3a24-bb35-87403e449f45,SESCO,I.3.1,Chubut,AR-U,annual,2022,naphtha combustion consumption by petrochemical industries,0.48245119999999997,TJ,CH4,3.0,kg/TJ,1.4473536,kg -2eed757a-5eea-3b61-85e5-9d856fbfb415,SESCO,I.3.1,Chubut,AR-U,annual,2022,naphtha combustion consumption by petrochemical industries,0.48245119999999997,TJ,N2O,0.6,kg/TJ,0.28947071999999996,kg -ed165e5c-9257-3bdc-a9c4-ca4802530f7b,SESCO,I.3.1,Córdoba,AR-X,annual,2022,naphtha combustion consumption by petrochemical industries,1.8996515999999997,TJ,CO2,73300.0,kg/TJ,139244.46227999998,kg -0625e44d-8caa-3125-9375-a73216a940a8,SESCO,I.3.1,Córdoba,AR-X,annual,2022,naphtha combustion consumption by petrochemical industries,1.8996515999999997,TJ,CH4,3.0,kg/TJ,5.698954799999999,kg -afbc4e85-6ede-3222-8119-39497120ec9f,SESCO,I.3.1,Córdoba,AR-X,annual,2022,naphtha combustion consumption by petrochemical industries,1.8996515999999997,TJ,N2O,0.6,kg/TJ,1.1397909599999998,kg -2e813675-c154-3335-a2b7-09eddc0e08a0,SESCO,I.3.1,Entre Rios,AR-E,annual,2022,naphtha combustion consumption by petrochemical industries,1.8393452,TJ,CO2,73300.0,kg/TJ,134824.00316,kg -3aecce84-8f4e-3d6b-b278-232d2046082f,SESCO,I.3.1,Entre Rios,AR-E,annual,2022,naphtha combustion consumption by petrochemical industries,1.8393452,TJ,CH4,3.0,kg/TJ,5.518035599999999,kg -b0487f91-5e96-348d-8c80-d9830bb6f138,SESCO,I.3.1,Entre Rios,AR-E,annual,2022,naphtha combustion consumption by petrochemical industries,1.8393452,TJ,N2O,0.6,kg/TJ,1.10360712,kg -b088936f-9b2a-3f86-8daa-4b08965b467a,SESCO,I.3.1,La Pampa,AR-L,annual,2022,naphtha combustion consumption by petrochemical industries,1.1759747999999999,TJ,CO2,73300.0,kg/TJ,86198.95284,kg -e02ba7f0-9f5f-3f9b-83ae-4d3e436a69cc,SESCO,I.3.1,La Pampa,AR-L,annual,2022,naphtha combustion consumption by petrochemical industries,1.1759747999999999,TJ,CH4,3.0,kg/TJ,3.5279244,kg -89d747de-4f27-3338-9299-677894131101,SESCO,I.3.1,La Pampa,AR-L,annual,2022,naphtha combustion consumption by petrochemical industries,1.1759747999999999,TJ,N2O,0.6,kg/TJ,0.7055848799999999,kg -c6097fb8-ace2-32b3-a682-c588c505a7ed,SESCO,I.3.1,Misiones,AR-N,annual,2022,naphtha combustion consumption by petrochemical industries,1.0252088,TJ,CO2,73300.0,kg/TJ,75147.80503999999,kg -26be359f-3f8a-3e43-a5e2-ab53fc4ed1b0,SESCO,I.3.1,Misiones,AR-N,annual,2022,naphtha combustion consumption by petrochemical industries,1.0252088,TJ,CH4,3.0,kg/TJ,3.0756264,kg -14a3871a-a5fb-3807-a3bc-6347fde91429,SESCO,I.3.1,Misiones,AR-N,annual,2022,naphtha combustion consumption by petrochemical industries,1.0252088,TJ,N2O,0.6,kg/TJ,0.6151252799999999,kg -b8bc389c-9b40-3aab-9c52-e7fee5590d3e,SESCO,I.3.1,Neuquén,AR-Q,annual,2022,naphtha combustion consumption by petrochemical industries,1.2965876,TJ,CO2,73300.0,kg/TJ,95039.87108000001,kg -085ff64e-dd65-3fff-ab47-a2c554e9f7ef,SESCO,I.3.1,Neuquén,AR-Q,annual,2022,naphtha combustion consumption by petrochemical industries,1.2965876,TJ,CH4,3.0,kg/TJ,3.8897628,kg -1be9e810-0c84-3fbe-b402-a8a742d9d1bd,SESCO,I.3.1,Neuquén,AR-Q,annual,2022,naphtha combustion consumption by petrochemical industries,1.2965876,TJ,N2O,0.6,kg/TJ,0.77795256,kg -f5346396-6d4f-3c5d-a51c-a917f9799f65,SESCO,I.3.1,Rio Negro,AR-R,annual,2022,naphtha combustion consumption by petrochemical industries,0.5126044,TJ,CO2,73300.0,kg/TJ,37573.902519999996,kg -dd5c7362-b363-367a-8d24-2655dbe7a8ab,SESCO,I.3.1,Rio Negro,AR-R,annual,2022,naphtha combustion consumption by petrochemical industries,0.5126044,TJ,CH4,3.0,kg/TJ,1.5378132,kg -f506b8ba-3f18-3bec-8445-47d74ed1a991,SESCO,I.3.1,Rio Negro,AR-R,annual,2022,naphtha combustion consumption by petrochemical industries,0.5126044,TJ,N2O,0.6,kg/TJ,0.30756263999999994,kg -1060255c-17ef-39ea-8f77-688cd9d86a9b,SESCO,I.3.1,San Juan,AR-J,annual,2022,naphtha combustion consumption by petrochemical industries,1.2664343999999998,TJ,CO2,73300.0,kg/TJ,92829.64151999999,kg -2375f662-e9b2-325a-8a6c-3a1268becbd5,SESCO,I.3.1,San Juan,AR-J,annual,2022,naphtha combustion consumption by petrochemical industries,1.2664343999999998,TJ,CH4,3.0,kg/TJ,3.7993031999999998,kg -cf172429-0370-3175-9570-dbe13991e9ea,SESCO,I.3.1,San Juan,AR-J,annual,2022,naphtha combustion consumption by petrochemical industries,1.2664343999999998,TJ,N2O,0.6,kg/TJ,0.7598606399999999,kg -a69900f5-7473-3ca7-b3d6-846656c4b58c,SESCO,I.3.1,San Luis,AR-D,annual,2022,naphtha combustion consumption by petrochemical industries,0.5729107999999999,TJ,CO2,73300.0,kg/TJ,41994.361639999996,kg -85b9c716-dc0f-312b-85ae-92f5bcf7f811,SESCO,I.3.1,San Luis,AR-D,annual,2022,naphtha combustion consumption by petrochemical industries,0.5729107999999999,TJ,CH4,3.0,kg/TJ,1.7187324,kg -122ac62e-dba9-3de3-8e6c-0096b61ff62d,SESCO,I.3.1,San Luis,AR-D,annual,2022,naphtha combustion consumption by petrochemical industries,0.5729107999999999,TJ,N2O,0.6,kg/TJ,0.34374647999999997,kg -f94fea7d-ad83-321f-bc2a-8af7b7e9da1e,SESCO,I.3.1,Santa Fe,AR-S,annual,2022,naphtha combustion consumption by petrochemical industries,0.7538299999999999,TJ,CO2,73300.0,kg/TJ,55255.738999999994,kg -ea90688d-7ac0-3586-ba10-f95f5cf22579,SESCO,I.3.1,Santa Fe,AR-S,annual,2022,naphtha combustion consumption by petrochemical industries,0.7538299999999999,TJ,CH4,3.0,kg/TJ,2.26149,kg -0a417ebb-870e-30a1-b428-6faba773baff,SESCO,I.3.1,Santa Fe,AR-S,annual,2022,naphtha combustion consumption by petrochemical industries,0.7538299999999999,TJ,N2O,0.6,kg/TJ,0.4522979999999999,kg -fc0b7dbc-c175-30dd-84fa-83cb93691430,SESCO,I.3.1,Santiago del Estero,AR-G,annual,2022,naphtha combustion consumption by petrochemical industries,0.5427576,TJ,CO2,73300.0,kg/TJ,39784.132079999996,kg -6dbaf7d9-e5e2-3045-b89f-1820fb895ed2,SESCO,I.3.1,Santiago del Estero,AR-G,annual,2022,naphtha combustion consumption by petrochemical industries,0.5427576,TJ,CH4,3.0,kg/TJ,1.6282728,kg -3f6b5ada-f96b-369f-8985-12fabd1b39d3,SESCO,I.3.1,Santiago del Estero,AR-G,annual,2022,naphtha combustion consumption by petrochemical industries,0.5427576,TJ,N2O,0.6,kg/TJ,0.32565456,kg -e801f7cd-dbf1-3633-924c-1f68bde66fa3,SESCO,I.3.1,Tucuman,AR-T,annual,2022,naphtha combustion consumption by petrochemical industries,0.33168519999999996,TJ,CO2,73300.0,kg/TJ,24312.525159999997,kg -ab6ed717-95a8-3090-9414-d58af2bf6ff4,SESCO,I.3.1,Tucuman,AR-T,annual,2022,naphtha combustion consumption by petrochemical industries,0.33168519999999996,TJ,CH4,3.0,kg/TJ,0.9950555999999999,kg -3745a3cf-e00a-3bb3-8b6b-4b90d3ff6dcd,SESCO,I.3.1,Tucuman,AR-T,annual,2022,naphtha combustion consumption by petrochemical industries,0.33168519999999996,TJ,N2O,0.6,kg/TJ,0.19901111999999996,kg -d5a75696-2cc6-32c7-b573-3bc20505aac9,SESCO,II.5.1,Buenos Aires,AR-B,annual,2022,naphtha combustion consumption by agriculture machines,23.055016107199997,TJ,CO2,73300.0,kg/TJ,1689932.6806577598,kg -f39975e7-b71f-3617-8882-39dc5f3d3b85,SESCO,II.5.1,Buenos Aires,AR-B,annual,2022,naphtha combustion consumption by agriculture machines,23.055016107199997,TJ,CH4,3.0,kg/TJ,69.16504832159998,kg -eb6a1e34-566b-344e-b3d6-7c878fbb6e99,SESCO,II.5.1,Buenos Aires,AR-B,annual,2022,naphtha combustion consumption by agriculture machines,23.055016107199997,TJ,N2O,0.6,kg/TJ,13.833009664319997,kg -5d0fba4d-9034-3c1b-8406-47242f8d776f,SESCO,II.5.1,Capital Federal,AR-C,annual,2022,naphtha combustion consumption by agriculture machines,5.7276003399999995,TJ,CO2,73300.0,kg/TJ,419833.10492199997,kg -a2a434b6-67e9-36fe-b25f-a9ec589dd691,SESCO,II.5.1,Capital Federal,AR-C,annual,2022,naphtha combustion consumption by agriculture machines,5.7276003399999995,TJ,CH4,3.0,kg/TJ,17.18280102,kg -8742b60a-f7b5-3618-8516-84f98e88d80d,SESCO,II.5.1,Capital Federal,AR-C,annual,2022,naphtha combustion consumption by agriculture machines,5.7276003399999995,TJ,N2O,0.6,kg/TJ,3.4365602039999996,kg -ef71d07b-5697-3b06-8f30-d96222e2d9f5,SESCO,II.5.1,Córdoba,AR-X,annual,2022,naphtha combustion consumption by agriculture machines,14.1042196064,TJ,CO2,73300.0,kg/TJ,1033839.2971491199,kg -85326882-ca81-384d-905f-5b2e41f69061,SESCO,II.5.1,Córdoba,AR-X,annual,2022,naphtha combustion consumption by agriculture machines,14.1042196064,TJ,CH4,3.0,kg/TJ,42.312658819199996,kg -5899e938-c9f4-33d8-80de-207af2ccd57a,SESCO,II.5.1,Córdoba,AR-X,annual,2022,naphtha combustion consumption by agriculture machines,14.1042196064,TJ,N2O,0.6,kg/TJ,8.46253176384,kg -5124ae03-51c9-3a49-9bca-354bc40e6a31,SESCO,II.5.1,Santa Fe,AR-S,annual,2022,naphtha combustion consumption by agriculture machines,91.1280361376,TJ,CO2,73300.0,kg/TJ,6679685.04888608,kg -4b3b7faf-ed26-35fd-8824-8a74ef74cec5,SESCO,II.5.1,Santa Fe,AR-S,annual,2022,naphtha combustion consumption by agriculture machines,91.1280361376,TJ,CH4,3.0,kg/TJ,273.3841084128,kg -3e957964-210b-37f2-991a-30810ae87122,SESCO,II.5.1,Santa Fe,AR-S,annual,2022,naphtha combustion consumption by agriculture machines,91.1280361376,TJ,N2O,0.6,kg/TJ,54.67682168256,kg -f5d6f882-c3b8-3440-b976-8715e0e887cb,SESCO,II.5.1,Buenos Aires,AR-B,annual,2022,naphtha combustion consumption by agriculture machines,8.142962119599998,TJ,CO2,73300.0,kg/TJ,596879.1233666799,kg -8b6072c7-0289-351b-ae54-064cc2d170b4,SESCO,II.5.1,Buenos Aires,AR-B,annual,2022,naphtha combustion consumption by agriculture machines,8.142962119599998,TJ,CH4,3.0,kg/TJ,24.428886358799993,kg -aac2b4f7-7c6d-330b-ac00-f7eb8857e0d2,SESCO,II.5.1,Buenos Aires,AR-B,annual,2022,naphtha combustion consumption by agriculture machines,8.142962119599998,TJ,N2O,0.6,kg/TJ,4.8857772717599985,kg -a80c545d-298b-3754-aae2-2edb32d95c2b,SESCO,II.5.1,Capital Federal,AR-C,annual,2022,naphtha combustion consumption by agriculture machines,1.3810165599999997,TJ,CO2,73300.0,kg/TJ,101228.51384799997,kg -191937da-56c5-351d-81b1-3be7c299daaf,SESCO,II.5.1,Capital Federal,AR-C,annual,2022,naphtha combustion consumption by agriculture machines,1.3810165599999997,TJ,CH4,3.0,kg/TJ,4.143049679999999,kg -4133d577-80cf-3212-866c-85a4b1c35a22,SESCO,II.5.1,Capital Federal,AR-C,annual,2022,naphtha combustion consumption by agriculture machines,1.3810165599999997,TJ,N2O,0.6,kg/TJ,0.8286099359999998,kg -8e9a8f93-0d7d-331c-8d7b-682320a18a21,SESCO,II.5.1,Córdoba,AR-X,annual,2022,naphtha combustion consumption by agriculture machines,2.72735694,TJ,CO2,73300.0,kg/TJ,199915.263702,kg -733170cc-7bae-3be3-bd53-ef9975fece66,SESCO,II.5.1,Córdoba,AR-X,annual,2022,naphtha combustion consumption by agriculture machines,2.72735694,TJ,CH4,3.0,kg/TJ,8.18207082,kg -6ce76d0e-c441-3940-8943-49902c739262,SESCO,II.5.1,Córdoba,AR-X,annual,2022,naphtha combustion consumption by agriculture machines,2.72735694,TJ,N2O,0.6,kg/TJ,1.6364141639999998,kg -37b5cb25-c89c-351c-a681-0f014c26089b,SESCO,II.5.1,Santa Fe,AR-S,annual,2022,naphtha combustion consumption by agriculture machines,12.510442067199998,TJ,CO2,73300.0,kg/TJ,917015.4035257598,kg -e56a40fb-108e-3a7a-aa90-97015cd33956,SESCO,II.5.1,Santa Fe,AR-S,annual,2022,naphtha combustion consumption by agriculture machines,12.510442067199998,TJ,CH4,3.0,kg/TJ,37.531326201599995,kg -33731394-5d17-3dd3-bc52-01cea071e620,SESCO,II.5.1,Santa Fe,AR-S,annual,2022,naphtha combustion consumption by agriculture machines,12.510442067199998,TJ,N2O,0.6,kg/TJ,7.5062652403199985,kg -8aad86d6-2d7d-31a2-b8d2-2ab140aa10a0,SESCO,II.1.1,Buenos Aires,AR-B,annual,2022,naphtha combustion consumption by to the public,5138.162088628799,TJ,CO2,73300.0,kg/TJ,376627281.096491,kg -ef8977c6-f679-384e-a22f-7069c63743e4,SESCO,II.1.1,Buenos Aires,AR-B,annual,2022,naphtha combustion consumption by to the public,5138.162088628799,TJ,CH4,3.0,kg/TJ,15414.486265886397,kg -f0fb1d64-ef04-35ec-a45c-297562ca68c3,SESCO,II.1.1,Buenos Aires,AR-B,annual,2022,naphtha combustion consumption by to the public,5138.162088628799,TJ,N2O,0.6,kg/TJ,3082.8972531772793,kg -24895a5c-bec7-34aa-9e0d-97e73c7b27d5,SESCO,II.1.1,Capital Federal,AR-C,annual,2022,naphtha combustion consumption by to the public,306.7626152976,TJ,CO2,73300.0,kg/TJ,22485699.70131408,kg -9ff55724-8a71-3686-a2f1-fadfc856f673,SESCO,II.1.1,Capital Federal,AR-C,annual,2022,naphtha combustion consumption by to the public,306.7626152976,TJ,CH4,3.0,kg/TJ,920.2878458928001,kg -7a3df32d-7cb7-3b63-af1f-137c9099ee5f,SESCO,II.1.1,Capital Federal,AR-C,annual,2022,naphtha combustion consumption by to the public,306.7626152976,TJ,N2O,0.6,kg/TJ,184.05756917856,kg -8d2028f3-3032-38fd-ad65-abdc55815664,SESCO,II.1.1,Catamarca,AR-K,annual,2022,naphtha combustion consumption by to the public,10.060615179999997,TJ,CO2,73300.0,kg/TJ,737443.0926939998,kg -21d6890b-2d7b-39c4-b87e-2da55df1ff81,SESCO,II.1.1,Catamarca,AR-K,annual,2022,naphtha combustion consumption by to the public,10.060615179999997,TJ,CH4,3.0,kg/TJ,30.18184553999999,kg -c30f6c77-8117-3947-b91a-a2e50dcefec4,SESCO,II.1.1,Catamarca,AR-K,annual,2022,naphtha combustion consumption by to the public,10.060615179999997,TJ,N2O,0.6,kg/TJ,6.036369107999998,kg -65931950-d190-3afa-9a81-19053b23f2b4,SESCO,II.1.1,Chaco,AR-H,annual,2022,naphtha combustion consumption by to the public,76.91360658519999,TJ,CO2,73300.0,kg/TJ,5637767.362695159,kg -6906ad78-d223-3e93-88dd-4bae67a0e73f,SESCO,II.1.1,Chaco,AR-H,annual,2022,naphtha combustion consumption by to the public,76.91360658519999,TJ,CH4,3.0,kg/TJ,230.74081975559994,kg -ed67973e-55fd-3b2d-a01a-702f94eec4a8,SESCO,II.1.1,Chaco,AR-H,annual,2022,naphtha combustion consumption by to the public,76.91360658519999,TJ,N2O,0.6,kg/TJ,46.14816395111999,kg -259acb16-d8b9-36f2-81d1-9fbb0a99163d,SESCO,II.1.1,Chubut,AR-U,annual,2022,naphtha combustion consumption by to the public,316.8265774827999,TJ,CO2,73300.0,kg/TJ,23223388.12948923,kg -11bd0bf2-56f3-300f-b7b0-d197c66131a8,SESCO,II.1.1,Chubut,AR-U,annual,2022,naphtha combustion consumption by to the public,316.8265774827999,TJ,CH4,3.0,kg/TJ,950.4797324483998,kg -ce57c6ea-d5f7-30db-8d20-aff7be04cf9a,SESCO,II.1.1,Chubut,AR-U,annual,2022,naphtha combustion consumption by to the public,316.8265774827999,TJ,N2O,0.6,kg/TJ,190.09594648967993,kg -61f71e68-cea5-316d-9309-c9de33042516,SESCO,II.1.1,Corrientes,AR-W,annual,2022,naphtha combustion consumption by to the public,458.9986742571999,TJ,CO2,73300.0,kg/TJ,33644602.82305276,kg -c534b95e-e0df-3bab-bd48-339ea1e9765c,SESCO,II.1.1,Corrientes,AR-W,annual,2022,naphtha combustion consumption by to the public,458.9986742571999,TJ,CH4,3.0,kg/TJ,1376.9960227715997,kg -4de1d722-4ce9-37d1-8e23-f3094ded6436,SESCO,II.1.1,Corrientes,AR-W,annual,2022,naphtha combustion consumption by to the public,458.9986742571999,TJ,N2O,0.6,kg/TJ,275.39920455431997,kg -c9a2e92b-0043-3ab4-a110-b83093541f8c,SESCO,II.1.1,Córdoba,AR-X,annual,2022,naphtha combustion consumption by to the public,944.0455521728,TJ,CO2,73300.0,kg/TJ,69198538.97426623,kg -ad62e857-3c75-3155-a544-6f41148b7c8c,SESCO,II.1.1,Córdoba,AR-X,annual,2022,naphtha combustion consumption by to the public,944.0455521728,TJ,CH4,3.0,kg/TJ,2832.1366565184,kg -c77fc139-f131-30d9-9d5c-0698e1625cbd,SESCO,II.1.1,Córdoba,AR-X,annual,2022,naphtha combustion consumption by to the public,944.0455521728,TJ,N2O,0.6,kg/TJ,566.4273313036799,kg -dffbdd4e-6a10-345d-b4b8-4af21b28cda9,SESCO,II.1.1,Entre Rios,AR-E,annual,2022,naphtha combustion consumption by to the public,746.0756824752,TJ,CO2,73300.0,kg/TJ,54687347.52543216,kg -213c177e-e97e-373d-84e9-635ec0fa33e9,SESCO,II.1.1,Entre Rios,AR-E,annual,2022,naphtha combustion consumption by to the public,746.0756824752,TJ,CH4,3.0,kg/TJ,2238.2270474256,kg -17c2681f-6918-37a5-ba13-eb6cdca308e9,SESCO,II.1.1,Entre Rios,AR-E,annual,2022,naphtha combustion consumption by to the public,746.0756824752,TJ,N2O,0.6,kg/TJ,447.64540948511996,kg -b5be94fb-bc4e-313d-a829-05b85574d88e,SESCO,II.1.1,Jujuy,AR-Y,annual,2022,naphtha combustion consumption by to the public,49.196001161999995,TJ,CO2,73300.0,kg/TJ,3606066.8851745995,kg -a63c30fa-3100-3069-b197-27bd626d1dd1,SESCO,II.1.1,Jujuy,AR-Y,annual,2022,naphtha combustion consumption by to the public,49.196001161999995,TJ,CH4,3.0,kg/TJ,147.588003486,kg -fadea016-782e-3d76-ba69-2dafe4f044ef,SESCO,II.1.1,Jujuy,AR-Y,annual,2022,naphtha combustion consumption by to the public,49.196001161999995,TJ,N2O,0.6,kg/TJ,29.517600697199995,kg -7cfbad1a-d8cd-3bdc-814d-31d3cb625b05,SESCO,II.1.1,La Pampa,AR-L,annual,2022,naphtha combustion consumption by to the public,439.29217100999995,TJ,CO2,73300.0,kg/TJ,32200116.135032997,kg -fc13984b-af16-3b24-938a-5b5b20ddacd7,SESCO,II.1.1,La Pampa,AR-L,annual,2022,naphtha combustion consumption by to the public,439.29217100999995,TJ,CH4,3.0,kg/TJ,1317.8765130299998,kg -dfd5990f-11a4-3696-a018-9130f15426b0,SESCO,II.1.1,La Pampa,AR-L,annual,2022,naphtha combustion consumption by to the public,439.29217100999995,TJ,N2O,0.6,kg/TJ,263.575302606,kg -1010c248-46e4-3735-8c56-6a2a1dba2d12,SESCO,II.1.1,Mendoza,AR-M,annual,2022,naphtha combustion consumption by to the public,98.1351573664,TJ,CO2,73300.0,kg/TJ,7193307.034957119,kg -b20e0889-96f3-3e7f-b802-7f606faea781,SESCO,II.1.1,Mendoza,AR-M,annual,2022,naphtha combustion consumption by to the public,98.1351573664,TJ,CH4,3.0,kg/TJ,294.4054720992,kg -a51335cf-6e44-39e2-accd-8493ad2f63f7,SESCO,II.1.1,Mendoza,AR-M,annual,2022,naphtha combustion consumption by to the public,98.1351573664,TJ,N2O,0.6,kg/TJ,58.88109441984,kg -7993f895-8551-3026-bbfe-83a5ba2a8c61,SESCO,II.1.1,Neuquén,AR-Q,annual,2022,naphtha combustion consumption by to the public,430.66570232839996,TJ,CO2,73300.0,kg/TJ,31567795.98067172,kg -23959a61-76b1-3bad-9840-1e6a2a1e95af,SESCO,II.1.1,Neuquén,AR-Q,annual,2022,naphtha combustion consumption by to the public,430.66570232839996,TJ,CH4,3.0,kg/TJ,1291.9971069852,kg -fe88062c-be41-3c8c-ba3a-93a2467259ae,SESCO,II.1.1,Neuquén,AR-Q,annual,2022,naphtha combustion consumption by to the public,430.66570232839996,TJ,N2O,0.6,kg/TJ,258.39942139704,kg -ac053bb2-de74-3f30-97d4-7d3541026a42,SESCO,II.1.1,Rio Negro,AR-R,annual,2022,naphtha combustion consumption by to the public,1505.4183809588,TJ,CO2,73300.0,kg/TJ,110347167.32428004,kg -817a8d4c-4f1b-3fbf-b1b8-036854cfc696,SESCO,II.1.1,Rio Negro,AR-R,annual,2022,naphtha combustion consumption by to the public,1505.4183809588,TJ,CH4,3.0,kg/TJ,4516.2551428764,kg -74609b1a-0b8c-333e-9f1b-a77e31873c8c,SESCO,II.1.1,Rio Negro,AR-R,annual,2022,naphtha combustion consumption by to the public,1505.4183809588,TJ,N2O,0.6,kg/TJ,903.25102857528,kg -5f5038c8-eeb8-3b04-b9c6-10427c94cd5c,SESCO,II.1.1,San Juan,AR-J,annual,2022,naphtha combustion consumption by to the public,281.11900727679995,TJ,CO2,73300.0,kg/TJ,20606023.233389437,kg -e0e6754c-cbe5-33a2-bb26-728afb8ebbe0,SESCO,II.1.1,San Juan,AR-J,annual,2022,naphtha combustion consumption by to the public,281.11900727679995,TJ,CH4,3.0,kg/TJ,843.3570218303998,kg -50d6e370-f5df-3d49-bf1f-f0b4d627217c,SESCO,II.1.1,San Juan,AR-J,annual,2022,naphtha combustion consumption by to the public,281.11900727679995,TJ,N2O,0.6,kg/TJ,168.67140436607997,kg -244dc899-084f-37ee-9cfb-f65aad6d4f0d,SESCO,II.1.1,San Luis,AR-D,annual,2022,naphtha combustion consumption by to the public,90.48070723999999,TJ,CO2,73300.0,kg/TJ,6632235.840691999,kg -69dc3bcb-607f-3427-a54d-bffe04ae3eb7,SESCO,II.1.1,San Luis,AR-D,annual,2022,naphtha combustion consumption by to the public,90.48070723999999,TJ,CH4,3.0,kg/TJ,271.44212171999993,kg -37d88cad-b9e1-3b41-bdf7-74e3ac511119,SESCO,II.1.1,San Luis,AR-D,annual,2022,naphtha combustion consumption by to the public,90.48070723999999,TJ,N2O,0.6,kg/TJ,54.28842434399999,kg -a2335250-d5f3-360d-bd01-d5f19b91e0c6,SESCO,II.1.1,Santa Fe,AR-S,annual,2022,naphtha combustion consumption by to the public,1213.2051671124,TJ,CO2,73300.0,kg/TJ,88927938.74933892,kg -27f948c5-d06a-372b-96a8-8c7f276354ba,SESCO,II.1.1,Santa Fe,AR-S,annual,2022,naphtha combustion consumption by to the public,1213.2051671124,TJ,CH4,3.0,kg/TJ,3639.6155013372,kg -32839522-126a-394b-807e-ab4487399b37,SESCO,II.1.1,Santa Fe,AR-S,annual,2022,naphtha combustion consumption by to the public,1213.2051671124,TJ,N2O,0.6,kg/TJ,727.92310026744,kg -f6372b84-84d8-37cd-8983-90da349b7300,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2022,naphtha combustion consumption by to the public,91.5095947304,TJ,CO2,73300.0,kg/TJ,6707653.29373832,kg -6c812fc8-a0f3-3549-9521-28ebc98830cd,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2022,naphtha combustion consumption by to the public,91.5095947304,TJ,CH4,3.0,kg/TJ,274.5287841912,kg -f8a7d7ef-aea3-3c78-a3b5-68294bcd3969,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2022,naphtha combustion consumption by to the public,91.5095947304,TJ,N2O,0.6,kg/TJ,54.905756838239995,kg -a629526e-02ca-3d65-b331-1619aa571463,SESCO,II.1.1,Tucuman,AR-T,annual,2022,naphtha combustion consumption by to the public,4.8050330328,TJ,CO2,73300.0,kg/TJ,352208.92130424,kg -ceef7dff-5f23-3df4-a6fd-c545378adae9,SESCO,II.1.1,Tucuman,AR-T,annual,2022,naphtha combustion consumption by to the public,4.8050330328,TJ,CH4,3.0,kg/TJ,14.415099098399999,kg -d58f7c35-bcb2-3ba1-a7a7-b2740512c689,SESCO,II.1.1,Tucuman,AR-T,annual,2022,naphtha combustion consumption by to the public,4.8050330328,TJ,N2O,0.6,kg/TJ,2.88301981968,kg -82522689-7f74-3a34-a7b3-f8c45b1d33ea,SESCO,II.1.1,Buenos Aires,AR-B,annual,2022,naphtha combustion consumption by to the public,824.2045836332,TJ,CO2,73300.0,kg/TJ,60414195.980313554,kg -54c03569-ac6e-3e5b-8e11-1f4e5c6f8093,SESCO,II.1.1,Buenos Aires,AR-B,annual,2022,naphtha combustion consumption by to the public,824.2045836332,TJ,CH4,3.0,kg/TJ,2472.6137508996,kg -292a055d-5c7a-3dfd-894b-187ab238d024,SESCO,II.1.1,Buenos Aires,AR-B,annual,2022,naphtha combustion consumption by to the public,824.2045836332,TJ,N2O,0.6,kg/TJ,494.52275017991997,kg -98b90ff2-2b40-311b-9cc8-0cc66f9e478d,SESCO,II.1.1,Capital Federal,AR-C,annual,2022,naphtha combustion consumption by to the public,47.319567526,TJ,CO2,73300.0,kg/TJ,3468524.2996558,kg -aeb117c5-fe4d-3fc2-9ce3-3e6e431ee7f4,SESCO,II.1.1,Capital Federal,AR-C,annual,2022,naphtha combustion consumption by to the public,47.319567526,TJ,CH4,3.0,kg/TJ,141.958702578,kg -0686f322-7791-34c0-b8b1-85ac39265933,SESCO,II.1.1,Capital Federal,AR-C,annual,2022,naphtha combustion consumption by to the public,47.319567526,TJ,N2O,0.6,kg/TJ,28.3917405156,kg -432156d4-b32e-3cca-a57a-777091362283,SESCO,II.1.1,Catamarca,AR-K,annual,2022,naphtha combustion consumption by to the public,1.314377988,TJ,CO2,73300.0,kg/TJ,96343.90652039999,kg -c79f8dcf-480c-3402-b187-7f604164514f,SESCO,II.1.1,Catamarca,AR-K,annual,2022,naphtha combustion consumption by to the public,1.314377988,TJ,CH4,3.0,kg/TJ,3.943133964,kg -ca807434-2dd6-3c98-91b2-1b439be2605c,SESCO,II.1.1,Catamarca,AR-K,annual,2022,naphtha combustion consumption by to the public,1.314377988,TJ,N2O,0.6,kg/TJ,0.7886267927999999,kg -6279dfe9-e1d1-3636-b0c8-f042ec0b2f89,SESCO,II.1.1,Chaco,AR-H,annual,2022,naphtha combustion consumption by to the public,10.3379643136,TJ,CO2,73300.0,kg/TJ,757772.78418688,kg -c0cdea0e-f4ec-3885-aa92-9a9b04c08ffd,SESCO,II.1.1,Chaco,AR-H,annual,2022,naphtha combustion consumption by to the public,10.3379643136,TJ,CH4,3.0,kg/TJ,31.0138929408,kg -18f8d32a-e2f4-3c70-b9d8-1344e6f90857,SESCO,II.1.1,Chaco,AR-H,annual,2022,naphtha combustion consumption by to the public,10.3379643136,TJ,N2O,0.6,kg/TJ,6.20277858816,kg -f7f25af9-03e6-3c89-9217-7d46c550a469,SESCO,II.1.1,Chubut,AR-U,annual,2022,naphtha combustion consumption by to the public,53.872430796799996,TJ,CO2,73300.0,kg/TJ,3948849.17740544,kg -4d4e2465-6334-39fd-a5d7-5a81e6a3d911,SESCO,II.1.1,Chubut,AR-U,annual,2022,naphtha combustion consumption by to the public,53.872430796799996,TJ,CH4,3.0,kg/TJ,161.6172923904,kg -4eb0b661-4faf-3b10-89ab-13769fb229c6,SESCO,II.1.1,Chubut,AR-U,annual,2022,naphtha combustion consumption by to the public,53.872430796799996,TJ,N2O,0.6,kg/TJ,32.32345847808,kg -7e2fbd43-fe77-3c1a-ba7c-cbd78797e539,SESCO,II.1.1,Corrientes,AR-W,annual,2022,naphtha combustion consumption by to the public,62.2519146172,TJ,CO2,73300.0,kg/TJ,4563065.34144076,kg -9a4e6b6c-2834-3eae-865e-5e515af3cb53,SESCO,II.1.1,Corrientes,AR-W,annual,2022,naphtha combustion consumption by to the public,62.2519146172,TJ,CH4,3.0,kg/TJ,186.75574385160002,kg -82cfe426-0c4b-3d15-9fc0-f02d9a132af8,SESCO,II.1.1,Corrientes,AR-W,annual,2022,naphtha combustion consumption by to the public,62.2519146172,TJ,N2O,0.6,kg/TJ,37.35114877032,kg -bd8c91c6-2630-378f-b001-c13a7bd6459d,SESCO,II.1.1,Córdoba,AR-X,annual,2022,naphtha combustion consumption by to the public,157.6310091972,TJ,CO2,73300.0,kg/TJ,11554352.97415476,kg -d96c4de1-b029-324c-b036-375d4d5d9f34,SESCO,II.1.1,Córdoba,AR-X,annual,2022,naphtha combustion consumption by to the public,157.6310091972,TJ,CH4,3.0,kg/TJ,472.8930275916,kg -e56b053f-6e09-37c1-93dc-3fc93df6af4d,SESCO,II.1.1,Córdoba,AR-X,annual,2022,naphtha combustion consumption by to the public,157.6310091972,TJ,N2O,0.6,kg/TJ,94.57860551832,kg -904460ef-9c4d-3277-ac4f-189fc088c64d,SESCO,II.1.1,Entre Rios,AR-E,annual,2022,naphtha combustion consumption by to the public,164.93749139559998,TJ,CO2,73300.0,kg/TJ,12089918.119297478,kg -352d39e2-e90f-3a71-8eab-b64c5550040e,SESCO,II.1.1,Entre Rios,AR-E,annual,2022,naphtha combustion consumption by to the public,164.93749139559998,TJ,CH4,3.0,kg/TJ,494.81247418679993,kg -0a0c740e-a447-3be8-b514-3d6e480a40a2,SESCO,II.1.1,Entre Rios,AR-E,annual,2022,naphtha combustion consumption by to the public,164.93749139559998,TJ,N2O,0.6,kg/TJ,98.96249483735998,kg -c194d4a2-cf7a-3eaa-a5f4-683209f84c3e,SESCO,II.1.1,Jujuy,AR-Y,annual,2022,naphtha combustion consumption by to the public,1.8050308583999999,TJ,CO2,73300.0,kg/TJ,132308.76192072,kg -1293a6a9-7ed6-38ce-9b7e-e354d1a5d6cc,SESCO,II.1.1,Jujuy,AR-Y,annual,2022,naphtha combustion consumption by to the public,1.8050308583999999,TJ,CH4,3.0,kg/TJ,5.415092575199999,kg -6df9775c-2800-3829-bc46-a4044634033f,SESCO,II.1.1,Jujuy,AR-Y,annual,2022,naphtha combustion consumption by to the public,1.8050308583999999,TJ,N2O,0.6,kg/TJ,1.0830185150399998,kg -c2c26f10-0f9f-3f38-94bd-c59e11cce8ee,SESCO,II.1.1,La Pampa,AR-L,annual,2022,naphtha combustion consumption by to the public,105.18470414759997,TJ,CO2,73300.0,kg/TJ,7710038.814019078,kg -f23a9452-83d2-3e20-869f-17a78d0e090a,SESCO,II.1.1,La Pampa,AR-L,annual,2022,naphtha combustion consumption by to the public,105.18470414759997,TJ,CH4,3.0,kg/TJ,315.5541124427999,kg -dd331c4c-be1c-31bc-8622-4e7ec93dc67e,SESCO,II.1.1,La Pampa,AR-L,annual,2022,naphtha combustion consumption by to the public,105.18470414759997,TJ,N2O,0.6,kg/TJ,63.11082248855998,kg -7b89d599-47d3-3412-95f4-e2c3e37f38c5,SESCO,II.1.1,Mendoza,AR-M,annual,2022,naphtha combustion consumption by to the public,14.926165685199997,TJ,CO2,73300.0,kg/TJ,1094087.9447251598,kg -f5f19c6b-3476-3299-b3f8-2e3d3cdbf3dd,SESCO,II.1.1,Mendoza,AR-M,annual,2022,naphtha combustion consumption by to the public,14.926165685199997,TJ,CH4,3.0,kg/TJ,44.77849705559999,kg -65d8308b-9ec3-3fbb-8eb3-822e81ce6957,SESCO,II.1.1,Mendoza,AR-M,annual,2022,naphtha combustion consumption by to the public,14.926165685199997,TJ,N2O,0.6,kg/TJ,8.955699411119998,kg -6c769ce2-e483-3068-a8bd-2c682818577e,SESCO,II.1.1,Neuquén,AR-Q,annual,2022,naphtha combustion consumption by to the public,120.81027330679998,TJ,CO2,73300.0,kg/TJ,8855393.03338844,kg -453226c8-75e7-3784-b7b0-1a81191ba974,SESCO,II.1.1,Neuquén,AR-Q,annual,2022,naphtha combustion consumption by to the public,120.81027330679998,TJ,CH4,3.0,kg/TJ,362.4308199203999,kg -9c1a5074-62a7-3fc0-bc9f-ee1592790284,SESCO,II.1.1,Neuquén,AR-Q,annual,2022,naphtha combustion consumption by to the public,120.81027330679998,TJ,N2O,0.6,kg/TJ,72.48616398408,kg -0ecc39e2-f06a-342b-9104-7ab582f34181,SESCO,II.1.1,Rio Negro,AR-R,annual,2022,naphtha combustion consumption by to the public,235.6490370388,TJ,CO2,73300.0,kg/TJ,17273074.41494404,kg -ee4d0c17-b2d6-32c4-832b-9f85ea9e3e57,SESCO,II.1.1,Rio Negro,AR-R,annual,2022,naphtha combustion consumption by to the public,235.6490370388,TJ,CH4,3.0,kg/TJ,706.9471111164,kg -c6a64b60-b274-3785-8787-45d3d9be7f70,SESCO,II.1.1,Rio Negro,AR-R,annual,2022,naphtha combustion consumption by to the public,235.6490370388,TJ,N2O,0.6,kg/TJ,141.38942222328,kg -1e962fd8-1f68-38c1-9583-b6f0c905dd9b,SESCO,II.1.1,San Juan,AR-J,annual,2022,naphtha combustion consumption by to the public,30.6603165176,TJ,CO2,73300.0,kg/TJ,2247401.20074008,kg -b0f09f43-4f56-376c-b783-4838806fcda8,SESCO,II.1.1,San Juan,AR-J,annual,2022,naphtha combustion consumption by to the public,30.6603165176,TJ,CH4,3.0,kg/TJ,91.9809495528,kg -fd97fc13-f0de-3f84-aae8-55aad86eba86,SESCO,II.1.1,San Juan,AR-J,annual,2022,naphtha combustion consumption by to the public,30.6603165176,TJ,N2O,0.6,kg/TJ,18.396189910559997,kg -fe7c9c84-ebb2-3e6b-b4d8-bfbccf6afdce,SESCO,II.1.1,San Luis,AR-D,annual,2022,naphtha combustion consumption by to the public,19.0719894596,TJ,CO2,73300.0,kg/TJ,1397976.82738868,kg -89a53130-0619-3f31-9879-939b2b7fa916,SESCO,II.1.1,San Luis,AR-D,annual,2022,naphtha combustion consumption by to the public,19.0719894596,TJ,CH4,3.0,kg/TJ,57.2159683788,kg -7d5e150c-3afb-332d-953b-e4476bc47f28,SESCO,II.1.1,San Luis,AR-D,annual,2022,naphtha combustion consumption by to the public,19.0719894596,TJ,N2O,0.6,kg/TJ,11.44319367576,kg -d609705c-b446-3e3f-92e7-1c2a508f057a,SESCO,II.1.1,Santa Fe,AR-S,annual,2022,naphtha combustion consumption by to the public,242.94258351439996,TJ,CO2,73300.0,kg/TJ,17807691.371605515,kg -564bf045-f994-315e-b774-d101c7c3c4b0,SESCO,II.1.1,Santa Fe,AR-S,annual,2022,naphtha combustion consumption by to the public,242.94258351439996,TJ,CH4,3.0,kg/TJ,728.8277505431998,kg -ad4d02d6-97c7-3d6b-91db-8d199970d5e9,SESCO,II.1.1,Santa Fe,AR-S,annual,2022,naphtha combustion consumption by to the public,242.94258351439996,TJ,N2O,0.6,kg/TJ,145.76555010863996,kg -eac147df-3dfc-37a3-86f7-8ae09be4d688,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2022,naphtha combustion consumption by to the public,9.546503119999999,TJ,CO2,73300.0,kg/TJ,699758.6786959999,kg -5dafeeba-fa3d-3f35-b317-04f0ca45e954,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2022,naphtha combustion consumption by to the public,9.546503119999999,TJ,CH4,3.0,kg/TJ,28.639509359999998,kg -b3657206-095f-35e5-88c2-0c363754234a,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2022,naphtha combustion consumption by to the public,9.546503119999999,TJ,N2O,0.6,kg/TJ,5.7279018719999995,kg -41e18134-bca0-38ea-8adb-609493fb6bc1,SESCO,II.1.1,Tucuman,AR-T,annual,2022,naphtha combustion consumption by to the public,0.7355270075999999,TJ,CO2,73300.0,kg/TJ,53914.12965707999,kg -6361781c-2bf9-3a36-9619-921789263d8c,SESCO,II.1.1,Tucuman,AR-T,annual,2022,naphtha combustion consumption by to the public,0.7355270075999999,TJ,CH4,3.0,kg/TJ,2.2065810227999996,kg -abdb5da5-69a0-3af7-ab17-be058f150969,SESCO,II.1.1,Tucuman,AR-T,annual,2022,naphtha combustion consumption by to the public,0.7355270075999999,TJ,N2O,0.6,kg/TJ,0.4413162045599999,kg -61ace81a-f848-3186-98f4-6f5ca851578f,SESCO,II.5.1,Buenos Aires,AR-B,annual,2022,naphtha combustion consumption by agriculture machines,37.9327256,TJ,CO2,73300.0,kg/TJ,2780468.78648,kg -4c768416-5b0d-3e30-9b34-8672298acd03,SESCO,II.5.1,Buenos Aires,AR-B,annual,2022,naphtha combustion consumption by agriculture machines,37.9327256,TJ,CH4,3.0,kg/TJ,113.7981768,kg -42952864-a49f-357f-a22e-945da4d36fe7,SESCO,II.5.1,Buenos Aires,AR-B,annual,2022,naphtha combustion consumption by agriculture machines,37.9327256,TJ,N2O,0.6,kg/TJ,22.759635359999997,kg -3975945c-e364-36c6-a1df-69d599ce56d1,SESCO,II.5.1,Salta,AR-A,annual,2022,naphtha combustion consumption by agriculture machines,0.301532,TJ,CO2,73300.0,kg/TJ,22102.2956,kg -969f8201-1a85-3dbc-863b-e8cdc1b8b606,SESCO,II.5.1,Salta,AR-A,annual,2022,naphtha combustion consumption by agriculture machines,0.301532,TJ,CH4,3.0,kg/TJ,0.9045960000000001,kg -22ab3dc2-c5da-394d-97b8-cb685165cda9,SESCO,II.5.1,Salta,AR-A,annual,2022,naphtha combustion consumption by agriculture machines,0.301532,TJ,N2O,0.6,kg/TJ,0.1809192,kg -aa019f2f-757f-3c6b-bf0b-8ca17a0c7d6f,SESCO,II.5.1,Santa Fe,AR-S,annual,2022,naphtha combustion consumption by agriculture machines,23.7607216,TJ,CO2,73300.0,kg/TJ,1741660.89328,kg -98ce9fda-d77b-3171-9e13-9b3f40760a3c,SESCO,II.5.1,Santa Fe,AR-S,annual,2022,naphtha combustion consumption by agriculture machines,23.7607216,TJ,CH4,3.0,kg/TJ,71.2821648,kg -bd812e56-e040-36ce-a4cc-b5032ba12384,SESCO,II.5.1,Santa Fe,AR-S,annual,2022,naphtha combustion consumption by agriculture machines,23.7607216,TJ,N2O,0.6,kg/TJ,14.25643296,kg -921b09bb-d184-37cf-baaa-3cffbb54bc86,SESCO,II.5.1,Buenos Aires,AR-B,annual,2022,naphtha combustion consumption by agriculture machines,1.1759747999999999,TJ,CO2,73300.0,kg/TJ,86198.95284,kg -95ebfa23-62d4-3793-8c08-89f918adc1cd,SESCO,II.5.1,Buenos Aires,AR-B,annual,2022,naphtha combustion consumption by agriculture machines,1.1759747999999999,TJ,CH4,3.0,kg/TJ,3.5279244,kg -4f39fc09-a568-3510-9731-089c7248e338,SESCO,II.5.1,Buenos Aires,AR-B,annual,2022,naphtha combustion consumption by agriculture machines,1.1759747999999999,TJ,N2O,0.6,kg/TJ,0.7055848799999999,kg -b5bb21a3-2660-3901-af05-4386605022a5,SESCO,II.5.1,Santa Fe,AR-S,annual,2022,naphtha combustion consumption by agriculture machines,1.5679663999999998,TJ,CO2,73300.0,kg/TJ,114931.93711999999,kg -c02556ec-81c0-3dde-8a85-d8762e859689,SESCO,II.5.1,Santa Fe,AR-S,annual,2022,naphtha combustion consumption by agriculture machines,1.5679663999999998,TJ,CH4,3.0,kg/TJ,4.7038991999999995,kg -407bc388-ddbc-36e5-84e1-e273ca20bc4a,SESCO,II.5.1,Santa Fe,AR-S,annual,2022,naphtha combustion consumption by agriculture machines,1.5679663999999998,TJ,N2O,0.6,kg/TJ,0.9407798399999998,kg -191b0d82-0d0a-3354-994f-6d12d4611478,SESCO,II.1.1,Buenos Aires,AR-B,annual,2022,naphtha combustion consumption by to the public,35936.794832399995,TJ,CO2,73300.0,kg/TJ,2634167061.2149196,kg -03279b72-69e0-3ece-a702-3e103b5e15d9,SESCO,II.1.1,Buenos Aires,AR-B,annual,2022,naphtha combustion consumption by to the public,35936.794832399995,TJ,CH4,3.0,kg/TJ,107810.3844972,kg -dfea66a0-e103-3cd8-98de-3e70b10178e6,SESCO,II.1.1,Buenos Aires,AR-B,annual,2022,naphtha combustion consumption by to the public,35936.794832399995,TJ,N2O,0.6,kg/TJ,21562.076899439995,kg -9aa82d59-ab5d-38cc-a1cb-23379e254a43,SESCO,II.1.1,Capital Federal,AR-C,annual,2022,naphtha combustion consumption by to the public,6804.069579999999,TJ,CO2,73300.0,kg/TJ,498738300.2139999,kg -48c42e9b-c92f-3a4e-be12-bf00aac028d6,SESCO,II.1.1,Capital Federal,AR-C,annual,2022,naphtha combustion consumption by to the public,6804.069579999999,TJ,CH4,3.0,kg/TJ,20412.20874,kg -d785df2b-1576-3803-93c5-17bf3e26da8f,SESCO,II.1.1,Capital Federal,AR-C,annual,2022,naphtha combustion consumption by to the public,6804.069579999999,TJ,N2O,0.6,kg/TJ,4082.4417479999993,kg -b8158176-2c3a-3198-b898-3fb4c495c705,SESCO,II.1.1,Catamarca,AR-K,annual,2022,naphtha combustion consumption by to the public,956.8816487999999,TJ,CO2,73300.0,kg/TJ,70139424.85703999,kg -ce3ac663-433c-37ae-bfce-d6fce5abcf37,SESCO,II.1.1,Catamarca,AR-K,annual,2022,naphtha combustion consumption by to the public,956.8816487999999,TJ,CH4,3.0,kg/TJ,2870.6449463999998,kg -51a91f7f-1c92-3366-8540-ed28bded4a0a,SESCO,II.1.1,Catamarca,AR-K,annual,2022,naphtha combustion consumption by to the public,956.8816487999999,TJ,N2O,0.6,kg/TJ,574.1289892799999,kg -38008e07-130a-3b94-a20c-beea005e51a0,SESCO,II.1.1,Chaco,AR-H,annual,2022,naphtha combustion consumption by to the public,2635.7515184,TJ,CO2,73300.0,kg/TJ,193200586.29872,kg -b9379dfa-9054-36e3-b9ce-5ca8bc5db31c,SESCO,II.1.1,Chaco,AR-H,annual,2022,naphtha combustion consumption by to the public,2635.7515184,TJ,CH4,3.0,kg/TJ,7907.254555199999,kg -0a46874a-ba68-315e-a1a6-b8d03f9c2b3d,SESCO,II.1.1,Chaco,AR-H,annual,2022,naphtha combustion consumption by to the public,2635.7515184,TJ,N2O,0.6,kg/TJ,1581.45091104,kg -2f105c24-875b-3385-9a79-5ab9cae77a6d,SESCO,II.1.1,Chubut,AR-U,annual,2022,naphtha combustion consumption by to the public,3195.5758296,TJ,CO2,73300.0,kg/TJ,234235708.30967999,kg -738144d3-6fd8-3004-bcf6-e559f6dae8ab,SESCO,II.1.1,Chubut,AR-U,annual,2022,naphtha combustion consumption by to the public,3195.5758296,TJ,CH4,3.0,kg/TJ,9586.7274888,kg -beb261ca-81f9-34c9-b25e-92c37732a363,SESCO,II.1.1,Chubut,AR-U,annual,2022,naphtha combustion consumption by to the public,3195.5758296,TJ,N2O,0.6,kg/TJ,1917.34549776,kg -14ab1878-7b93-3e4b-b6db-aa623d783bf9,SESCO,II.1.1,Corrientes,AR-W,annual,2022,naphtha combustion consumption by to the public,2620.2527735999997,TJ,CO2,73300.0,kg/TJ,192064528.30488,kg -6c06305f-46d8-3782-8fe2-61843d640b98,SESCO,II.1.1,Corrientes,AR-W,annual,2022,naphtha combustion consumption by to the public,2620.2527735999997,TJ,CH4,3.0,kg/TJ,7860.7583208,kg -fcdd0b40-dcfb-3af5-aa4c-5cc1e9496e54,SESCO,II.1.1,Corrientes,AR-W,annual,2022,naphtha combustion consumption by to the public,2620.2527735999997,TJ,N2O,0.6,kg/TJ,1572.1516641599999,kg -a533ea5b-8011-3ec7-813b-c287f817ab77,SESCO,II.1.1,Córdoba,AR-X,annual,2022,naphtha combustion consumption by to the public,10063.509887199998,TJ,CO2,73300.0,kg/TJ,737655274.7317599,kg -37a883d7-d368-3988-b3e5-350ea2956cef,SESCO,II.1.1,Córdoba,AR-X,annual,2022,naphtha combustion consumption by to the public,10063.509887199998,TJ,CH4,3.0,kg/TJ,30190.529661599994,kg -0dfa7d8d-f5d2-3efe-b181-9a068f53af1a,SESCO,II.1.1,Córdoba,AR-X,annual,2022,naphtha combustion consumption by to the public,10063.509887199998,TJ,N2O,0.6,kg/TJ,6038.105932319999,kg -132dfb9a-12d8-3d3b-adc7-5160a7f9fda3,SESCO,II.1.1,Entre Rios,AR-E,annual,2022,naphtha combustion consumption by to the public,3393.6220471999995,TJ,CO2,73300.0,kg/TJ,248752496.05975997,kg -e75d467e-afc5-37d9-9c41-0e9b1e3b27fb,SESCO,II.1.1,Entre Rios,AR-E,annual,2022,naphtha combustion consumption by to the public,3393.6220471999995,TJ,CH4,3.0,kg/TJ,10180.8661416,kg -17ac15a1-7304-3201-b674-ff05befd9968,SESCO,II.1.1,Entre Rios,AR-E,annual,2022,naphtha combustion consumption by to the public,3393.6220471999995,TJ,N2O,0.6,kg/TJ,2036.1732283199997,kg -39d477bf-55e2-362a-90fe-2ae534266eb3,SESCO,II.1.1,Formosa,AR-P,annual,2022,naphtha combustion consumption by to the public,1196.6900483999998,TJ,CO2,73300.0,kg/TJ,87717380.54771999,kg -970c87bd-5e33-30e9-83b5-c18d69064490,SESCO,II.1.1,Formosa,AR-P,annual,2022,naphtha combustion consumption by to the public,1196.6900483999998,TJ,CH4,3.0,kg/TJ,3590.0701451999994,kg -2c9b65f5-450c-31ab-babb-364a78bf83b8,SESCO,II.1.1,Formosa,AR-P,annual,2022,naphtha combustion consumption by to the public,1196.6900483999998,TJ,N2O,0.6,kg/TJ,718.0140290399999,kg -dc178339-f54c-362c-b24a-d063c83031a0,SESCO,II.1.1,Jujuy,AR-Y,annual,2022,naphtha combustion consumption by to the public,1613.045434,TJ,CO2,73300.0,kg/TJ,118236230.3122,kg -1eb9461f-7d17-341d-b696-5bdca254a2bc,SESCO,II.1.1,Jujuy,AR-Y,annual,2022,naphtha combustion consumption by to the public,1613.045434,TJ,CH4,3.0,kg/TJ,4839.136302,kg -4fa8e0d9-6b22-3f7b-b9f6-bef1cfb879ec,SESCO,II.1.1,Jujuy,AR-Y,annual,2022,naphtha combustion consumption by to the public,1613.045434,TJ,N2O,0.6,kg/TJ,967.8272603999999,kg -45d4fab7-285a-39db-b825-c0942a345e3e,SESCO,II.1.1,La Pampa,AR-L,annual,2022,naphtha combustion consumption by to the public,1699.434352,TJ,CO2,73300.0,kg/TJ,124568538.0016,kg -a980d4ca-358d-30ea-b54d-e611dc04dcff,SESCO,II.1.1,La Pampa,AR-L,annual,2022,naphtha combustion consumption by to the public,1699.434352,TJ,CH4,3.0,kg/TJ,5098.303056,kg -9f6eb304-bec3-3000-998a-c97622352541,SESCO,II.1.1,La Pampa,AR-L,annual,2022,naphtha combustion consumption by to the public,1699.434352,TJ,N2O,0.6,kg/TJ,1019.6606112,kg -22c1b37b-1013-374e-98f7-70e5e5981b82,SESCO,II.1.1,La Rioja,AR-F,annual,2022,naphtha combustion consumption by to the public,1056.8093536,TJ,CO2,73300.0,kg/TJ,77464125.61887999,kg -ab8d9d6e-871d-3614-ab2d-d2d5971a8d34,SESCO,II.1.1,La Rioja,AR-F,annual,2022,naphtha combustion consumption by to the public,1056.8093536,TJ,CH4,3.0,kg/TJ,3170.4280608,kg -daa72b12-05d7-3560-8cbc-1d5f9b83568d,SESCO,II.1.1,La Rioja,AR-F,annual,2022,naphtha combustion consumption by to the public,1056.8093536,TJ,N2O,0.6,kg/TJ,634.0856121599999,kg -6e971a39-2cfe-3473-8e21-c694d3b9f0ec,SESCO,II.1.1,Mendoza,AR-M,annual,2022,naphtha combustion consumption by to the public,4827.5574732,TJ,CO2,73300.0,kg/TJ,353859962.78555995,kg -3c313426-0377-3b0d-b36a-ac814b60ec2b,SESCO,II.1.1,Mendoza,AR-M,annual,2022,naphtha combustion consumption by to the public,4827.5574732,TJ,CH4,3.0,kg/TJ,14482.6724196,kg -e4ed07a7-eef6-3e12-8dd5-2144ae0a7a14,SESCO,II.1.1,Mendoza,AR-M,annual,2022,naphtha combustion consumption by to the public,4827.5574732,TJ,N2O,0.6,kg/TJ,2896.5344839199997,kg -df21fc4a-e453-3d56-abe6-96d3bc260f6a,SESCO,II.1.1,Misiones,AR-N,annual,2022,naphtha combustion consumption by to the public,3900.5274923999996,TJ,CO2,73300.0,kg/TJ,285908665.19291997,kg -4f7a0be0-6c63-381b-a528-5413f55dfee8,SESCO,II.1.1,Misiones,AR-N,annual,2022,naphtha combustion consumption by to the public,3900.5274923999996,TJ,CH4,3.0,kg/TJ,11701.582477199998,kg -c747d788-bfc3-3c2c-8390-d57e79dab387,SESCO,II.1.1,Misiones,AR-N,annual,2022,naphtha combustion consumption by to the public,3900.5274923999996,TJ,N2O,0.6,kg/TJ,2340.3164954399995,kg -c7beb294-b597-3138-87d6-1fca19369576,SESCO,II.1.1,Neuquén,AR-Q,annual,2022,naphtha combustion consumption by to the public,3292.3676016,TJ,CO2,73300.0,kg/TJ,241330545.19728,kg -94b6329a-f8d4-3888-812d-86c76b4772ee,SESCO,II.1.1,Neuquén,AR-Q,annual,2022,naphtha combustion consumption by to the public,3292.3676016,TJ,CH4,3.0,kg/TJ,9877.1028048,kg -fd580114-a6e4-3b24-bd7c-f4e7e1c9df86,SESCO,II.1.1,Neuquén,AR-Q,annual,2022,naphtha combustion consumption by to the public,3292.3676016,TJ,N2O,0.6,kg/TJ,1975.4205609599999,kg -94640df4-f559-3e90-a110-b2a0a5ee1c38,SESCO,II.1.1,Rio Negro,AR-R,annual,2022,naphtha combustion consumption by to the public,3186.7107887999996,TJ,CO2,73300.0,kg/TJ,233585900.81903997,kg -f3099c7e-1957-3048-b787-f41b26f94eb1,SESCO,II.1.1,Rio Negro,AR-R,annual,2022,naphtha combustion consumption by to the public,3186.7107887999996,TJ,CH4,3.0,kg/TJ,9560.1323664,kg -cb4a5268-3470-3adf-99d6-00492e42597a,SESCO,II.1.1,Rio Negro,AR-R,annual,2022,naphtha combustion consumption by to the public,3186.7107887999996,TJ,N2O,0.6,kg/TJ,1912.0264732799997,kg -2c882bcd-0809-3341-8673-ed95b6c37669,SESCO,II.1.1,Salta,AR-A,annual,2022,naphtha combustion consumption by to the public,3476.6941131999997,TJ,CO2,73300.0,kg/TJ,254841678.49755996,kg -13191df4-f396-3813-9148-4e115564c21d,SESCO,II.1.1,Salta,AR-A,annual,2022,naphtha combustion consumption by to the public,3476.6941131999997,TJ,CH4,3.0,kg/TJ,10430.0823396,kg -4933a884-c952-3360-b045-874475adf94c,SESCO,II.1.1,Salta,AR-A,annual,2022,naphtha combustion consumption by to the public,3476.6941131999997,TJ,N2O,0.6,kg/TJ,2086.0164679199997,kg -8c1c9d4f-a022-34f9-8abd-d63a3fdc9268,SESCO,II.1.1,San Juan,AR-J,annual,2022,naphtha combustion consumption by to the public,1677.5431287999997,TJ,CO2,73300.0,kg/TJ,122963911.34103999,kg -89a78f34-1336-3d2c-8e6b-003011a0e73f,SESCO,II.1.1,San Juan,AR-J,annual,2022,naphtha combustion consumption by to the public,1677.5431287999997,TJ,CH4,3.0,kg/TJ,5032.629386399999,kg -3fb12cd0-144e-3ec9-9b06-7ad76f524dee,SESCO,II.1.1,San Juan,AR-J,annual,2022,naphtha combustion consumption by to the public,1677.5431287999997,TJ,N2O,0.6,kg/TJ,1006.5258772799998,kg -2998678d-79b4-36d3-92af-b20b3db100ac,SESCO,II.1.1,San Luis,AR-D,annual,2022,naphtha combustion consumption by to the public,1464.9630687999997,TJ,CO2,73300.0,kg/TJ,107381792.94303998,kg -6e5f4951-bc8b-3b28-8a1b-ffaa8fef539b,SESCO,II.1.1,San Luis,AR-D,annual,2022,naphtha combustion consumption by to the public,1464.9630687999997,TJ,CH4,3.0,kg/TJ,4394.889206399999,kg -304d67d2-8d9f-3eef-aea0-e6ca865c2d66,SESCO,II.1.1,San Luis,AR-D,annual,2022,naphtha combustion consumption by to the public,1464.9630687999997,TJ,N2O,0.6,kg/TJ,878.9778412799998,kg -e88a96ef-b90e-3844-a9b2-d33f1b4e3c85,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2022,naphtha combustion consumption by to the public,2097.6375112,TJ,CO2,73300.0,kg/TJ,153756829.57096002,kg -a046fcf6-2c65-331e-a55f-5d2f2542d06c,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2022,naphtha combustion consumption by to the public,2097.6375112,TJ,CH4,3.0,kg/TJ,6292.9125336,kg -d81bc17b-8eca-34ef-9348-d7a7704289f0,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2022,naphtha combustion consumption by to the public,2097.6375112,TJ,N2O,0.6,kg/TJ,1258.58250672,kg -5058ce13-0cd4-3fcf-871e-e78445d0d2a9,SESCO,II.1.1,Santa Fe,AR-S,annual,2022,naphtha combustion consumption by to the public,7231.943488,TJ,CO2,73300.0,kg/TJ,530101457.67039996,kg -6ae0a275-e2fb-3c1e-86a7-a9e7195cbeff,SESCO,II.1.1,Santa Fe,AR-S,annual,2022,naphtha combustion consumption by to the public,7231.943488,TJ,CH4,3.0,kg/TJ,21695.830464,kg -b0097f7a-2090-3c26-b97a-0f9a13068155,SESCO,II.1.1,Santa Fe,AR-S,annual,2022,naphtha combustion consumption by to the public,7231.943488,TJ,N2O,0.6,kg/TJ,4339.1660928,kg -8fe6eda3-b258-382f-9298-75eaa1798c21,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2022,naphtha combustion consumption by to the public,1681.0107467999999,TJ,CO2,73300.0,kg/TJ,123218087.74044,kg -d193a3fd-82a5-3810-9e40-afd547b80d6f,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2022,naphtha combustion consumption by to the public,1681.0107467999999,TJ,CH4,3.0,kg/TJ,5043.0322404,kg -78c80871-6aad-3004-a435-ff11fba62d64,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2022,naphtha combustion consumption by to the public,1681.0107467999999,TJ,N2O,0.6,kg/TJ,1008.6064480799998,kg -eb3ce8b6-a093-3887-a9d3-63eaa6fd299d,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2022,naphtha combustion consumption by to the public,1378.6043039999997,TJ,CO2,73300.0,kg/TJ,101051695.48319998,kg -d75e1ebe-64df-3f34-aa77-941a79c5e532,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2022,naphtha combustion consumption by to the public,1378.6043039999997,TJ,CH4,3.0,kg/TJ,4135.812911999999,kg -46cc2162-85ea-36e1-8a35-b1df004ba39d,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2022,naphtha combustion consumption by to the public,1378.6043039999997,TJ,N2O,0.6,kg/TJ,827.1625823999998,kg -361dc3c5-1628-3a2b-bd15-588ec10bcc2b,SESCO,II.1.1,Tucuman,AR-T,annual,2022,naphtha combustion consumption by to the public,3136.1137191999997,TJ,CO2,73300.0,kg/TJ,229877135.61735997,kg -767189d7-eb14-35be-af66-f88b6a7fee5e,SESCO,II.1.1,Tucuman,AR-T,annual,2022,naphtha combustion consumption by to the public,3136.1137191999997,TJ,CH4,3.0,kg/TJ,9408.3411576,kg -70614ac0-7d23-33db-8a14-cb86a1ad2812,SESCO,II.1.1,Tucuman,AR-T,annual,2022,naphtha combustion consumption by to the public,3136.1137191999997,TJ,N2O,0.6,kg/TJ,1881.6682315199996,kg -662b87b5-7bee-3f93-86f5-a332464cd983,SESCO,II.1.1,Buenos Aires,AR-B,annual,2022,naphtha combustion consumption by to the public,16466.511754,TJ,CO2,73300.0,kg/TJ,1206995311.5681999,kg -11479d9f-82b2-3a04-95bc-2faaf7b4ac4c,SESCO,II.1.1,Buenos Aires,AR-B,annual,2022,naphtha combustion consumption by to the public,16466.511754,TJ,CH4,3.0,kg/TJ,49399.535262,kg -6089fb71-ab27-3ae2-8ca4-e7f3fba66e8d,SESCO,II.1.1,Buenos Aires,AR-B,annual,2022,naphtha combustion consumption by to the public,16466.511754,TJ,N2O,0.6,kg/TJ,9879.9070524,kg -baf826ba-5c40-3e4e-8f79-e54e0df84161,SESCO,II.1.1,Capital Federal,AR-C,annual,2022,naphtha combustion consumption by to the public,4155.141113199999,TJ,CO2,73300.0,kg/TJ,304571843.5975599,kg -98262756-1ede-34b7-b286-a8746b812e37,SESCO,II.1.1,Capital Federal,AR-C,annual,2022,naphtha combustion consumption by to the public,4155.141113199999,TJ,CH4,3.0,kg/TJ,12465.423339599998,kg -e24144ac-7db6-3df0-a577-2acf8674af9f,SESCO,II.1.1,Capital Federal,AR-C,annual,2022,naphtha combustion consumption by to the public,4155.141113199999,TJ,N2O,0.6,kg/TJ,2493.0846679199994,kg -1b7d1646-a352-3b04-8492-ca0046da86ff,SESCO,II.1.1,Catamarca,AR-K,annual,2022,naphtha combustion consumption by to the public,382.9757932,TJ,CO2,73300.0,kg/TJ,28072125.64156,kg -88f88a56-3191-3b27-aee2-84884df22e4d,SESCO,II.1.1,Catamarca,AR-K,annual,2022,naphtha combustion consumption by to the public,382.9757932,TJ,CH4,3.0,kg/TJ,1148.9273796,kg -3f64a009-9794-310e-aebb-23643a289d42,SESCO,II.1.1,Catamarca,AR-K,annual,2022,naphtha combustion consumption by to the public,382.9757932,TJ,N2O,0.6,kg/TJ,229.78547591999998,kg -835c3a2a-ea01-352c-9ffb-b20b537cd660,SESCO,II.1.1,Chaco,AR-H,annual,2022,naphtha combustion consumption by to the public,816.2772772,TJ,CO2,73300.0,kg/TJ,59833124.418759994,kg -efab51af-1017-3ce7-bf60-4bcc9a775fcd,SESCO,II.1.1,Chaco,AR-H,annual,2022,naphtha combustion consumption by to the public,816.2772772,TJ,CH4,3.0,kg/TJ,2448.8318316,kg -8161a388-b5c0-3f0c-9f54-52aa5583495c,SESCO,II.1.1,Chaco,AR-H,annual,2022,naphtha combustion consumption by to the public,816.2772772,TJ,N2O,0.6,kg/TJ,489.76636632,kg -3c1c8693-ccc3-3154-bfc0-2011baec89a1,SESCO,II.1.1,Chubut,AR-U,annual,2022,naphtha combustion consumption by to the public,1154.8072535999997,TJ,CO2,73300.0,kg/TJ,84647371.68887998,kg -13b218a1-c826-3e34-82f7-766068953703,SESCO,II.1.1,Chubut,AR-U,annual,2022,naphtha combustion consumption by to the public,1154.8072535999997,TJ,CH4,3.0,kg/TJ,3464.421760799999,kg -ec98da9d-9a53-375b-9aee-78092006475c,SESCO,II.1.1,Chubut,AR-U,annual,2022,naphtha combustion consumption by to the public,1154.8072535999997,TJ,N2O,0.6,kg/TJ,692.8843521599998,kg -a3088540-1080-30a7-92f2-d00f5a1de7ed,SESCO,II.1.1,Corrientes,AR-W,annual,2022,naphtha combustion consumption by to the public,1050.5073347999999,TJ,CO2,73300.0,kg/TJ,77002187.64084,kg -a83dfd1c-3102-3c9b-a111-9b703bd45ad9,SESCO,II.1.1,Corrientes,AR-W,annual,2022,naphtha combustion consumption by to the public,1050.5073347999999,TJ,CH4,3.0,kg/TJ,3151.5220044,kg -7bc0d8a5-fb3d-38df-b313-baa3aa4e0954,SESCO,II.1.1,Corrientes,AR-W,annual,2022,naphtha combustion consumption by to the public,1050.5073347999999,TJ,N2O,0.6,kg/TJ,630.3044008799999,kg -8a9a9e13-0466-34d0-80b2-7716aed44239,SESCO,II.1.1,Córdoba,AR-X,annual,2022,naphtha combustion consumption by to the public,4284.920485999999,TJ,CO2,73300.0,kg/TJ,314084671.6237999,kg -48072e85-c1fa-3173-ad39-044b28c4f17c,SESCO,II.1.1,Córdoba,AR-X,annual,2022,naphtha combustion consumption by to the public,4284.920485999999,TJ,CH4,3.0,kg/TJ,12854.761457999997,kg -3c7735b6-c1be-3db8-bfc4-2b90d5c4c6d7,SESCO,II.1.1,Córdoba,AR-X,annual,2022,naphtha combustion consumption by to the public,4284.920485999999,TJ,N2O,0.6,kg/TJ,2570.952291599999,kg -1e5a0eb5-d654-3d30-82c6-ebd79264bfe9,SESCO,II.1.1,Entre Rios,AR-E,annual,2022,naphtha combustion consumption by to the public,1477.5067999999999,TJ,CO2,73300.0,kg/TJ,108301248.44,kg -88ab178d-101e-3d6e-b631-308ca29169eb,SESCO,II.1.1,Entre Rios,AR-E,annual,2022,naphtha combustion consumption by to the public,1477.5067999999999,TJ,CH4,3.0,kg/TJ,4432.520399999999,kg -1c9f1e7e-430b-3062-98a0-6bcc71432f15,SESCO,II.1.1,Entre Rios,AR-E,annual,2022,naphtha combustion consumption by to the public,1477.5067999999999,TJ,N2O,0.6,kg/TJ,886.5040799999999,kg -0f50d04d-05f7-3029-a1d5-76b031d4e5a2,SESCO,II.1.1,Formosa,AR-P,annual,2022,naphtha combustion consumption by to the public,345.73659119999996,TJ,CO2,73300.0,kg/TJ,25342492.134959996,kg -d8130f31-0cdd-3bf2-bb7b-9f2ec9938e9b,SESCO,II.1.1,Formosa,AR-P,annual,2022,naphtha combustion consumption by to the public,345.73659119999996,TJ,CH4,3.0,kg/TJ,1037.2097735999998,kg -7186e979-f02a-370b-8ce8-1de71b713b7c,SESCO,II.1.1,Formosa,AR-P,annual,2022,naphtha combustion consumption by to the public,345.73659119999996,TJ,N2O,0.6,kg/TJ,207.44195471999998,kg -c6db6733-6d6e-3089-957f-4153205b171d,SESCO,II.1.1,Jujuy,AR-Y,annual,2022,naphtha combustion consumption by to the public,507.53866239999996,TJ,CO2,73300.0,kg/TJ,37202583.95392,kg -2b5c2a07-d912-3390-836e-9429340156c8,SESCO,II.1.1,Jujuy,AR-Y,annual,2022,naphtha combustion consumption by to the public,507.53866239999996,TJ,CH4,3.0,kg/TJ,1522.6159871999998,kg -3064456b-cc64-3e6a-ae9e-26c35ce4b8d8,SESCO,II.1.1,Jujuy,AR-Y,annual,2022,naphtha combustion consumption by to the public,507.53866239999996,TJ,N2O,0.6,kg/TJ,304.52319744,kg -166f3979-76ba-3ee6-8a71-53630c845bf1,SESCO,II.1.1,La Pampa,AR-L,annual,2022,naphtha combustion consumption by to the public,1088.3797539999998,TJ,CO2,73300.0,kg/TJ,79778235.96819998,kg -e9065362-3d49-3951-a053-cacba2ecb731,SESCO,II.1.1,La Pampa,AR-L,annual,2022,naphtha combustion consumption by to the public,1088.3797539999998,TJ,CH4,3.0,kg/TJ,3265.1392619999997,kg -516ea498-4c75-35a1-a02d-4e9fe8ef7754,SESCO,II.1.1,La Pampa,AR-L,annual,2022,naphtha combustion consumption by to the public,1088.3797539999998,TJ,N2O,0.6,kg/TJ,653.0278523999999,kg -cadab9a1-6e40-3278-8757-4e1f66e9546f,SESCO,II.1.1,La Rioja,AR-F,annual,2022,naphtha combustion consumption by to the public,481.4561443999999,TJ,CO2,73300.0,kg/TJ,35290735.384519994,kg -4fdb9380-964a-32c3-b8f3-504345758553,SESCO,II.1.1,La Rioja,AR-F,annual,2022,naphtha combustion consumption by to the public,481.4561443999999,TJ,CH4,3.0,kg/TJ,1444.3684331999998,kg -6d0baddc-1404-39dd-b82a-e40a2e0d9dfd,SESCO,II.1.1,La Rioja,AR-F,annual,2022,naphtha combustion consumption by to the public,481.4561443999999,TJ,N2O,0.6,kg/TJ,288.87368663999996,kg -7740acf2-057d-31c7-b872-235d713f5c0a,SESCO,II.1.1,Mendoza,AR-M,annual,2022,naphtha combustion consumption by to the public,2713.5166212,TJ,CO2,73300.0,kg/TJ,198900768.33396,kg -d5515947-9034-3dd6-9dd9-644f53284ad6,SESCO,II.1.1,Mendoza,AR-M,annual,2022,naphtha combustion consumption by to the public,2713.5166212,TJ,CH4,3.0,kg/TJ,8140.549863599999,kg -9bace119-7c00-314d-87c5-0c81610f0571,SESCO,II.1.1,Mendoza,AR-M,annual,2022,naphtha combustion consumption by to the public,2713.5166212,TJ,N2O,0.6,kg/TJ,1628.1099727199999,kg -afb33b4e-9fe8-3bd9-b4f7-9b0722b701ef,SESCO,II.1.1,Misiones,AR-N,annual,2022,naphtha combustion consumption by to the public,1302.1056356,TJ,CO2,73300.0,kg/TJ,95444343.08948,kg -5f257405-856d-3240-839e-9915691795ce,SESCO,II.1.1,Misiones,AR-N,annual,2022,naphtha combustion consumption by to the public,1302.1056356,TJ,CH4,3.0,kg/TJ,3906.3169067999997,kg -3d5dc90e-963b-3611-a3b2-0cc41e664541,SESCO,II.1.1,Misiones,AR-N,annual,2022,naphtha combustion consumption by to the public,1302.1056356,TJ,N2O,0.6,kg/TJ,781.2633813599999,kg -dc04ebe8-0872-335e-ab7a-35e9b24de672,SESCO,II.1.1,Neuquén,AR-Q,annual,2022,naphtha combustion consumption by to the public,1823.1830847999997,TJ,CO2,73300.0,kg/TJ,133639320.11583997,kg -e1f25b5e-a1b0-3359-aa2f-42213f9a4067,SESCO,II.1.1,Neuquén,AR-Q,annual,2022,naphtha combustion consumption by to the public,1823.1830847999997,TJ,CH4,3.0,kg/TJ,5469.549254399999,kg -15e3b212-05f2-306d-a03a-a1958ec8d8df,SESCO,II.1.1,Neuquén,AR-Q,annual,2022,naphtha combustion consumption by to the public,1823.1830847999997,TJ,N2O,0.6,kg/TJ,1093.9098508799998,kg -8730a183-66d7-32f3-a350-abb46511fc31,SESCO,II.1.1,Rio Negro,AR-R,annual,2022,naphtha combustion consumption by to the public,1659.1798299999998,TJ,CO2,73300.0,kg/TJ,121617881.53899999,kg -27d9690e-38e6-324b-9845-9adab6ebd512,SESCO,II.1.1,Rio Negro,AR-R,annual,2022,naphtha combustion consumption by to the public,1659.1798299999998,TJ,CH4,3.0,kg/TJ,4977.539489999999,kg -3042fe5a-b304-389d-9f2b-02ea9728448c,SESCO,II.1.1,Rio Negro,AR-R,annual,2022,naphtha combustion consumption by to the public,1659.1798299999998,TJ,N2O,0.6,kg/TJ,995.5078979999998,kg -cbf682f5-66d0-34f1-bf55-8c1e0a9d0c80,SESCO,II.1.1,Salta,AR-A,annual,2022,naphtha combustion consumption by to the public,1141.4192328000001,TJ,CO2,73300.0,kg/TJ,83666029.76424001,kg -3a789fa9-61e9-3556-a1e2-225786f40260,SESCO,II.1.1,Salta,AR-A,annual,2022,naphtha combustion consumption by to the public,1141.4192328000001,TJ,CH4,3.0,kg/TJ,3424.2576984000007,kg -2887433c-fcb8-3f13-82d3-ab6e053b9de5,SESCO,II.1.1,Salta,AR-A,annual,2022,naphtha combustion consumption by to the public,1141.4192328000001,TJ,N2O,0.6,kg/TJ,684.8515396800001,kg -4ca8fe32-41c2-3973-89e5-a1bb4f10282d,SESCO,II.1.1,San Juan,AR-J,annual,2022,naphtha combustion consumption by to the public,757.749916,TJ,CO2,73300.0,kg/TJ,55543068.8428,kg -20fceaee-f1b2-3949-8e8a-e0227e544f00,SESCO,II.1.1,San Juan,AR-J,annual,2022,naphtha combustion consumption by to the public,757.749916,TJ,CH4,3.0,kg/TJ,2273.249748,kg -1c393b5a-7c63-3daf-a0a3-2aa79ec8a375,SESCO,II.1.1,San Juan,AR-J,annual,2022,naphtha combustion consumption by to the public,757.749916,TJ,N2O,0.6,kg/TJ,454.64994959999996,kg -201ff3a5-a393-3b42-9735-7ff1db44949d,SESCO,II.1.1,San Luis,AR-D,annual,2022,naphtha combustion consumption by to the public,650.4648304,TJ,CO2,73300.0,kg/TJ,47679072.06832,kg -5fe211e1-2e77-3c70-b92c-ce5d54e55bc5,SESCO,II.1.1,San Luis,AR-D,annual,2022,naphtha combustion consumption by to the public,650.4648304,TJ,CH4,3.0,kg/TJ,1951.3944912,kg -d0a070f7-872b-3c4b-b9c0-c4d6b326fc0c,SESCO,II.1.1,San Luis,AR-D,annual,2022,naphtha combustion consumption by to the public,650.4648304,TJ,N2O,0.6,kg/TJ,390.27889824,kg -47c3adae-6ee5-3394-8bdb-e6c875b199b7,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2022,naphtha combustion consumption by to the public,611.8988876,TJ,CO2,73300.0,kg/TJ,44852188.46108,kg -fe5efdd3-5493-376b-aaaf-42493a303a1c,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2022,naphtha combustion consumption by to the public,611.8988876,TJ,CH4,3.0,kg/TJ,1835.6966628,kg -660a4fe1-adde-3a7e-bd4e-27dc15af4d3f,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2022,naphtha combustion consumption by to the public,611.8988876,TJ,N2O,0.6,kg/TJ,367.13933255999996,kg -e4b6231c-cb40-3c7b-b84c-871fe530e236,SESCO,II.1.1,Santa Fe,AR-S,annual,2022,naphtha combustion consumption by to the public,3643.4714624,TJ,CO2,73300.0,kg/TJ,267066458.19392,kg -51eeabfa-5809-38f8-9df7-5107a3a6b68a,SESCO,II.1.1,Santa Fe,AR-S,annual,2022,naphtha combustion consumption by to the public,3643.4714624,TJ,CH4,3.0,kg/TJ,10930.414387199999,kg -73f1e015-ac78-330b-bc68-af65ddf2fe18,SESCO,II.1.1,Santa Fe,AR-S,annual,2022,naphtha combustion consumption by to the public,3643.4714624,TJ,N2O,0.6,kg/TJ,2186.0828774399997,kg -5d0172a3-5fe0-3fab-a70f-247b01b24e61,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2022,naphtha combustion consumption by to the public,648.6254852,TJ,CO2,73300.0,kg/TJ,47544248.06516,kg -55eea761-85ca-3e51-b33f-b93d7985f8a0,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2022,naphtha combustion consumption by to the public,648.6254852,TJ,CH4,3.0,kg/TJ,1945.8764555999999,kg -a69e8f4f-5dd2-350e-a902-dbb2b7684ed0,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2022,naphtha combustion consumption by to the public,648.6254852,TJ,N2O,0.6,kg/TJ,389.17529111999994,kg -c02f7b1f-5bce-35fd-9301-21de7bf07160,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2022,naphtha combustion consumption by to the public,398.9268359999999,TJ,CO2,73300.0,kg/TJ,29241337.078799993,kg -4509d01e-88b3-3f9c-9fe6-d464fc06f052,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2022,naphtha combustion consumption by to the public,398.9268359999999,TJ,CH4,3.0,kg/TJ,1196.7805079999998,kg -8ed98c53-485b-35fd-b3e5-bd62fdc27e52,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2022,naphtha combustion consumption by to the public,398.9268359999999,TJ,N2O,0.6,kg/TJ,239.35610159999993,kg -51b9b114-3cf9-3413-8b3e-717912dcde12,SESCO,II.1.1,Tucuman,AR-T,annual,2022,naphtha combustion consumption by to the public,950.7605491999999,TJ,CO2,73300.0,kg/TJ,69690748.25636,kg -26987373-d00b-36ad-8f4a-755e984a7f90,SESCO,II.1.1,Tucuman,AR-T,annual,2022,naphtha combustion consumption by to the public,950.7605491999999,TJ,CH4,3.0,kg/TJ,2852.2816476,kg -beb364be-4002-3fe7-8e91-9a875ad72a04,SESCO,II.1.1,Tucuman,AR-T,annual,2022,naphtha combustion consumption by to the public,950.7605491999999,TJ,N2O,0.6,kg/TJ,570.4563295199999,kg -3ac4eabd-e065-3556-b370-c94582519eb3,SESCO,II.1.1,Buenos Aires,AR-B,annual,2022,naphtha combustion consumption by freight transport,642.5043856,TJ,CO2,73300.0,kg/TJ,47095571.46448,kg -866d1425-ccb3-3cf2-902e-755439bffdcb,SESCO,II.1.1,Buenos Aires,AR-B,annual,2022,naphtha combustion consumption by freight transport,642.5043856,TJ,CH4,3.0,kg/TJ,1927.5131568,kg -cb0393ea-b297-3456-ae49-7ac33a71a5c7,SESCO,II.1.1,Buenos Aires,AR-B,annual,2022,naphtha combustion consumption by freight transport,642.5043856,TJ,N2O,0.6,kg/TJ,385.50263135999995,kg -28df7405-68aa-3b57-9b1a-97b31121bcec,SESCO,II.1.1,Capital Federal,AR-C,annual,2022,naphtha combustion consumption by freight transport,86.087386,TJ,CO2,73300.0,kg/TJ,6310205.3938,kg -b9fa0302-daee-3f3d-931b-40bf570b65cd,SESCO,II.1.1,Capital Federal,AR-C,annual,2022,naphtha combustion consumption by freight transport,86.087386,TJ,CH4,3.0,kg/TJ,258.262158,kg -ca068c3b-2c95-3e07-a77a-45674c55307d,SESCO,II.1.1,Capital Federal,AR-C,annual,2022,naphtha combustion consumption by freight transport,86.087386,TJ,N2O,0.6,kg/TJ,51.65243159999999,kg -84379ba2-1388-358c-bad5-88e8accbb555,SESCO,II.1.1,Catamarca,AR-K,annual,2022,naphtha combustion consumption by freight transport,4.6737459999999995,TJ,CO2,73300.0,kg/TJ,342585.5818,kg -6bdbb857-efab-38c3-9e14-55dec2ff8a4b,SESCO,II.1.1,Catamarca,AR-K,annual,2022,naphtha combustion consumption by freight transport,4.6737459999999995,TJ,CH4,3.0,kg/TJ,14.021237999999999,kg -b6db65b4-e344-3017-b133-658fbf6b8f13,SESCO,II.1.1,Catamarca,AR-K,annual,2022,naphtha combustion consumption by freight transport,4.6737459999999995,TJ,N2O,0.6,kg/TJ,2.8042475999999996,kg -4938d841-a484-3cbe-acdc-7ce52c1d70d5,SESCO,II.1.1,Chaco,AR-H,annual,2022,naphtha combustion consumption by freight transport,17.6697752,TJ,CO2,73300.0,kg/TJ,1295194.52216,kg -c4191af5-0250-387a-9ff8-a873604720a8,SESCO,II.1.1,Chaco,AR-H,annual,2022,naphtha combustion consumption by freight transport,17.6697752,TJ,CH4,3.0,kg/TJ,53.0093256,kg -3df9b4cf-bf48-33e8-be69-3918ef32e79f,SESCO,II.1.1,Chaco,AR-H,annual,2022,naphtha combustion consumption by freight transport,17.6697752,TJ,N2O,0.6,kg/TJ,10.60186512,kg -a2484bce-8af4-36d2-a7dd-809e3082e21a,SESCO,II.1.1,Chubut,AR-U,annual,2022,naphtha combustion consumption by freight transport,21.5293848,TJ,CO2,73300.0,kg/TJ,1578103.90584,kg -84a61855-716c-32df-83d4-7f84ebc4b150,SESCO,II.1.1,Chubut,AR-U,annual,2022,naphtha combustion consumption by freight transport,21.5293848,TJ,CH4,3.0,kg/TJ,64.5881544,kg -0e28bfb5-d22f-3e6d-8938-5c7d1b588763,SESCO,II.1.1,Chubut,AR-U,annual,2022,naphtha combustion consumption by freight transport,21.5293848,TJ,N2O,0.6,kg/TJ,12.917630879999999,kg -19f7a3ee-bcd9-3f6f-848e-98df096f1c3a,SESCO,II.1.1,Corrientes,AR-W,annual,2022,naphtha combustion consumption by freight transport,17.8808476,TJ,CO2,73300.0,kg/TJ,1310666.1290799999,kg -1d35d833-7173-3650-b160-1099b70f4d3a,SESCO,II.1.1,Corrientes,AR-W,annual,2022,naphtha combustion consumption by freight transport,17.8808476,TJ,CH4,3.0,kg/TJ,53.6425428,kg -a9f1ba10-c35d-3843-a0a5-ef8559c3bf83,SESCO,II.1.1,Corrientes,AR-W,annual,2022,naphtha combustion consumption by freight transport,17.8808476,TJ,N2O,0.6,kg/TJ,10.72850856,kg -6306324c-2e9b-3fb3-af32-dbaacb2d09e1,SESCO,II.1.1,Córdoba,AR-X,annual,2022,naphtha combustion consumption by freight transport,106.13926399999998,TJ,CO2,73300.0,kg/TJ,7780008.051199999,kg -bc5f0378-4200-3944-b675-f5e652986f97,SESCO,II.1.1,Córdoba,AR-X,annual,2022,naphtha combustion consumption by freight transport,106.13926399999998,TJ,CH4,3.0,kg/TJ,318.41779199999996,kg -6e270c81-cbd9-35d4-8f20-566f574cbc77,SESCO,II.1.1,Córdoba,AR-X,annual,2022,naphtha combustion consumption by freight transport,106.13926399999998,TJ,N2O,0.6,kg/TJ,63.68355839999999,kg -23963357-0517-3a8d-8de7-90c1d0034b75,SESCO,II.1.1,Entre Rios,AR-E,annual,2022,naphtha combustion consumption by freight transport,38.2041044,TJ,CO2,73300.0,kg/TJ,2800360.8525199997,kg -7c49c119-dc41-3133-92eb-dd00217e0124,SESCO,II.1.1,Entre Rios,AR-E,annual,2022,naphtha combustion consumption by freight transport,38.2041044,TJ,CH4,3.0,kg/TJ,114.61231319999999,kg -93e399c2-f1dd-37db-b3c9-c1325edb6726,SESCO,II.1.1,Entre Rios,AR-E,annual,2022,naphtha combustion consumption by freight transport,38.2041044,TJ,N2O,0.6,kg/TJ,22.92246264,kg -999c2ae6-7a25-34df-ae5c-69a77c5758d5,SESCO,II.1.1,Formosa,AR-P,annual,2022,naphtha combustion consumption by freight transport,5.698954799999999,TJ,CO2,73300.0,kg/TJ,417733.38683999993,kg -4d030bd3-0d86-3fe6-bcee-768e4860b5a4,SESCO,II.1.1,Formosa,AR-P,annual,2022,naphtha combustion consumption by freight transport,5.698954799999999,TJ,CH4,3.0,kg/TJ,17.096864399999998,kg -7d608770-1d0d-311d-8a6b-dbe62d6d29d6,SESCO,II.1.1,Formosa,AR-P,annual,2022,naphtha combustion consumption by freight transport,5.698954799999999,TJ,N2O,0.6,kg/TJ,3.4193728799999996,kg -7be6421e-4191-3b3e-b390-c1552ab417b8,SESCO,II.1.1,Jujuy,AR-Y,annual,2022,naphtha combustion consumption by freight transport,8.6841216,TJ,CO2,73300.0,kg/TJ,636546.1132799999,kg -ca1e0891-be4e-33b9-bb2c-c792100664b3,SESCO,II.1.1,Jujuy,AR-Y,annual,2022,naphtha combustion consumption by freight transport,8.6841216,TJ,CH4,3.0,kg/TJ,26.0523648,kg -4c78550f-ef34-3d88-a2cd-cdb85e778f6d,SESCO,II.1.1,Jujuy,AR-Y,annual,2022,naphtha combustion consumption by freight transport,8.6841216,TJ,N2O,0.6,kg/TJ,5.21047296,kg -828e4ca7-1bd4-34e3-b390-737f25062a69,SESCO,II.1.1,La Pampa,AR-L,annual,2022,naphtha combustion consumption by freight transport,10.8249988,TJ,CO2,73300.0,kg/TJ,793472.41204,kg -687cf47d-6dd1-3165-9e6c-8c9b0e3491c7,SESCO,II.1.1,La Pampa,AR-L,annual,2022,naphtha combustion consumption by freight transport,10.8249988,TJ,CH4,3.0,kg/TJ,32.474996399999995,kg -11a56c39-7db4-38f9-9d5a-d3fd19d18e9e,SESCO,II.1.1,La Pampa,AR-L,annual,2022,naphtha combustion consumption by freight transport,10.8249988,TJ,N2O,0.6,kg/TJ,6.494999279999999,kg -dd9ff4c7-a497-3a6a-8f34-dd6fa9426c40,SESCO,II.1.1,La Rioja,AR-F,annual,2022,naphtha combustion consumption by freight transport,8.0509044,TJ,CO2,73300.0,kg/TJ,590131.29252,kg -97dd748f-934e-357a-8afa-7d6aef892cbc,SESCO,II.1.1,La Rioja,AR-F,annual,2022,naphtha combustion consumption by freight transport,8.0509044,TJ,CH4,3.0,kg/TJ,24.1527132,kg -b930d892-7450-3c1f-b7c5-e587e06f875d,SESCO,II.1.1,La Rioja,AR-F,annual,2022,naphtha combustion consumption by freight transport,8.0509044,TJ,N2O,0.6,kg/TJ,4.83054264,kg -a1672399-c032-36df-a530-40416ba86f6f,SESCO,II.1.1,Mendoza,AR-M,annual,2022,naphtha combustion consumption by freight transport,48.84818399999999,TJ,CO2,73300.0,kg/TJ,3580571.8871999993,kg -c7f4c99c-4b7b-30eb-b3b1-eb55c6af6895,SESCO,II.1.1,Mendoza,AR-M,annual,2022,naphtha combustion consumption by freight transport,48.84818399999999,TJ,CH4,3.0,kg/TJ,146.54455199999995,kg -1801b9db-6fb5-3dc0-b069-84f1f1b188db,SESCO,II.1.1,Mendoza,AR-M,annual,2022,naphtha combustion consumption by freight transport,48.84818399999999,TJ,N2O,0.6,kg/TJ,29.30891039999999,kg -a800ae16-3e1b-3413-8ccb-540e9d7f4417,SESCO,II.1.1,Misiones,AR-N,annual,2022,naphtha combustion consumption by freight transport,16.433494,TJ,CO2,73300.0,kg/TJ,1204575.1102,kg -6eda53fe-df98-3375-9353-45943fd9548a,SESCO,II.1.1,Misiones,AR-N,annual,2022,naphtha combustion consumption by freight transport,16.433494,TJ,CH4,3.0,kg/TJ,49.300482,kg -6bad1493-dc62-3489-84c4-ff3dd6a03f0a,SESCO,II.1.1,Misiones,AR-N,annual,2022,naphtha combustion consumption by freight transport,16.433494,TJ,N2O,0.6,kg/TJ,9.8600964,kg -6013cd0e-b8ab-34d4-9894-f74d7cffdae9,SESCO,II.1.1,Neuquén,AR-Q,annual,2022,naphtha combustion consumption by freight transport,19.780499199999998,TJ,CO2,73300.0,kg/TJ,1449910.5913599997,kg -b0d2f57d-43da-323d-8617-ab50ebe5ebf6,SESCO,II.1.1,Neuquén,AR-Q,annual,2022,naphtha combustion consumption by freight transport,19.780499199999998,TJ,CH4,3.0,kg/TJ,59.3414976,kg -5f2af37c-0a94-3554-bb98-3757fde068de,SESCO,II.1.1,Neuquén,AR-Q,annual,2022,naphtha combustion consumption by freight transport,19.780499199999998,TJ,N2O,0.6,kg/TJ,11.868299519999999,kg -7cc3b09f-8716-35ea-9a46-5c5bc0355749,SESCO,II.1.1,Rio Negro,AR-R,annual,2022,naphtha combustion consumption by freight transport,22.4942872,TJ,CO2,73300.0,kg/TJ,1648831.25176,kg -5b1b2e68-d445-317a-b8f1-23e5cb3bfccb,SESCO,II.1.1,Rio Negro,AR-R,annual,2022,naphtha combustion consumption by freight transport,22.4942872,TJ,CH4,3.0,kg/TJ,67.48286159999999,kg -1f5c943a-49d5-33e6-9f44-8e125aa234b6,SESCO,II.1.1,Rio Negro,AR-R,annual,2022,naphtha combustion consumption by freight transport,22.4942872,TJ,N2O,0.6,kg/TJ,13.496572319999999,kg -cf49503d-d738-3e5d-b89a-3c3c37485f08,SESCO,II.1.1,Salta,AR-A,annual,2022,naphtha combustion consumption by freight transport,29.1882976,TJ,CO2,73300.0,kg/TJ,2139502.21408,kg -455e0ec9-6a2d-3653-8aad-1341d7c226b1,SESCO,II.1.1,Salta,AR-A,annual,2022,naphtha combustion consumption by freight transport,29.1882976,TJ,CH4,3.0,kg/TJ,87.5648928,kg -d9d29a57-6a14-3893-9d39-7d78463dcfa2,SESCO,II.1.1,Salta,AR-A,annual,2022,naphtha combustion consumption by freight transport,29.1882976,TJ,N2O,0.6,kg/TJ,17.512978559999997,kg -ae7e3d33-61a5-3e46-a043-5639a132052f,SESCO,II.1.1,San Juan,AR-J,annual,2022,naphtha combustion consumption by freight transport,12.935722799999999,TJ,CO2,73300.0,kg/TJ,948188.4812399999,kg -72392856-6c9f-3955-b3f4-e781077fcde9,SESCO,II.1.1,San Juan,AR-J,annual,2022,naphtha combustion consumption by freight transport,12.935722799999999,TJ,CH4,3.0,kg/TJ,38.807168399999995,kg -b398a015-ce1e-314d-9964-8f0443c86a63,SESCO,II.1.1,San Juan,AR-J,annual,2022,naphtha combustion consumption by freight transport,12.935722799999999,TJ,N2O,0.6,kg/TJ,7.761433679999999,kg -46786aea-ea9c-3889-b803-ac9e82f2e35a,SESCO,II.1.1,San Luis,AR-D,annual,2022,naphtha combustion consumption by freight transport,11.1868372,TJ,CO2,73300.0,kg/TJ,819995.1667599999,kg -5234136f-7093-3e55-926f-4cd66a9d6b72,SESCO,II.1.1,San Luis,AR-D,annual,2022,naphtha combustion consumption by freight transport,11.1868372,TJ,CH4,3.0,kg/TJ,33.5605116,kg -2c509990-0417-3a48-bb6d-51e3ba19c41a,SESCO,II.1.1,San Luis,AR-D,annual,2022,naphtha combustion consumption by freight transport,11.1868372,TJ,N2O,0.6,kg/TJ,6.71210232,kg -6b3900e4-b5fe-3481-bf53-28ec8d5107e3,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2022,naphtha combustion consumption by freight transport,11.910514,TJ,CO2,73300.0,kg/TJ,873040.6762,kg -f1134dae-446a-33d1-8659-9230a94b3455,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2022,naphtha combustion consumption by freight transport,11.910514,TJ,CH4,3.0,kg/TJ,35.731542,kg -6cfb5eaa-a89c-311d-aec7-8e6d70ddf7d3,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2022,naphtha combustion consumption by freight transport,11.910514,TJ,N2O,0.6,kg/TJ,7.1463084,kg -1ca801e6-1e1c-3bc0-a85a-50813602c2fe,SESCO,II.1.1,Santa Fe,AR-S,annual,2022,naphtha combustion consumption by freight transport,98.48035119999999,TJ,CO2,73300.0,kg/TJ,7218609.7429599995,kg -cc11da38-1431-3c2a-9bab-eb7a21cd62b0,SESCO,II.1.1,Santa Fe,AR-S,annual,2022,naphtha combustion consumption by freight transport,98.48035119999999,TJ,CH4,3.0,kg/TJ,295.4410536,kg -6a19b2ea-2ee3-3938-8e3d-77a13adbe956,SESCO,II.1.1,Santa Fe,AR-S,annual,2022,naphtha combustion consumption by freight transport,98.48035119999999,TJ,N2O,0.6,kg/TJ,59.08821071999999,kg -75b87125-ef50-3a32-997b-c58a56d86b37,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2022,naphtha combustion consumption by freight transport,9.2570324,TJ,CO2,73300.0,kg/TJ,678540.47492,kg -09e585c1-cbd6-3783-ad66-31a7313a21ac,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2022,naphtha combustion consumption by freight transport,9.2570324,TJ,CH4,3.0,kg/TJ,27.7710972,kg -9bd7a2cf-8279-3c3f-90c4-6303e3d64dd7,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2022,naphtha combustion consumption by freight transport,9.2570324,TJ,N2O,0.6,kg/TJ,5.55421944,kg -e7d791b6-8529-35be-b9fb-a1dfdf0d0653,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2022,naphtha combustion consumption by freight transport,11.337603199999998,TJ,CO2,73300.0,kg/TJ,831046.3145599999,kg -c9036dda-04a0-3e83-8a47-2127b5aef4dd,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2022,naphtha combustion consumption by freight transport,11.337603199999998,TJ,CH4,3.0,kg/TJ,34.0128096,kg -5a580da5-0854-3f18-b748-310603a9e0d0,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2022,naphtha combustion consumption by freight transport,11.337603199999998,TJ,N2O,0.6,kg/TJ,6.802561919999999,kg -14263890-332d-315c-80f2-832bc4a2f3dd,SESCO,II.1.1,Tucuman,AR-T,annual,2022,naphtha combustion consumption by freight transport,32.0830048,TJ,CO2,73300.0,kg/TJ,2351684.25184,kg -4005494b-7a6a-3233-b61e-7876bb9e6a23,SESCO,II.1.1,Tucuman,AR-T,annual,2022,naphtha combustion consumption by freight transport,32.0830048,TJ,CH4,3.0,kg/TJ,96.2490144,kg -b560cb41-5758-3118-a124-5683b1b38679,SESCO,II.1.1,Tucuman,AR-T,annual,2022,naphtha combustion consumption by freight transport,32.0830048,TJ,N2O,0.6,kg/TJ,19.249802879999997,kg -013398b2-86a8-3552-8e60-adccd1dbf5eb,SESCO,II.1.1,Buenos Aires,AR-B,annual,2022,naphtha combustion consumption by freight transport,670.6976275999999,TJ,CO2,73300.0,kg/TJ,49162136.10308,kg -43358711-3b81-3e40-854c-4856f19e0348,SESCO,II.1.1,Buenos Aires,AR-B,annual,2022,naphtha combustion consumption by freight transport,670.6976275999999,TJ,CH4,3.0,kg/TJ,2012.0928827999996,kg -443617b5-5648-3287-9964-93897c7dcb4b,SESCO,II.1.1,Buenos Aires,AR-B,annual,2022,naphtha combustion consumption by freight transport,670.6976275999999,TJ,N2O,0.6,kg/TJ,402.41857655999996,kg -2f890107-678c-3218-af56-304bed36c4ed,SESCO,II.1.1,Capital Federal,AR-C,annual,2022,naphtha combustion consumption by freight transport,118.86391439999998,TJ,CO2,73300.0,kg/TJ,8712724.92552,kg -75930206-af72-397c-a73f-e5d42cc5c386,SESCO,II.1.1,Capital Federal,AR-C,annual,2022,naphtha combustion consumption by freight transport,118.86391439999998,TJ,CH4,3.0,kg/TJ,356.59174319999994,kg -d8ca2a11-4696-3056-a320-ae2488bf914f,SESCO,II.1.1,Capital Federal,AR-C,annual,2022,naphtha combustion consumption by freight transport,118.86391439999998,TJ,N2O,0.6,kg/TJ,71.31834863999998,kg -0b7f826e-b3b7-30c0-9123-24b23896d803,SESCO,II.1.1,Catamarca,AR-K,annual,2022,naphtha combustion consumption by freight transport,1.9599579999999999,TJ,CO2,73300.0,kg/TJ,143664.9214,kg -4fe95c3e-80d3-3c98-b48d-d97452812b32,SESCO,II.1.1,Catamarca,AR-K,annual,2022,naphtha combustion consumption by freight transport,1.9599579999999999,TJ,CH4,3.0,kg/TJ,5.879873999999999,kg -43ffd3db-1dcb-3fab-87cd-7149ee3879a3,SESCO,II.1.1,Catamarca,AR-K,annual,2022,naphtha combustion consumption by freight transport,1.9599579999999999,TJ,N2O,0.6,kg/TJ,1.1759747999999999,kg -a6fa6b0e-7574-3555-a7bc-e3eee1d4849d,SESCO,II.1.1,Chaco,AR-H,annual,2022,naphtha combustion consumption by freight transport,16.493800399999998,TJ,CO2,73300.0,kg/TJ,1208995.5693199998,kg -0dd17256-e578-30d6-a62a-4f2682e72fe8,SESCO,II.1.1,Chaco,AR-H,annual,2022,naphtha combustion consumption by freight transport,16.493800399999998,TJ,CH4,3.0,kg/TJ,49.48140119999999,kg -0e19f9f9-8c60-3e07-9e8c-47bc395c6f7b,SESCO,II.1.1,Chaco,AR-H,annual,2022,naphtha combustion consumption by freight transport,16.493800399999998,TJ,N2O,0.6,kg/TJ,9.896280239999998,kg -bd47a62f-a668-3c2c-82d8-11a99bbac028,SESCO,II.1.1,Chubut,AR-U,annual,2022,naphtha combustion consumption by freight transport,15.438438399999999,TJ,CO2,73300.0,kg/TJ,1131637.5347199999,kg -234d8707-d7da-3f31-ae02-7aee54acedbe,SESCO,II.1.1,Chubut,AR-U,annual,2022,naphtha combustion consumption by freight transport,15.438438399999999,TJ,CH4,3.0,kg/TJ,46.3153152,kg -3c2aff0d-a8e0-3dad-82ea-184e211c43d0,SESCO,II.1.1,Chubut,AR-U,annual,2022,naphtha combustion consumption by freight transport,15.438438399999999,TJ,N2O,0.6,kg/TJ,9.263063039999999,kg -5889b97a-b594-35f7-b96f-043f1fd6c250,SESCO,II.1.1,Corrientes,AR-W,annual,2022,naphtha combustion consumption by freight transport,21.348465599999997,TJ,CO2,73300.0,kg/TJ,1564842.5284799999,kg -4c328bbe-47b9-36da-a24e-4778afa13fff,SESCO,II.1.1,Corrientes,AR-W,annual,2022,naphtha combustion consumption by freight transport,21.348465599999997,TJ,CH4,3.0,kg/TJ,64.04539679999999,kg -12d3a180-98d3-3649-9daa-5d979f236754,SESCO,II.1.1,Corrientes,AR-W,annual,2022,naphtha combustion consumption by freight transport,21.348465599999997,TJ,N2O,0.6,kg/TJ,12.809079359999998,kg -2f86ba81-9531-3289-a855-be8a917d497c,SESCO,II.1.1,Córdoba,AR-X,annual,2022,naphtha combustion consumption by freight transport,130.714122,TJ,CO2,73300.0,kg/TJ,9581345.1426,kg -6e29355b-5ff5-3784-b379-a3d75317f7f1,SESCO,II.1.1,Córdoba,AR-X,annual,2022,naphtha combustion consumption by freight transport,130.714122,TJ,CH4,3.0,kg/TJ,392.14236600000004,kg -9da0815b-f8d0-3cac-aa75-31378efa9738,SESCO,II.1.1,Córdoba,AR-X,annual,2022,naphtha combustion consumption by freight transport,130.714122,TJ,N2O,0.6,kg/TJ,78.4284732,kg -ceb8bacf-e82a-36ca-b984-e7b4f54c7188,SESCO,II.1.1,Entre Rios,AR-E,annual,2022,naphtha combustion consumption by freight transport,35.27924399999999,TJ,CO2,73300.0,kg/TJ,2585968.585199999,kg -7c8d85c4-d6ee-3769-8ba3-e5c3f353d682,SESCO,II.1.1,Entre Rios,AR-E,annual,2022,naphtha combustion consumption by freight transport,35.27924399999999,TJ,CH4,3.0,kg/TJ,105.83773199999997,kg -9f0fe9b3-6abb-302a-ae94-cb1ba44dc016,SESCO,II.1.1,Entre Rios,AR-E,annual,2022,naphtha combustion consumption by freight transport,35.27924399999999,TJ,N2O,0.6,kg/TJ,21.167546399999996,kg -b0216afc-fad3-32aa-9f84-8cca374d9132,SESCO,II.1.1,Formosa,AR-P,annual,2022,naphtha combustion consumption by freight transport,3.6786904,TJ,CO2,73300.0,kg/TJ,269648.00632,kg -953b0675-a514-3f44-acc9-208d21b68c29,SESCO,II.1.1,Formosa,AR-P,annual,2022,naphtha combustion consumption by freight transport,3.6786904,TJ,CH4,3.0,kg/TJ,11.036071199999999,kg -02987a31-812e-34cf-b4a0-2d8cdea958fc,SESCO,II.1.1,Formosa,AR-P,annual,2022,naphtha combustion consumption by freight transport,3.6786904,TJ,N2O,0.6,kg/TJ,2.20721424,kg -b4ab27f4-2908-36ca-9cce-ae0a956e9c4c,SESCO,II.1.1,Jujuy,AR-Y,annual,2022,naphtha combustion consumption by freight transport,4.7642055999999995,TJ,CO2,73300.0,kg/TJ,349216.27047999995,kg -d4cf704c-a578-3a9d-9dd7-261c92d2aed8,SESCO,II.1.1,Jujuy,AR-Y,annual,2022,naphtha combustion consumption by freight transport,4.7642055999999995,TJ,CH4,3.0,kg/TJ,14.292616799999998,kg -2795e491-a94f-355a-bd16-1c86303ee076,SESCO,II.1.1,Jujuy,AR-Y,annual,2022,naphtha combustion consumption by freight transport,4.7642055999999995,TJ,N2O,0.6,kg/TJ,2.8585233599999995,kg -eaee5c7e-6889-3c94-b59f-8dedc9328fc2,SESCO,II.1.1,La Pampa,AR-L,annual,2022,naphtha combustion consumption by freight transport,13.418173999999999,TJ,CO2,73300.0,kg/TJ,983552.1541999999,kg -dcf5716b-a911-33ca-9670-84e0d0bb713e,SESCO,II.1.1,La Pampa,AR-L,annual,2022,naphtha combustion consumption by freight transport,13.418173999999999,TJ,CH4,3.0,kg/TJ,40.254521999999994,kg -924ba423-ec62-38fe-8a34-fc560eb0e269,SESCO,II.1.1,La Pampa,AR-L,annual,2022,naphtha combustion consumption by freight transport,13.418173999999999,TJ,N2O,0.6,kg/TJ,8.050904399999999,kg -1de89e8c-6d45-30f5-b86e-24de754d51e4,SESCO,II.1.1,La Rioja,AR-F,annual,2022,naphtha combustion consumption by freight transport,6.935236,TJ,CO2,73300.0,kg/TJ,508352.7988,kg -d2870812-ac7f-38e9-a5e4-9e0f206c28e9,SESCO,II.1.1,La Rioja,AR-F,annual,2022,naphtha combustion consumption by freight transport,6.935236,TJ,CH4,3.0,kg/TJ,20.805708,kg -fef112db-b27c-3664-a67f-be99c16e04a0,SESCO,II.1.1,La Rioja,AR-F,annual,2022,naphtha combustion consumption by freight transport,6.935236,TJ,N2O,0.6,kg/TJ,4.1611416,kg -b962aa4e-9ce4-3b23-8094-14f1ab8a21fe,SESCO,II.1.1,Mendoza,AR-M,annual,2022,naphtha combustion consumption by freight transport,68.146232,TJ,CO2,73300.0,kg/TJ,4995118.8056,kg -1dd1a7cf-b3bb-3ca3-8fd2-2c08d0de0d47,SESCO,II.1.1,Mendoza,AR-M,annual,2022,naphtha combustion consumption by freight transport,68.146232,TJ,CH4,3.0,kg/TJ,204.438696,kg -3f46da7f-c18f-3082-9b0d-156bad9fdcf8,SESCO,II.1.1,Mendoza,AR-M,annual,2022,naphtha combustion consumption by freight transport,68.146232,TJ,N2O,0.6,kg/TJ,40.8877392,kg -d922f58e-4b8d-3438-82cd-99ef17d967de,SESCO,II.1.1,Misiones,AR-N,annual,2022,naphtha combustion consumption by freight transport,17.0968644,TJ,CO2,73300.0,kg/TJ,1253200.1605200002,kg -d750eeb7-3294-3120-abb0-6e8089e10405,SESCO,II.1.1,Misiones,AR-N,annual,2022,naphtha combustion consumption by freight transport,17.0968644,TJ,CH4,3.0,kg/TJ,51.2905932,kg -4d3f1205-0a72-3d98-9c06-eeaf49388191,SESCO,II.1.1,Misiones,AR-N,annual,2022,naphtha combustion consumption by freight transport,17.0968644,TJ,N2O,0.6,kg/TJ,10.258118640000001,kg -9654378d-495c-3d98-a563-a51c4fa552e0,SESCO,II.1.1,Neuquén,AR-Q,annual,2022,naphtha combustion consumption by freight transport,42.0335608,TJ,CO2,73300.0,kg/TJ,3081060.00664,kg -5787629f-7238-3480-aaf6-77b9e3857393,SESCO,II.1.1,Neuquén,AR-Q,annual,2022,naphtha combustion consumption by freight transport,42.0335608,TJ,CH4,3.0,kg/TJ,126.10068239999998,kg -10608793-ce5b-38ed-8949-18c751d16c3b,SESCO,II.1.1,Neuquén,AR-Q,annual,2022,naphtha combustion consumption by freight transport,42.0335608,TJ,N2O,0.6,kg/TJ,25.220136479999997,kg -7762573b-24cc-3929-a54e-953a839ab38c,SESCO,II.1.1,Rio Negro,AR-R,annual,2022,naphtha combustion consumption by freight transport,38.143798,TJ,CO2,73300.0,kg/TJ,2795940.3934,kg -fd80ad8e-a69b-3471-9e1f-6f7405a936de,SESCO,II.1.1,Rio Negro,AR-R,annual,2022,naphtha combustion consumption by freight transport,38.143798,TJ,CH4,3.0,kg/TJ,114.43139399999998,kg -f5dc3715-d32a-3dc7-a5d1-453a5ea33c95,SESCO,II.1.1,Rio Negro,AR-R,annual,2022,naphtha combustion consumption by freight transport,38.143798,TJ,N2O,0.6,kg/TJ,22.886278799999996,kg -78a0fb3a-af77-3048-b8ca-88af6fa13c96,SESCO,II.1.1,Salta,AR-A,annual,2022,naphtha combustion consumption by freight transport,22.675206399999997,TJ,CO2,73300.0,kg/TJ,1662092.6291199997,kg -3eed95e9-8cea-357e-a1fe-74ba2375388c,SESCO,II.1.1,Salta,AR-A,annual,2022,naphtha combustion consumption by freight transport,22.675206399999997,TJ,CH4,3.0,kg/TJ,68.0256192,kg -77e47ac4-1515-30cf-b0f3-481e86029fb6,SESCO,II.1.1,Salta,AR-A,annual,2022,naphtha combustion consumption by freight transport,22.675206399999997,TJ,N2O,0.6,kg/TJ,13.605123839999997,kg -2226736a-48d6-31f2-ab0c-37c6d8edebf0,SESCO,II.1.1,San Juan,AR-J,annual,2022,naphtha combustion consumption by freight transport,8.8348876,TJ,CO2,73300.0,kg/TJ,647597.26108,kg -0b574552-30cf-3c11-89f1-5aa01a585eb9,SESCO,II.1.1,San Juan,AR-J,annual,2022,naphtha combustion consumption by freight transport,8.8348876,TJ,CH4,3.0,kg/TJ,26.5046628,kg -27cd3fb1-810b-3512-a5c6-c10e4c8eb6c5,SESCO,II.1.1,San Juan,AR-J,annual,2022,naphtha combustion consumption by freight transport,8.8348876,TJ,N2O,0.6,kg/TJ,5.30093256,kg -52e2fa4b-ad95-3baa-b5c7-47981a5247ec,SESCO,II.1.1,San Luis,AR-D,annual,2022,naphtha combustion consumption by freight transport,9.468104799999999,TJ,CO2,73300.0,kg/TJ,694012.0818399999,kg -4b04dadc-59b1-37f3-a734-8c83e4795a09,SESCO,II.1.1,San Luis,AR-D,annual,2022,naphtha combustion consumption by freight transport,9.468104799999999,TJ,CH4,3.0,kg/TJ,28.404314399999997,kg -489d149d-915e-3b97-869e-89800fcdf723,SESCO,II.1.1,San Luis,AR-D,annual,2022,naphtha combustion consumption by freight transport,9.468104799999999,TJ,N2O,0.6,kg/TJ,5.680862879999999,kg -5b3f65f7-fc5e-3d21-8d22-652ab73b2fc5,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2022,naphtha combustion consumption by freight transport,6.422631599999999,TJ,CO2,73300.0,kg/TJ,470778.8962799999,kg -0bd92f12-da45-39b0-93f3-cc69cf3ef3ad,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2022,naphtha combustion consumption by freight transport,6.422631599999999,TJ,CH4,3.0,kg/TJ,19.267894799999997,kg -8ed8cf9f-742e-33ab-94d6-93c155e78db3,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2022,naphtha combustion consumption by freight transport,6.422631599999999,TJ,N2O,0.6,kg/TJ,3.853578959999999,kg -135206b0-1882-335d-bd01-f07f306d224d,SESCO,II.1.1,Santa Fe,AR-S,annual,2022,naphtha combustion consumption by freight transport,110.05917999999998,TJ,CO2,73300.0,kg/TJ,8067337.893999998,kg -ea8d6596-22c8-310b-8eb1-a978798c8db6,SESCO,II.1.1,Santa Fe,AR-S,annual,2022,naphtha combustion consumption by freight transport,110.05917999999998,TJ,CH4,3.0,kg/TJ,330.17753999999996,kg -243fdb32-9b1c-3000-85bc-30c204f26de8,SESCO,II.1.1,Santa Fe,AR-S,annual,2022,naphtha combustion consumption by freight transport,110.05917999999998,TJ,N2O,0.6,kg/TJ,66.035508,kg -1d22e4be-3b2c-31a0-b899-d4a73ecfe367,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2022,naphtha combustion consumption by freight transport,6.0004868,TJ,CO2,73300.0,kg/TJ,439835.68244,kg -5f823e81-cecd-3d19-9340-afa597aeb1fa,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2022,naphtha combustion consumption by freight transport,6.0004868,TJ,CH4,3.0,kg/TJ,18.0014604,kg -688cb3eb-e803-3654-a6fa-d7dba2589f5f,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2022,naphtha combustion consumption by freight transport,6.0004868,TJ,N2O,0.6,kg/TJ,3.60029208,kg -962b2a3a-1714-3e63-abb0-a715d9b6ecd3,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2022,naphtha combustion consumption by freight transport,7.236767999999999,TJ,CO2,73300.0,kg/TJ,530455.0944,kg -787a67b4-18fb-3796-a97a-e6bc7ea4d92b,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2022,naphtha combustion consumption by freight transport,7.236767999999999,TJ,CH4,3.0,kg/TJ,21.710303999999997,kg -8e2712d7-a941-3ffe-a74e-495e1f66964d,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2022,naphtha combustion consumption by freight transport,7.236767999999999,TJ,N2O,0.6,kg/TJ,4.342060799999999,kg -f5afcdba-fbb2-3252-9136-46603aa45419,SESCO,II.1.1,Tucuman,AR-T,annual,2022,naphtha combustion consumption by freight transport,16.1922684,TJ,CO2,73300.0,kg/TJ,1186893.27372,kg -6f7605a6-b0fa-3567-a3aa-992342c6d499,SESCO,II.1.1,Tucuman,AR-T,annual,2022,naphtha combustion consumption by freight transport,16.1922684,TJ,CH4,3.0,kg/TJ,48.576805199999995,kg -48376be9-1954-3caa-bd1e-a372e9151779,SESCO,II.1.1,Tucuman,AR-T,annual,2022,naphtha combustion consumption by freight transport,16.1922684,TJ,N2O,0.6,kg/TJ,9.71536104,kg -89a5af34-4732-3846-bc22-2a60882ad741,SESCO,II.5.1,Buenos Aires,AR-B,annual,2023,naphtha combustion consumption by agriculture machines,33.4398988,TJ,CO2,73300.0,kg/TJ,2451144.5820400002,kg -1641b01b-8adb-3bc7-9890-a24c20198505,SESCO,II.5.1,Buenos Aires,AR-B,annual,2023,naphtha combustion consumption by agriculture machines,33.4398988,TJ,CH4,3.0,kg/TJ,100.3196964,kg -9b601e83-5f0c-3c68-83ff-4b68429dce33,SESCO,II.5.1,Buenos Aires,AR-B,annual,2023,naphtha combustion consumption by agriculture machines,33.4398988,TJ,N2O,0.6,kg/TJ,20.06393928,kg -5c67c103-af04-3588-9662-8615690a3669,SESCO,II.5.1,Córdoba,AR-X,annual,2023,naphtha combustion consumption by agriculture machines,13.538786799999999,TJ,CO2,73300.0,kg/TJ,992393.0724399999,kg -53a139d5-5868-3f19-9b35-e50eb814e57d,SESCO,II.5.1,Córdoba,AR-X,annual,2023,naphtha combustion consumption by agriculture machines,13.538786799999999,TJ,CH4,3.0,kg/TJ,40.6163604,kg -89779cba-420a-3add-a011-8c15656fbf0a,SESCO,II.5.1,Córdoba,AR-X,annual,2023,naphtha combustion consumption by agriculture machines,13.538786799999999,TJ,N2O,0.6,kg/TJ,8.12327208,kg -e9e5003b-2c42-3b46-9d08-ca0e1e74857e,SESCO,II.5.1,Tucuman,AR-T,annual,2023,naphtha combustion consumption by agriculture machines,7.3573808,TJ,CO2,73300.0,kg/TJ,539296.01264,kg -0b326cd7-d6fe-3f62-b9ea-ba59c8ca9eba,SESCO,II.5.1,Tucuman,AR-T,annual,2023,naphtha combustion consumption by agriculture machines,7.3573808,TJ,CH4,3.0,kg/TJ,22.072142399999997,kg -00acb6cf-4d60-3462-8eab-f781624cb593,SESCO,II.5.1,Tucuman,AR-T,annual,2023,naphtha combustion consumption by agriculture machines,7.3573808,TJ,N2O,0.6,kg/TJ,4.41442848,kg -02ffc203-d72f-3da0-b4a6-946448c21a50,SESCO,II.5.1,Buenos Aires,AR-B,annual,2023,naphtha combustion consumption by agriculture machines,4.3119076,TJ,CO2,73300.0,kg/TJ,316062.82707999996,kg -b9195f7b-5052-3412-bebd-9225d07212cf,SESCO,II.5.1,Buenos Aires,AR-B,annual,2023,naphtha combustion consumption by agriculture machines,4.3119076,TJ,CH4,3.0,kg/TJ,12.935722799999999,kg -627136b1-4e2a-359e-88d1-aaeb2c4ef866,SESCO,II.5.1,Buenos Aires,AR-B,annual,2023,naphtha combustion consumption by agriculture machines,4.3119076,TJ,N2O,0.6,kg/TJ,2.5871445599999996,kg -c167a884-bfce-3357-852f-f48022de4c67,SESCO,II.5.1,Córdoba,AR-X,annual,2023,naphtha combustion consumption by agriculture machines,1.4172003999999998,TJ,CO2,73300.0,kg/TJ,103880.78931999998,kg -a2aa25ff-969f-3e04-96b1-dd0b4d4c4208,SESCO,II.5.1,Córdoba,AR-X,annual,2023,naphtha combustion consumption by agriculture machines,1.4172003999999998,TJ,CH4,3.0,kg/TJ,4.2516012,kg -32665cf4-ce35-3bdc-b052-804902c271bc,SESCO,II.5.1,Córdoba,AR-X,annual,2023,naphtha combustion consumption by agriculture machines,1.4172003999999998,TJ,N2O,0.6,kg/TJ,0.8503202399999998,kg -69cac33e-df65-3cb1-87a7-5ef9b38b1d4a,SESCO,II.5.1,Tucuman,AR-T,annual,2023,naphtha combustion consumption by agriculture machines,0.1809192,TJ,CO2,73300.0,kg/TJ,13261.37736,kg -89a45a66-c43f-3c29-8b92-9e04c2e5e9c5,SESCO,II.5.1,Tucuman,AR-T,annual,2023,naphtha combustion consumption by agriculture machines,0.1809192,TJ,CH4,3.0,kg/TJ,0.5427576000000001,kg -0a90643a-fa7c-36c8-acf5-0488d60bbfee,SESCO,II.5.1,Tucuman,AR-T,annual,2023,naphtha combustion consumption by agriculture machines,0.1809192,TJ,N2O,0.6,kg/TJ,0.10855152,kg -d5ee69f5-89dc-3760-a02c-5ed0b863f549,SESCO,II.1.1,Buenos Aires,AR-B,annual,2023,naphtha combustion consumption by to the public,1415.4816675999998,TJ,CO2,73300.0,kg/TJ,103754806.23507999,kg -5d10af09-7b9a-32ab-9ad3-e3ec850543e5,SESCO,II.1.1,Buenos Aires,AR-B,annual,2023,naphtha combustion consumption by to the public,1415.4816675999998,TJ,CH4,3.0,kg/TJ,4246.445002799999,kg -9a7b1889-78a1-3db4-a7f5-25325852192e,SESCO,II.1.1,Buenos Aires,AR-B,annual,2023,naphtha combustion consumption by to the public,1415.4816675999998,TJ,N2O,0.6,kg/TJ,849.2890005599999,kg -b6c3f1e3-c2e3-336c-a091-05893995c0b2,SESCO,II.1.1,Capital Federal,AR-C,annual,2023,naphtha combustion consumption by to the public,80.62965679999999,TJ,CO2,73300.0,kg/TJ,5910153.843439999,kg -9be4d9d4-5a6d-3ba4-8a7d-98d0e5fd34f8,SESCO,II.1.1,Capital Federal,AR-C,annual,2023,naphtha combustion consumption by to the public,80.62965679999999,TJ,CH4,3.0,kg/TJ,241.88897039999998,kg -2b94871c-601f-3cbf-b6fe-dc66b667c8c6,SESCO,II.1.1,Capital Federal,AR-C,annual,2023,naphtha combustion consumption by to the public,80.62965679999999,TJ,N2O,0.6,kg/TJ,48.377794079999994,kg -75ea6268-e177-3054-a41a-bef6b4ffd012,SESCO,II.1.1,Catamarca,AR-K,annual,2023,naphtha combustion consumption by to the public,30.6959576,TJ,CO2,73300.0,kg/TJ,2250013.69208,kg -bc5ac8ed-2fd2-3e93-8d41-4453e0a91654,SESCO,II.1.1,Catamarca,AR-K,annual,2023,naphtha combustion consumption by to the public,30.6959576,TJ,CH4,3.0,kg/TJ,92.0878728,kg -c4fbf1d0-76a1-33cb-9c14-06125cdd3f36,SESCO,II.1.1,Catamarca,AR-K,annual,2023,naphtha combustion consumption by to the public,30.6959576,TJ,N2O,0.6,kg/TJ,18.41757456,kg -0d4fd181-5afc-396a-80fe-076edb8de234,SESCO,II.1.1,Corrientes,AR-W,annual,2023,naphtha combustion consumption by to the public,0.6332171999999999,TJ,CO2,73300.0,kg/TJ,46414.820759999995,kg -06f24c45-86d4-3112-a9a9-49b0596ced2b,SESCO,II.1.1,Corrientes,AR-W,annual,2023,naphtha combustion consumption by to the public,0.6332171999999999,TJ,CH4,3.0,kg/TJ,1.8996515999999999,kg -6668270a-ca64-35b5-8d2f-b68b0681759f,SESCO,II.1.1,Corrientes,AR-W,annual,2023,naphtha combustion consumption by to the public,0.6332171999999999,TJ,N2O,0.6,kg/TJ,0.37993031999999993,kg -82bad848-366e-3d0c-8639-ca1da1e0c217,SESCO,II.1.1,Córdoba,AR-X,annual,2023,naphtha combustion consumption by to the public,511.91087639999995,TJ,CO2,73300.0,kg/TJ,37523067.24011999,kg -15e00eed-4a36-38a8-bf29-c35edc2bd9f0,SESCO,II.1.1,Córdoba,AR-X,annual,2023,naphtha combustion consumption by to the public,511.91087639999995,TJ,CH4,3.0,kg/TJ,1535.7326291999998,kg -5aa33224-a57f-36c7-b920-93649da75839,SESCO,II.1.1,Córdoba,AR-X,annual,2023,naphtha combustion consumption by to the public,511.91087639999995,TJ,N2O,0.6,kg/TJ,307.14652584,kg -3d0ade95-d700-3cf1-99db-ae3c2434879a,SESCO,II.1.1,Entre Rios,AR-E,annual,2023,naphtha combustion consumption by to the public,149.7709444,TJ,CO2,73300.0,kg/TJ,10978210.22452,kg -6c5df7fb-da43-36bc-9ca4-1c53b4358e5e,SESCO,II.1.1,Entre Rios,AR-E,annual,2023,naphtha combustion consumption by to the public,149.7709444,TJ,CH4,3.0,kg/TJ,449.3128332,kg -06708351-e0d5-3cfb-876d-1e8bebd9c16c,SESCO,II.1.1,Entre Rios,AR-E,annual,2023,naphtha combustion consumption by to the public,149.7709444,TJ,N2O,0.6,kg/TJ,89.86256664,kg -558027c3-cb85-3a6b-9820-0e36f9bce0c4,SESCO,II.1.1,La Rioja,AR-F,annual,2023,naphtha combustion consumption by to the public,1.3568939999999998,TJ,CO2,73300.0,kg/TJ,99460.33019999998,kg -309b50bd-5c8c-3dcc-ab7c-7a6641856206,SESCO,II.1.1,La Rioja,AR-F,annual,2023,naphtha combustion consumption by to the public,1.3568939999999998,TJ,CH4,3.0,kg/TJ,4.070682,kg -8b0147c4-7c88-3e08-8848-4f9e85666e04,SESCO,II.1.1,La Rioja,AR-F,annual,2023,naphtha combustion consumption by to the public,1.3568939999999998,TJ,N2O,0.6,kg/TJ,0.8141363999999999,kg -24689555-4a3c-3808-afee-55feb616c964,SESCO,II.1.1,Mendoza,AR-M,annual,2023,naphtha combustion consumption by to the public,374.86458239999996,TJ,CO2,73300.0,kg/TJ,27477573.889919996,kg -ae681646-38f5-300c-9263-28411a85f434,SESCO,II.1.1,Mendoza,AR-M,annual,2023,naphtha combustion consumption by to the public,374.86458239999996,TJ,CH4,3.0,kg/TJ,1124.5937471999998,kg -a7973388-a2b5-3b75-9461-e8d8a17087fc,SESCO,II.1.1,Mendoza,AR-M,annual,2023,naphtha combustion consumption by to the public,374.86458239999996,TJ,N2O,0.6,kg/TJ,224.91874943999997,kg -47b3e9b1-83ff-3aff-bd54-839e78e8fc05,SESCO,II.1.1,San Luis,AR-D,annual,2023,naphtha combustion consumption by to the public,61.18084279999999,TJ,CO2,73300.0,kg/TJ,4484555.77724,kg -2bceb590-7a03-3632-abdb-f31adb0ec1e1,SESCO,II.1.1,San Luis,AR-D,annual,2023,naphtha combustion consumption by to the public,61.18084279999999,TJ,CH4,3.0,kg/TJ,183.54252839999998,kg -57f8ed7b-92e4-37bb-84f8-9dc1cbb379e1,SESCO,II.1.1,San Luis,AR-D,annual,2023,naphtha combustion consumption by to the public,61.18084279999999,TJ,N2O,0.6,kg/TJ,36.708505679999995,kg -6f4a3ae6-8304-304e-babe-88511043782a,SESCO,II.1.1,Santa Fe,AR-S,annual,2023,naphtha combustion consumption by to the public,439.33212399999996,TJ,CO2,73300.0,kg/TJ,32203044.6892,kg -1e3fc1b5-5982-31cb-971b-a4b724dfd50d,SESCO,II.1.1,Santa Fe,AR-S,annual,2023,naphtha combustion consumption by to the public,439.33212399999996,TJ,CH4,3.0,kg/TJ,1317.9963719999998,kg -e03ad541-d6ec-39a9-82fa-fdbf9d8d7244,SESCO,II.1.1,Santa Fe,AR-S,annual,2023,naphtha combustion consumption by to the public,439.33212399999996,TJ,N2O,0.6,kg/TJ,263.59927439999996,kg -ec95cefb-7c4f-3ad1-9036-191934c6a687,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2023,naphtha combustion consumption by to the public,56.4467904,TJ,CO2,73300.0,kg/TJ,4137549.7363199997,kg -91a37247-eda4-3a83-a721-26388c057415,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2023,naphtha combustion consumption by to the public,56.4467904,TJ,CH4,3.0,kg/TJ,169.3403712,kg -64031593-e18d-3ea9-97e2-3ed13a182098,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2023,naphtha combustion consumption by to the public,56.4467904,TJ,N2O,0.6,kg/TJ,33.86807424,kg -0f7bdba5-eb04-3a4f-9196-bdb937c0e63e,SESCO,II.1.1,Tucuman,AR-T,annual,2023,naphtha combustion consumption by to the public,20.564482399999996,TJ,CO2,73300.0,kg/TJ,1507376.5599199997,kg -b48cda2e-750a-31d1-a211-40fb9ce63e34,SESCO,II.1.1,Tucuman,AR-T,annual,2023,naphtha combustion consumption by to the public,20.564482399999996,TJ,CH4,3.0,kg/TJ,61.69344719999999,kg -c0d0c47a-cb84-3e1e-bd8d-7db1ddbffb9c,SESCO,II.1.1,Tucuman,AR-T,annual,2023,naphtha combustion consumption by to the public,20.564482399999996,TJ,N2O,0.6,kg/TJ,12.338689439999998,kg -1efc6f2e-0edb-32e8-a8dc-caca593ca05c,SESCO,II.1.1,Buenos Aires,AR-B,annual,2023,naphtha combustion consumption by to the public,106.1091108,TJ,CO2,73300.0,kg/TJ,7777797.82164,kg -dcf924af-a855-3321-a02e-4803216b2e3f,SESCO,II.1.1,Buenos Aires,AR-B,annual,2023,naphtha combustion consumption by to the public,106.1091108,TJ,CH4,3.0,kg/TJ,318.3273324,kg -316b4352-9151-39d8-a53d-ed5fc71fcd4d,SESCO,II.1.1,Buenos Aires,AR-B,annual,2023,naphtha combustion consumption by to the public,106.1091108,TJ,N2O,0.6,kg/TJ,63.66546647999999,kg -21e05058-38fa-3669-a6e5-22fc214a27a0,SESCO,II.1.1,Capital Federal,AR-C,annual,2023,naphtha combustion consumption by to the public,10.2219348,TJ,CO2,73300.0,kg/TJ,749267.82084,kg -5562a772-6696-34c1-9615-d2d9abbff925,SESCO,II.1.1,Capital Federal,AR-C,annual,2023,naphtha combustion consumption by to the public,10.2219348,TJ,CH4,3.0,kg/TJ,30.6658044,kg -ec3b5877-4d96-35ac-bd90-df19bc63b516,SESCO,II.1.1,Capital Federal,AR-C,annual,2023,naphtha combustion consumption by to the public,10.2219348,TJ,N2O,0.6,kg/TJ,6.133160879999999,kg -0cfb9503-2e3c-3b57-8c56-4395eb2907a6,SESCO,II.1.1,Catamarca,AR-K,annual,2023,naphtha combustion consumption by to the public,3.7088435999999994,TJ,CO2,73300.0,kg/TJ,271858.23587999993,kg -c9a3fc79-59a6-3abb-9f17-e32fdc59efb1,SESCO,II.1.1,Catamarca,AR-K,annual,2023,naphtha combustion consumption by to the public,3.7088435999999994,TJ,CH4,3.0,kg/TJ,11.126530799999998,kg -db14139a-ee97-3895-bd8c-87395cff377c,SESCO,II.1.1,Catamarca,AR-K,annual,2023,naphtha combustion consumption by to the public,3.7088435999999994,TJ,N2O,0.6,kg/TJ,2.2253061599999997,kg -19eb519a-1550-3bf0-a67c-323564c28b84,SESCO,II.1.1,Córdoba,AR-X,annual,2023,naphtha combustion consumption by to the public,54.7883644,TJ,CO2,73300.0,kg/TJ,4015987.11052,kg -2d2f50c2-ec91-3b4d-b2bd-93c316f53f6d,SESCO,II.1.1,Córdoba,AR-X,annual,2023,naphtha combustion consumption by to the public,54.7883644,TJ,CH4,3.0,kg/TJ,164.3650932,kg -c3844674-70e1-3ccc-9cf8-a4fb76df61c4,SESCO,II.1.1,Córdoba,AR-X,annual,2023,naphtha combustion consumption by to the public,54.7883644,TJ,N2O,0.6,kg/TJ,32.87301864,kg -a25eb0b5-e6dd-3284-9fc7-e0e86c4c7e18,SESCO,II.1.1,Entre Rios,AR-E,annual,2023,naphtha combustion consumption by to the public,19.5694268,TJ,CO2,73300.0,kg/TJ,1434438.9844399998,kg -26b1e8b2-1b40-34b0-a36d-b7eceb120edf,SESCO,II.1.1,Entre Rios,AR-E,annual,2023,naphtha combustion consumption by to the public,19.5694268,TJ,CH4,3.0,kg/TJ,58.70828039999999,kg -f6fdc8f9-9559-3a79-ba32-51e732530a57,SESCO,II.1.1,Entre Rios,AR-E,annual,2023,naphtha combustion consumption by to the public,19.5694268,TJ,N2O,0.6,kg/TJ,11.741656079999998,kg -5b372581-6767-3584-a841-db53d08437b1,SESCO,II.1.1,La Rioja,AR-F,annual,2023,naphtha combustion consumption by to the public,0.5126044,TJ,CO2,73300.0,kg/TJ,37573.902519999996,kg -2356c859-27d5-31bf-8c40-c264879ea943,SESCO,II.1.1,La Rioja,AR-F,annual,2023,naphtha combustion consumption by to the public,0.5126044,TJ,CH4,3.0,kg/TJ,1.5378132,kg -ca727331-8132-3348-9682-8147275a4e87,SESCO,II.1.1,La Rioja,AR-F,annual,2023,naphtha combustion consumption by to the public,0.5126044,TJ,N2O,0.6,kg/TJ,0.30756263999999994,kg -fcd3007b-ec5a-3c97-aa44-f6a4e3d5d20f,SESCO,II.1.1,Mendoza,AR-M,annual,2023,naphtha combustion consumption by to the public,53.7330024,TJ,CO2,73300.0,kg/TJ,3938629.0759199997,kg -15b2573b-6e9d-3439-8a84-7375a192e422,SESCO,II.1.1,Mendoza,AR-M,annual,2023,naphtha combustion consumption by to the public,53.7330024,TJ,CH4,3.0,kg/TJ,161.19900719999998,kg -c5caa873-59f4-3af5-8864-98164e31b0d6,SESCO,II.1.1,Mendoza,AR-M,annual,2023,naphtha combustion consumption by to the public,53.7330024,TJ,N2O,0.6,kg/TJ,32.239801439999994,kg -2fd3ed02-b349-3d06-9d54-c70c65c40d15,SESCO,II.1.1,San Luis,AR-D,annual,2023,naphtha combustion consumption by to the public,2.5931752,TJ,CO2,73300.0,kg/TJ,190079.74216000002,kg -9667a49a-e510-39e8-962a-c8cf5921b237,SESCO,II.1.1,San Luis,AR-D,annual,2023,naphtha combustion consumption by to the public,2.5931752,TJ,CH4,3.0,kg/TJ,7.7795256,kg -65b63a54-4157-3909-9477-3d42abc1cdab,SESCO,II.1.1,San Luis,AR-D,annual,2023,naphtha combustion consumption by to the public,2.5931752,TJ,N2O,0.6,kg/TJ,1.55590512,kg -0d58a651-1b24-3747-9c54-c19cf1cb080a,SESCO,II.1.1,Santa Fe,AR-S,annual,2023,naphtha combustion consumption by to the public,60.87931079999999,TJ,CO2,73300.0,kg/TJ,4462453.481639999,kg -38efd9af-e1b7-3656-ab90-f524bb16ef21,SESCO,II.1.1,Santa Fe,AR-S,annual,2023,naphtha combustion consumption by to the public,60.87931079999999,TJ,CH4,3.0,kg/TJ,182.63793239999998,kg -cb3ff7ea-2003-3385-8688-e0be14a2ed8c,SESCO,II.1.1,Santa Fe,AR-S,annual,2023,naphtha combustion consumption by to the public,60.87931079999999,TJ,N2O,0.6,kg/TJ,36.52758648,kg -53990c96-ad63-359f-9efe-28de635b1876,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2023,naphtha combustion consumption by to the public,4.824512,TJ,CO2,73300.0,kg/TJ,353636.7296,kg -66d6a24f-486b-3984-851c-ba61fea7ad03,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2023,naphtha combustion consumption by to the public,4.824512,TJ,CH4,3.0,kg/TJ,14.473536000000001,kg -b084ae31-6e75-3af0-8a04-1cb283311c49,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2023,naphtha combustion consumption by to the public,4.824512,TJ,N2O,0.6,kg/TJ,2.8947072,kg -6ca29d30-4f97-30b5-b3f0-4b18914c4f68,SESCO,II.1.1,Tucuman,AR-T,annual,2023,naphtha combustion consumption by to the public,0.5126044,TJ,CO2,73300.0,kg/TJ,37573.902519999996,kg -9fa63828-1d6c-3060-a038-401b507bc466,SESCO,II.1.1,Tucuman,AR-T,annual,2023,naphtha combustion consumption by to the public,0.5126044,TJ,CH4,3.0,kg/TJ,1.5378132,kg -fbc28079-63b1-31cb-adbc-f55d494e9af5,SESCO,II.1.1,Tucuman,AR-T,annual,2023,naphtha combustion consumption by to the public,0.5126044,TJ,N2O,0.6,kg/TJ,0.30756263999999994,kg -68e1172e-d3b0-3a21-8a87-a9fe5ce84ebf,SESCO,II.5.1,Buenos Aires,AR-B,annual,2023,naphtha combustion consumption by agriculture machines,6.121099599999999,TJ,CO2,73300.0,kg/TJ,448676.6006799999,kg -e7deddb6-d6e1-3080-9db0-eb557b307ca3,SESCO,II.5.1,Buenos Aires,AR-B,annual,2023,naphtha combustion consumption by agriculture machines,6.121099599999999,TJ,CH4,3.0,kg/TJ,18.363298799999995,kg -402c55d5-75ee-3188-abc1-cd89ac96be8c,SESCO,II.5.1,Buenos Aires,AR-B,annual,2023,naphtha combustion consumption by agriculture machines,6.121099599999999,TJ,N2O,0.6,kg/TJ,3.6726597599999993,kg -50af359b-e46d-34d3-9365-b323eafd7782,SESCO,II.5.1,Capital Federal,AR-C,annual,2023,naphtha combustion consumption by agriculture machines,2.3519495999999998,TJ,CO2,73300.0,kg/TJ,172397.90568,kg -3eb9da88-9736-3d81-b68f-2cf25d7ea845,SESCO,II.5.1,Capital Federal,AR-C,annual,2023,naphtha combustion consumption by agriculture machines,2.3519495999999998,TJ,CH4,3.0,kg/TJ,7.0558488,kg -131da6ba-d8f4-3a0f-9d2b-dd47aa454b88,SESCO,II.5.1,Capital Federal,AR-C,annual,2023,naphtha combustion consumption by agriculture machines,2.3519495999999998,TJ,N2O,0.6,kg/TJ,1.4111697599999997,kg -4df57aec-4a6e-3816-b5cf-49bb5eb0c197,SESCO,II.5.1,Córdoba,AR-X,annual,2023,naphtha combustion consumption by agriculture machines,40.314828399999996,TJ,CO2,73300.0,kg/TJ,2955076.9217199995,kg -b7c67c57-3c81-3f9f-bfce-1cee2662dd0c,SESCO,II.5.1,Córdoba,AR-X,annual,2023,naphtha combustion consumption by agriculture machines,40.314828399999996,TJ,CH4,3.0,kg/TJ,120.94448519999999,kg -63b0f445-c2fb-361a-a328-d4032cdf787d,SESCO,II.5.1,Córdoba,AR-X,annual,2023,naphtha combustion consumption by agriculture machines,40.314828399999996,TJ,N2O,0.6,kg/TJ,24.188897039999997,kg -5173c5d1-5f55-3a04-a2f4-49a7c26aedfc,SESCO,II.5.1,Santa Fe,AR-S,annual,2023,naphtha combustion consumption by agriculture machines,20.9263208,TJ,CO2,73300.0,kg/TJ,1533899.31464,kg -bbffdc4c-6a32-3669-b744-cf019f2f20ff,SESCO,II.5.1,Santa Fe,AR-S,annual,2023,naphtha combustion consumption by agriculture machines,20.9263208,TJ,CH4,3.0,kg/TJ,62.7789624,kg -d1dc0314-af63-3278-a791-ef2277fc670d,SESCO,II.5.1,Santa Fe,AR-S,annual,2023,naphtha combustion consumption by agriculture machines,20.9263208,TJ,N2O,0.6,kg/TJ,12.55579248,kg -90ef2425-6b5d-31c2-8011-d55877df0f64,SESCO,II.5.1,Buenos Aires,AR-B,annual,2023,naphtha combustion consumption by agriculture machines,0.8141364,TJ,CO2,73300.0,kg/TJ,59676.19812,kg -bf0068b0-530e-3b13-b3aa-8fbc537f07b5,SESCO,II.5.1,Buenos Aires,AR-B,annual,2023,naphtha combustion consumption by agriculture machines,0.8141364,TJ,CH4,3.0,kg/TJ,2.4424092,kg -4b587d32-8f4c-38a8-b3d9-8bdf3a74f3ed,SESCO,II.5.1,Buenos Aires,AR-B,annual,2023,naphtha combustion consumption by agriculture machines,0.8141364,TJ,N2O,0.6,kg/TJ,0.48848183999999994,kg -71ec5746-15bc-326a-8200-b13e1f31af6a,SESCO,II.5.1,Córdoba,AR-X,annual,2023,naphtha combustion consumption by agriculture machines,2.110724,TJ,CO2,73300.0,kg/TJ,154716.0692,kg -047b8cfa-a2db-3147-a4ac-2a32feaa4cd7,SESCO,II.5.1,Córdoba,AR-X,annual,2023,naphtha combustion consumption by agriculture machines,2.110724,TJ,CH4,3.0,kg/TJ,6.332172,kg -01898603-064c-3c5c-b5a7-0688017d2ae9,SESCO,II.5.1,Córdoba,AR-X,annual,2023,naphtha combustion consumption by agriculture machines,2.110724,TJ,N2O,0.6,kg/TJ,1.2664343999999998,kg -705759ea-44e4-3692-80a7-9807ce6e9346,SESCO,II.5.1,Santa Fe,AR-S,annual,2023,naphtha combustion consumption by agriculture machines,1.2362811999999999,TJ,CO2,73300.0,kg/TJ,90619.41195999998,kg -fd92edff-2b9d-3c29-a5f4-0acec4290f82,SESCO,II.5.1,Santa Fe,AR-S,annual,2023,naphtha combustion consumption by agriculture machines,1.2362811999999999,TJ,CH4,3.0,kg/TJ,3.7088436,kg -50852136-6ba6-303c-a461-d82fc8d51c97,SESCO,II.5.1,Santa Fe,AR-S,annual,2023,naphtha combustion consumption by agriculture machines,1.2362811999999999,TJ,N2O,0.6,kg/TJ,0.7417687199999999,kg -6f00389f-ed46-31fe-a08f-544157acf377,SESCO,II.1.1,Buenos Aires,AR-B,annual,2023,naphtha combustion consumption by to the public,914.6973219999999,TJ,CO2,73300.0,kg/TJ,67047313.70259999,kg -e0865742-00a3-30ca-9cad-9504ff525d0c,SESCO,II.1.1,Buenos Aires,AR-B,annual,2023,naphtha combustion consumption by to the public,914.6973219999999,TJ,CH4,3.0,kg/TJ,2744.0919659999995,kg -aa666e0f-9760-33b9-85ad-4f3129732d09,SESCO,II.1.1,Buenos Aires,AR-B,annual,2023,naphtha combustion consumption by to the public,914.6973219999999,TJ,N2O,0.6,kg/TJ,548.8183932,kg -58564afe-a84e-370f-bd44-a4eefc2f3b26,SESCO,II.1.1,Capital Federal,AR-C,annual,2023,naphtha combustion consumption by to the public,104.51099119999999,TJ,CO2,73300.0,kg/TJ,7660655.654959999,kg -7e10cf2c-3ef5-39cf-915f-40bde3fe547b,SESCO,II.1.1,Capital Federal,AR-C,annual,2023,naphtha combustion consumption by to the public,104.51099119999999,TJ,CH4,3.0,kg/TJ,313.5329736,kg -c91bb660-9eab-3ad3-80af-80a763956ace,SESCO,II.1.1,Capital Federal,AR-C,annual,2023,naphtha combustion consumption by to the public,104.51099119999999,TJ,N2O,0.6,kg/TJ,62.70659471999999,kg -b4afe5e8-8b2a-3957-bbad-5aaaa5092bdc,SESCO,II.1.1,Catamarca,AR-K,annual,2023,naphtha combustion consumption by to the public,76.8605068,TJ,CO2,73300.0,kg/TJ,5633875.14844,kg -a5bf22ec-baaa-36c6-a57a-6c020e681358,SESCO,II.1.1,Catamarca,AR-K,annual,2023,naphtha combustion consumption by to the public,76.8605068,TJ,CH4,3.0,kg/TJ,230.5815204,kg -dae096f6-276f-32fc-a059-978c67a77db6,SESCO,II.1.1,Catamarca,AR-K,annual,2023,naphtha combustion consumption by to the public,76.8605068,TJ,N2O,0.6,kg/TJ,46.11630408,kg -4bcd0357-755b-3d3f-9566-eed6bec83cf3,SESCO,II.1.1,Chaco,AR-H,annual,2023,naphtha combustion consumption by to the public,265.9210708,TJ,CO2,73300.0,kg/TJ,19492014.48964,kg -6808a869-db19-3374-8e0e-0df556ff1321,SESCO,II.1.1,Chaco,AR-H,annual,2023,naphtha combustion consumption by to the public,265.9210708,TJ,CH4,3.0,kg/TJ,797.7632123999999,kg -c2d1f281-1ebf-3bf1-b7d4-731760938d16,SESCO,II.1.1,Chaco,AR-H,annual,2023,naphtha combustion consumption by to the public,265.9210708,TJ,N2O,0.6,kg/TJ,159.55264248,kg -59fc7234-d50f-38aa-aa4b-6da728cbd0e0,SESCO,II.1.1,Corrientes,AR-W,annual,2023,naphtha combustion consumption by to the public,247.85930399999998,TJ,CO2,73300.0,kg/TJ,18168086.9832,kg -cda4b9c6-3d94-39a2-bb5f-e915f6421a45,SESCO,II.1.1,Corrientes,AR-W,annual,2023,naphtha combustion consumption by to the public,247.85930399999998,TJ,CH4,3.0,kg/TJ,743.577912,kg -f6510163-3d82-3215-9a82-bfe65d904288,SESCO,II.1.1,Corrientes,AR-W,annual,2023,naphtha combustion consumption by to the public,247.85930399999998,TJ,N2O,0.6,kg/TJ,148.7155824,kg -612061fe-bc01-362e-9d14-f62200798c11,SESCO,II.1.1,Córdoba,AR-X,annual,2023,naphtha combustion consumption by to the public,397.84132079999995,TJ,CO2,73300.0,kg/TJ,29161768.814639997,kg -bce56012-f03f-3cfc-aa16-2023157ce684,SESCO,II.1.1,Córdoba,AR-X,annual,2023,naphtha combustion consumption by to the public,397.84132079999995,TJ,CH4,3.0,kg/TJ,1193.5239623999998,kg -36af5010-c105-3a4d-88d1-982150fc198d,SESCO,II.1.1,Córdoba,AR-X,annual,2023,naphtha combustion consumption by to the public,397.84132079999995,TJ,N2O,0.6,kg/TJ,238.70479247999995,kg -5f6e7670-a96f-3f58-9aa0-746afa17ee4f,SESCO,II.1.1,Entre Rios,AR-E,annual,2023,naphtha combustion consumption by to the public,264.2626448,TJ,CO2,73300.0,kg/TJ,19370451.86384,kg -e9c2d188-858a-3ecb-a515-46e7a0a9d684,SESCO,II.1.1,Entre Rios,AR-E,annual,2023,naphtha combustion consumption by to the public,264.2626448,TJ,CH4,3.0,kg/TJ,792.7879343999999,kg -735c83ac-d976-365a-9b31-e8d7ad45755f,SESCO,II.1.1,Entre Rios,AR-E,annual,2023,naphtha combustion consumption by to the public,264.2626448,TJ,N2O,0.6,kg/TJ,158.55758687999997,kg -9c81752e-a481-3ab1-b81f-91bf8e9c55c6,SESCO,II.1.1,Formosa,AR-P,annual,2023,naphtha combustion consumption by to the public,33.982656399999996,TJ,CO2,73300.0,kg/TJ,2490928.7141199997,kg -2a58cc93-0f06-31b9-ae28-37bdd3a03151,SESCO,II.1.1,Formosa,AR-P,annual,2023,naphtha combustion consumption by to the public,33.982656399999996,TJ,CH4,3.0,kg/TJ,101.94796919999999,kg -d5d80a37-2212-313a-8c48-415341f71edc,SESCO,II.1.1,Formosa,AR-P,annual,2023,naphtha combustion consumption by to the public,33.982656399999996,TJ,N2O,0.6,kg/TJ,20.389593839999996,kg -8bb928b5-28aa-3cb8-a387-482ebf1fce91,SESCO,II.1.1,La Rioja,AR-F,annual,2023,naphtha combustion consumption by to the public,96.97269119999999,TJ,CO2,73300.0,kg/TJ,7108098.264959999,kg -ad1f530c-31aa-3963-b476-13905bc578bf,SESCO,II.1.1,La Rioja,AR-F,annual,2023,naphtha combustion consumption by to the public,96.97269119999999,TJ,CH4,3.0,kg/TJ,290.91807359999996,kg -801636b8-a26e-3e23-b93e-0d90719bc082,SESCO,II.1.1,La Rioja,AR-F,annual,2023,naphtha combustion consumption by to the public,96.97269119999999,TJ,N2O,0.6,kg/TJ,58.18361471999999,kg -10f3b61e-8437-3306-b186-90a6c16ed9c5,SESCO,II.1.1,Mendoza,AR-M,annual,2023,naphtha combustion consumption by to the public,389.0064332,TJ,CO2,73300.0,kg/TJ,28514171.55356,kg -64d86617-759c-3983-baa4-7b8dcb3fbaa1,SESCO,II.1.1,Mendoza,AR-M,annual,2023,naphtha combustion consumption by to the public,389.0064332,TJ,CH4,3.0,kg/TJ,1167.0192996,kg -9ead3c5a-7d5a-3a9b-b302-c56b5bd88e70,SESCO,II.1.1,Mendoza,AR-M,annual,2023,naphtha combustion consumption by to the public,389.0064332,TJ,N2O,0.6,kg/TJ,233.40385992,kg -b0e7e5a9-8015-3f17-aa22-0282707f8886,SESCO,II.1.1,Misiones,AR-N,annual,2023,naphtha combustion consumption by to the public,267.3684244,TJ,CO2,73300.0,kg/TJ,19598105.50852,kg -c860b5c1-4398-3682-9107-511d4a61d881,SESCO,II.1.1,Misiones,AR-N,annual,2023,naphtha combustion consumption by to the public,267.3684244,TJ,CH4,3.0,kg/TJ,802.1052731999999,kg -f9d9f14c-fab3-373f-93d9-00b245bec3fa,SESCO,II.1.1,Misiones,AR-N,annual,2023,naphtha combustion consumption by to the public,267.3684244,TJ,N2O,0.6,kg/TJ,160.42105464,kg -98e59870-cd6b-3a46-83da-0bc72fee2d06,SESCO,II.1.1,San Juan,AR-J,annual,2023,naphtha combustion consumption by to the public,103.8476208,TJ,CO2,73300.0,kg/TJ,7612030.6046400005,kg -77f8d946-52ba-32eb-9d24-c18d9e5e8576,SESCO,II.1.1,San Juan,AR-J,annual,2023,naphtha combustion consumption by to the public,103.8476208,TJ,CH4,3.0,kg/TJ,311.5428624,kg -466e32af-7ca8-34a6-8bcc-e648a17fe6a4,SESCO,II.1.1,San Juan,AR-J,annual,2023,naphtha combustion consumption by to the public,103.8476208,TJ,N2O,0.6,kg/TJ,62.308572479999995,kg -bedfb09b-adfd-391d-ae1c-d488e1404285,SESCO,II.1.1,San Luis,AR-D,annual,2023,naphtha combustion consumption by to the public,33.0780604,TJ,CO2,73300.0,kg/TJ,2424621.8273199997,kg -3880c3a4-bc77-3899-8dca-b19f9c6e2167,SESCO,II.1.1,San Luis,AR-D,annual,2023,naphtha combustion consumption by to the public,33.0780604,TJ,CH4,3.0,kg/TJ,99.2341812,kg -17d6289e-d9bc-3a10-9aa1-1cda69b53ce2,SESCO,II.1.1,San Luis,AR-D,annual,2023,naphtha combustion consumption by to the public,33.0780604,TJ,N2O,0.6,kg/TJ,19.84683624,kg -6de667d0-95e6-3221-8e84-9ccb2259cce1,SESCO,II.1.1,Santa Fe,AR-S,annual,2023,naphtha combustion consumption by to the public,554.3062755999999,TJ,CO2,73300.0,kg/TJ,40630650.00148,kg -ad7cc84e-a876-3f43-85ab-24587bd2c1ec,SESCO,II.1.1,Santa Fe,AR-S,annual,2023,naphtha combustion consumption by to the public,554.3062755999999,TJ,CH4,3.0,kg/TJ,1662.9188267999998,kg -6d5ff05f-ceb5-3e8c-89af-06b8972f0dca,SESCO,II.1.1,Santa Fe,AR-S,annual,2023,naphtha combustion consumption by to the public,554.3062755999999,TJ,N2O,0.6,kg/TJ,332.58376536,kg -6425bc18-7c42-32bf-875b-9026c22cca6e,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2023,naphtha combustion consumption by to the public,158.24399359999998,TJ,CO2,73300.0,kg/TJ,11599284.730879998,kg -f40362bb-274b-36f6-a925-fada894210e9,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2023,naphtha combustion consumption by to the public,158.24399359999998,TJ,CH4,3.0,kg/TJ,474.7319808,kg -7452d23b-859b-3ed1-9af8-912714aa94a6,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2023,naphtha combustion consumption by to the public,158.24399359999998,TJ,N2O,0.6,kg/TJ,94.94639615999999,kg -5e219c9c-a081-3f99-88b3-e0db1e3776e8,SESCO,II.1.1,Tucuman,AR-T,annual,2023,naphtha combustion consumption by to the public,46.8279196,TJ,CO2,73300.0,kg/TJ,3432486.50668,kg -288e8d4c-c8d7-3f03-af2d-a17be97f1fa7,SESCO,II.1.1,Tucuman,AR-T,annual,2023,naphtha combustion consumption by to the public,46.8279196,TJ,CH4,3.0,kg/TJ,140.4837588,kg -811b1ffb-02da-3077-85de-e712c1750479,SESCO,II.1.1,Tucuman,AR-T,annual,2023,naphtha combustion consumption by to the public,46.8279196,TJ,N2O,0.6,kg/TJ,28.09675176,kg -07263296-5913-392f-a836-469c508a4c6f,SESCO,II.1.1,Buenos Aires,AR-B,annual,2023,naphtha combustion consumption by to the public,112.59204879999999,TJ,CO2,73300.0,kg/TJ,8252997.177039999,kg -409543e1-3950-3c8f-add2-16df93e2438e,SESCO,II.1.1,Buenos Aires,AR-B,annual,2023,naphtha combustion consumption by to the public,112.59204879999999,TJ,CH4,3.0,kg/TJ,337.77614639999996,kg -195e44d8-3f64-37e2-a042-e1a1e013bb9d,SESCO,II.1.1,Buenos Aires,AR-B,annual,2023,naphtha combustion consumption by to the public,112.59204879999999,TJ,N2O,0.6,kg/TJ,67.55522927999999,kg -53f4ab90-844d-3d6c-b894-e895d1840900,SESCO,II.1.1,Capital Federal,AR-C,annual,2023,naphtha combustion consumption by to the public,15.800276799999999,TJ,CO2,73300.0,kg/TJ,1158160.28944,kg -bb67af9a-7164-3669-984b-f57cacf8b29d,SESCO,II.1.1,Capital Federal,AR-C,annual,2023,naphtha combustion consumption by to the public,15.800276799999999,TJ,CH4,3.0,kg/TJ,47.4008304,kg -a3ad51e3-ac35-3d5f-b050-610c25afd50d,SESCO,II.1.1,Capital Federal,AR-C,annual,2023,naphtha combustion consumption by to the public,15.800276799999999,TJ,N2O,0.6,kg/TJ,9.480166079999998,kg -60bca854-1c57-3e69-83e5-44042ad7c877,SESCO,II.1.1,Catamarca,AR-K,annual,2023,naphtha combustion consumption by to the public,10.9456116,TJ,CO2,73300.0,kg/TJ,802313.33028,kg -8b4efca7-8941-3d5d-8d6e-3b83a6edd8e9,SESCO,II.1.1,Catamarca,AR-K,annual,2023,naphtha combustion consumption by to the public,10.9456116,TJ,CH4,3.0,kg/TJ,32.8368348,kg -040158c0-2d56-3704-866a-1e7515834718,SESCO,II.1.1,Catamarca,AR-K,annual,2023,naphtha combustion consumption by to the public,10.9456116,TJ,N2O,0.6,kg/TJ,6.567366959999999,kg -ea6a6661-447e-336f-af44-e48607030107,SESCO,II.1.1,Chaco,AR-H,annual,2023,naphtha combustion consumption by to the public,21.408771999999995,TJ,CO2,73300.0,kg/TJ,1569262.9875999996,kg -515e18c6-7e8c-33ad-9930-969a4604710c,SESCO,II.1.1,Chaco,AR-H,annual,2023,naphtha combustion consumption by to the public,21.408771999999995,TJ,CH4,3.0,kg/TJ,64.22631599999998,kg -23445ecc-fe6d-35a0-b01b-c4c95ce15d03,SESCO,II.1.1,Chaco,AR-H,annual,2023,naphtha combustion consumption by to the public,21.408771999999995,TJ,N2O,0.6,kg/TJ,12.845263199999996,kg -d85e4f0f-c955-365a-88ee-436b8a559311,SESCO,II.1.1,Corrientes,AR-W,annual,2023,naphtha combustion consumption by to the public,12.3025056,TJ,CO2,73300.0,kg/TJ,901773.66048,kg -8ebf5180-0eca-399f-bc7d-436e03233389,SESCO,II.1.1,Corrientes,AR-W,annual,2023,naphtha combustion consumption by to the public,12.3025056,TJ,CH4,3.0,kg/TJ,36.907516799999996,kg -e2f47d1d-edd3-3641-aef2-e48b43a5c011,SESCO,II.1.1,Corrientes,AR-W,annual,2023,naphtha combustion consumption by to the public,12.3025056,TJ,N2O,0.6,kg/TJ,7.38150336,kg -39aee428-032c-3463-b2e7-969d604caad2,SESCO,II.1.1,Córdoba,AR-X,annual,2023,naphtha combustion consumption by to the public,50.265384399999995,TJ,CO2,73300.0,kg/TJ,3684452.6765199997,kg -bc99aa27-de08-333e-ba99-0555d43e12df,SESCO,II.1.1,Córdoba,AR-X,annual,2023,naphtha combustion consumption by to the public,50.265384399999995,TJ,CH4,3.0,kg/TJ,150.7961532,kg -0e79d15d-ac4e-35c3-b5b1-9bc2c87ccfb9,SESCO,II.1.1,Córdoba,AR-X,annual,2023,naphtha combustion consumption by to the public,50.265384399999995,TJ,N2O,0.6,kg/TJ,30.159230639999997,kg -958c11b9-753f-32ad-97cd-e329182eef2e,SESCO,II.1.1,Entre Rios,AR-E,annual,2023,naphtha combustion consumption by to the public,33.6509712,TJ,CO2,73300.0,kg/TJ,2466616.18896,kg -ae218947-36a2-35af-a15b-79daadb06609,SESCO,II.1.1,Entre Rios,AR-E,annual,2023,naphtha combustion consumption by to the public,33.6509712,TJ,CH4,3.0,kg/TJ,100.9529136,kg -d2c49185-6142-3a45-8ce3-0d45e52bd132,SESCO,II.1.1,Entre Rios,AR-E,annual,2023,naphtha combustion consumption by to the public,33.6509712,TJ,N2O,0.6,kg/TJ,20.19058272,kg -dc287865-77c4-3ebb-aa2f-82339ad3b318,SESCO,II.1.1,Formosa,AR-P,annual,2023,naphtha combustion consumption by to the public,2.1408772,TJ,CO2,73300.0,kg/TJ,156926.29875999998,kg -f7cac573-651f-3705-9bfb-95162614c01f,SESCO,II.1.1,Formosa,AR-P,annual,2023,naphtha combustion consumption by to the public,2.1408772,TJ,CH4,3.0,kg/TJ,6.422631599999999,kg -6f528f31-8e0c-3c85-b013-8642633e7ccb,SESCO,II.1.1,Formosa,AR-P,annual,2023,naphtha combustion consumption by to the public,2.1408772,TJ,N2O,0.6,kg/TJ,1.2845263199999999,kg -2dc60456-8e67-3bcc-bf17-cd6ccadb5eab,SESCO,II.1.1,La Rioja,AR-F,annual,2023,naphtha combustion consumption by to the public,9.0158068,TJ,CO2,73300.0,kg/TJ,660858.63844,kg -9b7a2868-7f89-3360-a03b-4add64c072b4,SESCO,II.1.1,La Rioja,AR-F,annual,2023,naphtha combustion consumption by to the public,9.0158068,TJ,CH4,3.0,kg/TJ,27.0474204,kg -0aa1b6ae-b4ac-39a7-aa53-8e3f4108c4ea,SESCO,II.1.1,La Rioja,AR-F,annual,2023,naphtha combustion consumption by to the public,9.0158068,TJ,N2O,0.6,kg/TJ,5.4094840799999995,kg -4669f3b7-06ba-3265-960a-a64dd41a0a64,SESCO,II.1.1,Mendoza,AR-M,annual,2023,naphtha combustion consumption by to the public,20.2327972,TJ,CO2,73300.0,kg/TJ,1483064.03476,kg -060b9920-c2c7-33d2-b73c-bdb34ca40685,SESCO,II.1.1,Mendoza,AR-M,annual,2023,naphtha combustion consumption by to the public,20.2327972,TJ,CH4,3.0,kg/TJ,60.6983916,kg -4b38601b-7153-38bf-8fbc-ea5f01ff0699,SESCO,II.1.1,Mendoza,AR-M,annual,2023,naphtha combustion consumption by to the public,20.2327972,TJ,N2O,0.6,kg/TJ,12.13967832,kg -b4d540f9-bbe0-3829-9e19-df3937461829,SESCO,II.1.1,Misiones,AR-N,annual,2023,naphtha combustion consumption by to the public,16.4033408,TJ,CO2,73300.0,kg/TJ,1202364.8806399999,kg -6f95bfd5-e907-3c60-a3d6-0fb1df61fc99,SESCO,II.1.1,Misiones,AR-N,annual,2023,naphtha combustion consumption by to the public,16.4033408,TJ,CH4,3.0,kg/TJ,49.2100224,kg -c9754415-caeb-3532-a88a-c918fff33ef9,SESCO,II.1.1,Misiones,AR-N,annual,2023,naphtha combustion consumption by to the public,16.4033408,TJ,N2O,0.6,kg/TJ,9.842004479999998,kg -b9fdc127-6be7-39a7-838b-9adcfc50808f,SESCO,II.1.1,San Juan,AR-J,annual,2023,naphtha combustion consumption by to the public,14.322769999999998,TJ,CO2,73300.0,kg/TJ,1049859.041,kg -97c89ae6-4e3a-39b2-97f6-09abbd75f782,SESCO,II.1.1,San Juan,AR-J,annual,2023,naphtha combustion consumption by to the public,14.322769999999998,TJ,CH4,3.0,kg/TJ,42.968309999999995,kg -ade08e45-6c49-386e-b58e-de2f56ac8dd0,SESCO,II.1.1,San Juan,AR-J,annual,2023,naphtha combustion consumption by to the public,14.322769999999998,TJ,N2O,0.6,kg/TJ,8.593661999999998,kg -b3f203b2-e6a2-32f6-a0c9-2f497dd4f0dc,SESCO,II.1.1,San Luis,AR-D,annual,2023,naphtha combustion consumption by to the public,2.7740944,TJ,CO2,73300.0,kg/TJ,203341.11952,kg -4ae53f4e-cd29-3974-8518-2e71ea7d7273,SESCO,II.1.1,San Luis,AR-D,annual,2023,naphtha combustion consumption by to the public,2.7740944,TJ,CH4,3.0,kg/TJ,8.322283200000001,kg -cd1e4df5-f002-3dd6-9852-5d634a43d215,SESCO,II.1.1,San Luis,AR-D,annual,2023,naphtha combustion consumption by to the public,2.7740944,TJ,N2O,0.6,kg/TJ,1.66445664,kg -5c0fc693-5c68-384b-8891-257f3af8232d,SESCO,II.1.1,Santa Fe,AR-S,annual,2023,naphtha combustion consumption by to the public,57.773531199999994,TJ,CO2,73300.0,kg/TJ,4234799.83696,kg -4c4ea92b-b7c3-3cbd-9e9f-ca582a5a9216,SESCO,II.1.1,Santa Fe,AR-S,annual,2023,naphtha combustion consumption by to the public,57.773531199999994,TJ,CH4,3.0,kg/TJ,173.3205936,kg -6fed4906-718f-395f-9afa-b36274ea8ed1,SESCO,II.1.1,Santa Fe,AR-S,annual,2023,naphtha combustion consumption by to the public,57.773531199999994,TJ,N2O,0.6,kg/TJ,34.66411872,kg -3b39c715-e511-32aa-978b-d41b444f65ae,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2023,naphtha combustion consumption by to the public,17.036558,TJ,CO2,73300.0,kg/TJ,1248779.7014,kg -e24368dc-acb9-311f-bd53-0030864187a9,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2023,naphtha combustion consumption by to the public,17.036558,TJ,CH4,3.0,kg/TJ,51.109674,kg -788a78d1-dbd9-3968-a841-abfd8a7e7d61,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2023,naphtha combustion consumption by to the public,17.036558,TJ,N2O,0.6,kg/TJ,10.2219348,kg -586325a4-2703-3cae-a1e7-ee8f56843350,SESCO,II.1.1,Tucuman,AR-T,annual,2023,naphtha combustion consumption by to the public,4.221448,TJ,CO2,73300.0,kg/TJ,309432.1384,kg -8c4494f2-0a29-3910-b47d-57901c3de9e3,SESCO,II.1.1,Tucuman,AR-T,annual,2023,naphtha combustion consumption by to the public,4.221448,TJ,CH4,3.0,kg/TJ,12.664344,kg -1a97c66b-88e5-3cea-87e1-b3eb660a706e,SESCO,II.1.1,Tucuman,AR-T,annual,2023,naphtha combustion consumption by to the public,4.221448,TJ,N2O,0.6,kg/TJ,2.5328687999999997,kg -2ab6b68b-6df9-3b3f-8473-18fbbccd382e,SESCO,II.5.1,Santa Fe,AR-S,annual,2023,naphtha combustion consumption by agriculture machines,1.5981196,TJ,CO2,73300.0,kg/TJ,117142.16668,kg -b6dc9147-49f7-366d-8edc-cdc4209b92f0,SESCO,II.5.1,Santa Fe,AR-S,annual,2023,naphtha combustion consumption by agriculture machines,1.5981196,TJ,CH4,3.0,kg/TJ,4.7943587999999995,kg -2fd2f83e-b217-3e0e-be3e-334396e3faf0,SESCO,II.5.1,Santa Fe,AR-S,annual,2023,naphtha combustion consumption by agriculture machines,1.5981196,TJ,N2O,0.6,kg/TJ,0.95887176,kg -d2889239-2285-3414-a0aa-e8edb71430be,SESCO,II.5.1,Santa Fe,AR-S,annual,2023,naphtha combustion consumption by agriculture machines,1.0252088,TJ,CO2,73300.0,kg/TJ,75147.80503999999,kg -ed62bd2c-ca7e-355a-a420-62ff6ed90e1d,SESCO,II.5.1,Santa Fe,AR-S,annual,2023,naphtha combustion consumption by agriculture machines,1.0252088,TJ,CH4,3.0,kg/TJ,3.0756264,kg -939fafe9-e1f2-3d1f-bcdc-f728214ce79a,SESCO,II.5.1,Santa Fe,AR-S,annual,2023,naphtha combustion consumption by agriculture machines,1.0252088,TJ,N2O,0.6,kg/TJ,0.6151252799999999,kg -256872e7-605d-3d5d-85b1-3b64c39cb307,SESCO,II.1.1,Buenos Aires,AR-B,annual,2023,naphtha combustion consumption by to the public,10388.5915364,TJ,CO2,73300.0,kg/TJ,761483759.61812,kg -f376035a-db58-323e-861f-bcc3ddcee44b,SESCO,II.1.1,Buenos Aires,AR-B,annual,2023,naphtha combustion consumption by to the public,10388.5915364,TJ,CH4,3.0,kg/TJ,31165.774609199998,kg -fd5b3942-2047-34e7-b6cc-e591bf6dd675,SESCO,II.1.1,Buenos Aires,AR-B,annual,2023,naphtha combustion consumption by to the public,10388.5915364,TJ,N2O,0.6,kg/TJ,6233.15492184,kg -656ba187-b982-3d7a-8161-155ad0cc7706,SESCO,II.1.1,Capital Federal,AR-C,annual,2023,naphtha combustion consumption by to the public,2740.2022032,TJ,CO2,73300.0,kg/TJ,200856821.49456,kg -39d8587d-2066-3945-b323-46387ef00235,SESCO,II.1.1,Capital Federal,AR-C,annual,2023,naphtha combustion consumption by to the public,2740.2022032,TJ,CH4,3.0,kg/TJ,8220.6066096,kg -ea9933e2-485a-3136-9624-4e69e2aa9b87,SESCO,II.1.1,Capital Federal,AR-C,annual,2023,naphtha combustion consumption by to the public,2740.2022032,TJ,N2O,0.6,kg/TJ,1644.12132192,kg -242a7534-749e-3aab-b586-0745fd809982,SESCO,II.1.1,Catamarca,AR-K,annual,2023,naphtha combustion consumption by to the public,370.40190879999994,TJ,CO2,73300.0,kg/TJ,27150459.915039998,kg -c4c84e28-b7d2-3f54-8222-a1c25f7704d8,SESCO,II.1.1,Catamarca,AR-K,annual,2023,naphtha combustion consumption by to the public,370.40190879999994,TJ,CH4,3.0,kg/TJ,1111.2057263999998,kg -85f0db44-e372-3fcc-89c9-0eb037655a48,SESCO,II.1.1,Catamarca,AR-K,annual,2023,naphtha combustion consumption by to the public,370.40190879999994,TJ,N2O,0.6,kg/TJ,222.24114527999996,kg -ac06327b-a0e1-3883-8f5b-c003b0ec5059,SESCO,II.1.1,Chaco,AR-H,annual,2023,naphtha combustion consumption by to the public,750.0005436,TJ,CO2,73300.0,kg/TJ,54975039.84588,kg -641a9eb9-32dc-30fd-9a74-deb885b6f740,SESCO,II.1.1,Chaco,AR-H,annual,2023,naphtha combustion consumption by to the public,750.0005436,TJ,CH4,3.0,kg/TJ,2250.0016308,kg -c80f53cd-b2fa-38ac-9e7a-7467dabdd55f,SESCO,II.1.1,Chaco,AR-H,annual,2023,naphtha combustion consumption by to the public,750.0005436,TJ,N2O,0.6,kg/TJ,450.00032616,kg -bbb13cdd-6c7e-3961-8360-2e10004f6ffd,SESCO,II.1.1,Chubut,AR-U,annual,2023,naphtha combustion consumption by to the public,1552.286736,TJ,CO2,73300.0,kg/TJ,113782617.7488,kg -27136094-c603-3a6d-ad16-64b37b43ef96,SESCO,II.1.1,Chubut,AR-U,annual,2023,naphtha combustion consumption by to the public,1552.286736,TJ,CH4,3.0,kg/TJ,4656.860208,kg -4a34eab0-55c0-3150-b88a-1e6232304adf,SESCO,II.1.1,Chubut,AR-U,annual,2023,naphtha combustion consumption by to the public,1552.286736,TJ,N2O,0.6,kg/TJ,931.3720416,kg -ed0a421c-ece2-3e4c-bf8e-ccfa3bade901,SESCO,II.1.1,Corrientes,AR-W,annual,2023,naphtha combustion consumption by to the public,972.9231512,TJ,CO2,73300.0,kg/TJ,71315266.98296,kg -0b6199e4-a724-3e06-b721-603594db05ab,SESCO,II.1.1,Corrientes,AR-W,annual,2023,naphtha combustion consumption by to the public,972.9231512,TJ,CH4,3.0,kg/TJ,2918.7694536,kg -e19e39f0-a796-3969-87d7-33e4a9caece3,SESCO,II.1.1,Corrientes,AR-W,annual,2023,naphtha combustion consumption by to the public,972.9231512,TJ,N2O,0.6,kg/TJ,583.75389072,kg -2ddf5030-d52c-311c-88c2-a513524d2611,SESCO,II.1.1,Córdoba,AR-X,annual,2023,naphtha combustion consumption by to the public,2446.3894224,TJ,CO2,73300.0,kg/TJ,179320344.66192,kg -2f5cc21e-02be-3ad8-bc01-5bf0d506f5a8,SESCO,II.1.1,Córdoba,AR-X,annual,2023,naphtha combustion consumption by to the public,2446.3894224,TJ,CH4,3.0,kg/TJ,7339.168267200001,kg -1b817dcb-eee4-3bb5-afef-7c7b109ead66,SESCO,II.1.1,Córdoba,AR-X,annual,2023,naphtha combustion consumption by to the public,2446.3894224,TJ,N2O,0.6,kg/TJ,1467.83365344,kg -c35ed9cc-6db0-3000-959e-cbaae79f94cd,SESCO,II.1.1,Entre Rios,AR-E,annual,2023,naphtha combustion consumption by to the public,1101.5265491999999,TJ,CO2,73300.0,kg/TJ,80741896.05635999,kg -dd1ac37e-4863-3df4-839a-2bb43163ba2f,SESCO,II.1.1,Entre Rios,AR-E,annual,2023,naphtha combustion consumption by to the public,1101.5265491999999,TJ,CH4,3.0,kg/TJ,3304.5796475999996,kg -1a16641f-b5a2-35b3-8365-9a7f8b9a4389,SESCO,II.1.1,Entre Rios,AR-E,annual,2023,naphtha combustion consumption by to the public,1101.5265491999999,TJ,N2O,0.6,kg/TJ,660.9159295199998,kg -96beb9db-3ff4-3999-a27d-1207443a218f,SESCO,II.1.1,Formosa,AR-P,annual,2023,naphtha combustion consumption by to the public,810.7290884,TJ,CO2,73300.0,kg/TJ,59426442.17972,kg -36030df9-0bbf-30ad-8d23-08249e497e5f,SESCO,II.1.1,Formosa,AR-P,annual,2023,naphtha combustion consumption by to the public,810.7290884,TJ,CH4,3.0,kg/TJ,2432.1872652,kg -7957a41d-5ffa-3f62-a9e7-994e117d4933,SESCO,II.1.1,Formosa,AR-P,annual,2023,naphtha combustion consumption by to the public,810.7290884,TJ,N2O,0.6,kg/TJ,486.43745304,kg -eaf35e9a-c90c-34ee-9bfa-20cf293a961d,SESCO,II.1.1,Jujuy,AR-Y,annual,2023,naphtha combustion consumption by to the public,323.996134,TJ,CO2,73300.0,kg/TJ,23748916.622199997,kg -90a9a03e-422f-322a-9ec1-b5e80799f93f,SESCO,II.1.1,Jujuy,AR-Y,annual,2023,naphtha combustion consumption by to the public,323.996134,TJ,CH4,3.0,kg/TJ,971.988402,kg -c98fdb0e-8871-3d50-8b1d-f2caefd385e1,SESCO,II.1.1,Jujuy,AR-Y,annual,2023,naphtha combustion consumption by to the public,323.996134,TJ,N2O,0.6,kg/TJ,194.39768039999998,kg -893a1d3e-7d43-3c8e-90fb-6cf131a06579,SESCO,II.1.1,La Pampa,AR-L,annual,2023,naphtha combustion consumption by to the public,246.2913376,TJ,CO2,73300.0,kg/TJ,18053155.04608,kg -0f1c38bf-9fb3-32ec-a1b7-42a8eb4a4f2c,SESCO,II.1.1,La Pampa,AR-L,annual,2023,naphtha combustion consumption by to the public,246.2913376,TJ,CH4,3.0,kg/TJ,738.8740128,kg -089c06eb-7ebe-3568-bb3a-c306e0720eb7,SESCO,II.1.1,La Pampa,AR-L,annual,2023,naphtha combustion consumption by to the public,246.2913376,TJ,N2O,0.6,kg/TJ,147.77480255999998,kg -86fbf5e2-e09c-3ad0-a13c-2925fe3923ca,SESCO,II.1.1,La Rioja,AR-F,annual,2023,naphtha combustion consumption by to the public,181.4921108,TJ,CO2,73300.0,kg/TJ,13303371.72164,kg -d9e8281d-1e61-366e-a635-c8df2fa573c6,SESCO,II.1.1,La Rioja,AR-F,annual,2023,naphtha combustion consumption by to the public,181.4921108,TJ,CH4,3.0,kg/TJ,544.4763324,kg -9d4e9a8a-a0e3-3cf7-8e7a-c0a79a78715c,SESCO,II.1.1,La Rioja,AR-F,annual,2023,naphtha combustion consumption by to the public,181.4921108,TJ,N2O,0.6,kg/TJ,108.89526648,kg -94613093-d4f8-3320-a8b2-178e94de4e68,SESCO,II.1.1,Mendoza,AR-M,annual,2023,naphtha combustion consumption by to the public,479.6167992,TJ,CO2,73300.0,kg/TJ,35155911.38136,kg -37ead68c-28b8-3fc6-91f2-4bac473ddfcc,SESCO,II.1.1,Mendoza,AR-M,annual,2023,naphtha combustion consumption by to the public,479.6167992,TJ,CH4,3.0,kg/TJ,1438.8503976,kg -6a211a4f-e310-3624-a22a-7a2f7fc5b4be,SESCO,II.1.1,Mendoza,AR-M,annual,2023,naphtha combustion consumption by to the public,479.6167992,TJ,N2O,0.6,kg/TJ,287.77007951999997,kg -3f7919be-9da8-372a-b976-a500b14831cb,SESCO,II.1.1,Misiones,AR-N,annual,2023,naphtha combustion consumption by to the public,1847.6674831999997,TJ,CO2,73300.0,kg/TJ,135434026.51855996,kg -0b8f04fd-321e-3c7b-b033-c789f9c0f63b,SESCO,II.1.1,Misiones,AR-N,annual,2023,naphtha combustion consumption by to the public,1847.6674831999997,TJ,CH4,3.0,kg/TJ,5543.002449599999,kg -ddd4a71c-6cf3-3d29-80d7-c0c3cd2ea265,SESCO,II.1.1,Misiones,AR-N,annual,2023,naphtha combustion consumption by to the public,1847.6674831999997,TJ,N2O,0.6,kg/TJ,1108.6004899199997,kg -bcd11286-8cd0-383d-8c61-5e883cb56c80,SESCO,II.1.1,Neuquén,AR-Q,annual,2023,naphtha combustion consumption by to the public,473.34493359999993,TJ,CO2,73300.0,kg/TJ,34696183.632879995,kg -6856cd44-1caf-3d4b-9b19-ed216388e50d,SESCO,II.1.1,Neuquén,AR-Q,annual,2023,naphtha combustion consumption by to the public,473.34493359999993,TJ,CH4,3.0,kg/TJ,1420.0348007999999,kg -2e3dbcc7-8832-39db-bf1a-3d8c8e3c57f1,SESCO,II.1.1,Neuquén,AR-Q,annual,2023,naphtha combustion consumption by to the public,473.34493359999993,TJ,N2O,0.6,kg/TJ,284.00696015999995,kg -287e0514-ac75-3990-a4c4-d5d0d3737b13,SESCO,II.1.1,Rio Negro,AR-R,annual,2023,naphtha combustion consumption by to the public,811.7844504,TJ,CO2,73300.0,kg/TJ,59503800.21432,kg -0b7a8a93-be87-39d9-9a12-8d8a09f513db,SESCO,II.1.1,Rio Negro,AR-R,annual,2023,naphtha combustion consumption by to the public,811.7844504,TJ,CH4,3.0,kg/TJ,2435.3533512,kg -f157793e-f236-3174-b1c9-de627504963c,SESCO,II.1.1,Rio Negro,AR-R,annual,2023,naphtha combustion consumption by to the public,811.7844504,TJ,N2O,0.6,kg/TJ,487.07067023999997,kg -51001869-8790-380c-a556-2440fa034abb,SESCO,II.1.1,Salta,AR-A,annual,2023,naphtha combustion consumption by to the public,277.1983676,TJ,CO2,73300.0,kg/TJ,20318640.34508,kg -a8d9ebb8-5e70-334e-9068-3e373804a96b,SESCO,II.1.1,Salta,AR-A,annual,2023,naphtha combustion consumption by to the public,277.1983676,TJ,CH4,3.0,kg/TJ,831.5951028,kg -e720bb4f-2d9b-3277-9170-bfc1ec673c53,SESCO,II.1.1,Salta,AR-A,annual,2023,naphtha combustion consumption by to the public,277.1983676,TJ,N2O,0.6,kg/TJ,166.31902055999998,kg -c60a3784-069f-38b4-9607-6566cd8dd640,SESCO,II.1.1,San Juan,AR-J,annual,2023,naphtha combustion consumption by to the public,248.311602,TJ,CO2,73300.0,kg/TJ,18201240.426599998,kg -aa14c774-6b16-3a27-8b53-8ab33017c34e,SESCO,II.1.1,San Juan,AR-J,annual,2023,naphtha combustion consumption by to the public,248.311602,TJ,CH4,3.0,kg/TJ,744.934806,kg -08ea97f6-5c9b-3d0d-bec3-463f1f0278b3,SESCO,II.1.1,San Juan,AR-J,annual,2023,naphtha combustion consumption by to the public,248.311602,TJ,N2O,0.6,kg/TJ,148.9869612,kg -e87f4247-b53e-3f3c-a20a-368c204d435e,SESCO,II.1.1,San Luis,AR-D,annual,2023,naphtha combustion consumption by to the public,553.914284,TJ,CO2,73300.0,kg/TJ,40601917.01719999,kg -407abf9e-fb73-3857-8260-970ae862f9d6,SESCO,II.1.1,San Luis,AR-D,annual,2023,naphtha combustion consumption by to the public,553.914284,TJ,CH4,3.0,kg/TJ,1661.7428519999999,kg -f5e20e3f-71b9-394c-852c-eb2da405af31,SESCO,II.1.1,San Luis,AR-D,annual,2023,naphtha combustion consumption by to the public,553.914284,TJ,N2O,0.6,kg/TJ,332.34857039999997,kg -d56c89fe-006f-353d-8696-f98aef922daf,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2023,naphtha combustion consumption by to the public,900.4951647999999,TJ,CO2,73300.0,kg/TJ,66006295.57983999,kg -bda5ee0d-bb8c-3e07-b5af-19b6deeff3be,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2023,naphtha combustion consumption by to the public,900.4951647999999,TJ,CH4,3.0,kg/TJ,2701.4854944,kg -a565b41f-bef7-38c6-8516-65c2d78a748a,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2023,naphtha combustion consumption by to the public,900.4951647999999,TJ,N2O,0.6,kg/TJ,540.2970988799999,kg -b67ecb26-7fb1-3530-bfac-a3d887da96b0,SESCO,II.1.1,Santa Fe,AR-S,annual,2023,naphtha combustion consumption by to the public,2431.6445075999995,TJ,CO2,73300.0,kg/TJ,178239542.40707996,kg -ad2881a8-c2ef-35d2-8a4e-b455218d29f3,SESCO,II.1.1,Santa Fe,AR-S,annual,2023,naphtha combustion consumption by to the public,2431.6445075999995,TJ,CH4,3.0,kg/TJ,7294.933522799998,kg -28e73208-3807-3402-bc99-85cd3911a099,SESCO,II.1.1,Santa Fe,AR-S,annual,2023,naphtha combustion consumption by to the public,2431.6445075999995,TJ,N2O,0.6,kg/TJ,1458.9867045599997,kg -2524b803-50bd-318d-9895-9c03553ffa02,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2023,naphtha combustion consumption by to the public,490.0196532,TJ,CO2,73300.0,kg/TJ,35918440.57956,kg -19e9de2d-a822-3f5f-aa1e-f06adbdcb416,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2023,naphtha combustion consumption by to the public,490.0196532,TJ,CH4,3.0,kg/TJ,1470.0589596,kg -701b500b-2a20-3a20-a7af-8cf7ec3922fc,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2023,naphtha combustion consumption by to the public,490.0196532,TJ,N2O,0.6,kg/TJ,294.01179192,kg -ba01f2b3-bdb9-3dbf-8a86-dfed814a693b,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2023,naphtha combustion consumption by to the public,178.2355652,TJ,CO2,73300.0,kg/TJ,13064666.929159999,kg -9c623018-6b4a-3574-be37-8a248faa1234,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2023,naphtha combustion consumption by to the public,178.2355652,TJ,CH4,3.0,kg/TJ,534.7066956,kg -9ef95640-d8be-3166-91fc-0d705d69e508,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2023,naphtha combustion consumption by to the public,178.2355652,TJ,N2O,0.6,kg/TJ,106.94133912,kg -f0f88d70-d7e6-378c-80c7-3e762ab936db,SESCO,II.1.1,Tucuman,AR-T,annual,2023,naphtha combustion consumption by to the public,199.07142639999998,TJ,CO2,73300.0,kg/TJ,14591935.555119999,kg -7ff022cd-aa74-31bd-bf6f-875f7dcadfc1,SESCO,II.1.1,Tucuman,AR-T,annual,2023,naphtha combustion consumption by to the public,199.07142639999998,TJ,CH4,3.0,kg/TJ,597.2142792,kg -45e357df-577d-3000-b651-a290a0677630,SESCO,II.1.1,Tucuman,AR-T,annual,2023,naphtha combustion consumption by to the public,199.07142639999998,TJ,N2O,0.6,kg/TJ,119.44285583999998,kg -e76a2097-89a7-3e81-a906-80b388507060,SESCO,II.1.1,Buenos Aires,AR-B,annual,2023,naphtha combustion consumption by to the public,3331.627068,TJ,CO2,73300.0,kg/TJ,244208264.0844,kg -c05cc9ec-ea90-384f-94eb-df94ebae5078,SESCO,II.1.1,Buenos Aires,AR-B,annual,2023,naphtha combustion consumption by to the public,3331.627068,TJ,CH4,3.0,kg/TJ,9994.881204,kg -5b5fa324-cbfa-3426-8fb9-6628082ef9e0,SESCO,II.1.1,Buenos Aires,AR-B,annual,2023,naphtha combustion consumption by to the public,3331.627068,TJ,N2O,0.6,kg/TJ,1998.9762407999997,kg -f4c8ee2c-f671-3537-80b1-70d05ca0f45d,SESCO,II.1.1,Capital Federal,AR-C,annual,2023,naphtha combustion consumption by to the public,1345.134252,TJ,CO2,73300.0,kg/TJ,98598340.6716,kg -b6f02273-674e-358f-8be3-0207168e1189,SESCO,II.1.1,Capital Federal,AR-C,annual,2023,naphtha combustion consumption by to the public,1345.134252,TJ,CH4,3.0,kg/TJ,4035.4027560000004,kg -eb157ae8-5042-32d7-9024-03d1fd2f1a63,SESCO,II.1.1,Capital Federal,AR-C,annual,2023,naphtha combustion consumption by to the public,1345.134252,TJ,N2O,0.6,kg/TJ,807.0805512000001,kg -073044f1-9bd4-3bab-87b0-63b2386866a0,SESCO,II.1.1,Catamarca,AR-K,annual,2023,naphtha combustion consumption by to the public,130.41259,TJ,CO2,73300.0,kg/TJ,9559242.847,kg -422e86f5-5f50-396d-b8e9-7c5addc87127,SESCO,II.1.1,Catamarca,AR-K,annual,2023,naphtha combustion consumption by to the public,130.41259,TJ,CH4,3.0,kg/TJ,391.23776999999995,kg -b7030bbb-339e-3394-8f68-11afb3a562c3,SESCO,II.1.1,Catamarca,AR-K,annual,2023,naphtha combustion consumption by to the public,130.41259,TJ,N2O,0.6,kg/TJ,78.247554,kg -f51cf89e-a787-3288-863e-648a18bcc54f,SESCO,II.1.1,Chaco,AR-H,annual,2023,naphtha combustion consumption by to the public,104.42053159999999,TJ,CO2,73300.0,kg/TJ,7654024.966279999,kg -606eb35e-996f-302e-8fc7-f476fbf24e13,SESCO,II.1.1,Chaco,AR-H,annual,2023,naphtha combustion consumption by to the public,104.42053159999999,TJ,CH4,3.0,kg/TJ,313.26159479999995,kg -f5464790-923c-314a-a748-d26a822bac2f,SESCO,II.1.1,Chaco,AR-H,annual,2023,naphtha combustion consumption by to the public,104.42053159999999,TJ,N2O,0.6,kg/TJ,62.65231895999999,kg -7fce49a9-13e0-37d9-8cff-21687923cb9b,SESCO,II.1.1,Chubut,AR-U,annual,2023,naphtha combustion consumption by to the public,274.695652,TJ,CO2,73300.0,kg/TJ,20135191.2916,kg -527f02e4-b980-3b8e-b934-dd34d74e4b4f,SESCO,II.1.1,Chubut,AR-U,annual,2023,naphtha combustion consumption by to the public,274.695652,TJ,CH4,3.0,kg/TJ,824.086956,kg -be895789-2ec0-3ce6-8fb6-f882218762db,SESCO,II.1.1,Chubut,AR-U,annual,2023,naphtha combustion consumption by to the public,274.695652,TJ,N2O,0.6,kg/TJ,164.8173912,kg -b0c4c219-6300-3437-9ef0-b05c3672a24d,SESCO,II.1.1,Corrientes,AR-W,annual,2023,naphtha combustion consumption by to the public,145.8510284,TJ,CO2,73300.0,kg/TJ,10690880.381719999,kg -b5a02d35-71e8-3dd5-a535-da681e36b9b4,SESCO,II.1.1,Corrientes,AR-W,annual,2023,naphtha combustion consumption by to the public,145.8510284,TJ,CH4,3.0,kg/TJ,437.55308519999994,kg -3aba43ef-3c6b-32e4-822d-fadc0e3c17ff,SESCO,II.1.1,Corrientes,AR-W,annual,2023,naphtha combustion consumption by to the public,145.8510284,TJ,N2O,0.6,kg/TJ,87.51061703999999,kg -137ab29f-0801-3827-b621-631a3ea97f0c,SESCO,II.1.1,Córdoba,AR-X,annual,2023,naphtha combustion consumption by to the public,659.1187987999999,TJ,CO2,73300.0,kg/TJ,48313407.952039994,kg -d1b0745b-c98c-340b-9f97-76562a6fa2b5,SESCO,II.1.1,Córdoba,AR-X,annual,2023,naphtha combustion consumption by to the public,659.1187987999999,TJ,CH4,3.0,kg/TJ,1977.3563963999998,kg -d1abd776-df06-3aee-9fd5-7394d8aba14d,SESCO,II.1.1,Córdoba,AR-X,annual,2023,naphtha combustion consumption by to the public,659.1187987999999,TJ,N2O,0.6,kg/TJ,395.4712792799999,kg -15db56cd-e7a8-3097-9695-963c7a71705a,SESCO,II.1.1,Entre Rios,AR-E,annual,2023,naphtha combustion consumption by to the public,337.6253804,TJ,CO2,73300.0,kg/TJ,24747940.38332,kg -17d561e7-594c-3757-8345-8164946f9044,SESCO,II.1.1,Entre Rios,AR-E,annual,2023,naphtha combustion consumption by to the public,337.6253804,TJ,CH4,3.0,kg/TJ,1012.8761411999999,kg -cc3069f3-b320-36b4-b239-a702c7dc4314,SESCO,II.1.1,Entre Rios,AR-E,annual,2023,naphtha combustion consumption by to the public,337.6253804,TJ,N2O,0.6,kg/TJ,202.57522823999997,kg -f97ad3d1-2f59-3a71-9b21-46162cbf0f5b,SESCO,II.1.1,Formosa,AR-P,annual,2023,naphtha combustion consumption by to the public,237.03430519999998,TJ,CO2,73300.0,kg/TJ,17374614.57116,kg -67bc3dc7-06b4-31e6-a924-919649dba4b7,SESCO,II.1.1,Formosa,AR-P,annual,2023,naphtha combustion consumption by to the public,237.03430519999998,TJ,CH4,3.0,kg/TJ,711.1029156,kg -292df19c-aa17-3889-9d1d-c69d11296abb,SESCO,II.1.1,Formosa,AR-P,annual,2023,naphtha combustion consumption by to the public,237.03430519999998,TJ,N2O,0.6,kg/TJ,142.22058312,kg -45afa119-81a5-357f-bddf-4801e6d718bf,SESCO,II.1.1,Jujuy,AR-Y,annual,2023,naphtha combustion consumption by to the public,75.1719276,TJ,CO2,73300.0,kg/TJ,5510102.29308,kg -90648dc7-0f31-3691-8e7c-5c021708601b,SESCO,II.1.1,Jujuy,AR-Y,annual,2023,naphtha combustion consumption by to the public,75.1719276,TJ,CH4,3.0,kg/TJ,225.5157828,kg -70c9f0da-5ffe-3c47-8034-eb7f15c19e60,SESCO,II.1.1,Jujuy,AR-Y,annual,2023,naphtha combustion consumption by to the public,75.1719276,TJ,N2O,0.6,kg/TJ,45.10315656,kg -bdf1ae93-64ea-361e-9a52-77c330c529a1,SESCO,II.1.1,La Pampa,AR-L,annual,2023,naphtha combustion consumption by to the public,77.9158688,TJ,CO2,73300.0,kg/TJ,5711233.18304,kg -e1c8706a-4409-3e79-80ea-d3ca237a7746,SESCO,II.1.1,La Pampa,AR-L,annual,2023,naphtha combustion consumption by to the public,77.9158688,TJ,CH4,3.0,kg/TJ,233.7476064,kg -5b08c4c8-c765-35fa-ae23-76d330238b68,SESCO,II.1.1,La Pampa,AR-L,annual,2023,naphtha combustion consumption by to the public,77.9158688,TJ,N2O,0.6,kg/TJ,46.749521279999996,kg -4f045ad8-f396-318e-a1fb-0c1358dbaf1a,SESCO,II.1.1,La Rioja,AR-F,annual,2023,naphtha combustion consumption by to the public,50.44630359999999,TJ,CO2,73300.0,kg/TJ,3697714.0538799996,kg -b75e53c9-b9c3-36eb-8c9b-50b10e890fde,SESCO,II.1.1,La Rioja,AR-F,annual,2023,naphtha combustion consumption by to the public,50.44630359999999,TJ,CH4,3.0,kg/TJ,151.33891079999998,kg -787a9054-a7b4-38d6-8f77-a9ce82e2c520,SESCO,II.1.1,La Rioja,AR-F,annual,2023,naphtha combustion consumption by to the public,50.44630359999999,TJ,N2O,0.6,kg/TJ,30.267782159999996,kg -75dbe946-c982-3112-9ad0-b09b65bb9160,SESCO,II.1.1,Mendoza,AR-M,annual,2023,naphtha combustion consumption by to the public,204.3783896,TJ,CO2,73300.0,kg/TJ,14980935.95768,kg -f2b0d36d-10f8-3cc6-928c-29aabd04cd9a,SESCO,II.1.1,Mendoza,AR-M,annual,2023,naphtha combustion consumption by to the public,204.3783896,TJ,CH4,3.0,kg/TJ,613.1351688,kg -3134bd5f-94a5-3dc4-8329-f21e7b1bd112,SESCO,II.1.1,Mendoza,AR-M,annual,2023,naphtha combustion consumption by to the public,204.3783896,TJ,N2O,0.6,kg/TJ,122.62703375999999,kg -7f34191e-5710-36c3-bf23-3d95f771c8b3,SESCO,II.1.1,Misiones,AR-N,annual,2023,naphtha combustion consumption by to the public,166.08382559999998,TJ,CO2,73300.0,kg/TJ,12173944.41648,kg -b038951d-5cee-363b-9896-fab7c08092b1,SESCO,II.1.1,Misiones,AR-N,annual,2023,naphtha combustion consumption by to the public,166.08382559999998,TJ,CH4,3.0,kg/TJ,498.2514768,kg -3c692b44-9847-375e-9b7c-c3374bdb3b24,SESCO,II.1.1,Misiones,AR-N,annual,2023,naphtha combustion consumption by to the public,166.08382559999998,TJ,N2O,0.6,kg/TJ,99.65029535999999,kg -2c888e71-3ff5-33d4-82eb-87cacbaa1b8a,SESCO,II.1.1,Neuquén,AR-Q,annual,2023,naphtha combustion consumption by to the public,226.54099159999998,TJ,CO2,73300.0,kg/TJ,16605454.684279999,kg -e834a687-fc93-31c1-894d-22e4b78a75f2,SESCO,II.1.1,Neuquén,AR-Q,annual,2023,naphtha combustion consumption by to the public,226.54099159999998,TJ,CH4,3.0,kg/TJ,679.6229748,kg -c9066639-b420-39a7-91df-864b4ff6e699,SESCO,II.1.1,Neuquén,AR-Q,annual,2023,naphtha combustion consumption by to the public,226.54099159999998,TJ,N2O,0.6,kg/TJ,135.92459495999998,kg -98833ee3-8586-39bc-8b58-82a4cf5bb986,SESCO,II.1.1,Rio Negro,AR-R,annual,2023,naphtha combustion consumption by to the public,320.8903543999999,TJ,CO2,73300.0,kg/TJ,23521262.977519993,kg -c40e3756-740a-357d-afa4-76553643e687,SESCO,II.1.1,Rio Negro,AR-R,annual,2023,naphtha combustion consumption by to the public,320.8903543999999,TJ,CH4,3.0,kg/TJ,962.6710631999997,kg -b01d5fa4-e42e-3896-9889-9d16e93fbc36,SESCO,II.1.1,Rio Negro,AR-R,annual,2023,naphtha combustion consumption by to the public,320.8903543999999,TJ,N2O,0.6,kg/TJ,192.53421263999994,kg -70f88e22-5e6f-310a-a136-1eb9df0897fc,SESCO,II.1.1,Salta,AR-A,annual,2023,naphtha combustion consumption by to the public,53.58223639999999,TJ,CO2,73300.0,kg/TJ,3927577.9281199994,kg -68364c4d-774a-3c5f-b4f1-a482bf52246c,SESCO,II.1.1,Salta,AR-A,annual,2023,naphtha combustion consumption by to the public,53.58223639999999,TJ,CH4,3.0,kg/TJ,160.74670919999997,kg -751afb7e-05ef-326e-8047-0a4923c5e165,SESCO,II.1.1,Salta,AR-A,annual,2023,naphtha combustion consumption by to the public,53.58223639999999,TJ,N2O,0.6,kg/TJ,32.14934183999999,kg -ae574f6e-535c-34d8-9586-2450657ed264,SESCO,II.1.1,San Juan,AR-J,annual,2023,naphtha combustion consumption by to the public,48.42603919999999,TJ,CO2,73300.0,kg/TJ,3549628.6733599994,kg -d2190e2f-749e-3991-af84-e0172fbd12cb,SESCO,II.1.1,San Juan,AR-J,annual,2023,naphtha combustion consumption by to the public,48.42603919999999,TJ,CH4,3.0,kg/TJ,145.27811759999997,kg -03014dd8-ba04-3861-b015-2f63c28d5318,SESCO,II.1.1,San Juan,AR-J,annual,2023,naphtha combustion consumption by to the public,48.42603919999999,TJ,N2O,0.6,kg/TJ,29.055623519999994,kg -d5ee8b33-1279-3c69-aa5e-0583b73fb4c0,SESCO,II.1.1,San Luis,AR-D,annual,2023,naphtha combustion consumption by to the public,110.51147799999998,TJ,CO2,73300.0,kg/TJ,8100491.337399999,kg -47ead391-86b2-3862-9c4c-411a89f96dad,SESCO,II.1.1,San Luis,AR-D,annual,2023,naphtha combustion consumption by to the public,110.51147799999998,TJ,CH4,3.0,kg/TJ,331.5344339999999,kg -d34f166d-2640-3aa5-a3c2-7f938adf1d75,SESCO,II.1.1,San Luis,AR-D,annual,2023,naphtha combustion consumption by to the public,110.51147799999998,TJ,N2O,0.6,kg/TJ,66.30688679999999,kg -343496c5-6ad4-3dee-91e0-c49555a1b672,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2023,naphtha combustion consumption by to the public,147.0873096,TJ,CO2,73300.0,kg/TJ,10781499.79368,kg -08068f53-d6af-3ecc-8ac5-344fdc522a6e,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2023,naphtha combustion consumption by to the public,147.0873096,TJ,CH4,3.0,kg/TJ,441.26192879999996,kg -88a063d1-4acf-3d22-b4bf-92755a9ad5a1,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2023,naphtha combustion consumption by to the public,147.0873096,TJ,N2O,0.6,kg/TJ,88.25238576,kg -e7f19fae-81e3-3d59-ab7b-4a1d1a627a2d,SESCO,II.1.1,Santa Fe,AR-S,annual,2023,naphtha combustion consumption by to the public,784.9179491999998,TJ,CO2,73300.0,kg/TJ,57534485.67635999,kg -e43c32af-f4ab-3fc1-8148-68122ead7df1,SESCO,II.1.1,Santa Fe,AR-S,annual,2023,naphtha combustion consumption by to the public,784.9179491999998,TJ,CH4,3.0,kg/TJ,2354.7538475999995,kg -f78f0769-ade5-3942-86b8-ef7879256748,SESCO,II.1.1,Santa Fe,AR-S,annual,2023,naphtha combustion consumption by to the public,784.9179491999998,TJ,N2O,0.6,kg/TJ,470.9507695199999,kg -06ac9ce4-9cf2-35a0-884d-42cac424f5ab,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2023,naphtha combustion consumption by to the public,159.78180679999997,TJ,CO2,73300.0,kg/TJ,11712006.438439997,kg -2b7b3c43-6f48-32b0-bc13-f7a6b80f4156,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2023,naphtha combustion consumption by to the public,159.78180679999997,TJ,CH4,3.0,kg/TJ,479.3454203999999,kg -7f400ec1-dec7-389c-844d-c12543804d62,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2023,naphtha combustion consumption by to the public,159.78180679999997,TJ,N2O,0.6,kg/TJ,95.86908407999998,kg -6efa85d7-654c-35a3-99e4-36c21f00607d,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2023,naphtha combustion consumption by to the public,43.0587696,TJ,CO2,73300.0,kg/TJ,3156207.81168,kg -8aebec1c-23a1-3b9a-ac5e-d20ae1b6b86b,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2023,naphtha combustion consumption by to the public,43.0587696,TJ,CH4,3.0,kg/TJ,129.1763088,kg -a6198b5c-6c4e-344d-9181-98fe027a31b0,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2023,naphtha combustion consumption by to the public,43.0587696,TJ,N2O,0.6,kg/TJ,25.835261759999998,kg -e22ce133-3dc5-3519-a61d-27ba1aa9dcba,SESCO,II.1.1,Tucuman,AR-T,annual,2023,naphtha combustion consumption by to the public,39.68161119999999,TJ,CO2,73300.0,kg/TJ,2908662.1009599995,kg -e22d74a9-2850-3adf-b28f-d10305334eb1,SESCO,II.1.1,Tucuman,AR-T,annual,2023,naphtha combustion consumption by to the public,39.68161119999999,TJ,CH4,3.0,kg/TJ,119.04483359999998,kg -2c8ec126-296d-3aee-8fdf-651fa7d4f15b,SESCO,II.1.1,Tucuman,AR-T,annual,2023,naphtha combustion consumption by to the public,39.68161119999999,TJ,N2O,0.6,kg/TJ,23.808966719999994,kg -e231b901-ed2d-3332-a5c7-b1e2bfa932f1,SESCO,II.1.1,Buenos Aires,AR-B,annual,2023,naphtha combustion consumption by freight transport,19.59958,TJ,CO2,73300.0,kg/TJ,1436649.214,kg -eb240d32-4366-34a3-8c24-3e40b8e8e1d4,SESCO,II.1.1,Buenos Aires,AR-B,annual,2023,naphtha combustion consumption by freight transport,19.59958,TJ,CH4,3.0,kg/TJ,58.798739999999995,kg -27a0b299-8a71-3fc9-9bdd-eaf96477a47f,SESCO,II.1.1,Buenos Aires,AR-B,annual,2023,naphtha combustion consumption by freight transport,19.59958,TJ,N2O,0.6,kg/TJ,11.759748,kg -2df7f0e2-a793-394d-997c-492794eb4502,SESCO,II.1.1,Capital Federal,AR-C,annual,2023,naphtha combustion consumption by freight transport,25.388994399999998,TJ,CO2,73300.0,kg/TJ,1861013.2895199999,kg -fad370c2-a40b-348f-9d7d-f2396be1ed2b,SESCO,II.1.1,Capital Federal,AR-C,annual,2023,naphtha combustion consumption by freight transport,25.388994399999998,TJ,CH4,3.0,kg/TJ,76.16698319999999,kg -17504033-42a8-3c74-a1e0-d97210e5944a,SESCO,II.1.1,Capital Federal,AR-C,annual,2023,naphtha combustion consumption by freight transport,25.388994399999998,TJ,N2O,0.6,kg/TJ,15.233396639999999,kg -17d72963-b92a-3428-8a02-96ea590c86f4,SESCO,II.1.1,Chaco,AR-H,annual,2023,naphtha combustion consumption by freight transport,0.030153199999999998,TJ,CO2,73300.0,kg/TJ,2210.2295599999998,kg -2cbd8a1b-d5a3-3267-a6e5-3c50f16a0b79,SESCO,II.1.1,Chaco,AR-H,annual,2023,naphtha combustion consumption by freight transport,0.030153199999999998,TJ,CH4,3.0,kg/TJ,0.0904596,kg -155493ee-dbe8-3239-943c-deb2f4f0376b,SESCO,II.1.1,Chaco,AR-H,annual,2023,naphtha combustion consumption by freight transport,0.030153199999999998,TJ,N2O,0.6,kg/TJ,0.018091919999999997,kg -c300c9b9-5724-3232-9b6e-5a4f12d42eb7,SESCO,II.1.1,Corrientes,AR-W,annual,2023,naphtha combustion consumption by freight transport,0.030153199999999998,TJ,CO2,73300.0,kg/TJ,2210.2295599999998,kg -70756428-9c9e-3955-87ac-74d1150801a9,SESCO,II.1.1,Corrientes,AR-W,annual,2023,naphtha combustion consumption by freight transport,0.030153199999999998,TJ,CH4,3.0,kg/TJ,0.0904596,kg -507a428f-0fcd-33ae-af72-2733185065e0,SESCO,II.1.1,Corrientes,AR-W,annual,2023,naphtha combustion consumption by freight transport,0.030153199999999998,TJ,N2O,0.6,kg/TJ,0.018091919999999997,kg -4ec9b774-baaf-3cdc-9e46-50ec88dfe839,SESCO,II.1.1,Córdoba,AR-X,annual,2023,naphtha combustion consumption by freight transport,3.3470052,TJ,CO2,73300.0,kg/TJ,245335.48116,kg -aeee371a-58d6-3488-b6e6-b05ff35623e6,SESCO,II.1.1,Córdoba,AR-X,annual,2023,naphtha combustion consumption by freight transport,3.3470052,TJ,CH4,3.0,kg/TJ,10.0410156,kg -3d5db1fd-4891-3262-b1fa-aab14af48617,SESCO,II.1.1,Córdoba,AR-X,annual,2023,naphtha combustion consumption by freight transport,3.3470052,TJ,N2O,0.6,kg/TJ,2.0082031199999997,kg -76ebe90c-ce5e-3136-956f-403a88b3cf4e,SESCO,II.1.1,Mendoza,AR-M,annual,2023,naphtha combustion consumption by freight transport,0.1809192,TJ,CO2,73300.0,kg/TJ,13261.37736,kg -63415010-a225-361f-8d35-968747c89b9e,SESCO,II.1.1,Mendoza,AR-M,annual,2023,naphtha combustion consumption by freight transport,0.1809192,TJ,CH4,3.0,kg/TJ,0.5427576000000001,kg -19f3f508-1ca3-3ace-89f5-b3c28e41ba16,SESCO,II.1.1,Mendoza,AR-M,annual,2023,naphtha combustion consumption by freight transport,0.1809192,TJ,N2O,0.6,kg/TJ,0.10855152,kg -b834c12b-2457-3e54-9156-7c4f556d5420,SESCO,II.1.1,Rio Negro,AR-R,annual,2023,naphtha combustion consumption by freight transport,0.39199159999999994,TJ,CO2,73300.0,kg/TJ,28732.984279999997,kg -76d61c25-ef96-3bb1-a835-d9cad97f2594,SESCO,II.1.1,Rio Negro,AR-R,annual,2023,naphtha combustion consumption by freight transport,0.39199159999999994,TJ,CH4,3.0,kg/TJ,1.1759747999999999,kg -7a67bfe9-ec1c-33f4-9912-32448d94da68,SESCO,II.1.1,Rio Negro,AR-R,annual,2023,naphtha combustion consumption by freight transport,0.39199159999999994,TJ,N2O,0.6,kg/TJ,0.23519495999999995,kg -ee695023-6000-3bd4-977a-ff0219bfc901,SESCO,II.1.1,Santa Fe,AR-S,annual,2023,naphtha combustion consumption by freight transport,10.0410156,TJ,CO2,73300.0,kg/TJ,736006.44348,kg -f0291abf-b3ad-3b0f-85cc-8a4074504e1b,SESCO,II.1.1,Santa Fe,AR-S,annual,2023,naphtha combustion consumption by freight transport,10.0410156,TJ,CH4,3.0,kg/TJ,30.123046799999997,kg -149b6b17-542d-34ce-becc-b50f8cb96596,SESCO,II.1.1,Santa Fe,AR-S,annual,2023,naphtha combustion consumption by freight transport,10.0410156,TJ,N2O,0.6,kg/TJ,6.0246093599999995,kg -eadabfef-8c4e-3a59-af2f-e9c1252c4c10,SESCO,II.1.1,Buenos Aires,AR-B,annual,2023,naphtha combustion consumption by freight transport,11.608982,TJ,CO2,73300.0,kg/TJ,850938.3805999999,kg -a2a70d21-7189-3c35-aa01-17ca4036abc8,SESCO,II.1.1,Buenos Aires,AR-B,annual,2023,naphtha combustion consumption by freight transport,11.608982,TJ,CH4,3.0,kg/TJ,34.826946,kg -350e7ca9-2286-31cc-966a-3b87f46ba285,SESCO,II.1.1,Buenos Aires,AR-B,annual,2023,naphtha combustion consumption by freight transport,11.608982,TJ,N2O,0.6,kg/TJ,6.9653892,kg -ddcfa4d4-fc0a-3bf2-b37f-4075472e7f64,SESCO,II.1.1,Capital Federal,AR-C,annual,2023,naphtha combustion consumption by freight transport,19.117128799999996,TJ,CO2,73300.0,kg/TJ,1401285.5410399998,kg -bbee0e45-1ad2-37f5-94ad-b9d69e20efe6,SESCO,II.1.1,Capital Federal,AR-C,annual,2023,naphtha combustion consumption by freight transport,19.117128799999996,TJ,CH4,3.0,kg/TJ,57.35138639999999,kg -7b645820-ab46-3a9a-926e-39e66a46438d,SESCO,II.1.1,Capital Federal,AR-C,annual,2023,naphtha combustion consumption by freight transport,19.117128799999996,TJ,N2O,0.6,kg/TJ,11.470277279999998,kg -b01f7882-920c-3ffb-886a-963c0b52225a,SESCO,II.1.1,Chubut,AR-U,annual,2023,naphtha combustion consumption by freight transport,0.060306399999999996,TJ,CO2,73300.0,kg/TJ,4420.4591199999995,kg -14ab8417-6b2a-32c5-b87a-57049afa18ac,SESCO,II.1.1,Chubut,AR-U,annual,2023,naphtha combustion consumption by freight transport,0.060306399999999996,TJ,CH4,3.0,kg/TJ,0.1809192,kg -ec48b238-ba28-3d95-9eb3-29ba2711908e,SESCO,II.1.1,Chubut,AR-U,annual,2023,naphtha combustion consumption by freight transport,0.060306399999999996,TJ,N2O,0.6,kg/TJ,0.036183839999999995,kg -2b366b2e-a5d1-3605-9bcd-03cdb52b61d8,SESCO,II.1.1,Córdoba,AR-X,annual,2023,naphtha combustion consumption by freight transport,1.2965876,TJ,CO2,73300.0,kg/TJ,95039.87108000001,kg -5370cfdd-8553-385f-b2b7-d3d9118caf1f,SESCO,II.1.1,Córdoba,AR-X,annual,2023,naphtha combustion consumption by freight transport,1.2965876,TJ,CH4,3.0,kg/TJ,3.8897628,kg -38bf5fba-4ac6-308f-b157-07be8c232925,SESCO,II.1.1,Córdoba,AR-X,annual,2023,naphtha combustion consumption by freight transport,1.2965876,TJ,N2O,0.6,kg/TJ,0.77795256,kg -312353b8-b336-3598-8263-3f5d9a7e8491,SESCO,II.1.1,Entre Rios,AR-E,annual,2023,naphtha combustion consumption by freight transport,0.0904596,TJ,CO2,73300.0,kg/TJ,6630.68868,kg -04359fcb-e092-3327-a6ff-4d5e5169adf6,SESCO,II.1.1,Entre Rios,AR-E,annual,2023,naphtha combustion consumption by freight transport,0.0904596,TJ,CH4,3.0,kg/TJ,0.27137880000000003,kg -cb819f4d-f1db-3643-852e-d6967e489ef8,SESCO,II.1.1,Entre Rios,AR-E,annual,2023,naphtha combustion consumption by freight transport,0.0904596,TJ,N2O,0.6,kg/TJ,0.05427576,kg -e893da2b-104f-319f-9dbe-966bc1345561,SESCO,II.1.1,La Rioja,AR-F,annual,2023,naphtha combustion consumption by freight transport,0.3618384,TJ,CO2,73300.0,kg/TJ,26522.75472,kg -1ac9d339-bb9d-3dcf-aeea-eee37277816a,SESCO,II.1.1,La Rioja,AR-F,annual,2023,naphtha combustion consumption by freight transport,0.3618384,TJ,CH4,3.0,kg/TJ,1.0855152000000001,kg -8da50a9e-082a-3b6e-8f01-855561b8d44c,SESCO,II.1.1,La Rioja,AR-F,annual,2023,naphtha combustion consumption by freight transport,0.3618384,TJ,N2O,0.6,kg/TJ,0.21710304,kg -3fe5a495-a091-3fe9-b964-eced95cd7409,SESCO,II.1.1,Neuquén,AR-Q,annual,2023,naphtha combustion consumption by freight transport,0.030153199999999998,TJ,CO2,73300.0,kg/TJ,2210.2295599999998,kg -1862f7c8-cf43-3c82-bf39-4485faba67ce,SESCO,II.1.1,Neuquén,AR-Q,annual,2023,naphtha combustion consumption by freight transport,0.030153199999999998,TJ,CH4,3.0,kg/TJ,0.0904596,kg -ec4aaa6d-f505-33d5-a150-c6b440f72dba,SESCO,II.1.1,Neuquén,AR-Q,annual,2023,naphtha combustion consumption by freight transport,0.030153199999999998,TJ,N2O,0.6,kg/TJ,0.018091919999999997,kg -47fa8cce-b1d6-3d62-8e2b-5287a43b9d4f,SESCO,II.1.1,Rio Negro,AR-R,annual,2023,naphtha combustion consumption by freight transport,0.5126044,TJ,CO2,73300.0,kg/TJ,37573.902519999996,kg -03217f83-f776-32e7-9342-1ddae716e63a,SESCO,II.1.1,Rio Negro,AR-R,annual,2023,naphtha combustion consumption by freight transport,0.5126044,TJ,CH4,3.0,kg/TJ,1.5378132,kg -467dce75-5539-313d-bd40-0ca285d121b7,SESCO,II.1.1,Rio Negro,AR-R,annual,2023,naphtha combustion consumption by freight transport,0.5126044,TJ,N2O,0.6,kg/TJ,0.30756263999999994,kg -ba004c94-bc25-328d-9217-fc80c9ff8989,SESCO,II.1.1,San Luis,AR-D,annual,2023,naphtha combustion consumption by freight transport,0.8744427999999999,TJ,CO2,73300.0,kg/TJ,64096.657239999986,kg -c3ca0bf6-4516-30df-a16e-eef1bae99c33,SESCO,II.1.1,San Luis,AR-D,annual,2023,naphtha combustion consumption by freight transport,0.8744427999999999,TJ,CH4,3.0,kg/TJ,2.6233283999999997,kg -65f09145-c369-3bd3-8efa-fef10b6832cb,SESCO,II.1.1,San Luis,AR-D,annual,2023,naphtha combustion consumption by freight transport,0.8744427999999999,TJ,N2O,0.6,kg/TJ,0.5246656799999999,kg -42847b75-32b6-3db2-ba61-32b3edb053f1,SESCO,II.1.1,Santa Fe,AR-S,annual,2023,naphtha combustion consumption by freight transport,7.628759599999999,TJ,CO2,73300.0,kg/TJ,559188.0786799999,kg -215c2a9b-50ee-36e8-b0af-700e95bc791c,SESCO,II.1.1,Santa Fe,AR-S,annual,2023,naphtha combustion consumption by freight transport,7.628759599999999,TJ,CH4,3.0,kg/TJ,22.886278799999996,kg -68ec58e6-1686-3ef6-b821-ab5e4663b736,SESCO,II.1.1,Santa Fe,AR-S,annual,2023,naphtha combustion consumption by freight transport,7.628759599999999,TJ,N2O,0.6,kg/TJ,4.577255759999999,kg -e1fae405-208e-3c87-be51-e60fff112708,SESCO,II.1.1,Buenos Aires,AR-B,annual,2023,naphtha combustion consumption by public passenger transport,0.060306399999999996,TJ,CO2,73300.0,kg/TJ,4420.4591199999995,kg -c67e2a65-09e4-3c9e-9c8e-305093412dfe,SESCO,II.1.1,Buenos Aires,AR-B,annual,2023,naphtha combustion consumption by public passenger transport,0.060306399999999996,TJ,CH4,3.0,kg/TJ,0.1809192,kg -787e7af1-d5e7-3cd7-8cbe-1745491e18fd,SESCO,II.1.1,Buenos Aires,AR-B,annual,2023,naphtha combustion consumption by public passenger transport,0.060306399999999996,TJ,N2O,0.6,kg/TJ,0.036183839999999995,kg -cde4ffc9-988b-3f8e-b3a9-0f012c953627,SESCO,II.1.1,Entre Rios,AR-E,annual,2023,naphtha combustion consumption by public passenger transport,0.2713788,TJ,CO2,73300.0,kg/TJ,19892.066039999998,kg -36b4fa6a-3a72-3000-9318-a5715dcb7369,SESCO,II.1.1,Entre Rios,AR-E,annual,2023,naphtha combustion consumption by public passenger transport,0.2713788,TJ,CH4,3.0,kg/TJ,0.8141364,kg -d89bdfbe-3057-3be0-8f7b-613c7b8fcb0d,SESCO,II.1.1,Entre Rios,AR-E,annual,2023,naphtha combustion consumption by public passenger transport,0.2713788,TJ,N2O,0.6,kg/TJ,0.16282728,kg -91e1c74f-c1f3-34e5-970f-66a609f8d576,SESCO,II.1.1,Buenos Aires,AR-B,annual,2023,naphtha combustion consumption by public passenger transport,0.030153199999999998,TJ,CO2,73300.0,kg/TJ,2210.2295599999998,kg -0f77e354-d408-3afe-b8dc-485b037f493d,SESCO,II.1.1,Buenos Aires,AR-B,annual,2023,naphtha combustion consumption by public passenger transport,0.030153199999999998,TJ,CH4,3.0,kg/TJ,0.0904596,kg -f14385c7-3c36-387b-b772-1152e2b12a65,SESCO,II.1.1,Buenos Aires,AR-B,annual,2023,naphtha combustion consumption by public passenger transport,0.030153199999999998,TJ,N2O,0.6,kg/TJ,0.018091919999999997,kg -d4101d19-4553-3c9f-a7fe-c5f885d9da73,SESCO,II.1.1,Capital Federal,AR-C,annual,2023,naphtha combustion consumption by public passenger transport,0.6633703999999999,TJ,CO2,73300.0,kg/TJ,48625.050319999995,kg -751b371a-9ab8-3c47-909a-4aa5e1ee708a,SESCO,II.1.1,Capital Federal,AR-C,annual,2023,naphtha combustion consumption by public passenger transport,0.6633703999999999,TJ,CH4,3.0,kg/TJ,1.9901111999999999,kg -adc5d22d-1f7a-3083-aa09-292442c973bc,SESCO,II.1.1,Capital Federal,AR-C,annual,2023,naphtha combustion consumption by public passenger transport,0.6633703999999999,TJ,N2O,0.6,kg/TJ,0.3980222399999999,kg -656c8d5e-8caa-3378-82be-c8082d1142c9,SESCO,II.1.1,Entre Rios,AR-E,annual,2023,naphtha combustion consumption by public passenger transport,0.6935236,TJ,CO2,73300.0,kg/TJ,50835.27988,kg -bf888c88-0aab-341c-8772-8479a502f4a7,SESCO,II.1.1,Entre Rios,AR-E,annual,2023,naphtha combustion consumption by public passenger transport,0.6935236,TJ,CH4,3.0,kg/TJ,2.0805708000000003,kg -f03c1a8c-bb84-3177-b334-20960f4dda14,SESCO,II.1.1,Entre Rios,AR-E,annual,2023,naphtha combustion consumption by public passenger transport,0.6935236,TJ,N2O,0.6,kg/TJ,0.41611416,kg -6b7b063d-ad79-36fd-8f88-f8ac69b9c3ec,SESCO,II.1.1,Catamarca,AR-K,annual,2023,naphtha combustion consumption by to the public,59.27666821999999,TJ,CO2,73300.0,kg/TJ,4344979.780525999,kg -a8f21933-6098-3637-b004-a2f81b51b599,SESCO,II.1.1,Catamarca,AR-K,annual,2023,naphtha combustion consumption by to the public,59.27666821999999,TJ,CH4,3.0,kg/TJ,177.83000466,kg -feeadb28-da39-3735-a698-236050efcf16,SESCO,II.1.1,Catamarca,AR-K,annual,2023,naphtha combustion consumption by to the public,59.27666821999999,TJ,N2O,0.6,kg/TJ,35.566000931999994,kg -ba155835-0136-38f8-8ad8-0d3919cd9e5e,SESCO,II.1.1,Chaco,AR-H,annual,2023,naphtha combustion consumption by to the public,62.86218523199999,TJ,CO2,73300.0,kg/TJ,4607798.177505599,kg -2cd028d4-1f24-31d2-91d5-af9fef927b3c,SESCO,II.1.1,Chaco,AR-H,annual,2023,naphtha combustion consumption by to the public,62.86218523199999,TJ,CH4,3.0,kg/TJ,188.58655569599995,kg -d888e0ad-7e08-3d4b-9c13-9b3351ead33f,SESCO,II.1.1,Chaco,AR-H,annual,2023,naphtha combustion consumption by to the public,62.86218523199999,TJ,N2O,0.6,kg/TJ,37.71731113919999,kg -ef392be7-876e-3970-8f62-b3c135d7cf0c,SESCO,II.1.1,Córdoba,AR-X,annual,2023,naphtha combustion consumption by to the public,8.080454536,TJ,CO2,73300.0,kg/TJ,592297.3174887999,kg -479a1912-0870-3c22-946b-bfa97d878cf8,SESCO,II.1.1,Córdoba,AR-X,annual,2023,naphtha combustion consumption by to the public,8.080454536,TJ,CH4,3.0,kg/TJ,24.241363608,kg -e9b319d2-6a03-3b18-ae08-32383367abe3,SESCO,II.1.1,Córdoba,AR-X,annual,2023,naphtha combustion consumption by to the public,8.080454536,TJ,N2O,0.6,kg/TJ,4.8482727216,kg -4beddbb1-f3ab-310c-8ff5-d335f8f41005,SESCO,II.1.1,Jujuy,AR-Y,annual,2023,naphtha combustion consumption by to the public,315.87195732399994,TJ,CO2,73300.0,kg/TJ,23153414.471849196,kg -15ba843d-ff85-3013-81bf-d12197f74476,SESCO,II.1.1,Jujuy,AR-Y,annual,2023,naphtha combustion consumption by to the public,315.87195732399994,TJ,CH4,3.0,kg/TJ,947.6158719719998,kg -474322b5-460b-3c2e-b21e-13921efbc0d1,SESCO,II.1.1,Jujuy,AR-Y,annual,2023,naphtha combustion consumption by to the public,315.87195732399994,TJ,N2O,0.6,kg/TJ,189.52317439439994,kg -ff76d951-e1d5-35ef-97fd-e389e5658cc7,SESCO,II.1.1,La Rioja,AR-F,annual,2023,naphtha combustion consumption by to the public,319.66824520399996,TJ,CO2,73300.0,kg/TJ,23431682.373453196,kg -25c273a1-ff14-32c2-aac5-37f89807529f,SESCO,II.1.1,La Rioja,AR-F,annual,2023,naphtha combustion consumption by to the public,319.66824520399996,TJ,CH4,3.0,kg/TJ,959.0047356119999,kg -abdddd1d-6828-30ee-898b-d8bbca8736aa,SESCO,II.1.1,La Rioja,AR-F,annual,2023,naphtha combustion consumption by to the public,319.66824520399996,TJ,N2O,0.6,kg/TJ,191.80094712239998,kg -cf5aca1d-45b9-3a85-afe1-80e9964a4b44,SESCO,II.1.1,Salta,AR-A,annual,2023,naphtha combustion consumption by to the public,855.53222062,TJ,CO2,73300.0,kg/TJ,62710511.771446,kg -ceb10e80-58e0-3ce4-b8b2-b6c6b83e5ed4,SESCO,II.1.1,Salta,AR-A,annual,2023,naphtha combustion consumption by to the public,855.53222062,TJ,CH4,3.0,kg/TJ,2566.59666186,kg -8b92538b-3020-3019-863a-9b537a19834d,SESCO,II.1.1,Salta,AR-A,annual,2023,naphtha combustion consumption by to the public,855.53222062,TJ,N2O,0.6,kg/TJ,513.319332372,kg -cc804ad9-6871-310f-a788-94f8d3f8fdc5,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2023,naphtha combustion consumption by to the public,292.970903456,TJ,CO2,73300.0,kg/TJ,21474767.223324798,kg -dd67e768-d44b-3c23-9afe-30439956e7f8,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2023,naphtha combustion consumption by to the public,292.970903456,TJ,CH4,3.0,kg/TJ,878.9127103679999,kg -31f18203-4d3d-35fc-a190-754fb234b1e6,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2023,naphtha combustion consumption by to the public,292.970903456,TJ,N2O,0.6,kg/TJ,175.78254207359998,kg -289b8b9a-3fd2-3699-8189-0e50d0bf99c0,SESCO,II.1.1,Tucuman,AR-T,annual,2023,naphtha combustion consumption by to the public,1583.5420354599999,TJ,CO2,73300.0,kg/TJ,116073631.19921799,kg -9776373f-d00a-3ef3-a7e3-213390eb9519,SESCO,II.1.1,Tucuman,AR-T,annual,2023,naphtha combustion consumption by to the public,1583.5420354599999,TJ,CH4,3.0,kg/TJ,4750.626106379999,kg -45d828d9-eb3b-3f5b-97fd-aed07a4ca435,SESCO,II.1.1,Tucuman,AR-T,annual,2023,naphtha combustion consumption by to the public,1583.5420354599999,TJ,N2O,0.6,kg/TJ,950.1252212759998,kg -57f70012-82a5-338f-be03-900c31cbe8ba,SESCO,II.1.1,Catamarca,AR-K,annual,2023,naphtha combustion consumption by to the public,5.3063601359999995,TJ,CO2,73300.0,kg/TJ,388956.19796879997,kg -6cc58f84-2cb4-3309-965e-2b78ebde4bbc,SESCO,II.1.1,Catamarca,AR-K,annual,2023,naphtha combustion consumption by to the public,5.3063601359999995,TJ,CH4,3.0,kg/TJ,15.919080408,kg -005b4ca6-16c2-3027-945f-aabf4c10b1ed,SESCO,II.1.1,Catamarca,AR-K,annual,2023,naphtha combustion consumption by to the public,5.3063601359999995,TJ,N2O,0.6,kg/TJ,3.1838160815999994,kg -3736293a-c04a-3e79-b20c-5cd330b43fe1,SESCO,II.1.1,Chaco,AR-H,annual,2023,naphtha combustion consumption by to the public,2.4119544680000002,TJ,CO2,73300.0,kg/TJ,176796.26250440002,kg -9253fba8-0954-3447-ba59-70f6abccd921,SESCO,II.1.1,Chaco,AR-H,annual,2023,naphtha combustion consumption by to the public,2.4119544680000002,TJ,CH4,3.0,kg/TJ,7.235863404000001,kg -0e416dd2-d1d6-3da8-a239-14c251f08137,SESCO,II.1.1,Chaco,AR-H,annual,2023,naphtha combustion consumption by to the public,2.4119544680000002,TJ,N2O,0.6,kg/TJ,1.4471726808,kg -a936facd-7344-3642-8e89-44d0c024ceea,SESCO,II.1.1,Córdoba,AR-X,annual,2023,naphtha combustion consumption by to the public,1.175673268,TJ,CO2,73300.0,kg/TJ,86176.85054439999,kg -a825c763-fed6-3700-8eda-968d46c6cda9,SESCO,II.1.1,Córdoba,AR-X,annual,2023,naphtha combustion consumption by to the public,1.175673268,TJ,CH4,3.0,kg/TJ,3.527019804,kg -78f322eb-e6bd-3778-96bd-f8f6e53d70fb,SESCO,II.1.1,Córdoba,AR-X,annual,2023,naphtha combustion consumption by to the public,1.175673268,TJ,N2O,0.6,kg/TJ,0.7054039607999999,kg -c54921d1-48b1-3fd0-b365-00604d093357,SESCO,II.1.1,Jujuy,AR-Y,annual,2023,naphtha combustion consumption by to the public,23.911186067999996,TJ,CO2,73300.0,kg/TJ,1752689.9387843998,kg -c7bbed01-a539-3419-80b1-dd8d3e6ca603,SESCO,II.1.1,Jujuy,AR-Y,annual,2023,naphtha combustion consumption by to the public,23.911186067999996,TJ,CH4,3.0,kg/TJ,71.73355820399999,kg -caebbc38-a39a-3d55-a51f-05d13a8b89cf,SESCO,II.1.1,Jujuy,AR-Y,annual,2023,naphtha combustion consumption by to the public,23.911186067999996,TJ,N2O,0.6,kg/TJ,14.346711640799997,kg -efe7be48-c29a-306a-8333-c25ff879faf2,SESCO,II.1.1,La Rioja,AR-F,annual,2023,naphtha combustion consumption by to the public,44.017038295999996,TJ,CO2,73300.0,kg/TJ,3226448.9070967995,kg -65959f1c-a95a-3803-8384-76a1f26a91ce,SESCO,II.1.1,La Rioja,AR-F,annual,2023,naphtha combustion consumption by to the public,44.017038295999996,TJ,CH4,3.0,kg/TJ,132.05111488799997,kg -c186ca30-89e1-3f31-981b-adf5ef68685f,SESCO,II.1.1,La Rioja,AR-F,annual,2023,naphtha combustion consumption by to the public,44.017038295999996,TJ,N2O,0.6,kg/TJ,26.410222977599997,kg -4d5328aa-a796-3865-8184-cb183ac0a79e,SESCO,II.1.1,Salta,AR-A,annual,2023,naphtha combustion consumption by to the public,68.66999308399998,TJ,CO2,73300.0,kg/TJ,5033510.493057199,kg -1e2b9ad1-e3b6-3664-9606-d83137141c5e,SESCO,II.1.1,Salta,AR-A,annual,2023,naphtha combustion consumption by to the public,68.66999308399998,TJ,CH4,3.0,kg/TJ,206.00997925199994,kg -a315b13a-a2d5-303f-902c-82c9b88b6792,SESCO,II.1.1,Salta,AR-A,annual,2023,naphtha combustion consumption by to the public,68.66999308399998,TJ,N2O,0.6,kg/TJ,41.20199585039999,kg -e9f427e8-1734-3e86-8f2e-6f4c65e7251d,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2023,naphtha combustion consumption by to the public,36.784793276,TJ,CO2,73300.0,kg/TJ,2696325.3471308,kg -3700cf85-d978-309e-85ed-bb918f070f2d,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2023,naphtha combustion consumption by to the public,36.784793276,TJ,CH4,3.0,kg/TJ,110.354379828,kg -0b307b1b-6f6a-34d7-8206-17e343b8247f,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2023,naphtha combustion consumption by to the public,36.784793276,TJ,N2O,0.6,kg/TJ,22.0708759656,kg -d33366ec-0584-39e2-b4f2-f601d32a036f,SESCO,II.1.1,Tucuman,AR-T,annual,2023,naphtha combustion consumption by to the public,140.15026440799997,TJ,CO2,73300.0,kg/TJ,10273014.381106397,kg -03c45597-f9c8-3f9f-95d4-21feae4ba878,SESCO,II.1.1,Tucuman,AR-T,annual,2023,naphtha combustion consumption by to the public,140.15026440799997,TJ,CH4,3.0,kg/TJ,420.4507932239999,kg -1dcab421-0f0e-322f-9044-b6665b1ac2ed,SESCO,II.1.1,Tucuman,AR-T,annual,2023,naphtha combustion consumption by to the public,140.15026440799997,TJ,N2O,0.6,kg/TJ,84.09015864479998,kg -77e99fb5-5719-364c-be88-c2d810903732,SESCO,II.5.1,Corrientes,AR-W,annual,2023,naphtha combustion consumption by agriculture machines,1.0855152,TJ,CO2,73300.0,kg/TJ,79568.26415999999,kg -b8cd3c45-99a4-3315-a21f-3a33a08f9f81,SESCO,II.5.1,Corrientes,AR-W,annual,2023,naphtha combustion consumption by agriculture machines,1.0855152,TJ,CH4,3.0,kg/TJ,3.2565456,kg -aa50358f-7f40-3635-8992-68296cf525d2,SESCO,II.5.1,Corrientes,AR-W,annual,2023,naphtha combustion consumption by agriculture machines,1.0855152,TJ,N2O,0.6,kg/TJ,0.65130912,kg -e88f1656-d246-3b05-8c9a-5220a49f1673,SESCO,II.5.1,Córdoba,AR-X,annual,2023,naphtha combustion consumption by agriculture machines,11.458215999999998,TJ,CO2,73300.0,kg/TJ,839887.2327999999,kg -5c4a78e1-3f51-33ca-a170-74846b4f77ca,SESCO,II.5.1,Córdoba,AR-X,annual,2023,naphtha combustion consumption by agriculture machines,11.458215999999998,TJ,CH4,3.0,kg/TJ,34.37464799999999,kg -4d7a4bdb-184d-3eb1-9305-9261159be420,SESCO,II.5.1,Córdoba,AR-X,annual,2023,naphtha combustion consumption by agriculture machines,11.458215999999998,TJ,N2O,0.6,kg/TJ,6.874929599999999,kg -be0f2d44-7cf0-3039-8052-8f8bc9bfec74,SESCO,II.5.1,Salta,AR-A,annual,2023,naphtha combustion consumption by agriculture machines,0.2110724,TJ,CO2,73300.0,kg/TJ,15471.60692,kg -f515962c-c30b-38b2-a23e-276ceb80a14e,SESCO,II.5.1,Salta,AR-A,annual,2023,naphtha combustion consumption by agriculture machines,0.2110724,TJ,CH4,3.0,kg/TJ,0.6332172,kg -60cdca34-b162-3b63-b335-3bc458734f1d,SESCO,II.5.1,Salta,AR-A,annual,2023,naphtha combustion consumption by agriculture machines,0.2110724,TJ,N2O,0.6,kg/TJ,0.12664344,kg -3afc16ca-0d9d-3b84-b979-cc2664d9ce65,SESCO,II.5.1,Santa Fe,AR-S,annual,2023,naphtha combustion consumption by agriculture machines,97.93759359999999,TJ,CO2,73300.0,kg/TJ,7178825.610879999,kg -3b035f0e-921f-34eb-911f-683987729695,SESCO,II.5.1,Santa Fe,AR-S,annual,2023,naphtha combustion consumption by agriculture machines,97.93759359999999,TJ,CH4,3.0,kg/TJ,293.8127807999999,kg -e90b1cda-20ae-339b-8280-c02116f78846,SESCO,II.5.1,Santa Fe,AR-S,annual,2023,naphtha combustion consumption by agriculture machines,97.93759359999999,TJ,N2O,0.6,kg/TJ,58.76255615999999,kg -59a64c9c-d550-3d66-84df-b0c3f35e5987,SESCO,II.5.1,Córdoba,AR-X,annual,2023,naphtha combustion consumption by agriculture machines,2.0504176,TJ,CO2,73300.0,kg/TJ,150295.61007999998,kg -f2269e2f-5d51-3789-b382-985e5b2746d2,SESCO,II.5.1,Córdoba,AR-X,annual,2023,naphtha combustion consumption by agriculture machines,2.0504176,TJ,CH4,3.0,kg/TJ,6.1512528,kg -0b452abe-a6f9-317e-b879-de4a95887411,SESCO,II.5.1,Córdoba,AR-X,annual,2023,naphtha combustion consumption by agriculture machines,2.0504176,TJ,N2O,0.6,kg/TJ,1.2302505599999998,kg -d828328e-aa2c-3ee1-879e-ab106b29fb39,SESCO,II.5.1,Santa Fe,AR-S,annual,2023,naphtha combustion consumption by agriculture machines,19.840805599999996,TJ,CO2,73300.0,kg/TJ,1454331.0504799997,kg -b8e4f789-3786-3911-bfcd-74851c8889b6,SESCO,II.5.1,Santa Fe,AR-S,annual,2023,naphtha combustion consumption by agriculture machines,19.840805599999996,TJ,CH4,3.0,kg/TJ,59.52241679999999,kg -5d005f0a-45ae-32f0-b0e5-35c1504afe06,SESCO,II.5.1,Santa Fe,AR-S,annual,2023,naphtha combustion consumption by agriculture machines,19.840805599999996,TJ,N2O,0.6,kg/TJ,11.904483359999997,kg -050de398-0189-3f94-9e72-c0ef3482698b,SESCO,II.5.1,Tucuman,AR-T,annual,2023,naphtha combustion consumption by agriculture machines,1.055362,TJ,CO2,73300.0,kg/TJ,77358.0346,kg -2e208925-7aa3-3962-9ced-daeceb2e0603,SESCO,II.5.1,Tucuman,AR-T,annual,2023,naphtha combustion consumption by agriculture machines,1.055362,TJ,CH4,3.0,kg/TJ,3.166086,kg -d55bf0cb-c237-35c6-8adf-c3c08e273fff,SESCO,II.5.1,Tucuman,AR-T,annual,2023,naphtha combustion consumption by agriculture machines,1.055362,TJ,N2O,0.6,kg/TJ,0.6332171999999999,kg -fe7d0096-b1be-31d2-9356-bed6a76de399,SESCO,II.1.1,Buenos Aires,AR-B,annual,2023,naphtha combustion consumption by to the public,19028.8703836,TJ,CO2,73300.0,kg/TJ,1394816199.1178799,kg -7183c7bf-06d0-3daf-8e16-3684f8e87a65,SESCO,II.1.1,Buenos Aires,AR-B,annual,2023,naphtha combustion consumption by to the public,19028.8703836,TJ,CH4,3.0,kg/TJ,57086.611150799996,kg -393c381b-f3e0-3375-9dce-363a4d3cebfc,SESCO,II.1.1,Buenos Aires,AR-B,annual,2023,naphtha combustion consumption by to the public,19028.8703836,TJ,N2O,0.6,kg/TJ,11417.322230159998,kg -deb253c0-d7c7-38c8-87fc-fbee0c88f9e8,SESCO,II.1.1,Capital Federal,AR-C,annual,2023,naphtha combustion consumption by to the public,5334.3121524,TJ,CO2,73300.0,kg/TJ,391005080.77092,kg -3cb205e3-b34c-3a50-80fe-6eb80329cf51,SESCO,II.1.1,Capital Federal,AR-C,annual,2023,naphtha combustion consumption by to the public,5334.3121524,TJ,CH4,3.0,kg/TJ,16002.9364572,kg -dfddd54b-2f47-35ae-b621-7d28e652f49e,SESCO,II.1.1,Capital Federal,AR-C,annual,2023,naphtha combustion consumption by to the public,5334.3121524,TJ,N2O,0.6,kg/TJ,3200.5872914399997,kg -e1dfa98a-6a0c-3525-8746-6b6c52074063,SESCO,II.1.1,Catamarca,AR-K,annual,2023,naphtha combustion consumption by to the public,123.41704759999999,TJ,CO2,73300.0,kg/TJ,9046469.589079998,kg -7ede949c-a802-3338-964b-e1e3f96d9f95,SESCO,II.1.1,Catamarca,AR-K,annual,2023,naphtha combustion consumption by to the public,123.41704759999999,TJ,CH4,3.0,kg/TJ,370.25114279999997,kg -c4915bb6-b64e-33d7-9383-44674fc677fc,SESCO,II.1.1,Catamarca,AR-K,annual,2023,naphtha combustion consumption by to the public,123.41704759999999,TJ,N2O,0.6,kg/TJ,74.05022856,kg -4713eb26-7b79-399e-8956-0506e12b2fb6,SESCO,II.1.1,Chaco,AR-H,annual,2023,naphtha combustion consumption by to the public,1082.952178,TJ,CO2,73300.0,kg/TJ,79380394.6474,kg -21347d5e-26f8-3744-9f28-a3313d967994,SESCO,II.1.1,Chaco,AR-H,annual,2023,naphtha combustion consumption by to the public,1082.952178,TJ,CH4,3.0,kg/TJ,3248.856534,kg -4eecb643-38b8-30e7-8522-0e080353be18,SESCO,II.1.1,Chaco,AR-H,annual,2023,naphtha combustion consumption by to the public,1082.952178,TJ,N2O,0.6,kg/TJ,649.7713067999999,kg -f9bdb1ec-e6f5-32cc-8fe2-a7f1af91e74b,SESCO,II.1.1,Corrientes,AR-W,annual,2023,naphtha combustion consumption by to the public,1284.3152475999998,TJ,CO2,73300.0,kg/TJ,94140307.64907998,kg -4c13ecd6-9dbc-3f1c-8643-2e5d44666538,SESCO,II.1.1,Corrientes,AR-W,annual,2023,naphtha combustion consumption by to the public,1284.3152475999998,TJ,CH4,3.0,kg/TJ,3852.9457427999996,kg -55decd0f-b86b-3daa-8f36-a7e6b84afe49,SESCO,II.1.1,Corrientes,AR-W,annual,2023,naphtha combustion consumption by to the public,1284.3152475999998,TJ,N2O,0.6,kg/TJ,770.5891485599999,kg -395b80ea-52e7-34ca-9756-155ec10f53d4,SESCO,II.1.1,Córdoba,AR-X,annual,2023,naphtha combustion consumption by to the public,5707.4881556,TJ,CO2,73300.0,kg/TJ,418358881.80548,kg -5541a64b-9135-326a-a00f-b185000ccb16,SESCO,II.1.1,Córdoba,AR-X,annual,2023,naphtha combustion consumption by to the public,5707.4881556,TJ,CH4,3.0,kg/TJ,17122.4644668,kg -163e8d9f-e603-32e6-a52a-15a7d40b01dd,SESCO,II.1.1,Córdoba,AR-X,annual,2023,naphtha combustion consumption by to the public,5707.4881556,TJ,N2O,0.6,kg/TJ,3424.49289336,kg -dfab71a4-4765-3c92-be09-7075c0a2ff5f,SESCO,II.1.1,Entre Rios,AR-E,annual,2023,naphtha combustion consumption by to the public,1895.7316839999999,TJ,CO2,73300.0,kg/TJ,138957132.43719998,kg -15147c63-ba87-3987-b320-20d8119a7273,SESCO,II.1.1,Entre Rios,AR-E,annual,2023,naphtha combustion consumption by to the public,1895.7316839999999,TJ,CH4,3.0,kg/TJ,5687.195051999999,kg -70bee9c1-72cd-34eb-8457-af180db27b6c,SESCO,II.1.1,Entre Rios,AR-E,annual,2023,naphtha combustion consumption by to the public,1895.7316839999999,TJ,N2O,0.6,kg/TJ,1137.4390104,kg -9662b553-e8e3-3ec8-8028-c8362f34b560,SESCO,II.1.1,Formosa,AR-P,annual,2023,naphtha combustion consumption by to the public,531.8119883999999,TJ,CO2,73300.0,kg/TJ,38981818.74971999,kg -b9d1090c-1daa-3a20-8372-b7f27d6d8401,SESCO,II.1.1,Formosa,AR-P,annual,2023,naphtha combustion consumption by to the public,531.8119883999999,TJ,CH4,3.0,kg/TJ,1595.4359651999998,kg -07c1e40c-e82e-3abf-a4e9-84e00bc3ad30,SESCO,II.1.1,Formosa,AR-P,annual,2023,naphtha combustion consumption by to the public,531.8119883999999,TJ,N2O,0.6,kg/TJ,319.08719303999993,kg -ab25c340-d8c9-375b-88e3-342e5795f7f2,SESCO,II.1.1,Jujuy,AR-Y,annual,2023,naphtha combustion consumption by to the public,405.259008,TJ,CO2,73300.0,kg/TJ,29705485.286399998,kg -aed6601c-8229-3e02-9d47-95ea6bad3444,SESCO,II.1.1,Jujuy,AR-Y,annual,2023,naphtha combustion consumption by to the public,405.259008,TJ,CH4,3.0,kg/TJ,1215.777024,kg -aa93dc68-ba58-3580-a3f8-ac0cd035325a,SESCO,II.1.1,Jujuy,AR-Y,annual,2023,naphtha combustion consumption by to the public,405.259008,TJ,N2O,0.6,kg/TJ,243.15540479999999,kg -ce9cb97a-6e14-3efd-b88e-9e50c86a3ce8,SESCO,II.1.1,La Pampa,AR-L,annual,2023,naphtha combustion consumption by to the public,486.00927759999996,TJ,CO2,73300.0,kg/TJ,35624480.04808,kg -ca2023d5-dd6b-3f56-9ab4-f97e610207b8,SESCO,II.1.1,La Pampa,AR-L,annual,2023,naphtha combustion consumption by to the public,486.00927759999996,TJ,CH4,3.0,kg/TJ,1458.0278328,kg -6ea17d7f-3172-369d-b617-fbb22d002d12,SESCO,II.1.1,La Pampa,AR-L,annual,2023,naphtha combustion consumption by to the public,486.00927759999996,TJ,N2O,0.6,kg/TJ,291.60556655999994,kg -abc832e4-1f4e-383d-9b64-f046546bfd8b,SESCO,II.1.1,La Rioja,AR-F,annual,2023,naphtha combustion consumption by to the public,332.891328,TJ,CO2,73300.0,kg/TJ,24400934.3424,kg -e19d3161-f40d-33ee-953d-26dd1189e870,SESCO,II.1.1,La Rioja,AR-F,annual,2023,naphtha combustion consumption by to the public,332.891328,TJ,CH4,3.0,kg/TJ,998.673984,kg -6137780d-9416-3735-b7ab-ee5475908476,SESCO,II.1.1,La Rioja,AR-F,annual,2023,naphtha combustion consumption by to the public,332.891328,TJ,N2O,0.6,kg/TJ,199.7347968,kg -b1f43197-5ac7-3cfd-ac8c-6a8a1f68ff37,SESCO,II.1.1,Mendoza,AR-M,annual,2023,naphtha combustion consumption by to the public,1736.5830943999997,TJ,CO2,73300.0,kg/TJ,127291540.81951998,kg -6943e670-3450-3cc4-9484-1f8fc11961cb,SESCO,II.1.1,Mendoza,AR-M,annual,2023,naphtha combustion consumption by to the public,1736.5830943999997,TJ,CH4,3.0,kg/TJ,5209.749283199999,kg -87783211-e1b1-383a-943b-c77ea588d0d9,SESCO,II.1.1,Mendoza,AR-M,annual,2023,naphtha combustion consumption by to the public,1736.5830943999997,TJ,N2O,0.6,kg/TJ,1041.9498566399998,kg -36b0ef1d-6a2a-31d5-8852-43d78bb172b8,SESCO,II.1.1,Misiones,AR-N,annual,2023,naphtha combustion consumption by to the public,2121.1268539999996,TJ,CO2,73300.0,kg/TJ,155478598.39819998,kg -f2f0ba2e-2766-3093-947d-713316b8d311,SESCO,II.1.1,Misiones,AR-N,annual,2023,naphtha combustion consumption by to the public,2121.1268539999996,TJ,CH4,3.0,kg/TJ,6363.3805619999985,kg -6d08900f-bed3-3339-92e3-222ce7f5e56b,SESCO,II.1.1,Misiones,AR-N,annual,2023,naphtha combustion consumption by to the public,2121.1268539999996,TJ,N2O,0.6,kg/TJ,1272.6761123999997,kg -bd08f700-4f06-3205-8f8f-e27e8e77e4f5,SESCO,II.1.1,Neuquén,AR-Q,annual,2023,naphtha combustion consumption by to the public,566.6389343999999,TJ,CO2,73300.0,kg/TJ,41534633.89151999,kg -c50957a8-5882-3ce1-ab82-31718c396889,SESCO,II.1.1,Neuquén,AR-Q,annual,2023,naphtha combustion consumption by to the public,566.6389343999999,TJ,CH4,3.0,kg/TJ,1699.9168031999998,kg -baef6e3e-4e0d-3f5f-ba98-157f9ec35618,SESCO,II.1.1,Neuquén,AR-Q,annual,2023,naphtha combustion consumption by to the public,566.6389343999999,TJ,N2O,0.6,kg/TJ,339.98336063999994,kg -9f86ee99-61ff-3c74-a147-7768a6c54884,SESCO,II.1.1,Rio Negro,AR-R,annual,2023,naphtha combustion consumption by to the public,352.34014199999996,TJ,CO2,73300.0,kg/TJ,25826532.408599995,kg -e8d1e2f6-e1de-39b1-b791-99f761a266e2,SESCO,II.1.1,Rio Negro,AR-R,annual,2023,naphtha combustion consumption by to the public,352.34014199999996,TJ,CH4,3.0,kg/TJ,1057.0204259999998,kg -e87a830b-bb17-3c96-8d71-650ae34b1aa0,SESCO,II.1.1,Rio Negro,AR-R,annual,2023,naphtha combustion consumption by to the public,352.34014199999996,TJ,N2O,0.6,kg/TJ,211.40408519999997,kg -7345f2cf-e85d-30ac-ac39-0a457a0f7045,SESCO,II.1.1,Salta,AR-A,annual,2023,naphtha combustion consumption by to the public,329.876008,TJ,CO2,73300.0,kg/TJ,24179911.3864,kg -9c4f7876-509a-3cd0-b076-9c23e42b2d0d,SESCO,II.1.1,Salta,AR-A,annual,2023,naphtha combustion consumption by to the public,329.876008,TJ,CH4,3.0,kg/TJ,989.6280240000001,kg -9408a0cd-5be6-3bf9-b34f-95875d82517d,SESCO,II.1.1,Salta,AR-A,annual,2023,naphtha combustion consumption by to the public,329.876008,TJ,N2O,0.6,kg/TJ,197.9256048,kg -470ed594-f096-309b-8964-c164ccda030b,SESCO,II.1.1,San Juan,AR-J,annual,2023,naphtha combustion consumption by to the public,396.0622819999999,TJ,CO2,73300.0,kg/TJ,29031365.270599995,kg -3d1fc2f3-0e51-3e42-95f1-b6e4e36226d8,SESCO,II.1.1,San Juan,AR-J,annual,2023,naphtha combustion consumption by to the public,396.0622819999999,TJ,CH4,3.0,kg/TJ,1188.1868459999998,kg -97fde843-f057-3607-ba54-3505056bebaf,SESCO,II.1.1,San Juan,AR-J,annual,2023,naphtha combustion consumption by to the public,396.0622819999999,TJ,N2O,0.6,kg/TJ,237.63736919999994,kg -1c1e76d5-18aa-31d1-8353-bb6ed8a9d32d,SESCO,II.1.1,San Luis,AR-D,annual,2023,naphtha combustion consumption by to the public,414.93818519999996,TJ,CO2,73300.0,kg/TJ,30414968.97516,kg -413be77b-76af-3f91-b382-e7b1d6911294,SESCO,II.1.1,San Luis,AR-D,annual,2023,naphtha combustion consumption by to the public,414.93818519999996,TJ,CH4,3.0,kg/TJ,1244.8145556,kg -c5fe117f-ebfd-35f4-8fe5-2193762daa2c,SESCO,II.1.1,San Luis,AR-D,annual,2023,naphtha combustion consumption by to the public,414.93818519999996,TJ,N2O,0.6,kg/TJ,248.96291111999997,kg -4b58f1c8-9a41-3b25-851c-bb51a9e0fd1b,SESCO,II.1.1,Santa Fe,AR-S,annual,2023,naphtha combustion consumption by to the public,3781.7841907999996,TJ,CO2,73300.0,kg/TJ,277204781.18564,kg -39e1f808-78aa-3253-86fd-84ca27fdeec3,SESCO,II.1.1,Santa Fe,AR-S,annual,2023,naphtha combustion consumption by to the public,3781.7841907999996,TJ,CH4,3.0,kg/TJ,11345.3525724,kg -c744a9c8-6896-3028-8db2-d03ce9a06d35,SESCO,II.1.1,Santa Fe,AR-S,annual,2023,naphtha combustion consumption by to the public,3781.7841907999996,TJ,N2O,0.6,kg/TJ,2269.0705144799995,kg -1cd42547-e572-3927-8b08-0f5e49ef8e9b,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2023,naphtha combustion consumption by to the public,740.7736643999999,TJ,CO2,73300.0,kg/TJ,54298709.60051999,kg -c3af364b-4755-372e-b929-716e919c1ee9,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2023,naphtha combustion consumption by to the public,740.7736643999999,TJ,CH4,3.0,kg/TJ,2222.3209932,kg -d218a747-224b-36be-9d9b-eec7065f7617,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2023,naphtha combustion consumption by to the public,740.7736643999999,TJ,N2O,0.6,kg/TJ,444.46419863999995,kg -7126723c-c78a-3b96-a640-be1b7d6c8ee9,SESCO,II.1.1,Tucuman,AR-T,annual,2023,naphtha combustion consumption by to the public,1325.6552848,TJ,CO2,73300.0,kg/TJ,97170532.37584,kg -c2cf0e43-f767-3c91-8d86-3e1cb460282c,SESCO,II.1.1,Tucuman,AR-T,annual,2023,naphtha combustion consumption by to the public,1325.6552848,TJ,CH4,3.0,kg/TJ,3976.9658543999994,kg -5019aa56-9374-307f-857a-34fef3ad8f61,SESCO,II.1.1,Tucuman,AR-T,annual,2023,naphtha combustion consumption by to the public,1325.6552848,TJ,N2O,0.6,kg/TJ,795.39317088,kg -95ca0275-ddc0-3a54-90e6-ec2a7272a221,SESCO,II.1.1,Buenos Aires,AR-B,annual,2023,naphtha combustion consumption by to the public,9487.191775599998,TJ,CO2,73300.0,kg/TJ,695411157.1514798,kg -25408658-66e4-38e6-b8d2-c38c21aa3d5c,SESCO,II.1.1,Buenos Aires,AR-B,annual,2023,naphtha combustion consumption by to the public,9487.191775599998,TJ,CH4,3.0,kg/TJ,28461.575326799997,kg -11c115da-b201-32af-b905-a31a0c62bb2b,SESCO,II.1.1,Buenos Aires,AR-B,annual,2023,naphtha combustion consumption by to the public,9487.191775599998,TJ,N2O,0.6,kg/TJ,5692.315065359999,kg -46fbe222-335d-3f31-b54f-29c6ac106805,SESCO,II.1.1,Capital Federal,AR-C,annual,2023,naphtha combustion consumption by to the public,3832.2606475999996,TJ,CO2,73300.0,kg/TJ,280904705.46908,kg -ca940ae2-ba14-3bec-81b3-4097a8c18f18,SESCO,II.1.1,Capital Federal,AR-C,annual,2023,naphtha combustion consumption by to the public,3832.2606475999996,TJ,CH4,3.0,kg/TJ,11496.781942799998,kg -001855d6-4071-3cc3-9c50-52b6195cfeed,SESCO,II.1.1,Capital Federal,AR-C,annual,2023,naphtha combustion consumption by to the public,3832.2606475999996,TJ,N2O,0.6,kg/TJ,2299.3563885599997,kg -3ca5444a-caca-304f-8d06-c07cf6acb3fd,SESCO,II.1.1,Catamarca,AR-K,annual,2023,naphtha combustion consumption by to the public,56.20556479999999,TJ,CO2,73300.0,kg/TJ,4119867.899839999,kg -f2f83416-b328-38fd-8142-c1e4831d9290,SESCO,II.1.1,Catamarca,AR-K,annual,2023,naphtha combustion consumption by to the public,56.20556479999999,TJ,CH4,3.0,kg/TJ,168.61669439999997,kg -b7cb30f6-ca5d-3695-805d-555435cab87c,SESCO,II.1.1,Catamarca,AR-K,annual,2023,naphtha combustion consumption by to the public,56.20556479999999,TJ,N2O,0.6,kg/TJ,33.72333887999999,kg -44ea51c2-4824-37aa-8c7b-0f037133a2fd,SESCO,II.1.1,Chaco,AR-H,annual,2023,naphtha combustion consumption by to the public,318.0861068,TJ,CO2,73300.0,kg/TJ,23315711.62844,kg -c902926c-5503-3827-8224-ba63c43e3bfd,SESCO,II.1.1,Chaco,AR-H,annual,2023,naphtha combustion consumption by to the public,318.0861068,TJ,CH4,3.0,kg/TJ,954.2583204,kg -a49c90ae-32a1-3ea3-9502-0778484665af,SESCO,II.1.1,Chaco,AR-H,annual,2023,naphtha combustion consumption by to the public,318.0861068,TJ,N2O,0.6,kg/TJ,190.85166407999998,kg -9b8b47a5-0977-3bb6-afed-881e30294a1b,SESCO,II.1.1,Corrientes,AR-W,annual,2023,naphtha combustion consumption by to the public,412.16409079999994,TJ,CO2,73300.0,kg/TJ,30211627.855639994,kg -5db8353b-8f4e-3bd1-aaa0-867be1dcc037,SESCO,II.1.1,Corrientes,AR-W,annual,2023,naphtha combustion consumption by to the public,412.16409079999994,TJ,CH4,3.0,kg/TJ,1236.4922723999998,kg -8c88cddc-7621-3227-b0ff-55afa67903e8,SESCO,II.1.1,Corrientes,AR-W,annual,2023,naphtha combustion consumption by to the public,412.16409079999994,TJ,N2O,0.6,kg/TJ,247.29845447999995,kg -a09ec869-7165-3b84-977d-64aacde8ccf2,SESCO,II.1.1,Córdoba,AR-X,annual,2023,naphtha combustion consumption by to the public,2053.5535328,TJ,CO2,73300.0,kg/TJ,150525473.95424,kg -26137746-deaf-339c-b7a9-4f9f1d1679de,SESCO,II.1.1,Córdoba,AR-X,annual,2023,naphtha combustion consumption by to the public,2053.5535328,TJ,CH4,3.0,kg/TJ,6160.6605984,kg -c124d1ee-7230-37af-bcf1-5b4d32d379eb,SESCO,II.1.1,Córdoba,AR-X,annual,2023,naphtha combustion consumption by to the public,2053.5535328,TJ,N2O,0.6,kg/TJ,1232.13211968,kg -b69d8d36-1b8e-3a65-bdbd-1dc942410d79,SESCO,II.1.1,Entre Rios,AR-E,annual,2023,naphtha combustion consumption by to the public,766.042046,TJ,CO2,73300.0,kg/TJ,56150881.9718,kg -af66393c-e233-3eb6-9859-7ec0cfd48e37,SESCO,II.1.1,Entre Rios,AR-E,annual,2023,naphtha combustion consumption by to the public,766.042046,TJ,CH4,3.0,kg/TJ,2298.126138,kg -6f407373-ee63-3bb0-9da4-562b68afce66,SESCO,II.1.1,Entre Rios,AR-E,annual,2023,naphtha combustion consumption by to the public,766.042046,TJ,N2O,0.6,kg/TJ,459.6252276,kg -020ab2c1-5541-3c9a-8914-a88b8b43304f,SESCO,II.1.1,Formosa,AR-P,annual,2023,naphtha combustion consumption by to the public,195.66411479999996,TJ,CO2,73300.0,kg/TJ,14342179.614839997,kg -c1289285-10c7-3a59-b132-4b04a2b04b0a,SESCO,II.1.1,Formosa,AR-P,annual,2023,naphtha combustion consumption by to the public,195.66411479999996,TJ,CH4,3.0,kg/TJ,586.9923443999999,kg -ef309146-a867-3ac8-acd1-5fb996600eb1,SESCO,II.1.1,Formosa,AR-P,annual,2023,naphtha combustion consumption by to the public,195.66411479999996,TJ,N2O,0.6,kg/TJ,117.39846887999997,kg -f24f8284-a212-31a5-8cb2-ee5fca7f588a,SESCO,II.1.1,Jujuy,AR-Y,annual,2023,naphtha combustion consumption by to the public,99.9277048,TJ,CO2,73300.0,kg/TJ,7324700.76184,kg -b10810c0-ffaf-3578-bb23-d310ed0110c2,SESCO,II.1.1,Jujuy,AR-Y,annual,2023,naphtha combustion consumption by to the public,99.9277048,TJ,CH4,3.0,kg/TJ,299.7831144,kg -5a60eed0-d379-3e55-930a-e2e9fe45fb0a,SESCO,II.1.1,Jujuy,AR-Y,annual,2023,naphtha combustion consumption by to the public,99.9277048,TJ,N2O,0.6,kg/TJ,59.95662288,kg -6fc90fed-ecf8-3eb8-a2c6-29f47fde517d,SESCO,II.1.1,La Pampa,AR-L,annual,2023,naphtha combustion consumption by to the public,230.7021332,TJ,CO2,73300.0,kg/TJ,16910466.36356,kg -89c2ab24-69e8-3ec8-97db-390814ee878a,SESCO,II.1.1,La Pampa,AR-L,annual,2023,naphtha combustion consumption by to the public,230.7021332,TJ,CH4,3.0,kg/TJ,692.1063996,kg -5bcd4b0a-dea7-385c-bd8e-5dc9c747c1cc,SESCO,II.1.1,La Pampa,AR-L,annual,2023,naphtha combustion consumption by to the public,230.7021332,TJ,N2O,0.6,kg/TJ,138.42127992,kg -5b11973a-c97d-3aad-9a19-6c84e113b21b,SESCO,II.1.1,La Rioja,AR-F,annual,2023,naphtha combustion consumption by to the public,116.81349679999998,TJ,CO2,73300.0,kg/TJ,8562429.31544,kg -d5ab9f5a-72ca-3ddf-8a2b-19826d8eeccc,SESCO,II.1.1,La Rioja,AR-F,annual,2023,naphtha combustion consumption by to the public,116.81349679999998,TJ,CH4,3.0,kg/TJ,350.44049039999993,kg -357436c7-1dd5-3340-aa53-d918b88b1cb6,SESCO,II.1.1,La Rioja,AR-F,annual,2023,naphtha combustion consumption by to the public,116.81349679999998,TJ,N2O,0.6,kg/TJ,70.08809807999998,kg -0298e828-9dd2-30ea-97e5-9c5b98ceb6fc,SESCO,II.1.1,Mendoza,AR-M,annual,2023,naphtha combustion consumption by to the public,812.4176676,TJ,CO2,73300.0,kg/TJ,59550215.03507999,kg -1665cc35-1630-30c6-8ac7-313f87ee2f4c,SESCO,II.1.1,Mendoza,AR-M,annual,2023,naphtha combustion consumption by to the public,812.4176676,TJ,CH4,3.0,kg/TJ,2437.2530028,kg -4727c27e-31dd-3c1f-a585-86342d36f715,SESCO,II.1.1,Mendoza,AR-M,annual,2023,naphtha combustion consumption by to the public,812.4176676,TJ,N2O,0.6,kg/TJ,487.45060055999994,kg -d5c0cb99-5eba-3891-8137-e1827719c613,SESCO,II.1.1,Misiones,AR-N,annual,2023,naphtha combustion consumption by to the public,542.8782127999999,TJ,CO2,73300.0,kg/TJ,39792972.998239994,kg -328d41ae-b5cf-3293-a7a5-7824d723207d,SESCO,II.1.1,Misiones,AR-N,annual,2023,naphtha combustion consumption by to the public,542.8782127999999,TJ,CH4,3.0,kg/TJ,1628.6346383999999,kg -13ce14f3-b7c4-3cf3-beaf-9d2a3bd6dbb8,SESCO,II.1.1,Misiones,AR-N,annual,2023,naphtha combustion consumption by to the public,542.8782127999999,TJ,N2O,0.6,kg/TJ,325.72692767999996,kg -45bfbc2a-94f1-30d3-a301-29105618e337,SESCO,II.1.1,Neuquén,AR-Q,annual,2023,naphtha combustion consumption by to the public,342.66096479999993,TJ,CO2,73300.0,kg/TJ,25117048.719839994,kg -2b549698-a33f-34b3-b6e7-5ad3eb715e15,SESCO,II.1.1,Neuquén,AR-Q,annual,2023,naphtha combustion consumption by to the public,342.66096479999993,TJ,CH4,3.0,kg/TJ,1027.9828943999999,kg -1403430f-011f-36ca-92ad-4648f4fa4768,SESCO,II.1.1,Neuquén,AR-Q,annual,2023,naphtha combustion consumption by to the public,342.66096479999993,TJ,N2O,0.6,kg/TJ,205.59657887999995,kg -74fcb5eb-4cd9-3897-86eb-e71a6b733cdb,SESCO,II.1.1,Rio Negro,AR-R,annual,2023,naphtha combustion consumption by to the public,182.72839199999999,TJ,CO2,73300.0,kg/TJ,13393991.133599998,kg -7009ac40-c0f8-3fa9-9e4c-a62c4b24537a,SESCO,II.1.1,Rio Negro,AR-R,annual,2023,naphtha combustion consumption by to the public,182.72839199999999,TJ,CH4,3.0,kg/TJ,548.185176,kg -56afbc0f-3564-3ae1-a676-f8e002a705e0,SESCO,II.1.1,Rio Negro,AR-R,annual,2023,naphtha combustion consumption by to the public,182.72839199999999,TJ,N2O,0.6,kg/TJ,109.63703519999999,kg -261ee0ae-b1e3-384a-9b6e-c05636313610,SESCO,II.1.1,Salta,AR-A,annual,2023,naphtha combustion consumption by to the public,150.97707239999997,TJ,CO2,73300.0,kg/TJ,11066619.406919997,kg -05521e85-301a-359d-9b07-b68fa1c04afa,SESCO,II.1.1,Salta,AR-A,annual,2023,naphtha combustion consumption by to the public,150.97707239999997,TJ,CH4,3.0,kg/TJ,452.9312171999999,kg -56cfacec-e406-3688-96a6-82d79f8a4ad0,SESCO,II.1.1,Salta,AR-A,annual,2023,naphtha combustion consumption by to the public,150.97707239999997,TJ,N2O,0.6,kg/TJ,90.58624343999998,kg -9b682d9c-033d-3daf-9458-216f1e9b9101,SESCO,II.1.1,San Juan,AR-J,annual,2023,naphtha combustion consumption by to the public,129.357228,TJ,CO2,73300.0,kg/TJ,9481884.8124,kg -d49393d8-7ce3-3476-8163-9311a88e4f40,SESCO,II.1.1,San Juan,AR-J,annual,2023,naphtha combustion consumption by to the public,129.357228,TJ,CH4,3.0,kg/TJ,388.071684,kg -b623b7c9-ecc0-3826-a195-4df24aae400d,SESCO,II.1.1,San Juan,AR-J,annual,2023,naphtha combustion consumption by to the public,129.357228,TJ,N2O,0.6,kg/TJ,77.61433679999999,kg -4027f017-2eed-3c11-96a9-b5cd332398b3,SESCO,II.1.1,San Luis,AR-D,annual,2023,naphtha combustion consumption by to the public,161.10854759999998,TJ,CO2,73300.0,kg/TJ,11809256.539079998,kg -7230ffad-3cf4-340a-8b2c-07e283f0ddff,SESCO,II.1.1,San Luis,AR-D,annual,2023,naphtha combustion consumption by to the public,161.10854759999998,TJ,CH4,3.0,kg/TJ,483.32564279999997,kg -2d9464eb-fd27-3eee-b151-2320c699f50c,SESCO,II.1.1,San Luis,AR-D,annual,2023,naphtha combustion consumption by to the public,161.10854759999998,TJ,N2O,0.6,kg/TJ,96.66512855999999,kg -e9ce82a5-f626-3b2e-9387-a36f2a76b2f8,SESCO,II.1.1,Santa Fe,AR-S,annual,2023,naphtha combustion consumption by to the public,1796.0452047999997,TJ,CO2,73300.0,kg/TJ,131650113.51183999,kg -c73c636d-09ff-3e8c-98aa-2d3f967642c6,SESCO,II.1.1,Santa Fe,AR-S,annual,2023,naphtha combustion consumption by to the public,1796.0452047999997,TJ,CH4,3.0,kg/TJ,5388.135614399999,kg -85789472-ae8a-388d-a5ca-a769597d9ce2,SESCO,II.1.1,Santa Fe,AR-S,annual,2023,naphtha combustion consumption by to the public,1796.0452047999997,TJ,N2O,0.6,kg/TJ,1077.62712288,kg -69fa84b1-6a7c-360b-bdf6-4e3622488ab2,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2023,naphtha combustion consumption by to the public,254.04071,TJ,CO2,73300.0,kg/TJ,18621184.042999998,kg -0b4f6852-7da0-3e36-a68e-98adbbdc4460,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2023,naphtha combustion consumption by to the public,254.04071,TJ,CH4,3.0,kg/TJ,762.12213,kg -f4fc256e-67e7-34ab-88c6-3c90a414d94d,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2023,naphtha combustion consumption by to the public,254.04071,TJ,N2O,0.6,kg/TJ,152.42442599999998,kg -0a2532e6-4565-3339-ba3e-1eb57bb2c33b,SESCO,II.1.1,Tucuman,AR-T,annual,2023,naphtha combustion consumption by to the public,322.79000599999995,TJ,CO2,73300.0,kg/TJ,23660507.439799998,kg -28f46ca0-98f8-323e-9ca2-b4bc817229f6,SESCO,II.1.1,Tucuman,AR-T,annual,2023,naphtha combustion consumption by to the public,322.79000599999995,TJ,CH4,3.0,kg/TJ,968.3700179999998,kg -fae2ba71-e6a0-3f82-b27e-84089987fdd7,SESCO,II.1.1,Tucuman,AR-T,annual,2023,naphtha combustion consumption by to the public,322.79000599999995,TJ,N2O,0.6,kg/TJ,193.67400359999996,kg -6472ecb6-f5bd-34d6-b567-c766f16d80e7,SESCO,I.3.1,Buenos Aires,AR-B,annual,2023,naphtha combustion consumption by petrochemical industries,9.226879199999999,TJ,CO2,73300.0,kg/TJ,676330.24536,kg -1fb36057-3cd9-3fd4-b555-aa1db66fc906,SESCO,I.3.1,Buenos Aires,AR-B,annual,2023,naphtha combustion consumption by petrochemical industries,9.226879199999999,TJ,CH4,3.0,kg/TJ,27.680637599999997,kg -f846d315-bc01-39b8-97e1-de576249a02b,SESCO,I.3.1,Buenos Aires,AR-B,annual,2023,naphtha combustion consumption by petrochemical industries,9.226879199999999,TJ,N2O,0.6,kg/TJ,5.536127519999999,kg -8bff4e56-db94-30f6-91b2-14a703c8c68c,SESCO,I.3.1,Misiones,AR-N,annual,2023,naphtha combustion consumption by petrochemical industries,0.1809192,TJ,CO2,73300.0,kg/TJ,13261.37736,kg -66028856-268c-31ff-b018-ea69f3b9f664,SESCO,I.3.1,Misiones,AR-N,annual,2023,naphtha combustion consumption by petrochemical industries,0.1809192,TJ,CH4,3.0,kg/TJ,0.5427576000000001,kg -b8e4adb0-7860-36ee-8ef8-183e7a49e9d8,SESCO,I.3.1,Misiones,AR-N,annual,2023,naphtha combustion consumption by petrochemical industries,0.1809192,TJ,N2O,0.6,kg/TJ,0.10855152,kg -c16fb4a3-b5ce-3ddb-ad9a-7fe749224fe5,SESCO,I.3.1,Buenos Aires,AR-B,annual,2023,naphtha combustion consumption by petrochemical industries,4.1611416,TJ,CO2,73300.0,kg/TJ,305011.67928,kg -d79da9ab-bc1e-3a39-ad84-c5a47cecea44,SESCO,I.3.1,Buenos Aires,AR-B,annual,2023,naphtha combustion consumption by petrochemical industries,4.1611416,TJ,CH4,3.0,kg/TJ,12.483424799999998,kg -3061e1ee-b7b1-3df8-a1d2-9e94a2ba9f88,SESCO,I.3.1,Buenos Aires,AR-B,annual,2023,naphtha combustion consumption by petrochemical industries,4.1611416,TJ,N2O,0.6,kg/TJ,2.4966849599999996,kg -faa33f68-cee5-3b50-a4a8-6f92346b72f1,SESCO,I.3.1,Entre Rios,AR-E,annual,2023,naphtha combustion consumption by petrochemical industries,0.301532,TJ,CO2,73300.0,kg/TJ,22102.2956,kg -da85817c-f307-31a2-8ffa-fa3288200ab5,SESCO,I.3.1,Entre Rios,AR-E,annual,2023,naphtha combustion consumption by petrochemical industries,0.301532,TJ,CH4,3.0,kg/TJ,0.9045960000000001,kg -d7922e64-e43f-3607-a31e-1fbf41b1ee1f,SESCO,I.3.1,Entre Rios,AR-E,annual,2023,naphtha combustion consumption by petrochemical industries,0.301532,TJ,N2O,0.6,kg/TJ,0.1809192,kg -6e9bf3f1-2ca5-3713-af15-82447bac4122,SESCO,I.3.1,La Pampa,AR-L,annual,2023,naphtha combustion consumption by petrochemical industries,0.8744427999999999,TJ,CO2,73300.0,kg/TJ,64096.657239999986,kg -954a97a2-69a7-36c7-91f6-02eda369265d,SESCO,I.3.1,La Pampa,AR-L,annual,2023,naphtha combustion consumption by petrochemical industries,0.8744427999999999,TJ,CH4,3.0,kg/TJ,2.6233283999999997,kg -ea91d3a4-4eb0-35d7-af26-4a631464b7e5,SESCO,I.3.1,La Pampa,AR-L,annual,2023,naphtha combustion consumption by petrochemical industries,0.8744427999999999,TJ,N2O,0.6,kg/TJ,0.5246656799999999,kg -d3d5e95b-6728-3912-8d81-6e62649cd8a3,SESCO,I.3.1,Neuquén,AR-Q,annual,2023,naphtha combustion consumption by petrochemical industries,0.5729107999999999,TJ,CO2,73300.0,kg/TJ,41994.361639999996,kg -07bfd542-28b7-35a7-9227-76695f8970f0,SESCO,I.3.1,Neuquén,AR-Q,annual,2023,naphtha combustion consumption by petrochemical industries,0.5729107999999999,TJ,CH4,3.0,kg/TJ,1.7187324,kg -397101bb-9403-3939-b0e4-bb1381f22465,SESCO,I.3.1,Neuquén,AR-Q,annual,2023,naphtha combustion consumption by petrochemical industries,0.5729107999999999,TJ,N2O,0.6,kg/TJ,0.34374647999999997,kg -464be738-e753-38b4-81d1-be7c825668ee,SESCO,I.3.1,Rio Negro,AR-R,annual,2023,naphtha combustion consumption by petrochemical industries,0.6332171999999999,TJ,CO2,73300.0,kg/TJ,46414.820759999995,kg -e173495c-7d22-307f-a04d-b8591c08c577,SESCO,I.3.1,Rio Negro,AR-R,annual,2023,naphtha combustion consumption by petrochemical industries,0.6332171999999999,TJ,CH4,3.0,kg/TJ,1.8996515999999999,kg -e6fe4792-3f22-3152-9e84-8f2a2689afb4,SESCO,I.3.1,Rio Negro,AR-R,annual,2023,naphtha combustion consumption by petrochemical industries,0.6332171999999999,TJ,N2O,0.6,kg/TJ,0.37993031999999993,kg -7a113046-e5d2-34c1-974e-a114b1298cc7,SESCO,II.5.1,Buenos Aires,AR-B,annual,2023,naphtha combustion consumption by agriculture machines,6.1613239688,TJ,CO2,73300.0,kg/TJ,451625.04691304,kg -f747a02f-8fcf-32f7-8447-d3a48c2316cc,SESCO,II.5.1,Buenos Aires,AR-B,annual,2023,naphtha combustion consumption by agriculture machines,6.1613239688,TJ,CH4,3.0,kg/TJ,18.4839719064,kg -10de4e7c-03a8-37bf-be0e-0539e9c78b94,SESCO,II.5.1,Buenos Aires,AR-B,annual,2023,naphtha combustion consumption by agriculture machines,6.1613239688,TJ,N2O,0.6,kg/TJ,3.6967943812799997,kg -2da6e29f-f539-3111-afee-c1705db672e0,SESCO,II.5.1,Capital Federal,AR-C,annual,2023,naphtha combustion consumption by agriculture machines,5.3002993428,TJ,CO2,73300.0,kg/TJ,388511.94182724,kg -08d62458-e090-3736-bc49-cd5fd86a9831,SESCO,II.5.1,Capital Federal,AR-C,annual,2023,naphtha combustion consumption by agriculture machines,5.3002993428,TJ,CH4,3.0,kg/TJ,15.9008980284,kg -60354338-1e53-31d8-b858-de4474018020,SESCO,II.5.1,Capital Federal,AR-C,annual,2023,naphtha combustion consumption by agriculture machines,5.3002993428,TJ,N2O,0.6,kg/TJ,3.18017960568,kg -bf684b40-c862-32c3-9670-655427dce71c,SESCO,II.5.1,Córdoba,AR-X,annual,2023,naphtha combustion consumption by agriculture machines,7.161234233999999,TJ,CO2,73300.0,kg/TJ,524918.4693521999,kg -8031943c-00db-3650-b176-27f90f980cfa,SESCO,II.5.1,Córdoba,AR-X,annual,2023,naphtha combustion consumption by agriculture machines,7.161234233999999,TJ,CH4,3.0,kg/TJ,21.483702702,kg -cca41196-0361-32f6-809a-32c7370ad788,SESCO,II.5.1,Córdoba,AR-X,annual,2023,naphtha combustion consumption by agriculture machines,7.161234233999999,TJ,N2O,0.6,kg/TJ,4.296740540399999,kg -e738e0ff-6836-3e34-ba0b-10f0cc7c1383,SESCO,II.5.1,Santa Fe,AR-S,annual,2023,naphtha combustion consumption by agriculture machines,14.240421610799999,TJ,CO2,73300.0,kg/TJ,1043822.9040716399,kg -3e5fe84d-afca-3b0a-bf77-fa173e7bba63,SESCO,II.5.1,Santa Fe,AR-S,annual,2023,naphtha combustion consumption by agriculture machines,14.240421610799999,TJ,CH4,3.0,kg/TJ,42.721264832399996,kg -1d16da43-5c48-3e97-bab2-85567d3c819c,SESCO,II.5.1,Santa Fe,AR-S,annual,2023,naphtha combustion consumption by agriculture machines,14.240421610799999,TJ,N2O,0.6,kg/TJ,8.544252966479998,kg -787916d4-247e-301b-b6d8-1237da659d72,SESCO,II.5.1,Buenos Aires,AR-B,annual,2023,naphtha combustion consumption by agriculture machines,4.1705795515999995,TJ,CO2,73300.0,kg/TJ,305703.48113227997,kg -a137ccf6-cb47-3cf7-8c22-e32234fefbb1,SESCO,II.5.1,Buenos Aires,AR-B,annual,2023,naphtha combustion consumption by agriculture machines,4.1705795515999995,TJ,CH4,3.0,kg/TJ,12.511738654799998,kg -80a7d878-b9eb-3e0f-9a03-fcd30ae12263,SESCO,II.5.1,Buenos Aires,AR-B,annual,2023,naphtha combustion consumption by agriculture machines,4.1705795515999995,TJ,N2O,0.6,kg/TJ,2.5023477309599995,kg -4082babb-3f00-3c11-aa10-cc2318150cc0,SESCO,II.5.1,Capital Federal,AR-C,annual,2023,naphtha combustion consumption by agriculture machines,1.2578708912,TJ,CO2,73300.0,kg/TJ,92201.93632496,kg -554c6e52-6943-3baa-a6df-040609279a23,SESCO,II.5.1,Capital Federal,AR-C,annual,2023,naphtha combustion consumption by agriculture machines,1.2578708912,TJ,CH4,3.0,kg/TJ,3.7736126736,kg -813b0cb0-5b80-39d7-b215-544a52f07f58,SESCO,II.5.1,Capital Federal,AR-C,annual,2023,naphtha combustion consumption by agriculture machines,1.2578708912,TJ,N2O,0.6,kg/TJ,0.7547225347200001,kg -61171998-2a7f-30c9-8f1d-2e9333bfeb95,SESCO,II.5.1,Córdoba,AR-X,annual,2023,naphtha combustion consumption by agriculture machines,2.7005808983999997,TJ,CO2,73300.0,kg/TJ,197952.57985271997,kg -49ad54c2-7252-393b-97e2-6ad121b4b5db,SESCO,II.5.1,Córdoba,AR-X,annual,2023,naphtha combustion consumption by agriculture machines,2.7005808983999997,TJ,CH4,3.0,kg/TJ,8.101742695199999,kg -761b6143-b110-3bce-8912-d4434b31e87d,SESCO,II.5.1,Córdoba,AR-X,annual,2023,naphtha combustion consumption by agriculture machines,2.7005808983999997,TJ,N2O,0.6,kg/TJ,1.6203485390399999,kg -c33f1594-f4ce-3531-a416-ef69d318e8bf,SESCO,II.5.1,Santa Fe,AR-S,annual,2023,naphtha combustion consumption by agriculture machines,3.6939479191999993,TJ,CO2,73300.0,kg/TJ,270766.38247735996,kg -0fb841c8-657f-3817-9c63-70ad43c2892f,SESCO,II.5.1,Santa Fe,AR-S,annual,2023,naphtha combustion consumption by agriculture machines,3.6939479191999993,TJ,CH4,3.0,kg/TJ,11.081843757599998,kg -061c6975-c20c-35e0-9b61-6154bad58e14,SESCO,II.5.1,Santa Fe,AR-S,annual,2023,naphtha combustion consumption by agriculture machines,3.6939479191999993,TJ,N2O,0.6,kg/TJ,2.2163687515199997,kg -50edafd9-528c-3517-9cbb-70a3fad4e3b6,SESCO,II.1.1,Buenos Aires,AR-B,annual,2023,naphtha combustion consumption by to the public,5268.7190219972,TJ,CO2,73300.0,kg/TJ,386197104.31239474,kg -7cad6bc9-cf97-36b3-a176-bcf30cdf1a2f,SESCO,II.1.1,Buenos Aires,AR-B,annual,2023,naphtha combustion consumption by to the public,5268.7190219972,TJ,CH4,3.0,kg/TJ,15806.1570659916,kg -1630ccbb-4dad-3da2-bda4-52eaca655bd1,SESCO,II.1.1,Buenos Aires,AR-B,annual,2023,naphtha combustion consumption by to the public,5268.7190219972,TJ,N2O,0.6,kg/TJ,3161.23141319832,kg -c764e245-2b2e-3718-b0dd-498c4b30bc0c,SESCO,II.1.1,Capital Federal,AR-C,annual,2023,naphtha combustion consumption by to the public,400.14577911,TJ,CO2,73300.0,kg/TJ,29330685.608762998,kg -166a4de1-3e0e-3129-885b-dfdfa86f0fc6,SESCO,II.1.1,Capital Federal,AR-C,annual,2023,naphtha combustion consumption by to the public,400.14577911,TJ,CH4,3.0,kg/TJ,1200.43733733,kg -89021b77-426b-3dae-97b8-0f3adbc233aa,SESCO,II.1.1,Capital Federal,AR-C,annual,2023,naphtha combustion consumption by to the public,400.14577911,TJ,N2O,0.6,kg/TJ,240.08746746599996,kg -5871870e-2258-3437-964a-deb73ed6855c,SESCO,II.1.1,Chaco,AR-H,annual,2023,naphtha combustion consumption by to the public,59.32446104199999,TJ,CO2,73300.0,kg/TJ,4348482.994378599,kg -c1e20ddf-3016-3102-a81a-0c4e90fa7b32,SESCO,II.1.1,Chaco,AR-H,annual,2023,naphtha combustion consumption by to the public,59.32446104199999,TJ,CH4,3.0,kg/TJ,177.97338312599996,kg -fc61a279-a381-3dca-8bbe-ff6174abc5c8,SESCO,II.1.1,Chaco,AR-H,annual,2023,naphtha combustion consumption by to the public,59.32446104199999,TJ,N2O,0.6,kg/TJ,35.594676625199995,kg -5e539064-d20c-30fa-a6a0-d891ca0bb62e,SESCO,II.1.1,Chubut,AR-U,annual,2023,naphtha combustion consumption by to the public,317.95267889,TJ,CO2,73300.0,kg/TJ,23305931.362637002,kg -31893350-f7b2-36b3-9d7b-8c196ac2982a,SESCO,II.1.1,Chubut,AR-U,annual,2023,naphtha combustion consumption by to the public,317.95267889,TJ,CH4,3.0,kg/TJ,953.85803667,kg -ff3efdc9-773d-3215-95ba-c6a5ea5b2cbc,SESCO,II.1.1,Chubut,AR-U,annual,2023,naphtha combustion consumption by to the public,317.95267889,TJ,N2O,0.6,kg/TJ,190.771607334,kg -62e1d1e0-caf2-3243-83fd-07273cd0cbd0,SESCO,II.1.1,Corrientes,AR-W,annual,2023,naphtha combustion consumption by to the public,468.13617937239997,TJ,CO2,73300.0,kg/TJ,34314381.947996914,kg -3e9672ef-0bcd-35aa-9c5d-20c91b15005d,SESCO,II.1.1,Corrientes,AR-W,annual,2023,naphtha combustion consumption by to the public,468.13617937239997,TJ,CH4,3.0,kg/TJ,1404.4085381172,kg -ea8e5137-dc32-392f-99d8-494d9df5dfb7,SESCO,II.1.1,Corrientes,AR-W,annual,2023,naphtha combustion consumption by to the public,468.13617937239997,TJ,N2O,0.6,kg/TJ,280.88170762344,kg -de5182c2-7f9b-3a80-9c63-32793b76a25c,SESCO,II.1.1,Córdoba,AR-X,annual,2023,naphtha combustion consumption by to the public,1101.5292629879998,TJ,CO2,73300.0,kg/TJ,80742094.97702038,kg -3251ba19-bfb8-34b2-9685-ce5d49dc5b55,SESCO,II.1.1,Córdoba,AR-X,annual,2023,naphtha combustion consumption by to the public,1101.5292629879998,TJ,CH4,3.0,kg/TJ,3304.5877889639996,kg -2b25137e-d3d2-3c86-b6a2-4590d38382e8,SESCO,II.1.1,Córdoba,AR-X,annual,2023,naphtha combustion consumption by to the public,1101.5292629879998,TJ,N2O,0.6,kg/TJ,660.9175577927998,kg -dd60d9f4-ee7e-3dad-b232-3ccf05df4cc4,SESCO,II.1.1,Entre Rios,AR-E,annual,2023,naphtha combustion consumption by to the public,875.7265121836,TJ,CO2,73300.0,kg/TJ,64190753.34305788,kg -0aab8f51-5585-3323-858c-9368a51ffad6,SESCO,II.1.1,Entre Rios,AR-E,annual,2023,naphtha combustion consumption by to the public,875.7265121836,TJ,CH4,3.0,kg/TJ,2627.1795365508,kg -e9205511-c3cd-3d6b-81b0-14e95b35f037,SESCO,II.1.1,Entre Rios,AR-E,annual,2023,naphtha combustion consumption by to the public,875.7265121836,TJ,N2O,0.6,kg/TJ,525.43590731016,kg -ff1e4f98-11d4-3f98-ae3a-60b6807842b9,SESCO,II.1.1,Jujuy,AR-Y,annual,2023,naphtha combustion consumption by to the public,43.7273263504,TJ,CO2,73300.0,kg/TJ,3205213.02148432,kg -8b900670-4e7f-37ad-a4e0-2b11b3ab0f57,SESCO,II.1.1,Jujuy,AR-Y,annual,2023,naphtha combustion consumption by to the public,43.7273263504,TJ,CH4,3.0,kg/TJ,131.1819790512,kg -15eeaea5-b224-30ff-ac94-d4468efd1aa5,SESCO,II.1.1,Jujuy,AR-Y,annual,2023,naphtha combustion consumption by to the public,43.7273263504,TJ,N2O,0.6,kg/TJ,26.236395810239998,kg -c789dfb8-5e95-3202-a127-aa18a451b81f,SESCO,II.1.1,La Pampa,AR-L,annual,2023,naphtha combustion consumption by to the public,421.14697030559995,TJ,CO2,73300.0,kg/TJ,30870072.923400477,kg -fa163853-9c49-30ec-acd2-d3c36070bd0e,SESCO,II.1.1,La Pampa,AR-L,annual,2023,naphtha combustion consumption by to the public,421.14697030559995,TJ,CH4,3.0,kg/TJ,1263.4409109167998,kg -dc13b04b-e0d9-3a2e-b1b0-301932584f4b,SESCO,II.1.1,La Pampa,AR-L,annual,2023,naphtha combustion consumption by to the public,421.14697030559995,TJ,N2O,0.6,kg/TJ,252.68818218335997,kg -672ac177-a121-3c61-9570-34182ce5e0c9,SESCO,II.1.1,Mendoza,AR-M,annual,2023,naphtha combustion consumption by to the public,93.34149208999999,TJ,CO2,73300.0,kg/TJ,6841931.370196999,kg -277f56f4-ef24-3646-b9ae-102d729c5164,SESCO,II.1.1,Mendoza,AR-M,annual,2023,naphtha combustion consumption by to the public,93.34149208999999,TJ,CH4,3.0,kg/TJ,280.02447627,kg -e1ce25c5-a34c-3889-a19a-24bcecd44efe,SESCO,II.1.1,Mendoza,AR-M,annual,2023,naphtha combustion consumption by to the public,93.34149208999999,TJ,N2O,0.6,kg/TJ,56.00489525399999,kg -1effff1c-6cc9-3c02-9fc9-a860476fcca0,SESCO,II.1.1,Neuquén,AR-Q,annual,2023,naphtha combustion consumption by to the public,433.833838746,TJ,CO2,73300.0,kg/TJ,31800020.380081803,kg -00a97821-9eb2-3afc-87b3-e53627622f60,SESCO,II.1.1,Neuquén,AR-Q,annual,2023,naphtha combustion consumption by to the public,433.833838746,TJ,CH4,3.0,kg/TJ,1301.501516238,kg -eae80e3a-7510-37ff-ac8b-bba59c6ccd3e,SESCO,II.1.1,Neuquén,AR-Q,annual,2023,naphtha combustion consumption by to the public,433.833838746,TJ,N2O,0.6,kg/TJ,260.3003032476,kg -cd0b0a9a-eed2-356d-9146-4061f1a135ae,SESCO,II.1.1,Rio Negro,AR-R,annual,2023,naphtha combustion consumption by to the public,1381.0335060983998,TJ,CO2,73300.0,kg/TJ,101229755.9970127,kg -b6d9d330-5704-34fe-933f-d9e197191800,SESCO,II.1.1,Rio Negro,AR-R,annual,2023,naphtha combustion consumption by to the public,1381.0335060983998,TJ,CH4,3.0,kg/TJ,4143.100518295199,kg -3ee1bb49-8ca5-38d9-b0ab-ddad93a41d4f,SESCO,II.1.1,Rio Negro,AR-R,annual,2023,naphtha combustion consumption by to the public,1381.0335060983998,TJ,N2O,0.6,kg/TJ,828.6201036590398,kg -956b043b-8689-3ddb-90e2-19555447bede,SESCO,II.1.1,San Juan,AR-J,annual,2023,naphtha combustion consumption by to the public,290.7550654008,TJ,CO2,73300.0,kg/TJ,21312346.29387864,kg -6bac1aea-2dfa-3445-8e22-9cf71b48a9ae,SESCO,II.1.1,San Juan,AR-J,annual,2023,naphtha combustion consumption by to the public,290.7550654008,TJ,CH4,3.0,kg/TJ,872.2651962023999,kg -070ca390-0885-3b86-a358-a212e2be3b94,SESCO,II.1.1,San Juan,AR-J,annual,2023,naphtha combustion consumption by to the public,290.7550654008,TJ,N2O,0.6,kg/TJ,174.45303924048,kg -e9735035-3a08-306e-86a1-e0b19ae9390f,SESCO,II.1.1,San Luis,AR-D,annual,2023,naphtha combustion consumption by to the public,100.2600835236,TJ,CO2,73300.0,kg/TJ,7349064.122279881,kg -dee99334-a9fa-3ebd-a700-dadfb8bc80d8,SESCO,II.1.1,San Luis,AR-D,annual,2023,naphtha combustion consumption by to the public,100.2600835236,TJ,CH4,3.0,kg/TJ,300.78025057080004,kg -4635bed6-bd42-3f9b-9661-662a93ab8694,SESCO,II.1.1,San Luis,AR-D,annual,2023,naphtha combustion consumption by to the public,100.2600835236,TJ,N2O,0.6,kg/TJ,60.156050114159996,kg -8e9fe416-4c23-35b0-bf81-e9d1c15928bb,SESCO,II.1.1,Santa Fe,AR-S,annual,2023,naphtha combustion consumption by to the public,1299.8738766551999,TJ,CO2,73300.0,kg/TJ,95280755.15882616,kg -4747d16b-a3d0-3611-a663-2cc14934a04b,SESCO,II.1.1,Santa Fe,AR-S,annual,2023,naphtha combustion consumption by to the public,1299.8738766551999,TJ,CH4,3.0,kg/TJ,3899.6216299656,kg -d4cb644d-a5f1-3464-942d-0a7eb50dab5e,SESCO,II.1.1,Santa Fe,AR-S,annual,2023,naphtha combustion consumption by to the public,1299.8738766551999,TJ,N2O,0.6,kg/TJ,779.9243259931199,kg -c1dea622-0051-30b9-9eab-d646b31c56aa,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2023,naphtha combustion consumption by to the public,88.61998342119999,TJ,CO2,73300.0,kg/TJ,6495844.784773959,kg -5b99df30-e167-384b-988a-3121fdc2c35e,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2023,naphtha combustion consumption by to the public,88.61998342119999,TJ,CH4,3.0,kg/TJ,265.85995026359996,kg -623b5493-23a1-32ea-b2c7-f0c23e585ada,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2023,naphtha combustion consumption by to the public,88.61998342119999,TJ,N2O,0.6,kg/TJ,53.17199005271999,kg -2ed2d9a2-e04d-373e-96c3-0a6e23b335dd,SESCO,II.1.1,Tucuman,AR-T,annual,2023,naphtha combustion consumption by to the public,3.5802100487999993,TJ,CO2,73300.0,kg/TJ,262429.39657703997,kg -a93b9a3d-4de9-3216-a1a0-9fb4b41dd8c1,SESCO,II.1.1,Tucuman,AR-T,annual,2023,naphtha combustion consumption by to the public,3.5802100487999993,TJ,CH4,3.0,kg/TJ,10.740630146399997,kg -1feb8840-d99c-3d71-b89e-42065103c570,SESCO,II.1.1,Tucuman,AR-T,annual,2023,naphtha combustion consumption by to the public,3.5802100487999993,TJ,N2O,0.6,kg/TJ,2.1481260292799993,kg -f264fa9c-5df5-3c95-bd70-829cb5a86a6b,SESCO,II.1.1,Buenos Aires,AR-B,annual,2023,naphtha combustion consumption by to the public,818.5243238172,TJ,CO2,73300.0,kg/TJ,59997832.93580075,kg -8662825c-6afa-3c5e-a3ba-57b038479473,SESCO,II.1.1,Buenos Aires,AR-B,annual,2023,naphtha combustion consumption by to the public,818.5243238172,TJ,CH4,3.0,kg/TJ,2455.5729714516,kg -6ab7c8b0-77fb-30ca-8f35-39603caad825,SESCO,II.1.1,Buenos Aires,AR-B,annual,2023,naphtha combustion consumption by to the public,818.5243238172,TJ,N2O,0.6,kg/TJ,491.1145942903199,kg -9cbe26f3-610e-3516-babb-9b95fdb97c94,SESCO,II.1.1,Capital Federal,AR-C,annual,2023,naphtha combustion consumption by to the public,55.330006331599996,TJ,CO2,73300.0,kg/TJ,4055689.46410628,kg -ea6ef163-ad56-3558-a0eb-5a2715d00648,SESCO,II.1.1,Capital Federal,AR-C,annual,2023,naphtha combustion consumption by to the public,55.330006331599996,TJ,CH4,3.0,kg/TJ,165.99001899479998,kg -e2798bee-b753-3664-9069-a5149a8fda7b,SESCO,II.1.1,Capital Federal,AR-C,annual,2023,naphtha combustion consumption by to the public,55.330006331599996,TJ,N2O,0.6,kg/TJ,33.198003798959995,kg -9a7a0f00-4c56-35ae-b496-2d1057fb7fd9,SESCO,II.1.1,Chaco,AR-H,annual,2023,naphtha combustion consumption by to the public,7.132769613199999,TJ,CO2,73300.0,kg/TJ,522832.0126475599,kg -b341fe74-3baa-3cfb-8b4f-f9fb0513d011,SESCO,II.1.1,Chaco,AR-H,annual,2023,naphtha combustion consumption by to the public,7.132769613199999,TJ,CH4,3.0,kg/TJ,21.3983088396,kg -b927858b-5d22-33da-9f37-63df33aeb64e,SESCO,II.1.1,Chaco,AR-H,annual,2023,naphtha combustion consumption by to the public,7.132769613199999,TJ,N2O,0.6,kg/TJ,4.2796617679199995,kg -14ef92f8-a24b-390e-8f4b-4780909c5d26,SESCO,II.1.1,Chubut,AR-U,annual,2023,naphtha combustion consumption by to the public,47.480465001199995,TJ,CO2,73300.0,kg/TJ,3480318.0845879596,kg -9948c28c-bc2b-394a-b7ee-7def9bd22c4d,SESCO,II.1.1,Chubut,AR-U,annual,2023,naphtha combustion consumption by to the public,47.480465001199995,TJ,CH4,3.0,kg/TJ,142.44139500359998,kg -137094f4-1cef-3018-b27d-1229405be323,SESCO,II.1.1,Chubut,AR-U,annual,2023,naphtha combustion consumption by to the public,47.480465001199995,TJ,N2O,0.6,kg/TJ,28.488279000719995,kg -60895609-7a15-32ce-b22c-a198c3c9036f,SESCO,II.1.1,Corrientes,AR-W,annual,2023,naphtha combustion consumption by to the public,64.73530201599999,TJ,CO2,73300.0,kg/TJ,4745097.6377727995,kg -cb86384e-8b47-3eac-9d87-1da8e6fdd109,SESCO,II.1.1,Corrientes,AR-W,annual,2023,naphtha combustion consumption by to the public,64.73530201599999,TJ,CH4,3.0,kg/TJ,194.20590604799997,kg -66997d08-41f2-30de-b9cb-4b6eba19f65a,SESCO,II.1.1,Corrientes,AR-W,annual,2023,naphtha combustion consumption by to the public,64.73530201599999,TJ,N2O,0.6,kg/TJ,38.841181209599995,kg -1c262117-4f18-3248-9c28-6ccad1cd00b9,SESCO,II.1.1,Córdoba,AR-X,annual,2023,naphtha combustion consumption by to the public,187.9172149624,TJ,CO2,73300.0,kg/TJ,13774331.85674392,kg -dc905a0e-3901-3a63-bdd5-b83ff29f7161,SESCO,II.1.1,Córdoba,AR-X,annual,2023,naphtha combustion consumption by to the public,187.9172149624,TJ,CH4,3.0,kg/TJ,563.7516448872,kg -8598bdb2-7380-37aa-9b5e-4725222fad34,SESCO,II.1.1,Córdoba,AR-X,annual,2023,naphtha combustion consumption by to the public,187.9172149624,TJ,N2O,0.6,kg/TJ,112.75032897744,kg -0b0d8993-a4a5-307d-95c3-bfa5169b60ca,SESCO,II.1.1,Entre Rios,AR-E,annual,2023,naphtha combustion consumption by to the public,207.3664511072,TJ,CO2,73300.0,kg/TJ,15199960.866157759,kg -d2cf8c82-e235-3e4e-a77c-46071d461470,SESCO,II.1.1,Entre Rios,AR-E,annual,2023,naphtha combustion consumption by to the public,207.3664511072,TJ,CH4,3.0,kg/TJ,622.0993533216,kg -d1c14b0b-acca-3be1-92cc-cf806d849c62,SESCO,II.1.1,Entre Rios,AR-E,annual,2023,naphtha combustion consumption by to the public,207.3664511072,TJ,N2O,0.6,kg/TJ,124.41987066431999,kg -4be82da5-7ba2-3b97-b2ce-f8287fe4e2b2,SESCO,II.1.1,Jujuy,AR-Y,annual,2023,naphtha combustion consumption by to the public,3.1285754191999997,TJ,CO2,73300.0,kg/TJ,229324.57822735998,kg -e5dce377-71b6-309f-bcfc-4f42d5cdfe43,SESCO,II.1.1,Jujuy,AR-Y,annual,2023,naphtha combustion consumption by to the public,3.1285754191999997,TJ,CH4,3.0,kg/TJ,9.385726257599998,kg -2bf2c336-d014-34c6-9768-c43fed6bf019,SESCO,II.1.1,Jujuy,AR-Y,annual,2023,naphtha combustion consumption by to the public,3.1285754191999997,TJ,N2O,0.6,kg/TJ,1.8771452515199998,kg -73888eff-0683-3cff-9a34-d6f34116a879,SESCO,II.1.1,La Pampa,AR-L,annual,2023,naphtha combustion consumption by to the public,85.6989223244,TJ,CO2,73300.0,kg/TJ,6281731.00637852,kg -8f0bc6b5-65aa-3032-b451-1deda36964ed,SESCO,II.1.1,La Pampa,AR-L,annual,2023,naphtha combustion consumption by to the public,85.6989223244,TJ,CH4,3.0,kg/TJ,257.09676697320003,kg -cefd955f-d10d-3015-9fcd-471cb7e93dc6,SESCO,II.1.1,La Pampa,AR-L,annual,2023,naphtha combustion consumption by to the public,85.6989223244,TJ,N2O,0.6,kg/TJ,51.41935339464,kg -a233c553-ea68-3d61-a6d6-508f0b50c657,SESCO,II.1.1,Mendoza,AR-M,annual,2023,naphtha combustion consumption by to the public,15.672487538399997,TJ,CO2,73300.0,kg/TJ,1148793.3365647197,kg -a6a12c6d-2890-3785-8eb0-bc8d15a12c26,SESCO,II.1.1,Mendoza,AR-M,annual,2023,naphtha combustion consumption by to the public,15.672487538399997,TJ,CH4,3.0,kg/TJ,47.01746261519999,kg -4d0bc965-554e-36da-bdac-9100e182767c,SESCO,II.1.1,Mendoza,AR-M,annual,2023,naphtha combustion consumption by to the public,15.672487538399997,TJ,N2O,0.6,kg/TJ,9.403492523039997,kg -9566231c-db89-3321-897f-3d87be3ac750,SESCO,II.1.1,Neuquén,AR-Q,annual,2023,naphtha combustion consumption by to the public,119.16309445039998,TJ,CO2,73300.0,kg/TJ,8734654.823214319,kg -65f2163f-4f4e-3ad4-83cc-4938779cc5f4,SESCO,II.1.1,Neuquén,AR-Q,annual,2023,naphtha combustion consumption by to the public,119.16309445039998,TJ,CH4,3.0,kg/TJ,357.48928335119996,kg -95cceea6-1971-39c9-b1f0-482ab03f6dac,SESCO,II.1.1,Neuquén,AR-Q,annual,2023,naphtha combustion consumption by to the public,119.16309445039998,TJ,N2O,0.6,kg/TJ,71.49785667023998,kg -e8f2cc96-3e26-308f-838b-d446572612f3,SESCO,II.1.1,Rio Negro,AR-R,annual,2023,naphtha combustion consumption by to the public,214.7304053048,TJ,CO2,73300.0,kg/TJ,15739738.70884184,kg -956d5cb2-bdd0-3b2f-8310-ab092f4bdcea,SESCO,II.1.1,Rio Negro,AR-R,annual,2023,naphtha combustion consumption by to the public,214.7304053048,TJ,CH4,3.0,kg/TJ,644.1912159144,kg -f41290e6-f77e-34eb-8f0c-c4baacbc126f,SESCO,II.1.1,Rio Negro,AR-R,annual,2023,naphtha combustion consumption by to the public,214.7304053048,TJ,N2O,0.6,kg/TJ,128.83824318288,kg -f8fed961-830e-34e1-8a35-54f87ad38a63,SESCO,II.1.1,San Juan,AR-J,annual,2023,naphtha combustion consumption by to the public,28.7064193108,TJ,CO2,73300.0,kg/TJ,2104180.53548164,kg -f7b08ffa-e581-3b05-902b-157a743dce04,SESCO,II.1.1,San Juan,AR-J,annual,2023,naphtha combustion consumption by to the public,28.7064193108,TJ,CH4,3.0,kg/TJ,86.1192579324,kg -0983eaa9-869f-387a-a472-88774935b6dc,SESCO,II.1.1,San Juan,AR-J,annual,2023,naphtha combustion consumption by to the public,28.7064193108,TJ,N2O,0.6,kg/TJ,17.22385158648,kg -61606ab4-31d2-3f06-ba93-e80900502e10,SESCO,II.1.1,San Luis,AR-D,annual,2023,naphtha combustion consumption by to the public,14.277871885199998,TJ,CO2,73300.0,kg/TJ,1046568.0091851598,kg -56da6e61-a679-34c6-a834-2b097ab40a34,SESCO,II.1.1,San Luis,AR-D,annual,2023,naphtha combustion consumption by to the public,14.277871885199998,TJ,CH4,3.0,kg/TJ,42.83361565559999,kg -8677c0d3-af7e-341b-959b-1f86ef148290,SESCO,II.1.1,San Luis,AR-D,annual,2023,naphtha combustion consumption by to the public,14.277871885199998,TJ,N2O,0.6,kg/TJ,8.566723131119998,kg -42f196fb-99ed-3dc3-a1db-173a3ee1f090,SESCO,II.1.1,Santa Fe,AR-S,annual,2023,naphtha combustion consumption by to the public,250.75171955679997,TJ,CO2,73300.0,kg/TJ,18380101.04351344,kg -12a9b719-907b-3609-85e5-39b4ae22ebea,SESCO,II.1.1,Santa Fe,AR-S,annual,2023,naphtha combustion consumption by to the public,250.75171955679997,TJ,CH4,3.0,kg/TJ,752.2551586703999,kg -00341615-4327-3139-9941-0881fd9f4baf,SESCO,II.1.1,Santa Fe,AR-S,annual,2023,naphtha combustion consumption by to the public,250.75171955679997,TJ,N2O,0.6,kg/TJ,150.45103173407998,kg -519bac0e-5509-3fe1-8ff8-56da67b67606,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2023,naphtha combustion consumption by to the public,13.019699462,TJ,CO2,73300.0,kg/TJ,954343.9705646,kg -09cc1f73-2ece-321e-bd03-3b4821e939ce,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2023,naphtha combustion consumption by to the public,13.019699462,TJ,CH4,3.0,kg/TJ,39.059098386,kg -4da2c0bc-798e-389b-81a4-1d9b2b2ef2a0,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2023,naphtha combustion consumption by to the public,13.019699462,TJ,N2O,0.6,kg/TJ,7.8118196772,kg -0e74bdb1-bff0-395a-af61-02de15821541,SESCO,II.1.1,Tucuman,AR-T,annual,2023,naphtha combustion consumption by to the public,0.5965207556,TJ,CO2,73300.0,kg/TJ,43724.97138548,kg -d0499d35-b8fa-3b42-89f6-41d26dd72035,SESCO,II.1.1,Tucuman,AR-T,annual,2023,naphtha combustion consumption by to the public,0.5965207556,TJ,CH4,3.0,kg/TJ,1.7895622668,kg -b7f8c5b9-ef5d-3dc9-9d36-02ae77e294db,SESCO,II.1.1,Tucuman,AR-T,annual,2023,naphtha combustion consumption by to the public,0.5965207556,TJ,N2O,0.6,kg/TJ,0.35791245335999994,kg -2c8dea36-4712-31bf-bb64-06ad302f6ac3,SESCO,II.5.1,Buenos Aires,AR-B,annual,2023,naphtha combustion consumption by agriculture machines,95.1634992,TJ,CO2,73300.0,kg/TJ,6975484.49136,kg -b085e6c0-01a5-370a-898f-b5fd7df7b630,SESCO,II.5.1,Buenos Aires,AR-B,annual,2023,naphtha combustion consumption by agriculture machines,95.1634992,TJ,CH4,3.0,kg/TJ,285.4904976,kg -6b76dd23-c3f3-3bdd-8010-d297b68658b5,SESCO,II.5.1,Buenos Aires,AR-B,annual,2023,naphtha combustion consumption by agriculture machines,95.1634992,TJ,N2O,0.6,kg/TJ,57.09809952,kg -e2364298-87c0-3c30-ad2c-bd6ac5da7591,SESCO,II.5.1,Salta,AR-A,annual,2023,naphtha combustion consumption by agriculture machines,0.8442896,TJ,CO2,73300.0,kg/TJ,61886.42768,kg -018a52e6-f137-359d-b317-d61449b16fff,SESCO,II.5.1,Salta,AR-A,annual,2023,naphtha combustion consumption by agriculture machines,0.8442896,TJ,CH4,3.0,kg/TJ,2.5328688,kg -e39ba6f4-f8b6-343a-bbbb-5a94a6ef536e,SESCO,II.5.1,Salta,AR-A,annual,2023,naphtha combustion consumption by agriculture machines,0.8442896,TJ,N2O,0.6,kg/TJ,0.50657376,kg -253277db-ec5d-3a16-9cf2-ac70646aa7c8,SESCO,II.5.1,Santa Fe,AR-S,annual,2023,naphtha combustion consumption by agriculture machines,37.4502744,TJ,CO2,73300.0,kg/TJ,2745105.1135199997,kg -039682dc-2d29-363f-ab70-0cd043ac9dcf,SESCO,II.5.1,Santa Fe,AR-S,annual,2023,naphtha combustion consumption by agriculture machines,37.4502744,TJ,CH4,3.0,kg/TJ,112.3508232,kg -3ef812b5-3a18-3dae-8b73-5bb5b8fb4da2,SESCO,II.5.1,Santa Fe,AR-S,annual,2023,naphtha combustion consumption by agriculture machines,37.4502744,TJ,N2O,0.6,kg/TJ,22.470164639999997,kg -a801b36c-da5b-38f6-8f77-38cb3b484f83,SESCO,II.5.1,Buenos Aires,AR-B,annual,2023,naphtha combustion consumption by agriculture machines,7.5684531999999995,TJ,CO2,73300.0,kg/TJ,554767.61956,kg -1b6d78e2-6760-3254-aa65-e9e2eb6bcb5a,SESCO,II.5.1,Buenos Aires,AR-B,annual,2023,naphtha combustion consumption by agriculture machines,7.5684531999999995,TJ,CH4,3.0,kg/TJ,22.705359599999998,kg -91160af8-2b37-38c1-9ec1-24fb9c5b6e9c,SESCO,II.5.1,Buenos Aires,AR-B,annual,2023,naphtha combustion consumption by agriculture machines,7.5684531999999995,TJ,N2O,0.6,kg/TJ,4.541071919999999,kg -beda8d42-29b9-36bf-ae28-e07619839712,SESCO,II.5.1,Santa Fe,AR-S,annual,2023,naphtha combustion consumption by agriculture machines,4.0405288,TJ,CO2,73300.0,kg/TJ,296170.76103999995,kg -2aed6c6e-3fab-30f8-8ecf-5a92a6821035,SESCO,II.5.1,Santa Fe,AR-S,annual,2023,naphtha combustion consumption by agriculture machines,4.0405288,TJ,CH4,3.0,kg/TJ,12.121586399999998,kg -f68e2529-65ac-34a7-94c2-97bc6061b863,SESCO,II.5.1,Santa Fe,AR-S,annual,2023,naphtha combustion consumption by agriculture machines,4.0405288,TJ,N2O,0.6,kg/TJ,2.42431728,kg -755d4c45-2737-3995-aa98-ed723c8da324,SESCO,II.1.1,Buenos Aires,AR-B,annual,2023,naphtha combustion consumption by to the public,38264.1394212,TJ,CO2,73300.0,kg/TJ,2804761419.5739603,kg -4d474a8d-e3b8-3232-ba4d-054adfc4a5c0,SESCO,II.1.1,Buenos Aires,AR-B,annual,2023,naphtha combustion consumption by to the public,38264.1394212,TJ,CH4,3.0,kg/TJ,114792.4182636,kg -965bebf0-156e-317e-8936-c9ceb329425d,SESCO,II.1.1,Buenos Aires,AR-B,annual,2023,naphtha combustion consumption by to the public,38264.1394212,TJ,N2O,0.6,kg/TJ,22958.48365272,kg -be14b5f9-4a25-33ed-9163-d735b073250d,SESCO,II.1.1,Capital Federal,AR-C,annual,2023,naphtha combustion consumption by to the public,8330.9371684,TJ,CO2,73300.0,kg/TJ,610657694.44372,kg -4c4bf887-bc14-32e8-9ccf-5a69f835b171,SESCO,II.1.1,Capital Federal,AR-C,annual,2023,naphtha combustion consumption by to the public,8330.9371684,TJ,CH4,3.0,kg/TJ,24992.8115052,kg -7f1a1cae-c4e2-3916-87c8-9037a9fcd9aa,SESCO,II.1.1,Capital Federal,AR-C,annual,2023,naphtha combustion consumption by to the public,8330.9371684,TJ,N2O,0.6,kg/TJ,4998.5623010399995,kg -e7a42d80-59d5-3638-a11f-6cec74651c85,SESCO,II.1.1,Catamarca,AR-K,annual,2023,naphtha combustion consumption by to the public,1130.9259192,TJ,CO2,73300.0,kg/TJ,82896869.87736,kg -fb356230-fc46-3a48-a33b-a00dea91de13,SESCO,II.1.1,Catamarca,AR-K,annual,2023,naphtha combustion consumption by to the public,1130.9259192,TJ,CH4,3.0,kg/TJ,3392.7777576,kg -b3e3b587-57a8-3d82-b4e8-5298fc01dbd8,SESCO,II.1.1,Catamarca,AR-K,annual,2023,naphtha combustion consumption by to the public,1130.9259192,TJ,N2O,0.6,kg/TJ,678.55555152,kg -710296ce-42ef-366d-bece-a525dc65cf64,SESCO,II.1.1,Chaco,AR-H,annual,2023,naphtha combustion consumption by to the public,2992.1321891999996,TJ,CO2,73300.0,kg/TJ,219323289.46835998,kg -9bf36195-4932-336e-88a7-6055d3861611,SESCO,II.1.1,Chaco,AR-H,annual,2023,naphtha combustion consumption by to the public,2992.1321891999996,TJ,CH4,3.0,kg/TJ,8976.396567599999,kg -1a278498-aaeb-3055-98d1-8255e5335e6f,SESCO,II.1.1,Chaco,AR-H,annual,2023,naphtha combustion consumption by to the public,2992.1321891999996,TJ,N2O,0.6,kg/TJ,1795.2793135199997,kg -3b383998-8dcb-3b76-b85f-96d090db2bee,SESCO,II.1.1,Chubut,AR-U,annual,2023,naphtha combustion consumption by to the public,3302.6498428,TJ,CO2,73300.0,kg/TJ,242084233.47724,kg -d51bcbdc-e3af-33ee-a128-1635e83fbc52,SESCO,II.1.1,Chubut,AR-U,annual,2023,naphtha combustion consumption by to the public,3302.6498428,TJ,CH4,3.0,kg/TJ,9907.9495284,kg -be7b0740-7e19-32b4-9311-b5a57429ccc7,SESCO,II.1.1,Chubut,AR-U,annual,2023,naphtha combustion consumption by to the public,3302.6498428,TJ,N2O,0.6,kg/TJ,1981.58990568,kg -04d873d5-2d1a-3473-8469-833aa417cea2,SESCO,II.1.1,Corrientes,AR-W,annual,2023,naphtha combustion consumption by to the public,3060.7608723999997,TJ,CO2,73300.0,kg/TJ,224353771.94691998,kg -99860266-4fce-3d1c-9727-7828c811bc5e,SESCO,II.1.1,Corrientes,AR-W,annual,2023,naphtha combustion consumption by to the public,3060.7608723999997,TJ,CH4,3.0,kg/TJ,9182.282617199999,kg -8510f4e1-d987-3ed9-bdbf-189d932261b8,SESCO,II.1.1,Corrientes,AR-W,annual,2023,naphtha combustion consumption by to the public,3060.7608723999997,TJ,N2O,0.6,kg/TJ,1836.4565234399997,kg -7165459c-2cfb-3f10-a140-fab09707498f,SESCO,II.1.1,Córdoba,AR-X,annual,2023,naphtha combustion consumption by to the public,11533.0562424,TJ,CO2,73300.0,kg/TJ,845373022.56792,kg -24514189-682f-302b-92a4-6e8a91ce6584,SESCO,II.1.1,Córdoba,AR-X,annual,2023,naphtha combustion consumption by to the public,11533.0562424,TJ,CH4,3.0,kg/TJ,34599.1687272,kg -dd75f4d4-16c2-3c5a-962c-85b19eb6f5a6,SESCO,II.1.1,Córdoba,AR-X,annual,2023,naphtha combustion consumption by to the public,11533.0562424,TJ,N2O,0.6,kg/TJ,6919.83374544,kg -a6b63371-2347-3822-b955-67451152316a,SESCO,II.1.1,Entre Rios,AR-E,annual,2023,naphtha combustion consumption by to the public,3827.0742971999994,TJ,CO2,73300.0,kg/TJ,280524545.9847599,kg -39e17ddb-587f-39ae-a43d-d7787a1819f3,SESCO,II.1.1,Entre Rios,AR-E,annual,2023,naphtha combustion consumption by to the public,3827.0742971999994,TJ,CH4,3.0,kg/TJ,11481.222891599999,kg -96dbde35-d191-3149-af64-e69cb0ddbea7,SESCO,II.1.1,Entre Rios,AR-E,annual,2023,naphtha combustion consumption by to the public,3827.0742971999994,TJ,N2O,0.6,kg/TJ,2296.2445783199996,kg -5c11732f-abbb-331f-9ccf-6a9ab177e028,SESCO,II.1.1,Formosa,AR-P,annual,2023,naphtha combustion consumption by to the public,1473.6773435999999,TJ,CO2,73300.0,kg/TJ,108020549.28587998,kg -38264d4a-819e-3b19-9e1e-1f80ddc446cd,SESCO,II.1.1,Formosa,AR-P,annual,2023,naphtha combustion consumption by to the public,1473.6773435999999,TJ,CH4,3.0,kg/TJ,4421.032030799999,kg -c8ecc8bc-2d6a-375d-bd71-d32791103a6f,SESCO,II.1.1,Formosa,AR-P,annual,2023,naphtha combustion consumption by to the public,1473.6773435999999,TJ,N2O,0.6,kg/TJ,884.2064061599999,kg -f47800e1-f5e4-3664-9624-1873ca3731f7,SESCO,II.1.1,Jujuy,AR-Y,annual,2023,naphtha combustion consumption by to the public,1735.5880387999998,TJ,CO2,73300.0,kg/TJ,127218603.24403998,kg -2c7d4e18-baf6-34da-a931-8bd40f85ccde,SESCO,II.1.1,Jujuy,AR-Y,annual,2023,naphtha combustion consumption by to the public,1735.5880387999998,TJ,CH4,3.0,kg/TJ,5206.7641164,kg -057fe117-bf6b-334f-a869-b24e5e0fbb54,SESCO,II.1.1,Jujuy,AR-Y,annual,2023,naphtha combustion consumption by to the public,1735.5880387999998,TJ,N2O,0.6,kg/TJ,1041.35282328,kg -fb64c3e7-a670-3f03-b33c-39afa0f0d1b6,SESCO,II.1.1,La Pampa,AR-L,annual,2023,naphtha combustion consumption by to the public,1841.8780687999997,TJ,CO2,73300.0,kg/TJ,135009662.44303998,kg -61ad5071-6957-36a7-b482-762a810989be,SESCO,II.1.1,La Pampa,AR-L,annual,2023,naphtha combustion consumption by to the public,1841.8780687999997,TJ,CH4,3.0,kg/TJ,5525.634206399999,kg -5b5da23f-a459-3262-8df8-a3efbe42dce2,SESCO,II.1.1,La Pampa,AR-L,annual,2023,naphtha combustion consumption by to the public,1841.8780687999997,TJ,N2O,0.6,kg/TJ,1105.1268412799998,kg -b247b7d1-e3c9-3b04-ae73-3dcd8beb5e87,SESCO,II.1.1,La Rioja,AR-F,annual,2023,naphtha combustion consumption by to the public,1212.2189464,TJ,CO2,73300.0,kg/TJ,88855648.77112,kg -d4ddaa14-7165-3801-a16b-add27a91c051,SESCO,II.1.1,La Rioja,AR-F,annual,2023,naphtha combustion consumption by to the public,1212.2189464,TJ,CH4,3.0,kg/TJ,3636.6568392,kg -51451744-40c5-3bb0-a54d-fcbbe33e5579,SESCO,II.1.1,La Rioja,AR-F,annual,2023,naphtha combustion consumption by to the public,1212.2189464,TJ,N2O,0.6,kg/TJ,727.33136784,kg -b6224302-74bb-359a-8711-f3956ec63a99,SESCO,II.1.1,Mendoza,AR-M,annual,2023,naphtha combustion consumption by to the public,5345.378376799999,TJ,CO2,73300.0,kg/TJ,391816235.01943994,kg -1050f9c8-1b09-39fc-abc8-e96d526540fb,SESCO,II.1.1,Mendoza,AR-M,annual,2023,naphtha combustion consumption by to the public,5345.378376799999,TJ,CH4,3.0,kg/TJ,16036.135130399998,kg -b97034be-8abc-35eb-b387-d802962ed003,SESCO,II.1.1,Mendoza,AR-M,annual,2023,naphtha combustion consumption by to the public,5345.378376799999,TJ,N2O,0.6,kg/TJ,3207.2270260799996,kg -f399ffb7-0c3f-3188-9a68-924733ff260b,SESCO,II.1.1,Misiones,AR-N,annual,2023,naphtha combustion consumption by to the public,4450.3710943999995,TJ,CO2,73300.0,kg/TJ,326212201.21952,kg -6cc6a537-d480-3b96-87ed-827087943f49,SESCO,II.1.1,Misiones,AR-N,annual,2023,naphtha combustion consumption by to the public,4450.3710943999995,TJ,CH4,3.0,kg/TJ,13351.113283199998,kg -c23ab4d3-27b5-3d29-a185-7de5ee8cbf00,SESCO,II.1.1,Misiones,AR-N,annual,2023,naphtha combustion consumption by to the public,4450.3710943999995,TJ,N2O,0.6,kg/TJ,2670.2226566399995,kg -e54f7170-1a9a-3c8c-9171-277c33c58ee5,SESCO,II.1.1,Neuquén,AR-Q,annual,2023,naphtha combustion consumption by to the public,3643.5317687999996,TJ,CO2,73300.0,kg/TJ,267070878.65303996,kg -4f015509-6e94-3168-b423-a9010d809505,SESCO,II.1.1,Neuquén,AR-Q,annual,2023,naphtha combustion consumption by to the public,3643.5317687999996,TJ,CH4,3.0,kg/TJ,10930.595306399999,kg -8ac5f2d6-6d25-36f3-98f4-306115c03994,SESCO,II.1.1,Neuquén,AR-Q,annual,2023,naphtha combustion consumption by to the public,3643.5317687999996,TJ,N2O,0.6,kg/TJ,2186.1190612799996,kg -c93a1596-d0ef-3bcf-b3da-7a658ba55580,SESCO,II.1.1,Rio Negro,AR-R,annual,2023,naphtha combustion consumption by to the public,3593.5679163999994,TJ,CO2,73300.0,kg/TJ,263408528.27211997,kg -cdf2c591-b2ad-356c-a45e-cefb825c8e6d,SESCO,II.1.1,Rio Negro,AR-R,annual,2023,naphtha combustion consumption by to the public,3593.5679163999994,TJ,CH4,3.0,kg/TJ,10780.703749199998,kg -97149e01-a599-3abb-b0e5-2aa1013a124c,SESCO,II.1.1,Rio Negro,AR-R,annual,2023,naphtha combustion consumption by to the public,3593.5679163999994,TJ,N2O,0.6,kg/TJ,2156.1407498399994,kg -f7391683-f759-34ad-87c4-88df4ef50b00,SESCO,II.1.1,Salta,AR-A,annual,2023,naphtha combustion consumption by to the public,3804.3086311999996,TJ,CO2,73300.0,kg/TJ,278855822.66695994,kg -1b16de46-fd40-3ff0-9066-fdc999c800a5,SESCO,II.1.1,Salta,AR-A,annual,2023,naphtha combustion consumption by to the public,3804.3086311999996,TJ,CH4,3.0,kg/TJ,11412.925893599999,kg -6036de04-2744-3cf5-b956-7a0ded004650,SESCO,II.1.1,Salta,AR-A,annual,2023,naphtha combustion consumption by to the public,3804.3086311999996,TJ,N2O,0.6,kg/TJ,2282.5851787199995,kg -7a8d5634-fd2c-338d-8942-1f9826e24ba9,SESCO,II.1.1,San Juan,AR-J,annual,2023,naphtha combustion consumption by to the public,1798.3066947999998,TJ,CO2,73300.0,kg/TJ,131815880.72884,kg -147efddb-d861-397d-b6ad-85603a7fff69,SESCO,II.1.1,San Juan,AR-J,annual,2023,naphtha combustion consumption by to the public,1798.3066947999998,TJ,CH4,3.0,kg/TJ,5394.9200844,kg -0ba93c4e-3f6d-3597-b66d-237cd85e2fac,SESCO,II.1.1,San Juan,AR-J,annual,2023,naphtha combustion consumption by to the public,1798.3066947999998,TJ,N2O,0.6,kg/TJ,1078.98401688,kg -59c6f6ce-22bb-38ff-b276-1e87841dc4f1,SESCO,II.1.1,San Luis,AR-D,annual,2023,naphtha combustion consumption by to the public,1639.9722416,TJ,CO2,73300.0,kg/TJ,120209965.30928,kg -aec12ca4-65bd-3106-9488-9e302cb8d5e0,SESCO,II.1.1,San Luis,AR-D,annual,2023,naphtha combustion consumption by to the public,1639.9722416,TJ,CH4,3.0,kg/TJ,4919.916724799999,kg -af17f9e3-9740-31d3-bb83-4ecdc32b2299,SESCO,II.1.1,San Luis,AR-D,annual,2023,naphtha combustion consumption by to the public,1639.9722416,TJ,N2O,0.6,kg/TJ,983.98334496,kg -04039f1b-ead9-34b9-8eec-82e7c3bdb60f,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2023,naphtha combustion consumption by to the public,2242.3125647999996,TJ,CO2,73300.0,kg/TJ,164361510.99983996,kg -9128e105-85b4-3a2e-b274-78d7263ca81e,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2023,naphtha combustion consumption by to the public,2242.3125647999996,TJ,CH4,3.0,kg/TJ,6726.937694399999,kg -ed44c94a-b535-3628-a725-6d53bd003a86,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2023,naphtha combustion consumption by to the public,2242.3125647999996,TJ,N2O,0.6,kg/TJ,1345.3875388799997,kg -d320c201-2204-3e17-b631-03f59f162328,SESCO,II.1.1,Santa Fe,AR-S,annual,2023,naphtha combustion consumption by to the public,7992.467498399999,TJ,CO2,73300.0,kg/TJ,585847867.63272,kg -61bdb124-f8ad-3a40-b496-3690726917ba,SESCO,II.1.1,Santa Fe,AR-S,annual,2023,naphtha combustion consumption by to the public,7992.467498399999,TJ,CH4,3.0,kg/TJ,23977.402495199996,kg -b75af5bf-a5f6-38f2-b03c-16d7b8136382,SESCO,II.1.1,Santa Fe,AR-S,annual,2023,naphtha combustion consumption by to the public,7992.467498399999,TJ,N2O,0.6,kg/TJ,4795.48049904,kg -3e1da5ec-909f-3804-8af4-b4f2dbe0d937,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2023,naphtha combustion consumption by to the public,1904.0238139999997,TJ,CO2,73300.0,kg/TJ,139564945.5662,kg -3e1e8bc7-e576-327a-b34a-d98afb2ae4f7,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2023,naphtha combustion consumption by to the public,1904.0238139999997,TJ,CH4,3.0,kg/TJ,5712.071441999999,kg -307a5bf2-3a4d-3a5d-a2b6-a58baabfbcbb,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2023,naphtha combustion consumption by to the public,1904.0238139999997,TJ,N2O,0.6,kg/TJ,1142.4142883999998,kg -d42d10dc-273a-3d72-89fa-d83f4a91a0fe,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2023,naphtha combustion consumption by to the public,1385.6601528,TJ,CO2,73300.0,kg/TJ,101568889.20024,kg -3b87761d-d443-3d5a-8fc7-aacbd89e6209,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2023,naphtha combustion consumption by to the public,1385.6601528,TJ,CH4,3.0,kg/TJ,4156.9804584,kg -1d7848d8-ca89-39d9-b17e-12495a13c67f,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2023,naphtha combustion consumption by to the public,1385.6601528,TJ,N2O,0.6,kg/TJ,831.39609168,kg -2902612a-4450-3d9b-8493-e9a1a872d564,SESCO,II.1.1,Tucuman,AR-T,annual,2023,naphtha combustion consumption by to the public,3809.2839091999995,TJ,CO2,73300.0,kg/TJ,279220510.54436,kg -de6fdf04-3f8a-3855-b2e5-87973a241d83,SESCO,II.1.1,Tucuman,AR-T,annual,2023,naphtha combustion consumption by to the public,3809.2839091999995,TJ,CH4,3.0,kg/TJ,11427.851727599998,kg -532b7ba0-1be6-3b13-86e3-20f4a389490f,SESCO,II.1.1,Tucuman,AR-T,annual,2023,naphtha combustion consumption by to the public,3809.2839091999995,TJ,N2O,0.6,kg/TJ,2285.5703455199996,kg -2569544e-65be-311b-927e-dd862279c3a2,SESCO,II.1.1,Buenos Aires,AR-B,annual,2023,naphtha combustion consumption by to the public,15849.456669199999,TJ,CO2,73300.0,kg/TJ,1161765173.85236,kg -fba92c13-a392-3f82-a893-4f9c01188c70,SESCO,II.1.1,Buenos Aires,AR-B,annual,2023,naphtha combustion consumption by to the public,15849.456669199999,TJ,CH4,3.0,kg/TJ,47548.370007599995,kg -7ef7e3b2-0279-306e-ad35-8d722dd9f614,SESCO,II.1.1,Buenos Aires,AR-B,annual,2023,naphtha combustion consumption by to the public,15849.456669199999,TJ,N2O,0.6,kg/TJ,9509.67400152,kg -26c380b0-e84a-3da0-892a-25db842c7578,SESCO,II.1.1,Capital Federal,AR-C,annual,2023,naphtha combustion consumption by to the public,4229.2576788,TJ,CO2,73300.0,kg/TJ,310004587.85604,kg -d71eb821-67d6-308a-a92b-a85dc64e3977,SESCO,II.1.1,Capital Federal,AR-C,annual,2023,naphtha combustion consumption by to the public,4229.2576788,TJ,CH4,3.0,kg/TJ,12687.773036399998,kg -8824285d-68bd-3493-b6d3-bad5793e6145,SESCO,II.1.1,Capital Federal,AR-C,annual,2023,naphtha combustion consumption by to the public,4229.2576788,TJ,N2O,0.6,kg/TJ,2537.55460728,kg -fd44bc7e-0c56-36c7-8bee-e784325abb75,SESCO,II.1.1,Catamarca,AR-K,annual,2023,naphtha combustion consumption by to the public,415.51109599999995,TJ,CO2,73300.0,kg/TJ,30456963.336799998,kg -950edc04-00dd-3172-8e50-327f8e2bd36c,SESCO,II.1.1,Catamarca,AR-K,annual,2023,naphtha combustion consumption by to the public,415.51109599999995,TJ,CH4,3.0,kg/TJ,1246.5332879999999,kg -8ee7b1e4-62cd-3cd4-bb49-e055b446b949,SESCO,II.1.1,Catamarca,AR-K,annual,2023,naphtha combustion consumption by to the public,415.51109599999995,TJ,N2O,0.6,kg/TJ,249.30665759999997,kg -c08c01a9-d7fc-3d85-83a1-d8f0323eab1b,SESCO,II.1.1,Chaco,AR-H,annual,2023,naphtha combustion consumption by to the public,770.6253323999999,TJ,CO2,73300.0,kg/TJ,56486836.86492,kg -06cc09ea-fad2-3721-be36-07c0a4e77e18,SESCO,II.1.1,Chaco,AR-H,annual,2023,naphtha combustion consumption by to the public,770.6253323999999,TJ,CH4,3.0,kg/TJ,2311.8759972,kg -e55d7ac2-ad5a-3459-9dea-1ac2ee99172d,SESCO,II.1.1,Chaco,AR-H,annual,2023,naphtha combustion consumption by to the public,770.6253323999999,TJ,N2O,0.6,kg/TJ,462.37519943999996,kg -460d1541-8ed4-37bf-bb85-468a7af460ba,SESCO,II.1.1,Chubut,AR-U,annual,2023,naphtha combustion consumption by to the public,1062.8399935999998,TJ,CO2,73300.0,kg/TJ,77906171.53087999,kg -836cfadf-e501-32fc-bd50-6fb9bc869d54,SESCO,II.1.1,Chubut,AR-U,annual,2023,naphtha combustion consumption by to the public,1062.8399935999998,TJ,CH4,3.0,kg/TJ,3188.5199807999998,kg -22825a65-364e-39c1-9991-a4c9ca66ffb0,SESCO,II.1.1,Chubut,AR-U,annual,2023,naphtha combustion consumption by to the public,1062.8399935999998,TJ,N2O,0.6,kg/TJ,637.7039961599999,kg -b57658bf-6698-3bbd-aed9-5fce97d07751,SESCO,II.1.1,Corrientes,AR-W,annual,2023,naphtha combustion consumption by to the public,1020.9571987999999,TJ,CO2,73300.0,kg/TJ,74836162.67203999,kg -c0c50c50-fa73-3b9c-bfc0-36d2bf691957,SESCO,II.1.1,Corrientes,AR-W,annual,2023,naphtha combustion consumption by to the public,1020.9571987999999,TJ,CH4,3.0,kg/TJ,3062.8715964,kg -2bda9f86-0c2e-3ee2-a4ab-4999c6bf5753,SESCO,II.1.1,Corrientes,AR-W,annual,2023,naphtha combustion consumption by to the public,1020.9571987999999,TJ,N2O,0.6,kg/TJ,612.5743192799999,kg -343fc494-a9d7-3506-984a-c3459d8909d6,SESCO,II.1.1,Córdoba,AR-X,annual,2023,naphtha combustion consumption by to the public,4277.3520327999995,TJ,CO2,73300.0,kg/TJ,313529904.00424,kg -171692d6-453d-3a7a-af6b-ffed63845eb6,SESCO,II.1.1,Córdoba,AR-X,annual,2023,naphtha combustion consumption by to the public,4277.3520327999995,TJ,CH4,3.0,kg/TJ,12832.056098399999,kg -2ad6ab8d-8a10-3b3d-9f81-392863d24fb9,SESCO,II.1.1,Córdoba,AR-X,annual,2023,naphtha combustion consumption by to the public,4277.3520327999995,TJ,N2O,0.6,kg/TJ,2566.4112196799997,kg -8983fc0f-af64-3471-8675-8b7998d05f19,SESCO,II.1.1,Entre Rios,AR-E,annual,2023,naphtha combustion consumption by to the public,1604.2708528,TJ,CO2,73300.0,kg/TJ,117593053.51024,kg -3d74cf81-5494-34bd-bcf5-07b8e4352764,SESCO,II.1.1,Entre Rios,AR-E,annual,2023,naphtha combustion consumption by to the public,1604.2708528,TJ,CH4,3.0,kg/TJ,4812.8125584,kg -16d4d432-b026-3d4e-916c-4300fb86a078,SESCO,II.1.1,Entre Rios,AR-E,annual,2023,naphtha combustion consumption by to the public,1604.2708528,TJ,N2O,0.6,kg/TJ,962.56251168,kg -2f520b3a-43c1-346c-aa22-f28fd72ec40d,SESCO,II.1.1,Formosa,AR-P,annual,2023,naphtha combustion consumption by to the public,403.0879776,TJ,CO2,73300.0,kg/TJ,29546348.75808,kg -178e8ef8-f230-35ca-871f-3caa3969916a,SESCO,II.1.1,Formosa,AR-P,annual,2023,naphtha combustion consumption by to the public,403.0879776,TJ,CH4,3.0,kg/TJ,1209.2639328,kg -27ba48dc-cf98-3490-99fc-d4f76dad5a93,SESCO,II.1.1,Formosa,AR-P,annual,2023,naphtha combustion consumption by to the public,403.0879776,TJ,N2O,0.6,kg/TJ,241.85278655999997,kg -3584e86d-7064-3ed3-baf7-a244c4521639,SESCO,II.1.1,Jujuy,AR-Y,annual,2023,naphtha combustion consumption by to the public,517.3384523999999,TJ,CO2,73300.0,kg/TJ,37920908.56091999,kg -487dad2a-f59b-38e8-89c1-b44e1f2fe0b0,SESCO,II.1.1,Jujuy,AR-Y,annual,2023,naphtha combustion consumption by to the public,517.3384523999999,TJ,CH4,3.0,kg/TJ,1552.0153572,kg -f7b7d4e0-048e-3b8e-9453-4360ef88dd8d,SESCO,II.1.1,Jujuy,AR-Y,annual,2023,naphtha combustion consumption by to the public,517.3384523999999,TJ,N2O,0.6,kg/TJ,310.40307143999996,kg -4a54a717-df61-35a4-bc76-16894cc03ebb,SESCO,II.1.1,La Pampa,AR-L,annual,2023,naphtha combustion consumption by to the public,1013.7807371999999,TJ,CO2,73300.0,kg/TJ,74310128.03675999,kg -895e0d6f-60bf-3fe4-97fd-9de458c60408,SESCO,II.1.1,La Pampa,AR-L,annual,2023,naphtha combustion consumption by to the public,1013.7807371999999,TJ,CH4,3.0,kg/TJ,3041.3422115999997,kg -50424e9f-777f-3219-81f4-8d02f2c98fbe,SESCO,II.1.1,La Pampa,AR-L,annual,2023,naphtha combustion consumption by to the public,1013.7807371999999,TJ,N2O,0.6,kg/TJ,608.2684423199998,kg -fe2600c3-3af1-3ed7-9263-b4c6aeec2ba2,SESCO,II.1.1,La Rioja,AR-F,annual,2023,naphtha combustion consumption by to the public,493.9998756,TJ,CO2,73300.0,kg/TJ,36210190.88148,kg -9208bd26-6bcb-37ea-8c6f-fa3bc5add22f,SESCO,II.1.1,La Rioja,AR-F,annual,2023,naphtha combustion consumption by to the public,493.9998756,TJ,CH4,3.0,kg/TJ,1481.9996268,kg -ca4f0e6b-4481-3233-aec0-d2c0bfbfa9fd,SESCO,II.1.1,La Rioja,AR-F,annual,2023,naphtha combustion consumption by to the public,493.9998756,TJ,N2O,0.6,kg/TJ,296.39992536,kg -cf9cd3cf-2f7f-387b-a9aa-3f2be19995c5,SESCO,II.1.1,Mendoza,AR-M,annual,2023,naphtha combustion consumption by to the public,2635.7816715999998,TJ,CO2,73300.0,kg/TJ,193202796.52828,kg -9c19cffc-9fbe-3fd0-8f63-990c9b63c74b,SESCO,II.1.1,Mendoza,AR-M,annual,2023,naphtha combustion consumption by to the public,2635.7816715999998,TJ,CH4,3.0,kg/TJ,7907.345014799999,kg -2b4e4570-b6ec-38a6-966e-c0377e2cf9f5,SESCO,II.1.1,Mendoza,AR-M,annual,2023,naphtha combustion consumption by to the public,2635.7816715999998,TJ,N2O,0.6,kg/TJ,1581.46900296,kg -f763dcd4-46ed-3df9-ad9b-7681a0b1a07a,SESCO,II.1.1,Misiones,AR-N,annual,2023,naphtha combustion consumption by to the public,1323.6350203999998,TJ,CO2,73300.0,kg/TJ,97022446.99531999,kg -b68e8795-d303-39f6-be91-d00225887114,SESCO,II.1.1,Misiones,AR-N,annual,2023,naphtha combustion consumption by to the public,1323.6350203999998,TJ,CH4,3.0,kg/TJ,3970.905061199999,kg -2fd135f3-5c47-3b81-ad56-60e3ec8851c8,SESCO,II.1.1,Misiones,AR-N,annual,2023,naphtha combustion consumption by to the public,1323.6350203999998,TJ,N2O,0.6,kg/TJ,794.1810122399999,kg -da4a3695-17b8-3182-adce-f847208e5f5e,SESCO,II.1.1,Neuquén,AR-Q,annual,2023,naphtha combustion consumption by to the public,1873.1469372,TJ,CO2,73300.0,kg/TJ,137301670.49675998,kg -1d519aff-d352-3506-a292-07148efe1657,SESCO,II.1.1,Neuquén,AR-Q,annual,2023,naphtha combustion consumption by to the public,1873.1469372,TJ,CH4,3.0,kg/TJ,5619.4408115999995,kg -7260f087-3d88-3297-8f8b-b17c5cc94aa5,SESCO,II.1.1,Neuquén,AR-Q,annual,2023,naphtha combustion consumption by to the public,1873.1469372,TJ,N2O,0.6,kg/TJ,1123.88816232,kg -23a4617c-3aab-3216-9af4-a3f8279924ab,SESCO,II.1.1,Rio Negro,AR-R,annual,2023,naphtha combustion consumption by to the public,1698.3186835999998,TJ,CO2,73300.0,kg/TJ,124486759.50787999,kg -46b04a2a-4250-327c-9896-4a795635bf77,SESCO,II.1.1,Rio Negro,AR-R,annual,2023,naphtha combustion consumption by to the public,1698.3186835999998,TJ,CH4,3.0,kg/TJ,5094.9560507999995,kg -6c8b94af-7339-3d6c-94ce-4a94497ae6a9,SESCO,II.1.1,Rio Negro,AR-R,annual,2023,naphtha combustion consumption by to the public,1698.3186835999998,TJ,N2O,0.6,kg/TJ,1018.9912101599998,kg -8798c14a-6592-3ff4-8aae-a6e80c3605a2,SESCO,II.1.1,Salta,AR-A,annual,2023,naphtha combustion consumption by to the public,1206.7009108,TJ,CO2,73300.0,kg/TJ,88451176.76164,kg -a2df2882-d587-3a48-9f7e-0cb6df65ba32,SESCO,II.1.1,Salta,AR-A,annual,2023,naphtha combustion consumption by to the public,1206.7009108,TJ,CH4,3.0,kg/TJ,3620.1027323999997,kg -cba67394-8b6a-3834-8846-326be5e02753,SESCO,II.1.1,Salta,AR-A,annual,2023,naphtha combustion consumption by to the public,1206.7009108,TJ,N2O,0.6,kg/TJ,724.02054648,kg -1d76a733-f9fc-34e4-b745-9f2f76f04f62,SESCO,II.1.1,San Juan,AR-J,annual,2023,naphtha combustion consumption by to the public,716.7717171999999,TJ,CO2,73300.0,kg/TJ,52539366.870759994,kg -5124539d-b135-3970-9b79-dd4e724d61ad,SESCO,II.1.1,San Juan,AR-J,annual,2023,naphtha combustion consumption by to the public,716.7717171999999,TJ,CH4,3.0,kg/TJ,2150.3151516,kg -7b0dab5a-4fd2-3117-be37-943524d8b84c,SESCO,II.1.1,San Juan,AR-J,annual,2023,naphtha combustion consumption by to the public,716.7717171999999,TJ,N2O,0.6,kg/TJ,430.06303031999994,kg -d6f416e8-6dbe-33c0-a610-11268a298bd7,SESCO,II.1.1,San Luis,AR-D,annual,2023,naphtha combustion consumption by to the public,606.1094732,TJ,CO2,73300.0,kg/TJ,44427824.38556,kg -8890fe2e-f619-3682-84b9-ae0d1a02b361,SESCO,II.1.1,San Luis,AR-D,annual,2023,naphtha combustion consumption by to the public,606.1094732,TJ,CH4,3.0,kg/TJ,1818.3284196,kg -86ffc0b8-f0f3-37da-bec5-d5ed396ae396,SESCO,II.1.1,San Luis,AR-D,annual,2023,naphtha combustion consumption by to the public,606.1094732,TJ,N2O,0.6,kg/TJ,363.66568392,kg -b2248e79-62b8-3f5c-8b1f-b32ff2ddfb25,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2023,naphtha combustion consumption by to the public,611.1752108,TJ,CO2,73300.0,kg/TJ,44799142.951639995,kg -8239dc0a-b926-36ba-ad8c-b01bd780e740,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2023,naphtha combustion consumption by to the public,611.1752108,TJ,CH4,3.0,kg/TJ,1833.5256323999997,kg -a45455d7-cd31-3ada-b61f-23e98a571743,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2023,naphtha combustion consumption by to the public,611.1752108,TJ,N2O,0.6,kg/TJ,366.70512647999993,kg -19376726-c10b-376c-b9b5-f546f8371636,SESCO,II.1.1,Santa Fe,AR-S,annual,2023,naphtha combustion consumption by to the public,3510.9783015999997,TJ,CO2,73300.0,kg/TJ,257354709.50727996,kg -fb99a158-1451-3924-a8a2-7b884dcd79c1,SESCO,II.1.1,Santa Fe,AR-S,annual,2023,naphtha combustion consumption by to the public,3510.9783015999997,TJ,CH4,3.0,kg/TJ,10532.934904799999,kg -b8c624a6-19ff-3ea2-8535-c771904e11db,SESCO,II.1.1,Santa Fe,AR-S,annual,2023,naphtha combustion consumption by to the public,3510.9783015999997,TJ,N2O,0.6,kg/TJ,2106.58698096,kg -32bd6085-6984-3852-9db1-b8fddde5bbd0,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2023,naphtha combustion consumption by to the public,643.9215859999999,TJ,CO2,73300.0,kg/TJ,47199452.2538,kg -5c74ca02-9c88-3400-9ce6-7c512953187c,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2023,naphtha combustion consumption by to the public,643.9215859999999,TJ,CH4,3.0,kg/TJ,1931.7647579999998,kg -7dad00dc-a72c-36ff-983e-219645a4dc14,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2023,naphtha combustion consumption by to the public,643.9215859999999,TJ,N2O,0.6,kg/TJ,386.3529515999999,kg -fa48212e-2054-3187-9288-6d1abd91cd00,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2023,naphtha combustion consumption by to the public,394.2832432,TJ,CO2,73300.0,kg/TJ,28900961.72656,kg -6ab977d2-83f6-36e9-97f4-a367b599a525,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2023,naphtha combustion consumption by to the public,394.2832432,TJ,CH4,3.0,kg/TJ,1182.8497296,kg -0e1ce6b3-3b1c-3796-b240-d63867b1d562,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2023,naphtha combustion consumption by to the public,394.2832432,TJ,N2O,0.6,kg/TJ,236.56994592,kg -cfc5f73f-184c-3996-85b4-4ec9add88ac1,SESCO,II.1.1,Tucuman,AR-T,annual,2023,naphtha combustion consumption by to the public,985.3764227999999,TJ,CO2,73300.0,kg/TJ,72228091.79123999,kg -fd251095-6004-30fa-9830-e27162465feb,SESCO,II.1.1,Tucuman,AR-T,annual,2023,naphtha combustion consumption by to the public,985.3764227999999,TJ,CH4,3.0,kg/TJ,2956.1292683999995,kg -c544d656-2218-347f-afd2-95efcbec428a,SESCO,II.1.1,Tucuman,AR-T,annual,2023,naphtha combustion consumption by to the public,985.3764227999999,TJ,N2O,0.6,kg/TJ,591.2258536799999,kg -45f870da-176a-3dc2-9a2a-8e3ec5874935,SESCO,II.1.1,Buenos Aires,AR-B,annual,2023,naphtha combustion consumption by freight transport,711.3441412,TJ,CO2,73300.0,kg/TJ,52141525.549959995,kg -3011f839-4ad4-3637-b4e6-6faba888a993,SESCO,II.1.1,Buenos Aires,AR-B,annual,2023,naphtha combustion consumption by freight transport,711.3441412,TJ,CH4,3.0,kg/TJ,2134.0324235999997,kg -c38f656d-1c1e-39ef-a12d-767a699825ce,SESCO,II.1.1,Buenos Aires,AR-B,annual,2023,naphtha combustion consumption by freight transport,711.3441412,TJ,N2O,0.6,kg/TJ,426.80648471999996,kg -69ac7db0-a938-3843-87d0-c767ace57a21,SESCO,II.1.1,Capital Federal,AR-C,annual,2023,naphtha combustion consumption by freight transport,108.64197959999998,TJ,CO2,73300.0,kg/TJ,7963457.104679999,kg -efa4bd8b-b705-3689-8263-88c73d2757f0,SESCO,II.1.1,Capital Federal,AR-C,annual,2023,naphtha combustion consumption by freight transport,108.64197959999998,TJ,CH4,3.0,kg/TJ,325.9259387999999,kg -fd639a7b-b3cc-32e6-9ce0-60a0e21d569f,SESCO,II.1.1,Capital Federal,AR-C,annual,2023,naphtha combustion consumption by freight transport,108.64197959999998,TJ,N2O,0.6,kg/TJ,65.18518775999999,kg -c7f217a5-e75d-382a-af62-3b560a936d70,SESCO,II.1.1,Catamarca,AR-K,annual,2023,naphtha combustion consumption by freight transport,4.824512,TJ,CO2,73300.0,kg/TJ,353636.7296,kg -1a95010a-79d7-38db-8daf-508121f4e761,SESCO,II.1.1,Catamarca,AR-K,annual,2023,naphtha combustion consumption by freight transport,4.824512,TJ,CH4,3.0,kg/TJ,14.473536000000001,kg -fe2f9e9c-47e4-3dd4-aecc-0b483316c024,SESCO,II.1.1,Catamarca,AR-K,annual,2023,naphtha combustion consumption by freight transport,4.824512,TJ,N2O,0.6,kg/TJ,2.8947072,kg -13841b70-d67a-33c9-9cee-d8c11810d9c0,SESCO,II.1.1,Chaco,AR-H,annual,2023,naphtha combustion consumption by freight transport,19.539273599999998,TJ,CO2,73300.0,kg/TJ,1432228.75488,kg -b312a8d2-c120-39b9-ac83-a13b31cd8809,SESCO,II.1.1,Chaco,AR-H,annual,2023,naphtha combustion consumption by freight transport,19.539273599999998,TJ,CH4,3.0,kg/TJ,58.61782079999999,kg -759da22d-f56b-3209-a237-ff65521fca34,SESCO,II.1.1,Chaco,AR-H,annual,2023,naphtha combustion consumption by freight transport,19.539273599999998,TJ,N2O,0.6,kg/TJ,11.723564159999999,kg -c31b03cc-e7e6-3797-a5bf-6243eb1e8238,SESCO,II.1.1,Chubut,AR-U,annual,2023,naphtha combustion consumption by freight transport,20.8961676,TJ,CO2,73300.0,kg/TJ,1531689.0850799999,kg -e3478145-f023-3e00-b773-957c0f1fd691,SESCO,II.1.1,Chubut,AR-U,annual,2023,naphtha combustion consumption by freight transport,20.8961676,TJ,CH4,3.0,kg/TJ,62.688502799999995,kg -30a5ffd8-30f6-3053-823d-5b0305573b09,SESCO,II.1.1,Chubut,AR-U,annual,2023,naphtha combustion consumption by freight transport,20.8961676,TJ,N2O,0.6,kg/TJ,12.53770056,kg -0d4d35eb-477d-38d1-b6db-69f6b232c9e5,SESCO,II.1.1,Corrientes,AR-W,annual,2023,naphtha combustion consumption by freight transport,18.84575,TJ,CO2,73300.0,kg/TJ,1381393.4749999999,kg -2b907e00-ece8-388e-b748-66a571dbf995,SESCO,II.1.1,Corrientes,AR-W,annual,2023,naphtha combustion consumption by freight transport,18.84575,TJ,CH4,3.0,kg/TJ,56.53725,kg -f70d0fc9-7b4e-34a9-8083-ad92a07c92f2,SESCO,II.1.1,Corrientes,AR-W,annual,2023,naphtha combustion consumption by freight transport,18.84575,TJ,N2O,0.6,kg/TJ,11.30745,kg -a4823a9d-4de4-3cac-97d9-eb320e8ef7d3,SESCO,II.1.1,Córdoba,AR-X,annual,2023,naphtha combustion consumption by freight transport,120.6128,TJ,CO2,73300.0,kg/TJ,8840918.24,kg -5e86e01e-1eec-3663-a7cb-1cfa30aad0ce,SESCO,II.1.1,Córdoba,AR-X,annual,2023,naphtha combustion consumption by freight transport,120.6128,TJ,CH4,3.0,kg/TJ,361.8384,kg -7239fce8-c8cf-3ed8-abc5-98104150e3e7,SESCO,II.1.1,Córdoba,AR-X,annual,2023,naphtha combustion consumption by freight transport,120.6128,TJ,N2O,0.6,kg/TJ,72.36768,kg -9ba08655-98e0-3038-b099-76efe3ea7bdd,SESCO,II.1.1,Entre Rios,AR-E,annual,2023,naphtha combustion consumption by freight transport,39.319772799999996,TJ,CO2,73300.0,kg/TJ,2882139.34624,kg -ff47ad5b-dcee-36c5-b125-5247d1b9d47e,SESCO,II.1.1,Entre Rios,AR-E,annual,2023,naphtha combustion consumption by freight transport,39.319772799999996,TJ,CH4,3.0,kg/TJ,117.95931839999999,kg -dba35c43-4f2b-3223-b9a5-4e28c96ee337,SESCO,II.1.1,Entre Rios,AR-E,annual,2023,naphtha combustion consumption by freight transport,39.319772799999996,TJ,N2O,0.6,kg/TJ,23.591863679999996,kg -89a56d5b-d214-381b-89d6-183292f77c00,SESCO,II.1.1,Formosa,AR-P,annual,2023,naphtha combustion consumption by freight transport,6.7241636,TJ,CO2,73300.0,kg/TJ,492881.19188,kg -0febafdb-11fa-341c-a94f-3b17cb896155,SESCO,II.1.1,Formosa,AR-P,annual,2023,naphtha combustion consumption by freight transport,6.7241636,TJ,CH4,3.0,kg/TJ,20.1724908,kg -690ffa42-5ede-33a2-a6c2-cb1f56d97e67,SESCO,II.1.1,Formosa,AR-P,annual,2023,naphtha combustion consumption by freight transport,6.7241636,TJ,N2O,0.6,kg/TJ,4.03449816,kg -8e6831a5-3509-3ca8-9eac-8049f58c7abb,SESCO,II.1.1,Jujuy,AR-Y,annual,2023,naphtha combustion consumption by freight transport,8.865040800000001,TJ,CO2,73300.0,kg/TJ,649807.4906400001,kg -015e2181-e16a-3834-8ae0-3d43e0678f5f,SESCO,II.1.1,Jujuy,AR-Y,annual,2023,naphtha combustion consumption by freight transport,8.865040800000001,TJ,CH4,3.0,kg/TJ,26.5951224,kg -c4c41dae-df6c-36b8-bf2f-bcc6c41618ab,SESCO,II.1.1,Jujuy,AR-Y,annual,2023,naphtha combustion consumption by freight transport,8.865040800000001,TJ,N2O,0.6,kg/TJ,5.31902448,kg -faff3ec5-f5fe-3d0b-95d4-45f32c15ab0e,SESCO,II.1.1,La Pampa,AR-L,annual,2023,naphtha combustion consumption by freight transport,12.573884399999999,TJ,CO2,73300.0,kg/TJ,921665.7265199999,kg -cff5d3f9-a661-3d39-95d8-db19e4e4b7db,SESCO,II.1.1,La Pampa,AR-L,annual,2023,naphtha combustion consumption by freight transport,12.573884399999999,TJ,CH4,3.0,kg/TJ,37.7216532,kg -d832459a-719c-3552-b1bc-4c53215fdd9e,SESCO,II.1.1,La Pampa,AR-L,annual,2023,naphtha combustion consumption by freight transport,12.573884399999999,TJ,N2O,0.6,kg/TJ,7.544330639999999,kg -c460e67a-f8ef-3415-8f9f-cf28bda62b4c,SESCO,II.1.1,La Rioja,AR-F,annual,2023,naphtha combustion consumption by freight transport,7.6890659999999995,TJ,CO2,73300.0,kg/TJ,563608.5377999999,kg -6ef498c6-a462-3286-9011-4ce1bab7cf8c,SESCO,II.1.1,La Rioja,AR-F,annual,2023,naphtha combustion consumption by freight transport,7.6890659999999995,TJ,CH4,3.0,kg/TJ,23.067197999999998,kg -055960e7-01ee-364f-8f08-cba603040e9a,SESCO,II.1.1,La Rioja,AR-F,annual,2023,naphtha combustion consumption by freight transport,7.6890659999999995,TJ,N2O,0.6,kg/TJ,4.6134395999999995,kg -bd86e7dc-3055-3aac-bda2-6ddf51e2a8e0,SESCO,II.1.1,Mendoza,AR-M,annual,2023,naphtha combustion consumption by freight transport,52.3459552,TJ,CO2,73300.0,kg/TJ,3836958.51616,kg -a3511178-22a3-3b85-ac9a-b39e8afb234b,SESCO,II.1.1,Mendoza,AR-M,annual,2023,naphtha combustion consumption by freight transport,52.3459552,TJ,CH4,3.0,kg/TJ,157.0378656,kg -7f06e634-316a-30cb-8eff-d59b09bdaa5f,SESCO,II.1.1,Mendoza,AR-M,annual,2023,naphtha combustion consumption by freight transport,52.3459552,TJ,N2O,0.6,kg/TJ,31.40757312,kg -680080a7-a068-3d77-a85d-e3df26dd6e4f,SESCO,II.1.1,Misiones,AR-N,annual,2023,naphtha combustion consumption by freight transport,15.679663999999999,TJ,CO2,73300.0,kg/TJ,1149319.3712,kg -1a75e820-4812-32fd-b49b-31d4d6fdf890,SESCO,II.1.1,Misiones,AR-N,annual,2023,naphtha combustion consumption by freight transport,15.679663999999999,TJ,CH4,3.0,kg/TJ,47.03899199999999,kg -a64caabe-fcc7-384f-9c7f-5e529040abff,SESCO,II.1.1,Misiones,AR-N,annual,2023,naphtha combustion consumption by freight transport,15.679663999999999,TJ,N2O,0.6,kg/TJ,9.407798399999999,kg -c6cc53ac-9799-35bb-a6c5-8f5cbcb43ca6,SESCO,II.1.1,Neuquén,AR-Q,annual,2023,naphtha combustion consumption by freight transport,21.227852799999997,TJ,CO2,73300.0,kg/TJ,1556001.6102399998,kg -0d86524d-7fa2-36fa-b00f-6f0e5e917fd8,SESCO,II.1.1,Neuquén,AR-Q,annual,2023,naphtha combustion consumption by freight transport,21.227852799999997,TJ,CH4,3.0,kg/TJ,63.683558399999995,kg -759c50aa-4689-318a-ada4-61e88de1aa32,SESCO,II.1.1,Neuquén,AR-Q,annual,2023,naphtha combustion consumption by freight transport,21.227852799999997,TJ,N2O,0.6,kg/TJ,12.736711679999997,kg -33a492d5-e5fc-3040-aba8-581fba19cdcb,SESCO,II.1.1,Rio Negro,AR-R,annual,2023,naphtha combustion consumption by freight transport,23.7908748,TJ,CO2,73300.0,kg/TJ,1743871.12284,kg -a80de323-d8de-3d73-b47c-9afe6fc93bd7,SESCO,II.1.1,Rio Negro,AR-R,annual,2023,naphtha combustion consumption by freight transport,23.7908748,TJ,CH4,3.0,kg/TJ,71.3726244,kg -3045d535-966c-3a93-96bd-f6ecfc8bdd87,SESCO,II.1.1,Rio Negro,AR-R,annual,2023,naphtha combustion consumption by freight transport,23.7908748,TJ,N2O,0.6,kg/TJ,14.27452488,kg -d53157d2-0c42-3fbf-88cb-29e25f4d0da9,SESCO,II.1.1,Salta,AR-A,annual,2023,naphtha combustion consumption by freight transport,26.534815999999996,TJ,CO2,73300.0,kg/TJ,1945002.0127999997,kg -840e0ad4-0292-36ab-b084-5bbbad34cee0,SESCO,II.1.1,Salta,AR-A,annual,2023,naphtha combustion consumption by freight transport,26.534815999999996,TJ,CH4,3.0,kg/TJ,79.60444799999999,kg -d89a0198-a96a-32e9-acd0-b7beba44102c,SESCO,II.1.1,Salta,AR-A,annual,2023,naphtha combustion consumption by freight transport,26.534815999999996,TJ,N2O,0.6,kg/TJ,15.920889599999997,kg -64dce1a9-1914-3bd3-883e-9e646588aec8,SESCO,II.1.1,San Juan,AR-J,annual,2023,naphtha combustion consumption by freight transport,14.172004,TJ,CO2,73300.0,kg/TJ,1038807.8931999999,kg -c9f47b49-4432-341c-b910-f7edf2d031fd,SESCO,II.1.1,San Juan,AR-J,annual,2023,naphtha combustion consumption by freight transport,14.172004,TJ,CH4,3.0,kg/TJ,42.516011999999996,kg -7c66b596-3c7f-34f7-8790-d93b327717b8,SESCO,II.1.1,San Juan,AR-J,annual,2023,naphtha combustion consumption by freight transport,14.172004,TJ,N2O,0.6,kg/TJ,8.5032024,kg -1dc49518-087f-398a-aff5-fe9da6f09a1c,SESCO,II.1.1,San Luis,AR-D,annual,2023,naphtha combustion consumption by freight transport,11.458215999999998,TJ,CO2,73300.0,kg/TJ,839887.2327999999,kg -40267387-0a51-364b-8b19-ab02bf3ca63d,SESCO,II.1.1,San Luis,AR-D,annual,2023,naphtha combustion consumption by freight transport,11.458215999999998,TJ,CH4,3.0,kg/TJ,34.37464799999999,kg -6e72a982-338a-34fb-a6c6-72299357855a,SESCO,II.1.1,San Luis,AR-D,annual,2023,naphtha combustion consumption by freight transport,11.458215999999998,TJ,N2O,0.6,kg/TJ,6.874929599999999,kg -ac9f94cc-3325-305e-9565-ad4dc1dbd404,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2023,naphtha combustion consumption by freight transport,11.820054399999998,TJ,CO2,73300.0,kg/TJ,866409.9875199998,kg -860c81e0-baa6-3d73-8e9a-09ffe63cf06c,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2023,naphtha combustion consumption by freight transport,11.820054399999998,TJ,CH4,3.0,kg/TJ,35.4601632,kg -9ed7e360-392a-346a-be0b-d4051aa6c81f,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2023,naphtha combustion consumption by freight transport,11.820054399999998,TJ,N2O,0.6,kg/TJ,7.0920326399999984,kg -6c3c1f3b-9631-3ec5-a542-69ea93909bfa,SESCO,II.1.1,Santa Fe,AR-S,annual,2023,naphtha combustion consumption by freight transport,110.51147799999998,TJ,CO2,73300.0,kg/TJ,8100491.337399999,kg -c40637a6-94e1-39d6-a4f7-5358d872550d,SESCO,II.1.1,Santa Fe,AR-S,annual,2023,naphtha combustion consumption by freight transport,110.51147799999998,TJ,CH4,3.0,kg/TJ,331.5344339999999,kg -a3c7ccb8-3a25-373c-9b16-291151929fdf,SESCO,II.1.1,Santa Fe,AR-S,annual,2023,naphtha combustion consumption by freight transport,110.51147799999998,TJ,N2O,0.6,kg/TJ,66.30688679999999,kg -a7a06214-2e49-3461-b7ea-b079efdcfad9,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2023,naphtha combustion consumption by freight transport,9.287185599999999,TJ,CO2,73300.0,kg/TJ,680750.70448,kg -b38a0ce7-8074-349b-8ccb-1f4d7112fd50,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2023,naphtha combustion consumption by freight transport,9.287185599999999,TJ,CH4,3.0,kg/TJ,27.861556799999995,kg -e5151861-1ce5-3f2e-a7fb-0e430e0a6e3b,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2023,naphtha combustion consumption by freight transport,9.287185599999999,TJ,N2O,0.6,kg/TJ,5.57231136,kg -edc9851f-b9ae-384e-a19f-45b1dcae6d9e,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2023,naphtha combustion consumption by freight transport,9.407798399999999,TJ,CO2,73300.0,kg/TJ,689591.62272,kg -9656e327-9272-3827-8302-1f639826f599,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2023,naphtha combustion consumption by freight transport,9.407798399999999,TJ,CH4,3.0,kg/TJ,28.2233952,kg -fc085fbc-0759-3143-a350-7c4532fde242,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2023,naphtha combustion consumption by freight transport,9.407798399999999,TJ,N2O,0.6,kg/TJ,5.644679039999999,kg -f94249f2-cf16-3fcb-9e97-731065071615,SESCO,II.1.1,Tucuman,AR-T,annual,2023,naphtha combustion consumption by freight transport,33.2891328,TJ,CO2,73300.0,kg/TJ,2440093.43424,kg -cd00025d-9d12-3e3c-84a5-908ed090d5f4,SESCO,II.1.1,Tucuman,AR-T,annual,2023,naphtha combustion consumption by freight transport,33.2891328,TJ,CH4,3.0,kg/TJ,99.86739839999998,kg -fe6d215c-b3e9-3265-9b8c-c54546cdf153,SESCO,II.1.1,Tucuman,AR-T,annual,2023,naphtha combustion consumption by freight transport,33.2891328,TJ,N2O,0.6,kg/TJ,19.973479679999997,kg -16da67ea-b1d9-347c-80b8-d290dc570bba,SESCO,II.1.1,Buenos Aires,AR-B,annual,2023,naphtha combustion consumption by freight transport,707.6051443999999,TJ,CO2,73300.0,kg/TJ,51867457.08451999,kg -7ebdf8b5-8acf-3b0d-8399-8a29155366ab,SESCO,II.1.1,Buenos Aires,AR-B,annual,2023,naphtha combustion consumption by freight transport,707.6051443999999,TJ,CH4,3.0,kg/TJ,2122.8154331999995,kg -75a96f8b-b1f9-3168-8be0-4a217d474f66,SESCO,II.1.1,Buenos Aires,AR-B,annual,2023,naphtha combustion consumption by freight transport,707.6051443999999,TJ,N2O,0.6,kg/TJ,424.5630866399999,kg -f83e31c5-9473-3ad9-9e7d-3705be25fd1d,SESCO,II.1.1,Capital Federal,AR-C,annual,2023,naphtha combustion consumption by freight transport,113.43633839999998,TJ,CO2,73300.0,kg/TJ,8314883.604719998,kg -9991dd3b-21a4-3a87-abbc-95204970d487,SESCO,II.1.1,Capital Federal,AR-C,annual,2023,naphtha combustion consumption by freight transport,113.43633839999998,TJ,CH4,3.0,kg/TJ,340.3090152,kg -71ab1e50-9144-3c39-9d18-3861d8ac162c,SESCO,II.1.1,Capital Federal,AR-C,annual,2023,naphtha combustion consumption by freight transport,113.43633839999998,TJ,N2O,0.6,kg/TJ,68.06180303999999,kg -e5d97061-b5e4-36ad-91b9-5d43de16ec66,SESCO,II.1.1,Catamarca,AR-K,annual,2023,naphtha combustion consumption by freight transport,2.2011836,TJ,CO2,73300.0,kg/TJ,161346.75788,kg -cbb245d6-0efa-3305-ab0f-13c6e5a79923,SESCO,II.1.1,Catamarca,AR-K,annual,2023,naphtha combustion consumption by freight transport,2.2011836,TJ,CH4,3.0,kg/TJ,6.603550799999999,kg -e485756d-bc4f-3cdf-bd27-d0072fbec9af,SESCO,II.1.1,Catamarca,AR-K,annual,2023,naphtha combustion consumption by freight transport,2.2011836,TJ,N2O,0.6,kg/TJ,1.3207101599999997,kg -19b75961-0fbe-3865-bee8-ee10eb0ddc1b,SESCO,II.1.1,Chaco,AR-H,annual,2023,naphtha combustion consumption by freight transport,15.770123599999998,TJ,CO2,73300.0,kg/TJ,1155950.0598799998,kg -76b737ec-56d8-3937-b276-6a77b5e3f595,SESCO,II.1.1,Chaco,AR-H,annual,2023,naphtha combustion consumption by freight transport,15.770123599999998,TJ,CH4,3.0,kg/TJ,47.310370799999994,kg -0cc76e91-e3af-35ad-bbdf-a81ddf31325e,SESCO,II.1.1,Chaco,AR-H,annual,2023,naphtha combustion consumption by freight transport,15.770123599999998,TJ,N2O,0.6,kg/TJ,9.462074159999998,kg -ffe341bd-90e3-3eed-af28-b090671f0733,SESCO,II.1.1,Chubut,AR-U,annual,2023,naphtha combustion consumption by freight transport,15.3479788,TJ,CO2,73300.0,kg/TJ,1125006.84604,kg -b0313132-fce7-3866-8cbf-1a34e50f3cb9,SESCO,II.1.1,Chubut,AR-U,annual,2023,naphtha combustion consumption by freight transport,15.3479788,TJ,CH4,3.0,kg/TJ,46.0439364,kg -6d4753dd-7676-3934-ada8-c8ff2ea08549,SESCO,II.1.1,Chubut,AR-U,annual,2023,naphtha combustion consumption by freight transport,15.3479788,TJ,N2O,0.6,kg/TJ,9.20878728,kg -1bb9f944-2942-359d-b26c-304a2136f145,SESCO,II.1.1,Corrientes,AR-W,annual,2023,naphtha combustion consumption by freight transport,20.3232568,TJ,CO2,73300.0,kg/TJ,1489694.7234399999,kg -ac76104d-f29f-3c94-a3be-e9acaa67da00,SESCO,II.1.1,Corrientes,AR-W,annual,2023,naphtha combustion consumption by freight transport,20.3232568,TJ,CH4,3.0,kg/TJ,60.9697704,kg -70c41da0-a919-378d-b2b4-297dc7fac1e8,SESCO,II.1.1,Corrientes,AR-W,annual,2023,naphtha combustion consumption by freight transport,20.3232568,TJ,N2O,0.6,kg/TJ,12.19395408,kg -404ef70e-1bdc-3280-8ed1-80f288c462b1,SESCO,II.1.1,Córdoba,AR-X,annual,2023,naphtha combustion consumption by freight transport,104.48083799999998,TJ,CO2,73300.0,kg/TJ,7658445.425399998,kg -292ede7a-c81f-3073-8dca-b587f317e0de,SESCO,II.1.1,Córdoba,AR-X,annual,2023,naphtha combustion consumption by freight transport,104.48083799999998,TJ,CH4,3.0,kg/TJ,313.44251399999996,kg -be0b2188-692b-3b9d-b49c-042c41b40f03,SESCO,II.1.1,Córdoba,AR-X,annual,2023,naphtha combustion consumption by freight transport,104.48083799999998,TJ,N2O,0.6,kg/TJ,62.68850279999998,kg -29511949-545d-3be2-bacb-33b9e634fd51,SESCO,II.1.1,Entre Rios,AR-E,annual,2023,naphtha combustion consumption by freight transport,38.41517679999999,TJ,CO2,73300.0,kg/TJ,2815832.4594399994,kg -51bf50a1-ab4f-3953-b179-464438bcd9fe,SESCO,II.1.1,Entre Rios,AR-E,annual,2023,naphtha combustion consumption by freight transport,38.41517679999999,TJ,CH4,3.0,kg/TJ,115.24553039999998,kg -e963e652-de43-3dfc-8c0d-7c4db5820531,SESCO,II.1.1,Entre Rios,AR-E,annual,2023,naphtha combustion consumption by freight transport,38.41517679999999,TJ,N2O,0.6,kg/TJ,23.049106079999994,kg -fec118a3-234f-3189-aa3a-14c13407a97d,SESCO,II.1.1,Formosa,AR-P,annual,2023,naphtha combustion consumption by freight transport,3.3470052,TJ,CO2,73300.0,kg/TJ,245335.48116,kg -516b94a0-3956-3862-9eac-fc18eb7cacbd,SESCO,II.1.1,Formosa,AR-P,annual,2023,naphtha combustion consumption by freight transport,3.3470052,TJ,CH4,3.0,kg/TJ,10.0410156,kg -66489951-63d3-369e-98bd-48e37c648568,SESCO,II.1.1,Formosa,AR-P,annual,2023,naphtha combustion consumption by freight transport,3.3470052,TJ,N2O,0.6,kg/TJ,2.0082031199999997,kg -626a1ad3-7486-332a-8fb1-e1d299c4ceb0,SESCO,II.1.1,Jujuy,AR-Y,annual,2023,naphtha combustion consumption by freight transport,4.0405288,TJ,CO2,73300.0,kg/TJ,296170.76103999995,kg -dca67440-66e8-3f09-82e4-a71a2d11499a,SESCO,II.1.1,Jujuy,AR-Y,annual,2023,naphtha combustion consumption by freight transport,4.0405288,TJ,CH4,3.0,kg/TJ,12.121586399999998,kg -f808169d-07be-36d4-8a28-7afb2a9fbc97,SESCO,II.1.1,Jujuy,AR-Y,annual,2023,naphtha combustion consumption by freight transport,4.0405288,TJ,N2O,0.6,kg/TJ,2.42431728,kg -eb650586-2831-3f8b-8add-b2bef202c8d4,SESCO,II.1.1,La Pampa,AR-L,annual,2023,naphtha combustion consumption by freight transport,13.840318799999999,TJ,CO2,73300.0,kg/TJ,1014495.3680399999,kg -aeb7a51e-fa99-332d-8000-d77fdbd7b37b,SESCO,II.1.1,La Pampa,AR-L,annual,2023,naphtha combustion consumption by freight transport,13.840318799999999,TJ,CH4,3.0,kg/TJ,41.520956399999996,kg -b62ca777-8e3a-3af4-9d6f-2f4f57af27b2,SESCO,II.1.1,La Pampa,AR-L,annual,2023,naphtha combustion consumption by freight transport,13.840318799999999,TJ,N2O,0.6,kg/TJ,8.30419128,kg -3f03de4f-c1cc-3d27-88df-21dc212a502a,SESCO,II.1.1,La Rioja,AR-F,annual,2023,naphtha combustion consumption by freight transport,5.879873999999999,TJ,CO2,73300.0,kg/TJ,430994.7641999999,kg -6e347d4a-a2ca-36bb-9730-0fdffe77c065,SESCO,II.1.1,La Rioja,AR-F,annual,2023,naphtha combustion consumption by freight transport,5.879873999999999,TJ,CH4,3.0,kg/TJ,17.639621999999996,kg -2454c4fe-3a81-38bf-a24e-9459c4aa3c0e,SESCO,II.1.1,La Rioja,AR-F,annual,2023,naphtha combustion consumption by freight transport,5.879873999999999,TJ,N2O,0.6,kg/TJ,3.5279243999999994,kg -ea87bd23-8a7d-371e-a3ca-f96f99922fc0,SESCO,II.1.1,Mendoza,AR-M,annual,2023,naphtha combustion consumption by freight transport,61.241149199999995,TJ,CO2,73300.0,kg/TJ,4488976.2363599995,kg -c8707e38-d078-3f7c-baea-14f720a2d341,SESCO,II.1.1,Mendoza,AR-M,annual,2023,naphtha combustion consumption by freight transport,61.241149199999995,TJ,CH4,3.0,kg/TJ,183.7234476,kg -c7959154-ac92-3153-8863-72db6f97421a,SESCO,II.1.1,Mendoza,AR-M,annual,2023,naphtha combustion consumption by freight transport,61.241149199999995,TJ,N2O,0.6,kg/TJ,36.744689519999994,kg -fc689f79-1044-344e-b466-8ac59c64158f,SESCO,II.1.1,Misiones,AR-N,annual,2023,naphtha combustion consumption by freight transport,16.493800399999998,TJ,CO2,73300.0,kg/TJ,1208995.5693199998,kg -6b33533e-dc4d-3b9e-8c22-035148f43880,SESCO,II.1.1,Misiones,AR-N,annual,2023,naphtha combustion consumption by freight transport,16.493800399999998,TJ,CH4,3.0,kg/TJ,49.48140119999999,kg -ac3494b4-61e5-3ed4-aa0d-3ac861ab3428,SESCO,II.1.1,Misiones,AR-N,annual,2023,naphtha combustion consumption by freight transport,16.493800399999998,TJ,N2O,0.6,kg/TJ,9.896280239999998,kg -32857f6c-6a57-309b-b6f6-78fe6e805e22,SESCO,II.1.1,Neuquén,AR-Q,annual,2023,naphtha combustion consumption by freight transport,41.279730799999996,TJ,CO2,73300.0,kg/TJ,3025804.2676399997,kg -0758c5cb-64a3-34f1-b106-a93df58c88c1,SESCO,II.1.1,Neuquén,AR-Q,annual,2023,naphtha combustion consumption by freight transport,41.279730799999996,TJ,CH4,3.0,kg/TJ,123.83919239999999,kg -a0f5f0de-d698-33be-aec7-03f9e1914943,SESCO,II.1.1,Neuquén,AR-Q,annual,2023,naphtha combustion consumption by freight transport,41.279730799999996,TJ,N2O,0.6,kg/TJ,24.767838479999998,kg -5267e32a-061d-365d-bbc8-decd0ace0ec2,SESCO,II.1.1,Rio Negro,AR-R,annual,2023,naphtha combustion consumption by freight transport,30.5753448,TJ,CO2,73300.0,kg/TJ,2241172.77384,kg -805b9873-669f-3255-97ab-a98d3c5c3e65,SESCO,II.1.1,Rio Negro,AR-R,annual,2023,naphtha combustion consumption by freight transport,30.5753448,TJ,CH4,3.0,kg/TJ,91.7260344,kg -37005eda-5c44-303c-8a6f-6f55fc8774fe,SESCO,II.1.1,Rio Negro,AR-R,annual,2023,naphtha combustion consumption by freight transport,30.5753448,TJ,N2O,0.6,kg/TJ,18.34520688,kg -46269e2b-8592-3af8-8626-8d63de7dd4eb,SESCO,II.1.1,Salta,AR-A,annual,2023,naphtha combustion consumption by freight transport,22.464133999999998,TJ,CO2,73300.0,kg/TJ,1646621.0221999998,kg -7eedb236-f85a-365f-8b80-6e59ee761b8e,SESCO,II.1.1,Salta,AR-A,annual,2023,naphtha combustion consumption by freight transport,22.464133999999998,TJ,CH4,3.0,kg/TJ,67.39240199999999,kg -cf223dee-3b40-3560-936a-ad2cd23e5b15,SESCO,II.1.1,Salta,AR-A,annual,2023,naphtha combustion consumption by freight transport,22.464133999999998,TJ,N2O,0.6,kg/TJ,13.478480399999999,kg -cc33b998-c9e9-38f3-b7fa-790ae8a77694,SESCO,II.1.1,San Juan,AR-J,annual,2023,naphtha combustion consumption by freight transport,8.5635088,TJ,CO2,73300.0,kg/TJ,627705.1950399999,kg -f6bf61be-45e3-30c0-9a10-3d23ab551694,SESCO,II.1.1,San Juan,AR-J,annual,2023,naphtha combustion consumption by freight transport,8.5635088,TJ,CH4,3.0,kg/TJ,25.690526399999996,kg -940684e4-de1b-32a6-b4d6-e96b6eee4820,SESCO,II.1.1,San Juan,AR-J,annual,2023,naphtha combustion consumption by freight transport,8.5635088,TJ,N2O,0.6,kg/TJ,5.1381052799999996,kg -f223e262-ab85-3dcd-904b-26ffc006ccb9,SESCO,II.1.1,San Luis,AR-D,annual,2023,naphtha combustion consumption by freight transport,9.0158068,TJ,CO2,73300.0,kg/TJ,660858.63844,kg -7ad76924-1b08-3332-ba73-77bf9cd90645,SESCO,II.1.1,San Luis,AR-D,annual,2023,naphtha combustion consumption by freight transport,9.0158068,TJ,CH4,3.0,kg/TJ,27.0474204,kg -2fca8a9b-06a1-3e4d-9cd1-8da40115ea13,SESCO,II.1.1,San Luis,AR-D,annual,2023,naphtha combustion consumption by freight transport,9.0158068,TJ,N2O,0.6,kg/TJ,5.4094840799999995,kg -fa0fc280-7836-3276-82f7-830db463f880,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2023,naphtha combustion consumption by freight transport,5.6084952,TJ,CO2,73300.0,kg/TJ,411102.69816,kg -b1f82ecc-c965-3bb6-9471-6ca68c3b1c1e,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2023,naphtha combustion consumption by freight transport,5.6084952,TJ,CH4,3.0,kg/TJ,16.8254856,kg -32793668-ae2b-3b75-aca4-19004e24949a,SESCO,II.1.1,Santa Cruz,AR-Z,annual,2023,naphtha combustion consumption by freight transport,5.6084952,TJ,N2O,0.6,kg/TJ,3.36509712,kg -6f64ea8e-79eb-3034-bb9e-09d7f004da93,SESCO,II.1.1,Santa Fe,AR-S,annual,2023,naphtha combustion consumption by freight transport,109.18473719999999,TJ,CO2,73300.0,kg/TJ,8003241.236759999,kg -a61b926b-66bc-357a-8b96-0cf785a5594a,SESCO,II.1.1,Santa Fe,AR-S,annual,2023,naphtha combustion consumption by freight transport,109.18473719999999,TJ,CH4,3.0,kg/TJ,327.5542116,kg -75c6d3ad-35da-3296-9f06-4ce4edc3c2ed,SESCO,II.1.1,Santa Fe,AR-S,annual,2023,naphtha combustion consumption by freight transport,109.18473719999999,TJ,N2O,0.6,kg/TJ,65.51084232,kg -1d22e4be-3b2c-31a0-b899-d4a73ecfe367,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2023,naphtha combustion consumption by freight transport,6.0004868,TJ,CO2,73300.0,kg/TJ,439835.68244,kg -5f823e81-cecd-3d19-9340-afa597aeb1fa,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2023,naphtha combustion consumption by freight transport,6.0004868,TJ,CH4,3.0,kg/TJ,18.0014604,kg -688cb3eb-e803-3654-a6fa-d7dba2589f5f,SESCO,II.1.1,Santiago del Estero,AR-G,annual,2023,naphtha combustion consumption by freight transport,6.0004868,TJ,N2O,0.6,kg/TJ,3.60029208,kg -860a2993-980d-3f28-a532-fc79ce4147ea,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2023,naphtha combustion consumption by freight transport,3.8897627999999993,TJ,CO2,73300.0,kg/TJ,285119.61324,kg -e584db3c-5fe8-35d1-b3b7-ccadd68e0a77,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2023,naphtha combustion consumption by freight transport,3.8897627999999993,TJ,CH4,3.0,kg/TJ,11.669288399999997,kg -c000f088-1a79-3a12-b821-27ff084e07c5,SESCO,II.1.1,Tierra del Fuego,AR-V,annual,2023,naphtha combustion consumption by freight transport,3.8897627999999993,TJ,N2O,0.6,kg/TJ,2.3338576799999995,kg -f03b2817-da55-3ed7-a839-9b7465d15fb1,SESCO,II.1.1,Tucuman,AR-T,annual,2023,naphtha combustion consumption by freight transport,18.4839116,TJ,CO2,73300.0,kg/TJ,1354870.72028,kg -51d7f58f-51d9-321c-9f51-870d022a39f2,SESCO,II.1.1,Tucuman,AR-T,annual,2023,naphtha combustion consumption by freight transport,18.4839116,TJ,CH4,3.0,kg/TJ,55.4517348,kg -b13c1c7a-9814-3281-b267-9a13e9ad7c6d,SESCO,II.1.1,Tucuman,AR-T,annual,2023,naphtha combustion consumption by freight transport,18.4839116,TJ,N2O,0.6,kg/TJ,11.09034696,kg diff --git a/global-api/importer/argentinian_datasets/SESCO/transformation_SESCO_AR.py b/global-api/importer/argentinian_datasets/SESCO/transformation_SESCO_AR.py index ba5f16788..f4e375bf4 100644 --- a/global-api/importer/argentinian_datasets/SESCO/transformation_SESCO_AR.py +++ b/global-api/importer/argentinian_datasets/SESCO/transformation_SESCO_AR.py @@ -2,6 +2,7 @@ import argparse import uuid import os +from sqlalchemy import create_engine def uuid_generate_v3(name, namespace=uuid.NAMESPACE_OID): """generate a version 3 UUID from namespace and name""" @@ -12,6 +13,11 @@ def uuid_generate_v3(name, namespace=uuid.NAMESPACE_OID): if __name__ == "__main__": parser = argparse.ArgumentParser(description='Transform files with a specified location.') parser.add_argument("--filepath", help="path to the files location", required=True) + parser.add_argument( + "--database_uri", + help="database URI (e.g. postgresql://ccglobal:@localhost/ccglobal)", + default=os.environ.get("DB_URI"), + ) args = parser.parse_args() absolute_path = os.path.abspath(args.filepath) @@ -23,14 +29,14 @@ def uuid_generate_v3(name, namespace=uuid.NAMESPACE_OID): #------------------------------------------------------------------------ # clean the dataset - df = df.drop(columns=['pais', 'indice_tiempo', 'tipodecomercializacion']) + df = df.drop(columns=['pais','mes', 'indice_tiempo', 'tipodecomercializacion']) # change column names (Spanish to English) df.columns = ['year', 'company', 'marketing_subtype', 'fuel_type', 'region_name', 'activity_value'] # list of "region_name" values to delete filter_values = ['S/D', 'no aplica', 'Provincia', 'Estado Nacional'] - df = df[~df['provincia'].isin(filter_values)] + df = df[~df['region_name'].isin(filter_values)] # delete empty amounts of fuel df = df[df['activity_value'] != 0] @@ -388,7 +394,7 @@ def map_emission_factors(row): # define a function to generate UUID for each row def generate_uuid(row): - id_string = str(row['region_code']) + str(row['emissions_value']) + str(row['GPC_refno']) + id_string = str(row['region_code']) + str(row['source_name']) + str(row['GPC_refno']) + str(row['gas_name']) + str(row['year']) return uuid_generate_v3(id_string) # apply the function to each row and assign the result to a new column 'id' @@ -396,7 +402,13 @@ def generate_uuid(row): col_order = ['id', 'source_name', 'GPC_refno', 'region_name', 'region_code', 'temporal_granularity', 'year', 'activity_name', 'activity_value', 'activity_units', 'gas_name', 'emission_factor_value', 'emission_factor_units', 'emissions_value', 'emissions_units'] - final_df = final_df.reindex(columns=col_order) + final_df = final_df.reindex(columns=col_order).drop_duplicates() # save the file - final_df.to_csv(f'{absolute_path}/processed_SESCO_AR.csv', sep=",", decimal=".", index=False) \ No newline at end of file + # final_df.to_csv(f'{absolute_path}/processed_SESCO_AR.csv', sep=",", decimal=".", index=False) + + # Create a SQLAlchemy engine + engine = create_engine(args.database_uri) + + # Write the DataFrame to the database table + final_df.to_sql('sesco_region_emissions_staging', engine, if_exists='replace', index=False) \ No newline at end of file diff --git a/global-api/routes/country_code_endpoint.py b/global-api/routes/country_code_endpoint.py index ba7e25221..6de0d5550 100644 --- a/global-api/routes/country_code_endpoint.py +++ b/global-api/routes/country_code_endpoint.py @@ -26,11 +26,13 @@ def db_query(source_name, country_code, year, GPC_refno): with SessionLocal() as session: query = text( """ - SELECT * FROM country_code + SELECT lower(gas_name) as gas_name, sum(emissions_value::float) as emissions_value + FROM country_code WHERE source_name = :source_name AND "GPC_refno" = :GPC_refno AND country_code = :country_code - AND year = :year; + AND year = :year + GROUP BY gas_name; """ ) params = {"source_name": source_name, "country_code": country_code, "year": year, "GPC_refno": GPC_refno} diff --git a/global-api/routes/region_code_endpoint.py b/global-api/routes/region_code_endpoint.py index 924b208e9..ead75f8d6 100644 --- a/global-api/routes/region_code_endpoint.py +++ b/global-api/routes/region_code_endpoint.py @@ -21,29 +21,31 @@ def not_nan_or_none(value): # Extract the data by locode, year and sector/subsector -def db_query(source_name, region_name, year, GPC_refno): +def db_query(source_name, region_code, year, GPC_refno): rows = [] with SessionLocal() as session: query = text( """ - SELECT * FROM regionwide_emissions + SELECT lower(gas_name) as gas_name, sum(emissions_value) as emissions_value + FROM regionwide_emissions WHERE source_name = :source_name AND "GPC_refno" = :GPC_refno - AND region_name = :region_name - AND year = :year; + AND region_code = :region_code + AND year = :year + GROUP BY gas_name; """ ) - params = {"source_name": source_name, "region_name": region_name, "year": year, "GPC_refno": GPC_refno} + params = {"source_name": source_name, "region_code": region_code, "year": year, "GPC_refno": GPC_refno} result = session.execute(query, params) rows = [row._asdict() for row in result] return rows -@api_router.get("/source/{source_name}/region/{region_name}/{year}/{GPC_refno}") -def get_emissions_by_country_and_year(source_name: str, region_name: str, year: str, GPC_refno: str): +@api_router.get("/source/{source_name}/region/{region_code}/{year}/{GPC_refno}") +def get_emissions_by_country_and_year(source_name: str, region_code: str, year: str, GPC_refno: str): - records = db_query(source_name, region_name, year, GPC_refno) + records = db_query(source_name, region_code, year, GPC_refno) if not records: raise HTTPException(status_code=404, detail="No data available") From 77294b5b20bd1d1842f48a980de3236b2bdbbe13 Mon Sep 17 00:00:00 2001 From: Amanda Eames Date: Tue, 30 Apr 2024 08:18:57 +1000 Subject: [PATCH 26/45] removed sesco extracted file From 3bc97d1c5b0903be59cda4f113a248bf70c7d0e5 Mon Sep 17 00:00:00 2001 From: Amanda Eames Date: Tue, 30 Apr 2024 09:56:27 +1000 Subject: [PATCH 27/45] added dataseeder and run shell script --- global-api/import_argentiniandatasets.sh | 73 +++++++++++++++++++ .../cammesa/load_cammesa.sql | 55 +++++++------- .../cammesa/transformation_cammesa.py | 14 +++- .../datasource_seeder/datasource_seeder.csv | 1 + 4 files changed, 113 insertions(+), 30 deletions(-) create mode 100755 global-api/import_argentiniandatasets.sh diff --git a/global-api/import_argentiniandatasets.sh b/global-api/import_argentiniandatasets.sh new file mode 100755 index 000000000..ffbac4b4e --- /dev/null +++ b/global-api/import_argentiniandatasets.sh @@ -0,0 +1,73 @@ +#!/bin/bash + +if command -v python3 &>/dev/null; then + python_cmd=python3 +else + python_cmd=python +fi + +export PGPASSWORD=$CC_GLOBAL_API_DB_PASSWORD +export DB_URI="postgresql://$CC_GLOBAL_API_DB_USER:$CC_GLOBAL_API_DB_PASSWORD@$CC_GLOBAL_API_DB_HOST/$CC_GLOBAL_API_DB_NAME" + +# export DB_URI="postgresql://ccglobal:@localhost/ccglobal" +# export CC_GLOBAL_API_DB_HOST="localhost" +# export CC_GLOBAL_API_DB_USER="ccglobal" +# export CC_GLOBAL_API_DB_NAME="ccglobal" + +# Argentinian + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +# load cammesa + +pushd importer/argentinian_datasets/cammesa/ + +$python_cmd ./transformation_cammesa.py --filepath ./ --database_uri $DB_URI + +psql -h $CC_GLOBAL_API_DB_HOST \ + -U $CC_GLOBAL_API_DB_USER \ + -d $CC_GLOBAL_API_DB_NAME \ + -f load_cammesa.sql + +popd + +# Import datasources + +pushd importer/datasource_seeder +psql -h $CC_GLOBAL_API_DB_HOST \ + -U $CC_GLOBAL_API_DB_USER \ + -d $CC_GLOBAL_API_DB_NAME \ + -f ./import_datasource_seeder.sql +popd \ No newline at end of file diff --git a/global-api/importer/argentinian_datasets/cammesa/load_cammesa.sql b/global-api/importer/argentinian_datasets/cammesa/load_cammesa.sql index d673b844d..0b005d109 100644 --- a/global-api/importer/argentinian_datasets/cammesa/load_cammesa.sql +++ b/global-api/importer/argentinian_datasets/cammesa/load_cammesa.sql @@ -1,33 +1,30 @@ --- Create a staging table -CREATE TEMP TABLE IF NOT EXISTS region_code_staging (LIKE regionwide_emissions INCLUDING ALL); - --- Clear the staging table -TRUNCATE region_code_staging; - --- Load the staging table from the downloaded file -\copy region_code_staging (id,source_name,"GPC_refno",region_name,region_code,temporal_granularity,year,activity_name,activity_value,activity_units,gas_name,emission_factor_value,emission_factor_units,emissions_value,emissions_units) FROM 'processed_cammesa_AR.csv' WITH (FORMAT CSV, HEADER); +-- The ID column is not unique based on the processed records, +-- we have multiple acitivty records for single region_code, year, gas_name, GPC_refno +-- rather than upsert we will just delete existing source data and insert fresh with generated id to make record unique +-- the route for regions will need to be aggregated over region_code, year, gas_name, GPC_refno to get accurate emissions values +DELETE FROM regionwide_emissions WHERE source_name = 'cammesa'; -- Update the main table with the staging table -INSERT INTO regionwide_emissions (id,source_name,"GPC_refno",region_name,region_code,temporal_granularity,year,activity_name,activity_value,activity_units,gas_name,emission_factor_value,emission_factor_units,emissions_value,emissions_units) - SELECT id,source_name,"GPC_refno",region_name,region_code,temporal_granularity,year,activity_name,activity_value,activity_units,gas_name,emission_factor_value,emission_factor_units,emissions_value,emissions_units - FROM region_code_staging - ON CONFLICT ON CONSTRAINT regionwide_emissions_pkey - DO UPDATE SET - id = excluded.id, - source_name = excluded.source_name, - "GPC_refno" = excluded."GPC_refno", - region_name = excluded.region_name, - region_code = excluded.region_code, - temporal_granularity = excluded.temporal_granularity, - year = excluded.year, - activity_name = excluded.activity_name, - activity_value = excluded.activity_value, - activity_units = excluded.activity_units, - gas_name = excluded.gas_name, - emission_factor_value = excluded.emission_factor_value, - emission_factor_units = excluded.emission_factor_units, - emissions_value = excluded.emissions_value, - emissions_units = excluded.emissions_units; +INSERT INTO regionwide_emissions ( + id,source_name,"GPC_refno",region_name,region_code,temporal_granularity,year,activity_name,activity_value, + activity_units,gas_name,emission_factor_value,emission_factor_units,emissions_value,emissions_units + ) +SELECT gen_random_uuid() as id, + source_name, + "GPC_refno", + region_name, + region_code, + temporal_granularity, + year, + activity_name, + activity_value, + activity_units, + gas_name, + emission_factor_value, + emission_factor_units, + emissions_value, + emissions_units +FROM cammesa_region_emissions_staging; -- Drop the staging table -DROP TABLE region_code_staging; \ No newline at end of file +DROP TABLE cammesa_region_emissions_staging; \ No newline at end of file diff --git a/global-api/importer/argentinian_datasets/cammesa/transformation_cammesa.py b/global-api/importer/argentinian_datasets/cammesa/transformation_cammesa.py index 3e3ef6a75..315f86fdd 100644 --- a/global-api/importer/argentinian_datasets/cammesa/transformation_cammesa.py +++ b/global-api/importer/argentinian_datasets/cammesa/transformation_cammesa.py @@ -2,6 +2,7 @@ import argparse import uuid import os +from sqlalchemy import create_engine def uuid_generate_v3(name, namespace=uuid.NAMESPACE_OID): """generate a version 3 UUID from namespace and name""" @@ -12,6 +13,11 @@ def uuid_generate_v3(name, namespace=uuid.NAMESPACE_OID): if __name__ == "__main__": parser = argparse.ArgumentParser() parser.add_argument("--filepath", help="path to the files location", required=True) + parser.add_argument( + "--database_uri", + help="database URI (e.g. postgresql://ccglobal:@localhost/ccglobal)", + default=os.environ.get("DB_URI"), + ) args = parser.parse_args() absolute_path = os.path.abspath(args.filepath) @@ -123,4 +129,10 @@ def generate_uuid(row): 'activity_units', 'gas_name', 'emission_factor_value', 'emission_factor_units', 'emissions_value', 'emissions_units'] df = df.reindex(columns=col_order) - df.to_csv(f'{absolute_path}/processed_cammesa_AR.csv', sep=",", decimal=".", index=False) \ No newline at end of file + #df.to_csv(f'{absolute_path}/processed_cammesa_AR.csv', sep=",", decimal=".", index=False) + + # Create a SQLAlchemy engine + engine = create_engine(args.database_uri) + + # Write the DataFrame to the database table + df.to_sql('cammesa_region_emissions_staging', engine, if_exists='replace', index=False) diff --git a/global-api/importer/datasource_seeder/datasource_seeder.csv b/global-api/importer/datasource_seeder/datasource_seeder.csv index 0b24302a7..a197a08aa 100644 --- a/global-api/importer/datasource_seeder/datasource_seeder.csv +++ b/global-api/importer/datasource_seeder/datasource_seeder.csv @@ -48,3 +48,4 @@ de8dc6b3-6c78-4fc7-9b4a-df24a2326634,Google EIE,Google Environmental Insights Ex fdf77b4a-5fb8-4b33-92b5-07b92f839c9b,Carbon Monitor,Carbon Monitor Cities,Carbon Monitor Cities Residential Energy,Estimation of residential energy emissions from Carbon Monitor. Carbon Monitor Cities is a global initiative to provide real-time and historical data on CO2 emissions from cities around the world.,third_party,public,https://carbonmonitor.org/,EARTH,2019,2021,2022,annual,city,en,,medium,,kg,The data is based on satellite observations of CO2 concentrations and a data-driven model to estimate emissions.,https://carbonmonitor.org/,Emissions data are matched to cities by name and ISO code for the region.,global_api,https://ccglobal.openearth.dev/api/v0/source/Carbon Monitor Cities/city/:locode/:year/:gpcReferenceNumber,I.1.1,1 e2143a90-0e5f-48fa-9a1d-85505f90b95f,Carbon Monitor,Carbon Monitor Cities,Carbon Monitor Cities On-Road Transportation,Estimation of on-road transportation emissions from Carbon Monitor. Carbon Monitor Cities is a global initiative to provide real-time and historical data on CO2 emissions from cities around the world.,third_party,public,https://carbonmonitor.org/,EARTH,2019,2021,2022,annual,city,en,,medium,,kg,The data is based on satellite observations of CO2 concentrations and a data-driven model to estimate emissions.,https://carbonmonitor.org/,Emissions data are matched to cities by name and ISO code for the region.,global_api,https://ccglobal.openearth.dev/api/v0/source/Carbon Monitor Cities/city/:locode/:year/:gpcReferenceNumber,II.1.1,1 1007a979-3c3c-4115-b61a-c85e3e39b165,Carbon Monitor,Carbon Monitor Cities,Carbon Monitor Cities Aviation,Estimation of aviation emissions from Carbon Monitor. Carbon Monitor Cities is a global initiative to provide real-time and historical data on CO2 emissions from cities around the world.,third_party,public,https://carbonmonitor.org/,EARTH,2019,2021,2022,annual,city,en,,medium,,kg,The data is based on satellite observations of CO2 concentrations and a data-driven model to estimate emissions.,https://carbonmonitor.org/,Emissions data are matched to cities by name and ISO code for the region.,global_api,https://ccglobal.openearth.dev/api/v0/source/Carbon Monitor Cities/city/:locode/:year/:gpcReferenceNumber,II.4.1,1 +e81bb333-d0a0-4621-b15f-f6f0012c2a5e,cammesa,CAMMESA,Annual electricity generation in power plants by province,Local data of energy generation by power plants in Argentina,Third-party,Public,https://cammesaweb.cammesa.com/download/factor-de-emision/,AR,2020,2023,2023,annual,region,es,,high,,kg,"The report contains the behavior of the main physical and economic variables of the MEM throughout the month of analysis and its comparison with previous months; Among the variables, electricity demand, energy supply, installed power, generation, fuel consumption, energy costs and prices stand out.",https://cammesaweb.cammesa.com/informes-y-estadisticas/,"The raw data was adapted to our Global API database schema and we use population as scaling method whenever is needed. Depending on the source availability and documentation, this information can be more or less desegregated.",global_api_downscaled_by_population,https://ccglobal.openearth.dev/api/v0/source/CAMMESA/region/:region/:year/:gpcReferenceNumber,I.4.4,1 \ No newline at end of file From 55d41645234fd8f033e86393576768c73d9ce4fc Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 30 Apr 2024 06:31:55 +0000 Subject: [PATCH 28/45] chore(deps): bump mypy from 1.9.0 to 1.10.0 in /global-api Bumps [mypy](https://github.com/python/mypy) from 1.9.0 to 1.10.0. - [Changelog](https://github.com/python/mypy/blob/master/CHANGELOG.md) - [Commits](https://github.com/python/mypy/compare/1.9.0...v1.10.0) --- updated-dependencies: - dependency-name: mypy dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- global-api/requirements.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/global-api/requirements.txt b/global-api/requirements.txt index 2e894aa4b..61ec26526 100644 --- a/global-api/requirements.txt +++ b/global-api/requirements.txt @@ -5,7 +5,7 @@ fastapi==0.110.2 flake8==7.0.0 fsspec==2024.* geopandas==0.14.4 -mypy==1.9.0 +mypy==1.10.0 osmnx==1.9.2 pandas==2.2.2 psycopg2-binary==2.9.9 From 0c2d58ab41f237dd54b20294be03c64cbb85103c Mon Sep 17 00:00:00 2001 From: Cephas Chapa Date: Tue, 30 Apr 2024 09:42:21 +0200 Subject: [PATCH 29/45] fix: modifed notification service, added mocks, updated userfile route to make tests run properly --- app/src/app/api/v0/city/[city]/file/route.ts | 25 +++-------- app/src/backend/NotificationService.ts | 44 ++++++++++++++++--- .../lib/emails/AdminNotificationTemplate.tsx | 4 -- app/tests/api/userfile.test.ts | 22 +++++----- 4 files changed, 56 insertions(+), 39 deletions(-) diff --git a/app/src/app/api/v0/city/[city]/file/route.ts b/app/src/app/api/v0/city/[city]/file/route.ts index 9f682ba05..dce4776c7 100644 --- a/app/src/app/api/v0/city/[city]/file/route.ts +++ b/app/src/app/api/v0/city/[city]/file/route.ts @@ -128,25 +128,14 @@ export const POST = apiHandler( fileType: userFile.fileType!, }, }; + // TODO: create a seperate function + // Mock it in the - if (!userFile) { - await service.sendEmail({ - to: process.env.ADMIN_EMAILS!, - subject: "CityCatalyst File Upload", - text: "City Catalyst", - html: render( - AdminNotificationTemplate({ - adminNames: process.env.ADMIN_NAMES!, - file: newFileData, - user: { - cityName: city.name!, - email: user?.email!, - name: user?.name!, - }, - }), - ), - }); - } + await NotificationService.sendNotificationEmail({ + user: { email: user?.email!, name: user?.name! }, + fileData: newFileData, + city, + }); return NextResponse.json({ data: newFileData, diff --git a/app/src/backend/NotificationService.ts b/app/src/backend/NotificationService.ts index 822aabf46..c279ce6d4 100644 --- a/app/src/backend/NotificationService.ts +++ b/app/src/backend/NotificationService.ts @@ -1,4 +1,9 @@ import { smtpOptions } from "@/lib/email"; +import AdminNotificationTemplate from "@/lib/emails/AdminNotificationTemplate"; +import { City } from "@/models/City"; +import { User } from "@/models/User"; +import { UserFileResponse } from "@/util/types"; +import { render } from "@react-email/components"; import nodemailer, { Transporter } from "nodemailer"; export interface EmailOptions { @@ -16,12 +21,9 @@ export interface SendEmailResponse { class NotificationService { private static instance: NotificationService; - private transporter: Transporter; + private static transporter: Transporter; - private constructor(transporter?: Transporter) { - this.transporter = - transporter || nodemailer.createTransport({ ...smtpOptions }); - } + private constructor(transporter?: Transporter) {} static getInstance(transporter?: Transporter): NotificationService { if (!NotificationService.instance) { @@ -31,7 +33,7 @@ class NotificationService { return NotificationService.instance; } - async sendEmail({ + static async sendEmail({ to, subject, text, @@ -46,7 +48,8 @@ class NotificationService { }; try { - const info = await this.transporter.sendMail(mailOptions); + const transporter = nodemailer.createTransport({ ...smtpOptions }); + const info = await transporter.sendMail(mailOptions); console.log("Message sent: %s", info.messageId); return { success: true, messageId: info.messageId }; } catch (error) { @@ -54,6 +57,33 @@ class NotificationService { return { success: false, error }; } } + + static async sendNotificationEmail({ + user, + fileData, + city, + }: { + user: { name: string; email: string }; + fileData: UserFileResponse; + city: City; + }) { + await NotificationService.sendEmail({ + to: process.env.ADMIN_EMAILS!, + subject: "CityCatalyst File Upload", + text: "City Catalyst", + html: render( + AdminNotificationTemplate({ + adminNames: process.env.ADMIN_NAMES!, + file: fileData, + user: { + cityName: city.name!, + email: user?.email!, + name: user?.name!, + }, + }), + ), + }); + } } export default NotificationService; diff --git a/app/src/lib/emails/AdminNotificationTemplate.tsx b/app/src/lib/emails/AdminNotificationTemplate.tsx index a8cd00ce3..4eb6feb1c 100644 --- a/app/src/lib/emails/AdminNotificationTemplate.tsx +++ b/app/src/lib/emails/AdminNotificationTemplate.tsx @@ -1,10 +1,6 @@ import { ExcelFileIcon } from "@/components/icons"; -import { CityAttributes } from "@/models/City"; -import { UserAttributes } from "@/models/User"; -import { UserFileAttributes } from "@/models/UserFile"; import { bytesToMB } from "@/util/helpers"; import { UserFileResponse } from "@/util/types"; -import { Tag, TagLabel } from "@chakra-ui/react"; import React from "react"; import { Body, diff --git a/app/tests/api/userfile.test.ts b/app/tests/api/userfile.test.ts index 1ec70600f..3b4bbaf09 100644 --- a/app/tests/api/userfile.test.ts +++ b/app/tests/api/userfile.test.ts @@ -93,6 +93,13 @@ describe("UserFile API", () => { }); }); + beforeEach(() => { + mock.method(NotificationService, "sendNotificationEmail", () => {}); + }); + + // const call = calculateMock.mock.calls[index]; + //assert.deepEqual(call.arguments, [argument]); + it("should create a user file", async () => { // stream created file from path const path = await filePath(); @@ -115,16 +122,8 @@ describe("UserFile API", () => { params: { city: testCityID }, }); - const service = NotificationService.getInstance(mockTransporter); - - await service.sendEmail({ - to: "text@example.com", - subject: "Test Email", - text: "This is a test", - html: "

    This is a test

    ", - }); - const { data } = await res.json(); + assert.equal(res.status, 200); assert.equal(data?.sector, fileData?.sector); assert.equal(data?.url, fileData.url); @@ -132,6 +131,9 @@ describe("UserFile API", () => { assert.equal(data?.gpcRefNo, fileData.gpc_ref_no); assert.equal(fileData.data.fileName, data?.file.fileName); assert.equal(fileData.data.size, data?.file.size); + // @ts-ignore + const calls = NotificationService.sendNotificationEmail.mock.calls.length; + assert.equal(calls, 1); }); it("should not create a file if data is invalid", async () => { @@ -199,7 +201,7 @@ describe("UserFile API", () => { it("should delete user file", async () => { const fileStream = await getFileDataFromStream(await filePath()); const formData = new FormData(); - formData.append("id", randomUUID()); + formData.append("id", fileData.id); formData.append("userId", fileData.userId); formData.append("sector", fileData.sector); formData.append("subsectors", fileData.subsectors); From a50829481488bc3909c4b775a0f977f178cd8f25 Mon Sep 17 00:00:00 2001 From: Cephas Chapa Date: Tue, 30 Apr 2024 09:56:27 +0200 Subject: [PATCH 30/45] fix:remove unused mock function --- app/tests/api/userfile.test.ts | 1 - app/tests/helpers.ts | 6 ------ 2 files changed, 7 deletions(-) diff --git a/app/tests/api/userfile.test.ts b/app/tests/api/userfile.test.ts index 3b4bbaf09..2e9d41c4d 100644 --- a/app/tests/api/userfile.test.ts +++ b/app/tests/api/userfile.test.ts @@ -28,7 +28,6 @@ import { setupTests, testUserID, testCityID, - mockTransporter, } from "../helpers"; import { randomUUID } from "node:crypto"; import fs from "fs"; diff --git a/app/tests/helpers.ts b/app/tests/helpers.ts index f3f62a311..4ff7d7c9c 100644 --- a/app/tests/helpers.ts +++ b/app/tests/helpers.ts @@ -37,12 +37,6 @@ export function mockRequestFormData(formData: FormData) { const MOCK_ID = ""; -export const mockTransporter = { - sendMail: async (mailOptions: any) => { - return { messageId: MOCK_ID }; // Return a fake message ID - }, -}; - const finished = promisify(stream.finished); export async function getFileDataFromStream(filePath: string): Promise { From 81a5466a20b603734bd08ad2fdb84cb5c18d30a2 Mon Sep 17 00:00:00 2001 From: Cephas Chapa Date: Tue, 30 Apr 2024 10:05:34 +0200 Subject: [PATCH 31/45] fix: remove unused mock string --- app/tests/helpers.ts | 2 -- 1 file changed, 2 deletions(-) diff --git a/app/tests/helpers.ts b/app/tests/helpers.ts index 4ff7d7c9c..26fe93901 100644 --- a/app/tests/helpers.ts +++ b/app/tests/helpers.ts @@ -35,8 +35,6 @@ export function mockRequestFormData(formData: FormData) { return request; } -const MOCK_ID = ""; - const finished = promisify(stream.finished); export async function getFileDataFromStream(filePath: string): Promise { From a5503175ab2ff731893d5ece815234083cb36623 Mon Sep 17 00:00:00 2001 From: Cephas Chapa Date: Tue, 30 Apr 2024 10:21:59 +0200 Subject: [PATCH 32/45] fix: removed comments and todos --- app/src/app/api/v0/city/[city]/file/route.ts | 2 -- app/tests/api/userfile.test.ts | 3 --- 2 files changed, 5 deletions(-) diff --git a/app/src/app/api/v0/city/[city]/file/route.ts b/app/src/app/api/v0/city/[city]/file/route.ts index dce4776c7..57e5766db 100644 --- a/app/src/app/api/v0/city/[city]/file/route.ts +++ b/app/src/app/api/v0/city/[city]/file/route.ts @@ -128,8 +128,6 @@ export const POST = apiHandler( fileType: userFile.fileType!, }, }; - // TODO: create a seperate function - // Mock it in the await NotificationService.sendNotificationEmail({ user: { email: user?.email!, name: user?.name! }, diff --git a/app/tests/api/userfile.test.ts b/app/tests/api/userfile.test.ts index 2e9d41c4d..895b14164 100644 --- a/app/tests/api/userfile.test.ts +++ b/app/tests/api/userfile.test.ts @@ -96,9 +96,6 @@ describe("UserFile API", () => { mock.method(NotificationService, "sendNotificationEmail", () => {}); }); - // const call = calculateMock.mock.calls[index]; - //assert.deepEqual(call.arguments, [argument]); - it("should create a user file", async () => { // stream created file from path const path = await filePath(); From bf81b22c0c94f1d1bbc57eecbd10cba50bd9e80a Mon Sep 17 00:00:00 2001 From: Milan Gruner Date: Tue, 30 Apr 2024 12:46:42 +0200 Subject: [PATCH 33/45] fix(build): add e2e folder to exclude in tsconfig.json It requires Playwright (dev dependency) to be installed for running npm run build --- app/tsconfig.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/tsconfig.json b/app/tsconfig.json index 82ab7a62e..00074f369 100644 --- a/app/tsconfig.json +++ b/app/tsconfig.json @@ -24,5 +24,5 @@ } }, "include": ["next-env.d.ts", "**/*.ts", "**/*.tsx", ".next/types/**/*.ts"], - "exclude": ["node_modules", "cypress/**/*", "cypress.config.ts"] + "exclude": ["node_modules", "cypress/**/*", "cypress.config.ts", "e2e/**/*"] } From 5a12db20f0300b4f93744df1b2dd168530993dfc Mon Sep 17 00:00:00 2001 From: Milan Gruner Date: Tue, 30 Apr 2024 12:56:53 +0200 Subject: [PATCH 34/45] fix(build): also exclude playwright.config.ts in tsconfig.json --- app/tsconfig.json | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/app/tsconfig.json b/app/tsconfig.json index 00074f369..9d4c7a770 100644 --- a/app/tsconfig.json +++ b/app/tsconfig.json @@ -24,5 +24,11 @@ } }, "include": ["next-env.d.ts", "**/*.ts", "**/*.tsx", ".next/types/**/*.ts"], - "exclude": ["node_modules", "cypress/**/*", "cypress.config.ts", "e2e/**/*"] + "exclude": [ + "node_modules", + "cypress/**/*", + "cypress.config.ts", + "e2e/**/*", + "playwright.config.ts" + ] } From fb00cc729ce510eccf728b169b7a17b160d833b9 Mon Sep 17 00:00:00 2001 From: Milan Gruner Date: Tue, 30 Apr 2024 13:03:40 +0200 Subject: [PATCH 35/45] fix(script): usage of renamed parameter url in catalogue-sync.ts --- app/scripts/catalogue-sync.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/app/scripts/catalogue-sync.ts b/app/scripts/catalogue-sync.ts index d1b3e4809..b7f619553 100644 --- a/app/scripts/catalogue-sync.ts +++ b/app/scripts/catalogue-sync.ts @@ -9,7 +9,7 @@ interface Source { datasource_name: string; dataset_name: string; source_type: string; - url: string; + dataset_url: string; dataset_description: string; access_type: string; geographical_location: string; @@ -119,7 +119,7 @@ async function syncDataCatalogue() { if (!source.notes) { // publisher_id is still a name at this stage - source.notes = `${source.datasource_name} by ${source.publisher_id}. For more details see ${source.url}`; + source.notes = `${source.datasource_name} by ${source.publisher_id}. For more details see ${source.dataset_url}`; } if (source.geographical_location === "global") { @@ -156,7 +156,7 @@ async function syncDataCatalogue() { publisher = await db.models.Publisher.create({ publisherId: randomUUID(), name: source.publisher_id, - url: source.url, + url: source.dataset_url, }); } source.publisher_id = publisher.publisherId; From 1aff99b23235d6e38190d4b72ef35b3688fcdda6 Mon Sep 17 00:00:00 2001 From: Evan Prodromou Date: Thu, 2 May 2024 14:43:51 -0400 Subject: [PATCH 36/45] chore: v0.10.0-dev.0 Signed-off-by: Evan Prodromou --- app/package-lock.json | 4 ++-- app/package.json | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/app/package-lock.json b/app/package-lock.json index 6596aac14..94c481c2f 100644 --- a/app/package-lock.json +++ b/app/package-lock.json @@ -1,12 +1,12 @@ { "name": "city-catalyst", - "version": "0.9.0-dev.0", + "version": "0.10.0-dev.0", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "city-catalyst", - "version": "0.9.0-dev.0", + "version": "0.10.0-dev.0", "dependencies": { "@chakra-ui/icons": "^2.1.0", "@chakra-ui/next-js": "^2.2.0", diff --git a/app/package.json b/app/package.json index 5f070c46b..0c192bb83 100644 --- a/app/package.json +++ b/app/package.json @@ -1,6 +1,6 @@ { "name": "city-catalyst", - "version": "0.9.0-dev.0", + "version": "0.10.0-dev.0", "private": true, "type": "module", "scripts": { From 699922685c2fdffa8abc0ac9ca47ff58f12fa092 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 6 May 2024 07:19:36 +0000 Subject: [PATCH 37/45] chore(deps): bump sqlalchemy from 2.0.29 to 2.0.30 in /global-api Bumps [sqlalchemy](https://github.com/sqlalchemy/sqlalchemy) from 2.0.29 to 2.0.30. - [Release notes](https://github.com/sqlalchemy/sqlalchemy/releases) - [Changelog](https://github.com/sqlalchemy/sqlalchemy/blob/main/CHANGES.rst) - [Commits](https://github.com/sqlalchemy/sqlalchemy/commits) --- updated-dependencies: - dependency-name: sqlalchemy dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- global-api/requirements.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/global-api/requirements.txt b/global-api/requirements.txt index 61ec26526..92c18b706 100644 --- a/global-api/requirements.txt +++ b/global-api/requirements.txt @@ -14,7 +14,7 @@ pytest==8.2.0 rioxarray==0.15.* scipy==1.13.* shapely==2.0.4 -SQLAlchemy==2.0.29 +SQLAlchemy==2.0.30 tqdm==4.66.* uvicorn==0.29.0 xarray==2024.* From 5d4aaa981602bb9f939cc3a74954d19effcc5892 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 6 May 2024 07:19:40 +0000 Subject: [PATCH 38/45] chore(deps): bump fastapi from 0.110.2 to 0.111.0 in /global-api Bumps [fastapi](https://github.com/tiangolo/fastapi) from 0.110.2 to 0.111.0. - [Release notes](https://github.com/tiangolo/fastapi/releases) - [Commits](https://github.com/tiangolo/fastapi/compare/0.110.2...0.111.0) --- updated-dependencies: - dependency-name: fastapi dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- global-api/requirements.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/global-api/requirements.txt b/global-api/requirements.txt index 61ec26526..34d89d048 100644 --- a/global-api/requirements.txt +++ b/global-api/requirements.txt @@ -1,7 +1,7 @@ aiohttp==3.9.* alembic==1.13.1 black==24.4.2 -fastapi==0.110.2 +fastapi==0.111.0 flake8==7.0.0 fsspec==2024.* geopandas==0.14.4 From 6a65d2cb5789b786c01309cb954e94e7b8250c0d Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 6 May 2024 07:19:51 +0000 Subject: [PATCH 39/45] chore(deps): bump osmnx from 1.9.2 to 1.9.3 in /global-api Bumps [osmnx](https://github.com/gboeing/osmnx) from 1.9.2 to 1.9.3. - [Changelog](https://github.com/gboeing/osmnx/blob/main/CHANGELOG.md) - [Commits](https://github.com/gboeing/osmnx/compare/v1.9.2...v1.9.3) --- updated-dependencies: - dependency-name: osmnx dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- global-api/requirements.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/global-api/requirements.txt b/global-api/requirements.txt index 61ec26526..571144934 100644 --- a/global-api/requirements.txt +++ b/global-api/requirements.txt @@ -6,7 +6,7 @@ flake8==7.0.0 fsspec==2024.* geopandas==0.14.4 mypy==1.10.0 -osmnx==1.9.2 +osmnx==1.9.3 pandas==2.2.2 psycopg2-binary==2.9.9 pydantic-settings==2.* From 0b26ee45638ce46c0cab086143d017e7d1767598 Mon Sep 17 00:00:00 2001 From: Milan Gruner Date: Mon, 6 May 2024 15:37:35 +0200 Subject: [PATCH 40/45] fix(ui): area null passed to addCity route addCity has area as optional but doesn't accept null for it --- app/src/app/[lng]/onboarding/setup/page.tsx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/app/src/app/[lng]/onboarding/setup/page.tsx b/app/src/app/[lng]/onboarding/setup/page.tsx index 4d7f88809..b3c460e1c 100644 --- a/app/src/app/[lng]/onboarding/setup/page.tsx +++ b/app/src/app/[lng]/onboarding/setup/page.tsx @@ -741,9 +741,9 @@ export default function OnboardingSetup({ city = await addCity({ name: data.name, locode: data.locode!, - area, - region: regionName, - country: countryName, + area: area ?? undefined, + region: regionName ?? undefined, + country: countryName ?? undefined, regionLocode: region?.actor_id ?? undefined, countryLocode: country?.actor_id ?? undefined, }).unwrap(); From f65fc016f917710405569013cae00d7727e4df4f Mon Sep 17 00:00:00 2001 From: Evan Prodromou Date: Mon, 6 May 2024 14:34:22 -0300 Subject: [PATCH 41/45] fix: error in area calculations caused crash of endpoint Signed-off-by: Evan Prodromou --- global-api/routes/city_boundaries_endpoint.py | 31 +++++++++++++------ 1 file changed, 22 insertions(+), 9 deletions(-) diff --git a/global-api/routes/city_boundaries_endpoint.py b/global-api/routes/city_boundaries_endpoint.py index ce999e4d2..ed5fab412 100644 --- a/global-api/routes/city_boundaries_endpoint.py +++ b/global-api/routes/city_boundaries_endpoint.py @@ -5,12 +5,12 @@ import json from models.osm import Osm from decimal import Decimal -from shapely.geometry import Point, shape +from shapely.geometry import Point, shape, Polygon, MultiPolygon from shapely.wkt import loads -import pyproj from functools import partial from shapely.ops import transform import math +from pyproj import Transformer api_router = APIRouter(prefix="/api/v0") @@ -43,18 +43,31 @@ def epsg_code(polygon): return code +def transform_geometry(geometry, transformer): + if isinstance(geometry, Polygon): + transformed_polygon = [] + for lat, lon in geometry.exterior.coords: + x, y = transformer.transform(lon, lat) + transformed_polygon.append((x, y)) + return Polygon(transformed_polygon) + elif isinstance(geometry, MultiPolygon): + transformed_polygons = [] + for polygon in geometry.geoms: + transformed_polygon = transform_geometry(polygon, transformer) + transformed_polygons.append(transformed_polygon) + return MultiPolygon(transformed_polygons) + else: + raise ValueError("Unsupported geometry type") + def get_area(geometry): polygon = loads(geometry) - code = epsg_code(polygon) - proj = partial( - pyproj.transform, - pyproj.Proj("epsg:4326"), # lat/lon - pyproj.Proj(f'epsg:{code}') - ) + transformer = Transformer.from_crs("epsg:4326", f'epsg:5070') + + utm_polygon = transform_geometry(polygon, transformer) - utm_polygon = transform(proj, polygon) area = utm_polygon.area / 10.0**6 # in km^2 + return area @api_router.get("/cityboundary/city/{locode}") From 8c2671f633613fddf5d424addafa1df2bb41a939 Mon Sep 17 00:00:00 2001 From: Evan Prodromou Date: Mon, 6 May 2024 19:10:56 -0300 Subject: [PATCH 42/45] fix: send area as an integer, not a float Signed-off-by: Evan Prodromou --- app/src/app/[lng]/onboarding/setup/page.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/src/app/[lng]/onboarding/setup/page.tsx b/app/src/app/[lng]/onboarding/setup/page.tsx index b3c460e1c..33085e8d6 100644 --- a/app/src/app/[lng]/onboarding/setup/page.tsx +++ b/app/src/app/[lng]/onboarding/setup/page.tsx @@ -741,7 +741,7 @@ export default function OnboardingSetup({ city = await addCity({ name: data.name, locode: data.locode!, - area: area ?? undefined, + area: (area) ? Math.round(area) : undefined, region: regionName ?? undefined, country: countryName ?? undefined, regionLocode: region?.actor_id ?? undefined, From d7f53187bb15b7a5cb28af56fe57342cf4cc05c6 Mon Sep 17 00:00:00 2001 From: Evan Prodromou Date: Fri, 17 May 2024 10:24:40 -0300 Subject: [PATCH 43/45] fix: set production env in .github/workflows/web-tag.yml Signed-off-by: Evan Prodromou --- .github/workflows/web-tag.yml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/.github/workflows/web-tag.yml b/.github/workflows/web-tag.yml index ca3ece7ae..2b4521573 100644 --- a/.github/workflows/web-tag.yml +++ b/.github/workflows/web-tag.yml @@ -135,5 +135,12 @@ jobs: kubectl set env deployment/cc-web-deploy "ADMIN_NAMES=${{secrets.ADMIN_NAMES}}" kubectl set env deployment/cc-web-deploy "DEFAULT_ADMIN_EMAIL=${{secrets.DEFAULT_ADMIN_EMAIL}}" kubectl set env deployment/cc-web-deploy "DEFAULT_ADMIN_PASSWORD=${{secrets.DEFAULT_ADMIN_PASSWORD}}" + kubectl set env deployment/cc-web-deploy \ + "HOST=https://citycatalyst.io" \ + "NEXTAUTH_URL=https://citycatalyst.io" \ + "NEXT_PUBLIC_API_URL=https://api.citycatalyst.io" \ + "GLOBAL_API_URL=https://api.citycatalyst.io" \ + "NEXT_PUBLIC_OPENCLIMATE_API_URL=https://app.openclimate.network" \ + "OPENCLIMATE_API_URL=https://app.openclimate.network" kubectl create -f k8s/cc-create-admin.yml -n default kubectl rollout restart deployment cc-web-deploy -n default From 564d28cc60dbc30429c9191bbf7bd9497b4172c5 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 20 May 2024 07:39:35 +0000 Subject: [PATCH 44/45] chore(deps): bump pytest from 8.2.0 to 8.2.1 in /global-api Bumps [pytest](https://github.com/pytest-dev/pytest) from 8.2.0 to 8.2.1. - [Release notes](https://github.com/pytest-dev/pytest/releases) - [Changelog](https://github.com/pytest-dev/pytest/blob/main/CHANGELOG.rst) - [Commits](https://github.com/pytest-dev/pytest/compare/8.2.0...8.2.1) --- updated-dependencies: - dependency-name: pytest dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- global-api/requirements.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/global-api/requirements.txt b/global-api/requirements.txt index 61ec26526..04f6e13dc 100644 --- a/global-api/requirements.txt +++ b/global-api/requirements.txt @@ -10,7 +10,7 @@ osmnx==1.9.2 pandas==2.2.2 psycopg2-binary==2.9.9 pydantic-settings==2.* -pytest==8.2.0 +pytest==8.2.1 rioxarray==0.15.* scipy==1.13.* shapely==2.0.4 @@ -24,7 +24,7 @@ nest_asyncio==1.6.* xlrd==2.0.* dns-cache==0.3.* openpyxl==3.1.* -pytest==8.2.0 +pytest==8.2.1 pytest-cov==5.0.0 httpx==0.27.0 pyproj==3.6.* \ No newline at end of file From fda9aa3421cb51de853d0c5ad2ef067029a431d9 Mon Sep 17 00:00:00 2001 From: mfonsecaOEF Date: Wed, 22 May 2024 08:02:57 -0300 Subject: [PATCH 45/45] fix:convertion_units_activity_values --- .../argentinian_datasets/BEN/README.md | 2 +- .../BEN/processed_BEN_AR.csv | 240 +++++++++--------- .../BEN/transformation_BEN_AR.py | 8 +- 3 files changed, 125 insertions(+), 125 deletions(-) diff --git a/global-api/importer/argentinian_datasets/BEN/README.md b/global-api/importer/argentinian_datasets/BEN/README.md index d3f209de7..2486f93c9 100644 --- a/global-api/importer/argentinian_datasets/BEN/README.md +++ b/global-api/importer/argentinian_datasets/BEN/README.md @@ -7,7 +7,7 @@ python ./importer/argentinian_datasets/Energy_Balances/extraction_BEN_AR.py --fi ``` 2. Transform the activity into emission data align with the Global API schema: ```bash -python ./importer/argentinian_datasets/Energy_Balances/transformation_BEN_AR.py --filepath [path where the transformed data will be saved] +python ./importer/argentinian_datasets/BEN/transformation_BEN_AR.py --filepath [path where the transformed data will be saved] ``` 3. Extract the activity row from the source: ```bash diff --git a/global-api/importer/argentinian_datasets/BEN/processed_BEN_AR.csv b/global-api/importer/argentinian_datasets/BEN/processed_BEN_AR.csv index a2b426691..5ff147cf1 100644 --- a/global-api/importer/argentinian_datasets/BEN/processed_BEN_AR.csv +++ b/global-api/importer/argentinian_datasets/BEN/processed_BEN_AR.csv @@ -1,121 +1,121 @@ id,source_name,GPC_refno,country_name,country_code,temporal_granularity,year,activity_name,activity_value,activity_units,gas_name,emission_factor_value,emission_factor_units,emissions_value,emissions_units -85700111-3729-30ef-b38e-3ce80b843cec,BEN,I.1.1,Argentina,AR,annual,2020,fuel consumption of Wood/Wood Waste by residential buildings,3680819401821,kJ,CO2,0.0,kg/TJ,0,kg -a4beeeda-fc67-346f-aa9e-ea0bfd9873bd,BEN,I.1.1,Argentina,AR,annual,2020,fuel consumption of Wood/Wood Waste by residential buildings,3680819401821,kJ,CH4,300.0,kg/TJ,1104245820546526,kg -4cf4fdef-397c-3f26-a2ad-a0b962a194ff,BEN,I.1.1,Argentina,AR,annual,2020,fuel consumption of Wood/Wood Waste by residential buildings,3680819401821,kJ,N2O,4.0,kg/TJ,14723277607287,kg -63e9ff4f-9880-34d7-bf4e-e4f79b98f531,BEN,I.1.1,Argentina,AR,annual,2020,fuel consumption of Liquefied Petroleum Gases by residential buildings,44864743968000,kJ,CO2,63100.0,kg/TJ,2830965344380801024,kg -d2fb30b7-bbfe-354f-a113-12436f06f7ae,BEN,I.1.1,Argentina,AR,annual,2020,fuel consumption of Liquefied Petroleum Gases by residential buildings,44864743968000,kJ,CH4,5.0,kg/TJ,224323719840000,kg -dd2b8d71-46ee-3f38-a97e-8749825e9f2d,BEN,I.1.1,Argentina,AR,annual,2020,fuel consumption of Liquefied Petroleum Gases by residential buildings,44864743968000,kJ,N2O,0.1,kg/TJ,4486474396800,kg -33791b96-45eb-3a4b-9a8c-73b779c4b2b6,BEN,I.1.1,Argentina,AR,annual,2020,fuel consumption of Jet Kerosene by residential buildings,101005712639,kJ,CO2,71500.0,kg/TJ,7221908453759999,kg -213cbb6b-cdd3-32b8-b357-0cb603265bde,BEN,I.1.1,Argentina,AR,annual,2020,fuel consumption of Jet Kerosene by residential buildings,101005712639,kJ,CH4,10.0,kg/TJ,1010057126399,kg -e273f053-b952-3b58-af9f-bbdd2d27ff25,BEN,I.1.1,Argentina,AR,annual,2020,fuel consumption of Jet Kerosene by residential buildings,101005712639,kJ,N2O,0.6,kg/TJ,60603427583,kg -7f0149f6-ff3e-3f03-a27a-655f61abc473,BEN,I.1.1,Argentina,AR,annual,2020,fuel consumption of Charcoal by residential buildings,7154006730393,kJ,CO2,112000.0,kg/TJ,801248753804083072,kg -a511a655-72a2-398f-b115-50b860c9eff2,BEN,I.1.1,Argentina,AR,annual,2020,fuel consumption of Charcoal by residential buildings,7154006730393,kJ,CH4,200.0,kg/TJ,1430801346078719,kg -67adae68-72d5-3727-b621-90ac8b6957b1,BEN,I.1.1,Argentina,AR,annual,2020,fuel consumption of Charcoal by residential buildings,7154006730393,kJ,N2O,1.0,kg/TJ,7154006730393,kg -dc58b60c-82a3-35d5-b68e-011017469ba8,BEN,I.2.1,Argentina,AR,annual,2020,fuel consumption of Wood/Wood Waste by commercial buildings,1840409700910,kJ,CO2,112000.0,kg/TJ,206125886502018176,kg -20a35b83-2d7b-3939-ab68-402fbe1857bb,BEN,I.2.1,Argentina,AR,annual,2020,fuel consumption of Wood/Wood Waste by commercial buildings,1840409700910,kJ,CH4,300.0,kg/TJ,552122910273263,kg -d031e6f0-50e0-33a6-8211-780b52f78230,BEN,I.2.1,Argentina,AR,annual,2020,fuel consumption of Wood/Wood Waste by commercial buildings,1840409700910,kJ,N2O,4.0,kg/TJ,7361638803643,kg -a8f36a9f-da4e-32c7-a305-ca94223dcd40,BEN,I.2.1,Argentina,AR,annual,2020,fuel consumption of Liquefied Petroleum Gases by commercial buildings,7477457328000,kJ,CO2,63100.0,kg/TJ,471827557396800128,kg -ffb7f9f8-6a8c-3f31-9f94-b3d775aa5038,BEN,I.2.1,Argentina,AR,annual,2020,fuel consumption of Liquefied Petroleum Gases by commercial buildings,7477457328000,kJ,CH4,5.0,kg/TJ,37387286640000,kg -6a13836f-e841-3e5b-95b1-67497f0b8e2e,BEN,I.2.1,Argentina,AR,annual,2020,fuel consumption of Liquefied Petroleum Gases by commercial buildings,7477457328000,kJ,N2O,0.1,kg/TJ,747745732800,kg -7621d343-200d-3c37-9621-f10763cbdcf7,BEN,I.2.1,Argentina,AR,annual,2020,fuel consumption of Charcoal by commercial buildings,4769337820262,kJ,CO2,112000.0,kg/TJ,534165835869388736,kg -6aa96c40-d9e4-3fbb-ba44-0a106315774f,BEN,I.2.1,Argentina,AR,annual,2020,fuel consumption of Charcoal by commercial buildings,4769337820262,kJ,CH4,200.0,kg/TJ,953867564052479,kg -5c9f3c7d-a9ca-349f-9a99-165708013ea0,BEN,I.2.1,Argentina,AR,annual,2020,fuel consumption of Charcoal by commercial buildings,4769337820262,kJ,N2O,1.0,kg/TJ,4769337820262,kg -67a51017-f033-3288-b072-edb65135140c,BEN,I.5.1,Argentina,AR,annual,2020,fuel consumption of Liquefied Petroleum Gases by agricultural activities,3115607220000,kJ,CO2,63100.0,kg/TJ,196594815582000064,kg -d944c209-12a2-38ee-b606-87bf69a81ab0,BEN,I.5.1,Argentina,AR,annual,2020,fuel consumption of Liquefied Petroleum Gases by agricultural activities,3115607220000,kJ,CH4,5.0,kg/TJ,15578036100000,kg -9af4efc1-8e8c-3825-9ba8-88fff0377c11,BEN,I.5.1,Argentina,AR,annual,2020,fuel consumption of Liquefied Petroleum Gases by agricultural activities,3115607220000,kJ,N2O,0.1,kg/TJ,311560722000,kg -b1e684f9-61dd-3662-aecb-5e99ffa337e8,BEN,I.3.1,Argentina,AR,annual,2020,fuel consumption of Wood/Wood Waste by industrial buildings,3680819401821,kJ,CO2,112000.0,kg/TJ,412251773004036352,kg -329a497c-82f4-3552-a3db-f7bd87adec96,BEN,I.3.1,Argentina,AR,annual,2020,fuel consumption of Wood/Wood Waste by industrial buildings,3680819401821,kJ,CH4,30.0,kg/TJ,110424582054652,kg -72b5e678-1e87-3481-97c0-31486ae749f8,BEN,I.3.1,Argentina,AR,annual,2020,fuel consumption of Wood/Wood Waste by industrial buildings,3680819401821,kJ,N2O,4.0,kg/TJ,14723277607287,kg -7fe9238c-99cc-3e8a-8f3b-563c7109e7d5,BEN,I.3.1,Argentina,AR,annual,2020,fuel consumption of Liquefied Petroleum Gases by industrial buildings,6854335884000,kJ,CO2,63100.0,kg/TJ,432508594280400256,kg -f1c5d053-3fee-3132-bcc1-2e575c7943ff,BEN,I.3.1,Argentina,AR,annual,2020,fuel consumption of Liquefied Petroleum Gases by industrial buildings,6854335884000,kJ,CH4,1.0,kg/TJ,6854335884000,kg -94162d43-5bbf-3929-a52c-7622a00d908b,BEN,I.3.1,Argentina,AR,annual,2020,fuel consumption of Liquefied Petroleum Gases by industrial buildings,6854335884000,kJ,N2O,0.1,kg/TJ,685433588400,kg -3e5ce6a6-0cc4-3e90-89eb-833f974d1b46,BEN,I.1.1,Argentina,AR,annual,2021,fuel consumption of Wood/Wood Waste by residential buildings,3610487149012,kJ,CO2,0.0,kg/TJ,0,kg -1ec37776-ab8c-37ab-8b8b-7900ba45fcae,BEN,I.1.1,Argentina,AR,annual,2021,fuel consumption of Wood/Wood Waste by residential buildings,3610487149012,kJ,CH4,300.0,kg/TJ,1083146144703822,kg -7a5d12b5-7f59-3216-9f95-654e24059afc,BEN,I.1.1,Argentina,AR,annual,2021,fuel consumption of Wood/Wood Waste by residential buildings,3610487149012,kJ,N2O,4.0,kg/TJ,14441948596050,kg -c25b196b-5681-3590-b559-59384483dcd4,BEN,I.1.1,Argentina,AR,annual,2021,fuel consumption of Liquefied Petroleum Gases by residential buildings,56470553567999,kJ,CO2,63100.0,kg/TJ,3563291930140799488,kg -940afa0e-4b18-3a8b-8a71-2957f1d717b0,BEN,I.1.1,Argentina,AR,annual,2021,fuel consumption of Liquefied Petroleum Gases by residential buildings,56470553567999,kJ,CH4,5.0,kg/TJ,282352767839999,kg -7228edc4-ff7e-3254-a630-da07e3d8fbf2,BEN,I.1.1,Argentina,AR,annual,2021,fuel consumption of Liquefied Petroleum Gases by residential buildings,56470553567999,kJ,N2O,0.1,kg/TJ,5647055356800,kg -a6738e24-fb73-3c9f-8bcf-f595456aa5cd,BEN,I.1.1,Argentina,AR,annual,2021,fuel consumption of Jet Kerosene by residential buildings,277589864160,kJ,CO2,71500.0,kg/TJ,19847675287440004,kg -19936953-bde0-37a3-9990-26ee2acfd800,BEN,I.1.1,Argentina,AR,annual,2021,fuel consumption of Jet Kerosene by residential buildings,277589864160,kJ,CH4,10.0,kg/TJ,2775898641600,kg -ab1191c5-80d6-3d12-a7ba-7c3810d1e1e9,BEN,I.1.1,Argentina,AR,annual,2021,fuel consumption of Jet Kerosene by residential buildings,277589864160,kJ,N2O,0.6,kg/TJ,166553918496,kg -819c097f-1a72-34e8-bb25-2ce8d96925fc,BEN,I.1.1,Argentina,AR,annual,2021,fuel consumption of Charcoal by residential buildings,7254170670146,kJ,CO2,112000.0,kg/TJ,812467115056396672,kg -d0ea890f-3a10-3d9f-938c-20a9505a742d,BEN,I.1.1,Argentina,AR,annual,2021,fuel consumption of Charcoal by residential buildings,7254170670146,kJ,CH4,200.0,kg/TJ,1450834134029280,kg -c96544f2-59db-3d6c-b5bb-abbf51481bbc,BEN,I.1.1,Argentina,AR,annual,2021,fuel consumption of Charcoal by residential buildings,7254170670146,kJ,N2O,1.0,kg/TJ,7254170670146,kg -a2387bb3-efc1-352b-9c42-cb93f2ff6cd3,BEN,I.2.1,Argentina,AR,annual,2021,fuel consumption of Wood/Wood Waste by commercial buildings,1805243574506,kJ,CO2,112000.0,kg/TJ,202187280344713568,kg -2ce6b9eb-7b93-3c72-8b86-2cd571e4bd86,BEN,I.2.1,Argentina,AR,annual,2021,fuel consumption of Wood/Wood Waste by commercial buildings,1805243574506,kJ,CH4,300.0,kg/TJ,541573072351911,kg -8cad0af6-d235-3f67-852f-70480861e459,BEN,I.2.1,Argentina,AR,annual,2021,fuel consumption of Wood/Wood Waste by commercial buildings,1805243574506,kJ,N2O,4.0,kg/TJ,7220974298025,kg -f383005d-67f9-3149-914c-2f933e948e6d,BEN,I.2.1,Argentina,AR,annual,2021,fuel consumption of Liquefied Petroleum Gases by commercial buildings,9411758928000,kJ,CO2,63100.0,kg/TJ,593881988356800000,kg -3a1d8eb1-7785-37c8-8917-be1b08c2b541,BEN,I.2.1,Argentina,AR,annual,2021,fuel consumption of Liquefied Petroleum Gases by commercial buildings,9411758928000,kJ,CH4,5.0,kg/TJ,47058794640000,kg -92f3420f-37d1-39ae-b0fb-80e0ce1fa2ec,BEN,I.2.1,Argentina,AR,annual,2021,fuel consumption of Liquefied Petroleum Gases by commercial buildings,9411758928000,kJ,N2O,0.1,kg/TJ,941175892800,kg -637e5cd1-edce-3190-888f-546725af8ff4,BEN,I.2.1,Argentina,AR,annual,2021,fuel consumption of Charcoal by commercial buildings,4836113780097,kJ,CO2,112000.0,kg/TJ,541644743370931264,kg -3aa22b55-209e-3c03-87f5-4d42129a4a27,BEN,I.2.1,Argentina,AR,annual,2021,fuel consumption of Charcoal by commercial buildings,4836113780097,kJ,CH4,200.0,kg/TJ,967222756019520,kg -bedf126c-76af-3409-ad1b-3fd2db9ba6ad,BEN,I.2.1,Argentina,AR,annual,2021,fuel consumption of Charcoal by commercial buildings,4836113780097,kJ,N2O,1.0,kg/TJ,4836113780097,kg -05e43d5d-a6c0-32e4-b4b8-40a533a7c345,BEN,I.5.1,Argentina,AR,annual,2021,fuel consumption of Liquefied Petroleum Gases by agricultural activities,3921566220000,kJ,CO2,63100.0,kg/TJ,247450828482000000,kg -960c3431-fcd1-35a0-8494-c78a0cf9651e,BEN,I.5.1,Argentina,AR,annual,2021,fuel consumption of Liquefied Petroleum Gases by agricultural activities,3921566220000,kJ,CH4,5.0,kg/TJ,19607831100000,kg -6888242f-8118-39d3-9d1f-cc7ecb6246c3,BEN,I.5.1,Argentina,AR,annual,2021,fuel consumption of Liquefied Petroleum Gases by agricultural activities,3921566220000,kJ,N2O,0.1,kg/TJ,392156622000,kg -e37b7056-4f2d-3b0e-a687-e6f4c6e867ab,BEN,I.3.1,Argentina,AR,annual,2021,fuel consumption of Wood/Wood Waste by industrial buildings,3610487149012,kJ,CO2,112000.0,kg/TJ,404374560689427136,kg -1bf675df-422c-38a6-b59e-fd25ee91932a,BEN,I.3.1,Argentina,AR,annual,2021,fuel consumption of Wood/Wood Waste by industrial buildings,3610487149012,kJ,CH4,30.0,kg/TJ,108314614470382,kg -180a7aa9-0821-3b57-9457-287ffd7f2beb,BEN,I.3.1,Argentina,AR,annual,2021,fuel consumption of Wood/Wood Waste by industrial buildings,3610487149012,kJ,N2O,4.0,kg/TJ,14441948596050,kg -052943af-7585-34c9-a1e5-ce692409d496,BEN,I.3.1,Argentina,AR,annual,2021,fuel consumption of Liquefied Petroleum Gases by industrial buildings,8627445684000,kJ,CO2,63100.0,kg/TJ,544391822660400000,kg -6277fa46-9881-390c-8986-387ee9f0a279,BEN,I.3.1,Argentina,AR,annual,2021,fuel consumption of Liquefied Petroleum Gases by industrial buildings,8627445684000,kJ,CH4,1.0,kg/TJ,8627445684000,kg -b8d0efdd-4dec-3abf-a2dc-32f5ba8c40de,BEN,I.3.1,Argentina,AR,annual,2021,fuel consumption of Liquefied Petroleum Gases by industrial buildings,8627445684000,kJ,N2O,0.1,kg/TJ,862744568400,kg -74a2b832-e4a1-32b1-90c7-b6656400acf1,BEN,I.1.1,Argentina,AR,annual,2018,fuel consumption of Wood/Wood Waste by residential buildings,3839058324766,kJ,CO2,0.0,kg/TJ,0,kg -fc8207f5-d763-36b6-9ee2-468a37b7b24a,BEN,I.1.1,Argentina,AR,annual,2018,fuel consumption of Wood/Wood Waste by residential buildings,3839058324766,kJ,CH4,300.0,kg/TJ,1151717497429815,kg -a7ed50e0-b58d-330d-9fa1-8f15ff9ec3b4,BEN,I.1.1,Argentina,AR,annual,2018,fuel consumption of Wood/Wood Waste by residential buildings,3839058324766,kJ,N2O,4.0,kg/TJ,15356233299064,kg -ac08fff8-d566-36f7-adbe-be571c278849,BEN,I.1.1,Argentina,AR,annual,2018,fuel consumption of Liquefied Petroleum Gases by residential buildings,50498170788383,kJ,CO2,63100.0,kg/TJ,3186434576747030016,kg -9280b872-a62e-35dc-827a-2df0a3b1e0f3,BEN,I.1.1,Argentina,AR,annual,2018,fuel consumption of Liquefied Petroleum Gases by residential buildings,50498170788383,kJ,CH4,5.0,kg/TJ,252490853941919,kg -ddaae8dd-6a25-32ec-a7c0-6a0abe53dd83,BEN,I.1.1,Argentina,AR,annual,2018,fuel consumption of Liquefied Petroleum Gases by residential buildings,50498170788383,kJ,N2O,0.1,kg/TJ,5049817078838,kg -c318a86a-e308-3011-93c3-0057ee096a6d,BEN,I.1.1,Argentina,AR,annual,2018,fuel consumption of Jet Kerosene by residential buildings,477104281920,kJ,CO2,71500.0,kg/TJ,34112956157280000,kg -ca8ebb8d-4a8a-394d-bff6-0eb1f40dc5f3,BEN,I.1.1,Argentina,AR,annual,2018,fuel consumption of Jet Kerosene by residential buildings,477104281920,kJ,CH4,10.0,kg/TJ,4771042819200,kg -abb7535c-e343-3a38-8c06-29c2b9511b7d,BEN,I.1.1,Argentina,AR,annual,2018,fuel consumption of Jet Kerosene by residential buildings,477104281920,kJ,N2O,0.6,kg/TJ,286262569152,kg -275ecc0b-535a-3266-8721-ecc20cb425df,BEN,I.1.1,Argentina,AR,annual,2018,fuel consumption of Charcoal by residential buildings,7098502403180,kJ,CO2,112000.0,kg/TJ,795032269156177664,kg -b7badea9-ac68-3d49-b196-236a900060d5,BEN,I.1.1,Argentina,AR,annual,2018,fuel consumption of Charcoal by residential buildings,7098502403180,kJ,CH4,200.0,kg/TJ,1419700480636031,kg -1062969a-6dbf-3aa9-bbff-034863b6a708,BEN,I.1.1,Argentina,AR,annual,2018,fuel consumption of Charcoal by residential buildings,7098502403180,kJ,N2O,1.0,kg/TJ,7098502403180,kg -19122484-a58c-38d0-8398-2249dbf8e92b,BEN,I.2.1,Argentina,AR,annual,2018,fuel consumption of Wood/Wood Waste by commercial buildings,1919529162383,kJ,CO2,112000.0,kg/TJ,214987266186898912,kg -66ad71c6-e2f9-3af5-8d50-8332b5f0173c,BEN,I.2.1,Argentina,AR,annual,2018,fuel consumption of Wood/Wood Waste by commercial buildings,1919529162383,kJ,CH4,300.0,kg/TJ,575858748714907,kg -2af7014a-0137-39b8-a429-730dd140114a,BEN,I.2.1,Argentina,AR,annual,2018,fuel consumption of Wood/Wood Waste by commercial buildings,1919529162383,kJ,N2O,4.0,kg/TJ,7678116649532,kg -b52abfa2-587a-3b17-8142-840f34907037,BEN,I.2.1,Argentina,AR,annual,2018,fuel consumption of Liquefied Petroleum Gases by commercial buildings,8416361798063,kJ,CO2,63100.0,kg/TJ,531072429457838336,kg -fa15ab4f-1cbe-3aba-ace2-3822b2ebf0dd,BEN,I.2.1,Argentina,AR,annual,2018,fuel consumption of Liquefied Petroleum Gases by commercial buildings,8416361798063,kJ,CH4,5.0,kg/TJ,42081808990319,kg -4b455f77-4090-367a-819f-c6395001093c,BEN,I.2.1,Argentina,AR,annual,2018,fuel consumption of Liquefied Petroleum Gases by commercial buildings,8416361798063,kJ,N2O,0.1,kg/TJ,841636179806,kg -a297ed0f-f86e-3223-bca9-77775d9505f8,BEN,I.2.1,Argentina,AR,annual,2018,fuel consumption of Charcoal by commercial buildings,4732334935453,kJ,CO2,112000.0,kg/TJ,530021512770785216,kg -eaa777bc-b7a6-3e45-aca1-2eab61e91fbb,BEN,I.2.1,Argentina,AR,annual,2018,fuel consumption of Charcoal by commercial buildings,4732334935453,kJ,CH4,200.0,kg/TJ,946466987090687,kg -96101944-8214-344c-8214-1efebb15517b,BEN,I.2.1,Argentina,AR,annual,2018,fuel consumption of Charcoal by commercial buildings,4732334935453,kJ,N2O,1.0,kg/TJ,4732334935453,kg -b162297f-8800-3dda-be3e-b14ebe593a49,BEN,I.5.1,Argentina,AR,annual,2018,fuel consumption of Liquefied Petroleum Gases by agricultural activities,3506817415859,kJ,CO2,63100.0,kg/TJ,221280178940765984,kg -8736dd5e-6bed-3741-81c4-e0c809b89e77,BEN,I.5.1,Argentina,AR,annual,2018,fuel consumption of Liquefied Petroleum Gases by agricultural activities,3506817415859,kJ,CH4,5.0,kg/TJ,17534087079299,kg -28ae2526-5f80-31fb-b533-aa2cda93b314,BEN,I.5.1,Argentina,AR,annual,2018,fuel consumption of Liquefied Petroleum Gases by agricultural activities,3506817415859,kJ,N2O,0.1,kg/TJ,350681741586,kg -889e84ac-cdbd-3b4e-8530-bdb365a4bbfd,BEN,I.3.1,Argentina,AR,annual,2018,fuel consumption of Wood/Wood Waste by industrial buildings,3839058324766,kJ,CO2,112000.0,kg/TJ,429974532373797824,kg -b9c4ca73-fd06-34da-a507-bc895cf1d190,BEN,I.3.1,Argentina,AR,annual,2018,fuel consumption of Wood/Wood Waste by industrial buildings,3839058324766,kJ,CH4,30.0,kg/TJ,115171749742981,kg -1fd3ea82-8085-353d-b52f-bb49473716cf,BEN,I.3.1,Argentina,AR,annual,2018,fuel consumption of Wood/Wood Waste by industrial buildings,3839058324766,kJ,N2O,4.0,kg/TJ,15356233299064,kg -500365d8-2941-3a75-84f8-d918ad5c56ae,BEN,I.3.1,Argentina,AR,annual,2018,fuel consumption of Liquefied Petroleum Gases by industrial buildings,7714998314891,kJ,CO2,63100.0,kg/TJ,486816393669685056,kg -08be1053-1758-3b37-9891-e488c744c672,BEN,I.3.1,Argentina,AR,annual,2018,fuel consumption of Liquefied Petroleum Gases by industrial buildings,7714998314891,kJ,CH4,1.0,kg/TJ,7714998314891,kg -efe7dcb2-b734-33b0-9d3d-d92f5648d6cb,BEN,I.3.1,Argentina,AR,annual,2018,fuel consumption of Liquefied Petroleum Gases by industrial buildings,7714998314891,kJ,N2O,0.1,kg/TJ,771499831489,kg -72c4c62b-1db2-3f44-b56f-8f1862224f8a,BEN,I.1.1,Argentina,AR,annual,2019,fuel consumption of Wood/Wood Waste by residential buildings,3847111857705,kJ,CO2,0.0,kg/TJ,0,kg -0679ec1d-e68c-3ae1-bc92-f13afb4dcf21,BEN,I.1.1,Argentina,AR,annual,2019,fuel consumption of Wood/Wood Waste by residential buildings,3847111857705,kJ,CH4,300.0,kg/TJ,1154133557311723,kg -11fbfffb-c838-3b11-8cad-3934aebbb8f1,BEN,I.1.1,Argentina,AR,annual,2019,fuel consumption of Wood/Wood Waste by residential buildings,3847111857705,kJ,N2O,4.0,kg/TJ,15388447430822,kg -fcaebfc7-e37f-34c4-ae40-b67910ba582b,BEN,I.1.1,Argentina,AR,annual,2019,fuel consumption of Liquefied Petroleum Gases by residential buildings,49888401552000,kJ,CO2,63100.0,kg/TJ,3147958137931200000,kg -538fe6d2-2257-3e9f-a89a-b4d1526409d1,BEN,I.1.1,Argentina,AR,annual,2019,fuel consumption of Liquefied Petroleum Gases by residential buildings,49888401552000,kJ,CH4,5.0,kg/TJ,249442007760000,kg -67d871f6-7147-355c-b137-0aec1265412e,BEN,I.1.1,Argentina,AR,annual,2019,fuel consumption of Liquefied Petroleum Gases by residential buildings,49888401552000,kJ,N2O,0.1,kg/TJ,4988840155200,kg -e3c4ff73-a435-30e1-a9a9-fa0d6747e793,BEN,I.1.1,Argentina,AR,annual,2019,fuel consumption of Jet Kerosene by residential buildings,383554422719,kJ,CO2,71500.0,kg/TJ,27424141224479996,kg -684d7689-136c-3830-86ed-9b315ecfc5bc,BEN,I.1.1,Argentina,AR,annual,2019,fuel consumption of Jet Kerosene by residential buildings,383554422719,kJ,CH4,10.0,kg/TJ,3835544227199,kg -fb5b990f-93e0-3a39-aa23-337c81aad26d,BEN,I.1.1,Argentina,AR,annual,2019,fuel consumption of Jet Kerosene by residential buildings,383554422719,kJ,N2O,0.6,kg/TJ,230132653631,kg -2dc7dcf2-916b-3533-9fdd-d10e40fc8190,BEN,I.1.1,Argentina,AR,annual,2019,fuel consumption of Charcoal by residential buildings,7226273011890,kJ,CO2,112000.0,kg/TJ,809342577331707008,kg -7bb960a6-9bba-347c-9587-b4cbe997627e,BEN,I.1.1,Argentina,AR,annual,2019,fuel consumption of Charcoal by residential buildings,7226273011890,kJ,CH4,200.0,kg/TJ,1445254602378048,kg -9f0d9091-78e5-347d-9f20-eb97cb624e76,BEN,I.1.1,Argentina,AR,annual,2019,fuel consumption of Charcoal by residential buildings,7226273011890,kJ,N2O,1.0,kg/TJ,7226273011890,kg -c78212b6-544e-3381-9e4d-9218875f2f77,BEN,I.2.1,Argentina,AR,annual,2019,fuel consumption of Wood/Wood Waste by commercial buildings,1923555928852,kJ,CO2,112000.0,kg/TJ,215438264031521632,kg -f35a30d9-b7bf-3fc1-8ad6-af98e959da4b,BEN,I.2.1,Argentina,AR,annual,2019,fuel consumption of Wood/Wood Waste by commercial buildings,1923555928852,kJ,CH4,300.0,kg/TJ,577066778655861,kg -4cf1fce9-0f45-3069-b8d6-373e4bf1267c,BEN,I.2.1,Argentina,AR,annual,2019,fuel consumption of Wood/Wood Waste by commercial buildings,1923555928852,kJ,N2O,4.0,kg/TJ,7694223715411,kg -b7921233-7b32-352b-adc9-bdbded459c12,BEN,I.2.1,Argentina,AR,annual,2019,fuel consumption of Liquefied Petroleum Gases by commercial buildings,8314733592000,kJ,CO2,63100.0,kg/TJ,524659689655200064,kg -ebc08536-496d-3151-84d4-3c0d44aabec3,BEN,I.2.1,Argentina,AR,annual,2019,fuel consumption of Liquefied Petroleum Gases by commercial buildings,8314733592000,kJ,CH4,5.0,kg/TJ,41573667960000,kg -34a46446-9bb2-3867-a2b1-01c55d9d5a19,BEN,I.2.1,Argentina,AR,annual,2019,fuel consumption of Liquefied Petroleum Gases by commercial buildings,8314733592000,kJ,N2O,0.1,kg/TJ,831473359200,kg -a2395706-bc5a-3bc9-a248-c4cfb5594fef,BEN,I.2.1,Argentina,AR,annual,2019,fuel consumption of Charcoal by commercial buildings,4817515341260,kJ,CO2,112000.0,kg/TJ,539561718221138048,kg -ebba22fd-c0cb-3b5d-8a05-2a32aaa30cda,BEN,I.2.1,Argentina,AR,annual,2019,fuel consumption of Charcoal by commercial buildings,4817515341260,kJ,CH4,200.0,kg/TJ,963503068252032,kg -96c064bb-97bb-3ce2-8dd1-1d1853bc3a38,BEN,I.2.1,Argentina,AR,annual,2019,fuel consumption of Charcoal by commercial buildings,4817515341260,kJ,N2O,1.0,kg/TJ,4817515341260,kg -65698d25-16d6-3892-b3ea-a4cf42b9aef2,BEN,I.5.1,Argentina,AR,annual,2019,fuel consumption of Liquefied Petroleum Gases by agricultural activities,3464472330000,kJ,CO2,63100.0,kg/TJ,218608204023000032,kg -f1b2025d-db88-397c-b022-67022326e322,BEN,I.5.1,Argentina,AR,annual,2019,fuel consumption of Liquefied Petroleum Gases by agricultural activities,3464472330000,kJ,CH4,5.0,kg/TJ,17322361650000,kg -dc6e741f-7290-388a-88fe-0acdea951c72,BEN,I.5.1,Argentina,AR,annual,2019,fuel consumption of Liquefied Petroleum Gases by agricultural activities,3464472330000,kJ,N2O,0.1,kg/TJ,346447233000,kg -67a999c2-c0f7-35d8-a6f7-394ce64e3d46,BEN,I.3.1,Argentina,AR,annual,2019,fuel consumption of Wood/Wood Waste by industrial buildings,3847111857705,kJ,CO2,112000.0,kg/TJ,430876528063043264,kg -7ddce7b9-8425-344d-beff-9d0034dc75ca,BEN,I.3.1,Argentina,AR,annual,2019,fuel consumption of Wood/Wood Waste by industrial buildings,3847111857705,kJ,CH4,30.0,kg/TJ,115413355731172,kg -1d55c6b3-49e9-31e9-86f5-8a596660ef14,BEN,I.3.1,Argentina,AR,annual,2019,fuel consumption of Wood/Wood Waste by industrial buildings,3847111857705,kJ,N2O,4.0,kg/TJ,15388447430822,kg -3ab3c41d-f481-3a6d-b5cc-9e805ee5dd17,BEN,I.3.1,Argentina,AR,annual,2019,fuel consumption of Liquefied Petroleum Gases by industrial buildings,7621839126000,kJ,CO2,63100.0,kg/TJ,480938048850600064,kg -3402f0d9-63f9-39b4-8f59-baf690c3a2f1,BEN,I.3.1,Argentina,AR,annual,2019,fuel consumption of Liquefied Petroleum Gases by industrial buildings,7621839126000,kJ,CH4,1.0,kg/TJ,7621839126000,kg -1a1633b2-0be9-3117-9d33-58f53bd2107e,BEN,I.3.1,Argentina,AR,annual,2019,fuel consumption of Liquefied Petroleum Gases by industrial buildings,7621839126000,kJ,N2O,0.1,kg/TJ,762183912600,kg +85700111-3729-30ef-b38e-3ce80b843cec,BEN,I.1.1,Argentina,AR,annual,2020,fuel consumption of Wood/Wood Waste by residential buildings,3680,kJ,CO2,0.0,kg/TJ,0,kg +3b707f54-2520-3c48-8ec6-b27524cbef2e,BEN,I.1.1,Argentina,AR,annual,2020,fuel consumption of Wood/Wood Waste by residential buildings,3680,kJ,CH4,300.0,kg/TJ,1104245,kg +57a94522-9840-314e-b57a-af7fb16e977c,BEN,I.1.1,Argentina,AR,annual,2020,fuel consumption of Wood/Wood Waste by residential buildings,3680,kJ,N2O,4.0,kg/TJ,14723,kg +9e175a00-99bc-3c66-a4a7-92b05834f9a7,BEN,I.1.1,Argentina,AR,annual,2020,fuel consumption of Liquefied Petroleum Gases by residential buildings,44864,kJ,CO2,63100.0,kg/TJ,2830965344,kg +218bc6c5-22d3-3e60-a7ce-c0bf30b28a81,BEN,I.1.1,Argentina,AR,annual,2020,fuel consumption of Liquefied Petroleum Gases by residential buildings,44864,kJ,CH4,5.0,kg/TJ,224323,kg +7da860d4-6d23-38a1-a1e4-7e223a8a3b6a,BEN,I.1.1,Argentina,AR,annual,2020,fuel consumption of Liquefied Petroleum Gases by residential buildings,44864,kJ,N2O,0.1,kg/TJ,4486,kg +d543d8b0-d1be-3221-ba72-9c512abdf9a6,BEN,I.1.1,Argentina,AR,annual,2020,fuel consumption of Jet Kerosene by residential buildings,101,kJ,CO2,71500.0,kg/TJ,7221908,kg +711884b4-0b30-31c4-a814-3b934a7209f1,BEN,I.1.1,Argentina,AR,annual,2020,fuel consumption of Jet Kerosene by residential buildings,101,kJ,CH4,10.0,kg/TJ,1010,kg +b5cdd574-bd0e-3fc6-8911-d2d9e6e81438,BEN,I.1.1,Argentina,AR,annual,2020,fuel consumption of Jet Kerosene by residential buildings,101,kJ,N2O,0.6,kg/TJ,60,kg +58300a08-427c-3592-8298-fb1cd98a3b8e,BEN,I.1.1,Argentina,AR,annual,2020,fuel consumption of Charcoal by residential buildings,7154,kJ,CO2,112000.0,kg/TJ,801248753,kg +36f12e5d-837d-3fea-b395-d616add465c3,BEN,I.1.1,Argentina,AR,annual,2020,fuel consumption of Charcoal by residential buildings,7154,kJ,CH4,200.0,kg/TJ,1430801,kg +ca52e16b-55f0-3d0d-a925-1b7b2ecea54f,BEN,I.1.1,Argentina,AR,annual,2020,fuel consumption of Charcoal by residential buildings,7154,kJ,N2O,1.0,kg/TJ,7154,kg +a8c1d464-30a7-3d29-b8b2-a149a996360d,BEN,I.2.1,Argentina,AR,annual,2020,fuel consumption of Wood/Wood Waste by commercial buildings,1840,kJ,CO2,112000.0,kg/TJ,206125886,kg +ae92d947-28ca-33b0-80ac-570ce622582c,BEN,I.2.1,Argentina,AR,annual,2020,fuel consumption of Wood/Wood Waste by commercial buildings,1840,kJ,CH4,300.0,kg/TJ,552122,kg +d562a433-6b13-3e43-903d-8c8aeeb966fe,BEN,I.2.1,Argentina,AR,annual,2020,fuel consumption of Wood/Wood Waste by commercial buildings,1840,kJ,N2O,4.0,kg/TJ,7361,kg +18e9bcef-3704-3af9-9a2b-990121ad16cc,BEN,I.2.1,Argentina,AR,annual,2020,fuel consumption of Liquefied Petroleum Gases by commercial buildings,7477,kJ,CO2,63100.0,kg/TJ,471827557,kg +387ecb69-0792-36c5-9456-437c435366c3,BEN,I.2.1,Argentina,AR,annual,2020,fuel consumption of Liquefied Petroleum Gases by commercial buildings,7477,kJ,CH4,5.0,kg/TJ,37387,kg +159ddfde-9593-3c39-9fee-317a25519478,BEN,I.2.1,Argentina,AR,annual,2020,fuel consumption of Liquefied Petroleum Gases by commercial buildings,7477,kJ,N2O,0.1,kg/TJ,747,kg +e4807128-8885-31fa-ab33-35e1e77ca6d2,BEN,I.2.1,Argentina,AR,annual,2020,fuel consumption of Charcoal by commercial buildings,4769,kJ,CO2,112000.0,kg/TJ,534165835,kg +e4db12ce-15ef-3c9b-9bae-36a60a0fffa4,BEN,I.2.1,Argentina,AR,annual,2020,fuel consumption of Charcoal by commercial buildings,4769,kJ,CH4,200.0,kg/TJ,953867,kg +3db8da66-585c-3d7a-a690-16a5bbec186e,BEN,I.2.1,Argentina,AR,annual,2020,fuel consumption of Charcoal by commercial buildings,4769,kJ,N2O,1.0,kg/TJ,4769,kg +6d874c44-b9aa-3714-85ae-d8c217f30411,BEN,I.5.1,Argentina,AR,annual,2020,fuel consumption of Liquefied Petroleum Gases by agricultural activities,3115,kJ,CO2,63100.0,kg/TJ,196594815,kg +7f9566f3-a6e8-31f3-ae7f-e9e9a43276d4,BEN,I.5.1,Argentina,AR,annual,2020,fuel consumption of Liquefied Petroleum Gases by agricultural activities,3115,kJ,CH4,5.0,kg/TJ,15578,kg +50927be2-2c29-3cd2-bf31-4dcfb43b924f,BEN,I.5.1,Argentina,AR,annual,2020,fuel consumption of Liquefied Petroleum Gases by agricultural activities,3115,kJ,N2O,0.1,kg/TJ,311,kg +83678800-046c-3dda-85bf-5b4fdc58f191,BEN,I.3.1,Argentina,AR,annual,2020,fuel consumption of Wood/Wood Waste by industrial buildings,3680,kJ,CO2,112000.0,kg/TJ,412251773,kg +ac1cbfa4-2c4b-3531-8663-f5316a152add,BEN,I.3.1,Argentina,AR,annual,2020,fuel consumption of Wood/Wood Waste by industrial buildings,3680,kJ,CH4,30.0,kg/TJ,110424,kg +76078396-aaf6-3dca-b5dc-09a7baf30ad6,BEN,I.3.1,Argentina,AR,annual,2020,fuel consumption of Wood/Wood Waste by industrial buildings,3680,kJ,N2O,4.0,kg/TJ,14723,kg +2f7b54b3-6f31-36f2-834f-beb4dedbfee4,BEN,I.3.1,Argentina,AR,annual,2020,fuel consumption of Liquefied Petroleum Gases by industrial buildings,6854,kJ,CO2,63100.0,kg/TJ,432508594,kg +1e88ae39-9ea8-3bf6-ad27-9d78a71453d8,BEN,I.3.1,Argentina,AR,annual,2020,fuel consumption of Liquefied Petroleum Gases by industrial buildings,6854,kJ,CH4,1.0,kg/TJ,6854,kg +49f348b2-b5a8-31c2-a012-fe40bbcde206,BEN,I.3.1,Argentina,AR,annual,2020,fuel consumption of Liquefied Petroleum Gases by industrial buildings,6854,kJ,N2O,0.1,kg/TJ,685,kg +3e5ce6a6-0cc4-3e90-89eb-833f974d1b46,BEN,I.1.1,Argentina,AR,annual,2021,fuel consumption of Wood/Wood Waste by residential buildings,3610,kJ,CO2,0.0,kg/TJ,0,kg +a4c5c987-752b-3125-ace9-7bb23a3bf54e,BEN,I.1.1,Argentina,AR,annual,2021,fuel consumption of Wood/Wood Waste by residential buildings,3610,kJ,CH4,300.0,kg/TJ,1083146,kg +4980a7eb-5010-3fca-ab5e-aeed440f1493,BEN,I.1.1,Argentina,AR,annual,2021,fuel consumption of Wood/Wood Waste by residential buildings,3610,kJ,N2O,4.0,kg/TJ,14441,kg +f9994204-575f-3d03-801f-6617577e0c64,BEN,I.1.1,Argentina,AR,annual,2021,fuel consumption of Liquefied Petroleum Gases by residential buildings,56470,kJ,CO2,63100.0,kg/TJ,3563291930,kg +1f8e22cc-75c0-3a85-89fa-01b04575c82f,BEN,I.1.1,Argentina,AR,annual,2021,fuel consumption of Liquefied Petroleum Gases by residential buildings,56470,kJ,CH4,5.0,kg/TJ,282352,kg +cc89c6b8-7ffb-3d1c-9461-a4384dc86c35,BEN,I.1.1,Argentina,AR,annual,2021,fuel consumption of Liquefied Petroleum Gases by residential buildings,56470,kJ,N2O,0.1,kg/TJ,5647,kg +b4dadc04-d52b-3994-ae74-ed5bd9ddc574,BEN,I.1.1,Argentina,AR,annual,2021,fuel consumption of Jet Kerosene by residential buildings,277,kJ,CO2,71500.0,kg/TJ,19847675,kg +04df3477-f6e1-3e8b-bea9-beb982ee1473,BEN,I.1.1,Argentina,AR,annual,2021,fuel consumption of Jet Kerosene by residential buildings,277,kJ,CH4,10.0,kg/TJ,2775,kg +ce56c48f-29e3-3508-8d66-d2fe1c8048dd,BEN,I.1.1,Argentina,AR,annual,2021,fuel consumption of Jet Kerosene by residential buildings,277,kJ,N2O,0.6,kg/TJ,166,kg +10a55e4b-0628-3f13-b8d8-e9085502ada7,BEN,I.1.1,Argentina,AR,annual,2021,fuel consumption of Charcoal by residential buildings,7254,kJ,CO2,112000.0,kg/TJ,812467115,kg +9c361a24-9573-366d-8a66-4025b236cba8,BEN,I.1.1,Argentina,AR,annual,2021,fuel consumption of Charcoal by residential buildings,7254,kJ,CH4,200.0,kg/TJ,1450834,kg +c817a98d-ace5-30e6-92ee-dd3786ebe77a,BEN,I.1.1,Argentina,AR,annual,2021,fuel consumption of Charcoal by residential buildings,7254,kJ,N2O,1.0,kg/TJ,7254,kg +6cd5579f-7367-395b-8684-931f88ab7136,BEN,I.2.1,Argentina,AR,annual,2021,fuel consumption of Wood/Wood Waste by commercial buildings,1805,kJ,CO2,112000.0,kg/TJ,202187280,kg +1a90a9ad-a1a7-3c43-957e-8bb3e7e2ec82,BEN,I.2.1,Argentina,AR,annual,2021,fuel consumption of Wood/Wood Waste by commercial buildings,1805,kJ,CH4,300.0,kg/TJ,541573,kg +f0e8b7c2-9289-3037-8a81-f0e010506599,BEN,I.2.1,Argentina,AR,annual,2021,fuel consumption of Wood/Wood Waste by commercial buildings,1805,kJ,N2O,4.0,kg/TJ,7220,kg +0d3c0454-9f81-3e57-9afc-fc7639c74c22,BEN,I.2.1,Argentina,AR,annual,2021,fuel consumption of Liquefied Petroleum Gases by commercial buildings,9411,kJ,CO2,63100.0,kg/TJ,593881988,kg +402d540f-2ecf-33ec-824b-90c05d38a4e0,BEN,I.2.1,Argentina,AR,annual,2021,fuel consumption of Liquefied Petroleum Gases by commercial buildings,9411,kJ,CH4,5.0,kg/TJ,47058,kg +bf85a339-a883-3b67-91bb-58ca880d516b,BEN,I.2.1,Argentina,AR,annual,2021,fuel consumption of Liquefied Petroleum Gases by commercial buildings,9411,kJ,N2O,0.1,kg/TJ,941,kg +09cfe83c-ffdb-35ee-92ab-a179c43f3944,BEN,I.2.1,Argentina,AR,annual,2021,fuel consumption of Charcoal by commercial buildings,4836,kJ,CO2,112000.0,kg/TJ,541644743,kg +8c9f57ac-8bcc-32d8-a80d-47e69cfde864,BEN,I.2.1,Argentina,AR,annual,2021,fuel consumption of Charcoal by commercial buildings,4836,kJ,CH4,200.0,kg/TJ,967222,kg +35e62856-46b9-3185-bee1-7adc0c803586,BEN,I.2.1,Argentina,AR,annual,2021,fuel consumption of Charcoal by commercial buildings,4836,kJ,N2O,1.0,kg/TJ,4836,kg +e310099d-3d33-32be-ae1f-cb1b2fcb5d5c,BEN,I.5.1,Argentina,AR,annual,2021,fuel consumption of Liquefied Petroleum Gases by agricultural activities,3921,kJ,CO2,63100.0,kg/TJ,247450828,kg +55168374-595c-3836-bcf2-dd02372170ad,BEN,I.5.1,Argentina,AR,annual,2021,fuel consumption of Liquefied Petroleum Gases by agricultural activities,3921,kJ,CH4,5.0,kg/TJ,19607,kg +7800a8bd-744f-36d7-8297-247685781c06,BEN,I.5.1,Argentina,AR,annual,2021,fuel consumption of Liquefied Petroleum Gases by agricultural activities,3921,kJ,N2O,0.1,kg/TJ,392,kg +63c0d107-7709-32a9-9a6a-089b70b1d7e1,BEN,I.3.1,Argentina,AR,annual,2021,fuel consumption of Wood/Wood Waste by industrial buildings,3610,kJ,CO2,112000.0,kg/TJ,404374560,kg +7b9dd973-049a-3c32-88eb-65911d3e6ab6,BEN,I.3.1,Argentina,AR,annual,2021,fuel consumption of Wood/Wood Waste by industrial buildings,3610,kJ,CH4,30.0,kg/TJ,108314,kg +80c2f7df-d4a0-3b59-8585-e6d99b701729,BEN,I.3.1,Argentina,AR,annual,2021,fuel consumption of Wood/Wood Waste by industrial buildings,3610,kJ,N2O,4.0,kg/TJ,14441,kg +f6a2f80b-ec9f-380d-a624-e95cb8339d0a,BEN,I.3.1,Argentina,AR,annual,2021,fuel consumption of Liquefied Petroleum Gases by industrial buildings,8627,kJ,CO2,63100.0,kg/TJ,544391822,kg +5ded202a-3d12-32ad-aaa7-3a87da6fe6cc,BEN,I.3.1,Argentina,AR,annual,2021,fuel consumption of Liquefied Petroleum Gases by industrial buildings,8627,kJ,CH4,1.0,kg/TJ,8627,kg +730685e6-cb79-3079-8375-d63e3e8c0263,BEN,I.3.1,Argentina,AR,annual,2021,fuel consumption of Liquefied Petroleum Gases by industrial buildings,8627,kJ,N2O,0.1,kg/TJ,862,kg +74a2b832-e4a1-32b1-90c7-b6656400acf1,BEN,I.1.1,Argentina,AR,annual,2018,fuel consumption of Wood/Wood Waste by residential buildings,3839,kJ,CO2,0.0,kg/TJ,0,kg +8ba05b55-103b-38df-be92-dc54cba5d4d0,BEN,I.1.1,Argentina,AR,annual,2018,fuel consumption of Wood/Wood Waste by residential buildings,3839,kJ,CH4,300.0,kg/TJ,1151717,kg +db19747e-43dd-33dc-931f-d0f738a5a613,BEN,I.1.1,Argentina,AR,annual,2018,fuel consumption of Wood/Wood Waste by residential buildings,3839,kJ,N2O,4.0,kg/TJ,15356,kg +3a1b3161-158c-30fd-851b-df6d9eb72afc,BEN,I.1.1,Argentina,AR,annual,2018,fuel consumption of Liquefied Petroleum Gases by residential buildings,50498,kJ,CO2,63100.0,kg/TJ,3186434576,kg +b58bf6c0-7e79-37c4-ab9c-4fd7fce68499,BEN,I.1.1,Argentina,AR,annual,2018,fuel consumption of Liquefied Petroleum Gases by residential buildings,50498,kJ,CH4,5.0,kg/TJ,252490,kg +45787d66-9e4c-310e-80b0-bfb2980ea0f4,BEN,I.1.1,Argentina,AR,annual,2018,fuel consumption of Liquefied Petroleum Gases by residential buildings,50498,kJ,N2O,0.1,kg/TJ,5049,kg +79b493d3-2f16-39d3-ac4b-554da8c52926,BEN,I.1.1,Argentina,AR,annual,2018,fuel consumption of Jet Kerosene by residential buildings,477,kJ,CO2,71500.0,kg/TJ,34112956,kg +6e641d30-3044-3baf-acf9-a9a8b0146bd5,BEN,I.1.1,Argentina,AR,annual,2018,fuel consumption of Jet Kerosene by residential buildings,477,kJ,CH4,10.0,kg/TJ,4771,kg +c86b4edd-daa8-3f17-ac40-281ebfaf269c,BEN,I.1.1,Argentina,AR,annual,2018,fuel consumption of Jet Kerosene by residential buildings,477,kJ,N2O,0.6,kg/TJ,286,kg +adc9cbf8-420f-3fa0-920a-62222ec797fe,BEN,I.1.1,Argentina,AR,annual,2018,fuel consumption of Charcoal by residential buildings,7098,kJ,CO2,112000.0,kg/TJ,795032269,kg +c05b509c-3ec0-3197-9388-aa8c6aceeac8,BEN,I.1.1,Argentina,AR,annual,2018,fuel consumption of Charcoal by residential buildings,7098,kJ,CH4,200.0,kg/TJ,1419700,kg +d0902966-1fc5-3961-a116-0422acfc4859,BEN,I.1.1,Argentina,AR,annual,2018,fuel consumption of Charcoal by residential buildings,7098,kJ,N2O,1.0,kg/TJ,7098,kg +8b9a1240-cc32-30f5-842d-964df83c70db,BEN,I.2.1,Argentina,AR,annual,2018,fuel consumption of Wood/Wood Waste by commercial buildings,1919,kJ,CO2,112000.0,kg/TJ,214987266,kg +dc310603-52dc-3676-a06d-c91a279f53e1,BEN,I.2.1,Argentina,AR,annual,2018,fuel consumption of Wood/Wood Waste by commercial buildings,1919,kJ,CH4,300.0,kg/TJ,575858,kg +d8782899-2bd6-366c-bf96-6d5ed932b133,BEN,I.2.1,Argentina,AR,annual,2018,fuel consumption of Wood/Wood Waste by commercial buildings,1919,kJ,N2O,4.0,kg/TJ,7678,kg +9c42506b-29eb-3542-b28c-8120b4e99368,BEN,I.2.1,Argentina,AR,annual,2018,fuel consumption of Liquefied Petroleum Gases by commercial buildings,8416,kJ,CO2,63100.0,kg/TJ,531072429,kg +b693d94e-d3a2-3a7d-bede-2d586353761e,BEN,I.2.1,Argentina,AR,annual,2018,fuel consumption of Liquefied Petroleum Gases by commercial buildings,8416,kJ,CH4,5.0,kg/TJ,42081,kg +31385302-d323-3451-93e5-55e303cae1e0,BEN,I.2.1,Argentina,AR,annual,2018,fuel consumption of Liquefied Petroleum Gases by commercial buildings,8416,kJ,N2O,0.1,kg/TJ,841,kg +10879073-178d-3c73-8363-d7613362ff25,BEN,I.2.1,Argentina,AR,annual,2018,fuel consumption of Charcoal by commercial buildings,4732,kJ,CO2,112000.0,kg/TJ,530021512,kg +042599ca-6356-33d6-87d3-32e47b9d575d,BEN,I.2.1,Argentina,AR,annual,2018,fuel consumption of Charcoal by commercial buildings,4732,kJ,CH4,200.0,kg/TJ,946466,kg +dc0ccb0b-b541-34aa-ace5-3e2dad002bef,BEN,I.2.1,Argentina,AR,annual,2018,fuel consumption of Charcoal by commercial buildings,4732,kJ,N2O,1.0,kg/TJ,4732,kg +b3217e67-b309-313f-9f74-1ba12aef7301,BEN,I.5.1,Argentina,AR,annual,2018,fuel consumption of Liquefied Petroleum Gases by agricultural activities,3506,kJ,CO2,63100.0,kg/TJ,221280178,kg +db648b55-61e6-3125-9a62-10bb5a5aed93,BEN,I.5.1,Argentina,AR,annual,2018,fuel consumption of Liquefied Petroleum Gases by agricultural activities,3506,kJ,CH4,5.0,kg/TJ,17534,kg +c1c1bf62-453b-3c52-85fa-1de2e417f1e4,BEN,I.5.1,Argentina,AR,annual,2018,fuel consumption of Liquefied Petroleum Gases by agricultural activities,3506,kJ,N2O,0.1,kg/TJ,350,kg +028d2181-b81c-3c79-a279-037f2fc6aa9f,BEN,I.3.1,Argentina,AR,annual,2018,fuel consumption of Wood/Wood Waste by industrial buildings,3839,kJ,CO2,112000.0,kg/TJ,429974532,kg +f1bf5580-e6ad-395e-a9b0-b0e94b372a47,BEN,I.3.1,Argentina,AR,annual,2018,fuel consumption of Wood/Wood Waste by industrial buildings,3839,kJ,CH4,30.0,kg/TJ,115171,kg +37e19394-d5fc-332b-bb23-797dfdf6616d,BEN,I.3.1,Argentina,AR,annual,2018,fuel consumption of Wood/Wood Waste by industrial buildings,3839,kJ,N2O,4.0,kg/TJ,15356,kg +1c2afd8e-9d49-3a4e-8ebe-6324d43215d5,BEN,I.3.1,Argentina,AR,annual,2018,fuel consumption of Liquefied Petroleum Gases by industrial buildings,7714,kJ,CO2,63100.0,kg/TJ,486816393,kg +f28c8d68-48bd-3679-a664-1391657bc5e3,BEN,I.3.1,Argentina,AR,annual,2018,fuel consumption of Liquefied Petroleum Gases by industrial buildings,7714,kJ,CH4,1.0,kg/TJ,7714,kg +49e1d447-4d25-3264-8300-b5197625e3f1,BEN,I.3.1,Argentina,AR,annual,2018,fuel consumption of Liquefied Petroleum Gases by industrial buildings,7714,kJ,N2O,0.1,kg/TJ,771,kg +72c4c62b-1db2-3f44-b56f-8f1862224f8a,BEN,I.1.1,Argentina,AR,annual,2019,fuel consumption of Wood/Wood Waste by residential buildings,3847,kJ,CO2,0.0,kg/TJ,0,kg +1ffda7e4-0140-342c-ba30-a06dc9b1821f,BEN,I.1.1,Argentina,AR,annual,2019,fuel consumption of Wood/Wood Waste by residential buildings,3847,kJ,CH4,300.0,kg/TJ,1154133,kg +b5222684-d43e-37ad-a0b9-2708a9984ad4,BEN,I.1.1,Argentina,AR,annual,2019,fuel consumption of Wood/Wood Waste by residential buildings,3847,kJ,N2O,4.0,kg/TJ,15388,kg +3b945d3f-43d8-3839-9815-5cf98f1a4bb2,BEN,I.1.1,Argentina,AR,annual,2019,fuel consumption of Liquefied Petroleum Gases by residential buildings,49888,kJ,CO2,63100.0,kg/TJ,3147958137,kg +42df0a23-3492-308e-95f3-ed8d45b41800,BEN,I.1.1,Argentina,AR,annual,2019,fuel consumption of Liquefied Petroleum Gases by residential buildings,49888,kJ,CH4,5.0,kg/TJ,249442,kg +f299b95f-f0f0-3418-9e62-a11b3deb6301,BEN,I.1.1,Argentina,AR,annual,2019,fuel consumption of Liquefied Petroleum Gases by residential buildings,49888,kJ,N2O,0.1,kg/TJ,4988,kg +3d010b51-3e2d-3f39-95ed-b758b39a0120,BEN,I.1.1,Argentina,AR,annual,2019,fuel consumption of Jet Kerosene by residential buildings,383,kJ,CO2,71500.0,kg/TJ,27424141,kg +980a8495-ec92-3c95-b0f0-878d3278b828,BEN,I.1.1,Argentina,AR,annual,2019,fuel consumption of Jet Kerosene by residential buildings,383,kJ,CH4,10.0,kg/TJ,3835,kg +b1556074-03c7-33c2-9c86-d08106bfbbf7,BEN,I.1.1,Argentina,AR,annual,2019,fuel consumption of Jet Kerosene by residential buildings,383,kJ,N2O,0.6,kg/TJ,230,kg +e7d0d13d-d47e-3240-8f80-be67105d9371,BEN,I.1.1,Argentina,AR,annual,2019,fuel consumption of Charcoal by residential buildings,7226,kJ,CO2,112000.0,kg/TJ,809342577,kg +1c03a8b9-9fdd-322a-a46d-0a90683a802f,BEN,I.1.1,Argentina,AR,annual,2019,fuel consumption of Charcoal by residential buildings,7226,kJ,CH4,200.0,kg/TJ,1445254,kg +0e92320f-b03f-39aa-9990-df38eadb24c0,BEN,I.1.1,Argentina,AR,annual,2019,fuel consumption of Charcoal by residential buildings,7226,kJ,N2O,1.0,kg/TJ,7226,kg +4094be68-92a9-32ef-8629-e4f2c52cc0fa,BEN,I.2.1,Argentina,AR,annual,2019,fuel consumption of Wood/Wood Waste by commercial buildings,1923,kJ,CO2,112000.0,kg/TJ,215438264,kg +b611ab37-6209-3430-9b51-65f3867a377c,BEN,I.2.1,Argentina,AR,annual,2019,fuel consumption of Wood/Wood Waste by commercial buildings,1923,kJ,CH4,300.0,kg/TJ,577066,kg +5e7fbdf5-12cb-33ba-b702-6f05049ae982,BEN,I.2.1,Argentina,AR,annual,2019,fuel consumption of Wood/Wood Waste by commercial buildings,1923,kJ,N2O,4.0,kg/TJ,7694,kg +87394798-5e08-3705-88b9-ca63cd872fa4,BEN,I.2.1,Argentina,AR,annual,2019,fuel consumption of Liquefied Petroleum Gases by commercial buildings,8314,kJ,CO2,63100.0,kg/TJ,524659689,kg +9cafea0e-8f7c-374d-b844-d3de3a0e3d70,BEN,I.2.1,Argentina,AR,annual,2019,fuel consumption of Liquefied Petroleum Gases by commercial buildings,8314,kJ,CH4,5.0,kg/TJ,41573,kg +3d006101-60e9-3cb7-a3c8-cf165d7e932f,BEN,I.2.1,Argentina,AR,annual,2019,fuel consumption of Liquefied Petroleum Gases by commercial buildings,8314,kJ,N2O,0.1,kg/TJ,831,kg +f3107958-e95c-3473-91fd-d70ad19aff37,BEN,I.2.1,Argentina,AR,annual,2019,fuel consumption of Charcoal by commercial buildings,4817,kJ,CO2,112000.0,kg/TJ,539561718,kg +e4741039-ee07-35c3-a903-6450f306a845,BEN,I.2.1,Argentina,AR,annual,2019,fuel consumption of Charcoal by commercial buildings,4817,kJ,CH4,200.0,kg/TJ,963503,kg +a108bf47-dc07-3dcc-9be7-661cb2fcde62,BEN,I.2.1,Argentina,AR,annual,2019,fuel consumption of Charcoal by commercial buildings,4817,kJ,N2O,1.0,kg/TJ,4817,kg +51a634ef-af29-3add-8062-e30f1341592d,BEN,I.5.1,Argentina,AR,annual,2019,fuel consumption of Liquefied Petroleum Gases by agricultural activities,3464,kJ,CO2,63100.0,kg/TJ,218608204,kg +8aec5444-519d-3512-a171-96e56bdcd71f,BEN,I.5.1,Argentina,AR,annual,2019,fuel consumption of Liquefied Petroleum Gases by agricultural activities,3464,kJ,CH4,5.0,kg/TJ,17322,kg +66bb6a2e-8a01-3292-958f-4028ee871715,BEN,I.5.1,Argentina,AR,annual,2019,fuel consumption of Liquefied Petroleum Gases by agricultural activities,3464,kJ,N2O,0.1,kg/TJ,346,kg +f7199cab-1e4e-3904-871a-5f87985828c8,BEN,I.3.1,Argentina,AR,annual,2019,fuel consumption of Wood/Wood Waste by industrial buildings,3847,kJ,CO2,112000.0,kg/TJ,430876528,kg +0a1e164a-e8b3-30e4-b085-968a64052409,BEN,I.3.1,Argentina,AR,annual,2019,fuel consumption of Wood/Wood Waste by industrial buildings,3847,kJ,CH4,30.0,kg/TJ,115413,kg +a64dba65-7f8f-3a29-9d0c-699860596eea,BEN,I.3.1,Argentina,AR,annual,2019,fuel consumption of Wood/Wood Waste by industrial buildings,3847,kJ,N2O,4.0,kg/TJ,15388,kg +3df68312-4f96-3a20-a2fd-c7ba89b33c4b,BEN,I.3.1,Argentina,AR,annual,2019,fuel consumption of Liquefied Petroleum Gases by industrial buildings,7621,kJ,CO2,63100.0,kg/TJ,480938048,kg +9fa154ab-a885-37cd-913c-3879a50e5192,BEN,I.3.1,Argentina,AR,annual,2019,fuel consumption of Liquefied Petroleum Gases by industrial buildings,7621,kJ,CH4,1.0,kg/TJ,7621,kg +e3757f22-2376-3bb4-a5a7-12dcdd816401,BEN,I.3.1,Argentina,AR,annual,2019,fuel consumption of Liquefied Petroleum Gases by industrial buildings,7621,kJ,N2O,0.1,kg/TJ,762,kg diff --git a/global-api/importer/argentinian_datasets/BEN/transformation_BEN_AR.py b/global-api/importer/argentinian_datasets/BEN/transformation_BEN_AR.py index 03dd8d682..31ca3d0fe 100644 --- a/global-api/importer/argentinian_datasets/BEN/transformation_BEN_AR.py +++ b/global-api/importer/argentinian_datasets/BEN/transformation_BEN_AR.py @@ -170,10 +170,10 @@ def uuid_generate_v3(name, namespace=uuid.NAMESPACE_OID): # units conversion # from IEA: 1 tep = 41.868 GJ = 39.68 MBtu = 11.63 MWh - # raw data: miles de TEP - TEP_to_kJ = 41.868 * 1e6 - df.loc[:, 'activity_value'] *= 1000 - df.loc[:, 'activity_value'] *= TEP_to_kJ + # raw data: miles of TEP + df.loc[:, 'activity_value'] *= 1000 #miles of TEP to TEP + df.loc[:, 'activity_value'] *= 41.868 # TEP to GJ + df.loc[:, 'activity_value'] *= 1e-3 # GJ to TJ # merge with EF dataframe df = pd.merge(df, ef_df, on=['GPC_refno', 'fuel_type'])

    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�@OMlqCZGt9mQ14xR#(z-mXm1UP2tJ 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%0AZ>*}TorGGEmA+n6>#Lv?P1hjgY6A6hK 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

BE{+>0?;)pEz!*LF4WN4kM`5qP}Frw{*b$HdQL2 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%0ADgEy5@l)j9p^Lmo&xHT6hp6{ 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%0Dy@V?kFRzvhz}3jJ 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